[
  {
    "path": ".gitignore",
    "content": "# Built application files\n*.apk\n*.ap_\n\n# Files for the Dalvik VM\n*.dex\n\n# Java class files\n*.class\n\n# Generated files\nbin/\ngen/\n\n# Gradle files\n.gradle/\nbuild/\n/*/build/\n\n# Local configuration file (sdk path, etc)\nlocal.properties\n\n# Proguard folder generated by Eclipse\nproguard/\n\n# Log Files\n*.log\n\n# Eclipse project files\n.classpath\n.project\n.settings/\n\n# Intellij project files\n*.iml\n*.ipr\n*.iws\n.idea/\n\n# Mac system files\n.DS_Store\n\n*.keystore\n\ncaptures\n\n.externalNativeBuild/\nzbarjni/src/main/obj/\nzbarjni/src/main/libs/\n"
  },
  {
    "path": "README.md",
    "content": ":running:BGAQRCode-Android:running:\n============\n\n## 目录\n* [功能介绍](#功能介绍)\n* [常见问题](#常见问题)\n* [效果图与示例 apk](#效果图与示例-apk)\n* [Gradle 依赖](#gradle-依赖)\n* [布局文件](#布局文件)\n* [自定义属性说明](#自定义属性说明)\n* [接口说明](#接口说明)\n* [关于我](#关于我)\n\n## 功能介绍\n根据[之前公司](http://www.iqegg.com)的产品需求，参考 [barcodescanner](https://github.com/dm77/barcodescanner) 改的，希望能帮助到有生成二维码、扫描二维码、识别图片二维码等需求的猿友。修改幅度较大，也就没准备针对 [barcodescanner](https://github.com/dm77/barcodescanner) 库提交PR。\n\n- [x] 可定制各式各样的扫描框\n- [x] 可定制全屏扫描或只识别扫描框区域内码\n- [x] 可定制要识别的码的格式（详细用法查看 TestScanActivity 中的 onClick 方法）\n- [x] 可以控制闪光灯，方便夜间使用\n- [x] 可以设置用前置摄像头扫描\n- [x] 可以二指缩放预览\n- [x] 可以监听环境亮度，提示用户打开、关闭闪光灯\n- [x] 识别到比较小的码时自动放大\n***\n- [x] ZXing 生成可自定义颜色、带 logo 的二维码\n- [x] ZXing 生成一维码\n- [x] ZXing 扫描条码、二维码\n- [x] ZXing 识别图库中的条码、二维码图片\n***\n- [x] ZBar 扫描条码、二维码「已解决中文乱码问题」\n- [x] ZBar 识别图库中的条码、二维码图片\n\n## 常见问题\n#### 1.部分手机无法扫描出结果，扫描预览界面二维码被压缩\n\n使用的时候将 Toolbar 或者其他 View 盖在 ZBarView 或者 ZXingView 的上面，让 ZBarView 或者 ZXingView 填充屏幕宽高。[ZXing 布局文件参考](https://github.com/bingoogolapple/BGAQRCode-Android/blob/master/zxingdemo/src/main/res/layout/activity_test_scan.xml) [ZBar 布局文件参考](https://github.com/bingoogolapple/BGAQRCode-Android/blob/master/zbardemo/src/main/res/layout/activity_test_scan.xml)\n\n#### 2.出现黑屏\n\n在自己项目里集成时记得在 onDestroy 方法中调用 mQRCodeView.onDestroy()，在 onStop 方法中调用 mQRCodeView.stopCamera()，否则会出现黑屏。如果没执行前面提到的这两个方法出现黑屏的话，那你就只能加上前面提到的两个方法后，重启手机后重新运行了\n\n## 效果图与示例 apk\n\n![zbar109](https://cloud.githubusercontent.com/assets/8949716/17475203/5d788730-5d8c-11e6-836a-61e885e05453.gif)\n![zxingbarcode109](https://cloud.githubusercontent.com/assets/8949716/17475222/76339bd4-5d8c-11e6-934f-96db6917f69b.gif)\n![zxingdecode109](https://cloud.githubusercontent.com/assets/8949716/17475235/8c03b2be-5d8c-11e6-931d-a50942a8ab75.gif)\n![zxingqrcode109](https://cloud.githubusercontent.com/assets/8949716/17475249/a551cc06-5d8c-11e6-85dc-4e2e07051cae.gif)\n![iqegg](https://cloud.githubusercontent.com/assets/8949716/17475267/bd9c0a60-5d8c-11e6-8487-c732306debe2.gif)\n\n| [点击下载 ZXingDemo.apk](http://fir.im/ZXingDemo)或扫描下面的二维码安装 | [点击下载 ZBarDemo.apk](http://fir.im/ZBarDemo)或扫描下面的二维码安装 |\n| :------------: | :------------: |\n| ![ZXingDemo apk文件二维码](http://bgashare.bingoogolapple.cn/qrcode/zxingdemoapk.png) | ![ZBarDemo apk文件二维码](http://bgashare.bingoogolapple.cn/qrcode/zbardemoapk.png) |\n\n## Gradle 依赖\n\n* 把 `maven { url 'https://jitpack.io' }` 添加到 root build.gradle 的 repositories 中\n* 在 app build.gradle 中添加如下依赖，末尾的「latestVersion」指的是徽章 [![](https://jitpack.io/v/bingoogolapple/BGAQRCode-Android.svg)](https://jitpack.io/#bingoogolapple/BGAQRCode-Android) 里的版本名称，请自行替换\n\n>ZXing\n\n```groovy\ndependencies {\n    implementation 'com.github.bingoogolapple.BGAQRCode-Android:zxing:latestVersion'\n}\n```\n>ZBar\n\n```groovy\ndependencies {\n    implementation 'com.github.bingoogolapple.BGAQRCode-Android:zbar:latestVersion'\n}\n```\n## 布局文件\n>ZXing\n\n```xml\n<cn.bingoogolapple.qrcode.zxing.ZXingView\n    android:id=\"@+id/zxingview\"\n    style=\"@style/MatchMatch\"\n    app:qrcv_animTime=\"1000\"\n    app:qrcv_borderColor=\"@android:color/white\"\n    app:qrcv_borderSize=\"1dp\"\n    app:qrcv_cornerColor=\"@color/colorPrimaryDark\"\n    app:qrcv_cornerLength=\"20dp\"\n    app:qrcv_cornerSize=\"3dp\"\n    app:qrcv_maskColor=\"#33FFFFFF\"\n    app:qrcv_rectWidth=\"200dp\"\n    app:qrcv_scanLineColor=\"@color/colorPrimaryDark\"\n    app:qrcv_scanLineSize=\"1dp\"\n    app:qrcv_topOffset=\"90dp\" />\n```\n>ZBar\n\n```xml\n<cn.bingoogolapple.qrcode.zbar.ZBarView\n    android:id=\"@+id/zbarview\"\n    style=\"@style/MatchMatch\"\n    app:qrcv_animTime=\"1000\"\n    app:qrcv_borderColor=\"@android:color/white\"\n    app:qrcv_borderSize=\"1dp\"\n    app:qrcv_cornerColor=\"@color/colorPrimaryDark\"\n    app:qrcv_cornerLength=\"20dp\"\n    app:qrcv_cornerSize=\"3dp\"\n    app:qrcv_isShowDefaultScanLineDrawable=\"true\"\n    app:qrcv_maskColor=\"#33FFFFFF\"\n    app:qrcv_rectWidth=\"200dp\"\n    app:qrcv_scanLineColor=\"@color/colorPrimaryDark\"\n    app:qrcv_topOffset=\"90dp\" />\n```\n\n## 自定义属性说明\n\n属性名 | 说明 | 默认值\n:----------- | :----------- | :-----------\nqrcv_topOffset         | 扫描框距离 toolbar 底部的距离        | 90dp\nqrcv_cornerSize         | 扫描框边角线的宽度        | 3dp\nqrcv_cornerLength         | 扫描框边角线的长度        | 20dp\nqrcv_cornerColor         | 扫描框边角线的颜色        | @android:color/white\nqrcv_cornerDisplayType         | 扫描框边角线显示位置(相对于边框)，默认值为中间        | center\nqrcv_rectWidth         | 扫描框的宽度        | 200dp\nqrcv_barcodeRectHeight         | 条码扫样式描框的高度        | 140dp\nqrcv_maskColor         | 除去扫描框，其余部分阴影颜色        | #33FFFFFF\nqrcv_scanLineSize         | 扫描线的宽度        | 1dp\nqrcv_scanLineColor         | 扫描线的颜色「扫描线和默认的扫描线图片的颜色」        | @android:color/white\nqrcv_scanLineMargin         | 扫描线距离上下或者左右边框的间距        | 0dp\nqrcv_isShowDefaultScanLineDrawable         | 是否显示默认的图片扫描线「设置该属性后 qrcv_scanLineSize 将失效，可以通过 qrcv_scanLineColor 设置扫描线的颜色，避免让你公司的UI单独给你出特定颜色的扫描线图片」        | false\nqrcv_customScanLineDrawable         | 扫描线的图片资源「默认的扫描线图片样式不能满足你的需求时使用，设置该属性后 qrcv_isShowDefaultScanLineDrawable、qrcv_scanLineSize、qrcv_scanLineColor 将失效」        | null\nqrcv_borderSize         | 扫描边框的宽度        | 1dp\nqrcv_borderColor         | 扫描边框的颜色        | @android:color/white\nqrcv_animTime         | 扫描线从顶部移动到底部的动画时间「单位为毫秒」        | 1000\nqrcv_isCenterVertical（已废弃，如果要垂直居中用 qrcv_verticalBias=\"0.5\"来代替）         | 扫描框是否垂直居中，该属性为true时会忽略 qrcv_topOffset 属性        | false\nqrcv_verticalBias         | 扫描框中心点在屏幕垂直方向的比例，当设置此值时，会忽略 qrcv_topOffset 属性        | -1\nqrcv_toolbarHeight         | Toolbar 的高度，通过该属性来修正由 Toolbar 导致扫描框在垂直方向上的偏差        | 0dp\nqrcv_isBarcode         | 扫描框的样式是否为扫条形码样式        | false\nqrcv_tipText         | 提示文案        | null\nqrcv_tipTextSize         | 提示文案字体大小        | 14sp\nqrcv_tipTextColor         | 提示文案颜色        | @android:color/white\nqrcv_isTipTextBelowRect         | 提示文案是否在扫描框的底部        | false\nqrcv_tipTextMargin         | 提示文案与扫描框之间的间距        | 20dp\nqrcv_isShowTipTextAsSingleLine         | 是否把提示文案作为单行显示        | false\nqrcv_isShowTipBackground         | 是否显示提示文案的背景        | false\nqrcv_tipBackgroundColor         | 提示文案的背景色        | #22000000\nqrcv_isScanLineReverse         | 扫描线是否来回移动        | true\nqrcv_isShowDefaultGridScanLineDrawable         | 是否显示默认的网格图片扫描线        | false\nqrcv_customGridScanLineDrawable         | 扫描线的网格图片资源        | nulll\nqrcv_isOnlyDecodeScanBoxArea         | 是否只识别扫描框中的码        | false\nqrcv_isShowLocationPoint         | 是否显示定位点        | false\nqrcv_isAutoZoom         | 码太小时是否自动缩放        | false\n\n## 接口说明\n\n>QRCodeView\n\n```java\n\n/**\n * ZBarView 设置识别的格式。详细用法请看 zbardemo 的 TestScanActivity 中的 onClick 方法\n *\n * @param barcodeType 识别的格式\n * @param formatList  barcodeType 为 BarcdeType.CUSTOM 时，必须指定该值\n */\npublic void setType(BarcodeType barcodeType, List<BarcodeFormat> formatList)\n\n/**\n * ZXingView 设置识别的格式。详细用法请看 zxingdemo TestScanActivity 中的 onClick 方法\n *\n * @param barcodeType 识别的格式\n * @param hintMap     barcodeType 为 BarcodeType.CUSTOM 时，必须指定该值\n */\npublic void setType(BarcodeType barcodeType, Map<DecodeHintType, Object> hintMap)\n\n/**\n * 设置扫描二维码的代理\n *\n * @param delegate 扫描二维码的代理\n */\npublic void setDelegate(Delegate delegate)\n\n/**\n * 显示扫描框\n */\npublic void showScanRect()\n\n/**\n * 隐藏扫描框\n */\npublic void hiddenScanRect()\n\n/**\n * 打开后置摄像头开始预览，但是并未开始识别\n */\npublic void startCamera()\n\n/**\n * 打开指定摄像头开始预览，但是并未开始识别\n *\n * @param cameraFacing  Camera.CameraInfo.CAMERA_FACING_BACK or Camera.CameraInfo.CAMERA_FACING_FRONT\n */\npublic void startCamera(int cameraFacing)\n\n/**\n * 关闭摄像头预览，并且隐藏扫描框\n */\npublic void stopCamera()\n\n/**\n * 开始识别\n */\npublic void startSpot()\n\n/**\n * 停止识别\n */\npublic void stopSpot()\n\n/**\n * 停止识别，并且隐藏扫描框\n */\npublic void stopSpotAndHiddenRect()\n\n/**\n * 显示扫描框，并开始识别\n */\npublic void startSpotAndShowRect()\n\n/**\n * 打开闪光灯\n */\npublic void openFlashlight()\n\n/**\n * 关闭散光灯\n */\npublic void closeFlashlight()\n\n/**\n * 解析本地图片二维码。返回二维码图片里的内容 或 null\n *\n * @param picturePath 要解析的二维码图片本地路径\n */\npublic void decodeQRCode(String picturePath)\n\n/**\n * 解析 Bitmap 二维码。返回二维码图片里的内容 或 null\n *\n * @param bitmap 要解析的二维码图片\n */\npublic void decodeQRCode(Bitmap bitmap)\n```\n\n>QRCodeView.Delegate   扫描二维码的代理\n\n```java\n/**\n * 处理扫描结果\n *\n * @param result 摄像头扫码时只要回调了该方法 result 就一定有值，不会为 null。解析本地图片或 Bitmap 时 result 可能为 null\n */\nvoid onScanQRCodeSuccess(String result)\n\n/**\n * 摄像头环境亮度发生变化\n *\n * @param isDark 是否变暗\n */\nvoid onCameraAmbientBrightnessChanged(boolean isDark);\n\n/**\n * 处理打开相机出错\n */\nvoid onScanQRCodeOpenCameraError()\n```\n\n>QRCodeEncoder  创建二维码图片。几个重载方法都是耗时操作，请在子线程中调用。\n\n```java\n/**\n * 同步创建黑色前景色、白色背景色的二维码图片。该方法是耗时操作，请在子线程中调用。\n *\n * @param content 要生成的二维码图片内容\n * @param size    图片宽高，单位为px\n */\npublic static Bitmap syncEncodeQRCode(String content, int size)\n\n/**\n * 同步创建指定前景色、白色背景色的二维码图片。该方法是耗时操作，请在子线程中调用。\n *\n * @param content         要生成的二维码图片内容\n * @param size            图片宽高，单位为px\n * @param foregroundColor 二维码图片的前景色\n */\npublic static Bitmap syncEncodeQRCode(String content, int size, int foregroundColor)\n\n/**\n * 同步创建指定前景色、白色背景色、带logo的二维码图片。该方法是耗时操作，请在子线程中调用。\n *\n * @param content         要生成的二维码图片内容\n * @param size            图片宽高，单位为px\n * @param foregroundColor 二维码图片的前景色\n * @param logo            二维码图片的logo\n */\npublic static Bitmap syncEncodeQRCode(String content, int size, int foregroundColor, Bitmap logo)\n\n/**\n * 同步创建指定前景色、指定背景色、带logo的二维码图片。该方法是耗时操作，请在子线程中调用。\n *\n * @param content         要生成的二维码图片内容\n * @param size            图片宽高，单位为px\n * @param foregroundColor 二维码图片的前景色\n * @param backgroundColor 二维码图片的背景色\n * @param logo            二维码图片的logo\n */\npublic static Bitmap syncEncodeQRCode(String content, int size, int foregroundColor, int backgroundColor, Bitmap logo)\n\n/**\n * 同步创建条形码图片\n *\n * @param content  要生成条形码包含的内容\n * @param width    条形码的宽度，单位px\n * @param height   条形码的高度，单位px\n * @param textSize 字体大小，单位px，如果等于0则不在底部绘制文字\n */\npublic static Bitmap syncEncodeBarcode(String content, int width, int height, int textSize)\n```\n\n#### 详细用法请查看[ZBarDemo](https://github.com/bingoogolapple/BGAQRCode-Android/tree/master/zbardemo):feet:\n\n#### 详细用法请查看[ZXingDemo](https://github.com/bingoogolapple/BGAQRCode-Android/tree/master/zxingdemo):feet:\n\n## 作者联系方式\n\n| 个人主页 | 邮箱 |\n| ------------- | ------------ |\n| <a  href=\"https://www.bingoogolapple.cn\" target=\"_blank\">bingoogolapple.cn</a>  | <a href=\"mailto:bingoogolapple@gmail.com\" target=\"_blank\">bingoogolapple@gmail.com</a> |\n\n| 个人微信号 | 微信群 | 公众号 |\n| ------------ | ------------ | ------------ |\n| <img width=\"180\" alt=\"个人微信号\" src=\"https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/BGAQrCode.png\"> | <img width=\"180\" alt=\"微信群\" src=\"https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/WeChatGroup1QrCode.jpg\"> | <img width=\"180\" alt=\"公众号\" src=\"https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/GongZhongHao.png\"> |\n\n| 个人 QQ 号 | QQ 群 |\n| ------------ | ------------ |\n| <img width=\"180\" alt=\"个人 QQ 号\" src=\"https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/BGAQQQrCode.jpg\"> | <img width=\"180\" alt=\"QQ 群\" src=\"https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/QQGroup1QrCode.jpg\"> |\n\n## 打赏支持作者\n\n如果您觉得 BGA 系列开源库或工具软件帮您节省了大量的开发时间，可以扫描下方的二维码打赏支持。您的支持将鼓励我继续创作，打赏后还可以加我微信免费开通一年 [上帝小助手浏览器扩展/插件开发平台](https://github.com/bingoogolapple/bga-god-assistant-config) 的会员服务\n\n| 微信 | QQ | 支付宝 |\n| ------------- | ------------- | ------------- |\n| <img width=\"180\" alt=\"微信\" src=\"https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/donate-wechat.jpg\"> | <img width=\"180\" alt=\"QQ\" src=\"https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/donate-qq.jpg\"> | <img width=\"180\" alt=\"支付宝\" src=\"https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/donate-alipay.jpg\"> |\n\n## 作者项目推荐\n\n* 欢迎您使用我开发的第一个独立开发软件产品 [上帝小助手浏览器扩展/插件开发平台](https://github.com/bingoogolapple/bga-god-assistant-config)\n\n## License\n\n    Copyright (C) 2012 The Android Open Source Project\n    Copyright 2014 bingoogolapple\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n"
  },
  {
    "path": "assembleDebug.sh",
    "content": "#!/bin/bash +x\n\n./gradlew :zxingdemo:assembleDebug\n./gradlew :zbardemo:assembleDebug"
  },
  {
    "path": "build.gradle",
    "content": "// Top-level build file where you can add configuration options common to all sub-projects/modules.\n\nbuildscript {\n    repositories {\n        jcenter()\n        google()\n    }\n    dependencies {\n        classpath 'com.android.tools.build:gradle:3.5.4'\n        classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'\n    }\n}\n\nallprojects {\n    repositories {\n        maven { url 'https://jitpack.io' }\n        jcenter()\n        google()\n    }\n}\n\ntask clean(type: Delete) {\n    delete rootProject.buildDir\n}"
  },
  {
    "path": "gradle/wrapper/gradle-wrapper.properties",
    "content": "#Sun Nov 10 17:04:31 CST 2019\ndistributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER_HOME\nzipStorePath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-5.4.1-all.zip\n"
  },
  {
    "path": "gradle.properties",
    "content": "ANDROID_BUILD_MIN_SDK_VERSION=14\nANDROID_BUILD_TARGET_SDK_VERSION=28\nANDROID_BUILD_SDK_VERSION=28\n\nVERSION_NAME=1.3.8\nVERSION_CODE=138\n"
  },
  {
    "path": "gradlew",
    "content": "#!/usr/bin/env bash\n\n##############################################################################\n##\n##  Gradle start up script for UN*X\n##\n##############################################################################\n\n# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\nDEFAULT_JVM_OPTS=\"\"\n\nAPP_NAME=\"Gradle\"\nAPP_BASE_NAME=`basename \"$0\"`\n\n# Use the maximum available, or set MAX_FD != -1 to use that value.\nMAX_FD=\"maximum\"\n\nwarn ( ) {\n    echo \"$*\"\n}\n\ndie ( ) {\n    echo\n    echo \"$*\"\n    echo\n    exit 1\n}\n\n# OS specific support (must be 'true' or 'false').\ncygwin=false\nmsys=false\ndarwin=false\ncase \"`uname`\" in\n  CYGWIN* )\n    cygwin=true\n    ;;\n  Darwin* )\n    darwin=true\n    ;;\n  MINGW* )\n    msys=true\n    ;;\nesac\n\n# For Cygwin, ensure paths are in UNIX format before anything is touched.\nif $cygwin ; then\n    [ -n \"$JAVA_HOME\" ] && JAVA_HOME=`cygpath --unix \"$JAVA_HOME\"`\nfi\n\n# Attempt to set APP_HOME\n# Resolve links: $0 may be a link\nPRG=\"$0\"\n# Need this for relative symlinks.\nwhile [ -h \"$PRG\" ] ; do\n    ls=`ls -ld \"$PRG\"`\n    link=`expr \"$ls\" : '.*-> \\(.*\\)$'`\n    if expr \"$link\" : '/.*' > /dev/null; then\n        PRG=\"$link\"\n    else\n        PRG=`dirname \"$PRG\"`\"/$link\"\n    fi\ndone\nSAVED=\"`pwd`\"\ncd \"`dirname \\\"$PRG\\\"`/\" >&-\nAPP_HOME=\"`pwd -P`\"\ncd \"$SAVED\" >&-\n\nCLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar\n\n# Determine the Java command to use to start the JVM.\nif [ -n \"$JAVA_HOME\" ] ; then\n    if [ -x \"$JAVA_HOME/jre/sh/java\" ] ; then\n        # IBM's JDK on AIX uses strange locations for the executables\n        JAVACMD=\"$JAVA_HOME/jre/sh/java\"\n    else\n        JAVACMD=\"$JAVA_HOME/bin/java\"\n    fi\n    if [ ! -x \"$JAVACMD\" ] ; then\n        die \"ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nelse\n    JAVACMD=\"java\"\n    which java >/dev/null 2>&1 || die \"ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\nfi\n\n# Increase the maximum file descriptors if we can.\nif [ \"$cygwin\" = \"false\" -a \"$darwin\" = \"false\" ] ; then\n    MAX_FD_LIMIT=`ulimit -H -n`\n    if [ $? -eq 0 ] ; then\n        if [ \"$MAX_FD\" = \"maximum\" -o \"$MAX_FD\" = \"max\" ] ; then\n            MAX_FD=\"$MAX_FD_LIMIT\"\n        fi\n        ulimit -n $MAX_FD\n        if [ $? -ne 0 ] ; then\n            warn \"Could not set maximum file descriptor limit: $MAX_FD\"\n        fi\n    else\n        warn \"Could not query maximum file descriptor limit: $MAX_FD_LIMIT\"\n    fi\nfi\n\n# For Darwin, add options to specify how the application appears in the dock\nif $darwin; then\n    GRADLE_OPTS=\"$GRADLE_OPTS \\\"-Xdock:name=$APP_NAME\\\" \\\"-Xdock:icon=$APP_HOME/media/gradle.icns\\\"\"\nfi\n\n# For Cygwin, switch paths to Windows format before running java\nif $cygwin ; then\n    APP_HOME=`cygpath --path --mixed \"$APP_HOME\"`\n    CLASSPATH=`cygpath --path --mixed \"$CLASSPATH\"`\n\n    # We build the pattern for arguments to be converted via cygpath\n    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`\n    SEP=\"\"\n    for dir in $ROOTDIRSRAW ; do\n        ROOTDIRS=\"$ROOTDIRS$SEP$dir\"\n        SEP=\"|\"\n    done\n    OURCYGPATTERN=\"(^($ROOTDIRS))\"\n    # Add a user-defined pattern to the cygpath arguments\n    if [ \"$GRADLE_CYGPATTERN\" != \"\" ] ; then\n        OURCYGPATTERN=\"$OURCYGPATTERN|($GRADLE_CYGPATTERN)\"\n    fi\n    # Now convert the arguments - kludge to limit ourselves to /bin/sh\n    i=0\n    for arg in \"$@\" ; do\n        CHECK=`echo \"$arg\"|egrep -c \"$OURCYGPATTERN\" -`\n        CHECK2=`echo \"$arg\"|egrep -c \"^-\"`                                 ### Determine if an option\n\n        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition\n            eval `echo args$i`=`cygpath --path --ignore --mixed \"$arg\"`\n        else\n            eval `echo args$i`=\"\\\"$arg\\\"\"\n        fi\n        i=$((i+1))\n    done\n    case $i in\n        (0) set -- ;;\n        (1) set -- \"$args0\" ;;\n        (2) set -- \"$args0\" \"$args1\" ;;\n        (3) set -- \"$args0\" \"$args1\" \"$args2\" ;;\n        (4) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" ;;\n        (5) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" ;;\n        (6) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" ;;\n        (7) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" ;;\n        (8) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" \"$args7\" ;;\n        (9) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" \"$args7\" \"$args8\" ;;\n    esac\nfi\n\n# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules\nfunction splitJvmOpts() {\n    JVM_OPTS=(\"$@\")\n}\neval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS\nJVM_OPTS[${#JVM_OPTS[*]}]=\"-Dorg.gradle.appname=$APP_BASE_NAME\"\n\nexec \"$JAVACMD\" \"${JVM_OPTS[@]}\" -classpath \"$CLASSPATH\" org.gradle.wrapper.GradleWrapperMain \"$@\"\n"
  },
  {
    "path": "gradlew.bat",
    "content": "@if \"%DEBUG%\" == \"\" @echo off\n@rem ##########################################################################\n@rem\n@rem  Gradle startup script for Windows\n@rem\n@rem ##########################################################################\n\n@rem Set local scope for the variables with windows NT shell\nif \"%OS%\"==\"Windows_NT\" setlocal\n\n@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\nset DEFAULT_JVM_OPTS=\n\nset DIRNAME=%~dp0\nif \"%DIRNAME%\" == \"\" set DIRNAME=.\nset APP_BASE_NAME=%~n0\nset APP_HOME=%DIRNAME%\n\n@rem Find java.exe\nif defined JAVA_HOME goto findJavaFromJavaHome\n\nset JAVA_EXE=java.exe\n%JAVA_EXE% -version >NUL 2>&1\nif \"%ERRORLEVEL%\" == \"0\" goto init\n\necho.\necho ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\necho.\necho Please set the JAVA_HOME variable in your environment to match the\necho location of your Java installation.\n\ngoto fail\n\n:findJavaFromJavaHome\nset JAVA_HOME=%JAVA_HOME:\"=%\nset JAVA_EXE=%JAVA_HOME%/bin/java.exe\n\nif exist \"%JAVA_EXE%\" goto init\n\necho.\necho ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%\necho.\necho Please set the JAVA_HOME variable in your environment to match the\necho location of your Java installation.\n\ngoto fail\n\n:init\n@rem Get command-line arguments, handling Windowz variants\n\nif not \"%OS%\" == \"Windows_NT\" goto win9xME_args\nif \"%@eval[2+2]\" == \"4\" goto 4NT_args\n\n:win9xME_args\n@rem Slurp the command line arguments.\nset CMD_LINE_ARGS=\nset _SKIP=2\n\n:win9xME_args_slurp\nif \"x%~1\" == \"x\" goto execute\n\nset CMD_LINE_ARGS=%*\ngoto execute\n\n:4NT_args\n@rem Get arguments from the 4NT Shell from JP Software\nset CMD_LINE_ARGS=%$\n\n:execute\n@rem Setup the command line\n\nset CLASSPATH=%APP_HOME%\\gradle\\wrapper\\gradle-wrapper.jar\n\n@rem Execute Gradle\n\"%JAVA_EXE%\" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% \"-Dorg.gradle.appname=%APP_BASE_NAME%\" -classpath \"%CLASSPATH%\" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%\n\n:end\n@rem End local scope for the variables with windows NT shell\nif \"%ERRORLEVEL%\"==\"0\" goto mainEnd\n\n:fail\nrem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of\nrem the _cmd.exe /c_ return code!\nif  not \"\" == \"%GRADLE_EXIT_CONSOLE%\" exit 1\nexit /b 1\n\n:mainEnd\nif \"%OS%\"==\"Windows_NT\" endlocal\n\n:omega\n"
  },
  {
    "path": "qrcodecore/build.gradle",
    "content": "apply plugin: 'com.android.library'\napply plugin: 'com.github.dcendents.android-maven'\n\nandroid {\n    compileSdkVersion ANDROID_BUILD_SDK_VERSION as int\n\n    defaultConfig {\n        minSdkVersion ANDROID_BUILD_MIN_SDK_VERSION as int\n        targetSdkVersion ANDROID_BUILD_TARGET_SDK_VERSION as int\n    }\n}\n"
  },
  {
    "path": "qrcodecore/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"cn.bingoogolapple.qrcode.core\">\n\n    <uses-permission android:name=\"android.permission.CAMERA\" />\n    <uses-permission android:name=\"android.permission.FLASHLIGHT\" />\n\n    <uses-feature\n        android:name=\"android.hardware.camera.autofocus\"\n        android:required=\"false\" />\n    <uses-feature\n        android:name=\"android.hardware.camera.flash\"\n        android:required=\"false\" />\n</manifest>"
  },
  {
    "path": "qrcodecore/src/main/java/cn/bingoogolapple/qrcode/core/BGAQRCodeUtil.java",
    "content": "package cn.bingoogolapple.qrcode.core;\n\nimport android.content.Context;\nimport android.content.res.TypedArray;\nimport android.graphics.Bitmap;\nimport android.graphics.BitmapFactory;\nimport android.graphics.Canvas;\nimport android.graphics.Matrix;\nimport android.graphics.Paint;\nimport android.graphics.Point;\nimport android.graphics.PorterDuff;\nimport android.graphics.PorterDuffColorFilter;\nimport android.graphics.Rect;\nimport android.graphics.RectF;\nimport android.util.Log;\nimport android.util.TypedValue;\nimport android.view.Display;\nimport android.view.MotionEvent;\nimport android.view.WindowManager;\n\npublic class BGAQRCodeUtil {\n    private static boolean debug;\n\n    public static void setDebug(boolean debug) {\n        BGAQRCodeUtil.debug = debug;\n    }\n\n    public static boolean isDebug() {\n        return debug;\n    }\n\n    public static void d(String msg) {\n        d(\"BGAQRCode\", msg);\n    }\n\n    public static void printRect(String prefix, Rect rect) {\n        d(\"BGAQRCodeFocusArea\", prefix + \" centerX：\" + rect.centerX() + \" centerY：\" + rect.centerY() + \" width：\" + rect.width() + \" height：\" + rect.height()\n                + \" rectHalfWidth：\" + rect.width() / 2 + \" rectHalfHeight：\" + rect.height() / 2\n                + \" left：\" + rect.left + \" top：\" + rect.top + \" right：\" + rect.right + \" bottom：\" + rect.bottom);\n    }\n\n    public static void d(String tag, String msg) {\n        if (debug) {\n            Log.d(tag, msg);\n        }\n    }\n\n    public static void e(String msg) {\n        if (debug) {\n            Log.e(\"BGAQRCode\", msg);\n        }\n    }\n\n    /**\n     * 是否为竖屏\n     */\n    public static boolean isPortrait(Context context) {\n        Point screenResolution = getScreenResolution(context);\n        return screenResolution.y > screenResolution.x;\n    }\n\n    static Point getScreenResolution(Context context) {\n        WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);\n        Display display = wm.getDefaultDisplay();\n        Point screenResolution = new Point();\n        display.getSize(screenResolution);\n        return screenResolution;\n    }\n\n    public static int getStatusBarHeight(Context context) {\n        TypedArray typedArray = context.getTheme().obtainStyledAttributes(new int[]{\n                android.R.attr.windowFullscreen\n        });\n        boolean windowFullscreen = typedArray.getBoolean(0, false);\n        typedArray.recycle();\n\n        if (windowFullscreen) {\n            return 0;\n        }\n\n        int height = 0;\n        int resourceId = context.getResources().getIdentifier(\"status_bar_height\", \"dimen\", \"android\");\n        if (resourceId > 0) {\n            height = context.getResources().getDimensionPixelSize(resourceId);\n        }\n        return height;\n    }\n\n    public static int dp2px(Context context, float dpValue) {\n        return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dpValue, context.getResources().getDisplayMetrics());\n    }\n\n    public static int sp2px(Context context, float spValue) {\n        return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, spValue, context.getResources().getDisplayMetrics());\n    }\n\n    static Bitmap adjustPhotoRotation(Bitmap inputBitmap, int orientationDegree) {\n        if (inputBitmap == null) {\n            return null;\n        }\n\n        Matrix matrix = new Matrix();\n        matrix.setRotate(orientationDegree, (float) inputBitmap.getWidth() / 2, (float) inputBitmap.getHeight() / 2);\n        float outputX, outputY;\n        if (orientationDegree == 90) {\n            outputX = inputBitmap.getHeight();\n            outputY = 0;\n        } else {\n            outputX = inputBitmap.getHeight();\n            outputY = inputBitmap.getWidth();\n        }\n\n        final float[] values = new float[9];\n        matrix.getValues(values);\n        float x1 = values[Matrix.MTRANS_X];\n        float y1 = values[Matrix.MTRANS_Y];\n        matrix.postTranslate(outputX - x1, outputY - y1);\n        Bitmap outputBitmap = Bitmap.createBitmap(inputBitmap.getHeight(), inputBitmap.getWidth(), Bitmap.Config.ARGB_8888);\n        Paint paint = new Paint();\n        Canvas canvas = new Canvas(outputBitmap);\n        canvas.drawBitmap(inputBitmap, matrix, paint);\n        return outputBitmap;\n    }\n\n    static Bitmap makeTintBitmap(Bitmap inputBitmap, int tintColor) {\n        if (inputBitmap == null) {\n            return null;\n        }\n\n        Bitmap outputBitmap = Bitmap.createBitmap(inputBitmap.getWidth(), inputBitmap.getHeight(), inputBitmap.getConfig());\n        Canvas canvas = new Canvas(outputBitmap);\n        Paint paint = new Paint();\n        paint.setColorFilter(new PorterDuffColorFilter(tintColor, PorterDuff.Mode.SRC_IN));\n        canvas.drawBitmap(inputBitmap, 0, 0, paint);\n        return outputBitmap;\n    }\n\n    /**\n     * 计算对焦和测光区域\n     *\n     * @param coefficient        比率\n     * @param originFocusCenterX 对焦中心点X\n     * @param originFocusCenterY 对焦中心点Y\n     * @param originFocusWidth   对焦宽度\n     * @param originFocusHeight  对焦高度\n     * @param previewViewWidth   预览宽度\n     * @param previewViewHeight  预览高度\n     */\n    static Rect calculateFocusMeteringArea(float coefficient,\n            float originFocusCenterX, float originFocusCenterY,\n            int originFocusWidth, int originFocusHeight,\n            int previewViewWidth, int previewViewHeight) {\n\n        int halfFocusAreaWidth = (int) (originFocusWidth * coefficient / 2);\n        int halfFocusAreaHeight = (int) (originFocusHeight * coefficient / 2);\n\n        int centerX = (int) (originFocusCenterX / previewViewWidth * 2000 - 1000);\n        int centerY = (int) (originFocusCenterY / previewViewHeight * 2000 - 1000);\n\n        RectF rectF = new RectF(BGAQRCodeUtil.clamp(centerX - halfFocusAreaWidth, -1000, 1000),\n                BGAQRCodeUtil.clamp(centerY - halfFocusAreaHeight, -1000, 1000),\n                BGAQRCodeUtil.clamp(centerX + halfFocusAreaWidth, -1000, 1000),\n                BGAQRCodeUtil.clamp(centerY + halfFocusAreaHeight, -1000, 1000));\n        return new Rect(Math.round(rectF.left), Math.round(rectF.top),\n                Math.round(rectF.right), Math.round(rectF.bottom));\n    }\n\n    static int clamp(int value, int min, int max) {\n        return Math.min(Math.max(value, min), max);\n    }\n\n    /**\n     * 计算手指间距\n     */\n    static float calculateFingerSpacing(MotionEvent event) {\n        float x = event.getX(0) - event.getX(1);\n        float y = event.getY(0) - event.getY(1);\n        return (float) Math.sqrt(x * x + y * y);\n    }\n\n    /**\n     * 将本地图片文件转换成可解码二维码的 Bitmap。为了避免图片太大，这里对图片进行了压缩。感谢 https://github.com/devilsen 提的 PR\n     *\n     * @param picturePath 本地图片文件路径\n     */\n    public static Bitmap getDecodeAbleBitmap(String picturePath) {\n        try {\n            BitmapFactory.Options options = new BitmapFactory.Options();\n            options.inJustDecodeBounds = true;\n            BitmapFactory.decodeFile(picturePath, options);\n            int sampleSize = options.outHeight / 400;\n            if (sampleSize <= 0) {\n                sampleSize = 1;\n            }\n            options.inSampleSize = sampleSize;\n            options.inJustDecodeBounds = false;\n\n            return BitmapFactory.decodeFile(picturePath, options);\n        } catch (Exception e) {\n            e.printStackTrace();\n            return null;\n        }\n    }\n}"
  },
  {
    "path": "qrcodecore/src/main/java/cn/bingoogolapple/qrcode/core/BarcodeType.java",
    "content": "package cn.bingoogolapple.qrcode.core;\n\n/**\n * 作者:王浩\n * 创建时间:2018/6/20\n * 描述:识别的格式\n */\npublic enum BarcodeType {\n    /**\n     * 所有格式\n     */\n    ALL,\n    /**\n     * 所有一维条码格式\n     */\n    ONE_DIMENSION,\n    /**\n     * 所有二维条码格式\n     */\n    TWO_DIMENSION,\n    /**\n     * 仅 QR_CODE\n     */\n    ONLY_QR_CODE,\n    /**\n     * 仅 CODE_128\n     */\n    ONLY_CODE_128,\n    /**\n     * 仅 EAN_13\n     */\n    ONLY_EAN_13,\n    /**\n     * 高频率格式，包括 QR_CODE、ISBN13、UPC_A、EAN_13、CODE_128\n     */\n    HIGH_FREQUENCY,\n    /**\n     * 自定义格式\n     */\n    CUSTOM\n}\n"
  },
  {
    "path": "qrcodecore/src/main/java/cn/bingoogolapple/qrcode/core/CameraConfigurationManager.java",
    "content": "package cn.bingoogolapple.qrcode.core;\n\nimport android.content.Context;\nimport android.graphics.Point;\nimport android.hardware.Camera;\nimport android.view.Display;\nimport android.view.Surface;\nimport android.view.WindowManager;\n\nimport java.util.Collection;\nimport java.util.List;\n\nfinal class CameraConfigurationManager {\n    private final Context mContext;\n    private Point mCameraResolution;\n    private Point mPreviewResolution;\n\n    CameraConfigurationManager(Context context) {\n        mContext = context;\n    }\n\n    void initFromCameraParameters(Camera camera) {\n        Point screenResolution = BGAQRCodeUtil.getScreenResolution(mContext);\n        Point screenResolutionForCamera = new Point();\n        screenResolutionForCamera.x = screenResolution.x;\n        screenResolutionForCamera.y = screenResolution.y;\n\n        if (BGAQRCodeUtil.isPortrait(mContext)) {\n            screenResolutionForCamera.x = screenResolution.y;\n            screenResolutionForCamera.y = screenResolution.x;\n        }\n\n        mPreviewResolution = getPreviewResolution(camera.getParameters(), screenResolutionForCamera);\n\n        if (BGAQRCodeUtil.isPortrait(mContext)) {\n            mCameraResolution = new Point(mPreviewResolution.y, mPreviewResolution.x);\n        } else {\n            mCameraResolution = mPreviewResolution;\n        }\n    }\n\n    private static boolean autoFocusAble(Camera camera) {\n        List<String> supportedFocusModes = camera.getParameters().getSupportedFocusModes();\n        String focusMode = findSettableValue(supportedFocusModes, Camera.Parameters.FOCUS_MODE_AUTO);\n        return focusMode != null;\n    }\n\n    Point getCameraResolution() {\n        return mCameraResolution;\n    }\n\n    void setDesiredCameraParameters(Camera camera) {\n        Camera.Parameters parameters = camera.getParameters();\n        parameters.setPreviewSize(mPreviewResolution.x, mPreviewResolution.y);\n\n        // https://github.com/googlesamples/android-vision/blob/master/visionSamples/barcode-reader/app/src/main/java/com/google/android/gms/samples/vision/barcodereader/ui/camera/CameraSource.java\n        int[] previewFpsRange = selectPreviewFpsRange(camera, 60.0f);\n        if (previewFpsRange != null) {\n            parameters.setPreviewFpsRange(\n                    previewFpsRange[Camera.Parameters.PREVIEW_FPS_MIN_INDEX],\n                    previewFpsRange[Camera.Parameters.PREVIEW_FPS_MAX_INDEX]);\n        }\n\n        camera.setDisplayOrientation(getDisplayOrientation());\n        camera.setParameters(parameters);\n    }\n\n    /**\n     * Selects the most suitable preview frames per second range, given the desired frames per\n     * second.\n     *\n     * @param camera            the camera to select a frames per second range from\n     * @param desiredPreviewFps the desired frames per second for the camera preview frames\n     * @return the selected preview frames per second range\n     */\n    private int[] selectPreviewFpsRange(Camera camera, float desiredPreviewFps) {\n        // The camera API uses integers scaled by a factor of 1000 instead of floating-point frame\n        // rates.\n        int desiredPreviewFpsScaled = (int) (desiredPreviewFps * 1000.0f);\n\n        // The method for selecting the best range is to minimize the sum of the differences between\n        // the desired value and the upper and lower bounds of the range.  This may select a range\n        // that the desired value is outside of, but this is often preferred.  For example, if the\n        // desired frame rate is 29.97, the range (30, 30) is probably more desirable than the\n        // range (15, 30).\n        int[] selectedFpsRange = null;\n        int minDiff = Integer.MAX_VALUE;\n        List<int[]> previewFpsRangeList = camera.getParameters().getSupportedPreviewFpsRange();\n        for (int[] range : previewFpsRangeList) {\n            int deltaMin = desiredPreviewFpsScaled - range[Camera.Parameters.PREVIEW_FPS_MIN_INDEX];\n            int deltaMax = desiredPreviewFpsScaled - range[Camera.Parameters.PREVIEW_FPS_MAX_INDEX];\n            int diff = Math.abs(deltaMin) + Math.abs(deltaMax);\n            if (diff < minDiff) {\n                selectedFpsRange = range;\n                minDiff = diff;\n            }\n        }\n        return selectedFpsRange;\n    }\n\n    void openFlashlight(Camera camera) {\n        doSetTorch(camera, true);\n    }\n\n    void closeFlashlight(Camera camera) {\n        doSetTorch(camera, false);\n    }\n\n    private void doSetTorch(Camera camera, boolean newSetting) {\n        Camera.Parameters parameters = camera.getParameters();\n        String flashMode;\n        /** 是否支持闪光灯 */\n        if (newSetting) {\n            flashMode = findSettableValue(parameters.getSupportedFlashModes(), Camera.Parameters.FLASH_MODE_TORCH, Camera.Parameters.FLASH_MODE_ON);\n        } else {\n            flashMode = findSettableValue(parameters.getSupportedFlashModes(), Camera.Parameters.FLASH_MODE_OFF);\n        }\n        if (flashMode != null) {\n            parameters.setFlashMode(flashMode);\n        }\n        camera.setParameters(parameters);\n    }\n\n    private static String findSettableValue(Collection<String> supportedValues, String... desiredValues) {\n        String result = null;\n        if (supportedValues != null) {\n            for (String desiredValue : desiredValues) {\n                if (supportedValues.contains(desiredValue)) {\n                    result = desiredValue;\n                    break;\n                }\n            }\n        }\n        return result;\n    }\n\n    private int getDisplayOrientation() {\n        Camera.CameraInfo info = new Camera.CameraInfo();\n        Camera.getCameraInfo(Camera.CameraInfo.CAMERA_FACING_BACK, info);\n        WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);\n        if (wm == null) {\n            return 0;\n        }\n        Display display = wm.getDefaultDisplay();\n\n        int rotation = display.getRotation();\n        int degrees = 0;\n        switch (rotation) {\n            case Surface.ROTATION_0:\n                degrees = 0;\n                break;\n            case Surface.ROTATION_90:\n                degrees = 90;\n                break;\n            case Surface.ROTATION_180:\n                degrees = 180;\n                break;\n            case Surface.ROTATION_270:\n                degrees = 270;\n                break;\n        }\n\n        int result;\n        if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {\n            result = (info.orientation + degrees) % 360;\n            result = (360 - result) % 360;\n        } else {\n            result = (info.orientation - degrees + 360) % 360;\n        }\n        return result;\n    }\n\n    private static Point getPreviewResolution(Camera.Parameters parameters, Point screenResolution) {\n        Point previewResolution =\n                findBestPreviewSizeValue(parameters.getSupportedPreviewSizes(), screenResolution);\n        if (previewResolution == null) {\n            previewResolution = new Point((screenResolution.x >> 3) << 3, (screenResolution.y >> 3) << 3);\n        }\n        return previewResolution;\n    }\n\n    private static Point findBestPreviewSizeValue(List<Camera.Size> supportSizeList, Point screenResolution) {\n        int bestX = 0;\n        int bestY = 0;\n        int diff = Integer.MAX_VALUE;\n        for (Camera.Size previewSize : supportSizeList) {\n\n            int newX = previewSize.width;\n            int newY = previewSize.height;\n\n            int newDiff = Math.abs(newX - screenResolution.x) + Math.abs(newY - screenResolution.y);\n            if (newDiff == 0) {\n                bestX = newX;\n                bestY = newY;\n                break;\n            } else if (newDiff < diff) {\n                bestX = newX;\n                bestY = newY;\n                diff = newDiff;\n            }\n\n        }\n\n        if (bestX > 0 && bestY > 0) {\n            return new Point(bestX, bestY);\n        }\n        return null;\n    }\n}"
  },
  {
    "path": "qrcodecore/src/main/java/cn/bingoogolapple/qrcode/core/CameraPreview.java",
    "content": "package cn.bingoogolapple.qrcode.core;\n\nimport android.content.Context;\nimport android.content.pm.PackageManager;\nimport android.graphics.Point;\nimport android.graphics.Rect;\nimport android.hardware.Camera;\nimport android.view.MotionEvent;\nimport android.view.SurfaceHolder;\nimport android.view.SurfaceView;\n\nimport java.util.Collections;\n\npublic class CameraPreview extends SurfaceView implements SurfaceHolder.Callback {\n    private Camera mCamera;\n    private boolean mPreviewing = false;\n    private boolean mSurfaceCreated = false;\n    private boolean mIsTouchFocusing = false;\n    private float mOldDist = 1f;\n    private CameraConfigurationManager mCameraConfigurationManager;\n    private Delegate mDelegate;\n\n    public CameraPreview(Context context) {\n        super(context);\n        getHolder().addCallback(this);\n    }\n\n    void setCamera(Camera camera) {\n        mCamera = camera;\n        if (mCamera != null) {\n            mCameraConfigurationManager = new CameraConfigurationManager(getContext());\n            mCameraConfigurationManager.initFromCameraParameters(mCamera);\n\n            if (mPreviewing) {\n                requestLayout();\n            } else {\n                showCameraPreview();\n            }\n        }\n    }\n\n    void setDelegate(Delegate delegate) {\n        mDelegate = delegate;\n    }\n\n    @Override\n    public void surfaceCreated(SurfaceHolder surfaceHolder) {\n        mSurfaceCreated = true;\n    }\n\n    @Override\n    public void surfaceChanged(SurfaceHolder surfaceHolder, int format, int width, int height) {\n        if (surfaceHolder.getSurface() == null) {\n            return;\n        }\n        stopCameraPreview();\n        showCameraPreview();\n    }\n\n    @Override\n    public void surfaceDestroyed(SurfaceHolder surfaceHolder) {\n        mSurfaceCreated = false;\n        stopCameraPreview();\n    }\n\n    public void reactNativeShowCameraPreview() {\n        if (getHolder() == null || getHolder().getSurface() == null) {\n            return;\n        }\n\n        stopCameraPreview();\n        showCameraPreview();\n    }\n\n    private void showCameraPreview() {\n        if (mCamera != null) {\n            try {\n                mPreviewing = true;\n                SurfaceHolder surfaceHolder = getHolder();\n                surfaceHolder.setKeepScreenOn(true);\n                mCamera.setPreviewDisplay(surfaceHolder);\n\n                mCameraConfigurationManager.setDesiredCameraParameters(mCamera);\n                mCamera.startPreview();\n                if (mDelegate != null) {\n                    mDelegate.onStartPreview();\n                }\n                startContinuousAutoFocus();\n            } catch (Exception e) {\n                e.printStackTrace();\n            }\n        }\n    }\n\n    void stopCameraPreview() {\n        if (mCamera != null) {\n            try {\n                mPreviewing = false;\n                mCamera.cancelAutoFocus();\n                mCamera.setOneShotPreviewCallback(null);\n                mCamera.stopPreview();\n            } catch (Exception e) {\n                e.printStackTrace();\n            }\n        }\n    }\n\n    void openFlashlight() {\n        if (flashLightAvailable()) {\n            mCameraConfigurationManager.openFlashlight(mCamera);\n        }\n    }\n\n    void closeFlashlight() {\n        if (flashLightAvailable()) {\n            mCameraConfigurationManager.closeFlashlight(mCamera);\n        }\n    }\n\n    private boolean flashLightAvailable() {\n        return isPreviewing() && getContext().getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA_FLASH);\n    }\n\n    void onScanBoxRectChanged(Rect scanRect) {\n        if (mCamera == null || scanRect == null || scanRect.left <= 0 || scanRect.top <= 0) {\n            return;\n        }\n        int centerX = scanRect.centerX();\n        int centerY = scanRect.centerY();\n        int rectHalfWidth = scanRect.width() / 2;\n        int rectHalfHeight = scanRect.height() / 2;\n\n        BGAQRCodeUtil.printRect(\"转换前\", scanRect);\n\n        if (BGAQRCodeUtil.isPortrait(getContext())) {\n            int temp = centerX;\n            centerX = centerY;\n            centerY = temp;\n\n            temp = rectHalfWidth;\n            rectHalfWidth = rectHalfHeight;\n            rectHalfHeight = temp;\n        }\n        scanRect = new Rect(centerX - rectHalfWidth, centerY - rectHalfHeight, centerX + rectHalfWidth, centerY + rectHalfHeight);\n        BGAQRCodeUtil.printRect(\"转换后\", scanRect);\n\n        BGAQRCodeUtil.d(\"扫码框发生变化触发对焦测光\");\n        handleFocusMetering(scanRect.centerX(), scanRect.centerY(), scanRect.width(), scanRect.height());\n    }\n\n    @Override\n    public boolean onTouchEvent(MotionEvent event) {\n        if (!isPreviewing()) {\n            return super.onTouchEvent(event);\n        }\n\n        if (event.getPointerCount() == 1 && (event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_UP) {\n            if (mIsTouchFocusing) {\n                return true;\n            }\n            mIsTouchFocusing = true;\n            BGAQRCodeUtil.d(\"手指触摸触发对焦测光\");\n            float centerX = event.getX();\n            float centerY = event.getY();\n            if (BGAQRCodeUtil.isPortrait(getContext())) {\n                float temp = centerX;\n                centerX = centerY;\n                centerY = temp;\n            }\n            int focusSize = BGAQRCodeUtil.dp2px(getContext(), 120);\n            handleFocusMetering(centerX, centerY, focusSize, focusSize);\n        }\n\n        if (event.getPointerCount() == 2) {\n            switch (event.getAction() & MotionEvent.ACTION_MASK) {\n                case MotionEvent.ACTION_POINTER_DOWN:\n                    mOldDist = BGAQRCodeUtil.calculateFingerSpacing(event);\n                    break;\n                case MotionEvent.ACTION_MOVE:\n                    float newDist = BGAQRCodeUtil.calculateFingerSpacing(event);\n                    if (newDist > mOldDist) {\n                        handleZoom(true, mCamera);\n                    } else if (newDist < mOldDist) {\n                        handleZoom(false, mCamera);\n                    }\n                    break;\n            }\n        }\n        return true;\n    }\n\n    private static void handleZoom(boolean isZoomIn, Camera camera) {\n        try {\n            Camera.Parameters params = camera.getParameters();\n            if (params.isZoomSupported()) {\n                int zoom = params.getZoom();\n                if (isZoomIn && zoom < params.getMaxZoom()) {\n                    BGAQRCodeUtil.d(\"放大\");\n                    zoom++;\n                } else if (!isZoomIn && zoom > 0) {\n                    BGAQRCodeUtil.d(\"缩小\");\n                    zoom--;\n                } else {\n                    BGAQRCodeUtil.d(\"既不放大也不缩小\");\n                }\n                params.setZoom(zoom);\n                camera.setParameters(params);\n            } else {\n                BGAQRCodeUtil.d(\"不支持缩放\");\n            }\n        } catch (Exception e) {\n            e.printStackTrace();\n        }\n    }\n\n    private void handleFocusMetering(float originFocusCenterX, float originFocusCenterY,\n            int originFocusWidth, int originFocusHeight) {\n        try {\n            boolean isNeedUpdate = false;\n            Camera.Parameters focusMeteringParameters = mCamera.getParameters();\n            Camera.Size size = focusMeteringParameters.getPreviewSize();\n            if (focusMeteringParameters.getMaxNumFocusAreas() > 0) {\n                BGAQRCodeUtil.d(\"支持设置对焦区域\");\n                isNeedUpdate = true;\n                Rect focusRect = BGAQRCodeUtil.calculateFocusMeteringArea(1f,\n                        originFocusCenterX, originFocusCenterY,\n                        originFocusWidth, originFocusHeight,\n                        size.width, size.height);\n                BGAQRCodeUtil.printRect(\"对焦区域\", focusRect);\n                focusMeteringParameters.setFocusAreas(Collections.singletonList(new Camera.Area(focusRect, 1000)));\n                focusMeteringParameters.setFocusMode(Camera.Parameters.FOCUS_MODE_MACRO);\n            } else {\n                BGAQRCodeUtil.d(\"不支持设置对焦区域\");\n            }\n\n            if (focusMeteringParameters.getMaxNumMeteringAreas() > 0) {\n                BGAQRCodeUtil.d(\"支持设置测光区域\");\n                isNeedUpdate = true;\n                Rect meteringRect = BGAQRCodeUtil.calculateFocusMeteringArea(1.5f,\n                        originFocusCenterX, originFocusCenterY,\n                        originFocusWidth, originFocusHeight,\n                        size.width, size.height);\n                BGAQRCodeUtil.printRect(\"测光区域\", meteringRect);\n                focusMeteringParameters.setMeteringAreas(Collections.singletonList(new Camera.Area(meteringRect, 1000)));\n            } else {\n                BGAQRCodeUtil.d(\"不支持设置测光区域\");\n            }\n\n            if (isNeedUpdate) {\n                mCamera.cancelAutoFocus();\n                mCamera.setParameters(focusMeteringParameters);\n                mCamera.autoFocus(new Camera.AutoFocusCallback() {\n                    public void onAutoFocus(boolean success, Camera camera) {\n                        if (success) {\n                            BGAQRCodeUtil.d(\"对焦测光成功\");\n                        } else {\n                            BGAQRCodeUtil.e(\"对焦测光失败\");\n                        }\n                        startContinuousAutoFocus();\n                    }\n                });\n            } else {\n                mIsTouchFocusing = false;\n            }\n        } catch (Exception e) {\n            e.printStackTrace();\n            BGAQRCodeUtil.e(\"对焦测光失败：\" + e.getMessage());\n            startContinuousAutoFocus();\n        }\n    }\n\n    /**\n     * 连续对焦\n     */\n    private void startContinuousAutoFocus() {\n        mIsTouchFocusing = false;\n        if (mCamera == null) {\n            return;\n        }\n        try {\n            Camera.Parameters parameters = mCamera.getParameters();\n            // 连续对焦\n            parameters.setFocusMode(Camera.Parameters.FOCUS_MODE_CONTINUOUS_PICTURE);\n            mCamera.setParameters(parameters);\n            // 要实现连续的自动对焦，这一句必须加上\n            mCamera.cancelAutoFocus();\n        } catch (Exception e) {\n            BGAQRCodeUtil.e(\"连续对焦失败\");\n        }\n    }\n\n    boolean isPreviewing() {\n        return mCamera != null && mPreviewing && mSurfaceCreated;\n    }\n\n    @Override\n    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {\n        int width = getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec);\n        int height = getDefaultSize(getSuggestedMinimumHeight(), heightMeasureSpec);\n        if (mCameraConfigurationManager != null && mCameraConfigurationManager.getCameraResolution() != null) {\n            Point cameraResolution = mCameraConfigurationManager.getCameraResolution();\n            // 取出来的cameraResolution高宽值与屏幕的高宽顺序是相反的\n            int cameraPreviewWidth = cameraResolution.x;\n            int cameraPreviewHeight = cameraResolution.y;\n            if (width * 1f / height < cameraPreviewWidth * 1f / cameraPreviewHeight) {\n                float ratio = cameraPreviewHeight * 1f / cameraPreviewWidth;\n                width = (int) (height / ratio + 0.5f);\n            } else {\n                float ratio = cameraPreviewWidth * 1f / cameraPreviewHeight;\n                height = (int) (width / ratio + 0.5f);\n            }\n        }\n        super.onMeasure(MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY));\n    }\n\n    interface Delegate {\n        void onStartPreview();\n    }\n}"
  },
  {
    "path": "qrcodecore/src/main/java/cn/bingoogolapple/qrcode/core/ProcessDataTask.java",
    "content": "package cn.bingoogolapple.qrcode.core;\n\nimport android.graphics.Bitmap;\nimport android.hardware.Camera;\nimport android.os.AsyncTask;\nimport android.text.TextUtils;\n\nimport java.lang.ref.WeakReference;\n\nclass ProcessDataTask extends AsyncTask<Void, Void, ScanResult> {\n    private Camera mCamera;\n    private byte[] mData;\n    private boolean mIsPortrait;\n    private String mPicturePath;\n    private Bitmap mBitmap;\n    private WeakReference<QRCodeView> mQRCodeViewRef;\n    private static long sLastStartTime = 0;\n\n    ProcessDataTask(Camera camera, byte[] data, QRCodeView qrCodeView, boolean isPortrait) {\n        mCamera = camera;\n        mData = data;\n        mQRCodeViewRef = new WeakReference<>(qrCodeView);\n        mIsPortrait = isPortrait;\n    }\n\n    ProcessDataTask(String picturePath, QRCodeView qrCodeView) {\n        mPicturePath = picturePath;\n        mQRCodeViewRef = new WeakReference<>(qrCodeView);\n    }\n\n    ProcessDataTask(Bitmap bitmap, QRCodeView qrCodeView) {\n        mBitmap = bitmap;\n        mQRCodeViewRef = new WeakReference<>(qrCodeView);\n    }\n\n    ProcessDataTask perform() {\n        executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);\n        return this;\n    }\n\n    void cancelTask() {\n        if (getStatus() != Status.FINISHED) {\n            cancel(true);\n        }\n    }\n\n    @Override\n    protected void onCancelled() {\n        super.onCancelled();\n        mQRCodeViewRef.clear();\n        mBitmap = null;\n        mData = null;\n    }\n\n    private ScanResult processData(QRCodeView qrCodeView) {\n        if (mData == null) {\n            return null;\n        }\n\n        int width = 0;\n        int height = 0;\n        byte[] data = mData;\n        try {\n            Camera.Parameters parameters = mCamera.getParameters();\n            Camera.Size size = parameters.getPreviewSize();\n            width = size.width;\n            height = size.height;\n\n            if (mIsPortrait) {\n                data = new byte[mData.length];\n                for (int y = 0; y < height; y++) {\n                    for (int x = 0; x < width; x++) {\n                        data[x * height + height - y - 1] = mData[x + y * width];\n                    }\n                }\n                int tmp = width;\n                width = height;\n                height = tmp;\n            }\n\n            return qrCodeView.processData(data, width, height, false);\n        } catch (Exception e1) {\n            e1.printStackTrace();\n            try {\n                if (width != 0 && height != 0) {\n                    BGAQRCodeUtil.d(\"识别失败重试\");\n                    return qrCodeView.processData(data, width, height, true);\n                } else {\n                    return null;\n                }\n            } catch (Exception e2) {\n                e2.printStackTrace();\n                return null;\n            }\n        }\n    }\n\n    @Override\n    protected ScanResult doInBackground(Void... params) {\n        QRCodeView qrCodeView = mQRCodeViewRef.get();\n        if (qrCodeView == null) {\n            return null;\n        }\n\n        if (mPicturePath != null) {\n            return qrCodeView.processBitmapData(BGAQRCodeUtil.getDecodeAbleBitmap(mPicturePath));\n        } else if (mBitmap != null) {\n            ScanResult result = qrCodeView.processBitmapData(mBitmap);\n            mBitmap = null;\n            return result;\n        } else {\n            if (BGAQRCodeUtil.isDebug()) {\n                BGAQRCodeUtil.d(\"两次任务执行的时间间隔：\" + (System.currentTimeMillis() - sLastStartTime));\n                sLastStartTime = System.currentTimeMillis();\n            }\n            long startTime = System.currentTimeMillis();\n\n            ScanResult scanResult = processData(qrCodeView);\n\n            if (BGAQRCodeUtil.isDebug()) {\n                long time = System.currentTimeMillis() - startTime;\n                if (scanResult != null && !TextUtils.isEmpty(scanResult.result)) {\n                    BGAQRCodeUtil.d(\"识别成功时间为：\" + time);\n                } else {\n                    BGAQRCodeUtil.e(\"识别失败时间为：\" + time);\n                }\n            }\n\n            return scanResult;\n        }\n    }\n\n    @Override\n    protected void onPostExecute(ScanResult result) {\n        QRCodeView qrCodeView = mQRCodeViewRef.get();\n        if (qrCodeView == null) {\n            return;\n        }\n\n        if (mPicturePath != null || mBitmap != null) {\n            mBitmap = null;\n            qrCodeView.onPostParseBitmapOrPicture(result);\n        } else {\n            qrCodeView.onPostParseData(result);\n        }\n    }\n}\n"
  },
  {
    "path": "qrcodecore/src/main/java/cn/bingoogolapple/qrcode/core/QRCodeView.java",
    "content": "package cn.bingoogolapple.qrcode.core;\n\nimport android.animation.Animator;\nimport android.animation.AnimatorListenerAdapter;\nimport android.animation.ValueAnimator;\nimport android.content.Context;\nimport android.graphics.Bitmap;\nimport android.graphics.Canvas;\nimport android.graphics.Paint;\nimport android.graphics.PointF;\nimport android.graphics.Rect;\nimport android.hardware.Camera;\nimport android.os.AsyncTask;\nimport android.text.TextUtils;\nimport android.util.AttributeSet;\nimport android.view.View;\nimport android.widget.RelativeLayout;\n\npublic abstract class QRCodeView extends RelativeLayout implements Camera.PreviewCallback {\n    private static final int NO_CAMERA_ID = -1;\n    protected Camera mCamera;\n    protected CameraPreview mCameraPreview;\n    protected ScanBoxView mScanBoxView;\n    protected Delegate mDelegate;\n    protected boolean mSpotAble = false;\n    protected ProcessDataTask mProcessDataTask;\n    protected int mCameraId = Camera.CameraInfo.CAMERA_FACING_BACK;\n    private PointF[] mLocationPoints;\n    private Paint mPaint;\n    protected BarcodeType mBarcodeType = BarcodeType.HIGH_FREQUENCY;\n    private long mLastPreviewFrameTime = 0;\n    private ValueAnimator mAutoZoomAnimator;\n    private long mLastAutoZoomTime = 0;\n\n    // 上次环境亮度记录的时间戳\n    private long mLastAmbientBrightnessRecordTime = System.currentTimeMillis();\n    // 上次环境亮度记录的索引\n    private int mAmbientBrightnessDarkIndex = 0;\n    // 环境亮度历史记录的数组，255 是代表亮度最大值\n    private static final long[] AMBIENT_BRIGHTNESS_DARK_LIST = new long[]{255, 255, 255, 255};\n    // 环境亮度扫描间隔\n    private static final int AMBIENT_BRIGHTNESS_WAIT_SCAN_TIME = 150;\n    // 亮度低的阀值\n    private static final int AMBIENT_BRIGHTNESS_DARK = 60;\n\n    public QRCodeView(Context context, AttributeSet attributeSet) {\n        this(context, attributeSet, 0);\n    }\n\n    public QRCodeView(Context context, AttributeSet attrs, int defStyleAttr) {\n        super(context, attrs, defStyleAttr);\n        initView(context, attrs);\n        setupReader();\n    }\n\n    private void initView(Context context, AttributeSet attrs) {\n        mCameraPreview = new CameraPreview(context);\n        mCameraPreview.setDelegate(new CameraPreview.Delegate() {\n            @Override\n            public void onStartPreview() {\n                setOneShotPreviewCallback();\n            }\n        });\n\n        mScanBoxView = new ScanBoxView(context);\n        mScanBoxView.init(this, attrs);\n        mCameraPreview.setId(R.id.bgaqrcode_camera_preview);\n        addView(mCameraPreview);\n        RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(context, attrs);\n        layoutParams.addRule(RelativeLayout.ALIGN_TOP, mCameraPreview.getId());\n        layoutParams.addRule(RelativeLayout.ALIGN_BOTTOM, mCameraPreview.getId());\n        addView(mScanBoxView, layoutParams);\n\n        mPaint = new Paint();\n        mPaint.setColor(getScanBoxView().getCornerColor());\n        mPaint.setStyle(Paint.Style.FILL);\n    }\n\n    private void setOneShotPreviewCallback() {\n        if (mSpotAble && mCameraPreview.isPreviewing()) {\n            try {\n                mCamera.setOneShotPreviewCallback(this);\n            } catch (Exception e) {\n                e.printStackTrace();\n            }\n        }\n    }\n\n    protected abstract void setupReader();\n\n    /**\n     * 设置扫描二维码的代理\n     *\n     * @param delegate 扫描二维码的代理\n     */\n    public void setDelegate(Delegate delegate) {\n        mDelegate = delegate;\n    }\n\n    public CameraPreview getCameraPreview() {\n        return mCameraPreview;\n    }\n\n    public ScanBoxView getScanBoxView() {\n        return mScanBoxView;\n    }\n\n    /**\n     * 显示扫描框\n     */\n    public void showScanRect() {\n        if (mScanBoxView != null) {\n            mScanBoxView.setVisibility(View.VISIBLE);\n        }\n    }\n\n    /**\n     * 隐藏扫描框\n     */\n    public void hiddenScanRect() {\n        if (mScanBoxView != null) {\n            mScanBoxView.setVisibility(View.GONE);\n        }\n    }\n\n    /**\n     * 打开后置摄像头开始预览，但是并未开始识别\n     */\n    public void startCamera() {\n        startCamera(mCameraId);\n    }\n\n    /**\n     * 打开指定摄像头开始预览，但是并未开始识别\n     */\n    public void startCamera(int cameraFacing) {\n        if (mCamera != null || Camera.getNumberOfCameras() == 0) {\n            return;\n        }\n        int ultimateCameraId = findCameraIdByFacing(cameraFacing);\n        if (ultimateCameraId != NO_CAMERA_ID) {\n            startCameraById(ultimateCameraId);\n            return;\n        }\n\n        if (cameraFacing == Camera.CameraInfo.CAMERA_FACING_BACK) {\n            ultimateCameraId = findCameraIdByFacing(Camera.CameraInfo.CAMERA_FACING_FRONT);\n        } else if (cameraFacing == Camera.CameraInfo.CAMERA_FACING_FRONT) {\n            ultimateCameraId = findCameraIdByFacing(Camera.CameraInfo.CAMERA_FACING_BACK);\n        }\n        if (ultimateCameraId != NO_CAMERA_ID) {\n            startCameraById(ultimateCameraId);\n        }\n    }\n\n    private int findCameraIdByFacing(int cameraFacing) {\n        Camera.CameraInfo cameraInfo = new Camera.CameraInfo();\n        for (int cameraId = 0; cameraId < Camera.getNumberOfCameras(); cameraId++) {\n            try {\n                Camera.getCameraInfo(cameraId, cameraInfo);\n                if (cameraInfo.facing == cameraFacing) {\n                    return cameraId;\n                }\n            } catch (Exception e) {\n                e.printStackTrace();\n            }\n        }\n        return NO_CAMERA_ID;\n    }\n\n    private void startCameraById(int cameraId) {\n        try {\n            mCameraId = cameraId;\n            mCamera = Camera.open(cameraId);\n            mCameraPreview.setCamera(mCamera);\n        } catch (Exception e) {\n            e.printStackTrace();\n            if (mDelegate != null) {\n                mDelegate.onScanQRCodeOpenCameraError();\n            }\n        }\n    }\n\n    /**\n     * 关闭摄像头预览，并且隐藏扫描框\n     */\n    public void stopCamera() {\n        try {\n            stopSpotAndHiddenRect();\n            if (mCamera != null) {\n                mCameraPreview.stopCameraPreview();\n                mCameraPreview.setCamera(null);\n                mCamera.release();\n                mCamera = null;\n            }\n        } catch (Exception e) {\n            e.printStackTrace();\n        }\n    }\n\n    /**\n     * 开始识别\n     */\n    public void startSpot() {\n        mSpotAble = true;\n        startCamera();\n        setOneShotPreviewCallback();\n    }\n\n    /**\n     * 停止识别\n     */\n    public void stopSpot() {\n        mSpotAble = false;\n\n        if (mProcessDataTask != null) {\n            mProcessDataTask.cancelTask();\n            mProcessDataTask = null;\n        }\n\n        if (mCamera != null) {\n            try {\n                mCamera.setOneShotPreviewCallback(null);\n            } catch (Exception e) {\n                e.printStackTrace();\n            }\n        }\n    }\n\n    /**\n     * 停止识别，并且隐藏扫描框\n     */\n    public void stopSpotAndHiddenRect() {\n        stopSpot();\n        hiddenScanRect();\n    }\n\n    /**\n     * 显示扫描框，并开始识别\n     */\n    public void startSpotAndShowRect() {\n        startSpot();\n        showScanRect();\n    }\n\n    /**\n     * 打开闪光灯\n     */\n    public void openFlashlight() {\n        postDelayed(new Runnable() {\n            @Override\n            public void run() {\n                mCameraPreview.openFlashlight();\n            }\n        }, mCameraPreview.isPreviewing() ? 0 : 500);\n    }\n\n    /**\n     * 关闭闪光灯\n     */\n    public void closeFlashlight() {\n        mCameraPreview.closeFlashlight();\n    }\n\n    /**\n     * 销毁二维码扫描控件\n     */\n    public void onDestroy() {\n        stopCamera();\n        mDelegate = null;\n    }\n\n    /**\n     * 切换成扫描条码样式\n     */\n    public void changeToScanBarcodeStyle() {\n        if (!mScanBoxView.getIsBarcode()) {\n            mScanBoxView.setIsBarcode(true);\n        }\n    }\n\n    /**\n     * 切换成扫描二维码样式\n     */\n    public void changeToScanQRCodeStyle() {\n        if (mScanBoxView.getIsBarcode()) {\n            mScanBoxView.setIsBarcode(false);\n        }\n    }\n\n    /**\n     * 当前是否为条码扫描样式\n     */\n    public boolean getIsScanBarcodeStyle() {\n        return mScanBoxView.getIsBarcode();\n    }\n\n    @Override\n    public void onPreviewFrame(final byte[] data, final Camera camera) {\n        if (BGAQRCodeUtil.isDebug()) {\n            BGAQRCodeUtil.d(\"两次 onPreviewFrame 时间间隔：\" + (System.currentTimeMillis() - mLastPreviewFrameTime));\n            mLastPreviewFrameTime = System.currentTimeMillis();\n        }\n\n        if (mCameraPreview != null && mCameraPreview.isPreviewing()) {\n            try {\n                handleAmbientBrightness(data, camera);\n            } catch (Exception e) {\n                e.printStackTrace();\n            }\n        }\n\n        if (!mSpotAble || (mProcessDataTask != null && (mProcessDataTask.getStatus() == AsyncTask.Status.PENDING\n                || mProcessDataTask.getStatus() == AsyncTask.Status.RUNNING))) {\n            return;\n        }\n\n        mProcessDataTask = new ProcessDataTask(camera, data, this, BGAQRCodeUtil.isPortrait(getContext())).perform();\n    }\n\n    private void handleAmbientBrightness(byte[] data, Camera camera) {\n        if (mCameraPreview == null || !mCameraPreview.isPreviewing()) {\n            return;\n        }\n        long currentTime = System.currentTimeMillis();\n        if (currentTime - mLastAmbientBrightnessRecordTime < AMBIENT_BRIGHTNESS_WAIT_SCAN_TIME) {\n            return;\n        }\n        mLastAmbientBrightnessRecordTime = currentTime;\n\n        int width = camera.getParameters().getPreviewSize().width;\n        int height = camera.getParameters().getPreviewSize().height;\n        // 像素点的总亮度\n        long pixelLightCount = 0L;\n        // 像素点的总数\n        long pixelCount = width * height;\n        // 采集步长，因为没有必要每个像素点都采集，可以跨一段采集一个，减少计算负担，必须大于等于1。\n        int step = 10;\n        // data.length - allCount * 1.5f 的目的是判断图像格式是不是 YUV420 格式，只有是这种格式才相等\n        //因为 int 整形与 float 浮点直接比较会出问题，所以这么比\n        if (Math.abs(data.length - pixelCount * 1.5f) < 0.00001f) {\n            for (int i = 0; i < pixelCount; i += step) {\n                // 如果直接加是不行的，因为 data[i] 记录的是色值并不是数值，byte 的范围是 +127 到 —128，\n                // 而亮度 FFFFFF 是 11111111 是 -127，所以这里需要先转为无符号 unsigned long 参考 Byte.toUnsignedLong()\n                pixelLightCount += ((long) data[i]) & 0xffL;\n            }\n            // 平均亮度\n            long cameraLight = pixelLightCount / (pixelCount / step);\n            // 更新历史记录\n            int lightSize = AMBIENT_BRIGHTNESS_DARK_LIST.length;\n            AMBIENT_BRIGHTNESS_DARK_LIST[mAmbientBrightnessDarkIndex = mAmbientBrightnessDarkIndex % lightSize] = cameraLight;\n            mAmbientBrightnessDarkIndex++;\n            boolean isDarkEnv = true;\n            // 判断在时间范围 AMBIENT_BRIGHTNESS_WAIT_SCAN_TIME * lightSize 内是不是亮度过暗\n            for (long ambientBrightness : AMBIENT_BRIGHTNESS_DARK_LIST) {\n                if (ambientBrightness > AMBIENT_BRIGHTNESS_DARK) {\n                    isDarkEnv = false;\n                    break;\n                }\n            }\n            BGAQRCodeUtil.d(\"摄像头环境亮度为：\" + cameraLight);\n            if (mDelegate != null) {\n                mDelegate.onCameraAmbientBrightnessChanged(isDarkEnv);\n            }\n        }\n    }\n\n    /**\n     * 解析本地图片二维码。返回二维码图片里的内容 或 null\n     *\n     * @param picturePath 要解析的二维码图片本地路径\n     */\n    public void decodeQRCode(String picturePath) {\n        mProcessDataTask = new ProcessDataTask(picturePath, this).perform();\n    }\n\n    /**\n     * 解析 Bitmap 二维码。返回二维码图片里的内容 或 null\n     *\n     * @param bitmap 要解析的二维码图片\n     */\n    public void decodeQRCode(Bitmap bitmap) {\n        mProcessDataTask = new ProcessDataTask(bitmap, this).perform();\n    }\n\n    protected abstract ScanResult processData(byte[] data, int width, int height, boolean isRetry);\n\n    protected abstract ScanResult processBitmapData(Bitmap bitmap);\n\n    void onPostParseData(ScanResult scanResult) {\n        if (!mSpotAble) {\n            return;\n        }\n        String result = scanResult == null ? null : scanResult.result;\n        if (TextUtils.isEmpty(result)) {\n            try {\n                if (mCamera != null) {\n                    mCamera.setOneShotPreviewCallback(QRCodeView.this);\n                }\n            } catch (Exception e) {\n                e.printStackTrace();\n            }\n        } else {\n            mSpotAble = false;\n            try {\n                if (mDelegate != null) {\n                    mDelegate.onScanQRCodeSuccess(result);\n                }\n            } catch (Exception e) {\n                e.printStackTrace();\n            }\n        }\n    }\n\n    void onPostParseBitmapOrPicture(ScanResult scanResult) {\n        if (mDelegate != null) {\n            String result = scanResult == null ? null : scanResult.result;\n            mDelegate.onScanQRCodeSuccess(result);\n        }\n    }\n\n    void onScanBoxRectChanged(Rect rect) {\n        mCameraPreview.onScanBoxRectChanged(rect);\n    }\n\n    @Override\n    protected void dispatchDraw(Canvas canvas) {\n        super.dispatchDraw(canvas);\n\n\n        if (!isShowLocationPoint() || mLocationPoints == null) {\n            return;\n        }\n\n        for (PointF pointF : mLocationPoints) {\n            canvas.drawCircle(pointF.x, pointF.y, 10, mPaint);\n        }\n        mLocationPoints = null;\n        postInvalidateDelayed(2000);\n    }\n\n    /**\n     * 是否显示定位点\n     */\n    protected boolean isShowLocationPoint() {\n        return mScanBoxView != null && mScanBoxView.isShowLocationPoint();\n    }\n\n    /**\n     * 是否自动缩放\n     */\n    protected boolean isAutoZoom() {\n        return mScanBoxView != null && mScanBoxView.isAutoZoom();\n    }\n\n    protected boolean transformToViewCoordinates(final PointF[] pointArr, final Rect scanBoxAreaRect, final boolean isNeedAutoZoom, final String result) {\n        if (pointArr == null || pointArr.length == 0) {\n            return false;\n        }\n\n        try {\n            // 不管横屏还是竖屏，size.width 大于 size.height\n            Camera.Size size = mCamera.getParameters().getPreviewSize();\n            boolean isMirrorPreview = mCameraId == Camera.CameraInfo.CAMERA_FACING_FRONT;\n            int statusBarHeight = BGAQRCodeUtil.getStatusBarHeight(getContext());\n\n            PointF[] transformedPoints = new PointF[pointArr.length];\n            int index = 0;\n            for (PointF qrPoint : pointArr) {\n                transformedPoints[index] = transform(qrPoint.x, qrPoint.y, size.width, size.height, isMirrorPreview, statusBarHeight, scanBoxAreaRect);\n                index++;\n            }\n            mLocationPoints = transformedPoints;\n            postInvalidate();\n\n            if (isNeedAutoZoom) {\n                return handleAutoZoom(transformedPoints, result);\n            }\n            return false;\n        } catch (Exception e) {\n            mLocationPoints = null;\n            e.printStackTrace();\n            return false;\n        }\n    }\n\n    private boolean handleAutoZoom(PointF[] locationPoints, final String result) {\n        if (mCamera == null || mScanBoxView == null) {\n            return false;\n        }\n        if (locationPoints == null || locationPoints.length < 1) {\n            return false;\n        }\n        if (mAutoZoomAnimator != null && mAutoZoomAnimator.isRunning()) {\n            return true;\n        }\n        if (System.currentTimeMillis() - mLastAutoZoomTime < 1200) {\n            return true;\n        }\n        Camera.Parameters parameters = mCamera.getParameters();\n        if (!parameters.isZoomSupported()) {\n            return false;\n        }\n\n        float point1X = locationPoints[0].x;\n        float point1Y = locationPoints[0].y;\n        float point2X = locationPoints[1].x;\n        float point2Y = locationPoints[1].y;\n        float xLen = Math.abs(point1X - point2X);\n        float yLen = Math.abs(point1Y - point2Y);\n        int len = (int) Math.sqrt(xLen * xLen + yLen * yLen);\n\n        int scanBoxWidth = mScanBoxView.getRectWidth();\n        if (len > scanBoxWidth / 4) {\n            return false;\n        }\n        // 二维码在扫描框中的宽度小于扫描框的 1/4，放大镜头\n        final int maxZoom = parameters.getMaxZoom();\n        final int zoomStep = maxZoom / 4;\n        final int zoom = parameters.getZoom();\n        post(new Runnable() {\n            @Override\n            public void run() {\n                startAutoZoom(zoom, Math.min(zoom + zoomStep, maxZoom), result);\n            }\n        });\n        return true;\n    }\n\n    private void startAutoZoom(int oldZoom, int newZoom, final String result) {\n        mAutoZoomAnimator = ValueAnimator.ofInt(oldZoom, newZoom);\n        mAutoZoomAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {\n            @Override\n            public void onAnimationUpdate(ValueAnimator animation) {\n                if (mCameraPreview == null || !mCameraPreview.isPreviewing()) {\n                    return;\n                }\n                int zoom = (int) animation.getAnimatedValue();\n                Camera.Parameters parameters = mCamera.getParameters();\n                parameters.setZoom(zoom);\n                mCamera.setParameters(parameters);\n            }\n        });\n        mAutoZoomAnimator.addListener(new AnimatorListenerAdapter() {\n            @Override\n            public void onAnimationEnd(Animator animation) {\n                onPostParseData(new ScanResult(result));\n            }\n        });\n        mAutoZoomAnimator.setDuration(600);\n        mAutoZoomAnimator.setRepeatCount(0);\n        mAutoZoomAnimator.start();\n        mLastAutoZoomTime = System.currentTimeMillis();\n    }\n\n    @Override\n    protected void onDetachedFromWindow() {\n        super.onDetachedFromWindow();\n        if (mAutoZoomAnimator != null) {\n            mAutoZoomAnimator.cancel();\n        }\n    }\n\n    private PointF transform(float originX, float originY, float cameraPreviewWidth, float cameraPreviewHeight, boolean isMirrorPreview, int statusBarHeight,\n            final Rect scanBoxAreaRect) {\n        int viewWidth = getWidth();\n        int viewHeight = getHeight();\n\n        PointF result;\n        float scaleX;\n        float scaleY;\n\n        if (BGAQRCodeUtil.isPortrait(getContext())) {\n            scaleX = viewWidth / cameraPreviewHeight;\n            scaleY = viewHeight / cameraPreviewWidth;\n            result = new PointF((cameraPreviewHeight - originX) * scaleX, (cameraPreviewWidth - originY) * scaleY);\n            result.y = viewHeight - result.y;\n            result.x = viewWidth - result.x;\n\n            if (scanBoxAreaRect == null) {\n                result.y += statusBarHeight;\n            }\n        } else {\n            scaleX = viewWidth / cameraPreviewWidth;\n            scaleY = viewHeight / cameraPreviewHeight;\n            result = new PointF(originX * scaleX, originY * scaleY);\n            if (isMirrorPreview) {\n                result.x = viewWidth - result.x;\n            }\n        }\n\n        if (scanBoxAreaRect != null) {\n            result.y += scanBoxAreaRect.top;\n            result.x += scanBoxAreaRect.left;\n        }\n\n        return result;\n    }\n\n    public interface Delegate {\n        /**\n         * 处理扫描结果\n         *\n         * @param result 摄像头扫码时只要回调了该方法 result 就一定有值，不会为 null。解析本地图片或 Bitmap 时 result 可能为 null\n         */\n        void onScanQRCodeSuccess(String result);\n\n        /**\n         * 摄像头环境亮度发生变化\n         *\n         * @param isDark 是否变暗\n         */\n        void onCameraAmbientBrightnessChanged(boolean isDark);\n\n        /**\n         * 处理打开相机出错\n         */\n        void onScanQRCodeOpenCameraError();\n    }\n}"
  },
  {
    "path": "qrcodecore/src/main/java/cn/bingoogolapple/qrcode/core/ScanBoxView.java",
    "content": "package cn.bingoogolapple.qrcode.core;\n\nimport android.content.Context;\nimport android.content.res.TypedArray;\nimport android.graphics.Bitmap;\nimport android.graphics.BitmapFactory;\nimport android.graphics.Canvas;\nimport android.graphics.Color;\nimport android.graphics.Paint;\nimport android.graphics.Rect;\nimport android.graphics.RectF;\nimport android.graphics.drawable.BitmapDrawable;\nimport android.graphics.drawable.Drawable;\nimport android.text.Layout;\nimport android.text.StaticLayout;\nimport android.text.TextPaint;\nimport android.text.TextUtils;\nimport android.util.AttributeSet;\nimport android.view.View;\n\npublic class ScanBoxView extends View {\n    private int mMoveStepDistance;\n    private int mAnimDelayTime;\n\n    private Rect mFramingRect;\n    private float mScanLineTop;\n    private float mScanLineLeft;\n    private Paint mPaint;\n    private TextPaint mTipPaint;\n\n    private int mMaskColor;\n    private int mCornerColor;\n    private int mCornerLength;\n    private int mCornerSize;\n    private int mRectWidth;\n    private int mRectHeight;\n    private int mBarcodeRectHeight;\n    private int mTopOffset;\n    private int mScanLineSize;\n    private int mScanLineColor;\n    private int mScanLineMargin;\n    private boolean mIsShowDefaultScanLineDrawable;\n    private Drawable mCustomScanLineDrawable;\n    private Bitmap mScanLineBitmap;\n    private int mBorderSize;\n    private int mBorderColor;\n    private int mAnimTime;\n    private float mVerticalBias;\n    private int mCornerDisplayType;\n    private int mToolbarHeight;\n    private boolean mIsBarcode;\n    private String mQRCodeTipText;\n    private String mBarCodeTipText;\n    private String mTipText;\n    private int mTipTextSize;\n    private int mTipTextColor;\n    private boolean mIsTipTextBelowRect;\n    private int mTipTextMargin;\n    private boolean mIsShowTipTextAsSingleLine;\n    private int mTipBackgroundColor;\n    private boolean mIsShowTipBackground;\n    private boolean mIsScanLineReverse;\n    private boolean mIsShowDefaultGridScanLineDrawable;\n    private Drawable mCustomGridScanLineDrawable;\n    private Bitmap mGridScanLineBitmap;\n    private float mGridScanLineBottom;\n    private float mGridScanLineRight;\n\n    private Bitmap mOriginQRCodeScanLineBitmap;\n    private Bitmap mOriginBarCodeScanLineBitmap;\n    private Bitmap mOriginQRCodeGridScanLineBitmap;\n    private Bitmap mOriginBarCodeGridScanLineBitmap;\n\n\n    private float mHalfCornerSize;\n    private StaticLayout mTipTextSl;\n    private int mTipBackgroundRadius;\n\n    private boolean mIsOnlyDecodeScanBoxArea;\n    private boolean mIsShowLocationPoint;\n    private boolean mIsAutoZoom;\n\n    private QRCodeView mQRCodeView;\n\n    public ScanBoxView(Context context) {\n        super(context);\n        mPaint = new Paint();\n        mPaint.setAntiAlias(true);\n        mMaskColor = Color.parseColor(\"#33FFFFFF\");\n        mCornerColor = Color.WHITE;\n        mCornerLength = BGAQRCodeUtil.dp2px(context, 20);\n        mCornerSize = BGAQRCodeUtil.dp2px(context, 3);\n        mScanLineSize = BGAQRCodeUtil.dp2px(context, 1);\n        mScanLineColor = Color.WHITE;\n        mTopOffset = BGAQRCodeUtil.dp2px(context, 90);\n        mRectWidth = BGAQRCodeUtil.dp2px(context, 200);\n        mBarcodeRectHeight = BGAQRCodeUtil.dp2px(context, 140);\n        mScanLineMargin = 0;\n        mIsShowDefaultScanLineDrawable = false;\n        mCustomScanLineDrawable = null;\n        mScanLineBitmap = null;\n        mBorderSize = BGAQRCodeUtil.dp2px(context, 1);\n        mBorderColor = Color.WHITE;\n        mAnimTime = 1000;\n        mVerticalBias = -1;\n        mCornerDisplayType = 1;\n        mToolbarHeight = 0;\n        mIsBarcode = false;\n        mMoveStepDistance = BGAQRCodeUtil.dp2px(context, 2);\n        mTipText = null;\n        mTipTextSize = BGAQRCodeUtil.sp2px(context, 14);\n        mTipTextColor = Color.WHITE;\n        mIsTipTextBelowRect = false;\n        mTipTextMargin = BGAQRCodeUtil.dp2px(context, 20);\n        mIsShowTipTextAsSingleLine = false;\n        mTipBackgroundColor = Color.parseColor(\"#22000000\");\n        mIsShowTipBackground = false;\n        mIsScanLineReverse = false;\n        mIsShowDefaultGridScanLineDrawable = false;\n\n        mTipPaint = new TextPaint();\n        mTipPaint.setAntiAlias(true);\n\n        mTipBackgroundRadius = BGAQRCodeUtil.dp2px(context, 4);\n\n        mIsOnlyDecodeScanBoxArea = false;\n        mIsShowLocationPoint = false;\n        mIsAutoZoom = false;\n    }\n\n    void init(QRCodeView qrCodeView, AttributeSet attrs) {\n        mQRCodeView = qrCodeView;\n\n        TypedArray typedArray = getContext().obtainStyledAttributes(attrs, R.styleable.QRCodeView);\n        final int count = typedArray.getIndexCount();\n        for (int i = 0; i < count; i++) {\n            initCustomAttr(typedArray.getIndex(i), typedArray);\n        }\n        typedArray.recycle();\n\n        afterInitCustomAttrs();\n    }\n\n    private void initCustomAttr(int attr, TypedArray typedArray) {\n        if (attr == R.styleable.QRCodeView_qrcv_topOffset) {\n            mTopOffset = typedArray.getDimensionPixelSize(attr, mTopOffset);\n        } else if (attr == R.styleable.QRCodeView_qrcv_cornerSize) {\n            mCornerSize = typedArray.getDimensionPixelSize(attr, mCornerSize);\n        } else if (attr == R.styleable.QRCodeView_qrcv_cornerLength) {\n            mCornerLength = typedArray.getDimensionPixelSize(attr, mCornerLength);\n        } else if (attr == R.styleable.QRCodeView_qrcv_scanLineSize) {\n            mScanLineSize = typedArray.getDimensionPixelSize(attr, mScanLineSize);\n        } else if (attr == R.styleable.QRCodeView_qrcv_rectWidth) {\n            mRectWidth = typedArray.getDimensionPixelSize(attr, mRectWidth);\n        } else if (attr == R.styleable.QRCodeView_qrcv_maskColor) {\n            mMaskColor = typedArray.getColor(attr, mMaskColor);\n        } else if (attr == R.styleable.QRCodeView_qrcv_cornerColor) {\n            mCornerColor = typedArray.getColor(attr, mCornerColor);\n        } else if (attr == R.styleable.QRCodeView_qrcv_scanLineColor) {\n            mScanLineColor = typedArray.getColor(attr, mScanLineColor);\n        } else if (attr == R.styleable.QRCodeView_qrcv_scanLineMargin) {\n            mScanLineMargin = typedArray.getDimensionPixelSize(attr, mScanLineMargin);\n        } else if (attr == R.styleable.QRCodeView_qrcv_isShowDefaultScanLineDrawable) {\n            mIsShowDefaultScanLineDrawable = typedArray.getBoolean(attr, mIsShowDefaultScanLineDrawable);\n        } else if (attr == R.styleable.QRCodeView_qrcv_customScanLineDrawable) {\n            mCustomScanLineDrawable = typedArray.getDrawable(attr);\n        } else if (attr == R.styleable.QRCodeView_qrcv_borderSize) {\n            mBorderSize = typedArray.getDimensionPixelSize(attr, mBorderSize);\n        } else if (attr == R.styleable.QRCodeView_qrcv_borderColor) {\n            mBorderColor = typedArray.getColor(attr, mBorderColor);\n        } else if (attr == R.styleable.QRCodeView_qrcv_animTime) {\n            mAnimTime = typedArray.getInteger(attr, mAnimTime);\n        } else if (attr == R.styleable.QRCodeView_qrcv_verticalBias) {\n            mVerticalBias = typedArray.getFloat(attr, mVerticalBias);\n        } else if (attr == R.styleable.QRCodeView_qrcv_cornerDisplayType) {\n            mCornerDisplayType = typedArray.getInteger(attr, mCornerDisplayType);\n        } else if (attr == R.styleable.QRCodeView_qrcv_toolbarHeight) {\n            mToolbarHeight = typedArray.getDimensionPixelSize(attr, mToolbarHeight);\n        } else if (attr == R.styleable.QRCodeView_qrcv_barcodeRectHeight) {\n            mBarcodeRectHeight = typedArray.getDimensionPixelSize(attr, mBarcodeRectHeight);\n        } else if (attr == R.styleable.QRCodeView_qrcv_isBarcode) {\n            mIsBarcode = typedArray.getBoolean(attr, mIsBarcode);\n        } else if (attr == R.styleable.QRCodeView_qrcv_barCodeTipText) {\n            mBarCodeTipText = typedArray.getString(attr);\n        } else if (attr == R.styleable.QRCodeView_qrcv_qrCodeTipText) {\n            mQRCodeTipText = typedArray.getString(attr);\n        } else if (attr == R.styleable.QRCodeView_qrcv_tipTextSize) {\n            mTipTextSize = typedArray.getDimensionPixelSize(attr, mTipTextSize);\n        } else if (attr == R.styleable.QRCodeView_qrcv_tipTextColor) {\n            mTipTextColor = typedArray.getColor(attr, mTipTextColor);\n        } else if (attr == R.styleable.QRCodeView_qrcv_isTipTextBelowRect) {\n            mIsTipTextBelowRect = typedArray.getBoolean(attr, mIsTipTextBelowRect);\n        } else if (attr == R.styleable.QRCodeView_qrcv_tipTextMargin) {\n            mTipTextMargin = typedArray.getDimensionPixelSize(attr, mTipTextMargin);\n        } else if (attr == R.styleable.QRCodeView_qrcv_isShowTipTextAsSingleLine) {\n            mIsShowTipTextAsSingleLine = typedArray.getBoolean(attr, mIsShowTipTextAsSingleLine);\n        } else if (attr == R.styleable.QRCodeView_qrcv_isShowTipBackground) {\n            mIsShowTipBackground = typedArray.getBoolean(attr, mIsShowTipBackground);\n        } else if (attr == R.styleable.QRCodeView_qrcv_tipBackgroundColor) {\n            mTipBackgroundColor = typedArray.getColor(attr, mTipBackgroundColor);\n        } else if (attr == R.styleable.QRCodeView_qrcv_isScanLineReverse) {\n            mIsScanLineReverse = typedArray.getBoolean(attr, mIsScanLineReverse);\n        } else if (attr == R.styleable.QRCodeView_qrcv_isShowDefaultGridScanLineDrawable) {\n            mIsShowDefaultGridScanLineDrawable = typedArray.getBoolean(attr, mIsShowDefaultGridScanLineDrawable);\n        } else if (attr == R.styleable.QRCodeView_qrcv_customGridScanLineDrawable) {\n            mCustomGridScanLineDrawable = typedArray.getDrawable(attr);\n        } else if (attr == R.styleable.QRCodeView_qrcv_isOnlyDecodeScanBoxArea) {\n            mIsOnlyDecodeScanBoxArea = typedArray.getBoolean(attr, mIsOnlyDecodeScanBoxArea);\n        } else if (attr == R.styleable.QRCodeView_qrcv_isShowLocationPoint) {\n            mIsShowLocationPoint = typedArray.getBoolean(attr, mIsShowLocationPoint);\n        } else if (attr == R.styleable.QRCodeView_qrcv_isAutoZoom) {\n            mIsAutoZoom = typedArray.getBoolean(attr, mIsAutoZoom);\n        }\n    }\n\n    private void afterInitCustomAttrs() {\n        if (mCustomGridScanLineDrawable != null) {\n            mOriginQRCodeGridScanLineBitmap = ((BitmapDrawable) mCustomGridScanLineDrawable).getBitmap();\n        }\n        if (mOriginQRCodeGridScanLineBitmap == null) {\n            mOriginQRCodeGridScanLineBitmap = BitmapFactory.decodeResource(getResources(), R.mipmap.qrcode_default_grid_scan_line);\n            mOriginQRCodeGridScanLineBitmap = BGAQRCodeUtil.makeTintBitmap(mOriginQRCodeGridScanLineBitmap, mScanLineColor);\n        }\n        mOriginBarCodeGridScanLineBitmap = BGAQRCodeUtil.adjustPhotoRotation(mOriginQRCodeGridScanLineBitmap, 90);\n        mOriginBarCodeGridScanLineBitmap = BGAQRCodeUtil.adjustPhotoRotation(mOriginBarCodeGridScanLineBitmap, 90);\n        mOriginBarCodeGridScanLineBitmap = BGAQRCodeUtil.adjustPhotoRotation(mOriginBarCodeGridScanLineBitmap, 90);\n\n\n        if (mCustomScanLineDrawable != null) {\n            mOriginQRCodeScanLineBitmap = ((BitmapDrawable) mCustomScanLineDrawable).getBitmap();\n        }\n        if (mOriginQRCodeScanLineBitmap == null) {\n            mOriginQRCodeScanLineBitmap = BitmapFactory.decodeResource(getResources(), R.mipmap.qrcode_default_scan_line);\n            mOriginQRCodeScanLineBitmap = BGAQRCodeUtil.makeTintBitmap(mOriginQRCodeScanLineBitmap, mScanLineColor);\n        }\n        mOriginBarCodeScanLineBitmap = BGAQRCodeUtil.adjustPhotoRotation(mOriginQRCodeScanLineBitmap, 90);\n\n        mTopOffset += mToolbarHeight;\n        mHalfCornerSize = 1.0f * mCornerSize / 2;\n\n        mTipPaint.setTextSize(mTipTextSize);\n        mTipPaint.setColor(mTipTextColor);\n\n        setIsBarcode(mIsBarcode);\n    }\n\n    @Override\n    public void onDraw(Canvas canvas) {\n        if (mFramingRect == null) {\n            return;\n        }\n\n        // 画遮罩层\n        drawMask(canvas);\n\n        // 画边框线\n        drawBorderLine(canvas);\n\n        // 画四个直角的线\n        drawCornerLine(canvas);\n\n        // 画扫描线\n        drawScanLine(canvas);\n\n        // 画提示文本\n        drawTipText(canvas);\n\n        // 移动扫描线的位置\n        moveScanLine();\n    }\n\n    /**\n     * 画遮罩层\n     */\n    private void drawMask(Canvas canvas) {\n        int width = canvas.getWidth();\n        int height = canvas.getHeight();\n\n        if (mMaskColor != Color.TRANSPARENT) {\n            mPaint.setStyle(Paint.Style.FILL);\n            mPaint.setColor(mMaskColor);\n            canvas.drawRect(0, 0, width, mFramingRect.top, mPaint);\n            canvas.drawRect(0, mFramingRect.top, mFramingRect.left, mFramingRect.bottom + 1, mPaint);\n            canvas.drawRect(mFramingRect.right + 1, mFramingRect.top, width, mFramingRect.bottom + 1, mPaint);\n            canvas.drawRect(0, mFramingRect.bottom + 1, width, height, mPaint);\n        }\n    }\n\n    /**\n     * 画边框线\n     */\n    private void drawBorderLine(Canvas canvas) {\n        if (mBorderSize > 0) {\n            mPaint.setStyle(Paint.Style.STROKE);\n            mPaint.setColor(mBorderColor);\n            mPaint.setStrokeWidth(mBorderSize);\n            canvas.drawRect(mFramingRect, mPaint);\n        }\n    }\n\n    /**\n     * 画四个直角的线\n     */\n    private void drawCornerLine(Canvas canvas) {\n        if (mHalfCornerSize > 0) {\n            mPaint.setStyle(Paint.Style.STROKE);\n            mPaint.setColor(mCornerColor);\n            mPaint.setStrokeWidth(mCornerSize);\n            if (mCornerDisplayType == 1) {\n                canvas.drawLine(mFramingRect.left - mHalfCornerSize, mFramingRect.top, mFramingRect.left - mHalfCornerSize + mCornerLength, mFramingRect.top,\n                        mPaint);\n                canvas.drawLine(mFramingRect.left, mFramingRect.top - mHalfCornerSize, mFramingRect.left, mFramingRect.top - mHalfCornerSize + mCornerLength,\n                        mPaint);\n                canvas.drawLine(mFramingRect.right + mHalfCornerSize, mFramingRect.top, mFramingRect.right + mHalfCornerSize - mCornerLength, mFramingRect.top,\n                        mPaint);\n                canvas.drawLine(mFramingRect.right, mFramingRect.top - mHalfCornerSize, mFramingRect.right, mFramingRect.top - mHalfCornerSize + mCornerLength,\n                        mPaint);\n\n                canvas.drawLine(mFramingRect.left - mHalfCornerSize, mFramingRect.bottom, mFramingRect.left - mHalfCornerSize + mCornerLength,\n                        mFramingRect.bottom, mPaint);\n                canvas.drawLine(mFramingRect.left, mFramingRect.bottom + mHalfCornerSize, mFramingRect.left,\n                        mFramingRect.bottom + mHalfCornerSize - mCornerLength, mPaint);\n                canvas.drawLine(mFramingRect.right + mHalfCornerSize, mFramingRect.bottom, mFramingRect.right + mHalfCornerSize - mCornerLength,\n                        mFramingRect.bottom, mPaint);\n                canvas.drawLine(mFramingRect.right, mFramingRect.bottom + mHalfCornerSize, mFramingRect.right,\n                        mFramingRect.bottom + mHalfCornerSize - mCornerLength, mPaint);\n            } else if (mCornerDisplayType == 2) {\n                canvas.drawLine(mFramingRect.left, mFramingRect.top + mHalfCornerSize, mFramingRect.left + mCornerLength, mFramingRect.top + mHalfCornerSize,\n                        mPaint);\n                canvas.drawLine(mFramingRect.left + mHalfCornerSize, mFramingRect.top, mFramingRect.left + mHalfCornerSize, mFramingRect.top + mCornerLength,\n                        mPaint);\n                canvas.drawLine(mFramingRect.right, mFramingRect.top + mHalfCornerSize, mFramingRect.right - mCornerLength, mFramingRect.top + mHalfCornerSize,\n                        mPaint);\n                canvas.drawLine(mFramingRect.right - mHalfCornerSize, mFramingRect.top, mFramingRect.right - mHalfCornerSize, mFramingRect.top + mCornerLength,\n                        mPaint);\n\n                canvas.drawLine(mFramingRect.left, mFramingRect.bottom - mHalfCornerSize, mFramingRect.left + mCornerLength,\n                        mFramingRect.bottom - mHalfCornerSize, mPaint);\n                canvas.drawLine(mFramingRect.left + mHalfCornerSize, mFramingRect.bottom, mFramingRect.left + mHalfCornerSize,\n                        mFramingRect.bottom - mCornerLength, mPaint);\n                canvas.drawLine(mFramingRect.right, mFramingRect.bottom - mHalfCornerSize, mFramingRect.right - mCornerLength,\n                        mFramingRect.bottom - mHalfCornerSize, mPaint);\n                canvas.drawLine(mFramingRect.right - mHalfCornerSize, mFramingRect.bottom, mFramingRect.right - mHalfCornerSize,\n                        mFramingRect.bottom - mCornerLength, mPaint);\n            }\n        }\n    }\n\n    /**\n     * 画扫描线\n     */\n    private void drawScanLine(Canvas canvas) {\n        if (mIsBarcode) {\n            if (mGridScanLineBitmap != null) {\n                RectF dstGridRectF = new RectF(mFramingRect.left + mHalfCornerSize + 0.5f, mFramingRect.top + mHalfCornerSize + mScanLineMargin,\n                        mGridScanLineRight, mFramingRect.bottom - mHalfCornerSize - mScanLineMargin);\n\n                Rect srcGridRect = new Rect((int) (mGridScanLineBitmap.getWidth() - dstGridRectF.width()), 0, mGridScanLineBitmap.getWidth(),\n                        mGridScanLineBitmap.getHeight());\n\n                if (srcGridRect.left < 0) {\n                    srcGridRect.left = 0;\n                    dstGridRectF.left = dstGridRectF.right - srcGridRect.width();\n                }\n\n                canvas.drawBitmap(mGridScanLineBitmap, srcGridRect, dstGridRectF, mPaint);\n            } else if (mScanLineBitmap != null) {\n                RectF lineRect = new RectF(mScanLineLeft, mFramingRect.top + mHalfCornerSize + mScanLineMargin, mScanLineLeft + mScanLineBitmap.getWidth(),\n                        mFramingRect.bottom - mHalfCornerSize - mScanLineMargin);\n                canvas.drawBitmap(mScanLineBitmap, null, lineRect, mPaint);\n            } else {\n                mPaint.setStyle(Paint.Style.FILL);\n                mPaint.setColor(mScanLineColor);\n                canvas.drawRect(mScanLineLeft, mFramingRect.top + mHalfCornerSize + mScanLineMargin, mScanLineLeft + mScanLineSize,\n                        mFramingRect.bottom - mHalfCornerSize - mScanLineMargin, mPaint);\n            }\n        } else {\n            if (mGridScanLineBitmap != null) {\n                RectF dstGridRectF = new RectF(mFramingRect.left + mHalfCornerSize + mScanLineMargin, mFramingRect.top + mHalfCornerSize + 0.5f,\n                        mFramingRect.right - mHalfCornerSize - mScanLineMargin, mGridScanLineBottom);\n\n                Rect srcRect = new Rect(0, (int) (mGridScanLineBitmap.getHeight() - dstGridRectF.height()), mGridScanLineBitmap.getWidth(),\n                        mGridScanLineBitmap.getHeight());\n\n                if (srcRect.top < 0) {\n                    srcRect.top = 0;\n                    dstGridRectF.top = dstGridRectF.bottom - srcRect.height();\n                }\n\n                canvas.drawBitmap(mGridScanLineBitmap, srcRect, dstGridRectF, mPaint);\n            } else if (mScanLineBitmap != null) {\n                RectF lineRect = new RectF(mFramingRect.left + mHalfCornerSize + mScanLineMargin, mScanLineTop,\n                        mFramingRect.right - mHalfCornerSize - mScanLineMargin, mScanLineTop + mScanLineBitmap.getHeight());\n                canvas.drawBitmap(mScanLineBitmap, null, lineRect, mPaint);\n            } else {\n                mPaint.setStyle(Paint.Style.FILL);\n                mPaint.setColor(mScanLineColor);\n                canvas.drawRect(mFramingRect.left + mHalfCornerSize + mScanLineMargin, mScanLineTop, mFramingRect.right - mHalfCornerSize - mScanLineMargin,\n                        mScanLineTop + mScanLineSize, mPaint);\n            }\n        }\n    }\n\n    /**\n     * 画提示文本\n     */\n    private void drawTipText(Canvas canvas) {\n        if (TextUtils.isEmpty(mTipText) || mTipTextSl == null) {\n            return;\n        }\n\n        if (mIsTipTextBelowRect) {\n            if (mIsShowTipBackground) {\n                mPaint.setColor(mTipBackgroundColor);\n                mPaint.setStyle(Paint.Style.FILL);\n                if (mIsShowTipTextAsSingleLine) {\n                    Rect tipRect = new Rect();\n                    mTipPaint.getTextBounds(mTipText, 0, mTipText.length(), tipRect);\n                    float left = (canvas.getWidth() - tipRect.width()) / 2 - mTipBackgroundRadius;\n                    canvas.drawRoundRect(\n                            new RectF(left, mFramingRect.bottom + mTipTextMargin - mTipBackgroundRadius, left + tipRect.width() + 2 * mTipBackgroundRadius,\n                                    mFramingRect.bottom + mTipTextMargin + mTipTextSl.getHeight() + mTipBackgroundRadius), mTipBackgroundRadius,\n                            mTipBackgroundRadius, mPaint);\n                } else {\n                    canvas.drawRoundRect(new RectF(mFramingRect.left, mFramingRect.bottom + mTipTextMargin - mTipBackgroundRadius, mFramingRect.right,\n                                    mFramingRect.bottom + mTipTextMargin + mTipTextSl.getHeight() + mTipBackgroundRadius), mTipBackgroundRadius,\n                            mTipBackgroundRadius,\n                            mPaint);\n                }\n            }\n\n            canvas.save();\n            if (mIsShowTipTextAsSingleLine) {\n                canvas.translate(0, mFramingRect.bottom + mTipTextMargin);\n            } else {\n                canvas.translate(mFramingRect.left + mTipBackgroundRadius, mFramingRect.bottom + mTipTextMargin);\n            }\n            mTipTextSl.draw(canvas);\n            canvas.restore();\n        } else {\n            if (mIsShowTipBackground) {\n                mPaint.setColor(mTipBackgroundColor);\n                mPaint.setStyle(Paint.Style.FILL);\n\n                if (mIsShowTipTextAsSingleLine) {\n                    Rect tipRect = new Rect();\n                    mTipPaint.getTextBounds(mTipText, 0, mTipText.length(), tipRect);\n                    float left = (canvas.getWidth() - tipRect.width()) / 2 - mTipBackgroundRadius;\n                    canvas.drawRoundRect(new RectF(left, mFramingRect.top - mTipTextMargin - mTipTextSl.getHeight() - mTipBackgroundRadius,\n                                    left + tipRect.width() + 2 * mTipBackgroundRadius, mFramingRect.top - mTipTextMargin + mTipBackgroundRadius),\n                            mTipBackgroundRadius,\n                            mTipBackgroundRadius, mPaint);\n                } else {\n                    canvas.drawRoundRect(\n                            new RectF(mFramingRect.left, mFramingRect.top - mTipTextMargin - mTipTextSl.getHeight() - mTipBackgroundRadius, mFramingRect.right,\n                                    mFramingRect.top - mTipTextMargin + mTipBackgroundRadius), mTipBackgroundRadius, mTipBackgroundRadius, mPaint);\n                }\n            }\n\n            canvas.save();\n            if (mIsShowTipTextAsSingleLine) {\n                canvas.translate(0, mFramingRect.top - mTipTextMargin - mTipTextSl.getHeight());\n            } else {\n                canvas.translate(mFramingRect.left + mTipBackgroundRadius, mFramingRect.top - mTipTextMargin - mTipTextSl.getHeight());\n            }\n            mTipTextSl.draw(canvas);\n            canvas.restore();\n        }\n    }\n\n    /**\n     * 移动扫描线的位置\n     */\n    private void moveScanLine() {\n        if (mIsBarcode) {\n            if (mGridScanLineBitmap == null) {\n                // 处理非网格扫描图片的情况\n                mScanLineLeft += mMoveStepDistance;\n                int scanLineSize = mScanLineSize;\n                if (mScanLineBitmap != null) {\n                    scanLineSize = mScanLineBitmap.getWidth();\n                }\n\n                if (mIsScanLineReverse) {\n                    if (mScanLineLeft + scanLineSize > mFramingRect.right - mHalfCornerSize || mScanLineLeft < mFramingRect.left + mHalfCornerSize) {\n                        mMoveStepDistance = -mMoveStepDistance;\n                    }\n                } else {\n                    if (mScanLineLeft + scanLineSize > mFramingRect.right - mHalfCornerSize) {\n                        mScanLineLeft = mFramingRect.left + mHalfCornerSize + 0.5f;\n                    }\n                }\n            } else {\n                // 处理网格扫描图片的情况\n                mGridScanLineRight += mMoveStepDistance;\n                if (mGridScanLineRight > mFramingRect.right - mHalfCornerSize) {\n                    mGridScanLineRight = mFramingRect.left + mHalfCornerSize + 0.5f;\n                }\n            }\n        } else {\n            if (mGridScanLineBitmap == null) {\n                // 处理非网格扫描图片的情况\n                mScanLineTop += mMoveStepDistance;\n                int scanLineSize = mScanLineSize;\n                if (mScanLineBitmap != null) {\n                    scanLineSize = mScanLineBitmap.getHeight();\n                }\n\n                if (mIsScanLineReverse) {\n                    if (mScanLineTop + scanLineSize > mFramingRect.bottom - mHalfCornerSize || mScanLineTop < mFramingRect.top + mHalfCornerSize) {\n                        mMoveStepDistance = -mMoveStepDistance;\n                    }\n                } else {\n                    if (mScanLineTop + scanLineSize > mFramingRect.bottom - mHalfCornerSize) {\n                        mScanLineTop = mFramingRect.top + mHalfCornerSize + 0.5f;\n                    }\n                }\n            } else {\n                // 处理网格扫描图片的情况\n                mGridScanLineBottom += mMoveStepDistance;\n                if (mGridScanLineBottom > mFramingRect.bottom - mHalfCornerSize) {\n                    mGridScanLineBottom = mFramingRect.top + mHalfCornerSize + 0.5f;\n                }\n            }\n\n        }\n        postInvalidateDelayed(mAnimDelayTime, mFramingRect.left, mFramingRect.top, mFramingRect.right, mFramingRect.bottom);\n    }\n\n    @Override\n    protected void onSizeChanged(int w, int h, int oldw, int oldh) {\n        super.onSizeChanged(w, h, oldw, oldh);\n        calFramingRect();\n    }\n\n    private void calFramingRect() {\n        int leftOffset = (getWidth() - mRectWidth) / 2;\n        mFramingRect = new Rect(leftOffset, mTopOffset, leftOffset + mRectWidth, mTopOffset + mRectHeight);\n\n        if (mIsBarcode) {\n            mGridScanLineRight = mScanLineLeft = mFramingRect.left + mHalfCornerSize + 0.5f;\n        } else {\n            mGridScanLineBottom = mScanLineTop = mFramingRect.top + mHalfCornerSize + 0.5f;\n        }\n\n        if (mQRCodeView != null && isOnlyDecodeScanBoxArea()) {\n            mQRCodeView.onScanBoxRectChanged(new Rect(mFramingRect));\n        }\n    }\n\n    public Rect getScanBoxAreaRect(int previewHeight) {\n        if (mIsOnlyDecodeScanBoxArea && getVisibility() == View.VISIBLE) {\n            Rect rect = new Rect(mFramingRect);\n            float ratio = 1.0f * previewHeight / getMeasuredHeight();\n\n            float centerX = rect.exactCenterX() * ratio;\n            float centerY = rect.exactCenterY() * ratio;\n\n            float halfWidth = rect.width() / 2f;\n            float halfHeight = rect.height() / 2f;\n            float newHalfWidth = halfWidth * ratio;\n            float newHalfHeight = halfHeight * ratio;\n\n            rect.left = (int) (centerX - newHalfWidth);\n            rect.right = (int) (centerX + newHalfWidth);\n            rect.top = (int) (centerY - newHalfHeight);\n            rect.bottom = (int) (centerY + newHalfHeight);\n            return rect;\n        } else {\n            return null;\n        }\n    }\n\n    public void setIsBarcode(boolean isBarcode) {\n        mIsBarcode = isBarcode;\n        refreshScanBox();\n    }\n\n    private void refreshScanBox() {\n        if (mCustomGridScanLineDrawable != null || mIsShowDefaultGridScanLineDrawable) {\n            if (mIsBarcode) {\n                mGridScanLineBitmap = mOriginBarCodeGridScanLineBitmap;\n            } else {\n                mGridScanLineBitmap = mOriginQRCodeGridScanLineBitmap;\n            }\n        } else if (mCustomScanLineDrawable != null || mIsShowDefaultScanLineDrawable) {\n            if (mIsBarcode) {\n                mScanLineBitmap = mOriginBarCodeScanLineBitmap;\n            } else {\n                mScanLineBitmap = mOriginQRCodeScanLineBitmap;\n            }\n        }\n\n        if (mIsBarcode) {\n            mTipText = mBarCodeTipText;\n            mRectHeight = mBarcodeRectHeight;\n            mAnimDelayTime = (int) ((1.0f * mAnimTime * mMoveStepDistance) / mRectWidth);\n        } else {\n            mTipText = mQRCodeTipText;\n            mRectHeight = mRectWidth;\n            mAnimDelayTime = (int) ((1.0f * mAnimTime * mMoveStepDistance) / mRectHeight);\n        }\n\n        if (!TextUtils.isEmpty(mTipText)) {\n            if (mIsShowTipTextAsSingleLine) {\n                mTipTextSl = new StaticLayout(mTipText, mTipPaint, BGAQRCodeUtil.getScreenResolution(getContext()).x, Layout.Alignment.ALIGN_CENTER, 1.0f, 0,\n                        true);\n            } else {\n                mTipTextSl = new StaticLayout(mTipText, mTipPaint, mRectWidth - 2 * mTipBackgroundRadius, Layout.Alignment.ALIGN_CENTER, 1.0f, 0, true);\n            }\n        }\n\n        if (mVerticalBias != -1) {\n            int screenHeight = BGAQRCodeUtil.getScreenResolution(getContext()).y - BGAQRCodeUtil.getStatusBarHeight(getContext());\n            if (mToolbarHeight == 0) {\n                mTopOffset = (int) (screenHeight * mVerticalBias - mRectHeight / 2);\n            } else {\n                mTopOffset = mToolbarHeight + (int) ((screenHeight - mToolbarHeight) * mVerticalBias - mRectHeight / 2);\n            }\n        }\n\n        calFramingRect();\n\n        postInvalidate();\n    }\n\n    public boolean getIsBarcode() {\n        return mIsBarcode;\n    }\n\n    public int getMaskColor() {\n        return mMaskColor;\n    }\n\n    public void setMaskColor(int maskColor) {\n        mMaskColor = maskColor;\n        refreshScanBox();\n    }\n\n    public int getCornerColor() {\n        return mCornerColor;\n    }\n\n    public void setCornerColor(int cornerColor) {\n        mCornerColor = cornerColor;\n        refreshScanBox();\n    }\n\n    public int getCornerLength() {\n        return mCornerLength;\n    }\n\n    public void setCornerLength(int cornerLength) {\n        mCornerLength = cornerLength;\n        refreshScanBox();\n    }\n\n    public int getCornerSize() {\n        return mCornerSize;\n    }\n\n    public void setCornerSize(int cornerSize) {\n        mCornerSize = cornerSize;\n        refreshScanBox();\n    }\n\n    public int getRectWidth() {\n        return mRectWidth;\n    }\n\n    public void setRectWidth(int rectWidth) {\n        mRectWidth = rectWidth;\n        refreshScanBox();\n    }\n\n    public int getRectHeight() {\n        return mRectHeight;\n    }\n\n    public void setRectHeight(int rectHeight) {\n        mRectHeight = rectHeight;\n        refreshScanBox();\n    }\n\n    public int getBarcodeRectHeight() {\n        return mBarcodeRectHeight;\n    }\n\n    public void setBarcodeRectHeight(int barcodeRectHeight) {\n        mBarcodeRectHeight = barcodeRectHeight;\n        refreshScanBox();\n    }\n\n    public int getTopOffset() {\n        return mTopOffset;\n    }\n\n    public void setTopOffset(int topOffset) {\n        mTopOffset = topOffset;\n        refreshScanBox();\n    }\n\n    public int getScanLineSize() {\n        return mScanLineSize;\n    }\n\n    public void setScanLineSize(int scanLineSize) {\n        mScanLineSize = scanLineSize;\n        refreshScanBox();\n    }\n\n    public int getScanLineColor() {\n        return mScanLineColor;\n    }\n\n    public void setScanLineColor(int scanLineColor) {\n        mScanLineColor = scanLineColor;\n        refreshScanBox();\n    }\n\n    public int getScanLineMargin() {\n        return mScanLineMargin;\n    }\n\n    public void setScanLineMargin(int scanLineMargin) {\n        mScanLineMargin = scanLineMargin;\n        refreshScanBox();\n    }\n\n    public boolean isShowDefaultScanLineDrawable() {\n        return mIsShowDefaultScanLineDrawable;\n    }\n\n    public void setShowDefaultScanLineDrawable(boolean showDefaultScanLineDrawable) {\n        mIsShowDefaultScanLineDrawable = showDefaultScanLineDrawable;\n        refreshScanBox();\n    }\n\n    public Drawable getCustomScanLineDrawable() {\n        return mCustomScanLineDrawable;\n    }\n\n    public void setCustomScanLineDrawable(Drawable customScanLineDrawable) {\n        mCustomScanLineDrawable = customScanLineDrawable;\n        refreshScanBox();\n    }\n\n    public Bitmap getScanLineBitmap() {\n        return mScanLineBitmap;\n    }\n\n    public void setScanLineBitmap(Bitmap scanLineBitmap) {\n        mScanLineBitmap = scanLineBitmap;\n        refreshScanBox();\n    }\n\n    public int getBorderSize() {\n        return mBorderSize;\n    }\n\n    public void setBorderSize(int borderSize) {\n        mBorderSize = borderSize;\n        refreshScanBox();\n    }\n\n    public int getBorderColor() {\n        return mBorderColor;\n    }\n\n    public void setBorderColor(int borderColor) {\n        mBorderColor = borderColor;\n        refreshScanBox();\n    }\n\n    public int getAnimTime() {\n        return mAnimTime;\n    }\n\n    public void setAnimTime(int animTime) {\n        mAnimTime = animTime;\n        refreshScanBox();\n    }\n\n    public float getVerticalBias() {\n        return mVerticalBias;\n    }\n\n    public void setVerticalBias(float verticalBias) {\n        mVerticalBias = verticalBias;\n        refreshScanBox();\n    }\n\n    public int getToolbarHeight() {\n        return mToolbarHeight;\n    }\n\n    public void setToolbarHeight(int toolbarHeight) {\n        mToolbarHeight = toolbarHeight;\n        refreshScanBox();\n    }\n\n    public String getQRCodeTipText() {\n        return mQRCodeTipText;\n    }\n\n    public void setQRCodeTipText(String qrCodeTipText) {\n        mQRCodeTipText = qrCodeTipText;\n        refreshScanBox();\n    }\n\n    public String getBarCodeTipText() {\n        return mBarCodeTipText;\n    }\n\n    public void setBarCodeTipText(String barCodeTipText) {\n        mBarCodeTipText = barCodeTipText;\n        refreshScanBox();\n    }\n\n    public String getTipText() {\n        return mTipText;\n    }\n\n    public void setTipText(String tipText) {\n        if (mIsBarcode) {\n            mBarCodeTipText = tipText;\n        } else {\n            mQRCodeTipText = tipText;\n        }\n        refreshScanBox();\n    }\n\n    public int getTipTextColor() {\n        return mTipTextColor;\n    }\n\n    public void setTipTextColor(int tipTextColor) {\n        mTipTextColor = tipTextColor;\n        mTipPaint.setColor(mTipTextColor);\n        refreshScanBox();\n    }\n\n    public int getTipTextSize() {\n        return mTipTextSize;\n    }\n\n    public void setTipTextSize(int tipTextSize) {\n        mTipTextSize = tipTextSize;\n        mTipPaint.setTextSize(mTipTextSize);\n        refreshScanBox();\n    }\n\n    public boolean isTipTextBelowRect() {\n        return mIsTipTextBelowRect;\n    }\n\n    public void setTipTextBelowRect(boolean tipTextBelowRect) {\n        mIsTipTextBelowRect = tipTextBelowRect;\n        refreshScanBox();\n    }\n\n    public int getTipTextMargin() {\n        return mTipTextMargin;\n    }\n\n    public void setTipTextMargin(int tipTextMargin) {\n        mTipTextMargin = tipTextMargin;\n        refreshScanBox();\n    }\n\n    public boolean isShowTipTextAsSingleLine() {\n        return mIsShowTipTextAsSingleLine;\n    }\n\n    public void setShowTipTextAsSingleLine(boolean showTipTextAsSingleLine) {\n        mIsShowTipTextAsSingleLine = showTipTextAsSingleLine;\n        refreshScanBox();\n    }\n\n    public boolean isShowTipBackground() {\n        return mIsShowTipBackground;\n    }\n\n    public void setShowTipBackground(boolean showTipBackground) {\n        mIsShowTipBackground = showTipBackground;\n        refreshScanBox();\n    }\n\n    public int getTipBackgroundColor() {\n        return mTipBackgroundColor;\n    }\n\n    public void setTipBackgroundColor(int tipBackgroundColor) {\n        mTipBackgroundColor = tipBackgroundColor;\n        refreshScanBox();\n    }\n\n    public boolean isScanLineReverse() {\n        return mIsScanLineReverse;\n    }\n\n    public void setScanLineReverse(boolean scanLineReverse) {\n        mIsScanLineReverse = scanLineReverse;\n        refreshScanBox();\n    }\n\n    public boolean isShowDefaultGridScanLineDrawable() {\n        return mIsShowDefaultGridScanLineDrawable;\n    }\n\n    public void setShowDefaultGridScanLineDrawable(boolean showDefaultGridScanLineDrawable) {\n        mIsShowDefaultGridScanLineDrawable = showDefaultGridScanLineDrawable;\n        refreshScanBox();\n    }\n\n    public float getHalfCornerSize() {\n        return mHalfCornerSize;\n    }\n\n    public void setHalfCornerSize(float halfCornerSize) {\n        mHalfCornerSize = halfCornerSize;\n        refreshScanBox();\n    }\n\n    public StaticLayout getTipTextSl() {\n        return mTipTextSl;\n    }\n\n    public void setTipTextSl(StaticLayout tipTextSl) {\n        mTipTextSl = tipTextSl;\n        refreshScanBox();\n    }\n\n    public int getTipBackgroundRadius() {\n        return mTipBackgroundRadius;\n    }\n\n    public void setTipBackgroundRadius(int tipBackgroundRadius) {\n        mTipBackgroundRadius = tipBackgroundRadius;\n        refreshScanBox();\n    }\n\n    public boolean isOnlyDecodeScanBoxArea() {\n        return mIsOnlyDecodeScanBoxArea;\n    }\n\n    public void setOnlyDecodeScanBoxArea(boolean onlyDecodeScanBoxArea) {\n        mIsOnlyDecodeScanBoxArea = onlyDecodeScanBoxArea;\n        calFramingRect();\n    }\n\n    public boolean isShowLocationPoint() {\n        return mIsShowLocationPoint;\n    }\n\n    public void setShowLocationPoint(boolean showLocationPoint) {\n        mIsShowLocationPoint = showLocationPoint;\n    }\n\n    public boolean isAutoZoom() {\n        return mIsAutoZoom;\n    }\n\n    public void setAutoZoom(boolean autoZoom) {\n        mIsAutoZoom = autoZoom;\n    }\n}"
  },
  {
    "path": "qrcodecore/src/main/java/cn/bingoogolapple/qrcode/core/ScanResult.java",
    "content": "package cn.bingoogolapple.qrcode.core;\n\nimport android.graphics.PointF;\n\n/**\n * 作者:王浩\n * 创建时间:2018/6/15\n * 描述:\n */\npublic class ScanResult {\n    String result;\n    PointF[] resultPoints;\n\n    public ScanResult(String result) {\n        this.result = result;\n    }\n\n    public ScanResult(String result, PointF[] resultPoints) {\n        this.result = result;\n        this.resultPoints = resultPoints;\n    }\n}\n"
  },
  {
    "path": "qrcodecore/src/main/res/values/attrs.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <declare-styleable name=\"QRCodeView\">\n        <!-- 扫描框距离toolbar底部的距离，默认值为90dp -->\n        <attr name=\"qrcv_topOffset\" format=\"dimension|reference\" />\n        <!-- 扫描框边角线的宽度，默认值为3dp -->\n        <attr name=\"qrcv_cornerSize\" format=\"dimension|reference\" />\n        <!-- 扫描框边角线的长度，默认值为20dp -->\n        <attr name=\"qrcv_cornerLength\" format=\"dimension|reference\" />\n        <!-- 扫描框边角线的颜色，默认值为@android:color/white -->\n        <attr name=\"qrcv_cornerColor\" format=\"color|reference\" />\n        <!-- 扫描框边角线显示位置(相对于边框)，默认值为中间 -->\n        <attr name=\"qrcv_cornerDisplayType\">\n            <enum name=\"center\" value=\"1\" />\n            <enum name=\"inside\" value=\"2\" />\n        </attr>\n        <!-- 扫描框的宽度，默认值为200dp -->\n        <attr name=\"qrcv_rectWidth\" format=\"dimension|reference\" />\n        <!-- 条码扫样式描框的高度，默认值为140dp -->\n        <attr name=\"qrcv_barcodeRectHeight\" format=\"dimension|reference\" />\n        <!-- 除去扫描框，其余部分阴影颜色，默认值为#33FFFFFF -->\n        <attr name=\"qrcv_maskColor\" format=\"color|reference\" />\n        <!-- 扫描线的宽度，默认值为1dp -->\n        <attr name=\"qrcv_scanLineSize\" format=\"dimension|reference\" />\n        <!-- 扫描线的颜色，默认值为@android:color/white -->\n        <attr name=\"qrcv_scanLineColor\" format=\"color|reference\" />\n        <!-- 扫描线距离上下或者左右边框的间距，默认值为0dp -->\n        <attr name=\"qrcv_scanLineMargin\" format=\"dimension|reference\" />\n        <!-- 是否显示默认的图片扫描线，默认值为false -->\n        <attr name=\"qrcv_isShowDefaultScanLineDrawable\" format=\"boolean\" />\n        <!-- 扫描线的图片资源，默认值为null -->\n        <attr name=\"qrcv_customScanLineDrawable\" format=\"reference\" />\n        <!-- 扫描边框的宽度，默认值为1dp -->\n        <attr name=\"qrcv_borderSize\" format=\"dimension|reference\" />\n        <!-- 扫描边框的颜色，默认值为@android:color/white -->\n        <attr name=\"qrcv_borderColor\" format=\"color|reference\" />\n        <!-- 扫描线从顶部移动到底部的动画时间，默认值为1000 -->\n        <attr name=\"qrcv_animTime\" format=\"integer\" />\n        <!-- 扫描框中心点在屏幕垂直方向的比例，当设置此值时，会忽略 qrcv_topOffset -->\n        <attr name=\"qrcv_verticalBias\" format=\"float\" />\n        <!-- Toolbar的高度，当有设置qrcv_isCenterVertical属性时，通过该属性来修正有Toolbar时导致扫描框垂直居中的偏差，默认值为0dp -->\n        <attr name=\"qrcv_toolbarHeight\" format=\"dimension|reference\" />\n        <!-- 扫描框的样式是否为扫条形码样式，默认值为false -->\n        <attr name=\"qrcv_isBarcode\" format=\"boolean\" />\n        <!-- 扫描二维码时的提示文案，默认值为null -->\n        <attr name=\"qrcv_qrCodeTipText\" format=\"string|reference\" />\n        <!-- 扫描条码时的提示文案，默认值为null -->\n        <attr name=\"qrcv_barCodeTipText\" format=\"string|reference\" />\n        <!-- 提示文案字体大小，默认值为14sp -->\n        <attr name=\"qrcv_tipTextSize\" format=\"dimension|reference\" />\n        <!-- 提示文案颜色，默认值为@android:color/white -->\n        <attr name=\"qrcv_tipTextColor\" format=\"color|reference\" />\n        <!-- 提示文案是否在扫描框的底部，默认值为false -->\n        <attr name=\"qrcv_isTipTextBelowRect\" format=\"boolean\" />\n        <!-- 提示文案与扫描框之间的间距，默认值为20dp -->\n        <attr name=\"qrcv_tipTextMargin\" format=\"dimension|reference\" />\n        <!-- 是否把提示文案作为单行显示，默认值为false -->\n        <attr name=\"qrcv_isShowTipTextAsSingleLine\" format=\"boolean\" />\n        <!-- 是否显示提示文案的背景，默认值为false -->\n        <attr name=\"qrcv_isShowTipBackground\" format=\"boolean\" />\n        <!-- 提示文案的背景色，默认值为#22000000 -->\n        <attr name=\"qrcv_tipBackgroundColor\" format=\"color|reference\" />\n        <!-- 扫描线是否来回移动，默认值为true -->\n        <attr name=\"qrcv_isScanLineReverse\" format=\"boolean\" />\n        <!-- 是否显示默认的网格图片扫描线，默认值为false -->\n        <attr name=\"qrcv_isShowDefaultGridScanLineDrawable\" format=\"boolean\" />\n        <!-- 扫描线的网格图片资源，默认值为null -->\n        <attr name=\"qrcv_customGridScanLineDrawable\" format=\"reference\" />\n        <!-- 是否只识别扫描框中的码，默认值为false -->\n        <attr name=\"qrcv_isOnlyDecodeScanBoxArea\" format=\"boolean\" />\n        <!-- 是否显示定位点，默认值为false -->\n        <attr name=\"qrcv_isShowLocationPoint\" format=\"boolean\" />\n        <!-- 码太小时是否自动缩放，默认值为false -->\n        <attr name=\"qrcv_isAutoZoom\" format=\"boolean\" />\n    </declare-styleable>\n</resources>"
  },
  {
    "path": "qrcodecore/src/main/res/values/ids.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <item type=\"id\" name=\"bgaqrcode_camera_preview\" />\n</resources>"
  },
  {
    "path": "settings.gradle",
    "content": "include ':qrcodecore', ':zxing', ':zbar', ':zxingdemo', ':zbardemo'\n"
  },
  {
    "path": "zbar/build.gradle",
    "content": "apply plugin: 'com.android.library'\napply plugin: 'com.github.dcendents.android-maven'\n\nandroid {\n    compileSdkVersion ANDROID_BUILD_SDK_VERSION as int\n\n    defaultConfig {\n        minSdkVersion ANDROID_BUILD_MIN_SDK_VERSION as int\n        targetSdkVersion ANDROID_BUILD_TARGET_SDK_VERSION as int\n        consumerProguardFiles 'consumer-proguard-rules.pro'\n    }\n\n\n    def isBuildSo = false\n    if (isBuildSo) { // 构建生成 so 文件\n        sourceSets {\n            main {\n                jniLibs.srcDirs = []\n            }\n        }\n        externalNativeBuild {\n            ndkBuild {\n                path 'src/main/jni/Android.mk'\n            }\n        }\n    } else { // 生成 so 文件后，打包时直接使用生成的 so\n        sourceSets {\n            main {\n                jni.srcDirs = []\n            }\n        }\n        delete(file('.externalNativeBuild'), file('src/main/libs'), file('src/main/obj'))\n    }\n}\n\ndependencies {\n    api project(':qrcodecore')\n}\n\ntasks.whenTaskAdded {\n    if (it.name == 'releaseAndroidJavadocs') {\n        it.enabled = false\n    }\n}"
  },
  {
    "path": "zbar/consumer-proguard-rules.pro",
    "content": "-keep class net.sourceforge.zbar.ImageScanner { *; }\n-keep class net.sourceforge.zbar.Image { *; }\n-keep class net.sourceforge.zbar.SymbolSet { *; }\n-keep class net.sourceforge.zbar.Symbol { *; }"
  },
  {
    "path": "zbar/src/main/AndroidManifest.xml",
    "content": "<manifest package=\"cn.bingoogolapple.qrcode.zbar\"/>"
  },
  {
    "path": "zbar/src/main/java/cn/bingoogolapple/qrcode/zbar/BarcodeFormat.java",
    "content": "package cn.bingoogolapple.qrcode.zbar;\n\nimport net.sourceforge.zbar.Symbol;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\n/**\n * 一维条码、二维码各种类型简介 https://blog.csdn.net/xdg_blog/article/details/52932707\n * 在线生成各种码 https://barcode.tec-it.com/zh/\n */\npublic class BarcodeFormat {\n    private int mId;\n    private String mName;\n\n    public static final BarcodeFormat NONE = new BarcodeFormat(Symbol.NONE, \"NONE\");\n    public static final BarcodeFormat PARTIAL = new BarcodeFormat(Symbol.PARTIAL, \"PARTIAL\");\n    public static final BarcodeFormat EAN8 = new BarcodeFormat(Symbol.EAN8, \"EAN8\");\n    public static final BarcodeFormat UPCE = new BarcodeFormat(Symbol.UPCE, \"UPCE\");\n    public static final BarcodeFormat ISBN10 = new BarcodeFormat(Symbol.ISBN10, \"ISBN10\");\n    public static final BarcodeFormat UPCA = new BarcodeFormat(Symbol.UPCA, \"UPCA\");\n    public static final BarcodeFormat EAN13 = new BarcodeFormat(Symbol.EAN13, \"EAN13\");\n    public static final BarcodeFormat ISBN13 = new BarcodeFormat(Symbol.ISBN13, \"ISBN13\");\n    public static final BarcodeFormat I25 = new BarcodeFormat(Symbol.I25, \"I25\");\n    public static final BarcodeFormat DATABAR = new BarcodeFormat(Symbol.DATABAR, \"DATABAR\");\n    public static final BarcodeFormat DATABAR_EXP = new BarcodeFormat(Symbol.DATABAR_EXP, \"DATABAR_EXP\");\n    public static final BarcodeFormat CODABAR = new BarcodeFormat(Symbol.CODABAR, \"CODABAR\");\n    public static final BarcodeFormat CODE39 = new BarcodeFormat(Symbol.CODE39, \"CODE39\");\n    public static final BarcodeFormat PDF417 = new BarcodeFormat(Symbol.PDF417, \"PDF417\");\n    public static final BarcodeFormat QRCODE = new BarcodeFormat(Symbol.QRCODE, \"QRCODE\");\n    public static final BarcodeFormat CODE93 = new BarcodeFormat(Symbol.CODE93, \"CODE93\");\n    public static final BarcodeFormat CODE128 = new BarcodeFormat(Symbol.CODE128, \"CODE128\");\n\n    static final List<BarcodeFormat> ALL_FORMAT_LIST = new ArrayList<>();\n\n    static {\n        ALL_FORMAT_LIST.add(BarcodeFormat.PARTIAL);\n        ALL_FORMAT_LIST.add(BarcodeFormat.EAN8);\n        ALL_FORMAT_LIST.add(BarcodeFormat.UPCE);\n//        ALL_FORMAT_LIST.add(BarcodeFormat.ISBN10);\n        ALL_FORMAT_LIST.add(BarcodeFormat.UPCA);\n        ALL_FORMAT_LIST.add(BarcodeFormat.EAN13);\n        ALL_FORMAT_LIST.add(BarcodeFormat.ISBN13);\n        ALL_FORMAT_LIST.add(BarcodeFormat.I25);\n//        ALL_FORMAT_LIST.add(BarcodeFormat.DATABAR);\n        ALL_FORMAT_LIST.add(BarcodeFormat.DATABAR_EXP);\n        ALL_FORMAT_LIST.add(BarcodeFormat.CODABAR);\n        ALL_FORMAT_LIST.add(BarcodeFormat.CODE39);\n        ALL_FORMAT_LIST.add(BarcodeFormat.PDF417);\n        ALL_FORMAT_LIST.add(BarcodeFormat.QRCODE);\n        ALL_FORMAT_LIST.add(BarcodeFormat.CODE93);\n        ALL_FORMAT_LIST.add(BarcodeFormat.CODE128);\n    }\n\n    static final List<BarcodeFormat> ONE_DIMENSION_FORMAT_LIST = new ArrayList<>();\n\n    static {\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.PARTIAL);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.EAN8);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.UPCE);\n//        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.ISBN10);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.UPCA);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.EAN13);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.ISBN13);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.I25);\n//        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.DATABAR);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.DATABAR_EXP);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.CODABAR);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.CODE39);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.PDF417);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.CODE93);\n        ONE_DIMENSION_FORMAT_LIST.add(BarcodeFormat.CODE128);\n    }\n\n    static final List<BarcodeFormat> TWO_DIMENSION_FORMAT_LIST = new ArrayList<>();\n\n    static {\n        TWO_DIMENSION_FORMAT_LIST.add(BarcodeFormat.PDF417);\n        TWO_DIMENSION_FORMAT_LIST.add(BarcodeFormat.QRCODE);\n    }\n\n    static final List<BarcodeFormat> HIGH_FREQUENCY_FORMAT_LIST = new ArrayList<>();\n\n    static {\n        HIGH_FREQUENCY_FORMAT_LIST.add(BarcodeFormat.QRCODE);\n        HIGH_FREQUENCY_FORMAT_LIST.add(BarcodeFormat.ISBN13);\n        HIGH_FREQUENCY_FORMAT_LIST.add(BarcodeFormat.UPCA);\n        HIGH_FREQUENCY_FORMAT_LIST.add(BarcodeFormat.EAN13);\n        HIGH_FREQUENCY_FORMAT_LIST.add(BarcodeFormat.CODE128);\n    }\n\n    private BarcodeFormat(int id, String name) {\n        mId = id;\n        mName = name;\n    }\n\n    public int getId() {\n        return mId;\n    }\n\n    public String getName() {\n        return mName;\n    }\n\n    public static BarcodeFormat getFormatById(int id) {\n        for (BarcodeFormat format : ALL_FORMAT_LIST) {\n            if (format.getId() == id) {\n                return format;\n            }\n        }\n        return BarcodeFormat.NONE;\n    }\n}"
  },
  {
    "path": "zbar/src/main/java/cn/bingoogolapple/qrcode/zbar/ZBarView.java",
    "content": "package cn.bingoogolapple.qrcode.zbar;\n\nimport android.content.Context;\nimport android.graphics.Bitmap;\nimport android.graphics.Rect;\nimport android.text.TextUtils;\nimport android.util.AttributeSet;\n\nimport net.sourceforge.zbar.Config;\nimport net.sourceforge.zbar.Image;\nimport net.sourceforge.zbar.ImageScanner;\nimport net.sourceforge.zbar.Symbol;\n\nimport java.nio.charset.StandardCharsets;\nimport java.util.Collection;\nimport java.util.Collections;\nimport java.util.List;\n\nimport cn.bingoogolapple.qrcode.core.BarcodeType;\nimport cn.bingoogolapple.qrcode.core.QRCodeView;\nimport cn.bingoogolapple.qrcode.core.ScanResult;\n\npublic class ZBarView extends QRCodeView {\n\n    static {\n        System.loadLibrary(\"iconv\");\n    }\n\n    private ImageScanner mScanner;\n    private List<BarcodeFormat> mFormatList;\n\n    public ZBarView(Context context, AttributeSet attributeSet) {\n        this(context, attributeSet, 0);\n    }\n\n    public ZBarView(Context context, AttributeSet attrs, int defStyleAttr) {\n        super(context, attrs, defStyleAttr);\n        setupReader();\n    }\n\n    @Override\n    protected void setupReader() {\n        mScanner = new ImageScanner();\n        mScanner.setConfig(0, Config.X_DENSITY, 3);\n        mScanner.setConfig(0, Config.Y_DENSITY, 3);\n\n        mScanner.setConfig(Symbol.NONE, Config.ENABLE, 0);\n\n        for (BarcodeFormat format : getFormats()) {\n            mScanner.setConfig(format.getId(), Config.ENABLE, 1);\n        }\n    }\n\n    public Collection<BarcodeFormat> getFormats() {\n        if (mBarcodeType == BarcodeType.ONE_DIMENSION) {\n            return BarcodeFormat.ONE_DIMENSION_FORMAT_LIST;\n        } else if (mBarcodeType == BarcodeType.TWO_DIMENSION) {\n            return BarcodeFormat.TWO_DIMENSION_FORMAT_LIST;\n        } else if (mBarcodeType == BarcodeType.ONLY_QR_CODE) {\n            return Collections.singletonList(BarcodeFormat.QRCODE);\n        } else if (mBarcodeType == BarcodeType.ONLY_CODE_128) {\n            return Collections.singletonList(BarcodeFormat.CODE128);\n        } else if (mBarcodeType == BarcodeType.ONLY_EAN_13) {\n            return Collections.singletonList(BarcodeFormat.EAN13);\n        } else if (mBarcodeType == BarcodeType.HIGH_FREQUENCY) {\n            return BarcodeFormat.HIGH_FREQUENCY_FORMAT_LIST;\n        } else if (mBarcodeType == BarcodeType.CUSTOM) {\n            return mFormatList;\n        } else {\n            return BarcodeFormat.ALL_FORMAT_LIST;\n        }\n    }\n\n    /**\n     * 设置识别的格式\n     *\n     * @param barcodeType 识别的格式\n     * @param formatList  barcodeType 为 BarcodeType.CUSTOM 时，必须指定该值\n     */\n    public void setType(BarcodeType barcodeType, List<BarcodeFormat> formatList) {\n        mBarcodeType = barcodeType;\n        mFormatList = formatList;\n\n        if (mBarcodeType == BarcodeType.CUSTOM && (mFormatList == null || mFormatList.isEmpty())) {\n            throw new RuntimeException(\"barcodeType 为 BarcodeType.CUSTOM 时 formatList 不能为空\");\n        }\n        setupReader();\n    }\n\n    @Override\n    protected ScanResult processData(byte[] data, int width, int height, boolean isRetry) {\n        Image barcode = new Image(width, height, \"Y800\");\n\n        Rect scanBoxAreaRect = mScanBoxView.getScanBoxAreaRect(height);\n        if (scanBoxAreaRect != null && !isRetry && scanBoxAreaRect.left + scanBoxAreaRect.width() <= width\n                && scanBoxAreaRect.top + scanBoxAreaRect.height() <= height) {\n            barcode.setCrop(scanBoxAreaRect.left, scanBoxAreaRect.top, scanBoxAreaRect.width(), scanBoxAreaRect.height());\n        }\n\n        barcode.setData(data);\n        String result = processData(barcode);\n        return new ScanResult(result);\n    }\n\n    private String processData(Image barcode) {\n        if (mScanner.scanImage(barcode) == 0) {\n            return null;\n        }\n\n        for (Symbol symbol : mScanner.getResults()) {\n            // 未能识别的格式继续遍历\n            if (symbol.getType() == Symbol.NONE) {\n                continue;\n            }\n\n            String symData;\n            if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) {\n                symData = new String(symbol.getDataBytes(), StandardCharsets.UTF_8);\n            } else {\n                symData = symbol.getData();\n            }\n            // 空数据继续遍历\n            if (TextUtils.isEmpty(symData)) {\n                continue;\n            }\n\n            // 处理自动缩放和定位点\n            boolean isNeedAutoZoom = isNeedAutoZoom(symbol);\n            if (isShowLocationPoint() || isNeedAutoZoom) {\n                if (transformToViewCoordinates(symbol.getLocationPoints(), null, isNeedAutoZoom, symData)) {\n                    return null;\n                } else {\n                    return symData;\n                }\n            } else {\n                return symData;\n            }\n        }\n        return null;\n    }\n\n    private boolean isNeedAutoZoom(Symbol symbol) {\n        return isAutoZoom() && symbol.getType() == Symbol.QRCODE;\n    }\n\n    @Override\n    protected ScanResult processBitmapData(Bitmap bitmap) {\n        try {\n            int picWidth = bitmap.getWidth();\n            int picHeight = bitmap.getHeight();\n            Image barcode = new Image(picWidth, picHeight, \"RGB4\");\n            int[] pix = new int[picWidth * picHeight];\n            bitmap.getPixels(pix, 0, picWidth, 0, 0, picWidth, picHeight);\n            barcode.setData(pix);\n            String result = processData(barcode.convert(\"Y800\"));\n            return new ScanResult(result);\n        } catch (Exception e) {\n            e.printStackTrace();\n            return null;\n        }\n    }\n}"
  },
  {
    "path": "zbar/src/main/java/net/sourceforge/zbar/Config.java",
    "content": "/*------------------------------------------------------------------------\n *  Config\n *\n *  Copyright 2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\npackage net.sourceforge.zbar;\n\n/** Decoder configuration options.\n */\npublic class Config\n{\n    /** Enable symbology/feature. */\n    public static final int ENABLE = 0;\n    /** Enable check digit when optional. */\n    public static final int ADD_CHECK = 1;\n    /** Return check digit when present. */\n    public static final int EMIT_CHECK = 2;\n    /** Enable full ASCII character set. */\n    public static final int ASCII = 3;\n\n    /** Minimum data length for valid decode. */\n    public static final int MIN_LEN = 0x20;\n    /** Maximum data length for valid decode. */\n    public static final int MAX_LEN = 0x21;\n\n    /** Required video consistency frames. */\n    public static final int UNCERTAINTY = 0x40;\n\n    /** Enable scanner to collect position data. */\n    public static final int POSITION = 0x80;\n\n    /** Image scanner vertical scan density. */\n    public static final int X_DENSITY = 0x100;\n    /** Image scanner horizontal scan density. */\n    public static final int Y_DENSITY = 0x101;\n}\n"
  },
  {
    "path": "zbar/src/main/java/net/sourceforge/zbar/Image.java",
    "content": "/*------------------------------------------------------------------------\n *  Image\n *\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\npackage net.sourceforge.zbar;\n\n/** stores image data samples along with associated format and size\n * metadata.\n */\npublic class Image\n{\n    /** C pointer to a zbar_symbol_t. */\n    private long peer;\n    private Object data;\n\n    static\n    {\n        System.loadLibrary(\"zbarjni\");\n        init();\n    }\n    private static native void init();\n\n    public Image ()\n    {\n        peer = create();\n    }\n\n    public Image (int width, int height)\n    {\n        this();\n        setSize(width, height);\n    }\n\n    public Image (int width, int height, String format)\n    {\n        this();\n        setSize(width, height);\n        setFormat(format);\n    }\n\n    public Image (String format)\n    {\n        this();\n        setFormat(format);\n    }\n\n    Image (long peer)\n    {\n        this.peer = peer;\n    }\n\n    /** Create an associated peer instance. */\n    private native long create();\n\n    protected void finalize ()\n    {\n        destroy();\n    }\n\n    /** Clean up native data associated with an instance. */\n    public synchronized void destroy ()\n    {\n        if(peer != 0) {\n            destroy(peer);\n            peer = 0;\n        }\n    }\n\n    /** Destroy the associated peer instance.  */\n    private native void destroy(long peer);\n\n    /** Image format conversion.\n     * @returns a @em new image with the sample data from the original\n     * image converted to the requested format fourcc.  the original\n     * image is unaffected.\n     */\n    public Image convert (String format)\n    {\n        long newpeer = convert(peer, format);\n        if(newpeer == 0)\n            return(null);\n        return(new Image(newpeer));\n    }\n\n    private native long convert(long peer, String format);\n\n    /** Retrieve the image format fourcc. */\n    public native String getFormat();\n\n    /** Specify the fourcc image format code for image sample data. */\n    public native void setFormat(String format);\n\n    /** Retrieve a \"sequence\" (page/frame) number associated with this\n     * image.\n     */\n    public native int getSequence();\n\n    /** Associate a \"sequence\" (page/frame) number with this image. */\n    public native void setSequence(int seq);\n\n    /** Retrieve the width of the image. */\n    public native int getWidth();\n\n    /** Retrieve the height of the image. */\n    public native int getHeight();\n\n    /** Retrieve the size of the image. */\n    public native int[] getSize();\n\n    /** Specify the pixel size of the image. */\n    public native void setSize(int width, int height);\n\n    /** Specify the pixel size of the image. */\n    public native void setSize(int[] size);\n\n    /** Retrieve the crop region of the image. */\n    public native int[] getCrop();\n\n    /** Specify the crop region of the image. */\n    public native void setCrop(int x, int y, int width, int height);\n\n    /** Specify the crop region of the image. */\n    public native void setCrop(int[] crop);\n\n    /** Retrieve the image sample data. */\n    public native byte[] getData();\n\n    /** Specify image sample data. */\n    public native void setData(byte[] data);\n\n    /** Specify image sample data. */\n    public native void setData(int[] data);\n\n    /** Retrieve the decoded results associated with this image. */\n    public SymbolSet getSymbols ()\n    {\n        return(new SymbolSet(getSymbols(peer)));\n    }\n\n    private native long getSymbols(long peer);\n\n}\n"
  },
  {
    "path": "zbar/src/main/java/net/sourceforge/zbar/ImageScanner.java",
    "content": "/*------------------------------------------------------------------------\n *  ImageScanner\n *\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\npackage net.sourceforge.zbar;\n\n/** Read barcodes from 2-D images.\n */\npublic class ImageScanner\n{\n    /** C pointer to a zbar_image_scanner_t. */\n    private long peer;\n\n    static\n    {\n        System.loadLibrary(\"zbarjni\");\n        init();\n    }\n    private static native void init();\n\n    public ImageScanner ()\n    {\n        peer = create();\n    }\n\n    /** Create an associated peer instance. */\n    private native long create();\n\n    protected void finalize ()\n    {\n        destroy();\n    }\n\n    /** Clean up native data associated with an instance. */\n    public synchronized void destroy ()\n    {\n        if(peer != 0) {\n            destroy(peer);\n            peer = 0;\n        }\n    }\n\n    /** Destroy the associated peer instance.  */\n    private native void destroy(long peer);\n\n    /** Set config for indicated symbology (0 for all) to specified value.\n     */\n    public native void setConfig(int symbology, int config, int value)\n        throws IllegalArgumentException;\n\n    /** Parse configuration string and apply to image scanner. */\n    public native void parseConfig(String config);\n\n    /** Enable or disable the inter-image result cache (default disabled).\n     * Mostly useful for scanning video frames, the cache filters duplicate\n     * results from consecutive images, while adding some consistency\n     * checking and hysteresis to the results.  Invoking this method also\n     * clears the cache.\n     */\n    public native void enableCache(boolean enable);\n\n    /** Retrieve decode results for last scanned image.\n     * @returns the SymbolSet result container\n     */\n    public SymbolSet getResults ()\n    {\n        return(new SymbolSet(getResults(peer)));\n    }\n\n    private native long getResults(long peer);\n\n    /** Scan for symbols in provided Image.\n     * The image format must currently be \"Y800\" or \"GRAY\".\n     * @returns the number of symbols successfully decoded from the image.\n     */\n    public native int scanImage(Image image);\n}\n"
  },
  {
    "path": "zbar/src/main/java/net/sourceforge/zbar/Modifier.java",
    "content": "/*------------------------------------------------------------------------\n *  Modifier\n *\n *  Copyright 2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\npackage net.sourceforge.zbar;\n\n/** Decoder symbology modifiers.\n */\npublic class Modifier\n{\n    /** barcode tagged as GS1 (EAN.UCC) reserved\n     * (eg, FNC1 before first data character).\n     * data may be parsed as a sequence of GS1 AIs\n     */\n    public static final int GS1 = 0;\n\n    /** barcode tagged as AIM reserved\n     * (eg, FNC1 after first character or digit pair)\n     */\n    public static final int AIM = 1;\n}\n"
  },
  {
    "path": "zbar/src/main/java/net/sourceforge/zbar/Orientation.java",
    "content": "/*------------------------------------------------------------------------\n *  Orientation\n *\n *  Copyright 2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\npackage net.sourceforge.zbar;\n\n/** Decoded symbol coarse orientation.\n */\npublic class Orientation\n{\n    /** Unable to determine orientation. */\n    public static final int UNKNOWN = -1;\n    /** Upright, read left to right. */\n    public static final int UP = 0;\n    /** sideways, read top to bottom */\n    public static final int RIGHT = 1;\n    /** upside-down, read right to left */\n    public static final int DOWN = 2;\n    /** sideways, read bottom to top */\n    public static final int LEFT = 3;\n}\n"
  },
  {
    "path": "zbar/src/main/java/net/sourceforge/zbar/Symbol.java",
    "content": "/*------------------------------------------------------------------------\n *  Symbol\n *\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\npackage net.sourceforge.zbar;\n\nimport android.graphics.PointF;\n\n/**\n * Immutable container for decoded result symbols associated with an image\n * or a composite symbol.\n */\npublic class Symbol {\n    /** No symbol decoded. */\n    public static final int NONE = 0;\n    /** Symbol detected but not decoded. */\n    public static final int PARTIAL = 1;\n\n    /** EAN-8. */\n    public static final int EAN8 = 8;\n    /** UPC-E. */\n    public static final int UPCE = 9;\n    /** ISBN-10 (from EAN-13). */\n    public static final int ISBN10 = 10;\n    /** UPC-A. */\n    public static final int UPCA = 12;\n    /** EAN-13. */\n    public static final int EAN13 = 13;\n    /** ISBN-13 (from EAN-13). */\n    public static final int ISBN13 = 14;\n    /** Interleaved 2 of 5. */\n    public static final int I25 = 25;\n    /** DataBar (RSS-14). */\n    public static final int DATABAR = 34;\n    /** DataBar Expanded. */\n    public static final int DATABAR_EXP = 35;\n    /** Codabar. */\n    public static final int CODABAR = 38;\n    /** Code 39. */\n    public static final int CODE39 = 39;\n    /** PDF417. */\n    public static final int PDF417 = 57;\n    /** QR Code. */\n    public static final int QRCODE = 64;\n    /** Code 93. */\n    public static final int CODE93 = 93;\n    /** Code 128. */\n    public static final int CODE128 = 128;\n\n    /** C pointer to a zbar_symbol_t. */\n    private long peer;\n\n    /** Cached attributes. */\n    private int type;\n\n    static {\n        System.loadLibrary(\"zbarjni\");\n        init();\n    }\n\n    private static native void init();\n\n    /** Symbols are only created by other package methods. */\n    Symbol(long peer) {\n        this.peer = peer;\n    }\n\n    protected void finalize() {\n        destroy();\n    }\n\n    /** Clean up native data associated with an instance. */\n    public synchronized void destroy() {\n        if (peer != 0) {\n            destroy(peer);\n            peer = 0;\n        }\n    }\n\n    /** Release the associated peer instance. */\n    private native void destroy(long peer);\n\n    /** Retrieve type of decoded symbol. */\n    public int getType() {\n        if (type == 0) {\n            type = getType(peer);\n        }\n        return (type);\n    }\n\n    private native int getType(long peer);\n\n    /** Retrieve symbology boolean configs settings used during decode. */\n    public native int getConfigMask();\n\n    /** Retrieve symbology characteristics detected during decode. */\n    public native int getModifierMask();\n\n    /** Retrieve data decoded from symbol as a String. */\n    public native String getData();\n\n    /** Retrieve raw data bytes decoded from symbol. */\n    public native byte[] getDataBytes();\n\n    /**\n     * Retrieve a symbol confidence metric.  Quality is an unscaled,\n     * relative quantity: larger values are better than smaller\n     * values, where \"large\" and \"small\" are application dependent.\n     */\n    public native int getQuality();\n\n    /**\n     * Retrieve current cache count.  When the cache is enabled for\n     * the image_scanner this provides inter-frame reliability and\n     * redundancy information for video streams.\n     *\n     * @returns < 0 if symbol is still uncertain\n     * @returns 0 if symbol is newly verified\n     * @returns > 0 for duplicate symbols\n     */\n    public native int getCount();\n\n    public int getLocationSize() {\n        return getLocationSize(peer);\n    }\n\n    /**\n     * Retrieve an approximate, axis-aligned bounding box for the\n     * symbol.\n     */\n    public int[] getBounds() {\n        int n = getLocationSize(peer);\n        if (n <= 0) {\n            return (null);\n        }\n\n        int[] bounds = new int[4];\n        int xmin = Integer.MAX_VALUE;\n        int xmax = Integer.MIN_VALUE;\n        int ymin = Integer.MAX_VALUE;\n        int ymax = Integer.MIN_VALUE;\n\n        for (int i = 0; i < n; i++) {\n            int x = getLocationX(peer, i);\n            if (xmin > x) xmin = x;\n            if (xmax < x) xmax = x;\n\n            int y = getLocationY(peer, i);\n            if (ymin > y) ymin = y;\n            if (ymax < y) ymax = y;\n        }\n        bounds[0] = xmin;\n        bounds[1] = ymin;\n        bounds[2] = xmax - xmin;\n        bounds[3] = ymax - ymin;\n        return (bounds);\n    }\n\n    private native int getLocationSize(long peer);\n\n    private native int getLocationX(long peer, int idx);\n\n    private native int getLocationY(long peer, int idx);\n\n    public int[] getLocationPoint(int idx) {\n        int[] p = new int[2];\n        p[0] = getLocationX(peer, idx);\n        p[1] = getLocationY(peer, idx);\n        return (p);\n    }\n\n    public PointF[] getLocationPoints() {\n        int locationSize = getLocationSize(peer);\n        final PointF[] pointArr = new PointF[locationSize];\n        for (int pointIndex = 0; pointIndex < locationSize; pointIndex++) {\n            pointArr[pointIndex] = new PointF(getLocationX(peer, pointIndex), getLocationY(peer, pointIndex));\n        }\n        return pointArr;\n    }\n\n    /**\n     * Retrieve general axis-aligned, orientation of decoded\n     * symbol.\n     */\n    public native int getOrientation();\n\n    /** Retrieve components of a composite result. */\n    public SymbolSet getComponents() {\n        return (new SymbolSet(getComponents(peer)));\n    }\n\n    private native long getComponents(long peer);\n\n    native long next();\n}\n"
  },
  {
    "path": "zbar/src/main/java/net/sourceforge/zbar/SymbolIterator.java",
    "content": "/*------------------------------------------------------------------------\n *  SymbolIterator\n *\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\npackage net.sourceforge.zbar;\n\n/** Iterator over a SymbolSet.\n */\npublic class SymbolIterator\n    implements java.util.Iterator<Symbol>\n{\n    /** Next symbol to be returned by the iterator. */\n    private Symbol current;\n\n    /** SymbolIterators are only created by internal interface methods. */\n    SymbolIterator (Symbol first)\n    {\n        current = first;\n    }\n\n    /** Returns true if the iteration has more elements. */\n    public boolean hasNext ()\n    {\n        return(current != null);\n    }\n\n    /** Retrieves the next element in the iteration. */\n    public Symbol next ()\n    {\n        if(current == null)\n            throw(new java.util.NoSuchElementException\n                  (\"access past end of SymbolIterator\"));\n\n        Symbol result = current;\n        long sym = current.next();\n        if(sym != 0)\n            current = new Symbol(sym);\n        else\n            current = null;\n        return(result);\n    }\n\n    /** Raises UnsupportedOperationException. */\n    public void remove ()\n    {\n        throw(new UnsupportedOperationException\n              (\"SymbolIterator is immutable\"));\n    }\n}\n"
  },
  {
    "path": "zbar/src/main/java/net/sourceforge/zbar/SymbolSet.java",
    "content": "/*------------------------------------------------------------------------\n *  SymbolSet\n *\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\npackage net.sourceforge.zbar;\n\n/** Immutable container for decoded result symbols associated with an image\n * or a composite symbol.\n */\npublic class SymbolSet\n    extends java.util.AbstractCollection<Symbol>\n{\n    /** C pointer to a zbar_symbol_set_t. */\n    private long peer;\n\n    static\n    {\n        System.loadLibrary(\"zbarjni\");\n        init();\n    }\n    private static native void init();\n\n    /** SymbolSets are only created by other package methods. */\n    SymbolSet (long peer)\n    {\n        this.peer = peer;\n    }\n\n    protected void finalize ()\n    {\n        destroy();\n    }\n\n    /** Clean up native data associated with an instance. */\n    public synchronized void destroy ()\n    {\n        if(peer != 0) {\n            destroy(peer);\n            peer = 0;\n        }\n    }\n\n    /** Release the associated peer instance.  */\n    private native void destroy(long peer);\n\n    /** Retrieve an iterator over the Symbol elements in this collection. */\n    public java.util.Iterator<Symbol> iterator ()\n    {\n        long sym = firstSymbol(peer);\n        if(sym == 0)\n            return(new SymbolIterator(null));\n\n        return(new SymbolIterator(new Symbol(sym)));\n    }\n\n    /** Retrieve the number of elements in the collection. */\n    public native int size();\n\n    /** Retrieve C pointer to first symbol in the set. */\n    private native long firstSymbol(long peer);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/Android.mk",
    "content": "#\n# Android NDK makefile \n#\n# build - <ndk path>/ndk-build ICONV_SRC=<iconv library src> \n# clean -  <ndk path>/ndk-build clean\n#\nMY_LOCAL_PATH := $(call my-dir)\n\n# libiconv\ninclude $(CLEAR_VARS)\nICONV_SRC := $(MY_LOCAL_PATH)/libiconv-1.15\nLOCAL_PATH := $(ICONV_SRC)\n\nLOCAL_MODULE := libiconv\n\nLOCAL_CFLAGS := \\\n    -Wno-multichar \\\n    -D_ANDROID \\\n    -DLIBDIR=\"c\" \\\n    -DBUILDING_LIBICONV \\\n    -DBUILDING_LIBCHARSET \\\n    -DIN_LIBRARY\n\nLOCAL_SRC_FILES := \\\n\tlib/iconv.c \\\n\tlibcharset/lib/localcharset.c \\\n\tlib/relocatable.c\n\nLOCAL_C_INCLUDES := \\\n\t$(ICONV_SRC)/include \\\n\t$(ICONV_SRC)/libcharset \\\n\t$(ICONV_SRC)/libcharset/include\n\ninclude $(BUILD_SHARED_LIBRARY)\n\nLOCAL_LDLIBS := -llog -lcharset\n\n# libzbarjni\ninclude $(CLEAR_VARS)\n\nLOCAL_PATH := $(MY_LOCAL_PATH)\nLOCAL_MODULE := zbarjni\nLOCAL_SRC_FILES := zbarjni.c \\\n\t\t   zbar/img_scanner.c \\\n\t\t   zbar/decoder.c \\\n\t\t   zbar/image.c \\\n\t\t   zbar/symbol.c \\\n\t\t   zbar/convert.c \\\n\t\t   zbar/config.c \\\n\t\t   zbar/scanner.c \\\n\t\t   zbar/error.c \\\n\t\t   zbar/refcnt.c \\\n\t\t   zbar/video.c \\\n\t\t   zbar/video/null.c \\\n\t\t   zbar/decoder/code128.c \\\n\t\t   zbar/decoder/code39.c \\\n\t\t   zbar/decoder/code93.c \\\n\t\t   zbar/decoder/codabar.c \\\n\t\t   zbar/decoder/databar.c \\\n\t\t   zbar/decoder/ean.c \\\n\t\t   zbar/decoder/i25.c \\\n\t\t   zbar/decoder/qr_finder.c \\\n\t\t   zbar/qrcode/bch15_5.c \\\n\t\t   zbar/qrcode/binarize.c \\\n\t\t   zbar/qrcode/isaac.c \\\n\t\t   zbar/qrcode/qrdec.c \\\n\t\t   zbar/qrcode/qrdectxt.c \\\n\t\t   zbar/qrcode/rs.c \\\n\t\t   zbar/qrcode/util.c\n\nLOCAL_C_INCLUDES := $(LOCAL_PATH)/include \\\n\t\t    $(LOCAL_PATH)/zbar \\\n\t\t    $(ICONV_SRC)/include\n\nLOCAL_SHARED_LIBRARIES := libiconv\n\ninclude $(BUILD_SHARED_LIBRARY)"
  },
  {
    "path": "zbar/src/main/jni/Application.mk",
    "content": "APP_ABI := all\n"
  },
  {
    "path": "zbar/src/main/jni/config.h",
    "content": "/* manually customized for iPhone platform */\n\n#define HAVE_LANGINFO_CODESET 0\n\n/* whether to build support for Code 128 symbology */\n#define ENABLE_CODE128 1\n\n/* whether to build support for Code 93 symbology */\n#define ENABLE_CODE93 1\n\n/* whether to build support for Code 39 symbology */\n#define ENABLE_CODE39 1\n\n/* whether to build support for Codabar symbology */\n#define ENABLE_CODABAR 1\n\n/* whether to build support for DataBar symbology */\n#define ENABLE_DATABAR 1\n\n/* whether to build support for EAN symbologies */\n#define ENABLE_EAN 1\n\n/* whether to build support for Interleaved 2 of 5 symbology */\n#define ENABLE_I25 1\n\n/* whether to build support for PDF417 symbology */\n#undef ENABLE_PDF417\n\n/* whether to build support for QR Code */\n#define ENABLE_QRCODE 1\n\n/* Define to 1 if you have the `atexit' function. */\n#undef HAVE_ATEXIT\n\n/* Define to 1 if you have the <dlfcn.h> header file. */\n#undef HAVE_DLFCN_H\n\n/* Define to 1 if you have the <fcntl.h> header file. */\n#undef HAVE_FCNTL_H\n\n/* Define to 1 if you have the <features.h> header file. */\n#undef HAVE_FEATURES_H\n\n/* Define to 1 if you have the `getpagesize' function. */\n#undef HAVE_GETPAGESIZE\n\n/* Define if you have the iconv() function and it works. */\n#undef HAVE_ICONV\n\n/* Define to 1 if you have the <inttypes.h> header file. */\n#define HAVE_INTTYPES_H 1\n\n/* Define to 1 if you have the <jpeglib.h> header file. */\n#undef HAVE_JPEGLIB_H\n\n/* Define to 1 if you have the `jpeg' library (-ljpeg). */\n#undef HAVE_LIBJPEG\n\n/* Define to 1 if you have the `pthread' library (-lpthread). */\n#undef HAVE_LIBPTHREAD\n\n/* Define to 1 if you have the <linux/videodev2.h> header file. */\n#undef HAVE_LINUX_VIDEODEV2_H\n\n/* Define to 1 if you have the <linux/videodev.h> header file. */\n#undef HAVE_LINUX_VIDEODEV_H\n\n/* Define to 1 if you have the <memory.h> header file. */\n#undef HAVE_MEMORY_H\n\n/* Define to 1 if you have the `memset' function. */\n#define HAVE_MEMSET 1\n\n/* Define to 1 if you have a working `mmap' system call. */\n#undef HAVE_MMAP\n\n/* Define to 1 if you have the <poll.h> header file. */\n#undef HAVE_POLL_H\n\n/* Define to 1 if you have the <pthread.h> header file. */\n#undef HAVE_PTHREAD_H\n\n/* Define to 1 if you have the `setenv' function. */\n#undef HAVE_SETENV\n\n/* Define to 1 if you have the <stdint.h> header file. */\n#define HAVE_STDINT_H 1\n\n/* Define to 1 if you have the <stdlib.h> header file. */\n#define HAVE_STDLIB_H 1\n\n/* Define to 1 if you have the <strings.h> header file. */\n#define HAVE_STRINGS_H 1\n\n/* Define to 1 if you have the <string.h> header file. */\n#define HAVE_STRING_H 1\n\n/* Define to 1 if you have the <sys/ioctl.h> header file. */\n#undef HAVE_SYS_IOCTL_H\n\n/* Define to 1 if you have the <sys/ipc.h> header file. */\n#undef HAVE_SYS_IPC_H\n\n/* Define to 1 if you have the <sys/mman.h> header file. */\n#undef HAVE_SYS_MMAN_H\n\n/* Define to 1 if you have the <sys/shm.h> header file. */\n#undef HAVE_SYS_SHM_H\n\n/* Define to 1 if you have the <sys/stat.h> header file. */\n#define HAVE_SYS_STAT_H 1\n\n/* Define to 1 if you have the <sys/times.h> header file. */\n#define HAVE_SYS_TIMES_H 1\n\n/* Define to 1 if you have the <sys/time.h> header file. */\n#define HAVE_SYS_TIME_H 1\n\n/* Define to 1 if you have the <sys/types.h> header file. */\n#define HAVE_SYS_TYPES_H 1\n\n/* Define to 1 if the system has the type `uintptr_t'. */\n#define HAVE_UINTPTR_T 1\n\n/* Define to 1 if you have the <unistd.h> header file. */\n#define HAVE_UNISTD_H 1\n\n/* Define to 1 if you have the <vfw.h> header file. */\n#undef HAVE_VFW_H\n\n/* Define to 1 if you have the <X11/extensions/XShm.h> header file. */\n#undef HAVE_X11_EXTENSIONS_XSHM_H\n\n/* Define to 1 if you have the <X11/extensions/Xvlib.h> header file. */\n#undef HAVE_X11_EXTENSIONS_XVLIB_H\n\n/* Define as const if the declaration of iconv() needs const. */\n#undef ICONV_CONST\n\n/* Library major version */\n#define LIB_VERSION_MAJOR 0\n\n/* Library minor version */\n#define LIB_VERSION_MINOR 2\n\n/* Library revision */\n#define LIB_VERSION_REVISION 0\n\n/* Define to the sub-directory in which libtool stores uninstalled libraries.\n   */\n#undef LT_OBJDIR\n\n/* Define to 1 if assertions should be disabled. */\n//#undef NDEBUG\n\n/* Define to 1 if your C compiler doesn't accept -c and -o together. */\n#undef NO_MINUS_C_MINUS_O\n\n/* Name of package */\n#define PACKAGE \"zbar\"\n\n/* Define to the address where bug reports for this package should be sent. */\n#define PACKAGE_BUGREPORT \"spadix@users.sourceforge.net\"\n\n/* Define to the full name of this package. */\n#define PACKAGE_NAME \"zbar\"\n\n/* Define to the full name and version of this package. */\n#define PACKAGE_STRING \"zbar 0.10\"\n\n/* Define to the one symbol short name of this package. */\n#define PACKAGE_TARNAME \"zbar\"\n\n/* Define to the version of this package. */\n#define PACKAGE_VERSION \"0.10\"\n\n/* Define to 1 if you have the ANSI C header files. */\n#define STDC_HEADERS 1\n\n/* Version number of package */\n#define VERSION \"0.10\"\n\n/* Define to 1 if the X Window System is missing or not being used. */\n#define X_DISPLAY_MISSING 1\n\n/* Program major version (before the '.') as a number */\n#define ZBAR_VERSION_MAJOR 0\n\n/* Program minor version (after '.') as a number */\n#define ZBAR_VERSION_MINOR 10\n\n/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,\n   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the\n   #define below would cause a syntax error. */\n#undef _UINT32_T\n\n/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,\n   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the\n   #define below would cause a syntax error. */\n#undef _UINT8_T\n\n/* Minimum Windows API version */\n#undef _WIN32_WINNT\n\n/* used only for pthread debug attributes */\n#undef __USE_UNIX98\n\n/* Define to empty if `const' does not conform to ANSI C. */\n#undef const\n\n/* Define to `__inline__' or `__inline' if that's what the C compiler\n   calls it, or to nothing if 'inline' is not supported under any name.  */\n#ifndef __cplusplus\n#undef inline\n#endif\n\n/* Define to the type of a signed integer type of width exactly 32 bits if\n   such a type exists and the standard includes do not define it. */\n#undef int32_t\n\n/* Define to the type of an unsigned integer type of width exactly 32 bits if\n   such a type exists and the standard includes do not define it. */\n#undef uint32_t\n\n/* Define to the type of an unsigned integer type of width exactly 8 bits if\n   such a type exists and the standard includes do not define it. */\n#undef uint8_t\n\n/* Define to the type of an unsigned integer type wide enough to hold a\n   pointer, if such a type exists, and if the system does not define it. */\n#undef uintptr_t\n\n#ifndef X_DISPLAY_MISSING\n# define HAVE_X\n#endif\n\n"
  },
  {
    "path": "zbar/src/main/jni/include/Makefile.am.inc",
    "content": "zincludedir = $(includedir)/zbar\ninclude_HEADERS = include/zbar.h\nzinclude_HEADERS = include/zbar/Scanner.h include/zbar/Decoder.h \\\n    include/zbar/Exception.h include/zbar/Symbol.h include/zbar/Image.h \\\n    include/zbar/ImageScanner.h include/zbar/Video.h include/zbar/Window.h \\\n    include/zbar/Processor.h\n\nif HAVE_GTK\nzinclude_HEADERS += include/zbar/zbargtk.h\nendif\nif HAVE_QT\nzinclude_HEADERS += include/zbar/QZBar.h include/zbar/QZBarImage.h\nendif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/Decoder.h",
    "content": "//------------------------------------------------------------------------\n//  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n//\n//  This file is part of the ZBar Bar Code Reader.\n//\n//  The ZBar Bar Code Reader is free software; you can redistribute it\n//  and/or modify it under the terms of the GNU Lesser Public License as\n//  published by the Free Software Foundation; either version 2.1 of\n//  the License, or (at your option) any later version.\n//\n//  The ZBar Bar Code Reader is distributed in the hope that it will be\n//  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n//  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU Lesser Public License for more details.\n//\n//  You should have received a copy of the GNU Lesser Public License\n//  along with the ZBar Bar Code Reader; if not, write to the Free\n//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n//  Boston, MA  02110-1301  USA\n//\n//  http://sourceforge.net/projects/zbar\n//------------------------------------------------------------------------\n#ifndef _ZBAR_DECODER_H_\n#define _ZBAR_DECODER_H_\n\n/// @file\n/// Decoder C++ wrapper\n\n#ifndef _ZBAR_H_\n# error \"include zbar.h in your application, **not** zbar/Decoder.h\"\n#endif\n\n#include <string>\n\nnamespace zbar {\n\n/// low-level bar width stream decoder interface.\n/// identifies symbols and extracts encoded data\n\nclass Decoder {\n public:\n\n    /// Decoder result handler.\n    /// applications should subtype this and pass an instance to\n    /// set_handler() to implement result processing\n    class Handler {\n    public:\n        virtual ~Handler() { }\n\n        /// invoked by the Decoder as decode results become available.\n        virtual void decode_callback(Decoder &decoder) = 0;\n    };\n\n    /// constructor.\n    Decoder ()\n        : _handler(NULL)\n    {\n        _decoder = zbar_decoder_create();\n    }\n\n    ~Decoder ()\n    {\n        zbar_decoder_destroy(_decoder);\n    }\n\n    /// clear all decoder state.\n    /// see zbar_decoder_reset()\n    void reset ()\n    {\n        zbar_decoder_reset(_decoder);\n    }\n\n    /// mark start of a new scan pass.\n    /// see zbar_decoder_new_scan()\n    void new_scan ()\n    {\n        zbar_decoder_new_scan(_decoder);\n    }\n\n    /// process next bar/space width from input stream.\n    /// see zbar_decode_width()\n    zbar_symbol_type_t decode_width (unsigned width)\n    {\n        return(zbar_decode_width(_decoder, width));\n    }\n\n    /// process next bar/space width from input stream.\n    /// see zbar_decode_width()\n    Decoder& operator<< (unsigned width)\n    {\n        zbar_decode_width(_decoder, width);\n        return(*this);\n    }\n\n    /// retrieve color of @em next element passed to Decoder.\n    /// see zbar_decoder_get_color()\n    zbar_color_t get_color () const\n    {\n        return(zbar_decoder_get_color(_decoder));\n    }\n\n    /// retrieve last decoded symbol type.\n    /// see zbar_decoder_get_type()\n    zbar_symbol_type_t get_type () const\n    {\n        return(zbar_decoder_get_type(_decoder));\n    }\n\n    /// retrieve string name of last decoded symbol type.\n    /// see zbar_get_symbol_name()\n    const char *get_symbol_name () const\n    {\n        return(zbar_get_symbol_name(zbar_decoder_get_type(_decoder)));\n    }\n\n    /// retrieve string name for last decode addon.\n    /// see zbar_get_addon_name()\n    /// @deprecated in 0.11\n    const char *get_addon_name () const\n    {\n        return(zbar_get_addon_name(zbar_decoder_get_type(_decoder)));\n    }\n\n    /// retrieve last decoded data in ASCII format as a char array.\n    /// see zbar_decoder_get_data()\n    const char *get_data_chars() const\n    {\n        return(zbar_decoder_get_data(_decoder));\n    }\n\n    /// retrieve last decoded data as a std::string.\n    /// see zbar_decoder_get_data()\n    const std::string get_data_string() const\n    {\n        return(std::string(zbar_decoder_get_data(_decoder),\n                           zbar_decoder_get_data_length(_decoder)));\n    }\n\n    /// retrieve last decoded data as a std::string.\n    /// see zbar_decoder_get_data()\n    const std::string get_data() const\n    {\n        return(get_data_string());\n    }\n\n    /// retrieve length of decoded binary data.\n    /// see zbar_decoder_get_data_length()\n    int get_data_length() const\n    {\n        return(zbar_decoder_get_data_length(_decoder));\n    }\n\n    /// retrieve last decode direction.\n    /// see zbar_decoder_get_direction()\n    /// @since 0.11\n    int get_direction() const\n    {\n        return(zbar_decoder_get_direction(_decoder));\n    }\n\n    /// setup callback to handle result data.\n    void set_handler (Handler &handler)\n    {\n        _handler = &handler;\n        zbar_decoder_set_handler(_decoder, _cb);\n        zbar_decoder_set_userdata(_decoder, this);\n    }\n\n    /// set config for indicated symbology (0 for all) to specified value.\n    /// @see zbar_decoder_set_config()\n    /// @since 0.4\n    int set_config (zbar_symbol_type_t symbology,\n                    zbar_config_t config,\n                    int value)\n    {\n        return(zbar_decoder_set_config(_decoder, symbology, config, value));\n    }\n\n    /// set config parsed from configuration string.\n    /// @see zbar_decoder_parse_config()\n    /// @since 0.4\n    int set_config (std::string cfgstr)\n    {\n        return(zbar_decoder_parse_config(_decoder, cfgstr.c_str()));\n    }\n\n private:\n    friend class Scanner;\n    zbar_decoder_t *_decoder;\n    Handler *_handler;\n\n    static void _cb (zbar_decoder_t *cdcode)\n    {\n        Decoder *dcode = (Decoder*)zbar_decoder_get_userdata(cdcode);\n        if(dcode && dcode->_handler)\n            dcode->_handler->decode_callback(*dcode);\n    }\n};\n\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/Exception.h",
    "content": "//------------------------------------------------------------------------\n//  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n//\n//  This file is part of the ZBar Bar Code Reader.\n//\n//  The ZBar Bar Code Reader is free software; you can redistribute it\n//  and/or modify it under the terms of the GNU Lesser Public License as\n//  published by the Free Software Foundation; either version 2.1 of\n//  the License, or (at your option) any later version.\n//\n//  The ZBar Bar Code Reader is distributed in the hope that it will be\n//  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n//  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU Lesser Public License for more details.\n//\n//  You should have received a copy of the GNU Lesser Public License\n//  along with the ZBar Bar Code Reader; if not, write to the Free\n//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n//  Boston, MA  02110-1301  USA\n//\n//  http://sourceforge.net/projects/zbar\n//------------------------------------------------------------------------\n#ifndef _ZBAR_EXCEPTION_H_\n#define _ZBAR_EXCEPTION_H_\n\n/// @file\n/// C++ Exception definitions\n\n#ifndef _ZBAR_H_\n# error \"include zbar.h in your application, **not** zbar/Exception.h\"\n#endif\n\n#include <exception>\n#include <new>\n\nnamespace zbar {\n\n/// base class for exceptions defined by this API.\nclass Exception : public std::exception {\n\npublic:\n    /// create exception from C library error\n    Exception (const void *obj = NULL)\n        : std::exception(),\n          _obj(obj)\n    { }\n\n    ~Exception () throw() { }\n\n    /// retrieve error message\n    virtual const char* what () const throw()\n    {\n        if(!_obj)\n            return(\"zbar library unspecified generic error\");\n        return(_zbar_error_string(_obj, 0));\n    }\n\nprivate:\n    const void *_obj;\n};\n\n/// internal library error.\nclass InternalError : public Exception {\npublic:\n    /// create exception from C library error\n    InternalError (const void *obj)\n        : Exception(obj)\n    { }\n};\n\n/// unsupported request.\nclass UnsupportedError : public Exception {\npublic:\n    /// create exception from C library error\n    UnsupportedError (const void *obj)\n        : Exception(obj)\n    { }\n};\n\n/// invalid request.\nclass InvalidError : public Exception {\npublic:\n    /// create exception from C library error\n    InvalidError (const void *obj)\n        : Exception(obj)\n    { }\n};\n\n/// failed system call.\nclass SystemError : public Exception {\npublic:\n    /// create exception from C library error\n    SystemError (const void *obj)\n        : Exception(obj)\n    { }\n};\n\n/// locking error.\nclass LockingError : public Exception {\npublic:\n    /// create exception from C library error\n    LockingError (const void *obj)\n        : Exception(obj)\n    { }\n};\n\n/// all resources busy.\nclass BusyError : public Exception {\npublic:\n    /// create exception from C library error\n    BusyError (const void *obj)\n        : Exception(obj)\n    { }\n};\n\n/// X11 display error.\nclass XDisplayError : public Exception {\npublic:\n    /// create exception from C library error\n    XDisplayError (const void *obj)\n        : Exception(obj)\n    { }\n};\n\n/// X11 protocol error.\nclass XProtoError : public Exception {\npublic:\n    /// create exception from C library error\n    XProtoError (const void *obj)\n        : Exception(obj)\n    { }\n};\n\n/// output window is closed.\nclass ClosedError : public Exception {\npublic:\n    /// create exception from C library error\n    ClosedError (const void *obj)\n        : Exception(obj)\n    { }\n};\n\n/// image format error\nclass FormatError : public Exception {\n    // FIXME needs c equivalent\n\n    virtual const char* what () const throw()\n    {\n        // FIXME what format?\n        return(\"unsupported format\");\n    }\n};\n\n/// @internal\n\n/// extract error information and create exception.\nstatic inline std::exception throw_exception (const void *obj)\n{\n    switch(_zbar_get_error_code(obj)) {\n    case ZBAR_ERR_NOMEM:\n        throw std::bad_alloc();\n    case ZBAR_ERR_INTERNAL:\n        throw InternalError(obj);\n    case ZBAR_ERR_UNSUPPORTED:\n        throw UnsupportedError(obj);\n    case ZBAR_ERR_INVALID:\n        throw InvalidError(obj);\n    case ZBAR_ERR_SYSTEM:\n        throw SystemError(obj);\n    case ZBAR_ERR_LOCKING:\n        throw LockingError(obj);\n    case ZBAR_ERR_BUSY:\n        throw BusyError(obj);\n    case ZBAR_ERR_XDISPLAY:\n        throw XDisplayError(obj);\n    case ZBAR_ERR_XPROTO:\n        throw XProtoError(obj);\n    case ZBAR_ERR_CLOSED:\n        throw ClosedError(obj);\n    default:\n        throw Exception(obj);\n    }\n}\n\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/Image.h",
    "content": "//------------------------------------------------------------------------\n//  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n//\n//  This file is part of the ZBar Bar Code Reader.\n//\n//  The ZBar Bar Code Reader is free software; you can redistribute it\n//  and/or modify it under the terms of the GNU Lesser Public License as\n//  published by the Free Software Foundation; either version 2.1 of\n//  the License, or (at your option) any later version.\n//\n//  The ZBar Bar Code Reader is distributed in the hope that it will be\n//  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n//  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU Lesser Public License for more details.\n//\n//  You should have received a copy of the GNU Lesser Public License\n//  along with the ZBar Bar Code Reader; if not, write to the Free\n//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n//  Boston, MA  02110-1301  USA\n//\n//  http://sourceforge.net/projects/zbar\n//------------------------------------------------------------------------\n#ifndef _ZBAR_IMAGE_H_\n#define _ZBAR_IMAGE_H_\n\n/// @file\n/// Image C++ wrapper\n\n#ifndef _ZBAR_H_\n# error \"include zbar.h in your application, **not** zbar/Image.h\"\n#endif\n\n#include <assert.h>\n#include <iterator>\n#include \"Symbol.h\"\n#include \"Exception.h\"\n\nnamespace zbar {\n\nclass Video;\n\n/// stores image data samples along with associated format and size\n/// metadata\n\nclass Image {\npublic:\n\n    /// general Image result handler.\n    /// applications should subtype this and pass an instance to\n    /// eg. ImageScanner::set_handler() to implement result processing\n    class Handler {\n    public:\n        virtual ~Handler() { }\n\n        /// invoked by library when Image should be processed\n        virtual void image_callback(Image &image) = 0;\n\n        /// cast this handler to the C handler\n        operator zbar_image_data_handler_t* () const\n        {\n            return(_cb);\n        }\n\n    private:\n        static void _cb (zbar_image_t *zimg,\n                         const void *userdata)\n        {\n            if(userdata) {\n                Image *image = (Image*)zbar_image_get_userdata(zimg);\n                if(image)\n                    ((Handler*)userdata)->image_callback(*image);\n                else {\n                    Image tmp(zimg, 1);\n                    ((Handler*)userdata)->image_callback(tmp);\n                }\n            }\n        }\n    };\n\n    class SymbolIterator : public zbar::SymbolIterator {\n    public:\n        /// default constructor.\n        SymbolIterator ()\n            : zbar::SymbolIterator()\n        { }\n\n        /// constructor.\n        SymbolIterator (const SymbolSet &syms)\n            : zbar::SymbolIterator(syms)\n        { }\n\n        /// copy constructor.\n        SymbolIterator (const SymbolIterator& iter)\n            : zbar::SymbolIterator(iter)\n        { }\n    };\n\n    /// constructor.\n    /// create a new Image with the specified parameters\n    Image (unsigned width = 0,\n           unsigned height = 0,\n           const std::string& format = \"\",\n           const void *data = NULL,\n           unsigned long length = 0)\n        : _img(zbar_image_create())\n    {\n        zbar_image_set_userdata(_img, this);\n        if(width && height)\n            set_size(width, height);\n        if(format.length())\n            set_format(format);\n        if(data && length)\n            set_data(data, length);\n    }\n\n    ~Image ()\n    {\n        if(zbar_image_get_userdata(_img) == this)\n            zbar_image_set_userdata(_img, NULL);\n        zbar_image_ref(_img, -1);\n    }\n\n    /// cast to C image object\n    operator const zbar_image_t* () const\n    {\n        return(_img);\n    }\n\n    /// cast to C image object\n    operator zbar_image_t* ()\n    {\n        return(_img);\n    }\n\n    /// retrieve the image format.\n    /// see zbar_image_get_format()\n    unsigned long get_format () const\n    {\n        return(zbar_image_get_format(_img));\n    }\n\n    /// specify the fourcc image format code for image sample data.\n    /// see zbar_image_set_format()\n    void set_format (unsigned long format)\n    {\n        zbar_image_set_format(_img, format);\n    }\n\n    /// specify the fourcc image format code for image sample data.\n    /// see zbar_image_set_format()\n    void set_format (const std::string& format)\n    {\n        unsigned long fourcc = zbar_fourcc_parse(format.c_str());\n        zbar_image_set_format(_img, fourcc);\n    }\n\n    /// retrieve a \"sequence\" (page/frame) number associated with this\n    /// image.\n    /// see zbar_image_get_sequence()\n    /// @since 0.6\n    unsigned get_sequence () const\n    {\n        return(zbar_image_get_sequence(_img));\n    }\n\n    /// associate a \"sequence\" (page/frame) number with this image.\n    /// see zbar_image_set_sequence()\n    /// @since 0.6\n    void set_sequence (unsigned sequence_num)\n    {\n        zbar_image_set_sequence(_img, sequence_num);\n    }\n\n    /// retrieve the width of the image.\n    /// see zbar_image_get_width()\n    unsigned get_width () const\n    {\n        return(zbar_image_get_width(_img));\n    }\n\n    /// retrieve the height of the image.\n    /// see zbar_image_get_height()\n    unsigned get_height () const\n    {\n        return(zbar_image_get_height(_img));\n    }\n\n    /// retrieve both dimensions of the image.\n    /// see zbar_image_get_size()\n    /// @since 0.11\n    void get_size (unsigned &width,\n                   unsigned &height) const\n    {\n        zbar_image_get_size(_img, &width, &height);\n    }\n\n    /// specify the pixel size of the image.\n    /// see zbar_image_set_size()\n    void set_size (unsigned width,\n                   unsigned height)\n    {\n        zbar_image_set_size(_img, width, height);\n    }\n\n    /// retrieve the scan crop rectangle.\n    /// see zbar_image_get_crop()\n    void get_crop (unsigned &x,\n                   unsigned &y,\n                   unsigned &width,\n                   unsigned &height) const\n    {\n        zbar_image_get_crop(_img, &x, &y, &width, &height);\n    }\n\n    /// set the scan crop rectangle.\n    /// see zbar_image_set_crop()\n    void set_crop (unsigned x,\n                   unsigned y,\n                   unsigned width,\n                   unsigned height)\n    {\n        zbar_image_set_crop(_img, x, y, width, height);\n    }\n\n    /// return the image sample data.\n    /// see zbar_image_get_data()\n    const void *get_data () const\n    {\n        return(zbar_image_get_data(_img));\n    }\n\n    /// return the size of the image sample data.\n    /// see zbar_image_get_data_length()\n    /// @since 0.6\n    unsigned long get_data_length () const\n    {\n        return(zbar_image_get_data_length(_img));\n    }\n\n    /// specify image sample data.\n    /// see zbar_image_set_data()\n    void set_data (const void *data,\n                   unsigned long length)\n    {\n        zbar_image_set_data(_img, data, length, _cleanup);\n    }\n\n    /// image format conversion.\n    /// see zbar_image_convert()\n    Image convert (unsigned long format) const\n    {\n        zbar_image_t *img = zbar_image_convert(_img, format);\n        if(img)\n            return(Image(img));\n        throw FormatError();\n    }\n\n    /// image format conversion.\n    /// see zbar_image_convert()\n    /// @since 0.11\n    Image convert (std::string format) const\n    {\n        unsigned long fourcc = zbar_fourcc_parse(format.c_str());\n        return(convert(fourcc));\n    }\n\n    /// image format conversion with crop/pad.\n    /// see zbar_image_convert_resize()\n    /// @since 0.4\n    Image convert (unsigned long format,\n                   unsigned width,\n                   unsigned height) const\n    {\n        zbar_image_t *img =\n            zbar_image_convert_resize(_img, format, width, height);\n        if(img)\n            return(Image(img));\n        throw FormatError();\n    }\n\n    const SymbolSet get_symbols () const {\n        return(SymbolSet(zbar_image_get_symbols(_img)));\n    }\n\n    void set_symbols (const SymbolSet &syms) {\n        zbar_image_set_symbols(_img, syms);\n    }\n\n    /// create a new SymbolIterator over decoded results.\n    SymbolIterator symbol_begin () const {\n        return(SymbolIterator(get_symbols()));\n    }\n\n    /// return a SymbolIterator suitable for ending iteration.\n    SymbolIterator symbol_end () const {\n        return(SymbolIterator());\n    }\n\nprotected:\n\n    friend class Video;\n\n    /// constructor.\n    /// @internal\n    /// create a new Image from a zbar_image_t C object\n    Image (zbar_image_t *src,\n           int refs = 0)\n        : _img(src)\n    {\n        if(refs)\n            zbar_image_ref(_img, refs);\n        zbar_image_set_userdata(_img, this);\n    }\n\n    /// default data cleanup (noop)\n    /// @internal\n    static void _cleanup (zbar_image_t *img)\n    {\n        // by default nothing is cleaned\n        assert(img);\n    }\n\nprivate:\n    zbar_image_t *_img;\n};\n\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/ImageScanner.h",
    "content": "//------------------------------------------------------------------------\n//  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n//\n//  This file is part of the ZBar Bar Code Reader.\n//\n//  The ZBar Bar Code Reader is free software; you can redistribute it\n//  and/or modify it under the terms of the GNU Lesser Public License as\n//  published by the Free Software Foundation; either version 2.1 of\n//  the License, or (at your option) any later version.\n//\n//  The ZBar Bar Code Reader is distributed in the hope that it will be\n//  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n//  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU Lesser Public License for more details.\n//\n//  You should have received a copy of the GNU Lesser Public License\n//  along with the ZBar Bar Code Reader; if not, write to the Free\n//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n//  Boston, MA  02110-1301  USA\n//\n//  http://sourceforge.net/projects/zbar\n//------------------------------------------------------------------------\n#ifndef _ZBAR_IMAGE_SCANNER_H_\n#define _ZBAR_IMAGE_SCANNER_H_\n\n/// @file\n/// Image Scanner C++ wrapper\n\n#ifndef _ZBAR_H_\n# error \"include zbar.h in your application, **not** zbar/ImageScanner.h\"\n#endif\n\n#include \"Image.h\"\n\nnamespace zbar {\n\n/// mid-level image scanner interface.\n/// reads barcodes from a 2-D Image\n\nclass ImageScanner {\npublic:\n    /// constructor.\n    ImageScanner (zbar_image_scanner_t *scanner = NULL)\n    {\n        if(scanner)\n            _scanner = scanner;\n        else\n            _scanner = zbar_image_scanner_create();\n    }\n\n    ~ImageScanner ()\n    {\n        zbar_image_scanner_destroy(_scanner);\n    }\n\n    /// cast to C image_scanner object\n    operator zbar_image_scanner_t* () const\n    {\n        return(_scanner);\n    }\n\n    /// setup result handler callback.\n    void set_handler (Image::Handler &handler)\n    {\n        zbar_image_scanner_set_data_handler(_scanner, handler, &handler);\n    }\n\n    /// set config for indicated symbology (0 for all) to specified value.\n    /// @see zbar_image_scanner_set_config()\n    /// @since 0.4\n    int set_config (zbar_symbol_type_t symbology,\n                    zbar_config_t config,\n                    int value)\n    {\n        return(zbar_image_scanner_set_config(_scanner, symbology,\n                                              config, value));\n    }\n\n    /// set config parsed from configuration string.\n    /// @see zbar_image_scanner_parse_config()\n    /// @since 0.4\n    int set_config (std::string cfgstr)\n    {\n        return(zbar_image_scanner_parse_config(_scanner, cfgstr.c_str()));\n    }\n\n    /// enable or disable the inter-image result cache.\n    /// see zbar_image_scanner_enable_cache()\n    void enable_cache (bool enable = true)\n    {\n        zbar_image_scanner_enable_cache(_scanner, enable);\n    }\n\n    /// remove previous results from scanner and image.\n    /// @see zbar_image_scanner_recycle_image()\n    /// @since 0.10\n    void recycle_image (Image &image)\n    {\n        zbar_image_scanner_recycle_image(_scanner, image);\n    }\n\n    /// retrieve decode results for last scanned image.\n    /// @see zbar_image_scanner_get_results()\n    /// @since 0.10\n    const SymbolSet get_results () const {\n        return(SymbolSet(zbar_image_scanner_get_results(_scanner)));\n    }\n\n    /// scan for symbols in provided image.\n    /// see zbar_scan_image()\n    int scan (Image& image)\n    {\n        return(zbar_scan_image(_scanner, image));\n    }\n\n    /// scan for symbols in provided image.\n    /// see zbar_scan_image()\n    ImageScanner& operator<< (Image& image)\n    {\n        scan(image);\n        return(*this);\n    }\n\nprivate:\n    zbar_image_scanner_t *_scanner;\n};\n\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/Processor.h",
    "content": "//------------------------------------------------------------------------\n//  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n//\n//  This file is part of the ZBar Bar Code Reader.\n//\n//  The ZBar Bar Code Reader is free software; you can redistribute it\n//  and/or modify it under the terms of the GNU Lesser Public License as\n//  published by the Free Software Foundation; either version 2.1 of\n//  the License, or (at your option) any later version.\n//\n//  The ZBar Bar Code Reader is distributed in the hope that it will be\n//  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n//  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU Lesser Public License for more details.\n//\n//  You should have received a copy of the GNU Lesser Public License\n//  along with the ZBar Bar Code Reader; if not, write to the Free\n//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n//  Boston, MA  02110-1301  USA\n//\n//  http://sourceforge.net/projects/zbar\n//------------------------------------------------------------------------\n#ifndef _ZBAR_PROCESSOR_H_\n#define _ZBAR_PROCESSOR_H_\n\n/// @file\n/// Processor C++ wrapper\n\n#ifndef _ZBAR_H_\n# error \"include zbar.h in your application, **not** zbar/Processor.h\"\n#endif\n\n#include \"Exception.h\"\n#include \"Image.h\"\n\nnamespace zbar {\n\n/// high-level self-contained image processor.\n/// processes video and images for barcodes, optionally displaying\n/// images to a library owned output window\n\nclass Processor {\n public:\n    /// value to pass for no timeout.\n    static const int FOREVER = -1;\n\n    /// constructor.\n    Processor (bool threaded = true,\n               const char *video_device = \"\",\n               bool enable_display = true)\n    {\n        _processor = zbar_processor_create(threaded);\n        if(!_processor)\n            throw std::bad_alloc();\n        init(video_device, enable_display);\n    }\n\n    ~Processor ()\n    {\n        zbar_processor_destroy(_processor);\n    }\n\n    /// cast to C processor object.\n    operator zbar_processor_t* ()\n    {\n        return(_processor);\n    }\n\n    /// opens a video input device and/or prepares to display output.\n    /// see zbar_processor_init()\n    void init (const char *video_device = \"\",\n               bool enable_display = true)\n    {\n        if(zbar_processor_init(_processor, video_device, enable_display))\n            throw_exception(_processor);\n    }\n\n    /// setup result handler callback.\n    /// see zbar_processor_set_data_handler()\n    void set_handler (Image::Handler& handler)\n    {\n        zbar_processor_set_data_handler(_processor, handler, &handler);\n    }\n\n    /// set config for indicated symbology (0 for all) to specified value.\n    /// @see zbar_processor_set_config()\n    /// @since 0.4\n    int set_config (zbar_symbol_type_t symbology,\n                    zbar_config_t config,\n                    int value)\n    {\n        return(zbar_processor_set_config(_processor, symbology,\n                                          config, value));\n    }\n\n    /// set config parsed from configuration string.\n    /// @see zbar_processor_parse_config()\n    /// @since 0.4\n    int set_config (std::string cfgstr)\n    {\n        return(zbar_processor_parse_config(_processor, cfgstr.c_str()));\n    }\n\n    /// retrieve the current state of the ouput window.\n    /// see zbar_processor_is_visible()\n    bool is_visible ()\n    {\n        int rc = zbar_processor_is_visible(_processor);\n        if(rc < 0)\n            throw_exception(_processor);\n        return(rc != 0);\n    }\n\n    /// show or hide the display window owned by the library.\n    /// see zbar_processor_set_visible()\n    void set_visible (bool visible = true)\n    {\n        if(zbar_processor_set_visible(_processor, visible) < 0)\n            throw_exception(_processor);\n    }\n\n    /// control the processor in free running video mode.\n    /// see zbar_processor_set_active()\n    void set_active (bool active = true)\n    {\n        if(zbar_processor_set_active(_processor, active) < 0)\n            throw_exception(_processor);\n    }\n\n    /// retrieve decode results for last scanned image.\n    /// @see zbar_processor_get_results()\n    /// @since 0.10\n    const SymbolSet get_results () const {\n        return(SymbolSet(zbar_processor_get_results(_processor)));\n    }\n\n    /// wait for input to the display window from the user.\n    /// see zbar_processor_user_wait()\n    int user_wait (int timeout = FOREVER)\n    {\n        int rc = zbar_processor_user_wait(_processor, timeout);\n        if(rc < 0)\n            throw_exception(_processor);\n        return(rc);\n    }\n\n    /// process from the video stream until a result is available.\n    /// see zbar_process_one()\n    void process_one (int timeout = FOREVER)\n    {\n        if(zbar_process_one(_processor, timeout) < 0)\n            throw_exception(_processor);\n    }\n\n    /// process the provided image for barcodes.\n    /// see zbar_process_image()\n    void process_image (Image& image)\n    {\n        if(zbar_process_image(_processor, image) < 0)\n            throw_exception(_processor);\n    }\n\n    /// process the provided image for barcodes.\n    /// see zbar_process_image()\n    Processor& operator<< (Image& image)\n    {\n        process_image(image);\n        return(*this);\n    }\n\n    /// force specific input and output formats for debug/testing.\n    /// see zbar_processor_force_format()\n    void force_format (unsigned long input_format,\n                       unsigned long output_format)\n    {\n        if(zbar_processor_force_format(_processor, input_format,\n                                        output_format))\n            throw_exception(_processor);\n    }\n\n    /// force specific input and output formats for debug/testing.\n    /// see zbar_processor_force_format()\n    void force_format (std::string& input_format,\n                       std::string& output_format)\n    {\n        unsigned long ifourcc = zbar_fourcc_parse(input_format.c_str());\n        unsigned long ofourcc = zbar_fourcc_parse(output_format.c_str());\n        if(zbar_processor_force_format(_processor, ifourcc, ofourcc))\n            throw_exception(_processor);\n    }\n\n    /// request a preferred size for the video image from the device.\n    /// see zbar_processor_request_size()\n    /// @since 0.6\n    void request_size (int width, int height)\n    {\n        zbar_processor_request_size(_processor, width, height);\n    }\n\n    /// request a preferred driver interface version for debug/testing.\n    /// see zbar_processor_request_interface()\n    /// @since 0.6\n    void request_interface (int version)\n    {\n        zbar_processor_request_interface(_processor, version);\n    }\n\n    /// request a preferred I/O mode for debug/testing.\n    /// see zbar_processor_request_iomode()\n    /// @since 0.7\n    void request_iomode (int iomode)\n    {\n        if(zbar_processor_request_iomode(_processor, iomode))\n            throw_exception(_processor);\n    }\n\n private:\n    zbar_processor_t *_processor;\n};\n\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/QZBar.h",
    "content": "//------------------------------------------------------------------------\n//  Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n//\n//  This file is part of the ZBar Bar Code Reader.\n//\n//  The ZBar Bar Code Reader is free software; you can redistribute it\n//  and/or modify it under the terms of the GNU Lesser Public License as\n//  published by the Free Software Foundation; either version 2.1 of\n//  the License, or (at your option) any later version.\n//\n//  The ZBar Bar Code Reader is distributed in the hope that it will be\n//  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n//  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU Lesser Public License for more details.\n//\n//  You should have received a copy of the GNU Lesser Public License\n//  along with the ZBar Bar Code Reader; if not, write to the Free\n//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n//  Boston, MA  02110-1301  USA\n//\n//  http://sourceforge.net/projects/zbar\n//------------------------------------------------------------------------\n#ifndef _QZBAR_H_\n#define _QZBAR_H_\n\n/// @file\n/// Barcode Reader Qt4 Widget\n\n#include <qwidget.h>\n\nnamespace zbar {\n\nclass QZBarThread;\n\n/// barcode reader Qt4 widget.\n/// embeds a barcode reader directly into a Qt4 based GUI.  the widget\n/// can process barcodes from a video source (using the QZBar::videoDevice\n/// and QZBar::videoEnabled properties) or from individual QImages\n/// supplied to the QZBar::scanImage() slot\n/// @since 1.5\n\nclass QZBar : public QWidget\n{\n    Q_OBJECT\n\n    /// the currently opened video device.\n    ///\n    /// setting a new device opens it and automatically sets\n    /// QZBar::videoEnabled\n    ///\n    /// @see videoDevice(), setVideoDevice()\n    Q_PROPERTY(QString videoDevice\n               READ videoDevice\n               WRITE setVideoDevice\n               DESIGNABLE false)\n\n    /// video device streaming state.\n    ///\n    /// use to pause/resume video scanning.\n    ///\n    /// @see isVideoEnabled(), setVideoEnabled()\n    Q_PROPERTY(bool videoEnabled\n               READ isVideoEnabled\n               WRITE setVideoEnabled\n               DESIGNABLE false)\n\n    /// video device opened state.\n    ///\n    /// (re)setting QZBar::videoDevice should eventually cause it\n    /// to be opened or closed.  any errors while streaming/scanning\n    /// will also cause the device to be closed\n    ///\n    /// @see isVideoOpened()\n    Q_PROPERTY(bool videoOpened\n               READ isVideoOpened\n               DESIGNABLE false)\n\npublic:\n\n    /// constructs a barcode reader widget with the given @a parent\n    QZBar(QWidget *parent = NULL);\n\n    ~QZBar();\n\n    /// retrieve the currently opened video device.\n    /// @returns the current video device or the empty string if no\n    /// device is opened\n    QString videoDevice() const;\n\n    /// retrieve the current video enabled state.\n    /// @returns true if video scanning is currently enabled, false\n    /// otherwise\n    bool isVideoEnabled() const;\n\n    /// retrieve the current video opened state.\n    /// @returns true if video device is currently opened, false otherwise\n    bool isVideoOpened() const;\n\n    /// @{\n    /// @internal\n\n    QSize sizeHint() const;\n    int heightForWidth(int) const;\n    QPaintEngine *paintEngine() const;\n\n    /// @}\n\npublic Q_SLOTS:\n\n    /// open a new video device.\n    ///\n    /// use an empty string to close a currently opened device.\n    ///\n    /// @note since opening a device may take some time, this call will\n    /// return immediately and the device will be opened asynchronously\n    void setVideoDevice(const QString &videoDevice);\n\n    /// enable/disable video scanning.\n    /// has no effect unless a video device is opened\n    void setVideoEnabled(bool videoEnabled = true);\n\n    /// scan for barcodes in a QImage.\n    void scanImage(const QImage &image);\n\nQ_SIGNALS:\n    /// emitted when when a video device is opened or closed.\n    ///\n    /// (re)setting QZBar::videoDevice should eventually cause it\n    /// to be opened or closed.  any errors while streaming/scanning\n    /// will also cause the device to be closed\n    void videoOpened(bool videoOpened);\n\n    /// emitted when a barcode is decoded from an image.\n    /// the symbol type and contained data are provided as separate\n    /// parameters.\n    void decoded(int type, const QString &data);\n\n    /// emitted when a barcode is decoded from an image.\n    /// the symbol type name is prefixed to the data, separated by a\n    /// colon\n    void decodedText(const QString &text);\n\n    /// @{\n    /// @internal\n\nprotected:\n    void attach();\n    void showEvent(QShowEvent*);\n    void paintEvent(QPaintEvent*);\n    void resizeEvent(QResizeEvent*);\n    void changeEvent(QEvent*);\n    void dragEnterEvent(QDragEnterEvent*);\n    void dropEvent(QDropEvent*);\n\nprotected Q_SLOTS:\n    void sizeChange();\n\n    /// @}\n\nprivate:\n    QZBarThread *thread;\n    QString _videoDevice;\n    bool _videoEnabled;\n    bool _attached;\n};\n\n};\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/QZBarImage.h",
    "content": "//------------------------------------------------------------------------\n//  Copyright 2008-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n//\n//  This file is part of the ZBar Bar Code Reader.\n//\n//  The ZBar Bar Code Reader is free software; you can redistribute it\n//  and/or modify it under the terms of the GNU Lesser Public License as\n//  published by the Free Software Foundation; either version 2.1 of\n//  the License, or (at your option) any later version.\n//\n//  The ZBar Bar Code Reader is distributed in the hope that it will be\n//  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n//  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU Lesser Public License for more details.\n//\n//  You should have received a copy of the GNU Lesser Public License\n//  along with the ZBar Bar Code Reader; if not, write to the Free\n//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n//  Boston, MA  02110-1301  USA\n//\n//  http://sourceforge.net/projects/zbar\n//------------------------------------------------------------------------\n#ifndef _QZBARIMAGE_H_\n#define _QZBARIMAGE_H_\n\n/// @file\n/// QImage to Image type conversion wrapper\n\n#include <qimage.h>\n#include <zbar.h>\n\nnamespace zbar {\n\n/// wrap a QImage and convert into a format suitable for scanning.\n\nclass QZBarImage\n    : public Image\n{\npublic:\n\n    /// construct a zbar library image based on an existing QImage.\n\n    QZBarImage (const QImage &qimg)\n        : qimg(qimg)\n    {\n        QImage::Format fmt = qimg.format();\n        if(fmt != QImage::Format_RGB32 &&\n           fmt != QImage::Format_ARGB32 &&\n           fmt != QImage::Format_ARGB32_Premultiplied)\n            throw FormatError();\n\n        unsigned bpl = qimg.bytesPerLine();\n        unsigned width = bpl / 4;\n        unsigned height = qimg.height();\n        set_size(width, height);\n        set_format(zbar_fourcc('B','G','R','4'));\n        unsigned long datalen = qimg.numBytes();\n        set_data(qimg.bits(), datalen);\n\n        if((width * 4 != bpl) ||\n           (width * height * 4 > datalen))\n            throw FormatError();\n    }\n\nprivate:\n    QImage qimg;\n};\n\n};\n\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/Scanner.h",
    "content": "//------------------------------------------------------------------------\n//  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n//\n//  This file is part of the ZBar Bar Code Reader.\n//\n//  The ZBar Bar Code Reader is free software; you can redistribute it\n//  and/or modify it under the terms of the GNU Lesser Public License as\n//  published by the Free Software Foundation; either version 2.1 of\n//  the License, or (at your option) any later version.\n//\n//  The ZBar Bar Code Reader is distributed in the hope that it will be\n//  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n//  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU Lesser Public License for more details.\n//\n//  You should have received a copy of the GNU Lesser Public License\n//  along with the ZBar Bar Code Reader; if not, write to the Free\n//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n//  Boston, MA  02110-1301  USA\n//\n//  http://sourceforge.net/projects/zbar\n//------------------------------------------------------------------------\n#ifndef _ZBAR_SCANNER_H_\n#define _ZBAR_SCANNER_H_\n\n/// @file\n/// Scanner C++ wrapper\n\n#ifndef _ZBAR_H_\n# error \"include zbar.h in your application, **not** zbar/Scanner.h\"\n#endif\n\n#include <stdio.h>\n\nnamespace zbar {\n\n/// low-level linear intensity sample stream scanner interface.\n/// identifies \"bar\" edges and measures width between them.\n/// optionally passes to bar width Decoder\n\nclass Scanner {\n public:\n\n    /// constructor.\n    /// @param decoder reference to a Decoder instance which will\n    /// be passed scan results automatically\n    Scanner (Decoder& decoder)\n    {\n        _scanner = zbar_scanner_create(decoder._decoder);\n    }\n\n    /// constructor.\n    /// @param decoder pointer to a Decoder instance which will\n    /// be passed scan results automatically\n    Scanner (Decoder* decoder = NULL)\n    {\n        zbar_decoder_t *zdcode = NULL;\n        if(decoder)\n            zdcode = decoder->_decoder;\n        _scanner = zbar_scanner_create(zdcode);\n    }\n\n    ~Scanner ()\n    {\n        zbar_scanner_destroy(_scanner);\n    }\n\n    /// clear all scanner state.\n    /// see zbar_scanner_reset()\n    void reset ()\n    {\n        zbar_scanner_reset(_scanner);\n    }\n\n    /// mark start of a new scan pass.\n    /// see zbar_scanner_new_scan()\n    zbar_symbol_type_t new_scan ()\n    {\n        _type = zbar_scanner_new_scan(_scanner);\n        return(_type);\n    }\n\n    /// flush scanner pipeline.\n    /// see zbar_scanner_flush()\n    zbar_symbol_type_t flush ()\n    {\n        _type = zbar_scanner_flush(_scanner);\n        return(_type);\n    }\n\n    /// process next sample intensity value.\n    /// see zbar_scan_y()\n    zbar_symbol_type_t scan_y (int y)\n    {\n        _type = zbar_scan_y(_scanner, y);\n        return(_type);\n    }\n\n    /// process next sample intensity value.\n    /// see zbar_scan_y()\n    Scanner& operator<< (int y)\n    {\n        _type = zbar_scan_y(_scanner, y);\n        return(*this);\n    }\n\n    /// process next sample from RGB (or BGR) triple.\n    /// see zbar_scan_rgb24()\n    zbar_symbol_type_t scan_rgb24 (unsigned char *rgb)\n    {\n        _type = zbar_scan_rgb24(_scanner, rgb);\n        return(_type);\n    }\n\n    /// process next sample from RGB (or BGR) triple.\n    /// see zbar_scan_rgb24()\n    Scanner& operator<< (unsigned char *rgb)\n    {\n        _type = zbar_scan_rgb24(_scanner, rgb);\n        return(*this);\n    }\n\n    /// retrieve last scanned width.\n    /// see zbar_scanner_get_width()\n    unsigned get_width () const\n    {\n        return(zbar_scanner_get_width(_scanner));\n    }\n\n    /// retrieve last scanned color.\n    /// see zbar_scanner_get_color()\n    zbar_color_t get_color () const\n    {\n        return(zbar_scanner_get_color(_scanner));\n    }\n\n    /// retrieve last scan result.\n    zbar_symbol_type_t get_type () const\n    {\n        return(_type);\n    }\n\n    /// cast to C scanner\n    operator zbar_scanner_t* () const\n    {\n        return(_scanner);\n    }\n\n    /// retrieve C scanner\n    const zbar_scanner_t *get_c_scanner () const\n    {\n        return(_scanner);\n    }\n\n private:\n    zbar_scanner_t *_scanner;\n    zbar_symbol_type_t _type;\n};\n\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/Symbol.h",
    "content": "//------------------------------------------------------------------------\n//  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n//\n//  This file is part of the ZBar Bar Code Reader.\n//\n//  The ZBar Bar Code Reader is free software; you can redistribute it\n//  and/or modify it under the terms of the GNU Lesser Public License as\n//  published by the Free Software Foundation; either version 2.1 of\n//  the License, or (at your option) any later version.\n//\n//  The ZBar Bar Code Reader is distributed in the hope that it will be\n//  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n//  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU Lesser Public License for more details.\n//\n//  You should have received a copy of the GNU Lesser Public License\n//  along with the ZBar Bar Code Reader; if not, write to the Free\n//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n//  Boston, MA  02110-1301  USA\n//\n//  http://sourceforge.net/projects/zbar\n//------------------------------------------------------------------------\n#ifndef _ZBAR_SYMBOL_H_\n#define _ZBAR_SYMBOL_H_\n\n/// @file\n/// Symbol C++ wrapper\n\n#ifndef _ZBAR_H_\n# error \"include zbar.h in your application, **not** zbar/Symbol.h\"\n#endif\n\n#include <stdlib.h>\n#include <string>\n#include <ostream>\n#include <assert.h>\n\nnamespace zbar {\n\nclass SymbolIterator;\n\n/// container for decoded result symbols associated with an image\n/// or a composite symbol.\n\nclass SymbolSet {\npublic:\n    /// constructor.\n    SymbolSet (const zbar_symbol_set_t *syms = NULL)\n        : _syms(syms)\n    {\n        ref();\n    }\n\n    /// copy constructor.\n    SymbolSet (const SymbolSet& syms)\n        : _syms(syms._syms)\n    {\n        ref();\n    }\n\n    /// destructor.\n    ~SymbolSet ()\n    {\n        ref(-1);\n    }\n\n    /// assignment.\n    SymbolSet& operator= (const SymbolSet& syms)\n    {\n        syms.ref();\n        ref(-1);\n        _syms = syms._syms;\n        return(*this);\n    }\n\n    /// truth testing.\n    bool operator! () const\n    {\n        return(!_syms || !get_size());\n    }\n\n    /// manipulate reference count.\n    void ref (int delta = 1) const\n    {\n        if(_syms)\n            zbar_symbol_set_ref((zbar_symbol_set_t*)_syms, delta);\n    }\n\n    /// cast to C symbol set.\n    operator const zbar_symbol_set_t* () const\n    {\n        return(_syms);\n    }\n\n    int get_size () const\n    {\n        return((_syms) ? zbar_symbol_set_get_size(_syms) : 0);\n    }\n\n    /// create a new SymbolIterator over decoded results.\n    SymbolIterator symbol_begin() const;\n\n    /// return a SymbolIterator suitable for ending iteration.\n    const SymbolIterator symbol_end() const;\n\nprivate:\n    const zbar_symbol_set_t *_syms;\n};\n\n/// decoded barcode symbol result object.  stores type, data, and\n/// image location of decoded symbol\n\nclass Symbol {\npublic:\n\n    /// image pixel location (x, y) coordinate tuple.\n    class Point {\n    public:\n        int x;  ///< x-coordinate.\n        int y;  ///< y-coordinate.\n\n        Point () { }\n\n        Point(int x, int y)\n            : x(x), y(y)\n        { }\n\n        /// copy constructor.\n        Point (const Point& pt)\n            : x(pt.x),\n              y(pt.y)\n        { }\n\n        /// assignment.\n        Point& operator= (const Point& pt)\n        {\n            x = pt.x;\n            y = pt.y;\n            return(*this);\n        }\n    };\n\n    /// iteration over Point objects in a symbol location polygon.\n    class PointIterator\n        : public std::iterator<std::input_iterator_tag, Point> {\n\n    public:\n        /// constructor.\n        PointIterator (const Symbol *sym = NULL,\n                       int index = 0)\n            : _sym(sym),\n              _index(index)\n        {\n            if(sym)\n                sym->ref(1);\n            if(!sym ||\n               (unsigned)_index >= zbar_symbol_get_loc_size(*_sym))\n                _index = -1;\n        }\n\n        /// copy constructor.\n        PointIterator (const PointIterator& iter)\n            : _sym(iter._sym),\n              _index(iter._index)\n        {\n            if(_sym)\n                _sym->ref();\n        }\n\n        /// destructor.\n        ~PointIterator ()\n        {\n            if(_sym)\n                _sym->ref(-1);\n        }\n\n        /// assignment.\n        PointIterator& operator= (const PointIterator& iter)\n        {\n            if(iter._sym)\n                iter._sym->ref();\n            if(_sym)\n                _sym->ref(-1);\n            _sym = iter._sym;\n            _index = iter._index;\n            return(*this);\n        }\n\n        /// truth testing.\n        bool operator! () const\n        {\n            return(!_sym || _index < 0);\n        }\n\n        /// advance iterator to next Point.\n        PointIterator& operator++ ()\n        {\n            unsigned int i = ++_index;\n            if(!_sym || i >= zbar_symbol_get_loc_size(*_sym))\n                _index = -1;\n            return(*this);\n        }\n\n        /// retrieve currently referenced Point.\n        const Point operator* () const\n        {\n            assert(!!*this);\n            if(!*this)\n                return(Point());\n            return(Point(zbar_symbol_get_loc_x(*_sym, _index),\n                         zbar_symbol_get_loc_y(*_sym, _index)));\n        }\n\n        /// test if two iterators refer to the same Point in the same\n        /// Symbol.\n        bool operator== (const PointIterator& iter) const\n        {\n            return(_index == iter._index &&\n                   ((_index < 0) || _sym == iter._sym));\n        }\n\n        /// test if two iterators refer to the same Point in the same\n        /// Symbol.\n        bool operator!= (const PointIterator& iter) const\n        {\n            return(!(*this == iter));\n        }\n\n    private:\n        const Symbol *_sym;\n        int _index;\n    };\n\n    /// constructor.\n    Symbol (const zbar_symbol_t *sym = NULL)\n        : _xmlbuf(NULL),\n          _xmllen(0)\n    {\n        init(sym);\n        ref();\n    }\n\n    /// copy constructor.\n    Symbol (const Symbol& sym)\n        : _sym(sym._sym),\n          _type(sym._type),\n          _data(sym._data),\n          _xmlbuf(NULL),\n          _xmllen(0)\n    {\n        ref();\n    }\n\n    /// destructor.\n    ~Symbol () {\n        if(_xmlbuf)\n            free(_xmlbuf);\n        ref(-1);\n    }\n\n    /// assignment.\n    Symbol& operator= (const Symbol& sym)\n    {\n        sym.ref(1);\n        ref(-1);\n        _sym = sym._sym;\n        _type = sym._type;\n        _data = sym._data;\n        return(*this);\n    }\n\n    Symbol& operator= (const zbar_symbol_t *sym)\n    {\n        if(sym)\n            zbar_symbol_ref(sym, 1);\n        ref(-1);\n        init(sym);\n        return(*this);\n    }\n\n    /// truth testing.\n    bool operator! () const\n    {\n        return(!_sym);\n    }\n\n    void ref (int delta = 1) const\n    {\n        if(_sym)\n            zbar_symbol_ref((zbar_symbol_t*)_sym, delta);\n    }\n\n    /// cast to C symbol.\n    operator const zbar_symbol_t* () const\n    {\n        return(_sym);\n    }\n\n    /// test if two Symbol objects refer to the same C symbol.\n    bool operator== (const Symbol& sym) const\n    {\n        return(_sym == sym._sym);\n    }\n\n    /// test if two Symbol objects refer to the same C symbol.\n    bool operator!= (const Symbol& sym) const\n    {\n        return(!(*this == sym));\n    }\n\n    /// retrieve type of decoded symbol.\n    zbar_symbol_type_t get_type () const\n    {\n        return(_type);\n    }\n\n    /// retrieve the string name of the symbol type.\n    const std::string get_type_name () const\n    {\n        return(zbar_get_symbol_name(_type));\n    }\n\n    /// retrieve the string name for any addon.\n    /// @deprecated in 0.11\n    const std::string get_addon_name () const\n    {\n        return(zbar_get_addon_name(_type));\n    }\n\n    /// retrieve data decoded from symbol.\n    const std::string get_data () const\n    {\n        return(_data);\n    }\n\n    /// retrieve length of binary data\n    unsigned get_data_length () const\n    {\n        return((_sym) ? zbar_symbol_get_data_length(_sym) : 0);\n    }\n\n    /// retrieve inter-frame coherency count.\n    /// see zbar_symbol_get_count()\n    /// @since 0.5\n    int get_count () const\n    {\n        return((_sym) ? zbar_symbol_get_count(_sym) : -1);\n    }\n\n    /// retrieve loosely defined relative quality metric.\n    /// see zbar_symbol_get_quality()\n    /// @since 0.11\n    int get_quality () const\n    {\n        return((_sym) ? zbar_symbol_get_quality(_sym) : 0);\n    }\n\n    SymbolSet get_components () const\n    {\n        return(SymbolSet((_sym) ? zbar_symbol_get_components(_sym) : NULL));\n    }\n\n    /// create a new PointIterator at the start of the location\n    /// polygon.\n    PointIterator point_begin() const\n    {\n        return(PointIterator(this));\n    }\n\n    /// return a PointIterator suitable for ending iteration.\n    const PointIterator point_end() const\n    {\n        return(PointIterator());\n    }\n\n    /// see zbar_symbol_get_loc_size().\n    int get_location_size () const\n    {\n        return((_sym) ? zbar_symbol_get_loc_size(_sym) : 0);\n    }\n\n    /// see zbar_symbol_get_loc_x().\n    int get_location_x (unsigned index) const\n    {\n        return((_sym) ? zbar_symbol_get_loc_x(_sym, index) : -1);\n    }\n\n    /// see zbar_symbol_get_loc_y().\n    int get_location_y (unsigned index) const\n    {\n        return((_sym) ? zbar_symbol_get_loc_y(_sym, index) : -1);\n    }\n\n    /// see zbar_symbol_get_orientation().\n    /// @since 0.11\n    int get_orientation () const\n    {\n        return(zbar_symbol_get_orientation(_sym));\n    }\n\n    /// see zbar_symbol_xml().\n    const std::string xml () const\n    {\n        if(!_sym)\n            return(\"\");\n        return(zbar_symbol_xml(_sym, (char**)&_xmlbuf, (unsigned*)&_xmllen));\n    }\n\nprotected:\n    /// (re)initialize Symbol from C symbol object.\n    void init (const zbar_symbol_t *sym = NULL)\n    {\n        _sym = sym;\n        if(sym) {\n            _type = zbar_symbol_get_type(sym);\n            _data = std::string(zbar_symbol_get_data(sym),\n                                zbar_symbol_get_data_length(sym));\n        }\n        else {\n            _type = ZBAR_NONE;\n            _data = \"\";\n        }\n    }\n\nprivate:\n    const zbar_symbol_t *_sym;\n    zbar_symbol_type_t _type;\n    std::string _data;\n    char *_xmlbuf;\n    unsigned _xmllen;\n};\n\n/// iteration over Symbol result objects in a scanned Image or SymbolSet.\nclass SymbolIterator\n    : public std::iterator<std::input_iterator_tag, Symbol> {\n\npublic:\n    /// default constructor.\n    SymbolIterator ()\n    { }\n\n    /// constructor.\n    SymbolIterator (const SymbolSet &syms)\n        : _syms(syms)\n    {\n        const zbar_symbol_set_t *zsyms = _syms;\n        if(zsyms)\n            _sym = zbar_symbol_set_first_symbol(zsyms);\n    }\n\n    /// copy constructor.\n    SymbolIterator (const SymbolIterator& iter)\n        : _syms(iter._syms)\n    {\n        const zbar_symbol_set_t *zsyms = _syms;\n        if(zsyms)\n            _sym = zbar_symbol_set_first_symbol(zsyms);\n    }\n\n    ~SymbolIterator ()\n    {\n    }\n\n    /// assignment.\n    SymbolIterator& operator= (const SymbolIterator& iter)\n    {\n        _syms = iter._syms;\n        _sym = iter._sym;\n        return(*this);\n    }\n\n    bool operator! () const\n    {\n        return(!_syms || !_sym);\n    }\n\n    /// advance iterator to next Symbol.\n    SymbolIterator& operator++ ()\n    {\n        if(!!_sym)\n            _sym = zbar_symbol_next(_sym);\n        else if(!!_syms)\n            _sym = zbar_symbol_set_first_symbol(_syms);\n        return(*this);\n    }\n\n    /// retrieve currently referenced Symbol.\n    const Symbol operator* () const\n    {\n        return(_sym);\n    }\n\n    /// access currently referenced Symbol.\n    const Symbol* operator-> () const\n    {\n        return(&_sym);\n    }\n\n    /// test if two iterators refer to the same Symbol\n    bool operator== (const SymbolIterator& iter) const\n    {\n        // it is enough to test the symbols, as they belong\n        // to only one set (also simplifies invalid case)\n        return(_sym == iter._sym);\n    }\n\n    /// test if two iterators refer to the same Symbol\n    bool operator!= (const SymbolIterator& iter) const\n    {\n        return(!(*this == iter));\n    }\n\n    const SymbolIterator end () const {\n        return(SymbolIterator());\n    }\n\nprivate:\n    SymbolSet _syms;\n    Symbol _sym;\n};\n\ninline SymbolIterator SymbolSet::symbol_begin () const {\n    return(SymbolIterator(*this));\n}\n\ninline const SymbolIterator SymbolSet::symbol_end () const {\n    return(SymbolIterator());\n}\n\n/// @relates Symbol\n/// stream the string representation of a Symbol.\nstatic inline std::ostream& operator<< (std::ostream& out,\n                                        const Symbol& sym)\n{\n    out << sym.get_type_name() << \":\" << sym.get_data();\n    return(out);\n}\n\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/Video.h",
    "content": "//------------------------------------------------------------------------\n//  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n//\n//  This file is part of the ZBar Bar Code Reader.\n//\n//  The ZBar Bar Code Reader is free software; you can redistribute it\n//  and/or modify it under the terms of the GNU Lesser Public License as\n//  published by the Free Software Foundation; either version 2.1 of\n//  the License, or (at your option) any later version.\n//\n//  The ZBar Bar Code Reader is distributed in the hope that it will be\n//  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n//  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU Lesser Public License for more details.\n//\n//  You should have received a copy of the GNU Lesser Public License\n//  along with the ZBar Bar Code Reader; if not, write to the Free\n//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n//  Boston, MA  02110-1301  USA\n//\n//  http://sourceforge.net/projects/zbar\n//------------------------------------------------------------------------\n#ifndef _ZBAR_VIDEO_H_\n#define _ZBAR_VIDEO_H_\n\n/// @file\n/// Video Input C++ wrapper\n\n#ifndef _ZBAR_H_\n# error \"include zbar.h in your application, **not** zbar/Video.h\"\n#endif\n\n#include \"Image.h\"\n\nnamespace zbar {\n\n/// mid-level video source abstraction.\n/// captures images from a video device\n\nclass Video {\npublic:\n    /// constructor.\n    Video (zbar_video_t *video = NULL)\n    {\n        if(video)\n            _video = video;\n        else\n            _video = zbar_video_create();\n    }\n\n    /// constructor.\n    Video (std::string& device)\n    {\n        _video = zbar_video_create();\n        open(device);\n    }\n\n    ~Video ()\n    {\n        zbar_video_destroy(_video);\n    }\n\n    /// cast to C video object.\n    operator zbar_video_t* () const\n    {\n        return(_video);\n    }\n\n    /// open and probe a video device.\n    void open (std::string& device)\n    {\n        if(zbar_video_open(_video, device.c_str()))\n            throw_exception(_video);\n    }\n\n    /// close video device if open.\n    void close ()\n    {\n        if(zbar_video_open(_video, NULL))\n            throw_exception(_video);\n    }\n\n    /// initialize video using a specific format for debug.\n    /// see zbar_video_init()\n    void init (unsigned long fourcc)\n    {\n        if(zbar_video_init(_video, fourcc))\n            throw_exception(_video);\n    }\n\n    /// initialize video using a specific format for debug.\n    /// see zbar_video_init()\n    void init (std::string& format)\n    {\n        unsigned int fourcc = zbar_fourcc_parse(format.c_str());\n        if(zbar_video_init(_video, fourcc))\n            throw_exception(_video);\n    }\n\n    /// retrieve file descriptor associated with open *nix video device.\n    /// see zbar_video_get_fd()\n    int get_fd ()\n    {\n        return(zbar_video_get_fd(_video));\n    }\n\n    /// retrieve current output image width.\n    /// see zbar_video_get_width()\n    int get_width ()\n    {\n        return(zbar_video_get_width(_video));\n    }\n\n    /// retrieve current output image height.\n    /// see zbar_video_get_height()\n    int get_height ()\n    {\n        return(zbar_video_get_height(_video));\n    }\n\n    /// start/stop video capture.\n    /// see zbar_video_enable()\n    void enable (bool enable = true)\n    {\n        if(zbar_video_enable(_video, enable))\n            throw_exception(_video);\n    }\n\n    /// retrieve next captured image.\n    /// see zbar_video_next_image()\n    Image next_image ()\n    {\n        zbar_image_t *img = zbar_video_next_image(_video);\n        if(!img)\n            throw_exception(_video);\n        return(Image(img));\n    }\n\n    /// request a preferred size for the video image from the device.\n    /// see zbar_video_request_size()\n    /// @since 0.6\n    void request_size (int width, int height)\n    {\n        zbar_video_request_size(_video, width, height);\n    }\n\n    /// request a preferred driver interface version for debug/testing.\n    /// see zbar_video_request_interface()\n    /// @since 0.6\n    void request_interface (int version)\n    {\n        zbar_video_request_interface(_video, version);\n    }\n\n    /// request a preferred I/O mode for debug/testing.\n    /// see zbar_video_request_iomode()\n    /// @since 0.7\n    void request_iomode (int iomode)\n    {\n        if(zbar_video_request_iomode(_video, iomode))\n            throw_exception(_video);\n    }\n\nprivate:\n    zbar_video_t *_video;\n};\n\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/Window.h",
    "content": "//------------------------------------------------------------------------\n//  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n//\n//  This file is part of the ZBar Bar Code Reader.\n//\n//  The ZBar Bar Code Reader is free software; you can redistribute it\n//  and/or modify it under the terms of the GNU Lesser Public License as\n//  published by the Free Software Foundation; either version 2.1 of\n//  the License, or (at your option) any later version.\n//\n//  The ZBar Bar Code Reader is distributed in the hope that it will be\n//  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n//  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU Lesser Public License for more details.\n//\n//  You should have received a copy of the GNU Lesser Public License\n//  along with the ZBar Bar Code Reader; if not, write to the Free\n//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n//  Boston, MA  02110-1301  USA\n//\n//  http://sourceforge.net/projects/zbar\n//------------------------------------------------------------------------\n#ifndef _ZBAR_WINDOW_H_\n#define _ZBAR_WINDOW_H_\n\n/// @file\n/// Output Window C++ wrapper\n\n#ifndef _ZBAR_H_\n# error \"include zbar.h in your application, **not** zbar/Window.h\"\n#endif\n\n#include \"Image.h\"\n\nnamespace zbar {\n\n/// mid-level output window abstraction.\n/// displays images to user-specified platform specific output window\n\nclass Window {\npublic:\n    /// constructor.\n    Window (zbar_window_t *window = NULL)\n    {\n        if(window)\n            _window = window;\n        else\n            _window = zbar_window_create();\n    }\n\n    /// constructor.\n    Window (void *x11_display_w32_hwnd,\n            unsigned long x11_drawable)\n    {\n        _window = zbar_window_create();\n        attach(x11_display_w32_hwnd, x11_drawable);\n    }\n\n    ~Window ()\n    {\n        zbar_window_destroy(_window);\n    }\n\n    /// cast to C window object.\n    operator zbar_window_t* () const\n    {\n        return(_window);\n    }\n\n    /// associate reader with an existing platform window.\n    /// see zbar_window_attach()\n    void attach (void *x11_display_w32_hwnd,\n                 unsigned long x11_drawable = 0)\n    {\n        if(zbar_window_attach(_window,\n                               x11_display_w32_hwnd, x11_drawable) < 0)\n            throw_exception(_window);\n    }\n\n    /// control content level of the reader overlay.\n    /// see zbar_window_set_overlay()\n    void set_overlay (int level)\n    {\n        zbar_window_set_overlay(_window, level);\n    }\n\n    /// retrieve current content level of reader overlay.\n    /// see zbar_window_get_overlay()\n\n    /// draw a new image into the output window.\n    /// see zbar_window_draw()\n    void draw (Image& image)\n    {\n        if(zbar_window_draw(_window, image) < 0)\n            throw_exception(_window);\n    }\n\n    /// clear the image from the output window.\n    /// see zbar_window_draw()\n    void clear ()\n    {\n        if(zbar_window_draw(_window, NULL) < 0)\n            throw_exception(_window);\n    }\n\n    /// redraw the last image.\n    /// zbar_window_redraw()\n    void redraw ()\n    {\n        if(zbar_window_redraw(_window) < 0)\n            throw_exception(_window);\n    }\n\n    /// resize the image window.\n    /// zbar_window_resize()\n    void resize (unsigned width, unsigned height)\n    {\n        if(zbar_window_resize(_window, width, height) < 0)\n            throw_exception(_window);\n    }\n\nprivate:\n    zbar_window_t *_window;\n};\n\n/// select a compatible format between video input and output window.\n/// see zbar_negotiate_format()\nstatic inline void negotiate_format (Video& video, Window& window)\n{\n    if(zbar_negotiate_format(video, window) < 0)\n        throw_exception(video);\n}\n\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar/zbargtk.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef __ZBAR_GTK_H__\n#define __ZBAR_GTK_H__\n\n/** SECTION:ZBarGtk\n * @short_description: barcode reader GTK+ 2.x widget\n * @include: zbar/zbargtk.h\n *\n * embeds a barcode reader directly into a GTK+ based GUI.  the widget\n * can process barcodes from a video source (using the\n * #ZBarGtk:video-device and #ZBarGtk:video-enabled properties) or\n * from individual GdkPixbufs supplied to zbar_gtk_scan_image()\n *\n * Since: 1.5\n */\n\n#include <glib.h>\n#include <glib-object.h>\n#include <gtk/gtktable.h>\n\n#include <zbar.h>\n\nG_BEGIN_DECLS\n\n#define ZBAR_TYPE_GTK (zbar_gtk_get_type())\n#define ZBAR_GTK(obj) \\\n    (G_TYPE_CHECK_INSTANCE_CAST((obj), ZBAR_TYPE_GTK, ZBarGtk))\n#define ZBAR_GTK_CLASS(klass) \\\n    (G_TYPE_CHECK_CLASS_CAST((klass), ZBAR_TYPE_GTK, ZBarGtkClass))\n#define ZBAR_IS_GTK(obj) \\\n    (G_TYPE_CHECK_INSTANCE_TYPE((obj), ZBAR_TYPE_GTK))\n#define ZBAR_IS_GTK_CLASS(klass) \\\n    (G_TYPE_CHECK_CLASS_TYPE((klass), ZBAR_TYPE_GTK))\n#define ZBAR_GTK_GET_CLASS(obj) \\\n    (G_TYPE_INSTANCE_GET_CLASS((obj), ZBAR_TYPE_GTK, ZBarGtkClass))\n\ntypedef struct _ZBarGtk ZBarGtk;\ntypedef struct _ZBarGtkClass ZBarGtkClass;\n\nstruct _ZBarGtk {\n    GtkWidget widget;\n    gpointer *_private;\n\n    /* properties */\n\n    /**\n     * ZBarGtk:video-device:\n     *\n     * the currently set video device.\n     *\n     * setting a new device opens it and automatically sets\n     * #ZBarGtk:video-enabled.  set the empty string (\"\") or NULL to\n     * close.\n     */\n\n    /**\n     * ZBarGtk:video-enabled:\n     *\n     * video device streaming state.\n     *\n     * use to pause/resume video scanning.\n     */\n\n    /**\n     * ZBarGtk:video-opened:\n     *\n     * video device opened state.\n     *\n     * (re)setting #ZBarGtk:video-device should eventually cause it\n     * to be opened or closed.  any errors while streaming/scanning\n     * will also cause the device to be closed\n     */\n};\n\nstruct _ZBarGtkClass {\n    GtkWidgetClass parent_class;\n\n    /* signals */\n\n    /**\n     * ZBarGtk::decoded:\n     * @widget: the object that received the signal\n     * @symbol_type: the type of symbol decoded (a zbar_symbol_type_t)\n     * @data: the data decoded from the symbol\n     * \n     * emitted when a barcode is decoded from an image.\n     * the symbol type and contained data are provided as separate\n     * parameters\n     */\n    void (*decoded) (ZBarGtk *zbar,\n                     zbar_symbol_type_t symbol_type,\n                     const char *data);\n\n    /**\n     * ZBarGtk::decoded-text:\n     * @widget: the object that received the signal\n     * @text: the decoded data prefixed by the string name of the\n     *   symbol type (separated by a colon)\n     *\n     * emitted when a barcode is decoded from an image.\n     * the symbol type name is prefixed to the data, separated by a\n     * colon\n     */\n    void (*decoded_text) (ZBarGtk *zbar,\n                          const char *text);\n\n    /**\n     * ZBarGtk::scan-image:\n     * @widget: the object that received the signal\n     * @image: the image to scan for barcodes\n     */\n    void (*scan_image) (ZBarGtk *zbar,\n                        GdkPixbuf *image);\n};\n\nGType zbar_gtk_get_type(void) G_GNUC_CONST;\n\n/**\n * zbar_gtk_new:\n * create a new barcode reader widget instance.\n * initially has no associated video device or image.\n *\n * Returns: a new #ZBarGtk widget instance\n */\nGtkWidget *zbar_gtk_new(void);\n\n/**\n * zbar_gtk_scan_image:\n * \n */\nvoid zbar_gtk_scan_image(ZBarGtk *zbar,\n                         GdkPixbuf *image);\n\n/** retrieve the currently opened video device.\n *\n * Returns: the current video device or NULL if no device is opened\n */\nconst char *zbar_gtk_get_video_device(ZBarGtk *zbar);\n\n/** open a new video device.\n *\n * @video_device: the platform specific name of the device to open.\n *   use NULL to close a currently opened device.\n *\n * @note since opening a device may take some time, this call will\n * return immediately and the device will be opened asynchronously\n */\nvoid zbar_gtk_set_video_device(ZBarGtk *zbar,\n                               const char *video_device);\n\n/** retrieve the current video enabled state.\n *\n * Returns: true if video scanning is currently enabled, false otherwise\n */\ngboolean zbar_gtk_get_video_enabled(ZBarGtk *zbar);\n\n/** enable/disable video scanning.\n * @video_enabled: true to enable video scanning, false to disable\n *\n * has no effect unless a video device is opened\n */\nvoid zbar_gtk_set_video_enabled(ZBarGtk *zbar,\n                                gboolean video_enabled);\n\n/** retrieve the current video opened state.\n *\n * Returns: true if video device is currently opened, false otherwise\n */\ngboolean zbar_gtk_get_video_opened(ZBarGtk *zbar);\n\n/** set video camera resolution.\n * @width: width in pixels\n * @height: height in pixels\n *\n * @note this call must be made before video is initialized\n */\nvoid zbar_gtk_request_video_size(ZBarGtk *zbar,\n                                 int width,\n                                 int height);\n\n/**\n * utility function to populate a zbar_image_t from a GdkPixbuf.\n * @image: the zbar library image destination to populate\n * @pixbuf: the GdkPixbuf source\n *\n * Returns: TRUE if successful or FALSE if the conversion could not be\n * performed for some reason\n */\ngboolean zbar_gtk_image_from_pixbuf(zbar_image_t *image,\n                                    GdkPixbuf *pixbuf);\n\nG_END_DECLS\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/include/zbar.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _ZBAR_H_\n#define _ZBAR_H_\n\n/** @file\n * ZBar Barcode Reader C API definition\n */\n\n/** @mainpage\n *\n * interface to the barcode reader is available at several levels.\n * most applications will want to use the high-level interfaces:\n *\n * @section high-level High-Level Interfaces\n *\n * these interfaces wrap all library functionality into an easy-to-use\n * package for a specific toolkit:\n * - the \"GTK+ 2.x widget\" may be used with GTK GUI applications.  a\n *   Python wrapper is included for PyGtk\n * - the @ref zbar::QZBar \"Qt4 widget\" may be used with Qt GUI\n *   applications\n * - the Processor interface (in @ref c-processor \"C\" or @ref\n *   zbar::Processor \"C++\") adds a scanning window to an application\n *   with no GUI.\n *\n * @section mid-level Intermediate Interfaces\n *\n * building blocks used to construct high-level interfaces:\n * - the ImageScanner (in @ref c-imagescanner \"C\" or @ref\n *   zbar::ImageScanner \"C++\") looks for barcodes in a library defined\n *   image object\n * - the Window abstraction (in @ref c-window \"C\" or @ref\n *   zbar::Window \"C++\") sinks library images, displaying them on the\n *   platform display\n * - the Video abstraction (in @ref c-video \"C\" or @ref zbar::Video\n *   \"C++\") sources library images from a video device\n *\n * @section low-level Low-Level Interfaces\n *\n * direct interaction with barcode scanning and decoding:\n * - the Scanner (in @ref c-scanner \"C\" or @ref zbar::Scanner \"C++\")\n *   looks for barcodes in a linear intensity sample stream\n * - the Decoder (in @ref c-decoder \"C\" or @ref zbar::Decoder \"C++\")\n *   extracts barcodes from a stream of bar and space widths\n */\n\n#ifdef __cplusplus\n\n/** C++ namespace for library interfaces */\nnamespace zbar {\n    extern \"C\" {\n#endif\n\n\n/** @name Global library interfaces */\n/*@{*/\n\n/** \"color\" of element: bar or space. */\ntypedef enum zbar_color_e {\n    ZBAR_SPACE = 0,    /**< light area or space between bars */\n    ZBAR_BAR = 1,      /**< dark area or colored bar segment */\n} zbar_color_t;\n\n/** decoded symbol type. */\ntypedef enum zbar_symbol_type_e {\n    ZBAR_NONE        =      0,  /**< no symbol decoded */\n    ZBAR_PARTIAL     =      1,  /**< intermediate status */\n    ZBAR_EAN2        =      2,  /**< GS1 2-digit add-on */\n    ZBAR_EAN5        =      5,  /**< GS1 5-digit add-on */\n    ZBAR_EAN8        =      8,  /**< EAN-8 */\n    ZBAR_UPCE        =      9,  /**< UPC-E */\n    ZBAR_ISBN10      =     10,  /**< ISBN-10 (from EAN-13). @since 0.4 */\n    ZBAR_UPCA        =     12,  /**< UPC-A */\n    ZBAR_EAN13       =     13,  /**< EAN-13 */\n    ZBAR_ISBN13      =     14,  /**< ISBN-13 (from EAN-13). @since 0.4 */\n    ZBAR_COMPOSITE   =     15,  /**< EAN/UPC composite */\n    ZBAR_I25         =     25,  /**< Interleaved 2 of 5. @since 0.4 */\n    ZBAR_DATABAR     =     34,  /**< GS1 DataBar (RSS). @since 0.11 */\n    ZBAR_DATABAR_EXP =     35,  /**< GS1 DataBar Expanded. @since 0.11 */\n    ZBAR_CODABAR     =     38,  /**< Codabar. @since 0.11 */\n    ZBAR_CODE39      =     39,  /**< Code 39. @since 0.4 */\n    ZBAR_PDF417      =     57,  /**< PDF417. @since 0.6 */\n    ZBAR_QRCODE      =     64,  /**< QR Code. @since 0.10 */\n    ZBAR_CODE93      =     93,  /**< Code 93. @since 0.11 */\n    ZBAR_CODE128     =    128,  /**< Code 128 */\n\n    /** mask for base symbol type.\n     * @deprecated in 0.11, remove this from existing code\n     */\n    ZBAR_SYMBOL      = 0x00ff,\n    /** 2-digit add-on flag.\n     * @deprecated in 0.11, a ::ZBAR_EAN2 component is used for\n     * 2-digit GS1 add-ons\n     */\n    ZBAR_ADDON2      = 0x0200,\n    /** 5-digit add-on flag.\n     * @deprecated in 0.11, a ::ZBAR_EAN5 component is used for\n     * 5-digit GS1 add-ons\n     */\n    ZBAR_ADDON5      = 0x0500,\n    /** add-on flag mask.\n     * @deprecated in 0.11, GS1 add-ons are represented using composite\n     * symbols of type ::ZBAR_COMPOSITE; add-on components use ::ZBAR_EAN2\n     * or ::ZBAR_EAN5\n     */\n    ZBAR_ADDON       = 0x0700,\n} zbar_symbol_type_t;\n\n/** decoded symbol coarse orientation.\n * @since 0.11\n */\ntypedef enum zbar_orientation_e {\n    ZBAR_ORIENT_UNKNOWN = -1,   /**< unable to determine orientation */\n    ZBAR_ORIENT_UP,             /**< upright, read left to right */\n    ZBAR_ORIENT_RIGHT,          /**< sideways, read top to bottom */\n    ZBAR_ORIENT_DOWN,           /**< upside-down, read right to left */\n    ZBAR_ORIENT_LEFT,           /**< sideways, read bottom to top */\n} zbar_orientation_t;\n\n/** error codes. */\ntypedef enum zbar_error_e {\n    ZBAR_OK = 0,                /**< no error */\n    ZBAR_ERR_NOMEM,             /**< out of memory */\n    ZBAR_ERR_INTERNAL,          /**< internal library error */\n    ZBAR_ERR_UNSUPPORTED,       /**< unsupported request */\n    ZBAR_ERR_INVALID,           /**< invalid request */\n    ZBAR_ERR_SYSTEM,            /**< system error */\n    ZBAR_ERR_LOCKING,           /**< locking error */\n    ZBAR_ERR_BUSY,              /**< all resources busy */\n    ZBAR_ERR_XDISPLAY,          /**< X11 display error */\n    ZBAR_ERR_XPROTO,            /**< X11 protocol error */\n    ZBAR_ERR_CLOSED,            /**< output window is closed */\n    ZBAR_ERR_WINAPI,            /**< windows system error */\n    ZBAR_ERR_NUM                /**< number of error codes */\n} zbar_error_t;\n\n/** decoder configuration options.\n * @since 0.4\n */\ntypedef enum zbar_config_e {\n    ZBAR_CFG_ENABLE = 0,        /**< enable symbology/feature */\n    ZBAR_CFG_ADD_CHECK,         /**< enable check digit when optional */\n    ZBAR_CFG_EMIT_CHECK,        /**< return check digit when present */\n    ZBAR_CFG_ASCII,             /**< enable full ASCII character set */\n    ZBAR_CFG_NUM,               /**< number of boolean decoder configs */\n\n    ZBAR_CFG_MIN_LEN = 0x20,    /**< minimum data length for valid decode */\n    ZBAR_CFG_MAX_LEN,           /**< maximum data length for valid decode */\n\n    ZBAR_CFG_UNCERTAINTY = 0x40,/**< required video consistency frames */\n\n    ZBAR_CFG_POSITION = 0x80,   /**< enable scanner to collect position data */\n\n    ZBAR_CFG_X_DENSITY = 0x100, /**< image scanner vertical scan density */\n    ZBAR_CFG_Y_DENSITY,         /**< image scanner horizontal scan density */\n} zbar_config_t;\n\n/** decoder symbology modifier flags.\n * @since 0.11\n */\ntypedef enum zbar_modifier_e {\n    /** barcode tagged as GS1 (EAN.UCC) reserved\n     * (eg, FNC1 before first data character).\n     * data may be parsed as a sequence of GS1 AIs\n     */\n    ZBAR_MOD_GS1 = 0,\n\n    /** barcode tagged as AIM reserved\n     * (eg, FNC1 after first character or digit pair)\n     */\n    ZBAR_MOD_AIM,\n\n    /** number of modifiers */\n    ZBAR_MOD_NUM,\n} zbar_modifier_t;\n\n/** retrieve runtime library version information.\n * @param major set to the running major version (unless NULL)\n * @param minor set to the running minor version (unless NULL)\n * @returns 0\n */\nextern int zbar_version(unsigned *major,\n                        unsigned *minor);\n\n/** set global library debug level.\n * @param verbosity desired debug level.  higher values create more spew\n */\nextern void zbar_set_verbosity(int verbosity);\n\n/** increase global library debug level.\n * eg, for -vvvv\n */\nextern void zbar_increase_verbosity(void);\n\n/** retrieve string name for symbol encoding.\n * @param sym symbol type encoding\n * @returns the static string name for the specified symbol type,\n * or \"UNKNOWN\" if the encoding is not recognized\n */\nextern const char *zbar_get_symbol_name(zbar_symbol_type_t sym);\n\n/** retrieve string name for addon encoding.\n * @param sym symbol type encoding\n * @returns static string name for any addon, or the empty string\n * if no addons were decoded\n * @deprecated in 0.11\n */\nextern const char *zbar_get_addon_name(zbar_symbol_type_t sym);\n\n/** retrieve string name for configuration setting.\n * @param config setting to name\n * @returns static string name for config,\n * or the empty string if value is not a known config\n */\nextern const char *zbar_get_config_name(zbar_config_t config);\n\n/** retrieve string name for modifier.\n * @param modifier flag to name\n * @returns static string name for modifier,\n * or the empty string if the value is not a known flag\n */\nextern const char *zbar_get_modifier_name(zbar_modifier_t modifier);\n\n/** retrieve string name for orientation.\n * @param orientation orientation encoding\n * @returns the static string name for the specified orientation,\n * or \"UNKNOWN\" if the orientation is not recognized\n * @since 0.11\n */\nextern const char *zbar_get_orientation_name(zbar_orientation_t orientation);\n\n/** parse a configuration string of the form \"[symbology.]config[=value]\".\n * the config must match one of the recognized names.\n * the symbology, if present, must match one of the recognized names.\n * if symbology is unspecified, it will be set to 0.\n * if value is unspecified it will be set to 1.\n * @returns 0 if the config is parsed successfully, 1 otherwise\n * @since 0.4\n */\nextern int zbar_parse_config(const char *config_string,\n                             zbar_symbol_type_t *symbology,\n                             zbar_config_t *config,\n                             int *value);\n\n/** consistently compute fourcc values across architectures\n * (adapted from v4l2 specification)\n * @since 0.11\n */\n#define zbar_fourcc(a, b, c, d)                 \\\n        ((unsigned long)(a) |                   \\\n         ((unsigned long)(b) << 8) |            \\\n         ((unsigned long)(c) << 16) |           \\\n         ((unsigned long)(d) << 24))\n\n/** parse a fourcc string into its encoded integer value.\n * @since 0.11\n */\nstatic inline unsigned long zbar_fourcc_parse (const char *format)\n{\n    unsigned long fourcc = 0;\n    if(format) {\n        int i;\n        for(i = 0; i < 4 && format[i]; i++)\n            fourcc |= ((unsigned long)format[i]) << (i * 8);\n    }\n    return(fourcc);\n}\n\n/** @internal type unsafe error API (don't use) */\nextern int _zbar_error_spew(const void *object,\n                            int verbosity);\nextern const char *_zbar_error_string(const void *object,\n                                      int verbosity);\nextern zbar_error_t _zbar_get_error_code(const void *object);\n\n/*@}*/\n\nstruct zbar_symbol_s;\ntypedef struct zbar_symbol_s zbar_symbol_t;\n\nstruct zbar_symbol_set_s;\ntypedef struct zbar_symbol_set_s zbar_symbol_set_t;\n\n\n/*------------------------------------------------------------*/\n/** @name Symbol interface\n * decoded barcode symbol result object.  stores type, data, and image\n * location of decoded symbol.  all memory is owned by the library\n */\n/*@{*/\n\n/** @typedef zbar_symbol_t\n * opaque decoded symbol object.\n */\n\n/** symbol reference count manipulation.\n * increment the reference count when you store a new reference to the\n * symbol.  decrement when the reference is no longer used.  do not\n * refer to the symbol once the count is decremented and the\n * containing image has been recycled or destroyed.\n * @note the containing image holds a reference to the symbol, so you\n * only need to use this if you keep a symbol after the image has been\n * destroyed or reused.\n * @since 0.9\n */\nextern void zbar_symbol_ref(const zbar_symbol_t *symbol,\n                            int refs);\n\n/** retrieve type of decoded symbol.\n * @returns the symbol type\n */\nextern zbar_symbol_type_t zbar_symbol_get_type(const zbar_symbol_t *symbol);\n\n/** retrieve symbology boolean config settings.\n * @returns a bitmask indicating which configs were set for the detected\n * symbology during decoding.\n * @since 0.11\n */\nextern unsigned int zbar_symbol_get_configs(const zbar_symbol_t *symbol);\n\n/** retrieve symbology modifier flag settings.\n * @returns a bitmask indicating which characteristics were detected\n * during decoding.\n * @since 0.11\n */\nextern unsigned int zbar_symbol_get_modifiers(const zbar_symbol_t *symbol);\n\n/** retrieve data decoded from symbol.\n * @returns the data string\n */\nextern const char *zbar_symbol_get_data(const zbar_symbol_t *symbol);\n\n/** retrieve length of binary data.\n * @returns the length of the decoded data\n */\nextern unsigned int zbar_symbol_get_data_length(const zbar_symbol_t *symbol);\n\n/** retrieve a symbol confidence metric.\n * @returns an unscaled, relative quantity: larger values are better\n * than smaller values, where \"large\" and \"small\" are application\n * dependent.\n * @note expect the exact definition of this quantity to change as the\n * metric is refined.  currently, only the ordered relationship\n * between two values is defined and will remain stable in the future\n * @since 0.9\n */\nextern int zbar_symbol_get_quality(const zbar_symbol_t *symbol);\n\n/** retrieve current cache count.  when the cache is enabled for the\n * image_scanner this provides inter-frame reliability and redundancy\n * information for video streams.\n * @returns < 0 if symbol is still uncertain.\n * @returns 0 if symbol is newly verified.\n * @returns > 0 for duplicate symbols\n */\nextern int zbar_symbol_get_count(const zbar_symbol_t *symbol);\n\n/** retrieve the number of points in the location polygon.  the\n * location polygon defines the image area that the symbol was\n * extracted from.\n * @returns the number of points in the location polygon\n * @note this is currently not a polygon, but the scan locations\n * where the symbol was decoded\n */\nextern unsigned zbar_symbol_get_loc_size(const zbar_symbol_t *symbol);\n\n/** retrieve location polygon x-coordinates.\n * points are specified by 0-based index.\n * @returns the x-coordinate for a point in the location polygon.\n * @returns -1 if index is out of range\n */\nextern int zbar_symbol_get_loc_x(const zbar_symbol_t *symbol,\n                                 unsigned index);\n\n/** retrieve location polygon y-coordinates.\n * points are specified by 0-based index.\n * @returns the y-coordinate for a point in the location polygon.\n * @returns -1 if index is out of range\n */\nextern int zbar_symbol_get_loc_y(const zbar_symbol_t *symbol,\n                                 unsigned index);\n\n/** retrieve general orientation of decoded symbol.\n * @returns a coarse, axis-aligned indication of symbol orientation or\n * ::ZBAR_ORIENT_UNKNOWN if unknown\n * @since 0.11\n */\nextern zbar_orientation_t\nzbar_symbol_get_orientation(const zbar_symbol_t *symbol);\n\n/** iterate the set to which this symbol belongs (there can be only one).\n * @returns the next symbol in the set, or\n * @returns NULL when no more results are available\n */\nextern const zbar_symbol_t *zbar_symbol_next(const zbar_symbol_t *symbol);\n\n/** retrieve components of a composite result.\n * @returns the symbol set containing the components\n * @returns NULL if the symbol is already a physical symbol\n * @since 0.10\n */\nextern const zbar_symbol_set_t*\nzbar_symbol_get_components(const zbar_symbol_t *symbol);\n\n/** iterate components of a composite result.\n * @returns the first physical component symbol of a composite result\n * @returns NULL if the symbol is already a physical symbol\n * @since 0.10\n */\nextern const zbar_symbol_t*\nzbar_symbol_first_component(const zbar_symbol_t *symbol);\n\n/** print XML symbol element representation to user result buffer.\n * @see http://zbar.sourceforge.net/2008/barcode.xsd for the schema.\n * @param symbol is the symbol to print\n * @param buffer is the inout result pointer, it will be reallocated\n * with a larger size if necessary.\n * @param buflen is inout length of the result buffer.\n * @returns the buffer pointer\n * @since 0.6\n */\nextern char *zbar_symbol_xml(const zbar_symbol_t *symbol,\n                             char **buffer,\n                             unsigned *buflen);\n\n/*@}*/\n\n/*------------------------------------------------------------*/\n/** @name Symbol Set interface\n * container for decoded result symbols associated with an image\n * or a composite symbol.\n * @since 0.10\n */\n/*@{*/\n\n/** @typedef zbar_symbol_set_t\n * opaque symbol iterator object.\n * @since 0.10\n */\n\n/** reference count manipulation.\n * increment the reference count when you store a new reference.\n * decrement when the reference is no longer used.  do not refer to\n * the object any longer once references have been released.\n * @since 0.10\n */\nextern void zbar_symbol_set_ref(const zbar_symbol_set_t *symbols,\n                                int refs);\n\n/** retrieve set size.\n * @returns the number of symbols in the set.\n * @since 0.10\n */\nextern int zbar_symbol_set_get_size(const zbar_symbol_set_t *symbols);\n\n/** set iterator.\n * @returns the first decoded symbol result in a set\n * @returns NULL if the set is empty\n * @since 0.10\n */\nextern const zbar_symbol_t*\nzbar_symbol_set_first_symbol(const zbar_symbol_set_t *symbols);\n\n/** raw result iterator.\n * @returns the first decoded symbol result in a set, *before* filtering\n * @returns NULL if the set is empty\n * @since 0.11\n */\nextern const zbar_symbol_t*\nzbar_symbol_set_first_unfiltered(const zbar_symbol_set_t *symbols);\n\n/*@}*/\n\n/*------------------------------------------------------------*/\n/** @name Image interface\n * stores image data samples along with associated format and size\n * metadata\n */\n/*@{*/\n\nstruct zbar_image_s;\n/** opaque image object. */\ntypedef struct zbar_image_s zbar_image_t;\n\n/** cleanup handler callback function.\n * called to free sample data when an image is destroyed.\n */\ntypedef void (zbar_image_cleanup_handler_t)(zbar_image_t *image);\n\n/** data handler callback function.\n * called when decoded symbol results are available for an image\n */\ntypedef void (zbar_image_data_handler_t)(zbar_image_t *image,\n                                         const void *userdata);\n\n/** new image constructor.\n * @returns a new image object with uninitialized data and format.\n * this image should be destroyed (using zbar_image_destroy()) as\n * soon as the application is finished with it\n */\nextern zbar_image_t *zbar_image_create(void);\n\n/** image destructor.  all images created by or returned to the\n * application should be destroyed using this function.  when an image\n * is destroyed, the associated data cleanup handler will be invoked\n * if available\n * @note make no assumptions about the image or the data buffer.\n * they may not be destroyed/cleaned immediately if the library\n * is still using them.  if necessary, use the cleanup handler hook\n * to keep track of image data buffers\n */\nextern void zbar_image_destroy(zbar_image_t *image);\n\n/** image reference count manipulation.\n * increment the reference count when you store a new reference to the\n * image.  decrement when the reference is no longer used.  do not\n * refer to the image any longer once the count is decremented.\n * zbar_image_ref(image, -1) is the same as zbar_image_destroy(image)\n * @since 0.5\n */\nextern void zbar_image_ref(zbar_image_t *image,\n                           int refs);\n\n/** image format conversion.  refer to the documentation for supported\n * image formats\n * @returns a @em new image with the sample data from the original image\n * converted to the requested format.  the original image is\n * unaffected.\n * @note the converted image size may be rounded (up) due to format\n * constraints\n */\nextern zbar_image_t *zbar_image_convert(const zbar_image_t *image,\n                                        unsigned long format);\n\n/** image format conversion with crop/pad.\n * if the requested size is larger than the image, the last row/column\n * are duplicated to cover the difference.  if the requested size is\n * smaller than the image, the extra rows/columns are dropped from the\n * right/bottom.\n * @returns a @em new image with the sample data from the original\n * image converted to the requested format and size.\n * @note the image is @em not scaled\n * @see zbar_image_convert()\n * @since 0.4\n */\nextern zbar_image_t *zbar_image_convert_resize(const zbar_image_t *image,\n                                               unsigned long format,\n                                               unsigned width,\n                                               unsigned height);\n\n/** retrieve the image format.\n * @returns the fourcc describing the format of the image sample data\n */\nextern unsigned long zbar_image_get_format(const zbar_image_t *image);\n\n/** retrieve a \"sequence\" (page/frame) number associated with this image.\n * @since 0.6\n */\nextern unsigned zbar_image_get_sequence(const zbar_image_t *image);\n\n/** retrieve the width of the image.\n * @returns the width in sample columns\n */\nextern unsigned zbar_image_get_width(const zbar_image_t *image);\n\n/** retrieve the height of the image.\n * @returns the height in sample rows\n */\nextern unsigned zbar_image_get_height(const zbar_image_t *image);\n\n/** retrieve both dimensions of the image.\n * fills in the width and height in samples\n */\nextern void zbar_image_get_size(const zbar_image_t *image,\n                                unsigned *width,\n                                unsigned *height);\n\n/** retrieve the crop rectangle.\n * fills in the image coordinates of the upper left corner and size\n * of an axis-aligned rectangular area of the image that will be scanned.\n * defaults to the full image\n * @since 0.11\n */\nextern void zbar_image_get_crop(const zbar_image_t *image,\n                                unsigned *x,\n                                unsigned *y,\n                                unsigned *width,\n                                unsigned *height);\n\n/** return the image sample data.  the returned data buffer is only\n * valid until zbar_image_destroy() is called\n */\nextern const void *zbar_image_get_data(const zbar_image_t *image);\n\n/** return the size of image data.\n * @since 0.6\n */\nextern unsigned long zbar_image_get_data_length(const zbar_image_t *img);\n\n/** retrieve the decoded results.\n * @returns the (possibly empty) set of decoded symbols\n * @returns NULL if the image has not been scanned\n * @since 0.10\n */\nextern const zbar_symbol_set_t*\nzbar_image_get_symbols(const zbar_image_t *image);\n\n/** associate the specified symbol set with the image, replacing any\n * existing results.  use NULL to release the current results from the\n * image.\n * @see zbar_image_scanner_recycle_image()\n * @since 0.10\n */\nextern void zbar_image_set_symbols(zbar_image_t *image,\n                                   const zbar_symbol_set_t *symbols);\n\n/** image_scanner decode result iterator.\n * @returns the first decoded symbol result for an image\n * or NULL if no results are available\n */\nextern const zbar_symbol_t*\nzbar_image_first_symbol(const zbar_image_t *image);\n\n/** specify the fourcc image format code for image sample data.\n * refer to the documentation for supported formats.\n * @note this does not convert the data!\n * (see zbar_image_convert() for that)\n */\nextern void zbar_image_set_format(zbar_image_t *image,\n                                  unsigned long format);\n\n/** associate a \"sequence\" (page/frame) number with this image.\n * @since 0.6\n */\nextern void zbar_image_set_sequence(zbar_image_t *image,\n                                    unsigned sequence_num);\n\n/** specify the pixel size of the image.\n * @note this also resets the crop rectangle to the full image\n * (0, 0, width, height)\n * @note this does not affect the data!\n */\nextern void zbar_image_set_size(zbar_image_t *image,\n                                unsigned width,\n                                unsigned height);\n\n/** specify a rectangular region of the image to scan.\n * the rectangle will be clipped to the image boundaries.\n * defaults to the full image specified by zbar_image_set_size()\n */\nextern void zbar_image_set_crop(zbar_image_t *image,\n                                unsigned x,\n                                unsigned y,\n                                unsigned width,\n                                unsigned height);\n\n/** specify image sample data.  when image data is no longer needed by\n * the library the specific data cleanup handler will be called\n * (unless NULL)\n * @note application image data will not be modified by the library\n */\nextern void zbar_image_set_data(zbar_image_t *image,\n                                const void *data,\n                                unsigned long data_byte_length,\n                                zbar_image_cleanup_handler_t *cleanup_hndlr);\n\n/** built-in cleanup handler.\n * passes the image data buffer to free()\n */\nextern void zbar_image_free_data(zbar_image_t *image);\n\n/** associate user specified data value with an image.\n * @since 0.5\n */\nextern void zbar_image_set_userdata(zbar_image_t *image,\n                                    void *userdata);\n\n/** return user specified data value associated with the image.\n * @since 0.5\n */\nextern void *zbar_image_get_userdata(const zbar_image_t *image);\n\n/** dump raw image data to a file for debug.\n * the data will be prefixed with a 16 byte header consisting of:\n *   - 4 bytes uint = 0x676d697a (\"zimg\")\n *   - 4 bytes format fourcc\n *   - 2 bytes width\n *   - 2 bytes height\n *   - 4 bytes size of following image data in bytes\n * this header can be dumped w/eg:\n * @verbatim\n       od -Ax -tx1z -N16 -w4 [file]\n@endverbatim\n * for some formats the image can be displayed/converted using\n * ImageMagick, eg:\n * @verbatim\n       display -size 640x480+16 [-depth ?] [-sampling-factor ?x?] \\\n           {GRAY,RGB,UYVY,YUV}:[file]\n@endverbatim\n *\n * @param image the image object to dump\n * @param filebase base filename, appended with \".XXXX.zimg\" where\n * XXXX is the format fourcc\n * @returns 0 on success or a system error code on failure\n */\nextern int zbar_image_write(const zbar_image_t *image,\n                            const char *filebase);\n\n/** read back an image in the format written by zbar_image_write()\n * @note TBD\n */\nextern zbar_image_t *zbar_image_read(char *filename);\n\n/*@}*/\n\n/*------------------------------------------------------------*/\n/** @name Processor interface\n * @anchor c-processor\n * high-level self-contained image processor.\n * processes video and images for barcodes, optionally displaying\n * images to a library owned output window\n */\n/*@{*/\n\nstruct zbar_processor_s;\n/** opaque standalone processor object. */\ntypedef struct zbar_processor_s zbar_processor_t;\n\n/** constructor.\n * if threaded is set and threading is available the processor\n * will spawn threads where appropriate to avoid blocking and\n * improve responsiveness\n */\nextern zbar_processor_t *zbar_processor_create(int threaded);\n\n/** destructor.  cleans up all resources associated with the processor\n */\nextern void zbar_processor_destroy(zbar_processor_t *processor);\n\n/** (re)initialization.\n * opens a video input device and/or prepares to display output\n */\nextern int zbar_processor_init(zbar_processor_t *processor,\n                               const char *video_device,\n                               int enable_display);\n\n/** request a preferred size for the video image from the device.\n * the request may be adjusted or completely ignored by the driver.\n * @note must be called before zbar_processor_init()\n * @since 0.6\n */\nextern int zbar_processor_request_size(zbar_processor_t *processor,\n                                       unsigned width,\n                                       unsigned height);\n\n/** request a preferred video driver interface version for\n * debug/testing.\n * @note must be called before zbar_processor_init()\n * @since 0.6\n */\nextern int zbar_processor_request_interface(zbar_processor_t *processor,\n                                            int version);\n\n/** request a preferred video I/O mode for debug/testing.  You will\n * get errors if the driver does not support the specified mode.\n * @verbatim\n    0 = auto-detect\n    1 = force I/O using read()\n    2 = force memory mapped I/O using mmap()\n    3 = force USERPTR I/O (v4l2 only)\n@endverbatim\n * @note must be called before zbar_processor_init()\n * @since 0.7\n */\nextern int zbar_processor_request_iomode(zbar_processor_t *video,\n                                         int iomode);\n\n/** force specific input and output formats for debug/testing.\n * @note must be called before zbar_processor_init()\n */\nextern int zbar_processor_force_format(zbar_processor_t *processor,\n                                       unsigned long input_format,\n                                       unsigned long output_format);\n\n/** setup result handler callback.\n * the specified function will be called by the processor whenever\n * new results are available from the video stream or a static image.\n * pass a NULL value to disable callbacks.\n * @param processor the object on which to set the handler.\n * @param handler the function to call when new results are available.\n * @param userdata is set as with zbar_processor_set_userdata().\n * @returns the previously registered handler\n */\nextern zbar_image_data_handler_t*\nzbar_processor_set_data_handler(zbar_processor_t *processor,\n                                zbar_image_data_handler_t *handler,\n                                const void *userdata);\n\n/** associate user specified data value with the processor.\n * @since 0.6\n */\nextern void zbar_processor_set_userdata(zbar_processor_t *processor,\n                                        void *userdata);\n\n/** return user specified data value associated with the processor.\n * @since 0.6\n */\nextern void *zbar_processor_get_userdata(const zbar_processor_t *processor);\n\n/** set config for indicated symbology (0 for all) to specified value.\n * @returns 0 for success, non-0 for failure (config does not apply to\n * specified symbology, or value out of range)\n * @see zbar_decoder_set_config()\n * @since 0.4\n */\nextern int zbar_processor_set_config(zbar_processor_t *processor,\n                                     zbar_symbol_type_t symbology,\n                                     zbar_config_t config,\n                                     int value);\n\n/** parse configuration string using zbar_parse_config()\n * and apply to processor using zbar_processor_set_config().\n * @returns 0 for success, non-0 for failure\n * @see zbar_parse_config()\n * @see zbar_processor_set_config()\n * @since 0.4\n */\nstatic inline int zbar_processor_parse_config (zbar_processor_t *processor,\n                                               const char *config_string)\n{\n    zbar_symbol_type_t sym;\n    zbar_config_t cfg;\n    int val;\n    return(zbar_parse_config(config_string, &sym, &cfg, &val) ||\n           zbar_processor_set_config(processor, sym, cfg, val));\n}\n\n/** retrieve the current state of the ouput window.\n * @returns 1 if the output window is currently displayed, 0 if not.\n * @returns -1 if an error occurs\n */\nextern int zbar_processor_is_visible(zbar_processor_t *processor);\n\n/** show or hide the display window owned by the library.\n * the size will be adjusted to the input size\n */\nextern int zbar_processor_set_visible(zbar_processor_t *processor,\n                                      int visible);\n\n/** control the processor in free running video mode.\n * only works if video input is initialized. if threading is in use,\n * scanning will occur in the background, otherwise this is only\n * useful wrapping calls to zbar_processor_user_wait(). if the\n * library output window is visible, video display will be enabled.\n */\nextern int zbar_processor_set_active(zbar_processor_t *processor,\n                                     int active);\n\n/** retrieve decode results for last scanned image/frame.\n * @returns the symbol set result container or NULL if no results are\n * available\n * @note the returned symbol set has its reference count incremented;\n * ensure that the count is decremented after use\n * @since 0.10\n */\nextern const zbar_symbol_set_t*\nzbar_processor_get_results(const zbar_processor_t *processor);\n\n/** wait for input to the display window from the user\n * (via mouse or keyboard).\n * @returns >0 when input is received, 0 if timeout ms expired\n * with no input or -1 in case of an error\n */\nextern int zbar_processor_user_wait(zbar_processor_t *processor,\n                                    int timeout);\n\n/** process from the video stream until a result is available,\n * or the timeout (in milliseconds) expires.\n * specify a timeout of -1 to scan indefinitely\n * (zbar_processor_set_active() may still be used to abort the scan\n * from another thread).\n * if the library window is visible, video display will be enabled.\n * @note that multiple results may still be returned (despite the\n * name).\n * @returns >0 if symbols were successfully decoded,\n * 0 if no symbols were found (ie, the timeout expired)\n * or -1 if an error occurs\n */\nextern int zbar_process_one(zbar_processor_t *processor,\n                            int timeout);\n\n/** process the provided image for barcodes.\n * if the library window is visible, the image will be displayed.\n * @returns >0 if symbols were successfully decoded,\n * 0 if no symbols were found or -1 if an error occurs\n */\nextern int zbar_process_image(zbar_processor_t *processor,\n                              zbar_image_t *image);\n\n/** display detail for last processor error to stderr.\n * @returns a non-zero value suitable for passing to exit()\n */\nstatic inline int\nzbar_processor_error_spew (const zbar_processor_t *processor,\n                           int verbosity)\n{\n    return(_zbar_error_spew(processor, verbosity));\n}\n\n/** retrieve the detail string for the last processor error. */\nstatic inline const char*\nzbar_processor_error_string (const zbar_processor_t *processor,\n                             int verbosity)\n{\n    return(_zbar_error_string(processor, verbosity));\n}\n\n/** retrieve the type code for the last processor error. */\nstatic inline zbar_error_t\nzbar_processor_get_error_code (const zbar_processor_t *processor)\n{\n    return(_zbar_get_error_code(processor));\n}\n\n/*@}*/\n\n/*------------------------------------------------------------*/\n/** @name Video interface\n * @anchor c-video\n * mid-level video source abstraction.\n * captures images from a video device\n */\n/*@{*/\n\nstruct zbar_video_s;\n/** opaque video object. */\ntypedef struct zbar_video_s zbar_video_t;\n\n/** constructor. */\nextern zbar_video_t *zbar_video_create(void);\n\n/** destructor. */\nextern void zbar_video_destroy(zbar_video_t *video);\n\n/** open and probe a video device.\n * the device specified by platform specific unique name\n * (v4l device node path in *nix eg \"/dev/video\",\n *  DirectShow DevicePath property in windows).\n * @returns 0 if successful or -1 if an error occurs\n */\nextern int zbar_video_open(zbar_video_t *video,\n                           const char *device);\n\n/** retrieve file descriptor associated with open *nix video device\n * useful for using select()/poll() to tell when new images are\n * available (NB v4l2 only!!).\n * @returns the file descriptor or -1 if the video device is not open\n * or the driver only supports v4l1\n */\nextern int zbar_video_get_fd(const zbar_video_t *video);\n\n/** request a preferred size for the video image from the device.\n * the request may be adjusted or completely ignored by the driver.\n * @returns 0 if successful or -1 if the video device is already\n * initialized\n * @since 0.6\n */\nextern int zbar_video_request_size(zbar_video_t *video,\n                                   unsigned width,\n                                   unsigned height);\n\n/** request a preferred driver interface version for debug/testing.\n * @note must be called before zbar_video_open()\n * @since 0.6\n */\nextern int zbar_video_request_interface(zbar_video_t *video,\n                                        int version);\n\n/** request a preferred I/O mode for debug/testing.  You will get\n * errors if the driver does not support the specified mode.\n * @verbatim\n    0 = auto-detect\n    1 = force I/O using read()\n    2 = force memory mapped I/O using mmap()\n    3 = force USERPTR I/O (v4l2 only)\n@endverbatim\n * @note must be called before zbar_video_open()\n * @since 0.7\n */\nextern int zbar_video_request_iomode(zbar_video_t *video,\n                                     int iomode);\n\n/** retrieve current output image width.\n * @returns the width or 0 if the video device is not open\n */\nextern int zbar_video_get_width(const zbar_video_t *video);\n\n/** retrieve current output image height.\n * @returns the height or 0 if the video device is not open\n */\nextern int zbar_video_get_height(const zbar_video_t *video);\n\n/** initialize video using a specific format for debug.\n * use zbar_negotiate_format() to automatically select and initialize\n * the best available format\n */\nextern int zbar_video_init(zbar_video_t *video,\n                           unsigned long format);\n\n/** start/stop video capture.\n * all buffered images are retired when capture is disabled.\n * @returns 0 if successful or -1 if an error occurs\n */\nextern int zbar_video_enable(zbar_video_t *video,\n                             int enable);\n\n/** retrieve next captured image.  blocks until an image is available.\n * @returns NULL if video is not enabled or an error occurs\n */\nextern zbar_image_t *zbar_video_next_image(zbar_video_t *video);\n\n/** display detail for last video error to stderr.\n * @returns a non-zero value suitable for passing to exit()\n */\nstatic inline int zbar_video_error_spew (const zbar_video_t *video,\n                                         int verbosity)\n{\n    return(_zbar_error_spew(video, verbosity));\n}\n\n/** retrieve the detail string for the last video error. */\nstatic inline const char *zbar_video_error_string (const zbar_video_t *video,\n                                                   int verbosity)\n{\n    return(_zbar_error_string(video, verbosity));\n}\n\n/** retrieve the type code for the last video error. */\nstatic inline zbar_error_t\nzbar_video_get_error_code (const zbar_video_t *video)\n{\n    return(_zbar_get_error_code(video));\n}\n\n/*@}*/\n\n/*------------------------------------------------------------*/\n/** @name Window interface\n * @anchor c-window\n * mid-level output window abstraction.\n * displays images to user-specified platform specific output window\n */\n/*@{*/\n\nstruct zbar_window_s;\n/** opaque window object. */\ntypedef struct zbar_window_s zbar_window_t;\n\n/** constructor. */\nextern zbar_window_t *zbar_window_create(void);\n\n/** destructor. */\nextern void zbar_window_destroy(zbar_window_t *window);\n\n/** associate reader with an existing platform window.\n * This can be any \"Drawable\" for X Windows or a \"HWND\" for windows.\n * input images will be scaled into the output window.\n * pass NULL to detach from the resource, further input will be\n * ignored\n */\nextern int zbar_window_attach(zbar_window_t *window,\n                              void *x11_display_w32_hwnd,\n                              unsigned long x11_drawable);\n\n/** control content level of the reader overlay.\n * the overlay displays graphical data for informational or debug\n * purposes.  higher values increase the level of annotation (possibly\n * decreasing performance). @verbatim\n    0 = disable overlay\n    1 = outline decoded symbols (default)\n    2 = also track and display input frame rate\n@endverbatim\n */\nextern void zbar_window_set_overlay(zbar_window_t *window,\n                                    int level);\n\n/** retrieve current content level of reader overlay.\n * @see zbar_window_set_overlay()\n * @since 0.10\n */\nextern int zbar_window_get_overlay(const zbar_window_t *window);\n\n/** draw a new image into the output window. */\nextern int zbar_window_draw(zbar_window_t *window,\n                            zbar_image_t *image);\n\n/** redraw the last image (exposure handler). */\nextern int zbar_window_redraw(zbar_window_t *window);\n\n/** resize the image window (reconfigure handler).\n * this does @em not update the contents of the window\n * @since 0.3, changed in 0.4 to not redraw window\n */\nextern int zbar_window_resize(zbar_window_t *window,\n                              unsigned width,\n                              unsigned height);\n\n/** display detail for last window error to stderr.\n * @returns a non-zero value suitable for passing to exit()\n */\nstatic inline int zbar_window_error_spew (const zbar_window_t *window,\n                                          int verbosity)\n{\n    return(_zbar_error_spew(window, verbosity));\n}\n\n/** retrieve the detail string for the last window error. */\nstatic inline const char*\nzbar_window_error_string (const zbar_window_t *window,\n                          int verbosity)\n{\n    return(_zbar_error_string(window, verbosity));\n}\n\n/** retrieve the type code for the last window error. */\nstatic inline zbar_error_t\nzbar_window_get_error_code (const zbar_window_t *window)\n{\n    return(_zbar_get_error_code(window));\n}\n\n\n/** select a compatible format between video input and output window.\n * the selection algorithm attempts to use a format shared by\n * video input and window output which is also most useful for\n * barcode scanning.  if a format conversion is necessary, it will\n * heuristically attempt to minimize the cost of the conversion\n */\nextern int zbar_negotiate_format(zbar_video_t *video,\n                                 zbar_window_t *window);\n\n/*@}*/\n\n/*------------------------------------------------------------*/\n/** @name Image Scanner interface\n * @anchor c-imagescanner\n * mid-level image scanner interface.\n * reads barcodes from 2-D images\n */\n/*@{*/\n\nstruct zbar_image_scanner_s;\n/** opaque image scanner object. */\ntypedef struct zbar_image_scanner_s zbar_image_scanner_t;\n\n/** constructor. */\nextern zbar_image_scanner_t *zbar_image_scanner_create(void);\n\n/** destructor. */\nextern void zbar_image_scanner_destroy(zbar_image_scanner_t *scanner);\n\n/** setup result handler callback.\n * the specified function will be called by the scanner whenever\n * new results are available from a decoded image.\n * pass a NULL value to disable callbacks.\n * @returns the previously registered handler\n */\nextern zbar_image_data_handler_t*\nzbar_image_scanner_set_data_handler(zbar_image_scanner_t *scanner,\n                                    zbar_image_data_handler_t *handler,\n                                    const void *userdata);\n\n\n/** set config for indicated symbology (0 for all) to specified value.\n * @returns 0 for success, non-0 for failure (config does not apply to\n * specified symbology, or value out of range)\n * @see zbar_decoder_set_config()\n * @since 0.4\n */\nextern int zbar_image_scanner_set_config(zbar_image_scanner_t *scanner,\n                                         zbar_symbol_type_t symbology,\n                                         zbar_config_t config,\n                                         int value);\n\n/** parse configuration string using zbar_parse_config()\n * and apply to image scanner using zbar_image_scanner_set_config().\n * @returns 0 for success, non-0 for failure\n * @see zbar_parse_config()\n * @see zbar_image_scanner_set_config()\n * @since 0.4\n */\nstatic inline int\nzbar_image_scanner_parse_config (zbar_image_scanner_t *scanner,\n                                 const char *config_string)\n{\n    zbar_symbol_type_t sym;\n    zbar_config_t cfg;\n    int val;\n    return(zbar_parse_config(config_string, &sym, &cfg, &val) ||\n           zbar_image_scanner_set_config(scanner, sym, cfg, val));\n}\n\n/** enable or disable the inter-image result cache (default disabled).\n * mostly useful for scanning video frames, the cache filters\n * duplicate results from consecutive images, while adding some\n * consistency checking and hysteresis to the results.\n * this interface also clears the cache\n */\nextern void zbar_image_scanner_enable_cache(zbar_image_scanner_t *scanner,\n                                            int enable);\n\n/** remove any previously decoded results from the image scanner and the\n * specified image.  somewhat more efficient version of\n * zbar_image_set_symbols(image, NULL) which may retain memory for\n * subsequent decodes\n * @since 0.10\n */\nextern void zbar_image_scanner_recycle_image(zbar_image_scanner_t *scanner,\n                                             zbar_image_t *image);\n\n/** retrieve decode results for last scanned image.\n * @returns the symbol set result container or NULL if no results are\n * available\n * @note the symbol set does not have its reference count adjusted;\n * ensure that the count is incremented if the results may be kept\n * after the next image is scanned\n * @since 0.10\n */\nextern const zbar_symbol_set_t*\nzbar_image_scanner_get_results(const zbar_image_scanner_t *scanner);\n\n/** scan for symbols in provided image.  The image format must be\n * \"Y800\" or \"GRAY\".\n * @returns >0 if symbols were successfully decoded from the image,\n * 0 if no symbols were found or -1 if an error occurs\n * @see zbar_image_convert()\n * @since 0.9 - changed to only accept grayscale images\n */\nextern int zbar_scan_image(zbar_image_scanner_t *scanner,\n                           zbar_image_t *image);\n\n/*@}*/\n\n/*------------------------------------------------------------*/\n/** @name Decoder interface\n * @anchor c-decoder\n * low-level bar width stream decoder interface.\n * identifies symbols and extracts encoded data\n */\n/*@{*/\n\nstruct zbar_decoder_s;\n/** opaque decoder object. */\ntypedef struct zbar_decoder_s zbar_decoder_t;\n\n/** decoder data handler callback function.\n * called by decoder when new data has just been decoded\n */\ntypedef void (zbar_decoder_handler_t)(zbar_decoder_t *decoder);\n\n/** constructor. */\nextern zbar_decoder_t *zbar_decoder_create(void);\n\n/** destructor. */\nextern void zbar_decoder_destroy(zbar_decoder_t *decoder);\n\n/** set config for indicated symbology (0 for all) to specified value.\n * @returns 0 for success, non-0 for failure (config does not apply to\n * specified symbology, or value out of range)\n * @since 0.4\n */\nextern int zbar_decoder_set_config(zbar_decoder_t *decoder,\n                                   zbar_symbol_type_t symbology,\n                                   zbar_config_t config,\n                                   int value);\n\n/** parse configuration string using zbar_parse_config()\n * and apply to decoder using zbar_decoder_set_config().\n * @returns 0 for success, non-0 for failure\n * @see zbar_parse_config()\n * @see zbar_decoder_set_config()\n * @since 0.4\n */\nstatic inline int zbar_decoder_parse_config (zbar_decoder_t *decoder,\n                                             const char *config_string)\n{\n    zbar_symbol_type_t sym;\n    zbar_config_t cfg;\n    int val;\n    return(zbar_parse_config(config_string, &sym, &cfg, &val) ||\n           zbar_decoder_set_config(decoder, sym, cfg, val));\n}\n\n/** retrieve symbology boolean config settings.\n * @returns a bitmask indicating which configs are currently set for the\n * specified symbology.\n * @since 0.11\n */\nextern unsigned int zbar_decoder_get_configs(const zbar_decoder_t *decoder,\n                                             zbar_symbol_type_t symbology);\n\n/** clear all decoder state.\n * any partial symbols are flushed\n */\nextern void zbar_decoder_reset(zbar_decoder_t *decoder);\n\n/** mark start of a new scan pass.\n * clears any intra-symbol state and resets color to ::ZBAR_SPACE.\n * any partially decoded symbol state is retained\n */\nextern void zbar_decoder_new_scan(zbar_decoder_t *decoder);\n\n/** process next bar/space width from input stream.\n * the width is in arbitrary relative units.  first value of a scan\n * is ::ZBAR_SPACE width, alternating from there.\n * @returns appropriate symbol type if width completes\n * decode of a symbol (data is available for retrieval)\n * @returns ::ZBAR_PARTIAL as a hint if part of a symbol was decoded\n * @returns ::ZBAR_NONE (0) if no new symbol data is available\n */\nextern zbar_symbol_type_t zbar_decode_width(zbar_decoder_t *decoder,\n                                            unsigned width);\n\n/** retrieve color of @em next element passed to\n * zbar_decode_width(). */\nextern zbar_color_t zbar_decoder_get_color(const zbar_decoder_t *decoder);\n\n/** retrieve last decoded data.\n * @returns the data string or NULL if no new data available.\n * the returned data buffer is owned by library, contents are only\n * valid between non-0 return from zbar_decode_width and next library\n * call\n */\nextern const char *zbar_decoder_get_data(const zbar_decoder_t *decoder);\n\n/** retrieve length of binary data.\n * @returns the length of the decoded data or 0 if no new data\n * available.\n */\nextern unsigned int\nzbar_decoder_get_data_length(const zbar_decoder_t *decoder);\n\n/** retrieve last decoded symbol type.\n * @returns the type or ::ZBAR_NONE if no new data available\n */\nextern zbar_symbol_type_t\nzbar_decoder_get_type(const zbar_decoder_t *decoder);\n\n/** retrieve modifier flags for the last decoded symbol.\n * @returns a bitmask indicating which characteristics were detected\n * during decoding.\n * @since 0.11\n */\nextern unsigned int zbar_decoder_get_modifiers(const zbar_decoder_t *decoder);\n\n/** retrieve last decode direction.\n * @returns 1 for forward and -1 for reverse\n * @returns 0 if the decode direction is unknown or does not apply\n * @since 0.11\n */\nextern int zbar_decoder_get_direction(const zbar_decoder_t *decoder);\n\n/** setup data handler callback.\n * the registered function will be called by the decoder\n * just before zbar_decode_width() returns a non-zero value.\n * pass a NULL value to disable callbacks.\n * @returns the previously registered handler\n */\nextern zbar_decoder_handler_t*\nzbar_decoder_set_handler(zbar_decoder_t *decoder,\n                         zbar_decoder_handler_t *handler);\n\n/** associate user specified data value with the decoder. */\nextern void zbar_decoder_set_userdata(zbar_decoder_t *decoder,\n                                      void *userdata);\n\n/** return user specified data value associated with the decoder. */\nextern void *zbar_decoder_get_userdata(const zbar_decoder_t *decoder);\n\n/*@}*/\n\n/*------------------------------------------------------------*/\n/** @name Scanner interface\n * @anchor c-scanner\n * low-level linear intensity sample stream scanner interface.\n * identifies \"bar\" edges and measures width between them.\n * optionally passes to bar width decoder\n */\n/*@{*/\n\nstruct zbar_scanner_s;\n/** opaque scanner object. */\ntypedef struct zbar_scanner_s zbar_scanner_t;\n\n/** constructor.\n * if decoder is non-NULL it will be attached to scanner\n * and called automatically at each new edge\n * current color is initialized to ::ZBAR_SPACE\n * (so an initial BAR->SPACE transition may be discarded)\n */\nextern zbar_scanner_t *zbar_scanner_create(zbar_decoder_t *decoder);\n\n/** destructor. */\nextern void zbar_scanner_destroy(zbar_scanner_t *scanner);\n\n/** clear all scanner state.\n * also resets an associated decoder\n */\nextern zbar_symbol_type_t zbar_scanner_reset(zbar_scanner_t *scanner);\n\n/** mark start of a new scan pass. resets color to ::ZBAR_SPACE.\n * also updates an associated decoder.\n * @returns any decode results flushed from the pipeline\n * @note when not using callback handlers, the return value should\n * be checked the same as zbar_scan_y()\n * @note call zbar_scanner_flush() at least twice before calling this\n * method to ensure no decode results are lost\n */\nextern zbar_symbol_type_t zbar_scanner_new_scan(zbar_scanner_t *scanner);\n\n/** flush scanner processing pipeline.\n * forces current scanner position to be a scan boundary.\n * call multiple times (max 3) to completely flush decoder.\n * @returns any decode/scan results flushed from the pipeline\n * @note when not using callback handlers, the return value should\n * be checked the same as zbar_scan_y()\n * @since 0.9\n */\nextern zbar_symbol_type_t zbar_scanner_flush(zbar_scanner_t *scanner);\n\n/** process next sample intensity value.\n * intensity (y) is in arbitrary relative units.\n * @returns result of zbar_decode_width() if a decoder is attached,\n * otherwise @returns (::ZBAR_PARTIAL) when new edge is detected\n * or 0 (::ZBAR_NONE) if no new edge is detected\n */\nextern zbar_symbol_type_t zbar_scan_y(zbar_scanner_t *scanner,\n                                      int y);\n\n/** process next sample from RGB (or BGR) triple. */\nstatic inline zbar_symbol_type_t zbar_scan_rgb24 (zbar_scanner_t *scanner,\n                                                    unsigned char *rgb)\n{\n    return(zbar_scan_y(scanner, rgb[0] + rgb[1] + rgb[2]));\n}\n\n/** retrieve last scanned width. */\nextern unsigned zbar_scanner_get_width(const zbar_scanner_t *scanner);\n\n/** retrieve sample position of last edge.\n * @since 0.10\n */\nextern unsigned zbar_scanner_get_edge(const zbar_scanner_t *scn,\n                                      unsigned offset,\n                                      int prec);\n\n/** retrieve last scanned color. */\nextern zbar_color_t zbar_scanner_get_color(const zbar_scanner_t *scanner);\n\n/*@}*/\n\n#ifdef __cplusplus\n    }\n}\n\n# include \"zbar/Exception.h\"\n# include \"zbar/Decoder.h\"\n# include \"zbar/Scanner.h\"\n# include \"zbar/Symbol.h\"\n# include \"zbar/Image.h\"\n# include \"zbar/ImageScanner.h\"\n# include \"zbar/Video.h\"\n# include \"zbar/Window.h\"\n# include \"zbar/Processor.h\"\n#endif\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/ABOUT-NLS",
    "content": "1 Notes on the Free Translation Project\n***************************************\n\nFree software is going international!  The Free Translation Project is a\nway to get maintainers of free software, translators, and users all\ntogether, so that free software will gradually become able to speak many\nlanguages.  A few packages already provide translations for their\nmessages.\n\n   If you found this 'ABOUT-NLS' file inside a distribution, you may\nassume that the distributed package does use GNU 'gettext' internally,\nitself available at your nearest GNU archive site.  But you do _not_\nneed to install GNU 'gettext' prior to configuring, installing or using\nthis package with messages translated.\n\n   Installers will find here some useful hints.  These notes also\nexplain how users should proceed for getting the programs to use the\navailable translations.  They tell how people wanting to contribute and\nwork on translations can contact the appropriate team.\n\n1.1 INSTALL Matters\n===================\n\nSome packages are \"localizable\" when properly installed; the programs\nthey contain can be made to speak your own native language.  Most such\npackages use GNU 'gettext'.  Other packages have their own ways to\ninternationalization, predating GNU 'gettext'.\n\n   By default, this package will be installed to allow translation of\nmessages.  It will automatically detect whether the system already\nprovides the GNU 'gettext' functions.  Installers may use special\noptions at configuration time for changing the default behaviour.  The\ncommand:\n\n     ./configure --disable-nls\n\nwill _totally_ disable translation of messages.\n\n   When you already have GNU 'gettext' installed on your system and run\nconfigure without an option for your new package, 'configure' will\nprobably detect the previously built and installed 'libintl' library and\nwill decide to use it.  If not, you may have to to use the\n'--with-libintl-prefix' option to tell 'configure' where to look for it.\n\n   Internationalized packages usually have many 'po/LL.po' files, where\nLL gives an ISO 639 two-letter code identifying the language.  Unless\ntranslations have been forbidden at 'configure' time by using the\n'--disable-nls' switch, all available translations are installed\ntogether with the package.  However, the environment variable 'LINGUAS'\nmay be set, prior to configuration, to limit the installed set.\n'LINGUAS' should then contain a space separated list of two-letter\ncodes, stating which languages are allowed.\n\n1.2 Using This Package\n======================\n\nAs a user, if your language has been installed for this package, you\nonly have to set the 'LANG' environment variable to the appropriate\n'LL_CC' combination.  If you happen to have the 'LC_ALL' or some other\n'LC_xxx' environment variables set, you should unset them before setting\n'LANG', otherwise the setting of 'LANG' will not have the desired\neffect.  Here 'LL' is an ISO 639 two-letter language code, and 'CC' is\nan ISO 3166 two-letter country code.  For example, let's suppose that\nyou speak German and live in Germany.  At the shell prompt, merely\nexecute 'setenv LANG de_DE' (in 'csh'), 'export LANG; LANG=de_DE' (in\n'sh') or 'export LANG=de_DE' (in 'bash').  This can be done from your\n'.login' or '.profile' file, once and for all.\n\n   You might think that the country code specification is redundant.\nBut in fact, some languages have dialects in different countries.  For\nexample, 'de_AT' is used for Austria, and 'pt_BR' for Brazil.  The\ncountry code serves to distinguish the dialects.\n\n   The locale naming convention of 'LL_CC', with 'LL' denoting the\nlanguage and 'CC' denoting the country, is the one use on systems based\non GNU libc.  On other systems, some variations of this scheme are used,\nsuch as 'LL' or 'LL_CC.ENCODING'.  You can get the list of locales\nsupported by your system for your language by running the command\n'locale -a | grep '^LL''.\n\n   Not all programs have translations for all languages.  By default, an\nEnglish message is shown in place of a nonexistent translation.  If you\nunderstand other languages, you can set up a priority list of languages.\nThis is done through a different environment variable, called\n'LANGUAGE'.  GNU 'gettext' gives preference to 'LANGUAGE' over 'LANG'\nfor the purpose of message handling, but you still need to have 'LANG'\nset to the primary language; this is required by other parts of the\nsystem libraries.  For example, some Swedish users who would rather read\ntranslations in German than English for when Swedish is not available,\nset 'LANGUAGE' to 'sv:de' while leaving 'LANG' to 'sv_SE'.\n\n   Special advice for Norwegian users: The language code for Norwegian\nbokma*l changed from 'no' to 'nb' recently (in 2003).  During the\ntransition period, while some message catalogs for this language are\ninstalled under 'nb' and some older ones under 'no', it's recommended\nfor Norwegian users to set 'LANGUAGE' to 'nb:no' so that both newer and\nolder translations are used.\n\n   In the 'LANGUAGE' environment variable, but not in the 'LANG'\nenvironment variable, 'LL_CC' combinations can be abbreviated as 'LL' to\ndenote the language's main dialect.  For example, 'de' is equivalent to\n'de_DE' (German as spoken in Germany), and 'pt' to 'pt_PT' (Portuguese\nas spoken in Portugal) in this context.\n\n1.3 Translating Teams\n=====================\n\nFor the Free Translation Project to be a success, we need interested\npeople who like their own language and write it well, and who are also\nable to synergize with other translators speaking the same language.\nEach translation team has its own mailing list.  The up-to-date list of\nteams can be found at the Free Translation Project's homepage,\n'http://translationproject.org/', in the \"Teams\" area.\n\n   If you'd like to volunteer to _work_ at translating messages, you\nshould become a member of the translating team for your own language.\nThe subscribing address is _not_ the same as the list itself, it has\n'-request' appended.  For example, speakers of Swedish can send a\nmessage to 'sv-request@li.org', having this message body:\n\n     subscribe\n\n   Keep in mind that team members are expected to participate _actively_\nin translations, or at solving translational difficulties, rather than\nmerely lurking around.  If your team does not exist yet and you want to\nstart one, or if you are unsure about what to do or how to get started,\nplease write to 'coordinator@translationproject.org' to reach the\ncoordinator for all translator teams.\n\n   The English team is special.  It works at improving and uniformizing\nthe terminology in use.  Proven linguistic skills are praised more than\nprogramming skills, here.\n\n1.4 Available Packages\n======================\n\nLanguages are not equally supported in all packages.  The following\nmatrix shows the current state of internationalization, as of Jun 2014.\nThe matrix shows, in regard of each package, for which languages PO\nfiles have been submitted to translation coordination, with a\ntranslation percentage of at least 50%.\n\n     Ready PO files       af am an ar as ast az be bg bn bn_IN bs ca crh cs\n                        +---------------------------------------------------+\n     a2ps               |                       []                []     [] |\n     aegis              |                                                   |\n     anubis             |                                                   |\n     aspell             |                []                       []     [] |\n     bash               |                          []             []     [] |\n     bfd                |                                                   |\n     binutils           |                                         []        |\n     bison              |                                                   |\n     bison-runtime      |                []                                 |\n     buzztrax           |                                                [] |\n     ccd2cue            |                                                   |\n     ccide              |                                                   |\n     cflow              |                                                   |\n     clisp              |                                                   |\n     coreutils          |                                         []     [] |\n     cpio               |                                                   |\n     cppi               |                                                   |\n     cpplib             |                                         []        |\n     cryptsetup         |                                                [] |\n     datamash           |                                                   |\n     denemo             |                                         []     [] |\n     dfarc              |                                         []        |\n     dialog             |       []                                []     [] |\n     dico               |                                                   |\n     diffutils          |                                                [] |\n     dink               |                                         []        |\n     direvent           |                                                   |\n     doodle             |                                                [] |\n     dos2unix           |                                                   |\n     dos2unix-man       |                                                   |\n     e2fsprogs          |                                         []     [] |\n     enscript           |                                         []        |\n     exif               |                                                [] |\n     fetchmail          |                                         []     [] |\n     findutils          |                                                [] |\n     flex               |                                         []        |\n     freedink           |                                         []     [] |\n     fusionforge        |                                                   |\n     gas                |                                                   |\n     gawk               |                                         []        |\n     gcal               |                                         []        |\n     gcc                |                                                   |\n     gdbm               |                                                   |\n     gettext-examples   | []             []        []             []     [] |\n     gettext-runtime    |                          []             []     [] |\n     gettext-tools      |                          []             []        |\n     gjay               |                                                   |\n     glunarclock        |                []        []                    [] |\n     gnubiff            |                                                [] |\n     gnubik             |          []                                       |\n     gnucash            |          ()              ()             []        |\n     gnuchess           |                                                   |\n     gnulib             |                                                [] |\n     gnunet             |                                                   |\n     gnunet-gtk         |                                                   |\n     gold               |                                                   |\n     gphoto2            |                                                [] |\n     gprof              |                          []                       |\n     gramadoir          |                                                   |\n     grep               |                          []             []     [] |\n     grub               |                                         []        |\n     gsasl              |                                                   |\n     gss                |                                                   |\n     gst-plugins-bad    |                          []                    [] |\n     gst-plugins-base   |                          []             []     [] |\n     gst-plugins-good   |                          []             []     [] |\n     gst-plugins-ugly   |                          []             []     [] |\n     gstreamer          |                []        []             []     [] |\n     gtick              |                                                [] |\n     gtkam              |                       []                       [] |\n     gtkspell           | []             []     []                []     [] |\n     guix               |                                                   |\n     guix-packages      |                                                   |\n     gutenprint         |                                         []        |\n     hello              |                                         []        |\n     help2man           |                                                   |\n     help2man-texi      |                                                   |\n     hylafax            |                                                   |\n     idutils            |                                                   |\n     iso_15924          |                                                [] |\n     iso_3166           | []          []        [] [] []  []   [] [] []  [] |\n     iso_3166_2         |                                                   |\n     iso_4217           |                                                [] |\n     iso_639            |             [] []     [] [] []  []      [] []  [] |\n     iso_639_3          |                []                          []     |\n     iso_639_5          |                                                   |\n     jwhois             |                                                   |\n     kbd                |                                                [] |\n     klavaro            |          []              [] []          []     [] |\n     ld                 |                          []                       |\n     leafpad            |                       [] []             []     [] |\n     libc               |                          []             []     [] |\n     libexif            |                       ()                          |\n     libextractor       |                                                   |\n     libgnutls          |                                                [] |\n     libgphoto2         |                                                [] |\n     libgphoto2_port    |                                                [] |\n     libgsasl           |                                                   |\n     libiconv           |                          []                    [] |\n     libidn             |                                                [] |\n     liferea            |          []    []                       []     [] |\n     lilypond           |                                         []     [] |\n     lordsawar          |                                         []        |\n     lprng              |                                                   |\n     lynx               |                                         []     [] |\n     m4                 |                                                [] |\n     mailfromd          |                                                   |\n     mailutils          |                                                   |\n     make               |                                                [] |\n     man-db             |                                         []     [] |\n     man-db-manpages    |                                                   |\n     midi-instruments   |          []                             []     [] |\n     minicom            |                                                [] |\n     mkisofs            |                                                [] |\n     myserver           |                                                [] |\n     nano               |                          []             []     [] |\n     opcodes            |                                                   |\n     parted             |                                                [] |\n     pies               |                                                   |\n     pnmixer            |                                                   |\n     popt               |                                                [] |\n     procps-ng          |                                                   |\n     procps-ng-man      |                                                   |\n     psmisc             |                                                [] |\n     pspp               |                                         []        |\n     pushover           |                                                [] |\n     pwdutils           |                                                   |\n     pyspread           |                                                   |\n     radius             |                                         []        |\n     recode             |                       []                []     [] |\n     recutils           |                                                   |\n     rpm                |                                                   |\n     rush               |                                                   |\n     sarg               |                                                   |\n     sed                |                []        []             []     [] |\n     sharutils          |                                                [] |\n     shishi             |                                                   |\n     skribilo           |                                                   |\n     solfege            |                                         []     [] |\n     solfege-manual     |                                                   |\n     spotmachine        |                                                   |\n     sudo               |                                         []     [] |\n     sudoers            |                                         []     [] |\n     sysstat            |                                                [] |\n     tar                |                          []             []     [] |\n     texinfo            |                                         []     [] |\n     texinfo_document   |                                         []     [] |\n     tigervnc           |                          []                       |\n     tin                |                                                   |\n     tin-man            |                                                   |\n     tracgoogleappsa... |                                                   |\n     trader             |                                                   |\n     util-linux         |                                                [] |\n     ve                 |                                                   |\n     vice               |                                                   |\n     vmm                |                                                   |\n     vorbis-tools       |                                                [] |\n     wastesedge         |                                                   |\n     wcd                |                                                   |\n     wcd-man            |                                                   |\n     wdiff              |                                         []     [] |\n     wget               |                                                [] |\n     wyslij-po          |                                                   |\n     xboard             |                                                   |\n     xdg-user-dirs      | []    []    [] []     [] []     []      [] []  [] |\n     xkeyboard-config   |                          []             []     [] |\n                        +---------------------------------------------------+\n                          af am an ar as ast az be bg bn bn_IN bs ca crh cs\n                           4  0  2  5  3 11   0  8 25  3   3    1 55  4  74\n\n                          da  de  el en en_GB en_ZA eo es et eu fa fi  fr \n                        +--------------------------------------------------+\n     a2ps               | []  []  []     []         [] [] []       []  []  |\n     aegis              | []  []                       []              []  |\n     anubis             | []  []                       []          []  []  |\n     aspell             | []  []         []         [] []          []  []  |\n     bash               |                           [] []              []  |\n     bfd                | []                           []          []  []  |\n     binutils           |                              []          []  []  |\n     bison              | []  []  []                [] [] []       []  []  |\n     bison-runtime      | []  []  []                [] [] []       []  []  |\n     buzztrax           | []  []                                   []  []  |\n     ccd2cue            | []  []                    []                 []  |\n     ccide              | []  []                    [] []          []  []  |\n     cflow              | []  []                    []             []  []  |\n     clisp              | []  []     []                []              []  |\n     coreutils          | []  []                       [] []           []  |\n     cpio               | []  []                       []          []  []  |\n     cppi               | []  []                    []             []  []  |\n     cpplib             | []  []                    [] []          []  []  |\n     cryptsetup         | []  []                       []          []  []  |\n     datamash           | []  []                    []                 []  |\n     denemo             | []                                               |\n     dfarc              | []  []                    [] []          []  []  |\n     dialog             | []  []  []                [] []    [] [] []  []  |\n     dico               | []  []                                   []  []  |\n     diffutils          | []  []  []                [] []              []  |\n     dink               | []  []                    [] []          []  []  |\n     direvent           | []  []                    []                 []  |\n     doodle             | []  []                    []             []      |\n     dos2unix           | []  []                    [] []              []  |\n     dos2unix-man       |     []                       []              []  |\n     e2fsprogs          | []  []                    [] []              []  |\n     enscript           | []  []         []         []             []  []  |\n     exif               | []  []                    [] []          []  []  |\n     fetchmail          | []  ()  []     []         [] []              []  |\n     findutils          | []  []  []                [] [] []       []  []  |\n     flex               | []  []                    [] []          []  []  |\n     freedink           | []  []  []                [] []    []    []  []  |\n     fusionforge        |     []                       []              []  |\n     gas                |                              []          []  []  |\n     gawk               | []  []                       []          []  []  |\n     gcal               | []  []                       []              []  |\n     gcc                |     []                                           |\n     gdbm               | []  []                    []             []  []  |\n     gettext-examples   | []  []  []                [] []          []  []  |\n     gettext-runtime    | []  []                    [] []          []  []  |\n     gettext-tools      | []  []                       []          []  []  |\n     gjay               |     []                    []             []  []  |\n     glunarclock        | []  []                    []             []  []  |\n     gnubiff            |     ()                    []             []  ()  |\n     gnubik             | []  []                    []             []  []  |\n     gnucash            | []  ()  ()     ()            ()          ()  ()  |\n     gnuchess           |     []                    [] []              []  |\n     gnulib             | []  []                    [] [] []       []  []  |\n     gnunet             |                              []                  |\n     gnunet-gtk         |     []                                           |\n     gold               |                              []          []  []  |\n     gphoto2            | []  ()                    []                 []  |\n     gprof              | []  []                    [] []          []  []  |\n     gramadoir          | []  []                    []             []  []  |\n     grep               | []  []                    [] [] []       []  []  |\n     grub               | []  []                       []          []  []  |\n     gsasl              | []  []                    []             []  []  |\n     gss                | []  []                    []             []  []  |\n     gst-plugins-bad    | []  []                                       []  |\n     gst-plugins-base   | []  []  []                   []          []  []  |\n     gst-plugins-good   | []  []  []                   []    []    []  []  |\n     gst-plugins-ugly   | []  []  []                [] []    []    []  []  |\n     gstreamer          | []  []  []                   []    []    []  []  |\n     gtick              | []  ()                    []             []  []  |\n     gtkam              | []  ()                    [] []          []  []  |\n     gtkspell           | []  []  []                [] []    []    []  []  |\n     guix               | []                        []                     |\n     guix-packages      |                                                  |\n     gutenprint         | []  []                                   []  []  |\n     hello              | []  []  []                [] [] []       []  []  |\n     help2man           | []  []  []                [] []          []  []  |\n     help2man-texi      |     []                       []              []  |\n     hylafax            |     []                       []                  |\n     idutils            | []  []                    []             []  []  |\n     iso_15924          | []  ()                    [] []    ()    []  ()  |\n     iso_3166           | []  ()  []                [] [] [] ()    []  ()  |\n     iso_3166_2         | []  ()                             ()        ()  |\n     iso_4217           | []  ()  []                   [] [] ()    []  ()  |\n     iso_639            | []  ()                    [] []    ()    []  ()  |\n     iso_639_3          |     ()                             ()        ()  |\n     iso_639_5          |     ()                             ()        ()  |\n     jwhois             |     []                    [] []          []  []  |\n     kbd                | []  []  []                [] []              []  |\n     klavaro            | []  []  []                [] []    []        []  |\n     ld                 | []                           []          []  []  |\n     leafpad            | []  []  []                [] []    []    []  []  |\n     libc               | []  []                       []          []  []  |\n     libexif            | []  []         ()            []              []  |\n     libextractor       |     []                                           |\n     libgnutls          |     []                    []             []  []  |\n     libgphoto2         | []  ()                                       []  |\n     libgphoto2_port    | []  ()                       []    []    []  []  |\n     libgsasl           | []  []                    []             []  []  |\n     libiconv           | []  []                    [] [] []       []  []  |\n     libidn             | []  []                    []             []  []  |\n     liferea            | []  ()  []                   []    []    []  []  |\n     lilypond           | []  []  []                [] []              []  |\n     lordsawar          | []  []                                           |\n     lprng              |                                                  |\n     lynx               | []  []                    []    []       []  []  |\n     m4                 | []  []  []                []             []  []  |\n     mailfromd          |                                              []  |\n     mailutils          |     []                       []          []  []  |\n     make               | []  []                       []          []  []  |\n     man-db             | []  []                    []                 []  |\n     man-db-manpages    |     []                                       []  |\n     midi-instruments   | []  []  []                [] [] []    [] []  []  |\n     minicom            | []  []                       []          []  []  |\n     mkisofs            |                           []             []  []  |\n     myserver           |     []                    []             []  []  |\n     nano               | []  []                    [] []    []    []  []  |\n     opcodes            | []  []                       []          []  []  |\n     parted             | []  []                                       []  |\n     pies               |     []                                           |\n     pnmixer            |     []                                       []  |\n     popt               | []  []                    [] []          []  []  |\n     procps-ng          |     []                                       []  |\n     procps-ng-man      |     []                                       []  |\n     psmisc             | []  []  []                []       []    []  []  |\n     pspp               |     []                       []              []  |\n     pushover           |     ()                    [] []              []  |\n     pwdutils           | []  []                                       []  |\n     pyspread           | []  []                                       []  |\n     radius             |                              []              []  |\n     recode             | []  []  []                [] []          []  []  |\n     recutils           |     []                       []          []  []  |\n     rpm                | []  []                    []             []  []  |\n     rush               |     []                                   []  []  |\n     sarg               | []                                           []  |\n     sed                | []  []  []                [] [] []       []  []  |\n     sharutils          |     []                    []    []           []  |\n     shishi             |     []                                   []  []  |\n     skribilo           | []                           []              []  |\n     solfege            | []  []                    [] [] []    [] []  []  |\n     solfege-manual     |     []                    [] [] []           []  |\n     spotmachine        | []  []                    []             []  []  |\n     sudo               | []  []                    [] []          []  []  |\n     sudoers            | []  []  []                []             []  []  |\n     sysstat            | []  []                    [] []          []  []  |\n     tar                | []  []                    [] [] []       []  []  |\n     texinfo            | []  []                    [] []              []  |\n     texinfo_document   |     []                    [] []              []  |\n     tigervnc           | []  []  []                []             []  []  |\n     tin                | []  []                          []           []  |\n     tin-man            |                []                                |\n     tracgoogleappsa... | []  []                    []             []  []  |\n     trader             | []  []         []         []             []  []  |\n     util-linux         | []  []                       []              []  |\n     ve                 |     []                    [] []          []  []  |\n     vice               | ()  ()                                       ()  |\n     vmm                |     []                                   []      |\n     vorbis-tools       | []  []                    []                 []  |\n     wastesedge         | []                                               |\n     wcd                |     []                    [] []          []      |\n     wcd-man            |     []                                           |\n     wdiff              | []  []                    [] [] []       []  []  |\n     wget               |     []                    [] [] []       []  []  |\n     wyslij-po          |     []                    []             []  []  |\n     xboard             | []  []                       []              []  |\n     xdg-user-dirs      | []  []  []                [] [] [] [] [] []  []  |\n     xkeyboard-config   | []  []  []                [] []          []  []  |\n                        +--------------------------------------------------+\n                          da  de  el en en_GB en_ZA eo es et eu fa fi  fr \n                          119 131 32  1   6     0   94 95 22 13  4 102 139\n\n                          ga gd gl gu he hi hr hu hy ia id is it ja ka kk\n                        +-------------------------------------------------+\n     a2ps               |                   []          []    [] []       |\n     aegis              |                                     []          |\n     anubis             |                   [] []       []    []          |\n     aspell             | []                []          []    [] []       |\n     bash               |                      []       []    [] []       |\n     bfd                |                               []       []       |\n     binutils           |                               []    [] []       |\n     bison              |                   []                            |\n     bison-runtime      | []    []          [] []    [] []    [] []       |\n     buzztrax           |                                                 |\n     ccd2cue            |                      []                         |\n     ccide              |                   [] []                         |\n     cflow              | []                []          []                |\n     clisp              |                                                 |\n     coreutils          |                      []                []       |\n     cpio               | []                [] []       []    [] []       |\n     cppi               |       []          [] []             [] []       |\n     cpplib             |                               []       []       |\n     cryptsetup         |                                     []          |\n     datamash           |                                                 |\n     denemo             |                                     []          |\n     dfarc              |                   [] []             []          |\n     dialog             | [] [] []          [] []    [] [] [] [] []       |\n     dico               |                                                 |\n     diffutils          |                      []       []    [] []       |\n     dink               |                      []                         |\n     direvent           |                      []                         |\n     doodle             | []                                  []          |\n     dos2unix           |                      []                []       |\n     dos2unix-man       |                                                 |\n     e2fsprogs          |                      []       []                |\n     enscript           | []                []          []                |\n     exif               |       []          []          [] [] [] []       |\n     fetchmail          |                               []    [] []       |\n     findutils          | []    []          [] []       []    [] []       |\n     flex               | []                                              |\n     freedink           |                   [] []       []    []          |\n     fusionforge        |                                                 |\n     gas                |                               []                |\n     gawk               |                               []    () []       |\n     gcal               |                                                 |\n     gcc                |                                                 |\n     gdbm               |                                                 |\n     gettext-examples   | []    []          [] []       []    [] []       |\n     gettext-runtime    | []    []          [] []       []    [] []       |\n     gettext-tools      |                               []    [] []       |\n     gjay               |       []                                        |\n     glunarclock        | []    []          [] []       []    []          |\n     gnubiff            |                      []       []    ()          |\n     gnubik             |       []          []                []          |\n     gnucash            |          () () ()    ()             ()          |\n     gnuchess           |                                                 |\n     gnulib             | []    []             []             [] []       |\n     gnunet             |                                                 |\n     gnunet-gtk         |                                                 |\n     gold               |                               []    []          |\n     gphoto2            |                      []       []    [] []       |\n     gprof              | []                   []       []    []          |\n     gramadoir          | []                   []       []                |\n     grep               | []    []          [] []       []    [] []       |\n     grub               |       []             []             []          |\n     gsasl              | []                [] []       []    []          |\n     gss                | []                [] []       []    []          |\n     gst-plugins-bad    |                   [] []       []                |\n     gst-plugins-base   |       []          [] []       []                |\n     gst-plugins-good   |       []          [] []       []    [] []       |\n     gst-plugins-ugly   |       []          [] []       []    [] []       |\n     gstreamer          |       []          [] []       []    []          |\n     gtick              | []    []             []       []    []          |\n     gtkam              |                      []       [] [] [] []       |\n     gtkspell           | []    []    []    [] [] []    [] [] [] []       |\n     guix               |                                                 |\n     guix-packages      |                                                 |\n     gutenprint         |       []             []             []          |\n     hello              | []    []          [] []       []                |\n     help2man           |                   []                [] []       |\n     help2man-texi      |                                                 |\n     hylafax            |                               []                |\n     idutils            |                      []       []                |\n     iso_15924          |       []             []    [] [] [] []          |\n     iso_3166           | []    [] [] [] [] [] []    [] [] [] [] []    [] |\n     iso_3166_2         |                               []    []          |\n     iso_4217           |                   [] []       [] [] [] []       |\n     iso_639            | []    [] []       [] []       [] [] [] []       |\n     iso_639_3          |       []                            []          |\n     iso_639_5          |                                                 |\n     jwhois             |       []             []       []    []          |\n     kbd                |                      []       []    []          |\n     klavaro            |       []          [] []             []       [] |\n     ld                 | []                            []    [] []       |\n     leafpad            | []    []    []    [] []       []    [] ()       |\n     libc               |       []          []          []    [] []       |\n     libexif            |                                     []          |\n     libextractor       |                                                 |\n     libgnutls          |                                     []          |\n     libgphoto2         |                                     [] []       |\n     libgphoto2_port    |                                     [] []       |\n     libgsasl           | []                   []       []    []          |\n     libiconv           | []    []          [] []       []    [] []       |\n     libidn             |                   [] []       []    []          |\n     liferea            |       []    []       []             [] []       |\n     lilypond           |                                     []          |\n     lordsawar          |                                                 |\n     lprng              |                               []                |\n     lynx               |                      []       []    [] []       |\n     m4                 | []    []          []          []       []       |\n     mailfromd          |                                                 |\n     mailutils          |                                                 |\n     make               |                   []          []    [] []       |\n     man-db             |                               []       []       |\n     man-db-manpages    |                               []       []       |\n     midi-instruments   |       []    []    [] [] []    [] [] [] []       |\n     minicom            |                      []       []       []       |\n     mkisofs            |                               []    []          |\n     myserver           |                                     []          |\n     nano               | []    []          [] []             [] []       |\n     opcodes            | []                            []    []          |\n     parted             |       []             []       []    [] []       |\n     pies               |                                                 |\n     pnmixer            |                   []                []          |\n     popt               | []    [] []       [] []    [] [] [] [] []       |\n     procps-ng          |                                                 |\n     procps-ng-man      |                                                 |\n     psmisc             |                   [] []       []    []          |\n     pspp               |       []                               []       |\n     pushover           |                                     []          |\n     pwdutils           |                               []                |\n     pyspread           |                                                 |\n     radius             |                               []                |\n     recode             | []    []    []    [] []       []    []          |\n     recutils           |                                                 |\n     rpm                |                               []                |\n     rush               |       []                                        |\n     sarg               |                                                 |\n     sed                | []    []          [] []       []    [] []       |\n     sharutils          |                                                 |\n     shishi             |                                                 |\n     skribilo           |                      []                         |\n     solfege            |       []                            []          |\n     solfege-manual     |                                                 |\n     spotmachine        |                                                 |\n     sudo               |       []          []                [] []       |\n     sudoers            |                   []                [] []       |\n     sysstat            |                   [] []       []       []       |\n     tar                | []                [] []       []    [] []       |\n     texinfo            |                   []          []    []          |\n     texinfo_document   |                   [] []             []          |\n     tigervnc           |                                                 |\n     tin                |                                                 |\n     tin-man            |                                                 |\n     tracgoogleappsa... |       []    []    [] []                         |\n     trader             |                   [] []                         |\n     util-linux         |                                        []       |\n     ve                 |                                     []          |\n     vice               |                      ()             ()          |\n     vmm                |                                                 |\n     vorbis-tools       |                   []          []                |\n     wastesedge         |                                     []          |\n     wcd                |                                                 |\n     wcd-man            |                                                 |\n     wdiff              |       []             []             []          |\n     wget               |                   [] []             [] []       |\n     wyslij-po          |       []          []          []                |\n     xboard             |                                                 |\n     xdg-user-dirs      | [] [] [] [] [] [] [] []    [] [] [] [] []    [] |\n     xkeyboard-config   |       []          [] []       []    [] []       |\n                        +-------------------------------------------------+\n                          ga gd gl gu he hi hr hu hy ia id is it ja ka kk\n                          35  2 47  4  8  2 60 71  2  6 81 11 87 57  0  3\n\n                          kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl \n                        +--------------------------------------------------+\n     a2ps               |                                  []          []  |\n     aegis              |                                              []  |\n     anubis             |                                  []    []    []  |\n     aspell             |                            []                []  |\n     bash               |                                        []    []  |\n     bfd                |                                                  |\n     binutils           |                                                  |\n     bison              |                                              []  |\n     bison-runtime      |          []    [] []             []    []    []  |\n     buzztrax           |                                                  |\n     ccd2cue            |                                                  |\n     ccide              |                   []                         []  |\n     cflow              |                                              []  |\n     clisp              |                                              []  |\n     coreutils          |                                        []    []  |\n     cpio               |                                              []  |\n     cppi               |                                                  |\n     cpplib             |                                              []  |\n     cryptsetup         |                                              []  |\n     datamash           |                                        []    []  |\n     denemo             |                                                  |\n     dfarc              |                      []                      []  |\n     dialog             |       []       [] []             []    []    []  |\n     dico               |                                                  |\n     diffutils          |                   []                   []    []  |\n     dink               |                                              []  |\n     direvent           |                                              []  |\n     doodle             |                                              []  |\n     dos2unix           |                                        []    []  |\n     dos2unix-man       |                                              []  |\n     e2fsprogs          |                                              []  |\n     enscript           |                                              []  |\n     exif               |    []             []                         []  |\n     fetchmail          |                                              []  |\n     findutils          |                                        []    []  |\n     flex               |                                              []  |\n     freedink           |                                        []    []  |\n     fusionforge        |                                                  |\n     gas                |                                                  |\n     gawk               |                                              []  |\n     gcal               |                                                  |\n     gcc                |                                                  |\n     gdbm               |                                                  |\n     gettext-examples   |          []       []             [] [] []    []  |\n     gettext-runtime    |    []                                  []    []  |\n     gettext-tools      |    []                                            |\n     gjay               |                                                  |\n     glunarclock        |                   []                         []  |\n     gnubiff            |                                              []  |\n     gnubik             |                                        []    []  |\n     gnucash            | () ()          () ()          ()       () () []  |\n     gnuchess           |                                        []    []  |\n     gnulib             |                                              []  |\n     gnunet             |                                                  |\n     gnunet-gtk         |                                                  |\n     gold               |                                                  |\n     gphoto2            |                                              []  |\n     gprof              |                                  []          []  |\n     gramadoir          |                                              []  |\n     grep               |                                        []    []  |\n     grub               |                []                      []    []  |\n     gsasl              |                                              []  |\n     gss                |                                                  |\n     gst-plugins-bad    |                   []                   []    []  |\n     gst-plugins-base   |                   []                   []    []  |\n     gst-plugins-good   |                [] []                   []    []  |\n     gst-plugins-ugly   |                   []             [] [] []    []  |\n     gstreamer          |                []                      []    []  |\n     gtick              |                                              []  |\n     gtkam              |                                        []    []  |\n     gtkspell           |          []    [] []       []    []    []    []  |\n     guix               |                                                  |\n     guix-packages      |                                                  |\n     gutenprint         |                                              []  |\n     hello              |                   []                   []    []  |\n     help2man           |                                        []        |\n     help2man-texi      |                                                  |\n     hylafax            |                                              []  |\n     idutils            |                                              []  |\n     iso_15924          |                () []                         []  |\n     iso_3166           | [] [] []       () [] [] []    []       []    []  |\n     iso_3166_2         |                ()                            []  |\n     iso_4217           |                () []                   []    []  |\n     iso_639            | [] []          () []    []    []             []  |\n     iso_639_3          | []             ()             []                 |\n     iso_639_5          |                ()                                |\n     jwhois             |                   []                         []  |\n     kbd                |                                              []  |\n     klavaro            |                                        []    []  |\n     ld                 |                                                  |\n     leafpad            |    []    []    [] []                         []  |\n     libc               |    []                                        []  |\n     libexif            |                                              []  |\n     libextractor       |                                              []  |\n     libgnutls          |                                  []          []  |\n     libgphoto2         |                                              []  |\n     libgphoto2_port    |                                              []  |\n     libgsasl           |                                              []  |\n     libiconv           |                []                            []  |\n     libidn             |                                              []  |\n     liferea            |                [] []                         []  |\n     lilypond           |                                              []  |\n     lordsawar          |                                                  |\n     lprng              |                                                  |\n     lynx               |                                              []  |\n     m4                 |                                              []  |\n     mailfromd          |                                                  |\n     mailutils          |                                                  |\n     make               |    []                                        []  |\n     man-db             |                                              []  |\n     man-db-manpages    |                                              []  |\n     midi-instruments   |    [] []       []          []    []       [] []  |\n     minicom            |                                        []        |\n     mkisofs            |                                              []  |\n     myserver           |                                                  |\n     nano               |                                  []    []    []  |\n     opcodes            |                                              []  |\n     parted             |    []                                        []  |\n     pies               |                                                  |\n     pnmixer            |                                              []  |\n     popt               | [] []             []                   []    []  |\n     procps-ng          |                                                  |\n     procps-ng-man      |                                                  |\n     psmisc             |                                              []  |\n     pspp               |                []                            []  |\n     pushover           |                                                  |\n     pwdutils           |                                              []  |\n     pyspread           |                                                  |\n     radius             |                                              []  |\n     recode             |                                        []    []  |\n     recutils           |                                              []  |\n     rpm                |                                              []  |\n     rush               |                                              []  |\n     sarg               |                                                  |\n     sed                |                                        []    []  |\n     sharutils          |                                              []  |\n     shishi             |                                                  |\n     skribilo           |                                                  |\n     solfege            |                                        []    []  |\n     solfege-manual     |                                              []  |\n     spotmachine        |                                              []  |\n     sudo               |    []                                  []    []  |\n     sudoers            |    []                                  []    []  |\n     sysstat            |                                        []    []  |\n     tar                |          []                            []    []  |\n     texinfo            |                                              []  |\n     texinfo_document   |                                              []  |\n     tigervnc           |                                              []  |\n     tin                |                                                  |\n     tin-man            |                                                  |\n     tracgoogleappsa... |                   []                   []    []  |\n     trader             |                                        []        |\n     util-linux         |                                              []  |\n     ve                 |                                              []  |\n     vice               |                                              []  |\n     vmm                |                                              []  |\n     vorbis-tools       |                                              []  |\n     wastesedge         |                                              []  |\n     wcd                |                                              []  |\n     wcd-man            |                                              []  |\n     wdiff              |                                              []  |\n     wget               |                                        []    []  |\n     wyslij-po          |                                              []  |\n     xboard             |                                              []  |\n     xdg-user-dirs      | [] [] [] []    [] [] [] []    []       []    []  |\n     xkeyboard-config   |    []          []                            []  |\n                        +--------------------------------------------------+\n                          kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl \n                           5 15  4  6  0 13 23  3  3  3  4 11  2 42  1 125\n\n                          nn or pa pl  ps pt pt_BR ro ru rw sk sl sq sr \n                        +------------------------------------------------+\n     a2ps               |          []     []  []   [] []       []    []  |\n     aegis              |                     []      []                 |\n     anubis             |          []                 []             []  |\n     aspell             |          []         []   [] []    [] []    []  |\n     bash               |          []         []      []    [] []    []  |\n     bfd                |                             []             []  |\n     binutils           |                             []             []  |\n     bison              |          []         []                     []  |\n     bison-runtime      |          []     []  []   [] []       [] [] []  |\n     buzztrax           |                     []                         |\n     ccd2cue            |                     []                     []  |\n     ccide              |          []                 []             []  |\n     cflow              |          []         []                     []  |\n     clisp              |                             []                 |\n     coreutils          |          []                 []       []    []  |\n     cpio               |          []                 []             []  |\n     cppi               |          []         []                     []  |\n     cpplib             |                     []      []             []  |\n     cryptsetup         |          []         []                     []  |\n     datamash           |                     []                     []  |\n     denemo             |                                                |\n     dfarc              |          []         []                     []  |\n     dialog             |          []         []   [] []    [] []    []  |\n     dico               |          []                                    |\n     diffutils          |          []         []                     []  |\n     dink               |                                                |\n     direvent           |          []         []                     []  |\n     doodle             |                                         [] []  |\n     dos2unix           |          []         []      []             []  |\n     dos2unix-man       |          []         []                         |\n     e2fsprogs          |          []                                    |\n     enscript           |          []         []   [] []       []    []  |\n     exif               |          []         []   [] []    []       []  |\n     fetchmail          |          []                 []          []     |\n     findutils          |          []         []      []    [] []    []  |\n     flex               |          []         []   [] []             []  |\n     freedink           |          []         []      []       []    []  |\n     fusionforge        |                                                |\n     gas                |                                                |\n     gawk               |          []                                    |\n     gcal               |                                                |\n     gcc                |                                                |\n     gdbm               |          []         []                     []  |\n     gettext-examples   |          []     []  []   [] []    [] []    []  |\n     gettext-runtime    | []       []     []  []   [] []    [] []    []  |\n     gettext-tools      |          []         []   [] []    [] []    []  |\n     gjay               |                                            []  |\n     glunarclock        |          []         []   []       [] []    []  |\n     gnubiff            |                                            []  |\n     gnubik             |          []         []               []    []  |\n     gnucash            |          ()     ()  ()   () ()             []  |\n     gnuchess           |                     []                     []  |\n     gnulib             |          []         []      []       []    []  |\n     gnunet             |                                                |\n     gnunet-gtk         |                                                |\n     gold               |                                                |\n     gphoto2            |          []         []   [] []             []  |\n     gprof              |                     []   [] []             []  |\n     gramadoir          |                                   []       []  |\n     grep               |          []         []      []    [] []    []  |\n     grub               |          []         []      []       []    []  |\n     gsasl              |          []                       []       []  |\n     gss                |          []              []       []       []  |\n     gst-plugins-bad    |          []         []      []    []       []  |\n     gst-plugins-base   |          []         []      []    [] []    []  |\n     gst-plugins-good   |          []         []   [] []    [] []    []  |\n     gst-plugins-ugly   |          []         []   [] []    [] []    []  |\n     gstreamer          |          []         []   [] []    [] []    []  |\n     gtick              |          []         []      []    []       []  |\n     gtkam              |       [] []         []      []    []       []  |\n     gtkspell           |          []     []  []   [] []    [] [] [] []  |\n     guix               |                                                |\n     guix-packages      |                                                |\n     gutenprint         |                                   [] []        |\n     hello              |          []         []      []    [] []    []  |\n     help2man           |          []         []      []             []  |\n     help2man-texi      |          []                                    |\n     hylafax            |                                                |\n     idutils            |          []                 []             []  |\n     iso_15924          |          []     ()       [] []       []    []  |\n     iso_3166           | [] [] [] []     ()  []   [] [] [] [] [] [] []  |\n     iso_3166_2         |          []     ()                         []  |\n     iso_4217           | []       []     ()       [] [] []    []    []  |\n     iso_639            |    [] [] []     ()       [] [] [] [] []    []  |\n     iso_639_3          |       []        ()                             |\n     iso_639_5          |                 ()                         []  |\n     jwhois             |          []         []   []                []  |\n     kbd                |          []                 []                 |\n     klavaro            |       [] []         []      []       []        |\n     ld                 |                                                |\n     leafpad            | []       []     []  []      []    [] []    []  |\n     libc               |          []                 []    []           |\n     libexif            |          []         ()            []           |\n     libextractor       |          []                                    |\n     libgnutls          |          []                                    |\n     libgphoto2         |          []                                    |\n     libgphoto2_port    |          []         []      []    []       []  |\n     libgsasl           |          []              []       []       []  |\n     libiconv           |          []         []            [] []    []  |\n     libidn             |          []         []                     []  |\n     liferea            |          []     []  []   [] ()    []    []     |\n     lilypond           |                                                |\n     lordsawar          |                                                |\n     lprng              |          []                                    |\n     lynx               |                     []      []                 |\n     m4                 |          []         []   [] []             []  |\n     mailfromd          |          []                                    |\n     mailutils          |          []                                    |\n     make               |          []         []      []                 |\n     man-db             |          []                 []             []  |\n     man-db-manpages    |          []                 []             []  |\n     midi-instruments   |          []     []  []   [] []    [] []    []  |\n     minicom            |          []         []   [] []                 |\n     mkisofs            |          []                 []             []  |\n     myserver           |                                      []    []  |\n     nano               |          []         []   [] []       []    []  |\n     opcodes            |                                                |\n     parted             |          []         []      []    [] []    []  |\n     pies               |          []                                    |\n     pnmixer            |                             []                 |\n     popt               |          []     []  []      []       []    []  |\n     procps-ng          |          []                                    |\n     procps-ng-man      |          []                                    |\n     psmisc             |          []         []      []             []  |\n     pspp               |          []                 []                 |\n     pushover           |                                                |\n     pwdutils           |          []                                    |\n     pyspread           | []                  []                         |\n     radius             |          []                 []                 |\n     recode             |          []     []  []   [] []    [] []    []  |\n     recutils           |                     []                     []  |\n     rpm                |          []                                    |\n     rush               |          []         []                     []  |\n     sarg               |                     []      []                 |\n     sed                |          []     []  []   [] []    [] []    []  |\n     sharutils          |          []         []                     []  |\n     shishi             |          []                                []  |\n     skribilo           |                                            []  |\n     solfege            |          []         []      []                 |\n     solfege-manual     |          []         []                         |\n     spotmachine        |                     []                     []  |\n     sudo               |          []         []      []    [] []    []  |\n     sudoers            |          []         []               []    []  |\n     sysstat            |          []         []      []    []       []  |\n     tar                |          []         []      []       []    []  |\n     texinfo            |          []         []      []                 |\n     texinfo_document   |          []         []                         |\n     tigervnc           |                     []      []             []  |\n     tin                |                             []                 |\n     tin-man            |                                                |\n     tracgoogleappsa... |          []         []      []             []  |\n     trader             |                             []             []  |\n     util-linux         |          []         []                         |\n     ve                 |          []         []                     []  |\n     vice               |                                                |\n     vmm                |                                                |\n     vorbis-tools       |          []                          []    []  |\n     wastesedge         |                                                |\n     wcd                |                                                |\n     wcd-man            |                                                |\n     wdiff              |          []         []      []       []    []  |\n     wget               |          []         []      []    []       []  |\n     wyslij-po          | []       []         []                     []  |\n     xboard             |          []                 []             []  |\n     xdg-user-dirs      | [] [] [] []  [] []  []   [] []    [] [] [] []  |\n     xkeyboard-config   |          []         []      []       []        |\n                        +------------------------------------------------+\n                          nn or pa pl  ps pt pt_BR ro ru rw sk sl sq sr \n                           7  3  6 114  1 12  88   32 82  3 40 45  7 101\n\n                          sv  sw ta te tg th tr uk  ur vi  wa wo zh_CN\n                        +----------------------------------------------+\n     a2ps               | []              [] [] []     []              |\n     aegis              |                              []              |\n     anubis             | []                 [] []     []              |\n     aspell             | []                    []     []  []     []   |\n     bash               | []                    []     []         []   |\n     bfd                | []                    []     []              |\n     binutils           | []                    []     []              |\n     bison              | []                    []     []         []   |\n     bison-runtime      | []              [] [] []     []         []   |\n     buzztrax           | []                           []         []   |\n     ccd2cue            |                       []     []         []   |\n     ccide              | []                    []     []         []   |\n     cflow              | []                    []     []         []   |\n     clisp              |                                              |\n     coreutils          | []                    []     []              |\n     cpio               | []                 [] []     []         []   |\n     cppi               | []                    []     []         []   |\n     cpplib             | []                 [] []     []         []   |\n     cryptsetup         |                       []     []         []   |\n     datamash           | []                    []     []              |\n     denemo             |                                         []   |\n     dfarc              | []                           []              |\n     dialog             | []  []          []           []  []     []   |\n     dico               |                       []                     |\n     diffutils          | []                 [] []     []         []   |\n     dink               | []                                           |\n     direvent           |                       []     []              |\n     doodle             | []                           []              |\n     dos2unix           | []                    []     []         []   |\n     dos2unix-man       | []                    []                []   |\n     e2fsprogs          | []                    []     []         []   |\n     enscript           | []                 [] []     []              |\n     exif               | []                 [] []     []         []   |\n     fetchmail          | []                 []        []         []   |\n     findutils          | []                 [] []     []         []   |\n     flex               | []                 []        []         []   |\n     freedink           | []              []           []              |\n     fusionforge        |                                              |\n     gas                |                       []                     |\n     gawk               | []                           []         []   |\n     gcal               | []                 []                   []   |\n     gcc                | []                                           |\n     gdbm               |                       []     []              |\n     gettext-examples   | []                 [] []     []         []   |\n     gettext-runtime    | []                 [] []     []         []   |\n     gettext-tools      | []                 [] []     []         []   |\n     gjay               |                 []           []         []   |\n     glunarclock        | []                           []  []     []   |\n     gnubiff            | []                           []              |\n     gnubik             | []                    []     []         []   |\n     gnucash            |        () ()              () ()         []   |\n     gnuchess           |                       []     []         []   |\n     gnulib             | []                    []     []         []   |\n     gnunet             |                                              |\n     gnunet-gtk         |                                              |\n     gold               |                       []     []              |\n     gphoto2            | []                    []     []         []   |\n     gprof              | []                 [] []     []              |\n     gramadoir          | []                           []         []   |\n     grep               | []              []    []     []         []   |\n     grub               | []                 [] []     []              |\n     gsasl              | []                    []     []         []   |\n     gss                | []                           []         []   |\n     gst-plugins-bad    | []                 [] []     []         []   |\n     gst-plugins-base   | []                 [] []     []         []   |\n     gst-plugins-good   | []                 [] []     []         []   |\n     gst-plugins-ugly   | []                 [] []     []         []   |\n     gstreamer          | []                 [] []     []         []   |\n     gtick              |                       []     []         []   |\n     gtkam              | []                    []     []         []   |\n     gtkspell           | []              [] [] []     []  []     []   |\n     guix               |                                              |\n     guix-packages      |                                              |\n     gutenprint         |                    [] []     []         []   |\n     hello              | []              [] [] []     []         []   |\n     help2man           |                       []     []         []   |\n     help2man-texi      |                       []                     |\n     hylafax            |                              []              |\n     idutils            |                       []     []         []   |\n     iso_15924          | []              () [] []     ()         []   |\n     iso_3166           | []        []    () [] []     ()  []     []   |\n     iso_3166_2         |                 () [] []     ()         []   |\n     iso_4217           | []              () [] []     ()         []   |\n     iso_639            | []     [] []    () [] []     ()  []     []   |\n     iso_639_3          |        []       () [] []     ()              |\n     iso_639_5          |                 ()    []     ()              |\n     jwhois             | []                 []        []         []   |\n     kbd                | []                    []     []         []   |\n     klavaro            | []                    []  [] []     []  []   |\n     ld                 | []                 [] []     []         []   |\n     leafpad            | []              [] [] []     []         []   |\n     libc               | []                 [] []     []         []   |\n     libexif            | []                           []         ()   |\n     libextractor       |                       []     []              |\n     libgnutls          | []                    []     []         []   |\n     libgphoto2         | []                    []     []              |\n     libgphoto2_port    | []                    []     []         []   |\n     libgsasl           | []                    []     []         []   |\n     libiconv           | []                    []     []  []     []   |\n     libidn             | ()                    []     []         []   |\n     liferea            | []                 [] []     []         []   |\n     lilypond           |                              []              |\n     lordsawar          |                                              |\n     lprng              |                              []              |\n     lynx               | []                 [] []     []              |\n     m4                 | []                           []         []   |\n     mailfromd          |                       []     []              |\n     mailutils          |                              []              |\n     make               | []                    []     []         []   |\n     man-db             | []                           []         []   |\n     man-db-manpages    | []                                      []   |\n     midi-instruments   | []              [] [] []     []         []   |\n     minicom            | []                           []              |\n     mkisofs            |                       []     []         []   |\n     myserver           |                              []              |\n     nano               | []                    []     []         []   |\n     opcodes            |                       []     []         []   |\n     parted             | []                 [] []     []         []   |\n     pies               |                       []     []              |\n     pnmixer            |                       []     []         []   |\n     popt               | []     []       [] [] []     []         []   |\n     procps-ng          |                       []     []              |\n     procps-ng-man      |                       []                     |\n     psmisc             | []                    []     []         []   |\n     pspp               |                    [] []                []   |\n     pushover           | []                                           |\n     pwdutils           | []                           []              |\n     pyspread           |                       []                     |\n     radius             |                       []     []              |\n     recode             | []                 []        []         []   |\n     recutils           | []                    []     []              |\n     rpm                | []                    []     []         []   |\n     rush               |                       []     []              |\n     sarg               |                                              |\n     sed                | []                 [] []     []         []   |\n     sharutils          | []                    []     []         []   |\n     shishi             |                              []         []   |\n     skribilo           | []                    []                     |\n     solfege            | []                 []        []         []   |\n     solfege-manual     |                    []                        |\n     spotmachine        | []                    []     []              |\n     sudo               | []                 [] []     []         []   |\n     sudoers            | []                    []     []         []   |\n     sysstat            | []                 [] []     []         []   |\n     tar                | []                 [] []     []         []   |\n     texinfo            |                    [] []     []              |\n     texinfo_document   |                       []                     |\n     tigervnc           | []                    []                []   |\n     tin                |                                         []   |\n     tin-man            |                                              |\n     tracgoogleappsa... | []              []    []     []         []   |\n     trader             | []                                           |\n     util-linux         | []                    []     []         []   |\n     ve                 | []                    []     []         []   |\n     vice               | ()                 ()                        |\n     vmm                |                                              |\n     vorbis-tools       | []                           []              |\n     wastesedge         |                                              |\n     wcd                |                       []     []         []   |\n     wcd-man            |                       []                     |\n     wdiff              | []                    []     []         []   |\n     wget               |                       []     []         []   |\n     wyslij-po          |                       []     []              |\n     xboard             |                       []                []   |\n     xdg-user-dirs      | []     [] []    [] [] []     []         []   |\n     xkeyboard-config   | []                 [] []     []              |\n                        +----------------------------------------------+\n                          sv  sw ta te tg th tr uk  ur vi  wa wo zh_CN\n                          106  1  4  3  0 13 51 115  1 125  7  1  100 \n\n                          zh_HK zh_TW\n                        +-------------+\n     a2ps               |             | 30\n     aegis              |             |  9\n     anubis             |             | 19\n     aspell             |             | 29\n     bash               |        []   | 23\n     bfd                |             | 11\n     binutils           |             | 12\n     bison              |        []   | 18\n     bison-runtime      |        []   | 38\n     buzztrax           |             |  9\n     ccd2cue            |             | 10\n     ccide              |             | 17\n     cflow              |             | 16\n     clisp              |             | 10\n     coreutils          |             | 18\n     cpio               |             | 20\n     cppi               |             | 17\n     cpplib             |        []   | 19\n     cryptsetup         |             | 14\n     datamash           |             | 11\n     denemo             |             |  5\n     dfarc              |             | 17\n     dialog             |        []   | 42\n     dico               |             |  6\n     diffutils          |             | 22\n     dink               |             | 10\n     direvent           |             | 11\n     doodle             |             | 12\n     dos2unix           |        []   | 18\n     dos2unix-man       |             |  9\n     e2fsprogs          |             | 15\n     enscript           |             | 21\n     exif               |             | 27\n     fetchmail          |             | 19\n     findutils          |             | 29\n     flex               |        []   | 19\n     freedink           |             | 24\n     fusionforge        |             |  3\n     gas                |             |  5\n     gawk               |             | 13\n     gcal               |             |  8\n     gcc                |             |  2\n     gdbm               |             | 10\n     gettext-examples   |  []    []   | 40\n     gettext-runtime    |  []    []   | 35\n     gettext-tools      |        []   | 24\n     gjay               |             |  9\n     glunarclock        |        []   | 27\n     gnubiff            |             |  9\n     gnubik             |             | 19\n     gnucash            |        ()   |  6\n     gnuchess           |             | 11\n     gnulib             |             | 23\n     gnunet             |             |  1\n     gnunet-gtk         |             |  1\n     gold               |             |  7\n     gphoto2            |        []   | 19\n     gprof              |             | 21\n     gramadoir          |             | 14\n     grep               |        []   | 31\n     grub               |             | 21\n     gsasl              |        []   | 19\n     gss                |             | 17\n     gst-plugins-bad    |             | 21\n     gst-plugins-base   |             | 27\n     gst-plugins-good   |             | 32\n     gst-plugins-ugly   |             | 34\n     gstreamer          |        []   | 32\n     gtick              |             | 19\n     gtkam              |             | 24\n     gtkspell           |  []    []   | 48\n     guix               |             |  2\n     guix-packages      |             |  0\n     gutenprint         |             | 15\n     hello              |        []   | 30\n     help2man           |             | 18\n     help2man-texi      |             |  5\n     hylafax            |             |  5\n     idutils            |             | 14\n     iso_15924          |        []   | 23\n     iso_3166           |  []    []   | 58\n     iso_3166_2         |             |  9\n     iso_4217           |  []    []   | 28\n     iso_639            |  []    []   | 46\n     iso_639_3          |             | 10\n     iso_639_5          |             |  2\n     jwhois             |        []   | 20\n     kbd                |             | 17\n     klavaro            |             | 30\n     ld                 |        []   | 15\n     leafpad            |        []   | 39\n     libc               |        []   | 24\n     libexif            |             | 10\n     libextractor       |             |  5\n     libgnutls          |             | 13\n     libgphoto2         |             | 10\n     libgphoto2_port    |        []   | 19\n     libgsasl           |             | 18\n     libiconv           |        []   | 29\n     libidn             |             | 17\n     liferea            |             | 29\n     lilypond           |             | 11\n     lordsawar          |             |  3\n     lprng              |             |  3\n     lynx               |             | 19\n     m4                 |        []   | 22\n     mailfromd          |             |  4\n     mailutils          |             |  6\n     make               |             | 19\n     man-db             |             | 15\n     man-db-manpages    |             | 10\n     midi-instruments   |        []   | 43\n     minicom            |        []   | 17\n     mkisofs            |             | 13\n     myserver           |             |  9\n     nano               |        []   | 30\n     opcodes            |             | 12\n     parted             |        []   | 23\n     pies               |             |  4\n     pnmixer            |             |  9\n     popt               |        []   | 36\n     procps-ng          |             |  5\n     procps-ng-man      |             |  4\n     psmisc             |        []   | 22\n     pspp               |             | 13\n     pushover           |             |  6\n     pwdutils           |             |  8\n     pyspread           |             |  6\n     radius             |             |  9\n     recode             |             | 31\n     recutils           |             | 10\n     rpm                |        []   | 13\n     rush               |             | 10\n     sarg               |             |  4\n     sed                |        []   | 35\n     sharutils          |             | 13\n     shishi             |             |  7\n     skribilo           |             |  7\n     solfege            |             | 21\n     solfege-manual     |             |  9\n     spotmachine        |             | 11\n     sudo               |             | 26\n     sudoers            |             | 22\n     sysstat            |             | 23\n     tar                |        []   | 30\n     texinfo            |             | 17\n     texinfo_document   |             | 13\n     tigervnc           |             | 14\n     tin                |        []   |  7\n     tin-man            |             |  1\n     tracgoogleappsa... |        []   | 22\n     trader             |             | 12\n     util-linux         |             | 13\n     ve                 |             | 14\n     vice               |             |  1\n     vmm                |             |  3\n     vorbis-tools       |             | 13\n     wastesedge         |             |  3\n     wcd                |             |  8\n     wcd-man            |             |  3\n     wdiff              |        []   | 23\n     wget               |             | 21\n     wyslij-po          |             | 14\n     xboard             |             | 10\n     xdg-user-dirs      |  []    []   | 68\n     xkeyboard-config   |        []   | 28\n                        +-------------+\n       89 teams           zh_HK zh_TW\n      166 domains           7    42    2809\n\n   Some counters in the preceding matrix are higher than the number of\nvisible blocks let us expect.  This is because a few extra PO files are\nused for implementing regional variants of languages, or language\ndialects.\n\n   For a PO file in the matrix above to be effective, the package to\nwhich it applies should also have been internationalized and distributed\nas such by its maintainer.  There might be an observable lag between the\nmere existence a PO file and its wide availability in a distribution.\n\n   If Jun 2014 seems to be old, you may fetch a more recent copy of this\n'ABOUT-NLS' file on most GNU archive sites.  The most up-to-date matrix\nwith full percentage details can be found at\n'http://translationproject.org/extra/matrix.html'.\n\n1.5 Using 'gettext' in new packages\n===================================\n\nIf you are writing a freely available program and want to\ninternationalize it you are welcome to use GNU 'gettext' in your\npackage.  Of course you have to respect the GNU Lesser General Public\nLicense which covers the use of the GNU 'gettext' library.  This means\nin particular that even non-free programs can use 'libintl' as a shared\nlibrary, whereas only free software can use 'libintl' as a static\nlibrary or use modified versions of 'libintl'.\n\n   Once the sources are changed appropriately and the setup can handle\nthe use of 'gettext' the only thing missing are the translations.  The\nFree Translation Project is also available for packages which are not\ndeveloped inside the GNU project.  Therefore the information given above\napplies also for every other Free Software Project.  Contact\n'coordinator@translationproject.org' to make the '.pot' files available\nto the translation teams.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/AUTHORS",
    "content": "Bruno Haible <bruno@clisp.org>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/COPYING",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<http://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<http://www.gnu.org/philosophy/why-not-lgpl.html>.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/COPYING.LIB",
    "content": "\t\t  GNU LIBRARY GENERAL PUBLIC LICENSE\n\t\t       Version 2, June 1991\n\n Copyright (C) 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the library GPL.  It is\n numbered 2 because it goes with version 2 of the ordinary GPL.]\n\n\t\t\t    Preamble\n\n  The licenses for most software are designed to take away your\nfreedom to share and change it.  By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n  This license, the Library General Public License, applies to some\nspecially designated Free Software Foundation software, and to any\nother libraries whose authors decide to use it.  You can use it for\nyour libraries, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n  To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the library, or if you modify it.\n\n  For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou.  You must make sure that they, too, receive or can get the source\ncode.  If you link a program with the library, you must provide\ncomplete object files to the recipients so that they can relink them\nwith the library, after making changes to the library and recompiling\nit.  And you must show them these terms so they know their rights.\n\n  Our method of protecting your rights has two steps: (1) copyright\nthe library, and (2) offer you this license which gives you legal\npermission to copy, distribute and/or modify the library.\n\n  Also, for each distributor's protection, we want to make certain\nthat everyone understands that there is no warranty for this free\nlibrary.  If the library is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original\nversion, so that any problems introduced by others will not reflect on\nthe original authors' reputations.\n\f\n  Finally, any free program is threatened constantly by software\npatents.  We wish to avoid the danger that companies distributing free\nsoftware will individually obtain patent licenses, thus in effect\ntransforming the program into proprietary software.  To prevent this,\nwe have made it clear that any patent must be licensed for everyone's\nfree use or not licensed at all.\n\n  Most GNU software, including some libraries, is covered by the ordinary\nGNU General Public License, which was designed for utility programs.  This\nlicense, the GNU Library General Public License, applies to certain\ndesignated libraries.  This license is quite different from the ordinary\none; be sure to read it in full, and don't assume that anything in it is\nthe same as in the ordinary license.\n\n  The reason we have a separate public license for some libraries is that\nthey blur the distinction we usually make between modifying or adding to a\nprogram and simply using it.  Linking a program with a library, without\nchanging the library, is in some sense simply using the library, and is\nanalogous to running a utility program or application program.  However, in\na textual and legal sense, the linked executable is a combined work, a\nderivative of the original library, and the ordinary General Public License\ntreats it as such.\n\n  Because of this blurred distinction, using the ordinary General\nPublic License for libraries did not effectively promote software\nsharing, because most developers did not use the libraries.  We\nconcluded that weaker conditions might promote sharing better.\n\n  However, unrestricted linking of non-free programs would deprive the\nusers of those programs of all benefit from the free status of the\nlibraries themselves.  This Library General Public License is intended to\npermit developers of non-free programs to use free libraries, while\npreserving your freedom as a user of such programs to change the free\nlibraries that are incorporated in them.  (We have not seen how to achieve\nthis as regards changes in header files, but we have achieved it as regards\nchanges in the actual functions of the Library.)  The hope is that this\nwill lead to faster development of free libraries.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.  Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\".  The\nformer contains code derived from the library, while the latter only\nworks together with the library.\n\n  Note that it is possible for a library to be covered by the ordinary\nGeneral Public License rather than by this special one.\n\f\n\t\t  GNU LIBRARY GENERAL PUBLIC LICENSE\n   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n  0. This License Agreement applies to any software library which\ncontains a notice placed by the copyright holder or other authorized\nparty saying it may be distributed under the terms of this Library\nGeneral Public License (also called \"this License\").  Each licensee is\naddressed as \"you\".\n\n  A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n  The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms.  A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language.  (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n  \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it.  For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n  Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope.  The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it).  Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n  \n  1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n  You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\f\n  2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n    a) The modified work must itself be a software library.\n\n    b) You must cause the files modified to carry prominent notices\n    stating that you changed the files and the date of any change.\n\n    c) You must cause the whole of the work to be licensed at no\n    charge to all third parties under the terms of this License.\n\n    d) If a facility in the modified Library refers to a function or a\n    table of data to be supplied by an application program that uses\n    the facility, other than as an argument passed when the facility\n    is invoked, then you must make a good faith effort to ensure that,\n    in the event an application does not supply such function or\n    table, the facility still operates, and performs whatever part of\n    its purpose remains meaningful.\n\n    (For example, a function in a library to compute square roots has\n    a purpose that is entirely well-defined independent of the\n    application.  Therefore, Subsection 2d requires that any\n    application-supplied function or table used by this function must\n    be optional: if the application does not supply it, the square\n    root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole.  If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works.  But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n  3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library.  To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License.  (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.)  Do not make any other change in\nthese notices.\n\f\n  Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n  This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n  4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n  If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n  5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\".  Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n  However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\".  The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n  When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library.  The\nthreshold for this to be true is not precisely defined by law.\n\n  If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork.  (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n  Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\f\n  6. As an exception to the Sections above, you may also compile or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n  You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License.  You must supply a copy of this License.  If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License.  Also, you must do one\nof these things:\n\n    a) Accompany the work with the complete corresponding\n    machine-readable source code for the Library including whatever\n    changes were used in the work (which must be distributed under\n    Sections 1 and 2 above); and, if the work is an executable linked\n    with the Library, with the complete machine-readable \"work that\n    uses the Library\", as object code and/or source code, so that the\n    user can modify the Library and then relink to produce a modified\n    executable containing the modified Library.  (It is understood\n    that the user who changes the contents of definitions files in the\n    Library will not necessarily be able to recompile the application\n    to use the modified definitions.)\n\n    b) Accompany the work with a written offer, valid for at\n    least three years, to give the same user the materials\n    specified in Subsection 6a, above, for a charge no more\n    than the cost of performing this distribution.\n\n    c) If distribution of the work is made by offering access to copy\n    from a designated place, offer equivalent access to copy the above\n    specified materials from the same place.\n\n    d) Verify that the user has already received a copy of these\n    materials or that you have already sent this user a copy.\n\n  For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it.  However, as a special exception,\nthe source code distributed need not include anything that is normally\ndistributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n  It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system.  Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\f\n  7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n    a) Accompany the combined library with a copy of the same work\n    based on the Library, uncombined with any other library\n    facilities.  This must be distributed under the terms of the\n    Sections above.\n\n    b) Give prominent notice with the combined library of the fact\n    that part of it is a work based on the Library, and explaining\n    where to find the accompanying uncombined form of the same work.\n\n  8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License.  Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License.  However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n  9. You are not required to accept this License, since you have not\nsigned it.  However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works.  These actions are\nprohibited by law if you do not accept this License.  Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n  10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions.  You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\f\n  11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all.  For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices.  Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n  12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded.  In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n  13. The Free Software Foundation may publish revised and/or new\nversions of the Library General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number.  If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation.  If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\f\n  14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission.  For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this.  Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n\t\t\t    NO WARRANTY\n\n  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n\t\t     END OF TERMS AND CONDITIONS\n\f\n     Appendix: How to Apply These Terms to Your New Libraries\n\n  If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change.  You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n  To apply these terms, attach the following notices to the library.  It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the library's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This library is free software; you can redistribute it and/or\n    modify it under the terms of the GNU Library General Public\n    License as published by the Free Software Foundation; either\n    version 2 of the License, or (at your option) any later version.\n\n    This library is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n    Library General Public License for more details.\n\n    You should have received a copy of the GNU Library General Public\n    License along with this library; if not, write to the Free\n    Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n    MA 02110-1301, USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary.  Here is a sample; alter the names:\n\n  Yoyodyne, Inc., hereby disclaims all copyright interest in the\n  library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n  <signature of Ty Coon>, 1 April 1990\n  Ty Coon, President of Vice\n\nThat's all there is to it!\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/ChangeLog",
    "content": "2017-01-30  Bruno Haible  <bruno@clisp.org>\n\n\tPrepare for version 1.15.\n\t* src/iconv.c (print_version): Update copyright year.\n\t* windows/iconv.rc: Likewise.\n\t* windows/libiconv.rc: Likewise.\n\n2016-12-29  Bruno Haible  <bruno@clisp.org>\n\n\tMake Makefile.devel consistent with .gitignore.\n\t* Makefile.devel (srclib/Makefile.in): Depend on aclocal.m4.\n\t(totally-clean): Remove also aclocal.m4.\n\n2016-12-25  Bruno Haible  <bruno@clisp.org>\n\n\tTweak autogen.sh.\n\t* autogen.sh: Emit a \"done\" diagnostic when autogen.sh completed\n\tsuccessfully.\n\n2016-12-25  Bruno Haible  <bruno@clisp.org>\n\n\tReorder Makefile.devel.\n\t* Makefile.devel: Reorder: put gnulib targets before autotools targets.\n\n2016-12-14  Bruno Haible  <bruno@clisp.org>\n\n\tCleanup useless removals.\n\t* lib/Makefile.in (distclean): No need to remove 'libtool'.\n\n2016-12-04  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate comments.\n\t* Makefile.devel: Update comments about release process.\n\n2016-12-04  Bruno Haible  <bruno@clisp.org>\n\n\tCreate tarballs through an Automake-like \"make dist\" command.\n\t* Makefile.in (SOURCE_FILES, LIBTOOL_IMPORTED_FILES,\n\tAUTOMAKE_OLD_IMPORTED_FILES, AUTOMAKE_IMPORTED_FILES, IMPORTED_FILES,\n\tGENERATED_FILES, DISTRIBUTED_BUILT_FILES, DISTFILES): New macros.\n\t(distdir): New target.\n\t(PACKAGE, VERSION, TAR, GZIP): New macros.\n\t(dist): New target.\n\t* lib/Makefile.in (SOURCE_FILES, IMPORTED_FILES, GENERATED_FILES,\n\tDISTRIBUTED_BUILT_FILES, DISTFILES): New macros.\n\t(distdir): New target.\n\t* man/Makefile.in (SOURCE_FILES, IMPORTED_FILES, GENERATED_FILES,\n\tDISTRIBUTED_BUILT_FILES, DISTFILES): New macros.\n\t(distdir): New target.\n\t* preload/Makefile.in (SOURCE_FILES, IMPORTED_FILES, GENERATED_FILES,\n\tDISTRIBUTED_BUILT_FILES, DISTFILES): New macros.\n\t(distdir): New target.\n\t* src/Makefile.in (SOURCE_FILES, IMPORTED_FILES, GENERATED_FILES,\n\tDISTRIBUTED_BUILT_FILES, DISTFILES): New macros.\n\t(distdir): New target.\n\t* tests/Makefile.in (SOURCE_FILES, IMPORTED_FILES, GENERATED_FILES,\n\tDISTRIBUTED_BUILT_FILES, DISTFILES): New macros.\n\t(distdir): New target.\n\n2016-12-04  Bruno Haible  <bruno@clisp.org>\n\n\tRemove duplicates of imported files from version control.\n\t* autogen.sh: Copy imported files to libcharset.\n\n2016-12-04  Bruno Haible  <bruno@clisp.org>\n\n\tAlways use the newest released copies of files brought in from Automake.\n\t* Makefile.devel (srclib/Makefile.in): Make sure to get new versions of\n\tfiles brought in by automake.\n\t* build-aux/install-sh: Remove from version control.\n\t* build-aux/missing: Likewise.\n\n2016-12-04  Bruno Haible  <bruno@clisp.org>\n\n\tAlways use the newest copies of config.guess, config.sub.\n\t* Makefile.devel (gnulib-imported-files): New target.\n\t* autogen.sh: Invoke it.\n\t* build-aux/config.guess: Remove from version control.\n\t* build-aux/config.sub: Likewise.\n\n2016-12-04  Bruno Haible  <bruno@clisp.org>\n\n\tAlways use the newest copy of fcntl-o.m4.\n\t* m4/fcntl-o.m4: Remove file. Rely on srcm4/fcntl-o.m4 instead.\n\n2016-12-04  Bruno Haible  <bruno@clisp.org>\n\n\tRemove obsolete documentation.\n\t* PORTS: Remove file.\n\n2016-12-03  Bruno Haible  <bruno@clisp.org>\n\n\tMake Makefile.devel more useful for the users of the released tarball.\n\t* Makefile.devel (srclib/Makefile.gnulib): Don't force this target.\n\t(gnulib-clean): New target.\n\t(totally-clean): New target. Do the removals from autogen.sh. Also,\n\tremove lib/aliases*.gperf, lib/canonical*.h, man/iconvctl.3.html,\n\tman/iconv_open_into.3.html.\n\t* autogen.sh: Invoke target gnulib-clean before srclib/Makefile.gnulib.\n\tInvoke target totally-clean before all.\n\t* preload/Makefile.devel (totally-clean): New target.\n\n2016-12-03  Bruno Haible  <bruno@clisp.org>\n\n\tModernize configure.ac.\n\t* configure.ac: Use 2-argument AC_INIT. Avoid an AM_INIT_AUTOMAKE\n\twarning.\n\t* preload/configure.ac: Use 2-argument AC_INIT. Use AC_CONFIG_SRCDIR.\n\n2016-12-03  Bruno Haible  <bruno@clisp.org>\n\n\tTowards reproducible builds.\n\t* Makefile.devel (man/%.html): Remove the CreationDate comment line\n\tfrom the output.\n\n2016-12-04  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate to gettext-0.19.8.1.\n\t* ABOUT-NLS: Update through 'gettextize'.\n\n2016-12-03  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate documentation.\n\t* HACKING: Refer to the Git repository.\n\n2016-12-03  Bruno Haible  <bruno@clisp.org>\n\n\tAvoid compilation warnings in 'genflags' program.\n\t* lib/genflags.c: Avoid warnings from GCC's -Wunused-function option.\n\n2016-12-02  Bruno Haible  <bruno@clisp.org>\n\n\t* relocatable.c: Update from gnulib.\n\n2016-11-25  Bruno Haible  <bruno@clisp.org>\n\n\tPrepare for version 1.15.\n\t* configure.ac: Bump version number to 1.15.\n\t* README: Likewise.\n\t* include/iconv.h.in (_LIBICONV_VERSION): Likewise.\n\t* windows/iconv.rc: Update.\n\t* windows/libiconv.rc: Update.\n\t* Makefile.devel: Update comments.\n\t* lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 8:0:6.\n\t* src/iconv.c (print_version): Update copyright year.\n\n2016-11-23  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate installation instructions for Windows.\n\t* README.windows: Assume a 64-bit Windows. Explain both 32-bit and\n\t64-bit builds. Add instructions for the MS Visual C/C++ tool chain.\n\tRevamp instructions for Cygwin.\n\n2016-11-23  Bruno Haible  <bruno@clisp.org>\n\n\tDrop the nickname \"woe32\".\n\t* README.windows: Renamed from README.woe32.\n\n2016-11-22  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate support for building with MSVC.\n\t* Makefile.devel (srclib/Makefile.in): Import 'ar-lib' and 'compile'\n\tfrom gnulib.\n\t* lib/Makefile.in (install-lib, install): Install the .la file with\n\t$(INSTALL), not $(INSTALL_DATA). Otherwise the native Windows DLL gets\n\tinstalled without execution permissions, and programs linked to it fail:\n\tin a Cygwin shell with exit code 127, or from a cmd.exe window with a\n\tdialog \"The application was unable to start correctly (0xc0000022).\"\n\n2016-11-19  Bruno Haible  <bruno@clisp.org>\n\n\tFix link error when compiling with gcc -O0.\n\t* lib/iconv.c (aliases2_lookup): Make static.\n\tReported by Chung-Lin Tang <chunglin.tang@gmail.com>\n\tat https://savannah.gnu.org/bugs/?47953 .\n\n2016-11-17  Bruno Haible  <bruno@clisp.org>\n\n\tUTF-8: Reject surrogates and out-of-range code points.\n\t* lib/utf8.h (utf8_mbtowc, utf8_wctomb): Reject code points in the\n\trange 0xD800..0xDFFF and >= 0x110000.\n\t* tests/genutf8.c (main): Don't emit mappings for 0xD800..0xDFFF.\n\n2016-10-22  Bruno Haible  <bruno@clisp.org>\n\n\tSwitch to libtool 2.4.6.\n\t* m4/libtool.m4: Update from libtool-2.4.6, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}..\n\t* m4/ltoptions.m4: Likewise.\n\t* m4/ltversion.m4: Likewise.\n\t* build-aux/ltmain.sh: Likewise.\n\n2016-10-14  Bruno Haible  <bruno@clisp.org>\n\n\tUse 'size_t', not 'int', for the length of a string.\n\t* lib/iconv.c: Include <limits.h>.\n\t* lib/genflags.c: Likewise.\n\t* lib/converters.h (struct mbtowc_funcs, struct wctomb_funcs): Change\n\t'int n' parameter to 'size_t n'.\n\t(RET_COUNT_MAX): New macro.\n\t* lib/*.h: Use 'size_t n' instead of 'int n'.\n\t* lib/ucs2.h (ucs2_mbtowc): Make sure 'count' does not cause an 'int'\n\toverflow.\n\t* lib/ucs4.h (ucs4_mbtowc): Likewise.\n\t* lib/utf16.h (utf16_mbtowc): Likewise.\n\t* lib/utf32.h (utf32_mbtowc): Likewise.\n\t* tools/8bit_tab_to_h.c: Generate function signatures with 'size_t n'.\n\t* tools/cjk_tab_to_h.c: Likewise.\n\t* NEWS: Mention the change.\n\n2016-10-04  Bruno Haible  <bruno@clisp.org>\n\n\tExtend CP1255 mapping.\n\t* lib/cp1255.h (cp1255_2uni, cp1255_page05): Map 0xCA to U+05BA.\n\t* tests/CP1255.TXT: Likewise.\n\tThis matches http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit1255.txt\n\tand what the native Windows converter does since at least Windows XP.\n\n2016-10-01  Ben Noordhuis  <info@bnoordhuis.nl>  (tiny change)\n            Bruno Haible  <bruno@clisp.org>\n\n\tRemove large stack requirement from gentranslit.\n\t* lib/gentranslit.c (main): Heap-allocate large arrays.\n\t* Makefile.devel (lib/translit.h): Remove 'ulimit -s unlimited' command.\n\n2015-12-10  Ben Noordhuis  <info@bnoordhuis.nl>  (tiny change)\n\n\tRemove unused array from gentranslit.\n\t* lib/gentranslit.c (main): Remove unused array.\n\t* Makefile.devel (CC): Add -Wall option.\n\tReported in https://savannah.gnu.org/bugs/?46663 .\n\n2016-10-01  Bruno Haible  <bruno@clisp.org>\n\n\tFix bug #41187.\n\t* src/iconv.c (main): Increment i after parsing the --silent option.\n\tReported in https://savannah.gnu.org/bugs/?41187 .\n\n2016-10-01  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate to current gnulib.\n\t* Makefile.devel (GNULIB_MODULES): Remove memmove.\n\t* tests/Makefile.in (INCLUDES): Make sure to include the top-level\n\t\"config.h\". Needed for the 'binary-io' module.\n\n2016-10-01  Bruno Haible  <bruno@clisp.org>\n\n\tSwitch to automake 1.15.\n\t* autogen.sh: Update comment.\n\t* Makefile.devel (AUTOMAKE, ACLOCAL): Switch to version 1.15.\n\t(srclib/Makefile.in): Don't remove auxiliary files brought in by\n\tautomake.\n\t* preload/Makefile.devel (ACLOCAL): Switch to version 1.15.\n\t* srclib/Makefile.am (AUTOMAKE_OPTIONS): Add subdir-objects.\n\t* build-aux/missing: Update from automake-1.15.\n\n2016-10-01  Bruno Haible  <bruno@clisp.org>\n\n\tRemove autogenerated doc files from version control.\n\t* man/iconvctl.3.html: Remove file.\n\t* man/iconv_open_into.3.html: Remove file.\n\n2012-12-06  Bruno Haible  <bruno@clisp.org>\n\n\tChange copyright holder of man pages.\n\t* man/*.[13]: Replace myself with FSF.\n\n2012-06-30  Bruno Haible  <bruno@clisp.org>\n\n\tMake it possible to run 'genaliases2' on native Windows.\n\t* lib/genaliases2.c (main): Expect 3 arguments. Open the output files\n\texplicitly. Complain if they don't exist.\n\t* Makefile.devel (lib/aliases_*.h): Pass the output filenames as\n\targuments to genaliases.\n\tReported at <http://savannah.gnu.org/bugs/?36748>.\n\n\tMake it possible to run 'genaliases' on native Windows.\n\t* lib/genaliases.c (main): Expect 3 arguments. Open the output files\n\texplicitly. Complain if they don't exist. Improve error checking.\n\t* Makefile.devel (lib/aliases*.h): Pass the output filenames as\n\targuments to genaliases.\n\tReported at <http://savannah.gnu.org/bugs/?36748>.\n\n2012-05-13  Bruno Haible  <bruno@clisp.org>\n\n\tTweak the GB18030 converter to map 0x8135F437 to U+E7C7.\n\t* lib/gb18030.h (gb18030_pua2charset, gb18030_wctomb): Remove mapping\n\tfrom U+E7C7 to 0xA8BC.\n\t* lib/gb18030uni.h (gb18030uni_mbtowc): Treat 0x8135F437 as a special\n\tcase.\n\t(gb18030uni_wctomb): Treat U+E7C7 as a special case.\n\t* tests/GB18030-BMP.TXT: Map 0x8135F437 to U+E7C7, not U+1E3F.\n\t* tests/GB18030.IRREVERSIBLE.TXT: Remove irreversible mappings for\n\t0x8135F437 and U+E7C7.\n\n2012-04-28  Bruno Haible  <bruno@clisp.org>\n\n\tSwitch to autoconf 2.69 and automake 1.12.\n\t* autogen.sh: Update comment.\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.69.\n\t(AUTOMAKE, ACLOCAL): Switch to version 1.12.\n\t* preload/Makefile.devel (AUTOCONF): Switch to version 2.69.\n\t(ACLOCAL): Switch to version 1.12.\n\n2012-03-24  Bruno Haible  <bruno@clisp.org>\n\n\tAvoid a GCC warning.\n\t* lib/isoir165.h (isoir165_mbtowc): Don't shadow the 'ret' variable.\n\n2012-01-26  Bruno Haible  <bruno@clisp.org>\n\n\tModernize quoting.\n\t* README: Quote 'like this', not `like this', as per the recent change\n\tto the GNU coding standards.\n\t* NOTES: Likewise.\n\t* gnulib-local/lib/xmalloc.c: Likewise.\n\t* lib/config.h.in: Likewise.\n\t* src/iconv.c (usage): Likewise.\n\t* tests/uniq-u.c: Likewise.\n\t* tools/cjk_tab_to_h.c (output_uni2charset_sparse, do_jisx0213):\n\tLikewise.\n\t* lib/big5.h: Update accordingly.\n\t* lib/cns11643_inv.h: Likewise.\n\t* lib/cp932ext.h: Likewise.\n\t* lib/cp950ext.h: Likewise.\n\t* lib/gb12345ext.h: Likewise.\n\t* lib/gb2312.h: Likewise.\n\t* lib/gbkext_inv.h: Likewise.\n\t* lib/hkscs1999.h: Likewise.\n\t* lib/hkscs2001.h: Likewise.\n\t* lib/hkscs2004.h: Likewise.\n\t* lib/hkscs2008.h: Likewise.\n\t* lib/isoir165ext.h: Likewise.\n\t* lib/jisx0208.h: Likewise.\n\t* lib/jisx0212.h: Likewise.\n\t* lib/jisx0213.h: Likewise.\n\t* lib/ksc5601.h: Likewise.\n\t* lib/uhc_1.h: Likewise.\n\t* lib/uhc_2.h: Likewise.\n\n2012-01-15  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for MSVC 9.\n\t* lib/config.h.in (inline, mode_t, ssize_t): Copy snippets from top\n\tconfig.h.in.\n\t* tests/genutf8.c: Include config.h.\n\t* tests/gengb18030z.c: Likewise.\n\t* woe32dll/export.h (VARIABLE): Define to empty if not using GCC.\n\n2011-01-28  Bruno Haible  <bruno@clisp.org>\n\n\tAdd a comment.\n\t* woe32dll/export.h: Add a reference to the woe32dll writeup.\n\n2012-01-06  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate after gnulib changed.\n\t* gnulib-local/lib/error.h.diff: Update.\n\n2012-01-06  Bruno Haible  <bruno@clisp.org>\n\n\tTalk about \"native Windows API\", not \"Woe32\".\n\t* lib/relocatable.c: Update comments to mention native Windows.\n\n2012-01-04  Bruno Haible  <bruno@clisp.org>\n\n\tTalk about \"native Windows API\", not \"Win32\".\n\t* lib/relocatable.c: Update comments to mention native Windows.\n\t(WINDOWS_NATIVE): Renamed from WIN32_NATIVE.\n\n2011-10-27  Bruno Haible  <bruno@clisp.org>\n\n\tFix bug with error handling in UCS-2, UCS-4, UTF-32 decoders.\n\t* lib/ucs2.h (ucs2_mbtowc): Increment count only after validating wc.\n\t* lib/ucs4.h (ucs4_mbtowc): Likewise.\n\t* lib/utf32.h (utf32_mbtowc): Likewise.\n\tReported at <https://savannah.gnu.org/bugs/?34916>.\n\n2012-06-30  Bruno Haible  <bruno@clisp.org>\n\n\tImprove ISO-2022-CP-MS versus CP932.\n\t* lib/iso2022_jpms.h (iso2022_jpms_mbtowc): Recognize characters from\n\tthe rows 0x79..0x7C as rows from CP932.\n\t* tests/ISO-2022-JP-MS-snippet.alt: New file, renamed from\n\ttests/ISO-2022-JP-MS-snippet.\n\t* tests/ISO-2022-JP-MS-snippet.UTF-8: Update the rows that correspond\n\tto ESC $ B 0x79..0x7C.\n\t* tests/ISO-2022-JP-MS-snippet: Likewise.\n\t* tests/check-stateful: Also test the *-snippet.alt file if it exists.\n\t* tests/check-stateful.bat: Likewise.\n\n2012-06-30  Bruno Haible  <bruno@clisp.org>\n\n\tImprove ISO-2022-CP-MS versus CP932.\n\t* lib/cp50221_0208_ext.h (cp50221_0208_ext_page30): Map U+301D like\n\tU+301E.\n\t* lib/iso2022_jpms.h (iso2022_jpms_wctomb): Map U+663B to JISX0208\n\t0x7A 0x36, U+FFE2 to 0x7C 0x7B, U+FFE4 to 0x7C 0x7C.\n\tReported by Jeff Diehl <diehl.jeff@gmail.com>.\n\n2011-10-23  Bruno Haible  <bruno@clisp.org>\n\n\tNew encoding ISO-2022-CP-MS.\n\t* NOTES: Mention ISO-2022-JP-MS.\n\t* tools/CP50221-0208-EXT.TXT: New file.\n\t* tools/CP50221-0212-EXT.TXT: New file.\n\t* tools/8bit_tab_to_h.c: Add comments about how to generate\n\tcp50221_0208_ext.h, cp50221_0212_ext.h.\n\t* tools/Makefile: Add rules for generating cp50221_0208_ext.h,\n\tcp50221_0212_ext.h.\n\t* lib/cp50221_0208_ext.h: New file, mostly generated.\n\t* lib/cp50221_0212_ext.h: New file, mostly generated.\n\t* lib/iso2022_jpms.h: New file.\n\t* lib/converters.h: Include it.\n\t* lib/encodings.def: Add ISO-2022-JP-MS.\n\t* README, man/iconv_open.3: Add ISO-2022-JP-MS.\n\t* tests/ISO-2022-JP-MS-snippet: New file.\n\t* tests/ISO-2022-JP-MS-snippet.UTF-8: New file.\n\t* tests/Makefile.in (check): Also test ISO-2022-JP-MS.\n\tReported by Jeff Diehl <diehl.jeff@gmail.com>.\n\n2011-10-23  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/encodings.def: Add comments about Windows names of encodings.\n\n2011-10-18  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.4.2, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}..\n\t* m4/ltoptions.m4: Likewise.\n\t* m4/ltversion.m4: Likewise.\n\t* build-aux/ltmain.sh: Likewise.\n\n2011-10-03  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/relocatable.c: Update from gnulib.\n\n2011-09-02  Bruno Haible  <bruno@clisp.org>\n\n\tFix \"make check\" failure when $(srcdir) != $(builddir).\n\t* tests/Makefile.in (check): When $(srcdir) != ., temporarily copy\n\tGB18030.IRREVERSIBLE.TXT into the build directory.\n\tReported by Christian Weisgerber <naddy@mips.inka.de>.\n\n2011-08-07  Bruno Haible  <bruno@clisp.org>\n\n\tEnsure all HTML-formatted man pages are up-to-date.\n\t* Makefile.devel (all): Depend on man/iconvctl.3.html and\n\tman/iconv_open_into.3.html.\n\n2011-08-07  Bruno Haible  <bruno@clisp.org>\n\n\t* Version 1.14 released.\n\n2011-08-07  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Bump version number to 1.14.\n\t* README: Likewise.\n\t* include/iconv.h.in (_LIBICONV_VERSION): Likewise.\n\t* windows/iconv.rc: Update.\n\t* lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 7:1:5.\n\t* src/iconv.c (print_version): Update copyright year.\n\n2011-08-07  Bruno Haible  <bruno@clisp.org>\n\n\tAvoid a test failure on Solaris 2.6 and HP-UX 11.00.\n\t* tests/test-to-wchar.c (main): Skip the test if conversion to wchar_t\n\tis not supported.\n\n2011-08-07  Bruno Haible  <bruno@clisp.org>\n\n\t* tests/check-subst: Add comments about OSF/1.\n\n2011-08-07  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/relocatable.c: Update from gnulib.\n\n2011-08-06  Bruno Haible  <bruno@clisp.org>\n\n\tUpgrade the GB18030 converter to the version from 2005.\n\t* lib/gb18030ext.h (gb18030ext_2uni_pagefe): Change element type to\n\t'unsigned int'. Change values for 0xFE51..0xFE53, 0xFE59, 0xFE61,\n\t0xFE66, 0xFE67, 0xFE6C, 0xFE6D, 0xFE76, 0xFE7E, 0xFE90, 0xFE91, 0xFEA0.\n\t(gb18030ext_mbtowc): Change type of wc to 'unsigned int'. Change values\n\tfor 0xA6D9..0xA6DF, 0xA6EC..0xA6ED, 0xA6F3, 0xA8BC.\n\t(gb18030ext_page9f, gb18030ext_pagefe): New constant arrays.\n\t(gb18030ext_wctomb): Change values for U+1E3F, U+9FB4..U+9FBB,\n\tU+FE10..U+FE19, U+20087, U+20089, U+200CC, U+215D7, U+2298F, U+241FE.\n\t* tests/GB18030-BMP.TXT: Change values for 0xA6D9..0xA6DF,\n\t0xA6EC..0xA6ED, 0xA6F3, 0xA8BC, 0xFE51..0xFE53, 0xFE59, 0xFE61, 0xFE66,\n\t0xFE67, 0xFE6C, 0xFE6D, 0xFE76, 0xFE7E, 0xFE90, 0xFE91, 0xFEA0, to map\n\tto now-assigned Unicode codepoints.\n\t* tests/GB18030.IRREVERSIBLE.TXT: New file.\n\n2011-08-06  Bruno Haible  <bruno@clisp.org>\n\n\tFix conversion bug in CP1258 converter.\n\t* lib/vietcomb.h (viet_comp_table_data): Remove entry for\n\tU+00A5 U+0301. Fix entry for U+00A8 U+0301.\n\t(viet_decomp_table): Fix entry for U+0385.\n\t* tests/CP1258.IRREVERSIBLE.TXT: Update.\n\tReported by Gertjan Halkes <gertjan@ghalkes.nl>.\n\n2011-07-03  Bruno Haible  <bruno@clisp.org>\n\n\tImprove interactive behaviour of iconv program.\n\t* src/iconv.c (convert): Flush the output before starting a possibly\n\tblocking safe_read call.\n\n2011-07-03  Bruno Haible  <bruno@clisp.org>\n\n\tFix interactive behaviour of iconv program.\n\t* Makefile.devel (GNULIB_MODULES): Add safe-read.\n\t* src/iconv.c: Include safe-read.h.\n\t(convert): Take the infile as a file descriptor, not as a FILE stream.\n\tUse safe_read() instead of fread().\n\t(main): Update.\n\tReported by Xavier Pucel <xpucel@hotmail.com>.\n\n2011-05-02  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate after gnulib changed.\n\t* autogen.sh (GNULIB_MODULES): Remove exit, add stdlib.\n\n2011-06-02  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate after gnulib changed.\n\t* gnulib-local/m4/alloca.m4 (gl_FUNC_ALLOCA): Update.\n\n2011-06-04  Bruno Haible  <bruno@clisp.org>\n\n\tWork around <wchar.h> bug on OSF/1 5.1.\n\t* lib/loop_wchar.h: Before including <wchar.h>, include <stdio.h> and\n\tsome other includes.\n\n2011-03-27  KO Myung-Hun  <komh@chollian.net>\n\n\tFix installation on OS/2.\n\t* src/Makefile.in (all, iconv_no_i18n): Add $(EXEEXT) suffix to\n\ticonv_no_i18n. This is the recommended way to use libtool, see\n\t<http://lists.gnu.org/archive/html/bug-libtool/2009-04/msg00013.html>.\n\n2011-03-31  Bruno Haible  <bruno@clisp.org>\n\n\tgentranslit: Fix buffer overrun.\n\t* lib/gentranslit.c (main): Allocate more room for the suffix strings\n\tof the translit pages.\n\tReported by Ben Noordhuis <info@bnoordhuis.nl>.\n\n2011-02-28  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/relocatable.h: Update from gnulib.\n\t* lib/relocatable.c: Likewise.\n\n2011-01-29  Corinna Vinschen  <corinna-cygwin@cygwin.com>\n            Bruno Haible  <bruno@clisp.org>\n\n\tSimplify \"wchar_t\" handling on Cygwin 1.7.x.\n\t* lib/iconv.c (iconv_canonicalize): On Cygwin >= 1.7, map\n\tei_local_wchar_t to ei_utf16le or ei_utf16be, not ei_ucs2internal.\n\t* lib/iconv_open1.h: Likewise.\n\tRationale: <http://cygwin.com/ml/cygwin/2011-01/msg00410.html>.\n\n2011-01-29  Bruno Haible  <bruno@clisp.org>\n\n\tAdjust the meaning of \"wchar_t\" on native Windows systems.\n\t* lib/iconv.c (iconv_canonicalize): On native Windows, map\n\tei_local_wchar_t to ei_utf16le or ei_utf16be, not ei_ucs2internal.\n\t* lib/iconv_open1.h: Likewise.\n\tReported by Corinna Vinschen <corinna-cygwin@cygwin.com>\n\tin <http://cygwin.com/ml/cygwin/2011-01/msg00410.html>.\n\n2010-11-23  Bruno Haible  <bruno@clisp.org>\n\n\tImplement newer release of BIG5-HKSCS.\n\t* tools/Makefile (ALL): Add hkscs2008.h.\n\t(hkscs2008.h): New rule.\n\t* tools/cjk_tab_to_h.c (main): Recognize hkscs2008.\n\t* lib/encodings.def: Add BIG5-HKSCS:2008. Change BIG5-HKSCS alias to be\n\tequivalent to BIG5-HKSCS:2008.\n\t* lib/hkscs2008.h: New file, autogenerated.\n\t* lib/big5hkscs2008.h: New file, based on lib/big5hkscs2004.h.\n\t* lib/converters.h: Include the new file.\n\t* README, man/iconv_open.3: Add BIG5-HKSCS:2004.\n\t* tests/BIG5-HKSCS-2008.TXT: New file, based on\n\ttests/BIG5-HKSCS-2004.TXT.\n\t* tests/BIG5-HKSCS-2008.IRREVERSIBLE.TXT: New file, copied from\n\ttests/BIG5-HKSCS-2004.IRREVERSIBLE.TXT\n\t* tests/BIG5-HKSCS-2008-snippet: New file, based on\n\ttests/BIG5-HKSCS-2004-snippet.\n\t* tests/BIG5-HKSCS-2008-snippet.UTF-8: New file, based on\n\ttests/BIG5-HKSCS-2004-snippet.UTF-8.\n\t* tests/Makefile.in (check): Check also BIG5-HKSCS:2008.\n\tReported by oCameLo <camel322@gmail.com>.\n\n2010-11-23  Bruno Haible  <bruno@clisp.org>\n\n\tMake cjk_tab_to_h 64-bit clean.\n\t* tools/cjk_tab_to_h.c (do_jisx0213): Add a cast from size_t to int.\n\t(output_title): Update copyright year.\n\n2010-09-23  Bruno Haible  <bruno@clisp.org>\n\n\tSwitch to autoconf 2.68.\n\t* autogen.sh: Update comment.\n\t* configure.ac: Fix AC_COMPILE_IFELSE invocation.\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.68.\n\t* preload/Makefile.devel (AUTOCONF): Likewise.\n\n2010-09-23  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.4, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}.\n\t* m4/ltversion.m4: Update from libtool-2.4.\n\t* build-aux/ltmain.sh: Likewise.\n\n2010-09-23  Bruno Haible  <bruno@clisp.org>\n\n\tSimplify use of gnulib-tool now that gnulib-tool --import works better.\n\t* autogen.sh: Don't remove gnulib-cache.m4 before running gnulib-tool.\n\t* Makefile.devel (srclib/Makefile.gnulib): Depend on 'force'.\n\n2010-07-31  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.67.\n\t* preload/Makefile.devel (AUTOCONF): Likewise.\n\n2010-07-03  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.66.\n\t* preload/Makefile.devel (AUTOCONF): Likewise.\n\n2010-06-04  Bruno Haible  <bruno@clisp.org>\n\n\tAddendum to 2009-10-18 commit.\n\t* m4/fcntl-o.m4: New file, from gnulib.\n\t* configure.ac: Invoke gl_FCNTL_O_FLAGS.\n\t* lib/config.h.in (HAVE_WORKING_O_NOFOLLOW): New macro.\n\n2010-06-04  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.2.8, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}.\n\t* m4/ltoptions.m4: Update from libtool-2.2.8.\n\t* m4/ltversion.m4: Likewise.\n\t* m4/lt~obsolete.m4: Likewise.\n\t* build-aux/ltmain.sh: Likewise.\n\n2010-04-06  Bruno Haible  <bruno@clisp.org>\n\n\tAvoid a compilation error of gnulib's test-iconv-h-c++.cc on mingw.\n\t* include/iconv.h.in: Restrict the extern \"C\" { ... } scope so that it\n\tdoesn't contains #include directives.\n\n2010-03-30  Bruno Haible  <bruno@clisp.org>\n\n\t* README.woe32: Update for Cygwin 1.7.x.\n\n2009-12-26  Bruno Haible  <bruno@clisp.org>\n\n\t* windows/libiconv.rc: Update.\n\t* windows/iconv.rc: Update.\n\n2009-12-11  Bruno Haible  <bruno@clisp.org>\n\n\t* include/iconv.h.in: Untabify.\n\t* gnulib-local/lib/xalloc.h: Untabify.\n\t* woe32dll/export.h: Untabify.\n\t* tests/uniq-u.c: Untabify.\n\n2009-12-11  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/Makefile.am (MOSTLYCLEANDIRS): New macro.\n\n2009-12-11  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.65.\n\t* preload/Makefile.devel (AUTOCONF): Likewise.\n\n2009-11-22  Bruno Haible  <bruno@clisp.org>\n\n\t* tests/check-subst: Add reference to the Solaris printf bug.\n\tReported by Dagobert Michelsen <dagobert@familie-michelsen.de>.\n\n2009-09-01  Bruno Haible  <bruno@clisp.org>\n\n\t* README.woe32: Put the -mno-cygwin option into CC and CXX.\n\tRecommended by Paolo Bonzini and Eric Blake.\n\n2009-08-15  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.64.\n\t* preload/Makefile.devel (AUTOCONF): Likewise.\n\n2009-08-15  Bruno Haible  <bruno@clisp.org>\n\n\tUse .git/info/exclude, not .gitignore, for imported or generated files.\n\t* Makefile.devel (srclib/Makefile.gnulib): Pass option --no-vc-files to\n\tgnulib-tool.\n\n2009-07-07  Bruno Haible  <bruno@clisp.org>\n\n\tFix an endless loop.\n\t* lib/loop_wchar.h (wchar_to_loop_convert): Handle the case of\n\tincomplete input correctly.\n\t* tests/test-to-wchar.c: New file.\n\t* tests/Makefile.in (tests-to-wchar, tests-to-wchar.o): New rules.\n\t(check): Depend on and run tests-to-wchar.\n\t(clean): Add tests-to-wchar.\n\tReported by Tristan Gingold <gingold@adacore.com>.\n\n2009-06-30  Bruno Haible  <bruno@clisp.org>\n\n\t* Version 1.13.1 released.\n\n2009-06-30  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Bump version number to 1.13.1.\n\t* README: Likewise.\n\n2009-06-04  Bruno Haible  <bruno@clisp.org>\n\n\t* preload/Makefile.devel (AUTOCONF): Switch to version 2.63.\n\t(ACLOCAL): Switch to version 1.11.\n\n2009-05-19  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOMAKE, ACLOCAL): Switch to version 1.11.\n\t* autogen.sh: Update comments.\n\n2009-04-24  Bruno Haible  <bruno@clisp.org>\n\n\tFix a compilation error on HP-UX 11.00, introduced on 2008-09-16.\n\t* src/iconv_open2.h: Don't initialize nonexistent field if\n\t!(HAVE_WCRTOMB || HAVE_MBRTOWC).\n\tPatch by Joel Brobecker <brobecker@adacore.com>.\n\n2009-04-15  Bruno Haible  <bruno@clisp.org>\n\n\t* src/Makefile.in (install, uninstall): Append the $(EXEEXT) suffix\n\texplicitly. Needed on Cygwin.\n\n2009-04-11  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Move the statements for WOE32 and WINDRES.\n\n2009-03-26  Bruno Haible  <bruno@clisp.org>\n\n\t* Version 1.13 released.\n\n2009-03-26  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c: Update copyright header to GPLv3+.\n\t(print_version): Update license info.\n\n2009-03-26  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (print_version): Bump year.\n\n2009-03-25  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux/config.guess: Update to GNU version 2009-02-03.\n\t* build-aux/config.sub: Likewise.\n\n2009-03-25  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Bump version number to 1.13.\n\t* README: Likewise.\n\t* include/iconv.h.in (_LIBICONV_VERSION): Likewise.\n\t* windows/iconv.rc: Update.\n\t* lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 7:0:5.\n\n2009-03-25  Bruno Haible  <bruno@clisp.org>\n\n\tFix the handling of Windows resources in shared libraries.\n\t* configure.ac: Invoke LT_LANG for 'Windows Resource'.\n\t* lib/Makefile.in (RC): New variable.\n\t(WINDRES): Remove variable.\n\t(OBJECTS_RES_yes): Add .lo suffix.\n\t(libiconv.res.lo): Renamed from libiconv.res. Use libtool --tag=RC.\n\t(clean): Simplify.\n\tBased on a patch by Roumen Petrov <bugtrack@roumenpetrov.info>.\n\n2009-03-14  Bruno Haible  <bruno@clisp.org>\n\n\t* autogen.sh: Checkout gnulib using 'git' instead of 'cvs'.\n\n2009-01-24  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/Makefile (ALL): Add cp1131.h.\n\t(cp1131.h): New rule.\n\t* lib/encodings.def: Add CP1131.\n\t* lib/cp1131.h: New file.\n\t* lib/converters.h: Include it.\n\t* README, man/iconv_open.3: Add CP1131.\n\t* NOTES: Mention CP1131.\n\t* tests/CP1131.TXT: New file.\n\t* tests/Makefile.in (check): Also test CP1131.\n\n2009-01-17  Bruno Haible  <bruno@clisp.org>\n\n\tAdd support for \"make install-strip\".\n\t* configure.ac: Search for 'strip'. Invoke AM_PROG_INSTALL_STRIP.\n\t* Makefile.in (install-strip): New rule.\n\t* src/Makefile.in (STRIP, INSTALL_STRIP_PROGRAM, install_sh): New\n\tvariables.\n\t(install-strip): New rule.\n\t* lib/Makefile.in (install-strip): New target.\n\t* preload/Makefile.in (install-strip): Likewise.\n\t* man/Makefile.in (install-strip): Likewise.\n\tReported by Alon Bar-Lev <alon.barlev@gmail.com>.\n\n2009-01-17  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate after gnulib changed.\n\t* src/Makefile.in (RELOCATABLE_STRIP): New variable.\n\n2009-01-17  Bruno Haible  <bruno@clisp.org>\n\n\tMake --enable-relocatable work on glibc systems.\n\t* src/Makefile.in (host): New variable.\n\n2009-01-17  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/genflags.c: Include <string.h>.\n\n2009-01-14  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: More consistent m4 quoting.\n\t* preload/configure.ac: Likewise.\n\n2008-09-28  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux/ltmain.sh (func_emit_cwrapperexe_src): On mingw,\n\tpreprocess the argument vector through prepare_spawn.\n\n2008-09-27  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux/config.guess: Update to GNU version 2008-09-08.\n\t* build-aux/config.sub: Likewise.\n\n2008-09-26  Bruno Haible  <bruno@clisp.org>\n\n\t* tests/test-shiftseq.c (main1, main2): Use ICONV_CONST.\n\n2008-09-26  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (GNULIB_MODULES): Add sigpipe, stdio.\n\t* tests/Makefile.in (check, table-from, table-to, test-shiftseq): Link\n\tall programs against libicrt.a. Needed for the stdio function\n\treplacements on mingw.\n\n2008-09-21  Tadamasa Teranishi  <yw3t-trns@asahi-net.or.jp>\n\n\t* lib/encodings_extra.def: Add aliases for EUC-JISX0213, SHIFT_JISX0213,\n\tISO-2022-JP-3, found on <http://x0213.org/codetable/index.en.html>.\n\n2008-09-20  Bruno Haible  <bruno@clisp.org>\n\n\t* man/iconv_open_into.3: New file.\n\n2008-09-16  Bruno Haible  <bruno@clisp.org>\n\n\tNew function iconv_open_into.\n\t* include/iconv.h.in: Include <wchar.h> and its prerequisites.\n\t(iconv_allocation_t): New type.\n\t(iconv_open_into): New declaration.\n\t* lib/iconv_open1.h: New file, extracted from lib/iconv.c.\n\t* lib/iconv_open2.h: New file, extracted from lib/iconv.c.\n\t* lib/iconv.c (iconv_open): Include iconv_open1.h and iconv_open2.h.\n\tVerify size of iconv_allocation_t.\n\t(iconv_open_into): New function.\n\t* lib/loop_wchar.h (struct wchar_conv_struct): Don't define a state\n\tfield if !(HAVE_WCRTOMB || HAVE_MBRTOWC).\n\t* configure.ac: Set and substitute USE_MBSTATE_T, BROKEN_WCHAR_H.\n\tReported by Roman Rybalko <romanr@romanr.info>.\n\n2008-09-16  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.63.\n\n2008-09-16  Bruno Haible  <bruno@clisp.org>\n\n\t* include/iconv.h.in: Use Unicode single-quotes in comments.\n\n2008-09-14  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (GNULIB_MODULES): Add strerror.\n\n2008-09-07  Bruno Haible  <bruno@clisp.org>\n\n\tMake behaviour when encountering invalid input after a shift sequence\n\tmore consistent.\n\t* lib/converters.h (RET_SHIFT_ILSEQ): New macro.\n\t(RET_ILSEQ): Define in terms of RET_SHIFT_ILSEQ.\n\t(RET_TOOFEW): Change to avoid collisions with RET_SHIFT_ILSEQ.\n\t(DECODE_SHIFT_ILSEQ, DECODE_TOOFEW): New macros.\n\t* lib/loop_unicode.h (unicode_loop_convert): Take into account the\n\tshift count contained in the negative return values.\n\t* lib/hz.h (hz_mbtowc): When encountering invalid input, store the\n\tmodified state and return RET_SHIFT_ILSEQ.\n\t* lib/iso2022_cn.h (iso2022_cn_mbtowc): Likewise.\n\t* lib/iso2022_cnext.h (iso2022_cn_ext_mbtowc): Likewise.\n\t* lib/iso2022_jp.h (iso2022_jp_mbtowc): Likewise.\n\t* lib/iso2022_jp1.h (iso2022_jp1_mbtowc): Likewise.\n\t* lib/iso2022_jp2.h (iso2022_jp2_mbtowc): Likewise.\n\t* lib/iso2022_jp3.h (iso2022_jp3_mbtowc): Likewise.\n\t* lib/iso2022_kr.h (iso2022_kr_mbtowc): Likewise.\n\t* lib/ucs2.h (ucs2_mbtowc): Likewise.\n\t* lib/ucs4.h (ucs4_mbtowc): Likewise.\n\t* lib/utf16.h (utf16_mbtowc): Likewise.\n\t* lib/utf32.h (utf32_mbtowc): Likewise.\n\t* lib/utf7.h (utf7_mbtowc): Likewise.\n\t* lib/utf16be.h (utf16be_mbtowcutf16be_mbtowc): When encountering\n\tinvalid input, return RET_SHIFT_ILSEQ.\n\t* lib/utf16le.h (utf16le_mbtowc): Likewise.\n\t* tests/test-shiftseq.c: New file.\n\t* tests/Makefile.in (check): Run test-shiftseq.\n\t(test-shiftseq, test-shiftseq.@OBJEXT@): New rules.\n\t(clean): Remove test-shiftseq executable.\n\tReported by Roman Rybalko <roman_rybalko@users.sourceforge.net>\n\tat <http://savannah.gnu.org/bugs/?24216>.\n\n2008-09-07  Bruno Haible  <bruno@clisp.org>\n\n\t* man/iconv.3: Clarify the processing of shift-sequences.\n\n2008-09-07  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.2.6, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}.\n\t* m4/ltoptions.m4: Update from libtool-2.2.6.\n\t* m4/ltsugar.m4: Likewise.\n\t* m4/ltversion.m4: Likewise.\n\t* build-aux/ltmain.sh: Likewise.\n\n2008-09-06  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/gbk.h (gbk_wctomb): Fix an out-of-bounds write.\n\tReported by Roman Rybalko <roman_rybalko@users.sourceforge.net>\n\tat <http://savannah.gnu.org/bugs/?24214>.\n\n2008-06-30  Bruno Haible  <bruno@clisp.org>\n\n\tFix sed expressions to work with the old sed-3.02 on MSYS.\n\t* windows/windres-options (sed_extract_major, sed_extract_minor,\n\tsed_extract_subminor): Put a semicolon before the closing brace. Use\n\tan i\\ command instead of an a\\ command.\n\tReported by Sunil Negi <sunil.negi@morningstar.com>\n\tin <http://article.gmane.org/gmane.comp.gnu.mingw.msys/4410>\n\tvia Keith Marshall <keithmarshall@users.sourceforge.net>.\n\n2008-05-22  Bruno Haible  <bruno@clisp.org>\n\n\t* README.woe32: Update with info from GNU gettext's README.woe32.\n\n2008-05-18  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.2.4, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}.\n\t* m4/ltoptions.m4: Update from libtool-2.2.4.\n\t* m4/ltversion.m4: Likewise.\n\t* m4/lt~obsolete.m4: Likewise.\n\t* build-aux/ltmain.sh: Likewise.\n\n2008-04-14  Bruno Haible  <bruno@clisp.org>\n\n\t* tests/Makefile.in (check): Remove *.dSYM directories left over by gcc\n\ton MacOS X 10.5.\n\n2008-04-14  Bruno Haible  <bruno@clisp.org>\n\n\t* preload/configure.ac: Invoke AC_USE_SYSTEM_EXTENSIONS instead of\n\tAC_AIX and AC_MINIX.\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Require autoconf-2.62.\n\t* preload/Makefile.devel (AUTOCONF): Likewise.\n\t* autogen.sh: Likewise.\n\n2008-04-06  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.2.2, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}.\n\t* m4/ltoptions.m4: New file, from libtool-2.2.2.\n\t* m4/ltsugar.m4: New file, from libtool-2.2.2.\n\t* m4/ltversion.m4: New file, from libtool-2.2.2.\n\t* m4/lt~obsolete.m4: New file, from libtool-2.2.2.\n\t* build-aux/ltmain.sh: New file, from libtool-2.2.2.\n\t* configure.ac: Use LT_INIT instead of AC_PROG_LIBTOOL.\n\t* preload/configure.ac: Likewise.\n\n2008-04-06  Bruno Haible  <bruno@clisp.org>\n\n\tMore portable way of building the preloadable library.\n\t* preload/Makefile.devel: New file.\n\t* preload/Makefile.in: New file, based on lib/Makefile.in.\n\t* preload/configure.ac: New file, based on configure.ac.\n\t* Makefile.devel (all): Recurse into preload directory.\n\t* Makefile.in (all, install, installdirs, uninstall, check,\n\tmostlyclean, clean, distclean, maintainer-clean): Recurse into preload\n\tdirectory.\n\t* configure.ac: Likewise.\n\t(OS, GCC, PLUGLIB): Remove definitions.\n\t* lib/Makefile.in (all): Don't depend on PLUGLIB.\n\t(preloadable_libiconv.so, preloadable_libiconv_linux.so,\n\tpreloadable_libiconv_solaris.so, preloadable_libiconv_osf.so): Remove\n\trules.\n\t(install, uninstall, clean): Don't handle the preloadable library here.\n\n2008-04-06  Bruno Haible  <bruno@clisp.org>\n\n\tAvoid a gcc warning.\n\t* lib/loop_unicode.h (unicode_loop_convert): Add a cast.\n\n2008-04-06  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (print_version): Bump year.\n\n2008-04-06  Bruno Haible  <bruno@clisp.org>\n\n\tSupport all possible nl_langinfo(CODESET) results on the respective\n\tplatforms, according to libcharset/lib/config.charset.\n\t* lib/encodings.def: Add DEFALIAS statements, conditional on\n\tUSE_AIX_ALIASES, USE_HPUX_ALIASES, USE_OSF1_ALIASES,\n\tUSE_SOLARIS_ALIASES.\n\t* lib/encodings_aix.def: Add DEFALIAS statements, conditional on\n\tUSE_AIX_ALIASES.\n\t* lib/encodings_osf1.def: Add DEFALIAS statements, conditional on\n\tUSE_OSF1_ALIASES.\n\t* lib/genaliases.c (emit_alias): New function, extracted from\n\temit_encoding.\n\t(emit_encoding): Use it.\n\t(main): Define DEFALIAS.\n\t* lib/genaliases2.c (counter): New variable, extracted from\n\temit_encoding.\n\t(emit_alias): New function, extracted from emit_encoding.\n\t(emit_encoding): Use it.\n\t(main): Define DEFALIAS.\n\t* lib/genflags.c (main): Define DEFALIAS.\n\t* lib/iconv.c (all_encodings): Define DEFALIAS.\n\tInclude the system dependent variant of aliases.h on the appropriate\n\tsystems.\n\t(all_canonical): Include the system dependent variant of canonical.h,\n\tcanonical_aix.h, canonical_osf1.h, canonical_local.h on the appropriate\n\tsystems.\n\t* lib/aliases2.h: Include the system dependent variant of\n\taliases_aix.h or aliases_osf1.h on the appropriate systems.\n\t* lib/Makefile.in (iconv.lo): Depend on aliases_sysaix.h,\n\taliases_syshpux.h, aliases_sysosf1.h, aliases_syssolaris.h,\n\taliases_aix_sysaix.h, lib/aliases_osf1_sysosf1.h, and also\n\taliases_extra.h, translit.h.\n\t* Makefile.devel (all): Depend on lib/aliases_sysaix.h,\n\tlib/aliases_syshpux.h, lib/aliases_sysosf1.h, lib/aliases_syssolaris.h,\n\tlib/aliases_aix_sysaix.h, lib/aliases_osf1_sysosf1.h.\n\t(lib/aliases_sysaix.h, lib/aliases_syshpux.h, lib/aliases_sysosf1.h,\n\tlib/aliases_syssolaris.h): New rules.\n\t(lib/aliases_aix_sysaix.h): New rule.\n\t(lib/aliases_osf1_sysosf1.h): New rule.\n\t* autogen.sh: Also remove lib/aliases_sysaix.h, lib/aliases_syshpux.h,\n\tlib/aliases_sysosf1.h, lib/aliases_syssolaris.h,\n\tlib/aliases_aix_sysaix.h, lib/aliases_osf1_sysosf1.h.\n\n2008-04-06  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux/config.libpath: Remove file, brought in by gnulib-tool.\n\t* build-aux/config.rpath: Remove file, brought in by gnulib-tool.\n\n2007-11-11  Bruno Haible  <bruno@clisp.org>\n\n\t* Version 1.12 released.\n\n2007-11-11  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Require version 2.61.\n\t(AUTOMAKE, ACLOCAL): Require version 1.10.\n\t(srclib/Makefile.in): Avoid error from automake.\n\n2007-10-26  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update, based on libtool-1.5.24.\n\t* build-aux/ltmain.sh: Update, based on libtool-1.5.24.\n\n2007-10-23  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux/config.guess: Update to GNU version 2007-07-22.\n\t* build-aux/config.sub: Likewise.\n\n2007-10-23  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Bump version number to 1.12.\n\t* README: Likewise.\n\n2007-10-23  Bruno Haible  <bruno@clisp.org>\n\n\tMove relocatability infrastructure to gnulib.\n\t* gnulib-local/lib/relocatable.h: Remove file.\n\t* gnulib-local/lib/relocatable.c: Remove file.\n\n2007-10-23  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate from GNU gettext.\n\t2006-11-26  Bruno Haible  <bruno@clisp.org>\n\t\t* gnulib-local/lib/xalloc.h (xmemdup): Add a typesafe C++\n\t\ttemplate variant.\n\t\tBased on a patch from Paul Eggert in gnulib.\n\t2006-11-06  Bruno Haible  <bruno@clisp.org>\n\t\t* gnulib-local/lib/xalloc.h (xcharalloc): New macro.\n\t\t(xmemdup): New declaration.\n\t\t* gnulib-local/lib/xstrdup.c (xmemdup): New function.\n\t2006-11-03  Bruno Haible  <bruno@clisp.org>\n\t\t* gnulib-local/lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC,\n\t\tXCALLOC): New macros.\n\t\t(xnboundedmalloc): New inline function.\n\t\t* gnulib-local/lib/xstrdup.c (xstrdup): Use XNMALLOC instead of\n\t\txmalloc.\n\t2006-11-02  Bruno Haible  <bruno@clisp.org>\n\t\t* lib/xalloc.h (xnmalloc): New declaration. From gnulib\n\t\txalloc.h.\n\t\t* lib/xmalloc.c (fixup_null_alloc): Write NULL, not 0.\n\t\t(xnmalloc): New function.\n\n2007-10-23  Bruno Haible  <bruno@clisp.org>\n\n\tMoved module xreadlink to gnulib.\n\t* gnulib-local/modules/xreadlink: Remove file.\n\t* gnulib-local/lib/xreadlink.h: Remove file.\n\t* gnulib-local/lib/xreadlink.c: Remove file.\n\t* gnulib-local/m4/xreadlink.m4: Remove file.\n\n2007-10-07  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate program license to GPLv3.\n\t* COPYING: Replace with GPL 3.\n\t* windows/iconv.rc (Comments): Update.\n\n2007-10-07  Bruno Haible  <bruno@clisp.org>\n\n\t* gnulib-local/lib/alloca.in.h: Renamed from gnulib-local/lib/alloca_.h.\n\n2007-03-30  Bruno Haible  <bruno@clisp.org>\n\n\t* gnulib-local/lib/alloca_.h: Change prefix of double-inclusion guard\n\tmacro to _GL_.\n\n2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>\n\n\t* gnulib-local/lib/alloca_.h (alloca) [defined alloca]: Don't define or\n\tdeclare.\n\n2007-09-29  Bruno Haible  <bruno@clisp.org>\n\n\t* autogen.sh (GNULIB_CVS_ROOT): Change to read-only git mirror\n\tvalid since 2007-09-19.\n\n2007-07-07  Bruno Haible  <bruno@clisp.org>\n\n\t* autogen.sh: Add an option --skip-gnulib.\n\n2007-07-07  Bruno Haible  <bruno@clisp.org>\n\n\t* gnulib-local/lib/uniwidth.h: Remove file, moved to gnulib.\n\t* gnulib-local/lib/width.c: Remove file, moved to gnulib.\n\t* gnulib-local/lib/cjk.h: Remove file, moved to gnulib.\n\t* gnulib-local/modules/uniwidth: Remove file.\n\t* Makefile.devel (GNULIB_MODULES): Remove uniwidth, add uniwidth/width.\n\t* src/iconv.c: Include uniwidth/cjk.h instead of cjk.h.\n\n2007-06-30  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (print_version): Use the standard --version output, see\n\t<http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00302.html>.\n\n2007-06-30  Bruno Haible  <bruno@clisp.org>\n\n\t* autogen.sh: New file.\n\t* DEPENDENCIES: New file.\n\t* HACKING: New file.\n\n2007-06-30  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c: Provide translator comments for many messages.\n\t(conversion_error_EILSEQ, conversion_error_EINVAL,\n\tconversion_error_other): New functions, extracted from convert.\n\t(convert): Use them.\n\tReported by Tim Van Holder <tim.van.holder@telenet.be>.\n\n2007-06-09  Bruno Haible  <bruno@clisp.org>\n\n\t* gnulib-local/lib/relocwrapper.c: Remove file.\n\n2007-05-27  Bruno Haible  <bruno@clisp.org>\n\n\t* windows/libiconv.rc: New file.\n\t* windows/iconv.rc: New file.\n\t* windows/windres-options: New file.\n\t* configure.ac (WOE32): New variable.\n\t(WINDRES) [WOE32]: New variable.\n\t* lib/Makefile.in (WINDRES): New variable.\n\t(PACKAGE_VERSION): New variable.\n\t(OBJECTS_EXP_yes): Renamed from OBJECTS_yes.\n\t(OBJECTS_EXP_no): Renamed from OBJECTS_no.\n\t(OBJECTS_RES_yes, OBJECTS_RES_no): New variables.\n\t(OBJECTS): Add one of them.\n\t(libiconv.res): New rule.\n\t(clean): Remove also libiconv.res.\n\t* src/Makefile.in (WINDRES): New variable.\n\t(PACKAGE_VERSION): New variable.\n\t(OBJECTS_RES_yes, OBJECTS_RES_no): New variables.\n\t(all, iconv_no_i18n, install): Use them.\n\t(iconv.res): New rule.\n\t(clean): Remove also iconv.res.\n\tSuggested and inspired by work by Perry Rapp.\n\n2007-05-27  Bruno Haible  <bruno@clisp.org>\n\n\tFollow broken iconv() prototype in POSIX.\n\t* configure.ac (ICONV_CONST): Set to empty if the system has no iconv.\n\t* lib/config.h.in (ICONV_CONST): Change default value to an empty\n\tcomment.\n\t* src/iconv.c (ICONV_CONST): Change default value to empty.\n\tReported by Andreas Krennmair <ak@synflood.at>.\n\n2007-05-25  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/Makefile (ALL): Add rk1048.h.\n\t(rk1048.h): New rule.\n\t* lib/encodings.def: Add RK1048.\n\t* lib/rk1048.h: New file.\n\t* lib/converters.h: Include it.\n\t* README, man/iconv_open.3: Add RK1048.\n\t* NOTES: Mention RK1048.\n\t* tests/RK1048.TXT: New file.\n\t* tests/Makefile.in (check): Also test RK1048.\n\tSuggested by Timur Birsh <team9@host.kz>.\n\n2007-04-24  Bruno Haible  <bruno@clisp.org>\n\n\t* man/iconv_open.3: Tweak explanation of TRANSLIT.\n\tReported by Perry Rapp.\n\n2007-04-23  Bruno Haible  <bruno@clisp.org>\n\n\t* tests/check-subst: Use the output of 'printf' only if it didn't\n\tcrash. Needed to work around a buffer overflow in Solaris /bin/printf.\n\tReported by Arto C. Nirkko <anirkko@insel.ch>.\n\n2007-04-23  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/iconv.c (iconv_open, iconv_canonicalize): Treat native Woe32\n\tsystems like those which define __STDC_ISO_10646__.\n\tReported by Keith Marshall <keithmarshall@users.sourceforge.net>.\n\n2007-03-31  Bruno Haible  <bruno@clisp.org>\n\n\t* man/iconv.1: Use HYPHEN-MINUS signs instead of HYPHENs where\n\tappropriate.\n\t* man/iconv_open.3: Likewise.\n\t* man/iconv.3: Likewise.\n\t* man/iconv_close.3: Likewise.\n\t* man/iconvctl.3: Likewise.\n\n2007-03-31  Bruno Haible  <bruno@clisp.org>\n\n\t* man/iconv.1: Mark as POSIX compliant.\n\t* man/iconv_open.3: Likewise.\n\t* man/iconv.3: Likewise.\n\t* man/iconv_close.3: Likewise.\n\n\t* man/*.[13]: Syntactic simplifications.\n\n2007-03-19  Bruno Haible  <bruno@clisp.org>\n\n\tAssume that mkinstalldirs also creates the necessary parent directories.\n\t* Makefile.in (install, installdirs): Don't explicitly create the\n\tparent directories.\n\t* lib/Makefile.in (install, installdirs): Likewise.\n\t* src/Makefile.in (install, installdirs): Likewise.\n\t* man/Makefile.in (install, installdirs): Likewise.\n\tReported by Thomas Klausner <tk@giga.or.at>.\n\n2007-03-04  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (GNULIB_MODULES): Add relocatable-prog. Remove\n\trelocatable, relocwrapper.\n\t* configure.ac: Invoke gl_RELOCATABLE instead of AC_RELOCATABLE.\n\t* gnulib-local/modules/progreloc: Remove file.\n\t* gnulib-local/modules/relocatable: Remove file.\n\t* gnulib-local/modules/relocwrapper: Remove file.\n\t* gnulib-local/m4/relocatable.m4: Remove file.\n\t* gnulib-local/lib/strerror.c.diff: Remove file.\n\t* src/Makefile.in: Remove SET_RELOCATABLE invocation. Instead get\n\tRELOCATABLE_LDFLAGS and INSTALL_PROGRAM_ENV.\n\n2007-02-19  Bruno Haible  <bruno@clisp.org>\n\n\t* gnulib-local/lib/xmalloc.c: Don't include exit.h.\n\t* src/iconv.c: Likewise.\n\n2007-02-16  Juan Manuel Guerrero  <juan.guerrero@gmx.de>\n\n\t* djgpp/*: Update.\n\n2007-02-03  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/Makefile (ksc5601.h): Add one extra character.\n\t* lib/ksc5601.h: Regenerated.\n\t* lib/cp949.h (cp949_mbtowc, cp949_wctomb): Exclude the new character.\n\t* tests/EUC-KR.TXT: Add CIRCLED HANGUL IEUNG U.\n\t* tests/JOHAB.TXT: Likewise.\n\tReported by Jungshik Shin (신정식, 申政湜) <jungshik@google.com>.\n\n\t* lib/euc_kr.h: Update comments.\n\t* lib/johab.h: Likewise.\n\n2007-02-03  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/cjk_tab_to_h.c (output_title): Bump copyright year.\n\n2007-01-26  Bruno Haible  <bruno@clisp.org>\n\n\tMoved streq.h to gnulib.\n\t* gnulib-local/lib/streq.h: Remove file.\n\t* gnulib-local/modules/uniwidth (Files): Remove lib/streq.h.\n\t(Depends-on): Add streq.\n\t(lib_SOURCES): Remove streq.h.\n\n2007-01-26  Bruno Haible  <bruno@clisp.org>\n\n\tMoved unitypes.h to gnulib.\n\t* gnulib-local/lib/unitypes.h: Remove file.\n\t* gnulib-local/modules/uniwidth (Files): Remove lib/unitypes.h.\n\t(Depends-on): Add unitypes.\n\t(lib_SOURCES): Remove unitypes.h.\n\n2007-01-26  Bruno Haible  <bruno@clisp.org>\n\n\tMoved canonicalize to gnulib.\n\t* gnulib-local/modules/canonicalize: Remove file.\n\t* gnulib-local/lib/canonicalize.h: Remove file.\n\t* gnulib-local/lib/canonicalize.c: Remove file.\n\t* gnulib-local/m4/canonicalize.m4: Remove file.\n\t* gnulib-local/modules/progreloc (Depends-on): Replace 'canonicalize'\n\twith 'canonicalize-lgpl'.\n\n2006-12-20  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/Makefile.in (install): On AIX, add the contents of\n\t/lib/libiconv.a to libiconv.a.\n\n2006-12-20  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (all): Depend on srclib/Makefile.gnulib, not\n\tsrclib/Makefile.am.\n\t(aclocal.m4): Likewise. Touch the resulting file, since aclocal not\n\talways does it.\n\t(srclib/Makefile.gnulib): Renamed from srclib/Makefile.am. Pass\n\toption --makefile-name.\n\t(srclib/Makefile.in): Depend on srclib/Makefile.gnulib too.\n\t* srclib/Makefile.am: New file that includes srclib/Makefile.gnulib.\n\n2006-10-31  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate from GNU gettext.\n\t2006-10-29  Bruno Haible  <bruno@clisp.org>\n\t\tMake it compile in C++ mode.\n\t\t* gnulib-local/lib/xalloc.h (xrealloc): Define as template\n\t\twith appropriate return type.\n\t\t* gnulib-local/lib/xstrdup.c (xstrdup): Cast xmalloc result.\n\t2006-10-26  Bruno Haible  <bruno@clisp.org>\n\t\t* gnulib-local/modules/canonicalize (Makefile.am): Remove\n\t\tEXTRA_DIST. Now done by gnulib-tool.\n\t\t* gnulib-local/modules/relocatable (Makefile.am): Likewise.\n\t\t* gnulib-local/modules/relocwrapper (Makefile.am): Likewise.\n\t2006-10-25  Bruno Haible  <bruno@clisp.org>\n\t\t* gnulib-local/m4/relocatable.m4 (AC_RELOCATABLE_BODY):\n\t\tRenamed from AC_RELOCATABLE, without the AC_LIBOBJ invocation.\n\t\t(AC_RELOCATABLE): New macro. Invoke AC_LIBOBJ here.\n\t\t* gnulib-local/modules/relocwrapper (configure.ac): Invoke\n\t\tAC_RELOCATABLE instead of requiring it.\n\t2006-10-12  Bruno Haible  <bruno@clisp.org>\n\t\t* gnulib-local/modules/canonicalize (Makefile.am): Distribute\n\t\tall files in lib/ through EXTRA_DIST.\n\t\t* gnulib-local/modules/relocatable (Makefile.am): Likewise.\n\t2006-09-14  Bruno Haible  <bruno@clisp.org>\n\t\t* gnulib-local/lib/canonicalize.c: Include <config.h>\n\t\tunconditionally.\n\t\t* gnulib-local/lib/relocatable.c: Likewise.\n\t\t* lib/relocatable.c: Likewise.\n\t\t* gnulib-local/lib/relocwrapper.c: Likewise.\n\t\t* gnulib-local/lib/xmalloc.c: Likewise.\n\t\t* gnulib-local/lib/xreadlink.c: Likewise.\n\t\t* gnulib-local/lib/xstrdup.c: Likewise.\n\t2006-08-02  Bruno Haible  <bruno@clisp.org>\n\t\t* gnulib-local/modules/canonicalize: Put under LGPL.\n\t\t* gnulib-local/modules/relocatable: Likewise.\n\t2006-07-18  Bruno Haible  <bruno@clisp.org>\n\t\t* gnulib-local/xalloc.h (xzalloc): New declaration.\n\t\t* gnulib-local/xmalloc.c (xzalloc): New function.\n\n2006-10-24  Bruno Haible  <bruno@clisp.org>\n\n\t* man/Makefile.in (PACKAGE): New variable. Needed for docdir.\n\tReported by Charles Wilson <cygwin@cwilson.fastmail.fm>.\n\n2006-10-14  Bruno Haible  <bruno@clisp.org>\n\n\t* COPYING: New file.\n\t* README: Clarify copyright of the iconv program.\n\tReported by Charles Wilson <cwilson@fastmail.fm>.\n\n2006-08-08  Bruno Haible  <bruno@clisp.org>\n\n\t* INSTALL.generic: Add a recommendation for Tru64.\n\tReported by Gary V. Vaughan <gary@gnu.org>.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\t* tests/check-subst: Set CHARSETALIASDIR.\n\tNeeded so that \"make check\" works before \"make install\" on systems\n\tsuch as NetBSD.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (aclocal.m4): Depend on srclib/Makefile.am.\n\t(AUTOCONF_FILES): Add the existing *.m4 files.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\t* gnulib-local/lib/xreadlink.c: Assume <stdlib.h> exists.\n\t* src/iconv.c: Assume <locale.h> exists.\n\t* configure.ac: Remove tests for <locale.h>, <stddef.h>, <stdlib.h>,\n\t<string.h>.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Remove obsolete calls AC_PROG_GCC_TRADITIONAL,\n\tAC_ISC_POSIX, AC_HEADER_STDC.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Remove macro invocations that are redundant through\n\tgl_EARLY and gl_INIT.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\t* gnulib-local/m4/alloca.m4 (gl_PREREQ_ALLOCA): Add a dummy statement.\n\tAvoids a sh syntax error.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\t* gnulib-local/m4/relocatable.m4: Add comments.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\t* gnulib-local/modules/libiconv-misc: New file.\n\t* Makefile.devel (GNULIB_MODULES): Add libiconv-misc.\n\n\t* Makefile.devel (srclib/Makefile.am): Pass --no-libtool.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\tNote: gnulib macros no longer invoke AC_TYPE_SIZE_T nor\n\tAC_CHECK_TYPE([ptrdiff_t], , [AC_DEFINE([ptrdiff_t], [long], ...)])\n\tbecause we now assume that the system defines size_t and ptrdiff_t.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\tSwitch to using gnulib.\n\t* configure.ac (AC_PREREQ): Require autoconf-2.60.\n\tInvoke gl_EARLY and gl_INIT.\n\t* Makefile.devel (all): Depend on srclib/Makefile.am.\n\t(aclocal.m4): Pass -I srcm4 to aclocal. Simplify dependencies, assuming\n\tGNU make.\n\t(GNULIB_MODULES): New variable.\n\t(srclib/Makefile.am): New rule.\n\t* gnulib-local: New directory.\n\t* gnulib-local/m4/alloca.m4: Moved here from m4/alloca.m4.\n\t* gnulib-local/m4/canonicalize.m4: Moved here from m4/canonicalize.m4.\n\t* gnulib-local/m4/relocatable.m4: Moved here from m4/relocatable.m4.\n\t* gnulib-local/m4/xreadlink.m4: Moved here from m4/xreadlink.m4.\n\t* gnulib-local/lib/alloca_.h: Moved here from srclib/alloca_.h.\n\t* gnulib-local/lib/canonicalize.h: Moved here from srclib/canonicalize.h.\n\t* gnulib-local/lib/canonicalize.c: Moved here from srclib/canonicalize.c.\n\t* gnulib-local/lib/cjk.h: Moved here from srclib/cjk.h.\n\t* gnulib-local/lib/error.h.diff: New file.\n\t* gnulib-local/lib/progname.h.diff: New file.\n\t* gnulib-local/lib/relocatable.h: Moved here from srclib/relocatable.h.\n\t* gnulib-local/lib/relocatable.c: Moved here from srclib/relocatable.c.\n\t* gnulib-local/lib/relocwrapper.c: Moved here from srclib/relocwrapper.c.\n\t* gnulib-local/lib/streq.h: Moved here from srclib/streq.h.\n\t* gnulib-local/lib/strerror.c.diff: New file.\n\t* gnulib-local/lib/unitypes.h: Moved here from srclib/unitypes.h.\n\t* gnulib-local/lib/uniwidth.h: Moved here from srclib/uniwidth.h.\n\t* gnulib-local/lib/width.c: Moved here from srclib/width.c.\n\t* gnulib-local/lib/xalloc.h: Moved here from srclib/xalloc.h.\n\t* gnulib-local/lib/xmalloc.c: Moved here from srclib/xmalloc.c.\n\t* gnulib-local/lib/xstrdup.c: Moved here from srclib/xstrdup.c.\n\t* gnulib-local/lib/xreadlink.h: Moved here from srclib/xreadlink.h.\n\t* gnulib-local/lib/xreadlink.c: Moved here from srclib/xreadlink.c.\n\t* gnulib-local/modules/canonicalize: New file.\n\t* gnulib-local/modules/progreloc: New file.\n\t* gnulib-local/modules/relocatable: New file.\n\t* gnulib-local/modules/relocwrapper: New file.\n\t* gnulib-local/modules/uniwidth: New file.\n\t* gnulib-local/modules/xalloc: New file.\n\t* gnulib-local/modules/xreadlink: New file.\n\n\t* m4/allocsa.m4: Remove file. Now taken from gnulib.\n\t* m4/codeset.m4: Likewise.\n\t* m4/eealloc.m4: Likewise.\n\t* m4/error.m4: Likewise.\n\t* m4/extensions.m4: Likewise.\n\t* m4/full-header-path.m4: Likewise.\n\t* m4/gettext.m4: Likewise.\n\t* m4/glibc21.m4: Likewise.\n\t* m4/iconv.m4: Likewise.\n\t* m4/intmax.m4: Likewise.\n\t* m4/inttypes-h.m4: Likewise.\n\t* m4/inttypes_h.m4: Likewise.\n\t* m4/isc-posix.m4: Likewise.\n\t* m4/lcmessage.m4: Likewise.\n\t* m4/lib-ld.m4: Likewise.\n\t* m4/lib-link.m4: Likewise.\n\t* m4/lib-prefix.m4: Likewise.\n\t* m4/longdouble.m4: Likewise.\n\t* m4/longlong.m4: Likewise.\n\t* m4/mbstate_t.m4: Likewise.\n\t* m4/nls.m4: Likewise.\n\t* m4/onceonly.m4: Likewise.\n\t* m4/pathmax.m4: Likewise.\n\t* m4/po.m4: Likewise.\n\t* m4/printf-posix.m4: Likewise.\n\t* m4/progtest.m4: Likewise.\n\t* m4/readlink.m4: Likewise.\n\t* m4/setenv.m4: Likewise.\n\t* m4/signed.m4: Likewise.\n\t* m4/size_max.m4: Likewise.\n\t* m4/ssize_t.m4: Likewise.\n\t* m4/stdbool.m4: Likewise.\n\t* m4/stdint.m4: Likewise.\n\t* m4/stdint_h.m4: Likewise.\n\t* m4/strerror.m4: Likewise.\n\t* m4/strerror_r.m4: Likewise.\n\t* m4/unistd_h.m4: Likewise.\n\t* m4/unlocked-io.m4: Likewise.\n\t* m4/visibility.m4: Likewise.\n\t* m4/wchar_t.m4: Likewise.\n\t* m4/wint_t.m4: Likewise.\n\n\t* srclib/allocsa.h: Remove file. Now taken from gnulib.\n\t* srclib/allocsa.c: Likewise.\n\t* srclib/binary-io.h: Likewise.\n\t* srclib/error.h: Likewise.\n\t* srclib/error.c: Likewise.\n\t* srclib/exit.h: Likewise.\n\t* srclib/gettext.h: Likewise.\n\t* srclib/memmove.c: Likewise.\n\t* srclib/pathmax.h: Likewise.\n\t* srclib/progname.h: Likewise.\n\t* srclib/progname.c: Likewise.\n\t* srclib/progreloc.c: Likewise.\n\t* srclib/readlink.c: Likewise.\n\t* srclib/setenv.h: Likewise.\n\t* srclib/setenv.c: Likewise.\n\t* srclib/stdbool_.h: Likewise.\n\t* srclib/stdint_.h: Likewise.\n\t* srclib/strerror.c: Likewise.\n\t* srclib/unlocked-io.h: Likewise.\n\t* srclib/unsetenv.c: Likewise.\n\t* srclib/Makefile.am: Remove file.\n\n2006-07-27  Bruno Haible  <bruno@clisp.org>\n\n\tRemove OS/2 build support that doesn't assume GNU make and GNU bash.\n\t* README.os2: Remove file.\n\t* Makefile.os2: Remove file.\n\t* lib/Makefile.os2: Remove file.\n\t* src/Makefile.os2: Remove file.\n\t* man/Makefile.os2: Remove file.\n\t* tests/Makefile.os2: Remove file.\n\t* tests/check-stateful.cmd: Remove file.\n\t* tests/check-stateless.cmd: Remove file.\n\t* tests/check-translit.cmd: Remove file.\n\n2006-07-25  Bruno Haible  <bruno@clisp.org>\n\n\tRemove MSVC/nmake build support.\n\t* windows: Remove directory.\n\t* Makefile.msvc: Remove file.\n\t* lib/Makefile.msvc: Remove file.\n\t* srclib/Makefile.msvc: Remove file.\n\t* src/Makefile.msvc: Remove file.\n\t* tests/Makefile.msvc: Remove file.\n\t* man/Makefile.msvc: Remove file.\n\t* po/Rules-msvc: Remove file.\n\t* po/Makefile.msvc.sh: Remove file.\n\t* Makefile.devel (config.h.msvc, lib/config.h.msvc): Remove rules.\n\t(include/iconv.h.msvc-static, include/iconv.h.msvc-shared): Remove\n\trules.\n\t(po/Makefile.msvc): Remove rule.\n\t(all): Update.\n\n2006-07-25  Bruno Haible  <bruno@clisp.org>\n\n\tRemove VMS support.\n\t* vms: Remove directory.\n\t* Makefile.vms: Remove file.\n\t* lib/Makefile.vms: Remove file.\n\t* srclib/Makefile.vms: Remove file.\n\t* src/Makefile.vms: Remove file.\n\t* tests/Makefile.vms: Remove file.\n\t* man/Makefile.vms: Remove file.\n\t* Makefile.devel (config.h_vms, lib/config.h_vms): Remove rules.\n\t(include/iconv.h_vms): Remove rule.\n\t(all): Update.\n\n2006-07-23  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/Makefile.in (libiconv.la): Use the CFLAGS during linking.\n\t* src/Makefile.in (iconv_no_i18n): Likewise.\n\t(install): Likewise.\n\t* tests/Makefile.in (table-from, table-to): Likewise.\n\tNeeded because the CFLAGS can e.g. trigger profiling.\n\tReported by Russell Aspinwall <russell.aspinwall@flomerics.co.uk>.\n\n2006-07-19  Bruno Haible  <bruno@clisp.org>\n\n\t* Version 1.11 released.\n\n2006-07-19  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/Makefile.am (libicrt_a_SOURCES): Remove error.h, error.c.\n\t(LIBADD_SOURCE): Add them here.\n\n2006-07-19  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux/config.guess: Update to GNU version 2006-07-02.\n\t* build-aux/config.sub: Likewise.\n\n2006-07-14  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/Makefile.in (clean): Remove also *.stackdump.\n\t* src/Makefile.in (clean): Likewise.\n\t* tests/Makefile.in (clean): Likewise.\n\n2006-07-14  Bruno Haible  <bruno@clisp.org>\n\n\t* src/Makefile.in (clean): Remove also iconv_no_i18n. Needed for\n\tcygwin or mingw.\n\t* tests/Makefile.in (clean): Remove also the programs, without\n\tEXEEXT. Needed for cygwin or mingw.\n\t* Makefile.in (mostlyclean, clean, distclean, maintainer-clean):\n\tRemove also bin directory. Needed for cygwin and mingw.\n\n2006-07-03  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (check_subst_formatstring): Use ngettext.\n\t(subst_wc_to_mb_fallback, subst_mb_to_mb_fallback): Fix error messages\n\tafter 2006-01-22 change.\n\t* configure.ac: Require a gettext version with ngettext.\n\n2006-06-28  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/gettext.m4: Update from GNU gettext.\n\t* m4/po.m4: Update from GNU gettext.\n\n2006-06-27  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Use autoconf-2.60.\n\t* Makefile.in (datarootdir): New variable.\n\t(install, installdirs, uninstall): Also pass datarootdir.\n\t* configure.ac (mandir): Remove customization.\n\t* man/Makefile.in (datarootdir): New variable.\n\t(docdir, htmldir): Use autoconf-substituted value.\n\t* src/Makefile.in (datarootdir): New variable.\n\t(localedir): Use autoconf-substituted value.\n\n2006-06-27  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/stdint.m4: Update from gnulib.\n\t* srclib/stdint_.h: Update from gnulib.\n\t* srclib/Makefile.am: Update.\n\n2006-06-17  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/unsetenv.c: Update from GNU gettext.\n\t* srclib/xreadlink.c: Likewise.\n\n2006-06-16  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/full-header-path.m4: New file, from gnulib.\n\t* m4/size_max.m4: New file, from gnulib.\n\t* m4/stdint.m4: Update from gnulib.\n\t* srclib/stdint_.h: Update from gnulib.\n\t* srclib/Makefile.am (stdint.h): Likewise.\n\t* Makefile.devel (aclocal.m4): Update dependencies.\n\n2006-06-16  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/ssize_t.m4: Update from GNU gettext.\n\n2006-06-12  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/gettext.m4: Update from GNU gettext.\n\t* m4/inttypes-h.m4: New file, from GNU gettext.\n\t* m4/inttypes.m4: Remove file.\n\t* m4/stdint.m4 (gl_STDINT_H): Update.\n\t* Makefile.devel (aclocal.m4): Update dependencies.\n\n2006-06-10  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (error) [NO_I18N]: Define here instead of including\n\terror.h. Fixes link failure introduced on 2006-01-22.\n\n2006-03-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>\n\n\t* m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER) [ linux ]: Avoid warning when\n\t\"parsing\" /etc/ld.so.conf and empty /etc/ld.so.conf.d.\n\n2006-05-20  Bruno Haible  <bruno@clisp.org>\n\n\t* tests/BIG5-HKSCS-1999-snippet: New file.\n\t* tests/BIG5-HKSCS-1999-snippet.UTF-8: New file.\n\t* tests/BIG5-HKSCS-2001-snippet: New file.\n\t* tests/BIG5-HKSCS-2001-snippet.UTF-8: New file.\n\t* tests/BIG5-HKSCS-2004-snippet: New file.\n\t* tests/BIG5-HKSCS-2004-snippet.UTF-8: New file.\n\t* tests/Makefile.in (check): Test also the stateful parts of\n\tBIG5-HKSCS:1999, BIG5-HKSCS:2001, BIG5-HKSCS:2004.\n\n2006-05-17  Bruno Haible  <bruno@clisp.org>\n\n\tImplement newer releases of BIG5-HKSCS.\n\t* tools/Makefile (ALL): Remove hkscs.h, add hkscs1999.h, hkscs2001.h,\n\thkscs2004.h.\n\t(hkscs.h): Remove rule.\n\t(hkscs1999.h, hkscs2001.h, hkscs2004.h): New rules.\n\t* tools/cjk_tab_to_h.c (output_title): Update year.\n\t(main): Recognize hkscs1999, hkscs2001, hkscs2004.\n\t* lib/encodings.def: Rename BIG5-HKSCS to BIG5-HKSCS:1999. Add\n\tBIG5-HKSCS:2001, BIG5-HKSCS:2004. Make all three stateful.\n\t* lib/hkscs.h: Remove file.\n\t* lib/hkscs1999.h: New file.\n\t* lib/hkscs2001.h: New file.\n\t* lib/hkscs2004.h: New file.\n\t* lib/big5hkscs.h: Remove file.\n\t* lib/big5hkscs1999.h: New file.\n\t* lib/big5hkscs2001.h: New file.\n\t* lib/big5hkscs2004.h: New file.\n\t* lib/converters.h: Include the new files.\n\t* README, man/iconv_open.3: Add BIG5-HKSCS:1999, BIG5-HKSCS:2001.\n\t* tests/BIG5-HKSCS.TXT: Remove file.\n\t* tests/BIG5-HKSCS.IRREVERSIBLE.TXT: Remove file.\n\t* tests/BIG5-HKSCS-1999.TXT: New file.\n\t* tests/BIG5-HKSCS-1999.IRREVERSIBLE.TXT: New file.\n\t* tests/BIG5-HKSCS-2001.TXT: New file.\n\t* tests/BIG5-HKSCS-2001.IRREVERSIBLE.TXT: New file.\n\t* tests/BIG5-HKSCS-2004.TXT: New file.\n\t* tests/BIG5-HKSCS-2004.IRREVERSIBLE.TXT: New file.\n\t* tests/check-stateless: Convert colon in the charset name to a dash in\n\tthe file name.\n\t* tests/Makefile.in (check): Check BIG5-HKSCS:1999, BIG5-HKSCS:2001,\n\tBIG5-HKSCS:2004 instead of just BIG5-HKSCS.\n\t* tests/Makefile.msvc (check): Don't check BIG5-HKSCS.\n\t* tests/Makefile.os2 (check): Likewise.\n\n2006-05-17  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/progreloc.c: Update from GNU gettext.\n\n2006-05-16  Bruno Haible  <bruno@clisp.org>\n\n\t* src/Makefile.in (clean): Use EXEEXT.\n\t* tests/Makefile.in (check, clean): Likewise.\n\n2006-05-15  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Move some checks before AC_RELOCATABLE.\n\n2006-05-15  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for building shared libraries on mingw and Cygwin.\n\t* configure.ac (WOE32DLL, DLL_VARIABLE): New variables.\n\t* include/iconv.h.in (_libiconv_version): Mark as DLL_VARIABLE.\n\t* woe32dll/export.h: New file, from GNU gettext.\n\t* woe32dll/iconv-exports.h: New file.\n\t* Makefile.devel (include/iconv.h_vms, include/iconv.h.msvc-static,\n\tinclude/iconv.h.msvc-shared): Remove the DLL_VARIABLE annotation.\n\t* lib/Makefile.in (INCLUDES): Add -I for parent directory.\n\t(LDFLAGS): Add WOE32DLL dependent flags.\n\t(LDFLAGS_yes, LDFLAGS_no): New variables.\n\t(OBJECTS): Add WOE32DLL dependent objects.\n\t(OBJECTS_yes, OBJECTS_no): New variables.\n\t(iconv-exports.lo): New rule.\n\n2006-05-15  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/gettext.h: Update from GNU gettext.\n\t* srclib/pathmax.h: Update from GNU gettext.\n\t* srclib/progreloc.c: Update from GNU gettext.\n\t* srclib/unsetenv.c: Update from GNU gettext.\n\t* srclib/Makefile.am: Add snippet for creation of unistd.h.\n\t* m4/extensions.m4: Update from GNU gettext.\n\t* m4/gettext.m4: Update from GNU gettext.\n\t* m4/lib-ld.m4: Update from GNU gettext.\n\t* m4/lib-link.m4: Update from GNU gettext.\n\t* m4/lib-prefix.m4: Update from GNU gettext.\n\t* m4/longdouble.m4: Update from GNU gettext.\n\t* m4/nls.m4: Update from GNU gettext.\n\t* m4/onceonly.m4: Update from GNU gettext.\n\t* m4/po.m4: Update from GNU gettext.\n\t* m4/relocatable.m4: Update from GNU gettext.\n\t* m4/unistd_h.m4: New file, from GNU gettext.\n\t* Makefile.devel (aclocal.m4): Depend on it.\n\t* configure.ac: Invoke gl_HEADER_UNISTD.\n\n2006-05-14  Bruno Haible  <bruno@clisp.org>,\n            Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>\n\n\t* m4/libtool.m4 [ linux ] (AC_LIBTOOL_LANG_CXX_CONFIG)\n\t(AC_LIBTOOL_POSTDEP_PREDEP, AC_LIBTOOL_PROG_COMPILER_PIC)\n\t(AC_LIBTOOL_PROG_LD_SHLIBS): Add support for Sun C 5.9,\n\tSun C++ 5.9, and Sun Fortran 8.3 on Linux.\n\n2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>\n\n\t* m4/libtool.m4: On Cygwin, like on mingw, define DLL_EXPORT when\n\tcompiling a shared library object.\n\n2006-05-15  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux/config.rpath: Add support for Sun C 5.9 on Linux.\n\n2006-03-31  Juan Manuel Guerrero  <juan.guerrero@gmx.de>\n\n\t* djgpp/*: Update.\n\n2006-01-23  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Invoke gl_ALLOCSA.\n\n\t* Makefile.devel (aclocal.m4): Depend on $(CONFIGURES_IN).\n\n2006-01-22  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (xmalloc, xalloc_die) [NO_I18N]: Define to avoid using\n\tgettext().\n\n2006-01-22  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 6:0:4.\n\n2006-01-22  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c: Include error.h, exit.h.\n\t(print_version): Use EXIT_SUCCESS.\n\t(check_subst_formatstring, subst_mb_to_uc_fallback,\n\tsubst_uc_to_mb_fallback, subst_mb_to_wc_fallback,\n\tsubst_wc_to_mb_fallback, subst_mb_to_mb_fallback, convert, main): Use\n\terror() instead of fprintf to stderr.\n\n2006-01-22  Bruno Haible  <bruno@clisp.org>\n\n\tNew feature: character-dependent substitutions.\n\t* include/iconv.h.in (iconv_unicode_mb_to_uc_fallback,\n\ticonv_unicode_uc_to_mb_fallback, iconv_wchar_mb_to_wc_fallback,\n\ticonv_wchar_wc_to_mb_fallback): New types.\n\t(struct iconv_fallbacks): New structure type.\n\t(ICONV_SET_FALLBACKS): New macro.\n\t* configure.ac: Invoke gt_TYPE_WCHAR_T and substitute HAVE_WCHAR_T.\n\t* Makefile.os2 (all): Also substitute @HAVE_WCHAR_T@ in build/iconv.h.\n\t* Makefile.devel (include/iconv.h_vms, include/iconv.h.msvc-static,\n\tinclude/iconv.h.msvc-shared): Also substitute @HAVE_WCHAR_T@.\n\t* lib/converters.h (struct conv_struct): Add field 'fallbacks'.\n\t* lib/loop_unicode.h (struct uc_to_mb_fallback_locals): New type.\n\t(uc_to_mb_write_replacement): New function.\n\t(struct mb_to_uc_fallback_locals): New type.\n\t(mb_to_uc_write_replacement): New function.\n\t(unicode_loop_convert): Call mb_to_uc_fallback and uc_to_mb_fallback.\n\t(unicode_loop_reset): Call uc_to_mb_fallback.\n\t* lib/loop_wchar.h (struct wc_to_mb_fallback_locals): New type.\n\t(wc_to_mb_write_replacement): New function.\n\t(wchar_from_loop_convert): Call wc_to_mb_fallback.\n\t(struct mb_to_wc_fallback_locals): New type.\n\t(mb_to_wc_write_replacement): New function.\n\t(wchar_to_loop_convert): Call mb_to_wc_fallback.\n\t* lib/iconv.c (iconv_open): Initialize the 'fallbacks' field.\n\t(iconvctl): Handle ICONV_SET_FALLBACKS.\n\t* lib/genflags.c (struct iconv_fallbacks): New dummy definition.\n\t* src/iconv.c: Include limits.h.\n\t(isdigit, c_isprint): New macros.\n\t(usage): Document long options and new options.\n\t(check_subst_formatstring): New function.\n\t(ilseq_byte_subst, ilseq_wchar_subst, ilseq_unicode_subst): New\n\tvariables.\n\t(ilseq_byte_subst_size, ilseq_wchar_subst_size,\n\tilseq_unicode_subst_size): New variables.\n\t(ilseq_byte_subst_buffer, ilseq_wchar_subst_buffer,\n\tilseq_unicode_subst_buffer): New variables.\n\t(subst_mb_to_uc_cd, subst_mb_to_uc_temp_buffer): New variables.\n\t(subst_mb_to_uc_fallback): New function.\n\t(subst_uc_to_mb_cd, subst_uc_to_mb_temp_buffer): New variables.\n\t(subst_uc_to_mb_fallback): New function.\n\t(subst_mb_to_wc_cd, subst_mb_to_wc_temp_buffer): New variables.\n\t(subst_mb_to_wc_fallback): New function.\n\t(subst_wc_to_mb_cd, subst_wc_to_mb_temp_buffer): New variables.\n\t(subst_wc_to_mb_fallback): New function.\n\t(subst_mb_to_mb_cd, subst_mb_to_mb_temp_buffer): New variables.\n\t(subst_mb_to_mb_fallback): New function.\n\t(convert): Enlarge the outbuf when the conversion failed with E2BIG.\n\t(main): Handle new options --byte-subst, --widechar-subst,\n\t--unicode-subst.\n\t* man/iconv.1: Document --unicode-subst, --byte-subst, --widechar-subst\n\toptions.\n\t* tests/check-subst: New file.\n\t* tests/Makefile.in (check): Also invoke check-subst.\n\tSuggested by James Taylor <james@oakseed.demon.co.uk>.\n\n2006-01-21  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (print_version): Bump copyright year.\n\t(main): Accept long options --from-code, --to-code, --list, --silent.\n\tAccept abbreviated long options, like getopt() does.\n\t* man/iconv.1: Document long options.\n\n2005-12-29  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (print_version): Update copyright year.\n\n2005-12-29  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Renamed from configure.in.\n\t* Makefile.devel (CONFIGURES_IN, configure, config.h.in): Update.\n\n2005-12-29  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in: Bump version number.\n\t* include/iconv.h.in (_LIBICONV_VERSION): Likewise.\n\t* windows/iconv.rc: Likewise.\n\t* lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 5:1:3.\n\n2005-12-29  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux/config.guess: Update to GNU version 2005-12-23.\n\t* build-aux/config.sub: Likewise.\n\t* build-aux/config.libpath: Update from GNU gettext.\n\t* build-aux/install-sh: Upgrade to automake-1.9.5.\n\t* build-aux/missing: Upgrade to automake-1.9.5.\n\t* build-aux/mkinstalldirs: Upgrade to automake-1.9.5.\n\n2005-12-29  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/alloca.m4: Update from GNU gettext.\n\t* m4/allocsa.m4: Update from GNU gettext.\n\t* m4/canonicalize.m4: Update from GNU gettext.\n\t* m4/codeset.m4: Update from GNU gettext.\n\t* m4/eealloc.m4: Update from GNU gettext.\n\t* m4/error.m4: Update from GNU gettext.\n\t* m4/extensions.m4: Update from GNU gettext.\n\t* m4/gettext.m4: Update from GNU gettext.\n\t* m4/glibc21.m4: Update from GNU gettext.\n\t* m4/iconv.m4: Update from GNU gettext.\n\t* m4/intmax.m4: Update from GNU gettext.\n\t* m4/inttypes_h.m4: New file, from GNU gettext.\n\t* m4/isc-posix.m4: Update from GNU gettext.\n\t* m4/lcmessage.m4: Update from GNU gettext.\n\t* m4/longdouble.m4: Update from GNU gettext.\n\t* m4/longlong.m4: Update from GNU gettext.\n\t* m4/mbstate_t.m4: Update from GNU gettext.\n\t* m4/nls.m4: Update from GNU gettext.\n\t* m4/onceonly.m4: Update from GNU gettext.\n\t* m4/pathmax.m4: Update from GNU gettext.\n\t* m4/po.m4: Update from GNU gettext.\n\t* m4/printf-posix.m4: Update from GNU gettext.\n\t* m4/progtest.m4: Update from GNU gettext.\n\t* m4/readlink.m4: Update from GNU gettext.\n\t* m4/relocatable.m4: Update from GNU gettext.\n\t* m4/setenv.m4: Update from GNU gettext.\n\t* m4/signed.m4: Update from GNU gettext.\n\t* m4/ssize_t.m4: Update from GNU gettext.\n\t* m4/stdbool.m4: Update from GNU gettext.\n\t* m4/stdint_h.m4: New file, from GNU gettext.\n\t* m4/strerror.m4: Update from GNU gettext.\n\t* m4/strerror_r.m4: Update from GNU gettext.\n\t* m4/unlocked-io.m4: Update from GNU gettext.\n\t* m4/wchar_t.m4: Update from GNU gettext.\n\t* m4/wint_t.m4: Update from GNU gettext.\n\t* m4/xreadlink.m4: Update from GNU gettext.\n\t* Makefile.devel (aclocal.m4): Depend on m4/inttypes_h.m4 and\n\tm4/stdint_h.m4 as well.\n\t* configure.in: Invoke AC_TYPE_MBSTATE_T instead of AC_MBSTATE_T.\n\tInvoke gl_FUNC_GLIBC_UNLOCKED_IO instead of jm_FUNC_GLIBC_UNLOCKED_IO.\n\tInvoke gl_ERROR instead of gt_FUNC_ERROR_AT_LINE.\n\tDon't invoke AC_AIX and AC_MINIX, done by gl_USE_SYSTEM_EXTENSIONS.\n\tTemporarily redefine AC_LIBOBJ and AC_REPLACE_FUNCS, so as to fill\n\tSRCLIBOBJS instead of LIBOBJS.\n\t* srclib/alloca_.h: Update from GNU gettext.\n\t* srclib/allocsa.h: Update from GNU gettext.\n\t* srclib/canonicalize.c: Update from GNU gettext.\n\t* srclib/error.h: Update from GNU gettext.\n\t* srclib/error.c: Update from GNU gettext.\n\t* srclib/gettext.h: Update from GNU gettext.\n\t* srclib/memmove.c: Update from GNU gettext.\n\t* srclib/progname.h: Update from GNU gettext.\n\t* srclib/progname.c: Update from GNU gettext.\n\t* srclib/progreloc.c: Update from GNU gettext.\n\t* srclib/readlink.c: Update from GNU gettext.\n\t* srclib/relocatable.c: Update from GNU gettext.\n\t* srclib/relocwrapper.c: Update from GNU gettext.\n\t* srclib/setenv.h: Update from GNU gettext.\n\t* srclib/setenv.c: Update from GNU gettext.\n\t* srclib/stdbool_.h: Update from GNU gettext.\n\t* srclib/stdint_.h: Update from gnulib.\n\t* srclib/strerror.c: Update from GNU gettext.\n\t* srclib/unlocked-io.h: Update from GNU gettext.\n\t* srclib/unsetenv.c: Update from GNU gettext.\n\t* srclib/xalloc.h: Update from GNU gettext.\n\t* srclib/xmalloc.c: Update from GNU gettext.\n\t* srclib/xreadlink.c: Update from GNU gettext.\n\t* srclib/xstrdup.c: Update from GNU gettext.\n\t* srclib/Makefile.am (DEFS): Also define EXEEXT.\n\t(libicrt_a_LIBADD): Use SRCLIBOBJS instead of LIBOBJS.\n\t(libicrt_a_DEPENDENCIES): New variable.\n\t* src/Makefile.in (EXEEXT): New variable.\n\t* build-aux/install-reloc: Update from GNU gettext.\n\t* build-aux/reloc-ldflags: Update from GNU gettext.\n\t* build-aux/config.rpath: Update from GNU gettext.\n\n2005-12-29  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update, based on libtool-1.5.22.\n\t* build-aux/ltmain.sh: Update, based on libtool-1.5.22.\n\n2005-12-24  Bruno Haible  <bruno@clisp.org>\n\n\tCheck the whole range of GB18030.\n\t* tests/GB18030-BMP.TXT: Renamed from tests/GB18030.TXT.\n\t* tests/gengb18030z.c: New file.\n\t* tests/table-from.c (main): For GB18030, don't stop at U+10000.\n\t* tests/table-to.c (main): Likewise.\n\t* tests/Makefile.in (check): Generate GB18030.TXT on the fly from\n\tGB18030-BMP.TXT.\n\t(clean): Remove also gengb18030z and GB18030.TXT.\n\t* tests/Makefile.msvc (check): Generate GB18030.TXT on the fly from\n\tGB18030-BMP.TXT.\n\t(clean): Remove also GB18030Z.TXT, GB18030TMP.TXT, GB18030.TXT.\n\t* tests/Makefile.os2 (check): Depend on gengb18030z.exe. Generate\n\tGB18030.TXT on the fly from GB18030-BMP.TXT.\n\t(clean): Remove also GB18030Z.TXT, GB18030TMP.TXT, GB18030.TXT.\n\n2005-12-20  Bruno Haible  <bruno@clisp.org>\n\n\t* tests/table-to.c (main): Test the mappings up to U+10FFFF, not only\n\tup to U+2FFFF. Tolerate that Unicode language tags are silently mapped\n\tto nothing.\n\n2005-12-22  Bruno Haible  <bruno@clisp.org>\n\n\tExtend GB18030 converter to cover the entire Unicode PUA.\n\t* lib/gb18030.h: Update comments, based on second printing.\n\t(gb18030_mbtowc): Add mapping for range U+E000..U+E765.\n\t(gb18030_pua2charset): New array.\n\t(gb18030_wctomb): Add mapping for range U+E000..U+E765 and the two-byte\n\tpart of range U+E766..U+E864.\n\t* lib/gb18030ext.h (gb18030ext_2uni_pagefe): Add mappings to private\n\tarea.\n\t(gb18030ext_mbtowc): Add mapping for the two-byte part of range\n\tU+E766..U+E864.\n\t* lib/gb18030uni.h (gb18030uni_charset2uni_ranges,\n\tgb18030uni_uni2charset_ranges, gb18030uni_ranges): Add 12 more\n\tintervals.\n\t(gb18030uni_mbtowc, gb18030uni_wctomb): Update.\n\t* tests/GB18030.TXT: Complete mappings to private area.\n\n2005-12-22  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/gbk.h: Update comments.\n\n2005-12-20  Bruno Haible  <bruno@clisp.org>\n\n\tAdd private area mappings to CP949.\n\t* lib/cp949.h (cp949_mbtowc, cp949_wctomb): Map U+E000..U+E0BB like\n\tmany others do it.\n\t* tests/CP949.TXT: Add mappings for U+E000..U+E0BB.\n\n2005-12-15  Bruno Haible  <bruno@clisp.org>\n\n\tAdd private area mappings to CP950.\n\t* lib/cp950.h (cp950_mbtowc, cp950_wctomb): Map U+E000..U+F6B0 like\n\tmost others do it.\n\t* tests/CP950.TXT: Add mappings for U+E000..U+F6B0.\n\n2005-12-15  Bruno Haible  <bruno@clisp.org>\n\n\tMake CP936 follow what Microsoft does.\n\tIn http://www.microsoft.com/globaldev/reference/dbcs/936.mspx they\n\tadded a 0x80 - U+20AC mapping to the code chart, but not to the\n\ttooltips and not to the list of mappings.\n\t* lib/cp936.h: New file.\n\t* lib/gbk.h: Update comments.\n\t* lib/ces_gbk.h: Update comments.\n\t* lib/converters.h: Include cp936.h.\n\t* lib/encodings.def (CP936): New encoding.\n\t(GBK): Remove CP936 aliases.\n\t* README, man/iconv_open.3: Add CP936.\n\t* tests/Makefile.in (check): Check CP936.\n\t* tests/Makefile.msvc (check): Likewise.\n\t* tests/Makefile.os2 (check): Likewise.\n\t* tests/CP936.TXT: New file.\n\n2005-12-14  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/cp932.h (cp932_wctomb): Map U+FF5E, U+2225, U+FF0D, U+FFE0,\n\tU+FFE1 like Microsoft does it.\n\t* lib/CP932.IRREVERSIBLE.TXT: Add these mappings.\n\tReported by Lei Wang <lwang@qilinsoft.com>.\n\n2005-12-14  Bruno Haible  <bruno@clisp.org>\n\n\tFollow Euro sign addition done in 1999 in\n\thttp://www.microsoft.com/globaldev/reference/dbcs/950/950_A3.mspx\n\t* lib/cp950.h (cp950_mbtowc, cp950_wctomb): Add mapping for 0xA3E1.\n\t* tests/CP950.TXT: Add mapping for 0xA3E1.\n\n2005-11-11  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/euc_jp.h (euc_jp_wctomb): When writing a 3-bytes byte sequence\n\tand only two bytes are available in the output buffer, return\n\tRET_TOOSMALL instead of overrunning the output buffer.\n\t* lib/isoir165.h (isoir165_wctomb): When only one byte is available\n\tin the output buffer, don't overrun the output buffer.\n\tReported by William Bardwell <bardwell@curl.com>.\n\n2005-09-18  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update, based on libtool-1.5.20.\n\t* build-aux/ltmain.sh: Update, based on libtool-1.5.20.\n\n2005-08-12  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/big5_2003.h: Map 0xF9FA..0xF9FD differently.\n\t* tests/BIG5-2003.TXT: Likewise.\n\t* tests/BIG5-2003.IRREVERSIBLE.TXT: New file.\n\tReported by Ping Yeh <ping@pingyeh.net>.\n\n2005-07-24  Bruno Haible  <bruno@clisp.org>\n\n\tTidy up exported symbols.\n\t* m4/visibility.m4: New file.\n\t* include/export.h: New file.\n\t* configure.in: Invoke gl_VISIBILITY. Use AC_CONFIG_FILES. Arrange to\n\tcreate also include/iconv.h.inst.\n\t* Makefile.devel (all): Depend on include/iconv.h.build.in.\n\t(aclocal.m4): Depend on m4/visibility.m4.\n\t(include/iconv.h.build.in): New rule.\n\t* Makefile.in (install-lib, install): Install include/iconv.h.inst,\n\tnot the include/iconv.h that was used for building.\n\t(distclean, maintainer-clean): Remove also include/iconv.h.inst.\n\t* lib/Makefile.in (CFLAGS): Add @CFLAG_VISIBILITY@.\n\t(DEFS): Also define BUILDING_LIBICONV and BUILDING_DLL.\n\t* lib/config.h.in (HAVE_VISIBILITY): New macro.\n\t* lib/relocatable.h (RELOCATABLE_DLL_EXPORTED) [HAVE_VISIBILITY]:\n\tDefine to the gcc visibility attribute.\n\t* srclib/relocatable.h (RELOCATABLE_DLL_EXPORTED) [HAVE_VISIBILITY]:\n\tLikewise.\n\n2005-07-25  Bruno Haible  <bruno@clisp.org>\n\n\t2003-08-24  Bruno Haible  <bruno@clisp.org>\n\t* lib/relocatable.h: Make this file includable in C++ mode: add extern\n\t\"C\".\n\n2005-07-08  Bruno Haible  <bruno@clisp.org>\n\n\t* Version 1.10 released.\n\n2005-07-08  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4 (postinstall_cmds) [cygwin,mingw,pw32]: Make DLL\n\texecutable after installing it.\n\n2005-07-08  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in: Bump version number.\n\t* include/iconv.h.in (_LIBICONV_VERSION): Likewise.\n\t* windows/iconv.rc: Likewise.\n\t* lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 5:0:3.\n\n2005-07-05  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (ACLOCAL): New variable.\n\t(aclocal.m4): Use it.\n\n2005-07-05  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/relocatable.m4 (AC_RELOCATABLE): On mingw, simply set\n\tSET_RELOCATABLE to a trivial value.\n\n2004-08-08  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/progreloc.c (xstrdup): Define as strdup if no xmalloc should\n\tbe used.\n\n2004-04-28  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):\n\tTreat Cygwin like Windows, since it now accepts Windows pathnames.\n\n2005-06-09  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in (mkinstalldirs): Use build-aux/ instead of autoconf/.\n\t* lib/Makefile.in (mkinstalldirs): Likewise.\n\t* src/Makefile.in (mkinstalldirs): Likewise.\n\t* man/Makefile.in (mkinstalldirs): Likewise.\n\n2005-06-08  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/canonicalize.c (__realpath): Avoid gcc warnings on platforms\n\tthat don't support symbolic links.\n\n2005-06-08  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/binary-io.h (fileno): Undefine before defining it. Avoids a\n\tgcc warning on mingw.\n\n2005-05-22  Bruno Haible  <bruno@clisp.org>\n\n\tImplement and document BIG5-2003.\n\t* lib/big5_2003.h: New file.\n\t* lib/converters.h: Include it.\n\t* lib/encodings_extra.def (BIG5-2003): New encoding.\n\t* README, man/iconv_open.3: Add BIG5-2003.\n\t* tests/Makefile.in (check-extra-yes): Check BIG5-2003.\n\t* tests/BIG5-2003.TXT: New file.\n\n2005-05-21  Bruno Haible  <bruno@clisp.org>\n\n\tAdd EURO SIGN to EUC-TW converter.\n\t* lib/cns11643_1.h (cns11643_1_2uni_page42): Add entry for 0x14242.\n\t(cns11643_1_mbtowc): Update.\n\t* lib/cns11643_inv.h (cns11643_inv_2charset): Add entry for 0x20AC.\n\t(cns11643_inv_uni2indx_page*): Update.\n\t* lib/dec_hanyu.h (dec_hanyu_mbtowc, dec_hanyu_wctomb): Consider only\n\tpart of row 42.\n\t* tests/EUC-TW.TXT: Add entry for 0x20AC.\n\t* tests/EUC-TW.IRREVERSIBLE.TXT: Likewise.\n\n2005-05-03  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/Makefile (ALL): Add pt154.h.\n\t(pt154.h): New rule.\n\t* lib/encodings.def: Add PT154.\n\t* lib/pt154.h: New file.\n\t* lib/converters.h: Include it.\n\t* README, man/iconv_open.3: Add PT154.\n\t* NOTES: Mention PT154.\n\t* tests/PT154.TXT: New file.\n\t* tests/Makefile.in (check): Also test PT154.\n\t* tests/Makefile.msvc (check): Likewise.\n\t* tests/Makefile.os2 (check): Likewise.\n\n2005-03-29  Bruno Haible  <bruno@clisp.org>\n\n\tRename libiconv_plug.so to preloadable_libiconv.so.\n\t* configure.in (PLUGLIB): Set to preloadable_libiconv.so instead of\n\tlibiconv_plug.so.\n\t* lib/Makefile.in (preloadable_libiconv.so): Renamed from\n\tlibiconv_plug.so.\n\t(preloadable_libiconv_linux.so): Renamed from libiconv_plug_linux.so.\n\t(preloadable_libiconv_solaris.so): Renamed from\n\tlibiconv_plug_solaris.so.\n\t(preloadable_libiconv_osf.so): Renamed from libiconv_plug_osf.so.\n\t(clean): Update.\n\t* README: Update.\n\n2005-03-29  Bruno Haible  <bruno@clisp.org>\n\n\tImplement and document ATARIST.\n\t* tools/Makefile (ALL): Add atarist.h.\n\t(atarist.h): New rule.\n\t* lib/atarist.h: New file.\n\t* lib/converters.h: Include it.\n\t* lib/encodings_extra.def (ATARIST): New encoding.\n\t* README, man/iconv_open.3: Add ATARIST.\n\t* tests/Makefile.in (check-extra-yes): Check ATARIST.\n\t* tests/ATARIST.TXT: New file.\n\n2005-03-22  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux: New directory, renamed from autoconf.\n\t* configure.in (AC_CONFIG_AUX_DIR): Use build-aux.\n\n2005-03-16  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of\n\tHAVE_LONGLONG_64BIT.\n\t* srclib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of\n\tHAVE_LONGLONG_64BIT.\n\t* srclib/Makefile.am (stdint.h): Likewise.\n\n2005-03-14  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (aclocal.m4): Depend also on allocsa.m4, eealloc.m4,\n\textensions.m4, intmax.m4, inttypes.m4, longdouble.m4, longlong.m4,\n\tprintf-posix.m4, readlink.m4, signed.m4, ssize_t.m4, stdint.m4,\n\twchar_t.m4, wint_t.m4.\n\n2005-03-13  Bruno Haible  <bruno@clisp.org>\n\n\tMake stdout error checking reliable, also when writing to a NFS file.\n\t* src/iconv.c (main): Check the return value of fclose(stdout).\n\t* lib/genaliases.c (main): Likewise.\n\t* lib/genaliases2.c (main): Likewise.\n\t* lib/genflags.c (main): Likewise.\n\t* lib/gentranslit.c (main): Likewise.\n\t* tests/genutf8.c (main): Likewise.\n\t* tests/table-from.c (main): Likewise.\n\t* tests/table-to.c (main): Likewise.\n\n2005-03-13  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (convert): Before outputting an error message, flush\n\tstdout and output a newline if suitable.\n\n2005-03-13  Bruno Haible  <bruno@clisp.org>\n\n\tImproved error messages.\n\t* srclib/width.c: New file, from GNU clisp.\n\t* srclib/uniwidth.h: New file, from GNU clisp with modifications.\n\t* srclib/unitypes.h: New file, from GNU clisp with modifications.\n\t* srclib/cjk.h: New file, from GNU clisp.\n\t* srclib/streq.h: New file, from GNU clisp.\n\t* srclib/stdint_.h: New file, from gnulib.\n\t* m4/stdint.m4: New file, from gnulib.\n\t* m4/inttypes.m4: New file, from gnulib.\n\t* srclib/Makefile.am: Add gnulib module 'stdint' snippet.\n\t(BUILT_SOURCES): New variable.\n\t(libicrt_a_SOURCES): Add width.c, uniwidth.h, unitypes.h, cjk.h,\n\tstreq.h.\n\t* configure.in: Invoke gl_STDINT_H.\n\t* src/iconv.c: Include cjk.h, uniwidth.h.\n\t(line, column, cjkcode): New variables.\n\t(update_line_column): New function.\n\t(convert): Initialize line and column. In all error message, show also\n\tthe line and column number.\n\t(main): Initialize cjkcode. Set up hooks to call update_line_column.\n\n2005-03-13  Bruno Haible  <bruno@clisp.org>\n\n\t* include/iconv.h.in (iconv_canonicalize): New declaration.\n\t* lib/genaliases.c (emit_encoding): Take two output streams as\n\targuments. To the second stream, emit a shell command for extracting\n\toffsets into the gperf generated string pool.\n\t(main): Write the shell commands into file descriptors 3 and 4.\n\t* lib/genaliases2.c (emit_encoding): Take two output streams as\n\targuments. To the second stream, emit an expression for the offset\n\tinto the string pool.\n\t(main): Write the offsets into file descriptor 3.\n\t* Makefile.devel (lib/aliases.gperf): Remove target.\n\t(lib/aliases.h): Generate lib/aliases.gperf temporarily. Generate also\n\tlib/canonical.h and lib/canonical_local.h.\n\t(lib/aliases_aix.h): Generate also lib/canonical_aix.h.\n\t(lib/aliases_osf1.h): Generate also lib/canonical_osf1.h.\n\t(lib/aliases_dos.h): Generate also lib/canonical_dos.h.\n\t(lib/aliases_extra.h): Generate also lib/canonical_extra.h.\n\t* lib/iconv.c (stringpool2): Provide default definition when it doesn't\n\texist.\n\t(all_canonical): New array.\n\t(iconv_canonicalize): New function.\n\n2005-03-13  Bruno Haible  <bruno@clisp.org>\n\n\t* include/iconv.h.in (iconv_unicode_char_hook, iconv_wide_char_hook,\n\ticonv_hooks): New types.\n\t(ICONV_SET_HOOKS): New macro.\n\t* lib/converters.h (struct conv_struct): Add field 'hooks'.\n\t* lib/iconv.c (iconv_open): Initialize hooks to NULL.\n\t(iconvctl): Handle ICONV_SET_HOOKS.\n\t* lib/loop_unicode.h (unicode_loop_convert, unicode_loop_reset): After\n\tconversion of a character, call the uc_hook.\n\t* lib/loop_wchar.h (wchar_id_loop_convert): After every character, call\n\tthe wc_hook.\n\t* lib/genflags.c (iconv_hooks): Provide a dummy definition.\n\n2005-02-05  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (main): In case of unsupported encodings, show a hint\n\ttowards \"iconv -l\".\n\n2005-01-06  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/Makefile.msvc (CFLAGS): Define also INSTALLPREFIX.\n\t* lib/Makefile.vms (DEFS): Likewise.\n\tReported by Troels Walsted Hansen <Troels.W.Hansen@fast.no>.\n\n2005-01-05  Bruno Haible  <bruno@clisp.org>\n\n\t* autoconf/config.rpath: Update from GNU gettext.\n\n2005-01-05  Bruno Haible  <bruno@clisp.org>\n\n\tAssume automake-1.9.\n\t* Makefile.devel (AUTOMAKE): Assume automake-1.9.\n\n2005-01-05  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from GNU gettext, based on libtool-1.5.10.\n\t* autoconf/ltmain.sh: Update from GNU gettext, based on libtool-1.5.10.\n\n2004-11-11  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/iconv.c (iconv_open): Accept the suffixes //TRANSLIT and //IGNORE\n\tin arbitrary order.\n\tReported by Lukas Gebauer <gebauerl@mlp.cz>.\n\n2004-09-21  Juan Manuel Guerrero  <st001906@hrz1.hrz.tu-darmstadt.de>\n\n\t* djgpp/config.bat: Update.\n\t* djgpp/config.sed: Update.\n\t* djgpp/config.site: Update.\n\t* djgpp/edtest.bat: Update.\n\t* djgpp/fnchange.in: Update.\n\t* djgpp/Makefile.maint: Update.\n\t* djgpp/makefile.sed: Update.\n\t* djgpp/README.in: Update.\n\t* djgpp/sources.sed: Update.\n\t* djgpp/translit-check.sed: Update.\n\n2004-08-25  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from GNU gettext, based on libtool-1.5.6.\n\t* autoconf/ltmain.sh: Update from GNU gettext, based on libtool-1.5.6.\n\n2004-07-31  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate to JISX 0213 plane 1 to 2004 version (ISO-IR-233).\n\t* tools/Makefile (jisx0213.h): Bump version number.\n\t* tools/JISX0213.TXT: Change mappings U+2015 -> U+2014,\n\tU+2299 -> U+29BF, and add 10 new characters.\n\t* tools/cjk_tab_to_h.c (output_title): Bump year.\n\t(do_jisx0213): Update comments. Emit a conditional 'inline'.\n\t* lib/jisx0213.h: Regenerated.\n\t* lib/iso2022_jp3.h (iso2022_jp3_mbtowc): Accept escape sequence\n\tESC $ ( Q as a synonym of ESC $ ( O.\n\t(iso2022_jp3_wctomb): Emit ESC $ ( Q instead of ESC $ ( O.\n\t* tests/EUC-JISX0213.TXT: Change mappings U+2015 -> U+2014,\n\tU+2299 -> U+29BF, and add 10 new characters.\n\t* tests/SHIFT_JISX0213.TXT: Likewise.\n\t* tests/ISO-2022-JP-3-snippet: Update.\n\t* tests/ISO-2022-JP-3-snippet.UTF-8: Update.\n\n2004-07-22  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/encodings.def (ISO-8859-7): Add alias ISO_8859-7:2003.\n\t* tools/Makefile (iso8859_7.h): Use conversion table from 2003.\n\t* lib/iso8859_7.h: Add mappings for 0xa4, 0xa5, 0xaa.\n\t* tests/ISO-8859-7.TXT: Update to ISO_8859-7:2003.\n\n2004-07-22  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/Makefile (ALL): Add iso8859_11.h.\n\t(iso8859_11.h): New rule.\n\t* lib/encodings.def: Add ISO-8859-11.\n\t* lib/iso8859_11.h: New file.\n\t* lib/converters.h: Include it.\n\t* tests/ISO-8859-11.TXT: New file.\n\t* tests/Makefile.in (check): Also test ISO-8859-11.\n\t* tests/Makefile.msvc (check): Likewise.\n\t* tests/Makefile.os2 (check): Likewise.\n\n2004-07-17  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (main): Terminate option parsing when option -- is seen.\n\tReported by Len Lattanzi <zardoz@users.sourceforge.net>.\n\n2004-03-05  Bruno Haible  <bruno@clisp.org>\n\n\t* src/Makefile.in (install): Make DESTDIR work on HP-UX.\n\tReported by Bob Proulx <box@proulx.com>.\n\n2004-02-19  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/vietcomb.h (viet_comp_table_data): Un-uncomment 0x00D5, 0x00F5,\n\t0x0168, 0x0169. Needed for TCVN-5712 but not for CP1258.\n\t(viet_comp_table0301_len): Increment by 4.\n\n\t* lib/cp1255.h (cp1255_mbtowc): Don't delay the handling of characters\n\twhich are not entries in cp1255_comp_table_data.\n\t* lib/cp1258.h (cp1258_comp_bases): New array.\n\t(cp1258_mbtowc): Don't delay the handling of characters which are not\n\trelevant entries in viet_comp_table_data.\n\t* lib/tcvn.h (tcvn_comp_bases): New array.\n\t(tcvn_mbtowc): Don't delay the handling of characters which are not\n\trelevant entries in viet_comp_table_data.\n\tReported by Alain Bench <veronatif@free.fr>.\n\n2004-02-02  Perry Rapp  <lifelines_3_0_18@hotmail.com>\n            Bruno Haible  <bruno@clisp.org>\n\n\t* man/iconvctl.3: New file.\n\t* man/iconv.3: Refer to it in \"See also\".\n\t* man/iconv_open.3: Likewise.\n\n2004-01-24  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/progreloc.c (xstrdup): Define as strdup if no xmalloc should\n\tbe used.\n\n2004-01-20  Bruno Haible  <bruno@clisp.org>\n\n\tUpgrade from gettext-0.14.\n\n\t* configure.in: Call gl_USE_SYSTEM_EXTENSIONS. Call AM_STDBOOL_H\n\tinstead of gt_STDBOOL_H. Provide a definition for DLL_VARIABLE.\n\t* srclib/Makefile.am (libicrt_a_SOURCES): Add allocsa.h, allocsa.c,\n\txalloc.h. Remove xmalloc.h.\n\t(libicrt_a_LIBADD): Remove @ALLOCA@.\n\t* srclib/Makefile.msvc (OBJECTS): Add allocsa.obj.\n\t(allocsa.obj): New rule.\n\t* srclib/Makefile.vms (OBJECTS): Add allocsa.obj.\n\t(allocsa.obj): New rule.\n\t* Makefile.devel (config.h_vms): Set MALLOC_0_IS_NONNULL to 0.\n\t(config.h.msvc): Set MALLOC_0_IS_NONNULL to 1.\n\n    lib/:\n\n\t2003-10-09  Bruno Haible  <bruno@clisp.org>\n\t* lib/relocatable.c: Include xalloc.h instead of xmalloc.h.\n\n\t2003-08-01  Bruno Haible  <bruno@clisp.org>\n\t* lib/relocatable.c (find_shared_library_fullname): Disable the code on\n\tLinux/libc5. Reported by Alain Guibert <derogaton+bgli@oreka.com>.\n\n\t2003-06-22  Bruno Haible  <bruno@clisp.org>\n\t* lib/relocatable.c (compute_curr_prefix): Comment out this function in\n\tthe case when it is not used.\n\tReported by Pavel Roskin <proski@gnu.org>.\n\n    m4/:\n\n\t* m4/gettext.m4: Upgrade from GNU gettext. Many changes.\n\t* m4/po.m4: Likewise.\n\n\t* m4/readlink.m4: New file, from GNU gettext.\n\n\t2003-11-30  Bruno Haible  <bruno@clisp.org>\n\t* m4/allocsa.m4: New file.\n\t* m4/eealloc.m4: New file.\n\t* m4/setenv.m4 (gl_PREREQ_SETENV): Require gl_ALLOCSA instead of\n\tAC_FUNC_ALLOCA.\n\n\t2003-10-21  Bruno Haible  <bruno@clisp.org>\n\t* m4/canonicalize.m4 (gl_PREREQ_CANONICALIZE): Also test for\n\treadlink().\n\n\t2003-08-24  Bruno Haible  <bruno@clisp.org>\n\t* m4/relocatable.m4 (AC_RELOCATABLE): Use $(host) instead of @host@,\n\tsince the substitution of @host@ may occur before the substitution of\n\t@SET_RELOCATABLE@.\n\n\t2003-08-23  Bruno Haible  <bruno@clisp.org>\n\t* stdbool.m4: Replace with the version from gnulib, without\n\tAC_HEADER_STDBOOL.\n\n\t2003-08-08  Paul Eggert  <eggert@twinsun.com>\n\t* m4/extensions.m4: New file.\n\t* m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):\n\tRequire gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.\n\n\t2003-07-01  Bruno Haible  <bruno@clisp.org>\n\t* m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.\n\t<sys/types.h> should be sufficient.\n\tReported by Paul Eggert.\n\n\t2003-07-01  Bruno Haible  <bruno@clisp.org>\n\t* m4/lib-prefix.m4 (AC_LIB_ARG_WITH): Avoid \"duplicated macro\" error\n\tfrom aclocal-1.4-p4.\n\tReported by Luke Schierer <lschiere@rackspace.com> and\n\tMichael C. Toren <mct@toren.net>.\n\n\t2003-07-01  Paul Eggert  <eggert@twinsun.com>\n\t* m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since\n\txreadlink.c now includes it unconditionally.\n\n\t2003-06-17  Paul Eggert  <eggert@twinsun.com>\n\t* m4/lib-ld.m4 (AC_LIB_PROG_LD_GNU, AC_LIB_PROG_LD): Don't use egrep,\n\tfor portability to POSIX 1003.1-2001.  Backported from libtool-1.5.\n\n\t2003-05-28  Paul Eggert  <eggert@twinsun.com>\n\t* m4/pathmax.m4 (gl_PATHMAX): Don't check for limits.h.\n\t* m4/xreadlink.m4 (gl_XREADLINK): Likewise.\n\n\t2002-12-24  Bruno Haible  <bruno@clisp.org>\n\t* m4/setenv.m4 (gt_FUNC_SETENV): New macro.\n\t(gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4\n\twhen invoked twice.\n\t(gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old\n\tgt_FUNC_SETENV.\n\n    srclib/:\n\n\t2003-11-30  Bruno Haible  <bruno@clisp.org>\n\t* srclib/alloca.c: Remove file.\n\n\t2003-11-30  Bruno Haible  <bruno@clisp.org>\n\tSafer stack allocation.\n\t* srclib/allocsa.h: New file.\n\t* srclib/allocsa.c: New file.\n\t* canonicalize.c: Include allocsa.h.\n\t(__realpath): Use allocsa instead of alloca. Don't clobber errno right\n\tbefore returning NULL.\n\t* srclib/relocwrapper.c: Indirectly depends on allocsa.\n\t* srclib/setenv.c: Include allocsa.h.\n\t(alloca): Remove fallback definition.\n\t(freea): Remove macro.\n\t(__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa\n\tinstead of freea.\n\n\t2003-11-17  Bruno Haible  <bruno@clisp.org>\n\t* srclib/canonicalize.c: #undef realpath after <config.h> but before\n\tthe system includes, so as to avoid a prototype clash on Solaris 2.5.1.\n\tReported by Warren L. Dodge <warrend@mdhost.cse.tek.com>.\n\n\t2003-10-21  Bruno Haible  <bruno@clisp.org>\n\t* srclib/canonicalize.c (lstat): Define as an alias to 'stat' on\n\tsystems without symbolic links.\n\n\t2003-10-17  Bruno Haible  <bruno@clisp.org>\n\t* srclib/binary-io.h: Avoid warnings on Cygwin.\n\n\t2003-10-09  Bruno Haible  <bruno@clisp.org>\n\t* srclib/xalloc.h: Renamed from xmalloc.h.\n\t* srclib/progreloc.c: Include xalloc.h instead of xmalloc.h.\n\t* srclib/relocatable.c: Likewise.\n\t* srclib/xmalloc.c: Likewise.\n\t* srclib/xreadlink.c: Likewise.\n\t* srclib/xstrdup.c: Likewise.\n\n\t2003-09-12  Paul Eggert  <eggert@twinsun.com>\n\t* srclib/progreloc.c (get_full_program_name): Define via prototype.\n\n\t2003-09-12  Paul Eggert  <eggert@twinsun.com>\n\t* srclib/setenv.c (clearenv): Define via prototype.\n\n\t2003-09-10  Bruno Haible  <bruno@clisp.org>\n\t* srclib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.\n\t* srclib/unsetenv.c: Likewise.\n\n\t2003-08-28  Bruno Haible  <bruno@clisp.org>\n\t* srclib/binary-io.h: Undefine O_BINARY before defining it. This avoids\n\ta warning on QNX, which defines O_BINARY to 000000.\n\n\t2003-08-24  Bruno Haible  <bruno@clisp.org>\n\t* srclib/binary-io.h: Include <stdio.h>, to avoid a compilation error\n\twhen MSVC7 <stdio.h> is included later.\n\n\t2003-08-24  Bruno Haible  <bruno@clisp.org>\n\t* srclib/error.h: Use ANSI C \"...\" declarations when compiling with\n\tMSVC, even though it doesn't define __STDC__ by default.\n\t* srclib/error.c: Use <stdarg.h> when compiling with MSVC, even though\n\tit doesn't define __STDC__ by default.\n\n\t2003-08-24  Bruno Haible  <bruno@clisp.org>\n\tSupport for building DLLs on Windows.\n\t* srclib/error.h (error_print_progname, error_message_count,\n\terror_one_per_line): Add DLL_VARIABLE attribute.\n\t* srclib/progname.h (program_name): Likewise.\n\n\t2003-08-24  Bruno Haible  <bruno@clisp.org>\n\t* srclib/progname.h: Make this file includable in C++ mode: add extern\n\t\"C\".\n\t* srclib/relocatable.h: Likewise.\n\t* srclib/xmalloc.h: Likewise.\n\n\t2003-08-22  Bruno Haible  <bruno@clisp.org>\n\t* srclib/progname.h (error_with_progname, maybe_print_progname): Remove\n\tdeclarations.\n\t* srclib/progname.c (error_with_progname): Remove variable.\n\t(maybe_print_progname): Remove function.\n\n\t2003-08-01  Bruno Haible  <bruno@clisp.org>\n\t* srclib/relocatable.c (find_shared_library_fullname): Disable the code\n\ton Linux/libc5. Reported by Alain Guibert <derogaton+bgli@oreka.com>.\n\n\t2003-07-01  Paul Eggert  <eggert@twinsun.com>\n\t* srclib/xreadlink.c: Include <sys/types.h> unconditionally, instead of\n\thaving it depend on HAVE_SYS_TYPES_H.\n\n\t2003-06-23  Bruno Haible  <bruno@clisp.org>\n\tAvoid compilation units that are empty after preprocessing.\n\t* srclib/canonicalize.c: Add dummy declaration.\n\t* srclib/strerror.c: Likewise.\n\t* srclib/error.c: Include <stdio.h> even if there's nothing to be\n\tcompiled.\n\n\t2003-06-22  Bruno Haible  <bruno@clisp.org>\n\t* srclib/relocatable.c (compute_curr_prefix): Comment out this function\n\tin the case when it is not used.\n\tReported by Pavel Roskin <proski@gnu.org>.\n\n\t2003-05-28  Paul Eggert  <eggert@twinsun.com>\n\t* srclib/pathmax.h: Include <limits.h> without checking for\n\tHAVE_LIMITS_H.\n\t* srclib/xreadlink.c: Likewise.\n\n2004-01-20  Bruno Haible  <bruno@clisp.org>\n\n\tAssume automake-1.8.\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Assume autoconf-2.59.\n\t(AUTOMAKE): Assume automake-1.8.\n\t* Makefile.in (am--refresh): New target.\n\n2004-01-23  Bruno Haible  <bruno@clisp.org>\n\n\t* Version 1.9.2 released.\n\n2004-01-23  Bruno Haible  <bruno@clisp.org>\n\n\t* tests/table-from.c: Include binary-io.h.\n\t(main): Switch stdout to binary mode.\n\t* tests/table-to.c: Include binary-io.h.\n\t(main): Switch stdout to binary mode.\n\t* tests/genutf8.c: Include binary-io.h.\n\t(main): Switch stdout to binary mode.\n\t* tests/Makefile.in (INCLUDES): Also look in srclib.\n\t(check): Pass INCLUDES when compiling genutf8.c.\n\t* tests/Makefile.os2 (INCLUDES): Also look in srclib.\n\t(genutf8.exe): Pass INCLUDES when compiling genutf8.c.\n\t* tests/Makefile.msvc (INCLUDES): Also look in srclib.\n\t(check): Pass INCLUDES when compiling genutf8.c.\n\n2004-01-21  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (force_binary): Remove variable.\n\t(usage): Don't document --binary any more.\n\t(convert, main): Always switch to binary mode.\n\t* tests/check-stateful.bat: Remove --binary option.\n\t* tests/check-translit.bat: Likewise.\n\t* tests/check-stateful.cmd: Likewise.\n\t* tests/check-translit.cmd: Likewise.\n\t* djgpp/stateful-check.sed: Remove MODE variable.\n\t* djgpp/translit-check.sed: Likewise.\n\n2004-01-21  Bruno Haible  <bruno@clisp.org>\n\n\t* man/iconv.3: Fix description of return value in case of error.\n\tReported by Jonathan Wakely <redi@users.sf.net>.\n\n2003-09-12  Paul Eggert  <eggert@twinsun.com>\n\n\t* srclib/progreloc.c (get_full_program_name): Define via prototype.\n\n2003-08-15  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (lib/translit.h): Add ulimit command so that the\n\tgentranslit program gets the stack it needs. Many Linux distributions\n\tallow only 8 MB of stack by default.\n\n2003-08-01  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/relocatable.c (find_shared_library_fullname): Disable the code on\n\tLinux/libc5.\n\t* srclib/relocatable.c (find_shared_library_fullname): Likewise.\n\tReported by Alain Guibert <derogaton+bgli@oreka.com>.\n\n2003-07-02  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/lib-ld.m4: Update from GNU gettext.\n\t* m4/lib-prefix.m4: Update from GNU gettext.\n\t* m4/gettext.m4: Update from GNU gettext.\n\t* m4/intmax.m4: New file, from GNU gettext.\n\t* m4/longdouble.m4: New file, from GNU gettext.\n\t* m4/longlong.m4: New file, from GNU gettext.\n\t* m4/printf-posix.m4: New file, from GNU gettext.\n\t* m4/signed.m4: New file, from GNU gettext.\n\t* m4/wchar_t.m4: New file, from GNU gettext.\n\t* m4/wint_t.m4: New file, from GNU gettext.\n\t* m4/pathmax.m4: Update from GNU gettext and gnulib.\n\t* m4/ssize_t.m4: Update from GNU gettext and gnulib.\n\t* m4/xreadlink.m4: Update from GNU gettext and gnulib.\n\t* m4/readlink.m4: New file, from gnulib.\n\t* autoconf/install-reloc: Update from GNU gettext.\n\t* srclib/stdbool_.h: Renamed from srclib/stdbool.h.in.\n\t* srclib/readlink.c: New file, from GNU gettext and gnulib.\n\t* srclib/Makefile.am (LIBADD_SOURCE): Add readlink.c.\n\t(EXTRA_DIST, stdbool.h): Use stdbool_.h instead of stdbool.h.in.\n\t* configure.in: Invoke gl_FUNC_READLINK.\n\n2003-06-22  Bruno Haible  <bruno@clisp.org>\n\n\t* src/Makefile.in (install): Link with the already installed library.\n\tThis fixes a link error on Solaris.\n\tReported by Paul Eggert.\n\n2003-06-08  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/canonicalize.c (__getcwd) [VMS]: Pass 3 arguments to getcwd.\n\n2003-05-02  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for libtool-1.5.\n\t* srclib/progname.c (set_program_name): Remove a leading\n\t\"<dirname>/.libs/lt-\" or \"<dirname>/.libs/\", not only \"lt-\".\n\n2003-06-23  Bruno Haible  <bruno@clisp.org>\n\n\tAvoid compilation units that are empty after preprocessing.\n\t* srclib/canonicalize.c: Add dummy declaration.\n\t* srclib/strerror.c: Likewise.\n\t* srclib/error.c: Include <stdio.h> even if there's nothing to be\n\tcompiled.\n\n2003-06-22  Bruno Haible  <bruno@clisp.org>\n\n\tPortability to mingw32.\n\t* m4/ssize_t.m4: New file, from GNU gettext.\n\t* m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.\n\tReported by Jeff Bonggren <jbon@cfl.rr.com>.\n\n2003-06-22  Bruno Haible  <bruno@clisp.org>\n\n\tPortability to mingw32.\n\t* lib/relocatable.c [WIN32]: Include <windows.h>.\n\t* srclib/relocatable.c: Likewise.\n\tReported by Jeff Bonggren <jbon@cfl.rr.com>.\n\n2003-06-22  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/relocatable.c (compute_curr_prefix): Comment out this function in\n\tthe case when it is not used.\n\t* srclib/relocatable.c (compute_curr_prefix): Likewise.\n\tReported by Pavel Roskin <proski@gnu.org>.\n\n2003-06-18  Bruno Haible  <bruno@clisp.org>\n\n\t* config/install-sh: Update from automake-1.7.5.\n\n2003-06-16  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/encodings.def (ISO-8859-15): Add alias LATIN-9.\n\t(ISO-8859-16): Add aliases ISO_8859-16:2001, LATIN10, L10. Remove alias\n\tISO_8859-16:2000.\n\t(GBK): Add aliases MS936, WINDOWS-936.\n\tReported by Guido Flohr <guido@imperia.net>.\n\n2003-05-09  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/canonicalize.c: Add #ifdef around versioned_symbol. Avoids an\n\t\"extraneous semicolon\" warning from Tru64 cc.\n\n2003-06-07  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (config.h_vms): Don't define HAVE_ENVIRON_DECL.\n\t* Makefile.vms (config.h): New rule.\n\t(all, install): Depend on it.\n\t(all, install, installdirs, uninstall, check): Fix typo.\n\t(mostlyclean, clean, distclean, maintainer-clean): Likewise. Remove\n\tconfig.h.\n\t* lib/Makefile.vms (DEFS): Fix value of INSTALLDIR.\n\t(OBJECTS): Use libiconv.obj instead of iconv.obj.\n\t(libiconv.obj): Renamed from iconv.obj.\n\t* srclib/Makefile.vms (INCLUDES): Add parent directory.\n\t(OBJECTS): Remove strtoul.obj, setenv.obj, unsetenv.obj.\n\t(strtoul.obj, setenv.obj, unsetenv.obj): Remove rules.\n\t(alloca.h): New rule.\n\t(canonicalize.obj): Depend on it.\n\t(clean): Remove alloca.h.\n\t* src/Makefile.vms (datadir, localedir): New variables.\n\t(DEFS): Also define LOCALEDIR.\n\t(iconv.obj): Add flags for relocatability,\n\t(iconv.exe): Link with libicrt. Use link_options.\n\t* vms/link_options.opt: New file.\n\tReported by Jouk Jansen <joukj@hrem.stm.tudelft.nl>.\n\n2003-06-07  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for relocatable data files even on Woe32.\n\t* lib/Makefile.msvc (PICFLAGS): Also define PIC.\n\n2003-05-22  Bruno Haible  <bruno@clisp.org>\n\n\t* Version 1.9.1 released.\n\n2003-05-22  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/genaliases.c (main): Emit %pic instead of %null-strings.\n\tChange type of 'name' field to 'int'.\n\t* lib/genaliases2.c (emit_encoding): Add a 'tag' argument. Emit an\n\tinvocation of macro S(), including the tag and a counter.\n\t(main): Use the command-line argument as tag.\n\t* Makefile.devel (lib/aliases_aix.h, lib/aliases_osf1.h,\n\tlib/aliases_dos.h, lib/aliases_extra.h): Pass a tag to the program.\n\t* lib/iconv.c (stringpool2_t): New type.\n\t(stringpool2_contents): New data table.\n\t(stringpool2): New macro.\n\t(sysdep_aliases): Make position-independent. Move #includes out to\n\taliases2.h.\n\t(aliases2_lookup): Update.\n\t(nalias): New type.\n\t(compare_by_index): Use 'struct nalias' instead of 'struct alias'.\n\t(iconvlist): Convert 'struct alias' to 'struct nalias' while copying.\n\t* lib/aliases2.h: New file, extracted from lib/iconv.c.\n\n2003-05-20  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/iconv.c (iconvlist): Test p->name against NULL, not against \"\".\n\tReported by Muraoka Taro <koron@tka.att.ne.jp>.\n\n2003-05-19  Bruno Haible  <bruno@clisp.org>\n\n\t* windows/iconv.rc: Include <winver.h>.\n\tReported by Perry Rapp.\n\n2003-05-18  Bruno Haible  <bruno@clisp.org>\n\n\t* Version 1.9 released.\n\n2003-05-18  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/Makefile.in (libiconv_plug_osf.so): Avoid using LIBTOOL_LINK.\n\n2003-05-18  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/Makefile.msvc (DEBUGFLAGS): New variable.\n\t(iconv.lib): Use it.\n\t* src/Makefile.msvc (DEBUGFLAGS): New variable.\n\t* tests/Makefile.msvc (DEBUGFLAGS): New variable.\n\n2003-05-17  Bruno Haible  <bruno@clisp.org>\n\n\t* src/Makefile.msvc (libdir, datadir, localedir): New variables.\n\t(IIlibdir, IIdatadir, IIlocaledir): New variables.\n\t(CFLAGS): Define LOCALEDIR.\n\t(iconv_no_i18n.exe): New rule.\n\t(all): Depend on it.\n\t* tests/check-stateful.bat: Invoke iconv_no_i18n instead of iconv.\n\t* tests/check-translit.bat: Likewise.\n\n2003-05-16  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/genaliases.c (main): Emit declarations for gperf-3.0.\n\t* Makefile.devel (lib/aliases.h): Remove gperf command line options;\n\tadd new option \"-m 10\" for gperf-3.0.\n\n2003-05-12  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/error.m4: Update from gettext.\n\n2003-05-12  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in: Invoke AC_GNU_SOURCE and jm_FUNC_GLIBC_UNLOCKED_IO.\n\n2003-05-12  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/Makefile.msvc (PICFLAGS, CFLAGS): Move BUILDING_* macros from\n\tCFLAGS to PICFLAGS.\n\n2003-05-09  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/error.c: Update from gnulib with modifications.\n\t* srclib/unlocked-io.h: New file, from gnulib.\n\t* m4/strerror_r.m4: New file, from gnulib.\n\t* m4/unlocked-io.m4: New file, from gnulib.\n\t* Makefile.devel (aclocal.m4): Depend on them.\n\n2003-05-08  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.msvc (IIPREFIX): New variable.\n\t* srclib/Makefile.msvc (INCLUDES): Add -I..\\windows.\n\t* src/Makefile.msvc (IIPREFIX, IIprefix, IIexec_prefix, IIbindir,\n\tIIincludedir): New variables.\n\t(INCLUDES): Add -I..\\windows.\n\t(iconv.exe): Define INSTALLPREFIX and INSTALLDIR. Link with\n\t../srclib/icrt.lib.\n\tPatches by Perry Rapp.\n\n2003-05-07  Bruno Haible  <bruno@clisp.org>\n\n\t* README.woe32: Fix instructions for step 1.\n\t* srclib/Makefile.msvc (OBJECTS): Remove strtoul.obj.\n\t(strtoul.obj): Remove rule.\n\tReported by Perry Rapp.\n\n2003-05-07  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.vms: New file.\n\t* lib/Makefile.vms: New file.\n\t* srclib/Makefile.vms: New file.\n\t* src/Makefile.vms: New file.\n\t* man/Makefile.vms: New file.\n\t* tests/Makefile.vms: New file.\n\t* Makefile.devel (config.h_vms, lib/config.h_vms, include/iconv.h_vms):\n\tNew rules.\n\t(all): Depend on them.\n\n2003-05-07  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/Makefile.msvc (OBJECTS): Remove findprog.obj.\n\t(findprog.obj): Remove rule.\n\t* src/Makefile.msvc (includedir): New variable.\n\n2003-05-06  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/translit.def: Upgrade to Unicode 4.0.\n\n2003-05-06  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/Makefile.am (DEFS): Fix spelling of DEPENDS_ON_LIBICONV.\n\t* srclib/Makefile.msvc (CFLAGS): Likewise.\n\n\t* srclib/Makefile.msvc (INCLUDES): Add -I.. .\n\tReported by Perry Rapp.\n\n\t* Makefile.msvc (config.h): New rule.\n\t(all): Depend on it.\n\t(mostlyclean, clean, distclean, maintainer-clean): Erase config.h.\n\tReported by Perry Rapp.\n\n2003-05-06  Bruno Haible  <bruno@clisp.org>\n\n\t* autoconf/config.guess: Update to GNU version 2003-02-22.\n\t* autoconf/config.sub: Likewise.\n\n2003-05-06  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/lib-link.m4: Update from GNU gettext.\n\t* autoconf/config.rpath: Update from GNU gettext.\n\n\t* m4/libtool.m4: Update from GNU gettext, based on libtool-1.5.\n\t* autoconf/ltmain.sh: Update from GNU gettext, based on libtool-1.5.\n\n\t* m4/gettext.m4: Update from GNU gettext.\n\t* m4/nls.m4: Update from GNU gettext.\n\t* m4/po.m4: Update from GNU gettext.\n\t* Makefile.devel (aclocal.m4): Depend on m4/nls.m4 and m4/po.m4.\n\n2003-04-12  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for OpenVMS 7.3.\n\t* lib/iconv.c (USE_OSF1): Define also on VMS.\n\n2003-04-12  Bruno Haible  <bruno@clisp.org>\n\n\tBetter support for FreeBSD.\n\t* lib/encodings.def (ISO8859-{1,2,3,4,5,6,7,8,9,10,13,14,15,16): New\n\taliases, for compatibility with earlier FreeBSD iconv implementation\n\tby Konstantin Chuguev.\n\t* lib/iconv.c (iconv_open, iconv, iconv_close) [FreeBSD]: Define as\n\taliases.\n\t* src/Makefile.in (install) [FreeBSD]: Avoid installation problem.\n\n2003-04-12  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in (mandir): Change default value.\n\t* Makefile.in (datadir): New variable.\n\t(install, installdirs, uninstall): Pass datadir to po and man\n\tdirectories.\n\t* Makefile.os2 (datadir): New variable.\n\t(mandir): Use it instead of prefix.\n\t(install, uninstall): Pass datadir to man directory.\n\t* Makefile.msvc (mandir, docdir): Use datadir instead of prefix.\n\t* man/Makefile.in (datadir): New variable.\n\t(docdir): Use it instead of prefix.\n\t(install, installdirs): Update.\n\t* man/Makefile.os2 (datadir): New variable.\n\t(mandir): Use it instead of prefix.\n\t* man/Makefile.msvc (datadir): New variable.\n\t(mandir, docdir): Use it instead of prefix.\n\t(install, installdirs): Update.\n\n2003-04-06  Bruno Haible  <bruno@clisp.org>\n\n\tMake it possible to build with or without libintl support on Woe32.\n\t* Makefile.devel (config.h.msvc): Remove ENABLE_NLS.\n\t* Makefile.msvc (NO_NLS): New variable.\n\t* srclib/Makefile.msvc (NO_NLS): New variable.\n\t(CFLAGS, INCLUDES): Use them.\n\t* src/Makefile.msvc (NO_NLS): New variable.\n\t(NLSFLAGS, INCINTL, LIBINTL): New variables.\n\t(CFLAGS, INCLUDES, iconv.exe): Use them.\n\n2003-04-12  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/loop_unicode.h (unicode_transliterate): When the Hangul or\n\tvariants transliteration failed with RET_ILUNI, don't return\n\tRET_TOOSMALL.\n\tReported by the FreeBSD porters.\n\n2003-04-06  Bruno Haible  <bruno@clisp.org>\n\n\t* srclib/binary-io.h: New file, from GNU gettext.\n\t* src/iconv.c: Include it.\n\t(O_BINARY, O_TEXT, SET_BINARY): Remove definitions.\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for relocatable installation.\n\t* m4/alloca.m4: New file, from GNU gettext.\n\t* m4/canonicalize.m4: New file, from GNU gettext.\n\t* m4/error.m4: New file, from GNU gettext.\n\t* m4/onceonly.m4: New file, from GNU gettext.\n\t* m4/pathmax.m4: New file, from GNU gettext.\n\t* m4/relocatable.m4: New file, from GNU gettext.\n\t* m4/setenv.m4: New file, from GNU gettext.\n\t* m4/stdbool.m4: New file, from GNU gettext.\n\t* m4/strerror.m4: New file, from GNU gettext.\n\t* m4/xreadlink.m4: New file, from GNU gettext.\n\t* autoconf/config.libpath: New file, from GNU gettext.\n\t* autoconf/install-reloc: New file, from GNU gettext.\n\t* autoconf/reloc-ldflags: New file, from GNU gettext.\n\t* autoconf/missing: New file, from GNU automake 1.7.3.\n\t* lib/relocatable.h: New file, from GNU gettext.\n\t* lib/relocatable.c: New file, from GNU gettext.\n\t* srclib/alloca.c: New file, from GNU gettext.\n\t* srclib/alloca_.h: New file, from GNU gettext.\n\t* srclib/canonicalize.c: New file, from GNU gettext.\n\t* srclib/canonicalize.h: New file, from GNU gettext.\n\t* srclib/error.c: New file, from GNU gettext.\n\t* srclib/error.h: New file, from GNU gettext.\n\t* srclib/exit.h: New file, from GNU gettext.\n\t* srclib/gettext.h: New file, from GNU gettext.\n\t* srclib/memmove.c: New file, from GNU gettext.\n\t* srclib/pathmax.h: New file, from GNU gettext.\n\t* srclib/progname.c: New file, from GNU gettext.\n\t* srclib/progname.h: New file, from GNU gettext.\n\t* srclib/progreloc.c: New file, from GNU gettext.\n\t* srclib/relocatable.c: New file, from GNU gettext.\n\t* srclib/relocatable.h: New file, from GNU gettext.\n\t* srclib/relocwrapper.c: New file, from GNU gettext.\n\t* srclib/setenv.c: New file, from GNU gettext.\n\t* srclib/setenv.h: New file, from GNU gettext.\n\t* srclib/stdbool.h.in: New file, from GNU gettext.\n\t* srclib/strerror.c: New file, from GNU gettext.\n\t* srclib/unsetenv.c: New file, from GNU gettext.\n\t* srclib/xmalloc.c: New file, from GNU gettext.\n\t* srclib/xmalloc.h: New file, from GNU gettext.\n\t* srclib/xreadlink.c: New file, from GNU gettext.\n\t* srclib/xreadlink.h: New file, from GNU gettext.\n\t* srclib/xstrdup.c: New file, from GNU gettext.\n\t* srclib/Makefile.am: New file.\n\t* srclib/Makefile.msvc: New file.\n\t* windows/alloca.h: New file, from GNU gettext.\n\t* windows/stdbool.h: New file, from GNU gettext.\n\t* configure.in (AC_CONFIG_HEADERS): Replace src/config.h with config.h.\n\tAdd AC_RELOCATABLE, AC_HEADER_STDC, AC_CHECK_HEADERS(stddef.h stdlib.h\n\tstring.h), AC_CHECK_FUNCS(getc_unlocked), AC_REPLACE_FUNCS(memmove),\n\tAM_LANGINFO_CODESET, gl_FUNC_ALLOCA, gl_CANONICALIZE,\n\tgt_FUNC_ERROR_AT_LINE, gl_PATHMAX, gt_FUNC_SETENV, gt_STDBOOL_H,\n\tgl_FUNC_STRERROR, gl_XREADLINK, AC_OUTPUT(srclib/Makefile).\n\t* lib/config.h.in: Add HAVE_GETC_UNLOCKED, HAVE_LANGINFO_CODESET,\n\tHAVE_SETLOCALE, HAVE_STDDEF_H, HAVE_STDLIB_H, HAVE_STRING_H, for\n\tlocalcharset.c. Add ENABLE_RELOCATABLE, INSTALLPREFIX, for\n\trelocatable.c.\n\t* lib/Makefile.in (DEFS): New variable.\n\t(SOURCES): Add localcharset.c and relocatable.c.\n\t(OBJECTS): Add localcharset.lo and relocatable.lo.\n\t(LIBCHARSET_OBJECTS): Remove variable.\n\t(libiconv_plug_linux.so, libiconv_plug_solaris.so,\n\tlibiconv_plug_osf.so): Use $(DEFS). Don't use $(LIBCHARSET_OBJECTS).\n\t(iconv.lo): Use $(DEFS).\n\t(localcharset.lo, relocatable.lo): New rules.\n\t* lib/Makefile.msvc (CFLAGS): Define HAVE_CONFIG_H, BUILDING_DLL,\n\tENABLE_RELOCATABLE, IN_LIBRARY, INSTALLDIR, NO_XMALLOC,\n\tset_relocation_prefix, relocate. Remove $(PICFLAGS).\n\t(INCLUDES): Simplify.\n\t(SOURCES): Remove variable.\n\t(OBJECTS): Add localcharset.obj and relocatable.obj.\n\t(LIBCHARSET_OBJECTS): Remove variable.\n\t(iconv.obj): Add $(PICFLAGS).\n\t(localcharset.obj, relocatable.obj): New rules.\n\t(iconv.lib): Drop $(LIBCHARSET_OBJECTS).\n\t* include/iconv.h.in (libiconv_set_relocation_prefix): New declaration.\n\t* src/gettext.h: Remove file.\n\t* src/iconv.c: Include progname.h and relocatable.h.\n\t(ICONV_CONST): Define to const if the system has no iconv.\n\t(main): Invoke set_program_name. Relocate LOCALEDIR.\n\t* src/Makefile.in (top_srcdir): New variable.\n\t(INCLUDES): Add .. and ../srclib.\n\t(iconv_no_i18n, iconv): Link with ../srclib/libicrt.a.\n\t(iconv_no_i18n.@OBJEXT@, iconv.@OBJEXT@): Define INSTALLDIR.\n\t(RELOCATABLE_LIBRARY_PATH, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR,\n\tRELOCATABLE_CONFIG_H_DIR, @SET_RELOCATABLE@, iconv_LDFLAGS): New\n\tvariables.\n\t(iconv): Use $(iconv_LDFLAGS).\n\t(install): Use $(INSTALL_PROGRAM_ENV).\n\t(distclean): Drop removing config.h.\n\t* src/Makefile.msvc (INCLUDES): Add .., simplify.\n\t* tests/Makefile.msvc (INCLUDES): Simplify.\n\t* Makefile.devel (AUTOHEADER, AUTOMAKE): New variables.\n\t(config.h.in, srclib/Makefile.in, config.h.msvc): New rules.\n\t(all): Depend on them.\n\t(aclocal.m4) Depend also on m4/alloca.m4, m4/canonicalize.m4,\n\tm4/error.m4, m4/onceonly.m4, m4/pathmax.m4, m4/relocatable.m4,\n\tm4/setenv.m4, m4/stdbool.m4, m4/strerror.m4, m4/xreadlink.m4.\n\t(lib/config.h.msvc): Additional processing.\n\t* Makefile.in (all, install, installdirs, uninstall, check): Recurse\n\tinto srclib.\n\t(mostlyclean, clean, distclean, maintainerclean): Likewise. Remove\n\tlib/localcharset.h.\n\t(distclean, maintainerclean): Remove also config.h and some stamps.\n\t* Makefile.msvc (all, install, installdirs, uninstall, check,\n\tmostlyclean, clean, distclean, maintainerclean): Recurse into srclib.\n\t* INSTALL.generic: Document --enable-relocatable and\n\t--with-libintl-prefix. Remove the recommendation to set CPPFLAGS and\n\tLDFLAGS. The lib-link.m4 macros make this unnecessary.\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in: Bump version number to 1.9.\n\t* include/iconv.h.in (_LIBICONV_VERSION): Bump.\n\t* windows/iconv.rc: Bump version number.\n\t* lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 4:0:2.\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.msvc (PREFIX): New variable.\n\t(prefix): Use it.\n\t(distclean, maintainer-clean): Drop Unix specific removals.\n\t* lib/Makefile.msvc (PREFIX, IIPREFIX): New variables.\n\t(prefix): Use it.\n\t(IIprefix, IIexec_prefix, IIbindir, IIlibdir): New variables.\n\t(clean): Drop Unix specific removal.\n\t* src/Makefile.msvc (PREFIX): New variable.\n\t(prefix): Use it.\n\t(clean): Drop Unix specific removal.\n\t(distclean): Likewise.\n\t* tests/Makefile.msvc (clean): Drop Unix specific removal.\n\t(distclean): Likewise.\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/endian.m4 (CL_WORDS_LITTLEENDIAN): Use 3-argument AC_DEFINE.\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/general.m4 (CL_CONFIG_SUBDIRS, CL_CANONICAL_HOST,\n\tCL_CANONICAL_HOST_CPU, CL_CANONICAL_HOST_CPU_FOR_FFCALL): Remove\n\tmacros.\n\t* m4/gettext.m4: Update from GNU gettext.\n\t* m4/iconv.m4: Update from GNU gettext.\n\t* m4/lcmessage.m4: Update from GNU gettext.\n\t* m4/progtest.m4: Update from GNU gettext.\n\t* m4/libtool.m4: Update from GNU gettext.\n\t2003-02-16  Bruno Haible  <bruno@clisp.org>\n\t\tWorkaround autoconf >= 2.52 breakage.\n\t\t* libtool.m4 (AC_LIBTOOL_ARG_WITH): New macro.\n\t\t(_LT_AC_LTCONFIG_HACK, AC_PROG_LD): Use it.\n\t* autoconf/ltmain.sh: Update from GNU gettext.\n\t2003-02-18  Bruno Haible  <bruno@clisp.org>\n\t\tFix the 2002-09-16 fix.\n\t\t* ltmain.sh (install): If \"ln -s -f\" fails (this is the case\n\t\twith /usr/bin/ln on Solaris 2.7), fall back to \"rm && ln -s\".\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\tStart using automake.\n\t* configure.in: Add AM_INIT_AUTOMAKE invocation.\n\t(PACKAGE, VERSION): Remove.\n\tUse AC_CANONICAL_HOST instead of CL_CANONICAL_HOST.\n\tUse AC_PROG_LN_S instead of CL_PROG_LN_S.\n\tUse AC_PROG_RANLIB instead of CL_PROG_RANLIB.\n\tReorder so that AC_CANONICAL_HOST comes early but still after\n\tAC_PROG_CC.\n\t* m4/ranlib.m4: Remove file.\n\t* m4/libtool.m4: Undo AC_ -> CL_ substitutions.\n\t* Makefile.devel (CLISP_DIR): Comment out.\n\t(AUTOCONF_FILES): Change to aclocal.m4.\n\t(aclocal.m4): Renamed from autoconf/aclocal.m4. Update dependencies.\n\t(configure.in): Drop --include option.\n\n2003-03-17  Bruno Haible  <bruno@clisp.org>\n\n\tImproved MSVC support.\n\t* Makefile.msvc (prefix): Use less Unixy value.\n\t(local_prefix): Remove variable.\n\t(libdir, includedir, mandir): Use backslashes.\n\t(bindir, datadir, localedir, docdir): New variables.\n\t(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): New variables.\n\t(all): Recurse into po/ and man/.\n\t(install, installdirs, uninstall): Rewritten.\n\t(check, mostlyclean, clean, distclean, maintainer-clean): Recurse\n\tinto po/ and man/.\n\t* lib/Makefile.msvc (prefix): Use less Unixy value.\n\t(local_prefix): Remove variable.\n\t(libdir): Use backslashes.\n\t(bindir): New variable.\n\t(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Set to real values.\n\t(RESOURCES): Enable iconv.res.\n\t(install, installdirs, uninstall): New rules.\n\t(clean): Remove config.h.\n\t(distclean): Don't remove config.h here.\n\t* src/Makefile.msvc (prefix, exec_prefix, bindir): New variables.\n\t(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): New variables.\n\t(install, installdirs, uninstall): New rules.\n\t* man/Makefile.msvc: New file.\n\t* tests/Makefile.msvc (install, installdirs, uninstall): New rules.\n\t* Makefile.devel (all): Depend on po/Makefile.msvc.\n\t(po/Makefile.msvc): New rule.\n\t* windows/iconv.rc: Update.\n\t* README.woe32: Mention automatic installation command.\n\n\tRename libcharset.h to localcharset.h.\n\t* lib/iconv.c: Include localcharset.h, not libcharset.h.\n\t* Makefile.in (lib/localcharset.h): Renamed from lib/libcharset.h.\n\t(all, install): Update dependencies.\n\t(all): Create lib/localcharset.h, not lib/libcharset.h.\n\t(mostlyclean, clean, distclean, maintainer-clean): Remove\n\tlib/localcharset.h, not lib/libcharset.h.\n\t* djgpp/README.in, djgpp/README: Update.\n\t* djgpp/config.bat: Update.\n\t* djgpp/config.sed: Update.\n\t* djgpp/fnchange.in, djgpp/fnchange.lst: Update.\n\n2003-01-31  Bruno Haible  <bruno@clisp.org>\n\n\t* src/Makefile.in (all): Don't do the chmod if it has already been\n\tdone.\n\n2003-01-31  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/loop_unicode.h (unicode_transliterate): Enable recursive\n\ttransliteration. Idea from Perry Rapp.\n\t* lib/gentranslit.c (main): Change bound from 0x10000 to 0x110000.\n\tChange element type of translit_data to 'unsigned int'.\n\t* lib/translit.def: Many new transliterations, mostly taken from glibc.\n\t* lib/translit.h: Regenerated.\n\t* tests/Translit1.ISO-8859-1, tests/Translit1.ASCII: New files.\n\t* tests/Makefile.in (check): Add Translit1 check.\n\t* tests/Makefile.msvc (check): Likewise.\n\t* tests/Makefile.os2 (check): Likewise.\n\t* tests/TranslitFail1.ISO-8859-1: Choose a sentence which the new\n\timproved transliteration cannot do.\n\n2003-02-14  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF): Switch to autoconf-2.57.\n\t(configure): Update rule.\n\n2003-01-03  Albert Chin  <libtool@thewrittenword.com>\n\n\t* autoconf/ltmain.sh: Don't pass -R flags found in a .la's\n\tdependency_libs variable directly down to the linker.\n\tReported by Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu>.\n\n2003-01-01  Bruno Haible  <bruno@clisp.org>\n\n\t* src/Makefile.in (install): Use libiconv.la in ../lib, not in\n\t$(libdir), so that installing with DESTDIR works.\n\tReported by Michael Adams <michael@michaeladams.org>.\n\n2003-01-01  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in (mkinstalldirs): New variable.\n\t(install-lib, install, installdirs): Use it instead of mkdir.\n\t* lib/Makefile.in (mkinstalldirs): New variable.\n\t(install-lib, install, installdirs): Use it instead of mkdir.\n\t* man/Makefile.in (mkinstalldirs): New variable.\n\t(install, installdirs): Use it instead of mkdir.\n\t* src/Makefile.in (mkinstalldirs): New variable.\n\t(install, installdirs): Use it instead of mkdir.\n\n2002-09-27  Bruno Haible  <bruno@clisp.org>\n\n\t* autoconf/mkinstalldirs: Upgrade to automake-1.7.2 version.\n\n2002-11-07  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Upgrade to libtool-1.4.3.\n\t* autoconf/ltmain.sh: Upgrade to libtool-1.4.3.\n\n2002-07-14  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4 (_LT_AC_LTCONFIG_HACK): Add support for GNU/FreeBSD.\n\n2002-06-12  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in: Use new AC_* names of libtool macros. Invoke\n\tAC_LIBTOOL_WIN32_DLL.\n\n2002-12-19  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/Makefile.in (libiconv_plug_solaris.so): Change rule if using gcc.\n\tReported by Henry Nelson <henry@irm.nara.kindai.ac.jp>.\n\n2002-11-07  Bruno Haible  <bruno@clisp.org>\n\n\tMake \"make install\" without prior \"make\" work.\n\t* Makefile.in (lib/libcharset.h): New rule.\n\t(all, install): Depend on it.\n\tReported by Martin Mokrejš <mmokrejs@natur.cuni.cz>.\n\n2002-10-28  Bruno Haible  <bruno@clisp.org>\n\n\t* man/Makefile.in (install): Change directory back to the working\n\tdirectory, so that install-sh (which may be a relative pathname) is\n\tfound in the right place.\n\n2002-09-16  Bruno Haible  <bruno@clisp.org>\n\n\t* autoconf/ltmain.sh (install): Use \"ln -s -f\" instead of\n\t\"rm -f && ln -s\" to make a symlink for a shared library.\n\tReported by Nelson H. F. Beebe <beebe@math.utah.edu>.\n\n2002-09-02  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (main): Don't call bindtextdomain if !ENABLE_NLS.\n\n2002-08-16  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c (main): Perform fflush before testing ferror(stdout).\n\n2002-05-29  Bruno Haible  <bruno@clisp.org>\n\n\t* Version 1.8 released.\n\n2002-05-26  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/c99.h: New file.\n\t* lib/converters.h: Include it.\n\t* lib/encodings.def (C99): New encoding.\n\t* README, man/iconv_open.3: Document C99 encoding.\n\n2002-05-26  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/java.h (java_mbtowc): Accept 12-byte sequences for non-BMP\n\tcharacters.\n\t(java_wctomb): Produce 12-byte sequences for non-BMP characters.\n\n2002-05-29  Bruno Haible  <bruno@clisp.org>\n\n\tFix installation of iconv program when linked with a libintl that was\n\tbuilt against an earlier libiconv.\n\t* src/iconv.c: Conditionally disable NLS.\n\t* src/iconv_no_i18n.c: New file.\n\t* src/Makefile.in (libdir): New variable.\n\t(all): Depend on iconv_no_i18n, iconv.@OBJEXT@ but not iconv. Make\n\tdirectory writable, so iconv executable can be created during \"make\n\tinstall\".\n\t(iconv): Remove rule.\n\t(iconv_no_i18n, iconv_no_i18n.@OBJEXT@): New rules.\n\t(install): Link iconv now, after the new libiconv.so is installed.\n\t(clean): Also remove iconv_no_i18n.\n\t* tests/Makefile.in: (check, check-extra-yes): Depend on iconv_no_i18n,\n\tnot iconv.\n\t* tests/check-stateful: Use iconv_no_i18n, not iconv.\n\t* tests/check-translit: LIkewise.\n\t* tests/check-translitfailure: Likewise.\n\n2002-05-29  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in: Call AC_PROG_INSTALL instead of CL_PROG_INSTALL.\n\t* m4/install.m4: Remove file.\n\t* Makefile.devel (autoconf/aclocal.m4): Don't depend on m4/install.m4.\n\n2002-05-24  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/jisx0213.h: Use 'inline' only conditionally.\n\n2002-05-18  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in (AC_INIT), include/iconv.h.in (_LIBICONV_VERSION),\n\tREADME, windows/iconv.rc, djgpp/README, djgpp/fnchange.lst:\n\tBump version number.\n\t* lib/Makefile.in (LIBICONV_VERSION_INFO): Define to 3:0:1.\n\n2002-02-06  Bruno Haible  <bruno@clisp.org>\n\n\t* autoconf/ltmain.sh: Upgrade from libtool-1.4 to libtool-1.4.2.\n\n2002-02-02  Bruno Haible  <bruno@clisp.org>\n\n\t* autoconf/ltmain.sh: Add DESTDIR support on ELF systems.\n\n2001-11-03  Bruno Haible  <haible@clisp.cons.org>\n\n\t* autoconf/ltmain.sh: chmod 777 the .libs directory, so that\n\t\"make install\" succeeds.\n\n2002-05-18  Bruno Haible  <bruno@clisp.org>\n\n\t* src/Makefile.in (iconv): Remove the -liconv dependency of -lintl\n\tfrom the command line. Needed to ensure that the new libiconv version\n\tis used on FreeBSD.\n\n2002-05-14  Bruno Haible  <bruno@clisp.org>\n\n\tImplement and document CP853, TDS565, RISCOS-LATIN1.\n\t* tools/Makefile (ALL): Add cp853.h, tds565.h, riscos1.h.\n\t(cp853.h, tds565.h, riscos1.h): New rules.\n\t* lib/cp853.h: New file.\n\t* lib/tds565.h: New file.\n\t* lib/riscos1.h: New file.\n\t* lib/converters.h: Include them.\n\t* lib/encodings_dos.def (CP853): New encoding.\n\t* lib/encodings_extra.def (TDS565, RISCOS-LATIN1): New encodings.\n\t* README, man/iconv_open.3: Add CP853, TDS565, RISCOS-LATIN1.\n\t* tests/Makefile.in (check-extra-yes): Check CP853, TDS565,\n\tRISCOS-LATIN1.\n\t* tests/Makefile.msvc (check): Check CP853.\n\t* tests/CP853.TXT: New file.\n\t* tests/TDS565.TXT: New file.\n\t* tests/RISCOS-LATIN1.TXT: New file.\n\n\t* lib/cp860.h (cp860_wctomb): Optimize.\n\n2002-05-12  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/Makefile (ksc5601.h): Add two extra characters.\n\t* lib/ksc5601.h: Regenerated.\n\t* tests/EUC-KR.TXT: Add EURO SIGN and REGISTERED SIGN.\n\t* tests/CP949.TXT: Likewise.\n\t* tests/JOHAB.TXT: Likewise.\n\n2002-05-12  Bruno Haible  <bruno@clisp.org>\n\n\t* README: Mention extra encodings.\n\t* man/iconv_open.3: Likewise. Improve formatting in text and html\n\toutput formats.\n\n2002-05-12  Bruno Haible  <bruno@clisp.org>\n\n\t* tests/SHIFT_JIS.TXT: Renamed from tests/SHIFT-JIS.TXT.\n\n2002-05-12  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF): New variable.\n\t(AUTOCONF_FILES): Remove autoconf/autoconf.m4f.\n\t(configure): Use the AUTOCONF variable.\n\t* autoconf/autoconf: Remove file.\n\t* autoconf/autoconf.m4: Remove file.\n\t* autoconf/autoconf.m4f: Remove file.\n\n2002-05-12  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/JISX0213.TXT: New file.\n\t* tools/cjk_tab_to_h.c (do_jisx0213): New function.\n\t(main): Accept \"jisx0213\".\n\t* tools/Makefile (all): Add jisx0213.h.\n\t(jisx0213.h): New rule.\n\t* lib/jisx0213.h: New file, generated by cjk_tab_to_h.\n\t* lib/euc_jisx0213.h: New file.\n\t* lib/shift_jisx0213.h: New file.\n\t* lib/iso2022_jp3.h: New file.\n\t* lib/converters.h: Include them.\n\t* lib/encodings_extra.def (EUC-JISX0213, SHIFT_JISX0213,\n\tISO-2022-JP-3): New encodings.\n\t* tests/EUC-JISX0213.TXT: New file.\n\t* tests/SHIFT_JISX0213.TXT: New file.\n\t* tests/ISO-2022-JP-3-snippet: New file.\n\t* tests/ISO-2022-JP-3-snippet.UTF-8: New file.\n\t* tests/Makefile.in (check-extra): Also check EUC-JISX0213,\n\tSHIFT_JISX0213, ISO-2022-JP-3.\n\t* tests/check-stateless: Add support for encodings which contain\n\tprecomposed Unicode characters, by eliminating precomposed characters\n\tbefore the comparison.\n\t* tests/table-from.c (main): Fix usage message.\n\t* tests/table-to.c (main): Make it work for encodings for which the\n\t\"to\" direction is stateful.\n\n2002-05-09  Bruno Haible  <bruno@clisp.org>\n\n\tNew configure option --enable-extra-encodings.\n\t* lib/encodings_extra.def: New file.\n\t* lib/converters.h: Handle USE_EXTRA.\n\t* lib/genaliases2.c (main): Handle USE_EXTRA.\n\t* lib/genflags.c: Define USE_EXTRA.\n\t(main): Include encodings_extra.def.\n\t* lib/iconv.c: Handle ENABLE_EXTRA, conditionally set USE_EXTRA.\n\tHandle USE_EXTRA.\n\t* lib/config.h.in (ENABLE_EXTRA): New macro.\n\t* configure.in: Accept option --enable-extra-encodings.\n\t* Makefile.devel (all): Depend on lib/aliases_extra.h.\n\t(lib/aliases_extra.h): New rule.\n\t(lib/flags.h): Depend on lib/encodings_extra.def.\n\t* tests/Makefile.in (check-extra, check-extra-no, check-extra-yes):\n\tNew rules.\n\t(check): Invoke check-extra.\n\t* tests/Makefile.msvc (check): Also check the DOS encodings.\n\n\tSupport for testing the AIX encodings.\n\t* tests/CP856.TXT: New file.\n\t* tests/CP922.TXT: New file.\n\t* tests/CP1046.TXT: New file.\n\t* tests/CP1124.TXT: New file.\n\t* tests/CP1129.TXT: New file.\n\t* tests/CP1161.TXT, tests/CP1161.IRREVERSIBLE.TXT: New files.\n\t* tests/CP1162.TXT: New file.\n\t* tests/CP1163.TXT, tests/CP1163.IRREVERSIBLE.TXT: New files.\n\n\tSupport for testing the OSF/1 encodings.\n\t* tests/DEC-KANJI.TXT: New file.\n\t* tests/DEC-HANYU.TXT, tests/DEC-HANYU.IRREVERSIBLE.TXT: New files.\n\n\tSupport for testing the DOS encodings.\n\t* tests/CP437.TXT: New file.\n\t* tests/CP737.TXT: New file.\n\t* tests/CP775.TXT: New file.\n\t* tests/CP852.TXT: New file.\n\t* tests/CP855.TXT: New file.\n\t* tests/CP857.TXT: New file.\n\t* tests/CP858.TXT: New file.\n\t* tests/CP860.TXT: New file.\n\t* tests/CP861.TXT: New file.\n\t* tests/CP863.TXT: New file.\n\t* tests/CP864.TXT: New file.\n\t* tests/CP865.TXT: New file.\n\t* tests/CP869.TXT: New file.\n\t* tests/CP1125.TXT: New file.\n\n2002-05-09  Bruno Haible  <bruno@clisp.org>\n\n\tImplement more ASCII compatible DOS encodings.\n\t* tools/Makefile (ALL): Add cp737.h, cp858.h, cp860.h, cp863.h.\n\t(cp737.h, cp858.h, cp860.h, cp863.h): New rules.\n\t* lib/cp737.h: New file.\n\t* lib/cp858.h: New file.\n\t* lib/cp860.h: New file.\n\t* lib/cp863.h: New file.\n\t* lib/converters.h: Include them.\n\t* lib/encodings_dos.def (CP737, CP858, CP860, CP863): New encodings.\n\n2002-05-09  Bruno Haible  <bruno@clisp.org>\n\n\tImplement new ASCII compatible encodings from IBM.\n\t* tools/Makefile (ALL): Add cp1161.h, cp1162.h, cp1163.h.\n\t(cp1161.h, cp1162.h, cp1163.h): New rules.\n\t* lib/cp1161.h: New file.\n\t* lib/cp1162.h: New file.\n\t* lib/cp1163.h: New file.\n\t* lib/converters.h: Include them.\n\t* lib/encodings_aix.def (CP1161, CP1162, CP1163): New encodings.\n\n2002-05-09  Bruno Haible  <bruno@clisp.org>\n\n\tImplement and document KOI8-T.\n\t* tools/Makefile (ALL): Add koi8_t.h.\n\t(koi8_t.h): New rule.\n\t* lib/koi8_t.h: New file.\n\t* lib/converters.h: Include it.\n\t* lib/encodings.def (KOI8-T): New encoding.\n\t* README, man/iconv_open.3: Add KOI8-T.\n\t* tests/Makefile.in (tests): Check KOI8-T.\n\t* tests/Makefile.os2 (tests): Likewise.\n\t* tests/Makefile.msvc (tests): Likewise.\n\t* tests/KOI8-T.TXT: New file.\n\n2002-05-09  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/8bit_tab_to_h.c (main): Update copyright year.\n\t* tools/cjk_variants.c (main): Likewise.\n\n2002-05-08  Bruno Haible  <bruno@clisp.org>\n\n\t* README.woe32: Renamed from README.win32.\n\n2002-05-08  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/iconv.c: Enable DOS encodings also when compiling for Woe32,\n\tbecause the Woe32 consoles use them.\n\n2002-05-04  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/loop_unicode.h (unicode_loop_convert): When quitting the loop\n\twithout writing an output character, restore cd->istate to its value\n\tbefore the xxx_mbtowc call. Otherwise we lose some characters during\n\tCP1255/CP1258/TCVN to Unicode conversion.\n\t(unicode_loop_reset): Likewise for the xxx_flushwc call.\n\t* tests/CP1255-snippet, tests/CP1255-snippet.UTF-8: Make the test\n\tfiles large enough to test against the bug.\n\t* tests/CP1258-snippet, tests/CP1258-snippet.UTF-8: Likewise.\n\t* tests/TCVN-snippet, tests/TCVN-snippet.UTF-8: Likewise.\n\n2002-04-28  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/Makefile (armscii_8.h): Use table from glibc-2.2.90.\n\t* tests/ARMSCII-8.TXT: Update to glibc-2.2.90 version.\n\t* tests/ARMSCII-8.IRREVERSIBLE.TXT: Remove 0x0027.\n\t* lib/armscii_8.h: Regenerated.\n\n2002-04-28  Bruno Haible  <bruno@clisp.org>\n\n\t* src/iconv.c: Include gettext.h.\n\t(_): New macro.\n\t(usage, print_version, convert, main): Internationalize.\n\t(main): Call setlocale, bindtextdomain, textdomain.\n\t* src/gettext.h: New file, from GNU gettext 0.11.2.\n\t* src/config.h.in: New file, needed for ENABLE_NLS.\n\t* src/Makefile.in (datadir, localedir): New variables.\n\t(iconv): Link with @LTLIBINTL@.\n\t(iconv.@OBJEXT@): Define LOCALEDIR.\n\t(distclean): Remove config.h.\n\t* po: New directory.\n\t* Makefile.in (all, install, installdirs, uninstall, check,\n\tmostlyclean, clean, distclean, maintainer-clean): Recurse into the po\n\tdirectory.\n\t* autoconf/mkinstalldirs: New file, from automake-1.5.\n\t* ABOUT-NLS: New file, from GNU gettext 0.11.2.\n\t* m4/codeset.m4: New file, from GNU gettext 0.11.2.\n\t* m4/gettext.m4: New file, from GNU gettext 0.11.2.\n\t* m4/glibc21.m4: New file, from GNU gettext 0.11.2.\n\t* m4/isc-posix.m4: New file, from GNU gettext 0.11.2.\n\t* m4/lcmessage.m4: New file, from GNU gettext 0.11.2.\n\t* m4/progtest.m4: New file, from GNU gettext 0.11.2.\n\t* configure.in: Require autoconf-2.52, needed for multiple config.h.in\n\tfiles. Use new form of AC_INIT. Invoke AM_GNU_GETTEXT.\n\t(PACKAGE, VERSION): Define, needed for po/Makefile.in.in.\n\t* lib/config.h.in (HAVE_LOCALE_H, HAVE_SETLOCALE): Remove.\n\n2002-04-28  gettextize  <bug-gnu-gettext@gnu.org>\n\n\t* configure.in (AC_OUTPUT): Add po/Makefile.in.\n\n2002-04-28  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/eilseq.m4: Renamed from autoconf/eilseq.m4.\n\t* m4/mbstate_t.m4: Renamed from autoconf/mbstate_t.m4.\n\t* m4/general.m4: New file, from GNU clisp.\n\t* m4/proto.m4: New file, from GNU clisp.\n\t* m4/ranlib.m4: New file, from GNU clisp.\n\t* m4/install.m4: New file, from GNU clisp.\n\t* m4/cp.m4: New file, from GNU clisp.\n\t* m4/ln.m4: New file, from GNU clisp.\n\t* m4/endian.m4: New file, from GNU clisp.\n\t* m4/iconv.m4: New file, from GNU gettext 0.11.2.\n\t* m4/lib-ld.m4: New file, from GNU gettext 0.11.2.\n\t* m4/lib-link.m4: New file, from GNU gettext 0.11.2.\n\t* m4/lib-prefix.m4: New file, from GNU gettext 0.11.2.\n\t* autoconf/config.rpath: New file, from GNU gettext 0.11.2.\n\t* m4/libtool.m4: New file, based on libtool-1.4.2.\n\t* Makefile.devel (ACLOCAL): Remove variable.\n\t(ACSELECT): Remove variable.\n\t(OTHERMACROS): Remove variable.\n\t(m4/*.m4): New rules.\n\t(autoconf/aclocal.m4): Construct using aclocal instead of acselect.\n\t* configure.in: Invoke AM_ICONV instead of CL_ICONV.\n\n2002-04-06  Bruno Haible  <bruno@clisp.org>\n\n\tUpgrade to Unicode 3.2.\n\t* tools/cjk_tab_to_h.c (output_title): Bump copyright year.\n\t(compact_large_charset2uni): Add an argument. Determine optimal shift.\n\tCopy modified enc->charset2uni table.\n\t(output_charset2uni): Deal with shift other than 8. Copy encoding, so\n\tas to not disturb subsequent output_uni2charset[_sparse] call.\n\t* lib/hkscs.h: Regenerated.\n\t* tests/BIG5-HKSCS.TXT: Update.\n\t* tests/BIG5-HKSCS.IRREVERSIBLE.TXT: Update.\n\n2002-04-06  Bruno Haible  <bruno@clisp.org>\n\n\tUpgrade to Unicode 3.2.\n\t* tools/Makefile (cns11643_1.h, cns11643_2.h, cns11643_3.h,\n\tcns11643_4a.h, cns11643_4b.h, cns11643_5.h, cns11643_6.h,\n\tcns11643_7.h, cns11643_15.h, cns11643_inv.h): Use\n\tCNS11643-Unicode32.TXT instead of CNS11643-Unicode31.TXT.\n\t* lib/cns11643_3.h: Regenerated.\n\t* lib/cns11643_4a.h: Regenerated.\n\t* lib/cns11643_4b.h: Regenerated.\n\t* lib/cns11643_5.h: Regenerated.\n\t* lib/cns11643_6.h: Regenerated.\n\t* lib/cns11643_7.h: Regenerated.\n\t* lib/cns11643_15.h: Regenerated.\n\t* lib/cns11643_inv.h: Regenerated.\n\t* tests/EUC-TW.TXT: Update.\n\n2002-01-17  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/tcvn.h (tcvn_2uni_1): Make it smaller.\n\t(tcvn_mbtowc): Small optimization.\n\n2002-01-13  Bruno Haible  <bruno@clisp.org>\n\n\tNew options -l, -c, -s.\n\t* src/iconv.c (discard_unconvertible, silent): New variables.\n\t(usage): Document options -l, -c, -s.\n\t(print_one): New function.\n\t(convert): If silent is true, don't print error messages about the\n\tconversion to stderr. If discard_unconvertible is true, set the\n\ticonv descriptor to DISCARD_ILSEQ the first time, but make sure to\n\treturn the same return code as when discard_unconvertible is false.\n\t(main): Accept options -l, -c, -s. Implement option -l.\n\t* man/iconv.1: Document options -l, -c, -s.\n\n2002-01-13  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for \"iconv -c\".\n\t* include/iconv.h.in (ICONV_GET_DISCARD_ILSEQ): New macro.\n\t(ICONV_SET_DISCARD_ILSEQ): Likewise.\n\t* lib/converters.h (struct conv_struct): New field discard_ilseq.\n\t* lib/iconv.c (iconv_open): Set discard_ilseq to true if tocode\n\thas an \"//IGNORE\" suffix, and to false otherwise.\n\t(iconvctl): Implement ICONV_GET_DISCARD_ILSEQ, ICONV_SET_DISCARD_ILSEQ.\n\t* lib/loop_unicode.h (unicode_loop_convert): If discard_ilseq is\n\ttrue, skip one input character instead of returning EILSEQ.\n\t(unicode_loop_reset): Likewise.\n\t* lib/loop_wchar.h (wchar_from_loop_convert): Likewise.\n\t(wchar_to_loop_convert): Likewise.\n\n2002-01-13  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for \"iconv -l\".\n\t* include/iconv.h.in (iconvlist): New declaration.\n\t* Makefile.devel (lib/aliases.h): Change gperf options.\n\t* lib/iconv.c (compare_by_index, compare_by_name, iconvlist): New\n\tfunctions.\n\n2002-01-06  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/loop_unicode.h (unicode_transliterate): If the transliteration\n\tfails due to limited output encoding, return RET_ILUNI, not\n\tRET_TOOSMALL. Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.\n\t* tests/check-translitfailure: New file.\n\t* tests/TranslitFail1.ISO-8859-1: New file.\n\t* tests/Makefile.in (check): Call check-translitfailure.\n\n2001-12-15  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/euc_jp.h (euc_jp_wctomb): Add irreversible mappings for\n\tShift_JIS characters 0x5C and 0x7E.\n\t* tests/EUC-JP.IRREVERSIBLE.TXT: New file.\n\n2001-12-05  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/iconv.c (iconv_open): Recognize the empty encoding name. Avoid\n\t  endless loop if locale_charset() returns the empty string.\n\t* README, man/iconv_open.3: Add the empty encoding name.\n\n2001-11-10  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/Makefile.in (libiconv_plug_linux.so): Allow building it with a\n          non-gcc compiler.\n\n2001-10-23  Bruno Haible  <haible@clisp.cons.org>\n\n        * tools/Makefile (cp1125.h): New target.\n          (ALL): Add it.\n        * lib/cp1125.h: New file.\n        * lib/converters.h: Include it.\n        * lib/encodings_dos.def (CP1125): New encoding.\n\n2001-09-08  Bruno Haible  <haible@clisp.cons.org>\n\n\t* autoconf/eilseq.m4: New file.\n\t* Makefile.devel (OTHERMACROS): Add it.\n\t* configure.in: Call AC_EILSEQ.\n\t* include/iconv.h.in (EILSEQ): Define to the autoconf determined value.\n\n2001-08-25  Bruno Haible  <haible@clisp.cons.org>\n\n\tUpgrade to autoconf-2.52.\n\t* autoconf/autoconf: Upgrade to autoconf-2.52.\n\t* autoconf/acgeneral.m4: Remove file.\n\t* autoconf/acspecific.m4: Remove file.\n\t* autoconf/autoconf.m4f: New file, from autoconf-2.52.\n\t* autoconf/aclocal.m4: Require autoconf-2.52.\n\t(CL_CANONICAL_HOST): Call AC_CANONICAL_HOST. Don't cache the result,\n\tAC_CANONICAL_HOST does it itself. Add $SHELL in front of\n\t$ac_config_guess and $ac_config_sub.\n\t* Makefile.devel (AUTOCONF_FILES): Remove acgeneral.m4, acspecific.m4.\n\tAdd autoconf.m4f.\n\t(configure): Use autoconf options -A, -l instead of -m.\n\t* configure.in: Use AC_CONFIG_SUBDIRS, not AC_OUTPUT_SUBDIRS.\n\n2001-08-05  Bruno Haible  <haible@clisp.cons.org>\n\n\t* autoconf/acgeneral.m4 (AC_MSG_RESULTPROTO): Remove macro.\n\t(AC_LANG_EXTERN): Move to aclocal.m4.\n\t* autoconf/aclocal.m4 (AC_LANG_EXTERN): Moved here from acgeneral.m4.\n\t(CL_PROTO): Use AC_MSG_RESULT directly, instead of AC_MSG_RESULTPROTO.\n\t(CL_SILENT): No need to pushdef AC_MSG_RESULTPROTO.\n\n2001-08-05  Bruno Haible  <haible@clisp.cons.org>\n\n\tMake it possible to build libiconv with CC=gcc CFLAGS=\"-x c++\".\n\t* lib/loop_wchar.h (wchar_to_loop_convert): Rename local variable\n\t'try' to 'incount'.\n\t* lib/Makefile.in (libiconv_plug_linux.so): Add \"-x none\" option\n\tbetween sources and libs.\n\t(libiconv_plug_solaris.so) [GCC]: Likewise.\n\t(libiconv_plug_osf.so) [GCC]: Likewise.\n\t* src/Makefile.in (iconv.@OBJEXT@): New rule.\n\t(iconv): Depend on it.\n\t(clean): Erase *.@OBJEXT@, not *.o.\n\t* tests/Makefile.in (table-from.@OBJEXT@): New rule.\n\t(table-from): Depend on it.\n\t(table-to.@OBJEXT@): New rule.\n\t(table-to): Depend on it.\n\t(clean): Erase *.@OBJEXT@, not *.o.\n\n2001-07-28  Bruno Haible  <haible@clisp.cons.org>\n\n\t* tools/Makefile (iso8859_16.h): Generate from the unicode.org table.\n\t* lib/iso8859_16.h: Regenerated.\n\t* tests/ISO-8859-16.TXT: Swap the values of 0xA5 and 0xAB.\n\n2001-07-17  Bruno Haible  <haible@clisp.cons.org>\n\n\t* configure.in (VERSION): Define. Needed by djgpp/Makefile.maint.\n\n2001-07-03  Bruno Haible  <haible@clisp.cons.org>\n\n\t* configure.in: Also check for mbsinit.\n\t* lib/loop_wchar.h (mbsinit): Define to 1 if not defined.\n\tNeeded for SCO 3.2v5.0.2.\n\n2001-06-27  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Version 1.7 released.\n\n2001-06-27  Bruno Haible  <haible@clisp.cons.org>\n\n\t* INSTALL.generic (Particular Systems): Generalize section about\n\t/usr/local to \"most systems\".\n\n\t* lib/Makefile.in (all): Build @PLUGLIB@ before libiconv.la, because\n\tSolaris cc destroys iconv.o and iconv.lo while building\n\tlibiconv_plug_solaris.so.\n\t(clean): Remove so_locations, left there by the OSF/1 linker.\n\n\t* lib/cp1255.h (cp1255_decomp): Use 'signed int' instead of 'int'.\n\n\t* lib/vietcomb.h (viet_decomp): Use 'unsigned int' instead of\n\t'unsigned short'.\n\n\t* tests/table-from.c: Include string.h.\n\t* tests/table-to.c: Likewise.\n\n2001-06-26  Bruno Haible  <haible@clisp.cons.org>\n\n\t* tools/Makefile (jisx0208.h): Replace U+005C with U+FF3C.\n\t(jisx0212.h): Replace U+007E with U+FF5E.\n\t* lib/jisx0208.h: Regenerated.\n\t* lib/jisx0212.h: Regenerated.\n\t* tests/EUC-JP.TXT: Map 0xA1C0 to U+FF3C. Map 0x8FA2B7 to U+FF5E.\n\t* tests/EUC-JP.IRREVERSIBLE.TXT: Remove file.\n\t* tests/SHIFT-JIS.TXT: Map 0x815F to U+FF3C.\n\t* tests/CP932.TXT: Likewise.\n\t* tests/CP932.IRREVERSIBLE.TXT: 0x815F mapping is now reversible.\n\n2001-06-25  Bruno Haible  <haible@clisp.cons.org>\n\n\t* src/Makefile.in (iconv): Mention $(INCLUDES) before $(CFLAGS) and\n\t$(CPPFLAGS).\n\t* src/Makefile.msvc (iconv.exe): Likewise.\n\t* src/Makefile.os2 (iconv.exe): Likewise.\n\t* lib/Makefile.in (libiconv_plug_linux.so): Likewise.\n\t(libiconv_plug_solaris.so): Likewise.\n\t(libiconv_plug_osf.so): Likewise.\n\t(iconv.lo): Likewise.\n\t* lib/Makefile.msvc (iconv.obj): Likewise.\n\t* lib/Makefile.os2 (iconv.obj): Likewise.\n\t* tests/Makefile.in (table-from, table-to): Likewise.\n\t* tests/Makefile.msvc (table-from.exe, table-to.exe): Likewise.\n\t* tests/Makefile.os2 (table-from.exe, table-to.exe): Likewise.\n\t(genutf8.exe): Don't use $(INCLUDES).\n\n2001-06-25  Bruno Haible  <haible@clisp.cons.org>\n\n        * include/iconv.h.in (_LIBICONV_VERSION), README, windows/iconv.rc:\n          Bump version number.\n        * lib/Makefile.in (LIBICONV_VERSION_INFO): Define to 2:4:0.\n\n2001-06-25  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.devel (OTHERMACROS): Use libtool.m4 in libcharset subdir.\n\n2001-06-25  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/encodings.def: Make SHIFT_JIS the primary name of SJIS.\n\n2001-06-08  Bruno Haible  <haible@clisp.cons.org>\n\n        * autoconf/ltmain.sh: Upgrade to libtool-1.4.\n        * autoconf/ltconfig: Remove file.\n\n2001-06-08  Bruno Haible  <haible@clisp.cons.org>\n\n        * autoconf/config.guess: Update to GNU version 2001-05-11.\n        * autoconf/config.sub: Likewise.\n\n2001-06-03  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/loop_unicode.h (unicode_loop_convert): Ignore Unicode 3.1 tag\n          characters if they cannot be converted.\n          (unicode_loop_reset): Likewise.\n        * lib/iso2022_jp2.h (STATE_TAG_NONE, STATE_TAG_LANGUAGE,\n           STATE_TAG_LANGUAGE_j, STATE_TAG_LANGUAGE_ja, STATE_TAG_LANGUAGE_k,\n           STATE_TAG_LANGUAGE_ko, STATE_TAG_LANGUAGE_z, STATE_TAG_LANGUAGE_zh):\n          New macros.\n          (SPLIT_STATE, COMBINE_STATE): Different differently for wctomb\n          direction.\n          (iso2022_jp2_wctomb): Keep track of Unicode 3.1 language tag.\n          If \"ja\", prefer conversion to Japanese character sets. If \"zh\",\n          prefer conversion to GB2312. If \"ko\", prefer conversion to KSC5601.\n\n        * lib/converters.h (RET_ILUNI): Change value from 0 to -1.\n          (RET_TOOSMALL): Change value from -1 to -2.\n        * lib/loop_unicode.h (unicode_transliterate): Allow xxx_wctomb to\n          return 0 written bytes.\n\n2001-06-06  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/encodings.def: Align with IANA character-set registry.\n          (US-ASCII): Add alias \"ANSI_X3.4-1986\".\n          (ISO-8859-14): Add alias \"ISO-CELTIC\".\n          (JIS_X0208): Add alias \"JIS_C6226-1983\".\n          (BIG5HKSCS): Add alias \"BIG5-HKSCS\".\n        * README, man/iconv_open.3: Rename BIG5HKSCS to BIG5-HKSCS.\n        * tests/Makefile.in (check): Likewise.\n        * tests/Makefile.os2 (check): Likewise.\n        * tests/Makefile.msvc (check): Likewise.\n        * tests/BIG5-HKSCS.TXT: Renamed from BIG5HKSCS.TXT.\n        * tests/BIG5-HKSCS.IRREVERSIBLE.TXT: Renamed from\n          BIG5HKSCS.IRREVERSIBLE.TXT.\n\n2001-06-02  Bruno Haible  <haible@clisp.cons.org>\n\n        * tools/cjk_tab_to_h.c (Encoding): Add fffd field.\n          (is_charset2uni_large, compact_large_charset2uni): New functions.\n          (find_charset2uni_pages): Use enc->fffd instead of 0xfffd.\n          (output_charset2uni): If mapping to more than the Unicode BMP,\n          use an extra indirection to keep each value in 16 bits.\n          (invert): Bump limit from U+10000 to U+30000.\n          (output_uni2charset_dense): Likewise.\n          (output_uni2charset_sparse): Likewise. If mapping to more than one\n          CJK plane, use three bytes per value instead of two bytes.\n          (byte_row_cns11643): Allow more than 3 CJK planes.\n          (do_cns11643_only_uni2charset): Increase number of rows, to include\n          plane 15. Remove plane bits hack.\n          (main): Accept names cns11643_4a,4b,5,6,7,15 as well.\n        * tools/Makefile (ALL): Add cns11643_4a.h, cns11643_4b.h, cns11643_5.h,\n          cns11643_6.h, cns11643_7.h, cns11643_15.h.\n          (cns11643_1.h, cns11643_2.h, cns11643_3.h): Use new Unicode 3.1\n          derived table.\n          (cns11643_4a.h, cns11643_4b.h, cns11643_5.h, cns11643_6.h,\n           cns11643_7.h, cns11643_15.h): New rules.\n          (cns11643_inv.h): Change title.\n        * lib/cns11643_1.h: Regenerated from Unicode 3.1 derived table.\n        * lib/cns11643_3.h: Likewise.\n        * lib/cns11643_4a.h: New file.\n        * lib/cns11643_4b.h: New file.\n        * lib/cns11643_4.h: New file.\n        * lib/cns11643_5.h: New file.\n        * lib/cns11643_6.h: New file.\n        * lib/cns11643_7.h: New file.\n        * lib/cns11643_15.h: New file.\n        * lib/cns11643_inv.h: Regenerated from Unicode 3.1 derived table.\n          (cns11643_inv_wctomb): Return 3 bytes now.\n        * lib/cns11643.h: Include cns11643_4.h, cns11643_5.h, cns11643_6.h,\n          cns11643_7.h, cns11643_15.h.\n          (cns11643_wctomb): Now a simple alias to cns11643_inv_wctomb. Return\n          plane number starting at 1, not 0.\n        * lib/dec_hanyu.h (dec_hanyu_wctomb): Update for cns11643_wctomb\n          change.\n        * lib/euc_tw.h (euc_tw_mbtowc): Accept CNS11643 planes 4,5,6,7,15 as\n          well.\n          (euc_tw_wctomb): Update for cns11643_wctomb change.\n        * lib/iso2022_cn.h (iso2022_cn_wctomb): Likewise.\n        * lib/iso2022_cnext.h (iso2022_cn_ext_mbtowc): Accept CNS11643 planes\n          4,5,6,7 as well.\n          (iso2022_cn_ext_wctomb): Update for cns11643_wctomb change.\n          Try CNS11643 planes 4,5,6,7 as well.\n        * tests/EUC-TW.TXT: Many additions, mostly in planes 3,4,5,6,7,15.\n        * tests/EUC-TW.IRREVERSIBLE.TXT: Reflect additions to CNS11643 plane 1.\n          Add U+5344.\n\n2001-06-01  Bruno Haible  <haible@clisp.cons.org>\n\n        * tests/table-from.c (bmp_only): New variable.\n          (ucs4_decode): If bmp_only, don't return characters outside Unicode\n          plane 0.\n          (main): When testing UTF-8 or GB18030, set bmp_only to 1. Don't print\n          a conversion line if ucs4_decode returns NULL.\n        * tests/table-to.c (main): When testing encodings other than UTF-8 and\n          GB18030, loop upto U+30000 instead of U+10000.\n\n2001-05-24  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/converters.h (mbtowc_funcs): Add flushwc member function.\n        * lib/flushwc.h: New file.\n        * lib/cp1255.h: Include flushwc.h.\n          (cp1255_comp_table_data, cp1255_comp_table): New arrays.\n          (cp1255_mbtowc): Compose base and combining characters.\n          (cp1255_flushwc): New macro.\n        * lib/vietcomb.h (viet_comp_table_data, viet_comp_table): New arrays.\n        * lib/cp1258.h: Include flushwc.h.\n          (cp1258_mbtowc): Compose base and combining characters.\n          (cp1258_flushwc): New macro.\n        * lib/tcvn.h: Include flushwc.h.\n          (tcvn_mbtowc): Compose base and combining characters.\n          (tcvn_flushwc): New macro.\n        * lib/loop_unicode.h: (unicode_transliterate): New function, extracted\n          from unicode_loop_convert.\n          (unicode_loop_convert): Use unicode_transliterate.\n          (unicode_loop_reset): Call xxx_flushwc and output the resulting\n          character.\n        * lib/encodings.def: Add xxx_flushwc member.\n        * lib/encodings_aix.def: Likewise.\n        * lib/encodings_dos.def: Likewise.\n        * lib/encodings_local.def: Likewise.\n        * lib/encodings_osf1.def: Likewise.\n        * lib/genaliases.c: Add an argument to the DEFENCODING macro.\n        * lib/genaliases2.c: Likewise.\n        * lib/genflags.c: Likewise.\n        * lib/iconv.c: Likewise.\n        * tests/table-from.c (try): Reset the iconv descriptor before the main\n          call, and flush it afterwards.\n          (ucs4_decode): New function.\n          (main): Allow up to 3 Unicode characters output. Call ucs4_decode.\n        * tests/CP1255-snippet: New file.\n        * tests/CP1255-snippet.UTF-8: New file.\n        * tests/CP1258-snippet: New file.\n        * tests/CP1258-snippet.UTF-8: New file.\n        * tests/TCVN-snippet: New file.\n        * tests/TCVN-snippet.UTF-8: New file.\n        * tests/Makefile.in (check): Check combining behaviour of CP1255,\n          CP1258, TCVN.\n        * tests/Makefile.msvc (check): Likewise.\n        * tests/Makefile.os2 (check): Likewise.\n\n2001-05-22  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/converters.h (RET_ILUNI): New macro.\n          (RET_ILSEQ): Change value to -1.\n          (RET_TOOFEW): Change value.\n        * lib/loop_unicode.h (unicode_loop_convert): Write RET_ILUNI instead\n          of 0. Update handling of xxx_mbtowc return value.\n        * lib/genflags.c (emit_encoding): Likewise.\n        * lib/ascii.h (ascii_wctomb): Use RET_ILUNI instead of RET_ILSEQ.\n        * lib/armscii_8.h (armscii_8_wctomb): Likewise.\n        * lib/big5.h (big5_wctomb): Likewise.\n        * lib/big5hkscs.h (big5hkscs_wctomb): Likewise.\n        * lib/ces_big5.h (ces_big5_wctomb): Likewise.\n        * lib/ces_gbk.h (ces_gbk_wctomb): Likewise.\n        * lib/cns11643.h (cns11643_wctomb): Likewise.\n        * lib/cns11643_inv.h (cns11643_inv_wctomb): Likewise.\n        * lib/cp437.h (cp437_wctomb): Likewise.\n        * lib/cp775.h (cp775_wctomb): Likewise.\n        * lib/cp850.h (cp850_wctomb): Likewise.\n        * lib/cp852.h (cp852_wctomb): Likewise.\n        * lib/cp855.h (cp855_wctomb): Likewise.\n        * lib/cp856.h (cp856_wctomb): Likewise.\n        * lib/cp857.h (cp857_wctomb): Likewise.\n        * lib/cp861.h (cp861_wctomb): Likewise.\n        * lib/cp862.h (cp862_wctomb): Likewise.\n        * lib/cp864.h (cp864_wctomb): Likewise.\n        * lib/cp865.h (cp865_wctomb): Likewise.\n        * lib/cp866.h (cp866_wctomb): Likewise.\n        * lib/cp869.h (cp869_wctomb): Likewise.\n        * lib/cp874.h (cp874_wctomb): Likewise.\n        * lib/cp922.h (cp922_wctomb): Likewise.\n        * lib/cp932ext.h (cp932ext_wctomb): Likewise.\n        * lib/cp932.h (cp932_wctomb): Likewise.\n        * lib/cp936ext.h (cp936ext_wctomb): Likewise.\n        * lib/cp949.h (cp949_wctomb): Likewise.\n        * lib/cp950ext.h (cp950ext_wctomb): Likewise.\n        * lib/cp950.h (cp950_wctomb): Likewise.\n        * lib/cp1046.h (cp1046_wctomb): Likewise.\n        * lib/cp1124.h (cp1124_wctomb): Likewise.\n        * lib/cp1129.h (cp1129_wctomb): Likewise.\n        * lib/cp1133.h (cp1133_wctomb): Likewise.\n        * lib/cp1250.h (cp1250_wctomb): Likewise.\n        * lib/cp1251.h (cp1251_wctomb): Likewise.\n        * lib/cp1252.h (cp1252_wctomb): Likewise.\n        * lib/cp1253.h (cp1253_wctomb): Likewise.\n        * lib/cp1254.h (cp1254_wctomb): Likewise.\n        * lib/cp1255.h (cp1255_wctomb): Likewise.\n        * lib/cp1256.h (cp1256_wctomb): Likewise.\n        * lib/cp1257.h (cp1257_wctomb): Likewise.\n        * lib/cp1258.h (cp1258_wctomb): Likewise.\n        * lib/dec_hanyu.h (dec_hanyu_wctomb): Likewise.\n        * lib/dec_kanji.h (dec_kanji_wctomb): Likewise.\n        * lib/euc_cn.h (euc_cn_wctomb): Likewise.\n        * lib/euc_jp.h (euc_jp_wctomb): Likewise.\n        * lib/euc_kr.h (euc_kr_wctomb): Likewise.\n        * lib/euc_tw.h (euc_tw_wctomb): Likewise.\n        * lib/gb12345ext.h (gb12345ext_wctomb): Likewise.\n        * lib/gb12345.h (gb12345_wctomb): Likewise.\n        * lib/gb18030ext.h (gb18030ext_wctomb): Likewise.\n        * lib/gb18030.h (gb18030_wctomb): Likewise.\n        * lib/gb18030uni.h (gb18030uni_wctomb): Likewise.\n        * lib/gb2312.h (gb2312_wctomb): Likewise.\n        * lib/gbkext_inv.h (gbkext_inv_wctomb): Likewise.\n        * lib/gbk.h (gbk_wctomb): Likewise.\n        * lib/georgian_academy.h (georgian_academy_wctomb): Likewise.\n        * lib/georgian_ps.h (georgian_ps_wctomb): Likewise.\n        * lib/hkscs.h (hkscs_wctomb): Likewise.\n        * lib/hp_roman8.h (hp_roman8_wctomb): Likewise.\n        * lib/hz.h (hz_wctomb): Likewise.\n        * lib/iso2022_cnext.h (iso2022_cn_ext_wctomb): Likewise.\n        * lib/iso2022_cn.h (iso2022_cn_wctomb): Likewise.\n        * lib/iso2022_jp1.h (iso2022_jp1_wctomb): Likewise.\n        * lib/iso2022_jp2.h (iso2022_jp2_wctomb): Likewise.\n        * lib/iso2022_jp.h (iso2022_jp_wctomb): Likewise.\n        * lib/iso2022_kr.h (iso2022_kr_wctomb): Likewise.\n        * lib/iso646_cn.h (iso646_cn_wctomb): Likewise.\n        * lib/iso646_jp.h (iso646_jp_wctomb): Likewise.\n        * lib/iso8859_1.h (iso8859_1_wctomb): Likewise.\n        * lib/iso8859_2.h (iso8859_2_wctomb): Likewise.\n        * lib/iso8859_3.h (iso8859_3_wctomb): Likewise.\n        * lib/iso8859_4.h (iso8859_4_wctomb): Likewise.\n        * lib/iso8859_5.h (iso8859_5_wctomb): Likewise.\n        * lib/iso8859_6.h (iso8859_6_wctomb): Likewise.\n        * lib/iso8859_7.h (iso8859_7_wctomb): Likewise.\n        * lib/iso8859_8.h (iso8859_8_wctomb): Likewise.\n        * lib/iso8859_9.h (iso8859_9_wctomb): Likewise.\n        * lib/iso8859_10.h (iso8859_10_wctomb): Likewise.\n        * lib/iso8859_13.h (iso8859_13_wctomb): Likewise.\n        * lib/iso8859_14.h (iso8859_14_wctomb): Likewise.\n        * lib/iso8859_15.h (iso8859_15_wctomb): Likewise.\n        * lib/iso8859_16.h (iso8859_16_wctomb): Likewise.\n        * lib/isoir165ext.h (isoir165ext_wctomb): Likewise.\n        * lib/isoir165.h (isoir165_wctomb): Likewise.\n        * lib/jisx0201.h (jisx0201_wctomb): Likewise.\n        * lib/jisx0208.h (jisx0208_wctomb): Likewise.\n        * lib/jisx0212.h (jisx0212_wctomb): Likewise.\n        * lib/johab.h (johab_wctomb): Likewise.\n        * lib/johab_hangul.h (johab_hangul_wctomb, johab_hangul_decompose):\n          Likewise.\n        * lib/koi8_r.h (koi8_r_wctomb): Likewise.\n        * lib/koi8_ru.h (koi8_ru_wctomb): Likewise.\n        * lib/koi8_u.h (koi8_u_wctomb): Likewise.\n        * lib/ksc5601.h (ksc5601_wctomb): Likewise.\n        * lib/mac_arabic.h (mac_arabic_wctomb): Likewise.\n        * lib/mac_centraleurope.h (mac_centraleurope_wctomb): Likewise.\n        * lib/mac_croatian.h (mac_croatian_wctomb): Likewise.\n        * lib/mac_cyrillic.h (mac_cyrillic_wctomb): Likewise.\n        * lib/mac_greek.h (mac_greek_wctomb): Likewise.\n        * lib/mac_hebrew.h (mac_hebrew_wctomb): Likewise.\n        * lib/mac_iceland.h (mac_iceland_wctomb): Likewise.\n        * lib/mac_roman.h (mac_roman_wctomb): Likewise.\n        * lib/mac_romania.h (mac_romania_wctomb): Likewise.\n        * lib/mac_thai.h (mac_thai_wctomb): Likewise.\n        * lib/mac_turkish.h (mac_turkish_wctomb): Likewise.\n        * lib/mac_ukraine.h (mac_ukraine_wctomb): Likewise.\n        * lib/mulelao.h (mulelao_wctomb): Likewise.\n        * lib/nextstep.h (nextstep_wctomb): Likewise.\n        * lib/sjis.h (sjis_wctomb): Likewise.\n        * lib/tcvn.h (tcvn_wctomb): Likewise.\n        * lib/tis620.h (tis620_wctomb): Likewise.\n        * lib/ucs2be.h (ucs2be_wctomb): Likewise.\n        * lib/ucs2.h (ucs2_wctomb): Likewise.\n        * lib/ucs2internal.h (ucs2internal_wctomb): Likewise.\n        * lib/ucs2le.h (ucs2le_wctomb): Likewise.\n        * lib/ucs2swapped.h (ucs2swapped_wctomb): Likewise.\n        * lib/ucs4.h (ucs4_wctomb): Likewise.\n        * lib/uhc_1.h (uhc_1_wctomb): Likewise.\n        * lib/uhc_2.h (uhc_2_wctomb): Likewise.\n        * lib/utf16be.h (utf16be_wctomb): Likewise.\n        * lib/utf16.h (utf16_wctomb): Likewise.\n        * lib/utf16le.h (utf16le_wctomb): Likewise.\n        * lib/utf32be.h (utf32be_wctomb): Likewise.\n        * lib/utf32.h (utf32_wctomb): Likewise.\n        * lib/utf32le.h (utf32le_wctomb): Likewise.\n        * lib/utf7.h (utf7_wctomb): Likewise.\n        * lib/utf8.h (utf8_wctomb): Likewise.\n        * lib/viscii.h (viscii_wctomb): Likewise.\n        * tools/8bit_tab_to_h.c (main): Likewise.\n        * tools/cjk_tab_to_h.c (output_uni2charset_dense,\n           output_uni2charset_sparse, do_gb18030uni): Likewise.\n\n2001-05-19  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.devel (all): Add man/{iconv.1,iconv*.3}.html.\n          (man/%.html): New rule.\n        * man/Makefile.in (docdir, htmldir): New variables.\n          (install, installdirs): Install the HTML formatted man pages in\n          $(htmldir).\n          (uninstall): Uninstall them.\n\n2001-05-20  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/cp1255.h (cp1255_decomp_table): New array.\n          (cp1255_comb_table): New array.\n          (cp1255_wctomb): Decompose Unicode characters.\n        * tests/CP1255.IRREVERSIBLE.TXT: New file.\n\n2001-05-13  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/vietcomb.h: New file.\n        * lib/cp1258.h: Include it.\n          (cp1258_comb_table): New array.\n          (cp1258_wctomb): Decompose Unicode characters.\n        * lib/tcvn.h: Include it.\n          (tcvn_comb_table): New array.\n          (tcvn_wctomb): Decompose Unicode characters.\n        * tests/CP1258.IRREVERSIBLE.TXT: New file.\n        * tests/TCVN.IRREVERSIBLE.TXT: New file.\n\n2001-05-06  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/Makefile.msvc (config.h): Allow the 'del' command to fail.\n        (iconv.lib): Likewise.\n\n2001-05-06  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/Makefile.in (CPPFLAGS, LDFLAGS): New variables.\n        (CPP): Remove variable.\n        (libiconv.la, libiconv_plug_linux.so, libiconv_plug_solaris.so,\n         libiconv_plug_osf.so): Use LDFLAGS.\n        (libiconv_plug_linux.so, libiconv_plug_solaris.so,\n         libiconv_plug_osf.so, iconv.lo): Use CPPFLAGS.\n        * lib/Makefile.msvc (CPP): Remove variable.\n        * src/Makefile.in (CPPFLAGS, LDFLAGS): New variables.\n        (CPP): Remove variable.\n        (iconv): Use CPPFLAGS and LDFLAGS.\n        * src/Makefile.msvc (CPP): Remove variable.\n        * tests/Makefile.in (CPPFLAGS, LDFLAGS): New variables.\n        (check, table-from, table-to): Use CPPFLAGS and LDFLAGS.\n        * tests/Makefile.msvc (CPP): Remove variable.\n\n2001-05-06  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/Makefile.in (libiconv_plug_solaris.so): Change rule if not using\n          gcc. Reported by Paananen Mikko <mikkopa@cs.tut.fi>.\n\n2001-04-11  Bruno Haible  <haible@clisp.cons.org>\n\n        Implement and document UTF-32, UTF-32BE, UTF-32LE.\n        * src/utf32.h, src/utf32be.h, src/utf32le.h: New files.\n        * src/converters.h: Include them.\n        * src/encodings.def (UTF-32, UTF-32BE, UTF32LE): New encodings.\n        * README, man/iconv_open.3: Add UTF-32, UTF-32BE, UTF32LE.\n        * tests/Makefile.in (check): Check UTF-32, UTF-32BE, UTF32LE.\n        * tests/Makefile.os2 (check): Likewise.\n        * tests/Makefile.msvc (check): Likewise.\n        * tests/UTF-32*snippet*: New files.\n\n        * lib/ucs4.h (ucs4_mbtowc): Fix value of other-endian byte order.\n          (ucs4_wctomb): Allow any 31-bit codepoint.\n\n2001-04-11  Bruno Haible  <haible@clisp.cons.org>\n\n        * tests/GB18030.TXT: Add mappings for all of U+0000..U+FFFF, including\n          unassigned code points.\n        * tests/table-from.c (main); When dumping GB18030, don't print code\n          points larger than U+FFFF.\n\n2001-03-30  Bruno Haible  <haible@clisp.cons.org>\n\n        * tools/Makefile (GB18030uni.TXT): Use a table source which includes\n          the unassigned Unicode code points.\n        * lib/gb18030uni.h: Update.\n          (gb18030uni_ranges): Remove bitmap_offset field.\n          (gb18030uni_bitmap): Remove array.\n          (gb18030uni_mbtowc): Omit gb18030uni_bitmap access.\n          (gb18030uni_wctomb): Likewise.\n        * lib/gb18030.h (gb18030_mbtowc): Handle Unicode characters >= 0x10000.\n          (gb18030_wctomb): Likewise.\n\n2001-03-21  Bruno Haible  <haible@clisp.cons.org>\n\n        * INSTALL.generic (Particular Systems): Add recommendations for AIX 3.\n\n2001-03-21  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/iconv.c (print_version): Now called GNU libiconv.\n\n2001-03-20  Bruno Haible  <haible@clisp.cons.org>\n\n        * README: This package is now called GNU libiconv.\n\n        * tools/8bit_tab_to_h.c (main): Emit copyright notice to the output\n          file.\n        * tools/cjk_tab_to_h.c (output_title): Likewise.\n        * tools/cjk_variants.c (main): Likewise.\n        * lib/gentranslit.c (main): Likewise.\n\n2001-03-19  Bruno Haible  <haible@clisp.cons.org>\n\n        * autoconf/aclocal.m4 (CL_CANONICAL_HOST): Always define\n          ac_config_guess and ac_config_sub. Then ignore requests for\n          AC_CONFIG_AUX_DIR_DEFAULT or AC_CANONICAL_HOST.\n\n2001-03-10  Bruno Haible  <haible@clisp.cons.org>\n\n        * INSTALL.generic: New section \"Particular Systems\".\n\n2001-03-10  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/Makefile.in (libiconv.la): Pass flag -no-undefined. Needed on\n          platforms like BeOS.\n\n        * lib/loop_wchar.h (mbstate_t): Don't typedef if already #defined in\n          config.h.\n\n2001-03-06  Bruno Haible  <haible@clisp.cons.org>\n\n        * Version 1.6 released.\n        * include/iconv.h.in (_LIBICONV_VERSION), README, windows/iconv.rc:\n          Bump version number.\n        * lib/Makefile.in (LIBICONV_VERSION_INFO): Define to 2:3:0.\n\n2001-03-05  Bruno Haible  <haible@clisp.cons.org>\n\n        Provide all encodings used by OSF/1 5.1 locales.\n        * lib/dec_kanji.h: New file.\n        * lib/dec_hanyu.h: New file.\n        * lib/converters.h: Include them if USE_OSF1 is defined.\n        * lib/encodings_osf1.def: New file.\n        * lib/genflags.c (main): Include it. Define USE_OSF1.\n        * lib/genaliases2.c (main): Include it conditionally.\n        * lib/iconv.c: Define USE_OSF1 on OSF/1.\n          Include encodings_osf1.def and aliases_osf1.h.\n        * lib/Makefile.in (iconv.lo): Depend on encodings_osf1.def and\n          aliases_osf1.h.\n        * Makefile.devel (lib/aliases_osf1.h): New target.\n          (all): Depend on lib/aliases_osf1.h.\n          (lib/flags.h): Depend on lib/encodings_osf1.def.\n\n2001-03-01  Bruno Haible  <haible@clisp.cons.org>\n\n        * tools/Makefile (cp775.h): New target.\n          (ALL): Add it.\n        * lib/cp775.h: New file.\n        * lib/converters.h: Include it.\n        * lib/encodings_dos.def (CP775): New encoding.\n\n2001-02-25  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/iconv.c (iconv_open): locale_charset() doesn't return NULL any\n          more.\n\n2001-02-24  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/iconv.c (convert): Use ICONV_CONST.\n        * tests/table-from.c: Include config.h.\n          (try): Use ICONV_CONST.\n        * tests/table-to.c: Include config.h.\n          (main): Use ICONV_CONST.\n        * tests/Makefile.in (INCLUDES): Add -I../lib.\n        * tests/Makefile.os2 (INCLUDES): Likewise.\n        * tests/Makefile.msvc (INCLUDES): Add -I..\\lib.\n\n2001-02-24  Bruno Haible  <haible@clisp.cons.org>\n\n        Provide all encodings used by DOS locales.\n        * tools/Makefile (cp437.h, cp852.h, cp855.h, cp857.h, cp861.h,\n           cp864.h, cp865.h, cp869.h): New targets.\n          (ALL): Add them.\n        * lib/cp437.h: New file.\n        * lib/cp852.h: New file.\n        * lib/cp855.h: New file.\n        * lib/cp857.h: New file.\n        * lib/cp861.h: New file.\n        * lib/cp864.h: New file.\n        * lib/cp865.h: New file.\n        * lib/cp869.h: New file.\n        * lib/converters.h: Include them if USE_DOS is defined.\n        * lib/encodings_dos.def: New file.\n        * lib/genflags.c (main): Include it. Define USE_DOS.\n        * lib/genaliases2.c (main): Include it conditionally.\n        * lib/iconv.c: Define USE_DOS on DJGPP.\n          Include encodings_dos.def and aliases_dos.h.\n        * lib/Makefile.in (iconv.lo): Depend on encodings_dos.def and\n          aliases_dos.h.\n        * Makefile.devel (lib/aliases_dos.h): New target.\n          (all): Depend on lib/aliases_dos.h.\n          (lib/flags.h): Depend on lib/encodings_dos.def.\n\n2001-02-23  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/iconv.c [DJGPP]: Include <io.h> and <unistd.h>.\n          (SET_BINARY) [O_BINARY]: New macro.\n          (usage): Mention --binary if available.\n          (convert): Use SET_BINARY instead of setmode.\n          (main): Likewise.\n          Reported by Juan Manuel Guerrero <st001906@hrz1.hrz.tu-darmstadt.de>.\n\n2001-02-25  Bruno Haible  <haible@clisp.cons.org>\n\n        * autoconf/ltconfig:\n          sed -e 's/reload object files/produce relocatable object files/'.\n\n2001-02-20  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/iconv.c (usage, main): Make -f and -t options optional.\n        * man/iconv.1: Mark them as optional.\n\n2001-02-20  Bruno Haible  <haible@clisp.cons.org>\n\n        * tools/Makefile (GB18030ext.TXT, GB18030uni.TXT): Generate from\n          glibc-2.2.2 table.\n        * lib/gb18030uni.h, lib/gb18030ext.h: Add mapping 0xA989 -> U+303E,\n          0xFE5E -> U+2E97. Shift the entire four-byte range.\n        * tests/GB18030.TXT: Regenerated.\n\n2001-02-20  Bruno Haible  <haible@clisp.cons.org>\n\n        Better support for DOS/Windows platforms.\n        * autoconf/ltconfig: Upgrade to libtool-1.3.5.\n        * autoconf/ltmain.sh: Likewise.\n        * autoconf/aclocal.m4: Likewise.\n        * autoconf/install-sh: New file.\n        * configure.in: Call AC_OBJEXT and AC_EXEEXT. Call AC_CONFIG_AUX_DIR.\n\n2001-02-20  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.in (libdir, includedir, mandir): Use the autoconf\n          determined value, in order to respect the configure arguments.\n        * lib/Makefile.in (libdir): Likewise.\n        * src/Makefile.in (bindir): Likewise.\n        * man/Makefile.in (mandir): Likewise.\n\n2001-02-04  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/translit.def: Add all the neutral transliterations from glibc.\n        * lib/gentranslit.c (main): Allow UTF-8 replacements which are in\n          UCS-2 but not in ISO-8859-1. Generate a table of 'unsigned short'.\n          Avoid accessing data[-1].\n        * lib/loop_unicode.h (unicode_loop_convert): Change type of pointer\n          into translit_data.\n\n2001-01-05  Bruno Haible  <haible@clisp.cons.org>\n\n        Implement and document CP862.\n        * tools/Makefile (ALL): Add cp862.h.\n          (cp862.h): New target.\n        * lib/cp862.h: New file.\n        * lib/converters.h: Include it.\n        * lib/encodings.def (CP862): New encoding.\n        * README, man/iconv_open.3: Add CP862.\n        * tests/Makefile.in (check): Check CP862.\n        * tests/Makefile.msvc (check): Likewise.\n        * tests/Makefile.os2 (check): Likewise.\n        * tests/CP862.TXT: New file.\n\n2000-12-18  Bruno Haible  <haible@clisp.cons.org>\n\n        * autoconf/mbstate_t.m4: New file, from textutils-2.0.10.\n        * Makefile.devel (OTHERMACROS): Add it.\n        * configure.in: Call AC_MBSTATE_T.\n        * lib/config.h.in (mbstate_t): New definition.\n        * lib/loop_wchar.h (mbrtowc): For BeOS, declare and define fallback.\n\n2000-12-12  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.in: Use $(MAKE) instead of $(MAKE) -r. Needed with Solaris\n          \"make\", which doesn't set MAKE as expected by @SET_MAKE@ if -r is\n          given. Reported by Toshimitsu Fujiwara.\n\n2000-12-08  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.in (exec_prefix): Use configure's --exec-prefix argument.\n        * lib/Makefile.in (exec_prefix): Likewise.\n        * src/Makefile.in (exec_prefix): Likewise.\n        * man/Makefile.in (exec_prefix): Likewise.\n\n2000-12-02  Bruno Haible  <haible@clisp.cons.org>\n\n        * Version 1.5 released.\n        * include/iconv.h.in (_LIBICONV_VERSION), README, windows/iconv.rc:\n          Bump version number.\n        * lib/Makefile.in (LIBICONV_VERSION_INFO): Define to 2:2:0.\n\n2000-12-02  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.in (mostlyclean, clean, distclean, maintainer-clean):\n          Remove files installed in lib by libcharset.\n        * Makefile.msvc (mostlyclean): Likewise.\n\n        * Makefile.in (check): Depend on target 'all'.\n        * Makefile.os2 (check): Likewise.\n        * Makefile.msvc (check): Depend on target 'force' as well.\n\n        * src/iconv.c (usage): Take an exitcode argument.\n          (print_version): New function.\n          (main): Recognize --help and --version command line options.\n\n2000-12-02  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.msvc: Replace STATIC with its opposite flag, DLL.\n        * lib/Makefile.msvc: Likewise.\n        * src/Makefile.msvc: Likewise.\n        * tests/Makefile.msvc: Likewise.\n\n2000-12-01  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/iconv.c: Include <fcntl.h>. Define fallbacks for setmode, fileno.\n          (force_binary): New variable.\n          (convert): If requested, set the input O_BINARY.\n          (main): Accept --binary option. If requested, set the output O_BINARY.\n        * tests/check-stateful.bat: Pass --binary to iconv.\n        * tests/check-stateful.cmd: Likewise.\n        * tests/check-translit.bat: Likewise.\n        * tests/check-translit.cmd: Likewise.\n\n2000-12-01  Bruno Haible  <haible@clisp.cons.org>\n\n        * include/iconv.h.in (_libiconv_version): New declaration.\n        * lib/iconv.c (_libiconv_version): New variable.\n\n2000-11-30  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.msvc (all): File now named lib/libcharset.h.\n          (clean, distclean, maintainer-clean): Likewise.\n\n2000-11-23  Bruno Haible  <haible@clisp.cons.org>\n\n        * lib/*: Move here all files from src/*.\n        * src/*: Move all files to lib.\n        * lib/Makefile.in (distclean): No need to remove config.status,\n          config.log, config.cache.\n        * configure.in: Require lib/iconv.c, not src/iconv.c. Create\n          lib/config.h, not src/config.h. Also create lib/Makefile.\n        * Makefile.in (all): Install libcharset into lib, not src. Recurse\n          into lib and src.\n          (install-lib): Recurse into lib, not src.\n          (install): Recurse into libcharset, lib and src.\n          (installdirs, uninstall): Likewise.\n          (check, mostlyclean, clean, distclean, maintainer-clean): Likewise.\n        * Makefile.msvc (all): Recurse into lib and src.\n          (install): Recurse into libcharset, lib and src.\n          (installdirs, uninstall): Likewise.\n          (check, mostlyclean, clean, distclean, maintainer-clean): Likewise.\n        * Makefile.os2 (all): Recurse into lib and src.\n          (install-lib): Recurse into lib, not src.\n          (install, uninstall): Recurse into lib and src.\n          (check, mostlyclean, clean, distclean, maintainer-clean): Likewise.\n        * Makefile.devel (lib/config.h.msvc): Renamed from src/config.h.msvc.\n          (lib/aliases.h): Renamed from src/aliases.h.\n          (lib/aliases.gperf): Renamed from src/aliases.gperf.\n          (lib/aliases_aix.h): Renamed from src/aliases_aix.h.\n          (lib/flags.h): Renamed from src/flags.h.\n          (lib/translit.h): Renamed from src/translit.h.\n        * src/iconv.c: Moved here from tests/iconv.c.\n        * src/Makefile.in: New file.\n        * src/Makefile.msvc: New file.\n        * src/Makefile.os2: New file.\n        * tests/Makefile.in (iconv): Remove target.\n          (../lib/libiconv.la): Renamed from ../src/libiconv.la.\n          (clean): No need to remove iconv.\n        * tests/Makefile.msvc (iconv.exe): Remove target.\n        * tests/Makefile.os2 (iconv.exe): Likewise.\n        * tests/check-stateful: iconv is in ../src.\n        * tests/check-stateful.bat: Likewise.\n        * tests/check-stateful.cmd: Likewise.\n        * tests/check-translit: iconv is in ../src.\n        * tests/check-translit.bat: Likewise.\n        * tests/check-translit.cmd: Likewise.\n        * man/iconv.1: New file.\n        * man/Makefile.in (install, installdirs, uninstall): Also install *.1\n          man pages.\n        * man/Makefile.os2 (MAN3): Renamed from MAN.\n          (MAN1): New variable.\n          (install, uninstall): Also install *.1 man pages.\n\n2000-11-21  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.msvc (all, check, mostlyclean, clean, distclean,\n           maintainer-clean): Recurse into libcharset.\n          (clean, distclean, maintainer-clean): Remove src\\libcharset.h.\n        * src/Makefile.msvc (LIBCHARSET_OBJECTS): New variable.\n          (iconv.lib): Link with $(LIBCHARSET_OBJECTS).\n\n2000-11-18  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/cp950.h (cp950_mbtowc, cp950_wctomb): Change implementation\n          so that it agrees with Microsoft's definition of CP950.\n        * tests/CP950.TXT: Likewise.\n        * tests/CP950.IRREVERSIBLE.TXT: Add 0xA244, 0xA2CC, 0xA2CE.\n\n2000-11-18  Bruno Haible  <haible@clisp.cons.org>\n\n        Add support for locale dependent \"char\" and \"wchar_t\" encodings.\n        * libcharset: New subdirectory.\n        * src/loop_unicode.h: New file, extracted from src/iconv.c.\n        * src/loop_wchar.h: New file.\n        * src/loops.h: New file. Include loop_unicode.h and loop_wchar.h.\n        * src/encodings_local.def: New file.\n        * src/genaliases.c: Also create aliases for encodings_local.def.\n        * src/converters.h (conv_struct): Add lfuncs field.\n        * src/genflags.c: Add dummy definitions of struct loop_funcs.\n        * src/iconv.c: Include libcharset.h.\n          (loop_funcs): New structure.\n          Treat encodings_local.def like encodings.def.\n          Include loops.h.\n          (iconv_open): Move the bulk of the code to loop_unicode.h.\n          (iconv): Likewise.\n          (iconvctl): Extend determination of TRIVIALP to wchar_t conversion\n          descriptors.\n        * src/Makefile.in (PLUG_SOURCES): Remove variable.\n          (LIBCHARSET_OBJECTS): New variable.\n          (libiconv.la): Link in the LIBCHARSET_OBJECTS.\n          (libiconv_plug_linux.so, libiconv_plug_solaris.so,\n           libiconv_plug_osf.so): Link in the LIBCHARSET_OBJECTS, using\n          LIBTOOL_LINK.\n          (iconv.lo): Depend on encodings_local.def.\n        * src/Makefile.msvc (iconv.obj): Depend on encodings_local.def.\n        * src/Makefile.os2 (iconv.obj): Likewise.\n        * configure.in: Add tests for locale.h, mbrtowc, wcrtomb, setlocale.\n          Recurse into libcharset.\n        * src/config.h.in (HAVE_LOCALE_H, HAVE_MBRTOWC, HAVE_WCRTOMB,\n           HAVE_SETLOCALE): New macros.\n        * tests/iconv.c: Include config.h and locale.h.\n          (main): Call setlocale.\n        * tests/Makefile.in (iconv): Search for config.h in ../src.\n        * tests/Makefile.os2 (iconv.exe): Likewise.\n        * tests/Makefile.msvc (iconv.exe): Likewise.\n        * README, man/iconv_open.3: Document \"char\" and \"wchar_t\" encodings.\n        * Makefile.in: After \"cd\", use \"&&\" not \";\".\n          (all, check, mostlyclean, clean, distclean, maintainer-clean):\n          Recurse into libcharset.\n        * Makefile.devel (all): Recurse into libcharset.\n          (src/aliases.gperf): Depend on src/encodings_local.def.\n\n2000-11-18  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/converters.h (ucs4_t): New type.\n          (wchar_t): Remove locally defined override.\n          (mbtowc_funcs, wctomb_funcs): Use ucs4_t instead of wchar_t.\n        * src/iconv.c (iconv): Likewise.\n        * src/genflags.c (emit_encoding): Use ucs4_t instead of wchar_t.\n        * tools/8bit_tab_to_h.c: Use \"ucs4_t\" instead of \"wchar_t\".\n        * tools/cjk_tab_to_h.c: Likewise.\n        * src/armscii_8.h: Use ucs4_t instead of wchar_t.\n        * src/ascii.h: Likewise.\n        * src/big5.h: Likewise.\n        * src/big5hkscs.h: Likewise.\n        * src/ces_big5.h: Likewise.\n        * src/ces_gbk.h: Likewise.\n        * src/cns11643.h: Likewise.\n        * src/cns11643_1.h: Likewise.\n        * src/cns11643_2.h: Likewise.\n        * src/cns11643_3.h: Likewise.\n        * src/cns11643_inv.h: Likewise.\n        * src/cp1046.h: Likewise.\n        * src/cp1124.h: Likewise.\n        * src/cp1129.h: Likewise.\n        * src/cp1133.h: Likewise.\n        * src/cp1250.h: Likewise.\n        * src/cp1251.h: Likewise.\n        * src/cp1252.h: Likewise.\n        * src/cp1253.h: Likewise.\n        * src/cp1254.h: Likewise.\n        * src/cp1255.h: Likewise.\n        * src/cp1256.h: Likewise.\n        * src/cp1257.h: Likewise.\n        * src/cp1258.h: Likewise.\n        * src/cp850.h: Likewise.\n        * src/cp856.h: Likewise.\n        * src/cp866.h: Likewise.\n        * src/cp874.h: Likewise.\n        * src/cp922.h: Likewise.\n        * src/cp932.h: Likewise.\n        * src/cp932ext.h: Likewise.\n        * src/cp936ext.h: Likewise.\n        * src/cp949.h: Likewise.\n        * src/cp950.h: Likewise.\n        * src/cp950ext.h: Likewise.\n        * src/euc_cn.h: Likewise.\n        * src/euc_jp.h: Likewise.\n        * src/euc_kr.h: Likewise.\n        * src/euc_tw.h: Likewise.\n        * src/gb12345.h: Likewise.\n        * src/gb12345ext.h: Likewise.\n        * src/gb18030.h: Likewise.\n        * src/gb18030ext.h: Likewise.\n        * src/gb18030uni.h: Likewise.\n        * src/gb2312.h: Likewise.\n        * src/gbk.h: Likewise.\n        * src/gbkext1.h: Likewise.\n        * src/gbkext2.h: Likewise.\n        * src/gbkext_inv.h: Likewise.\n        * src/georgian_academy.h: Likewise.\n        * src/georgian_ps.h: Likewise.\n        * src/hkscs.h: Likewise.\n        * src/hp_roman8.h: Likewise.\n        * src/hz.h: Likewise.\n        * src/iso2022_cn.h: Likewise.\n        * src/iso2022_cnext.h: Likewise.\n        * src/iso2022_jp.h: Likewise.\n        * src/iso2022_jp1.h: Likewise.\n        * src/iso2022_jp2.h: Likewise.\n        * src/iso2022_kr.h: Likewise.\n        * src/iso646_cn.h: Likewise.\n        * src/iso646_jp.h: Likewise.\n        * src/iso8859_1.h: Likewise.\n        * src/iso8859_10.h: Likewise.\n        * src/iso8859_13.h: Likewise.\n        * src/iso8859_14.h: Likewise.\n        * src/iso8859_15.h: Likewise.\n        * src/iso8859_16.h: Likewise.\n        * src/iso8859_2.h: Likewise.\n        * src/iso8859_3.h: Likewise.\n        * src/iso8859_4.h: Likewise.\n        * src/iso8859_5.h: Likewise.\n        * src/iso8859_6.h: Likewise.\n        * src/iso8859_7.h: Likewise.\n        * src/iso8859_8.h: Likewise.\n        * src/iso8859_9.h: Likewise.\n        * src/isoir165.h: Likewise.\n        * src/isoir165ext.h: Likewise.\n        * src/java.h: Likewise.\n        * src/jisx0201.h: Likewise.\n        * src/jisx0208.h: Likewise.\n        * src/jisx0212.h: Likewise.\n        * src/johab.h: Likewise.\n        * src/johab_hangul.h: Likewise.\n        * src/koi8_r.h: Likewise.\n        * src/koi8_ru.h: Likewise.\n        * src/koi8_u.h: Likewise.\n        * src/ksc5601.h: Likewise.\n        * src/mac_arabic.h: Likewise.\n        * src/mac_centraleurope.h: Likewise.\n        * src/mac_croatian.h: Likewise.\n        * src/mac_cyrillic.h: Likewise.\n        * src/mac_greek.h: Likewise.\n        * src/mac_hebrew.h: Likewise.\n        * src/mac_iceland.h: Likewise.\n        * src/mac_roman.h: Likewise.\n        * src/mac_romania.h: Likewise.\n        * src/mac_thai.h: Likewise.\n        * src/mac_turkish.h: Likewise.\n        * src/mac_ukraine.h: Likewise.\n        * src/mulelao.h: Likewise.\n        * src/nextstep.h: Likewise.\n        * src/sjis.h: Likewise.\n        * src/tcvn.h: Likewise.\n        * src/tis620.h: Likewise.\n        * src/ucs2.h: Likewise.\n        * src/ucs2be.h: Likewise.\n        * src/ucs2internal.h: Likewise.\n        * src/ucs2le.h: Likewise.\n        * src/ucs2swapped.h: Likewise.\n        * src/ucs4.h: Likewise.\n        * src/ucs4be.h: Likewise.\n        * src/ucs4internal.h: Likewise.\n        * src/ucs4le.h: Likewise.\n        * src/ucs4swapped.h: Likewise.\n        * src/uhc_1.h: Likewise.\n        * src/uhc_2.h: Likewise.\n        * src/utf16.h: Likewise.\n        * src/utf16be.h: Likewise.\n        * src/utf16le.h: Likewise.\n        * src/utf7.h: Likewise.\n        * src/utf8.h: Likewise.\n        * src/viscii.h: Likewise.\n\n2000-11-18  Bruno Haible  <haible@clisp.cons.org>\n\n        Make transliteration optional.\n        * src/iconv.c (iconv_open): Strip off //TRANSLIT suffix from names.\n          Set transliteration on if and only if tocode ends in //TRANSLIT.\n        * README, man/iconv_open.3: Document how to enable transliteration.\n        * tests/check-translit: Add //TRANSLIT to iconv's 't' argument.\n        * tests/check-translit.bat: Likewise.\n        * tests/check-translit.cmd: Likewise.\n\n2000-11-18  Bruno Haible  <haible@clisp.cons.org>\n\n        * man/iconv.3: Fix typo.\n\n2000-10-31  Bruno Haible  <haible@clisp.cons.org>\n\n        * README, man/iconv_open.3: Document JOHAB again.\n\n2000-11-15  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.msvc: Add support for MFLAGS and DEBUG parameters.\n          (STATIC): Change default from 0 to 1.\n        * src/Makefile.msvc: Likewise.\n        * tests/Makefile.msvc: Likewise.\n        * tests/check-stateless.bat: Call 'sort' with no arguments.\n\n2000-11-12  Bruno Haible  <haible@clisp.cons.org>\n\n        * autoconf/config.guess, autoconf/config.sub: Upgrade to newest\n          version from GNU CVS.\n\n2000-10-24  Bruno Haible  <haible@clisp.cons.org>\n\n        * Version 1.4 released.\n        * include/iconv.h.in (_LIBICONV_VERSION), README, windows/iconv.rc:\n          Bump version number.\n        * src/Makefile.in (LIBICONV_VERSION_INFO): Define to 2:1:0.\n\n2000-10-23  Bruno Haible  <haible@clisp.cons.org>\n\n        Implement and document GB18030 and BIG5HKSCS.\n        * tools/cjk_tab_to_h.c (row_byte_hkscs, byte_row_hkscs, do_hkscs): New\n          functions.\n          (do_gb18030uni): New function.\n          (main): Accept gb18030ext, gb18030uni, hkscs.\n        * tools/Makefile (ALL): Add gb18030ext.h, gb18030uni.h, hkscs.h.\n          (gb18030ext.h, GB18030ext.TXT, gb18030uni.h, GB18030uni.TXT,\n           hkscs.h): New targets.\n        * src/gb18030ext.h, src/gb18030uni.h, src/gb18030.h: New files.\n        * src/hkscs.h, src/big5hkscs.h: New files.\n        * src/converters.h: Include gb18030.h and big5hkscs.h.\n        * src/encodings.def (GB18030, BIG5HKSCS): New encodings.\n        * README, man/iconv_open.3: Add GB18030, BIG5HKSCS.\n        * tests/Makefile.in (check): Check GB18030, BIG5HKSCS.\n        * tests/Makefile.msvc (check): Likewise.\n        * tests/Makefile.os2 (check): Likewise.\n        * tests/GB18030.TXT: New file.\n        * tests/BIG5HKSCS.TXT, tests/BIG5HKSCS.IRREVERSIBLE.TXT: New files.\n\n2000-10-23  Bruno Haible  <haible@clisp.cons.org>\n\n        * tests/table-from.c (try, main): Use UCS-4-INTERNAL instead of\n          UCS-2-INTERNAL, to avoid problems with UCS-2 surrogate handling.\n        * tests/table-to.c (main): Likewise.\n\n2000-10-22  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/gentranslit.c (main): Read the input in UTF-8 encoding.\n\n2000-10-09  Bruno Haible  <haible@clisp.cons.org>\n\n        CPU recognition on OpenBSD.\n        * autoconf/aclocal.m4 (CL_WORDS_LITTLEENDIAN): Recognize __m68k__,\n          __mc68020__, __MIPSEB__, __MIPSEL__, __m88k__ as CPU indicators.\n\n2000-10-03  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/gentranslit.c (main): Don't output non-ASCII ISO-8859-1\n          character literals, use the numeric value instead.\n          Reported by Shin-Hsien Yeh <shyeh@alcatel.com.tw>.\n\n2000-09-29  Bruno Haible  <haible@clisp.cons.org>\n\n        * autoconf/aclocal.m4 (CL_CANONICAL_HOST): Fix bug in 2000-05-23\n          change.\n\n2000-09-25  Bruno Haible  <haible@clisp.cons.org>\n\n        * autoconf/aclocal.m4 (CL_WORDS_LITTLEENDIAN): Recognize __i386__\n          as equivalent to __i386. For OpenBSD.\n\n2000-09-21  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/utf16.h (utf16_wctomb): Reject single surrogates.\n        * src/utf16be.h (utf16be_wctomb): Likewise.\n        * src/utf16le.h (utf16le_wctomb): Likewise.\n        * src/ucs2.h (ucs2_mbtowc, ucs2_wctomb): Likewise.\n        * src/ucs2be.h (ucs2be_mbtowc, ucs2be_wctomb): Likewise.\n        * src/ucs2le.h (ucs2le_mbtowc, ucs2le_wctomb): Likewise.\n        * src/ucs2internal.h (ucs2internal_mbtowc, ucs2internal_wctomb):\n          Likewise.\n        * src/ucs2swapped.h (ucs2swapped_mbtowc, ucs2swapped_wctomb):\n          Likewise.\n\n2000-09-15  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.in (install, installdirs, uninstall): Support DESTDIR.\n        * src/Makefile.in (install, installdirs, uninstall): Likewise.\n        * man/Makefile.in (install, installdirs, uninstall): Likewise.\n\n2000-09-11  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/utf7.h (utf7_mbtowc): Fix combining of UTF-16 surrogates.\n\n2000-08-26  Bruno Haible  <haible@clisp.cons.org>\n\n        * autoconf/acgeneral.m4 (AC_OUTPUT): Use braces in exec_prefix default\n          value, not parens.\n\n2000-07-04  Akira Hatakeyama  <akira@sra.co.jp>\n            Bruno Haible  <haible@clisp.cons.org>\n\n        * os2/iconv.def, README.os2, Makefile.os2, src/Makefile.os2,\n          tests/Makefile.os2, man/Makefile.os2, tests/check-stateful.cmd,\n          tests/check-stateless.cmd, tests/check-translit.cmd: New files.\n\n2000-06-28  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/ucs2internal.h (ucs2internal_mbtowc): Avoid gcc warning about\n          cast.\n        * src/ucs4internal.h (ucs4internal_mbtowc): Likewise.\n        * src/ucs2swapped.h (ucs2swapped_mbtowc, ucs2swapped_wctomb): Verify\n          sizeof(unsigned short).\n        * src/ucs4swapped.h (ucs4swapped_mbtowc, ucs4swapped_mbtowc): Verify\n          sizeof(unsigned int).\n        Reported by François Pinard <pinard@iro.umontreal.ca>.\n\n2000-05-29  Bruno Haible  <haible@clisp.cons.org>\n\n        * autoconf/aclocal.m4 (CL_PROG_INSTALL): Fix typo.\n        Reported by Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at>.\n\n2000-05-23  Bruno Haible  <haible@clisp.cons.org>\n\n        * autoconf/aclocal.m4 (CL_CANONICAL_HOST): Determine host_cpu,\n          host_vendor, host_os correctly if $host has more than two hyphens.\n\n2000-04-15  Bruno Haible  <haible@clisp.cons.org>\n\n        * Version 1.3 released.\n        * include/iconv.h.in (_LIBICONV_VERSION), README, windows/iconv.rc:\n          Bump version number.\n        * src/Makefile.in (LIBICONV_VERSION_INFO): Define to 2:0:0.\n\n2000-04-15  Bruno Haible  <haible@clisp.cons.org>\n\n        * THANKS: New file.\n        * INSTALL.generic: New file.\n\n        Implement and document UCS-2BE, UCS-2LE, UCS-4BE, UCS-4LE.\n        * src/ucs2be.h, src/ucs2le.h, src/ucs4be.h, src/ucs4le.h: New files.\n        * src/converters.h: Include them.\n        * src/ucs2swapped.h: Remove #defines for UCS-2-BE, UCS-2-LE.\n        * src/ucs4swapped.h: Remove #defines for UCS-4-BE, UCS-4-LE.\n        * src/encodings.def (UCS-2BE): Renamed from UCS-2-BE.\n          (UCS-2LE): Renamed from UCS-2-LE.\n          (UCS-4BE): Renamed from UCS-4-BE.\n          (UCS-4LE): Renamed from UCS-4-LE.\n        * Makefile.devel (src/aliases.h): Pass option \"-i 1\" to gperf.\n        * README, man/iconv_open.3: Add UCS-2BE, UCS-2LE, UCS-4BE, UCS-4LE.\n        * tests/Makefile.in (check): Check UCS-2BE, UCS-2LE, UCS-4BE, UCS-4LE.\n        * tests/Makefile.msvc (check): Likewise.\n        * tests/UCS-*snippet*: New files.\n\n        Allow building as a shared library on Windows.\n        Allow running the tests on Windows.\n        * Makefile.devel (include/iconv.h.msvc): Remove rule.\n          (include/iconv.h.msvc-static, include/iconv.h.msvc-shared): New\n          rules.\n          (all): Update.\n        * windows/dllexport.h: New file.\n        * include/iconv.h.msvc: Remove file.\n        * include/iconv.h.msvc-static, include/iconv.h.msvc-shared: New\n          autogenerated files.\n        * Makefile.msvc (STATIC, DEBUG): Default to 0.\n          (all): Choose either include\\iconv.h.msvc-static or\n          include\\iconv.h.msvc-shared.\n          (check): Depend on all.\n          (all, check, mostlyclean, clean, distclean, maintainer-clean):\n          Recurse into tests directory.\n        * src/Makefile.msvc (STATIC, DEBUG): Default to 0.\n          (WARN_CFLAGS, PICFLAGS, OPTIMFLAGS): New variables.\n          (CFLAGS): Use them. Add -MD and -DBUILDING_LIBICONV.\n          (RESOURCES): New variable.\n          (iconv.lib): Change rule when building DLL.\n          (clean, distclean): One filename per line.\n        * tests/Makefile.msvc: New file.\n        * tests/check-stateful.bat, tests/check-stateless.bat,\n          tests/check-translit.bat: New files.\n        * tests/uniq-u.c: New file, taken from GNU textutils.\n        * README.win32: Update.\n        Based on patches by Taro Muraoka <koron@tka.att.ne.jp>.\n\n2000-04-14  Bruno Haible  <haible@clisp.cons.org>\n\n        Fix an OSF/1 problem.\n        * configure.in: Define GCC variable for substitution.\n        * src/Makefile.in (libiconv_plug_osf.so): Change rule if not using\n          gcc.\n\n2000-04-13  Bruno Haible  <haible@clisp.cons.org>\n\n        Fix a SunOS 4 problem.\n        * include/iconv.h.in: If EILSEQ is not defined by the system, define\n          it to ENOENT, not EINVAL.\n\n2000-04-02  Bruno Haible  <haible@clisp.cons.org>\n\n        Allow building on filesystems lacking symlinks and hard links.\n        * Makefile.devel (autoconf/aclocal.m4): Replace AC_PROG_LN_S with\n          CL_PROG_LN_S.\n        * configure.in: Add CL_PROG_LN, CL_PROG_LN_S.\n        * src/Makefile.in (LN): Use autoconfigured value @LN@.\n          (LN_S): Use autoconfigured value @LN_S@.\n\n2000-03-15  Bruno Haible  <haible@clisp.cons.org>\n\n        * Version 1.2 released.\n        * include/iconv.h.in (_LIBICONV_VERSION): Bump version number.\n        * src/Makefile.in (LIBICONV_VERSION_INFO): Define to 1:1:1.\n\n2000-03-14  Bruno Haible  <haible@clisp.cons.org>\n\n        Implement and document UTF-16BE and UTF16LE.\n        * src/utf16be.h, src/utf16le.h: New files.\n        * src/converters.h: Include them.\n        * src/encodings.def (UTF-16BE, UTF16LE): New encodings.\n        * README, man/iconv_open.3: Add UTF-16BE, UTF16LE.\n        * tests/Makefile.in (check): Check UTF-16, UTF-16BE, UTF16LE.\n        * tests/UTF-16*snippet*: New files.\n\n        * src/utf16.h (utf16_wctomb): Output a byte order mark.\n\n2000-03-13  Bruno Haible  <haible@clisp.cons.org>\n\n        Provide all encodings used by AIX locales.\n        * tools/Makefile (all): Add cp856.h, cp922.h, cp1046.h, cp1124.h,\n          cp1129.h.\n          (cp856.h, cp922.h, cp1046.h, cp1124.h, cp1129.h): New targets.\n        * src/cp856.h, src/cp922.h, src/cp943.h, src/cp1046.h, src/cp1124.h,\n          src/cp1129.h: New files.\n        * src/converters.h: Include them if USE_AIX is defined.\n        * src/encodings_aix.def: New file, with CP856, CP922, CP943, CP1046,\n          CP1124, CP1129.\n        * src/genflags.c: Define USE_AIX. Include encodings_aix.def.\n        * src/genaliases2.c: New file.\n        * src/iconv.c: Define USE_AIX on AIX.\n          Include encodings_aix.def and aliases_aix.h.\n          (aliases2_lookup): New function.\n          (iconv_open): Call aliases2_lookup.\n        * src/Makefile.in (iconv.lo): Depend on encodings_aix.def and\n          aliases_aix.h.\n        * Makefile.devel (all): Add src/aliases_aix.h.\n          (src/aliases_aix.h): New rule.\n          (src/flags.h): Depend on src/encodings_aix.def.\n\n2000-02-24  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/iconv.c (iconv): Don't write beyond the end of the output buffer.\n          Reported by Edmund Grimley Evans <edmundo@rano.org>.\n\n2000-02-22  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/utf7.h (direct_tab, xdirect_tab): Treat tab like space.\n\n2000-02-15  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/iconv.c (iconv): Add cast in xxx_reset call.\n\n2000-02-05  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/tis620.h: Simplify.\n\n2000-01-27  Bruno Haible  <haible@clisp.cons.org>\n\n        * Makefile.devel (CLISP_DIR): Change to \"..\".\n\n2000-01-24  Bruno Haible  <haible@clisp.cons.org>\n\n        * Version 1.1 released.\n        * include/iconv.h.in (_LIBICONV_VERSION): Bump version number.\n        * src/Makefile.in (LIBICONV_VERSION_INFO): Define to 1:0:1.\n\n2000-01-23  Bruno Haible  <haible@clisp.cons.org>\n\n        * src/utf7.h (utf7_wctomb): If base64 encoding is not active, encode\n          '+' as \"+-\".\n\n2000-01-22  Bruno Haible  <haible@clisp.cons.org>\n\n        * include/iconv.h.in (iconvctl): New declaration.\n          (ICONV_TRIVIALP, ICONV_GET_TRANSLITERATE, ICONV_SET_TRANSLITERATE):\n          New macros.\n        * src/iconv.c (iconvctl): New function.\n\n        * tests/Makefile.in: Add a rule for ../src/libiconv.la. Define $(MAKE).\n\n        Solve a build problem.\n        * include/iconv.h.in: Renamed from include/libiconv.h.in.\n        * Makefile.devel: libiconv.h -> iconv.h.\n        * Makefile.in: Likewise.\n        * configure.in: Likewise. Remove check for <iconv.h>.\n        * src/iconv.c: Include iconv.h instead of libiconv.h.\n        * tests/iconv.c, tests/table-from.c, tests/table-to.c: Likewise.\n\n        * README, man/iconv_open.3: Don't document JOHAB any more.\n\n        * man/iconv.3: Clarify return value again.\n\n2000-01-16  Bruno Haible  <haible@clisp.cons.org>\n\n        Add aliases.\n        * src/encodings.def (ISO-8859-14): Add alias ISO-IR-199.\n          (ISO-8859-15): Add alias ISO-IR-203.\n          (EUC-CN): Add alias CN-GB, from RFC 1922.\n          (BIG5): Add alias CN-BIG5, from RFC 1922.\n        * Makefile.devel (src/aliases.h): Add 8th character to key set.\n\n        Drop X11 aliases.\n        * src/encodings.def (JIS_X0201): Drop JISX0201.1976-0 alias.\n          (JIS_X0208): Drop JIS_X0208.1983-0, JIS_X0208.1983-1 aliases.\n          (KSC_5601): Drop KSC5601.1987-0 alias.\n\n        Improve GB/T 12345 (not used yet).\n        * tools/Makefile (gb12345ext.h): Use GB12345-more.TXT.\n        * src/gb12345ext.h: Regenerated.\n\n        Improve and document CP949.\n        * tools/Makefile (all): Add uhc_1.h and uhc_2.h.\n          (uhc_1.h, uhc_2.h): New rules.\n        * tools/cjk_tab_to_h.c (output_charset2uni_noholes_monotonic): New\n          function.\n          (output_uni2charset_sparse): Take an additional boolean argument.\n          All callers changed.\n          (*_uhc_1, *_uhc_2): New functions.\n          (main): Treat uhc_1 and uhc_2.\n        * src/uhc_1.h, src/uhc_2.h: New files.\n        * src/cp949.h: New file, include them.\n        * src/converters.h: Include it.\n        * src/encodings.def (KSC_5601): Remove alias CP949.\n          (CP949): New encoding.\n        * README, man/iconv_open.3: Add CP949.\n        * tests/Makefile.in (check): Check CP949.\n        * tests/CP949.TXT: New file.\n\n        Document CP932.\n        * README, man/iconv_open.3: Add CP932.\n        * tests/Makefile.in (check): Check CP932.\n        * tests/CP932.TXT, tests/CP932.IRREVERSIBLE.TXT: New files.\n\n        * Makefile.devel (src/flags.h): Depend on src/converters.h.\n\n        * tests/Makefile.in (check): Check JIS_X0201.\n        * tests/JIS_X0201.TXT: New file.\n\n        * src/euc_kr.h (euc_kr_wctomb): Shrink size of buf.\n        * src/iso2022_kr.h (iso2022_kr_wctomb): Likewise.\n\n        * src/iso2022_cnext.h (iso2022_cn_ext_mbtowc): Use isoir165_mbtowc.\n          (iso2022_cn_ext_wctomb): Use isoir165_wctomb.\n\n        Add ISO-IR-165 (undocumented).\n        * tools/Makefile (all): Add isoir165ext.h.\n          (isoir165ext.h): New rule.\n        * tools/cjk_tab_to_h.c (main): Treat isoir165ext like gb2312.\n        * src/isoir165.h, src/isoir165ext.h: New files.\n        * src/converters.h: Include it.\n        * src/encodings.def: Add ISO-IR-165.\n        * tests/Makefile.in (check): Check ISO-IR-165.\n        * tests/ISO-IR-165.TXT, tests/ISO-IR-165.IRREVERSIBLE.TXT: New files.\n\n        Add ISO646-CN (undocumented).\n        * src/iso646_cn.h: New file.\n        * src/converters.h: Include it.\n        * src/encodings.def: Add ISO646-CN.\n        * tests/Makefile.in (check): Check ISO646-CN.\n        * tests/ISO646-CN.TXT: New file.\n\n        Add ISO646-JP (undocumented).\n        * src/iso646_jp.h: New file.\n        * src/converters.h: Include it.\n        * src/encodings.def: Add ISO646-JP.\n        * tests/Makefile.in (check): Check ISO646-JP.\n        * tests/ISO646-JP.TXT: New file.\n\n2000-01-05  Bruno Haible  <haible@clisp.cons.org>\n\n        Add ISO-8859-16.\n        * tools/Makefile (all): Add iso8859_16.h.\n          (iso8859_16.h): New rule.\n        * src/iso8859_16.h: New file.\n        * src/converters.h: Include it.\n        * src/encodings.def: Add ISO-8859-16.\n        * README, man/iconv_open.3: Add ISO-8859-16.\n        * tests/Makefile.in (check): Check ISO-8859-16.\n        * tests/ISO-8859-16.TXT: New file.\n\n        * man/iconv.3: Clarify what happens *inbuf in case 3.\n\n        * src/iso8859_8.h: Update using newest table from ftp.unicode.org.\n        * tests/ISO-8859-8.TXT: Likewise.\n\n2000-01-04  Bruno Haible  <haible@clisp.cons.org>\n\n        * Version 1.0 released.\n        * include/libiconv.h.in (_LIBICONV_VERSION): Bump version number.\n        * src/Makefile.in (LIBICONV_VERSION_INFO): Define to 0:1:0.\n          (libiconv.la): Use LIBICONV_VERSION_INFO.\n\n2000-01-03  Bruno Haible  <haible@clisp.cons.org>\n\n        * tests/Makefile.in: New file.\n          tests/check-stateless, tests/table-from.c, tests/table-to.c,\n          tests/*.TXT, tests/genutf8.c: New files, checks for stateless\n          encodings.\n          tests/check-stateful, tests/iconv.c, tests/*-snippet*: New files,\n          checks for stateful encodings.\n        * Makefile.in (all, check, mostlyclean, clean, distclean,\n           maintainer-clean): Descend into tests directory.\n        * configure.in: Add tests/Makefile to AC_OUTPUT duties.\n\n        * src/gentranslit.c: New file.\n        * Makefile.devel (src/translit.h): New rule.\n        * src/translit.def, src/translit.h: New files.\n        * src/iconv.c: Include it.\n          (iconv): Transliterate using translit.h table.\n\n        * src/genflags.c: New file.\n        * Makefile.devel (src/flags.h): New rule.\n        * src/flags.h: New file.\n        * src/iconv.c: Include it.\n          (encoding): Add field 'oflags'.\n          (all_encodings): Initialize the field 'oflags'.\n          (iconv_open): Copy field 'oflags'.\n          (iconv): Transliterate quotation marks U+2018, U+2019, U+201A.\n        * src/Makefile.in (iconv.lo): Update dependencies.\n\n        * src/converters.h: New file, extracted from src/iconv.c.\n        * src/iconv.c: Include it.\n        * src/Makefile.in (iconv.lo): Update dependencies.\n\n        * tools/cjk_variants.c: New file.\n        * tools/Makefile (ALL): Add cjk_variants.h.\n          (cjk_variants.h, cjk_variants): New rules.\n        * src/cjk_variants.h: New file.\n        * src/iconv.c: Include it.\n          (iconv): Use cjk_variants for transliteration.\n\n        * man/iconv.3: Fix description of return value.\n        * euc_kr.h (euc_kr_wctomb): Remove Hangul transliteration.\n        * iso2022_kr.h (iso2022kr_wctomb): Likewise.\n        * src/iconv.c (iconv): Do Hangul transliteration here and increment\n          result once for every transliterated character.\n        * src/johab_hangul.h (johab_hangul_decompose): Change result array\n          from 'unsigned char*' to 'wchar_t*'.\n\n        * src/cp1258.h (cp1258_mbtowc): Return RET_ILSEQ instead of storing\n          0xfffd.\n\n        * src/georgian_ps.h (georgian_ps_wctomb): Accept 0x00e6.\n\n        * src/euc_jp.h (euc_jp_wctomb): Don't treat U+005C and U+007E like\n          Katakana.\n\n        * src/euc_tw.h (euc_tw_mbtowc): Fix typo.\n\n        * src/cp950.h (cp950_mbtowc, cp950_wctomb): Exclude the range\n          0xC6A1..0xC7FE.\n\n        * tools/cjk_tab_to_h.c (read_table_ksc5601): Some Hangul range was\n          not being excluded. Fix that.\n        * src/ksc5601.h: Regenerated.\n        * src/johab.h (johab_mbtowc): Don't accept 0xDA{A1..D3} - this is\n          valid in KSC5601/KSX1001 but not in JOHAB.\n\n        * src/iconv.c (conv_struct): Add fields iindex, oindex.\n          (iconv_open): Fill in iindex, oindex.\n\n        * src/encodings.def (UCS-2-BE): Add aliases \"UNICODE-1-1\" and\n          \"csUnicode11\", from IANA charset list.\n          (MacRoman): Add aliases \"MAC\" and \"csMacintosh\" for \"MACINTOSH\",\n          from IANA charset list.\n          (JIS_X0208): Add aliases \"X0208\", \"ISO-IR-87\", \"csISO87JISX0208\",\n          from IANA charset list.\n          (GB_2312-80): New encoding, from IANA charset list.\n\n        * README, man/iconv_open.3: Add MacIceland and MacUkraine.\n\n        * Makefile.devel: Add rules for src/aliases.h and src/aliases.gperf.\n          (all): Depend on src/aliases.h.\n        * src/Makefile.in: Remove rules for $(srcdir)/aliases.h and\n          $(srcdir)/aliases.gperf.\n          (clean): Clean up.\n\n        * src/Makefile.in (libiconv_plug_linux.so): Remove unneeded \"-ldl\".\n\n1999-12-31  Bruno Haible  <haible@clisp.cons.org>\n\n        * Version 0.3 released.\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/DEPENDENCIES",
    "content": "No packages need to be installed before GNU libiconv is installed.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/DESIGN",
    "content": "While some other iconv(3) implementations - like FreeBSD iconv(3) - choose\nthe \"many small shared libraries\" and dlopen(3) approach, this implementation\npacks everything into a single shared library. Here is a comparison of the\ntwo designs.\n\n* Run-time efficiency\n  1. A dlopen() based approach needs a cache of loaded shared libraries.\n  Otherwise, every iconv_open() call will result in a call to dlopen()\n  and thus to file system related system calls - which is prohibitive\n  because some applications use the iconv_open/iconv/iconv_close sequence\n  for every single filename, string, or piece of text.\n  2. In terms of virtual memory use, both approaches are on par. Being shared\n  libraries, the tables are shared between any processes that use them.\n  And because of the demand loading used by Unix systems (and because libiconv\n  does not have initialization functions), only those parts of the tables\n  which are needed (typically very few kilobytes) will be read from disk and\n  paged into main memory.\n  3. Even with a cache of loaded shared libraries, the dlopen() based approach\n  makes more system calls, because it has to load one or two shared libraries\n  for every encoding in use.\n\n* Total size\n  In the dlopen(3) approach, every shared library has a symbol table and\n  relocation offset. All together, FreeBSD iconv installs more than 200 shared\n  libraries with a total size of 2.3 MB. Whereas libiconv installs 0.45 MB.\n\n* Extensibility\n  The dlopen(3) approach is good for guaranteeing extensibility if the iconv\n  implementation is distributed without source. (Or when, as in glibc, you\n  cannot rebuild iconv without rebuilding your libc, thus possibly\n  destabilizing your system.)\n  The libiconv package achieves extensibility through the LGPL license:\n  Every user has access to the source of the package and can extend and\n  replace just libiconv.so.\n  The places which have to be modified when a new encoding is added are as\n  follows: add an #include statement in iconv.c, add an entry in the table in\n  iconv.c, and of course, update the README and iconv_open.3 manual page.\n\n* Use within other packages\n  If you want to incorporate an iconv implementation into another package\n  (such as a mail user agent or web browser), the single library approach\n  is easier, because:\n  1. In the shared library approach you have to provide the right directory\n  prefix which will be used at run time.\n  2. Incorporating iconv as a static library into the executable is easy -\n  it won't need dynamic loading. (This assumes that your package is under\n  the LGPL or GPL license.)\n\n\nAll conversions go through Unicode. This is possible because most of the\nworld's characters have already been allocated in the Unicode standard.\nTherefore we have for each encoding two functions:\n- For conversion from the encoding to Unicode, a function called xxx_mbtowc.\n- For conversion from Unicode to the encoding, a function called xxx_wctomb,\n  and for stateful encodings, a function called xxx_reset which returns to\n  the initial shift state.\n\n\nAll our functions operate on a single Unicode character at a time. This is\nobviously less efficient than operating on an entire buffer of characters at\na time, but it makes the coding considerably easier and less bug-prone. Those\nwho wish best performance should install the Real Thing (TM): GNU libc 2.1\nor newer.\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/HACKING",
    "content": "All you need to know when hacking (modifying) GNU libiconv or when building\nit off the Git repository.\n\n\nRequirements\n============\n\nYou will need reasonably recent versions of the build tools:\n\n  * A C compiler. Such as GNU GCC.\n    + Homepage:\n      http://gcc.gnu.org/\n\n  * GNU automake\n    + Homepage:\n      http://www.gnu.org/software/automake/\n\n  * GNU autoconf\n    + Homepage:\n      http://www.gnu.org/software/autoconf/\n\n  * GNU m4\n    + Homepage:\n      http://www.gnu.org/software/m4/\n\n  * GNU gperf\n    + Homepage:\n      http://www.gnu.org/software/gperf/\n\n  * GNU groff 1.17 or newer\n    + Homepage:\n      http://www.gnu.org/software/groff/\n\n  * Perl\n    + Homepage:\n      http://www.perl.org/\n\n  * Either an internet connection or a recent copy of GNU gnulib.\n    + Homepage:\n      http://www.gnu.org/software/gnulib/\n\nAnd, of course, the packages listed in the DEPENDENCIES file.\n\n\nBuilding off the Git repository\n===============================\n\nAccess to the Git repository is described at\nhttps://savannah.gnu.org/git/?group=libiconv .\n\nAfter fetching the sources from the Git repository, peek at the comments in\nautogen.sh, then run \"./autogen.sh\"; then you can proceed with \"./configure\"\nas usual.\n\n\nAdding new encodings\n====================\n\nFor an indication which encodings are acceptable in the official version of\nGNU libiconv, take a look at NOTES.\n\nFor an indication which files need to be modified when adding a new encoding,\nlook for example at the 2007-05-25 ChangeLog entry for RK1048.  The lib/*.h\nfile for an encoding is usually generated by one of the tools in the tools/\ndirectory.  All you need to provide is the conversion table in the format of\nthe many *.TXT files.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/INSTALL.generic",
    "content": "Basic Installation\n==================\n\n   These are generic installation instructions.\n\n   The `configure' shell script attempts to guess correct values for\nvarious system-dependent variables used during compilation.  It uses\nthose values to create a `Makefile' in each directory of the package.\nIt may also create one or more `.h' files containing system-dependent\ndefinitions.  Finally, it creates a shell script `config.status' that\nyou can run in the future to recreate the current configuration, a file\n`config.cache' that saves the results of its tests to speed up\nreconfiguring, and a file `config.log' containing compiler output\n(useful mainly for debugging `configure').\n\n   If you need to do unusual things to compile the package, please try\nto figure out how `configure' could check whether to do them, and mail\ndiffs or instructions to the address given in the `README' so they can\nbe considered for the next release.  If at some point `config.cache'\ncontains results you don't want to keep, you may remove or edit it.\n\n   The file `configure.ac' is used to create `configure' by a program\ncalled `autoconf'.  You only need `configure.ac' if you want to change\nit or regenerate `configure' using a newer version of `autoconf'.\n\nThe simplest way to compile this package is:\n\n  1. `cd' to the directory containing the package's source code and type\n     `./configure' to configure the package for your system.  If you're\n     using `csh' on an old version of System V, you might need to type\n     `sh ./configure' instead to prevent `csh' from trying to execute\n     `configure' itself.\n\n     Running `configure' takes awhile.  While running, it prints some\n     messages telling which features it is checking for.\n\n  2. Type `make' to compile the package.\n\n  3. Optionally, type `make check' to run any self-tests that come with\n     the package.\n\n  4. Type `make install' to install the programs and any data files and\n     documentation.\n\n  5. You can remove the program binaries and object files from the\n     source code directory by typing `make clean'.  To also remove the\n     files that `configure' created (so you can compile the package for\n     a different kind of computer), type `make distclean'.  There is\n     also a `make maintainer-clean' target, but that is intended mainly\n     for the package's developers.  If you use it, you may have to get\n     all sorts of other programs in order to regenerate files that came\n     with the distribution.\n\nCompilers and Options\n=====================\n\n   Some systems require unusual options for compilation or linking that\nthe `configure' script does not know about.  You can give `configure'\ninitial values for variables by setting them in the environment.  Using\na Bourne-compatible shell, you can do that on the command line like\nthis:\n     CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure\n\nOr on systems that have the `env' program, you can do it like this:\n     env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure\n\nCompiling For Multiple Architectures\n====================================\n\n   You can compile the package for more than one kind of computer at the\nsame time, by placing the object files for each architecture in their\nown directory.  To do this, you must use a version of `make' that\nsupports the `VPATH' variable, such as GNU `make'.  `cd' to the\ndirectory where you want the object files and executables to go and run\nthe `configure' script.  `configure' automatically checks for the\nsource code in the directory that `configure' is in and in `..'.\n\n   If you have to use a `make' that does not supports the `VPATH'\nvariable, you have to compile the package for one architecture at a time\nin the source code directory.  After you have installed the package for\none architecture, use `make distclean' before reconfiguring for another\narchitecture.\n\n   On MacOS X 10.5 and later systems, you can create libraries and\nexecutables that work on multiple system types--known as \"fat\" or\n\"universal\" binaries--by specifying multiple '-arch' options to the\ncompiler but only a single '-arch' option to the preprocessor.  Like\nthis:\n\n     ./configure CC=\"gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64\" \\\n                 CXX=\"g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64\" \\\n                 CPP=\"gcc -E\" CXXCPP=\"g++ -E\"\n\n   This is not guaranteed to produce working output in all cases.  You\nmay have to build one architecture at a time and combine the results\nusing the 'lipo' tool if you have problems.\n\nInstallation Names\n==================\n\n   By default, `make install' will install the package's files in\n`/usr/local/bin', `/usr/local/man', etc.  You can specify an\ninstallation prefix other than `/usr/local' by giving `configure' the\noption `--prefix=PATH'.\n\n   You can specify separate installation prefixes for\narchitecture-specific files and architecture-independent files.  If you\ngive `configure' the option `--exec-prefix=PATH', the package will use\nPATH as the prefix for installing programs and libraries.\nDocumentation and other data files will still use the regular prefix.\n\n   In addition, if you use an unusual directory layout you can give\noptions like `--bindir=PATH' to specify different values for particular\nkinds of files.  Run `configure --help' for a list of the directories\nyou can set and what kinds of files go in them.\n\n   If the package supports it, you can cause programs to be installed\nwith an extra prefix or suffix on their names by giving `configure' the\noption `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.\n\nRelocatable Installation\n========================\n\n   By default, `make install' will install a package with hardwired\nfile names, and the package will not work correctly when copied or\nmoved to a different location in the filesystem.\n\n   Some packages pay attention to the `--enable-relocatable' option to\n`configure'.  This option makes the entire installed package\nrelocatable.  This means, it can be moved or copied to a different\nlocation on the filesystem.  It is possible to make symlinks to the\ninstalled and moved programs, and invoke them through the symlink.  It\nis possible to do the same thing  with a hard link _only_ if the hard\nlinked file is in the same directory as the real program.\n\n   For reliability it is best to give together with --enable-relocatable\na `--prefix' option pointing to an otherwise unused (and never used\nagain) directory, for example, `--prefix=/tmp/inst$$'.  This is\nrecommended because on some OSes the executables remember the location\nof shared libraries (and prefer them over LD_LIBRARY_PATH !), therefore\nsuch an executable will look for its shared libraries first in the\noriginal installation directory and only then in the current\ninstallation directory.\n\n   Installation with `--enable-relocatable' will not work for setuid /\nsetgid executables.  (This is because such an executable kills its\nLD_LIBRARY_PATH variable when it is launched.)\n\n   The runtime penalty and size penalty are nearly zero on Linux 2.2 or\nnewer (just one system call more when an executable is launched), and\nsmall on other systems (the wrapper program just sets an environment\nvariable and execs the real program).\n\nOptional Features\n=================\n\n   Some packages pay attention to `--enable-FEATURE' options to\n`configure', where FEATURE indicates an optional part of the package.\nThey may also pay attention to `--with-PACKAGE' options, where PACKAGE\nis something like `gnu-as' or `x' (for the X Window System).  The\n`README' should mention any `--enable-' and `--with-' options that the\npackage recognizes.\n\n   For packages that use the X Window System, `configure' can usually\nfind the X include and library files automatically, but if it doesn't,\nyou can use the `configure' options `--x-includes=DIR' and\n`--x-libraries=DIR' to specify their locations.\n\n   For packages that use the GNU libiconv library, you can use the\n`configure' option `--with-libiconv-prefix' to specify the prefix you\nused while installing GNU libiconv.  This option is not necessary if\nthat other prefix is the same as the one now specified through --prefix.\n\n   For packages that use the GNU libintl library, you can use the\n`configure' option `--with-libintl-prefix' to specify the prefix you\nused while installing GNU gettext-runtime.  This option is not necessary if\nthat other prefix is the same as the one now specified through --prefix.\n\nParticular Systems\n==================\n\n   On HP-UX, the default C compiler is not ANSI C compatible.  If GNU CC\nis not installed, it is recommended to use the following options in order\nto use an ANSI C compiler:\n\n     ./configure CC=\"cc -Ae -D_XOPEN_SOURCE=500\"\n\nand if that doesn't work, install pre-built binaries of GCC for HP-UX.\n\n   On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot\nparse its `<wchar.h>' header file.  The option `-nodtk' can be used as\na workaround.  If GNU CC is not installed, it is therefore recommended\nto try\n\n     ./configure CC=\"cc\"\n\nand if that doesn't work, try\n\n     ./configure CC=\"cc -nodtk\"\n\n   On AIX 3, the C include files by default don't define some necessary\nprototype declarations.  If GNU CC is not installed, it is recommended to\nuse the following options:\n\n     ./configure CC=\"xlc -D_ALL_SOURCE\"\n\n   On BeOS, user installed software goes in /boot/home/config, not\n/usr/local.  It is recommended to use the following options:\n\n     ./configure --prefix=/boot/home/config\n\nSpecifying the System Type\n==========================\n\n   There may be some features `configure' can not figure out\nautomatically, but needs to determine by the type of host the package\nwill run on.  Usually `configure' can figure that out, but if it prints\na message saying it can not guess the host type, give it the\n`--host=TYPE' option.  TYPE can either be a short name for the system\ntype, such as `sun4', or a canonical name with three fields:\n     CPU-COMPANY-SYSTEM\n\nSee the file `config.sub' for the possible values of each field.  If\n`config.sub' isn't included in this package, then this package doesn't\nneed to know the host type.\n\n   If you are building compiler tools for cross-compiling, you can also\nuse the `--target=TYPE' option to select the type of system they will\nproduce code for and the `--build=TYPE' option to select the type of\nsystem on which you are compiling the package.\n\nSharing Defaults\n================\n\n   If you want to set default values for `configure' scripts to share,\nyou can create a site shell script called `config.site' that gives\ndefault values for variables like `CC', `cache_file', and `prefix'.\n`configure' looks for `PREFIX/share/config.site' if it exists, then\n`PREFIX/etc/config.site' if it exists.  Or, you can set the\n`CONFIG_SITE' environment variable to the location of the site script.\nA warning: not all `configure' scripts look for a site script.\n\nOperation Controls\n==================\n\n   `configure' recognizes the following options to control how it\noperates.\n\n`--cache-file=FILE'\n     Use and save the results of the tests in FILE instead of\n     `./config.cache'.  Set FILE to `/dev/null' to disable caching, for\n     debugging `configure'.\n\n`--help'\n     Print a summary of the options to `configure', and exit.\n\n`--quiet'\n`--silent'\n`-q'\n     Do not print messages saying which checks are being made.  To\n     suppress all normal output, redirect it to `/dev/null' (any error\n     messages will still be shown).\n\n`--srcdir=DIR'\n     Look for the package's source code in directory DIR.  Usually\n     `configure' can determine that directory automatically.\n\n`--version'\n     Print the version of Autoconf used to generate the `configure'\n     script, and exit.\n\n`configure' also accepts some other, not widely useful, options.\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/Makefile",
    "content": "# Makefile for libiconv\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = .\n\n# Directories used by \"make install\":\nprefix = /usr/local\nlocal_prefix = /usr/local\nexec_prefix = ${prefix}\ndatarootdir = ${prefix}/share\ndatadir = ${datarootdir}\nlibdir = ${exec_prefix}/lib\nincludedir = ${prefix}/include\nmandir = ${datarootdir}/man\n\n# Programs used by \"make\":\nRM = rm -f\n\n\n# Programs used by \"make install\":\nINSTALL = /usr/bin/install -c\nINSTALL_PROGRAM = ${INSTALL}\nINSTALL_DATA = ${INSTALL} -m 644\nmkinstalldirs = $(SHELL) ./build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\nall : lib/localcharset.h force\n\tcd lib && $(MAKE) all\n\tcd preload && $(MAKE) all\n\tcd srclib && $(MAKE) all\n\tcd src && $(MAKE) all\n\tcd po && $(MAKE) all\n\tcd man && $(MAKE) all\n\tif test -d tests; then cd tests && $(MAKE) all; fi\n\nlib/localcharset.h :\n\tbuilddir=\"`pwd`\"; cd libcharset && $(MAKE) all && $(MAKE) install-lib libdir=\"$$builddir/lib\" includedir=\"$$builddir/lib\"\n\n# Installs the library and include files only. Typically called with only\n# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.\ninstall-lib : all force\n\tcd lib && $(MAKE) install-lib libdir='$(libdir)' includedir='$(includedir)'\n\tif [ ! -d $(includedir) ] ; then $(mkinstalldirs) $(includedir) ; fi\n\t$(INSTALL_DATA) include/iconv.h.inst $(includedir)/iconv.h\n\ninstall : lib/localcharset.h force\n\tcd libcharset && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd lib && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd preload && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd srclib && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd src && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tif [ ! -d $(DESTDIR)$(includedir) ] ; then $(mkinstalldirs) $(DESTDIR)$(includedir) ; fi\n\t$(INSTALL_DATA) include/iconv.h.inst $(DESTDIR)$(includedir)/iconv.h\n\tcd po && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)'\n\tcd man && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)' mandir='$(mandir)'\n\ninstall-strip : lib/localcharset.h force\n\tcd libcharset && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd lib && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd preload && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd srclib && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd src && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tif [ ! -d $(DESTDIR)$(includedir) ] ; then $(mkinstalldirs) $(DESTDIR)$(includedir) ; fi\n\t$(INSTALL_DATA) include/iconv.h.inst $(DESTDIR)$(includedir)/iconv.h\n\tcd po && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)'\n\tcd man && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)' mandir='$(mandir)'\n\ninstalldirs : force\n\tcd libcharset && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd lib && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd preload && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd srclib && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd src && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tif [ ! -d $(DESTDIR)$(includedir) ] ; then $(mkinstalldirs) $(DESTDIR)$(includedir) ; fi\n\tcd po && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)'\n\tcd man && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)' mandir='$(mandir)'\n\nuninstall : force\n\tcd libcharset && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd lib && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd preload && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd srclib && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd src && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\t$(RM) $(DESTDIR)$(includedir)/iconv.h\n\tcd po && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)'\n\tcd man && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)' mandir='$(mandir)'\n\ncheck : all force\n\tcd libcharset && $(MAKE) check\n\tcd lib && $(MAKE) check\n\tcd preload && $(MAKE) check\n\tcd srclib && $(MAKE) check\n\tcd src && $(MAKE) check\n\tcd po && $(MAKE) check\n\tcd man && $(MAKE) check\n\tif test -d tests; then cd tests && $(MAKE) check; fi\n\nmostlyclean : force\n\tcd libcharset && $(MAKE) mostlyclean\n\t$(RM) lib/charset.alias lib/libcharset.* lib/localcharset.h\n\tcd lib && $(MAKE) mostlyclean\n\tcd preload && $(MAKE) mostlyclean\n\tcd srclib && $(MAKE) mostlyclean\n\tcd src && $(MAKE) mostlyclean\n\tcd po && $(MAKE) mostlyclean\n\tcd man && $(MAKE) mostlyclean\n\tif test -d tests; then cd tests && $(MAKE) mostlyclean; fi\n\trm -rf bin\n\nclean : force\n\tcd libcharset && $(MAKE) clean\n\t$(RM) lib/charset.alias lib/libcharset.* lib/localcharset.h\n\tcd lib && $(MAKE) clean\n\tcd preload && $(MAKE) clean\n\tcd srclib && $(MAKE) clean\n\tcd src && $(MAKE) clean\n\tcd po && $(MAKE) clean\n\tcd man && $(MAKE) clean\n\tif test -d tests; then cd tests && $(MAKE) clean; fi\n\trm -rf bin\n\ndistclean : force\n\tcd libcharset && if test -f Makefile; then $(MAKE) distclean; fi\n\t$(RM) lib/charset.alias lib/libcharset.* lib/localcharset.h\n\tcd lib && if test -f Makefile; then $(MAKE) distclean; fi\n\tcd preload && if test -f Makefile; then $(MAKE) distclean; fi\n\tcd srclib && if test -f Makefile; then $(MAKE) distclean; fi\n\tcd src && if test -f Makefile; then $(MAKE) distclean; fi\n\tcd po && if test -f Makefile; then $(MAKE) distclean; fi\n\tcd man && if test -f Makefile; then $(MAKE) distclean; fi\n\tif test -d tests; then cd tests && if test -f Makefile; then $(MAKE) distclean; fi; fi\n\t$(RM) config.status config.log config.cache Makefile libtool\n\t$(RM) config.h stamp-h1 lib/stamp-h2\n\t$(RM) include/iconv.h include/iconv.h.inst\n\trm -rf bin\n\nmaintainer-clean : force\n\tcd libcharset && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\t$(RM) lib/charset.alias lib/libcharset.* lib/localcharset.h\n\tcd lib && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tcd preload && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tcd srclib && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tcd src && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tcd po && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tcd man && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tif test -d tests; then cd tests && if test -f Makefile; then $(MAKE) maintainer-clean; fi; fi\n\t$(RM) config.status config.log config.cache Makefile libtool\n\t$(RM) config.h stamp-h1 lib/stamp-h2\n\t$(RM) include/iconv.h include/iconv.h.inst\n\trm -rf bin\n\n\n# List of source files.\nSOURCE_FILES = \\\n  README README.windows DEPENDENCIES HACKING AUTHORS NEWS DESIGN NOTES THANKS \\\n  ChangeLog Makefile.devel configure.ac Makefile.in \\\n  include/export.h include/iconv.h.in \\\n  gnulib-local/lib/alloca.in.h \\\n  gnulib-local/lib/error.h.diff \\\n  gnulib-local/lib/progname.h.diff \\\n  gnulib-local/lib/xalloc.h \\\n  gnulib-local/lib/xmalloc.c \\\n  gnulib-local/lib/xstrdup.c \\\n  gnulib-local/m4/alloca.m4 \\\n  gnulib-local/modules/libiconv-misc \\\n  gnulib-local/modules/mbstate \\\n  gnulib-local/modules/xalloc \\\n  m4/cp.m4 \\\n  m4/eilseq.m4 \\\n  m4/endian.m4 \\\n  m4/general.m4 \\\n  m4/ln.m4 \\\n  m4/proto.m4 \\\n  windows/iconv.rc windows/libiconv.rc windows/windres-options \\\n  woe32dll/export.h woe32dll/iconv-exports.c \\\n  os2/iconv.def \\\n  README.djgpp \\\n  djgpp/config.bat djgpp/config.sed djgpp/config.site djgpp/edtest.bat \\\n  djgpp/fnchange.in djgpp/fnchange.lst djgpp/Makefile.maint djgpp/makefile.sed \\\n  djgpp/README djgpp/README.in djgpp/sources.sed \\\n  djgpp/stateful-check.sed djgpp/stateless-check.sed djgpp/translit-check.sed \\\n  extras/ChangeLog extras/iconv_string.h extras/iconv_string.c \\\n  tools/Makefile \\\n  tools/8bit_tab_to_h.c tools/cjk_tab_to_h.c tools/cjk_variants.c \\\n  tools/CP50221-0208-EXT.TXT tools/CP50221-0212-EXT.TXT tools/JISX0213.TXT\n# List of distributed files imported from other packages.\nLIBTOOL_IMPORTED_FILES = \\\n  build-aux/ltmain.sh \\\n  m4/libtool.m4 \\\n  m4/lt~obsolete.m4 \\\n  m4/ltoptions.m4 \\\n  m4/ltsugar.m4 \\\n  m4/ltversion.m4\nAUTOMAKE_OLD_IMPORTED_FILES = \\\n  build-aux/mkinstalldirs\nAUTOMAKE_IMPORTED_FILES = \\\n  build-aux/ar-lib \\\n  build-aux/compile \\\n  build-aux/install-sh \\\n  build-aux/missing\nGNULIB_IMPORTED_FILES = \\\n  doc/relocatable.texi \\\n  build-aux/config.guess \\\n  build-aux/config.libpath \\\n  build-aux/config.rpath \\\n  build-aux/config.sub \\\n  build-aux/install-reloc \\\n  build-aux/reloc-ldflags \\\n  build-aux/snippet/arg-nonnull.h \\\n  build-aux/snippet/c++defs.h \\\n  build-aux/snippet/_Noreturn.h \\\n  build-aux/snippet/warn-on-use.h\nIMPORTED_FILES = \\\n  COPYING COPYING.LIB \\\n  ABOUT-NLS INSTALL.generic \\\n  $(LIBTOOL_IMPORTED_FILES) $(AUTOMAKE_OLD_IMPORTED_FILES) $(AUTOMAKE_IMPORTED_FILES) $(GNULIB_IMPORTED_FILES)\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES = \\\n  aclocal.m4 configure config.h.in \\\n  include/iconv.h.build.in\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  destdir=`echo '$(distdir)'/$$file | sed -e 's|//*[^/]*$$||'`; \\\n\t  test -d \"$$destdir\" || $(mkinstalldirs) \"$$destdir\" >/dev/null; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\tfor sdir in srcm4; do \\\n\t  mkdir -p '$(distdir)'/$$sdir; \\\n\t  for file in '$(srcdir)'/$$sdir/*.m4; do \\\n\t    cp -p \"$$file\" '$(distdir)'/$$sdir/ || exit 1; \\\n\t  done; \\\n\tdone\n\ttest -d '$(distdir)'/libcharset || mkdir '$(distdir)'/libcharset; cd libcharset && $(MAKE) distdir distdir='$(distdir)'/libcharset\n\ttest -d '$(distdir)'/lib || mkdir '$(distdir)'/lib; cd lib && $(MAKE) distdir distdir='$(distdir)'/lib\n\ttest -d '$(distdir)'/preload || mkdir '$(distdir)'/preload; cd preload && $(MAKE) distdir distdir='$(distdir)'/preload\n\ttest -d '$(distdir)'/srclib || mkdir '$(distdir)'/srclib; cd srclib && $(MAKE) distdir distdir='$(distdir)'/srclib\n\ttest -d '$(distdir)'/src || mkdir '$(distdir)'/src; cd src && $(MAKE) distdir distdir='$(distdir)'/src\n\ttest -d '$(distdir)'/tests || mkdir '$(distdir)'/tests; cd tests && $(MAKE) distdir distdir='$(distdir)'/tests\n\ttest -d '$(distdir)'/po || mkdir '$(distdir)'/po; cd po && $(MAKE) distdir distdir='$(distdir)'/po\n\ttest -d '$(distdir)'/man || mkdir '$(distdir)'/man; cd man && $(MAKE) distdir distdir='$(distdir)'/man\n\n\n# Creating a distribution tarball.\nPACKAGE = libiconv\nVERSION = 1.15\nTAR = tar\nGZIP = gzip\n\ndist : force\n\ttmpdistdir=$(PACKAGE)-$(VERSION); \\\n\tabstmpdistdir=`pwd`/$$tmpdistdir; \\\n\trm -rf $$tmpdistdir $$tmpdistdir.tar $$tmpdistdir.tar.gz \\\n\t  && mkdir $$tmpdistdir \\\n\t  && $(MAKE) distdir distdir=\"$$abstmpdistdir\" \\\n\t  && $(TAR) chof $$tmpdistdir.tar --owner=root --group=root $$tmpdistdir \\\n\t  && $(GZIP) -9 $$tmpdistdir.tar \\\n\t  && rm -rf $$tmpdistdir\n\n\nforce :\n\n# Work around an automake-1.8 bug.\nam--refresh:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/Makefile.devel",
    "content": "# -*- makefile -*-\n# This is the developer's makefile, not the user's makefile.\n# Don't use it unless you know exactly what you do!\n\nSHELL = /bin/sh\nMAKE = make\nAUTOCONF = autoconf-2.69\nAUTOHEADER = autoheader-2.69\nAUTOMAKE = automake-1.15\nACLOCAL = aclocal-1.15\nGPERF = gperf\nCC = gcc -Wall\nCFLAGS = -O\nMAN2HTML = groff -mandoc -Thtml\nCP = cp\nRM = rm -f\n\n\nall : srclib/Makefile.gnulib srclib/Makefile.in \\\n      configures config.h.in \\\n      include/iconv.h.build.in \\\n      lib/aliases.h lib/aliases_sysaix.h lib/aliases_syshpux.h lib/aliases_sysosf1.h lib/aliases_syssolaris.h \\\n      lib/aliases_aix.h lib/aliases_aix_sysaix.h \\\n      lib/aliases_osf1.h lib/aliases_osf1_sysosf1.h \\\n      lib/aliases_dos.h \\\n      lib/aliases_extra.h \\\n      lib/flags.h lib/translit.h \\\n      man/iconv.1.html man/iconv.3.html man/iconv_close.3.html man/iconv_open.3.html man/iconvctl.3.html man/iconv_open_into.3.html \\\n      force\n\tcd libcharset && $(MAKE) -f Makefile.devel all\n\tcd preload && $(MAKE) -f Makefile.devel all\n\n\n# Before making a new release:\n# - check that the encoding lists in README and man/iconv_open.3 are up to date,\n# - check that the files in libcharset/lib/ are in sync with the gnulib modules\n#   'localcharset' and 'relocatable-lib-lgpl',\n# - increment the version number in\n#     configure.ac\n#     include/iconv.h.in\n#     README\n# - update the version info in lib/Makefile.in,\n# - $ ./autogen.sh\n# Making a new release:\n# - $ ./configure CPPFLAGS=-Wall; make; make check\n# - $ make dist\n\n\nGNULIB_MODULES = \\\n  binary-io \\\n  error \\\n  gettext \\\n  gettext-h \\\n  mbstate \\\n  progname \\\n  relocatable-prog \\\n  safe-read \\\n  sigpipe \\\n  stdio \\\n  stdlib \\\n  strerror \\\n  unistd \\\n  uniwidth/width \\\n  unlocked-io \\\n  xalloc \\\n  libiconv-misc\n\nsrclib/Makefile.gnulib :\n\tif test -n \"$$GNULIB_TOOL\"; then \\\n\t  $$GNULIB_TOOL --lib=libicrt --source-base=srclib --m4-base=srcm4 --makefile-name=Makefile.gnulib --no-libtool --local-dir=gnulib-local --no-vc-files \\\n\t    --import $(GNULIB_MODULES); \\\n\tfi\n\nsrclib/Makefile.in : srclib/Makefile.am srclib/Makefile.gnulib aclocal.m4\n\tif test -n \"$$GNULIB_TOOL\"; then \\\n\t  $$GNULIB_TOOL --copy-file build-aux/ar-lib; \\\n\t  $$GNULIB_TOOL --copy-file build-aux/compile; \\\n\tfi\n# Make sure we get new versions of files brought in by automake.\n\t(cd build-aux && rm -f ar-lib compile depcomp install-sh mdate-sh missing test-driver)\n\t$(AUTOMAKE) --gnits --add-missing --copy srclib/Makefile\n\ngnulib-imported-files : force\n\tif test -n \"$$GNULIB_TOOL\"; then \\\n\t  for file in config.guess config.sub; do \\\n\t    $$GNULIB_TOOL --copy-file build-aux/$$file || exit $$?; \\\n\t    chmod a+x build-aux/$$file || exit $$?; \\\n\t  done; \\\n\tfi\n\n\nCONFIGURES = configure\nCONFIGURES_IN = configure.ac\n\naclocal.m4 : $(CONFIGURES_IN) srclib/Makefile.gnulib $(wildcard m4/*.m4) $(wildcard srcm4/*.m4)\n\t$(ACLOCAL) -I m4 -I srcm4 --output=$@ && touch $@\n\nconfigures : $(CONFIGURES)\n\nAUTOCONF_FILES = aclocal.m4 $(wildcard m4/*.m4) $(wildcard srcm4/*.m4)\n\nconfigure : configure.ac $(AUTOCONF_FILES)\n\t$(AUTOCONF)\n\ncheck-configures : $(CONFIGURES)\n\tset -e; for f in $(CONFIGURES); do bash -x -n $$f; done\n\nconfig.h.in : configure.ac $(AUTOCONF_FILES)\n\t$(AUTOHEADER)\n\ttouch $@\n\n\ninclude/iconv.h.build.in : include/iconv.h.in include/export.h\n\tsed -e 's/extern \\([^\"]\\)/extern LIBICONV_DLL_EXPORTED \\1/' \\\n\t    -e '/_LIBICONV_VERSION/r include/export.h' \\\n\t  < $< > $@\n\n\nlib/aliases.h lib/canonical.h lib/canonical_local.h : lib/encodings.def lib/encodings_local.def lib/genaliases.c\n\t$(CC) $(CFLAGS) lib/genaliases.c -o genaliases\n\t./genaliases lib/aliases.gperf canonical.sh canonical_local.sh\n\t$(RM) genaliases\n\t$(GPERF) -m 10 lib/aliases.gperf > tmp.h\n\t$(CP) tmp.h lib/aliases.h\n\tsh canonical.sh > lib/canonical.h\n\tsh canonical_local.sh > lib/canonical_local.h\n\t$(RM) tmp.h canonical.sh canonical_local.sh\n\nlib/aliases_sysaix.h lib/canonical_sysaix.h lib/canonical_local_sysaix.h : lib/encodings.def lib/encodings_local.def lib/genaliases.c\n\t$(CC) $(CFLAGS) -DUSE_AIX_ALIASES lib/genaliases.c -o genaliases\n\t./genaliases lib/aliases_sysaix.gperf canonical.sh canonical_local.sh\n\t$(RM) genaliases\n\t$(GPERF) -m 10 lib/aliases_sysaix.gperf > tmp.h\n\t$(CP) tmp.h lib/aliases_sysaix.h\n\tsh canonical.sh > lib/canonical_sysaix.h\n\tsh canonical_local.sh > lib/canonical_local_sysaix.h\n\t$(RM) tmp.h canonical.sh canonical_local.sh\n\nlib/aliases_syshpux.h lib/canonical_syshpux.h lib/canonical_local_syshpux.h : lib/encodings.def lib/encodings_local.def lib/genaliases.c\n\t$(CC) $(CFLAGS) -DUSE_HPUX_ALIASES lib/genaliases.c -o genaliases\n\t./genaliases lib/aliases_syshpux.gperf canonical.sh canonical_local.sh\n\t$(RM) genaliases\n\t$(GPERF) -m 10 lib/aliases_syshpux.gperf > tmp.h\n\t$(CP) tmp.h lib/aliases_syshpux.h\n\tsh canonical.sh > lib/canonical_syshpux.h\n\tsh canonical_local.sh > lib/canonical_local_syshpux.h\n\t$(RM) tmp.h canonical.sh canonical_local.sh\n\nlib/aliases_sysosf1.h lib/canonical_sysosf1.h lib/canonical_local_sysosf1.h : lib/encodings.def lib/encodings_local.def lib/genaliases.c\n\t$(CC) $(CFLAGS) -DUSE_OSF1_ALIASES lib/genaliases.c -o genaliases\n\t./genaliases lib/aliases_sysosf1.gperf canonical.sh canonical_local.sh\n\t$(RM) genaliases\n\t$(GPERF) -m 10 lib/aliases_sysosf1.gperf > tmp.h\n\t$(CP) tmp.h lib/aliases_sysosf1.h\n\tsh canonical.sh > lib/canonical_sysosf1.h\n\tsh canonical_local.sh > lib/canonical_local_sysosf1.h\n\t$(RM) tmp.h canonical.sh canonical_local.sh\n\nlib/aliases_syssolaris.h lib/canonical_syssolaris.h lib/canonical_local_syssolaris.h : lib/encodings.def lib/encodings_local.def lib/genaliases.c\n\t$(CC) $(CFLAGS) -DUSE_SOLARIS_ALIASES lib/genaliases.c -o genaliases\n\t./genaliases lib/aliases_syssolaris.gperf canonical.sh canonical_local.sh\n\t$(RM) genaliases\n\t$(GPERF) -m 10 lib/aliases_syssolaris.gperf > tmp.h\n\t$(CP) tmp.h lib/aliases_syssolaris.h\n\tsh canonical.sh > lib/canonical_syssolaris.h\n\tsh canonical_local.sh > lib/canonical_local_syssolaris.h\n\t$(RM) tmp.h canonical.sh canonical_local.sh\n\nlib/aliases_aix.h lib/canonical_aix.h : lib/encodings_aix.def lib/genaliases2.c\n\t$(CC) $(CFLAGS) -DUSE_AIX lib/genaliases2.c -o genaliases\n\t./genaliases aix lib/aliases_aix.h lib/canonical_aix.h\n\t$(RM) genaliases\n\nlib/aliases_aix_sysaix.h lib/canonical_aix_sysaix.h : lib/encodings_aix.def lib/genaliases2.c\n\t$(CC) $(CFLAGS) -DUSE_AIX -DUSE_AIX_ALIASES lib/genaliases2.c -o genaliases\n\t./genaliases aix lib/aliases_aix_sysaix.h lib/canonical_aix_sysaix.h\n\t$(RM) genaliases\n\nlib/aliases_osf1.h lib/canonical_osf1.h : lib/encodings_osf1.def lib/genaliases2.c\n\t$(CC) $(CFLAGS) -DUSE_OSF1 lib/genaliases2.c -o genaliases\n\t./genaliases osf1 lib/aliases_osf1.h lib/canonical_osf1.h\n\t$(RM) genaliases\n\nlib/aliases_osf1_sysosf1.h lib/canonical_osf1_sysosf1.h : lib/encodings_osf1.def lib/genaliases2.c\n\t$(CC) $(CFLAGS) -DUSE_OSF1 -DUSE_OSF1_ALIASES lib/genaliases2.c -o genaliases\n\t./genaliases osf1 lib/aliases_osf1_sysosf1.h lib/canonical_osf1_sysosf1.h\n\t$(RM) genaliases\n\nlib/aliases_dos.h lib/canonical_dos.h : lib/encodings_dos.def lib/genaliases2.c\n\t$(CC) $(CFLAGS) -DUSE_DOS lib/genaliases2.c -o genaliases\n\t./genaliases dos lib/aliases_dos.h lib/canonical_dos.h\n\t$(RM) genaliases\n\nlib/aliases_extra.h lib/canonical_extra.h : lib/encodings_extra.def lib/genaliases2.c\n\t$(CC) $(CFLAGS) -DUSE_EXTRA lib/genaliases2.c -o genaliases\n\t./genaliases extra lib/aliases_extra.h lib/canonical_extra.h\n\t$(RM) genaliases\n\n\nlib/flags.h : lib/encodings.def lib/encodings_aix.def lib/encodings_osf1.def lib/encodings_dos.def lib/encodings_extra.def lib/converters.h lib/genflags.c\n\t$(CC) $(CFLAGS) lib/genflags.c -o genflags\n\t./genflags > lib/flags.h\n\t$(RM) genflags\n\n\nlib/translit.h : lib/translit.def lib/gentranslit.c\n\t$(CC) $(CFLAGS) lib/gentranslit.c -o gentranslit\n\t./gentranslit < lib/translit.def > lib/translit.h\n\t$(RM) gentranslit\n\n\nman/%.html : man/%\n\t$(MAN2HTML) $< > $@-t\n\tgrep -v '<!-- CreationDate' < $@-t > $@\n\t$(RM) $@-t\n\n\ngnulib-clean : force\n# Move srclib/Makefile.gnulib away, so that the target 'srclib/Makefile.gnulib' will actually do something.\n\tif test -f srclib/Makefile.gnulib; then \\\n\t  mv srclib/Makefile.gnulib srclib/Makefile.gnulib~; \\\n\tfi\n# No need to remove the stale files. gnulib-tool does this itself, thanks to srcm4/gnulib-comp.m4.\n#\tfind srclib '(' -name '*.h' -o -name '*.c' -o -name '*.valgrind' ')' -exec rm -f '{}' ';'\n#\trm -rf srcm4\n\ntotally-clean : force\n\trm -f srclib/Makefile.in\n\trm -f aclocal.m4 $(CONFIGURES) config.h.in include/iconv.h.build.in\n\trm -f lib/aliases.gperf lib/aliases_sysaix.gperf lib/aliases_syshpux.gperf lib/aliases_sysosf1.gperf lib/aliases_syssolaris.gperf\n\trm -f lib/aliases.h lib/aliases_sysaix.h lib/aliases_syshpux.h lib/aliases_sysosf1.h lib/aliases_syssolaris.h\n\trm -f lib/aliases_aix.h lib/aliases_aix_sysaix.h\n\trm -f lib/aliases_osf1.h lib/aliases_osf1_sysosf1.h\n\trm -f lib/aliases_dos.h\n\trm -f lib/aliases_extra.h\n\trm -f lib/canonical.h lib/canonical_sysaix.h lib/canonical_syshpux.h lib/canonical_sysosf1.h lib/canonical_syssolaris.h\n\trm -f lib/canonical_aix.h lib/canonical_aix_sysaix.h\n\trm -f lib/canonical_osf1.h lib/canonical_osf1_sysosf1.h\n\trm -f lib/canonical_dos.h\n\trm -f lib/canonical_extra.h\n\trm -f lib/canonical_local.h lib/canonical_local_sysaix.h lib/canonical_local_syshpux.h lib/canonical_local_sysosf1.h lib/canonical_local_syssolaris.h\n\trm -f lib/flags.h\n\trm -f lib/translit.h\n\trm -f man/iconv.1.html man/iconv.3.html man/iconv_close.3.html man/iconv_open.3.html man/iconvctl.3.html man/iconv_open_into.3.html\n\tcd libcharset && $(MAKE) -f Makefile.devel totally-clean\n\tcd preload && $(MAKE) -f Makefile.devel totally-clean\n\n\nforce :\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/Makefile.in",
    "content": "# Makefile for libiconv\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = @srcdir@\n\n# Directories used by \"make install\":\nprefix = @prefix@\nlocal_prefix = /usr/local\nexec_prefix = @exec_prefix@\ndatarootdir = @datarootdir@\ndatadir = @datadir@\nlibdir = @libdir@\nincludedir = @includedir@\nmandir = @mandir@\n\n# Programs used by \"make\":\nRM = rm -f\n@SET_MAKE@\n\n# Programs used by \"make install\":\nINSTALL = @INSTALL@\nINSTALL_PROGRAM = @INSTALL_PROGRAM@\nINSTALL_DATA = @INSTALL_DATA@\nmkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\nall : lib/localcharset.h force\n\tcd lib && $(MAKE) all\n\tcd preload && $(MAKE) all\n\tcd srclib && $(MAKE) all\n\tcd src && $(MAKE) all\n\tcd po && $(MAKE) all\n\tcd man && $(MAKE) all\n\tif test -d tests; then cd tests && $(MAKE) all; fi\n\nlib/localcharset.h :\n\tbuilddir=\"`pwd`\"; cd libcharset && $(MAKE) all && $(MAKE) install-lib libdir=\"$$builddir/lib\" includedir=\"$$builddir/lib\"\n\n# Installs the library and include files only. Typically called with only\n# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.\ninstall-lib : all force\n\tcd lib && $(MAKE) install-lib libdir='$(libdir)' includedir='$(includedir)'\n\tif [ ! -d $(includedir) ] ; then $(mkinstalldirs) $(includedir) ; fi\n\t$(INSTALL_DATA) include/iconv.h.inst $(includedir)/iconv.h\n\ninstall : lib/localcharset.h force\n\tcd libcharset && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd lib && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd preload && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd srclib && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd src && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tif [ ! -d $(DESTDIR)$(includedir) ] ; then $(mkinstalldirs) $(DESTDIR)$(includedir) ; fi\n\t$(INSTALL_DATA) include/iconv.h.inst $(DESTDIR)$(includedir)/iconv.h\n\tcd po && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)'\n\tcd man && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)' mandir='$(mandir)'\n\ninstall-strip : lib/localcharset.h force\n\tcd libcharset && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd lib && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd preload && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd srclib && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd src && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tif [ ! -d $(DESTDIR)$(includedir) ] ; then $(mkinstalldirs) $(DESTDIR)$(includedir) ; fi\n\t$(INSTALL_DATA) include/iconv.h.inst $(DESTDIR)$(includedir)/iconv.h\n\tcd po && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)'\n\tcd man && $(MAKE) install-strip prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)' mandir='$(mandir)'\n\ninstalldirs : force\n\tcd libcharset && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd lib && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd preload && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd srclib && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd src && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tif [ ! -d $(DESTDIR)$(includedir) ] ; then $(mkinstalldirs) $(DESTDIR)$(includedir) ; fi\n\tcd po && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)'\n\tcd man && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)' mandir='$(mandir)'\n\nuninstall : force\n\tcd libcharset && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd lib && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd preload && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd srclib && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\tcd src && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\t$(RM) $(DESTDIR)$(includedir)/iconv.h\n\tcd po && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)'\n\tcd man && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' datarootdir='$(datarootdir)' datadir='$(datadir)' mandir='$(mandir)'\n\ncheck : all force\n\tcd libcharset && $(MAKE) check\n\tcd lib && $(MAKE) check\n\tcd preload && $(MAKE) check\n\tcd srclib && $(MAKE) check\n\tcd src && $(MAKE) check\n\tcd po && $(MAKE) check\n\tcd man && $(MAKE) check\n\tif test -d tests; then cd tests && $(MAKE) check; fi\n\nmostlyclean : force\n\tcd libcharset && $(MAKE) mostlyclean\n\t$(RM) lib/charset.alias lib/libcharset.* lib/localcharset.h\n\tcd lib && $(MAKE) mostlyclean\n\tcd preload && $(MAKE) mostlyclean\n\tcd srclib && $(MAKE) mostlyclean\n\tcd src && $(MAKE) mostlyclean\n\tcd po && $(MAKE) mostlyclean\n\tcd man && $(MAKE) mostlyclean\n\tif test -d tests; then cd tests && $(MAKE) mostlyclean; fi\n\trm -rf bin\n\nclean : force\n\tcd libcharset && $(MAKE) clean\n\t$(RM) lib/charset.alias lib/libcharset.* lib/localcharset.h\n\tcd lib && $(MAKE) clean\n\tcd preload && $(MAKE) clean\n\tcd srclib && $(MAKE) clean\n\tcd src && $(MAKE) clean\n\tcd po && $(MAKE) clean\n\tcd man && $(MAKE) clean\n\tif test -d tests; then cd tests && $(MAKE) clean; fi\n\trm -rf bin\n\ndistclean : force\n\tcd libcharset && if test -f Makefile; then $(MAKE) distclean; fi\n\t$(RM) lib/charset.alias lib/libcharset.* lib/localcharset.h\n\tcd lib && if test -f Makefile; then $(MAKE) distclean; fi\n\tcd preload && if test -f Makefile; then $(MAKE) distclean; fi\n\tcd srclib && if test -f Makefile; then $(MAKE) distclean; fi\n\tcd src && if test -f Makefile; then $(MAKE) distclean; fi\n\tcd po && if test -f Makefile; then $(MAKE) distclean; fi\n\tcd man && if test -f Makefile; then $(MAKE) distclean; fi\n\tif test -d tests; then cd tests && if test -f Makefile; then $(MAKE) distclean; fi; fi\n\t$(RM) config.status config.log config.cache Makefile libtool\n\t$(RM) config.h stamp-h1 lib/stamp-h2\n\t$(RM) include/iconv.h include/iconv.h.inst\n\trm -rf bin\n\nmaintainer-clean : force\n\tcd libcharset && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\t$(RM) lib/charset.alias lib/libcharset.* lib/localcharset.h\n\tcd lib && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tcd preload && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tcd srclib && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tcd src && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tcd po && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tcd man && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\tif test -d tests; then cd tests && if test -f Makefile; then $(MAKE) maintainer-clean; fi; fi\n\t$(RM) config.status config.log config.cache Makefile libtool\n\t$(RM) config.h stamp-h1 lib/stamp-h2\n\t$(RM) include/iconv.h include/iconv.h.inst\n\trm -rf bin\n\n\n# List of source files.\nSOURCE_FILES = \\\n  README README.windows DEPENDENCIES HACKING AUTHORS NEWS DESIGN NOTES THANKS \\\n  ChangeLog Makefile.devel configure.ac Makefile.in \\\n  include/export.h include/iconv.h.in \\\n  gnulib-local/lib/alloca.in.h \\\n  gnulib-local/lib/error.h.diff \\\n  gnulib-local/lib/progname.h.diff \\\n  gnulib-local/lib/xalloc.h \\\n  gnulib-local/lib/xmalloc.c \\\n  gnulib-local/lib/xstrdup.c \\\n  gnulib-local/m4/alloca.m4 \\\n  gnulib-local/modules/libiconv-misc \\\n  gnulib-local/modules/mbstate \\\n  gnulib-local/modules/xalloc \\\n  m4/cp.m4 \\\n  m4/eilseq.m4 \\\n  m4/endian.m4 \\\n  m4/general.m4 \\\n  m4/ln.m4 \\\n  m4/proto.m4 \\\n  windows/iconv.rc windows/libiconv.rc windows/windres-options \\\n  woe32dll/export.h woe32dll/iconv-exports.c \\\n  os2/iconv.def \\\n  README.djgpp \\\n  djgpp/config.bat djgpp/config.sed djgpp/config.site djgpp/edtest.bat \\\n  djgpp/fnchange.in djgpp/fnchange.lst djgpp/Makefile.maint djgpp/makefile.sed \\\n  djgpp/README djgpp/README.in djgpp/sources.sed \\\n  djgpp/stateful-check.sed djgpp/stateless-check.sed djgpp/translit-check.sed \\\n  extras/ChangeLog extras/iconv_string.h extras/iconv_string.c \\\n  tools/Makefile \\\n  tools/8bit_tab_to_h.c tools/cjk_tab_to_h.c tools/cjk_variants.c \\\n  tools/CP50221-0208-EXT.TXT tools/CP50221-0212-EXT.TXT tools/JISX0213.TXT\n# List of distributed files imported from other packages.\nLIBTOOL_IMPORTED_FILES = \\\n  build-aux/ltmain.sh \\\n  m4/libtool.m4 \\\n  m4/lt~obsolete.m4 \\\n  m4/ltoptions.m4 \\\n  m4/ltsugar.m4 \\\n  m4/ltversion.m4\nAUTOMAKE_OLD_IMPORTED_FILES = \\\n  build-aux/mkinstalldirs\nAUTOMAKE_IMPORTED_FILES = \\\n  build-aux/ar-lib \\\n  build-aux/compile \\\n  build-aux/install-sh \\\n  build-aux/missing\nGNULIB_IMPORTED_FILES = \\\n  doc/relocatable.texi \\\n  build-aux/config.guess \\\n  build-aux/config.libpath \\\n  build-aux/config.rpath \\\n  build-aux/config.sub \\\n  build-aux/install-reloc \\\n  build-aux/reloc-ldflags \\\n  build-aux/snippet/arg-nonnull.h \\\n  build-aux/snippet/c++defs.h \\\n  build-aux/snippet/_Noreturn.h \\\n  build-aux/snippet/warn-on-use.h\nIMPORTED_FILES = \\\n  COPYING COPYING.LIB \\\n  ABOUT-NLS INSTALL.generic \\\n  $(LIBTOOL_IMPORTED_FILES) $(AUTOMAKE_OLD_IMPORTED_FILES) $(AUTOMAKE_IMPORTED_FILES) $(GNULIB_IMPORTED_FILES)\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES = \\\n  aclocal.m4 configure config.h.in \\\n  include/iconv.h.build.in\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  destdir=`echo '$(distdir)'/$$file | sed -e 's|//*[^/]*$$||'`; \\\n\t  test -d \"$$destdir\" || $(mkinstalldirs) \"$$destdir\" >/dev/null; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\tfor sdir in srcm4; do \\\n\t  mkdir -p '$(distdir)'/$$sdir; \\\n\t  for file in '$(srcdir)'/$$sdir/*.m4; do \\\n\t    cp -p \"$$file\" '$(distdir)'/$$sdir/ || exit 1; \\\n\t  done; \\\n\tdone\n\ttest -d '$(distdir)'/libcharset || mkdir '$(distdir)'/libcharset; cd libcharset && $(MAKE) distdir distdir='$(distdir)'/libcharset\n\ttest -d '$(distdir)'/lib || mkdir '$(distdir)'/lib; cd lib && $(MAKE) distdir distdir='$(distdir)'/lib\n\ttest -d '$(distdir)'/preload || mkdir '$(distdir)'/preload; cd preload && $(MAKE) distdir distdir='$(distdir)'/preload\n\ttest -d '$(distdir)'/srclib || mkdir '$(distdir)'/srclib; cd srclib && $(MAKE) distdir distdir='$(distdir)'/srclib\n\ttest -d '$(distdir)'/src || mkdir '$(distdir)'/src; cd src && $(MAKE) distdir distdir='$(distdir)'/src\n\ttest -d '$(distdir)'/tests || mkdir '$(distdir)'/tests; cd tests && $(MAKE) distdir distdir='$(distdir)'/tests\n\ttest -d '$(distdir)'/po || mkdir '$(distdir)'/po; cd po && $(MAKE) distdir distdir='$(distdir)'/po\n\ttest -d '$(distdir)'/man || mkdir '$(distdir)'/man; cd man && $(MAKE) distdir distdir='$(distdir)'/man\n\n\n# Creating a distribution tarball.\nPACKAGE = @PACKAGE@\nVERSION = @VERSION@\nTAR = tar\nGZIP = gzip\n\ndist : force\n\ttmpdistdir=$(PACKAGE)-$(VERSION); \\\n\tabstmpdistdir=`pwd`/$$tmpdistdir; \\\n\trm -rf $$tmpdistdir $$tmpdistdir.tar $$tmpdistdir.tar.gz \\\n\t  && mkdir $$tmpdistdir \\\n\t  && $(MAKE) distdir distdir=\"$$abstmpdistdir\" \\\n\t  && $(TAR) chof $$tmpdistdir.tar --owner=root --group=root $$tmpdistdir \\\n\t  && $(GZIP) -9 $$tmpdistdir.tar \\\n\t  && rm -rf $$tmpdistdir\n\n\nforce :\n\n# Work around an automake-1.8 bug.\nam--refresh:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/NEWS",
    "content": "New in 1.15:\n* The UTF-8 converter now rejects surrogates and out-of-range code points.\n* Added ISO-2022-JP-MS converter.\n* Updated the CP1255 converter to map one more character.\n* The functions now support strings longer than 2 GB.\n\nNew in 1.14:\n* The 'iconv' program now produces its output as soon as it can. It no longer\n  unnecessarily waits for more input.\n* Updated the GB18030 converter to map 25 characters to code points that have\n  been to Unicode since 2000, rather than to code points in the Private Use\n  Area.\n* Updated the BIG5-HKSCS converter. The old BIG5-HKSCS converter is renamed to\n  BIG5-HKSCS:2004. A new converter BIG5-HKSCS:2008 is added. BIG5-HKSCS is now\n  an alias for BIG5-HKSCS:2008.\n* Fixed a bug in the conversion to wchar_t.\n* Fixed a small bug in the CP1258 converter.\n\nNew in 1.13:\n* The library and the iconv program now understand platform dependent aliases,\n  for better compatibility with the platform's own iconv_open function.\n  Examples: \"646\" on Solaris, \"iso88591\" on HP-UX, \"IBM-1252\" on AIX.\n* For stateful encodings, when the input ends with a shift sequence followed\n  by invalid input, the iconv function now increments the input pointer past\n  the shift sequence before returning (size_t)(-1) with errno = EILSEQ. This\n  is also like GNU libc's iconv() behaves.\n* The library exports a new function iconv_open_into() that stores the\n  conversion descriptor in pre-allocated memory, rather than allocating fresh\n  memory for it.\n* Added CP1131 converter.\n\nNew in 1.12:\n* The iconv program is now licensed under the GPL version 3, instead of the\n  GPL version 2. The libiconv library continues to be licensed under LGPL.\n* Added RK1048 converter.\n* On AIX, an existing system libiconv no longer causes setlocale() to fail.\n* Upgraded EUC-KR, JOHAB to include the Korean postal code sign.\n\nNew in 1.11:\n* The iconv program has new options --unicode-subst, --byte-subst,\n  --widechar-subst that allow to specify substitutions for characters that\n  cannot be converted.\n* The iconv program now understands long options:\n    long option    equivalent to\n    --from-code    -f\n    --to-code      -t\n    --list         -l\n    --silent       -s\n* The CP936 converter is now different from the GBK converter: it has changed\n  to include the Euro sign and private area characters. CP936 is no longer an\n  alias of GBK.\n* Updated GB18030 converter to include all private area characters.\n* Updated CP950 converter to include the Euro sign and private area characters.\n* Updated CP949 converter to include private area characters.\n* Updated the BIG5-HKSCS converter. The old BIG5-HKSCS converter is renamed to\n  BIG5-HKSCS:1999 and updated to Unicode 4. New converters BIG5-HKSCS:2001 and\n  BIG5-HKSCS:2004 are added. BIG5-HKSCS is now an alias for BIG5-HKSCS:2004.\n* Added a few irreversible mappings to the CP932 converter.\n* Tidy up the list of symbols exported from libiconv (assumes gcc >= 4.0).\n\nNew in 1.10:\n* Added ISO-8859-11 converter.\n* Updated the ISO-8859-7 converter.\n* Added ATARIST converter, available through --enable-extra-encodings.\n* Added BIG5-2003 converter (experimental), available through\n  --enable-extra-encodings.\n* Updated EUC-TW converter to include the Euro sign.\n* The preloadable library has been renamed from libiconv_plug.so to\n  preloadable_libiconv.so.\n* Portability to mingw.\n\nNew in 1.9:\n* Many more transliterations.\n* New configuration option --enable-relocatable.  See the INSTALL.generic file\n  for details.\n\nNew in 1.8:\n* The iconv program has new options -l, -c, -s.\n* The iconv program is internationalized.\n* Added C99 converter.\n* Added KOI8-T converter.\n* New configuration option --enable-extra-encodings that enables a bunch of\n  additional encodings; see the README for details.\n* Updated the ISO-8859-16 converter.\n* Upgraded BIG5-HKSCS, EUC-TW, ISO-2022-CN, ISO-2022-CN-EXT converters to\n  Unicode 3.2.\n* Upgraded EUC-KR, CP949, JOHAB converters to include the Euro sign.\n* Changed the ARMSCII-8 converter.\n* Extended the EUC-JP encoder so that YEN SIGN characters don't cause failures\n  in Shift_JIS to EUC-JP conversion.\n* The JAVA converter now handles characters outside the Unicode BMP correctly.\n* Fixed a bug in the CP1255, CP1258, TCVN decoders: The base characters of\n  combining characters could be dropped at the end of the conversion buffer.\n* Fixed a bug in the transliteration that could lead to excessive memory\n  allocations in libintl when transliteration was needed.\n* Portability to BSD/OS and SCO 3.2.5.\n\nNew in 1.7:\n* Added UTF-32, UTF-32BE, UTF-32LE converters.\n* Changed CP1255, CP1258 and TCVN converters to handle combining characters.\n* Changed EUC-JP, SHIFT_JIS, CP932, ISO-2022-JP, ISO-2022-JP-2, ISO-2022-JP-1\n  converters to use fullwidth Yen sign instead of halfwidth Yen sign, and\n  fullwidth tilde instead of halfwidth tilde.\n* Upgraded EUC-TW, ISO-2022-CN, ISO-2022-CN-EXT converters to Unicode 3.1.\n* Changed the GB18030 converter to not reject unassigned and private-use\n  Unicode characters.\n* Fixed a bug in the byte order mark treatment of the UCS-4 decoder.\n* The manual pages are now distributed also in HTML format.\n\nNew in 1.6:\n* The iconv program's -f and -t options are now optional.\n* Many more transliterations.\n* Added CP862 converter.\n* Changed the GB18030 converter.\n* Portability to DOS with DJGPP.\n\nNew in 1.5:\n* Added an iconv(1) program.\n* New locale dependent encodings \"char\", \"wchar_t\".\n* Transliteration is now off by default. Use a //TRANSLIT suffix to enable it.\n* The JOHAB encoding is documented again.\n* Changed a few mappings in the CP950 converter.\n\nNew in 1.4:\n* Added GB18030, BIG5HKSCS converters.\n* Portability to OS/2 with emx+gcc.\n\nNew in 1.3:\n* Added UCS-2BE, UCS-2LE, UCS-4BE, UCS-4LE converters.\n* Fixed the definition of EILSEQ on SunOS4.\n* Fixed a build problem on OSF/1.\n* Support for building as a shared library on Woe32.\n\nNew in 1.2:\n* Added UTF-16BE and UTF-16LE converters.\n* Changed the UTF-16 encoder.\n* Fixed the treatment of tab characters in the UTF-7 converter.\n* Fixed an internal error when output buffer was not large enough.\n\nNew in 1.1:\n* Added ISO-8859-16 converter.\n* Added CP932 converter, a variant of SHIFT_JIS.\n* Added CP949 converter, a variant of EUC-KR.\n* Improved the ISO-2022-CN-EXT converter: It now covers the ISO-IR-165 range.\n* Updated the ISO-8859-8 conversion table.\n* The JOHAB encoding is deprecated and not documented any more.\n* Fixed two build problems: 1. \"make -n check\" failed. 2. When libiconv was\n  already installed, \"make\" failed.\n\nNew in 1.0:\n* Added transliteration facilities.\n* Added a test suite.\n* Fixed the iconv(3) manual page and function: the return value was not\n  described correctly.\n* Fixed a bug in the CP1258 decoder: invalid bytes now yield EILSEQ instead of\n  U+FFFD.\n* Fixed a bug in the Georgian-PS encoder: accept U+00E6.\n* Fixed a bug in the EUC-JP encoder: reject 0x8E5C and 0x8E7E.\n* Fixed a bug in the KSC5601 and JOHAB converters: they recognized some Hangul\n  characters at some invalid code positions.\n* Fixed a bug in the EUC-TW decoder; it was severely broken.\n* Fixed a bug in the CP950 converter: it recognized a dubious BIG5 range.\n\nNew in 0.3:\n* Reduced the size of the tables needed for the JOHAB converter.\n* Portability to Woe32.\n\nNew in 0.2:\n* Added KOI8-RU, CP850, CP866, CP874, CP950, ISO-2022-CN-EXT, GBK and\n  ISO-2022-JP-1 converters.\n* Added MACINTOSH as an alias for MAC-ROMAN.\n* Added ASMO-708 as an alias for ISO-8859-6.\n* Added ELOT_928 as an alias for ISO-8859-7.\n* Improved the EUC-TW converter: Treat CNS 11643 plane 3.\n* Improved the ISO-2022-KR and EUC-KR converters: Hangul characters are\n  decomposed into Jamo when needed.\n* Improved the CP932 converter.\n* Updated the CP1133, MULELAO-1 and ARMSCII-8 mappings.\n* The EUC-JP and SHIFT_JIS converters now cover the user-defined range.\n* Fixed a possible buffer overrun in the JOHAB converter.\n* Fixed a bug in the UTF-7, ISO-2022-*, HZ decoders: a shift sequence a the\n  end of the input no longer gives an error.\n* The HZ encoder now always terminates its output in the ASCII state.\n* Use a perfect hash table for looking up the aliases.\n\nNew in 0.1:\n* Portability to Linux/glibc-2.0.x, Linux/libc5, OSF/1, FreeBSD.\n* Fixed a bug in the EUC-JP decoder. Extended the ISO-2022-JP-2 converter.\n* Made TIS-620 mapping consistent with glibc-2.1.\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/NOTES",
    "content": "Q: Why does libiconv support encoding XXX? Why does libiconv not support\n   encoding ZZZ?\n\nA: libiconv, as an internationalization library, supports those character\n   sets and encodings which are in wide-spread use in at least one territory\n   of the world.\n\n   Hint1: On http://www.w3c.org/International/O-charset-lang.html you find a\n   page \"Languages, countries, and the charsets typically used for them\".\n   From this table, we can conclude that the following are in active use:\n\n     ISO-8859-1, CP1252   Afrikaans, Albanian, Basque, Catalan, Danish, Dutch,\n                          English, Faroese, Finnish, French, Galician, German,\n                          Icelandic, Irish, Italian, Norwegian, Portuguese,\n                          Scottish, Spanish, Swedish\n     ISO-8859-2           Croatian, Czech, Hungarian, Polish, Romanian, Slovak,\n                          Slovenian\n     ISO-8859-3           Esperanto, Maltese\n     ISO-8859-5           Bulgarian, Byelorussian, Macedonian, Russian,\n                          Serbian, Ukrainian\n     ISO-8859-6           Arabic\n     ISO-8859-7           Greek\n     ISO-8859-8           Hebrew\n     ISO-8859-9, CP1254   Turkish\n     ISO-8859-10          Inuit, Lapp\n     ISO-8859-13          Latvian, Lithuanian\n     ISO-8859-15          Estonian\n     KOI8-R               Russian\n     SHIFT_JIS            Japanese\n     ISO-2022-JP          Japanese\n     EUC-JP               Japanese\n\n   Ordered by frequency on the web (1997):\n     ISO-8859-1, CP1252   96%\n     SHIFT_JIS             1.6%\n     ISO-2022-JP           1.2%\n     EUC-JP                0.4%\n     CP1250                0.3%\n     CP1251                0.2%\n     CP850                 0.1%\n     MACINTOSH             0.1%\n     ISO-8859-5            0.1%\n     ISO-8859-2            0.0%\n\n   Hint2: The character sets mentioned in the XFree86 4.0 locale.alias file.\n\n     ISO-8859-1           Afrikaans, Basque, Breton, Catalan, Danish, Dutch,\n                          English, Estonian, Faroese, Finnish, French,\n                          Galician, German, Greenlandic, Icelandic,\n                          Indonesian, Irish, Italian, Lithuanian, Norwegian,\n                          Occitan, Portuguese, Scottish, Spanish, Swedish,\n                          Walloon, Welsh\n     ISO-8859-2           Albanian, Croatian, Czech, Hungarian, Polish,\n                          Romanian, Serbian, Slovak, Slovenian\n     ISO-8859-3           Esperanto\n     ISO-8859-4           Estonian, Latvian, Lithuanian\n     ISO-8859-5           Bulgarian, Byelorussian, Macedonian, Russian,\n                          Serbian, Ukrainian\n     ISO-8859-6           Arabic\n     ISO-8859-7           Greek\n     ISO-8859-8           Hebrew\n     ISO-8859-9           Turkish\n     ISO-8859-14          Breton, Irish, Scottish, Welsh\n     ISO-8859-15          Basque, Breton, Catalan, Danish, Dutch, Estonian,\n                          Faroese, Finnish, French, Galician, German,\n                          Greenlandic, Icelandic, Irish, Italian, Lithuanian,\n                          Norwegian, Occitan, Portuguese, Scottish, Spanish,\n                          Swedish, Walloon, Welsh\n     KOI8-R               Russian\n     KOI8-U               Russian, Ukrainian\n     EUC-JP (alias eucJP)      Japanese\n     ISO-2022-JP (alias JIS7)  Japanese\n     SHIFT_JIS (alias SJIS)    Japanese\n     U90                       Japanese\n     S90                       Japanese\n     EUC-CN (alias eucCN)      Chinese\n     EUC-TW (alias eucTW)      Chinese\n     BIG5                      Chinese\n     EUC-KR (alias eucKR)      Korean\n     ARMSCII-8                 Armenian\n     GEORGIAN-ACADEMY          Georgian\n     GEORGIAN-PS               Georgian\n     TIS-620 (alias TACTIS)    Thai\n     MULELAO-1                 Laothian\n     IBM-CP1133                Laothian\n     VISCII                    Vietnamese\n     TCVN                      Vietnamese\n     NUNACOM-8                 Inuktitut\n\n   Hint3: The character sets supported by Netscape Communicator 4.\n\n     Where is this documented? For the complete picture, I had to use\n     \"strings netscape\" and then a lot of guesswork. For a quick take,\n     look at the \"View - Character set\" menu of Netscape Communicator 4.6:\n\n     ISO-8859-{1,2,5,7,9,15}\n     WINDOWS-{1250,1251,1253}\n     KOI8-R               Cyrillic\n     CP866                Cyrillic\n     Autodetect           Japanese  (EUC-JP, ISO-2022-JP, ISO-2022-JP-2, SJIS)\n     EUC-JP               Japanese\n     SHIFT_JIS            Japanese\n     GB2312               Chinese\n     BIG5                 Chinese\n     EUC-TW               Chinese\n     Autodetect           Korean    (EUC-KR, ISO-2022-KR, but not JOHAB)\n\n     UTF-8\n     UTF-7\n\n   Hint4: The character sets supported by Microsoft Internet Explorer 4.\n\n     ISO-8859-{1,2,3,4,5,6,7,8,9}\n     WINDOWS-{1250,1251,1252,1253,1254,1255,1256,1257}\n     KOI8-R               Cyrillic\n     KOI8-RU              Ukrainian\n     ASMO-708             Arabic\n     EUC-JP               Japanese\n     ISO-2022-JP          Japanese\n     SHIFT_JIS            Japanese\n     GB2312               Chinese\n     HZ-GB-2312           Chinese\n     BIG5                 Chinese\n     EUC-KR               Korean\n     ISO-2022-KR          Korean\n     WINDOWS-874          Thai\n     WINDOWS-1258         Vietnamese\n\n     UTF-8\n     UTF-7\n     UNICODE             actually UNICODE-LITTLE\n     UNICODEFEFF         actually UNICODE-BIG\n\n     and various DOS character sets: DOS-720, DOS-862, IBM852, CP866.\n\n   We take the union of all these four sets. The result is:\n\n   European and Semitic languages\n     * ASCII.\n       We implement this because it is occasionally useful to know or to\n       check whether some text is entirely ASCII (i.e. if the conversion\n       ISO-8859-x -> UTF-8 is trivial).\n     * ISO-8859-{1,2,3,4,5,6,7,8,9,10}\n       We implement this because they are widely used. Except ISO-8859-4\n       which appears to have been superseded by ISO-8859-13 in the baltic\n       countries. But it's an ISO standard anyway.\n     * ISO-8859-13\n       We implement this because it's a standard in Lithuania and Latvia.\n     * ISO-8859-14\n       We implement this because it's an ISO standard.\n     * ISO-8859-15\n       We implement this because it's increasingly used in Europe, because\n       of the Euro symbol.\n     * ISO-8859-16\n       We implement this because it's an ISO standard.\n     * KOI8-R, KOI8-U\n       We implement this because it appears to be the predominant encoding\n       on Unix in Russia and Ukraine, respectively.\n     * KOI8-RU\n       We implement this because MSIE4 supports it.\n     * KOI8-T\n       We implement this because it is the locale encoding in glibc's Tajik\n       locale.\n     * PT154\n       We implement this because it is the locale encoding in glibc's Kazakh\n       locale.\n     * RK1048\n       We implement this because it's a standard in Kazakhstan.\n     * CP{1250,1251,1252,1253,1254,1255,1256,1257}\n       We implement these because they are the predominant Windows encodings\n       in Europe.\n     * CP850\n       We implement this because it is mentioned as occurring in the web\n       in the aforementioned statistics.\n     * CP862\n       We implement this because Ron Aaron says it is sometimes used in web\n       pages and emails.\n     * CP866\n       We implement this because Netscape Communicator does.\n     * CP1131\n       We implement this because it is the locale encoding of a Belorusian\n       locale in FreeBSD and MacOS X.\n     * Mac{Roman,CentralEurope,Croatian,Romania,Cyrillic,Greek,Turkish} and\n       Mac{Hebrew,Arabic}\n       We implement these because the Sun JDK does, and because Mac users\n       don't deserve to be punished.\n     * Macintosh\n       We implement this because it is mentioned as occurring in the web\n       in the aforementioned statistics.\n   Japanese\n     * EUC-JP, SHIFT_JIS, ISO-2022-JP\n       We implement these because they are widely used. EUC-JP and SHIFT_JIS\n       are more used for files, whereas ISO-2022-JP is recommended for email.\n     * CP932\n       We implement this because it is the Microsoft variant of SHIFT_JIS,\n       used on Windows.\n     * ISO-2022-JP-2\n       We implement this because it's the common way to represent mails which\n       make use of JIS X 0212 characters.\n     * ISO-2022-JP-1\n       We implement this because it's in the RFCs, but I don't think it is\n       really used.\n     * ISO-2022-JP-MS\n       We implement this because Microsoft Outlook Express / Microsoft MimeOLE\n       sends emails in this encoding.\n     * U90, S90\n       We DON'T implement this because I have no informations about what it\n       is or who uses it.\n   Simplified Chinese\n     * EUC-CN = GB2312\n       We implement this because it is the widely used representation\n       of simplified Chinese.\n     * GBK\n       We implement this because it appears to be used on Solaris and Windows.\n     * GB18030\n       We implement this because it is an official requirement in the\n       People's Republic of China.\n     * ISO-2022-CN\n       We implement this because it is in the RFCs, but I have no idea\n       whether it is really used.\n     * ISO-2022-CN-EXT\n       We implement this because it's in the RFCs, but I don't think it is\n       really used.\n     * HZ = HZ-GB-2312\n       We implement this because the RFCs recommend it for Usenet postings,\n       and because MSIE4 supports it.\n   Traditional Chinese\n     * EUC-TW\n       We implement it because it appears to be used on Unix.\n     * BIG5\n       We implement it because it is the de-facto standard for traditional\n       Chinese.\n     * CP950\n       We implement this because it is the Microsoft variant of BIG5, used\n       on Windows.\n     * BIG5+\n       We DON'T implement this because it doesn't appear to be in wide use.\n       Only the CWEX fonts use this encoding. Furthermore, the conversion\n       tables in the big5p package are not coherent: If you convert directly,\n       you get different results than when you convert via GBK.\n     * BIG5-HKSCS\n       We implement it because it is the de-facto standard for traditional\n       Chinese in Hongkong.\n   Korean\n     * EUC-KR\n       We implement these because they appear to be the widely used\n       representations for Korean.\n     * CP949\n       We implement this because it is the Microsoft variant of EUC-KR, used\n       on Windows.\n     * ISO-2022-KR\n       We implement it because it is in the RFCs and because MSIE4 supports\n       it, but I have no idea whether it's really used.\n     * JOHAB\n       We implement this because it is apparently used on Windows as a locale\n       encoding (codepage 1361).\n     * ISO-646-KR\n       We DON'T implement this because although an old ASCII variant, its\n       glyph for 0x7E is not clear: RFC 1345 and unicode.org's JOHAB.TXT\n       say it's a tilde, but Ken Lunde's \"CJKV information processing\" says\n       it's an overline. And it is not ISO-IR registered.\n   Armenian\n     * ARMSCII-8\n       We implement it because XFree86 supports it.\n   Georgian\n     * Georgian-Academy, Georgian-PS\n       We implement these because they appear to be both used for Georgian;\n       Xfree86 supports them.\n   Thai\n     * ISO-8859-11, TIS-620\n       We implement these because it seems to be standard for Thai.\n     * CP874\n       We implement this because MSIE4 supports it.\n     * MacThai\n       We implement this because the Sun JDK does, and because Mac users\n       don't deserve to be punished.\n   Laotian\n     * MuleLao-1, CP1133\n       We implement these because XFree86 supports them. I have no idea which\n       one is used more widely.\n   Vietnamese\n     * VISCII, TCVN\n       We implement these because XFree86 supports them.\n     * CP1258\n       We implement this because MSIE4 supports it.\n   Other languages\n     * NUNACOM-8 (Inuktitut)\n       We DON'T implement this because it isn't part of Unicode yet, and\n       therefore doesn't convert to anything except itself.\n   Platform specifics\n     * HP-ROMAN8, NEXTSTEP\n       We implement these because they were the native character set on HPs\n       and NeXTs for a long time, and libiconv is intended to be usable on\n       these old machines.\n   Full Unicode\n     * UTF-8, UCS-2, UCS-4\n       We implement these. Obviously.\n     * UCS-2BE, UCS-2LE, UCS-4BE, UCS-4LE\n       We implement these because they are the preferred internal\n       representation of strings in Unicode aware applications. These are\n       non-ambiguous names, known to glibc. (glibc doesn't have\n       UCS-2-INTERNAL and UCS-4-INTERNAL.)\n     * UTF-16, UTF-16BE, UTF-16LE\n       We implement these, because UTF-16 is still the favourite encoding of\n       the president of the Unicode Consortium (for political reasons), and\n       because they appear in RFC 2781.\n     * UTF-32, UTF-32BE, UTF-32LE\n       We implement these because they are part of Unicode 3.1.\n     * UTF-7\n       We implement this because it is essential functionality for mail\n       applications.\n     * C99\n       We implement it because it's used for C and C++ programs and because\n       it's a nice encoding for debugging.\n     * JAVA\n       We implement it because it's used for Java programs and because it's\n       a nice encoding for debugging.\n     * UNICODE (big endian), UNICODEFEFF (little endian)\n       We DON'T implement these because they are stupid and not standardized.\n   Full Unicode, in terms of 'uint16_t' or 'uint32_t'\n   (with machine dependent endianness and alignment)\n     * UCS-2-INTERNAL, UCS-4-INTERNAL\n       We implement these because they are the preferred internal\n       representation of strings in Unicode aware applications.\n\nQ: Support encodings mentioned in RFC 1345 ?\nA: No, they are not in use any more. Supporting ISO-646 variants is pointless\n   since ISO-8859-* have been adopted.\n\nQ: Support EBCDIC ?\nA: No!\n\nQ: How do I add a new character set?\nA: 1. Explain the \"why\" in this file, above.\n   2. You need to have a conversion table from/to Unicode. Transform it into\n   the format used by the mapping tables found on ftp.unicode.org: each line\n   contains the character code, in hex, with 0x prefix, then whitespace,\n   then the Unicode code point, in hex, 4 hex digits, with 0x prefix. '#'\n   counts as a comment delimiter until end of line.\n   Please also send your table to Mark Leisher <mleisher@crl.nmsu.edu> so he\n   can include it in his collection.\n   3. If it's an 8-bit character set, use the '8bit_tab_to_h' program in the\n   tools directory to generate the C code for the conversion. You may tweak\n   the resulting C code if you are not satisfied with its quality, but this\n   is rarely needed.\n   If it's a two-dimensional character set (with rows and columns), use the\n   'cjk_tab_to_h' program in the tools directory to generate the C code for\n   the conversion. You will need to modify the main() function to recognize\n   the new character set name, with the proper dimensions, but that shouldn't\n   be too hard. This yields the CCS. The CES you have to write by hand.\n   4. Store the resulting C code file in the lib directory. Add a #include\n   directive to converters.h, and add an entry to the encodings.def file.\n   5. Compile the package, and test your new encoding using a program like\n   iconv(1) or clisp(1).\n   6. Augment the testsuite: Add a line to tests/Makefile.in. For a stateless\n   encoding, create the complete table as a TXT file. For a stateful encoding,\n   provide a text snippet encoded using your new encoding and its UTF-8\n   equivalent.\n   7. Update the README and man/iconv_open.3, to mention the new encoding.\n   Add a note in the NEWS file.\n\nQ: What about bidirectional text? Should it be tagged or reversed when\n   converting from ISO-8859-8 or ISO-8859-6 to Unicode? Qt appears to do\n   this, see qt-2.0.1/src/tools/qrtlcodec.cpp.\nA: After reading RFC 1556: I don't think so. Support for ISO-8859-8-I and\n   ISO-8859-E remains to be implemented.\n   On the other hand, a page on www.w3c.org says that ISO-8859-8 in *email*\n   is visually encoded, ISO-8859-8 in *HTML* is logically encoded, i.e.\n   the same as ISO-8859-8-I. I'm confused.\n\nOther character sets not implemented:\n\"MNEMONIC\" = \"csMnemonic\"\n\"MNEM\" = \"csMnem\"\n\"ISO-10646-UCS-Basic\" = \"csUnicodeASCII\"\n\"ISO-10646-Unicode-Latin1\" = \"csUnicodeLatin1\" = \"ISO-10646\"\n\"ISO-10646-J-1\"\n\"UNICODE-1-1\" = \"csUnicode11\"\n\"csWindows31Latin5\"\n\nOther aliases not implemented (and not implemented in glibc-2.1 either):\n  From MSIE4:\n    ISO-8859-1: alias ISO8859-1\n    ISO-8859-2: alias ISO8859-2\n    KSC_5601: alias KS_C_5601\n    UTF-8: aliases UNICODE-1-1-UTF-8 UNICODE-2-0-UTF-8\n\n\nQ: How can I integrate libiconv into my package?\nA: Just copy the entire libiconv package into a subdirectory of your package.\n   At configuration time, call libiconv's configure script with the\n   appropriate --srcdir option and maybe --enable-static or --disable-shared.\n   Then \"cd libiconv && make && make install-lib libdir=... includedir=...\".\n   'install-lib' is a special (not GNU standardized) target which installs\n   only the include file - in $(includedir) - and the library - in $(libdir) -\n   and does not use other directory variables. After \"installing\" libiconv\n   in your package's build directory, building of your package can proceed.\n\nQ: Why is the testsuite so big?\nA: Because some of the tests are very comprehensive.\n   If you don't feel like using the testsuite, you can simply remove the\n   tests/ directory.\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/README",
    "content": "            GNU LIBICONV - character set conversion library\n\nThis library provides an iconv() implementation, for use on systems which\ndon't have one, or whose implementation cannot convert from/to Unicode.\n\nIt provides support for the encodings:\n\n    European languages\n        ASCII, ISO-8859-{1,2,3,4,5,7,9,10,13,14,15,16},\n        KOI8-R, KOI8-U, KOI8-RU,\n        CP{1250,1251,1252,1253,1254,1257}, CP{850,866,1131},\n        Mac{Roman,CentralEurope,Iceland,Croatian,Romania},\n        Mac{Cyrillic,Ukraine,Greek,Turkish},\n        Macintosh\n    Semitic languages\n        ISO-8859-{6,8}, CP{1255,1256}, CP862, Mac{Hebrew,Arabic}\n    Japanese\n        EUC-JP, SHIFT_JIS, CP932, ISO-2022-JP, ISO-2022-JP-2, ISO-2022-JP-1,\n        ISO-2022-JP-MS\n    Chinese\n        EUC-CN, HZ, GBK, CP936, GB18030, EUC-TW, BIG5, CP950, BIG5-HKSCS,\n        BIG5-HKSCS:2004, BIG5-HKSCS:2001, BIG5-HKSCS:1999, ISO-2022-CN,\n        ISO-2022-CN-EXT\n    Korean\n        EUC-KR, CP949, ISO-2022-KR, JOHAB\n    Armenian\n        ARMSCII-8\n    Georgian\n        Georgian-Academy, Georgian-PS\n    Tajik\n        KOI8-T\n    Kazakh\n        PT154, RK1048\n    Thai\n        ISO-8859-11, TIS-620, CP874, MacThai\n    Laotian\n        MuleLao-1, CP1133\n    Vietnamese\n        VISCII, TCVN, CP1258\n    Platform specifics\n        HP-ROMAN8, NEXTSTEP\n    Full Unicode\n        UTF-8\n        UCS-2, UCS-2BE, UCS-2LE\n        UCS-4, UCS-4BE, UCS-4LE\n        UTF-16, UTF-16BE, UTF-16LE\n        UTF-32, UTF-32BE, UTF-32LE\n        UTF-7\n        C99, JAVA\n    Full Unicode, in terms of 'uint16_t' or 'uint32_t'\n        (with machine dependent endianness and alignment)\n        UCS-2-INTERNAL, UCS-4-INTERNAL\n    Locale dependent, in terms of 'char' or 'wchar_t'\n        (with machine dependent endianness and alignment, and with OS and\n        locale dependent semantics)\n        char, wchar_t\n        The empty encoding name \"\" is equivalent to \"char\": it denotes the\n        locale dependent character encoding.\n\nWhen configured with the option --enable-extra-encodings, it also provides\nsupport for a few extra encodings:\n\n    European languages\n        CP{437,737,775,852,853,855,857,858,860,861,863,865,869,1125}\n    Semitic languages\n        CP864\n    Japanese\n        EUC-JISX0213, Shift_JISX0213, ISO-2022-JP-3\n    Chinese\n        BIG5-2003 (experimental)\n    Turkmen\n        TDS565\n    Platform specifics\n        ATARIST, RISCOS-LATIN1\n\nIt can convert from any of these encodings to any other, through Unicode\nconversion.\n\nIt has also some limited support for transliteration, i.e. when a character\ncannot be represented in the target character set, it can be approximated\nthrough one or several similarly looking characters. Transliteration is\nactivated when \"//TRANSLIT\" is appended to the target encoding name.\n\nlibiconv is for you if your application needs to support multiple character\nencodings, but that support lacks from your system.\n\n\nInstallation\n------------\n\nAs usual for GNU packages:\n\n    $ ./configure --prefix=/usr/local\n    $ make\n    $ make install\n\nAfter installing GNU libiconv for the first time, it is recommended to\nrecompile and reinstall GNU gettext, so that it can take advantage of\nlibiconv.\n\nOn systems other than GNU/Linux, the iconv program will be internationalized\nonly if GNU gettext has been built and installed before GNU libiconv. This\nmeans that the first time GNU libiconv is installed, we have a circular\ndependency between the GNU libiconv and GNU gettext packages, which can be\nresolved by building and installing either\n  - first libiconv, then gettext, then libiconv again,\nor (on systems supporting shared libraries, excluding AIX)\n  - first gettext, then libiconv, then gettext again.\nRecall that before building a package for the second time, you need to erase\nthe traces of the first build by running \"make distclean\".\n\nThis library can be built and installed in two variants:\n\n  - The library mode. This works on all systems, and uses a library\n    'libiconv.so' and a header file '<iconv.h>'. (Both are installed\n    through \"make install\".)\n\n    To use it, simply #include <iconv.h> and use the functions.\n\n    To use it in an autoconfiguring package:\n    - If you don't use automake, append m4/iconv.m4 to your aclocal.m4\n      file.\n    - If you do use automake, add m4/iconv.m4 to your m4 macro repository.\n    - Add to the link command line of libraries and executables that use\n      the functions the placeholder @LIBICONV@ (or, if using libtool for\n      the link, @LTLIBICONV@). If you use automake, the right place for\n      these additions are the *_LDADD variables.\n    Note that 'iconv.m4' is also part of the GNU gettext package, which\n    installs it in /usr/local/share/aclocal/iconv.m4.\n\n  - The libc plug/override mode. This works on GNU/Linux, Solaris and OSF/1\n    systems only. It is a way to get good iconv support without having\n    glibc-2.1.\n    It installs a library 'preloadable_libiconv.so'. This library can be used\n    with LD_PRELOAD, to override the iconv* functions present in the C library.\n\n    On GNU/Linux and Solaris:\n        $ export LD_PRELOAD=/usr/local/lib/preloadable_libiconv.so\n\n    On OSF/1:\n        $ export _RLD_LIST=/usr/local/lib/preloadable_libiconv.so:DEFAULT\n\n    A program's source need not be modified, the program need not even be\n    recompiled. Just set the LD_PRELOAD environment variable, that's it!\n\n\nCopyright\n---------\n\nThe libiconv and libcharset _libraries_ and their header files are under LGPL,\nsee file COPYING.LIB.\n\nThe iconv _program_ and the documentation are under GPL, see file COPYING.\n\n\nDownload\n--------\n\n    http://ftp.gnu.org/gnu/libiconv/libiconv-1.15.tar.gz\n\nHomepage\n--------\n\n    http://www.gnu.org/software/libiconv/\n\nBug reports to\n--------------\n\n    <bug-gnu-libiconv@gnu.org>\n\n\nBruno Haible <bruno@clisp.org>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/README.djgpp",
    "content": "Installation on DJGPP:\n\nSee the file djgpp/README.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/README.windows",
    "content": "Installation on Microsoft Windows:\n\nThere are three ways to create binaries of this package for Microsoft Windows:\n1) Native binaries, built using the mingw tool chain.\n2) Native binaries, built using the MS Visual C/C++ tool chain.\n3) Binaries for the Cygwin environment.\n\n===============================================================================\n1) Native binaries, built using the mingw tool chain.\n\n   I recommend to use the Cygwin environment as the development environment\n   and mingw only as the target (runtime, deployment) environment.\n   For this, you need to install\n     * Cygwin (from https://cygwin.com/),\n     * some packages available from the Cygwin package installer:\n         make\n     * the mingw cross-compilation tools and runtime package, available from\n       the Cygwin package installer (setup-x86_64.exe):\n       - for creating 32-bit binaries: packages\n           mingw64-i686-gcc-core,\n           mingw64-i686-headers,\n           mingw64-i686-runtime\n       - for creating 64-bit binaries: packages\n           mingw64-x86_64-gcc-core,\n           mingw64-x86_64-headers,\n           mingw64-x86_64-runtime\n\n   Building 32-bit binaries for mingw is achieved through the following\n   preparation, configure, and build commands:\n\n      PATH=/usr/local/mingw32/bin:$PATH\n      export PATH\n      ./configure --host=i686-w64-mingw32 --prefix=/usr/local/mingw32 \\\n            CC=i686-w64-mingw32-gcc \\\n            CPPFLAGS=\"-I/usr/local/mingw32/include -Wall\" \\\n            LDFLAGS=\"-L/usr/local/mingw32/lib\"\n      make\n      make check\n\n   Building 64-bit binaries for mingw is achieved through the following\n   preparation, configure, and build commands:\n\n      PATH=/usr/local/mingw64/bin:$PATH\n      export PATH\n      ./configure --host=x86_64-w64-mingw32 --prefix=/usr/local/mingw64 \\\n            CC=x86_64-w64-mingw32-gcc \\\n            CPPFLAGS=\"-I/usr/local/mingw64/include -Wall\" \\\n            LDFLAGS=\"-L/usr/local/mingw64/lib\"\n      make\n      make check\n\n   Installation:\n\n      make install\n\n===============================================================================\n2) Native binaries, built using the MS Visual C/C++ tool chain.\n\n   Note that binaries created with MSVC have a distribution constraint: They\n   depend on a closed-source library ('msvcr90.dll' for MSVC 9.0,\n   'vcruntime140.dll' for MSVC 14.0, and so on) which is not normally part of\n   a Windows installation.\n   You cannot distribute 'vcruntime*.dll' with the binaries - this would be a\n   violation of the GPL and of the Microsoft EULA.\n   You can distribute the binaries without including 'vcruntime*.dll'. Users\n   who don't have this library on their system will require to pull some files\n   (api-ms-win*.dll) through the Windows Update mechanism, see\n   https://support.microsoft.com/en-us/kb/2999226 .\n\n   This recipe requires MS Visual C/C++ 9.0 or newer.\n   You don't need the Visual Studio IDE, just the C/C++ tool chain.\n   As of 2016, you can install the MS Visual C/C++ 14.0 tool chain from\n   http://landinghub.visualstudio.com/visual-cpp-build-tools (it's the file\n   visualcppbuildtools_full.exe).\n\n   This recipe requires also a Cygwin environment (with 'bash', the common POSIX\n   commands, and 'make') as a build environment. Building with 'nmake' is not\n   supported.\n   For this, you need to install\n     * Cygwin (from https://cygwin.com/),\n     * some packages available from the Cygwin package installer:\n         make\n\n   You also need the scripts 'ar-lib' and 'compile' from\n     http://git.savannah.gnu.org/gitweb/?p=automake.git;a=blob_plain;f=lib/ar-lib;hb=HEAD\n     http://git.savannah.gnu.org/gitweb/?p=automake.git;a=blob_plain;f=lib/compile;hb=HEAD\n   respectively.\n   They may also be included in this package, in directory 'build-aux/'.\n   Save them; the instructions below assume that you stored them in $HOME/msvc/.\n   Make them executable:\n      chmod a+x ar-lib compile\n\n   Start a bash (from Cygwin).\n\n   Make sure that the MSVC tools (\"cl\" etc.) are found in PATH and the\n   environment variables INCLUDE and LIB are set appropriately.\n   In a typical MSVC 9.0 installation, it can be achieved by running\n     C:\\Program Files\\Microsoft Visual Studio 9.0\\Common7\\Tools\\vsvars32.bat\n   In a typical MSVC 14.0 installation on Windows 10, it can be achieved\n   - for creating 32-bit binaries: through the following bash commands:\n\n      # Set environment variables for using MSVC 14,\n      # for creating native 32-bit Windows executables.\n\n      # Windows C library headers and libraries.\n      WindowsCrtIncludeDir='C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.10240.0\\ucrt'\n      WindowsCrtLibDir='C:\\Program Files (x86)\\Windows Kits\\10\\Lib\\10.0.10240.0\\ucrt\\'\n      INCLUDE=\"${WindowsCrtIncludeDir};$INCLUDE\"\n      LIB=\"${WindowsCrtLibDir}x86;$LIB\"\n\n      # Windows API headers and libraries.\n      WindowsSdkIncludeDir='C:\\Program Files (x86)\\Windows Kits\\8.1\\Include\\'\n      WindowsSdkLibDir='C:\\Program Files (x86)\\Windows Kits\\8.1\\Lib\\winv6.3\\um\\'\n      INCLUDE=\"${WindowsSdkIncludeDir}um;${WindowsSdkIncludeDir}shared;$INCLUDE\"\n      LIB=\"${WindowsSdkLibDir}x86;$LIB\"\n\n      # Visual C++ tools, headers and libraries.\n      VSINSTALLDIR='C:\\Program Files (x86)\\Microsoft Visual Studio 14.0'\n      VCINSTALLDIR=\"${VSINSTALLDIR}\"'\\VC'\n      PATH=`cygpath -u \"${VCINSTALLDIR}\"`/bin:\"$PATH\"\n      INCLUDE=\"${VCINSTALLDIR}\"'\\include;'\"${INCLUDE}\"\n      LIB=\"${VCINSTALLDIR}\"'\\lib;'\"${LIB}\"\n\n      export INCLUDE LIB\n\n   - for creating 64-bit binaries: through the following bash commands:\n\n     # Set environment variables for using MSVC 14,\n     # for creating native 64-bit Windows executables.\n\n     # Windows C library headers and libraries.\n     WindowsCrtIncludeDir='C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.10240.0\\ucrt'\n     WindowsCrtLibDir='C:\\Program Files (x86)\\Windows Kits\\10\\Lib\\10.0.10240.0\\ucrt\\'\n     INCLUDE=\"${WindowsCrtIncludeDir};$INCLUDE\"\n     LIB=\"${WindowsCrtLibDir}x64;$LIB\"\n\n     # Windows API headers and libraries.\n     WindowsSdkIncludeDir='C:\\Program Files (x86)\\Windows Kits\\8.1\\Include\\'\n     WindowsSdkLibDir='C:\\Program Files (x86)\\Windows Kits\\8.1\\Lib\\winv6.3\\um\\'\n     INCLUDE=\"${WindowsSdkIncludeDir}um;${WindowsSdkIncludeDir}shared;$INCLUDE\"\n     LIB=\"${WindowsSdkLibDir}x64;$LIB\"\n\n     # Visual C++ tools, headers and libraries.\n     VSINSTALLDIR='C:\\Program Files (x86)\\Microsoft Visual Studio 14.0'\n     VCINSTALLDIR=\"${VSINSTALLDIR}\"'\\VC'\n     PATH=`cygpath -u \"${VCINSTALLDIR}\"`/bin/amd64:\"$PATH\"\n     INCLUDE=\"${VCINSTALLDIR}\"'\\include;'\"${INCLUDE}\"\n     LIB=\"${VCINSTALLDIR}\"'\\lib\\amd64;'\"${LIB}\"\n\n     export INCLUDE LIB\n\n   Building 32-bit binaries with MSVC is achieved through the following\n   preparation, configure, and build commands:\n\n      PATH=/usr/local/msvc32/bin:$PATH\n      export PATH\n\n      win32_target=_WIN32_WINNT_WINXP   # for MSVC 9.0\n      win32_target=_WIN32_WINNT_VISTA   # possibly for MSVC >= 10.0\n      win32_target=_WIN32_WINNT_WIN7    # possibly for MSVC >= 10.0\n      win32_target=_WIN32_WINNT_WIN8    # possibly for MSVC >= 10.0\n\n      ./configure --host=i686-w64-mingw32 --prefix=/usr/local/msvc32 \\\n            CC=\"$HOME/msvc/compile cl -nologo\" \\\n            CFLAGS=\"-MD\" \\\n            CXX=\"$HOME/msvc/compile cl -nologo\" \\\n            CXXFLAGS=\"-MD\" \\\n            CPPFLAGS=\"-D_WIN32_WINNT=$win32_target -I/usr/local/msvc32/include\" \\\n            LDFLAGS=\"-L/usr/local/msvc32/lib\" \\\n            LD=\"link\" \\\n            NM=\"dumpbin -symbols\" \\\n            STRIP=\":\" \\\n            AR=\"$HOME/msvc/ar-lib lib\" \\\n            RANLIB=\":\"\n      make\n      make check\n\n   Building 64-bit binaries with MSVC is achieved through the following\n   preparation, configure, and build commands:\n\n      PATH=/usr/local/msvc64/bin:$PATH\n      export PATH\n\n      win32_target=_WIN32_WINNT_WINXP   # for MSVC 9.0\n      win32_target=_WIN32_WINNT_VISTA   # possibly for MSVC >= 10.0\n      win32_target=_WIN32_WINNT_WIN7    # possibly for MSVC >= 10.0\n      win32_target=_WIN32_WINNT_WIN8    # possibly for MSVC >= 10.0\n\n      ./configure --host=x86_64-w64-mingw32 --prefix=/usr/local/msvc64 \\\n            CC=\"$HOME/msvc/compile cl -nologo\" \\\n            CFLAGS=\"-MD\" \\\n            CXX=\"$HOME/msvc/compile cl -nologo\" \\\n            CXXFLAGS=\"-MD\" \\\n            CPPFLAGS=\"-D_WIN32_WINNT=$win32_target -I/usr/local/msvc64/include\" \\\n            LDFLAGS=\"-L/usr/local/msvc64/lib\" \\\n            LD=\"link\" \\\n            NM=\"dumpbin -symbols\" \\\n            STRIP=\":\" \\\n            AR=\"$HOME/msvc/ar-lib lib\" \\\n            RANLIB=\":\"\n      make\n      make check\n\n   Installation:\n\n      make install\n\n===============================================================================\n3) Binaries for the Cygwin environment.\n\n   The generic instructions in the INSTALL file apply. But here are more\n   specific ones.\n\n   You need to install\n     * Cygwin (from https://cygwin.com/),\n     * some packages available from the Cygwin package installer:\n         make\n     * the Cygwin [cross-]compilation tools package, available from\n       the Cygwin package installer (setup-x86_64.exe):\n       - for creating 32-bit binaries: packages\n           cygwin32-gcc-core,\n           cygwin32\n       - for creating 64-bit binaries: packages\n           gcc-core\n\n   Building 32-bit binaries for Cygwin must be done in a directory *outside*\n   the Cygwin /home and /usr hierarchies. It is achieved through the following\n   preparation, configure, and build commands:\n\n      PATH=/usr/local/cygwin32/bin:/usr/i686-pc-cygwin/sys-root/usr/bin:$PATH\n      export PATH\n      ./configure --host=i686-pc-cygwin --prefix=/usr/local/cygwin32 \\\n            CC=i686-pc-cygwin-gcc \\\n            CPPFLAGS=\"-I/usr/local/cygwin32/include -Wall\" \\\n            LDFLAGS=\"-L/usr/local/cygwin32/lib\"\n      make\n      make check\n\n   Building 64-bit binaries for Cygwin is achieved through the following\n   preparation, configure, and build commands:\n\n      PATH=/usr/local/cygwin64/bin:$PATH\n      export PATH\n      ./configure --host=x86_64-pc-cygwin --prefix=/usr/local/cygwin64 \\\n            CC=x86_64-pc-cygwin-gcc \\\n            CPPFLAGS=\"-I/usr/local/cygwin64/include -Wall\" \\\n            LDFLAGS=\"-L/usr/local/cygwin64/lib\"\n      make\n      make check\n\n   Installation:\n\n      make install\n\n===============================================================================\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/THANKS",
    "content": "          Thanks to                               for\n\nEdmund Grimley Evans  <edmundo@rano.org>      bug reports\n\nTaro Muraoka  <koron@tka.att.ne.jp>           Woe32 DLL support\n\nAkira Hatakeyama  <akira@sra.co.jp>           OS/2 support\n\nJuan Manuel Guerrero  <st001906@hrz1.hrz.tu-darmstadt.de>\n                                              DOS/DJGPP support\n\nHironori Sakamoto  <hsaka@mth.biglobe.ne.jp>  advice on EUC-JP and JISX0213\n\nKen Lunde  <lunde@adobe.com>                  detailed information about GB18030\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/aclocal.m4",
    "content": "# generated automatically by aclocal 1.15 -*- Autoconf -*-\n\n# Copyright (C) 1996-2014 Free Software Foundation, Inc.\n\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n# even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n# PARTICULAR PURPOSE.\n\nm4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])\nm4_ifndef([AC_AUTOCONF_VERSION],\n  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl\nm4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,\n[m4_warning([this file was generated for autoconf 2.69.\nYou have another version of autoconf.  It may work, but is not guaranteed to.\nIf you have problems, you may need to regenerate the build system entirely.\nTo do so, use the procedure documented by the package, typically 'autoreconf'.])])\n\n# Copyright (C) 2002-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_AUTOMAKE_VERSION(VERSION)\n# ----------------------------\n# Automake X.Y traces this macro to ensure aclocal.m4 has been\n# generated from the m4 files accompanying Automake X.Y.\n# (This private macro should not be called outside this file.)\nAC_DEFUN([AM_AUTOMAKE_VERSION],\n[am__api_version='1.15'\ndnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to\ndnl require some minimum version.  Point them to the right macro.\nm4_if([$1], [1.15], [],\n      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl\n])\n\n# _AM_AUTOCONF_VERSION(VERSION)\n# -----------------------------\n# aclocal traces this macro to find the Autoconf version.\n# This is a private macro too.  Using m4_define simplifies\n# the logic in aclocal, which can simply ignore this definition.\nm4_define([_AM_AUTOCONF_VERSION], [])\n\n# AM_SET_CURRENT_AUTOMAKE_VERSION\n# -------------------------------\n# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.\n# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.\nAC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],\n[AM_AUTOMAKE_VERSION([1.15])dnl\nm4_ifndef([AC_AUTOCONF_VERSION],\n  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl\n_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])\n\n# Copyright (C) 2011-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_PROG_AR([ACT-IF-FAIL])\n# -------------------------\n# Try to determine the archiver interface, and trigger the ar-lib wrapper\n# if it is needed.  If the detection of archiver interface fails, run\n# ACT-IF-FAIL (default is to abort configure with a proper error message).\nAC_DEFUN([AM_PROG_AR],\n[AC_BEFORE([$0], [LT_INIT])dnl\nAC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl\nAC_REQUIRE([AM_AUX_DIR_EXPAND])dnl\nAC_REQUIRE_AUX_FILE([ar-lib])dnl\nAC_CHECK_TOOLS([AR], [ar lib \"link -lib\"], [false])\n: ${AR=ar}\n\nAC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface],\n  [AC_LANG_PUSH([C])\n   am_cv_ar_interface=ar\n   AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])],\n     [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD'\n      AC_TRY_EVAL([am_ar_try])\n      if test \"$ac_status\" -eq 0; then\n        am_cv_ar_interface=ar\n      else\n        am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD'\n        AC_TRY_EVAL([am_ar_try])\n        if test \"$ac_status\" -eq 0; then\n          am_cv_ar_interface=lib\n        else\n          am_cv_ar_interface=unknown\n        fi\n      fi\n      rm -f conftest.lib libconftest.a\n     ])\n   AC_LANG_POP([C])])\n\ncase $am_cv_ar_interface in\nar)\n  ;;\nlib)\n  # Microsoft lib, so override with the ar-lib wrapper script.\n  # FIXME: It is wrong to rewrite AR.\n  # But if we don't then we get into trouble of one sort or another.\n  # A longer-term fix would be to have automake use am__AR in this case,\n  # and then we could set am__AR=\"$am_aux_dir/ar-lib \\$(AR)\" or something\n  # similar.\n  AR=\"$am_aux_dir/ar-lib $AR\"\n  ;;\nunknown)\n  m4_default([$1],\n             [AC_MSG_ERROR([could not determine $AR interface])])\n  ;;\nesac\nAC_SUBST([AR])dnl\n])\n\n# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-\n\n# Copyright (C) 2001-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets\n# $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to\n# '$srcdir', '$srcdir/..', or '$srcdir/../..'.\n#\n# Of course, Automake must honor this variable whenever it calls a\n# tool from the auxiliary directory.  The problem is that $srcdir (and\n# therefore $ac_aux_dir as well) can be either absolute or relative,\n# depending on how configure is run.  This is pretty annoying, since\n# it makes $ac_aux_dir quite unusable in subdirectories: in the top\n# source directory, any form will work fine, but in subdirectories a\n# relative path needs to be adjusted first.\n#\n# $ac_aux_dir/missing\n#    fails when called from a subdirectory if $ac_aux_dir is relative\n# $top_srcdir/$ac_aux_dir/missing\n#    fails if $ac_aux_dir is absolute,\n#    fails when called from a subdirectory in a VPATH build with\n#          a relative $ac_aux_dir\n#\n# The reason of the latter failure is that $top_srcdir and $ac_aux_dir\n# are both prefixed by $srcdir.  In an in-source build this is usually\n# harmless because $srcdir is '.', but things will broke when you\n# start a VPATH build or use an absolute $srcdir.\n#\n# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,\n# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:\n#   am_aux_dir='\\$(top_srcdir)/'`expr \"$ac_aux_dir\" : \"$srcdir//*\\(.*\\)\"`\n# and then we would define $MISSING as\n#   MISSING=\"\\${SHELL} $am_aux_dir/missing\"\n# This will work as long as MISSING is not called from configure, because\n# unfortunately $(top_srcdir) has no meaning in configure.\n# However there are other variables, like CC, which are often used in\n# configure, and could therefore not use this \"fixed\" $ac_aux_dir.\n#\n# Another solution, used here, is to always expand $ac_aux_dir to an\n# absolute PATH.  The drawback is that using absolute paths prevent a\n# configured tree to be moved without reconfiguration.\n\nAC_DEFUN([AM_AUX_DIR_EXPAND],\n[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl\n# Expand $ac_aux_dir to an absolute path.\nam_aux_dir=`cd \"$ac_aux_dir\" && pwd`\n])\n\n# AM_CONDITIONAL                                            -*- Autoconf -*-\n\n# Copyright (C) 1997-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_CONDITIONAL(NAME, SHELL-CONDITION)\n# -------------------------------------\n# Define a conditional.\nAC_DEFUN([AM_CONDITIONAL],\n[AC_PREREQ([2.52])dnl\n m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],\n       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl\nAC_SUBST([$1_TRUE])dnl\nAC_SUBST([$1_FALSE])dnl\n_AM_SUBST_NOTMAKE([$1_TRUE])dnl\n_AM_SUBST_NOTMAKE([$1_FALSE])dnl\nm4_define([_AM_COND_VALUE_$1], [$2])dnl\nif $2; then\n  $1_TRUE=\n  $1_FALSE='#'\nelse\n  $1_TRUE='#'\n  $1_FALSE=\nfi\nAC_CONFIG_COMMANDS_PRE(\n[if test -z \"${$1_TRUE}\" && test -z \"${$1_FALSE}\"; then\n  AC_MSG_ERROR([[conditional \"$1\" was never defined.\nUsually this means the macro was only invoked conditionally.]])\nfi])])\n\n# Copyright (C) 1999-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n\n# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be\n# written in clear, in which case automake, when reading aclocal.m4,\n# will think it sees a *use*, and therefore will trigger all it's\n# C support machinery.  Also note that it means that autoscan, seeing\n# CC etc. in the Makefile, will ask for an AC_PROG_CC use...\n\n\n# _AM_DEPENDENCIES(NAME)\n# ----------------------\n# See how the compiler implements dependency checking.\n# NAME is \"CC\", \"CXX\", \"OBJC\", \"OBJCXX\", \"UPC\", or \"GJC\".\n# We try a few techniques and use that to set a single cache variable.\n#\n# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was\n# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular\n# dependency, and given that the user is not expected to run this macro,\n# just rely on AC_PROG_CC.\nAC_DEFUN([_AM_DEPENDENCIES],\n[AC_REQUIRE([AM_SET_DEPDIR])dnl\nAC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl\nAC_REQUIRE([AM_MAKE_INCLUDE])dnl\nAC_REQUIRE([AM_DEP_TRACK])dnl\n\nm4_if([$1], [CC],   [depcc=\"$CC\"   am_compiler_list=],\n      [$1], [CXX],  [depcc=\"$CXX\"  am_compiler_list=],\n      [$1], [OBJC], [depcc=\"$OBJC\" am_compiler_list='gcc3 gcc'],\n      [$1], [OBJCXX], [depcc=\"$OBJCXX\" am_compiler_list='gcc3 gcc'],\n      [$1], [UPC],  [depcc=\"$UPC\"  am_compiler_list=],\n      [$1], [GCJ],  [depcc=\"$GCJ\"  am_compiler_list='gcc3 gcc'],\n                    [depcc=\"$$1\"   am_compiler_list=])\n\nAC_CACHE_CHECK([dependency style of $depcc],\n               [am_cv_$1_dependencies_compiler_type],\n[if test -z \"$AMDEP_TRUE\" && test -f \"$am_depcomp\"; then\n  # We make a subdir and do the tests there.  Otherwise we can end up\n  # making bogus files that we don't know about and never remove.  For\n  # instance it was reported that on HP-UX the gcc test will end up\n  # making a dummy file named 'D' -- because '-MD' means \"put the output\n  # in D\".\n  rm -rf conftest.dir\n  mkdir conftest.dir\n  # Copy depcomp to subdir because otherwise we won't find it if we're\n  # using a relative directory.\n  cp \"$am_depcomp\" conftest.dir\n  cd conftest.dir\n  # We will build objects and dependencies in a subdirectory because\n  # it helps to detect inapplicable dependency modes.  For instance\n  # both Tru64's cc and ICC support -MD to output dependencies as a\n  # side effect of compilation, but ICC will put the dependencies in\n  # the current directory while Tru64 will put them in the object\n  # directory.\n  mkdir sub\n\n  am_cv_$1_dependencies_compiler_type=none\n  if test \"$am_compiler_list\" = \"\"; then\n     am_compiler_list=`sed -n ['s/^#*\\([a-zA-Z0-9]*\\))$/\\1/p'] < ./depcomp`\n  fi\n  am__universal=false\n  m4_case([$1], [CC],\n    [case \" $depcc \" in #(\n     *\\ -arch\\ *\\ -arch\\ *) am__universal=true ;;\n     esac],\n    [CXX],\n    [case \" $depcc \" in #(\n     *\\ -arch\\ *\\ -arch\\ *) am__universal=true ;;\n     esac])\n\n  for depmode in $am_compiler_list; do\n    # Setup a source with many dependencies, because some compilers\n    # like to wrap large dependency lists on column 80 (with \\), and\n    # we should not choose a depcomp mode which is confused by this.\n    #\n    # We need to recreate these files for each test, as the compiler may\n    # overwrite some of them when testing with obscure command lines.\n    # This happens at least with the AIX C compiler.\n    : > sub/conftest.c\n    for i in 1 2 3 4 5 6; do\n      echo '#include \"conftst'$i'.h\"' >> sub/conftest.c\n      # Using \": > sub/conftst$i.h\" creates only sub/conftst1.h with\n      # Solaris 10 /bin/sh.\n      echo '/* dummy */' > sub/conftst$i.h\n    done\n    echo \"${am__include} ${am__quote}sub/conftest.Po${am__quote}\" > confmf\n\n    # We check with '-c' and '-o' for the sake of the \"dashmstdout\"\n    # mode.  It turns out that the SunPro C++ compiler does not properly\n    # handle '-M -o', and we need to detect this.  Also, some Intel\n    # versions had trouble with output in subdirs.\n    am__obj=sub/conftest.${OBJEXT-o}\n    am__minus_obj=\"-o $am__obj\"\n    case $depmode in\n    gcc)\n      # This depmode causes a compiler race in universal mode.\n      test \"$am__universal\" = false || continue\n      ;;\n    nosideeffect)\n      # After this tag, mechanisms are not by side-effect, so they'll\n      # only be used when explicitly requested.\n      if test \"x$enable_dependency_tracking\" = xyes; then\n\tcontinue\n      else\n\tbreak\n      fi\n      ;;\n    msvc7 | msvc7msys | msvisualcpp | msvcmsys)\n      # This compiler won't grok '-c -o', but also, the minuso test has\n      # not run yet.  These depmodes are late enough in the game, and\n      # so weak that their functioning should not be impacted.\n      am__obj=conftest.${OBJEXT-o}\n      am__minus_obj=\n      ;;\n    none) break ;;\n    esac\n    if depmode=$depmode \\\n       source=sub/conftest.c object=$am__obj \\\n       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \\\n       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \\\n         >/dev/null 2>conftest.err &&\n       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&\n       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&\n       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&\n       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then\n      # icc doesn't choke on unknown options, it will just issue warnings\n      # or remarks (even with -Werror).  So we grep stderr for any message\n      # that says an option was ignored or not supported.\n      # When given -MP, icc 7.0 and 7.1 complain thusly:\n      #   icc: Command line warning: ignoring option '-M'; no argument required\n      # The diagnosis changed in icc 8.0:\n      #   icc: Command line remark: option '-MP' not supported\n      if (grep 'ignoring option' conftest.err ||\n          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else\n        am_cv_$1_dependencies_compiler_type=$depmode\n        break\n      fi\n    fi\n  done\n\n  cd ..\n  rm -rf conftest.dir\nelse\n  am_cv_$1_dependencies_compiler_type=none\nfi\n])\nAC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])\nAM_CONDITIONAL([am__fastdep$1], [\n  test \"x$enable_dependency_tracking\" != xno \\\n  && test \"$am_cv_$1_dependencies_compiler_type\" = gcc3])\n])\n\n\n# AM_SET_DEPDIR\n# -------------\n# Choose a directory name for dependency files.\n# This macro is AC_REQUIREd in _AM_DEPENDENCIES.\nAC_DEFUN([AM_SET_DEPDIR],\n[AC_REQUIRE([AM_SET_LEADING_DOT])dnl\nAC_SUBST([DEPDIR], [\"${am__leading_dot}deps\"])dnl\n])\n\n\n# AM_DEP_TRACK\n# ------------\nAC_DEFUN([AM_DEP_TRACK],\n[AC_ARG_ENABLE([dependency-tracking], [dnl\nAS_HELP_STRING(\n  [--enable-dependency-tracking],\n  [do not reject slow dependency extractors])\nAS_HELP_STRING(\n  [--disable-dependency-tracking],\n  [speeds up one-time build])])\nif test \"x$enable_dependency_tracking\" != xno; then\n  am_depcomp=\"$ac_aux_dir/depcomp\"\n  AMDEPBACKSLASH='\\'\n  am__nodep='_no'\nfi\nAM_CONDITIONAL([AMDEP], [test \"x$enable_dependency_tracking\" != xno])\nAC_SUBST([AMDEPBACKSLASH])dnl\n_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl\nAC_SUBST([am__nodep])dnl\n_AM_SUBST_NOTMAKE([am__nodep])dnl\n])\n\n# Generate code to set up dependency tracking.              -*- Autoconf -*-\n\n# Copyright (C) 1999-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n\n# _AM_OUTPUT_DEPENDENCY_COMMANDS\n# ------------------------------\nAC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],\n[{\n  # Older Autoconf quotes --file arguments for eval, but not when files\n  # are listed without --file.  Let's play safe and only enable the eval\n  # if we detect the quoting.\n  case $CONFIG_FILES in\n  *\\'*) eval set x \"$CONFIG_FILES\" ;;\n  *)   set x $CONFIG_FILES ;;\n  esac\n  shift\n  for mf\n  do\n    # Strip MF so we end up with the name of the file.\n    mf=`echo \"$mf\" | sed -e 's/:.*$//'`\n    # Check whether this is an Automake generated Makefile or not.\n    # We used to match only the files named 'Makefile.in', but\n    # some people rename them; so instead we look at the file content.\n    # Grep'ing the first line is not enough: some people post-process\n    # each Makefile.in and add a new line on top of each file to say so.\n    # Grep'ing the whole file is not good either: AIX grep has a line\n    # limit of 2048, but all sed's we know have understand at least 4000.\n    if sed -n 's,^#.*generated by automake.*,X,p' \"$mf\" | grep X >/dev/null 2>&1; then\n      dirpart=`AS_DIRNAME(\"$mf\")`\n    else\n      continue\n    fi\n    # Extract the definition of DEPDIR, am__include, and am__quote\n    # from the Makefile without running 'make'.\n    DEPDIR=`sed -n 's/^DEPDIR = //p' < \"$mf\"`\n    test -z \"$DEPDIR\" && continue\n    am__include=`sed -n 's/^am__include = //p' < \"$mf\"`\n    test -z \"$am__include\" && continue\n    am__quote=`sed -n 's/^am__quote = //p' < \"$mf\"`\n    # Find all dependency output files, they are included files with\n    # $(DEPDIR) in their names.  We invoke sed twice because it is the\n    # simplest approach to changing $(DEPDIR) to its actual value in the\n    # expansion.\n    for file in `sed -n \"\n      s/^$am__include $am__quote\\(.*(DEPDIR).*\\)$am__quote\"'$/\\1/p' <\"$mf\" | \\\n\t sed -e 's/\\$(DEPDIR)/'\"$DEPDIR\"'/g'`; do\n      # Make sure the directory exists.\n      test -f \"$dirpart/$file\" && continue\n      fdir=`AS_DIRNAME([\"$file\"])`\n      AS_MKDIR_P([$dirpart/$fdir])\n      # echo \"creating $dirpart/$file\"\n      echo '# dummy' > \"$dirpart/$file\"\n    done\n  done\n}\n])# _AM_OUTPUT_DEPENDENCY_COMMANDS\n\n\n# AM_OUTPUT_DEPENDENCY_COMMANDS\n# -----------------------------\n# This macro should only be invoked once -- use via AC_REQUIRE.\n#\n# This code is only required when automatic dependency tracking\n# is enabled.  FIXME.  This creates each '.P' file that we will\n# need in order to bootstrap the dependency handling code.\nAC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],\n[AC_CONFIG_COMMANDS([depfiles],\n     [test x\"$AMDEP_TRUE\" != x\"\" || _AM_OUTPUT_DEPENDENCY_COMMANDS],\n     [AMDEP_TRUE=\"$AMDEP_TRUE\" ac_aux_dir=\"$ac_aux_dir\"])\n])\n\n# Do all the work for Automake.                             -*- Autoconf -*-\n\n# Copyright (C) 1996-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# This macro actually does too much.  Some checks are only needed if\n# your package does certain things.  But this isn't really a big deal.\n\ndnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.\nm4_define([AC_PROG_CC],\nm4_defn([AC_PROG_CC])\n[_AM_PROG_CC_C_O\n])\n\n# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])\n# AM_INIT_AUTOMAKE([OPTIONS])\n# -----------------------------------------------\n# The call with PACKAGE and VERSION arguments is the old style\n# call (pre autoconf-2.50), which is being phased out.  PACKAGE\n# and VERSION should now be passed to AC_INIT and removed from\n# the call to AM_INIT_AUTOMAKE.\n# We support both call styles for the transition.  After\n# the next Automake release, Autoconf can make the AC_INIT\n# arguments mandatory, and then we can depend on a new Autoconf\n# release and drop the old call support.\nAC_DEFUN([AM_INIT_AUTOMAKE],\n[AC_PREREQ([2.65])dnl\ndnl Autoconf wants to disallow AM_ names.  We explicitly allow\ndnl the ones we care about.\nm4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl\nAC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl\nAC_REQUIRE([AC_PROG_INSTALL])dnl\nif test \"`cd $srcdir && pwd`\" != \"`pwd`\"; then\n  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output\n  # is not polluted with repeated \"-I.\"\n  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl\n  # test to see if srcdir already configured\n  if test -f $srcdir/config.status; then\n    AC_MSG_ERROR([source directory already configured; run \"make distclean\" there first])\n  fi\nfi\n\n# test whether we have cygpath\nif test -z \"$CYGPATH_W\"; then\n  if (cygpath --version) >/dev/null 2>/dev/null; then\n    CYGPATH_W='cygpath -w'\n  else\n    CYGPATH_W=echo\n  fi\nfi\nAC_SUBST([CYGPATH_W])\n\n# Define the identity of the package.\ndnl Distinguish between old-style and new-style calls.\nm4_ifval([$2],\n[AC_DIAGNOSE([obsolete],\n             [$0: two- and three-arguments forms are deprecated.])\nm4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl\n AC_SUBST([PACKAGE], [$1])dnl\n AC_SUBST([VERSION], [$2])],\n[_AM_SET_OPTIONS([$1])dnl\ndnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.\nm4_if(\n  m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),\n  [ok:ok],,\n  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl\n AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl\n AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl\n\n_AM_IF_OPTION([no-define],,\n[AC_DEFINE_UNQUOTED([PACKAGE], [\"$PACKAGE\"], [Name of package])\n AC_DEFINE_UNQUOTED([VERSION], [\"$VERSION\"], [Version number of package])])dnl\n\n# Some tools Automake needs.\nAC_REQUIRE([AM_SANITY_CHECK])dnl\nAC_REQUIRE([AC_ARG_PROGRAM])dnl\nAM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])\nAM_MISSING_PROG([AUTOCONF], [autoconf])\nAM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])\nAM_MISSING_PROG([AUTOHEADER], [autoheader])\nAM_MISSING_PROG([MAKEINFO], [makeinfo])\nAC_REQUIRE([AM_PROG_INSTALL_SH])dnl\nAC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl\nAC_REQUIRE([AC_PROG_MKDIR_P])dnl\n# For better backward compatibility.  To be removed once Automake 1.9.x\n# dies out for good.  For more background, see:\n# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>\n# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>\nAC_SUBST([mkdir_p], ['$(MKDIR_P)'])\n# We need awk for the \"check\" target (and possibly the TAP driver).  The\n# system \"awk\" is bad on some platforms.\nAC_REQUIRE([AC_PROG_AWK])dnl\nAC_REQUIRE([AC_PROG_MAKE_SET])dnl\nAC_REQUIRE([AM_SET_LEADING_DOT])dnl\n_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],\n\t      [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],\n\t\t\t     [_AM_PROG_TAR([v7])])])\n_AM_IF_OPTION([no-dependencies],,\n[AC_PROVIDE_IFELSE([AC_PROG_CC],\n\t\t  [_AM_DEPENDENCIES([CC])],\n\t\t  [m4_define([AC_PROG_CC],\n\t\t\t     m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl\nAC_PROVIDE_IFELSE([AC_PROG_CXX],\n\t\t  [_AM_DEPENDENCIES([CXX])],\n\t\t  [m4_define([AC_PROG_CXX],\n\t\t\t     m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl\nAC_PROVIDE_IFELSE([AC_PROG_OBJC],\n\t\t  [_AM_DEPENDENCIES([OBJC])],\n\t\t  [m4_define([AC_PROG_OBJC],\n\t\t\t     m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl\nAC_PROVIDE_IFELSE([AC_PROG_OBJCXX],\n\t\t  [_AM_DEPENDENCIES([OBJCXX])],\n\t\t  [m4_define([AC_PROG_OBJCXX],\n\t\t\t     m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl\n])\nAC_REQUIRE([AM_SILENT_RULES])dnl\ndnl The testsuite driver may need to know about EXEEXT, so add the\ndnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This\ndnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.\nAC_CONFIG_COMMANDS_PRE(dnl\n[m4_provide_if([_AM_COMPILER_EXEEXT],\n  [AM_CONDITIONAL([am__EXEEXT], [test -n \"$EXEEXT\"])])])dnl\n\n# POSIX will say in a future version that running \"rm -f\" with no argument\n# is OK; and we want to be able to make that assumption in our Makefile\n# recipes.  So use an aggressive probe to check that the usage we want is\n# actually supported \"in the wild\" to an acceptable degree.\n# See automake bug#10828.\n# To make any issue more visible, cause the running configure to be aborted\n# by default if the 'rm' program in use doesn't match our expectations; the\n# user can still override this though.\nif rm -f && rm -fr && rm -rf; then : OK; else\n  cat >&2 <<'END'\nOops!\n\nYour 'rm' program seems unable to run without file operands specified\non the command line, even when the '-f' option is present.  This is contrary\nto the behaviour of most rm programs out there, and not conforming with\nthe upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>\n\nPlease tell bug-automake@gnu.org about your system, including the value\nof your $PATH and any error possibly output before this message.  This\ncan help us improve future automake versions.\n\nEND\n  if test x\"$ACCEPT_INFERIOR_RM_PROGRAM\" = x\"yes\"; then\n    echo 'Configuration will proceed anyway, since you have set the' >&2\n    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to \"yes\"' >&2\n    echo >&2\n  else\n    cat >&2 <<'END'\nAborting the configuration process, to ensure you take notice of the issue.\n\nYou can download and install GNU coreutils to get an 'rm' implementation\nthat behaves properly: <http://www.gnu.org/software/coreutils/>.\n\nIf you want to complete the configuration process using your problematic\n'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM\nto \"yes\", and re-run configure.\n\nEND\n    AC_MSG_ERROR([Your 'rm' program is bad, sorry.])\n  fi\nfi\ndnl The trailing newline in this macro's definition is deliberate, for\ndnl backward compatibility and to allow trailing 'dnl'-style comments\ndnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.\n])\n\ndnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not\ndnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further\ndnl mangled by Autoconf and run in a shell conditional statement.\nm4_define([_AC_COMPILER_EXEEXT],\nm4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])\n\n# When config.status generates a header, we must update the stamp-h file.\n# This file resides in the same directory as the config header\n# that is generated.  The stamp files are numbered to have different names.\n\n# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the\n# loop where config.status creates the headers, so we can generate\n# our stamp files there.\nAC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],\n[# Compute $1's index in $config_headers.\n_am_arg=$1\n_am_stamp_count=1\nfor _am_header in $config_headers :; do\n  case $_am_header in\n    $_am_arg | $_am_arg:* )\n      break ;;\n    * )\n      _am_stamp_count=`expr $_am_stamp_count + 1` ;;\n  esac\ndone\necho \"timestamp for $_am_arg\" >`AS_DIRNAME([\"$_am_arg\"])`/stamp-h[]$_am_stamp_count])\n\n# Copyright (C) 2001-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_PROG_INSTALL_SH\n# ------------------\n# Define $install_sh.\nAC_DEFUN([AM_PROG_INSTALL_SH],\n[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl\nif test x\"${install_sh+set}\" != xset; then\n  case $am_aux_dir in\n  *\\ * | *\\\t*)\n    install_sh=\"\\${SHELL} '$am_aux_dir/install-sh'\" ;;\n  *)\n    install_sh=\"\\${SHELL} $am_aux_dir/install-sh\"\n  esac\nfi\nAC_SUBST([install_sh])])\n\n# Copyright (C) 2003-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# Check whether the underlying file-system supports filenames\n# with a leading dot.  For instance MS-DOS doesn't.\nAC_DEFUN([AM_SET_LEADING_DOT],\n[rm -rf .tst 2>/dev/null\nmkdir .tst 2>/dev/null\nif test -d .tst; then\n  am__leading_dot=.\nelse\n  am__leading_dot=_\nfi\nrmdir .tst 2>/dev/null\nAC_SUBST([am__leading_dot])])\n\n# Check to see how 'make' treats includes.\t            -*- Autoconf -*-\n\n# Copyright (C) 2001-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_MAKE_INCLUDE()\n# -----------------\n# Check to see how make treats includes.\nAC_DEFUN([AM_MAKE_INCLUDE],\n[am_make=${MAKE-make}\ncat > confinc << 'END'\nam__doit:\n\t@echo this is the am__doit target\n.PHONY: am__doit\nEND\n# If we don't find an include directive, just comment out the code.\nAC_MSG_CHECKING([for style of include used by $am_make])\nam__include=\"#\"\nam__quote=\n_am_result=none\n# First try GNU make style include.\necho \"include confinc\" > confmf\n# Ignore all kinds of additional output from 'make'.\ncase `$am_make -s -f confmf 2> /dev/null` in #(\n*the\\ am__doit\\ target*)\n  am__include=include\n  am__quote=\n  _am_result=GNU\n  ;;\nesac\n# Now try BSD make style include.\nif test \"$am__include\" = \"#\"; then\n   echo '.include \"confinc\"' > confmf\n   case `$am_make -s -f confmf 2> /dev/null` in #(\n   *the\\ am__doit\\ target*)\n     am__include=.include\n     am__quote=\"\\\"\"\n     _am_result=BSD\n     ;;\n   esac\nfi\nAC_SUBST([am__include])\nAC_SUBST([am__quote])\nAC_MSG_RESULT([$_am_result])\nrm -f confinc confmf\n])\n\n# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-\n\n# Copyright (C) 1997-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_MISSING_PROG(NAME, PROGRAM)\n# ------------------------------\nAC_DEFUN([AM_MISSING_PROG],\n[AC_REQUIRE([AM_MISSING_HAS_RUN])\n$1=${$1-\"${am_missing_run}$2\"}\nAC_SUBST($1)])\n\n# AM_MISSING_HAS_RUN\n# ------------------\n# Define MISSING if not defined so far and test if it is modern enough.\n# If it is, set am_missing_run to use it, otherwise, to nothing.\nAC_DEFUN([AM_MISSING_HAS_RUN],\n[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl\nAC_REQUIRE_AUX_FILE([missing])dnl\nif test x\"${MISSING+set}\" != xset; then\n  case $am_aux_dir in\n  *\\ * | *\\\t*)\n    MISSING=\"\\${SHELL} \\\"$am_aux_dir/missing\\\"\" ;;\n  *)\n    MISSING=\"\\${SHELL} $am_aux_dir/missing\" ;;\n  esac\nfi\n# Use eval to expand $SHELL\nif eval \"$MISSING --is-lightweight\"; then\n  am_missing_run=\"$MISSING \"\nelse\n  am_missing_run=\n  AC_MSG_WARN(['missing' script is too old or missing])\nfi\n])\n\n# Helper functions for option handling.                     -*- Autoconf -*-\n\n# Copyright (C) 2001-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# _AM_MANGLE_OPTION(NAME)\n# -----------------------\nAC_DEFUN([_AM_MANGLE_OPTION],\n[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])\n\n# _AM_SET_OPTION(NAME)\n# --------------------\n# Set option NAME.  Presently that only means defining a flag for this option.\nAC_DEFUN([_AM_SET_OPTION],\n[m4_define(_AM_MANGLE_OPTION([$1]), [1])])\n\n# _AM_SET_OPTIONS(OPTIONS)\n# ------------------------\n# OPTIONS is a space-separated list of Automake options.\nAC_DEFUN([_AM_SET_OPTIONS],\n[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])\n\n# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])\n# -------------------------------------------\n# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.\nAC_DEFUN([_AM_IF_OPTION],\n[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])\n\n# Copyright (C) 1999-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# _AM_PROG_CC_C_O\n# ---------------\n# Like AC_PROG_CC_C_O, but changed for automake.  We rewrite AC_PROG_CC\n# to automatically call this.\nAC_DEFUN([_AM_PROG_CC_C_O],\n[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl\nAC_REQUIRE_AUX_FILE([compile])dnl\nAC_LANG_PUSH([C])dnl\nAC_CACHE_CHECK(\n  [whether $CC understands -c and -o together],\n  [am_cv_prog_cc_c_o],\n  [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])\n  # Make sure it works both with $CC and with simple cc.\n  # Following AC_PROG_CC_C_O, we do the test twice because some\n  # compilers refuse to overwrite an existing .o file with -o,\n  # though they will create one.\n  am_cv_prog_cc_c_o=yes\n  for am_i in 1 2; do\n    if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \\\n         && test -f conftest2.$ac_objext; then\n      : OK\n    else\n      am_cv_prog_cc_c_o=no\n      break\n    fi\n  done\n  rm -f core conftest*\n  unset am_i])\nif test \"$am_cv_prog_cc_c_o\" != yes; then\n   # Losing compiler, so override with the script.\n   # FIXME: It is wrong to rewrite CC.\n   # But if we don't then we get into trouble of one sort or another.\n   # A longer-term fix would be to have automake use am__CC in this case,\n   # and then we could set am__CC=\"\\$(top_srcdir)/compile \\$(CC)\"\n   CC=\"$am_aux_dir/compile $CC\"\nfi\nAC_LANG_POP([C])])\n\n# For backward compatibility.\nAC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])\n\n# Copyright (C) 2001-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_RUN_LOG(COMMAND)\n# -------------------\n# Run COMMAND, save the exit status in ac_status, and log it.\n# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)\nAC_DEFUN([AM_RUN_LOG],\n[{ echo \"$as_me:$LINENO: $1\" >&AS_MESSAGE_LOG_FD\n   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD\n   ac_status=$?\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&AS_MESSAGE_LOG_FD\n   (exit $ac_status); }])\n\n# Check to make sure that the build environment is sane.    -*- Autoconf -*-\n\n# Copyright (C) 1996-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_SANITY_CHECK\n# ---------------\nAC_DEFUN([AM_SANITY_CHECK],\n[AC_MSG_CHECKING([whether build environment is sane])\n# Reject unsafe characters in $srcdir or the absolute working directory\n# name.  Accept space and tab only in the latter.\nam_lf='\n'\ncase `pwd` in\n  *[[\\\\\\\"\\#\\$\\&\\'\\`$am_lf]]*)\n    AC_MSG_ERROR([unsafe absolute working directory name]);;\nesac\ncase $srcdir in\n  *[[\\\\\\\"\\#\\$\\&\\'\\`$am_lf\\ \\\t]]*)\n    AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;\nesac\n\n# Do 'set' in a subshell so we don't clobber the current shell's\n# arguments.  Must try -L first in case configure is actually a\n# symlink; some systems play weird games with the mod time of symlinks\n# (eg FreeBSD returns the mod time of the symlink's containing\n# directory).\nif (\n   am_has_slept=no\n   for am_try in 1 2; do\n     echo \"timestamp, slept: $am_has_slept\" > conftest.file\n     set X `ls -Lt \"$srcdir/configure\" conftest.file 2> /dev/null`\n     if test \"$[*]\" = \"X\"; then\n\t# -L didn't work.\n\tset X `ls -t \"$srcdir/configure\" conftest.file`\n     fi\n     if test \"$[*]\" != \"X $srcdir/configure conftest.file\" \\\n\t&& test \"$[*]\" != \"X conftest.file $srcdir/configure\"; then\n\n\t# If neither matched, then we have a broken ls.  This can happen\n\t# if, for instance, CONFIG_SHELL is bash and it inherits a\n\t# broken ls alias from the environment.  This has actually\n\t# happened.  Such a system could not be considered \"sane\".\n\tAC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken\n  alias in your environment])\n     fi\n     if test \"$[2]\" = conftest.file || test $am_try -eq 2; then\n       break\n     fi\n     # Just in case.\n     sleep 1\n     am_has_slept=yes\n   done\n   test \"$[2]\" = conftest.file\n   )\nthen\n   # Ok.\n   :\nelse\n   AC_MSG_ERROR([newly created file is older than distributed files!\nCheck your system clock])\nfi\nAC_MSG_RESULT([yes])\n# If we didn't sleep, we still need to ensure time stamps of config.status and\n# generated files are strictly newer.\nam_sleep_pid=\nif grep 'slept: no' conftest.file >/dev/null 2>&1; then\n  ( sleep 1 ) &\n  am_sleep_pid=$!\nfi\nAC_CONFIG_COMMANDS_PRE(\n  [AC_MSG_CHECKING([that generated files are newer than configure])\n   if test -n \"$am_sleep_pid\"; then\n     # Hide warnings about reused PIDs.\n     wait $am_sleep_pid 2>/dev/null\n   fi\n   AC_MSG_RESULT([done])])\nrm -f conftest.file\n])\n\n# Copyright (C) 2009-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_SILENT_RULES([DEFAULT])\n# --------------------------\n# Enable less verbose build rules; with the default set to DEFAULT\n# (\"yes\" being less verbose, \"no\" or empty being verbose).\nAC_DEFUN([AM_SILENT_RULES],\n[AC_ARG_ENABLE([silent-rules], [dnl\nAS_HELP_STRING(\n  [--enable-silent-rules],\n  [less verbose build output (undo: \"make V=1\")])\nAS_HELP_STRING(\n  [--disable-silent-rules],\n  [verbose build output (undo: \"make V=0\")])dnl\n])\ncase $enable_silent_rules in @%:@ (((\n  yes) AM_DEFAULT_VERBOSITY=0;;\n   no) AM_DEFAULT_VERBOSITY=1;;\n    *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;\nesac\ndnl\ndnl A few 'make' implementations (e.g., NonStop OS and NextStep)\ndnl do not support nested variable expansions.\ndnl See automake bug#9928 and bug#10237.\nam_make=${MAKE-make}\nAC_CACHE_CHECK([whether $am_make supports nested variables],\n   [am_cv_make_support_nested_variables],\n   [if AS_ECHO([['TRUE=$(BAR$(V))\nBAR0=false\nBAR1=true\nV=1\nam__doit:\n\t@$(TRUE)\n.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then\n  am_cv_make_support_nested_variables=yes\nelse\n  am_cv_make_support_nested_variables=no\nfi])\nif test $am_cv_make_support_nested_variables = yes; then\n  dnl Using '$V' instead of '$(V)' breaks IRIX make.\n  AM_V='$(V)'\n  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'\nelse\n  AM_V=$AM_DEFAULT_VERBOSITY\n  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY\nfi\nAC_SUBST([AM_V])dnl\nAM_SUBST_NOTMAKE([AM_V])dnl\nAC_SUBST([AM_DEFAULT_V])dnl\nAM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl\nAC_SUBST([AM_DEFAULT_VERBOSITY])dnl\nAM_BACKSLASH='\\'\nAC_SUBST([AM_BACKSLASH])dnl\n_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl\n])\n\n# Copyright (C) 2001-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_PROG_INSTALL_STRIP\n# ---------------------\n# One issue with vendor 'install' (even GNU) is that you can't\n# specify the program used to strip binaries.  This is especially\n# annoying in cross-compiling environments, where the build's strip\n# is unlikely to handle the host's binaries.\n# Fortunately install-sh will honor a STRIPPROG variable, so we\n# always use install-sh in \"make install-strip\", and initialize\n# STRIPPROG with the value of the STRIP variable (set by the user).\nAC_DEFUN([AM_PROG_INSTALL_STRIP],\n[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl\n# Installed binaries are usually stripped using 'strip' when the user\n# run \"make install-strip\".  However 'strip' might not be the right\n# tool to use in cross-compilation environments, therefore Automake\n# will honor the 'STRIP' environment variable to overrule this program.\ndnl Don't test for $cross_compiling = yes, because it might be 'maybe'.\nif test \"$cross_compiling\" != no; then\n  AC_CHECK_TOOL([STRIP], [strip], :)\nfi\nINSTALL_STRIP_PROGRAM=\"\\$(install_sh) -c -s\"\nAC_SUBST([INSTALL_STRIP_PROGRAM])])\n\n# Copyright (C) 2006-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# _AM_SUBST_NOTMAKE(VARIABLE)\n# ---------------------------\n# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.\n# This macro is traced by Automake.\nAC_DEFUN([_AM_SUBST_NOTMAKE])\n\n# AM_SUBST_NOTMAKE(VARIABLE)\n# --------------------------\n# Public sister of _AM_SUBST_NOTMAKE.\nAC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])\n\n# Check how to create a tarball.                            -*- Autoconf -*-\n\n# Copyright (C) 2004-2014 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# _AM_PROG_TAR(FORMAT)\n# --------------------\n# Check how to create a tarball in format FORMAT.\n# FORMAT should be one of 'v7', 'ustar', or 'pax'.\n#\n# Substitute a variable $(am__tar) that is a command\n# writing to stdout a FORMAT-tarball containing the directory\n# $tardir.\n#     tardir=directory && $(am__tar) > result.tar\n#\n# Substitute a variable $(am__untar) that extract such\n# a tarball read from stdin.\n#     $(am__untar) < result.tar\n#\nAC_DEFUN([_AM_PROG_TAR],\n[# Always define AMTAR for backward compatibility.  Yes, it's still used\n# in the wild :-(  We should find a proper way to deprecate it ...\nAC_SUBST([AMTAR], ['$${TAR-tar}'])\n\n# We'll loop over all known methods to create a tar archive until one works.\n_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'\n\nm4_if([$1], [v7],\n  [am__tar='$${TAR-tar} chof - \"$$tardir\"' am__untar='$${TAR-tar} xf -'],\n\n  [m4_case([$1],\n    [ustar],\n     [# The POSIX 1988 'ustar' format is defined with fixed-size fields.\n      # There is notably a 21 bits limit for the UID and the GID.  In fact,\n      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343\n      # and bug#13588).\n      am_max_uid=2097151 # 2^21 - 1\n      am_max_gid=$am_max_uid\n      # The $UID and $GID variables are not portable, so we need to resort\n      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls\n      # below are definitely unexpected, so allow the users to see them\n      # (that is, avoid stderr redirection).\n      am_uid=`id -u || echo unknown`\n      am_gid=`id -g || echo unknown`\n      AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])\n      if test $am_uid -le $am_max_uid; then\n         AC_MSG_RESULT([yes])\n      else\n         AC_MSG_RESULT([no])\n         _am_tools=none\n      fi\n      AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])\n      if test $am_gid -le $am_max_gid; then\n         AC_MSG_RESULT([yes])\n      else\n        AC_MSG_RESULT([no])\n        _am_tools=none\n      fi],\n\n  [pax],\n    [],\n\n  [m4_fatal([Unknown tar format])])\n\n  AC_MSG_CHECKING([how to create a $1 tar archive])\n\n  # Go ahead even if we have the value already cached.  We do so because we\n  # need to set the values for the 'am__tar' and 'am__untar' variables.\n  _am_tools=${am_cv_prog_tar_$1-$_am_tools}\n\n  for _am_tool in $_am_tools; do\n    case $_am_tool in\n    gnutar)\n      for _am_tar in tar gnutar gtar; do\n        AM_RUN_LOG([$_am_tar --version]) && break\n      done\n      am__tar=\"$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - \"'\"$$tardir\"'\n      am__tar_=\"$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - \"'\"$tardir\"'\n      am__untar=\"$_am_tar -xf -\"\n      ;;\n    plaintar)\n      # Must skip GNU tar: if it does not support --format= it doesn't create\n      # ustar tarball either.\n      (tar --version) >/dev/null 2>&1 && continue\n      am__tar='tar chf - \"$$tardir\"'\n      am__tar_='tar chf - \"$tardir\"'\n      am__untar='tar xf -'\n      ;;\n    pax)\n      am__tar='pax -L -x $1 -w \"$$tardir\"'\n      am__tar_='pax -L -x $1 -w \"$tardir\"'\n      am__untar='pax -r'\n      ;;\n    cpio)\n      am__tar='find \"$$tardir\" -print | cpio -o -H $1 -L'\n      am__tar_='find \"$tardir\" -print | cpio -o -H $1 -L'\n      am__untar='cpio -i -H $1 -d'\n      ;;\n    none)\n      am__tar=false\n      am__tar_=false\n      am__untar=false\n      ;;\n    esac\n\n    # If the value was cached, stop now.  We just wanted to have am__tar\n    # and am__untar set.\n    test -n \"${am_cv_prog_tar_$1}\" && break\n\n    # tar/untar a dummy directory, and stop if the command works.\n    rm -rf conftest.dir\n    mkdir conftest.dir\n    echo GrepMe > conftest.dir/file\n    AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])\n    rm -rf conftest.dir\n    if test -s conftest.tar; then\n      AM_RUN_LOG([$am__untar <conftest.tar])\n      AM_RUN_LOG([cat conftest.dir/file])\n      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break\n    fi\n  done\n  rm -rf conftest.dir\n\n  AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])\n  AC_MSG_RESULT([$am_cv_prog_tar_$1])])\n\nAC_SUBST([am__tar])\nAC_SUBST([am__untar])\n]) # _AM_PROG_TAR\n\nm4_include([srcm4/00gnulib.m4])\nm4_include([srcm4/absolute-header.m4])\nm4_include([srcm4/alloca.m4])\nm4_include([srcm4/asm-underscore.m4])\nm4_include([srcm4/canonicalize.m4])\nm4_include([srcm4/codeset.m4])\nm4_include([srcm4/dirname.m4])\nm4_include([srcm4/double-slash-root.m4])\nm4_include([srcm4/eealloc.m4])\nm4_include([srcm4/environ.m4])\nm4_include([srcm4/errno_h.m4])\nm4_include([srcm4/error.m4])\nm4_include([srcm4/extensions.m4])\nm4_include([srcm4/extern-inline.m4])\nm4_include([srcm4/fcntl-o.m4])\nm4_include([srcm4/fcntl_h.m4])\nm4_include([srcm4/getprogname.m4])\nm4_include([srcm4/gettext.m4])\nm4_include([srcm4/gettimeofday.m4])\nm4_include([srcm4/gnulib-common.m4])\nm4_include([srcm4/gnulib-comp.m4])\nm4_include([srcm4/iconv.m4])\nm4_include([srcm4/include_next.m4])\nm4_include([srcm4/intlmacosx.m4])\nm4_include([srcm4/largefile.m4])\nm4_include([srcm4/lib-ld.m4])\nm4_include([srcm4/lib-link.m4])\nm4_include([srcm4/lib-prefix.m4])\nm4_include([srcm4/libunistring-base.m4])\nm4_include([srcm4/limits-h.m4])\nm4_include([srcm4/longlong.m4])\nm4_include([srcm4/lstat.m4])\nm4_include([srcm4/malloc.m4])\nm4_include([srcm4/malloca.m4])\nm4_include([srcm4/mbstate_t.m4])\nm4_include([srcm4/msvc-inval.m4])\nm4_include([srcm4/msvc-nothrow.m4])\nm4_include([srcm4/multiarch.m4])\nm4_include([srcm4/nls.m4])\nm4_include([srcm4/nocrash.m4])\nm4_include([srcm4/off_t.m4])\nm4_include([srcm4/pathmax.m4])\nm4_include([srcm4/po.m4])\nm4_include([srcm4/progtest.m4])\nm4_include([srcm4/raise.m4])\nm4_include([srcm4/read.m4])\nm4_include([srcm4/readlink.m4])\nm4_include([srcm4/relocatable-lib.m4])\nm4_include([srcm4/relocatable.m4])\nm4_include([srcm4/safe-read.m4])\nm4_include([srcm4/setenv.m4])\nm4_include([srcm4/signal_h.m4])\nm4_include([srcm4/signalblocking.m4])\nm4_include([srcm4/sigpipe.m4])\nm4_include([srcm4/ssize_t.m4])\nm4_include([srcm4/stat.m4])\nm4_include([srcm4/stdbool.m4])\nm4_include([srcm4/stddef_h.m4])\nm4_include([srcm4/stdint.m4])\nm4_include([srcm4/stdio_h.m4])\nm4_include([srcm4/stdlib_h.m4])\nm4_include([srcm4/strerror.m4])\nm4_include([srcm4/string_h.m4])\nm4_include([srcm4/sys_socket_h.m4])\nm4_include([srcm4/sys_stat_h.m4])\nm4_include([srcm4/sys_time_h.m4])\nm4_include([srcm4/sys_types_h.m4])\nm4_include([srcm4/time_h.m4])\nm4_include([srcm4/unistd_h.m4])\nm4_include([srcm4/unlocked-io.m4])\nm4_include([srcm4/visibility.m4])\nm4_include([srcm4/warn-on-use.m4])\nm4_include([srcm4/wchar_t.m4])\nm4_include([srcm4/wint_t.m4])\nm4_include([m4/cp.m4])\nm4_include([m4/eilseq.m4])\nm4_include([m4/endian.m4])\nm4_include([m4/libtool.m4])\nm4_include([m4/ln.m4])\nm4_include([m4/ltoptions.m4])\nm4_include([m4/ltsugar.m4])\nm4_include([m4/ltversion.m4])\nm4_include([m4/lt~obsolete.m4])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/ar-lib",
    "content": "#! /bin/sh\n# Wrapper for Microsoft lib.exe\n\nme=ar-lib\nscriptversion=2012-03-01.08; # UTC\n\n# Copyright (C) 2010-2014 Free Software Foundation, Inc.\n# Written by Peter Rosin <peda@lysator.liu.se>.\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2, or (at your option)\n# any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that program.\n\n# This file is maintained in Automake, please report\n# bugs to <bug-automake@gnu.org> or send patches to\n# <automake-patches@gnu.org>.\n\n\n# func_error message\nfunc_error ()\n{\n  echo \"$me: $1\" 1>&2\n  exit 1\n}\n\nfile_conv=\n\n# func_file_conv build_file\n# Convert a $build file to $host form and store it in $file\n# Currently only supports Windows hosts.\nfunc_file_conv ()\n{\n  file=$1\n  case $file in\n    / | /[!/]*) # absolute file, and not a UNC file\n      if test -z \"$file_conv\"; then\n\t# lazily determine how to convert abs files\n\tcase `uname -s` in\n\t  MINGW*)\n\t    file_conv=mingw\n\t    ;;\n\t  CYGWIN*)\n\t    file_conv=cygwin\n\t    ;;\n\t  *)\n\t    file_conv=wine\n\t    ;;\n\tesac\n      fi\n      case $file_conv in\n\tmingw)\n\t  file=`cmd //C echo \"$file \" | sed -e 's/\"\\(.*\\) \" *$/\\1/'`\n\t  ;;\n\tcygwin)\n\t  file=`cygpath -m \"$file\" || echo \"$file\"`\n\t  ;;\n\twine)\n\t  file=`winepath -w \"$file\" || echo \"$file\"`\n\t  ;;\n      esac\n      ;;\n  esac\n}\n\n# func_at_file at_file operation archive\n# Iterate over all members in AT_FILE performing OPERATION on ARCHIVE\n# for each of them.\n# When interpreting the content of the @FILE, do NOT use func_file_conv,\n# since the user would need to supply preconverted file names to\n# binutils ar, at least for MinGW.\nfunc_at_file ()\n{\n  operation=$2\n  archive=$3\n  at_file_contents=`cat \"$1\"`\n  eval set x \"$at_file_contents\"\n  shift\n\n  for member\n  do\n    $AR -NOLOGO $operation:\"$member\" \"$archive\" || exit $?\n  done\n}\n\ncase $1 in\n  '')\n     func_error \"no command.  Try '$0 --help' for more information.\"\n     ;;\n  -h | --h*)\n    cat <<EOF\nUsage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...]\n\nMembers may be specified in a file named with @FILE.\nEOF\n    exit $?\n    ;;\n  -v | --v*)\n    echo \"$me, version $scriptversion\"\n    exit $?\n    ;;\nesac\n\nif test $# -lt 3; then\n  func_error \"you must specify a program, an action and an archive\"\nfi\n\nAR=$1\nshift\nwhile :\ndo\n  if test $# -lt 2; then\n    func_error \"you must specify a program, an action and an archive\"\n  fi\n  case $1 in\n    -lib | -LIB \\\n    | -ltcg | -LTCG \\\n    | -machine* | -MACHINE* \\\n    | -subsystem* | -SUBSYSTEM* \\\n    | -verbose | -VERBOSE \\\n    | -wx* | -WX* )\n      AR=\"$AR $1\"\n      shift\n      ;;\n    *)\n      action=$1\n      shift\n      break\n      ;;\n  esac\ndone\norig_archive=$1\nshift\nfunc_file_conv \"$orig_archive\"\narchive=$file\n\n# strip leading dash in $action\naction=${action#-}\n\ndelete=\nextract=\nlist=\nquick=\nreplace=\nindex=\ncreate=\n\nwhile test -n \"$action\"\ndo\n  case $action in\n    d*) delete=yes  ;;\n    x*) extract=yes ;;\n    t*) list=yes    ;;\n    q*) quick=yes   ;;\n    r*) replace=yes ;;\n    s*) index=yes   ;;\n    S*)             ;; # the index is always updated implicitly\n    c*) create=yes  ;;\n    u*)             ;; # TODO: don't ignore the update modifier\n    v*)             ;; # TODO: don't ignore the verbose modifier\n    *)\n      func_error \"unknown action specified\"\n      ;;\n  esac\n  action=${action#?}\ndone\n\ncase $delete$extract$list$quick$replace,$index in\n  yes,* | ,yes)\n    ;;\n  yesyes*)\n    func_error \"more than one action specified\"\n    ;;\n  *)\n    func_error \"no action specified\"\n    ;;\nesac\n\nif test -n \"$delete\"; then\n  if test ! -f \"$orig_archive\"; then\n    func_error \"archive not found\"\n  fi\n  for member\n  do\n    case $1 in\n      @*)\n        func_at_file \"${1#@}\" -REMOVE \"$archive\"\n        ;;\n      *)\n        func_file_conv \"$1\"\n        $AR -NOLOGO -REMOVE:\"$file\" \"$archive\" || exit $?\n        ;;\n    esac\n  done\n\nelif test -n \"$extract\"; then\n  if test ! -f \"$orig_archive\"; then\n    func_error \"archive not found\"\n  fi\n  if test $# -gt 0; then\n    for member\n    do\n      case $1 in\n        @*)\n          func_at_file \"${1#@}\" -EXTRACT \"$archive\"\n          ;;\n        *)\n          func_file_conv \"$1\"\n          $AR -NOLOGO -EXTRACT:\"$file\" \"$archive\" || exit $?\n          ;;\n      esac\n    done\n  else\n    $AR -NOLOGO -LIST \"$archive\" | sed -e 's/\\\\/\\\\\\\\/g' | while read member\n    do\n      $AR -NOLOGO -EXTRACT:\"$member\" \"$archive\" || exit $?\n    done\n  fi\n\nelif test -n \"$quick$replace\"; then\n  if test ! -f \"$orig_archive\"; then\n    if test -z \"$create\"; then\n      echo \"$me: creating $orig_archive\"\n    fi\n    orig_archive=\n  else\n    orig_archive=$archive\n  fi\n\n  for member\n  do\n    case $1 in\n    @*)\n      func_file_conv \"${1#@}\"\n      set x \"$@\" \"@$file\"\n      ;;\n    *)\n      func_file_conv \"$1\"\n      set x \"$@\" \"$file\"\n      ;;\n    esac\n    shift\n    shift\n  done\n\n  if test -n \"$orig_archive\"; then\n    $AR -NOLOGO -OUT:\"$archive\" \"$orig_archive\" \"$@\" || exit $?\n  else\n    $AR -NOLOGO -OUT:\"$archive\" \"$@\" || exit $?\n  fi\n\nelif test -n \"$list\"; then\n  if test ! -f \"$orig_archive\"; then\n    func_error \"archive not found\"\n  fi\n  $AR -NOLOGO -LIST \"$archive\" || exit $?\nfi\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/compile",
    "content": "#! /bin/sh\n# Wrapper for compilers which do not understand '-c -o'.\n\nscriptversion=2012-10-14.11; # UTC\n\n# Copyright (C) 1999-2014 Free Software Foundation, Inc.\n# Written by Tom Tromey <tromey@cygnus.com>.\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2, or (at your option)\n# any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that program.\n\n# This file is maintained in Automake, please report\n# bugs to <bug-automake@gnu.org> or send patches to\n# <automake-patches@gnu.org>.\n\nnl='\n'\n\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent tools from complaining about whitespace usage.\nIFS=\" \"\"\t$nl\"\n\nfile_conv=\n\n# func_file_conv build_file lazy\n# Convert a $build file to $host form and store it in $file\n# Currently only supports Windows hosts. If the determined conversion\n# type is listed in (the comma separated) LAZY, no conversion will\n# take place.\nfunc_file_conv ()\n{\n  file=$1\n  case $file in\n    / | /[!/]*) # absolute file, and not a UNC file\n      if test -z \"$file_conv\"; then\n\t# lazily determine how to convert abs files\n\tcase `uname -s` in\n\t  MINGW*)\n\t    file_conv=mingw\n\t    ;;\n\t  CYGWIN*)\n\t    file_conv=cygwin\n\t    ;;\n\t  *)\n\t    file_conv=wine\n\t    ;;\n\tesac\n      fi\n      case $file_conv/,$2, in\n\t*,$file_conv,*)\n\t  ;;\n\tmingw/*)\n\t  file=`cmd //C echo \"$file \" | sed -e 's/\"\\(.*\\) \" *$/\\1/'`\n\t  ;;\n\tcygwin/*)\n\t  file=`cygpath -m \"$file\" || echo \"$file\"`\n\t  ;;\n\twine/*)\n\t  file=`winepath -w \"$file\" || echo \"$file\"`\n\t  ;;\n      esac\n      ;;\n  esac\n}\n\n# func_cl_dashL linkdir\n# Make cl look for libraries in LINKDIR\nfunc_cl_dashL ()\n{\n  func_file_conv \"$1\"\n  if test -z \"$lib_path\"; then\n    lib_path=$file\n  else\n    lib_path=\"$lib_path;$file\"\n  fi\n  linker_opts=\"$linker_opts -LIBPATH:$file\"\n}\n\n# func_cl_dashl library\n# Do a library search-path lookup for cl\nfunc_cl_dashl ()\n{\n  lib=$1\n  found=no\n  save_IFS=$IFS\n  IFS=';'\n  for dir in $lib_path $LIB\n  do\n    IFS=$save_IFS\n    if $shared && test -f \"$dir/$lib.dll.lib\"; then\n      found=yes\n      lib=$dir/$lib.dll.lib\n      break\n    fi\n    if test -f \"$dir/$lib.lib\"; then\n      found=yes\n      lib=$dir/$lib.lib\n      break\n    fi\n    if test -f \"$dir/lib$lib.a\"; then\n      found=yes\n      lib=$dir/lib$lib.a\n      break\n    fi\n  done\n  IFS=$save_IFS\n\n  if test \"$found\" != yes; then\n    lib=$lib.lib\n  fi\n}\n\n# func_cl_wrapper cl arg...\n# Adjust compile command to suit cl\nfunc_cl_wrapper ()\n{\n  # Assume a capable shell\n  lib_path=\n  shared=:\n  linker_opts=\n  for arg\n  do\n    if test -n \"$eat\"; then\n      eat=\n    else\n      case $1 in\n\t-o)\n\t  # configure might choose to run compile as 'compile cc -o foo foo.c'.\n\t  eat=1\n\t  case $2 in\n\t    *.o | *.[oO][bB][jJ])\n\t      func_file_conv \"$2\"\n\t      set x \"$@\" -Fo\"$file\"\n\t      shift\n\t      ;;\n\t    *)\n\t      func_file_conv \"$2\"\n\t      set x \"$@\" -Fe\"$file\"\n\t      shift\n\t      ;;\n\t  esac\n\t  ;;\n\t-I)\n\t  eat=1\n\t  func_file_conv \"$2\" mingw\n\t  set x \"$@\" -I\"$file\"\n\t  shift\n\t  ;;\n\t-I*)\n\t  func_file_conv \"${1#-I}\" mingw\n\t  set x \"$@\" -I\"$file\"\n\t  shift\n\t  ;;\n\t-l)\n\t  eat=1\n\t  func_cl_dashl \"$2\"\n\t  set x \"$@\" \"$lib\"\n\t  shift\n\t  ;;\n\t-l*)\n\t  func_cl_dashl \"${1#-l}\"\n\t  set x \"$@\" \"$lib\"\n\t  shift\n\t  ;;\n\t-L)\n\t  eat=1\n\t  func_cl_dashL \"$2\"\n\t  ;;\n\t-L*)\n\t  func_cl_dashL \"${1#-L}\"\n\t  ;;\n\t-static)\n\t  shared=false\n\t  ;;\n\t-Wl,*)\n\t  arg=${1#-Wl,}\n\t  save_ifs=\"$IFS\"; IFS=','\n\t  for flag in $arg; do\n\t    IFS=\"$save_ifs\"\n\t    linker_opts=\"$linker_opts $flag\"\n\t  done\n\t  IFS=\"$save_ifs\"\n\t  ;;\n\t-Xlinker)\n\t  eat=1\n\t  linker_opts=\"$linker_opts $2\"\n\t  ;;\n\t-*)\n\t  set x \"$@\" \"$1\"\n\t  shift\n\t  ;;\n\t*.cc | *.CC | *.cxx | *.CXX | *.[cC]++)\n\t  func_file_conv \"$1\"\n\t  set x \"$@\" -Tp\"$file\"\n\t  shift\n\t  ;;\n\t*.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO])\n\t  func_file_conv \"$1\" mingw\n\t  set x \"$@\" \"$file\"\n\t  shift\n\t  ;;\n\t*)\n\t  set x \"$@\" \"$1\"\n\t  shift\n\t  ;;\n      esac\n    fi\n    shift\n  done\n  if test -n \"$linker_opts\"; then\n    linker_opts=\"-link$linker_opts\"\n  fi\n  exec \"$@\" $linker_opts\n  exit 1\n}\n\neat=\n\ncase $1 in\n  '')\n     echo \"$0: No command.  Try '$0 --help' for more information.\" 1>&2\n     exit 1;\n     ;;\n  -h | --h*)\n    cat <<\\EOF\nUsage: compile [--help] [--version] PROGRAM [ARGS]\n\nWrapper for compilers which do not understand '-c -o'.\nRemove '-o dest.o' from ARGS, run PROGRAM with the remaining\narguments, and rename the output as expected.\n\nIf you are trying to build a whole package this is not the\nright script to run: please start by reading the file 'INSTALL'.\n\nReport bugs to <bug-automake@gnu.org>.\nEOF\n    exit $?\n    ;;\n  -v | --v*)\n    echo \"compile $scriptversion\"\n    exit $?\n    ;;\n  cl | *[/\\\\]cl | cl.exe | *[/\\\\]cl.exe )\n    func_cl_wrapper \"$@\"      # Doesn't return...\n    ;;\nesac\n\nofile=\ncfile=\n\nfor arg\ndo\n  if test -n \"$eat\"; then\n    eat=\n  else\n    case $1 in\n      -o)\n\t# configure might choose to run compile as 'compile cc -o foo foo.c'.\n\t# So we strip '-o arg' only if arg is an object.\n\teat=1\n\tcase $2 in\n\t  *.o | *.obj)\n\t    ofile=$2\n\t    ;;\n\t  *)\n\t    set x \"$@\" -o \"$2\"\n\t    shift\n\t    ;;\n\tesac\n\t;;\n      *.c)\n\tcfile=$1\n\tset x \"$@\" \"$1\"\n\tshift\n\t;;\n      *)\n\tset x \"$@\" \"$1\"\n\tshift\n\t;;\n    esac\n  fi\n  shift\ndone\n\nif test -z \"$ofile\" || test -z \"$cfile\"; then\n  # If no '-o' option was seen then we might have been invoked from a\n  # pattern rule where we don't need one.  That is ok -- this is a\n  # normal compilation that the losing compiler can handle.  If no\n  # '.c' file was seen then we are probably linking.  That is also\n  # ok.\n  exec \"$@\"\nfi\n\n# Name of file we expect compiler to create.\ncofile=`echo \"$cfile\" | sed 's|^.*[\\\\/]||; s|^[a-zA-Z]:||; s/\\.c$/.o/'`\n\n# Create the lock directory.\n# Note: use '[/\\\\:.-]' here to ensure that we don't use the same name\n# that we are using for the .o file.  Also, base the name on the expected\n# object file name, since that is what matters with a parallel build.\nlockdir=`echo \"$cofile\" | sed -e 's|[/\\\\:.-]|_|g'`.d\nwhile true; do\n  if mkdir \"$lockdir\" >/dev/null 2>&1; then\n    break\n  fi\n  sleep 1\ndone\n# FIXME: race condition here if user kills between mkdir and trap.\ntrap \"rmdir '$lockdir'; exit 1\" 1 2 15\n\n# Run the compile.\n\"$@\"\nret=$?\n\nif test -f \"$cofile\"; then\n  test \"$cofile\" = \"$ofile\" || mv \"$cofile\" \"$ofile\"\nelif test -f \"${cofile}bj\"; then\n  test \"${cofile}bj\" = \"$ofile\" || mv \"${cofile}bj\" \"$ofile\"\nfi\n\nrmdir \"$lockdir\"\nexit $ret\n\n# Local Variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"scriptversion=\"\n# time-stamp-format: \"%:y-%02m-%02d.%02H\"\n# time-stamp-time-zone: \"UTC\"\n# time-stamp-end: \"; # UTC\"\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/config.guess",
    "content": "#! /bin/sh\n# Attempt to guess a canonical system name.\n#   Copyright 1992-2017 Free Software Foundation, Inc.\n\ntimestamp='2016-10-02'\n\n# This file is free software; you can redistribute it and/or modify it\n# under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, see <http://www.gnu.org/licenses/>.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that\n# program.  This Exception is an additional permission under section 7\n# of the GNU General Public License, version 3 (\"GPLv3\").\n#\n# Originally written by Per Bothner; maintained since 2000 by Ben Elliston.\n#\n# You can get the latest version of this script from:\n# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess\n#\n# Please send patches to <config-patches@gnu.org>.\n\n\nme=`echo \"$0\" | sed -e 's,.*/,,'`\n\nusage=\"\\\nUsage: $0 [OPTION]\n\nOutput the configuration name of the system \\`$me' is run on.\n\nOperation modes:\n  -h, --help         print this help, then exit\n  -t, --time-stamp   print date of last modification, then exit\n  -v, --version      print version number, then exit\n\nReport bugs and patches to <config-patches@gnu.org>.\"\n\nversion=\"\\\nGNU config.guess ($timestamp)\n\nOriginally written by Per Bothner.\nCopyright 1992-2016 Free Software Foundation, Inc.\n\nThis is free software; see the source for copying conditions.  There is NO\nwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\"\n\nhelp=\"\nTry \\`$me --help' for more information.\"\n\n# Parse command line\nwhile test $# -gt 0 ; do\n  case $1 in\n    --time-stamp | --time* | -t )\n       echo \"$timestamp\" ; exit ;;\n    --version | -v )\n       echo \"$version\" ; exit ;;\n    --help | --h* | -h )\n       echo \"$usage\"; exit ;;\n    -- )     # Stop option processing\n       shift; break ;;\n    - )\t# Use stdin as input.\n       break ;;\n    -* )\n       echo \"$me: invalid option $1$help\" >&2\n       exit 1 ;;\n    * )\n       break ;;\n  esac\ndone\n\nif test $# != 0; then\n  echo \"$me: too many arguments$help\" >&2\n  exit 1\nfi\n\ntrap 'exit 1' 1 2 15\n\n# CC_FOR_BUILD -- compiler used by this script. Note that the use of a\n# compiler to aid in system detection is discouraged as it requires\n# temporary files to be created and, as you can see below, it is a\n# headache to deal with in a portable fashion.\n\n# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still\n# use `HOST_CC' if defined, but it is deprecated.\n\n# Portable tmp directory creation inspired by the Autoconf team.\n\nset_cc_for_build='\ntrap \"exitcode=\\$?; (rm -f \\$tmpfiles 2>/dev/null; rmdir \\$tmp 2>/dev/null) && exit \\$exitcode\" 0 ;\ntrap \"rm -f \\$tmpfiles 2>/dev/null; rmdir \\$tmp 2>/dev/null; exit 1\" 1 2 13 15 ;\n: ${TMPDIR=/tmp} ;\n { tmp=`(umask 077 && mktemp -d \"$TMPDIR/cgXXXXXX\") 2>/dev/null` && test -n \"$tmp\" && test -d \"$tmp\" ; } ||\n { test -n \"$RANDOM\" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||\n { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo \"Warning: creating insecure temp directory\" >&2 ; } ||\n { echo \"$me: cannot create a temporary directory in $TMPDIR\" >&2 ; exit 1 ; } ;\ndummy=$tmp/dummy ;\ntmpfiles=\"$dummy.c $dummy.o $dummy.rel $dummy\" ;\ncase $CC_FOR_BUILD,$HOST_CC,$CC in\n ,,)    echo \"int x;\" > $dummy.c ;\n\tfor c in cc gcc c89 c99 ; do\n\t  if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then\n\t     CC_FOR_BUILD=\"$c\"; break ;\n\t  fi ;\n\tdone ;\n\tif test x\"$CC_FOR_BUILD\" = x ; then\n\t  CC_FOR_BUILD=no_compiler_found ;\n\tfi\n\t;;\n ,,*)   CC_FOR_BUILD=$CC ;;\n ,*,*)  CC_FOR_BUILD=$HOST_CC ;;\nesac ; set_cc_for_build= ;'\n\n# This is needed to find uname on a Pyramid OSx when run in the BSD universe.\n# (ghazi@noc.rutgers.edu 1994-08-24)\nif (test -f /.attbin/uname) >/dev/null 2>&1 ; then\n\tPATH=$PATH:/.attbin ; export PATH\nfi\n\nUNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown\nUNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown\nUNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown\nUNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown\n\ncase \"${UNAME_SYSTEM}\" in\nLinux|GNU|GNU/*)\n\t# If the system lacks a compiler, then just pick glibc.\n\t# We could probably try harder.\n\tLIBC=gnu\n\n\teval $set_cc_for_build\n\tcat <<-EOF > $dummy.c\n\t#include <features.h>\n\t#if defined(__UCLIBC__)\n\tLIBC=uclibc\n\t#elif defined(__dietlibc__)\n\tLIBC=dietlibc\n\t#else\n\tLIBC=gnu\n\t#endif\n\tEOF\n\teval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`\n\t;;\nesac\n\n# Note: order is significant - the case branches are not exclusive.\n\ncase \"${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}\" in\n    *:NetBSD:*:*)\n\t# NetBSD (nbsd) targets should (where applicable) match one or\n\t# more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,\n\t# *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently\n\t# switched to ELF, *-*-netbsd* would select the old\n\t# object file format.  This provides both forward\n\t# compatibility and a consistent mechanism for selecting the\n\t# object file format.\n\t#\n\t# Note: NetBSD doesn't particularly care about the vendor\n\t# portion of the name.  We always set it to \"unknown\".\n\tsysctl=\"sysctl -n hw.machine_arch\"\n\tUNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \\\n\t    /sbin/$sysctl 2>/dev/null || \\\n\t    /usr/sbin/$sysctl 2>/dev/null || \\\n\t    echo unknown)`\n\tcase \"${UNAME_MACHINE_ARCH}\" in\n\t    armeb) machine=armeb-unknown ;;\n\t    arm*) machine=arm-unknown ;;\n\t    sh3el) machine=shl-unknown ;;\n\t    sh3eb) machine=sh-unknown ;;\n\t    sh5el) machine=sh5le-unknown ;;\n\t    earmv*)\n\t\tarch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\\(armv[0-9]\\).*$,\\1,'`\n\t\tendian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\\(eb\\)$,\\1,p'`\n\t\tmachine=${arch}${endian}-unknown\n\t\t;;\n\t    *) machine=${UNAME_MACHINE_ARCH}-unknown ;;\n\tesac\n\t# The Operating System including object format, if it has switched\n\t# to ELF recently (or will in the future) and ABI.\n\tcase \"${UNAME_MACHINE_ARCH}\" in\n\t    earm*)\n\t\tos=netbsdelf\n\t\t;;\n\t    arm*|i386|m68k|ns32k|sh3*|sparc|vax)\n\t\teval $set_cc_for_build\n\t\tif echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \\\n\t\t\t| grep -q __ELF__\n\t\tthen\n\t\t    # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).\n\t\t    # Return netbsd for either.  FIX?\n\t\t    os=netbsd\n\t\telse\n\t\t    os=netbsdelf\n\t\tfi\n\t\t;;\n\t    *)\n\t\tos=netbsd\n\t\t;;\n\tesac\n\t# Determine ABI tags.\n\tcase \"${UNAME_MACHINE_ARCH}\" in\n\t    earm*)\n\t\texpr='s/^earmv[0-9]/-eabi/;s/eb$//'\n\t\tabi=`echo ${UNAME_MACHINE_ARCH} | sed -e \"$expr\"`\n\t\t;;\n\tesac\n\t# The OS release\n\t# Debian GNU/NetBSD machines have a different userland, and\n\t# thus, need a distinct triplet. However, they do not need\n\t# kernel version information, so it can be replaced with a\n\t# suitable tag, in the style of linux-gnu.\n\tcase \"${UNAME_VERSION}\" in\n\t    Debian*)\n\t\trelease='-gnu'\n\t\t;;\n\t    *)\n\t\trelease=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2`\n\t\t;;\n\tesac\n\t# Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:\n\t# contains redundant information, the shorter form:\n\t# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.\n\techo \"${machine}-${os}${release}${abi}\"\n\texit ;;\n    *:Bitrig:*:*)\n\tUNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`\n\techo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE}\n\texit ;;\n    *:OpenBSD:*:*)\n\tUNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`\n\techo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}\n\texit ;;\n    *:LibertyBSD:*:*)\n\tUNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\\.//'`\n\techo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE}\n\texit ;;\n    *:ekkoBSD:*:*)\n\techo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}\n\texit ;;\n    *:SolidBSD:*:*)\n\techo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}\n\texit ;;\n    macppc:MirBSD:*:*)\n\techo powerpc-unknown-mirbsd${UNAME_RELEASE}\n\texit ;;\n    *:MirBSD:*:*)\n\techo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}\n\texit ;;\n    *:Sortix:*:*)\n\techo ${UNAME_MACHINE}-unknown-sortix\n\texit ;;\n    alpha:OSF1:*:*)\n\tcase $UNAME_RELEASE in\n\t*4.0)\n\t\tUNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`\n\t\t;;\n\t*5.*)\n\t\tUNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`\n\t\t;;\n\tesac\n\t# According to Compaq, /usr/sbin/psrinfo has been available on\n\t# OSF/1 and Tru64 systems produced since 1995.  I hope that\n\t# covers most systems running today.  This code pipes the CPU\n\t# types through head -n 1, so we only detect the type of CPU 0.\n\tALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \\(.*\\) processor.*$/\\1/p' | head -n 1`\n\tcase \"$ALPHA_CPU_TYPE\" in\n\t    \"EV4 (21064)\")\n\t\tUNAME_MACHINE=alpha ;;\n\t    \"EV4.5 (21064)\")\n\t\tUNAME_MACHINE=alpha ;;\n\t    \"LCA4 (21066/21068)\")\n\t\tUNAME_MACHINE=alpha ;;\n\t    \"EV5 (21164)\")\n\t\tUNAME_MACHINE=alphaev5 ;;\n\t    \"EV5.6 (21164A)\")\n\t\tUNAME_MACHINE=alphaev56 ;;\n\t    \"EV5.6 (21164PC)\")\n\t\tUNAME_MACHINE=alphapca56 ;;\n\t    \"EV5.7 (21164PC)\")\n\t\tUNAME_MACHINE=alphapca57 ;;\n\t    \"EV6 (21264)\")\n\t\tUNAME_MACHINE=alphaev6 ;;\n\t    \"EV6.7 (21264A)\")\n\t\tUNAME_MACHINE=alphaev67 ;;\n\t    \"EV6.8CB (21264C)\")\n\t\tUNAME_MACHINE=alphaev68 ;;\n\t    \"EV6.8AL (21264B)\")\n\t\tUNAME_MACHINE=alphaev68 ;;\n\t    \"EV6.8CX (21264D)\")\n\t\tUNAME_MACHINE=alphaev68 ;;\n\t    \"EV6.9A (21264/EV69A)\")\n\t\tUNAME_MACHINE=alphaev69 ;;\n\t    \"EV7 (21364)\")\n\t\tUNAME_MACHINE=alphaev7 ;;\n\t    \"EV7.9 (21364A)\")\n\t\tUNAME_MACHINE=alphaev79 ;;\n\tesac\n\t# A Pn.n version is a patched version.\n\t# A Vn.n version is a released version.\n\t# A Tn.n version is a released field test version.\n\t# A Xn.n version is an unreleased experimental baselevel.\n\t# 1.2 uses \"1.2\" for uname -r.\n\techo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`\n\t# Reset EXIT trap before exiting to avoid spurious non-zero exit code.\n\texitcode=$?\n\ttrap '' 0\n\texit $exitcode ;;\n    Alpha\\ *:Windows_NT*:*)\n\t# How do we know it's Interix rather than the generic POSIX subsystem?\n\t# Should we change UNAME_MACHINE based on the output of uname instead\n\t# of the specific Alpha model?\n\techo alpha-pc-interix\n\texit ;;\n    21064:Windows_NT:50:3)\n\techo alpha-dec-winnt3.5\n\texit ;;\n    Amiga*:UNIX_System_V:4.0:*)\n\techo m68k-unknown-sysv4\n\texit ;;\n    *:[Aa]miga[Oo][Ss]:*:*)\n\techo ${UNAME_MACHINE}-unknown-amigaos\n\texit ;;\n    *:[Mm]orph[Oo][Ss]:*:*)\n\techo ${UNAME_MACHINE}-unknown-morphos\n\texit ;;\n    *:OS/390:*:*)\n\techo i370-ibm-openedition\n\texit ;;\n    *:z/VM:*:*)\n\techo s390-ibm-zvmoe\n\texit ;;\n    *:OS400:*:*)\n\techo powerpc-ibm-os400\n\texit ;;\n    arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)\n\techo arm-acorn-riscix${UNAME_RELEASE}\n\texit ;;\n    arm*:riscos:*:*|arm*:RISCOS:*:*)\n\techo arm-unknown-riscos\n\texit ;;\n    SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)\n\techo hppa1.1-hitachi-hiuxmpp\n\texit ;;\n    Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)\n\t# akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.\n\tif test \"`(/bin/universe) 2>/dev/null`\" = att ; then\n\t\techo pyramid-pyramid-sysv3\n\telse\n\t\techo pyramid-pyramid-bsd\n\tfi\n\texit ;;\n    NILE*:*:*:dcosx)\n\techo pyramid-pyramid-svr4\n\texit ;;\n    DRS?6000:unix:4.0:6*)\n\techo sparc-icl-nx6\n\texit ;;\n    DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)\n\tcase `/usr/bin/uname -p` in\n\t    sparc) echo sparc-icl-nx7; exit ;;\n\tesac ;;\n    s390x:SunOS:*:*)\n\techo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    sun4H:SunOS:5.*:*)\n\techo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)\n\techo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)\n\techo i386-pc-auroraux${UNAME_RELEASE}\n\texit ;;\n    i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)\n\teval $set_cc_for_build\n\tSUN_ARCH=i386\n\t# If there is a compiler, see if it is configured for 64-bit objects.\n\t# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.\n\t# This test works for both compilers.\n\tif [ \"$CC_FOR_BUILD\" != no_compiler_found ]; then\n\t    if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \\\n\t\t(CCOPTS=\"\" $CC_FOR_BUILD -E - 2>/dev/null) | \\\n\t\tgrep IS_64BIT_ARCH >/dev/null\n\t    then\n\t\tSUN_ARCH=x86_64\n\t    fi\n\tfi\n\techo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    sun4*:SunOS:6*:*)\n\t# According to config.sub, this is the proper way to canonicalize\n\t# SunOS6.  Hard to guess exactly what SunOS6 will be like, but\n\t# it's likely to be more like Solaris than SunOS4.\n\techo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    sun4*:SunOS:*:*)\n\tcase \"`/usr/bin/arch -k`\" in\n\t    Series*|S4*)\n\t\tUNAME_RELEASE=`uname -v`\n\t\t;;\n\tesac\n\t# Japanese Language versions have a version number like `4.1.3-JL'.\n\techo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`\n\texit ;;\n    sun3*:SunOS:*:*)\n\techo m68k-sun-sunos${UNAME_RELEASE}\n\texit ;;\n    sun*:*:4.2BSD:*)\n\tUNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`\n\ttest \"x${UNAME_RELEASE}\" = x && UNAME_RELEASE=3\n\tcase \"`/bin/arch`\" in\n\t    sun3)\n\t\techo m68k-sun-sunos${UNAME_RELEASE}\n\t\t;;\n\t    sun4)\n\t\techo sparc-sun-sunos${UNAME_RELEASE}\n\t\t;;\n\tesac\n\texit ;;\n    aushp:SunOS:*:*)\n\techo sparc-auspex-sunos${UNAME_RELEASE}\n\texit ;;\n    # The situation for MiNT is a little confusing.  The machine name\n    # can be virtually everything (everything which is not\n    # \"atarist\" or \"atariste\" at least should have a processor\n    # > m68000).  The system name ranges from \"MiNT\" over \"FreeMiNT\"\n    # to the lowercase version \"mint\" (or \"freemint\").  Finally\n    # the system name \"TOS\" denotes a system which is actually not\n    # MiNT.  But MiNT is downward compatible to TOS, so this should\n    # be no problem.\n    atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)\n\techo m68k-atari-mint${UNAME_RELEASE}\n\texit ;;\n    atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)\n\techo m68k-atari-mint${UNAME_RELEASE}\n\texit ;;\n    *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)\n\techo m68k-atari-mint${UNAME_RELEASE}\n\texit ;;\n    milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)\n\techo m68k-milan-mint${UNAME_RELEASE}\n\texit ;;\n    hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)\n\techo m68k-hades-mint${UNAME_RELEASE}\n\texit ;;\n    *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)\n\techo m68k-unknown-mint${UNAME_RELEASE}\n\texit ;;\n    m68k:machten:*:*)\n\techo m68k-apple-machten${UNAME_RELEASE}\n\texit ;;\n    powerpc:machten:*:*)\n\techo powerpc-apple-machten${UNAME_RELEASE}\n\texit ;;\n    RISC*:Mach:*:*)\n\techo mips-dec-mach_bsd4.3\n\texit ;;\n    RISC*:ULTRIX:*:*)\n\techo mips-dec-ultrix${UNAME_RELEASE}\n\texit ;;\n    VAX*:ULTRIX*:*:*)\n\techo vax-dec-ultrix${UNAME_RELEASE}\n\texit ;;\n    2020:CLIX:*:* | 2430:CLIX:*:*)\n\techo clipper-intergraph-clix${UNAME_RELEASE}\n\texit ;;\n    mips:*:*:UMIPS | mips:*:*:RISCos)\n\teval $set_cc_for_build\n\tsed 's/^\t//' << EOF >$dummy.c\n#ifdef __cplusplus\n#include <stdio.h>  /* for printf() prototype */\n\tint main (int argc, char *argv[]) {\n#else\n\tint main (argc, argv) int argc; char *argv[]; {\n#endif\n\t#if defined (host_mips) && defined (MIPSEB)\n\t#if defined (SYSTYPE_SYSV)\n\t  printf (\"mips-mips-riscos%ssysv\\n\", argv[1]); exit (0);\n\t#endif\n\t#if defined (SYSTYPE_SVR4)\n\t  printf (\"mips-mips-riscos%ssvr4\\n\", argv[1]); exit (0);\n\t#endif\n\t#if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)\n\t  printf (\"mips-mips-riscos%sbsd\\n\", argv[1]); exit (0);\n\t#endif\n\t#endif\n\t  exit (-1);\n\t}\nEOF\n\t$CC_FOR_BUILD -o $dummy $dummy.c &&\n\t  dummyarg=`echo \"${UNAME_RELEASE}\" | sed -n 's/\\([0-9]*\\).*/\\1/p'` &&\n\t  SYSTEM_NAME=`$dummy $dummyarg` &&\n\t    { echo \"$SYSTEM_NAME\"; exit; }\n\techo mips-mips-riscos${UNAME_RELEASE}\n\texit ;;\n    Motorola:PowerMAX_OS:*:*)\n\techo powerpc-motorola-powermax\n\texit ;;\n    Motorola:*:4.3:PL8-*)\n\techo powerpc-harris-powermax\n\texit ;;\n    Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)\n\techo powerpc-harris-powermax\n\texit ;;\n    Night_Hawk:Power_UNIX:*:*)\n\techo powerpc-harris-powerunix\n\texit ;;\n    m88k:CX/UX:7*:*)\n\techo m88k-harris-cxux7\n\texit ;;\n    m88k:*:4*:R4*)\n\techo m88k-motorola-sysv4\n\texit ;;\n    m88k:*:3*:R3*)\n\techo m88k-motorola-sysv3\n\texit ;;\n    AViiON:dgux:*:*)\n\t# DG/UX returns AViiON for all architectures\n\tUNAME_PROCESSOR=`/usr/bin/uname -p`\n\tif [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]\n\tthen\n\t    if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \\\n\t       [ ${TARGET_BINARY_INTERFACE}x = x ]\n\t    then\n\t\techo m88k-dg-dgux${UNAME_RELEASE}\n\t    else\n\t\techo m88k-dg-dguxbcs${UNAME_RELEASE}\n\t    fi\n\telse\n\t    echo i586-dg-dgux${UNAME_RELEASE}\n\tfi\n\texit ;;\n    M88*:DolphinOS:*:*)\t# DolphinOS (SVR3)\n\techo m88k-dolphin-sysv3\n\texit ;;\n    M88*:*:R3*:*)\n\t# Delta 88k system running SVR3\n\techo m88k-motorola-sysv3\n\texit ;;\n    XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)\n\techo m88k-tektronix-sysv3\n\texit ;;\n    Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)\n\techo m68k-tektronix-bsd\n\texit ;;\n    *:IRIX*:*:*)\n\techo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`\n\texit ;;\n    ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.\n\techo romp-ibm-aix     # uname -m gives an 8 hex-code CPU id\n\texit ;;               # Note that: echo \"'`uname -s`'\" gives 'AIX '\n    i*86:AIX:*:*)\n\techo i386-ibm-aix\n\texit ;;\n    ia64:AIX:*:*)\n\tif [ -x /usr/bin/oslevel ] ; then\n\t\tIBM_REV=`/usr/bin/oslevel`\n\telse\n\t\tIBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}\n\tfi\n\techo ${UNAME_MACHINE}-ibm-aix${IBM_REV}\n\texit ;;\n    *:AIX:2:3)\n\tif grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then\n\t\teval $set_cc_for_build\n\t\tsed 's/^\t\t//' << EOF >$dummy.c\n\t\t#include <sys/systemcfg.h>\n\n\t\tmain()\n\t\t\t{\n\t\t\tif (!__power_pc())\n\t\t\t\texit(1);\n\t\t\tputs(\"powerpc-ibm-aix3.2.5\");\n\t\t\texit(0);\n\t\t\t}\nEOF\n\t\tif $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`\n\t\tthen\n\t\t\techo \"$SYSTEM_NAME\"\n\t\telse\n\t\t\techo rs6000-ibm-aix3.2.5\n\t\tfi\n\telif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then\n\t\techo rs6000-ibm-aix3.2.4\n\telse\n\t\techo rs6000-ibm-aix3.2\n\tfi\n\texit ;;\n    *:AIX:*:[4567])\n\tIBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`\n\tif /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then\n\t\tIBM_ARCH=rs6000\n\telse\n\t\tIBM_ARCH=powerpc\n\tfi\n\tif [ -x /usr/bin/lslpp ] ; then\n\t\tIBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc |\n\t\t\t   awk -F: '{ print $3 }' | sed s/[0-9]*$/0/`\n\telse\n\t\tIBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}\n\tfi\n\techo ${IBM_ARCH}-ibm-aix${IBM_REV}\n\texit ;;\n    *:AIX:*:*)\n\techo rs6000-ibm-aix\n\texit ;;\n    ibmrt:4.4BSD:*|romp-ibm:BSD:*)\n\techo romp-ibm-bsd4.4\n\texit ;;\n    ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC BSD and\n\techo romp-ibm-bsd${UNAME_RELEASE}   # 4.3 with uname added to\n\texit ;;                             # report: romp-ibm BSD 4.3\n    *:BOSX:*:*)\n\techo rs6000-bull-bosx\n\texit ;;\n    DPX/2?00:B.O.S.:*:*)\n\techo m68k-bull-sysv3\n\texit ;;\n    9000/[34]??:4.3bsd:1.*:*)\n\techo m68k-hp-bsd\n\texit ;;\n    hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)\n\techo m68k-hp-bsd4.4\n\texit ;;\n    9000/[34678]??:HP-UX:*:*)\n\tHPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`\n\tcase \"${UNAME_MACHINE}\" in\n\t    9000/31? )            HP_ARCH=m68000 ;;\n\t    9000/[34]?? )         HP_ARCH=m68k ;;\n\t    9000/[678][0-9][0-9])\n\t\tif [ -x /usr/bin/getconf ]; then\n\t\t    sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`\n\t\t    sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`\n\t\t    case \"${sc_cpu_version}\" in\n\t\t      523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0\n\t\t      528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1\n\t\t      532)                      # CPU_PA_RISC2_0\n\t\t\tcase \"${sc_kernel_bits}\" in\n\t\t\t  32) HP_ARCH=hppa2.0n ;;\n\t\t\t  64) HP_ARCH=hppa2.0w ;;\n\t\t\t  '') HP_ARCH=hppa2.0 ;;   # HP-UX 10.20\n\t\t\tesac ;;\n\t\t    esac\n\t\tfi\n\t\tif [ \"${HP_ARCH}\" = \"\" ]; then\n\t\t    eval $set_cc_for_build\n\t\t    sed 's/^\t\t//' << EOF >$dummy.c\n\n\t\t#define _HPUX_SOURCE\n\t\t#include <stdlib.h>\n\t\t#include <unistd.h>\n\n\t\tint main ()\n\t\t{\n\t\t#if defined(_SC_KERNEL_BITS)\n\t\t    long bits = sysconf(_SC_KERNEL_BITS);\n\t\t#endif\n\t\t    long cpu  = sysconf (_SC_CPU_VERSION);\n\n\t\t    switch (cpu)\n\t\t\t{\n\t\t\tcase CPU_PA_RISC1_0: puts (\"hppa1.0\"); break;\n\t\t\tcase CPU_PA_RISC1_1: puts (\"hppa1.1\"); break;\n\t\t\tcase CPU_PA_RISC2_0:\n\t\t#if defined(_SC_KERNEL_BITS)\n\t\t\t    switch (bits)\n\t\t\t\t{\n\t\t\t\tcase 64: puts (\"hppa2.0w\"); break;\n\t\t\t\tcase 32: puts (\"hppa2.0n\"); break;\n\t\t\t\tdefault: puts (\"hppa2.0\"); break;\n\t\t\t\t} break;\n\t\t#else  /* !defined(_SC_KERNEL_BITS) */\n\t\t\t    puts (\"hppa2.0\"); break;\n\t\t#endif\n\t\t\tdefault: puts (\"hppa1.0\"); break;\n\t\t\t}\n\t\t    exit (0);\n\t\t}\nEOF\n\t\t    (CCOPTS=\"\" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`\n\t\t    test -z \"$HP_ARCH\" && HP_ARCH=hppa\n\t\tfi ;;\n\tesac\n\tif [ ${HP_ARCH} = hppa2.0w ]\n\tthen\n\t    eval $set_cc_for_build\n\n\t    # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating\n\t    # 32-bit code.  hppa64-hp-hpux* has the same kernel and a compiler\n\t    # generating 64-bit code.  GNU and HP use different nomenclature:\n\t    #\n\t    # $ CC_FOR_BUILD=cc ./config.guess\n\t    # => hppa2.0w-hp-hpux11.23\n\t    # $ CC_FOR_BUILD=\"cc +DA2.0w\" ./config.guess\n\t    # => hppa64-hp-hpux11.23\n\n\t    if echo __LP64__ | (CCOPTS=\"\" $CC_FOR_BUILD -E - 2>/dev/null) |\n\t\tgrep -q __LP64__\n\t    then\n\t\tHP_ARCH=hppa2.0w\n\t    else\n\t\tHP_ARCH=hppa64\n\t    fi\n\tfi\n\techo ${HP_ARCH}-hp-hpux${HPUX_REV}\n\texit ;;\n    ia64:HP-UX:*:*)\n\tHPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`\n\techo ia64-hp-hpux${HPUX_REV}\n\texit ;;\n    3050*:HI-UX:*:*)\n\teval $set_cc_for_build\n\tsed 's/^\t//' << EOF >$dummy.c\n\t#include <unistd.h>\n\tint\n\tmain ()\n\t{\n\t  long cpu = sysconf (_SC_CPU_VERSION);\n\t  /* The order matters, because CPU_IS_HP_MC68K erroneously returns\n\t     true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct\n\t     results, however.  */\n\t  if (CPU_IS_PA_RISC (cpu))\n\t    {\n\t      switch (cpu)\n\t\t{\n\t\t  case CPU_PA_RISC1_0: puts (\"hppa1.0-hitachi-hiuxwe2\"); break;\n\t\t  case CPU_PA_RISC1_1: puts (\"hppa1.1-hitachi-hiuxwe2\"); break;\n\t\t  case CPU_PA_RISC2_0: puts (\"hppa2.0-hitachi-hiuxwe2\"); break;\n\t\t  default: puts (\"hppa-hitachi-hiuxwe2\"); break;\n\t\t}\n\t    }\n\t  else if (CPU_IS_HP_MC68K (cpu))\n\t    puts (\"m68k-hitachi-hiuxwe2\");\n\t  else puts (\"unknown-hitachi-hiuxwe2\");\n\t  exit (0);\n\t}\nEOF\n\t$CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&\n\t\t{ echo \"$SYSTEM_NAME\"; exit; }\n\techo unknown-hitachi-hiuxwe2\n\texit ;;\n    9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )\n\techo hppa1.1-hp-bsd\n\texit ;;\n    9000/8??:4.3bsd:*:*)\n\techo hppa1.0-hp-bsd\n\texit ;;\n    *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)\n\techo hppa1.0-hp-mpeix\n\texit ;;\n    hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )\n\techo hppa1.1-hp-osf\n\texit ;;\n    hp8??:OSF1:*:*)\n\techo hppa1.0-hp-osf\n\texit ;;\n    i*86:OSF1:*:*)\n\tif [ -x /usr/sbin/sysversion ] ; then\n\t    echo ${UNAME_MACHINE}-unknown-osf1mk\n\telse\n\t    echo ${UNAME_MACHINE}-unknown-osf1\n\tfi\n\texit ;;\n    parisc*:Lites*:*:*)\n\techo hppa1.1-hp-lites\n\texit ;;\n    C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)\n\techo c1-convex-bsd\n\texit ;;\n    C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)\n\tif getsysinfo -f scalar_acc\n\tthen echo c32-convex-bsd\n\telse echo c2-convex-bsd\n\tfi\n\texit ;;\n    C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)\n\techo c34-convex-bsd\n\texit ;;\n    C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)\n\techo c38-convex-bsd\n\texit ;;\n    C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)\n\techo c4-convex-bsd\n\texit ;;\n    CRAY*Y-MP:*:*:*)\n\techo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*[A-Z]90:*:*:*)\n\techo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \\\n\t| sed -e 's/CRAY.*\\([A-Z]90\\)/\\1/' \\\n\t      -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \\\n\t      -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*TS:*:*:*)\n\techo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*T3E:*:*:*)\n\techo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*SV1:*:*:*)\n\techo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    *:UNICOS/mp:*:*)\n\techo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)\n\tFUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`\n\tFUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\\///'`\n\tFUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`\n\techo \"${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}\"\n\texit ;;\n    5000:UNIX_System_V:4.*:*)\n\tFUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\\///'`\n\tFUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`\n\techo \"sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}\"\n\texit ;;\n    i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\\ Embedded/OS:*:*)\n\techo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}\n\texit ;;\n    sparc*:BSD/OS:*:*)\n\techo sparc-unknown-bsdi${UNAME_RELEASE}\n\texit ;;\n    *:BSD/OS:*:*)\n\techo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}\n\texit ;;\n    *:FreeBSD:*:*)\n\tUNAME_PROCESSOR=`/usr/bin/uname -p`\n\tcase ${UNAME_PROCESSOR} in\n\t    amd64)\n\t\techo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;\n\t    *)\n\t\techo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;\n\tesac\n\texit ;;\n    i*:CYGWIN*:*)\n\techo ${UNAME_MACHINE}-pc-cygwin\n\texit ;;\n    *:MINGW64*:*)\n\techo ${UNAME_MACHINE}-pc-mingw64\n\texit ;;\n    *:MINGW*:*)\n\techo ${UNAME_MACHINE}-pc-mingw32\n\texit ;;\n    *:MSYS*:*)\n\techo ${UNAME_MACHINE}-pc-msys\n\texit ;;\n    i*:windows32*:*)\n\t# uname -m includes \"-pc\" on this system.\n\techo ${UNAME_MACHINE}-mingw32\n\texit ;;\n    i*:PW*:*)\n\techo ${UNAME_MACHINE}-pc-pw32\n\texit ;;\n    *:Interix*:*)\n\tcase ${UNAME_MACHINE} in\n\t    x86)\n\t\techo i586-pc-interix${UNAME_RELEASE}\n\t\texit ;;\n\t    authenticamd | genuineintel | EM64T)\n\t\techo x86_64-unknown-interix${UNAME_RELEASE}\n\t\texit ;;\n\t    IA64)\n\t\techo ia64-unknown-interix${UNAME_RELEASE}\n\t\texit ;;\n\tesac ;;\n    [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)\n\techo i${UNAME_MACHINE}-pc-mks\n\texit ;;\n    8664:Windows_NT:*)\n\techo x86_64-pc-mks\n\texit ;;\n    i*:Windows_NT*:* | Pentium*:Windows_NT*:*)\n\t# How do we know it's Interix rather than the generic POSIX subsystem?\n\t# It also conflicts with pre-2.0 versions of AT&T UWIN. Should we\n\t# UNAME_MACHINE based on the output of uname instead of i386?\n\techo i586-pc-interix\n\texit ;;\n    i*:UWIN*:*)\n\techo ${UNAME_MACHINE}-pc-uwin\n\texit ;;\n    amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)\n\techo x86_64-unknown-cygwin\n\texit ;;\n    p*:CYGWIN*:*)\n\techo powerpcle-unknown-cygwin\n\texit ;;\n    prep*:SunOS:5.*:*)\n\techo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    *:GNU:*:*)\n\t# the GNU system\n\techo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`\n\texit ;;\n    *:GNU/*:*:*)\n\t# other systems with GNU libc and userland\n\techo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr \"[:upper:]\" \"[:lower:]\"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}\n\texit ;;\n    i*86:Minix:*:*)\n\techo ${UNAME_MACHINE}-pc-minix\n\texit ;;\n    aarch64:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    aarch64_be:Linux:*:*)\n\tUNAME_MACHINE=aarch64_be\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    alpha:Linux:*:*)\n\tcase `sed -n '/^cpu model/s/^.*: \\(.*\\)/\\1/p' < /proc/cpuinfo` in\n\t  EV5)   UNAME_MACHINE=alphaev5 ;;\n\t  EV56)  UNAME_MACHINE=alphaev56 ;;\n\t  PCA56) UNAME_MACHINE=alphapca56 ;;\n\t  PCA57) UNAME_MACHINE=alphapca56 ;;\n\t  EV6)   UNAME_MACHINE=alphaev6 ;;\n\t  EV67)  UNAME_MACHINE=alphaev67 ;;\n\t  EV68*) UNAME_MACHINE=alphaev68 ;;\n\tesac\n\tobjdump --private-headers /bin/sh | grep -q ld.so.1\n\tif test \"$?\" = 0 ; then LIBC=gnulibc1 ; fi\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    arc:Linux:*:* | arceb:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    arm*:Linux:*:*)\n\teval $set_cc_for_build\n\tif echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \\\n\t    | grep -q __ARM_EABI__\n\tthen\n\t    echo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\telse\n\t    if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \\\n\t\t| grep -q __ARM_PCS_VFP\n\t    then\n\t\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi\n\t    else\n\t\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf\n\t    fi\n\tfi\n\texit ;;\n    avr32*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    cris:Linux:*:*)\n\techo ${UNAME_MACHINE}-axis-linux-${LIBC}\n\texit ;;\n    crisv32:Linux:*:*)\n\techo ${UNAME_MACHINE}-axis-linux-${LIBC}\n\texit ;;\n    e2k:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    frv:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    hexagon:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    i*86:Linux:*:*)\n\techo ${UNAME_MACHINE}-pc-linux-${LIBC}\n\texit ;;\n    ia64:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    k1om:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    m32r*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    m68*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    mips:Linux:*:* | mips64:Linux:*:*)\n\teval $set_cc_for_build\n\tsed 's/^\t//' << EOF >$dummy.c\n\t#undef CPU\n\t#undef ${UNAME_MACHINE}\n\t#undef ${UNAME_MACHINE}el\n\t#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)\n\tCPU=${UNAME_MACHINE}el\n\t#else\n\t#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)\n\tCPU=${UNAME_MACHINE}\n\t#else\n\tCPU=\n\t#endif\n\t#endif\nEOF\n\teval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`\n\ttest x\"${CPU}\" != x && { echo \"${CPU}-unknown-linux-${LIBC}\"; exit; }\n\t;;\n    mips64el:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    openrisc*:Linux:*:*)\n\techo or1k-unknown-linux-${LIBC}\n\texit ;;\n    or32:Linux:*:* | or1k*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    padre:Linux:*:*)\n\techo sparc-unknown-linux-${LIBC}\n\texit ;;\n    parisc64:Linux:*:* | hppa64:Linux:*:*)\n\techo hppa64-unknown-linux-${LIBC}\n\texit ;;\n    parisc:Linux:*:* | hppa:Linux:*:*)\n\t# Look for CPU level\n\tcase `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in\n\t  PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;\n\t  PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;\n\t  *)    echo hppa-unknown-linux-${LIBC} ;;\n\tesac\n\texit ;;\n    ppc64:Linux:*:*)\n\techo powerpc64-unknown-linux-${LIBC}\n\texit ;;\n    ppc:Linux:*:*)\n\techo powerpc-unknown-linux-${LIBC}\n\texit ;;\n    ppc64le:Linux:*:*)\n\techo powerpc64le-unknown-linux-${LIBC}\n\texit ;;\n    ppcle:Linux:*:*)\n\techo powerpcle-unknown-linux-${LIBC}\n\texit ;;\n    riscv32:Linux:*:* | riscv64:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    s390:Linux:*:* | s390x:Linux:*:*)\n\techo ${UNAME_MACHINE}-ibm-linux-${LIBC}\n\texit ;;\n    sh64*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    sh*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    sparc:Linux:*:* | sparc64:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    tile*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    vax:Linux:*:*)\n\techo ${UNAME_MACHINE}-dec-linux-${LIBC}\n\texit ;;\n    x86_64:Linux:*:*)\n\techo ${UNAME_MACHINE}-pc-linux-${LIBC}\n\texit ;;\n    xtensa*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    i*86:DYNIX/ptx:4*:*)\n\t# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.\n\t# earlier versions are messed up and put the nodename in both\n\t# sysname and nodename.\n\techo i386-sequent-sysv4\n\texit ;;\n    i*86:UNIX_SV:4.2MP:2.*)\n\t# Unixware is an offshoot of SVR4, but it has its own version\n\t# number series starting with 2...\n\t# I am not positive that other SVR4 systems won't match this,\n\t# I just have to hope.  -- rms.\n\t# Use sysv4.2uw... so that sysv4* matches it.\n\techo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}\n\texit ;;\n    i*86:OS/2:*:*)\n\t# If we were able to find `uname', then EMX Unix compatibility\n\t# is probably installed.\n\techo ${UNAME_MACHINE}-pc-os2-emx\n\texit ;;\n    i*86:XTS-300:*:STOP)\n\techo ${UNAME_MACHINE}-unknown-stop\n\texit ;;\n    i*86:atheos:*:*)\n\techo ${UNAME_MACHINE}-unknown-atheos\n\texit ;;\n    i*86:syllable:*:*)\n\techo ${UNAME_MACHINE}-pc-syllable\n\texit ;;\n    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)\n\techo i386-unknown-lynxos${UNAME_RELEASE}\n\texit ;;\n    i*86:*DOS:*:*)\n\techo ${UNAME_MACHINE}-pc-msdosdjgpp\n\texit ;;\n    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)\n\tUNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\\/MP$//'`\n\tif grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then\n\t\techo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}\n\telse\n\t\techo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}\n\tfi\n\texit ;;\n    i*86:*:5:[678]*)\n\t# UnixWare 7.x, OpenUNIX and OpenServer 6.\n\tcase `/bin/uname -X | grep \"^Machine\"` in\n\t    *486*)\t     UNAME_MACHINE=i486 ;;\n\t    *Pentium)\t     UNAME_MACHINE=i586 ;;\n\t    *Pent*|*Celeron) UNAME_MACHINE=i686 ;;\n\tesac\n\techo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}\n\texit ;;\n    i*86:*:3.2:*)\n\tif test -f /usr/options/cb.name; then\n\t\tUNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`\n\t\techo ${UNAME_MACHINE}-pc-isc$UNAME_REL\n\telif /bin/uname -X 2>/dev/null >/dev/null ; then\n\t\tUNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`\n\t\t(/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486\n\t\t(/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \\\n\t\t\t&& UNAME_MACHINE=i586\n\t\t(/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \\\n\t\t\t&& UNAME_MACHINE=i686\n\t\t(/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \\\n\t\t\t&& UNAME_MACHINE=i686\n\t\techo ${UNAME_MACHINE}-pc-sco$UNAME_REL\n\telse\n\t\techo ${UNAME_MACHINE}-pc-sysv32\n\tfi\n\texit ;;\n    pc:*:*:*)\n\t# Left here for compatibility:\n\t# uname -m prints for DJGPP always 'pc', but it prints nothing about\n\t# the processor, so we play safe by assuming i586.\n\t# Note: whatever this is, it MUST be the same as what config.sub\n\t# prints for the \"djgpp\" host, or else GDB configure will decide that\n\t# this is a cross-build.\n\techo i586-pc-msdosdjgpp\n\texit ;;\n    Intel:Mach:3*:*)\n\techo i386-pc-mach3\n\texit ;;\n    paragon:*:*:*)\n\techo i860-intel-osf1\n\texit ;;\n    i860:*:4.*:*) # i860-SVR4\n\tif grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then\n\t  echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4\n\telse # Add other i860-SVR4 vendors below as they are discovered.\n\t  echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4\n\tfi\n\texit ;;\n    mini*:CTIX:SYS*5:*)\n\t# \"miniframe\"\n\techo m68010-convergent-sysv\n\texit ;;\n    mc68k:UNIX:SYSTEM5:3.51m)\n\techo m68k-convergent-sysv\n\texit ;;\n    M680?0:D-NIX:5.3:*)\n\techo m68k-diab-dnix\n\texit ;;\n    M68*:*:R3V[5678]*:*)\n\ttest -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;\n    3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)\n\tOS_REL=''\n\ttest -r /etc/.relid \\\n\t&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \\([0-9][0-9]\\).*/\\1/p' < /etc/.relid`\n\t/bin/uname -p 2>/dev/null | grep 86 >/dev/null \\\n\t  && { echo i486-ncr-sysv4.3${OS_REL}; exit; }\n\t/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \\\n\t  && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;\n    3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)\n\t/bin/uname -p 2>/dev/null | grep 86 >/dev/null \\\n\t  && { echo i486-ncr-sysv4; exit; } ;;\n    NCR*:*:4.2:* | MPRAS*:*:4.2:*)\n\tOS_REL='.3'\n\ttest -r /etc/.relid \\\n\t    && OS_REL=.`sed -n 's/[^ ]* [^ ]* \\([0-9][0-9]\\).*/\\1/p' < /etc/.relid`\n\t/bin/uname -p 2>/dev/null | grep 86 >/dev/null \\\n\t    && { echo i486-ncr-sysv4.3${OS_REL}; exit; }\n\t/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \\\n\t    && { echo i586-ncr-sysv4.3${OS_REL}; exit; }\n\t/bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \\\n\t    && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;\n    m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)\n\techo m68k-unknown-lynxos${UNAME_RELEASE}\n\texit ;;\n    mc68030:UNIX_System_V:4.*:*)\n\techo m68k-atari-sysv4\n\texit ;;\n    TSUNAMI:LynxOS:2.*:*)\n\techo sparc-unknown-lynxos${UNAME_RELEASE}\n\texit ;;\n    rs6000:LynxOS:2.*:*)\n\techo rs6000-unknown-lynxos${UNAME_RELEASE}\n\texit ;;\n    PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)\n\techo powerpc-unknown-lynxos${UNAME_RELEASE}\n\texit ;;\n    SM[BE]S:UNIX_SV:*:*)\n\techo mips-dde-sysv${UNAME_RELEASE}\n\texit ;;\n    RM*:ReliantUNIX-*:*:*)\n\techo mips-sni-sysv4\n\texit ;;\n    RM*:SINIX-*:*:*)\n\techo mips-sni-sysv4\n\texit ;;\n    *:SINIX-*:*:*)\n\tif uname -p 2>/dev/null >/dev/null ; then\n\t\tUNAME_MACHINE=`(uname -p) 2>/dev/null`\n\t\techo ${UNAME_MACHINE}-sni-sysv4\n\telse\n\t\techo ns32k-sni-sysv\n\tfi\n\texit ;;\n    PENTIUM:*:4.0*:*)\t# Unisys `ClearPath HMP IX 4000' SVR4/MP effort\n\t\t\t# says <Richard.M.Bartel@ccMail.Census.GOV>\n\techo i586-unisys-sysv4\n\texit ;;\n    *:UNIX_System_V:4*:FTX*)\n\t# From Gerald Hewes <hewes@openmarket.com>.\n\t# How about differentiating between stratus architectures? -djm\n\techo hppa1.1-stratus-sysv4\n\texit ;;\n    *:*:*:FTX*)\n\t# From seanf@swdc.stratus.com.\n\techo i860-stratus-sysv4\n\texit ;;\n    i*86:VOS:*:*)\n\t# From Paul.Green@stratus.com.\n\techo ${UNAME_MACHINE}-stratus-vos\n\texit ;;\n    *:VOS:*:*)\n\t# From Paul.Green@stratus.com.\n\techo hppa1.1-stratus-vos\n\texit ;;\n    mc68*:A/UX:*:*)\n\techo m68k-apple-aux${UNAME_RELEASE}\n\texit ;;\n    news*:NEWS-OS:6*:*)\n\techo mips-sony-newsos6\n\texit ;;\n    R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)\n\tif [ -d /usr/nec ]; then\n\t\techo mips-nec-sysv${UNAME_RELEASE}\n\telse\n\t\techo mips-unknown-sysv${UNAME_RELEASE}\n\tfi\n\texit ;;\n    BeBox:BeOS:*:*)\t# BeOS running on hardware made by Be, PPC only.\n\techo powerpc-be-beos\n\texit ;;\n    BeMac:BeOS:*:*)\t# BeOS running on Mac or Mac clone, PPC only.\n\techo powerpc-apple-beos\n\texit ;;\n    BePC:BeOS:*:*)\t# BeOS running on Intel PC compatible.\n\techo i586-pc-beos\n\texit ;;\n    BePC:Haiku:*:*)\t# Haiku running on Intel PC compatible.\n\techo i586-pc-haiku\n\texit ;;\n    x86_64:Haiku:*:*)\n\techo x86_64-unknown-haiku\n\texit ;;\n    SX-4:SUPER-UX:*:*)\n\techo sx4-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-5:SUPER-UX:*:*)\n\techo sx5-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-6:SUPER-UX:*:*)\n\techo sx6-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-7:SUPER-UX:*:*)\n\techo sx7-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-8:SUPER-UX:*:*)\n\techo sx8-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-8R:SUPER-UX:*:*)\n\techo sx8r-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-ACE:SUPER-UX:*:*)\n\techo sxace-nec-superux${UNAME_RELEASE}\n\texit ;;\n    Power*:Rhapsody:*:*)\n\techo powerpc-apple-rhapsody${UNAME_RELEASE}\n\texit ;;\n    *:Rhapsody:*:*)\n\techo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}\n\texit ;;\n    *:Darwin:*:*)\n\tUNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown\n\teval $set_cc_for_build\n\tif test \"$UNAME_PROCESSOR\" = unknown ; then\n\t    UNAME_PROCESSOR=powerpc\n\tfi\n\tif test `echo \"$UNAME_RELEASE\" | sed -e 's/\\..*//'` -le 10 ; then\n\t    if [ \"$CC_FOR_BUILD\" != no_compiler_found ]; then\n\t\tif (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \\\n\t\t    (CCOPTS=\"\" $CC_FOR_BUILD -E - 2>/dev/null) | \\\n\t\t    grep IS_64BIT_ARCH >/dev/null\n\t\tthen\n\t\t    case $UNAME_PROCESSOR in\n\t\t\ti386) UNAME_PROCESSOR=x86_64 ;;\n\t\t\tpowerpc) UNAME_PROCESSOR=powerpc64 ;;\n\t\t    esac\n\t\tfi\n\t    fi\n\telif test \"$UNAME_PROCESSOR\" = i386 ; then\n\t    # Avoid executing cc on OS X 10.9, as it ships with a stub\n\t    # that puts up a graphical alert prompting to install\n\t    # developer tools.  Any system running Mac OS X 10.7 or\n\t    # later (Darwin 11 and later) is required to have a 64-bit\n\t    # processor. This is not true of the ARM version of Darwin\n\t    # that Apple uses in portable devices.\n\t    UNAME_PROCESSOR=x86_64\n\tfi\n\techo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}\n\texit ;;\n    *:procnto*:*:* | *:QNX:[0123456789]*:*)\n\tUNAME_PROCESSOR=`uname -p`\n\tif test \"$UNAME_PROCESSOR\" = x86; then\n\t\tUNAME_PROCESSOR=i386\n\t\tUNAME_MACHINE=pc\n\tfi\n\techo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}\n\texit ;;\n    *:QNX:*:4*)\n\techo i386-pc-qnx\n\texit ;;\n    NEO-?:NONSTOP_KERNEL:*:*)\n\techo neo-tandem-nsk${UNAME_RELEASE}\n\texit ;;\n    NSE-*:NONSTOP_KERNEL:*:*)\n\techo nse-tandem-nsk${UNAME_RELEASE}\n\texit ;;\n    NSR-?:NONSTOP_KERNEL:*:*)\n\techo nsr-tandem-nsk${UNAME_RELEASE}\n\texit ;;\n    *:NonStop-UX:*:*)\n\techo mips-compaq-nonstopux\n\texit ;;\n    BS2000:POSIX*:*:*)\n\techo bs2000-siemens-sysv\n\texit ;;\n    DS/*:UNIX_System_V:*:*)\n\techo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}\n\texit ;;\n    *:Plan9:*:*)\n\t# \"uname -m\" is not consistent, so use $cputype instead. 386\n\t# is converted to i386 for consistency with other x86\n\t# operating systems.\n\tif test \"$cputype\" = 386; then\n\t    UNAME_MACHINE=i386\n\telse\n\t    UNAME_MACHINE=\"$cputype\"\n\tfi\n\techo ${UNAME_MACHINE}-unknown-plan9\n\texit ;;\n    *:TOPS-10:*:*)\n\techo pdp10-unknown-tops10\n\texit ;;\n    *:TENEX:*:*)\n\techo pdp10-unknown-tenex\n\texit ;;\n    KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)\n\techo pdp10-dec-tops20\n\texit ;;\n    XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)\n\techo pdp10-xkl-tops20\n\texit ;;\n    *:TOPS-20:*:*)\n\techo pdp10-unknown-tops20\n\texit ;;\n    *:ITS:*:*)\n\techo pdp10-unknown-its\n\texit ;;\n    SEI:*:*:SEIUX)\n\techo mips-sei-seiux${UNAME_RELEASE}\n\texit ;;\n    *:DragonFly:*:*)\n\techo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`\n\texit ;;\n    *:*VMS:*:*)\n\tUNAME_MACHINE=`(uname -p) 2>/dev/null`\n\tcase \"${UNAME_MACHINE}\" in\n\t    A*) echo alpha-dec-vms ; exit ;;\n\t    I*) echo ia64-dec-vms ; exit ;;\n\t    V*) echo vax-dec-vms ; exit ;;\n\tesac ;;\n    *:XENIX:*:SysV)\n\techo i386-pc-xenix\n\texit ;;\n    i*86:skyos:*:*)\n\techo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'`\n\texit ;;\n    i*86:rdos:*:*)\n\techo ${UNAME_MACHINE}-pc-rdos\n\texit ;;\n    i*86:AROS:*:*)\n\techo ${UNAME_MACHINE}-pc-aros\n\texit ;;\n    x86_64:VMkernel:*:*)\n\techo ${UNAME_MACHINE}-unknown-esx\n\texit ;;\n    amd64:Isilon\\ OneFS:*:*)\n\techo x86_64-unknown-onefs\n\texit ;;\nesac\n\ncat >&2 <<EOF\n$0: unable to guess system type\n\nThis script (version $timestamp), has failed to recognize the\noperating system you are using. If your script is old, overwrite\nconfig.guess and config.sub with the latest versions from:\n\n  http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess\nand\n  http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub\n\nIf $0 has already been updated, send the following data and any\ninformation you think might be pertinent to config-patches@gnu.org to\nprovide the necessary information to handle your system.\n\nconfig.guess timestamp = $timestamp\n\nuname -m = `(uname -m) 2>/dev/null || echo unknown`\nuname -r = `(uname -r) 2>/dev/null || echo unknown`\nuname -s = `(uname -s) 2>/dev/null || echo unknown`\nuname -v = `(uname -v) 2>/dev/null || echo unknown`\n\n/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`\n/bin/uname -X     = `(/bin/uname -X) 2>/dev/null`\n\nhostinfo               = `(hostinfo) 2>/dev/null`\n/bin/universe          = `(/bin/universe) 2>/dev/null`\n/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null`\n/bin/arch              = `(/bin/arch) 2>/dev/null`\n/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null`\n/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`\n\nUNAME_MACHINE = ${UNAME_MACHINE}\nUNAME_RELEASE = ${UNAME_RELEASE}\nUNAME_SYSTEM  = ${UNAME_SYSTEM}\nUNAME_VERSION = ${UNAME_VERSION}\nEOF\n\nexit 1\n\n# Local variables:\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"timestamp='\"\n# time-stamp-format: \"%:y-%02m-%02d\"\n# time-stamp-end: \"'\"\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/config.libpath",
    "content": "#! /bin/sh\n# Output a system dependent set of variables, describing how to set the\n# run time search path of shared libraries in an executable at run time.\n#\n#   Copyright 1996-2017 Free Software Foundation, Inc.\n#   Taken from GNU libtool, 2003\n#   Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996\n#\n#   This program is free software: you can redistribute it and/or modify\n#   it under the terms of the GNU General Public License as published by\n#   the Free Software Foundation; either version 3 of the License, or\n#   (at your option) any later version.\n#\n#   This program is distributed in the hope that it will be useful,\n#   but WITHOUT ANY WARRANTY; without even the implied warranty of\n#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n#   GNU General Public License for more details.\n#\n#   You should have received a copy of the GNU General Public License\n#   along with this program.  If not, see <http://www.gnu.org/licenses/>.\n#\n#   As a special exception to the GNU General Public License, if you\n#   distribute this file as part of a program that contains a\n#   configuration script generated by Autoconf, you may include it under\n#   the same distribution terms that you use for the rest of that program.\n#\n# The first argument passed to this file is the canonical host specification,\n#    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM\n# or\n#    CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM\n# The environment variable LD should be set by the caller.\n#\n# The set of defined variables is at the end of this script.\n\nhost=\"$1\"\nhost_cpu=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\1/'`\nhost_vendor=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\2/'`\nhost_os=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\3/'`\n\nshlibpath_var=\ncase $host_os in\n  aix3*)\n    shlibpath_var=LIBPATH\n    ;;\n  aix[4-9]*)\n    if test \"$host_cpu\" = ia64; then\n      # AIX 5 supports IA64\n      shlibpath_var=LD_LIBRARY_PATH\n    else\n      shlibpath_var=LIBPATH\n    fi\n    ;;\n  beos*)\n    shlibpath_var=LIBRARY_PATH\n    ;;\n  bsdi[45]*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  cygwin* | mingw* | pw32* | cegcc*)\n    # FIXME: first we should search . and the directory the executable is in\n    shlibpath_var=PATH\n    ;;\n  darwin* | rhapsody*)\n    shlibpath_var=DYLD_LIBRARY_PATH\n    ;;\n  dgux*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  freebsd* | dragonfly*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  gnu*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  hpux9* | hpux10* | hpux11*)\n    case \"$host_cpu\" in\n      ia64* | hppa*64*) shlibpath_var=LD_LIBRARY_PATH ;;\n      *) shlibpath_var=SHLIB_PATH ;;\n    esac\n    ;;\n  interix[3-9]*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  irix5* | irix6* | nonstopux*)\n    case $host_os in\n      irix5* | nonstopux*)\n        shlibsuff=\n        ;;\n      *)\n        case $LD in # libtool.m4 will add one of these switches to LD\n          *-32|*\"-32 \") shlibsuff= ;;\n          *-n32|*\"-n32 \") shlibsuff=N32 ;;\n          *-64|*\"-64 \") shlibsuff=64 ;;\n          *) shlibsuff= ;;\n        esac\n        ;;\n    esac\n    shlibpath_var=LD_LIBRARY${shlibsuff}_PATH\n    ;;\n  linux*oldld* | linux*aout* | linux*coff*)\n    ;;\n  linux* | k*bsd*-gnu)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  netbsd*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  newsos6)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  nto-qnx*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  openbsd*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  os2*)\n    shlibpath_var=LIBPATH\n    ;;\n  osf3* | osf4* | osf5*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  rdos*)\n    ;;\n  solaris*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  sunos4*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  sysv4 | sysv4.3*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  sysv4*MP*)\n    if test -d /usr/nec ;then\n      shlibpath_var=LD_LIBRARY_PATH\n    fi\n    ;;\n  sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  uts4*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\nesac\n\nLC_ALL=C sed -e 's/^\\([a-zA-Z0-9_]*\\)=/acl_cv_\\1=/' <<EOF\n\n# This is the shared library path variable.\nshlibpath_var=$shlibpath_var\n\nEOF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/config.rpath",
    "content": "#! /bin/sh\n# Output a system dependent set of variables, describing how to set the\n# run time search path of shared libraries in an executable.\n#\n#   Copyright 1996-2017 Free Software Foundation, Inc.\n#   Taken from GNU libtool, 2001\n#   Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996\n#\n#   This file is free software; the Free Software Foundation gives\n#   unlimited permission to copy and/or distribute it, with or without\n#   modifications, as long as this notice is preserved.\n#\n# The first argument passed to this file is the canonical host specification,\n#    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM\n# or\n#    CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM\n# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld\n# should be set by the caller.\n#\n# The set of defined variables is at the end of this script.\n\n# Known limitations:\n# - On IRIX 6.5 with CC=\"cc\", the run time search patch must not be longer\n#   than 256 bytes, otherwise the compiler driver will dump core. The only\n#   known workaround is to choose shorter directory names for the build\n#   directory and/or the installation directory.\n\n# All known linkers require a '.a' archive for static linking (except MSVC,\n# which needs '.lib').\nlibext=a\nshrext=.so\n\nhost=\"$1\"\nhost_cpu=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\1/'`\nhost_vendor=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\2/'`\nhost_os=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\3/'`\n\n# Code taken from libtool.m4's _LT_CC_BASENAME.\n\nfor cc_temp in $CC\"\"; do\n  case $cc_temp in\n    compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n    distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n    \\-*) ;;\n    *) break;;\n  esac\ndone\ncc_basename=`echo \"$cc_temp\" | sed -e 's%^.*/%%'`\n\n# Code taken from libtool.m4's _LT_COMPILER_PIC.\n\nwl=\nif test \"$GCC\" = yes; then\n  wl='-Wl,'\nelse\n  case \"$host_os\" in\n    aix*)\n      wl='-Wl,'\n      ;;\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      ;;\n    hpux9* | hpux10* | hpux11*)\n      wl='-Wl,'\n      ;;\n    irix5* | irix6* | nonstopux*)\n      wl='-Wl,'\n      ;;\n    linux* | k*bsd*-gnu | kopensolaris*-gnu)\n      case $cc_basename in\n        ecc*)\n          wl='-Wl,'\n          ;;\n        icc* | ifort*)\n          wl='-Wl,'\n          ;;\n        lf95*)\n          wl='-Wl,'\n          ;;\n        nagfor*)\n          wl='-Wl,-Wl,,'\n          ;;\n        pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)\n          wl='-Wl,'\n          ;;\n        ccc*)\n          wl='-Wl,'\n          ;;\n        xl* | bgxl* | bgf* | mpixl*)\n          wl='-Wl,'\n          ;;\n        como)\n          wl='-lopt='\n          ;;\n        *)\n          case `$CC -V 2>&1 | sed 5q` in\n            *Sun\\ F* | *Sun*Fortran*)\n              wl=\n              ;;\n            *Sun\\ C*)\n              wl='-Wl,'\n              ;;\n          esac\n          ;;\n      esac\n      ;;\n    newsos6)\n      ;;\n    *nto* | *qnx*)\n      ;;\n    osf3* | osf4* | osf5*)\n      wl='-Wl,'\n      ;;\n    rdos*)\n      ;;\n    solaris*)\n      case $cc_basename in\n        f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)\n          wl='-Qoption ld '\n          ;;\n        *)\n          wl='-Wl,'\n          ;;\n      esac\n      ;;\n    sunos4*)\n      wl='-Qoption ld '\n      ;;\n    sysv4 | sysv4.2uw2* | sysv4.3*)\n      wl='-Wl,'\n      ;;\n    sysv4*MP*)\n      ;;\n    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n      wl='-Wl,'\n      ;;\n    unicos*)\n      wl='-Wl,'\n      ;;\n    uts4*)\n      ;;\n  esac\nfi\n\n# Code taken from libtool.m4's _LT_LINKER_SHLIBS.\n\nhardcode_libdir_flag_spec=\nhardcode_libdir_separator=\nhardcode_direct=no\nhardcode_minus_L=no\n\ncase \"$host_os\" in\n  cygwin* | mingw* | pw32* | cegcc*)\n    # FIXME: the MSVC++ port hasn't been tested in a loooong time\n    # When not using gcc, we currently assume that we are using\n    # Microsoft Visual C++.\n    if test \"$GCC\" != yes; then\n      with_gnu_ld=no\n    fi\n    ;;\n  interix*)\n    # we just hope/assume this is gcc and not c89 (= MSVC++)\n    with_gnu_ld=yes\n    ;;\n  openbsd*)\n    with_gnu_ld=no\n    ;;\nesac\n\nld_shlibs=yes\nif test \"$with_gnu_ld\" = yes; then\n  # Set some defaults for GNU ld with shared library support. These\n  # are reset later if shared libraries are not supported. Putting them\n  # here allows them to be overridden if necessary.\n  # Unlike libtool, we use -rpath here, not --rpath, since the documented\n  # option of GNU ld is called -rpath, not --rpath.\n  hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'\n  case \"$host_os\" in\n    aix[3-9]*)\n      # On AIX/PPC, the GNU linker is very broken\n      if test \"$host_cpu\" != ia64; then\n        ld_shlibs=no\n      fi\n      ;;\n    amigaos*)\n      case \"$host_cpu\" in\n        powerpc)\n          ;;\n        m68k)\n          hardcode_libdir_flag_spec='-L$libdir'\n          hardcode_minus_L=yes\n          ;;\n      esac\n      ;;\n    beos*)\n      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then\n        :\n      else\n        ld_shlibs=no\n      fi\n      ;;\n    cygwin* | mingw* | pw32* | cegcc*)\n      # hardcode_libdir_flag_spec is actually meaningless, as there is\n      # no search path for DLLs.\n      hardcode_libdir_flag_spec='-L$libdir'\n      if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then\n        :\n      else\n        ld_shlibs=no\n      fi\n      ;;\n    haiku*)\n      ;;\n    interix[3-9]*)\n      hardcode_direct=no\n      hardcode_libdir_flag_spec='${wl}-rpath,$libdir'\n      ;;\n    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)\n      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then\n        :\n      else\n        ld_shlibs=no\n      fi\n      ;;\n    netbsd*)\n      ;;\n    solaris*)\n      if $LD -v 2>&1 | grep 'BFD 2\\.8' > /dev/null; then\n        ld_shlibs=no\n      elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then\n        :\n      else\n        ld_shlibs=no\n      fi\n      ;;\n    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)\n      case `$LD -v 2>&1` in\n        *\\ [01].* | *\\ 2.[0-9].* | *\\ 2.1[0-5].*)\n          ld_shlibs=no\n          ;;\n        *)\n          if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then\n            hardcode_libdir_flag_spec='`test -z \"$SCOABSPATH\" && echo ${wl}-rpath,$libdir`'\n          else\n            ld_shlibs=no\n          fi\n          ;;\n      esac\n      ;;\n    sunos4*)\n      hardcode_direct=yes\n      ;;\n    *)\n      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then\n        :\n      else\n        ld_shlibs=no\n      fi\n      ;;\n  esac\n  if test \"$ld_shlibs\" = no; then\n    hardcode_libdir_flag_spec=\n  fi\nelse\n  case \"$host_os\" in\n    aix3*)\n      # Note: this linker hardcodes the directories in LIBPATH if there\n      # are no directories specified by -L.\n      hardcode_minus_L=yes\n      if test \"$GCC\" = yes; then\n        # Neither direct hardcoding nor static linking is supported with a\n        # broken collect2.\n        hardcode_direct=unsupported\n      fi\n      ;;\n    aix[4-9]*)\n      if test \"$host_cpu\" = ia64; then\n        # On IA64, the linker does run time linking by default, so we don't\n        # have to do anything special.\n        aix_use_runtimelinking=no\n      else\n        aix_use_runtimelinking=no\n        # Test if we are trying to use run time linking or normal\n        # AIX style linking. If -brtl is somewhere in LDFLAGS, we\n        # need to do runtime linking.\n        case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)\n          for ld_flag in $LDFLAGS; do\n            if (test $ld_flag = \"-brtl\" || test $ld_flag = \"-Wl,-brtl\"); then\n              aix_use_runtimelinking=yes\n              break\n            fi\n          done\n          ;;\n        esac\n      fi\n      hardcode_direct=yes\n      hardcode_libdir_separator=':'\n      if test \"$GCC\" = yes; then\n        case $host_os in aix4.[012]|aix4.[012].*)\n          collect2name=`${CC} -print-prog-name=collect2`\n          if test -f \"$collect2name\" && \\\n            strings \"$collect2name\" | grep resolve_lib_name >/dev/null\n          then\n            # We have reworked collect2\n            :\n          else\n            # We have old collect2\n            hardcode_direct=unsupported\n            hardcode_minus_L=yes\n            hardcode_libdir_flag_spec='-L$libdir'\n            hardcode_libdir_separator=\n          fi\n          ;;\n        esac\n      fi\n      # Begin _LT_AC_SYS_LIBPATH_AIX.\n      echo 'int main () { return 0; }' > conftest.c\n      ${CC} ${LDFLAGS} conftest.c -o conftest\n      aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\\(.*\\)$/\\1/; p; }\n}'`\n      if test -z \"$aix_libpath\"; then\n        aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\\(.*\\)$/\\1/; p; }\n}'`\n      fi\n      if test -z \"$aix_libpath\"; then\n        aix_libpath=\"/usr/lib:/lib\"\n      fi\n      rm -f conftest.c conftest\n      # End _LT_AC_SYS_LIBPATH_AIX.\n      if test \"$aix_use_runtimelinking\" = yes; then\n        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'\"$aix_libpath\"\n      else\n        if test \"$host_cpu\" = ia64; then\n          hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'\n        else\n          hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'\"$aix_libpath\"\n        fi\n      fi\n      ;;\n    amigaos*)\n      case \"$host_cpu\" in\n        powerpc)\n          ;;\n        m68k)\n          hardcode_libdir_flag_spec='-L$libdir'\n          hardcode_minus_L=yes\n          ;;\n      esac\n      ;;\n    bsdi[45]*)\n      ;;\n    cygwin* | mingw* | pw32* | cegcc*)\n      # When not using gcc, we currently assume that we are using\n      # Microsoft Visual C++.\n      # hardcode_libdir_flag_spec is actually meaningless, as there is\n      # no search path for DLLs.\n      hardcode_libdir_flag_spec=' '\n      libext=lib\n      ;;\n    darwin* | rhapsody*)\n      hardcode_direct=no\n      if { case $cc_basename in ifort*) true;; *) test \"$GCC\" = yes;; esac; }; then\n        :\n      else\n        ld_shlibs=no\n      fi\n      ;;\n    dgux*)\n      hardcode_libdir_flag_spec='-L$libdir'\n      ;;\n    freebsd2.[01]*)\n      hardcode_direct=yes\n      hardcode_minus_L=yes\n      ;;\n    freebsd* | dragonfly*)\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      ;;\n    hpux9*)\n      hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'\n      hardcode_libdir_separator=:\n      hardcode_direct=yes\n      # hardcode_minus_L: Not really in the search PATH,\n      # but as the default location of the library.\n      hardcode_minus_L=yes\n      ;;\n    hpux10*)\n      if test \"$with_gnu_ld\" = no; then\n        hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'\n        hardcode_libdir_separator=:\n        hardcode_direct=yes\n        # hardcode_minus_L: Not really in the search PATH,\n        # but as the default location of the library.\n        hardcode_minus_L=yes\n      fi\n      ;;\n    hpux11*)\n      if test \"$with_gnu_ld\" = no; then\n        hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'\n        hardcode_libdir_separator=:\n        case $host_cpu in\n          hppa*64*|ia64*)\n            hardcode_direct=no\n            ;;\n          *)\n            hardcode_direct=yes\n            # hardcode_minus_L: Not really in the search PATH,\n            # but as the default location of the library.\n            hardcode_minus_L=yes\n            ;;\n        esac\n      fi\n      ;;\n    irix5* | irix6* | nonstopux*)\n      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'\n      hardcode_libdir_separator=:\n      ;;\n    netbsd*)\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      ;;\n    newsos6)\n      hardcode_direct=yes\n      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'\n      hardcode_libdir_separator=:\n      ;;\n    *nto* | *qnx*)\n      ;;\n    openbsd*)\n      if test -f /usr/libexec/ld.so; then\n        hardcode_direct=yes\n        if test -z \"`echo __ELF__ | $CC -E - | grep __ELF__`\" || test \"$host_os-$host_cpu\" = \"openbsd2.8-powerpc\"; then\n          hardcode_libdir_flag_spec='${wl}-rpath,$libdir'\n        else\n          case \"$host_os\" in\n            openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)\n              hardcode_libdir_flag_spec='-R$libdir'\n              ;;\n            *)\n              hardcode_libdir_flag_spec='${wl}-rpath,$libdir'\n              ;;\n          esac\n        fi\n      else\n        ld_shlibs=no\n      fi\n      ;;\n    os2*)\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_minus_L=yes\n      ;;\n    osf3*)\n      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'\n      hardcode_libdir_separator=:\n      ;;\n    osf4* | osf5*)\n      if test \"$GCC\" = yes; then\n        hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'\n      else\n        # Both cc and cxx compiler support -rpath directly\n        hardcode_libdir_flag_spec='-rpath $libdir'\n      fi\n      hardcode_libdir_separator=:\n      ;;\n    solaris*)\n      hardcode_libdir_flag_spec='-R$libdir'\n      ;;\n    sunos4*)\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_direct=yes\n      hardcode_minus_L=yes\n      ;;\n    sysv4)\n      case $host_vendor in\n        sni)\n          hardcode_direct=yes # is this really true???\n          ;;\n        siemens)\n          hardcode_direct=no\n          ;;\n        motorola)\n          hardcode_direct=no #Motorola manual says yes, but my tests say they lie\n          ;;\n      esac\n      ;;\n    sysv4.3*)\n      ;;\n    sysv4*MP*)\n      if test -d /usr/nec; then\n        ld_shlibs=yes\n      fi\n      ;;\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)\n      ;;\n    sysv5* | sco3.2v5* | sco5v6*)\n      hardcode_libdir_flag_spec='`test -z \"$SCOABSPATH\" && echo ${wl}-R,$libdir`'\n      hardcode_libdir_separator=':'\n      ;;\n    uts4*)\n      hardcode_libdir_flag_spec='-L$libdir'\n      ;;\n    *)\n      ld_shlibs=no\n      ;;\n  esac\nfi\n\n# Check dynamic linker characteristics\n# Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER.\n# Unlike libtool.m4, here we don't care about _all_ names of the library, but\n# only about the one the linker finds when passed -lNAME. This is the last\n# element of library_names_spec in libtool.m4, or possibly two of them if the\n# linker has special search rules.\nlibrary_names_spec=      # the last element of library_names_spec in libtool.m4\nlibname_spec='lib$name'\ncase \"$host_os\" in\n  aix3*)\n    library_names_spec='$libname.a'\n    ;;\n  aix[4-9]*)\n    library_names_spec='$libname$shrext'\n    ;;\n  amigaos*)\n    case \"$host_cpu\" in\n      powerpc*)\n        library_names_spec='$libname$shrext' ;;\n      m68k)\n        library_names_spec='$libname.a' ;;\n    esac\n    ;;\n  beos*)\n    library_names_spec='$libname$shrext'\n    ;;\n  bsdi[45]*)\n    library_names_spec='$libname$shrext'\n    ;;\n  cygwin* | mingw* | pw32* | cegcc*)\n    shrext=.dll\n    library_names_spec='$libname.dll.a $libname.lib'\n    ;;\n  darwin* | rhapsody*)\n    shrext=.dylib\n    library_names_spec='$libname$shrext'\n    ;;\n  dgux*)\n    library_names_spec='$libname$shrext'\n    ;;\n  freebsd[23].*)\n    library_names_spec='$libname$shrext$versuffix'\n    ;;\n  freebsd* | dragonfly*)\n    library_names_spec='$libname$shrext'\n    ;;\n  gnu*)\n    library_names_spec='$libname$shrext'\n    ;;\n  haiku*)\n    library_names_spec='$libname$shrext'\n    ;;\n  hpux9* | hpux10* | hpux11*)\n    case $host_cpu in\n      ia64*)\n        shrext=.so\n        ;;\n      hppa*64*)\n        shrext=.sl\n        ;;\n      *)\n        shrext=.sl\n        ;;\n    esac\n    library_names_spec='$libname$shrext'\n    ;;\n  interix[3-9]*)\n    library_names_spec='$libname$shrext'\n    ;;\n  irix5* | irix6* | nonstopux*)\n    library_names_spec='$libname$shrext'\n    case \"$host_os\" in\n      irix5* | nonstopux*)\n        libsuff= shlibsuff=\n        ;;\n      *)\n        case $LD in\n          *-32|*\"-32 \"|*-melf32bsmip|*\"-melf32bsmip \") libsuff= shlibsuff= ;;\n          *-n32|*\"-n32 \"|*-melf32bmipn32|*\"-melf32bmipn32 \") libsuff=32 shlibsuff=N32 ;;\n          *-64|*\"-64 \"|*-melf64bmip|*\"-melf64bmip \") libsuff=64 shlibsuff=64 ;;\n          *) libsuff= shlibsuff= ;;\n        esac\n        ;;\n    esac\n    ;;\n  linux*oldld* | linux*aout* | linux*coff*)\n    ;;\n  linux* | k*bsd*-gnu | kopensolaris*-gnu)\n    library_names_spec='$libname$shrext'\n    ;;\n  knetbsd*-gnu)\n    library_names_spec='$libname$shrext'\n    ;;\n  netbsd*)\n    library_names_spec='$libname$shrext'\n    ;;\n  newsos6)\n    library_names_spec='$libname$shrext'\n    ;;\n  *nto* | *qnx*)\n    library_names_spec='$libname$shrext'\n    ;;\n  openbsd*)\n    library_names_spec='$libname$shrext$versuffix'\n    ;;\n  os2*)\n    libname_spec='$name'\n    shrext=.dll\n    library_names_spec='$libname.a'\n    ;;\n  osf3* | osf4* | osf5*)\n    library_names_spec='$libname$shrext'\n    ;;\n  rdos*)\n    ;;\n  solaris*)\n    library_names_spec='$libname$shrext'\n    ;;\n  sunos4*)\n    library_names_spec='$libname$shrext$versuffix'\n    ;;\n  sysv4 | sysv4.3*)\n    library_names_spec='$libname$shrext'\n    ;;\n  sysv4*MP*)\n    library_names_spec='$libname$shrext'\n    ;;\n  sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n    library_names_spec='$libname$shrext'\n    ;;\n  tpf*)\n    library_names_spec='$libname$shrext'\n    ;;\n  uts4*)\n    library_names_spec='$libname$shrext'\n    ;;\nesac\n\nsed_quote_subst='s/\\([\"`$\\\\]\\)/\\\\\\1/g'\nescaped_wl=`echo \"X$wl\" | sed -e 's/^X//' -e \"$sed_quote_subst\"`\nshlibext=`echo \"$shrext\" | sed -e 's,^\\.,,'`\nescaped_libname_spec=`echo \"X$libname_spec\" | sed -e 's/^X//' -e \"$sed_quote_subst\"`\nescaped_library_names_spec=`echo \"X$library_names_spec\" | sed -e 's/^X//' -e \"$sed_quote_subst\"`\nescaped_hardcode_libdir_flag_spec=`echo \"X$hardcode_libdir_flag_spec\" | sed -e 's/^X//' -e \"$sed_quote_subst\"`\n\nLC_ALL=C sed -e 's/^\\([a-zA-Z0-9_]*\\)=/acl_cv_\\1=/' <<EOF\n\n# How to pass a linker flag through the compiler.\nwl=\"$escaped_wl\"\n\n# Static library suffix (normally \"a\").\nlibext=\"$libext\"\n\n# Shared library suffix (normally \"so\").\nshlibext=\"$shlibext\"\n\n# Format of library name prefix.\nlibname_spec=\"$escaped_libname_spec\"\n\n# Library names that the linker finds when passed -lNAME.\nlibrary_names_spec=\"$escaped_library_names_spec\"\n\n# Flag to hardcode \\$libdir into a binary during linking.\n# This must work even if \\$libdir does not exist.\nhardcode_libdir_flag_spec=\"$escaped_hardcode_libdir_flag_spec\"\n\n# Whether we need a single -rpath flag with a separated argument.\nhardcode_libdir_separator=\"$hardcode_libdir_separator\"\n\n# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the\n# resulting binary.\nhardcode_direct=\"$hardcode_direct\"\n\n# Set to yes if using the -LDIR flag during linking hardcodes DIR into the\n# resulting binary.\nhardcode_minus_L=\"$hardcode_minus_L\"\n\nEOF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/config.sub",
    "content": "#! /bin/sh\n# Configuration validation subroutine script.\n#   Copyright 1992-2017 Free Software Foundation, Inc.\n\ntimestamp='2016-12-24'\n\n# This file is free software; you can redistribute it and/or modify it\n# under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, see <http://www.gnu.org/licenses/>.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that\n# program.  This Exception is an additional permission under section 7\n# of the GNU General Public License, version 3 (\"GPLv3\").\n\n\n# Please send patches to <config-patches@gnu.org>.\n#\n# Configuration subroutine to validate and canonicalize a configuration type.\n# Supply the specified configuration type as an argument.\n# If it is invalid, we print an error message on stderr and exit with code 1.\n# Otherwise, we print the canonical config type on stdout and succeed.\n\n# You can get the latest version of this script from:\n# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub\n\n# This file is supposed to be the same for all GNU packages\n# and recognize all the CPU types, system types and aliases\n# that are meaningful with *any* GNU software.\n# Each package is responsible for reporting which valid configurations\n# it does not support.  The user should be able to distinguish\n# a failure to support a valid configuration from a meaningless\n# configuration.\n\n# The goal of this file is to map all the various variations of a given\n# machine specification into a single specification in the form:\n#\tCPU_TYPE-MANUFACTURER-OPERATING_SYSTEM\n# or in some cases, the newer four-part form:\n#\tCPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM\n# It is wrong to echo any other type of specification.\n\nme=`echo \"$0\" | sed -e 's,.*/,,'`\n\nusage=\"\\\nUsage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS\n\nCanonicalize a configuration name.\n\nOperation modes:\n  -h, --help         print this help, then exit\n  -t, --time-stamp   print date of last modification, then exit\n  -v, --version      print version number, then exit\n\nReport bugs and patches to <config-patches@gnu.org>.\"\n\nversion=\"\\\nGNU config.sub ($timestamp)\n\nCopyright 1992-2016 Free Software Foundation, Inc.\n\nThis is free software; see the source for copying conditions.  There is NO\nwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\"\n\nhelp=\"\nTry \\`$me --help' for more information.\"\n\n# Parse command line\nwhile test $# -gt 0 ; do\n  case $1 in\n    --time-stamp | --time* | -t )\n       echo \"$timestamp\" ; exit ;;\n    --version | -v )\n       echo \"$version\" ; exit ;;\n    --help | --h* | -h )\n       echo \"$usage\"; exit ;;\n    -- )     # Stop option processing\n       shift; break ;;\n    - )\t# Use stdin as input.\n       break ;;\n    -* )\n       echo \"$me: invalid option $1$help\"\n       exit 1 ;;\n\n    *local*)\n       # First pass through any local machine types.\n       echo $1\n       exit ;;\n\n    * )\n       break ;;\n  esac\ndone\n\ncase $# in\n 0) echo \"$me: missing argument$help\" >&2\n    exit 1;;\n 1) ;;\n *) echo \"$me: too many arguments$help\" >&2\n    exit 1;;\nesac\n\n# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).\n# Here we must recognize all the valid KERNEL-OS combinations.\nmaybe_os=`echo $1 | sed 's/^\\(.*\\)-\\([^-]*-[^-]*\\)$/\\2/'`\ncase $maybe_os in\n  nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \\\n  linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \\\n  knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \\\n  kopensolaris*-gnu* | cloudabi*-eabi* | \\\n  storm-chaos* | os2-emx* | rtmk-nova*)\n    os=-$maybe_os\n    basic_machine=`echo $1 | sed 's/^\\(.*\\)-\\([^-]*-[^-]*\\)$/\\1/'`\n    ;;\n  android-linux)\n    os=-linux-android\n    basic_machine=`echo $1 | sed 's/^\\(.*\\)-\\([^-]*-[^-]*\\)$/\\1/'`-unknown\n    ;;\n  *)\n    basic_machine=`echo $1 | sed 's/-[^-]*$//'`\n    if [ $basic_machine != $1 ]\n    then os=`echo $1 | sed 's/.*-/-/'`\n    else os=; fi\n    ;;\nesac\n\n### Let's recognize common machines as not being operating systems so\n### that things like config.sub decstation-3100 work.  We also\n### recognize some manufacturers as not being operating systems, so we\n### can provide default operating systems below.\ncase $os in\n\t-sun*os*)\n\t\t# Prevent following clause from handling this invalid input.\n\t\t;;\n\t-dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \\\n\t-att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \\\n\t-unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \\\n\t-convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\\\n\t-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \\\n\t-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \\\n\t-apple | -axis | -knuth | -cray | -microblaze*)\n\t\tos=\n\t\tbasic_machine=$1\n\t\t;;\n\t-bluegene*)\n\t\tos=-cnk\n\t\t;;\n\t-sim | -cisco | -oki | -wec | -winbond)\n\t\tos=\n\t\tbasic_machine=$1\n\t\t;;\n\t-scout)\n\t\t;;\n\t-wrs)\n\t\tos=-vxworks\n\t\tbasic_machine=$1\n\t\t;;\n\t-chorusos*)\n\t\tos=-chorusos\n\t\tbasic_machine=$1\n\t\t;;\n\t-chorusrdb)\n\t\tos=-chorusrdb\n\t\tbasic_machine=$1\n\t\t;;\n\t-hiux*)\n\t\tos=-hiuxwe2\n\t\t;;\n\t-sco6)\n\t\tos=-sco5v6\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco5)\n\t\tos=-sco3.2v5\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco4)\n\t\tos=-sco3.2v4\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco3.2.[4-9]*)\n\t\tos=`echo $os | sed -e 's/sco3.2./sco3.2v/'`\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco3.2v[4-9]*)\n\t\t# Don't forget version if it is 3.2v4 or newer.\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco5v6*)\n\t\t# Don't forget version if it is 3.2v4 or newer.\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco*)\n\t\tos=-sco3.2v2\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-udk*)\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-isc)\n\t\tos=-isc2.2\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-clix*)\n\t\tbasic_machine=clipper-intergraph\n\t\t;;\n\t-isc*)\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-lynx*178)\n\t\tos=-lynxos178\n\t\t;;\n\t-lynx*5)\n\t\tos=-lynxos5\n\t\t;;\n\t-lynx*)\n\t\tos=-lynxos\n\t\t;;\n\t-ptx*)\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`\n\t\t;;\n\t-windowsnt*)\n\t\tos=`echo $os | sed -e 's/windowsnt/winnt/'`\n\t\t;;\n\t-psos*)\n\t\tos=-psos\n\t\t;;\n\t-mint | -mint[0-9]*)\n\t\tbasic_machine=m68k-atari\n\t\tos=-mint\n\t\t;;\nesac\n\n# Decode aliases for certain CPU-COMPANY combinations.\ncase $basic_machine in\n\t# Recognize the basic CPU types without company name.\n\t# Some are omitted here because they have special meanings below.\n\t1750a | 580 \\\n\t| a29k \\\n\t| aarch64 | aarch64_be \\\n\t| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \\\n\t| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \\\n\t| am33_2.0 \\\n\t| arc | arceb \\\n\t| arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \\\n\t| avr | avr32 \\\n\t| ba \\\n\t| be32 | be64 \\\n\t| bfin \\\n\t| c4x | c8051 | clipper \\\n\t| d10v | d30v | dlx | dsp16xx \\\n\t| e2k | epiphany \\\n\t| fido | fr30 | frv | ft32 \\\n\t| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \\\n\t| hexagon \\\n\t| i370 | i860 | i960 | ia64 \\\n\t| ip2k | iq2000 \\\n\t| k1om \\\n\t| le32 | le64 \\\n\t| lm32 \\\n\t| m32c | m32r | m32rle | m68000 | m68k | m88k \\\n\t| maxq | mb | microblaze | microblazeel | mcore | mep | metag \\\n\t| mips | mipsbe | mipseb | mipsel | mipsle \\\n\t| mips16 \\\n\t| mips64 | mips64el \\\n\t| mips64octeon | mips64octeonel \\\n\t| mips64orion | mips64orionel \\\n\t| mips64r5900 | mips64r5900el \\\n\t| mips64vr | mips64vrel \\\n\t| mips64vr4100 | mips64vr4100el \\\n\t| mips64vr4300 | mips64vr4300el \\\n\t| mips64vr5000 | mips64vr5000el \\\n\t| mips64vr5900 | mips64vr5900el \\\n\t| mipsisa32 | mipsisa32el \\\n\t| mipsisa32r2 | mipsisa32r2el \\\n\t| mipsisa32r6 | mipsisa32r6el \\\n\t| mipsisa64 | mipsisa64el \\\n\t| mipsisa64r2 | mipsisa64r2el \\\n\t| mipsisa64r6 | mipsisa64r6el \\\n\t| mipsisa64sb1 | mipsisa64sb1el \\\n\t| mipsisa64sr71k | mipsisa64sr71kel \\\n\t| mipsr5900 | mipsr5900el \\\n\t| mipstx39 | mipstx39el \\\n\t| mn10200 | mn10300 \\\n\t| moxie \\\n\t| mt \\\n\t| msp430 \\\n\t| nds32 | nds32le | nds32be \\\n\t| nios | nios2 | nios2eb | nios2el \\\n\t| ns16k | ns32k \\\n\t| open8 | or1k | or1knd | or32 \\\n\t| pdp10 | pdp11 | pj | pjl \\\n\t| powerpc | powerpc64 | powerpc64le | powerpcle \\\n\t| pru \\\n\t| pyramid \\\n\t| riscv32 | riscv64 \\\n\t| rl78 | rx \\\n\t| score \\\n\t| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \\\n\t| sh64 | sh64le \\\n\t| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \\\n\t| sparcv8 | sparcv9 | sparcv9b | sparcv9v \\\n\t| spu \\\n\t| tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \\\n\t| ubicom32 \\\n\t| v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \\\n\t| visium \\\n\t| we32k \\\n\t| x86 | xc16x | xstormy16 | xtensa \\\n\t| z8k | z80)\n\t\tbasic_machine=$basic_machine-unknown\n\t\t;;\n\tc54x)\n\t\tbasic_machine=tic54x-unknown\n\t\t;;\n\tc55x)\n\t\tbasic_machine=tic55x-unknown\n\t\t;;\n\tc6x)\n\t\tbasic_machine=tic6x-unknown\n\t\t;;\n\tleon|leon[3-9])\n\t\tbasic_machine=sparc-$basic_machine\n\t\t;;\n\tm6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip)\n\t\tbasic_machine=$basic_machine-unknown\n\t\tos=-none\n\t\t;;\n\tm88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)\n\t\t;;\n\tms1)\n\t\tbasic_machine=mt-unknown\n\t\t;;\n\n\tstrongarm | thumb | xscale)\n\t\tbasic_machine=arm-unknown\n\t\t;;\n\txgate)\n\t\tbasic_machine=$basic_machine-unknown\n\t\tos=-none\n\t\t;;\n\txscaleeb)\n\t\tbasic_machine=armeb-unknown\n\t\t;;\n\n\txscaleel)\n\t\tbasic_machine=armel-unknown\n\t\t;;\n\n\t# We use `pc' rather than `unknown'\n\t# because (1) that's what they normally are, and\n\t# (2) the word \"unknown\" tends to confuse beginning users.\n\ti*86 | x86_64)\n\t  basic_machine=$basic_machine-pc\n\t  ;;\n\t# Object if more than one company name word.\n\t*-*-*)\n\t\techo Invalid configuration \\`$1\\': machine \\`$basic_machine\\' not recognized 1>&2\n\t\texit 1\n\t\t;;\n\t# Recognize the basic CPU types with company name.\n\t580-* \\\n\t| a29k-* \\\n\t| aarch64-* | aarch64_be-* \\\n\t| alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \\\n\t| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \\\n\t| alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \\\n\t| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \\\n\t| avr-* | avr32-* \\\n\t| ba-* \\\n\t| be32-* | be64-* \\\n\t| bfin-* | bs2000-* \\\n\t| c[123]* | c30-* | [cjt]90-* | c4x-* \\\n\t| c8051-* | clipper-* | craynv-* | cydra-* \\\n\t| d10v-* | d30v-* | dlx-* \\\n\t| e2k-* | elxsi-* \\\n\t| f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \\\n\t| h8300-* | h8500-* \\\n\t| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \\\n\t| hexagon-* \\\n\t| i*86-* | i860-* | i960-* | ia64-* \\\n\t| ip2k-* | iq2000-* \\\n\t| k1om-* \\\n\t| le32-* | le64-* \\\n\t| lm32-* \\\n\t| m32c-* | m32r-* | m32rle-* \\\n\t| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \\\n\t| m88110-* | m88k-* | maxq-* | mcore-* | metag-* \\\n\t| microblaze-* | microblazeel-* \\\n\t| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \\\n\t| mips16-* \\\n\t| mips64-* | mips64el-* \\\n\t| mips64octeon-* | mips64octeonel-* \\\n\t| mips64orion-* | mips64orionel-* \\\n\t| mips64r5900-* | mips64r5900el-* \\\n\t| mips64vr-* | mips64vrel-* \\\n\t| mips64vr4100-* | mips64vr4100el-* \\\n\t| mips64vr4300-* | mips64vr4300el-* \\\n\t| mips64vr5000-* | mips64vr5000el-* \\\n\t| mips64vr5900-* | mips64vr5900el-* \\\n\t| mipsisa32-* | mipsisa32el-* \\\n\t| mipsisa32r2-* | mipsisa32r2el-* \\\n\t| mipsisa32r6-* | mipsisa32r6el-* \\\n\t| mipsisa64-* | mipsisa64el-* \\\n\t| mipsisa64r2-* | mipsisa64r2el-* \\\n\t| mipsisa64r6-* | mipsisa64r6el-* \\\n\t| mipsisa64sb1-* | mipsisa64sb1el-* \\\n\t| mipsisa64sr71k-* | mipsisa64sr71kel-* \\\n\t| mipsr5900-* | mipsr5900el-* \\\n\t| mipstx39-* | mipstx39el-* \\\n\t| mmix-* \\\n\t| mt-* \\\n\t| msp430-* \\\n\t| nds32-* | nds32le-* | nds32be-* \\\n\t| nios-* | nios2-* | nios2eb-* | nios2el-* \\\n\t| none-* | np1-* | ns16k-* | ns32k-* \\\n\t| open8-* \\\n\t| or1k*-* \\\n\t| orion-* \\\n\t| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \\\n\t| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \\\n\t| pru-* \\\n\t| pyramid-* \\\n\t| riscv32-* | riscv64-* \\\n\t| rl78-* | romp-* | rs6000-* | rx-* \\\n\t| sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \\\n\t| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \\\n\t| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \\\n\t| sparclite-* \\\n\t| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \\\n\t| tahoe-* \\\n\t| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \\\n\t| tile*-* \\\n\t| tron-* \\\n\t| ubicom32-* \\\n\t| v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \\\n\t| vax-* \\\n\t| visium-* \\\n\t| we32k-* \\\n\t| x86-* | x86_64-* | xc16x-* | xps100-* \\\n\t| xstormy16-* | xtensa*-* \\\n\t| ymp-* \\\n\t| z8k-* | z80-*)\n\t\t;;\n\t# Recognize the basic CPU types without company name, with glob match.\n\txtensa*)\n\t\tbasic_machine=$basic_machine-unknown\n\t\t;;\n\t# Recognize the various machine names and aliases which stand\n\t# for a CPU type and a company and sometimes even an OS.\n\t386bsd)\n\t\tbasic_machine=i386-unknown\n\t\tos=-bsd\n\t\t;;\n\t3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)\n\t\tbasic_machine=m68000-att\n\t\t;;\n\t3b*)\n\t\tbasic_machine=we32k-att\n\t\t;;\n\ta29khif)\n\t\tbasic_machine=a29k-amd\n\t\tos=-udi\n\t\t;;\n\tabacus)\n\t\tbasic_machine=abacus-unknown\n\t\t;;\n\tadobe68k)\n\t\tbasic_machine=m68010-adobe\n\t\tos=-scout\n\t\t;;\n\talliant | fx80)\n\t\tbasic_machine=fx80-alliant\n\t\t;;\n\taltos | altos3068)\n\t\tbasic_machine=m68k-altos\n\t\t;;\n\tam29k)\n\t\tbasic_machine=a29k-none\n\t\tos=-bsd\n\t\t;;\n\tamd64)\n\t\tbasic_machine=x86_64-pc\n\t\t;;\n\tamd64-*)\n\t\tbasic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tamdahl)\n\t\tbasic_machine=580-amdahl\n\t\tos=-sysv\n\t\t;;\n\tamiga | amiga-*)\n\t\tbasic_machine=m68k-unknown\n\t\t;;\n\tamigaos | amigados)\n\t\tbasic_machine=m68k-unknown\n\t\tos=-amigaos\n\t\t;;\n\tamigaunix | amix)\n\t\tbasic_machine=m68k-unknown\n\t\tos=-sysv4\n\t\t;;\n\tapollo68)\n\t\tbasic_machine=m68k-apollo\n\t\tos=-sysv\n\t\t;;\n\tapollo68bsd)\n\t\tbasic_machine=m68k-apollo\n\t\tos=-bsd\n\t\t;;\n\taros)\n\t\tbasic_machine=i386-pc\n\t\tos=-aros\n\t\t;;\n\tasmjs)\n\t\tbasic_machine=asmjs-unknown\n\t\t;;\n\taux)\n\t\tbasic_machine=m68k-apple\n\t\tos=-aux\n\t\t;;\n\tbalance)\n\t\tbasic_machine=ns32k-sequent\n\t\tos=-dynix\n\t\t;;\n\tblackfin)\n\t\tbasic_machine=bfin-unknown\n\t\tos=-linux\n\t\t;;\n\tblackfin-*)\n\t\tbasic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\tos=-linux\n\t\t;;\n\tbluegene*)\n\t\tbasic_machine=powerpc-ibm\n\t\tos=-cnk\n\t\t;;\n\tc54x-*)\n\t\tbasic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tc55x-*)\n\t\tbasic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tc6x-*)\n\t\tbasic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tc90)\n\t\tbasic_machine=c90-cray\n\t\tos=-unicos\n\t\t;;\n\tcegcc)\n\t\tbasic_machine=arm-unknown\n\t\tos=-cegcc\n\t\t;;\n\tconvex-c1)\n\t\tbasic_machine=c1-convex\n\t\tos=-bsd\n\t\t;;\n\tconvex-c2)\n\t\tbasic_machine=c2-convex\n\t\tos=-bsd\n\t\t;;\n\tconvex-c32)\n\t\tbasic_machine=c32-convex\n\t\tos=-bsd\n\t\t;;\n\tconvex-c34)\n\t\tbasic_machine=c34-convex\n\t\tos=-bsd\n\t\t;;\n\tconvex-c38)\n\t\tbasic_machine=c38-convex\n\t\tos=-bsd\n\t\t;;\n\tcray | j90)\n\t\tbasic_machine=j90-cray\n\t\tos=-unicos\n\t\t;;\n\tcraynv)\n\t\tbasic_machine=craynv-cray\n\t\tos=-unicosmp\n\t\t;;\n\tcr16 | cr16-*)\n\t\tbasic_machine=cr16-unknown\n\t\tos=-elf\n\t\t;;\n\tcrds | unos)\n\t\tbasic_machine=m68k-crds\n\t\t;;\n\tcrisv32 | crisv32-* | etraxfs*)\n\t\tbasic_machine=crisv32-axis\n\t\t;;\n\tcris | cris-* | etrax*)\n\t\tbasic_machine=cris-axis\n\t\t;;\n\tcrx)\n\t\tbasic_machine=crx-unknown\n\t\tos=-elf\n\t\t;;\n\tda30 | da30-*)\n\t\tbasic_machine=m68k-da30\n\t\t;;\n\tdecstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)\n\t\tbasic_machine=mips-dec\n\t\t;;\n\tdecsystem10* | dec10*)\n\t\tbasic_machine=pdp10-dec\n\t\tos=-tops10\n\t\t;;\n\tdecsystem20* | dec20*)\n\t\tbasic_machine=pdp10-dec\n\t\tos=-tops20\n\t\t;;\n\tdelta | 3300 | motorola-3300 | motorola-delta \\\n\t      | 3300-motorola | delta-motorola)\n\t\tbasic_machine=m68k-motorola\n\t\t;;\n\tdelta88)\n\t\tbasic_machine=m88k-motorola\n\t\tos=-sysv3\n\t\t;;\n\tdicos)\n\t\tbasic_machine=i686-pc\n\t\tos=-dicos\n\t\t;;\n\tdjgpp)\n\t\tbasic_machine=i586-pc\n\t\tos=-msdosdjgpp\n\t\t;;\n\tdpx20 | dpx20-*)\n\t\tbasic_machine=rs6000-bull\n\t\tos=-bosx\n\t\t;;\n\tdpx2* | dpx2*-bull)\n\t\tbasic_machine=m68k-bull\n\t\tos=-sysv3\n\t\t;;\n\te500v[12])\n\t\tbasic_machine=powerpc-unknown\n\t\tos=$os\"spe\"\n\t\t;;\n\te500v[12]-*)\n\t\tbasic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\tos=$os\"spe\"\n\t\t;;\n\tebmon29k)\n\t\tbasic_machine=a29k-amd\n\t\tos=-ebmon\n\t\t;;\n\telxsi)\n\t\tbasic_machine=elxsi-elxsi\n\t\tos=-bsd\n\t\t;;\n\tencore | umax | mmax)\n\t\tbasic_machine=ns32k-encore\n\t\t;;\n\tes1800 | OSE68k | ose68k | ose | OSE)\n\t\tbasic_machine=m68k-ericsson\n\t\tos=-ose\n\t\t;;\n\tfx2800)\n\t\tbasic_machine=i860-alliant\n\t\t;;\n\tgenix)\n\t\tbasic_machine=ns32k-ns\n\t\t;;\n\tgmicro)\n\t\tbasic_machine=tron-gmicro\n\t\tos=-sysv\n\t\t;;\n\tgo32)\n\t\tbasic_machine=i386-pc\n\t\tos=-go32\n\t\t;;\n\th3050r* | hiux*)\n\t\tbasic_machine=hppa1.1-hitachi\n\t\tos=-hiuxwe2\n\t\t;;\n\th8300hms)\n\t\tbasic_machine=h8300-hitachi\n\t\tos=-hms\n\t\t;;\n\th8300xray)\n\t\tbasic_machine=h8300-hitachi\n\t\tos=-xray\n\t\t;;\n\th8500hms)\n\t\tbasic_machine=h8500-hitachi\n\t\tos=-hms\n\t\t;;\n\tharris)\n\t\tbasic_machine=m88k-harris\n\t\tos=-sysv3\n\t\t;;\n\thp300-*)\n\t\tbasic_machine=m68k-hp\n\t\t;;\n\thp300bsd)\n\t\tbasic_machine=m68k-hp\n\t\tos=-bsd\n\t\t;;\n\thp300hpux)\n\t\tbasic_machine=m68k-hp\n\t\tos=-hpux\n\t\t;;\n\thp3k9[0-9][0-9] | hp9[0-9][0-9])\n\t\tbasic_machine=hppa1.0-hp\n\t\t;;\n\thp9k2[0-9][0-9] | hp9k31[0-9])\n\t\tbasic_machine=m68000-hp\n\t\t;;\n\thp9k3[2-9][0-9])\n\t\tbasic_machine=m68k-hp\n\t\t;;\n\thp9k6[0-9][0-9] | hp6[0-9][0-9])\n\t\tbasic_machine=hppa1.0-hp\n\t\t;;\n\thp9k7[0-79][0-9] | hp7[0-79][0-9])\n\t\tbasic_machine=hppa1.1-hp\n\t\t;;\n\thp9k78[0-9] | hp78[0-9])\n\t\t# FIXME: really hppa2.0-hp\n\t\tbasic_machine=hppa1.1-hp\n\t\t;;\n\thp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)\n\t\t# FIXME: really hppa2.0-hp\n\t\tbasic_machine=hppa1.1-hp\n\t\t;;\n\thp9k8[0-9][13679] | hp8[0-9][13679])\n\t\tbasic_machine=hppa1.1-hp\n\t\t;;\n\thp9k8[0-9][0-9] | hp8[0-9][0-9])\n\t\tbasic_machine=hppa1.0-hp\n\t\t;;\n\thppa-next)\n\t\tos=-nextstep3\n\t\t;;\n\thppaosf)\n\t\tbasic_machine=hppa1.1-hp\n\t\tos=-osf\n\t\t;;\n\thppro)\n\t\tbasic_machine=hppa1.1-hp\n\t\tos=-proelf\n\t\t;;\n\ti370-ibm* | ibm*)\n\t\tbasic_machine=i370-ibm\n\t\t;;\n\ti*86v32)\n\t\tbasic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`\n\t\tos=-sysv32\n\t\t;;\n\ti*86v4*)\n\t\tbasic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`\n\t\tos=-sysv4\n\t\t;;\n\ti*86v)\n\t\tbasic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`\n\t\tos=-sysv\n\t\t;;\n\ti*86sol2)\n\t\tbasic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`\n\t\tos=-solaris2\n\t\t;;\n\ti386mach)\n\t\tbasic_machine=i386-mach\n\t\tos=-mach\n\t\t;;\n\ti386-vsta | vsta)\n\t\tbasic_machine=i386-unknown\n\t\tos=-vsta\n\t\t;;\n\tiris | iris4d)\n\t\tbasic_machine=mips-sgi\n\t\tcase $os in\n\t\t    -irix*)\n\t\t\t;;\n\t\t    *)\n\t\t\tos=-irix4\n\t\t\t;;\n\t\tesac\n\t\t;;\n\tisi68 | isi)\n\t\tbasic_machine=m68k-isi\n\t\tos=-sysv\n\t\t;;\n\tleon-*|leon[3-9]-*)\n\t\tbasic_machine=sparc-`echo $basic_machine | sed 's/-.*//'`\n\t\t;;\n\tm68knommu)\n\t\tbasic_machine=m68k-unknown\n\t\tos=-linux\n\t\t;;\n\tm68knommu-*)\n\t\tbasic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\tos=-linux\n\t\t;;\n\tm88k-omron*)\n\t\tbasic_machine=m88k-omron\n\t\t;;\n\tmagnum | m3230)\n\t\tbasic_machine=mips-mips\n\t\tos=-sysv\n\t\t;;\n\tmerlin)\n\t\tbasic_machine=ns32k-utek\n\t\tos=-sysv\n\t\t;;\n\tmicroblaze*)\n\t\tbasic_machine=microblaze-xilinx\n\t\t;;\n\tmingw64)\n\t\tbasic_machine=x86_64-pc\n\t\tos=-mingw64\n\t\t;;\n\tmingw32)\n\t\tbasic_machine=i686-pc\n\t\tos=-mingw32\n\t\t;;\n\tmingw32ce)\n\t\tbasic_machine=arm-unknown\n\t\tos=-mingw32ce\n\t\t;;\n\tminiframe)\n\t\tbasic_machine=m68000-convergent\n\t\t;;\n\t*mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)\n\t\tbasic_machine=m68k-atari\n\t\tos=-mint\n\t\t;;\n\tmips3*-*)\n\t\tbasic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`\n\t\t;;\n\tmips3*)\n\t\tbasic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown\n\t\t;;\n\tmonitor)\n\t\tbasic_machine=m68k-rom68k\n\t\tos=-coff\n\t\t;;\n\tmorphos)\n\t\tbasic_machine=powerpc-unknown\n\t\tos=-morphos\n\t\t;;\n\tmoxiebox)\n\t\tbasic_machine=moxie-unknown\n\t\tos=-moxiebox\n\t\t;;\n\tmsdos)\n\t\tbasic_machine=i386-pc\n\t\tos=-msdos\n\t\t;;\n\tms1-*)\n\t\tbasic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`\n\t\t;;\n\tmsys)\n\t\tbasic_machine=i686-pc\n\t\tos=-msys\n\t\t;;\n\tmvs)\n\t\tbasic_machine=i370-ibm\n\t\tos=-mvs\n\t\t;;\n\tnacl)\n\t\tbasic_machine=le32-unknown\n\t\tos=-nacl\n\t\t;;\n\tncr3000)\n\t\tbasic_machine=i486-ncr\n\t\tos=-sysv4\n\t\t;;\n\tnetbsd386)\n\t\tbasic_machine=i386-unknown\n\t\tos=-netbsd\n\t\t;;\n\tnetwinder)\n\t\tbasic_machine=armv4l-rebel\n\t\tos=-linux\n\t\t;;\n\tnews | news700 | news800 | news900)\n\t\tbasic_machine=m68k-sony\n\t\tos=-newsos\n\t\t;;\n\tnews1000)\n\t\tbasic_machine=m68030-sony\n\t\tos=-newsos\n\t\t;;\n\tnews-3600 | risc-news)\n\t\tbasic_machine=mips-sony\n\t\tos=-newsos\n\t\t;;\n\tnecv70)\n\t\tbasic_machine=v70-nec\n\t\tos=-sysv\n\t\t;;\n\tnext | m*-next )\n\t\tbasic_machine=m68k-next\n\t\tcase $os in\n\t\t    -nextstep* )\n\t\t\t;;\n\t\t    -ns2*)\n\t\t      os=-nextstep2\n\t\t\t;;\n\t\t    *)\n\t\t      os=-nextstep3\n\t\t\t;;\n\t\tesac\n\t\t;;\n\tnh3000)\n\t\tbasic_machine=m68k-harris\n\t\tos=-cxux\n\t\t;;\n\tnh[45]000)\n\t\tbasic_machine=m88k-harris\n\t\tos=-cxux\n\t\t;;\n\tnindy960)\n\t\tbasic_machine=i960-intel\n\t\tos=-nindy\n\t\t;;\n\tmon960)\n\t\tbasic_machine=i960-intel\n\t\tos=-mon960\n\t\t;;\n\tnonstopux)\n\t\tbasic_machine=mips-compaq\n\t\tos=-nonstopux\n\t\t;;\n\tnp1)\n\t\tbasic_machine=np1-gould\n\t\t;;\n\tneo-tandem)\n\t\tbasic_machine=neo-tandem\n\t\t;;\n\tnse-tandem)\n\t\tbasic_machine=nse-tandem\n\t\t;;\n\tnsr-tandem)\n\t\tbasic_machine=nsr-tandem\n\t\t;;\n\top50n-* | op60c-*)\n\t\tbasic_machine=hppa1.1-oki\n\t\tos=-proelf\n\t\t;;\n\topenrisc | openrisc-*)\n\t\tbasic_machine=or32-unknown\n\t\t;;\n\tos400)\n\t\tbasic_machine=powerpc-ibm\n\t\tos=-os400\n\t\t;;\n\tOSE68000 | ose68000)\n\t\tbasic_machine=m68000-ericsson\n\t\tos=-ose\n\t\t;;\n\tos68k)\n\t\tbasic_machine=m68k-none\n\t\tos=-os68k\n\t\t;;\n\tpa-hitachi)\n\t\tbasic_machine=hppa1.1-hitachi\n\t\tos=-hiuxwe2\n\t\t;;\n\tparagon)\n\t\tbasic_machine=i860-intel\n\t\tos=-osf\n\t\t;;\n\tparisc)\n\t\tbasic_machine=hppa-unknown\n\t\tos=-linux\n\t\t;;\n\tparisc-*)\n\t\tbasic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\tos=-linux\n\t\t;;\n\tpbd)\n\t\tbasic_machine=sparc-tti\n\t\t;;\n\tpbb)\n\t\tbasic_machine=m68k-tti\n\t\t;;\n\tpc532 | pc532-*)\n\t\tbasic_machine=ns32k-pc532\n\t\t;;\n\tpc98)\n\t\tbasic_machine=i386-pc\n\t\t;;\n\tpc98-*)\n\t\tbasic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tpentium | p5 | k5 | k6 | nexgen | viac3)\n\t\tbasic_machine=i586-pc\n\t\t;;\n\tpentiumpro | p6 | 6x86 | athlon | athlon_*)\n\t\tbasic_machine=i686-pc\n\t\t;;\n\tpentiumii | pentium2 | pentiumiii | pentium3)\n\t\tbasic_machine=i686-pc\n\t\t;;\n\tpentium4)\n\t\tbasic_machine=i786-pc\n\t\t;;\n\tpentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)\n\t\tbasic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tpentiumpro-* | p6-* | 6x86-* | athlon-*)\n\t\tbasic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tpentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)\n\t\tbasic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tpentium4-*)\n\t\tbasic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tpn)\n\t\tbasic_machine=pn-gould\n\t\t;;\n\tpower)\tbasic_machine=power-ibm\n\t\t;;\n\tppc | ppcbe)\tbasic_machine=powerpc-unknown\n\t\t;;\n\tppc-* | ppcbe-*)\n\t\tbasic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tppcle | powerpclittle)\n\t\tbasic_machine=powerpcle-unknown\n\t\t;;\n\tppcle-* | powerpclittle-*)\n\t\tbasic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tppc64)\tbasic_machine=powerpc64-unknown\n\t\t;;\n\tppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tppc64le | powerpc64little)\n\t\tbasic_machine=powerpc64le-unknown\n\t\t;;\n\tppc64le-* | powerpc64little-*)\n\t\tbasic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tps2)\n\t\tbasic_machine=i386-ibm\n\t\t;;\n\tpw32)\n\t\tbasic_machine=i586-unknown\n\t\tos=-pw32\n\t\t;;\n\trdos | rdos64)\n\t\tbasic_machine=x86_64-pc\n\t\tos=-rdos\n\t\t;;\n\trdos32)\n\t\tbasic_machine=i386-pc\n\t\tos=-rdos\n\t\t;;\n\trom68k)\n\t\tbasic_machine=m68k-rom68k\n\t\tos=-coff\n\t\t;;\n\trm[46]00)\n\t\tbasic_machine=mips-siemens\n\t\t;;\n\trtpc | rtpc-*)\n\t\tbasic_machine=romp-ibm\n\t\t;;\n\ts390 | s390-*)\n\t\tbasic_machine=s390-ibm\n\t\t;;\n\ts390x | s390x-*)\n\t\tbasic_machine=s390x-ibm\n\t\t;;\n\tsa29200)\n\t\tbasic_machine=a29k-amd\n\t\tos=-udi\n\t\t;;\n\tsb1)\n\t\tbasic_machine=mipsisa64sb1-unknown\n\t\t;;\n\tsb1el)\n\t\tbasic_machine=mipsisa64sb1el-unknown\n\t\t;;\n\tsde)\n\t\tbasic_machine=mipsisa32-sde\n\t\tos=-elf\n\t\t;;\n\tsei)\n\t\tbasic_machine=mips-sei\n\t\tos=-seiux\n\t\t;;\n\tsequent)\n\t\tbasic_machine=i386-sequent\n\t\t;;\n\tsh)\n\t\tbasic_machine=sh-hitachi\n\t\tos=-hms\n\t\t;;\n\tsh5el)\n\t\tbasic_machine=sh5le-unknown\n\t\t;;\n\tsh64)\n\t\tbasic_machine=sh64-unknown\n\t\t;;\n\tsparclite-wrs | simso-wrs)\n\t\tbasic_machine=sparclite-wrs\n\t\tos=-vxworks\n\t\t;;\n\tsps7)\n\t\tbasic_machine=m68k-bull\n\t\tos=-sysv2\n\t\t;;\n\tspur)\n\t\tbasic_machine=spur-unknown\n\t\t;;\n\tst2000)\n\t\tbasic_machine=m68k-tandem\n\t\t;;\n\tstratus)\n\t\tbasic_machine=i860-stratus\n\t\tos=-sysv4\n\t\t;;\n\tstrongarm-* | thumb-*)\n\t\tbasic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tsun2)\n\t\tbasic_machine=m68000-sun\n\t\t;;\n\tsun2os3)\n\t\tbasic_machine=m68000-sun\n\t\tos=-sunos3\n\t\t;;\n\tsun2os4)\n\t\tbasic_machine=m68000-sun\n\t\tos=-sunos4\n\t\t;;\n\tsun3os3)\n\t\tbasic_machine=m68k-sun\n\t\tos=-sunos3\n\t\t;;\n\tsun3os4)\n\t\tbasic_machine=m68k-sun\n\t\tos=-sunos4\n\t\t;;\n\tsun4os3)\n\t\tbasic_machine=sparc-sun\n\t\tos=-sunos3\n\t\t;;\n\tsun4os4)\n\t\tbasic_machine=sparc-sun\n\t\tos=-sunos4\n\t\t;;\n\tsun4sol2)\n\t\tbasic_machine=sparc-sun\n\t\tos=-solaris2\n\t\t;;\n\tsun3 | sun3-*)\n\t\tbasic_machine=m68k-sun\n\t\t;;\n\tsun4)\n\t\tbasic_machine=sparc-sun\n\t\t;;\n\tsun386 | sun386i | roadrunner)\n\t\tbasic_machine=i386-sun\n\t\t;;\n\tsv1)\n\t\tbasic_machine=sv1-cray\n\t\tos=-unicos\n\t\t;;\n\tsymmetry)\n\t\tbasic_machine=i386-sequent\n\t\tos=-dynix\n\t\t;;\n\tt3e)\n\t\tbasic_machine=alphaev5-cray\n\t\tos=-unicos\n\t\t;;\n\tt90)\n\t\tbasic_machine=t90-cray\n\t\tos=-unicos\n\t\t;;\n\ttile*)\n\t\tbasic_machine=$basic_machine-unknown\n\t\tos=-linux-gnu\n\t\t;;\n\ttx39)\n\t\tbasic_machine=mipstx39-unknown\n\t\t;;\n\ttx39el)\n\t\tbasic_machine=mipstx39el-unknown\n\t\t;;\n\ttoad1)\n\t\tbasic_machine=pdp10-xkl\n\t\tos=-tops20\n\t\t;;\n\ttower | tower-32)\n\t\tbasic_machine=m68k-ncr\n\t\t;;\n\ttpf)\n\t\tbasic_machine=s390x-ibm\n\t\tos=-tpf\n\t\t;;\n\tudi29k)\n\t\tbasic_machine=a29k-amd\n\t\tos=-udi\n\t\t;;\n\tultra3)\n\t\tbasic_machine=a29k-nyu\n\t\tos=-sym1\n\t\t;;\n\tv810 | necv810)\n\t\tbasic_machine=v810-nec\n\t\tos=-none\n\t\t;;\n\tvaxv)\n\t\tbasic_machine=vax-dec\n\t\tos=-sysv\n\t\t;;\n\tvms)\n\t\tbasic_machine=vax-dec\n\t\tos=-vms\n\t\t;;\n\tvpp*|vx|vx-*)\n\t\tbasic_machine=f301-fujitsu\n\t\t;;\n\tvxworks960)\n\t\tbasic_machine=i960-wrs\n\t\tos=-vxworks\n\t\t;;\n\tvxworks68)\n\t\tbasic_machine=m68k-wrs\n\t\tos=-vxworks\n\t\t;;\n\tvxworks29k)\n\t\tbasic_machine=a29k-wrs\n\t\tos=-vxworks\n\t\t;;\n\tw65*)\n\t\tbasic_machine=w65-wdc\n\t\tos=-none\n\t\t;;\n\tw89k-*)\n\t\tbasic_machine=hppa1.1-winbond\n\t\tos=-proelf\n\t\t;;\n\txbox)\n\t\tbasic_machine=i686-pc\n\t\tos=-mingw32\n\t\t;;\n\txps | xps100)\n\t\tbasic_machine=xps100-honeywell\n\t\t;;\n\txscale-* | xscalee[bl]-*)\n\t\tbasic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`\n\t\t;;\n\tymp)\n\t\tbasic_machine=ymp-cray\n\t\tos=-unicos\n\t\t;;\n\tz8k-*-coff)\n\t\tbasic_machine=z8k-unknown\n\t\tos=-sim\n\t\t;;\n\tz80-*-coff)\n\t\tbasic_machine=z80-unknown\n\t\tos=-sim\n\t\t;;\n\tnone)\n\t\tbasic_machine=none-none\n\t\tos=-none\n\t\t;;\n\n# Here we handle the default manufacturer of certain CPU types.  It is in\n# some cases the only manufacturer, in others, it is the most popular.\n\tw89k)\n\t\tbasic_machine=hppa1.1-winbond\n\t\t;;\n\top50n)\n\t\tbasic_machine=hppa1.1-oki\n\t\t;;\n\top60c)\n\t\tbasic_machine=hppa1.1-oki\n\t\t;;\n\tromp)\n\t\tbasic_machine=romp-ibm\n\t\t;;\n\tmmix)\n\t\tbasic_machine=mmix-knuth\n\t\t;;\n\trs6000)\n\t\tbasic_machine=rs6000-ibm\n\t\t;;\n\tvax)\n\t\tbasic_machine=vax-dec\n\t\t;;\n\tpdp10)\n\t\t# there are many clones, so DEC is not a safe bet\n\t\tbasic_machine=pdp10-unknown\n\t\t;;\n\tpdp11)\n\t\tbasic_machine=pdp11-dec\n\t\t;;\n\twe32k)\n\t\tbasic_machine=we32k-att\n\t\t;;\n\tsh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)\n\t\tbasic_machine=sh-unknown\n\t\t;;\n\tsparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)\n\t\tbasic_machine=sparc-sun\n\t\t;;\n\tcydra)\n\t\tbasic_machine=cydra-cydrome\n\t\t;;\n\torion)\n\t\tbasic_machine=orion-highlevel\n\t\t;;\n\torion105)\n\t\tbasic_machine=clipper-highlevel\n\t\t;;\n\tmac | mpw | mac-mpw)\n\t\tbasic_machine=m68k-apple\n\t\t;;\n\tpmac | pmac-mpw)\n\t\tbasic_machine=powerpc-apple\n\t\t;;\n\t*-unknown)\n\t\t# Make sure to match an already-canonicalized machine name.\n\t\t;;\n\t*)\n\t\techo Invalid configuration \\`$1\\': machine \\`$basic_machine\\' not recognized 1>&2\n\t\texit 1\n\t\t;;\nesac\n\n# Here we canonicalize certain aliases for manufacturers.\ncase $basic_machine in\n\t*-digital*)\n\t\tbasic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`\n\t\t;;\n\t*-commodore*)\n\t\tbasic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`\n\t\t;;\n\t*)\n\t\t;;\nesac\n\n# Decode manufacturer-specific aliases for certain operating systems.\n\nif [ x\"$os\" != x\"\" ]\nthen\ncase $os in\n\t# First match some system type aliases\n\t# that might get confused with valid system types.\n\t# -solaris* is a basic system type, with this one exception.\n\t-auroraux)\n\t\tos=-auroraux\n\t\t;;\n\t-solaris1 | -solaris1.*)\n\t\tos=`echo $os | sed -e 's|solaris1|sunos4|'`\n\t\t;;\n\t-solaris)\n\t\tos=-solaris2\n\t\t;;\n\t-svr4*)\n\t\tos=-sysv4\n\t\t;;\n\t-unixware*)\n\t\tos=-sysv4.2uw\n\t\t;;\n\t-gnu/linux*)\n\t\tos=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`\n\t\t;;\n\t# First accept the basic system types.\n\t# The portable systems comes first.\n\t# Each alternative MUST END IN A *, to match a version number.\n\t# -sysv* is not here because it comes later, after sysvr4.\n\t-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \\\n\t      | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\\\n\t      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \\\n\t      | -sym* | -kopensolaris* | -plan9* \\\n\t      | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \\\n\t      | -aos* | -aros* | -cloudabi* | -sortix* \\\n\t      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \\\n\t      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \\\n\t      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \\\n\t      | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \\\n\t      | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \\\n\t      | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \\\n\t      | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \\\n\t      | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \\\n\t      | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \\\n\t      | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \\\n\t      | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \\\n\t      | -linux-newlib* | -linux-musl* | -linux-uclibc* \\\n\t      | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \\\n\t      | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \\\n\t      | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \\\n\t      | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \\\n\t      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \\\n\t      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \\\n\t      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \\\n\t      | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \\\n\t      | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox*)\n\t# Remember, each alternative MUST END IN *, to match a version number.\n\t\t;;\n\t-qnx*)\n\t\tcase $basic_machine in\n\t\t    x86-* | i*86-*)\n\t\t\t;;\n\t\t    *)\n\t\t\tos=-nto$os\n\t\t\t;;\n\t\tesac\n\t\t;;\n\t-nto-qnx*)\n\t\t;;\n\t-nto*)\n\t\tos=`echo $os | sed -e 's|nto|nto-qnx|'`\n\t\t;;\n\t-sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \\\n\t      | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \\\n\t      | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)\n\t\t;;\n\t-mac*)\n\t\tos=`echo $os | sed -e 's|mac|macos|'`\n\t\t;;\n\t-linux-dietlibc)\n\t\tos=-linux-dietlibc\n\t\t;;\n\t-linux*)\n\t\tos=`echo $os | sed -e 's|linux|linux-gnu|'`\n\t\t;;\n\t-sunos5*)\n\t\tos=`echo $os | sed -e 's|sunos5|solaris2|'`\n\t\t;;\n\t-sunos6*)\n\t\tos=`echo $os | sed -e 's|sunos6|solaris3|'`\n\t\t;;\n\t-opened*)\n\t\tos=-openedition\n\t\t;;\n\t-os400*)\n\t\tos=-os400\n\t\t;;\n\t-wince*)\n\t\tos=-wince\n\t\t;;\n\t-osfrose*)\n\t\tos=-osfrose\n\t\t;;\n\t-osf*)\n\t\tos=-osf\n\t\t;;\n\t-utek*)\n\t\tos=-bsd\n\t\t;;\n\t-dynix*)\n\t\tos=-bsd\n\t\t;;\n\t-acis*)\n\t\tos=-aos\n\t\t;;\n\t-atheos*)\n\t\tos=-atheos\n\t\t;;\n\t-syllable*)\n\t\tos=-syllable\n\t\t;;\n\t-386bsd)\n\t\tos=-bsd\n\t\t;;\n\t-ctix* | -uts*)\n\t\tos=-sysv\n\t\t;;\n\t-nova*)\n\t\tos=-rtmk-nova\n\t\t;;\n\t-ns2 )\n\t\tos=-nextstep2\n\t\t;;\n\t-nsk*)\n\t\tos=-nsk\n\t\t;;\n\t# Preserve the version number of sinix5.\n\t-sinix5.*)\n\t\tos=`echo $os | sed -e 's|sinix|sysv|'`\n\t\t;;\n\t-sinix*)\n\t\tos=-sysv4\n\t\t;;\n\t-tpf*)\n\t\tos=-tpf\n\t\t;;\n\t-triton*)\n\t\tos=-sysv3\n\t\t;;\n\t-oss*)\n\t\tos=-sysv3\n\t\t;;\n\t-svr4)\n\t\tos=-sysv4\n\t\t;;\n\t-svr3)\n\t\tos=-sysv3\n\t\t;;\n\t-sysvr4)\n\t\tos=-sysv4\n\t\t;;\n\t# This must come after -sysvr4.\n\t-sysv*)\n\t\t;;\n\t-ose*)\n\t\tos=-ose\n\t\t;;\n\t-es1800*)\n\t\tos=-ose\n\t\t;;\n\t-xenix)\n\t\tos=-xenix\n\t\t;;\n\t-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)\n\t\tos=-mint\n\t\t;;\n\t-aros*)\n\t\tos=-aros\n\t\t;;\n\t-zvmoe)\n\t\tos=-zvmoe\n\t\t;;\n\t-dicos*)\n\t\tos=-dicos\n\t\t;;\n\t-nacl*)\n\t\t;;\n\t-ios)\n\t\t;;\n\t-none)\n\t\t;;\n\t*)\n\t\t# Get rid of the `-' at the beginning of $os.\n\t\tos=`echo $os | sed 's/[^-]*-//'`\n\t\techo Invalid configuration \\`$1\\': system \\`$os\\' not recognized 1>&2\n\t\texit 1\n\t\t;;\nesac\nelse\n\n# Here we handle the default operating systems that come with various machines.\n# The value should be what the vendor currently ships out the door with their\n# machine or put another way, the most popular os provided with the machine.\n\n# Note that if you're going to try to match \"-MANUFACTURER\" here (say,\n# \"-sun\"), then you have to tell the case statement up towards the top\n# that MANUFACTURER isn't an operating system.  Otherwise, code above\n# will signal an error saying that MANUFACTURER isn't an operating\n# system, and we'll never get to this point.\n\ncase $basic_machine in\n\tscore-*)\n\t\tos=-elf\n\t\t;;\n\tspu-*)\n\t\tos=-elf\n\t\t;;\n\t*-acorn)\n\t\tos=-riscix1.2\n\t\t;;\n\tarm*-rebel)\n\t\tos=-linux\n\t\t;;\n\tarm*-semi)\n\t\tos=-aout\n\t\t;;\n\tc4x-* | tic4x-*)\n\t\tos=-coff\n\t\t;;\n\tc8051-*)\n\t\tos=-elf\n\t\t;;\n\thexagon-*)\n\t\tos=-elf\n\t\t;;\n\ttic54x-*)\n\t\tos=-coff\n\t\t;;\n\ttic55x-*)\n\t\tos=-coff\n\t\t;;\n\ttic6x-*)\n\t\tos=-coff\n\t\t;;\n\t# This must come before the *-dec entry.\n\tpdp10-*)\n\t\tos=-tops20\n\t\t;;\n\tpdp11-*)\n\t\tos=-none\n\t\t;;\n\t*-dec | vax-*)\n\t\tos=-ultrix4.2\n\t\t;;\n\tm68*-apollo)\n\t\tos=-domain\n\t\t;;\n\ti386-sun)\n\t\tos=-sunos4.0.2\n\t\t;;\n\tm68000-sun)\n\t\tos=-sunos3\n\t\t;;\n\tm68*-cisco)\n\t\tos=-aout\n\t\t;;\n\tmep-*)\n\t\tos=-elf\n\t\t;;\n\tmips*-cisco)\n\t\tos=-elf\n\t\t;;\n\tmips*-*)\n\t\tos=-elf\n\t\t;;\n\tor32-*)\n\t\tos=-coff\n\t\t;;\n\t*-tti)\t# must be before sparc entry or we get the wrong os.\n\t\tos=-sysv3\n\t\t;;\n\tsparc-* | *-sun)\n\t\tos=-sunos4.1.1\n\t\t;;\n\tpru-*)\n\t\tos=-elf\n\t\t;;\n\t*-be)\n\t\tos=-beos\n\t\t;;\n\t*-haiku)\n\t\tos=-haiku\n\t\t;;\n\t*-ibm)\n\t\tos=-aix\n\t\t;;\n\t*-knuth)\n\t\tos=-mmixware\n\t\t;;\n\t*-wec)\n\t\tos=-proelf\n\t\t;;\n\t*-winbond)\n\t\tos=-proelf\n\t\t;;\n\t*-oki)\n\t\tos=-proelf\n\t\t;;\n\t*-hp)\n\t\tos=-hpux\n\t\t;;\n\t*-hitachi)\n\t\tos=-hiux\n\t\t;;\n\ti860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)\n\t\tos=-sysv\n\t\t;;\n\t*-cbm)\n\t\tos=-amigaos\n\t\t;;\n\t*-dg)\n\t\tos=-dgux\n\t\t;;\n\t*-dolphin)\n\t\tos=-sysv3\n\t\t;;\n\tm68k-ccur)\n\t\tos=-rtu\n\t\t;;\n\tm88k-omron*)\n\t\tos=-luna\n\t\t;;\n\t*-next )\n\t\tos=-nextstep\n\t\t;;\n\t*-sequent)\n\t\tos=-ptx\n\t\t;;\n\t*-crds)\n\t\tos=-unos\n\t\t;;\n\t*-ns)\n\t\tos=-genix\n\t\t;;\n\ti370-*)\n\t\tos=-mvs\n\t\t;;\n\t*-next)\n\t\tos=-nextstep3\n\t\t;;\n\t*-gould)\n\t\tos=-sysv\n\t\t;;\n\t*-highlevel)\n\t\tos=-bsd\n\t\t;;\n\t*-encore)\n\t\tos=-bsd\n\t\t;;\n\t*-sgi)\n\t\tos=-irix\n\t\t;;\n\t*-siemens)\n\t\tos=-sysv4\n\t\t;;\n\t*-masscomp)\n\t\tos=-rtu\n\t\t;;\n\tf30[01]-fujitsu | f700-fujitsu)\n\t\tos=-uxpv\n\t\t;;\n\t*-rom68k)\n\t\tos=-coff\n\t\t;;\n\t*-*bug)\n\t\tos=-coff\n\t\t;;\n\t*-apple)\n\t\tos=-macos\n\t\t;;\n\t*-atari*)\n\t\tos=-mint\n\t\t;;\n\t*)\n\t\tos=-none\n\t\t;;\nesac\nfi\n\n# Here we handle the case where we know the os, and the CPU type, but not the\n# manufacturer.  We pick the logical manufacturer.\nvendor=unknown\ncase $basic_machine in\n\t*-unknown)\n\t\tcase $os in\n\t\t\t-riscix*)\n\t\t\t\tvendor=acorn\n\t\t\t\t;;\n\t\t\t-sunos*)\n\t\t\t\tvendor=sun\n\t\t\t\t;;\n\t\t\t-cnk*|-aix*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t-beos*)\n\t\t\t\tvendor=be\n\t\t\t\t;;\n\t\t\t-hpux*)\n\t\t\t\tvendor=hp\n\t\t\t\t;;\n\t\t\t-mpeix*)\n\t\t\t\tvendor=hp\n\t\t\t\t;;\n\t\t\t-hiux*)\n\t\t\t\tvendor=hitachi\n\t\t\t\t;;\n\t\t\t-unos*)\n\t\t\t\tvendor=crds\n\t\t\t\t;;\n\t\t\t-dgux*)\n\t\t\t\tvendor=dg\n\t\t\t\t;;\n\t\t\t-luna*)\n\t\t\t\tvendor=omron\n\t\t\t\t;;\n\t\t\t-genix*)\n\t\t\t\tvendor=ns\n\t\t\t\t;;\n\t\t\t-mvs* | -opened*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t-os400*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t-ptx*)\n\t\t\t\tvendor=sequent\n\t\t\t\t;;\n\t\t\t-tpf*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t-vxsim* | -vxworks* | -windiss*)\n\t\t\t\tvendor=wrs\n\t\t\t\t;;\n\t\t\t-aux*)\n\t\t\t\tvendor=apple\n\t\t\t\t;;\n\t\t\t-hms*)\n\t\t\t\tvendor=hitachi\n\t\t\t\t;;\n\t\t\t-mpw* | -macos*)\n\t\t\t\tvendor=apple\n\t\t\t\t;;\n\t\t\t-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)\n\t\t\t\tvendor=atari\n\t\t\t\t;;\n\t\t\t-vos*)\n\t\t\t\tvendor=stratus\n\t\t\t\t;;\n\t\tesac\n\t\tbasic_machine=`echo $basic_machine | sed \"s/unknown/$vendor/\"`\n\t\t;;\nesac\n\necho $basic_machine$os\nexit\n\n# Local variables:\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"timestamp='\"\n# time-stamp-format: \"%:y-%02m-%02d\"\n# time-stamp-end: \"'\"\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/install-reloc",
    "content": "#!/bin/sh\n# install-reloc - install a program including a relocating wrapper\n# Copyright (C) 2003-2017 Free Software Foundation, Inc.\n# Written by Bruno Haible <bruno@clisp.org>, 2003.\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n# Usage 1:\n#   install-reloc -- library_path_var library_path_value prefix destdir \\\n#                    compile_command srcdir builddir config_h_dir exeext \\\n#                    strip_command \\\n#                    install_command... destprog\n# where\n#   - library_path_var is the platform dependent runtime library path variable\n#   - library_path_value is a colon separated list of directories that contain\n#     the libraries at installation time (use this instead of -rpath)\n#   - prefix is the base directory at installation time\n#   - destdir is a string that is prepended to all file names at installation\n#     time; it is already prepended to destprog but not to library_path_value\n#     and prefix\n#   - compile_command is a C compiler compilation and linking command\n#   - srcdir is the directory where to find relocwrapper.c and its dependencies\n#   - builddir is the directory where to find built dependencies (namely,\n#     alloca.h and stdbool.h)\n#   - config_h_dir is the directory where to find config.h\n#   - exeext is platform dependent suffix of executables\n#   - strip_command is the command for stripping executables, or : if no\n#     stripping is desired\n#   - install_command is the install command line, excluding the final destprog\n#   - destprog is the destination program name\n# Usage 2:\n#   env RELOC_LIBRARY_PATH_VAR=library_path_var \\\n#       RELOC_LIBRARY_PATH_VALUE=library_path_value \\\n#       RELOC_PREFIX=prefix \\\n#       RELOC_DESTDIR=destdir \\\n#       RELOC_COMPILE_COMMAND=compile_command \\\n#       RELOC_SRCDIR=srcdir \\\n#       RELOC_BUILDDIR=builddir \\\n#       RELOC_CONFIG_H_DIR=config_h_dir \\\n#       RELOC_EXEEXT=exeext \\\n#       RELOC_STRIP_PROG=strip_command \\\n#       RELOC_INSTALL_PROG=install_command... \\\n#   install-reloc prog1 ... destprog\n#   where destprog is either the destination program name (when only one program\n#   is specified) or the destination directory for all programs.\n# install-reloc renames destprog to destprog.bin and installs a relocating\n# wrapper in the place of destprog.\n\nprogname=$0\n\nif test $# -ge 12 && test \"x$1\" = \"x--\"; then\n  # Get fixed position arguments.\n  shift\n  library_path_var=$1\n  library_path_value=$2\n  prefix=$3\n  destdir=$4\n  shift\n  shift\n  shift\n  shift\n  compile_command=$1\n  srcdir=$2\n  builddir=$3\n  config_h_dir=$4\n  exeext=$5\n  shift\n  shift\n  shift\n  shift\n  shift\n  strip_prog=$1\n  shift\n  install_prog=$1 # maybe not including the \"-c\" option\n  shift\nelse\n  if test $# -ge 2; then\n    # Get arguments from environment variables.\n    library_path_var=$RELOC_LIBRARY_PATH_VAR\n    library_path_value=$RELOC_LIBRARY_PATH_VALUE\n    prefix=$RELOC_PREFIX\n    destdir=$RELOC_DESTDIR\n    compile_command=$RELOC_COMPILE_COMMAND\n    srcdir=$RELOC_SRCDIR\n    builddir=$RELOC_BUILDDIR\n    config_h_dir=$RELOC_CONFIG_H_DIR\n    exeext=$RELOC_EXEEXT\n    strip_prog=$RELOC_STRIP_PROG\n    install_prog=$RELOC_INSTALL_PROG # including the \"-c\" option\n  else\n    echo \"Usage: $0 -- library_path_var library_path_value prefix destdir\" \\\n         \"compile_command srcdir builddir config_h_dir exeext\" \\\n         \"strip_command\" \\\n         \"install_command... destprog\" 1>&2\n    exit 1\n  fi\nfi\n\n# Get destprog, last argument.\ndestprog=\nfor arg\ndo\n  destprog=$arg\ndone\n# Determine whether destprog is a program name or a directory name.\nif test -d \"$destprog\"; then\n  sed_remove_trailing_slashes='s|//*$||'\n  destprog_directory=`echo \"$destprog\" | sed -e \"$sed_remove_trailing_slashes\"`\n  if test -z \"$destprog_directory\"; then\n    destprog_directory='/'\n  fi\nelse\n  destprog_directory=\nfi\n# Prepare for remove trailing $exeext, if present.\nif test -n \"$exeext\"; then\n  sed_quote='s,\\.,\\\\.,g'\n  sed_remove_exeext='s|'`echo \"$exeext\" | sed -e \"$sed_quote\"`'$||'\nfi\nif test -z \"$destprog_directory\"; then\n  # Remove trailing $exeext, if present.\n  if test -n \"$exeext\"; then\n    destprog=`echo \"$destprog\" | sed -e \"$sed_remove_exeext\"`\n  fi\nfi\n\n# Outputs a command and runs it.\nfunc_verbose ()\n{\n  echo \"$@\"\n  \"$@\"\n}\n\n# Run install_command.\nfunc_verbose $install_prog \"$@\" || exit $?\n\n# Iterate over all destination program names.\n# func_iterate f\n# applies f to each destination program names, after setting destprog.\nsed_basename_of_file='s|^.*/||'\nfunc_iterate ()\n{\n  if test -n \"$destprog_directory\"; then\n    prev_arg=\n    for arg\n    do\n      if test -n \"prev_arg\"; then\n        destprog=\"$destprog_directory\"/`echo \"$prev_arg\" | sed -e \"$sed_basename_of_file\"`\n        $1\n      fi\n      prev_arg=\"$arg\"\n    done\n  else\n    $1\n  fi\n}\n\n# Run strip_command.\nfunc_strip ()\n{\n  # Remove trailing $exeext, if present.\n  if test -n \"$exeext\"; then\n    destprog=`echo \"$destprog\" | sed -e \"$sed_remove_exeext\"`\n  fi\n  func_verbose \"$strip_prog\" \"$destprog$exeext\" || exit $?\n}\nif test \"$strip_prog\" != ':'; then\n  func_iterate func_strip\nfi\n\n# If the platform doesn't support LD_LIBRARY_PATH or similar, we cannot build\n# a wrapper.\ntest -n \"$library_path_var\" || exit 0\n\nlibdirs=\nsave_IFS=\"$IFS\"; IFS=\":\"\nfor dir in $library_path_value; do\n  IFS=\"$save_IFS\"\n  if test -n \"$dir\"; then\n    case \"$libdirs\" in\n      *\"\\\"$dir\\\"\"*) ;; # remove duplicate\n      *) libdirs=\"$libdirs\\\"$dir\\\",\" ;;\n    esac\n  fi\ndone\nIFS=\"$save_IFS\"\n# If there are no library directories to add at runtime, we don't need a\n# wrapper.\ntest -n \"$libdirs\" || exit 0\n\n# Determine installdir from destprog, removing a leading destdir if present.\nif test -n \"$destprog_directory\"; then\n  installdir=\"$destprog_directory\"\nelse\n  installdir=`echo \"$destprog\" | sed -e 's,/[^/]*$,,'`\nfi\nif test -n \"$destdir\"; then\n  sed_quote='s,\\([|.\\*^$[]\\),\\\\\\1,g'\n  sed_remove_destdir='s|^'`echo \"$destdir\" | sed -e \"$sed_quote\"`'||'\n  installdir=`echo \"$installdir\" | sed -e \"$sed_remove_destdir\"`\nfi\n\n# Compile and install wrapper.\nfunc_create_wrapper ()\n{\n  # Remove trailing $exeext, if present.\n  if test -n \"$exeext\"; then\n    destprog=`echo \"$destprog\" | sed -e \"$sed_remove_exeext\"`\n  fi\n\n  # Compile wrapper.\n  func_verbose $compile_command \\\n               -I\"$builddir\" -I\"$srcdir\" -I\"$config_h_dir\" \\\n               -DHAVE_CONFIG_H -DIN_RELOCWRAPPER -DNO_XMALLOC \\\n               -D\"INSTALLPREFIX=\\\"$prefix\\\"\" -D\"INSTALLDIR=\\\"$installdir\\\"\" \\\n               -D\"LIBPATHVAR=\\\"$library_path_var\\\"\" -D\"LIBDIRS=$libdirs\" \\\n               -D\"EXEEXT=\\\"$exeext\\\"\" \\\n               \"$srcdir\"/relocwrapper.c \\\n               \"$srcdir\"/progname.c \\\n               \"$srcdir\"/progreloc.c \\\n               \"$srcdir\"/areadlink.c \\\n               \"$srcdir\"/careadlinkat.c \\\n               \"$srcdir\"/allocator.c \\\n               \"$srcdir\"/readlink.c \\\n               \"$srcdir\"/stat.c \\\n               \"$srcdir\"/canonicalize-lgpl.c \\\n               \"$srcdir\"/malloca.c \\\n               \"$srcdir\"/lstat.c \\\n               \"$srcdir\"/relocatable.c \\\n               \"$srcdir\"/setenv.c \\\n               \"$srcdir\"/c-ctype.c \\\n               -o \"$destprog.wrapper$exeext\"\n  rc=$?\n  # Clean up object files left over in the current directory by the native C\n  # compilers on Solaris, HP-UX, OSF/1, IRIX.\n  rm -f relocwrapper.o \\\n        progname.o \\\n        progreloc.o \\\n        areadlink.o \\\n        careadlinkat.o \\\n        allocator.o \\\n        readlink.o \\\n        stat.o \\\n        canonicalize-lgpl.o \\\n        malloca.o \\\n        lstat.o \\\n        relocatable.o \\\n        setenv.o \\\n        c-ctype.o\n  test $rc = 0 || exit $?\n  # Clean up debugging information left over by the native C compiler on MacOS X.\n  rm -rf \"$destprog.wrapper$exeext.dSYM\"\n  test $rc = 0 || exit $?\n\n  # Strip wrapper.\n  test \"$strip_prog\" = ':' || func_verbose \"$strip_prog\" \"$destprog.wrapper$exeext\" || exit $?\n\n  # Rename $destprog.wrapper -> $destprog -> $destprog.bin.\n  ln -f \"$destprog$exeext\" \"$destprog.bin$exeext\" \\\n    || { rm -f \"$destprog.bin$exeext\" \\\n         && cp -p \"$destprog$exeext\" \"$destprog.bin$exeext\"; } \\\n    || exit 1\n  mv \"$destprog.wrapper$exeext\" \"$destprog$exeext\" || exit 1\n}\nfunc_iterate func_create_wrapper\n\nexit 0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/install-sh",
    "content": "#!/bin/sh\n# install - install a program, script, or datafile\n\nscriptversion=2013-12-25.23; # UTC\n\n# This originates from X11R5 (mit/util/scripts/install.sh), which was\n# later released in X11R6 (xc/config/util/install.sh) with the\n# following copyright and license.\n#\n# Copyright (C) 1994 X Consortium\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to\n# deal in the Software without restriction, including without limitation the\n# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n# sell copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in\n# all copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\n# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n#\n# Except as contained in this notice, the name of the X Consortium shall not\n# be used in advertising or otherwise to promote the sale, use or other deal-\n# ings in this Software without prior written authorization from the X Consor-\n# tium.\n#\n#\n# FSF changes to this file are in the public domain.\n#\n# Calling this script install-sh is preferred over install.sh, to prevent\n# 'make' implicit rules from creating a file called install from it\n# when there is no Makefile.\n#\n# This script is compatible with the BSD install script, but was written\n# from scratch.\n\ntab='\t'\nnl='\n'\nIFS=\" $tab$nl\"\n\n# Set DOITPROG to \"echo\" to test this script.\n\ndoit=${DOITPROG-}\ndoit_exec=${doit:-exec}\n\n# Put in absolute file names if you don't have them in your path;\n# or use environment vars.\n\nchgrpprog=${CHGRPPROG-chgrp}\nchmodprog=${CHMODPROG-chmod}\nchownprog=${CHOWNPROG-chown}\ncmpprog=${CMPPROG-cmp}\ncpprog=${CPPROG-cp}\nmkdirprog=${MKDIRPROG-mkdir}\nmvprog=${MVPROG-mv}\nrmprog=${RMPROG-rm}\nstripprog=${STRIPPROG-strip}\n\nposix_mkdir=\n\n# Desired mode of installed file.\nmode=0755\n\nchgrpcmd=\nchmodcmd=$chmodprog\nchowncmd=\nmvcmd=$mvprog\nrmcmd=\"$rmprog -f\"\nstripcmd=\n\nsrc=\ndst=\ndir_arg=\ndst_arg=\n\ncopy_on_change=false\nis_target_a_directory=possibly\n\nusage=\"\\\nUsage: $0 [OPTION]... [-T] SRCFILE DSTFILE\n   or: $0 [OPTION]... SRCFILES... DIRECTORY\n   or: $0 [OPTION]... -t DIRECTORY SRCFILES...\n   or: $0 [OPTION]... -d DIRECTORIES...\n\nIn the 1st form, copy SRCFILE to DSTFILE.\nIn the 2nd and 3rd, copy all SRCFILES to DIRECTORY.\nIn the 4th, create DIRECTORIES.\n\nOptions:\n     --help     display this help and exit.\n     --version  display version info and exit.\n\n  -c            (ignored)\n  -C            install only if different (preserve the last data modification time)\n  -d            create directories instead of installing files.\n  -g GROUP      $chgrpprog installed files to GROUP.\n  -m MODE       $chmodprog installed files to MODE.\n  -o USER       $chownprog installed files to USER.\n  -s            $stripprog installed files.\n  -t DIRECTORY  install into DIRECTORY.\n  -T            report an error if DSTFILE is a directory.\n\nEnvironment variables override the default commands:\n  CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG\n  RMPROG STRIPPROG\n\"\n\nwhile test $# -ne 0; do\n  case $1 in\n    -c) ;;\n\n    -C) copy_on_change=true;;\n\n    -d) dir_arg=true;;\n\n    -g) chgrpcmd=\"$chgrpprog $2\"\n        shift;;\n\n    --help) echo \"$usage\"; exit $?;;\n\n    -m) mode=$2\n        case $mode in\n          *' '* | *\"$tab\"* | *\"$nl\"* | *'*'* | *'?'* | *'['*)\n            echo \"$0: invalid mode: $mode\" >&2\n            exit 1;;\n        esac\n        shift;;\n\n    -o) chowncmd=\"$chownprog $2\"\n        shift;;\n\n    -s) stripcmd=$stripprog;;\n\n    -t)\n        is_target_a_directory=always\n        dst_arg=$2\n        # Protect names problematic for 'test' and other utilities.\n        case $dst_arg in\n          -* | [=\\(\\)!]) dst_arg=./$dst_arg;;\n        esac\n        shift;;\n\n    -T) is_target_a_directory=never;;\n\n    --version) echo \"$0 $scriptversion\"; exit $?;;\n\n    --) shift\n        break;;\n\n    -*) echo \"$0: invalid option: $1\" >&2\n        exit 1;;\n\n    *)  break;;\n  esac\n  shift\ndone\n\n# We allow the use of options -d and -T together, by making -d\n# take the precedence; this is for compatibility with GNU install.\n\nif test -n \"$dir_arg\"; then\n  if test -n \"$dst_arg\"; then\n    echo \"$0: target directory not allowed when installing a directory.\" >&2\n    exit 1\n  fi\nfi\n\nif test $# -ne 0 && test -z \"$dir_arg$dst_arg\"; then\n  # When -d is used, all remaining arguments are directories to create.\n  # When -t is used, the destination is already specified.\n  # Otherwise, the last argument is the destination.  Remove it from $@.\n  for arg\n  do\n    if test -n \"$dst_arg\"; then\n      # $@ is not empty: it contains at least $arg.\n      set fnord \"$@\" \"$dst_arg\"\n      shift # fnord\n    fi\n    shift # arg\n    dst_arg=$arg\n    # Protect names problematic for 'test' and other utilities.\n    case $dst_arg in\n      -* | [=\\(\\)!]) dst_arg=./$dst_arg;;\n    esac\n  done\nfi\n\nif test $# -eq 0; then\n  if test -z \"$dir_arg\"; then\n    echo \"$0: no input file specified.\" >&2\n    exit 1\n  fi\n  # It's OK to call 'install-sh -d' without argument.\n  # This can happen when creating conditional directories.\n  exit 0\nfi\n\nif test -z \"$dir_arg\"; then\n  if test $# -gt 1 || test \"$is_target_a_directory\" = always; then\n    if test ! -d \"$dst_arg\"; then\n      echo \"$0: $dst_arg: Is not a directory.\" >&2\n      exit 1\n    fi\n  fi\nfi\n\nif test -z \"$dir_arg\"; then\n  do_exit='(exit $ret); exit $ret'\n  trap \"ret=129; $do_exit\" 1\n  trap \"ret=130; $do_exit\" 2\n  trap \"ret=141; $do_exit\" 13\n  trap \"ret=143; $do_exit\" 15\n\n  # Set umask so as not to create temps with too-generous modes.\n  # However, 'strip' requires both read and write access to temps.\n  case $mode in\n    # Optimize common cases.\n    *644) cp_umask=133;;\n    *755) cp_umask=22;;\n\n    *[0-7])\n      if test -z \"$stripcmd\"; then\n        u_plus_rw=\n      else\n        u_plus_rw='% 200'\n      fi\n      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;\n    *)\n      if test -z \"$stripcmd\"; then\n        u_plus_rw=\n      else\n        u_plus_rw=,u+rw\n      fi\n      cp_umask=$mode$u_plus_rw;;\n  esac\nfi\n\nfor src\ndo\n  # Protect names problematic for 'test' and other utilities.\n  case $src in\n    -* | [=\\(\\)!]) src=./$src;;\n  esac\n\n  if test -n \"$dir_arg\"; then\n    dst=$src\n    dstdir=$dst\n    test -d \"$dstdir\"\n    dstdir_status=$?\n  else\n\n    # Waiting for this to be detected by the \"$cpprog $src $dsttmp\" command\n    # might cause directories to be created, which would be especially bad\n    # if $src (and thus $dsttmp) contains '*'.\n    if test ! -f \"$src\" && test ! -d \"$src\"; then\n      echo \"$0: $src does not exist.\" >&2\n      exit 1\n    fi\n\n    if test -z \"$dst_arg\"; then\n      echo \"$0: no destination specified.\" >&2\n      exit 1\n    fi\n    dst=$dst_arg\n\n    # If destination is a directory, append the input filename; won't work\n    # if double slashes aren't ignored.\n    if test -d \"$dst\"; then\n      if test \"$is_target_a_directory\" = never; then\n        echo \"$0: $dst_arg: Is a directory\" >&2\n        exit 1\n      fi\n      dstdir=$dst\n      dst=$dstdir/`basename \"$src\"`\n      dstdir_status=0\n    else\n      dstdir=`dirname \"$dst\"`\n      test -d \"$dstdir\"\n      dstdir_status=$?\n    fi\n  fi\n\n  obsolete_mkdir_used=false\n\n  if test $dstdir_status != 0; then\n    case $posix_mkdir in\n      '')\n        # Create intermediate dirs using mode 755 as modified by the umask.\n        # This is like FreeBSD 'install' as of 1997-10-28.\n        umask=`umask`\n        case $stripcmd.$umask in\n          # Optimize common cases.\n          *[2367][2367]) mkdir_umask=$umask;;\n          .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;\n\n          *[0-7])\n            mkdir_umask=`expr $umask + 22 \\\n              - $umask % 100 % 40 + $umask % 20 \\\n              - $umask % 10 % 4 + $umask % 2\n            `;;\n          *) mkdir_umask=$umask,go-w;;\n        esac\n\n        # With -d, create the new directory with the user-specified mode.\n        # Otherwise, rely on $mkdir_umask.\n        if test -n \"$dir_arg\"; then\n          mkdir_mode=-m$mode\n        else\n          mkdir_mode=\n        fi\n\n        posix_mkdir=false\n        case $umask in\n          *[123567][0-7][0-7])\n            # POSIX mkdir -p sets u+wx bits regardless of umask, which\n            # is incompatible with FreeBSD 'install' when (umask & 300) != 0.\n            ;;\n          *)\n            tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$\n            trap 'ret=$?; rmdir \"$tmpdir/d\" \"$tmpdir\" 2>/dev/null; exit $ret' 0\n\n            if (umask $mkdir_umask &&\n                exec $mkdirprog $mkdir_mode -p -- \"$tmpdir/d\") >/dev/null 2>&1\n            then\n              if test -z \"$dir_arg\" || {\n                   # Check for POSIX incompatibilities with -m.\n                   # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or\n                   # other-writable bit of parent directory when it shouldn't.\n                   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.\n                   ls_ld_tmpdir=`ls -ld \"$tmpdir\"`\n                   case $ls_ld_tmpdir in\n                     d????-?r-*) different_mode=700;;\n                     d????-?--*) different_mode=755;;\n                     *) false;;\n                   esac &&\n                   $mkdirprog -m$different_mode -p -- \"$tmpdir\" && {\n                     ls_ld_tmpdir_1=`ls -ld \"$tmpdir\"`\n                     test \"$ls_ld_tmpdir\" = \"$ls_ld_tmpdir_1\"\n                   }\n                 }\n              then posix_mkdir=:\n              fi\n              rmdir \"$tmpdir/d\" \"$tmpdir\"\n            else\n              # Remove any dirs left behind by ancient mkdir implementations.\n              rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null\n            fi\n            trap '' 0;;\n        esac;;\n    esac\n\n    if\n      $posix_mkdir && (\n        umask $mkdir_umask &&\n        $doit_exec $mkdirprog $mkdir_mode -p -- \"$dstdir\"\n      )\n    then :\n    else\n\n      # The umask is ridiculous, or mkdir does not conform to POSIX,\n      # or it failed possibly due to a race condition.  Create the\n      # directory the slow way, step by step, checking for races as we go.\n\n      case $dstdir in\n        /*) prefix='/';;\n        [-=\\(\\)!]*) prefix='./';;\n        *)  prefix='';;\n      esac\n\n      oIFS=$IFS\n      IFS=/\n      set -f\n      set fnord $dstdir\n      shift\n      set +f\n      IFS=$oIFS\n\n      prefixes=\n\n      for d\n      do\n        test X\"$d\" = X && continue\n\n        prefix=$prefix$d\n        if test -d \"$prefix\"; then\n          prefixes=\n        else\n          if $posix_mkdir; then\n            (umask=$mkdir_umask &&\n             $doit_exec $mkdirprog $mkdir_mode -p -- \"$dstdir\") && break\n            # Don't fail if two instances are running concurrently.\n            test -d \"$prefix\" || exit 1\n          else\n            case $prefix in\n              *\\'*) qprefix=`echo \"$prefix\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;;\n              *) qprefix=$prefix;;\n            esac\n            prefixes=\"$prefixes '$qprefix'\"\n          fi\n        fi\n        prefix=$prefix/\n      done\n\n      if test -n \"$prefixes\"; then\n        # Don't fail if two instances are running concurrently.\n        (umask $mkdir_umask &&\n         eval \"\\$doit_exec \\$mkdirprog $prefixes\") ||\n          test -d \"$dstdir\" || exit 1\n        obsolete_mkdir_used=true\n      fi\n    fi\n  fi\n\n  if test -n \"$dir_arg\"; then\n    { test -z \"$chowncmd\" || $doit $chowncmd \"$dst\"; } &&\n    { test -z \"$chgrpcmd\" || $doit $chgrpcmd \"$dst\"; } &&\n    { test \"$obsolete_mkdir_used$chowncmd$chgrpcmd\" = false ||\n      test -z \"$chmodcmd\" || $doit $chmodcmd $mode \"$dst\"; } || exit 1\n  else\n\n    # Make a couple of temp file names in the proper directory.\n    dsttmp=$dstdir/_inst.$$_\n    rmtmp=$dstdir/_rm.$$_\n\n    # Trap to clean up those temp files at exit.\n    trap 'ret=$?; rm -f \"$dsttmp\" \"$rmtmp\" && exit $ret' 0\n\n    # Copy the file name to the temp name.\n    (umask $cp_umask && $doit_exec $cpprog \"$src\" \"$dsttmp\") &&\n\n    # and set any options; do chmod last to preserve setuid bits.\n    #\n    # If any of these fail, we abort the whole thing.  If we want to\n    # ignore errors from any of these, just make sure not to ignore\n    # errors from the above \"$doit $cpprog $src $dsttmp\" command.\n    #\n    { test -z \"$chowncmd\" || $doit $chowncmd \"$dsttmp\"; } &&\n    { test -z \"$chgrpcmd\" || $doit $chgrpcmd \"$dsttmp\"; } &&\n    { test -z \"$stripcmd\" || $doit $stripcmd \"$dsttmp\"; } &&\n    { test -z \"$chmodcmd\" || $doit $chmodcmd $mode \"$dsttmp\"; } &&\n\n    # If -C, don't bother to copy if it wouldn't change the file.\n    if $copy_on_change &&\n       old=`LC_ALL=C ls -dlL \"$dst\"     2>/dev/null` &&\n       new=`LC_ALL=C ls -dlL \"$dsttmp\"  2>/dev/null` &&\n       set -f &&\n       set X $old && old=:$2:$4:$5:$6 &&\n       set X $new && new=:$2:$4:$5:$6 &&\n       set +f &&\n       test \"$old\" = \"$new\" &&\n       $cmpprog \"$dst\" \"$dsttmp\" >/dev/null 2>&1\n    then\n      rm -f \"$dsttmp\"\n    else\n      # Rename the file to the real destination.\n      $doit $mvcmd -f \"$dsttmp\" \"$dst\" 2>/dev/null ||\n\n      # The rename failed, perhaps because mv can't rename something else\n      # to itself, or perhaps because mv is so ancient that it does not\n      # support -f.\n      {\n        # Now remove or move aside any old file at destination location.\n        # We try this two ways since rm can't unlink itself on some\n        # systems and the destination file might be busy for other\n        # reasons.  In this case, the final cleanup might fail but the new\n        # file should still install successfully.\n        {\n          test ! -f \"$dst\" ||\n          $doit $rmcmd -f \"$dst\" 2>/dev/null ||\n          { $doit $mvcmd -f \"$dst\" \"$rmtmp\" 2>/dev/null &&\n            { $doit $rmcmd -f \"$rmtmp\" 2>/dev/null; :; }\n          } ||\n          { echo \"$0: cannot unlink or rename $dst\" >&2\n            (exit 1); exit 1\n          }\n        } &&\n\n        # Now rename the file to the real destination.\n        $doit $mvcmd \"$dsttmp\" \"$dst\"\n      }\n    fi || exit 1\n\n    trap '' 0\n  fi\ndone\n\n# Local variables:\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"scriptversion=\"\n# time-stamp-format: \"%:y-%02m-%02d.%02H\"\n# time-stamp-time-zone: \"UTC\"\n# time-stamp-end: \"; # UTC\"\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/ltmain.sh",
    "content": "#! /bin/sh\n## DO NOT EDIT - This file generated from ./build-aux/ltmain.in\n##               by inline-source v2014-01-03.01\n\n# libtool (GNU libtool) 2.4.6\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996\n\n# Copyright (C) 1996-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License,\n# if you distribute this file as part of a program or library that\n# is built using GNU Libtool, you may include this file under the\n# same distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\nPROGRAM=libtool\nPACKAGE=libtool\nVERSION=2.4.6\npackage_revision=2.4.6\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# Run './libtool --help' for help with using this script from the\n# command line.\n\n\n## ------------------------------- ##\n## User overridable command paths. ##\n## ------------------------------- ##\n\n# After configure completes, it has a better idea of some of the\n# shell tools we need than the defaults used by the functions shared\n# with bootstrap, so set those here where they can still be over-\n# ridden by the user, but otherwise take precedence.\n\n: ${AUTOCONF=\"autoconf\"}\n: ${AUTOMAKE=\"automake\"}\n\n\n## -------------------------- ##\n## Source external libraries. ##\n## -------------------------- ##\n\n# Much of our low-level functionality needs to be sourced from external\n# libraries, which are installed to $pkgauxdir.\n\n# Set a version string for this script.\nscriptversion=2015-01-20.17; # UTC\n\n# General shell script boiler plate, and helper functions.\n# Written by Gary V. Vaughan, 2004\n\n# Copyright (C) 2004-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n\n# As a special exception to the GNU General Public License, if you distribute\n# this file as part of a program or library that is built using GNU Libtool,\n# you may include this file under the same distribution terms that you use\n# for the rest of that program.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU\n# General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program. If not, see <http://www.gnu.org/licenses/>.\n\n# Please report bugs or propose patches to gary@gnu.org.\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# Evaluate this file near the top of your script to gain access to\n# the functions and variables defined here:\n#\n#   . `echo \"$0\" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh\n#\n# If you need to override any of the default environment variable\n# settings, do that before evaluating this file.\n\n\n## -------------------- ##\n## Shell normalisation. ##\n## -------------------- ##\n\n# Some shells need a little help to be as Bourne compatible as possible.\n# Before doing anything else, make sure all that help has been provided!\n\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac\nfi\n\n# NLS nuisances: We save the old values in case they are required later.\n_G_user_locale=\n_G_safe_locale=\nfor _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\ndo\n  eval \"if test set = \\\"\\${$_G_var+set}\\\"; then\n          save_$_G_var=\\$$_G_var\n          $_G_var=C\n\t  export $_G_var\n\t  _G_user_locale=\\\"$_G_var=\\\\\\$save_\\$_G_var; \\$_G_user_locale\\\"\n\t  _G_safe_locale=\\\"$_G_var=C; \\$_G_safe_locale\\\"\n\tfi\"\ndone\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n# Make sure IFS has a sensible default\nsp=' '\nnl='\n'\nIFS=\"$sp\t$nl\"\n\n# There are apparently some retarded systems that use ';' as a PATH separator!\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n\n## ------------------------- ##\n## Locate command utilities. ##\n## ------------------------- ##\n\n\n# func_executable_p FILE\n# ----------------------\n# Check that FILE is an executable regular file.\nfunc_executable_p ()\n{\n    test -f \"$1\" && test -x \"$1\"\n}\n\n\n# func_path_progs PROGS_LIST CHECK_FUNC [PATH]\n# --------------------------------------------\n# Search for either a program that responds to --version with output\n# containing \"GNU\", or else returned by CHECK_FUNC otherwise, by\n# trying all the directories in PATH with each of the elements of\n# PROGS_LIST.\n#\n# CHECK_FUNC should accept the path to a candidate program, and\n# set $func_check_prog_result if it truncates its output less than\n# $_G_path_prog_max characters.\nfunc_path_progs ()\n{\n    _G_progs_list=$1\n    _G_check_func=$2\n    _G_PATH=${3-\"$PATH\"}\n\n    _G_path_prog_max=0\n    _G_path_prog_found=false\n    _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:}\n    for _G_dir in $_G_PATH; do\n      IFS=$_G_save_IFS\n      test -z \"$_G_dir\" && _G_dir=.\n      for _G_prog_name in $_G_progs_list; do\n        for _exeext in '' .EXE; do\n          _G_path_prog=$_G_dir/$_G_prog_name$_exeext\n          func_executable_p \"$_G_path_prog\" || continue\n          case `\"$_G_path_prog\" --version 2>&1` in\n            *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;;\n            *)     $_G_check_func $_G_path_prog\n\t\t   func_path_progs_result=$func_check_prog_result\n\t\t   ;;\n          esac\n          $_G_path_prog_found && break 3\n        done\n      done\n    done\n    IFS=$_G_save_IFS\n    test -z \"$func_path_progs_result\" && {\n      echo \"no acceptable sed could be found in \\$PATH\" >&2\n      exit 1\n    }\n}\n\n\n# We want to be able to use the functions in this file before configure\n# has figured out where the best binaries are kept, which means we have\n# to search for them ourselves - except when the results are already set\n# where we skip the searches.\n\n# Unless the user overrides by setting SED, search the path for either GNU\n# sed, or the sed that truncates its output the least.\ntest -z \"$SED\" && {\n  _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/\n  for _G_i in 1 2 3 4 5 6 7; do\n    _G_sed_script=$_G_sed_script$nl$_G_sed_script\n  done\n  echo \"$_G_sed_script\" 2>/dev/null | sed 99q >conftest.sed\n  _G_sed_script=\n\n  func_check_prog_sed ()\n  {\n    _G_path_prog=$1\n\n    _G_count=0\n    printf 0123456789 >conftest.in\n    while :\n    do\n      cat conftest.in conftest.in >conftest.tmp\n      mv conftest.tmp conftest.in\n      cp conftest.in conftest.nl\n      echo '' >> conftest.nl\n      \"$_G_path_prog\" -f conftest.sed <conftest.nl >conftest.out 2>/dev/null || break\n      diff conftest.out conftest.nl >/dev/null 2>&1 || break\n      _G_count=`expr $_G_count + 1`\n      if test \"$_G_count\" -gt \"$_G_path_prog_max\"; then\n        # Best one so far, save it but keep looking for a better one\n        func_check_prog_result=$_G_path_prog\n        _G_path_prog_max=$_G_count\n      fi\n      # 10*(2^10) chars as input seems more than enough\n      test 10 -lt \"$_G_count\" && break\n    done\n    rm -f conftest.in conftest.tmp conftest.nl conftest.out\n  }\n\n  func_path_progs \"sed gsed\" func_check_prog_sed $PATH:/usr/xpg4/bin\n  rm -f conftest.sed\n  SED=$func_path_progs_result\n}\n\n\n# Unless the user overrides by setting GREP, search the path for either GNU\n# grep, or the grep that truncates its output the least.\ntest -z \"$GREP\" && {\n  func_check_prog_grep ()\n  {\n    _G_path_prog=$1\n\n    _G_count=0\n    _G_path_prog_max=0\n    printf 0123456789 >conftest.in\n    while :\n    do\n      cat conftest.in conftest.in >conftest.tmp\n      mv conftest.tmp conftest.in\n      cp conftest.in conftest.nl\n      echo 'GREP' >> conftest.nl\n      \"$_G_path_prog\" -e 'GREP$' -e '-(cannot match)-' <conftest.nl >conftest.out 2>/dev/null || break\n      diff conftest.out conftest.nl >/dev/null 2>&1 || break\n      _G_count=`expr $_G_count + 1`\n      if test \"$_G_count\" -gt \"$_G_path_prog_max\"; then\n        # Best one so far, save it but keep looking for a better one\n        func_check_prog_result=$_G_path_prog\n        _G_path_prog_max=$_G_count\n      fi\n      # 10*(2^10) chars as input seems more than enough\n      test 10 -lt \"$_G_count\" && break\n    done\n    rm -f conftest.in conftest.tmp conftest.nl conftest.out\n  }\n\n  func_path_progs \"grep ggrep\" func_check_prog_grep $PATH:/usr/xpg4/bin\n  GREP=$func_path_progs_result\n}\n\n\n## ------------------------------- ##\n## User overridable command paths. ##\n## ------------------------------- ##\n\n# All uppercase variable names are used for environment variables.  These\n# variables can be overridden by the user before calling a script that\n# uses them if a suitable command of that name is not already available\n# in the command search PATH.\n\n: ${CP=\"cp -f\"}\n: ${ECHO=\"printf %s\\n\"}\n: ${EGREP=\"$GREP -E\"}\n: ${FGREP=\"$GREP -F\"}\n: ${LN_S=\"ln -s\"}\n: ${MAKE=\"make\"}\n: ${MKDIR=\"mkdir\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n: ${SHELL=\"${CONFIG_SHELL-/bin/sh}\"}\n\n\n## -------------------- ##\n## Useful sed snippets. ##\n## -------------------- ##\n\nsed_dirname='s|/[^/]*$||'\nsed_basename='s|^.*/||'\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='s|\\([`\"$\\\\]\\)|\\\\\\1|g'\n\n# Same as above, but do not quote variable references.\nsed_double_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\n\n# Sed substitution that turns a string into a regex matching for the\n# string literally.\nsed_make_literal_regex='s|[].[^$\\\\*\\/]|\\\\&|g'\n\n# Sed substitution that converts a w32 file name or path\n# that contains forward slashes, into one that contains\n# (escaped) backslashes.  A very naive implementation.\nsed_naive_backslashify='s|\\\\\\\\*|\\\\|g;s|/|\\\\|g;s|\\\\|\\\\\\\\|g'\n\n# Re-'\\' parameter expansions in output of sed_double_quote_subst that\n# were '\\'-ed in input to the same.  If an odd number of '\\' preceded a\n# '$' in input to sed_double_quote_subst, that '$' was protected from\n# expansion.  Since each input '\\' is now two '\\'s, look for any number\n# of runs of four '\\'s followed by two '\\'s and then a '$'.  '\\' that '$'.\n_G_bs='\\\\'\n_G_bs2='\\\\\\\\'\n_G_bs4='\\\\\\\\\\\\\\\\'\n_G_dollar='\\$'\nsed_double_backslash=\"\\\n  s/$_G_bs4/&\\\\\n/g\n  s/^$_G_bs2$_G_dollar/$_G_bs&/\n  s/\\\\([^$_G_bs]\\\\)$_G_bs2$_G_dollar/\\\\1$_G_bs2$_G_bs$_G_dollar/g\n  s/\\n//g\"\n\n\n## ----------------- ##\n## Global variables. ##\n## ----------------- ##\n\n# Except for the global variables explicitly listed below, the following\n# functions in the '^func_' namespace, and the '^require_' namespace\n# variables initialised in the 'Resource management' section, sourcing\n# this file will not pollute your global namespace with anything\n# else. There's no portable way to scope variables in Bourne shell\n# though, so actually running these functions will sometimes place\n# results into a variable named after the function, and often use\n# temporary variables in the '^_G_' namespace. If you are careful to\n# avoid using those namespaces casually in your sourcing script, things\n# should continue to work as you expect. And, of course, you can freely\n# overwrite any of the functions or variables defined here before\n# calling anything to customize them.\n\nEXIT_SUCCESS=0\nEXIT_FAILURE=1\nEXIT_MISMATCH=63  # $? = 63 is used to indicate version mismatch to missing.\nEXIT_SKIP=77\t  # $? = 77 is used to indicate a skipped test to automake.\n\n# Allow overriding, eg assuming that you follow the convention of\n# putting '$debug_cmd' at the start of all your functions, you can get\n# bash to show function call trace with:\n#\n#    debug_cmd='eval echo \"${FUNCNAME[0]} $*\" >&2' bash your-script-name\ndebug_cmd=${debug_cmd-\":\"}\nexit_cmd=:\n\n# By convention, finish your script with:\n#\n#    exit $exit_status\n#\n# so that you can set exit_status to non-zero if you want to indicate\n# something went wrong during execution without actually bailing out at\n# the point of failure.\nexit_status=$EXIT_SUCCESS\n\n# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh\n# is ksh but when the shell is invoked as \"sh\" and the current value of\n# the _XPG environment variable is not equal to 1 (one), the special\n# positional parameter $0, within a function call, is the name of the\n# function.\nprogpath=$0\n\n# The name of this program.\nprogname=`$ECHO \"$progpath\" |$SED \"$sed_basename\"`\n\n# Make sure we have an absolute progpath for reexecution:\ncase $progpath in\n  [\\\\/]*|[A-Za-z]:\\\\*) ;;\n  *[\\\\/]*)\n     progdir=`$ECHO \"$progpath\" |$SED \"$sed_dirname\"`\n     progdir=`cd \"$progdir\" && pwd`\n     progpath=$progdir/$progname\n     ;;\n  *)\n     _G_IFS=$IFS\n     IFS=${PATH_SEPARATOR-:}\n     for progdir in $PATH; do\n       IFS=$_G_IFS\n       test -x \"$progdir/$progname\" && break\n     done\n     IFS=$_G_IFS\n     test -n \"$progdir\" || progdir=`pwd`\n     progpath=$progdir/$progname\n     ;;\nesac\n\n\n## ----------------- ##\n## Standard options. ##\n## ----------------- ##\n\n# The following options affect the operation of the functions defined\n# below, and should be set appropriately depending on run-time para-\n# meters passed on the command line.\n\nopt_dry_run=false\nopt_quiet=false\nopt_verbose=false\n\n# Categories 'all' and 'none' are always available.  Append any others\n# you will pass as the first argument to func_warning from your own\n# code.\nwarning_categories=\n\n# By default, display warnings according to 'opt_warning_types'.  Set\n# 'warning_func'  to ':' to elide all warnings, or func_fatal_error to\n# treat the next displayed warning as a fatal error.\nwarning_func=func_warn_and_continue\n\n# Set to 'all' to display all warnings, 'none' to suppress all\n# warnings, or a space delimited list of some subset of\n# 'warning_categories' to display only the listed warnings.\nopt_warning_types=all\n\n\n## -------------------- ##\n## Resource management. ##\n## -------------------- ##\n\n# This section contains definitions for functions that each ensure a\n# particular resource (a file, or a non-empty configuration variable for\n# example) is available, and if appropriate to extract default values\n# from pertinent package files. Call them using their associated\n# 'require_*' variable to ensure that they are executed, at most, once.\n#\n# It's entirely deliberate that calling these functions can set\n# variables that don't obey the namespace limitations obeyed by the rest\n# of this file, in order that that they be as useful as possible to\n# callers.\n\n\n# require_term_colors\n# -------------------\n# Allow display of bold text on terminals that support it.\nrequire_term_colors=func_require_term_colors\nfunc_require_term_colors ()\n{\n    $debug_cmd\n\n    test -t 1 && {\n      # COLORTERM and USE_ANSI_COLORS environment variables take\n      # precedence, because most terminfo databases neglect to describe\n      # whether color sequences are supported.\n      test -n \"${COLORTERM+set}\" && : ${USE_ANSI_COLORS=\"1\"}\n\n      if test 1 = \"$USE_ANSI_COLORS\"; then\n        # Standard ANSI escape sequences\n        tc_reset='\u001b[0m'\n        tc_bold='\u001b[1m';   tc_standout='\u001b[7m'\n        tc_red='\u001b[31m';   tc_green='\u001b[32m'\n        tc_blue='\u001b[34m';  tc_cyan='\u001b[36m'\n      else\n        # Otherwise trust the terminfo database after all.\n        test -n \"`tput sgr0 2>/dev/null`\" && {\n          tc_reset=`tput sgr0`\n          test -n \"`tput bold 2>/dev/null`\" && tc_bold=`tput bold`\n          tc_standout=$tc_bold\n          test -n \"`tput smso 2>/dev/null`\" && tc_standout=`tput smso`\n          test -n \"`tput setaf 1 2>/dev/null`\" && tc_red=`tput setaf 1`\n          test -n \"`tput setaf 2 2>/dev/null`\" && tc_green=`tput setaf 2`\n          test -n \"`tput setaf 4 2>/dev/null`\" && tc_blue=`tput setaf 4`\n          test -n \"`tput setaf 5 2>/dev/null`\" && tc_cyan=`tput setaf 5`\n        }\n      fi\n    }\n\n    require_term_colors=:\n}\n\n\n## ----------------- ##\n## Function library. ##\n## ----------------- ##\n\n# This section contains a variety of useful functions to call in your\n# scripts. Take note of the portable wrappers for features provided by\n# some modern shells, which will fall back to slower equivalents on\n# less featureful shells.\n\n\n# func_append VAR VALUE\n# ---------------------\n# Append VALUE onto the existing contents of VAR.\n\n  # We should try to minimise forks, especially on Windows where they are\n  # unreasonably slow, so skip the feature probes when bash or zsh are\n  # being used:\n  if test set = \"${BASH_VERSION+set}${ZSH_VERSION+set}\"; then\n    : ${_G_HAVE_ARITH_OP=\"yes\"}\n    : ${_G_HAVE_XSI_OPS=\"yes\"}\n    # The += operator was introduced in bash 3.1\n    case $BASH_VERSION in\n      [12].* | 3.0 | 3.0*) ;;\n      *)\n        : ${_G_HAVE_PLUSEQ_OP=\"yes\"}\n        ;;\n    esac\n  fi\n\n  # _G_HAVE_PLUSEQ_OP\n  # Can be empty, in which case the shell is probed, \"yes\" if += is\n  # useable or anything else if it does not work.\n  test -z \"$_G_HAVE_PLUSEQ_OP\" \\\n    && (eval 'x=a; x+=\" b\"; test \"a b\" = \"$x\"') 2>/dev/null \\\n    && _G_HAVE_PLUSEQ_OP=yes\n\nif test yes = \"$_G_HAVE_PLUSEQ_OP\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_append ()\n  {\n    $debug_cmd\n\n    eval \"$1+=\\$2\"\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_append ()\n  {\n    $debug_cmd\n\n    eval \"$1=\\$$1\\$2\"\n  }\nfi\n\n\n# func_append_quoted VAR VALUE\n# ----------------------------\n# Quote VALUE and append to the end of shell variable VAR, separated\n# by a space.\nif test yes = \"$_G_HAVE_PLUSEQ_OP\"; then\n  eval 'func_append_quoted ()\n  {\n    $debug_cmd\n\n    func_quote_for_eval \"$2\"\n    eval \"$1+=\\\\ \\$func_quote_for_eval_result\"\n  }'\nelse\n  func_append_quoted ()\n  {\n    $debug_cmd\n\n    func_quote_for_eval \"$2\"\n    eval \"$1=\\$$1\\\\ \\$func_quote_for_eval_result\"\n  }\nfi\n\n\n# func_append_uniq VAR VALUE\n# --------------------------\n# Append unique VALUE onto the existing contents of VAR, assuming\n# entries are delimited by the first character of VALUE.  For example:\n#\n#   func_append_uniq options \" --another-option option-argument\"\n#\n# will only append to $options if \" --another-option option-argument \"\n# is not already present somewhere in $options already (note spaces at\n# each end implied by leading space in second argument).\nfunc_append_uniq ()\n{\n    $debug_cmd\n\n    eval _G_current_value='`$ECHO $'$1'`'\n    _G_delim=`expr \"$2\" : '\\(.\\)'`\n\n    case $_G_delim$_G_current_value$_G_delim in\n      *\"$2$_G_delim\"*) ;;\n      *) func_append \"$@\" ;;\n    esac\n}\n\n\n# func_arith TERM...\n# ------------------\n# Set func_arith_result to the result of evaluating TERMs.\n  test -z \"$_G_HAVE_ARITH_OP\" \\\n    && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \\\n    && _G_HAVE_ARITH_OP=yes\n\nif test yes = \"$_G_HAVE_ARITH_OP\"; then\n  eval 'func_arith ()\n  {\n    $debug_cmd\n\n    func_arith_result=$(( $* ))\n  }'\nelse\n  func_arith ()\n  {\n    $debug_cmd\n\n    func_arith_result=`expr \"$@\"`\n  }\nfi\n\n\n# func_basename FILE\n# ------------------\n# Set func_basename_result to FILE with everything up to and including\n# the last / stripped.\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  # If this shell supports suffix pattern removal, then use it to avoid\n  # forking. Hide the definitions single quotes in case the shell chokes\n  # on unsupported syntax...\n  _b='func_basename_result=${1##*/}'\n  _d='case $1 in\n        */*) func_dirname_result=${1%/*}$2 ;;\n        *  ) func_dirname_result=$3        ;;\n      esac'\n\nelse\n  # ...otherwise fall back to using sed.\n  _b='func_basename_result=`$ECHO \"$1\" |$SED \"$sed_basename\"`'\n  _d='func_dirname_result=`$ECHO \"$1\"  |$SED \"$sed_dirname\"`\n      if test \"X$func_dirname_result\" = \"X$1\"; then\n        func_dirname_result=$3\n      else\n        func_append func_dirname_result \"$2\"\n      fi'\nfi\n\neval 'func_basename ()\n{\n    $debug_cmd\n\n    '\"$_b\"'\n}'\n\n\n# func_dirname FILE APPEND NONDIR_REPLACEMENT\n# -------------------------------------------\n# Compute the dirname of FILE.  If nonempty, add APPEND to the result,\n# otherwise set result to NONDIR_REPLACEMENT.\neval 'func_dirname ()\n{\n    $debug_cmd\n\n    '\"$_d\"'\n}'\n\n\n# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT\n# --------------------------------------------------------\n# Perform func_basename and func_dirname in a single function\n# call:\n#   dirname:  Compute the dirname of FILE.  If nonempty,\n#             add APPEND to the result, otherwise set result\n#             to NONDIR_REPLACEMENT.\n#             value returned in \"$func_dirname_result\"\n#   basename: Compute filename of FILE.\n#             value retuned in \"$func_basename_result\"\n# For efficiency, we do not delegate to the functions above but instead\n# duplicate the functionality here.\neval 'func_dirname_and_basename ()\n{\n    $debug_cmd\n\n    '\"$_b\"'\n    '\"$_d\"'\n}'\n\n\n# func_echo ARG...\n# ----------------\n# Echo program name prefixed message.\nfunc_echo ()\n{\n    $debug_cmd\n\n    _G_message=$*\n\n    func_echo_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_IFS\n      $ECHO \"$progname: $_G_line\"\n    done\n    IFS=$func_echo_IFS\n}\n\n\n# func_echo_all ARG...\n# --------------------\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"$*\"\n}\n\n\n# func_echo_infix_1 INFIX ARG...\n# ------------------------------\n# Echo program name, followed by INFIX on the first line, with any\n# additional lines not showing INFIX.\nfunc_echo_infix_1 ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    _G_infix=$1; shift\n    _G_indent=$_G_infix\n    _G_prefix=\"$progname: $_G_infix: \"\n    _G_message=$*\n\n    # Strip color escape sequences before counting printable length\n    for _G_tc in \"$tc_reset\" \"$tc_bold\" \"$tc_standout\" \"$tc_red\" \"$tc_green\" \"$tc_blue\" \"$tc_cyan\"\n    do\n      test -n \"$_G_tc\" && {\n        _G_esc_tc=`$ECHO \"$_G_tc\" | $SED \"$sed_make_literal_regex\"`\n        _G_indent=`$ECHO \"$_G_indent\" | $SED \"s|$_G_esc_tc||g\"`\n      }\n    done\n    _G_indent=\"$progname: \"`echo \"$_G_indent\" | $SED 's|.| |g'`\"  \" ## exclude from sc_prohibit_nested_quotes\n\n    func_echo_infix_1_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_infix_1_IFS\n      $ECHO \"$_G_prefix$tc_bold$_G_line$tc_reset\" >&2\n      _G_prefix=$_G_indent\n    done\n    IFS=$func_echo_infix_1_IFS\n}\n\n\n# func_error ARG...\n# -----------------\n# Echo program name prefixed message to standard error.\nfunc_error ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    func_echo_infix_1 \"  $tc_standout${tc_red}error$tc_reset\" \"$*\" >&2\n}\n\n\n# func_fatal_error ARG...\n# -----------------------\n# Echo program name prefixed message to standard error, and exit.\nfunc_fatal_error ()\n{\n    $debug_cmd\n\n    func_error \"$*\"\n    exit $EXIT_FAILURE\n}\n\n\n# func_grep EXPRESSION FILENAME\n# -----------------------------\n# Check whether EXPRESSION matches any line of FILENAME, without output.\nfunc_grep ()\n{\n    $debug_cmd\n\n    $GREP \"$1\" \"$2\" >/dev/null 2>&1\n}\n\n\n# func_len STRING\n# ---------------\n# Set func_len_result to the length of STRING. STRING may not\n# start with a hyphen.\n  test -z \"$_G_HAVE_XSI_OPS\" \\\n    && (eval 'x=a/b/c;\n      test 5aa/bb/cc = \"${#x}${x%%/*}${x%/*}${x#*/}${x##*/}\"') 2>/dev/null \\\n    && _G_HAVE_XSI_OPS=yes\n\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_len ()\n  {\n    $debug_cmd\n\n    func_len_result=${#1}\n  }'\nelse\n  func_len ()\n  {\n    $debug_cmd\n\n    func_len_result=`expr \"$1\" : \".*\" 2>/dev/null || echo $max_cmd_len`\n  }\nfi\n\n\n# func_mkdir_p DIRECTORY-PATH\n# ---------------------------\n# Make sure the entire path to DIRECTORY-PATH is available.\nfunc_mkdir_p ()\n{\n    $debug_cmd\n\n    _G_directory_path=$1\n    _G_dir_list=\n\n    if test -n \"$_G_directory_path\" && test : != \"$opt_dry_run\"; then\n\n      # Protect directory names starting with '-'\n      case $_G_directory_path in\n        -*) _G_directory_path=./$_G_directory_path ;;\n      esac\n\n      # While some portion of DIR does not yet exist...\n      while test ! -d \"$_G_directory_path\"; do\n        # ...make a list in topmost first order.  Use a colon delimited\n\t# list incase some portion of path contains whitespace.\n        _G_dir_list=$_G_directory_path:$_G_dir_list\n\n        # If the last portion added has no slash in it, the list is done\n        case $_G_directory_path in */*) ;; *) break ;; esac\n\n        # ...otherwise throw away the child directory and loop\n        _G_directory_path=`$ECHO \"$_G_directory_path\" | $SED -e \"$sed_dirname\"`\n      done\n      _G_dir_list=`$ECHO \"$_G_dir_list\" | $SED 's|:*$||'`\n\n      func_mkdir_p_IFS=$IFS; IFS=:\n      for _G_dir in $_G_dir_list; do\n\tIFS=$func_mkdir_p_IFS\n        # mkdir can fail with a 'File exist' error if two processes\n        # try to create one of the directories concurrently.  Don't\n        # stop in that case!\n        $MKDIR \"$_G_dir\" 2>/dev/null || :\n      done\n      IFS=$func_mkdir_p_IFS\n\n      # Bail out if we (or some other process) failed to create a directory.\n      test -d \"$_G_directory_path\" || \\\n        func_fatal_error \"Failed to create '$1'\"\n    fi\n}\n\n\n# func_mktempdir [BASENAME]\n# -------------------------\n# Make a temporary directory that won't clash with other running\n# libtool processes, and avoids race conditions if possible.  If\n# given, BASENAME is the basename for that directory.\nfunc_mktempdir ()\n{\n    $debug_cmd\n\n    _G_template=${TMPDIR-/tmp}/${1-$progname}\n\n    if test : = \"$opt_dry_run\"; then\n      # Return a directory name, but don't create it in dry-run mode\n      _G_tmpdir=$_G_template-$$\n    else\n\n      # If mktemp works, use that first and foremost\n      _G_tmpdir=`mktemp -d \"$_G_template-XXXXXXXX\" 2>/dev/null`\n\n      if test ! -d \"$_G_tmpdir\"; then\n        # Failing that, at least try and use $RANDOM to avoid a race\n        _G_tmpdir=$_G_template-${RANDOM-0}$$\n\n        func_mktempdir_umask=`umask`\n        umask 0077\n        $MKDIR \"$_G_tmpdir\"\n        umask $func_mktempdir_umask\n      fi\n\n      # If we're not in dry-run mode, bomb out on failure\n      test -d \"$_G_tmpdir\" || \\\n        func_fatal_error \"cannot create temporary directory '$_G_tmpdir'\"\n    fi\n\n    $ECHO \"$_G_tmpdir\"\n}\n\n\n# func_normal_abspath PATH\n# ------------------------\n# Remove doubled-up and trailing slashes, \".\" path components,\n# and cancel out any \"..\" path components in PATH after making\n# it an absolute path.\nfunc_normal_abspath ()\n{\n    $debug_cmd\n\n    # These SED scripts presuppose an absolute path with a trailing slash.\n    _G_pathcar='s|^/\\([^/]*\\).*$|\\1|'\n    _G_pathcdr='s|^/[^/]*||'\n    _G_removedotparts=':dotsl\n\t\ts|/\\./|/|g\n\t\tt dotsl\n\t\ts|/\\.$|/|'\n    _G_collapseslashes='s|/\\{1,\\}|/|g'\n    _G_finalslash='s|/*$|/|'\n\n    # Start from root dir and reassemble the path.\n    func_normal_abspath_result=\n    func_normal_abspath_tpath=$1\n    func_normal_abspath_altnamespace=\n    case $func_normal_abspath_tpath in\n      \"\")\n        # Empty path, that just means $cwd.\n        func_stripname '' '/' \"`pwd`\"\n        func_normal_abspath_result=$func_stripname_result\n        return\n        ;;\n      # The next three entries are used to spot a run of precisely\n      # two leading slashes without using negated character classes;\n      # we take advantage of case's first-match behaviour.\n      ///*)\n        # Unusual form of absolute path, do nothing.\n        ;;\n      //*)\n        # Not necessarily an ordinary path; POSIX reserves leading '//'\n        # and for example Cygwin uses it to access remote file shares\n        # over CIFS/SMB, so we conserve a leading double slash if found.\n        func_normal_abspath_altnamespace=/\n        ;;\n      /*)\n        # Absolute path, do nothing.\n        ;;\n      *)\n        # Relative path, prepend $cwd.\n        func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath\n        ;;\n    esac\n\n    # Cancel out all the simple stuff to save iterations.  We also want\n    # the path to end with a slash for ease of parsing, so make sure\n    # there is one (and only one) here.\n    func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_removedotparts\" -e \"$_G_collapseslashes\" -e \"$_G_finalslash\"`\n    while :; do\n      # Processed it all yet?\n      if test / = \"$func_normal_abspath_tpath\"; then\n        # If we ascended to the root using \"..\" the result may be empty now.\n        if test -z \"$func_normal_abspath_result\"; then\n          func_normal_abspath_result=/\n        fi\n        break\n      fi\n      func_normal_abspath_tcomponent=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_pathcar\"`\n      func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_pathcdr\"`\n      # Figure out what to do with it\n      case $func_normal_abspath_tcomponent in\n        \"\")\n          # Trailing empty path component, ignore it.\n          ;;\n        ..)\n          # Parent dir; strip last assembled component from result.\n          func_dirname \"$func_normal_abspath_result\"\n          func_normal_abspath_result=$func_dirname_result\n          ;;\n        *)\n          # Actual path component, append it.\n          func_append func_normal_abspath_result \"/$func_normal_abspath_tcomponent\"\n          ;;\n      esac\n    done\n    # Restore leading double-slash if one was found on entry.\n    func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result\n}\n\n\n# func_notquiet ARG...\n# --------------------\n# Echo program name prefixed message only when not in quiet mode.\nfunc_notquiet ()\n{\n    $debug_cmd\n\n    $opt_quiet || func_echo ${1+\"$@\"}\n\n    # A bug in bash halts the script if the last line of a function\n    # fails when set -e is in force, so we need another command to\n    # work around that:\n    :\n}\n\n\n# func_relative_path SRCDIR DSTDIR\n# --------------------------------\n# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR.\nfunc_relative_path ()\n{\n    $debug_cmd\n\n    func_relative_path_result=\n    func_normal_abspath \"$1\"\n    func_relative_path_tlibdir=$func_normal_abspath_result\n    func_normal_abspath \"$2\"\n    func_relative_path_tbindir=$func_normal_abspath_result\n\n    # Ascend the tree starting from libdir\n    while :; do\n      # check if we have found a prefix of bindir\n      case $func_relative_path_tbindir in\n        $func_relative_path_tlibdir)\n          # found an exact match\n          func_relative_path_tcancelled=\n          break\n          ;;\n        $func_relative_path_tlibdir*)\n          # found a matching prefix\n          func_stripname \"$func_relative_path_tlibdir\" '' \"$func_relative_path_tbindir\"\n          func_relative_path_tcancelled=$func_stripname_result\n          if test -z \"$func_relative_path_result\"; then\n            func_relative_path_result=.\n          fi\n          break\n          ;;\n        *)\n          func_dirname $func_relative_path_tlibdir\n          func_relative_path_tlibdir=$func_dirname_result\n          if test -z \"$func_relative_path_tlibdir\"; then\n            # Have to descend all the way to the root!\n            func_relative_path_result=../$func_relative_path_result\n            func_relative_path_tcancelled=$func_relative_path_tbindir\n            break\n          fi\n          func_relative_path_result=../$func_relative_path_result\n          ;;\n      esac\n    done\n\n    # Now calculate path; take care to avoid doubling-up slashes.\n    func_stripname '' '/' \"$func_relative_path_result\"\n    func_relative_path_result=$func_stripname_result\n    func_stripname '/' '/' \"$func_relative_path_tcancelled\"\n    if test -n \"$func_stripname_result\"; then\n      func_append func_relative_path_result \"/$func_stripname_result\"\n    fi\n\n    # Normalisation. If bindir is libdir, return '.' else relative path.\n    if test -n \"$func_relative_path_result\"; then\n      func_stripname './' '' \"$func_relative_path_result\"\n      func_relative_path_result=$func_stripname_result\n    fi\n\n    test -n \"$func_relative_path_result\" || func_relative_path_result=.\n\n    :\n}\n\n\n# func_quote_for_eval ARG...\n# --------------------------\n# Aesthetically quote ARGs to be evaled later.\n# This function returns two values:\n#   i) func_quote_for_eval_result\n#      double-quoted, suitable for a subsequent eval\n#  ii) func_quote_for_eval_unquoted_result\n#      has all characters that are still active within double\n#      quotes backslashified.\nfunc_quote_for_eval ()\n{\n    $debug_cmd\n\n    func_quote_for_eval_unquoted_result=\n    func_quote_for_eval_result=\n    while test 0 -lt $#; do\n      case $1 in\n        *[\\\\\\`\\\"\\$]*)\n\t  _G_unquoted_arg=`printf '%s\\n' \"$1\" |$SED \"$sed_quote_subst\"` ;;\n        *)\n          _G_unquoted_arg=$1 ;;\n      esac\n      if test -n \"$func_quote_for_eval_unquoted_result\"; then\n\tfunc_append func_quote_for_eval_unquoted_result \" $_G_unquoted_arg\"\n      else\n        func_append func_quote_for_eval_unquoted_result \"$_G_unquoted_arg\"\n      fi\n\n      case $_G_unquoted_arg in\n        # Double-quote args containing shell metacharacters to delay\n        # word splitting, command substitution and variable expansion\n        # for a subsequent eval.\n        # Many Bourne shells cannot handle close brackets correctly\n        # in scan sets, so we specify it separately.\n        *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n          _G_quoted_arg=\\\"$_G_unquoted_arg\\\"\n          ;;\n        *)\n          _G_quoted_arg=$_G_unquoted_arg\n\t  ;;\n      esac\n\n      if test -n \"$func_quote_for_eval_result\"; then\n\tfunc_append func_quote_for_eval_result \" $_G_quoted_arg\"\n      else\n        func_append func_quote_for_eval_result \"$_G_quoted_arg\"\n      fi\n      shift\n    done\n}\n\n\n# func_quote_for_expand ARG\n# -------------------------\n# Aesthetically quote ARG to be evaled later; same as above,\n# but do not quote variable references.\nfunc_quote_for_expand ()\n{\n    $debug_cmd\n\n    case $1 in\n      *[\\\\\\`\\\"]*)\n\t_G_arg=`$ECHO \"$1\" | $SED \\\n\t    -e \"$sed_double_quote_subst\" -e \"$sed_double_backslash\"` ;;\n      *)\n        _G_arg=$1 ;;\n    esac\n\n    case $_G_arg in\n      # Double-quote args containing shell metacharacters to delay\n      # word splitting and command substitution for a subsequent eval.\n      # Many Bourne shells cannot handle close brackets correctly\n      # in scan sets, so we specify it separately.\n      *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n        _G_arg=\\\"$_G_arg\\\"\n        ;;\n    esac\n\n    func_quote_for_expand_result=$_G_arg\n}\n\n\n# func_stripname PREFIX SUFFIX NAME\n# ---------------------------------\n# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result.\n# PREFIX and SUFFIX must not contain globbing or regex special\n# characters, hashes, percent signs, but SUFFIX may contain a leading\n# dot (in which case that matches only a dot).\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_stripname ()\n  {\n    $debug_cmd\n\n    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\n    # positional parameters, so assign one to ordinary variable first.\n    func_stripname_result=$3\n    func_stripname_result=${func_stripname_result#\"$1\"}\n    func_stripname_result=${func_stripname_result%\"$2\"}\n  }'\nelse\n  func_stripname ()\n  {\n    $debug_cmd\n\n    case $2 in\n      .*) func_stripname_result=`$ECHO \"$3\" | $SED -e \"s%^$1%%\" -e \"s%\\\\\\\\$2\\$%%\"`;;\n      *)  func_stripname_result=`$ECHO \"$3\" | $SED -e \"s%^$1%%\" -e \"s%$2\\$%%\"`;;\n    esac\n  }\nfi\n\n\n# func_show_eval CMD [FAIL_EXP]\n# -----------------------------\n# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.\nfunc_show_eval ()\n{\n    $debug_cmd\n\n    _G_cmd=$1\n    _G_fail_exp=${2-':'}\n\n    func_quote_for_expand \"$_G_cmd\"\n    eval \"func_notquiet $func_quote_for_expand_result\"\n\n    $opt_dry_run || {\n      eval \"$_G_cmd\"\n      _G_status=$?\n      if test 0 -ne \"$_G_status\"; then\n\teval \"(exit $_G_status); $_G_fail_exp\"\n      fi\n    }\n}\n\n\n# func_show_eval_locale CMD [FAIL_EXP]\n# ------------------------------------\n# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.  Use the saved locale for evaluation.\nfunc_show_eval_locale ()\n{\n    $debug_cmd\n\n    _G_cmd=$1\n    _G_fail_exp=${2-':'}\n\n    $opt_quiet || {\n      func_quote_for_expand \"$_G_cmd\"\n      eval \"func_echo $func_quote_for_expand_result\"\n    }\n\n    $opt_dry_run || {\n      eval \"$_G_user_locale\n\t    $_G_cmd\"\n      _G_status=$?\n      eval \"$_G_safe_locale\"\n      if test 0 -ne \"$_G_status\"; then\n\teval \"(exit $_G_status); $_G_fail_exp\"\n      fi\n    }\n}\n\n\n# func_tr_sh\n# ----------\n# Turn $1 into a string suitable for a shell variable name.\n# Result is stored in $func_tr_sh_result.  All characters\n# not in the set a-zA-Z0-9_ are replaced with '_'. Further,\n# if $1 begins with a digit, a '_' is prepended as well.\nfunc_tr_sh ()\n{\n    $debug_cmd\n\n    case $1 in\n    [0-9]* | *[!a-zA-Z0-9_]*)\n      func_tr_sh_result=`$ECHO \"$1\" | $SED -e 's/^\\([0-9]\\)/_\\1/' -e 's/[^a-zA-Z0-9_]/_/g'`\n      ;;\n    * )\n      func_tr_sh_result=$1\n      ;;\n    esac\n}\n\n\n# func_verbose ARG...\n# -------------------\n# Echo program name prefixed message in verbose mode only.\nfunc_verbose ()\n{\n    $debug_cmd\n\n    $opt_verbose && func_echo \"$*\"\n\n    :\n}\n\n\n# func_warn_and_continue ARG...\n# -----------------------------\n# Echo program name prefixed warning message to standard error.\nfunc_warn_and_continue ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    func_echo_infix_1 \"${tc_red}warning$tc_reset\" \"$*\" >&2\n}\n\n\n# func_warning CATEGORY ARG...\n# ----------------------------\n# Echo program name prefixed warning message to standard error. Warning\n# messages can be filtered according to CATEGORY, where this function\n# elides messages where CATEGORY is not listed in the global variable\n# 'opt_warning_types'.\nfunc_warning ()\n{\n    $debug_cmd\n\n    # CATEGORY must be in the warning_categories list!\n    case \" $warning_categories \" in\n      *\" $1 \"*) ;;\n      *) func_internal_error \"invalid warning category '$1'\" ;;\n    esac\n\n    _G_category=$1\n    shift\n\n    case \" $opt_warning_types \" in\n      *\" $_G_category \"*) $warning_func ${1+\"$@\"} ;;\n    esac\n}\n\n\n# func_sort_ver VER1 VER2\n# -----------------------\n# 'sort -V' is not generally available.\n# Note this deviates from the version comparison in automake\n# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a\n# but this should suffice as we won't be specifying old\n# version formats or redundant trailing .0 in bootstrap.conf.\n# If we did want full compatibility then we should probably\n# use m4_version_compare from autoconf.\nfunc_sort_ver ()\n{\n    $debug_cmd\n\n    printf '%s\\n%s\\n' \"$1\" \"$2\" \\\n      | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n\n}\n\n# func_lt_ver PREV CURR\n# ---------------------\n# Return true if PREV and CURR are in the correct order according to\n# func_sort_ver, otherwise false.  Use it like this:\n#\n#  func_lt_ver \"$prev_ver\" \"$proposed_ver\" || func_fatal_error \"...\"\nfunc_lt_ver ()\n{\n    $debug_cmd\n\n    test \"x$1\" = x`func_sort_ver \"$1\" \"$2\" | $SED 1q`\n}\n\n\n# Local variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-pattern: \"10/scriptversion=%:y-%02m-%02d.%02H; # UTC\"\n# time-stamp-time-zone: \"UTC\"\n# End:\n#! /bin/sh\n\n# Set a version string for this script.\nscriptversion=2014-01-07.03; # UTC\n\n# A portable, pluggable option parser for Bourne shell.\n# Written by Gary V. Vaughan, 2010\n\n# Copyright (C) 2010-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n# Please report bugs or propose patches to gary@gnu.org.\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# This file is a library for parsing options in your shell scripts along\n# with assorted other useful supporting features that you can make use\n# of too.\n#\n# For the simplest scripts you might need only:\n#\n#   #!/bin/sh\n#   . relative/path/to/funclib.sh\n#   . relative/path/to/options-parser\n#   scriptversion=1.0\n#   func_options ${1+\"$@\"}\n#   eval set dummy \"$func_options_result\"; shift\n#   ...rest of your script...\n#\n# In order for the '--version' option to work, you will need to have a\n# suitably formatted comment like the one at the top of this file\n# starting with '# Written by ' and ending with '# warranty; '.\n#\n# For '-h' and '--help' to work, you will also need a one line\n# description of your script's purpose in a comment directly above the\n# '# Written by ' line, like the one at the top of this file.\n#\n# The default options also support '--debug', which will turn on shell\n# execution tracing (see the comment above debug_cmd below for another\n# use), and '--verbose' and the func_verbose function to allow your script\n# to display verbose messages only when your user has specified\n# '--verbose'.\n#\n# After sourcing this file, you can plug processing for additional\n# options by amending the variables from the 'Configuration' section\n# below, and following the instructions in the 'Option parsing'\n# section further down.\n\n## -------------- ##\n## Configuration. ##\n## -------------- ##\n\n# You should override these variables in your script after sourcing this\n# file so that they reflect the customisations you have added to the\n# option parser.\n\n# The usage line for option parsing errors and the start of '-h' and\n# '--help' output messages. You can embed shell variables for delayed\n# expansion at the time the message is displayed, but you will need to\n# quote other shell meta-characters carefully to prevent them being\n# expanded when the contents are evaled.\nusage='$progpath [OPTION]...'\n\n# Short help message in response to '-h' and '--help'.  Add to this or\n# override it after sourcing this library to reflect the full set of\n# options your script accepts.\nusage_message=\"\\\n       --debug        enable verbose shell tracing\n   -W, --warnings=CATEGORY\n                      report the warnings falling in CATEGORY [all]\n   -v, --verbose      verbosely report processing\n       --version      print version information and exit\n   -h, --help         print short or long help message and exit\n\"\n\n# Additional text appended to 'usage_message' in response to '--help'.\nlong_help_message=\"\nWarning categories include:\n       'all'          show all warnings\n       'none'         turn off all the warnings\n       'error'        warnings are treated as fatal errors\"\n\n# Help message printed before fatal option parsing errors.\nfatal_help=\"Try '\\$progname --help' for more information.\"\n\n\n\n## ------------------------- ##\n## Hook function management. ##\n## ------------------------- ##\n\n# This section contains functions for adding, removing, and running hooks\n# to the main code.  A hook is just a named list of of function, that can\n# be run in order later on.\n\n# func_hookable FUNC_NAME\n# -----------------------\n# Declare that FUNC_NAME will run hooks added with\n# 'func_add_hook FUNC_NAME ...'.\nfunc_hookable ()\n{\n    $debug_cmd\n\n    func_append hookable_fns \" $1\"\n}\n\n\n# func_add_hook FUNC_NAME HOOK_FUNC\n# ---------------------------------\n# Request that FUNC_NAME call HOOK_FUNC before it returns.  FUNC_NAME must\n# first have been declared \"hookable\" by a call to 'func_hookable'.\nfunc_add_hook ()\n{\n    $debug_cmd\n\n    case \" $hookable_fns \" in\n      *\" $1 \"*) ;;\n      *) func_fatal_error \"'$1' does not accept hook functions.\" ;;\n    esac\n\n    eval func_append ${1}_hooks '\" $2\"'\n}\n\n\n# func_remove_hook FUNC_NAME HOOK_FUNC\n# ------------------------------------\n# Remove HOOK_FUNC from the list of functions called by FUNC_NAME.\nfunc_remove_hook ()\n{\n    $debug_cmd\n\n    eval ${1}_hooks='`$ECHO \"\\$'$1'_hooks\" |$SED \"s| '$2'||\"`'\n}\n\n\n# func_run_hooks FUNC_NAME [ARG]...\n# ---------------------------------\n# Run all hook functions registered to FUNC_NAME.\n# It is assumed that the list of hook functions contains nothing more\n# than a whitespace-delimited list of legal shell function names, and\n# no effort is wasted trying to catch shell meta-characters or preserve\n# whitespace.\nfunc_run_hooks ()\n{\n    $debug_cmd\n\n    case \" $hookable_fns \" in\n      *\" $1 \"*) ;;\n      *) func_fatal_error \"'$1' does not support hook funcions.n\" ;;\n    esac\n\n    eval _G_hook_fns=\\$$1_hooks; shift\n\n    for _G_hook in $_G_hook_fns; do\n      eval $_G_hook '\"$@\"'\n\n      # store returned options list back into positional\n      # parameters for next 'cmd' execution.\n      eval _G_hook_result=\\$${_G_hook}_result\n      eval set dummy \"$_G_hook_result\"; shift\n    done\n\n    func_quote_for_eval ${1+\"$@\"}\n    func_run_hooks_result=$func_quote_for_eval_result\n}\n\n\n\n## --------------- ##\n## Option parsing. ##\n## --------------- ##\n\n# In order to add your own option parsing hooks, you must accept the\n# full positional parameter list in your hook function, remove any\n# options that you action, and then pass back the remaining unprocessed\n# options in '<hooked_function_name>_result', escaped suitably for\n# 'eval'.  Like this:\n#\n#    my_options_prep ()\n#    {\n#        $debug_cmd\n#\n#        # Extend the existing usage message.\n#        usage_message=$usage_message'\n#      -s, --silent       don'\\''t print informational messages\n#    '\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_options_prep_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_options_prep my_options_prep\n#\n#\n#    my_silent_option ()\n#    {\n#        $debug_cmd\n#\n#        # Note that for efficiency, we parse as many options as we can\n#        # recognise in a loop before passing the remainder back to the\n#        # caller on the first unrecognised argument we encounter.\n#        while test $# -gt 0; do\n#          opt=$1; shift\n#          case $opt in\n#            --silent|-s) opt_silent=: ;;\n#            # Separate non-argument short options:\n#            -s*)         func_split_short_opt \"$_G_opt\"\n#                         set dummy \"$func_split_short_opt_name\" \\\n#                             \"-$func_split_short_opt_arg\" ${1+\"$@\"}\n#                         shift\n#                         ;;\n#            *)            set dummy \"$_G_opt\" \"$*\"; shift; break ;;\n#          esac\n#        done\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_silent_option_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_parse_options my_silent_option\n#\n#\n#    my_option_validation ()\n#    {\n#        $debug_cmd\n#\n#        $opt_silent && $opt_verbose && func_fatal_help \"\\\n#    '--silent' and '--verbose' options are mutually exclusive.\"\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_option_validation_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_validate_options my_option_validation\n#\n# You'll alse need to manually amend $usage_message to reflect the extra\n# options you parse.  It's preferable to append if you can, so that\n# multiple option parsing hooks can be added safely.\n\n\n# func_options [ARG]...\n# ---------------------\n# All the functions called inside func_options are hookable. See the\n# individual implementations for details.\nfunc_hookable func_options\nfunc_options ()\n{\n    $debug_cmd\n\n    func_options_prep ${1+\"$@\"}\n    eval func_parse_options \\\n        ${func_options_prep_result+\"$func_options_prep_result\"}\n    eval func_validate_options \\\n        ${func_parse_options_result+\"$func_parse_options_result\"}\n\n    eval func_run_hooks func_options \\\n        ${func_validate_options_result+\"$func_validate_options_result\"}\n\n    # save modified positional parameters for caller\n    func_options_result=$func_run_hooks_result\n}\n\n\n# func_options_prep [ARG]...\n# --------------------------\n# All initialisations required before starting the option parse loop.\n# Note that when calling hook functions, we pass through the list of\n# positional parameters.  If a hook function modifies that list, and\n# needs to propogate that back to rest of this script, then the complete\n# modified list must be put in 'func_run_hooks_result' before\n# returning.\nfunc_hookable func_options_prep\nfunc_options_prep ()\n{\n    $debug_cmd\n\n    # Option defaults:\n    opt_verbose=false\n    opt_warning_types=\n\n    func_run_hooks func_options_prep ${1+\"$@\"}\n\n    # save modified positional parameters for caller\n    func_options_prep_result=$func_run_hooks_result\n}\n\n\n# func_parse_options [ARG]...\n# ---------------------------\n# The main option parsing loop.\nfunc_hookable func_parse_options\nfunc_parse_options ()\n{\n    $debug_cmd\n\n    func_parse_options_result=\n\n    # this just eases exit handling\n    while test $# -gt 0; do\n      # Defer to hook functions for initial option parsing, so they\n      # get priority in the event of reusing an option name.\n      func_run_hooks func_parse_options ${1+\"$@\"}\n\n      # Adjust func_parse_options positional parameters to match\n      eval set dummy \"$func_run_hooks_result\"; shift\n\n      # Break out of the loop if we already parsed every option.\n      test $# -gt 0 || break\n\n      _G_opt=$1\n      shift\n      case $_G_opt in\n        --debug|-x)   debug_cmd='set -x'\n                      func_echo \"enabling shell trace mode\"\n                      $debug_cmd\n                      ;;\n\n        --no-warnings|--no-warning|--no-warn)\n                      set dummy --warnings none ${1+\"$@\"}\n                      shift\n\t\t      ;;\n\n        --warnings|--warning|-W)\n                      test $# = 0 && func_missing_arg $_G_opt && break\n                      case \" $warning_categories $1\" in\n                        *\" $1 \"*)\n                          # trailing space prevents matching last $1 above\n                          func_append_uniq opt_warning_types \" $1\"\n                          ;;\n                        *all)\n                          opt_warning_types=$warning_categories\n                          ;;\n                        *none)\n                          opt_warning_types=none\n                          warning_func=:\n                          ;;\n                        *error)\n                          opt_warning_types=$warning_categories\n                          warning_func=func_fatal_error\n                          ;;\n                        *)\n                          func_fatal_error \\\n                             \"unsupported warning category: '$1'\"\n                          ;;\n                      esac\n                      shift\n                      ;;\n\n        --verbose|-v) opt_verbose=: ;;\n        --version)    func_version ;;\n        -\\?|-h)       func_usage ;;\n        --help)       func_help ;;\n\n\t# Separate optargs to long options (plugins may need this):\n\t--*=*)        func_split_equals \"$_G_opt\"\n\t              set dummy \"$func_split_equals_lhs\" \\\n                          \"$func_split_equals_rhs\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n       # Separate optargs to short options:\n        -W*)\n                      func_split_short_opt \"$_G_opt\"\n                      set dummy \"$func_split_short_opt_name\" \\\n                          \"$func_split_short_opt_arg\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n        # Separate non-argument short options:\n        -\\?*|-h*|-v*|-x*)\n                      func_split_short_opt \"$_G_opt\"\n                      set dummy \"$func_split_short_opt_name\" \\\n                          \"-$func_split_short_opt_arg\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n        --)           break ;;\n        -*)           func_fatal_help \"unrecognised option: '$_G_opt'\" ;;\n        *)            set dummy \"$_G_opt\" ${1+\"$@\"}; shift; break ;;\n      esac\n    done\n\n    # save modified positional parameters for caller\n    func_quote_for_eval ${1+\"$@\"}\n    func_parse_options_result=$func_quote_for_eval_result\n}\n\n\n# func_validate_options [ARG]...\n# ------------------------------\n# Perform any sanity checks on option settings and/or unconsumed\n# arguments.\nfunc_hookable func_validate_options\nfunc_validate_options ()\n{\n    $debug_cmd\n\n    # Display all warnings if -W was not given.\n    test -n \"$opt_warning_types\" || opt_warning_types=\" $warning_categories\"\n\n    func_run_hooks func_validate_options ${1+\"$@\"}\n\n    # Bail if the options were screwed!\n    $exit_cmd $EXIT_FAILURE\n\n    # save modified positional parameters for caller\n    func_validate_options_result=$func_run_hooks_result\n}\n\n\n\n## ----------------- ##\n## Helper functions. ##\n## ----------------- ##\n\n# This section contains the helper functions used by the rest of the\n# hookable option parser framework in ascii-betical order.\n\n\n# func_fatal_help ARG...\n# ----------------------\n# Echo program name prefixed message to standard error, followed by\n# a help hint, and exit.\nfunc_fatal_help ()\n{\n    $debug_cmd\n\n    eval \\$ECHO \\\"\"Usage: $usage\"\\\"\n    eval \\$ECHO \\\"\"$fatal_help\"\\\"\n    func_error ${1+\"$@\"}\n    exit $EXIT_FAILURE\n}\n\n\n# func_help\n# ---------\n# Echo long help message to standard output and exit.\nfunc_help ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"$long_help_message\"\n    exit 0\n}\n\n\n# func_missing_arg ARGNAME\n# ------------------------\n# Echo program name prefixed message to standard error and set global\n# exit_cmd.\nfunc_missing_arg ()\n{\n    $debug_cmd\n\n    func_error \"Missing argument for '$1'.\"\n    exit_cmd=exit\n}\n\n\n# func_split_equals STRING\n# ------------------------\n# Set func_split_equals_lhs and func_split_equals_rhs shell variables after\n# splitting STRING at the '=' sign.\ntest -z \"$_G_HAVE_XSI_OPS\" \\\n    && (eval 'x=a/b/c;\n      test 5aa/bb/cc = \"${#x}${x%%/*}${x%/*}${x#*/}${x##*/}\"') 2>/dev/null \\\n    && _G_HAVE_XSI_OPS=yes\n\nif test yes = \"$_G_HAVE_XSI_OPS\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_split_equals ()\n  {\n      $debug_cmd\n\n      func_split_equals_lhs=${1%%=*}\n      func_split_equals_rhs=${1#*=}\n      test \"x$func_split_equals_lhs\" = \"x$1\" \\\n        && func_split_equals_rhs=\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_split_equals ()\n  {\n      $debug_cmd\n\n      func_split_equals_lhs=`expr \"x$1\" : 'x\\([^=]*\\)'`\n      func_split_equals_rhs=\n      test \"x$func_split_equals_lhs\" = \"x$1\" \\\n        || func_split_equals_rhs=`expr \"x$1\" : 'x[^=]*=\\(.*\\)$'`\n  }\nfi #func_split_equals\n\n\n# func_split_short_opt SHORTOPT\n# -----------------------------\n# Set func_split_short_opt_name and func_split_short_opt_arg shell\n# variables after splitting SHORTOPT after the 2nd character.\nif test yes = \"$_G_HAVE_XSI_OPS\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_split_short_opt ()\n  {\n      $debug_cmd\n\n      func_split_short_opt_arg=${1#??}\n      func_split_short_opt_name=${1%\"$func_split_short_opt_arg\"}\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_split_short_opt ()\n  {\n      $debug_cmd\n\n      func_split_short_opt_name=`expr \"x$1\" : 'x-\\(.\\)'`\n      func_split_short_opt_arg=`expr \"x$1\" : 'x-.\\(.*\\)$'`\n  }\nfi #func_split_short_opt\n\n\n# func_usage\n# ----------\n# Echo short help message to standard output and exit.\nfunc_usage ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"Run '$progname --help |${PAGER-more}' for full usage\"\n    exit 0\n}\n\n\n# func_usage_message\n# ------------------\n# Echo short help message to standard output.\nfunc_usage_message ()\n{\n    $debug_cmd\n\n    eval \\$ECHO \\\"\"Usage: $usage\"\\\"\n    echo\n    $SED -n 's|^# ||\n        /^Written by/{\n          x;p;x\n        }\n\th\n\t/^Written by/q' < \"$progpath\"\n    echo\n    eval \\$ECHO \\\"\"$usage_message\"\\\"\n}\n\n\n# func_version\n# ------------\n# Echo version message to standard output and exit.\nfunc_version ()\n{\n    $debug_cmd\n\n    printf '%s\\n' \"$progname $scriptversion\"\n    $SED -n '\n        /(C)/!b go\n        :more\n        /\\./!{\n          N\n          s|\\n# | |\n          b more\n        }\n        :go\n        /^# Written by /,/# warranty; / {\n          s|^# ||\n          s|^# *$||\n          s|\\((C)\\)[ 0-9,-]*[ ,-]\\([1-9][0-9]* \\)|\\1 \\2|\n          p\n        }\n        /^# Written by / {\n          s|^# ||\n          p\n        }\n        /^warranty; /q' < \"$progpath\"\n\n    exit $?\n}\n\n\n# Local variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-pattern: \"10/scriptversion=%:y-%02m-%02d.%02H; # UTC\"\n# time-stamp-time-zone: \"UTC\"\n# End:\n\n# Set a version string.\nscriptversion='(GNU libtool) 2.4.6'\n\n\n# func_echo ARG...\n# ----------------\n# Libtool also displays the current mode in messages, so override\n# funclib.sh func_echo with this custom definition.\nfunc_echo ()\n{\n    $debug_cmd\n\n    _G_message=$*\n\n    func_echo_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_IFS\n      $ECHO \"$progname${opt_mode+: $opt_mode}: $_G_line\"\n    done\n    IFS=$func_echo_IFS\n}\n\n\n# func_warning ARG...\n# -------------------\n# Libtool warnings are not categorized, so override funclib.sh\n# func_warning with this simpler definition.\nfunc_warning ()\n{\n    $debug_cmd\n\n    $warning_func ${1+\"$@\"}\n}\n\n\n## ---------------- ##\n## Options parsing. ##\n## ---------------- ##\n\n# Hook in the functions to make sure our own options are parsed during\n# the option parsing loop.\n\nusage='$progpath [OPTION]... [MODE-ARG]...'\n\n# Short help message in response to '-h'.\nusage_message=\"Options:\n       --config             show all configuration variables\n       --debug              enable verbose shell tracing\n   -n, --dry-run            display commands without modifying any files\n       --features           display basic configuration information and exit\n       --mode=MODE          use operation mode MODE\n       --no-warnings        equivalent to '-Wnone'\n       --preserve-dup-deps  don't remove duplicate dependency libraries\n       --quiet, --silent    don't print informational messages\n       --tag=TAG            use configuration variables from tag TAG\n   -v, --verbose            print more informational messages than default\n       --version            print version information\n   -W, --warnings=CATEGORY  report the warnings falling in CATEGORY [all]\n   -h, --help, --help-all   print short, long, or detailed help message\n\"\n\n# Additional text appended to 'usage_message' in response to '--help'.\nfunc_help ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"$long_help_message\n\nMODE must be one of the following:\n\n       clean           remove files from the build directory\n       compile         compile a source file into a libtool object\n       execute         automatically set library path, then run a program\n       finish          complete the installation of libtool libraries\n       install         install libraries or executables\n       link            create a library or an executable\n       uninstall       remove libraries from an installed directory\n\nMODE-ARGS vary depending on the MODE.  When passed as first option,\n'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that.\nTry '$progname --help --mode=MODE' for a more detailed description of MODE.\n\nWhen reporting a bug, please describe a test case to reproduce it and\ninclude the following information:\n\n       host-triplet:   $host\n       shell:          $SHELL\n       compiler:       $LTCC\n       compiler flags: $LTCFLAGS\n       linker:         $LD (gnu? $with_gnu_ld)\n       version:        $progname (GNU libtool) 2.4.6\n       automake:       `($AUTOMAKE --version) 2>/dev/null |$SED 1q`\n       autoconf:       `($AUTOCONF --version) 2>/dev/null |$SED 1q`\n\nReport bugs to <bug-libtool@gnu.org>.\nGNU libtool home page: <http://www.gnu.org/software/libtool/>.\nGeneral help using GNU software: <http://www.gnu.org/gethelp/>.\"\n    exit 0\n}\n\n\n# func_lo2o OBJECT-NAME\n# ---------------------\n# Transform OBJECT-NAME from a '.lo' suffix to the platform specific\n# object suffix.\n\nlo2o=s/\\\\.lo\\$/.$objext/\no2lo=s/\\\\.$objext\\$/.lo/\n\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_lo2o ()\n  {\n    case $1 in\n      *.lo) func_lo2o_result=${1%.lo}.$objext ;;\n      *   ) func_lo2o_result=$1               ;;\n    esac\n  }'\n\n  # func_xform LIBOBJ-OR-SOURCE\n  # ---------------------------\n  # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise)\n  # suffix to a '.lo' libtool-object suffix.\n  eval 'func_xform ()\n  {\n    func_xform_result=${1%.*}.lo\n  }'\nelse\n  # ...otherwise fall back to using sed.\n  func_lo2o ()\n  {\n    func_lo2o_result=`$ECHO \"$1\" | $SED \"$lo2o\"`\n  }\n\n  func_xform ()\n  {\n    func_xform_result=`$ECHO \"$1\" | $SED 's|\\.[^.]*$|.lo|'`\n  }\nfi\n\n\n# func_fatal_configuration ARG...\n# -------------------------------\n# Echo program name prefixed message to standard error, followed by\n# a configuration failure hint, and exit.\nfunc_fatal_configuration ()\n{\n    func__fatal_error ${1+\"$@\"} \\\n      \"See the $PACKAGE documentation for more information.\" \\\n      \"Fatal configuration error.\"\n}\n\n\n# func_config\n# -----------\n# Display the configuration for all the tags in this script.\nfunc_config ()\n{\n    re_begincf='^# ### BEGIN LIBTOOL'\n    re_endcf='^# ### END LIBTOOL'\n\n    # Default configuration.\n    $SED \"1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\\$d\" < \"$progpath\"\n\n    # Now print the configurations for the tags.\n    for tagname in $taglist; do\n      $SED -n \"/$re_begincf TAG CONFIG: $tagname\\$/,/$re_endcf TAG CONFIG: $tagname\\$/p\" < \"$progpath\"\n    done\n\n    exit $?\n}\n\n\n# func_features\n# -------------\n# Display the features supported by this script.\nfunc_features ()\n{\n    echo \"host: $host\"\n    if test yes = \"$build_libtool_libs\"; then\n      echo \"enable shared libraries\"\n    else\n      echo \"disable shared libraries\"\n    fi\n    if test yes = \"$build_old_libs\"; then\n      echo \"enable static libraries\"\n    else\n      echo \"disable static libraries\"\n    fi\n\n    exit $?\n}\n\n\n# func_enable_tag TAGNAME\n# -----------------------\n# Verify that TAGNAME is valid, and either flag an error and exit, or\n# enable the TAGNAME tag.  We also add TAGNAME to the global $taglist\n# variable here.\nfunc_enable_tag ()\n{\n    # Global variable:\n    tagname=$1\n\n    re_begincf=\"^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\\$\"\n    re_endcf=\"^# ### END LIBTOOL TAG CONFIG: $tagname\\$\"\n    sed_extractcf=/$re_begincf/,/$re_endcf/p\n\n    # Validate tagname.\n    case $tagname in\n      *[!-_A-Za-z0-9,/]*)\n        func_fatal_error \"invalid tag name: $tagname\"\n        ;;\n    esac\n\n    # Don't test for the \"default\" C tag, as we know it's\n    # there but not specially marked.\n    case $tagname in\n        CC) ;;\n    *)\n        if $GREP \"$re_begincf\" \"$progpath\" >/dev/null 2>&1; then\n\t  taglist=\"$taglist $tagname\"\n\n\t  # Evaluate the configuration.  Be careful to quote the path\n\t  # and the sed script, to avoid splitting on whitespace, but\n\t  # also don't use non-portable quotes within backquotes within\n\t  # quotes we have to do it in 2 steps:\n\t  extractedcf=`$SED -n -e \"$sed_extractcf\" < \"$progpath\"`\n\t  eval \"$extractedcf\"\n        else\n\t  func_error \"ignoring unknown tag $tagname\"\n        fi\n        ;;\n    esac\n}\n\n\n# func_check_version_match\n# ------------------------\n# Ensure that we are using m4 macros, and libtool script from the same\n# release of libtool.\nfunc_check_version_match ()\n{\n    if test \"$package_revision\" != \"$macro_revision\"; then\n      if test \"$VERSION\" != \"$macro_version\"; then\n        if test -z \"$macro_version\"; then\n          cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from an older release.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n        else\n          cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from $PACKAGE $macro_version.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n        fi\n      else\n        cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, revision $package_revision,\n$progname: but the definition of this LT_INIT comes from revision $macro_revision.\n$progname: You should recreate aclocal.m4 with macros from revision $package_revision\n$progname: of $PACKAGE $VERSION and run autoconf again.\n_LT_EOF\n      fi\n\n      exit $EXIT_MISMATCH\n    fi\n}\n\n\n# libtool_options_prep [ARG]...\n# -----------------------------\n# Preparation for options parsed by libtool.\nlibtool_options_prep ()\n{\n    $debug_mode\n\n    # Option defaults:\n    opt_config=false\n    opt_dlopen=\n    opt_dry_run=false\n    opt_help=false\n    opt_mode=\n    opt_preserve_dup_deps=false\n    opt_quiet=false\n\n    nonopt=\n    preserve_args=\n\n    # Shorthand for --mode=foo, only valid as the first argument\n    case $1 in\n    clean|clea|cle|cl)\n      shift; set dummy --mode clean ${1+\"$@\"}; shift\n      ;;\n    compile|compil|compi|comp|com|co|c)\n      shift; set dummy --mode compile ${1+\"$@\"}; shift\n      ;;\n    execute|execut|execu|exec|exe|ex|e)\n      shift; set dummy --mode execute ${1+\"$@\"}; shift\n      ;;\n    finish|finis|fini|fin|fi|f)\n      shift; set dummy --mode finish ${1+\"$@\"}; shift\n      ;;\n    install|instal|insta|inst|ins|in|i)\n      shift; set dummy --mode install ${1+\"$@\"}; shift\n      ;;\n    link|lin|li|l)\n      shift; set dummy --mode link ${1+\"$@\"}; shift\n      ;;\n    uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)\n      shift; set dummy --mode uninstall ${1+\"$@\"}; shift\n      ;;\n    esac\n\n    # Pass back the list of options.\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_options_prep_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_options_prep libtool_options_prep\n\n\n# libtool_parse_options [ARG]...\n# ---------------------------------\n# Provide handling for libtool specific options.\nlibtool_parse_options ()\n{\n    $debug_cmd\n\n    # Perform our own loop to consume as many options as possible in\n    # each iteration.\n    while test $# -gt 0; do\n      _G_opt=$1\n      shift\n      case $_G_opt in\n        --dry-run|--dryrun|-n)\n                        opt_dry_run=:\n                        ;;\n\n        --config)       func_config ;;\n\n        --dlopen|-dlopen)\n                        opt_dlopen=\"${opt_dlopen+$opt_dlopen\n}$1\"\n                        shift\n                        ;;\n\n        --preserve-dup-deps)\n                        opt_preserve_dup_deps=: ;;\n\n        --features)     func_features ;;\n\n        --finish)       set dummy --mode finish ${1+\"$@\"}; shift ;;\n\n        --help)         opt_help=: ;;\n\n        --help-all)     opt_help=': help-all' ;;\n\n        --mode)         test $# = 0 && func_missing_arg $_G_opt && break\n                        opt_mode=$1\n                        case $1 in\n                          # Valid mode arguments:\n                          clean|compile|execute|finish|install|link|relink|uninstall) ;;\n\n                          # Catch anything else as an error\n                          *) func_error \"invalid argument for $_G_opt\"\n                             exit_cmd=exit\n                             break\n                             ;;\n                        esac\n                        shift\n                        ;;\n\n        --no-silent|--no-quiet)\n                        opt_quiet=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --no-warnings|--no-warning|--no-warn)\n                        opt_warning=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --no-verbose)\n                        opt_verbose=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --silent|--quiet)\n                        opt_quiet=:\n                        opt_verbose=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --tag)          test $# = 0 && func_missing_arg $_G_opt && break\n                        opt_tag=$1\n                        func_append preserve_args \" $_G_opt $1\"\n                        func_enable_tag \"$1\"\n                        shift\n                        ;;\n\n        --verbose|-v)   opt_quiet=false\n                        opt_verbose=:\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n\t# An option not handled by this hook function:\n        *)\t\tset dummy \"$_G_opt\" ${1+\"$@\"};\tshift; break  ;;\n      esac\n    done\n\n\n    # save modified positional parameters for caller\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_parse_options_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_parse_options libtool_parse_options\n\n\n\n# libtool_validate_options [ARG]...\n# ---------------------------------\n# Perform any sanity checks on option settings and/or unconsumed\n# arguments.\nlibtool_validate_options ()\n{\n    # save first non-option argument\n    if test 0 -lt $#; then\n      nonopt=$1\n      shift\n    fi\n\n    # preserve --debug\n    test : = \"$debug_cmd\" || func_append preserve_args \" --debug\"\n\n    case $host in\n      # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452\n      # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788\n      *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*)\n        # don't eliminate duplications in $postdeps and $predeps\n        opt_duplicate_compiler_generated_deps=:\n        ;;\n      *)\n        opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps\n        ;;\n    esac\n\n    $opt_help || {\n      # Sanity checks first:\n      func_check_version_match\n\n      test yes != \"$build_libtool_libs\" \\\n        && test yes != \"$build_old_libs\" \\\n        && func_fatal_configuration \"not configured to build any kind of library\"\n\n      # Darwin sucks\n      eval std_shrext=\\\"$shrext_cmds\\\"\n\n      # Only execute mode is allowed to have -dlopen flags.\n      if test -n \"$opt_dlopen\" && test execute != \"$opt_mode\"; then\n        func_error \"unrecognized option '-dlopen'\"\n        $ECHO \"$help\" 1>&2\n        exit $EXIT_FAILURE\n      fi\n\n      # Change the help message to a mode-specific one.\n      generic_help=$help\n      help=\"Try '$progname --help --mode=$opt_mode' for more information.\"\n    }\n\n    # Pass back the unparsed argument list\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_validate_options_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_validate_options libtool_validate_options\n\n\n# Process options as early as possible so that --help and --version\n# can return quickly.\nfunc_options ${1+\"$@\"}\neval set dummy \"$func_options_result\"; shift\n\n\n\n## ----------- ##\n##    Main.    ##\n## ----------- ##\n\nmagic='%%%MAGIC variable%%%'\nmagic_exe='%%%MAGIC EXE variable%%%'\n\n# Global variables.\nextracted_archives=\nextracted_serial=0\n\n# If this variable is set in any of the actions, the command in it\n# will be execed at the end.  This prevents here-documents from being\n# left over by shells.\nexec_cmd=\n\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n}\n\n# func_generated_by_libtool\n# True iff stdin has been generated by Libtool. This function is only\n# a basic sanity check; it will hardly flush out determined imposters.\nfunc_generated_by_libtool_p ()\n{\n  $GREP \"^# Generated by .*$PACKAGE\" > /dev/null 2>&1\n}\n\n# func_lalib_p file\n# True iff FILE is a libtool '.la' library or '.lo' object file.\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_lalib_p ()\n{\n    test -f \"$1\" &&\n      $SED -e 4q \"$1\" 2>/dev/null | func_generated_by_libtool_p\n}\n\n# func_lalib_unsafe_p file\n# True iff FILE is a libtool '.la' library or '.lo' object file.\n# This function implements the same check as func_lalib_p without\n# resorting to external programs.  To this end, it redirects stdin and\n# closes it afterwards, without saving the original file descriptor.\n# As a safety measure, use it only where a negative result would be\n# fatal anyway.  Works if 'file' does not exist.\nfunc_lalib_unsafe_p ()\n{\n    lalib_p=no\n    if test -f \"$1\" && test -r \"$1\" && exec 5<&0 <\"$1\"; then\n\tfor lalib_p_l in 1 2 3 4\n\tdo\n\t    read lalib_p_line\n\t    case $lalib_p_line in\n\t\t\\#\\ Generated\\ by\\ *$PACKAGE* ) lalib_p=yes; break;;\n\t    esac\n\tdone\n\texec 0<&5 5<&-\n    fi\n    test yes = \"$lalib_p\"\n}\n\n# func_ltwrapper_script_p file\n# True iff FILE is a libtool wrapper script\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_script_p ()\n{\n    test -f \"$1\" &&\n      $lt_truncate_bin < \"$1\" 2>/dev/null | func_generated_by_libtool_p\n}\n\n# func_ltwrapper_executable_p file\n# True iff FILE is a libtool wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_executable_p ()\n{\n    func_ltwrapper_exec_suffix=\n    case $1 in\n    *.exe) ;;\n    *) func_ltwrapper_exec_suffix=.exe ;;\n    esac\n    $GREP \"$magic_exe\" \"$1$func_ltwrapper_exec_suffix\" >/dev/null 2>&1\n}\n\n# func_ltwrapper_scriptname file\n# Assumes file is an ltwrapper_executable\n# uses $file to determine the appropriate filename for a\n# temporary ltwrapper_script.\nfunc_ltwrapper_scriptname ()\n{\n    func_dirname_and_basename \"$1\" \"\" \".\"\n    func_stripname '' '.exe' \"$func_basename_result\"\n    func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper\n}\n\n# func_ltwrapper_p file\n# True iff FILE is a libtool wrapper script or wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_p ()\n{\n    func_ltwrapper_script_p \"$1\" || func_ltwrapper_executable_p \"$1\"\n}\n\n\n# func_execute_cmds commands fail_cmd\n# Execute tilde-delimited COMMANDS.\n# If FAIL_CMD is given, eval that upon failure.\n# FAIL_CMD may read-access the current command in variable CMD!\nfunc_execute_cmds ()\n{\n    $debug_cmd\n\n    save_ifs=$IFS; IFS='~'\n    for cmd in $1; do\n      IFS=$sp$nl\n      eval cmd=\\\"$cmd\\\"\n      IFS=$save_ifs\n      func_show_eval \"$cmd\" \"${2-:}\"\n    done\n    IFS=$save_ifs\n}\n\n\n# func_source file\n# Source FILE, adding directory component if necessary.\n# Note that it is not necessary on cygwin/mingw to append a dot to\n# FILE even if both FILE and FILE.exe exist: automatic-append-.exe\n# behavior happens only for exec(3), not for open(2)!  Also, sourcing\n# 'FILE.' does not work on cygwin managed mounts.\nfunc_source ()\n{\n    $debug_cmd\n\n    case $1 in\n    */* | *\\\\*)\t. \"$1\" ;;\n    *)\t\t. \"./$1\" ;;\n    esac\n}\n\n\n# func_resolve_sysroot PATH\n# Replace a leading = in PATH with a sysroot.  Store the result into\n# func_resolve_sysroot_result\nfunc_resolve_sysroot ()\n{\n  func_resolve_sysroot_result=$1\n  case $func_resolve_sysroot_result in\n  =*)\n    func_stripname '=' '' \"$func_resolve_sysroot_result\"\n    func_resolve_sysroot_result=$lt_sysroot$func_stripname_result\n    ;;\n  esac\n}\n\n# func_replace_sysroot PATH\n# If PATH begins with the sysroot, replace it with = and\n# store the result into func_replace_sysroot_result.\nfunc_replace_sysroot ()\n{\n  case $lt_sysroot:$1 in\n  ?*:\"$lt_sysroot\"*)\n    func_stripname \"$lt_sysroot\" '' \"$1\"\n    func_replace_sysroot_result='='$func_stripname_result\n    ;;\n  *)\n    # Including no sysroot.\n    func_replace_sysroot_result=$1\n    ;;\n  esac\n}\n\n# func_infer_tag arg\n# Infer tagged configuration to use if any are available and\n# if one wasn't chosen via the \"--tag\" command line option.\n# Only attempt this if the compiler in the base compile\n# command doesn't match the default compiler.\n# arg is usually of the form 'gcc ...'\nfunc_infer_tag ()\n{\n    $debug_cmd\n\n    if test -n \"$available_tags\" && test -z \"$tagname\"; then\n      CC_quoted=\n      for arg in $CC; do\n\tfunc_append_quoted CC_quoted \"$arg\"\n      done\n      CC_expanded=`func_echo_all $CC`\n      CC_quoted_expanded=`func_echo_all $CC_quoted`\n      case $@ in\n      # Blanks in the command may have been stripped by the calling shell,\n      # but not from the CC environment variable when configure was run.\n      \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n      \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*) ;;\n      # Blanks at the start of $base_compile will cause this to fail\n      # if we don't check for them as well.\n      *)\n\tfor z in $available_tags; do\n\t  if $GREP \"^# ### BEGIN LIBTOOL TAG CONFIG: $z$\" < \"$progpath\" > /dev/null; then\n\t    # Evaluate the configuration.\n\t    eval \"`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`\"\n\t    CC_quoted=\n\t    for arg in $CC; do\n\t      # Double-quote args containing other shell metacharacters.\n\t      func_append_quoted CC_quoted \"$arg\"\n\t    done\n\t    CC_expanded=`func_echo_all $CC`\n\t    CC_quoted_expanded=`func_echo_all $CC_quoted`\n\t    case \"$@ \" in\n\t    \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n\t    \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*)\n\t      # The compiler in the base compile command matches\n\t      # the one in the tagged configuration.\n\t      # Assume this is the tagged configuration we want.\n\t      tagname=$z\n\t      break\n\t      ;;\n\t    esac\n\t  fi\n\tdone\n\t# If $tagname still isn't set, then no tagged configuration\n\t# was found and let the user know that the \"--tag\" command\n\t# line option must be used.\n\tif test -z \"$tagname\"; then\n\t  func_echo \"unable to infer tagged configuration\"\n\t  func_fatal_error \"specify a tag with '--tag'\"\n#\telse\n#\t  func_verbose \"using $tagname tagged configuration\"\n\tfi\n\t;;\n      esac\n    fi\n}\n\n\n\n# func_write_libtool_object output_name pic_name nonpic_name\n# Create a libtool object file (analogous to a \".la\" file),\n# but don't create it if we're doing a dry run.\nfunc_write_libtool_object ()\n{\n    write_libobj=$1\n    if test yes = \"$build_libtool_libs\"; then\n      write_lobj=\\'$2\\'\n    else\n      write_lobj=none\n    fi\n\n    if test yes = \"$build_old_libs\"; then\n      write_oldobj=\\'$3\\'\n    else\n      write_oldobj=none\n    fi\n\n    $opt_dry_run || {\n      cat >${write_libobj}T <<EOF\n# $write_libobj - a libtool object file\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# Name of the PIC object.\npic_object=$write_lobj\n\n# Name of the non-PIC object\nnon_pic_object=$write_oldobj\n\nEOF\n      $MV \"${write_libobj}T\" \"$write_libobj\"\n    }\n}\n\n\n##################################################\n# FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #\n##################################################\n\n# func_convert_core_file_wine_to_w32 ARG\n# Helper function used by file name conversion functions when $build is *nix,\n# and $host is mingw, cygwin, or some other w32 environment. Relies on a\n# correctly configured wine environment available, with the winepath program\n# in $build's $PATH.\n#\n# ARG is the $build file name to be converted to w32 format.\n# Result is available in $func_convert_core_file_wine_to_w32_result, and will\n# be empty on error (or when ARG is empty)\nfunc_convert_core_file_wine_to_w32 ()\n{\n  $debug_cmd\n\n  func_convert_core_file_wine_to_w32_result=$1\n  if test -n \"$1\"; then\n    # Unfortunately, winepath does not exit with a non-zero error code, so we\n    # are forced to check the contents of stdout. On the other hand, if the\n    # command is not found, the shell will set an exit code of 127 and print\n    # *an error message* to stdout. So we must check for both error code of\n    # zero AND non-empty stdout, which explains the odd construction:\n    func_convert_core_file_wine_to_w32_tmp=`winepath -w \"$1\" 2>/dev/null`\n    if test \"$?\" -eq 0 && test -n \"$func_convert_core_file_wine_to_w32_tmp\"; then\n      func_convert_core_file_wine_to_w32_result=`$ECHO \"$func_convert_core_file_wine_to_w32_tmp\" |\n        $SED -e \"$sed_naive_backslashify\"`\n    else\n      func_convert_core_file_wine_to_w32_result=\n    fi\n  fi\n}\n# end: func_convert_core_file_wine_to_w32\n\n\n# func_convert_core_path_wine_to_w32 ARG\n# Helper function used by path conversion functions when $build is *nix, and\n# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly\n# configured wine environment available, with the winepath program in $build's\n# $PATH. Assumes ARG has no leading or trailing path separator characters.\n#\n# ARG is path to be converted from $build format to win32.\n# Result is available in $func_convert_core_path_wine_to_w32_result.\n# Unconvertible file (directory) names in ARG are skipped; if no directory names\n# are convertible, then the result may be empty.\nfunc_convert_core_path_wine_to_w32 ()\n{\n  $debug_cmd\n\n  # unfortunately, winepath doesn't convert paths, only file names\n  func_convert_core_path_wine_to_w32_result=\n  if test -n \"$1\"; then\n    oldIFS=$IFS\n    IFS=:\n    for func_convert_core_path_wine_to_w32_f in $1; do\n      IFS=$oldIFS\n      func_convert_core_file_wine_to_w32 \"$func_convert_core_path_wine_to_w32_f\"\n      if test -n \"$func_convert_core_file_wine_to_w32_result\"; then\n        if test -z \"$func_convert_core_path_wine_to_w32_result\"; then\n          func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result\n        else\n          func_append func_convert_core_path_wine_to_w32_result \";$func_convert_core_file_wine_to_w32_result\"\n        fi\n      fi\n    done\n    IFS=$oldIFS\n  fi\n}\n# end: func_convert_core_path_wine_to_w32\n\n\n# func_cygpath ARGS...\n# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when\n# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)\n# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or\n# (2), returns the Cygwin file name or path in func_cygpath_result (input\n# file name or path is assumed to be in w32 format, as previously converted\n# from $build's *nix or MSYS format). In case (3), returns the w32 file name\n# or path in func_cygpath_result (input file name or path is assumed to be in\n# Cygwin format). Returns an empty string on error.\n#\n# ARGS are passed to cygpath, with the last one being the file name or path to\n# be converted.\n#\n# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH\n# environment variable; do not put it in $PATH.\nfunc_cygpath ()\n{\n  $debug_cmd\n\n  if test -n \"$LT_CYGPATH\" && test -f \"$LT_CYGPATH\"; then\n    func_cygpath_result=`$LT_CYGPATH \"$@\" 2>/dev/null`\n    if test \"$?\" -ne 0; then\n      # on failure, ensure result is empty\n      func_cygpath_result=\n    fi\n  else\n    func_cygpath_result=\n    func_error \"LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'\"\n  fi\n}\n#end: func_cygpath\n\n\n# func_convert_core_msys_to_w32 ARG\n# Convert file name or path ARG from MSYS format to w32 format.  Return\n# result in func_convert_core_msys_to_w32_result.\nfunc_convert_core_msys_to_w32 ()\n{\n  $debug_cmd\n\n  # awkward: cmd appends spaces to result\n  func_convert_core_msys_to_w32_result=`( cmd //c echo \"$1\" ) 2>/dev/null |\n    $SED -e 's/[ ]*$//' -e \"$sed_naive_backslashify\"`\n}\n#end: func_convert_core_msys_to_w32\n\n\n# func_convert_file_check ARG1 ARG2\n# Verify that ARG1 (a file name in $build format) was converted to $host\n# format in ARG2. Otherwise, emit an error message, but continue (resetting\n# func_to_host_file_result to ARG1).\nfunc_convert_file_check ()\n{\n  $debug_cmd\n\n  if test -z \"$2\" && test -n \"$1\"; then\n    func_error \"Could not determine host file name corresponding to\"\n    func_error \"  '$1'\"\n    func_error \"Continuing, but uninstalled executables may not work.\"\n    # Fallback:\n    func_to_host_file_result=$1\n  fi\n}\n# end func_convert_file_check\n\n\n# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH\n# Verify that FROM_PATH (a path in $build format) was converted to $host\n# format in TO_PATH. Otherwise, emit an error message, but continue, resetting\n# func_to_host_file_result to a simplistic fallback value (see below).\nfunc_convert_path_check ()\n{\n  $debug_cmd\n\n  if test -z \"$4\" && test -n \"$3\"; then\n    func_error \"Could not determine the host path corresponding to\"\n    func_error \"  '$3'\"\n    func_error \"Continuing, but uninstalled executables may not work.\"\n    # Fallback.  This is a deliberately simplistic \"conversion\" and\n    # should not be \"improved\".  See libtool.info.\n    if test \"x$1\" != \"x$2\"; then\n      lt_replace_pathsep_chars=\"s|$1|$2|g\"\n      func_to_host_path_result=`echo \"$3\" |\n        $SED -e \"$lt_replace_pathsep_chars\"`\n    else\n      func_to_host_path_result=$3\n    fi\n  fi\n}\n# end func_convert_path_check\n\n\n# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG\n# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT\n# and appending REPL if ORIG matches BACKPAT.\nfunc_convert_path_front_back_pathsep ()\n{\n  $debug_cmd\n\n  case $4 in\n  $1 ) func_to_host_path_result=$3$func_to_host_path_result\n    ;;\n  esac\n  case $4 in\n  $2 ) func_append func_to_host_path_result \"$3\"\n    ;;\n  esac\n}\n# end func_convert_path_front_back_pathsep\n\n\n##################################################\n# $build to $host FILE NAME CONVERSION FUNCTIONS #\n##################################################\n# invoked via '$to_host_file_cmd ARG'\n#\n# In each case, ARG is the path to be converted from $build to $host format.\n# Result will be available in $func_to_host_file_result.\n\n\n# func_to_host_file ARG\n# Converts the file name ARG from $build format to $host format. Return result\n# in func_to_host_file_result.\nfunc_to_host_file ()\n{\n  $debug_cmd\n\n  $to_host_file_cmd \"$1\"\n}\n# end func_to_host_file\n\n\n# func_to_tool_file ARG LAZY\n# converts the file name ARG from $build format to toolchain format. Return\n# result in func_to_tool_file_result.  If the conversion in use is listed\n# in (the comma separated) LAZY, no conversion takes place.\nfunc_to_tool_file ()\n{\n  $debug_cmd\n\n  case ,$2, in\n    *,\"$to_tool_file_cmd\",*)\n      func_to_tool_file_result=$1\n      ;;\n    *)\n      $to_tool_file_cmd \"$1\"\n      func_to_tool_file_result=$func_to_host_file_result\n      ;;\n  esac\n}\n# end func_to_tool_file\n\n\n# func_convert_file_noop ARG\n# Copy ARG to func_to_host_file_result.\nfunc_convert_file_noop ()\n{\n  func_to_host_file_result=$1\n}\n# end func_convert_file_noop\n\n\n# func_convert_file_msys_to_w32 ARG\n# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic\n# conversion to w32 is not available inside the cwrapper.  Returns result in\n# func_to_host_file_result.\nfunc_convert_file_msys_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_msys_to_w32 \"$1\"\n    func_to_host_file_result=$func_convert_core_msys_to_w32_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_msys_to_w32\n\n\n# func_convert_file_cygwin_to_w32 ARG\n# Convert file name ARG from Cygwin to w32 format.  Returns result in\n# func_to_host_file_result.\nfunc_convert_file_cygwin_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    # because $build is cygwin, we call \"the\" cygpath in $PATH; no need to use\n    # LT_CYGPATH in this case.\n    func_to_host_file_result=`cygpath -m \"$1\"`\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_cygwin_to_w32\n\n\n# func_convert_file_nix_to_w32 ARG\n# Convert file name ARG from *nix to w32 format.  Requires a wine environment\n# and a working winepath. Returns result in func_to_host_file_result.\nfunc_convert_file_nix_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_file_wine_to_w32 \"$1\"\n    func_to_host_file_result=$func_convert_core_file_wine_to_w32_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_nix_to_w32\n\n\n# func_convert_file_msys_to_cygwin ARG\n# Convert file name ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.\n# Returns result in func_to_host_file_result.\nfunc_convert_file_msys_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_msys_to_w32 \"$1\"\n    func_cygpath -u \"$func_convert_core_msys_to_w32_result\"\n    func_to_host_file_result=$func_cygpath_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_msys_to_cygwin\n\n\n# func_convert_file_nix_to_cygwin ARG\n# Convert file name ARG from *nix to Cygwin format.  Requires Cygwin installed\n# in a wine environment, working winepath, and LT_CYGPATH set.  Returns result\n# in func_to_host_file_result.\nfunc_convert_file_nix_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.\n    func_convert_core_file_wine_to_w32 \"$1\"\n    func_cygpath -u \"$func_convert_core_file_wine_to_w32_result\"\n    func_to_host_file_result=$func_cygpath_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_nix_to_cygwin\n\n\n#############################################\n# $build to $host PATH CONVERSION FUNCTIONS #\n#############################################\n# invoked via '$to_host_path_cmd ARG'\n#\n# In each case, ARG is the path to be converted from $build to $host format.\n# The result will be available in $func_to_host_path_result.\n#\n# Path separators are also converted from $build format to $host format.  If\n# ARG begins or ends with a path separator character, it is preserved (but\n# converted to $host format) on output.\n#\n# All path conversion functions are named using the following convention:\n#   file name conversion function    : func_convert_file_X_to_Y ()\n#   path conversion function         : func_convert_path_X_to_Y ()\n# where, for any given $build/$host combination the 'X_to_Y' value is the\n# same.  If conversion functions are added for new $build/$host combinations,\n# the two new functions must follow this pattern, or func_init_to_host_path_cmd\n# will break.\n\n\n# func_init_to_host_path_cmd\n# Ensures that function \"pointer\" variable $to_host_path_cmd is set to the\n# appropriate value, based on the value of $to_host_file_cmd.\nto_host_path_cmd=\nfunc_init_to_host_path_cmd ()\n{\n  $debug_cmd\n\n  if test -z \"$to_host_path_cmd\"; then\n    func_stripname 'func_convert_file_' '' \"$to_host_file_cmd\"\n    to_host_path_cmd=func_convert_path_$func_stripname_result\n  fi\n}\n\n\n# func_to_host_path ARG\n# Converts the path ARG from $build format to $host format. Return result\n# in func_to_host_path_result.\nfunc_to_host_path ()\n{\n  $debug_cmd\n\n  func_init_to_host_path_cmd\n  $to_host_path_cmd \"$1\"\n}\n# end func_to_host_path\n\n\n# func_convert_path_noop ARG\n# Copy ARG to func_to_host_path_result.\nfunc_convert_path_noop ()\n{\n  func_to_host_path_result=$1\n}\n# end func_convert_path_noop\n\n\n# func_convert_path_msys_to_w32 ARG\n# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic\n# conversion to w32 is not available inside the cwrapper.  Returns result in\n# func_to_host_path_result.\nfunc_convert_path_msys_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # Remove leading and trailing path separator characters from ARG.  MSYS\n    # behavior is inconsistent here; cygpath turns them into '.;' and ';.';\n    # and winepath ignores them completely.\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_msys_to_w32 \"$func_to_host_path_tmp1\"\n    func_to_host_path_result=$func_convert_core_msys_to_w32_result\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_msys_to_w32\n\n\n# func_convert_path_cygwin_to_w32 ARG\n# Convert path ARG from Cygwin to w32 format.  Returns result in\n# func_to_host_file_result.\nfunc_convert_path_cygwin_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_to_host_path_result=`cygpath -m -p \"$func_to_host_path_tmp1\"`\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_cygwin_to_w32\n\n\n# func_convert_path_nix_to_w32 ARG\n# Convert path ARG from *nix to w32 format.  Requires a wine environment and\n# a working winepath.  Returns result in func_to_host_file_result.\nfunc_convert_path_nix_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_path_wine_to_w32 \"$func_to_host_path_tmp1\"\n    func_to_host_path_result=$func_convert_core_path_wine_to_w32_result\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_nix_to_w32\n\n\n# func_convert_path_msys_to_cygwin ARG\n# Convert path ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.\n# Returns result in func_to_host_file_result.\nfunc_convert_path_msys_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_msys_to_w32 \"$func_to_host_path_tmp1\"\n    func_cygpath -u -p \"$func_convert_core_msys_to_w32_result\"\n    func_to_host_path_result=$func_cygpath_result\n    func_convert_path_check : : \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" : \"$1\"\n  fi\n}\n# end func_convert_path_msys_to_cygwin\n\n\n# func_convert_path_nix_to_cygwin ARG\n# Convert path ARG from *nix to Cygwin format.  Requires Cygwin installed in a\n# a wine environment, working winepath, and LT_CYGPATH set.  Returns result in\n# func_to_host_file_result.\nfunc_convert_path_nix_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # Remove leading and trailing path separator characters from\n    # ARG. msys behavior is inconsistent here, cygpath turns them\n    # into '.;' and ';.', and winepath ignores them completely.\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_path_wine_to_w32 \"$func_to_host_path_tmp1\"\n    func_cygpath -u -p \"$func_convert_core_path_wine_to_w32_result\"\n    func_to_host_path_result=$func_cygpath_result\n    func_convert_path_check : : \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" : \"$1\"\n  fi\n}\n# end func_convert_path_nix_to_cygwin\n\n\n# func_dll_def_p FILE\n# True iff FILE is a Windows DLL '.def' file.\n# Keep in sync with _LT_DLL_DEF_P in libtool.m4\nfunc_dll_def_p ()\n{\n  $debug_cmd\n\n  func_dll_def_p_tmp=`$SED -n \\\n    -e 's/^[\t ]*//' \\\n    -e '/^\\(;.*\\)*$/d' \\\n    -e 's/^\\(EXPORTS\\|LIBRARY\\)\\([\t ].*\\)*$/DEF/p' \\\n    -e q \\\n    \"$1\"`\n  test DEF = \"$func_dll_def_p_tmp\"\n}\n\n\n# func_mode_compile arg...\nfunc_mode_compile ()\n{\n    $debug_cmd\n\n    # Get the compilation command and the source file.\n    base_compile=\n    srcfile=$nonopt  #  always keep a non-empty value in \"srcfile\"\n    suppress_opt=yes\n    suppress_output=\n    arg_mode=normal\n    libobj=\n    later=\n    pie_flag=\n\n    for arg\n    do\n      case $arg_mode in\n      arg  )\n\t# do not \"continue\".  Instead, add this to base_compile\n\tlastarg=$arg\n\targ_mode=normal\n\t;;\n\n      target )\n\tlibobj=$arg\n\targ_mode=normal\n\tcontinue\n\t;;\n\n      normal )\n\t# Accept any command-line options.\n\tcase $arg in\n\t-o)\n\t  test -n \"$libobj\" && \\\n\t    func_fatal_error \"you cannot specify '-o' more than once\"\n\t  arg_mode=target\n\t  continue\n\t  ;;\n\n\t-pie | -fpie | -fPIE)\n          func_append pie_flag \" $arg\"\n\t  continue\n\t  ;;\n\n\t-shared | -static | -prefer-pic | -prefer-non-pic)\n\t  func_append later \" $arg\"\n\t  continue\n\t  ;;\n\n\t-no-suppress)\n\t  suppress_opt=no\n\t  continue\n\t  ;;\n\n\t-Xcompiler)\n\t  arg_mode=arg  #  the next one goes into the \"base_compile\" arg list\n\t  continue      #  The current \"srcfile\" will either be retained or\n\t  ;;            #  replaced later.  I would guess that would be a bug.\n\n\t-Wc,*)\n\t  func_stripname '-Wc,' '' \"$arg\"\n\t  args=$func_stripname_result\n\t  lastarg=\n\t  save_ifs=$IFS; IFS=,\n\t  for arg in $args; do\n\t    IFS=$save_ifs\n\t    func_append_quoted lastarg \"$arg\"\n\t  done\n\t  IFS=$save_ifs\n\t  func_stripname ' ' '' \"$lastarg\"\n\t  lastarg=$func_stripname_result\n\n\t  # Add the arguments to base_compile.\n\t  func_append base_compile \" $lastarg\"\n\t  continue\n\t  ;;\n\n\t*)\n\t  # Accept the current argument as the source file.\n\t  # The previous \"srcfile\" becomes the current argument.\n\t  #\n\t  lastarg=$srcfile\n\t  srcfile=$arg\n\t  ;;\n\tesac  #  case $arg\n\t;;\n      esac    #  case $arg_mode\n\n      # Aesthetically quote the previous argument.\n      func_append_quoted base_compile \"$lastarg\"\n    done # for arg\n\n    case $arg_mode in\n    arg)\n      func_fatal_error \"you must specify an argument for -Xcompile\"\n      ;;\n    target)\n      func_fatal_error \"you must specify a target with '-o'\"\n      ;;\n    *)\n      # Get the name of the library object.\n      test -z \"$libobj\" && {\n\tfunc_basename \"$srcfile\"\n\tlibobj=$func_basename_result\n      }\n      ;;\n    esac\n\n    # Recognize several different file suffixes.\n    # If the user specifies -o file.o, it is replaced with file.lo\n    case $libobj in\n    *.[cCFSifmso] | \\\n    *.ada | *.adb | *.ads | *.asm | \\\n    *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \\\n    *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)\n      func_xform \"$libobj\"\n      libobj=$func_xform_result\n      ;;\n    esac\n\n    case $libobj in\n    *.lo) func_lo2o \"$libobj\"; obj=$func_lo2o_result ;;\n    *)\n      func_fatal_error \"cannot determine name of library object from '$libobj'\"\n      ;;\n    esac\n\n    func_infer_tag $base_compile\n\n    for arg in $later; do\n      case $arg in\n      -shared)\n\ttest yes = \"$build_libtool_libs\" \\\n\t  || func_fatal_configuration \"cannot build a shared library\"\n\tbuild_old_libs=no\n\tcontinue\n\t;;\n\n      -static)\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tcontinue\n\t;;\n\n      -prefer-pic)\n\tpic_mode=yes\n\tcontinue\n\t;;\n\n      -prefer-non-pic)\n\tpic_mode=no\n\tcontinue\n\t;;\n      esac\n    done\n\n    func_quote_for_eval \"$libobj\"\n    test \"X$libobj\" != \"X$func_quote_for_eval_result\" \\\n      && $ECHO \"X$libobj\" | $GREP '[]~#^*{};<>?\"'\"'\"'\t &()|`$[]' \\\n      && func_warning \"libobj name '$libobj' may not contain shell special characters.\"\n    func_dirname_and_basename \"$obj\" \"/\" \"\"\n    objname=$func_basename_result\n    xdir=$func_dirname_result\n    lobj=$xdir$objdir/$objname\n\n    test -z \"$base_compile\" && \\\n      func_fatal_help \"you must specify a compilation command\"\n\n    # Delete any leftover library objects.\n    if test yes = \"$build_old_libs\"; then\n      removelist=\"$obj $lobj $libobj ${libobj}T\"\n    else\n      removelist=\"$lobj $libobj ${libobj}T\"\n    fi\n\n    # On Cygwin there's no \"real\" PIC flag so we must build both object types\n    case $host_os in\n    cygwin* | mingw* | pw32* | os2* | cegcc*)\n      pic_mode=default\n      ;;\n    esac\n    if test no = \"$pic_mode\" && test pass_all != \"$deplibs_check_method\"; then\n      # non-PIC code in shared libraries is not supported\n      pic_mode=default\n    fi\n\n    # Calculate the filename of the output object if compiler does\n    # not support -o with -c\n    if test no = \"$compiler_c_o\"; then\n      output_obj=`$ECHO \"$srcfile\" | $SED 's%^.*/%%; s%\\.[^.]*$%%'`.$objext\n      lockfile=$output_obj.lock\n    else\n      output_obj=\n      need_locks=no\n      lockfile=\n    fi\n\n    # Lock this critical section if it is needed\n    # We use this script file to make the link, it avoids creating a new file\n    if test yes = \"$need_locks\"; then\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    elif test warn = \"$need_locks\"; then\n      if test -f \"$lockfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile exists and contains:\n`cat $lockfile 2>/dev/null`\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n      func_append removelist \" $output_obj\"\n      $ECHO \"$srcfile\" > \"$lockfile\"\n    fi\n\n    $opt_dry_run || $RM $removelist\n    func_append removelist \" $lockfile\"\n    trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15\n\n    func_to_tool_file \"$srcfile\" func_convert_file_msys_to_w32\n    srcfile=$func_to_tool_file_result\n    func_quote_for_eval \"$srcfile\"\n    qsrcfile=$func_quote_for_eval_result\n\n    # Only build a PIC object if we are building libtool libraries.\n    if test yes = \"$build_libtool_libs\"; then\n      # Without this assignment, base_compile gets emptied.\n      fbsd_hideous_sh_bug=$base_compile\n\n      if test no != \"$pic_mode\"; then\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      else\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile\"\n      fi\n\n      func_mkdir_p \"$xdir$objdir\"\n\n      if test -z \"$output_obj\"; then\n\t# Place PIC objects in $objdir\n\tfunc_append command \" -o $lobj\"\n      fi\n\n      func_show_eval_locale \"$command\"\t\\\n          'test -n \"$output_obj\" && $RM $removelist; exit $EXIT_FAILURE'\n\n      if test warn = \"$need_locks\" &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed, then go on to compile the next one\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$lobj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$lobj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n\n      # Allow error messages only from the first compilation.\n      if test yes = \"$suppress_opt\"; then\n\tsuppress_output=' >/dev/null 2>&1'\n      fi\n    fi\n\n    # Only build a position-dependent object if we build old libraries.\n    if test yes = \"$build_old_libs\"; then\n      if test yes != \"$pic_mode\"; then\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile$pie_flag\"\n      else\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      fi\n      if test yes = \"$compiler_c_o\"; then\n\tfunc_append command \" -o $obj\"\n      fi\n\n      # Suppress compiler output if we already did a PIC compilation.\n      func_append command \"$suppress_output\"\n      func_show_eval_locale \"$command\" \\\n        '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'\n\n      if test warn = \"$need_locks\" &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$obj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$obj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n    fi\n\n    $opt_dry_run || {\n      func_write_libtool_object \"$libobj\" \"$objdir/$objname\" \"$objname\"\n\n      # Unlock the critical section if it was locked\n      if test no != \"$need_locks\"; then\n\tremovelist=$lockfile\n        $RM \"$lockfile\"\n      fi\n    }\n\n    exit $EXIT_SUCCESS\n}\n\n$opt_help || {\n  test compile = \"$opt_mode\" && func_mode_compile ${1+\"$@\"}\n}\n\nfunc_mode_help ()\n{\n    # We need to display help for each of the modes.\n    case $opt_mode in\n      \"\")\n        # Generic help is extracted from the usage comments\n        # at the start of this file.\n        func_help\n        ;;\n\n      clean)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...\n\nRemove files from the build directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed\nto RM.\n\nIf FILE is a libtool library, object or program, all the files associated\nwith it are deleted. Otherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      compile)\n      $ECHO \\\n\"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE\n\nCompile a source file into a libtool library object.\n\nThis mode accepts the following additional options:\n\n  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE\n  -no-suppress      do not suppress compiler output for multiple passes\n  -prefer-pic       try to build PIC objects only\n  -prefer-non-pic   try to build non-PIC objects only\n  -shared           do not build a '.o' file suitable for static linking\n  -static           only build a '.o' file suitable for static linking\n  -Wc,FLAG          pass FLAG directly to the compiler\n\nCOMPILE-COMMAND is a command to be used in creating a 'standard' object file\nfrom the given SOURCEFILE.\n\nThe output file name is determined by removing the directory component from\nSOURCEFILE, then substituting the C source code suffix '.c' with the\nlibrary object suffix, '.lo'.\"\n        ;;\n\n      execute)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...\n\nAutomatically set library path, then run a program.\n\nThis mode accepts the following additional options:\n\n  -dlopen FILE      add the directory containing FILE to the library path\n\nThis mode sets the library path environment variable according to '-dlopen'\nflags.\n\nIf any of the ARGS are libtool executable wrappers, then they are translated\ninto their corresponding uninstalled binary, and any of their required library\ndirectories are added to the library path.\n\nThen, COMMAND is executed, with ARGS as arguments.\"\n        ;;\n\n      finish)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=finish [LIBDIR]...\n\nComplete the installation of libtool libraries.\n\nEach LIBDIR is a directory that contains libtool libraries.\n\nThe commands that this mode executes may require superuser privileges.  Use\nthe '--dry-run' option if you just want to see what would be executed.\"\n        ;;\n\n      install)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...\n\nInstall executables or libraries.\n\nINSTALL-COMMAND is the installation command.  The first component should be\neither the 'install' or 'cp' program.\n\nThe following components of INSTALL-COMMAND are treated specially:\n\n  -inst-prefix-dir PREFIX-DIR  Use PREFIX-DIR as a staging area for installation\n\nThe rest of the components are interpreted as arguments to that command (only\nBSD-compatible install options are recognized).\"\n        ;;\n\n      link)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=link LINK-COMMAND...\n\nLink object files or libraries together to form another library, or to\ncreate an executable program.\n\nLINK-COMMAND is a command using the C compiler that you would use to create\na program from several object files.\n\nThe following components of LINK-COMMAND are treated specially:\n\n  -all-static       do not do any dynamic linking at all\n  -avoid-version    do not add a version suffix if possible\n  -bindir BINDIR    specify path to binaries directory (for systems where\n                    libraries must be found in the PATH setting at runtime)\n  -dlopen FILE      '-dlpreopen' FILE if it cannot be dlopened at runtime\n  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols\n  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)\n  -export-symbols SYMFILE\n                    try to export only the symbols listed in SYMFILE\n  -export-symbols-regex REGEX\n                    try to export only the symbols matching REGEX\n  -LLIBDIR          search LIBDIR for required installed libraries\n  -lNAME            OUTPUT-FILE requires the installed library libNAME\n  -module           build a library that can dlopened\n  -no-fast-install  disable the fast-install mode\n  -no-install       link a not-installable executable\n  -no-undefined     declare that a library does not refer to external symbols\n  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects\n  -objectlist FILE  use a list of object files found in FILE to specify objects\n  -os2dllname NAME  force a short DLL name on OS/2 (no effect on other OSes)\n  -precious-files-regex REGEX\n                    don't remove output files matching REGEX\n  -release RELEASE  specify package release information\n  -rpath LIBDIR     the created library will eventually be installed in LIBDIR\n  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries\n  -shared           only do dynamic linking of libtool libraries\n  -shrext SUFFIX    override the standard shared library file extension\n  -static           do not do any dynamic linking of uninstalled libtool libraries\n  -static-libtool-libs\n                    do not do any dynamic linking of libtool libraries\n  -version-info CURRENT[:REVISION[:AGE]]\n                    specify library version info [each variable defaults to 0]\n  -weak LIBNAME     declare that the target provides the LIBNAME interface\n  -Wc,FLAG\n  -Xcompiler FLAG   pass linker-specific FLAG directly to the compiler\n  -Wl,FLAG\n  -Xlinker FLAG     pass linker-specific FLAG directly to the linker\n  -XCClinker FLAG   pass link-specific FLAG to the compiler driver (CC)\n\nAll other options (arguments beginning with '-') are ignored.\n\nEvery other argument is treated as a filename.  Files ending in '.la' are\ntreated as uninstalled libtool libraries, other files are standard or library\nobject files.\n\nIf the OUTPUT-FILE ends in '.la', then a libtool library is created,\nonly library objects ('.lo' files) may be specified, and '-rpath' is\nrequired, except when creating a convenience library.\n\nIf OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created\nusing 'ar' and 'ranlib', or on Windows using 'lib'.\n\nIf OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file\nis created, otherwise an executable program is created.\"\n        ;;\n\n      uninstall)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...\n\nRemove libraries from an installation directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed\nto RM.\n\nIf FILE is a libtool library, all the files associated with it are deleted.\nOtherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      *)\n        func_fatal_help \"invalid operation mode '$opt_mode'\"\n        ;;\n    esac\n\n    echo\n    $ECHO \"Try '$progname --help' for more information about other modes.\"\n}\n\n# Now that we've collected a possible --mode arg, show help if necessary\nif $opt_help; then\n  if test : = \"$opt_help\"; then\n    func_mode_help\n  else\n    {\n      func_help noexit\n      for opt_mode in compile link execute install finish uninstall clean; do\n\tfunc_mode_help\n      done\n    } | $SED -n '1p; 2,$s/^Usage:/  or: /p'\n    {\n      func_help noexit\n      for opt_mode in compile link execute install finish uninstall clean; do\n\techo\n\tfunc_mode_help\n      done\n    } |\n    $SED '1d\n      /^When reporting/,/^Report/{\n\tH\n\td\n      }\n      $x\n      /information about other modes/d\n      /more detailed .*MODE/d\n      s/^Usage:.*--mode=\\([^ ]*\\) .*/Description of \\1 mode:/'\n  fi\n  exit $?\nfi\n\n\n# func_mode_execute arg...\nfunc_mode_execute ()\n{\n    $debug_cmd\n\n    # The first argument is the command name.\n    cmd=$nonopt\n    test -z \"$cmd\" && \\\n      func_fatal_help \"you must specify a COMMAND\"\n\n    # Handle -dlopen flags immediately.\n    for file in $opt_dlopen; do\n      test -f \"$file\" \\\n\t|| func_fatal_help \"'$file' is not a file\"\n\n      dir=\n      case $file in\n      *.la)\n\tfunc_resolve_sysroot \"$file\"\n\tfile=$func_resolve_sysroot_result\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"'$lib' is not a valid libtool archive\"\n\n\t# Read the libtool library.\n\tdlname=\n\tlibrary_names=\n\tfunc_source \"$file\"\n\n\t# Skip this library if it cannot be dlopened.\n\tif test -z \"$dlname\"; then\n\t  # Warn if it was a shared library.\n\t  test -n \"$library_names\" && \\\n\t    func_warning \"'$file' was not linked with '-export-dynamic'\"\n\t  continue\n\tfi\n\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=$func_dirname_result\n\n\tif test -f \"$dir/$objdir/$dlname\"; then\n\t  func_append dir \"/$objdir\"\n\telse\n\t  if test ! -f \"$dir/$dlname\"; then\n\t    func_fatal_error \"cannot find '$dlname' in '$dir' or '$dir/$objdir'\"\n\t  fi\n\tfi\n\t;;\n\n      *.lo)\n\t# Just add the directory containing the .lo file.\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=$func_dirname_result\n\t;;\n\n      *)\n\tfunc_warning \"'-dlopen' is ignored for non-libtool libraries and objects\"\n\tcontinue\n\t;;\n      esac\n\n      # Get the absolute pathname.\n      absdir=`cd \"$dir\" && pwd`\n      test -n \"$absdir\" && dir=$absdir\n\n      # Now add the directory to shlibpath_var.\n      if eval \"test -z \\\"\\$$shlibpath_var\\\"\"; then\n\teval \"$shlibpath_var=\\\"\\$dir\\\"\"\n      else\n\teval \"$shlibpath_var=\\\"\\$dir:\\$$shlibpath_var\\\"\"\n      fi\n    done\n\n    # This variable tells wrapper scripts just to set shlibpath_var\n    # rather than running their programs.\n    libtool_execute_magic=$magic\n\n    # Check if any of the arguments is a wrapper script.\n    args=\n    for file\n    do\n      case $file in\n      -* | *.la | *.lo ) ;;\n      *)\n\t# Do a test to see if this is really a libtool program.\n\tif func_ltwrapper_script_p \"$file\"; then\n\t  func_source \"$file\"\n\t  # Transform arg to wrapped name.\n\t  file=$progdir/$program\n\telif func_ltwrapper_executable_p \"$file\"; then\n\t  func_ltwrapper_scriptname \"$file\"\n\t  func_source \"$func_ltwrapper_scriptname_result\"\n\t  # Transform arg to wrapped name.\n\t  file=$progdir/$program\n\tfi\n\t;;\n      esac\n      # Quote arguments (to preserve shell metacharacters).\n      func_append_quoted args \"$file\"\n    done\n\n    if $opt_dry_run; then\n      # Display what would be done.\n      if test -n \"$shlibpath_var\"; then\n\teval \"\\$ECHO \\\"\\$shlibpath_var=\\$$shlibpath_var\\\"\"\n\techo \"export $shlibpath_var\"\n      fi\n      $ECHO \"$cmd$args\"\n      exit $EXIT_SUCCESS\n    else\n      if test -n \"$shlibpath_var\"; then\n\t# Export the shlibpath_var.\n\teval \"export $shlibpath_var\"\n      fi\n\n      # Restore saved environment variables\n      for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\n      do\n\teval \"if test \\\"\\${save_$lt_var+set}\\\" = set; then\n                $lt_var=\\$save_$lt_var; export $lt_var\n\t      else\n\t\t$lt_unset $lt_var\n\t      fi\"\n      done\n\n      # Now prepare to actually exec the command.\n      exec_cmd=\\$cmd$args\n    fi\n}\n\ntest execute = \"$opt_mode\" && func_mode_execute ${1+\"$@\"}\n\n\n# func_mode_finish arg...\nfunc_mode_finish ()\n{\n    $debug_cmd\n\n    libs=\n    libdirs=\n    admincmds=\n\n    for opt in \"$nonopt\" ${1+\"$@\"}\n    do\n      if test -d \"$opt\"; then\n\tfunc_append libdirs \" $opt\"\n\n      elif test -f \"$opt\"; then\n\tif func_lalib_unsafe_p \"$opt\"; then\n\t  func_append libs \" $opt\"\n\telse\n\t  func_warning \"'$opt' is not a valid libtool archive\"\n\tfi\n\n      else\n\tfunc_fatal_error \"invalid argument '$opt'\"\n      fi\n    done\n\n    if test -n \"$libs\"; then\n      if test -n \"$lt_sysroot\"; then\n        sysroot_regex=`$ECHO \"$lt_sysroot\" | $SED \"$sed_make_literal_regex\"`\n        sysroot_cmd=\"s/\\([ ']\\)$sysroot_regex/\\1/g;\"\n      else\n        sysroot_cmd=\n      fi\n\n      # Remove sysroot references\n      if $opt_dry_run; then\n        for lib in $libs; do\n          echo \"removing references to $lt_sysroot and '=' prefixes from $lib\"\n        done\n      else\n        tmpdir=`func_mktempdir`\n        for lib in $libs; do\n\t  $SED -e \"$sysroot_cmd s/\\([ ']-[LR]\\)=/\\1/g; s/\\([ ']\\)=/\\1/g\" $lib \\\n\t    > $tmpdir/tmp-la\n\t  mv -f $tmpdir/tmp-la $lib\n\tdone\n        ${RM}r \"$tmpdir\"\n      fi\n    fi\n\n    if test -n \"$finish_cmds$finish_eval\" && test -n \"$libdirs\"; then\n      for libdir in $libdirs; do\n\tif test -n \"$finish_cmds\"; then\n\t  # Do each command in the finish commands.\n\t  func_execute_cmds \"$finish_cmds\" 'admincmds=\"$admincmds\n'\"$cmd\"'\"'\n\tfi\n\tif test -n \"$finish_eval\"; then\n\t  # Do the single finish_eval.\n\t  eval cmds=\\\"$finish_eval\\\"\n\t  $opt_dry_run || eval \"$cmds\" || func_append admincmds \"\n       $cmds\"\n\tfi\n      done\n    fi\n\n    # Exit here if they wanted silent mode.\n    $opt_quiet && exit $EXIT_SUCCESS\n\n    if test -n \"$finish_cmds$finish_eval\" && test -n \"$libdirs\"; then\n      echo \"----------------------------------------------------------------------\"\n      echo \"Libraries have been installed in:\"\n      for libdir in $libdirs; do\n\t$ECHO \"   $libdir\"\n      done\n      echo\n      echo \"If you ever happen to want to link against installed libraries\"\n      echo \"in a given directory, LIBDIR, you must either use libtool, and\"\n      echo \"specify the full pathname of the library, or use the '-LLIBDIR'\"\n      echo \"flag during linking and do at least one of the following:\"\n      if test -n \"$shlibpath_var\"; then\n\techo \"   - add LIBDIR to the '$shlibpath_var' environment variable\"\n\techo \"     during execution\"\n      fi\n      if test -n \"$runpath_var\"; then\n\techo \"   - add LIBDIR to the '$runpath_var' environment variable\"\n\techo \"     during linking\"\n      fi\n      if test -n \"$hardcode_libdir_flag_spec\"; then\n\tlibdir=LIBDIR\n\teval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\n\t$ECHO \"   - use the '$flag' linker flag\"\n      fi\n      if test -n \"$admincmds\"; then\n\t$ECHO \"   - have your system administrator run these commands:$admincmds\"\n      fi\n      if test -f /etc/ld.so.conf; then\n\techo \"   - have your system administrator add LIBDIR to '/etc/ld.so.conf'\"\n      fi\n      echo\n\n      echo \"See any operating system documentation about shared libraries for\"\n      case $host in\n\tsolaris2.[6789]|solaris2.1[0-9])\n\t  echo \"more information, such as the ld(1), crle(1) and ld.so(8) manual\"\n\t  echo \"pages.\"\n\t  ;;\n\t*)\n\t  echo \"more information, such as the ld(1) and ld.so(8) manual pages.\"\n\t  ;;\n      esac\n      echo \"----------------------------------------------------------------------\"\n    fi\n    exit $EXIT_SUCCESS\n}\n\ntest finish = \"$opt_mode\" && func_mode_finish ${1+\"$@\"}\n\n\n# func_mode_install arg...\nfunc_mode_install ()\n{\n    $debug_cmd\n\n    # There may be an optional sh(1) argument at the beginning of\n    # install_prog (especially on Windows NT).\n    if test \"$SHELL\" = \"$nonopt\" || test /bin/sh = \"$nonopt\" ||\n       # Allow the use of GNU shtool's install command.\n       case $nonopt in *shtool*) :;; *) false;; esac\n    then\n      # Aesthetically quote it.\n      func_quote_for_eval \"$nonopt\"\n      install_prog=\"$func_quote_for_eval_result \"\n      arg=$1\n      shift\n    else\n      install_prog=\n      arg=$nonopt\n    fi\n\n    # The real first argument should be the name of the installation program.\n    # Aesthetically quote it.\n    func_quote_for_eval \"$arg\"\n    func_append install_prog \"$func_quote_for_eval_result\"\n    install_shared_prog=$install_prog\n    case \" $install_prog \" in\n      *[\\\\\\ /]cp\\ *) install_cp=: ;;\n      *) install_cp=false ;;\n    esac\n\n    # We need to accept at least all the BSD install flags.\n    dest=\n    files=\n    opts=\n    prev=\n    install_type=\n    isdir=false\n    stripme=\n    no_mode=:\n    for arg\n    do\n      arg2=\n      if test -n \"$dest\"; then\n\tfunc_append files \" $dest\"\n\tdest=$arg\n\tcontinue\n      fi\n\n      case $arg in\n      -d) isdir=: ;;\n      -f)\n\tif $install_cp; then :; else\n\t  prev=$arg\n\tfi\n\t;;\n      -g | -m | -o)\n\tprev=$arg\n\t;;\n      -s)\n\tstripme=\" -s\"\n\tcontinue\n\t;;\n      -*)\n\t;;\n      *)\n\t# If the previous option needed an argument, then skip it.\n\tif test -n \"$prev\"; then\n\t  if test X-m = \"X$prev\" && test -n \"$install_override_mode\"; then\n\t    arg2=$install_override_mode\n\t    no_mode=false\n\t  fi\n\t  prev=\n\telse\n\t  dest=$arg\n\t  continue\n\tfi\n\t;;\n      esac\n\n      # Aesthetically quote the argument.\n      func_quote_for_eval \"$arg\"\n      func_append install_prog \" $func_quote_for_eval_result\"\n      if test -n \"$arg2\"; then\n\tfunc_quote_for_eval \"$arg2\"\n      fi\n      func_append install_shared_prog \" $func_quote_for_eval_result\"\n    done\n\n    test -z \"$install_prog\" && \\\n      func_fatal_help \"you must specify an install program\"\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the '$prev' option requires an argument\"\n\n    if test -n \"$install_override_mode\" && $no_mode; then\n      if $install_cp; then :; else\n\tfunc_quote_for_eval \"$install_override_mode\"\n\tfunc_append install_shared_prog \" -m $func_quote_for_eval_result\"\n      fi\n    fi\n\n    if test -z \"$files\"; then\n      if test -z \"$dest\"; then\n\tfunc_fatal_help \"no file or destination specified\"\n      else\n\tfunc_fatal_help \"you must specify a destination\"\n      fi\n    fi\n\n    # Strip any trailing slash from the destination.\n    func_stripname '' '/' \"$dest\"\n    dest=$func_stripname_result\n\n    # Check to see that the destination is a directory.\n    test -d \"$dest\" && isdir=:\n    if $isdir; then\n      destdir=$dest\n      destname=\n    else\n      func_dirname_and_basename \"$dest\" \"\" \".\"\n      destdir=$func_dirname_result\n      destname=$func_basename_result\n\n      # Not a directory, so check to see that there is only one file specified.\n      set dummy $files; shift\n      test \"$#\" -gt 1 && \\\n\tfunc_fatal_help \"'$dest' is not a directory\"\n    fi\n    case $destdir in\n    [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n    *)\n      for file in $files; do\n\tcase $file in\n\t*.lo) ;;\n\t*)\n\t  func_fatal_help \"'$destdir' must be an absolute directory name\"\n\t  ;;\n\tesac\n      done\n      ;;\n    esac\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=$magic\n\n    staticlibs=\n    future_libdirs=\n    current_libdirs=\n    for file in $files; do\n\n      # Do each installation.\n      case $file in\n      *.$libext)\n\t# Do the static libraries later.\n\tfunc_append staticlibs \" $file\"\n\t;;\n\n      *.la)\n\tfunc_resolve_sysroot \"$file\"\n\tfile=$func_resolve_sysroot_result\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"'$file' is not a valid libtool archive\"\n\n\tlibrary_names=\n\told_library=\n\trelink_command=\n\tfunc_source \"$file\"\n\n\t# Add the libdir to current_libdirs if it is the destination.\n\tif test \"X$destdir\" = \"X$libdir\"; then\n\t  case \"$current_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append current_libdirs \" $libdir\" ;;\n\t  esac\n\telse\n\t  # Note the libdir as a future libdir.\n\t  case \"$future_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append future_libdirs \" $libdir\" ;;\n\t  esac\n\tfi\n\n\tfunc_dirname \"$file\" \"/\" \"\"\n\tdir=$func_dirname_result\n\tfunc_append dir \"$objdir\"\n\n\tif test -n \"$relink_command\"; then\n\t  # Determine the prefix the user has applied to our future dir.\n\t  inst_prefix_dir=`$ECHO \"$destdir\" | $SED -e \"s%$libdir\\$%%\"`\n\n\t  # Don't allow the user to place us outside of our expected\n\t  # location b/c this prevents finding dependent libraries that\n\t  # are installed to the same prefix.\n\t  # At present, this check doesn't affect windows .dll's that\n\t  # are installed into $libdir/../bin (currently, that works fine)\n\t  # but it's something to keep an eye on.\n\t  test \"$inst_prefix_dir\" = \"$destdir\" && \\\n\t    func_fatal_error \"error: cannot install '$file' to a directory not ending in $libdir\"\n\n\t  if test -n \"$inst_prefix_dir\"; then\n\t    # Stick the inst_prefix_dir data into the link command.\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%\"`\n\t  else\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%%\"`\n\t  fi\n\n\t  func_warning \"relinking '$file'\"\n\t  func_show_eval \"$relink_command\" \\\n\t    'func_fatal_error \"error: relink '\\''$file'\\'' with the above command before installing it\"'\n\tfi\n\n\t# See the names of the shared library.\n\tset dummy $library_names; shift\n\tif test -n \"$1\"; then\n\t  realname=$1\n\t  shift\n\n\t  srcname=$realname\n\t  test -n \"$relink_command\" && srcname=${realname}T\n\n\t  # Install the shared library and build the symlinks.\n\t  func_show_eval \"$install_shared_prog $dir/$srcname $destdir/$realname\" \\\n\t      'exit $?'\n\t  tstripme=$stripme\n\t  case $host_os in\n\t  cygwin* | mingw* | pw32* | cegcc*)\n\t    case $realname in\n\t    *.dll.a)\n\t      tstripme=\n\t      ;;\n\t    esac\n\t    ;;\n\t  os2*)\n\t    case $realname in\n\t    *_dll.a)\n\t      tstripme=\n\t      ;;\n\t    esac\n\t    ;;\n\t  esac\n\t  if test -n \"$tstripme\" && test -n \"$striplib\"; then\n\t    func_show_eval \"$striplib $destdir/$realname\" 'exit $?'\n\t  fi\n\n\t  if test \"$#\" -gt 0; then\n\t    # Delete the old symlinks, and create new ones.\n\t    # Try 'ln -sf' first, because the 'ln' binary might depend on\n\t    # the symlink we replace!  Solaris /bin/ln does not understand -f,\n\t    # so we also need to try rm && ln -s.\n\t    for linkname\n\t    do\n\t      test \"$linkname\" != \"$realname\" \\\n\t\t&& func_show_eval \"(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })\"\n\t    done\n\t  fi\n\n\t  # Do each command in the postinstall commands.\n\t  lib=$destdir/$realname\n\t  func_execute_cmds \"$postinstall_cmds\" 'exit $?'\n\tfi\n\n\t# Install the pseudo-library for information purposes.\n\tfunc_basename \"$file\"\n\tname=$func_basename_result\n\tinstname=$dir/${name}i\n\tfunc_show_eval \"$install_prog $instname $destdir/$name\" 'exit $?'\n\n\t# Maybe install the static library, too.\n\ttest -n \"$old_library\" && func_append staticlibs \" $dir/$old_library\"\n\t;;\n\n      *.lo)\n\t# Install (i.e. copy) a libtool object.\n\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=$destdir/$destname\n\telse\n\t  func_basename \"$file\"\n\t  destfile=$func_basename_result\n\t  destfile=$destdir/$destfile\n\tfi\n\n\t# Deduce the name of the destination old-style object file.\n\tcase $destfile in\n\t*.lo)\n\t  func_lo2o \"$destfile\"\n\t  staticdest=$func_lo2o_result\n\t  ;;\n\t*.$objext)\n\t  staticdest=$destfile\n\t  destfile=\n\t  ;;\n\t*)\n\t  func_fatal_help \"cannot copy a libtool object to '$destfile'\"\n\t  ;;\n\tesac\n\n\t# Install the libtool object if requested.\n\ttest -n \"$destfile\" && \\\n\t  func_show_eval \"$install_prog $file $destfile\" 'exit $?'\n\n\t# Install the old object if enabled.\n\tif test yes = \"$build_old_libs\"; then\n\t  # Deduce the name of the old-style object file.\n\t  func_lo2o \"$file\"\n\t  staticobj=$func_lo2o_result\n\t  func_show_eval \"$install_prog \\$staticobj \\$staticdest\" 'exit $?'\n\tfi\n\texit $EXIT_SUCCESS\n\t;;\n\n      *)\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=$destdir/$destname\n\telse\n\t  func_basename \"$file\"\n\t  destfile=$func_basename_result\n\t  destfile=$destdir/$destfile\n\tfi\n\n\t# If the file is missing, and there is a .exe on the end, strip it\n\t# because it is most likely a libtool script we actually want to\n\t# install\n\tstripped_ext=\n\tcase $file in\n\t  *.exe)\n\t    if test ! -f \"$file\"; then\n\t      func_stripname '' '.exe' \"$file\"\n\t      file=$func_stripname_result\n\t      stripped_ext=.exe\n\t    fi\n\t    ;;\n\tesac\n\n\t# Do a test to see if this is really a libtool program.\n\tcase $host in\n\t*cygwin* | *mingw*)\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      wrapper=$func_ltwrapper_scriptname_result\n\t    else\n\t      func_stripname '' '.exe' \"$file\"\n\t      wrapper=$func_stripname_result\n\t    fi\n\t    ;;\n\t*)\n\t    wrapper=$file\n\t    ;;\n\tesac\n\tif func_ltwrapper_script_p \"$wrapper\"; then\n\t  notinst_deplibs=\n\t  relink_command=\n\n\t  func_source \"$wrapper\"\n\n\t  # Check the variables that should have been set.\n\t  test -z \"$generated_by_libtool_version\" && \\\n\t    func_fatal_error \"invalid libtool wrapper script '$wrapper'\"\n\n\t  finalize=:\n\t  for lib in $notinst_deplibs; do\n\t    # Check to see that each library is installed.\n\t    libdir=\n\t    if test -f \"$lib\"; then\n\t      func_source \"$lib\"\n\t    fi\n\t    libfile=$libdir/`$ECHO \"$lib\" | $SED 's%^.*/%%g'`\n\t    if test -n \"$libdir\" && test ! -f \"$libfile\"; then\n\t      func_warning \"'$lib' has not been installed in '$libdir'\"\n\t      finalize=false\n\t    fi\n\t  done\n\n\t  relink_command=\n\t  func_source \"$wrapper\"\n\n\t  outputname=\n\t  if test no = \"$fast_install\" && test -n \"$relink_command\"; then\n\t    $opt_dry_run || {\n\t      if $finalize; then\n\t        tmpdir=`func_mktempdir`\n\t\tfunc_basename \"$file$stripped_ext\"\n\t\tfile=$func_basename_result\n\t        outputname=$tmpdir/$file\n\t        # Replace the output file specification.\n\t        relink_command=`$ECHO \"$relink_command\" | $SED 's%@OUTPUT@%'\"$outputname\"'%g'`\n\n\t        $opt_quiet || {\n\t          func_quote_for_expand \"$relink_command\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t        }\n\t        if eval \"$relink_command\"; then :\n\t          else\n\t\t  func_error \"error: relink '$file' with the above command before installing it\"\n\t\t  $opt_dry_run || ${RM}r \"$tmpdir\"\n\t\t  continue\n\t        fi\n\t        file=$outputname\n\t      else\n\t        func_warning \"cannot relink '$file'\"\n\t      fi\n\t    }\n\t  else\n\t    # Install the binary that we compiled earlier.\n\t    file=`$ECHO \"$file$stripped_ext\" | $SED \"s%\\([^/]*\\)$%$objdir/\\1%\"`\n\t  fi\n\tfi\n\n\t# remove .exe since cygwin /usr/bin/install will append another\n\t# one anyway\n\tcase $install_prog,$host in\n\t*/usr/bin/install*,*cygwin*)\n\t  case $file:$destfile in\n\t  *.exe:*.exe)\n\t    # this is ok\n\t    ;;\n\t  *.exe:*)\n\t    destfile=$destfile.exe\n\t    ;;\n\t  *:*.exe)\n\t    func_stripname '' '.exe' \"$destfile\"\n\t    destfile=$func_stripname_result\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tfunc_show_eval \"$install_prog\\$stripme \\$file \\$destfile\" 'exit $?'\n\t$opt_dry_run || if test -n \"$outputname\"; then\n\t  ${RM}r \"$tmpdir\"\n\tfi\n\t;;\n      esac\n    done\n\n    for file in $staticlibs; do\n      func_basename \"$file\"\n      name=$func_basename_result\n\n      # Set up the ranlib parameters.\n      oldlib=$destdir/$name\n      func_to_tool_file \"$oldlib\" func_convert_file_msys_to_w32\n      tool_oldlib=$func_to_tool_file_result\n\n      func_show_eval \"$install_prog \\$file \\$oldlib\" 'exit $?'\n\n      if test -n \"$stripme\" && test -n \"$old_striplib\"; then\n\tfunc_show_eval \"$old_striplib $tool_oldlib\" 'exit $?'\n      fi\n\n      # Do each command in the postinstall commands.\n      func_execute_cmds \"$old_postinstall_cmds\" 'exit $?'\n    done\n\n    test -n \"$future_libdirs\" && \\\n      func_warning \"remember to run '$progname --finish$future_libdirs'\"\n\n    if test -n \"$current_libdirs\"; then\n      # Maybe just do a dry run.\n      $opt_dry_run && current_libdirs=\" -n$current_libdirs\"\n      exec_cmd='$SHELL \"$progpath\" $preserve_args --finish$current_libdirs'\n    else\n      exit $EXIT_SUCCESS\n    fi\n}\n\ntest install = \"$opt_mode\" && func_mode_install ${1+\"$@\"}\n\n\n# func_generate_dlsyms outputname originator pic_p\n# Extract symbols from dlprefiles and create ${outputname}S.o with\n# a dlpreopen symbol table.\nfunc_generate_dlsyms ()\n{\n    $debug_cmd\n\n    my_outputname=$1\n    my_originator=$2\n    my_pic_p=${3-false}\n    my_prefix=`$ECHO \"$my_originator\" | $SED 's%[^a-zA-Z0-9]%_%g'`\n    my_dlsyms=\n\n    if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n      if test -n \"$NM\" && test -n \"$global_symbol_pipe\"; then\n\tmy_dlsyms=${my_outputname}S.c\n      else\n\tfunc_error \"not configured to extract global symbols from dlpreopened files\"\n      fi\n    fi\n\n    if test -n \"$my_dlsyms\"; then\n      case $my_dlsyms in\n      \"\") ;;\n      *.c)\n\t# Discover the nlist of each of the dlfiles.\n\tnlist=$output_objdir/$my_outputname.nm\n\n\tfunc_show_eval \"$RM $nlist ${nlist}S ${nlist}T\"\n\n\t# Parse the name list into a source file.\n\tfunc_verbose \"creating $output_objdir/$my_dlsyms\"\n\n\t$opt_dry_run || $ECHO > \"$output_objdir/$my_dlsyms\" \"\\\n/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */\n/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */\n\n#ifdef __cplusplus\nextern \\\"C\\\" {\n#endif\n\n#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))\n#pragma GCC diagnostic ignored \\\"-Wstrict-prototypes\\\"\n#endif\n\n/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */\n#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE\n/* DATA imports from DLLs on WIN32 can't be const, because runtime\n   relocations are performed -- see ld's documentation on pseudo-relocs.  */\n# define LT_DLSYM_CONST\n#elif defined __osf__\n/* This system does not cope well with relocations in const data.  */\n# define LT_DLSYM_CONST\n#else\n# define LT_DLSYM_CONST const\n#endif\n\n#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)\n\n/* External symbol declarations for the compiler. */\\\n\"\n\n\tif test yes = \"$dlself\"; then\n\t  func_verbose \"generating symbol list for '$output'\"\n\n\t  $opt_dry_run || echo ': @PROGRAM@ ' > \"$nlist\"\n\n\t  # Add our own program objects to the symbol list.\n\t  progfiles=`$ECHO \"$objs$old_deplibs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\t  for progfile in $progfiles; do\n\t    func_to_tool_file \"$progfile\" func_convert_file_msys_to_w32\n\t    func_verbose \"extracting global C symbols from '$func_to_tool_file_result'\"\n\t    $opt_dry_run || eval \"$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'\"\n\t  done\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  if test -n \"$export_symbols_regex\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -e \"$export_symbols_regex\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  # Prepare the list of exported symbols\n\t  if test -z \"$export_symbols\"; then\n\t    export_symbols=$output_objdir/$outputname.exp\n\t    $opt_dry_run || {\n\t      $RM $export_symbols\n\t      eval \"$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \\(.*\\)$/\\1/p' \"'< \"$nlist\" > \"$export_symbols\"'\n\t      case $host in\n\t      *cygwin* | *mingw* | *cegcc* )\n                eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n                eval 'cat \"$export_symbols\" >> \"$output_objdir/$outputname.def\"'\n\t        ;;\n\t      esac\n\t    }\n\t  else\n\t    $opt_dry_run || {\n\t      eval \"$SED -e 's/\\([].[*^$]\\)/\\\\\\\\\\1/g' -e 's/^/ /' -e 's/$/$/'\"' < \"$export_symbols\" > \"$output_objdir/$outputname.exp\"'\n\t      eval '$GREP -f \"$output_objdir/$outputname.exp\" < \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t      case $host in\n\t        *cygwin* | *mingw* | *cegcc* )\n\t          eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n\t          eval 'cat \"$nlist\" >> \"$output_objdir/$outputname.def\"'\n\t          ;;\n\t      esac\n\t    }\n\t  fi\n\tfi\n\n\tfor dlprefile in $dlprefiles; do\n\t  func_verbose \"extracting global C symbols from '$dlprefile'\"\n\t  func_basename \"$dlprefile\"\n\t  name=$func_basename_result\n          case $host in\n\t    *cygwin* | *mingw* | *cegcc* )\n\t      # if an import library, we need to obtain dlname\n\t      if func_win32_import_lib_p \"$dlprefile\"; then\n\t        func_tr_sh \"$dlprefile\"\n\t        eval \"curr_lafile=\\$libfile_$func_tr_sh_result\"\n\t        dlprefile_dlbasename=\n\t        if test -n \"$curr_lafile\" && func_lalib_p \"$curr_lafile\"; then\n\t          # Use subshell, to avoid clobbering current variable values\n\t          dlprefile_dlname=`source \"$curr_lafile\" && echo \"$dlname\"`\n\t          if test -n \"$dlprefile_dlname\"; then\n\t            func_basename \"$dlprefile_dlname\"\n\t            dlprefile_dlbasename=$func_basename_result\n\t          else\n\t            # no lafile. user explicitly requested -dlpreopen <import library>.\n\t            $sharedlib_from_linklib_cmd \"$dlprefile\"\n\t            dlprefile_dlbasename=$sharedlib_from_linklib_result\n\t          fi\n\t        fi\n\t        $opt_dry_run || {\n\t          if test -n \"$dlprefile_dlbasename\"; then\n\t            eval '$ECHO \": $dlprefile_dlbasename\" >> \"$nlist\"'\n\t          else\n\t            func_warning \"Could not compute DLL name from $name\"\n\t            eval '$ECHO \": $name \" >> \"$nlist\"'\n\t          fi\n\t          func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t          eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe |\n\t            $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'\"\n\t        }\n\t      else # not an import lib\n\t        $opt_dry_run || {\n\t          eval '$ECHO \": $name \" >> \"$nlist\"'\n\t          func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t          eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe >> '$nlist'\"\n\t        }\n\t      fi\n\t    ;;\n\t    *)\n\t      $opt_dry_run || {\n\t        eval '$ECHO \": $name \" >> \"$nlist\"'\n\t        func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t        eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe >> '$nlist'\"\n\t      }\n\t    ;;\n          esac\n\tdone\n\n\t$opt_dry_run || {\n\t  # Make sure we have at least an empty file.\n\t  test -f \"$nlist\" || : > \"$nlist\"\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T\n\t    $MV \"$nlist\"T \"$nlist\"\n\t  fi\n\n\t  # Try sorting and uniquifying the output.\n\t  if $GREP -v \"^: \" < \"$nlist\" |\n\t      if sort -k 3 </dev/null >/dev/null 2>&1; then\n\t\tsort -k 3\n\t      else\n\t\tsort +2\n\t      fi |\n\t      uniq > \"$nlist\"S; then\n\t    :\n\t  else\n\t    $GREP -v \"^: \" < \"$nlist\" > \"$nlist\"S\n\t  fi\n\n\t  if test -f \"$nlist\"S; then\n\t    eval \"$global_symbol_to_cdecl\"' < \"$nlist\"S >> \"$output_objdir/$my_dlsyms\"'\n\t  else\n\t    echo '/* NONE */' >> \"$output_objdir/$my_dlsyms\"\n\t  fi\n\n\t  func_show_eval '$RM \"${nlist}I\"'\n\t  if test -n \"$global_symbol_to_import\"; then\n\t    eval \"$global_symbol_to_import\"' < \"$nlist\"S > \"$nlist\"I'\n\t  fi\n\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n\n/* The mapping between symbol names and symbols.  */\ntypedef struct {\n  const char *name;\n  void *address;\n} lt_dlsymlist;\nextern LT_DLSYM_CONST lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[];\\\n\"\n\n\t  if test -s \"$nlist\"I; then\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\nstatic void lt_syminit(void)\n{\n  LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols;\n  for (; symbol->name; ++symbol)\n    {\"\n\t    $SED 's/.*/      if (STREQ (symbol->name, \\\"&\\\")) symbol->address = (void *) \\&&;/' < \"$nlist\"I >> \"$output_objdir/$my_dlsyms\"\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n    }\n}\"\n\t  fi\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\nLT_DLSYM_CONST lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[] =\n{ {\\\"$my_originator\\\", (void *) 0},\"\n\n\t  if test -s \"$nlist\"I; then\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n  {\\\"@INIT@\\\", (void *) &lt_syminit},\"\n\t  fi\n\n\t  case $need_lib_prefix in\n\t  no)\n\t    eval \"$global_symbol_to_c_name_address\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  *)\n\t    eval \"$global_symbol_to_c_name_address_lib_prefix\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  esac\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt_${my_prefix}_LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\\\n\"\n\t} # !$opt_dry_run\n\n\tpic_flag_for_symtable=\n\tcase \"$compile_command \" in\n\t*\" -static \"*) ;;\n\t*)\n\t  case $host in\n\t  # compiling the symbol table file with pic_flag works around\n\t  # a FreeBSD bug that causes programs to crash when -lm is\n\t  # linked before any other PIC object.  But we must not use\n\t  # pic_flag when linking with -static.  The problem exists in\n\t  # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.\n\t  *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)\n\t    pic_flag_for_symtable=\" $pic_flag -DFREEBSD_WORKAROUND\" ;;\n\t  *-*-hpux*)\n\t    pic_flag_for_symtable=\" $pic_flag\"  ;;\n\t  *)\n\t    $my_pic_p && pic_flag_for_symtable=\" $pic_flag\"\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tsymtab_cflags=\n\tfor arg in $LTCFLAGS; do\n\t  case $arg in\n\t  -pie | -fpie | -fPIE) ;;\n\t  *) func_append symtab_cflags \" $arg\" ;;\n\t  esac\n\tdone\n\n\t# Now compile the dynamic symbol file.\n\tfunc_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable \"$my_dlsyms\")' 'exit $?'\n\n\t# Clean up the generated files.\n\tfunc_show_eval '$RM \"$output_objdir/$my_dlsyms\" \"$nlist\" \"${nlist}S\" \"${nlist}T\" \"${nlist}I\"'\n\n\t# Transform the symbol file into the correct name.\n\tsymfileobj=$output_objdir/${my_outputname}S.$objext\n\tcase $host in\n\t*cygwin* | *mingw* | *cegcc* )\n\t  if test -f \"$output_objdir/$my_outputname.def\"; then\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t  else\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  fi\n\t  ;;\n\t*)\n\t  compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  ;;\n\tesac\n\t;;\n      *)\n\tfunc_fatal_error \"unknown suffix for '$my_dlsyms'\"\n\t;;\n      esac\n    else\n      # We keep going just in case the user didn't refer to\n      # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe\n      # really was required.\n\n      # Nullify the symbol file.\n      compile_command=`$ECHO \"$compile_command\" | $SED \"s% @SYMFILE@%%\"`\n      finalize_command=`$ECHO \"$finalize_command\" | $SED \"s% @SYMFILE@%%\"`\n    fi\n}\n\n# func_cygming_gnu_implib_p ARG\n# This predicate returns with zero status (TRUE) if\n# ARG is a GNU/binutils-style import library. Returns\n# with nonzero status (FALSE) otherwise.\nfunc_cygming_gnu_implib_p ()\n{\n  $debug_cmd\n\n  func_to_tool_file \"$1\" func_convert_file_msys_to_w32\n  func_cygming_gnu_implib_tmp=`$NM \"$func_to_tool_file_result\" | eval \"$global_symbol_pipe\" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'`\n  test -n \"$func_cygming_gnu_implib_tmp\"\n}\n\n# func_cygming_ms_implib_p ARG\n# This predicate returns with zero status (TRUE) if\n# ARG is an MS-style import library. Returns\n# with nonzero status (FALSE) otherwise.\nfunc_cygming_ms_implib_p ()\n{\n  $debug_cmd\n\n  func_to_tool_file \"$1\" func_convert_file_msys_to_w32\n  func_cygming_ms_implib_tmp=`$NM \"$func_to_tool_file_result\" | eval \"$global_symbol_pipe\" | $GREP '_NULL_IMPORT_DESCRIPTOR'`\n  test -n \"$func_cygming_ms_implib_tmp\"\n}\n\n# func_win32_libid arg\n# return the library type of file 'arg'\n#\n# Need a lot of goo to handle *both* DLLs and import libs\n# Has to be a shell function in order to 'eat' the argument\n# that is supplied when $file_magic_command is called.\n# Despite the name, also deal with 64 bit binaries.\nfunc_win32_libid ()\n{\n  $debug_cmd\n\n  win32_libid_type=unknown\n  win32_fileres=`file -L $1 2>/dev/null`\n  case $win32_fileres in\n  *ar\\ archive\\ import\\ library*) # definitely import\n    win32_libid_type=\"x86 archive import\"\n    ;;\n  *ar\\ archive*) # could be an import, or static\n    # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.\n    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |\n       $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then\n      case $nm_interface in\n      \"MS dumpbin\")\n\tif func_cygming_ms_implib_p \"$1\" ||\n\t   func_cygming_gnu_implib_p \"$1\"\n\tthen\n\t  win32_nmres=import\n\telse\n\t  win32_nmres=\n\tfi\n\t;;\n      *)\n\tfunc_to_tool_file \"$1\" func_convert_file_msys_to_w32\n\twin32_nmres=`eval $NM -f posix -A \\\"$func_to_tool_file_result\\\" |\n\t  $SED -n -e '\n\t    1,100{\n\t\t/ I /{\n\t\t    s|.*|import|\n\t\t    p\n\t\t    q\n\t\t}\n\t    }'`\n\t;;\n      esac\n      case $win32_nmres in\n      import*)  win32_libid_type=\"x86 archive import\";;\n      *)        win32_libid_type=\"x86 archive static\";;\n      esac\n    fi\n    ;;\n  *DLL*)\n    win32_libid_type=\"x86 DLL\"\n    ;;\n  *executable*) # but shell scripts are \"executable\" too...\n    case $win32_fileres in\n    *MS\\ Windows\\ PE\\ Intel*)\n      win32_libid_type=\"x86 DLL\"\n      ;;\n    esac\n    ;;\n  esac\n  $ECHO \"$win32_libid_type\"\n}\n\n# func_cygming_dll_for_implib ARG\n#\n# Platform-specific function to extract the\n# name of the DLL associated with the specified\n# import library ARG.\n# Invoked by eval'ing the libtool variable\n#    $sharedlib_from_linklib_cmd\n# Result is available in the variable\n#    $sharedlib_from_linklib_result\nfunc_cygming_dll_for_implib ()\n{\n  $debug_cmd\n\n  sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify \"$1\"`\n}\n\n# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs\n#\n# The is the core of a fallback implementation of a\n# platform-specific function to extract the name of the\n# DLL associated with the specified import library LIBNAME.\n#\n# SECTION_NAME is either .idata$6 or .idata$7, depending\n# on the platform and compiler that created the implib.\n#\n# Echos the name of the DLL associated with the\n# specified import library.\nfunc_cygming_dll_for_implib_fallback_core ()\n{\n  $debug_cmd\n\n  match_literal=`$ECHO \"$1\" | $SED \"$sed_make_literal_regex\"`\n  $OBJDUMP -s --section \"$1\" \"$2\" 2>/dev/null |\n    $SED '/^Contents of section '\"$match_literal\"':/{\n      # Place marker at beginning of archive member dllname section\n      s/.*/====MARK====/\n      p\n      d\n    }\n    # These lines can sometimes be longer than 43 characters, but\n    # are always uninteresting\n    /:[\t ]*file format pe[i]\\{,1\\}-/d\n    /^In archive [^:]*:/d\n    # Ensure marker is printed\n    /^====MARK====/p\n    # Remove all lines with less than 43 characters\n    /^.\\{43\\}/!d\n    # From remaining lines, remove first 43 characters\n    s/^.\\{43\\}//' |\n    $SED -n '\n      # Join marker and all lines until next marker into a single line\n      /^====MARK====/ b para\n      H\n      $ b para\n      b\n      :para\n      x\n      s/\\n//g\n      # Remove the marker\n      s/^====MARK====//\n      # Remove trailing dots and whitespace\n      s/[\\. \\t]*$//\n      # Print\n      /./p' |\n    # we now have a list, one entry per line, of the stringified\n    # contents of the appropriate section of all members of the\n    # archive that possess that section. Heuristic: eliminate\n    # all those that have a first or second character that is\n    # a '.' (that is, objdump's representation of an unprintable\n    # character.) This should work for all archives with less than\n    # 0x302f exports -- but will fail for DLLs whose name actually\n    # begins with a literal '.' or a single character followed by\n    # a '.'.\n    #\n    # Of those that remain, print the first one.\n    $SED -e '/^\\./d;/^.\\./d;q'\n}\n\n# func_cygming_dll_for_implib_fallback ARG\n# Platform-specific function to extract the\n# name of the DLL associated with the specified\n# import library ARG.\n#\n# This fallback implementation is for use when $DLLTOOL\n# does not support the --identify-strict option.\n# Invoked by eval'ing the libtool variable\n#    $sharedlib_from_linklib_cmd\n# Result is available in the variable\n#    $sharedlib_from_linklib_result\nfunc_cygming_dll_for_implib_fallback ()\n{\n  $debug_cmd\n\n  if func_cygming_gnu_implib_p \"$1\"; then\n    # binutils import library\n    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' \"$1\"`\n  elif func_cygming_ms_implib_p \"$1\"; then\n    # ms-generated import library\n    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' \"$1\"`\n  else\n    # unknown\n    sharedlib_from_linklib_result=\n  fi\n}\n\n\n# func_extract_an_archive dir oldlib\nfunc_extract_an_archive ()\n{\n    $debug_cmd\n\n    f_ex_an_ar_dir=$1; shift\n    f_ex_an_ar_oldlib=$1\n    if test yes = \"$lock_old_archive_extraction\"; then\n      lockfile=$f_ex_an_ar_oldlib.lock\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    fi\n    func_show_eval \"(cd \\$f_ex_an_ar_dir && $AR x \\\"\\$f_ex_an_ar_oldlib\\\")\" \\\n\t\t   'stat=$?; rm -f \"$lockfile\"; exit $stat'\n    if test yes = \"$lock_old_archive_extraction\"; then\n      $opt_dry_run || rm -f \"$lockfile\"\n    fi\n    if ($AR t \"$f_ex_an_ar_oldlib\" | sort | sort -uc >/dev/null 2>&1); then\n     :\n    else\n      func_fatal_error \"object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib\"\n    fi\n}\n\n\n# func_extract_archives gentop oldlib ...\nfunc_extract_archives ()\n{\n    $debug_cmd\n\n    my_gentop=$1; shift\n    my_oldlibs=${1+\"$@\"}\n    my_oldobjs=\n    my_xlib=\n    my_xabs=\n    my_xdir=\n\n    for my_xlib in $my_oldlibs; do\n      # Extract the objects.\n      case $my_xlib in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) my_xabs=$my_xlib ;;\n\t*) my_xabs=`pwd`\"/$my_xlib\" ;;\n      esac\n      func_basename \"$my_xlib\"\n      my_xlib=$func_basename_result\n      my_xlib_u=$my_xlib\n      while :; do\n        case \" $extracted_archives \" in\n\t*\" $my_xlib_u \"*)\n\t  func_arith $extracted_serial + 1\n\t  extracted_serial=$func_arith_result\n\t  my_xlib_u=lt$extracted_serial-$my_xlib ;;\n\t*) break ;;\n\tesac\n      done\n      extracted_archives=\"$extracted_archives $my_xlib_u\"\n      my_xdir=$my_gentop/$my_xlib_u\n\n      func_mkdir_p \"$my_xdir\"\n\n      case $host in\n      *-darwin*)\n\tfunc_verbose \"Extracting $my_xabs\"\n\t# Do not bother doing anything if just a dry run\n\t$opt_dry_run || {\n\t  darwin_orig_dir=`pwd`\n\t  cd $my_xdir || exit $?\n\t  darwin_archive=$my_xabs\n\t  darwin_curdir=`pwd`\n\t  func_basename \"$darwin_archive\"\n\t  darwin_base_archive=$func_basename_result\n\t  darwin_arches=`$LIPO -info \"$darwin_archive\" 2>/dev/null | $GREP Architectures 2>/dev/null || true`\n\t  if test -n \"$darwin_arches\"; then\n\t    darwin_arches=`$ECHO \"$darwin_arches\" | $SED -e 's/.*are://'`\n\t    darwin_arch=\n\t    func_verbose \"$darwin_base_archive has multiple architectures $darwin_arches\"\n\t    for darwin_arch in  $darwin_arches; do\n\t      func_mkdir_p \"unfat-$$/$darwin_base_archive-$darwin_arch\"\n\t      $LIPO -thin $darwin_arch -output \"unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive\" \"$darwin_archive\"\n\t      cd \"unfat-$$/$darwin_base_archive-$darwin_arch\"\n\t      func_extract_an_archive \"`pwd`\" \"$darwin_base_archive\"\n\t      cd \"$darwin_curdir\"\n\t      $RM \"unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive\"\n\t    done # $darwin_arches\n            ## Okay now we've a bunch of thin objects, gotta fatten them up :)\n\t    darwin_filelist=`find unfat-$$ -type f -name \\*.o -print -o -name \\*.lo -print | $SED -e \"$sed_basename\" | sort -u`\n\t    darwin_file=\n\t    darwin_files=\n\t    for darwin_file in $darwin_filelist; do\n\t      darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`\n\t      $LIPO -create -output \"$darwin_file\" $darwin_files\n\t    done # $darwin_filelist\n\t    $RM -rf unfat-$$\n\t    cd \"$darwin_orig_dir\"\n\t  else\n\t    cd $darwin_orig_dir\n\t    func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t  fi # $darwin_arches\n\t} # !$opt_dry_run\n\t;;\n      *)\n        func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t;;\n      esac\n      my_oldobjs=\"$my_oldobjs \"`find $my_xdir -name \\*.$objext -print -o -name \\*.lo -print | sort | $NL2SP`\n    done\n\n    func_extract_archives_result=$my_oldobjs\n}\n\n\n# func_emit_wrapper [arg=no]\n#\n# Emit a libtool wrapper script on stdout.\n# Don't directly open a file because we may want to\n# incorporate the script contents within a cygwin/mingw\n# wrapper executable.  Must ONLY be called from within\n# func_mode_link because it depends on a number of variables\n# set therein.\n#\n# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\n# variable will take.  If 'yes', then the emitted script\n# will assume that the directory where it is stored is\n# the $objdir directory.  This is a cygwin/mingw-specific\n# behavior.\nfunc_emit_wrapper ()\n{\n\tfunc_emit_wrapper_arg1=${1-no}\n\n\t$ECHO \"\\\n#! $SHELL\n\n# $output - temporary wrapper script for $objdir/$outputname\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# The $output program cannot be directly executed until all the libtool\n# libraries that it depends on are installed.\n#\n# This wrapper script should never be moved out of the build directory.\n# If it is, it will not operate correctly.\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='$sed_quote_subst'\n\n# Be Bourne compatible\nif test -n \\\"\\${ZSH_VERSION+set}\\\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on \\${1+\\\"\\$@\\\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '\\${1+\\\"\\$@\\\"}'='\\\"\\$@\\\"'\n  setopt NO_GLOB_SUBST\nelse\n  case \\`(set -o) 2>/dev/null\\` in *posix*) set -o posix;; esac\nfi\nBIN_SH=xpg4; export BIN_SH # for Tru64\nDUALCASE=1; export DUALCASE # for MKS sh\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nrelink_command=\\\"$relink_command\\\"\n\n# This environment variable determines our operation mode.\nif test \\\"\\$libtool_install_magic\\\" = \\\"$magic\\\"; then\n  # install mode needs the following variables:\n  generated_by_libtool_version='$macro_version'\n  notinst_deplibs='$notinst_deplibs'\nelse\n  # When we are sourced in execute mode, \\$file and \\$ECHO are already set.\n  if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n    file=\\\"\\$0\\\"\"\n\n    qECHO=`$ECHO \"$ECHO\" | $SED \"$sed_quote_subst\"`\n    $ECHO \"\\\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$1\n_LTECHO_EOF'\n}\n    ECHO=\\\"$qECHO\\\"\n  fi\n\n# Very basic option parsing. These options are (a) specific to\n# the libtool wrapper, (b) are identical between the wrapper\n# /script/ and the wrapper /executable/ that is used only on\n# windows platforms, and (c) all begin with the string \"--lt-\"\n# (application programs are unlikely to have options that match\n# this pattern).\n#\n# There are only two supported options: --lt-debug and\n# --lt-dump-script. There is, deliberately, no --lt-help.\n#\n# The first argument to this parsing function should be the\n# script's $0 value, followed by \"$@\".\nlt_option_debug=\nfunc_parse_lt_options ()\n{\n  lt_script_arg0=\\$0\n  shift\n  for lt_opt\n  do\n    case \\\"\\$lt_opt\\\" in\n    --lt-debug) lt_option_debug=1 ;;\n    --lt-dump-script)\n        lt_dump_D=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\\`\n        test \\\"X\\$lt_dump_D\\\" = \\\"X\\$lt_script_arg0\\\" && lt_dump_D=.\n        lt_dump_F=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%^.*/%%'\\`\n        cat \\\"\\$lt_dump_D/\\$lt_dump_F\\\"\n        exit 0\n      ;;\n    --lt-*)\n        \\$ECHO \\\"Unrecognized --lt- option: '\\$lt_opt'\\\" 1>&2\n        exit 1\n      ;;\n    esac\n  done\n\n  # Print the debug banner immediately:\n  if test -n \\\"\\$lt_option_debug\\\"; then\n    echo \\\"$outputname:$output:\\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\\\" 1>&2\n  fi\n}\n\n# Used when --lt-debug. Prints its arguments to stdout\n# (redirection is the responsibility of the caller)\nfunc_lt_dump_args ()\n{\n  lt_dump_args_N=1;\n  for lt_arg\n  do\n    \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[\\$lt_dump_args_N]: \\$lt_arg\\\"\n    lt_dump_args_N=\\`expr \\$lt_dump_args_N + 1\\`\n  done\n}\n\n# Core function for launching the target application\nfunc_exec_program_core ()\n{\n\"\n  case $host in\n  # Backslashes separate directories on plain windows\n  *-*-mingw | *-*-os2* | *-cegcc*)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[0]: \\$progdir\\\\\\\\\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir\\\\\\\\\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n\n  *)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[0]: \\$progdir/\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir/\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n  esac\n  $ECHO \"\\\n      \\$ECHO \\\"\\$0: cannot exec \\$program \\$*\\\" 1>&2\n      exit 1\n}\n\n# A function to encapsulate launching the target application\n# Strips options in the --lt-* namespace from \\$@ and\n# launches target application with the remaining arguments.\nfunc_exec_program ()\n{\n  case \\\" \\$* \\\" in\n  *\\\\ --lt-*)\n    for lt_wr_arg\n    do\n      case \\$lt_wr_arg in\n      --lt-*) ;;\n      *) set x \\\"\\$@\\\" \\\"\\$lt_wr_arg\\\"; shift;;\n      esac\n      shift\n    done ;;\n  esac\n  func_exec_program_core \\${1+\\\"\\$@\\\"}\n}\n\n  # Parse options\n  func_parse_lt_options \\\"\\$0\\\" \\${1+\\\"\\$@\\\"}\n\n  # Find the directory that this script lives in.\n  thisdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*$%%'\\`\n  test \\\"x\\$thisdir\\\" = \\\"x\\$file\\\" && thisdir=.\n\n  # Follow symbolic links until we get to the real thisdir.\n  file=\\`ls -ld \\\"\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  while test -n \\\"\\$file\\\"; do\n    destdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*\\$%%'\\`\n\n    # If there was a directory component, then change thisdir.\n    if test \\\"x\\$destdir\\\" != \\\"x\\$file\\\"; then\n      case \\\"\\$destdir\\\" in\n      [\\\\\\\\/]* | [A-Za-z]:[\\\\\\\\/]*) thisdir=\\\"\\$destdir\\\" ;;\n      *) thisdir=\\\"\\$thisdir/\\$destdir\\\" ;;\n      esac\n    fi\n\n    file=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%^.*/%%'\\`\n    file=\\`ls -ld \\\"\\$thisdir/\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  done\n\n  # Usually 'no', except on cygwin/mingw when embedded into\n  # the cwrapper.\n  WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1\n  if test \\\"\\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\\\" = \\\"yes\\\"; then\n    # special case for '.'\n    if test \\\"\\$thisdir\\\" = \\\".\\\"; then\n      thisdir=\\`pwd\\`\n    fi\n    # remove .libs from thisdir\n    case \\\"\\$thisdir\\\" in\n    *[\\\\\\\\/]$objdir ) thisdir=\\`\\$ECHO \\\"\\$thisdir\\\" | $SED 's%[\\\\\\\\/][^\\\\\\\\/]*$%%'\\` ;;\n    $objdir )   thisdir=. ;;\n    esac\n  fi\n\n  # Try to get the absolute directory name.\n  absdir=\\`cd \\\"\\$thisdir\\\" && pwd\\`\n  test -n \\\"\\$absdir\\\" && thisdir=\\\"\\$absdir\\\"\n\"\n\n\tif test yes = \"$fast_install\"; then\n\t  $ECHO \"\\\n  program=lt-'$outputname'$exeext\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\n  if test ! -f \\\"\\$progdir/\\$program\\\" ||\n     { file=\\`ls -1dt \\\"\\$progdir/\\$program\\\" \\\"\\$progdir/../\\$program\\\" 2>/dev/null | $SED 1q\\`; \\\\\n       test \\\"X\\$file\\\" != \\\"X\\$progdir/\\$program\\\"; }; then\n\n    file=\\\"\\$\\$-\\$program\\\"\n\n    if test ! -d \\\"\\$progdir\\\"; then\n      $MKDIR \\\"\\$progdir\\\"\n    else\n      $RM \\\"\\$progdir/\\$file\\\"\n    fi\"\n\n\t  $ECHO \"\\\n\n    # relink executable if necessary\n    if test -n \\\"\\$relink_command\\\"; then\n      if relink_command_output=\\`eval \\$relink_command 2>&1\\`; then :\n      else\n\t\\$ECHO \\\"\\$relink_command_output\\\" >&2\n\t$RM \\\"\\$progdir/\\$file\\\"\n\texit 1\n      fi\n    fi\n\n    $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\" 2>/dev/null ||\n    { $RM \\\"\\$progdir/\\$program\\\";\n      $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\"; }\n    $RM \\\"\\$progdir/\\$file\\\"\n  fi\"\n\telse\n\t  $ECHO \"\\\n  program='$outputname'\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\"\n\tfi\n\n\t$ECHO \"\\\n\n  if test -f \\\"\\$progdir/\\$program\\\"; then\"\n\n\t# fixup the dll searchpath if we need to.\n\t#\n\t# Fix the DLL searchpath if we need to.  Do this before prepending\n\t# to shlibpath, because on Windows, both are PATH and uninstalled\n\t# libraries must come first.\n\tif test -n \"$dllsearchpath\"; then\n\t  $ECHO \"\\\n    # Add the dll search path components to the executable PATH\n    PATH=$dllsearchpath:\\$PATH\n\"\n\tfi\n\n\t# Export our shlibpath_var if we have one.\n\tif test yes = \"$shlibpath_overrides_runpath\" && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n\t  $ECHO \"\\\n    # Add our own library path to $shlibpath_var\n    $shlibpath_var=\\\"$temp_rpath\\$$shlibpath_var\\\"\n\n    # Some systems cannot cope with colon-terminated $shlibpath_var\n    # The second colon is a workaround for a bug in BeOS R4 sed\n    $shlibpath_var=\\`\\$ECHO \\\"\\$$shlibpath_var\\\" | $SED 's/::*\\$//'\\`\n\n    export $shlibpath_var\n\"\n\tfi\n\n\t$ECHO \"\\\n    if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n      # Run the actual program with our arguments.\n      func_exec_program \\${1+\\\"\\$@\\\"}\n    fi\n  else\n    # The program doesn't exist.\n    \\$ECHO \\\"\\$0: error: '\\$progdir/\\$program' does not exist\\\" 1>&2\n    \\$ECHO \\\"This script is just a wrapper for \\$program.\\\" 1>&2\n    \\$ECHO \\\"See the $PACKAGE documentation for more information.\\\" 1>&2\n    exit 1\n  fi\nfi\\\n\"\n}\n\n\n# func_emit_cwrapperexe_src\n# emit the source code for a wrapper executable on stdout\n# Must ONLY be called from within func_mode_link because\n# it depends on a number of variable set therein.\nfunc_emit_cwrapperexe_src ()\n{\n\tcat <<EOF\n\n/* $cwrappersource - temporary wrapper executable for $objdir/$outputname\n   Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n\n   The $output program cannot be directly executed until all the libtool\n   libraries that it depends on are installed.\n\n   This wrapper executable should never be moved out of the build directory.\n   If it is, it will not operate correctly.\n*/\nEOF\n\t    cat <<\"EOF\"\n#ifdef _MSC_VER\n# define _CRT_SECURE_NO_DEPRECATE 1\n#endif\n#include <stdio.h>\n#include <stdlib.h>\n#ifdef _MSC_VER\n# include <direct.h>\n# include <process.h>\n# include <io.h>\n#else\n# include <unistd.h>\n# include <stdint.h>\n# ifdef __CYGWIN__\n#  include <io.h>\n# endif\n#endif\n#include <malloc.h>\n#include <stdarg.h>\n#include <assert.h>\n#include <string.h>\n#include <ctype.h>\n#include <errno.h>\n#include <fcntl.h>\n#include <sys/stat.h>\n\n#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)\n\n/* declarations of non-ANSI functions */\n#if defined __MINGW32__\n# ifdef __STRICT_ANSI__\nint _putenv (const char *);\n# endif\n#elif defined __CYGWIN__\n# ifdef __STRICT_ANSI__\nchar *realpath (const char *, char *);\nint putenv (char *);\nint setenv (const char *, const char *, int);\n# endif\n/* #elif defined other_platform || defined ... */\n#endif\n\n/* portability defines, excluding path handling macros */\n#if defined _MSC_VER\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n# define S_IXUSR _S_IEXEC\n#elif defined __MINGW32__\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n#elif defined __CYGWIN__\n# define HAVE_SETENV\n# define FOPEN_WB \"wb\"\n/* #elif defined other platforms ... */\n#endif\n\n#if defined PATH_MAX\n# define LT_PATHMAX PATH_MAX\n#elif defined MAXPATHLEN\n# define LT_PATHMAX MAXPATHLEN\n#else\n# define LT_PATHMAX 1024\n#endif\n\n#ifndef S_IXOTH\n# define S_IXOTH 0\n#endif\n#ifndef S_IXGRP\n# define S_IXGRP 0\n#endif\n\n/* path handling portability macros */\n#ifndef DIR_SEPARATOR\n# define DIR_SEPARATOR '/'\n# define PATH_SEPARATOR ':'\n#endif\n\n#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \\\n  defined __OS2__\n# define HAVE_DOS_BASED_FILE_SYSTEM\n# define FOPEN_WB \"wb\"\n# ifndef DIR_SEPARATOR_2\n#  define DIR_SEPARATOR_2 '\\\\'\n# endif\n# ifndef PATH_SEPARATOR_2\n#  define PATH_SEPARATOR_2 ';'\n# endif\n#endif\n\n#ifndef DIR_SEPARATOR_2\n# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)\n#else /* DIR_SEPARATOR_2 */\n# define IS_DIR_SEPARATOR(ch) \\\n\t(((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))\n#endif /* DIR_SEPARATOR_2 */\n\n#ifndef PATH_SEPARATOR_2\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)\n#else /* PATH_SEPARATOR_2 */\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)\n#endif /* PATH_SEPARATOR_2 */\n\n#ifndef FOPEN_WB\n# define FOPEN_WB \"w\"\n#endif\n#ifndef _O_BINARY\n# define _O_BINARY 0\n#endif\n\n#define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))\n#define XFREE(stale) do { \\\n  if (stale) { free (stale); stale = 0; } \\\n} while (0)\n\n#if defined LT_DEBUGWRAPPER\nstatic int lt_debug = 1;\n#else\nstatic int lt_debug = 0;\n#endif\n\nconst char *program_name = \"libtool-wrapper\"; /* in case xstrdup fails */\n\nvoid *xmalloc (size_t num);\nchar *xstrdup (const char *string);\nconst char *base_name (const char *name);\nchar *find_executable (const char *wrapper);\nchar *chase_symlinks (const char *pathspec);\nint make_executable (const char *path);\nint check_executable (const char *path);\nchar *strendzap (char *str, const char *pat);\nvoid lt_debugprintf (const char *file, int line, const char *fmt, ...);\nvoid lt_fatal (const char *file, int line, const char *message, ...);\nstatic const char *nonnull (const char *s);\nstatic const char *nonempty (const char *s);\nvoid lt_setenv (const char *name, const char *value);\nchar *lt_extend_str (const char *orig_value, const char *add, int to_end);\nvoid lt_update_exe_path (const char *name, const char *value);\nvoid lt_update_lib_path (const char *name, const char *value);\nchar **prepare_spawn (char **argv);\nvoid lt_dump_script (FILE *f);\nEOF\n\n\t    cat <<EOF\n#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5)\n# define externally_visible volatile\n#else\n# define externally_visible __attribute__((externally_visible)) volatile\n#endif\nexternally_visible const char * MAGIC_EXE = \"$magic_exe\";\nconst char * LIB_PATH_VARNAME = \"$shlibpath_var\";\nEOF\n\n\t    if test yes = \"$shlibpath_overrides_runpath\" && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n              func_to_host_path \"$temp_rpath\"\n\t      cat <<EOF\nconst char * LIB_PATH_VALUE   = \"$func_to_host_path_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * LIB_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test -n \"$dllsearchpath\"; then\n              func_to_host_path \"$dllsearchpath:\"\n\t      cat <<EOF\nconst char * EXE_PATH_VARNAME = \"PATH\";\nconst char * EXE_PATH_VALUE   = \"$func_to_host_path_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * EXE_PATH_VARNAME = \"\";\nconst char * EXE_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test yes = \"$fast_install\"; then\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"lt-$outputname\"; /* hopefully, no .exe */\nEOF\n\t    else\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"$outputname\"; /* hopefully, no .exe */\nEOF\n\t    fi\n\n\n\t    cat <<\"EOF\"\n\n#define LTWRAPPER_OPTION_PREFIX         \"--lt-\"\n\nstatic const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;\nstatic const char *dumpscript_opt       = LTWRAPPER_OPTION_PREFIX \"dump-script\";\nstatic const char *debug_opt            = LTWRAPPER_OPTION_PREFIX \"debug\";\n\nint\nmain (int argc, char *argv[])\n{\n  char **newargz;\n  int  newargc;\n  char *tmp_pathspec;\n  char *actual_cwrapper_path;\n  char *actual_cwrapper_name;\n  char *target_name;\n  char *lt_argv_zero;\n  int rval = 127;\n\n  int i;\n\n  program_name = (char *) xstrdup (base_name (argv[0]));\n  newargz = XMALLOC (char *, (size_t) argc + 1);\n\n  /* very simple arg parsing; don't want to rely on getopt\n   * also, copy all non cwrapper options to newargz, except\n   * argz[0], which is handled differently\n   */\n  newargc=0;\n  for (i = 1; i < argc; i++)\n    {\n      if (STREQ (argv[i], dumpscript_opt))\n\t{\nEOF\n\t    case $host in\n\t      *mingw* | *cygwin* )\n\t\t# make stdout use \"unix\" line endings\n\t\techo \"          setmode(1,_O_BINARY);\"\n\t\t;;\n\t      esac\n\n\t    cat <<\"EOF\"\n\t  lt_dump_script (stdout);\n\t  return 0;\n\t}\n      if (STREQ (argv[i], debug_opt))\n\t{\n          lt_debug = 1;\n          continue;\n\t}\n      if (STREQ (argv[i], ltwrapper_option_prefix))\n        {\n          /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX\n             namespace, but it is not one of the ones we know about and\n             have already dealt with, above (inluding dump-script), then\n             report an error. Otherwise, targets might begin to believe\n             they are allowed to use options in the LTWRAPPER_OPTION_PREFIX\n             namespace. The first time any user complains about this, we'll\n             need to make LTWRAPPER_OPTION_PREFIX a configure-time option\n             or a configure.ac-settable value.\n           */\n          lt_fatal (__FILE__, __LINE__,\n\t\t    \"unrecognized %s option: '%s'\",\n                    ltwrapper_option_prefix, argv[i]);\n        }\n      /* otherwise ... */\n      newargz[++newargc] = xstrdup (argv[i]);\n    }\n  newargz[++newargc] = NULL;\n\nEOF\n\t    cat <<EOF\n  /* The GNU banner must be the first non-error debug message */\n  lt_debugprintf (__FILE__, __LINE__, \"libtool wrapper (GNU $PACKAGE) $VERSION\\n\");\nEOF\n\t    cat <<\"EOF\"\n  lt_debugprintf (__FILE__, __LINE__, \"(main) argv[0]: %s\\n\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__, \"(main) program_name: %s\\n\", program_name);\n\n  tmp_pathspec = find_executable (argv[0]);\n  if (tmp_pathspec == NULL)\n    lt_fatal (__FILE__, __LINE__, \"couldn't find %s\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (before symlink chase) at: %s\\n\",\n\t\t  tmp_pathspec);\n\n  actual_cwrapper_path = chase_symlinks (tmp_pathspec);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (after symlink chase) at: %s\\n\",\n\t\t  actual_cwrapper_path);\n  XFREE (tmp_pathspec);\n\n  actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));\n  strendzap (actual_cwrapper_path, actual_cwrapper_name);\n\n  /* wrapper name transforms */\n  strendzap (actual_cwrapper_name, \".exe\");\n  tmp_pathspec = lt_extend_str (actual_cwrapper_name, \".exe\", 1);\n  XFREE (actual_cwrapper_name);\n  actual_cwrapper_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  /* target_name transforms -- use actual target program name; might have lt- prefix */\n  target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));\n  strendzap (target_name, \".exe\");\n  tmp_pathspec = lt_extend_str (target_name, \".exe\", 1);\n  XFREE (target_name);\n  target_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(main) libtool target name: %s\\n\",\n\t\t  target_name);\nEOF\n\n\t    cat <<EOF\n  newargz[0] =\n    XMALLOC (char, (strlen (actual_cwrapper_path) +\n\t\t    strlen (\"$objdir\") + 1 + strlen (actual_cwrapper_name) + 1));\n  strcpy (newargz[0], actual_cwrapper_path);\n  strcat (newargz[0], \"$objdir\");\n  strcat (newargz[0], \"/\");\nEOF\n\n\t    cat <<\"EOF\"\n  /* stop here, and copy so we don't have to do this twice */\n  tmp_pathspec = xstrdup (newargz[0]);\n\n  /* do NOT want the lt- prefix here, so use actual_cwrapper_name */\n  strcat (newargz[0], actual_cwrapper_name);\n\n  /* DO want the lt- prefix here if it exists, so use target_name */\n  lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);\n  XFREE (tmp_pathspec);\n  tmp_pathspec = NULL;\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t    cat <<\"EOF\"\n  {\n    char* p;\n    while ((p = strchr (newargz[0], '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n    while ((p = strchr (lt_argv_zero, '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n  }\nEOF\n\t    ;;\n\t    esac\n\n\t    cat <<\"EOF\"\n  XFREE (target_name);\n  XFREE (actual_cwrapper_path);\n  XFREE (actual_cwrapper_name);\n\n  lt_setenv (\"BIN_SH\", \"xpg4\"); /* for Tru64 */\n  lt_setenv (\"DUALCASE\", \"1\");  /* for MSK sh */\n  /* Update the DLL searchpath.  EXE_PATH_VALUE ($dllsearchpath) must\n     be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)\n     because on Windows, both *_VARNAMEs are PATH but uninstalled\n     libraries must come first. */\n  lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);\n  lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);\n\n  lt_debugprintf (__FILE__, __LINE__, \"(main) lt_argv_zero: %s\\n\",\n\t\t  nonnull (lt_argv_zero));\n  for (i = 0; i < newargc; i++)\n    {\n      lt_debugprintf (__FILE__, __LINE__, \"(main) newargz[%d]: %s\\n\",\n\t\t      i, nonnull (newargz[i]));\n    }\n\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n  /* execv doesn't actually work on mingw as expected on unix */\n  newargz = prepare_spawn (newargz);\n  rval = (int) _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);\n  if (rval == -1)\n    {\n      /* failed to start process */\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"(main) failed to launch target \\\"%s\\\": %s\\n\",\n\t\t      lt_argv_zero, nonnull (strerror (errno)));\n      return 127;\n    }\n  return rval;\nEOF\n\t\t;;\n\t      *)\n\t\tcat <<\"EOF\"\n  execv (lt_argv_zero, newargz);\n  return rval; /* =127, but avoids unused variable warning */\nEOF\n\t\t;;\n\t    esac\n\n\t    cat <<\"EOF\"\n}\n\nvoid *\nxmalloc (size_t num)\n{\n  void *p = (void *) malloc (num);\n  if (!p)\n    lt_fatal (__FILE__, __LINE__, \"memory exhausted\");\n\n  return p;\n}\n\nchar *\nxstrdup (const char *string)\n{\n  return string ? strcpy ((char *) xmalloc (strlen (string) + 1),\n\t\t\t  string) : NULL;\n}\n\nconst char *\nbase_name (const char *name)\n{\n  const char *base;\n\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n  /* Skip over the disk name in MSDOS pathnames. */\n  if (isalpha ((unsigned char) name[0]) && name[1] == ':')\n    name += 2;\n#endif\n\n  for (base = name; *name; name++)\n    if (IS_DIR_SEPARATOR (*name))\n      base = name + 1;\n  return base;\n}\n\nint\ncheck_executable (const char *path)\n{\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(check_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if ((stat (path, &st) >= 0)\n      && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))\n    return 1;\n  else\n    return 0;\n}\n\nint\nmake_executable (const char *path)\n{\n  int rval = 0;\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(make_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if (stat (path, &st) >= 0)\n    {\n      rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);\n    }\n  return rval;\n}\n\n/* Searches for the full path of the wrapper.  Returns\n   newly allocated full path name if found, NULL otherwise\n   Does not chase symlinks, even on platforms that support them.\n*/\nchar *\nfind_executable (const char *wrapper)\n{\n  int has_slash = 0;\n  const char *p;\n  const char *p_next;\n  /* static buffer for getcwd */\n  char tmp[LT_PATHMAX + 1];\n  size_t tmp_len;\n  char *concat_name;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(find_executable): %s\\n\",\n                  nonempty (wrapper));\n\n  if ((wrapper == NULL) || (*wrapper == '\\0'))\n    return NULL;\n\n  /* Absolute path? */\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n  if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')\n    {\n      concat_name = xstrdup (wrapper);\n      if (check_executable (concat_name))\n\treturn concat_name;\n      XFREE (concat_name);\n    }\n  else\n    {\n#endif\n      if (IS_DIR_SEPARATOR (wrapper[0]))\n\t{\n\t  concat_name = xstrdup (wrapper);\n\t  if (check_executable (concat_name))\n\t    return concat_name;\n\t  XFREE (concat_name);\n\t}\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n    }\n#endif\n\n  for (p = wrapper; *p; p++)\n    if (*p == '/')\n      {\n\thas_slash = 1;\n\tbreak;\n      }\n  if (!has_slash)\n    {\n      /* no slashes; search PATH */\n      const char *path = getenv (\"PATH\");\n      if (path != NULL)\n\t{\n\t  for (p = path; *p; p = p_next)\n\t    {\n\t      const char *q;\n\t      size_t p_len;\n\t      for (q = p; *q; q++)\n\t\tif (IS_PATH_SEPARATOR (*q))\n\t\t  break;\n\t      p_len = (size_t) (q - p);\n\t      p_next = (*q == '\\0' ? q : q + 1);\n\t      if (p_len == 0)\n\t\t{\n\t\t  /* empty path: current directory */\n\t\t  if (getcwd (tmp, LT_PATHMAX) == NULL)\n\t\t    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n                              nonnull (strerror (errno)));\n\t\t  tmp_len = strlen (tmp);\n\t\t  concat_name =\n\t\t    XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, tmp, tmp_len);\n\t\t  concat_name[tmp_len] = '/';\n\t\t  strcpy (concat_name + tmp_len + 1, wrapper);\n\t\t}\n\t      else\n\t\t{\n\t\t  concat_name =\n\t\t    XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, p, p_len);\n\t\t  concat_name[p_len] = '/';\n\t\t  strcpy (concat_name + p_len + 1, wrapper);\n\t\t}\n\t      if (check_executable (concat_name))\n\t\treturn concat_name;\n\t      XFREE (concat_name);\n\t    }\n\t}\n      /* not found in PATH; assume curdir */\n    }\n  /* Relative path | not found in path: prepend cwd */\n  if (getcwd (tmp, LT_PATHMAX) == NULL)\n    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n              nonnull (strerror (errno)));\n  tmp_len = strlen (tmp);\n  concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n  memcpy (concat_name, tmp, tmp_len);\n  concat_name[tmp_len] = '/';\n  strcpy (concat_name + tmp_len + 1, wrapper);\n\n  if (check_executable (concat_name))\n    return concat_name;\n  XFREE (concat_name);\n  return NULL;\n}\n\nchar *\nchase_symlinks (const char *pathspec)\n{\n#ifndef S_ISLNK\n  return xstrdup (pathspec);\n#else\n  char buf[LT_PATHMAX];\n  struct stat s;\n  char *tmp_pathspec = xstrdup (pathspec);\n  char *p;\n  int has_symlinks = 0;\n  while (strlen (tmp_pathspec) && !has_symlinks)\n    {\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"checking path component for symlinks: %s\\n\",\n\t\t      tmp_pathspec);\n      if (lstat (tmp_pathspec, &s) == 0)\n\t{\n\t  if (S_ISLNK (s.st_mode) != 0)\n\t    {\n\t      has_symlinks = 1;\n\t      break;\n\t    }\n\n\t  /* search backwards for last DIR_SEPARATOR */\n\t  p = tmp_pathspec + strlen (tmp_pathspec) - 1;\n\t  while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    p--;\n\t  if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    {\n\t      /* no more DIR_SEPARATORS left */\n\t      break;\n\t    }\n\t  *p = '\\0';\n\t}\n      else\n\t{\n\t  lt_fatal (__FILE__, __LINE__,\n\t\t    \"error accessing file \\\"%s\\\": %s\",\n\t\t    tmp_pathspec, nonnull (strerror (errno)));\n\t}\n    }\n  XFREE (tmp_pathspec);\n\n  if (!has_symlinks)\n    {\n      return xstrdup (pathspec);\n    }\n\n  tmp_pathspec = realpath (pathspec, buf);\n  if (tmp_pathspec == 0)\n    {\n      lt_fatal (__FILE__, __LINE__,\n\t\t\"could not follow symlinks for %s\", pathspec);\n    }\n  return xstrdup (tmp_pathspec);\n#endif\n}\n\nchar *\nstrendzap (char *str, const char *pat)\n{\n  size_t len, patlen;\n\n  assert (str != NULL);\n  assert (pat != NULL);\n\n  len = strlen (str);\n  patlen = strlen (pat);\n\n  if (patlen <= len)\n    {\n      str += len - patlen;\n      if (STREQ (str, pat))\n\t*str = '\\0';\n    }\n  return str;\n}\n\nvoid\nlt_debugprintf (const char *file, int line, const char *fmt, ...)\n{\n  va_list args;\n  if (lt_debug)\n    {\n      (void) fprintf (stderr, \"%s:%s:%d: \", program_name, file, line);\n      va_start (args, fmt);\n      (void) vfprintf (stderr, fmt, args);\n      va_end (args);\n    }\n}\n\nstatic void\nlt_error_core (int exit_status, const char *file,\n\t       int line, const char *mode,\n\t       const char *message, va_list ap)\n{\n  fprintf (stderr, \"%s:%s:%d: %s: \", program_name, file, line, mode);\n  vfprintf (stderr, message, ap);\n  fprintf (stderr, \".\\n\");\n\n  if (exit_status >= 0)\n    exit (exit_status);\n}\n\nvoid\nlt_fatal (const char *file, int line, const char *message, ...)\n{\n  va_list ap;\n  va_start (ap, message);\n  lt_error_core (EXIT_FAILURE, file, line, \"FATAL\", message, ap);\n  va_end (ap);\n}\n\nstatic const char *\nnonnull (const char *s)\n{\n  return s ? s : \"(null)\";\n}\n\nstatic const char *\nnonempty (const char *s)\n{\n  return (s && !*s) ? \"(empty)\" : nonnull (s);\n}\n\nvoid\nlt_setenv (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_setenv) setting '%s' to '%s'\\n\",\n                  nonnull (name), nonnull (value));\n  {\n#ifdef HAVE_SETENV\n    /* always make a copy, for consistency with !HAVE_SETENV */\n    char *str = xstrdup (value);\n    setenv (name, str, 1);\n#else\n    size_t len = strlen (name) + 1 + strlen (value) + 1;\n    char *str = XMALLOC (char, len);\n    sprintf (str, \"%s=%s\", name, value);\n    if (putenv (str) != EXIT_SUCCESS)\n      {\n        XFREE (str);\n      }\n#endif\n  }\n}\n\nchar *\nlt_extend_str (const char *orig_value, const char *add, int to_end)\n{\n  char *new_value;\n  if (orig_value && *orig_value)\n    {\n      size_t orig_value_len = strlen (orig_value);\n      size_t add_len = strlen (add);\n      new_value = XMALLOC (char, add_len + orig_value_len + 1);\n      if (to_end)\n        {\n          strcpy (new_value, orig_value);\n          strcpy (new_value + orig_value_len, add);\n        }\n      else\n        {\n          strcpy (new_value, add);\n          strcpy (new_value + add_len, orig_value);\n        }\n    }\n  else\n    {\n      new_value = xstrdup (add);\n    }\n  return new_value;\n}\n\nvoid\nlt_update_exe_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_exe_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      /* some systems can't cope with a ':'-terminated path #' */\n      size_t len = strlen (new_value);\n      while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1]))\n        {\n          new_value[--len] = '\\0';\n        }\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nvoid\nlt_update_lib_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_lib_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nEOF\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n\n/* Prepares an argument vector before calling spawn().\n   Note that spawn() does not by itself call the command interpreter\n     (getenv (\"COMSPEC\") != NULL ? getenv (\"COMSPEC\") :\n      ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);\n         GetVersionEx(&v);\n         v.dwPlatformId == VER_PLATFORM_WIN32_NT;\n      }) ? \"cmd.exe\" : \"command.com\").\n   Instead it simply concatenates the arguments, separated by ' ', and calls\n   CreateProcess().  We must quote the arguments since Win32 CreateProcess()\n   interprets characters like ' ', '\\t', '\\\\', '\"' (but not '<' and '>') in a\n   special way:\n   - Space and tab are interpreted as delimiters. They are not treated as\n     delimiters if they are surrounded by double quotes: \"...\".\n   - Unescaped double quotes are removed from the input. Their only effect is\n     that within double quotes, space and tab are treated like normal\n     characters.\n   - Backslashes not followed by double quotes are not special.\n   - But 2*n+1 backslashes followed by a double quote become\n     n backslashes followed by a double quote (n >= 0):\n       \\\" -> \"\n       \\\\\\\" -> \\\"\n       \\\\\\\\\\\" -> \\\\\"\n */\n#define SHELL_SPECIAL_CHARS \"\\\"\\\\ \\001\\002\\003\\004\\005\\006\\007\\010\\011\\012\\013\\014\\015\\016\\017\\020\\021\\022\\023\\024\\025\\026\\027\\030\\031\\032\\033\\034\\035\\036\\037\"\n#define SHELL_SPACE_CHARS \" \\001\\002\\003\\004\\005\\006\\007\\010\\011\\012\\013\\014\\015\\016\\017\\020\\021\\022\\023\\024\\025\\026\\027\\030\\031\\032\\033\\034\\035\\036\\037\"\nchar **\nprepare_spawn (char **argv)\n{\n  size_t argc;\n  char **new_argv;\n  size_t i;\n\n  /* Count number of arguments.  */\n  for (argc = 0; argv[argc] != NULL; argc++)\n    ;\n\n  /* Allocate new argument vector.  */\n  new_argv = XMALLOC (char *, argc + 1);\n\n  /* Put quoted arguments into the new argument vector.  */\n  for (i = 0; i < argc; i++)\n    {\n      const char *string = argv[i];\n\n      if (string[0] == '\\0')\n\tnew_argv[i] = xstrdup (\"\\\"\\\"\");\n      else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)\n\t{\n\t  int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);\n\t  size_t length;\n\t  unsigned int backslashes;\n\t  const char *s;\n\t  char *quoted_string;\n\t  char *p;\n\n\t  length = 0;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    length++;\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\tlength += backslashes + 1;\n\t      length++;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    length += backslashes + 1;\n\n\t  quoted_string = XMALLOC (char, length + 1);\n\n\t  p = quoted_string;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    *p++ = '\"';\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\t{\n\t\t  unsigned int j;\n\t\t  for (j = backslashes + 1; j > 0; j--)\n\t\t    *p++ = '\\\\';\n\t\t}\n\t      *p++ = c;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    {\n\t      unsigned int j;\n\t      for (j = backslashes; j > 0; j--)\n\t\t*p++ = '\\\\';\n\t      *p++ = '\"';\n\t    }\n\t  *p = '\\0';\n\n\t  new_argv[i] = quoted_string;\n\t}\n      else\n\tnew_argv[i] = (char *) string;\n    }\n  new_argv[argc] = NULL;\n\n  return new_argv;\n}\nEOF\n\t\t;;\n\t    esac\n\n            cat <<\"EOF\"\nvoid lt_dump_script (FILE* f)\n{\nEOF\n\t    func_emit_wrapper yes |\n\t      $SED -n -e '\ns/^\\(.\\{79\\}\\)\\(..*\\)/\\1\\\n\\2/\nh\ns/\\([\\\\\"]\\)/\\\\\\1/g\ns/$/\\\\n/\ns/\\([^\\n]*\\).*/  fputs (\"\\1\", f);/p\ng\nD'\n            cat <<\"EOF\"\n}\nEOF\n}\n# end: func_emit_cwrapperexe_src\n\n# func_win32_import_lib_p ARG\n# True if ARG is an import lib, as indicated by $file_magic_cmd\nfunc_win32_import_lib_p ()\n{\n    $debug_cmd\n\n    case `eval $file_magic_cmd \\\"\\$1\\\" 2>/dev/null | $SED -e 10q` in\n    *import*) : ;;\n    *) false ;;\n    esac\n}\n\n# func_suncc_cstd_abi\n# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!!\n# Several compiler flags select an ABI that is incompatible with the\n# Cstd library. Avoid specifying it if any are in CXXFLAGS.\nfunc_suncc_cstd_abi ()\n{\n    $debug_cmd\n\n    case \" $compile_command \" in\n    *\" -compat=g \"*|*\\ -std=c++[0-9][0-9]\\ *|*\" -library=stdcxx4 \"*|*\" -library=stlport4 \"*)\n      suncc_use_cstd_abi=no\n      ;;\n    *)\n      suncc_use_cstd_abi=yes\n      ;;\n    esac\n}\n\n# func_mode_link arg...\nfunc_mode_link ()\n{\n    $debug_cmd\n\n    case $host in\n    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n      # It is impossible to link a dll without this setting, and\n      # we shouldn't force the makefile maintainer to figure out\n      # what system we are compiling for in order to pass an extra\n      # flag for every libtool invocation.\n      # allow_undefined=no\n\n      # FIXME: Unfortunately, there are problems with the above when trying\n      # to make a dll that has undefined symbols, in which case not\n      # even a static library is built.  For now, we need to specify\n      # -no-undefined on the libtool link line when we can be certain\n      # that all symbols are satisfied, otherwise we get a static library.\n      allow_undefined=yes\n      ;;\n    *)\n      allow_undefined=yes\n      ;;\n    esac\n    libtool_args=$nonopt\n    base_compile=\"$nonopt $@\"\n    compile_command=$nonopt\n    finalize_command=$nonopt\n\n    compile_rpath=\n    finalize_rpath=\n    compile_shlibpath=\n    finalize_shlibpath=\n    convenience=\n    old_convenience=\n    deplibs=\n    old_deplibs=\n    compiler_flags=\n    linker_flags=\n    dllsearchpath=\n    lib_search_path=`pwd`\n    inst_prefix_dir=\n    new_inherited_linker_flags=\n\n    avoid_version=no\n    bindir=\n    dlfiles=\n    dlprefiles=\n    dlself=no\n    export_dynamic=no\n    export_symbols=\n    export_symbols_regex=\n    generated=\n    libobjs=\n    ltlibs=\n    module=no\n    no_install=no\n    objs=\n    os2dllname=\n    non_pic_objects=\n    precious_files_regex=\n    prefer_static_libs=no\n    preload=false\n    prev=\n    prevarg=\n    release=\n    rpath=\n    xrpath=\n    perm_rpath=\n    temp_rpath=\n    thread_safe=no\n    vinfo=\n    vinfo_number=no\n    weak_libs=\n    single_module=$wl-single_module\n    func_infer_tag $base_compile\n\n    # We need to know -static, to get the right output filenames.\n    for arg\n    do\n      case $arg in\n      -shared)\n\ttest yes != \"$build_libtool_libs\" \\\n\t  && func_fatal_configuration \"cannot build a shared library\"\n\tbuild_old_libs=no\n\tbreak\n\t;;\n      -all-static | -static | -static-libtool-libs)\n\tcase $arg in\n\t-all-static)\n\t  if test yes = \"$build_libtool_libs\" && test -z \"$link_static_flag\"; then\n\t    func_warning \"complete static linking is impossible in this configuration\"\n\t  fi\n\t  if test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\t-static)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=built\n\t  ;;\n\t-static-libtool-libs)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\tesac\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tbreak\n\t;;\n      esac\n    done\n\n    # See if our shared archives depend on static archives.\n    test -n \"$old_archive_from_new_cmds\" && build_old_libs=yes\n\n    # Go through the arguments, transforming them on the way.\n    while test \"$#\" -gt 0; do\n      arg=$1\n      shift\n      func_quote_for_eval \"$arg\"\n      qarg=$func_quote_for_eval_unquoted_result\n      func_append libtool_args \" $func_quote_for_eval_result\"\n\n      # If the previous option needs an argument, assign it.\n      if test -n \"$prev\"; then\n\tcase $prev in\n\toutput)\n\t  func_append compile_command \" @OUTPUT@\"\n\t  func_append finalize_command \" @OUTPUT@\"\n\t  ;;\n\tesac\n\n\tcase $prev in\n\tbindir)\n\t  bindir=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tdlfiles|dlprefiles)\n\t  $preload || {\n\t    # Add the symbol object into the linking commands.\n\t    func_append compile_command \" @SYMFILE@\"\n\t    func_append finalize_command \" @SYMFILE@\"\n\t    preload=:\n\t  }\n\t  case $arg in\n\t  *.la | *.lo) ;;  # We handle these cases below.\n\t  force)\n\t    if test no = \"$dlself\"; then\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  self)\n\t    if test dlprefiles = \"$prev\"; then\n\t      dlself=yes\n\t    elif test dlfiles = \"$prev\" && test yes != \"$dlopen_self\"; then\n\t      dlself=yes\n\t    else\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  *)\n\t    if test dlfiles = \"$prev\"; then\n\t      func_append dlfiles \" $arg\"\n\t    else\n\t      func_append dlprefiles \" $arg\"\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  esac\n\t  ;;\n\texpsyms)\n\t  export_symbols=$arg\n\t  test -f \"$arg\" \\\n\t    || func_fatal_error \"symbol file '$arg' does not exist\"\n\t  prev=\n\t  continue\n\t  ;;\n\texpsyms_regex)\n\t  export_symbols_regex=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tframework)\n\t  case $host in\n\t    *-*-darwin*)\n\t      case \"$deplibs \" in\n\t\t*\" $qarg.ltframework \"*) ;;\n\t\t*) func_append deplibs \" $qarg.ltframework\" # this is fixed later\n\t\t   ;;\n\t      esac\n\t      ;;\n\t  esac\n\t  prev=\n\t  continue\n\t  ;;\n\tinst_prefix)\n\t  inst_prefix_dir=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tmllvm)\n\t  # Clang does not use LLVM to link, so we can simply discard any\n\t  # '-mllvm $arg' options when doing the link step.\n\t  prev=\n\t  continue\n\t  ;;\n\tobjectlist)\n\t  if test -f \"$arg\"; then\n\t    save_arg=$arg\n\t    moreargs=\n\t    for fil in `cat \"$save_arg\"`\n\t    do\n#\t      func_append moreargs \" $fil\"\n\t      arg=$fil\n\t      # A libtool-controlled object.\n\n\t      # Check to see that this really is a libtool object.\n\t      if func_lalib_unsafe_p \"$arg\"; then\n\t\tpic_object=\n\t\tnon_pic_object=\n\n\t\t# Read the .lo file\n\t\tfunc_source \"$arg\"\n\n\t\tif test -z \"$pic_object\" ||\n\t\t   test -z \"$non_pic_object\" ||\n\t\t   test none = \"$pic_object\" &&\n\t\t   test none = \"$non_pic_object\"; then\n\t\t  func_fatal_error \"cannot find name of object for '$arg'\"\n\t\tfi\n\n\t\t# Extract subdirectory from the argument.\n\t\tfunc_dirname \"$arg\" \"/\" \"\"\n\t\txdir=$func_dirname_result\n\n\t\tif test none != \"$pic_object\"; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  pic_object=$xdir$pic_object\n\n\t\t  if test dlfiles = \"$prev\"; then\n\t\t    if test yes = \"$build_libtool_libs\" && test yes = \"$dlopen_support\"; then\n\t\t      func_append dlfiles \" $pic_object\"\n\t\t      prev=\n\t\t      continue\n\t\t    else\n\t\t      # If libtool objects are unsupported, then we need to preload.\n\t\t      prev=dlprefiles\n\t\t    fi\n\t\t  fi\n\n\t\t  # CHECK ME:  I think I busted this.  -Ossama\n\t\t  if test dlprefiles = \"$prev\"; then\n\t\t    # Preload the old-style object.\n\t\t    func_append dlprefiles \" $pic_object\"\n\t\t    prev=\n\t\t  fi\n\n\t\t  # A PIC object.\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  arg=$pic_object\n\t\tfi\n\n\t\t# Non-PIC object.\n\t\tif test none != \"$non_pic_object\"; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  non_pic_object=$xdir$non_pic_object\n\n\t\t  # A standard non-PIC object\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\t  if test -z \"$pic_object\" || test none = \"$pic_object\"; then\n\t\t    arg=$non_pic_object\n\t\t  fi\n\t\telse\n\t\t  # If the PIC object exists, use it instead.\n\t\t  # $xdir was prepended to $pic_object above.\n\t\t  non_pic_object=$pic_object\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\tfi\n\t      else\n\t\t# Only an error if not doing a dry-run.\n\t\tif $opt_dry_run; then\n\t\t  # Extract subdirectory from the argument.\n\t\t  func_dirname \"$arg\" \"/\" \"\"\n\t\t  xdir=$func_dirname_result\n\n\t\t  func_lo2o \"$arg\"\n\t\t  pic_object=$xdir$objdir/$func_lo2o_result\n\t\t  non_pic_object=$xdir$func_lo2o_result\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t        else\n\t\t  func_fatal_error \"'$arg' is not a valid libtool object\"\n\t\tfi\n\t      fi\n\t    done\n\t  else\n\t    func_fatal_error \"link input file '$arg' does not exist\"\n\t  fi\n\t  arg=$save_arg\n\t  prev=\n\t  continue\n\t  ;;\n\tos2dllname)\n\t  os2dllname=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tprecious_regex)\n\t  precious_files_regex=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\trelease)\n\t  release=-$arg\n\t  prev=\n\t  continue\n\t  ;;\n\trpath | xrpath)\n\t  # We need an absolute path.\n\t  case $arg in\n\t  [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t  *)\n\t    func_fatal_error \"only absolute run-paths are allowed\"\n\t    ;;\n\t  esac\n\t  if test rpath = \"$prev\"; then\n\t    case \"$rpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) func_append rpath \" $arg\" ;;\n\t    esac\n\t  else\n\t    case \"$xrpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) func_append xrpath \" $arg\" ;;\n\t    esac\n\t  fi\n\t  prev=\n\t  continue\n\t  ;;\n\tshrext)\n\t  shrext_cmds=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tweak)\n\t  func_append weak_libs \" $arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\txcclinker)\n\t  func_append linker_flags \" $qarg\"\n\t  func_append compiler_flags \" $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txcompiler)\n\t  func_append compiler_flags \" $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txlinker)\n\t  func_append linker_flags \" $qarg\"\n\t  func_append compiler_flags \" $wl$qarg\"\n\t  prev=\n\t  func_append compile_command \" $wl$qarg\"\n\t  func_append finalize_command \" $wl$qarg\"\n\t  continue\n\t  ;;\n\t*)\n\t  eval \"$prev=\\\"\\$arg\\\"\"\n\t  prev=\n\t  continue\n\t  ;;\n\tesac\n      fi # test -n \"$prev\"\n\n      prevarg=$arg\n\n      case $arg in\n      -all-static)\n\tif test -n \"$link_static_flag\"; then\n\t  # See comment for -static flag below, for more details.\n\t  func_append compile_command \" $link_static_flag\"\n\t  func_append finalize_command \" $link_static_flag\"\n\tfi\n\tcontinue\n\t;;\n\n      -allow-undefined)\n\t# FIXME: remove this flag sometime in the future.\n\tfunc_fatal_error \"'-allow-undefined' must not be used because it is the default\"\n\t;;\n\n      -avoid-version)\n\tavoid_version=yes\n\tcontinue\n\t;;\n\n      -bindir)\n\tprev=bindir\n\tcontinue\n\t;;\n\n      -dlopen)\n\tprev=dlfiles\n\tcontinue\n\t;;\n\n      -dlpreopen)\n\tprev=dlprefiles\n\tcontinue\n\t;;\n\n      -export-dynamic)\n\texport_dynamic=yes\n\tcontinue\n\t;;\n\n      -export-symbols | -export-symbols-regex)\n\tif test -n \"$export_symbols\" || test -n \"$export_symbols_regex\"; then\n\t  func_fatal_error \"more than one -exported-symbols argument is not allowed\"\n\tfi\n\tif test X-export-symbols = \"X$arg\"; then\n\t  prev=expsyms\n\telse\n\t  prev=expsyms_regex\n\tfi\n\tcontinue\n\t;;\n\n      -framework)\n\tprev=framework\n\tcontinue\n\t;;\n\n      -inst-prefix-dir)\n\tprev=inst_prefix\n\tcontinue\n\t;;\n\n      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*\n      # so, if we see these flags be careful not to treat them like -L\n      -L[A-Z][A-Z]*:*)\n\tcase $with_gcc/$host in\n\tno/*-*-irix* | /*-*-irix*)\n\t  func_append compile_command \" $arg\"\n\t  func_append finalize_command \" $arg\"\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -L*)\n\tfunc_stripname \"-L\" '' \"$arg\"\n\tif test -z \"$func_stripname_result\"; then\n\t  if test \"$#\" -gt 0; then\n\t    func_fatal_error \"require no space between '-L' and '$1'\"\n\t  else\n\t    func_fatal_error \"need path for '-L' option\"\n\t  fi\n\tfi\n\tfunc_resolve_sysroot \"$func_stripname_result\"\n\tdir=$func_resolve_sysroot_result\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t*)\n\t  absdir=`cd \"$dir\" && pwd`\n\t  test -z \"$absdir\" && \\\n\t    func_fatal_error \"cannot determine absolute directory name of '$dir'\"\n\t  dir=$absdir\n\t  ;;\n\tesac\n\tcase \"$deplibs \" in\n\t*\" -L$dir \"* | *\" $arg \"*)\n\t  # Will only happen for absolute or sysroot arguments\n\t  ;;\n\t*)\n\t  # Preserve sysroot, but never include relative directories\n\t  case $dir in\n\t    [\\\\/]* | [A-Za-z]:[\\\\/]* | =*) func_append deplibs \" $arg\" ;;\n\t    *) func_append deplibs \" -L$dir\" ;;\n\t  esac\n\t  func_append lib_search_path \" $dir\"\n\t  ;;\n\tesac\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`$ECHO \"$dir\" | $SED 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$dir:\"*) ;;\n\t  ::) dllsearchpath=$dir;;\n\t  *) func_append dllsearchpath \":$dir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) func_append dllsearchpath \":$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -l*)\n\tif test X-lc = \"X$arg\" || test X-lm = \"X$arg\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # These systems don't actually have a C or math library (as such)\n\t    continue\n\t    ;;\n\t  *-*-os2*)\n\t    # These systems don't actually have a C library (as such)\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C and math libraries are in the System framework\n\t    func_append deplibs \" System.ltframework\"\n\t    continue\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  esac\n\telif test X-lc_r = \"X$arg\"; then\n\t case $host in\n\t *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)\n\t   # Do not include libc_r directly, use -pthread flag.\n\t   continue\n\t   ;;\n\t esac\n\tfi\n\tfunc_append deplibs \" $arg\"\n\tcontinue\n\t;;\n\n      -mllvm)\n\tprev=mllvm\n\tcontinue\n\t;;\n\n      -module)\n\tmodule=yes\n\tcontinue\n\t;;\n\n      # Tru64 UNIX uses -model [arg] to determine the layout of C++\n      # classes, name mangling, and exception handling.\n      # Darwin uses the -arch flag to determine output architecture.\n      -model|-arch|-isysroot|--sysroot)\n\tfunc_append compiler_flags \" $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \\\n      |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)\n\tfunc_append compiler_flags \" $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tcase \"$new_inherited_linker_flags \" in\n\t    *\" $arg \"*) ;;\n\t    * ) func_append new_inherited_linker_flags \" $arg\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -multi_module)\n\tsingle_module=$wl-multi_module\n\tcontinue\n\t;;\n\n      -no-fast-install)\n\tfast_install=no\n\tcontinue\n\t;;\n\n      -no-install)\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)\n\t  # The PATH hackery in wrapper scripts is required on Windows\n\t  # and Darwin in order for the loader to find any dlls it needs.\n\t  func_warning \"'-no-install' is ignored for $host\"\n\t  func_warning \"assuming '-no-fast-install' instead\"\n\t  fast_install=no\n\t  ;;\n\t*) no_install=yes ;;\n\tesac\n\tcontinue\n\t;;\n\n      -no-undefined)\n\tallow_undefined=no\n\tcontinue\n\t;;\n\n      -objectlist)\n\tprev=objectlist\n\tcontinue\n\t;;\n\n      -os2dllname)\n\tprev=os2dllname\n\tcontinue\n\t;;\n\n      -o) prev=output ;;\n\n      -precious-files-regex)\n\tprev=precious_regex\n\tcontinue\n\t;;\n\n      -release)\n\tprev=release\n\tcontinue\n\t;;\n\n      -rpath)\n\tprev=rpath\n\tcontinue\n\t;;\n\n      -R)\n\tprev=xrpath\n\tcontinue\n\t;;\n\n      -R*)\n\tfunc_stripname '-R' '' \"$arg\"\n\tdir=$func_stripname_result\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t=*)\n\t  func_stripname '=' '' \"$dir\"\n\t  dir=$lt_sysroot$func_stripname_result\n\t  ;;\n\t*)\n\t  func_fatal_error \"only absolute run-paths are allowed\"\n\t  ;;\n\tesac\n\tcase \"$xrpath \" in\n\t*\" $dir \"*) ;;\n\t*) func_append xrpath \" $dir\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -shared)\n\t# The effects of -shared are defined in a previous loop.\n\tcontinue\n\t;;\n\n      -shrext)\n\tprev=shrext\n\tcontinue\n\t;;\n\n      -static | -static-libtool-libs)\n\t# The effects of -static are defined in a previous loop.\n\t# We used to do the same as -all-static on platforms that\n\t# didn't have a PIC flag, but the assumption that the effects\n\t# would be equivalent was wrong.  It would break on at least\n\t# Digital Unix and AIX.\n\tcontinue\n\t;;\n\n      -thread-safe)\n\tthread_safe=yes\n\tcontinue\n\t;;\n\n      -version-info)\n\tprev=vinfo\n\tcontinue\n\t;;\n\n      -version-number)\n\tprev=vinfo\n\tvinfo_number=yes\n\tcontinue\n\t;;\n\n      -weak)\n        prev=weak\n\tcontinue\n\t;;\n\n      -Wc,*)\n\tfunc_stripname '-Wc,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=$IFS; IFS=,\n\tfor flag in $args; do\n\t  IFS=$save_ifs\n          func_quote_for_eval \"$flag\"\n\t  func_append arg \" $func_quote_for_eval_result\"\n\t  func_append compiler_flags \" $func_quote_for_eval_result\"\n\tdone\n\tIFS=$save_ifs\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Wl,*)\n\tfunc_stripname '-Wl,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=$IFS; IFS=,\n\tfor flag in $args; do\n\t  IFS=$save_ifs\n          func_quote_for_eval \"$flag\"\n\t  func_append arg \" $wl$func_quote_for_eval_result\"\n\t  func_append compiler_flags \" $wl$func_quote_for_eval_result\"\n\t  func_append linker_flags \" $func_quote_for_eval_result\"\n\tdone\n\tIFS=$save_ifs\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Xcompiler)\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -Xlinker)\n\tprev=xlinker\n\tcontinue\n\t;;\n\n      -XCClinker)\n\tprev=xcclinker\n\tcontinue\n\t;;\n\n      # -msg_* for osf cc\n      -msg_*)\n\tfunc_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n\n      # Flags to be passed through unchanged, with rationale:\n      # -64, -mips[0-9]      enable 64-bit mode for the SGI compiler\n      # -r[0-9][0-9]*        specify processor for the SGI compiler\n      # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler\n      # +DA*, +DD*           enable 64-bit mode for the HP compiler\n      # -q*                  compiler args for the IBM compiler\n      # -m*, -t[45]*, -txscale* architecture-specific flags for GCC\n      # -F/path              path to uninstalled frameworks, gcc on darwin\n      # -p, -pg, --coverage, -fprofile-*  profiling flags for GCC\n      # -fstack-protector*   stack protector flags for GCC\n      # @file                GCC response files\n      # -tp=*                Portland pgcc target processor selection\n      # --sysroot=*          for sysroot support\n      # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization\n      # -stdlib=*            select c++ std lib with clang\n      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \\\n      -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \\\n      -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*)\n        func_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n        func_append compile_command \" $arg\"\n        func_append finalize_command \" $arg\"\n        func_append compiler_flags \" $arg\"\n        continue\n        ;;\n\n      -Z*)\n        if test os2 = \"`expr $host : '.*\\(os2\\)'`\"; then\n          # OS/2 uses -Zxxx to specify OS/2-specific options\n\t  compiler_flags=\"$compiler_flags $arg\"\n\t  func_append compile_command \" $arg\"\n\t  func_append finalize_command \" $arg\"\n\t  case $arg in\n\t  -Zlinker | -Zstack)\n\t    prev=xcompiler\n\t    ;;\n\t  esac\n\t  continue\n        else\n\t  # Otherwise treat like 'Some other compiler flag' below\n\t  func_quote_for_eval \"$arg\"\n\t  arg=$func_quote_for_eval_result\n        fi\n\t;;\n\n      # Some other compiler flag.\n      -* | +*)\n        func_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n\n      *.$objext)\n\t# A standard object.\n\tfunc_append objs \" $arg\"\n\t;;\n\n      *.lo)\n\t# A libtool-controlled object.\n\n\t# Check to see that this really is a libtool object.\n\tif func_lalib_unsafe_p \"$arg\"; then\n\t  pic_object=\n\t  non_pic_object=\n\n\t  # Read the .lo file\n\t  func_source \"$arg\"\n\n\t  if test -z \"$pic_object\" ||\n\t     test -z \"$non_pic_object\" ||\n\t     test none = \"$pic_object\" &&\n\t     test none = \"$non_pic_object\"; then\n\t    func_fatal_error \"cannot find name of object for '$arg'\"\n\t  fi\n\n\t  # Extract subdirectory from the argument.\n\t  func_dirname \"$arg\" \"/\" \"\"\n\t  xdir=$func_dirname_result\n\n\t  test none = \"$pic_object\" || {\n\t    # Prepend the subdirectory the object is found in.\n\t    pic_object=$xdir$pic_object\n\n\t    if test dlfiles = \"$prev\"; then\n\t      if test yes = \"$build_libtool_libs\" && test yes = \"$dlopen_support\"; then\n\t\tfunc_append dlfiles \" $pic_object\"\n\t\tprev=\n\t\tcontinue\n\t      else\n\t\t# If libtool objects are unsupported, then we need to preload.\n\t\tprev=dlprefiles\n\t      fi\n\t    fi\n\n\t    # CHECK ME:  I think I busted this.  -Ossama\n\t    if test dlprefiles = \"$prev\"; then\n\t      # Preload the old-style object.\n\t      func_append dlprefiles \" $pic_object\"\n\t      prev=\n\t    fi\n\n\t    # A PIC object.\n\t    func_append libobjs \" $pic_object\"\n\t    arg=$pic_object\n\t  }\n\n\t  # Non-PIC object.\n\t  if test none != \"$non_pic_object\"; then\n\t    # Prepend the subdirectory the object is found in.\n\t    non_pic_object=$xdir$non_pic_object\n\n\t    # A standard non-PIC object\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t    if test -z \"$pic_object\" || test none = \"$pic_object\"; then\n\t      arg=$non_pic_object\n\t    fi\n\t  else\n\t    # If the PIC object exists, use it instead.\n\t    # $xdir was prepended to $pic_object above.\n\t    non_pic_object=$pic_object\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  fi\n\telse\n\t  # Only an error if not doing a dry-run.\n\t  if $opt_dry_run; then\n\t    # Extract subdirectory from the argument.\n\t    func_dirname \"$arg\" \"/\" \"\"\n\t    xdir=$func_dirname_result\n\n\t    func_lo2o \"$arg\"\n\t    pic_object=$xdir$objdir/$func_lo2o_result\n\t    non_pic_object=$xdir$func_lo2o_result\n\t    func_append libobjs \" $pic_object\"\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  else\n\t    func_fatal_error \"'$arg' is not a valid libtool object\"\n\t  fi\n\tfi\n\t;;\n\n      *.$libext)\n\t# An archive.\n\tfunc_append deplibs \" $arg\"\n\tfunc_append old_deplibs \" $arg\"\n\tcontinue\n\t;;\n\n      *.la)\n\t# A libtool-controlled library.\n\n\tfunc_resolve_sysroot \"$arg\"\n\tif test dlfiles = \"$prev\"; then\n\t  # This library was specified with -dlopen.\n\t  func_append dlfiles \" $func_resolve_sysroot_result\"\n\t  prev=\n\telif test dlprefiles = \"$prev\"; then\n\t  # The library was specified with -dlpreopen.\n\t  func_append dlprefiles \" $func_resolve_sysroot_result\"\n\t  prev=\n\telse\n\t  func_append deplibs \" $func_resolve_sysroot_result\"\n\tfi\n\tcontinue\n\t;;\n\n      # Some other compiler argument.\n      *)\n\t# Unknown arguments in both finalize_command and compile_command need\n\t# to be aesthetically quoted because they are evaled later.\n\tfunc_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n      esac # arg\n\n      # Now actually substitute the argument into the commands.\n      if test -n \"$arg\"; then\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n      fi\n    done # argument parsing loop\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the '$prevarg' option requires an argument\"\n\n    if test yes = \"$export_dynamic\" && test -n \"$export_dynamic_flag_spec\"; then\n      eval arg=\\\"$export_dynamic_flag_spec\\\"\n      func_append compile_command \" $arg\"\n      func_append finalize_command \" $arg\"\n    fi\n\n    oldlibs=\n    # calculate the name of the file, without its directory\n    func_basename \"$output\"\n    outputname=$func_basename_result\n    libobjs_save=$libobjs\n\n    if test -n \"$shlibpath_var\"; then\n      # get the directories listed in $shlibpath_var\n      eval shlib_search_path=\\`\\$ECHO \\\"\\$$shlibpath_var\\\" \\| \\$SED \\'s/:/ /g\\'\\`\n    else\n      shlib_search_path=\n    fi\n    eval sys_lib_search_path=\\\"$sys_lib_search_path_spec\\\"\n    eval sys_lib_dlsearch_path=\\\"$sys_lib_dlsearch_path_spec\\\"\n\n    # Definition is injected by LT_CONFIG during libtool generation.\n    func_munge_path_list sys_lib_dlsearch_path \"$LT_SYS_LIBRARY_PATH\"\n\n    func_dirname \"$output\" \"/\" \"\"\n    output_objdir=$func_dirname_result$objdir\n    func_to_tool_file \"$output_objdir/\"\n    tool_output_objdir=$func_to_tool_file_result\n    # Create the object directory.\n    func_mkdir_p \"$output_objdir\"\n\n    # Determine the type of output\n    case $output in\n    \"\")\n      func_fatal_help \"you must specify an output file\"\n      ;;\n    *.$libext) linkmode=oldlib ;;\n    *.lo | *.$objext) linkmode=obj ;;\n    *.la) linkmode=lib ;;\n    *) linkmode=prog ;; # Anything else should be a program.\n    esac\n\n    specialdeplibs=\n\n    libs=\n    # Find all interdependent deplibs by searching for libraries\n    # that are linked more than once (e.g. -la -lb -la)\n    for deplib in $deplibs; do\n      if $opt_preserve_dup_deps; then\n\tcase \"$libs \" in\n\t*\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\tesac\n      fi\n      func_append libs \" $deplib\"\n    done\n\n    if test lib = \"$linkmode\"; then\n      libs=\"$predeps $libs $compiler_lib_search_path $postdeps\"\n\n      # Compute libraries that are listed more than once in $predeps\n      # $postdeps and mark them as special (i.e., whose duplicates are\n      # not to be eliminated).\n      pre_post_deps=\n      if $opt_duplicate_compiler_generated_deps; then\n\tfor pre_post_dep in $predeps $postdeps; do\n\t  case \"$pre_post_deps \" in\n\t  *\" $pre_post_dep \"*) func_append specialdeplibs \" $pre_post_deps\" ;;\n\t  esac\n\t  func_append pre_post_deps \" $pre_post_dep\"\n\tdone\n      fi\n      pre_post_deps=\n    fi\n\n    deplibs=\n    newdependency_libs=\n    newlib_search_path=\n    need_relink=no # whether we're linking any uninstalled libtool libraries\n    notinst_deplibs= # not-installed libtool libraries\n    notinst_path= # paths that contain not-installed libtool libraries\n\n    case $linkmode in\n    lib)\n\tpasses=\"conv dlpreopen link\"\n\tfor file in $dlfiles $dlprefiles; do\n\t  case $file in\n\t  *.la) ;;\n\t  *)\n\t    func_fatal_help \"libraries can '-dlopen' only libtool libraries: $file\"\n\t    ;;\n\t  esac\n\tdone\n\t;;\n    prog)\n\tcompile_deplibs=\n\tfinalize_deplibs=\n\talldeplibs=false\n\tnewdlfiles=\n\tnewdlprefiles=\n\tpasses=\"conv scan dlopen dlpreopen link\"\n\t;;\n    *)  passes=\"conv\"\n\t;;\n    esac\n\n    for pass in $passes; do\n      # The preopen pass in lib mode reverses $deplibs; put it back here\n      # so that -L comes before libs that need it for instance...\n      if test lib,link = \"$linkmode,$pass\"; then\n\t## FIXME: Find the place where the list is rebuilt in the wrong\n\t##        order, and fix it there properly\n        tmp_deplibs=\n\tfor deplib in $deplibs; do\n\t  tmp_deplibs=\"$deplib $tmp_deplibs\"\n\tdone\n\tdeplibs=$tmp_deplibs\n      fi\n\n      if test lib,link = \"$linkmode,$pass\" ||\n\t test prog,scan = \"$linkmode,$pass\"; then\n\tlibs=$deplibs\n\tdeplibs=\n      fi\n      if test prog = \"$linkmode\"; then\n\tcase $pass in\n\tdlopen) libs=$dlfiles ;;\n\tdlpreopen) libs=$dlprefiles ;;\n\tlink) libs=\"$deplibs %DEPLIBS% $dependency_libs\" ;;\n\tesac\n      fi\n      if test lib,dlpreopen = \"$linkmode,$pass\"; then\n\t# Collect and forward deplibs of preopened libtool libs\n\tfor lib in $dlprefiles; do\n\t  # Ignore non-libtool-libs\n\t  dependency_libs=\n\t  func_resolve_sysroot \"$lib\"\n\t  case $lib in\n\t  *.la)\tfunc_source \"$func_resolve_sysroot_result\" ;;\n\t  esac\n\n\t  # Collect preopened libtool deplibs, except any this library\n\t  # has declared as weak libs\n\t  for deplib in $dependency_libs; do\n\t    func_basename \"$deplib\"\n            deplib_base=$func_basename_result\n\t    case \" $weak_libs \" in\n\t    *\" $deplib_base \"*) ;;\n\t    *) func_append deplibs \" $deplib\" ;;\n\t    esac\n\t  done\n\tdone\n\tlibs=$dlprefiles\n      fi\n      if test dlopen = \"$pass\"; then\n\t# Collect dlpreopened libraries\n\tsave_deplibs=$deplibs\n\tdeplibs=\n      fi\n\n      for deplib in $libs; do\n\tlib=\n\tfound=false\n\tcase $deplib in\n\t-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \\\n        |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)\n\t  if test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    func_append compiler_flags \" $deplib\"\n\t    if test lib = \"$linkmode\"; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) func_append new_inherited_linker_flags \" $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-l*)\n\t  if test lib != \"$linkmode\" && test prog != \"$linkmode\"; then\n\t    func_warning \"'-l' is ignored for archives/objects\"\n\t    continue\n\t  fi\n\t  func_stripname '-l' '' \"$deplib\"\n\t  name=$func_stripname_result\n\t  if test lib = \"$linkmode\"; then\n\t    searchdirs=\"$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path\"\n\t  else\n\t    searchdirs=\"$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path\"\n\t  fi\n\t  for searchdir in $searchdirs; do\n\t    for search_ext in .la $std_shrext .so .a; do\n\t      # Search the libtool library\n\t      lib=$searchdir/lib$name$search_ext\n\t      if test -f \"$lib\"; then\n\t\tif test .la = \"$search_ext\"; then\n\t\t  found=:\n\t\telse\n\t\t  found=false\n\t\tfi\n\t\tbreak 2\n\t      fi\n\t    done\n\t  done\n\t  if $found; then\n\t    # deplib is a libtool library\n\t    # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,\n\t    # We need to do some special things here, and not later.\n\t    if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t      case \" $predeps $postdeps \" in\n\t      *\" $deplib \"*)\n\t\tif func_lalib_p \"$lib\"; then\n\t\t  library_names=\n\t\t  old_library=\n\t\t  func_source \"$lib\"\n\t\t  for l in $old_library $library_names; do\n\t\t    ll=$l\n\t\t  done\n\t\t  if test \"X$ll\" = \"X$old_library\"; then # only static version available\n\t\t    found=false\n\t\t    func_dirname \"$lib\" \"\" \".\"\n\t\t    ladir=$func_dirname_result\n\t\t    lib=$ladir/$old_library\n\t\t    if test prog,link = \"$linkmode,$pass\"; then\n\t\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t\t    else\n\t\t      deplibs=\"$deplib $deplibs\"\n\t\t      test lib = \"$linkmode\" && newdependency_libs=\"$deplib $newdependency_libs\"\n\t\t    fi\n\t\t    continue\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *) ;;\n\t      esac\n\t    fi\n\t  else\n\t    # deplib doesn't seem to be a libtool library\n\t    if test prog,link = \"$linkmode,$pass\"; then\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      deplibs=\"$deplib $deplibs\"\n\t      test lib = \"$linkmode\" && newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    continue\n\t  fi\n\t  ;; # -l\n\t*.ltframework)\n\t  if test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$deplib $deplibs\"\n\t    if test lib = \"$linkmode\"; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) func_append new_inherited_linker_flags \" $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-L*)\n\t  case $linkmode in\n\t  lib)\n\t    deplibs=\"$deplib $deplibs\"\n\t    test conv = \"$pass\" && continue\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    func_stripname '-L' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t    ;;\n\t  prog)\n\t    if test conv = \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t      continue\n\t    fi\n\t    if test scan = \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    func_stripname '-L' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t    ;;\n\t  *)\n\t    func_warning \"'-L' is ignored for archives/objects\"\n\t    ;;\n\t  esac # linkmode\n\t  continue\n\t  ;; # -L\n\t-R*)\n\t  if test link = \"$pass\"; then\n\t    func_stripname '-R' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    dir=$func_resolve_sysroot_result\n\t    # Make sure the xrpath contains only unique directories.\n\t    case \"$xrpath \" in\n\t    *\" $dir \"*) ;;\n\t    *) func_append xrpath \" $dir\" ;;\n\t    esac\n\t  fi\n\t  deplibs=\"$deplib $deplibs\"\n\t  continue\n\t  ;;\n\t*.la)\n\t  func_resolve_sysroot \"$deplib\"\n\t  lib=$func_resolve_sysroot_result\n\t  ;;\n\t*.$libext)\n\t  if test conv = \"$pass\"; then\n\t    deplibs=\"$deplib $deplibs\"\n\t    continue\n\t  fi\n\t  case $linkmode in\n\t  lib)\n\t    # Linking convenience modules into shared libraries is allowed,\n\t    # but linking other static libraries is non-portable.\n\t    case \" $dlpreconveniencelibs \" in\n\t    *\" $deplib \"*) ;;\n\t    *)\n\t      valid_a_lib=false\n\t      case $deplibs_check_method in\n\t\tmatch_pattern*)\n\t\t  set dummy $deplibs_check_method; shift\n\t\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t\t  if eval \"\\$ECHO \\\"$deplib\\\"\" 2>/dev/null | $SED 10q \\\n\t\t    | $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t    valid_a_lib=:\n\t\t  fi\n\t\t;;\n\t\tpass_all)\n\t\t  valid_a_lib=:\n\t\t;;\n\t      esac\n\t      if $valid_a_lib; then\n\t\techo\n\t\t$ECHO \"*** Warning: Linking the shared library $output against the\"\n\t\t$ECHO \"*** static library $deplib is not portable!\"\n\t\tdeplibs=\"$deplib $deplibs\"\n\t      else\n\t\techo\n\t\t$ECHO \"*** Warning: Trying to link with static lib archive $deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because the file extensions .$libext of this argument makes me believe\"\n\t\techo \"*** that it is just a static archive that I should not use here.\"\n\t      fi\n\t      ;;\n\t    esac\n\t    continue\n\t    ;;\n\t  prog)\n\t    if test link != \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    continue\n\t    ;;\n\t  esac # linkmode\n\t  ;; # *.$libext\n\t*.lo | *.$objext)\n\t  if test conv = \"$pass\"; then\n\t    deplibs=\"$deplib $deplibs\"\n\t  elif test prog = \"$linkmode\"; then\n\t    if test dlpreopen = \"$pass\" || test yes != \"$dlopen_support\" || test no = \"$build_libtool_libs\"; then\n\t      # If there is no dlopen support or we're linking statically,\n\t      # we need to preload.\n\t      func_append newdlprefiles \" $deplib\"\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      func_append newdlfiles \" $deplib\"\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t%DEPLIBS%)\n\t  alldeplibs=:\n\t  continue\n\t  ;;\n\tesac # case $deplib\n\n\t$found || test -f \"$lib\" \\\n\t  || func_fatal_error \"cannot find the library '$lib' or unhandled argument '$deplib'\"\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$lib\" \\\n\t  || func_fatal_error \"'$lib' is not a valid libtool archive\"\n\n\tfunc_dirname \"$lib\" \"\" \".\"\n\tladir=$func_dirname_result\n\n\tdlname=\n\tdlopen=\n\tdlpreopen=\n\tlibdir=\n\tlibrary_names=\n\told_library=\n\tinherited_linker_flags=\n\t# If the library was installed with an old release of libtool,\n\t# it will not redefine variables installed, or shouldnotlink\n\tinstalled=yes\n\tshouldnotlink=no\n\tavoidtemprpath=\n\n\n\t# Read the .la file\n\tfunc_source \"$lib\"\n\n\t# Convert \"-framework foo\" to \"foo.ltframework\"\n\tif test -n \"$inherited_linker_flags\"; then\n\t  tmp_inherited_linker_flags=`$ECHO \"$inherited_linker_flags\" | $SED 's/-framework \\([^ $]*\\)/\\1.ltframework/g'`\n\t  for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do\n\t    case \" $new_inherited_linker_flags \" in\n\t      *\" $tmp_inherited_linker_flag \"*) ;;\n\t      *) func_append new_inherited_linker_flags \" $tmp_inherited_linker_flag\";;\n\t    esac\n\t  done\n\tfi\n\tdependency_libs=`$ECHO \" $dependency_libs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tif test lib,link = \"$linkmode,$pass\" ||\n\t   test prog,scan = \"$linkmode,$pass\" ||\n\t   { test prog != \"$linkmode\" && test lib != \"$linkmode\"; }; then\n\t  test -n \"$dlopen\" && func_append dlfiles \" $dlopen\"\n\t  test -n \"$dlpreopen\" && func_append dlprefiles \" $dlpreopen\"\n\tfi\n\n\tif test conv = \"$pass\"; then\n\t  # Only check for convenience libraries\n\t  deplibs=\"$lib $deplibs\"\n\t  if test -z \"$libdir\"; then\n\t    if test -z \"$old_library\"; then\n\t      func_fatal_error \"cannot find name of link library for '$lib'\"\n\t    fi\n\t    # It is a libtool convenience library, so add in its objects.\n\t    func_append convenience \" $ladir/$objdir/$old_library\"\n\t    func_append old_convenience \" $ladir/$objdir/$old_library\"\n\t  elif test prog != \"$linkmode\" && test lib != \"$linkmode\"; then\n\t    func_fatal_error \"'$lib' is not a convenience library\"\n\t  fi\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    deplibs=\"$deplib $deplibs\"\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $deplib\"\n\t  done\n\t  continue\n\tfi # $pass = conv\n\n\n\t# Get the name of the library we link against.\n\tlinklib=\n\tif test -n \"$old_library\" &&\n\t   { test yes = \"$prefer_static_libs\" ||\n\t     test built,no = \"$prefer_static_libs,$installed\"; }; then\n\t  linklib=$old_library\n\telse\n\t  for l in $old_library $library_names; do\n\t    linklib=$l\n\t  done\n\tfi\n\tif test -z \"$linklib\"; then\n\t  func_fatal_error \"cannot find name of link library for '$lib'\"\n\tfi\n\n\t# This library was specified with -dlopen.\n\tif test dlopen = \"$pass\"; then\n\t  test -z \"$libdir\" \\\n\t    && func_fatal_error \"cannot -dlopen a convenience library: '$lib'\"\n\t  if test -z \"$dlname\" ||\n\t     test yes != \"$dlopen_support\" ||\n\t     test no = \"$build_libtool_libs\"\n\t  then\n\t    # If there is no dlname, no dlopen support or we're linking\n\t    # statically, we need to preload.  We also need to preload any\n\t    # dependent libraries so libltdl's deplib preloader doesn't\n\t    # bomb out in the load deplibs phase.\n\t    func_append dlprefiles \" $lib $dependency_libs\"\n\t  else\n\t    func_append newdlfiles \" $lib\"\n\t  fi\n\t  continue\n\tfi # $pass = dlopen\n\n\t# We need an absolute path.\n\tcase $ladir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs_ladir=$ladir ;;\n\t*)\n\t  abs_ladir=`cd \"$ladir\" && pwd`\n\t  if test -z \"$abs_ladir\"; then\n\t    func_warning \"cannot determine absolute directory name of '$ladir'\"\n\t    func_warning \"passing it literally to the linker, although it might fail\"\n\t    abs_ladir=$ladir\n\t  fi\n\t  ;;\n\tesac\n\tfunc_basename \"$lib\"\n\tlaname=$func_basename_result\n\n\t# Find the relevant object directory and library name.\n\tif test yes = \"$installed\"; then\n\t  if test ! -f \"$lt_sysroot$libdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    func_warning \"library '$lib' was moved.\"\n\t    dir=$ladir\n\t    absdir=$abs_ladir\n\t    libdir=$abs_ladir\n\t  else\n\t    dir=$lt_sysroot$libdir\n\t    absdir=$lt_sysroot$libdir\n\t  fi\n\t  test yes = \"$hardcode_automatic\" && avoidtemprpath=yes\n\telse\n\t  if test ! -f \"$ladir/$objdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    dir=$ladir\n\t    absdir=$abs_ladir\n\t    # Remove this search path later\n\t    func_append notinst_path \" $abs_ladir\"\n\t  else\n\t    dir=$ladir/$objdir\n\t    absdir=$abs_ladir/$objdir\n\t    # Remove this search path later\n\t    func_append notinst_path \" $abs_ladir\"\n\t  fi\n\tfi # $installed = yes\n\tfunc_stripname 'lib' '.la' \"$laname\"\n\tname=$func_stripname_result\n\n\t# This library was specified with -dlpreopen.\n\tif test dlpreopen = \"$pass\"; then\n\t  if test -z \"$libdir\" && test prog = \"$linkmode\"; then\n\t    func_fatal_error \"only libraries may -dlpreopen a convenience library: '$lib'\"\n\t  fi\n\t  case $host in\n\t    # special handling for platforms with PE-DLLs.\n\t    *cygwin* | *mingw* | *cegcc* )\n\t      # Linker will automatically link against shared library if both\n\t      # static and shared are present.  Therefore, ensure we extract\n\t      # symbols from the import library if a shared library is present\n\t      # (otherwise, the dlopen module name will be incorrect).  We do\n\t      # this by putting the import library name into $newdlprefiles.\n\t      # We recover the dlopen module name by 'saving' the la file\n\t      # name in a special purpose variable, and (later) extracting the\n\t      # dlname from the la file.\n\t      if test -n \"$dlname\"; then\n\t        func_tr_sh \"$dir/$linklib\"\n\t        eval \"libfile_$func_tr_sh_result=\\$abs_ladir/\\$laname\"\n\t        func_append newdlprefiles \" $dir/$linklib\"\n\t      else\n\t        func_append newdlprefiles \" $dir/$old_library\"\n\t        # Keep a list of preopened convenience libraries to check\n\t        # that they are being used correctly in the link pass.\n\t        test -z \"$libdir\" && \\\n\t          func_append dlpreconveniencelibs \" $dir/$old_library\"\n\t      fi\n\t    ;;\n\t    * )\n\t      # Prefer using a static library (so that no silly _DYNAMIC symbols\n\t      # are required to link).\n\t      if test -n \"$old_library\"; then\n\t        func_append newdlprefiles \" $dir/$old_library\"\n\t        # Keep a list of preopened convenience libraries to check\n\t        # that they are being used correctly in the link pass.\n\t        test -z \"$libdir\" && \\\n\t          func_append dlpreconveniencelibs \" $dir/$old_library\"\n\t      # Otherwise, use the dlname, so that lt_dlopen finds it.\n\t      elif test -n \"$dlname\"; then\n\t        func_append newdlprefiles \" $dir/$dlname\"\n\t      else\n\t        func_append newdlprefiles \" $dir/$linklib\"\n\t      fi\n\t    ;;\n\t  esac\n\tfi # $pass = dlpreopen\n\n\tif test -z \"$libdir\"; then\n\t  # Link the convenience library\n\t  if test lib = \"$linkmode\"; then\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t  elif test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$dir/$old_library $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$old_library $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$lib $deplibs\" # used for prog,scan pass\n\t  fi\n\t  continue\n\tfi\n\n\n\tif test prog = \"$linkmode\" && test link != \"$pass\"; then\n\t  func_append newlib_search_path \" $ladir\"\n\t  deplibs=\"$lib $deplibs\"\n\n\t  linkalldeplibs=false\n\t  if test no != \"$link_all_deplibs\" || test -z \"$library_names\" ||\n\t     test no = \"$build_libtool_libs\"; then\n\t    linkalldeplibs=:\n\t  fi\n\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    case $deplib in\n\t    -L*) func_stripname '-L' '' \"$deplib\"\n\t         func_resolve_sysroot \"$func_stripname_result\"\n\t         func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t\t ;;\n\t    esac\n\t    # Need to link against all dependency_libs?\n\t    if $linkalldeplibs; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      # Need to hardcode shared library paths\n\t      # or/and link against static libraries\n\t      newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $deplib\"\n\t  done # for deplib\n\t  continue\n\tfi # $linkmode = prog...\n\n\tif test prog,link = \"$linkmode,$pass\"; then\n\t  if test -n \"$library_names\" &&\n\t     { { test no = \"$prefer_static_libs\" ||\n\t         test built,yes = \"$prefer_static_libs,$installed\"; } ||\n\t       test -z \"$old_library\"; }; then\n\t    # We need to hardcode the library path\n\t    if test -n \"$shlibpath_var\" && test -z \"$avoidtemprpath\"; then\n\t      # Make sure the rpath contains only unique directories.\n\t      case $temp_rpath: in\n\t      *\"$absdir:\"*) ;;\n\t      *) func_append temp_rpath \"$absdir:\" ;;\n\t      esac\n\t    fi\n\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) func_append compile_rpath \" $absdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append finalize_rpath \" $libdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t  fi # $linkmode,$pass = prog,link...\n\n\t  if $alldeplibs &&\n\t     { test pass_all = \"$deplibs_check_method\" ||\n\t       { test yes = \"$build_libtool_libs\" &&\n\t\t test -n \"$library_names\"; }; }; then\n\t    # We only need to search for static libraries\n\t    continue\n\t  fi\n\tfi\n\n\tlink_static=no # Whether the deplib will be linked statically\n\tuse_static_libs=$prefer_static_libs\n\tif test built = \"$use_static_libs\" && test yes = \"$installed\"; then\n\t  use_static_libs=no\n\tfi\n\tif test -n \"$library_names\" &&\n\t   { test no = \"$use_static_libs\" || test -z \"$old_library\"; }; then\n\t  case $host in\n\t  *cygwin* | *mingw* | *cegcc* | *os2*)\n\t      # No point in relinking DLLs because paths are not encoded\n\t      func_append notinst_deplibs \" $lib\"\n\t      need_relink=no\n\t    ;;\n\t  *)\n\t    if test no = \"$installed\"; then\n\t      func_append notinst_deplibs \" $lib\"\n\t      need_relink=yes\n\t    fi\n\t    ;;\n\t  esac\n\t  # This is a shared library\n\n\t  # Warn about portability, can't link against -module's on some\n\t  # systems (darwin).  Don't bleat about dlopened modules though!\n\t  dlopenmodule=\n\t  for dlpremoduletest in $dlprefiles; do\n\t    if test \"X$dlpremoduletest\" = \"X$lib\"; then\n\t      dlopenmodule=$dlpremoduletest\n\t      break\n\t    fi\n\t  done\n\t  if test -z \"$dlopenmodule\" && test yes = \"$shouldnotlink\" && test link = \"$pass\"; then\n\t    echo\n\t    if test prog = \"$linkmode\"; then\n\t      $ECHO \"*** Warning: Linking the executable $output against the loadable module\"\n\t    else\n\t      $ECHO \"*** Warning: Linking the shared library $output against the loadable module\"\n\t    fi\n\t    $ECHO \"*** $linklib is not portable!\"\n\t  fi\n\t  if test lib = \"$linkmode\" &&\n\t     test yes = \"$hardcode_into_libs\"; then\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) func_append compile_rpath \" $absdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append finalize_rpath \" $libdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t  fi\n\n\t  if test -n \"$old_archive_from_expsyms_cmds\"; then\n\t    # figure out the soname\n\t    set dummy $library_names\n\t    shift\n\t    realname=$1\n\t    shift\n\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t    # use dlname if we got it. it's perfectly good, no?\n\t    if test -n \"$dlname\"; then\n\t      soname=$dlname\n\t    elif test -n \"$soname_spec\"; then\n\t      # bleh windows\n\t      case $host in\n\t      *cygwin* | mingw* | *cegcc* | *os2*)\n\t        func_arith $current - $age\n\t\tmajor=$func_arith_result\n\t\tversuffix=-$major\n\t\t;;\n\t      esac\n\t      eval soname=\\\"$soname_spec\\\"\n\t    else\n\t      soname=$realname\n\t    fi\n\n\t    # Make a new name for the extract_expsyms_cmds to use\n\t    soroot=$soname\n\t    func_basename \"$soroot\"\n\t    soname=$func_basename_result\n\t    func_stripname 'lib' '.dll' \"$soname\"\n\t    newlib=libimp-$func_stripname_result.a\n\n\t    # If the library has no export list, then create one now\n\t    if test -f \"$output_objdir/$soname-def\"; then :\n\t    else\n\t      func_verbose \"extracting exported symbol list from '$soname'\"\n\t      func_execute_cmds \"$extract_expsyms_cmds\" 'exit $?'\n\t    fi\n\n\t    # Create $newlib\n\t    if test -f \"$output_objdir/$newlib\"; then :; else\n\t      func_verbose \"generating import library for '$soname'\"\n\t      func_execute_cmds \"$old_archive_from_expsyms_cmds\" 'exit $?'\n\t    fi\n\t    # make sure the library variables are pointing to the new library\n\t    dir=$output_objdir\n\t    linklib=$newlib\n\t  fi # test -n \"$old_archive_from_expsyms_cmds\"\n\n\t  if test prog = \"$linkmode\" || test relink != \"$opt_mode\"; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    lib_linked=yes\n\t    case $hardcode_action in\n\t    immediate | unsupported)\n\t      if test no = \"$hardcode_direct\"; then\n\t\tadd=$dir/$linklib\n\t\tcase $host in\n\t\t  *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;;\n\t\t  *-*-sysv4*uw2*) add_dir=-L$dir ;;\n\t\t  *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \\\n\t\t    *-*-unixware7*) add_dir=-L$dir ;;\n\t\t  *-*-darwin* )\n\t\t    # if the lib is a (non-dlopened) module then we cannot\n\t\t    # link against it, someone is ignoring the earlier warnings\n\t\t    if /usr/bin/file -L $add 2> /dev/null |\n\t\t\t $GREP \": [^:]* bundle\" >/dev/null; then\n\t\t      if test \"X$dlopenmodule\" != \"X$lib\"; then\n\t\t\t$ECHO \"*** Warning: lib $linklib is a module, not a shared library\"\n\t\t\tif test -z \"$old_library\"; then\n\t\t\t  echo\n\t\t\t  echo \"*** And there doesn't seem to be a static archive available\"\n\t\t\t  echo \"*** The link will probably fail, sorry\"\n\t\t\telse\n\t\t\t  add=$dir/$old_library\n\t\t\tfi\n\t\t      elif test -n \"$old_library\"; then\n\t\t\tadd=$dir/$old_library\n\t\t      fi\n\t\t    fi\n\t\tesac\n\t      elif test no = \"$hardcode_minus_L\"; then\n\t\tcase $host in\n\t\t*-*-sunos*) add_shlibpath=$dir ;;\n\t\tesac\n\t\tadd_dir=-L$dir\n\t\tadd=-l$name\n\t      elif test no = \"$hardcode_shlibpath_var\"; then\n\t\tadd_shlibpath=$dir\n\t\tadd=-l$name\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    relink)\n\t      if test yes = \"$hardcode_direct\" &&\n\t         test no = \"$hardcode_direct_absolute\"; then\n\t\tadd=$dir/$linklib\n\t      elif test yes = \"$hardcode_minus_L\"; then\n\t\tadd_dir=-L$absdir\n\t\t# Try looking first in the location we're being installed to.\n\t\tif test -n \"$inst_prefix_dir\"; then\n\t\t  case $libdir in\n\t\t    [\\\\/]*)\n\t\t      func_append add_dir \" -L$inst_prefix_dir$libdir\"\n\t\t      ;;\n\t\t  esac\n\t\tfi\n\t\tadd=-l$name\n\t      elif test yes = \"$hardcode_shlibpath_var\"; then\n\t\tadd_shlibpath=$dir\n\t\tadd=-l$name\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    *) lib_linked=no ;;\n\t    esac\n\n\t    if test yes != \"$lib_linked\"; then\n\t      func_fatal_configuration \"unsupported hardcode properties\"\n\t    fi\n\n\t    if test -n \"$add_shlibpath\"; then\n\t      case :$compile_shlibpath: in\n\t      *\":$add_shlibpath:\"*) ;;\n\t      *) func_append compile_shlibpath \"$add_shlibpath:\" ;;\n\t      esac\n\t    fi\n\t    if test prog = \"$linkmode\"; then\n\t      test -n \"$add_dir\" && compile_deplibs=\"$add_dir $compile_deplibs\"\n\t      test -n \"$add\" && compile_deplibs=\"$add $compile_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t      if test yes != \"$hardcode_direct\" &&\n\t\t test yes != \"$hardcode_minus_L\" &&\n\t\t test yes = \"$hardcode_shlibpath_var\"; then\n\t\tcase :$finalize_shlibpath: in\n\t\t*\":$libdir:\"*) ;;\n\t\t*) func_append finalize_shlibpath \"$libdir:\" ;;\n\t\tesac\n\t      fi\n\t    fi\n\t  fi\n\n\t  if test prog = \"$linkmode\" || test relink = \"$opt_mode\"; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    # Finalize command for both is simple: just hardcode it.\n\t    if test yes = \"$hardcode_direct\" &&\n\t       test no = \"$hardcode_direct_absolute\"; then\n\t      add=$libdir/$linklib\n\t    elif test yes = \"$hardcode_minus_L\"; then\n\t      add_dir=-L$libdir\n\t      add=-l$name\n\t    elif test yes = \"$hardcode_shlibpath_var\"; then\n\t      case :$finalize_shlibpath: in\n\t      *\":$libdir:\"*) ;;\n\t      *) func_append finalize_shlibpath \"$libdir:\" ;;\n\t      esac\n\t      add=-l$name\n\t    elif test yes = \"$hardcode_automatic\"; then\n\t      if test -n \"$inst_prefix_dir\" &&\n\t\t test -f \"$inst_prefix_dir$libdir/$linklib\"; then\n\t\tadd=$inst_prefix_dir$libdir/$linklib\n\t      else\n\t\tadd=$libdir/$linklib\n\t      fi\n\t    else\n\t      # We cannot seem to hardcode it, guess we'll fake it.\n\t      add_dir=-L$libdir\n\t      # Try looking first in the location we're being installed to.\n\t      if test -n \"$inst_prefix_dir\"; then\n\t\tcase $libdir in\n\t\t  [\\\\/]*)\n\t\t    func_append add_dir \" -L$inst_prefix_dir$libdir\"\n\t\t    ;;\n\t\tesac\n\t      fi\n\t      add=-l$name\n\t    fi\n\n\t    if test prog = \"$linkmode\"; then\n\t      test -n \"$add_dir\" && finalize_deplibs=\"$add_dir $finalize_deplibs\"\n\t      test -n \"$add\" && finalize_deplibs=\"$add $finalize_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t    fi\n\t  fi\n\telif test prog = \"$linkmode\"; then\n\t  # Here we assume that one of hardcode_direct or hardcode_minus_L\n\t  # is not unsupported.  This is valid on all known static and\n\t  # shared platforms.\n\t  if test unsupported != \"$hardcode_direct\"; then\n\t    test -n \"$old_library\" && linklib=$old_library\n\t    compile_deplibs=\"$dir/$linklib $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$linklib $finalize_deplibs\"\n\t  else\n\t    compile_deplibs=\"-l$name -L$dir $compile_deplibs\"\n\t    finalize_deplibs=\"-l$name -L$dir $finalize_deplibs\"\n\t  fi\n\telif test yes = \"$build_libtool_libs\"; then\n\t  # Not a shared library\n\t  if test pass_all != \"$deplibs_check_method\"; then\n\t    # We're trying link a shared library against a static one\n\t    # but the system doesn't support it.\n\n\t    # Just print a warning and add the library to dependency_libs so\n\t    # that the program can be linked against the static library.\n\t    echo\n\t    $ECHO \"*** Warning: This system cannot link to static lib archive $lib.\"\n\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t    echo \"*** shared version of the library, which you do not appear to have.\"\n\t    if test yes = \"$module\"; then\n\t      echo \"*** But as you try to build a module library, libtool will still create \"\n\t      echo \"*** a static module, that should work as long as the dlopening application\"\n\t      echo \"*** is linked with the -dlopen flag to resolve symbols at runtime.\"\n\t      if test -z \"$global_symbol_pipe\"; then\n\t\techo\n\t\techo \"*** However, this would only work if libtool was able to extract symbol\"\n\t\techo \"*** lists from a program, using 'nm' or equivalent, but libtool could\"\n\t\techo \"*** not find such a program.  So, this module is probably useless.\"\n\t\techo \"*** 'nm' from GNU binutils and a full rebuild may help.\"\n\t      fi\n\t      if test no = \"$build_old_libs\"; then\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  else\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t    link_static=yes\n\t  fi\n\tfi # link shared/static library?\n\n\tif test lib = \"$linkmode\"; then\n\t  if test -n \"$dependency_libs\" &&\n\t     { test yes != \"$hardcode_into_libs\" ||\n\t       test yes = \"$build_old_libs\" ||\n\t       test yes = \"$link_static\"; }; then\n\t    # Extract -R from dependency_libs\n\t    temp_deplibs=\n\t    for libdir in $dependency_libs; do\n\t      case $libdir in\n\t      -R*) func_stripname '-R' '' \"$libdir\"\n\t           temp_xrpath=$func_stripname_result\n\t\t   case \" $xrpath \" in\n\t\t   *\" $temp_xrpath \"*) ;;\n\t\t   *) func_append xrpath \" $temp_xrpath\";;\n\t\t   esac;;\n\t      *) func_append temp_deplibs \" $libdir\";;\n\t      esac\n\t    done\n\t    dependency_libs=$temp_deplibs\n\t  fi\n\n\t  func_append newlib_search_path \" $absdir\"\n\t  # Link against this library\n\t  test no = \"$link_static\" && newdependency_libs=\"$abs_ladir/$laname $newdependency_libs\"\n\t  # ... and its dependency_libs\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    case $deplib in\n              -L*) func_stripname '-L' '' \"$deplib\"\n                   func_resolve_sysroot \"$func_stripname_result\";;\n              *) func_resolve_sysroot \"$deplib\" ;;\n            esac\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $func_resolve_sysroot_result \"*)\n                func_append specialdeplibs \" $func_resolve_sysroot_result\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $func_resolve_sysroot_result\"\n\t  done\n\n\t  if test no != \"$link_all_deplibs\"; then\n\t    # Add the search paths of all dependency libraries\n\t    for deplib in $dependency_libs; do\n\t      path=\n\t      case $deplib in\n\t      -L*) path=$deplib ;;\n\t      *.la)\n\t        func_resolve_sysroot \"$deplib\"\n\t        deplib=$func_resolve_sysroot_result\n\t        func_dirname \"$deplib\" \"\" \".\"\n\t\tdir=$func_dirname_result\n\t\t# We need an absolute path.\n\t\tcase $dir in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) absdir=$dir ;;\n\t\t*)\n\t\t  absdir=`cd \"$dir\" && pwd`\n\t\t  if test -z \"$absdir\"; then\n\t\t    func_warning \"cannot determine absolute directory name of '$dir'\"\n\t\t    absdir=$dir\n\t\t  fi\n\t\t  ;;\n\t\tesac\n\t\tif $GREP \"^installed=no\" $deplib > /dev/null; then\n\t\tcase $host in\n\t\t*-*-darwin*)\n\t\t  depdepl=\n\t\t  eval deplibrary_names=`$SED -n -e 's/^library_names=\\(.*\\)$/\\1/p' $deplib`\n\t\t  if test -n \"$deplibrary_names\"; then\n\t\t    for tmp in $deplibrary_names; do\n\t\t      depdepl=$tmp\n\t\t    done\n\t\t    if test -f \"$absdir/$objdir/$depdepl\"; then\n\t\t      depdepl=$absdir/$objdir/$depdepl\n\t\t      darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`\n                      if test -z \"$darwin_install_name\"; then\n                          darwin_install_name=`$OTOOL64 -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`\n                      fi\n\t\t      func_append compiler_flags \" $wl-dylib_file $wl$darwin_install_name:$depdepl\"\n\t\t      func_append linker_flags \" -dylib_file $darwin_install_name:$depdepl\"\n\t\t      path=\n\t\t    fi\n\t\t  fi\n\t\t  ;;\n\t\t*)\n\t\t  path=-L$absdir/$objdir\n\t\t  ;;\n\t\tesac\n\t\telse\n\t\t  eval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $deplib`\n\t\t  test -z \"$libdir\" && \\\n\t\t    func_fatal_error \"'$deplib' is not a valid libtool archive\"\n\t\t  test \"$absdir\" != \"$libdir\" && \\\n\t\t    func_warning \"'$deplib' seems to be moved\"\n\n\t\t  path=-L$absdir\n\t\tfi\n\t\t;;\n\t      esac\n\t      case \" $deplibs \" in\n\t      *\" $path \"*) ;;\n\t      *) deplibs=\"$path $deplibs\" ;;\n\t      esac\n\t    done\n\t  fi # link_all_deplibs != no\n\tfi # linkmode = lib\n      done # for deplib in $libs\n      if test link = \"$pass\"; then\n\tif test prog = \"$linkmode\"; then\n\t  compile_deplibs=\"$new_inherited_linker_flags $compile_deplibs\"\n\t  finalize_deplibs=\"$new_inherited_linker_flags $finalize_deplibs\"\n\telse\n\t  compiler_flags=\"$compiler_flags \"`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfi\n      fi\n      dependency_libs=$newdependency_libs\n      if test dlpreopen = \"$pass\"; then\n\t# Link the dlpreopened libraries before other libraries\n\tfor deplib in $save_deplibs; do\n\t  deplibs=\"$deplib $deplibs\"\n\tdone\n      fi\n      if test dlopen != \"$pass\"; then\n\ttest conv = \"$pass\" || {\n\t  # Make sure lib_search_path contains only unique directories.\n\t  lib_search_path=\n\t  for dir in $newlib_search_path; do\n\t    case \"$lib_search_path \" in\n\t    *\" $dir \"*) ;;\n\t    *) func_append lib_search_path \" $dir\" ;;\n\t    esac\n\t  done\n\t  newlib_search_path=\n\t}\n\n\tif test prog,link = \"$linkmode,$pass\"; then\n\t  vars=\"compile_deplibs finalize_deplibs\"\n\telse\n\t  vars=deplibs\n\tfi\n\tfor var in $vars dependency_libs; do\n\t  # Add libraries to $var in reverse order\n\t  eval tmp_libs=\\\"\\$$var\\\"\n\t  new_libs=\n\t  for deplib in $tmp_libs; do\n\t    # FIXME: Pedantically, this is the right thing to do, so\n\t    #        that some nasty dependency loop isn't accidentally\n\t    #        broken:\n\t    #new_libs=\"$deplib $new_libs\"\n\t    # Pragmatically, this seems to cause very few problems in\n\t    # practice:\n\t    case $deplib in\n\t    -L*) new_libs=\"$deplib $new_libs\" ;;\n\t    -R*) ;;\n\t    *)\n\t      # And here is the reason: when a library appears more\n\t      # than once as an explicit dependence of a library, or\n\t      # is implicitly linked in more than once by the\n\t      # compiler, it is considered special, and multiple\n\t      # occurrences thereof are not removed.  Compare this\n\t      # with having the same library being listed as a\n\t      # dependency of multiple other libraries: in this case,\n\t      # we know (pedantically, we assume) the library does not\n\t      # need to be listed more than once, so we keep only the\n\t      # last copy.  This is not always right, but it is rare\n\t      # enough that we require users that really mean to play\n\t      # such unportable linking tricks to link the library\n\t      # using -Wl,-lname, so that libtool does not consider it\n\t      # for duplicate removal.\n\t      case \" $specialdeplibs \" in\n\t      *\" $deplib \"*) new_libs=\"$deplib $new_libs\" ;;\n\t      *)\n\t\tcase \" $new_libs \" in\n\t\t*\" $deplib \"*) ;;\n\t\t*) new_libs=\"$deplib $new_libs\" ;;\n\t\tesac\n\t\t;;\n\t      esac\n\t      ;;\n\t    esac\n\t  done\n\t  tmp_libs=\n\t  for deplib in $new_libs; do\n\t    case $deplib in\n\t    -L*)\n\t      case \" $tmp_libs \" in\n\t      *\" $deplib \"*) ;;\n\t      *) func_append tmp_libs \" $deplib\" ;;\n\t      esac\n\t      ;;\n\t    *) func_append tmp_libs \" $deplib\" ;;\n\t    esac\n\t  done\n\t  eval $var=\\\"$tmp_libs\\\"\n\tdone # for var\n      fi\n\n      # Add Sun CC postdeps if required:\n      test CXX = \"$tagname\" && {\n        case $host_os in\n        linux*)\n          case `$CC -V 2>&1 | sed 5q` in\n          *Sun\\ C*) # Sun C++ 5.9\n            func_suncc_cstd_abi\n\n            if test no != \"$suncc_use_cstd_abi\"; then\n              func_append postdeps ' -library=Cstd -library=Crun'\n            fi\n            ;;\n          esac\n          ;;\n\n        solaris*)\n          func_cc_basename \"$CC\"\n          case $func_cc_basename_result in\n          CC* | sunCC*)\n            func_suncc_cstd_abi\n\n            if test no != \"$suncc_use_cstd_abi\"; then\n              func_append postdeps ' -library=Cstd -library=Crun'\n            fi\n            ;;\n          esac\n          ;;\n        esac\n      }\n\n      # Last step: remove runtime libs from dependency_libs\n      # (they stay in deplibs)\n      tmp_libs=\n      for i in $dependency_libs; do\n\tcase \" $predeps $postdeps $compiler_lib_search_path \" in\n\t*\" $i \"*)\n\t  i=\n\t  ;;\n\tesac\n\tif test -n \"$i\"; then\n\t  func_append tmp_libs \" $i\"\n\tfi\n      done\n      dependency_libs=$tmp_libs\n    done # for pass\n    if test prog = \"$linkmode\"; then\n      dlfiles=$newdlfiles\n    fi\n    if test prog = \"$linkmode\" || test lib = \"$linkmode\"; then\n      dlprefiles=$newdlprefiles\n    fi\n\n    case $linkmode in\n    oldlib)\n      if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n\tfunc_warning \"'-dlopen' is ignored for archives\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"'-l' and '-L' are ignored for archives\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"'-rpath' is ignored for archives\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"'-R' is ignored for archives\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info/-version-number' is ignored for archives\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for archives\"\n\n      test -n \"$export_symbols$export_symbols_regex\" && \\\n\tfunc_warning \"'-export-symbols' is ignored for archives\"\n\n      # Now set the variables for building old libraries.\n      build_libtool_libs=no\n      oldlibs=$output\n      func_append objs \"$old_deplibs\"\n      ;;\n\n    lib)\n      # Make sure we only generate libraries of the form 'libNAME.la'.\n      case $outputname in\n      lib*)\n\tfunc_stripname 'lib' '.la' \"$outputname\"\n\tname=$func_stripname_result\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval libname=\\\"$libname_spec\\\"\n\t;;\n      *)\n\ttest no = \"$module\" \\\n\t  && func_fatal_help \"libtool library '$output' must begin with 'lib'\"\n\n\tif test no != \"$need_lib_prefix\"; then\n\t  # Add the \"lib\" prefix for modules if required\n\t  func_stripname '' '.la' \"$outputname\"\n\t  name=$func_stripname_result\n\t  eval shared_ext=\\\"$shrext_cmds\\\"\n\t  eval libname=\\\"$libname_spec\\\"\n\telse\n\t  func_stripname '' '.la' \"$outputname\"\n\t  libname=$func_stripname_result\n\tfi\n\t;;\n      esac\n\n      if test -n \"$objs\"; then\n\tif test pass_all != \"$deplibs_check_method\"; then\n\t  func_fatal_error \"cannot build libtool library '$output' from non-libtool objects on this host:$objs\"\n\telse\n\t  echo\n\t  $ECHO \"*** Warning: Linking the shared library $output against the non-libtool\"\n\t  $ECHO \"*** objects $objs is not portable!\"\n\t  func_append libobjs \" $objs\"\n\tfi\n      fi\n\n      test no = \"$dlself\" \\\n\t|| func_warning \"'-dlopen self' is ignored for libtool libraries\"\n\n      set dummy $rpath\n      shift\n      test 1 -lt \"$#\" \\\n\t&& func_warning \"ignoring multiple '-rpath's for a libtool library\"\n\n      install_libdir=$1\n\n      oldlibs=\n      if test -z \"$rpath\"; then\n\tif test yes = \"$build_libtool_libs\"; then\n\t  # Building a libtool convenience library.\n\t  # Some compilers have problems with a '.al' extension so\n\t  # convenience libraries should have the same extension an\n\t  # archive normally would.\n\t  oldlibs=\"$output_objdir/$libname.$libext $oldlibs\"\n\t  build_libtool_libs=convenience\n\t  build_old_libs=yes\n\tfi\n\n\ttest -n \"$vinfo\" && \\\n\t  func_warning \"'-version-info/-version-number' is ignored for convenience libraries\"\n\n\ttest -n \"$release\" && \\\n\t  func_warning \"'-release' is ignored for convenience libraries\"\n      else\n\n\t# Parse the version information argument.\n\tsave_ifs=$IFS; IFS=:\n\tset dummy $vinfo 0 0 0\n\tshift\n\tIFS=$save_ifs\n\n\ttest -n \"$7\" && \\\n\t  func_fatal_help \"too many parameters to '-version-info'\"\n\n\t# convert absolute version numbers to libtool ages\n\t# this retains compatibility with .la files and attempts\n\t# to make the code below a bit more comprehensible\n\n\tcase $vinfo_number in\n\tyes)\n\t  number_major=$1\n\t  number_minor=$2\n\t  number_revision=$3\n\t  #\n\t  # There are really only two kinds -- those that\n\t  # use the current revision as the major version\n\t  # and those that subtract age and use age as\n\t  # a minor version.  But, then there is irix\n\t  # that has an extra 1 added just for fun\n\t  #\n\t  case $version_type in\n\t  # correct linux to gnu/linux during the next big refactor\n\t  darwin|freebsd-elf|linux|osf|windows|none)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=$number_minor\n\t    revision=$number_revision\n\t    ;;\n\t  freebsd-aout|qnx|sunos)\n\t    current=$number_major\n\t    revision=$number_minor\n\t    age=0\n\t    ;;\n\t  irix|nonstopux)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=$number_minor\n\t    revision=$number_minor\n\t    lt_irix_increment=no\n\t    ;;\n\t  esac\n\t  ;;\n\tno)\n\t  current=$1\n\t  revision=$2\n\t  age=$3\n\t  ;;\n\tesac\n\n\t# Check that each of the things are valid numbers.\n\tcase $current in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"CURRENT '$current' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $revision in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"REVISION '$revision' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $age in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"AGE '$age' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tif test \"$age\" -gt \"$current\"; then\n\t  func_error \"AGE '$age' is greater than the current interface number '$current'\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\tfi\n\n\t# Calculate the version variables.\n\tmajor=\n\tversuffix=\n\tverstring=\n\tcase $version_type in\n\tnone) ;;\n\n\tdarwin)\n\t  # Like Linux, but with the current version available in\n\t  # verstring for coding it into the library header\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  # Darwin ld doesn't like 0 for these options...\n\t  func_arith $current + 1\n\t  minor_current=$func_arith_result\n\t  xlcverstring=\"$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision\"\n\t  verstring=\"-compatibility_version $minor_current -current_version $minor_current.$revision\"\n          # On Darwin other compilers\n          case $CC in\n              nagfor*)\n                  verstring=\"$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision\"\n                  ;;\n              *)\n                  verstring=\"-compatibility_version $minor_current -current_version $minor_current.$revision\"\n                  ;;\n          esac\n\t  ;;\n\n\tfreebsd-aout)\n\t  major=.$current\n\t  versuffix=.$current.$revision\n\t  ;;\n\n\tfreebsd-elf)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  ;;\n\n\tirix | nonstopux)\n\t  if test no = \"$lt_irix_increment\"; then\n\t    func_arith $current - $age\n\t  else\n\t    func_arith $current - $age + 1\n\t  fi\n\t  major=$func_arith_result\n\n\t  case $version_type in\n\t    nonstopux) verstring_prefix=nonstopux ;;\n\t    *)         verstring_prefix=sgi ;;\n\t  esac\n\t  verstring=$verstring_prefix$major.$revision\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$revision\n\t  while test 0 -ne \"$loop\"; do\n\t    func_arith $revision - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=$verstring_prefix$major.$iface:$verstring\n\t  done\n\n\t  # Before this point, $major must not contain '.'.\n\t  major=.$major\n\t  versuffix=$major.$revision\n\t  ;;\n\n\tlinux) # correct to gnu/linux during the next big refactor\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  ;;\n\n\tosf)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=.$current.$age.$revision\n\t  verstring=$current.$age.$revision\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$age\n\t  while test 0 -ne \"$loop\"; do\n\t    func_arith $current - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=$verstring:$iface.0\n\t  done\n\n\t  # Make executables depend on our current version.\n\t  func_append verstring \":$current.0\"\n\t  ;;\n\n\tqnx)\n\t  major=.$current\n\t  versuffix=.$current\n\t  ;;\n\n\tsco)\n\t  major=.$current\n\t  versuffix=.$current\n\t  ;;\n\n\tsunos)\n\t  major=.$current\n\t  versuffix=.$current.$revision\n\t  ;;\n\n\twindows)\n\t  # Use '-' rather than '.', since we only want one\n\t  # extension on DOS 8.3 file systems.\n\t  func_arith $current - $age\n\t  major=$func_arith_result\n\t  versuffix=-$major\n\t  ;;\n\n\t*)\n\t  func_fatal_configuration \"unknown library version type '$version_type'\"\n\t  ;;\n\tesac\n\n\t# Clear the version info if we defaulted, and they specified a release.\n\tif test -z \"$vinfo\" && test -n \"$release\"; then\n\t  major=\n\t  case $version_type in\n\t  darwin)\n\t    # we can't check for \"0.0\" in archive_cmds due to quoting\n\t    # problems, so we reset it completely\n\t    verstring=\n\t    ;;\n\t  *)\n\t    verstring=0.0\n\t    ;;\n\t  esac\n\t  if test no = \"$need_version\"; then\n\t    versuffix=\n\t  else\n\t    versuffix=.0.0\n\t  fi\n\tfi\n\n\t# Remove version info from name if versioning should be avoided\n\tif test yes,no = \"$avoid_version,$need_version\"; then\n\t  major=\n\t  versuffix=\n\t  verstring=\n\tfi\n\n\t# Check to see if the archive will have undefined symbols.\n\tif test yes = \"$allow_undefined\"; then\n\t  if test unsupported = \"$allow_undefined_flag\"; then\n\t    if test yes = \"$build_old_libs\"; then\n\t      func_warning \"undefined symbols not allowed in $host shared libraries; building static only\"\n\t      build_libtool_libs=no\n\t    else\n\t      func_fatal_error \"can't build $host shared library unless -no-undefined is specified\"\n\t    fi\n\t  fi\n\telse\n\t  # Don't allow undefined symbols.\n\t  allow_undefined_flag=$no_undefined_flag\n\tfi\n\n      fi\n\n      func_generate_dlsyms \"$libname\" \"$libname\" :\n      func_append libobjs \" $symfileobj\"\n      test \" \" = \"$libobjs\" && libobjs=\n\n      if test relink != \"$opt_mode\"; then\n\t# Remove our outputs, but don't remove object files since they\n\t# may have been created when compiling PIC objects.\n\tremovelist=\n\ttempremovelist=`$ECHO \"$output_objdir/*\"`\n\tfor p in $tempremovelist; do\n\t  case $p in\n\t    *.$objext | *.gcno)\n\t       ;;\n\t    $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*)\n\t       if test -n \"$precious_files_regex\"; then\n\t\t if $ECHO \"$p\" | $EGREP -e \"$precious_files_regex\" >/dev/null 2>&1\n\t\t then\n\t\t   continue\n\t\t fi\n\t       fi\n\t       func_append removelist \" $p\"\n\t       ;;\n\t    *) ;;\n\t  esac\n\tdone\n\ttest -n \"$removelist\" && \\\n\t  func_show_eval \"${RM}r \\$removelist\"\n      fi\n\n      # Now set the variables for building old libraries.\n      if test yes = \"$build_old_libs\" && test convenience != \"$build_libtool_libs\"; then\n\tfunc_append oldlibs \" $output_objdir/$libname.$libext\"\n\n\t# Transform .lo files to .o files.\n\toldobjs=\"$objs \"`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.$libext$/d; $lo2o\" | $NL2SP`\n      fi\n\n      # Eliminate all temporary directories.\n      #for path in $notinst_path; do\n      #\tlib_search_path=`$ECHO \"$lib_search_path \" | $SED \"s% $path % %g\"`\n      #\tdeplibs=`$ECHO \"$deplibs \" | $SED \"s% -L$path % %g\"`\n      #\tdependency_libs=`$ECHO \"$dependency_libs \" | $SED \"s% -L$path % %g\"`\n      #done\n\n      if test -n \"$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\ttemp_xrpath=\n\tfor libdir in $xrpath; do\n\t  func_replace_sysroot \"$libdir\"\n\t  func_append temp_xrpath \" -R$func_replace_sysroot_result\"\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_rpath \" $libdir\" ;;\n\t  esac\n\tdone\n\tif test yes != \"$hardcode_into_libs\" || test yes = \"$build_old_libs\"; then\n\t  dependency_libs=\"$temp_xrpath $dependency_libs\"\n\tfi\n      fi\n\n      # Make sure dlfiles contains only unique files that won't be dlpreopened\n      old_dlfiles=$dlfiles\n      dlfiles=\n      for lib in $old_dlfiles; do\n\tcase \" $dlprefiles $dlfiles \" in\n\t*\" $lib \"*) ;;\n\t*) func_append dlfiles \" $lib\" ;;\n\tesac\n      done\n\n      # Make sure dlprefiles contains only unique files\n      old_dlprefiles=$dlprefiles\n      dlprefiles=\n      for lib in $old_dlprefiles; do\n\tcase \"$dlprefiles \" in\n\t*\" $lib \"*) ;;\n\t*) func_append dlprefiles \" $lib\" ;;\n\tesac\n      done\n\n      if test yes = \"$build_libtool_libs\"; then\n\tif test -n \"$rpath\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # these systems don't actually have a c library (as such)!\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C library is in the System framework\n\t    func_append deplibs \" System.ltframework\"\n\t    ;;\n\t  *-*-netbsd*)\n\t    # Don't link with libc until the a.out ld.so is fixed.\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    ;;\n\t  *)\n\t    # Add libc to deplibs on all other systems if necessary.\n\t    if test yes = \"$build_libtool_need_lc\"; then\n\t      func_append deplibs \" -lc\"\n\t    fi\n\t    ;;\n\t  esac\n\tfi\n\n\t# Transform deplibs into only deplibs that can be linked in shared.\n\tname_save=$name\n\tlibname_save=$libname\n\trelease_save=$release\n\tversuffix_save=$versuffix\n\tmajor_save=$major\n\t# I'm not sure if I'm treating the release correctly.  I think\n\t# release should show up in the -l (ie -lgmp5) so we don't want to\n\t# add it in twice.  Is that correct?\n\trelease=\n\tversuffix=\n\tmajor=\n\tnewdeplibs=\n\tdroppeddeps=no\n\tcase $deplibs_check_method in\n\tpass_all)\n\t  # Don't check for shared/static.  Everything works.\n\t  # This might be a little naive.  We might want to check\n\t  # whether the library exists or not.  But this is on\n\t  # osf3 & osf4 and I'm not really sure... Just\n\t  # implementing what was already the behavior.\n\t  newdeplibs=$deplibs\n\t  ;;\n\ttest_compile)\n\t  # This code stresses the \"libraries are programs\" paradigm to its\n\t  # limits. Maybe even breaks it.  We compile a program, linking it\n\t  # against the deplibs as a proxy for the library.  Then we can check\n\t  # whether they linked in statically or dynamically with ldd.\n\t  $opt_dry_run || $RM conftest.c\n\t  cat > conftest.c <<EOF\n\t  int main() { return 0; }\nEOF\n\t  $opt_dry_run || $RM conftest\n\t  if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then\n\t    ldd_output=`ldd conftest`\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\tif test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\t  case \" $predeps $postdeps \" in\n\t\t  *\" $i \"*)\n\t\t    func_append newdeplibs \" $i\"\n\t\t    i=\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t\tif test -n \"$i\"; then\n\t\t  libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t  deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t  set dummy $deplib_matches; shift\n\t\t  deplib_match=$1\n\t\t  if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0; then\n\t\t    func_append newdeplibs \" $i\"\n\t\t  else\n\t\t    droppeddeps=yes\n\t\t    echo\n\t\t    $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t    echo \"*** shared version of the library, which I believe you do not have\"\n\t\t    echo \"*** because a test_compile did reveal that the linker did not use it for\"\n\t\t    echo \"*** its dynamic dependency list that programs get resolved with at runtime.\"\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *)\n\t\tfunc_append newdeplibs \" $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  else\n\t    # Error occurred in the first compile.  Let's try to salvage\n\t    # the situation: Compile a separate program for each library.\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\t$opt_dry_run || $RM conftest\n\t\tif $LTCC $LTCFLAGS -o conftest conftest.c $i; then\n\t\t  ldd_output=`ldd conftest`\n\t\t  if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\t    case \" $predeps $postdeps \" in\n\t\t    *\" $i \"*)\n\t\t      func_append newdeplibs \" $i\"\n\t\t      i=\n\t\t      ;;\n\t\t    esac\n\t\t  fi\n\t\t  if test -n \"$i\"; then\n\t\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t    deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t    set dummy $deplib_matches; shift\n\t\t    deplib_match=$1\n\t\t    if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0; then\n\t\t      func_append newdeplibs \" $i\"\n\t\t    else\n\t\t      droppeddeps=yes\n\t\t      echo\n\t\t      $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t      echo \"*** I have the capability to make that library automatically link in when\"\n\t\t      echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t      echo \"*** shared version of the library, which you do not appear to have\"\n\t\t      echo \"*** because a test_compile did reveal that the linker did not use this one\"\n\t\t      echo \"*** as a dynamic dependency that programs can get resolved with at runtime.\"\n\t\t    fi\n\t\t  fi\n\t\telse\n\t\t  droppeddeps=yes\n\t\t  echo\n\t\t  $ECHO \"*** Warning!  Library $i is needed by this library but I was not able to\"\n\t\t  echo \"*** make it link in!  You will probably need to install it or some\"\n\t\t  echo \"*** library that it depends on before this library will be fully\"\n\t\t  echo \"*** functional.  Installing it before continuing would be even better.\"\n\t\tfi\n\t\t;;\n\t      *)\n\t\tfunc_append newdeplibs \" $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  fi\n\t  ;;\n\tfile_magic*)\n\t  set dummy $deplibs_check_method; shift\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  func_append newdeplibs \" $a_deplib\"\n\t\t  a_deplib=\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tif test -n \"$file_magic_glob\"; then\n\t\t  libnameglob=`func_echo_all \"$libname\" | $SED -e $file_magic_glob`\n\t\telse\n\t\t  libnameglob=$libname\n\t\tfi\n\t\ttest yes = \"$want_nocaseglob\" && nocaseglob=`shopt -p nocaseglob`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  if test yes = \"$want_nocaseglob\"; then\n\t\t    shopt -s nocaseglob\n\t\t    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`\n\t\t    $nocaseglob\n\t\t  else\n\t\t    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`\n\t\t  fi\n\t\t  for potent_lib in $potential_libs; do\n\t\t      # Follow soft links.\n\t\t      if ls -lLd \"$potent_lib\" 2>/dev/null |\n\t\t\t $GREP \" -> \" >/dev/null; then\n\t\t\tcontinue\n\t\t      fi\n\t\t      # The statement above tries to avoid entering an\n\t\t      # endless loop below, in case of cyclic links.\n\t\t      # We might still enter an endless loop, since a link\n\t\t      # loop can be closed while we follow links,\n\t\t      # but so what?\n\t\t      potlib=$potent_lib\n\t\t      while test -h \"$potlib\" 2>/dev/null; do\n\t\t\tpotliblink=`ls -ld $potlib | $SED 's/.* -> //'`\n\t\t\tcase $potliblink in\n\t\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) potlib=$potliblink;;\n\t\t\t*) potlib=`$ECHO \"$potlib\" | $SED 's|[^/]*$||'`\"$potliblink\";;\n\t\t\tesac\n\t\t      done\n\t\t      if eval $file_magic_cmd \\\"\\$potlib\\\" 2>/dev/null |\n\t\t\t $SED -e 10q |\n\t\t\t $EGREP \"$file_magic_regex\" > /dev/null; then\n\t\t\tfunc_append newdeplibs \" $a_deplib\"\n\t\t\ta_deplib=\n\t\t\tbreak 2\n\t\t      fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\"; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for file magic test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a file magic. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      func_append newdeplibs \" $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tmatch_pattern*)\n\t  set dummy $deplibs_check_method; shift\n\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  func_append newdeplibs \" $a_deplib\"\n\t\t  a_deplib=\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`\n\t\t  for potent_lib in $potential_libs; do\n\t\t    potlib=$potent_lib # see symlink-check above in file_magic test\n\t\t    if eval \"\\$ECHO \\\"$potent_lib\\\"\" 2>/dev/null | $SED 10q | \\\n\t\t       $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t      func_append newdeplibs \" $a_deplib\"\n\t\t      a_deplib=\n\t\t      break 2\n\t\t    fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\"; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for regex pattern test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a regex pattern. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      func_append newdeplibs \" $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tnone | unknown | *)\n\t  newdeplibs=\n\t  tmp_deplibs=`$ECHO \" $deplibs\" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`\n\t  if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t    for i in $predeps $postdeps; do\n\t      # can't use Xsed below, because $i might contain '/'\n\t      tmp_deplibs=`$ECHO \" $tmp_deplibs\" | $SED \"s|$i||\"`\n\t    done\n\t  fi\n\t  case $tmp_deplibs in\n\t  *[!\\\t\\ ]*)\n\t    echo\n\t    if test none = \"$deplibs_check_method\"; then\n\t      echo \"*** Warning: inter-library dependencies are not supported in this platform.\"\n\t    else\n\t      echo \"*** Warning: inter-library dependencies are not known to be supported.\"\n\t    fi\n\t    echo \"*** All declared inter-library dependencies are being dropped.\"\n\t    droppeddeps=yes\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tversuffix=$versuffix_save\n\tmajor=$major_save\n\trelease=$release_save\n\tlibname=$libname_save\n\tname=$name_save\n\n\tcase $host in\n\t*-*-rhapsody* | *-*-darwin1.[012])\n\t  # On Rhapsody replace the C library with the System framework\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t  ;;\n\tesac\n\n\tif test yes = \"$droppeddeps\"; then\n\t  if test yes = \"$module\"; then\n\t    echo\n\t    echo \"*** Warning: libtool could not satisfy all declared inter-library\"\n\t    $ECHO \"*** dependencies of module $libname.  Therefore, libtool will create\"\n\t    echo \"*** a static module, that should work as long as the dlopening\"\n\t    echo \"*** application is linked with the -dlopen flag.\"\n\t    if test -z \"$global_symbol_pipe\"; then\n\t      echo\n\t      echo \"*** However, this would only work if libtool was able to extract symbol\"\n\t      echo \"*** lists from a program, using 'nm' or equivalent, but libtool could\"\n\t      echo \"*** not find such a program.  So, this module is probably useless.\"\n\t      echo \"*** 'nm' from GNU binutils and a full rebuild may help.\"\n\t    fi\n\t    if test no = \"$build_old_libs\"; then\n\t      oldlibs=$output_objdir/$libname.$libext\n\t      build_libtool_libs=module\n\t      build_old_libs=yes\n\t    else\n\t      build_libtool_libs=no\n\t    fi\n\t  else\n\t    echo \"*** The inter-library dependencies that have been dropped here will be\"\n\t    echo \"*** automatically added whenever a program is linked with this library\"\n\t    echo \"*** or is declared to -dlopen it.\"\n\n\t    if test no = \"$allow_undefined\"; then\n\t      echo\n\t      echo \"*** Since this library must not contain undefined symbols,\"\n\t      echo \"*** because either the platform does not support them or\"\n\t      echo \"*** it was explicitly requested with -no-undefined,\"\n\t      echo \"*** libtool will only create a static version of it.\"\n\t      if test no = \"$build_old_libs\"; then\n\t\toldlibs=$output_objdir/$libname.$libext\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  fi\n\tfi\n\t# Done checking deplibs!\n\tdeplibs=$newdeplibs\n      fi\n      # Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n      case $host in\n\t*-*-darwin*)\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  new_inherited_linker_flags=`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  deplibs=`$ECHO \" $deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  ;;\n      esac\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    func_append new_libs \" -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) func_append new_libs \" $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) func_append new_libs \" $deplib\" ;;\n\tesac\n      done\n      deplibs=$new_libs\n\n      # All the library-specific variables (install_libdir is set above).\n      library_names=\n      old_library=\n      dlname=\n\n      # Test again, we may have decided not to build it any more\n      if test yes = \"$build_libtool_libs\"; then\n\t# Remove $wl instances when linking with ld.\n\t# FIXME: should test the right _cmds variable.\n\tcase $archive_cmds in\n\t  *\\$LD\\ *) wl= ;;\n        esac\n\tif test yes = \"$hardcode_into_libs\"; then\n\t  # Hardcode the library paths\n\t  hardcode_libdirs=\n\t  dep_rpath=\n\t  rpath=$finalize_rpath\n\t  test relink = \"$opt_mode\" || rpath=$compile_rpath$rpath\n\t  for libdir in $rpath; do\n\t    if test -n \"$hardcode_libdir_flag_spec\"; then\n\t      if test -n \"$hardcode_libdir_separator\"; then\n\t\tfunc_replace_sysroot \"$libdir\"\n\t\tlibdir=$func_replace_sysroot_result\n\t\tif test -z \"$hardcode_libdirs\"; then\n\t\t  hardcode_libdirs=$libdir\n\t\telse\n\t\t  # Just accumulate the unique libdirs.\n\t\t  case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t\t  *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t    ;;\n\t\t  *)\n\t\t    func_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t      else\n\t\teval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t\tfunc_append dep_rpath \" $flag\"\n\t      fi\n\t    elif test -n \"$runpath_var\"; then\n\t      case \"$perm_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append perm_rpath \" $libdir\" ;;\n\t      esac\n\t    fi\n\t  done\n\t  # Substitute the hardcoded libdirs into the rpath.\n\t  if test -n \"$hardcode_libdir_separator\" &&\n\t     test -n \"$hardcode_libdirs\"; then\n\t    libdir=$hardcode_libdirs\n\t    eval \"dep_rpath=\\\"$hardcode_libdir_flag_spec\\\"\"\n\t  fi\n\t  if test -n \"$runpath_var\" && test -n \"$perm_rpath\"; then\n\t    # We should set the runpath_var.\n\t    rpath=\n\t    for dir in $perm_rpath; do\n\t      func_append rpath \"$dir:\"\n\t    done\n\t    eval \"$runpath_var='$rpath\\$$runpath_var'; export $runpath_var\"\n\t  fi\n\t  test -n \"$dep_rpath\" && deplibs=\"$dep_rpath $deplibs\"\n\tfi\n\n\tshlibpath=$finalize_shlibpath\n\ttest relink = \"$opt_mode\" || shlibpath=$compile_shlibpath$shlibpath\n\tif test -n \"$shlibpath\"; then\n\t  eval \"$shlibpath_var='$shlibpath\\$$shlibpath_var'; export $shlibpath_var\"\n\tfi\n\n\t# Get the real and link names of the library.\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval library_names=\\\"$library_names_spec\\\"\n\tset dummy $library_names\n\tshift\n\trealname=$1\n\tshift\n\n\tif test -n \"$soname_spec\"; then\n\t  eval soname=\\\"$soname_spec\\\"\n\telse\n\t  soname=$realname\n\tfi\n\tif test -z \"$dlname\"; then\n\t  dlname=$soname\n\tfi\n\n\tlib=$output_objdir/$realname\n\tlinknames=\n\tfor link\n\tdo\n\t  func_append linknames \" $link\"\n\tdone\n\n\t# Use standard objects if they are pic\n\ttest -z \"$pic_flag\" && libobjs=`$ECHO \"$libobjs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\ttest \"X$libobjs\" = \"X \" && libobjs=\n\n\tdelfiles=\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  $opt_dry_run || cp \"$export_symbols\" \"$output_objdir/$libname.uexp\"\n\t  export_symbols=$output_objdir/$libname.uexp\n\t  func_append delfiles \" $export_symbols\"\n\tfi\n\n\torig_export_symbols=\n\tcase $host_os in\n\tcygwin* | mingw* | cegcc*)\n\t  if test -n \"$export_symbols\" && test -z \"$export_symbols_regex\"; then\n\t    # exporting using user supplied symfile\n\t    func_dll_def_p \"$export_symbols\" || {\n\t      # and it's NOT already a .def file. Must figure out\n\t      # which of the given symbols are data symbols and tag\n\t      # them as such. So, trigger use of export_symbols_cmds.\n\t      # export_symbols gets reassigned inside the \"prepare\n\t      # the list of exported symbols\" if statement, so the\n\t      # include_expsyms logic still works.\n\t      orig_export_symbols=$export_symbols\n\t      export_symbols=\n\t      always_export_symbols=yes\n\t    }\n\t  fi\n\t  ;;\n\tesac\n\n\t# Prepare the list of exported symbols\n\tif test -z \"$export_symbols\"; then\n\t  if test yes = \"$always_export_symbols\" || test -n \"$export_symbols_regex\"; then\n\t    func_verbose \"generating symbol list for '$libname.la'\"\n\t    export_symbols=$output_objdir/$libname.exp\n\t    $opt_dry_run || $RM $export_symbols\n\t    cmds=$export_symbols_cmds\n\t    save_ifs=$IFS; IFS='~'\n\t    for cmd1 in $cmds; do\n\t      IFS=$save_ifs\n\t      # Take the normal branch if the nm_file_list_spec branch\n\t      # doesn't work or if tool conversion is not needed.\n\t      case $nm_file_list_spec~$to_tool_file_cmd in\n\t\t*~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*)\n\t\t  try_normal_branch=yes\n\t\t  eval cmd=\\\"$cmd1\\\"\n\t\t  func_len \" $cmd\"\n\t\t  len=$func_len_result\n\t\t  ;;\n\t\t*)\n\t\t  try_normal_branch=no\n\t\t  ;;\n\t      esac\n\t      if test yes = \"$try_normal_branch\" \\\n\t\t && { test \"$len\" -lt \"$max_cmd_len\" \\\n\t\t      || test \"$max_cmd_len\" -le -1; }\n\t      then\n\t\tfunc_show_eval \"$cmd\" 'exit $?'\n\t\tskipped_export=false\n\t      elif test -n \"$nm_file_list_spec\"; then\n\t\tfunc_basename \"$output\"\n\t\toutput_la=$func_basename_result\n\t\tsave_libobjs=$libobjs\n\t\tsave_output=$output\n\t\toutput=$output_objdir/$output_la.nm\n\t\tfunc_to_tool_file \"$output\"\n\t\tlibobjs=$nm_file_list_spec$func_to_tool_file_result\n\t\tfunc_append delfiles \" $output\"\n\t\tfunc_verbose \"creating $NM input file list: $output\"\n\t\tfor obj in $save_libobjs; do\n\t\t  func_to_tool_file \"$obj\"\n\t\t  $ECHO \"$func_to_tool_file_result\"\n\t\tdone > \"$output\"\n\t\teval cmd=\\\"$cmd1\\\"\n\t\tfunc_show_eval \"$cmd\" 'exit $?'\n\t\toutput=$save_output\n\t\tlibobjs=$save_libobjs\n\t\tskipped_export=false\n\t      else\n\t\t# The command line is too long to execute in one step.\n\t\tfunc_verbose \"using reloadable object file for export list...\"\n\t\tskipped_export=:\n\t\t# Break out early, otherwise skipped_export may be\n\t\t# set to false by a later but shorter cmd.\n\t\tbreak\n\t      fi\n\t    done\n\t    IFS=$save_ifs\n\t    if test -n \"$export_symbols_regex\" && test : != \"$skipped_export\"; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  tmp_export_symbols=$export_symbols\n\t  test -n \"$orig_export_symbols\" && tmp_export_symbols=$orig_export_symbols\n\t  $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\tfi\n\n\tif test : != \"$skipped_export\" && test -n \"$orig_export_symbols\"; then\n\t  # The given exports_symbols file has to be filtered, so filter it.\n\t  func_verbose \"filter symbol list for '$libname.la' to tag DATA exports\"\n\t  # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t  # 's' commands, which not all seds can handle. GNU sed should be fine\n\t  # though. Also, the filter scales superlinearly with the number of\n\t  # global variables. join(1) would be nice here, but unfortunately\n\t  # isn't a blessed tool.\n\t  $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t  func_append delfiles \" $export_symbols $output_objdir/$libname.filter\"\n\t  export_symbols=$output_objdir/$libname.def\n\t  $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\tfi\n\n\ttmp_deplibs=\n\tfor test_deplib in $deplibs; do\n\t  case \" $convenience \" in\n\t  *\" $test_deplib \"*) ;;\n\t  *)\n\t    func_append tmp_deplibs \" $test_deplib\"\n\t    ;;\n\t  esac\n\tdone\n\tdeplibs=$tmp_deplibs\n\n\tif test -n \"$convenience\"; then\n\t  if test -n \"$whole_archive_flag_spec\" &&\n\t    test yes = \"$compiler_needs_object\" &&\n\t    test -z \"$libobjs\"; then\n\t    # extract the archives, so we have objects to list.\n\t    # TODO: could optimize this to just extract one archive.\n\t    whole_archive_flag_spec=\n\t  fi\n\t  if test -n \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  else\n\t    gentop=$output_objdir/${outputname}x\n\t    func_append generated \" $gentop\"\n\n\t    func_extract_archives $gentop $convenience\n\t    func_append libobjs \" $func_extract_archives_result\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\tfi\n\n\tif test yes = \"$thread_safe\" && test -n \"$thread_safe_flag_spec\"; then\n\t  eval flag=\\\"$thread_safe_flag_spec\\\"\n\t  func_append linker_flags \" $flag\"\n\tfi\n\n\t# Make a backup of the uninstalled library when relinking\n\tif test relink = \"$opt_mode\"; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?\n\tfi\n\n\t# Do each of the archive commands.\n\tif test yes = \"$module\" && test -n \"$module_cmds\"; then\n\t  if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$module_expsym_cmds\\\"\n\t    cmds=$module_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$module_cmds\\\"\n\t    cmds=$module_cmds\n\t  fi\n\telse\n\t  if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$archive_expsym_cmds\\\"\n\t    cmds=$archive_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$archive_cmds\\\"\n\t    cmds=$archive_cmds\n\t  fi\n\tfi\n\n\tif test : != \"$skipped_export\" &&\n\t   func_len \" $test_cmds\" &&\n\t   len=$func_len_result &&\n\t   test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  :\n\telse\n\t  # The command line is too long to link in one step, link piecewise\n\t  # or, if using GNU ld and skipped_export is not :, use a linker\n\t  # script.\n\n\t  # Save the value of $output and $libobjs because we want to\n\t  # use them later.  If we have whole_archive_flag_spec, we\n\t  # want to use save_libobjs as it was before\n\t  # whole_archive_flag_spec was expanded, because we can't\n\t  # assume the linker understands whole_archive_flag_spec.\n\t  # This may have to be revisited, in case too many\n\t  # convenience libraries get linked in and end up exceeding\n\t  # the spec.\n\t  if test -z \"$convenience\" || test -z \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t  fi\n\t  save_output=$output\n\t  func_basename \"$output\"\n\t  output_la=$func_basename_result\n\n\t  # Clear the reloadable object creation command queue and\n\t  # initialize k to one.\n\t  test_cmds=\n\t  concat_cmds=\n\t  objlist=\n\t  last_robj=\n\t  k=1\n\n\t  if test -n \"$save_libobjs\" && test : != \"$skipped_export\" && test yes = \"$with_gnu_ld\"; then\n\t    output=$output_objdir/$output_la.lnkscript\n\t    func_verbose \"creating GNU ld script: $output\"\n\t    echo 'INPUT (' > $output\n\t    for obj in $save_libobjs\n\t    do\n\t      func_to_tool_file \"$obj\"\n\t      $ECHO \"$func_to_tool_file_result\" >> $output\n\t    done\n\t    echo ')' >> $output\n\t    func_append delfiles \" $output\"\n\t    func_to_tool_file \"$output\"\n\t    output=$func_to_tool_file_result\n\t  elif test -n \"$save_libobjs\" && test : != \"$skipped_export\" && test -n \"$file_list_spec\"; then\n\t    output=$output_objdir/$output_la.lnk\n\t    func_verbose \"creating linker input file list: $output\"\n\t    : > $output\n\t    set x $save_libobjs\n\t    shift\n\t    firstobj=\n\t    if test yes = \"$compiler_needs_object\"; then\n\t      firstobj=\"$1 \"\n\t      shift\n\t    fi\n\t    for obj\n\t    do\n\t      func_to_tool_file \"$obj\"\n\t      $ECHO \"$func_to_tool_file_result\" >> $output\n\t    done\n\t    func_append delfiles \" $output\"\n\t    func_to_tool_file \"$output\"\n\t    output=$firstobj\\\"$file_list_spec$func_to_tool_file_result\\\"\n\t  else\n\t    if test -n \"$save_libobjs\"; then\n\t      func_verbose \"creating reloadable object files...\"\n\t      output=$output_objdir/$output_la-$k.$objext\n\t      eval test_cmds=\\\"$reload_cmds\\\"\n\t      func_len \" $test_cmds\"\n\t      len0=$func_len_result\n\t      len=$len0\n\n\t      # Loop over the list of objects to be linked.\n\t      for obj in $save_libobjs\n\t      do\n\t\tfunc_len \" $obj\"\n\t\tfunc_arith $len + $func_len_result\n\t\tlen=$func_arith_result\n\t\tif test -z \"$objlist\" ||\n\t\t   test \"$len\" -lt \"$max_cmd_len\"; then\n\t\t  func_append objlist \" $obj\"\n\t\telse\n\t\t  # The command $test_cmds is almost too long, add a\n\t\t  # command to the queue.\n\t\t  if test 1 -eq \"$k\"; then\n\t\t    # The first file doesn't have a previous command to add.\n\t\t    reload_objs=$objlist\n\t\t    eval concat_cmds=\\\"$reload_cmds\\\"\n\t\t  else\n\t\t    # All subsequent reloadable object files will link in\n\t\t    # the last one created.\n\t\t    reload_objs=\"$objlist $last_robj\"\n\t\t    eval concat_cmds=\\\"\\$concat_cmds~$reload_cmds~\\$RM $last_robj\\\"\n\t\t  fi\n\t\t  last_robj=$output_objdir/$output_la-$k.$objext\n\t\t  func_arith $k + 1\n\t\t  k=$func_arith_result\n\t\t  output=$output_objdir/$output_la-$k.$objext\n\t\t  objlist=\" $obj\"\n\t\t  func_len \" $last_robj\"\n\t\t  func_arith $len0 + $func_len_result\n\t\t  len=$func_arith_result\n\t\tfi\n\t      done\n\t      # Handle the remaining objects by creating one last\n\t      # reloadable object file.  All subsequent reloadable object\n\t      # files will link in the last one created.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      reload_objs=\"$objlist $last_robj\"\n\t      eval concat_cmds=\\\"\\$concat_cmds$reload_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t        eval concat_cmds=\\\"\\$concat_cmds~\\$RM $last_robj\\\"\n\t      fi\n\t      func_append delfiles \" $output\"\n\n\t    else\n\t      output=\n\t    fi\n\n\t    ${skipped_export-false} && {\n\t      func_verbose \"generating symbol list for '$libname.la'\"\n\t      export_symbols=$output_objdir/$libname.exp\n\t      $opt_dry_run || $RM $export_symbols\n\t      libobjs=$output\n\t      # Append the command to create the export file.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\$concat_cmds$export_symbols_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t\teval concat_cmds=\\\"\\$concat_cmds~\\$RM $last_robj\\\"\n\t      fi\n\t    }\n\n\t    test -n \"$save_libobjs\" &&\n\t      func_verbose \"creating a temporary reloadable object file: $output\"\n\n\t    # Loop through the commands generated above and execute them.\n\t    save_ifs=$IFS; IFS='~'\n\t    for cmd in $concat_cmds; do\n\t      IFS=$save_ifs\n\t      $opt_quiet || {\n\t\t  func_quote_for_expand \"$cmd\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t      }\n\t      $opt_dry_run || eval \"$cmd\" || {\n\t\tlt_exit=$?\n\n\t\t# Restore the uninstalled library and exit\n\t\tif test relink = \"$opt_mode\"; then\n\t\t  ( cd \"$output_objdir\" && \\\n\t\t    $RM \"${realname}T\" && \\\n\t\t    $MV \"${realname}U\" \"$realname\" )\n\t\tfi\n\n\t\texit $lt_exit\n\t      }\n\t    done\n\t    IFS=$save_ifs\n\n\t    if test -n \"$export_symbols_regex\" && ${skipped_export-false}; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\n          ${skipped_export-false} && {\n\t    if test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t      tmp_export_symbols=$export_symbols\n\t      test -n \"$orig_export_symbols\" && tmp_export_symbols=$orig_export_symbols\n\t      $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\t    fi\n\n\t    if test -n \"$orig_export_symbols\"; then\n\t      # The given exports_symbols file has to be filtered, so filter it.\n\t      func_verbose \"filter symbol list for '$libname.la' to tag DATA exports\"\n\t      # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t      # 's' commands, which not all seds can handle. GNU sed should be fine\n\t      # though. Also, the filter scales superlinearly with the number of\n\t      # global variables. join(1) would be nice here, but unfortunately\n\t      # isn't a blessed tool.\n\t      $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t      func_append delfiles \" $export_symbols $output_objdir/$libname.filter\"\n\t      export_symbols=$output_objdir/$libname.def\n\t      $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\t    fi\n\t  }\n\n\t  libobjs=$output\n\t  # Restore the value of output.\n\t  output=$save_output\n\n\t  if test -n \"$convenience\" && test -n \"$whole_archive_flag_spec\"; then\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\t  # Expand the library linking commands again to reset the\n\t  # value of $libobjs for piecewise linking.\n\n\t  # Do each of the archive commands.\n\t  if test yes = \"$module\" && test -n \"$module_cmds\"; then\n\t    if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t      cmds=$module_expsym_cmds\n\t    else\n\t      cmds=$module_cmds\n\t    fi\n\t  else\n\t    if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t      cmds=$archive_expsym_cmds\n\t    else\n\t      cmds=$archive_cmds\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$delfiles\"; then\n\t  # Append the command to remove temporary files to $cmds.\n\t  eval cmds=\\\"\\$cmds~\\$RM $delfiles\\\"\n\tfi\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  func_append libobjs \" $func_extract_archives_result\"\n\t  test \"X$libobjs\" = \"X \" && libobjs=\n\tfi\n\n\tsave_ifs=$IFS; IFS='~'\n\tfor cmd in $cmds; do\n\t  IFS=$sp$nl\n\t  eval cmd=\\\"$cmd\\\"\n\t  IFS=$save_ifs\n\t  $opt_quiet || {\n\t    func_quote_for_expand \"$cmd\"\n\t    eval \"func_echo $func_quote_for_expand_result\"\n\t  }\n\t  $opt_dry_run || eval \"$cmd\" || {\n\t    lt_exit=$?\n\n\t    # Restore the uninstalled library and exit\n\t    if test relink = \"$opt_mode\"; then\n\t      ( cd \"$output_objdir\" && \\\n\t        $RM \"${realname}T\" && \\\n\t\t$MV \"${realname}U\" \"$realname\" )\n\t    fi\n\n\t    exit $lt_exit\n\t  }\n\tdone\n\tIFS=$save_ifs\n\n\t# Restore the uninstalled library and exit\n\tif test relink = \"$opt_mode\"; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?\n\n\t  if test -n \"$convenience\"; then\n\t    if test -z \"$whole_archive_flag_spec\"; then\n\t      func_show_eval '${RM}r \"$gentop\"'\n\t    fi\n\t  fi\n\n\t  exit $EXIT_SUCCESS\n\tfi\n\n\t# Create links to the real library.\n\tfor linkname in $linknames; do\n\t  if test \"$realname\" != \"$linkname\"; then\n\t    func_show_eval '(cd \"$output_objdir\" && $RM \"$linkname\" && $LN_S \"$realname\" \"$linkname\")' 'exit $?'\n\t  fi\n\tdone\n\n\t# If -module or -export-dynamic was specified, set the dlname.\n\tif test yes = \"$module\" || test yes = \"$export_dynamic\"; then\n\t  # On all known operating systems, these are identical.\n\t  dlname=$soname\n\tfi\n      fi\n      ;;\n\n    obj)\n      if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n\tfunc_warning \"'-dlopen' is ignored for objects\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"'-l' and '-L' are ignored for objects\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"'-rpath' is ignored for objects\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"'-R' is ignored for objects\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info' is ignored for objects\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for objects\"\n\n      case $output in\n      *.lo)\n\ttest -n \"$objs$old_deplibs\" && \\\n\t  func_fatal_error \"cannot build library object '$output' from non-libtool objects\"\n\n\tlibobj=$output\n\tfunc_lo2o \"$libobj\"\n\tobj=$func_lo2o_result\n\t;;\n      *)\n\tlibobj=\n\tobj=$output\n\t;;\n      esac\n\n      # Delete the old objects.\n      $opt_dry_run || $RM $obj $libobj\n\n      # Objects from convenience libraries.  This assumes\n      # single-version convenience libraries.  Whenever we create\n      # different ones for PIC/non-PIC, this we'll have to duplicate\n      # the extraction.\n      reload_conv_objs=\n      gentop=\n      # if reload_cmds runs $LD directly, get rid of -Wl from\n      # whole_archive_flag_spec and hope we can get by with turning comma\n      # into space.\n      case $reload_cmds in\n        *\\$LD[\\ \\$]*) wl= ;;\n      esac\n      if test -n \"$convenience\"; then\n\tif test -n \"$whole_archive_flag_spec\"; then\n\t  eval tmp_whole_archive_flags=\\\"$whole_archive_flag_spec\\\"\n\t  test -n \"$wl\" || tmp_whole_archive_flags=`$ECHO \"$tmp_whole_archive_flags\" | $SED 's|,| |g'`\n\t  reload_conv_objs=$reload_objs\\ $tmp_whole_archive_flags\n\telse\n\t  gentop=$output_objdir/${obj}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $convenience\n\t  reload_conv_objs=\"$reload_objs $func_extract_archives_result\"\n\tfi\n      fi\n\n      # If we're not building shared, we need to use non_pic_objs\n      test yes = \"$build_libtool_libs\" || libobjs=$non_pic_objects\n\n      # Create the old-style object.\n      reload_objs=$objs$old_deplibs' '`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.$libext$/d; /\\.lib$/d; $lo2o\" | $NL2SP`' '$reload_conv_objs\n\n      output=$obj\n      func_execute_cmds \"$reload_cmds\" 'exit $?'\n\n      # Exit if we aren't doing a library object file.\n      if test -z \"$libobj\"; then\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\texit $EXIT_SUCCESS\n      fi\n\n      test yes = \"$build_libtool_libs\" || {\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\t# Create an invalid libtool object if no PIC, so that we don't\n\t# accidentally link it into a program.\n\t# $show \"echo timestamp > $libobj\"\n\t# $opt_dry_run || eval \"echo timestamp > $libobj\" || exit $?\n\texit $EXIT_SUCCESS\n      }\n\n      if test -n \"$pic_flag\" || test default != \"$pic_mode\"; then\n\t# Only do commands if we really have different PIC objects.\n\treload_objs=\"$libobjs $reload_conv_objs\"\n\toutput=$libobj\n\tfunc_execute_cmds \"$reload_cmds\" 'exit $?'\n      fi\n\n      if test -n \"$gentop\"; then\n\tfunc_show_eval '${RM}r \"$gentop\"'\n      fi\n\n      exit $EXIT_SUCCESS\n      ;;\n\n    prog)\n      case $host in\n\t*cygwin*) func_stripname '' '.exe' \"$output\"\n\t          output=$func_stripname_result.exe;;\n      esac\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info' is ignored for programs\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for programs\"\n\n      $preload \\\n\t&& test unknown,unknown,unknown = \"$dlopen_support,$dlopen_self,$dlopen_self_static\" \\\n\t&& func_warning \"'LT_INIT([dlopen])' not used. Assuming no dlopen support.\"\n\n      case $host in\n      *-*-rhapsody* | *-*-darwin1.[012])\n\t# On Rhapsody replace the C library is the System framework\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t;;\n      esac\n\n      case $host in\n      *-*-darwin*)\n\t# Don't allow lazy linking, it breaks C++ global constructors\n\t# But is supposedly fixed on 10.4 or later (yay!).\n\tif test CXX = \"$tagname\"; then\n\t  case ${MACOSX_DEPLOYMENT_TARGET-10.0} in\n\t    10.[0123])\n\t      func_append compile_command \" $wl-bind_at_load\"\n\t      func_append finalize_command \" $wl-bind_at_load\"\n\t    ;;\n\t  esac\n\tfi\n\t# Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t;;\n      esac\n\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $compile_deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    func_append new_libs \" -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $compile_deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) func_append new_libs \" $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) func_append new_libs \" $deplib\" ;;\n\tesac\n      done\n      compile_deplibs=$new_libs\n\n\n      func_append compile_command \" $compile_deplibs\"\n      func_append finalize_command \" $finalize_deplibs\"\n\n      if test -n \"$rpath$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\tfor libdir in $rpath $xrpath; do\n\t  # This is the magic to use -rpath.\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_rpath \" $libdir\" ;;\n\t  esac\n\tdone\n      fi\n\n      # Now hardcode the library paths\n      rpath=\n      hardcode_libdirs=\n      for libdir in $compile_rpath $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=$libdir\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\tfunc_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    func_append rpath \" $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append perm_rpath \" $libdir\" ;;\n\t  esac\n\tfi\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`$ECHO \"$libdir\" | $SED -e 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$libdir:\"*) ;;\n\t  ::) dllsearchpath=$libdir;;\n\t  *) func_append dllsearchpath \":$libdir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) func_append dllsearchpath \":$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=$hardcode_libdirs\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      compile_rpath=$rpath\n\n      rpath=\n      hardcode_libdirs=\n      for libdir in $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=$libdir\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\tfunc_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    func_append rpath \" $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$finalize_perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_perm_rpath \" $libdir\" ;;\n\t  esac\n\tfi\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=$hardcode_libdirs\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      finalize_rpath=$rpath\n\n      if test -n \"$libobjs\" && test yes = \"$build_old_libs\"; then\n\t# Transform all the library objects into standard objects.\n\tcompile_command=`$ECHO \"$compile_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\tfinalize_command=`$ECHO \"$finalize_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n      fi\n\n      func_generate_dlsyms \"$outputname\" \"@PROGRAM@\" false\n\n      # template prelinking step\n      if test -n \"$prelink_cmds\"; then\n\tfunc_execute_cmds \"$prelink_cmds\" 'exit $?'\n      fi\n\n      wrappers_required=:\n      case $host in\n      *cegcc* | *mingw32ce*)\n        # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.\n        wrappers_required=false\n        ;;\n      *cygwin* | *mingw* )\n        test yes = \"$build_libtool_libs\" || wrappers_required=false\n        ;;\n      *)\n        if test no = \"$need_relink\" || test yes != \"$build_libtool_libs\"; then\n          wrappers_required=false\n        fi\n        ;;\n      esac\n      $wrappers_required || {\n\t# Replace the output file specification.\n\tcompile_command=`$ECHO \"$compile_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\tlink_command=$compile_command$compile_rpath\n\n\t# We have no uninstalled library dependencies, so finalize right now.\n\texit_status=0\n\tfunc_show_eval \"$link_command\" 'exit_status=$?'\n\n\tif test -n \"$postlink_cmds\"; then\n\t  func_to_tool_file \"$output\"\n\t  postlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\t  func_execute_cmds \"$postlink_cmds\" 'exit $?'\n\tfi\n\n\t# Delete the generated files.\n\tif test -f \"$output_objdir/${outputname}S.$objext\"; then\n\t  func_show_eval '$RM \"$output_objdir/${outputname}S.$objext\"'\n\tfi\n\n\texit $exit_status\n      }\n\n      if test -n \"$compile_shlibpath$finalize_shlibpath\"; then\n\tcompile_command=\"$shlibpath_var=\\\"$compile_shlibpath$finalize_shlibpath\\$$shlibpath_var\\\" $compile_command\"\n      fi\n      if test -n \"$finalize_shlibpath\"; then\n\tfinalize_command=\"$shlibpath_var=\\\"$finalize_shlibpath\\$$shlibpath_var\\\" $finalize_command\"\n      fi\n\n      compile_var=\n      finalize_var=\n      if test -n \"$runpath_var\"; then\n\tif test -n \"$perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $perm_rpath; do\n\t    func_append rpath \"$dir:\"\n\t  done\n\t  compile_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n\tif test -n \"$finalize_perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $finalize_perm_rpath; do\n\t    func_append rpath \"$dir:\"\n\t  done\n\t  finalize_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n      fi\n\n      if test yes = \"$no_install\"; then\n\t# We don't need to create a wrapper script.\n\tlink_command=$compile_var$compile_command$compile_rpath\n\t# Replace the output file specification.\n\tlink_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\t# Delete the old output file.\n\t$opt_dry_run || $RM $output\n\t# Link the executable and exit\n\tfunc_show_eval \"$link_command\" 'exit $?'\n\n\tif test -n \"$postlink_cmds\"; then\n\t  func_to_tool_file \"$output\"\n\t  postlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\t  func_execute_cmds \"$postlink_cmds\" 'exit $?'\n\tfi\n\n\texit $EXIT_SUCCESS\n      fi\n\n      case $hardcode_action,$fast_install in\n        relink,*)\n\t  # Fast installation is not supported\n\t  link_command=$compile_var$compile_command$compile_rpath\n\t  relink_command=$finalize_var$finalize_command$finalize_rpath\n\n\t  func_warning \"this platform does not like uninstalled shared libraries\"\n\t  func_warning \"'$output' will be relinked during installation\"\n\t  ;;\n        *,yes)\n\t  link_command=$finalize_var$compile_command$finalize_rpath\n\t  relink_command=`$ECHO \"$compile_var$compile_command$compile_rpath\" | $SED 's%@OUTPUT@%\\$progdir/\\$file%g'`\n          ;;\n\t*,no)\n\t  link_command=$compile_var$compile_command$compile_rpath\n\t  relink_command=$finalize_var$finalize_command$finalize_rpath\n          ;;\n\t*,needless)\n\t  link_command=$finalize_var$compile_command$finalize_rpath\n\t  relink_command=\n          ;;\n      esac\n\n      # Replace the output file specification.\n      link_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output_objdir/$outputname\"'%g'`\n\n      # Delete the old output files.\n      $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname\n\n      func_show_eval \"$link_command\" 'exit $?'\n\n      if test -n \"$postlink_cmds\"; then\n\tfunc_to_tool_file \"$output_objdir/$outputname\"\n\tpostlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output_objdir/$outputname\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\tfunc_execute_cmds \"$postlink_cmds\" 'exit $?'\n      fi\n\n      # Now create the wrapper script.\n      func_verbose \"creating $output\"\n\n      # Quote the relink command for shipping.\n      if test -n \"$relink_command\"; then\n\t# Preserve any variables that may affect compiler behavior\n\tfor var in $variables_saved_for_relink; do\n\t  if eval test -z \\\"\\${$var+set}\\\"; then\n\t    relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\t  elif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t    relink_command=\"$var=; export $var; $relink_command\"\n\t  else\n\t    func_quote_for_eval \"$var_value\"\n\t    relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\t  fi\n\tdone\n\trelink_command=\"(cd `pwd`; $relink_command)\"\n\trelink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      fi\n\n      # Only actually do things if not in dry run mode.\n      $opt_dry_run || {\n\t# win32 will think the script is a binary if it has\n\t# a .exe suffix, so we strip it off here.\n\tcase $output in\n\t  *.exe) func_stripname '' '.exe' \"$output\"\n\t         output=$func_stripname_result ;;\n\tesac\n\t# test for cygwin because mv fails w/o .exe extensions\n\tcase $host in\n\t  *cygwin*)\n\t    exeext=.exe\n\t    func_stripname '' '.exe' \"$outputname\"\n\t    outputname=$func_stripname_result ;;\n\t  *) exeext= ;;\n\tesac\n\tcase $host in\n\t  *cygwin* | *mingw* )\n\t    func_dirname_and_basename \"$output\" \"\" \".\"\n\t    output_name=$func_basename_result\n\t    output_path=$func_dirname_result\n\t    cwrappersource=$output_path/$objdir/lt-$output_name.c\n\t    cwrapper=$output_path/$output_name.exe\n\t    $RM $cwrappersource $cwrapper\n\t    trap \"$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_cwrapperexe_src > $cwrappersource\n\n\t    # The wrapper executable is built using the $host compiler,\n\t    # because it contains $host paths and files. If cross-\n\t    # compiling, it, like the target executable, must be\n\t    # executed on the $host or under an emulation environment.\n\t    $opt_dry_run || {\n\t      $LTCC $LTCFLAGS -o $cwrapper $cwrappersource\n\t      $STRIP $cwrapper\n\t    }\n\n\t    # Now, create the wrapper script for func_source use:\n\t    func_ltwrapper_scriptname $cwrapper\n\t    $RM $func_ltwrapper_scriptname_result\n\t    trap \"$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE\" 1 2 15\n\t    $opt_dry_run || {\n\t      # note: this script will not be executed, so do not chmod.\n\t      if test \"x$build\" = \"x$host\"; then\n\t\t$cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result\n\t      else\n\t\tfunc_emit_wrapper no > $func_ltwrapper_scriptname_result\n\t      fi\n\t    }\n\t  ;;\n\t  * )\n\t    $RM $output\n\t    trap \"$RM $output; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_wrapper no > $output\n\t    chmod +x $output\n\t  ;;\n\tesac\n      }\n      exit $EXIT_SUCCESS\n      ;;\n    esac\n\n    # See if we need to build an old-fashioned archive.\n    for oldlib in $oldlibs; do\n\n      case $build_libtool_libs in\n        convenience)\n\t  oldobjs=\"$libobjs_save $symfileobj\"\n\t  addlibs=$convenience\n\t  build_libtool_libs=no\n\t  ;;\n\tmodule)\n\t  oldobjs=$libobjs_save\n\t  addlibs=$old_convenience\n\t  build_libtool_libs=no\n          ;;\n\t*)\n\t  oldobjs=\"$old_deplibs $non_pic_objects\"\n\t  $preload && test -f \"$symfileobj\" \\\n\t    && func_append oldobjs \" $symfileobj\"\n\t  addlibs=$old_convenience\n\t  ;;\n      esac\n\n      if test -n \"$addlibs\"; then\n\tgentop=$output_objdir/${outputname}x\n\tfunc_append generated \" $gentop\"\n\n\tfunc_extract_archives $gentop $addlibs\n\tfunc_append oldobjs \" $func_extract_archives_result\"\n      fi\n\n      # Do each command in the archive commands.\n      if test -n \"$old_archive_from_new_cmds\" && test yes = \"$build_libtool_libs\"; then\n\tcmds=$old_archive_from_new_cmds\n      else\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  func_append oldobjs \" $func_extract_archives_result\"\n\tfi\n\n\t# POSIX demands no paths to be encoded in archives.  We have\n\t# to avoid creating archives with duplicate basenames if we\n\t# might have to extract them afterwards, e.g., when creating a\n\t# static archive out of a convenience library, or when linking\n\t# the entirety of a libtool archive into another (currently\n\t# not supported by libtool).\n\tif (for obj in $oldobjs\n\t    do\n\t      func_basename \"$obj\"\n\t      $ECHO \"$func_basename_result\"\n\t    done | sort | sort -uc >/dev/null 2>&1); then\n\t  :\n\telse\n\t  echo \"copying selected object files to avoid basename conflicts...\"\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\t  func_mkdir_p \"$gentop\"\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  counter=1\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_basename \"$obj\"\n\t    objbase=$func_basename_result\n\t    case \" $oldobjs \" in\n\t    \" \") oldobjs=$obj ;;\n\t    *[\\ /]\"$objbase \"*)\n\t      while :; do\n\t\t# Make sure we don't pick an alternate name that also\n\t\t# overlaps.\n\t\tnewobj=lt$counter-$objbase\n\t\tfunc_arith $counter + 1\n\t\tcounter=$func_arith_result\n\t\tcase \" $oldobjs \" in\n\t\t*[\\ /]\"$newobj \"*) ;;\n\t\t*) if test ! -f \"$gentop/$newobj\"; then break; fi ;;\n\t\tesac\n\t      done\n\t      func_show_eval \"ln $obj $gentop/$newobj || cp $obj $gentop/$newobj\"\n\t      func_append oldobjs \" $gentop/$newobj\"\n\t      ;;\n\t    *) func_append oldobjs \" $obj\" ;;\n\t    esac\n\t  done\n\tfi\n\tfunc_to_tool_file \"$oldlib\" func_convert_file_msys_to_w32\n\ttool_oldlib=$func_to_tool_file_result\n\teval cmds=\\\"$old_archive_cmds\\\"\n\n\tfunc_len \" $cmds\"\n\tlen=$func_len_result\n\tif test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  cmds=$old_archive_cmds\n\telif test -n \"$archiver_list_spec\"; then\n\t  func_verbose \"using command file archive linking...\"\n\t  for obj in $oldobjs\n\t  do\n\t    func_to_tool_file \"$obj\"\n\t    $ECHO \"$func_to_tool_file_result\"\n\t  done > $output_objdir/$libname.libcmd\n\t  func_to_tool_file \"$output_objdir/$libname.libcmd\"\n\t  oldobjs=\" $archiver_list_spec$func_to_tool_file_result\"\n\t  cmds=$old_archive_cmds\n\telse\n\t  # the command line is too long to link in one step, link in parts\n\t  func_verbose \"using piecewise archive linking...\"\n\t  save_RANLIB=$RANLIB\n\t  RANLIB=:\n\t  objlist=\n\t  concat_cmds=\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  # Is there a better way of finding the last object in the list?\n\t  for obj in $save_oldobjs\n\t  do\n\t    last_oldobj=$obj\n\t  done\n\t  eval test_cmds=\\\"$old_archive_cmds\\\"\n\t  func_len \" $test_cmds\"\n\t  len0=$func_len_result\n\t  len=$len0\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_len \" $obj\"\n\t    func_arith $len + $func_len_result\n\t    len=$func_arith_result\n\t    func_append objlist \" $obj\"\n\t    if test \"$len\" -lt \"$max_cmd_len\"; then\n\t      :\n\t    else\n\t      # the above command should be used before it gets too long\n\t      oldobjs=$objlist\n\t      if test \"$obj\" = \"$last_oldobj\"; then\n\t\tRANLIB=$save_RANLIB\n\t      fi\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\$concat_cmds$old_archive_cmds\\\"\n\t      objlist=\n\t      len=$len0\n\t    fi\n\t  done\n\t  RANLIB=$save_RANLIB\n\t  oldobjs=$objlist\n\t  if test -z \"$oldobjs\"; then\n\t    eval cmds=\\\"\\$concat_cmds\\\"\n\t  else\n\t    eval cmds=\\\"\\$concat_cmds~\\$old_archive_cmds\\\"\n\t  fi\n\tfi\n      fi\n      func_execute_cmds \"$cmds\" 'exit $?'\n    done\n\n    test -n \"$generated\" && \\\n      func_show_eval \"${RM}r$generated\"\n\n    # Now create the libtool archive.\n    case $output in\n    *.la)\n      old_library=\n      test yes = \"$build_old_libs\" && old_library=$libname.$libext\n      func_verbose \"creating $output\"\n\n      # Preserve any variables that may affect compiler behavior\n      for var in $variables_saved_for_relink; do\n\tif eval test -z \\\"\\${$var+set}\\\"; then\n\t  relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\telif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t  relink_command=\"$var=; export $var; $relink_command\"\n\telse\n\t  func_quote_for_eval \"$var_value\"\n\t  relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\tfi\n      done\n      # Quote the link command for shipping.\n      relink_command=\"(cd `pwd`; $SHELL \\\"$progpath\\\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)\"\n      relink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      if test yes = \"$hardcode_automatic\"; then\n\trelink_command=\n      fi\n\n      # Only create the output if not a dry run.\n      $opt_dry_run || {\n\tfor installed in no yes; do\n\t  if test yes = \"$installed\"; then\n\t    if test -z \"$install_libdir\"; then\n\t      break\n\t    fi\n\t    output=$output_objdir/${outputname}i\n\t    # Replace all uninstalled libtool libraries with the installed ones\n\t    newdependency_libs=\n\t    for deplib in $dependency_libs; do\n\t      case $deplib in\n\t      *.la)\n\t\tfunc_basename \"$deplib\"\n\t\tname=$func_basename_result\n\t\tfunc_resolve_sysroot \"$deplib\"\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $func_resolve_sysroot_result`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$deplib' is not a valid libtool archive\"\n\t\tfunc_append newdependency_libs \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      -L*)\n\t\tfunc_stripname -L '' \"$deplib\"\n\t\tfunc_replace_sysroot \"$func_stripname_result\"\n\t\tfunc_append newdependency_libs \" -L$func_replace_sysroot_result\"\n\t\t;;\n\t      -R*)\n\t\tfunc_stripname -R '' \"$deplib\"\n\t\tfunc_replace_sysroot \"$func_stripname_result\"\n\t\tfunc_append newdependency_libs \" -R$func_replace_sysroot_result\"\n\t\t;;\n\t      *) func_append newdependency_libs \" $deplib\" ;;\n\t      esac\n\t    done\n\t    dependency_libs=$newdependency_libs\n\t    newdlfiles=\n\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t      *.la)\n\t        func_basename \"$lib\"\n\t\tname=$func_basename_result\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$lib' is not a valid libtool archive\"\n\t\tfunc_append newdlfiles \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      *) func_append newdlfiles \" $lib\" ;;\n\t      esac\n\t    done\n\t    dlfiles=$newdlfiles\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t      *.la)\n\t\t# Only pass preopened files to the pseudo-archive (for\n\t\t# eventual linking with the app. that links it) if we\n\t\t# didn't already link the preopened objects directly into\n\t\t# the library:\n\t\tfunc_basename \"$lib\"\n\t\tname=$func_basename_result\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$lib' is not a valid libtool archive\"\n\t\tfunc_append newdlprefiles \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      esac\n\t    done\n\t    dlprefiles=$newdlprefiles\n\t  else\n\t    newdlfiles=\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=$lib ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      func_append newdlfiles \" $abs\"\n\t    done\n\t    dlfiles=$newdlfiles\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=$lib ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      func_append newdlprefiles \" $abs\"\n\t    done\n\t    dlprefiles=$newdlprefiles\n\t  fi\n\t  $RM $output\n\t  # place dlname in correct position for cygwin\n\t  # In fact, it would be nice if we could use this code for all target\n\t  # systems that can't hard-code library paths into their executables\n\t  # and that have no shared library path variable independent of PATH,\n\t  # but it turns out we can't easily determine that from inspecting\n\t  # libtool variables, so we have to hard-code the OSs to which it\n\t  # applies here; at the moment, that means platforms that use the PE\n\t  # object format with DLL files.  See the long comment at the top of\n\t  # tests/bindir.at for full details.\n\t  tdlname=$dlname\n\t  case $host,$output,$installed,$module,$dlname in\n\t    *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)\n\t      # If a -bindir argument was supplied, place the dll there.\n\t      if test -n \"$bindir\"; then\n\t\tfunc_relative_path \"$install_libdir\" \"$bindir\"\n\t\ttdlname=$func_relative_path_result/$dlname\n\t      else\n\t\t# Otherwise fall back on heuristic.\n\t\ttdlname=../bin/$dlname\n\t      fi\n\t      ;;\n\t  esac\n\t  $ECHO > $output \"\\\n# $outputname - a libtool library file\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# The name that we can dlopen(3).\ndlname='$tdlname'\n\n# Names of this library.\nlibrary_names='$library_names'\n\n# The name of the static archive.\nold_library='$old_library'\n\n# Linker flags that cannot go in dependency_libs.\ninherited_linker_flags='$new_inherited_linker_flags'\n\n# Libraries that this one depends upon.\ndependency_libs='$dependency_libs'\n\n# Names of additional weak libraries provided by this library\nweak_library_names='$weak_libs'\n\n# Version information for $libname.\ncurrent=$current\nage=$age\nrevision=$revision\n\n# Is this an already installed library?\ninstalled=$installed\n\n# Should we warn about portability when linking against -modules?\nshouldnotlink=$module\n\n# Files to dlopen/dlpreopen\ndlopen='$dlfiles'\ndlpreopen='$dlprefiles'\n\n# Directory that this library needs to be installed in:\nlibdir='$install_libdir'\"\n\t  if test no,yes = \"$installed,$need_relink\"; then\n\t    $ECHO >> $output \"\\\nrelink_command=\\\"$relink_command\\\"\"\n\t  fi\n\tdone\n      }\n\n      # Do a symbolic link so that the libtool archive can be found in\n      # LD_LIBRARY_PATH before the program is installed.\n      func_show_eval '( cd \"$output_objdir\" && $RM \"$outputname\" && $LN_S \"../$outputname\" \"$outputname\" )' 'exit $?'\n      ;;\n    esac\n    exit $EXIT_SUCCESS\n}\n\nif test link = \"$opt_mode\" || test relink = \"$opt_mode\"; then\n  func_mode_link ${1+\"$@\"}\nfi\n\n\n# func_mode_uninstall arg...\nfunc_mode_uninstall ()\n{\n    $debug_cmd\n\n    RM=$nonopt\n    files=\n    rmforce=false\n    exit_status=0\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=$magic\n\n    for arg\n    do\n      case $arg in\n      -f) func_append RM \" $arg\"; rmforce=: ;;\n      -*) func_append RM \" $arg\" ;;\n      *) func_append files \" $arg\" ;;\n      esac\n    done\n\n    test -z \"$RM\" && \\\n      func_fatal_help \"you must specify an RM program\"\n\n    rmdirs=\n\n    for file in $files; do\n      func_dirname \"$file\" \"\" \".\"\n      dir=$func_dirname_result\n      if test . = \"$dir\"; then\n\todir=$objdir\n      else\n\todir=$dir/$objdir\n      fi\n      func_basename \"$file\"\n      name=$func_basename_result\n      test uninstall = \"$opt_mode\" && odir=$dir\n\n      # Remember odir for removal later, being careful to avoid duplicates\n      if test clean = \"$opt_mode\"; then\n\tcase \" $rmdirs \" in\n\t  *\" $odir \"*) ;;\n\t  *) func_append rmdirs \" $odir\" ;;\n\tesac\n      fi\n\n      # Don't error if the file doesn't exist and rm -f was used.\n      if { test -L \"$file\"; } >/dev/null 2>&1 ||\n\t { test -h \"$file\"; } >/dev/null 2>&1 ||\n\t test -f \"$file\"; then\n\t:\n      elif test -d \"$file\"; then\n\texit_status=1\n\tcontinue\n      elif $rmforce; then\n\tcontinue\n      fi\n\n      rmfiles=$file\n\n      case $name in\n      *.la)\n\t# Possibly a libtool archive, so verify it.\n\tif func_lalib_p \"$file\"; then\n\t  func_source $dir/$name\n\n\t  # Delete the libtool libraries and symlinks.\n\t  for n in $library_names; do\n\t    func_append rmfiles \" $odir/$n\"\n\t  done\n\t  test -n \"$old_library\" && func_append rmfiles \" $odir/$old_library\"\n\n\t  case $opt_mode in\n\t  clean)\n\t    case \" $library_names \" in\n\t    *\" $dlname \"*) ;;\n\t    *) test -n \"$dlname\" && func_append rmfiles \" $odir/$dlname\" ;;\n\t    esac\n\t    test -n \"$libdir\" && func_append rmfiles \" $odir/$name $odir/${name}i\"\n\t    ;;\n\t  uninstall)\n\t    if test -n \"$library_names\"; then\n\t      # Do each command in the postuninstall commands.\n\t      func_execute_cmds \"$postuninstall_cmds\" '$rmforce || exit_status=1'\n\t    fi\n\n\t    if test -n \"$old_library\"; then\n\t      # Do each command in the old_postuninstall commands.\n\t      func_execute_cmds \"$old_postuninstall_cmds\" '$rmforce || exit_status=1'\n\t    fi\n\t    # FIXME: should reinstall the best remaining shared library.\n\t    ;;\n\t  esac\n\tfi\n\t;;\n\n      *.lo)\n\t# Possibly a libtool object, so verify it.\n\tif func_lalib_p \"$file\"; then\n\n\t  # Read the .lo file\n\t  func_source $dir/$name\n\n\t  # Add PIC object to the list of files to remove.\n\t  if test -n \"$pic_object\" && test none != \"$pic_object\"; then\n\t    func_append rmfiles \" $dir/$pic_object\"\n\t  fi\n\n\t  # Add non-PIC object to the list of files to remove.\n\t  if test -n \"$non_pic_object\" && test none != \"$non_pic_object\"; then\n\t    func_append rmfiles \" $dir/$non_pic_object\"\n\t  fi\n\tfi\n\t;;\n\n      *)\n\tif test clean = \"$opt_mode\"; then\n\t  noexename=$name\n\t  case $file in\n\t  *.exe)\n\t    func_stripname '' '.exe' \"$file\"\n\t    file=$func_stripname_result\n\t    func_stripname '' '.exe' \"$name\"\n\t    noexename=$func_stripname_result\n\t    # $file with .exe has already been added to rmfiles,\n\t    # add $file without .exe\n\t    func_append rmfiles \" $file\"\n\t    ;;\n\t  esac\n\t  # Do a test to see if this is a libtool program.\n\t  if func_ltwrapper_p \"$file\"; then\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      relink_command=\n\t      func_source $func_ltwrapper_scriptname_result\n\t      func_append rmfiles \" $func_ltwrapper_scriptname_result\"\n\t    else\n\t      relink_command=\n\t      func_source $dir/$noexename\n\t    fi\n\n\t    # note $name still contains .exe if it was in $file originally\n\t    # as does the version of $file that was added into $rmfiles\n\t    func_append rmfiles \" $odir/$name $odir/${name}S.$objext\"\n\t    if test yes = \"$fast_install\" && test -n \"$relink_command\"; then\n\t      func_append rmfiles \" $odir/lt-$name\"\n\t    fi\n\t    if test \"X$noexename\" != \"X$name\"; then\n\t      func_append rmfiles \" $odir/lt-$noexename.c\"\n\t    fi\n\t  fi\n\tfi\n\t;;\n      esac\n      func_show_eval \"$RM $rmfiles\" 'exit_status=1'\n    done\n\n    # Try to remove the $objdir's in the directories where we deleted files\n    for dir in $rmdirs; do\n      if test -d \"$dir\"; then\n\tfunc_show_eval \"rmdir $dir >/dev/null 2>&1\"\n      fi\n    done\n\n    exit $exit_status\n}\n\nif test uninstall = \"$opt_mode\" || test clean = \"$opt_mode\"; then\n  func_mode_uninstall ${1+\"$@\"}\nfi\n\ntest -z \"$opt_mode\" && {\n  help=$generic_help\n  func_fatal_help \"you must specify a MODE\"\n}\n\ntest -z \"$exec_cmd\" && \\\n  func_fatal_help \"invalid operation mode '$opt_mode'\"\n\nif test -n \"$exec_cmd\"; then\n  eval exec \"$exec_cmd\"\n  exit $EXIT_FAILURE\nfi\n\nexit $exit_status\n\n\n# The TAGs below are defined such that we never get into a situation\n# where we disable both kinds of libraries.  Given conflicting\n# choices, we go for a static library, that is the most portable,\n# since we can't tell whether shared libraries were disabled because\n# the user asked for that or because the platform doesn't support\n# them.  This is particularly important on AIX, because we don't\n# support having both static and shared libraries enabled at the same\n# time on that platform, so we default to a shared-only configuration.\n# If a disable-shared tag is given, we'll fallback to a static-only\n# configuration.  But we'll never go from static-only to shared-only.\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-shared\nbuild_libtool_libs=no\nbuild_old_libs=yes\n# ### END LIBTOOL TAG CONFIG: disable-shared\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-static\nbuild_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`\n# ### END LIBTOOL TAG CONFIG: disable-static\n\n# Local Variables:\n# mode:shell-script\n# sh-indentation:2\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/missing",
    "content": "#! /bin/sh\n# Common wrapper for a few potentially missing GNU programs.\n\nscriptversion=2013-10-28.13; # UTC\n\n# Copyright (C) 1996-2014 Free Software Foundation, Inc.\n# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.\n\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2, or (at your option)\n# any later version.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that program.\n\nif test $# -eq 0; then\n  echo 1>&2 \"Try '$0 --help' for more information\"\n  exit 1\nfi\n\ncase $1 in\n\n  --is-lightweight)\n    # Used by our autoconf macros to check whether the available missing\n    # script is modern enough.\n    exit 0\n    ;;\n\n  --run)\n    # Back-compat with the calling convention used by older automake.\n    shift\n    ;;\n\n  -h|--h|--he|--hel|--help)\n    echo \"\\\n$0 [OPTION]... PROGRAM [ARGUMENT]...\n\nRun 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due\nto PROGRAM being missing or too old.\n\nOptions:\n  -h, --help      display this help and exit\n  -v, --version   output version information and exit\n\nSupported PROGRAM values:\n  aclocal   autoconf  autoheader   autom4te  automake  makeinfo\n  bison     yacc      flex         lex       help2man\n\nVersion suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and\n'g' are ignored when checking the name.\n\nSend bug reports to <bug-automake@gnu.org>.\"\n    exit $?\n    ;;\n\n  -v|--v|--ve|--ver|--vers|--versi|--versio|--version)\n    echo \"missing $scriptversion (GNU Automake)\"\n    exit $?\n    ;;\n\n  -*)\n    echo 1>&2 \"$0: unknown '$1' option\"\n    echo 1>&2 \"Try '$0 --help' for more information\"\n    exit 1\n    ;;\n\nesac\n\n# Run the given program, remember its exit status.\n\"$@\"; st=$?\n\n# If it succeeded, we are done.\ntest $st -eq 0 && exit 0\n\n# Also exit now if we it failed (or wasn't found), and '--version' was\n# passed; such an option is passed most likely to detect whether the\n# program is present and works.\ncase $2 in --version|--help) exit $st;; esac\n\n# Exit code 63 means version mismatch.  This often happens when the user\n# tries to use an ancient version of a tool on a file that requires a\n# minimum version.\nif test $st -eq 63; then\n  msg=\"probably too old\"\nelif test $st -eq 127; then\n  # Program was missing.\n  msg=\"missing on your system\"\nelse\n  # Program was found and executed, but failed.  Give up.\n  exit $st\nfi\n\nperl_URL=http://www.perl.org/\nflex_URL=http://flex.sourceforge.net/\ngnu_software_URL=http://www.gnu.org/software\n\nprogram_details ()\n{\n  case $1 in\n    aclocal|automake)\n      echo \"The '$1' program is part of the GNU Automake package:\"\n      echo \"<$gnu_software_URL/automake>\"\n      echo \"It also requires GNU Autoconf, GNU m4 and Perl in order to run:\"\n      echo \"<$gnu_software_URL/autoconf>\"\n      echo \"<$gnu_software_URL/m4/>\"\n      echo \"<$perl_URL>\"\n      ;;\n    autoconf|autom4te|autoheader)\n      echo \"The '$1' program is part of the GNU Autoconf package:\"\n      echo \"<$gnu_software_URL/autoconf/>\"\n      echo \"It also requires GNU m4 and Perl in order to run:\"\n      echo \"<$gnu_software_URL/m4/>\"\n      echo \"<$perl_URL>\"\n      ;;\n  esac\n}\n\ngive_advice ()\n{\n  # Normalize program name to check for.\n  normalized_program=`echo \"$1\" | sed '\n    s/^gnu-//; t\n    s/^gnu//; t\n    s/^g//; t'`\n\n  printf '%s\\n' \"'$1' is $msg.\"\n\n  configure_deps=\"'configure.ac' or m4 files included by 'configure.ac'\"\n  case $normalized_program in\n    autoconf*)\n      echo \"You should only need it if you modified 'configure.ac',\"\n      echo \"or m4 files included by it.\"\n      program_details 'autoconf'\n      ;;\n    autoheader*)\n      echo \"You should only need it if you modified 'acconfig.h' or\"\n      echo \"$configure_deps.\"\n      program_details 'autoheader'\n      ;;\n    automake*)\n      echo \"You should only need it if you modified 'Makefile.am' or\"\n      echo \"$configure_deps.\"\n      program_details 'automake'\n      ;;\n    aclocal*)\n      echo \"You should only need it if you modified 'acinclude.m4' or\"\n      echo \"$configure_deps.\"\n      program_details 'aclocal'\n      ;;\n   autom4te*)\n      echo \"You might have modified some maintainer files that require\"\n      echo \"the 'autom4te' program to be rebuilt.\"\n      program_details 'autom4te'\n      ;;\n    bison*|yacc*)\n      echo \"You should only need it if you modified a '.y' file.\"\n      echo \"You may want to install the GNU Bison package:\"\n      echo \"<$gnu_software_URL/bison/>\"\n      ;;\n    lex*|flex*)\n      echo \"You should only need it if you modified a '.l' file.\"\n      echo \"You may want to install the Fast Lexical Analyzer package:\"\n      echo \"<$flex_URL>\"\n      ;;\n    help2man*)\n      echo \"You should only need it if you modified a dependency\" \\\n           \"of a man page.\"\n      echo \"You may want to install the GNU Help2man package:\"\n      echo \"<$gnu_software_URL/help2man/>\"\n    ;;\n    makeinfo*)\n      echo \"You should only need it if you modified a '.texi' file, or\"\n      echo \"any other file indirectly affecting the aspect of the manual.\"\n      echo \"You might want to install the Texinfo package:\"\n      echo \"<$gnu_software_URL/texinfo/>\"\n      echo \"The spurious makeinfo call might also be the consequence of\"\n      echo \"using a buggy 'make' (AIX, DU, IRIX), in which case you might\"\n      echo \"want to install GNU make:\"\n      echo \"<$gnu_software_URL/make/>\"\n      ;;\n    *)\n      echo \"You might have modified some files without having the proper\"\n      echo \"tools for further handling them.  Check the 'README' file, it\"\n      echo \"often tells you about the needed prerequisites for installing\"\n      echo \"this package.  You may also peek at any GNU archive site, in\"\n      echo \"case some other package contains this missing '$1' program.\"\n      ;;\n  esac\n}\n\ngive_advice \"$1\" | sed -e '1s/^/WARNING: /' \\\n                       -e '2,$s/^/         /' >&2\n\n# Propagate the correct exit status (expected to be 127 for a program\n# not found, 63 for a program that failed due to version mismatch).\nexit $st\n\n# Local variables:\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"scriptversion=\"\n# time-stamp-format: \"%:y-%02m-%02d.%02H\"\n# time-stamp-time-zone: \"UTC\"\n# time-stamp-end: \"; # UTC\"\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/mkinstalldirs",
    "content": "#! /bin/sh\n# mkinstalldirs --- make directory hierarchy\n\nscriptversion=2005-02-02.21\n\n# Original author: Noah Friedman <friedman@prep.ai.mit.edu>\n# Created: 1993-05-16\n# Public domain.\n#\n# This file is maintained in Automake, please report\n# bugs to <bug-automake@gnu.org> or send patches to\n# <automake-patches@gnu.org>.\n\nerrstatus=0\ndirmode=\"\"\n\nusage=\"\\\nUsage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...\n\nCreate each directory DIR (with mode MODE, if specified), including all\nleading file name components.\n\nReport bugs to <bug-automake@gnu.org>.\"\n\n# process command line arguments\nwhile test $# -gt 0 ; do\n  case $1 in\n    -h | --help | --h*)         # -h for help\n      echo \"$usage\"\n      exit $?\n      ;;\n    -m)                         # -m PERM arg\n      shift\n      test $# -eq 0 && { echo \"$usage\" 1>&2; exit 1; }\n      dirmode=$1\n      shift\n      ;;\n    --version)\n      echo \"$0 $scriptversion\"\n      exit $?\n      ;;\n    --)                         # stop option processing\n      shift\n      break\n      ;;\n    -*)                         # unknown option\n      echo \"$usage\" 1>&2\n      exit 1\n      ;;\n    *)                          # first non-opt arg\n      break\n      ;;\n  esac\ndone\n\nfor file\ndo\n  if test -d \"$file\"; then\n    shift\n  else\n    break\n  fi\ndone\n\ncase $# in\n  0) exit 0 ;;\nesac\n\n# Solaris 8's mkdir -p isn't thread-safe.  If you mkdir -p a/b and\n# mkdir -p a/c at the same time, both will detect that a is missing,\n# one will create a, then the other will try to create a and die with\n# a \"File exists\" error.  This is a problem when calling mkinstalldirs\n# from a parallel make.  We use --version in the probe to restrict\n# ourselves to GNU mkdir, which is thread-safe.\ncase $dirmode in\n  '')\n    if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then\n      echo \"mkdir -p -- $*\"\n      exec mkdir -p -- \"$@\"\n    else\n      # On NextStep and OpenStep, the `mkdir' command does not\n      # recognize any option.  It will interpret all options as\n      # directories to create, and then abort because `.' already\n      # exists.\n      test -d ./-p && rmdir ./-p\n      test -d ./--version && rmdir ./--version\n    fi\n    ;;\n  *)\n    if mkdir -m \"$dirmode\" -p --version . >/dev/null 2>&1 &&\n       test ! -d ./--version; then\n      echo \"mkdir -m $dirmode -p -- $*\"\n      exec mkdir -m \"$dirmode\" -p -- \"$@\"\n    else\n      # Clean up after NextStep and OpenStep mkdir.\n      for d in ./-m ./-p ./--version \"./$dirmode\";\n      do\n        test -d $d && rmdir $d\n      done\n    fi\n    ;;\nesac\n\nfor file\ndo\n  set fnord `echo \":$file\" | sed -ne 's/^:\\//#/;s/^://;s/\\// /g;s/^#/\\//;p'`\n  shift\n\n  pathcomp=\n  for d\n  do\n    pathcomp=\"$pathcomp$d\"\n    case $pathcomp in\n      -*) pathcomp=./$pathcomp ;;\n    esac\n\n    if test ! -d \"$pathcomp\"; then\n      echo \"mkdir $pathcomp\"\n\n      mkdir \"$pathcomp\" || lasterr=$?\n\n      if test ! -d \"$pathcomp\"; then\n\terrstatus=$lasterr\n      else\n\tif test ! -z \"$dirmode\"; then\n\t  echo \"chmod $dirmode $pathcomp\"\n\t  lasterr=\"\"\n\t  chmod \"$dirmode\" \"$pathcomp\" || lasterr=$?\n\n\t  if test ! -z \"$lasterr\"; then\n\t    errstatus=$lasterr\n\t  fi\n\tfi\n      fi\n    fi\n\n    pathcomp=\"$pathcomp/\"\n  done\ndone\n\nexit $errstatus\n\n# Local Variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"scriptversion=\"\n# time-stamp-format: \"%:y-%02m-%02d.%02H\"\n# time-stamp-end: \"$\"\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/reloc-ldflags",
    "content": "#! /bin/sh\n# Output a system dependent linker command for putting a relocatable library\n# search path into an executable.\n#\n#   Copyright 2003-2017 Free Software Foundation, Inc.\n#   Written by Bruno Haible <bruno@clisp.org>, 2003.\n#\n#   This program is free software: you can redistribute it and/or modify\n#   it under the terms of the GNU General Public License as published by\n#   the Free Software Foundation; either version 3 of the License, or\n#   (at your option) any later version.\n#\n#   This program is distributed in the hope that it will be useful,\n#   but WITHOUT ANY WARRANTY; without even the implied warranty of\n#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n#   GNU General Public License for more details.\n#\n#   You should have received a copy of the GNU General Public License\n#   along with this program.  If not, see <http://www.gnu.org/licenses/>.\n#\n#   As a special exception to the GNU General Public License, if you\n#   distribute this file as part of a program that contains a\n#   configuration script generated by Autoconf, you may include it under\n#   the same distribution terms that you use for the rest of that program.\n#\n# The first argument passed to this file is the canonical host specification,\n#    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM\n# or\n#    CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM\n# The environment variable LD should be set by the caller.\n#\n# The second argument is a colon separated list of directories that contain\n# the libraries at installation time.\n#\n# The third argument is the directory into which the executable is going to be\n# installed.\n\nhost=\"$1\"\nhost_cpu=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\1/'`\nhost_vendor=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\2/'`\nhost_os=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\3/'`\n\nlibrary_path_value=$2\n\ninstalldir=$3\n\n# Verify that installdir is absolute.\ncase \"$installdir\" in\n  /*) ;;\n  *)\n    echo \"installdir is not absolute: $installdir\" 1>&2\n    exit 1\n    ;;\nesac\n\ncase \"$host_os\" in\n  linux* | kfreebsd*)\n    rpath=\n    save_IFS=\"$IFS\"; IFS=\":\"\n    for dir in $library_path_value; do\n      IFS=\"$save_IFS\"\n      case \"$dir\" in\n        /*)\n          # Make dir relative to installdir. (Works only if dir is absolute.)\n          idir=\"$installdir\"\n          while true; do\n            dfirst=`echo \"$dir\" | sed -n -e 's,^//*\\([^/]*\\).*$,/\\1,p'`\n            ifirst=`echo \"$idir\" | sed -n -e 's,^//*\\([^/]*\\).*$,/\\1,p'`\n            if test -z \"$dfirst\" || test -z \"$ifirst\"; then\n              break\n            fi\n            if test \"$dfirst\" != \"$ifirst\"; then\n              break\n            fi\n            dir=`echo \"$dir\" | sed -e 's,^//*[^/]*,,'`\n            idir=`echo \"$idir\" | sed -e 's,^//*[^/]*,,'`\n          done\n          dir=\"\\$ORIGIN\"`echo \"$idir\" | sed -e 's,//*[^/]*,/..,g'`\"$dir\"\n          # Add dir to rpath.\n          rpath=\"${rpath}${rpath:+ }$dir\"\n          ;;\n        *)\n          if test -n \"$dir\"; then\n            echo \"libdir is not absolute: $dir\" 1>&2\n          fi\n          ;;\n      esac\n    done\n    IFS=\"$save_IFS\"\n    # Output it.\n    if test -n \"$rpath\"; then\n      echo \"-Wl,-rpath,$rpath\"\n    fi\n    ;;\n  *)\n    echo \"relocation via rpath not supported on this system: $host\" 1>&2\n    exit 1\n    ;;\nesac\n\nexit 0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/snippet/_Noreturn.h",
    "content": "#if !defined _Noreturn && __STDC_VERSION__ < 201112\n# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \\\n      || 0x5110 <= __SUNPRO_C)\n#  define _Noreturn __attribute__ ((__noreturn__))\n# elif 1200 <= _MSC_VER\n#  define _Noreturn __declspec (noreturn)\n# else\n#  define _Noreturn\n# endif\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/snippet/arg-nonnull.h",
    "content": "/* A C macro for declaring that specific arguments must not be NULL.\n   Copyright (C) 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify it\n   under the terms of the GNU General Public License as published\n   by the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools\n   that the values passed as arguments n, ..., m must be non-NULL pointers.\n   n = 1 stands for the first argument, n = 2 for the second argument etc.  */\n#ifndef _GL_ARG_NONNULL\n# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3\n#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))\n# else\n#  define _GL_ARG_NONNULL(params)\n# endif\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/snippet/c++defs.h",
    "content": "/* C++ compatible function declaration macros.\n   Copyright (C) 2010-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify it\n   under the terms of the GNU General Public License as published\n   by the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _GL_CXXDEFS_H\n#define _GL_CXXDEFS_H\n\n/* Begin/end the GNULIB_NAMESPACE namespace.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {\n# define _GL_END_NAMESPACE }\n#else\n# define _GL_BEGIN_NAMESPACE\n# define _GL_END_NAMESPACE\n#endif\n\n/* The three most frequent use cases of these macros are:\n\n   * For providing a substitute for a function that is missing on some\n     platforms, but is declared and works fine on the platforms on which\n     it exists:\n\n       #if @GNULIB_FOO@\n       # if !@HAVE_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       # endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on all platforms,\n     but is broken/insufficient and needs to be replaced on some platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on some platforms\n     but is broken/insufficient and needs to be replaced on some of them and\n     is additionally either missing or undeclared on some other platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       #  endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n*/\n\n/* _GL_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#if defined __cplusplus\n# define _GL_EXTERN_C extern \"C\"\n#else\n# define _GL_EXTERN_C extern\n#endif\n\n/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);\n   declares a replacement function, named rpl_func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \\\n  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)\n#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype rpl_func parameters_and_attributes\n\n/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);\n   declares the system function, named func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype func parameters_and_attributes\n\n/* _GL_CXXALIAS_RPL (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.\n   Example:\n     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n\n   Wrapping rpl_func in an object with an inline conversion operator\n   avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#define _GL_CXXALIAS_RPL(func,rettype,parameters) \\\n  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::rpl_func;                                  \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);\n   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);\n   except that the C function rpl_func may have a slightly different\n   declaration.  A cast is used to silence the \"invalid conversion\" error\n   that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                     \\\n    {                                                              \\\n      static const struct _gl_ ## func ## _wrapper                 \\\n      {                                                            \\\n        typedef rettype (*type) parameters;                        \\\n                                                                   \\\n        inline operator type () const                              \\\n        {                                                          \\\n          return reinterpret_cast<type>(::rpl_func);               \\\n        }                                                          \\\n      } func = {};                                                 \\\n    }                                                              \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to the system provided function func, if GNULIB_NAMESPACE\n   is defined.\n   Example:\n     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n\n   Wrapping func in an object with an inline conversion operator\n   avoids a reference to func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS(func,rettype,parameters)            \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::func;                                      \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function func may have a slightly different declaration.\n   A cast is used to silence the \"invalid conversion\" error that would\n   otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                          \\\n    {                                                   \\\n      static const struct _gl_ ## func ## _wrapper      \\\n      {                                                 \\\n        typedef rettype (*type) parameters;             \\\n                                                        \\\n        inline operator type () const                   \\\n        {                                               \\\n          return reinterpret_cast<type>(::func);        \\\n        }                                               \\\n      } func = {};                                      \\\n    }                                                   \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function is picked among a set of overloaded functions,\n   namely the one with rettype2 and parameters2.  Two consecutive casts\n   are used to silence the \"cannot find a match\" and \"invalid conversion\"\n   errors that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n  /* The outer cast must be a reinterpret_cast.\n     The inner cast: When the function is defined as a set of overloaded\n     functions, it works as a static_cast<>, choosing the designated variant.\n     When the function is defined as a single variant, it works as a\n     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    namespace GNULIB_NAMESPACE                                                \\\n    {                                                                         \\\n      static const struct _gl_ ## func ## _wrapper                            \\\n      {                                                                       \\\n        typedef rettype (*type) parameters;                                   \\\n                                                                              \\\n        inline operator type () const                                         \\\n        {                                                                     \\\n          return reinterpret_cast<type>((rettype2 (*) parameters2)(::func));  \\\n        }                                                                     \\\n      } func = {};                                                            \\\n    }                                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN (func);\n   causes a warning to be emitted when ::func is used but not when\n   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded\n   variants.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN(func) \\\n   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN_1(func,namespace) \\\n   _GL_CXXALIASWARN_2 (func, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n    _GL_WARN_ON_USE (func, \\\n                     \"The symbol ::\" #func \" refers to the system function. \" \\\n                     \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN(func) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);\n   causes a warning to be emitted when the given overloaded variant of ::func\n   is used but not when GNULIB_NAMESPACE::func is used.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \\\n                        GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \\\n   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \\\n                         \"The symbol ::\" #func \" refers to the system function. \" \\\n                         \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n#endif /* _GL_CXXDEFS_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/build-aux/snippet/warn-on-use.h",
    "content": "/* A C macro for emitting warnings if a function is used.\n   Copyright (C) 2010-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify it\n   under the terms of the GNU General Public License as published\n   by the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* _GL_WARN_ON_USE (function, \"literal string\") issues a declaration\n   for FUNCTION which will then trigger a compiler warning containing\n   the text of \"literal string\" anywhere that function is called, if\n   supported by the compiler.  If the compiler does not support this\n   feature, the macro expands to an unused extern declaration.\n\n   This macro is useful for marking a function as a potential\n   portability trap, with the intent that \"literal string\" include\n   instructions on the replacement function that should be used\n   instead.  However, one of the reasons that a function is a\n   portability trap is if it has the wrong signature.  Declaring\n   FUNCTION with a different signature in C is a compilation error, so\n   this macro must use the same type as any existing declaration so\n   that programs that avoid the problematic FUNCTION do not fail to\n   compile merely because they included a header that poisoned the\n   function.  But this implies that _GL_WARN_ON_USE is only safe to\n   use if FUNCTION is known to already have a declaration.  Use of\n   this macro implies that there must not be any other macro hiding\n   the declaration of FUNCTION; but undefining FUNCTION first is part\n   of the poisoning process anyway (although for symbols that are\n   provided only via a macro, the result is a compilation error rather\n   than a warning containing \"literal string\").  Also note that in\n   C++, it is only safe to use if FUNCTION has no overloads.\n\n   For an example, it is possible to poison 'getline' by:\n   - adding a call to gl_WARN_ON_USE_PREPARE([[#include <stdio.h>]],\n     [getline]) in configure.ac, which potentially defines\n     HAVE_RAW_DECL_GETLINE\n   - adding this code to a header that wraps the system <stdio.h>:\n     #undef getline\n     #if HAVE_RAW_DECL_GETLINE\n     _GL_WARN_ON_USE (getline, \"getline is required by POSIX 2008, but\"\n       \"not universally present; use the gnulib module getline\");\n     #endif\n\n   It is not possible to directly poison global variables.  But it is\n   possible to write a wrapper accessor function, and poison that\n   (less common usage, like &environ, will cause a compilation error\n   rather than issue the nice warning, but the end result of informing\n   the developer about their portability problem is still achieved):\n   #if HAVE_RAW_DECL_ENVIRON\n   static char ***rpl_environ (void) { return &environ; }\n   _GL_WARN_ON_USE (rpl_environ, \"environ is not always properly declared\");\n   # undef environ\n   # define environ (*rpl_environ ())\n   #endif\n   */\n#ifndef _GL_WARN_ON_USE\n\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n/* A compiler attribute is available in gcc versions 4.3.0 and later.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function __attribute__ ((__warning__ (message)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE(function, message) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, \"string\")\n   is like _GL_WARN_ON_USE (function, \"string\"), except that the function is\n   declared with the given prototype, consisting of return type, parameters,\n   and attributes.\n   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does\n   not work in this case.  */\n#ifndef _GL_WARN_ON_USE_CXX\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes \\\n     __attribute__ ((__warning__ (msg)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#ifndef _GL_WARN_EXTERN_C\n# if defined __cplusplus\n#  define _GL_WARN_EXTERN_C extern \"C\"\n# else\n#  define _GL_WARN_EXTERN_C extern\n# endif\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/config.h",
    "content": "/* config.h.  Generated from config.h.in by configure.  */\n/* config.h.in.  Generated from configure.ac by autoheader.  */\n\n/* Define to the number of bits in type 'ptrdiff_t'. */\n#define BITSIZEOF_PTRDIFF_T 64\n\n/* Define to the number of bits in type 'sig_atomic_t'. */\n#define BITSIZEOF_SIG_ATOMIC_T 32\n\n/* Define to the number of bits in type 'size_t'. */\n#define BITSIZEOF_SIZE_T 64\n\n/* Define to the number of bits in type 'wchar_t'. */\n#define BITSIZEOF_WCHAR_T 32\n\n/* Define to the number of bits in type 'wint_t'. */\n#define BITSIZEOF_WINT_T 32\n\n/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP\n   systems. This function is required for `alloca.c' support on those systems.\n   */\n/* #undef CRAY_STACKSEG_END */\n\n/* Define to 1 if using `alloca.c'. */\n/* #undef C_ALLOCA */\n\n/* Define to 1 if // is a file system root distinct from /. */\n/* #undef DOUBLE_SLASH_IS_DISTINCT_ROOT */\n\n/* Define as good substitute value for EILSEQ. */\n/* #undef EILSEQ */\n\n/* Define to 1 to enable a few rarely used encodings. */\n/* #undef ENABLE_EXTRA */\n\n/* Define to 1 if translation of program messages to the user's native\n   language is requested. */\n/* #undef ENABLE_NLS */\n\n/* Define to 1 if the package shall run at any location in the file system. */\n/* #undef ENABLE_RELOCATABLE */\n\n/* Define to 1 if realpath() can malloc memory, always gives an absolute path,\n   and handles trailing slash correctly. */\n/* #undef FUNC_REALPATH_WORKS */\n\n/* Define if gettimeofday clobbers the localtime buffer. */\n/* #undef GETTIMEOFDAY_CLOBBERS_LOCALTIME */\n\n/* Define this to 'void' or 'struct timezone' to match the system's\n   declaration of the second argument to gettimeofday. */\n#define GETTIMEOFDAY_TIMEZONE void\n\n/* Define to a C preprocessor expression that evaluates to 1 or 0, depending\n   whether the gnulib module canonicalize-lgpl shall be considered present. */\n#define GNULIB_CANONICALIZE_LGPL 1\n\n/* Define to a C preprocessor expression that evaluates to 1 or 0, depending\n   whether the gnulib module fscanf shall be considered present. */\n#define GNULIB_FSCANF 1\n\n/* Define to 1 if printf and friends should be labeled with attribute\n   \"__gnu_printf__\" instead of \"__printf__\" */\n/* #undef GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU */\n\n/* Define to a C preprocessor expression that evaluates to 1 or 0, depending\n   whether the gnulib module scanf shall be considered present. */\n#define GNULIB_SCANF 1\n\n/* Define to a C preprocessor expression that evaluates to 1 or 0, depending\n   whether the gnulib module sigpipe shall be considered present. */\n#define GNULIB_SIGPIPE 1\n\n/* Define to a C preprocessor expression that evaluates to 1 or 0, depending\n   whether the gnulib module strerror shall be considered present. */\n#define GNULIB_STRERROR 1\n\n/* Define to 1 when the gnulib module canonicalize_file_name should be tested.\n   */\n#define GNULIB_TEST_CANONICALIZE_FILE_NAME 1\n\n/* Define to 1 when the gnulib module environ should be tested. */\n#define GNULIB_TEST_ENVIRON 1\n\n/* Define to 1 when the gnulib module gettimeofday should be tested. */\n#define GNULIB_TEST_GETTIMEOFDAY 1\n\n/* Define to 1 when the gnulib module lstat should be tested. */\n#define GNULIB_TEST_LSTAT 1\n\n/* Define to 1 when the gnulib module malloc-posix should be tested. */\n#define GNULIB_TEST_MALLOC_POSIX 1\n\n/* Define to 1 when the gnulib module raise should be tested. */\n#define GNULIB_TEST_RAISE 1\n\n/* Define to 1 when the gnulib module read should be tested. */\n#define GNULIB_TEST_READ 1\n\n/* Define to 1 when the gnulib module readlink should be tested. */\n#define GNULIB_TEST_READLINK 1\n\n/* Define to 1 when the gnulib module realpath should be tested. */\n#define GNULIB_TEST_REALPATH 1\n\n/* Define to 1 when the gnulib module sigprocmask should be tested. */\n#define GNULIB_TEST_SIGPROCMASK 1\n\n/* Define to 1 when the gnulib module stat should be tested. */\n#define GNULIB_TEST_STAT 1\n\n/* Define to 1 when the gnulib module strerror should be tested. */\n#define GNULIB_TEST_STRERROR 1\n\n/* Define to 1 if you have `alloca', as a function or macro. */\n#define HAVE_ALLOCA 1\n\n/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).\n   */\n#define HAVE_ALLOCA_H 1\n\n/* Define to 1 if you have the `canonicalize_file_name' function. */\n/* #undef HAVE_CANONICALIZE_FILE_NAME */\n\n/* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the\n   CoreFoundation framework. */\n#define HAVE_CFLOCALECOPYCURRENT 1\n\n/* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in\n   the CoreFoundation framework. */\n#define HAVE_CFPREFERENCESCOPYAPPVALUE 1\n\n/* Define if the GNU dcgettext() function is already present or preinstalled.\n   */\n/* #undef HAVE_DCGETTEXT */\n\n/* Define to 1 if you have the declaration of `clearerr_unlocked', and to 0 if\n   you don't. */\n#define HAVE_DECL_CLEARERR_UNLOCKED 1\n\n/* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you\n   don't. */\n#define HAVE_DECL_FEOF_UNLOCKED 1\n\n/* Define to 1 if you have the declaration of `ferror_unlocked', and to 0 if\n   you don't. */\n#define HAVE_DECL_FERROR_UNLOCKED 1\n\n/* Define to 1 if you have the declaration of `fflush_unlocked', and to 0 if\n   you don't. */\n#define HAVE_DECL_FFLUSH_UNLOCKED 0\n\n/* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if\n   you don't. */\n#define HAVE_DECL_FGETS_UNLOCKED 0\n\n/* Define to 1 if you have the declaration of `fputc_unlocked', and to 0 if\n   you don't. */\n#define HAVE_DECL_FPUTC_UNLOCKED 0\n\n/* Define to 1 if you have the declaration of `fputs_unlocked', and to 0 if\n   you don't. */\n#define HAVE_DECL_FPUTS_UNLOCKED 0\n\n/* Define to 1 if you have the declaration of `fread_unlocked', and to 0 if\n   you don't. */\n#define HAVE_DECL_FREAD_UNLOCKED 0\n\n/* Define to 1 if you have the declaration of `fwrite_unlocked', and to 0 if\n   you don't. */\n#define HAVE_DECL_FWRITE_UNLOCKED 0\n\n/* Define to 1 if you have the declaration of `getchar_unlocked', and to 0 if\n   you don't. */\n#define HAVE_DECL_GETCHAR_UNLOCKED 1\n\n/* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you\n   don't. */\n#define HAVE_DECL_GETC_UNLOCKED 1\n\n/* Define to 1 if you have the declaration of `program_invocation_name', and\n   to 0 if you don't. */\n#define HAVE_DECL_PROGRAM_INVOCATION_NAME 0\n\n/* Define to 1 if you have the declaration of `program_invocation_short_name',\n   and to 0 if you don't. */\n#define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0\n\n/* Define to 1 if you have the declaration of `putchar_unlocked', and to 0 if\n   you don't. */\n#define HAVE_DECL_PUTCHAR_UNLOCKED 1\n\n/* Define to 1 if you have the declaration of `putc_unlocked', and to 0 if you\n   don't. */\n#define HAVE_DECL_PUTC_UNLOCKED 1\n\n/* Define to 1 if you have the declaration of `setenv', and to 0 if you don't.\n   */\n#define HAVE_DECL_SETENV 1\n\n/* Define to 1 if you have the declaration of `strerror_r', and to 0 if you\n   don't. */\n#define HAVE_DECL_STRERROR_R 1\n\n/* Define to 1 if you have the declaration of `__argv', and to 0 if you don't.\n   */\n#define HAVE_DECL___ARGV 0\n\n/* Define to 1 if you have the <dlfcn.h> header file. */\n#define HAVE_DLFCN_H 1\n\n/* Define if you have the declaration of environ. */\n/* #undef HAVE_ENVIRON_DECL */\n\n/* Define to 1 if you have the `getcwd' function. */\n#define HAVE_GETCWD 1\n\n/* Define to 1 if you have the `getc_unlocked' function. */\n#define HAVE_GETC_UNLOCKED 1\n\n/* Define to 1 if you have the `getexecname' function. */\n/* #undef HAVE_GETEXECNAME */\n\n/* Define to 1 if you have the `getprogname' function. */\n#define HAVE_GETPROGNAME 1\n\n/* Define if the GNU gettext() function is already present or preinstalled. */\n/* #undef HAVE_GETTEXT */\n\n/* Define to 1 if you have the `gettimeofday' function. */\n#define HAVE_GETTIMEOFDAY 1\n\n/* Define if you have the iconv() function and it works. */\n#define HAVE_ICONV 1\n\n/* Define to 1 if you have the <inttypes.h> header file. */\n#define HAVE_INTTYPES_H 1\n\n/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */\n#define HAVE_LANGINFO_CODESET 1\n\n/* Define to 1 if you have the <limits.h> header file. */\n#define HAVE_LIMITS_H 1\n\n/* Define to 1 if the system has the type 'long long int'. */\n#define HAVE_LONG_LONG_INT 1\n\n/* Define to 1 if you have the `lstat' function. */\n#define HAVE_LSTAT 1\n\n/* Define to 1 if you have the <mach-o/dyld.h> header file. */\n/* #undef HAVE_MACH_O_DYLD_H */\n\n/* Define if the 'malloc' function is POSIX compliant. */\n#define HAVE_MALLOC_POSIX 1\n\n/* Define to 1 if you have the `mbrtowc' function. */\n#define HAVE_MBRTOWC 1\n\n/* Define to 1 if you have the `mbsinit' function. */\n#define HAVE_MBSINIT 1\n\n/* Define to 1 if <wchar.h> declares mbstate_t. */\n#define HAVE_MBSTATE_T 1\n\n/* Define to 1 if you have the `memmove' function. */\n#define HAVE_MEMMOVE 1\n\n/* Define to 1 if you have the <memory.h> header file. */\n#define HAVE_MEMORY_H 1\n\n/* Define to 1 on MSVC platforms that have the \"invalid parameter handler\"\n   concept. */\n/* #undef HAVE_MSVC_INVALID_PARAMETER_HANDLER */\n\n/* Define to 1 if you have the `raise' function. */\n#define HAVE_RAISE 1\n\n/* Define to 1 if atoll is declared even after undefining macros. */\n#define HAVE_RAW_DECL_ATOLL 1\n\n/* Define to 1 if canonicalize_file_name is declared even after undefining\n   macros. */\n/* #undef HAVE_RAW_DECL_CANONICALIZE_FILE_NAME */\n\n/* Define to 1 if chdir is declared even after undefining macros. */\n#define HAVE_RAW_DECL_CHDIR 1\n\n/* Define to 1 if chown is declared even after undefining macros. */\n#define HAVE_RAW_DECL_CHOWN 1\n\n/* Define to 1 if dprintf is declared even after undefining macros. */\n#define HAVE_RAW_DECL_DPRINTF 1\n\n/* Define to 1 if dup is declared even after undefining macros. */\n#define HAVE_RAW_DECL_DUP 1\n\n/* Define to 1 if dup2 is declared even after undefining macros. */\n#define HAVE_RAW_DECL_DUP2 1\n\n/* Define to 1 if dup3 is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_DUP3 */\n\n/* Define to 1 if endusershell is declared even after undefining macros. */\n#define HAVE_RAW_DECL_ENDUSERSHELL 1\n\n/* Define to 1 if environ is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_ENVIRON */\n\n/* Define to 1 if euidaccess is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_EUIDACCESS */\n\n/* Define to 1 if faccessat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FACCESSAT 1\n\n/* Define to 1 if fchdir is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FCHDIR 1\n\n/* Define to 1 if fchmodat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FCHMODAT 1\n\n/* Define to 1 if fchownat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FCHOWNAT 1\n\n/* Define to 1 if fcntl is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FCNTL 1\n\n/* Define to 1 if fdatasync is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_FDATASYNC */\n\n/* Define to 1 if ffsl is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FFSL 1\n\n/* Define to 1 if ffsll is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FFSLL 1\n\n/* Define to 1 if fpurge is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FPURGE 1\n\n/* Define to 1 if fseeko is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FSEEKO 1\n\n/* Define to 1 if fstat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FSTAT 1\n\n/* Define to 1 if fstatat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FSTATAT 1\n\n/* Define to 1 if fsync is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FSYNC 1\n\n/* Define to 1 if ftello is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FTELLO 1\n\n/* Define to 1 if ftruncate is declared even after undefining macros. */\n#define HAVE_RAW_DECL_FTRUNCATE 1\n\n/* Define to 1 if futimens is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_FUTIMENS */\n\n/* Define to 1 if getcwd is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETCWD 1\n\n/* Define to 1 if getdelim is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETDELIM 1\n\n/* Define to 1 if getdomainname is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETDOMAINNAME 1\n\n/* Define to 1 if getdtablesize is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETDTABLESIZE 1\n\n/* Define to 1 if getgroups is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETGROUPS 1\n\n/* Define to 1 if gethostname is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETHOSTNAME 1\n\n/* Define to 1 if getline is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETLINE 1\n\n/* Define to 1 if getloadavg is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETLOADAVG 1\n\n/* Define to 1 if getlogin is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETLOGIN 1\n\n/* Define to 1 if getlogin_r is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETLOGIN_R 1\n\n/* Define to 1 if getpagesize is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETPAGESIZE 1\n\n/* Define to 1 if gets is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETS 1\n\n/* Define to 1 if getsubopt is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETSUBOPT 1\n\n/* Define to 1 if gettimeofday is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETTIMEOFDAY 1\n\n/* Define to 1 if getusershell is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GETUSERSHELL 1\n\n/* Define to 1 if grantpt is declared even after undefining macros. */\n#define HAVE_RAW_DECL_GRANTPT 1\n\n/* Define to 1 if group_member is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_GROUP_MEMBER */\n\n/* Define to 1 if initstate is declared even after undefining macros. */\n#define HAVE_RAW_DECL_INITSTATE 1\n\n/* Define to 1 if initstate_r is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_INITSTATE_R */\n\n/* Define to 1 if isatty is declared even after undefining macros. */\n#define HAVE_RAW_DECL_ISATTY 1\n\n/* Define to 1 if lchmod is declared even after undefining macros. */\n#define HAVE_RAW_DECL_LCHMOD 1\n\n/* Define to 1 if lchown is declared even after undefining macros. */\n#define HAVE_RAW_DECL_LCHOWN 1\n\n/* Define to 1 if link is declared even after undefining macros. */\n#define HAVE_RAW_DECL_LINK 1\n\n/* Define to 1 if linkat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_LINKAT 1\n\n/* Define to 1 if lseek is declared even after undefining macros. */\n#define HAVE_RAW_DECL_LSEEK 1\n\n/* Define to 1 if lstat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_LSTAT 1\n\n/* Define to 1 if memmem is declared even after undefining macros. */\n#define HAVE_RAW_DECL_MEMMEM 1\n\n/* Define to 1 if mempcpy is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_MEMPCPY */\n\n/* Define to 1 if memrchr is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_MEMRCHR */\n\n/* Define to 1 if mkdirat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_MKDIRAT 1\n\n/* Define to 1 if mkdtemp is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_MKDTEMP */\n\n/* Define to 1 if mkfifo is declared even after undefining macros. */\n#define HAVE_RAW_DECL_MKFIFO 1\n\n/* Define to 1 if mkfifoat is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_MKFIFOAT */\n\n/* Define to 1 if mknod is declared even after undefining macros. */\n#define HAVE_RAW_DECL_MKNOD 1\n\n/* Define to 1 if mknodat is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_MKNODAT */\n\n/* Define to 1 if mkostemp is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_MKOSTEMP */\n\n/* Define to 1 if mkostemps is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_MKOSTEMPS */\n\n/* Define to 1 if mkstemp is declared even after undefining macros. */\n#define HAVE_RAW_DECL_MKSTEMP 1\n\n/* Define to 1 if mkstemps is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_MKSTEMPS */\n\n/* Define to 1 if openat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_OPENAT 1\n\n/* Define to 1 if pclose is declared even after undefining macros. */\n#define HAVE_RAW_DECL_PCLOSE 1\n\n/* Define to 1 if pipe is declared even after undefining macros. */\n#define HAVE_RAW_DECL_PIPE 1\n\n/* Define to 1 if pipe2 is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_PIPE2 */\n\n/* Define to 1 if popen is declared even after undefining macros. */\n#define HAVE_RAW_DECL_POPEN 1\n\n/* Define to 1 if posix_openpt is declared even after undefining macros. */\n#define HAVE_RAW_DECL_POSIX_OPENPT 1\n\n/* Define to 1 if pread is declared even after undefining macros. */\n#define HAVE_RAW_DECL_PREAD 1\n\n/* Define to 1 if pthread_sigmask is declared even after undefining macros. */\n#define HAVE_RAW_DECL_PTHREAD_SIGMASK 1\n\n/* Define to 1 if ptsname is declared even after undefining macros. */\n#define HAVE_RAW_DECL_PTSNAME 1\n\n/* Define to 1 if ptsname_r is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_PTSNAME_R */\n\n/* Define to 1 if pwrite is declared even after undefining macros. */\n#define HAVE_RAW_DECL_PWRITE 1\n\n/* Define to 1 if qsort_r is declared even after undefining macros. */\n#define HAVE_RAW_DECL_QSORT_R 1\n\n/* Define to 1 if random is declared even after undefining macros. */\n#define HAVE_RAW_DECL_RANDOM 1\n\n/* Define to 1 if random_r is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_RANDOM_R */\n\n/* Define to 1 if rawmemchr is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_RAWMEMCHR */\n\n/* Define to 1 if readlink is declared even after undefining macros. */\n#define HAVE_RAW_DECL_READLINK 1\n\n/* Define to 1 if readlinkat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_READLINKAT 1\n\n/* Define to 1 if realpath is declared even after undefining macros. */\n#define HAVE_RAW_DECL_REALPATH 1\n\n/* Define to 1 if renameat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_RENAMEAT 1\n\n/* Define to 1 if rmdir is declared even after undefining macros. */\n#define HAVE_RAW_DECL_RMDIR 1\n\n/* Define to 1 if rpmatch is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_RPMATCH */\n\n/* Define to 1 if secure_getenv is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_SECURE_GETENV */\n\n/* Define to 1 if setenv is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SETENV 1\n\n/* Define to 1 if sethostname is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SETHOSTNAME 1\n\n/* Define to 1 if setstate is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SETSTATE 1\n\n/* Define to 1 if setstate_r is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_SETSTATE_R */\n\n/* Define to 1 if setusershell is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SETUSERSHELL 1\n\n/* Define to 1 if sigaction is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SIGACTION 1\n\n/* Define to 1 if sigaddset is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SIGADDSET 1\n\n/* Define to 1 if sigdelset is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SIGDELSET 1\n\n/* Define to 1 if sigemptyset is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SIGEMPTYSET 1\n\n/* Define to 1 if sigfillset is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SIGFILLSET 1\n\n/* Define to 1 if sigismember is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SIGISMEMBER 1\n\n/* Define to 1 if sigpending is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SIGPENDING 1\n\n/* Define to 1 if sigprocmask is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SIGPROCMASK 1\n\n/* Define to 1 if sleep is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SLEEP 1\n\n/* Define to 1 if snprintf is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SNPRINTF 1\n\n/* Define to 1 if srandom is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SRANDOM 1\n\n/* Define to 1 if srandom_r is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_SRANDOM_R */\n\n/* Define to 1 if stat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STAT 1\n\n/* Define to 1 if stpcpy is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STPCPY 1\n\n/* Define to 1 if stpncpy is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STPNCPY 1\n\n/* Define to 1 if strcasestr is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRCASESTR 1\n\n/* Define to 1 if strchrnul is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_STRCHRNUL */\n\n/* Define to 1 if strdup is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRDUP 1\n\n/* Define to 1 if strerror_r is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRERROR_R 1\n\n/* Define to 1 if strncat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRNCAT 1\n\n/* Define to 1 if strndup is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRNDUP 1\n\n/* Define to 1 if strnlen is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRNLEN 1\n\n/* Define to 1 if strpbrk is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRPBRK 1\n\n/* Define to 1 if strsep is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRSEP 1\n\n/* Define to 1 if strsignal is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRSIGNAL 1\n\n/* Define to 1 if strtod is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRTOD 1\n\n/* Define to 1 if strtok_r is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRTOK_R 1\n\n/* Define to 1 if strtoll is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRTOLL 1\n\n/* Define to 1 if strtoull is declared even after undefining macros. */\n#define HAVE_RAW_DECL_STRTOULL 1\n\n/* Define to 1 if strverscmp is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_STRVERSCMP */\n\n/* Define to 1 if symlink is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SYMLINK 1\n\n/* Define to 1 if symlinkat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_SYMLINKAT 1\n\n/* Define to 1 if tmpfile is declared even after undefining macros. */\n#define HAVE_RAW_DECL_TMPFILE 1\n\n/* Define to 1 if ttyname_r is declared even after undefining macros. */\n#define HAVE_RAW_DECL_TTYNAME_R 1\n\n/* Define to 1 if unlink is declared even after undefining macros. */\n#define HAVE_RAW_DECL_UNLINK 1\n\n/* Define to 1 if unlinkat is declared even after undefining macros. */\n#define HAVE_RAW_DECL_UNLINKAT 1\n\n/* Define to 1 if unlockpt is declared even after undefining macros. */\n#define HAVE_RAW_DECL_UNLOCKPT 1\n\n/* Define to 1 if unsetenv is declared even after undefining macros. */\n#define HAVE_RAW_DECL_UNSETENV 1\n\n/* Define to 1 if usleep is declared even after undefining macros. */\n#define HAVE_RAW_DECL_USLEEP 1\n\n/* Define to 1 if utimensat is declared even after undefining macros. */\n/* #undef HAVE_RAW_DECL_UTIMENSAT */\n\n/* Define to 1 if vdprintf is declared even after undefining macros. */\n#define HAVE_RAW_DECL_VDPRINTF 1\n\n/* Define to 1 if vsnprintf is declared even after undefining macros. */\n#define HAVE_RAW_DECL_VSNPRINTF 1\n\n/* Define to 1 if _Exit is declared even after undefining macros. */\n#define HAVE_RAW_DECL__EXIT 1\n\n/* Define to 1 if you have the `readlink' function. */\n#define HAVE_READLINK 1\n\n/* Define to 1 if you have the `readlinkat' function. */\n#define HAVE_READLINKAT 1\n\n/* Define to 1 if you have the `realpath' function. */\n#define HAVE_REALPATH 1\n\n/* Define to 1 if you have the <search.h> header file. */\n#define HAVE_SEARCH_H 1\n\n/* Define to 1 if you have the `setenv' function. */\n#define HAVE_SETENV 1\n\n/* Define to 1 if you have the `setlocale' function. */\n#define HAVE_SETLOCALE 1\n\n/* Define to 1 if 'sig_atomic_t' is a signed integer type. */\n#define HAVE_SIGNED_SIG_ATOMIC_T 1\n\n/* Define to 1 if 'wchar_t' is a signed integer type. */\n#define HAVE_SIGNED_WCHAR_T 1\n\n/* Define to 1 if 'wint_t' is a signed integer type. */\n#define HAVE_SIGNED_WINT_T 1\n\n/* Define to 1 if the system has the type `sigset_t'. */\n#define HAVE_SIGSET_T 1\n\n/* Define to 1 if you have the <stdint.h> header file. */\n#define HAVE_STDINT_H 1\n\n/* Define to 1 if you have the <stdlib.h> header file. */\n#define HAVE_STDLIB_H 1\n\n/* Define to 1 if you have the `strerror_r' function. */\n#define HAVE_STRERROR_R 1\n\n/* Define to 1 if you have the <strings.h> header file. */\n#define HAVE_STRINGS_H 1\n\n/* Define to 1 if you have the <string.h> header file. */\n#define HAVE_STRING_H 1\n\n/* Define to 1 if you have the `symlink' function. */\n#define HAVE_SYMLINK 1\n\n/* Define to 1 if you have the <sys/bitypes.h> header file. */\n/* #undef HAVE_SYS_BITYPES_H */\n\n/* Define to 1 if you have the <sys/inttypes.h> header file. */\n/* #undef HAVE_SYS_INTTYPES_H */\n\n/* Define to 1 if you have the <sys/param.h> header file. */\n#define HAVE_SYS_PARAM_H 1\n\n/* Define to 1 if you have the <sys/socket.h> header file. */\n#define HAVE_SYS_SOCKET_H 1\n\n/* Define to 1 if you have the <sys/stat.h> header file. */\n#define HAVE_SYS_STAT_H 1\n\n/* Define to 1 if you have the <sys/timeb.h> header file. */\n/* #undef HAVE_SYS_TIMEB_H */\n\n/* Define to 1 if you have the <sys/time.h> header file. */\n#define HAVE_SYS_TIME_H 1\n\n/* Define to 1 if you have the <sys/types.h> header file. */\n#define HAVE_SYS_TYPES_H 1\n\n/* Define to 1 if you have the `tsearch' function. */\n#define HAVE_TSEARCH 1\n\n/* Define to 1 if you have the <unistd.h> header file. */\n#define HAVE_UNISTD_H 1\n\n/* Define to 1 if the system has the type 'unsigned long long int'. */\n#define HAVE_UNSIGNED_LONG_LONG_INT 1\n\n/* Define if you have a global __progname variable */\n#define HAVE_VAR___PROGNAME 1\n\n/* Define to 1 or 0, depending whether the compiler supports simple visibility\n   declarations. */\n#define HAVE_VISIBILITY 1\n\n/* Define to 1 if you have the <wchar.h> header file. */\n#define HAVE_WCHAR_H 1\n\n/* Define if you have the 'wchar_t' type. */\n#define HAVE_WCHAR_T 1\n\n/* Define to 1 if you have the `wcrtomb' function. */\n#define HAVE_WCRTOMB 1\n\n/* Define to 1 if you have the <winsock2.h> header file. */\n/* #undef HAVE_WINSOCK2_H */\n\n/* Define if you have the 'wint_t' type. */\n#define HAVE_WINT_T 1\n\n/* Define to 1 if O_NOATIME works. */\n#define HAVE_WORKING_O_NOATIME 0\n\n/* Define to 1 if O_NOFOLLOW works. */\n#define HAVE_WORKING_O_NOFOLLOW 1\n\n/* Define to 1 if the system has the type `_Bool'. */\n#define HAVE__BOOL 1\n\n/* Define to 1 if you have the `_ftime' function. */\n/* #undef HAVE__FTIME */\n\n/* Define to 1 if you have the `_NSGetExecutablePath' function. */\n/* #undef HAVE__NSGETEXECUTABLEPATH */\n\n/* Define to 1 if you have the `_set_invalid_parameter_handler' function. */\n/* #undef HAVE__SET_INVALID_PARAMETER_HANDLER */\n\n/* Define as const if the declaration of iconv() needs const. */\n#define ICONV_CONST \n\n/* Define to the value of ${prefix}, as a string. */\n#define INSTALLPREFIX \"/usr/local\"\n\n/* Define to 1 if 'lstat' dereferences a symlink specified with a trailing\n   slash. */\n/* #undef LSTAT_FOLLOWS_SLASHED_SYMLINK */\n\n/* Define to the sub-directory where libtool stores uninstalled libraries. */\n#define LT_OBJDIR \".libs/\"\n\n/* If malloc(0) is != NULL, define this to 1. Otherwise define this to 0. */\n#define MALLOC_0_IS_NONNULL 1\n\n/* Use GNU style printf and scanf.  */\n#ifndef __USE_MINGW_ANSI_STDIO\n# define __USE_MINGW_ANSI_STDIO 1\n#endif\n\n\n/* Name of package */\n#define PACKAGE \"libiconv\"\n\n/* Define to the address where bug reports for this package should be sent. */\n#define PACKAGE_BUGREPORT \"\"\n\n/* Define to the full name of this package. */\n#define PACKAGE_NAME \"libiconv\"\n\n/* Define to the full name and version of this package. */\n#define PACKAGE_STRING \"libiconv 1.15\"\n\n/* Define to the one symbol short name of this package. */\n#define PACKAGE_TARNAME \"libiconv\"\n\n/* Define to the home page for this package. */\n#define PACKAGE_URL \"\"\n\n/* Define to the version of this package. */\n#define PACKAGE_VERSION \"1.15\"\n\n/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type\n   'ptrdiff_t'. */\n#define PTRDIFF_T_SUFFIX l\n\n/* Define to 1 if readlink fails to recognize a trailing slash. */\n#define READLINK_TRAILING_SLASH_BUG 1\n\n/* Define to 1 if stat needs help when passed a directory name with a trailing\n   slash */\n/* #undef REPLACE_FUNC_STAT_DIR */\n\n/* Define to 1 if stat needs help when passed a file name with a trailing\n   slash */\n#define REPLACE_FUNC_STAT_FILE 1\n\n/* Define to 1 if strerror(0) does not return a message implying success. */\n#define REPLACE_STRERROR_0 1\n\n/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type\n   'sig_atomic_t'. */\n#define SIG_ATOMIC_T_SUFFIX \n\n/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type\n   'size_t'. */\n#define SIZE_T_SUFFIX ul\n\n/* If using the C implementation of alloca, define if you know the\n   direction of stack growth for your system; otherwise it will be\n   automatically deduced at runtime.\n\tSTACK_DIRECTION > 0 => grows toward higher addresses\n\tSTACK_DIRECTION < 0 => grows toward lower addresses\n\tSTACK_DIRECTION = 0 => direction of growth unknown */\n/* #undef STACK_DIRECTION */\n\n/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */\n/* #undef STAT_MACROS_BROKEN */\n\n/* Define to 1 if you have the ANSI C header files. */\n#define STDC_HEADERS 1\n\n/* Define to 1 if strerror_r returns char *. */\n/* #undef STRERROR_R_CHAR_P */\n\n/* Define to the prefix of C symbols at the assembler and linker level, either\n   an underscore or empty. */\n#define USER_LABEL_PREFIX _\n\n/* Enable extensions on AIX 3, Interix.  */\n#ifndef _ALL_SOURCE\n# define _ALL_SOURCE 1\n#endif\n/* Enable general extensions on macOS.  */\n#ifndef _DARWIN_C_SOURCE\n# define _DARWIN_C_SOURCE 1\n#endif\n/* Enable GNU extensions on systems that have them.  */\n#ifndef _GNU_SOURCE\n# define _GNU_SOURCE 1\n#endif\n/* Enable threading extensions on Solaris.  */\n#ifndef _POSIX_PTHREAD_SEMANTICS\n# define _POSIX_PTHREAD_SEMANTICS 1\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-5:2014.  */\n#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__\n# define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-1:2014.  */\n#ifndef __STDC_WANT_IEC_60559_BFP_EXT__\n# define __STDC_WANT_IEC_60559_BFP_EXT__ 1\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-2:2015.  */\n#ifndef __STDC_WANT_IEC_60559_DFP_EXT__\n# define __STDC_WANT_IEC_60559_DFP_EXT__ 1\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-4:2015.  */\n#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__\n# define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-3:2015.  */\n#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__\n# define __STDC_WANT_IEC_60559_TYPES_EXT__ 1\n#endif\n/* Enable extensions specified by ISO/IEC TR 24731-2:2010.  */\n#ifndef __STDC_WANT_LIB_EXT2__\n# define __STDC_WANT_LIB_EXT2__ 1\n#endif\n/* Enable extensions specified by ISO/IEC 24747:2009.  */\n#ifndef __STDC_WANT_MATH_SPEC_FUNCS__\n# define __STDC_WANT_MATH_SPEC_FUNCS__ 1\n#endif\n/* Enable extensions on HP NonStop.  */\n#ifndef _TANDEM_SOURCE\n# define _TANDEM_SOURCE 1\n#endif\n/* Enable X/Open extensions if necessary.  HP-UX 11.11 defines\n   mbstate_t only if _XOPEN_SOURCE is defined to 500, regardless of\n   whether compiling with -Ae or -D_HPUX_SOURCE=1.  */\n#ifndef _XOPEN_SOURCE\n/* # undef _XOPEN_SOURCE */\n#endif\n/* Enable general extensions on Solaris.  */\n#ifndef __EXTENSIONS__\n# define __EXTENSIONS__ 1\n#endif\n\n\n/* Define to 1 if you want getc etc. to use unlocked I/O if available.\n   Unlocked I/O can improve performance in unithreaded apps, but it is not\n   safe for multithreaded apps. */\n#define USE_UNLOCKED_IO 1\n\n/* Version number of package */\n#define VERSION \"1.15\"\n\n/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type\n   'wchar_t'. */\n#define WCHAR_T_SUFFIX \n\n/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type\n   'wint_t'. */\n#define WINT_T_SUFFIX \n\n/* Define if the machine's byte ordering is little endian. */\n#define WORDS_LITTLEENDIAN 1\n\n/* Enable large inode numbers on Mac OS X 10.5. */\n#define _DARWIN_USE_64_BIT_INODE 1\n\n/* Number of bits in a file offset, on hosts where this is settable. */\n/* #undef _FILE_OFFSET_BITS */\n\n/* Define to 1 if Gnulib overrides 'struct stat' on Windows so that struct\n   stat.st_size becomes 64-bit. */\n/* #undef _GL_WINDOWS_64_BIT_ST_SIZE */\n\n/* Define for large files, on AIX-style hosts. */\n/* #undef _LARGE_FILES */\n\n/* Define to 1 if on MINIX. */\n/* #undef _MINIX */\n\n/* Define to 1 to make NetBSD features available. MINIX 3 needs this. */\n/* #undef _NETBSD_SOURCE */\n\n/* The _Noreturn keyword of C11.  */\n#if ! (defined _Noreturn \\\n       || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__))\n# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \\\n      || 0x5110 <= __SUNPRO_C)\n#  define _Noreturn __attribute__ ((__noreturn__))\n# elif defined _MSC_VER && 1200 <= _MSC_VER\n#  define _Noreturn __declspec (noreturn)\n# else\n#  define _Noreturn\n# endif\n#endif\n\n\n/* Define to 2 if the system does not provide POSIX.1 features except with\n   this defined. */\n/* #undef _POSIX_1_SOURCE */\n\n/* Define to 1 if you need to in order for 'stat' and other things to work. */\n/* #undef _POSIX_SOURCE */\n\n/* Define to 1 if the system <stdint.h> predates C++11. */\n/* #undef __STDC_CONSTANT_MACROS */\n\n/* Define to 1 if the system <stdint.h> predates C++11. */\n/* #undef __STDC_LIMIT_MACROS */\n\n/* Please see the Gnulib manual for how to use these macros.\n\n   Suppress extern inline with HP-UX cc, as it appears to be broken; see\n   <http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html>.\n\n   Suppress extern inline with Sun C in standards-conformance mode, as it\n   mishandles inline functions that call each other.  E.g., for 'inline void f\n   (void) { } inline void g (void) { f (); }', c99 incorrectly complains\n   'reference to static identifier \"f\" in extern inline function'.\n   This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16.\n\n   Suppress extern inline (with or without __attribute__ ((__gnu_inline__)))\n   on configurations that mistakenly use 'static inline' to implement\n   functions or macros in standard C headers like <ctype.h>.  For example,\n   if isdigit is mistakenly implemented via a static inline function,\n   a program containing an extern inline function that calls isdigit\n   may not work since the C standard prohibits extern inline functions\n   from calling static functions.  This bug is known to occur on:\n\n     OS X 10.8 and earlier; see:\n     http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html\n\n     DragonFly; see\n     http://muscles.dragonflybsd.org/bulk/bleeding-edge-potential/latest-per-pkg/ah-tty-0.3.12.log\n\n     FreeBSD; see:\n     http://lists.gnu.org/archive/html/bug-gnulib/2014-07/msg00104.html\n\n   OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and\n   for clang but remains for g++; see <http://trac.macports.org/ticket/41033>.\n   Assume DragonFly and FreeBSD will be similar.  */\n#if (((defined __APPLE__ && defined __MACH__) \\\n      || defined __DragonFly__ || defined __FreeBSD__) \\\n     && (defined __header_inline \\\n         ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \\\n            && ! defined __clang__) \\\n         : ((! defined _DONT_USE_CTYPE_INLINE_ \\\n             && (defined __GNUC__ || defined __cplusplus)) \\\n            || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \\\n                && defined __GNUC__ && ! defined __cplusplus))))\n# define _GL_EXTERN_INLINE_STDHEADER_BUG\n#endif\n#if ((__GNUC__ \\\n      ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \\\n      : (199901L <= __STDC_VERSION__ \\\n         && !defined __HP_cc \\\n         && !defined __PGI \\\n         && !(defined __SUNPRO_C && __STDC__))) \\\n     && !defined _GL_EXTERN_INLINE_STDHEADER_BUG)\n# define _GL_INLINE inline\n# define _GL_EXTERN_INLINE extern inline\n# define _GL_EXTERN_INLINE_IN_USE\n#elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \\\n       && !defined _GL_EXTERN_INLINE_STDHEADER_BUG)\n# if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__\n   /* __gnu_inline__ suppresses a GCC 4.2 diagnostic.  */\n#  define _GL_INLINE extern inline __attribute__ ((__gnu_inline__))\n# else\n#  define _GL_INLINE extern inline\n# endif\n# define _GL_EXTERN_INLINE extern\n# define _GL_EXTERN_INLINE_IN_USE\n#else\n# define _GL_INLINE static _GL_UNUSED\n# define _GL_EXTERN_INLINE static _GL_UNUSED\n#endif\n\n/* In GCC 4.6 (inclusive) to 5.1 (exclusive),\n   suppress bogus \"no previous prototype for 'FOO'\"\n   and \"no previous declaration for 'FOO'\" diagnostics,\n   when FOO is an inline function in the header; see\n   <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113> and\n   <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63877>.  */\n#if __GNUC__ == 4 && 6 <= __GNUC_MINOR__\n# if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__\n#  define _GL_INLINE_HEADER_CONST_PRAGMA\n# else\n#  define _GL_INLINE_HEADER_CONST_PRAGMA \\\n     _Pragma (\"GCC diagnostic ignored \\\"-Wsuggest-attribute=const\\\"\")\n# endif\n# define _GL_INLINE_HEADER_BEGIN \\\n    _Pragma (\"GCC diagnostic push\") \\\n    _Pragma (\"GCC diagnostic ignored \\\"-Wmissing-prototypes\\\"\") \\\n    _Pragma (\"GCC diagnostic ignored \\\"-Wmissing-declarations\\\"\") \\\n    _GL_INLINE_HEADER_CONST_PRAGMA\n# define _GL_INLINE_HEADER_END \\\n    _Pragma (\"GCC diagnostic pop\")\n#else\n# define _GL_INLINE_HEADER_BEGIN\n# define _GL_INLINE_HEADER_END\n#endif\n\n/* Define to `int' if <sys/types.h> doesn't define. */\n/* #undef gid_t */\n\n/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports\n   the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of\n   earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.\n   __APPLE__ && __MACH__ test for Mac OS X.\n   __APPLE_CC__ tests for the Apple compiler and its version.\n   __STDC_VERSION__ tests for the C99 mode.  */\n#if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__\n# define __GNUC_STDC_INLINE__ 1\n#endif\n\n/* Define to a type if <wchar.h> does not define. */\n/* #undef mbstate_t */\n\n/* Define to `int' if <sys/types.h> does not define. */\n/* #undef mode_t */\n\n/* Define to the type of st_nlink in struct stat, or a supertype. */\n/* #undef nlink_t */\n\n/* Define to `int' if <sys/types.h> does not define. */\n/* #undef pid_t */\n\n/* Define to the equivalent of the C99 'restrict' keyword, or to\n   nothing if this is not supported.  Do not define if restrict is\n   supported directly.  */\n#define restrict __restrict\n/* Work around a bug in Sun C++: it does not support _Restrict or\n   __restrict__, even though the corresponding Sun C compiler ends up with\n   \"#define restrict _Restrict\" or \"#define restrict __restrict__\" in the\n   previous line.  Perhaps some future version of Sun C++ will work with\n   restrict; if so, hopefully it defines __RESTRICT like Sun C does.  */\n#if defined __SUNPRO_CC && !defined __RESTRICT\n# define _Restrict\n# define __restrict__\n#endif\n\n/* Define to `unsigned int' if <sys/types.h> does not define. */\n/* #undef size_t */\n\n/* Define as a signed type of the same size as size_t. */\n/* #undef ssize_t */\n\n/* Define to `int' if <sys/types.h> doesn't define. */\n/* #undef uid_t */\n\n/* Define as a marker that can be attached to declarations that might not\n    be used.  This helps to reduce warnings, such as from\n    GCC -Wunused-parameter.  */\n#if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)\n# define _GL_UNUSED __attribute__ ((__unused__))\n#else\n# define _GL_UNUSED\n#endif\n/* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name\n   is a misnomer outside of parameter lists.  */\n#define _UNUSED_PARAMETER_ _GL_UNUSED\n\n/* gcc supports the \"unused\" attribute on possibly unused labels, and\n   g++ has since version 4.5.  Note to support C++ as well as C,\n   _GL_UNUSED_LABEL should be used with a trailing ;  */\n#if !defined __cplusplus || __GNUC__ > 4 \\\n    || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)\n# define _GL_UNUSED_LABEL _GL_UNUSED\n#else\n# define _GL_UNUSED_LABEL\n#endif\n\n/* The __pure__ attribute was added in gcc 2.96.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)\n# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))\n#else\n# define _GL_ATTRIBUTE_PURE /* empty */\n#endif\n\n/* The __const__ attribute was added in gcc 2.95.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)\n# define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))\n#else\n# define _GL_ATTRIBUTE_CONST /* empty */\n#endif\n\n\n\n/* On Windows, variables that may be in a DLL must be marked specially.  */\n#if defined _MSC_VER && defined _DLL\n# define DLL_VARIABLE __declspec (dllimport)\n#else\n# define DLL_VARIABLE\n#endif\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/config.h.in",
    "content": "/* config.h.in.  Generated from configure.ac by autoheader.  */\n\n/* Define to the number of bits in type 'ptrdiff_t'. */\n#undef BITSIZEOF_PTRDIFF_T\n\n/* Define to the number of bits in type 'sig_atomic_t'. */\n#undef BITSIZEOF_SIG_ATOMIC_T\n\n/* Define to the number of bits in type 'size_t'. */\n#undef BITSIZEOF_SIZE_T\n\n/* Define to the number of bits in type 'wchar_t'. */\n#undef BITSIZEOF_WCHAR_T\n\n/* Define to the number of bits in type 'wint_t'. */\n#undef BITSIZEOF_WINT_T\n\n/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP\n   systems. This function is required for `alloca.c' support on those systems.\n   */\n#undef CRAY_STACKSEG_END\n\n/* Define to 1 if using `alloca.c'. */\n#undef C_ALLOCA\n\n/* Define to 1 if // is a file system root distinct from /. */\n#undef DOUBLE_SLASH_IS_DISTINCT_ROOT\n\n/* Define as good substitute value for EILSEQ. */\n#undef EILSEQ\n\n/* Define to 1 to enable a few rarely used encodings. */\n#undef ENABLE_EXTRA\n\n/* Define to 1 if translation of program messages to the user's native\n   language is requested. */\n#undef ENABLE_NLS\n\n/* Define to 1 if the package shall run at any location in the file system. */\n#undef ENABLE_RELOCATABLE\n\n/* Define to 1 if realpath() can malloc memory, always gives an absolute path,\n   and handles trailing slash correctly. */\n#undef FUNC_REALPATH_WORKS\n\n/* Define if gettimeofday clobbers the localtime buffer. */\n#undef GETTIMEOFDAY_CLOBBERS_LOCALTIME\n\n/* Define this to 'void' or 'struct timezone' to match the system's\n   declaration of the second argument to gettimeofday. */\n#undef GETTIMEOFDAY_TIMEZONE\n\n/* Define to a C preprocessor expression that evaluates to 1 or 0, depending\n   whether the gnulib module canonicalize-lgpl shall be considered present. */\n#undef GNULIB_CANONICALIZE_LGPL\n\n/* Define to a C preprocessor expression that evaluates to 1 or 0, depending\n   whether the gnulib module fscanf shall be considered present. */\n#undef GNULIB_FSCANF\n\n/* Define to 1 if printf and friends should be labeled with attribute\n   \"__gnu_printf__\" instead of \"__printf__\" */\n#undef GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU\n\n/* Define to a C preprocessor expression that evaluates to 1 or 0, depending\n   whether the gnulib module scanf shall be considered present. */\n#undef GNULIB_SCANF\n\n/* Define to a C preprocessor expression that evaluates to 1 or 0, depending\n   whether the gnulib module sigpipe shall be considered present. */\n#undef GNULIB_SIGPIPE\n\n/* Define to a C preprocessor expression that evaluates to 1 or 0, depending\n   whether the gnulib module strerror shall be considered present. */\n#undef GNULIB_STRERROR\n\n/* Define to 1 when the gnulib module canonicalize_file_name should be tested.\n   */\n#undef GNULIB_TEST_CANONICALIZE_FILE_NAME\n\n/* Define to 1 when the gnulib module environ should be tested. */\n#undef GNULIB_TEST_ENVIRON\n\n/* Define to 1 when the gnulib module gettimeofday should be tested. */\n#undef GNULIB_TEST_GETTIMEOFDAY\n\n/* Define to 1 when the gnulib module lstat should be tested. */\n#undef GNULIB_TEST_LSTAT\n\n/* Define to 1 when the gnulib module malloc-posix should be tested. */\n#undef GNULIB_TEST_MALLOC_POSIX\n\n/* Define to 1 when the gnulib module raise should be tested. */\n#undef GNULIB_TEST_RAISE\n\n/* Define to 1 when the gnulib module read should be tested. */\n#undef GNULIB_TEST_READ\n\n/* Define to 1 when the gnulib module readlink should be tested. */\n#undef GNULIB_TEST_READLINK\n\n/* Define to 1 when the gnulib module realpath should be tested. */\n#undef GNULIB_TEST_REALPATH\n\n/* Define to 1 when the gnulib module sigprocmask should be tested. */\n#undef GNULIB_TEST_SIGPROCMASK\n\n/* Define to 1 when the gnulib module stat should be tested. */\n#undef GNULIB_TEST_STAT\n\n/* Define to 1 when the gnulib module strerror should be tested. */\n#undef GNULIB_TEST_STRERROR\n\n/* Define to 1 if you have `alloca', as a function or macro. */\n#undef HAVE_ALLOCA\n\n/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).\n   */\n#undef HAVE_ALLOCA_H\n\n/* Define to 1 if you have the `canonicalize_file_name' function. */\n#undef HAVE_CANONICALIZE_FILE_NAME\n\n/* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the\n   CoreFoundation framework. */\n#undef HAVE_CFLOCALECOPYCURRENT\n\n/* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in\n   the CoreFoundation framework. */\n#undef HAVE_CFPREFERENCESCOPYAPPVALUE\n\n/* Define if the GNU dcgettext() function is already present or preinstalled.\n   */\n#undef HAVE_DCGETTEXT\n\n/* Define to 1 if you have the declaration of `clearerr_unlocked', and to 0 if\n   you don't. */\n#undef HAVE_DECL_CLEARERR_UNLOCKED\n\n/* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you\n   don't. */\n#undef HAVE_DECL_FEOF_UNLOCKED\n\n/* Define to 1 if you have the declaration of `ferror_unlocked', and to 0 if\n   you don't. */\n#undef HAVE_DECL_FERROR_UNLOCKED\n\n/* Define to 1 if you have the declaration of `fflush_unlocked', and to 0 if\n   you don't. */\n#undef HAVE_DECL_FFLUSH_UNLOCKED\n\n/* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if\n   you don't. */\n#undef HAVE_DECL_FGETS_UNLOCKED\n\n/* Define to 1 if you have the declaration of `fputc_unlocked', and to 0 if\n   you don't. */\n#undef HAVE_DECL_FPUTC_UNLOCKED\n\n/* Define to 1 if you have the declaration of `fputs_unlocked', and to 0 if\n   you don't. */\n#undef HAVE_DECL_FPUTS_UNLOCKED\n\n/* Define to 1 if you have the declaration of `fread_unlocked', and to 0 if\n   you don't. */\n#undef HAVE_DECL_FREAD_UNLOCKED\n\n/* Define to 1 if you have the declaration of `fwrite_unlocked', and to 0 if\n   you don't. */\n#undef HAVE_DECL_FWRITE_UNLOCKED\n\n/* Define to 1 if you have the declaration of `getchar_unlocked', and to 0 if\n   you don't. */\n#undef HAVE_DECL_GETCHAR_UNLOCKED\n\n/* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you\n   don't. */\n#undef HAVE_DECL_GETC_UNLOCKED\n\n/* Define to 1 if you have the declaration of `program_invocation_name', and\n   to 0 if you don't. */\n#undef HAVE_DECL_PROGRAM_INVOCATION_NAME\n\n/* Define to 1 if you have the declaration of `program_invocation_short_name',\n   and to 0 if you don't. */\n#undef HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME\n\n/* Define to 1 if you have the declaration of `putchar_unlocked', and to 0 if\n   you don't. */\n#undef HAVE_DECL_PUTCHAR_UNLOCKED\n\n/* Define to 1 if you have the declaration of `putc_unlocked', and to 0 if you\n   don't. */\n#undef HAVE_DECL_PUTC_UNLOCKED\n\n/* Define to 1 if you have the declaration of `setenv', and to 0 if you don't.\n   */\n#undef HAVE_DECL_SETENV\n\n/* Define to 1 if you have the declaration of `strerror_r', and to 0 if you\n   don't. */\n#undef HAVE_DECL_STRERROR_R\n\n/* Define to 1 if you have the declaration of `__argv', and to 0 if you don't.\n   */\n#undef HAVE_DECL___ARGV\n\n/* Define to 1 if you have the <dlfcn.h> header file. */\n#undef HAVE_DLFCN_H\n\n/* Define if you have the declaration of environ. */\n#undef HAVE_ENVIRON_DECL\n\n/* Define to 1 if you have the `getcwd' function. */\n#undef HAVE_GETCWD\n\n/* Define to 1 if you have the `getc_unlocked' function. */\n#undef HAVE_GETC_UNLOCKED\n\n/* Define to 1 if you have the `getexecname' function. */\n#undef HAVE_GETEXECNAME\n\n/* Define to 1 if you have the `getprogname' function. */\n#undef HAVE_GETPROGNAME\n\n/* Define if the GNU gettext() function is already present or preinstalled. */\n#undef HAVE_GETTEXT\n\n/* Define to 1 if you have the `gettimeofday' function. */\n#undef HAVE_GETTIMEOFDAY\n\n/* Define if you have the iconv() function and it works. */\n#undef HAVE_ICONV\n\n/* Define to 1 if you have the <inttypes.h> header file. */\n#undef HAVE_INTTYPES_H\n\n/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */\n#undef HAVE_LANGINFO_CODESET\n\n/* Define to 1 if you have the <limits.h> header file. */\n#undef HAVE_LIMITS_H\n\n/* Define to 1 if the system has the type 'long long int'. */\n#undef HAVE_LONG_LONG_INT\n\n/* Define to 1 if you have the `lstat' function. */\n#undef HAVE_LSTAT\n\n/* Define to 1 if you have the <mach-o/dyld.h> header file. */\n#undef HAVE_MACH_O_DYLD_H\n\n/* Define if the 'malloc' function is POSIX compliant. */\n#undef HAVE_MALLOC_POSIX\n\n/* Define to 1 if you have the `mbrtowc' function. */\n#undef HAVE_MBRTOWC\n\n/* Define to 1 if you have the `mbsinit' function. */\n#undef HAVE_MBSINIT\n\n/* Define to 1 if <wchar.h> declares mbstate_t. */\n#undef HAVE_MBSTATE_T\n\n/* Define to 1 if you have the `memmove' function. */\n#undef HAVE_MEMMOVE\n\n/* Define to 1 if you have the <memory.h> header file. */\n#undef HAVE_MEMORY_H\n\n/* Define to 1 on MSVC platforms that have the \"invalid parameter handler\"\n   concept. */\n#undef HAVE_MSVC_INVALID_PARAMETER_HANDLER\n\n/* Define to 1 if you have the `raise' function. */\n#undef HAVE_RAISE\n\n/* Define to 1 if atoll is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_ATOLL\n\n/* Define to 1 if canonicalize_file_name is declared even after undefining\n   macros. */\n#undef HAVE_RAW_DECL_CANONICALIZE_FILE_NAME\n\n/* Define to 1 if chdir is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_CHDIR\n\n/* Define to 1 if chown is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_CHOWN\n\n/* Define to 1 if dprintf is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_DPRINTF\n\n/* Define to 1 if dup is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_DUP\n\n/* Define to 1 if dup2 is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_DUP2\n\n/* Define to 1 if dup3 is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_DUP3\n\n/* Define to 1 if endusershell is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_ENDUSERSHELL\n\n/* Define to 1 if environ is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_ENVIRON\n\n/* Define to 1 if euidaccess is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_EUIDACCESS\n\n/* Define to 1 if faccessat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FACCESSAT\n\n/* Define to 1 if fchdir is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FCHDIR\n\n/* Define to 1 if fchmodat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FCHMODAT\n\n/* Define to 1 if fchownat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FCHOWNAT\n\n/* Define to 1 if fcntl is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FCNTL\n\n/* Define to 1 if fdatasync is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FDATASYNC\n\n/* Define to 1 if ffsl is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FFSL\n\n/* Define to 1 if ffsll is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FFSLL\n\n/* Define to 1 if fpurge is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FPURGE\n\n/* Define to 1 if fseeko is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FSEEKO\n\n/* Define to 1 if fstat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FSTAT\n\n/* Define to 1 if fstatat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FSTATAT\n\n/* Define to 1 if fsync is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FSYNC\n\n/* Define to 1 if ftello is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FTELLO\n\n/* Define to 1 if ftruncate is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FTRUNCATE\n\n/* Define to 1 if futimens is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_FUTIMENS\n\n/* Define to 1 if getcwd is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETCWD\n\n/* Define to 1 if getdelim is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETDELIM\n\n/* Define to 1 if getdomainname is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETDOMAINNAME\n\n/* Define to 1 if getdtablesize is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETDTABLESIZE\n\n/* Define to 1 if getgroups is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETGROUPS\n\n/* Define to 1 if gethostname is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETHOSTNAME\n\n/* Define to 1 if getline is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETLINE\n\n/* Define to 1 if getloadavg is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETLOADAVG\n\n/* Define to 1 if getlogin is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETLOGIN\n\n/* Define to 1 if getlogin_r is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETLOGIN_R\n\n/* Define to 1 if getpagesize is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETPAGESIZE\n\n/* Define to 1 if gets is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETS\n\n/* Define to 1 if getsubopt is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETSUBOPT\n\n/* Define to 1 if gettimeofday is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETTIMEOFDAY\n\n/* Define to 1 if getusershell is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GETUSERSHELL\n\n/* Define to 1 if grantpt is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GRANTPT\n\n/* Define to 1 if group_member is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_GROUP_MEMBER\n\n/* Define to 1 if initstate is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_INITSTATE\n\n/* Define to 1 if initstate_r is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_INITSTATE_R\n\n/* Define to 1 if isatty is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_ISATTY\n\n/* Define to 1 if lchmod is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_LCHMOD\n\n/* Define to 1 if lchown is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_LCHOWN\n\n/* Define to 1 if link is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_LINK\n\n/* Define to 1 if linkat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_LINKAT\n\n/* Define to 1 if lseek is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_LSEEK\n\n/* Define to 1 if lstat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_LSTAT\n\n/* Define to 1 if memmem is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MEMMEM\n\n/* Define to 1 if mempcpy is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MEMPCPY\n\n/* Define to 1 if memrchr is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MEMRCHR\n\n/* Define to 1 if mkdirat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MKDIRAT\n\n/* Define to 1 if mkdtemp is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MKDTEMP\n\n/* Define to 1 if mkfifo is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MKFIFO\n\n/* Define to 1 if mkfifoat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MKFIFOAT\n\n/* Define to 1 if mknod is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MKNOD\n\n/* Define to 1 if mknodat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MKNODAT\n\n/* Define to 1 if mkostemp is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MKOSTEMP\n\n/* Define to 1 if mkostemps is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MKOSTEMPS\n\n/* Define to 1 if mkstemp is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MKSTEMP\n\n/* Define to 1 if mkstemps is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_MKSTEMPS\n\n/* Define to 1 if openat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_OPENAT\n\n/* Define to 1 if pclose is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_PCLOSE\n\n/* Define to 1 if pipe is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_PIPE\n\n/* Define to 1 if pipe2 is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_PIPE2\n\n/* Define to 1 if popen is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_POPEN\n\n/* Define to 1 if posix_openpt is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_POSIX_OPENPT\n\n/* Define to 1 if pread is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_PREAD\n\n/* Define to 1 if pthread_sigmask is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_PTHREAD_SIGMASK\n\n/* Define to 1 if ptsname is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_PTSNAME\n\n/* Define to 1 if ptsname_r is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_PTSNAME_R\n\n/* Define to 1 if pwrite is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_PWRITE\n\n/* Define to 1 if qsort_r is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_QSORT_R\n\n/* Define to 1 if random is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_RANDOM\n\n/* Define to 1 if random_r is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_RANDOM_R\n\n/* Define to 1 if rawmemchr is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_RAWMEMCHR\n\n/* Define to 1 if readlink is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_READLINK\n\n/* Define to 1 if readlinkat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_READLINKAT\n\n/* Define to 1 if realpath is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_REALPATH\n\n/* Define to 1 if renameat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_RENAMEAT\n\n/* Define to 1 if rmdir is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_RMDIR\n\n/* Define to 1 if rpmatch is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_RPMATCH\n\n/* Define to 1 if secure_getenv is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SECURE_GETENV\n\n/* Define to 1 if setenv is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SETENV\n\n/* Define to 1 if sethostname is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SETHOSTNAME\n\n/* Define to 1 if setstate is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SETSTATE\n\n/* Define to 1 if setstate_r is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SETSTATE_R\n\n/* Define to 1 if setusershell is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SETUSERSHELL\n\n/* Define to 1 if sigaction is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SIGACTION\n\n/* Define to 1 if sigaddset is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SIGADDSET\n\n/* Define to 1 if sigdelset is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SIGDELSET\n\n/* Define to 1 if sigemptyset is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SIGEMPTYSET\n\n/* Define to 1 if sigfillset is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SIGFILLSET\n\n/* Define to 1 if sigismember is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SIGISMEMBER\n\n/* Define to 1 if sigpending is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SIGPENDING\n\n/* Define to 1 if sigprocmask is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SIGPROCMASK\n\n/* Define to 1 if sleep is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SLEEP\n\n/* Define to 1 if snprintf is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SNPRINTF\n\n/* Define to 1 if srandom is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SRANDOM\n\n/* Define to 1 if srandom_r is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SRANDOM_R\n\n/* Define to 1 if stat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STAT\n\n/* Define to 1 if stpcpy is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STPCPY\n\n/* Define to 1 if stpncpy is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STPNCPY\n\n/* Define to 1 if strcasestr is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRCASESTR\n\n/* Define to 1 if strchrnul is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRCHRNUL\n\n/* Define to 1 if strdup is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRDUP\n\n/* Define to 1 if strerror_r is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRERROR_R\n\n/* Define to 1 if strncat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRNCAT\n\n/* Define to 1 if strndup is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRNDUP\n\n/* Define to 1 if strnlen is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRNLEN\n\n/* Define to 1 if strpbrk is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRPBRK\n\n/* Define to 1 if strsep is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRSEP\n\n/* Define to 1 if strsignal is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRSIGNAL\n\n/* Define to 1 if strtod is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRTOD\n\n/* Define to 1 if strtok_r is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRTOK_R\n\n/* Define to 1 if strtoll is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRTOLL\n\n/* Define to 1 if strtoull is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRTOULL\n\n/* Define to 1 if strverscmp is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_STRVERSCMP\n\n/* Define to 1 if symlink is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SYMLINK\n\n/* Define to 1 if symlinkat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_SYMLINKAT\n\n/* Define to 1 if tmpfile is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_TMPFILE\n\n/* Define to 1 if ttyname_r is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_TTYNAME_R\n\n/* Define to 1 if unlink is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_UNLINK\n\n/* Define to 1 if unlinkat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_UNLINKAT\n\n/* Define to 1 if unlockpt is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_UNLOCKPT\n\n/* Define to 1 if unsetenv is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_UNSETENV\n\n/* Define to 1 if usleep is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_USLEEP\n\n/* Define to 1 if utimensat is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_UTIMENSAT\n\n/* Define to 1 if vdprintf is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_VDPRINTF\n\n/* Define to 1 if vsnprintf is declared even after undefining macros. */\n#undef HAVE_RAW_DECL_VSNPRINTF\n\n/* Define to 1 if _Exit is declared even after undefining macros. */\n#undef HAVE_RAW_DECL__EXIT\n\n/* Define to 1 if you have the `readlink' function. */\n#undef HAVE_READLINK\n\n/* Define to 1 if you have the `readlinkat' function. */\n#undef HAVE_READLINKAT\n\n/* Define to 1 if you have the `realpath' function. */\n#undef HAVE_REALPATH\n\n/* Define to 1 if you have the <search.h> header file. */\n#undef HAVE_SEARCH_H\n\n/* Define to 1 if you have the `setenv' function. */\n#undef HAVE_SETENV\n\n/* Define to 1 if you have the `setlocale' function. */\n#undef HAVE_SETLOCALE\n\n/* Define to 1 if 'sig_atomic_t' is a signed integer type. */\n#undef HAVE_SIGNED_SIG_ATOMIC_T\n\n/* Define to 1 if 'wchar_t' is a signed integer type. */\n#undef HAVE_SIGNED_WCHAR_T\n\n/* Define to 1 if 'wint_t' is a signed integer type. */\n#undef HAVE_SIGNED_WINT_T\n\n/* Define to 1 if the system has the type `sigset_t'. */\n#undef HAVE_SIGSET_T\n\n/* Define to 1 if you have the <stdint.h> header file. */\n#undef HAVE_STDINT_H\n\n/* Define to 1 if you have the <stdlib.h> header file. */\n#undef HAVE_STDLIB_H\n\n/* Define to 1 if you have the `strerror_r' function. */\n#undef HAVE_STRERROR_R\n\n/* Define to 1 if you have the <strings.h> header file. */\n#undef HAVE_STRINGS_H\n\n/* Define to 1 if you have the <string.h> header file. */\n#undef HAVE_STRING_H\n\n/* Define to 1 if you have the `symlink' function. */\n#undef HAVE_SYMLINK\n\n/* Define to 1 if you have the <sys/bitypes.h> header file. */\n#undef HAVE_SYS_BITYPES_H\n\n/* Define to 1 if you have the <sys/inttypes.h> header file. */\n#undef HAVE_SYS_INTTYPES_H\n\n/* Define to 1 if you have the <sys/param.h> header file. */\n#undef HAVE_SYS_PARAM_H\n\n/* Define to 1 if you have the <sys/socket.h> header file. */\n#undef HAVE_SYS_SOCKET_H\n\n/* Define to 1 if you have the <sys/stat.h> header file. */\n#undef HAVE_SYS_STAT_H\n\n/* Define to 1 if you have the <sys/timeb.h> header file. */\n#undef HAVE_SYS_TIMEB_H\n\n/* Define to 1 if you have the <sys/time.h> header file. */\n#undef HAVE_SYS_TIME_H\n\n/* Define to 1 if you have the <sys/types.h> header file. */\n#undef HAVE_SYS_TYPES_H\n\n/* Define to 1 if you have the `tsearch' function. */\n#undef HAVE_TSEARCH\n\n/* Define to 1 if you have the <unistd.h> header file. */\n#undef HAVE_UNISTD_H\n\n/* Define to 1 if the system has the type 'unsigned long long int'. */\n#undef HAVE_UNSIGNED_LONG_LONG_INT\n\n/* Define if you have a global __progname variable */\n#undef HAVE_VAR___PROGNAME\n\n/* Define to 1 or 0, depending whether the compiler supports simple visibility\n   declarations. */\n#undef HAVE_VISIBILITY\n\n/* Define to 1 if you have the <wchar.h> header file. */\n#undef HAVE_WCHAR_H\n\n/* Define if you have the 'wchar_t' type. */\n#undef HAVE_WCHAR_T\n\n/* Define to 1 if you have the `wcrtomb' function. */\n#undef HAVE_WCRTOMB\n\n/* Define to 1 if you have the <winsock2.h> header file. */\n#undef HAVE_WINSOCK2_H\n\n/* Define if you have the 'wint_t' type. */\n#undef HAVE_WINT_T\n\n/* Define to 1 if O_NOATIME works. */\n#undef HAVE_WORKING_O_NOATIME\n\n/* Define to 1 if O_NOFOLLOW works. */\n#undef HAVE_WORKING_O_NOFOLLOW\n\n/* Define to 1 if the system has the type `_Bool'. */\n#undef HAVE__BOOL\n\n/* Define to 1 if you have the `_ftime' function. */\n#undef HAVE__FTIME\n\n/* Define to 1 if you have the `_NSGetExecutablePath' function. */\n#undef HAVE__NSGETEXECUTABLEPATH\n\n/* Define to 1 if you have the `_set_invalid_parameter_handler' function. */\n#undef HAVE__SET_INVALID_PARAMETER_HANDLER\n\n/* Define as const if the declaration of iconv() needs const. */\n#undef ICONV_CONST\n\n/* Define to the value of ${prefix}, as a string. */\n#undef INSTALLPREFIX\n\n/* Define to 1 if 'lstat' dereferences a symlink specified with a trailing\n   slash. */\n#undef LSTAT_FOLLOWS_SLASHED_SYMLINK\n\n/* Define to the sub-directory where libtool stores uninstalled libraries. */\n#undef LT_OBJDIR\n\n/* If malloc(0) is != NULL, define this to 1. Otherwise define this to 0. */\n#undef MALLOC_0_IS_NONNULL\n\n/* Use GNU style printf and scanf.  */\n#ifndef __USE_MINGW_ANSI_STDIO\n# undef __USE_MINGW_ANSI_STDIO\n#endif\n\n\n/* Name of package */\n#undef PACKAGE\n\n/* Define to the address where bug reports for this package should be sent. */\n#undef PACKAGE_BUGREPORT\n\n/* Define to the full name of this package. */\n#undef PACKAGE_NAME\n\n/* Define to the full name and version of this package. */\n#undef PACKAGE_STRING\n\n/* Define to the one symbol short name of this package. */\n#undef PACKAGE_TARNAME\n\n/* Define to the home page for this package. */\n#undef PACKAGE_URL\n\n/* Define to the version of this package. */\n#undef PACKAGE_VERSION\n\n/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type\n   'ptrdiff_t'. */\n#undef PTRDIFF_T_SUFFIX\n\n/* Define to 1 if readlink fails to recognize a trailing slash. */\n#undef READLINK_TRAILING_SLASH_BUG\n\n/* Define to 1 if stat needs help when passed a directory name with a trailing\n   slash */\n#undef REPLACE_FUNC_STAT_DIR\n\n/* Define to 1 if stat needs help when passed a file name with a trailing\n   slash */\n#undef REPLACE_FUNC_STAT_FILE\n\n/* Define to 1 if strerror(0) does not return a message implying success. */\n#undef REPLACE_STRERROR_0\n\n/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type\n   'sig_atomic_t'. */\n#undef SIG_ATOMIC_T_SUFFIX\n\n/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type\n   'size_t'. */\n#undef SIZE_T_SUFFIX\n\n/* If using the C implementation of alloca, define if you know the\n   direction of stack growth for your system; otherwise it will be\n   automatically deduced at runtime.\n\tSTACK_DIRECTION > 0 => grows toward higher addresses\n\tSTACK_DIRECTION < 0 => grows toward lower addresses\n\tSTACK_DIRECTION = 0 => direction of growth unknown */\n#undef STACK_DIRECTION\n\n/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */\n#undef STAT_MACROS_BROKEN\n\n/* Define to 1 if you have the ANSI C header files. */\n#undef STDC_HEADERS\n\n/* Define to 1 if strerror_r returns char *. */\n#undef STRERROR_R_CHAR_P\n\n/* Define to the prefix of C symbols at the assembler and linker level, either\n   an underscore or empty. */\n#undef USER_LABEL_PREFIX\n\n/* Enable extensions on AIX 3, Interix.  */\n#ifndef _ALL_SOURCE\n# undef _ALL_SOURCE\n#endif\n/* Enable general extensions on macOS.  */\n#ifndef _DARWIN_C_SOURCE\n# undef _DARWIN_C_SOURCE\n#endif\n/* Enable GNU extensions on systems that have them.  */\n#ifndef _GNU_SOURCE\n# undef _GNU_SOURCE\n#endif\n/* Enable threading extensions on Solaris.  */\n#ifndef _POSIX_PTHREAD_SEMANTICS\n# undef _POSIX_PTHREAD_SEMANTICS\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-5:2014.  */\n#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__\n# undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-1:2014.  */\n#ifndef __STDC_WANT_IEC_60559_BFP_EXT__\n# undef __STDC_WANT_IEC_60559_BFP_EXT__\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-2:2015.  */\n#ifndef __STDC_WANT_IEC_60559_DFP_EXT__\n# undef __STDC_WANT_IEC_60559_DFP_EXT__\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-4:2015.  */\n#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__\n# undef __STDC_WANT_IEC_60559_FUNCS_EXT__\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-3:2015.  */\n#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__\n# undef __STDC_WANT_IEC_60559_TYPES_EXT__\n#endif\n/* Enable extensions specified by ISO/IEC TR 24731-2:2010.  */\n#ifndef __STDC_WANT_LIB_EXT2__\n# undef __STDC_WANT_LIB_EXT2__\n#endif\n/* Enable extensions specified by ISO/IEC 24747:2009.  */\n#ifndef __STDC_WANT_MATH_SPEC_FUNCS__\n# undef __STDC_WANT_MATH_SPEC_FUNCS__\n#endif\n/* Enable extensions on HP NonStop.  */\n#ifndef _TANDEM_SOURCE\n# undef _TANDEM_SOURCE\n#endif\n/* Enable X/Open extensions if necessary.  HP-UX 11.11 defines\n   mbstate_t only if _XOPEN_SOURCE is defined to 500, regardless of\n   whether compiling with -Ae or -D_HPUX_SOURCE=1.  */\n#ifndef _XOPEN_SOURCE\n# undef _XOPEN_SOURCE\n#endif\n/* Enable general extensions on Solaris.  */\n#ifndef __EXTENSIONS__\n# undef __EXTENSIONS__\n#endif\n\n\n/* Define to 1 if you want getc etc. to use unlocked I/O if available.\n   Unlocked I/O can improve performance in unithreaded apps, but it is not\n   safe for multithreaded apps. */\n#undef USE_UNLOCKED_IO\n\n/* Version number of package */\n#undef VERSION\n\n/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type\n   'wchar_t'. */\n#undef WCHAR_T_SUFFIX\n\n/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type\n   'wint_t'. */\n#undef WINT_T_SUFFIX\n\n/* Define if the machine's byte ordering is little endian. */\n#undef WORDS_LITTLEENDIAN\n\n/* Enable large inode numbers on Mac OS X 10.5. */\n#undef _DARWIN_USE_64_BIT_INODE\n\n/* Number of bits in a file offset, on hosts where this is settable. */\n#undef _FILE_OFFSET_BITS\n\n/* Define to 1 if Gnulib overrides 'struct stat' on Windows so that struct\n   stat.st_size becomes 64-bit. */\n#undef _GL_WINDOWS_64_BIT_ST_SIZE\n\n/* Define for large files, on AIX-style hosts. */\n#undef _LARGE_FILES\n\n/* Define to 1 if on MINIX. */\n#undef _MINIX\n\n/* Define to 1 to make NetBSD features available. MINIX 3 needs this. */\n#undef _NETBSD_SOURCE\n\n/* The _Noreturn keyword of C11.  */\n#if ! (defined _Noreturn \\\n       || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__))\n# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \\\n      || 0x5110 <= __SUNPRO_C)\n#  define _Noreturn __attribute__ ((__noreturn__))\n# elif defined _MSC_VER && 1200 <= _MSC_VER\n#  define _Noreturn __declspec (noreturn)\n# else\n#  define _Noreturn\n# endif\n#endif\n\n\n/* Define to 2 if the system does not provide POSIX.1 features except with\n   this defined. */\n#undef _POSIX_1_SOURCE\n\n/* Define to 1 if you need to in order for 'stat' and other things to work. */\n#undef _POSIX_SOURCE\n\n/* Define to 1 if the system <stdint.h> predates C++11. */\n#undef __STDC_CONSTANT_MACROS\n\n/* Define to 1 if the system <stdint.h> predates C++11. */\n#undef __STDC_LIMIT_MACROS\n\n/* Please see the Gnulib manual for how to use these macros.\n\n   Suppress extern inline with HP-UX cc, as it appears to be broken; see\n   <http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html>.\n\n   Suppress extern inline with Sun C in standards-conformance mode, as it\n   mishandles inline functions that call each other.  E.g., for 'inline void f\n   (void) { } inline void g (void) { f (); }', c99 incorrectly complains\n   'reference to static identifier \"f\" in extern inline function'.\n   This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16.\n\n   Suppress extern inline (with or without __attribute__ ((__gnu_inline__)))\n   on configurations that mistakenly use 'static inline' to implement\n   functions or macros in standard C headers like <ctype.h>.  For example,\n   if isdigit is mistakenly implemented via a static inline function,\n   a program containing an extern inline function that calls isdigit\n   may not work since the C standard prohibits extern inline functions\n   from calling static functions.  This bug is known to occur on:\n\n     OS X 10.8 and earlier; see:\n     http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html\n\n     DragonFly; see\n     http://muscles.dragonflybsd.org/bulk/bleeding-edge-potential/latest-per-pkg/ah-tty-0.3.12.log\n\n     FreeBSD; see:\n     http://lists.gnu.org/archive/html/bug-gnulib/2014-07/msg00104.html\n\n   OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and\n   for clang but remains for g++; see <http://trac.macports.org/ticket/41033>.\n   Assume DragonFly and FreeBSD will be similar.  */\n#if (((defined __APPLE__ && defined __MACH__) \\\n      || defined __DragonFly__ || defined __FreeBSD__) \\\n     && (defined __header_inline \\\n         ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \\\n            && ! defined __clang__) \\\n         : ((! defined _DONT_USE_CTYPE_INLINE_ \\\n             && (defined __GNUC__ || defined __cplusplus)) \\\n            || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \\\n                && defined __GNUC__ && ! defined __cplusplus))))\n# define _GL_EXTERN_INLINE_STDHEADER_BUG\n#endif\n#if ((__GNUC__ \\\n      ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \\\n      : (199901L <= __STDC_VERSION__ \\\n         && !defined __HP_cc \\\n         && !defined __PGI \\\n         && !(defined __SUNPRO_C && __STDC__))) \\\n     && !defined _GL_EXTERN_INLINE_STDHEADER_BUG)\n# define _GL_INLINE inline\n# define _GL_EXTERN_INLINE extern inline\n# define _GL_EXTERN_INLINE_IN_USE\n#elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \\\n       && !defined _GL_EXTERN_INLINE_STDHEADER_BUG)\n# if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__\n   /* __gnu_inline__ suppresses a GCC 4.2 diagnostic.  */\n#  define _GL_INLINE extern inline __attribute__ ((__gnu_inline__))\n# else\n#  define _GL_INLINE extern inline\n# endif\n# define _GL_EXTERN_INLINE extern\n# define _GL_EXTERN_INLINE_IN_USE\n#else\n# define _GL_INLINE static _GL_UNUSED\n# define _GL_EXTERN_INLINE static _GL_UNUSED\n#endif\n\n/* In GCC 4.6 (inclusive) to 5.1 (exclusive),\n   suppress bogus \"no previous prototype for 'FOO'\"\n   and \"no previous declaration for 'FOO'\" diagnostics,\n   when FOO is an inline function in the header; see\n   <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113> and\n   <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63877>.  */\n#if __GNUC__ == 4 && 6 <= __GNUC_MINOR__\n# if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__\n#  define _GL_INLINE_HEADER_CONST_PRAGMA\n# else\n#  define _GL_INLINE_HEADER_CONST_PRAGMA \\\n     _Pragma (\"GCC diagnostic ignored \\\"-Wsuggest-attribute=const\\\"\")\n# endif\n# define _GL_INLINE_HEADER_BEGIN \\\n    _Pragma (\"GCC diagnostic push\") \\\n    _Pragma (\"GCC diagnostic ignored \\\"-Wmissing-prototypes\\\"\") \\\n    _Pragma (\"GCC diagnostic ignored \\\"-Wmissing-declarations\\\"\") \\\n    _GL_INLINE_HEADER_CONST_PRAGMA\n# define _GL_INLINE_HEADER_END \\\n    _Pragma (\"GCC diagnostic pop\")\n#else\n# define _GL_INLINE_HEADER_BEGIN\n# define _GL_INLINE_HEADER_END\n#endif\n\n/* Define to `int' if <sys/types.h> doesn't define. */\n#undef gid_t\n\n/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports\n   the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of\n   earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.\n   __APPLE__ && __MACH__ test for Mac OS X.\n   __APPLE_CC__ tests for the Apple compiler and its version.\n   __STDC_VERSION__ tests for the C99 mode.  */\n#if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__\n# define __GNUC_STDC_INLINE__ 1\n#endif\n\n/* Define to a type if <wchar.h> does not define. */\n#undef mbstate_t\n\n/* Define to `int' if <sys/types.h> does not define. */\n#undef mode_t\n\n/* Define to the type of st_nlink in struct stat, or a supertype. */\n#undef nlink_t\n\n/* Define to `int' if <sys/types.h> does not define. */\n#undef pid_t\n\n/* Define to the equivalent of the C99 'restrict' keyword, or to\n   nothing if this is not supported.  Do not define if restrict is\n   supported directly.  */\n#undef restrict\n/* Work around a bug in Sun C++: it does not support _Restrict or\n   __restrict__, even though the corresponding Sun C compiler ends up with\n   \"#define restrict _Restrict\" or \"#define restrict __restrict__\" in the\n   previous line.  Perhaps some future version of Sun C++ will work with\n   restrict; if so, hopefully it defines __RESTRICT like Sun C does.  */\n#if defined __SUNPRO_CC && !defined __RESTRICT\n# define _Restrict\n# define __restrict__\n#endif\n\n/* Define to `unsigned int' if <sys/types.h> does not define. */\n#undef size_t\n\n/* Define as a signed type of the same size as size_t. */\n#undef ssize_t\n\n/* Define to `int' if <sys/types.h> doesn't define. */\n#undef uid_t\n\n/* Define as a marker that can be attached to declarations that might not\n    be used.  This helps to reduce warnings, such as from\n    GCC -Wunused-parameter.  */\n#if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)\n# define _GL_UNUSED __attribute__ ((__unused__))\n#else\n# define _GL_UNUSED\n#endif\n/* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name\n   is a misnomer outside of parameter lists.  */\n#define _UNUSED_PARAMETER_ _GL_UNUSED\n\n/* gcc supports the \"unused\" attribute on possibly unused labels, and\n   g++ has since version 4.5.  Note to support C++ as well as C,\n   _GL_UNUSED_LABEL should be used with a trailing ;  */\n#if !defined __cplusplus || __GNUC__ > 4 \\\n    || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)\n# define _GL_UNUSED_LABEL _GL_UNUSED\n#else\n# define _GL_UNUSED_LABEL\n#endif\n\n/* The __pure__ attribute was added in gcc 2.96.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)\n# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))\n#else\n# define _GL_ATTRIBUTE_PURE /* empty */\n#endif\n\n/* The __const__ attribute was added in gcc 2.95.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)\n# define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))\n#else\n# define _GL_ATTRIBUTE_CONST /* empty */\n#endif\n\n\n\n/* On Windows, variables that may be in a DLL must be marked specially.  */\n#if defined _MSC_VER && defined _DLL\n# define DLL_VARIABLE __declspec (dllimport)\n#else\n# define DLL_VARIABLE\n#endif\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/config.status",
    "content": "#! /bin/sh\n# Generated by configure.\n# Run this file to recreate the current configuration.\n# Compiler output produced by configure, useful for debugging\n# configure, is in config.log if it exists.\n\ndebug=false\nac_cs_recheck=false\nac_cs_silent=false\n\nSHELL=${CONFIG_SHELL-/bin/sh}\nexport SHELL\n## -------------------- ##\n## M4sh Initialization. ##\n## -------------------- ##\n\n# Be more Bourne compatible\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\n\nas_nl='\n'\nexport as_nl\n# Printing a long string crashes Solaris 7 /usr/bin/printf.\nas_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo\n# Prefer a ksh shell builtin over an external printf program on Solaris,\n# but without wasting forks for bash or zsh.\nif test -z \"$BASH_VERSION$ZSH_VERSION\" \\\n    && (test \"X`print -r -- $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='print -r --'\n  as_echo_n='print -rn --'\nelif (test \"X`printf %s $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='printf %s\\n'\n  as_echo_n='printf %s'\nelse\n  if test \"X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`\" = \"X-n $as_echo\"; then\n    as_echo_body='eval /usr/ucb/echo -n \"$1$as_nl\"'\n    as_echo_n='/usr/ucb/echo -n'\n  else\n    as_echo_body='eval expr \"X$1\" : \"X\\\\(.*\\\\)\"'\n    as_echo_n_body='eval\n      arg=$1;\n      case $arg in #(\n      *\"$as_nl\"*)\n\texpr \"X$arg\" : \"X\\\\(.*\\\\)$as_nl\";\n\targ=`expr \"X$arg\" : \".*$as_nl\\\\(.*\\\\)\"`;;\n      esac;\n      expr \"X$arg\" : \"X\\\\(.*\\\\)\" | tr -d \"$as_nl\"\n    '\n    export as_echo_n_body\n    as_echo_n='sh -c $as_echo_n_body as_echo'\n  fi\n  export as_echo_body\n  as_echo='sh -c $as_echo_body as_echo'\nfi\n\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n# IFS\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent editors from complaining about space-tab.\n# (If _AS_PATH_WALK were called with IFS unset, it would disable word\n# splitting by setting IFS to empty value.)\nIFS=\" \"\"\t$as_nl\"\n\n# Find who we are.  Look in the path if we contain no directory separator.\nas_myself=\ncase $0 in #((\n  *[\\\\/]* ) as_myself=$0 ;;\n  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    test -r \"$as_dir/$0\" && as_myself=$as_dir/$0 && break\n  done\nIFS=$as_save_IFS\n\n     ;;\nesac\n# We did not find ourselves, most probably we were run as `sh COMMAND'\n# in which case we are not to be found in the path.\nif test \"x$as_myself\" = x; then\n  as_myself=$0\nfi\nif test ! -f \"$as_myself\"; then\n  $as_echo \"$as_myself: error: cannot find myself; rerun with an absolute file name\" >&2\n  exit 1\nfi\n\n# Unset variables that we do not need and which cause bugs (e.g. in\n# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the \"|| exit 1\"\n# suppresses any \"Segmentation fault\" message there.  '((' could\n# trigger a bug in pdksh 5.2.14.\nfor as_var in BASH_ENV ENV MAIL MAILPATH\ndo eval test x\\${$as_var+set} = xset \\\n  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :\ndone\nPS1='$ '\nPS2='> '\nPS4='+ '\n\n# NLS nuisances.\nLC_ALL=C\nexport LC_ALL\nLANGUAGE=C\nexport LANGUAGE\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n\n# as_fn_error STATUS ERROR [LINENO LOG_FD]\n# ----------------------------------------\n# Output \"`basename $0`: error: ERROR\" to stderr. If LINENO and LOG_FD are\n# provided, also output the error to LOG_FD, referencing LINENO. Then exit the\n# script with STATUS, using 1 if that was 0.\nas_fn_error ()\n{\n  as_status=$1; test $as_status -eq 0 && as_status=1\n  if test \"$4\"; then\n    as_lineno=${as_lineno-\"$3\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n    $as_echo \"$as_me:${as_lineno-$LINENO}: error: $2\" >&$4\n  fi\n  $as_echo \"$as_me: error: $2\" >&2\n  as_fn_exit $as_status\n} # as_fn_error\n\n\n# as_fn_set_status STATUS\n# -----------------------\n# Set $? to STATUS, without forking.\nas_fn_set_status ()\n{\n  return $1\n} # as_fn_set_status\n\n# as_fn_exit STATUS\n# -----------------\n# Exit the shell with STATUS, even in a \"trap 0\" or \"set -e\" context.\nas_fn_exit ()\n{\n  set +e\n  as_fn_set_status $1\n  exit $1\n} # as_fn_exit\n\n# as_fn_unset VAR\n# ---------------\n# Portably unset VAR.\nas_fn_unset ()\n{\n  { eval $1=; unset $1;}\n}\nas_unset=as_fn_unset\n# as_fn_append VAR VALUE\n# ----------------------\n# Append the text in VALUE to the end of the definition contained in VAR. Take\n# advantage of any shell optimizations that allow amortized linear growth over\n# repeated appends, instead of the typical quadratic growth present in naive\n# implementations.\nif (eval \"as_var=1; as_var+=2; test x\\$as_var = x12\") 2>/dev/null; then :\n  eval 'as_fn_append ()\n  {\n    eval $1+=\\$2\n  }'\nelse\n  as_fn_append ()\n  {\n    eval $1=\\$$1\\$2\n  }\nfi # as_fn_append\n\n# as_fn_arith ARG...\n# ------------------\n# Perform arithmetic evaluation on the ARGs, and store the result in the\n# global $as_val. Take advantage of shells that can avoid forks. The arguments\n# must be portable across $(()) and expr.\nif (eval \"test \\$(( 1 + 1 )) = 2\") 2>/dev/null; then :\n  eval 'as_fn_arith ()\n  {\n    as_val=$(( $* ))\n  }'\nelse\n  as_fn_arith ()\n  {\n    as_val=`expr \"$@\" || test $? -eq 1`\n  }\nfi # as_fn_arith\n\n\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nif (basename -- /) >/dev/null 2>&1 && test \"X`basename -- / 2>&1`\" = \"X/\"; then\n  as_basename=basename\nelse\n  as_basename=false\nfi\n\nif (as_dir=`dirname -- /` && test \"X$as_dir\" = X/) >/dev/null 2>&1; then\n  as_dirname=dirname\nelse\n  as_dirname=false\nfi\n\nas_me=`$as_basename -- \"$0\" ||\n$as_expr X/\"$0\" : '.*/\\([^/][^/]*\\)/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X/\"$0\" |\n    sed '/^.*\\/\\([^/][^/]*\\)\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n\n# Avoid depending upon Character Ranges.\nas_cr_letters='abcdefghijklmnopqrstuvwxyz'\nas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nas_cr_Letters=$as_cr_letters$as_cr_LETTERS\nas_cr_digits='0123456789'\nas_cr_alnum=$as_cr_Letters$as_cr_digits\n\nECHO_C= ECHO_N= ECHO_T=\ncase `echo -n x` in #(((((\n-n*)\n  case `echo 'xy\\c'` in\n  *c*) ECHO_T='\t';;\t# ECHO_T is single tab character.\n  xy)  ECHO_C='\\c';;\n  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null\n       ECHO_T='\t';;\n  esac;;\n*)\n  ECHO_N='-n';;\nesac\n\nrm -f conf$$ conf$$.exe conf$$.file\nif test -d conf$$.dir; then\n  rm -f conf$$.dir/conf$$.file\nelse\n  rm -f conf$$.dir\n  mkdir conf$$.dir 2>/dev/null\nfi\nif (echo >conf$$.file) 2>/dev/null; then\n  if ln -s conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s='ln -s'\n    # ... but there are two gotchas:\n    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.\n    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.\n    # In both cases, we have to default to `cp -pR'.\n    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||\n      as_ln_s='cp -pR'\n  elif ln conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s=ln\n  else\n    as_ln_s='cp -pR'\n  fi\nelse\n  as_ln_s='cp -pR'\nfi\nrm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file\nrmdir conf$$.dir 2>/dev/null\n\n\n# as_fn_mkdir_p\n# -------------\n# Create \"$as_dir\" as a directory, including parents if necessary.\nas_fn_mkdir_p ()\n{\n\n  case $as_dir in #(\n  -*) as_dir=./$as_dir;;\n  esac\n  test -d \"$as_dir\" || eval $as_mkdir_p || {\n    as_dirs=\n    while :; do\n      case $as_dir in #(\n      *\\'*) as_qdir=`$as_echo \"$as_dir\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; #'(\n      *) as_qdir=$as_dir;;\n      esac\n      as_dirs=\"'$as_qdir' $as_dirs\"\n      as_dir=`$as_dirname -- \"$as_dir\" ||\n$as_expr X\"$as_dir\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_dir\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_dir\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      test -d \"$as_dir\" && break\n    done\n    test -z \"$as_dirs\" || eval \"mkdir $as_dirs\"\n  } || test -d \"$as_dir\" || as_fn_error $? \"cannot create directory $as_dir\"\n\n\n} # as_fn_mkdir_p\nif mkdir -p . 2>/dev/null; then\n  as_mkdir_p='mkdir -p \"$as_dir\"'\nelse\n  test -d ./-p && rmdir ./-p\n  as_mkdir_p=false\nfi\n\n\n# as_fn_executable_p FILE\n# -----------------------\n# Test if FILE is an executable regular file.\nas_fn_executable_p ()\n{\n  test -f \"$1\" && test -x \"$1\"\n} # as_fn_executable_p\nas_test_x='test -x'\nas_executable_p=as_fn_executable_p\n\n# Sed expression to map a string onto a valid CPP name.\nas_tr_cpp=\"eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'\"\n\n# Sed expression to map a string onto a valid variable name.\nas_tr_sh=\"eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'\"\n\n\nexec 6>&1\n## ----------------------------------- ##\n## Main body of $CONFIG_STATUS script. ##\n## ----------------------------------- ##\n# Save the log message, to keep $0 and so on meaningful, and to\n# report actual input values of CONFIG_FILES etc. instead of their\n# values after options handling.\nac_log=\"\nThis file was extended by libiconv $as_me 1.15, which was\ngenerated by GNU Autoconf 2.69.  Invocation command line was\n\n  CONFIG_FILES    = $CONFIG_FILES\n  CONFIG_HEADERS  = $CONFIG_HEADERS\n  CONFIG_LINKS    = $CONFIG_LINKS\n  CONFIG_COMMANDS = $CONFIG_COMMANDS\n  $ $0 $@\n\non `(hostname || uname -n) 2>/dev/null | sed 1q`\n\"\n\n# Files that config.status was made for.\nconfig_files=\" Makefile lib/Makefile srclib/Makefile src/Makefile po/Makefile.in man/Makefile tests/Makefile include/iconv.h:include/iconv.h.build.in include/iconv.h.inst:include/iconv.h.in\"\nconfig_headers=\" config.h lib/config.h\"\nconfig_commands=\" depfiles libtool po-directories\"\n\nac_cs_usage=\"\\\n\\`$as_me' instantiates files and other configuration actions\nfrom templates according to the current configuration.  Unless the files\nand actions are specified as TAGs, all are instantiated by default.\n\nUsage: $0 [OPTION]... [TAG]...\n\n  -h, --help       print this help, then exit\n  -V, --version    print version number and configuration settings, then exit\n      --config     print configuration, then exit\n  -q, --quiet, --silent\n                   do not print progress messages\n  -d, --debug      don't remove temporary files\n      --recheck    update $as_me by reconfiguring in the same conditions\n      --file=FILE[:TEMPLATE]\n                   instantiate the configuration file FILE\n      --header=FILE[:TEMPLATE]\n                   instantiate the configuration header FILE\n\nConfiguration files:\n$config_files\n\nConfiguration headers:\n$config_headers\n\nConfiguration commands:\n$config_commands\n\nReport bugs to the package provider.\"\n\nac_cs_config=\"\"\nac_cs_version=\"\\\nlibiconv config.status 1.15\nconfigured by ./configure, generated by GNU Autoconf 2.69,\n  with options \\\"$ac_cs_config\\\"\n\nCopyright (C) 2012 Free Software Foundation, Inc.\nThis config.status script is free software; the Free Software Foundation\ngives unlimited permission to copy, distribute and modify it.\"\n\nac_pwd='/Users/wanghao/Desktop/demo/zbar/libiconv-1.15'\nsrcdir='.'\nINSTALL='/usr/bin/install -c'\nMKDIR_P='build-aux/install-sh -c -d'\nAWK='awk'\ntest -n \"$AWK\" || AWK=awk\n# The default lists apply if the user does not specify any file.\nac_need_defaults=:\nwhile test $# != 0\ndo\n  case $1 in\n  --*=?*)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=`expr \"X$1\" : 'X[^=]*=\\(.*\\)'`\n    ac_shift=:\n    ;;\n  --*=)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=\n    ac_shift=:\n    ;;\n  *)\n    ac_option=$1\n    ac_optarg=$2\n    ac_shift=shift\n    ;;\n  esac\n\n  case $ac_option in\n  # Handling of the options.\n  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)\n    ac_cs_recheck=: ;;\n  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )\n    $as_echo \"$ac_cs_version\"; exit ;;\n  --config | --confi | --conf | --con | --co | --c )\n    $as_echo \"$ac_cs_config\"; exit ;;\n  --debug | --debu | --deb | --de | --d | -d )\n    debug=: ;;\n  --file | --fil | --fi | --f )\n    $ac_shift\n    case $ac_optarg in\n    *\\'*) ac_optarg=`$as_echo \"$ac_optarg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    '') as_fn_error $? \"missing file argument\" ;;\n    esac\n    as_fn_append CONFIG_FILES \" '$ac_optarg'\"\n    ac_need_defaults=false;;\n  --header | --heade | --head | --hea )\n    $ac_shift\n    case $ac_optarg in\n    *\\'*) ac_optarg=`$as_echo \"$ac_optarg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    esac\n    as_fn_append CONFIG_HEADERS \" '$ac_optarg'\"\n    ac_need_defaults=false;;\n  --he | --h)\n    # Conflict between --help and --header\n    as_fn_error $? \"ambiguous option: \\`$1'\nTry \\`$0 --help' for more information.\";;\n  --help | --hel | -h )\n    $as_echo \"$ac_cs_usage\"; exit ;;\n  -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n  | -silent | --silent | --silen | --sile | --sil | --si | --s)\n    ac_cs_silent=: ;;\n\n  # This is an error.\n  -*) as_fn_error $? \"unrecognized option: \\`$1'\nTry \\`$0 --help' for more information.\" ;;\n\n  *) as_fn_append ac_config_targets \" $1\"\n     ac_need_defaults=false ;;\n\n  esac\n  shift\ndone\n\nac_configure_extra_args=\n\nif $ac_cs_silent; then\n  exec 6>/dev/null\n  ac_configure_extra_args=\"$ac_configure_extra_args --silent\"\nfi\n\nif $ac_cs_recheck; then\n  set X /bin/sh './configure'  $ac_configure_extra_args --no-create --no-recursion\n  shift\n  $as_echo \"running CONFIG_SHELL=/bin/sh $*\" >&6\n  CONFIG_SHELL='/bin/sh'\n  export CONFIG_SHELL\n  exec \"$@\"\nfi\n\nexec 5>>config.log\n{\n  echo\n  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX\n## Running $as_me. ##\n_ASBOX\n  $as_echo \"$ac_log\"\n} >&5\n\n#\n# INIT-COMMANDS\n#\nAMDEP_TRUE=\"\" ac_aux_dir=\"build-aux\"\n\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nsed_quote_subst='s/\\([\"`$\\\\]\\)/\\\\\\1/g'\ndouble_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\ndelay_variable_subst='s/\\\\\\\\\\\\\\\\\\\\\\$/\\\\\\\\\\\\$/g'\nmacro_version='2.4.6'\nmacro_revision='2.4.6'\nenable_static='no'\nAS='as'\nDLLTOOL='false'\nOBJDUMP='objdump'\nenable_shared='yes'\npic_mode='default'\nenable_fast_install='needless'\nshared_archive_member_spec=''\nSHELL='/bin/sh'\nECHO='printf %s\\n'\nPATH_SEPARATOR=':'\nhost_alias=''\nhost='x86_64-apple-darwin16.6.0'\nhost_os='darwin16.6.0'\nbuild_alias=''\nbuild='x86_64-apple-darwin16.6.0'\nbuild_os='darwin16.6.0'\nSED='/usr/bin/sed'\nXsed='/usr/bin/sed -e 1s/^X//'\nGREP='/usr/bin/grep'\nEGREP='/usr/bin/grep -E'\nFGREP='/usr/bin/grep -F'\nLD='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld'\nNM='/usr/bin/nm -B'\nLN_S='ln -s'\nmax_cmd_len='196608'\nac_objext='o'\nexeext=''\nlt_unset='unset'\nlt_SP2NL='tr \\040 \\012'\nlt_NL2SP='tr \\015\\012 \\040\\040'\nlt_cv_to_host_file_cmd='func_convert_file_noop'\nlt_cv_to_tool_file_cmd='func_convert_file_noop'\nreload_flag=' -r'\nreload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs'\ndeplibs_check_method='pass_all'\nfile_magic_cmd='$MAGIC_CMD'\nfile_magic_glob=''\nwant_nocaseglob='no'\nsharedlib_from_linklib_cmd='printf %s\\n'\nAR='ar'\nAR_FLAGS='cru'\narchiver_list_spec=''\nSTRIP='/usr/bin/strip'\nRANLIB='ranlib'\nold_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib'\nold_postuninstall_cmds=''\nold_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'\nlock_old_archive_extraction='yes'\nCC='gcc'\nCFLAGS='-g -O2'\ncompiler=''\nGCC='yes'\nlt_cv_sys_global_symbol_pipe='sed -n -e '\\''s/^.*[\t ]\\([BCDEGRST][BCDEGRST]*\\)[\t ][\t ]*_\\([_A-Za-z][_A-Za-z0-9]*\\)$/\\1 _\\2 \\2/p'\\'' | sed '\\''/ __gnu_lto/d'\\'''\nlt_cv_sys_global_symbol_to_cdecl='sed -n -e '\\''s/^T .* \\(.*\\)$/extern int \\1();/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(.*\\)$/extern char \\1;/p'\\'''\nlt_cv_sys_global_symbol_to_import=''\nlt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\\''s/^: \\(.*\\) .*$/  {\"\\1\", (void *) 0},/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(.*\\)$/  {\"\\1\", (void *) \\&\\1},/p'\\'''\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\\''s/^: \\(.*\\) .*$/  {\"\\1\", (void *) 0},/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(lib.*\\)$/  {\"\\1\", (void *) \\&\\1},/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(.*\\)$/  {\"lib\\1\", (void *) \\&\\1},/p'\\'''\nlt_cv_nm_interface='BSD nm'\nnm_file_list_spec=''\nlt_sysroot=''\nlt_cv_truncate_bin='/bin/dd bs=4096 count=1'\nobjdir='.libs'\nMAGIC_CMD='file'\nlt_prog_compiler_no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions'\nlt_prog_compiler_pic=' -fno-common -DPIC'\nlt_prog_compiler_wl='-Wl,'\nlt_prog_compiler_static=''\nlt_cv_prog_compiler_c_o='yes'\nneed_locks='no'\nMANIFEST_TOOL=':'\nDSYMUTIL='dsymutil'\nNMEDIT='nmedit'\nLIPO='lipo'\nOTOOL='otool'\nOTOOL64=':'\nlibext='a'\nshrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'\nextract_expsyms_cmds=''\narchive_cmds_need_lc='no'\nenable_shared_with_static_runtimes='no'\nexport_dynamic_flag_spec=''\nwhole_archive_flag_spec='`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience $wl-force_load,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"`'\ncompiler_needs_object='no'\nold_archive_from_new_cmds=''\nold_archive_from_expsyms_cmds=''\narchive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring $single_module'\narchive_expsym_cmds='sed '\\''s|^|_|'\\'' < $export_symbols > $output_objdir/$libname-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring $single_module $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'\nmodule_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags'\nmodule_expsym_cmds='sed -e '\\''s|^|_|'\\'' < $export_symbols > $output_objdir/$libname-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'\nwith_gnu_ld='no'\nallow_undefined_flag='$wl-undefined ${wl}dynamic_lookup'\nno_undefined_flag=''\nhardcode_libdir_flag_spec=''\nhardcode_libdir_separator=''\nhardcode_direct='no'\nhardcode_direct_absolute='no'\nhardcode_minus_L='no'\nhardcode_shlibpath_var='unsupported'\nhardcode_automatic='yes'\ninherit_rpath='no'\nlink_all_deplibs='yes'\nalways_export_symbols='no'\nexport_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\nexclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'\ninclude_expsyms=''\nprelink_cmds=''\npostlink_cmds=''\nfile_list_spec=''\nvariables_saved_for_relink='PATH DYLD_LIBRARY_PATH  GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'\nneed_lib_prefix='no'\nneed_version='no'\nversion_type='darwin'\nrunpath_var=''\nshlibpath_var='DYLD_LIBRARY_PATH'\nshlibpath_overrides_runpath='yes'\nlibname_spec='lib$name'\nlibrary_names_spec='$libname$release$major$shared_ext $libname$shared_ext'\nsoname_spec='$libname$release$major$shared_ext'\ninstall_override_mode=''\npostinstall_cmds=''\npostuninstall_cmds=''\nfinish_cmds=''\nfinish_eval=''\nhardcode_into_libs='no'\nsys_lib_search_path_spec='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.1.0  /usr/local/lib'\nconfigure_time_dlsearch_path='/usr/local/lib /lib /usr/lib'\nconfigure_time_lt_sys_library_path=''\nhardcode_action='immediate'\nenable_dlopen='unknown'\nenable_dlopen_self='unknown'\nenable_dlopen_self_static='unknown'\nold_striplib='/usr/bin/strip -S'\nstriplib='/usr/bin/strip -x'\nLD_RC=''\nreload_flag_RC=''\nreload_cmds_RC=''\nold_archive_cmds_RC=''\ncompiler_RC=''\nGCC_RC=''\nlt_prog_compiler_no_builtin_flag_RC=''\nlt_prog_compiler_pic_RC=''\nlt_prog_compiler_wl_RC=''\nlt_prog_compiler_static_RC=''\nlt_cv_prog_compiler_c_o_RC='yes'\narchive_cmds_need_lc_RC=''\nenable_shared_with_static_runtimes_RC=''\nexport_dynamic_flag_spec_RC=''\nwhole_archive_flag_spec_RC=''\ncompiler_needs_object_RC=''\nold_archive_from_new_cmds_RC=''\nold_archive_from_expsyms_cmds_RC=''\narchive_cmds_RC=''\narchive_expsym_cmds_RC=''\nmodule_cmds_RC=''\nmodule_expsym_cmds_RC=''\nwith_gnu_ld_RC=''\nallow_undefined_flag_RC=''\nno_undefined_flag_RC=''\nhardcode_libdir_flag_spec_RC=''\nhardcode_libdir_separator_RC=''\nhardcode_direct_RC=''\nhardcode_direct_absolute_RC=''\nhardcode_minus_L_RC=''\nhardcode_shlibpath_var_RC=''\nhardcode_automatic_RC=''\ninherit_rpath_RC=''\nlink_all_deplibs_RC=''\nalways_export_symbols_RC=''\nexport_symbols_cmds_RC=''\nexclude_expsyms_RC=''\ninclude_expsyms_RC=''\nprelink_cmds_RC=''\npostlink_cmds_RC=''\nfile_list_spec_RC=''\nhardcode_action_RC=''\n\nLTCC='gcc'\nLTCFLAGS='-g -O2'\ncompiler='gcc'\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n}\n\n# Quote evaled strings.\nfor var in AS DLLTOOL OBJDUMP SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface nm_file_list_spec lt_cv_truncate_bin lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib LD_RC reload_flag_RC compiler_RC lt_prog_compiler_no_builtin_flag_RC lt_prog_compiler_pic_RC lt_prog_compiler_wl_RC lt_prog_compiler_static_RC lt_cv_prog_compiler_c_o_RC export_dynamic_flag_spec_RC whole_archive_flag_spec_RC compiler_needs_object_RC with_gnu_ld_RC allow_undefined_flag_RC no_undefined_flag_RC hardcode_libdir_flag_spec_RC hardcode_libdir_separator_RC exclude_expsyms_RC include_expsyms_RC file_list_spec_RC; do\n    case `eval \\\\$ECHO \\\\\"\"\\\\$$var\"\\\\\"` in\n    *[\\\\\\`\\\"\\$]*)\n      eval \"lt_$var=\\\\\\\"\\`\\$ECHO \\\"\\$$var\\\" | \\$SED \\\"\\$sed_quote_subst\\\"\\`\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_$var=\\\\\\\"\\$$var\\\\\\\"\"\n      ;;\n    esac\ndone\n\n# Double-quote double-evaled strings.\nfor var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec configure_time_dlsearch_path configure_time_lt_sys_library_path reload_cmds_RC old_archive_cmds_RC old_archive_from_new_cmds_RC old_archive_from_expsyms_cmds_RC archive_cmds_RC archive_expsym_cmds_RC module_cmds_RC module_expsym_cmds_RC export_symbols_cmds_RC prelink_cmds_RC postlink_cmds_RC; do\n    case `eval \\\\$ECHO \\\\\"\"\\\\$$var\"\\\\\"` in\n    *[\\\\\\`\\\"\\$]*)\n      eval \"lt_$var=\\\\\\\"\\`\\$ECHO \\\"\\$$var\\\" | \\$SED -e \\\"\\$double_quote_subst\\\" -e \\\"\\$sed_quote_subst\\\" -e \\\"\\$delay_variable_subst\\\"\\`\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_$var=\\\\\\\"\\$$var\\\\\\\"\"\n      ;;\n    esac\ndone\n\nac_aux_dir='build-aux'\n\n# See if we are running on zsh, and set the options that allow our\n# commands through without removal of \\ escapes INIT.\nif test -n \"${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n\n\n    PACKAGE='libiconv'\n    VERSION='1.15'\n    RM='rm -f'\n    ofile='libtool'\n\n\n\n\n\n# Capture the value of obsolete ALL_LINGUAS because we need it to compute\n    # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it\n    # from automake < 1.5.\n    eval 'OBSOLETE_ALL_LINGUAS''=\"\"'\n    # Capture the value of LINGUAS because we need it to compute CATALOGS.\n    LINGUAS=\"%UNSET%\"\n\n\n\n# Handling of arguments.\nfor ac_config_target in $ac_config_targets\ndo\n  case $ac_config_target in\n    \"config.h\") CONFIG_HEADERS=\"$CONFIG_HEADERS config.h\" ;;\n    \"lib/config.h\") CONFIG_HEADERS=\"$CONFIG_HEADERS lib/config.h\" ;;\n    \"depfiles\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS depfiles\" ;;\n    \"libtool\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS libtool\" ;;\n    \"po-directories\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS po-directories\" ;;\n    \"Makefile\") CONFIG_FILES=\"$CONFIG_FILES Makefile\" ;;\n    \"lib/Makefile\") CONFIG_FILES=\"$CONFIG_FILES lib/Makefile\" ;;\n    \"srclib/Makefile\") CONFIG_FILES=\"$CONFIG_FILES srclib/Makefile\" ;;\n    \"src/Makefile\") CONFIG_FILES=\"$CONFIG_FILES src/Makefile\" ;;\n    \"po/Makefile.in\") CONFIG_FILES=\"$CONFIG_FILES po/Makefile.in\" ;;\n    \"man/Makefile\") CONFIG_FILES=\"$CONFIG_FILES man/Makefile\" ;;\n    \"tests/Makefile\") CONFIG_FILES=\"$CONFIG_FILES tests/Makefile\" ;;\n    \"include/iconv.h\") CONFIG_FILES=\"$CONFIG_FILES include/iconv.h:include/iconv.h.build.in\" ;;\n    \"include/iconv.h.inst\") CONFIG_FILES=\"$CONFIG_FILES include/iconv.h.inst:include/iconv.h.in\" ;;\n\n  *) as_fn_error $? \"invalid argument: \\`$ac_config_target'\" \"$LINENO\" 5;;\n  esac\ndone\n\n\n# If the user did not use the arguments to specify the items to instantiate,\n# then the envvar interface is used.  Set only those that are not.\n# We use the long form for the default assignment because of an extremely\n# bizarre bug on SunOS 4.1.3.\nif $ac_need_defaults; then\n  test \"${CONFIG_FILES+set}\" = set || CONFIG_FILES=$config_files\n  test \"${CONFIG_HEADERS+set}\" = set || CONFIG_HEADERS=$config_headers\n  test \"${CONFIG_COMMANDS+set}\" = set || CONFIG_COMMANDS=$config_commands\nfi\n\n# Have a temporary directory for convenience.  Make it in the build tree\n# simply because there is no reason against having it here, and in addition,\n# creating and moving files from /tmp can sometimes cause problems.\n# Hook for its removal unless debugging.\n# Note that there is a small window in which the directory will not be cleaned:\n# after its creation but before its name has been assigned to `$tmp'.\n$debug ||\n{\n  tmp= ac_tmp=\n  trap 'exit_status=$?\n  : \"${ac_tmp:=$tmp}\"\n  { test ! -d \"$ac_tmp\" || rm -fr \"$ac_tmp\"; } && exit $exit_status\n' 0\n  trap 'as_fn_exit 1' 1 2 13 15\n}\n# Create a (secure) tmp directory for tmp files.\n\n{\n  tmp=`(umask 077 && mktemp -d \"./confXXXXXX\") 2>/dev/null` &&\n  test -d \"$tmp\"\n}  ||\n{\n  tmp=./conf$$-$RANDOM\n  (umask 077 && mkdir \"$tmp\")\n} || as_fn_error $? \"cannot create a temporary directory in .\" \"$LINENO\" 5\nac_tmp=$tmp\n\n# Set up the scripts for CONFIG_FILES section.\n# No need to generate them if there are no CONFIG_FILES.\n# This happens for instance with `./config.status config.h'.\nif test -n \"$CONFIG_FILES\"; then\n\n\nac_cr=`echo X | tr X '\\015'`\n# On cygwin, bash can eat \\r inside `` if the user requested igncr.\n# But we know of no other shell where ac_cr would be empty at this\n# point, so we can use a bashism as a fallback.\nif test \"x$ac_cr\" = x; then\n  eval ac_cr=\\$\\'\\\\r\\'\nfi\nac_cs_awk_cr=`$AWK 'BEGIN { print \"a\\rb\" }' </dev/null 2>/dev/null`\nif test \"$ac_cs_awk_cr\" = \"a${ac_cr}b\"; then\n  ac_cs_awk_cr='\\\\r'\nelse\n  ac_cs_awk_cr=$ac_cr\nfi\n\necho 'BEGIN {' >\"$ac_tmp/subs1.awk\" &&\ncat >>\"$ac_tmp/subs1.awk\" <<\\_ACAWK &&\nS[\"gltests_LTLIBOBJS\"]=\"\"\nS[\"gltests_LIBOBJS\"]=\"\"\nS[\"gl_LTLIBOBJS\"]=\" canonicalize-lgpl.lo error.lo lstat.lo readlink.lo stat.lo strerror.lo strerror-override.lo\"\nS[\"gl_LIBOBJS\"]=\" canonicalize-lgpl.o error.o lstat.o readlink.o stat.o strerror.o strerror-override.o\"\nS[\"am__EXEEXT_FALSE\"]=\"\"\nS[\"am__EXEEXT_TRUE\"]=\"#\"\nS[\"LTLIBOBJS\"]=\"\"\nS[\"LIBOBJS\"]=\"\"\nS[\"subdirs\"]=\" libcharset preload\"\nS[\"DLL_VARIABLE\"]=\"\"\nS[\"WOE32DLL\"]=\"no\"\nS[\"SRCLIBOBJS\"]=\"\"\nS[\"LIBICRT_LTLIBDEPS\"]=\"\"\nS[\"LIBICRT_LIBDEPS\"]=\"\"\nS[\"gltests_WITNESS\"]=\"IN_LIBICONV_GNULIB_TESTS\"\nS[\"LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_FALSE\"]=\"#\"\nS[\"LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE\"]=\"\"\nS[\"LIBUNISTRING_UNIWIDTH_H\"]=\"uniwidth.h\"\nS[\"LIBUNISTRING_UNITYPES_H\"]=\"unitypes.h\"\nS[\"HAVE_UNISTD_H\"]=\"1\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_UNISTD_H\"]=\"<unistd.h>\"\nS[\"NEXT_UNISTD_H\"]=\"<unistd.h>\"\nS[\"UNISTD_H_DEFINES_STRUCT_TIMESPEC\"]=\"0\"\nS[\"PTHREAD_H_DEFINES_STRUCT_TIMESPEC\"]=\"0\"\nS[\"SYS_TIME_H_DEFINES_STRUCT_TIMESPEC\"]=\"0\"\nS[\"TIME_H_DEFINES_STRUCT_TIMESPEC\"]=\"1\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_TIME_H\"]=\"<time.h>\"\nS[\"NEXT_TIME_H\"]=\"<time.h>\"\nS[\"REPLACE_LOCALTIME\"]=\"0\"\nS[\"REPLACE_GMTIME\"]=\"0\"\nS[\"REPLACE_TIMEGM\"]=\"GNULIB_PORTCHECK\"\nS[\"REPLACE_NANOSLEEP\"]=\"GNULIB_PORTCHECK\"\nS[\"REPLACE_MKTIME\"]=\"GNULIB_PORTCHECK\"\nS[\"REPLACE_LOCALTIME_R\"]=\"GNULIB_PORTCHECK\"\nS[\"HAVE_TIMEGM\"]=\"1\"\nS[\"HAVE_STRPTIME\"]=\"1\"\nS[\"HAVE_NANOSLEEP\"]=\"1\"\nS[\"HAVE_DECL_LOCALTIME_R\"]=\"1\"\nS[\"GNULIB_TIME_RZ\"]=\"0\"\nS[\"GNULIB_TIME_R\"]=\"0\"\nS[\"GNULIB_TIMEGM\"]=\"0\"\nS[\"GNULIB_STRPTIME\"]=\"0\"\nS[\"GNULIB_NANOSLEEP\"]=\"0\"\nS[\"GNULIB_MKTIME\"]=\"0\"\nS[\"WINDOWS_64_BIT_OFF_T\"]=\"0\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H\"]=\"<sys/types.h>\"\nS[\"NEXT_SYS_TYPES_H\"]=\"<sys/types.h>\"\nS[\"WINDOWS_64_BIT_ST_SIZE\"]=\"0\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H\"]=\"<sys/stat.h>\"\nS[\"NEXT_SYS_STAT_H\"]=\"<sys/stat.h>\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_STRING_H\"]=\"<string.h>\"\nS[\"NEXT_STRING_H\"]=\"<string.h>\"\nS[\"UNDEFINE_STRTOK_R\"]=\"0\"\nS[\"REPLACE_STRTOK_R\"]=\"0\"\nS[\"REPLACE_STRSIGNAL\"]=\"0\"\nS[\"REPLACE_STRNLEN\"]=\"0\"\nS[\"REPLACE_STRNDUP\"]=\"0\"\nS[\"REPLACE_STRNCAT\"]=\"0\"\nS[\"REPLACE_STRERROR_R\"]=\"0\"\nS[\"REPLACE_STRERROR\"]=\"1\"\nS[\"REPLACE_STRCHRNUL\"]=\"0\"\nS[\"REPLACE_STRCASESTR\"]=\"0\"\nS[\"REPLACE_STRSTR\"]=\"0\"\nS[\"REPLACE_STRDUP\"]=\"0\"\nS[\"REPLACE_STPNCPY\"]=\"0\"\nS[\"REPLACE_MEMMEM\"]=\"0\"\nS[\"REPLACE_MEMCHR\"]=\"0\"\nS[\"HAVE_STRVERSCMP\"]=\"1\"\nS[\"HAVE_DECL_STRSIGNAL\"]=\"1\"\nS[\"HAVE_DECL_STRERROR_R\"]=\"1\"\nS[\"HAVE_DECL_STRTOK_R\"]=\"1\"\nS[\"HAVE_STRCASESTR\"]=\"1\"\nS[\"HAVE_STRSEP\"]=\"1\"\nS[\"HAVE_STRPBRK\"]=\"1\"\nS[\"HAVE_DECL_STRNLEN\"]=\"1\"\nS[\"HAVE_DECL_STRNDUP\"]=\"1\"\nS[\"HAVE_DECL_STRDUP\"]=\"1\"\nS[\"HAVE_STRCHRNUL\"]=\"1\"\nS[\"HAVE_STPNCPY\"]=\"1\"\nS[\"HAVE_STPCPY\"]=\"1\"\nS[\"HAVE_RAWMEMCHR\"]=\"1\"\nS[\"HAVE_DECL_MEMRCHR\"]=\"1\"\nS[\"HAVE_MEMPCPY\"]=\"1\"\nS[\"HAVE_DECL_MEMMEM\"]=\"1\"\nS[\"HAVE_MEMCHR\"]=\"1\"\nS[\"HAVE_FFSLL\"]=\"1\"\nS[\"HAVE_FFSL\"]=\"1\"\nS[\"HAVE_MBSLEN\"]=\"0\"\nS[\"GNULIB_STRVERSCMP\"]=\"0\"\nS[\"GNULIB_STRSIGNAL\"]=\"0\"\nS[\"GNULIB_STRERROR_R\"]=\"0\"\nS[\"GNULIB_STRERROR\"]=\"1\"\nS[\"GNULIB_MBSTOK_R\"]=\"0\"\nS[\"GNULIB_MBSSEP\"]=\"0\"\nS[\"GNULIB_MBSSPN\"]=\"0\"\nS[\"GNULIB_MBSPBRK\"]=\"0\"\nS[\"GNULIB_MBSCSPN\"]=\"0\"\nS[\"GNULIB_MBSCASESTR\"]=\"0\"\nS[\"GNULIB_MBSPCASECMP\"]=\"0\"\nS[\"GNULIB_MBSNCASECMP\"]=\"0\"\nS[\"GNULIB_MBSCASECMP\"]=\"0\"\nS[\"GNULIB_MBSSTR\"]=\"0\"\nS[\"GNULIB_MBSRCHR\"]=\"0\"\nS[\"GNULIB_MBSCHR\"]=\"0\"\nS[\"GNULIB_MBSNLEN\"]=\"0\"\nS[\"GNULIB_MBSLEN\"]=\"0\"\nS[\"GNULIB_STRTOK_R\"]=\"0\"\nS[\"GNULIB_STRCASESTR\"]=\"0\"\nS[\"GNULIB_STRSTR\"]=\"0\"\nS[\"GNULIB_STRSEP\"]=\"0\"\nS[\"GNULIB_STRPBRK\"]=\"0\"\nS[\"GNULIB_STRNLEN\"]=\"0\"\nS[\"GNULIB_STRNDUP\"]=\"0\"\nS[\"GNULIB_STRNCAT\"]=\"0\"\nS[\"GNULIB_STRDUP\"]=\"0\"\nS[\"GNULIB_STRCHRNUL\"]=\"0\"\nS[\"GNULIB_STPNCPY\"]=\"0\"\nS[\"GNULIB_STPCPY\"]=\"0\"\nS[\"GNULIB_RAWMEMCHR\"]=\"0\"\nS[\"GNULIB_MEMRCHR\"]=\"0\"\nS[\"GNULIB_MEMPCPY\"]=\"0\"\nS[\"GNULIB_MEMMEM\"]=\"0\"\nS[\"GNULIB_MEMCHR\"]=\"0\"\nS[\"GNULIB_FFSLL\"]=\"0\"\nS[\"GNULIB_FFSL\"]=\"0\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_STDLIB_H\"]=\"<stdlib.h>\"\nS[\"NEXT_STDLIB_H\"]=\"<stdlib.h>\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_STDIO_H\"]=\"<stdio.h>\"\nS[\"NEXT_STDIO_H\"]=\"<stdio.h>\"\nS[\"GL_GENERATE_STDINT_H_FALSE\"]=\"#\"\nS[\"GL_GENERATE_STDINT_H_TRUE\"]=\"\"\nS[\"STDINT_H\"]=\"stdint.h\"\nS[\"HAVE_SYS_INTTYPES_H\"]=\"0\"\nS[\"HAVE_SYS_BITYPES_H\"]=\"0\"\nS[\"HAVE_C99_STDINT_H\"]=\"0\"\nS[\"WINT_T_SUFFIX\"]=\"\"\nS[\"WCHAR_T_SUFFIX\"]=\"\"\nS[\"SIG_ATOMIC_T_SUFFIX\"]=\"\"\nS[\"SIZE_T_SUFFIX\"]=\"ul\"\nS[\"PTRDIFF_T_SUFFIX\"]=\"l\"\nS[\"HAVE_SIGNED_WINT_T\"]=\"1\"\nS[\"HAVE_SIGNED_WCHAR_T\"]=\"1\"\nS[\"HAVE_SIGNED_SIG_ATOMIC_T\"]=\"1\"\nS[\"BITSIZEOF_WINT_T\"]=\"32\"\nS[\"BITSIZEOF_WCHAR_T\"]=\"32\"\nS[\"BITSIZEOF_SIG_ATOMIC_T\"]=\"32\"\nS[\"BITSIZEOF_SIZE_T\"]=\"64\"\nS[\"BITSIZEOF_PTRDIFF_T\"]=\"64\"\nS[\"HAVE_STDINT_H\"]=\"1\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_STDINT_H\"]=\"<stdint.h>\"\nS[\"NEXT_STDINT_H\"]=\"<stdint.h>\"\nS[\"HAVE_SYS_TYPES_H\"]=\"1\"\nS[\"HAVE_INTTYPES_H\"]=\"1\"\nS[\"HAVE_WCHAR_H\"]=\"1\"\nS[\"HAVE_UNSIGNED_LONG_LONG_INT\"]=\"1\"\nS[\"HAVE_LONG_LONG_INT\"]=\"1\"\nS[\"GNULIB_OVERRIDES_WINT_T\"]=\"0\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_STDDEF_H\"]=\"\"\nS[\"NEXT_STDDEF_H\"]=\"\"\nS[\"GL_GENERATE_STDDEF_H_FALSE\"]=\"\"\nS[\"GL_GENERATE_STDDEF_H_TRUE\"]=\"#\"\nS[\"STDDEF_H\"]=\"\"\nS[\"HAVE_MAX_ALIGN_T\"]=\"1\"\nS[\"REPLACE_NULL\"]=\"0\"\nS[\"HAVE__BOOL\"]=\"1\"\nS[\"GL_GENERATE_STDBOOL_H_FALSE\"]=\"\"\nS[\"GL_GENERATE_STDBOOL_H_TRUE\"]=\"#\"\nS[\"STDBOOL_H\"]=\"\"\nS[\"ASM_SYMBOL_PREFIX\"]=\"\\\"_\\\"\"\nS[\"REPLACE_VSPRINTF\"]=\"0\"\nS[\"REPLACE_VSNPRINTF\"]=\"0\"\nS[\"REPLACE_VPRINTF\"]=\"0\"\nS[\"REPLACE_VFPRINTF\"]=\"0\"\nS[\"REPLACE_VDPRINTF\"]=\"0\"\nS[\"REPLACE_VASPRINTF\"]=\"0\"\nS[\"REPLACE_TMPFILE\"]=\"0\"\nS[\"REPLACE_STDIO_WRITE_FUNCS\"]=\"0\"\nS[\"REPLACE_STDIO_READ_FUNCS\"]=\"0\"\nS[\"REPLACE_SPRINTF\"]=\"0\"\nS[\"REPLACE_SNPRINTF\"]=\"0\"\nS[\"REPLACE_RENAMEAT\"]=\"0\"\nS[\"REPLACE_RENAME\"]=\"0\"\nS[\"REPLACE_REMOVE\"]=\"0\"\nS[\"REPLACE_PRINTF\"]=\"0\"\nS[\"REPLACE_POPEN\"]=\"0\"\nS[\"REPLACE_PERROR\"]=\"0\"\nS[\"REPLACE_OBSTACK_PRINTF\"]=\"0\"\nS[\"REPLACE_GETLINE\"]=\"0\"\nS[\"REPLACE_GETDELIM\"]=\"0\"\nS[\"REPLACE_FTELLO\"]=\"0\"\nS[\"REPLACE_FTELL\"]=\"0\"\nS[\"REPLACE_FSEEKO\"]=\"0\"\nS[\"REPLACE_FSEEK\"]=\"0\"\nS[\"REPLACE_FREOPEN\"]=\"0\"\nS[\"REPLACE_FPURGE\"]=\"0\"\nS[\"REPLACE_FPRINTF\"]=\"0\"\nS[\"REPLACE_FOPEN\"]=\"0\"\nS[\"REPLACE_FFLUSH\"]=\"0\"\nS[\"REPLACE_FDOPEN\"]=\"0\"\nS[\"REPLACE_FCLOSE\"]=\"0\"\nS[\"REPLACE_DPRINTF\"]=\"0\"\nS[\"HAVE_VDPRINTF\"]=\"1\"\nS[\"HAVE_VASPRINTF\"]=\"1\"\nS[\"HAVE_RENAMEAT\"]=\"1\"\nS[\"HAVE_POPEN\"]=\"1\"\nS[\"HAVE_PCLOSE\"]=\"1\"\nS[\"HAVE_FTELLO\"]=\"1\"\nS[\"HAVE_FSEEKO\"]=\"1\"\nS[\"HAVE_DPRINTF\"]=\"1\"\nS[\"HAVE_DECL_VSNPRINTF\"]=\"1\"\nS[\"HAVE_DECL_SNPRINTF\"]=\"1\"\nS[\"HAVE_DECL_OBSTACK_PRINTF\"]=\"1\"\nS[\"HAVE_DECL_GETLINE\"]=\"1\"\nS[\"HAVE_DECL_GETDELIM\"]=\"1\"\nS[\"HAVE_DECL_FTELLO\"]=\"1\"\nS[\"HAVE_DECL_FSEEKO\"]=\"1\"\nS[\"HAVE_DECL_FPURGE\"]=\"1\"\nS[\"GNULIB_VSPRINTF_POSIX\"]=\"0\"\nS[\"GNULIB_VSNPRINTF\"]=\"0\"\nS[\"GNULIB_VPRINTF_POSIX\"]=\"0\"\nS[\"GNULIB_VPRINTF\"]=\"1\"\nS[\"GNULIB_VFPRINTF_POSIX\"]=\"0\"\nS[\"GNULIB_VFPRINTF\"]=\"1\"\nS[\"GNULIB_VDPRINTF\"]=\"0\"\nS[\"GNULIB_VSCANF\"]=\"0\"\nS[\"GNULIB_VFSCANF\"]=\"0\"\nS[\"GNULIB_VASPRINTF\"]=\"0\"\nS[\"GNULIB_TMPFILE\"]=\"0\"\nS[\"GNULIB_STDIO_H_SIGPIPE\"]=\"1\"\nS[\"GNULIB_STDIO_H_NONBLOCKING\"]=\"0\"\nS[\"GNULIB_SPRINTF_POSIX\"]=\"0\"\nS[\"GNULIB_SNPRINTF\"]=\"0\"\nS[\"GNULIB_SCANF\"]=\"1\"\nS[\"GNULIB_RENAMEAT\"]=\"0\"\nS[\"GNULIB_RENAME\"]=\"0\"\nS[\"GNULIB_REMOVE\"]=\"0\"\nS[\"GNULIB_PUTS\"]=\"1\"\nS[\"GNULIB_PUTCHAR\"]=\"1\"\nS[\"GNULIB_PUTC\"]=\"1\"\nS[\"GNULIB_PRINTF_POSIX\"]=\"0\"\nS[\"GNULIB_PRINTF\"]=\"1\"\nS[\"GNULIB_POPEN\"]=\"0\"\nS[\"GNULIB_PERROR\"]=\"0\"\nS[\"GNULIB_PCLOSE\"]=\"0\"\nS[\"GNULIB_OBSTACK_PRINTF_POSIX\"]=\"0\"\nS[\"GNULIB_OBSTACK_PRINTF\"]=\"0\"\nS[\"GNULIB_GETLINE\"]=\"0\"\nS[\"GNULIB_GETDELIM\"]=\"0\"\nS[\"GNULIB_GETCHAR\"]=\"1\"\nS[\"GNULIB_GETC\"]=\"1\"\nS[\"GNULIB_FWRITE\"]=\"1\"\nS[\"GNULIB_FTELLO\"]=\"0\"\nS[\"GNULIB_FTELL\"]=\"0\"\nS[\"GNULIB_FSEEKO\"]=\"0\"\nS[\"GNULIB_FSEEK\"]=\"0\"\nS[\"GNULIB_FSCANF\"]=\"1\"\nS[\"GNULIB_FREOPEN\"]=\"0\"\nS[\"GNULIB_FREAD\"]=\"1\"\nS[\"GNULIB_FPUTS\"]=\"1\"\nS[\"GNULIB_FPUTC\"]=\"1\"\nS[\"GNULIB_FPURGE\"]=\"0\"\nS[\"GNULIB_FPRINTF_POSIX\"]=\"0\"\nS[\"GNULIB_FPRINTF\"]=\"1\"\nS[\"GNULIB_FOPEN\"]=\"0\"\nS[\"GNULIB_FGETS\"]=\"1\"\nS[\"GNULIB_FGETC\"]=\"1\"\nS[\"GNULIB_FFLUSH\"]=\"0\"\nS[\"GNULIB_FDOPEN\"]=\"0\"\nS[\"GNULIB_FCLOSE\"]=\"0\"\nS[\"GNULIB_DPRINTF\"]=\"0\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H\"]=\"<signal.h>\"\nS[\"NEXT_SIGNAL_H\"]=\"<signal.h>\"\nS[\"REPLACE_RAISE\"]=\"0\"\nS[\"REPLACE_PTHREAD_SIGMASK\"]=\"0\"\nS[\"HAVE_SIGHANDLER_T\"]=\"0\"\nS[\"HAVE_TYPE_VOLATILE_SIG_ATOMIC_T\"]=\"1\"\nS[\"HAVE_STRUCT_SIGACTION_SA_SIGACTION\"]=\"1\"\nS[\"HAVE_SIGACTION\"]=\"1\"\nS[\"HAVE_SIGINFO_T\"]=\"1\"\nS[\"HAVE_SIGSET_T\"]=\"1\"\nS[\"HAVE_RAISE\"]=\"1\"\nS[\"HAVE_PTHREAD_SIGMASK\"]=\"1\"\nS[\"HAVE_POSIX_SIGNALBLOCKING\"]=\"1\"\nS[\"GNULIB_SIGACTION\"]=\"0\"\nS[\"GNULIB_SIGPROCMASK\"]=\"1\"\nS[\"GNULIB_SIGNAL_H_SIGPIPE\"]=\"1\"\nS[\"GNULIB_RAISE\"]=\"1\"\nS[\"GNULIB_PTHREAD_SIGMASK\"]=\"0\"\nS[\"APPLE_UNIVERSAL_BUILD\"]=\"0\"\nS[\"HAVE_MSVC_INVALID_PARAMETER_HANDLER\"]=\"0\"\nS[\"REPLACE_UTIMENSAT\"]=\"0\"\nS[\"REPLACE_STAT\"]=\"1\"\nS[\"REPLACE_MKNOD\"]=\"0\"\nS[\"REPLACE_MKFIFO\"]=\"0\"\nS[\"REPLACE_MKDIR\"]=\"0\"\nS[\"REPLACE_LSTAT\"]=\"1\"\nS[\"REPLACE_FUTIMENS\"]=\"0\"\nS[\"REPLACE_FSTATAT\"]=\"0\"\nS[\"REPLACE_FSTAT\"]=\"0\"\nS[\"HAVE_UTIMENSAT\"]=\"1\"\nS[\"HAVE_MKNODAT\"]=\"1\"\nS[\"HAVE_MKNOD\"]=\"1\"\nS[\"HAVE_MKFIFOAT\"]=\"1\"\nS[\"HAVE_MKFIFO\"]=\"1\"\nS[\"HAVE_MKDIRAT\"]=\"1\"\nS[\"HAVE_LSTAT\"]=\"1\"\nS[\"HAVE_LCHMOD\"]=\"1\"\nS[\"HAVE_FUTIMENS\"]=\"1\"\nS[\"HAVE_FSTATAT\"]=\"1\"\nS[\"HAVE_FCHMODAT\"]=\"1\"\nS[\"GNULIB_UTIMENSAT\"]=\"0\"\nS[\"GNULIB_STAT\"]=\"1\"\nS[\"GNULIB_MKNODAT\"]=\"0\"\nS[\"GNULIB_MKNOD\"]=\"0\"\nS[\"GNULIB_MKFIFOAT\"]=\"0\"\nS[\"GNULIB_MKFIFO\"]=\"0\"\nS[\"GNULIB_MKDIRAT\"]=\"0\"\nS[\"GNULIB_LSTAT\"]=\"1\"\nS[\"GNULIB_LCHMOD\"]=\"0\"\nS[\"GNULIB_FUTIMENS\"]=\"0\"\nS[\"GNULIB_FSTATAT\"]=\"0\"\nS[\"GNULIB_FSTAT\"]=\"0\"\nS[\"GNULIB_FCHMODAT\"]=\"0\"\nS[\"GL_GENERATE_LIMITS_H_FALSE\"]=\"#\"\nS[\"GL_GENERATE_LIMITS_H_TRUE\"]=\"\"\nS[\"LIMITS_H\"]=\"limits.h\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_LIMITS_H\"]=\"<limits.h>\"\nS[\"NEXT_LIMITS_H\"]=\"<limits.h>\"\nS[\"HAVE_WINSOCK2_H\"]=\"0\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H\"]=\"<sys/time.h>\"\nS[\"NEXT_SYS_TIME_H\"]=\"<sys/time.h>\"\nS[\"REPLACE_STRUCT_TIMEVAL\"]=\"0\"\nS[\"REPLACE_GETTIMEOFDAY\"]=\"0\"\nS[\"HAVE_TIMEZONE_T\"]=\"0\"\nS[\"HAVE_SYS_TIME_H\"]=\"1\"\nS[\"HAVE_STRUCT_TIMEVAL\"]=\"1\"\nS[\"HAVE_GETTIMEOFDAY\"]=\"1\"\nS[\"GNULIB_GETTIMEOFDAY\"]=\"1\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_FCNTL_H\"]=\"<fcntl.h>\"\nS[\"NEXT_FCNTL_H\"]=\"<fcntl.h>\"\nS[\"REPLACE_OPENAT\"]=\"0\"\nS[\"REPLACE_OPEN\"]=\"0\"\nS[\"REPLACE_FCNTL\"]=\"0\"\nS[\"HAVE_OPENAT\"]=\"1\"\nS[\"HAVE_FCNTL\"]=\"1\"\nS[\"GNULIB_OPENAT\"]=\"0\"\nS[\"GNULIB_OPEN\"]=\"0\"\nS[\"GNULIB_NONBLOCKING\"]=\"0\"\nS[\"GNULIB_FCNTL\"]=\"0\"\nS[\"EOVERFLOW_VALUE\"]=\"\"\nS[\"EOVERFLOW_HIDDEN\"]=\"\"\nS[\"ENOLINK_VALUE\"]=\"\"\nS[\"ENOLINK_HIDDEN\"]=\"\"\nS[\"EMULTIHOP_VALUE\"]=\"\"\nS[\"EMULTIHOP_HIDDEN\"]=\"\"\nS[\"GL_GENERATE_ERRNO_H_FALSE\"]=\"\"\nS[\"GL_GENERATE_ERRNO_H_TRUE\"]=\"#\"\nS[\"ERRNO_H\"]=\"\"\nS[\"NEXT_AS_FIRST_DIRECTIVE_ERRNO_H\"]=\"\"\nS[\"NEXT_ERRNO_H\"]=\"\"\nS[\"PRAGMA_COLUMNS\"]=\"\"\nS[\"PRAGMA_SYSTEM_HEADER\"]=\"#pragma GCC system_header\"\nS[\"INCLUDE_NEXT_AS_FIRST_DIRECTIVE\"]=\"include_next\"\nS[\"INCLUDE_NEXT\"]=\"include_next\"\nS[\"UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS\"]=\"0\"\nS[\"UNISTD_H_HAVE_WINSOCK2_H\"]=\"0\"\nS[\"REPLACE_WRITE\"]=\"0\"\nS[\"REPLACE_USLEEP\"]=\"0\"\nS[\"REPLACE_UNLINKAT\"]=\"0\"\nS[\"REPLACE_UNLINK\"]=\"0\"\nS[\"REPLACE_TTYNAME_R\"]=\"0\"\nS[\"REPLACE_SYMLINKAT\"]=\"0\"\nS[\"REPLACE_SYMLINK\"]=\"0\"\nS[\"REPLACE_SLEEP\"]=\"0\"\nS[\"REPLACE_RMDIR\"]=\"0\"\nS[\"REPLACE_READLINKAT\"]=\"0\"\nS[\"REPLACE_READLINK\"]=\"1\"\nS[\"REPLACE_READ\"]=\"0\"\nS[\"REPLACE_PWRITE\"]=\"0\"\nS[\"REPLACE_PREAD\"]=\"0\"\nS[\"REPLACE_LSEEK\"]=\"0\"\nS[\"REPLACE_LINKAT\"]=\"0\"\nS[\"REPLACE_LINK\"]=\"0\"\nS[\"REPLACE_LCHOWN\"]=\"0\"\nS[\"REPLACE_ISATTY\"]=\"0\"\nS[\"REPLACE_GETPAGESIZE\"]=\"0\"\nS[\"REPLACE_GETGROUPS\"]=\"0\"\nS[\"REPLACE_GETLOGIN_R\"]=\"0\"\nS[\"REPLACE_GETDTABLESIZE\"]=\"0\"\nS[\"REPLACE_GETDOMAINNAME\"]=\"0\"\nS[\"REPLACE_GETCWD\"]=\"0\"\nS[\"REPLACE_FTRUNCATE\"]=\"0\"\nS[\"REPLACE_FCHOWNAT\"]=\"0\"\nS[\"REPLACE_DUP2\"]=\"0\"\nS[\"REPLACE_DUP\"]=\"0\"\nS[\"REPLACE_CLOSE\"]=\"0\"\nS[\"REPLACE_CHOWN\"]=\"0\"\nS[\"HAVE_SYS_PARAM_H\"]=\"0\"\nS[\"HAVE_OS_H\"]=\"0\"\nS[\"HAVE_DECL_TTYNAME_R\"]=\"1\"\nS[\"HAVE_DECL_SETHOSTNAME\"]=\"1\"\nS[\"HAVE_DECL_GETUSERSHELL\"]=\"1\"\nS[\"HAVE_DECL_GETPAGESIZE\"]=\"1\"\nS[\"HAVE_DECL_GETLOGIN_R\"]=\"1\"\nS[\"HAVE_DECL_GETLOGIN\"]=\"1\"\nS[\"HAVE_DECL_GETDOMAINNAME\"]=\"1\"\nS[\"HAVE_DECL_FDATASYNC\"]=\"1\"\nS[\"HAVE_DECL_FCHDIR\"]=\"1\"\nS[\"HAVE_DECL_ENVIRON\"]=\"0\"\nS[\"HAVE_USLEEP\"]=\"1\"\nS[\"HAVE_UNLINKAT\"]=\"1\"\nS[\"HAVE_SYMLINKAT\"]=\"1\"\nS[\"HAVE_SYMLINK\"]=\"1\"\nS[\"HAVE_SLEEP\"]=\"1\"\nS[\"HAVE_SETHOSTNAME\"]=\"1\"\nS[\"HAVE_READLINKAT\"]=\"1\"\nS[\"HAVE_READLINK\"]=\"1\"\nS[\"HAVE_PWRITE\"]=\"1\"\nS[\"HAVE_PREAD\"]=\"1\"\nS[\"HAVE_PIPE2\"]=\"1\"\nS[\"HAVE_PIPE\"]=\"1\"\nS[\"HAVE_LINKAT\"]=\"1\"\nS[\"HAVE_LINK\"]=\"1\"\nS[\"HAVE_LCHOWN\"]=\"1\"\nS[\"HAVE_GROUP_MEMBER\"]=\"1\"\nS[\"HAVE_GETPAGESIZE\"]=\"1\"\nS[\"HAVE_GETLOGIN\"]=\"1\"\nS[\"HAVE_GETHOSTNAME\"]=\"1\"\nS[\"HAVE_GETGROUPS\"]=\"1\"\nS[\"HAVE_GETDTABLESIZE\"]=\"1\"\nS[\"HAVE_FTRUNCATE\"]=\"1\"\nS[\"HAVE_FSYNC\"]=\"1\"\nS[\"HAVE_FDATASYNC\"]=\"1\"\nS[\"HAVE_FCHOWNAT\"]=\"1\"\nS[\"HAVE_FCHDIR\"]=\"1\"\nS[\"HAVE_FACCESSAT\"]=\"1\"\nS[\"HAVE_EUIDACCESS\"]=\"1\"\nS[\"HAVE_DUP3\"]=\"1\"\nS[\"HAVE_DUP2\"]=\"1\"\nS[\"HAVE_CHOWN\"]=\"1\"\nS[\"GNULIB_WRITE\"]=\"0\"\nS[\"GNULIB_USLEEP\"]=\"0\"\nS[\"GNULIB_UNLINKAT\"]=\"0\"\nS[\"GNULIB_UNLINK\"]=\"0\"\nS[\"GNULIB_UNISTD_H_SIGPIPE\"]=\"1\"\nS[\"GNULIB_UNISTD_H_NONBLOCKING\"]=\"0\"\nS[\"GNULIB_TTYNAME_R\"]=\"0\"\nS[\"GNULIB_SYMLINKAT\"]=\"0\"\nS[\"GNULIB_SYMLINK\"]=\"0\"\nS[\"GNULIB_SLEEP\"]=\"0\"\nS[\"GNULIB_SETHOSTNAME\"]=\"0\"\nS[\"GNULIB_RMDIR\"]=\"0\"\nS[\"GNULIB_READLINKAT\"]=\"0\"\nS[\"GNULIB_READLINK\"]=\"1\"\nS[\"GNULIB_READ\"]=\"1\"\nS[\"GNULIB_PWRITE\"]=\"0\"\nS[\"GNULIB_PREAD\"]=\"0\"\nS[\"GNULIB_PIPE2\"]=\"0\"\nS[\"GNULIB_PIPE\"]=\"0\"\nS[\"GNULIB_LSEEK\"]=\"0\"\nS[\"GNULIB_LINKAT\"]=\"0\"\nS[\"GNULIB_LINK\"]=\"0\"\nS[\"GNULIB_LCHOWN\"]=\"0\"\nS[\"GNULIB_ISATTY\"]=\"0\"\nS[\"GNULIB_GROUP_MEMBER\"]=\"0\"\nS[\"GNULIB_GETUSERSHELL\"]=\"0\"\nS[\"GNULIB_GETPAGESIZE\"]=\"0\"\nS[\"GNULIB_GETLOGIN_R\"]=\"0\"\nS[\"GNULIB_GETLOGIN\"]=\"0\"\nS[\"GNULIB_GETHOSTNAME\"]=\"0\"\nS[\"GNULIB_GETGROUPS\"]=\"0\"\nS[\"GNULIB_GETDTABLESIZE\"]=\"0\"\nS[\"GNULIB_GETDOMAINNAME\"]=\"0\"\nS[\"GNULIB_GETCWD\"]=\"0\"\nS[\"GNULIB_FTRUNCATE\"]=\"0\"\nS[\"GNULIB_FSYNC\"]=\"0\"\nS[\"GNULIB_FDATASYNC\"]=\"0\"\nS[\"GNULIB_FCHOWNAT\"]=\"0\"\nS[\"GNULIB_FCHDIR\"]=\"0\"\nS[\"GNULIB_FACCESSAT\"]=\"0\"\nS[\"GNULIB_EUIDACCESS\"]=\"0\"\nS[\"GNULIB_ENVIRON\"]=\"1\"\nS[\"GNULIB_DUP3\"]=\"0\"\nS[\"GNULIB_DUP2\"]=\"0\"\nS[\"GNULIB_DUP\"]=\"0\"\nS[\"GNULIB_CLOSE\"]=\"0\"\nS[\"GNULIB_CHOWN\"]=\"0\"\nS[\"GNULIB_CHDIR\"]=\"0\"\nS[\"REPLACE_WCTOMB\"]=\"0\"\nS[\"REPLACE_UNSETENV\"]=\"0\"\nS[\"REPLACE_STRTOD\"]=\"0\"\nS[\"REPLACE_SETENV\"]=\"0\"\nS[\"REPLACE_REALPATH\"]=\"1\"\nS[\"REPLACE_REALLOC\"]=\"0\"\nS[\"REPLACE_RANDOM_R\"]=\"0\"\nS[\"REPLACE_QSORT_R\"]=\"0\"\nS[\"REPLACE_PUTENV\"]=\"0\"\nS[\"REPLACE_PTSNAME_R\"]=\"0\"\nS[\"REPLACE_PTSNAME\"]=\"0\"\nS[\"REPLACE_MKSTEMP\"]=\"0\"\nS[\"REPLACE_MBTOWC\"]=\"0\"\nS[\"REPLACE_MALLOC\"]=\"0\"\nS[\"REPLACE_CANONICALIZE_FILE_NAME\"]=\"0\"\nS[\"REPLACE_CALLOC\"]=\"0\"\nS[\"HAVE_DECL_UNSETENV\"]=\"1\"\nS[\"HAVE_UNLOCKPT\"]=\"1\"\nS[\"HAVE_SYS_LOADAVG_H\"]=\"0\"\nS[\"HAVE_STRUCT_RANDOM_DATA\"]=\"1\"\nS[\"HAVE_STRTOULL\"]=\"1\"\nS[\"HAVE_STRTOLL\"]=\"1\"\nS[\"HAVE_STRTOD\"]=\"1\"\nS[\"HAVE_DECL_SETENV\"]=\"1\"\nS[\"HAVE_SETENV\"]=\"1\"\nS[\"HAVE_SECURE_GETENV\"]=\"1\"\nS[\"HAVE_RPMATCH\"]=\"1\"\nS[\"HAVE_REALPATH\"]=\"1\"\nS[\"HAVE_RANDOM_R\"]=\"1\"\nS[\"HAVE_RANDOM_H\"]=\"1\"\nS[\"HAVE_RANDOM\"]=\"1\"\nS[\"HAVE_QSORT_R\"]=\"1\"\nS[\"HAVE_PTSNAME_R\"]=\"1\"\nS[\"HAVE_PTSNAME\"]=\"1\"\nS[\"HAVE_POSIX_OPENPT\"]=\"1\"\nS[\"HAVE_MKSTEMPS\"]=\"1\"\nS[\"HAVE_MKSTEMP\"]=\"1\"\nS[\"HAVE_MKOSTEMPS\"]=\"1\"\nS[\"HAVE_MKOSTEMP\"]=\"1\"\nS[\"HAVE_MKDTEMP\"]=\"1\"\nS[\"HAVE_GRANTPT\"]=\"1\"\nS[\"HAVE_GETSUBOPT\"]=\"1\"\nS[\"HAVE_DECL_GETLOADAVG\"]=\"1\"\nS[\"HAVE_CANONICALIZE_FILE_NAME\"]=\"0\"\nS[\"HAVE_ATOLL\"]=\"1\"\nS[\"HAVE__EXIT\"]=\"1\"\nS[\"GNULIB_WCTOMB\"]=\"0\"\nS[\"GNULIB_UNSETENV\"]=\"0\"\nS[\"GNULIB_UNLOCKPT\"]=\"0\"\nS[\"GNULIB_SYSTEM_POSIX\"]=\"0\"\nS[\"GNULIB_STRTOULL\"]=\"0\"\nS[\"GNULIB_STRTOLL\"]=\"0\"\nS[\"GNULIB_STRTOD\"]=\"0\"\nS[\"GNULIB_SETENV\"]=\"0\"\nS[\"GNULIB_SECURE_GETENV\"]=\"0\"\nS[\"GNULIB_RPMATCH\"]=\"0\"\nS[\"GNULIB_REALPATH\"]=\"1\"\nS[\"GNULIB_REALLOC_POSIX\"]=\"0\"\nS[\"GNULIB_RANDOM_R\"]=\"0\"\nS[\"GNULIB_RANDOM\"]=\"0\"\nS[\"GNULIB_QSORT_R\"]=\"0\"\nS[\"GNULIB_PUTENV\"]=\"0\"\nS[\"GNULIB_PTSNAME_R\"]=\"0\"\nS[\"GNULIB_PTSNAME\"]=\"0\"\nS[\"GNULIB_POSIX_OPENPT\"]=\"0\"\nS[\"GNULIB_MKSTEMPS\"]=\"0\"\nS[\"GNULIB_MKSTEMP\"]=\"0\"\nS[\"GNULIB_MKOSTEMPS\"]=\"0\"\nS[\"GNULIB_MKOSTEMP\"]=\"0\"\nS[\"GNULIB_MKDTEMP\"]=\"0\"\nS[\"GNULIB_MBTOWC\"]=\"0\"\nS[\"GNULIB_MALLOC_POSIX\"]=\"1\"\nS[\"GNULIB_GRANTPT\"]=\"0\"\nS[\"GNULIB_GETSUBOPT\"]=\"0\"\nS[\"GNULIB_GETLOADAVG\"]=\"0\"\nS[\"GNULIB_CANONICALIZE_FILE_NAME\"]=\"1\"\nS[\"GNULIB_CALLOC_POSIX\"]=\"0\"\nS[\"GNULIB_ATOLL\"]=\"0\"\nS[\"GNULIB__EXIT\"]=\"0\"\nS[\"GL_GENERATE_ALLOCA_H_FALSE\"]=\"#\"\nS[\"GL_GENERATE_ALLOCA_H_TRUE\"]=\"\"\nS[\"ALLOCA_H\"]=\"alloca.h\"\nS[\"ALLOCA\"]=\"\"\nS[\"GL_COND_LIBTOOL_FALSE\"]=\"\"\nS[\"GL_COND_LIBTOOL_TRUE\"]=\"#\"\nS[\"EILSEQ\"]=\"\"\nS[\"BROKEN_WCHAR_H\"]=\"0\"\nS[\"USE_MBSTATE_T\"]=\"1\"\nS[\"HAVE_WCHAR_T\"]=\"1\"\nS[\"ICONV_CONST\"]=\"\"\nS[\"POSUB\"]=\"\"\nS[\"LTLIBINTL\"]=\"\"\nS[\"LIBINTL\"]=\"\"\nS[\"INTLLIBS\"]=\"\"\nS[\"INTL_MACOSX_LIBS\"]=\"-Wl,-framework -Wl,CoreFoundation\"\nS[\"XGETTEXT_EXTRA_OPTIONS\"]=\" --flag=error:3:c-format --flag=error_at_line:5:c-format\"\nS[\"MSGMERGE\"]=\":\"\nS[\"XGETTEXT_015\"]=\":\"\nS[\"XGETTEXT\"]=\":\"\nS[\"GMSGFMT_015\"]=\":\"\nS[\"MSGFMT_015\"]=\":\"\nS[\"GMSGFMT\"]=\":\"\nS[\"MSGFMT\"]=\":\"\nS[\"GETTEXT_MACRO_VERSION\"]=\"0.19\"\nS[\"USE_NLS\"]=\"no\"\nS[\"LTLIBICONV\"]=\"-liconv\"\nS[\"LIBICONV\"]=\"-liconv\"\nS[\"HAVE_VISIBILITY\"]=\"1\"\nS[\"CFLAG_VISIBILITY\"]=\"-fvisibility=hidden\"\nS[\"WINDRES\"]=\"\"\nS[\"WOE32\"]=\"no\"\nS[\"RC\"]=\"\"\nS[\"LT_SYS_LIBRARY_PATH\"]=\"\"\nS[\"OTOOL64\"]=\":\"\nS[\"OTOOL\"]=\"otool\"\nS[\"LIPO\"]=\"lipo\"\nS[\"NMEDIT\"]=\"nmedit\"\nS[\"DSYMUTIL\"]=\"dsymutil\"\nS[\"MANIFEST_TOOL\"]=\":\"\nS[\"NM\"]=\"/usr/bin/nm -B\"\nS[\"ac_ct_DUMPBIN\"]=\"\"\nS[\"DUMPBIN\"]=\"\"\nS[\"LD\"]=\"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld\"\nS[\"FGREP\"]=\"/usr/bin/grep -F\"\nS[\"SED\"]=\"/usr/bin/sed\"\nS[\"LIBTOOL\"]=\"/bin/sh $(top_builddir)/libtool\"\nS[\"OBJDUMP\"]=\"objdump\"\nS[\"DLLTOOL\"]=\"false\"\nS[\"AS\"]=\"as\"\nS[\"LN_S\"]=\"ln -s\"\nS[\"LN\"]=\"ln\"\nS[\"CP\"]=\"cp -p\"\nS[\"USE_EXTRA_ENCODINGS\"]=\"no\"\nS[\"RELOCATABLE_STRIP\"]=\":\"\nS[\"RELOCATABLE_BUILD_DIR\"]=\"$(top_builddir)/srclib\"\nS[\"RELOCATABLE_SRC_DIR\"]=\"$(top_srcdir)/srclib\"\nS[\"RELOCATABLE_CONFIG_H_DIR\"]=\"$(top_builddir)\"\nS[\"RELOCATABLE_LIBRARY_PATH\"]=\"\"\nS[\"RELOCATABLE_VIA_WRAPPER_FALSE\"]=\"\"\nS[\"RELOCATABLE_VIA_WRAPPER_TRUE\"]=\"#\"\nS[\"RELOCATABLE_VIA_LD_FALSE\"]=\"\"\nS[\"RELOCATABLE_VIA_LD_TRUE\"]=\"#\"\nS[\"INSTALL_PROGRAM_ENV\"]=\"\"\nS[\"RELOCATABLE_LDFLAGS\"]=\"\"\nS[\"RELOCATABLE\"]=\"no\"\nS[\"RANLIB\"]=\"ranlib\"\nS[\"ARFLAGS\"]=\"cr\"\nS[\"ac_ct_AR\"]=\"ar\"\nS[\"AR\"]=\"ar\"\nS[\"EGREP\"]=\"/usr/bin/grep -E\"\nS[\"GREP\"]=\"/usr/bin/grep\"\nS[\"host_os\"]=\"darwin16.6.0\"\nS[\"host_vendor\"]=\"apple\"\nS[\"host_cpu\"]=\"x86_64\"\nS[\"host\"]=\"x86_64-apple-darwin16.6.0\"\nS[\"build_os\"]=\"darwin16.6.0\"\nS[\"build_vendor\"]=\"apple\"\nS[\"build_cpu\"]=\"x86_64\"\nS[\"build\"]=\"x86_64-apple-darwin16.6.0\"\nS[\"CPP\"]=\"gcc -E\"\nS[\"am__fastdepCC_FALSE\"]=\"\"\nS[\"am__fastdepCC_TRUE\"]=\"#\"\nS[\"CCDEPMODE\"]=\"depmode=none\"\nS[\"am__nodep\"]=\"_no\"\nS[\"AMDEPBACKSLASH\"]=\"\\\\\"\nS[\"AMDEP_FALSE\"]=\"#\"\nS[\"AMDEP_TRUE\"]=\"\"\nS[\"am__quote\"]=\"\"\nS[\"am__include\"]=\"include\"\nS[\"DEPDIR\"]=\".deps\"\nS[\"OBJEXT\"]=\"o\"\nS[\"EXEEXT\"]=\"\"\nS[\"ac_ct_CC\"]=\"gcc\"\nS[\"CPPFLAGS\"]=\"\"\nS[\"LDFLAGS\"]=\"\"\nS[\"CFLAGS\"]=\"-g -O2\"\nS[\"CC\"]=\"gcc\"\nS[\"AM_BACKSLASH\"]=\"\\\\\"\nS[\"AM_DEFAULT_VERBOSITY\"]=\"1\"\nS[\"AM_DEFAULT_V\"]=\"$(AM_DEFAULT_VERBOSITY)\"\nS[\"AM_V\"]=\"$(V)\"\nS[\"am__untar\"]=\"$${TAR-tar} xf -\"\nS[\"am__tar\"]=\"$${TAR-tar} chof - \\\"$$tardir\\\"\"\nS[\"AMTAR\"]=\"$${TAR-tar}\"\nS[\"am__leading_dot\"]=\".\"\nS[\"SET_MAKE\"]=\"\"\nS[\"AWK\"]=\"awk\"\nS[\"mkdir_p\"]=\"$(MKDIR_P)\"\nS[\"MKDIR_P\"]=\"build-aux/install-sh -c -d\"\nS[\"INSTALL_STRIP_PROGRAM\"]=\"$(install_sh) -c -s\"\nS[\"STRIP\"]=\"/usr/bin/strip\"\nS[\"install_sh\"]=\"${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/install-sh\"\nS[\"MAKEINFO\"]=\"${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/missing makeinfo\"\nS[\"AUTOHEADER\"]=\"${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/missing autoheader\"\nS[\"AUTOMAKE\"]=\"${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/missing automake-1.15\"\nS[\"AUTOCONF\"]=\"${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/missing autoconf\"\nS[\"ACLOCAL\"]=\"${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/missing aclocal-1.15\"\nS[\"VERSION\"]=\"1.15\"\nS[\"PACKAGE\"]=\"libiconv\"\nS[\"CYGPATH_W\"]=\"echo\"\nS[\"am__isrc\"]=\"\"\nS[\"INSTALL_DATA\"]=\"${INSTALL} -m 644\"\nS[\"INSTALL_SCRIPT\"]=\"${INSTALL}\"\nS[\"INSTALL_PROGRAM\"]=\"${INSTALL}\"\nS[\"target_alias\"]=\"\"\nS[\"host_alias\"]=\"\"\nS[\"build_alias\"]=\"\"\nS[\"LIBS\"]=\"\"\nS[\"ECHO_T\"]=\"\"\nS[\"ECHO_N\"]=\"\"\nS[\"ECHO_C\"]=\"\\\\c\"\nS[\"DEFS\"]=\"-DHAVE_CONFIG_H\"\nS[\"mandir\"]=\"${datarootdir}/man\"\nS[\"localedir\"]=\"${datarootdir}/locale\"\nS[\"libdir\"]=\"${exec_prefix}/lib\"\nS[\"psdir\"]=\"${docdir}\"\nS[\"pdfdir\"]=\"${docdir}\"\nS[\"dvidir\"]=\"${docdir}\"\nS[\"htmldir\"]=\"${docdir}\"\nS[\"infodir\"]=\"${datarootdir}/info\"\nS[\"docdir\"]=\"${datarootdir}/doc/${PACKAGE_TARNAME}\"\nS[\"oldincludedir\"]=\"/usr/include\"\nS[\"includedir\"]=\"${prefix}/include\"\nS[\"localstatedir\"]=\"${prefix}/var\"\nS[\"sharedstatedir\"]=\"${prefix}/com\"\nS[\"sysconfdir\"]=\"${prefix}/etc\"\nS[\"datadir\"]=\"${datarootdir}\"\nS[\"datarootdir\"]=\"${prefix}/share\"\nS[\"libexecdir\"]=\"${exec_prefix}/libexec\"\nS[\"sbindir\"]=\"${exec_prefix}/sbin\"\nS[\"bindir\"]=\"${exec_prefix}/bin\"\nS[\"program_transform_name\"]=\"s,x,x,\"\nS[\"prefix\"]=\"/usr/local\"\nS[\"exec_prefix\"]=\"${prefix}\"\nS[\"PACKAGE_URL\"]=\"\"\nS[\"PACKAGE_BUGREPORT\"]=\"\"\nS[\"PACKAGE_STRING\"]=\"libiconv 1.15\"\nS[\"PACKAGE_VERSION\"]=\"1.15\"\nS[\"PACKAGE_TARNAME\"]=\"libiconv\"\nS[\"PACKAGE_NAME\"]=\"libiconv\"\nS[\"PATH_SEPARATOR\"]=\":\"\nS[\"SHELL\"]=\"/bin/sh\"\n_ACAWK\ncat >>\"$ac_tmp/subs1.awk\" <<_ACAWK &&\n  for (key in S) S_is_set[key] = 1\n  FS = \"\u0007\"\n\n}\n{\n  line = $ 0\n  nfields = split(line, field, \"@\")\n  substed = 0\n  len = length(field[1])\n  for (i = 2; i < nfields; i++) {\n    key = field[i]\n    keylen = length(key)\n    if (S_is_set[key]) {\n      value = S[key]\n      line = substr(line, 1, len) \"\" value \"\" substr(line, len + keylen + 3)\n      len += length(value) + length(field[++i])\n      substed = 1\n    } else\n      len += 1 + keylen\n  }\n\n  print line\n}\n\n_ACAWK\nif sed \"s/$ac_cr//\" < /dev/null > /dev/null 2>&1; then\n  sed \"s/$ac_cr\\$//; s/$ac_cr/$ac_cs_awk_cr/g\"\nelse\n  cat\nfi < \"$ac_tmp/subs1.awk\" > \"$ac_tmp/subs.awk\" \\\n  || as_fn_error $? \"could not setup config files machinery\" \"$LINENO\" 5\nfi # test -n \"$CONFIG_FILES\"\n\n# Set up the scripts for CONFIG_HEADERS section.\n# No need to generate them if there are no CONFIG_HEADERS.\n# This happens for instance with `./config.status Makefile'.\nif test -n \"$CONFIG_HEADERS\"; then\ncat >\"$ac_tmp/defines.awk\" <<\\_ACAWK ||\nBEGIN {\nD[\"PACKAGE_NAME\"]=\" \\\"libiconv\\\"\"\nD[\"PACKAGE_TARNAME\"]=\" \\\"libiconv\\\"\"\nD[\"PACKAGE_VERSION\"]=\" \\\"1.15\\\"\"\nD[\"PACKAGE_STRING\"]=\" \\\"libiconv 1.15\\\"\"\nD[\"PACKAGE_BUGREPORT\"]=\" \\\"\\\"\"\nD[\"PACKAGE_URL\"]=\" \\\"\\\"\"\nD[\"PACKAGE\"]=\" \\\"libiconv\\\"\"\nD[\"VERSION\"]=\" \\\"1.15\\\"\"\nD[\"STDC_HEADERS\"]=\" 1\"\nD[\"HAVE_SYS_TYPES_H\"]=\" 1\"\nD[\"HAVE_SYS_STAT_H\"]=\" 1\"\nD[\"HAVE_STDLIB_H\"]=\" 1\"\nD[\"HAVE_STRING_H\"]=\" 1\"\nD[\"HAVE_MEMORY_H\"]=\" 1\"\nD[\"HAVE_STRINGS_H\"]=\" 1\"\nD[\"HAVE_INTTYPES_H\"]=\" 1\"\nD[\"HAVE_STDINT_H\"]=\" 1\"\nD[\"HAVE_UNISTD_H\"]=\" 1\"\nD[\"__EXTENSIONS__\"]=\" 1\"\nD[\"_ALL_SOURCE\"]=\" 1\"\nD[\"_DARWIN_C_SOURCE\"]=\" 1\"\nD[\"_GNU_SOURCE\"]=\" 1\"\nD[\"_POSIX_PTHREAD_SEMANTICS\"]=\" 1\"\nD[\"__STDC_WANT_IEC_60559_ATTRIBS_EXT__\"]=\" 1\"\nD[\"__STDC_WANT_IEC_60559_BFP_EXT__\"]=\" 1\"\nD[\"__STDC_WANT_IEC_60559_DFP_EXT__\"]=\" 1\"\nD[\"__STDC_WANT_IEC_60559_FUNCS_EXT__\"]=\" 1\"\nD[\"__STDC_WANT_IEC_60559_TYPES_EXT__\"]=\" 1\"\nD[\"__STDC_WANT_LIB_EXT2__\"]=\" 1\"\nD[\"__STDC_WANT_MATH_SPEC_FUNCS__\"]=\" 1\"\nD[\"_TANDEM_SOURCE\"]=\" 1\"\nD[\"_DARWIN_USE_64_BIT_INODE\"]=\" 1\"\nD[\"INSTALLPREFIX\"]=\" \\\"/usr/local\\\"\"\nD[\"HAVE_DLFCN_H\"]=\" 1\"\nD[\"LT_OBJDIR\"]=\" \\\".libs/\\\"\"\nD[\"HAVE_VISIBILITY\"]=\" 1\"\nD[\"HAVE_ICONV\"]=\" 1\"\nD[\"ICONV_CONST\"]=\" \"\nD[\"HAVE_CFPREFERENCESCOPYAPPVALUE\"]=\" 1\"\nD[\"HAVE_CFLOCALECOPYCURRENT\"]=\" 1\"\nD[\"HAVE_ICONV\"]=\" 1\"\nD[\"HAVE_MBSTATE_T\"]=\" 1\"\nD[\"HAVE_WCHAR_T\"]=\" 1\"\nD[\"HAVE_GETC_UNLOCKED\"]=\" 1\"\nD[\"HAVE_MBRTOWC\"]=\" 1\"\nD[\"HAVE_WCRTOMB\"]=\" 1\"\nD[\"HAVE_MBSINIT\"]=\" 1\"\nD[\"HAVE_SETLOCALE\"]=\" 1\"\nD[\"HAVE_MEMMOVE\"]=\" 1\"\nD[\"HAVE_LANGINFO_CODESET\"]=\" 1\"\nD[\"HAVE_UNISTD_H\"]=\" 1\"\nD[\"HAVE_STDLIB_H\"]=\" 1\"\nD[\"HAVE_STRING_H\"]=\" 1\"\nD[\"HAVE_SYS_PARAM_H\"]=\" 1\"\nD[\"HAVE_SYS_TIME_H\"]=\" 1\"\nD[\"HAVE_SYS_SOCKET_H\"]=\" 1\"\nD[\"HAVE_LIMITS_H\"]=\" 1\"\nD[\"HAVE_WCHAR_H\"]=\" 1\"\nD[\"HAVE_STDINT_H\"]=\" 1\"\nD[\"HAVE_SYS_STAT_H\"]=\" 1\"\nD[\"HAVE_SYMLINK\"]=\" 1\"\nD[\"HAVE_GETCWD\"]=\" 1\"\nD[\"HAVE_READLINK\"]=\" 1\"\nD[\"HAVE_REALPATH\"]=\" 1\"\nD[\"HAVE_READLINKAT\"]=\" 1\"\nD[\"HAVE_GETPROGNAME\"]=\" 1\"\nD[\"HAVE_GETTIMEOFDAY\"]=\" 1\"\nD[\"HAVE_LSTAT\"]=\" 1\"\nD[\"HAVE_SETENV\"]=\" 1\"\nD[\"HAVE_WORKING_O_NOATIME\"]=\" 0\"\nD[\"HAVE_WORKING_O_NOFOLLOW\"]=\" 1\"\nD[\"HAVE_WCHAR_H\"]=\" 1\"\nD[\"WORDS_LITTLEENDIAN\"]=\" 1\"\nD[\"HAVE_ALLOCA_H\"]=\" 1\"\nD[\"HAVE_ALLOCA\"]=\" 1\"\nD[\"HAVE_DECL_STRERROR_R\"]=\" 1\"\nD[\"HAVE_STRERROR_R\"]=\" 1\"\nD[\"restrict\"]=\" __restrict\"\nD[\"HAVE_RAW_DECL_GETTIMEOFDAY\"]=\" 1\"\nD[\"HAVE_STDLIB_H\"]=\" 1\"\nD[\"MALLOC_0_IS_NONNULL\"]=\" 1\"\nD[\"HAVE_UNSIGNED_LONG_LONG_INT\"]=\" 1\"\nD[\"HAVE_LONG_LONG_INT\"]=\" 1\"\nD[\"HAVE_SIGSET_T\"]=\" 1\"\nD[\"HAVE_DECL_SETENV\"]=\" 1\"\nD[\"USER_LABEL_PREFIX\"]=\" _\"\nD[\"HAVE__BOOL\"]=\" 1\"\nD[\"HAVE_WINT_T\"]=\" 1\"\nD[\"BITSIZEOF_PTRDIFF_T\"]=\" 64\"\nD[\"BITSIZEOF_SIZE_T\"]=\" 64\"\nD[\"BITSIZEOF_SIG_ATOMIC_T\"]=\" 32\"\nD[\"BITSIZEOF_WCHAR_T\"]=\" 32\"\nD[\"BITSIZEOF_WINT_T\"]=\" 32\"\nD[\"HAVE_SIGNED_SIG_ATOMIC_T\"]=\" 1\"\nD[\"HAVE_SIGNED_WCHAR_T\"]=\" 1\"\nD[\"HAVE_SIGNED_WINT_T\"]=\" 1\"\nD[\"PTRDIFF_T_SUFFIX\"]=\" l\"\nD[\"SIZE_T_SUFFIX\"]=\" ul\"\nD[\"SIG_ATOMIC_T_SUFFIX\"]=\" \"\nD[\"WCHAR_T_SUFFIX\"]=\" \"\nD[\"WINT_T_SUFFIX\"]=\" \"\nD[\"REPLACE_STRERROR_0\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FFSL\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FFSLL\"]=\" 1\"\nD[\"HAVE_RAW_DECL_MEMMEM\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STPCPY\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STPNCPY\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRDUP\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRNCAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRNDUP\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRNLEN\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRPBRK\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRSEP\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRCASESTR\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRTOK_R\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRERROR_R\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRSIGNAL\"]=\" 1\"\nD[\"HAVE_DECL_CLEARERR_UNLOCKED\"]=\" 1\"\nD[\"HAVE_DECL_FEOF_UNLOCKED\"]=\" 1\"\nD[\"HAVE_DECL_FERROR_UNLOCKED\"]=\" 1\"\nD[\"HAVE_DECL_FFLUSH_UNLOCKED\"]=\" 0\"\nD[\"HAVE_DECL_FGETS_UNLOCKED\"]=\" 0\"\nD[\"HAVE_DECL_FPUTC_UNLOCKED\"]=\" 0\"\nD[\"HAVE_DECL_FPUTS_UNLOCKED\"]=\" 0\"\nD[\"HAVE_DECL_FREAD_UNLOCKED\"]=\" 0\"\nD[\"HAVE_DECL_FWRITE_UNLOCKED\"]=\" 0\"\nD[\"HAVE_DECL_GETC_UNLOCKED\"]=\" 1\"\nD[\"HAVE_DECL_GETCHAR_UNLOCKED\"]=\" 1\"\nD[\"HAVE_DECL_PUTC_UNLOCKED\"]=\" 1\"\nD[\"HAVE_DECL_PUTCHAR_UNLOCKED\"]=\" 1\"\nD[\"GNULIB_CANONICALIZE_LGPL\"]=\" 1\"\nD[\"GNULIB_TEST_CANONICALIZE_FILE_NAME\"]=\" 1\"\nD[\"GNULIB_TEST_REALPATH\"]=\" 1\"\nD[\"GNULIB_TEST_ENVIRON\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FCNTL\"]=\" 1\"\nD[\"HAVE_RAW_DECL_OPENAT\"]=\" 1\"\nD[\"HAVE_DECL_PROGRAM_INVOCATION_NAME\"]=\" 0\"\nD[\"HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME\"]=\" 0\"\nD[\"HAVE_DECL___ARGV\"]=\" 0\"\nD[\"HAVE_VAR___PROGNAME\"]=\" 1\"\nD[\"GETTIMEOFDAY_TIMEZONE\"]=\" void\"\nD[\"GNULIB_TEST_GETTIMEOFDAY\"]=\" 1\"\nD[\"GNULIB_TEST_LSTAT\"]=\" 1\"\nD[\"HAVE_MALLOC_POSIX\"]=\" 1\"\nD[\"GNULIB_TEST_MALLOC_POSIX\"]=\" 1\"\nD[\"HAVE_MBSTATE_T\"]=\" 1\"\nD[\"HAVE_DECL_PROGRAM_INVOCATION_NAME\"]=\" 0\"\nD[\"HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME\"]=\" 0\"\nD[\"HAVE_RAISE\"]=\" 1\"\nD[\"GNULIB_TEST_RAISE\"]=\" 1\"\nD[\"GNULIB_TEST_READ\"]=\" 1\"\nD[\"READLINK_TRAILING_SLASH_BUG\"]=\" 1\"\nD[\"GNULIB_TEST_READLINK\"]=\" 1\"\nD[\"HAVE_SEARCH_H\"]=\" 1\"\nD[\"HAVE_TSEARCH\"]=\" 1\"\nD[\"HAVE_RAW_DECL_PTHREAD_SIGMASK\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SIGACTION\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SIGADDSET\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SIGDELSET\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SIGEMPTYSET\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SIGFILLSET\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SIGISMEMBER\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SIGPENDING\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SIGPROCMASK\"]=\" 1\"\nD[\"GNULIB_SIGPIPE\"]=\" 1\"\nD[\"GNULIB_TEST_SIGPROCMASK\"]=\" 1\"\nD[\"REPLACE_FUNC_STAT_FILE\"]=\" 1\"\nD[\"GNULIB_TEST_STAT\"]=\" 1\"\nD[\"__USE_MINGW_ANSI_STDIO\"]=\" 1\"\nD[\"GNULIB_FSCANF\"]=\" 1\"\nD[\"GNULIB_SCANF\"]=\" 1\"\nD[\"HAVE_RAW_DECL_DPRINTF\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FPURGE\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FSEEKO\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FTELLO\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETDELIM\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETLINE\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETS\"]=\" 1\"\nD[\"HAVE_RAW_DECL_PCLOSE\"]=\" 1\"\nD[\"HAVE_RAW_DECL_POPEN\"]=\" 1\"\nD[\"HAVE_RAW_DECL_RENAMEAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SNPRINTF\"]=\" 1\"\nD[\"HAVE_RAW_DECL_TMPFILE\"]=\" 1\"\nD[\"HAVE_RAW_DECL_VDPRINTF\"]=\" 1\"\nD[\"HAVE_RAW_DECL_VSNPRINTF\"]=\" 1\"\nD[\"HAVE_RAW_DECL__EXIT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_ATOLL\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETLOADAVG\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETSUBOPT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GRANTPT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_INITSTATE\"]=\" 1\"\nD[\"HAVE_RAW_DECL_MKSTEMP\"]=\" 1\"\nD[\"HAVE_RAW_DECL_POSIX_OPENPT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_PTSNAME\"]=\" 1\"\nD[\"HAVE_RAW_DECL_QSORT_R\"]=\" 1\"\nD[\"HAVE_RAW_DECL_RANDOM\"]=\" 1\"\nD[\"HAVE_RAW_DECL_REALPATH\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SETENV\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SETSTATE\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SRANDOM\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRTOD\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRTOLL\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STRTOULL\"]=\" 1\"\nD[\"HAVE_RAW_DECL_UNLOCKPT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_UNSETENV\"]=\" 1\"\nD[\"GNULIB_STRERROR\"]=\" 1\"\nD[\"GNULIB_TEST_STRERROR\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FCHMODAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FSTAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FSTATAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_LCHMOD\"]=\" 1\"\nD[\"HAVE_RAW_DECL_LSTAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_MKDIRAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_MKFIFO\"]=\" 1\"\nD[\"HAVE_RAW_DECL_MKNOD\"]=\" 1\"\nD[\"HAVE_RAW_DECL_STAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_CHDIR\"]=\" 1\"\nD[\"HAVE_RAW_DECL_CHOWN\"]=\" 1\"\nD[\"HAVE_RAW_DECL_DUP\"]=\" 1\"\nD[\"HAVE_RAW_DECL_DUP2\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FACCESSAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FCHDIR\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FCHOWNAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FSYNC\"]=\" 1\"\nD[\"HAVE_RAW_DECL_FTRUNCATE\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETCWD\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETDOMAINNAME\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETDTABLESIZE\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETGROUPS\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETHOSTNAME\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETLOGIN\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETLOGIN_R\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETPAGESIZE\"]=\" 1\"\nD[\"HAVE_RAW_DECL_GETUSERSHELL\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SETUSERSHELL\"]=\" 1\"\nD[\"HAVE_RAW_DECL_ENDUSERSHELL\"]=\" 1\"\nD[\"HAVE_RAW_DECL_ISATTY\"]=\" 1\"\nD[\"HAVE_RAW_DECL_LCHOWN\"]=\" 1\"\nD[\"HAVE_RAW_DECL_LINK\"]=\" 1\"\nD[\"HAVE_RAW_DECL_LINKAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_LSEEK\"]=\" 1\"\nD[\"HAVE_RAW_DECL_PIPE\"]=\" 1\"\nD[\"HAVE_RAW_DECL_PREAD\"]=\" 1\"\nD[\"HAVE_RAW_DECL_PWRITE\"]=\" 1\"\nD[\"HAVE_RAW_DECL_READLINK\"]=\" 1\"\nD[\"HAVE_RAW_DECL_READLINKAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_RMDIR\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SETHOSTNAME\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SLEEP\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SYMLINK\"]=\" 1\"\nD[\"HAVE_RAW_DECL_SYMLINKAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_TTYNAME_R\"]=\" 1\"\nD[\"HAVE_RAW_DECL_UNLINK\"]=\" 1\"\nD[\"HAVE_RAW_DECL_UNLINKAT\"]=\" 1\"\nD[\"HAVE_RAW_DECL_USLEEP\"]=\" 1\"\nD[\"USE_UNLOCKED_IO\"]=\" 1\"\n  for (key in D) D_is_set[key] = 1\n  FS = \"\u0007\"\n}\n/^[\\t ]*#[\\t ]*(define|undef)[\\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\\t (]|$)/ {\n  line = $ 0\n  split(line, arg, \" \")\n  if (arg[1] == \"#\") {\n    defundef = arg[2]\n    mac1 = arg[3]\n  } else {\n    defundef = substr(arg[1], 2)\n    mac1 = arg[2]\n  }\n  split(mac1, mac2, \"(\") #)\n  macro = mac2[1]\n  prefix = substr(line, 1, index(line, defundef) - 1)\n  if (D_is_set[macro]) {\n    # Preserve the white space surrounding the \"#\".\n    print prefix \"define\", macro P[macro] D[macro]\n    next\n  } else {\n    # Replace #undef with comments.  This is necessary, for example,\n    # in the case of _POSIX_SOURCE, which is predefined and required\n    # on some systems where configure will not decide to define it.\n    if (defundef == \"undef\") {\n      print \"/*\", prefix defundef, macro, \"*/\"\n      next\n    }\n  }\n}\n{ print }\n_ACAWK\n  as_fn_error $? \"could not setup config headers machinery\" \"$LINENO\" 5\nfi # test -n \"$CONFIG_HEADERS\"\n\n\neval set X \"  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS\"\nshift\nfor ac_tag\ndo\n  case $ac_tag in\n  :[FHLC]) ac_mode=$ac_tag; continue;;\n  esac\n  case $ac_mode$ac_tag in\n  :[FHL]*:*);;\n  :L* | :C*:*) as_fn_error $? \"invalid tag \\`$ac_tag'\" \"$LINENO\" 5;;\n  :[FH]-) ac_tag=-:-;;\n  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;\n  esac\n  ac_save_IFS=$IFS\n  IFS=:\n  set x $ac_tag\n  IFS=$ac_save_IFS\n  shift\n  ac_file=$1\n  shift\n\n  case $ac_mode in\n  :L) ac_source=$1;;\n  :[FH])\n    ac_file_inputs=\n    for ac_f\n    do\n      case $ac_f in\n      -) ac_f=\"$ac_tmp/stdin\";;\n      *) # Look for the file first in the build tree, then in the source tree\n\t # (if the path is not absolute).  The absolute path cannot be DOS-style,\n\t # because $ac_f cannot contain `:'.\n\t test -f \"$ac_f\" ||\n\t   case $ac_f in\n\t   [\\\\/$]*) false;;\n\t   *) test -f \"$srcdir/$ac_f\" && ac_f=\"$srcdir/$ac_f\";;\n\t   esac ||\n\t   as_fn_error 1 \"cannot find input file: \\`$ac_f'\" \"$LINENO\" 5;;\n      esac\n      case $ac_f in *\\'*) ac_f=`$as_echo \"$ac_f\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; esac\n      as_fn_append ac_file_inputs \" '$ac_f'\"\n    done\n\n    # Let's still pretend it is `configure' which instantiates (i.e., don't\n    # use $as_me), people would be surprised to read:\n    #    /* config.h.  Generated by config.status.  */\n    configure_input='Generated from '`\n\t  $as_echo \"$*\" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'\n\t`' by configure.'\n    if test x\"$ac_file\" != x-; then\n      configure_input=\"$ac_file.  $configure_input\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: creating $ac_file\" >&5\n$as_echo \"$as_me: creating $ac_file\" >&6;}\n    fi\n    # Neutralize special characters interpreted by sed in replacement strings.\n    case $configure_input in #(\n    *\\&* | *\\|* | *\\\\* )\n       ac_sed_conf_input=`$as_echo \"$configure_input\" |\n       sed 's/[\\\\\\\\&|]/\\\\\\\\&/g'`;; #(\n    *) ac_sed_conf_input=$configure_input;;\n    esac\n\n    case $ac_tag in\n    *:-:* | *:-) cat >\"$ac_tmp/stdin\" \\\n      || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5 ;;\n    esac\n    ;;\n  esac\n\n  ac_dir=`$as_dirname -- \"$ac_file\" ||\n$as_expr X\"$ac_file\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)$' \\| \\\n\t X\"$ac_file\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$ac_file\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  as_dir=\"$ac_dir\"; as_fn_mkdir_p\n  ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`$as_echo \"$ac_dir\" | sed 's|^\\.[\\\\/]||'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`$as_echo \"$ac_dir_suffix\" | sed 's|/[^\\\\/]*|/..|g;s|/||'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n\n  case $ac_mode in\n  :F)\n  #\n  # CONFIG_FILE\n  #\n\n  case $INSTALL in\n  [\\\\/$]* | ?:[\\\\/]* ) ac_INSTALL=$INSTALL ;;\n  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;\n  esac\n  ac_MKDIR_P=$MKDIR_P\n  case $MKDIR_P in\n  [\\\\/$]* | ?:[\\\\/]* ) ;;\n  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;\n  esac\n# If the template does not know about datarootdir, expand it.\n# FIXME: This hack should be removed a few years after 2.60.\nac_datarootdir_hack=; ac_datarootdir_seen=\nac_sed_dataroot='\n/datarootdir/ {\n  p\n  q\n}\n/@datadir@/p\n/@docdir@/p\n/@infodir@/p\n/@localedir@/p\n/@mandir@/p'\ncase `eval \"sed -n \\\"\\$ac_sed_dataroot\\\" $ac_file_inputs\"` in\n*datarootdir*) ac_datarootdir_seen=yes;;\n*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&5\n$as_echo \"$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&2;}\n  ac_datarootdir_hack='\n  s&@datadir@&${datarootdir}&g\n  s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g\n  s&@infodir@&${datarootdir}/info&g\n  s&@localedir@&${datarootdir}/locale&g\n  s&@mandir@&${datarootdir}/man&g\n  s&\\${datarootdir}&${prefix}/share&g' ;;\nesac\nac_sed_extra=\"/^[\t ]*VPATH[\t ]*=[\t ]*/{\nh\ns///\ns/^/:/\ns/[\t ]*$/:/\ns/:\\$(srcdir):/:/g\ns/:\\${srcdir}:/:/g\ns/:@srcdir@:/:/g\ns/^:*//\ns/:*$//\nx\ns/\\(=[\t ]*\\).*/\\1/\nG\ns/\\n//\ns/^[^=]*=[\t ]*$//\n}\n\n:t\n/@[a-zA-Z_][a-zA-Z_0-9]*@/!b\ns|@configure_input@|$ac_sed_conf_input|;t t\ns&@top_builddir@&$ac_top_builddir_sub&;t t\ns&@top_build_prefix@&$ac_top_build_prefix&;t t\ns&@srcdir@&$ac_srcdir&;t t\ns&@abs_srcdir@&$ac_abs_srcdir&;t t\ns&@top_srcdir@&$ac_top_srcdir&;t t\ns&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t\ns&@builddir@&$ac_builddir&;t t\ns&@abs_builddir@&$ac_abs_builddir&;t t\ns&@abs_top_builddir@&$ac_abs_top_builddir&;t t\ns&@INSTALL@&$ac_INSTALL&;t t\ns&@MKDIR_P@&$ac_MKDIR_P&;t t\n$ac_datarootdir_hack\n\"\neval sed \\\"\\$ac_sed_extra\\\" \"$ac_file_inputs\" | $AWK -f \"$ac_tmp/subs.awk\" \\\n  >$ac_tmp/out || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n\ntest -z \"$ac_datarootdir_hack$ac_datarootdir_seen\" &&\n  { ac_out=`sed -n '/\\${datarootdir}/p' \"$ac_tmp/out\"`; test -n \"$ac_out\"; } &&\n  { ac_out=`sed -n '/^[\t ]*datarootdir[\t ]*:*=/p' \\\n      \"$ac_tmp/out\"`; test -z \"$ac_out\"; } &&\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&5\n$as_echo \"$as_me: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&2;}\n\n  rm -f \"$ac_tmp/stdin\"\n  case $ac_file in\n  -) cat \"$ac_tmp/out\" && rm -f \"$ac_tmp/out\";;\n  *) rm -f \"$ac_file\" && mv \"$ac_tmp/out\" \"$ac_file\";;\n  esac \\\n  || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n ;;\n  :H)\n  #\n  # CONFIG_HEADER\n  #\n  if test x\"$ac_file\" != x-; then\n    {\n      $as_echo \"/* $configure_input  */\" \\\n      && eval '$AWK -f \"$ac_tmp/defines.awk\"' \"$ac_file_inputs\"\n    } >\"$ac_tmp/config.h\" \\\n      || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n    if diff \"$ac_file\" \"$ac_tmp/config.h\" >/dev/null 2>&1; then\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: $ac_file is unchanged\" >&5\n$as_echo \"$as_me: $ac_file is unchanged\" >&6;}\n    else\n      rm -f \"$ac_file\"\n      mv \"$ac_tmp/config.h\" \"$ac_file\" \\\n\t|| as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n    fi\n  else\n    $as_echo \"/* $configure_input  */\" \\\n      && eval '$AWK -f \"$ac_tmp/defines.awk\"' \"$ac_file_inputs\" \\\n      || as_fn_error $? \"could not create -\" \"$LINENO\" 5\n  fi\n# Compute \"$ac_file\"'s index in $config_headers.\n_am_arg=\"$ac_file\"\n_am_stamp_count=1\nfor _am_header in $config_headers :; do\n  case $_am_header in\n    $_am_arg | $_am_arg:* )\n      break ;;\n    * )\n      _am_stamp_count=`expr $_am_stamp_count + 1` ;;\n  esac\ndone\necho \"timestamp for $_am_arg\" >`$as_dirname -- \"$_am_arg\" ||\n$as_expr X\"$_am_arg\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$_am_arg\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$_am_arg\" : 'X\\(//\\)$' \\| \\\n\t X\"$_am_arg\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$_am_arg\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`/stamp-h$_am_stamp_count\n ;;\n\n  :C)  { $as_echo \"$as_me:${as_lineno-$LINENO}: executing $ac_file commands\" >&5\n$as_echo \"$as_me: executing $ac_file commands\" >&6;}\n ;;\n  esac\n\n\n  case $ac_file$ac_mode in\n    \"depfiles\":C) test x\"$AMDEP_TRUE\" != x\"\" || {\n  # Older Autoconf quotes --file arguments for eval, but not when files\n  # are listed without --file.  Let's play safe and only enable the eval\n  # if we detect the quoting.\n  case $CONFIG_FILES in\n  *\\'*) eval set x \"$CONFIG_FILES\" ;;\n  *)   set x $CONFIG_FILES ;;\n  esac\n  shift\n  for mf\n  do\n    # Strip MF so we end up with the name of the file.\n    mf=`echo \"$mf\" | sed -e 's/:.*$//'`\n    # Check whether this is an Automake generated Makefile or not.\n    # We used to match only the files named 'Makefile.in', but\n    # some people rename them; so instead we look at the file content.\n    # Grep'ing the first line is not enough: some people post-process\n    # each Makefile.in and add a new line on top of each file to say so.\n    # Grep'ing the whole file is not good either: AIX grep has a line\n    # limit of 2048, but all sed's we know have understand at least 4000.\n    if sed -n 's,^#.*generated by automake.*,X,p' \"$mf\" | grep X >/dev/null 2>&1; then\n      dirpart=`$as_dirname -- \"$mf\" ||\n$as_expr X\"$mf\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$mf\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$mf\" : 'X\\(//\\)$' \\| \\\n\t X\"$mf\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$mf\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n    else\n      continue\n    fi\n    # Extract the definition of DEPDIR, am__include, and am__quote\n    # from the Makefile without running 'make'.\n    DEPDIR=`sed -n 's/^DEPDIR = //p' < \"$mf\"`\n    test -z \"$DEPDIR\" && continue\n    am__include=`sed -n 's/^am__include = //p' < \"$mf\"`\n    test -z \"$am__include\" && continue\n    am__quote=`sed -n 's/^am__quote = //p' < \"$mf\"`\n    # Find all dependency output files, they are included files with\n    # $(DEPDIR) in their names.  We invoke sed twice because it is the\n    # simplest approach to changing $(DEPDIR) to its actual value in the\n    # expansion.\n    for file in `sed -n \"\n      s/^$am__include $am__quote\\(.*(DEPDIR).*\\)$am__quote\"'$/\\1/p' <\"$mf\" | \\\n\t sed -e 's/\\$(DEPDIR)/'\"$DEPDIR\"'/g'`; do\n      # Make sure the directory exists.\n      test -f \"$dirpart/$file\" && continue\n      fdir=`$as_dirname -- \"$file\" ||\n$as_expr X\"$file\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$file\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$file\" : 'X\\(//\\)$' \\| \\\n\t X\"$file\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$file\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      as_dir=$dirpart/$fdir; as_fn_mkdir_p\n      # echo \"creating $dirpart/$file\"\n      echo '# dummy' > \"$dirpart/$file\"\n    done\n  done\n}\n ;;\n    \"libtool\":C)\n\n    # See if we are running on zsh, and set the options that allow our\n    # commands through without removal of \\ escapes.\n    if test -n \"${ZSH_VERSION+set}\"; then\n      setopt NO_GLOB_SUBST\n    fi\n\n    cfgfile=${ofile}T\n    trap \"$RM \\\"$cfgfile\\\"; exit 1\" 1 2 15\n    $RM \"$cfgfile\"\n\n    cat <<_LT_EOF >> \"$cfgfile\"\n#! $SHELL\n# Generated automatically by $as_me ($PACKAGE) $VERSION\n# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit, 1996\n\n# Copyright (C) 2014 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program or library that is built\n# using GNU Libtool, you may include this file under the  same\n# distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\n# The names of the tagged configurations supported by this script.\navailable_tags='RC '\n\n# Configured defaults for sys_lib_dlsearch_path munging.\n: \\${LT_SYS_LIBRARY_PATH=\"$configure_time_lt_sys_library_path\"}\n\n# ### BEGIN LIBTOOL CONFIG\n\n# Which release of libtool.m4 was used?\nmacro_version=$macro_version\nmacro_revision=$macro_revision\n\n# Whether or not to build static libraries.\nbuild_old_libs=$enable_static\n\n# Assembler program.\nAS=$lt_AS\n\n# DLL creation program.\nDLLTOOL=$lt_DLLTOOL\n\n# Object dumper program.\nOBJDUMP=$lt_OBJDUMP\n\n# Whether or not to build shared libraries.\nbuild_libtool_libs=$enable_shared\n\n# What type of objects to build.\npic_mode=$pic_mode\n\n# Whether or not to optimize for fast installation.\nfast_install=$enable_fast_install\n\n# Shared archive member basename,for filename based shared library versioning on AIX.\nshared_archive_member_spec=$shared_archive_member_spec\n\n# Shell to use when invoking shell scripts.\nSHELL=$lt_SHELL\n\n# An echo program that protects backslashes.\nECHO=$lt_ECHO\n\n# The PATH separator for the build system.\nPATH_SEPARATOR=$lt_PATH_SEPARATOR\n\n# The host system.\nhost_alias=$host_alias\nhost=$host\nhost_os=$host_os\n\n# The build system.\nbuild_alias=$build_alias\nbuild=$build\nbuild_os=$build_os\n\n# A sed program that does not truncate output.\nSED=$lt_SED\n\n# Sed that helps us avoid accidentally triggering echo(1) options like -n.\nXsed=\"\\$SED -e 1s/^X//\"\n\n# A grep program that handles long lines.\nGREP=$lt_GREP\n\n# An ERE matcher.\nEGREP=$lt_EGREP\n\n# A literal string matcher.\nFGREP=$lt_FGREP\n\n# A BSD- or MS-compatible name lister.\nNM=$lt_NM\n\n# Whether we need soft or hard links.\nLN_S=$lt_LN_S\n\n# What is the maximum length of a command?\nmax_cmd_len=$max_cmd_len\n\n# Object file suffix (normally \"o\").\nobjext=$ac_objext\n\n# Executable file suffix (normally \"\").\nexeext=$exeext\n\n# whether the shell understands \"unset\".\nlt_unset=$lt_unset\n\n# turn spaces into newlines.\nSP2NL=$lt_lt_SP2NL\n\n# turn newlines into spaces.\nNL2SP=$lt_lt_NL2SP\n\n# convert \\$build file names to \\$host format.\nto_host_file_cmd=$lt_cv_to_host_file_cmd\n\n# convert \\$build files to toolchain format.\nto_tool_file_cmd=$lt_cv_to_tool_file_cmd\n\n# Method to check whether dependent libraries are shared objects.\ndeplibs_check_method=$lt_deplibs_check_method\n\n# Command to use when deplibs_check_method = \"file_magic\".\nfile_magic_cmd=$lt_file_magic_cmd\n\n# How to find potential files when deplibs_check_method = \"file_magic\".\nfile_magic_glob=$lt_file_magic_glob\n\n# Find potential files using nocaseglob when deplibs_check_method = \"file_magic\".\nwant_nocaseglob=$lt_want_nocaseglob\n\n# Command to associate shared and link libraries.\nsharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd\n\n# The archiver.\nAR=$lt_AR\n\n# Flags to create an archive.\nAR_FLAGS=$lt_AR_FLAGS\n\n# How to feed a file listing to the archiver.\narchiver_list_spec=$lt_archiver_list_spec\n\n# A symbol stripping program.\nSTRIP=$lt_STRIP\n\n# Commands used to install an old-style archive.\nRANLIB=$lt_RANLIB\nold_postinstall_cmds=$lt_old_postinstall_cmds\nold_postuninstall_cmds=$lt_old_postuninstall_cmds\n\n# Whether to use a lock for old archive extraction.\nlock_old_archive_extraction=$lock_old_archive_extraction\n\n# A C compiler.\nLTCC=$lt_CC\n\n# LTCC compiler flags.\nLTCFLAGS=$lt_CFLAGS\n\n# Take the output of nm and produce a listing of raw symbols and C names.\nglobal_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe\n\n# Transform the output of nm in a proper C declaration.\nglobal_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl\n\n# Transform the output of nm into a list of symbols to manually relocate.\nglobal_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import\n\n# Transform the output of nm in a C name address pair.\nglobal_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address\n\n# Transform the output of nm in a C name address pair when lib prefix is needed.\nglobal_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix\n\n# The name lister interface.\nnm_interface=$lt_lt_cv_nm_interface\n\n# Specify filename containing input files for \\$NM.\nnm_file_list_spec=$lt_nm_file_list_spec\n\n# The root where to search for dependent libraries,and where our libraries should be installed.\nlt_sysroot=$lt_sysroot\n\n# Command to truncate a binary pipe.\nlt_truncate_bin=$lt_lt_cv_truncate_bin\n\n# The name of the directory that contains temporary libtool files.\nobjdir=$objdir\n\n# Used to examine libraries when file_magic_cmd begins with \"file\".\nMAGIC_CMD=$MAGIC_CMD\n\n# Must we lock files when doing compilation?\nneed_locks=$lt_need_locks\n\n# Manifest tool.\nMANIFEST_TOOL=$lt_MANIFEST_TOOL\n\n# Tool to manipulate archived DWARF debug symbol files on Mac OS X.\nDSYMUTIL=$lt_DSYMUTIL\n\n# Tool to change global to local symbols on Mac OS X.\nNMEDIT=$lt_NMEDIT\n\n# Tool to manipulate fat objects and archives on Mac OS X.\nLIPO=$lt_LIPO\n\n# ldd/readelf like tool for Mach-O binaries on Mac OS X.\nOTOOL=$lt_OTOOL\n\n# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.\nOTOOL64=$lt_OTOOL64\n\n# Old archive suffix (normally \"a\").\nlibext=$libext\n\n# Shared library suffix (normally \".so\").\nshrext_cmds=$lt_shrext_cmds\n\n# The commands to extract the exported symbol list from a shared archive.\nextract_expsyms_cmds=$lt_extract_expsyms_cmds\n\n# Variables whose values should be saved in libtool wrapper scripts and\n# restored at link time.\nvariables_saved_for_relink=$lt_variables_saved_for_relink\n\n# Do we need the \"lib\" prefix for modules?\nneed_lib_prefix=$need_lib_prefix\n\n# Do we need a version for libraries?\nneed_version=$need_version\n\n# Library versioning type.\nversion_type=$version_type\n\n# Shared library runtime path variable.\nrunpath_var=$runpath_var\n\n# Shared library path variable.\nshlibpath_var=$shlibpath_var\n\n# Is shlibpath searched before the hard-coded library search path?\nshlibpath_overrides_runpath=$shlibpath_overrides_runpath\n\n# Format of library name prefix.\nlibname_spec=$lt_libname_spec\n\n# List of archive names.  First name is the real one, the rest are links.\n# The last name is the one that the linker finds with -lNAME\nlibrary_names_spec=$lt_library_names_spec\n\n# The coded name of the library, if different from the real name.\nsoname_spec=$lt_soname_spec\n\n# Permission mode override for installation of shared libraries.\ninstall_override_mode=$lt_install_override_mode\n\n# Command to use after installation of a shared archive.\npostinstall_cmds=$lt_postinstall_cmds\n\n# Command to use after uninstallation of a shared archive.\npostuninstall_cmds=$lt_postuninstall_cmds\n\n# Commands used to finish a libtool library installation in a directory.\nfinish_cmds=$lt_finish_cmds\n\n# As \"finish_cmds\", except a single script fragment to be evaled but\n# not shown.\nfinish_eval=$lt_finish_eval\n\n# Whether we should hardcode library paths into libraries.\nhardcode_into_libs=$hardcode_into_libs\n\n# Compile-time system search path for libraries.\nsys_lib_search_path_spec=$lt_sys_lib_search_path_spec\n\n# Detected run-time system search path for libraries.\nsys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path\n\n# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.\nconfigure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path\n\n# Whether dlopen is supported.\ndlopen_support=$enable_dlopen\n\n# Whether dlopen of programs is supported.\ndlopen_self=$enable_dlopen_self\n\n# Whether dlopen of statically linked programs is supported.\ndlopen_self_static=$enable_dlopen_self_static\n\n# Commands to strip libraries.\nold_striplib=$lt_old_striplib\nstriplib=$lt_striplib\n\n\n# The linker used to build libraries.\nLD=$lt_LD\n\n# How to create reloadable object files.\nreload_flag=$lt_reload_flag\nreload_cmds=$lt_reload_cmds\n\n# Commands used to build an old-style archive.\nold_archive_cmds=$lt_old_archive_cmds\n\n# A language specific compiler.\nCC=$lt_compiler\n\n# Is the compiler the GNU compiler?\nwith_gcc=$GCC\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag\n\n# Additional compiler flags for building library objects.\npic_flag=$lt_lt_prog_compiler_pic\n\n# How to pass a linker flag through the compiler.\nwl=$lt_lt_prog_compiler_wl\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=$lt_lt_prog_compiler_static\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=$lt_lt_cv_prog_compiler_c_o\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=$archive_cmds_need_lc\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=$lt_export_dynamic_flag_spec\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=$lt_whole_archive_flag_spec\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=$lt_compiler_needs_object\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=$lt_old_archive_from_new_cmds\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds\n\n# Commands used to build a shared archive.\narchive_cmds=$lt_archive_cmds\narchive_expsym_cmds=$lt_archive_expsym_cmds\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=$lt_module_cmds\nmodule_expsym_cmds=$lt_module_expsym_cmds\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=$lt_with_gnu_ld\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=$lt_allow_undefined_flag\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=$lt_no_undefined_flag\n\n# Flag to hardcode \\$libdir into a binary during linking.\n# This must work even if \\$libdir does not exist\nhardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=$lt_hardcode_libdir_separator\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=$hardcode_direct\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting \\$shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=$hardcode_direct_absolute\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=$hardcode_minus_L\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=$hardcode_shlibpath_var\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=$hardcode_automatic\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=$inherit_rpath\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=$link_all_deplibs\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=$always_export_symbols\n\n# The commands to list exported symbols.\nexport_symbols_cmds=$lt_export_symbols_cmds\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=$lt_exclude_expsyms\n\n# Symbols that must always be exported.\ninclude_expsyms=$lt_include_expsyms\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=$lt_prelink_cmds\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=$lt_postlink_cmds\n\n# Specify filename containing input files.\nfile_list_spec=$lt_file_list_spec\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=$hardcode_action\n\n# ### END LIBTOOL CONFIG\n\n_LT_EOF\n\n    cat <<'_LT_EOF' >> \"$cfgfile\"\n\n# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n\n# ### END FUNCTIONS SHARED WITH CONFIGURE\n\n_LT_EOF\n\n  case $host_os in\n  aix3*)\n    cat <<\\_LT_EOF >> \"$cfgfile\"\n# AIX sometimes has problems with the GCC collect2 program.  For some\n# reason, if we set the COLLECT_NAMES environment variable, the problems\n# vanish in a puff of smoke.\nif test set != \"${COLLECT_NAMES+set}\"; then\n  COLLECT_NAMES=\n  export COLLECT_NAMES\nfi\n_LT_EOF\n    ;;\n  esac\n\n\nltmain=$ac_aux_dir/ltmain.sh\n\n\n  # We use sed instead of cat because bash on DJGPP gets confused if\n  # if finds mixed CR/LF and LF-only lines.  Since sed operates in\n  # text mode, it properly converts lines to CR/LF.  This bash problem\n  # is reportedly fixed, but why not run on old versions too?\n  sed '$q' \"$ltmain\" >> \"$cfgfile\" \\\n     || (rm -f \"$cfgfile\"; exit 1)\n\n   mv -f \"$cfgfile\" \"$ofile\" ||\n    (rm -f \"$ofile\" && cp \"$cfgfile\" \"$ofile\" && rm -f \"$cfgfile\")\n  chmod +x \"$ofile\"\n\n\n    cat <<_LT_EOF >> \"$ofile\"\n\n# ### BEGIN LIBTOOL TAG CONFIG: RC\n\n# The linker used to build libraries.\nLD=$lt_LD_RC\n\n# How to create reloadable object files.\nreload_flag=$lt_reload_flag_RC\nreload_cmds=$lt_reload_cmds_RC\n\n# Commands used to build an old-style archive.\nold_archive_cmds=$lt_old_archive_cmds_RC\n\n# A language specific compiler.\nCC=$lt_compiler_RC\n\n# Is the compiler the GNU compiler?\nwith_gcc=$GCC_RC\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC\n\n# Additional compiler flags for building library objects.\npic_flag=$lt_lt_prog_compiler_pic_RC\n\n# How to pass a linker flag through the compiler.\nwl=$lt_lt_prog_compiler_wl_RC\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=$lt_lt_prog_compiler_static_RC\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=$archive_cmds_need_lc_RC\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=$lt_whole_archive_flag_spec_RC\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=$lt_compiler_needs_object_RC\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC\n\n# Commands used to build a shared archive.\narchive_cmds=$lt_archive_cmds_RC\narchive_expsym_cmds=$lt_archive_expsym_cmds_RC\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=$lt_module_cmds_RC\nmodule_expsym_cmds=$lt_module_expsym_cmds_RC\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=$lt_with_gnu_ld_RC\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=$lt_allow_undefined_flag_RC\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=$lt_no_undefined_flag_RC\n\n# Flag to hardcode \\$libdir into a binary during linking.\n# This must work even if \\$libdir does not exist\nhardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=$lt_hardcode_libdir_separator_RC\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=$hardcode_direct_RC\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting \\$shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=$hardcode_direct_absolute_RC\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=$hardcode_minus_L_RC\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=$hardcode_shlibpath_var_RC\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=$hardcode_automatic_RC\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=$inherit_rpath_RC\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=$link_all_deplibs_RC\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=$always_export_symbols_RC\n\n# The commands to list exported symbols.\nexport_symbols_cmds=$lt_export_symbols_cmds_RC\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=$lt_exclude_expsyms_RC\n\n# Symbols that must always be exported.\ninclude_expsyms=$lt_include_expsyms_RC\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=$lt_prelink_cmds_RC\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=$lt_postlink_cmds_RC\n\n# Specify filename containing input files.\nfile_list_spec=$lt_file_list_spec_RC\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=$hardcode_action_RC\n\n# ### END LIBTOOL TAG CONFIG: RC\n_LT_EOF\n\n ;;\n    \"po-directories\":C)\n    for ac_file in $CONFIG_FILES; do\n      # Support \"outfile[:infile[:infile...]]\"\n      case \"$ac_file\" in\n        *:*) ac_file=`echo \"$ac_file\"|sed 's%:.*%%'` ;;\n      esac\n      # PO directories have a Makefile.in generated from Makefile.in.in.\n      case \"$ac_file\" in */Makefile.in)\n        # Adjust a relative srcdir.\n        ac_dir=`echo \"$ac_file\"|sed 's%/[^/][^/]*$%%'`\n        ac_dir_suffix=/`echo \"$ac_dir\"|sed 's%^\\./%%'`\n        ac_dots=`echo \"$ac_dir_suffix\"|sed 's%/[^/]*%../%g'`\n        # In autoconf-2.13 it is called $ac_given_srcdir.\n        # In autoconf-2.50 it is called $srcdir.\n        test -n \"$ac_given_srcdir\" || ac_given_srcdir=\"$srcdir\"\n        case \"$ac_given_srcdir\" in\n          .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;\n          /*) top_srcdir=\"$ac_given_srcdir\" ;;\n          *)  top_srcdir=\"$ac_dots$ac_given_srcdir\" ;;\n        esac\n        # Treat a directory as a PO directory if and only if it has a\n        # POTFILES.in file. This allows packages to have multiple PO\n        # directories under different names or in different locations.\n        if test -f \"$ac_given_srcdir/$ac_dir/POTFILES.in\"; then\n          rm -f \"$ac_dir/POTFILES\"\n          test -n \"$as_me\" && echo \"$as_me: creating $ac_dir/POTFILES\" || echo \"creating $ac_dir/POTFILES\"\n          gt_tab=`printf '\\t'`\n          cat \"$ac_given_srcdir/$ac_dir/POTFILES.in\" | sed -e \"/^#/d\" -e \"/^[ ${gt_tab}]*\\$/d\" -e \"s,.*,     $top_srcdir/& \\\\\\\\,\" | sed -e \"\\$s/\\(.*\\) \\\\\\\\/\\1/\" > \"$ac_dir/POTFILES\"\n          POMAKEFILEDEPS=\"POTFILES.in\"\n          # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend\n          # on $ac_dir but don't depend on user-specified configuration\n          # parameters.\n          if test -f \"$ac_given_srcdir/$ac_dir/LINGUAS\"; then\n            # The LINGUAS file contains the set of available languages.\n            if test -n \"$OBSOLETE_ALL_LINGUAS\"; then\n              test -n \"$as_me\" && echo \"$as_me: setting ALL_LINGUAS in configure.in is obsolete\" || echo \"setting ALL_LINGUAS in configure.in is obsolete\"\n            fi\n            ALL_LINGUAS_=`sed -e \"/^#/d\" -e \"s/#.*//\" \"$ac_given_srcdir/$ac_dir/LINGUAS\"`\n            # Hide the ALL_LINGUAS assignment from automake < 1.5.\n            eval 'ALL_LINGUAS''=$ALL_LINGUAS_'\n            POMAKEFILEDEPS=\"$POMAKEFILEDEPS LINGUAS\"\n          else\n            # The set of available languages was given in configure.in.\n            # Hide the ALL_LINGUAS assignment from automake < 1.5.\n            eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'\n          fi\n          # Compute POFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)\n          # Compute UPDATEPOFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)\n          # Compute DUMMYPOFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).nop)\n          # Compute GMOFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)\n          case \"$ac_given_srcdir\" in\n            .) srcdirpre= ;;\n            *) srcdirpre='$(srcdir)/' ;;\n          esac\n          POFILES=\n          UPDATEPOFILES=\n          DUMMYPOFILES=\n          GMOFILES=\n          for lang in $ALL_LINGUAS; do\n            POFILES=\"$POFILES $srcdirpre$lang.po\"\n            UPDATEPOFILES=\"$UPDATEPOFILES $lang.po-update\"\n            DUMMYPOFILES=\"$DUMMYPOFILES $lang.nop\"\n            GMOFILES=\"$GMOFILES $srcdirpre$lang.gmo\"\n          done\n          # CATALOGS depends on both $ac_dir and the user's LINGUAS\n          # environment variable.\n          INST_LINGUAS=\n          if test -n \"$ALL_LINGUAS\"; then\n            for presentlang in $ALL_LINGUAS; do\n              useit=no\n              if test \"%UNSET%\" != \"$LINGUAS\"; then\n                desiredlanguages=\"$LINGUAS\"\n              else\n                desiredlanguages=\"$ALL_LINGUAS\"\n              fi\n              for desiredlang in $desiredlanguages; do\n                # Use the presentlang catalog if desiredlang is\n                #   a. equal to presentlang, or\n                #   b. a variant of presentlang (because in this case,\n                #      presentlang can be used as a fallback for messages\n                #      which are not translated in the desiredlang catalog).\n                case \"$desiredlang\" in\n                  \"$presentlang\"*) useit=yes;;\n                esac\n              done\n              if test $useit = yes; then\n                INST_LINGUAS=\"$INST_LINGUAS $presentlang\"\n              fi\n            done\n          fi\n          CATALOGS=\n          if test -n \"$INST_LINGUAS\"; then\n            for lang in $INST_LINGUAS; do\n              CATALOGS=\"$CATALOGS $lang.gmo\"\n            done\n          fi\n          test -n \"$as_me\" && echo \"$as_me: creating $ac_dir/Makefile\" || echo \"creating $ac_dir/Makefile\"\n          sed -e \"/^POTFILES =/r $ac_dir/POTFILES\" -e \"/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars\" -e \"s|@POFILES@|$POFILES|g\" -e \"s|@UPDATEPOFILES@|$UPDATEPOFILES|g\" -e \"s|@DUMMYPOFILES@|$DUMMYPOFILES|g\" -e \"s|@GMOFILES@|$GMOFILES|g\" -e \"s|@CATALOGS@|$CATALOGS|g\" -e \"s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g\" \"$ac_dir/Makefile.in\" > \"$ac_dir/Makefile\"\n          for f in \"$ac_given_srcdir/$ac_dir\"/Rules-*; do\n            if test -f \"$f\"; then\n              case \"$f\" in\n                *.orig | *.bak | *~) ;;\n                *) cat \"$f\" >> \"$ac_dir/Makefile\" ;;\n              esac\n            fi\n          done\n        fi\n        ;;\n      esac\n    done ;;\n\n  esac\ndone # for ac_tag\n\n\nas_fn_exit 0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/configure",
    "content": "#! /bin/sh\n# Guess values for system-dependent variables and create Makefiles.\n# Generated by GNU Autoconf 2.69 for libiconv 1.15.\n#\n#\n# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.\n#\n#\n# This configure script is free software; the Free Software Foundation\n# gives unlimited permission to copy, distribute and modify it.\n## -------------------- ##\n## M4sh Initialization. ##\n## -------------------- ##\n\n# Be more Bourne compatible\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\n\nas_nl='\n'\nexport as_nl\n# Printing a long string crashes Solaris 7 /usr/bin/printf.\nas_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo\n# Prefer a ksh shell builtin over an external printf program on Solaris,\n# but without wasting forks for bash or zsh.\nif test -z \"$BASH_VERSION$ZSH_VERSION\" \\\n    && (test \"X`print -r -- $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='print -r --'\n  as_echo_n='print -rn --'\nelif (test \"X`printf %s $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='printf %s\\n'\n  as_echo_n='printf %s'\nelse\n  if test \"X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`\" = \"X-n $as_echo\"; then\n    as_echo_body='eval /usr/ucb/echo -n \"$1$as_nl\"'\n    as_echo_n='/usr/ucb/echo -n'\n  else\n    as_echo_body='eval expr \"X$1\" : \"X\\\\(.*\\\\)\"'\n    as_echo_n_body='eval\n      arg=$1;\n      case $arg in #(\n      *\"$as_nl\"*)\n\texpr \"X$arg\" : \"X\\\\(.*\\\\)$as_nl\";\n\targ=`expr \"X$arg\" : \".*$as_nl\\\\(.*\\\\)\"`;;\n      esac;\n      expr \"X$arg\" : \"X\\\\(.*\\\\)\" | tr -d \"$as_nl\"\n    '\n    export as_echo_n_body\n    as_echo_n='sh -c $as_echo_n_body as_echo'\n  fi\n  export as_echo_body\n  as_echo='sh -c $as_echo_body as_echo'\nfi\n\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n# IFS\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent editors from complaining about space-tab.\n# (If _AS_PATH_WALK were called with IFS unset, it would disable word\n# splitting by setting IFS to empty value.)\nIFS=\" \"\"\t$as_nl\"\n\n# Find who we are.  Look in the path if we contain no directory separator.\nas_myself=\ncase $0 in #((\n  *[\\\\/]* ) as_myself=$0 ;;\n  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    test -r \"$as_dir/$0\" && as_myself=$as_dir/$0 && break\n  done\nIFS=$as_save_IFS\n\n     ;;\nesac\n# We did not find ourselves, most probably we were run as `sh COMMAND'\n# in which case we are not to be found in the path.\nif test \"x$as_myself\" = x; then\n  as_myself=$0\nfi\nif test ! -f \"$as_myself\"; then\n  $as_echo \"$as_myself: error: cannot find myself; rerun with an absolute file name\" >&2\n  exit 1\nfi\n\n# Unset variables that we do not need and which cause bugs (e.g. in\n# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the \"|| exit 1\"\n# suppresses any \"Segmentation fault\" message there.  '((' could\n# trigger a bug in pdksh 5.2.14.\nfor as_var in BASH_ENV ENV MAIL MAILPATH\ndo eval test x\\${$as_var+set} = xset \\\n  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :\ndone\nPS1='$ '\nPS2='> '\nPS4='+ '\n\n# NLS nuisances.\nLC_ALL=C\nexport LC_ALL\nLANGUAGE=C\nexport LANGUAGE\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n# Use a proper internal environment variable to ensure we don't fall\n  # into an infinite loop, continuously re-executing ourselves.\n  if test x\"${_as_can_reexec}\" != xno && test \"x$CONFIG_SHELL\" != x; then\n    _as_can_reexec=no; export _as_can_reexec;\n    # We cannot yet assume a decent shell, so we have to provide a\n# neutralization value for shells without unset; and this also\n# works around shells that cannot unset nonexistent variables.\n# Preserve -v and -x to the replacement shell.\nBASH_ENV=/dev/null\nENV=/dev/null\n(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV\ncase $- in # ((((\n  *v*x* | *x*v* ) as_opts=-vx ;;\n  *v* ) as_opts=-v ;;\n  *x* ) as_opts=-x ;;\n  * ) as_opts= ;;\nesac\nexec $CONFIG_SHELL $as_opts \"$as_myself\" ${1+\"$@\"}\n# Admittedly, this is quite paranoid, since all the known shells bail\n# out after a failed `exec'.\n$as_echo \"$0: could not re-execute with $CONFIG_SHELL\" >&2\nas_fn_exit 255\n  fi\n  # We don't want this to propagate to other subprocesses.\n          { _as_can_reexec=; unset _as_can_reexec;}\nif test \"x$CONFIG_SHELL\" = x; then\n  as_bourne_compatible=\"if test -n \\\"\\${ZSH_VERSION+set}\\\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on \\${1+\\\"\\$@\\\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '\\${1+\\\"\\$@\\\"}'='\\\"\\$@\\\"'\n  setopt NO_GLOB_SUBST\nelse\n  case \\`(set -o) 2>/dev/null\\` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\"\n  as_required=\"as_fn_return () { (exit \\$1); }\nas_fn_success () { as_fn_return 0; }\nas_fn_failure () { as_fn_return 1; }\nas_fn_ret_success () { return 0; }\nas_fn_ret_failure () { return 1; }\n\nexitcode=0\nas_fn_success || { exitcode=1; echo as_fn_success failed.; }\nas_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }\nas_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }\nas_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }\nif ( set x; as_fn_ret_success y && test x = \\\"\\$1\\\" ); then :\n\nelse\n  exitcode=1; echo positional parameters were not saved.\nfi\ntest x\\$exitcode = x0 || exit 1\ntest -x / || exit 1\"\n  as_suggested=\"  as_lineno_1=\";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested\" as_lineno_1a=\\$LINENO\n  as_lineno_2=\";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested\" as_lineno_2a=\\$LINENO\n  eval 'test \\\"x\\$as_lineno_1'\\$as_run'\\\" != \\\"x\\$as_lineno_2'\\$as_run'\\\" &&\n  test \\\"x\\`expr \\$as_lineno_1'\\$as_run' + 1\\`\\\" = \\\"x\\$as_lineno_2'\\$as_run'\\\"' || exit 1\ntest \\$(( 1 + 1 )) = 2 || exit 1\n\n  test -n \\\"\\${ZSH_VERSION+set}\\${BASH_VERSION+set}\\\" || (\n    ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\n    ECHO=\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\n    ECHO=\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\n    PATH=/empty FPATH=/empty; export PATH FPATH\n    test \\\"X\\`printf %s \\$ECHO\\`\\\" = \\\"X\\$ECHO\\\" \\\\\n      || test \\\"X\\`print -r -- \\$ECHO\\`\\\" = \\\"X\\$ECHO\\\" ) || exit 1\"\n  if (eval \"$as_required\") 2>/dev/null; then :\n  as_have_required=yes\nelse\n  as_have_required=no\nfi\n  if test x$as_have_required = xyes && (eval \"$as_suggested\") 2>/dev/null; then :\n\nelse\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nas_found=false\nfor as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  as_found=:\n  case $as_dir in #(\n\t /*)\n\t   for as_base in sh bash ksh sh5; do\n\t     # Try only shells that exist, to save several forks.\n\t     as_shell=$as_dir/$as_base\n\t     if { test -f \"$as_shell\" || test -f \"$as_shell.exe\"; } &&\n\t\t    { $as_echo \"$as_bourne_compatible\"\"$as_required\" | as_run=a \"$as_shell\"; } 2>/dev/null; then :\n  CONFIG_SHELL=$as_shell as_have_required=yes\n\t\t   if { $as_echo \"$as_bourne_compatible\"\"$as_suggested\" | as_run=a \"$as_shell\"; } 2>/dev/null; then :\n  break 2\nfi\nfi\n\t   done;;\n       esac\n  as_found=false\ndone\n$as_found || { if { test -f \"$SHELL\" || test -f \"$SHELL.exe\"; } &&\n\t      { $as_echo \"$as_bourne_compatible\"\"$as_required\" | as_run=a \"$SHELL\"; } 2>/dev/null; then :\n  CONFIG_SHELL=$SHELL as_have_required=yes\nfi; }\nIFS=$as_save_IFS\n\n\n      if test \"x$CONFIG_SHELL\" != x; then :\n  export CONFIG_SHELL\n             # We cannot yet assume a decent shell, so we have to provide a\n# neutralization value for shells without unset; and this also\n# works around shells that cannot unset nonexistent variables.\n# Preserve -v and -x to the replacement shell.\nBASH_ENV=/dev/null\nENV=/dev/null\n(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV\ncase $- in # ((((\n  *v*x* | *x*v* ) as_opts=-vx ;;\n  *v* ) as_opts=-v ;;\n  *x* ) as_opts=-x ;;\n  * ) as_opts= ;;\nesac\nexec $CONFIG_SHELL $as_opts \"$as_myself\" ${1+\"$@\"}\n# Admittedly, this is quite paranoid, since all the known shells bail\n# out after a failed `exec'.\n$as_echo \"$0: could not re-execute with $CONFIG_SHELL\" >&2\nexit 255\nfi\n\n    if test x$as_have_required = xno; then :\n  $as_echo \"$0: This script requires a shell more modern than all\"\n  $as_echo \"$0: the shells that I found on your system.\"\n  if test x${ZSH_VERSION+set} = xset ; then\n    $as_echo \"$0: In particular, zsh $ZSH_VERSION has bugs and should\"\n    $as_echo \"$0: be upgraded to zsh 4.3.4 or later.\"\n  else\n    $as_echo \"$0: Please tell bug-autoconf@gnu.org about your system,\n$0: including any error possibly output before this\n$0: message. Then install a modern shell, or manually run\n$0: the script under such a shell if you do have one.\"\n  fi\n  exit 1\nfi\nfi\nfi\nSHELL=${CONFIG_SHELL-/bin/sh}\nexport SHELL\n# Unset more variables known to interfere with behavior of common tools.\nCLICOLOR_FORCE= GREP_OPTIONS=\nunset CLICOLOR_FORCE GREP_OPTIONS\n\n## --------------------- ##\n## M4sh Shell Functions. ##\n## --------------------- ##\n# as_fn_unset VAR\n# ---------------\n# Portably unset VAR.\nas_fn_unset ()\n{\n  { eval $1=; unset $1;}\n}\nas_unset=as_fn_unset\n\n# as_fn_set_status STATUS\n# -----------------------\n# Set $? to STATUS, without forking.\nas_fn_set_status ()\n{\n  return $1\n} # as_fn_set_status\n\n# as_fn_exit STATUS\n# -----------------\n# Exit the shell with STATUS, even in a \"trap 0\" or \"set -e\" context.\nas_fn_exit ()\n{\n  set +e\n  as_fn_set_status $1\n  exit $1\n} # as_fn_exit\n\n# as_fn_mkdir_p\n# -------------\n# Create \"$as_dir\" as a directory, including parents if necessary.\nas_fn_mkdir_p ()\n{\n\n  case $as_dir in #(\n  -*) as_dir=./$as_dir;;\n  esac\n  test -d \"$as_dir\" || eval $as_mkdir_p || {\n    as_dirs=\n    while :; do\n      case $as_dir in #(\n      *\\'*) as_qdir=`$as_echo \"$as_dir\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; #'(\n      *) as_qdir=$as_dir;;\n      esac\n      as_dirs=\"'$as_qdir' $as_dirs\"\n      as_dir=`$as_dirname -- \"$as_dir\" ||\n$as_expr X\"$as_dir\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_dir\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_dir\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      test -d \"$as_dir\" && break\n    done\n    test -z \"$as_dirs\" || eval \"mkdir $as_dirs\"\n  } || test -d \"$as_dir\" || as_fn_error $? \"cannot create directory $as_dir\"\n\n\n} # as_fn_mkdir_p\n\n# as_fn_executable_p FILE\n# -----------------------\n# Test if FILE is an executable regular file.\nas_fn_executable_p ()\n{\n  test -f \"$1\" && test -x \"$1\"\n} # as_fn_executable_p\n# as_fn_append VAR VALUE\n# ----------------------\n# Append the text in VALUE to the end of the definition contained in VAR. Take\n# advantage of any shell optimizations that allow amortized linear growth over\n# repeated appends, instead of the typical quadratic growth present in naive\n# implementations.\nif (eval \"as_var=1; as_var+=2; test x\\$as_var = x12\") 2>/dev/null; then :\n  eval 'as_fn_append ()\n  {\n    eval $1+=\\$2\n  }'\nelse\n  as_fn_append ()\n  {\n    eval $1=\\$$1\\$2\n  }\nfi # as_fn_append\n\n# as_fn_arith ARG...\n# ------------------\n# Perform arithmetic evaluation on the ARGs, and store the result in the\n# global $as_val. Take advantage of shells that can avoid forks. The arguments\n# must be portable across $(()) and expr.\nif (eval \"test \\$(( 1 + 1 )) = 2\") 2>/dev/null; then :\n  eval 'as_fn_arith ()\n  {\n    as_val=$(( $* ))\n  }'\nelse\n  as_fn_arith ()\n  {\n    as_val=`expr \"$@\" || test $? -eq 1`\n  }\nfi # as_fn_arith\n\n\n# as_fn_error STATUS ERROR [LINENO LOG_FD]\n# ----------------------------------------\n# Output \"`basename $0`: error: ERROR\" to stderr. If LINENO and LOG_FD are\n# provided, also output the error to LOG_FD, referencing LINENO. Then exit the\n# script with STATUS, using 1 if that was 0.\nas_fn_error ()\n{\n  as_status=$1; test $as_status -eq 0 && as_status=1\n  if test \"$4\"; then\n    as_lineno=${as_lineno-\"$3\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n    $as_echo \"$as_me:${as_lineno-$LINENO}: error: $2\" >&$4\n  fi\n  $as_echo \"$as_me: error: $2\" >&2\n  as_fn_exit $as_status\n} # as_fn_error\n\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nif (basename -- /) >/dev/null 2>&1 && test \"X`basename -- / 2>&1`\" = \"X/\"; then\n  as_basename=basename\nelse\n  as_basename=false\nfi\n\nif (as_dir=`dirname -- /` && test \"X$as_dir\" = X/) >/dev/null 2>&1; then\n  as_dirname=dirname\nelse\n  as_dirname=false\nfi\n\nas_me=`$as_basename -- \"$0\" ||\n$as_expr X/\"$0\" : '.*/\\([^/][^/]*\\)/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X/\"$0\" |\n    sed '/^.*\\/\\([^/][^/]*\\)\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n\n# Avoid depending upon Character Ranges.\nas_cr_letters='abcdefghijklmnopqrstuvwxyz'\nas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nas_cr_Letters=$as_cr_letters$as_cr_LETTERS\nas_cr_digits='0123456789'\nas_cr_alnum=$as_cr_Letters$as_cr_digits\n\n\n  as_lineno_1=$LINENO as_lineno_1a=$LINENO\n  as_lineno_2=$LINENO as_lineno_2a=$LINENO\n  eval 'test \"x$as_lineno_1'$as_run'\" != \"x$as_lineno_2'$as_run'\" &&\n  test \"x`expr $as_lineno_1'$as_run' + 1`\" = \"x$as_lineno_2'$as_run'\"' || {\n  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)\n  sed -n '\n    p\n    /[$]LINENO/=\n  ' <$as_myself |\n    sed '\n      s/[$]LINENO.*/&-/\n      t lineno\n      b\n      :lineno\n      N\n      :loop\n      s/[$]LINENO\\([^'$as_cr_alnum'_].*\\n\\)\\(.*\\)/\\2\\1\\2/\n      t loop\n      s/-\\n.*//\n    ' >$as_me.lineno &&\n  chmod +x \"$as_me.lineno\" ||\n    { $as_echo \"$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell\" >&2; as_fn_exit 1; }\n\n  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have\n  # already done that, so ensure we don't try to do so again and fall\n  # in an infinite loop.  This has already happened in practice.\n  _as_can_reexec=no; export _as_can_reexec\n  # Don't try to exec as it changes $[0], causing all sort of problems\n  # (the dirname of $[0] is not the place where we might find the\n  # original and so on.  Autoconf is especially sensitive to this).\n  . \"./$as_me.lineno\"\n  # Exit status is that of the last command.\n  exit\n}\n\nECHO_C= ECHO_N= ECHO_T=\ncase `echo -n x` in #(((((\n-n*)\n  case `echo 'xy\\c'` in\n  *c*) ECHO_T='\t';;\t# ECHO_T is single tab character.\n  xy)  ECHO_C='\\c';;\n  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null\n       ECHO_T='\t';;\n  esac;;\n*)\n  ECHO_N='-n';;\nesac\n\nrm -f conf$$ conf$$.exe conf$$.file\nif test -d conf$$.dir; then\n  rm -f conf$$.dir/conf$$.file\nelse\n  rm -f conf$$.dir\n  mkdir conf$$.dir 2>/dev/null\nfi\nif (echo >conf$$.file) 2>/dev/null; then\n  if ln -s conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s='ln -s'\n    # ... but there are two gotchas:\n    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.\n    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.\n    # In both cases, we have to default to `cp -pR'.\n    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||\n      as_ln_s='cp -pR'\n  elif ln conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s=ln\n  else\n    as_ln_s='cp -pR'\n  fi\nelse\n  as_ln_s='cp -pR'\nfi\nrm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file\nrmdir conf$$.dir 2>/dev/null\n\nif mkdir -p . 2>/dev/null; then\n  as_mkdir_p='mkdir -p \"$as_dir\"'\nelse\n  test -d ./-p && rmdir ./-p\n  as_mkdir_p=false\nfi\n\nas_test_x='test -x'\nas_executable_p=as_fn_executable_p\n\n# Sed expression to map a string onto a valid CPP name.\nas_tr_cpp=\"eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'\"\n\n# Sed expression to map a string onto a valid variable name.\nas_tr_sh=\"eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'\"\n\nSHELL=${CONFIG_SHELL-/bin/sh}\n\n\ntest -n \"$DJDIR\" || exec 7<&0 </dev/null\nexec 6>&1\n\n# Name of the host.\n# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,\n# so uname gets run too.\nac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`\n\n#\n# Initializations.\n#\nac_default_prefix=/usr/local\nac_clean_files=\nac_config_libobj_dir=.\nLIBOBJS=\ncross_compiling=no\nsubdirs=\nMFLAGS=\nMAKEFLAGS=\n\n# Identity of this package.\nPACKAGE_NAME='libiconv'\nPACKAGE_TARNAME='libiconv'\nPACKAGE_VERSION='1.15'\nPACKAGE_STRING='libiconv 1.15'\nPACKAGE_BUGREPORT=''\nPACKAGE_URL=''\n\nac_unique_file=\"lib/iconv.c\"\n# Factoring default headers for most tests.\nac_includes_default=\"\\\n#include <stdio.h>\n#ifdef HAVE_SYS_TYPES_H\n# include <sys/types.h>\n#endif\n#ifdef HAVE_SYS_STAT_H\n# include <sys/stat.h>\n#endif\n#ifdef STDC_HEADERS\n# include <stdlib.h>\n# include <stddef.h>\n#else\n# ifdef HAVE_STDLIB_H\n#  include <stdlib.h>\n# endif\n#endif\n#ifdef HAVE_STRING_H\n# if !defined STDC_HEADERS && defined HAVE_MEMORY_H\n#  include <memory.h>\n# endif\n# include <string.h>\n#endif\n#ifdef HAVE_STRINGS_H\n# include <strings.h>\n#endif\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#ifdef HAVE_STDINT_H\n# include <stdint.h>\n#endif\n#ifdef HAVE_UNISTD_H\n# include <unistd.h>\n#endif\"\n\ngt_needs=\nac_header_list=\nac_func_list=\nenable_option_checking=no\nac_subst_vars='gltests_LTLIBOBJS\ngltests_LIBOBJS\ngl_LTLIBOBJS\ngl_LIBOBJS\nam__EXEEXT_FALSE\nam__EXEEXT_TRUE\nLTLIBOBJS\nLIBOBJS\nsubdirs\nDLL_VARIABLE\nWOE32DLL\nSRCLIBOBJS\nLIBICRT_LTLIBDEPS\nLIBICRT_LIBDEPS\ngltests_WITNESS\nLIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_FALSE\nLIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE\nLIBUNISTRING_UNIWIDTH_H\nLIBUNISTRING_UNITYPES_H\nHAVE_UNISTD_H\nNEXT_AS_FIRST_DIRECTIVE_UNISTD_H\nNEXT_UNISTD_H\nUNISTD_H_DEFINES_STRUCT_TIMESPEC\nPTHREAD_H_DEFINES_STRUCT_TIMESPEC\nSYS_TIME_H_DEFINES_STRUCT_TIMESPEC\nTIME_H_DEFINES_STRUCT_TIMESPEC\nNEXT_AS_FIRST_DIRECTIVE_TIME_H\nNEXT_TIME_H\nREPLACE_LOCALTIME\nREPLACE_GMTIME\nREPLACE_TIMEGM\nREPLACE_NANOSLEEP\nREPLACE_MKTIME\nREPLACE_LOCALTIME_R\nHAVE_TIMEGM\nHAVE_STRPTIME\nHAVE_NANOSLEEP\nHAVE_DECL_LOCALTIME_R\nGNULIB_TIME_RZ\nGNULIB_TIME_R\nGNULIB_TIMEGM\nGNULIB_STRPTIME\nGNULIB_NANOSLEEP\nGNULIB_MKTIME\nWINDOWS_64_BIT_OFF_T\nNEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H\nNEXT_SYS_TYPES_H\nWINDOWS_64_BIT_ST_SIZE\nNEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H\nNEXT_SYS_STAT_H\nNEXT_AS_FIRST_DIRECTIVE_STRING_H\nNEXT_STRING_H\nUNDEFINE_STRTOK_R\nREPLACE_STRTOK_R\nREPLACE_STRSIGNAL\nREPLACE_STRNLEN\nREPLACE_STRNDUP\nREPLACE_STRNCAT\nREPLACE_STRERROR_R\nREPLACE_STRERROR\nREPLACE_STRCHRNUL\nREPLACE_STRCASESTR\nREPLACE_STRSTR\nREPLACE_STRDUP\nREPLACE_STPNCPY\nREPLACE_MEMMEM\nREPLACE_MEMCHR\nHAVE_STRVERSCMP\nHAVE_DECL_STRSIGNAL\nHAVE_DECL_STRERROR_R\nHAVE_DECL_STRTOK_R\nHAVE_STRCASESTR\nHAVE_STRSEP\nHAVE_STRPBRK\nHAVE_DECL_STRNLEN\nHAVE_DECL_STRNDUP\nHAVE_DECL_STRDUP\nHAVE_STRCHRNUL\nHAVE_STPNCPY\nHAVE_STPCPY\nHAVE_RAWMEMCHR\nHAVE_DECL_MEMRCHR\nHAVE_MEMPCPY\nHAVE_DECL_MEMMEM\nHAVE_MEMCHR\nHAVE_FFSLL\nHAVE_FFSL\nHAVE_MBSLEN\nGNULIB_STRVERSCMP\nGNULIB_STRSIGNAL\nGNULIB_STRERROR_R\nGNULIB_STRERROR\nGNULIB_MBSTOK_R\nGNULIB_MBSSEP\nGNULIB_MBSSPN\nGNULIB_MBSPBRK\nGNULIB_MBSCSPN\nGNULIB_MBSCASESTR\nGNULIB_MBSPCASECMP\nGNULIB_MBSNCASECMP\nGNULIB_MBSCASECMP\nGNULIB_MBSSTR\nGNULIB_MBSRCHR\nGNULIB_MBSCHR\nGNULIB_MBSNLEN\nGNULIB_MBSLEN\nGNULIB_STRTOK_R\nGNULIB_STRCASESTR\nGNULIB_STRSTR\nGNULIB_STRSEP\nGNULIB_STRPBRK\nGNULIB_STRNLEN\nGNULIB_STRNDUP\nGNULIB_STRNCAT\nGNULIB_STRDUP\nGNULIB_STRCHRNUL\nGNULIB_STPNCPY\nGNULIB_STPCPY\nGNULIB_RAWMEMCHR\nGNULIB_MEMRCHR\nGNULIB_MEMPCPY\nGNULIB_MEMMEM\nGNULIB_MEMCHR\nGNULIB_FFSLL\nGNULIB_FFSL\nNEXT_AS_FIRST_DIRECTIVE_STDLIB_H\nNEXT_STDLIB_H\nNEXT_AS_FIRST_DIRECTIVE_STDIO_H\nNEXT_STDIO_H\nGL_GENERATE_STDINT_H_FALSE\nGL_GENERATE_STDINT_H_TRUE\nSTDINT_H\nHAVE_SYS_INTTYPES_H\nHAVE_SYS_BITYPES_H\nHAVE_C99_STDINT_H\nWINT_T_SUFFIX\nWCHAR_T_SUFFIX\nSIG_ATOMIC_T_SUFFIX\nSIZE_T_SUFFIX\nPTRDIFF_T_SUFFIX\nHAVE_SIGNED_WINT_T\nHAVE_SIGNED_WCHAR_T\nHAVE_SIGNED_SIG_ATOMIC_T\nBITSIZEOF_WINT_T\nBITSIZEOF_WCHAR_T\nBITSIZEOF_SIG_ATOMIC_T\nBITSIZEOF_SIZE_T\nBITSIZEOF_PTRDIFF_T\nHAVE_STDINT_H\nNEXT_AS_FIRST_DIRECTIVE_STDINT_H\nNEXT_STDINT_H\nHAVE_SYS_TYPES_H\nHAVE_INTTYPES_H\nHAVE_WCHAR_H\nHAVE_UNSIGNED_LONG_LONG_INT\nHAVE_LONG_LONG_INT\nGNULIB_OVERRIDES_WINT_T\nNEXT_AS_FIRST_DIRECTIVE_STDDEF_H\nNEXT_STDDEF_H\nGL_GENERATE_STDDEF_H_FALSE\nGL_GENERATE_STDDEF_H_TRUE\nSTDDEF_H\nHAVE_MAX_ALIGN_T\nREPLACE_NULL\nHAVE__BOOL\nGL_GENERATE_STDBOOL_H_FALSE\nGL_GENERATE_STDBOOL_H_TRUE\nSTDBOOL_H\nASM_SYMBOL_PREFIX\nREPLACE_VSPRINTF\nREPLACE_VSNPRINTF\nREPLACE_VPRINTF\nREPLACE_VFPRINTF\nREPLACE_VDPRINTF\nREPLACE_VASPRINTF\nREPLACE_TMPFILE\nREPLACE_STDIO_WRITE_FUNCS\nREPLACE_STDIO_READ_FUNCS\nREPLACE_SPRINTF\nREPLACE_SNPRINTF\nREPLACE_RENAMEAT\nREPLACE_RENAME\nREPLACE_REMOVE\nREPLACE_PRINTF\nREPLACE_POPEN\nREPLACE_PERROR\nREPLACE_OBSTACK_PRINTF\nREPLACE_GETLINE\nREPLACE_GETDELIM\nREPLACE_FTELLO\nREPLACE_FTELL\nREPLACE_FSEEKO\nREPLACE_FSEEK\nREPLACE_FREOPEN\nREPLACE_FPURGE\nREPLACE_FPRINTF\nREPLACE_FOPEN\nREPLACE_FFLUSH\nREPLACE_FDOPEN\nREPLACE_FCLOSE\nREPLACE_DPRINTF\nHAVE_VDPRINTF\nHAVE_VASPRINTF\nHAVE_RENAMEAT\nHAVE_POPEN\nHAVE_PCLOSE\nHAVE_FTELLO\nHAVE_FSEEKO\nHAVE_DPRINTF\nHAVE_DECL_VSNPRINTF\nHAVE_DECL_SNPRINTF\nHAVE_DECL_OBSTACK_PRINTF\nHAVE_DECL_GETLINE\nHAVE_DECL_GETDELIM\nHAVE_DECL_FTELLO\nHAVE_DECL_FSEEKO\nHAVE_DECL_FPURGE\nGNULIB_VSPRINTF_POSIX\nGNULIB_VSNPRINTF\nGNULIB_VPRINTF_POSIX\nGNULIB_VPRINTF\nGNULIB_VFPRINTF_POSIX\nGNULIB_VFPRINTF\nGNULIB_VDPRINTF\nGNULIB_VSCANF\nGNULIB_VFSCANF\nGNULIB_VASPRINTF\nGNULIB_TMPFILE\nGNULIB_STDIO_H_SIGPIPE\nGNULIB_STDIO_H_NONBLOCKING\nGNULIB_SPRINTF_POSIX\nGNULIB_SNPRINTF\nGNULIB_SCANF\nGNULIB_RENAMEAT\nGNULIB_RENAME\nGNULIB_REMOVE\nGNULIB_PUTS\nGNULIB_PUTCHAR\nGNULIB_PUTC\nGNULIB_PRINTF_POSIX\nGNULIB_PRINTF\nGNULIB_POPEN\nGNULIB_PERROR\nGNULIB_PCLOSE\nGNULIB_OBSTACK_PRINTF_POSIX\nGNULIB_OBSTACK_PRINTF\nGNULIB_GETLINE\nGNULIB_GETDELIM\nGNULIB_GETCHAR\nGNULIB_GETC\nGNULIB_FWRITE\nGNULIB_FTELLO\nGNULIB_FTELL\nGNULIB_FSEEKO\nGNULIB_FSEEK\nGNULIB_FSCANF\nGNULIB_FREOPEN\nGNULIB_FREAD\nGNULIB_FPUTS\nGNULIB_FPUTC\nGNULIB_FPURGE\nGNULIB_FPRINTF_POSIX\nGNULIB_FPRINTF\nGNULIB_FOPEN\nGNULIB_FGETS\nGNULIB_FGETC\nGNULIB_FFLUSH\nGNULIB_FDOPEN\nGNULIB_FCLOSE\nGNULIB_DPRINTF\nNEXT_AS_FIRST_DIRECTIVE_SIGNAL_H\nNEXT_SIGNAL_H\nREPLACE_RAISE\nREPLACE_PTHREAD_SIGMASK\nHAVE_SIGHANDLER_T\nHAVE_TYPE_VOLATILE_SIG_ATOMIC_T\nHAVE_STRUCT_SIGACTION_SA_SIGACTION\nHAVE_SIGACTION\nHAVE_SIGINFO_T\nHAVE_SIGSET_T\nHAVE_RAISE\nHAVE_PTHREAD_SIGMASK\nHAVE_POSIX_SIGNALBLOCKING\nGNULIB_SIGACTION\nGNULIB_SIGPROCMASK\nGNULIB_SIGNAL_H_SIGPIPE\nGNULIB_RAISE\nGNULIB_PTHREAD_SIGMASK\nAPPLE_UNIVERSAL_BUILD\nHAVE_MSVC_INVALID_PARAMETER_HANDLER\nREPLACE_UTIMENSAT\nREPLACE_STAT\nREPLACE_MKNOD\nREPLACE_MKFIFO\nREPLACE_MKDIR\nREPLACE_LSTAT\nREPLACE_FUTIMENS\nREPLACE_FSTATAT\nREPLACE_FSTAT\nHAVE_UTIMENSAT\nHAVE_MKNODAT\nHAVE_MKNOD\nHAVE_MKFIFOAT\nHAVE_MKFIFO\nHAVE_MKDIRAT\nHAVE_LSTAT\nHAVE_LCHMOD\nHAVE_FUTIMENS\nHAVE_FSTATAT\nHAVE_FCHMODAT\nGNULIB_UTIMENSAT\nGNULIB_STAT\nGNULIB_MKNODAT\nGNULIB_MKNOD\nGNULIB_MKFIFOAT\nGNULIB_MKFIFO\nGNULIB_MKDIRAT\nGNULIB_LSTAT\nGNULIB_LCHMOD\nGNULIB_FUTIMENS\nGNULIB_FSTATAT\nGNULIB_FSTAT\nGNULIB_FCHMODAT\nGL_GENERATE_LIMITS_H_FALSE\nGL_GENERATE_LIMITS_H_TRUE\nLIMITS_H\nNEXT_AS_FIRST_DIRECTIVE_LIMITS_H\nNEXT_LIMITS_H\nHAVE_WINSOCK2_H\nNEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H\nNEXT_SYS_TIME_H\nREPLACE_STRUCT_TIMEVAL\nREPLACE_GETTIMEOFDAY\nHAVE_TIMEZONE_T\nHAVE_SYS_TIME_H\nHAVE_STRUCT_TIMEVAL\nHAVE_GETTIMEOFDAY\nGNULIB_GETTIMEOFDAY\nNEXT_AS_FIRST_DIRECTIVE_FCNTL_H\nNEXT_FCNTL_H\nREPLACE_OPENAT\nREPLACE_OPEN\nREPLACE_FCNTL\nHAVE_OPENAT\nHAVE_FCNTL\nGNULIB_OPENAT\nGNULIB_OPEN\nGNULIB_NONBLOCKING\nGNULIB_FCNTL\nEOVERFLOW_VALUE\nEOVERFLOW_HIDDEN\nENOLINK_VALUE\nENOLINK_HIDDEN\nEMULTIHOP_VALUE\nEMULTIHOP_HIDDEN\nGL_GENERATE_ERRNO_H_FALSE\nGL_GENERATE_ERRNO_H_TRUE\nERRNO_H\nNEXT_AS_FIRST_DIRECTIVE_ERRNO_H\nNEXT_ERRNO_H\nPRAGMA_COLUMNS\nPRAGMA_SYSTEM_HEADER\nINCLUDE_NEXT_AS_FIRST_DIRECTIVE\nINCLUDE_NEXT\nUNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS\nUNISTD_H_HAVE_WINSOCK2_H\nREPLACE_WRITE\nREPLACE_USLEEP\nREPLACE_UNLINKAT\nREPLACE_UNLINK\nREPLACE_TTYNAME_R\nREPLACE_SYMLINKAT\nREPLACE_SYMLINK\nREPLACE_SLEEP\nREPLACE_RMDIR\nREPLACE_READLINKAT\nREPLACE_READLINK\nREPLACE_READ\nREPLACE_PWRITE\nREPLACE_PREAD\nREPLACE_LSEEK\nREPLACE_LINKAT\nREPLACE_LINK\nREPLACE_LCHOWN\nREPLACE_ISATTY\nREPLACE_GETPAGESIZE\nREPLACE_GETGROUPS\nREPLACE_GETLOGIN_R\nREPLACE_GETDTABLESIZE\nREPLACE_GETDOMAINNAME\nREPLACE_GETCWD\nREPLACE_FTRUNCATE\nREPLACE_FCHOWNAT\nREPLACE_DUP2\nREPLACE_DUP\nREPLACE_CLOSE\nREPLACE_CHOWN\nHAVE_SYS_PARAM_H\nHAVE_OS_H\nHAVE_DECL_TTYNAME_R\nHAVE_DECL_SETHOSTNAME\nHAVE_DECL_GETUSERSHELL\nHAVE_DECL_GETPAGESIZE\nHAVE_DECL_GETLOGIN_R\nHAVE_DECL_GETLOGIN\nHAVE_DECL_GETDOMAINNAME\nHAVE_DECL_FDATASYNC\nHAVE_DECL_FCHDIR\nHAVE_DECL_ENVIRON\nHAVE_USLEEP\nHAVE_UNLINKAT\nHAVE_SYMLINKAT\nHAVE_SYMLINK\nHAVE_SLEEP\nHAVE_SETHOSTNAME\nHAVE_READLINKAT\nHAVE_READLINK\nHAVE_PWRITE\nHAVE_PREAD\nHAVE_PIPE2\nHAVE_PIPE\nHAVE_LINKAT\nHAVE_LINK\nHAVE_LCHOWN\nHAVE_GROUP_MEMBER\nHAVE_GETPAGESIZE\nHAVE_GETLOGIN\nHAVE_GETHOSTNAME\nHAVE_GETGROUPS\nHAVE_GETDTABLESIZE\nHAVE_FTRUNCATE\nHAVE_FSYNC\nHAVE_FDATASYNC\nHAVE_FCHOWNAT\nHAVE_FCHDIR\nHAVE_FACCESSAT\nHAVE_EUIDACCESS\nHAVE_DUP3\nHAVE_DUP2\nHAVE_CHOWN\nGNULIB_WRITE\nGNULIB_USLEEP\nGNULIB_UNLINKAT\nGNULIB_UNLINK\nGNULIB_UNISTD_H_SIGPIPE\nGNULIB_UNISTD_H_NONBLOCKING\nGNULIB_TTYNAME_R\nGNULIB_SYMLINKAT\nGNULIB_SYMLINK\nGNULIB_SLEEP\nGNULIB_SETHOSTNAME\nGNULIB_RMDIR\nGNULIB_READLINKAT\nGNULIB_READLINK\nGNULIB_READ\nGNULIB_PWRITE\nGNULIB_PREAD\nGNULIB_PIPE2\nGNULIB_PIPE\nGNULIB_LSEEK\nGNULIB_LINKAT\nGNULIB_LINK\nGNULIB_LCHOWN\nGNULIB_ISATTY\nGNULIB_GROUP_MEMBER\nGNULIB_GETUSERSHELL\nGNULIB_GETPAGESIZE\nGNULIB_GETLOGIN_R\nGNULIB_GETLOGIN\nGNULIB_GETHOSTNAME\nGNULIB_GETGROUPS\nGNULIB_GETDTABLESIZE\nGNULIB_GETDOMAINNAME\nGNULIB_GETCWD\nGNULIB_FTRUNCATE\nGNULIB_FSYNC\nGNULIB_FDATASYNC\nGNULIB_FCHOWNAT\nGNULIB_FCHDIR\nGNULIB_FACCESSAT\nGNULIB_EUIDACCESS\nGNULIB_ENVIRON\nGNULIB_DUP3\nGNULIB_DUP2\nGNULIB_DUP\nGNULIB_CLOSE\nGNULIB_CHOWN\nGNULIB_CHDIR\nREPLACE_WCTOMB\nREPLACE_UNSETENV\nREPLACE_STRTOD\nREPLACE_SETENV\nREPLACE_REALPATH\nREPLACE_REALLOC\nREPLACE_RANDOM_R\nREPLACE_QSORT_R\nREPLACE_PUTENV\nREPLACE_PTSNAME_R\nREPLACE_PTSNAME\nREPLACE_MKSTEMP\nREPLACE_MBTOWC\nREPLACE_MALLOC\nREPLACE_CANONICALIZE_FILE_NAME\nREPLACE_CALLOC\nHAVE_DECL_UNSETENV\nHAVE_UNLOCKPT\nHAVE_SYS_LOADAVG_H\nHAVE_STRUCT_RANDOM_DATA\nHAVE_STRTOULL\nHAVE_STRTOLL\nHAVE_STRTOD\nHAVE_DECL_SETENV\nHAVE_SETENV\nHAVE_SECURE_GETENV\nHAVE_RPMATCH\nHAVE_REALPATH\nHAVE_RANDOM_R\nHAVE_RANDOM_H\nHAVE_RANDOM\nHAVE_QSORT_R\nHAVE_PTSNAME_R\nHAVE_PTSNAME\nHAVE_POSIX_OPENPT\nHAVE_MKSTEMPS\nHAVE_MKSTEMP\nHAVE_MKOSTEMPS\nHAVE_MKOSTEMP\nHAVE_MKDTEMP\nHAVE_GRANTPT\nHAVE_GETSUBOPT\nHAVE_DECL_GETLOADAVG\nHAVE_CANONICALIZE_FILE_NAME\nHAVE_ATOLL\nHAVE__EXIT\nGNULIB_WCTOMB\nGNULIB_UNSETENV\nGNULIB_UNLOCKPT\nGNULIB_SYSTEM_POSIX\nGNULIB_STRTOULL\nGNULIB_STRTOLL\nGNULIB_STRTOD\nGNULIB_SETENV\nGNULIB_SECURE_GETENV\nGNULIB_RPMATCH\nGNULIB_REALPATH\nGNULIB_REALLOC_POSIX\nGNULIB_RANDOM_R\nGNULIB_RANDOM\nGNULIB_QSORT_R\nGNULIB_PUTENV\nGNULIB_PTSNAME_R\nGNULIB_PTSNAME\nGNULIB_POSIX_OPENPT\nGNULIB_MKSTEMPS\nGNULIB_MKSTEMP\nGNULIB_MKOSTEMPS\nGNULIB_MKOSTEMP\nGNULIB_MKDTEMP\nGNULIB_MBTOWC\nGNULIB_MALLOC_POSIX\nGNULIB_GRANTPT\nGNULIB_GETSUBOPT\nGNULIB_GETLOADAVG\nGNULIB_CANONICALIZE_FILE_NAME\nGNULIB_CALLOC_POSIX\nGNULIB_ATOLL\nGNULIB__EXIT\nGL_GENERATE_ALLOCA_H_FALSE\nGL_GENERATE_ALLOCA_H_TRUE\nALLOCA_H\nALLOCA\nGL_COND_LIBTOOL_FALSE\nGL_COND_LIBTOOL_TRUE\nEILSEQ\nBROKEN_WCHAR_H\nUSE_MBSTATE_T\nHAVE_WCHAR_T\nICONV_CONST\nPOSUB\nLTLIBINTL\nLIBINTL\nINTLLIBS\nINTL_MACOSX_LIBS\nXGETTEXT_EXTRA_OPTIONS\nMSGMERGE\nXGETTEXT_015\nXGETTEXT\nGMSGFMT_015\nMSGFMT_015\nGMSGFMT\nMSGFMT\nGETTEXT_MACRO_VERSION\nUSE_NLS\nLTLIBICONV\nLIBICONV\nHAVE_VISIBILITY\nCFLAG_VISIBILITY\nWINDRES\nWOE32\nRC\nLT_SYS_LIBRARY_PATH\nOTOOL64\nOTOOL\nLIPO\nNMEDIT\nDSYMUTIL\nMANIFEST_TOOL\nNM\nac_ct_DUMPBIN\nDUMPBIN\nLD\nFGREP\nSED\nLIBTOOL\nOBJDUMP\nDLLTOOL\nAS\nLN_S\nLN\nCP\nUSE_EXTRA_ENCODINGS\nRELOCATABLE_STRIP\nRELOCATABLE_BUILD_DIR\nRELOCATABLE_SRC_DIR\nRELOCATABLE_CONFIG_H_DIR\nRELOCATABLE_LIBRARY_PATH\nRELOCATABLE_VIA_WRAPPER_FALSE\nRELOCATABLE_VIA_WRAPPER_TRUE\nRELOCATABLE_VIA_LD_FALSE\nRELOCATABLE_VIA_LD_TRUE\nINSTALL_PROGRAM_ENV\nRELOCATABLE_LDFLAGS\nRELOCATABLE\nRANLIB\nARFLAGS\nac_ct_AR\nAR\nEGREP\nGREP\nhost_os\nhost_vendor\nhost_cpu\nhost\nbuild_os\nbuild_vendor\nbuild_cpu\nbuild\nCPP\nam__fastdepCC_FALSE\nam__fastdepCC_TRUE\nCCDEPMODE\nam__nodep\nAMDEPBACKSLASH\nAMDEP_FALSE\nAMDEP_TRUE\nam__quote\nam__include\nDEPDIR\nOBJEXT\nEXEEXT\nac_ct_CC\nCPPFLAGS\nLDFLAGS\nCFLAGS\nCC\nAM_BACKSLASH\nAM_DEFAULT_VERBOSITY\nAM_DEFAULT_V\nAM_V\nam__untar\nam__tar\nAMTAR\nam__leading_dot\nSET_MAKE\nAWK\nmkdir_p\nMKDIR_P\nINSTALL_STRIP_PROGRAM\nSTRIP\ninstall_sh\nMAKEINFO\nAUTOHEADER\nAUTOMAKE\nAUTOCONF\nACLOCAL\nVERSION\nPACKAGE\nCYGPATH_W\nam__isrc\nINSTALL_DATA\nINSTALL_SCRIPT\nINSTALL_PROGRAM\ntarget_alias\nhost_alias\nbuild_alias\nLIBS\nECHO_T\nECHO_N\nECHO_C\nDEFS\nmandir\nlocaledir\nlibdir\npsdir\npdfdir\ndvidir\nhtmldir\ninfodir\ndocdir\noldincludedir\nincludedir\nlocalstatedir\nsharedstatedir\nsysconfdir\ndatadir\ndatarootdir\nlibexecdir\nsbindir\nbindir\nprogram_transform_name\nprefix\nexec_prefix\nPACKAGE_URL\nPACKAGE_BUGREPORT\nPACKAGE_STRING\nPACKAGE_VERSION\nPACKAGE_TARNAME\nPACKAGE_NAME\nPATH_SEPARATOR\nSHELL'\nac_subst_files=''\nac_user_opts='\nenable_option_checking\nenable_silent_rules\nenable_dependency_tracking\nenable_largefile\nwith_gnu_ld\nenable_relocatable\nenable_extra_encodings\nenable_static\nenable_shared\nwith_pic\nenable_fast_install\nwith_aix_soname\nwith_sysroot\nenable_libtool_lock\nenable_rpath\nwith_libiconv_prefix\nenable_nls\nwith_libintl_prefix\n'\n      ac_precious_vars='build_alias\nhost_alias\ntarget_alias\nCC\nCFLAGS\nLDFLAGS\nLIBS\nCPPFLAGS\nCPP\nLT_SYS_LIBRARY_PATH'\nac_subdirs_all='libcharset\npreload'\n\n# Initialize some variables set by options.\nac_init_help=\nac_init_version=false\nac_unrecognized_opts=\nac_unrecognized_sep=\n# The variables have the same names as the options, with\n# dashes changed to underlines.\ncache_file=/dev/null\nexec_prefix=NONE\nno_create=\nno_recursion=\nprefix=NONE\nprogram_prefix=NONE\nprogram_suffix=NONE\nprogram_transform_name=s,x,x,\nsilent=\nsite=\nsrcdir=\nverbose=\nx_includes=NONE\nx_libraries=NONE\n\n# Installation directory options.\n# These are left unexpanded so users can \"make install exec_prefix=/foo\"\n# and all the variables that are supposed to be based on exec_prefix\n# by default will actually change.\n# Use braces instead of parens because sh, perl, etc. also accept them.\n# (The list follows the same order as the GNU Coding Standards.)\nbindir='${exec_prefix}/bin'\nsbindir='${exec_prefix}/sbin'\nlibexecdir='${exec_prefix}/libexec'\ndatarootdir='${prefix}/share'\ndatadir='${datarootdir}'\nsysconfdir='${prefix}/etc'\nsharedstatedir='${prefix}/com'\nlocalstatedir='${prefix}/var'\nincludedir='${prefix}/include'\noldincludedir='/usr/include'\ndocdir='${datarootdir}/doc/${PACKAGE_TARNAME}'\ninfodir='${datarootdir}/info'\nhtmldir='${docdir}'\ndvidir='${docdir}'\npdfdir='${docdir}'\npsdir='${docdir}'\nlibdir='${exec_prefix}/lib'\nlocaledir='${datarootdir}/locale'\nmandir='${datarootdir}/man'\n\nac_prev=\nac_dashdash=\nfor ac_option\ndo\n  # If the previous option needs an argument, assign it.\n  if test -n \"$ac_prev\"; then\n    eval $ac_prev=\\$ac_option\n    ac_prev=\n    continue\n  fi\n\n  case $ac_option in\n  *=?*) ac_optarg=`expr \"X$ac_option\" : '[^=]*=\\(.*\\)'` ;;\n  *=)   ac_optarg= ;;\n  *)    ac_optarg=yes ;;\n  esac\n\n  # Accept the important Cygnus configure options, so we can diagnose typos.\n\n  case $ac_dashdash$ac_option in\n  --)\n    ac_dashdash=yes ;;\n\n  -bindir | --bindir | --bindi | --bind | --bin | --bi)\n    ac_prev=bindir ;;\n  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)\n    bindir=$ac_optarg ;;\n\n  -build | --build | --buil | --bui | --bu)\n    ac_prev=build_alias ;;\n  -build=* | --build=* | --buil=* | --bui=* | --bu=*)\n    build_alias=$ac_optarg ;;\n\n  -cache-file | --cache-file | --cache-fil | --cache-fi \\\n  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)\n    ac_prev=cache_file ;;\n  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \\\n  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)\n    cache_file=$ac_optarg ;;\n\n  --config-cache | -C)\n    cache_file=config.cache ;;\n\n  -datadir | --datadir | --datadi | --datad)\n    ac_prev=datadir ;;\n  -datadir=* | --datadir=* | --datadi=* | --datad=*)\n    datadir=$ac_optarg ;;\n\n  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \\\n  | --dataroo | --dataro | --datar)\n    ac_prev=datarootdir ;;\n  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \\\n  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)\n    datarootdir=$ac_optarg ;;\n\n  -disable-* | --disable-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*disable-\\(.*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid feature name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"enable_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval enable_$ac_useropt=no ;;\n\n  -docdir | --docdir | --docdi | --doc | --do)\n    ac_prev=docdir ;;\n  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)\n    docdir=$ac_optarg ;;\n\n  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)\n    ac_prev=dvidir ;;\n  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)\n    dvidir=$ac_optarg ;;\n\n  -enable-* | --enable-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*enable-\\([^=]*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid feature name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"enable_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval enable_$ac_useropt=\\$ac_optarg ;;\n\n  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \\\n  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \\\n  | --exec | --exe | --ex)\n    ac_prev=exec_prefix ;;\n  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \\\n  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \\\n  | --exec=* | --exe=* | --ex=*)\n    exec_prefix=$ac_optarg ;;\n\n  -gas | --gas | --ga | --g)\n    # Obsolete; use --with-gas.\n    with_gas=yes ;;\n\n  -help | --help | --hel | --he | -h)\n    ac_init_help=long ;;\n  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)\n    ac_init_help=recursive ;;\n  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)\n    ac_init_help=short ;;\n\n  -host | --host | --hos | --ho)\n    ac_prev=host_alias ;;\n  -host=* | --host=* | --hos=* | --ho=*)\n    host_alias=$ac_optarg ;;\n\n  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)\n    ac_prev=htmldir ;;\n  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \\\n  | --ht=*)\n    htmldir=$ac_optarg ;;\n\n  -includedir | --includedir | --includedi | --included | --include \\\n  | --includ | --inclu | --incl | --inc)\n    ac_prev=includedir ;;\n  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \\\n  | --includ=* | --inclu=* | --incl=* | --inc=*)\n    includedir=$ac_optarg ;;\n\n  -infodir | --infodir | --infodi | --infod | --info | --inf)\n    ac_prev=infodir ;;\n  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)\n    infodir=$ac_optarg ;;\n\n  -libdir | --libdir | --libdi | --libd)\n    ac_prev=libdir ;;\n  -libdir=* | --libdir=* | --libdi=* | --libd=*)\n    libdir=$ac_optarg ;;\n\n  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \\\n  | --libexe | --libex | --libe)\n    ac_prev=libexecdir ;;\n  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \\\n  | --libexe=* | --libex=* | --libe=*)\n    libexecdir=$ac_optarg ;;\n\n  -localedir | --localedir | --localedi | --localed | --locale)\n    ac_prev=localedir ;;\n  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)\n    localedir=$ac_optarg ;;\n\n  -localstatedir | --localstatedir | --localstatedi | --localstated \\\n  | --localstate | --localstat | --localsta | --localst | --locals)\n    ac_prev=localstatedir ;;\n  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \\\n  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)\n    localstatedir=$ac_optarg ;;\n\n  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)\n    ac_prev=mandir ;;\n  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)\n    mandir=$ac_optarg ;;\n\n  -nfp | --nfp | --nf)\n    # Obsolete; use --without-fp.\n    with_fp=no ;;\n\n  -no-create | --no-create | --no-creat | --no-crea | --no-cre \\\n  | --no-cr | --no-c | -n)\n    no_create=yes ;;\n\n  -no-recursion | --no-recursion | --no-recursio | --no-recursi \\\n  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)\n    no_recursion=yes ;;\n\n  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \\\n  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \\\n  | --oldin | --oldi | --old | --ol | --o)\n    ac_prev=oldincludedir ;;\n  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \\\n  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \\\n  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)\n    oldincludedir=$ac_optarg ;;\n\n  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)\n    ac_prev=prefix ;;\n  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)\n    prefix=$ac_optarg ;;\n\n  -program-prefix | --program-prefix | --program-prefi | --program-pref \\\n  | --program-pre | --program-pr | --program-p)\n    ac_prev=program_prefix ;;\n  -program-prefix=* | --program-prefix=* | --program-prefi=* \\\n  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)\n    program_prefix=$ac_optarg ;;\n\n  -program-suffix | --program-suffix | --program-suffi | --program-suff \\\n  | --program-suf | --program-su | --program-s)\n    ac_prev=program_suffix ;;\n  -program-suffix=* | --program-suffix=* | --program-suffi=* \\\n  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)\n    program_suffix=$ac_optarg ;;\n\n  -program-transform-name | --program-transform-name \\\n  | --program-transform-nam | --program-transform-na \\\n  | --program-transform-n | --program-transform- \\\n  | --program-transform | --program-transfor \\\n  | --program-transfo | --program-transf \\\n  | --program-trans | --program-tran \\\n  | --progr-tra | --program-tr | --program-t)\n    ac_prev=program_transform_name ;;\n  -program-transform-name=* | --program-transform-name=* \\\n  | --program-transform-nam=* | --program-transform-na=* \\\n  | --program-transform-n=* | --program-transform-=* \\\n  | --program-transform=* | --program-transfor=* \\\n  | --program-transfo=* | --program-transf=* \\\n  | --program-trans=* | --program-tran=* \\\n  | --progr-tra=* | --program-tr=* | --program-t=*)\n    program_transform_name=$ac_optarg ;;\n\n  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)\n    ac_prev=pdfdir ;;\n  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)\n    pdfdir=$ac_optarg ;;\n\n  -psdir | --psdir | --psdi | --psd | --ps)\n    ac_prev=psdir ;;\n  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)\n    psdir=$ac_optarg ;;\n\n  -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n  | -silent | --silent | --silen | --sile | --sil)\n    silent=yes ;;\n\n  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)\n    ac_prev=sbindir ;;\n  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \\\n  | --sbi=* | --sb=*)\n    sbindir=$ac_optarg ;;\n\n  -sharedstatedir | --sharedstatedir | --sharedstatedi \\\n  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \\\n  | --sharedst | --shareds | --shared | --share | --shar \\\n  | --sha | --sh)\n    ac_prev=sharedstatedir ;;\n  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \\\n  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \\\n  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \\\n  | --sha=* | --sh=*)\n    sharedstatedir=$ac_optarg ;;\n\n  -site | --site | --sit)\n    ac_prev=site ;;\n  -site=* | --site=* | --sit=*)\n    site=$ac_optarg ;;\n\n  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)\n    ac_prev=srcdir ;;\n  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)\n    srcdir=$ac_optarg ;;\n\n  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \\\n  | --syscon | --sysco | --sysc | --sys | --sy)\n    ac_prev=sysconfdir ;;\n  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \\\n  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)\n    sysconfdir=$ac_optarg ;;\n\n  -target | --target | --targe | --targ | --tar | --ta | --t)\n    ac_prev=target_alias ;;\n  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)\n    target_alias=$ac_optarg ;;\n\n  -v | -verbose | --verbose | --verbos | --verbo | --verb)\n    verbose=yes ;;\n\n  -version | --version | --versio | --versi | --vers | -V)\n    ac_init_version=: ;;\n\n  -with-* | --with-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*with-\\([^=]*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid package name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"with_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval with_$ac_useropt=\\$ac_optarg ;;\n\n  -without-* | --without-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*without-\\(.*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid package name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"with_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval with_$ac_useropt=no ;;\n\n  --x)\n    # Obsolete; use --with-x.\n    with_x=yes ;;\n\n  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \\\n  | --x-incl | --x-inc | --x-in | --x-i)\n    ac_prev=x_includes ;;\n  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \\\n  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)\n    x_includes=$ac_optarg ;;\n\n  -x-libraries | --x-libraries | --x-librarie | --x-librari \\\n  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)\n    ac_prev=x_libraries ;;\n  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \\\n  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)\n    x_libraries=$ac_optarg ;;\n\n  -*) as_fn_error $? \"unrecognized option: \\`$ac_option'\nTry \\`$0 --help' for more information\"\n    ;;\n\n  *=*)\n    ac_envvar=`expr \"x$ac_option\" : 'x\\([^=]*\\)='`\n    # Reject names that are not valid shell variable names.\n    case $ac_envvar in #(\n      '' | [0-9]* | *[!_$as_cr_alnum]* )\n      as_fn_error $? \"invalid variable name: \\`$ac_envvar'\" ;;\n    esac\n    eval $ac_envvar=\\$ac_optarg\n    export $ac_envvar ;;\n\n  *)\n    # FIXME: should be removed in autoconf 3.0.\n    $as_echo \"$as_me: WARNING: you should use --build, --host, --target\" >&2\n    expr \"x$ac_option\" : \".*[^-._$as_cr_alnum]\" >/dev/null &&\n      $as_echo \"$as_me: WARNING: invalid host type: $ac_option\" >&2\n    : \"${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}\"\n    ;;\n\n  esac\ndone\n\nif test -n \"$ac_prev\"; then\n  ac_option=--`echo $ac_prev | sed 's/_/-/g'`\n  as_fn_error $? \"missing argument to $ac_option\"\nfi\n\nif test -n \"$ac_unrecognized_opts\"; then\n  case $enable_option_checking in\n    no) ;;\n    fatal) as_fn_error $? \"unrecognized options: $ac_unrecognized_opts\" ;;\n    *)     $as_echo \"$as_me: WARNING: unrecognized options: $ac_unrecognized_opts\" >&2 ;;\n  esac\nfi\n\n# Check all directory arguments for consistency.\nfor ac_var in\texec_prefix prefix bindir sbindir libexecdir datarootdir \\\n\t\tdatadir sysconfdir sharedstatedir localstatedir includedir \\\n\t\toldincludedir docdir infodir htmldir dvidir pdfdir psdir \\\n\t\tlibdir localedir mandir\ndo\n  eval ac_val=\\$$ac_var\n  # Remove trailing slashes.\n  case $ac_val in\n    */ )\n      ac_val=`expr \"X$ac_val\" : 'X\\(.*[^/]\\)' \\| \"X$ac_val\" : 'X\\(.*\\)'`\n      eval $ac_var=\\$ac_val;;\n  esac\n  # Be sure to have absolute directory names.\n  case $ac_val in\n    [\\\\/$]* | ?:[\\\\/]* )  continue;;\n    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;\n  esac\n  as_fn_error $? \"expected an absolute directory name for --$ac_var: $ac_val\"\ndone\n\n# There might be people who depend on the old broken behavior: `$host'\n# used to hold the argument of --host etc.\n# FIXME: To remove some day.\nbuild=$build_alias\nhost=$host_alias\ntarget=$target_alias\n\n# FIXME: To remove some day.\nif test \"x$host_alias\" != x; then\n  if test \"x$build_alias\" = x; then\n    cross_compiling=maybe\n  elif test \"x$build_alias\" != \"x$host_alias\"; then\n    cross_compiling=yes\n  fi\nfi\n\nac_tool_prefix=\ntest -n \"$host_alias\" && ac_tool_prefix=$host_alias-\n\ntest \"$silent\" = yes && exec 6>/dev/null\n\n\nac_pwd=`pwd` && test -n \"$ac_pwd\" &&\nac_ls_di=`ls -di .` &&\nac_pwd_ls_di=`cd \"$ac_pwd\" && ls -di .` ||\n  as_fn_error $? \"working directory cannot be determined\"\ntest \"X$ac_ls_di\" = \"X$ac_pwd_ls_di\" ||\n  as_fn_error $? \"pwd does not report name of working directory\"\n\n\n# Find the source files, if location was not specified.\nif test -z \"$srcdir\"; then\n  ac_srcdir_defaulted=yes\n  # Try the directory containing this script, then the parent directory.\n  ac_confdir=`$as_dirname -- \"$as_myself\" ||\n$as_expr X\"$as_myself\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_myself\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_myself\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_myself\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_myself\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  srcdir=$ac_confdir\n  if test ! -r \"$srcdir/$ac_unique_file\"; then\n    srcdir=..\n  fi\nelse\n  ac_srcdir_defaulted=no\nfi\nif test ! -r \"$srcdir/$ac_unique_file\"; then\n  test \"$ac_srcdir_defaulted\" = yes && srcdir=\"$ac_confdir or ..\"\n  as_fn_error $? \"cannot find sources ($ac_unique_file) in $srcdir\"\nfi\nac_msg=\"sources are in $srcdir, but \\`cd $srcdir' does not work\"\nac_abs_confdir=`(\n\tcd \"$srcdir\" && test -r \"./$ac_unique_file\" || as_fn_error $? \"$ac_msg\"\n\tpwd)`\n# When building in place, set srcdir=.\nif test \"$ac_abs_confdir\" = \"$ac_pwd\"; then\n  srcdir=.\nfi\n# Remove unnecessary trailing slashes from srcdir.\n# Double slashes in file names in object file debugging info\n# mess up M-x gdb in Emacs.\ncase $srcdir in\n*/) srcdir=`expr \"X$srcdir\" : 'X\\(.*[^/]\\)' \\| \"X$srcdir\" : 'X\\(.*\\)'`;;\nesac\nfor ac_var in $ac_precious_vars; do\n  eval ac_env_${ac_var}_set=\\${${ac_var}+set}\n  eval ac_env_${ac_var}_value=\\$${ac_var}\n  eval ac_cv_env_${ac_var}_set=\\${${ac_var}+set}\n  eval ac_cv_env_${ac_var}_value=\\$${ac_var}\ndone\n\n#\n# Report the --help message.\n#\nif test \"$ac_init_help\" = \"long\"; then\n  # Omit some internal or obsolete options to make the list less imposing.\n  # This message is too long to be a string in the A/UX 3.1 sh.\n  cat <<_ACEOF\n\\`configure' configures libiconv 1.15 to adapt to many kinds of systems.\n\nUsage: $0 [OPTION]... [VAR=VALUE]...\n\nTo assign environment variables (e.g., CC, CFLAGS...), specify them as\nVAR=VALUE.  See below for descriptions of some of the useful variables.\n\nDefaults for the options are specified in brackets.\n\nConfiguration:\n  -h, --help              display this help and exit\n      --help=short        display options specific to this package\n      --help=recursive    display the short help of all the included packages\n  -V, --version           display version information and exit\n  -q, --quiet, --silent   do not print \\`checking ...' messages\n      --cache-file=FILE   cache test results in FILE [disabled]\n  -C, --config-cache      alias for \\`--cache-file=config.cache'\n  -n, --no-create         do not create output files\n      --srcdir=DIR        find the sources in DIR [configure dir or \\`..']\n\nInstallation directories:\n  --prefix=PREFIX         install architecture-independent files in PREFIX\n                          [$ac_default_prefix]\n  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX\n                          [PREFIX]\n\nBy default, \\`make install' will install all the files in\n\\`$ac_default_prefix/bin', \\`$ac_default_prefix/lib' etc.  You can specify\nan installation prefix other than \\`$ac_default_prefix' using \\`--prefix',\nfor instance \\`--prefix=\\$HOME'.\n\nFor better control, use the options below.\n\nFine tuning of the installation directories:\n  --bindir=DIR            user executables [EPREFIX/bin]\n  --sbindir=DIR           system admin executables [EPREFIX/sbin]\n  --libexecdir=DIR        program executables [EPREFIX/libexec]\n  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]\n  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]\n  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]\n  --libdir=DIR            object code libraries [EPREFIX/lib]\n  --includedir=DIR        C header files [PREFIX/include]\n  --oldincludedir=DIR     C header files for non-gcc [/usr/include]\n  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]\n  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]\n  --infodir=DIR           info documentation [DATAROOTDIR/info]\n  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]\n  --mandir=DIR            man documentation [DATAROOTDIR/man]\n  --docdir=DIR            documentation root [DATAROOTDIR/doc/libiconv]\n  --htmldir=DIR           html documentation [DOCDIR]\n  --dvidir=DIR            dvi documentation [DOCDIR]\n  --pdfdir=DIR            pdf documentation [DOCDIR]\n  --psdir=DIR             ps documentation [DOCDIR]\n_ACEOF\n\n  cat <<\\_ACEOF\n\nProgram names:\n  --program-prefix=PREFIX            prepend PREFIX to installed program names\n  --program-suffix=SUFFIX            append SUFFIX to installed program names\n  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names\n\nSystem types:\n  --build=BUILD     configure for building on BUILD [guessed]\n  --host=HOST       cross-compile to build programs to run on HOST [BUILD]\n_ACEOF\nfi\n\nif test -n \"$ac_init_help\"; then\n  case $ac_init_help in\n     short | recursive ) echo \"Configuration of libiconv 1.15:\";;\n   esac\n  cat <<\\_ACEOF\n\nOptional Features:\n  --disable-option-checking  ignore unrecognized --enable/--with options\n  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)\n  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]\n  --enable-silent-rules   less verbose build output (undo: \"make V=1\")\n  --disable-silent-rules  verbose build output (undo: \"make V=0\")\n  --enable-dependency-tracking\n                          do not reject slow dependency extractors\n  --disable-dependency-tracking\n                          speeds up one-time build\n  --disable-largefile     omit support for large files\n  --enable-relocatable    install a package that can be moved in the file\n                          system\n  --enable-extra-encodings\n                          add support for a few rarely used encodings\n  --enable-static[=PKGS]  build static libraries [default=no]\n  --enable-shared[=PKGS]  build shared libraries [default=yes]\n  --enable-fast-install[=PKGS]\n                          optimize for fast installation [default=yes]\n  --disable-libtool-lock  avoid locking (might break parallel builds)\n  --disable-rpath         do not hardcode runtime library paths\n  --disable-nls           do not use Native Language Support\n\nOptional Packages:\n  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]\n  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)\n  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]\n  --with-pic[=PKGS]       try to use only PIC/non-PIC objects [default=use\n                          both]\n  --with-aix-soname=aix|svr4|both\n                          shared library versioning (aka \"SONAME\") variant to\n                          provide on AIX, [default=aix].\n  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]\n  --with-sysroot[=DIR]    Search for dependent libraries within DIR (or the\n                          compiler's sysroot if not specified).\n  --with-libiconv-prefix[=DIR]  search for libiconv in DIR/include and DIR/lib\n  --without-libiconv-prefix     don't search for libiconv in includedir and libdir\n  --with-libintl-prefix[=DIR]  search for libintl in DIR/include and DIR/lib\n  --without-libintl-prefix     don't search for libintl in includedir and libdir\n\nSome influential environment variables:\n  CC          C compiler command\n  CFLAGS      C compiler flags\n  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a\n              nonstandard directory <lib dir>\n  LIBS        libraries to pass to the linker, e.g. -l<library>\n  CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if\n              you have headers in a nonstandard directory <include dir>\n  CPP         C preprocessor\n  LT_SYS_LIBRARY_PATH\n              User-defined run-time library search path.\n\nUse these variables to override the choices made by `configure' or to help\nit to find libraries and programs with nonstandard names/locations.\n\nReport bugs to the package provider.\n_ACEOF\nac_status=$?\nfi\n\nif test \"$ac_init_help\" = \"recursive\"; then\n  # If there are subdirs, report their specific --help.\n  for ac_dir in : $ac_subdirs_all; do test \"x$ac_dir\" = x: && continue\n    test -d \"$ac_dir\" ||\n      { cd \"$srcdir\" && ac_pwd=`pwd` && srcdir=. && test -d \"$ac_dir\"; } ||\n      continue\n    ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`$as_echo \"$ac_dir\" | sed 's|^\\.[\\\\/]||'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`$as_echo \"$ac_dir_suffix\" | sed 's|/[^\\\\/]*|/..|g;s|/||'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n    cd \"$ac_dir\" || { ac_status=$?; continue; }\n    # Check for guested configure.\n    if test -f \"$ac_srcdir/configure.gnu\"; then\n      echo &&\n      $SHELL \"$ac_srcdir/configure.gnu\" --help=recursive\n    elif test -f \"$ac_srcdir/configure\"; then\n      echo &&\n      $SHELL \"$ac_srcdir/configure\" --help=recursive\n    else\n      $as_echo \"$as_me: WARNING: no configuration information is in $ac_dir\" >&2\n    fi || ac_status=$?\n    cd \"$ac_pwd\" || { ac_status=$?; break; }\n  done\nfi\n\ntest -n \"$ac_init_help\" && exit $ac_status\nif $ac_init_version; then\n  cat <<\\_ACEOF\nlibiconv configure 1.15\ngenerated by GNU Autoconf 2.69\n\nCopyright (C) 2012 Free Software Foundation, Inc.\nThis configure script is free software; the Free Software Foundation\ngives unlimited permission to copy, distribute and modify it.\n_ACEOF\n  exit\nfi\n\n## ------------------------ ##\n## Autoconf initialization. ##\n## ------------------------ ##\n\n# ac_fn_c_try_compile LINENO\n# --------------------------\n# Try to compile conftest.$ac_ext, and return whether this succeeded.\nac_fn_c_try_compile ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  rm -f conftest.$ac_objext\n  if { { ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_compile\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    grep -v '^ *+' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n    mv -f conftest.er1 conftest.err\n  fi\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_retval=1\nfi\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_compile\n\n# ac_fn_c_try_cpp LINENO\n# ----------------------\n# Try to preprocess conftest.$ac_ext, and return whether this succeeded.\nac_fn_c_try_cpp ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  if { { ac_try=\"$ac_cpp conftest.$ac_ext\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_cpp conftest.$ac_ext\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    grep -v '^ *+' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n    mv -f conftest.er1 conftest.err\n  fi\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } > conftest.i && {\n\t test -z \"$ac_c_preproc_warn_flag$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       }; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n    ac_retval=1\nfi\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_cpp\n\n# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES\n# -------------------------------------------------------\n# Tests whether HEADER exists, giving a warning if it cannot be compiled using\n# the include files in INCLUDES and setting the cache variable VAR\n# accordingly.\nac_fn_c_check_header_mongrel ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  if eval \\${$3+:} false; then :\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\nelse\n  # Is the header compilable?\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking $2 usability\" >&5\n$as_echo_n \"checking $2 usability... \" >&6; }\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\n#include <$2>\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_header_compiler=yes\nelse\n  ac_header_compiler=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler\" >&5\n$as_echo \"$ac_header_compiler\" >&6; }\n\n# Is the header present?\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking $2 presence\" >&5\n$as_echo_n \"checking $2 presence... \" >&6; }\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <$2>\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n  ac_header_preproc=yes\nelse\n  ac_header_preproc=no\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc\" >&5\n$as_echo \"$ac_header_preproc\" >&6; }\n\n# So?  What about this header?\ncase $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((\n  yes:no: )\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!\" >&5\n$as_echo \"$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result\" >&5\n$as_echo \"$as_me: WARNING: $2: proceeding with the compiler's result\" >&2;}\n    ;;\n  no:yes:* )\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled\" >&5\n$as_echo \"$as_me: WARNING: $2: present but cannot be compiled\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2:     check for missing prerequisite headers?\" >&5\n$as_echo \"$as_me: WARNING: $2:     check for missing prerequisite headers?\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation\" >&5\n$as_echo \"$as_me: WARNING: $2: see the Autoconf documentation\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2:     section \\\"Present But Cannot Be Compiled\\\"\" >&5\n$as_echo \"$as_me: WARNING: $2:     section \\\"Present But Cannot Be Compiled\\\"\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result\" >&5\n$as_echo \"$as_me: WARNING: $2: proceeding with the compiler's result\" >&2;}\n    ;;\nesac\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  eval \"$3=\\$ac_header_compiler\"\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\nfi\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n\n} # ac_fn_c_check_header_mongrel\n\n# ac_fn_c_try_run LINENO\n# ----------------------\n# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes\n# that executables *can* be run.\nac_fn_c_try_run ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  if { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'\n  { { case \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_try\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; }; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: program exited with status $ac_status\" >&5\n       $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n       ac_retval=$ac_status\nfi\n  rm -rf conftest.dSYM conftest_ipa8_conftest.oo\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_run\n\n# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES\n# -------------------------------------------------------\n# Tests whether HEADER exists and can be compiled using the include files in\n# INCLUDES, setting the cache variable VAR accordingly.\nac_fn_c_check_header_compile ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\n#include <$2>\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$3=yes\"\nelse\n  eval \"$3=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n\n} # ac_fn_c_check_header_compile\n\n# ac_fn_c_try_link LINENO\n# -----------------------\n# Try to link conftest.$ac_ext, and return whether this succeeded.\nac_fn_c_try_link ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  rm -f conftest.$ac_objext conftest$ac_exeext\n  if { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    grep -v '^ *+' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n    mv -f conftest.er1 conftest.err\n  fi\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext && {\n\t test \"$cross_compiling\" = yes ||\n\t test -x conftest$ac_exeext\n       }; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_retval=1\nfi\n  # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information\n  # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would\n  # interfere with the next link command; also delete a directory that is\n  # left behind by Apple's compiler.  We do this before executing the actions.\n  rm -rf conftest.dSYM conftest_ipa8_conftest.oo\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_link\n\n# ac_fn_c_check_func LINENO FUNC VAR\n# ----------------------------------\n# Tests whether FUNC exists, setting the cache variable VAR accordingly\nac_fn_c_check_func ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n/* Define $2 to an innocuous variant, in case <limits.h> declares $2.\n   For example, HP-UX 11i <limits.h> declares gettimeofday.  */\n#define $2 innocuous_$2\n\n/* System header to define __stub macros and hopefully few prototypes,\n    which can conflict with char $2 (); below.\n    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n    <limits.h> exists even on freestanding compilers.  */\n\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\n#undef $2\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar $2 ();\n/* The GNU C library defines this for functions which it implements\n    to always fail with ENOSYS.  Some functions are actually named\n    something starting with __ and the normal name is an alias.  */\n#if defined __stub_$2 || defined __stub___$2\nchoke me\n#endif\n\nint\nmain ()\n{\nreturn $2 ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  eval \"$3=yes\"\nelse\n  eval \"$3=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n\n} # ac_fn_c_check_func\n\n# ac_fn_c_compute_int LINENO EXPR VAR INCLUDES\n# --------------------------------------------\n# Tries to find the compile-time value of EXPR in a program that includes\n# INCLUDES, setting VAR accordingly. Returns whether the value could be\n# computed\nac_fn_c_compute_int ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  if test \"$cross_compiling\" = yes; then\n    # Depending upon the size, compute the lo and hi bounds.\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\nint\nmain ()\n{\nstatic int test_array [1 - 2 * !(($2) >= 0)];\ntest_array [0] = 0;\nreturn test_array [0];\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_lo=0 ac_mid=0\n  while :; do\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\nint\nmain ()\n{\nstatic int test_array [1 - 2 * !(($2) <= $ac_mid)];\ntest_array [0] = 0;\nreturn test_array [0];\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_hi=$ac_mid; break\nelse\n  as_fn_arith $ac_mid + 1 && ac_lo=$as_val\n\t\t\tif test $ac_lo -le $ac_mid; then\n\t\t\t  ac_lo= ac_hi=\n\t\t\t  break\n\t\t\tfi\n\t\t\tas_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n  done\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\nint\nmain ()\n{\nstatic int test_array [1 - 2 * !(($2) < 0)];\ntest_array [0] = 0;\nreturn test_array [0];\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_hi=-1 ac_mid=-1\n  while :; do\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\nint\nmain ()\n{\nstatic int test_array [1 - 2 * !(($2) >= $ac_mid)];\ntest_array [0] = 0;\nreturn test_array [0];\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_lo=$ac_mid; break\nelse\n  as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val\n\t\t\tif test $ac_mid -le $ac_hi; then\n\t\t\t  ac_lo= ac_hi=\n\t\t\t  break\n\t\t\tfi\n\t\t\tas_fn_arith 2 '*' $ac_mid && ac_mid=$as_val\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n  done\nelse\n  ac_lo= ac_hi=\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n# Binary search between lo and hi bounds.\nwhile test \"x$ac_lo\" != \"x$ac_hi\"; do\n  as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\nint\nmain ()\n{\nstatic int test_array [1 - 2 * !(($2) <= $ac_mid)];\ntest_array [0] = 0;\nreturn test_array [0];\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_hi=$ac_mid\nelse\n  as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\ndone\ncase $ac_lo in #((\n?*) eval \"$3=\\$ac_lo\"; ac_retval=0 ;;\n'') ac_retval=1 ;;\nesac\n  else\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\nstatic long int longval () { return $2; }\nstatic unsigned long int ulongval () { return $2; }\n#include <stdio.h>\n#include <stdlib.h>\nint\nmain ()\n{\n\n  FILE *f = fopen (\"conftest.val\", \"w\");\n  if (! f)\n    return 1;\n  if (($2) < 0)\n    {\n      long int i = longval ();\n      if (i != ($2))\n\treturn 1;\n      fprintf (f, \"%ld\", i);\n    }\n  else\n    {\n      unsigned long int i = ulongval ();\n      if (i != ($2))\n\treturn 1;\n      fprintf (f, \"%lu\", i);\n    }\n  /* Do not output a trailing newline, as this causes \\r\\n confusion\n     on some platforms.  */\n  return ferror (f) || fclose (f) != 0;\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  echo >>conftest.val; read $3 <conftest.val; ac_retval=0\nelse\n  ac_retval=1\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nrm -f conftest.val\n\n  fi\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_compute_int\n\n# ac_fn_c_check_type LINENO TYPE VAR INCLUDES\n# -------------------------------------------\n# Tests whether TYPE exists after having included INCLUDES, setting cache\n# variable VAR accordingly.\nac_fn_c_check_type ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  eval \"$3=no\"\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\nint\nmain ()\n{\nif (sizeof ($2))\n\t return 0;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\nint\nmain ()\n{\nif (sizeof (($2)))\n\t    return 0;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n\nelse\n  eval \"$3=yes\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n\n} # ac_fn_c_check_type\n\n# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES\n# ---------------------------------------------\n# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR\n# accordingly.\nac_fn_c_check_decl ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  as_decl_name=`echo $2|sed 's/ *(.*//'`\n  as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared\" >&5\n$as_echo_n \"checking whether $as_decl_name is declared... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\nint\nmain ()\n{\n#ifndef $as_decl_name\n#ifdef __cplusplus\n  (void) $as_decl_use;\n#else\n  (void) $as_decl_name;\n#endif\n#endif\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$3=yes\"\nelse\n  eval \"$3=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n\n} # ac_fn_c_check_decl\ncat >config.log <<_ACEOF\nThis file contains any messages produced by compilers while\nrunning configure, to aid debugging if configure makes a mistake.\n\nIt was created by libiconv $as_me 1.15, which was\ngenerated by GNU Autoconf 2.69.  Invocation command line was\n\n  $ $0 $@\n\n_ACEOF\nexec 5>>config.log\n{\ncat <<_ASUNAME\n## --------- ##\n## Platform. ##\n## --------- ##\n\nhostname = `(hostname || uname -n) 2>/dev/null | sed 1q`\nuname -m = `(uname -m) 2>/dev/null || echo unknown`\nuname -r = `(uname -r) 2>/dev/null || echo unknown`\nuname -s = `(uname -s) 2>/dev/null || echo unknown`\nuname -v = `(uname -v) 2>/dev/null || echo unknown`\n\n/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`\n/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`\n\n/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`\n/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`\n/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`\n/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`\n/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`\n/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`\n/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`\n\n_ASUNAME\n\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    $as_echo \"PATH: $as_dir\"\n  done\nIFS=$as_save_IFS\n\n} >&5\n\ncat >&5 <<_ACEOF\n\n\n## ----------- ##\n## Core tests. ##\n## ----------- ##\n\n_ACEOF\n\n\n# Keep a trace of the command line.\n# Strip out --no-create and --no-recursion so they do not pile up.\n# Strip out --silent because we don't want to record it for future runs.\n# Also quote any args containing shell meta-characters.\n# Make two passes to allow for proper duplicate-argument suppression.\nac_configure_args=\nac_configure_args0=\nac_configure_args1=\nac_must_keep_next=false\nfor ac_pass in 1 2\ndo\n  for ac_arg\n  do\n    case $ac_arg in\n    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;\n    -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n    | -silent | --silent | --silen | --sile | --sil)\n      continue ;;\n    *\\'*)\n      ac_arg=`$as_echo \"$ac_arg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    esac\n    case $ac_pass in\n    1) as_fn_append ac_configure_args0 \" '$ac_arg'\" ;;\n    2)\n      as_fn_append ac_configure_args1 \" '$ac_arg'\"\n      if test $ac_must_keep_next = true; then\n\tac_must_keep_next=false # Got value, back to normal.\n      else\n\tcase $ac_arg in\n\t  *=* | --config-cache | -C | -disable-* | --disable-* \\\n\t  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \\\n\t  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \\\n\t  | -with-* | --with-* | -without-* | --without-* | --x)\n\t    case \"$ac_configure_args0 \" in\n\t      \"$ac_configure_args1\"*\" '$ac_arg' \"* ) continue ;;\n\t    esac\n\t    ;;\n\t  -* ) ac_must_keep_next=true ;;\n\tesac\n      fi\n      as_fn_append ac_configure_args \" '$ac_arg'\"\n      ;;\n    esac\n  done\ndone\n{ ac_configure_args0=; unset ac_configure_args0;}\n{ ac_configure_args1=; unset ac_configure_args1;}\n\n# When interrupted or exit'd, cleanup temporary files, and complete\n# config.log.  We remove comments because anyway the quotes in there\n# would cause problems or look ugly.\n# WARNING: Use '\\'' to represent an apostrophe within the trap.\n# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.\ntrap 'exit_status=$?\n  # Save into config.log some information that might help in debugging.\n  {\n    echo\n\n    $as_echo \"## ---------------- ##\n## Cache variables. ##\n## ---------------- ##\"\n    echo\n    # The following way of writing the cache mishandles newlines in values,\n(\n  for ac_var in `(set) 2>&1 | sed -n '\\''s/^\\([a-zA-Z_][a-zA-Z0-9_]*\\)=.*/\\1/p'\\''`; do\n    eval ac_val=\\$$ac_var\n    case $ac_val in #(\n    *${as_nl}*)\n      case $ac_var in #(\n      *_cv_*) { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline\" >&5\n$as_echo \"$as_me: WARNING: cache variable $ac_var contains a newline\" >&2;} ;;\n      esac\n      case $ac_var in #(\n      _ | IFS | as_nl) ;; #(\n      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(\n      *) { eval $ac_var=; unset $ac_var;} ;;\n      esac ;;\n    esac\n  done\n  (set) 2>&1 |\n    case $as_nl`(ac_space='\\'' '\\''; set) 2>&1` in #(\n    *${as_nl}ac_space=\\ *)\n      sed -n \\\n\t\"s/'\\''/'\\''\\\\\\\\'\\'''\\''/g;\n\t  s/^\\\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\\\)=\\\\(.*\\\\)/\\\\1='\\''\\\\2'\\''/p\"\n      ;; #(\n    *)\n      sed -n \"/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p\"\n      ;;\n    esac |\n    sort\n)\n    echo\n\n    $as_echo \"## ----------------- ##\n## Output variables. ##\n## ----------------- ##\"\n    echo\n    for ac_var in $ac_subst_vars\n    do\n      eval ac_val=\\$$ac_var\n      case $ac_val in\n      *\\'\\''*) ac_val=`$as_echo \"$ac_val\" | sed \"s/'\\''/'\\''\\\\\\\\\\\\\\\\'\\'''\\''/g\"`;;\n      esac\n      $as_echo \"$ac_var='\\''$ac_val'\\''\"\n    done | sort\n    echo\n\n    if test -n \"$ac_subst_files\"; then\n      $as_echo \"## ------------------- ##\n## File substitutions. ##\n## ------------------- ##\"\n      echo\n      for ac_var in $ac_subst_files\n      do\n\teval ac_val=\\$$ac_var\n\tcase $ac_val in\n\t*\\'\\''*) ac_val=`$as_echo \"$ac_val\" | sed \"s/'\\''/'\\''\\\\\\\\\\\\\\\\'\\'''\\''/g\"`;;\n\tesac\n\t$as_echo \"$ac_var='\\''$ac_val'\\''\"\n      done | sort\n      echo\n    fi\n\n    if test -s confdefs.h; then\n      $as_echo \"## ----------- ##\n## confdefs.h. ##\n## ----------- ##\"\n      echo\n      cat confdefs.h\n      echo\n    fi\n    test \"$ac_signal\" != 0 &&\n      $as_echo \"$as_me: caught signal $ac_signal\"\n    $as_echo \"$as_me: exit $exit_status\"\n  } >&5\n  rm -f core *.core core.conftest.* &&\n    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&\n    exit $exit_status\n' 0\nfor ac_signal in 1 2 13 15; do\n  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal\ndone\nac_signal=0\n\n# confdefs.h avoids OS command line length limits that DEFS can exceed.\nrm -f -r conftest* confdefs.h\n\n$as_echo \"/* confdefs.h */\" > confdefs.h\n\n# Predefined preprocessor variables.\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_NAME \"$PACKAGE_NAME\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_VERSION \"$PACKAGE_VERSION\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_STRING \"$PACKAGE_STRING\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_URL \"$PACKAGE_URL\"\n_ACEOF\n\n\n# Let the site file select an alternate cache file if it wants to.\n# Prefer an explicitly selected file to automatically selected ones.\nac_site_file1=NONE\nac_site_file2=NONE\nif test -n \"$CONFIG_SITE\"; then\n  # We do not want a PATH search for config.site.\n  case $CONFIG_SITE in #((\n    -*)  ac_site_file1=./$CONFIG_SITE;;\n    */*) ac_site_file1=$CONFIG_SITE;;\n    *)   ac_site_file1=./$CONFIG_SITE;;\n  esac\nelif test \"x$prefix\" != xNONE; then\n  ac_site_file1=$prefix/share/config.site\n  ac_site_file2=$prefix/etc/config.site\nelse\n  ac_site_file1=$ac_default_prefix/share/config.site\n  ac_site_file2=$ac_default_prefix/etc/config.site\nfi\nfor ac_site_file in \"$ac_site_file1\" \"$ac_site_file2\"\ndo\n  test \"x$ac_site_file\" = xNONE && continue\n  if test /dev/null != \"$ac_site_file\" && test -r \"$ac_site_file\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file\" >&5\n$as_echo \"$as_me: loading site script $ac_site_file\" >&6;}\n    sed 's/^/| /' \"$ac_site_file\" >&5\n    . \"$ac_site_file\" \\\n      || { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"failed to load site script $ac_site_file\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\n  fi\ndone\n\nif test -r \"$cache_file\"; then\n  # Some versions of bash will fail to source /dev/null (special files\n  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.\n  if test /dev/null != \"$cache_file\" && test -f \"$cache_file\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: loading cache $cache_file\" >&5\n$as_echo \"$as_me: loading cache $cache_file\" >&6;}\n    case $cache_file in\n      [\\\\/]* | ?:[\\\\/]* ) . \"$cache_file\";;\n      *)                      . \"./$cache_file\";;\n    esac\n  fi\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: creating cache $cache_file\" >&5\n$as_echo \"$as_me: creating cache $cache_file\" >&6;}\n  >$cache_file\nfi\n\ngt_needs=\"$gt_needs need-ngettext\"\nas_fn_append ac_header_list \" unistd.h\"\nas_fn_append ac_func_list \" symlink\"\nas_fn_append ac_header_list \" stdlib.h\"\nas_fn_append ac_header_list \" string.h\"\nas_fn_append ac_func_list \" canonicalize_file_name\"\nas_fn_append ac_func_list \" getcwd\"\nas_fn_append ac_func_list \" readlink\"\nas_fn_append ac_func_list \" realpath\"\nas_fn_append ac_header_list \" sys/param.h\"\nas_fn_append ac_func_list \" readlinkat\"\nas_fn_append ac_func_list \" getprogname\"\nas_fn_append ac_func_list \" getexecname\"\nas_fn_append ac_header_list \" sys/time.h\"\nas_fn_append ac_header_list \" sys/socket.h\"\nas_fn_append ac_func_list \" gettimeofday\"\nas_fn_append ac_header_list \" limits.h\"\nas_fn_append ac_func_list \" lstat\"\nas_fn_append ac_func_list \" _set_invalid_parameter_handler\"\nas_fn_append ac_func_list \" setenv\"\nas_fn_append ac_header_list \" wchar.h\"\nas_fn_append ac_header_list \" stdint.h\"\nas_fn_append ac_header_list \" sys/stat.h\"\n# Check that the precious variables saved in the cache have kept the same\n# value.\nac_cache_corrupted=false\nfor ac_var in $ac_precious_vars; do\n  eval ac_old_set=\\$ac_cv_env_${ac_var}_set\n  eval ac_new_set=\\$ac_env_${ac_var}_set\n  eval ac_old_val=\\$ac_cv_env_${ac_var}_value\n  eval ac_new_val=\\$ac_env_${ac_var}_value\n  case $ac_old_set,$ac_new_set in\n    set,)\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: error: \\`$ac_var' was set to \\`$ac_old_val' in the previous run\" >&5\n$as_echo \"$as_me: error: \\`$ac_var' was set to \\`$ac_old_val' in the previous run\" >&2;}\n      ac_cache_corrupted=: ;;\n    ,set)\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: error: \\`$ac_var' was not set in the previous run\" >&5\n$as_echo \"$as_me: error: \\`$ac_var' was not set in the previous run\" >&2;}\n      ac_cache_corrupted=: ;;\n    ,);;\n    *)\n      if test \"x$ac_old_val\" != \"x$ac_new_val\"; then\n\t# differences in whitespace do not lead to failure.\n\tac_old_val_w=`echo x $ac_old_val`\n\tac_new_val_w=`echo x $ac_new_val`\n\tif test \"$ac_old_val_w\" != \"$ac_new_val_w\"; then\n\t  { $as_echo \"$as_me:${as_lineno-$LINENO}: error: \\`$ac_var' has changed since the previous run:\" >&5\n$as_echo \"$as_me: error: \\`$ac_var' has changed since the previous run:\" >&2;}\n\t  ac_cache_corrupted=:\n\telse\n\t  { $as_echo \"$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \\`$ac_var' since the previous run:\" >&5\n$as_echo \"$as_me: warning: ignoring whitespace changes in \\`$ac_var' since the previous run:\" >&2;}\n\t  eval $ac_var=\\$ac_old_val\n\tfi\n\t{ $as_echo \"$as_me:${as_lineno-$LINENO}:   former value:  \\`$ac_old_val'\" >&5\n$as_echo \"$as_me:   former value:  \\`$ac_old_val'\" >&2;}\n\t{ $as_echo \"$as_me:${as_lineno-$LINENO}:   current value: \\`$ac_new_val'\" >&5\n$as_echo \"$as_me:   current value: \\`$ac_new_val'\" >&2;}\n      fi;;\n  esac\n  # Pass precious variables to config.status.\n  if test \"$ac_new_set\" = set; then\n    case $ac_new_val in\n    *\\'*) ac_arg=$ac_var=`$as_echo \"$ac_new_val\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    *) ac_arg=$ac_var=$ac_new_val ;;\n    esac\n    case \" $ac_configure_args \" in\n      *\" '$ac_arg' \"*) ;; # Avoid dups.  Use of quotes ensures accuracy.\n      *) as_fn_append ac_configure_args \" '$ac_arg'\" ;;\n    esac\n  fi\ndone\nif $ac_cache_corrupted; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build\" >&5\n$as_echo \"$as_me: error: changes in the environment can compromise the build\" >&2;}\n  as_fn_error $? \"run \\`make distclean' and/or \\`rm $cache_file' and start over\" \"$LINENO\" 5\nfi\n## -------------------- ##\n## Main body of script. ##\n## -------------------- ##\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n\n\nac_aux_dir=\nfor ac_dir in build-aux \"$srcdir\"/build-aux; do\n  if test -f \"$ac_dir/install-sh\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/install-sh -c\"\n    break\n  elif test -f \"$ac_dir/install.sh\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/install.sh -c\"\n    break\n  elif test -f \"$ac_dir/shtool\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/shtool install -c\"\n    break\n  fi\ndone\nif test -z \"$ac_aux_dir\"; then\n  as_fn_error $? \"cannot find install-sh, install.sh, or shtool in build-aux \\\"$srcdir\\\"/build-aux\" \"$LINENO\" 5\nfi\n\n# These three variables are undocumented and unsupported,\n# and are intended to be withdrawn in a future Autoconf release.\n# They can cause serious problems if a builder's source tree is in a directory\n# whose full name contains unusual characters.\nac_config_guess=\"$SHELL $ac_aux_dir/config.guess\"  # Please don't use this var.\nac_config_sub=\"$SHELL $ac_aux_dir/config.sub\"  # Please don't use this var.\nac_configure=\"$SHELL $ac_aux_dir/configure\"  # Please don't use this var.\n\n\nam__api_version='1.15'\n\n# Find a good install program.  We prefer a C program (faster),\n# so one script is as good as another.  But avoid the broken or\n# incompatible versions:\n# SysV /etc/install, /usr/sbin/install\n# SunOS /usr/etc/install\n# IRIX /sbin/install\n# AIX /bin/install\n# AmigaOS /C/install, which installs bootblocks on floppy discs\n# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag\n# AFS /usr/afsws/bin/install, which mishandles nonexistent args\n# SVR4 /usr/ucb/install, which tries to use the nonexistent group \"staff\"\n# OS/2's system install, which has a completely different semantic\n# ./install, which can be erroneously created by make from ./install.sh.\n# Reject install programs that cannot install multiple files.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install\" >&5\n$as_echo_n \"checking for a BSD-compatible install... \" >&6; }\nif test -z \"$INSTALL\"; then\nif ${ac_cv_path_install+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    # Account for people who put trailing slashes in PATH elements.\ncase $as_dir/ in #((\n  ./ | .// | /[cC]/* | \\\n  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \\\n  ?:[\\\\/]os2[\\\\/]install[\\\\/]* | ?:[\\\\/]OS2[\\\\/]INSTALL[\\\\/]* | \\\n  /usr/ucb/* ) ;;\n  *)\n    # OSF1 and SCO ODT 3.0 have their own names for install.\n    # Don't use installbsd from OSF since it installs stuff as root\n    # by default.\n    for ac_prog in ginstall scoinst install; do\n      for ac_exec_ext in '' $ac_executable_extensions; do\n\tif as_fn_executable_p \"$as_dir/$ac_prog$ac_exec_ext\"; then\n\t  if test $ac_prog = install &&\n\t    grep dspmsg \"$as_dir/$ac_prog$ac_exec_ext\" >/dev/null 2>&1; then\n\t    # AIX install.  It has an incompatible calling convention.\n\t    :\n\t  elif test $ac_prog = install &&\n\t    grep pwplus \"$as_dir/$ac_prog$ac_exec_ext\" >/dev/null 2>&1; then\n\t    # program-specific install script used by HP pwplus--don't use.\n\t    :\n\t  else\n\t    rm -rf conftest.one conftest.two conftest.dir\n\t    echo one > conftest.one\n\t    echo two > conftest.two\n\t    mkdir conftest.dir\n\t    if \"$as_dir/$ac_prog$ac_exec_ext\" -c conftest.one conftest.two \"`pwd`/conftest.dir\" &&\n\t      test -s conftest.one && test -s conftest.two &&\n\t      test -s conftest.dir/conftest.one &&\n\t      test -s conftest.dir/conftest.two\n\t    then\n\t      ac_cv_path_install=\"$as_dir/$ac_prog$ac_exec_ext -c\"\n\t      break 3\n\t    fi\n\t  fi\n\tfi\n      done\n    done\n    ;;\nesac\n\n  done\nIFS=$as_save_IFS\n\nrm -rf conftest.one conftest.two conftest.dir\n\nfi\n  if test \"${ac_cv_path_install+set}\" = set; then\n    INSTALL=$ac_cv_path_install\n  else\n    # As a last resort, use the slow shell script.  Don't cache a\n    # value for INSTALL within a source directory, because that will\n    # break other packages using the cache if that directory is\n    # removed, or if the value is a relative name.\n    INSTALL=$ac_install_sh\n  fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $INSTALL\" >&5\n$as_echo \"$INSTALL\" >&6; }\n\n# Use test -z because SunOS4 sh mishandles braces in ${var-val}.\n# It thinks the first close brace ends the variable substitution.\ntest -z \"$INSTALL_PROGRAM\" && INSTALL_PROGRAM='${INSTALL}'\n\ntest -z \"$INSTALL_SCRIPT\" && INSTALL_SCRIPT='${INSTALL}'\n\ntest -z \"$INSTALL_DATA\" && INSTALL_DATA='${INSTALL} -m 644'\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether build environment is sane\" >&5\n$as_echo_n \"checking whether build environment is sane... \" >&6; }\n# Reject unsafe characters in $srcdir or the absolute working directory\n# name.  Accept space and tab only in the latter.\nam_lf='\n'\ncase `pwd` in\n  *[\\\\\\\"\\#\\$\\&\\'\\`$am_lf]*)\n    as_fn_error $? \"unsafe absolute working directory name\" \"$LINENO\" 5;;\nesac\ncase $srcdir in\n  *[\\\\\\\"\\#\\$\\&\\'\\`$am_lf\\ \\\t]*)\n    as_fn_error $? \"unsafe srcdir value: '$srcdir'\" \"$LINENO\" 5;;\nesac\n\n# Do 'set' in a subshell so we don't clobber the current shell's\n# arguments.  Must try -L first in case configure is actually a\n# symlink; some systems play weird games with the mod time of symlinks\n# (eg FreeBSD returns the mod time of the symlink's containing\n# directory).\nif (\n   am_has_slept=no\n   for am_try in 1 2; do\n     echo \"timestamp, slept: $am_has_slept\" > conftest.file\n     set X `ls -Lt \"$srcdir/configure\" conftest.file 2> /dev/null`\n     if test \"$*\" = \"X\"; then\n\t# -L didn't work.\n\tset X `ls -t \"$srcdir/configure\" conftest.file`\n     fi\n     if test \"$*\" != \"X $srcdir/configure conftest.file\" \\\n\t&& test \"$*\" != \"X conftest.file $srcdir/configure\"; then\n\n\t# If neither matched, then we have a broken ls.  This can happen\n\t# if, for instance, CONFIG_SHELL is bash and it inherits a\n\t# broken ls alias from the environment.  This has actually\n\t# happened.  Such a system could not be considered \"sane\".\n\tas_fn_error $? \"ls -t appears to fail.  Make sure there is not a broken\n  alias in your environment\" \"$LINENO\" 5\n     fi\n     if test \"$2\" = conftest.file || test $am_try -eq 2; then\n       break\n     fi\n     # Just in case.\n     sleep 1\n     am_has_slept=yes\n   done\n   test \"$2\" = conftest.file\n   )\nthen\n   # Ok.\n   :\nelse\n   as_fn_error $? \"newly created file is older than distributed files!\nCheck your system clock\" \"$LINENO\" 5\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\n# If we didn't sleep, we still need to ensure time stamps of config.status and\n# generated files are strictly newer.\nam_sleep_pid=\nif grep 'slept: no' conftest.file >/dev/null 2>&1; then\n  ( sleep 1 ) &\n  am_sleep_pid=$!\nfi\n\nrm -f conftest.file\n\ntest \"$program_prefix\" != NONE &&\n  program_transform_name=\"s&^&$program_prefix&;$program_transform_name\"\n# Use a double $ so make ignores it.\ntest \"$program_suffix\" != NONE &&\n  program_transform_name=\"s&\\$&$program_suffix&;$program_transform_name\"\n# Double any \\ or $.\n# By default was `s,x,x', remove it if useless.\nac_script='s/[\\\\$]/&&/g;s/;s,x,x,$//'\nprogram_transform_name=`$as_echo \"$program_transform_name\" | sed \"$ac_script\"`\n\n# Expand $ac_aux_dir to an absolute path.\nam_aux_dir=`cd \"$ac_aux_dir\" && pwd`\n\nif test x\"${MISSING+set}\" != xset; then\n  case $am_aux_dir in\n  *\\ * | *\\\t*)\n    MISSING=\"\\${SHELL} \\\"$am_aux_dir/missing\\\"\" ;;\n  *)\n    MISSING=\"\\${SHELL} $am_aux_dir/missing\" ;;\n  esac\nfi\n# Use eval to expand $SHELL\nif eval \"$MISSING --is-lightweight\"; then\n  am_missing_run=\"$MISSING \"\nelse\n  am_missing_run=\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing\" >&5\n$as_echo \"$as_me: WARNING: 'missing' script is too old or missing\" >&2;}\nfi\n\nif test x\"${install_sh+set}\" != xset; then\n  case $am_aux_dir in\n  *\\ * | *\\\t*)\n    install_sh=\"\\${SHELL} '$am_aux_dir/install-sh'\" ;;\n  *)\n    install_sh=\"\\${SHELL} $am_aux_dir/install-sh\"\n  esac\nfi\n\n# Installed binaries are usually stripped using 'strip' when the user\n# run \"make install-strip\".  However 'strip' might not be the right\n# tool to use in cross-compilation environments, therefore Automake\n# will honor the 'STRIP' environment variable to overrule this program.\nif test \"$cross_compiling\" != no; then\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}strip\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}strip; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_STRIP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$STRIP\"; then\n  ac_cv_prog_STRIP=\"$STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_STRIP=\"${ac_tool_prefix}strip\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nSTRIP=$ac_cv_prog_STRIP\nif test -n \"$STRIP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $STRIP\" >&5\n$as_echo \"$STRIP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_STRIP\"; then\n  ac_ct_STRIP=$STRIP\n  # Extract the first word of \"strip\", so it can be a program name with args.\nset dummy strip; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_STRIP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_STRIP\"; then\n  ac_cv_prog_ac_ct_STRIP=\"$ac_ct_STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_STRIP=\"strip\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP\nif test -n \"$ac_ct_STRIP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP\" >&5\n$as_echo \"$ac_ct_STRIP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_STRIP\" = x; then\n    STRIP=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    STRIP=$ac_ct_STRIP\n  fi\nelse\n  STRIP=\"$ac_cv_prog_STRIP\"\nfi\n\nfi\nINSTALL_STRIP_PROGRAM=\"\\$(install_sh) -c -s\"\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p\" >&5\n$as_echo_n \"checking for a thread-safe mkdir -p... \" >&6; }\nif test -z \"$MKDIR_P\"; then\n  if ${ac_cv_path_mkdir+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in mkdir gmkdir; do\n\t for ac_exec_ext in '' $ac_executable_extensions; do\n\t   as_fn_executable_p \"$as_dir/$ac_prog$ac_exec_ext\" || continue\n\t   case `\"$as_dir/$ac_prog$ac_exec_ext\" --version 2>&1` in #(\n\t     'mkdir (GNU coreutils) '* | \\\n\t     'mkdir (coreutils) '* | \\\n\t     'mkdir (fileutils) '4.1*)\n\t       ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext\n\t       break 3;;\n\t   esac\n\t done\n       done\n  done\nIFS=$as_save_IFS\n\nfi\n\n  test -d ./--version && rmdir ./--version\n  if test \"${ac_cv_path_mkdir+set}\" = set; then\n    MKDIR_P=\"$ac_cv_path_mkdir -p\"\n  else\n    # As a last resort, use the slow shell script.  Don't cache a\n    # value for MKDIR_P within a source directory, because that will\n    # break other packages using the cache if that directory is\n    # removed, or if the value is a relative name.\n    MKDIR_P=\"$ac_install_sh -d\"\n  fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MKDIR_P\" >&5\n$as_echo \"$MKDIR_P\" >&6; }\n\nfor ac_prog in gawk mawk nawk awk\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_AWK+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$AWK\"; then\n  ac_cv_prog_AWK=\"$AWK\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_AWK=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nAWK=$ac_cv_prog_AWK\nif test -n \"$AWK\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $AWK\" >&5\n$as_echo \"$AWK\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$AWK\" && break\ndone\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \\$(MAKE)\" >&5\n$as_echo_n \"checking whether ${MAKE-make} sets \\$(MAKE)... \" >&6; }\nset x ${MAKE-make}\nac_make=`$as_echo \"$2\" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`\nif eval \\${ac_cv_prog_make_${ac_make}_set+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat >conftest.make <<\\_ACEOF\nSHELL = /bin/sh\nall:\n\t@echo '@@@%%%=$(MAKE)=@@@%%%'\n_ACEOF\n# GNU make sometimes prints \"make[1]: Entering ...\", which would confuse us.\ncase `${MAKE-make} -f conftest.make 2>/dev/null` in\n  *@@@%%%=?*=@@@%%%*)\n    eval ac_cv_prog_make_${ac_make}_set=yes;;\n  *)\n    eval ac_cv_prog_make_${ac_make}_set=no;;\nesac\nrm -f conftest.make\nfi\nif eval test \\$ac_cv_prog_make_${ac_make}_set = yes; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\n  SET_MAKE=\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n  SET_MAKE=\"MAKE=${MAKE-make}\"\nfi\n\nrm -rf .tst 2>/dev/null\nmkdir .tst 2>/dev/null\nif test -d .tst; then\n  am__leading_dot=.\nelse\n  am__leading_dot=_\nfi\nrmdir .tst 2>/dev/null\n\n# Check whether --enable-silent-rules was given.\nif test \"${enable_silent_rules+set}\" = set; then :\n  enableval=$enable_silent_rules;\nfi\n\ncase $enable_silent_rules in # (((\n  yes) AM_DEFAULT_VERBOSITY=0;;\n   no) AM_DEFAULT_VERBOSITY=1;;\n    *) AM_DEFAULT_VERBOSITY=1;;\nesac\nam_make=${MAKE-make}\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables\" >&5\n$as_echo_n \"checking whether $am_make supports nested variables... \" >&6; }\nif ${am_cv_make_support_nested_variables+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if $as_echo 'TRUE=$(BAR$(V))\nBAR0=false\nBAR1=true\nV=1\nam__doit:\n\t@$(TRUE)\n.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then\n  am_cv_make_support_nested_variables=yes\nelse\n  am_cv_make_support_nested_variables=no\nfi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables\" >&5\n$as_echo \"$am_cv_make_support_nested_variables\" >&6; }\nif test $am_cv_make_support_nested_variables = yes; then\n    AM_V='$(V)'\n  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'\nelse\n  AM_V=$AM_DEFAULT_VERBOSITY\n  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY\nfi\nAM_BACKSLASH='\\'\n\nif test \"`cd $srcdir && pwd`\" != \"`pwd`\"; then\n  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output\n  # is not polluted with repeated \"-I.\"\n  am__isrc=' -I$(srcdir)'\n  # test to see if srcdir already configured\n  if test -f $srcdir/config.status; then\n    as_fn_error $? \"source directory already configured; run \\\"make distclean\\\" there first\" \"$LINENO\" 5\n  fi\nfi\n\n# test whether we have cygpath\nif test -z \"$CYGPATH_W\"; then\n  if (cygpath --version) >/dev/null 2>/dev/null; then\n    CYGPATH_W='cygpath -w'\n  else\n    CYGPATH_W=echo\n  fi\nfi\n\n\n# Define the identity of the package.\n PACKAGE='libiconv'\n VERSION='1.15'\n\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE \"$PACKAGE\"\n_ACEOF\n\n\ncat >>confdefs.h <<_ACEOF\n#define VERSION \"$VERSION\"\n_ACEOF\n\n# Some tools Automake needs.\n\nACLOCAL=${ACLOCAL-\"${am_missing_run}aclocal-${am__api_version}\"}\n\n\nAUTOCONF=${AUTOCONF-\"${am_missing_run}autoconf\"}\n\n\nAUTOMAKE=${AUTOMAKE-\"${am_missing_run}automake-${am__api_version}\"}\n\n\nAUTOHEADER=${AUTOHEADER-\"${am_missing_run}autoheader\"}\n\n\nMAKEINFO=${MAKEINFO-\"${am_missing_run}makeinfo\"}\n\n# For better backward compatibility.  To be removed once Automake 1.9.x\n# dies out for good.  For more background, see:\n# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>\n# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>\nmkdir_p='$(MKDIR_P)'\n\n# We need awk for the \"check\" target (and possibly the TAP driver).  The\n# system \"awk\" is bad on some platforms.\n# Always define AMTAR for backward compatibility.  Yes, it's still used\n# in the wild :-(  We should find a proper way to deprecate it ...\nAMTAR='$${TAR-tar}'\n\n\n# We'll loop over all known methods to create a tar archive until one works.\n_am_tools='gnutar  pax cpio none'\n\nam__tar='$${TAR-tar} chof - \"$$tardir\"' am__untar='$${TAR-tar} xf -'\n\n\n\n\n\n\n# POSIX will say in a future version that running \"rm -f\" with no argument\n# is OK; and we want to be able to make that assumption in our Makefile\n# recipes.  So use an aggressive probe to check that the usage we want is\n# actually supported \"in the wild\" to an acceptable degree.\n# See automake bug#10828.\n# To make any issue more visible, cause the running configure to be aborted\n# by default if the 'rm' program in use doesn't match our expectations; the\n# user can still override this though.\nif rm -f && rm -fr && rm -rf; then : OK; else\n  cat >&2 <<'END'\nOops!\n\nYour 'rm' program seems unable to run without file operands specified\non the command line, even when the '-f' option is present.  This is contrary\nto the behaviour of most rm programs out there, and not conforming with\nthe upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>\n\nPlease tell bug-automake@gnu.org about your system, including the value\nof your $PATH and any error possibly output before this message.  This\ncan help us improve future automake versions.\n\nEND\n  if test x\"$ACCEPT_INFERIOR_RM_PROGRAM\" = x\"yes\"; then\n    echo 'Configuration will proceed anyway, since you have set the' >&2\n    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to \"yes\"' >&2\n    echo >&2\n  else\n    cat >&2 <<'END'\nAborting the configuration process, to ensure you take notice of the issue.\n\nYou can download and install GNU coreutils to get an 'rm' implementation\nthat behaves properly: <http://www.gnu.org/software/coreutils/>.\n\nIf you want to complete the configuration process using your problematic\n'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM\nto \"yes\", and re-run configure.\n\nEND\n    as_fn_error $? \"Your 'rm' program is bad, sorry.\" \"$LINENO\" 5\n  fi\nfi\n\nac_config_headers=\"$ac_config_headers config.h lib/config.h\"\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \\$(MAKE)\" >&5\n$as_echo_n \"checking whether ${MAKE-make} sets \\$(MAKE)... \" >&6; }\nset x ${MAKE-make}\nac_make=`$as_echo \"$2\" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`\nif eval \\${ac_cv_prog_make_${ac_make}_set+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat >conftest.make <<\\_ACEOF\nSHELL = /bin/sh\nall:\n\t@echo '@@@%%%=$(MAKE)=@@@%%%'\n_ACEOF\n# GNU make sometimes prints \"make[1]: Entering ...\", which would confuse us.\ncase `${MAKE-make} -f conftest.make 2>/dev/null` in\n  *@@@%%%=?*=@@@%%%*)\n    eval ac_cv_prog_make_${ac_make}_set=yes;;\n  *)\n    eval ac_cv_prog_make_${ac_make}_set=no;;\nesac\nrm -f conftest.make\nfi\nif eval test \\$ac_cv_prog_make_${ac_make}_set = yes; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\n  SET_MAKE=\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n  SET_MAKE=\"MAKE=${MAKE-make}\"\nfi\n\n\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}gcc\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}gcc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_CC=\"${ac_tool_prefix}gcc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_CC\"; then\n  ac_ct_CC=$CC\n  # Extract the first word of \"gcc\", so it can be a program name with args.\nset dummy gcc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_CC\"; then\n  ac_cv_prog_ac_ct_CC=\"$ac_ct_CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_CC=\"gcc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_CC=$ac_cv_prog_ac_ct_CC\nif test -n \"$ac_ct_CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC\" >&5\n$as_echo \"$ac_ct_CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_CC\" = x; then\n    CC=\"\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    CC=$ac_ct_CC\n  fi\nelse\n  CC=\"$ac_cv_prog_CC\"\nfi\n\nif test -z \"$CC\"; then\n          if test -n \"$ac_tool_prefix\"; then\n    # Extract the first word of \"${ac_tool_prefix}cc\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}cc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_CC=\"${ac_tool_prefix}cc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  fi\nfi\nif test -z \"$CC\"; then\n  # Extract the first word of \"cc\", so it can be a program name with args.\nset dummy cc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\n  ac_prog_rejected=no\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    if test \"$as_dir/$ac_word$ac_exec_ext\" = \"/usr/ucb/cc\"; then\n       ac_prog_rejected=yes\n       continue\n     fi\n    ac_cv_prog_CC=\"cc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nif test $ac_prog_rejected = yes; then\n  # We found a bogon in the path, so make sure we never use it.\n  set dummy $ac_cv_prog_CC\n  shift\n  if test $# != 0; then\n    # We chose a different compiler from the bogus one.\n    # However, it has the same basename, so the bogon will be chosen\n    # first if we set CC to just the basename; use the full file name.\n    shift\n    ac_cv_prog_CC=\"$as_dir/$ac_word${1+' '}$@\"\n  fi\nfi\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$CC\"; then\n  if test -n \"$ac_tool_prefix\"; then\n  for ac_prog in cl.exe\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_CC=\"$ac_tool_prefix$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n    test -n \"$CC\" && break\n  done\nfi\nif test -z \"$CC\"; then\n  ac_ct_CC=$CC\n  for ac_prog in cl.exe\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_CC\"; then\n  ac_cv_prog_ac_ct_CC=\"$ac_ct_CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_CC=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_CC=$ac_cv_prog_ac_ct_CC\nif test -n \"$ac_ct_CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC\" >&5\n$as_echo \"$ac_ct_CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_CC\" && break\ndone\n\n  if test \"x$ac_ct_CC\" = x; then\n    CC=\"\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    CC=$ac_ct_CC\n  fi\nfi\n\nfi\n\n\ntest -z \"$CC\" && { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"no acceptable C compiler found in \\$PATH\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\n\n# Provide some information about the compiler.\n$as_echo \"$as_me:${as_lineno-$LINENO}: checking for C compiler version\" >&5\nset X $ac_compile\nac_compiler=$2\nfor ac_option in --version -v -V -qversion; do\n  { { ac_try=\"$ac_compiler $ac_option >&5\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_compiler $ac_option >&5\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    sed '10a\\\n... rest of stderr output deleted ...\n         10q' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n  fi\n  rm -f conftest.er1 conftest.err\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\ndone\n\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nac_clean_files_save=$ac_clean_files\nac_clean_files=\"$ac_clean_files a.out a.out.dSYM a.exe b.out\"\n# Try to create an executable without -o first, disregard a.out.\n# It will help us diagnose broken compilers, and finding out an intuition\n# of exeext.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the C compiler works\" >&5\n$as_echo_n \"checking whether the C compiler works... \" >&6; }\nac_link_default=`$as_echo \"$ac_link\" | sed 's/ -o *conftest[^ ]*//'`\n\n# The possible output files:\nac_files=\"a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*\"\n\nac_rmfiles=\nfor ac_file in $ac_files\ndo\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;\n    * ) ac_rmfiles=\"$ac_rmfiles $ac_file\";;\n  esac\ndone\nrm -f $ac_rmfiles\n\nif { { ac_try=\"$ac_link_default\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link_default\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then :\n  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.\n# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'\n# in a Makefile.  We should not override ac_cv_exeext if it was cached,\n# so that the user can short-circuit this test for compilers unknown to\n# Autoconf.\nfor ac_file in $ac_files ''\ndo\n  test -f \"$ac_file\" || continue\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )\n\t;;\n    [ab].out )\n\t# We found the default executable, but exeext='' is most\n\t# certainly right.\n\tbreak;;\n    *.* )\n\tif test \"${ac_cv_exeext+set}\" = set && test \"$ac_cv_exeext\" != no;\n\tthen :; else\n\t   ac_cv_exeext=`expr \"$ac_file\" : '[^.]*\\(\\..*\\)'`\n\tfi\n\t# We set ac_cv_exeext here because the later test for it is not\n\t# safe: cross compilers may not add the suffix if given an `-o'\n\t# argument, so we may need to know it at that point already.\n\t# Even if this section looks crufty: it has the advantage of\n\t# actually working.\n\tbreak;;\n    * )\n\tbreak;;\n  esac\ndone\ntest \"$ac_cv_exeext\" = no && ac_cv_exeext=\n\nelse\n  ac_file=''\nfi\nif test -z \"$ac_file\"; then :\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n$as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n{ { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error 77 \"C compiler cannot create executables\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name\" >&5\n$as_echo_n \"checking for C compiler default output file name... \" >&6; }\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_file\" >&5\n$as_echo \"$ac_file\" >&6; }\nac_exeext=$ac_cv_exeext\n\nrm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out\nac_clean_files=$ac_clean_files_save\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for suffix of executables\" >&5\n$as_echo_n \"checking for suffix of executables... \" >&6; }\nif { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then :\n  # If both `conftest.exe' and `conftest' are `present' (well, observable)\n# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will\n# work properly (i.e., refer to `conftest.exe'), while it won't with\n# `rm'.\nfor ac_file in conftest.exe conftest conftest.*; do\n  test -f \"$ac_file\" || continue\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;\n    *.* ) ac_cv_exeext=`expr \"$ac_file\" : '[^.]*\\(\\..*\\)'`\n\t  break;;\n    * ) break;;\n  esac\ndone\nelse\n  { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"cannot compute suffix of executables: cannot compile and link\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nfi\nrm -f conftest conftest$ac_cv_exeext\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext\" >&5\n$as_echo \"$ac_cv_exeext\" >&6; }\n\nrm -f conftest.$ac_ext\nEXEEXT=$ac_cv_exeext\nac_exeext=$EXEEXT\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdio.h>\nint\nmain ()\n{\nFILE *f = fopen (\"conftest.out\", \"w\");\n return ferror (f) || fclose (f) != 0;\n\n  ;\n  return 0;\n}\n_ACEOF\nac_clean_files=\"$ac_clean_files conftest.out\"\n# Check that the compiler produces executables we can run.  If not, either\n# the compiler is broken, or we cross compile.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling\" >&5\n$as_echo_n \"checking whether we are cross compiling... \" >&6; }\nif test \"$cross_compiling\" != yes; then\n  { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n  if { ac_try='./conftest$ac_cv_exeext'\n  { { case \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_try\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; }; then\n    cross_compiling=no\n  else\n    if test \"$cross_compiling\" = maybe; then\n\tcross_compiling=yes\n    else\n\t{ { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"cannot run C compiled programs.\nIf you meant to cross compile, use \\`--host'.\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\n    fi\n  fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $cross_compiling\" >&5\n$as_echo \"$cross_compiling\" >&6; }\n\nrm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out\nac_clean_files=$ac_clean_files_save\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for suffix of object files\" >&5\n$as_echo_n \"checking for suffix of object files... \" >&6; }\nif ${ac_cv_objext+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.o conftest.obj\nif { { ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_compile\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then :\n  for ac_file in conftest.o conftest.obj conftest.*; do\n  test -f \"$ac_file\" || continue;\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;\n    *) ac_cv_objext=`expr \"$ac_file\" : '.*\\.\\(.*\\)'`\n       break;;\n  esac\ndone\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n{ { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"cannot compute suffix of object files: cannot compile\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nfi\nrm -f conftest.$ac_cv_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext\" >&5\n$as_echo \"$ac_cv_objext\" >&6; }\nOBJEXT=$ac_cv_objext\nac_objext=$OBJEXT\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler\" >&5\n$as_echo_n \"checking whether we are using the GNU C compiler... \" >&6; }\nif ${ac_cv_c_compiler_gnu+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n#ifndef __GNUC__\n       choke me\n#endif\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_compiler_gnu=yes\nelse\n  ac_compiler_gnu=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nac_cv_c_compiler_gnu=$ac_compiler_gnu\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu\" >&5\n$as_echo \"$ac_cv_c_compiler_gnu\" >&6; }\nif test $ac_compiler_gnu = yes; then\n  GCC=yes\nelse\n  GCC=\nfi\nac_test_CFLAGS=${CFLAGS+set}\nac_save_CFLAGS=$CFLAGS\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g\" >&5\n$as_echo_n \"checking whether $CC accepts -g... \" >&6; }\nif ${ac_cv_prog_cc_g+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_save_c_werror_flag=$ac_c_werror_flag\n   ac_c_werror_flag=yes\n   ac_cv_prog_cc_g=no\n   CFLAGS=\"-g\"\n   cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_prog_cc_g=yes\nelse\n  CFLAGS=\"\"\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n\nelse\n  ac_c_werror_flag=$ac_save_c_werror_flag\n\t CFLAGS=\"-g\"\n\t cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_prog_cc_g=yes\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n   ac_c_werror_flag=$ac_save_c_werror_flag\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g\" >&5\n$as_echo \"$ac_cv_prog_cc_g\" >&6; }\nif test \"$ac_test_CFLAGS\" = set; then\n  CFLAGS=$ac_save_CFLAGS\nelif test $ac_cv_prog_cc_g = yes; then\n  if test \"$GCC\" = yes; then\n    CFLAGS=\"-g -O2\"\n  else\n    CFLAGS=\"-g\"\n  fi\nelse\n  if test \"$GCC\" = yes; then\n    CFLAGS=\"-O2\"\n  else\n    CFLAGS=\n  fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89\" >&5\n$as_echo_n \"checking for $CC option to accept ISO C89... \" >&6; }\nif ${ac_cv_prog_cc_c89+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_cv_prog_cc_c89=no\nac_save_CC=$CC\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdarg.h>\n#include <stdio.h>\nstruct stat;\n/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */\nstruct buf { int x; };\nFILE * (*rcsopen) (struct buf *, struct stat *, int);\nstatic char *e (p, i)\n     char **p;\n     int i;\n{\n  return p[i];\n}\nstatic char *f (char * (*g) (char **, int), char **p, ...)\n{\n  char *s;\n  va_list v;\n  va_start (v,p);\n  s = g (p, va_arg (v,int));\n  va_end (v);\n  return s;\n}\n\n/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has\n   function prototypes and stuff, but not '\\xHH' hex character constants.\n   These don't provoke an error unfortunately, instead are silently treated\n   as 'x'.  The following induces an error, until -std is added to get\n   proper ANSI mode.  Curiously '\\x00'!='x' always comes out true, for an\n   array size at least.  It's necessary to write '\\x00'==0 to get something\n   that's true only with -std.  */\nint osf4_cc_array ['\\x00' == 0 ? 1 : -1];\n\n/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters\n   inside strings and character constants.  */\n#define FOO(x) 'x'\nint xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];\n\nint test (int i, double x);\nstruct s1 {int (*f) (int a);};\nstruct s2 {int (*f) (double a);};\nint pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);\nint argc;\nchar **argv;\nint\nmain ()\n{\nreturn f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];\n  ;\n  return 0;\n}\n_ACEOF\nfor ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \\\n\t-Ae \"-Aa -D_HPUX_SOURCE\" \"-Xc -D__EXTENSIONS__\"\ndo\n  CC=\"$ac_save_CC $ac_arg\"\n  if ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_prog_cc_c89=$ac_arg\nfi\nrm -f core conftest.err conftest.$ac_objext\n  test \"x$ac_cv_prog_cc_c89\" != \"xno\" && break\ndone\nrm -f conftest.$ac_ext\nCC=$ac_save_CC\n\nfi\n# AC_CACHE_VAL\ncase \"x$ac_cv_prog_cc_c89\" in\n  x)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: none needed\" >&5\n$as_echo \"none needed\" >&6; } ;;\n  xno)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: unsupported\" >&5\n$as_echo \"unsupported\" >&6; } ;;\n  *)\n    CC=\"$CC $ac_cv_prog_cc_c89\"\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89\" >&5\n$as_echo \"$ac_cv_prog_cc_c89\" >&6; } ;;\nesac\nif test \"x$ac_cv_prog_cc_c89\" != xno; then :\n\nfi\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together\" >&5\n$as_echo_n \"checking whether $CC understands -c and -o together... \" >&6; }\nif ${am_cv_prog_cc_c_o+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\n  # Make sure it works both with $CC and with simple cc.\n  # Following AC_PROG_CC_C_O, we do the test twice because some\n  # compilers refuse to overwrite an existing .o file with -o,\n  # though they will create one.\n  am_cv_prog_cc_c_o=yes\n  for am_i in 1 2; do\n    if { echo \"$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext\" >&5\n   ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5\n   ac_status=$?\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   (exit $ac_status); } \\\n         && test -f conftest2.$ac_objext; then\n      : OK\n    else\n      am_cv_prog_cc_c_o=no\n      break\n    fi\n  done\n  rm -f core conftest*\n  unset am_i\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o\" >&5\n$as_echo \"$am_cv_prog_cc_c_o\" >&6; }\nif test \"$am_cv_prog_cc_c_o\" != yes; then\n   # Losing compiler, so override with the script.\n   # FIXME: It is wrong to rewrite CC.\n   # But if we don't then we get into trouble of one sort or another.\n   # A longer-term fix would be to have automake use am__CC in this case,\n   # and then we could set am__CC=\"\\$(top_srcdir)/compile \\$(CC)\"\n   CC=\"$am_aux_dir/compile $CC\"\nfi\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nDEPDIR=\"${am__leading_dot}deps\"\n\nac_config_commands=\"$ac_config_commands depfiles\"\n\n\nam_make=${MAKE-make}\ncat > confinc << 'END'\nam__doit:\n\t@echo this is the am__doit target\n.PHONY: am__doit\nEND\n# If we don't find an include directive, just comment out the code.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make\" >&5\n$as_echo_n \"checking for style of include used by $am_make... \" >&6; }\nam__include=\"#\"\nam__quote=\n_am_result=none\n# First try GNU make style include.\necho \"include confinc\" > confmf\n# Ignore all kinds of additional output from 'make'.\ncase `$am_make -s -f confmf 2> /dev/null` in #(\n*the\\ am__doit\\ target*)\n  am__include=include\n  am__quote=\n  _am_result=GNU\n  ;;\nesac\n# Now try BSD make style include.\nif test \"$am__include\" = \"#\"; then\n   echo '.include \"confinc\"' > confmf\n   case `$am_make -s -f confmf 2> /dev/null` in #(\n   *the\\ am__doit\\ target*)\n     am__include=.include\n     am__quote=\"\\\"\"\n     _am_result=BSD\n     ;;\n   esac\nfi\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $_am_result\" >&5\n$as_echo \"$_am_result\" >&6; }\nrm -f confinc confmf\n\n# Check whether --enable-dependency-tracking was given.\nif test \"${enable_dependency_tracking+set}\" = set; then :\n  enableval=$enable_dependency_tracking;\nfi\n\nif test \"x$enable_dependency_tracking\" != xno; then\n  am_depcomp=\"$ac_aux_dir/depcomp\"\n  AMDEPBACKSLASH='\\'\n  am__nodep='_no'\nfi\n if test \"x$enable_dependency_tracking\" != xno; then\n  AMDEP_TRUE=\n  AMDEP_FALSE='#'\nelse\n  AMDEP_TRUE='#'\n  AMDEP_FALSE=\nfi\n\n\n\ndepcc=\"$CC\"   am_compiler_list=\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc\" >&5\n$as_echo_n \"checking dependency style of $depcc... \" >&6; }\nif ${am_cv_CC_dependencies_compiler_type+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -z \"$AMDEP_TRUE\" && test -f \"$am_depcomp\"; then\n  # We make a subdir and do the tests there.  Otherwise we can end up\n  # making bogus files that we don't know about and never remove.  For\n  # instance it was reported that on HP-UX the gcc test will end up\n  # making a dummy file named 'D' -- because '-MD' means \"put the output\n  # in D\".\n  rm -rf conftest.dir\n  mkdir conftest.dir\n  # Copy depcomp to subdir because otherwise we won't find it if we're\n  # using a relative directory.\n  cp \"$am_depcomp\" conftest.dir\n  cd conftest.dir\n  # We will build objects and dependencies in a subdirectory because\n  # it helps to detect inapplicable dependency modes.  For instance\n  # both Tru64's cc and ICC support -MD to output dependencies as a\n  # side effect of compilation, but ICC will put the dependencies in\n  # the current directory while Tru64 will put them in the object\n  # directory.\n  mkdir sub\n\n  am_cv_CC_dependencies_compiler_type=none\n  if test \"$am_compiler_list\" = \"\"; then\n     am_compiler_list=`sed -n 's/^#*\\([a-zA-Z0-9]*\\))$/\\1/p' < ./depcomp`\n  fi\n  am__universal=false\n  case \" $depcc \" in #(\n     *\\ -arch\\ *\\ -arch\\ *) am__universal=true ;;\n     esac\n\n  for depmode in $am_compiler_list; do\n    # Setup a source with many dependencies, because some compilers\n    # like to wrap large dependency lists on column 80 (with \\), and\n    # we should not choose a depcomp mode which is confused by this.\n    #\n    # We need to recreate these files for each test, as the compiler may\n    # overwrite some of them when testing with obscure command lines.\n    # This happens at least with the AIX C compiler.\n    : > sub/conftest.c\n    for i in 1 2 3 4 5 6; do\n      echo '#include \"conftst'$i'.h\"' >> sub/conftest.c\n      # Using \": > sub/conftst$i.h\" creates only sub/conftst1.h with\n      # Solaris 10 /bin/sh.\n      echo '/* dummy */' > sub/conftst$i.h\n    done\n    echo \"${am__include} ${am__quote}sub/conftest.Po${am__quote}\" > confmf\n\n    # We check with '-c' and '-o' for the sake of the \"dashmstdout\"\n    # mode.  It turns out that the SunPro C++ compiler does not properly\n    # handle '-M -o', and we need to detect this.  Also, some Intel\n    # versions had trouble with output in subdirs.\n    am__obj=sub/conftest.${OBJEXT-o}\n    am__minus_obj=\"-o $am__obj\"\n    case $depmode in\n    gcc)\n      # This depmode causes a compiler race in universal mode.\n      test \"$am__universal\" = false || continue\n      ;;\n    nosideeffect)\n      # After this tag, mechanisms are not by side-effect, so they'll\n      # only be used when explicitly requested.\n      if test \"x$enable_dependency_tracking\" = xyes; then\n\tcontinue\n      else\n\tbreak\n      fi\n      ;;\n    msvc7 | msvc7msys | msvisualcpp | msvcmsys)\n      # This compiler won't grok '-c -o', but also, the minuso test has\n      # not run yet.  These depmodes are late enough in the game, and\n      # so weak that their functioning should not be impacted.\n      am__obj=conftest.${OBJEXT-o}\n      am__minus_obj=\n      ;;\n    none) break ;;\n    esac\n    if depmode=$depmode \\\n       source=sub/conftest.c object=$am__obj \\\n       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \\\n       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \\\n         >/dev/null 2>conftest.err &&\n       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&\n       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&\n       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&\n       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then\n      # icc doesn't choke on unknown options, it will just issue warnings\n      # or remarks (even with -Werror).  So we grep stderr for any message\n      # that says an option was ignored or not supported.\n      # When given -MP, icc 7.0 and 7.1 complain thusly:\n      #   icc: Command line warning: ignoring option '-M'; no argument required\n      # The diagnosis changed in icc 8.0:\n      #   icc: Command line remark: option '-MP' not supported\n      if (grep 'ignoring option' conftest.err ||\n          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else\n        am_cv_CC_dependencies_compiler_type=$depmode\n        break\n      fi\n    fi\n  done\n\n  cd ..\n  rm -rf conftest.dir\nelse\n  am_cv_CC_dependencies_compiler_type=none\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type\" >&5\n$as_echo \"$am_cv_CC_dependencies_compiler_type\" >&6; }\nCCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type\n\n if\n  test \"x$enable_dependency_tracking\" != xno \\\n  && test \"$am_cv_CC_dependencies_compiler_type\" = gcc3; then\n  am__fastdepCC_TRUE=\n  am__fastdepCC_FALSE='#'\nelse\n  am__fastdepCC_TRUE='#'\n  am__fastdepCC_FALSE=\nfi\n\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor\" >&5\n$as_echo_n \"checking how to run the C preprocessor... \" >&6; }\n# On Suns, sometimes $CPP names a directory.\nif test -n \"$CPP\" && test -d \"$CPP\"; then\n  CPP=\nfi\nif test -z \"$CPP\"; then\n  if ${ac_cv_prog_CPP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n      # Double quotes because CPP needs to be expanded\n    for CPP in \"$CC -E\" \"$CC -E -traditional-cpp\" \"/lib/cpp\"\n    do\n      ac_preproc_ok=false\nfor ac_c_preproc_warn_flag in '' yes\ndo\n  # Use a header file that comes with gcc, so configuring glibc\n  # with a fresh cross-compiler works.\n  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n  # <limits.h> exists even on freestanding compilers.\n  # On the NeXT, cc -E runs the code through the compiler's parser,\n  # not just through cpp. \"Syntax error\" is here to catch this case.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\t\t     Syntax error\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n\nelse\n  # Broken: fails on valid input.\ncontinue\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\n  # OK, works on sane cases.  Now check whether nonexistent headers\n  # can be detected and how.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <ac_nonexistent.h>\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n  # Broken: success on invalid input.\ncontinue\nelse\n  # Passes both tests.\nac_preproc_ok=:\nbreak\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\ndone\n# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.\nrm -f conftest.i conftest.err conftest.$ac_ext\nif $ac_preproc_ok; then :\n  break\nfi\n\n    done\n    ac_cv_prog_CPP=$CPP\n\nfi\n  CPP=$ac_cv_prog_CPP\nelse\n  ac_cv_prog_CPP=$CPP\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CPP\" >&5\n$as_echo \"$CPP\" >&6; }\nac_preproc_ok=false\nfor ac_c_preproc_warn_flag in '' yes\ndo\n  # Use a header file that comes with gcc, so configuring glibc\n  # with a fresh cross-compiler works.\n  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n  # <limits.h> exists even on freestanding compilers.\n  # On the NeXT, cc -E runs the code through the compiler's parser,\n  # not just through cpp. \"Syntax error\" is here to catch this case.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\t\t     Syntax error\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n\nelse\n  # Broken: fails on valid input.\ncontinue\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\n  # OK, works on sane cases.  Now check whether nonexistent headers\n  # can be detected and how.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <ac_nonexistent.h>\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n  # Broken: success on invalid input.\ncontinue\nelse\n  # Passes both tests.\nac_preproc_ok=:\nbreak\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\ndone\n# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.\nrm -f conftest.i conftest.err conftest.$ac_ext\nif $ac_preproc_ok; then :\n\nelse\n  { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"C preprocessor \\\"$CPP\\\" fails sanity check\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nfi\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n\n\n# Extract the first word of \"strip\", so it can be a program name with args.\nset dummy strip; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_path_STRIP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case $STRIP in\n  [\\\\/]* | ?:[\\\\/]*)\n  ac_cv_path_STRIP=\"$STRIP\" # Let the user override the test with a path.\n  ;;\n  *)\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_path_STRIP=\"$as_dir/$ac_word$ac_exec_ext\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\n  test -z \"$ac_cv_path_STRIP\" && ac_cv_path_STRIP=\":\"\n  ;;\nesac\nfi\nSTRIP=$ac_cv_path_STRIP\nif test -n \"$STRIP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $STRIP\" >&5\n$as_echo \"$STRIP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n # Installed binaries are usually stripped using 'strip' when the user\n# run \"make install-strip\".  However 'strip' might not be the right\n# tool to use in cross-compilation environments, therefore Automake\n# will honor the 'STRIP' environment variable to overrule this program.\nif test \"$cross_compiling\" != no; then\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}strip\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}strip; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_STRIP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$STRIP\"; then\n  ac_cv_prog_STRIP=\"$STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_STRIP=\"${ac_tool_prefix}strip\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nSTRIP=$ac_cv_prog_STRIP\nif test -n \"$STRIP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $STRIP\" >&5\n$as_echo \"$STRIP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_STRIP\"; then\n  ac_ct_STRIP=$STRIP\n  # Extract the first word of \"strip\", so it can be a program name with args.\nset dummy strip; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_STRIP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_STRIP\"; then\n  ac_cv_prog_ac_ct_STRIP=\"$ac_ct_STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_STRIP=\"strip\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP\nif test -n \"$ac_ct_STRIP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP\" >&5\n$as_echo \"$ac_ct_STRIP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_STRIP\" = x; then\n    STRIP=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    STRIP=$ac_ct_STRIP\n  fi\nelse\n  STRIP=\"$ac_cv_prog_STRIP\"\nfi\n\nfi\nINSTALL_STRIP_PROGRAM=\"\\$(install_sh) -c -s\"\n\n\n# Make sure we can run config.sub.\n$SHELL \"$ac_aux_dir/config.sub\" sun4 >/dev/null 2>&1 ||\n  as_fn_error $? \"cannot run $SHELL $ac_aux_dir/config.sub\" \"$LINENO\" 5\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking build system type\" >&5\n$as_echo_n \"checking build system type... \" >&6; }\nif ${ac_cv_build+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_build_alias=$build_alias\ntest \"x$ac_build_alias\" = x &&\n  ac_build_alias=`$SHELL \"$ac_aux_dir/config.guess\"`\ntest \"x$ac_build_alias\" = x &&\n  as_fn_error $? \"cannot guess build type; you must specify one\" \"$LINENO\" 5\nac_cv_build=`$SHELL \"$ac_aux_dir/config.sub\" $ac_build_alias` ||\n  as_fn_error $? \"$SHELL $ac_aux_dir/config.sub $ac_build_alias failed\" \"$LINENO\" 5\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_build\" >&5\n$as_echo \"$ac_cv_build\" >&6; }\ncase $ac_cv_build in\n*-*-*) ;;\n*) as_fn_error $? \"invalid value of canonical build\" \"$LINENO\" 5;;\nesac\nbuild=$ac_cv_build\nac_save_IFS=$IFS; IFS='-'\nset x $ac_cv_build\nshift\nbuild_cpu=$1\nbuild_vendor=$2\nshift; shift\n# Remember, the first character of IFS is used to create $*,\n# except with old shells:\nbuild_os=$*\nIFS=$ac_save_IFS\ncase $build_os in *\\ *) build_os=`echo \"$build_os\" | sed 's/ /-/g'`;; esac\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking host system type\" >&5\n$as_echo_n \"checking host system type... \" >&6; }\nif ${ac_cv_host+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test \"x$host_alias\" = x; then\n  ac_cv_host=$ac_cv_build\nelse\n  ac_cv_host=`$SHELL \"$ac_aux_dir/config.sub\" $host_alias` ||\n    as_fn_error $? \"$SHELL $ac_aux_dir/config.sub $host_alias failed\" \"$LINENO\" 5\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_host\" >&5\n$as_echo \"$ac_cv_host\" >&6; }\ncase $ac_cv_host in\n*-*-*) ;;\n*) as_fn_error $? \"invalid value of canonical host\" \"$LINENO\" 5;;\nesac\nhost=$ac_cv_host\nac_save_IFS=$IFS; IFS='-'\nset x $ac_cv_host\nshift\nhost_cpu=$1\nhost_vendor=$2\nshift; shift\n# Remember, the first character of IFS is used to create $*,\n# except with old shells:\nhost_os=$*\nIFS=$ac_save_IFS\ncase $host_os in *\\ *) host_os=`echo \"$host_os\" | sed 's/ /-/g'`;; esac\n\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e\" >&5\n$as_echo_n \"checking for grep that handles long lines and -e... \" >&6; }\nif ${ac_cv_path_GREP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -z \"$GREP\"; then\n  ac_path_GREP_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in grep ggrep; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_GREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_GREP\" || continue\n# Check for GNU ac_path_GREP and select it if it is found.\n  # Check for GNU $ac_path_GREP\ncase `\"$ac_path_GREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_GREP=\"$ac_path_GREP\" ac_path_GREP_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo 'GREP' >> \"conftest.nl\"\n    \"$ac_path_GREP\" -e 'GREP$' -e '-(cannot match)-' < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_GREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_GREP=\"$ac_path_GREP\"\n      ac_path_GREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_GREP_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_GREP\"; then\n    as_fn_error $? \"no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_GREP=$GREP\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP\" >&5\n$as_echo \"$ac_cv_path_GREP\" >&6; }\n GREP=\"$ac_cv_path_GREP\"\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for egrep\" >&5\n$as_echo_n \"checking for egrep... \" >&6; }\nif ${ac_cv_path_EGREP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1\n   then ac_cv_path_EGREP=\"$GREP -E\"\n   else\n     if test -z \"$EGREP\"; then\n  ac_path_EGREP_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in egrep; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_EGREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_EGREP\" || continue\n# Check for GNU ac_path_EGREP and select it if it is found.\n  # Check for GNU $ac_path_EGREP\ncase `\"$ac_path_EGREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_EGREP=\"$ac_path_EGREP\" ac_path_EGREP_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo 'EGREP' >> \"conftest.nl\"\n    \"$ac_path_EGREP\" 'EGREP$' < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_EGREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_EGREP=\"$ac_path_EGREP\"\n      ac_path_EGREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_EGREP_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_EGREP\"; then\n    as_fn_error $? \"no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_EGREP=$EGREP\nfi\n\n   fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP\" >&5\n$as_echo \"$ac_cv_path_EGREP\" >&6; }\n EGREP=\"$ac_cv_path_EGREP\"\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ANSI C header files\" >&5\n$as_echo_n \"checking for ANSI C header files... \" >&6; }\nif ${ac_cv_header_stdc+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdlib.h>\n#include <stdarg.h>\n#include <string.h>\n#include <float.h>\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_header_stdc=yes\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nif test $ac_cv_header_stdc = yes; then\n  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <string.h>\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"memchr\" >/dev/null 2>&1; then :\n\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f conftest*\n\nfi\n\nif test $ac_cv_header_stdc = yes; then\n  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdlib.h>\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"free\" >/dev/null 2>&1; then :\n\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f conftest*\n\nfi\n\nif test $ac_cv_header_stdc = yes; then\n  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.\n  if test \"$cross_compiling\" = yes; then :\n  :\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <ctype.h>\n#include <stdlib.h>\n#if ((' ' & 0x0FF) == 0x020)\n# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')\n# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))\n#else\n# define ISLOWER(c) \\\n\t\t   (('a' <= (c) && (c) <= 'i') \\\n\t\t     || ('j' <= (c) && (c) <= 'r') \\\n\t\t     || ('s' <= (c) && (c) <= 'z'))\n# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))\n#endif\n\n#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))\nint\nmain ()\n{\n  int i;\n  for (i = 0; i < 256; i++)\n    if (XOR (islower (i), ISLOWER (i))\n\t|| toupper (i) != TOUPPER (i))\n      return 2;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\nfi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc\" >&5\n$as_echo \"$ac_cv_header_stdc\" >&6; }\nif test $ac_cv_header_stdc = yes; then\n\n$as_echo \"#define STDC_HEADERS 1\" >>confdefs.h\n\nfi\n\n# On IRIX 5.3, sys/types and inttypes.h are conflicting.\nfor ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \\\n\t\t  inttypes.h stdint.h unistd.h\ndo :\n  as_ac_Header=`$as_echo \"ac_cv_header_$ac_header\" | $as_tr_sh`\nac_fn_c_check_header_compile \"$LINENO\" \"$ac_header\" \"$as_ac_Header\" \"$ac_includes_default\n\"\nif eval test \\\"x\\$\"$as_ac_Header\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_$ac_header\" | $as_tr_cpp` 1\n_ACEOF\n\nfi\n\ndone\n\n\n\n  ac_fn_c_check_header_mongrel \"$LINENO\" \"minix/config.h\" \"ac_cv_header_minix_config_h\" \"$ac_includes_default\"\nif test \"x$ac_cv_header_minix_config_h\" = xyes; then :\n  MINIX=yes\nelse\n  MINIX=\nfi\n\n\n  if test \"$MINIX\" = yes; then\n\n$as_echo \"#define _POSIX_SOURCE 1\" >>confdefs.h\n\n\n$as_echo \"#define _POSIX_1_SOURCE 2\" >>confdefs.h\n\n\n$as_echo \"#define _MINIX 1\" >>confdefs.h\n\n\n$as_echo \"#define _NETBSD_SOURCE 1\" >>confdefs.h\n\n  fi\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__\" >&5\n$as_echo_n \"checking whether it is safe to define __EXTENSIONS__... \" >&6; }\nif ${ac_cv_safe_to_define___extensions__+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#         define __EXTENSIONS__ 1\n          $ac_includes_default\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_safe_to_define___extensions__=yes\nelse\n  ac_cv_safe_to_define___extensions__=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__\" >&5\n$as_echo \"$ac_cv_safe_to_define___extensions__\" >&6; }\n  test $ac_cv_safe_to_define___extensions__ = yes &&\n    $as_echo \"#define __EXTENSIONS__ 1\" >>confdefs.h\n\n  $as_echo \"#define _ALL_SOURCE 1\" >>confdefs.h\n\n  $as_echo \"#define _DARWIN_C_SOURCE 1\" >>confdefs.h\n\n  $as_echo \"#define _GNU_SOURCE 1\" >>confdefs.h\n\n  $as_echo \"#define _POSIX_PTHREAD_SEMANTICS 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_IEC_60559_BFP_EXT__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_IEC_60559_DFP_EXT__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_IEC_60559_TYPES_EXT__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_LIB_EXT2__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_MATH_SPEC_FUNCS__ 1\" >>confdefs.h\n\n  $as_echo \"#define _TANDEM_SOURCE 1\" >>confdefs.h\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether _XOPEN_SOURCE should be defined\" >&5\n$as_echo_n \"checking whether _XOPEN_SOURCE should be defined... \" >&6; }\nif ${ac_cv_should_define__xopen_source+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_cv_should_define__xopen_source=no\n     cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n          #include <wchar.h>\n          mbstate_t x;\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n             #define _XOPEN_SOURCE 500\n             #include <wchar.h>\n             mbstate_t x;\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_should_define__xopen_source=yes\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_should_define__xopen_source\" >&5\n$as_echo \"$ac_cv_should_define__xopen_source\" >&6; }\n  test $ac_cv_should_define__xopen_source = yes &&\n    $as_echo \"#define _XOPEN_SOURCE 500\" >>confdefs.h\n\n\n\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for Minix Amsterdam compiler\" >&5\n$as_echo_n \"checking for Minix Amsterdam compiler... \" >&6; }\nif ${gl_cv_c_amsterdam_compiler+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#ifdef __ACK__\nAmsterdam\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"Amsterdam\" >/dev/null 2>&1; then :\n  gl_cv_c_amsterdam_compiler=yes\nelse\n  gl_cv_c_amsterdam_compiler=no\nfi\nrm -f conftest*\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_c_amsterdam_compiler\" >&5\n$as_echo \"$gl_cv_c_amsterdam_compiler\" >&6; }\n\n      if test $gl_cv_c_amsterdam_compiler = yes; then\n    if test -z \"$AR\"; then\n      AR='cc -c.a'\n    fi\n    if test -z \"$ARFLAGS\"; then\n      ARFLAGS='-o'\n    fi\n  else\n                                        if test -n \"$ac_tool_prefix\"; then\n  for ac_prog in ar lib \"link -lib\"\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_AR+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$AR\"; then\n  ac_cv_prog_AR=\"$AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_AR=\"$ac_tool_prefix$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nAR=$ac_cv_prog_AR\nif test -n \"$AR\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $AR\" >&5\n$as_echo \"$AR\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n    test -n \"$AR\" && break\n  done\nfi\nif test -z \"$AR\"; then\n  ac_ct_AR=$AR\n  for ac_prog in ar lib \"link -lib\"\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_AR+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_AR\"; then\n  ac_cv_prog_ac_ct_AR=\"$ac_ct_AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_AR=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_AR=$ac_cv_prog_ac_ct_AR\nif test -n \"$ac_ct_AR\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR\" >&5\n$as_echo \"$ac_ct_AR\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_AR\" && break\ndone\n\n  if test \"x$ac_ct_AR\" = x; then\n    AR=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    AR=$ac_ct_AR\n  fi\nfi\n\n: ${AR=ar}\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface\" >&5\n$as_echo_n \"checking the archiver ($AR) interface... \" >&6; }\nif ${am_cv_ar_interface+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n   am_cv_ar_interface=ar\n   cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\nint some_variable = 0;\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&5'\n      { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$am_ar_try\\\"\"; } >&5\n  (eval $am_ar_try) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n      if test \"$ac_status\" -eq 0; then\n        am_cv_ar_interface=ar\n      else\n        am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5'\n        { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$am_ar_try\\\"\"; } >&5\n  (eval $am_ar_try) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n        if test \"$ac_status\" -eq 0; then\n          am_cv_ar_interface=lib\n        else\n          am_cv_ar_interface=unknown\n        fi\n      fi\n      rm -f conftest.lib libconftest.a\n\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n   ac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $am_cv_ar_interface\" >&5\n$as_echo \"$am_cv_ar_interface\" >&6; }\n\ncase $am_cv_ar_interface in\nar)\n  ;;\nlib)\n  # Microsoft lib, so override with the ar-lib wrapper script.\n  # FIXME: It is wrong to rewrite AR.\n  # But if we don't then we get into trouble of one sort or another.\n  # A longer-term fix would be to have automake use am__AR in this case,\n  # and then we could set am__AR=\"$am_aux_dir/ar-lib \\$(AR)\" or something\n  # similar.\n  AR=\"$am_aux_dir/ar-lib $AR\"\n  ;;\nunknown)\n  as_fn_error $? \"could not determine $AR interface\" \"$LINENO\" 5\n  ;;\nesac\n\n  fi\n\n        if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}ar\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}ar; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_AR+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$AR\"; then\n  ac_cv_prog_AR=\"$AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_AR=\"${ac_tool_prefix}ar\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nAR=$ac_cv_prog_AR\nif test -n \"$AR\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $AR\" >&5\n$as_echo \"$AR\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_AR\"; then\n  ac_ct_AR=$AR\n  # Extract the first word of \"ar\", so it can be a program name with args.\nset dummy ar; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_AR+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_AR\"; then\n  ac_cv_prog_ac_ct_AR=\"$ac_ct_AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_AR=\"ar\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_AR=$ac_cv_prog_ac_ct_AR\nif test -n \"$ac_ct_AR\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR\" >&5\n$as_echo \"$ac_ct_AR\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_AR\" = x; then\n    AR=\"ar\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    AR=$ac_ct_AR\n  fi\nelse\n  AR=\"$ac_cv_prog_AR\"\nfi\n\n  if test -z \"$ARFLAGS\"; then\n    ARFLAGS='cr'\n  fi\n\n\n\n  if test -z \"$RANLIB\"; then\n    if test $gl_cv_c_amsterdam_compiler = yes; then\n      RANLIB=':'\n    else\n            if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}ranlib\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}ranlib; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_RANLIB+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$RANLIB\"; then\n  ac_cv_prog_RANLIB=\"$RANLIB\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_RANLIB=\"${ac_tool_prefix}ranlib\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nRANLIB=$ac_cv_prog_RANLIB\nif test -n \"$RANLIB\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $RANLIB\" >&5\n$as_echo \"$RANLIB\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_RANLIB\"; then\n  ac_ct_RANLIB=$RANLIB\n  # Extract the first word of \"ranlib\", so it can be a program name with args.\nset dummy ranlib; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_RANLIB+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_RANLIB\"; then\n  ac_cv_prog_ac_ct_RANLIB=\"$ac_ct_RANLIB\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_RANLIB=\"ranlib\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB\nif test -n \"$ac_ct_RANLIB\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB\" >&5\n$as_echo \"$ac_ct_RANLIB\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_RANLIB\" = x; then\n    RANLIB=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    RANLIB=$ac_ct_RANLIB\n  fi\nelse\n  RANLIB=\"$ac_cv_prog_RANLIB\"\nfi\n\n    fi\n  fi\n\n\n\n# Check whether --enable-largefile was given.\nif test \"${enable_largefile+set}\" = set; then :\n  enableval=$enable_largefile;\nfi\n\nif test \"$enable_largefile\" != no; then\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files\" >&5\n$as_echo_n \"checking for special C compiler options needed for large files... \" >&6; }\nif ${ac_cv_sys_largefile_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_cv_sys_largefile_CC=no\n     if test \"$GCC\" != yes; then\n       ac_save_CC=$CC\n       while :; do\n         # IRIX 6.2 and later do not support large files by default,\n         # so use the C compiler's -n32 option if that helps.\n         cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/types.h>\n /* Check that off_t can represent 2**63 - 1 correctly.\n    We can't simply define LARGE_OFF_T to be 9223372036854775807,\n    since some C++ compilers masquerading as C compilers\n    incorrectly reject 9223372036854775807.  */\n#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))\n  int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721\n                       && LARGE_OFF_T % 2147483647 == 1)\n                      ? 1 : -1];\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\n         if ac_fn_c_try_compile \"$LINENO\"; then :\n  break\nfi\nrm -f core conftest.err conftest.$ac_objext\n         CC=\"$CC -n32\"\n         if ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_sys_largefile_CC=' -n32'; break\nfi\nrm -f core conftest.err conftest.$ac_objext\n         break\n       done\n       CC=$ac_save_CC\n       rm -f conftest.$ac_ext\n    fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC\" >&5\n$as_echo \"$ac_cv_sys_largefile_CC\" >&6; }\n  if test \"$ac_cv_sys_largefile_CC\" != no; then\n    CC=$CC$ac_cv_sys_largefile_CC\n  fi\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files\" >&5\n$as_echo_n \"checking for _FILE_OFFSET_BITS value needed for large files... \" >&6; }\nif ${ac_cv_sys_file_offset_bits+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  while :; do\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/types.h>\n /* Check that off_t can represent 2**63 - 1 correctly.\n    We can't simply define LARGE_OFF_T to be 9223372036854775807,\n    since some C++ compilers masquerading as C compilers\n    incorrectly reject 9223372036854775807.  */\n#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))\n  int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721\n                       && LARGE_OFF_T % 2147483647 == 1)\n                      ? 1 : -1];\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_sys_file_offset_bits=no; break\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#define _FILE_OFFSET_BITS 64\n#include <sys/types.h>\n /* Check that off_t can represent 2**63 - 1 correctly.\n    We can't simply define LARGE_OFF_T to be 9223372036854775807,\n    since some C++ compilers masquerading as C compilers\n    incorrectly reject 9223372036854775807.  */\n#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))\n  int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721\n                       && LARGE_OFF_T % 2147483647 == 1)\n                      ? 1 : -1];\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_sys_file_offset_bits=64; break\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n  ac_cv_sys_file_offset_bits=unknown\n  break\ndone\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits\" >&5\n$as_echo \"$ac_cv_sys_file_offset_bits\" >&6; }\ncase $ac_cv_sys_file_offset_bits in #(\n  no | unknown) ;;\n  *)\ncat >>confdefs.h <<_ACEOF\n#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits\n_ACEOF\n;;\nesac\nrm -rf conftest*\n  if test $ac_cv_sys_file_offset_bits = unknown; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files\" >&5\n$as_echo_n \"checking for _LARGE_FILES value needed for large files... \" >&6; }\nif ${ac_cv_sys_large_files+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  while :; do\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/types.h>\n /* Check that off_t can represent 2**63 - 1 correctly.\n    We can't simply define LARGE_OFF_T to be 9223372036854775807,\n    since some C++ compilers masquerading as C compilers\n    incorrectly reject 9223372036854775807.  */\n#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))\n  int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721\n                       && LARGE_OFF_T % 2147483647 == 1)\n                      ? 1 : -1];\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_sys_large_files=no; break\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#define _LARGE_FILES 1\n#include <sys/types.h>\n /* Check that off_t can represent 2**63 - 1 correctly.\n    We can't simply define LARGE_OFF_T to be 9223372036854775807,\n    since some C++ compilers masquerading as C compilers\n    incorrectly reject 9223372036854775807.  */\n#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))\n  int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721\n                       && LARGE_OFF_T % 2147483647 == 1)\n                      ? 1 : -1];\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_sys_large_files=1; break\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n  ac_cv_sys_large_files=unknown\n  break\ndone\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files\" >&5\n$as_echo \"$ac_cv_sys_large_files\" >&6; }\ncase $ac_cv_sys_large_files in #(\n  no | unknown) ;;\n  *)\ncat >>confdefs.h <<_ACEOF\n#define _LARGE_FILES $ac_cv_sys_large_files\n_ACEOF\n;;\nesac\nrm -rf conftest*\n  fi\n\n\n$as_echo \"#define _DARWIN_USE_64_BIT_INODE 1\" >>confdefs.h\n\nfi\n\n\n\n  # Pre-early section.\n\n\n\n\n  # Code from module absolute-header:\n  # Code from module alloca-opt:\n  # Code from module allocator:\n  # Code from module areadlink:\n  # Code from module binary-io:\n  # Code from module canonicalize-lgpl:\n  # Code from module careadlinkat:\n  # Code from module dirname-lgpl:\n  # Code from module dosname:\n  # Code from module double-slash-root:\n  # Code from module environ:\n  # Code from module errno:\n  # Code from module error:\n  # Code from module extensions:\n  # Code from module extern-inline:\n  # Code from module fcntl-h:\n  # Code from module getprogname:\n  # Code from module gettext:\n  # Code from module gettext-h:\n  # Code from module gettimeofday:\n  # Code from module havelib:\n  # Code from module include_next:\n  # Code from module intprops:\n  # Code from module largefile:\n\n  # Code from module libiconv-misc:\n  # Code from module limits-h:\n  # Code from module lstat:\n  # Code from module malloc-posix:\n  # Code from module malloca:\n  # Code from module mbstate:\n  # Code from module msvc-inval:\n  # Code from module msvc-nothrow:\n  # Code from module multiarch:\n  # Code from module nocrash:\n  # Code from module pathmax:\n  # Code from module progname:\n  # Code from module raise:\n  # Code from module read:\n  # Code from module readlink:\n  # Code from module relocatable-prog:\n  # Code from module relocatable-prog-wrapper:\n  # Code from module safe-read:\n  # Code from module signal-h:\n  # Code from module sigpipe:\n  # Code from module sigprocmask:\n  # Code from module snippet/_Noreturn:\n  # Code from module snippet/arg-nonnull:\n  # Code from module snippet/c++defs:\n  # Code from module snippet/warn-on-use:\n  # Code from module ssize_t:\n  # Code from module stat:\n  # Code from module stdbool:\n  # Code from module stddef:\n  # Code from module stdint:\n  # Code from module stdio:\n  # Code from module stdlib:\n  # Code from module streq:\n  # Code from module strerror:\n  # Code from module strerror-override:\n  # Code from module string:\n  # Code from module sys_stat:\n  # Code from module sys_time:\n  # Code from module sys_types:\n  # Code from module time:\n  # Code from module unistd:\n  # Code from module unitypes:\n  # Code from module uniwidth/base:\n  # Code from module uniwidth/width:\n  # Code from module unlocked-io:\n  # Code from module verify:\n  # Code from module xalloc:\n  # Code from module xalloc-oversized:\n  # Code from module xreadlink:\n\n\n\n\n\n# Check whether --with-gnu-ld was given.\nif test \"${with_gnu_ld+set}\" = set; then :\n  withval=$with_gnu_ld; test \"$withval\" = no || with_gnu_ld=yes\nelse\n  with_gnu_ld=no\nfi\n\n# Prepare PATH_SEPARATOR.\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which\n  # contains only /bin. Note that ksh looks also at the FPATH variable,\n  # so we have to set that as well for the test.\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n    && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n           || PATH_SEPARATOR=';'\n       }\nfi\n\nac_prog=ld\nif test \"$GCC\" = yes; then\n  # Check if gcc -print-prog-name=ld gives a path.\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ld used by $CC\" >&5\n$as_echo_n \"checking for ld used by $CC... \" >&6; }\n  case $host in\n  *-*-mingw*)\n    # gcc leaves a trailing carriage return which upsets mingw\n    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\\015'` ;;\n  *)\n    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;\n  esac\n  case $ac_prog in\n    # Accept absolute paths.\n    [\\\\/]* | ?:[\\\\/]*)\n      re_direlt='/[^/][^/]*/\\.\\./'\n      # Canonicalize the pathname of ld\n      ac_prog=`echo \"$ac_prog\"| sed 's%\\\\\\\\%/%g'`\n      while echo \"$ac_prog\" | grep \"$re_direlt\" > /dev/null 2>&1; do\n        ac_prog=`echo $ac_prog| sed \"s%$re_direlt%/%\"`\n      done\n      test -z \"$LD\" && LD=\"$ac_prog\"\n      ;;\n  \"\")\n    # If it fails, then pretend we aren't using GCC.\n    ac_prog=ld\n    ;;\n  *)\n    # If it is relative, then search for the first ld in PATH.\n    with_gnu_ld=unknown\n    ;;\n  esac\nelif test \"$with_gnu_ld\" = yes; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for GNU ld\" >&5\n$as_echo_n \"checking for GNU ld... \" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for non-GNU ld\" >&5\n$as_echo_n \"checking for non-GNU ld... \" >&6; }\nfi\nif ${acl_cv_path_LD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -z \"$LD\"; then\n  acl_save_ifs=\"$IFS\"; IFS=$PATH_SEPARATOR\n  for ac_dir in $PATH; do\n    IFS=\"$acl_save_ifs\"\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$ac_prog\" || test -f \"$ac_dir/$ac_prog$ac_exeext\"; then\n      acl_cv_path_LD=\"$ac_dir/$ac_prog\"\n      # Check to see if the program is GNU ld.  I'd rather use --version,\n      # but apparently some variants of GNU ld only accept -v.\n      # Break only if it was the GNU/non-GNU ld that we prefer.\n      case `\"$acl_cv_path_LD\" -v 2>&1 </dev/null` in\n      *GNU* | *'with BFD'*)\n        test \"$with_gnu_ld\" != no && break\n        ;;\n      *)\n        test \"$with_gnu_ld\" != yes && break\n        ;;\n      esac\n    fi\n  done\n  IFS=\"$acl_save_ifs\"\nelse\n  acl_cv_path_LD=\"$LD\" # Let the user override the test with a path.\nfi\nfi\n\nLD=\"$acl_cv_path_LD\"\nif test -n \"$LD\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $LD\" >&5\n$as_echo \"$LD\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\ntest -z \"$LD\" && as_fn_error $? \"no acceptable ld found in \\$PATH\" \"$LINENO\" 5\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld\" >&5\n$as_echo_n \"checking if the linker ($LD) is GNU ld... \" >&6; }\nif ${acl_cv_prog_gnu_ld+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  # I'd rather use --version here, but apparently some GNU lds only accept -v.\ncase `$LD -v 2>&1 </dev/null` in\n*GNU* | *'with BFD'*)\n  acl_cv_prog_gnu_ld=yes\n  ;;\n*)\n  acl_cv_prog_gnu_ld=no\n  ;;\nesac\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $acl_cv_prog_gnu_ld\" >&5\n$as_echo \"$acl_cv_prog_gnu_ld\" >&6; }\nwith_gnu_ld=$acl_cv_prog_gnu_ld\n\n\n\n                              { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for shared library path variable\" >&5\n$as_echo_n \"checking for shared library path variable... \" >&6; }\nif ${acl_cv_libpath+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n    LD=\"$LD\" \\\n    ${CONFIG_SHELL-/bin/sh} \"$ac_aux_dir/config.libpath\" \"$host\" > conftest.sh\n    . ./conftest.sh\n    rm -f ./conftest.sh\n    acl_cv_libpath=${acl_cv_shlibpath_var:-none}\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $acl_cv_libpath\" >&5\n$as_echo \"$acl_cv_libpath\" >&6; }\n  shlibpath_var=\"$acl_cv_shlibpath_var\"\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether to activate relocatable installation\" >&5\n$as_echo_n \"checking whether to activate relocatable installation... \" >&6; }\n  # Check whether --enable-relocatable was given.\nif test \"${enable_relocatable+set}\" = set; then :\n  enableval=$enable_relocatable; if test \"$enableval\" != no; then\n       RELOCATABLE=yes\n     else\n       RELOCATABLE=no\n     fi\n\nelse\n  RELOCATABLE=no\nfi\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $RELOCATABLE\" >&5\n$as_echo \"$RELOCATABLE\" >&6; }\n\n\n\n    if test \"X$prefix\" = \"XNONE\"; then\n    reloc_final_prefix=\"$ac_default_prefix\"\n  else\n    reloc_final_prefix=\"$prefix\"\n  fi\n\ncat >>confdefs.h <<_ACEOF\n#define INSTALLPREFIX \"${reloc_final_prefix}\"\n_ACEOF\n\n  if test $RELOCATABLE = yes; then\n\n$as_echo \"#define ENABLE_RELOCATABLE 1\" >>confdefs.h\n\n  fi\n\n\n\n\n\n\n  is_noop=no\n  use_elf_origin_trick=no\n  use_wrapper=no\n  if test $RELOCATABLE = yes; then\n    # --enable-relocatable implies --disable-rpath\n    enable_rpath=no\n    for ac_header in mach-o/dyld.h\ndo :\n  ac_fn_c_check_header_mongrel \"$LINENO\" \"mach-o/dyld.h\" \"ac_cv_header_mach_o_dyld_h\" \"$ac_includes_default\"\nif test \"x$ac_cv_header_mach_o_dyld_h\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_MACH_O_DYLD_H 1\n_ACEOF\n\nfi\n\ndone\n\n    for ac_func in _NSGetExecutablePath\ndo :\n  ac_fn_c_check_func \"$LINENO\" \"_NSGetExecutablePath\" \"ac_cv_func__NSGetExecutablePath\"\nif test \"x$ac_cv_func__NSGetExecutablePath\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE__NSGETEXECUTABLEPATH 1\n_ACEOF\n\nfi\ndone\n\n    case \"$host_os\" in\n      mingw*) is_noop=yes ;;\n      linux* | kfreebsd*) use_elf_origin_trick=yes ;;\n    esac\n    if test $is_noop = yes; then\n      RELOCATABLE_LDFLAGS=:\n\n    else\n      if test $use_elf_origin_trick = yes; then\n                case \"$ac_aux_dir\" in\n          /*) reloc_ldflags=\"$ac_aux_dir/reloc-ldflags\" ;;\n          *) reloc_ldflags=\"\\$(top_builddir)/$ac_aux_dir/reloc-ldflags\" ;;\n        esac\n        RELOCATABLE_LDFLAGS=\"\\\"$reloc_ldflags\\\" \\\"\\$(host)\\\" \\\"\\$(RELOCATABLE_LIBRARY_PATH)\\\"\"\n\n      else\n        use_wrapper=yes\n                                        INSTALL_PROGRAM_ENV=\"RELOC_LIBRARY_PATH_VAR=\\\"$shlibpath_var\\\" RELOC_LIBRARY_PATH_VALUE=\\\"\\$(RELOCATABLE_LIBRARY_PATH)\\\" RELOC_PREFIX=\\\"\\$(prefix)\\\" RELOC_DESTDIR=\\\"\\$(DESTDIR)\\\" RELOC_COMPILE_COMMAND=\\\"\\$(CC) \\$(CPPFLAGS) \\$(CFLAGS) \\$(LDFLAGS)\\\" RELOC_SRCDIR=\\\"\\$(RELOCATABLE_SRC_DIR)\\\" RELOC_BUILDDIR=\\\"\\$(RELOCATABLE_BUILD_DIR)\\\" RELOC_CONFIG_H_DIR=\\\"\\$(RELOCATABLE_CONFIG_H_DIR)\\\" RELOC_EXEEXT=\\\"\\$(EXEEXT)\\\" RELOC_STRIP_PROG=\\\"\\$(RELOCATABLE_STRIP)\\\" RELOC_INSTALL_PROG=\\\"$INSTALL_PROGRAM\\\"\"\n\n        case \"$ac_aux_dir\" in\n          /*) INSTALL_PROGRAM=\"$ac_aux_dir/install-reloc\" ;;\n          *) INSTALL_PROGRAM=\"\\$(top_builddir)/$ac_aux_dir/install-reloc\" ;;\n        esac\n      fi\n    fi\n  fi\n   if test $is_noop = yes || test $use_elf_origin_trick = yes; then\n  RELOCATABLE_VIA_LD_TRUE=\n  RELOCATABLE_VIA_LD_FALSE='#'\nelse\n  RELOCATABLE_VIA_LD_TRUE='#'\n  RELOCATABLE_VIA_LD_FALSE=\nfi\n\n   if test $use_wrapper = yes; then\n  RELOCATABLE_VIA_WRAPPER_TRUE=\n  RELOCATABLE_VIA_WRAPPER_FALSE='#'\nelse\n  RELOCATABLE_VIA_WRAPPER_TRUE='#'\n  RELOCATABLE_VIA_WRAPPER_FALSE=\nfi\n\n\n\n\n\n\n\n\n      RELOCATABLE_STRIP=':'\n\n\n\n\n\n\n\n  : ${RELOCATABLE_CONFIG_H_DIR='$(top_builddir)'}\n  RELOCATABLE_SRC_DIR=\"\\$(top_srcdir)/$gl_source_base\"\n  RELOCATABLE_BUILD_DIR=\"\\$(top_builddir)/$gl_source_base\"\n\n\n# Check whether --enable-extra-encodings was given.\nif test \"${enable_extra_encodings+set}\" = set; then :\n  enableval=$enable_extra_encodings;\n$as_echo \"#define ENABLE_EXTRA 1\" >>confdefs.h\n\n   USE_EXTRA_ENCODINGS=yes\nelse\n  USE_EXTRA_ENCODINGS=no\nfi\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to copy files\" >&5\n$as_echo_n \"checking how to copy files... \" >&6; }\nif ${cl_cv_prog_cp+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\necho \"blabla\" > conftest.x\nerr=`/bin/sh -c \"cp -p conftest.x conftest.y 2>&1\"`\nif test -z \"$err\"; then\n  cl_cv_prog_cp='cp -p'\nelse\n  cl_cv_prog_cp='cp'\nfi\nrm -f conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $cl_cv_prog_cp\" >&5\n$as_echo \"$cl_cv_prog_cp\" >&6; }\nCP=\"$cl_cv_prog_cp\"\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to make hard links\" >&5\n$as_echo_n \"checking how to make hard links... \" >&6; }\nif ${cl_cv_prog_LN+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\nrm -f conftestdata conftestfile\necho data > conftestfile\nif ln conftestfile conftestdata 2>/dev/null; then\n  cl_cv_prog_LN=ln\nelse\n  cl_cv_prog_LN=\"$cl_cv_prog_cp\"\nfi\nrm -f conftestdata conftestfile\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $cl_cv_prog_LN\" >&5\n$as_echo \"$cl_cv_prog_LN\" >&6; }\nLN=\"$cl_cv_prog_LN\"\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether ln -s works\" >&5\n$as_echo_n \"checking whether ln -s works... \" >&6; }\nLN_S=$as_ln_s\nif test \"$LN_S\" = \"ln -s\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no, using $LN_S\" >&5\n$as_echo \"no, using $LN_S\" >&6; }\nfi\n\n\n\n\n\n\n\ncase `pwd` in\n  *\\ * | *\\\t*)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \\`pwd\\`\" >&5\n$as_echo \"$as_me: WARNING: Libtool does not cope well with whitespace in \\`pwd\\`\" >&2;} ;;\nesac\n\n\n\nmacro_version='2.4.6'\nmacro_revision='2.4.6'\n\n\n\n\n\n\n\n\n\n\n\n\n\nltmain=$ac_aux_dir/ltmain.sh\n\n# Backslashify metacharacters that are still active within\n# double-quoted strings.\nsed_quote_subst='s/\\([\"`$\\\\]\\)/\\\\\\1/g'\n\n# Same as above, but do not quote variable references.\ndouble_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\n\n# Sed substitution to delay expansion of an escaped shell variable in a\n# double_quote_subst'ed string.\ndelay_variable_subst='s/\\\\\\\\\\\\\\\\\\\\\\$/\\\\\\\\\\\\$/g'\n\n# Sed substitution to delay expansion of an escaped single quote.\ndelay_single_quote_subst='s/'\\''/'\\'\\\\\\\\\\\\\\'\\''/g'\n\n# Sed substitution to avoid accidental globbing in evaled expressions\nno_glob_subst='s/\\*/\\\\\\*/g'\n\nECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to print strings\" >&5\n$as_echo_n \"checking how to print strings... \" >&6; }\n# Test print first, because it will be a builtin if present.\nif test \"X`( print -r -- -n ) 2>/dev/null`\" = X-n && \\\n   test \"X`print -r -- $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='print -r --'\nelif test \"X`printf %s $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='printf %s\\n'\nelse\n  # Use this function as a fallback that always works.\n  func_fallback_echo ()\n  {\n    eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n  }\n  ECHO='func_fallback_echo'\nfi\n\n# func_echo_all arg...\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"\"\n}\n\ncase $ECHO in\n  printf*) { $as_echo \"$as_me:${as_lineno-$LINENO}: result: printf\" >&5\n$as_echo \"printf\" >&6; } ;;\n  print*) { $as_echo \"$as_me:${as_lineno-$LINENO}: result: print -r\" >&5\n$as_echo \"print -r\" >&6; } ;;\n  *) { $as_echo \"$as_me:${as_lineno-$LINENO}: result: cat\" >&5\n$as_echo \"cat\" >&6; } ;;\nesac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output\" >&5\n$as_echo_n \"checking for a sed that does not truncate output... \" >&6; }\nif ${ac_cv_path_SED+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n            ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/\n     for ac_i in 1 2 3 4 5 6 7; do\n       ac_script=\"$ac_script$as_nl$ac_script\"\n     done\n     echo \"$ac_script\" 2>/dev/null | sed 99q >conftest.sed\n     { ac_script=; unset ac_script;}\n     if test -z \"$SED\"; then\n  ac_path_SED_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in sed gsed; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_SED=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_SED\" || continue\n# Check for GNU ac_path_SED and select it if it is found.\n  # Check for GNU $ac_path_SED\ncase `\"$ac_path_SED\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_SED=\"$ac_path_SED\" ac_path_SED_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo '' >> \"conftest.nl\"\n    \"$ac_path_SED\" -f conftest.sed < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_SED_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_SED=\"$ac_path_SED\"\n      ac_path_SED_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_SED_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_SED\"; then\n    as_fn_error $? \"no acceptable sed could be found in \\$PATH\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_SED=$SED\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED\" >&5\n$as_echo \"$ac_cv_path_SED\" >&6; }\n SED=\"$ac_cv_path_SED\"\n  rm -f conftest.sed\n\ntest -z \"$SED\" && SED=sed\nXsed=\"$SED -e 1s/^X//\"\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for fgrep\" >&5\n$as_echo_n \"checking for fgrep... \" >&6; }\nif ${ac_cv_path_FGREP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1\n   then ac_cv_path_FGREP=\"$GREP -F\"\n   else\n     if test -z \"$FGREP\"; then\n  ac_path_FGREP_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in fgrep; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_FGREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_FGREP\" || continue\n# Check for GNU ac_path_FGREP and select it if it is found.\n  # Check for GNU $ac_path_FGREP\ncase `\"$ac_path_FGREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_FGREP=\"$ac_path_FGREP\" ac_path_FGREP_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo 'FGREP' >> \"conftest.nl\"\n    \"$ac_path_FGREP\" FGREP < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_FGREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_FGREP=\"$ac_path_FGREP\"\n      ac_path_FGREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_FGREP_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_FGREP\"; then\n    as_fn_error $? \"no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_FGREP=$FGREP\nfi\n\n   fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP\" >&5\n$as_echo \"$ac_cv_path_FGREP\" >&6; }\n FGREP=\"$ac_cv_path_FGREP\"\n\n\ntest -z \"$GREP\" && GREP=grep\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# Check whether --with-gnu-ld was given.\nif test \"${with_gnu_ld+set}\" = set; then :\n  withval=$with_gnu_ld; test no = \"$withval\" || with_gnu_ld=yes\nelse\n  with_gnu_ld=no\nfi\n\nac_prog=ld\nif test yes = \"$GCC\"; then\n  # Check if gcc -print-prog-name=ld gives a path.\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ld used by $CC\" >&5\n$as_echo_n \"checking for ld used by $CC... \" >&6; }\n  case $host in\n  *-*-mingw*)\n    # gcc leaves a trailing carriage return, which upsets mingw\n    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\\015'` ;;\n  *)\n    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;\n  esac\n  case $ac_prog in\n    # Accept absolute paths.\n    [\\\\/]* | ?:[\\\\/]*)\n      re_direlt='/[^/][^/]*/\\.\\./'\n      # Canonicalize the pathname of ld\n      ac_prog=`$ECHO \"$ac_prog\"| $SED 's%\\\\\\\\%/%g'`\n      while $ECHO \"$ac_prog\" | $GREP \"$re_direlt\" > /dev/null 2>&1; do\n\tac_prog=`$ECHO $ac_prog| $SED \"s%$re_direlt%/%\"`\n      done\n      test -z \"$LD\" && LD=$ac_prog\n      ;;\n  \"\")\n    # If it fails, then pretend we aren't using GCC.\n    ac_prog=ld\n    ;;\n  *)\n    # If it is relative, then search for the first ld in PATH.\n    with_gnu_ld=unknown\n    ;;\n  esac\nelif test yes = \"$with_gnu_ld\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for GNU ld\" >&5\n$as_echo_n \"checking for GNU ld... \" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for non-GNU ld\" >&5\n$as_echo_n \"checking for non-GNU ld... \" >&6; }\nfi\nif ${lt_cv_path_LD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -z \"$LD\"; then\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n  for ac_dir in $PATH; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$ac_prog\" || test -f \"$ac_dir/$ac_prog$ac_exeext\"; then\n      lt_cv_path_LD=$ac_dir/$ac_prog\n      # Check to see if the program is GNU ld.  I'd rather use --version,\n      # but apparently some variants of GNU ld only accept -v.\n      # Break only if it was the GNU/non-GNU ld that we prefer.\n      case `\"$lt_cv_path_LD\" -v 2>&1 </dev/null` in\n      *GNU* | *'with BFD'*)\n\ttest no != \"$with_gnu_ld\" && break\n\t;;\n      *)\n\ttest yes != \"$with_gnu_ld\" && break\n\t;;\n      esac\n    fi\n  done\n  IFS=$lt_save_ifs\nelse\n  lt_cv_path_LD=$LD # Let the user override the test with a path.\nfi\nfi\n\nLD=$lt_cv_path_LD\nif test -n \"$LD\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $LD\" >&5\n$as_echo \"$LD\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\ntest -z \"$LD\" && as_fn_error $? \"no acceptable ld found in \\$PATH\" \"$LINENO\" 5\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld\" >&5\n$as_echo_n \"checking if the linker ($LD) is GNU ld... \" >&6; }\nif ${lt_cv_prog_gnu_ld+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  # I'd rather use --version here, but apparently some GNU lds only accept -v.\ncase `$LD -v 2>&1 </dev/null` in\n*GNU* | *'with BFD'*)\n  lt_cv_prog_gnu_ld=yes\n  ;;\n*)\n  lt_cv_prog_gnu_ld=no\n  ;;\nesac\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_gnu_ld\" >&5\n$as_echo \"$lt_cv_prog_gnu_ld\" >&6; }\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)\" >&5\n$as_echo_n \"checking for BSD- or MS-compatible name lister (nm)... \" >&6; }\nif ${lt_cv_path_NM+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$NM\"; then\n  # Let the user override the test.\n  lt_cv_path_NM=$NM\nelse\n  lt_nm_to_check=${ac_tool_prefix}nm\n  if test -n \"$ac_tool_prefix\" && test \"$build\" = \"$host\"; then\n    lt_nm_to_check=\"$lt_nm_to_check nm\"\n  fi\n  for lt_tmp_nm in $lt_nm_to_check; do\n    lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do\n      IFS=$lt_save_ifs\n      test -z \"$ac_dir\" && ac_dir=.\n      tmp_nm=$ac_dir/$lt_tmp_nm\n      if test -f \"$tmp_nm\" || test -f \"$tmp_nm$ac_exeext\"; then\n\t# Check to see if the nm accepts a BSD-compat flag.\n\t# Adding the 'sed 1q' prevents false positives on HP-UX, which says:\n\t#   nm: unknown option \"B\" ignored\n\t# Tru64's nm complains that /dev/null is an invalid object file\n\t# MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty\n\tcase $build_os in\n\tmingw*) lt_bad_file=conftest.nm/nofile ;;\n\t*) lt_bad_file=/dev/null ;;\n\tesac\n\tcase `\"$tmp_nm\" -B $lt_bad_file 2>&1 | sed '1q'` in\n\t*$lt_bad_file* | *'Invalid file or object type'*)\n\t  lt_cv_path_NM=\"$tmp_nm -B\"\n\t  break 2\n\t  ;;\n\t*)\n\t  case `\"$tmp_nm\" -p /dev/null 2>&1 | sed '1q'` in\n\t  */dev/null*)\n\t    lt_cv_path_NM=\"$tmp_nm -p\"\n\t    break 2\n\t    ;;\n\t  *)\n\t    lt_cv_path_NM=${lt_cv_path_NM=\"$tmp_nm\"} # keep the first match, but\n\t    continue # so that we can try to find one that supports BSD flags\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n      fi\n    done\n    IFS=$lt_save_ifs\n  done\n  : ${lt_cv_path_NM=no}\nfi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM\" >&5\n$as_echo \"$lt_cv_path_NM\" >&6; }\nif test no != \"$lt_cv_path_NM\"; then\n  NM=$lt_cv_path_NM\nelse\n  # Didn't find any BSD compatible name lister, look for dumpbin.\n  if test -n \"$DUMPBIN\"; then :\n    # Let the user override the test.\n  else\n    if test -n \"$ac_tool_prefix\"; then\n  for ac_prog in dumpbin \"link -dump\"\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DUMPBIN+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DUMPBIN\"; then\n  ac_cv_prog_DUMPBIN=\"$DUMPBIN\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DUMPBIN=\"$ac_tool_prefix$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDUMPBIN=$ac_cv_prog_DUMPBIN\nif test -n \"$DUMPBIN\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DUMPBIN\" >&5\n$as_echo \"$DUMPBIN\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n    test -n \"$DUMPBIN\" && break\n  done\nfi\nif test -z \"$DUMPBIN\"; then\n  ac_ct_DUMPBIN=$DUMPBIN\n  for ac_prog in dumpbin \"link -dump\"\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DUMPBIN\"; then\n  ac_cv_prog_ac_ct_DUMPBIN=\"$ac_ct_DUMPBIN\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DUMPBIN=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN\nif test -n \"$ac_ct_DUMPBIN\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN\" >&5\n$as_echo \"$ac_ct_DUMPBIN\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_DUMPBIN\" && break\ndone\n\n  if test \"x$ac_ct_DUMPBIN\" = x; then\n    DUMPBIN=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DUMPBIN=$ac_ct_DUMPBIN\n  fi\nfi\n\n    case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in\n    *COFF*)\n      DUMPBIN=\"$DUMPBIN -symbols -headers\"\n      ;;\n    *)\n      DUMPBIN=:\n      ;;\n    esac\n  fi\n\n  if test : != \"$DUMPBIN\"; then\n    NM=$DUMPBIN\n  fi\nfi\ntest -z \"$NM\" && NM=nm\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface\" >&5\n$as_echo_n \"checking the name lister ($NM) interface... \" >&6; }\nif ${lt_cv_nm_interface+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_nm_interface=\"BSD nm\"\n  echo \"int some_variable = 0;\" > conftest.$ac_ext\n  (eval echo \"\\\"\\$as_me:$LINENO: $ac_compile\\\"\" >&5)\n  (eval \"$ac_compile\" 2>conftest.err)\n  cat conftest.err >&5\n  (eval echo \"\\\"\\$as_me:$LINENO: $NM \\\\\\\"conftest.$ac_objext\\\\\\\"\\\"\" >&5)\n  (eval \"$NM \\\"conftest.$ac_objext\\\"\" 2>conftest.err > conftest.out)\n  cat conftest.err >&5\n  (eval echo \"\\\"\\$as_me:$LINENO: output\\\"\" >&5)\n  cat conftest.out >&5\n  if $GREP 'External.*some_variable' conftest.out > /dev/null; then\n    lt_cv_nm_interface=\"MS dumpbin\"\n  fi\n  rm -f conftest*\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface\" >&5\n$as_echo \"$lt_cv_nm_interface\" >&6; }\n\n# find the maximum length of command line arguments\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments\" >&5\n$as_echo_n \"checking the maximum length of command line arguments... \" >&6; }\nif ${lt_cv_sys_max_cmd_len+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n    i=0\n  teststring=ABCD\n\n  case $build_os in\n  msdosdjgpp*)\n    # On DJGPP, this test can blow up pretty badly due to problems in libc\n    # (any single argument exceeding 2000 bytes causes a buffer overrun\n    # during glob expansion).  Even if it were fixed, the result of this\n    # check would be larger than it should be.\n    lt_cv_sys_max_cmd_len=12288;    # 12K is about right\n    ;;\n\n  gnu*)\n    # Under GNU Hurd, this test is not required because there is\n    # no limit to the length of command line arguments.\n    # Libtool will interpret -1 as no limit whatsoever\n    lt_cv_sys_max_cmd_len=-1;\n    ;;\n\n  cygwin* | mingw* | cegcc*)\n    # On Win9x/ME, this test blows up -- it succeeds, but takes\n    # about 5 minutes as the teststring grows exponentially.\n    # Worse, since 9x/ME are not pre-emptively multitasking,\n    # you end up with a \"frozen\" computer, even though with patience\n    # the test eventually succeeds (with a max line length of 256k).\n    # Instead, let's just punt: use the minimum linelength reported by\n    # all of the supported platforms: 8192 (on NT/2K/XP).\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  mint*)\n    # On MiNT this can take a long time and run out of memory.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  amigaos*)\n    # On AmigaOS with pdksh, this test takes hours, literally.\n    # So we just punt and use a minimum line length of 8192.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)\n    # This has been around since 386BSD, at least.  Likely further.\n    if test -x /sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`\n    elif test -x /usr/sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`\n    else\n      lt_cv_sys_max_cmd_len=65536\t# usable default for all BSDs\n    fi\n    # And add a safety zone\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    ;;\n\n  interix*)\n    # We know the value 262144 and hardcode it with a safety zone (like BSD)\n    lt_cv_sys_max_cmd_len=196608\n    ;;\n\n  os2*)\n    # The test takes a long time on OS/2.\n    lt_cv_sys_max_cmd_len=8192\n    ;;\n\n  osf*)\n    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure\n    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not\n    # nice to cause kernel panics so lets avoid the loop below.\n    # First set a reasonable default.\n    lt_cv_sys_max_cmd_len=16384\n    #\n    if test -x /sbin/sysconfig; then\n      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in\n        *1*) lt_cv_sys_max_cmd_len=-1 ;;\n      esac\n    fi\n    ;;\n  sco3.2v5*)\n    lt_cv_sys_max_cmd_len=102400\n    ;;\n  sysv5* | sco5v6* | sysv4.2uw2*)\n    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`\n    if test -n \"$kargmax\"; then\n      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[\t ]//'`\n    else\n      lt_cv_sys_max_cmd_len=32768\n    fi\n    ;;\n  *)\n    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`\n    if test -n \"$lt_cv_sys_max_cmd_len\" && \\\n       test undefined != \"$lt_cv_sys_max_cmd_len\"; then\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    else\n      # Make teststring a little bigger before we do anything with it.\n      # a 1K string should be a reasonable start.\n      for i in 1 2 3 4 5 6 7 8; do\n        teststring=$teststring$teststring\n      done\n      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}\n      # If test is not a shell built-in, we'll probably end up computing a\n      # maximum length that is only half of the actual maximum length, but\n      # we can't tell.\n      while { test X`env echo \"$teststring$teststring\" 2>/dev/null` \\\n\t         = \"X$teststring$teststring\"; } >/dev/null 2>&1 &&\n\t      test 17 != \"$i\" # 1/2 MB should be enough\n      do\n        i=`expr $i + 1`\n        teststring=$teststring$teststring\n      done\n      # Only check the string length outside the loop.\n      lt_cv_sys_max_cmd_len=`expr \"X$teststring\" : \".*\" 2>&1`\n      teststring=\n      # Add a significant safety factor because C++ compilers can tack on\n      # massive amounts of additional arguments before passing them to the\n      # linker.  It appears as though 1/2 is a usable value.\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 2`\n    fi\n    ;;\n  esac\n\nfi\n\nif test -n \"$lt_cv_sys_max_cmd_len\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len\" >&5\n$as_echo \"$lt_cv_sys_max_cmd_len\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: none\" >&5\n$as_echo \"none\" >&6; }\nfi\nmax_cmd_len=$lt_cv_sys_max_cmd_len\n\n\n\n\n\n\n: ${CP=\"cp -f\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n\nif ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then\n  lt_unset=unset\nelse\n  lt_unset=false\nfi\n\n\n\n\n\n# test EBCDIC or ASCII\ncase `echo X|tr X '\\101'` in\n A) # ASCII based system\n    # \\n is not interpreted correctly by Solaris 8 /usr/ucb/tr\n  lt_SP2NL='tr \\040 \\012'\n  lt_NL2SP='tr \\015\\012 \\040\\040'\n  ;;\n *) # EBCDIC based system\n  lt_SP2NL='tr \\100 \\n'\n  lt_NL2SP='tr \\r\\n \\100\\100'\n  ;;\nesac\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format\" >&5\n$as_echo_n \"checking how to convert $build file names to $host format... \" >&6; }\nif ${lt_cv_to_host_file_cmd+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case $host in\n  *-*-mingw* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32\n        ;;\n      *-*-cygwin* )\n        lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32\n        ;;\n      * ) # otherwise, assume *nix\n        lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32\n        ;;\n    esac\n    ;;\n  *-*-cygwin* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin\n        ;;\n      *-*-cygwin* )\n        lt_cv_to_host_file_cmd=func_convert_file_noop\n        ;;\n      * ) # otherwise, assume *nix\n        lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin\n        ;;\n    esac\n    ;;\n  * ) # unhandled hosts (and \"normal\" native builds)\n    lt_cv_to_host_file_cmd=func_convert_file_noop\n    ;;\nesac\n\nfi\n\nto_host_file_cmd=$lt_cv_to_host_file_cmd\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd\" >&5\n$as_echo \"$lt_cv_to_host_file_cmd\" >&6; }\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format\" >&5\n$as_echo_n \"checking how to convert $build file names to toolchain format... \" >&6; }\nif ${lt_cv_to_tool_file_cmd+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  #assume ordinary cross tools, or native build.\nlt_cv_to_tool_file_cmd=func_convert_file_noop\ncase $host in\n  *-*-mingw* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32\n        ;;\n    esac\n    ;;\nesac\n\nfi\n\nto_tool_file_cmd=$lt_cv_to_tool_file_cmd\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd\" >&5\n$as_echo \"$lt_cv_to_tool_file_cmd\" >&6; }\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files\" >&5\n$as_echo_n \"checking for $LD option to reload object files... \" >&6; }\nif ${lt_cv_ld_reload_flag+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ld_reload_flag='-r'\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag\" >&5\n$as_echo \"$lt_cv_ld_reload_flag\" >&6; }\nreload_flag=$lt_cv_ld_reload_flag\ncase $reload_flag in\n\"\" | \" \"*) ;;\n*) reload_flag=\" $reload_flag\" ;;\nesac\nreload_cmds='$LD$reload_flag -o $output$reload_objs'\ncase $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    if test yes != \"$GCC\"; then\n      reload_cmds=false\n    fi\n    ;;\n  darwin*)\n    if test yes = \"$GCC\"; then\n      reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs'\n    else\n      reload_cmds='$LD$reload_flag -o $output$reload_objs'\n    fi\n    ;;\nesac\n\n\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}objdump\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OBJDUMP\"; then\n  ac_cv_prog_OBJDUMP=\"$OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OBJDUMP=\"${ac_tool_prefix}objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOBJDUMP=$ac_cv_prog_OBJDUMP\nif test -n \"$OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OBJDUMP\" >&5\n$as_echo \"$OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OBJDUMP\"; then\n  ac_ct_OBJDUMP=$OBJDUMP\n  # Extract the first word of \"objdump\", so it can be a program name with args.\nset dummy objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OBJDUMP\"; then\n  ac_cv_prog_ac_ct_OBJDUMP=\"$ac_ct_OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OBJDUMP=\"objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP\nif test -n \"$ac_ct_OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP\" >&5\n$as_echo \"$ac_ct_OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OBJDUMP\" = x; then\n    OBJDUMP=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OBJDUMP=$ac_ct_OBJDUMP\n  fi\nelse\n  OBJDUMP=\"$ac_cv_prog_OBJDUMP\"\nfi\n\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries\" >&5\n$as_echo_n \"checking how to recognize dependent libraries... \" >&6; }\nif ${lt_cv_deplibs_check_method+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_file_magic_cmd='$MAGIC_CMD'\nlt_cv_file_magic_test_file=\nlt_cv_deplibs_check_method='unknown'\n# Need to set the preceding variable on all platforms that support\n# interlibrary dependencies.\n# 'none' -- dependencies not supported.\n# 'unknown' -- same as none, but documents that we really don't know.\n# 'pass_all' -- all dependencies passed with no checks.\n# 'test_compile' -- check by making test program.\n# 'file_magic [[regex]]' -- check by looking for files in library path\n# that responds to the $file_magic_cmd with a given extended regex.\n# If you have 'file' or equivalent on your system and you're not sure\n# whether 'pass_all' will *always* work, you probably want this one.\n\ncase $host_os in\naix[4-9]*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbeos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbsdi[45]*)\n  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'\n  lt_cv_file_magic_cmd='/usr/bin/file -L'\n  lt_cv_file_magic_test_file=/shlib/libc.so\n  ;;\n\ncygwin*)\n  # func_win32_libid is a shell function defined in ltmain.sh\n  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n  lt_cv_file_magic_cmd='func_win32_libid'\n  ;;\n\nmingw* | pw32*)\n  # Base MSYS/MinGW do not provide the 'file' command needed by\n  # func_win32_libid shell function, so use a weaker test based on 'objdump',\n  # unless we find 'file', for example because we are cross-compiling.\n  if ( file / ) >/dev/null 2>&1; then\n    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n    lt_cv_file_magic_cmd='func_win32_libid'\n  else\n    # Keep this pattern in sync with the one in func_win32_libid.\n    lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'\n    lt_cv_file_magic_cmd='$OBJDUMP -f'\n  fi\n  ;;\n\ncegcc*)\n  # use the weaker test based on 'objdump'. See mingw*.\n  lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'\n  lt_cv_file_magic_cmd='$OBJDUMP -f'\n  ;;\n\ndarwin* | rhapsody*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nfreebsd* | dragonfly*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    case $host_cpu in\n    i*86 )\n      # Not sure whether the presence of OpenBSD here was a mistake.\n      # Let's accept both of them until this is cleared up.\n      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library'\n      lt_cv_file_magic_cmd=/usr/bin/file\n      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`\n      ;;\n    esac\n  else\n    lt_cv_deplibs_check_method=pass_all\n  fi\n  ;;\n\nhaiku*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nhpux10.20* | hpux11*)\n  lt_cv_file_magic_cmd=/usr/bin/file\n  case $host_cpu in\n  ia64*)\n    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'\n    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so\n    ;;\n  hppa*64*)\n    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\\.[0-9]'\n    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl\n    ;;\n  *)\n    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\\.[0-9]) shared library'\n    lt_cv_file_magic_test_file=/usr/lib/libc.sl\n    ;;\n  esac\n  ;;\n\ninterix[3-9]*)\n  # PIC code is broken on Interix 3.x, that's why |\\.a not |_pic\\.a here\n  lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so|\\.a)$'\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $LD in\n  *-32|*\"-32 \") libmagic=32-bit;;\n  *-n32|*\"-n32 \") libmagic=N32;;\n  *-64|*\"-64 \") libmagic=64-bit;;\n  *) libmagic=never-match;;\n  esac\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\n# This must be glibc/ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nnetbsd*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so|_pic\\.a)$'\n  fi\n  ;;\n\nnewos6*)\n  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)'\n  lt_cv_file_magic_cmd=/usr/bin/file\n  lt_cv_file_magic_test_file=/usr/lib/libnls.so\n  ;;\n\n*nto* | *qnx*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nopenbsd* | bitrig*)\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|\\.so|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|_pic\\.a)$'\n  fi\n  ;;\n\nosf3* | osf4* | osf5*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nrdos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsolaris*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv4 | sysv4.3*)\n  case $host_vendor in\n  motorola)\n    lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]'\n    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`\n    ;;\n  ncr)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  sequent)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )'\n    ;;\n  sni)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method=\"file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib\"\n    lt_cv_file_magic_test_file=/lib/libc.so\n    ;;\n  siemens)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  pc)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  esac\n  ;;\n\ntpf*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nos2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nesac\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method\" >&5\n$as_echo \"$lt_cv_deplibs_check_method\" >&6; }\n\nfile_magic_glob=\nwant_nocaseglob=no\nif test \"$build\" = \"$host\"; then\n  case $host_os in\n  mingw* | pw32*)\n    if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then\n      want_nocaseglob=yes\n    else\n      file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e \"s/\\(..\\)/s\\/[\\1]\\/[\\1]\\/g;/g\"`\n    fi\n    ;;\n  esac\nfi\n\nfile_magic_cmd=$lt_cv_file_magic_cmd\ndeplibs_check_method=$lt_cv_deplibs_check_method\ntest -z \"$deplibs_check_method\" && deplibs_check_method=unknown\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}dlltool\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DLLTOOL\"; then\n  ac_cv_prog_DLLTOOL=\"$DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DLLTOOL=\"${ac_tool_prefix}dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDLLTOOL=$ac_cv_prog_DLLTOOL\nif test -n \"$DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DLLTOOL\" >&5\n$as_echo \"$DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_DLLTOOL\"; then\n  ac_ct_DLLTOOL=$DLLTOOL\n  # Extract the first word of \"dlltool\", so it can be a program name with args.\nset dummy dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DLLTOOL\"; then\n  ac_cv_prog_ac_ct_DLLTOOL=\"$ac_ct_DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DLLTOOL=\"dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL\nif test -n \"$ac_ct_DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL\" >&5\n$as_echo \"$ac_ct_DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_DLLTOOL\" = x; then\n    DLLTOOL=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DLLTOOL=$ac_ct_DLLTOOL\n  fi\nelse\n  DLLTOOL=\"$ac_cv_prog_DLLTOOL\"\nfi\n\ntest -z \"$DLLTOOL\" && DLLTOOL=dlltool\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries\" >&5\n$as_echo_n \"checking how to associate runtime and link libraries... \" >&6; }\nif ${lt_cv_sharedlib_from_linklib_cmd+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_sharedlib_from_linklib_cmd='unknown'\n\ncase $host_os in\ncygwin* | mingw* | pw32* | cegcc*)\n  # two different shell functions defined in ltmain.sh;\n  # decide which one to use based on capabilities of $DLLTOOL\n  case `$DLLTOOL --help 2>&1` in\n  *--identify-strict*)\n    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib\n    ;;\n  *)\n    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback\n    ;;\n  esac\n  ;;\n*)\n  # fallback: assume linklib IS sharedlib\n  lt_cv_sharedlib_from_linklib_cmd=$ECHO\n  ;;\nesac\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd\" >&5\n$as_echo \"$lt_cv_sharedlib_from_linklib_cmd\" >&6; }\nsharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd\ntest -z \"$sharedlib_from_linklib_cmd\" && sharedlib_from_linklib_cmd=$ECHO\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  for ac_prog in ar\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_AR+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$AR\"; then\n  ac_cv_prog_AR=\"$AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_AR=\"$ac_tool_prefix$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nAR=$ac_cv_prog_AR\nif test -n \"$AR\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $AR\" >&5\n$as_echo \"$AR\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n    test -n \"$AR\" && break\n  done\nfi\nif test -z \"$AR\"; then\n  ac_ct_AR=$AR\n  for ac_prog in ar\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_AR+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_AR\"; then\n  ac_cv_prog_ac_ct_AR=\"$ac_ct_AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_AR=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_AR=$ac_cv_prog_ac_ct_AR\nif test -n \"$ac_ct_AR\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR\" >&5\n$as_echo \"$ac_ct_AR\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_AR\" && break\ndone\n\n  if test \"x$ac_ct_AR\" = x; then\n    AR=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    AR=$ac_ct_AR\n  fi\nfi\n\n: ${AR=ar}\n: ${AR_FLAGS=cru}\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support\" >&5\n$as_echo_n \"checking for archiver @FILE support... \" >&6; }\nif ${lt_cv_ar_at_file+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ar_at_file=no\n   cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  echo conftest.$ac_objext > conftest.lst\n      lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5'\n      { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$lt_ar_try\\\"\"; } >&5\n  (eval $lt_ar_try) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n      if test 0 -eq \"$ac_status\"; then\n\t# Ensure the archiver fails upon bogus file names.\n\trm -f conftest.$ac_objext libconftest.a\n\t{ { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$lt_ar_try\\\"\"; } >&5\n  (eval $lt_ar_try) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n\tif test 0 -ne \"$ac_status\"; then\n          lt_cv_ar_at_file=@\n        fi\n      fi\n      rm -f conftest.* libconftest.a\n\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file\" >&5\n$as_echo \"$lt_cv_ar_at_file\" >&6; }\n\nif test no = \"$lt_cv_ar_at_file\"; then\n  archiver_list_spec=\nelse\n  archiver_list_spec=$lt_cv_ar_at_file\nfi\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}strip\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}strip; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_STRIP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$STRIP\"; then\n  ac_cv_prog_STRIP=\"$STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_STRIP=\"${ac_tool_prefix}strip\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nSTRIP=$ac_cv_prog_STRIP\nif test -n \"$STRIP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $STRIP\" >&5\n$as_echo \"$STRIP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_STRIP\"; then\n  ac_ct_STRIP=$STRIP\n  # Extract the first word of \"strip\", so it can be a program name with args.\nset dummy strip; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_STRIP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_STRIP\"; then\n  ac_cv_prog_ac_ct_STRIP=\"$ac_ct_STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_STRIP=\"strip\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP\nif test -n \"$ac_ct_STRIP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP\" >&5\n$as_echo \"$ac_ct_STRIP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_STRIP\" = x; then\n    STRIP=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    STRIP=$ac_ct_STRIP\n  fi\nelse\n  STRIP=\"$ac_cv_prog_STRIP\"\nfi\n\ntest -z \"$STRIP\" && STRIP=:\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}ranlib\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}ranlib; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_RANLIB+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$RANLIB\"; then\n  ac_cv_prog_RANLIB=\"$RANLIB\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_RANLIB=\"${ac_tool_prefix}ranlib\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nRANLIB=$ac_cv_prog_RANLIB\nif test -n \"$RANLIB\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $RANLIB\" >&5\n$as_echo \"$RANLIB\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_RANLIB\"; then\n  ac_ct_RANLIB=$RANLIB\n  # Extract the first word of \"ranlib\", so it can be a program name with args.\nset dummy ranlib; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_RANLIB+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_RANLIB\"; then\n  ac_cv_prog_ac_ct_RANLIB=\"$ac_ct_RANLIB\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_RANLIB=\"ranlib\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB\nif test -n \"$ac_ct_RANLIB\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB\" >&5\n$as_echo \"$ac_ct_RANLIB\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_RANLIB\" = x; then\n    RANLIB=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    RANLIB=$ac_ct_RANLIB\n  fi\nelse\n  RANLIB=\"$ac_cv_prog_RANLIB\"\nfi\n\ntest -z \"$RANLIB\" && RANLIB=:\n\n\n\n\n\n\n# Determine commands to create old-style static archives.\nold_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'\nold_postinstall_cmds='chmod 644 $oldlib'\nold_postuninstall_cmds=\n\nif test -n \"$RANLIB\"; then\n  case $host_os in\n  bitrig* | openbsd*)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB -t \\$tool_oldlib\"\n    ;;\n  *)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB \\$tool_oldlib\"\n    ;;\n  esac\n  old_archive_cmds=\"$old_archive_cmds~\\$RANLIB \\$tool_oldlib\"\nfi\n\ncase $host_os in\n  darwin*)\n    lock_old_archive_extraction=yes ;;\n  *)\n    lock_old_archive_extraction=no ;;\nesac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n\n\n# Check for command to grab the raw symbol name followed by C symbol from nm.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object\" >&5\n$as_echo_n \"checking command to parse $NM output from $compiler object... \" >&6; }\nif ${lt_cv_sys_global_symbol_pipe+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n# These are sane defaults that work on at least a few old systems.\n# [They come from Ultrix.  What could be older than Ultrix?!! ;)]\n\n# Character class describing NM global symbol codes.\nsymcode='[BCDEGRST]'\n\n# Regexp to match symbols that can be accessed directly from C.\nsympat='\\([_A-Za-z][_A-Za-z0-9]*\\)'\n\n# Define system-specific variables.\ncase $host_os in\naix*)\n  symcode='[BCDT]'\n  ;;\ncygwin* | mingw* | pw32* | cegcc*)\n  symcode='[ABCDGISTW]'\n  ;;\nhpux*)\n  if test ia64 = \"$host_cpu\"; then\n    symcode='[ABCDEGRST]'\n  fi\n  ;;\nirix* | nonstopux*)\n  symcode='[BCDEGRST]'\n  ;;\nosf*)\n  symcode='[BCDEGQRST]'\n  ;;\nsolaris*)\n  symcode='[BDRT]'\n  ;;\nsco3.2v5*)\n  symcode='[DT]'\n  ;;\nsysv4.2uw2*)\n  symcode='[DT]'\n  ;;\nsysv5* | sco5v6* | unixware* | OpenUNIX*)\n  symcode='[ABDT]'\n  ;;\nsysv4)\n  symcode='[DFNSTU]'\n  ;;\nesac\n\n# If we're using GNU nm, then use its standard symbol codes.\ncase `$NM -V 2>&1` in\n*GNU* | *'with BFD'*)\n  symcode='[ABCDGIRSTW]' ;;\nesac\n\nif test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n  # Gets list of data symbols to import.\n  lt_cv_sys_global_symbol_to_import=\"sed -n -e 's/^I .* \\(.*\\)$/\\1/p'\"\n  # Adjust the below global symbol transforms to fixup imported variables.\n  lt_cdecl_hook=\" -e 's/^I .* \\(.*\\)$/extern __declspec(dllimport) char \\1;/p'\"\n  lt_c_name_hook=\" -e 's/^I .* \\(.*\\)$/  {\\\"\\1\\\", (void *) 0},/p'\"\n  lt_c_name_lib_hook=\"\\\n  -e 's/^I .* \\(lib.*\\)$/  {\\\"\\1\\\", (void *) 0},/p'\\\n  -e 's/^I .* \\(.*\\)$/  {\\\"lib\\1\\\", (void *) 0},/p'\"\nelse\n  # Disable hooks by default.\n  lt_cv_sys_global_symbol_to_import=\n  lt_cdecl_hook=\n  lt_c_name_hook=\n  lt_c_name_lib_hook=\nfi\n\n# Transform an extracted symbol line into a proper C declaration.\n# Some systems (esp. on ia64) link data and code symbols differently,\n# so use this general approach.\nlt_cv_sys_global_symbol_to_cdecl=\"sed -n\"\\\n$lt_cdecl_hook\\\n\" -e 's/^T .* \\(.*\\)$/extern int \\1();/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/extern char \\1;/p'\"\n\n# Transform an extracted symbol line into symbol name and symbol address\nlt_cv_sys_global_symbol_to_c_name_address=\"sed -n\"\\\n$lt_c_name_hook\\\n\" -e 's/^: \\(.*\\) .*$/  {\\\"\\1\\\", (void *) 0},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/p'\"\n\n# Transform an extracted symbol line into symbol name with lib prefix and\n# symbol address.\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix=\"sed -n\"\\\n$lt_c_name_lib_hook\\\n\" -e 's/^: \\(.*\\) .*$/  {\\\"\\1\\\", (void *) 0},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(lib.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/  {\\\"lib\\1\\\", (void *) \\&\\1},/p'\"\n\n# Handle CRLF in mingw tool chain\nopt_cr=\ncase $build_os in\nmingw*)\n  opt_cr=`$ECHO 'x\\{0,1\\}' | tr x '\\015'` # option cr in regexp\n  ;;\nesac\n\n# Try without a prefix underscore, then with it.\nfor ac_symprfx in \"\" \"_\"; do\n\n  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.\n  symxfrm=\"\\\\1 $ac_symprfx\\\\2 \\\\2\"\n\n  # Write the raw and C identifiers.\n  if test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n    # Fake it for dumpbin and say T for any non-static function,\n    # D for any global variable and I for any imported variable.\n    # Also find C++ and __fastcall symbols from MSVC++,\n    # which start with @ or ?.\n    lt_cv_sys_global_symbol_pipe=\"$AWK '\"\\\n\"     {last_section=section; section=\\$ 3};\"\\\n\"     /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};\"\\\n\"     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};\"\\\n\"     /^ *Symbol name *: /{split(\\$ 0,sn,\\\":\\\"); si=substr(sn[2],2)};\"\\\n\"     /^ *Type *: code/{print \\\"T\\\",si,substr(si,length(prfx))};\"\\\n\"     /^ *Type *: data/{print \\\"I\\\",si,substr(si,length(prfx))};\"\\\n\"     \\$ 0!~/External *\\|/{next};\"\\\n\"     / 0+ UNDEF /{next}; / UNDEF \\([^|]\\)*()/{next};\"\\\n\"     {if(hide[section]) next};\"\\\n\"     {f=\\\"D\\\"}; \\$ 0~/\\(\\).*\\|/{f=\\\"T\\\"};\"\\\n\"     {split(\\$ 0,a,/\\||\\r/); split(a[2],s)};\"\\\n\"     s[1]~/^[@?]/{print f,s[1],s[1]; next};\"\\\n\"     s[1]~prfx {split(s[1],t,\\\"@\\\"); print f,t[1],substr(t[1],length(prfx))}\"\\\n\"     ' prfx=^$ac_symprfx\"\n  else\n    lt_cv_sys_global_symbol_pipe=\"sed -n -e 's/^.*[\t ]\\($symcode$symcode*\\)[\t ][\t ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'\"\n  fi\n  lt_cv_sys_global_symbol_pipe=\"$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'\"\n\n  # Check to see that the pipe works correctly.\n  pipe_works=no\n\n  rm -f conftest*\n  cat > conftest.$ac_ext <<_LT_EOF\n#ifdef __cplusplus\nextern \"C\" {\n#endif\nchar nm_test_var;\nvoid nm_test_func(void);\nvoid nm_test_func(void){}\n#ifdef __cplusplus\n}\n#endif\nint main(){nm_test_var='a';nm_test_func();return(0);}\n_LT_EOF\n\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    # Now try to grab the symbols.\n    nlist=conftest.nm\n    if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$NM conftest.$ac_objext \\| \"$lt_cv_sys_global_symbol_pipe\" \\> $nlist\\\"\"; } >&5\n  (eval $NM conftest.$ac_objext \\| \"$lt_cv_sys_global_symbol_pipe\" \\> $nlist) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s \"$nlist\"; then\n      # Try sorting and uniquifying the output.\n      if sort \"$nlist\" | uniq > \"$nlist\"T; then\n\tmv -f \"$nlist\"T \"$nlist\"\n      else\n\trm -f \"$nlist\"T\n      fi\n\n      # Make sure that we snagged all the symbols we need.\n      if $GREP ' nm_test_var$' \"$nlist\" >/dev/null; then\n\tif $GREP ' nm_test_func$' \"$nlist\" >/dev/null; then\n\t  cat <<_LT_EOF > conftest.$ac_ext\n/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */\n#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE\n/* DATA imports from DLLs on WIN32 can't be const, because runtime\n   relocations are performed -- see ld's documentation on pseudo-relocs.  */\n# define LT_DLSYM_CONST\n#elif defined __osf__\n/* This system does not cope well with relocations in const data.  */\n# define LT_DLSYM_CONST\n#else\n# define LT_DLSYM_CONST const\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n_LT_EOF\n\t  # Now generate the symbol file.\n\t  eval \"$lt_cv_sys_global_symbol_to_cdecl\"' < \"$nlist\" | $GREP -v main >> conftest.$ac_ext'\n\n\t  cat <<_LT_EOF >> conftest.$ac_ext\n\n/* The mapping between symbol names and symbols.  */\nLT_DLSYM_CONST struct {\n  const char *name;\n  void       *address;\n}\nlt__PROGRAM__LTX_preloaded_symbols[] =\n{\n  { \"@PROGRAM@\", (void *) 0 },\n_LT_EOF\n\t  $SED \"s/^$symcode$symcode* .* \\(.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/\" < \"$nlist\" | $GREP -v main >> conftest.$ac_ext\n\t  cat <<\\_LT_EOF >> conftest.$ac_ext\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt__PROGRAM__LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\n_LT_EOF\n\t  # Now try linking the two files.\n\t  mv conftest.$ac_objext conftstm.$ac_objext\n\t  lt_globsym_save_LIBS=$LIBS\n\t  lt_globsym_save_CFLAGS=$CFLAGS\n\t  LIBS=conftstm.$ac_objext\n\t  CFLAGS=\"$CFLAGS$lt_prog_compiler_no_builtin_flag\"\n\t  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_link\\\"\"; } >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s conftest$ac_exeext; then\n\t    pipe_works=yes\n\t  fi\n\t  LIBS=$lt_globsym_save_LIBS\n\t  CFLAGS=$lt_globsym_save_CFLAGS\n\telse\n\t  echo \"cannot find nm_test_func in $nlist\" >&5\n\tfi\n      else\n\techo \"cannot find nm_test_var in $nlist\" >&5\n      fi\n    else\n      echo \"cannot run $lt_cv_sys_global_symbol_pipe\" >&5\n    fi\n  else\n    echo \"$progname: failed program was:\" >&5\n    cat conftest.$ac_ext >&5\n  fi\n  rm -rf conftest* conftst*\n\n  # Do not use the global_symbol_pipe unless it works.\n  if test yes = \"$pipe_works\"; then\n    break\n  else\n    lt_cv_sys_global_symbol_pipe=\n  fi\ndone\n\nfi\n\nif test -z \"$lt_cv_sys_global_symbol_pipe\"; then\n  lt_cv_sys_global_symbol_to_cdecl=\nfi\nif test -z \"$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: failed\" >&5\n$as_echo \"failed\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: ok\" >&5\n$as_echo \"ok\" >&6; }\nfi\n\n# Response file support.\nif test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n  nm_file_list_spec='@'\nelif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then\n  nm_file_list_spec='@'\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for sysroot\" >&5\n$as_echo_n \"checking for sysroot... \" >&6; }\n\n# Check whether --with-sysroot was given.\nif test \"${with_sysroot+set}\" = set; then :\n  withval=$with_sysroot;\nelse\n  with_sysroot=no\nfi\n\n\nlt_sysroot=\ncase $with_sysroot in #(\n yes)\n   if test yes = \"$GCC\"; then\n     lt_sysroot=`$CC --print-sysroot 2>/dev/null`\n   fi\n   ;; #(\n /*)\n   lt_sysroot=`echo \"$with_sysroot\" | sed -e \"$sed_quote_subst\"`\n   ;; #(\n no|'')\n   ;; #(\n *)\n   { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $with_sysroot\" >&5\n$as_echo \"$with_sysroot\" >&6; }\n   as_fn_error $? \"The sysroot must be an absolute path.\" \"$LINENO\" 5\n   ;;\nesac\n\n { $as_echo \"$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}\" >&5\n$as_echo \"${lt_sysroot:-no}\" >&6; }\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for a working dd\" >&5\n$as_echo_n \"checking for a working dd... \" >&6; }\nif ${ac_cv_path_lt_DD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  printf 0123456789abcdef0123456789abcdef >conftest.i\ncat conftest.i conftest.i >conftest2.i\n: ${lt_DD:=$DD}\nif test -z \"$lt_DD\"; then\n  ac_path_lt_DD_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in dd; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_lt_DD=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_lt_DD\" || continue\nif \"$ac_path_lt_DD\" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then\n  cmp -s conftest.i conftest.out \\\n  && ac_cv_path_lt_DD=\"$ac_path_lt_DD\" ac_path_lt_DD_found=:\nfi\n      $ac_path_lt_DD_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_lt_DD\"; then\n    :\n  fi\nelse\n  ac_cv_path_lt_DD=$lt_DD\nfi\n\nrm -f conftest.i conftest2.i conftest.out\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD\" >&5\n$as_echo \"$ac_cv_path_lt_DD\" >&6; }\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes\" >&5\n$as_echo_n \"checking how to truncate binary pipes... \" >&6; }\nif ${lt_cv_truncate_bin+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  printf 0123456789abcdef0123456789abcdef >conftest.i\ncat conftest.i conftest.i >conftest2.i\nlt_cv_truncate_bin=\nif \"$ac_cv_path_lt_DD\" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then\n  cmp -s conftest.i conftest.out \\\n  && lt_cv_truncate_bin=\"$ac_cv_path_lt_DD bs=4096 count=1\"\nfi\nrm -f conftest.i conftest2.i conftest.out\ntest -z \"$lt_cv_truncate_bin\" && lt_cv_truncate_bin=\"$SED -e 4q\"\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin\" >&5\n$as_echo \"$lt_cv_truncate_bin\" >&6; }\n\n\n\n\n\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n# Check whether --enable-libtool-lock was given.\nif test \"${enable_libtool_lock+set}\" = set; then :\n  enableval=$enable_libtool_lock;\nfi\n\ntest no = \"$enable_libtool_lock\" || enable_libtool_lock=yes\n\n# Some flags need to be propagated to the compiler or linker for good\n# libtool support.\ncase $host in\nia64-*-hpux*)\n  # Find out what ABI is being produced by ac_compile, and set mode\n  # options accordingly.\n  echo 'int i;' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    case `/usr/bin/file conftest.$ac_objext` in\n      *ELF-32*)\n\tHPUX_IA64_MODE=32\n\t;;\n      *ELF-64*)\n\tHPUX_IA64_MODE=64\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n*-*-irix6*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo '#line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    if test yes = \"$lt_cv_prog_gnu_ld\"; then\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -melf32bsmip\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -melf32bmipn32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -melf64bmip\"\n\t;;\n      esac\n    else\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -32\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -n32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -64\"\n\t  ;;\n      esac\n    fi\n  fi\n  rm -rf conftest*\n  ;;\n\nmips64*-*linux*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo '#line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    emul=elf\n    case `/usr/bin/file conftest.$ac_objext` in\n      *32-bit*)\n\temul=\"${emul}32\"\n\t;;\n      *64-bit*)\n\temul=\"${emul}64\"\n\t;;\n    esac\n    case `/usr/bin/file conftest.$ac_objext` in\n      *MSB*)\n\temul=\"${emul}btsmip\"\n\t;;\n      *LSB*)\n\temul=\"${emul}ltsmip\"\n\t;;\n    esac\n    case `/usr/bin/file conftest.$ac_objext` in\n      *N32*)\n\temul=\"${emul}n32\"\n\t;;\n    esac\n    LD=\"${LD-ld} -m $emul\"\n  fi\n  rm -rf conftest*\n  ;;\n\nx86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \\\ns390*-*linux*|s390*-*tpf*|sparc*-*linux*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.  Note that the listed cases only cover the\n  # situations where additional linker options are needed (such as when\n  # doing 32-bit compilation for a host where ld defaults to 64-bit, or\n  # vice versa); the common cases where no linker options are needed do\n  # not appear in the list.\n  echo 'int i;' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    case `/usr/bin/file conftest.o` in\n      *32-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_i386_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    case `/usr/bin/file conftest.o` in\n\t      *x86-64*)\n\t\tLD=\"${LD-ld} -m elf32_x86_64\"\n\t\t;;\n\t      *)\n\t\tLD=\"${LD-ld} -m elf_i386\"\n\t\t;;\n\t    esac\n\t    ;;\n\t  powerpc64le-*linux*)\n\t    LD=\"${LD-ld} -m elf32lppclinux\"\n\t    ;;\n\t  powerpc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32ppclinux\"\n\t    ;;\n\t  s390x-*linux*)\n\t    LD=\"${LD-ld} -m elf_s390\"\n\t    ;;\n\t  sparc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32_sparc\"\n\t    ;;\n\tesac\n\t;;\n      *64-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_x86_64_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    LD=\"${LD-ld} -m elf_x86_64\"\n\t    ;;\n\t  powerpcle-*linux*)\n\t    LD=\"${LD-ld} -m elf64lppc\"\n\t    ;;\n\t  powerpc-*linux*)\n\t    LD=\"${LD-ld} -m elf64ppc\"\n\t    ;;\n\t  s390*-*linux*|s390*-*tpf*)\n\t    LD=\"${LD-ld} -m elf64_s390\"\n\t    ;;\n\t  sparc*-*linux*)\n\t    LD=\"${LD-ld} -m elf64_sparc\"\n\t    ;;\n\tesac\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n\n*-*-sco3.2v5*)\n  # On SCO OpenServer 5, we need -belf to get full-featured binaries.\n  SAVE_CFLAGS=$CFLAGS\n  CFLAGS=\"$CFLAGS -belf\"\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf\" >&5\n$as_echo_n \"checking whether the C compiler needs -belf... \" >&6; }\nif ${lt_cv_cc_needs_belf+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n     cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  lt_cv_cc_needs_belf=yes\nelse\n  lt_cv_cc_needs_belf=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n     ac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf\" >&5\n$as_echo \"$lt_cv_cc_needs_belf\" >&6; }\n  if test yes != \"$lt_cv_cc_needs_belf\"; then\n    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf\n    CFLAGS=$SAVE_CFLAGS\n  fi\n  ;;\n*-*solaris*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo 'int i;' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    case `/usr/bin/file conftest.o` in\n    *64-bit*)\n      case $lt_cv_prog_gnu_ld in\n      yes*)\n        case $host in\n        i?86-*-solaris*|x86_64-*-solaris*)\n          LD=\"${LD-ld} -m elf_x86_64\"\n          ;;\n        sparc*-*-solaris*)\n          LD=\"${LD-ld} -m elf64_sparc\"\n          ;;\n        esac\n        # GNU ld 2.21 introduced _sol2 emulations.  Use them if available.\n        if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then\n          LD=${LD-ld}_sol2\n        fi\n        ;;\n      *)\n\tif ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then\n\t  LD=\"${LD-ld} -64\"\n\tfi\n\t;;\n      esac\n      ;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\nesac\n\nneed_locks=$enable_libtool_lock\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}mt\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}mt; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_MANIFEST_TOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$MANIFEST_TOOL\"; then\n  ac_cv_prog_MANIFEST_TOOL=\"$MANIFEST_TOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_MANIFEST_TOOL=\"${ac_tool_prefix}mt\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nMANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL\nif test -n \"$MANIFEST_TOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL\" >&5\n$as_echo \"$MANIFEST_TOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_MANIFEST_TOOL\"; then\n  ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL\n  # Extract the first word of \"mt\", so it can be a program name with args.\nset dummy mt; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_MANIFEST_TOOL\"; then\n  ac_cv_prog_ac_ct_MANIFEST_TOOL=\"$ac_ct_MANIFEST_TOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_MANIFEST_TOOL=\"mt\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL\nif test -n \"$ac_ct_MANIFEST_TOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL\" >&5\n$as_echo \"$ac_ct_MANIFEST_TOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_MANIFEST_TOOL\" = x; then\n    MANIFEST_TOOL=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL\n  fi\nelse\n  MANIFEST_TOOL=\"$ac_cv_prog_MANIFEST_TOOL\"\nfi\n\ntest -z \"$MANIFEST_TOOL\" && MANIFEST_TOOL=mt\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool\" >&5\n$as_echo_n \"checking if $MANIFEST_TOOL is a manifest tool... \" >&6; }\nif ${lt_cv_path_mainfest_tool+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_path_mainfest_tool=no\n  echo \"$as_me:$LINENO: $MANIFEST_TOOL '-?'\" >&5\n  $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out\n  cat conftest.err >&5\n  if $GREP 'Manifest Tool' conftest.out > /dev/null; then\n    lt_cv_path_mainfest_tool=yes\n  fi\n  rm -f conftest*\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool\" >&5\n$as_echo \"$lt_cv_path_mainfest_tool\" >&6; }\nif test yes != \"$lt_cv_path_mainfest_tool\"; then\n  MANIFEST_TOOL=:\nfi\n\n\n\n\n\n\n  case $host_os in\n    rhapsody* | darwin*)\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}dsymutil\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}dsymutil; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DSYMUTIL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DSYMUTIL\"; then\n  ac_cv_prog_DSYMUTIL=\"$DSYMUTIL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DSYMUTIL=\"${ac_tool_prefix}dsymutil\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDSYMUTIL=$ac_cv_prog_DSYMUTIL\nif test -n \"$DSYMUTIL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL\" >&5\n$as_echo \"$DSYMUTIL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_DSYMUTIL\"; then\n  ac_ct_DSYMUTIL=$DSYMUTIL\n  # Extract the first word of \"dsymutil\", so it can be a program name with args.\nset dummy dsymutil; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DSYMUTIL\"; then\n  ac_cv_prog_ac_ct_DSYMUTIL=\"$ac_ct_DSYMUTIL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DSYMUTIL=\"dsymutil\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL\nif test -n \"$ac_ct_DSYMUTIL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL\" >&5\n$as_echo \"$ac_ct_DSYMUTIL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_DSYMUTIL\" = x; then\n    DSYMUTIL=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DSYMUTIL=$ac_ct_DSYMUTIL\n  fi\nelse\n  DSYMUTIL=\"$ac_cv_prog_DSYMUTIL\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}nmedit\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}nmedit; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_NMEDIT+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$NMEDIT\"; then\n  ac_cv_prog_NMEDIT=\"$NMEDIT\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_NMEDIT=\"${ac_tool_prefix}nmedit\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nNMEDIT=$ac_cv_prog_NMEDIT\nif test -n \"$NMEDIT\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $NMEDIT\" >&5\n$as_echo \"$NMEDIT\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_NMEDIT\"; then\n  ac_ct_NMEDIT=$NMEDIT\n  # Extract the first word of \"nmedit\", so it can be a program name with args.\nset dummy nmedit; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_NMEDIT+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_NMEDIT\"; then\n  ac_cv_prog_ac_ct_NMEDIT=\"$ac_ct_NMEDIT\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_NMEDIT=\"nmedit\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT\nif test -n \"$ac_ct_NMEDIT\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT\" >&5\n$as_echo \"$ac_ct_NMEDIT\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_NMEDIT\" = x; then\n    NMEDIT=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    NMEDIT=$ac_ct_NMEDIT\n  fi\nelse\n  NMEDIT=\"$ac_cv_prog_NMEDIT\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}lipo\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}lipo; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_LIPO+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$LIPO\"; then\n  ac_cv_prog_LIPO=\"$LIPO\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_LIPO=\"${ac_tool_prefix}lipo\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nLIPO=$ac_cv_prog_LIPO\nif test -n \"$LIPO\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $LIPO\" >&5\n$as_echo \"$LIPO\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_LIPO\"; then\n  ac_ct_LIPO=$LIPO\n  # Extract the first word of \"lipo\", so it can be a program name with args.\nset dummy lipo; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_LIPO+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_LIPO\"; then\n  ac_cv_prog_ac_ct_LIPO=\"$ac_ct_LIPO\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_LIPO=\"lipo\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO\nif test -n \"$ac_ct_LIPO\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO\" >&5\n$as_echo \"$ac_ct_LIPO\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_LIPO\" = x; then\n    LIPO=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    LIPO=$ac_ct_LIPO\n  fi\nelse\n  LIPO=\"$ac_cv_prog_LIPO\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}otool\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}otool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OTOOL\"; then\n  ac_cv_prog_OTOOL=\"$OTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OTOOL=\"${ac_tool_prefix}otool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOTOOL=$ac_cv_prog_OTOOL\nif test -n \"$OTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OTOOL\" >&5\n$as_echo \"$OTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OTOOL\"; then\n  ac_ct_OTOOL=$OTOOL\n  # Extract the first word of \"otool\", so it can be a program name with args.\nset dummy otool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OTOOL\"; then\n  ac_cv_prog_ac_ct_OTOOL=\"$ac_ct_OTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OTOOL=\"otool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL\nif test -n \"$ac_ct_OTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL\" >&5\n$as_echo \"$ac_ct_OTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OTOOL\" = x; then\n    OTOOL=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OTOOL=$ac_ct_OTOOL\n  fi\nelse\n  OTOOL=\"$ac_cv_prog_OTOOL\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}otool64\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}otool64; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OTOOL64+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OTOOL64\"; then\n  ac_cv_prog_OTOOL64=\"$OTOOL64\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OTOOL64=\"${ac_tool_prefix}otool64\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOTOOL64=$ac_cv_prog_OTOOL64\nif test -n \"$OTOOL64\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OTOOL64\" >&5\n$as_echo \"$OTOOL64\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OTOOL64\"; then\n  ac_ct_OTOOL64=$OTOOL64\n  # Extract the first word of \"otool64\", so it can be a program name with args.\nset dummy otool64; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OTOOL64+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OTOOL64\"; then\n  ac_cv_prog_ac_ct_OTOOL64=\"$ac_ct_OTOOL64\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OTOOL64=\"otool64\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64\nif test -n \"$ac_ct_OTOOL64\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64\" >&5\n$as_echo \"$ac_ct_OTOOL64\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OTOOL64\" = x; then\n    OTOOL64=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OTOOL64=$ac_ct_OTOOL64\n  fi\nelse\n  OTOOL64=\"$ac_cv_prog_OTOOL64\"\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag\" >&5\n$as_echo_n \"checking for -single_module linker flag... \" >&6; }\nif ${lt_cv_apple_cc_single_mod+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_apple_cc_single_mod=no\n      if test -z \"$LT_MULTI_MODULE\"; then\n\t# By default we will add the -single_module flag. You can override\n\t# by either setting the environment variable LT_MULTI_MODULE\n\t# non-empty at configure time, or by adding -multi_module to the\n\t# link flags.\n\trm -rf libconftest.dylib*\n\techo \"int foo(void){return 1;}\" > conftest.c\n\techo \"$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n-dynamiclib -Wl,-single_module conftest.c\" >&5\n\t$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n\t  -dynamiclib -Wl,-single_module conftest.c 2>conftest.err\n        _lt_result=$?\n\t# If there is a non-empty error log, and \"single_module\"\n\t# appears in it, assume the flag caused a linker warning\n        if test -s conftest.err && $GREP single_module conftest.err; then\n\t  cat conftest.err >&5\n\t# Otherwise, if the output was created with a 0 exit code from\n\t# the compiler, it worked.\n\telif test -f libconftest.dylib && test 0 = \"$_lt_result\"; then\n\t  lt_cv_apple_cc_single_mod=yes\n\telse\n\t  cat conftest.err >&5\n\tfi\n\trm -rf libconftest.dylib*\n\trm -f conftest.*\n      fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod\" >&5\n$as_echo \"$lt_cv_apple_cc_single_mod\" >&6; }\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag\" >&5\n$as_echo_n \"checking for -exported_symbols_list linker flag... \" >&6; }\nif ${lt_cv_ld_exported_symbols_list+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ld_exported_symbols_list=no\n      save_LDFLAGS=$LDFLAGS\n      echo \"_main\" > conftest.sym\n      LDFLAGS=\"$LDFLAGS -Wl,-exported_symbols_list,conftest.sym\"\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  lt_cv_ld_exported_symbols_list=yes\nelse\n  lt_cv_ld_exported_symbols_list=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n\tLDFLAGS=$save_LDFLAGS\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list\" >&5\n$as_echo \"$lt_cv_ld_exported_symbols_list\" >&6; }\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag\" >&5\n$as_echo_n \"checking for -force_load linker flag... \" >&6; }\nif ${lt_cv_ld_force_load+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ld_force_load=no\n      cat > conftest.c << _LT_EOF\nint forced_loaded() { return 2;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS -c -o conftest.o conftest.c\" >&5\n      $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5\n      echo \"$AR cru libconftest.a conftest.o\" >&5\n      $AR cru libconftest.a conftest.o 2>&5\n      echo \"$RANLIB libconftest.a\" >&5\n      $RANLIB libconftest.a 2>&5\n      cat > conftest.c << _LT_EOF\nint main() { return 0;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a\" >&5\n      $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err\n      _lt_result=$?\n      if test -s conftest.err && $GREP force_load conftest.err; then\n\tcat conftest.err >&5\n      elif test -f conftest && test 0 = \"$_lt_result\" && $GREP forced_load conftest >/dev/null 2>&1; then\n\tlt_cv_ld_force_load=yes\n      else\n\tcat conftest.err >&5\n      fi\n        rm -f conftest.err libconftest.a conftest conftest.c\n        rm -rf conftest.dSYM\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load\" >&5\n$as_echo \"$lt_cv_ld_force_load\" >&6; }\n    case $host_os in\n    rhapsody* | darwin1.[012])\n      _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;;\n    darwin1.*)\n      _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;\n    darwin*) # darwin 5.x on\n      # if running on 10.5 or later, the deployment target defaults\n      # to the OS version, if on x86, and 10.4, the deployment\n      # target defaults to 10.4. Don't you love it?\n      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in\n\t10.0,*86*-darwin8*|10.0,*-darwin[91]*)\n\t  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;\n\t10.[012][,.]*)\n\t  _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;\n\t10.*)\n\t  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;\n      esac\n    ;;\n  esac\n    if test yes = \"$lt_cv_apple_cc_single_mod\"; then\n      _lt_dar_single_mod='$single_module'\n    fi\n    if test yes = \"$lt_cv_ld_exported_symbols_list\"; then\n      _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'\n    else\n      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib'\n    fi\n    if test : != \"$DSYMUTIL\" && test no = \"$lt_cv_ld_force_load\"; then\n      _lt_dsymutil='~$DSYMUTIL $lib || :'\n    else\n      _lt_dsymutil=\n    fi\n    ;;\n  esac\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\nfor ac_header in dlfcn.h\ndo :\n  ac_fn_c_check_header_compile \"$LINENO\" \"dlfcn.h\" \"ac_cv_header_dlfcn_h\" \"$ac_includes_default\n\"\nif test \"x$ac_cv_header_dlfcn_h\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_DLFCN_H 1\n_ACEOF\n\nfi\n\ndone\n\n\n\n\n\n# Set options\n# Check whether --enable-static was given.\nif test \"${enable_static+set}\" = set; then :\n  enableval=$enable_static; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_static=yes ;;\n    no) enable_static=no ;;\n    *)\n     enable_static=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_static=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  enable_static=no\nfi\n\n\n\n\n\n\n\nenable_win32_dll=yes\n\ncase $host in\n*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}as\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}as; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_AS+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$AS\"; then\n  ac_cv_prog_AS=\"$AS\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_AS=\"${ac_tool_prefix}as\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nAS=$ac_cv_prog_AS\nif test -n \"$AS\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $AS\" >&5\n$as_echo \"$AS\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_AS\"; then\n  ac_ct_AS=$AS\n  # Extract the first word of \"as\", so it can be a program name with args.\nset dummy as; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_AS+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_AS\"; then\n  ac_cv_prog_ac_ct_AS=\"$ac_ct_AS\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_AS=\"as\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_AS=$ac_cv_prog_ac_ct_AS\nif test -n \"$ac_ct_AS\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS\" >&5\n$as_echo \"$ac_ct_AS\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_AS\" = x; then\n    AS=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    AS=$ac_ct_AS\n  fi\nelse\n  AS=\"$ac_cv_prog_AS\"\nfi\n\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}dlltool\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DLLTOOL\"; then\n  ac_cv_prog_DLLTOOL=\"$DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DLLTOOL=\"${ac_tool_prefix}dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDLLTOOL=$ac_cv_prog_DLLTOOL\nif test -n \"$DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DLLTOOL\" >&5\n$as_echo \"$DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_DLLTOOL\"; then\n  ac_ct_DLLTOOL=$DLLTOOL\n  # Extract the first word of \"dlltool\", so it can be a program name with args.\nset dummy dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DLLTOOL\"; then\n  ac_cv_prog_ac_ct_DLLTOOL=\"$ac_ct_DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DLLTOOL=\"dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL\nif test -n \"$ac_ct_DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL\" >&5\n$as_echo \"$ac_ct_DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_DLLTOOL\" = x; then\n    DLLTOOL=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DLLTOOL=$ac_ct_DLLTOOL\n  fi\nelse\n  DLLTOOL=\"$ac_cv_prog_DLLTOOL\"\nfi\n\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}objdump\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OBJDUMP\"; then\n  ac_cv_prog_OBJDUMP=\"$OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OBJDUMP=\"${ac_tool_prefix}objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOBJDUMP=$ac_cv_prog_OBJDUMP\nif test -n \"$OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OBJDUMP\" >&5\n$as_echo \"$OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OBJDUMP\"; then\n  ac_ct_OBJDUMP=$OBJDUMP\n  # Extract the first word of \"objdump\", so it can be a program name with args.\nset dummy objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OBJDUMP\"; then\n  ac_cv_prog_ac_ct_OBJDUMP=\"$ac_ct_OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OBJDUMP=\"objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP\nif test -n \"$ac_ct_OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP\" >&5\n$as_echo \"$ac_ct_OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OBJDUMP\" = x; then\n    OBJDUMP=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OBJDUMP=$ac_ct_OBJDUMP\n  fi\nelse\n  OBJDUMP=\"$ac_cv_prog_OBJDUMP\"\nfi\n\n  ;;\nesac\n\ntest -z \"$AS\" && AS=as\n\n\n\n\n\ntest -z \"$DLLTOOL\" && DLLTOOL=dlltool\n\n\n\n\n\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n\n\n\n\n\n\n\n        enable_dlopen=no\n\n\n\n            # Check whether --enable-shared was given.\nif test \"${enable_shared+set}\" = set; then :\n  enableval=$enable_shared; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_shared=yes ;;\n    no) enable_shared=no ;;\n    *)\n      enable_shared=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_shared=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  enable_shared=yes\nfi\n\n\n\n\n\n\n\n\n\n\n\n# Check whether --with-pic was given.\nif test \"${with_pic+set}\" = set; then :\n  withval=$with_pic; lt_p=${PACKAGE-default}\n    case $withval in\n    yes|no) pic_mode=$withval ;;\n    *)\n      pic_mode=default\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for lt_pkg in $withval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$lt_pkg\" = \"X$lt_p\"; then\n\t  pic_mode=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  pic_mode=default\nfi\n\n\n\n\n\n\n\n\n  # Check whether --enable-fast-install was given.\nif test \"${enable_fast_install+set}\" = set; then :\n  enableval=$enable_fast_install; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_fast_install=yes ;;\n    no) enable_fast_install=no ;;\n    *)\n      enable_fast_install=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_fast_install=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  enable_fast_install=yes\nfi\n\n\n\n\n\n\n\n\n  shared_archive_member_spec=\ncase $host,$enable_shared in\npower*-*-aix[5-9]*,yes)\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide\" >&5\n$as_echo_n \"checking which variant of shared library versioning to provide... \" >&6; }\n\n# Check whether --with-aix-soname was given.\nif test \"${with_aix_soname+set}\" = set; then :\n  withval=$with_aix_soname; case $withval in\n    aix|svr4|both)\n      ;;\n    *)\n      as_fn_error $? \"Unknown argument to --with-aix-soname\" \"$LINENO\" 5\n      ;;\n    esac\n    lt_cv_with_aix_soname=$with_aix_soname\nelse\n  if ${lt_cv_with_aix_soname+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_with_aix_soname=aix\nfi\n\n    with_aix_soname=$lt_cv_with_aix_soname\nfi\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $with_aix_soname\" >&5\n$as_echo \"$with_aix_soname\" >&6; }\n  if test aix != \"$with_aix_soname\"; then\n    # For the AIX way of multilib, we name the shared archive member\n    # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o',\n    # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File.\n    # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag,\n    # the AIX toolchain works better with OBJECT_MODE set (default 32).\n    if test 64 = \"${OBJECT_MODE-32}\"; then\n      shared_archive_member_spec=shr_64\n    else\n      shared_archive_member_spec=shr\n    fi\n  fi\n  ;;\n*)\n  with_aix_soname=aix\n  ;;\nesac\n\n\n\n\n\n\n\n\n\n\n# This can be used to rebuild libtool when needed\nLIBTOOL_DEPS=$ltmain\n\n# Always use our own libtool.\nLIBTOOL=\"${CONFIG_SHELL-$SHELL} \"'$(top_builddir)/libtool'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ntest -z \"$LN_S\" && LN_S=\"ln -s\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nif test -n \"${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for objdir\" >&5\n$as_echo_n \"checking for objdir... \" >&6; }\nif ${lt_cv_objdir+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  rm -f .libs 2>/dev/null\nmkdir .libs 2>/dev/null\nif test -d .libs; then\n  lt_cv_objdir=.libs\nelse\n  # MS-DOS does not allow filenames that begin with a dot.\n  lt_cv_objdir=_libs\nfi\nrmdir .libs 2>/dev/null\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir\" >&5\n$as_echo \"$lt_cv_objdir\" >&6; }\nobjdir=$lt_cv_objdir\n\n\n\n\n\ncat >>confdefs.h <<_ACEOF\n#define LT_OBJDIR \"$lt_cv_objdir/\"\n_ACEOF\n\n\n\n\ncase $host_os in\naix3*)\n  # AIX sometimes has problems with the GCC collect2 program.  For some\n  # reason, if we set the COLLECT_NAMES environment variable, the problems\n  # vanish in a puff of smoke.\n  if test set != \"${COLLECT_NAMES+set}\"; then\n    COLLECT_NAMES=\n    export COLLECT_NAMES\n  fi\n  ;;\nesac\n\n# Global variables:\nofile=libtool\ncan_build_shared=yes\n\n# All known linkers require a '.a' archive for static linking (except MSVC,\n# which needs '.lib').\nlibext=a\n\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n\nold_CC=$CC\nold_CFLAGS=$CFLAGS\n\n# Set sane defaults for various variables\ntest -z \"$CC\" && CC=cc\ntest -z \"$LTCC\" && LTCC=$CC\ntest -z \"$LTCFLAGS\" && LTCFLAGS=$CFLAGS\ntest -z \"$LD\" && LD=ld\ntest -z \"$ac_objext\" && ac_objext=o\n\nfunc_cc_basename $compiler\ncc_basename=$func_cc_basename_result\n\n\n# Only perform the check for file, if the check method requires it\ntest -z \"$MAGIC_CMD\" && MAGIC_CMD=file\ncase $deplibs_check_method in\nfile_magic*)\n  if test \"$file_magic_cmd\" = '$MAGIC_CMD'; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file\" >&5\n$as_echo_n \"checking for ${ac_tool_prefix}file... \" >&6; }\nif ${lt_cv_path_MAGIC_CMD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case $MAGIC_CMD in\n[\\\\/*] |  ?:[\\\\/]*)\n  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.\n  ;;\n*)\n  lt_save_MAGIC_CMD=$MAGIC_CMD\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n  ac_dummy=\"/usr/bin$PATH_SEPARATOR$PATH\"\n  for ac_dir in $ac_dummy; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/${ac_tool_prefix}file\"; then\n      lt_cv_path_MAGIC_CMD=$ac_dir/\"${ac_tool_prefix}file\"\n      if test -n \"$file_magic_test_file\"; then\n\tcase $deplibs_check_method in\n\t\"file_magic \"*)\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"file_magic \\(.*\\)\"`\n\t  MAGIC_CMD=$lt_cv_path_MAGIC_CMD\n\t  if eval $file_magic_cmd \\$file_magic_test_file 2> /dev/null |\n\t    $EGREP \"$file_magic_regex\" > /dev/null; then\n\t    :\n\t  else\n\t    cat <<_LT_EOF 1>&2\n\n*** Warning: the command libtool uses to detect shared libraries,\n*** $file_magic_cmd, produces output that libtool cannot recognize.\n*** The result is that libtool may fail to recognize shared libraries\n*** as such.  This will affect the creation of libtool libraries that\n*** depend on shared libraries, but programs linked with such libtool\n*** libraries will work regardless of this problem.  Nevertheless, you\n*** may want to report the problem to your system manager and/or to\n*** bug-libtool@gnu.org\n\n_LT_EOF\n\t  fi ;;\n\tesac\n      fi\n      break\n    fi\n  done\n  IFS=$lt_save_ifs\n  MAGIC_CMD=$lt_save_MAGIC_CMD\n  ;;\nesac\nfi\n\nMAGIC_CMD=$lt_cv_path_MAGIC_CMD\nif test -n \"$MAGIC_CMD\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD\" >&5\n$as_echo \"$MAGIC_CMD\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n\n\n\nif test -z \"$lt_cv_path_MAGIC_CMD\"; then\n  if test -n \"$ac_tool_prefix\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for file\" >&5\n$as_echo_n \"checking for file... \" >&6; }\nif ${lt_cv_path_MAGIC_CMD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case $MAGIC_CMD in\n[\\\\/*] |  ?:[\\\\/]*)\n  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.\n  ;;\n*)\n  lt_save_MAGIC_CMD=$MAGIC_CMD\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n  ac_dummy=\"/usr/bin$PATH_SEPARATOR$PATH\"\n  for ac_dir in $ac_dummy; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/file\"; then\n      lt_cv_path_MAGIC_CMD=$ac_dir/\"file\"\n      if test -n \"$file_magic_test_file\"; then\n\tcase $deplibs_check_method in\n\t\"file_magic \"*)\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"file_magic \\(.*\\)\"`\n\t  MAGIC_CMD=$lt_cv_path_MAGIC_CMD\n\t  if eval $file_magic_cmd \\$file_magic_test_file 2> /dev/null |\n\t    $EGREP \"$file_magic_regex\" > /dev/null; then\n\t    :\n\t  else\n\t    cat <<_LT_EOF 1>&2\n\n*** Warning: the command libtool uses to detect shared libraries,\n*** $file_magic_cmd, produces output that libtool cannot recognize.\n*** The result is that libtool may fail to recognize shared libraries\n*** as such.  This will affect the creation of libtool libraries that\n*** depend on shared libraries, but programs linked with such libtool\n*** libraries will work regardless of this problem.  Nevertheless, you\n*** may want to report the problem to your system manager and/or to\n*** bug-libtool@gnu.org\n\n_LT_EOF\n\t  fi ;;\n\tesac\n      fi\n      break\n    fi\n  done\n  IFS=$lt_save_ifs\n  MAGIC_CMD=$lt_save_MAGIC_CMD\n  ;;\nesac\nfi\n\nMAGIC_CMD=$lt_cv_path_MAGIC_CMD\nif test -n \"$MAGIC_CMD\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD\" >&5\n$as_echo \"$MAGIC_CMD\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  else\n    MAGIC_CMD=:\n  fi\nfi\n\n  fi\n  ;;\nesac\n\n# Use C for the default configuration in the libtool script\n\nlt_save_CC=$CC\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n\n# Source file extension for C test sources.\nac_ext=c\n\n# Object file extension for compiled C test sources.\nobjext=o\nobjext=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"int some_variable = 0;\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='int main(){return(0);}'\n\n\n\n\n\n\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n\n# Save the default compiler, since it gets overwritten when the other\n# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.\ncompiler_DEFAULT=$CC\n\n# save warnings/boilerplate of simple test code\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_compile_test_code\" >conftest.$ac_ext\neval \"$ac_compile\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_compiler_boilerplate=`cat conftest.err`\n$RM conftest*\n\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_link_test_code\" >conftest.$ac_ext\neval \"$ac_link\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_linker_boilerplate=`cat conftest.err`\n$RM -r conftest*\n\n\n## CAVEAT EMPTOR:\n## There is no encapsulation within the following macros, do not change\n## the running order or otherwise move them around unless you know exactly\n## what you are doing...\nif test -n \"$compiler\"; then\n\nlt_prog_compiler_no_builtin_flag=\n\nif test yes = \"$GCC\"; then\n  case $cc_basename in\n  nvcc*)\n    lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;;\n  *)\n    lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;;\n  esac\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions\" >&5\n$as_echo_n \"checking if $compiler supports -fno-rtti -fno-exceptions... \" >&6; }\nif ${lt_cv_prog_compiler_rtti_exceptions+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_rtti_exceptions=no\n   ac_outfile=conftest.$ac_objext\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"-fno-rtti -fno-exceptions\"  ## exclude from sc_useless_quotes_in_assignment\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_rtti_exceptions=yes\n     fi\n   fi\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions\" >&5\n$as_echo \"$lt_cv_prog_compiler_rtti_exceptions\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler_rtti_exceptions\"; then\n    lt_prog_compiler_no_builtin_flag=\"$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions\"\nelse\n    :\nfi\n\nfi\n\n\n\n\n\n\n  lt_prog_compiler_wl=\nlt_prog_compiler_pic=\nlt_prog_compiler_static=\n\n\n  if test yes = \"$GCC\"; then\n    lt_prog_compiler_wl='-Wl,'\n    lt_prog_compiler_static='-static'\n\n    case $host_os in\n      aix*)\n      # All AIX code is PIC.\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\tlt_prog_compiler_static='-Bstatic'\n      fi\n      lt_prog_compiler_pic='-fPIC'\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            lt_prog_compiler_pic='-fPIC'\n        ;;\n      m68k)\n            # FIXME: we need at least 68020 code to build shared libraries, but\n            # adding the '-m68020' flag to GCC prevents building anything better,\n            # like '-m68040'.\n            lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4'\n        ;;\n      esac\n      ;;\n\n    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)\n      # PIC is the default for these OSes.\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      # Although the cygwin gcc ignores -fPIC, still need this for old-style\n      # (--disable-auto-import) libraries\n      lt_prog_compiler_pic='-DDLL_EXPORT'\n      case $host_os in\n      os2*)\n\tlt_prog_compiler_static='$wl-static'\n\t;;\n      esac\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      lt_prog_compiler_pic='-fno-common'\n      ;;\n\n    haiku*)\n      # PIC is the default for Haiku.\n      # The \"-static\" flag exists, but is broken.\n      lt_prog_compiler_static=\n      ;;\n\n    hpux*)\n      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit\n      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag\n      # sets the default TLS model and affects inlining.\n      case $host_cpu in\n      hppa*64*)\n\t# +Z the default\n\t;;\n      *)\n\tlt_prog_compiler_pic='-fPIC'\n\t;;\n      esac\n      ;;\n\n    interix[3-9]*)\n      # Interix 3.x gcc -fpic/-fPIC options generate broken code.\n      # Instead, we relocate shared libraries at runtime.\n      ;;\n\n    msdosdjgpp*)\n      # Just because we use GCC doesn't mean we suddenly get shared libraries\n      # on systems that don't support them.\n      lt_prog_compiler_can_build_shared=no\n      enable_shared=no\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      lt_prog_compiler_pic='-fPIC -shared'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tlt_prog_compiler_pic=-Kconform_pic\n      fi\n      ;;\n\n    *)\n      lt_prog_compiler_pic='-fPIC'\n      ;;\n    esac\n\n    case $cc_basename in\n    nvcc*) # Cuda Compiler Driver 2.2\n      lt_prog_compiler_wl='-Xlinker '\n      if test -n \"$lt_prog_compiler_pic\"; then\n        lt_prog_compiler_pic=\"-Xcompiler $lt_prog_compiler_pic\"\n      fi\n      ;;\n    esac\n  else\n    # PORTME Check for flag to pass linker flags through the system compiler.\n    case $host_os in\n    aix*)\n      lt_prog_compiler_wl='-Wl,'\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\tlt_prog_compiler_static='-Bstatic'\n      else\n\tlt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp'\n      fi\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      lt_prog_compiler_pic='-fno-common'\n      case $cc_basename in\n      nagfor*)\n        # NAG Fortran compiler\n        lt_prog_compiler_wl='-Wl,-Wl,,'\n        lt_prog_compiler_pic='-PIC'\n        lt_prog_compiler_static='-Bstatic'\n        ;;\n      esac\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      lt_prog_compiler_pic='-DDLL_EXPORT'\n      case $host_os in\n      os2*)\n\tlt_prog_compiler_static='$wl-static'\n\t;;\n      esac\n      ;;\n\n    hpux9* | hpux10* | hpux11*)\n      lt_prog_compiler_wl='-Wl,'\n      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but\n      # not for PA HP-UX.\n      case $host_cpu in\n      hppa*64*|ia64*)\n\t# +Z the default\n\t;;\n      *)\n\tlt_prog_compiler_pic='+Z'\n\t;;\n      esac\n      # Is there a better lt_prog_compiler_static that works with the bundled CC?\n      lt_prog_compiler_static='$wl-a ${wl}archive'\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      lt_prog_compiler_wl='-Wl,'\n      # PIC (with -KPIC) is the default.\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n      case $cc_basename in\n      # old Intel for x86_64, which still supported -KPIC.\n      ecc*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-KPIC'\n\tlt_prog_compiler_static='-static'\n        ;;\n      # icc used to be incompatible with GCC.\n      # ICC 10 doesn't accept -KPIC any more.\n      icc* | ifort*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-fPIC'\n\tlt_prog_compiler_static='-static'\n        ;;\n      # Lahey Fortran 8.1.\n      lf95*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='--shared'\n\tlt_prog_compiler_static='--static'\n\t;;\n      nagfor*)\n\t# NAG Fortran compiler\n\tlt_prog_compiler_wl='-Wl,-Wl,,'\n\tlt_prog_compiler_pic='-PIC'\n\tlt_prog_compiler_static='-Bstatic'\n\t;;\n      tcc*)\n\t# Fabrice Bellard et al's Tiny C Compiler\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-fPIC'\n\tlt_prog_compiler_static='-static'\n\t;;\n      pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)\n        # Portland Group compilers (*not* the Pentium gcc compiler,\n\t# which looks to be a dead project)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-fpic'\n\tlt_prog_compiler_static='-Bstatic'\n        ;;\n      ccc*)\n        lt_prog_compiler_wl='-Wl,'\n        # All Alpha code is PIC.\n        lt_prog_compiler_static='-non_shared'\n        ;;\n      xl* | bgxl* | bgf* | mpixl*)\n\t# IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-qpic'\n\tlt_prog_compiler_static='-qstaticlink'\n\t;;\n      *)\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ Ceres\\ Fortran* | *Sun*Fortran*\\ [1-7].* | *Sun*Fortran*\\ 8.[0-3]*)\n\t  # Sun Fortran 8.3 passes all unrecognized flags to the linker\n\t  lt_prog_compiler_pic='-KPIC'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  lt_prog_compiler_wl=''\n\t  ;;\n\t*Sun\\ F* | *Sun*Fortran*)\n\t  lt_prog_compiler_pic='-KPIC'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  lt_prog_compiler_wl='-Qoption ld '\n\t  ;;\n\t*Sun\\ C*)\n\t  # Sun C 5.9\n\t  lt_prog_compiler_pic='-KPIC'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  lt_prog_compiler_wl='-Wl,'\n\t  ;;\n        *Intel*\\ [CF]*Compiler*)\n\t  lt_prog_compiler_wl='-Wl,'\n\t  lt_prog_compiler_pic='-fPIC'\n\t  lt_prog_compiler_static='-static'\n\t  ;;\n\t*Portland\\ Group*)\n\t  lt_prog_compiler_wl='-Wl,'\n\t  lt_prog_compiler_pic='-fpic'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  ;;\n\tesac\n\t;;\n      esac\n      ;;\n\n    newsos6)\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      lt_prog_compiler_pic='-fPIC -shared'\n      ;;\n\n    osf3* | osf4* | osf5*)\n      lt_prog_compiler_wl='-Wl,'\n      # All OSF/1 code is PIC.\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    rdos*)\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    solaris*)\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      case $cc_basename in\n      f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)\n\tlt_prog_compiler_wl='-Qoption ld ';;\n      *)\n\tlt_prog_compiler_wl='-Wl,';;\n      esac\n      ;;\n\n    sunos4*)\n      lt_prog_compiler_wl='-Qoption ld '\n      lt_prog_compiler_pic='-PIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    sysv4 | sysv4.2uw2* | sysv4.3*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tlt_prog_compiler_pic='-Kconform_pic'\n\tlt_prog_compiler_static='-Bstatic'\n      fi\n      ;;\n\n    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    unicos*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_can_build_shared=no\n      ;;\n\n    uts4*)\n      lt_prog_compiler_pic='-pic'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    *)\n      lt_prog_compiler_can_build_shared=no\n      ;;\n    esac\n  fi\n\ncase $host_os in\n  # For platforms that do not support PIC, -DPIC is meaningless:\n  *djgpp*)\n    lt_prog_compiler_pic=\n    ;;\n  *)\n    lt_prog_compiler_pic=\"$lt_prog_compiler_pic -DPIC\"\n    ;;\nesac\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC\" >&5\n$as_echo_n \"checking for $compiler option to produce PIC... \" >&6; }\nif ${lt_cv_prog_compiler_pic+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_pic=$lt_prog_compiler_pic\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic\" >&5\n$as_echo \"$lt_cv_prog_compiler_pic\" >&6; }\nlt_prog_compiler_pic=$lt_cv_prog_compiler_pic\n\n#\n# Check to make sure the PIC flag actually works.\n#\nif test -n \"$lt_prog_compiler_pic\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works\" >&5\n$as_echo_n \"checking if $compiler PIC flag $lt_prog_compiler_pic works... \" >&6; }\nif ${lt_cv_prog_compiler_pic_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_pic_works=no\n   ac_outfile=conftest.$ac_objext\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"$lt_prog_compiler_pic -DPIC\"  ## exclude from sc_useless_quotes_in_assignment\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_pic_works=yes\n     fi\n   fi\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works\" >&5\n$as_echo \"$lt_cv_prog_compiler_pic_works\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler_pic_works\"; then\n    case $lt_prog_compiler_pic in\n     \"\" | \" \"*) ;;\n     *) lt_prog_compiler_pic=\" $lt_prog_compiler_pic\" ;;\n     esac\nelse\n    lt_prog_compiler_pic=\n     lt_prog_compiler_can_build_shared=no\nfi\n\nfi\n\n\n\n\n\n\n\n\n\n\n\n#\n# Check to make sure the static flag actually works.\n#\nwl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\\\"$lt_prog_compiler_static\\\"\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works\" >&5\n$as_echo_n \"checking if $compiler static flag $lt_tmp_static_flag works... \" >&6; }\nif ${lt_cv_prog_compiler_static_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_static_works=no\n   save_LDFLAGS=$LDFLAGS\n   LDFLAGS=\"$LDFLAGS $lt_tmp_static_flag\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&5\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         lt_cv_prog_compiler_static_works=yes\n       fi\n     else\n       lt_cv_prog_compiler_static_works=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=$save_LDFLAGS\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works\" >&5\n$as_echo \"$lt_cv_prog_compiler_static_works\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler_static_works\"; then\n    :\nelse\n    lt_prog_compiler_static=\nfi\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext\" >&5\n$as_echo_n \"checking if $compiler supports -c -o file.$ac_objext... \" >&6; }\nif ${lt_cv_prog_compiler_c_o+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_c_o=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_c_o=yes\n     fi\n   fi\n   chmod u+w . 2>&5\n   $RM conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o\" >&5\n$as_echo \"$lt_cv_prog_compiler_c_o\" >&6; }\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext\" >&5\n$as_echo_n \"checking if $compiler supports -c -o file.$ac_objext... \" >&6; }\nif ${lt_cv_prog_compiler_c_o+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_c_o=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_c_o=yes\n     fi\n   fi\n   chmod u+w . 2>&5\n   $RM conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o\" >&5\n$as_echo \"$lt_cv_prog_compiler_c_o\" >&6; }\n\n\n\n\nhard_links=nottested\nif test no = \"$lt_cv_prog_compiler_c_o\" && test no != \"$need_locks\"; then\n  # do not overwrite the value of need_locks provided by the user\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links\" >&5\n$as_echo_n \"checking if we can lock with hard links... \" >&6; }\n  hard_links=yes\n  $RM conftest*\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  touch conftest.a\n  ln conftest.a conftest.b 2>&5 || hard_links=no\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $hard_links\" >&5\n$as_echo \"$hard_links\" >&6; }\n  if test no = \"$hard_links\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe\" >&5\n$as_echo \"$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe\" >&2;}\n    need_locks=warn\n  fi\nelse\n  need_locks=no\nfi\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries\" >&5\n$as_echo_n \"checking whether the $compiler linker ($LD) supports shared libraries... \" >&6; }\n\n  runpath_var=\n  allow_undefined_flag=\n  always_export_symbols=no\n  archive_cmds=\n  archive_expsym_cmds=\n  compiler_needs_object=no\n  enable_shared_with_static_runtimes=no\n  export_dynamic_flag_spec=\n  export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  hardcode_automatic=no\n  hardcode_direct=no\n  hardcode_direct_absolute=no\n  hardcode_libdir_flag_spec=\n  hardcode_libdir_separator=\n  hardcode_minus_L=no\n  hardcode_shlibpath_var=unsupported\n  inherit_rpath=no\n  link_all_deplibs=unknown\n  module_cmds=\n  module_expsym_cmds=\n  old_archive_from_new_cmds=\n  old_archive_from_expsyms_cmds=\n  thread_safe_flag_spec=\n  whole_archive_flag_spec=\n  # include_expsyms should be a list of space-separated symbols to be *always*\n  # included in the symbol list\n  include_expsyms=\n  # exclude_expsyms can be an extended regexp of symbols to exclude\n  # it will be wrapped by ' (' and ')$', so one must not match beginning or\n  # end of line.  Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc',\n  # as well as any symbol that contains 'd'.\n  exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'\n  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out\n  # platforms (ab)use it in PIC code, but their linkers get confused if\n  # the symbol is explicitly referenced.  Since portable code cannot\n  # rely on this symbol name, it's probably fine to never include it in\n  # preloaded symbol tables.\n  # Exclude shared library initialization/finalization symbols.\n  extract_expsyms_cmds=\n\n  case $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    # FIXME: the MSVC++ port hasn't been tested in a loooong time\n    # When not using gcc, we currently assume that we are using\n    # Microsoft Visual C++.\n    if test yes != \"$GCC\"; then\n      with_gnu_ld=no\n    fi\n    ;;\n  interix*)\n    # we just hope/assume this is gcc and not c89 (= MSVC++)\n    with_gnu_ld=yes\n    ;;\n  openbsd* | bitrig*)\n    with_gnu_ld=no\n    ;;\n  esac\n\n  ld_shlibs=yes\n\n  # On some targets, GNU ld is compatible enough with the native linker\n  # that we're better off using the native interface for both.\n  lt_use_gnu_ld_interface=no\n  if test yes = \"$with_gnu_ld\"; then\n    case $host_os in\n      aix*)\n\t# The AIX port of GNU ld has always aspired to compatibility\n\t# with the native linker.  However, as the warning in the GNU ld\n\t# block says, versions before 2.19.5* couldn't really create working\n\t# shared libraries, regardless of the interface used.\n\tcase `$LD -v 2>&1` in\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.19.5*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.[2-9]*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ [3-9]*) ;;\n\t  *)\n\t    lt_use_gnu_ld_interface=yes\n\t    ;;\n\tesac\n\t;;\n      *)\n\tlt_use_gnu_ld_interface=yes\n\t;;\n    esac\n  fi\n\n  if test yes = \"$lt_use_gnu_ld_interface\"; then\n    # If archive_cmds runs LD, not CC, wlarc should be empty\n    wlarc='$wl'\n\n    # Set some defaults for GNU ld with shared library support. These\n    # are reset later if shared libraries are not supported. Putting them\n    # here allows them to be overridden if necessary.\n    runpath_var=LD_RUN_PATH\n    hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n    export_dynamic_flag_spec='$wl--export-dynamic'\n    # ancient GNU ld didn't support --whole-archive et. al.\n    if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then\n      whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'\n    else\n      whole_archive_flag_spec=\n    fi\n    supports_anon_versioning=no\n    case `$LD -v | $SED -e 's/(^)\\+)\\s\\+//' 2>&1` in\n      *GNU\\ gold*) supports_anon_versioning=yes ;;\n      *\\ [01].* | *\\ 2.[0-9].* | *\\ 2.10.*) ;; # catch versions < 2.11\n      *\\ 2.11.93.0.2\\ *) supports_anon_versioning=yes ;; # RH7.3 ...\n      *\\ 2.11.92.0.12\\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...\n      *\\ 2.11.*) ;; # other 2.11 versions\n      *) supports_anon_versioning=yes ;;\n    esac\n\n    # See if GNU ld supports shared libraries.\n    case $host_os in\n    aix[3-9]*)\n      # On AIX/PPC, the GNU linker is very broken\n      if test ia64 != \"$host_cpu\"; then\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: the GNU linker, at least up to release 2.19, is reported\n*** to be unable to reliably create shared libraries on AIX.\n*** Therefore, libtool is disabling shared libraries support.  If you\n*** really care for shared libraries, you may want to install binutils\n*** 2.20 or above, or modify your PATH so that a non-GNU linker is found.\n*** You will then need to restart the configuration process.\n\n_LT_EOF\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n            archive_expsym_cmds=''\n        ;;\n      m68k)\n            archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO \"#define NAME $libname\" > $output_objdir/a2ixlibrary.data~$ECHO \"#define LIBRARY_ID 1\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define VERSION $major\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define REVISION $revision\" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'\n            hardcode_libdir_flag_spec='-L$libdir'\n            hardcode_minus_L=yes\n        ;;\n      esac\n      ;;\n\n    beos*)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tallow_undefined_flag=unsupported\n\t# Joseph Beckenbach <jrb3@best.com> says some releases of gcc\n\t# support --undefined.  This deserves some investigation.  FIXME\n\tarchive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless,\n      # as there is no search path for DLLs.\n      hardcode_libdir_flag_spec='-L$libdir'\n      export_dynamic_flag_spec='$wl--export-all-symbols'\n      allow_undefined_flag=unsupported\n      always_export_symbols=no\n      enable_shared_with_static_runtimes=yes\n      export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[BCDGRS][ ]/s/.*[ ]\\([^ ]*\\)/\\1 DATA/;s/^.*[ ]__nm__\\([^ ]*\\)[ ][^ ]*/\\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\\'' | sort | uniq > $export_symbols'\n      exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'\n\n      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then\n        archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n\t# If the export-symbols file already is a .def file, use it as\n\t# is; otherwise, prepend EXPORTS...\n\tarchive_expsym_cmds='if   test DEF = \"`$SED -n     -e '\\''s/^[\t ]*//'\\''     -e '\\''/^\\(;.*\\)*$/d'\\''     -e '\\''s/^\\(EXPORTS\\|LIBRARY\\)\\([\t ].*\\)*$/DEF/p'\\''     -e q     $export_symbols`\" ; then\n          cp $export_symbols $output_objdir/$soname.def;\n        else\n          echo EXPORTS > $output_objdir/$soname.def;\n          cat $export_symbols >> $output_objdir/$soname.def;\n        fi~\n        $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    haiku*)\n      archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n      link_all_deplibs=yes\n      ;;\n\n    os2*)\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_minus_L=yes\n      allow_undefined_flag=unsupported\n      shrext_cmds=.dll\n      archive_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\temxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      archive_expsym_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\tprefix_cmds=\"$SED\"~\n\tif test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t  prefix_cmds=\"$prefix_cmds -e 1d\";\n\tfi~\n\tprefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\tcat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n      enable_shared_with_static_runtimes=yes\n      ;;\n\n    interix[3-9]*)\n      hardcode_direct=no\n      hardcode_shlibpath_var=no\n      hardcode_libdir_flag_spec='$wl-rpath,$libdir'\n      export_dynamic_flag_spec='$wl-E'\n      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.\n      # Instead, shared libraries are loaded at an image base (0x10000000 by\n      # default) and relocated if they conflict, which is a slow very memory\n      # consuming and fragmenting process.  To avoid this, we pick a random,\n      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link\n      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.\n      archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n      archive_expsym_cmds='sed \"s|^|_|\" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n      ;;\n\n    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)\n      tmp_diet=no\n      if test linux-dietlibc = \"$host_os\"; then\n\tcase $cc_basename in\n\t  diet\\ *) tmp_diet=yes;;\t# linux-dietlibc with static linking (!diet-dyn)\n\tesac\n      fi\n      if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \\\n\t && test no = \"$tmp_diet\"\n      then\n\ttmp_addflag=' $pic_flag'\n\ttmp_sharedflag='-shared'\n\tcase $cc_basename,$host_cpu in\n        pgcc*)\t\t\t\t# Portland Group C compiler\n\t  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  tmp_addflag=' $pic_flag'\n\t  ;;\n\tpgf77* | pgf90* | pgf95* | pgfortran*)\n\t\t\t\t\t# Portland Group f77 and f90 compilers\n\t  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  tmp_addflag=' $pic_flag -Mnomain' ;;\n\tecc*,ia64* | icc*,ia64*)\t# Intel C compiler on ia64\n\t  tmp_addflag=' -i_dynamic' ;;\n\tefc*,ia64* | ifort*,ia64*)\t# Intel Fortran compiler on ia64\n\t  tmp_addflag=' -i_dynamic -nofor_main' ;;\n\tifc* | ifort*)\t\t\t# Intel Fortran compiler\n\t  tmp_addflag=' -nofor_main' ;;\n\tlf95*)\t\t\t\t# Lahey Fortran 8.1\n\t  whole_archive_flag_spec=\n\t  tmp_sharedflag='--shared' ;;\n        nagfor*)                        # NAGFOR 5.3\n          tmp_sharedflag='-Wl,-shared' ;;\n\txl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)\n\t  tmp_sharedflag='-qmkshrobj'\n\t  tmp_addflag= ;;\n\tnvcc*)\t# Cuda Compiler Driver 2.2\n\t  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  compiler_needs_object=yes\n\t  ;;\n\tesac\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ C*)\t\t\t# Sun C 5.9\n\t  whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\\\"\\\"; do test -z \\\"$conv\\\" || new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  compiler_needs_object=yes\n\t  tmp_sharedflag='-G' ;;\n\t*Sun\\ F*)\t\t\t# Sun Fortran 8.3\n\t  tmp_sharedflag='-G' ;;\n\tesac\n\tarchive_cmds='$CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\n        if test yes = \"$supports_anon_versioning\"; then\n          archive_expsym_cmds='echo \"{ global:\" > $output_objdir/$libname.ver~\n            cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n            echo \"local: *; };\" >> $output_objdir/$libname.ver~\n            $CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'\n        fi\n\n\tcase $cc_basename in\n\ttcc*)\n\t  export_dynamic_flag_spec='-rdynamic'\n\t  ;;\n\txlf* | bgf* | bgxlf* | mpixlf*)\n\t  # IBM XL Fortran 10.1 on PPC cannot create shared libs itself\n\t  whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive'\n\t  hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n\t  archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'\n\t  if test yes = \"$supports_anon_versioning\"; then\n\t    archive_expsym_cmds='echo \"{ global:\" > $output_objdir/$libname.ver~\n              cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n              echo \"local: *; };\" >> $output_objdir/$libname.ver~\n              $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'\n\t  fi\n\t  ;;\n\tesac\n      else\n        ld_shlibs=no\n      fi\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\tarchive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'\n\twlarc=\n      else\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      fi\n      ;;\n\n    solaris*)\n      if $LD -v 2>&1 | $GREP 'BFD 2\\.8' > /dev/null; then\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: The releases 2.8.* of the GNU linker cannot reliably\n*** create shared libraries on Solaris systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.9.1 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)\n      case `$LD -v 2>&1` in\n        *\\ [01].* | *\\ 2.[0-9].* | *\\ 2.1[0-5].*)\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot\n*** reliably create shared libraries on SCO systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n\t;;\n\t*)\n\t  # For security reasons, it is highly recommended that you always\n\t  # use absolute paths for naming shared libraries, and exclude the\n\t  # DT_RUNPATH tag from executables and libraries.  But doing so\n\t  # requires that you compile everything twice, which is a pain.\n\t  if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t    hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n\t    archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t    archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t  else\n\t    ld_shlibs=no\n\t  fi\n\t;;\n      esac\n      ;;\n\n    sunos4*)\n      archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      wlarc=\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    *)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n    esac\n\n    if test no = \"$ld_shlibs\"; then\n      runpath_var=\n      hardcode_libdir_flag_spec=\n      export_dynamic_flag_spec=\n      whole_archive_flag_spec=\n    fi\n  else\n    # PORTME fill in a description of your system's linker (not GNU ld)\n    case $host_os in\n    aix3*)\n      allow_undefined_flag=unsupported\n      always_export_symbols=yes\n      archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'\n      # Note: this linker hardcodes the directories in LIBPATH if there\n      # are no directories specified by -L.\n      hardcode_minus_L=yes\n      if test yes = \"$GCC\" && test -z \"$lt_prog_compiler_static\"; then\n\t# Neither direct hardcoding nor static linking is supported with a\n\t# broken collect2.\n\thardcode_direct=unsupported\n      fi\n      ;;\n\n    aix[4-9]*)\n      if test ia64 = \"$host_cpu\"; then\n\t# On IA64, the linker does run time linking by default, so we don't\n\t# have to do anything special.\n\taix_use_runtimelinking=no\n\texp_sym_flag='-Bexport'\n\tno_entry_flag=\n      else\n\t# If we're using GNU nm, then we don't want the \"-C\" option.\n\t# -C means demangle to GNU nm, but means don't demangle to AIX nm.\n\t# Without the \"-l\" option, or with the \"-B\" option, AIX nm treats\n\t# weak defined symbols like other global defined symbols, whereas\n\t# GNU nm marks them as \"W\".\n\t# While the 'weak' keyword is ignored in the Export File, we need\n\t# it in the Import File for the 'aix-soname' feature, so we have\n\t# to replace the \"-B\" option with \"-P\" for AIX nm.\n\tif $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then\n\t  export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\")) && (substr(\\$ 3,1,1) != \".\")) { if (\\$ 2 == \"W\") { print \\$ 3 \" weak\" } else { print \\$ 3 } } }'\\'' | sort -u > $export_symbols'\n\telse\n\t  export_symbols_cmds='`func_echo_all $NM | $SED -e '\\''s/B\\([^B]*\\)$/P\\1/'\\''` -PCpgl $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) && (substr(\\$ 1,1,1) != \".\")) { if ((\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) { print \\$ 1 \" weak\" } else { print \\$ 1 } } }'\\'' | sort -u > $export_symbols'\n\tfi\n\taix_use_runtimelinking=no\n\n\t# Test if we are trying to use run time linking or normal\n\t# AIX style linking. If -brtl is somewhere in LDFLAGS, we\n\t# have runtime linking enabled, and use it for executables.\n\t# For shared libraries, we enable/disable runtime linking\n\t# depending on the kind of the shared library created -\n\t# when \"with_aix_soname,aix_use_runtimelinking\" is:\n\t# \"aix,no\"   lib.a(lib.so.V) shared, rtl:no,  for executables\n\t# \"aix,yes\"  lib.so          shared, rtl:yes, for executables\n\t#            lib.a           static archive\n\t# \"both,no\"  lib.so.V(shr.o) shared, rtl:yes\n\t#            lib.a(lib.so.V) shared, rtl:no,  for executables\n\t# \"both,yes\" lib.so.V(shr.o) shared, rtl:yes, for executables\n\t#            lib.a(lib.so.V) shared, rtl:no\n\t# \"svr4,*\"   lib.so.V(shr.o) shared, rtl:yes, for executables\n\t#            lib.a           static archive\n\tcase $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)\n\t  for ld_flag in $LDFLAGS; do\n\t  if (test x-brtl = \"x$ld_flag\" || test x-Wl,-brtl = \"x$ld_flag\"); then\n\t    aix_use_runtimelinking=yes\n\t    break\n\t  fi\n\t  done\n\t  if test svr4,no = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t    # With aix-soname=svr4, we create the lib.so.V shared archives only,\n\t    # so we don't have lib.a shared libs to link our executables.\n\t    # We have to force runtime linking in this case.\n\t    aix_use_runtimelinking=yes\n\t    LDFLAGS=\"$LDFLAGS -Wl,-brtl\"\n\t  fi\n\t  ;;\n\tesac\n\n\texp_sym_flag='-bexport'\n\tno_entry_flag='-bnoentry'\n      fi\n\n      # When large executables or shared objects are built, AIX ld can\n      # have problems creating the table of contents.  If linking a library\n      # or program results in \"error TOC overflow\" add -mminimal-toc to\n      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not\n      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.\n\n      archive_cmds=''\n      hardcode_direct=yes\n      hardcode_direct_absolute=yes\n      hardcode_libdir_separator=':'\n      link_all_deplibs=yes\n      file_list_spec='$wl-f,'\n      case $with_aix_soname,$aix_use_runtimelinking in\n      aix,*) ;; # traditional, no import file\n      svr4,* | *,yes) # use import file\n\t# The Import File defines what to hardcode.\n\thardcode_direct=no\n\thardcode_direct_absolute=no\n\t;;\n      esac\n\n      if test yes = \"$GCC\"; then\n\tcase $host_os in aix4.[012]|aix4.[012].*)\n\t# We only want to do this on AIX 4.2 and lower, the check\n\t# below for broken collect2 doesn't work under 4.3+\n\t  collect2name=`$CC -print-prog-name=collect2`\n\t  if test -f \"$collect2name\" &&\n\t   strings \"$collect2name\" | $GREP resolve_lib_name >/dev/null\n\t  then\n\t  # We have reworked collect2\n\t  :\n\t  else\n\t  # We have old collect2\n\t  hardcode_direct=unsupported\n\t  # It fails to find uninstalled libraries when the uninstalled\n\t  # path is not listed in the libpath.  Setting hardcode_minus_L\n\t  # to unsupported forces relinking\n\t  hardcode_minus_L=yes\n\t  hardcode_libdir_flag_spec='-L$libdir'\n\t  hardcode_libdir_separator=\n\t  fi\n\t  ;;\n\tesac\n\tshared_flag='-shared'\n\tif test yes = \"$aix_use_runtimelinking\"; then\n\t  shared_flag=\"$shared_flag \"'$wl-G'\n\tfi\n\t# Need to ensure runtime linking is disabled for the traditional\n\t# shared library, or the linker may eventually find shared libraries\n\t# /with/ Import File - we do not want to mix them.\n\tshared_flag_aix='-shared'\n\tshared_flag_svr4='-shared $wl-G'\n      else\n\t# not using gcc\n\tif test ia64 = \"$host_cpu\"; then\n\t# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release\n\t# chokes on -Wl,-G. The following line is correct:\n\t  shared_flag='-G'\n\telse\n\t  if test yes = \"$aix_use_runtimelinking\"; then\n\t    shared_flag='$wl-G'\n\t  else\n\t    shared_flag='$wl-bM:SRE'\n\t  fi\n\t  shared_flag_aix='$wl-bM:SRE'\n\t  shared_flag_svr4='$wl-G'\n\tfi\n      fi\n\n      export_dynamic_flag_spec='$wl-bexpall'\n      # It seems that -bexpall does not export symbols beginning with\n      # underscore (_), so it is better to generate a list of symbols to export.\n      always_export_symbols=yes\n      if test aix,yes = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t# Warning - without using the other runtime loading flags (-brtl),\n\t# -berok will link without error, but may produce a broken library.\n\tallow_undefined_flag='-berok'\n        # Determine the default libpath from the value encoded in an\n        # empty executable.\n        if test set = \"${lt_cv_aix_libpath+set}\"; then\n  aix_libpath=$lt_cv_aix_libpath\nelse\n  if ${lt_cv_aix_libpath_+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n\n  lt_aix_libpath_sed='\n      /Import File Strings/,/^$/ {\n\t  /^0/ {\n\t      s/^0  *\\([^ ]*\\) *$/\\1/\n\t      p\n\t  }\n      }'\n  lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  # Check for a 64-bit object if we didn't find anything.\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  fi\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=/usr/lib:/lib\n  fi\n\nfi\n\n  aix_libpath=$lt_cv_aix_libpath_\nfi\n\n        hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'\"$aix_libpath\"\n        archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n \"$allow_undefined_flag\"; then func_echo_all \"$wl$allow_undefined_flag\"; else :; fi` $wl'$exp_sym_flag:\\$export_symbols' '$shared_flag\n      else\n\tif test ia64 = \"$host_cpu\"; then\n\t  hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib'\n\t  allow_undefined_flag=\"-z nodefs\"\n\t  archive_expsym_cmds=\"\\$CC $shared_flag\"' -o $output_objdir/$soname $libobjs $deplibs '\"\\$wl$no_entry_flag\"' $compiler_flags $wl$allow_undefined_flag '\"\\$wl$exp_sym_flag:\\$export_symbols\"\n\telse\n\t # Determine the default libpath from the value encoded in an\n\t # empty executable.\n\t if test set = \"${lt_cv_aix_libpath+set}\"; then\n  aix_libpath=$lt_cv_aix_libpath\nelse\n  if ${lt_cv_aix_libpath_+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n\n  lt_aix_libpath_sed='\n      /Import File Strings/,/^$/ {\n\t  /^0/ {\n\t      s/^0  *\\([^ ]*\\) *$/\\1/\n\t      p\n\t  }\n      }'\n  lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  # Check for a 64-bit object if we didn't find anything.\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  fi\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=/usr/lib:/lib\n  fi\n\nfi\n\n  aix_libpath=$lt_cv_aix_libpath_\nfi\n\n\t hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'\"$aix_libpath\"\n\t  # Warning - without using the other run time loading flags,\n\t  # -berok will link without error, but may produce a broken library.\n\t  no_undefined_flag=' $wl-bernotok'\n\t  allow_undefined_flag=' $wl-berok'\n\t  if test yes = \"$with_gnu_ld\"; then\n\t    # We only use this code for GNU lds that support --whole-archive.\n\t    whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive'\n\t  else\n\t    # Exported symbols can be pulled into shared objects from archives\n\t    whole_archive_flag_spec='$convenience'\n\t  fi\n\t  archive_cmds_need_lc=yes\n\t  archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'\n\t  # -brtl affects multiple linker settings, -berok does not and is overridden later\n\t  compiler_flags_filtered='`func_echo_all \"$compiler_flags \" | $SED -e \"s%-brtl\\\\([, ]\\\\)%-berok\\\\1%g\"`'\n\t  if test svr4 != \"$with_aix_soname\"; then\n\t    # This is similar to how AIX traditionally builds its shared libraries.\n\t    archive_expsym_cmds=\"$archive_expsym_cmds\"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'\n\t  fi\n\t  if test aix != \"$with_aix_soname\"; then\n\t    archive_expsym_cmds=\"$archive_expsym_cmds\"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all \"#! $soname($shared_archive_member_spec.o)\"; if test shr_64 = \"$shared_archive_member_spec\"; then func_echo_all \"# 64\"; else func_echo_all \"# 32\"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'\n\t  else\n\t    # used by -dlpreopen to get the symbols\n\t    archive_expsym_cmds=\"$archive_expsym_cmds\"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'\n\t  fi\n\t  archive_expsym_cmds=\"$archive_expsym_cmds\"'~$RM -r $output_objdir/$realname.d'\n\tfi\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n            archive_expsym_cmds=''\n        ;;\n      m68k)\n            archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO \"#define NAME $libname\" > $output_objdir/a2ixlibrary.data~$ECHO \"#define LIBRARY_ID 1\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define VERSION $major\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define REVISION $revision\" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'\n            hardcode_libdir_flag_spec='-L$libdir'\n            hardcode_minus_L=yes\n        ;;\n      esac\n      ;;\n\n    bsdi[45]*)\n      export_dynamic_flag_spec=-rdynamic\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # When not using gcc, we currently assume that we are using\n      # Microsoft Visual C++.\n      # hardcode_libdir_flag_spec is actually meaningless, as there is\n      # no search path for DLLs.\n      case $cc_basename in\n      cl*)\n\t# Native MSVC\n\thardcode_libdir_flag_spec=' '\n\tallow_undefined_flag=unsupported\n\talways_export_symbols=yes\n\tfile_list_spec='@'\n\t# Tell ltmain to make .lib files, not .a files.\n\tlibext=lib\n\t# Tell ltmain to make .dll files, not .so files.\n\tshrext_cmds=.dll\n\t# FIXME: Setting linknames here is a bad hack.\n\tarchive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~linknames='\n\tarchive_expsym_cmds='if   test DEF = \"`$SED -n     -e '\\''s/^[\t ]*//'\\''     -e '\\''/^\\(;.*\\)*$/d'\\''     -e '\\''s/^\\(EXPORTS\\|LIBRARY\\)\\([\t ].*\\)*$/DEF/p'\\''     -e q     $export_symbols`\" ; then\n            cp \"$export_symbols\" \"$output_objdir/$soname.def\";\n            echo \"$tool_output_objdir$soname.def\" > \"$output_objdir/$soname.exp\";\n          else\n            $SED -e '\\''s/^/-link -EXPORT:/'\\'' < $export_symbols > $output_objdir/$soname.exp;\n          fi~\n          $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs \"@$tool_output_objdir$soname.exp\" -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~\n          linknames='\n\t# The linker will not automatically build a static lib if we build a DLL.\n\t# _LT_TAGVAR(old_archive_from_new_cmds, )='true'\n\tenable_shared_with_static_runtimes=yes\n\texclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'\n\texport_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[BCDGRS][ ]/s/.*[ ]\\([^ ]*\\)/\\1,DATA/'\\'' | $SED -e '\\''/^[AITW][ ]/s/.*[ ]//'\\'' | sort | uniq > $export_symbols'\n\t# Don't use ranlib\n\told_postinstall_cmds='chmod 644 $oldlib'\n\tpostlink_cmds='lt_outputfile=\"@OUTPUT@\"~\n          lt_tool_outputfile=\"@TOOL_OUTPUT@\"~\n          case $lt_outputfile in\n            *.exe|*.EXE) ;;\n            *)\n              lt_outputfile=$lt_outputfile.exe\n              lt_tool_outputfile=$lt_tool_outputfile.exe\n              ;;\n          esac~\n          if test : != \"$MANIFEST_TOOL\" && test -f \"$lt_outputfile.manifest\"; then\n            $MANIFEST_TOOL -manifest \"$lt_tool_outputfile.manifest\" -outputresource:\"$lt_tool_outputfile\" || exit 1;\n            $RM \"$lt_outputfile.manifest\";\n          fi'\n\t;;\n      *)\n\t# Assume MSVC wrapper\n\thardcode_libdir_flag_spec=' '\n\tallow_undefined_flag=unsupported\n\t# Tell ltmain to make .lib files, not .a files.\n\tlibext=lib\n\t# Tell ltmain to make .dll files, not .so files.\n\tshrext_cmds=.dll\n\t# FIXME: Setting linknames here is a bad hack.\n\tarchive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all \"$deplibs\" | $SED '\\''s/ -lc$//'\\''` -link -dll~linknames='\n\t# The linker will automatically build a .lib file if we build a DLL.\n\told_archive_from_new_cmds='true'\n\t# FIXME: Should let the user specify the lib program.\n\told_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs'\n\tenable_shared_with_static_runtimes=yes\n\t;;\n      esac\n      ;;\n\n    darwin* | rhapsody*)\n\n\n  archive_cmds_need_lc=no\n  hardcode_direct=no\n  hardcode_automatic=yes\n  hardcode_shlibpath_var=unsupported\n  if test yes = \"$lt_cv_ld_force_load\"; then\n    whole_archive_flag_spec='`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience $wl-force_load,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"`'\n\n  else\n    whole_archive_flag_spec=''\n  fi\n  link_all_deplibs=yes\n  allow_undefined_flag=$_lt_dar_allow_undefined\n  case $cc_basename in\n     ifort*|nagfor*) _lt_dar_can_shared=yes ;;\n     *) _lt_dar_can_shared=$GCC ;;\n  esac\n  if test yes = \"$_lt_dar_can_shared\"; then\n    output_verbose_link_cmd=func_echo_all\n    archive_cmds=\"\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod$_lt_dsymutil\"\n    module_cmds=\"\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags$_lt_dsymutil\"\n    archive_expsym_cmds=\"sed 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil\"\n    module_expsym_cmds=\"sed -e 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags$_lt_dar_export_syms$_lt_dsymutil\"\n\n  else\n  ld_shlibs=no\n  fi\n\n      ;;\n\n    dgux*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_shlibpath_var=no\n      ;;\n\n    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor\n    # support.  Future versions do this automatically, but an explicit c++rt0.o\n    # does not break anything, and helps significantly (at the cost of a little\n    # extra space).\n    freebsd2.2*)\n      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    # Unfortunately, older versions of FreeBSD 2 do not have this feature.\n    freebsd2.*)\n      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_direct=yes\n      hardcode_minus_L=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.\n    freebsd* | dragonfly*)\n      archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    hpux9*)\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n      else\n\tarchive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n      fi\n      hardcode_libdir_flag_spec='$wl+b $wl$libdir'\n      hardcode_libdir_separator=:\n      hardcode_direct=yes\n\n      # hardcode_minus_L: Not really in the search PATH,\n      # but as the default location of the library.\n      hardcode_minus_L=yes\n      export_dynamic_flag_spec='$wl-E'\n      ;;\n\n    hpux10*)\n      if test yes,no = \"$GCC,$with_gnu_ld\"; then\n\tarchive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      if test no = \"$with_gnu_ld\"; then\n\thardcode_libdir_flag_spec='$wl+b $wl$libdir'\n\thardcode_libdir_separator=:\n\thardcode_direct=yes\n\thardcode_direct_absolute=yes\n\texport_dynamic_flag_spec='$wl-E'\n\t# hardcode_minus_L: Not really in the search PATH,\n\t# but as the default location of the library.\n\thardcode_minus_L=yes\n      fi\n      ;;\n\n    hpux11*)\n      if test yes,no = \"$GCC,$with_gnu_ld\"; then\n\tcase $host_cpu in\n\thppa*64*)\n\t  archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\t  archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tesac\n      else\n\tcase $host_cpu in\n\thppa*64*)\n\t  archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\n\t  # Older versions of the 11.00 compiler do not understand -b yet\n\t  # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)\n\t  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $CC understands -b\" >&5\n$as_echo_n \"checking if $CC understands -b... \" >&6; }\nif ${lt_cv_prog_compiler__b+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler__b=no\n   save_LDFLAGS=$LDFLAGS\n   LDFLAGS=\"$LDFLAGS -b\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&5\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         lt_cv_prog_compiler__b=yes\n       fi\n     else\n       lt_cv_prog_compiler__b=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=$save_LDFLAGS\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b\" >&5\n$as_echo \"$lt_cv_prog_compiler__b\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler__b\"; then\n    archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\nelse\n    archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'\nfi\n\n\t  ;;\n\tesac\n      fi\n      if test no = \"$with_gnu_ld\"; then\n\thardcode_libdir_flag_spec='$wl+b $wl$libdir'\n\thardcode_libdir_separator=:\n\n\tcase $host_cpu in\n\thppa*64*|ia64*)\n\t  hardcode_direct=no\n\t  hardcode_shlibpath_var=no\n\t  ;;\n\t*)\n\t  hardcode_direct=yes\n\t  hardcode_direct_absolute=yes\n\t  export_dynamic_flag_spec='$wl-E'\n\n\t  # hardcode_minus_L: Not really in the search PATH,\n\t  # but as the default location of the library.\n\t  hardcode_minus_L=yes\n\t  ;;\n\tesac\n      fi\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t# Try to use the -exported_symbol ld option, if it does not\n\t# work, assume that -exports_file does not work either and\n\t# implicitly export all symbols.\n\t# This should be the same for all languages, so no per-tag cache variable.\n\t{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol\" >&5\n$as_echo_n \"checking whether the $host_os linker accepts -exported_symbol... \" >&6; }\nif ${lt_cv_irix_exported_symbol+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  save_LDFLAGS=$LDFLAGS\n\t   LDFLAGS=\"$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null\"\n\t   cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\nint foo (void) { return 0; }\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  lt_cv_irix_exported_symbol=yes\nelse\n  lt_cv_irix_exported_symbol=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n           LDFLAGS=$save_LDFLAGS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol\" >&5\n$as_echo \"$lt_cv_irix_exported_symbol\" >&6; }\n\tif test yes = \"$lt_cv_irix_exported_symbol\"; then\n          archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib'\n\tfi\n      else\n\tarchive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\tarchive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      hardcode_libdir_separator=:\n      inherit_rpath=yes\n      link_all_deplibs=yes\n      ;;\n\n    linux*)\n      case $cc_basename in\n      tcc*)\n\t# Fabrice Bellard et al's Tiny C Compiler\n\tld_shlibs=yes\n\tarchive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t;;\n      esac\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\tarchive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out\n      else\n\tarchive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF\n      fi\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    newsos6)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_direct=yes\n      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      hardcode_libdir_separator=:\n      hardcode_shlibpath_var=no\n      ;;\n\n    *nto* | *qnx*)\n      ;;\n\n    openbsd* | bitrig*)\n      if test -f /usr/libexec/ld.so; then\n\thardcode_direct=yes\n\thardcode_shlibpath_var=no\n\thardcode_direct_absolute=yes\n\tif test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n\t  archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols'\n\t  hardcode_libdir_flag_spec='$wl-rpath,$libdir'\n\t  export_dynamic_flag_spec='$wl-E'\n\telse\n\t  archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  hardcode_libdir_flag_spec='$wl-rpath,$libdir'\n\tfi\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    os2*)\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_minus_L=yes\n      allow_undefined_flag=unsupported\n      shrext_cmds=.dll\n      archive_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\temxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      archive_expsym_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\tprefix_cmds=\"$SED\"~\n\tif test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t  prefix_cmds=\"$prefix_cmds -e 1d\";\n\tfi~\n\tprefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\tcat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n      enable_shared_with_static_runtimes=yes\n      ;;\n\n    osf3*)\n      if test yes = \"$GCC\"; then\n\tallow_undefined_flag=' $wl-expect_unresolved $wl\\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n      else\n\tallow_undefined_flag=' -expect_unresolved \\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      hardcode_libdir_separator=:\n      ;;\n\n    osf4* | osf5*)\t# as osf3* with the addition of -msym flag\n      if test yes = \"$GCC\"; then\n\tallow_undefined_flag=' $wl-expect_unresolved $wl\\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\thardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      else\n\tallow_undefined_flag=' -expect_unresolved \\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\tarchive_expsym_cmds='for i in `cat $export_symbols`; do printf \"%s %s\\\\n\" -exported_symbol \"\\$i\" >> $lib.exp; done; printf \"%s\\\\n\" \"-hidden\">> $lib.exp~\n          $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n \"$verstring\" && $ECHO \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp'\n\n\t# Both c and cxx compiler support -rpath directly\n\thardcode_libdir_flag_spec='-rpath $libdir'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_separator=:\n      ;;\n\n    solaris*)\n      no_undefined_flag=' -z defs'\n      if test yes = \"$GCC\"; then\n\twlarc='$wl'\n\tarchive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n          $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n      else\n\tcase `$CC -V 2>&1` in\n\t*\"Compilers 5.0\"*)\n\t  wlarc=''\n\t  archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  archive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n            $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'\n\t  ;;\n\t*)\n\t  wlarc='$wl'\n\t  archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  archive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n            $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n\t  ;;\n\tesac\n      fi\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_shlibpath_var=no\n      case $host_os in\n      solaris2.[0-5] | solaris2.[0-5].*) ;;\n      *)\n\t# The compiler driver will combine and reorder linker options,\n\t# but understands '-z linker_flag'.  GCC discards it without '$wl',\n\t# but is careful enough not to reorder.\n\t# Supported since Solaris 2.6 (maybe 2.5.1?)\n\tif test yes = \"$GCC\"; then\n\t  whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'\n\telse\n\t  whole_archive_flag_spec='-z allextract$convenience -z defaultextract'\n\tfi\n\t;;\n      esac\n      link_all_deplibs=yes\n      ;;\n\n    sunos4*)\n      if test sequent = \"$host_vendor\"; then\n\t# Use $CC to link under sequent, because it throws in some extra .o\n\t# files that make .init and .fini sections work.\n\tarchive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_direct=yes\n      hardcode_minus_L=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    sysv4)\n      case $host_vendor in\n\tsni)\n\t  archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  hardcode_direct=yes # is this really true???\n\t;;\n\tsiemens)\n\t  ## LD is ld it makes a PLAMLIB\n\t  ## CC just makes a GrossModule.\n\t  archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags'\n\t  reload_cmds='$CC -r -o $output$reload_objs'\n\t  hardcode_direct=no\n        ;;\n\tmotorola)\n\t  archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  hardcode_direct=no #Motorola manual says yes, but my tests say they lie\n\t;;\n      esac\n      runpath_var='LD_RUN_PATH'\n      hardcode_shlibpath_var=no\n      ;;\n\n    sysv4.3*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_shlibpath_var=no\n      export_dynamic_flag_spec='-Bexport'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tarchive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\thardcode_shlibpath_var=no\n\trunpath_var=LD_RUN_PATH\n\thardcode_runpath_var=yes\n\tld_shlibs=yes\n      fi\n      ;;\n\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)\n      no_undefined_flag='$wl-z,text'\n      archive_cmds_need_lc=no\n      hardcode_shlibpath_var=no\n      runpath_var='LD_RUN_PATH'\n\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6*)\n      # Note: We CANNOT use -z defs as we might desire, because we do not\n      # link with -lc, and that would cause any symbols used from libc to\n      # always be unresolved, which means just about no library would\n      # ever link correctly.  If we're not using GNU ld we use -z text\n      # though, which does catch some bad symbols but isn't as heavy-handed\n      # as -z defs.\n      no_undefined_flag='$wl-z,text'\n      allow_undefined_flag='$wl-z,nodefs'\n      archive_cmds_need_lc=no\n      hardcode_shlibpath_var=no\n      hardcode_libdir_flag_spec='$wl-R,$libdir'\n      hardcode_libdir_separator=':'\n      link_all_deplibs=yes\n      export_dynamic_flag_spec='$wl-Bexport'\n      runpath_var='LD_RUN_PATH'\n\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    uts4*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_shlibpath_var=no\n      ;;\n\n    *)\n      ld_shlibs=no\n      ;;\n    esac\n\n    if test sni = \"$host_vendor\"; then\n      case $host in\n      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)\n\texport_dynamic_flag_spec='$wl-Blargedynsym'\n\t;;\n      esac\n    fi\n  fi\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ld_shlibs\" >&5\n$as_echo \"$ld_shlibs\" >&6; }\ntest no = \"$ld_shlibs\" && can_build_shared=no\n\nwith_gnu_ld=$with_gnu_ld\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#\n# Do we need to explicitly link libc?\n#\ncase \"x$archive_cmds_need_lc\" in\nx|xyes)\n  # Assume -lc should be added\n  archive_cmds_need_lc=yes\n\n  if test yes,yes = \"$GCC,$enable_shared\"; then\n    case $archive_cmds in\n    *'~'*)\n      # FIXME: we may have to deal with multi-command sequences.\n      ;;\n    '$CC '*)\n      # Test whether the compiler implicitly links with -lc since on some\n      # systems, -lgcc has to come before -lc. If gcc already passes -lc\n      # to ld, don't add -lc before -lgcc.\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in\" >&5\n$as_echo_n \"checking whether -lc should be explicitly linked in... \" >&6; }\nif ${lt_cv_archive_cmds_need_lc+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  $RM conftest*\n\techo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n\tif { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } 2>conftest.err; then\n\t  soname=conftest\n\t  lib=conftest\n\t  libobjs=conftest.$ac_objext\n\t  deplibs=\n\t  wl=$lt_prog_compiler_wl\n\t  pic_flag=$lt_prog_compiler_pic\n\t  compiler_flags=-v\n\t  linker_flags=-v\n\t  verstring=\n\t  output_objdir=.\n\t  libname=conftest\n\t  lt_save_allow_undefined_flag=$allow_undefined_flag\n\t  allow_undefined_flag=\n\t  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$archive_cmds 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1\\\"\"; } >&5\n  (eval $archive_cmds 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n\t  then\n\t    lt_cv_archive_cmds_need_lc=no\n\t  else\n\t    lt_cv_archive_cmds_need_lc=yes\n\t  fi\n\t  allow_undefined_flag=$lt_save_allow_undefined_flag\n\telse\n\t  cat conftest.err 1>&5\n\tfi\n\t$RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc\" >&5\n$as_echo \"$lt_cv_archive_cmds_need_lc\" >&6; }\n      archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc\n      ;;\n    esac\n  fi\n  ;;\nesac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics\" >&5\n$as_echo_n \"checking dynamic linker characteristics... \" >&6; }\n\nif test yes = \"$GCC\"; then\n  case $host_os in\n    darwin*) lt_awk_arg='/^libraries:/,/LR/' ;;\n    *) lt_awk_arg='/^libraries:/' ;;\n  esac\n  case $host_os in\n    mingw* | cegcc*) lt_sed_strip_eq='s|=\\([A-Za-z]:\\)|\\1|g' ;;\n    *) lt_sed_strip_eq='s|=/|/|g' ;;\n  esac\n  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e \"s/^libraries://\" -e $lt_sed_strip_eq`\n  case $lt_search_path_spec in\n  *\\;*)\n    # if the path contains \";\" then we assume it to be the separator\n    # otherwise default to the standard path separator (i.e. \":\") - it is\n    # assumed that no part of a normal pathname contains \";\" but that should\n    # okay in the real world where \";\" in dirpaths is itself problematic.\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED 's/;/ /g'`\n    ;;\n  *)\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED \"s/$PATH_SEPARATOR/ /g\"`\n    ;;\n  esac\n  # Ok, now we have the path, separated by spaces, we can step through it\n  # and add multilib dir if necessary...\n  lt_tmp_lt_search_path_spec=\n  lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`\n  # ...but if some path component already ends with the multilib dir we assume\n  # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer).\n  case \"$lt_multi_os_dir; $lt_search_path_spec \" in\n  \"/; \"* | \"/.; \"* | \"/./; \"* | *\"$lt_multi_os_dir \"* | *\"$lt_multi_os_dir/ \"*)\n    lt_multi_os_dir=\n    ;;\n  esac\n  for lt_sys_path in $lt_search_path_spec; do\n    if test -d \"$lt_sys_path$lt_multi_os_dir\"; then\n      lt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir\"\n    elif test -n \"$lt_multi_os_dir\"; then\n      test -d \"$lt_sys_path\" && \\\n\tlt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path\"\n    fi\n  done\n  lt_search_path_spec=`$ECHO \"$lt_tmp_lt_search_path_spec\" | awk '\nBEGIN {RS = \" \"; FS = \"/|\\n\";} {\n  lt_foo = \"\";\n  lt_count = 0;\n  for (lt_i = NF; lt_i > 0; lt_i--) {\n    if ($lt_i != \"\" && $lt_i != \".\") {\n      if ($lt_i == \"..\") {\n        lt_count++;\n      } else {\n        if (lt_count == 0) {\n          lt_foo = \"/\" $lt_i lt_foo;\n        } else {\n          lt_count--;\n        }\n      }\n    }\n  }\n  if (lt_foo != \"\") { lt_freq[lt_foo]++; }\n  if (lt_freq[lt_foo] == 1) { print lt_foo; }\n}'`\n  # AWK program above erroneously prepends '/' to C:/dos/paths\n  # for these hosts.\n  case $host_os in\n    mingw* | cegcc*) lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" |\\\n      $SED 's|/\\([A-Za-z]:\\)|\\1|g'` ;;\n  esac\n  sys_lib_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $lt_NL2SP`\nelse\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\nfi\nlibrary_names_spec=\nlibname_spec='lib$name'\nsoname_spec=\nshrext_cmds=.so\npostinstall_cmds=\npostuninstall_cmds=\nfinish_cmds=\nfinish_eval=\nshlibpath_var=\nshlibpath_overrides_runpath=unknown\nversion_type=none\ndynamic_linker=\"$host_os ld.so\"\nsys_lib_dlsearch_path_spec=\"/lib /usr/lib\"\nneed_lib_prefix=unknown\nhardcode_into_libs=no\n\n# when you set need_version to no, make sure it does not cause -set_version\n# flags to be left without arguments\nneed_version=unknown\n\n\n\ncase $host_os in\naix3*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname.a'\n  shlibpath_var=LIBPATH\n\n  # AIX 3 has no versioning support, so we append a major version to the name.\n  soname_spec='$libname$release$shared_ext$major'\n  ;;\n\naix[4-9]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  hardcode_into_libs=yes\n  if test ia64 = \"$host_cpu\"; then\n    # AIX 5 supports IA64\n    library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext'\n    shlibpath_var=LD_LIBRARY_PATH\n  else\n    # With GCC up to 2.95.x, collect2 would create an import file\n    # for dependence libraries.  The import file would start with\n    # the line '#! .'.  This would cause the generated library to\n    # depend on '.', always an invalid library.  This was fixed in\n    # development snapshots of GCC prior to 3.0.\n    case $host_os in\n      aix4 | aix4.[01] | aix4.[01].*)\n      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'\n\t   echo ' yes '\n\t   echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then\n\t:\n      else\n\tcan_build_shared=no\n      fi\n      ;;\n    esac\n    # Using Import Files as archive members, it is possible to support\n    # filename-based versioning of shared library archives on AIX. While\n    # this would work for both with and without runtime linking, it will\n    # prevent static linking of such archives. So we do filename-based\n    # shared library versioning with .so extension only, which is used\n    # when both runtime linking and shared linking is enabled.\n    # Unfortunately, runtime linking may impact performance, so we do\n    # not want this to be the default eventually. Also, we use the\n    # versioned .so libs for executables only if there is the -brtl\n    # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only.\n    # To allow for filename-based versioning support, we need to create\n    # libNAME.so.V as an archive file, containing:\n    # *) an Import File, referring to the versioned filename of the\n    #    archive as well as the shared archive member, telling the\n    #    bitwidth (32 or 64) of that shared object, and providing the\n    #    list of exported symbols of that shared object, eventually\n    #    decorated with the 'weak' keyword\n    # *) the shared object with the F_LOADONLY flag set, to really avoid\n    #    it being seen by the linker.\n    # At run time we better use the real file rather than another symlink,\n    # but for link time we create the symlink libNAME.so -> libNAME.so.V\n\n    case $with_aix_soname,$aix_use_runtimelinking in\n    # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct\n    # soname into executable. Probably we can add versioning support to\n    # collect2, so additional links can be useful in future.\n    aix,yes) # traditional libtool\n      dynamic_linker='AIX unversionable lib.so'\n      # If using run time linking (on AIX 4.2 or later) use lib<name>.so\n      # instead of lib<name>.a to let people know that these are not\n      # typical AIX shared libraries.\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n      ;;\n    aix,no) # traditional AIX only\n      dynamic_linker='AIX lib.a(lib.so.V)'\n      # We preserve .a as extension for shared libraries through AIX4.2\n      # and later when we are not doing run time linking.\n      library_names_spec='$libname$release.a $libname.a'\n      soname_spec='$libname$release$shared_ext$major'\n      ;;\n    svr4,*) # full svr4 only\n      dynamic_linker=\"AIX lib.so.V($shared_archive_member_spec.o)\"\n      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'\n      # We do not specify a path in Import Files, so LIBPATH fires.\n      shlibpath_overrides_runpath=yes\n      ;;\n    *,yes) # both, prefer svr4\n      dynamic_linker=\"AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)\"\n      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'\n      # unpreferred sharedlib libNAME.a needs extra handling\n      postinstall_cmds='test -n \"$linkname\" || linkname=\"$realname\"~func_stripname \"\" \".so\" \"$linkname\"~$install_shared_prog \"$dir/$func_stripname_result.$libext\" \"$destdir/$func_stripname_result.$libext\"~test -z \"$tstripme\" || test -z \"$striplib\" || $striplib \"$destdir/$func_stripname_result.$libext\"'\n      postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname \"\" \".so\" \"$n\"~test \"$func_stripname_result\" = \"$n\" || func_append rmfiles \" $odir/$func_stripname_result.$libext\"'\n      # We do not specify a path in Import Files, so LIBPATH fires.\n      shlibpath_overrides_runpath=yes\n      ;;\n    *,no) # both, prefer aix\n      dynamic_linker=\"AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)\"\n      library_names_spec='$libname$release.a $libname.a'\n      soname_spec='$libname$release$shared_ext$major'\n      # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling\n      postinstall_cmds='test -z \"$dlname\" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z \"$tstripme\" || test -z \"$striplib\" || $striplib $destdir/$dlname~test -n \"$linkname\" || linkname=$realname~func_stripname \"\" \".a\" \"$linkname\"~(cd \"$destdir\" && $LN_S -f $dlname $func_stripname_result.so)'\n      postuninstall_cmds='test -z \"$dlname\" || func_append rmfiles \" $odir/$dlname\"~for n in $old_library $library_names; do :; done~func_stripname \"\" \".a\" \"$n\"~func_append rmfiles \" $odir/$func_stripname_result.so\"'\n      ;;\n    esac\n    shlibpath_var=LIBPATH\n  fi\n  ;;\n\namigaos*)\n  case $host_cpu in\n  powerpc)\n    # Since July 2007 AmigaOS4 officially supports .so libraries.\n    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    ;;\n  m68k)\n    library_names_spec='$libname.ixlibrary $libname.a'\n    # Create ${libname}_ixlibrary.a entries in /sys/libs.\n    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all \"$lib\" | $SED '\\''s%^.*/\\([^/]*\\)\\.ixlibrary$%\\1%'\\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show \"cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a\"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'\n    ;;\n  esac\n  ;;\n\nbeos*)\n  library_names_spec='$libname$shared_ext'\n  dynamic_linker=\"$host_os ld.so\"\n  shlibpath_var=LIBRARY_PATH\n  ;;\n\nbsdi[45]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=\"/shlib /usr/lib /usr/local/lib\"\n  # the default ld.so.conf also contains /usr/contrib/lib and\n  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow\n  # libtool to hard-code these into programs\n  ;;\n\ncygwin* | mingw* | pw32* | cegcc*)\n  version_type=windows\n  shrext_cmds=.dll\n  need_version=no\n  need_lib_prefix=no\n\n  case $GCC,$cc_basename in\n  yes,*)\n    # gcc\n    library_names_spec='$libname.dll.a'\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\$file`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname~\n      chmod a+x \\$dldir/$dlname~\n      if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n        eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n      fi'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n\n    case $host_os in\n    cygwin*)\n      # Cygwin DLLs use 'cyg' prefix rather than 'lib'\n      soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n\n      sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/lib/w32api\"\n      ;;\n    mingw* | cegcc*)\n      # MinGW DLLs use traditional 'lib' prefix\n      soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n      ;;\n    pw32*)\n      # pw32 DLLs use 'pw' prefix rather than 'lib'\n      library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n      ;;\n    esac\n    dynamic_linker='Win32 ld.exe'\n    ;;\n\n  *,cl*)\n    # Native MSVC\n    libname_spec='$name'\n    soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n    library_names_spec='$libname.dll.lib'\n\n    case $build_os in\n    mingw*)\n      sys_lib_search_path_spec=\n      lt_save_ifs=$IFS\n      IFS=';'\n      for lt_path in $LIB\n      do\n        IFS=$lt_save_ifs\n        # Let DOS variable expansion print the short 8.3 style file name.\n        lt_path=`cd \"$lt_path\" 2>/dev/null && cmd //C \"for %i in (\".\") do @echo %~si\"`\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec $lt_path\"\n      done\n      IFS=$lt_save_ifs\n      # Convert to MSYS style.\n      sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | sed -e 's|\\\\\\\\|/|g' -e 's| \\\\([a-zA-Z]\\\\):| /\\\\1|g' -e 's|^ ||'`\n      ;;\n    cygwin*)\n      # Convert to unix form, then to dos form, then back to unix form\n      # but this time dos style (no spaces!) so that the unix form looks\n      # like /cygdrive/c/PROGRA~1:/cygdr...\n      sys_lib_search_path_spec=`cygpath --path --unix \"$LIB\"`\n      sys_lib_search_path_spec=`cygpath --path --dos \"$sys_lib_search_path_spec\" 2>/dev/null`\n      sys_lib_search_path_spec=`cygpath --path --unix \"$sys_lib_search_path_spec\" | $SED -e \"s/$PATH_SEPARATOR/ /g\"`\n      ;;\n    *)\n      sys_lib_search_path_spec=$LIB\n      if $ECHO \"$sys_lib_search_path_spec\" | $GREP ';[c-zC-Z]:/' >/dev/null; then\n        # It is most probably a Windows format PATH.\n        sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | $SED -e 's/;/ /g'`\n      else\n        sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | $SED -e \"s/$PATH_SEPARATOR/ /g\"`\n      fi\n      # FIXME: find the short name or the path components, as spaces are\n      # common. (e.g. \"Program Files\" -> \"PROGRA~1\")\n      ;;\n    esac\n\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\$file`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n    dynamic_linker='Win32 link.exe'\n    ;;\n\n  *)\n    # Assume MSVC wrapper\n    library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib'\n    dynamic_linker='Win32 ld.exe'\n    ;;\n  esac\n  # FIXME: first we should search . and the directory the executable is in\n  shlibpath_var=PATH\n  ;;\n\ndarwin* | rhapsody*)\n  dynamic_linker=\"$host_os dyld\"\n  version_type=darwin\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$major$shared_ext $libname$shared_ext'\n  soname_spec='$libname$release$major$shared_ext'\n  shlibpath_overrides_runpath=yes\n  shlibpath_var=DYLD_LIBRARY_PATH\n  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'\n\n  sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/local/lib\"\n  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'\n  ;;\n\ndgux*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\nfreebsd* | dragonfly*)\n  # DragonFly does not have aout.  When/if they implement a new\n  # versioning mechanism, adjust this.\n  if test -x /usr/bin/objformat; then\n    objformat=`/usr/bin/objformat`\n  else\n    case $host_os in\n    freebsd[23].*) objformat=aout ;;\n    *) objformat=elf ;;\n    esac\n  fi\n  version_type=freebsd-$objformat\n  case $version_type in\n    freebsd-elf*)\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n      soname_spec='$libname$release$shared_ext$major'\n      need_version=no\n      need_lib_prefix=no\n      ;;\n    freebsd-*)\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n      need_version=yes\n      ;;\n  esac\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_os in\n  freebsd2.*)\n    shlibpath_overrides_runpath=yes\n    ;;\n  freebsd3.[01]* | freebsdelf3.[01]*)\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  freebsd3.[2-9]* | freebsdelf3.[2-9]* | \\\n  freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1)\n    shlibpath_overrides_runpath=no\n    hardcode_into_libs=yes\n    ;;\n  *) # from 4.6 on, and DragonFly\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  esac\n  ;;\n\nhaiku*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  dynamic_linker=\"$host_os runtime_loader\"\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'\n  hardcode_into_libs=yes\n  ;;\n\nhpux9* | hpux10* | hpux11*)\n  # Give a soname corresponding to the major version so that dld.sl refuses to\n  # link against other versions.\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  case $host_cpu in\n  ia64*)\n    shrext_cmds='.so'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.so\"\n    shlibpath_var=LD_LIBRARY_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    if test 32 = \"$HPUX_IA64_MODE\"; then\n      sys_lib_search_path_spec=\"/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib\"\n      sys_lib_dlsearch_path_spec=/usr/lib/hpux32\n    else\n      sys_lib_search_path_spec=\"/usr/lib/hpux64 /usr/local/lib/hpux64\"\n      sys_lib_dlsearch_path_spec=/usr/lib/hpux64\n    fi\n    ;;\n  hppa*64*)\n    shrext_cmds='.sl'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    sys_lib_search_path_spec=\"/usr/lib/pa20_64 /usr/ccs/lib/pa20_64\"\n    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n    ;;\n  *)\n    shrext_cmds='.sl'\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=SHLIB_PATH\n    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    ;;\n  esac\n  # HP-UX runs *really* slowly unless shared libraries are mode 555, ...\n  postinstall_cmds='chmod 555 $lib'\n  # or fails outright, so override atomically:\n  install_override_mode=555\n  ;;\n\ninterix[3-9]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $host_os in\n    nonstopux*) version_type=nonstopux ;;\n    *)\n\tif test yes = \"$lt_cv_prog_gnu_ld\"; then\n\t\tversion_type=linux # correct to gnu/linux during the next big refactor\n\telse\n\t\tversion_type=irix\n\tfi ;;\n  esac\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='$libname$release$shared_ext$major'\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext'\n  case $host_os in\n  irix5* | nonstopux*)\n    libsuff= shlibsuff=\n    ;;\n  *)\n    case $LD in # libtool.m4 will add one of these switches to LD\n    *-32|*\"-32 \"|*-melf32bsmip|*\"-melf32bsmip \")\n      libsuff= shlibsuff= libmagic=32-bit;;\n    *-n32|*\"-n32 \"|*-melf32bmipn32|*\"-melf32bmipn32 \")\n      libsuff=32 shlibsuff=N32 libmagic=N32;;\n    *-64|*\"-64 \"|*-melf64bmip|*\"-melf64bmip \")\n      libsuff=64 shlibsuff=64 libmagic=64-bit;;\n    *) libsuff= shlibsuff= libmagic=never-match;;\n    esac\n    ;;\n  esac\n  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_search_path_spec=\"/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff\"\n  sys_lib_dlsearch_path_spec=\"/usr/lib$libsuff /lib$libsuff\"\n  hardcode_into_libs=yes\n  ;;\n\n# No shared lib support for Linux oldld, aout, or coff.\nlinux*oldld* | linux*aout* | linux*coff*)\n  dynamic_linker=no\n  ;;\n\nlinux*android*)\n  version_type=none # Android doesn't support versioned libraries.\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext'\n  soname_spec='$libname$release$shared_ext'\n  finish_cmds=\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  dynamic_linker='Android linker'\n  # Don't embed -rpath directories since the linker doesn't support them.\n  hardcode_libdir_flag_spec='-L$libdir'\n  ;;\n\n# This must be glibc/ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -n $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n\n  # Some binutils ld are patched to set DT_RUNPATH\n  if ${lt_cv_shlibpath_overrides_runpath+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_shlibpath_overrides_runpath=no\n    save_LDFLAGS=$LDFLAGS\n    save_libdir=$libdir\n    eval \"libdir=/foo; wl=\\\"$lt_prog_compiler_wl\\\"; \\\n\t LDFLAGS=\\\"\\$LDFLAGS $hardcode_libdir_flag_spec\\\"\"\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  if  ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep \"RUNPATH.*$libdir\" >/dev/null; then :\n  lt_cv_shlibpath_overrides_runpath=yes\nfi\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n    LDFLAGS=$save_LDFLAGS\n    libdir=$save_libdir\n\nfi\n\n  shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  # Ideally, we could use ldconfig to report *all* directores which are\n  # searched for libraries, however this is still not possible.  Aside from not\n  # being certain /sbin/ldconfig is available, command\n  # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64,\n  # even though it is searched at run-time.  Try to do the best guess by\n  # appending ld.so.conf contents (and includes) to the search path.\n  if test -f /etc/ld.so.conf; then\n    lt_ld_extra=`awk '/^include / { system(sprintf(\"cd /etc; cat %s 2>/dev/null\", \\$2)); skip = 1; } { if (!skip) print \\$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[\t ]*hwcap[\t ]/d;s/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/\"//g;/^$/d' | tr '\\n' ' '`\n    sys_lib_dlsearch_path_spec=\"/lib /usr/lib $lt_ld_extra\"\n  fi\n\n  # We used to test for /lib/ld.so.1 and disable shared libraries on\n  # powerpc, because MkLinux only supported shared libraries with the\n  # GNU dynamic linker.  Since this was broken with cross compilers,\n  # most powerpc-linux boxes support dynamic linking these days and\n  # people can always --disable-shared, the test was removed, and we\n  # assume the GNU/Linux dynamic linker is in use.\n  dynamic_linker='GNU/Linux ld.so'\n  ;;\n\nnetbsd*)\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n    finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n    dynamic_linker='NetBSD (a.out) ld.so'\n  else\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    dynamic_linker='NetBSD ld.elf_so'\n  fi\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  ;;\n\nnewsos6)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\n*nto* | *qnx*)\n  version_type=qnx\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  dynamic_linker='ldqnx.so'\n  ;;\n\nopenbsd* | bitrig*)\n  version_type=sunos\n  sys_lib_dlsearch_path_spec=/usr/lib\n  need_lib_prefix=no\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n    need_version=no\n  else\n    need_version=yes\n  fi\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\nos2*)\n  libname_spec='$name'\n  version_type=windows\n  shrext_cmds=.dll\n  need_version=no\n  need_lib_prefix=no\n  # OS/2 can only load a DLL with a base name of 8 characters or less.\n  soname_spec='`test -n \"$os2dllname\" && libname=\"$os2dllname\";\n    v=$($ECHO $release$versuffix | tr -d .-);\n    n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _);\n    $ECHO $n$v`$shared_ext'\n  library_names_spec='${libname}_dll.$libext'\n  dynamic_linker='OS/2 ld.exe'\n  shlibpath_var=BEGINLIBPATH\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n  postinstall_cmds='base_file=`basename \\$file`~\n    dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; $ECHO \\$dlname'\\''`~\n    dldir=$destdir/`dirname \\$dlpath`~\n    test -d \\$dldir || mkdir -p \\$dldir~\n    $install_prog $dir/$dlname \\$dldir/$dlname~\n    chmod a+x \\$dldir/$dlname~\n    if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n      eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n    fi'\n  postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; $ECHO \\$dlname'\\''`~\n    dlpath=$dir/\\$dldll~\n    $RM \\$dlpath'\n  ;;\n\nosf3* | osf4* | osf5*)\n  version_type=osf\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='$libname$release$shared_ext$major'\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib\"\n  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n  ;;\n\nrdos*)\n  dynamic_linker=no\n  ;;\n\nsolaris*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  # ldd complains unless libraries are executable\n  postinstall_cmds='chmod +x $lib'\n  ;;\n\nsunos4*)\n  version_type=sunos\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/usr/etc\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  if test yes = \"$with_gnu_ld\"; then\n    need_lib_prefix=no\n  fi\n  need_version=yes\n  ;;\n\nsysv4 | sysv4.3*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_vendor in\n    sni)\n      shlibpath_overrides_runpath=no\n      need_lib_prefix=no\n      runpath_var=LD_RUN_PATH\n      ;;\n    siemens)\n      need_lib_prefix=no\n      ;;\n    motorola)\n      need_lib_prefix=no\n      need_version=no\n      shlibpath_overrides_runpath=no\n      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'\n      ;;\n  esac\n  ;;\n\nsysv4*MP*)\n  if test -d /usr/nec; then\n    version_type=linux # correct to gnu/linux during the next big refactor\n    library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext'\n    soname_spec='$libname$shared_ext.$major'\n    shlibpath_var=LD_LIBRARY_PATH\n  fi\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  version_type=sco\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  if test yes = \"$with_gnu_ld\"; then\n    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'\n  else\n    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'\n    case $host_os in\n      sco3.2v5*)\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec /lib\"\n\t;;\n    esac\n  fi\n  sys_lib_dlsearch_path_spec='/usr/lib'\n  ;;\n\ntpf*)\n  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nuts4*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\n*)\n  dynamic_linker=no\n  ;;\nesac\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $dynamic_linker\" >&5\n$as_echo \"$dynamic_linker\" >&6; }\ntest no = \"$dynamic_linker\" && can_build_shared=no\n\nvariables_saved_for_relink=\"PATH $shlibpath_var $runpath_var\"\nif test yes = \"$GCC\"; then\n  variables_saved_for_relink=\"$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH\"\nfi\n\nif test set = \"${lt_cv_sys_lib_search_path_spec+set}\"; then\n  sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec\nfi\n\nif test set = \"${lt_cv_sys_lib_dlsearch_path_spec+set}\"; then\n  sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec\nfi\n\n# remember unaugmented sys_lib_dlsearch_path content for libtool script decls...\nconfigure_time_dlsearch_path=$sys_lib_dlsearch_path_spec\n\n# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code\nfunc_munge_path_list sys_lib_dlsearch_path_spec \"$LT_SYS_LIBRARY_PATH\"\n\n# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool\nconfigure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs\" >&5\n$as_echo_n \"checking how to hardcode library paths into programs... \" >&6; }\nhardcode_action=\nif test -n \"$hardcode_libdir_flag_spec\" ||\n   test -n \"$runpath_var\" ||\n   test yes = \"$hardcode_automatic\"; then\n\n  # We can hardcode non-existent directories.\n  if test no != \"$hardcode_direct\" &&\n     # If the only mechanism to avoid hardcoding is shlibpath_var, we\n     # have to relink, otherwise we might link with an installed library\n     # when we should be linking with a yet-to-be-installed one\n     ## test no != \"$_LT_TAGVAR(hardcode_shlibpath_var, )\" &&\n     test no != \"$hardcode_minus_L\"; then\n    # Linking always hardcodes the temporary library directory.\n    hardcode_action=relink\n  else\n    # We can link without hardcoding, and we can hardcode nonexisting dirs.\n    hardcode_action=immediate\n  fi\nelse\n  # We cannot hardcode anything, or else we can only hardcode existing\n  # directories.\n  hardcode_action=unsupported\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $hardcode_action\" >&5\n$as_echo \"$hardcode_action\" >&6; }\n\nif test relink = \"$hardcode_action\" ||\n   test yes = \"$inherit_rpath\"; then\n  # Fast installation is not supported\n  enable_fast_install=no\nelif test yes = \"$shlibpath_overrides_runpath\" ||\n     test no = \"$enable_shared\"; then\n  # Fast installation is not necessary\n  enable_fast_install=needless\nfi\n\n\n\n\n\n\n  if test yes != \"$enable_dlopen\"; then\n  enable_dlopen=unknown\n  enable_dlopen_self=unknown\n  enable_dlopen_self_static=unknown\nelse\n  lt_cv_dlopen=no\n  lt_cv_dlopen_libs=\n\n  case $host_os in\n  beos*)\n    lt_cv_dlopen=load_add_on\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n    ;;\n\n  mingw* | pw32* | cegcc*)\n    lt_cv_dlopen=LoadLibrary\n    lt_cv_dlopen_libs=\n    ;;\n\n  cygwin*)\n    lt_cv_dlopen=dlopen\n    lt_cv_dlopen_libs=\n    ;;\n\n  darwin*)\n    # if libdl is installed we need to link against it\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl\" >&5\n$as_echo_n \"checking for dlopen in -ldl... \" >&6; }\nif ${ac_cv_lib_dl_dlopen+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldl  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dl_dlopen=yes\nelse\n  ac_cv_lib_dl_dlopen=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen\" >&5\n$as_echo \"$ac_cv_lib_dl_dlopen\" >&6; }\nif test \"x$ac_cv_lib_dl_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl\nelse\n\n    lt_cv_dlopen=dyld\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n\nfi\n\n    ;;\n\n  tpf*)\n    # Don't try to run any link tests for TPF.  We know it's impossible\n    # because TPF is a cross-compiler, and we know how we open DSOs.\n    lt_cv_dlopen=dlopen\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=no\n    ;;\n\n  *)\n    ac_fn_c_check_func \"$LINENO\" \"shl_load\" \"ac_cv_func_shl_load\"\nif test \"x$ac_cv_func_shl_load\" = xyes; then :\n  lt_cv_dlopen=shl_load\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld\" >&5\n$as_echo_n \"checking for shl_load in -ldld... \" >&6; }\nif ${ac_cv_lib_dld_shl_load+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldld  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar shl_load ();\nint\nmain ()\n{\nreturn shl_load ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dld_shl_load=yes\nelse\n  ac_cv_lib_dld_shl_load=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load\" >&5\n$as_echo \"$ac_cv_lib_dld_shl_load\" >&6; }\nif test \"x$ac_cv_lib_dld_shl_load\" = xyes; then :\n  lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld\nelse\n  ac_fn_c_check_func \"$LINENO\" \"dlopen\" \"ac_cv_func_dlopen\"\nif test \"x$ac_cv_func_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl\" >&5\n$as_echo_n \"checking for dlopen in -ldl... \" >&6; }\nif ${ac_cv_lib_dl_dlopen+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldl  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dl_dlopen=yes\nelse\n  ac_cv_lib_dl_dlopen=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen\" >&5\n$as_echo \"$ac_cv_lib_dl_dlopen\" >&6; }\nif test \"x$ac_cv_lib_dl_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld\" >&5\n$as_echo_n \"checking for dlopen in -lsvld... \" >&6; }\nif ${ac_cv_lib_svld_dlopen+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-lsvld  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_svld_dlopen=yes\nelse\n  ac_cv_lib_svld_dlopen=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen\" >&5\n$as_echo \"$ac_cv_lib_svld_dlopen\" >&6; }\nif test \"x$ac_cv_lib_svld_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld\" >&5\n$as_echo_n \"checking for dld_link in -ldld... \" >&6; }\nif ${ac_cv_lib_dld_dld_link+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldld  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dld_link ();\nint\nmain ()\n{\nreturn dld_link ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dld_dld_link=yes\nelse\n  ac_cv_lib_dld_dld_link=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link\" >&5\n$as_echo \"$ac_cv_lib_dld_dld_link\" >&6; }\nif test \"x$ac_cv_lib_dld_dld_link\" = xyes; then :\n  lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n    ;;\n  esac\n\n  if test no = \"$lt_cv_dlopen\"; then\n    enable_dlopen=no\n  else\n    enable_dlopen=yes\n  fi\n\n  case $lt_cv_dlopen in\n  dlopen)\n    save_CPPFLAGS=$CPPFLAGS\n    test yes = \"$ac_cv_header_dlfcn_h\" && CPPFLAGS=\"$CPPFLAGS -DHAVE_DLFCN_H\"\n\n    save_LDFLAGS=$LDFLAGS\n    wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $export_dynamic_flag_spec\\\"\n\n    save_LIBS=$LIBS\n    LIBS=\"$lt_cv_dlopen_libs $LIBS\"\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself\" >&5\n$as_echo_n \"checking whether a program can dlopen itself... \" >&6; }\nif ${lt_cv_dlopen_self+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  \t  if test yes = \"$cross_compiling\"; then :\n  lt_cv_dlopen_self=cross\nelse\n  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2\n  lt_status=$lt_dlunknown\n  cat > conftest.$ac_ext <<_LT_EOF\n#line $LINENO \"configure\"\n#include \"confdefs.h\"\n\n#if HAVE_DLFCN_H\n#include <dlfcn.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef RTLD_GLOBAL\n#  define LT_DLGLOBAL\t\tRTLD_GLOBAL\n#else\n#  ifdef DL_GLOBAL\n#    define LT_DLGLOBAL\t\tDL_GLOBAL\n#  else\n#    define LT_DLGLOBAL\t\t0\n#  endif\n#endif\n\n/* We may have to define LT_DLLAZY_OR_NOW in the command line if we\n   find out it does not work in some platform. */\n#ifndef LT_DLLAZY_OR_NOW\n#  ifdef RTLD_LAZY\n#    define LT_DLLAZY_OR_NOW\t\tRTLD_LAZY\n#  else\n#    ifdef DL_LAZY\n#      define LT_DLLAZY_OR_NOW\t\tDL_LAZY\n#    else\n#      ifdef RTLD_NOW\n#        define LT_DLLAZY_OR_NOW\tRTLD_NOW\n#      else\n#        ifdef DL_NOW\n#          define LT_DLLAZY_OR_NOW\tDL_NOW\n#        else\n#          define LT_DLLAZY_OR_NOW\t0\n#        endif\n#      endif\n#    endif\n#  endif\n#endif\n\n/* When -fvisibility=hidden is used, assume the code has been annotated\n   correspondingly for the symbols needed.  */\n#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))\nint fnord () __attribute__((visibility(\"default\")));\n#endif\n\nint fnord () { return 42; }\nint main ()\n{\n  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);\n  int status = $lt_dlunknown;\n\n  if (self)\n    {\n      if (dlsym (self,\"fnord\"))       status = $lt_dlno_uscore;\n      else\n        {\n\t  if (dlsym( self,\"_fnord\"))  status = $lt_dlneed_uscore;\n          else puts (dlerror ());\n\t}\n      /* dlclose (self); */\n    }\n  else\n    puts (dlerror ());\n\n  return status;\n}\n_LT_EOF\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_link\\\"\"; } >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s \"conftest$ac_exeext\" 2>/dev/null; then\n    (./conftest; exit; ) >&5 2>/dev/null\n    lt_status=$?\n    case x$lt_status in\n      x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;\n      x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;\n      x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;;\n    esac\n  else :\n    # compilation failed\n    lt_cv_dlopen_self=no\n  fi\nfi\nrm -fr conftest*\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self\" >&5\n$as_echo \"$lt_cv_dlopen_self\" >&6; }\n\n    if test yes = \"$lt_cv_dlopen_self\"; then\n      wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $lt_prog_compiler_static\\\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself\" >&5\n$as_echo_n \"checking whether a statically linked program can dlopen itself... \" >&6; }\nif ${lt_cv_dlopen_self_static+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  \t  if test yes = \"$cross_compiling\"; then :\n  lt_cv_dlopen_self_static=cross\nelse\n  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2\n  lt_status=$lt_dlunknown\n  cat > conftest.$ac_ext <<_LT_EOF\n#line $LINENO \"configure\"\n#include \"confdefs.h\"\n\n#if HAVE_DLFCN_H\n#include <dlfcn.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef RTLD_GLOBAL\n#  define LT_DLGLOBAL\t\tRTLD_GLOBAL\n#else\n#  ifdef DL_GLOBAL\n#    define LT_DLGLOBAL\t\tDL_GLOBAL\n#  else\n#    define LT_DLGLOBAL\t\t0\n#  endif\n#endif\n\n/* We may have to define LT_DLLAZY_OR_NOW in the command line if we\n   find out it does not work in some platform. */\n#ifndef LT_DLLAZY_OR_NOW\n#  ifdef RTLD_LAZY\n#    define LT_DLLAZY_OR_NOW\t\tRTLD_LAZY\n#  else\n#    ifdef DL_LAZY\n#      define LT_DLLAZY_OR_NOW\t\tDL_LAZY\n#    else\n#      ifdef RTLD_NOW\n#        define LT_DLLAZY_OR_NOW\tRTLD_NOW\n#      else\n#        ifdef DL_NOW\n#          define LT_DLLAZY_OR_NOW\tDL_NOW\n#        else\n#          define LT_DLLAZY_OR_NOW\t0\n#        endif\n#      endif\n#    endif\n#  endif\n#endif\n\n/* When -fvisibility=hidden is used, assume the code has been annotated\n   correspondingly for the symbols needed.  */\n#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))\nint fnord () __attribute__((visibility(\"default\")));\n#endif\n\nint fnord () { return 42; }\nint main ()\n{\n  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);\n  int status = $lt_dlunknown;\n\n  if (self)\n    {\n      if (dlsym (self,\"fnord\"))       status = $lt_dlno_uscore;\n      else\n        {\n\t  if (dlsym( self,\"_fnord\"))  status = $lt_dlneed_uscore;\n          else puts (dlerror ());\n\t}\n      /* dlclose (self); */\n    }\n  else\n    puts (dlerror ());\n\n  return status;\n}\n_LT_EOF\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_link\\\"\"; } >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s \"conftest$ac_exeext\" 2>/dev/null; then\n    (./conftest; exit; ) >&5 2>/dev/null\n    lt_status=$?\n    case x$lt_status in\n      x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;\n      x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;\n      x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;;\n    esac\n  else :\n    # compilation failed\n    lt_cv_dlopen_self_static=no\n  fi\nfi\nrm -fr conftest*\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static\" >&5\n$as_echo \"$lt_cv_dlopen_self_static\" >&6; }\n    fi\n\n    CPPFLAGS=$save_CPPFLAGS\n    LDFLAGS=$save_LDFLAGS\n    LIBS=$save_LIBS\n    ;;\n  esac\n\n  case $lt_cv_dlopen_self in\n  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;\n  *) enable_dlopen_self=unknown ;;\n  esac\n\n  case $lt_cv_dlopen_self_static in\n  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;\n  *) enable_dlopen_self_static=unknown ;;\n  esac\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nstriplib=\nold_striplib=\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible\" >&5\n$as_echo_n \"checking whether stripping libraries is possible... \" >&6; }\nif test -n \"$STRIP\" && $STRIP -V 2>&1 | $GREP \"GNU strip\" >/dev/null; then\n  test -z \"$old_striplib\" && old_striplib=\"$STRIP --strip-debug\"\n  test -z \"$striplib\" && striplib=\"$STRIP --strip-unneeded\"\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\nelse\n# FIXME - insert some real tests, host_os isn't really good enough\n  case $host_os in\n  darwin*)\n    if test -n \"$STRIP\"; then\n      striplib=\"$STRIP -x\"\n      old_striplib=\"$STRIP -S\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\n    else\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n    fi\n    ;;\n  *)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n    ;;\n  esac\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n  # Report what library types will actually be built\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries\" >&5\n$as_echo_n \"checking if libtool supports shared libraries... \" >&6; }\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $can_build_shared\" >&5\n$as_echo \"$can_build_shared\" >&6; }\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries\" >&5\n$as_echo_n \"checking whether to build shared libraries... \" >&6; }\n  test no = \"$can_build_shared\" && enable_shared=no\n\n  # On AIX, shared libraries and static libraries use the same namespace, and\n  # are all built from PIC.\n  case $host_os in\n  aix3*)\n    test yes = \"$enable_shared\" && enable_static=no\n    if test -n \"$RANLIB\"; then\n      archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n      postinstall_cmds='$RANLIB $lib'\n    fi\n    ;;\n\n  aix[4-9]*)\n    if test ia64 != \"$host_cpu\"; then\n      case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in\n      yes,aix,yes) ;;\t\t\t# shared object as lib.so file only\n      yes,svr4,*) ;;\t\t\t# shared object as lib.so archive member only\n      yes,*) enable_static=no ;;\t# shared object in lib.a archive as well\n      esac\n    fi\n    ;;\n  esac\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $enable_shared\" >&5\n$as_echo \"$enable_shared\" >&6; }\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether to build static libraries\" >&5\n$as_echo_n \"checking whether to build static libraries... \" >&6; }\n  # Make sure either enable_shared or enable_static is yes.\n  test yes = \"$enable_shared\" || enable_static=yes\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $enable_static\" >&5\n$as_echo \"$enable_static\" >&6; }\n\n\n\n\nfi\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nCC=$lt_save_CC\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n        ac_config_commands=\"$ac_config_commands libtool\"\n\n\n\n\n# Only expand once:\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}windres\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}windres; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_RC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$RC\"; then\n  ac_cv_prog_RC=\"$RC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_RC=\"${ac_tool_prefix}windres\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nRC=$ac_cv_prog_RC\nif test -n \"$RC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $RC\" >&5\n$as_echo \"$RC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_RC\"; then\n  ac_ct_RC=$RC\n  # Extract the first word of \"windres\", so it can be a program name with args.\nset dummy windres; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_RC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_RC\"; then\n  ac_cv_prog_ac_ct_RC=\"$ac_ct_RC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_RC=\"windres\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_RC=$ac_cv_prog_ac_ct_RC\nif test -n \"$ac_ct_RC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_RC\" >&5\n$as_echo \"$ac_ct_RC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_RC\" = x; then\n    RC=\"\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    RC=$ac_ct_RC\n  fi\nelse\n  RC=\"$ac_cv_prog_RC\"\nfi\n\n\n\n\n# Source file extension for RC test sources.\nac_ext=rc\n\n# Object file extension for compiled RC test sources.\nobjext=o\nobjext_RC=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code='sample MENU { MENUITEM \"&Soup\", 100, CHECKED }'\n\n# Code to be used in simple link tests\nlt_simple_link_test_code=$lt_simple_compile_test_code\n\n# ltmain only uses $CC for tagged configurations so make sure $CC is set.\n\n\n\n\n\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n\n\n# save warnings/boilerplate of simple test code\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_compile_test_code\" >conftest.$ac_ext\neval \"$ac_compile\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_compiler_boilerplate=`cat conftest.err`\n$RM conftest*\n\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_link_test_code\" >conftest.$ac_ext\neval \"$ac_link\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_linker_boilerplate=`cat conftest.err`\n$RM -r conftest*\n\n\n# Allow CC to be a program name with arguments.\nlt_save_CC=$CC\nlt_save_CFLAGS=$CFLAGS\nlt_save_GCC=$GCC\nGCC=\nCC=${RC-\"windres\"}\nCFLAGS=\ncompiler=$CC\ncompiler_RC=$CC\nfunc_cc_basename $compiler\ncc_basename=$func_cc_basename_result\n\nlt_cv_prog_compiler_c_o_RC=yes\n\nif test -n \"$compiler\"; then\n  :\n\n\n\nfi\n\nGCC=$lt_save_GCC\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nCC=$lt_save_CC\nCFLAGS=$lt_save_CFLAGS\n\n\ncase \"$host_os\" in\n  mingw* | cygwin*) is_woe32=yes ;;\n  *) is_woe32=no ;;\nesac\nWOE32=$is_woe32\n\nif test $WOE32 = yes; then\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}windres\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}windres; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_WINDRES+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$WINDRES\"; then\n  ac_cv_prog_WINDRES=\"$WINDRES\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_WINDRES=\"${ac_tool_prefix}windres\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nWINDRES=$ac_cv_prog_WINDRES\nif test -n \"$WINDRES\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $WINDRES\" >&5\n$as_echo \"$WINDRES\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_WINDRES\"; then\n  ac_ct_WINDRES=$WINDRES\n  # Extract the first word of \"windres\", so it can be a program name with args.\nset dummy windres; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_WINDRES+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_WINDRES\"; then\n  ac_cv_prog_ac_ct_WINDRES=\"$ac_ct_WINDRES\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_WINDRES=\"windres\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_WINDRES=$ac_cv_prog_ac_ct_WINDRES\nif test -n \"$ac_ct_WINDRES\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_WINDRES\" >&5\n$as_echo \"$ac_ct_WINDRES\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_WINDRES\" = x; then\n    WINDRES=\"\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    WINDRES=$ac_ct_WINDRES\n  fi\nelse\n  WINDRES=\"$ac_cv_prog_WINDRES\"\nfi\n\nfi\n\n\n\n  CFLAG_VISIBILITY=\n  HAVE_VISIBILITY=0\n  if test -n \"$GCC\"; then\n                { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the -Werror option is usable\" >&5\n$as_echo_n \"checking whether the -Werror option is usable... \" >&6; }\n    if ${gl_cv_cc_vis_werror+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n      gl_save_CFLAGS=\"$CFLAGS\"\n      CFLAGS=\"$CFLAGS -Werror\"\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_cc_vis_werror=yes\nelse\n  gl_cv_cc_vis_werror=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n      CFLAGS=\"$gl_save_CFLAGS\"\nfi\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_cc_vis_werror\" >&5\n$as_echo \"$gl_cv_cc_vis_werror\" >&6; }\n        { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for simple visibility declarations\" >&5\n$as_echo_n \"checking for simple visibility declarations... \" >&6; }\n    if ${gl_cv_cc_visibility+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n      gl_save_CFLAGS=\"$CFLAGS\"\n      CFLAGS=\"$CFLAGS -fvisibility=hidden\"\n                                    if test $gl_cv_cc_vis_werror = yes; then\n        CFLAGS=\"$CFLAGS -Werror\"\n      fi\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\nextern __attribute__((__visibility__(\"hidden\"))) int hiddenvar;\n             extern __attribute__((__visibility__(\"default\"))) int exportedvar;\n             extern __attribute__((__visibility__(\"hidden\"))) int hiddenfunc (void);\n             extern __attribute__((__visibility__(\"default\"))) int exportedfunc (void);\n             void dummyfunc (void) {}\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_cc_visibility=yes\nelse\n  gl_cv_cc_visibility=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n      CFLAGS=\"$gl_save_CFLAGS\"\nfi\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_cc_visibility\" >&5\n$as_echo \"$gl_cv_cc_visibility\" >&6; }\n    if test $gl_cv_cc_visibility = yes; then\n      CFLAG_VISIBILITY=\"-fvisibility=hidden\"\n      HAVE_VISIBILITY=1\n    fi\n  fi\n\n\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_VISIBILITY $HAVE_VISIBILITY\n_ACEOF\n\n\n\n      if test \"X$prefix\" = \"XNONE\"; then\n    acl_final_prefix=\"$ac_default_prefix\"\n  else\n    acl_final_prefix=\"$prefix\"\n  fi\n  if test \"X$exec_prefix\" = \"XNONE\"; then\n    acl_final_exec_prefix='${prefix}'\n  else\n    acl_final_exec_prefix=\"$exec_prefix\"\n  fi\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  eval acl_final_exec_prefix=\\\"$acl_final_exec_prefix\\\"\n  prefix=\"$acl_save_prefix\"\n\n\n\n                                                { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for shared library run path origin\" >&5\n$as_echo_n \"checking for shared library run path origin... \" >&6; }\nif ${acl_cv_rpath+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n    CC=\"$CC\" GCC=\"$GCC\" LDFLAGS=\"$LDFLAGS\" LD=\"$LD\" with_gnu_ld=\"$with_gnu_ld\" \\\n    ${CONFIG_SHELL-/bin/sh} \"$ac_aux_dir/config.rpath\" \"$host\" > conftest.sh\n    . ./conftest.sh\n    rm -f ./conftest.sh\n    acl_cv_rpath=done\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath\" >&5\n$as_echo \"$acl_cv_rpath\" >&6; }\n  wl=\"$acl_cv_wl\"\n  acl_libext=\"$acl_cv_libext\"\n  acl_shlibext=\"$acl_cv_shlibext\"\n  acl_libname_spec=\"$acl_cv_libname_spec\"\n  acl_library_names_spec=\"$acl_cv_library_names_spec\"\n  acl_hardcode_libdir_flag_spec=\"$acl_cv_hardcode_libdir_flag_spec\"\n  acl_hardcode_libdir_separator=\"$acl_cv_hardcode_libdir_separator\"\n  acl_hardcode_direct=\"$acl_cv_hardcode_direct\"\n  acl_hardcode_minus_L=\"$acl_cv_hardcode_minus_L\"\n    # Check whether --enable-rpath was given.\nif test \"${enable_rpath+set}\" = set; then :\n  enableval=$enable_rpath; :\nelse\n  enable_rpath=yes\nfi\n\n\n\n\n  acl_libdirstem=lib\n  acl_libdirstem2=\n  case \"$host_os\" in\n    solaris*)\n                                    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for 64-bit host\" >&5\n$as_echo_n \"checking for 64-bit host... \" >&6; }\nif ${gl_cv_solaris_64bit+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#ifdef _LP64\nsixtyfour bits\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"sixtyfour bits\" >/dev/null 2>&1; then :\n  gl_cv_solaris_64bit=yes\nelse\n  gl_cv_solaris_64bit=no\nfi\nrm -f conftest*\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_solaris_64bit\" >&5\n$as_echo \"$gl_cv_solaris_64bit\" >&6; }\n      if test $gl_cv_solaris_64bit = yes; then\n        acl_libdirstem=lib/64\n        case \"$host_cpu\" in\n          sparc*)        acl_libdirstem2=lib/sparcv9 ;;\n          i*86 | x86_64) acl_libdirstem2=lib/amd64 ;;\n        esac\n      fi\n      ;;\n    *)\n      searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'`\n      if test -n \"$searchpath\"; then\n        acl_save_IFS=\"${IFS= \t}\"; IFS=\":\"\n        for searchdir in $searchpath; do\n          if test -d \"$searchdir\"; then\n            case \"$searchdir\" in\n              */lib64/ | */lib64 ) acl_libdirstem=lib64 ;;\n              */../ | */.. )\n                # Better ignore directories of this form. They are misleading.\n                ;;\n              *) searchdir=`cd \"$searchdir\" && pwd`\n                 case \"$searchdir\" in\n                   */lib64 ) acl_libdirstem=lib64 ;;\n                 esac ;;\n            esac\n          fi\n        done\n        IFS=\"$acl_save_IFS\"\n      fi\n      ;;\n  esac\n  test -n \"$acl_libdirstem2\" || acl_libdirstem2=\"$acl_libdirstem\"\n\n\n\n\n\n\n\n\n\n\n\n\n    use_additional=yes\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n\n    eval additional_includedir=\\\"$includedir\\\"\n    eval additional_libdir=\\\"$libdir\\\"\n\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n\n# Check whether --with-libiconv-prefix was given.\nif test \"${with_libiconv_prefix+set}\" = set; then :\n  withval=$with_libiconv_prefix;\n    if test \"X$withval\" = \"Xno\"; then\n      use_additional=no\n    else\n      if test \"X$withval\" = \"X\"; then\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n\n          eval additional_includedir=\\\"$includedir\\\"\n          eval additional_libdir=\\\"$libdir\\\"\n\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n      else\n        additional_includedir=\"$withval/include\"\n        additional_libdir=\"$withval/$acl_libdirstem\"\n        if test \"$acl_libdirstem2\" != \"$acl_libdirstem\" \\\n           && ! test -d \"$withval/$acl_libdirstem\"; then\n          additional_libdir=\"$withval/$acl_libdirstem2\"\n        fi\n      fi\n    fi\n\nfi\n\n      LIBICONV=\n  LTLIBICONV=\n  INCICONV=\n  LIBICONV_PREFIX=\n      HAVE_LIBICONV=\n  rpathdirs=\n  ltrpathdirs=\n  names_already_handled=\n  names_next_round='iconv '\n  while test -n \"$names_next_round\"; do\n    names_this_round=\"$names_next_round\"\n    names_next_round=\n    for name in $names_this_round; do\n      already_handled=\n      for n in $names_already_handled; do\n        if test \"$n\" = \"$name\"; then\n          already_handled=yes\n          break\n        fi\n      done\n      if test -z \"$already_handled\"; then\n        names_already_handled=\"$names_already_handled $name\"\n                        uppername=`echo \"$name\" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'`\n        eval value=\\\"\\$HAVE_LIB$uppername\\\"\n        if test -n \"$value\"; then\n          if test \"$value\" = yes; then\n            eval value=\\\"\\$LIB$uppername\\\"\n            test -z \"$value\" || LIBICONV=\"${LIBICONV}${LIBICONV:+ }$value\"\n            eval value=\\\"\\$LTLIB$uppername\\\"\n            test -z \"$value\" || LTLIBICONV=\"${LTLIBICONV}${LTLIBICONV:+ }$value\"\n          else\n                                    :\n          fi\n        else\n                              found_dir=\n          found_la=\n          found_so=\n          found_a=\n          eval libname=\\\"$acl_libname_spec\\\"    # typically: libname=lib$name\n          if test -n \"$acl_shlibext\"; then\n            shrext=\".$acl_shlibext\"             # typically: shrext=.so\n          else\n            shrext=\n          fi\n          if test $use_additional = yes; then\n            dir=\"$additional_libdir\"\n                                    if test -n \"$acl_shlibext\"; then\n              if test -f \"$dir/$libname$shrext\"; then\n                found_dir=\"$dir\"\n                found_so=\"$dir/$libname$shrext\"\n              else\n                if test \"$acl_library_names_spec\" = '$libname$shrext$versuffix'; then\n                  ver=`(cd \"$dir\" && \\\n                        for f in \"$libname$shrext\".*; do echo \"$f\"; done \\\n                        | sed -e \"s,^$libname$shrext\\\\\\\\.,,\" \\\n                        | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \\\n                        | sed 1q ) 2>/dev/null`\n                  if test -n \"$ver\" && test -f \"$dir/$libname$shrext.$ver\"; then\n                    found_dir=\"$dir\"\n                    found_so=\"$dir/$libname$shrext.$ver\"\n                  fi\n                else\n                  eval library_names=\\\"$acl_library_names_spec\\\"\n                  for f in $library_names; do\n                    if test -f \"$dir/$f\"; then\n                      found_dir=\"$dir\"\n                      found_so=\"$dir/$f\"\n                      break\n                    fi\n                  done\n                fi\n              fi\n            fi\n                        if test \"X$found_dir\" = \"X\"; then\n              if test -f \"$dir/$libname.$acl_libext\"; then\n                found_dir=\"$dir\"\n                found_a=\"$dir/$libname.$acl_libext\"\n              fi\n            fi\n            if test \"X$found_dir\" != \"X\"; then\n              if test -f \"$dir/$libname.la\"; then\n                found_la=\"$dir/$libname.la\"\n              fi\n            fi\n          fi\n          if test \"X$found_dir\" = \"X\"; then\n            for x in $LDFLAGS $LTLIBICONV; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n              case \"$x\" in\n                -L*)\n                  dir=`echo \"X$x\" | sed -e 's/^X-L//'`\n                                    if test -n \"$acl_shlibext\"; then\n                    if test -f \"$dir/$libname$shrext\"; then\n                      found_dir=\"$dir\"\n                      found_so=\"$dir/$libname$shrext\"\n                    else\n                      if test \"$acl_library_names_spec\" = '$libname$shrext$versuffix'; then\n                        ver=`(cd \"$dir\" && \\\n                              for f in \"$libname$shrext\".*; do echo \"$f\"; done \\\n                              | sed -e \"s,^$libname$shrext\\\\\\\\.,,\" \\\n                              | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \\\n                              | sed 1q ) 2>/dev/null`\n                        if test -n \"$ver\" && test -f \"$dir/$libname$shrext.$ver\"; then\n                          found_dir=\"$dir\"\n                          found_so=\"$dir/$libname$shrext.$ver\"\n                        fi\n                      else\n                        eval library_names=\\\"$acl_library_names_spec\\\"\n                        for f in $library_names; do\n                          if test -f \"$dir/$f\"; then\n                            found_dir=\"$dir\"\n                            found_so=\"$dir/$f\"\n                            break\n                          fi\n                        done\n                      fi\n                    fi\n                  fi\n                                    if test \"X$found_dir\" = \"X\"; then\n                    if test -f \"$dir/$libname.$acl_libext\"; then\n                      found_dir=\"$dir\"\n                      found_a=\"$dir/$libname.$acl_libext\"\n                    fi\n                  fi\n                  if test \"X$found_dir\" != \"X\"; then\n                    if test -f \"$dir/$libname.la\"; then\n                      found_la=\"$dir/$libname.la\"\n                    fi\n                  fi\n                  ;;\n              esac\n              if test \"X$found_dir\" != \"X\"; then\n                break\n              fi\n            done\n          fi\n          if test \"X$found_dir\" != \"X\"; then\n                        LTLIBICONV=\"${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name\"\n            if test \"X$found_so\" != \"X\"; then\n                                                        if test \"$enable_rpath\" = no \\\n                 || test \"X$found_dir\" = \"X/usr/$acl_libdirstem\" \\\n                 || test \"X$found_dir\" = \"X/usr/$acl_libdirstem2\"; then\n                                LIBICONV=\"${LIBICONV}${LIBICONV:+ }$found_so\"\n              else\n                                                                                haveit=\n                for x in $ltrpathdirs; do\n                  if test \"X$x\" = \"X$found_dir\"; then\n                    haveit=yes\n                    break\n                  fi\n                done\n                if test -z \"$haveit\"; then\n                  ltrpathdirs=\"$ltrpathdirs $found_dir\"\n                fi\n                                if test \"$acl_hardcode_direct\" = yes; then\n                                                      LIBICONV=\"${LIBICONV}${LIBICONV:+ }$found_so\"\n                else\n                  if test -n \"$acl_hardcode_libdir_flag_spec\" && test \"$acl_hardcode_minus_L\" = no; then\n                                                            LIBICONV=\"${LIBICONV}${LIBICONV:+ }$found_so\"\n                                                            haveit=\n                    for x in $rpathdirs; do\n                      if test \"X$x\" = \"X$found_dir\"; then\n                        haveit=yes\n                        break\n                      fi\n                    done\n                    if test -z \"$haveit\"; then\n                      rpathdirs=\"$rpathdirs $found_dir\"\n                    fi\n                  else\n                                                                                haveit=\n                    for x in $LDFLAGS $LIBICONV; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n                      if test \"X$x\" = \"X-L$found_dir\"; then\n                        haveit=yes\n                        break\n                      fi\n                    done\n                    if test -z \"$haveit\"; then\n                      LIBICONV=\"${LIBICONV}${LIBICONV:+ }-L$found_dir\"\n                    fi\n                    if test \"$acl_hardcode_minus_L\" != no; then\n                                                                                        LIBICONV=\"${LIBICONV}${LIBICONV:+ }$found_so\"\n                    else\n                                                                                                                                                                                LIBICONV=\"${LIBICONV}${LIBICONV:+ }-l$name\"\n                    fi\n                  fi\n                fi\n              fi\n            else\n              if test \"X$found_a\" != \"X\"; then\n                                LIBICONV=\"${LIBICONV}${LIBICONV:+ }$found_a\"\n              else\n                                                LIBICONV=\"${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name\"\n              fi\n            fi\n                        additional_includedir=\n            case \"$found_dir\" in\n              */$acl_libdirstem | */$acl_libdirstem/)\n                basedir=`echo \"X$found_dir\" | sed -e 's,^X,,' -e \"s,/$acl_libdirstem/\"'*$,,'`\n                if test \"$name\" = 'iconv'; then\n                  LIBICONV_PREFIX=\"$basedir\"\n                fi\n                additional_includedir=\"$basedir/include\"\n                ;;\n              */$acl_libdirstem2 | */$acl_libdirstem2/)\n                basedir=`echo \"X$found_dir\" | sed -e 's,^X,,' -e \"s,/$acl_libdirstem2/\"'*$,,'`\n                if test \"$name\" = 'iconv'; then\n                  LIBICONV_PREFIX=\"$basedir\"\n                fi\n                additional_includedir=\"$basedir/include\"\n                ;;\n            esac\n            if test \"X$additional_includedir\" != \"X\"; then\n                                                                                                                if test \"X$additional_includedir\" != \"X/usr/include\"; then\n                haveit=\n                if test \"X$additional_includedir\" = \"X/usr/local/include\"; then\n                  if test -n \"$GCC\"; then\n                    case $host_os in\n                      linux* | gnu* | k*bsd*-gnu) haveit=yes;;\n                    esac\n                  fi\n                fi\n                if test -z \"$haveit\"; then\n                  for x in $CPPFLAGS $INCICONV; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n                    if test \"X$x\" = \"X-I$additional_includedir\"; then\n                      haveit=yes\n                      break\n                    fi\n                  done\n                  if test -z \"$haveit\"; then\n                    if test -d \"$additional_includedir\"; then\n                                            INCICONV=\"${INCICONV}${INCICONV:+ }-I$additional_includedir\"\n                    fi\n                  fi\n                fi\n              fi\n            fi\n                        if test -n \"$found_la\"; then\n                                                        save_libdir=\"$libdir\"\n              case \"$found_la\" in\n                */* | *\\\\*) . \"$found_la\" ;;\n                *) . \"./$found_la\" ;;\n              esac\n              libdir=\"$save_libdir\"\n                            for dep in $dependency_libs; do\n                case \"$dep\" in\n                  -L*)\n                    additional_libdir=`echo \"X$dep\" | sed -e 's/^X-L//'`\n                                                                                                                                                                if test \"X$additional_libdir\" != \"X/usr/$acl_libdirstem\" \\\n                       && test \"X$additional_libdir\" != \"X/usr/$acl_libdirstem2\"; then\n                      haveit=\n                      if test \"X$additional_libdir\" = \"X/usr/local/$acl_libdirstem\" \\\n                         || test \"X$additional_libdir\" = \"X/usr/local/$acl_libdirstem2\"; then\n                        if test -n \"$GCC\"; then\n                          case $host_os in\n                            linux* | gnu* | k*bsd*-gnu) haveit=yes;;\n                          esac\n                        fi\n                      fi\n                      if test -z \"$haveit\"; then\n                        haveit=\n                        for x in $LDFLAGS $LIBICONV; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n                          if test \"X$x\" = \"X-L$additional_libdir\"; then\n                            haveit=yes\n                            break\n                          fi\n                        done\n                        if test -z \"$haveit\"; then\n                          if test -d \"$additional_libdir\"; then\n                                                        LIBICONV=\"${LIBICONV}${LIBICONV:+ }-L$additional_libdir\"\n                          fi\n                        fi\n                        haveit=\n                        for x in $LDFLAGS $LTLIBICONV; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n                          if test \"X$x\" = \"X-L$additional_libdir\"; then\n                            haveit=yes\n                            break\n                          fi\n                        done\n                        if test -z \"$haveit\"; then\n                          if test -d \"$additional_libdir\"; then\n                                                        LTLIBICONV=\"${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir\"\n                          fi\n                        fi\n                      fi\n                    fi\n                    ;;\n                  -R*)\n                    dir=`echo \"X$dep\" | sed -e 's/^X-R//'`\n                    if test \"$enable_rpath\" != no; then\n                                                                  haveit=\n                      for x in $rpathdirs; do\n                        if test \"X$x\" = \"X$dir\"; then\n                          haveit=yes\n                          break\n                        fi\n                      done\n                      if test -z \"$haveit\"; then\n                        rpathdirs=\"$rpathdirs $dir\"\n                      fi\n                                                                  haveit=\n                      for x in $ltrpathdirs; do\n                        if test \"X$x\" = \"X$dir\"; then\n                          haveit=yes\n                          break\n                        fi\n                      done\n                      if test -z \"$haveit\"; then\n                        ltrpathdirs=\"$ltrpathdirs $dir\"\n                      fi\n                    fi\n                    ;;\n                  -l*)\n                                        names_next_round=\"$names_next_round \"`echo \"X$dep\" | sed -e 's/^X-l//'`\n                    ;;\n                  *.la)\n                                                                                names_next_round=\"$names_next_round \"`echo \"X$dep\" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\\.la$,,'`\n                    ;;\n                  *)\n                                        LIBICONV=\"${LIBICONV}${LIBICONV:+ }$dep\"\n                    LTLIBICONV=\"${LTLIBICONV}${LTLIBICONV:+ }$dep\"\n                    ;;\n                esac\n              done\n            fi\n          else\n                                                            LIBICONV=\"${LIBICONV}${LIBICONV:+ }-l$name\"\n            LTLIBICONV=\"${LTLIBICONV}${LTLIBICONV:+ }-l$name\"\n          fi\n        fi\n      fi\n    done\n  done\n  if test \"X$rpathdirs\" != \"X\"; then\n    if test -n \"$acl_hardcode_libdir_separator\"; then\n                        alldirs=\n      for found_dir in $rpathdirs; do\n        alldirs=\"${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir\"\n      done\n            acl_save_libdir=\"$libdir\"\n      libdir=\"$alldirs\"\n      eval flag=\\\"$acl_hardcode_libdir_flag_spec\\\"\n      libdir=\"$acl_save_libdir\"\n      LIBICONV=\"${LIBICONV}${LIBICONV:+ }$flag\"\n    else\n            for found_dir in $rpathdirs; do\n        acl_save_libdir=\"$libdir\"\n        libdir=\"$found_dir\"\n        eval flag=\\\"$acl_hardcode_libdir_flag_spec\\\"\n        libdir=\"$acl_save_libdir\"\n        LIBICONV=\"${LIBICONV}${LIBICONV:+ }$flag\"\n      done\n    fi\n  fi\n  if test \"X$ltrpathdirs\" != \"X\"; then\n            for found_dir in $ltrpathdirs; do\n      LTLIBICONV=\"${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir\"\n    done\n  fi\n\n\n\n\n\n\n\n\n\n\n\n\n          am_save_CPPFLAGS=\"$CPPFLAGS\"\n\n  for element in $INCICONV; do\n    haveit=\n    for x in $CPPFLAGS; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n      if test \"X$x\" = \"X$element\"; then\n        haveit=yes\n        break\n      fi\n    done\n    if test -z \"$haveit\"; then\n      CPPFLAGS=\"${CPPFLAGS}${CPPFLAGS:+ }$element\"\n    fi\n  done\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for iconv\" >&5\n$as_echo_n \"checking for iconv... \" >&6; }\nif ${am_cv_func_iconv+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n    am_cv_func_iconv=\"no, consider installing GNU libiconv\"\n    am_cv_lib_iconv=no\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <stdlib.h>\n#include <iconv.h>\n\nint\nmain ()\n{\niconv_t cd = iconv_open(\"\",\"\");\n           iconv(cd,NULL,NULL,NULL,NULL);\n           iconv_close(cd);\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  am_cv_func_iconv=yes\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n    if test \"$am_cv_func_iconv\" != yes; then\n      am_save_LIBS=\"$LIBS\"\n      LIBS=\"$LIBS $LIBICONV\"\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <stdlib.h>\n#include <iconv.h>\n\nint\nmain ()\n{\niconv_t cd = iconv_open(\"\",\"\");\n             iconv(cd,NULL,NULL,NULL,NULL);\n             iconv_close(cd);\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  am_cv_lib_iconv=yes\n        am_cv_func_iconv=yes\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n      LIBS=\"$am_save_LIBS\"\n    fi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv\" >&5\n$as_echo \"$am_cv_func_iconv\" >&6; }\n  if test \"$am_cv_func_iconv\" = yes; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for working iconv\" >&5\n$as_echo_n \"checking for working iconv... \" >&6; }\nif ${am_cv_func_iconv_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n                  am_save_LIBS=\"$LIBS\"\n      if test $am_cv_lib_iconv = yes; then\n        LIBS=\"$LIBS $LIBICONV\"\n      fi\n      am_cv_func_iconv_works=no\n      for ac_iconv_const in '' 'const'; do\n        if test \"$cross_compiling\" = yes; then :\n  case \"$host_os\" in\n             aix* | hpux*) am_cv_func_iconv_works=\"guessing no\" ;;\n             *)            am_cv_func_iconv_works=\"guessing yes\" ;;\n           esac\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <iconv.h>\n#include <string.h>\n\n#ifndef ICONV_CONST\n# define ICONV_CONST $ac_iconv_const\n#endif\n\nint\nmain ()\n{\nint result = 0;\n  /* Test against AIX 5.1 bug: Failures are not distinguishable from successful\n     returns.  */\n  {\n    iconv_t cd_utf8_to_88591 = iconv_open (\"ISO8859-1\", \"UTF-8\");\n    if (cd_utf8_to_88591 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\342\\202\\254\"; /* EURO SIGN */\n        char buf[10];\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = strlen (input);\n        char *outptr = buf;\n        size_t outbytesleft = sizeof (buf);\n        size_t res = iconv (cd_utf8_to_88591,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if (res == 0)\n          result |= 1;\n        iconv_close (cd_utf8_to_88591);\n      }\n  }\n  /* Test against Solaris 10 bug: Failures are not distinguishable from\n     successful returns.  */\n  {\n    iconv_t cd_ascii_to_88591 = iconv_open (\"ISO8859-1\", \"646\");\n    if (cd_ascii_to_88591 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\263\";\n        char buf[10];\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = strlen (input);\n        char *outptr = buf;\n        size_t outbytesleft = sizeof (buf);\n        size_t res = iconv (cd_ascii_to_88591,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if (res == 0)\n          result |= 2;\n        iconv_close (cd_ascii_to_88591);\n      }\n  }\n  /* Test against AIX 6.1..7.1 bug: Buffer overrun.  */\n  {\n    iconv_t cd_88591_to_utf8 = iconv_open (\"UTF-8\", \"ISO-8859-1\");\n    if (cd_88591_to_utf8 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\304\";\n        static char buf[2] = { (char)0xDE, (char)0xAD };\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = 1;\n        char *outptr = buf;\n        size_t outbytesleft = 1;\n        size_t res = iconv (cd_88591_to_utf8,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD)\n          result |= 4;\n        iconv_close (cd_88591_to_utf8);\n      }\n  }\n#if 0 /* This bug could be worked around by the caller.  */\n  /* Test against HP-UX 11.11 bug: Positive return value instead of 0.  */\n  {\n    iconv_t cd_88591_to_utf8 = iconv_open (\"utf8\", \"iso88591\");\n    if (cd_88591_to_utf8 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\304rger mit b\\366sen B\\374bchen ohne Augenma\\337\";\n        char buf[50];\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = strlen (input);\n        char *outptr = buf;\n        size_t outbytesleft = sizeof (buf);\n        size_t res = iconv (cd_88591_to_utf8,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if ((int)res > 0)\n          result |= 8;\n        iconv_close (cd_88591_to_utf8);\n      }\n  }\n#endif\n  /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is\n     provided.  */\n  if (/* Try standardized names.  */\n      iconv_open (\"UTF-8\", \"EUC-JP\") == (iconv_t)(-1)\n      /* Try IRIX, OSF/1 names.  */\n      && iconv_open (\"UTF-8\", \"eucJP\") == (iconv_t)(-1)\n      /* Try AIX names.  */\n      && iconv_open (\"UTF-8\", \"IBM-eucJP\") == (iconv_t)(-1)\n      /* Try HP-UX names.  */\n      && iconv_open (\"utf8\", \"eucJP\") == (iconv_t)(-1))\n    result |= 16;\n  return result;\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  am_cv_func_iconv_works=yes\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n        test \"$am_cv_func_iconv_works\" = no || break\n      done\n      LIBS=\"$am_save_LIBS\"\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works\" >&5\n$as_echo \"$am_cv_func_iconv_works\" >&6; }\n    case \"$am_cv_func_iconv_works\" in\n      *no) am_func_iconv=no am_cv_lib_iconv=no ;;\n      *)   am_func_iconv=yes ;;\n    esac\n  else\n    am_func_iconv=no am_cv_lib_iconv=no\n  fi\n  if test \"$am_func_iconv\" = yes; then\n\n$as_echo \"#define HAVE_ICONV 1\" >>confdefs.h\n\n  fi\n  if test \"$am_cv_lib_iconv\" = yes; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to link with libiconv\" >&5\n$as_echo_n \"checking how to link with libiconv... \" >&6; }\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $LIBICONV\" >&5\n$as_echo \"$LIBICONV\" >&6; }\n  else\n            CPPFLAGS=\"$am_save_CPPFLAGS\"\n    LIBICONV=\n    LTLIBICONV=\n  fi\n\n\n\n  if test \"$am_cv_func_iconv\" = yes; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for iconv declaration\" >&5\n$as_echo_n \"checking for iconv declaration... \" >&6; }\n    if ${am_cv_proto_iconv+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <stdlib.h>\n#include <iconv.h>\nextern\n#ifdef __cplusplus\n\"C\"\n#endif\n#if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus)\nsize_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);\n#else\nsize_t iconv();\n#endif\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  am_cv_proto_iconv_arg1=\"\"\nelse\n  am_cv_proto_iconv_arg1=\"const\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n      am_cv_proto_iconv=\"extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);\"\nfi\n\n    am_cv_proto_iconv=`echo \"$am_cv_proto_iconv\" | tr -s ' ' | sed -e 's/( /(/'`\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result:\n         $am_cv_proto_iconv\" >&5\n$as_echo \"\n         $am_cv_proto_iconv\" >&6; }\n  else\n            am_cv_proto_iconv_arg1=\"\"\n  fi\n\ncat >>confdefs.h <<_ACEOF\n#define ICONV_CONST $am_cv_proto_iconv_arg1\n_ACEOF\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether NLS is requested\" >&5\n$as_echo_n \"checking whether NLS is requested... \" >&6; }\n    # Check whether --enable-nls was given.\nif test \"${enable_nls+set}\" = set; then :\n  enableval=$enable_nls; USE_NLS=$enableval\nelse\n  USE_NLS=yes\nfi\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $USE_NLS\" >&5\n$as_echo \"$USE_NLS\" >&6; }\n\n\n\n\n      GETTEXT_MACRO_VERSION=0.19\n\n\n\n\n# Prepare PATH_SEPARATOR.\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which\n  # contains only /bin. Note that ksh looks also at the FPATH variable,\n  # so we have to set that as well for the test.\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n    && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n           || PATH_SEPARATOR=';'\n       }\nfi\n\n# Find out how to test for executable files. Don't use a zero-byte file,\n# as systems may use methods other than mode bits to determine executability.\ncat >conf$$.file <<_ASEOF\n#! /bin/sh\nexit 0\n_ASEOF\nchmod +x conf$$.file\nif test -x conf$$.file >/dev/null 2>&1; then\n  ac_executable_p=\"test -x\"\nelse\n  ac_executable_p=\"test -f\"\nfi\nrm -f conf$$.file\n\n# Extract the first word of \"msgfmt\", so it can be a program name with args.\nset dummy msgfmt; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_path_MSGFMT+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case \"$MSGFMT\" in\n  [\\\\/]* | ?:[\\\\/]*)\n    ac_cv_path_MSGFMT=\"$MSGFMT\" # Let the user override the test with a path.\n    ;;\n  *)\n    ac_save_IFS=\"$IFS\"; IFS=$PATH_SEPARATOR\n    for ac_dir in $PATH; do\n      IFS=\"$ac_save_IFS\"\n      test -z \"$ac_dir\" && ac_dir=.\n      for ac_exec_ext in '' $ac_executable_extensions; do\n        if $ac_executable_p \"$ac_dir/$ac_word$ac_exec_ext\"; then\n          echo \"$as_me: trying $ac_dir/$ac_word...\" >&5\n          if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 &&\n     (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then\n            ac_cv_path_MSGFMT=\"$ac_dir/$ac_word$ac_exec_ext\"\n            break 2\n          fi\n        fi\n      done\n    done\n    IFS=\"$ac_save_IFS\"\n  test -z \"$ac_cv_path_MSGFMT\" && ac_cv_path_MSGFMT=\":\"\n    ;;\nesac\nfi\nMSGFMT=\"$ac_cv_path_MSGFMT\"\nif test \"$MSGFMT\" != \":\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MSGFMT\" >&5\n$as_echo \"$MSGFMT\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  # Extract the first word of \"gmsgfmt\", so it can be a program name with args.\nset dummy gmsgfmt; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_path_GMSGFMT+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case $GMSGFMT in\n  [\\\\/]* | ?:[\\\\/]*)\n  ac_cv_path_GMSGFMT=\"$GMSGFMT\" # Let the user override the test with a path.\n  ;;\n  *)\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_path_GMSGFMT=\"$as_dir/$ac_word$ac_exec_ext\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\n  test -z \"$ac_cv_path_GMSGFMT\" && ac_cv_path_GMSGFMT=\"$MSGFMT\"\n  ;;\nesac\nfi\nGMSGFMT=$ac_cv_path_GMSGFMT\nif test -n \"$GMSGFMT\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $GMSGFMT\" >&5\n$as_echo \"$GMSGFMT\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n\n    case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in\n    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;;\n    *) MSGFMT_015=$MSGFMT ;;\n  esac\n\n  case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in\n    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;;\n    *) GMSGFMT_015=$GMSGFMT ;;\n  esac\n\n\n\n# Prepare PATH_SEPARATOR.\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which\n  # contains only /bin. Note that ksh looks also at the FPATH variable,\n  # so we have to set that as well for the test.\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n    && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n           || PATH_SEPARATOR=';'\n       }\nfi\n\n# Find out how to test for executable files. Don't use a zero-byte file,\n# as systems may use methods other than mode bits to determine executability.\ncat >conf$$.file <<_ASEOF\n#! /bin/sh\nexit 0\n_ASEOF\nchmod +x conf$$.file\nif test -x conf$$.file >/dev/null 2>&1; then\n  ac_executable_p=\"test -x\"\nelse\n  ac_executable_p=\"test -f\"\nfi\nrm -f conf$$.file\n\n# Extract the first word of \"xgettext\", so it can be a program name with args.\nset dummy xgettext; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_path_XGETTEXT+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case \"$XGETTEXT\" in\n  [\\\\/]* | ?:[\\\\/]*)\n    ac_cv_path_XGETTEXT=\"$XGETTEXT\" # Let the user override the test with a path.\n    ;;\n  *)\n    ac_save_IFS=\"$IFS\"; IFS=$PATH_SEPARATOR\n    for ac_dir in $PATH; do\n      IFS=\"$ac_save_IFS\"\n      test -z \"$ac_dir\" && ac_dir=.\n      for ac_exec_ext in '' $ac_executable_extensions; do\n        if $ac_executable_p \"$ac_dir/$ac_word$ac_exec_ext\"; then\n          echo \"$as_me: trying $ac_dir/$ac_word...\" >&5\n          if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 &&\n     (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then\n            ac_cv_path_XGETTEXT=\"$ac_dir/$ac_word$ac_exec_ext\"\n            break 2\n          fi\n        fi\n      done\n    done\n    IFS=\"$ac_save_IFS\"\n  test -z \"$ac_cv_path_XGETTEXT\" && ac_cv_path_XGETTEXT=\":\"\n    ;;\nesac\nfi\nXGETTEXT=\"$ac_cv_path_XGETTEXT\"\nif test \"$XGETTEXT\" != \":\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $XGETTEXT\" >&5\n$as_echo \"$XGETTEXT\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n    rm -f messages.po\n\n    case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in\n    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;;\n    *) XGETTEXT_015=$XGETTEXT ;;\n  esac\n\n\n\n# Prepare PATH_SEPARATOR.\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which\n  # contains only /bin. Note that ksh looks also at the FPATH variable,\n  # so we have to set that as well for the test.\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n    && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n           || PATH_SEPARATOR=';'\n       }\nfi\n\n# Find out how to test for executable files. Don't use a zero-byte file,\n# as systems may use methods other than mode bits to determine executability.\ncat >conf$$.file <<_ASEOF\n#! /bin/sh\nexit 0\n_ASEOF\nchmod +x conf$$.file\nif test -x conf$$.file >/dev/null 2>&1; then\n  ac_executable_p=\"test -x\"\nelse\n  ac_executable_p=\"test -f\"\nfi\nrm -f conf$$.file\n\n# Extract the first word of \"msgmerge\", so it can be a program name with args.\nset dummy msgmerge; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_path_MSGMERGE+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case \"$MSGMERGE\" in\n  [\\\\/]* | ?:[\\\\/]*)\n    ac_cv_path_MSGMERGE=\"$MSGMERGE\" # Let the user override the test with a path.\n    ;;\n  *)\n    ac_save_IFS=\"$IFS\"; IFS=$PATH_SEPARATOR\n    for ac_dir in $PATH; do\n      IFS=\"$ac_save_IFS\"\n      test -z \"$ac_dir\" && ac_dir=.\n      for ac_exec_ext in '' $ac_executable_extensions; do\n        if $ac_executable_p \"$ac_dir/$ac_word$ac_exec_ext\"; then\n          echo \"$as_me: trying $ac_dir/$ac_word...\" >&5\n          if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then\n            ac_cv_path_MSGMERGE=\"$ac_dir/$ac_word$ac_exec_ext\"\n            break 2\n          fi\n        fi\n      done\n    done\n    IFS=\"$ac_save_IFS\"\n  test -z \"$ac_cv_path_MSGMERGE\" && ac_cv_path_MSGMERGE=\":\"\n    ;;\nesac\nfi\nMSGMERGE=\"$ac_cv_path_MSGMERGE\"\nif test \"$MSGMERGE\" != \":\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MSGMERGE\" >&5\n$as_echo \"$MSGMERGE\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n        test -n \"$localedir\" || localedir='${datadir}/locale'\n\n\n    test -n \"${XGETTEXT_EXTRA_OPTIONS+set}\" || XGETTEXT_EXTRA_OPTIONS=\n\n\n  ac_config_commands=\"$ac_config_commands po-directories\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue\" >&5\n$as_echo_n \"checking for CFPreferencesCopyAppValue... \" >&6; }\nif ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  gt_save_LIBS=\"$LIBS\"\n     LIBS=\"$LIBS -Wl,-framework -Wl,CoreFoundation\"\n     cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <CoreFoundation/CFPreferences.h>\nint\nmain ()\n{\nCFPreferencesCopyAppValue(NULL, NULL)\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  gt_cv_func_CFPreferencesCopyAppValue=yes\nelse\n  gt_cv_func_CFPreferencesCopyAppValue=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n     LIBS=\"$gt_save_LIBS\"\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue\" >&5\n$as_echo \"$gt_cv_func_CFPreferencesCopyAppValue\" >&6; }\n  if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then\n\n$as_echo \"#define HAVE_CFPREFERENCESCOPYAPPVALUE 1\" >>confdefs.h\n\n  fi\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent\" >&5\n$as_echo_n \"checking for CFLocaleCopyCurrent... \" >&6; }\nif ${gt_cv_func_CFLocaleCopyCurrent+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  gt_save_LIBS=\"$LIBS\"\n     LIBS=\"$LIBS -Wl,-framework -Wl,CoreFoundation\"\n     cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <CoreFoundation/CFLocale.h>\nint\nmain ()\n{\nCFLocaleCopyCurrent();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  gt_cv_func_CFLocaleCopyCurrent=yes\nelse\n  gt_cv_func_CFLocaleCopyCurrent=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n     LIBS=\"$gt_save_LIBS\"\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyCurrent\" >&5\n$as_echo \"$gt_cv_func_CFLocaleCopyCurrent\" >&6; }\n  if test $gt_cv_func_CFLocaleCopyCurrent = yes; then\n\n$as_echo \"#define HAVE_CFLOCALECOPYCURRENT 1\" >>confdefs.h\n\n  fi\n  INTL_MACOSX_LIBS=\n  if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then\n    INTL_MACOSX_LIBS=\"-Wl,-framework -Wl,CoreFoundation\"\n  fi\n\n\n\n\n\n\n  LIBINTL=\n  LTLIBINTL=\n  POSUB=\n\n    case \" $gt_needs \" in\n    *\" need-formatstring-macros \"*) gt_api_version=3 ;;\n    *\" need-ngettext \"*) gt_api_version=2 ;;\n    *) gt_api_version=1 ;;\n  esac\n  gt_func_gnugettext_libc=\"gt_cv_func_gnugettext${gt_api_version}_libc\"\n  gt_func_gnugettext_libintl=\"gt_cv_func_gnugettext${gt_api_version}_libintl\"\n\n    if test \"$USE_NLS\" = \"yes\"; then\n    gt_use_preinstalled_gnugettext=no\n\n\n        if test $gt_api_version -ge 3; then\n          gt_revision_test_code='\n#ifndef __GNU_GETTEXT_SUPPORTED_REVISION\n#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)\n#endif\ntypedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];\n'\n        else\n          gt_revision_test_code=\n        fi\n        if test $gt_api_version -ge 2; then\n          gt_expression_test_code=' + * ngettext (\"\", \"\", 0)'\n        else\n          gt_expression_test_code=\n        fi\n\n        { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc\" >&5\n$as_echo_n \"checking for GNU gettext in libc... \" >&6; }\nif eval \\${$gt_func_gnugettext_libc+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <libintl.h>\n#ifndef __GNU_GETTEXT_SUPPORTED_REVISION\nextern int _nl_msg_cat_cntr;\nextern int *_nl_domain_bindings;\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_domain_bindings)\n#else\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0\n#endif\n$gt_revision_test_code\n\nint\nmain ()\n{\n\nbindtextdomain (\"\", \"\");\nreturn * gettext (\"\")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  eval \"$gt_func_gnugettext_libc=yes\"\nelse\n  eval \"$gt_func_gnugettext_libc=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nfi\neval ac_res=\\$$gt_func_gnugettext_libc\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n\n        if { eval \"gt_val=\\$$gt_func_gnugettext_libc\"; test \"$gt_val\" != \"yes\"; }; then\n\n\n\n\n\n          am_save_CPPFLAGS=\"$CPPFLAGS\"\n\n  for element in $INCICONV; do\n    haveit=\n    for x in $CPPFLAGS; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n      if test \"X$x\" = \"X$element\"; then\n        haveit=yes\n        break\n      fi\n    done\n    if test -z \"$haveit\"; then\n      CPPFLAGS=\"${CPPFLAGS}${CPPFLAGS:+ }$element\"\n    fi\n  done\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for iconv\" >&5\n$as_echo_n \"checking for iconv... \" >&6; }\nif ${am_cv_func_iconv+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n    am_cv_func_iconv=\"no, consider installing GNU libiconv\"\n    am_cv_lib_iconv=no\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <stdlib.h>\n#include <iconv.h>\n\nint\nmain ()\n{\niconv_t cd = iconv_open(\"\",\"\");\n           iconv(cd,NULL,NULL,NULL,NULL);\n           iconv_close(cd);\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  am_cv_func_iconv=yes\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n    if test \"$am_cv_func_iconv\" != yes; then\n      am_save_LIBS=\"$LIBS\"\n      LIBS=\"$LIBS $LIBICONV\"\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <stdlib.h>\n#include <iconv.h>\n\nint\nmain ()\n{\niconv_t cd = iconv_open(\"\",\"\");\n             iconv(cd,NULL,NULL,NULL,NULL);\n             iconv_close(cd);\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  am_cv_lib_iconv=yes\n        am_cv_func_iconv=yes\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n      LIBS=\"$am_save_LIBS\"\n    fi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv\" >&5\n$as_echo \"$am_cv_func_iconv\" >&6; }\n  if test \"$am_cv_func_iconv\" = yes; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for working iconv\" >&5\n$as_echo_n \"checking for working iconv... \" >&6; }\nif ${am_cv_func_iconv_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n                  am_save_LIBS=\"$LIBS\"\n      if test $am_cv_lib_iconv = yes; then\n        LIBS=\"$LIBS $LIBICONV\"\n      fi\n      am_cv_func_iconv_works=no\n      for ac_iconv_const in '' 'const'; do\n        if test \"$cross_compiling\" = yes; then :\n  case \"$host_os\" in\n             aix* | hpux*) am_cv_func_iconv_works=\"guessing no\" ;;\n             *)            am_cv_func_iconv_works=\"guessing yes\" ;;\n           esac\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <iconv.h>\n#include <string.h>\n\n#ifndef ICONV_CONST\n# define ICONV_CONST $ac_iconv_const\n#endif\n\nint\nmain ()\n{\nint result = 0;\n  /* Test against AIX 5.1 bug: Failures are not distinguishable from successful\n     returns.  */\n  {\n    iconv_t cd_utf8_to_88591 = iconv_open (\"ISO8859-1\", \"UTF-8\");\n    if (cd_utf8_to_88591 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\342\\202\\254\"; /* EURO SIGN */\n        char buf[10];\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = strlen (input);\n        char *outptr = buf;\n        size_t outbytesleft = sizeof (buf);\n        size_t res = iconv (cd_utf8_to_88591,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if (res == 0)\n          result |= 1;\n        iconv_close (cd_utf8_to_88591);\n      }\n  }\n  /* Test against Solaris 10 bug: Failures are not distinguishable from\n     successful returns.  */\n  {\n    iconv_t cd_ascii_to_88591 = iconv_open (\"ISO8859-1\", \"646\");\n    if (cd_ascii_to_88591 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\263\";\n        char buf[10];\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = strlen (input);\n        char *outptr = buf;\n        size_t outbytesleft = sizeof (buf);\n        size_t res = iconv (cd_ascii_to_88591,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if (res == 0)\n          result |= 2;\n        iconv_close (cd_ascii_to_88591);\n      }\n  }\n  /* Test against AIX 6.1..7.1 bug: Buffer overrun.  */\n  {\n    iconv_t cd_88591_to_utf8 = iconv_open (\"UTF-8\", \"ISO-8859-1\");\n    if (cd_88591_to_utf8 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\304\";\n        static char buf[2] = { (char)0xDE, (char)0xAD };\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = 1;\n        char *outptr = buf;\n        size_t outbytesleft = 1;\n        size_t res = iconv (cd_88591_to_utf8,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD)\n          result |= 4;\n        iconv_close (cd_88591_to_utf8);\n      }\n  }\n#if 0 /* This bug could be worked around by the caller.  */\n  /* Test against HP-UX 11.11 bug: Positive return value instead of 0.  */\n  {\n    iconv_t cd_88591_to_utf8 = iconv_open (\"utf8\", \"iso88591\");\n    if (cd_88591_to_utf8 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\304rger mit b\\366sen B\\374bchen ohne Augenma\\337\";\n        char buf[50];\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = strlen (input);\n        char *outptr = buf;\n        size_t outbytesleft = sizeof (buf);\n        size_t res = iconv (cd_88591_to_utf8,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if ((int)res > 0)\n          result |= 8;\n        iconv_close (cd_88591_to_utf8);\n      }\n  }\n#endif\n  /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is\n     provided.  */\n  if (/* Try standardized names.  */\n      iconv_open (\"UTF-8\", \"EUC-JP\") == (iconv_t)(-1)\n      /* Try IRIX, OSF/1 names.  */\n      && iconv_open (\"UTF-8\", \"eucJP\") == (iconv_t)(-1)\n      /* Try AIX names.  */\n      && iconv_open (\"UTF-8\", \"IBM-eucJP\") == (iconv_t)(-1)\n      /* Try HP-UX names.  */\n      && iconv_open (\"utf8\", \"eucJP\") == (iconv_t)(-1))\n    result |= 16;\n  return result;\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  am_cv_func_iconv_works=yes\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n        test \"$am_cv_func_iconv_works\" = no || break\n      done\n      LIBS=\"$am_save_LIBS\"\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works\" >&5\n$as_echo \"$am_cv_func_iconv_works\" >&6; }\n    case \"$am_cv_func_iconv_works\" in\n      *no) am_func_iconv=no am_cv_lib_iconv=no ;;\n      *)   am_func_iconv=yes ;;\n    esac\n  else\n    am_func_iconv=no am_cv_lib_iconv=no\n  fi\n  if test \"$am_func_iconv\" = yes; then\n\n$as_echo \"#define HAVE_ICONV 1\" >>confdefs.h\n\n  fi\n  if test \"$am_cv_lib_iconv\" = yes; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to link with libiconv\" >&5\n$as_echo_n \"checking how to link with libiconv... \" >&6; }\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $LIBICONV\" >&5\n$as_echo \"$LIBICONV\" >&6; }\n  else\n            CPPFLAGS=\"$am_save_CPPFLAGS\"\n    LIBICONV=\n    LTLIBICONV=\n  fi\n\n\n\n\n\n\n\n\n\n\n\n    use_additional=yes\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n\n    eval additional_includedir=\\\"$includedir\\\"\n    eval additional_libdir=\\\"$libdir\\\"\n\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n\n# Check whether --with-libintl-prefix was given.\nif test \"${with_libintl_prefix+set}\" = set; then :\n  withval=$with_libintl_prefix;\n    if test \"X$withval\" = \"Xno\"; then\n      use_additional=no\n    else\n      if test \"X$withval\" = \"X\"; then\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n\n          eval additional_includedir=\\\"$includedir\\\"\n          eval additional_libdir=\\\"$libdir\\\"\n\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n      else\n        additional_includedir=\"$withval/include\"\n        additional_libdir=\"$withval/$acl_libdirstem\"\n        if test \"$acl_libdirstem2\" != \"$acl_libdirstem\" \\\n           && ! test -d \"$withval/$acl_libdirstem\"; then\n          additional_libdir=\"$withval/$acl_libdirstem2\"\n        fi\n      fi\n    fi\n\nfi\n\n      LIBINTL=\n  LTLIBINTL=\n  INCINTL=\n  LIBINTL_PREFIX=\n      HAVE_LIBINTL=\n  rpathdirs=\n  ltrpathdirs=\n  names_already_handled=\n  names_next_round='intl '\n  while test -n \"$names_next_round\"; do\n    names_this_round=\"$names_next_round\"\n    names_next_round=\n    for name in $names_this_round; do\n      already_handled=\n      for n in $names_already_handled; do\n        if test \"$n\" = \"$name\"; then\n          already_handled=yes\n          break\n        fi\n      done\n      if test -z \"$already_handled\"; then\n        names_already_handled=\"$names_already_handled $name\"\n                        uppername=`echo \"$name\" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'`\n        eval value=\\\"\\$HAVE_LIB$uppername\\\"\n        if test -n \"$value\"; then\n          if test \"$value\" = yes; then\n            eval value=\\\"\\$LIB$uppername\\\"\n            test -z \"$value\" || LIBINTL=\"${LIBINTL}${LIBINTL:+ }$value\"\n            eval value=\\\"\\$LTLIB$uppername\\\"\n            test -z \"$value\" || LTLIBINTL=\"${LTLIBINTL}${LTLIBINTL:+ }$value\"\n          else\n                                    :\n          fi\n        else\n                              found_dir=\n          found_la=\n          found_so=\n          found_a=\n          eval libname=\\\"$acl_libname_spec\\\"    # typically: libname=lib$name\n          if test -n \"$acl_shlibext\"; then\n            shrext=\".$acl_shlibext\"             # typically: shrext=.so\n          else\n            shrext=\n          fi\n          if test $use_additional = yes; then\n            dir=\"$additional_libdir\"\n                                    if test -n \"$acl_shlibext\"; then\n              if test -f \"$dir/$libname$shrext\"; then\n                found_dir=\"$dir\"\n                found_so=\"$dir/$libname$shrext\"\n              else\n                if test \"$acl_library_names_spec\" = '$libname$shrext$versuffix'; then\n                  ver=`(cd \"$dir\" && \\\n                        for f in \"$libname$shrext\".*; do echo \"$f\"; done \\\n                        | sed -e \"s,^$libname$shrext\\\\\\\\.,,\" \\\n                        | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \\\n                        | sed 1q ) 2>/dev/null`\n                  if test -n \"$ver\" && test -f \"$dir/$libname$shrext.$ver\"; then\n                    found_dir=\"$dir\"\n                    found_so=\"$dir/$libname$shrext.$ver\"\n                  fi\n                else\n                  eval library_names=\\\"$acl_library_names_spec\\\"\n                  for f in $library_names; do\n                    if test -f \"$dir/$f\"; then\n                      found_dir=\"$dir\"\n                      found_so=\"$dir/$f\"\n                      break\n                    fi\n                  done\n                fi\n              fi\n            fi\n                        if test \"X$found_dir\" = \"X\"; then\n              if test -f \"$dir/$libname.$acl_libext\"; then\n                found_dir=\"$dir\"\n                found_a=\"$dir/$libname.$acl_libext\"\n              fi\n            fi\n            if test \"X$found_dir\" != \"X\"; then\n              if test -f \"$dir/$libname.la\"; then\n                found_la=\"$dir/$libname.la\"\n              fi\n            fi\n          fi\n          if test \"X$found_dir\" = \"X\"; then\n            for x in $LDFLAGS $LTLIBINTL; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n              case \"$x\" in\n                -L*)\n                  dir=`echo \"X$x\" | sed -e 's/^X-L//'`\n                                    if test -n \"$acl_shlibext\"; then\n                    if test -f \"$dir/$libname$shrext\"; then\n                      found_dir=\"$dir\"\n                      found_so=\"$dir/$libname$shrext\"\n                    else\n                      if test \"$acl_library_names_spec\" = '$libname$shrext$versuffix'; then\n                        ver=`(cd \"$dir\" && \\\n                              for f in \"$libname$shrext\".*; do echo \"$f\"; done \\\n                              | sed -e \"s,^$libname$shrext\\\\\\\\.,,\" \\\n                              | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \\\n                              | sed 1q ) 2>/dev/null`\n                        if test -n \"$ver\" && test -f \"$dir/$libname$shrext.$ver\"; then\n                          found_dir=\"$dir\"\n                          found_so=\"$dir/$libname$shrext.$ver\"\n                        fi\n                      else\n                        eval library_names=\\\"$acl_library_names_spec\\\"\n                        for f in $library_names; do\n                          if test -f \"$dir/$f\"; then\n                            found_dir=\"$dir\"\n                            found_so=\"$dir/$f\"\n                            break\n                          fi\n                        done\n                      fi\n                    fi\n                  fi\n                                    if test \"X$found_dir\" = \"X\"; then\n                    if test -f \"$dir/$libname.$acl_libext\"; then\n                      found_dir=\"$dir\"\n                      found_a=\"$dir/$libname.$acl_libext\"\n                    fi\n                  fi\n                  if test \"X$found_dir\" != \"X\"; then\n                    if test -f \"$dir/$libname.la\"; then\n                      found_la=\"$dir/$libname.la\"\n                    fi\n                  fi\n                  ;;\n              esac\n              if test \"X$found_dir\" != \"X\"; then\n                break\n              fi\n            done\n          fi\n          if test \"X$found_dir\" != \"X\"; then\n                        LTLIBINTL=\"${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name\"\n            if test \"X$found_so\" != \"X\"; then\n                                                        if test \"$enable_rpath\" = no \\\n                 || test \"X$found_dir\" = \"X/usr/$acl_libdirstem\" \\\n                 || test \"X$found_dir\" = \"X/usr/$acl_libdirstem2\"; then\n                                LIBINTL=\"${LIBINTL}${LIBINTL:+ }$found_so\"\n              else\n                                                                                haveit=\n                for x in $ltrpathdirs; do\n                  if test \"X$x\" = \"X$found_dir\"; then\n                    haveit=yes\n                    break\n                  fi\n                done\n                if test -z \"$haveit\"; then\n                  ltrpathdirs=\"$ltrpathdirs $found_dir\"\n                fi\n                                if test \"$acl_hardcode_direct\" = yes; then\n                                                      LIBINTL=\"${LIBINTL}${LIBINTL:+ }$found_so\"\n                else\n                  if test -n \"$acl_hardcode_libdir_flag_spec\" && test \"$acl_hardcode_minus_L\" = no; then\n                                                            LIBINTL=\"${LIBINTL}${LIBINTL:+ }$found_so\"\n                                                            haveit=\n                    for x in $rpathdirs; do\n                      if test \"X$x\" = \"X$found_dir\"; then\n                        haveit=yes\n                        break\n                      fi\n                    done\n                    if test -z \"$haveit\"; then\n                      rpathdirs=\"$rpathdirs $found_dir\"\n                    fi\n                  else\n                                                                                haveit=\n                    for x in $LDFLAGS $LIBINTL; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n                      if test \"X$x\" = \"X-L$found_dir\"; then\n                        haveit=yes\n                        break\n                      fi\n                    done\n                    if test -z \"$haveit\"; then\n                      LIBINTL=\"${LIBINTL}${LIBINTL:+ }-L$found_dir\"\n                    fi\n                    if test \"$acl_hardcode_minus_L\" != no; then\n                                                                                        LIBINTL=\"${LIBINTL}${LIBINTL:+ }$found_so\"\n                    else\n                                                                                                                                                                                LIBINTL=\"${LIBINTL}${LIBINTL:+ }-l$name\"\n                    fi\n                  fi\n                fi\n              fi\n            else\n              if test \"X$found_a\" != \"X\"; then\n                                LIBINTL=\"${LIBINTL}${LIBINTL:+ }$found_a\"\n              else\n                                                LIBINTL=\"${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name\"\n              fi\n            fi\n                        additional_includedir=\n            case \"$found_dir\" in\n              */$acl_libdirstem | */$acl_libdirstem/)\n                basedir=`echo \"X$found_dir\" | sed -e 's,^X,,' -e \"s,/$acl_libdirstem/\"'*$,,'`\n                if test \"$name\" = 'intl'; then\n                  LIBINTL_PREFIX=\"$basedir\"\n                fi\n                additional_includedir=\"$basedir/include\"\n                ;;\n              */$acl_libdirstem2 | */$acl_libdirstem2/)\n                basedir=`echo \"X$found_dir\" | sed -e 's,^X,,' -e \"s,/$acl_libdirstem2/\"'*$,,'`\n                if test \"$name\" = 'intl'; then\n                  LIBINTL_PREFIX=\"$basedir\"\n                fi\n                additional_includedir=\"$basedir/include\"\n                ;;\n            esac\n            if test \"X$additional_includedir\" != \"X\"; then\n                                                                                                                if test \"X$additional_includedir\" != \"X/usr/include\"; then\n                haveit=\n                if test \"X$additional_includedir\" = \"X/usr/local/include\"; then\n                  if test -n \"$GCC\"; then\n                    case $host_os in\n                      linux* | gnu* | k*bsd*-gnu) haveit=yes;;\n                    esac\n                  fi\n                fi\n                if test -z \"$haveit\"; then\n                  for x in $CPPFLAGS $INCINTL; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n                    if test \"X$x\" = \"X-I$additional_includedir\"; then\n                      haveit=yes\n                      break\n                    fi\n                  done\n                  if test -z \"$haveit\"; then\n                    if test -d \"$additional_includedir\"; then\n                                            INCINTL=\"${INCINTL}${INCINTL:+ }-I$additional_includedir\"\n                    fi\n                  fi\n                fi\n              fi\n            fi\n                        if test -n \"$found_la\"; then\n                                                        save_libdir=\"$libdir\"\n              case \"$found_la\" in\n                */* | *\\\\*) . \"$found_la\" ;;\n                *) . \"./$found_la\" ;;\n              esac\n              libdir=\"$save_libdir\"\n                            for dep in $dependency_libs; do\n                case \"$dep\" in\n                  -L*)\n                    additional_libdir=`echo \"X$dep\" | sed -e 's/^X-L//'`\n                                                                                                                                                                if test \"X$additional_libdir\" != \"X/usr/$acl_libdirstem\" \\\n                       && test \"X$additional_libdir\" != \"X/usr/$acl_libdirstem2\"; then\n                      haveit=\n                      if test \"X$additional_libdir\" = \"X/usr/local/$acl_libdirstem\" \\\n                         || test \"X$additional_libdir\" = \"X/usr/local/$acl_libdirstem2\"; then\n                        if test -n \"$GCC\"; then\n                          case $host_os in\n                            linux* | gnu* | k*bsd*-gnu) haveit=yes;;\n                          esac\n                        fi\n                      fi\n                      if test -z \"$haveit\"; then\n                        haveit=\n                        for x in $LDFLAGS $LIBINTL; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n                          if test \"X$x\" = \"X-L$additional_libdir\"; then\n                            haveit=yes\n                            break\n                          fi\n                        done\n                        if test -z \"$haveit\"; then\n                          if test -d \"$additional_libdir\"; then\n                                                        LIBINTL=\"${LIBINTL}${LIBINTL:+ }-L$additional_libdir\"\n                          fi\n                        fi\n                        haveit=\n                        for x in $LDFLAGS $LTLIBINTL; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n                          if test \"X$x\" = \"X-L$additional_libdir\"; then\n                            haveit=yes\n                            break\n                          fi\n                        done\n                        if test -z \"$haveit\"; then\n                          if test -d \"$additional_libdir\"; then\n                                                        LTLIBINTL=\"${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir\"\n                          fi\n                        fi\n                      fi\n                    fi\n                    ;;\n                  -R*)\n                    dir=`echo \"X$dep\" | sed -e 's/^X-R//'`\n                    if test \"$enable_rpath\" != no; then\n                                                                  haveit=\n                      for x in $rpathdirs; do\n                        if test \"X$x\" = \"X$dir\"; then\n                          haveit=yes\n                          break\n                        fi\n                      done\n                      if test -z \"$haveit\"; then\n                        rpathdirs=\"$rpathdirs $dir\"\n                      fi\n                                                                  haveit=\n                      for x in $ltrpathdirs; do\n                        if test \"X$x\" = \"X$dir\"; then\n                          haveit=yes\n                          break\n                        fi\n                      done\n                      if test -z \"$haveit\"; then\n                        ltrpathdirs=\"$ltrpathdirs $dir\"\n                      fi\n                    fi\n                    ;;\n                  -l*)\n                                        names_next_round=\"$names_next_round \"`echo \"X$dep\" | sed -e 's/^X-l//'`\n                    ;;\n                  *.la)\n                                                                                names_next_round=\"$names_next_round \"`echo \"X$dep\" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\\.la$,,'`\n                    ;;\n                  *)\n                                        LIBINTL=\"${LIBINTL}${LIBINTL:+ }$dep\"\n                    LTLIBINTL=\"${LTLIBINTL}${LTLIBINTL:+ }$dep\"\n                    ;;\n                esac\n              done\n            fi\n          else\n                                                            LIBINTL=\"${LIBINTL}${LIBINTL:+ }-l$name\"\n            LTLIBINTL=\"${LTLIBINTL}${LTLIBINTL:+ }-l$name\"\n          fi\n        fi\n      fi\n    done\n  done\n  if test \"X$rpathdirs\" != \"X\"; then\n    if test -n \"$acl_hardcode_libdir_separator\"; then\n                        alldirs=\n      for found_dir in $rpathdirs; do\n        alldirs=\"${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir\"\n      done\n            acl_save_libdir=\"$libdir\"\n      libdir=\"$alldirs\"\n      eval flag=\\\"$acl_hardcode_libdir_flag_spec\\\"\n      libdir=\"$acl_save_libdir\"\n      LIBINTL=\"${LIBINTL}${LIBINTL:+ }$flag\"\n    else\n            for found_dir in $rpathdirs; do\n        acl_save_libdir=\"$libdir\"\n        libdir=\"$found_dir\"\n        eval flag=\\\"$acl_hardcode_libdir_flag_spec\\\"\n        libdir=\"$acl_save_libdir\"\n        LIBINTL=\"${LIBINTL}${LIBINTL:+ }$flag\"\n      done\n    fi\n  fi\n  if test \"X$ltrpathdirs\" != \"X\"; then\n            for found_dir in $ltrpathdirs; do\n      LTLIBINTL=\"${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir\"\n    done\n  fi\n\n\n\n\n\n\n          { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl\" >&5\n$as_echo_n \"checking for GNU gettext in libintl... \" >&6; }\nif eval \\${$gt_func_gnugettext_libintl+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  gt_save_CPPFLAGS=\"$CPPFLAGS\"\n            CPPFLAGS=\"$CPPFLAGS $INCINTL\"\n            gt_save_LIBS=\"$LIBS\"\n            LIBS=\"$LIBS $LIBINTL\"\n                        cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <libintl.h>\n#ifndef __GNU_GETTEXT_SUPPORTED_REVISION\nextern int _nl_msg_cat_cntr;\nextern\n#ifdef __cplusplus\n\"C\"\n#endif\nconst char *_nl_expand_alias (const char *);\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias (\"\"))\n#else\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0\n#endif\n$gt_revision_test_code\n\nint\nmain ()\n{\n\nbindtextdomain (\"\", \"\");\nreturn * gettext (\"\")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  eval \"$gt_func_gnugettext_libintl=yes\"\nelse\n  eval \"$gt_func_gnugettext_libintl=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n                        if { eval \"gt_val=\\$$gt_func_gnugettext_libintl\"; test \"$gt_val\" != yes; } && test -n \"$LIBICONV\"; then\n              LIBS=\"$LIBS $LIBICONV\"\n              cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <libintl.h>\n#ifndef __GNU_GETTEXT_SUPPORTED_REVISION\nextern int _nl_msg_cat_cntr;\nextern\n#ifdef __cplusplus\n\"C\"\n#endif\nconst char *_nl_expand_alias (const char *);\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias (\"\"))\n#else\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0\n#endif\n$gt_revision_test_code\n\nint\nmain ()\n{\n\nbindtextdomain (\"\", \"\");\nreturn * gettext (\"\")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  LIBINTL=\"$LIBINTL $LIBICONV\"\n                 LTLIBINTL=\"$LTLIBINTL $LTLIBICONV\"\n                 eval \"$gt_func_gnugettext_libintl=yes\"\n\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n            fi\n            CPPFLAGS=\"$gt_save_CPPFLAGS\"\n            LIBS=\"$gt_save_LIBS\"\nfi\neval ac_res=\\$$gt_func_gnugettext_libintl\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n        fi\n\n                                        if { eval \"gt_val=\\$$gt_func_gnugettext_libc\"; test \"$gt_val\" = \"yes\"; } \\\n           || { { eval \"gt_val=\\$$gt_func_gnugettext_libintl\"; test \"$gt_val\" = \"yes\"; } \\\n                && test \"$PACKAGE\" != gettext-runtime \\\n                && test \"$PACKAGE\" != gettext-tools; }; then\n          gt_use_preinstalled_gnugettext=yes\n        else\n                    LIBINTL=\n          LTLIBINTL=\n          INCINTL=\n        fi\n\n\n\n    if test -n \"$INTL_MACOSX_LIBS\"; then\n      if test \"$gt_use_preinstalled_gnugettext\" = \"yes\" \\\n         || test \"$nls_cv_use_gnu_gettext\" = \"yes\"; then\n                LIBINTL=\"$LIBINTL $INTL_MACOSX_LIBS\"\n        LTLIBINTL=\"$LTLIBINTL $INTL_MACOSX_LIBS\"\n      fi\n    fi\n\n    if test \"$gt_use_preinstalled_gnugettext\" = \"yes\" \\\n       || test \"$nls_cv_use_gnu_gettext\" = \"yes\"; then\n\n$as_echo \"#define ENABLE_NLS 1\" >>confdefs.h\n\n    else\n      USE_NLS=no\n    fi\n  fi\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether to use NLS\" >&5\n$as_echo_n \"checking whether to use NLS... \" >&6; }\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $USE_NLS\" >&5\n$as_echo \"$USE_NLS\" >&6; }\n  if test \"$USE_NLS\" = \"yes\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from\" >&5\n$as_echo_n \"checking where the gettext function comes from... \" >&6; }\n    if test \"$gt_use_preinstalled_gnugettext\" = \"yes\"; then\n      if { eval \"gt_val=\\$$gt_func_gnugettext_libintl\"; test \"$gt_val\" = \"yes\"; }; then\n        gt_source=\"external libintl\"\n      else\n        gt_source=\"libc\"\n      fi\n    else\n      gt_source=\"included intl directory\"\n    fi\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gt_source\" >&5\n$as_echo \"$gt_source\" >&6; }\n  fi\n\n  if test \"$USE_NLS\" = \"yes\"; then\n\n    if test \"$gt_use_preinstalled_gnugettext\" = \"yes\"; then\n      if { eval \"gt_val=\\$$gt_func_gnugettext_libintl\"; test \"$gt_val\" = \"yes\"; }; then\n        { $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to link with libintl\" >&5\n$as_echo_n \"checking how to link with libintl... \" >&6; }\n        { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $LIBINTL\" >&5\n$as_echo \"$LIBINTL\" >&6; }\n\n  for element in $INCINTL; do\n    haveit=\n    for x in $CPPFLAGS; do\n\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  eval x=\\\"$x\\\"\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n\n      if test \"X$x\" = \"X$element\"; then\n        haveit=yes\n        break\n      fi\n    done\n    if test -z \"$haveit\"; then\n      CPPFLAGS=\"${CPPFLAGS}${CPPFLAGS:+ }$element\"\n    fi\n  done\n\n      fi\n\n\n$as_echo \"#define HAVE_GETTEXT 1\" >>confdefs.h\n\n\n$as_echo \"#define HAVE_DCGETTEXT 1\" >>confdefs.h\n\n    fi\n\n        POSUB=po\n  fi\n\n\n\n    INTLLIBS=\"$LIBINTL\"\n\n\n\n\n\n\n\n\n\n\n   { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for mbstate_t\" >&5\n$as_echo_n \"checking for mbstate_t... \" >&6; }\nif ${ac_cv_type_mbstate_t+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$ac_includes_default\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n   included before <wchar.h>.  */\n#include <stddef.h>\n#include <stdio.h>\n#include <time.h>\n#include <wchar.h>\nint\nmain ()\n{\nmbstate_t x; return sizeof x;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_type_mbstate_t=yes\nelse\n  ac_cv_type_mbstate_t=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_mbstate_t\" >&5\n$as_echo \"$ac_cv_type_mbstate_t\" >&6; }\n   if test $ac_cv_type_mbstate_t = yes; then\n\n$as_echo \"#define HAVE_MBSTATE_T 1\" >>confdefs.h\n\n   else\n\n$as_echo \"#define mbstate_t int\" >>confdefs.h\n\n   fi\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for wchar_t\" >&5\n$as_echo_n \"checking for wchar_t... \" >&6; }\nif ${gt_cv_c_wchar_t+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stddef.h>\n            wchar_t foo = (wchar_t)'\\0';\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gt_cv_c_wchar_t=yes\nelse\n  gt_cv_c_wchar_t=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_wchar_t\" >&5\n$as_echo \"$gt_cv_c_wchar_t\" >&6; }\n  if test $gt_cv_c_wchar_t = yes; then\n\n$as_echo \"#define HAVE_WCHAR_T 1\" >>confdefs.h\n\n  fi\n\n\n\nif test \"$am_cv_func_iconv\" = yes -a -n \"$am_cv_proto_iconv_arg1\"; then\n  ICONV_CONST=\"const\"\nelse\n  ICONV_CONST=\"\"\nfi\n\n\nif test $gt_cv_c_wchar_t = yes; then\n  HAVE_WCHAR_T=1\nelse\n  HAVE_WCHAR_T=0\nfi\n\n\nfor ac_func in getc_unlocked mbrtowc wcrtomb mbsinit setlocale\ndo :\n  as_ac_var=`$as_echo \"ac_cv_func_$ac_func\" | $as_tr_sh`\nac_fn_c_check_func \"$LINENO\" \"$ac_func\" \"$as_ac_var\"\nif eval test \\\"x\\$\"$as_ac_var\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_$ac_func\" | $as_tr_cpp` 1\n_ACEOF\n\nfi\ndone\n\n\nif test $ac_cv_func_wcrtomb = yes || test $ac_cv_func_mbrtowc = yes; then\n  USE_MBSTATE_T=1\nelse\n  USE_MBSTATE_T=0\nfi\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether <wchar.h> is standalone\" >&5\n$as_echo_n \"checking whether <wchar.h> is standalone... \" >&6; }\nif ${gl_cv_header_wchar_h_standalone+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <wchar.h>\n          wchar_t w;\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_header_wchar_h_standalone=yes\nelse\n  gl_cv_header_wchar_h_standalone=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_wchar_h_standalone\" >&5\n$as_echo \"$gl_cv_header_wchar_h_standalone\" >&6; }\nif test $gl_cv_header_wchar_h_standalone = yes; then\n  BROKEN_WCHAR_H=0\nelse\n  BROKEN_WCHAR_H=1\nfi\n\n\nfor ac_func in memmove\ndo :\n  ac_fn_c_check_func \"$LINENO\" \"memmove\" \"ac_cv_func_memmove\"\nif test \"x$ac_cv_func_memmove\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_MEMMOVE 1\n_ACEOF\n\nelse\n  SRCLIBOBJS=\"$SRCLIBOBJS $ac_func.$ac_objext\"\nfi\ndone\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET\" >&5\n$as_echo_n \"checking for nl_langinfo and CODESET... \" >&6; }\nif ${am_cv_langinfo_codeset+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <langinfo.h>\nint\nmain ()\n{\nchar* cs = nl_langinfo(CODESET); return !cs;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  am_cv_langinfo_codeset=yes\nelse\n  am_cv_langinfo_codeset=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $am_cv_langinfo_codeset\" >&5\n$as_echo \"$am_cv_langinfo_codeset\" >&6; }\n  if test $am_cv_langinfo_codeset = yes; then\n\n$as_echo \"#define HAVE_LANGINFO_CODESET 1\" >>confdefs.h\n\n  fi\n\n\n\n\n  for ac_header in $ac_header_list\ndo :\n  as_ac_Header=`$as_echo \"ac_cv_header_$ac_header\" | $as_tr_sh`\nac_fn_c_check_header_compile \"$LINENO\" \"$ac_header\" \"$as_ac_Header\" \"$ac_includes_default\n\"\nif eval test \\\"x\\$\"$as_ac_Header\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_$ac_header\" | $as_tr_cpp` 1\n_ACEOF\n\nfi\n\ndone\n\n\n\n\n\n\n  for ac_func in $ac_func_list\ndo :\n  as_ac_var=`$as_echo \"ac_cv_func_$ac_func\" | $as_tr_sh`\nac_fn_c_check_func \"$LINENO\" \"$ac_func\" \"$as_ac_var\"\nif eval test \\\"x\\$\"$as_ac_var\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_$ac_func\" | $as_tr_cpp` 1\n_ACEOF\n\nfi\ndone\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for working fcntl.h\" >&5\n$as_echo_n \"checking for working fcntl.h... \" >&6; }\nif ${gl_cv_header_working_fcntl_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test \"$cross_compiling\" = yes; then :\n  gl_cv_header_working_fcntl_h=cross-compiling\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/types.h>\n           #include <sys/stat.h>\n           #if HAVE_UNISTD_H\n           # include <unistd.h>\n           #else /* on Windows with MSVC */\n           # include <io.h>\n           # include <stdlib.h>\n           # defined sleep(n) _sleep ((n) * 1000)\n           #endif\n           #include <fcntl.h>\n           #ifndef O_NOATIME\n            #define O_NOATIME 0\n           #endif\n           #ifndef O_NOFOLLOW\n            #define O_NOFOLLOW 0\n           #endif\n           static int const constants[] =\n            {\n              O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND,\n              O_NONBLOCK, O_SYNC, O_ACCMODE, O_RDONLY, O_RDWR, O_WRONLY\n            };\n\nint\nmain ()\n{\n\n            int result = !constants;\n            #if HAVE_SYMLINK\n            {\n              static char const sym[] = \"conftest.sym\";\n              if (symlink (\"/dev/null\", sym) != 0)\n                result |= 2;\n              else\n                {\n                  int fd = open (sym, O_WRONLY | O_NOFOLLOW | O_CREAT, 0);\n                  if (fd >= 0)\n                    {\n                      close (fd);\n                      result |= 4;\n                    }\n                }\n              if (unlink (sym) != 0 || symlink (\".\", sym) != 0)\n                result |= 2;\n              else\n                {\n                  int fd = open (sym, O_RDONLY | O_NOFOLLOW);\n                  if (fd >= 0)\n                    {\n                      close (fd);\n                      result |= 4;\n                    }\n                }\n              unlink (sym);\n            }\n            #endif\n            {\n              static char const file[] = \"confdefs.h\";\n              int fd = open (file, O_RDONLY | O_NOATIME);\n              if (fd < 0)\n                result |= 8;\n              else\n                {\n                  struct stat st0;\n                  if (fstat (fd, &st0) != 0)\n                    result |= 16;\n                  else\n                    {\n                      char c;\n                      sleep (1);\n                      if (read (fd, &c, 1) != 1)\n                        result |= 24;\n                      else\n                        {\n                          if (close (fd) != 0)\n                            result |= 32;\n                          else\n                            {\n                              struct stat st1;\n                              if (stat (file, &st1) != 0)\n                                result |= 40;\n                              else\n                                if (st0.st_atime != st1.st_atime)\n                                  result |= 64;\n                            }\n                        }\n                    }\n                }\n            }\n            return result;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  gl_cv_header_working_fcntl_h=yes\nelse\n  case $? in #(\n        4) gl_cv_header_working_fcntl_h='no (bad O_NOFOLLOW)';; #(\n        64) gl_cv_header_working_fcntl_h='no (bad O_NOATIME)';; #(\n        68) gl_cv_header_working_fcntl_h='no (bad O_NOATIME, O_NOFOLLOW)';; #(\n         *) gl_cv_header_working_fcntl_h='no';;\n        esac\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_working_fcntl_h\" >&5\n$as_echo \"$gl_cv_header_working_fcntl_h\" >&6; }\n\n  case $gl_cv_header_working_fcntl_h in #(\n  *O_NOATIME* | no | cross-compiling) ac_val=0;; #(\n  *) ac_val=1;;\n  esac\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_WORKING_O_NOATIME $ac_val\n_ACEOF\n\n\n  case $gl_cv_header_working_fcntl_h in #(\n  *O_NOFOLLOW* | no | cross-compiling) ac_val=0;; #(\n  *) ac_val=1;;\n  esac\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_WORKING_O_NOFOLLOW $ac_val\n_ACEOF\n\n\n\n\n\n    for ac_header in wchar.h\ndo :\n  ac_fn_c_check_header_mongrel \"$LINENO\" \"wchar.h\" \"ac_cv_header_wchar_h\" \"$ac_includes_default\"\nif test \"x$ac_cv_header_wchar_h\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_WCHAR_H 1\n_ACEOF\n\nfi\n\ndone\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for EILSEQ\" >&5\n$as_echo_n \"checking for EILSEQ... \" >&6; }\nif ${ac_cv_decl_EILSEQ+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <errno.h>\n#ifdef EILSEQ\nyes\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"yes\" >/dev/null 2>&1; then :\n  have_eilseq=1\nfi\nrm -f conftest*\n\n    if test -n \"$have_eilseq\"; then\n            ac_cv_decl_EILSEQ=yes\n    else\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <errno.h>\n#if HAVE_WCHAR_H\n#include <wchar.h>\n#endif\n#ifdef EILSEQ\nyes\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"yes\" >/dev/null 2>&1; then :\n  have_eilseq=1\nfi\nrm -f conftest*\n\n      if test -n \"$have_eilseq\"; then\n                        if ac_fn_c_compute_int \"$LINENO\" \"EILSEQ\" \"ac_cv_decl_EILSEQ\"        \"\n#include <errno.h>\n#if HAVE_WCHAR_H\n#include <wchar.h>\n#endif\n/* The following two lines are a workaround against an autoconf-2.52 bug.  */\n#include <stdio.h>\n#include <stdlib.h>\n\"; then :\n\nfi\n\n\n      else\n                                ac_cv_decl_EILSEQ=ENOENT\n      fi\n    fi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_decl_EILSEQ\" >&5\n$as_echo \"$ac_cv_decl_EILSEQ\" >&6; }\n  if test \"$ac_cv_decl_EILSEQ\" != yes; then\n\ncat >>confdefs.h <<_ACEOF\n#define EILSEQ $ac_cv_decl_EILSEQ\n_ACEOF\n\n    EILSEQ=\"$ac_cv_decl_EILSEQ\"\n\n  fi\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking byte ordering\" >&5\n$as_echo_n \"checking byte ordering... \" >&6; }\nif ${cl_cv_sys_endian+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\nif test \"$cross_compiling\" = yes; then :\n  : # must guess the endianness\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\nint main () {\n  /* Are we little or big endian?  From Harbison&Steele.  */\n  union\n  {\n    long l;\n    char c[sizeof (long)];\n  } u;\n  u.l = 1;\n  exit (u.c[0] == 1);\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  cl_cv_sys_endian=\"big endian\"\nelse\n  cl_cv_sys_endian=\"little endian\"\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\nif test -z \"$cl_cv_sys_endian\"; then\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#if defined(m68k) || defined(__m68k__) || defined(mc68000) || defined(mc68020) || defined(__mc68020__) || defined(sparc) || defined(__sparc__) || defined(MIPSEB) || defined(__MIPSEB__) || defined(hppa) || defined(__hppa) || defined(m88000) || defined(__m88k__)\n  yes\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"yes\" >/dev/null 2>&1; then :\n  cl_cv_sys_endian=\"big endian\"\nfi\nrm -f conftest*\n\nfi\nif test -z \"$cl_cv_sys_endian\"; then\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#if defined(i386) || defined(__i386) || defined(__i386__) || defined(_I386) || defined(MIPSEL) || defined(__MIPSEL__) || defined(__alpha)\n  yes\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"yes\" >/dev/null 2>&1; then :\n  cl_cv_sys_endian=\"little endian\"\nfi\nrm -f conftest*\n\nfi\nif test -z \"$cl_cv_sys_endian\"; then\ncl_cv_sys_endian=\"guessing little endian\"\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $cl_cv_sys_endian\" >&5\n$as_echo \"$cl_cv_sys_endian\" >&6; }\ncase \"$cl_cv_sys_endian\" in\n  *little*)\n\n$as_echo \"#define WORDS_LITTLEENDIAN 1\" >>confdefs.h\n ;;\n  *big*) ;;\nesac\n\n\n\n\n\n\n\n          LIBC_FATAL_STDERR_=1\n  export LIBC_FATAL_STDERR_\n\nac_fn_c_check_type \"$LINENO\" \"size_t\" \"ac_cv_type_size_t\" \"$ac_includes_default\"\nif test \"x$ac_cv_type_size_t\" = xyes; then :\n\nelse\n\ncat >>confdefs.h <<_ACEOF\n#define size_t unsigned int\n_ACEOF\n\nfi\n\n# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works\n# for constant arguments.  Useless!\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for working alloca.h\" >&5\n$as_echo_n \"checking for working alloca.h... \" >&6; }\nif ${ac_cv_working_alloca_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <alloca.h>\nint\nmain ()\n{\nchar *p = (char *) alloca (2 * sizeof (int));\n\t\t\t  if (p) return 0;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_working_alloca_h=yes\nelse\n  ac_cv_working_alloca_h=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_working_alloca_h\" >&5\n$as_echo \"$ac_cv_working_alloca_h\" >&6; }\nif test $ac_cv_working_alloca_h = yes; then\n\n$as_echo \"#define HAVE_ALLOCA_H 1\" >>confdefs.h\n\nfi\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for alloca\" >&5\n$as_echo_n \"checking for alloca... \" >&6; }\nif ${ac_cv_func_alloca_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#ifdef __GNUC__\n# define alloca __builtin_alloca\n#else\n# ifdef _MSC_VER\n#  include <malloc.h>\n#  define alloca _alloca\n# else\n#  ifdef HAVE_ALLOCA_H\n#   include <alloca.h>\n#  else\n#   ifdef _AIX\n #pragma alloca\n#   else\n#    ifndef alloca /* predefined by HP cc +Olibcalls */\nvoid *alloca (size_t);\n#    endif\n#   endif\n#  endif\n# endif\n#endif\n\nint\nmain ()\n{\nchar *p = (char *) alloca (1);\n\t\t\t\t    if (p) return 0;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_func_alloca_works=yes\nelse\n  ac_cv_func_alloca_works=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_alloca_works\" >&5\n$as_echo \"$ac_cv_func_alloca_works\" >&6; }\n\nif test $ac_cv_func_alloca_works = yes; then\n\n$as_echo \"#define HAVE_ALLOCA 1\" >>confdefs.h\n\nelse\n  # The SVR3 libPW and SVR4 libucb both contain incompatible functions\n# that cause trouble.  Some versions do not even contain alloca or\n# contain a buggy version.  If you still want to use their alloca,\n# use ar to extract alloca.o from them instead of compiling alloca.c.\n\n\n\n\n\nALLOCA=\\${LIBOBJDIR}alloca.$ac_objext\n\n$as_echo \"#define C_ALLOCA 1\" >>confdefs.h\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether \\`alloca.c' needs Cray hooks\" >&5\n$as_echo_n \"checking whether \\`alloca.c' needs Cray hooks... \" >&6; }\nif ${ac_cv_os_cray+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#if defined CRAY && ! defined CRAY2\nwebecray\n#else\nwenotbecray\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"webecray\" >/dev/null 2>&1; then :\n  ac_cv_os_cray=yes\nelse\n  ac_cv_os_cray=no\nfi\nrm -f conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_os_cray\" >&5\n$as_echo \"$ac_cv_os_cray\" >&6; }\nif test $ac_cv_os_cray = yes; then\n  for ac_func in _getb67 GETB67 getb67; do\n    as_ac_var=`$as_echo \"ac_cv_func_$ac_func\" | $as_tr_sh`\nac_fn_c_check_func \"$LINENO\" \"$ac_func\" \"$as_ac_var\"\nif eval test \\\"x\\$\"$as_ac_var\"\\\" = x\"yes\"; then :\n\ncat >>confdefs.h <<_ACEOF\n#define CRAY_STACKSEG_END $ac_func\n_ACEOF\n\n    break\nfi\n\n  done\nfi\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca\" >&5\n$as_echo_n \"checking stack direction for C alloca... \" >&6; }\nif ${ac_cv_c_stack_direction+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test \"$cross_compiling\" = yes; then :\n  ac_cv_c_stack_direction=0\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$ac_includes_default\nint\nfind_stack_direction (int *addr, int depth)\n{\n  int dir, dummy = 0;\n  if (! addr)\n    addr = &dummy;\n  *addr = addr < &dummy ? 1 : addr == &dummy ? 0 : -1;\n  dir = depth ? find_stack_direction (addr, depth - 1) : 0;\n  return dir + dummy;\n}\n\nint\nmain (int argc, char **argv)\n{\n  return find_stack_direction (0, argc + !argv + 20) < 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  ac_cv_c_stack_direction=1\nelse\n  ac_cv_c_stack_direction=-1\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_stack_direction\" >&5\n$as_echo \"$ac_cv_c_stack_direction\" >&6; }\ncat >>confdefs.h <<_ACEOF\n#define STACK_DIRECTION $ac_cv_c_stack_direction\n_ACEOF\n\n\nfi\n\n\n\n\n\n\n  GNULIB__EXIT=0;\n  GNULIB_ATOLL=0;\n  GNULIB_CALLOC_POSIX=0;\n  GNULIB_CANONICALIZE_FILE_NAME=0;\n  GNULIB_GETLOADAVG=0;\n  GNULIB_GETSUBOPT=0;\n  GNULIB_GRANTPT=0;\n  GNULIB_MALLOC_POSIX=0;\n  GNULIB_MBTOWC=0;\n  GNULIB_MKDTEMP=0;\n  GNULIB_MKOSTEMP=0;\n  GNULIB_MKOSTEMPS=0;\n  GNULIB_MKSTEMP=0;\n  GNULIB_MKSTEMPS=0;\n  GNULIB_POSIX_OPENPT=0;\n  GNULIB_PTSNAME=0;\n  GNULIB_PTSNAME_R=0;\n  GNULIB_PUTENV=0;\n  GNULIB_QSORT_R=0;\n  GNULIB_RANDOM=0;\n  GNULIB_RANDOM_R=0;\n  GNULIB_REALLOC_POSIX=0;\n  GNULIB_REALPATH=0;\n  GNULIB_RPMATCH=0;\n  GNULIB_SECURE_GETENV=0;\n  GNULIB_SETENV=0;\n  GNULIB_STRTOD=0;\n  GNULIB_STRTOLL=0;\n  GNULIB_STRTOULL=0;\n  GNULIB_SYSTEM_POSIX=0;\n  GNULIB_UNLOCKPT=0;\n  GNULIB_UNSETENV=0;\n  GNULIB_WCTOMB=0;\n    HAVE__EXIT=1;\n  HAVE_ATOLL=1;\n  HAVE_CANONICALIZE_FILE_NAME=1;\n  HAVE_DECL_GETLOADAVG=1;\n  HAVE_GETSUBOPT=1;\n  HAVE_GRANTPT=1;\n  HAVE_MKDTEMP=1;\n  HAVE_MKOSTEMP=1;\n  HAVE_MKOSTEMPS=1;\n  HAVE_MKSTEMP=1;\n  HAVE_MKSTEMPS=1;\n  HAVE_POSIX_OPENPT=1;\n  HAVE_PTSNAME=1;\n  HAVE_PTSNAME_R=1;\n  HAVE_QSORT_R=1;\n  HAVE_RANDOM=1;\n  HAVE_RANDOM_H=1;\n  HAVE_RANDOM_R=1;\n  HAVE_REALPATH=1;\n  HAVE_RPMATCH=1;\n  HAVE_SECURE_GETENV=1;\n  HAVE_SETENV=1;\n  HAVE_DECL_SETENV=1;\n  HAVE_STRTOD=1;\n  HAVE_STRTOLL=1;\n  HAVE_STRTOULL=1;\n  HAVE_STRUCT_RANDOM_DATA=1;\n  HAVE_SYS_LOADAVG_H=0;\n  HAVE_UNLOCKPT=1;\n  HAVE_DECL_UNSETENV=1;\n  REPLACE_CALLOC=0;\n  REPLACE_CANONICALIZE_FILE_NAME=0;\n  REPLACE_MALLOC=0;\n  REPLACE_MBTOWC=0;\n  REPLACE_MKSTEMP=0;\n  REPLACE_PTSNAME=0;\n  REPLACE_PTSNAME_R=0;\n  REPLACE_PUTENV=0;\n  REPLACE_QSORT_R=0;\n  REPLACE_RANDOM_R=0;\n  REPLACE_REALLOC=0;\n  REPLACE_REALPATH=0;\n  REPLACE_SETENV=0;\n  REPLACE_STRTOD=0;\n  REPLACE_UNSETENV=0;\n  REPLACE_WCTOMB=0;\n\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether // is distinct from /\" >&5\n$as_echo_n \"checking whether // is distinct from /... \" >&6; }\nif ${gl_cv_double_slash_root+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n   if test x\"$cross_compiling\" = xyes ; then\n        # When cross-compiling, there is no way to tell whether // is special\n        # short of a list of hosts.  However, the only known hosts to date\n        # that have a distinct // are Apollo DomainOS (too old to port to),\n        # Cygwin, and z/OS.  If anyone knows of another system for which // has\n        # special semantics and is distinct from /, please report it to\n        # <bug-gnulib@gnu.org>.\n        case $host in\n          *-cygwin | i370-ibm-openedition)\n            gl_cv_double_slash_root=yes ;;\n          *)\n            # Be optimistic and assume that / and // are the same when we\n            # don't know.\n            gl_cv_double_slash_root='unknown, assuming no' ;;\n        esac\n      else\n        set x `ls -di / // 2>/dev/null`\n        if test \"$2\" = \"$4\" && wc //dev/null >/dev/null 2>&1; then\n          gl_cv_double_slash_root=no\n        else\n          gl_cv_double_slash_root=yes\n        fi\n      fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_double_slash_root\" >&5\n$as_echo \"$gl_cv_double_slash_root\" >&6; }\n  if test \"$gl_cv_double_slash_root\" = yes; then\n\n$as_echo \"#define DOUBLE_SLASH_IS_DISTINCT_ROOT 1\" >>confdefs.h\n\n  fi\n\n\n\n\n\n     { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether realpath works\" >&5\n$as_echo_n \"checking whether realpath works... \" >&6; }\nif ${gl_cv_func_realpath_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n    touch conftest.a\n    mkdir conftest.d\n    if test \"$cross_compiling\" = yes; then :\n  case \"$host_os\" in\n                       # Guess yes on glibc systems.\n        *-gnu* | gnu*) gl_cv_func_realpath_works=\"guessing yes\" ;;\n                       # If we don't know, assume the worst.\n        *)             gl_cv_func_realpath_works=\"guessing no\" ;;\n      esac\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n\n\n#include <stdlib.h>\n#if defined __MACH__ && defined __APPLE__\n/* Avoid a crash on Mac OS X.  */\n#include <mach/mach.h>\n#include <mach/mach_error.h>\n#include <mach/thread_status.h>\n#include <mach/exception.h>\n#include <mach/task.h>\n#include <pthread.h>\n/* The exception port on which our thread listens.  */\nstatic mach_port_t our_exception_port;\n/* The main function of the thread listening for exceptions of type\n   EXC_BAD_ACCESS.  */\nstatic void *\nmach_exception_thread (void *arg)\n{\n  /* Buffer for a message to be received.  */\n  struct {\n    mach_msg_header_t head;\n    mach_msg_body_t msgh_body;\n    char data[1024];\n  } msg;\n  mach_msg_return_t retval;\n  /* Wait for a message on the exception port.  */\n  retval = mach_msg (&msg.head, MACH_RCV_MSG | MACH_RCV_LARGE, 0, sizeof (msg),\n                     our_exception_port, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);\n  if (retval != MACH_MSG_SUCCESS)\n    abort ();\n  exit (1);\n}\nstatic void\nnocrash_init (void)\n{\n  mach_port_t self = mach_task_self ();\n  /* Allocate a port on which the thread shall listen for exceptions.  */\n  if (mach_port_allocate (self, MACH_PORT_RIGHT_RECEIVE, &our_exception_port)\n      == KERN_SUCCESS) {\n    /* See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/mach_port_insert_right.html.  */\n    if (mach_port_insert_right (self, our_exception_port, our_exception_port,\n                                MACH_MSG_TYPE_MAKE_SEND)\n        == KERN_SUCCESS) {\n      /* The exceptions we want to catch.  Only EXC_BAD_ACCESS is interesting\n         for us.  */\n      exception_mask_t mask = EXC_MASK_BAD_ACCESS;\n      /* Create the thread listening on the exception port.  */\n      pthread_attr_t attr;\n      pthread_t thread;\n      if (pthread_attr_init (&attr) == 0\n          && pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED) == 0\n          && pthread_create (&thread, &attr, mach_exception_thread, NULL) == 0) {\n        pthread_attr_destroy (&attr);\n        /* Replace the exception port info for these exceptions with our own.\n           Note that we replace the exception port for the entire task, not only\n           for a particular thread.  This has the effect that when our exception\n           port gets the message, the thread specific exception port has already\n           been asked, and we don't need to bother about it.\n           See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/task_set_exception_ports.html.  */\n        task_set_exception_ports (self, mask, our_exception_port,\n                                  EXCEPTION_DEFAULT, MACHINE_THREAD_STATE);\n      }\n    }\n  }\n}\n#elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n/* Avoid a crash on native Windows.  */\n#define WIN32_LEAN_AND_MEAN\n#include <windows.h>\n#include <winerror.h>\nstatic LONG WINAPI\nexception_filter (EXCEPTION_POINTERS *ExceptionInfo)\n{\n  switch (ExceptionInfo->ExceptionRecord->ExceptionCode)\n    {\n    case EXCEPTION_ACCESS_VIOLATION:\n    case EXCEPTION_IN_PAGE_ERROR:\n    case EXCEPTION_STACK_OVERFLOW:\n    case EXCEPTION_GUARD_PAGE:\n    case EXCEPTION_PRIV_INSTRUCTION:\n    case EXCEPTION_ILLEGAL_INSTRUCTION:\n    case EXCEPTION_DATATYPE_MISALIGNMENT:\n    case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:\n    case EXCEPTION_NONCONTINUABLE_EXCEPTION:\n      exit (1);\n    }\n  return EXCEPTION_CONTINUE_SEARCH;\n}\nstatic void\nnocrash_init (void)\n{\n  SetUnhandledExceptionFilter ((LPTOP_LEVEL_EXCEPTION_FILTER) exception_filter);\n}\n#else\n/* Avoid a crash on POSIX systems.  */\n#include <signal.h>\n#include <unistd.h>\n/* A POSIX signal handler.  */\nstatic void\nexception_handler (int sig)\n{\n  _exit (1);\n}\nstatic void\nnocrash_init (void)\n{\n#ifdef SIGSEGV\n  signal (SIGSEGV, exception_handler);\n#endif\n#ifdef SIGBUS\n  signal (SIGBUS, exception_handler);\n#endif\n}\n#endif\n\n        #include <stdlib.h>\n        #include <string.h>\n\nint\nmain ()\n{\n\n        int result = 0;\n        {\n          char *name = realpath (\"conftest.a\", NULL);\n          if (!(name && *name == '/'))\n            result |= 1;\n          free (name);\n        }\n        {\n          char *name = realpath (\"conftest.b/../conftest.a\", NULL);\n          if (name != NULL)\n            result |= 2;\n          free (name);\n        }\n        {\n          char *name = realpath (\"conftest.a/\", NULL);\n          if (name != NULL)\n            result |= 4;\n          free (name);\n        }\n        {\n          char *name1 = realpath (\".\", NULL);\n          char *name2 = realpath (\"conftest.d//./..\", NULL);\n          if (! name1 || ! name2 || strcmp (name1, name2))\n            result |= 8;\n          free (name1);\n          free (name2);\n        }\n        return result;\n\n  ;\n  return 0;\n}\n\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  gl_cv_func_realpath_works=yes\nelse\n  gl_cv_func_realpath_works=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n    rm -rf conftest.a conftest.d\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_realpath_works\" >&5\n$as_echo \"$gl_cv_func_realpath_works\" >&6; }\n  case \"$gl_cv_func_realpath_works\" in\n    *yes)\n\n$as_echo \"#define FUNC_REALPATH_WORKS 1\" >>confdefs.h\n\n      ;;\n  esac\n\n\n\n\n\n\n\n\n\n\n\n\n\n  GNULIB_CHDIR=0;\n  GNULIB_CHOWN=0;\n  GNULIB_CLOSE=0;\n  GNULIB_DUP=0;\n  GNULIB_DUP2=0;\n  GNULIB_DUP3=0;\n  GNULIB_ENVIRON=0;\n  GNULIB_EUIDACCESS=0;\n  GNULIB_FACCESSAT=0;\n  GNULIB_FCHDIR=0;\n  GNULIB_FCHOWNAT=0;\n  GNULIB_FDATASYNC=0;\n  GNULIB_FSYNC=0;\n  GNULIB_FTRUNCATE=0;\n  GNULIB_GETCWD=0;\n  GNULIB_GETDOMAINNAME=0;\n  GNULIB_GETDTABLESIZE=0;\n  GNULIB_GETGROUPS=0;\n  GNULIB_GETHOSTNAME=0;\n  GNULIB_GETLOGIN=0;\n  GNULIB_GETLOGIN_R=0;\n  GNULIB_GETPAGESIZE=0;\n  GNULIB_GETUSERSHELL=0;\n  GNULIB_GROUP_MEMBER=0;\n  GNULIB_ISATTY=0;\n  GNULIB_LCHOWN=0;\n  GNULIB_LINK=0;\n  GNULIB_LINKAT=0;\n  GNULIB_LSEEK=0;\n  GNULIB_PIPE=0;\n  GNULIB_PIPE2=0;\n  GNULIB_PREAD=0;\n  GNULIB_PWRITE=0;\n  GNULIB_READ=0;\n  GNULIB_READLINK=0;\n  GNULIB_READLINKAT=0;\n  GNULIB_RMDIR=0;\n  GNULIB_SETHOSTNAME=0;\n  GNULIB_SLEEP=0;\n  GNULIB_SYMLINK=0;\n  GNULIB_SYMLINKAT=0;\n  GNULIB_TTYNAME_R=0;\n  GNULIB_UNISTD_H_NONBLOCKING=0;\n  GNULIB_UNISTD_H_SIGPIPE=0;\n  GNULIB_UNLINK=0;\n  GNULIB_UNLINKAT=0;\n  GNULIB_USLEEP=0;\n  GNULIB_WRITE=0;\n    HAVE_CHOWN=1;\n  HAVE_DUP2=1;\n  HAVE_DUP3=1;\n  HAVE_EUIDACCESS=1;\n  HAVE_FACCESSAT=1;\n  HAVE_FCHDIR=1;\n  HAVE_FCHOWNAT=1;\n  HAVE_FDATASYNC=1;\n  HAVE_FSYNC=1;\n  HAVE_FTRUNCATE=1;\n  HAVE_GETDTABLESIZE=1;\n  HAVE_GETGROUPS=1;\n  HAVE_GETHOSTNAME=1;\n  HAVE_GETLOGIN=1;\n  HAVE_GETPAGESIZE=1;\n  HAVE_GROUP_MEMBER=1;\n  HAVE_LCHOWN=1;\n  HAVE_LINK=1;\n  HAVE_LINKAT=1;\n  HAVE_PIPE=1;\n  HAVE_PIPE2=1;\n  HAVE_PREAD=1;\n  HAVE_PWRITE=1;\n  HAVE_READLINK=1;\n  HAVE_READLINKAT=1;\n  HAVE_SETHOSTNAME=1;\n  HAVE_SLEEP=1;\n  HAVE_SYMLINK=1;\n  HAVE_SYMLINKAT=1;\n  HAVE_UNLINKAT=1;\n  HAVE_USLEEP=1;\n  HAVE_DECL_ENVIRON=1;\n  HAVE_DECL_FCHDIR=1;\n  HAVE_DECL_FDATASYNC=1;\n  HAVE_DECL_GETDOMAINNAME=1;\n  HAVE_DECL_GETLOGIN=1;\n  HAVE_DECL_GETLOGIN_R=1;\n  HAVE_DECL_GETPAGESIZE=1;\n  HAVE_DECL_GETUSERSHELL=1;\n  HAVE_DECL_SETHOSTNAME=1;\n  HAVE_DECL_TTYNAME_R=1;\n  HAVE_OS_H=0;\n  HAVE_SYS_PARAM_H=0;\n  REPLACE_CHOWN=0;\n  REPLACE_CLOSE=0;\n  REPLACE_DUP=0;\n  REPLACE_DUP2=0;\n  REPLACE_FCHOWNAT=0;\n  REPLACE_FTRUNCATE=0;\n  REPLACE_GETCWD=0;\n  REPLACE_GETDOMAINNAME=0;\n  REPLACE_GETDTABLESIZE=0;\n  REPLACE_GETLOGIN_R=0;\n  REPLACE_GETGROUPS=0;\n  REPLACE_GETPAGESIZE=0;\n  REPLACE_ISATTY=0;\n  REPLACE_LCHOWN=0;\n  REPLACE_LINK=0;\n  REPLACE_LINKAT=0;\n  REPLACE_LSEEK=0;\n  REPLACE_PREAD=0;\n  REPLACE_PWRITE=0;\n  REPLACE_READ=0;\n  REPLACE_READLINK=0;\n  REPLACE_READLINKAT=0;\n  REPLACE_RMDIR=0;\n  REPLACE_SLEEP=0;\n  REPLACE_SYMLINK=0;\n  REPLACE_SYMLINKAT=0;\n  REPLACE_TTYNAME_R=0;\n  REPLACE_UNLINK=0;\n  REPLACE_UNLINKAT=0;\n  REPLACE_USLEEP=0;\n  REPLACE_WRITE=0;\n  UNISTD_H_HAVE_WINSOCK2_H=0;\n  UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS=0;\n\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if environ is properly declared\" >&5\n$as_echo_n \"checking if environ is properly declared... \" >&6; }\n  if ${gt_cv_var_environ_declaration+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#if HAVE_UNISTD_H\n     #include <unistd.h>\n     #endif\n     /* mingw, BeOS, Haiku declare environ in <stdlib.h>, not in <unistd.h>.  */\n     #include <stdlib.h>\n\n           extern struct { int foo; } environ;\nint\nmain ()\n{\nenviron.foo = 1;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gt_cv_var_environ_declaration=no\nelse\n  gt_cv_var_environ_declaration=yes\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gt_cv_var_environ_declaration\" >&5\n$as_echo \"$gt_cv_var_environ_declaration\" >&6; }\n  if test $gt_cv_var_environ_declaration = yes; then\n\n$as_echo \"#define HAVE_ENVIRON_DECL 1\" >>confdefs.h\n\n  fi\n\n\n  if test $gt_cv_var_environ_declaration != yes; then\n    HAVE_DECL_ENVIRON=0\n  fi\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the preprocessor supports include_next\" >&5\n$as_echo_n \"checking whether the preprocessor supports include_next... \" >&6; }\nif ${gl_cv_have_include_next+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  rm -rf conftestd1a conftestd1b conftestd2\n     mkdir conftestd1a conftestd1b conftestd2\n                                                  cat <<EOF > conftestd1a/conftest.h\n#define DEFINED_IN_CONFTESTD1\n#include_next <conftest.h>\n#ifdef DEFINED_IN_CONFTESTD2\nint foo;\n#else\n#error \"include_next doesn't work\"\n#endif\nEOF\n     cat <<EOF > conftestd1b/conftest.h\n#define DEFINED_IN_CONFTESTD1\n#include <stdio.h>\n#include_next <conftest.h>\n#ifdef DEFINED_IN_CONFTESTD2\nint foo;\n#else\n#error \"include_next doesn't work\"\n#endif\nEOF\n     cat <<EOF > conftestd2/conftest.h\n#ifndef DEFINED_IN_CONFTESTD1\n#error \"include_next test doesn't work\"\n#endif\n#define DEFINED_IN_CONFTESTD2\nEOF\n     gl_save_CPPFLAGS=\"$CPPFLAGS\"\n     CPPFLAGS=\"$gl_save_CPPFLAGS -Iconftestd1b -Iconftestd2\"\n     cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <conftest.h>\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_have_include_next=yes\nelse\n  CPPFLAGS=\"$gl_save_CPPFLAGS -Iconftestd1a -Iconftestd2\"\n        cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <conftest.h>\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_have_include_next=buggy\nelse\n  gl_cv_have_include_next=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n     CPPFLAGS=\"$gl_save_CPPFLAGS\"\n     rm -rf conftestd1a conftestd1b conftestd2\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_have_include_next\" >&5\n$as_echo \"$gl_cv_have_include_next\" >&6; }\n  PRAGMA_SYSTEM_HEADER=\n  if test $gl_cv_have_include_next = yes; then\n    INCLUDE_NEXT=include_next\n    INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next\n    if test -n \"$GCC\"; then\n      PRAGMA_SYSTEM_HEADER='#pragma GCC system_header'\n    fi\n  else\n    if test $gl_cv_have_include_next = buggy; then\n      INCLUDE_NEXT=include\n      INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next\n    else\n      INCLUDE_NEXT=include\n      INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include\n    fi\n  fi\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether system header files limit the line length\" >&5\n$as_echo_n \"checking whether system header files limit the line length... \" >&6; }\nif ${gl_cv_pragma_columns+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n       cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#ifdef __TANDEM\nchoke me\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"choke me\" >/dev/null 2>&1; then :\n  gl_cv_pragma_columns=yes\nelse\n  gl_cv_pragma_columns=no\nfi\nrm -f conftest*\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_pragma_columns\" >&5\n$as_echo \"$gl_cv_pragma_columns\" >&6; }\n  if test $gl_cv_pragma_columns = yes; then\n    PRAGMA_COLUMNS=\"#pragma COLUMNS 10000\"\n  else\n    PRAGMA_COLUMNS=\n  fi\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for complete errno.h\" >&5\n$as_echo_n \"checking for complete errno.h... \" >&6; }\nif ${gl_cv_header_errno_h_complete+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <errno.h>\n#if !defined ETXTBSY\nbooboo\n#endif\n#if !defined ENOMSG\nbooboo\n#endif\n#if !defined EIDRM\nbooboo\n#endif\n#if !defined ENOLINK\nbooboo\n#endif\n#if !defined EPROTO\nbooboo\n#endif\n#if !defined EMULTIHOP\nbooboo\n#endif\n#if !defined EBADMSG\nbooboo\n#endif\n#if !defined EOVERFLOW\nbooboo\n#endif\n#if !defined ENOTSUP\nbooboo\n#endif\n#if !defined ENETRESET\nbooboo\n#endif\n#if !defined ECONNABORTED\nbooboo\n#endif\n#if !defined ESTALE\nbooboo\n#endif\n#if !defined EDQUOT\nbooboo\n#endif\n#if !defined ECANCELED\nbooboo\n#endif\n#if !defined EOWNERDEAD\nbooboo\n#endif\n#if !defined ENOTRECOVERABLE\nbooboo\n#endif\n#if !defined EILSEQ\nbooboo\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"booboo\" >/dev/null 2>&1; then :\n  gl_cv_header_errno_h_complete=no\nelse\n  gl_cv_header_errno_h_complete=yes\nfi\nrm -f conftest*\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_errno_h_complete\" >&5\n$as_echo \"$gl_cv_header_errno_h_complete\" >&6; }\n  if test $gl_cv_header_errno_h_complete = yes; then\n    ERRNO_H=''\n  else\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_errno_h='<'errno.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <errno.h>\" >&5\n$as_echo_n \"checking absolute name of <errno.h>... \" >&6; }\nif ${gl_cv_next_errno_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <errno.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'errno.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_errno_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_errno_h\n           gl_cv_next_errno_h='\"'$gl_header'\"'\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_errno_h\" >&5\n$as_echo \"$gl_cv_next_errno_h\" >&6; }\n     fi\n     NEXT_ERRNO_H=$gl_cv_next_errno_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'errno.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_errno_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_ERRNO_H=$gl_next_as_first_directive\n\n\n\n\n    ERRNO_H='errno.h'\n  fi\n\n   if test -n \"$ERRNO_H\"; then\n  GL_GENERATE_ERRNO_H_TRUE=\n  GL_GENERATE_ERRNO_H_FALSE='#'\nelse\n  GL_GENERATE_ERRNO_H_TRUE='#'\n  GL_GENERATE_ERRNO_H_FALSE=\nfi\n\n\n  if test -n \"$ERRNO_H\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for EMULTIHOP value\" >&5\n$as_echo_n \"checking for EMULTIHOP value... \" >&6; }\nif ${gl_cv_header_errno_h_EMULTIHOP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <errno.h>\n#ifdef EMULTIHOP\nyes\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"yes\" >/dev/null 2>&1; then :\n  gl_cv_header_errno_h_EMULTIHOP=yes\nelse\n  gl_cv_header_errno_h_EMULTIHOP=no\nfi\nrm -f conftest*\n\n      if test $gl_cv_header_errno_h_EMULTIHOP = no; then\n        cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#define _XOPEN_SOURCE_EXTENDED 1\n#include <errno.h>\n#ifdef EMULTIHOP\nyes\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"yes\" >/dev/null 2>&1; then :\n  gl_cv_header_errno_h_EMULTIHOP=hidden\nfi\nrm -f conftest*\n\n        if test $gl_cv_header_errno_h_EMULTIHOP = hidden; then\n                              if ac_fn_c_compute_int \"$LINENO\" \"EMULTIHOP\" \"gl_cv_header_errno_h_EMULTIHOP\"        \"\n#define _XOPEN_SOURCE_EXTENDED 1\n#include <errno.h>\n/* The following two lines are a workaround against an autoconf-2.52 bug.  */\n#include <stdio.h>\n#include <stdlib.h>\n\"; then :\n\nfi\n\n        fi\n      fi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_errno_h_EMULTIHOP\" >&5\n$as_echo \"$gl_cv_header_errno_h_EMULTIHOP\" >&6; }\n    case $gl_cv_header_errno_h_EMULTIHOP in\n      yes | no)\n        EMULTIHOP_HIDDEN=0; EMULTIHOP_VALUE=\n        ;;\n      *)\n        EMULTIHOP_HIDDEN=1; EMULTIHOP_VALUE=\"$gl_cv_header_errno_h_EMULTIHOP\"\n        ;;\n    esac\n\n\n  fi\n\n\n  if test -n \"$ERRNO_H\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ENOLINK value\" >&5\n$as_echo_n \"checking for ENOLINK value... \" >&6; }\nif ${gl_cv_header_errno_h_ENOLINK+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <errno.h>\n#ifdef ENOLINK\nyes\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"yes\" >/dev/null 2>&1; then :\n  gl_cv_header_errno_h_ENOLINK=yes\nelse\n  gl_cv_header_errno_h_ENOLINK=no\nfi\nrm -f conftest*\n\n      if test $gl_cv_header_errno_h_ENOLINK = no; then\n        cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#define _XOPEN_SOURCE_EXTENDED 1\n#include <errno.h>\n#ifdef ENOLINK\nyes\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"yes\" >/dev/null 2>&1; then :\n  gl_cv_header_errno_h_ENOLINK=hidden\nfi\nrm -f conftest*\n\n        if test $gl_cv_header_errno_h_ENOLINK = hidden; then\n                              if ac_fn_c_compute_int \"$LINENO\" \"ENOLINK\" \"gl_cv_header_errno_h_ENOLINK\"        \"\n#define _XOPEN_SOURCE_EXTENDED 1\n#include <errno.h>\n/* The following two lines are a workaround against an autoconf-2.52 bug.  */\n#include <stdio.h>\n#include <stdlib.h>\n\"; then :\n\nfi\n\n        fi\n      fi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_errno_h_ENOLINK\" >&5\n$as_echo \"$gl_cv_header_errno_h_ENOLINK\" >&6; }\n    case $gl_cv_header_errno_h_ENOLINK in\n      yes | no)\n        ENOLINK_HIDDEN=0; ENOLINK_VALUE=\n        ;;\n      *)\n        ENOLINK_HIDDEN=1; ENOLINK_VALUE=\"$gl_cv_header_errno_h_ENOLINK\"\n        ;;\n    esac\n\n\n  fi\n\n\n  if test -n \"$ERRNO_H\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for EOVERFLOW value\" >&5\n$as_echo_n \"checking for EOVERFLOW value... \" >&6; }\nif ${gl_cv_header_errno_h_EOVERFLOW+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <errno.h>\n#ifdef EOVERFLOW\nyes\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"yes\" >/dev/null 2>&1; then :\n  gl_cv_header_errno_h_EOVERFLOW=yes\nelse\n  gl_cv_header_errno_h_EOVERFLOW=no\nfi\nrm -f conftest*\n\n      if test $gl_cv_header_errno_h_EOVERFLOW = no; then\n        cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#define _XOPEN_SOURCE_EXTENDED 1\n#include <errno.h>\n#ifdef EOVERFLOW\nyes\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"yes\" >/dev/null 2>&1; then :\n  gl_cv_header_errno_h_EOVERFLOW=hidden\nfi\nrm -f conftest*\n\n        if test $gl_cv_header_errno_h_EOVERFLOW = hidden; then\n                              if ac_fn_c_compute_int \"$LINENO\" \"EOVERFLOW\" \"gl_cv_header_errno_h_EOVERFLOW\"        \"\n#define _XOPEN_SOURCE_EXTENDED 1\n#include <errno.h>\n/* The following two lines are a workaround against an autoconf-2.52 bug.  */\n#include <stdio.h>\n#include <stdlib.h>\n\"; then :\n\nfi\n\n        fi\n      fi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_errno_h_EOVERFLOW\" >&5\n$as_echo \"$gl_cv_header_errno_h_EOVERFLOW\" >&6; }\n    case $gl_cv_header_errno_h_EOVERFLOW in\n      yes | no)\n        EOVERFLOW_HIDDEN=0; EOVERFLOW_VALUE=\n        ;;\n      *)\n        EOVERFLOW_HIDDEN=1; EOVERFLOW_VALUE=\"$gl_cv_header_errno_h_EOVERFLOW\"\n        ;;\n    esac\n\n\n  fi\n\n\nac_fn_c_check_decl \"$LINENO\" \"strerror_r\" \"ac_cv_have_decl_strerror_r\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_strerror_r\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_STRERROR_R $ac_have_decl\n_ACEOF\n\nfor ac_func in strerror_r\ndo :\n  ac_fn_c_check_func \"$LINENO\" \"strerror_r\" \"ac_cv_func_strerror_r\"\nif test \"x$ac_cv_func_strerror_r\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_STRERROR_R 1\n_ACEOF\n\nfi\ndone\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether strerror_r returns char *\" >&5\n$as_echo_n \"checking whether strerror_r returns char *... \" >&6; }\nif ${ac_cv_func_strerror_r_char_p+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n    ac_cv_func_strerror_r_char_p=no\n    if test $ac_cv_have_decl_strerror_r = yes; then\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$ac_includes_default\nint\nmain ()\n{\n\n\t  char buf[100];\n\t  char x = *strerror_r (0, buf, sizeof buf);\n\t  char *p = strerror_r (0, buf, sizeof buf);\n\t  return !p || x;\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_func_strerror_r_char_p=yes\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n    else\n      # strerror_r is not declared.  Choose between\n      # systems that have relatively inaccessible declarations for the\n      # function.  BeOS and DEC UNIX 4.0 fall in this category, but the\n      # former has a strerror_r that returns char*, while the latter\n      # has a strerror_r that returns `int'.\n      # This test should segfault on the DEC system.\n      if test \"$cross_compiling\" = yes; then :\n  :\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$ac_includes_default\n\textern char *strerror_r ();\nint\nmain ()\n{\nchar buf[100];\n\t  char x = *strerror_r (0, buf, sizeof buf);\n\t  return ! isalpha (x);\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  ac_cv_func_strerror_r_char_p=yes\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n    fi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_strerror_r_char_p\" >&5\n$as_echo \"$ac_cv_func_strerror_r_char_p\" >&6; }\nif test $ac_cv_func_strerror_r_char_p = yes; then\n\n$as_echo \"#define STRERROR_R_CHAR_P 1\" >>confdefs.h\n\nfi\n\n\n  XGETTEXT_EXTRA_OPTIONS=\n\n\n\n\n\n  GNULIB_FCNTL=0;\n  GNULIB_NONBLOCKING=0;\n  GNULIB_OPEN=0;\n  GNULIB_OPENAT=0;\n    HAVE_FCNTL=1;\n  HAVE_OPENAT=1;\n  REPLACE_FCNTL=0;\n  REPLACE_OPEN=0;\n  REPLACE_OPENAT=0;\n\nac_fn_c_check_type \"$LINENO\" \"pid_t\" \"ac_cv_type_pid_t\" \"$ac_includes_default\"\nif test \"x$ac_cv_type_pid_t\" = xyes; then :\n\nelse\n\ncat >>confdefs.h <<_ACEOF\n#define pid_t int\n_ACEOF\n\nfi\n\nac_fn_c_check_type \"$LINENO\" \"mode_t\" \"ac_cv_type_mode_t\" \"$ac_includes_default\"\nif test \"x$ac_cv_type_mode_t\" = xyes; then :\n\nelse\n\ncat >>confdefs.h <<_ACEOF\n#define mode_t int\n_ACEOF\n\nfi\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for C/C++ restrict keyword\" >&5\n$as_echo_n \"checking for C/C++ restrict keyword... \" >&6; }\nif ${ac_cv_c_restrict+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_cv_c_restrict=no\n   # The order here caters to the fact that C++ does not require restrict.\n   for ac_kw in __restrict __restrict__ _Restrict restrict; do\n     cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\ntypedef int *int_ptr;\n\t   int foo (int_ptr $ac_kw ip) { return ip[0]; }\n\t   int bar (int [$ac_kw]); /* Catch GCC bug 14050.  */\n\t   int bar (int ip[$ac_kw]) { return ip[0]; }\n\nint\nmain ()\n{\nint s[1];\n\t   int *$ac_kw t = s;\n\t   t[0] = 0;\n\t   return foo (t) + bar (t);\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_c_restrict=$ac_kw\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n     test \"$ac_cv_c_restrict\" != no && break\n   done\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_restrict\" >&5\n$as_echo \"$ac_cv_c_restrict\" >&6; }\n\n case $ac_cv_c_restrict in\n   restrict) ;;\n   no) $as_echo \"#define restrict /**/\" >>confdefs.h\n ;;\n   *)  cat >>confdefs.h <<_ACEOF\n#define restrict $ac_cv_c_restrict\n_ACEOF\n ;;\n esac\n\n\n  GNULIB_GETTIMEOFDAY=0;\n    HAVE_GETTIMEOFDAY=1;\n  HAVE_STRUCT_TIMEVAL=1;\n  HAVE_SYS_TIME_H=1;\n  HAVE_TIMEZONE_T=0;\n  REPLACE_GETTIMEOFDAY=0;\n  REPLACE_STRUCT_TIMEVAL=0;\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_sys_time_h='<'sys/time.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/time.h>\" >&5\n$as_echo_n \"checking absolute name of <sys/time.h>... \" >&6; }\nif ${gl_cv_next_sys_time_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n             if test $ac_cv_header_sys_time_h = yes; then\n\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/time.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'sys/time.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_sys_time_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_sys_time_h\n           gl_cv_next_sys_time_h='\"'$gl_header'\"'\n          else\n               gl_cv_next_sys_time_h='<'sys/time.h'>'\n             fi\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_sys_time_h\" >&5\n$as_echo \"$gl_cv_next_sys_time_h\" >&6; }\n     fi\n     NEXT_SYS_TIME_H=$gl_cv_next_sys_time_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'sys/time.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_sys_time_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H=$gl_next_as_first_directive\n\n\n\n\n\n  if test $ac_cv_header_sys_time_h != yes; then\n    HAVE_SYS_TIME_H=0\n  fi\n\n\n\n\n\n  if test $ac_cv_header_sys_socket_h != yes; then\n                    for ac_header in winsock2.h\ndo :\n  ac_fn_c_check_header_mongrel \"$LINENO\" \"winsock2.h\" \"ac_cv_header_winsock2_h\" \"$ac_includes_default\"\nif test \"x$ac_cv_header_winsock2_h\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_WINSOCK2_H 1\n_ACEOF\n\nfi\n\ndone\n\n  fi\n  if test \"$ac_cv_header_winsock2_h\" = yes; then\n    HAVE_WINSOCK2_H=1\n    UNISTD_H_HAVE_WINSOCK2_H=1\n    SYS_IOCTL_H_HAVE_WINSOCK2_H=1\n  else\n    HAVE_WINSOCK2_H=0\n  fi\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for struct timeval\" >&5\n$as_echo_n \"checking for struct timeval... \" >&6; }\nif ${gl_cv_sys_struct_timeval+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#if HAVE_SYS_TIME_H\n             #include <sys/time.h>\n            #endif\n            #include <time.h>\n            #if HAVE_WINSOCK2_H\n            # include <winsock2.h>\n            #endif\n\nint\nmain ()\n{\nstatic struct timeval x; x.tv_sec = x.tv_usec;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_sys_struct_timeval=yes\nelse\n  gl_cv_sys_struct_timeval=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_sys_struct_timeval\" >&5\n$as_echo \"$gl_cv_sys_struct_timeval\" >&6; }\n  if test $gl_cv_sys_struct_timeval != yes; then\n    HAVE_STRUCT_TIMEVAL=0\n  else\n                            { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for wide-enough struct timeval.tv_sec member\" >&5\n$as_echo_n \"checking for wide-enough struct timeval.tv_sec member... \" >&6; }\nif ${gl_cv_sys_struct_timeval_tv_sec+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#if HAVE_SYS_TIME_H\n               #include <sys/time.h>\n              #endif\n              #include <time.h>\n              #if HAVE_WINSOCK2_H\n              # include <winsock2.h>\n              #endif\n\nint\nmain ()\n{\nstatic struct timeval x;\n              typedef int verify_tv_sec_type[\n                sizeof (time_t) <= sizeof x.tv_sec ? 1 : -1\n              ];\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_sys_struct_timeval_tv_sec=yes\nelse\n  gl_cv_sys_struct_timeval_tv_sec=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_sys_struct_timeval_tv_sec\" >&5\n$as_echo \"$gl_cv_sys_struct_timeval_tv_sec\" >&6; }\n    if test $gl_cv_sys_struct_timeval_tv_sec != yes; then\n      REPLACE_STRUCT_TIMEVAL=1\n    fi\n  fi\n\n\n    for gl_func in gettimeofday; do\n    as_gl_Symbol=`$as_echo \"gl_cv_have_raw_decl_$gl_func\" | $as_tr_sh`\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro\" >&5\n$as_echo_n \"checking whether $gl_func is declared without a macro... \" >&6; }\nif eval \\${$as_gl_Symbol+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#if HAVE_SYS_TIME_H\n# include <sys/time.h>\n#endif\n#include <time.h>\n\nint\nmain ()\n{\n#undef $gl_func\n  (void) $gl_func;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$as_gl_Symbol=yes\"\nelse\n  eval \"$as_gl_Symbol=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$as_gl_Symbol\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    if eval test \\\"x\\$\"$as_gl_Symbol\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_RAW_DECL_$gl_func\" | $as_tr_cpp` 1\n_ACEOF\n\n                     eval ac_cv_have_decl_$gl_func=yes\nfi\n      done\n\n\n\n\n\n\n\n\n\n  case \"$host_os\" in\n    mingw*)\n                        { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for 64-bit off_t\" >&5\n$as_echo_n \"checking for 64-bit off_t... \" >&6; }\nif ${gl_cv_type_off_t_64+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/types.h>\n                int verify_off_t_size[sizeof (off_t) >= 8 ? 1 : -1];\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_type_off_t_64=yes\nelse\n  gl_cv_type_off_t_64=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_type_off_t_64\" >&5\n$as_echo \"$gl_cv_type_off_t_64\" >&6; }\n      if test $gl_cv_type_off_t_64 = no; then\n        WINDOWS_64_BIT_OFF_T=1\n      else\n        WINDOWS_64_BIT_OFF_T=0\n      fi\n                  WINDOWS_64_BIT_ST_SIZE=1\n      ;;\n    *)\n                                                      WINDOWS_64_BIT_OFF_T=0\n      WINDOWS_64_BIT_ST_SIZE=0\n      ;;\n  esac\n\n\n\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_limits_h='<'limits.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <limits.h>\" >&5\n$as_echo_n \"checking absolute name of <limits.h>... \" >&6; }\nif ${gl_cv_next_limits_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n             if test $ac_cv_header_limits_h = yes; then\n\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <limits.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'limits.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_limits_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_limits_h\n           gl_cv_next_limits_h='\"'$gl_header'\"'\n          else\n               gl_cv_next_limits_h='<'limits.h'>'\n             fi\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_limits_h\" >&5\n$as_echo \"$gl_cv_next_limits_h\" >&6; }\n     fi\n     NEXT_LIMITS_H=$gl_cv_next_limits_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'limits.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_limits_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_LIMITS_H=$gl_next_as_first_directive\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether limits.h has ULLONG_WIDTH etc.\" >&5\n$as_echo_n \"checking whether limits.h has ULLONG_WIDTH etc.... \" >&6; }\nif ${gl_cv_header_limits_width+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#ifndef __STDC_WANT_IEC_60559_BFP_EXT__\n                           #define __STDC_WANT_IEC_60559_BFP_EXT__ 1\n                          #endif\n                          #include <limits.h>\n                          int ullw = ULLONG_WIDTH;\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_header_limits_width=yes\nelse\n  gl_cv_header_limits_width=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_limits_width\" >&5\n$as_echo \"$gl_cv_header_limits_width\" >&6; }\n  if test \"$gl_cv_header_limits_width\" = yes; then\n    LIMITS_H=\n  else\n    LIMITS_H=limits.h\n  fi\n\n   if test -n \"$LIMITS_H\"; then\n  GL_GENERATE_LIMITS_H_TRUE=\n  GL_GENERATE_LIMITS_H_FALSE='#'\nelse\n  GL_GENERATE_LIMITS_H_TRUE='#'\n  GL_GENERATE_LIMITS_H_FALSE=\nfi\n\n\n\n     GNULIB_FCHMODAT=0;\n  GNULIB_FSTAT=0;\n  GNULIB_FSTATAT=0;\n  GNULIB_FUTIMENS=0;\n  GNULIB_LCHMOD=0;\n  GNULIB_LSTAT=0;\n  GNULIB_MKDIRAT=0;\n  GNULIB_MKFIFO=0;\n  GNULIB_MKFIFOAT=0;\n  GNULIB_MKNOD=0;\n  GNULIB_MKNODAT=0;\n  GNULIB_STAT=0;\n  GNULIB_UTIMENSAT=0;\n    HAVE_FCHMODAT=1;\n  HAVE_FSTATAT=1;\n  HAVE_FUTIMENS=1;\n  HAVE_LCHMOD=1;\n  HAVE_LSTAT=1;\n  HAVE_MKDIRAT=1;\n  HAVE_MKFIFO=1;\n  HAVE_MKFIFOAT=1;\n  HAVE_MKNOD=1;\n  HAVE_MKNODAT=1;\n  HAVE_UTIMENSAT=1;\n  REPLACE_FSTAT=0;\n  REPLACE_FSTATAT=0;\n  REPLACE_FUTIMENS=0;\n  REPLACE_LSTAT=0;\n  REPLACE_MKDIR=0;\n  REPLACE_MKFIFO=0;\n  REPLACE_MKNOD=0;\n  REPLACE_STAT=0;\n  REPLACE_UTIMENSAT=0;\n\n\n\n\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether lstat correctly handles trailing slash\" >&5\n$as_echo_n \"checking whether lstat correctly handles trailing slash... \" >&6; }\nif ${gl_cv_func_lstat_dereferences_slashed_symlink+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  rm -f conftest.sym conftest.file\n     echo >conftest.file\n     if test \"$cross_compiling\" = yes; then :\n  case \"$host_os\" in\n          *-gnu*)\n            # Guess yes on glibc systems.\n            gl_cv_func_lstat_dereferences_slashed_symlink=\"guessing yes\" ;;\n          *)\n            # If we don't know, assume the worst.\n            gl_cv_func_lstat_dereferences_slashed_symlink=\"guessing no\" ;;\n        esac\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$ac_includes_default\nint\nmain ()\n{\nstruct stat sbuf;\n            if (symlink (\"conftest.file\", \"conftest.sym\") != 0)\n              return 1;\n            /* Linux will dereference the symlink and fail, as required by\n               POSIX.  That is better in the sense that it means we will not\n               have to compile and use the lstat wrapper.  */\n            return lstat (\"conftest.sym/\", &sbuf) == 0;\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  gl_cv_func_lstat_dereferences_slashed_symlink=yes\nelse\n  gl_cv_func_lstat_dereferences_slashed_symlink=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n     rm -f conftest.sym conftest.file\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_lstat_dereferences_slashed_symlink\" >&5\n$as_echo \"$gl_cv_func_lstat_dereferences_slashed_symlink\" >&6; }\n  case \"$gl_cv_func_lstat_dereferences_slashed_symlink\" in\n    *yes)\n\ncat >>confdefs.h <<_ACEOF\n#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1\n_ACEOF\n\n      ;;\n  esac\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether malloc, realloc, calloc are POSIX compliant\" >&5\n$as_echo_n \"checking whether malloc, realloc, calloc are POSIX compliant... \" >&6; }\nif ${gl_cv_func_malloc_posix+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n                        cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n             choke me\n             #endif\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_func_malloc_posix=yes\nelse\n  gl_cv_func_malloc_posix=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_malloc_posix\" >&5\n$as_echo \"$gl_cv_func_malloc_posix\" >&6; }\n\n\n\n      for ac_header in stdlib.h\ndo :\n  ac_fn_c_check_header_mongrel \"$LINENO\" \"stdlib.h\" \"ac_cv_header_stdlib_h\" \"$ac_includes_default\"\nif test \"x$ac_cv_header_stdlib_h\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_STDLIB_H 1\n_ACEOF\n\nfi\n\ndone\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc\" >&5\n$as_echo_n \"checking for GNU libc compatible malloc... \" >&6; }\nif ${ac_cv_func_malloc_0_nonnull+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test \"$cross_compiling\" = yes; then :\n  case \"$host_os\" in\n          # Guess yes on platforms where we know the result.\n          *-gnu* | freebsd* | netbsd* | openbsd* \\\n          | hpux* | solaris* | cygwin* | mingw*)\n            ac_cv_func_malloc_0_nonnull=yes ;;\n          # If we don't know, assume the worst.\n          *) ac_cv_func_malloc_0_nonnull=no ;;\n        esac\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#if defined STDC_HEADERS || defined HAVE_STDLIB_H\n            # include <stdlib.h>\n            #else\n            char *malloc ();\n            #endif\n\nint\nmain ()\n{\nchar *p = malloc (0);\n            int result = !p;\n            free (p);\n            return result;\n  ;\n  return 0;\n}\n\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  ac_cv_func_malloc_0_nonnull=yes\nelse\n  ac_cv_func_malloc_0_nonnull=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull\" >&5\n$as_echo \"$ac_cv_func_malloc_0_nonnull\" >&6; }\n  if test $ac_cv_func_malloc_0_nonnull = yes; then :\n  gl_cv_func_malloc_0_nonnull=1\nelse\n  gl_cv_func_malloc_0_nonnull=0\nfi\n\n\ncat >>confdefs.h <<_ACEOF\n#define MALLOC_0_IS_NONNULL $gl_cv_func_malloc_0_nonnull\n_ACEOF\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for unsigned long long int\" >&5\n$as_echo_n \"checking for unsigned long long int... \" >&6; }\nif ${ac_cv_type_unsigned_long_long_int+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_cv_type_unsigned_long_long_int=yes\n     if test \"x${ac_cv_prog_cc_c99-no}\" = xno; then\n       cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n  /* For now, do not test the preprocessor; as of 2007 there are too many\n         implementations with broken preprocessors.  Perhaps this can\n         be revisited in 2012.  In the meantime, code should not expect\n         #if to work with literals wider than 32 bits.  */\n      /* Test literals.  */\n      long long int ll = 9223372036854775807ll;\n      long long int nll = -9223372036854775807LL;\n      unsigned long long int ull = 18446744073709551615ULL;\n      /* Test constant expressions.   */\n      typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll)\n                     ? 1 : -1)];\n      typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1\n                     ? 1 : -1)];\n      int i = 63;\nint\nmain ()\n{\n/* Test availability of runtime routines for shift and division.  */\n      long long int llmax = 9223372036854775807ll;\n      unsigned long long int ullmax = 18446744073709551615ull;\n      return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i)\n              | (llmax / ll) | (llmax % ll)\n              | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i)\n              | (ullmax / ull) | (ullmax % ull));\n  ;\n  return 0;\n}\n\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n\nelse\n  ac_cv_type_unsigned_long_long_int=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n     fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_unsigned_long_long_int\" >&5\n$as_echo \"$ac_cv_type_unsigned_long_long_int\" >&6; }\n  if test $ac_cv_type_unsigned_long_long_int = yes; then\n\n$as_echo \"#define HAVE_UNSIGNED_LONG_LONG_INT 1\" >>confdefs.h\n\n  fi\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for long long int\" >&5\n$as_echo_n \"checking for long long int... \" >&6; }\nif ${ac_cv_type_long_long_int+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_cv_type_long_long_int=yes\n      if test \"x${ac_cv_prog_cc_c99-no}\" = xno; then\n        ac_cv_type_long_long_int=$ac_cv_type_unsigned_long_long_int\n        if test $ac_cv_type_long_long_int = yes; then\n                                        if test \"$cross_compiling\" = yes; then :\n  :\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <limits.h>\n                 #ifndef LLONG_MAX\n                 # define HALF \\\n                          (1LL << (sizeof (long long int) * CHAR_BIT - 2))\n                 # define LLONG_MAX (HALF - 1 + HALF)\n                 #endif\nint\nmain ()\n{\nlong long int n = 1;\n                 int i;\n                 for (i = 0; ; i++)\n                   {\n                     long long int m = n << i;\n                     if (m >> i != n)\n                       return 1;\n                     if (LLONG_MAX / 2 < m)\n                       break;\n                   }\n                 return 0;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n\nelse\n  ac_cv_type_long_long_int=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n        fi\n      fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_long_long_int\" >&5\n$as_echo \"$ac_cv_type_long_long_int\" >&6; }\n  if test $ac_cv_type_long_long_int = yes; then\n\n$as_echo \"#define HAVE_LONG_LONG_INT 1\" >>confdefs.h\n\n  fi\n\n\n\n\n\n  if test $ac_cv_func__set_invalid_parameter_handler = yes; then\n    HAVE_MSVC_INVALID_PARAMETER_HANDLER=1\n\n$as_echo \"#define HAVE_MSVC_INVALID_PARAMETER_HANDLER 1\" >>confdefs.h\n\n  else\n    HAVE_MSVC_INVALID_PARAMETER_HANDLER=0\n  fi\n\n\n\n\n\n\n    gl_cv_c_multiarch=no\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#ifndef __APPLE_CC__\n         not a universal capable compiler\n        #endif\n        typedef int dummy;\n\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n\n               arch=\n     prev=\n     for word in ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}; do\n       if test -n \"$prev\"; then\n         case $word in\n           i?86 | x86_64 | ppc | ppc64)\n             if test -z \"$arch\" || test \"$arch\" = \"$word\"; then\n               arch=\"$word\"\n             else\n               gl_cv_c_multiarch=yes\n             fi\n             ;;\n         esac\n         prev=\n       else\n         if test \"x$word\" = \"x-arch\"; then\n           prev=arch\n         fi\n       fi\n     done\n\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n  if test $gl_cv_c_multiarch = yes; then\n    APPLE_UNIVERSAL_BUILD=1\n  else\n    APPLE_UNIVERSAL_BUILD=0\n  fi\n\n\n\n  GNULIB_PTHREAD_SIGMASK=0;\n  GNULIB_RAISE=0;\n  GNULIB_SIGNAL_H_SIGPIPE=0;\n  GNULIB_SIGPROCMASK=0;\n  GNULIB_SIGACTION=0;\n    HAVE_POSIX_SIGNALBLOCKING=1;\n  HAVE_PTHREAD_SIGMASK=1;\n  HAVE_RAISE=1;\n  HAVE_SIGSET_T=1;\n  HAVE_SIGINFO_T=1;\n  HAVE_SIGACTION=1;\n  HAVE_STRUCT_SIGACTION_SA_SIGACTION=1;\n\n  HAVE_TYPE_VOLATILE_SIG_ATOMIC_T=1;\n\n  HAVE_SIGHANDLER_T=1;\n  REPLACE_PTHREAD_SIGMASK=0;\n  REPLACE_RAISE=0;\n\n\n  ac_fn_c_check_type \"$LINENO\" \"sigset_t\" \"ac_cv_type_sigset_t\" \"\n      #include <signal.h>\n      /* Mingw defines sigset_t not in <signal.h>, but in <sys/types.h>.  */\n      #include <sys/types.h>\n\n\"\nif test \"x$ac_cv_type_sigset_t\" = xyes; then :\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_SIGSET_T 1\n_ACEOF\n\ngl_cv_type_sigset_t=yes\nelse\n  gl_cv_type_sigset_t=no\nfi\n\n  if test $gl_cv_type_sigset_t != yes; then\n    HAVE_SIGSET_T=0\n  fi\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for SIGPIPE\" >&5\n$as_echo_n \"checking for SIGPIPE... \" >&6; }\nif ${gl_cv_header_signal_h_SIGPIPE+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <signal.h>\n#if !defined SIGPIPE\nbooboo\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"booboo\" >/dev/null 2>&1; then :\n  gl_cv_header_signal_h_SIGPIPE=no\nelse\n  gl_cv_header_signal_h_SIGPIPE=yes\nfi\nrm -f conftest*\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_signal_h_SIGPIPE\" >&5\n$as_echo \"$gl_cv_header_signal_h_SIGPIPE\" >&6; }\n\nac_fn_c_check_decl \"$LINENO\" \"setenv\" \"ac_cv_have_decl_setenv\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_setenv\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_SETENV $ac_have_decl\n_ACEOF\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ssize_t\" >&5\n$as_echo_n \"checking for ssize_t... \" >&6; }\nif ${gt_cv_ssize_t+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/types.h>\nint\nmain ()\n{\nint x = sizeof (ssize_t *) + sizeof (ssize_t);\n            return !x;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gt_cv_ssize_t=yes\nelse\n  gt_cv_ssize_t=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gt_cv_ssize_t\" >&5\n$as_echo \"$gt_cv_ssize_t\" >&6; }\n  if test $gt_cv_ssize_t = no; then\n\n$as_echo \"#define ssize_t int\" >>confdefs.h\n\n  fi\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h\" >&5\n$as_echo_n \"checking for uid_t in sys/types.h... \" >&6; }\nif ${ac_cv_type_uid_t+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/types.h>\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"uid_t\" >/dev/null 2>&1; then :\n  ac_cv_type_uid_t=yes\nelse\n  ac_cv_type_uid_t=no\nfi\nrm -f conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_uid_t\" >&5\n$as_echo \"$ac_cv_type_uid_t\" >&6; }\nif test $ac_cv_type_uid_t = no; then\n\n$as_echo \"#define uid_t int\" >>confdefs.h\n\n\n$as_echo \"#define gid_t int\" >>confdefs.h\n\nfi\n\n\n  GNULIB_DPRINTF=0;\n  GNULIB_FCLOSE=0;\n  GNULIB_FDOPEN=0;\n  GNULIB_FFLUSH=0;\n  GNULIB_FGETC=0;\n  GNULIB_FGETS=0;\n  GNULIB_FOPEN=0;\n  GNULIB_FPRINTF=0;\n  GNULIB_FPRINTF_POSIX=0;\n  GNULIB_FPURGE=0;\n  GNULIB_FPUTC=0;\n  GNULIB_FPUTS=0;\n  GNULIB_FREAD=0;\n  GNULIB_FREOPEN=0;\n  GNULIB_FSCANF=0;\n  GNULIB_FSEEK=0;\n  GNULIB_FSEEKO=0;\n  GNULIB_FTELL=0;\n  GNULIB_FTELLO=0;\n  GNULIB_FWRITE=0;\n  GNULIB_GETC=0;\n  GNULIB_GETCHAR=0;\n  GNULIB_GETDELIM=0;\n  GNULIB_GETLINE=0;\n  GNULIB_OBSTACK_PRINTF=0;\n  GNULIB_OBSTACK_PRINTF_POSIX=0;\n  GNULIB_PCLOSE=0;\n  GNULIB_PERROR=0;\n  GNULIB_POPEN=0;\n  GNULIB_PRINTF=0;\n  GNULIB_PRINTF_POSIX=0;\n  GNULIB_PUTC=0;\n  GNULIB_PUTCHAR=0;\n  GNULIB_PUTS=0;\n  GNULIB_REMOVE=0;\n  GNULIB_RENAME=0;\n  GNULIB_RENAMEAT=0;\n  GNULIB_SCANF=0;\n  GNULIB_SNPRINTF=0;\n  GNULIB_SPRINTF_POSIX=0;\n  GNULIB_STDIO_H_NONBLOCKING=0;\n  GNULIB_STDIO_H_SIGPIPE=0;\n  GNULIB_TMPFILE=0;\n  GNULIB_VASPRINTF=0;\n  GNULIB_VFSCANF=0;\n  GNULIB_VSCANF=0;\n  GNULIB_VDPRINTF=0;\n  GNULIB_VFPRINTF=0;\n  GNULIB_VFPRINTF_POSIX=0;\n  GNULIB_VPRINTF=0;\n  GNULIB_VPRINTF_POSIX=0;\n  GNULIB_VSNPRINTF=0;\n  GNULIB_VSPRINTF_POSIX=0;\n    HAVE_DECL_FPURGE=1;\n  HAVE_DECL_FSEEKO=1;\n  HAVE_DECL_FTELLO=1;\n  HAVE_DECL_GETDELIM=1;\n  HAVE_DECL_GETLINE=1;\n  HAVE_DECL_OBSTACK_PRINTF=1;\n  HAVE_DECL_SNPRINTF=1;\n  HAVE_DECL_VSNPRINTF=1;\n  HAVE_DPRINTF=1;\n  HAVE_FSEEKO=1;\n  HAVE_FTELLO=1;\n  HAVE_PCLOSE=1;\n  HAVE_POPEN=1;\n  HAVE_RENAMEAT=1;\n  HAVE_VASPRINTF=1;\n  HAVE_VDPRINTF=1;\n  REPLACE_DPRINTF=0;\n  REPLACE_FCLOSE=0;\n  REPLACE_FDOPEN=0;\n  REPLACE_FFLUSH=0;\n  REPLACE_FOPEN=0;\n  REPLACE_FPRINTF=0;\n  REPLACE_FPURGE=0;\n  REPLACE_FREOPEN=0;\n  REPLACE_FSEEK=0;\n  REPLACE_FSEEKO=0;\n  REPLACE_FTELL=0;\n  REPLACE_FTELLO=0;\n  REPLACE_GETDELIM=0;\n  REPLACE_GETLINE=0;\n  REPLACE_OBSTACK_PRINTF=0;\n  REPLACE_PERROR=0;\n  REPLACE_POPEN=0;\n  REPLACE_PRINTF=0;\n  REPLACE_REMOVE=0;\n  REPLACE_RENAME=0;\n  REPLACE_RENAMEAT=0;\n  REPLACE_SNPRINTF=0;\n  REPLACE_SPRINTF=0;\n  REPLACE_STDIO_READ_FUNCS=0;\n  REPLACE_STDIO_WRITE_FUNCS=0;\n  REPLACE_TMPFILE=0;\n  REPLACE_VASPRINTF=0;\n  REPLACE_VDPRINTF=0;\n  REPLACE_VFPRINTF=0;\n  REPLACE_VPRINTF=0;\n  REPLACE_VSNPRINTF=0;\n  REPLACE_VSPRINTF=0;\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#ifdef _MSC_VER\nMicrosoftCompiler\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"MicrosoftCompiler\" >/dev/null 2>&1; then :\n  gl_asmext='asm'\n     gl_c_asm_opt='-c -Fa'\n\nelse\n  gl_asmext='s'\n     gl_c_asm_opt='-S'\n\nfi\nrm -f conftest*\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether C symbols are prefixed with underscore at the linker level\" >&5\n$as_echo_n \"checking whether C symbols are prefixed with underscore at the linker level... \" >&6; }\nif ${gl_cv_prog_as_underscore+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat > conftest.c <<EOF\n#ifdef __cplusplus\nextern \"C\" int foo (void);\n#endif\nint foo(void) { return 0; }\nEOF\n     # Look for the assembly language name in the .s file.\n     { ac_try='${CC-cc} $CFLAGS $CPPFLAGS $gl_c_asm_opt conftest.c'\n  { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_try\\\"\"; } >&5\n  (eval $ac_try) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; } >/dev/null 2>&1\n     if LC_ALL=C grep -E '(^|[^a-zA-Z0-9_])_foo([^a-zA-Z0-9_]|$)' conftest.$gl_asmext >/dev/null; then\n       gl_cv_prog_as_underscore=yes\n     else\n       gl_cv_prog_as_underscore=no\n     fi\n     rm -f conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_prog_as_underscore\" >&5\n$as_echo \"$gl_cv_prog_as_underscore\" >&6; }\n  if test $gl_cv_prog_as_underscore = yes; then\n    USER_LABEL_PREFIX=_\n  else\n    USER_LABEL_PREFIX=\n  fi\n\ncat >>confdefs.h <<_ACEOF\n#define USER_LABEL_PREFIX $USER_LABEL_PREFIX\n_ACEOF\n\n  ASM_SYMBOL_PREFIX='\"'${USER_LABEL_PREFIX}'\"'\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for stdbool.h that conforms to C99\" >&5\n$as_echo_n \"checking for stdbool.h that conforms to C99... \" >&6; }\nif ${ac_cv_header_stdbool_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n             #include <stdbool.h>\n\n             #ifdef __cplusplus\n              typedef bool Bool;\n             #else\n              typedef _Bool Bool;\n              #ifndef bool\n               \"error: bool is not defined\"\n              #endif\n              #ifndef false\n               \"error: false is not defined\"\n              #endif\n              #if false\n               \"error: false is not 0\"\n              #endif\n              #ifndef true\n               \"error: true is not defined\"\n              #endif\n              #if true != 1\n               \"error: true is not 1\"\n              #endif\n             #endif\n\n             #ifndef __bool_true_false_are_defined\n              \"error: __bool_true_false_are_defined is not defined\"\n             #endif\n\n             struct s { Bool s: 1; Bool t; bool u: 1; bool v; } s;\n\n             char a[true == 1 ? 1 : -1];\n             char b[false == 0 ? 1 : -1];\n             char c[__bool_true_false_are_defined == 1 ? 1 : -1];\n             char d[(bool) 0.5 == true ? 1 : -1];\n             /* See body of main program for 'e'.  */\n             char f[(Bool) 0.0 == false ? 1 : -1];\n             char g[true];\n             char h[sizeof (Bool)];\n             char i[sizeof s.t];\n             enum { j = false, k = true, l = false * true, m = true * 256 };\n             /* The following fails for\n                HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003]. */\n             Bool n[m];\n             char o[sizeof n == m * sizeof n[0] ? 1 : -1];\n             char p[-1 - (Bool) 0 < 0 && -1 - (bool) 0 < 0 ? 1 : -1];\n             /* Catch a bug in an HP-UX C compiler.  See\n                http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02303.html\n                http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00161.html\n              */\n             Bool q = true;\n             Bool *pq = &q;\n             bool *qq = &q;\n\nint\nmain ()\n{\n\n             bool e = &s;\n             *pq |= q; *pq |= ! q;\n             *qq |= q; *qq |= ! q;\n             /* Refer to every declared value, to avoid compiler optimizations.  */\n             return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l\n                     + !m + !n + !o + !p + !q + !pq + !qq);\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_header_stdbool_h=yes\nelse\n  ac_cv_header_stdbool_h=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdbool_h\" >&5\n$as_echo \"$ac_cv_header_stdbool_h\" >&6; }\n   ac_fn_c_check_type \"$LINENO\" \"_Bool\" \"ac_cv_type__Bool\" \"$ac_includes_default\"\nif test \"x$ac_cv_type__Bool\" = xyes; then :\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE__BOOL 1\n_ACEOF\n\n\nfi\n\n\n\n    REPLACE_NULL=0;\n  HAVE_MAX_ALIGN_T=1;\n  HAVE_WCHAR_T=1;\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for wint_t\" >&5\n$as_echo_n \"checking for wint_t... \" >&6; }\nif ${gt_cv_c_wint_t+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included\n   before <wchar.h>.  */\n#include <stddef.h>\n#include <stdio.h>\n#include <time.h>\n#include <wchar.h>\n            wint_t foo = (wchar_t)'\\0';\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gt_cv_c_wint_t=yes\nelse\n  gt_cv_c_wint_t=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_wint_t\" >&5\n$as_echo \"$gt_cv_c_wint_t\" >&6; }\n  if test $gt_cv_c_wint_t = yes; then\n\n$as_echo \"#define HAVE_WINT_T 1\" >>confdefs.h\n\n\n            { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether wint_t is too small\" >&5\n$as_echo_n \"checking whether wint_t is too small... \" >&6; }\nif ${gl_cv_type_wint_t_too_small+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n   included before <wchar.h>.  */\n#if !(defined __GLIBC__ && !defined __UCLIBC__)\n# include <stddef.h>\n# include <stdio.h>\n# include <time.h>\n#endif\n#include <wchar.h>\n              int verify[sizeof (wint_t) < sizeof (int) ? -1 : 1];\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_type_wint_t_too_small=no\nelse\n  gl_cv_type_wint_t_too_small=yes\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_type_wint_t_too_small\" >&5\n$as_echo \"$gl_cv_type_wint_t_too_small\" >&6; }\n    if test $gl_cv_type_wint_t_too_small = yes; then\n      GNULIB_OVERRIDES_WINT_T=1\n    else\n      GNULIB_OVERRIDES_WINT_T=0\n    fi\n  else\n    GNULIB_OVERRIDES_WINT_T=0\n  fi\n\n\n\n\n\n\n\n\n\n\n\n\n  if test $ac_cv_type_long_long_int = yes; then\n    HAVE_LONG_LONG_INT=1\n  else\n    HAVE_LONG_LONG_INT=0\n  fi\n\n\n  if test $ac_cv_type_unsigned_long_long_int = yes; then\n    HAVE_UNSIGNED_LONG_LONG_INT=1\n  else\n    HAVE_UNSIGNED_LONG_LONG_INT=0\n  fi\n\n\n\n  if test $ac_cv_header_wchar_h = yes; then\n    HAVE_WCHAR_H=1\n  else\n    HAVE_WCHAR_H=0\n  fi\n\n\n      if test $ac_cv_header_inttypes_h = yes; then\n    HAVE_INTTYPES_H=1\n  else\n    HAVE_INTTYPES_H=0\n  fi\n\n\n      if test $ac_cv_header_sys_types_h = yes; then\n    HAVE_SYS_TYPES_H=1\n  else\n    HAVE_SYS_TYPES_H=0\n  fi\n\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_stdint_h='<'stdint.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <stdint.h>\" >&5\n$as_echo_n \"checking absolute name of <stdint.h>... \" >&6; }\nif ${gl_cv_next_stdint_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n             if test $ac_cv_header_stdint_h = yes; then\n\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdint.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'stdint.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_stdint_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_stdint_h\n           gl_cv_next_stdint_h='\"'$gl_header'\"'\n          else\n               gl_cv_next_stdint_h='<'stdint.h'>'\n             fi\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_stdint_h\" >&5\n$as_echo \"$gl_cv_next_stdint_h\" >&6; }\n     fi\n     NEXT_STDINT_H=$gl_cv_next_stdint_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'stdint.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_stdint_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_STDINT_H=$gl_next_as_first_directive\n\n\n\n\n  if test $ac_cv_header_stdint_h = yes; then\n    HAVE_STDINT_H=1\n  else\n    HAVE_STDINT_H=0\n  fi\n\n\n    if test $ac_cv_header_stdint_h = yes; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether stdint.h conforms to C99\" >&5\n$as_echo_n \"checking whether stdint.h conforms to C99... \" >&6; }\nif ${gl_cv_header_working_stdint_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  gl_cv_header_working_stdint_h=no\n       cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n\n#define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */\n#define __STDC_CONSTANT_MACROS 1\n#define __STDC_LIMIT_MACROS 1\n#include <stdint.h>\n/* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in <wchar.h>.  */\n#if !(defined WCHAR_MIN && defined WCHAR_MAX)\n#error \"WCHAR_MIN, WCHAR_MAX not defined in <stdint.h>\"\n#endif\n\n\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n  #include <stddef.h>\n  #include <signal.h>\n  #if HAVE_WCHAR_H\n  # include <stdio.h>\n  # include <time.h>\n  # include <wchar.h>\n  #endif\n\n\n#ifdef INT8_MAX\nint8_t a1 = INT8_MAX;\nint8_t a1min = INT8_MIN;\n#endif\n#ifdef INT16_MAX\nint16_t a2 = INT16_MAX;\nint16_t a2min = INT16_MIN;\n#endif\n#ifdef INT32_MAX\nint32_t a3 = INT32_MAX;\nint32_t a3min = INT32_MIN;\n#endif\n#ifdef INT64_MAX\nint64_t a4 = INT64_MAX;\nint64_t a4min = INT64_MIN;\n#endif\n#ifdef UINT8_MAX\nuint8_t b1 = UINT8_MAX;\n#else\ntypedef int b1[(unsigned char) -1 != 255 ? 1 : -1];\n#endif\n#ifdef UINT16_MAX\nuint16_t b2 = UINT16_MAX;\n#endif\n#ifdef UINT32_MAX\nuint32_t b3 = UINT32_MAX;\n#endif\n#ifdef UINT64_MAX\nuint64_t b4 = UINT64_MAX;\n#endif\nint_least8_t c1 = INT8_C (0x7f);\nint_least8_t c1max = INT_LEAST8_MAX;\nint_least8_t c1min = INT_LEAST8_MIN;\nint_least16_t c2 = INT16_C (0x7fff);\nint_least16_t c2max = INT_LEAST16_MAX;\nint_least16_t c2min = INT_LEAST16_MIN;\nint_least32_t c3 = INT32_C (0x7fffffff);\nint_least32_t c3max = INT_LEAST32_MAX;\nint_least32_t c3min = INT_LEAST32_MIN;\nint_least64_t c4 = INT64_C (0x7fffffffffffffff);\nint_least64_t c4max = INT_LEAST64_MAX;\nint_least64_t c4min = INT_LEAST64_MIN;\nuint_least8_t d1 = UINT8_C (0xff);\nuint_least8_t d1max = UINT_LEAST8_MAX;\nuint_least16_t d2 = UINT16_C (0xffff);\nuint_least16_t d2max = UINT_LEAST16_MAX;\nuint_least32_t d3 = UINT32_C (0xffffffff);\nuint_least32_t d3max = UINT_LEAST32_MAX;\nuint_least64_t d4 = UINT64_C (0xffffffffffffffff);\nuint_least64_t d4max = UINT_LEAST64_MAX;\nint_fast8_t e1 = INT_FAST8_MAX;\nint_fast8_t e1min = INT_FAST8_MIN;\nint_fast16_t e2 = INT_FAST16_MAX;\nint_fast16_t e2min = INT_FAST16_MIN;\nint_fast32_t e3 = INT_FAST32_MAX;\nint_fast32_t e3min = INT_FAST32_MIN;\nint_fast64_t e4 = INT_FAST64_MAX;\nint_fast64_t e4min = INT_FAST64_MIN;\nuint_fast8_t f1 = UINT_FAST8_MAX;\nuint_fast16_t f2 = UINT_FAST16_MAX;\nuint_fast32_t f3 = UINT_FAST32_MAX;\nuint_fast64_t f4 = UINT_FAST64_MAX;\n#ifdef INTPTR_MAX\nintptr_t g = INTPTR_MAX;\nintptr_t gmin = INTPTR_MIN;\n#endif\n#ifdef UINTPTR_MAX\nuintptr_t h = UINTPTR_MAX;\n#endif\nintmax_t i = INTMAX_MAX;\nuintmax_t j = UINTMAX_MAX;\n\n/* Check that SIZE_MAX has the correct type, if possible.  */\n#if 201112 <= __STDC_VERSION__\nint k = _Generic (SIZE_MAX, size_t: 0);\n#elif (2 <= __GNUC__ || defined __IBM__TYPEOF__ \\\n       || (0x5110 <= __SUNPRO_C && !__STDC__))\nextern size_t k;\nextern __typeof__ (SIZE_MAX) k;\n#endif\n\n#include <limits.h> /* for CHAR_BIT */\n#define TYPE_MINIMUM(t) \\\n  ((t) ((t) 0 < (t) -1 ? (t) 0 : ~ TYPE_MAXIMUM (t)))\n#define TYPE_MAXIMUM(t) \\\n  ((t) ((t) 0 < (t) -1 \\\n        ? (t) -1 \\\n        : ((((t) 1 << (sizeof (t) * CHAR_BIT - 2)) - 1) * 2 + 1)))\nstruct s {\n  int check_PTRDIFF:\n      PTRDIFF_MIN == TYPE_MINIMUM (ptrdiff_t)\n      && PTRDIFF_MAX == TYPE_MAXIMUM (ptrdiff_t)\n      ? 1 : -1;\n  /* Detect bug in FreeBSD 6.0 / ia64.  */\n  int check_SIG_ATOMIC:\n      SIG_ATOMIC_MIN == TYPE_MINIMUM (sig_atomic_t)\n      && SIG_ATOMIC_MAX == TYPE_MAXIMUM (sig_atomic_t)\n      ? 1 : -1;\n  int check_SIZE: SIZE_MAX == TYPE_MAXIMUM (size_t) ? 1 : -1;\n  int check_WCHAR:\n      WCHAR_MIN == TYPE_MINIMUM (wchar_t)\n      && WCHAR_MAX == TYPE_MAXIMUM (wchar_t)\n      ? 1 : -1;\n  /* Detect bug in mingw.  */\n  int check_WINT:\n      WINT_MIN == TYPE_MINIMUM (wint_t)\n      && WINT_MAX == TYPE_MAXIMUM (wint_t)\n      ? 1 : -1;\n\n  /* Detect bugs in glibc 2.4 and Solaris 10 stdint.h, among others.  */\n  int check_UINT8_C:\n        (-1 < UINT8_C (0)) == (-1 < (uint_least8_t) 0) ? 1 : -1;\n  int check_UINT16_C:\n        (-1 < UINT16_C (0)) == (-1 < (uint_least16_t) 0) ? 1 : -1;\n\n  /* Detect bugs in OpenBSD 3.9 stdint.h.  */\n#ifdef UINT8_MAX\n  int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1;\n#endif\n#ifdef UINT16_MAX\n  int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1;\n#endif\n#ifdef UINT32_MAX\n  int check_uint32: (uint32_t) -1 == UINT32_MAX ? 1 : -1;\n#endif\n#ifdef UINT64_MAX\n  int check_uint64: (uint64_t) -1 == UINT64_MAX ? 1 : -1;\n#endif\n  int check_uint_least8: (uint_least8_t) -1 == UINT_LEAST8_MAX ? 1 : -1;\n  int check_uint_least16: (uint_least16_t) -1 == UINT_LEAST16_MAX ? 1 : -1;\n  int check_uint_least32: (uint_least32_t) -1 == UINT_LEAST32_MAX ? 1 : -1;\n  int check_uint_least64: (uint_least64_t) -1 == UINT_LEAST64_MAX ? 1 : -1;\n  int check_uint_fast8: (uint_fast8_t) -1 == UINT_FAST8_MAX ? 1 : -1;\n  int check_uint_fast16: (uint_fast16_t) -1 == UINT_FAST16_MAX ? 1 : -1;\n  int check_uint_fast32: (uint_fast32_t) -1 == UINT_FAST32_MAX ? 1 : -1;\n  int check_uint_fast64: (uint_fast64_t) -1 == UINT_FAST64_MAX ? 1 : -1;\n  int check_uintptr: (uintptr_t) -1 == UINTPTR_MAX ? 1 : -1;\n  int check_uintmax: (uintmax_t) -1 == UINTMAX_MAX ? 1 : -1;\n  int check_size: (size_t) -1 == SIZE_MAX ? 1 : -1;\n};\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n                                                    if test \"$cross_compiling\" = yes; then :\n                 gl_cv_header_working_stdint_h=yes\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n\n#define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */\n#define __STDC_CONSTANT_MACROS 1\n#define __STDC_LIMIT_MACROS 1\n#include <stdint.h>\n\n\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n  #include <stddef.h>\n  #include <signal.h>\n  #if HAVE_WCHAR_H\n  # include <stdio.h>\n  # include <time.h>\n  # include <wchar.h>\n  #endif\n\n\n#include <stdio.h>\n#include <string.h>\n#define MVAL(macro) MVAL1(macro)\n#define MVAL1(expression) #expression\nstatic const char *macro_values[] =\n  {\n#ifdef INT8_MAX\n    MVAL (INT8_MAX),\n#endif\n#ifdef INT16_MAX\n    MVAL (INT16_MAX),\n#endif\n#ifdef INT32_MAX\n    MVAL (INT32_MAX),\n#endif\n#ifdef INT64_MAX\n    MVAL (INT64_MAX),\n#endif\n#ifdef UINT8_MAX\n    MVAL (UINT8_MAX),\n#endif\n#ifdef UINT16_MAX\n    MVAL (UINT16_MAX),\n#endif\n#ifdef UINT32_MAX\n    MVAL (UINT32_MAX),\n#endif\n#ifdef UINT64_MAX\n    MVAL (UINT64_MAX),\n#endif\n    NULL\n  };\n\nint\nmain ()\n{\n\n  const char **mv;\n  for (mv = macro_values; *mv != NULL; mv++)\n    {\n      const char *value = *mv;\n      /* Test whether it looks like a cast expression.  */\n      if (strncmp (value, \"((unsigned int)\"/*)*/, 15) == 0\n          || strncmp (value, \"((unsigned short)\"/*)*/, 17) == 0\n          || strncmp (value, \"((unsigned char)\"/*)*/, 16) == 0\n          || strncmp (value, \"((int)\"/*)*/, 6) == 0\n          || strncmp (value, \"((signed short)\"/*)*/, 15) == 0\n          || strncmp (value, \"((signed char)\"/*)*/, 14) == 0)\n        return mv - macro_values + 1;\n    }\n  return 0;\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  gl_cv_header_working_stdint_h=yes\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_working_stdint_h\" >&5\n$as_echo \"$gl_cv_header_working_stdint_h\" >&6; }\n  fi\n\n  HAVE_C99_STDINT_H=0\n  HAVE_SYS_BITYPES_H=0\n  HAVE_SYS_INTTYPES_H=0\n  STDINT_H=stdint.h\n  if test \"$gl_cv_header_working_stdint_h\" = yes; then\n    HAVE_C99_STDINT_H=1\n            { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether stdint.h predates C++11\" >&5\n$as_echo_n \"checking whether stdint.h predates C++11... \" >&6; }\nif ${gl_cv_header_stdint_predates_cxx11_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  gl_cv_header_stdint_predates_cxx11_h=yes\n       cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n\n#define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */\n#include <stdint.h>\n\n\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n  #include <stddef.h>\n  #include <signal.h>\n  #if HAVE_WCHAR_H\n  # include <stdio.h>\n  # include <time.h>\n  # include <wchar.h>\n  #endif\n\n\nintmax_t im = INTMAX_MAX;\nint32_t i32 = INT32_C (0x7fffffff);\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_header_stdint_predates_cxx11_h=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_stdint_predates_cxx11_h\" >&5\n$as_echo \"$gl_cv_header_stdint_predates_cxx11_h\" >&6; }\n\n    if test \"$gl_cv_header_stdint_predates_cxx11_h\" = yes; then\n\n$as_echo \"#define __STDC_CONSTANT_MACROS 1\" >>confdefs.h\n\n\n$as_echo \"#define __STDC_LIMIT_MACROS 1\" >>confdefs.h\n\n    fi\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether stdint.h has UINTMAX_WIDTH etc.\" >&5\n$as_echo_n \"checking whether stdint.h has UINTMAX_WIDTH etc.... \" >&6; }\nif ${gl_cv_header_stdint_width+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  gl_cv_header_stdint_width=no\n       cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n            /* Work if build is not clean.  */\n            #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1\n            #ifndef __STDC_WANT_IEC_60559_BFP_EXT__\n             #define __STDC_WANT_IEC_60559_BFP_EXT__ 1\n            #endif\n            #include <stdint.h>\n\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n  #include <stddef.h>\n  #include <signal.h>\n  #if HAVE_WCHAR_H\n  # include <stdio.h>\n  # include <time.h>\n  # include <wchar.h>\n  #endif\n\n            int iw = UINTMAX_WIDTH;\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_header_stdint_width=yes\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_stdint_width\" >&5\n$as_echo \"$gl_cv_header_stdint_width\" >&6; }\n    if test \"$gl_cv_header_stdint_width\" = yes; then\n      STDINT_H=\n    fi\n  else\n            for ac_header in sys/inttypes.h sys/bitypes.h\ndo :\n  as_ac_Header=`$as_echo \"ac_cv_header_$ac_header\" | $as_tr_sh`\nac_fn_c_check_header_mongrel \"$LINENO\" \"$ac_header\" \"$as_ac_Header\" \"$ac_includes_default\"\nif eval test \\\"x\\$\"$as_ac_Header\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_$ac_header\" | $as_tr_cpp` 1\n_ACEOF\n\nfi\n\ndone\n\n    if test $ac_cv_header_sys_inttypes_h = yes; then\n      HAVE_SYS_INTTYPES_H=1\n    fi\n    if test $ac_cv_header_sys_bitypes_h = yes; then\n      HAVE_SYS_BITYPES_H=1\n    fi\n\n\n  if test $APPLE_UNIVERSAL_BUILD = 0; then\n\n\n  for gltype in ptrdiff_t size_t ; do\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for bit size of $gltype\" >&5\n$as_echo_n \"checking for bit size of $gltype... \" >&6; }\nif eval \\${gl_cv_bitsizeof_${gltype}+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if ac_fn_c_compute_int \"$LINENO\" \"sizeof ($gltype) * CHAR_BIT\" \"result\"        \"\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n  #include <stddef.h>\n  #include <signal.h>\n  #if HAVE_WCHAR_H\n  # include <stdio.h>\n  # include <time.h>\n  # include <wchar.h>\n  #endif\n\n#include <limits.h>\"; then :\n\nelse\n  result=unknown\nfi\n\n       eval gl_cv_bitsizeof_${gltype}=\\$result\n\nfi\neval ac_res=\\$gl_cv_bitsizeof_${gltype}\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    eval result=\\$gl_cv_bitsizeof_${gltype}\n    if test $result = unknown; then\n                                                result=0\n    fi\n    GLTYPE=`echo \"$gltype\" | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`\n    cat >>confdefs.h <<_ACEOF\n#define BITSIZEOF_${GLTYPE} $result\n_ACEOF\n\n    eval BITSIZEOF_${GLTYPE}=\\$result\n  done\n\n\n  fi\n\n\n  for gltype in sig_atomic_t wchar_t wint_t ; do\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for bit size of $gltype\" >&5\n$as_echo_n \"checking for bit size of $gltype... \" >&6; }\nif eval \\${gl_cv_bitsizeof_${gltype}+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if ac_fn_c_compute_int \"$LINENO\" \"sizeof ($gltype) * CHAR_BIT\" \"result\"        \"\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n  #include <stddef.h>\n  #include <signal.h>\n  #if HAVE_WCHAR_H\n  # include <stdio.h>\n  # include <time.h>\n  # include <wchar.h>\n  #endif\n\n#include <limits.h>\"; then :\n\nelse\n  result=unknown\nfi\n\n       eval gl_cv_bitsizeof_${gltype}=\\$result\n\nfi\neval ac_res=\\$gl_cv_bitsizeof_${gltype}\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    eval result=\\$gl_cv_bitsizeof_${gltype}\n    if test $result = unknown; then\n                                                result=0\n    fi\n    GLTYPE=`echo \"$gltype\" | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`\n    cat >>confdefs.h <<_ACEOF\n#define BITSIZEOF_${GLTYPE} $result\n_ACEOF\n\n    eval BITSIZEOF_${GLTYPE}=\\$result\n  done\n\n\n\n\n  for gltype in sig_atomic_t wchar_t wint_t ; do\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $gltype is signed\" >&5\n$as_echo_n \"checking whether $gltype is signed... \" >&6; }\nif eval \\${gl_cv_type_${gltype}_signed+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n  #include <stddef.h>\n  #include <signal.h>\n  #if HAVE_WCHAR_H\n  # include <stdio.h>\n  # include <time.h>\n  # include <wchar.h>\n  #endif\n\n            int verify[2 * (($gltype) -1 < ($gltype) 0) - 1];\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  result=yes\nelse\n  result=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n       eval gl_cv_type_${gltype}_signed=\\$result\n\nfi\neval ac_res=\\$gl_cv_type_${gltype}_signed\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    eval result=\\$gl_cv_type_${gltype}_signed\n    GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`\n    if test \"$result\" = yes; then\n      cat >>confdefs.h <<_ACEOF\n#define HAVE_SIGNED_${GLTYPE} 1\n_ACEOF\n\n      eval HAVE_SIGNED_${GLTYPE}=1\n    else\n      eval HAVE_SIGNED_${GLTYPE}=0\n    fi\n  done\n\n\n  gl_cv_type_ptrdiff_t_signed=yes\n  gl_cv_type_size_t_signed=no\n  if test $APPLE_UNIVERSAL_BUILD = 0; then\n\n\n  for gltype in ptrdiff_t size_t ; do\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $gltype integer literal suffix\" >&5\n$as_echo_n \"checking for $gltype integer literal suffix... \" >&6; }\nif eval \\${gl_cv_type_${gltype}_suffix+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  eval gl_cv_type_${gltype}_suffix=no\n       eval result=\\$gl_cv_type_${gltype}_signed\n       if test \"$result\" = yes; then\n         glsufu=\n       else\n         glsufu=u\n       fi\n       for glsuf in \"$glsufu\" ${glsufu}l ${glsufu}ll ${glsufu}i64; do\n         case $glsuf in\n           '')  gltype1='int';;\n           l)   gltype1='long int';;\n           ll)  gltype1='long long int';;\n           i64) gltype1='__int64';;\n           u)   gltype1='unsigned int';;\n           ul)  gltype1='unsigned long int';;\n           ull) gltype1='unsigned long long int';;\n           ui64)gltype1='unsigned __int64';;\n         esac\n         cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n  #include <stddef.h>\n  #include <signal.h>\n  #if HAVE_WCHAR_H\n  # include <stdio.h>\n  # include <time.h>\n  # include <wchar.h>\n  #endif\n\n              extern $gltype foo;\n              extern $gltype1 foo;\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval gl_cv_type_${gltype}_suffix=\\$glsuf\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n         eval result=\\$gl_cv_type_${gltype}_suffix\n         test \"$result\" != no && break\n       done\nfi\neval ac_res=\\$gl_cv_type_${gltype}_suffix\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`\n    eval result=\\$gl_cv_type_${gltype}_suffix\n    test \"$result\" = no && result=\n    eval ${GLTYPE}_SUFFIX=\\$result\n    cat >>confdefs.h <<_ACEOF\n#define ${GLTYPE}_SUFFIX $result\n_ACEOF\n\n  done\n\n\n  fi\n\n\n  for gltype in sig_atomic_t wchar_t wint_t ; do\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $gltype integer literal suffix\" >&5\n$as_echo_n \"checking for $gltype integer literal suffix... \" >&6; }\nif eval \\${gl_cv_type_${gltype}_suffix+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  eval gl_cv_type_${gltype}_suffix=no\n       eval result=\\$gl_cv_type_${gltype}_signed\n       if test \"$result\" = yes; then\n         glsufu=\n       else\n         glsufu=u\n       fi\n       for glsuf in \"$glsufu\" ${glsufu}l ${glsufu}ll ${glsufu}i64; do\n         case $glsuf in\n           '')  gltype1='int';;\n           l)   gltype1='long int';;\n           ll)  gltype1='long long int';;\n           i64) gltype1='__int64';;\n           u)   gltype1='unsigned int';;\n           ul)  gltype1='unsigned long int';;\n           ull) gltype1='unsigned long long int';;\n           ui64)gltype1='unsigned __int64';;\n         esac\n         cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n  #include <stddef.h>\n  #include <signal.h>\n  #if HAVE_WCHAR_H\n  # include <stdio.h>\n  # include <time.h>\n  # include <wchar.h>\n  #endif\n\n              extern $gltype foo;\n              extern $gltype1 foo;\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval gl_cv_type_${gltype}_suffix=\\$glsuf\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n         eval result=\\$gl_cv_type_${gltype}_suffix\n         test \"$result\" != no && break\n       done\nfi\neval ac_res=\\$gl_cv_type_${gltype}_suffix\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`\n    eval result=\\$gl_cv_type_${gltype}_suffix\n    test \"$result\" = no && result=\n    eval ${GLTYPE}_SUFFIX=\\$result\n    cat >>confdefs.h <<_ACEOF\n#define ${GLTYPE}_SUFFIX $result\n_ACEOF\n\n  done\n\n\n\n          if test $GNULIB_OVERRIDES_WINT_T = 1; then\n    BITSIZEOF_WINT_T=32\n  fi\n\n  fi\n\n    LIMITS_H=limits.h\n   if test -n \"$LIMITS_H\"; then\n  GL_GENERATE_LIMITS_H_TRUE=\n  GL_GENERATE_LIMITS_H_FALSE='#'\nelse\n  GL_GENERATE_LIMITS_H_TRUE='#'\n  GL_GENERATE_LIMITS_H_FALSE=\nfi\n\n\n\n\n\n\n   if test -n \"$STDINT_H\"; then\n  GL_GENERATE_STDINT_H_TRUE=\n  GL_GENERATE_STDINT_H_FALSE='#'\nelse\n  GL_GENERATE_STDINT_H_TRUE='#'\n  GL_GENERATE_STDINT_H_FALSE=\nfi\n\n\n\n  GNULIB_FFSL=0;\n  GNULIB_FFSLL=0;\n  GNULIB_MEMCHR=0;\n  GNULIB_MEMMEM=0;\n  GNULIB_MEMPCPY=0;\n  GNULIB_MEMRCHR=0;\n  GNULIB_RAWMEMCHR=0;\n  GNULIB_STPCPY=0;\n  GNULIB_STPNCPY=0;\n  GNULIB_STRCHRNUL=0;\n  GNULIB_STRDUP=0;\n  GNULIB_STRNCAT=0;\n  GNULIB_STRNDUP=0;\n  GNULIB_STRNLEN=0;\n  GNULIB_STRPBRK=0;\n  GNULIB_STRSEP=0;\n  GNULIB_STRSTR=0;\n  GNULIB_STRCASESTR=0;\n  GNULIB_STRTOK_R=0;\n  GNULIB_MBSLEN=0;\n  GNULIB_MBSNLEN=0;\n  GNULIB_MBSCHR=0;\n  GNULIB_MBSRCHR=0;\n  GNULIB_MBSSTR=0;\n  GNULIB_MBSCASECMP=0;\n  GNULIB_MBSNCASECMP=0;\n  GNULIB_MBSPCASECMP=0;\n  GNULIB_MBSCASESTR=0;\n  GNULIB_MBSCSPN=0;\n  GNULIB_MBSPBRK=0;\n  GNULIB_MBSSPN=0;\n  GNULIB_MBSSEP=0;\n  GNULIB_MBSTOK_R=0;\n  GNULIB_STRERROR=0;\n  GNULIB_STRERROR_R=0;\n  GNULIB_STRSIGNAL=0;\n  GNULIB_STRVERSCMP=0;\n  HAVE_MBSLEN=0;\n    HAVE_FFSL=1;\n  HAVE_FFSLL=1;\n  HAVE_MEMCHR=1;\n  HAVE_DECL_MEMMEM=1;\n  HAVE_MEMPCPY=1;\n  HAVE_DECL_MEMRCHR=1;\n  HAVE_RAWMEMCHR=1;\n  HAVE_STPCPY=1;\n  HAVE_STPNCPY=1;\n  HAVE_STRCHRNUL=1;\n  HAVE_DECL_STRDUP=1;\n  HAVE_DECL_STRNDUP=1;\n  HAVE_DECL_STRNLEN=1;\n  HAVE_STRPBRK=1;\n  HAVE_STRSEP=1;\n  HAVE_STRCASESTR=1;\n  HAVE_DECL_STRTOK_R=1;\n  HAVE_DECL_STRERROR_R=1;\n  HAVE_DECL_STRSIGNAL=1;\n  HAVE_STRVERSCMP=1;\n  REPLACE_MEMCHR=0;\n  REPLACE_MEMMEM=0;\n  REPLACE_STPNCPY=0;\n  REPLACE_STRDUP=0;\n  REPLACE_STRSTR=0;\n  REPLACE_STRCASESTR=0;\n  REPLACE_STRCHRNUL=0;\n  REPLACE_STRERROR=0;\n  REPLACE_STRERROR_R=0;\n  REPLACE_STRNCAT=0;\n  REPLACE_STRNDUP=0;\n  REPLACE_STRNLEN=0;\n  REPLACE_STRSIGNAL=0;\n  REPLACE_STRTOK_R=0;\n  UNDEFINE_STRTOK_R=0;\n\n\n     REPLACE_STRERROR_0=0\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether strerror(0) succeeds\" >&5\n$as_echo_n \"checking whether strerror(0) succeeds... \" >&6; }\nif ${gl_cv_func_strerror_0_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test \"$cross_compiling\" = yes; then :\n  case \"$host_os\" in\n                 # Guess yes on glibc systems.\n         *-gnu*) gl_cv_func_strerror_0_works=\"guessing yes\" ;;\n                 # If we don't know, assume the worst.\n         *)      gl_cv_func_strerror_0_works=\"guessing no\" ;;\n       esac\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <string.h>\n           #include <errno.h>\n\nint\nmain ()\n{\nint result = 0;\n           char *str;\n           errno = 0;\n           str = strerror (0);\n           if (!*str) result |= 1;\n           if (errno) result |= 2;\n           if (strstr (str, \"nknown\") || strstr (str, \"ndefined\"))\n             result |= 4;\n           return result;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  gl_cv_func_strerror_0_works=yes\nelse\n  gl_cv_func_strerror_0_works=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_strerror_0_works\" >&5\n$as_echo \"$gl_cv_func_strerror_0_works\" >&6; }\n  case \"$gl_cv_func_strerror_0_works\" in\n    *yes) ;;\n    *)\n      REPLACE_STRERROR_0=1\n\n$as_echo \"#define REPLACE_STRERROR_0 1\" >>confdefs.h\n\n      ;;\n  esac\n\n\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_string_h='<'string.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <string.h>\" >&5\n$as_echo_n \"checking absolute name of <string.h>... \" >&6; }\nif ${gl_cv_next_string_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <string.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'string.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_string_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_string_h\n           gl_cv_next_string_h='\"'$gl_header'\"'\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_string_h\" >&5\n$as_echo \"$gl_cv_next_string_h\" >&6; }\n     fi\n     NEXT_STRING_H=$gl_cv_next_string_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'string.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_string_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_STRING_H=$gl_next_as_first_directive\n\n\n\n\n\n\n    for gl_func in ffsl ffsll memmem mempcpy memrchr rawmemchr stpcpy stpncpy strchrnul      strdup strncat strndup strnlen strpbrk strsep strcasestr strtok_r      strerror_r strsignal strverscmp; do\n    as_gl_Symbol=`$as_echo \"gl_cv_have_raw_decl_$gl_func\" | $as_tr_sh`\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro\" >&5\n$as_echo_n \"checking whether $gl_func is declared without a macro... \" >&6; }\nif eval \\${$as_gl_Symbol+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <string.h>\n\nint\nmain ()\n{\n#undef $gl_func\n  (void) $gl_func;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$as_gl_Symbol=yes\"\nelse\n  eval \"$as_gl_Symbol=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$as_gl_Symbol\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    if eval test \\\"x\\$\"$as_gl_Symbol\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_RAW_DECL_$gl_func\" | $as_tr_cpp` 1\n_ACEOF\n\n                     eval ac_cv_have_decl_$gl_func=yes\nfi\n      done\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether stat file-mode macros are broken\" >&5\n$as_echo_n \"checking whether stat file-mode macros are broken... \" >&6; }\nif ${ac_cv_header_stat_broken+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/types.h>\n#include <sys/stat.h>\n\n#if defined S_ISBLK && defined S_IFDIR\nextern char c1[S_ISBLK (S_IFDIR) ? -1 : 1];\n#endif\n\n#if defined S_ISBLK && defined S_IFCHR\nextern char c2[S_ISBLK (S_IFCHR) ? -1 : 1];\n#endif\n\n#if defined S_ISLNK && defined S_IFREG\nextern char c3[S_ISLNK (S_IFREG) ? -1 : 1];\n#endif\n\n#if defined S_ISSOCK && defined S_IFREG\nextern char c4[S_ISSOCK (S_IFREG) ? -1 : 1];\n#endif\n\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_header_stat_broken=no\nelse\n  ac_cv_header_stat_broken=yes\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stat_broken\" >&5\n$as_echo \"$ac_cv_header_stat_broken\" >&6; }\nif test $ac_cv_header_stat_broken = yes; then\n\n$as_echo \"#define STAT_MACROS_BROKEN 1\" >>confdefs.h\n\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_sys_types_h='<'sys/types.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/types.h>\" >&5\n$as_echo_n \"checking absolute name of <sys/types.h>... \" >&6; }\nif ${gl_cv_next_sys_types_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/types.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'sys/types.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_sys_types_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_sys_types_h\n           gl_cv_next_sys_types_h='\"'$gl_header'\"'\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_sys_types_h\" >&5\n$as_echo \"$gl_cv_next_sys_types_h\" >&6; }\n     fi\n     NEXT_SYS_TYPES_H=$gl_cv_next_sys_types_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'sys/types.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_sys_types_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H=$gl_next_as_first_directive\n\n\n\n\n\n\n\n\n\n\n\n\n  GNULIB_MKTIME=0;\n  GNULIB_NANOSLEEP=0;\n  GNULIB_STRPTIME=0;\n  GNULIB_TIMEGM=0;\n  GNULIB_TIME_R=0;\n  GNULIB_TIME_RZ=0;\n    HAVE_DECL_LOCALTIME_R=1;\n  HAVE_NANOSLEEP=1;\n  HAVE_STRPTIME=1;\n  HAVE_TIMEGM=1;\n        REPLACE_LOCALTIME_R=GNULIB_PORTCHECK;\n  REPLACE_MKTIME=GNULIB_PORTCHECK;\n  REPLACE_NANOSLEEP=GNULIB_PORTCHECK;\n  REPLACE_TIMEGM=GNULIB_PORTCHECK;\n\n      : ${GNULIB_GETTIMEOFDAY=0};\n        REPLACE_GMTIME=0;\n  REPLACE_LOCALTIME=0;\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for struct timespec in <time.h>\" >&5\n$as_echo_n \"checking for struct timespec in <time.h>... \" >&6; }\nif ${gl_cv_sys_struct_timespec_in_time_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <time.h>\n\nint\nmain ()\n{\nstatic struct timespec x; x.tv_sec = x.tv_nsec;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_sys_struct_timespec_in_time_h=yes\nelse\n  gl_cv_sys_struct_timespec_in_time_h=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_sys_struct_timespec_in_time_h\" >&5\n$as_echo \"$gl_cv_sys_struct_timespec_in_time_h\" >&6; }\n\n  TIME_H_DEFINES_STRUCT_TIMESPEC=0\n  SYS_TIME_H_DEFINES_STRUCT_TIMESPEC=0\n  PTHREAD_H_DEFINES_STRUCT_TIMESPEC=0\n  UNISTD_H_DEFINES_STRUCT_TIMESPEC=0\n  if test $gl_cv_sys_struct_timespec_in_time_h = yes; then\n    TIME_H_DEFINES_STRUCT_TIMESPEC=1\n  else\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for struct timespec in <sys/time.h>\" >&5\n$as_echo_n \"checking for struct timespec in <sys/time.h>... \" >&6; }\nif ${gl_cv_sys_struct_timespec_in_sys_time_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/time.h>\n\nint\nmain ()\n{\nstatic struct timespec x; x.tv_sec = x.tv_nsec;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_sys_struct_timespec_in_sys_time_h=yes\nelse\n  gl_cv_sys_struct_timespec_in_sys_time_h=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_sys_struct_timespec_in_sys_time_h\" >&5\n$as_echo \"$gl_cv_sys_struct_timespec_in_sys_time_h\" >&6; }\n    if test $gl_cv_sys_struct_timespec_in_sys_time_h = yes; then\n      SYS_TIME_H_DEFINES_STRUCT_TIMESPEC=1\n    else\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for struct timespec in <pthread.h>\" >&5\n$as_echo_n \"checking for struct timespec in <pthread.h>... \" >&6; }\nif ${gl_cv_sys_struct_timespec_in_pthread_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <pthread.h>\n\nint\nmain ()\n{\nstatic struct timespec x; x.tv_sec = x.tv_nsec;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_sys_struct_timespec_in_pthread_h=yes\nelse\n  gl_cv_sys_struct_timespec_in_pthread_h=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_sys_struct_timespec_in_pthread_h\" >&5\n$as_echo \"$gl_cv_sys_struct_timespec_in_pthread_h\" >&6; }\n      if test $gl_cv_sys_struct_timespec_in_pthread_h = yes; then\n        PTHREAD_H_DEFINES_STRUCT_TIMESPEC=1\n      else\n        { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for struct timespec in <unistd.h>\" >&5\n$as_echo_n \"checking for struct timespec in <unistd.h>... \" >&6; }\nif ${gl_cv_sys_struct_timespec_in_unistd_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <unistd.h>\n\nint\nmain ()\n{\nstatic struct timespec x; x.tv_sec = x.tv_nsec;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_sys_struct_timespec_in_unistd_h=yes\nelse\n  gl_cv_sys_struct_timespec_in_unistd_h=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_sys_struct_timespec_in_unistd_h\" >&5\n$as_echo \"$gl_cv_sys_struct_timespec_in_unistd_h\" >&6; }\n        if test $gl_cv_sys_struct_timespec_in_unistd_h = yes; then\n          UNISTD_H_DEFINES_STRUCT_TIMESPEC=1\n        fi\n      fi\n    fi\n  fi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_time_h='<'time.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <time.h>\" >&5\n$as_echo_n \"checking absolute name of <time.h>... \" >&6; }\nif ${gl_cv_next_time_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <time.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'time.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_time_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_time_h\n           gl_cv_next_time_h='\"'$gl_header'\"'\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_time_h\" >&5\n$as_echo \"$gl_cv_next_time_h\" >&6; }\n     fi\n     NEXT_TIME_H=$gl_cv_next_time_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'time.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_time_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_TIME_H=$gl_next_as_first_directive\n\n\n\n\n\n\n\n\n\n\n\n\ngl_libunistring_sed_extract_major='/^[0-9]/{s/^\\([0-9]*\\).*/\\1/p;q;}\ni\\\n0\nq\n'\ngl_libunistring_sed_extract_minor='/^[0-9][0-9]*[.][0-9]/{s/^[0-9]*[.]\\([0-9]*\\).*/\\1/p;q;}\ni\\\n0\nq\n'\ngl_libunistring_sed_extract_subminor='/^[0-9][0-9]*[.][0-9][0-9]*[.][0-9]/{s/^[0-9]*[.][0-9]*[.]\\([0-9]*\\).*/\\1/p;q;}\ni\\\n0\nq\n'\n\n\n  if test \"$HAVE_LIBUNISTRING\" = yes; then\n    LIBUNISTRING_VERSION_MAJOR=`echo \"$LIBUNISTRING_VERSION\" | sed -n -e \"$gl_libunistring_sed_extract_major\"`\n    LIBUNISTRING_VERSION_MINOR=`echo \"$LIBUNISTRING_VERSION\" | sed -n -e \"$gl_libunistring_sed_extract_minor\"`\n    LIBUNISTRING_VERSION_SUBMINOR=`echo \"$LIBUNISTRING_VERSION\" | sed -n -e \"$gl_libunistring_sed_extract_subminor\"`\n  fi\n\nac_fn_c_check_decl \"$LINENO\" \"clearerr_unlocked\" \"ac_cv_have_decl_clearerr_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_clearerr_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_CLEARERR_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"feof_unlocked\" \"ac_cv_have_decl_feof_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_feof_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_FEOF_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"ferror_unlocked\" \"ac_cv_have_decl_ferror_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_ferror_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_FERROR_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"fflush_unlocked\" \"ac_cv_have_decl_fflush_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_fflush_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_FFLUSH_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"fgets_unlocked\" \"ac_cv_have_decl_fgets_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_fgets_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_FGETS_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"fputc_unlocked\" \"ac_cv_have_decl_fputc_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_fputc_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_FPUTC_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"fputs_unlocked\" \"ac_cv_have_decl_fputs_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_fputs_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_FPUTS_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"fread_unlocked\" \"ac_cv_have_decl_fread_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_fread_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_FREAD_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"fwrite_unlocked\" \"ac_cv_have_decl_fwrite_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_fwrite_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_FWRITE_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"getc_unlocked\" \"ac_cv_have_decl_getc_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_getc_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_GETC_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"getchar_unlocked\" \"ac_cv_have_decl_getchar_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_getchar_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_GETCHAR_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"putc_unlocked\" \"ac_cv_have_decl_putc_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_putc_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_PUTC_UNLOCKED $ac_have_decl\n_ACEOF\n\nac_fn_c_check_decl \"$LINENO\" \"putchar_unlocked\" \"ac_cv_have_decl_putchar_unlocked\" \"$ac_includes_default\"\nif test \"x$ac_cv_have_decl_putchar_unlocked\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_PUTCHAR_UNLOCKED $ac_have_decl\n_ACEOF\n\n\n   if false; then\n  GL_COND_LIBTOOL_TRUE=\n  GL_COND_LIBTOOL_FALSE='#'\nelse\n  GL_COND_LIBTOOL_TRUE='#'\n  GL_COND_LIBTOOL_FALSE=\nfi\n\n  gl_cond_libtool=false\n  gl_libdeps=\n  gl_ltlibdeps=\n  gl_m4_base='srcm4'\n\n\n\n\n\n\n\n\n\n  gl_source_base='srclib'\n\n\n\n\n\n  if test $ac_cv_func_alloca_works = no; then\n\n\n  :\n\n  fi\n\n  # Define an additional variable used in the Makefile substitution.\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#if defined __GNUC__ || defined _MSC_VER || !HAVE_ALLOCA_H\n  Need own alloca\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"Need own alloca\" >/dev/null 2>&1; then :\n  ALLOCA_H=alloca.h\nelse\n  ALLOCA_H=\nfi\nrm -f conftest*\n\n\n   if test -n \"$ALLOCA_H\"; then\n  GL_GENERATE_ALLOCA_H_TRUE=\n  GL_GENERATE_ALLOCA_H_FALSE='#'\nelse\n  GL_GENERATE_ALLOCA_H_TRUE='#'\n  GL_GENERATE_ALLOCA_H_FALSE=\nfi\n\n\n\n\n\n  if test $ac_cv_func_canonicalize_file_name = no; then\n    HAVE_CANONICALIZE_FILE_NAME=0\n    if test $ac_cv_func_realpath = no; then\n      HAVE_REALPATH=0\n    else\n      case \"$gl_cv_func_realpath_works\" in\n\t*yes) ;;\n\t*)    REPLACE_REALPATH=1 ;;\n      esac\n    fi\n  else\n    case \"$gl_cv_func_realpath_works\" in\n      *yes)\n        ;;\n      *)\n        REPLACE_CANONICALIZE_FILE_NAME=1\n        REPLACE_REALPATH=1\n        ;;\n    esac\n  fi\n\n  if test $HAVE_CANONICALIZE_FILE_NAME = 0 || test $REPLACE_CANONICALIZE_FILE_NAME = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS canonicalize-lgpl.$ac_objext\"\n\n  fi\n\n\ncat >>confdefs.h <<_ACEOF\n#define GNULIB_CANONICALIZE_LGPL 1\n_ACEOF\n\n\n\n\n\n\n\n          GNULIB_CANONICALIZE_FILE_NAME=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_CANONICALIZE_FILE_NAME 1\" >>confdefs.h\n\n\n\n\n\n\n\n\n          GNULIB_REALPATH=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_REALPATH 1\" >>confdefs.h\n\n\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether // is distinct from /\" >&5\n$as_echo_n \"checking whether // is distinct from /... \" >&6; }\nif ${gl_cv_double_slash_root+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n   if test x\"$cross_compiling\" = xyes ; then\n        # When cross-compiling, there is no way to tell whether // is special\n        # short of a list of hosts.  However, the only known hosts to date\n        # that have a distinct // are Apollo DomainOS (too old to port to),\n        # Cygwin, and z/OS.  If anyone knows of another system for which // has\n        # special semantics and is distinct from /, please report it to\n        # <bug-gnulib@gnu.org>.\n        case $host in\n          *-cygwin | i370-ibm-openedition)\n            gl_cv_double_slash_root=yes ;;\n          *)\n            # Be optimistic and assume that / and // are the same when we\n            # don't know.\n            gl_cv_double_slash_root='unknown, assuming no' ;;\n        esac\n      else\n        set x `ls -di / // 2>/dev/null`\n        if test \"$2\" = \"$4\" && wc //dev/null >/dev/null 2>&1; then\n          gl_cv_double_slash_root=no\n        else\n          gl_cv_double_slash_root=yes\n        fi\n      fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_double_slash_root\" >&5\n$as_echo \"$gl_cv_double_slash_root\" >&6; }\n  if test \"$gl_cv_double_slash_root\" = yes; then\n\n$as_echo \"#define DOUBLE_SLASH_IS_DISTINCT_ROOT 1\" >>confdefs.h\n\n  fi\n\n\n\n\n\n\n\n          GNULIB_ENVIRON=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_ENVIRON 1\" >>confdefs.h\n\n\n\n\n\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for error_at_line\" >&5\n$as_echo_n \"checking for error_at_line... \" >&6; }\nif ${ac_cv_lib_error_at_line+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <error.h>\nint\nmain ()\n{\nerror_at_line (0, 0, \"\", 0, \"an error occurred\");\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_error_at_line=yes\nelse\n  ac_cv_lib_error_at_line=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_error_at_line\" >&5\n$as_echo \"$ac_cv_lib_error_at_line\" >&6; }\n\n  if test $ac_cv_lib_error_at_line = no; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS error.$ac_objext\"\n\n\n\n  :\n\n  fi\n\n\n  XGETTEXT_EXTRA_OPTIONS=\"$XGETTEXT_EXTRA_OPTIONS --flag=error:3:c-format\"\n\n\n\n  XGETTEXT_EXTRA_OPTIONS=\"$XGETTEXT_EXTRA_OPTIONS --flag=error_at_line:5:c-format\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_fcntl_h='<'fcntl.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <fcntl.h>\" >&5\n$as_echo_n \"checking absolute name of <fcntl.h>... \" >&6; }\nif ${gl_cv_next_fcntl_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <fcntl.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'fcntl.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_fcntl_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_fcntl_h\n           gl_cv_next_fcntl_h='\"'$gl_header'\"'\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_fcntl_h\" >&5\n$as_echo \"$gl_cv_next_fcntl_h\" >&6; }\n     fi\n     NEXT_FCNTL_H=$gl_cv_next_fcntl_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'fcntl.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_fcntl_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_FCNTL_H=$gl_next_as_first_directive\n\n\n\n\n\n\n\n\n\n\n    for gl_func in fcntl openat; do\n    as_gl_Symbol=`$as_echo \"gl_cv_have_raw_decl_$gl_func\" | $as_tr_sh`\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro\" >&5\n$as_echo_n \"checking whether $gl_func is declared without a macro... \" >&6; }\nif eval \\${$as_gl_Symbol+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <fcntl.h>\n\nint\nmain ()\n{\n#undef $gl_func\n  (void) $gl_func;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$as_gl_Symbol=yes\"\nelse\n  eval \"$as_gl_Symbol=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$as_gl_Symbol\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    if eval test \\\"x\\$\"$as_gl_Symbol\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_RAW_DECL_$gl_func\" | $as_tr_cpp` 1\n_ACEOF\n\n                     eval ac_cv_have_decl_$gl_func=yes\nfi\n      done\n\n\n\n\n\n  ac_found=0\n  ac_fn_c_check_decl \"$LINENO\" \"program_invocation_name\" \"ac_cv_have_decl_program_invocation_name\" \"#include <errno.h>\n\"\nif test \"x$ac_cv_have_decl_program_invocation_name\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_PROGRAM_INVOCATION_NAME $ac_have_decl\n_ACEOF\nif test $ac_have_decl = 1; then :\n  ac_found=1\nfi\n\n  ac_fn_c_check_decl \"$LINENO\" \"program_invocation_short_name\" \"ac_cv_have_decl_program_invocation_short_name\" \"#include <errno.h>\n\"\nif test \"x$ac_cv_have_decl_program_invocation_short_name\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME $ac_have_decl\n_ACEOF\nif test $ac_have_decl = 1; then :\n  ac_found=1\nfi\n\n  ac_fn_c_check_decl \"$LINENO\" \"__argv\" \"ac_cv_have_decl___argv\" \"#include <stdlib.h>\n\"\nif test \"x$ac_cv_have_decl___argv\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL___ARGV $ac_have_decl\n_ACEOF\nif test $ac_have_decl = 1; then :\n  ac_found=1\nfi\n\n\n  # Incur the cost of this test only if none of the above worked.\n  if test $ac_found = 0; then\n    # On OpenBSD 5.1, using the global __progname variable appears to be\n    # the only way to implement getprogname.\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether __progname is defined in default libraries\" >&5\n$as_echo_n \"checking whether __progname is defined in default libraries... \" >&6; }\nif ${gl_cv_var___progname+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n        gl_cv_var___progname=\n        cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\nextern char *__progname;\nint\nmain ()\n{\nreturn *__progname;\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  gl_cv_var___progname=yes\n\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_var___progname\" >&5\n$as_echo \"$gl_cv_var___progname\" >&6; }\n    if test \"$gl_cv_var___progname\" = yes; then\n\n$as_echo \"#define HAVE_VAR___PROGNAME 1\" >>confdefs.h\n\n    fi\n  fi\n\n\n\n\n\n\n\n\n\n\n  gl_gettimeofday_timezone=void\n  if test $ac_cv_func_gettimeofday != yes; then\n    HAVE_GETTIMEOFDAY=0\n  else\n\n\n\n { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether gettimeofday clobbers localtime buffer\" >&5\n$as_echo_n \"checking whether gettimeofday clobbers localtime buffer... \" >&6; }\nif ${gl_cv_func_gettimeofday_clobber+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test \"$cross_compiling\" = yes; then :\n  # When cross-compiling:\n      case \"$host_os\" in\n                # Guess all is fine on glibc systems.\n        *-gnu*) gl_cv_func_gettimeofday_clobber=\"guessing no\" ;;\n                # If we don't know, assume the worst.\n        *)      gl_cv_func_gettimeofday_clobber=\"guessing yes\" ;;\n      esac\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <string.h>\n          #include <sys/time.h>\n          #include <time.h>\n          #include <stdlib.h>\n\nint\nmain ()\n{\n\n          time_t t = 0;\n          struct tm *lt;\n          struct tm saved_lt;\n          struct timeval tv;\n          lt = localtime (&t);\n          saved_lt = *lt;\n          gettimeofday (&tv, NULL);\n          return memcmp (lt, &saved_lt, sizeof (struct tm)) != 0;\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  gl_cv_func_gettimeofday_clobber=no\nelse\n  gl_cv_func_gettimeofday_clobber=yes\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_gettimeofday_clobber\" >&5\n$as_echo \"$gl_cv_func_gettimeofday_clobber\" >&6; }\n\n case \"$gl_cv_func_gettimeofday_clobber\" in\n   *yes)\n     REPLACE_GETTIMEOFDAY=1\n\n  REPLACE_GMTIME=1\n  REPLACE_LOCALTIME=1\n\n\n$as_echo \"#define GETTIMEOFDAY_CLOBBERS_LOCALTIME 1\" >>confdefs.h\n\n     ;;\n esac\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for gettimeofday with POSIX signature\" >&5\n$as_echo_n \"checking for gettimeofday with POSIX signature... \" >&6; }\nif ${gl_cv_func_gettimeofday_posix_signature+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/time.h>\n              struct timeval c;\n              int gettimeofday (struct timeval *restrict, void *restrict);\n\nint\nmain ()\n{\n/* glibc uses struct timezone * rather than the POSIX void *\n                 if _GNU_SOURCE is defined.  However, since the only portable\n                 use of gettimeofday uses NULL as the second parameter, and\n                 since the glibc definition is actually more typesafe, it is\n                 not worth wrapping this to get a compliant signature.  */\n              int (*f) (struct timeval *restrict, void *restrict)\n                = gettimeofday;\n              int x = f (&c, 0);\n              return !(x | c.tv_sec | c.tv_usec);\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_func_gettimeofday_posix_signature=yes\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/time.h>\nint gettimeofday (struct timeval *restrict, struct timezone *restrict);\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_func_gettimeofday_posix_signature=almost\nelse\n  gl_cv_func_gettimeofday_posix_signature=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_gettimeofday_posix_signature\" >&5\n$as_echo \"$gl_cv_func_gettimeofday_posix_signature\" >&6; }\n    if test $gl_cv_func_gettimeofday_posix_signature = almost; then\n      gl_gettimeofday_timezone='struct timezone'\n    elif test $gl_cv_func_gettimeofday_posix_signature != yes; then\n      REPLACE_GETTIMEOFDAY=1\n    fi\n        if test $REPLACE_STRUCT_TIMEVAL = 1; then\n      REPLACE_GETTIMEOFDAY=1\n    fi\n\n  fi\n\ncat >>confdefs.h <<_ACEOF\n#define GETTIMEOFDAY_TIMEZONE $gl_gettimeofday_timezone\n_ACEOF\n\n\n  if test $HAVE_GETTIMEOFDAY = 0 || test $REPLACE_GETTIMEOFDAY = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS gettimeofday.$ac_objext\"\n\n\n  for ac_header in sys/timeb.h\ndo :\n  ac_fn_c_check_header_mongrel \"$LINENO\" \"sys/timeb.h\" \"ac_cv_header_sys_timeb_h\" \"$ac_includes_default\"\nif test \"x$ac_cv_header_sys_timeb_h\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_SYS_TIMEB_H 1\n_ACEOF\n\nfi\n\ndone\n\n  for ac_func in _ftime\ndo :\n  ac_fn_c_check_func \"$LINENO\" \"_ftime\" \"ac_cv_func__ftime\"\nif test \"x$ac_cv_func__ftime\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE__FTIME 1\n_ACEOF\n\nfi\ndone\n\n\n  fi\n\n\n\n\n\n          GNULIB_GETTIMEOFDAY=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_GETTIMEOFDAY 1\" >>confdefs.h\n\n\n\n\n\n\n\n\n  if test $ac_cv_func_lstat = yes; then\n\n    case \"$gl_cv_func_lstat_dereferences_slashed_symlink\" in\n      *no)\n        REPLACE_LSTAT=1\n        ;;\n    esac\n  else\n    HAVE_LSTAT=0\n  fi\n\n  if test $REPLACE_LSTAT = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS lstat.$ac_objext\"\n\n    :\n  fi\n\n\n\n\n\n          GNULIB_LSTAT=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_LSTAT 1\" >>confdefs.h\n\n\n\n\n\n\n  if test $gl_cv_func_malloc_posix = yes; then\n\n$as_echo \"#define HAVE_MALLOC_POSIX 1\" >>confdefs.h\n\n  else\n    REPLACE_MALLOC=1\n  fi\n\n  if test $REPLACE_MALLOC = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS malloc.$ac_objext\"\n\n  fi\n\n\n\n\n\n          GNULIB_MALLOC_POSIX=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_MALLOC_POSIX 1\" >>confdefs.h\n\n\n\n\n\n\n\n\n\n   { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for mbstate_t\" >&5\n$as_echo_n \"checking for mbstate_t... \" >&6; }\nif ${ac_cv_type_mbstate_t+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$ac_includes_default\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n   included before <wchar.h>.  */\n#include <stddef.h>\n#include <stdio.h>\n#include <time.h>\n#include <wchar.h>\nint\nmain ()\n{\nmbstate_t x; return sizeof x;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_type_mbstate_t=yes\nelse\n  ac_cv_type_mbstate_t=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_mbstate_t\" >&5\n$as_echo \"$ac_cv_type_mbstate_t\" >&6; }\n   if test $ac_cv_type_mbstate_t = yes; then\n\n$as_echo \"#define HAVE_MBSTATE_T 1\" >>confdefs.h\n\n   else\n\n$as_echo \"#define mbstate_t int\" >>confdefs.h\n\n   fi\n\n\n  if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS msvc-inval.$ac_objext\"\n\n  fi\n\n  if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS msvc-nothrow.$ac_objext\"\n\n  fi\n\n\n\n\n  ac_fn_c_check_decl \"$LINENO\" \"program_invocation_name\" \"ac_cv_have_decl_program_invocation_name\" \"#include <errno.h>\n\"\nif test \"x$ac_cv_have_decl_program_invocation_name\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_PROGRAM_INVOCATION_NAME $ac_have_decl\n_ACEOF\n\n  ac_fn_c_check_decl \"$LINENO\" \"program_invocation_short_name\" \"ac_cv_have_decl_program_invocation_short_name\" \"#include <errno.h>\n\"\nif test \"x$ac_cv_have_decl_program_invocation_short_name\" = xyes; then :\n  ac_have_decl=1\nelse\n  ac_have_decl=0\nfi\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME $ac_have_decl\n_ACEOF\n\n\n\n\n\n  for ac_func in raise\ndo :\n  ac_fn_c_check_func \"$LINENO\" \"raise\" \"ac_cv_func_raise\"\nif test \"x$ac_cv_func_raise\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_RAISE 1\n_ACEOF\n\nfi\ndone\n\n  if test $ac_cv_func_raise = no; then\n    HAVE_RAISE=0\n  else\n    if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then\n      REPLACE_RAISE=1\n    fi\n\n\n\n\n  if test $gl_cv_type_sigset_t = yes; then\n    ac_fn_c_check_func \"$LINENO\" \"sigprocmask\" \"ac_cv_func_sigprocmask\"\nif test \"x$ac_cv_func_sigprocmask\" = xyes; then :\n  gl_cv_func_sigprocmask=1\nfi\n\n  fi\n  if test -z \"$gl_cv_func_sigprocmask\"; then\n    HAVE_POSIX_SIGNALBLOCKING=0\n  fi\n\n      if test $HAVE_POSIX_SIGNALBLOCKING = 0; then\n\n\n\n\n          if test $gl_cv_header_signal_h_SIGPIPE != yes; then\n            REPLACE_RAISE=1\n          fi\n\n      fi\n\n  fi\n\n  if test $HAVE_RAISE = 0 || test $REPLACE_RAISE = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS raise.$ac_objext\"\n\n    :\n  fi\n\n\n\n\n\n          GNULIB_RAISE=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_RAISE 1\" >>confdefs.h\n\n\n\n\n\n\n  if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then\n    REPLACE_READ=1\n  fi\n\n\n  if test $REPLACE_READ = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS read.$ac_objext\"\n\n    :\n  fi\n\n\n\n\n\n          GNULIB_READ=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_READ 1\" >>confdefs.h\n\n\n\n\n\n\n  if test $ac_cv_func_readlink = no; then\n    HAVE_READLINK=0\n  else\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether readlink signature is correct\" >&5\n$as_echo_n \"checking whether readlink signature is correct... \" >&6; }\nif ${gl_cv_decl_readlink_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <unistd.h>\n      /* Cause compilation failure if original declaration has wrong type.  */\n      ssize_t readlink (const char *, char *, size_t);\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_decl_readlink_works=yes\nelse\n  gl_cv_decl_readlink_works=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_decl_readlink_works\" >&5\n$as_echo \"$gl_cv_decl_readlink_works\" >&6; }\n            { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether readlink handles trailing slash correctly\" >&5\n$as_echo_n \"checking whether readlink handles trailing slash correctly... \" >&6; }\nif ${gl_cv_func_readlink_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  # We have readlink, so assume ln -s works.\n       ln -s conftest.no-such conftest.link\n       ln -s conftest.link conftest.lnk2\n       if test \"$cross_compiling\" = yes; then :\n  case \"$host_os\" in\n                    # Guess yes on glibc systems.\n            *-gnu*) gl_cv_func_readlink_works=\"guessing yes\" ;;\n                    # If we don't know, assume the worst.\n            *)      gl_cv_func_readlink_works=\"guessing no\" ;;\n          esac\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <unistd.h>\n\nint\nmain ()\n{\nchar buf[20];\n      return readlink (\"conftest.lnk2/\", buf, sizeof buf) != -1;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  gl_cv_func_readlink_works=yes\nelse\n  gl_cv_func_readlink_works=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n      rm -f conftest.link conftest.lnk2\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_readlink_works\" >&5\n$as_echo \"$gl_cv_func_readlink_works\" >&6; }\n    case \"$gl_cv_func_readlink_works\" in\n      *yes)\n        if test \"$gl_cv_decl_readlink_works\" != yes; then\n          REPLACE_READLINK=1\n        fi\n        ;;\n      *)\n\n$as_echo \"#define READLINK_TRAILING_SLASH_BUG 1\" >>confdefs.h\n\n        REPLACE_READLINK=1\n        ;;\n    esac\n  fi\n\n  if test $HAVE_READLINK = 0 || test $REPLACE_READLINK = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS readlink.$ac_objext\"\n\n\n  :\n\n  fi\n\n\n\n\n\n          GNULIB_READLINK=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_READLINK 1\" >>confdefs.h\n\n\n\n\n\n\n\n\n  : ${RELOCATABLE_CONFIG_H_DIR='$(top_builddir)'}\n  RELOCATABLE_SRC_DIR=\"\\$(top_srcdir)/$gl_source_base\"\n  RELOCATABLE_BUILD_DIR=\"\\$(top_builddir)/$gl_source_base\"\n\n  if test $RELOCATABLE = yes; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS progreloc.$ac_objext\"\n\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS relocatable.$ac_objext\"\n\n  fi\n\n\n\n  :\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  if test $ac_cv_have_decl_setenv = no; then\n    HAVE_DECL_SETENV=0\n  fi\n\n\n\n\n\n  for ac_header in search.h\ndo :\n  ac_fn_c_check_header_mongrel \"$LINENO\" \"search.h\" \"ac_cv_header_search_h\" \"$ac_includes_default\"\nif test \"x$ac_cv_header_search_h\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_SEARCH_H 1\n_ACEOF\n\nfi\n\ndone\n\n  for ac_func in tsearch\ndo :\n  ac_fn_c_check_func \"$LINENO\" \"tsearch\" \"ac_cv_func_tsearch\"\nif test \"x$ac_cv_func_tsearch\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_TSEARCH 1\n_ACEOF\n\nfi\ndone\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_signal_h='<'signal.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <signal.h>\" >&5\n$as_echo_n \"checking absolute name of <signal.h>... \" >&6; }\nif ${gl_cv_next_signal_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <signal.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'signal.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_signal_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_signal_h\n           gl_cv_next_signal_h='\"'$gl_header'\"'\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_signal_h\" >&5\n$as_echo \"$gl_cv_next_signal_h\" >&6; }\n     fi\n     NEXT_SIGNAL_H=$gl_cv_next_signal_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'signal.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_signal_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H=$gl_next_as_first_directive\n\n\n\n\n\n# AIX declares sig_atomic_t to already include volatile, and C89 compilers\n# then choke on 'volatile sig_atomic_t'.  C99 requires that it compile.\n  ac_fn_c_check_type \"$LINENO\" \"volatile sig_atomic_t\" \"ac_cv_type_volatile_sig_atomic_t\" \"\n#include <signal.h>\n\n\"\nif test \"x$ac_cv_type_volatile_sig_atomic_t\" = xyes; then :\n\nelse\n  HAVE_TYPE_VOLATILE_SIG_ATOMIC_T=0\nfi\n\n\n\n\n\n\n\n  ac_fn_c_check_type \"$LINENO\" \"sighandler_t\" \"ac_cv_type_sighandler_t\" \"\n#include <signal.h>\n\n\"\nif test \"x$ac_cv_type_sighandler_t\" = xyes; then :\n\nelse\n  HAVE_SIGHANDLER_T=0\nfi\n\n\n\n    for gl_func in pthread_sigmask sigaction     sigaddset sigdelset sigemptyset sigfillset sigismember     sigpending sigprocmask; do\n    as_gl_Symbol=`$as_echo \"gl_cv_have_raw_decl_$gl_func\" | $as_tr_sh`\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro\" >&5\n$as_echo_n \"checking whether $gl_func is declared without a macro... \" >&6; }\nif eval \\${$as_gl_Symbol+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <signal.h>\n\nint\nmain ()\n{\n#undef $gl_func\n  (void) $gl_func;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$as_gl_Symbol=yes\"\nelse\n  eval \"$as_gl_Symbol=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$as_gl_Symbol\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    if eval test \\\"x\\$\"$as_gl_Symbol\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_RAW_DECL_$gl_func\" | $as_tr_cpp` 1\n_ACEOF\n\n                     eval ac_cv_have_decl_$gl_func=yes\nfi\n      done\n\n\n\n\n\n\n\ncat >>confdefs.h <<_ACEOF\n#define GNULIB_SIGPIPE 1\n_ACEOF\n\n\n\n  GNULIB_SIGNAL_H_SIGPIPE=1\n\n\n  GNULIB_STDIO_H_SIGPIPE=1\n\n  GNULIB_UNISTD_H_SIGPIPE=1\n\n\n\n  if test $gl_cv_type_sigset_t = yes; then\n    ac_fn_c_check_func \"$LINENO\" \"sigprocmask\" \"ac_cv_func_sigprocmask\"\nif test \"x$ac_cv_func_sigprocmask\" = xyes; then :\n  gl_cv_func_sigprocmask=1\nfi\n\n  fi\n  if test -z \"$gl_cv_func_sigprocmask\"; then\n    HAVE_POSIX_SIGNALBLOCKING=0\n  fi\n\n  if test $HAVE_POSIX_SIGNALBLOCKING = 0; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS sigprocmask.$ac_objext\"\n\n    :\n  fi\n\n\n\n\n\n          GNULIB_SIGPROCMASK=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_SIGPROCMASK 1\" >>confdefs.h\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ssize_t\" >&5\n$as_echo_n \"checking for ssize_t... \" >&6; }\nif ${gt_cv_ssize_t+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/types.h>\nint\nmain ()\n{\nint x = sizeof (ssize_t *) + sizeof (ssize_t);\n            return !x;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gt_cv_ssize_t=yes\nelse\n  gt_cv_ssize_t=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gt_cv_ssize_t\" >&5\n$as_echo \"$gt_cv_ssize_t\" >&6; }\n  if test $gt_cv_ssize_t = no; then\n\n$as_echo \"#define ssize_t int\" >>confdefs.h\n\n  fi\n\n\n\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether stat handles trailing slashes on directories\" >&5\n$as_echo_n \"checking whether stat handles trailing slashes on directories... \" >&6; }\nif ${gl_cv_func_stat_dir_slash+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test \"$cross_compiling\" = yes; then :\n  case $host_os in\n            mingw*) gl_cv_func_stat_dir_slash=\"guessing no\";;\n            *) gl_cv_func_stat_dir_slash=\"guessing yes\";;\n          esac\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/stat.h>\n\nint\nmain ()\n{\nstruct stat st; return stat (\".\", &st) != stat (\"./\", &st);\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  gl_cv_func_stat_dir_slash=yes\nelse\n  gl_cv_func_stat_dir_slash=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_stat_dir_slash\" >&5\n$as_echo \"$gl_cv_func_stat_dir_slash\" >&6; }\n        { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether stat handles trailing slashes on files\" >&5\n$as_echo_n \"checking whether stat handles trailing slashes on files... \" >&6; }\nif ${gl_cv_func_stat_file_slash+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  touch conftest.tmp\n       # Assume that if we have lstat, we can also check symlinks.\n       if test $ac_cv_func_lstat = yes; then\n         ln -s conftest.tmp conftest.lnk\n       fi\n       if test \"$cross_compiling\" = yes; then :\n  case \"$host_os\" in\n                    # Guess yes on glibc systems.\n            *-gnu*) gl_cv_func_stat_file_slash=\"guessing yes\" ;;\n                    # If we don't know, assume the worst.\n            *)      gl_cv_func_stat_file_slash=\"guessing no\" ;;\n          esac\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/stat.h>\n\nint\nmain ()\n{\nint result = 0;\n      struct stat st;\n      if (!stat (\"conftest.tmp/\", &st))\n        result |= 1;\n#if HAVE_LSTAT\n      if (!stat (\"conftest.lnk/\", &st))\n        result |= 2;\n#endif\n      return result;\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  gl_cv_func_stat_file_slash=yes\nelse\n  gl_cv_func_stat_file_slash=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n       rm -f conftest.tmp conftest.lnk\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_stat_file_slash\" >&5\n$as_echo \"$gl_cv_func_stat_file_slash\" >&6; }\n  case $gl_cv_func_stat_dir_slash in\n    *no) REPLACE_STAT=1\n\n$as_echo \"#define REPLACE_FUNC_STAT_DIR 1\" >>confdefs.h\n;;\n  esac\n  case $gl_cv_func_stat_file_slash in\n    *no) REPLACE_STAT=1\n\n$as_echo \"#define REPLACE_FUNC_STAT_FILE 1\" >>confdefs.h\n;;\n  esac\n\n  if test $REPLACE_STAT = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS stat.$ac_objext\"\n\n    :\n  fi\n\n\n\n\n\n          GNULIB_STAT=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_STAT 1\" >>confdefs.h\n\n\n\n\n\n\n  # Define two additional variables used in the Makefile substitution.\n\n  if test \"$ac_cv_header_stdbool_h\" = yes; then\n    STDBOOL_H=''\n  else\n    STDBOOL_H='stdbool.h'\n  fi\n\n   if test -n \"$STDBOOL_H\"; then\n  GL_GENERATE_STDBOOL_H_TRUE=\n  GL_GENERATE_STDBOOL_H_FALSE='#'\nelse\n  GL_GENERATE_STDBOOL_H_TRUE='#'\n  GL_GENERATE_STDBOOL_H_FALSE=\nfi\n\n\n  if test \"$ac_cv_type__Bool\" = yes; then\n    HAVE__BOOL=1\n  else\n    HAVE__BOOL=0\n  fi\n\n\n\n\n\n  STDDEF_H=\n  ac_fn_c_check_type \"$LINENO\" \"max_align_t\" \"ac_cv_type_max_align_t\" \"#include <stddef.h>\n\n\"\nif test \"x$ac_cv_type_max_align_t\" = xyes; then :\n\nelse\n  HAVE_MAX_ALIGN_T=0; STDDEF_H=stddef.h\nfi\n\n  if test $gt_cv_c_wchar_t = no; then\n    HAVE_WCHAR_T=0\n    STDDEF_H=stddef.h\n  fi\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether NULL can be used in arbitrary expressions\" >&5\n$as_echo_n \"checking whether NULL can be used in arbitrary expressions... \" >&6; }\nif ${gl_cv_decl_null_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stddef.h>\n      int test[2 * (sizeof NULL == sizeof (void *)) -1];\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_decl_null_works=yes\nelse\n  gl_cv_decl_null_works=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_decl_null_works\" >&5\n$as_echo \"$gl_cv_decl_null_works\" >&6; }\n  if test $gl_cv_decl_null_works = no; then\n    REPLACE_NULL=1\n    STDDEF_H=stddef.h\n  fi\n\n   if test -n \"$STDDEF_H\"; then\n  GL_GENERATE_STDDEF_H_TRUE=\n  GL_GENERATE_STDDEF_H_FALSE='#'\nelse\n  GL_GENERATE_STDDEF_H_TRUE='#'\n  GL_GENERATE_STDDEF_H_FALSE=\nfi\n\n  if test -n \"$STDDEF_H\"; then\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_stddef_h='<'stddef.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <stddef.h>\" >&5\n$as_echo_n \"checking absolute name of <stddef.h>... \" >&6; }\nif ${gl_cv_next_stddef_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stddef.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'stddef.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_stddef_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_stddef_h\n           gl_cv_next_stddef_h='\"'$gl_header'\"'\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_stddef_h\" >&5\n$as_echo \"$gl_cv_next_stddef_h\" >&6; }\n     fi\n     NEXT_STDDEF_H=$gl_cv_next_stddef_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'stddef.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_stddef_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_STDDEF_H=$gl_next_as_first_directive\n\n\n\n\n  fi\n\n\n\n\n  $as_echo \"#define __USE_MINGW_ANSI_STDIO 1\" >>confdefs.h\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_stdio_h='<'stdio.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <stdio.h>\" >&5\n$as_echo_n \"checking absolute name of <stdio.h>... \" >&6; }\nif ${gl_cv_next_stdio_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdio.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'stdio.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_stdio_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_stdio_h\n           gl_cv_next_stdio_h='\"'$gl_header'\"'\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_stdio_h\" >&5\n$as_echo \"$gl_cv_next_stdio_h\" >&6; }\n     fi\n     NEXT_STDIO_H=$gl_cv_next_stdio_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'stdio.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_stdio_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_STDIO_H=$gl_next_as_first_directive\n\n\n\n\n\n        { $as_echo \"$as_me:${as_lineno-$LINENO}: checking which flavor of printf attribute matches inttypes macros\" >&5\n$as_echo_n \"checking which flavor of printf attribute matches inttypes macros... \" >&6; }\nif ${gl_cv_func_printf_attribute_flavor+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n       #define __STDC_FORMAT_MACROS 1\n       #include <stdio.h>\n       #include <inttypes.h>\n       /* For non-mingw systems, compilation will trivially succeed.\n          For mingw, compilation will succeed for older mingw (system\n          printf, \"I64d\") and fail for newer mingw (gnu printf, \"lld\"). */\n       #if ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) && \\\n         (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n       extern char PRIdMAX_probe[sizeof PRIdMAX == sizeof \"I64d\" ? 1 : -1];\n       #endif\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_func_printf_attribute_flavor=system\nelse\n  gl_cv_func_printf_attribute_flavor=gnu\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_printf_attribute_flavor\" >&5\n$as_echo \"$gl_cv_func_printf_attribute_flavor\" >&6; }\n  if test \"$gl_cv_func_printf_attribute_flavor\" = gnu; then\n\n$as_echo \"#define GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU 1\" >>confdefs.h\n\n  fi\n\n      GNULIB_FSCANF=1\n\n\ncat >>confdefs.h <<_ACEOF\n#define GNULIB_FSCANF 1\n_ACEOF\n\n\n  GNULIB_SCANF=1\n\n\ncat >>confdefs.h <<_ACEOF\n#define GNULIB_SCANF 1\n_ACEOF\n\n\n  GNULIB_FGETC=1\n  GNULIB_GETC=1\n  GNULIB_GETCHAR=1\n  GNULIB_FGETS=1\n  GNULIB_FREAD=1\n\n\n      GNULIB_FPRINTF=1\n  GNULIB_PRINTF=1\n  GNULIB_VFPRINTF=1\n  GNULIB_VPRINTF=1\n  GNULIB_FPUTC=1\n  GNULIB_PUTC=1\n  GNULIB_PUTCHAR=1\n  GNULIB_FPUTS=1\n  GNULIB_PUTS=1\n  GNULIB_FWRITE=1\n\n\n\n\n    if test $gl_cv_header_signal_h_SIGPIPE != yes; then\n      REPLACE_STDIO_WRITE_FUNCS=1\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS stdio-write.$ac_objext\"\n\n    fi\n\n\n\n\n    for gl_func in dprintf fpurge fseeko ftello getdelim getline gets pclose popen     renameat snprintf tmpfile vdprintf vsnprintf; do\n    as_gl_Symbol=`$as_echo \"gl_cv_have_raw_decl_$gl_func\" | $as_tr_sh`\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro\" >&5\n$as_echo_n \"checking whether $gl_func is declared without a macro... \" >&6; }\nif eval \\${$as_gl_Symbol+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdio.h>\n\nint\nmain ()\n{\n#undef $gl_func\n  (void) $gl_func;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$as_gl_Symbol=yes\"\nelse\n  eval \"$as_gl_Symbol=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$as_gl_Symbol\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    if eval test \\\"x\\$\"$as_gl_Symbol\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_RAW_DECL_$gl_func\" | $as_tr_cpp` 1\n_ACEOF\n\n                     eval ac_cv_have_decl_$gl_func=yes\nfi\n      done\n\n\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_stdlib_h='<'stdlib.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <stdlib.h>\" >&5\n$as_echo_n \"checking absolute name of <stdlib.h>... \" >&6; }\nif ${gl_cv_next_stdlib_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdlib.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'stdlib.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_stdlib_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_stdlib_h\n           gl_cv_next_stdlib_h='\"'$gl_header'\"'\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_stdlib_h\" >&5\n$as_echo \"$gl_cv_next_stdlib_h\" >&6; }\n     fi\n     NEXT_STDLIB_H=$gl_cv_next_stdlib_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'stdlib.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_stdlib_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_STDLIB_H=$gl_next_as_first_directive\n\n\n\n\n\n\n    for gl_func in _Exit atoll canonicalize_file_name getloadavg getsubopt grantpt     initstate initstate_r mkdtemp mkostemp mkostemps mkstemp mkstemps     posix_openpt ptsname ptsname_r qsort_r random random_r realpath rpmatch     secure_getenv setenv setstate setstate_r srandom srandom_r     strtod strtoll strtoull unlockpt unsetenv; do\n    as_gl_Symbol=`$as_echo \"gl_cv_have_raw_decl_$gl_func\" | $as_tr_sh`\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro\" >&5\n$as_echo_n \"checking whether $gl_func is declared without a macro... \" >&6; }\nif eval \\${$as_gl_Symbol+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdlib.h>\n#if HAVE_SYS_LOADAVG_H\n# include <sys/loadavg.h>\n#endif\n#if HAVE_RANDOM_H\n# include <random.h>\n#endif\n\nint\nmain ()\n{\n#undef $gl_func\n  (void) $gl_func;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$as_gl_Symbol=yes\"\nelse\n  eval \"$as_gl_Symbol=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$as_gl_Symbol\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    if eval test \\\"x\\$\"$as_gl_Symbol\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_RAW_DECL_$gl_func\" | $as_tr_cpp` 1\n_ACEOF\n\n                     eval ac_cv_have_decl_$gl_func=yes\nfi\n      done\n\n\n\n\n\n\n\n  if test \"$ERRNO_H:$REPLACE_STRERROR_0\" = :0; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for working strerror function\" >&5\n$as_echo_n \"checking for working strerror function... \" >&6; }\nif ${gl_cv_func_working_strerror+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test \"$cross_compiling\" = yes; then :\n  case \"$host_os\" in\n                   # Guess yes on glibc systems.\n           *-gnu*) gl_cv_func_working_strerror=\"guessing yes\" ;;\n                   # If we don't know, assume the worst.\n           *)      gl_cv_func_working_strerror=\"guessing no\" ;;\n         esac\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <string.h>\n\nint\nmain ()\n{\nif (!*strerror (-2)) return 1;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  gl_cv_func_working_strerror=yes\nelse\n  gl_cv_func_working_strerror=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_working_strerror\" >&5\n$as_echo \"$gl_cv_func_working_strerror\" >&6; }\n    case \"$gl_cv_func_working_strerror\" in\n      *yes) ;;\n      *)\n                        REPLACE_STRERROR=1\n        ;;\n    esac\n\n  else\n            REPLACE_STRERROR=1\n  fi\n\n  if test $REPLACE_STRERROR = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS strerror.$ac_objext\"\n\n  fi\n\n\ncat >>confdefs.h <<_ACEOF\n#define GNULIB_STRERROR 1\n_ACEOF\n\n\n\n\n\n\n\n          GNULIB_STRERROR=1\n\n\n\n\n\n$as_echo \"#define GNULIB_TEST_STRERROR 1\" >>confdefs.h\n\n\n\n\n\n  if test -n \"$ERRNO_H\" || test $REPLACE_STRERROR_0 = 1; then\n\n\n\n\n\n\n\n\n  gl_LIBOBJS=\"$gl_LIBOBJS strerror-override.$ac_objext\"\n\n\n\n\n\n  if test $ac_cv_header_sys_socket_h != yes; then\n                    for ac_header in winsock2.h\ndo :\n  ac_fn_c_check_header_mongrel \"$LINENO\" \"winsock2.h\" \"ac_cv_header_winsock2_h\" \"$ac_includes_default\"\nif test \"x$ac_cv_header_winsock2_h\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_WINSOCK2_H 1\n_ACEOF\n\nfi\n\ndone\n\n  fi\n  if test \"$ac_cv_header_winsock2_h\" = yes; then\n    HAVE_WINSOCK2_H=1\n    UNISTD_H_HAVE_WINSOCK2_H=1\n    SYS_IOCTL_H_HAVE_WINSOCK2_H=1\n  else\n    HAVE_WINSOCK2_H=0\n  fi\n\n\n  fi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_sys_stat_h='<'sys/stat.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/stat.h>\" >&5\n$as_echo_n \"checking absolute name of <sys/stat.h>... \" >&6; }\nif ${gl_cv_next_sys_stat_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n             if test $ac_cv_header_sys_stat_h = yes; then\n\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/stat.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'sys/stat.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_sys_stat_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_sys_stat_h\n           gl_cv_next_sys_stat_h='\"'$gl_header'\"'\n          else\n               gl_cv_next_sys_stat_h='<'sys/stat.h'>'\n             fi\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_sys_stat_h\" >&5\n$as_echo \"$gl_cv_next_sys_stat_h\" >&6; }\n     fi\n     NEXT_SYS_STAT_H=$gl_cv_next_sys_stat_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'sys/stat.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_sys_stat_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H=$gl_next_as_first_directive\n\n\n\n\n\n\n\n\n\n\n\n  if test $WINDOWS_64_BIT_ST_SIZE = 1; then\n\n$as_echo \"#define _GL_WINDOWS_64_BIT_ST_SIZE 1\" >>confdefs.h\n\n  fi\n\n      ac_fn_c_check_type \"$LINENO\" \"nlink_t\" \"ac_cv_type_nlink_t\" \"#include <sys/types.h>\n     #include <sys/stat.h>\n\"\nif test \"x$ac_cv_type_nlink_t\" = xyes; then :\n\nelse\n\n$as_echo \"#define nlink_t int\" >>confdefs.h\n\nfi\n\n\n\n    for gl_func in fchmodat fstat fstatat futimens lchmod lstat mkdirat mkfifo mkfifoat     mknod mknodat stat utimensat; do\n    as_gl_Symbol=`$as_echo \"gl_cv_have_raw_decl_$gl_func\" | $as_tr_sh`\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro\" >&5\n$as_echo_n \"checking whether $gl_func is declared without a macro... \" >&6; }\nif eval \\${$as_gl_Symbol+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/stat.h>\n\nint\nmain ()\n{\n#undef $gl_func\n  (void) $gl_func;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$as_gl_Symbol=yes\"\nelse\n  eval \"$as_gl_Symbol=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$as_gl_Symbol\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    if eval test \\\"x\\$\"$as_gl_Symbol\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_RAW_DECL_$gl_func\" | $as_tr_cpp` 1\n_ACEOF\n\n                     eval ac_cv_have_decl_$gl_func=yes\nfi\n      done\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n     if test $gl_cv_have_include_next = yes; then\n       gl_cv_next_unistd_h='<'unistd.h'>'\n     else\n       { $as_echo \"$as_me:${as_lineno-$LINENO}: checking absolute name of <unistd.h>\" >&5\n$as_echo_n \"checking absolute name of <unistd.h>... \" >&6; }\nif ${gl_cv_next_unistd_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n             if test $ac_cv_header_unistd_h = yes; then\n\n\n\n\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <unistd.h>\n_ACEOF\n                case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\n\n  case \"$host_os\" in\n    mingw*)\n                                          gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n      gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo 'unistd.h' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\n\n        gl_cv_absolute_unistd_h=`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&5 |\n  sed -n \"$gl_absolute_header_sed\"`\n\n           gl_header=$gl_cv_absolute_unistd_h\n           gl_cv_next_unistd_h='\"'$gl_header'\"'\n          else\n               gl_cv_next_unistd_h='<'unistd.h'>'\n             fi\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_unistd_h\" >&5\n$as_echo \"$gl_cv_next_unistd_h\" >&6; }\n     fi\n     NEXT_UNISTD_H=$gl_cv_next_unistd_h\n\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'unistd.h'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=$gl_cv_next_unistd_h\n     fi\n     NEXT_AS_FIRST_DIRECTIVE_UNISTD_H=$gl_next_as_first_directive\n\n\n\n\n  if test $ac_cv_header_unistd_h = yes; then\n    HAVE_UNISTD_H=1\n  else\n    HAVE_UNISTD_H=0\n  fi\n\n\n\n\n\n\n\n    for gl_func in chdir chown dup dup2 dup3 environ euidaccess faccessat fchdir fchownat     fdatasync fsync ftruncate getcwd getdomainname getdtablesize getgroups     gethostname getlogin getlogin_r getpagesize     getusershell setusershell endusershell     group_member isatty lchown link linkat lseek pipe pipe2 pread pwrite     readlink readlinkat rmdir sethostname sleep symlink symlinkat ttyname_r     unlink unlinkat usleep; do\n    as_gl_Symbol=`$as_echo \"gl_cv_have_raw_decl_$gl_func\" | $as_tr_sh`\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro\" >&5\n$as_echo_n \"checking whether $gl_func is declared without a macro... \" >&6; }\nif eval \\${$as_gl_Symbol+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#if HAVE_UNISTD_H\n# include <unistd.h>\n#endif\n/* Some systems declare various items in the wrong headers.  */\n#if !(defined __GLIBC__ && !defined __UCLIBC__)\n# include <fcntl.h>\n# include <stdio.h>\n# include <stdlib.h>\n# if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n#  include <io.h>\n# endif\n#endif\n\nint\nmain ()\n{\n#undef $gl_func\n  (void) $gl_func;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$as_gl_Symbol=yes\"\nelse\n  eval \"$as_gl_Symbol=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$as_gl_Symbol\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n    if eval test \\\"x\\$\"$as_gl_Symbol\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_RAW_DECL_$gl_func\" | $as_tr_cpp` 1\n_ACEOF\n\n                     eval ac_cv_have_decl_$gl_func=yes\nfi\n      done\n\n\n\n\n      if  { test \"$HAVE_LIBUNISTRING\" != yes \\\n    || {\n\n\n\n            test $LIBUNISTRING_VERSION_MAJOR -lt 0 \\\n            || { test $LIBUNISTRING_VERSION_MAJOR -eq 0 \\\n                 && { test $LIBUNISTRING_VERSION_MINOR -lt 9 \\\n                      || { test $LIBUNISTRING_VERSION_MINOR -eq 9 \\\n                           && test $LIBUNISTRING_VERSION_SUBMINOR -lt 4\n                         }\n                    }\n               }\n\n\n\n\n       }\n  }; then\n    LIBUNISTRING_UNITYPES_H='unitypes.h'\n  else\n    LIBUNISTRING_UNITYPES_H=\n  fi\n\n\n\n\n      if  { test \"$HAVE_LIBUNISTRING\" != yes \\\n    || {\n\n\n\n            test $LIBUNISTRING_VERSION_MAJOR -lt 0 \\\n            || { test $LIBUNISTRING_VERSION_MAJOR -eq 0 \\\n                 && { test $LIBUNISTRING_VERSION_MINOR -lt 9 \\\n                      || { test $LIBUNISTRING_VERSION_MINOR -eq 9 \\\n                           && test $LIBUNISTRING_VERSION_SUBMINOR -lt 4\n                         }\n                    }\n               }\n\n\n\n\n       }\n  }; then\n    LIBUNISTRING_UNIWIDTH_H='uniwidth.h'\n  else\n    LIBUNISTRING_UNIWIDTH_H=\n  fi\n\n\n\n\n       if  { test \"$HAVE_LIBUNISTRING\" != yes \\\n    || {\n\n\n\n            test $LIBUNISTRING_VERSION_MAJOR -lt 0 \\\n            || { test $LIBUNISTRING_VERSION_MAJOR -eq 0 \\\n                 && { test $LIBUNISTRING_VERSION_MINOR -lt 9 \\\n                      || { test $LIBUNISTRING_VERSION_MINOR -eq 9 \\\n                           && test $LIBUNISTRING_VERSION_SUBMINOR -lt 6\n                         }\n                    }\n               }\n\n\n\n\n       }\n  }; then\n  LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE=\n  LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_FALSE='#'\nelse\n  LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE='#'\n  LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_FALSE=\nfi\n\n\n\n\n$as_echo \"#define USE_UNLOCKED_IO 1\" >>confdefs.h\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  # End of code from modules\n\n\n\n\n\n\n\n\n\n  gltests_libdeps=\n  gltests_ltlibdeps=\n\n\n\n\n\n\n\n\n\n  gl_source_base='tests'\n  gltests_WITNESS=IN_`echo \"${PACKAGE-$PACKAGE_TARNAME}\" | LC_ALL=C tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | LC_ALL=C sed -e 's/[^A-Z0-9_]/_/g'`_GNULIB_TESTS\n\n  gl_module_indicator_condition=$gltests_WITNESS\n\n\n\n\n\n\n\n\n\n  LIBICRT_LIBDEPS=\"$gl_libdeps\"\n\n  LIBICRT_LTLIBDEPS=\"$gl_ltlibdeps\"\n\n\n\n\n\n\n\n\nif test \"$enable_shared\" = yes; then\n  case \"$host_os\" in\n    mingw* | cygwin*) is_woe32dll=yes ;;\n    *) is_woe32dll=no ;;\n  esac\nelse\n  is_woe32dll=no\nfi\nWOE32DLL=$is_woe32dll\n\nif test $is_woe32dll = yes; then\n  DLL_VARIABLE='__declspec (dllimport)'\nelse\n  DLL_VARIABLE=\nfi\n\n\n\n\n\n\nsubdirs=\"$subdirs libcharset\"\n\nsubdirs=\"$subdirs preload\"\n\nac_config_files=\"$ac_config_files Makefile\"\n\nac_config_files=\"$ac_config_files lib/Makefile\"\n\nac_config_files=\"$ac_config_files srclib/Makefile\"\n\nac_config_files=\"$ac_config_files src/Makefile\"\n\nac_config_files=\"$ac_config_files po/Makefile.in\"\n\nac_config_files=\"$ac_config_files man/Makefile\"\n\nif test -d \"${srcdir}/tests\"; then\n  ac_config_files=\"$ac_config_files tests/Makefile\"\n\nfi\nac_config_files=\"$ac_config_files include/iconv.h:include/iconv.h.build.in\"\n\nac_config_files=\"$ac_config_files include/iconv.h.inst:include/iconv.h.in\"\n\ncat >confcache <<\\_ACEOF\n# This file is a shell script that caches the results of configure\n# tests run on this system so they can be shared between configure\n# scripts and configure runs, see configure's option --config-cache.\n# It is not useful on other systems.  If it contains results you don't\n# want to keep, you may remove or edit it.\n#\n# config.status only pays attention to the cache file if you give it\n# the --recheck option to rerun configure.\n#\n# `ac_cv_env_foo' variables (set or unset) will be overridden when\n# loading this file, other *unset* `ac_cv_foo' will be assigned the\n# following values.\n\n_ACEOF\n\n# The following way of writing the cache mishandles newlines in values,\n# but we know of no workaround that is simple, portable, and efficient.\n# So, we kill variables containing newlines.\n# Ultrix sh set writes to stderr and can't be redirected directly,\n# and sets the high bit in the cache file unless we assign to the vars.\n(\n  for ac_var in `(set) 2>&1 | sed -n 's/^\\([a-zA-Z_][a-zA-Z0-9_]*\\)=.*/\\1/p'`; do\n    eval ac_val=\\$$ac_var\n    case $ac_val in #(\n    *${as_nl}*)\n      case $ac_var in #(\n      *_cv_*) { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline\" >&5\n$as_echo \"$as_me: WARNING: cache variable $ac_var contains a newline\" >&2;} ;;\n      esac\n      case $ac_var in #(\n      _ | IFS | as_nl) ;; #(\n      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(\n      *) { eval $ac_var=; unset $ac_var;} ;;\n      esac ;;\n    esac\n  done\n\n  (set) 2>&1 |\n    case $as_nl`(ac_space=' '; set) 2>&1` in #(\n    *${as_nl}ac_space=\\ *)\n      # `set' does not quote correctly, so add quotes: double-quote\n      # substitution turns \\\\\\\\ into \\\\, and sed turns \\\\ into \\.\n      sed -n \\\n\t\"s/'/'\\\\\\\\''/g;\n\t  s/^\\\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\\\)=\\\\(.*\\\\)/\\\\1='\\\\2'/p\"\n      ;; #(\n    *)\n      # `set' quotes correctly as required by POSIX, so do not add quotes.\n      sed -n \"/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p\"\n      ;;\n    esac |\n    sort\n) |\n  sed '\n     /^ac_cv_env_/b end\n     t clear\n     :clear\n     s/^\\([^=]*\\)=\\(.*[{}].*\\)$/test \"${\\1+set}\" = set || &/\n     t end\n     s/^\\([^=]*\\)=\\(.*\\)$/\\1=${\\1=\\2}/\n     :end' >>confcache\nif diff \"$cache_file\" confcache >/dev/null 2>&1; then :; else\n  if test -w \"$cache_file\"; then\n    if test \"x$cache_file\" != \"x/dev/null\"; then\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: updating cache $cache_file\" >&5\n$as_echo \"$as_me: updating cache $cache_file\" >&6;}\n      if test ! -f \"$cache_file\" || test -h \"$cache_file\"; then\n\tcat confcache >\"$cache_file\"\n      else\n        case $cache_file in #(\n        */* | ?:*)\n\t  mv -f confcache \"$cache_file\"$$ &&\n\t  mv -f \"$cache_file\"$$ \"$cache_file\" ;; #(\n        *)\n\t  mv -f confcache \"$cache_file\" ;;\n\tesac\n      fi\n    fi\n  else\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file\" >&5\n$as_echo \"$as_me: not updating unwritable cache $cache_file\" >&6;}\n  fi\nfi\nrm -f confcache\n\ntest \"x$prefix\" = xNONE && prefix=$ac_default_prefix\n# Let make expand exec_prefix.\ntest \"x$exec_prefix\" = xNONE && exec_prefix='${prefix}'\n\nDEFS=-DHAVE_CONFIG_H\n\nac_libobjs=\nac_ltlibobjs=\nU=\nfor ac_i in : $LIBOBJS; do test \"x$ac_i\" = x: && continue\n  # 1. Remove the extension, and $U if already installed.\n  ac_script='s/\\$U\\././;s/\\.o$//;s/\\.obj$//'\n  ac_i=`$as_echo \"$ac_i\" | sed \"$ac_script\"`\n  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR\n  #    will be set to the directory where LIBOBJS objects are built.\n  as_fn_append ac_libobjs \" \\${LIBOBJDIR}$ac_i\\$U.$ac_objext\"\n  as_fn_append ac_ltlibobjs \" \\${LIBOBJDIR}$ac_i\"'$U.lo'\ndone\nLIBOBJS=$ac_libobjs\n\nLTLIBOBJS=$ac_ltlibobjs\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure\" >&5\n$as_echo_n \"checking that generated files are newer than configure... \" >&6; }\n   if test -n \"$am_sleep_pid\"; then\n     # Hide warnings about reused PIDs.\n     wait $am_sleep_pid 2>/dev/null\n   fi\n   { $as_echo \"$as_me:${as_lineno-$LINENO}: result: done\" >&5\n$as_echo \"done\" >&6; }\n if test -n \"$EXEEXT\"; then\n  am__EXEEXT_TRUE=\n  am__EXEEXT_FALSE='#'\nelse\n  am__EXEEXT_TRUE='#'\n  am__EXEEXT_FALSE=\nfi\n\nif test -z \"${AMDEP_TRUE}\" && test -z \"${AMDEP_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"AMDEP\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${am__fastdepCC_TRUE}\" && test -z \"${am__fastdepCC_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"am__fastdepCC\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${RELOCATABLE_VIA_LD_TRUE}\" && test -z \"${RELOCATABLE_VIA_LD_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"RELOCATABLE_VIA_LD\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${RELOCATABLE_VIA_WRAPPER_TRUE}\" && test -z \"${RELOCATABLE_VIA_WRAPPER_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"RELOCATABLE_VIA_WRAPPER\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${GL_COND_LIBTOOL_TRUE}\" && test -z \"${GL_COND_LIBTOOL_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"GL_COND_LIBTOOL\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${GL_GENERATE_ALLOCA_H_TRUE}\" && test -z \"${GL_GENERATE_ALLOCA_H_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"GL_GENERATE_ALLOCA_H\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${GL_GENERATE_ERRNO_H_TRUE}\" && test -z \"${GL_GENERATE_ERRNO_H_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"GL_GENERATE_ERRNO_H\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${GL_GENERATE_LIMITS_H_TRUE}\" && test -z \"${GL_GENERATE_LIMITS_H_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"GL_GENERATE_LIMITS_H\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${GL_GENERATE_STDBOOL_H_TRUE}\" && test -z \"${GL_GENERATE_STDBOOL_H_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"GL_GENERATE_STDBOOL_H\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${GL_GENERATE_STDDEF_H_TRUE}\" && test -z \"${GL_GENERATE_STDDEF_H_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"GL_GENERATE_STDDEF_H\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${GL_GENERATE_LIMITS_H_TRUE}\" && test -z \"${GL_GENERATE_LIMITS_H_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"GL_GENERATE_LIMITS_H\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${GL_GENERATE_STDINT_H_TRUE}\" && test -z \"${GL_GENERATE_STDINT_H_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"GL_GENERATE_STDINT_H\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\nif test -z \"${LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE}\" && test -z \"${LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_FALSE}\"; then\n  as_fn_error $? \"conditional \\\"LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" \"$LINENO\" 5\nfi\n\n    gl_libobjs=\n    gl_ltlibobjs=\n    if test -n \"$gl_LIBOBJS\"; then\n      # Remove the extension.\n      sed_drop_objext='s/\\.o$//;s/\\.obj$//'\n      for i in `for i in $gl_LIBOBJS; do echo \"$i\"; done | sed -e \"$sed_drop_objext\" | sort | uniq`; do\n        gl_libobjs=\"$gl_libobjs $i.$ac_objext\"\n        gl_ltlibobjs=\"$gl_ltlibobjs $i.lo\"\n      done\n    fi\n    gl_LIBOBJS=$gl_libobjs\n\n    gl_LTLIBOBJS=$gl_ltlibobjs\n\n\n\n    gltests_libobjs=\n    gltests_ltlibobjs=\n    if test -n \"$gltests_LIBOBJS\"; then\n      # Remove the extension.\n      sed_drop_objext='s/\\.o$//;s/\\.obj$//'\n      for i in `for i in $gltests_LIBOBJS; do echo \"$i\"; done | sed -e \"$sed_drop_objext\" | sort | uniq`; do\n        gltests_libobjs=\"$gltests_libobjs $i.$ac_objext\"\n        gltests_ltlibobjs=\"$gltests_ltlibobjs $i.lo\"\n      done\n    fi\n    gltests_LIBOBJS=$gltests_libobjs\n\n    gltests_LTLIBOBJS=$gltests_ltlibobjs\n\n\n\n: \"${CONFIG_STATUS=./config.status}\"\nac_write_fail=0\nac_clean_files_save=$ac_clean_files\nac_clean_files=\"$ac_clean_files $CONFIG_STATUS\"\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS\" >&5\n$as_echo \"$as_me: creating $CONFIG_STATUS\" >&6;}\nas_write_fail=0\ncat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1\n#! $SHELL\n# Generated by $as_me.\n# Run this file to recreate the current configuration.\n# Compiler output produced by configure, useful for debugging\n# configure, is in config.log if it exists.\n\ndebug=false\nac_cs_recheck=false\nac_cs_silent=false\n\nSHELL=\\${CONFIG_SHELL-$SHELL}\nexport SHELL\n_ASEOF\ncat >>$CONFIG_STATUS <<\\_ASEOF || as_write_fail=1\n## -------------------- ##\n## M4sh Initialization. ##\n## -------------------- ##\n\n# Be more Bourne compatible\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\n\nas_nl='\n'\nexport as_nl\n# Printing a long string crashes Solaris 7 /usr/bin/printf.\nas_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo\n# Prefer a ksh shell builtin over an external printf program on Solaris,\n# but without wasting forks for bash or zsh.\nif test -z \"$BASH_VERSION$ZSH_VERSION\" \\\n    && (test \"X`print -r -- $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='print -r --'\n  as_echo_n='print -rn --'\nelif (test \"X`printf %s $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='printf %s\\n'\n  as_echo_n='printf %s'\nelse\n  if test \"X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`\" = \"X-n $as_echo\"; then\n    as_echo_body='eval /usr/ucb/echo -n \"$1$as_nl\"'\n    as_echo_n='/usr/ucb/echo -n'\n  else\n    as_echo_body='eval expr \"X$1\" : \"X\\\\(.*\\\\)\"'\n    as_echo_n_body='eval\n      arg=$1;\n      case $arg in #(\n      *\"$as_nl\"*)\n\texpr \"X$arg\" : \"X\\\\(.*\\\\)$as_nl\";\n\targ=`expr \"X$arg\" : \".*$as_nl\\\\(.*\\\\)\"`;;\n      esac;\n      expr \"X$arg\" : \"X\\\\(.*\\\\)\" | tr -d \"$as_nl\"\n    '\n    export as_echo_n_body\n    as_echo_n='sh -c $as_echo_n_body as_echo'\n  fi\n  export as_echo_body\n  as_echo='sh -c $as_echo_body as_echo'\nfi\n\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n# IFS\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent editors from complaining about space-tab.\n# (If _AS_PATH_WALK were called with IFS unset, it would disable word\n# splitting by setting IFS to empty value.)\nIFS=\" \"\"\t$as_nl\"\n\n# Find who we are.  Look in the path if we contain no directory separator.\nas_myself=\ncase $0 in #((\n  *[\\\\/]* ) as_myself=$0 ;;\n  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    test -r \"$as_dir/$0\" && as_myself=$as_dir/$0 && break\n  done\nIFS=$as_save_IFS\n\n     ;;\nesac\n# We did not find ourselves, most probably we were run as `sh COMMAND'\n# in which case we are not to be found in the path.\nif test \"x$as_myself\" = x; then\n  as_myself=$0\nfi\nif test ! -f \"$as_myself\"; then\n  $as_echo \"$as_myself: error: cannot find myself; rerun with an absolute file name\" >&2\n  exit 1\nfi\n\n# Unset variables that we do not need and which cause bugs (e.g. in\n# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the \"|| exit 1\"\n# suppresses any \"Segmentation fault\" message there.  '((' could\n# trigger a bug in pdksh 5.2.14.\nfor as_var in BASH_ENV ENV MAIL MAILPATH\ndo eval test x\\${$as_var+set} = xset \\\n  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :\ndone\nPS1='$ '\nPS2='> '\nPS4='+ '\n\n# NLS nuisances.\nLC_ALL=C\nexport LC_ALL\nLANGUAGE=C\nexport LANGUAGE\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n\n# as_fn_error STATUS ERROR [LINENO LOG_FD]\n# ----------------------------------------\n# Output \"`basename $0`: error: ERROR\" to stderr. If LINENO and LOG_FD are\n# provided, also output the error to LOG_FD, referencing LINENO. Then exit the\n# script with STATUS, using 1 if that was 0.\nas_fn_error ()\n{\n  as_status=$1; test $as_status -eq 0 && as_status=1\n  if test \"$4\"; then\n    as_lineno=${as_lineno-\"$3\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n    $as_echo \"$as_me:${as_lineno-$LINENO}: error: $2\" >&$4\n  fi\n  $as_echo \"$as_me: error: $2\" >&2\n  as_fn_exit $as_status\n} # as_fn_error\n\n\n# as_fn_set_status STATUS\n# -----------------------\n# Set $? to STATUS, without forking.\nas_fn_set_status ()\n{\n  return $1\n} # as_fn_set_status\n\n# as_fn_exit STATUS\n# -----------------\n# Exit the shell with STATUS, even in a \"trap 0\" or \"set -e\" context.\nas_fn_exit ()\n{\n  set +e\n  as_fn_set_status $1\n  exit $1\n} # as_fn_exit\n\n# as_fn_unset VAR\n# ---------------\n# Portably unset VAR.\nas_fn_unset ()\n{\n  { eval $1=; unset $1;}\n}\nas_unset=as_fn_unset\n# as_fn_append VAR VALUE\n# ----------------------\n# Append the text in VALUE to the end of the definition contained in VAR. Take\n# advantage of any shell optimizations that allow amortized linear growth over\n# repeated appends, instead of the typical quadratic growth present in naive\n# implementations.\nif (eval \"as_var=1; as_var+=2; test x\\$as_var = x12\") 2>/dev/null; then :\n  eval 'as_fn_append ()\n  {\n    eval $1+=\\$2\n  }'\nelse\n  as_fn_append ()\n  {\n    eval $1=\\$$1\\$2\n  }\nfi # as_fn_append\n\n# as_fn_arith ARG...\n# ------------------\n# Perform arithmetic evaluation on the ARGs, and store the result in the\n# global $as_val. Take advantage of shells that can avoid forks. The arguments\n# must be portable across $(()) and expr.\nif (eval \"test \\$(( 1 + 1 )) = 2\") 2>/dev/null; then :\n  eval 'as_fn_arith ()\n  {\n    as_val=$(( $* ))\n  }'\nelse\n  as_fn_arith ()\n  {\n    as_val=`expr \"$@\" || test $? -eq 1`\n  }\nfi # as_fn_arith\n\n\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nif (basename -- /) >/dev/null 2>&1 && test \"X`basename -- / 2>&1`\" = \"X/\"; then\n  as_basename=basename\nelse\n  as_basename=false\nfi\n\nif (as_dir=`dirname -- /` && test \"X$as_dir\" = X/) >/dev/null 2>&1; then\n  as_dirname=dirname\nelse\n  as_dirname=false\nfi\n\nas_me=`$as_basename -- \"$0\" ||\n$as_expr X/\"$0\" : '.*/\\([^/][^/]*\\)/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X/\"$0\" |\n    sed '/^.*\\/\\([^/][^/]*\\)\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n\n# Avoid depending upon Character Ranges.\nas_cr_letters='abcdefghijklmnopqrstuvwxyz'\nas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nas_cr_Letters=$as_cr_letters$as_cr_LETTERS\nas_cr_digits='0123456789'\nas_cr_alnum=$as_cr_Letters$as_cr_digits\n\nECHO_C= ECHO_N= ECHO_T=\ncase `echo -n x` in #(((((\n-n*)\n  case `echo 'xy\\c'` in\n  *c*) ECHO_T='\t';;\t# ECHO_T is single tab character.\n  xy)  ECHO_C='\\c';;\n  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null\n       ECHO_T='\t';;\n  esac;;\n*)\n  ECHO_N='-n';;\nesac\n\nrm -f conf$$ conf$$.exe conf$$.file\nif test -d conf$$.dir; then\n  rm -f conf$$.dir/conf$$.file\nelse\n  rm -f conf$$.dir\n  mkdir conf$$.dir 2>/dev/null\nfi\nif (echo >conf$$.file) 2>/dev/null; then\n  if ln -s conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s='ln -s'\n    # ... but there are two gotchas:\n    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.\n    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.\n    # In both cases, we have to default to `cp -pR'.\n    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||\n      as_ln_s='cp -pR'\n  elif ln conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s=ln\n  else\n    as_ln_s='cp -pR'\n  fi\nelse\n  as_ln_s='cp -pR'\nfi\nrm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file\nrmdir conf$$.dir 2>/dev/null\n\n\n# as_fn_mkdir_p\n# -------------\n# Create \"$as_dir\" as a directory, including parents if necessary.\nas_fn_mkdir_p ()\n{\n\n  case $as_dir in #(\n  -*) as_dir=./$as_dir;;\n  esac\n  test -d \"$as_dir\" || eval $as_mkdir_p || {\n    as_dirs=\n    while :; do\n      case $as_dir in #(\n      *\\'*) as_qdir=`$as_echo \"$as_dir\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; #'(\n      *) as_qdir=$as_dir;;\n      esac\n      as_dirs=\"'$as_qdir' $as_dirs\"\n      as_dir=`$as_dirname -- \"$as_dir\" ||\n$as_expr X\"$as_dir\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_dir\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_dir\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      test -d \"$as_dir\" && break\n    done\n    test -z \"$as_dirs\" || eval \"mkdir $as_dirs\"\n  } || test -d \"$as_dir\" || as_fn_error $? \"cannot create directory $as_dir\"\n\n\n} # as_fn_mkdir_p\nif mkdir -p . 2>/dev/null; then\n  as_mkdir_p='mkdir -p \"$as_dir\"'\nelse\n  test -d ./-p && rmdir ./-p\n  as_mkdir_p=false\nfi\n\n\n# as_fn_executable_p FILE\n# -----------------------\n# Test if FILE is an executable regular file.\nas_fn_executable_p ()\n{\n  test -f \"$1\" && test -x \"$1\"\n} # as_fn_executable_p\nas_test_x='test -x'\nas_executable_p=as_fn_executable_p\n\n# Sed expression to map a string onto a valid CPP name.\nas_tr_cpp=\"eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'\"\n\n# Sed expression to map a string onto a valid variable name.\nas_tr_sh=\"eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'\"\n\n\nexec 6>&1\n## ----------------------------------- ##\n## Main body of $CONFIG_STATUS script. ##\n## ----------------------------------- ##\n_ASEOF\ntest $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n# Save the log message, to keep $0 and so on meaningful, and to\n# report actual input values of CONFIG_FILES etc. instead of their\n# values after options handling.\nac_log=\"\nThis file was extended by libiconv $as_me 1.15, which was\ngenerated by GNU Autoconf 2.69.  Invocation command line was\n\n  CONFIG_FILES    = $CONFIG_FILES\n  CONFIG_HEADERS  = $CONFIG_HEADERS\n  CONFIG_LINKS    = $CONFIG_LINKS\n  CONFIG_COMMANDS = $CONFIG_COMMANDS\n  $ $0 $@\n\non `(hostname || uname -n) 2>/dev/null | sed 1q`\n\"\n\n_ACEOF\n\ncase $ac_config_files in *\"\n\"*) set x $ac_config_files; shift; ac_config_files=$*;;\nesac\n\ncase $ac_config_headers in *\"\n\"*) set x $ac_config_headers; shift; ac_config_headers=$*;;\nesac\n\n\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n# Files that config.status was made for.\nconfig_files=\"$ac_config_files\"\nconfig_headers=\"$ac_config_headers\"\nconfig_commands=\"$ac_config_commands\"\n\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nac_cs_usage=\"\\\n\\`$as_me' instantiates files and other configuration actions\nfrom templates according to the current configuration.  Unless the files\nand actions are specified as TAGs, all are instantiated by default.\n\nUsage: $0 [OPTION]... [TAG]...\n\n  -h, --help       print this help, then exit\n  -V, --version    print version number and configuration settings, then exit\n      --config     print configuration, then exit\n  -q, --quiet, --silent\n                   do not print progress messages\n  -d, --debug      don't remove temporary files\n      --recheck    update $as_me by reconfiguring in the same conditions\n      --file=FILE[:TEMPLATE]\n                   instantiate the configuration file FILE\n      --header=FILE[:TEMPLATE]\n                   instantiate the configuration header FILE\n\nConfiguration files:\n$config_files\n\nConfiguration headers:\n$config_headers\n\nConfiguration commands:\n$config_commands\n\nReport bugs to the package provider.\"\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\nac_cs_config=\"`$as_echo \"$ac_configure_args\" | sed 's/^ //; s/[\\\\\"\"\\`\\$]/\\\\\\\\&/g'`\"\nac_cs_version=\"\\\\\nlibiconv config.status 1.15\nconfigured by $0, generated by GNU Autoconf 2.69,\n  with options \\\\\"\\$ac_cs_config\\\\\"\n\nCopyright (C) 2012 Free Software Foundation, Inc.\nThis config.status script is free software; the Free Software Foundation\ngives unlimited permission to copy, distribute and modify it.\"\n\nac_pwd='$ac_pwd'\nsrcdir='$srcdir'\nINSTALL='$INSTALL'\nMKDIR_P='$MKDIR_P'\nAWK='$AWK'\ntest -n \"\\$AWK\" || AWK=awk\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n# The default lists apply if the user does not specify any file.\nac_need_defaults=:\nwhile test $# != 0\ndo\n  case $1 in\n  --*=?*)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=`expr \"X$1\" : 'X[^=]*=\\(.*\\)'`\n    ac_shift=:\n    ;;\n  --*=)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=\n    ac_shift=:\n    ;;\n  *)\n    ac_option=$1\n    ac_optarg=$2\n    ac_shift=shift\n    ;;\n  esac\n\n  case $ac_option in\n  # Handling of the options.\n  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)\n    ac_cs_recheck=: ;;\n  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )\n    $as_echo \"$ac_cs_version\"; exit ;;\n  --config | --confi | --conf | --con | --co | --c )\n    $as_echo \"$ac_cs_config\"; exit ;;\n  --debug | --debu | --deb | --de | --d | -d )\n    debug=: ;;\n  --file | --fil | --fi | --f )\n    $ac_shift\n    case $ac_optarg in\n    *\\'*) ac_optarg=`$as_echo \"$ac_optarg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    '') as_fn_error $? \"missing file argument\" ;;\n    esac\n    as_fn_append CONFIG_FILES \" '$ac_optarg'\"\n    ac_need_defaults=false;;\n  --header | --heade | --head | --hea )\n    $ac_shift\n    case $ac_optarg in\n    *\\'*) ac_optarg=`$as_echo \"$ac_optarg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    esac\n    as_fn_append CONFIG_HEADERS \" '$ac_optarg'\"\n    ac_need_defaults=false;;\n  --he | --h)\n    # Conflict between --help and --header\n    as_fn_error $? \"ambiguous option: \\`$1'\nTry \\`$0 --help' for more information.\";;\n  --help | --hel | -h )\n    $as_echo \"$ac_cs_usage\"; exit ;;\n  -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n  | -silent | --silent | --silen | --sile | --sil | --si | --s)\n    ac_cs_silent=: ;;\n\n  # This is an error.\n  -*) as_fn_error $? \"unrecognized option: \\`$1'\nTry \\`$0 --help' for more information.\" ;;\n\n  *) as_fn_append ac_config_targets \" $1\"\n     ac_need_defaults=false ;;\n\n  esac\n  shift\ndone\n\nac_configure_extra_args=\n\nif $ac_cs_silent; then\n  exec 6>/dev/null\n  ac_configure_extra_args=\"$ac_configure_extra_args --silent\"\nfi\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\nif \\$ac_cs_recheck; then\n  set X $SHELL '$0' $ac_configure_args \\$ac_configure_extra_args --no-create --no-recursion\n  shift\n  \\$as_echo \"running CONFIG_SHELL=$SHELL \\$*\" >&6\n  CONFIG_SHELL='$SHELL'\n  export CONFIG_SHELL\n  exec \"\\$@\"\nfi\n\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nexec 5>>config.log\n{\n  echo\n  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX\n## Running $as_me. ##\n_ASBOX\n  $as_echo \"$ac_log\"\n} >&5\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n#\n# INIT-COMMANDS\n#\nAMDEP_TRUE=\"$AMDEP_TRUE\" ac_aux_dir=\"$ac_aux_dir\"\n\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nsed_quote_subst='$sed_quote_subst'\ndouble_quote_subst='$double_quote_subst'\ndelay_variable_subst='$delay_variable_subst'\nmacro_version='`$ECHO \"$macro_version\" | $SED \"$delay_single_quote_subst\"`'\nmacro_revision='`$ECHO \"$macro_revision\" | $SED \"$delay_single_quote_subst\"`'\nenable_static='`$ECHO \"$enable_static\" | $SED \"$delay_single_quote_subst\"`'\nAS='`$ECHO \"$AS\" | $SED \"$delay_single_quote_subst\"`'\nDLLTOOL='`$ECHO \"$DLLTOOL\" | $SED \"$delay_single_quote_subst\"`'\nOBJDUMP='`$ECHO \"$OBJDUMP\" | $SED \"$delay_single_quote_subst\"`'\nenable_shared='`$ECHO \"$enable_shared\" | $SED \"$delay_single_quote_subst\"`'\npic_mode='`$ECHO \"$pic_mode\" | $SED \"$delay_single_quote_subst\"`'\nenable_fast_install='`$ECHO \"$enable_fast_install\" | $SED \"$delay_single_quote_subst\"`'\nshared_archive_member_spec='`$ECHO \"$shared_archive_member_spec\" | $SED \"$delay_single_quote_subst\"`'\nSHELL='`$ECHO \"$SHELL\" | $SED \"$delay_single_quote_subst\"`'\nECHO='`$ECHO \"$ECHO\" | $SED \"$delay_single_quote_subst\"`'\nPATH_SEPARATOR='`$ECHO \"$PATH_SEPARATOR\" | $SED \"$delay_single_quote_subst\"`'\nhost_alias='`$ECHO \"$host_alias\" | $SED \"$delay_single_quote_subst\"`'\nhost='`$ECHO \"$host\" | $SED \"$delay_single_quote_subst\"`'\nhost_os='`$ECHO \"$host_os\" | $SED \"$delay_single_quote_subst\"`'\nbuild_alias='`$ECHO \"$build_alias\" | $SED \"$delay_single_quote_subst\"`'\nbuild='`$ECHO \"$build\" | $SED \"$delay_single_quote_subst\"`'\nbuild_os='`$ECHO \"$build_os\" | $SED \"$delay_single_quote_subst\"`'\nSED='`$ECHO \"$SED\" | $SED \"$delay_single_quote_subst\"`'\nXsed='`$ECHO \"$Xsed\" | $SED \"$delay_single_quote_subst\"`'\nGREP='`$ECHO \"$GREP\" | $SED \"$delay_single_quote_subst\"`'\nEGREP='`$ECHO \"$EGREP\" | $SED \"$delay_single_quote_subst\"`'\nFGREP='`$ECHO \"$FGREP\" | $SED \"$delay_single_quote_subst\"`'\nLD='`$ECHO \"$LD\" | $SED \"$delay_single_quote_subst\"`'\nNM='`$ECHO \"$NM\" | $SED \"$delay_single_quote_subst\"`'\nLN_S='`$ECHO \"$LN_S\" | $SED \"$delay_single_quote_subst\"`'\nmax_cmd_len='`$ECHO \"$max_cmd_len\" | $SED \"$delay_single_quote_subst\"`'\nac_objext='`$ECHO \"$ac_objext\" | $SED \"$delay_single_quote_subst\"`'\nexeext='`$ECHO \"$exeext\" | $SED \"$delay_single_quote_subst\"`'\nlt_unset='`$ECHO \"$lt_unset\" | $SED \"$delay_single_quote_subst\"`'\nlt_SP2NL='`$ECHO \"$lt_SP2NL\" | $SED \"$delay_single_quote_subst\"`'\nlt_NL2SP='`$ECHO \"$lt_NL2SP\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_to_host_file_cmd='`$ECHO \"$lt_cv_to_host_file_cmd\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_to_tool_file_cmd='`$ECHO \"$lt_cv_to_tool_file_cmd\" | $SED \"$delay_single_quote_subst\"`'\nreload_flag='`$ECHO \"$reload_flag\" | $SED \"$delay_single_quote_subst\"`'\nreload_cmds='`$ECHO \"$reload_cmds\" | $SED \"$delay_single_quote_subst\"`'\ndeplibs_check_method='`$ECHO \"$deplibs_check_method\" | $SED \"$delay_single_quote_subst\"`'\nfile_magic_cmd='`$ECHO \"$file_magic_cmd\" | $SED \"$delay_single_quote_subst\"`'\nfile_magic_glob='`$ECHO \"$file_magic_glob\" | $SED \"$delay_single_quote_subst\"`'\nwant_nocaseglob='`$ECHO \"$want_nocaseglob\" | $SED \"$delay_single_quote_subst\"`'\nsharedlib_from_linklib_cmd='`$ECHO \"$sharedlib_from_linklib_cmd\" | $SED \"$delay_single_quote_subst\"`'\nAR='`$ECHO \"$AR\" | $SED \"$delay_single_quote_subst\"`'\nAR_FLAGS='`$ECHO \"$AR_FLAGS\" | $SED \"$delay_single_quote_subst\"`'\narchiver_list_spec='`$ECHO \"$archiver_list_spec\" | $SED \"$delay_single_quote_subst\"`'\nSTRIP='`$ECHO \"$STRIP\" | $SED \"$delay_single_quote_subst\"`'\nRANLIB='`$ECHO \"$RANLIB\" | $SED \"$delay_single_quote_subst\"`'\nold_postinstall_cmds='`$ECHO \"$old_postinstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_postuninstall_cmds='`$ECHO \"$old_postuninstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_cmds='`$ECHO \"$old_archive_cmds\" | $SED \"$delay_single_quote_subst\"`'\nlock_old_archive_extraction='`$ECHO \"$lock_old_archive_extraction\" | $SED \"$delay_single_quote_subst\"`'\nCC='`$ECHO \"$CC\" | $SED \"$delay_single_quote_subst\"`'\nCFLAGS='`$ECHO \"$CFLAGS\" | $SED \"$delay_single_quote_subst\"`'\ncompiler='`$ECHO \"$compiler\" | $SED \"$delay_single_quote_subst\"`'\nGCC='`$ECHO \"$GCC\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_pipe='`$ECHO \"$lt_cv_sys_global_symbol_pipe\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_cdecl='`$ECHO \"$lt_cv_sys_global_symbol_to_cdecl\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_import='`$ECHO \"$lt_cv_sys_global_symbol_to_import\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_c_name_address='`$ECHO \"$lt_cv_sys_global_symbol_to_c_name_address\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO \"$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_nm_interface='`$ECHO \"$lt_cv_nm_interface\" | $SED \"$delay_single_quote_subst\"`'\nnm_file_list_spec='`$ECHO \"$nm_file_list_spec\" | $SED \"$delay_single_quote_subst\"`'\nlt_sysroot='`$ECHO \"$lt_sysroot\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_truncate_bin='`$ECHO \"$lt_cv_truncate_bin\" | $SED \"$delay_single_quote_subst\"`'\nobjdir='`$ECHO \"$objdir\" | $SED \"$delay_single_quote_subst\"`'\nMAGIC_CMD='`$ECHO \"$MAGIC_CMD\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_no_builtin_flag='`$ECHO \"$lt_prog_compiler_no_builtin_flag\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_pic='`$ECHO \"$lt_prog_compiler_pic\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_wl='`$ECHO \"$lt_prog_compiler_wl\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_static='`$ECHO \"$lt_prog_compiler_static\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_prog_compiler_c_o='`$ECHO \"$lt_cv_prog_compiler_c_o\" | $SED \"$delay_single_quote_subst\"`'\nneed_locks='`$ECHO \"$need_locks\" | $SED \"$delay_single_quote_subst\"`'\nMANIFEST_TOOL='`$ECHO \"$MANIFEST_TOOL\" | $SED \"$delay_single_quote_subst\"`'\nDSYMUTIL='`$ECHO \"$DSYMUTIL\" | $SED \"$delay_single_quote_subst\"`'\nNMEDIT='`$ECHO \"$NMEDIT\" | $SED \"$delay_single_quote_subst\"`'\nLIPO='`$ECHO \"$LIPO\" | $SED \"$delay_single_quote_subst\"`'\nOTOOL='`$ECHO \"$OTOOL\" | $SED \"$delay_single_quote_subst\"`'\nOTOOL64='`$ECHO \"$OTOOL64\" | $SED \"$delay_single_quote_subst\"`'\nlibext='`$ECHO \"$libext\" | $SED \"$delay_single_quote_subst\"`'\nshrext_cmds='`$ECHO \"$shrext_cmds\" | $SED \"$delay_single_quote_subst\"`'\nextract_expsyms_cmds='`$ECHO \"$extract_expsyms_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds_need_lc='`$ECHO \"$archive_cmds_need_lc\" | $SED \"$delay_single_quote_subst\"`'\nenable_shared_with_static_runtimes='`$ECHO \"$enable_shared_with_static_runtimes\" | $SED \"$delay_single_quote_subst\"`'\nexport_dynamic_flag_spec='`$ECHO \"$export_dynamic_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\nwhole_archive_flag_spec='`$ECHO \"$whole_archive_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_needs_object='`$ECHO \"$compiler_needs_object\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_new_cmds='`$ECHO \"$old_archive_from_new_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_expsyms_cmds='`$ECHO \"$old_archive_from_expsyms_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds='`$ECHO \"$archive_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_expsym_cmds='`$ECHO \"$archive_expsym_cmds\" | $SED \"$delay_single_quote_subst\"`'\nmodule_cmds='`$ECHO \"$module_cmds\" | $SED \"$delay_single_quote_subst\"`'\nmodule_expsym_cmds='`$ECHO \"$module_expsym_cmds\" | $SED \"$delay_single_quote_subst\"`'\nwith_gnu_ld='`$ECHO \"$with_gnu_ld\" | $SED \"$delay_single_quote_subst\"`'\nallow_undefined_flag='`$ECHO \"$allow_undefined_flag\" | $SED \"$delay_single_quote_subst\"`'\nno_undefined_flag='`$ECHO \"$no_undefined_flag\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_flag_spec='`$ECHO \"$hardcode_libdir_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_separator='`$ECHO \"$hardcode_libdir_separator\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct='`$ECHO \"$hardcode_direct\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct_absolute='`$ECHO \"$hardcode_direct_absolute\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_minus_L='`$ECHO \"$hardcode_minus_L\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_shlibpath_var='`$ECHO \"$hardcode_shlibpath_var\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_automatic='`$ECHO \"$hardcode_automatic\" | $SED \"$delay_single_quote_subst\"`'\ninherit_rpath='`$ECHO \"$inherit_rpath\" | $SED \"$delay_single_quote_subst\"`'\nlink_all_deplibs='`$ECHO \"$link_all_deplibs\" | $SED \"$delay_single_quote_subst\"`'\nalways_export_symbols='`$ECHO \"$always_export_symbols\" | $SED \"$delay_single_quote_subst\"`'\nexport_symbols_cmds='`$ECHO \"$export_symbols_cmds\" | $SED \"$delay_single_quote_subst\"`'\nexclude_expsyms='`$ECHO \"$exclude_expsyms\" | $SED \"$delay_single_quote_subst\"`'\ninclude_expsyms='`$ECHO \"$include_expsyms\" | $SED \"$delay_single_quote_subst\"`'\nprelink_cmds='`$ECHO \"$prelink_cmds\" | $SED \"$delay_single_quote_subst\"`'\npostlink_cmds='`$ECHO \"$postlink_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfile_list_spec='`$ECHO \"$file_list_spec\" | $SED \"$delay_single_quote_subst\"`'\nvariables_saved_for_relink='`$ECHO \"$variables_saved_for_relink\" | $SED \"$delay_single_quote_subst\"`'\nneed_lib_prefix='`$ECHO \"$need_lib_prefix\" | $SED \"$delay_single_quote_subst\"`'\nneed_version='`$ECHO \"$need_version\" | $SED \"$delay_single_quote_subst\"`'\nversion_type='`$ECHO \"$version_type\" | $SED \"$delay_single_quote_subst\"`'\nrunpath_var='`$ECHO \"$runpath_var\" | $SED \"$delay_single_quote_subst\"`'\nshlibpath_var='`$ECHO \"$shlibpath_var\" | $SED \"$delay_single_quote_subst\"`'\nshlibpath_overrides_runpath='`$ECHO \"$shlibpath_overrides_runpath\" | $SED \"$delay_single_quote_subst\"`'\nlibname_spec='`$ECHO \"$libname_spec\" | $SED \"$delay_single_quote_subst\"`'\nlibrary_names_spec='`$ECHO \"$library_names_spec\" | $SED \"$delay_single_quote_subst\"`'\nsoname_spec='`$ECHO \"$soname_spec\" | $SED \"$delay_single_quote_subst\"`'\ninstall_override_mode='`$ECHO \"$install_override_mode\" | $SED \"$delay_single_quote_subst\"`'\npostinstall_cmds='`$ECHO \"$postinstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\npostuninstall_cmds='`$ECHO \"$postuninstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfinish_cmds='`$ECHO \"$finish_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfinish_eval='`$ECHO \"$finish_eval\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_into_libs='`$ECHO \"$hardcode_into_libs\" | $SED \"$delay_single_quote_subst\"`'\nsys_lib_search_path_spec='`$ECHO \"$sys_lib_search_path_spec\" | $SED \"$delay_single_quote_subst\"`'\nconfigure_time_dlsearch_path='`$ECHO \"$configure_time_dlsearch_path\" | $SED \"$delay_single_quote_subst\"`'\nconfigure_time_lt_sys_library_path='`$ECHO \"$configure_time_lt_sys_library_path\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_action='`$ECHO \"$hardcode_action\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen='`$ECHO \"$enable_dlopen\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen_self='`$ECHO \"$enable_dlopen_self\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen_self_static='`$ECHO \"$enable_dlopen_self_static\" | $SED \"$delay_single_quote_subst\"`'\nold_striplib='`$ECHO \"$old_striplib\" | $SED \"$delay_single_quote_subst\"`'\nstriplib='`$ECHO \"$striplib\" | $SED \"$delay_single_quote_subst\"`'\nLD_RC='`$ECHO \"$LD_RC\" | $SED \"$delay_single_quote_subst\"`'\nreload_flag_RC='`$ECHO \"$reload_flag_RC\" | $SED \"$delay_single_quote_subst\"`'\nreload_cmds_RC='`$ECHO \"$reload_cmds_RC\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_cmds_RC='`$ECHO \"$old_archive_cmds_RC\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_RC='`$ECHO \"$compiler_RC\" | $SED \"$delay_single_quote_subst\"`'\nGCC_RC='`$ECHO \"$GCC_RC\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_no_builtin_flag_RC='`$ECHO \"$lt_prog_compiler_no_builtin_flag_RC\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_pic_RC='`$ECHO \"$lt_prog_compiler_pic_RC\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_wl_RC='`$ECHO \"$lt_prog_compiler_wl_RC\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_static_RC='`$ECHO \"$lt_prog_compiler_static_RC\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_prog_compiler_c_o_RC='`$ECHO \"$lt_cv_prog_compiler_c_o_RC\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds_need_lc_RC='`$ECHO \"$archive_cmds_need_lc_RC\" | $SED \"$delay_single_quote_subst\"`'\nenable_shared_with_static_runtimes_RC='`$ECHO \"$enable_shared_with_static_runtimes_RC\" | $SED \"$delay_single_quote_subst\"`'\nexport_dynamic_flag_spec_RC='`$ECHO \"$export_dynamic_flag_spec_RC\" | $SED \"$delay_single_quote_subst\"`'\nwhole_archive_flag_spec_RC='`$ECHO \"$whole_archive_flag_spec_RC\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_needs_object_RC='`$ECHO \"$compiler_needs_object_RC\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_new_cmds_RC='`$ECHO \"$old_archive_from_new_cmds_RC\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_expsyms_cmds_RC='`$ECHO \"$old_archive_from_expsyms_cmds_RC\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds_RC='`$ECHO \"$archive_cmds_RC\" | $SED \"$delay_single_quote_subst\"`'\narchive_expsym_cmds_RC='`$ECHO \"$archive_expsym_cmds_RC\" | $SED \"$delay_single_quote_subst\"`'\nmodule_cmds_RC='`$ECHO \"$module_cmds_RC\" | $SED \"$delay_single_quote_subst\"`'\nmodule_expsym_cmds_RC='`$ECHO \"$module_expsym_cmds_RC\" | $SED \"$delay_single_quote_subst\"`'\nwith_gnu_ld_RC='`$ECHO \"$with_gnu_ld_RC\" | $SED \"$delay_single_quote_subst\"`'\nallow_undefined_flag_RC='`$ECHO \"$allow_undefined_flag_RC\" | $SED \"$delay_single_quote_subst\"`'\nno_undefined_flag_RC='`$ECHO \"$no_undefined_flag_RC\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_flag_spec_RC='`$ECHO \"$hardcode_libdir_flag_spec_RC\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_separator_RC='`$ECHO \"$hardcode_libdir_separator_RC\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct_RC='`$ECHO \"$hardcode_direct_RC\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct_absolute_RC='`$ECHO \"$hardcode_direct_absolute_RC\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_minus_L_RC='`$ECHO \"$hardcode_minus_L_RC\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_shlibpath_var_RC='`$ECHO \"$hardcode_shlibpath_var_RC\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_automatic_RC='`$ECHO \"$hardcode_automatic_RC\" | $SED \"$delay_single_quote_subst\"`'\ninherit_rpath_RC='`$ECHO \"$inherit_rpath_RC\" | $SED \"$delay_single_quote_subst\"`'\nlink_all_deplibs_RC='`$ECHO \"$link_all_deplibs_RC\" | $SED \"$delay_single_quote_subst\"`'\nalways_export_symbols_RC='`$ECHO \"$always_export_symbols_RC\" | $SED \"$delay_single_quote_subst\"`'\nexport_symbols_cmds_RC='`$ECHO \"$export_symbols_cmds_RC\" | $SED \"$delay_single_quote_subst\"`'\nexclude_expsyms_RC='`$ECHO \"$exclude_expsyms_RC\" | $SED \"$delay_single_quote_subst\"`'\ninclude_expsyms_RC='`$ECHO \"$include_expsyms_RC\" | $SED \"$delay_single_quote_subst\"`'\nprelink_cmds_RC='`$ECHO \"$prelink_cmds_RC\" | $SED \"$delay_single_quote_subst\"`'\npostlink_cmds_RC='`$ECHO \"$postlink_cmds_RC\" | $SED \"$delay_single_quote_subst\"`'\nfile_list_spec_RC='`$ECHO \"$file_list_spec_RC\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_action_RC='`$ECHO \"$hardcode_action_RC\" | $SED \"$delay_single_quote_subst\"`'\n\nLTCC='$LTCC'\nLTCFLAGS='$LTCFLAGS'\ncompiler='$compiler_DEFAULT'\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$1\n_LTECHO_EOF'\n}\n\n# Quote evaled strings.\nfor var in AS \\\nDLLTOOL \\\nOBJDUMP \\\nSHELL \\\nECHO \\\nPATH_SEPARATOR \\\nSED \\\nGREP \\\nEGREP \\\nFGREP \\\nLD \\\nNM \\\nLN_S \\\nlt_SP2NL \\\nlt_NL2SP \\\nreload_flag \\\ndeplibs_check_method \\\nfile_magic_cmd \\\nfile_magic_glob \\\nwant_nocaseglob \\\nsharedlib_from_linklib_cmd \\\nAR \\\nAR_FLAGS \\\narchiver_list_spec \\\nSTRIP \\\nRANLIB \\\nCC \\\nCFLAGS \\\ncompiler \\\nlt_cv_sys_global_symbol_pipe \\\nlt_cv_sys_global_symbol_to_cdecl \\\nlt_cv_sys_global_symbol_to_import \\\nlt_cv_sys_global_symbol_to_c_name_address \\\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix \\\nlt_cv_nm_interface \\\nnm_file_list_spec \\\nlt_cv_truncate_bin \\\nlt_prog_compiler_no_builtin_flag \\\nlt_prog_compiler_pic \\\nlt_prog_compiler_wl \\\nlt_prog_compiler_static \\\nlt_cv_prog_compiler_c_o \\\nneed_locks \\\nMANIFEST_TOOL \\\nDSYMUTIL \\\nNMEDIT \\\nLIPO \\\nOTOOL \\\nOTOOL64 \\\nshrext_cmds \\\nexport_dynamic_flag_spec \\\nwhole_archive_flag_spec \\\ncompiler_needs_object \\\nwith_gnu_ld \\\nallow_undefined_flag \\\nno_undefined_flag \\\nhardcode_libdir_flag_spec \\\nhardcode_libdir_separator \\\nexclude_expsyms \\\ninclude_expsyms \\\nfile_list_spec \\\nvariables_saved_for_relink \\\nlibname_spec \\\nlibrary_names_spec \\\nsoname_spec \\\ninstall_override_mode \\\nfinish_eval \\\nold_striplib \\\nstriplib \\\nLD_RC \\\nreload_flag_RC \\\ncompiler_RC \\\nlt_prog_compiler_no_builtin_flag_RC \\\nlt_prog_compiler_pic_RC \\\nlt_prog_compiler_wl_RC \\\nlt_prog_compiler_static_RC \\\nlt_cv_prog_compiler_c_o_RC \\\nexport_dynamic_flag_spec_RC \\\nwhole_archive_flag_spec_RC \\\ncompiler_needs_object_RC \\\nwith_gnu_ld_RC \\\nallow_undefined_flag_RC \\\nno_undefined_flag_RC \\\nhardcode_libdir_flag_spec_RC \\\nhardcode_libdir_separator_RC \\\nexclude_expsyms_RC \\\ninclude_expsyms_RC \\\nfile_list_spec_RC; do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED \\\\\"\\\\\\$sed_quote_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\n# Double-quote double-evaled strings.\nfor var in reload_cmds \\\nold_postinstall_cmds \\\nold_postuninstall_cmds \\\nold_archive_cmds \\\nextract_expsyms_cmds \\\nold_archive_from_new_cmds \\\nold_archive_from_expsyms_cmds \\\narchive_cmds \\\narchive_expsym_cmds \\\nmodule_cmds \\\nmodule_expsym_cmds \\\nexport_symbols_cmds \\\nprelink_cmds \\\npostlink_cmds \\\npostinstall_cmds \\\npostuninstall_cmds \\\nfinish_cmds \\\nsys_lib_search_path_spec \\\nconfigure_time_dlsearch_path \\\nconfigure_time_lt_sys_library_path \\\nreload_cmds_RC \\\nold_archive_cmds_RC \\\nold_archive_from_new_cmds_RC \\\nold_archive_from_expsyms_cmds_RC \\\narchive_cmds_RC \\\narchive_expsym_cmds_RC \\\nmodule_cmds_RC \\\nmodule_expsym_cmds_RC \\\nexport_symbols_cmds_RC \\\nprelink_cmds_RC \\\npostlink_cmds_RC; do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED -e \\\\\"\\\\\\$double_quote_subst\\\\\" -e \\\\\"\\\\\\$sed_quote_subst\\\\\" -e \\\\\"\\\\\\$delay_variable_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\nac_aux_dir='$ac_aux_dir'\n\n# See if we are running on zsh, and set the options that allow our\n# commands through without removal of \\ escapes INIT.\nif test -n \"\\${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n\n\n    PACKAGE='$PACKAGE'\n    VERSION='$VERSION'\n    RM='$RM'\n    ofile='$ofile'\n\n\n\n\n\n# Capture the value of obsolete ALL_LINGUAS because we need it to compute\n    # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it\n    # from automake < 1.5.\n    eval 'OBSOLETE_ALL_LINGUAS''=\"$ALL_LINGUAS\"'\n    # Capture the value of LINGUAS because we need it to compute CATALOGS.\n    LINGUAS=\"${LINGUAS-%UNSET%}\"\n\n\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n\n# Handling of arguments.\nfor ac_config_target in $ac_config_targets\ndo\n  case $ac_config_target in\n    \"config.h\") CONFIG_HEADERS=\"$CONFIG_HEADERS config.h\" ;;\n    \"lib/config.h\") CONFIG_HEADERS=\"$CONFIG_HEADERS lib/config.h\" ;;\n    \"depfiles\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS depfiles\" ;;\n    \"libtool\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS libtool\" ;;\n    \"po-directories\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS po-directories\" ;;\n    \"Makefile\") CONFIG_FILES=\"$CONFIG_FILES Makefile\" ;;\n    \"lib/Makefile\") CONFIG_FILES=\"$CONFIG_FILES lib/Makefile\" ;;\n    \"srclib/Makefile\") CONFIG_FILES=\"$CONFIG_FILES srclib/Makefile\" ;;\n    \"src/Makefile\") CONFIG_FILES=\"$CONFIG_FILES src/Makefile\" ;;\n    \"po/Makefile.in\") CONFIG_FILES=\"$CONFIG_FILES po/Makefile.in\" ;;\n    \"man/Makefile\") CONFIG_FILES=\"$CONFIG_FILES man/Makefile\" ;;\n    \"tests/Makefile\") CONFIG_FILES=\"$CONFIG_FILES tests/Makefile\" ;;\n    \"include/iconv.h\") CONFIG_FILES=\"$CONFIG_FILES include/iconv.h:include/iconv.h.build.in\" ;;\n    \"include/iconv.h.inst\") CONFIG_FILES=\"$CONFIG_FILES include/iconv.h.inst:include/iconv.h.in\" ;;\n\n  *) as_fn_error $? \"invalid argument: \\`$ac_config_target'\" \"$LINENO\" 5;;\n  esac\ndone\n\n\n# If the user did not use the arguments to specify the items to instantiate,\n# then the envvar interface is used.  Set only those that are not.\n# We use the long form for the default assignment because of an extremely\n# bizarre bug on SunOS 4.1.3.\nif $ac_need_defaults; then\n  test \"${CONFIG_FILES+set}\" = set || CONFIG_FILES=$config_files\n  test \"${CONFIG_HEADERS+set}\" = set || CONFIG_HEADERS=$config_headers\n  test \"${CONFIG_COMMANDS+set}\" = set || CONFIG_COMMANDS=$config_commands\nfi\n\n# Have a temporary directory for convenience.  Make it in the build tree\n# simply because there is no reason against having it here, and in addition,\n# creating and moving files from /tmp can sometimes cause problems.\n# Hook for its removal unless debugging.\n# Note that there is a small window in which the directory will not be cleaned:\n# after its creation but before its name has been assigned to `$tmp'.\n$debug ||\n{\n  tmp= ac_tmp=\n  trap 'exit_status=$?\n  : \"${ac_tmp:=$tmp}\"\n  { test ! -d \"$ac_tmp\" || rm -fr \"$ac_tmp\"; } && exit $exit_status\n' 0\n  trap 'as_fn_exit 1' 1 2 13 15\n}\n# Create a (secure) tmp directory for tmp files.\n\n{\n  tmp=`(umask 077 && mktemp -d \"./confXXXXXX\") 2>/dev/null` &&\n  test -d \"$tmp\"\n}  ||\n{\n  tmp=./conf$$-$RANDOM\n  (umask 077 && mkdir \"$tmp\")\n} || as_fn_error $? \"cannot create a temporary directory in .\" \"$LINENO\" 5\nac_tmp=$tmp\n\n# Set up the scripts for CONFIG_FILES section.\n# No need to generate them if there are no CONFIG_FILES.\n# This happens for instance with `./config.status config.h'.\nif test -n \"$CONFIG_FILES\"; then\n\n\nac_cr=`echo X | tr X '\\015'`\n# On cygwin, bash can eat \\r inside `` if the user requested igncr.\n# But we know of no other shell where ac_cr would be empty at this\n# point, so we can use a bashism as a fallback.\nif test \"x$ac_cr\" = x; then\n  eval ac_cr=\\$\\'\\\\r\\'\nfi\nac_cs_awk_cr=`$AWK 'BEGIN { print \"a\\rb\" }' </dev/null 2>/dev/null`\nif test \"$ac_cs_awk_cr\" = \"a${ac_cr}b\"; then\n  ac_cs_awk_cr='\\\\r'\nelse\n  ac_cs_awk_cr=$ac_cr\nfi\n\necho 'BEGIN {' >\"$ac_tmp/subs1.awk\" &&\n_ACEOF\n\n\n{\n  echo \"cat >conf$$subs.awk <<_ACEOF\" &&\n  echo \"$ac_subst_vars\" | sed 's/.*/&!$&$ac_delim/' &&\n  echo \"_ACEOF\"\n} >conf$$subs.sh ||\n  as_fn_error $? \"could not make $CONFIG_STATUS\" \"$LINENO\" 5\nac_delim_num=`echo \"$ac_subst_vars\" | grep -c '^'`\nac_delim='%!_!# '\nfor ac_last_try in false false false false false :; do\n  . ./conf$$subs.sh ||\n    as_fn_error $? \"could not make $CONFIG_STATUS\" \"$LINENO\" 5\n\n  ac_delim_n=`sed -n \"s/.*$ac_delim\\$/X/p\" conf$$subs.awk | grep -c X`\n  if test $ac_delim_n = $ac_delim_num; then\n    break\n  elif $ac_last_try; then\n    as_fn_error $? \"could not make $CONFIG_STATUS\" \"$LINENO\" 5\n  else\n    ac_delim=\"$ac_delim!$ac_delim _$ac_delim!! \"\n  fi\ndone\nrm -f conf$$subs.sh\n\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\ncat >>\"\\$ac_tmp/subs1.awk\" <<\\\\_ACAWK &&\n_ACEOF\nsed -n '\nh\ns/^/S[\"/; s/!.*/\"]=/\np\ng\ns/^[^!]*!//\n:repl\nt repl\ns/'\"$ac_delim\"'$//\nt delim\n:nl\nh\ns/\\(.\\{148\\}\\)..*/\\1/\nt more1\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\\\\n\"\\\\/\np\nn\nb repl\n:more1\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\"\\\\/\np\ng\ns/.\\{148\\}//\nt nl\n:delim\nh\ns/\\(.\\{148\\}\\)..*/\\1/\nt more2\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\"/\np\nb\n:more2\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\"\\\\/\np\ng\ns/.\\{148\\}//\nt delim\n' <conf$$subs.awk | sed '\n/^[^\"\"]/{\n  N\n  s/\\n//\n}\n' >>$CONFIG_STATUS || ac_write_fail=1\nrm -f conf$$subs.awk\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n_ACAWK\ncat >>\"\\$ac_tmp/subs1.awk\" <<_ACAWK &&\n  for (key in S) S_is_set[key] = 1\n  FS = \"\u0007\"\n\n}\n{\n  line = $ 0\n  nfields = split(line, field, \"@\")\n  substed = 0\n  len = length(field[1])\n  for (i = 2; i < nfields; i++) {\n    key = field[i]\n    keylen = length(key)\n    if (S_is_set[key]) {\n      value = S[key]\n      line = substr(line, 1, len) \"\" value \"\" substr(line, len + keylen + 3)\n      len += length(value) + length(field[++i])\n      substed = 1\n    } else\n      len += 1 + keylen\n  }\n\n  print line\n}\n\n_ACAWK\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nif sed \"s/$ac_cr//\" < /dev/null > /dev/null 2>&1; then\n  sed \"s/$ac_cr\\$//; s/$ac_cr/$ac_cs_awk_cr/g\"\nelse\n  cat\nfi < \"$ac_tmp/subs1.awk\" > \"$ac_tmp/subs.awk\" \\\n  || as_fn_error $? \"could not setup config files machinery\" \"$LINENO\" 5\n_ACEOF\n\n# VPATH may cause trouble with some makes, so we remove sole $(srcdir),\n# ${srcdir} and @srcdir@ entries from VPATH if srcdir is \".\", strip leading and\n# trailing colons and then remove the whole line if VPATH becomes empty\n# (actually we leave an empty line to preserve line numbers).\nif test \"x$srcdir\" = x.; then\n  ac_vpsub='/^[\t ]*VPATH[\t ]*=[\t ]*/{\nh\ns///\ns/^/:/\ns/[\t ]*$/:/\ns/:\\$(srcdir):/:/g\ns/:\\${srcdir}:/:/g\ns/:@srcdir@:/:/g\ns/^:*//\ns/:*$//\nx\ns/\\(=[\t ]*\\).*/\\1/\nG\ns/\\n//\ns/^[^=]*=[\t ]*$//\n}'\nfi\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nfi # test -n \"$CONFIG_FILES\"\n\n# Set up the scripts for CONFIG_HEADERS section.\n# No need to generate them if there are no CONFIG_HEADERS.\n# This happens for instance with `./config.status Makefile'.\nif test -n \"$CONFIG_HEADERS\"; then\ncat >\"$ac_tmp/defines.awk\" <<\\_ACAWK ||\nBEGIN {\n_ACEOF\n\n# Transform confdefs.h into an awk script `defines.awk', embedded as\n# here-document in config.status, that substitutes the proper values into\n# config.h.in to produce config.h.\n\n# Create a delimiter string that does not exist in confdefs.h, to ease\n# handling of long lines.\nac_delim='%!_!# '\nfor ac_last_try in false false :; do\n  ac_tt=`sed -n \"/$ac_delim/p\" confdefs.h`\n  if test -z \"$ac_tt\"; then\n    break\n  elif $ac_last_try; then\n    as_fn_error $? \"could not make $CONFIG_HEADERS\" \"$LINENO\" 5\n  else\n    ac_delim=\"$ac_delim!$ac_delim _$ac_delim!! \"\n  fi\ndone\n\n# For the awk script, D is an array of macro values keyed by name,\n# likewise P contains macro parameters if any.  Preserve backslash\n# newline sequences.\n\nac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*\nsed -n '\ns/.\\{148\\}/&'\"$ac_delim\"'/g\nt rset\n:rset\ns/^[\t ]*#[\t ]*define[\t ][\t ]*/ /\nt def\nd\n:def\ns/\\\\$//\nt bsnl\ns/[\"\\\\]/\\\\&/g\ns/^ \\('\"$ac_word_re\"'\\)\\(([^()]*)\\)[\t ]*\\(.*\\)/P[\"\\1\"]=\"\\2\"\\\nD[\"\\1\"]=\" \\3\"/p\ns/^ \\('\"$ac_word_re\"'\\)[\t ]*\\(.*\\)/D[\"\\1\"]=\" \\2\"/p\nd\n:bsnl\ns/[\"\\\\]/\\\\&/g\ns/^ \\('\"$ac_word_re\"'\\)\\(([^()]*)\\)[\t ]*\\(.*\\)/P[\"\\1\"]=\"\\2\"\\\nD[\"\\1\"]=\" \\3\\\\\\\\\\\\n\"\\\\/p\nt cont\ns/^ \\('\"$ac_word_re\"'\\)[\t ]*\\(.*\\)/D[\"\\1\"]=\" \\2\\\\\\\\\\\\n\"\\\\/p\nt cont\nd\n:cont\nn\ns/.\\{148\\}/&'\"$ac_delim\"'/g\nt clear\n:clear\ns/\\\\$//\nt bsnlc\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\"/p\nd\n:bsnlc\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\\\\\\\\\\\\n\"\\\\/p\nb cont\n' <confdefs.h | sed '\ns/'\"$ac_delim\"'/\"\\\\\\\n\"/g' >>$CONFIG_STATUS || ac_write_fail=1\n\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n  for (key in D) D_is_set[key] = 1\n  FS = \"\u0007\"\n}\n/^[\\t ]*#[\\t ]*(define|undef)[\\t ]+$ac_word_re([\\t (]|\\$)/ {\n  line = \\$ 0\n  split(line, arg, \" \")\n  if (arg[1] == \"#\") {\n    defundef = arg[2]\n    mac1 = arg[3]\n  } else {\n    defundef = substr(arg[1], 2)\n    mac1 = arg[2]\n  }\n  split(mac1, mac2, \"(\") #)\n  macro = mac2[1]\n  prefix = substr(line, 1, index(line, defundef) - 1)\n  if (D_is_set[macro]) {\n    # Preserve the white space surrounding the \"#\".\n    print prefix \"define\", macro P[macro] D[macro]\n    next\n  } else {\n    # Replace #undef with comments.  This is necessary, for example,\n    # in the case of _POSIX_SOURCE, which is predefined and required\n    # on some systems where configure will not decide to define it.\n    if (defundef == \"undef\") {\n      print \"/*\", prefix defundef, macro, \"*/\"\n      next\n    }\n  }\n}\n{ print }\n_ACAWK\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n  as_fn_error $? \"could not setup config headers machinery\" \"$LINENO\" 5\nfi # test -n \"$CONFIG_HEADERS\"\n\n\neval set X \"  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS\"\nshift\nfor ac_tag\ndo\n  case $ac_tag in\n  :[FHLC]) ac_mode=$ac_tag; continue;;\n  esac\n  case $ac_mode$ac_tag in\n  :[FHL]*:*);;\n  :L* | :C*:*) as_fn_error $? \"invalid tag \\`$ac_tag'\" \"$LINENO\" 5;;\n  :[FH]-) ac_tag=-:-;;\n  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;\n  esac\n  ac_save_IFS=$IFS\n  IFS=:\n  set x $ac_tag\n  IFS=$ac_save_IFS\n  shift\n  ac_file=$1\n  shift\n\n  case $ac_mode in\n  :L) ac_source=$1;;\n  :[FH])\n    ac_file_inputs=\n    for ac_f\n    do\n      case $ac_f in\n      -) ac_f=\"$ac_tmp/stdin\";;\n      *) # Look for the file first in the build tree, then in the source tree\n\t # (if the path is not absolute).  The absolute path cannot be DOS-style,\n\t # because $ac_f cannot contain `:'.\n\t test -f \"$ac_f\" ||\n\t   case $ac_f in\n\t   [\\\\/$]*) false;;\n\t   *) test -f \"$srcdir/$ac_f\" && ac_f=\"$srcdir/$ac_f\";;\n\t   esac ||\n\t   as_fn_error 1 \"cannot find input file: \\`$ac_f'\" \"$LINENO\" 5;;\n      esac\n      case $ac_f in *\\'*) ac_f=`$as_echo \"$ac_f\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; esac\n      as_fn_append ac_file_inputs \" '$ac_f'\"\n    done\n\n    # Let's still pretend it is `configure' which instantiates (i.e., don't\n    # use $as_me), people would be surprised to read:\n    #    /* config.h.  Generated by config.status.  */\n    configure_input='Generated from '`\n\t  $as_echo \"$*\" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'\n\t`' by configure.'\n    if test x\"$ac_file\" != x-; then\n      configure_input=\"$ac_file.  $configure_input\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: creating $ac_file\" >&5\n$as_echo \"$as_me: creating $ac_file\" >&6;}\n    fi\n    # Neutralize special characters interpreted by sed in replacement strings.\n    case $configure_input in #(\n    *\\&* | *\\|* | *\\\\* )\n       ac_sed_conf_input=`$as_echo \"$configure_input\" |\n       sed 's/[\\\\\\\\&|]/\\\\\\\\&/g'`;; #(\n    *) ac_sed_conf_input=$configure_input;;\n    esac\n\n    case $ac_tag in\n    *:-:* | *:-) cat >\"$ac_tmp/stdin\" \\\n      || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5 ;;\n    esac\n    ;;\n  esac\n\n  ac_dir=`$as_dirname -- \"$ac_file\" ||\n$as_expr X\"$ac_file\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)$' \\| \\\n\t X\"$ac_file\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$ac_file\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  as_dir=\"$ac_dir\"; as_fn_mkdir_p\n  ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`$as_echo \"$ac_dir\" | sed 's|^\\.[\\\\/]||'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`$as_echo \"$ac_dir_suffix\" | sed 's|/[^\\\\/]*|/..|g;s|/||'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n\n  case $ac_mode in\n  :F)\n  #\n  # CONFIG_FILE\n  #\n\n  case $INSTALL in\n  [\\\\/$]* | ?:[\\\\/]* ) ac_INSTALL=$INSTALL ;;\n  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;\n  esac\n  ac_MKDIR_P=$MKDIR_P\n  case $MKDIR_P in\n  [\\\\/$]* | ?:[\\\\/]* ) ;;\n  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;\n  esac\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n# If the template does not know about datarootdir, expand it.\n# FIXME: This hack should be removed a few years after 2.60.\nac_datarootdir_hack=; ac_datarootdir_seen=\nac_sed_dataroot='\n/datarootdir/ {\n  p\n  q\n}\n/@datadir@/p\n/@docdir@/p\n/@infodir@/p\n/@localedir@/p\n/@mandir@/p'\ncase `eval \"sed -n \\\"\\$ac_sed_dataroot\\\" $ac_file_inputs\"` in\n*datarootdir*) ac_datarootdir_seen=yes;;\n*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&5\n$as_echo \"$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&2;}\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n  ac_datarootdir_hack='\n  s&@datadir@&$datadir&g\n  s&@docdir@&$docdir&g\n  s&@infodir@&$infodir&g\n  s&@localedir@&$localedir&g\n  s&@mandir@&$mandir&g\n  s&\\\\\\${datarootdir}&$datarootdir&g' ;;\nesac\n_ACEOF\n\n# Neutralize VPATH when `$srcdir' = `.'.\n# Shell code in configure.ac might set extrasub.\n# FIXME: do we really want to maintain this feature?\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\nac_sed_extra=\"$ac_vpsub\n$extrasub\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n:t\n/@[a-zA-Z_][a-zA-Z_0-9]*@/!b\ns|@configure_input@|$ac_sed_conf_input|;t t\ns&@top_builddir@&$ac_top_builddir_sub&;t t\ns&@top_build_prefix@&$ac_top_build_prefix&;t t\ns&@srcdir@&$ac_srcdir&;t t\ns&@abs_srcdir@&$ac_abs_srcdir&;t t\ns&@top_srcdir@&$ac_top_srcdir&;t t\ns&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t\ns&@builddir@&$ac_builddir&;t t\ns&@abs_builddir@&$ac_abs_builddir&;t t\ns&@abs_top_builddir@&$ac_abs_top_builddir&;t t\ns&@INSTALL@&$ac_INSTALL&;t t\ns&@MKDIR_P@&$ac_MKDIR_P&;t t\n$ac_datarootdir_hack\n\"\neval sed \\\"\\$ac_sed_extra\\\" \"$ac_file_inputs\" | $AWK -f \"$ac_tmp/subs.awk\" \\\n  >$ac_tmp/out || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n\ntest -z \"$ac_datarootdir_hack$ac_datarootdir_seen\" &&\n  { ac_out=`sed -n '/\\${datarootdir}/p' \"$ac_tmp/out\"`; test -n \"$ac_out\"; } &&\n  { ac_out=`sed -n '/^[\t ]*datarootdir[\t ]*:*=/p' \\\n      \"$ac_tmp/out\"`; test -z \"$ac_out\"; } &&\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&5\n$as_echo \"$as_me: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&2;}\n\n  rm -f \"$ac_tmp/stdin\"\n  case $ac_file in\n  -) cat \"$ac_tmp/out\" && rm -f \"$ac_tmp/out\";;\n  *) rm -f \"$ac_file\" && mv \"$ac_tmp/out\" \"$ac_file\";;\n  esac \\\n  || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n ;;\n  :H)\n  #\n  # CONFIG_HEADER\n  #\n  if test x\"$ac_file\" != x-; then\n    {\n      $as_echo \"/* $configure_input  */\" \\\n      && eval '$AWK -f \"$ac_tmp/defines.awk\"' \"$ac_file_inputs\"\n    } >\"$ac_tmp/config.h\" \\\n      || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n    if diff \"$ac_file\" \"$ac_tmp/config.h\" >/dev/null 2>&1; then\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: $ac_file is unchanged\" >&5\n$as_echo \"$as_me: $ac_file is unchanged\" >&6;}\n    else\n      rm -f \"$ac_file\"\n      mv \"$ac_tmp/config.h\" \"$ac_file\" \\\n\t|| as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n    fi\n  else\n    $as_echo \"/* $configure_input  */\" \\\n      && eval '$AWK -f \"$ac_tmp/defines.awk\"' \"$ac_file_inputs\" \\\n      || as_fn_error $? \"could not create -\" \"$LINENO\" 5\n  fi\n# Compute \"$ac_file\"'s index in $config_headers.\n_am_arg=\"$ac_file\"\n_am_stamp_count=1\nfor _am_header in $config_headers :; do\n  case $_am_header in\n    $_am_arg | $_am_arg:* )\n      break ;;\n    * )\n      _am_stamp_count=`expr $_am_stamp_count + 1` ;;\n  esac\ndone\necho \"timestamp for $_am_arg\" >`$as_dirname -- \"$_am_arg\" ||\n$as_expr X\"$_am_arg\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$_am_arg\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$_am_arg\" : 'X\\(//\\)$' \\| \\\n\t X\"$_am_arg\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$_am_arg\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`/stamp-h$_am_stamp_count\n ;;\n\n  :C)  { $as_echo \"$as_me:${as_lineno-$LINENO}: executing $ac_file commands\" >&5\n$as_echo \"$as_me: executing $ac_file commands\" >&6;}\n ;;\n  esac\n\n\n  case $ac_file$ac_mode in\n    \"depfiles\":C) test x\"$AMDEP_TRUE\" != x\"\" || {\n  # Older Autoconf quotes --file arguments for eval, but not when files\n  # are listed without --file.  Let's play safe and only enable the eval\n  # if we detect the quoting.\n  case $CONFIG_FILES in\n  *\\'*) eval set x \"$CONFIG_FILES\" ;;\n  *)   set x $CONFIG_FILES ;;\n  esac\n  shift\n  for mf\n  do\n    # Strip MF so we end up with the name of the file.\n    mf=`echo \"$mf\" | sed -e 's/:.*$//'`\n    # Check whether this is an Automake generated Makefile or not.\n    # We used to match only the files named 'Makefile.in', but\n    # some people rename them; so instead we look at the file content.\n    # Grep'ing the first line is not enough: some people post-process\n    # each Makefile.in and add a new line on top of each file to say so.\n    # Grep'ing the whole file is not good either: AIX grep has a line\n    # limit of 2048, but all sed's we know have understand at least 4000.\n    if sed -n 's,^#.*generated by automake.*,X,p' \"$mf\" | grep X >/dev/null 2>&1; then\n      dirpart=`$as_dirname -- \"$mf\" ||\n$as_expr X\"$mf\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$mf\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$mf\" : 'X\\(//\\)$' \\| \\\n\t X\"$mf\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$mf\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n    else\n      continue\n    fi\n    # Extract the definition of DEPDIR, am__include, and am__quote\n    # from the Makefile without running 'make'.\n    DEPDIR=`sed -n 's/^DEPDIR = //p' < \"$mf\"`\n    test -z \"$DEPDIR\" && continue\n    am__include=`sed -n 's/^am__include = //p' < \"$mf\"`\n    test -z \"$am__include\" && continue\n    am__quote=`sed -n 's/^am__quote = //p' < \"$mf\"`\n    # Find all dependency output files, they are included files with\n    # $(DEPDIR) in their names.  We invoke sed twice because it is the\n    # simplest approach to changing $(DEPDIR) to its actual value in the\n    # expansion.\n    for file in `sed -n \"\n      s/^$am__include $am__quote\\(.*(DEPDIR).*\\)$am__quote\"'$/\\1/p' <\"$mf\" | \\\n\t sed -e 's/\\$(DEPDIR)/'\"$DEPDIR\"'/g'`; do\n      # Make sure the directory exists.\n      test -f \"$dirpart/$file\" && continue\n      fdir=`$as_dirname -- \"$file\" ||\n$as_expr X\"$file\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$file\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$file\" : 'X\\(//\\)$' \\| \\\n\t X\"$file\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$file\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      as_dir=$dirpart/$fdir; as_fn_mkdir_p\n      # echo \"creating $dirpart/$file\"\n      echo '# dummy' > \"$dirpart/$file\"\n    done\n  done\n}\n ;;\n    \"libtool\":C)\n\n    # See if we are running on zsh, and set the options that allow our\n    # commands through without removal of \\ escapes.\n    if test -n \"${ZSH_VERSION+set}\"; then\n      setopt NO_GLOB_SUBST\n    fi\n\n    cfgfile=${ofile}T\n    trap \"$RM \\\"$cfgfile\\\"; exit 1\" 1 2 15\n    $RM \"$cfgfile\"\n\n    cat <<_LT_EOF >> \"$cfgfile\"\n#! $SHELL\n# Generated automatically by $as_me ($PACKAGE) $VERSION\n# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit, 1996\n\n# Copyright (C) 2014 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program or library that is built\n# using GNU Libtool, you may include this file under the  same\n# distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\n# The names of the tagged configurations supported by this script.\navailable_tags='RC '\n\n# Configured defaults for sys_lib_dlsearch_path munging.\n: \\${LT_SYS_LIBRARY_PATH=\"$configure_time_lt_sys_library_path\"}\n\n# ### BEGIN LIBTOOL CONFIG\n\n# Which release of libtool.m4 was used?\nmacro_version=$macro_version\nmacro_revision=$macro_revision\n\n# Whether or not to build static libraries.\nbuild_old_libs=$enable_static\n\n# Assembler program.\nAS=$lt_AS\n\n# DLL creation program.\nDLLTOOL=$lt_DLLTOOL\n\n# Object dumper program.\nOBJDUMP=$lt_OBJDUMP\n\n# Whether or not to build shared libraries.\nbuild_libtool_libs=$enable_shared\n\n# What type of objects to build.\npic_mode=$pic_mode\n\n# Whether or not to optimize for fast installation.\nfast_install=$enable_fast_install\n\n# Shared archive member basename,for filename based shared library versioning on AIX.\nshared_archive_member_spec=$shared_archive_member_spec\n\n# Shell to use when invoking shell scripts.\nSHELL=$lt_SHELL\n\n# An echo program that protects backslashes.\nECHO=$lt_ECHO\n\n# The PATH separator for the build system.\nPATH_SEPARATOR=$lt_PATH_SEPARATOR\n\n# The host system.\nhost_alias=$host_alias\nhost=$host\nhost_os=$host_os\n\n# The build system.\nbuild_alias=$build_alias\nbuild=$build\nbuild_os=$build_os\n\n# A sed program that does not truncate output.\nSED=$lt_SED\n\n# Sed that helps us avoid accidentally triggering echo(1) options like -n.\nXsed=\"\\$SED -e 1s/^X//\"\n\n# A grep program that handles long lines.\nGREP=$lt_GREP\n\n# An ERE matcher.\nEGREP=$lt_EGREP\n\n# A literal string matcher.\nFGREP=$lt_FGREP\n\n# A BSD- or MS-compatible name lister.\nNM=$lt_NM\n\n# Whether we need soft or hard links.\nLN_S=$lt_LN_S\n\n# What is the maximum length of a command?\nmax_cmd_len=$max_cmd_len\n\n# Object file suffix (normally \"o\").\nobjext=$ac_objext\n\n# Executable file suffix (normally \"\").\nexeext=$exeext\n\n# whether the shell understands \"unset\".\nlt_unset=$lt_unset\n\n# turn spaces into newlines.\nSP2NL=$lt_lt_SP2NL\n\n# turn newlines into spaces.\nNL2SP=$lt_lt_NL2SP\n\n# convert \\$build file names to \\$host format.\nto_host_file_cmd=$lt_cv_to_host_file_cmd\n\n# convert \\$build files to toolchain format.\nto_tool_file_cmd=$lt_cv_to_tool_file_cmd\n\n# Method to check whether dependent libraries are shared objects.\ndeplibs_check_method=$lt_deplibs_check_method\n\n# Command to use when deplibs_check_method = \"file_magic\".\nfile_magic_cmd=$lt_file_magic_cmd\n\n# How to find potential files when deplibs_check_method = \"file_magic\".\nfile_magic_glob=$lt_file_magic_glob\n\n# Find potential files using nocaseglob when deplibs_check_method = \"file_magic\".\nwant_nocaseglob=$lt_want_nocaseglob\n\n# Command to associate shared and link libraries.\nsharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd\n\n# The archiver.\nAR=$lt_AR\n\n# Flags to create an archive.\nAR_FLAGS=$lt_AR_FLAGS\n\n# How to feed a file listing to the archiver.\narchiver_list_spec=$lt_archiver_list_spec\n\n# A symbol stripping program.\nSTRIP=$lt_STRIP\n\n# Commands used to install an old-style archive.\nRANLIB=$lt_RANLIB\nold_postinstall_cmds=$lt_old_postinstall_cmds\nold_postuninstall_cmds=$lt_old_postuninstall_cmds\n\n# Whether to use a lock for old archive extraction.\nlock_old_archive_extraction=$lock_old_archive_extraction\n\n# A C compiler.\nLTCC=$lt_CC\n\n# LTCC compiler flags.\nLTCFLAGS=$lt_CFLAGS\n\n# Take the output of nm and produce a listing of raw symbols and C names.\nglobal_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe\n\n# Transform the output of nm in a proper C declaration.\nglobal_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl\n\n# Transform the output of nm into a list of symbols to manually relocate.\nglobal_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import\n\n# Transform the output of nm in a C name address pair.\nglobal_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address\n\n# Transform the output of nm in a C name address pair when lib prefix is needed.\nglobal_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix\n\n# The name lister interface.\nnm_interface=$lt_lt_cv_nm_interface\n\n# Specify filename containing input files for \\$NM.\nnm_file_list_spec=$lt_nm_file_list_spec\n\n# The root where to search for dependent libraries,and where our libraries should be installed.\nlt_sysroot=$lt_sysroot\n\n# Command to truncate a binary pipe.\nlt_truncate_bin=$lt_lt_cv_truncate_bin\n\n# The name of the directory that contains temporary libtool files.\nobjdir=$objdir\n\n# Used to examine libraries when file_magic_cmd begins with \"file\".\nMAGIC_CMD=$MAGIC_CMD\n\n# Must we lock files when doing compilation?\nneed_locks=$lt_need_locks\n\n# Manifest tool.\nMANIFEST_TOOL=$lt_MANIFEST_TOOL\n\n# Tool to manipulate archived DWARF debug symbol files on Mac OS X.\nDSYMUTIL=$lt_DSYMUTIL\n\n# Tool to change global to local symbols on Mac OS X.\nNMEDIT=$lt_NMEDIT\n\n# Tool to manipulate fat objects and archives on Mac OS X.\nLIPO=$lt_LIPO\n\n# ldd/readelf like tool for Mach-O binaries on Mac OS X.\nOTOOL=$lt_OTOOL\n\n# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.\nOTOOL64=$lt_OTOOL64\n\n# Old archive suffix (normally \"a\").\nlibext=$libext\n\n# Shared library suffix (normally \".so\").\nshrext_cmds=$lt_shrext_cmds\n\n# The commands to extract the exported symbol list from a shared archive.\nextract_expsyms_cmds=$lt_extract_expsyms_cmds\n\n# Variables whose values should be saved in libtool wrapper scripts and\n# restored at link time.\nvariables_saved_for_relink=$lt_variables_saved_for_relink\n\n# Do we need the \"lib\" prefix for modules?\nneed_lib_prefix=$need_lib_prefix\n\n# Do we need a version for libraries?\nneed_version=$need_version\n\n# Library versioning type.\nversion_type=$version_type\n\n# Shared library runtime path variable.\nrunpath_var=$runpath_var\n\n# Shared library path variable.\nshlibpath_var=$shlibpath_var\n\n# Is shlibpath searched before the hard-coded library search path?\nshlibpath_overrides_runpath=$shlibpath_overrides_runpath\n\n# Format of library name prefix.\nlibname_spec=$lt_libname_spec\n\n# List of archive names.  First name is the real one, the rest are links.\n# The last name is the one that the linker finds with -lNAME\nlibrary_names_spec=$lt_library_names_spec\n\n# The coded name of the library, if different from the real name.\nsoname_spec=$lt_soname_spec\n\n# Permission mode override for installation of shared libraries.\ninstall_override_mode=$lt_install_override_mode\n\n# Command to use after installation of a shared archive.\npostinstall_cmds=$lt_postinstall_cmds\n\n# Command to use after uninstallation of a shared archive.\npostuninstall_cmds=$lt_postuninstall_cmds\n\n# Commands used to finish a libtool library installation in a directory.\nfinish_cmds=$lt_finish_cmds\n\n# As \"finish_cmds\", except a single script fragment to be evaled but\n# not shown.\nfinish_eval=$lt_finish_eval\n\n# Whether we should hardcode library paths into libraries.\nhardcode_into_libs=$hardcode_into_libs\n\n# Compile-time system search path for libraries.\nsys_lib_search_path_spec=$lt_sys_lib_search_path_spec\n\n# Detected run-time system search path for libraries.\nsys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path\n\n# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.\nconfigure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path\n\n# Whether dlopen is supported.\ndlopen_support=$enable_dlopen\n\n# Whether dlopen of programs is supported.\ndlopen_self=$enable_dlopen_self\n\n# Whether dlopen of statically linked programs is supported.\ndlopen_self_static=$enable_dlopen_self_static\n\n# Commands to strip libraries.\nold_striplib=$lt_old_striplib\nstriplib=$lt_striplib\n\n\n# The linker used to build libraries.\nLD=$lt_LD\n\n# How to create reloadable object files.\nreload_flag=$lt_reload_flag\nreload_cmds=$lt_reload_cmds\n\n# Commands used to build an old-style archive.\nold_archive_cmds=$lt_old_archive_cmds\n\n# A language specific compiler.\nCC=$lt_compiler\n\n# Is the compiler the GNU compiler?\nwith_gcc=$GCC\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag\n\n# Additional compiler flags for building library objects.\npic_flag=$lt_lt_prog_compiler_pic\n\n# How to pass a linker flag through the compiler.\nwl=$lt_lt_prog_compiler_wl\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=$lt_lt_prog_compiler_static\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=$lt_lt_cv_prog_compiler_c_o\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=$archive_cmds_need_lc\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=$lt_export_dynamic_flag_spec\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=$lt_whole_archive_flag_spec\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=$lt_compiler_needs_object\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=$lt_old_archive_from_new_cmds\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds\n\n# Commands used to build a shared archive.\narchive_cmds=$lt_archive_cmds\narchive_expsym_cmds=$lt_archive_expsym_cmds\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=$lt_module_cmds\nmodule_expsym_cmds=$lt_module_expsym_cmds\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=$lt_with_gnu_ld\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=$lt_allow_undefined_flag\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=$lt_no_undefined_flag\n\n# Flag to hardcode \\$libdir into a binary during linking.\n# This must work even if \\$libdir does not exist\nhardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=$lt_hardcode_libdir_separator\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=$hardcode_direct\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting \\$shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=$hardcode_direct_absolute\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=$hardcode_minus_L\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=$hardcode_shlibpath_var\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=$hardcode_automatic\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=$inherit_rpath\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=$link_all_deplibs\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=$always_export_symbols\n\n# The commands to list exported symbols.\nexport_symbols_cmds=$lt_export_symbols_cmds\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=$lt_exclude_expsyms\n\n# Symbols that must always be exported.\ninclude_expsyms=$lt_include_expsyms\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=$lt_prelink_cmds\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=$lt_postlink_cmds\n\n# Specify filename containing input files.\nfile_list_spec=$lt_file_list_spec\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=$hardcode_action\n\n# ### END LIBTOOL CONFIG\n\n_LT_EOF\n\n    cat <<'_LT_EOF' >> \"$cfgfile\"\n\n# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n\n# ### END FUNCTIONS SHARED WITH CONFIGURE\n\n_LT_EOF\n\n  case $host_os in\n  aix3*)\n    cat <<\\_LT_EOF >> \"$cfgfile\"\n# AIX sometimes has problems with the GCC collect2 program.  For some\n# reason, if we set the COLLECT_NAMES environment variable, the problems\n# vanish in a puff of smoke.\nif test set != \"${COLLECT_NAMES+set}\"; then\n  COLLECT_NAMES=\n  export COLLECT_NAMES\nfi\n_LT_EOF\n    ;;\n  esac\n\n\nltmain=$ac_aux_dir/ltmain.sh\n\n\n  # We use sed instead of cat because bash on DJGPP gets confused if\n  # if finds mixed CR/LF and LF-only lines.  Since sed operates in\n  # text mode, it properly converts lines to CR/LF.  This bash problem\n  # is reportedly fixed, but why not run on old versions too?\n  sed '$q' \"$ltmain\" >> \"$cfgfile\" \\\n     || (rm -f \"$cfgfile\"; exit 1)\n\n   mv -f \"$cfgfile\" \"$ofile\" ||\n    (rm -f \"$ofile\" && cp \"$cfgfile\" \"$ofile\" && rm -f \"$cfgfile\")\n  chmod +x \"$ofile\"\n\n\n    cat <<_LT_EOF >> \"$ofile\"\n\n# ### BEGIN LIBTOOL TAG CONFIG: RC\n\n# The linker used to build libraries.\nLD=$lt_LD_RC\n\n# How to create reloadable object files.\nreload_flag=$lt_reload_flag_RC\nreload_cmds=$lt_reload_cmds_RC\n\n# Commands used to build an old-style archive.\nold_archive_cmds=$lt_old_archive_cmds_RC\n\n# A language specific compiler.\nCC=$lt_compiler_RC\n\n# Is the compiler the GNU compiler?\nwith_gcc=$GCC_RC\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC\n\n# Additional compiler flags for building library objects.\npic_flag=$lt_lt_prog_compiler_pic_RC\n\n# How to pass a linker flag through the compiler.\nwl=$lt_lt_prog_compiler_wl_RC\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=$lt_lt_prog_compiler_static_RC\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=$archive_cmds_need_lc_RC\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=$lt_whole_archive_flag_spec_RC\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=$lt_compiler_needs_object_RC\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC\n\n# Commands used to build a shared archive.\narchive_cmds=$lt_archive_cmds_RC\narchive_expsym_cmds=$lt_archive_expsym_cmds_RC\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=$lt_module_cmds_RC\nmodule_expsym_cmds=$lt_module_expsym_cmds_RC\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=$lt_with_gnu_ld_RC\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=$lt_allow_undefined_flag_RC\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=$lt_no_undefined_flag_RC\n\n# Flag to hardcode \\$libdir into a binary during linking.\n# This must work even if \\$libdir does not exist\nhardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=$lt_hardcode_libdir_separator_RC\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=$hardcode_direct_RC\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting \\$shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=$hardcode_direct_absolute_RC\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=$hardcode_minus_L_RC\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=$hardcode_shlibpath_var_RC\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=$hardcode_automatic_RC\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=$inherit_rpath_RC\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=$link_all_deplibs_RC\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=$always_export_symbols_RC\n\n# The commands to list exported symbols.\nexport_symbols_cmds=$lt_export_symbols_cmds_RC\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=$lt_exclude_expsyms_RC\n\n# Symbols that must always be exported.\ninclude_expsyms=$lt_include_expsyms_RC\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=$lt_prelink_cmds_RC\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=$lt_postlink_cmds_RC\n\n# Specify filename containing input files.\nfile_list_spec=$lt_file_list_spec_RC\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=$hardcode_action_RC\n\n# ### END LIBTOOL TAG CONFIG: RC\n_LT_EOF\n\n ;;\n    \"po-directories\":C)\n    for ac_file in $CONFIG_FILES; do\n      # Support \"outfile[:infile[:infile...]]\"\n      case \"$ac_file\" in\n        *:*) ac_file=`echo \"$ac_file\"|sed 's%:.*%%'` ;;\n      esac\n      # PO directories have a Makefile.in generated from Makefile.in.in.\n      case \"$ac_file\" in */Makefile.in)\n        # Adjust a relative srcdir.\n        ac_dir=`echo \"$ac_file\"|sed 's%/[^/][^/]*$%%'`\n        ac_dir_suffix=/`echo \"$ac_dir\"|sed 's%^\\./%%'`\n        ac_dots=`echo \"$ac_dir_suffix\"|sed 's%/[^/]*%../%g'`\n        # In autoconf-2.13 it is called $ac_given_srcdir.\n        # In autoconf-2.50 it is called $srcdir.\n        test -n \"$ac_given_srcdir\" || ac_given_srcdir=\"$srcdir\"\n        case \"$ac_given_srcdir\" in\n          .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;\n          /*) top_srcdir=\"$ac_given_srcdir\" ;;\n          *)  top_srcdir=\"$ac_dots$ac_given_srcdir\" ;;\n        esac\n        # Treat a directory as a PO directory if and only if it has a\n        # POTFILES.in file. This allows packages to have multiple PO\n        # directories under different names or in different locations.\n        if test -f \"$ac_given_srcdir/$ac_dir/POTFILES.in\"; then\n          rm -f \"$ac_dir/POTFILES\"\n          test -n \"$as_me\" && echo \"$as_me: creating $ac_dir/POTFILES\" || echo \"creating $ac_dir/POTFILES\"\n          gt_tab=`printf '\\t'`\n          cat \"$ac_given_srcdir/$ac_dir/POTFILES.in\" | sed -e \"/^#/d\" -e \"/^[ ${gt_tab}]*\\$/d\" -e \"s,.*,     $top_srcdir/& \\\\\\\\,\" | sed -e \"\\$s/\\(.*\\) \\\\\\\\/\\1/\" > \"$ac_dir/POTFILES\"\n          POMAKEFILEDEPS=\"POTFILES.in\"\n          # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend\n          # on $ac_dir but don't depend on user-specified configuration\n          # parameters.\n          if test -f \"$ac_given_srcdir/$ac_dir/LINGUAS\"; then\n            # The LINGUAS file contains the set of available languages.\n            if test -n \"$OBSOLETE_ALL_LINGUAS\"; then\n              test -n \"$as_me\" && echo \"$as_me: setting ALL_LINGUAS in configure.in is obsolete\" || echo \"setting ALL_LINGUAS in configure.in is obsolete\"\n            fi\n            ALL_LINGUAS_=`sed -e \"/^#/d\" -e \"s/#.*//\" \"$ac_given_srcdir/$ac_dir/LINGUAS\"`\n            # Hide the ALL_LINGUAS assignment from automake < 1.5.\n            eval 'ALL_LINGUAS''=$ALL_LINGUAS_'\n            POMAKEFILEDEPS=\"$POMAKEFILEDEPS LINGUAS\"\n          else\n            # The set of available languages was given in configure.in.\n            # Hide the ALL_LINGUAS assignment from automake < 1.5.\n            eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'\n          fi\n          # Compute POFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)\n          # Compute UPDATEPOFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)\n          # Compute DUMMYPOFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).nop)\n          # Compute GMOFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)\n          case \"$ac_given_srcdir\" in\n            .) srcdirpre= ;;\n            *) srcdirpre='$(srcdir)/' ;;\n          esac\n          POFILES=\n          UPDATEPOFILES=\n          DUMMYPOFILES=\n          GMOFILES=\n          for lang in $ALL_LINGUAS; do\n            POFILES=\"$POFILES $srcdirpre$lang.po\"\n            UPDATEPOFILES=\"$UPDATEPOFILES $lang.po-update\"\n            DUMMYPOFILES=\"$DUMMYPOFILES $lang.nop\"\n            GMOFILES=\"$GMOFILES $srcdirpre$lang.gmo\"\n          done\n          # CATALOGS depends on both $ac_dir and the user's LINGUAS\n          # environment variable.\n          INST_LINGUAS=\n          if test -n \"$ALL_LINGUAS\"; then\n            for presentlang in $ALL_LINGUAS; do\n              useit=no\n              if test \"%UNSET%\" != \"$LINGUAS\"; then\n                desiredlanguages=\"$LINGUAS\"\n              else\n                desiredlanguages=\"$ALL_LINGUAS\"\n              fi\n              for desiredlang in $desiredlanguages; do\n                # Use the presentlang catalog if desiredlang is\n                #   a. equal to presentlang, or\n                #   b. a variant of presentlang (because in this case,\n                #      presentlang can be used as a fallback for messages\n                #      which are not translated in the desiredlang catalog).\n                case \"$desiredlang\" in\n                  \"$presentlang\"*) useit=yes;;\n                esac\n              done\n              if test $useit = yes; then\n                INST_LINGUAS=\"$INST_LINGUAS $presentlang\"\n              fi\n            done\n          fi\n          CATALOGS=\n          if test -n \"$INST_LINGUAS\"; then\n            for lang in $INST_LINGUAS; do\n              CATALOGS=\"$CATALOGS $lang.gmo\"\n            done\n          fi\n          test -n \"$as_me\" && echo \"$as_me: creating $ac_dir/Makefile\" || echo \"creating $ac_dir/Makefile\"\n          sed -e \"/^POTFILES =/r $ac_dir/POTFILES\" -e \"/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars\" -e \"s|@POFILES@|$POFILES|g\" -e \"s|@UPDATEPOFILES@|$UPDATEPOFILES|g\" -e \"s|@DUMMYPOFILES@|$DUMMYPOFILES|g\" -e \"s|@GMOFILES@|$GMOFILES|g\" -e \"s|@CATALOGS@|$CATALOGS|g\" -e \"s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g\" \"$ac_dir/Makefile.in\" > \"$ac_dir/Makefile\"\n          for f in \"$ac_given_srcdir/$ac_dir\"/Rules-*; do\n            if test -f \"$f\"; then\n              case \"$f\" in\n                *.orig | *.bak | *~) ;;\n                *) cat \"$f\" >> \"$ac_dir/Makefile\" ;;\n              esac\n            fi\n          done\n        fi\n        ;;\n      esac\n    done ;;\n\n  esac\ndone # for ac_tag\n\n\nas_fn_exit 0\n_ACEOF\nac_clean_files=$ac_clean_files_save\n\ntest $ac_write_fail = 0 ||\n  as_fn_error $? \"write failure creating $CONFIG_STATUS\" \"$LINENO\" 5\n\n\n# configure is writing to config.log, and then calls config.status.\n# config.status does its own redirection, appending to config.log.\n# Unfortunately, on DOS this fails, as config.log is still kept open\n# by configure, so config.status won't be able to write to it; its\n# output is simply discarded.  So we exec the FD to /dev/null,\n# effectively closing config.log, so it can be properly (re)opened and\n# appended to by config.status.  When coming back to configure, we\n# need to make the FD available again.\nif test \"$no_create\" != yes; then\n  ac_cs_success=:\n  ac_config_status_args=\n  test \"$silent\" = yes &&\n    ac_config_status_args=\"$ac_config_status_args --quiet\"\n  exec 5>/dev/null\n  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false\n  exec 5>>config.log\n  # Use ||, not &&, to avoid exiting from the if with $? = 1, which\n  # would make configure fail if this is the last instruction.\n  $ac_cs_success || as_fn_exit 1\nfi\n\n#\n# CONFIG_SUBDIRS section.\n#\nif test \"$no_recursion\" != yes; then\n\n  # Remove --cache-file, --srcdir, and --disable-option-checking arguments\n  # so they do not pile up.\n  ac_sub_configure_args=\n  ac_prev=\n  eval \"set x $ac_configure_args\"\n  shift\n  for ac_arg\n  do\n    if test -n \"$ac_prev\"; then\n      ac_prev=\n      continue\n    fi\n    case $ac_arg in\n    -cache-file | --cache-file | --cache-fil | --cache-fi \\\n    | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)\n      ac_prev=cache_file ;;\n    -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \\\n    | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* \\\n    | --c=*)\n      ;;\n    --config-cache | -C)\n      ;;\n    -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)\n      ac_prev=srcdir ;;\n    -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)\n      ;;\n    -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)\n      ac_prev=prefix ;;\n    -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)\n      ;;\n    --disable-option-checking)\n      ;;\n    *)\n      case $ac_arg in\n      *\\'*) ac_arg=`$as_echo \"$ac_arg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n      esac\n      as_fn_append ac_sub_configure_args \" '$ac_arg'\" ;;\n    esac\n  done\n\n  # Always prepend --prefix to ensure using the same prefix\n  # in subdir configurations.\n  ac_arg=\"--prefix=$prefix\"\n  case $ac_arg in\n  *\\'*) ac_arg=`$as_echo \"$ac_arg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n  esac\n  ac_sub_configure_args=\"'$ac_arg' $ac_sub_configure_args\"\n\n  # Pass --silent\n  if test \"$silent\" = yes; then\n    ac_sub_configure_args=\"--silent $ac_sub_configure_args\"\n  fi\n\n  # Always prepend --disable-option-checking to silence warnings, since\n  # different subdirs can have different --enable and --with options.\n  ac_sub_configure_args=\"--disable-option-checking $ac_sub_configure_args\"\n\n  ac_popdir=`pwd`\n  for ac_dir in : $subdirs; do test \"x$ac_dir\" = x: && continue\n\n    # Do not complain, so a configure script can configure whichever\n    # parts of a large source tree are present.\n    test -d \"$srcdir/$ac_dir\" || continue\n\n    ac_msg=\"=== configuring in $ac_dir (`pwd`/$ac_dir)\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: $ac_msg\" >&5\n    $as_echo \"$ac_msg\" >&6\n    as_dir=\"$ac_dir\"; as_fn_mkdir_p\n    ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`$as_echo \"$ac_dir\" | sed 's|^\\.[\\\\/]||'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`$as_echo \"$ac_dir_suffix\" | sed 's|/[^\\\\/]*|/..|g;s|/||'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n\n    cd \"$ac_dir\"\n\n    # Check for guested configure; otherwise get Cygnus style configure.\n    if test -f \"$ac_srcdir/configure.gnu\"; then\n      ac_sub_configure=$ac_srcdir/configure.gnu\n    elif test -f \"$ac_srcdir/configure\"; then\n      ac_sub_configure=$ac_srcdir/configure\n    elif test -f \"$ac_srcdir/configure.in\"; then\n      # This should be Cygnus configure.\n      ac_sub_configure=$ac_aux_dir/configure\n    else\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: no configuration information is in $ac_dir\" >&5\n$as_echo \"$as_me: WARNING: no configuration information is in $ac_dir\" >&2;}\n      ac_sub_configure=\n    fi\n\n    # The recursion is here.\n    if test -n \"$ac_sub_configure\"; then\n      # Make the cache file name correct relative to the subdirectory.\n      case $cache_file in\n      [\\\\/]* | ?:[\\\\/]* ) ac_sub_cache_file=$cache_file ;;\n      *) # Relative name.\n\tac_sub_cache_file=$ac_top_build_prefix$cache_file ;;\n      esac\n\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir\" >&5\n$as_echo \"$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir\" >&6;}\n      # The eval makes quoting arguments work.\n      eval \"\\$SHELL \\\"\\$ac_sub_configure\\\" $ac_sub_configure_args \\\n\t   --cache-file=\\\"\\$ac_sub_cache_file\\\" --srcdir=\\\"\\$ac_srcdir\\\"\" ||\n\tas_fn_error $? \"$ac_sub_configure failed for $ac_dir\" \"$LINENO\" 5\n    fi\n\n    cd \"$ac_popdir\"\n  done\nfi\nif test -n \"$ac_unrecognized_opts\" && test \"$enable_option_checking\" != no; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts\" >&5\n$as_echo \"$as_me: WARNING: unrecognized options: $ac_unrecognized_opts\" >&2;}\nfi\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/configure.ac",
    "content": "dnl Copyright (C) 1999-2011, 2016 Free Software Foundation, Inc.\ndnl This file is part of the GNU LIBICONV Library.\ndnl\ndnl The GNU LIBICONV Library is free software; you can redistribute it\ndnl and/or modify it under the terms of the GNU Library General Public\ndnl License as published by the Free Software Foundation; either version 2\ndnl of the License, or (at your option) any later version.\ndnl\ndnl The GNU LIBICONV Library is distributed in the hope that it will be\ndnl useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\ndnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\ndnl Library General Public License for more details.\ndnl\ndnl You should have received a copy of the GNU Library General Public\ndnl License along with the GNU LIBICONV Library; see the file COPYING.LIB.\ndnl If not, see <http://www.gnu.org/licenses/>.\n\nAC_PREREQ([2.60])\nAC_INIT([libiconv], [1.15])\nAC_CONFIG_SRCDIR([lib/iconv.c])\nAC_CONFIG_AUX_DIR([build-aux])\nAM_INIT_AUTOMAKE\nAC_CONFIG_HEADERS([config.h lib/config.h])\nAC_PROG_MAKE_SET\n\ndnl           checks for basic programs\n\nAC_PROG_CC\nAC_PROG_CPP\nAC_PROG_INSTALL\n\nAC_PATH_PROG([STRIP], [strip], [:]) dnl sets STRIP\nAM_PROG_INSTALL_STRIP               dnl overrides STRIP when cross-compiling,\n                                    dnl sets INSTALL_STRIP_PROGRAM\n\ndnl           check for host type\n\nAC_CANONICAL_HOST\n\ndnl           hack\n\ndnl Hack to work around limitations of automake and error.m4 regarding LIBOBJS.\ndnl \"srclib/Makefile.am:32: automatically discovered file `error.h' should not be explicitly mentioned\"\nAC_DEFUN([my_SRCLIB_OBJ],[SRCLIBOBJS=\"$SRCLIBOBJS $1.$ac_objext\"])\nAC_DEFUN([my_SRCLIB_REPLACE_FUNCS], [AC_CHECK_FUNCS([$1], , [my_SRCLIB_OBJ($ac_func)])])\nm4_pushdef([AC_LIBOBJ], m4_defn([my_SRCLIB_OBJ]))\nm4_pushdef([AC_REPLACE_FUNCS], m4_defn([my_SRCLIB_REPLACE_FUNCS]))\n\ndnl           checks for UNIX variants that set DEFS\n\ngl_EARLY\n\ndnl           checks for installer options\n\ngl_RELOCATABLE([srclib])\n\nAC_ARG_ENABLE([extra-encodings],\n  [AC_HELP_STRING([--enable-extra-encodings],\n                  [add support for a few rarely used encodings])],\n  [AC_DEFINE([ENABLE_EXTRA], 1,\n             [Define to 1 to enable a few rarely used encodings.])\n   USE_EXTRA_ENCODINGS=yes],\n  [USE_EXTRA_ENCODINGS=no])\nAC_SUBST([USE_EXTRA_ENCODINGS])\n\ndnl           checks for programs\n\nCL_PROG_CP\nCL_PROG_LN\nAC_PROG_LN_S\n\ndnl           checks for compiler output filename suffixes\n\nAC_OBJEXT\nAC_EXEEXT\n\ndnl           check for build configuration\n\nLT_INIT([disable-static win32-dll])\n\ndnl Prepares the libtool configuration for handling of Windows resources, and\ndnl sets the RC variable to a program that compiles Windows resource files.\nLT_LANG([Windows Resource])\n\ndnl On mingw and Cygwin, we can activate special Makefile rules which add\ndnl version information to the executables.\ncase \"$host_os\" in\n  mingw* | cygwin*) is_woe32=yes ;;\n  *) is_woe32=no ;;\nesac\nWOE32=$is_woe32\nAC_SUBST([WOE32])\nif test $WOE32 = yes; then\n  dnl Check for a program that compiles Windows resource files.\n  AC_CHECK_TOOL([WINDRES], [windres])\nfi\n\ngl_VISIBILITY\nAM_ICONV\nAM_GNU_GETTEXT([external], [need-ngettext])\n\ndnl           checks for typedefs\n\nAC_TYPE_MBSTATE_T\ngt_TYPE_WCHAR_T\n\ndnl           checks for header files, functions and declarations\n\nif test \"$am_cv_func_iconv\" = yes -a -n \"$am_cv_proto_iconv_arg1\"; then\n  ICONV_CONST=\"const\"\nelse\n  ICONV_CONST=\"\"\nfi\nAC_SUBST([ICONV_CONST])\n\nif test $gt_cv_c_wchar_t = yes; then\n  HAVE_WCHAR_T=1\nelse\n  HAVE_WCHAR_T=0\nfi\nAC_SUBST([HAVE_WCHAR_T])\n\nAC_CHECK_FUNCS([getc_unlocked mbrtowc wcrtomb mbsinit setlocale])\n\ndnl mbstate_t is used if HAVE_WCRTOMB || HAVE_MBRTOWC, see lib/loop_wchar.h.\nif test $ac_cv_func_wcrtomb = yes || test $ac_cv_func_mbrtowc = yes; then\n  USE_MBSTATE_T=1\nelse\n  USE_MBSTATE_T=0\nfi\nAC_SUBST([USE_MBSTATE_T])\n\nAC_CACHE_CHECK([whether <wchar.h> is standalone],\n  [gl_cv_header_wchar_h_standalone],\n  [AC_COMPILE_IFELSE(\n     [AC_LANG_PROGRAM(\n        [[#include <wchar.h>\n          wchar_t w;]],\n        [[]])],\n    [gl_cv_header_wchar_h_standalone=yes],\n    [gl_cv_header_wchar_h_standalone=no])])\nif test $gl_cv_header_wchar_h_standalone = yes; then\n  BROKEN_WCHAR_H=0\nelse\n  BROKEN_WCHAR_H=1\nfi\nAC_SUBST([BROKEN_WCHAR_H])\n\nAC_REPLACE_FUNCS([memmove])\n\nAM_LANGINFO_CODESET\ngl_FCNTL_O_FLAGS\n\nAC_EILSEQ\n\nCL_WORDS_LITTLEENDIAN\n\ngl_INIT\n\ndnl           hack\n\ndnl End of hack to work around limitations of automake and error.m4.\nm4_popdef([AC_REPLACE_FUNCS])\nm4_popdef([AC_LIBOBJ])\nAC_SUBST([SRCLIBOBJS])\n\ndnl Compilation on mingw and Cygwin needs special Makefile rules, because\ndnl 1. when we install a shared library, we must arrange to export\ndnl    auxiliary pointer variables for every exported variable,\ndnl 2. when we install a shared library and a static library simultaneously,\ndnl    the include file specifies __declspec(dllimport) and therefore we\ndnl    must arrange to define the auxiliary pointer variables for the\ndnl    exported variables _also_ in the static library.\nif test \"$enable_shared\" = yes; then\n  case \"$host_os\" in\n    mingw* | cygwin*) is_woe32dll=yes ;;\n    *) is_woe32dll=no ;;\n  esac\nelse\n  is_woe32dll=no\nfi\nWOE32DLL=$is_woe32dll\nAC_SUBST([WOE32DLL])\nif test $is_woe32dll = yes; then\n  DLL_VARIABLE='__declspec (dllimport)'\nelse\n  DLL_VARIABLE=\nfi\nAC_SUBST([DLL_VARIABLE])\n\nAH_BOTTOM([\n/* On Windows, variables that may be in a DLL must be marked specially.  */\n#if defined _MSC_VER && defined _DLL\n# define DLL_VARIABLE __declspec (dllimport)\n#else\n# define DLL_VARIABLE\n#endif\n])\n\nAC_CONFIG_SUBDIRS([libcharset])\nAC_CONFIG_SUBDIRS([preload])\nAC_CONFIG_FILES([Makefile])\nAC_CONFIG_FILES([lib/Makefile])\nAC_CONFIG_FILES([srclib/Makefile])\nAC_CONFIG_FILES([src/Makefile])\nAC_CONFIG_FILES([po/Makefile.in])\nAC_CONFIG_FILES([man/Makefile])\nif test -d \"${srcdir}/tests\"; then\n  AC_CONFIG_FILES([tests/Makefile])\nfi\nAC_CONFIG_FILES([include/iconv.h:include/iconv.h.build.in])\nAC_CONFIG_FILES([include/iconv.h.inst:include/iconv.h.in])\nAC_OUTPUT\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/Makefile.maint",
    "content": "# Maintainer's Makefile                                         -*-Makefile-*-\n\ntop_srcdir = ..\nsrcdir = .\n\nSHELL = /bin/sh\n\nall: README fnchange.lst\n\nfnchange.lst: fnchange.in $(top_srcdir)/configure.ac\n\trm -f $@; \\\n\tPACKAGE=`grep \"^AM_INIT_AUTOMAKE(\" $(top_srcdir)/configure.ac | sed -e 's/^.*(\\([A-Za-z]*\\),.*$$/\\1/'`; \\\n\tVERSION=`grep \"^AM_INIT_AUTOMAKE(\" $(top_srcdir)/configure.ac | sed -e 's/^.*,[ \t]\\([0-9.]*\\).*$$/\\1/'`; \\\n\tsed \\\n\t    -e '/^#/d' \\\n\t    -e \"s/@V@/$${PACKAGE}-$${VERSION}/g\" \\\n\t  $(srcdir)/fnchange.in > t-$@\n\tmv t-$@ $@\n\nREADME: README.in $(top_srcdir)/configure.ac\n\trm -f $@; \\\n\tPACKAGE=`grep \"^AM_INIT_AUTOMAKE(\" $(top_srcdir)/configure.ac | sed -e 's/^.*(\\([A-Za-z]*\\),.*$$/\\1/'`; \\\n\tVERSION=`grep \"^AM_INIT_AUTOMAKE(\" $(top_srcdir)/configure.ac | sed -e 's/^.*,[ \t]\\([0-9.]*\\).*$$/\\1/'`; \\\n\tpackageversion=`echo \"$${VERSION}\" | sed 's/\\.//g'`; \\\n\ttreeversion=`echo \"$${VERSION}\" | sed 's/\\.//g'`; \\\n\tsed \\\n\t    -e \"s/@V@/$${PACKAGE}-$${VERSION}/g\" \\\n\t    -e \"s/@VER@/$${VERSION}/g\" \\\n\t    -e \"s/@packageversion@/$$packageversion/g\" \\\n\t    -e \"s/@treeversion@/$$treeversion/g\" \\\n\t  $(srcdir)/README.in > t-$@\n\tmv t-$@ $@\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/README",
    "content": "This is a port of GNU Libiconv 1.11 to MSDOS/DJGPP.\n\n1.:     DJGPP specific changes.\n        =======================\n        There are no DJGPP specific changes. This package should\n        configure and compile out-of-the-box.\n        Please read the documentation to become familiar with this\n        product.\n\n\n2.:     Installing the binary package.\n        ==============================\n\n2.1.:   Copy the binary distribution into the top DJGPP installation\n        directory and unzip the binary distribution running *ONE* of\n        the following commands:\n          unzip32 licv111b.zip      or\n          djtarx licv111b.zip       or\n          pkunzip -d licv111b.zip\n\n\n\n3.:     Building the binaries from sources.\n        ===================================\n\n3.1.:   To build the binaries you will need the following binary packages:\n          djdev203.zip, bsh204b.zip, gcc2952b.zip,\n          bnu210b.zip, mak3791b.zip, fil316b.zip,\n          shl112b.zip, txt20b.zip, txi40b.zip,\n          grep24b.zip and sed302b.zip\n\n\n        All this packages can be found in the v2gnu directory of any\n        Simtel.NET mirror.\n        You will need bsh204b.zip and *NOT* a prior version or the build will fail.\n        The same applies to djdev203.zip. You *MUST* use the updated versions of\n        fil316b.zip (date: 2000-05-30) and shl112b.zip (date: 2000-08-11). This\n        updated versions have been recompiled with djdev203.zip and know about\n        the \"/dev/env\" functionality introduced with djdev203.zip. All the other\n        packages are the ones I have used to build the binaries from this sources.\n        Previuos and/or later versions of this packages may do the job as well but\n        I have not tested this.\n\n3.2.:   Create a temporary directory and copy the source package: licv111s.zip\n        into the temporary directory. If you download the source distribution\n        from one of the DJGPP archives, just unzip it preserving the directory\n        structure, runnig ONE of the following commands:\n          unzip32 licv111s.zip      or\n          djtarx licv111s.zip       or\n          pkunzip -d licv111s.zip\n\n        Source distributions downloaded from one of the GNU FTP sites need\n        some more work to unpack.  First, you MUST use the `djtar' program to\n        unzip the package.  That's because some file names in the official\n        distributions need to be changed to avoid problems on the various\n        platforms supported by DJGPP.  `djtar' can rename files on the fly\n        given a file with name mappings.  The distribution includes a file\n        `djgpp/fnchange.lst' with the necessary mappings.  So you need first\n        to retrieve that file, and then invoke `djtar' to unpack the\n        distribution.  Here's how:\n\n          djtar -x -p -o libiconv-1.7/djgpp/fnchange.lst libiconv-1.7.tar.gz > lst\n          djtar -x -n lst libiconv-1.7.tar.gz\n\n        (The name of the distribution archive and the top-level directory will\n        be different for versions other than 1.7.)\n\n3.3.:   The package is preconfigured for djdev203. To build the products you\n        should run the following command:\n          make\n\n        After the compilation has finished, you can check the products\n        running the command:\n          make check\n\n        To install the products run the command:\n          make install\n\n        This will install the products (iconv.exe iconv.h localcharset.h libconv.a\n        libcharset.a iconv.1 iconv.3 iconv_open.3 iconv_close.3) into your DJGPP\n        installation tree. As usual, prefix is defined as \"/dev/env/DJDIR\".\n        If you prefer to install into same other directory run the command:\n          make install prefix=z:/some/other/dir\n\n        Of course, you should replace \"z:/some/other/dir\" by an appropriate path\n        that will meet your requeriments.\n\n3.4.:   If you need/want to reconfigure the package you will have to run the\n        following commands:\n          make distclean\n          djgpp\\config\n\n        Please note that you *MUST* use the \"distclean\" option or the config.cache\n        file will *NOT* be deleted. In this case you are *NOT* reconfiguring\n        because the configuration informations is read from the cache file instead\n        of being newly computed.\n        To build the programs in a directory other than where the sources are,\n        you must add the parameter that specifies the source directory,\n        e.g:\n          x:\\src\\gnu\\libiconv.111\\djgpp\\config x:/src/gnu/libiconv.111\n\n        Lets assume you want to build the binaries in a directory placed on a \n        different drive (z:\\build in this case) from where the sources are,\n        then you will run the following commands:\n          z:\n          md \\build\n          cd \\build\n          x:\\src\\gnu\\libiconv.111\\djgpp\\config x:/src/gnu/libiconv.111\n\n        You *MUST* use forward slashes to specify the source directory.\n        After having configured the package run the folowing commands to create\n        the binaries and docs and install them:\n          make\n          make check\n          make install\n\n        Send suggestions and bug reports concerning the DJGPP port to\n        comp.os.msdos.djgpp or djgpp@delorie.com. Libiconv specific bugs\n        must be reported to Bruno Haible <haible@clisp.cons.org>.\n\n\n          Guerrero, Juan Manuel <st001906@hrz1.hrz.tu-darmstadt.de>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/README.in",
    "content": "This is a port of GNU Libiconv @VER@ to MSDOS/DJGPP.\n\n1.:     DJGPP specific changes.\n        =======================\n        There are no DJGPP specific changes. This package should\n        configure and compile out-of-the-box.\n        Please read the documentation to become familiar with this\n        product.\n\n\n2.:     Installing the binary package.\n        ==============================\n\n2.1.:   Copy the binary distribution into the top DJGPP installation\n        directory and unzip the binary distribution running *ONE* of\n        the following commands:\n          unzip32 licv@packageversion@b.zip      or\n          djtarx licv@packageversion@b.zip       or\n          pkunzip -d licv@packageversion@b.zip\n\n\n\n3.:     Building the binaries from sources.\n        ===================================\n\n3.1.:   To build the binaries you will need the following binary packages:\n          djdev203.zip (patchlevel 2),\n          bshNNNb.zip, gccNNNb.zip, bnuNNNb.zip, makNNNb.zip, filNNNb.zip,\n          shlNNNb.zip, txtNNNb.zip, txiNNNb.zip, grepNNNb.zip, sedNNNb.zip,\n          and difNNN.zip\n\n        NNN represents the latest version number of the binary packages. All\n        this packages can be found in the current/v2gnu/ directory of any\n        ftp.delorie.com mirror.\n\n3.2.:   Create a temporary directory and copy the source package: licv@packageversion@s.zip\n        into the temporary directory. If you download the source distribution\n        from one of the DJGPP archives, just unzip it preserving the directory\n        structure, runnig ONE of the following commands:\n          unzip32 licv@packageversion@s.zip      or\n          djtarx licv@packageversion@s.zip       or\n          pkunzip -d licv@packageversion@s.zip\n\n        Source distributions downloaded from one of the GNU FTP sites need\n        some more work to unpack. First, you MUST use the `djtar' program\n        to unzip the package. That's because some file names in the official\n        distributions need to be changed to avoid problems on the various\n        platforms supported by DJGPP. `djtar' can rename files on the fly\n        given a file with name mappings. The distribution includes a file\n        `djgpp/fnchange.lst' with the necessary mappings. So you need first\n        to retrieve that file, and then invoke `djtar' to unpack the\n        distribution. Here's how:\n\n          djtar -x -p -o @V@/djgpp/fnchange.lst @V@.tar.gz > lst\n          djtar -x -n lst @V@.tar.gz\n\n        (The name of the distribution archive and the top-level directory will\n        be different for versions other than @VER@.)\n\n3.3.:   If you have downloaded the source package from one of the GNU FTP sites\n        you will have to configure the package running the command:\n          djgpp\\config.bat\n\n3.4.:   If you have downloaded the source package from one of the delorie FTP\n        sites the package is already preconfigured for djdev203 or later. In\n        any case, to build the products you must run the following command:\n          make\n\n        After the compilation has finished, you can check the products\n        running the command:\n          make check\n\n        To install the products run the command:\n          make install\n\n        This will install the products (iconv.exe iconv.h localcharset.h libconv.a\n        libcharset.a iconv.1 iconv.3 iconv_open.3 iconv_close.3) into your DJGPP\n        installation tree. As usual, prefix is defined as \"/dev/env/DJDIR\".\n        If you prefer to install into same other directory run the command:\n          make install prefix=z:/some/other/dir\n\n        Of course, you should replace \"z:/some/other/dir\" by an appropriate path\n        that will meet your requeriments.\n\n3.5.:   If for some reason you want to reconfigure the package cd into the top\n        srcdir (libiconv.@treeversion@) and run the following commands:\n          del djgpp\\config.cache\n          make distclean\n          djgpp\\config\n\n        Please note that you *MUST* delete the config.cache file in the djgpp\n        subdir or you will not really reconfigure the sources because the\n        configuration informations will be read from the cache file instead\n        of being newly computed.\n        To build the programs in a directory other than where the sources are,\n        you must add the parameter that specifies the source directory,\n        e.g:\n          x:\\src\\gnu\\libiconv.@treeversion@\\djgpp\\config x:/src/gnu/libiconv.@treeversion@\n\n        Lets assume you want to build the binaries in a directory placed on a \n        different drive (z:\\build in this case) from where the sources are,\n        then you will run the following commands:\n          z:\n          md \\build\n          cd \\build\n          x:\\src\\gnu\\libiconv.@treeversion@\\djgpp\\config x:/src/gnu/libiconv.@treeversion@\n\n        You *MUST* use forward slashes to specify the source directory.\n        After having configured the package run the folowing commands to create\n        the binaries and docs and install them:\n          make\n          make check\n          make install\n\n        Send suggestions and bug reports concerning the DJGPP port to\n        comp.os.msdos.djgpp or djgpp@delorie.com. Libiconv specific bugs\n        must be reported to <bug-gnu-libiconv@gnu.org>.\n\n\n          Guerrero, Juan Manuel <juan.guerrero@gmx.de>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/config.bat",
    "content": "@echo off\nRem Configure libiconv for DJGPP.\n\nRem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line\nRem format, or else stock DOS/Windows shells will refuse to run it.\n\necho Configuring GNU libiconv for DJGPP v2.x...\nRem The SmallEnv tests protect against fixed and too small size\nRem of the environment in stock DOS shell.\n\nRem Find out if NLS is wanted or not,\nRem if dependency-tracking is wanted or not,\nRem if caching is wanted or not\nRem and where the sources are.\nRem We always default to NLS support,\nRem no dependency tracking\nRem and to in place configuration.\nset ARGS=\nset NLS=disabled\nif not \"%NLS%\" == \"disabled\" goto SmallEnv\nset CACHING=enabled\nif not \"%CACHING%\" == \"enabled\" goto SmallEnv\nset DEPENDENCY_TRACKING=disabled\nif not \"%DEPENDENCY_TRACKING%\" == \"disabled\" goto SmallEnv\nset LIBICONV_PREFIX=disabled\nif not \"%LIBICONV_PREFIX%\" == \"disabled\" goto SmallEnv\nset LIBINTL_PREFIX=disabled\nif not \"%LIBINTL_PREFIX%\" == \"disabled\" goto SmallEnv\nset HTML=enabled\nif not \"%HTML%\" == \"enabled\" goto SmallEnv\nset XSRC=.\nif not \"%XSRC%\" == \".\" goto SmallEnv\n\nRem Loop over all arguments.\nRem Special arguments are: NLS, XSRC, CACHE, STATIC_LIBS, LIBICONV_PREFIX, LIBINTL_PREFIX and DEPS.\nRem All other arguments are stored into ARGS.\n:ArgLoop\nif \"%1\" == \"nls\" goto NextArgument\nif \"%1\" == \"NLS\" goto NextArgument\nif \"%1\" == \"no-nls\" goto NoNLS\nif \"%1\" == \"no-NLS\" goto NoNLS\nif \"%1\" == \"NO-NLS\" goto NoNLS\ngoto CachingOption\n:NoNLS\nif \"%1\" == \"no-nls\" set NLS=disabled\nif \"%1\" == \"no-NLS\" set NLS=disabled\nif \"%1\" == \"NO-NLS\" set NLS=disabled\nif not \"%NLS%\" == \"disabled\" goto SmallEnv\ngoto NextArgument\n:CachingOption\nif \"%1\" == \"cache\" goto NextArgument\nif \"%1\" == \"CACHE\" goto NextArgument\nif \"%1\" == \"no-cache\" goto NoCaching\nif \"%1\" == \"no-CACHE\" goto NoCaching\nif \"%1\" == \"NO-CACHE\" goto NoCaching\ngoto DependencyOption\n:NoCaching\nif \"%1\" == \"no-cache\" set CACHING=disabled\nif \"%1\" == \"no-CACHE\" set CACHING=disabled\nif \"%1\" == \"NO-CACHE\" set CACHING=disabled\nif not \"%CACHING%\" == \"disabled\" goto SmallEnv\ngoto NextArgument\n:DependencyOption\nif \"%1\" == \"no-dep\" goto NextArgument\nif \"%1\" == \"no-DEP\" goto NextArgument\nif \"%1\" == \"NO-DEP\" goto NextArgument\nif \"%1\" == \"dep\" goto DependecyTraking\nif \"%1\" == \"DEP\" goto DependecyTraking\ngoto LibiconvPrefixOption\n:DependecyTraking\nif \"%1\" == \"dep\" set DEPENDENCY_TRACKING=enabled\nif \"%1\" == \"DEP\" set DEPENDENCY_TRACKING=enabled\nif not \"%DEPENDENCY_TRACKING%\" == \"enabled\" goto SmallEnv\ngoto NextArgument\n:LibiconvPrefixOption\nif \"%1\" == \"no-libiconvprefix\" goto NextArgument\nif \"%1\" == \"no-LIBICONVPREFIX\" goto NextArgument\nif \"%1\" == \"NO-LIBICONVPREFIX\" goto NextArgument\nif \"%1\" == \"libiconvprefix\" goto WithLibiconvPrefix\nif \"%1\" == \"LIBICONVPREFIX\" goto WithLibiconvPrefix\ngoto LibintlPrefixOption\n:WithLibiconvPrefix\nif \"%1\" == \"libiconvprefix\" set LIBICONV_PREFIX=enabled\nif \"%1\" == \"LIBICONVPREFIX\" set LIBICONV_PREFIX=enabled\nif not \"%LIBICONV_PREFIX%\" == \"enabled\" goto SmallEnv\ngoto NextArgument\n:LibintlPrefixOption\nif \"%1\" == \"no-libiconvprefix\" goto NextArgument\nif \"%1\" == \"no-LIBICONVPREFIX\" goto NextArgument\nif \"%1\" == \"NO-LIBICONVPREFIX\" goto NextArgument\nif \"%1\" == \"libintlprefix\" goto _WithLibintlPrefix\nif \"%1\" == \"LIBINTLPREFIX\" goto _WithLibintlPrefix\ngoto HTMLOption\n:_WithLibintlPrefix\nif \"%1\" == \"libintlprefix\" set LIBINTL_PREFIX=enabled\nif \"%1\" == \"LIBINTLPREFIX\" set LIBINTL_PREFIX=enabled\nif not \"%LIBINTL_PREFIX%\" == \"enabled\" goto SmallEnv\n:HTMLOption\nif \"%1\" == \"withhtml\" goto NextArgument\nif \"%1\" == \"withHTML\" goto NextArgument\nif \"%1\" == \"WITHHTML\" goto NextArgument\nif \"%1\" == \"withouthtml\" goto _WithoutHTML\nif \"%1\" == \"withoutHTML\" goto _WithoutHTML\nif \"%1\" == \"WITHOUTHTML\" goto _WithoutHTML\ngoto SrcDirOption\n:_WithoutHTML\nif \"%1\" == \"withouthtml\" set HTML=disabled\nif \"%1\" == \"withoutHTML\" set HTML=disabled\nif \"%1\" == \"WITHOUTHTML\" set HTML=disabled\nif not \"%HTML%\" == \"disabled\" goto SmallEnv\ngoto NextArgument\n:SrcDirOption\necho %1 | grep -q \"/\"\nif errorlevel 1 goto CollectArgument\nset XSRC=%1\nif not \"%XSRC%\" == \"%1\" goto SmallEnv\ngoto NextArgument\n:CollectArgument\nset _ARGS=%ARGS% %1\nif not \"%_ARGS%\" == \"%ARGS% %1\" if not \"%_ARGS%\" == \"%ARGS%%1\" goto SmallEnv\necho %_ARGS% | grep -q \"[^ ]\"\nif not errorlevel 0 set ARGS=%_ARGS%\nset _ARGS=\n:NextArgument\nshift\nif not \"%1\" == \"\" goto ArgLoop\n\nRem Create an arguments file for the configure script.\necho --srcdir=%XSRC% > arguments\nif \"%CACHING%\" == \"enabled\"              echo --cache-file=%XSRC%/djgpp/config.cache >> arguments\nif \"%DEPENDENCY_TRACKING%\" == \"enabled\"  echo --enable-dependency-tracking >> arguments\nif \"%DEPENDENCY_TRACKING%\" == \"disabled\" echo --disable-dependency-tracking >> arguments\nif \"%LIBICONV_PREFIX%\" == \"enabled\"      echo --with-libiconv-prefix >> arguments\nif \"%LIBICONV_PREFIX%\" == \"disabled\"     echo --without-libiconv-prefix >> arguments\nif \"%LIBINTL_PREFIX%\" == \"enabled\"       echo --with-libintl-prefix >> arguments\nif \"%LIBINTL_PREFIX%\" == \"disabled\"      echo --without-libintl-prefix >> arguments\nif \"%HTML%\" == \"enabled\"                 echo --enable-html >> arguments\nif \"%HTML%\" == \"disabled\"                echo --disable-html >> arguments\nif not \"%ARGS%\" == \"\"                    echo %ARGS% >> arguments\nset ARGS=\nset CACHING=\nset DEPENDENCY_TRACKING=\nset LIBICONV_PREFIX=\nset LIBINTL_PREFIX=\nset HTML=\n\nRem Find out where the sources are\nif \"%XSRC%\" == \".\" goto InPlace\n\n:NotInPlace\nredir -e /dev/null update %XSRC%/configure.org ./configure\ntest -f ./configure\nif errorlevel 1 update %XSRC%/configure ./configure\ntest -d ./libcharset\nif errorlevel 1 md libcharset\nredir -e /dev/null update %XSRC%/libcharset/configure.org ./libcharset/configure\ntest -f ./libcharset/configure\nif errorlevel 1 update %XSRC%/libcharset/configure ./libcharset/configure\n\n:InPlace\nRem Update configuration files\necho Updating configuration scripts...\ntest -f ./configure.org\nif errorlevel 1 update ./configure ./configure.org\nsed -f %XSRC%/djgpp/config.sed ./configure.org > configure\nif errorlevel 1 goto SedError\ntest -f ./libcharset/configure.org\nif errorlevel 1 update ./libcharset/configure ./libcharset/configure.org\nsed -f %XSRC%/djgpp/config.sed ./libcharset/configure.org > configure.tmp\nif errorlevel 1 goto SedError\nRem The following is needed because the toplevel configure script calls the\nRem %XSRC%/libcharset/configure script instead of ./libcharset/configure.\ntest -f %XSRC%/libcharset/configure.org\nif errorlevel 1 update %XSRC%/libcharset/configure %XSRC%/libcharset/configure.org\nupdate configure.tmp %XSRC%/libcharset/configure\nrm ./configure.tmp\n\nRem Make sure they have a config.site file\nset CONFIG_SITE=%XSRC%/djgpp/config.site\nif not \"%CONFIG_SITE%\" == \"%XSRC%/djgpp/config.site\" goto SmallEnv\n\nRem Make sure crucial file names are not munged by unpacking\ntest -f %XSRC%/config.h.in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/config.h.in %XSRC%/config.h-in\ntest -f %XSRC%/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/config.h %XSRC%/config.h-in\ntest -f %XSRC%/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/configh.in %XSRC%/config.h-in\ntest -f %XSRC%/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/config_h.in %XSRC%/config.h-in\ntest -f %XSRC%/lib/config.h.in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/lib/config.h.in %XSRC%/lib/config.h-in\ntest -f %XSRC%/lib/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/lib/config.h %XSRC%/lib/config.h-in\ntest -f %XSRC%/lib/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/lib/configh.in %XSRC%/lib/config.h-in\ntest -f %XSRC%/lib/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/lib/config_h.in %XSRC%/lib/config.h-in\ntest -f %XSRC%/include/iconv.h.in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/iconv.h.in %XSRC%/include/iconv.h-in\ntest -f %XSRC%/include/iconv.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/iconv.h %XSRC%/include/iconv.h-in\ntest -f %XSRC%/include/iconv.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/iconvh.in %XSRC%/include/iconv.h-in\ntest -f %XSRC%/include/iconv.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/iconv_h.in %XSRC%/include/iconv.h-in\ntest -f %XSRC%/include/iconv.h.build.in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/iconv.h.build.in %XSRC%/include/iconv.h-build-in\ntest -f %XSRC%/include/iconv.h-build-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/iconv.h %XSRC%/include/iconv.h-build-in\ntest -f %XSRC%/include/iconv.h-build-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/iconvh.build %XSRC%/include/iconv.h-build-in\ntest -f %XSRC%/include/iconv.h-build-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/iconv_h.build %XSRC%/include/iconv.h-build-in\ntest -f %XSRC%/libcharset/config.h.in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/config.h.in %XSRC%/libcharset/config.h-in\ntest -f %XSRC%/libcharset/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/config.h %XSRC%/libcharset/config.h-in\ntest -f %XSRC%/libcharset/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/configh.in %XSRC%/libcharset/config.h-in\ntest -f %XSRC%/libcharset/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/config_h.in %XSRC%/libcharset/config.h-in\ntest -f %XSRC%/libcharset/include/libcharset.h.in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/libcharset.h.in %XSRC%/libcharset/include/libcharset.h-in\ntest -f %XSRC%/libcharset/include/libcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/libcharset.h %XSRC%/libcharset/include/libcharset.h-in\ntest -f %XSRC%/libcharset/include/libcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/libcharseth.in %XSRC%/libcharset/include/libcharset.h-in\ntest -f %XSRC%/libcharset/include/libcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/libcharset_h.in %XSRC%/libcharset/include/libcharset.h-in\ntest -f %XSRC%/libcharset/include/localcharset.h.in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/localcharset.h.in %XSRC%/libcharset/include/localcharset.h-in\ntest -f %XSRC%/libcharset/include/localcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/localcharset.h %XSRC%/libcharset/include/localcharset.h-in\ntest -f %XSRC%/libcharset/include/localcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/localcharseth.in %XSRC%/libcharset/include/localcharset.h-in\ntest -f %XSRC%/libcharset/include/localcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/localcharset_h.in %XSRC%/libcharset/include/localcharset.h-in\ntest -f %XSRC%/libcharset/include/localcharset.h.build.in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/localcharset.h.build.in %XSRC%/libcharset/include/localcharset.h-build-in\ntest -f %XSRC%/libcharset/include/localcharset.h-build-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/localcharset.h %XSRC%/libcharset/include/localcharset.h-build-in\ntest -f %XSRC%/libcharset/include/localcharset.h-build-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/localcharseth.build %XSRC%/libcharset/include/localcharset.h-build-in\ntest -f %XSRC%/libcharset/include/localcharset.h-build-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/libcharset/include/localcharset_h.build %XSRC%/libcharset/include/localcharset.h-build-in\n\nRem DJGPP needs ICONV_CONST set to const.\nsed \"s/^#undef ICONV_CONST/#define ICONV_CONST const/\" %XSRC%/config.h-in > config.tmp\nmv -f config.tmp %XSRC%/config.h-in\n\nRem All fixes needed to get the package configured, compiled and tested.\nRem 1:  Change the stateless-check script so it knowns about the\nRem     new filenames.\nRem 2:  Ditto for Makefile.in\nRem 3:  Ditto for source files.\n\n:test -f %XSRC%/stamp-djgppfixes\n:if not errorlevel 1 goto TestsuitFixed\nRem Fix the Makefile.ins.\ntest -f %XSRC%/lib/Makefile.org\nif errorlevel 1 update %XSRC%/lib/Makefile.in %XSRC%/lib/Makefile.org\nsed -f %XSRC%/djgpp/makefile.sed %XSRC%/lib/Makefile.org > Makefile.tmp\nif errorlevel 1 goto SedError\nupdate Makefile.tmp %XSRC%/lib/Makefile.in\nrm Makefile.tmp\ntest -f %XSRC%/tests/Makefile.org\nif errorlevel 1 update %XSRC%/tests/Makefile.in %XSRC%/tests/Makefile.org\nsed -f %XSRC%/djgpp/makefile.sed %XSRC%/tests/Makefile.org > Makefile.tmp\nif errorlevel 1 goto SedError\nupdate Makefile.tmp %XSRC%/tests/Makefile.in\nrm Makefile.tmp\n\nRem Fix the source files.\ntest -f %XSRC%/lib/aliases/aliases2.org\nif errorlevel 1 update %XSRC%/lib/aliases/aliases2.h %XSRC%/lib/aliases/aliases2.org\nsed -f %XSRC%/djgpp/sources.sed %XSRC%/lib/aliases/aliases2.org > aliases2.tmp\nif errorlevel 1 goto SedError\nupdate aliases2.tmp %XSRC%/lib/aliases/aliases2.h\nrm aliases2.tmp\ntest -f %XSRC%/lib/iconv.org\nif errorlevel 1 update %XSRC%/lib/iconv.c %XSRC%/lib/iconv.org\nsed -f %XSRC%/djgpp/sources.sed %XSRC%/lib/iconv.org > iconv.tmp\nif errorlevel 1 goto SedError\nupdate iconv.tmp %XSRC%/lib/iconv.c\nrm iconv.tmp\ntest -f %XSRC%/lib/converters.org\nif errorlevel 1 update %XSRC%/lib/converters.h %XSRC%/lib/converters.org\nsed -f %XSRC%/djgpp/sources.sed %XSRC%/lib/converters.org > converters.tmp\nif errorlevel 1 goto SedError\nupdate converters.tmp %XSRC%/lib/converters.h\nrm converters.tmp\ntest -f %XSRC%/lib/cns/11643.org\nif errorlevel 1 update %XSRC%/lib/cns/11643.h %XSRC%/lib/cns/11643.org\nsed -f %XSRC%/djgpp/sources.sed %XSRC%/lib/cns/11643.org > 11643.tmp\nif errorlevel 1 goto SedError\nupdate 11643.tmp %XSRC%/lib/cns/11643.h\nrm 11643.tmp\ntest -f %XSRC%/lib/cns/11643_4.org\nif errorlevel 1 update %XSRC%/lib/cns/11643_4.h %XSRC%/lib/cns/11643_4.org\nsed -f %XSRC%/djgpp/sources.sed %XSRC%/lib/cns/11643_4.org > 11643_4.tmp\nif errorlevel 1 goto SedError\nupdate 11643_4.tmp %XSRC%/lib/cns/11643_4.h\nrm 11643_4.tmp\ntest -f %XSRC%/lib/iso/ir165.org\nif errorlevel 1 update %XSRC%/lib/iso/ir165.h %XSRC%/lib/iso/ir165.org\nsed -f %XSRC%/djgpp/sources.sed %XSRC%/lib/iso/ir165.org > ir165.tmp\nif errorlevel 1 goto SedError\nupdate ir165.tmp %XSRC%/lib/iso/ir165.h\nrm ir165.tmp\ntest -f %XSRC%/lib/big5hkscs/1999.org\nif errorlevel 1 update %XSRC%/lib/big5hkscs/1999.h %XSRC%/lib/big5hkscs/1999.org\nsed -f %XSRC%/djgpp/sources.sed %XSRC%/lib/big5hkscs/1999.org > 1999.tmp\nif errorlevel 1 goto SedError\nupdate 1999.tmp %XSRC%/lib/big5hkscs/1999.h\nrm 1999.tmp\ntest -f %XSRC%/lib/big5hkscs/2001.org\nif errorlevel 1 update %XSRC%/lib/big5hkscs/2001.h %XSRC%/lib/big5hkscs/2001.org\nsed -f %XSRC%/djgpp/sources.sed %XSRC%/lib/big5hkscs/2001.org > 2001.tmp\nif errorlevel 1 goto SedError\nupdate 2001.tmp %XSRC%/lib/big5hkscs/2001.h\nrm 2001.tmp\ntest -f %XSRC%/lib/big5hkscs/2004.org\nif errorlevel 1 update %XSRC%/lib/big5hkscs/2004.h %XSRC%/lib/big5hkscs/2004.org\nsed -f %XSRC%/djgpp/sources.sed %XSRC%/lib/big5hkscs/2004.org > 2004.tmp\nif errorlevel 1 goto SedError\nupdate 2004.tmp %XSRC%/lib/big5hkscs/2004.h\nrm 2004.tmp\n\nRem Fix the test scripts.\nif \"%XSRC%\" == \".\" goto NoDirChange\ncd | sed \"s|:.*$|:|\" > cd_BuildDir.bat\ncd | sed \"s|^.:|cd |\" >> cd_BuildDir.bat\nmv -f cd_BuildDir.bat %XSRC%/cd_BuildDir.bat\necho %XSRC% | sed -e \"s|^/dev/||\" -e \"s|/|:|\" -e \"s|:.*$|:|g\" > cd_SrcDir.bat\necho %XSRC% | sed -e \"s|^/dev/||\" -e \"s|/|:/|\" -e \"s|^.*:|cd |\" -e \"s|^\\.\\.|cd &|\" -e \"s|/|\\\\|g\" >> cd_SrcDir.bat\ncall cd_SrcDir.bat\ncall djgpp\\edtest.bat\ncall cd_BuildDir.bat\nrm -f cd_SrcDir.bat cd_BuildDir.bat %XSRC%/cd_BuildDir.bat\ngoto TestsuitFixed\n:NoDirChange\ncall djgpp\\edtest.bat\n::TestsuitFixed\n:touch %XSRC%/stamp-djgppfixes\n\nRem /include/wchar.h from DJGPP 2.03 does not work.\nRem Replace it with the one of DJGPP 2.04.\ntest -f %XSRC%/srclib/wchar.h\nif errorlevel 1 update %XSRC%/djgpp/wchar.h %XSRC%/srclib/wchar.h\n\nRem This is required because DOS/Windows are case-insensitive\nRem to file names, and \"make install\" will do nothing if Make\nRem finds a file called `install'.\nif exist INSTALL mv -f INSTALL INSTALL.txt\n\nRem Set SHELL to a sane default or some configure tests stop working\nRem if the package is configured across partitions.\nif not \"%SHELL%\" == \"\" goto HomeName\nset SHELL=/bin/sh\nif not \"%SHELL%\" == \"/bin/sh\" goto SmallEnv\necho No SHELL found in the environment, using default value\n\n:HomeName\nRem Set HOME to a sane default so configure stops complaining.\nif not \"%HOME%\" == \"\" goto HostName\nset HOME=%XSRC%/djgpp\nif not \"%HOME%\" == \"%XSRC%/djgpp\" goto SmallEnv\necho No HOME found in the environment, using default value\n\n:HostName\nRem Set HOSTNAME so it shows in config.status\nif not \"%HOSTNAME%\" == \"\" goto hostdone\nif \"%windir%\" == \"\" goto msdos\nset OS=MS-Windows\nif not \"%OS%\" == \"MS-Windows\" goto SmallEnv\ngoto haveos\n:msdos\nset OS=MS-DOS\nif not \"%OS%\" == \"MS-DOS\" goto SmallEnv\n:haveos\nif not \"%USERNAME%\" == \"\" goto haveuname\nif not \"%USER%\" == \"\" goto haveuser\necho No USERNAME and no USER found in the environment, using default values\nset HOSTNAME=Unknown PC\nif not \"%HOSTNAME%\" == \"Unknown PC\" goto SmallEnv\ngoto userdone\n:haveuser\nset HOSTNAME=%USER%'s PC\nif not \"%HOSTNAME%\" == \"%USER%'s PC\" goto SmallEnv\ngoto userdone\n:haveuname\nset HOSTNAME=%USERNAME%'s PC\nif not \"%HOSTNAME%\" == \"%USERNAME%'s PC\" goto SmallEnv\n:userdone\nset _HOSTNAME=%HOSTNAME%, %OS%\nif not \"%_HOSTNAME%\" == \"%HOSTNAME%, %OS%\" goto SmallEnv\nset HOSTNAME=%_HOSTNAME%\n:hostdone\nset _HOSTNAME=\nset OS=\n\nRem install-sh is required by the configure script but clashes with the\nRem various Makefile install-foo targets, so we MUST have it before the\nRem script runs and rename it afterwards\ntest -f %XSRC%/install-sh\nif not errorlevel 1 goto NoRen0\ntest -f %XSRC%/install-sh.sh\nif not errorlevel 1 mv -f %XSRC%/install-sh.sh %XSRC%/install-sh\n:NoRen0\n\nif \"%NLS%\" == \"disabled\" goto WithoutNLS\n\n:WithNLS\ntest -d %XSRC%/po\nif errorlevel 1 goto WithoutNLS\n\nRem Check for the needed libraries and binaries.\ntest -x /dev/env/DJDIR/bin/msgfmt.exe\nif not errorlevel 0 goto MissingNLSTools\ntest -x /dev/env/DJDIR/bin/xgettext.exe\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/include/libcharset.h\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/lib/libcharset.a\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/include/iconv.h\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/lib/libiconv.a\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/include/libintl.h\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/lib/libintl.a\nif not errorlevel 0 goto MissingNLSTools\n\nRem Recreate the files in the %XSRC%/po subdir with our ported tools.\nredir -e /dev/null rm %XSRC%/po/*.gmo\nredir -e /dev/null rm %XSRC%/po/libiconv.pot\nredir -e /dev/null rm %XSRC%/po/cat-id-tbl.c\nredir -e /dev/null rm %XSRC%/po/stamp-cat-id\n\nRem Update the arguments file for the configure script.\nRem We prefer without-included-gettext because libintl.a from gettext package\nRem is the only one that is garanteed to have been ported to DJGPP.\necho --enable-nls --without-included-gettext >> arguments\ngoto ConfigurePackage\n\n:MissingNLSTools\necho Needed libs/tools for NLS not found. Configuring without NLS.\n:WithoutNLS\nRem Update the arguments file for the configure script.\necho --disable-nls >> arguments\n\n:ConfigurePackage\necho Running the ./configure script...\nsh ./configure @arguments\nif errorlevel 1 goto CfgError\nrm arguments\necho Done.\ngoto End\n\n:SedError\necho ./configure script editing failed!\ngoto End\n\n:CfgError\necho ./configure script exited abnormally!\ngoto End\n\n:SmallEnv\necho Your environment size is too small.  Enlarge it and run me again.\necho Configuration NOT done!\n\n:End\ntest -f %XSRC%/install-sh.sh\nif not errorlevel 1 goto NoRen1\ntest -f %XSRC%/install-sh\nif not errorlevel 1 mv -f %XSRC%/install-sh %XSRC%/install-sh.sh\n:NoRen1\nset CONFIG_SITE=\nset HOSTNAME=\nset XSRC=\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/config.sed",
    "content": "# DJGPP specific configuration file.\n# Sed script for additional DJGPP specific editing\n# of the configure script generated by autoconf 2.60.\n\n\n# Additional editing of Makefiles\n/^\".*ac_file_inputs.*tmp\\/out$/ a\\\ncat > \"$tmp/subs-djgpp.sed\" << eof_djgpp\\\n# DJGPP specific Makefile changes.\\\ns,\\\\.deps,_deps,g\\\ns,\\\\.libs,_libs,g\\\ns,\\\\.new\\\\.,_new.,g\\\ns,\\\\.old\\\\.,_old.,g\\\ns,\\\\.tab\\\\.,_tab.,g\\\ns,config\\\\.h\\\\.in,config.h-in,g\\\ns,\\\\.\\\\([1-9]\\\\)\\\\.html,_\\\\1.html,g\\\ns,iconv\\\\.h\\\\.inst,iconv_h.ins,g\\\ns,iconv\\\\.h\\\\.in,iconv.h-in,g\\\ns,iconv\\\\.h\\\\.build\\\\.in,iconv.h-build-in,g\\\ns,libcharset\\\\.h\\\\.in,libcharset.h-in,g\\\ns,localcharset\\\\.h\\\\.inst,localcharset_h.ins,g\\\ns,localcharset\\\\.h\\\\.in,localcharset.h-in,g\\\ns,localcharset\\\\.h\\\\.build\\\\.in,localcharset.h-build-in,g\\\ns,Makefile\\\\.am\\\\.in,Makefile.am-in,g\\\ns,Makefile\\\\.in\\\\.in,Makefile.in-in,g\\\n/^\\\\.y\\\\.c:/,/^$/ {\\\n  /\\\\\\$(YACCCOMPILE)/ {\\\n    a\\\\\\\\\\\n\t-@test -f y.tab.c && mv -f y.tab.c y_tab.c\\\\\\\\\\\n\t-@test -f y.tab.h && mv -f y.tab.h y_tab.h\\\n  }\\\n}\\\neof_djgpp\\\nsed -f \"\\$tmp/subs-djgpp.sed\" \\$tmp/out > \\$tmp/out.djgpp\\\nmv -f \\$tmp/out.djgpp \\$tmp/out\n\n\n# Rename config.h.in into config.h-in\n/ac_config_headers=/s|config\\.h|&:config.h-in|g\n/CONFIG_HEADERS=/ s|config\\.h\\.in|&:config.h-in|2\n\n# Rename iconv.h.build.in, iconv.h.inst, iconv.h.in and Makefile.in.in into iconv.h-build-in, iconv_h.ins, iconv.h-in and Makefile.in-in\n/ac_config_files=/ {\n  s|iconv\\.h\\.build\\.in|iconv.h-build-in|\n  s|iconv\\.h\\.inst|iconv_h.ins|\n  s|iconv\\.h\\.in|iconv.h-in|\n  s|po/Makefile\\.in|&:po/Makefile.in-in|\n}\n/CONFIG_FILES=/ {\n  s|iconv\\.h\\.build\\.in|iconv.h-build-in|\n  s|iconv\\.h\\.inst|iconv_h.ins|\n  s|iconv\\.h\\.in|iconv.h-in|\n  s|po/Makefile\\.in|&:po/Makefile.in-in|2\n}\n\n# Rename localcharset.h.build.in, localcharset.h.inst, localcharset.h.in and Makefile.in.in into localcharset.h-build-in, localcharset_h.ins, localcharset.h-in and Makefile.in-in\n/ac_config_files=/ {\n  s|localcharset\\.h\\.build\\.in|localcharset.h-build-in|\n  s|localcharset\\.h\\.inst|localcharset_h.ins|\n  s|localcharset\\.h\\.in|localcharset.h-in|\n}\n/CONFIG_FILES=/ {\n  s|localcharset\\.h\\.build\\.in|localcharset.h-build-in|\n  s|localcharset\\.h\\.inst|localcharset_h.ins|\n  s|localcharset\\.h\\.in|localcharset.h-in|\n}\n\n# We always use _deps and _libs instead of .deps and .libs, because\n# the latter is an invalid name on 8+3 MS-DOS file system.  This makes\n# the generated Makefiles good for every DJGPP installation, not only\n# the one where the package was configured (which could happen to be\n# a Windows box, where leading dots in file names are allowed).\ns,\\.deps,_deps,g\ns,\\.libs,_libs,g\n/^rmdir[\t ]*\\.tst/ i\\\nam__leading_dot=_\n\n# Replace (command) > /dev/null with `command > /dev/null`, since\n# parenthesized commands always return zero status in the ported Bash,\n# even if the named command doesn't exist\n/if ([^|;`]*null/{\n  s,(,`,\n  s,),,\n  /null[\t ]*2>&1/ s,2>&1,&`,\n  /null.*null/ s,null.*null,&`,\n  /null.*null/ !{\n    /null[\t ]*2>&1/ !s,null,&`,\n  }\n}\n\n# DOS-style absolute file names should be supported as well\n/\\*) top_srcdir=/s,/\\*,[\\\\\\\\/]* | ?:[\\\\\\\\/]*,\n\n# The following two items are changes needed for configuring\n# and compiling across partitions.\n# 1) The given srcdir value is always translated from the\n#    \"x:\" syntax into \"/dev/x\" syntax while we run configure.\n/^[\t ]*-srcdir=\\*.*$/ a\\\n    ac_optarg=`echo \"$ac_optarg\" | sed \"s,^\\\\([A-Za-z]\\\\):,/dev/\\\\1,\"`\n/set X `ls -Lt \\$srcdir/ i\\\n   if `echo $srcdir | grep \"^/dev/\" - > /dev/null`; then\\\n     srcdir=`echo \"$srcdir\" | sed -e \"s%^/dev/%%\" -e \"s%/%:/%\"`\\\n   fi\n\n# Autoconf 2.52e generated configure scripts\n# write absolute paths into Makefiles and bison.in\n# making them useless for DJGPP installations for\n# which the package has not been configured for.\n/MISSING=/,/^$/ {\n  /^fi$/ a\\\nam_missing_run=`echo \"$am_missing_run\" | sed 's%/dev/.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%${top_srcdir}%;s%.:.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%${top_srcdir}%'`\n}\n/^install_sh=/a\\\ninstall_sh=`echo \"$install_sh\" | sed 's%/dev/.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%${top_srcdir}%;s%.:.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%${top_srcdir}%'`\n\n# This will only work if the assumption that the\n# testsuite is ran from the following path:\n#   ${top_srcdir}/tests/testsuite.dir\n# holds. The explicit names are of no importance.\n#   ../../. == ${top_srcdir}\n#/^esac$/,/^ac_abs_srcdir=/ {\n/^ac_abs_srcdir=/ i\\\nac_abs_builddir=`echo \"$ac_abs_builddir\" | sed \"s%/dev/.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../.%;s%.:.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../.%\"`\\\nac_abs_top_builddir=`echo \"$ac_abs_top_builddir\" | sed \"s%/dev/.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../..%;s%.:.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../..%\"`\\\nac_abs_top_srcdir=`echo \"$ac_abs_top_srcdir\" | sed \"s%/dev/.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../..%;s%.:.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../..%\"`\n#ac_abs_srcdir=`echo \"$ac_abs_srcdir\" | sed \"s%/dev/.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../.%;s%.:.*/libiconv[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../.%\"`\n/^ac_abs_srcdir=/ a\\\nfor dj_dir in $ac_abs_builddir $ac_abs_top_builddir $ac_abs_top_srcdir $ac_abs_srcdir\\\ndo\\\n  ac_abs_builddir=`echo \"$ac_abs_builddir\" | sed \"s%//%/%g\"`\\\n  ac_abs_top_builddir=`echo \"$ac_abs_top_builddir\" | sed \"s%//%/%g\"`\\\n  ac_abs_top_srcdir=`echo \"$ac_abs_top_srcdir\" | sed \"s%//%/%g\"`\\\n  ac_abs_srcdir=`echo \"$ac_abs_srcdir\" | sed \"s%//%/%g\"`\\\ndone\n\n# Add DJGPP version information.\n/^#define VERSION/ s/\\$VERSION/&  (DJGPP port (r1))/\n\n# We need makeinfo to make the html formated docs.\n/\\$am_missing_run[\t ]*makeinfo/ s,\\$am_missing_run,,\n\n# The path to the FORTRAN compiler and libraries\n# shall contain no absolute path reference so it\n# will be good for all djgpp installations.\n/^FLIBS=\"\\$ac_cv_flibs\"/ i\\\nac_djgpp_path=`echo \"$DJDIR\" | sed 's%\\\\\\\\\\\\%/%g' | tr $as_cr_LETTERS $as_cr_letters`\\\nac_cv_flibs=`echo \"$ac_cv_flibs\" | sed \"s%-L$ac_djgpp_path%-L/dev/env/DJDIR%g\"`\n\n# Autoconf generated configure scripts write absolute\n# paths of certain header files into Makefiles making\n# them useless for DJGPP installations for which the\n# package has not been configured for.\n/^.*echo \"\\$as_me:\\$LINENO: result: \\$gl_cv_absolute_.*$/ {\nh\ns,^.*\\(gl_cv_absolute_\\)\\([a-z0-9_]*\\)\\(_h\\).*$,\\1\\2\\3=`echo $\\1\\2\\3 | sed \"s%[^:]:.*/include/%/dev/env/DJDIR/include/%\"`,\nG\n}\n/^.*echo \"\\$as_me:\\$LINENO: result: \\$gl_cv_full_.*$/ {\nh\ns,^.*\\(gl_cv_full_\\)\\([a-z0-9_]*\\)\\(_h\\).*$,\\1\\2\\3=`echo $\\1\\2\\3 | sed \"s%[^:]:.*/include/%/dev/env/DJDIR/include/%\"`,\nG\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/config.site",
    "content": "#! /bin/sh\n\n# This is the config.site file for configuring GNU packages\n# which are to be built with DJGPP tools.\n\n\n# Include the djgpp subdirectory in PATH, so that getconf is found\nPATH=\"$srcdir/djgpp:$PATH\"\n\n# These two variables are required, otherwise looking for\n# programs along the PATH will not work.\nPATH_SEPARATOR=:\nPATH_EXPAND=y\n\n# This is required in for \"test -f foo\" to find foo.exe\nexport TEST_FINDS_EXE=y\n\n# The root of the DJGPP tree serves as the default prefix\ntest \"x$prefix\" = xNONE && prefix='/dev/env/DJDIR'\n\n# This is required for config.status script to be run, since\n# ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh}\nCONFIG_SHELL=${CONFIG_SHELL='sh'}\n\n# These are set here so the generated Makefile's will be good\n# for every DJGPP installation, not only the one where the\n# package was configured.\n# $INSTALL must be an absolute path name, otherwise config.status\n# will try to prepend ./ and ../ to it when it goes into subdirs.\nINSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'}\nRANLIB=${RANLIB='ranlib'}\n#GMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'}\n#MSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'}\n#XGETTEXT=${XGETTEXT='/dev/env/DJDIR/bin/xgettext'}\nAWK=${AWK='gawk'}\n\n# A sane default for emacs.\nac_cv_path_EMACS=${EMACS='/dev/env/DJDIR/gnu/emacs/bin/emacs'}\n\n# A sane default for m4.\nac_cv_path_M4=${M4='/dev/env/DJDIR/bin/m4'}\n\n# A sane default for grep.\nac_cv_path_GREP=${GREP='/dev/env/DJDIR/bin/grep'}\n\n# A sane default for egrep.\nac_cv_path_EGREP=${EGREP='/dev/env/DJDIR/bin/egrep'}\n\n# A sane default for fgrep.\nac_cv_path_FGREP=${FGREP='/dev/env/DJDIR/bin/fgrep'}\n\n# A sane default for sed.\nlt_cv_path_SED=${SED='/dev/env/DJDIR/bin/sed'}\n\n# A sane default for mkdir.\nac_cv_path_mkdir=${MKDIR_P='/dev/env/DJDIR/bin/mkdir -p'}\n\n# These are set here so the generated libtool will be good\n# for every DJGPP installation, not only the one where the\n# package was configured.\nNM=${NM='nm'}\nLD=${LD='ld'}\n\n# Force the test for 'ln -s' to report 'cp -pf'.\nac_cv_prog_LN_S='cp -pf'\n\n# There is no fork and vfork functionality.\nac_cv_func_fork=no\nac_cv_func_vfork=no\nac_cv_func_pipe=no\n\n# DJGPP needs ICONV_CONST set to const\nam_cv_proto_iconv_arg1=\"const\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/edtest.bat",
    "content": "@echo off\nif \"%XSRC%\" == \"\" set XSRC=.\ntest -f %XSRC%/tests/stateful-check.org\nif errorlevel 1 update %XSRC%/tests/stateful-check %XSRC%/tests/stateful-check.org\nsed -f %XSRC%/djgpp/stateful-check.sed %XSRC%/tests/stateful-check.org > stateful-check\nif errorlevel 1 goto SedError\nupdate ./stateful-check %XSRC%/tests/stateful-check\nrm -f ./stateful-check\n\ntest -f %XSRC%/tests/stateless-check.org\nif errorlevel 1 update %XSRC%/tests/stateless-check %XSRC%/tests/stateless-check.org\nsed -f %XSRC%/djgpp/stateless-check.sed %XSRC%/tests/stateless-check.org > stateless-check\nif errorlevel 1 goto SedError\nupdate ./stateless-check %XSRC%/tests/stateless-check\nrm -f ./stateless-check\n\ntest -f %XSRC%/tests/failuretranslit-check.org\nif errorlevel 1 update %XSRC%/tests/failuretranslit-check %XSRC%/tests/failuretranslit-check.org\nsed -f %XSRC%/djgpp/translit-check.sed %XSRC%/tests/failuretranslit-check.org > failuretranslit-check\nif errorlevel 1 goto SedError\nupdate ./failuretranslit-check %XSRC%/tests/failuretranslit-check\nrm -f ./failuretranslit-check\n\ntest -f %XSRC%/tests/translit-check.org\nif errorlevel 1 update %XSRC%/tests/translit-check %XSRC%/tests/translit-check.org\nsed -f %XSRC%/djgpp/translit-check.sed %XSRC%/tests/translit-check.org > translit-check\nif errorlevel 1 goto SedError\nupdate ./translit-check %XSRC%/tests/translit-check\nrm -f ./translit-check\ngoto End\n\n:SedError\necho test script editing failed!\n\n:End\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/fnchange.in",
    "content": "@V@/config.h.in                                   @V@/config.h-in\n@V@/config.h.msvc                                 @V@/config.h-msvc\n@V@/build-aux/install-reloc                       @V@/build-aux/install.reloc\n@V@/build-aux/install-sh                          @V@/build-aux/install.sh\n@V@/m4/strerror_r.m4                              @V@/m4/strerr_r.m4\n@V@/include/iconv.h.in                            @V@/include/iconv.h-in\n@V@/include/iconv.h.build.in                      @V@/include/iconv.h-build-in\n@V@/include/iconv.h.msvc-static                   @V@/include/iconv_h.static-msvc\n@V@/include/iconv.h.msvc-shared                   @V@/include/iconv_h.shared-msvc\n@V@/man/iconv.1.html                              @V@/man/iconv_1.html\n@V@/man/iconv.3.html                              @V@/man/iconv_3.html\n@V@/man/iconv_close.3.html                        @V@/man/iconv_close_3.html\n@V@/man/iconv_open.3.html                         @V@/man/iconv_open_3.html\n@V@/libcharset/config.h.in                        @V@/libcharset/config.h-in\n@V@/libcharset/config.h.msvc                      @V@/libcharset/config.h-msvc\n@V@/libcharset/include/libcharset.h.in            @V@/libcharset/include/libcharset.h-in\n@V@/libcharset/include/libcharset.h.msvc-shared   @V@/libcharset/include/libcharset.h-msvc-shared\n@V@/libcharset/include/localcharset.h.in          @V@/libcharset/include/localcharset.h-in\n@V@/libcharset/include/localcharset.h.build.in    @V@/libcharset/include/localcharset.h-build-in\n@V@/libcharset/include/localcharset.h.msvc-shared @V@/libcharset/include/localcharset.h-msvc-shared\n@V@/libcharset/tools/aix-3.2.5                    @V@/libcharset/tools/aix-3.2-5\n@V@/libcharset/tools/aix-4.1.5                    @V@/libcharset/tools/aix-4.1-5\n@V@/libcharset/tools/aix-4.2.0                    @V@/libcharset/tools/aix-4.2-0\n@V@/libcharset/tools/aix-4.3.2                    @V@/libcharset/tools/aix-4.3-2\n@V@/libcharset/tools/glibc-2.1.3                  @V@/libcharset/tools/glibc-2.1-3\n@V@/libcharset/tools/glibc-2.1.90                 @V@/libcharset/tools/glibc-2.1-90\n@V@/libcharset/tools/locale_charmap               @V@/libcharset/tools/locale_charmap\n@V@/libcharset/tools/locale_charset.c             @V@/libcharset/tools/charset_locale.c\n@V@/libcharset/tools/locale_codeset.c             @V@/libcharset/tools/codeset_locale.c\n@V@/libcharset/tools/solaris-2.5.1                @V@/libcharset/tools/solaris-2.5-1\n@V@/libcharset/tools/sunos-4.1.4                  @V@/libcharset/tools/sunos-4.1-4\n@V@/libcharset/tools/all-charsets-X11             @V@/libcharset/tools/all-charsets.X11\n@V@/libcharset/tools/glibc-2.2-XF86-3.3.6         @V@/libcharset/tools/glibc22XF86-3.3-6\n@V@/libcharset/tools/glibc-2.2-XF86-4.0.1f        @V@/libcharset/tools/glibc22XF86-4.0-1f\n@V@/libcharset/tools/locale_x11encoding.c         @V@/libcharset/tools/x11encoding_locale.c\n@V@/lib/aliases.gperf                             @V@/lib/aliases/aliases.gperf\n@V@/lib/aliases.h                                 @V@/lib/aliases/aliases.h\n@V@/lib/aliases2.h                                @V@/lib/aliases/aliases2.h\n@V@/lib/aliases_aix.h                             @V@/lib/aliases/aix.h\n@V@/lib/aliases_dos.h                             @V@/lib/aliases/dos.h\n@V@/lib/aliases_extra.h                           @V@/lib/aliases/extra.h\n@V@/lib/aliases_osf1.h                            @V@/lib/aliases/osf1.h\n@V@/lib/big5hkscs1999.h                           @V@/lib/big5hkscs/1999.h\n@V@/lib/big5hkscs2001.h                           @V@/lib/big5hkscs/2001.h\n@V@/lib/big5hkscs2004.h                           @V@/lib/big5hkscs/2004.h\n@V@/lib/cns11643.h                                @V@/lib/cns/11643.h\n@V@/lib/cns11643_1.h                              @V@/lib/cns/11643_1.h\n@V@/lib/cns11643_2.h                              @V@/lib/cns/11643_2.h\n@V@/lib/cns11643_3.h                              @V@/lib/cns/11643_3.h\n@V@/lib/cns11643_4.h                              @V@/lib/cns/11643_4.h\n@V@/lib/cns11643_4a.h                             @V@/lib/cns/11643_4a.h\n@V@/lib/cns11643_4b.h                             @V@/lib/cns/11643_4b.h\n@V@/lib/cns11643_5.h                              @V@/lib/cns/11643_5.h\n@V@/lib/cns11643_6.h                              @V@/lib/cns/11643_6.h\n@V@/lib/cns11643_7.h                              @V@/lib/cns/11643_7.h\n@V@/lib/cns11643_15.h                             @V@/lib/cns/11643_15.h\n@V@/lib/cns11643_inv.h                            @V@/lib/cns/11643_inv.h\n@V@/lib/config.h.in                               @V@/lib/config.h-in\n@V@/lib/config.h.msvc                             @V@/lib/config.h-msvc\n@V@/lib/canonical.h                               @V@/lib/canonical/canonical.h\n@V@/lib/canonical.h                               @V@/lib/canonical/canonical.h\n@V@/lib/canonical.h                               @V@/lib/canonical/canonical.h\n@V@/lib/canonical.h                               @V@/lib/canonical/canonical.h\n@V@/lib/canonical_aix.h                           @V@/lib/canonical/aix.h\n@V@/lib/canonical_dos.h                           @V@/lib/canonical/dos.h\n@V@/lib/canonical_extra.h                         @V@/lib/canonical/extra.h\n@V@/lib/canonical_osf1.h                          @V@/lib/canonical/osf1.h\n@V@/lib/canonical_local.h                         @V@/lib/canonical/local.h\n@V@/lib/encodings.def                             @V@/lib/encodings/encodings.def\n@V@/lib/encodings_aix.def                         @V@/lib/encodings/aix.def\n@V@/lib/encodings_dos.def                         @V@/lib/encodings/dos.def\n@V@/lib/encodings_extra.def                       @V@/lib/encodings/extra.def\n@V@/lib/encodings_local.def                       @V@/lib/encodings/local.def\n@V@/lib/encodings_osf1.def                        @V@/lib/encodings/osf1.def\n@V@/lib/genaliases2.c                             @V@/lib/2genaliases.c\n@V@/lib/georgian_academy.h                        @V@/lib/georgian/academy.h\n@V@/lib/georgian_ps.h                             @V@/lib/georgian/ps.h\n@V@/lib/hkscs1999.h                               @V@/lib/hkscs/1999.h\n@V@/lib/hkscs2001.h                               @V@/lib/hkscs/2001.h\n@V@/lib/hkscs2004.h                               @V@/lib/hkscs/2004.h\n@V@/lib/iso2022_cn.h                              @V@/lib/iso/2022_cn.h\n@V@/lib/iso2022_cnext.h                           @V@/lib/iso/2022_cnext.h\n@V@/lib/iso2022_jp.h                              @V@/lib/iso/2022_jp.h\n@V@/lib/iso2022_jp1.h                             @V@/lib/iso/2022_jp1.h\n@V@/lib/iso2022_jp2.h                             @V@/lib/iso/2022_jp2.h\n@V@/lib/iso2022_jp3.h                             @V@/lib/iso/2022_jp3.h\n@V@/lib/iso2022_kr.h                              @V@/lib/iso/2022_kr.h\n@V@/lib/iso646_cn.h                               @V@/lib/iso/646_cn.h\n@V@/lib/iso646_jp.h                               @V@/lib/iso/646_jp.h\n@V@/lib/iso8859_1.h                               @V@/lib/iso/8859_1.h\n@V@/lib/iso8859_10.h                              @V@/lib/iso/8859_10.h\n@V@/lib/iso8859_11.h                              @V@/lib/iso/8859_11.h\n@V@/lib/iso8859_13.h                              @V@/lib/iso/8859_13.h\n@V@/lib/iso8859_14.h                              @V@/lib/iso/8859_14.h\n@V@/lib/iso8859_15.h                              @V@/lib/iso/8859_15.h\n@V@/lib/iso8859_16.h                              @V@/lib/iso/8859_16.h\n@V@/lib/iso8859_2.h                               @V@/lib/iso/8859_2.h\n@V@/lib/iso8859_3.h                               @V@/lib/iso/8859_3.h\n@V@/lib/iso8859_4.h                               @V@/lib/iso/8859_4.h\n@V@/lib/iso8859_5.h                               @V@/lib/iso/8859_5.h\n@V@/lib/iso8859_6.h                               @V@/lib/iso/8859_6.h\n@V@/lib/iso8859_7.h                               @V@/lib/iso/8859_7.h\n@V@/lib/iso8859_8.h                               @V@/lib/iso/8859_8.h\n@V@/lib/iso8859_9.h                               @V@/lib/iso/8859_9.h\n@V@/lib/isoir165.h                                @V@/lib/iso/ir165.h\n@V@/lib/isoir165ext.h                             @V@/lib/iso/ir165ext.h\n@V@/lib/mac_arabic.h                              @V@/lib/mac/arabic.h\n@V@/lib/mac_centraleurope.h                       @V@/lib/mac/centraleurope.h\n@V@/lib/mac_croatian.h                            @V@/lib/mac/croatian.h\n@V@/lib/mac_cyrillic.h                            @V@/lib/mac/cyrillic.h\n@V@/lib/mac_greek.h                               @V@/lib/mac/greek.h\n@V@/lib/mac_hebrew.h                              @V@/lib/mac/hebrew.h\n@V@/lib/mac_iceland.h                             @V@/lib/mac/iceland.h\n@V@/lib/mac_roman.h                               @V@/lib/mac/roman.h\n@V@/lib/mac_romania.h                             @V@/lib/mac/romania.h\n@V@/lib/mac_thai.h                                @V@/lib/mac/thai.h\n@V@/lib/mac_turkish.h                             @V@/lib/mac/turkish.h\n@V@/lib/mac_ukraine.h                             @V@/lib/mac/ukraine.h\n@V@/po/Makefile.in.in                             @V@/po/Makefile.in-in\n@V@/po/Makefile.msvc.sh                           @V@/po/Makefile-msvc.sh\n@V@/tests/ARMSCII-8.IRREVERSIBLE.TXT              @V@/tests/ARMSCII-8.IRREVERSIBLE-TXT\n@V@/tests/CP932.IRREVERSIBLE.TXT                  @V@/tests/CP932.IRREVERSIBLE-TXT\n@V@/tests/CP950.IRREVERSIBLE.TXT                  @V@/tests/CP950.IRREVERSIBLE-TXT\n@V@/tests/CP1161.IRREVERSIBLE.TXT                 @V@/tests/CP1161.IRREVERSIBLE-TXT\n@V@/tests/CP1163.IRREVERSIBLE.TXT                 @V@/tests/CP1163.IRREVERSIBLE-TXT\n@V@/tests/DEC-HANYU.IRREVERSIBLE.TXT              @V@/tests/DEC-HANYU.IRREVERSIBLE-TXT\n@V@/tests/EUC-JP.IRREVERSIBLE.TXT                 @V@/tests/EUC-JP.IRREVERSIBLE-TXT\n@V@/tests/EUC-TW.IRREVERSIBLE.TXT                 @V@/tests/EUC-TW.IRREVERSIBLE-TXT\n@V@/tests/Georgian-PS.TXT                         @V@/tests/Georgian/PS.TXT\n@V@/tests/Georgian-Academy.TXT                    @V@/tests/Georgian/Academy.TXT\n@V@/tests/ISO-2022-CN-EXT-snippet                 @V@/tests/ISO/2022CN-EXT-snippet\n@V@/tests/ISO-2022-CN-EXT-snippet.UTF-8           @V@/tests/ISO/2022CN-EXT-snippet.UTF-8\n@V@/tests/ISO-2022-CN-snippet                     @V@/tests/ISO/2022CN-snippet\n@V@/tests/ISO-2022-CN-snippet.UTF-8               @V@/tests/ISO/2022CN-snippet.UTF-8\n@V@/tests/ISO-2022-JP-1-snippet                   @V@/tests/ISO/2022JP-1-snippet\n@V@/tests/ISO-2022-JP-1-snippet.UTF-8             @V@/tests/ISO/2022JP-1-snippet.UTF-8\n@V@/tests/ISO-2022-JP-2-snippet                   @V@/tests/ISO/2022JP-2-snippet\n@V@/tests/ISO-2022-JP-2-snippet.UTF-8             @V@/tests/ISO/2022JP-2-snippet.UTF-8\n@V@/tests/ISO-2022-JP-3-snippet                   @V@/tests/ISO/2022JP-3-snippet\n@V@/tests/ISO-2022-JP-3-snippet.UTF-8             @V@/tests/ISO/2022JP-3-snippet.UTF-8\n@V@/tests/ISO-2022-JP-snippet                     @V@/tests/ISO/2022JP-snippet\n@V@/tests/ISO-2022-JP-snippet.UTF-8               @V@/tests/ISO/2022JP-snippet.UTF-8\n@V@/tests/ISO-2022-KR-snippet                     @V@/tests/ISO/2022KR-snippet\n@V@/tests/ISO-2022-KR-snippet.UTF-8               @V@/tests/ISO/2022KR-snippet.UTF-8\n@V@/tests/ISO-8859-1.TXT                          @V@/tests/ISO/8859-1.TXT\n@V@/tests/ISO-8859-10.TXT                         @V@/tests/ISO/8859-10.TXT\n@V@/tests/ISO-8859-11.TXT                         @V@/tests/ISO/8859-11.TXT\n@V@/tests/ISO-8859-13.TXT                         @V@/tests/ISO/8859-13.TXT\n@V@/tests/ISO-8859-14.TXT                         @V@/tests/ISO/8859-14.TXT\n@V@/tests/ISO-8859-15.TXT                         @V@/tests/ISO/8859-15.TXT\n@V@/tests/ISO-8859-16.TXT                         @V@/tests/ISO/8859-16.TXT\n@V@/tests/ISO-8859-2.TXT                          @V@/tests/ISO/8859-2.TXT\n@V@/tests/ISO-8859-3.TXT                          @V@/tests/ISO/8859-3.TXT\n@V@/tests/ISO-8859-4.TXT                          @V@/tests/ISO/8859-4.TXT\n@V@/tests/ISO-8859-5.TXT                          @V@/tests/ISO/8859-5.TXT\n@V@/tests/ISO-8859-6.TXT                          @V@/tests/ISO/8859-6.TXT\n@V@/tests/ISO-8859-7.TXT                          @V@/tests/ISO/8859-7.TXT\n@V@/tests/ISO-8859-8.TXT                          @V@/tests/ISO/8859-8.TXT\n@V@/tests/ISO-8859-9.TXT                          @V@/tests/ISO/8859-9.TXT\n@V@/tests/ISO-IR-165.IRREVERSIBLE.TXT             @V@/tests/ISO/IR-165.IRREVERSIBLE-TXT\n@V@/tests/ISO-IR-165.TXT                          @V@/tests/ISO/IR-165.TXT\n@V@/tests/MacArabic.TXT                           @V@/tests/Mac/Arabic.TXT\n@V@/tests/MacCentralEurope.TXT                    @V@/tests/Mac/CentralEurope.TXT\n@V@/tests/MacCroatian.TXT                         @V@/tests/Mac/Croatian.TXT\n@V@/tests/MacCyrillic.TXT                         @V@/tests/Mac/Cyrillic.TXT\n@V@/tests/MacGreek.TXT                            @V@/tests/Mac/Greek.TXT\n@V@/tests/MacHebrew.TXT                           @V@/tests/Mac/Hebrew.TXT\n@V@/tests/MacIceland.TXT                          @V@/tests/Mac/Iceland.TXT\n@V@/tests/MacRoman.TXT                            @V@/tests/Mac/Roman.TXT\n@V@/tests/MacRomania.TXT                          @V@/tests/Mac/Romania.TXT\n@V@/tests/MacThai.TXT                             @V@/tests/Mac/Thai.TXT\n@V@/tests/MacTurkish.TXT                          @V@/tests/Mac/Turkish.TXT\n@V@/tests/MacUkraine.TXT                          @V@/tests/Mac/Ukraine.TXT\n@V@/tests/check-stateful                          @V@/tests/stateful-check\n@V@/tests/check-stateful.bat                      @V@/tests/stateful-check.bat\n@V@/tests/check-stateful.cmd                      @V@/tests/stateful-check.cmd\n@V@/tests/check-stateless                         @V@/tests/stateless-check\n@V@/tests/check-stateless.bat                     @V@/tests/stateless-check.bat\n@V@/tests/check-stateless.cmd                     @V@/tests/stateless-check.cmd\n@V@/tests/check-translit                          @V@/tests/translit-check\n@V@/tests/check-translit.bat                      @V@/tests/translit-check.bat\n@V@/tests/check-translit.cmd                      @V@/tests/translit-check.cmd\n@V@/tests/check-translitfailure                   @V@/tests/failuretranslit-check\n@V@/tests/BIG5-HKSCS.IRREVERSIBLE.TXT             @V@/tests/BIG5-HKSCS.IRREVERSIBLE-TXT\n@V@/tests/CP1258.IRREVERSIBLE.TXT                 @V@/tests/CP1258.IRREVERSIBLE-TXT\n@V@/tests/TCVN.IRREVERSIBLE.TXT                   @V@/tests/TCVN.IRREVERSIBLE-TXT\n@V@/tests/CP1255.IRREVERSIBLE.TXT                 @V@/tests/CP1255.IRREVERSIBLE-TXT\n@V@/tests/TranslitFail1.ISO-8859-1                @V@/tests/_Translit/Fail1.ISO-8859-1\n@V@/tests/Translit1.ISO-8859-1                    @V@/tests/_Translit/1.ISO-8859-1\n@V@/tests/Translit1.ASCII                         @V@/tests/_Translit/1.ASCII\n@V@/tests/SHIFT_JIS.TXT                           @V@/tests/SHIFT/JIS.TXT\n@V@/tests/SHIFT_JISX0213.TXT                      @V@/tests/SHIFT/JISX0213.TXT\n@V@/tests/BIG5-HKSCS-1999.IRREVERSIBLE.TXT        @V@/tests/BIG5-HKSCS/1999.IRREVERSIBLE-TXT\n@V@/tests/BIG5-HKSCS-1999.TXT                     @V@/tests/BIG5-HKSCS/1999.TXT\n@V@/tests/BIG5-HKSCS-2001.IRREVERSIBLE.TXT        @V@/tests/BIG5-HKSCS/2001.IRREVERSIBLE-TXT\n@V@/tests/BIG5-HKSCS-2001.TXT                     @V@/tests/BIG5-HKSCS/2001.TXT\n@V@/tests/BIG5-HKSCS-2004.IRREVERSIBLE.TXT        @V@/tests/BIG5-HKSCS/2004.IRREVERSIBLE-TXT\n@V@/tests/BIG5-HKSCS-2004.TXT                     @V@/tests/BIG5-HKSCS/2004.TXT\n@V@/tests/BIG5-HKSCS-1999-snippet                 @V@/tests/BIG5-HKSCS/1999-snippet\n@V@/tests/BIG5-HKSCS-1999-snippet.UTF-8           @V@/tests/BIG5-HKSCS/1999-snippet.UTF-8\n@V@/tests/BIG5-HKSCS-2001-snippet                 @V@/tests/BIG5-HKSCS/2001-snippet\n@V@/tests/BIG5-HKSCS-2001-snippet.UTF-8           @V@/tests/BIG5-HKSCS/2001-snippet.UTF-8\n@V@/tests/BIG5-HKSCS-2004-snippet                 @V@/tests/BIG5-HKSCS/2004-snippet\n@V@/tests/BIG5-HKSCS-2004-snippet.UTF-8           @V@/tests/BIG5-HKSCS/2004-snippet.UTF-8\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/fnchange.lst",
    "content": "libiconv-1.11/include/iconv.h.msvc-static                  libiconv-1.11/include/iconv_h.static-msvc\nlibiconv-1.11/include/iconv.h.msvc-shared                  libiconv-1.11/include/iconv_h.shared-msvc\nlibiconv-1.11/tests/Georgian-PS.TXT                        libiconv-1.11/tests/Georgian/PS.TXT\nlibiconv-1.11/tests/ARMSCII-8.IRREVERSIBLE.TXT             libiconv-1.11/tests/ARMSCII-8.IRREVERSIBLE-TXT\nlibiconv-1.11/tests/CP932.IRREVERSIBLE.TXT                 libiconv-1.11/tests/CP932.IRREVERSIBLE-TXT\nlibiconv-1.11/tests/CP950.IRREVERSIBLE.TXT                 libiconv-1.11/tests/CP950.IRREVERSIBLE-TXT\nlibiconv-1.11/tests/EUC-TW.IRREVERSIBLE.TXT                libiconv-1.11/tests/EUC-TW.IRREVERSIBLE-TXT\nlibiconv-1.11/tests/ISO-2022-CN-EXT-snippet                libiconv-1.11/tests/ISO/2022CN-EXT-snippet\nlibiconv-1.11/tests/Georgian-Academy.TXT                   libiconv-1.11/tests/Georgian/Academy.TXT\nlibiconv-1.11/tests/ISO-2022-CN-EXT-snippet.UTF-8          libiconv-1.11/tests/ISO/2022CN-EXT-snippet.UTF-8\nlibiconv-1.11/tests/ISO-2022-CN-snippet                    libiconv-1.11/tests/ISO/2022CN-snippet\nlibiconv-1.11/tests/ISO-2022-CN-snippet.UTF-8              libiconv-1.11/tests/ISO/2022CN-snippet.UTF-8\nlibiconv-1.11/tests/ISO-2022-JP-1-snippet                  libiconv-1.11/tests/ISO/2022JP-1-snippet\nlibiconv-1.11/tests/ISO-2022-JP-1-snippet.UTF-8            libiconv-1.11/tests/ISO/2022JP-1-snippet.UTF-8\nlibiconv-1.11/tests/ISO-2022-JP-2-snippet                  libiconv-1.11/tests/ISO/2022JP-2-snippet\nlibiconv-1.11/tests/ISO-2022-JP-2-snippet.UTF-8            libiconv-1.11/tests/ISO/2022JP-2-snippet.UTF-8\nlibiconv-1.11/tests/ISO-2022-JP-snippet                    libiconv-1.11/tests/ISO/2022JP-snippet\nlibiconv-1.11/tests/ISO-2022-JP-snippet.UTF-8              libiconv-1.11/tests/ISO/2022JP-snippet.UTF-8\nlibiconv-1.11/tests/ISO-2022-KR-snippet                    libiconv-1.11/tests/ISO/2022KR-snippet\nlibiconv-1.11/tests/ISO-2022-KR-snippet.UTF-8              libiconv-1.11/tests/ISO/2022KR-snippet.UTF-8\nlibiconv-1.11/tests/ISO-8859-1.TXT                         libiconv-1.11/tests/ISO/8859-1.TXT\nlibiconv-1.11/tests/ISO-8859-10.TXT                        libiconv-1.11/tests/ISO/8859-10.TXT\nlibiconv-1.11/tests/ISO-8859-13.TXT                        libiconv-1.11/tests/ISO/8859-13.TXT\nlibiconv-1.11/tests/ISO-8859-14.TXT                        libiconv-1.11/tests/ISO/8859-14.TXT\nlibiconv-1.11/tests/ISO-8859-15.TXT                        libiconv-1.11/tests/ISO/8859-15.TXT\nlibiconv-1.11/tests/ISO-8859-16.TXT                        libiconv-1.11/tests/ISO/8859-16.TXT\nlibiconv-1.11/tests/ISO-8859-2.TXT                         libiconv-1.11/tests/ISO/8859-2.TXT\nlibiconv-1.11/tests/ISO-8859-3.TXT                         libiconv-1.11/tests/ISO/8859-3.TXT\nlibiconv-1.11/tests/ISO-8859-4.TXT                         libiconv-1.11/tests/ISO/8859-4.TXT\nlibiconv-1.11/tests/ISO-8859-5.TXT                         libiconv-1.11/tests/ISO/8859-5.TXT\nlibiconv-1.11/tests/ISO-8859-6.TXT                         libiconv-1.11/tests/ISO/8859-6.TXT\nlibiconv-1.11/tests/ISO-8859-7.TXT                         libiconv-1.11/tests/ISO/8859-7.TXT\nlibiconv-1.11/tests/ISO-8859-8.TXT                         libiconv-1.11/tests/ISO/8859-8.TXT\nlibiconv-1.11/tests/ISO-8859-9.TXT                         libiconv-1.11/tests/ISO/8859-9.TXT\nlibiconv-1.11/tests/ISO-IR-165.IRREVERSIBLE.TXT            libiconv-1.11/tests/ISO/IR-165.IRREVERSIBLE-TXT\nlibiconv-1.11/tests/ISO-IR-165.TXT                         libiconv-1.11/tests/ISO/IR-165.TXT\nlibiconv-1.11/tests/ISO646-CN.TXT                          libiconv-1.11/tests/ISO646-CN.TXT\nlibiconv-1.11/tests/ISO646-JP.TXT                          libiconv-1.11/tests/ISO646-JP.TXT\nlibiconv-1.11/tests/MacArabic.TXT                          libiconv-1.11/tests/Mac/Arabic.TXT\nlibiconv-1.11/tests/MacCentralEurope.TXT                   libiconv-1.11/tests/Mac/CentralEurope.TXT\nlibiconv-1.11/tests/MacCroatian.TXT                        libiconv-1.11/tests/Mac/Croatian.TXT\nlibiconv-1.11/tests/MacCyrillic.TXT                        libiconv-1.11/tests/Mac/Cyrillic.TXT\nlibiconv-1.11/tests/MacGreek.TXT                           libiconv-1.11/tests/Mac/Greek.TXT\nlibiconv-1.11/tests/MacHebrew.TXT                          libiconv-1.11/tests/Mac/Hebrew.TXT\nlibiconv-1.11/tests/MacIceland.TXT                         libiconv-1.11/tests/Mac/Iceland.TXT\nlibiconv-1.11/tests/MacRoman.TXT                           libiconv-1.11/tests/Mac/Roman.TXT\nlibiconv-1.11/tests/MacRomania.TXT                         libiconv-1.11/tests/Mac/Romania.TXT\nlibiconv-1.11/tests/MacThai.TXT                            libiconv-1.11/tests/Mac/Thai.TXT\nlibiconv-1.11/tests/MacTurkish.TXT                         libiconv-1.11/tests/Mac/Turkish.TXT\nlibiconv-1.11/tests/MacUkraine.TXT                         libiconv-1.11/tests/Mac/Ukraine.TXT\nlibiconv-1.11/tests/Makefile.in                            libiconv-1.11/tests/Makefile.in\nlibiconv-1.11/tests/MuleLao-1.TXT                          libiconv-1.11/tests/MuleLao-1.TXT\nlibiconv-1.11/tests/NEXTSTEP.TXT                           libiconv-1.11/tests/NEXTSTEP.TXT\nlibiconv-1.11/tests/Quotes.ASCII                           libiconv-1.11/tests/Quotes.ASCII\nlibiconv-1.11/tests/Quotes.ISO-8859-1                      libiconv-1.11/tests/Quotes.ISO-8859-1\nlibiconv-1.11/tests/Quotes.UTF-8                           libiconv-1.11/tests/Quotes.UTF-8\nlibiconv-1.11/tests/SHIFT-JIS.TXT                          libiconv-1.11/tests/SHIFT-JIS.TXT\nlibiconv-1.11/tests/TCVN.TXT                               libiconv-1.11/tests/TCVN.TXT\nlibiconv-1.11/tests/TIS-620.TXT                            libiconv-1.11/tests/TIS-620.TXT\nlibiconv-1.11/tests/UTF-7-snippet                          libiconv-1.11/tests/UTF-7-snippet\nlibiconv-1.11/tests/UTF-7-snippet.UTF-8                    libiconv-1.11/tests/UTF-7-snippet.UTF-8\nlibiconv-1.11/tests/VISCII.TXT                             libiconv-1.11/tests/VISCII.TXT\nlibiconv-1.11/tests/check-stateful                         libiconv-1.11/tests/stateful-check\nlibiconv-1.11/tests/check-stateless                        libiconv-1.11/tests/stateless-check\nlibiconv-1.11/tests/check-translit                         libiconv-1.11/tests/translit-check\nlibiconv-1.11/tests/check-translit.bat                     libiconv-1.11/tests/translit-check.bat\nlibiconv-1.11/tests/check-stateless.bat                    libiconv-1.11/tests/stateless-check.bat\nlibiconv-1.11/tests/check-stateful.bat                     libiconv-1.11/tests/stateful-check.bat\nlibiconv-1.11/tests/check-stateful.cmd                     libiconv-1.11/tests/stateful-check.cmd\nlibiconv-1.11/tests/check-stateless.cmd                    libiconv-1.11/tests/stateless-check.cmd\nlibiconv-1.11/tests/check-translit.cmd                     libiconv-1.11/tests/translit-check.cmd\nlibiconv-1.11/tests/BIG5-HKSCS.IRREVERSIBLE.TXT            libiconv-1.11/tests/BIG5-HKSCS.IRREVERSIBLE-TXT\nlibiconv-1.11/libcharset/tools/README                      libiconv-1.11/libcharset/tools/README\nlibiconv-1.11/libcharset/tools/aix-3.2.5                   libiconv-1.11/libcharset/tools/aix-3.2.5\nlibiconv-1.11/libcharset/tools/aix-4.1.5                   libiconv-1.11/libcharset/tools/aix-4.1.5\nlibiconv-1.11/libcharset/tools/aix-4.2.0                   libiconv-1.11/libcharset/tools/aix-4.2.0\nlibiconv-1.11/libcharset/tools/aix-4.3.2                   libiconv-1.11/libcharset/tools/aix-4.3.2\nlibiconv-1.11/libcharset/tools/all-charsets                libiconv-1.11/libcharset/tools/all-charsets\nlibiconv-1.11/libcharset/tools/all-locales                 libiconv-1.11/libcharset/tools/all-locales\nlibiconv-1.11/libcharset/tools/freebsd-3.3                 libiconv-1.11/libcharset/tools/freebsd-3.3\nlibiconv-1.11/libcharset/tools/glibc-2.1.3                 libiconv-1.11/libcharset/tools/glibc-2.1.3\nlibiconv-1.11/libcharset/tools/glibc-2.1.90                libiconv-1.11/libcharset/tools/glibc-2.1.90\nlibiconv-1.11/libcharset/tools/hpux-10.01                  libiconv-1.11/libcharset/tools/hpux-10.01\nlibiconv-1.11/libcharset/tools/hpux-10.20                  libiconv-1.11/libcharset/tools/hpux-10.20\nlibiconv-1.11/libcharset/tools/hpux-11.00                  libiconv-1.11/libcharset/tools/hpux-11.00\nlibiconv-1.11/libcharset/tools/irix-6.5                    libiconv-1.11/libcharset/tools/irix-6.5\nlibiconv-1.11/libcharset/tools/locale_charmap              libiconv-1.11/libcharset/tools/locale_charmap\nlibiconv-1.11/libcharset/tools/locale_charset.c            libiconv-1.11/libcharset/tools/locale_charset.c\nlibiconv-1.11/libcharset/tools/locale_codeset.c            libiconv-1.11/libcharset/tools/localecodeset.c\nlibiconv-1.11/libcharset/tools/osf1-4.0a                   libiconv-1.11/libcharset/tools/osf1-4.0a\nlibiconv-1.11/libcharset/tools/osf1-4.0d                   libiconv-1.11/libcharset/tools/osf1-4.0d\nlibiconv-1.11/libcharset/tools/osf1-5.1                    libiconv-1.11/libcharset/tools/osf1-5.1\nlibiconv-1.11/libcharset/tools/solaris-2.4                 libiconv-1.11/libcharset/tools/solaris-2.4\nlibiconv-1.11/libcharset/tools/solaris-2.5.1               libiconv-1.11/libcharset/tools/solaris-2.5.1\nlibiconv-1.11/libcharset/tools/solaris-2.6                 libiconv-1.11/libcharset/tools/solaris-2.6\nlibiconv-1.11/libcharset/tools/solaris-2.6-cjk             libiconv-1.11/libcharset/tools/solaris-2.6-cjk\nlibiconv-1.11/libcharset/tools/solaris-2.7                 libiconv-1.11/libcharset/tools/solaris-2.7\nlibiconv-1.11/libcharset/tools/sunos-4.1.4                 libiconv-1.11/libcharset/tools/sunos-4.1.4\nlibiconv-1.11/libcharset/tools/win32                       libiconv-1.11/libcharset/tools/win32\nlibiconv-1.11/libcharset/tools/glibc-2.2                   libiconv-1.11/libcharset/tools/glibc-2.2\nlibiconv-1.11/libcharset/tools/all-charsets-X11            libiconv-1.11/libcharset/tools/all-charsets.X11\nlibiconv-1.11/libcharset/tools/glibc-2.2-XF86-3.3.6        libiconv-1.11/libcharset/tools/glibc-2.2-XF86-3.3.6\nlibiconv-1.11/libcharset/tools/glibc-2.2-XF86-4.0.1f       libiconv-1.11/libcharset/tools/glibc-2.2XF86-4.0.1f\nlibiconv-1.11/libcharset/tools/locale_x11encoding.c        libiconv-1.11/libcharset/tools/locale_x11encoding.c\nlibiconv-1.11/libcharset/tools/beos-5                      libiconv-1.11/libcharset/tools/beos-5\nlibiconv-1.11/libcharset/m4/ChangeLog                      libiconv-1.11/libcharset/m4/ChangeLog\nlibiconv-1.11/libcharset/m4/codeset.m4                     libiconv-1.11/libcharset/m4/codeset.m4\nlibiconv-1.11/libcharset/m4/glibc21.m4                     libiconv-1.11/libcharset/m4/glibc21.m4\nlibiconv-1.11/libcharset/m4/libtool.m4                     libiconv-1.11/libcharset/m4/libtool.m4\nlibiconv-1.11/libcharset/lib/config.charset                libiconv-1.11/libcharset/lib/config.charset\nlibiconv-1.11/libcharset/lib/localcharset.c                libiconv-1.11/libcharset/lib/localcharset.c\nlibiconv-1.11/libcharset/lib/ref-add.sin                   libiconv-1.11/libcharset/lib/ref-add.sin\nlibiconv-1.11/libcharset/lib/ref-del.sin                   libiconv-1.11/libcharset/lib/ref-del.sin\nlibiconv-1.11/libcharset/lib/ChangeLog                     libiconv-1.11/libcharset/lib/ChangeLog\nlibiconv-1.11/libcharset/lib/Makefile.in                   libiconv-1.11/libcharset/lib/Makefile.in\nlibiconv-1.11/libcharset/lib/Makefile.msvc                 libiconv-1.11/libcharset/lib/Makefile.msvc\nlibiconv-1.11/libcharset/AUTHORS                           libiconv-1.11/libcharset/AUTHORS\nlibiconv-1.11/libcharset/COPYING.LIB                       libiconv-1.11/libcharset/COPYING.LIB\nlibiconv-1.11/libcharset/INSTALL.generic                   libiconv-1.11/libcharset/INSTALL.generic\nlibiconv-1.11/libcharset/README                            libiconv-1.11/libcharset/README\nlibiconv-1.11/libcharset/Makefile.devel                    libiconv-1.11/libcharset/Makefile.devel\nlibiconv-1.11/libcharset/Makefile.in                       libiconv-1.11/libcharset/Makefile.in\nlibiconv-1.11/libcharset/configure.ac                      libiconv-1.11/libcharset/configure.ac\nlibiconv-1.11/libcharset/configure                         libiconv-1.11/libcharset/configure\nlibiconv-1.11/libcharset/INTEGRATE                         libiconv-1.11/libcharset/INTEGRATE\nlibiconv-1.11/libcharset/include/localcharset.h.in         libiconv-1.11/libcharset/include/localcharset.h.in\nlibiconv-1.11/libcharset/include/localcharset.h.msvc-shared libiconv-1.11/libcharset/include/localcharset_h.shared-msvc\nlibiconv-1.11/libcharset/autoconf/config.guess             libiconv-1.11/libcharset/autoconf/config.guess\nlibiconv-1.11/libcharset/autoconf/config.sub               libiconv-1.11/libcharset/autoconf/config.sub\nlibiconv-1.11/libcharset/autoconf/ltmain.sh                libiconv-1.11/libcharset/autoconf/ltmain.sh\nlibiconv-1.11/libcharset/autoconf/install-sh               libiconv-1.11/libcharset/autoconf/install-sh\nlibiconv-1.11/libcharset/autoconf/aclocal.m4               libiconv-1.11/libcharset/autoconf/aclocal.m4\nlibiconv-1.11/libcharset/autoconf/mkinstalldirs            libiconv-1.11/libcharset/autoconf/mkinstalldirs\nlibiconv-1.11/libcharset/config.h.in                       libiconv-1.11/libcharset/config.h.in\nlibiconv-1.11/libcharset/windows/dllexport.h               libiconv-1.11/libcharset/windows/dllexport.h\nlibiconv-1.11/libcharset/ChangeLog                         libiconv-1.11/libcharset/ChangeLog\nlibiconv-1.11/libcharset/Makefile.msvc                     libiconv-1.11/libcharset/Makefile.msvc\nlibiconv-1.11/libcharset/README.win32                      libiconv-1.11/libcharset/README.win32\nlibiconv-1.11/libcharset/config.h.msvc                     libiconv-1.11/libcharset/config.h.msvc\nlibiconv-1.11/lib/aliases.gperf                            libiconv-1.11/lib/aliases/aliases.gperf\nlibiconv-1.11/lib/aliases.h                                libiconv-1.11/lib/aliases/aliases.h\nlibiconv-1.11/lib/aliases_aix.h                            libiconv-1.11/lib/aliases/aix.h\nlibiconv-1.11/lib/aliases_dos.h                            libiconv-1.11/lib/aliases/dos.h\nlibiconv-1.11/lib/aliases_osf1.h                           libiconv-1.11/lib/aliases/osf1.h\nlibiconv-1.11/lib/cns11643.h                               libiconv-1.11/lib/cns/11643.h\nlibiconv-1.11/lib/cns11643_1.h                             libiconv-1.11/lib/cns/11643_1.h\nlibiconv-1.11/lib/cns11643_2.h                             libiconv-1.11/lib/cns/11643_2.h\nlibiconv-1.11/lib/cns11643_3.h                             libiconv-1.11/lib/cns/11643_3.h\nlibiconv-1.11/lib/cns11643_inv.h                           libiconv-1.11/lib/cns/11643_inv.h\nlibiconv-1.11/lib/encodings.def                            libiconv-1.11/lib/encodings/encodings.def\nlibiconv-1.11/lib/encodings_aix.def                        libiconv-1.11/lib/encodings/aix.def\nlibiconv-1.11/lib/encodings_dos.def                        libiconv-1.11/lib/encodings/dos.def\nlibiconv-1.11/lib/encodings_osf1.def                       libiconv-1.11/lib/encodings/osf1.def\nlibiconv-1.11/lib/encodings_local.def                      libiconv-1.11/lib/encodings/local.def\nlibiconv-1.11/lib/genaliases2.c                            libiconv-1.11/lib/2genaliases.c\nlibiconv-1.11/lib/georgian_academy.h                       libiconv-1.11/lib/georgian/academy.h\nlibiconv-1.11/lib/georgian_ps.h                            libiconv-1.11/lib/georgian/ps.h\nlibiconv-1.11/lib/iso2022_cn.h                             libiconv-1.11/lib/iso/2022_cn.h\nlibiconv-1.11/lib/iso2022_cnext.h                          libiconv-1.11/lib/iso/2022_cnext.h\nlibiconv-1.11/lib/iso2022_jp.h                             libiconv-1.11/lib/iso/2022_jp.h\nlibiconv-1.11/lib/iso2022_jp1.h                            libiconv-1.11/lib/iso/2022_jp1.h\nlibiconv-1.11/lib/iso2022_jp2.h                            libiconv-1.11/lib/iso/2022_jp2.h\nlibiconv-1.11/lib/iso2022_kr.h                             libiconv-1.11/lib/iso/2022_kr.h\nlibiconv-1.11/lib/iso646_cn.h                              libiconv-1.11/lib/iso/646_cn.h\nlibiconv-1.11/lib/iso646_jp.h                              libiconv-1.11/lib/iso/646_jp.h\nlibiconv-1.11/lib/iso8859_1.h                              libiconv-1.11/lib/iso/8859_1.h\nlibiconv-1.11/lib/iso8859_10.h                             libiconv-1.11/lib/iso/8859_10.h\nlibiconv-1.11/lib/iso8859_13.h                             libiconv-1.11/lib/iso/8859_13.h\nlibiconv-1.11/lib/iso8859_14.h                             libiconv-1.11/lib/iso/8859_14.h\nlibiconv-1.11/lib/iso8859_15.h                             libiconv-1.11/lib/iso/8859_15.h\nlibiconv-1.11/lib/iso8859_16.h                             libiconv-1.11/lib/iso/8859_16.h\nlibiconv-1.11/lib/iso8859_2.h                              libiconv-1.11/lib/iso/8859_2.h\nlibiconv-1.11/lib/iso8859_3.h                              libiconv-1.11/lib/iso/8859_3.h\nlibiconv-1.11/lib/iso8859_4.h                              libiconv-1.11/lib/iso/8859_4.h\nlibiconv-1.11/lib/iso8859_5.h                              libiconv-1.11/lib/iso/8859_5.h\nlibiconv-1.11/lib/iso8859_6.h                              libiconv-1.11/lib/iso/8859_6.h\nlibiconv-1.11/lib/iso8859_7.h                              libiconv-1.11/lib/iso/8859_7.h\nlibiconv-1.11/lib/iso8859_8.h                              libiconv-1.11/lib/iso/8859_8.h\nlibiconv-1.11/lib/iso8859_9.h                              libiconv-1.11/lib/iso/8859_9.h\nlibiconv-1.11/lib/isoir165.h                               libiconv-1.11/lib/iso/ir165.h\nlibiconv-1.11/lib/isoir165ext.h                            libiconv-1.11/lib/iso/ir165ext.h\nlibiconv-1.11/lib/mac_arabic.h                             libiconv-1.11/lib/mac/arabic.h\nlibiconv-1.11/lib/mac_centraleurope.h                      libiconv-1.11/lib/mac/centraleurope.h\nlibiconv-1.11/lib/mac_croatian.h                           libiconv-1.11/lib/mac/croatian.h\nlibiconv-1.11/lib/mac_cyrillic.h                           libiconv-1.11/lib/mac/cyrillic.h\nlibiconv-1.11/lib/mac_greek.h                              libiconv-1.11/lib/mac/greek.h\nlibiconv-1.11/lib/mac_hebrew.h                             libiconv-1.11/lib/mac/hebrew.h\nlibiconv-1.11/lib/mac_iceland.h                            libiconv-1.11/lib/mac/iceland.h\nlibiconv-1.11/lib/mac_roman.h                              libiconv-1.11/lib/mac/roman.h\nlibiconv-1.11/lib/mac_romania.h                            libiconv-1.11/lib/mac/romania.h\nlibiconv-1.11/lib/mac_thai.h                               libiconv-1.11/lib/mac/thai.h\nlibiconv-1.11/lib/mac_turkish.h                            libiconv-1.11/lib/mac/turkish.h\nlibiconv-1.11/lib/mac_ukraine.h                            libiconv-1.11/lib/mac/ukraine.h\nlibiconv-1.11/lib/mulelao.h                                libiconv-1.11/lib/mulelao.h\nlibiconv-1.11/lib/nextstep.h                               libiconv-1.11/lib/nextstep.h\nlibiconv-1.11/lib/sjis.h                                   libiconv-1.11/lib/sjis.h\nlibiconv-1.11/lib/tcvn.h                                   libiconv-1.11/lib/tcvn.h\nlibiconv-1.11/lib/tis620.h                                 libiconv-1.11/lib/tis620.h\nlibiconv-1.11/lib/translit.def                             libiconv-1.11/lib/translit.def\nlibiconv-1.11/lib/translit.h                               libiconv-1.11/lib/translit.h\nlibiconv-1.11/lib/ucs2.h                                   libiconv-1.11/lib/ucs2.h\nlibiconv-1.11/lib/ucs2be.h                                 libiconv-1.11/lib/ucs2be.h\nlibiconv-1.11/lib/ucs2internal.h                           libiconv-1.11/lib/ucs2internal.h\nlibiconv-1.11/lib/ucs2le.h                                 libiconv-1.11/lib/ucs2le.h\nlibiconv-1.11/lib/ucs2swapped.h                            libiconv-1.11/lib/ucs2swapped.h\nlibiconv-1.11/lib/ucs4.h                                   libiconv-1.11/lib/ucs4.h\nlibiconv-1.11/lib/ucs4be.h                                 libiconv-1.11/lib/ucs4be.h\nlibiconv-1.11/lib/ucs4internal.h                           libiconv-1.11/lib/ucs4internal.h\nlibiconv-1.11/lib/ucs4le.h                                 libiconv-1.11/lib/ucs4le.h\nlibiconv-1.11/lib/ucs4swapped.h                            libiconv-1.11/lib/ucs4swapped.h\nlibiconv-1.11/lib/uhc_1.h                                  libiconv-1.11/lib/uhc_1.h\nlibiconv-1.11/lib/uhc_2.h                                  libiconv-1.11/lib/uhc_2.h\nlibiconv-1.11/lib/utf16.h                                  libiconv-1.11/lib/utf16.h\nlibiconv-1.11/lib/utf16be.h                                libiconv-1.11/lib/utf16be.h\nlibiconv-1.11/lib/utf16le.h                                libiconv-1.11/lib/utf16le.h\nlibiconv-1.11/lib/utf7.h                                   libiconv-1.11/lib/utf7.h\nlibiconv-1.11/lib/utf8.h                                   libiconv-1.11/lib/utf8.h\nlibiconv-1.11/lib/viscii.h                                 libiconv-1.11/lib/viscii.h\nlibiconv-1.11/lib/encodings_dos.def                        libiconv-1.11/lib/encodings/dos.def\nlibiconv-1.11/lib/aliases_dos.h                            libiconv-1.11/lib/aliases/dos.h\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/makefile.sed",
    "content": "# Fixes for lib/Makefile.in\ns|encodings\\.def|encodings/&|g\ns|encodings_aix\\.def|encodings/aix.def|g\ns|encodings_dos\\.def|encodings/dos\\.def|g\ns|encodings_extra\\.def|encodings/extra\\.def|g\ns|encodings_osf1\\.def|encodings/osf1\\.def|g\ns|encodings_local\\.def|encodings/local\\.def|g\ns|aliases\\.h|aliases/&|g\ns|aliases2\\.h|aliases/aliases2.h|g\ns|aliases_aix\\.h|aliases/aix.h|g\ns|aliases_dos\\.h|aliases/dos\\.h|g\ns|aliases_extra\\.h|aliases/extra\\.h|g\ns|aliases_osf1\\.h|aliases/osf1\\.h|g\ns|aliases_local\\.h|aliases/local\\.h|g\n\n\n# Fixes for tests/Makefile.in\ns|\\$(srcdir)/check-translitfailure|$(SHELL) $(srcdir)/failuretranslit-check|\ns|\\$(srcdir)/check-stateless|$(SHELL) $(srcdir)/stateless-check|\ns|\\$(srcdir)/check-stateful|$(SHELL) $(srcdir)/stateful-check|\ns|\\$(srcdir)/check-translit|$(SHELL) $(srcdir)/translit-check|\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/sources.sed",
    "content": "# Fixes for lib/iconv.c.\n# All encodings files recide in encdings dir now.\n/^#[ \t]*include/ s|\"canonical\\.h|\"canonical/canonical.h|\n/^#[ \t]*include/ s|\"canonical_aix\\.h|\"canonical/aix.h|\n/^#[ \t]*include/ s|\"canonical_dos\\.h|\"canonical/dos.h|\n/^#[ \t]*include/ s|\"canonical_osf1\\.h|\"canonical/osf1.h|\n/^#[ \t]*include/ s|\"canonical_local\\.h|\"canonical/local.h|\n/^#[ \t]*include/ s|\"canonical_extra\\.h|\"canonical/extra.h|\n/^#[ \t]*include/ s|\"encodings\\.def|\"encodings/encodings.def|\n/^#[ \t]*include/ s|\"encodings_aix\\.def|\"encodings/aix.def|\n/^#[ \t]*include/ s|\"encodings_dos\\.def|\"encodings/dos.def|\n/^#[ \t]*include/ s|\"encodings_osf1\\.def|\"encodings/osf1.def|\n/^#[ \t]*include/ s|\"encodings_local\\.def|\"encodings/local.def|\n/^#[ \t]*include/ s|\"encodings_extra\\.def|\"encodings/extra.def|\n/^#[ \t]*include/ s|\"aliases\\.h|\"aliases/aliases.h|\n/^#[ \t]*include/ s|\"aliases2\\.h|\"aliases/aliases2.h|\n\n# Fixes for lib/iconv.c, lib/aliases/aliases2.h and lib/big5hkscs/1999, 2001, 2004.h\n# All encodings files recide in encdings dir now.\n/^#[ \t]*include/ s|\"aliases_aix\\.h|\"aliases/aix.h|\n/^#[ \t]*include/ s|\"aliases_dos\\.h|\"aliases/dos.h|\n/^#[ \t]*include/ s|\"aliases_osf1\\.h|\"aliases/osf1.h|\n/^#[ \t]*include/ s|\"aliases_local\\.h|\"aliases/local.h|\n/^#[ \t]*include/ s|\"aliases_extra\\.h|\"aliases/extra.h|\n/^#[ \t]*include/ s|\"hkscs1999\\.h|\"hkscs/1999.h|\n/^#[ \t]*include/ s|\"hkscs2001\\.h|\"hkscs/2001.h|\n/^#[ \t]*include/ s|\"hkscs2004\\.h|\"hkscs/2004.h|\n\n# Fixes for lib/converters.h, cns11643??.h and iso?????.h files.\n# All cns, iso, georgian and mac files recide in their respective dirs now.\n/^#[ \t]*include/ s|\"cns|&/|\n/^#[ \t]*include/ s|\"iso|&/|\n/^#[ \t]*include/ s|\"georgian_|\"georgian/|\n/^#[ \t]*include/ s|\"mac_|\"mac/|\n/^#[ \t]*include/ s|\"big5hkscs|&/|\n/^#[ \t]*include/ s|\"hkscs|&/|\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/stateful-check.sed",
    "content": "# Sed script for tests/stateful-check editing.\n\n/charsetf=/ a\\\n\\\n# For systems with severe filename restrictions allow for\\\n# an alternate filename.\\\nUNAME=${UNAME-`uname 2>/dev/null`}\\\ncase X$UNAME in\\\n  *-DOS) filename=`echo \"$charsetf\" | sed \"s|ISO-|ISO/|;s|2022-|2022|;s|BIG5-HKSCS-|BIG5-HKSCS/|\"` ;;\\\n  *)     filename=\"$charsetf\" ;;\\\nesac\ns/\\$charsetf\"-snippet/$filename\"-snippet/g\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/stateless-check.sed",
    "content": "# Sed script for tests/stateless-check editing.\n\n/charsetf=/ a\\\n\\\n# For systems with severe filename restrictions\\\n# allow for an alternate filename.\\\nUNAME=${UNAME-`uname 2>/dev/null`}\\\ncase X$UNAME in\\\n  *-DOS) filename=`echo \"$charsetf\" | sed \"s|ISO-|ISO/|; \\\\\\\n                                           s|Mac|Mac/|; \\\\\\\n                                           s|BIG5-HKSCS-|BIG5-HKSCS/|; \\\\\\\n                                           s|Georgian-|Georgian/|\"`\\\n         tmp_filename=`echo \"$filename\" | sed \"s|/|/tmp-|\"`\\\n         tmp_orig_filename=`echo \"$filename\" | sed \"s|/|/tmp-orig-|\"` ;;\\\n  *)     filename=\"$charsetf\"\\\n         tmp_filename=\"$charsetf\"\\\n         tmp_orig_filename=\"$charsetf\" ;;\\\nesac\ns|/\"\\$charsetf\"|/\"$filename\"|g\ns|tmp-\"\\$charsetf\"|\"${srcdir}\"/\"$tmp_filename\"|g\ns|tmp-orig\"\\$charsetf\"|\"${srcdir}\"/\"$tmp_orig_filename\"|g\ns|\\.INVERSE\\.|.INVERSE-|g\ns|\\.IRREVERSIBLE\\.|.IRREVERSIBLE-|g\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/djgpp/translit-check.sed",
    "content": "# Sed script for tests/translit-check editing.\n\n/\\.\\./ i\\\n# For systems with severe filename restrictions allow for\\\n# an alternate filename.\\\nUNAME=${UNAME-`uname 2>/dev/null`}\\\ncase X$UNAME in\\\n  *-DOS) file=`echo \"$file\" | sed \"s|TranslitFail1|_Translit/Fail1|; \\\\\\\n                                   s|Translit1|_Translit/1|\"`;;\\\n  *)     file=\"$file\" ;;\\\nesac\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/doc/relocatable.texi",
    "content": "@node Enabling Relocatability\n@section Enabling Relocatability\n\nIt has been a pain for many users of GNU packages for a long time that\npackages are not relocatable.  It means a user cannot copy a program,\ninstalled by another user on the same machine, to his home directory,\nand have it work correctly (including i18n).  So many users need to go\nthrough @code{configure; make; make install} with all its\ndependencies, options, and hurdles.\n\nRed Hat, Debian, and similar package systems solve the ``ease of\ninstallation'' problem, but they hardwire path names, usually to\n@file{/usr} or @file{/usr/local}.  This means that users need root\nprivileges to install a binary package, and prevents installing two\ndifferent versions of the same binary package.\n\nA relocatable program can be moved or copied to a different location\non the file system.  It is possible to make symlinks to the installed\nand moved programs, and invoke them through the symlink. It is\npossible to do the same thing with a hard link @emph{only} if the hard\nlink file is in the same directory as the real program.\n\nTo configure a program to be relocatable, add\n@option{--enable-relocatable} to the @command{configure} command line.\n\nOn some OSes the executables remember the location of shared libraries\nand prefer them over any other search path.  Therefore, such an\nexecutable will look for its shared libraries first in the original\ninstallation directory and only then in the current installation\ndirectory.  Thus, for reliability, it is best to also give a\n@option{--prefix} option pointing to a directory that does not exist\nnow and which never will be created, e.g.@:\n@option{--prefix=/nonexistent}.  You may use\n@code{DESTDIR=@var{dest-dir}} on the @command{make} command line to\navoid installing into that directory.\n\nWe do not recommend using a prefix writable by unprivileged users\n(e.g.@: @file{/tmp/inst$$}) because such a directory can be recreated\nby an unprivileged user after the original directory has been removed.\nWe also do not recommend prefixes that might be behind an automounter\n(e.g.@: @file{$HOME/inst$$}) because of the performance impact of\ndirectory searching.\n\nHere's a sample installation run that takes into account all these\nrecommendations:\n\n@example\n./configure --enable-relocatable --prefix=/nonexistent\nmake\nmake install DESTDIR=/tmp/inst$$\n@end example\n\nInstallation with @option{--enable-relocatable} will not work for\nsetuid or setgid executables, because such executables search only\nsystem library paths for security reasons.  Also, installation with\n@option{--enable-relocatable} might not work on OpenBSD, when the\npackage contains shared libraries and libtool versions 1.5.xx are used.\n\nThe runtime penalty and size penalty are negligible on GNU/Linux (just\none system call more when an executable is launched), and small on\nother systems (the wrapper program just sets an environment variable\nand executes the real program).\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/extras/ChangeLog",
    "content": "2011-06-04  Bruno Haible  <bruno@clisp.org>\n\n\t* iconv_string.c (iconv_string): Treat incomplete byte sequence like\n\tinvalid byte sequence.\n\tReported by shosas at <https://savannah.gnu.org/bugs/?32399>.\n\n2003-05-10  Bruno Haible  <bruno@clisp.org>\n\n\t* iconv_string.c (iconv_string): Don't return -1 just because the\n\tstring is longer than 4 KB.\n\n2002-02-13  Bruno Haible  <bruno@clisp.org>\n\n\t* iconv.m4: Remove file. Obsoleted by m4/iconv.m4.\n\n2000-06-16  Bruno Haible  <haible@clisp.cons.org>\n\n        * iconv.m4: Change prefix to AM.\n\n2001-05-23  Bruno Haible  <haible@clisp.cons.org>\n\n        * iconv.m4 (jm_ICONV): Accept --with-libiconv-prefix option.\n\n2001-03-23  Bruno Haible  <haible@clisp.cons.org>\n\n        * iconv.m4 (jm_ICONV): Tweak printing of prototype.\n\n2001-03-20  Bruno Haible  <haible@clisp.cons.org>\n\n        * iconv.m4 (jm_ICONV): Recommend GNU libiconv.\n\n2001-01-03  Bruno Haible  <haible@clisp.cons.org>\n\n        * iconv.m4 (jm_ICONV): Also check whether the iconv declaration\n          has const.\n\n2000-02-02  Bruno Haible  <haible@clisp.cons.org>\n\n        * iconv.m4: New file.\n\n2001-01-29  Bruno Haible  <haible@clisp.cons.org>\n\n        * locale_charset.c: Remove file. Obsoleted by libcharset.\n\n2000-10-22  Bruno Haible  <haible@clisp.cons.org>\n\n        * locale_charset.c (get_locale_charset): Accept french and spanish\n          names in both ISO-8859-1 and UTF-8.\n\n2000-08-24  Jim Blackson  <blackson@ontrack-japan.com>\n\n        * iconv_string.c (iconv_string): Fix return value for autodetect.\n\n2000-01-24  Bruno Haible  <haible@clisp.cons.org>\n\n        * iconv_string.c (iconv_string): Stop recognizing JOHAB.\n          Fix typo for EUC-JP.\n\n1999-12-18  Bruno Haible  <haible@clisp.cons.org>\n\n        * locale_charset.c (get_locale_charset): Recognize more language codes:\n          \"af\" (afrikaans), \"ca\" (catalan), \"eu\" (basque), \"fo\" (faeroese),\n          \"ga\" (irish), \"gd\" (scottish), \"gl\" (galician), \"sq\" (albanian),\n          \"eo\" (esperanto), \"mt\" (maltese), \"be\" (byelorussian),\n          \"et\" (estonian), \"lt\" (lithuanian), \"lv\" (latvian), \"uk\" (ukrainian).\n          Recognize more aliases: \"english\", \"slovenian\", \"macedonian\",\n          \"serbian\", \"arabic\".\n          Change default: KOI8-R for \"ru\" (russian) instead of ISO-8859-5,\n          ISO-8859-5 for \"sr\" instead of ISO-8859-2.\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/extras/iconv_string.c",
    "content": "/* Copyright (C) 1999-2001, 2003, 2011 Bruno Haible.\n   This file is not part of the GNU LIBICONV Library.\n   This file is put into the public domain.  */\n\n#include \"iconv_string.h\"\n#include <iconv.h>\n#include <errno.h>\n#include <stdlib.h>\n#include <string.h>\n\n#define tmpbufsize 4096\n\nint iconv_string (const char* tocode, const char* fromcode,\n                  const char* start, const char* end,\n                  char** resultp, size_t* lengthp)\n{\n  iconv_t cd = iconv_open(tocode,fromcode);\n  size_t length;\n  char* result;\n  if (cd == (iconv_t)(-1)) {\n    if (errno != EINVAL)\n      return -1;\n    /* Unsupported fromcode or tocode. Check whether the caller requested\n       autodetection. */\n    if (!strcmp(fromcode,\"autodetect_utf8\")) {\n      int ret;\n      /* Try UTF-8 first. There are very few ISO-8859-1 inputs that would\n         be valid UTF-8, but many UTF-8 inputs are valid ISO-8859-1. */\n      ret = iconv_string(tocode,\"UTF-8\",start,end,resultp,lengthp);\n      if (!(ret < 0 && errno == EILSEQ))\n        return ret;\n      ret = iconv_string(tocode,\"ISO-8859-1\",start,end,resultp,lengthp);\n      return ret;\n    }\n    if (!strcmp(fromcode,\"autodetect_jp\")) {\n      int ret;\n      /* Try 7-bit encoding first. If the input contains bytes >= 0x80,\n         it will fail. */\n      ret = iconv_string(tocode,\"ISO-2022-JP-2\",start,end,resultp,lengthp);\n      if (!(ret < 0 && errno == EILSEQ))\n        return ret;\n      /* Try EUC-JP next. Short SHIFT_JIS inputs may come out wrong. This\n         is unavoidable. People will condemn SHIFT_JIS.\n         If we tried SHIFT_JIS first, then some short EUC-JP inputs would\n         come out wrong, and people would condemn EUC-JP and Unix, which\n         would not be good. */\n      ret = iconv_string(tocode,\"EUC-JP\",start,end,resultp,lengthp);\n      if (!(ret < 0 && errno == EILSEQ))\n        return ret;\n      /* Finally try SHIFT_JIS. */\n      ret = iconv_string(tocode,\"SHIFT_JIS\",start,end,resultp,lengthp);\n      return ret;\n    }\n    if (!strcmp(fromcode,\"autodetect_kr\")) {\n      int ret;\n      /* Try 7-bit encoding first. If the input contains bytes >= 0x80,\n         it will fail. */\n      ret = iconv_string(tocode,\"ISO-2022-KR\",start,end,resultp,lengthp);\n      if (!(ret < 0 && errno == EILSEQ))\n        return ret;\n      /* Finally try EUC-KR. */\n      ret = iconv_string(tocode,\"EUC-KR\",start,end,resultp,lengthp);\n      return ret;\n    }\n    errno = EINVAL;\n    return -1;\n  }\n  /* Determine the length we need. */\n  {\n    size_t count = 0;\n    char tmpbuf[tmpbufsize];\n    const char* inptr = start;\n    size_t insize = end-start;\n    while (insize > 0) {\n      char* outptr = tmpbuf;\n      size_t outsize = tmpbufsize;\n      size_t res = iconv(cd,&inptr,&insize,&outptr,&outsize);\n      if (res == (size_t)(-1) && errno != E2BIG) {\n        int saved_errno = (errno == EINVAL ? EILSEQ : errno);\n        iconv_close(cd);\n        errno = saved_errno;\n        return -1;\n      }\n      count += outptr-tmpbuf;\n    }\n    {\n      char* outptr = tmpbuf;\n      size_t outsize = tmpbufsize;\n      size_t res = iconv(cd,NULL,NULL,&outptr,&outsize);\n      if (res == (size_t)(-1)) {\n        int saved_errno = errno;\n        iconv_close(cd);\n        errno = saved_errno;\n        return -1;\n      }\n      count += outptr-tmpbuf;\n    }\n    length = count;\n  }\n  if (lengthp != NULL)\n    *lengthp = length;\n  if (resultp == NULL) {\n    iconv_close(cd);\n    return 0;\n  }\n  result = (*resultp == NULL ? malloc(length) : realloc(*resultp,length));\n  *resultp = result;\n  if (length == 0) {\n    iconv_close(cd);\n    return 0;\n  }\n  if (result == NULL) {\n    iconv_close(cd);\n    errno = ENOMEM;\n    return -1;\n  }\n  iconv(cd,NULL,NULL,NULL,NULL); /* return to the initial state */\n  /* Do the conversion for real. */\n  {\n    const char* inptr = start;\n    size_t insize = end-start;\n    char* outptr = result;\n    size_t outsize = length;\n    while (insize > 0) {\n      size_t res = iconv(cd,&inptr,&insize,&outptr,&outsize);\n      if (res == (size_t)(-1)) {\n        if (errno == EINVAL)\n          break;\n        else {\n          int saved_errno = errno;\n          iconv_close(cd);\n          errno = saved_errno;\n          return -1;\n        }\n      }\n    }\n    {\n      size_t res = iconv(cd,NULL,NULL,&outptr,&outsize);\n      if (res == (size_t)(-1)) {\n        int saved_errno = errno;\n        iconv_close(cd);\n        errno = saved_errno;\n        return -1;\n      }\n    }\n    if (outsize != 0) abort();\n  }\n  iconv_close(cd);\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/extras/iconv_string.h",
    "content": "/* Copyright (C) 1999-2001 Bruno Haible.\n   This file is not part of the GNU LIBICONV Library.\n   This file is put into the public domain.  */\n\n/*\n * This C function converts an entire string from one encoding to another,\n * using iconv. Easier to use than iconv() itself, and supports autodetect\n * encodings on input.\n *\n *   int iconv_string (const char* tocode, const char* fromcode,\n *                     const char* start, const char* end,\n *                     char** resultp, size_t* lengthp)\n *\n * Converts a memory region given in encoding FROMCODE to a new memory\n * region in encoding TOCODE. FROMCODE and TOCODE are as for iconv_open(3),\n * except that FROMCODE may be one of the values\n *    \"autodetect_utf8\"          supports ISO-8859-1 and UTF-8\n *    \"autodetect_jp\"            supports EUC-JP, ISO-2022-JP-2 and SHIFT_JIS\n *    \"autodetect_kr\"            supports EUC-KR and ISO-2022-KR\n * The input is in the memory region between start (inclusive) and end\n * (exclusive). If resultp is not NULL, the output string is stored in\n * *resultp; malloc/realloc is used to allocate the result.\n *\n * This function does not treat zero characters specially.\n *\n * Return value: 0 if successful, otherwise -1 and errno set. Particular\n * errno values: EILSEQ and ENOMEM.\n *\n * Example:\n *   const char* s = ...;\n *   char* result = NULL;\n *   if (iconv_string(\"UCS-4-INTERNAL\", \"autodetect_utf8\",\n *                    s, s+strlen(s)+1, &result, NULL) < 0)\n *     perror(\"iconv_string\");\n *\n */\n#include <stddef.h>\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\nextern int iconv_string (const char* tocode, const char* fromcode, const char* start, const char* end, char** resultp, size_t* lengthp);\n\n#ifdef __cplusplus\n}\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/gnulib-local/lib/alloca.in.h",
    "content": "/* Memory allocation on the stack.\n   Copyright (C) 1995, 1999, 2001-2007 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* When this file is included, it may be preceded only by preprocessor\n   declarations.  Thanks to AIX.  Therefore we include it right after\n   \"config.h\", not later.  */\n\n/* Avoid using the symbol _ALLOCA_H here, as Bison assumes _ALLOCA_H\n   means there is a real alloca function.  */\n#ifndef _GL_ALLOCA_H\n#define _GL_ALLOCA_H\n\n/* alloca(N) returns a pointer (void* or char*) to N bytes of memory\n   allocated on the stack, and which will last until the function returns.\n   Use of alloca should be avoided:\n     - inside arguments of function calls - undefined behaviour,\n     - in inline functions - the allocation may actually last until the\n       calling function returns,\n     - for huge N (say, N >= 65536) - you never know how large (or small)\n       the stack is, and when the stack cannot fulfill the memory allocation\n       request, the program just crashes.\n */\n\n#ifndef alloca\n# ifdef __GNUC__\n#   define alloca __builtin_alloca\n# else\n#  ifdef _MSC_VER\n#   include <malloc.h>\n#   define alloca _alloca\n#  else\n#   if HAVE_ALLOCA_H\n#    include <alloca.h>\n#   else\n#    ifdef _AIX\n #pragma alloca\n#    else\n#     ifdef __hpux /* This section must match that of bison generated files. */\n#      ifdef __cplusplus\nextern \"C\" void *alloca (unsigned int);\n#      else /* not __cplusplus */\nextern void *alloca ();\n#      endif /* not __cplusplus */\n#     else /* not __hpux */\n#      ifndef alloca\nextern char *alloca ();\n#      endif\n#     endif /* __hpux */\n#    endif\n#   endif\n#  endif\n# endif\n#endif\n\n#endif /* _GL_ALLOCA_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/gnulib-local/lib/error.h.diff",
    "content": "*** gnulib/lib/error.h\t2005-05-14 08:03:58.000000000 +0200\n--- srclib/error.h\t2005-05-20 23:06:02.000000000 +0200\n***************\n*** 50,63 ****\n  /* If NULL, error will flush stdout, then print on stderr the program\n     name, a colon and a space.  Otherwise, error will call this\n     function without parameters instead.  */\n! extern void (*error_print_progname) (void);\n  \n  /* This variable is incremented each time 'error' is called.  */\n! extern unsigned int error_message_count;\n  \n  /* Sometimes we want to have at most one error per line.  This\n     variable controls whether this mode is selected or not.  */\n! extern int error_one_per_line;\n  \n  #ifdef\t__cplusplus\n  }\n--- 50,63 ----\n  /* If NULL, error will flush stdout, then print on stderr the program\n     name, a colon and a space.  Otherwise, error will call this\n     function without parameters instead.  */\n! extern DLL_VARIABLE void (*error_print_progname) (void);\n  \n  /* This variable is incremented each time 'error' is called.  */\n! extern DLL_VARIABLE unsigned int error_message_count;\n  \n  /* Sometimes we want to have at most one error per line.  This\n     variable controls whether this mode is selected or not.  */\n! extern DLL_VARIABLE int error_one_per_line;\n  \n  #ifdef\t__cplusplus\n  }\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/gnulib-local/lib/progname.h.diff",
    "content": "*** gnulib/lib/progname.h\t2005-05-14 08:03:58.000000000 +0200\n--- srclib/progname.h\t2005-05-20 23:06:02.000000000 +0200\n***************\n*** 30,36 ****\n  \n  \n  /* String containing name the program is called with.  */\n! extern const char *program_name;\n  \n  /* Set program_name, based on argv[0].  */\n  extern void set_program_name (const char *argv0);\n--- 30,36 ----\n  \n  \n  /* String containing name the program is called with.  */\n! extern DLL_VARIABLE const char *program_name;\n  \n  /* Set program_name, based on argv[0].  */\n  extern void set_program_name (const char *argv0);\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/gnulib-local/lib/xalloc.h",
    "content": "/* malloc with out of memory checking.\n   Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.\n   Written by Bruno Haible <haible@clisp.cons.org>, 2001.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _XALLOC_H\n#define _XALLOC_H\n\n#include <stddef.h>\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Defined in xmalloc.c.  */\n\n/* Allocate SIZE bytes of memory dynamically, with error checking.  */\nextern void *xmalloc (size_t size);\n\n/* Allocate memory for NMEMB elements of SIZE bytes, with error checking.\n   SIZE must be > 0.  */\nextern void *xnmalloc (size_t nmemb, size_t size);\n\n/* Allocate SIZE bytes of memory dynamically, with error checking,\n   and zero it.  */\nextern void *xzalloc (size_t size);\n\n/* Allocate memory for NMEMB elements of SIZE bytes, with error checking,\n   and zero it.  */\nextern void *xcalloc (size_t nmemb, size_t size);\n\n/* Change the size of an allocated block of memory PTR to SIZE bytes,\n   with error checking.  If PTR is NULL, run xmalloc.  */\nextern void *xrealloc (void *ptr, size_t size);\n#ifdef __cplusplus\n}\ntemplate <typename T>\n  inline T * xrealloc (T * ptr, size_t size)\n  {\n    return (T *) xrealloc ((void *) ptr, size);\n  }\nextern \"C\" {\n#endif\n\n/* This function is always triggered when memory is exhausted.  It is\n   in charge of honoring the three previous items.  This is the\n   function to call when one wants the program to die because of a\n   memory allocation failure.  */\nextern void xalloc_die (void)\n#if (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5)) && !__STRICT_ANSI__\n     __attribute__ ((__noreturn__))\n#endif\n     ;\n\n/* In the following macros, T must be an elementary or structure/union or\n   typedef'ed type, or a pointer to such a type.  To apply one of the\n   following macros to a function pointer or array type, you need to typedef\n   it first and use the typedef name.  */\n\n/* Allocate an object of type T dynamically, with error checking.  */\n/* extern T *XMALLOC (typename T); */\n#define XMALLOC(T) \\\n  ((T *) xmalloc (sizeof (T)))\n\n/* Allocate memory for NMEMB elements of type T, with error checking.  */\n/* extern T *XNMALLOC (size_t nmemb, typename T); */\n#if HAVE_INLINE\n/* xnmalloc performs a division and multiplication by sizeof (T).  Arrange to\n   perform the division at compile-time and the multiplication with a factor\n   known at compile-time.  */\n# define XNMALLOC(N,T) \\\n   ((T *) (sizeof (T) == 1 \\\n           ? xmalloc (N) \\\n           : xnboundedmalloc(N, (size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / sizeof (T), sizeof (T))))\nstatic inline void *\nxnboundedmalloc (size_t n, size_t bound, size_t s)\n{\n  if (n > bound)\n    xalloc_die ();\n  return xmalloc (n * s);\n}\n#else\n# define XNMALLOC(N,T) \\\n   ((T *) (sizeof (T) == 1 ? xmalloc (N) : xnmalloc (N, sizeof (T))))\n#endif\n\n/* Allocate an object of type T dynamically, with error checking,\n   and zero it.  */\n/* extern T *XZALLOC (typename T); */\n#define XZALLOC(T) \\\n  ((T *) xzalloc (sizeof (T)))\n\n/* Allocate memory for NMEMB elements of type T, with error checking,\n   and zero it.  */\n/* extern T *XCALLOC (size_t nmemb, typename T); */\n#define XCALLOC(N,T) \\\n  ((T *) xcalloc (N, sizeof (T)))\n\n/* Return a pointer to a new buffer of N bytes.  This is like xmalloc,\n   except it returns char *.  */\n#define xcharalloc(N) \\\n  XNMALLOC (N, char)\n\n\n/* Defined in xstrdup.c.  */\n\n/* Return a newly allocated copy of the N bytes of memory starting at P.  */\nextern void *xmemdup (const void *p, size_t n);\n#ifdef __cplusplus\n}\ntemplate <typename T>\n  inline T * xmemdup (const T * p, size_t n)\n  {\n    return (T *) xmemdup ((const void *) p, n);\n  }\nextern \"C\" {\n#endif\n\n/* Return a newly allocated copy of STRING.  */\nextern char *xstrdup (const char *string);\n\n\n/* Return 1 if an array of N objects, each of size S, cannot exist due\n   to size arithmetic overflow.  S must be positive and N must be\n   nonnegative.  This is a macro, not an inline function, so that it\n   works correctly even when SIZE_MAX < N.\n\n   By gnulib convention, SIZE_MAX represents overflow in size\n   calculations, so the conservative dividend to use here is\n   SIZE_MAX - 1, since SIZE_MAX might represent an overflowed value.\n   However, malloc (SIZE_MAX) fails on all known hosts where\n   sizeof (ptrdiff_t) <= sizeof (size_t), so do not bother to test for\n   exactly-SIZE_MAX allocations on such hosts; this avoids a test and\n   branch when S is known to be 1.  */\n# define xalloc_oversized(n, s) \\\n    ((size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / (s) < (n))\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _XALLOC_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/gnulib-local/lib/xmalloc.c",
    "content": "/* xmalloc.c -- malloc with out of memory checking\n   Copyright (C) 1990-1996, 2000-2003, 2005-2007 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include \"xalloc.h\"\n\n#include <stdlib.h>\n\n#include \"error.h\"\n#include \"gettext.h\"\n\n#define _(str) gettext (str)\n\n\n/* Exit value when the requested amount of memory is not available.\n   The caller may set it to some other value.  */\nint xmalloc_exit_failure = EXIT_FAILURE;\n\nvoid\nxalloc_die ()\n{\n  error (xmalloc_exit_failure, 0, _(\"memory exhausted\"));\n  /* _Noreturn cannot be given to error, since it may return if\n     its first argument is 0.  To help compilers understand the\n     xalloc_die does terminate, call exit. */\n  exit (EXIT_FAILURE);\n}\n\nstatic void *\nfixup_null_alloc (size_t n)\n{\n  void *p;\n\n  p = NULL;\n  if (n == 0)\n    p = malloc ((size_t) 1);\n  if (p == NULL)\n    xalloc_die ();\n  return p;\n}\n\n/* Allocate N bytes of memory dynamically, with error checking.  */\n\nvoid *\nxmalloc (size_t n)\n{\n  void *p;\n\n  p = malloc (n);\n  if (p == NULL)\n    p = fixup_null_alloc (n);\n  return p;\n}\n\n/* Allocate memory for NMEMB elements of SIZE bytes, with error checking.\n   SIZE must be > 0.  */\n\nvoid *\nxnmalloc (size_t nmemb, size_t size)\n{\n  size_t n;\n  void *p;\n\n  if (xalloc_oversized (nmemb, size))\n    xalloc_die ();\n  n = nmemb * size;\n  p = malloc (n);\n  if (p == NULL)\n    p = fixup_null_alloc (n);\n  return p;\n}\n\n/* Allocate SIZE bytes of memory dynamically, with error checking,\n   and zero it.  */\n\nvoid *\nxzalloc (size_t size)\n{\n  void *p;\n\n  p = xmalloc (size);\n  memset (p, 0, size);\n  return p;\n}\n\n/* Allocate memory for N elements of S bytes, with error checking,\n   and zero it.  */\n\nvoid *\nxcalloc (size_t n, size_t s)\n{\n  void *p;\n\n  p = calloc (n, s);\n  if (p == NULL)\n    p = fixup_null_alloc (n);\n  return p;\n}\n\n/* Change the size of an allocated block of memory P to N bytes,\n   with error checking.\n   If P is NULL, run xmalloc.  */\n\nvoid *\nxrealloc (void *p, size_t n)\n{\n  if (p == NULL)\n    return xmalloc (n);\n  p = realloc (p, n);\n  if (p == NULL)\n    p = fixup_null_alloc (n);\n  return p;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/gnulib-local/lib/xstrdup.c",
    "content": "/* xstrdup.c -- copy a string with out of memory checking\n   Copyright (C) 1990, 1996, 2000-2003, 2005-2006 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include \"xalloc.h\"\n\n#include <string.h>\n\n/* Return a newly allocated copy of the N bytes of memory starting at P.  */\n\nvoid *\nxmemdup (const void *p, size_t n)\n{\n  void *q = xmalloc (n);\n  memcpy (q, p, n);\n  return q;\n}\n\n/* Return a newly allocated copy of STRING.  */\n\nchar *\nxstrdup (const char *string)\n{\n  return strcpy (XNMALLOC (strlen (string) + 1, char), string);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/gnulib-local/m4/alloca.m4",
    "content": "# alloca.m4 serial 4 (gettext-0.18.2)\ndnl Copyright (C) 2002-2003, 2006, 2011 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_FUNC_ALLOCA],\n[\n  dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57.\n  AC_REQUIRE([AC_PROG_CPP])\n  AC_REQUIRE([AC_PROG_EGREP])\n\n  AC_REQUIRE([AC_FUNC_ALLOCA])\n  if test $ac_cv_func_alloca_works = no; then\n    gl_PREREQ_ALLOCA\n  fi\n\n  # Define an additional variable used in the Makefile substitution.\n\n  AC_EGREP_CPP([Need own alloca], [\n#if defined __GNUC__ || defined _MSC_VER || !HAVE_ALLOCA_H\n  Need own alloca\n#endif\n    ],\n    ALLOCA_H=alloca.h,\n    ALLOCA_H=)\n  AC_SUBST([ALLOCA_H])\n  AM_CONDITIONAL([GL_GENERATE_ALLOCA_H], [test -n \"$ALLOCA_H\"])\n])\n\n# Prerequisites of lib/alloca.c.\n# STACK_DIRECTION is already handled by AC_FUNC_ALLOCA.\nAC_DEFUN([gl_PREREQ_ALLOCA], [\n  AC_CHECK_HEADERS_ONCE(stdlib.h string.h)\n  :\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/gnulib-local/modules/libiconv-misc",
    "content": "Description:\n\nFiles:\n\nDepends-on:\n\nconfigure.ac:\n\nMakefile.am:\n# Parametrization of the 'relocatable' module.\nAM_CPPFLAGS += -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1\n\nInclude:\n\nLicense:\nGPL\n\nMaintainer:\nBruno Haible\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/gnulib-local/modules/mbstate",
    "content": "Description:\nmbstate_t type.\n\nFiles:\nm4/mbstate_t.m4\n\nDepends-on:\n\nconfigure.ac:\nAC_TYPE_MBSTATE_T\n\nMakefile.am:\n\nInclude:\n\nLicense:\nLGPL\n\nMaintainer:\nBruno Haible\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/gnulib-local/modules/xalloc",
    "content": "Description:\nMemory allocation with out-of-memory checking.\n\nFiles:\nlib/xalloc.h\nlib/xmalloc.c\nlib/xstrdup.c\n\nDepends-on:\n\nconfigure.ac:\n\nMakefile.am:\nlib_SOURCES += xalloc.h xmalloc.c xstrdup.c\n\nInclude:\n\"xalloc.h\"\n\nLicense:\nGPL\n\nMaintainer:\nall\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/include/export.h",
    "content": "\n#if @HAVE_VISIBILITY@ && BUILDING_LIBICONV\n#define LIBICONV_DLL_EXPORTED __attribute__((__visibility__(\"default\")))\n#else\n#define LIBICONV_DLL_EXPORTED\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/include/iconv.h",
    "content": "/* Copyright (C) 1999-2003, 2005-2006, 2008-2011 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* When installed, this file is called \"iconv.h\". */\n\n#ifndef _LIBICONV_H\n#define _LIBICONV_H\n\n#define _LIBICONV_VERSION 0x010F    /* version number: (major<<8) + minor */\n\n#if 1 && BUILDING_LIBICONV\n#define LIBICONV_DLL_EXPORTED __attribute__((__visibility__(\"default\")))\n#else\n#define LIBICONV_DLL_EXPORTED\n#endif\nextern LIBICONV_DLL_EXPORTED  int _libiconv_version; /* Likewise */\n\n/* We would like to #include any system header file which could define\n   iconv_t, 1. in order to eliminate the risk that the user gets compilation\n   errors because some other system header file includes /usr/include/iconv.h\n   which defines iconv_t or declares iconv after this file, 2. when compiling\n   for LIBICONV_PLUG, we need the proper iconv_t type in order to produce\n   binary compatible code.\n   But gcc's #include_next is not portable. Thus, once libiconv's iconv.h\n   has been installed in /usr/local/include, there is no way any more to\n   include the original /usr/include/iconv.h. We simply have to get away\n   without it.\n   Ad 1. The risk that a system header file does\n   #include \"iconv.h\"  or  #include_next \"iconv.h\"\n   is small. They all do #include <iconv.h>.\n   Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It\n   has to be a scalar type because (iconv_t)(-1) is a possible return value\n   from iconv_open().) */\n\n/* Define iconv_t ourselves. */\n#undef iconv_t\n#define iconv_t libiconv_t\ntypedef void* iconv_t;\n\n/* Get size_t declaration.\n   Get wchar_t declaration if it exists. */\n#include <stddef.h>\n\n/* Get errno declaration and values. */\n#include <errno.h>\n/* Some systems, like SunOS 4, don't have EILSEQ. Some systems, like BSD/OS,\n   have EILSEQ in a different header.  On these systems, define EILSEQ\n   ourselves. */\n#ifndef EILSEQ\n#define EILSEQ \n#endif\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Allocates descriptor for code conversion from encoding ‘fromcode’ to\n   encoding ‘tocode’. */\n#ifndef LIBICONV_PLUG\n#define iconv_open libiconv_open\n#endif\nextern LIBICONV_DLL_EXPORTED iconv_t iconv_open (const char* tocode, const char* fromcode);\n\n/* Converts, using conversion descriptor ‘cd’, at most ‘*inbytesleft’ bytes\n   starting at ‘*inbuf’, writing at most ‘*outbytesleft’ bytes starting at\n   ‘*outbuf’.\n   Decrements ‘*inbytesleft’ and increments ‘*inbuf’ by the same amount.\n   Decrements ‘*outbytesleft’ and increments ‘*outbuf’ by the same amount. */\n#ifndef LIBICONV_PLUG\n#define iconv libiconv\n#endif\nextern LIBICONV_DLL_EXPORTED size_t iconv (iconv_t cd,  char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft);\n\n/* Frees resources allocated for conversion descriptor ‘cd’. */\n#ifndef LIBICONV_PLUG\n#define iconv_close libiconv_close\n#endif\nextern LIBICONV_DLL_EXPORTED int iconv_close (iconv_t cd);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#ifndef LIBICONV_PLUG\n\n/* Nonstandard extensions. */\n\n#if 1\n#if 0\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n   included before <wchar.h>.  */\n#include <stddef.h>\n#include <stdio.h>\n#include <time.h>\n#endif\n#include <wchar.h>\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/* A type that holds all memory needed by a conversion descriptor.\n   A pointer to such an object can be used as an iconv_t. */\ntypedef struct {\n  void* dummy1[28];\n#if 1\n  mbstate_t dummy2;\n#endif\n} iconv_allocation_t;\n\n/* Allocates descriptor for code conversion from encoding ‘fromcode’ to\n   encoding ‘tocode’ into preallocated memory. Returns an error indicator\n   (0 or -1 with errno set). */\n#define iconv_open_into libiconv_open_into\nextern LIBICONV_DLL_EXPORTED int iconv_open_into (const char* tocode, const char* fromcode,\n                            iconv_allocation_t* resultp);\n\n/* Control of attributes. */\n#define iconvctl libiconvctl\nextern LIBICONV_DLL_EXPORTED int iconvctl (iconv_t cd, int request, void* argument);\n\n/* Hook performed after every successful conversion of a Unicode character. */\ntypedef void (*iconv_unicode_char_hook) (unsigned int uc, void* data);\n/* Hook performed after every successful conversion of a wide character. */\ntypedef void (*iconv_wide_char_hook) (wchar_t wc, void* data);\n/* Set of hooks. */\nstruct iconv_hooks {\n  iconv_unicode_char_hook uc_hook;\n  iconv_wide_char_hook wc_hook;\n  void* data;\n};\n\n/* Fallback function.  Invoked when a small number of bytes could not be\n   converted to a Unicode character.  This function should process all\n   bytes from inbuf and may produce replacement Unicode characters by calling\n   the write_replacement callback repeatedly.  */\ntypedef void (*iconv_unicode_mb_to_uc_fallback)\n             (const char* inbuf, size_t inbufsize,\n              void (*write_replacement) (const unsigned int *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n/* Fallback function.  Invoked when a Unicode character could not be converted\n   to the target encoding.  This function should process the character and\n   may produce replacement bytes (in the target encoding) by calling the\n   write_replacement callback repeatedly.  */\ntypedef void (*iconv_unicode_uc_to_mb_fallback)\n             (unsigned int code,\n              void (*write_replacement) (const char *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n#if 1\n/* Fallback function.  Invoked when a number of bytes could not be converted to\n   a wide character.  This function should process all bytes from inbuf and may\n   produce replacement wide characters by calling the write_replacement\n   callback repeatedly.  */\ntypedef void (*iconv_wchar_mb_to_wc_fallback)\n             (const char* inbuf, size_t inbufsize,\n              void (*write_replacement) (const wchar_t *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n/* Fallback function.  Invoked when a wide character could not be converted to\n   the target encoding.  This function should process the character and may\n   produce replacement bytes (in the target encoding) by calling the\n   write_replacement callback repeatedly.  */\ntypedef void (*iconv_wchar_wc_to_mb_fallback)\n             (wchar_t code,\n              void (*write_replacement) (const char *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n#else\n/* If the wchar_t type does not exist, these two fallback functions are never\n   invoked.  Their argument list therefore does not matter.  */\ntypedef void (*iconv_wchar_mb_to_wc_fallback) ();\ntypedef void (*iconv_wchar_wc_to_mb_fallback) ();\n#endif\n/* Set of fallbacks. */\nstruct iconv_fallbacks {\n  iconv_unicode_mb_to_uc_fallback mb_to_uc_fallback;\n  iconv_unicode_uc_to_mb_fallback uc_to_mb_fallback;\n  iconv_wchar_mb_to_wc_fallback mb_to_wc_fallback;\n  iconv_wchar_wc_to_mb_fallback wc_to_mb_fallback;\n  void* data;\n};\n\n/* Requests for iconvctl. */\n#define ICONV_TRIVIALP            0  /* int *argument */\n#define ICONV_GET_TRANSLITERATE   1  /* int *argument */\n#define ICONV_SET_TRANSLITERATE   2  /* const int *argument */\n#define ICONV_GET_DISCARD_ILSEQ   3  /* int *argument */\n#define ICONV_SET_DISCARD_ILSEQ   4  /* const int *argument */\n#define ICONV_SET_HOOKS           5  /* const struct iconv_hooks *argument */\n#define ICONV_SET_FALLBACKS       6  /* const struct iconv_fallbacks *argument */\n\n/* Listing of locale independent encodings. */\n#define iconvlist libiconvlist\nextern LIBICONV_DLL_EXPORTED void iconvlist (int (*do_one) (unsigned int namescount,\n                                      const char * const * names,\n                                      void* data),\n                       void* data);\n\n/* Canonicalize an encoding name.\n   The result is either a canonical encoding name, or name itself. */\nextern LIBICONV_DLL_EXPORTED const char * iconv_canonicalize (const char * name);\n\n/* Support for relocatable packages.  */\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nextern LIBICONV_DLL_EXPORTED void libiconv_set_relocation_prefix (const char *orig_prefix,\n                                            const char *curr_prefix);\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif\n\n\n#endif /* _LIBICONV_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/include/iconv.h.build.in",
    "content": "/* Copyright (C) 1999-2003, 2005-2006, 2008-2011 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* When installed, this file is called \"iconv.h\". */\n\n#ifndef _LIBICONV_H\n#define _LIBICONV_H\n\n#define _LIBICONV_VERSION 0x010F    /* version number: (major<<8) + minor */\n\n#if @HAVE_VISIBILITY@ && BUILDING_LIBICONV\n#define LIBICONV_DLL_EXPORTED __attribute__((__visibility__(\"default\")))\n#else\n#define LIBICONV_DLL_EXPORTED\n#endif\nextern LIBICONV_DLL_EXPORTED @DLL_VARIABLE@ int _libiconv_version; /* Likewise */\n\n/* We would like to #include any system header file which could define\n   iconv_t, 1. in order to eliminate the risk that the user gets compilation\n   errors because some other system header file includes /usr/include/iconv.h\n   which defines iconv_t or declares iconv after this file, 2. when compiling\n   for LIBICONV_PLUG, we need the proper iconv_t type in order to produce\n   binary compatible code.\n   But gcc's #include_next is not portable. Thus, once libiconv's iconv.h\n   has been installed in /usr/local/include, there is no way any more to\n   include the original /usr/include/iconv.h. We simply have to get away\n   without it.\n   Ad 1. The risk that a system header file does\n   #include \"iconv.h\"  or  #include_next \"iconv.h\"\n   is small. They all do #include <iconv.h>.\n   Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It\n   has to be a scalar type because (iconv_t)(-1) is a possible return value\n   from iconv_open().) */\n\n/* Define iconv_t ourselves. */\n#undef iconv_t\n#define iconv_t libiconv_t\ntypedef void* iconv_t;\n\n/* Get size_t declaration.\n   Get wchar_t declaration if it exists. */\n#include <stddef.h>\n\n/* Get errno declaration and values. */\n#include <errno.h>\n/* Some systems, like SunOS 4, don't have EILSEQ. Some systems, like BSD/OS,\n   have EILSEQ in a different header.  On these systems, define EILSEQ\n   ourselves. */\n#ifndef EILSEQ\n#define EILSEQ @EILSEQ@\n#endif\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Allocates descriptor for code conversion from encoding ‘fromcode’ to\n   encoding ‘tocode’. */\n#ifndef LIBICONV_PLUG\n#define iconv_open libiconv_open\n#endif\nextern LIBICONV_DLL_EXPORTED iconv_t iconv_open (const char* tocode, const char* fromcode);\n\n/* Converts, using conversion descriptor ‘cd’, at most ‘*inbytesleft’ bytes\n   starting at ‘*inbuf’, writing at most ‘*outbytesleft’ bytes starting at\n   ‘*outbuf’.\n   Decrements ‘*inbytesleft’ and increments ‘*inbuf’ by the same amount.\n   Decrements ‘*outbytesleft’ and increments ‘*outbuf’ by the same amount. */\n#ifndef LIBICONV_PLUG\n#define iconv libiconv\n#endif\nextern LIBICONV_DLL_EXPORTED size_t iconv (iconv_t cd, @ICONV_CONST@ char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft);\n\n/* Frees resources allocated for conversion descriptor ‘cd’. */\n#ifndef LIBICONV_PLUG\n#define iconv_close libiconv_close\n#endif\nextern LIBICONV_DLL_EXPORTED int iconv_close (iconv_t cd);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#ifndef LIBICONV_PLUG\n\n/* Nonstandard extensions. */\n\n#if @USE_MBSTATE_T@\n#if @BROKEN_WCHAR_H@\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n   included before <wchar.h>.  */\n#include <stddef.h>\n#include <stdio.h>\n#include <time.h>\n#endif\n#include <wchar.h>\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/* A type that holds all memory needed by a conversion descriptor.\n   A pointer to such an object can be used as an iconv_t. */\ntypedef struct {\n  void* dummy1[28];\n#if @USE_MBSTATE_T@\n  mbstate_t dummy2;\n#endif\n} iconv_allocation_t;\n\n/* Allocates descriptor for code conversion from encoding ‘fromcode’ to\n   encoding ‘tocode’ into preallocated memory. Returns an error indicator\n   (0 or -1 with errno set). */\n#define iconv_open_into libiconv_open_into\nextern LIBICONV_DLL_EXPORTED int iconv_open_into (const char* tocode, const char* fromcode,\n                            iconv_allocation_t* resultp);\n\n/* Control of attributes. */\n#define iconvctl libiconvctl\nextern LIBICONV_DLL_EXPORTED int iconvctl (iconv_t cd, int request, void* argument);\n\n/* Hook performed after every successful conversion of a Unicode character. */\ntypedef void (*iconv_unicode_char_hook) (unsigned int uc, void* data);\n/* Hook performed after every successful conversion of a wide character. */\ntypedef void (*iconv_wide_char_hook) (wchar_t wc, void* data);\n/* Set of hooks. */\nstruct iconv_hooks {\n  iconv_unicode_char_hook uc_hook;\n  iconv_wide_char_hook wc_hook;\n  void* data;\n};\n\n/* Fallback function.  Invoked when a small number of bytes could not be\n   converted to a Unicode character.  This function should process all\n   bytes from inbuf and may produce replacement Unicode characters by calling\n   the write_replacement callback repeatedly.  */\ntypedef void (*iconv_unicode_mb_to_uc_fallback)\n             (const char* inbuf, size_t inbufsize,\n              void (*write_replacement) (const unsigned int *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n/* Fallback function.  Invoked when a Unicode character could not be converted\n   to the target encoding.  This function should process the character and\n   may produce replacement bytes (in the target encoding) by calling the\n   write_replacement callback repeatedly.  */\ntypedef void (*iconv_unicode_uc_to_mb_fallback)\n             (unsigned int code,\n              void (*write_replacement) (const char *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n#if @HAVE_WCHAR_T@\n/* Fallback function.  Invoked when a number of bytes could not be converted to\n   a wide character.  This function should process all bytes from inbuf and may\n   produce replacement wide characters by calling the write_replacement\n   callback repeatedly.  */\ntypedef void (*iconv_wchar_mb_to_wc_fallback)\n             (const char* inbuf, size_t inbufsize,\n              void (*write_replacement) (const wchar_t *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n/* Fallback function.  Invoked when a wide character could not be converted to\n   the target encoding.  This function should process the character and may\n   produce replacement bytes (in the target encoding) by calling the\n   write_replacement callback repeatedly.  */\ntypedef void (*iconv_wchar_wc_to_mb_fallback)\n             (wchar_t code,\n              void (*write_replacement) (const char *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n#else\n/* If the wchar_t type does not exist, these two fallback functions are never\n   invoked.  Their argument list therefore does not matter.  */\ntypedef void (*iconv_wchar_mb_to_wc_fallback) ();\ntypedef void (*iconv_wchar_wc_to_mb_fallback) ();\n#endif\n/* Set of fallbacks. */\nstruct iconv_fallbacks {\n  iconv_unicode_mb_to_uc_fallback mb_to_uc_fallback;\n  iconv_unicode_uc_to_mb_fallback uc_to_mb_fallback;\n  iconv_wchar_mb_to_wc_fallback mb_to_wc_fallback;\n  iconv_wchar_wc_to_mb_fallback wc_to_mb_fallback;\n  void* data;\n};\n\n/* Requests for iconvctl. */\n#define ICONV_TRIVIALP            0  /* int *argument */\n#define ICONV_GET_TRANSLITERATE   1  /* int *argument */\n#define ICONV_SET_TRANSLITERATE   2  /* const int *argument */\n#define ICONV_GET_DISCARD_ILSEQ   3  /* int *argument */\n#define ICONV_SET_DISCARD_ILSEQ   4  /* const int *argument */\n#define ICONV_SET_HOOKS           5  /* const struct iconv_hooks *argument */\n#define ICONV_SET_FALLBACKS       6  /* const struct iconv_fallbacks *argument */\n\n/* Listing of locale independent encodings. */\n#define iconvlist libiconvlist\nextern LIBICONV_DLL_EXPORTED void iconvlist (int (*do_one) (unsigned int namescount,\n                                      const char * const * names,\n                                      void* data),\n                       void* data);\n\n/* Canonicalize an encoding name.\n   The result is either a canonical encoding name, or name itself. */\nextern LIBICONV_DLL_EXPORTED const char * iconv_canonicalize (const char * name);\n\n/* Support for relocatable packages.  */\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nextern LIBICONV_DLL_EXPORTED void libiconv_set_relocation_prefix (const char *orig_prefix,\n                                            const char *curr_prefix);\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif\n\n\n#endif /* _LIBICONV_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/include/iconv.h.in",
    "content": "/* Copyright (C) 1999-2003, 2005-2006, 2008-2011 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* When installed, this file is called \"iconv.h\". */\n\n#ifndef _LIBICONV_H\n#define _LIBICONV_H\n\n#define _LIBICONV_VERSION 0x010F    /* version number: (major<<8) + minor */\nextern @DLL_VARIABLE@ int _libiconv_version; /* Likewise */\n\n/* We would like to #include any system header file which could define\n   iconv_t, 1. in order to eliminate the risk that the user gets compilation\n   errors because some other system header file includes /usr/include/iconv.h\n   which defines iconv_t or declares iconv after this file, 2. when compiling\n   for LIBICONV_PLUG, we need the proper iconv_t type in order to produce\n   binary compatible code.\n   But gcc's #include_next is not portable. Thus, once libiconv's iconv.h\n   has been installed in /usr/local/include, there is no way any more to\n   include the original /usr/include/iconv.h. We simply have to get away\n   without it.\n   Ad 1. The risk that a system header file does\n   #include \"iconv.h\"  or  #include_next \"iconv.h\"\n   is small. They all do #include <iconv.h>.\n   Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It\n   has to be a scalar type because (iconv_t)(-1) is a possible return value\n   from iconv_open().) */\n\n/* Define iconv_t ourselves. */\n#undef iconv_t\n#define iconv_t libiconv_t\ntypedef void* iconv_t;\n\n/* Get size_t declaration.\n   Get wchar_t declaration if it exists. */\n#include <stddef.h>\n\n/* Get errno declaration and values. */\n#include <errno.h>\n/* Some systems, like SunOS 4, don't have EILSEQ. Some systems, like BSD/OS,\n   have EILSEQ in a different header.  On these systems, define EILSEQ\n   ourselves. */\n#ifndef EILSEQ\n#define EILSEQ @EILSEQ@\n#endif\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Allocates descriptor for code conversion from encoding ‘fromcode’ to\n   encoding ‘tocode’. */\n#ifndef LIBICONV_PLUG\n#define iconv_open libiconv_open\n#endif\nextern iconv_t iconv_open (const char* tocode, const char* fromcode);\n\n/* Converts, using conversion descriptor ‘cd’, at most ‘*inbytesleft’ bytes\n   starting at ‘*inbuf’, writing at most ‘*outbytesleft’ bytes starting at\n   ‘*outbuf’.\n   Decrements ‘*inbytesleft’ and increments ‘*inbuf’ by the same amount.\n   Decrements ‘*outbytesleft’ and increments ‘*outbuf’ by the same amount. */\n#ifndef LIBICONV_PLUG\n#define iconv libiconv\n#endif\nextern size_t iconv (iconv_t cd, @ICONV_CONST@ char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft);\n\n/* Frees resources allocated for conversion descriptor ‘cd’. */\n#ifndef LIBICONV_PLUG\n#define iconv_close libiconv_close\n#endif\nextern int iconv_close (iconv_t cd);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#ifndef LIBICONV_PLUG\n\n/* Nonstandard extensions. */\n\n#if @USE_MBSTATE_T@\n#if @BROKEN_WCHAR_H@\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n   included before <wchar.h>.  */\n#include <stddef.h>\n#include <stdio.h>\n#include <time.h>\n#endif\n#include <wchar.h>\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/* A type that holds all memory needed by a conversion descriptor.\n   A pointer to such an object can be used as an iconv_t. */\ntypedef struct {\n  void* dummy1[28];\n#if @USE_MBSTATE_T@\n  mbstate_t dummy2;\n#endif\n} iconv_allocation_t;\n\n/* Allocates descriptor for code conversion from encoding ‘fromcode’ to\n   encoding ‘tocode’ into preallocated memory. Returns an error indicator\n   (0 or -1 with errno set). */\n#define iconv_open_into libiconv_open_into\nextern int iconv_open_into (const char* tocode, const char* fromcode,\n                            iconv_allocation_t* resultp);\n\n/* Control of attributes. */\n#define iconvctl libiconvctl\nextern int iconvctl (iconv_t cd, int request, void* argument);\n\n/* Hook performed after every successful conversion of a Unicode character. */\ntypedef void (*iconv_unicode_char_hook) (unsigned int uc, void* data);\n/* Hook performed after every successful conversion of a wide character. */\ntypedef void (*iconv_wide_char_hook) (wchar_t wc, void* data);\n/* Set of hooks. */\nstruct iconv_hooks {\n  iconv_unicode_char_hook uc_hook;\n  iconv_wide_char_hook wc_hook;\n  void* data;\n};\n\n/* Fallback function.  Invoked when a small number of bytes could not be\n   converted to a Unicode character.  This function should process all\n   bytes from inbuf and may produce replacement Unicode characters by calling\n   the write_replacement callback repeatedly.  */\ntypedef void (*iconv_unicode_mb_to_uc_fallback)\n             (const char* inbuf, size_t inbufsize,\n              void (*write_replacement) (const unsigned int *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n/* Fallback function.  Invoked when a Unicode character could not be converted\n   to the target encoding.  This function should process the character and\n   may produce replacement bytes (in the target encoding) by calling the\n   write_replacement callback repeatedly.  */\ntypedef void (*iconv_unicode_uc_to_mb_fallback)\n             (unsigned int code,\n              void (*write_replacement) (const char *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n#if @HAVE_WCHAR_T@\n/* Fallback function.  Invoked when a number of bytes could not be converted to\n   a wide character.  This function should process all bytes from inbuf and may\n   produce replacement wide characters by calling the write_replacement\n   callback repeatedly.  */\ntypedef void (*iconv_wchar_mb_to_wc_fallback)\n             (const char* inbuf, size_t inbufsize,\n              void (*write_replacement) (const wchar_t *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n/* Fallback function.  Invoked when a wide character could not be converted to\n   the target encoding.  This function should process the character and may\n   produce replacement bytes (in the target encoding) by calling the\n   write_replacement callback repeatedly.  */\ntypedef void (*iconv_wchar_wc_to_mb_fallback)\n             (wchar_t code,\n              void (*write_replacement) (const char *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n#else\n/* If the wchar_t type does not exist, these two fallback functions are never\n   invoked.  Their argument list therefore does not matter.  */\ntypedef void (*iconv_wchar_mb_to_wc_fallback) ();\ntypedef void (*iconv_wchar_wc_to_mb_fallback) ();\n#endif\n/* Set of fallbacks. */\nstruct iconv_fallbacks {\n  iconv_unicode_mb_to_uc_fallback mb_to_uc_fallback;\n  iconv_unicode_uc_to_mb_fallback uc_to_mb_fallback;\n  iconv_wchar_mb_to_wc_fallback mb_to_wc_fallback;\n  iconv_wchar_wc_to_mb_fallback wc_to_mb_fallback;\n  void* data;\n};\n\n/* Requests for iconvctl. */\n#define ICONV_TRIVIALP            0  /* int *argument */\n#define ICONV_GET_TRANSLITERATE   1  /* int *argument */\n#define ICONV_SET_TRANSLITERATE   2  /* const int *argument */\n#define ICONV_GET_DISCARD_ILSEQ   3  /* int *argument */\n#define ICONV_SET_DISCARD_ILSEQ   4  /* const int *argument */\n#define ICONV_SET_HOOKS           5  /* const struct iconv_hooks *argument */\n#define ICONV_SET_FALLBACKS       6  /* const struct iconv_fallbacks *argument */\n\n/* Listing of locale independent encodings. */\n#define iconvlist libiconvlist\nextern void iconvlist (int (*do_one) (unsigned int namescount,\n                                      const char * const * names,\n                                      void* data),\n                       void* data);\n\n/* Canonicalize an encoding name.\n   The result is either a canonical encoding name, or name itself. */\nextern const char * iconv_canonicalize (const char * name);\n\n/* Support for relocatable packages.  */\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nextern void libiconv_set_relocation_prefix (const char *orig_prefix,\n                                            const char *curr_prefix);\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif\n\n\n#endif /* _LIBICONV_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/include/iconv.h.inst",
    "content": "/* Copyright (C) 1999-2003, 2005-2006, 2008-2011 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* When installed, this file is called \"iconv.h\". */\n\n#ifndef _LIBICONV_H\n#define _LIBICONV_H\n\n#define _LIBICONV_VERSION 0x010F    /* version number: (major<<8) + minor */\nextern  int _libiconv_version; /* Likewise */\n\n/* We would like to #include any system header file which could define\n   iconv_t, 1. in order to eliminate the risk that the user gets compilation\n   errors because some other system header file includes /usr/include/iconv.h\n   which defines iconv_t or declares iconv after this file, 2. when compiling\n   for LIBICONV_PLUG, we need the proper iconv_t type in order to produce\n   binary compatible code.\n   But gcc's #include_next is not portable. Thus, once libiconv's iconv.h\n   has been installed in /usr/local/include, there is no way any more to\n   include the original /usr/include/iconv.h. We simply have to get away\n   without it.\n   Ad 1. The risk that a system header file does\n   #include \"iconv.h\"  or  #include_next \"iconv.h\"\n   is small. They all do #include <iconv.h>.\n   Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It\n   has to be a scalar type because (iconv_t)(-1) is a possible return value\n   from iconv_open().) */\n\n/* Define iconv_t ourselves. */\n#undef iconv_t\n#define iconv_t libiconv_t\ntypedef void* iconv_t;\n\n/* Get size_t declaration.\n   Get wchar_t declaration if it exists. */\n#include <stddef.h>\n\n/* Get errno declaration and values. */\n#include <errno.h>\n/* Some systems, like SunOS 4, don't have EILSEQ. Some systems, like BSD/OS,\n   have EILSEQ in a different header.  On these systems, define EILSEQ\n   ourselves. */\n#ifndef EILSEQ\n#define EILSEQ \n#endif\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Allocates descriptor for code conversion from encoding ‘fromcode’ to\n   encoding ‘tocode’. */\n#ifndef LIBICONV_PLUG\n#define iconv_open libiconv_open\n#endif\nextern iconv_t iconv_open (const char* tocode, const char* fromcode);\n\n/* Converts, using conversion descriptor ‘cd’, at most ‘*inbytesleft’ bytes\n   starting at ‘*inbuf’, writing at most ‘*outbytesleft’ bytes starting at\n   ‘*outbuf’.\n   Decrements ‘*inbytesleft’ and increments ‘*inbuf’ by the same amount.\n   Decrements ‘*outbytesleft’ and increments ‘*outbuf’ by the same amount. */\n#ifndef LIBICONV_PLUG\n#define iconv libiconv\n#endif\nextern size_t iconv (iconv_t cd,  char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft);\n\n/* Frees resources allocated for conversion descriptor ‘cd’. */\n#ifndef LIBICONV_PLUG\n#define iconv_close libiconv_close\n#endif\nextern int iconv_close (iconv_t cd);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#ifndef LIBICONV_PLUG\n\n/* Nonstandard extensions. */\n\n#if 1\n#if 0\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n   included before <wchar.h>.  */\n#include <stddef.h>\n#include <stdio.h>\n#include <time.h>\n#endif\n#include <wchar.h>\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/* A type that holds all memory needed by a conversion descriptor.\n   A pointer to such an object can be used as an iconv_t. */\ntypedef struct {\n  void* dummy1[28];\n#if 1\n  mbstate_t dummy2;\n#endif\n} iconv_allocation_t;\n\n/* Allocates descriptor for code conversion from encoding ‘fromcode’ to\n   encoding ‘tocode’ into preallocated memory. Returns an error indicator\n   (0 or -1 with errno set). */\n#define iconv_open_into libiconv_open_into\nextern int iconv_open_into (const char* tocode, const char* fromcode,\n                            iconv_allocation_t* resultp);\n\n/* Control of attributes. */\n#define iconvctl libiconvctl\nextern int iconvctl (iconv_t cd, int request, void* argument);\n\n/* Hook performed after every successful conversion of a Unicode character. */\ntypedef void (*iconv_unicode_char_hook) (unsigned int uc, void* data);\n/* Hook performed after every successful conversion of a wide character. */\ntypedef void (*iconv_wide_char_hook) (wchar_t wc, void* data);\n/* Set of hooks. */\nstruct iconv_hooks {\n  iconv_unicode_char_hook uc_hook;\n  iconv_wide_char_hook wc_hook;\n  void* data;\n};\n\n/* Fallback function.  Invoked when a small number of bytes could not be\n   converted to a Unicode character.  This function should process all\n   bytes from inbuf and may produce replacement Unicode characters by calling\n   the write_replacement callback repeatedly.  */\ntypedef void (*iconv_unicode_mb_to_uc_fallback)\n             (const char* inbuf, size_t inbufsize,\n              void (*write_replacement) (const unsigned int *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n/* Fallback function.  Invoked when a Unicode character could not be converted\n   to the target encoding.  This function should process the character and\n   may produce replacement bytes (in the target encoding) by calling the\n   write_replacement callback repeatedly.  */\ntypedef void (*iconv_unicode_uc_to_mb_fallback)\n             (unsigned int code,\n              void (*write_replacement) (const char *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n#if 1\n/* Fallback function.  Invoked when a number of bytes could not be converted to\n   a wide character.  This function should process all bytes from inbuf and may\n   produce replacement wide characters by calling the write_replacement\n   callback repeatedly.  */\ntypedef void (*iconv_wchar_mb_to_wc_fallback)\n             (const char* inbuf, size_t inbufsize,\n              void (*write_replacement) (const wchar_t *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n/* Fallback function.  Invoked when a wide character could not be converted to\n   the target encoding.  This function should process the character and may\n   produce replacement bytes (in the target encoding) by calling the\n   write_replacement callback repeatedly.  */\ntypedef void (*iconv_wchar_wc_to_mb_fallback)\n             (wchar_t code,\n              void (*write_replacement) (const char *buf, size_t buflen,\n                                         void* callback_arg),\n              void* callback_arg,\n              void* data);\n#else\n/* If the wchar_t type does not exist, these two fallback functions are never\n   invoked.  Their argument list therefore does not matter.  */\ntypedef void (*iconv_wchar_mb_to_wc_fallback) ();\ntypedef void (*iconv_wchar_wc_to_mb_fallback) ();\n#endif\n/* Set of fallbacks. */\nstruct iconv_fallbacks {\n  iconv_unicode_mb_to_uc_fallback mb_to_uc_fallback;\n  iconv_unicode_uc_to_mb_fallback uc_to_mb_fallback;\n  iconv_wchar_mb_to_wc_fallback mb_to_wc_fallback;\n  iconv_wchar_wc_to_mb_fallback wc_to_mb_fallback;\n  void* data;\n};\n\n/* Requests for iconvctl. */\n#define ICONV_TRIVIALP            0  /* int *argument */\n#define ICONV_GET_TRANSLITERATE   1  /* int *argument */\n#define ICONV_SET_TRANSLITERATE   2  /* const int *argument */\n#define ICONV_GET_DISCARD_ILSEQ   3  /* int *argument */\n#define ICONV_SET_DISCARD_ILSEQ   4  /* const int *argument */\n#define ICONV_SET_HOOKS           5  /* const struct iconv_hooks *argument */\n#define ICONV_SET_FALLBACKS       6  /* const struct iconv_fallbacks *argument */\n\n/* Listing of locale independent encodings. */\n#define iconvlist libiconvlist\nextern void iconvlist (int (*do_one) (unsigned int namescount,\n                                      const char * const * names,\n                                      void* data),\n                       void* data);\n\n/* Canonicalize an encoding name.\n   The result is either a canonical encoding name, or name itself. */\nextern const char * iconv_canonicalize (const char * name);\n\n/* Support for relocatable packages.  */\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nextern void libiconv_set_relocation_prefix (const char *orig_prefix,\n                                            const char *curr_prefix);\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif\n\n\n#endif /* _LIBICONV_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/.libs/libiconv.lai",
    "content": "# libiconv.la - a libtool library file\n# Generated by libtool (GNU libtool) 2.4.6\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# The name that we can dlopen(3).\ndlname='libiconv.2.dylib'\n\n# Names of this library.\nlibrary_names='libiconv.2.dylib libiconv.dylib'\n\n# The name of the static archive.\nold_library=''\n\n# Linker flags that cannot go in dependency_libs.\ninherited_linker_flags=' '\n\n# Libraries that this one depends upon.\ndependency_libs=''\n\n# Names of additional weak libraries provided by this library\nweak_library_names=''\n\n# Version information for libiconv.\ncurrent=8\nage=6\nrevision=0\n\n# Is this an already installed library?\ninstalled=yes\n\n# Should we warn about portability when linking against -modules?\nshouldnotlink=no\n\n# Files to dlopen/dlpreopen\ndlopen=''\ndlpreopen=''\n\n# Directory that this library needs to be installed in:\nlibdir='/usr/local/lib'\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/Makefile",
    "content": "# Makefile for libiconv/lib\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = .\n\n# Directories used by \"make install\":\nprefix = /usr/local\nlocal_prefix = /usr/local\nexec_prefix = ${prefix}\nlibdir = ${exec_prefix}/lib\n\n# Programs used by \"make\":\nCC = gcc\nCFLAGS = -g -O2 -fvisibility=hidden\nCPPFLAGS = \nLDFLAGS =  $(LDFLAGS_no)\nLDFLAGS_yes = -Wl,--export-all-symbols\nLDFLAGS_no =\nINCLUDES = -I. -I$(srcdir) -I../include -I$(srcdir)/../include -I.. -I$(srcdir)/..\n# -DBUILDING_LIBICONV: Change expansion of LIBICONV_DLL_EXPORTED macro.\n# -DBUILDING_DLL: Change expansion of RELOCATABLE_DLL_EXPORTED macro.\nDEFS = -DLIBDIR=\\\"$(libdir)\\\" -DBUILDING_LIBICONV -DBUILDING_DLL \\\n-DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\\\"$(libdir)\\\" -DNO_XMALLOC \\\n-Dset_relocation_prefix=libiconv_set_relocation_prefix \\\n-Drelocate=libiconv_relocate -DHAVE_CONFIG_H\nLIBTOOL = /bin/sh $(top_builddir)/libtool\nLIBTOOL_COMPILE = $(LIBTOOL) --mode=compile\nLIBTOOL_LINK = $(LIBTOOL) --mode=link\nLIBTOOL_INSTALL = $(LIBTOOL) --mode=install\nLIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall\n# Windows resource compiler (windres). Used via libtool.\nRC = \nCP = cp\nMV = mv\nLN = ln\nLN_S = ln -s\nRM = rm -f\n\n# Programs used by \"make install\":\nINSTALL = /usr/bin/install -c\nINSTALL_PROGRAM = ${INSTALL}\nINSTALL_DATA = ${INSTALL} -m 644\nmkinstalldirs = $(SHELL) ../build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\n# Before making a release, change this according to the libtool documentation,\n# section \"Library interface versions\".\nLIBICONV_VERSION_INFO = 8:0:6\n\nPACKAGE_VERSION = 1.15\n\n# Needed by $(LIBTOOL).\ntop_builddir = ..\n\nSOURCES = $(srcdir)/iconv.c $(srcdir)/../libcharset/lib/localcharset.c $(srcdir)/relocatable.c\n\nOBJECTS = iconv.lo localcharset.lo relocatable.lo $(OBJECTS_EXP_no) $(OBJECTS_RES_no)\nOBJECTS_EXP_yes = iconv-exports.lo\nOBJECTS_EXP_no =\nOBJECTS_RES_yes = libiconv.res.lo\nOBJECTS_RES_no =\n\nall : libiconv.la\n\nlibiconv.la : $(OBJECTS)\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) -o libiconv.la -rpath $(libdir) -version-info $(LIBICONV_VERSION_INFO) -no-undefined $(OBJECTS)\n\niconv.lo : $(srcdir)/iconv.c $(srcdir)/converters.h \\\n           $(srcdir)/encodings.def $(srcdir)/encodings_aix.def $(srcdir)/encodings_osf1.def $(srcdir)/encodings_dos.def $(srcdir)/encodings_local.def \\\n           $(srcdir)/aliases.h $(srcdir)/aliases_sysaix.h $(srcdir)/aliases_syshpux.h $(srcdir)/aliases_sysosf1.h $(srcdir)/aliases_syssolaris.h \\\n           $(srcdir)/aliases_aix.h $(srcdir)/aliases_aix_sysaix.h \\\n           $(srcdir)/aliases_osf1.h $(srcdir)/aliases_osf1_sysosf1.h \\\n           $(srcdir)/aliases_dos.h \\\n           $(srcdir)/aliases_extra.h \\\n           $(srcdir)/flags.h $(srcdir)/translit.h\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEFS) -c $(srcdir)/iconv.c\n\nlocalcharset.lo : $(srcdir)/../libcharset/lib/localcharset.c $(srcdir)/relocatable.h\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEFS) -c $(srcdir)/../libcharset/lib/localcharset.c\n\nrelocatable.lo : $(srcdir)/relocatable.c $(srcdir)/relocatable.h\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEFS) -c $(srcdir)/relocatable.c\n\niconv-exports.lo : $(srcdir)/../woe32dll/iconv-exports.c\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEFS) -c $(srcdir)/../woe32dll/iconv-exports.c\n\nlibiconv.res.lo : $(srcdir)/../windows/libiconv.rc\n\t$(LIBTOOL_COMPILE) --tag=RC $(RC) `$(SHELL) $(srcdir)/../windows/windres-options --escape $(PACKAGE_VERSION)` -i $(srcdir)/../windows/libiconv.rc -o libiconv.res.lo --output-format=coff\n\n# Installs the library and include files only. Typically called with only\n# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.\ninstall-lib : all force\n\tif [ ! -d $(libdir) ] ; then $(mkinstalldirs) $(libdir) ; fi\n\t$(LIBTOOL_INSTALL) $(INSTALL) libiconv.la $(libdir)/libiconv.la\n\n# On AIX, libiconv.a must include the object files of /lib/libiconv.a,\n# otherwise the setlocale() call fails when invoked from executables linked\n# with -rpath $(libdir), even if linked without -liconv.\ninstall : all force\n\tif [ ! -d $(DESTDIR)$(libdir) ] ; then $(mkinstalldirs) $(DESTDIR)$(libdir) ; fi\n\t$(LIBTOOL_INSTALL) $(INSTALL) libiconv.la $(DESTDIR)$(libdir)/libiconv.la\n\tcase \"darwin16.6.0\" in \\\n\t  aix*) (cd $(DESTDIR)$(libdir) && \\\n\t         objects=`ar t libiconv.a`\" \"`ar t /lib/libiconv.a` && \\\n\t         ar x libiconv.a && ar x /lib/libiconv.a && \\\n\t         ar q libiconv.new.a $$objects && \\\n\t         rm -f $$objects && \\\n\t         mv -f libiconv.new.a libiconv.a) ;; \\\n\tesac\n\ninstall-strip : install\n\ninstalldirs : force\n\tif [ ! -d $(DESTDIR)$(libdir) ] ; then $(mkinstalldirs) $(DESTDIR)$(libdir) ; fi\n\nuninstall : force\n\t$(LIBTOOL_UNINSTALL) $(RM) $(DESTDIR)$(libdir)/libiconv.la\n\ncheck : all\n\nmostlyclean : clean\n\nclean : force\n\t$(RM) *.o *.lo *.a *.la core *.stackdump so_locations\n\t$(RM) -r .libs _libs\n\ndistclean : clean\n\t$(RM) Makefile config.h\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  Makefile.in config.h.in \\\n  encodings.def \\\n  encodings_aix.def \\\n  encodings_osf1.def \\\n  encodings_dos.def \\\n  encodings_extra.def \\\n  encodings_local.def \\\n  translit.def \\\n  genaliases.c \\\n  genaliases2.c \\\n  genflags.c \\\n  gentranslit.c \\\n  iconv.c \\\n    converters.h \\\n      ascii.h \\\n      utf8.h \\\n      ucs2.h \\\n      ucs2be.h \\\n      ucs2le.h \\\n      ucs4.h \\\n      ucs4be.h \\\n      ucs4le.h \\\n      utf16.h \\\n      utf16be.h \\\n      utf16le.h \\\n      utf32.h \\\n      utf32be.h \\\n      utf32le.h \\\n      utf7.h \\\n      ucs2internal.h \\\n      ucs2swapped.h \\\n      ucs4internal.h \\\n      ucs4swapped.h \\\n      c99.h \\\n      java.h \\\n      iso8859_1.h \\\n      iso8859_2.h \\\n      iso8859_3.h \\\n      iso8859_4.h \\\n      iso8859_5.h \\\n      iso8859_6.h \\\n      iso8859_7.h \\\n      iso8859_8.h \\\n      iso8859_9.h \\\n      iso8859_10.h \\\n      iso8859_11.h \\\n      iso8859_13.h \\\n      iso8859_14.h \\\n      iso8859_15.h \\\n      iso8859_16.h \\\n      koi8_r.h \\\n      koi8_u.h \\\n      koi8_ru.h \\\n      cp1250.h \\\n      cp1251.h \\\n      cp1252.h \\\n      cp1253.h \\\n      cp1254.h \\\n      cp1255.h \\\n      cp1256.h \\\n      cp1257.h \\\n      cp1258.h \\\n        vietcomb.h \\\n      cp850.h \\\n      cp862.h \\\n      cp866.h \\\n      cp1131.h \\\n      mac_roman.h \\\n      mac_centraleurope.h \\\n      mac_iceland.h \\\n      mac_croatian.h \\\n      mac_romania.h \\\n      mac_cyrillic.h \\\n      mac_ukraine.h \\\n      mac_greek.h \\\n      mac_turkish.h \\\n      mac_hebrew.h \\\n      mac_arabic.h \\\n      mac_thai.h \\\n      hp_roman8.h \\\n      nextstep.h \\\n      armscii_8.h \\\n      georgian_academy.h \\\n      georgian_ps.h \\\n      koi8_t.h \\\n      pt154.h \\\n      rk1048.h \\\n      mulelao.h \\\n      cp1133.h \\\n      tis620.h \\\n      cp874.h \\\n      viscii.h \\\n      tcvn.h \\\n      iso646_jp.h \\\n      jisx0201.h \\\n      jisx0208.h \\\n      jisx0212.h \\\n      iso646_cn.h \\\n      gb2312.h \\\n      isoir165.h \\\n        isoir165ext.h \\\n      gb12345.h \\\n        gb12345ext.h \\\n      gbk.h \\\n        gbkext1.h \\\n        gbkext2.h \\\n        gbkext_inv.h \\\n        cp936ext.h \\\n      cns11643.h \\\n        cns11643_1.h \\\n        cns11643_2.h \\\n        cns11643_3.h \\\n        cns11643_4.h \\\n          cns11643_4a.h \\\n          cns11643_4b.h \\\n        cns11643_5.h \\\n        cns11643_6.h \\\n        cns11643_7.h \\\n        cns11643_15.h \\\n        cns11643_inv.h \\\n      big5.h \\\n      ksc5601.h \\\n      johab_hangul.h \\\n      euc_jp.h \\\n      sjis.h \\\n      cp932.h \\\n        cp932ext.h \\\n      iso2022_jp.h \\\n      iso2022_jp1.h \\\n      iso2022_jp2.h \\\n      iso2022_jpms.h \\\n        cp50221_0208_ext.h \\\n        cp50221_0212_ext.h \\\n      euc_cn.h \\\n      ces_gbk.h \\\n      cp936.h \\\n      gb18030.h \\\n        gb18030ext.h \\\n        gb18030uni.h \\\n      iso2022_cn.h \\\n      iso2022_cnext.h \\\n      hz.h \\\n      euc_tw.h \\\n      ces_big5.h \\\n      cp950.h \\\n        cp950ext.h \\\n      big5hkscs1999.h \\\n        hkscs1999.h \\\n      big5hkscs2001.h \\\n        hkscs2001.h \\\n      big5hkscs2004.h \\\n        hkscs2004.h \\\n      big5hkscs2008.h \\\n        hkscs2008.h \\\n      euc_kr.h \\\n      cp949.h \\\n        uhc_1.h \\\n        uhc_2.h \\\n      johab.h \\\n      iso2022_kr.h \\\n      cp856.h \\\n      cp922.h \\\n      cp943.h \\\n      cp1046.h \\\n      cp1124.h \\\n      cp1129.h \\\n      cp1161.h \\\n      cp1162.h \\\n      cp1163.h \\\n      dec_kanji.h \\\n      dec_hanyu.h \\\n      cp437.h \\\n      cp737.h \\\n      cp775.h \\\n      cp852.h \\\n      cp853.h \\\n      cp855.h \\\n      cp857.h \\\n      cp858.h \\\n      cp860.h \\\n      cp861.h \\\n      cp863.h \\\n      cp864.h \\\n      cp865.h \\\n      cp869.h \\\n      cp1125.h \\\n      euc_jisx0213.h \\\n        jisx0213.h \\\n      shift_jisx0213.h \\\n      iso2022_jp3.h \\\n      big5_2003.h \\\n      tds565.h \\\n      atarist.h \\\n      riscos1.h \\\n    flushwc.h \\\n    cjk_variants.h \\\n    loops.h \\\n      loop_unicode.h \\\n      loop_wchar.h \\\n    aliases2.h \\\n    iconv_open1.h \\\n    iconv_open2.h \\\n  relocatable.h relocatable.c\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES = \\\n  aliases.gperf aliases_sysaix.gperf aliases_syshpux.gperf aliases_sysosf1.gperf aliases_syssolaris.gperf \\\n  aliases.h aliases_sysaix.h aliases_syshpux.h aliases_sysosf1.h aliases_syssolaris.h \\\n  aliases_aix.h aliases_aix_sysaix.h \\\n  aliases_osf1.h aliases_osf1_sysosf1.h \\\n  aliases_dos.h \\\n  aliases_extra.h \\\n  canonical.h canonical_sysaix.h canonical_syshpux.h canonical_sysosf1.h canonical_syssolaris.h \\\n  canonical_aix.h canonical_aix_sysaix.h \\\n  canonical_osf1.h canonical_osf1_sysosf1.h \\\n  canonical_dos.h \\\n  canonical_extra.h \\\n  canonical_local.h canonical_local_sysaix.h canonical_local_syshpux.h canonical_local_sysosf1.h canonical_local_syssolaris.h \\\n  flags.h \\\n  translit.h\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/Makefile.in",
    "content": "# Makefile for libiconv/lib\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = @srcdir@\n\n# Directories used by \"make install\":\nprefix = @prefix@\nlocal_prefix = /usr/local\nexec_prefix = @exec_prefix@\nlibdir = @libdir@\n\n# Programs used by \"make\":\nCC = @CC@\nCFLAGS = @CFLAGS@ @CFLAG_VISIBILITY@\nCPPFLAGS = @CPPFLAGS@\nLDFLAGS = @LDFLAGS@ $(LDFLAGS_@WOE32DLL@)\nLDFLAGS_yes = -Wl,--export-all-symbols\nLDFLAGS_no =\nINCLUDES = -I. -I$(srcdir) -I../include -I$(srcdir)/../include -I.. -I$(srcdir)/..\n# -DBUILDING_LIBICONV: Change expansion of LIBICONV_DLL_EXPORTED macro.\n# -DBUILDING_DLL: Change expansion of RELOCATABLE_DLL_EXPORTED macro.\nDEFS = -DLIBDIR=\\\"$(libdir)\\\" -DBUILDING_LIBICONV -DBUILDING_DLL \\\n-DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\\\"$(libdir)\\\" -DNO_XMALLOC \\\n-Dset_relocation_prefix=libiconv_set_relocation_prefix \\\n-Drelocate=libiconv_relocate @DEFS@\nLIBTOOL = @LIBTOOL@\nLIBTOOL_COMPILE = $(LIBTOOL) --mode=compile\nLIBTOOL_LINK = $(LIBTOOL) --mode=link\nLIBTOOL_INSTALL = $(LIBTOOL) --mode=install\nLIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall\n# Windows resource compiler (windres). Used via libtool.\nRC = @RC@\nCP = cp\nMV = mv\nLN = @LN@\nLN_S = @LN_S@\nRM = rm -f\n\n# Programs used by \"make install\":\nINSTALL = @INSTALL@\nINSTALL_PROGRAM = @INSTALL_PROGRAM@\nINSTALL_DATA = @INSTALL_DATA@\nmkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\n# Before making a release, change this according to the libtool documentation,\n# section \"Library interface versions\".\nLIBICONV_VERSION_INFO = 8:0:6\n\nPACKAGE_VERSION = @VERSION@\n\n# Needed by $(LIBTOOL).\ntop_builddir = ..\n\nSOURCES = $(srcdir)/iconv.c $(srcdir)/../libcharset/lib/localcharset.c $(srcdir)/relocatable.c\n\nOBJECTS = iconv.lo localcharset.lo relocatable.lo $(OBJECTS_EXP_@WOE32DLL@) $(OBJECTS_RES_@WOE32@)\nOBJECTS_EXP_yes = iconv-exports.lo\nOBJECTS_EXP_no =\nOBJECTS_RES_yes = libiconv.res.lo\nOBJECTS_RES_no =\n\nall : libiconv.la\n\nlibiconv.la : $(OBJECTS)\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) -o libiconv.la -rpath $(libdir) -version-info $(LIBICONV_VERSION_INFO) -no-undefined $(OBJECTS)\n\niconv.lo : $(srcdir)/iconv.c $(srcdir)/converters.h \\\n           $(srcdir)/encodings.def $(srcdir)/encodings_aix.def $(srcdir)/encodings_osf1.def $(srcdir)/encodings_dos.def $(srcdir)/encodings_local.def \\\n           $(srcdir)/aliases.h $(srcdir)/aliases_sysaix.h $(srcdir)/aliases_syshpux.h $(srcdir)/aliases_sysosf1.h $(srcdir)/aliases_syssolaris.h \\\n           $(srcdir)/aliases_aix.h $(srcdir)/aliases_aix_sysaix.h \\\n           $(srcdir)/aliases_osf1.h $(srcdir)/aliases_osf1_sysosf1.h \\\n           $(srcdir)/aliases_dos.h \\\n           $(srcdir)/aliases_extra.h \\\n           $(srcdir)/flags.h $(srcdir)/translit.h\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEFS) -c $(srcdir)/iconv.c\n\nlocalcharset.lo : $(srcdir)/../libcharset/lib/localcharset.c $(srcdir)/relocatable.h\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEFS) -c $(srcdir)/../libcharset/lib/localcharset.c\n\nrelocatable.lo : $(srcdir)/relocatable.c $(srcdir)/relocatable.h\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEFS) -c $(srcdir)/relocatable.c\n\niconv-exports.lo : $(srcdir)/../woe32dll/iconv-exports.c\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEFS) -c $(srcdir)/../woe32dll/iconv-exports.c\n\nlibiconv.res.lo : $(srcdir)/../windows/libiconv.rc\n\t$(LIBTOOL_COMPILE) --tag=RC $(RC) `$(SHELL) $(srcdir)/../windows/windres-options --escape $(PACKAGE_VERSION)` -i $(srcdir)/../windows/libiconv.rc -o libiconv.res.lo --output-format=coff\n\n# Installs the library and include files only. Typically called with only\n# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.\ninstall-lib : all force\n\tif [ ! -d $(libdir) ] ; then $(mkinstalldirs) $(libdir) ; fi\n\t$(LIBTOOL_INSTALL) $(INSTALL) libiconv.la $(libdir)/libiconv.la\n\n# On AIX, libiconv.a must include the object files of /lib/libiconv.a,\n# otherwise the setlocale() call fails when invoked from executables linked\n# with -rpath $(libdir), even if linked without -liconv.\ninstall : all force\n\tif [ ! -d $(DESTDIR)$(libdir) ] ; then $(mkinstalldirs) $(DESTDIR)$(libdir) ; fi\n\t$(LIBTOOL_INSTALL) $(INSTALL) libiconv.la $(DESTDIR)$(libdir)/libiconv.la\n\tcase \"@host_os@\" in \\\n\t  aix*) (cd $(DESTDIR)$(libdir) && \\\n\t         objects=`ar t libiconv.a`\" \"`ar t /lib/libiconv.a` && \\\n\t         ar x libiconv.a && ar x /lib/libiconv.a && \\\n\t         ar q libiconv.new.a $$objects && \\\n\t         rm -f $$objects && \\\n\t         mv -f libiconv.new.a libiconv.a) ;; \\\n\tesac\n\ninstall-strip : install\n\ninstalldirs : force\n\tif [ ! -d $(DESTDIR)$(libdir) ] ; then $(mkinstalldirs) $(DESTDIR)$(libdir) ; fi\n\nuninstall : force\n\t$(LIBTOOL_UNINSTALL) $(RM) $(DESTDIR)$(libdir)/libiconv.la\n\ncheck : all\n\nmostlyclean : clean\n\nclean : force\n\t$(RM) *.o *.lo *.a *.la core *.stackdump so_locations\n\t$(RM) -r .libs _libs\n\ndistclean : clean\n\t$(RM) Makefile config.h\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  Makefile.in config.h.in \\\n  encodings.def \\\n  encodings_aix.def \\\n  encodings_osf1.def \\\n  encodings_dos.def \\\n  encodings_extra.def \\\n  encodings_local.def \\\n  translit.def \\\n  genaliases.c \\\n  genaliases2.c \\\n  genflags.c \\\n  gentranslit.c \\\n  iconv.c \\\n    converters.h \\\n      ascii.h \\\n      utf8.h \\\n      ucs2.h \\\n      ucs2be.h \\\n      ucs2le.h \\\n      ucs4.h \\\n      ucs4be.h \\\n      ucs4le.h \\\n      utf16.h \\\n      utf16be.h \\\n      utf16le.h \\\n      utf32.h \\\n      utf32be.h \\\n      utf32le.h \\\n      utf7.h \\\n      ucs2internal.h \\\n      ucs2swapped.h \\\n      ucs4internal.h \\\n      ucs4swapped.h \\\n      c99.h \\\n      java.h \\\n      iso8859_1.h \\\n      iso8859_2.h \\\n      iso8859_3.h \\\n      iso8859_4.h \\\n      iso8859_5.h \\\n      iso8859_6.h \\\n      iso8859_7.h \\\n      iso8859_8.h \\\n      iso8859_9.h \\\n      iso8859_10.h \\\n      iso8859_11.h \\\n      iso8859_13.h \\\n      iso8859_14.h \\\n      iso8859_15.h \\\n      iso8859_16.h \\\n      koi8_r.h \\\n      koi8_u.h \\\n      koi8_ru.h \\\n      cp1250.h \\\n      cp1251.h \\\n      cp1252.h \\\n      cp1253.h \\\n      cp1254.h \\\n      cp1255.h \\\n      cp1256.h \\\n      cp1257.h \\\n      cp1258.h \\\n        vietcomb.h \\\n      cp850.h \\\n      cp862.h \\\n      cp866.h \\\n      cp1131.h \\\n      mac_roman.h \\\n      mac_centraleurope.h \\\n      mac_iceland.h \\\n      mac_croatian.h \\\n      mac_romania.h \\\n      mac_cyrillic.h \\\n      mac_ukraine.h \\\n      mac_greek.h \\\n      mac_turkish.h \\\n      mac_hebrew.h \\\n      mac_arabic.h \\\n      mac_thai.h \\\n      hp_roman8.h \\\n      nextstep.h \\\n      armscii_8.h \\\n      georgian_academy.h \\\n      georgian_ps.h \\\n      koi8_t.h \\\n      pt154.h \\\n      rk1048.h \\\n      mulelao.h \\\n      cp1133.h \\\n      tis620.h \\\n      cp874.h \\\n      viscii.h \\\n      tcvn.h \\\n      iso646_jp.h \\\n      jisx0201.h \\\n      jisx0208.h \\\n      jisx0212.h \\\n      iso646_cn.h \\\n      gb2312.h \\\n      isoir165.h \\\n        isoir165ext.h \\\n      gb12345.h \\\n        gb12345ext.h \\\n      gbk.h \\\n        gbkext1.h \\\n        gbkext2.h \\\n        gbkext_inv.h \\\n        cp936ext.h \\\n      cns11643.h \\\n        cns11643_1.h \\\n        cns11643_2.h \\\n        cns11643_3.h \\\n        cns11643_4.h \\\n          cns11643_4a.h \\\n          cns11643_4b.h \\\n        cns11643_5.h \\\n        cns11643_6.h \\\n        cns11643_7.h \\\n        cns11643_15.h \\\n        cns11643_inv.h \\\n      big5.h \\\n      ksc5601.h \\\n      johab_hangul.h \\\n      euc_jp.h \\\n      sjis.h \\\n      cp932.h \\\n        cp932ext.h \\\n      iso2022_jp.h \\\n      iso2022_jp1.h \\\n      iso2022_jp2.h \\\n      iso2022_jpms.h \\\n        cp50221_0208_ext.h \\\n        cp50221_0212_ext.h \\\n      euc_cn.h \\\n      ces_gbk.h \\\n      cp936.h \\\n      gb18030.h \\\n        gb18030ext.h \\\n        gb18030uni.h \\\n      iso2022_cn.h \\\n      iso2022_cnext.h \\\n      hz.h \\\n      euc_tw.h \\\n      ces_big5.h \\\n      cp950.h \\\n        cp950ext.h \\\n      big5hkscs1999.h \\\n        hkscs1999.h \\\n      big5hkscs2001.h \\\n        hkscs2001.h \\\n      big5hkscs2004.h \\\n        hkscs2004.h \\\n      big5hkscs2008.h \\\n        hkscs2008.h \\\n      euc_kr.h \\\n      cp949.h \\\n        uhc_1.h \\\n        uhc_2.h \\\n      johab.h \\\n      iso2022_kr.h \\\n      cp856.h \\\n      cp922.h \\\n      cp943.h \\\n      cp1046.h \\\n      cp1124.h \\\n      cp1129.h \\\n      cp1161.h \\\n      cp1162.h \\\n      cp1163.h \\\n      dec_kanji.h \\\n      dec_hanyu.h \\\n      cp437.h \\\n      cp737.h \\\n      cp775.h \\\n      cp852.h \\\n      cp853.h \\\n      cp855.h \\\n      cp857.h \\\n      cp858.h \\\n      cp860.h \\\n      cp861.h \\\n      cp863.h \\\n      cp864.h \\\n      cp865.h \\\n      cp869.h \\\n      cp1125.h \\\n      euc_jisx0213.h \\\n        jisx0213.h \\\n      shift_jisx0213.h \\\n      iso2022_jp3.h \\\n      big5_2003.h \\\n      tds565.h \\\n      atarist.h \\\n      riscos1.h \\\n    flushwc.h \\\n    cjk_variants.h \\\n    loops.h \\\n      loop_unicode.h \\\n      loop_wchar.h \\\n    aliases2.h \\\n    iconv_open1.h \\\n    iconv_open2.h \\\n  relocatable.h relocatable.c\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES = \\\n  aliases.gperf aliases_sysaix.gperf aliases_syshpux.gperf aliases_sysosf1.gperf aliases_syssolaris.gperf \\\n  aliases.h aliases_sysaix.h aliases_syshpux.h aliases_sysosf1.h aliases_syssolaris.h \\\n  aliases_aix.h aliases_aix_sysaix.h \\\n  aliases_osf1.h aliases_osf1_sysosf1.h \\\n  aliases_dos.h \\\n  aliases_extra.h \\\n  canonical.h canonical_sysaix.h canonical_syshpux.h canonical_sysosf1.h canonical_syssolaris.h \\\n  canonical_aix.h canonical_aix_sysaix.h \\\n  canonical_osf1.h canonical_osf1_sysosf1.h \\\n  canonical_dos.h \\\n  canonical_extra.h \\\n  canonical_local.h canonical_local_sysaix.h canonical_local_syshpux.h canonical_local_sysosf1.h canonical_local_syssolaris.h \\\n  flags.h \\\n  translit.h\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases.gperf",
    "content": "struct alias { int name; unsigned int encoding_index; };\n%struct-type\n%language=ANSI-C\n%define hash-function-name aliases_hash\n%define lookup-function-name aliases_lookup\n%7bit\n%readonly-tables\n%global-table\n%define word-array-name aliases\n%pic\n%%\nUS-ASCII, ei_ascii\nASCII, ei_ascii\nISO646-US, ei_ascii\nISO_646.IRV:1991, ei_ascii\nISO-IR-6, ei_ascii\nANSI_X3.4-1968, ei_ascii\nANSI_X3.4-1986, ei_ascii\nCP367, ei_ascii\nIBM367, ei_ascii\nUS, ei_ascii\nCSASCII, ei_ascii\nUTF-8, ei_utf8\nUCS-2, ei_ucs2\nISO-10646-UCS-2, ei_ucs2\nCSUNICODE, ei_ucs2\nUCS-2BE, ei_ucs2be\nUNICODEBIG, ei_ucs2be\nUNICODE-1-1, ei_ucs2be\nCSUNICODE11, ei_ucs2be\nUCS-2LE, ei_ucs2le\nUNICODELITTLE, ei_ucs2le\nUCS-4, ei_ucs4\nISO-10646-UCS-4, ei_ucs4\nCSUCS4, ei_ucs4\nUCS-4BE, ei_ucs4be\nUCS-4LE, ei_ucs4le\nUTF-16, ei_utf16\nUTF-16BE, ei_utf16be\nUTF-16LE, ei_utf16le\nUTF-32, ei_utf32\nUTF-32BE, ei_utf32be\nUTF-32LE, ei_utf32le\nUTF-7, ei_utf7\nUNICODE-1-1-UTF-7, ei_utf7\nCSUNICODE11UTF7, ei_utf7\nUCS-2-INTERNAL, ei_ucs2internal\nUCS-2-SWAPPED, ei_ucs2swapped\nUCS-4-INTERNAL, ei_ucs4internal\nUCS-4-SWAPPED, ei_ucs4swapped\nC99, ei_c99\nJAVA, ei_java\nISO-8859-1, ei_iso8859_1\nISO_8859-1, ei_iso8859_1\nISO_8859-1:1987, ei_iso8859_1\nISO-IR-100, ei_iso8859_1\nCP819, ei_iso8859_1\nIBM819, ei_iso8859_1\nLATIN1, ei_iso8859_1\nL1, ei_iso8859_1\nCSISOLATIN1, ei_iso8859_1\nISO8859-1, ei_iso8859_1\nISO-8859-2, ei_iso8859_2\nISO_8859-2, ei_iso8859_2\nISO_8859-2:1987, ei_iso8859_2\nISO-IR-101, ei_iso8859_2\nLATIN2, ei_iso8859_2\nL2, ei_iso8859_2\nCSISOLATIN2, ei_iso8859_2\nISO8859-2, ei_iso8859_2\nISO-8859-3, ei_iso8859_3\nISO_8859-3, ei_iso8859_3\nISO_8859-3:1988, ei_iso8859_3\nISO-IR-109, ei_iso8859_3\nLATIN3, ei_iso8859_3\nL3, ei_iso8859_3\nCSISOLATIN3, ei_iso8859_3\nISO8859-3, ei_iso8859_3\nISO-8859-4, ei_iso8859_4\nISO_8859-4, ei_iso8859_4\nISO_8859-4:1988, ei_iso8859_4\nISO-IR-110, ei_iso8859_4\nLATIN4, ei_iso8859_4\nL4, ei_iso8859_4\nCSISOLATIN4, ei_iso8859_4\nISO8859-4, ei_iso8859_4\nISO-8859-5, ei_iso8859_5\nISO_8859-5, ei_iso8859_5\nISO_8859-5:1988, ei_iso8859_5\nISO-IR-144, ei_iso8859_5\nCYRILLIC, ei_iso8859_5\nCSISOLATINCYRILLIC, ei_iso8859_5\nISO8859-5, ei_iso8859_5\nISO-8859-6, ei_iso8859_6\nISO_8859-6, ei_iso8859_6\nISO_8859-6:1987, ei_iso8859_6\nISO-IR-127, ei_iso8859_6\nECMA-114, ei_iso8859_6\nASMO-708, ei_iso8859_6\nARABIC, ei_iso8859_6\nCSISOLATINARABIC, ei_iso8859_6\nISO8859-6, ei_iso8859_6\nISO-8859-7, ei_iso8859_7\nISO_8859-7, ei_iso8859_7\nISO_8859-7:1987, ei_iso8859_7\nISO_8859-7:2003, ei_iso8859_7\nISO-IR-126, ei_iso8859_7\nECMA-118, ei_iso8859_7\nELOT_928, ei_iso8859_7\nGREEK8, ei_iso8859_7\nGREEK, ei_iso8859_7\nCSISOLATINGREEK, ei_iso8859_7\nISO8859-7, ei_iso8859_7\nISO-8859-8, ei_iso8859_8\nISO_8859-8, ei_iso8859_8\nISO_8859-8:1988, ei_iso8859_8\nISO-IR-138, ei_iso8859_8\nHEBREW, ei_iso8859_8\nCSISOLATINHEBREW, ei_iso8859_8\nISO8859-8, ei_iso8859_8\nISO-8859-9, ei_iso8859_9\nISO_8859-9, ei_iso8859_9\nISO_8859-9:1989, ei_iso8859_9\nISO-IR-148, ei_iso8859_9\nLATIN5, ei_iso8859_9\nL5, ei_iso8859_9\nCSISOLATIN5, ei_iso8859_9\nISO8859-9, ei_iso8859_9\nISO-8859-10, ei_iso8859_10\nISO_8859-10, ei_iso8859_10\nISO_8859-10:1992, ei_iso8859_10\nISO-IR-157, ei_iso8859_10\nLATIN6, ei_iso8859_10\nL6, ei_iso8859_10\nCSISOLATIN6, ei_iso8859_10\nISO8859-10, ei_iso8859_10\nISO-8859-11, ei_iso8859_11\nISO_8859-11, ei_iso8859_11\nISO8859-11, ei_iso8859_11\nISO-8859-13, ei_iso8859_13\nISO_8859-13, ei_iso8859_13\nISO-IR-179, ei_iso8859_13\nLATIN7, ei_iso8859_13\nL7, ei_iso8859_13\nISO8859-13, ei_iso8859_13\nISO-8859-14, ei_iso8859_14\nISO_8859-14, ei_iso8859_14\nISO_8859-14:1998, ei_iso8859_14\nISO-IR-199, ei_iso8859_14\nLATIN8, ei_iso8859_14\nL8, ei_iso8859_14\nISO-CELTIC, ei_iso8859_14\nISO8859-14, ei_iso8859_14\nISO-8859-15, ei_iso8859_15\nISO_8859-15, ei_iso8859_15\nISO_8859-15:1998, ei_iso8859_15\nISO-IR-203, ei_iso8859_15\nLATIN-9, ei_iso8859_15\nISO8859-15, ei_iso8859_15\nISO-8859-16, ei_iso8859_16\nISO_8859-16, ei_iso8859_16\nISO_8859-16:2001, ei_iso8859_16\nISO-IR-226, ei_iso8859_16\nLATIN10, ei_iso8859_16\nL10, ei_iso8859_16\nISO8859-16, ei_iso8859_16\nKOI8-R, ei_koi8_r\nCSKOI8R, ei_koi8_r\nKOI8-U, ei_koi8_u\nKOI8-RU, ei_koi8_ru\nCP1250, ei_cp1250\nWINDOWS-1250, ei_cp1250\nMS-EE, ei_cp1250\nCP1251, ei_cp1251\nWINDOWS-1251, ei_cp1251\nMS-CYRL, ei_cp1251\nCP1252, ei_cp1252\nWINDOWS-1252, ei_cp1252\nMS-ANSI, ei_cp1252\nCP1253, ei_cp1253\nWINDOWS-1253, ei_cp1253\nMS-GREEK, ei_cp1253\nCP1254, ei_cp1254\nWINDOWS-1254, ei_cp1254\nMS-TURK, ei_cp1254\nCP1255, ei_cp1255\nWINDOWS-1255, ei_cp1255\nMS-HEBR, ei_cp1255\nCP1256, ei_cp1256\nWINDOWS-1256, ei_cp1256\nMS-ARAB, ei_cp1256\nCP1257, ei_cp1257\nWINDOWS-1257, ei_cp1257\nWINBALTRIM, ei_cp1257\nCP1258, ei_cp1258\nWINDOWS-1258, ei_cp1258\nCP850, ei_cp850\nIBM850, ei_cp850\n850, ei_cp850\nCSPC850MULTILINGUAL, ei_cp850\nCP862, ei_cp862\nIBM862, ei_cp862\n862, ei_cp862\nCSPC862LATINHEBREW, ei_cp862\nCP866, ei_cp866\nIBM866, ei_cp866\n866, ei_cp866\nCSIBM866, ei_cp866\nCP1131, ei_cp1131\nMACROMAN, ei_mac_roman\nMACINTOSH, ei_mac_roman\nMAC, ei_mac_roman\nCSMACINTOSH, ei_mac_roman\nMACCENTRALEUROPE, ei_mac_centraleurope\nMACICELAND, ei_mac_iceland\nMACCROATIAN, ei_mac_croatian\nMACROMANIA, ei_mac_romania\nMACCYRILLIC, ei_mac_cyrillic\nMACUKRAINE, ei_mac_ukraine\nMACGREEK, ei_mac_greek\nMACTURKISH, ei_mac_turkish\nMACHEBREW, ei_mac_hebrew\nMACARABIC, ei_mac_arabic\nMACTHAI, ei_mac_thai\nHP-ROMAN8, ei_hp_roman8\nROMAN8, ei_hp_roman8\nR8, ei_hp_roman8\nCSHPROMAN8, ei_hp_roman8\nNEXTSTEP, ei_nextstep\nARMSCII-8, ei_armscii_8\nGEORGIAN-ACADEMY, ei_georgian_academy\nGEORGIAN-PS, ei_georgian_ps\nKOI8-T, ei_koi8_t\nPT154, ei_pt154\nPTCP154, ei_pt154\nCP154, ei_pt154\nCYRILLIC-ASIAN, ei_pt154\nCSPTCP154, ei_pt154\nRK1048, ei_rk1048\nSTRK1048-2002, ei_rk1048\nKZ-1048, ei_rk1048\nCSKZ1048, ei_rk1048\nMULELAO-1, ei_mulelao\nCP1133, ei_cp1133\nIBM-CP1133, ei_cp1133\nTIS-620, ei_tis620\nTIS620, ei_tis620\nTIS620-0, ei_tis620\nTIS620.2529-1, ei_tis620\nTIS620.2533-0, ei_tis620\nTIS620.2533-1, ei_tis620\nISO-IR-166, ei_tis620\nCP874, ei_cp874\nWINDOWS-874, ei_cp874\nVISCII, ei_viscii\nVISCII1.1-1, ei_viscii\nCSVISCII, ei_viscii\nTCVN, ei_tcvn\nTCVN-5712, ei_tcvn\nTCVN5712-1, ei_tcvn\nTCVN5712-1:1993, ei_tcvn\nJIS_C6220-1969-RO, ei_iso646_jp\nISO646-JP, ei_iso646_jp\nISO-IR-14, ei_iso646_jp\nJP, ei_iso646_jp\nCSISO14JISC6220RO, ei_iso646_jp\nJIS_X0201, ei_jisx0201\nJISX0201-1976, ei_jisx0201\nX0201, ei_jisx0201\nCSHALFWIDTHKATAKANA, ei_jisx0201\nJIS_X0208, ei_jisx0208\nJIS_X0208-1983, ei_jisx0208\nJIS_X0208-1990, ei_jisx0208\nJIS0208, ei_jisx0208\nX0208, ei_jisx0208\nISO-IR-87, ei_jisx0208\nJIS_C6226-1983, ei_jisx0208\nCSISO87JISX0208, ei_jisx0208\nJIS_X0212, ei_jisx0212\nJIS_X0212.1990-0, ei_jisx0212\nJIS_X0212-1990, ei_jisx0212\nX0212, ei_jisx0212\nISO-IR-159, ei_jisx0212\nCSISO159JISX02121990, ei_jisx0212\nGB_1988-80, ei_iso646_cn\nISO646-CN, ei_iso646_cn\nISO-IR-57, ei_iso646_cn\nCN, ei_iso646_cn\nCSISO57GB1988, ei_iso646_cn\nGB_2312-80, ei_gb2312\nISO-IR-58, ei_gb2312\nCSISO58GB231280, ei_gb2312\nCHINESE, ei_gb2312\nISO-IR-165, ei_isoir165\nCN-GB-ISOIR165, ei_isoir165\nKSC_5601, ei_ksc5601\nKS_C_5601-1987, ei_ksc5601\nKS_C_5601-1989, ei_ksc5601\nISO-IR-149, ei_ksc5601\nCSKSC56011987, ei_ksc5601\nKOREAN, ei_ksc5601\nEUC-JP, ei_euc_jp\nEUCJP, ei_euc_jp\nEXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE, ei_euc_jp\nCSEUCPKDFMTJAPANESE, ei_euc_jp\nSHIFT_JIS, ei_sjis\nSHIFT-JIS, ei_sjis\nSJIS, ei_sjis\nMS_KANJI, ei_sjis\nCSSHIFTJIS, ei_sjis\nCP932, ei_cp932\nISO-2022-JP, ei_iso2022_jp\nCSISO2022JP, ei_iso2022_jp\nISO-2022-JP-1, ei_iso2022_jp1\nISO-2022-JP-2, ei_iso2022_jp2\nCSISO2022JP2, ei_iso2022_jp2\nISO-2022-JP-MS, ei_iso2022_jpms\nCP50221, ei_iso2022_jpms\nEUC-CN, ei_euc_cn\nEUCCN, ei_euc_cn\nGB2312, ei_euc_cn\nCN-GB, ei_euc_cn\nCSGB2312, ei_euc_cn\nGBK, ei_ces_gbk\nCP936, ei_cp936\nMS936, ei_cp936\nWINDOWS-936, ei_cp936\nGB18030, ei_gb18030\nISO-2022-CN, ei_iso2022_cn\nCSISO2022CN, ei_iso2022_cn\nISO-2022-CN-EXT, ei_iso2022_cn_ext\nHZ, ei_hz\nHZ-GB-2312, ei_hz\nEUC-TW, ei_euc_tw\nEUCTW, ei_euc_tw\nCSEUCTW, ei_euc_tw\nBIG5, ei_ces_big5\nBIG-5, ei_ces_big5\nBIG-FIVE, ei_ces_big5\nBIGFIVE, ei_ces_big5\nCN-BIG5, ei_ces_big5\nCSBIG5, ei_ces_big5\nCP950, ei_cp950\nBIG5-HKSCS:1999, ei_big5hkscs1999\nBIG5-HKSCS:2001, ei_big5hkscs2001\nBIG5-HKSCS:2004, ei_big5hkscs2004\nBIG5-HKSCS, ei_big5hkscs2008\nBIG5HKSCS, ei_big5hkscs2008\nBIG5-HKSCS:2008, ei_big5hkscs2008\nEUC-KR, ei_euc_kr\nEUCKR, ei_euc_kr\nCSEUCKR, ei_euc_kr\nCP949, ei_cp949\nUHC, ei_cp949\nJOHAB, ei_johab\nCP1361, ei_johab\nISO-2022-KR, ei_iso2022_kr\nCSISO2022KR, ei_iso2022_kr\nCHAR, ei_local_char\nWCHAR_T, ei_local_wchar_t\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases.h",
    "content": "/* ANSI-C code produced by gperf version 3.0.4 */\n/* Command-line: gperf -m 10 lib/aliases.gperf  */\n/* Computed positions: -k'1,3-11,$' */\n\n#if !((' ' == 32) && ('!' == 33) && ('\"' == 34) && ('#' == 35) \\\n      && ('%' == 37) && ('&' == 38) && ('\\'' == 39) && ('(' == 40) \\\n      && (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \\\n      && ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \\\n      && ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \\\n      && ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \\\n      && ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \\\n      && ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \\\n      && ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \\\n      && ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \\\n      && ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \\\n      && ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \\\n      && ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \\\n      && ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \\\n      && ('Z' == 90) && ('[' == 91) && ('\\\\' == 92) && (']' == 93) \\\n      && ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \\\n      && ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \\\n      && ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \\\n      && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \\\n      && ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \\\n      && ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \\\n      && ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \\\n      && ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126))\n/* The character set is not based on ISO-646.  */\n#error \"gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>.\"\n#endif\n\n#line 1 \"lib/aliases.gperf\"\nstruct alias { int name; unsigned int encoding_index; };\n\n#define TOTAL_KEYWORDS 349\n#define MIN_WORD_LENGTH 2\n#define MAX_WORD_LENGTH 45\n#define MIN_HASH_VALUE 15\n#define MAX_HASH_VALUE 921\n/* maximum key range = 907, duplicates = 0 */\n\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic unsigned int\naliases_hash (register const char *str, register unsigned int len)\n{\n  static const unsigned short asso_values[] =\n    {\n      922, 922, 922, 922, 922, 922, 922, 922, 922, 922,\n      922, 922, 922, 922, 922, 922, 922, 922, 922, 922,\n      922, 922, 922, 922, 922, 922, 922, 922, 922, 922,\n      922, 922, 922, 922, 922, 922, 922, 922, 922, 922,\n      922, 922, 922, 922, 922,   5,   6, 922,  97,   7,\n       33, 102,  15,  17,   5, 173,  23,  25, 193, 922,\n      922, 922, 922, 922, 922, 168, 159,  11,  32,  25,\n      159,  13,  70,   6, 308, 186,   8, 132,   7,   6,\n       62, 922,   5,   8,  30, 174, 163, 180,  79,  28,\n        6, 922, 922, 922, 922,   6, 922, 922, 922, 922,\n      922, 922, 922, 922, 922, 922, 922, 922, 922, 922,\n      922, 922, 922, 922, 922, 922, 922, 922, 922, 922,\n      922, 922, 922, 922, 922, 922, 922, 922\n    };\n  register int hval = len;\n\n  switch (hval)\n    {\n      default:\n        hval += asso_values[(unsigned char)str[10]];\n      /*FALLTHROUGH*/\n      case 10:\n        hval += asso_values[(unsigned char)str[9]];\n      /*FALLTHROUGH*/\n      case 9:\n        hval += asso_values[(unsigned char)str[8]];\n      /*FALLTHROUGH*/\n      case 8:\n        hval += asso_values[(unsigned char)str[7]];\n      /*FALLTHROUGH*/\n      case 7:\n        hval += asso_values[(unsigned char)str[6]];\n      /*FALLTHROUGH*/\n      case 6:\n        hval += asso_values[(unsigned char)str[5]];\n      /*FALLTHROUGH*/\n      case 5:\n        hval += asso_values[(unsigned char)str[4]];\n      /*FALLTHROUGH*/\n      case 4:\n        hval += asso_values[(unsigned char)str[3]];\n      /*FALLTHROUGH*/\n      case 3:\n        hval += asso_values[(unsigned char)str[2]];\n      /*FALLTHROUGH*/\n      case 2:\n      case 1:\n        hval += asso_values[(unsigned char)str[0]];\n        break;\n    }\n  return hval + asso_values[(unsigned char)str[len - 1]];\n}\n\nstruct stringpool_t\n  {\n    char stringpool_str15[sizeof(\"L6\")];\n    char stringpool_str17[sizeof(\"L1\")];\n    char stringpool_str20[sizeof(\"CN\")];\n    char stringpool_str25[sizeof(\"L4\")];\n    char stringpool_str27[sizeof(\"L5\")];\n    char stringpool_str30[sizeof(\"R8\")];\n    char stringpool_str33[sizeof(\"L8\")];\n    char stringpool_str34[sizeof(\"SJIS\")];\n    char stringpool_str36[sizeof(\"866\")];\n    char stringpool_str43[sizeof(\"L2\")];\n    char stringpool_str51[sizeof(\"ISO-IR-6\")];\n    char stringpool_str54[sizeof(\"CP866\")];\n    char stringpool_str64[sizeof(\"C99\")];\n    char stringpool_str65[sizeof(\"ISO-IR-166\")];\n    char stringpool_str66[sizeof(\"EUCCN\")];\n    char stringpool_str67[sizeof(\"LATIN6\")];\n    char stringpool_str70[sizeof(\"CP154\")];\n    char stringpool_str71[sizeof(\"LATIN1\")];\n    char stringpool_str72[sizeof(\"EUC-CN\")];\n    char stringpool_str74[sizeof(\"CYRILLIC\")];\n    char stringpool_str76[sizeof(\"ISO646-CN\")];\n    char stringpool_str78[sizeof(\"HZ\")];\n    char stringpool_str79[sizeof(\"ISO-IR-14\")];\n    char stringpool_str84[sizeof(\"CP1256\")];\n    char stringpool_str87[sizeof(\"LATIN4\")];\n    char stringpool_str88[sizeof(\"CP1251\")];\n    char stringpool_str89[sizeof(\"ISO-IR-165\")];\n    char stringpool_str91[sizeof(\"LATIN5\")];\n    char stringpool_str92[sizeof(\"862\")];\n    char stringpool_str93[sizeof(\"ISO-IR-126\")];\n    char stringpool_str95[sizeof(\"ISO-IR-144\")];\n    char stringpool_str96[sizeof(\"CP819\")];\n    char stringpool_str103[sizeof(\"LATIN8\")];\n    char stringpool_str104[sizeof(\"CP1254\")];\n    char stringpool_str105[sizeof(\"ISO-IR-58\")];\n    char stringpool_str106[sizeof(\"CP949\")];\n    char stringpool_str108[sizeof(\"CP1255\")];\n    char stringpool_str110[sizeof(\"CP862\")];\n    char stringpool_str111[sizeof(\"ISO-IR-148\")];\n    char stringpool_str112[sizeof(\"L3\")];\n    char stringpool_str113[sizeof(\"LATIN-9\")];\n    char stringpool_str114[sizeof(\"CHINESE\")];\n    char stringpool_str115[sizeof(\"ISO-IR-149\")];\n    char stringpool_str117[sizeof(\"ISO-IR-159\")];\n    char stringpool_str119[sizeof(\"ISO-IR-226\")];\n    char stringpool_str120[sizeof(\"CP1258\")];\n    char stringpool_str121[sizeof(\"PT154\")];\n    char stringpool_str123[sizeof(\"LATIN2\")];\n    char stringpool_str124[sizeof(\"ISO8859-6\")];\n    char stringpool_str125[sizeof(\"ISO-IR-199\")];\n    char stringpool_str128[sizeof(\"ISO8859-1\")];\n    char stringpool_str129[sizeof(\"ISO-CELTIC\")];\n    char stringpool_str130[sizeof(\"ISO-8859-6\")];\n    char stringpool_str131[sizeof(\"ISO_8859-6\")];\n    char stringpool_str132[sizeof(\"ISO8859-16\")];\n    char stringpool_str134[sizeof(\"ISO-8859-1\")];\n    char stringpool_str135[sizeof(\"ISO_8859-1\")];\n    char stringpool_str136[sizeof(\"ISO8859-11\")];\n    char stringpool_str138[sizeof(\"ISO-8859-16\")];\n    char stringpool_str139[sizeof(\"ISO_8859-16\")];\n    char stringpool_str140[sizeof(\"CP1252\")];\n    char stringpool_str142[sizeof(\"ISO-8859-11\")];\n    char stringpool_str143[sizeof(\"ISO_8859-11\")];\n    char stringpool_str144[sizeof(\"ISO8859-4\")];\n    char stringpool_str145[sizeof(\"CP1361\")];\n    char stringpool_str146[sizeof(\"ISO_8859-16:2001\")];\n    char stringpool_str147[sizeof(\"CP1131\")];\n    char stringpool_str148[sizeof(\"ISO8859-5\")];\n    char stringpool_str150[sizeof(\"ISO-8859-4\")];\n    char stringpool_str151[sizeof(\"ISO_8859-4\")];\n    char stringpool_str152[sizeof(\"ISO8859-14\")];\n    char stringpool_str153[sizeof(\"CP936\")];\n    char stringpool_str154[sizeof(\"ISO-8859-5\")];\n    char stringpool_str155[sizeof(\"ISO_8859-5\")];\n    char stringpool_str156[sizeof(\"ISO8859-15\")];\n    char stringpool_str157[sizeof(\"MAC\")];\n    char stringpool_str158[sizeof(\"ISO-8859-14\")];\n    char stringpool_str159[sizeof(\"ISO_8859-14\")];\n    char stringpool_str160[sizeof(\"ISO8859-8\")];\n    char stringpool_str161[sizeof(\"ISO-IR-101\")];\n    char stringpool_str162[sizeof(\"ISO-8859-15\")];\n    char stringpool_str163[sizeof(\"ISO_8859-15\")];\n    char stringpool_str164[sizeof(\"ISO8859-9\")];\n    char stringpool_str166[sizeof(\"ISO-8859-8\")];\n    char stringpool_str167[sizeof(\"ISO_8859-8\")];\n    char stringpool_str170[sizeof(\"ISO-8859-9\")];\n    char stringpool_str171[sizeof(\"ISO_8859-9\")];\n    char stringpool_str172[sizeof(\"ISO_8859-14:1998\")];\n    char stringpool_str174[sizeof(\"ISO_8859-15:1998\")];\n    char stringpool_str176[sizeof(\"RK1048\")];\n    char stringpool_str179[sizeof(\"ELOT_928\")];\n    char stringpool_str180[sizeof(\"ISO8859-2\")];\n    char stringpool_str182[sizeof(\"IBM866\")];\n    char stringpool_str183[sizeof(\"L7\")];\n    char stringpool_str184[sizeof(\"US\")];\n    char stringpool_str186[sizeof(\"ISO-8859-2\")];\n    char stringpool_str187[sizeof(\"ISO_8859-2\")];\n    char stringpool_str190[sizeof(\"X0212\")];\n    char stringpool_str193[sizeof(\"CHAR\")];\n    char stringpool_str196[sizeof(\"PTCP154\")];\n    char stringpool_str197[sizeof(\"ISO-IR-109\")];\n    char stringpool_str198[sizeof(\"ISO-IR-138\")];\n    char stringpool_str199[sizeof(\"UHC\")];\n    char stringpool_str202[sizeof(\"ASCII\")];\n    char stringpool_str204[sizeof(\"MS-CYRL\")];\n    char stringpool_str205[sizeof(\"L10\")];\n    char stringpool_str206[sizeof(\"VISCII\")];\n    char stringpool_str209[sizeof(\"CP932\")];\n    char stringpool_str210[sizeof(\"BIG5\")];\n    char stringpool_str211[sizeof(\"TCVN\")];\n    char stringpool_str212[sizeof(\"CP50221\")];\n    char stringpool_str216[sizeof(\"BIG-5\")];\n    char stringpool_str217[sizeof(\"MS-EE\")];\n    char stringpool_str220[sizeof(\"850\")];\n    char stringpool_str222[sizeof(\"UCS-4\")];\n    char stringpool_str223[sizeof(\"CSASCII\")];\n    char stringpool_str224[sizeof(\"IBM819\")];\n    char stringpool_str225[sizeof(\"CSVISCII\")];\n    char stringpool_str227[sizeof(\"GB2312\")];\n    char stringpool_str228[sizeof(\"X0201\")];\n    char stringpool_str229[sizeof(\"CSBIG5\")];\n    char stringpool_str235[sizeof(\"CN-BIG5\")];\n    char stringpool_str236[sizeof(\"KOI8-R\")];\n    char stringpool_str237[sizeof(\"EUCKR\")];\n    char stringpool_str238[sizeof(\"IBM862\")];\n    char stringpool_str239[sizeof(\"CSPTCP154\")];\n    char stringpool_str240[sizeof(\"CSUCS4\")];\n    char stringpool_str241[sizeof(\"ISO646-US\")];\n    char stringpool_str242[sizeof(\"CP874\")];\n    char stringpool_str243[sizeof(\"EUC-KR\")];\n    char stringpool_str244[sizeof(\"VISCII1.1-1\")];\n    char stringpool_str246[sizeof(\"ISO_646.IRV:1991\")];\n    char stringpool_str248[sizeof(\"MACCYRILLIC\")];\n    char stringpool_str249[sizeof(\"CSKOI8R\")];\n    char stringpool_str250[sizeof(\"CP850\")];\n    char stringpool_str251[sizeof(\"ISO-IR-110\")];\n    char stringpool_str252[sizeof(\"CP950\")];\n    char stringpool_str254[sizeof(\"ISO-2022-CN\")];\n    char stringpool_str255[sizeof(\"CN-GB-ISOIR165\")];\n    char stringpool_str257[sizeof(\"CYRILLIC-ASIAN\")];\n    char stringpool_str258[sizeof(\"UCS-2\")];\n    char stringpool_str259[sizeof(\"LATIN10\")];\n    char stringpool_str260[sizeof(\"X0208\")];\n    char stringpool_str261[sizeof(\"LATIN3\")];\n    char stringpool_str263[sizeof(\"CSISO2022CN\")];\n    char stringpool_str264[sizeof(\"ISO_8859-10:1992\")];\n    char stringpool_str267[sizeof(\"UCS-4LE\")];\n    char stringpool_str268[sizeof(\"CP1250\")];\n    char stringpool_str271[sizeof(\"CSISOLATIN6\")];\n    char stringpool_str273[sizeof(\"ISO-IR-179\")];\n    char stringpool_str274[sizeof(\"MS936\")];\n    char stringpool_str275[sizeof(\"CSISOLATIN1\")];\n    char stringpool_str276[sizeof(\"TIS620\")];\n    char stringpool_str278[sizeof(\"CP1253\")];\n    char stringpool_str281[sizeof(\"ISO-2022-CN-EXT\")];\n    char stringpool_str282[sizeof(\"TIS-620\")];\n    char stringpool_str285[sizeof(\"UCS-2LE\")];\n    char stringpool_str286[sizeof(\"KOI8-T\")];\n    char stringpool_str290[sizeof(\"CSISOLATINCYRILLIC\")];\n    char stringpool_str291[sizeof(\"CSISOLATIN4\")];\n    char stringpool_str295[sizeof(\"CSISOLATIN5\")];\n    char stringpool_str296[sizeof(\"UNICODE-1-1\")];\n    char stringpool_str301[sizeof(\"GREEK8\")];\n    char stringpool_str302[sizeof(\"UCS-4-INTERNAL\")];\n    char stringpool_str304[sizeof(\"CSUNICODE11\")];\n    char stringpool_str306[sizeof(\"CSUNICODE\")];\n    char stringpool_str307[sizeof(\"TIS620.2529-1\")];\n    char stringpool_str311[sizeof(\"NEXTSTEP\")];\n    char stringpool_str312[sizeof(\"GEORGIAN-PS\")];\n    char stringpool_str316[sizeof(\"ISO8859-10\")];\n    char stringpool_str318[sizeof(\"ISO8859-3\")];\n    char stringpool_str320[sizeof(\"UCS-2-INTERNAL\")];\n    char stringpool_str322[sizeof(\"ISO-8859-10\")];\n    char stringpool_str323[sizeof(\"ISO_8859-10\")];\n    char stringpool_str324[sizeof(\"ISO-8859-3\")];\n    char stringpool_str325[sizeof(\"ISO_8859-3\")];\n    char stringpool_str326[sizeof(\"ISO8859-13\")];\n    char stringpool_str327[sizeof(\"CSISOLATIN2\")];\n    char stringpool_str329[sizeof(\"GB_1988-80\")];\n    char stringpool_str332[sizeof(\"ISO-8859-13\")];\n    char stringpool_str333[sizeof(\"ISO_8859-13\")];\n    char stringpool_str337[sizeof(\"CP1133\")];\n    char stringpool_str339[sizeof(\"MS-ANSI\")];\n    char stringpool_str341[sizeof(\"ISO-IR-100\")];\n    char stringpool_str344[sizeof(\"KSC_5601\")];\n    char stringpool_str349[sizeof(\"MACINTOSH\")];\n    char stringpool_str352[sizeof(\"CN-GB\")];\n    char stringpool_str354[sizeof(\"CSIBM866\")];\n    char stringpool_str355[sizeof(\"ISO-10646-UCS-4\")];\n    char stringpool_str357[sizeof(\"ISO_8859-4:1988\")];\n    char stringpool_str359[sizeof(\"ISO_8859-5:1988\")];\n    char stringpool_str361[sizeof(\"UTF-16\")];\n    char stringpool_str363[sizeof(\"KZ-1048\")];\n    char stringpool_str364[sizeof(\"ROMAN8\")];\n    char stringpool_str365[sizeof(\"ISO_8859-8:1988\")];\n    char stringpool_str366[sizeof(\"UNICODELITTLE\")];\n    char stringpool_str369[sizeof(\"ISO_8859-9:1989\")];\n    char stringpool_str372[sizeof(\"JP\")];\n    char stringpool_str373[sizeof(\"ISO-10646-UCS-2\")];\n    char stringpool_str375[sizeof(\"MULELAO-1\")];\n    char stringpool_str376[sizeof(\"CSKZ1048\")];\n    char stringpool_str377[sizeof(\"ISO-IR-203\")];\n    char stringpool_str378[sizeof(\"IBM850\")];\n    char stringpool_str380[sizeof(\"TIS620-0\")];\n    char stringpool_str382[sizeof(\"ECMA-114\")];\n    char stringpool_str386[sizeof(\"KS_C_5601-1989\")];\n    char stringpool_str388[sizeof(\"GBK\")];\n    char stringpool_str389[sizeof(\"UTF-8\")];\n    char stringpool_str391[sizeof(\"ARMSCII-8\")];\n    char stringpool_str392[sizeof(\"US-ASCII\")];\n    char stringpool_str398[sizeof(\"ECMA-118\")];\n    char stringpool_str399[sizeof(\"CSGB2312\")];\n    char stringpool_str403[sizeof(\"LATIN7\")];\n    char stringpool_str404[sizeof(\"KOREAN\")];\n    char stringpool_str405[sizeof(\"ISO-IR-57\")];\n    char stringpool_str408[sizeof(\"MS-HEBR\")];\n    char stringpool_str409[sizeof(\"CSISO14JISC6220RO\")];\n    char stringpool_str411[sizeof(\"ISO-IR-87\")];\n    char stringpool_str413[sizeof(\"ISO-IR-157\")];\n    char stringpool_str416[sizeof(\"UTF-16LE\")];\n    char stringpool_str418[sizeof(\"UCS-4BE\")];\n    char stringpool_str420[sizeof(\"CP1257\")];\n    char stringpool_str421[sizeof(\"ANSI_X3.4-1986\")];\n    char stringpool_str424[sizeof(\"CSEUCKR\")];\n    char stringpool_str425[sizeof(\"ISO-2022-KR\")];\n    char stringpool_str426[sizeof(\"GB_2312-80\")];\n    char stringpool_str429[sizeof(\"ISO-IR-127\")];\n    char stringpool_str430[sizeof(\"MACTHAI\")];\n    char stringpool_str431[sizeof(\"EUCTW\")];\n    char stringpool_str433[sizeof(\"EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE\")];\n    char stringpool_str434[sizeof(\"CSISO2022KR\")];\n    char stringpool_str436[sizeof(\"UCS-2BE\")];\n    char stringpool_str437[sizeof(\"EUC-TW\")];\n    char stringpool_str439[sizeof(\"ANSI_X3.4-1968\")];\n    char stringpool_str440[sizeof(\"GREEK\")];\n    char stringpool_str442[sizeof(\"MACICELAND\")];\n    char stringpool_str443[sizeof(\"GB18030\")];\n    char stringpool_str444[sizeof(\"ISO_8859-3:1988\")];\n    char stringpool_str445[sizeof(\"CSISOLATINARABIC\")];\n    char stringpool_str446[sizeof(\"GEORGIAN-ACADEMY\")];\n    char stringpool_str448[sizeof(\"HP-ROMAN8\")];\n    char stringpool_str453[sizeof(\"TIS620.2533-1\")];\n    char stringpool_str455[sizeof(\"UNICODEBIG\")];\n    char stringpool_str459[sizeof(\"TCVN5712-1\")];\n    char stringpool_str460[sizeof(\"ISO8859-7\")];\n    char stringpool_str461[sizeof(\"CSISO57GB1988\")];\n    char stringpool_str463[sizeof(\"MACCENTRALEUROPE\")];\n    char stringpool_str464[sizeof(\"CSISOLATINGREEK\")];\n    char stringpool_str465[sizeof(\"CSISOLATIN3\")];\n    char stringpool_str466[sizeof(\"ISO-8859-7\")];\n    char stringpool_str467[sizeof(\"ISO_8859-7\")];\n    char stringpool_str468[sizeof(\"UNICODE-1-1-UTF-7\")];\n    char stringpool_str469[sizeof(\"CP367\")];\n    char stringpool_str470[sizeof(\"HZ-GB-2312\")];\n    char stringpool_str473[sizeof(\"EUCJP\")];\n    char stringpool_str474[sizeof(\"CSUNICODE11UTF7\")];\n    char stringpool_str476[sizeof(\"MACROMAN\")];\n    char stringpool_str477[sizeof(\"TCVN-5712\")];\n    char stringpool_str479[sizeof(\"EUC-JP\")];\n    char stringpool_str483[sizeof(\"ISO646-JP\")];\n    char stringpool_str489[sizeof(\"BIG5HKSCS\")];\n    char stringpool_str490[sizeof(\"CSISO58GB231280\")];\n    char stringpool_str492[sizeof(\"WINDOWS-1256\")];\n    char stringpool_str494[sizeof(\"WINDOWS-1251\")];\n    char stringpool_str495[sizeof(\"BIG5-HKSCS\")];\n    char stringpool_str496[sizeof(\"WCHAR_T\")];\n    char stringpool_str497[sizeof(\"ISO_8859-6:1987\")];\n    char stringpool_str499[sizeof(\"ISO_8859-1:1987\")];\n    char stringpool_str502[sizeof(\"WINDOWS-1254\")];\n    char stringpool_str504[sizeof(\"WINDOWS-1255\")];\n    char stringpool_str510[sizeof(\"WINDOWS-1258\")];\n    char stringpool_str512[sizeof(\"UTF-32\")];\n    char stringpool_str516[sizeof(\"CSISOLATINHEBREW\")];\n    char stringpool_str517[sizeof(\"CSHPROMAN8\")];\n    char stringpool_str519[sizeof(\"CSISO159JISX02121990\")];\n    char stringpool_str520[sizeof(\"WINDOWS-1252\")];\n    char stringpool_str522[sizeof(\"STRK1048-2002\")];\n    char stringpool_str525[sizeof(\"ISO_8859-2:1987\")];\n    char stringpool_str529[sizeof(\"ARABIC\")];\n    char stringpool_str530[sizeof(\"CSMACINTOSH\")];\n    char stringpool_str534[sizeof(\"KS_C_5601-1987\")];\n    char stringpool_str536[sizeof(\"JIS_C6220-1969-RO\")];\n    char stringpool_str537[sizeof(\"JIS_C6226-1983\")];\n    char stringpool_str539[sizeof(\"UTF-32LE\")];\n    char stringpool_str543[sizeof(\"TIS620.2533-0\")];\n    char stringpool_str546[sizeof(\"IBM-CP1133\")];\n    char stringpool_str547[sizeof(\"SHIFT-JIS\")];\n    char stringpool_str548[sizeof(\"SHIFT_JIS\")];\n    char stringpool_str555[sizeof(\"CSPC862LATINHEBREW\")];\n    char stringpool_str557[sizeof(\"BIGFIVE\")];\n    char stringpool_str560[sizeof(\"CSKSC56011987\")];\n    char stringpool_str562[sizeof(\"MACCROATIAN\")];\n    char stringpool_str563[sizeof(\"BIG-FIVE\")];\n    char stringpool_str566[sizeof(\"WINDOWS-936\")];\n    char stringpool_str567[sizeof(\"UTF-16BE\")];\n    char stringpool_str574[sizeof(\"KOI8-U\")];\n    char stringpool_str580[sizeof(\"KOI8-RU\")];\n    char stringpool_str584[sizeof(\"WINDOWS-1250\")];\n    char stringpool_str585[sizeof(\"MS-GREEK\")];\n    char stringpool_str589[sizeof(\"WINDOWS-1253\")];\n    char stringpool_str591[sizeof(\"MACGREEK\")];\n    char stringpool_str592[sizeof(\"CSPC850MULTILINGUAL\")];\n    char stringpool_str594[sizeof(\"ISO_8859-7:2003\")];\n    char stringpool_str596[sizeof(\"JIS0208\")];\n    char stringpool_str597[sizeof(\"IBM367\")];\n    char stringpool_str608[sizeof(\"ISO-2022-JP-1\")];\n    char stringpool_str610[sizeof(\"ISO-2022-JP-MS\")];\n    char stringpool_str613[sizeof(\"JIS_X0212\")];\n    char stringpool_str618[sizeof(\"CSEUCTW\")];\n    char stringpool_str624[sizeof(\"CSSHIFTJIS\")];\n    char stringpool_str625[sizeof(\"HEBREW\")];\n    char stringpool_str634[sizeof(\"ISO-2022-JP-2\")];\n    char stringpool_str635[sizeof(\"ASMO-708\")];\n    char stringpool_str642[sizeof(\"CSISO2022JP2\")];\n    char stringpool_str651[sizeof(\"JIS_X0201\")];\n    char stringpool_str655[sizeof(\"WINDOWS-874\")];\n    char stringpool_str660[sizeof(\"WINDOWS-1257\")];\n    char stringpool_str661[sizeof(\"ISO-2022-JP\")];\n    char stringpool_str665[sizeof(\"ISO_8859-7:1987\")];\n    char stringpool_str666[sizeof(\"CSISO87JISX0208\")];\n    char stringpool_str670[sizeof(\"CSISO2022JP\")];\n    char stringpool_str680[sizeof(\"MACARABIC\")];\n    char stringpool_str683[sizeof(\"JIS_X0208\")];\n    char stringpool_str684[sizeof(\"JISX0201-1976\")];\n    char stringpool_str689[sizeof(\"UTF-7\")];\n    char stringpool_str690[sizeof(\"UTF-32BE\")];\n    char stringpool_str692[sizeof(\"BIG5-HKSCS:2001\")];\n    char stringpool_str694[sizeof(\"JIS_X0212-1990\")];\n    char stringpool_str697[sizeof(\"JIS_X0212.1990-0\")];\n    char stringpool_str700[sizeof(\"BIG5-HKSCS:2004\")];\n    char stringpool_str702[sizeof(\"MACTURKISH\")];\n    char stringpool_str708[sizeof(\"BIG5-HKSCS:2008\")];\n    char stringpool_str710[sizeof(\"BIG5-HKSCS:1999\")];\n    char stringpool_str725[sizeof(\"MS-TURK\")];\n    char stringpool_str732[sizeof(\"UCS-4-SWAPPED\")];\n    char stringpool_str749[sizeof(\"MACUKRAINE\")];\n    char stringpool_str750[sizeof(\"UCS-2-SWAPPED\")];\n    char stringpool_str752[sizeof(\"TCVN5712-1:1993\")];\n    char stringpool_str774[sizeof(\"JIS_X0208-1990\")];\n    char stringpool_str779[sizeof(\"JIS_X0208-1983\")];\n    char stringpool_str796[sizeof(\"MACHEBREW\")];\n    char stringpool_str803[sizeof(\"MS-ARAB\")];\n    char stringpool_str811[sizeof(\"JAVA\")];\n    char stringpool_str813[sizeof(\"MACROMANIA\")];\n    char stringpool_str827[sizeof(\"MS_KANJI\")];\n    char stringpool_str837[sizeof(\"WINBALTRIM\")];\n    char stringpool_str866[sizeof(\"CSEUCPKDFMTJAPANESE\")];\n    char stringpool_str869[sizeof(\"JOHAB\")];\n    char stringpool_str921[sizeof(\"CSHALFWIDTHKATAKANA\")];\n  };\nstatic const struct stringpool_t stringpool_contents =\n  {\n    \"L6\",\n    \"L1\",\n    \"CN\",\n    \"L4\",\n    \"L5\",\n    \"R8\",\n    \"L8\",\n    \"SJIS\",\n    \"866\",\n    \"L2\",\n    \"ISO-IR-6\",\n    \"CP866\",\n    \"C99\",\n    \"ISO-IR-166\",\n    \"EUCCN\",\n    \"LATIN6\",\n    \"CP154\",\n    \"LATIN1\",\n    \"EUC-CN\",\n    \"CYRILLIC\",\n    \"ISO646-CN\",\n    \"HZ\",\n    \"ISO-IR-14\",\n    \"CP1256\",\n    \"LATIN4\",\n    \"CP1251\",\n    \"ISO-IR-165\",\n    \"LATIN5\",\n    \"862\",\n    \"ISO-IR-126\",\n    \"ISO-IR-144\",\n    \"CP819\",\n    \"LATIN8\",\n    \"CP1254\",\n    \"ISO-IR-58\",\n    \"CP949\",\n    \"CP1255\",\n    \"CP862\",\n    \"ISO-IR-148\",\n    \"L3\",\n    \"LATIN-9\",\n    \"CHINESE\",\n    \"ISO-IR-149\",\n    \"ISO-IR-159\",\n    \"ISO-IR-226\",\n    \"CP1258\",\n    \"PT154\",\n    \"LATIN2\",\n    \"ISO8859-6\",\n    \"ISO-IR-199\",\n    \"ISO8859-1\",\n    \"ISO-CELTIC\",\n    \"ISO-8859-6\",\n    \"ISO_8859-6\",\n    \"ISO8859-16\",\n    \"ISO-8859-1\",\n    \"ISO_8859-1\",\n    \"ISO8859-11\",\n    \"ISO-8859-16\",\n    \"ISO_8859-16\",\n    \"CP1252\",\n    \"ISO-8859-11\",\n    \"ISO_8859-11\",\n    \"ISO8859-4\",\n    \"CP1361\",\n    \"ISO_8859-16:2001\",\n    \"CP1131\",\n    \"ISO8859-5\",\n    \"ISO-8859-4\",\n    \"ISO_8859-4\",\n    \"ISO8859-14\",\n    \"CP936\",\n    \"ISO-8859-5\",\n    \"ISO_8859-5\",\n    \"ISO8859-15\",\n    \"MAC\",\n    \"ISO-8859-14\",\n    \"ISO_8859-14\",\n    \"ISO8859-8\",\n    \"ISO-IR-101\",\n    \"ISO-8859-15\",\n    \"ISO_8859-15\",\n    \"ISO8859-9\",\n    \"ISO-8859-8\",\n    \"ISO_8859-8\",\n    \"ISO-8859-9\",\n    \"ISO_8859-9\",\n    \"ISO_8859-14:1998\",\n    \"ISO_8859-15:1998\",\n    \"RK1048\",\n    \"ELOT_928\",\n    \"ISO8859-2\",\n    \"IBM866\",\n    \"L7\",\n    \"US\",\n    \"ISO-8859-2\",\n    \"ISO_8859-2\",\n    \"X0212\",\n    \"CHAR\",\n    \"PTCP154\",\n    \"ISO-IR-109\",\n    \"ISO-IR-138\",\n    \"UHC\",\n    \"ASCII\",\n    \"MS-CYRL\",\n    \"L10\",\n    \"VISCII\",\n    \"CP932\",\n    \"BIG5\",\n    \"TCVN\",\n    \"CP50221\",\n    \"BIG-5\",\n    \"MS-EE\",\n    \"850\",\n    \"UCS-4\",\n    \"CSASCII\",\n    \"IBM819\",\n    \"CSVISCII\",\n    \"GB2312\",\n    \"X0201\",\n    \"CSBIG5\",\n    \"CN-BIG5\",\n    \"KOI8-R\",\n    \"EUCKR\",\n    \"IBM862\",\n    \"CSPTCP154\",\n    \"CSUCS4\",\n    \"ISO646-US\",\n    \"CP874\",\n    \"EUC-KR\",\n    \"VISCII1.1-1\",\n    \"ISO_646.IRV:1991\",\n    \"MACCYRILLIC\",\n    \"CSKOI8R\",\n    \"CP850\",\n    \"ISO-IR-110\",\n    \"CP950\",\n    \"ISO-2022-CN\",\n    \"CN-GB-ISOIR165\",\n    \"CYRILLIC-ASIAN\",\n    \"UCS-2\",\n    \"LATIN10\",\n    \"X0208\",\n    \"LATIN3\",\n    \"CSISO2022CN\",\n    \"ISO_8859-10:1992\",\n    \"UCS-4LE\",\n    \"CP1250\",\n    \"CSISOLATIN6\",\n    \"ISO-IR-179\",\n    \"MS936\",\n    \"CSISOLATIN1\",\n    \"TIS620\",\n    \"CP1253\",\n    \"ISO-2022-CN-EXT\",\n    \"TIS-620\",\n    \"UCS-2LE\",\n    \"KOI8-T\",\n    \"CSISOLATINCYRILLIC\",\n    \"CSISOLATIN4\",\n    \"CSISOLATIN5\",\n    \"UNICODE-1-1\",\n    \"GREEK8\",\n    \"UCS-4-INTERNAL\",\n    \"CSUNICODE11\",\n    \"CSUNICODE\",\n    \"TIS620.2529-1\",\n    \"NEXTSTEP\",\n    \"GEORGIAN-PS\",\n    \"ISO8859-10\",\n    \"ISO8859-3\",\n    \"UCS-2-INTERNAL\",\n    \"ISO-8859-10\",\n    \"ISO_8859-10\",\n    \"ISO-8859-3\",\n    \"ISO_8859-3\",\n    \"ISO8859-13\",\n    \"CSISOLATIN2\",\n    \"GB_1988-80\",\n    \"ISO-8859-13\",\n    \"ISO_8859-13\",\n    \"CP1133\",\n    \"MS-ANSI\",\n    \"ISO-IR-100\",\n    \"KSC_5601\",\n    \"MACINTOSH\",\n    \"CN-GB\",\n    \"CSIBM866\",\n    \"ISO-10646-UCS-4\",\n    \"ISO_8859-4:1988\",\n    \"ISO_8859-5:1988\",\n    \"UTF-16\",\n    \"KZ-1048\",\n    \"ROMAN8\",\n    \"ISO_8859-8:1988\",\n    \"UNICODELITTLE\",\n    \"ISO_8859-9:1989\",\n    \"JP\",\n    \"ISO-10646-UCS-2\",\n    \"MULELAO-1\",\n    \"CSKZ1048\",\n    \"ISO-IR-203\",\n    \"IBM850\",\n    \"TIS620-0\",\n    \"ECMA-114\",\n    \"KS_C_5601-1989\",\n    \"GBK\",\n    \"UTF-8\",\n    \"ARMSCII-8\",\n    \"US-ASCII\",\n    \"ECMA-118\",\n    \"CSGB2312\",\n    \"LATIN7\",\n    \"KOREAN\",\n    \"ISO-IR-57\",\n    \"MS-HEBR\",\n    \"CSISO14JISC6220RO\",\n    \"ISO-IR-87\",\n    \"ISO-IR-157\",\n    \"UTF-16LE\",\n    \"UCS-4BE\",\n    \"CP1257\",\n    \"ANSI_X3.4-1986\",\n    \"CSEUCKR\",\n    \"ISO-2022-KR\",\n    \"GB_2312-80\",\n    \"ISO-IR-127\",\n    \"MACTHAI\",\n    \"EUCTW\",\n    \"EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE\",\n    \"CSISO2022KR\",\n    \"UCS-2BE\",\n    \"EUC-TW\",\n    \"ANSI_X3.4-1968\",\n    \"GREEK\",\n    \"MACICELAND\",\n    \"GB18030\",\n    \"ISO_8859-3:1988\",\n    \"CSISOLATINARABIC\",\n    \"GEORGIAN-ACADEMY\",\n    \"HP-ROMAN8\",\n    \"TIS620.2533-1\",\n    \"UNICODEBIG\",\n    \"TCVN5712-1\",\n    \"ISO8859-7\",\n    \"CSISO57GB1988\",\n    \"MACCENTRALEUROPE\",\n    \"CSISOLATINGREEK\",\n    \"CSISOLATIN3\",\n    \"ISO-8859-7\",\n    \"ISO_8859-7\",\n    \"UNICODE-1-1-UTF-7\",\n    \"CP367\",\n    \"HZ-GB-2312\",\n    \"EUCJP\",\n    \"CSUNICODE11UTF7\",\n    \"MACROMAN\",\n    \"TCVN-5712\",\n    \"EUC-JP\",\n    \"ISO646-JP\",\n    \"BIG5HKSCS\",\n    \"CSISO58GB231280\",\n    \"WINDOWS-1256\",\n    \"WINDOWS-1251\",\n    \"BIG5-HKSCS\",\n    \"WCHAR_T\",\n    \"ISO_8859-6:1987\",\n    \"ISO_8859-1:1987\",\n    \"WINDOWS-1254\",\n    \"WINDOWS-1255\",\n    \"WINDOWS-1258\",\n    \"UTF-32\",\n    \"CSISOLATINHEBREW\",\n    \"CSHPROMAN8\",\n    \"CSISO159JISX02121990\",\n    \"WINDOWS-1252\",\n    \"STRK1048-2002\",\n    \"ISO_8859-2:1987\",\n    \"ARABIC\",\n    \"CSMACINTOSH\",\n    \"KS_C_5601-1987\",\n    \"JIS_C6220-1969-RO\",\n    \"JIS_C6226-1983\",\n    \"UTF-32LE\",\n    \"TIS620.2533-0\",\n    \"IBM-CP1133\",\n    \"SHIFT-JIS\",\n    \"SHIFT_JIS\",\n    \"CSPC862LATINHEBREW\",\n    \"BIGFIVE\",\n    \"CSKSC56011987\",\n    \"MACCROATIAN\",\n    \"BIG-FIVE\",\n    \"WINDOWS-936\",\n    \"UTF-16BE\",\n    \"KOI8-U\",\n    \"KOI8-RU\",\n    \"WINDOWS-1250\",\n    \"MS-GREEK\",\n    \"WINDOWS-1253\",\n    \"MACGREEK\",\n    \"CSPC850MULTILINGUAL\",\n    \"ISO_8859-7:2003\",\n    \"JIS0208\",\n    \"IBM367\",\n    \"ISO-2022-JP-1\",\n    \"ISO-2022-JP-MS\",\n    \"JIS_X0212\",\n    \"CSEUCTW\",\n    \"CSSHIFTJIS\",\n    \"HEBREW\",\n    \"ISO-2022-JP-2\",\n    \"ASMO-708\",\n    \"CSISO2022JP2\",\n    \"JIS_X0201\",\n    \"WINDOWS-874\",\n    \"WINDOWS-1257\",\n    \"ISO-2022-JP\",\n    \"ISO_8859-7:1987\",\n    \"CSISO87JISX0208\",\n    \"CSISO2022JP\",\n    \"MACARABIC\",\n    \"JIS_X0208\",\n    \"JISX0201-1976\",\n    \"UTF-7\",\n    \"UTF-32BE\",\n    \"BIG5-HKSCS:2001\",\n    \"JIS_X0212-1990\",\n    \"JIS_X0212.1990-0\",\n    \"BIG5-HKSCS:2004\",\n    \"MACTURKISH\",\n    \"BIG5-HKSCS:2008\",\n    \"BIG5-HKSCS:1999\",\n    \"MS-TURK\",\n    \"UCS-4-SWAPPED\",\n    \"MACUKRAINE\",\n    \"UCS-2-SWAPPED\",\n    \"TCVN5712-1:1993\",\n    \"JIS_X0208-1990\",\n    \"JIS_X0208-1983\",\n    \"MACHEBREW\",\n    \"MS-ARAB\",\n    \"JAVA\",\n    \"MACROMANIA\",\n    \"MS_KANJI\",\n    \"WINBALTRIM\",\n    \"CSEUCPKDFMTJAPANESE\",\n    \"JOHAB\",\n    \"CSHALFWIDTHKATAKANA\"\n  };\n#define stringpool ((const char *) &stringpool_contents)\n\nstatic const struct alias aliases[] =\n  {\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 134 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str15, ei_iso8859_10},\n    {-1},\n#line 60 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str17, ei_iso8859_1},\n    {-1}, {-1},\n#line 288 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str20, ei_iso646_cn},\n    {-1}, {-1}, {-1}, {-1},\n#line 84 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str25, ei_iso8859_4},\n    {-1},\n#line 126 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str27, ei_iso8859_9},\n    {-1}, {-1},\n#line 227 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str30, ei_hp_roman8},\n    {-1}, {-1},\n#line 151 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str33, ei_iso8859_14},\n#line 308 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str34, ei_sjis},\n    {-1},\n#line 207 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str36, ei_cp866},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 68 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str43, ei_iso8859_2},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 16 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str51, ei_ascii},\n    {-1}, {-1},\n#line 205 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str54, ei_cp866},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 51 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str64, ei_c99},\n#line 252 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str65, ei_tis620},\n#line 320 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str66, ei_euc_cn},\n#line 133 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str67, ei_iso8859_10},\n    {-1}, {-1},\n#line 236 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str70, ei_pt154},\n#line 59 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str71, ei_iso8859_1},\n#line 319 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str72, ei_euc_cn},\n    {-1},\n#line 91 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str74, ei_iso8859_5},\n    {-1},\n#line 286 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str76, ei_iso646_cn},\n    {-1},\n#line 332 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str78, ei_hz},\n#line 264 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str79, ei_iso646_jp},\n    {-1}, {-1}, {-1}, {-1},\n#line 189 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str84, ei_cp1256},\n    {-1}, {-1},\n#line 83 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str87, ei_iso8859_4},\n#line 174 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str88, ei_cp1251},\n#line 294 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str89, ei_isoir165},\n    {-1},\n#line 125 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str91, ei_iso8859_9},\n#line 203 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str92, ei_cp862},\n#line 107 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str93, ei_iso8859_7},\n    {-1},\n#line 90 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str95, ei_iso8859_5},\n#line 57 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str96, ei_iso8859_1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 150 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str103, ei_iso8859_14},\n#line 183 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str104, ei_cp1254},\n#line 291 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str105, ei_gb2312},\n#line 353 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str106, ei_cp949},\n    {-1},\n#line 186 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str108, ei_cp1255},\n    {-1},\n#line 201 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str110, ei_cp862},\n#line 124 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str111, ei_iso8859_9},\n#line 76 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str112, ei_iso8859_3},\n#line 158 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str113, ei_iso8859_15},\n#line 293 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str114, ei_gb2312},\n#line 299 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str115, ei_ksc5601},\n    {-1},\n#line 283 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str117, ei_jisx0212},\n    {-1},\n#line 163 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str119, ei_iso8859_16},\n#line 195 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str120, ei_cp1258},\n#line 234 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str121, ei_pt154},\n    {-1},\n#line 67 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str123, ei_iso8859_2},\n#line 102 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str124, ei_iso8859_6},\n#line 149 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str125, ei_iso8859_14},\n    {-1}, {-1},\n#line 62 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str128, ei_iso8859_1},\n#line 152 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str129, ei_iso8859_14},\n#line 94 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str130, ei_iso8859_6},\n#line 95 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str131, ei_iso8859_6},\n#line 166 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str132, ei_iso8859_16},\n    {-1},\n#line 53 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str134, ei_iso8859_1},\n#line 54 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str135, ei_iso8859_1},\n#line 139 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str136, ei_iso8859_11},\n    {-1},\n#line 160 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str138, ei_iso8859_16},\n#line 161 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str139, ei_iso8859_16},\n#line 177 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str140, ei_cp1252},\n    {-1},\n#line 137 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str142, ei_iso8859_11},\n#line 138 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str143, ei_iso8859_11},\n#line 86 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str144, ei_iso8859_4},\n#line 356 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str145, ei_johab},\n#line 162 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str146, ei_iso8859_16},\n#line 209 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str147, ei_cp1131},\n#line 93 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str148, ei_iso8859_5},\n    {-1},\n#line 79 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str150, ei_iso8859_4},\n#line 80 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str151, ei_iso8859_4},\n#line 153 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str152, ei_iso8859_14},\n#line 325 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str153, ei_cp936},\n#line 87 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str154, ei_iso8859_5},\n#line 88 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str155, ei_iso8859_5},\n#line 159 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str156, ei_iso8859_15},\n#line 212 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str157, ei_mac_roman},\n#line 146 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str158, ei_iso8859_14},\n#line 147 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str159, ei_iso8859_14},\n#line 120 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str160, ei_iso8859_8},\n#line 66 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str161, ei_iso8859_2},\n#line 154 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str162, ei_iso8859_15},\n#line 155 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str163, ei_iso8859_15},\n#line 128 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str164, ei_iso8859_9},\n    {-1},\n#line 114 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str166, ei_iso8859_8},\n#line 115 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str167, ei_iso8859_8},\n    {-1}, {-1},\n#line 121 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str170, ei_iso8859_9},\n#line 122 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str171, ei_iso8859_9},\n#line 148 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str172, ei_iso8859_14},\n    {-1},\n#line 156 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str174, ei_iso8859_15},\n    {-1},\n#line 239 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str176, ei_rk1048},\n    {-1}, {-1},\n#line 109 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str179, ei_iso8859_7},\n#line 70 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str180, ei_iso8859_2},\n    {-1},\n#line 206 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str182, ei_cp866},\n#line 144 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str183, ei_iso8859_13},\n#line 21 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str184, ei_ascii},\n    {-1},\n#line 63 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str186, ei_iso8859_2},\n#line 64 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str187, ei_iso8859_2},\n    {-1}, {-1},\n#line 282 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str190, ei_jisx0212},\n    {-1}, {-1},\n#line 359 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str193, ei_local_char},\n    {-1}, {-1},\n#line 235 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str196, ei_pt154},\n#line 74 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str197, ei_iso8859_3},\n#line 117 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str198, ei_iso8859_8},\n#line 354 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str199, ei_cp949},\n    {-1}, {-1},\n#line 13 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str202, ei_ascii},\n    {-1},\n#line 176 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str204, ei_cp1251},\n#line 165 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str205, ei_iso8859_16},\n#line 255 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str206, ei_viscii},\n    {-1}, {-1},\n#line 311 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str209, ei_cp932},\n#line 337 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str210, ei_ces_big5},\n#line 258 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str211, ei_tcvn},\n#line 318 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str212, ei_iso2022_jpms},\n    {-1}, {-1}, {-1},\n#line 338 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str216, ei_ces_big5},\n#line 173 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str217, ei_cp1250},\n    {-1}, {-1},\n#line 199 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str220, ei_cp850},\n    {-1},\n#line 33 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str222, ei_ucs4},\n#line 22 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str223, ei_ascii},\n#line 58 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str224, ei_iso8859_1},\n#line 257 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str225, ei_viscii},\n    {-1},\n#line 321 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str227, ei_euc_cn},\n#line 269 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str228, ei_jisx0201},\n#line 342 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str229, ei_ces_big5},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 341 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str235, ei_ces_big5},\n#line 167 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str236, ei_koi8_r},\n#line 351 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str237, ei_euc_kr},\n#line 202 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str238, ei_cp862},\n#line 238 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str239, ei_pt154},\n#line 35 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str240, ei_ucs4},\n#line 14 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str241, ei_ascii},\n#line 253 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str242, ei_cp874},\n#line 350 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str243, ei_euc_kr},\n#line 256 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str244, ei_viscii},\n    {-1},\n#line 15 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str246, ei_ascii},\n    {-1},\n#line 218 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str248, ei_mac_cyrillic},\n#line 168 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str249, ei_koi8_r},\n#line 197 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str250, ei_cp850},\n#line 82 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str251, ei_iso8859_4},\n#line 343 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str252, ei_cp950},\n    {-1},\n#line 329 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str254, ei_iso2022_cn},\n#line 295 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str255, ei_isoir165},\n    {-1},\n#line 237 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str257, ei_pt154},\n#line 24 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str258, ei_ucs2},\n#line 164 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str259, ei_iso8859_16},\n#line 275 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str260, ei_jisx0208},\n#line 75 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str261, ei_iso8859_3},\n    {-1},\n#line 330 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str263, ei_iso2022_cn},\n#line 131 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str264, ei_iso8859_10},\n    {-1}, {-1},\n#line 37 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str267, ei_ucs4le},\n#line 171 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str268, ei_cp1250},\n    {-1}, {-1},\n#line 135 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str271, ei_iso8859_10},\n    {-1},\n#line 142 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str273, ei_iso8859_13},\n#line 326 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str274, ei_cp936},\n#line 61 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str275, ei_iso8859_1},\n#line 247 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str276, ei_tis620},\n    {-1},\n#line 180 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str278, ei_cp1253},\n    {-1}, {-1},\n#line 331 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str281, ei_iso2022_cn_ext},\n#line 246 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str282, ei_tis620},\n    {-1}, {-1},\n#line 31 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str285, ei_ucs2le},\n#line 233 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str286, ei_koi8_t},\n    {-1}, {-1}, {-1},\n#line 92 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str290, ei_iso8859_5},\n#line 85 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str291, ei_iso8859_4},\n    {-1}, {-1}, {-1},\n#line 127 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str295, ei_iso8859_9},\n#line 29 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str296, ei_ucs2be},\n    {-1}, {-1}, {-1}, {-1},\n#line 110 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str301, ei_iso8859_7},\n#line 49 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str302, ei_ucs4internal},\n    {-1},\n#line 30 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str304, ei_ucs2be},\n    {-1},\n#line 26 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str306, ei_ucs2},\n#line 249 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str307, ei_tis620},\n    {-1}, {-1}, {-1},\n#line 229 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str311, ei_nextstep},\n#line 232 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str312, ei_georgian_ps},\n    {-1}, {-1}, {-1},\n#line 136 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str316, ei_iso8859_10},\n    {-1},\n#line 78 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str318, ei_iso8859_3},\n    {-1},\n#line 47 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str320, ei_ucs2internal},\n    {-1},\n#line 129 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str322, ei_iso8859_10},\n#line 130 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str323, ei_iso8859_10},\n#line 71 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str324, ei_iso8859_3},\n#line 72 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str325, ei_iso8859_3},\n#line 145 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str326, ei_iso8859_13},\n#line 69 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str327, ei_iso8859_2},\n    {-1},\n#line 285 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str329, ei_iso646_cn},\n    {-1}, {-1},\n#line 140 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str332, ei_iso8859_13},\n#line 141 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str333, ei_iso8859_13},\n    {-1}, {-1}, {-1},\n#line 244 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str337, ei_cp1133},\n    {-1},\n#line 179 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str339, ei_cp1252},\n    {-1},\n#line 56 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str341, ei_iso8859_1},\n    {-1}, {-1},\n#line 296 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str344, ei_ksc5601},\n    {-1}, {-1}, {-1}, {-1},\n#line 211 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str349, ei_mac_roman},\n    {-1}, {-1},\n#line 322 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str352, ei_euc_cn},\n    {-1},\n#line 208 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str354, ei_cp866},\n#line 34 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str355, ei_ucs4},\n    {-1},\n#line 81 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str357, ei_iso8859_4},\n    {-1},\n#line 89 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str359, ei_iso8859_5},\n    {-1},\n#line 38 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str361, ei_utf16},\n    {-1},\n#line 241 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str363, ei_rk1048},\n#line 226 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str364, ei_hp_roman8},\n#line 116 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str365, ei_iso8859_8},\n#line 32 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str366, ei_ucs2le},\n    {-1}, {-1},\n#line 123 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str369, ei_iso8859_9},\n    {-1}, {-1},\n#line 265 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str372, ei_iso646_jp},\n#line 25 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str373, ei_ucs2},\n    {-1},\n#line 243 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str375, ei_mulelao},\n#line 242 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str376, ei_rk1048},\n#line 157 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str377, ei_iso8859_15},\n#line 198 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str378, ei_cp850},\n    {-1},\n#line 248 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str380, ei_tis620},\n    {-1},\n#line 98 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str382, ei_iso8859_6},\n    {-1}, {-1}, {-1},\n#line 298 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str386, ei_ksc5601},\n    {-1},\n#line 324 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str388, ei_ces_gbk},\n#line 23 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str389, ei_utf8},\n    {-1},\n#line 230 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str391, ei_armscii_8},\n#line 12 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str392, ei_ascii},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 108 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str398, ei_iso8859_7},\n#line 323 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str399, ei_euc_cn},\n    {-1}, {-1}, {-1},\n#line 143 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str403, ei_iso8859_13},\n#line 301 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str404, ei_ksc5601},\n#line 287 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str405, ei_iso646_cn},\n    {-1}, {-1},\n#line 188 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str408, ei_cp1255},\n#line 266 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str409, ei_iso646_jp},\n    {-1},\n#line 276 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str411, ei_jisx0208},\n    {-1},\n#line 132 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str413, ei_iso8859_10},\n    {-1}, {-1},\n#line 40 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str416, ei_utf16le},\n    {-1},\n#line 36 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str418, ei_ucs4be},\n    {-1},\n#line 192 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str420, ei_cp1257},\n#line 18 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str421, ei_ascii},\n    {-1}, {-1},\n#line 352 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str424, ei_euc_kr},\n#line 357 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str425, ei_iso2022_kr},\n#line 290 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str426, ei_gb2312},\n    {-1}, {-1},\n#line 97 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str429, ei_iso8859_6},\n#line 224 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str430, ei_mac_thai},\n#line 335 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str431, ei_euc_tw},\n    {-1},\n#line 304 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str433, ei_euc_jp},\n#line 358 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str434, ei_iso2022_kr},\n    {-1},\n#line 27 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str436, ei_ucs2be},\n#line 334 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str437, ei_euc_tw},\n    {-1},\n#line 17 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str439, ei_ascii},\n#line 111 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str440, ei_iso8859_7},\n    {-1},\n#line 215 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str442, ei_mac_iceland},\n#line 328 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str443, ei_gb18030},\n#line 73 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str444, ei_iso8859_3},\n#line 101 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str445, ei_iso8859_6},\n#line 231 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str446, ei_georgian_academy},\n    {-1},\n#line 225 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str448, ei_hp_roman8},\n    {-1}, {-1}, {-1}, {-1},\n#line 251 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str453, ei_tis620},\n    {-1},\n#line 28 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str455, ei_ucs2be},\n    {-1}, {-1}, {-1},\n#line 260 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str459, ei_tcvn},\n#line 113 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str460, ei_iso8859_7},\n#line 289 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str461, ei_iso646_cn},\n    {-1},\n#line 214 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str463, ei_mac_centraleurope},\n#line 112 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str464, ei_iso8859_7},\n#line 77 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str465, ei_iso8859_3},\n#line 103 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str466, ei_iso8859_7},\n#line 104 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str467, ei_iso8859_7},\n#line 45 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str468, ei_utf7},\n#line 19 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str469, ei_ascii},\n#line 333 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str470, ei_hz},\n    {-1}, {-1},\n#line 303 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str473, ei_euc_jp},\n#line 46 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str474, ei_utf7},\n    {-1},\n#line 210 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str476, ei_mac_roman},\n#line 259 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str477, ei_tcvn},\n    {-1},\n#line 302 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str479, ei_euc_jp},\n    {-1}, {-1}, {-1},\n#line 263 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str483, ei_iso646_jp},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 348 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str489, ei_big5hkscs2008},\n#line 292 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str490, ei_gb2312},\n    {-1},\n#line 190 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str492, ei_cp1256},\n    {-1},\n#line 175 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str494, ei_cp1251},\n#line 347 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str495, ei_big5hkscs2008},\n#line 360 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str496, ei_local_wchar_t},\n#line 96 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str497, ei_iso8859_6},\n    {-1},\n#line 55 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str499, ei_iso8859_1},\n    {-1}, {-1},\n#line 184 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str502, ei_cp1254},\n    {-1},\n#line 187 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str504, ei_cp1255},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 196 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str510, ei_cp1258},\n    {-1},\n#line 41 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str512, ei_utf32},\n    {-1}, {-1}, {-1},\n#line 119 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str516, ei_iso8859_8},\n#line 228 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str517, ei_hp_roman8},\n    {-1},\n#line 284 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str519, ei_jisx0212},\n#line 178 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str520, ei_cp1252},\n    {-1},\n#line 240 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str522, ei_rk1048},\n    {-1}, {-1},\n#line 65 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str525, ei_iso8859_2},\n    {-1}, {-1}, {-1},\n#line 100 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str529, ei_iso8859_6},\n#line 213 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str530, ei_mac_roman},\n    {-1}, {-1}, {-1},\n#line 297 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str534, ei_ksc5601},\n    {-1},\n#line 262 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str536, ei_iso646_jp},\n#line 277 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str537, ei_jisx0208},\n    {-1},\n#line 43 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str539, ei_utf32le},\n    {-1}, {-1}, {-1},\n#line 250 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str543, ei_tis620},\n    {-1}, {-1},\n#line 245 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str546, ei_cp1133},\n#line 307 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str547, ei_sjis},\n#line 306 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str548, ei_sjis},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 204 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str555, ei_cp862},\n    {-1},\n#line 340 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str557, ei_ces_big5},\n    {-1}, {-1},\n#line 300 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str560, ei_ksc5601},\n    {-1},\n#line 216 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str562, ei_mac_croatian},\n#line 339 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str563, ei_ces_big5},\n    {-1}, {-1},\n#line 327 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str566, ei_cp936},\n#line 39 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str567, ei_utf16be},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 169 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str574, ei_koi8_u},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 170 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str580, ei_koi8_ru},\n    {-1}, {-1}, {-1},\n#line 172 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str584, ei_cp1250},\n#line 182 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str585, ei_cp1253},\n    {-1}, {-1}, {-1},\n#line 181 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str589, ei_cp1253},\n    {-1},\n#line 220 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str591, ei_mac_greek},\n#line 200 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str592, ei_cp850},\n    {-1},\n#line 106 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str594, ei_iso8859_7},\n    {-1},\n#line 274 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str596, ei_jisx0208},\n#line 20 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str597, ei_ascii},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1},\n#line 314 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str608, ei_iso2022_jp1},\n    {-1},\n#line 317 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str610, ei_iso2022_jpms},\n    {-1}, {-1},\n#line 279 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str613, ei_jisx0212},\n    {-1}, {-1}, {-1}, {-1},\n#line 336 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str618, ei_euc_tw},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 310 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str624, ei_sjis},\n#line 118 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str625, ei_iso8859_8},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 315 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str634, ei_iso2022_jp2},\n#line 99 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str635, ei_iso8859_6},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 316 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str642, ei_iso2022_jp2},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 267 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str651, ei_jisx0201},\n    {-1}, {-1}, {-1},\n#line 254 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str655, ei_cp874},\n    {-1}, {-1}, {-1}, {-1},\n#line 193 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str660, ei_cp1257},\n#line 312 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str661, ei_iso2022_jp},\n    {-1}, {-1}, {-1},\n#line 105 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str665, ei_iso8859_7},\n#line 278 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str666, ei_jisx0208},\n    {-1}, {-1}, {-1},\n#line 313 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str670, ei_iso2022_jp},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 223 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str680, ei_mac_arabic},\n    {-1}, {-1},\n#line 271 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str683, ei_jisx0208},\n#line 268 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str684, ei_jisx0201},\n    {-1}, {-1}, {-1}, {-1},\n#line 44 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str689, ei_utf7},\n#line 42 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str690, ei_utf32be},\n    {-1},\n#line 345 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str692, ei_big5hkscs2001},\n    {-1},\n#line 281 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str694, ei_jisx0212},\n    {-1}, {-1},\n#line 280 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str697, ei_jisx0212},\n    {-1}, {-1},\n#line 346 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str700, ei_big5hkscs2004},\n    {-1},\n#line 221 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str702, ei_mac_turkish},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 349 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str708, ei_big5hkscs2008},\n    {-1},\n#line 344 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str710, ei_big5hkscs1999},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 185 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str725, ei_cp1254},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 50 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str732, ei_ucs4swapped},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 219 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str749, ei_mac_ukraine},\n#line 48 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str750, ei_ucs2swapped},\n    {-1},\n#line 261 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str752, ei_tcvn},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1},\n#line 273 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str774, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1},\n#line 272 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str779, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 222 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str796, ei_mac_hebrew},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 191 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str803, ei_cp1256},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 52 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str811, ei_java},\n    {-1},\n#line 217 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str813, ei_mac_romania},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1},\n#line 309 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str827, ei_sjis},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 194 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str837, ei_cp1257},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1},\n#line 305 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str866, ei_euc_jp},\n    {-1}, {-1},\n#line 355 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str869, ei_johab},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 270 \"lib/aliases.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str921, ei_jisx0201}\n  };\n\n#ifdef __GNUC__\n__inline\n#if defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__\n__attribute__ ((__gnu_inline__))\n#endif\n#endif\nconst struct alias *\naliases_lookup (register const char *str, register unsigned int len)\n{\n  if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)\n    {\n      register int key = aliases_hash (str, len);\n\n      if (key <= MAX_HASH_VALUE && key >= 0)\n        {\n          register int o = aliases[key].name;\n          if (o >= 0)\n            {\n              register const char *s = o + stringpool;\n\n              if (*str == *s && !strcmp (str + 1, s + 1))\n                return &aliases[key];\n            }\n        }\n    }\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases2.h",
    "content": "/*\n * Copyright (C) 1999-2003, 2008 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n#ifdef USE_AIX\n# if defined _AIX\n#  include \"aliases_aix_sysaix.h\"\n# else\n#  include \"aliases_aix.h\"\n# endif\n#endif\n#ifdef USE_OSF1\n# if defined __osf__\n#  include \"aliases_osf1_sysosf1.h\"\n# else\n#  include \"aliases_osf1.h\"\n# endif\n#endif\n#ifdef USE_DOS\n# include \"aliases_dos.h\"\n#endif\n#ifdef USE_EXTRA\n# include \"aliases_extra.h\"\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_aix.h",
    "content": "  S(aix_0, \"CP856\", ei_cp856 )\n  S(aix_1, \"CP922\", ei_cp922 )\n  S(aix_2, \"CP943\", ei_cp943 )\n  S(aix_3, \"CP1046\", ei_cp1046 )\n  S(aix_4, \"CP1124\", ei_cp1124 )\n  S(aix_5, \"CP1129\", ei_cp1129 )\n  S(aix_6, \"CP1161\", ei_cp1161 )\n  S(aix_7, \"IBM1161\", ei_cp1161 )\n  S(aix_8, \"IBM-1161\", ei_cp1161 )\n  S(aix_9, \"CSIBM1161\", ei_cp1161 )\n  S(aix_10, \"CP1162\", ei_cp1162 )\n  S(aix_11, \"IBM1162\", ei_cp1162 )\n  S(aix_12, \"IBM-1162\", ei_cp1162 )\n  S(aix_13, \"CSIBM1162\", ei_cp1162 )\n  S(aix_14, \"CP1163\", ei_cp1163 )\n  S(aix_15, \"IBM1163\", ei_cp1163 )\n  S(aix_16, \"IBM-1163\", ei_cp1163 )\n  S(aix_17, \"CSIBM1163\", ei_cp1163 )\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_aix_sysaix.h",
    "content": "  S(aix_0, \"CP856\", ei_cp856 )\n  S(aix_1, \"IBM-856\", ei_cp856 )\n  S(aix_2, \"CP922\", ei_cp922 )\n  S(aix_3, \"IBM-922\", ei_cp922 )\n  S(aix_4, \"CP943\", ei_cp943 )\n  S(aix_5, \"IBM-943\", ei_cp943 )\n  S(aix_6, \"CP1046\", ei_cp1046 )\n  S(aix_7, \"IBM-1046\", ei_cp1046 )\n  S(aix_8, \"CP1124\", ei_cp1124 )\n  S(aix_9, \"IBM-1124\", ei_cp1124 )\n  S(aix_10, \"CP1129\", ei_cp1129 )\n  S(aix_11, \"IBM-1129\", ei_cp1129 )\n  S(aix_12, \"CP1161\", ei_cp1161 )\n  S(aix_13, \"IBM1161\", ei_cp1161 )\n  S(aix_14, \"IBM-1161\", ei_cp1161 )\n  S(aix_15, \"CSIBM1161\", ei_cp1161 )\n  S(aix_16, \"CP1162\", ei_cp1162 )\n  S(aix_17, \"IBM1162\", ei_cp1162 )\n  S(aix_18, \"IBM-1162\", ei_cp1162 )\n  S(aix_19, \"CSIBM1162\", ei_cp1162 )\n  S(aix_20, \"CP1163\", ei_cp1163 )\n  S(aix_21, \"IBM1163\", ei_cp1163 )\n  S(aix_22, \"IBM-1163\", ei_cp1163 )\n  S(aix_23, \"CSIBM1163\", ei_cp1163 )\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_dos.h",
    "content": "  S(dos_0, \"CP437\", ei_cp437 )\n  S(dos_1, \"IBM437\", ei_cp437 )\n  S(dos_2, \"437\", ei_cp437 )\n  S(dos_3, \"CSPC8CODEPAGE437\", ei_cp437 )\n  S(dos_4, \"CP737\", ei_cp737 )\n  S(dos_5, \"CP775\", ei_cp775 )\n  S(dos_6, \"IBM775\", ei_cp775 )\n  S(dos_7, \"CSPC775BALTIC\", ei_cp775 )\n  S(dos_8, \"CP852\", ei_cp852 )\n  S(dos_9, \"IBM852\", ei_cp852 )\n  S(dos_10, \"852\", ei_cp852 )\n  S(dos_11, \"CSPCP852\", ei_cp852 )\n  S(dos_12, \"CP853\", ei_cp853 )\n  S(dos_13, \"CP855\", ei_cp855 )\n  S(dos_14, \"IBM855\", ei_cp855 )\n  S(dos_15, \"855\", ei_cp855 )\n  S(dos_16, \"CSIBM855\", ei_cp855 )\n  S(dos_17, \"CP857\", ei_cp857 )\n  S(dos_18, \"IBM857\", ei_cp857 )\n  S(dos_19, \"857\", ei_cp857 )\n  S(dos_20, \"CSIBM857\", ei_cp857 )\n  S(dos_21, \"CP858\", ei_cp858 )\n  S(dos_22, \"CP860\", ei_cp860 )\n  S(dos_23, \"IBM860\", ei_cp860 )\n  S(dos_24, \"860\", ei_cp860 )\n  S(dos_25, \"CSIBM860\", ei_cp860 )\n  S(dos_26, \"CP861\", ei_cp861 )\n  S(dos_27, \"IBM861\", ei_cp861 )\n  S(dos_28, \"861\", ei_cp861 )\n  S(dos_29, \"CP-IS\", ei_cp861 )\n  S(dos_30, \"CSIBM861\", ei_cp861 )\n  S(dos_31, \"CP863\", ei_cp863 )\n  S(dos_32, \"IBM863\", ei_cp863 )\n  S(dos_33, \"863\", ei_cp863 )\n  S(dos_34, \"CSIBM863\", ei_cp863 )\n  S(dos_35, \"CP864\", ei_cp864 )\n  S(dos_36, \"IBM864\", ei_cp864 )\n  S(dos_37, \"CSIBM864\", ei_cp864 )\n  S(dos_38, \"CP865\", ei_cp865 )\n  S(dos_39, \"IBM865\", ei_cp865 )\n  S(dos_40, \"865\", ei_cp865 )\n  S(dos_41, \"CSIBM865\", ei_cp865 )\n  S(dos_42, \"CP869\", ei_cp869 )\n  S(dos_43, \"IBM869\", ei_cp869 )\n  S(dos_44, \"869\", ei_cp869 )\n  S(dos_45, \"CP-GR\", ei_cp869 )\n  S(dos_46, \"CSIBM869\", ei_cp869 )\n  S(dos_47, \"CP1125\", ei_cp1125 )\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_extra.h",
    "content": "  S(extra_0, \"EUC-JISX0213\", ei_euc_jisx0213 )\n  S(extra_1, \"EUC-JIS-2004\", ei_euc_jisx0213 )\n  S(extra_2, \"SHIFT_JISX0213\", ei_shift_jisx0213 )\n  S(extra_3, \"SHIFT_JIS-2004\", ei_shift_jisx0213 )\n  S(extra_4, \"ISO-2022-JP-3\", ei_iso2022_jp3 )\n  S(extra_5, \"ISO-2022-JP-2004\", ei_iso2022_jp3 )\n  S(extra_6, \"BIG5-2003\", ei_big5_2003 )\n  S(extra_7, \"TDS565\", ei_tds565 )\n  S(extra_8, \"ISO-IR-230\", ei_tds565 )\n  S(extra_9, \"ATARIST\", ei_atarist )\n  S(extra_10, \"ATARI\", ei_atarist )\n  S(extra_11, \"RISCOS-LATIN1\", ei_riscos1 )\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_osf1.h",
    "content": "  S(osf1_0, \"DEC-KANJI\", ei_dec_kanji )\n  S(osf1_1, \"DEC-HANYU\", ei_dec_hanyu )\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_osf1_sysosf1.h",
    "content": "  S(osf1_0, \"DEC-KANJI\", ei_dec_kanji )\n  S(osf1_1, \"DECKANJI\", ei_dec_kanji )\n  S(osf1_2, \"DEC-HANYU\", ei_dec_hanyu )\n  S(osf1_3, \"DECHANYU\", ei_dec_hanyu )\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_sysaix.gperf",
    "content": "struct alias { int name; unsigned int encoding_index; };\n%struct-type\n%language=ANSI-C\n%define hash-function-name aliases_hash\n%define lookup-function-name aliases_lookup\n%7bit\n%readonly-tables\n%global-table\n%define word-array-name aliases\n%pic\n%%\nUS-ASCII, ei_ascii\nASCII, ei_ascii\nISO646-US, ei_ascii\nISO_646.IRV:1991, ei_ascii\nISO-IR-6, ei_ascii\nANSI_X3.4-1968, ei_ascii\nANSI_X3.4-1986, ei_ascii\nCP367, ei_ascii\nIBM367, ei_ascii\nUS, ei_ascii\nCSASCII, ei_ascii\nUTF-8, ei_utf8\nUCS-2, ei_ucs2\nISO-10646-UCS-2, ei_ucs2\nCSUNICODE, ei_ucs2\nUCS-2BE, ei_ucs2be\nUNICODEBIG, ei_ucs2be\nUNICODE-1-1, ei_ucs2be\nCSUNICODE11, ei_ucs2be\nUCS-2LE, ei_ucs2le\nUNICODELITTLE, ei_ucs2le\nUCS-4, ei_ucs4\nISO-10646-UCS-4, ei_ucs4\nCSUCS4, ei_ucs4\nUCS-4BE, ei_ucs4be\nUCS-4LE, ei_ucs4le\nUTF-16, ei_utf16\nUTF-16BE, ei_utf16be\nUTF-16LE, ei_utf16le\nUTF-32, ei_utf32\nUTF-32BE, ei_utf32be\nUTF-32LE, ei_utf32le\nUTF-7, ei_utf7\nUNICODE-1-1-UTF-7, ei_utf7\nCSUNICODE11UTF7, ei_utf7\nUCS-2-INTERNAL, ei_ucs2internal\nUCS-2-SWAPPED, ei_ucs2swapped\nUCS-4-INTERNAL, ei_ucs4internal\nUCS-4-SWAPPED, ei_ucs4swapped\nC99, ei_c99\nJAVA, ei_java\nISO-8859-1, ei_iso8859_1\nISO_8859-1, ei_iso8859_1\nISO_8859-1:1987, ei_iso8859_1\nISO-IR-100, ei_iso8859_1\nCP819, ei_iso8859_1\nIBM819, ei_iso8859_1\nLATIN1, ei_iso8859_1\nL1, ei_iso8859_1\nCSISOLATIN1, ei_iso8859_1\nISO8859-1, ei_iso8859_1\nISO-8859-2, ei_iso8859_2\nISO_8859-2, ei_iso8859_2\nISO_8859-2:1987, ei_iso8859_2\nISO-IR-101, ei_iso8859_2\nLATIN2, ei_iso8859_2\nL2, ei_iso8859_2\nCSISOLATIN2, ei_iso8859_2\nISO8859-2, ei_iso8859_2\nISO-8859-3, ei_iso8859_3\nISO_8859-3, ei_iso8859_3\nISO_8859-3:1988, ei_iso8859_3\nISO-IR-109, ei_iso8859_3\nLATIN3, ei_iso8859_3\nL3, ei_iso8859_3\nCSISOLATIN3, ei_iso8859_3\nISO8859-3, ei_iso8859_3\nISO-8859-4, ei_iso8859_4\nISO_8859-4, ei_iso8859_4\nISO_8859-4:1988, ei_iso8859_4\nISO-IR-110, ei_iso8859_4\nLATIN4, ei_iso8859_4\nL4, ei_iso8859_4\nCSISOLATIN4, ei_iso8859_4\nISO8859-4, ei_iso8859_4\nISO-8859-5, ei_iso8859_5\nISO_8859-5, ei_iso8859_5\nISO_8859-5:1988, ei_iso8859_5\nISO-IR-144, ei_iso8859_5\nCYRILLIC, ei_iso8859_5\nCSISOLATINCYRILLIC, ei_iso8859_5\nISO8859-5, ei_iso8859_5\nISO-8859-6, ei_iso8859_6\nISO_8859-6, ei_iso8859_6\nISO_8859-6:1987, ei_iso8859_6\nISO-IR-127, ei_iso8859_6\nECMA-114, ei_iso8859_6\nASMO-708, ei_iso8859_6\nARABIC, ei_iso8859_6\nCSISOLATINARABIC, ei_iso8859_6\nISO8859-6, ei_iso8859_6\nISO-8859-7, ei_iso8859_7\nISO_8859-7, ei_iso8859_7\nISO_8859-7:1987, ei_iso8859_7\nISO_8859-7:2003, ei_iso8859_7\nISO-IR-126, ei_iso8859_7\nECMA-118, ei_iso8859_7\nELOT_928, ei_iso8859_7\nGREEK8, ei_iso8859_7\nGREEK, ei_iso8859_7\nCSISOLATINGREEK, ei_iso8859_7\nISO8859-7, ei_iso8859_7\nISO-8859-8, ei_iso8859_8\nISO_8859-8, ei_iso8859_8\nISO_8859-8:1988, ei_iso8859_8\nISO-IR-138, ei_iso8859_8\nHEBREW, ei_iso8859_8\nCSISOLATINHEBREW, ei_iso8859_8\nISO8859-8, ei_iso8859_8\nISO-8859-9, ei_iso8859_9\nISO_8859-9, ei_iso8859_9\nISO_8859-9:1989, ei_iso8859_9\nISO-IR-148, ei_iso8859_9\nLATIN5, ei_iso8859_9\nL5, ei_iso8859_9\nCSISOLATIN5, ei_iso8859_9\nISO8859-9, ei_iso8859_9\nISO-8859-10, ei_iso8859_10\nISO_8859-10, ei_iso8859_10\nISO_8859-10:1992, ei_iso8859_10\nISO-IR-157, ei_iso8859_10\nLATIN6, ei_iso8859_10\nL6, ei_iso8859_10\nCSISOLATIN6, ei_iso8859_10\nISO8859-10, ei_iso8859_10\nISO-8859-11, ei_iso8859_11\nISO_8859-11, ei_iso8859_11\nISO8859-11, ei_iso8859_11\nISO-8859-13, ei_iso8859_13\nISO_8859-13, ei_iso8859_13\nISO-IR-179, ei_iso8859_13\nLATIN7, ei_iso8859_13\nL7, ei_iso8859_13\nISO8859-13, ei_iso8859_13\nIBM-921, ei_iso8859_13\nISO-8859-14, ei_iso8859_14\nISO_8859-14, ei_iso8859_14\nISO_8859-14:1998, ei_iso8859_14\nISO-IR-199, ei_iso8859_14\nLATIN8, ei_iso8859_14\nL8, ei_iso8859_14\nISO-CELTIC, ei_iso8859_14\nISO8859-14, ei_iso8859_14\nISO-8859-15, ei_iso8859_15\nISO_8859-15, ei_iso8859_15\nISO_8859-15:1998, ei_iso8859_15\nISO-IR-203, ei_iso8859_15\nLATIN-9, ei_iso8859_15\nISO8859-15, ei_iso8859_15\nISO-8859-16, ei_iso8859_16\nISO_8859-16, ei_iso8859_16\nISO_8859-16:2001, ei_iso8859_16\nISO-IR-226, ei_iso8859_16\nLATIN10, ei_iso8859_16\nL10, ei_iso8859_16\nISO8859-16, ei_iso8859_16\nKOI8-R, ei_koi8_r\nCSKOI8R, ei_koi8_r\nKOI8-U, ei_koi8_u\nKOI8-RU, ei_koi8_ru\nCP1250, ei_cp1250\nWINDOWS-1250, ei_cp1250\nMS-EE, ei_cp1250\nCP1251, ei_cp1251\nWINDOWS-1251, ei_cp1251\nMS-CYRL, ei_cp1251\nCP1252, ei_cp1252\nWINDOWS-1252, ei_cp1252\nMS-ANSI, ei_cp1252\nIBM-1252, ei_cp1252\nCP1253, ei_cp1253\nWINDOWS-1253, ei_cp1253\nMS-GREEK, ei_cp1253\nCP1254, ei_cp1254\nWINDOWS-1254, ei_cp1254\nMS-TURK, ei_cp1254\nCP1255, ei_cp1255\nWINDOWS-1255, ei_cp1255\nMS-HEBR, ei_cp1255\nCP1256, ei_cp1256\nWINDOWS-1256, ei_cp1256\nMS-ARAB, ei_cp1256\nCP1257, ei_cp1257\nWINDOWS-1257, ei_cp1257\nWINBALTRIM, ei_cp1257\nCP1258, ei_cp1258\nWINDOWS-1258, ei_cp1258\nCP850, ei_cp850\nIBM850, ei_cp850\n850, ei_cp850\nCSPC850MULTILINGUAL, ei_cp850\nIBM-850, ei_cp850\nCP862, ei_cp862\nIBM862, ei_cp862\n862, ei_cp862\nCSPC862LATINHEBREW, ei_cp862\nCP866, ei_cp866\nIBM866, ei_cp866\n866, ei_cp866\nCSIBM866, ei_cp866\nCP1131, ei_cp1131\nIBM-1131, ei_cp1131\nMACROMAN, ei_mac_roman\nMACINTOSH, ei_mac_roman\nMAC, ei_mac_roman\nCSMACINTOSH, ei_mac_roman\nMACCENTRALEUROPE, ei_mac_centraleurope\nMACICELAND, ei_mac_iceland\nMACCROATIAN, ei_mac_croatian\nMACROMANIA, ei_mac_romania\nMACCYRILLIC, ei_mac_cyrillic\nMACUKRAINE, ei_mac_ukraine\nMACGREEK, ei_mac_greek\nMACTURKISH, ei_mac_turkish\nMACHEBREW, ei_mac_hebrew\nMACARABIC, ei_mac_arabic\nMACTHAI, ei_mac_thai\nHP-ROMAN8, ei_hp_roman8\nROMAN8, ei_hp_roman8\nR8, ei_hp_roman8\nCSHPROMAN8, ei_hp_roman8\nNEXTSTEP, ei_nextstep\nARMSCII-8, ei_armscii_8\nGEORGIAN-ACADEMY, ei_georgian_academy\nGEORGIAN-PS, ei_georgian_ps\nKOI8-T, ei_koi8_t\nPT154, ei_pt154\nPTCP154, ei_pt154\nCP154, ei_pt154\nCYRILLIC-ASIAN, ei_pt154\nCSPTCP154, ei_pt154\nRK1048, ei_rk1048\nSTRK1048-2002, ei_rk1048\nKZ-1048, ei_rk1048\nCSKZ1048, ei_rk1048\nMULELAO-1, ei_mulelao\nCP1133, ei_cp1133\nIBM-CP1133, ei_cp1133\nTIS-620, ei_tis620\nTIS620, ei_tis620\nTIS620-0, ei_tis620\nTIS620.2529-1, ei_tis620\nTIS620.2533-0, ei_tis620\nTIS620.2533-1, ei_tis620\nISO-IR-166, ei_tis620\nCP874, ei_cp874\nWINDOWS-874, ei_cp874\nVISCII, ei_viscii\nVISCII1.1-1, ei_viscii\nCSVISCII, ei_viscii\nTCVN, ei_tcvn\nTCVN-5712, ei_tcvn\nTCVN5712-1, ei_tcvn\nTCVN5712-1:1993, ei_tcvn\nJIS_C6220-1969-RO, ei_iso646_jp\nISO646-JP, ei_iso646_jp\nISO-IR-14, ei_iso646_jp\nJP, ei_iso646_jp\nCSISO14JISC6220RO, ei_iso646_jp\nJIS_X0201, ei_jisx0201\nJISX0201-1976, ei_jisx0201\nX0201, ei_jisx0201\nCSHALFWIDTHKATAKANA, ei_jisx0201\nJIS_X0208, ei_jisx0208\nJIS_X0208-1983, ei_jisx0208\nJIS_X0208-1990, ei_jisx0208\nJIS0208, ei_jisx0208\nX0208, ei_jisx0208\nISO-IR-87, ei_jisx0208\nJIS_C6226-1983, ei_jisx0208\nCSISO87JISX0208, ei_jisx0208\nJIS_X0212, ei_jisx0212\nJIS_X0212.1990-0, ei_jisx0212\nJIS_X0212-1990, ei_jisx0212\nX0212, ei_jisx0212\nISO-IR-159, ei_jisx0212\nCSISO159JISX02121990, ei_jisx0212\nGB_1988-80, ei_iso646_cn\nISO646-CN, ei_iso646_cn\nISO-IR-57, ei_iso646_cn\nCN, ei_iso646_cn\nCSISO57GB1988, ei_iso646_cn\nGB_2312-80, ei_gb2312\nISO-IR-58, ei_gb2312\nCSISO58GB231280, ei_gb2312\nCHINESE, ei_gb2312\nISO-IR-165, ei_isoir165\nCN-GB-ISOIR165, ei_isoir165\nKSC_5601, ei_ksc5601\nKS_C_5601-1987, ei_ksc5601\nKS_C_5601-1989, ei_ksc5601\nISO-IR-149, ei_ksc5601\nCSKSC56011987, ei_ksc5601\nKOREAN, ei_ksc5601\nEUC-JP, ei_euc_jp\nEUCJP, ei_euc_jp\nEXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE, ei_euc_jp\nCSEUCPKDFMTJAPANESE, ei_euc_jp\nIBM-EUCJP, ei_euc_jp\nSHIFT_JIS, ei_sjis\nSHIFT-JIS, ei_sjis\nSJIS, ei_sjis\nMS_KANJI, ei_sjis\nCSSHIFTJIS, ei_sjis\nCP932, ei_cp932\nIBM-932, ei_cp932\nISO-2022-JP, ei_iso2022_jp\nCSISO2022JP, ei_iso2022_jp\nISO-2022-JP-1, ei_iso2022_jp1\nISO-2022-JP-2, ei_iso2022_jp2\nCSISO2022JP2, ei_iso2022_jp2\nISO-2022-JP-MS, ei_iso2022_jpms\nCP50221, ei_iso2022_jpms\nEUC-CN, ei_euc_cn\nEUCCN, ei_euc_cn\nGB2312, ei_euc_cn\nCN-GB, ei_euc_cn\nCSGB2312, ei_euc_cn\nIBM-EUCCN, ei_euc_cn\nGBK, ei_ces_gbk\nCP936, ei_cp936\nMS936, ei_cp936\nWINDOWS-936, ei_cp936\nGB18030, ei_gb18030\nISO-2022-CN, ei_iso2022_cn\nCSISO2022CN, ei_iso2022_cn\nISO-2022-CN-EXT, ei_iso2022_cn_ext\nHZ, ei_hz\nHZ-GB-2312, ei_hz\nEUC-TW, ei_euc_tw\nEUCTW, ei_euc_tw\nCSEUCTW, ei_euc_tw\nIBM-EUCTW, ei_euc_tw\nBIG5, ei_ces_big5\nBIG-5, ei_ces_big5\nBIG-FIVE, ei_ces_big5\nBIGFIVE, ei_ces_big5\nCN-BIG5, ei_ces_big5\nCSBIG5, ei_ces_big5\nCP950, ei_cp950\nBIG5-HKSCS:1999, ei_big5hkscs1999\nBIG5-HKSCS:2001, ei_big5hkscs2001\nBIG5-HKSCS:2004, ei_big5hkscs2004\nBIG5-HKSCS, ei_big5hkscs2008\nBIG5HKSCS, ei_big5hkscs2008\nBIG5-HKSCS:2008, ei_big5hkscs2008\nEUC-KR, ei_euc_kr\nEUCKR, ei_euc_kr\nCSEUCKR, ei_euc_kr\nIBM-EUCKR, ei_euc_kr\nCP949, ei_cp949\nUHC, ei_cp949\nJOHAB, ei_johab\nCP1361, ei_johab\nISO-2022-KR, ei_iso2022_kr\nCSISO2022KR, ei_iso2022_kr\nCHAR, ei_local_char\nWCHAR_T, ei_local_wchar_t\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_sysaix.h",
    "content": "/* ANSI-C code produced by gperf version 3.0.4 */\n/* Command-line: gperf -m 10 lib/aliases_sysaix.gperf  */\n/* Computed positions: -k'1,3-11,$' */\n\n#if !((' ' == 32) && ('!' == 33) && ('\"' == 34) && ('#' == 35) \\\n      && ('%' == 37) && ('&' == 38) && ('\\'' == 39) && ('(' == 40) \\\n      && (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \\\n      && ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \\\n      && ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \\\n      && ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \\\n      && ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \\\n      && ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \\\n      && ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \\\n      && ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \\\n      && ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \\\n      && ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \\\n      && ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \\\n      && ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \\\n      && ('Z' == 90) && ('[' == 91) && ('\\\\' == 92) && (']' == 93) \\\n      && ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \\\n      && ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \\\n      && ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \\\n      && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \\\n      && ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \\\n      && ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \\\n      && ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \\\n      && ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126))\n/* The character set is not based on ISO-646.  */\n#error \"gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>.\"\n#endif\n\n#line 1 \"lib/aliases_sysaix.gperf\"\nstruct alias { int name; unsigned int encoding_index; };\n\n#define TOTAL_KEYWORDS 358\n#define MIN_WORD_LENGTH 2\n#define MAX_WORD_LENGTH 45\n#define MIN_HASH_VALUE 5\n#define MAX_HASH_VALUE 1039\n/* maximum key range = 1035, duplicates = 0 */\n\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic unsigned int\naliases_hash (register const char *str, register unsigned int len)\n{\n  static const unsigned short asso_values[] =\n    {\n      1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040,\n      1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040,\n      1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040,\n      1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040,\n      1040, 1040, 1040, 1040, 1040,    0,  174, 1040,   44,    2,\n        16,   28,    9,   13,    5,  188,   20,    0,  170, 1040,\n      1040, 1040, 1040, 1040, 1040,    9,  191,    2,   19,   65,\n       140,   65,   42,   88,  376,  199,    6,  206,    3,    0,\n        52, 1040,    0,   11,  118,   97,   59,  189,  220,   13,\n         4, 1040, 1040, 1040, 1040,    1, 1040, 1040, 1040, 1040,\n      1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040,\n      1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040,\n      1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040\n    };\n  register int hval = len;\n\n  switch (hval)\n    {\n      default:\n        hval += asso_values[(unsigned char)str[10]];\n      /*FALLTHROUGH*/\n      case 10:\n        hval += asso_values[(unsigned char)str[9]];\n      /*FALLTHROUGH*/\n      case 9:\n        hval += asso_values[(unsigned char)str[8]];\n      /*FALLTHROUGH*/\n      case 8:\n        hval += asso_values[(unsigned char)str[7]];\n      /*FALLTHROUGH*/\n      case 7:\n        hval += asso_values[(unsigned char)str[6]];\n      /*FALLTHROUGH*/\n      case 6:\n        hval += asso_values[(unsigned char)str[5]];\n      /*FALLTHROUGH*/\n      case 5:\n        hval += asso_values[(unsigned char)str[4]];\n      /*FALLTHROUGH*/\n      case 4:\n        hval += asso_values[(unsigned char)str[3]];\n      /*FALLTHROUGH*/\n      case 3:\n        hval += asso_values[(unsigned char)str[2]];\n      /*FALLTHROUGH*/\n      case 2:\n      case 1:\n        hval += asso_values[(unsigned char)str[0]];\n        break;\n    }\n  return hval + asso_values[(unsigned char)str[len - 1]];\n}\n\nstruct stringpool_t\n  {\n    char stringpool_str5[sizeof(\"C99\")];\n    char stringpool_str7[sizeof(\"CN\")];\n    char stringpool_str10[sizeof(\"L1\")];\n    char stringpool_str13[sizeof(\"L6\")];\n    char stringpool_str15[sizeof(\"CHAR\")];\n    char stringpool_str16[sizeof(\"CP949\")];\n    char stringpool_str17[sizeof(\"L4\")];\n    char stringpool_str21[sizeof(\"L5\")];\n    char stringpool_str22[sizeof(\"R8\")];\n    char stringpool_str24[sizeof(\"L2\")];\n    char stringpool_str28[sizeof(\"L8\")];\n    char stringpool_str29[sizeof(\"CP819\")];\n    char stringpool_str33[sizeof(\"866\")];\n    char stringpool_str36[sizeof(\"L3\")];\n    char stringpool_str40[sizeof(\"CP154\")];\n    char stringpool_str42[sizeof(\"CP866\")];\n    char stringpool_str43[sizeof(\"CP1251\")];\n    char stringpool_str44[sizeof(\"CP1131\")];\n    char stringpool_str45[sizeof(\"CP936\")];\n    char stringpool_str47[sizeof(\"CP1361\")];\n    char stringpool_str48[sizeof(\"HZ\")];\n    char stringpool_str49[sizeof(\"CP1256\")];\n    char stringpool_str55[sizeof(\"862\")];\n    char stringpool_str57[sizeof(\"CP1254\")];\n    char stringpool_str64[sizeof(\"CP862\")];\n    char stringpool_str65[sizeof(\"CP1255\")];\n    char stringpool_str67[sizeof(\"CP932\")];\n    char stringpool_str71[sizeof(\"CP1252\")];\n    char stringpool_str79[sizeof(\"CP1258\")];\n    char stringpool_str80[sizeof(\"EUCCN\")];\n    char stringpool_str81[sizeof(\"EUC-CN\")];\n    char stringpool_str90[sizeof(\"PT154\")];\n    char stringpool_str95[sizeof(\"CP1253\")];\n    char stringpool_str96[sizeof(\"CP1133\")];\n    char stringpool_str97[sizeof(\"L10\")];\n    char stringpool_str101[sizeof(\"RK1048\")];\n    char stringpool_str102[sizeof(\"CP50221\")];\n    char stringpool_str104[sizeof(\"UHC\")];\n    char stringpool_str108[sizeof(\"CP950\")];\n    char stringpool_str110[sizeof(\"US\")];\n    char stringpool_str111[sizeof(\"850\")];\n    char stringpool_str124[sizeof(\"ISO646-CN\")];\n    char stringpool_str125[sizeof(\"SJIS\")];\n    char stringpool_str127[sizeof(\"CP1250\")];\n    char stringpool_str128[sizeof(\"CP850\")];\n    char stringpool_str131[sizeof(\"UCS-4\")];\n    char stringpool_str136[sizeof(\"CSUCS4\")];\n    char stringpool_str145[sizeof(\"UCS-2\")];\n    char stringpool_str146[sizeof(\"PTCP154\")];\n    char stringpool_str149[sizeof(\"GB2312\")];\n    char stringpool_str150[sizeof(\"ISO8859-9\")];\n    char stringpool_str151[sizeof(\"ISO-8859-9\")];\n    char stringpool_str152[sizeof(\"ISO_8859-9\")];\n    char stringpool_str154[sizeof(\"ISO8859-1\")];\n    char stringpool_str155[sizeof(\"ISO-8859-1\")];\n    char stringpool_str156[sizeof(\"ISO_8859-1\")];\n    char stringpool_str157[sizeof(\"ISO8859-11\")];\n    char stringpool_str158[sizeof(\"ISO-8859-11\")];\n    char stringpool_str159[sizeof(\"ISO_8859-11\")];\n    char stringpool_str160[sizeof(\"ISO8859-6\")];\n    char stringpool_str161[sizeof(\"ISO-8859-6\")];\n    char stringpool_str162[sizeof(\"ISO_8859-6\")];\n    char stringpool_str163[sizeof(\"ISO8859-16\")];\n    char stringpool_str164[sizeof(\"ISO-8859-16\")];\n    char stringpool_str165[sizeof(\"ISO_8859-16\")];\n    char stringpool_str167[sizeof(\"ISO_8859-16:2001\")];\n    char stringpool_str168[sizeof(\"ISO8859-4\")];\n    char stringpool_str169[sizeof(\"ISO-8859-4\")];\n    char stringpool_str170[sizeof(\"ISO_8859-4\")];\n    char stringpool_str171[sizeof(\"ISO8859-14\")];\n    char stringpool_str172[sizeof(\"ISO-8859-14\")];\n    char stringpool_str173[sizeof(\"ISO_8859-14\")];\n    char stringpool_str176[sizeof(\"ISO8859-5\")];\n    char stringpool_str177[sizeof(\"ISO-8859-5\")];\n    char stringpool_str178[sizeof(\"ISO_8859-5\")];\n    char stringpool_str179[sizeof(\"ISO8859-15\")];\n    char stringpool_str180[sizeof(\"ISO-8859-15\")];\n    char stringpool_str181[sizeof(\"ISO_8859-15\")];\n    char stringpool_str182[sizeof(\"ISO8859-2\")];\n    char stringpool_str183[sizeof(\"ISO-8859-2\")];\n    char stringpool_str184[sizeof(\"ISO_8859-2\")];\n    char stringpool_str187[sizeof(\"TCVN\")];\n    char stringpool_str188[sizeof(\"ISO-IR-199\")];\n    char stringpool_str189[sizeof(\"ISO_8859-14:1998\")];\n    char stringpool_str190[sizeof(\"ISO8859-8\")];\n    char stringpool_str191[sizeof(\"ISO-8859-8\")];\n    char stringpool_str192[sizeof(\"ISO_8859-8\")];\n    char stringpool_str193[sizeof(\"ISO_8859-15:1998\")];\n    char stringpool_str194[sizeof(\"ISO-IR-6\")];\n    char stringpool_str196[sizeof(\"L7\")];\n    char stringpool_str197[sizeof(\"ISO-IR-149\")];\n    char stringpool_str199[sizeof(\"ISO-2022-CN\")];\n    char stringpool_str201[sizeof(\"ISO-IR-159\")];\n    char stringpool_str202[sizeof(\"CYRILLIC\")];\n    char stringpool_str203[sizeof(\"ISO-IR-166\")];\n    char stringpool_str205[sizeof(\"ISO-IR-14\")];\n    char stringpool_str206[sizeof(\"ISO8859-3\")];\n    char stringpool_str207[sizeof(\"ISO-8859-3\")];\n    char stringpool_str208[sizeof(\"ISO_8859-3\")];\n    char stringpool_str209[sizeof(\"ISO8859-13\")];\n    char stringpool_str210[sizeof(\"ISO-8859-13\")];\n    char stringpool_str211[sizeof(\"ISO_8859-13\")];\n    char stringpool_str212[sizeof(\"CSISO2022CN\")];\n    char stringpool_str213[sizeof(\"MAC\")];\n    char stringpool_str214[sizeof(\"ISO-IR-126\")];\n    char stringpool_str215[sizeof(\"ISO-IR-144\")];\n    char stringpool_str219[sizeof(\"ISO-IR-165\")];\n    char stringpool_str220[sizeof(\"ISO_8859-10:1992\")];\n    char stringpool_str222[sizeof(\"LATIN-9\")];\n    char stringpool_str225[sizeof(\"LATIN1\")];\n    char stringpool_str226[sizeof(\"GB_1988-80\")];\n    char stringpool_str228[sizeof(\"ISO-IR-226\")];\n    char stringpool_str229[sizeof(\"CYRILLIC-ASIAN\")];\n    char stringpool_str231[sizeof(\"LATIN6\")];\n    char stringpool_str232[sizeof(\"ISO-IR-109\")];\n    char stringpool_str233[sizeof(\"CP874\")];\n    char stringpool_str235[sizeof(\"ISO646-US\")];\n    char stringpool_str236[sizeof(\"ISO-IR-101\")];\n    char stringpool_str237[sizeof(\"ISO-IR-148\")];\n    char stringpool_str238[sizeof(\"ISO-IR-58\")];\n    char stringpool_str239[sizeof(\"LATIN4\")];\n    char stringpool_str240[sizeof(\"MS-CYRL\")];\n    char stringpool_str241[sizeof(\"ISO8859-10\")];\n    char stringpool_str242[sizeof(\"ISO-8859-10\")];\n    char stringpool_str243[sizeof(\"ISO_8859-10\")];\n    char stringpool_str244[sizeof(\"TIS620\")];\n    char stringpool_str245[sizeof(\"TIS-620\")];\n    char stringpool_str246[sizeof(\"GB_2312-80\")];\n    char stringpool_str247[sizeof(\"LATIN5\")];\n    char stringpool_str248[sizeof(\"ELOT_928\")];\n    char stringpool_str249[sizeof(\"MS936\")];\n    char stringpool_str253[sizeof(\"LATIN2\")];\n    char stringpool_str254[sizeof(\"GB18030\")];\n    char stringpool_str255[sizeof(\"UTF-16\")];\n    char stringpool_str256[sizeof(\"ISO-IR-138\")];\n    char stringpool_str260[sizeof(\"UCS-4LE\")];\n    char stringpool_str261[sizeof(\"LATIN8\")];\n    char stringpool_str264[sizeof(\"ROMAN8\")];\n    char stringpool_str267[sizeof(\"UCS-2LE\")];\n    char stringpool_str268[sizeof(\"CSPTCP154\")];\n    char stringpool_str270[sizeof(\"GEORGIAN-ACADEMY\")];\n    char stringpool_str271[sizeof(\"EUCKR\")];\n    char stringpool_str272[sizeof(\"EUC-KR\")];\n    char stringpool_str274[sizeof(\"ISO-10646-UCS-4\")];\n    char stringpool_str275[sizeof(\"X0212\")];\n    char stringpool_str276[sizeof(\"KSC_5601\")];\n    char stringpool_str277[sizeof(\"LATIN3\")];\n    char stringpool_str278[sizeof(\"ISO-IR-110\")];\n    char stringpool_str280[sizeof(\"ASCII\")];\n    char stringpool_str281[sizeof(\"ISO-10646-UCS-2\")];\n    char stringpool_str282[sizeof(\"UTF-8\")];\n    char stringpool_str283[sizeof(\"KS_C_5601-1989\")];\n    char stringpool_str285[sizeof(\"KOREAN\")];\n    char stringpool_str286[sizeof(\"BIG5\")];\n    char stringpool_str287[sizeof(\"BIG-5\")];\n    char stringpool_str288[sizeof(\"UNICODE-1-1\")];\n    char stringpool_str289[sizeof(\"X0201\")];\n    char stringpool_str290[sizeof(\"TIS620-0\")];\n    char stringpool_str293[sizeof(\"CSUNICODE11\")];\n    char stringpool_str295[sizeof(\"CSASCII\")];\n    char stringpool_str301[sizeof(\"KZ-1048\")];\n    char stringpool_str302[sizeof(\"ISO-IR-203\")];\n    char stringpool_str303[sizeof(\"UTF-32\")];\n    char stringpool_str305[sizeof(\"MULELAO-1\")];\n    char stringpool_str306[sizeof(\"CHINESE\")];\n    char stringpool_str307[sizeof(\"ARABIC\")];\n    char stringpool_str308[sizeof(\"CSKZ1048\")];\n    char stringpool_str309[sizeof(\"HP-ROMAN8\")];\n    char stringpool_str310[sizeof(\"ECMA-114\")];\n    char stringpool_str312[sizeof(\"LATIN10\")];\n    char stringpool_str313[sizeof(\"KOI8-R\")];\n    char stringpool_str315[sizeof(\"GEORGIAN-PS\")];\n    char stringpool_str316[sizeof(\"CSKOI8R\")];\n    char stringpool_str318[sizeof(\"ISO-2022-CN-EXT\")];\n    char stringpool_str320[sizeof(\"ISO-IR-100\")];\n    char stringpool_str321[sizeof(\"IBM-921\")];\n    char stringpool_str322[sizeof(\"IBM819\")];\n    char stringpool_str325[sizeof(\"X0208\")];\n    char stringpool_str327[sizeof(\"ISO_8859-9:1989\")];\n    char stringpool_str332[sizeof(\"ECMA-118\")];\n    char stringpool_str335[sizeof(\"IBM866\")];\n    char stringpool_str338[sizeof(\"IBM-1131\")];\n    char stringpool_str340[sizeof(\"CSISOLATIN1\")];\n    char stringpool_str342[sizeof(\"VISCII\")];\n    char stringpool_str344[sizeof(\"CSGB2312\")];\n    char stringpool_str346[sizeof(\"CSISOLATIN6\")];\n    char stringpool_str347[sizeof(\"CSISOLATINCYRILLIC\")];\n    char stringpool_str350[sizeof(\"CSUNICODE\")];\n    char stringpool_str352[sizeof(\"CSISOLATINARABIC\")];\n    char stringpool_str354[sizeof(\"CSISOLATIN4\")];\n    char stringpool_str356[sizeof(\"ISO_8859-4:1988\")];\n    char stringpool_str357[sizeof(\"IBM862\")];\n    char stringpool_str360[sizeof(\"ISO_8859-5:1988\")];\n    char stringpool_str361[sizeof(\"IBM-932\")];\n    char stringpool_str362[sizeof(\"CSISOLATIN5\")];\n    char stringpool_str364[sizeof(\"CSHPROMAN8\")];\n    char stringpool_str365[sizeof(\"IBM-1252\")];\n    char stringpool_str367[sizeof(\"ISO_8859-8:1988\")];\n    char stringpool_str368[sizeof(\"CSISOLATIN2\")];\n    char stringpool_str372[sizeof(\"CSEUCKR\")];\n    char stringpool_str374[sizeof(\"STRK1048-2002\")];\n    char stringpool_str375[sizeof(\"ISO_8859-3:1988\")];\n    char stringpool_str376[sizeof(\"ISO-IR-179\")];\n    char stringpool_str378[sizeof(\"CSBIG5\")];\n    char stringpool_str379[sizeof(\"CN-BIG5\")];\n    char stringpool_str381[sizeof(\"ISO-CELTIC\")];\n    char stringpool_str386[sizeof(\"HZ-GB-2312\")];\n    char stringpool_str388[sizeof(\"UTF-16LE\")];\n    char stringpool_str390[sizeof(\"ISO-2022-KR\")];\n    char stringpool_str391[sizeof(\"US-ASCII\")];\n    char stringpool_str392[sizeof(\"CSISOLATIN3\")];\n    char stringpool_str403[sizeof(\"CSISO2022KR\")];\n    char stringpool_str406[sizeof(\"MS-EE\")];\n    char stringpool_str411[sizeof(\"UCS-4-INTERNAL\")];\n    char stringpool_str412[sizeof(\"MS-ANSI\")];\n    char stringpool_str413[sizeof(\"TCVN5712-1\")];\n    char stringpool_str415[sizeof(\"CP1257\")];\n    char stringpool_str416[sizeof(\"CP367\")];\n    char stringpool_str418[sizeof(\"UCS-2-INTERNAL\")];\n    char stringpool_str421[sizeof(\"IBM850\")];\n    char stringpool_str422[sizeof(\"IBM-850\")];\n    char stringpool_str424[sizeof(\"TCVN-5712\")];\n    char stringpool_str425[sizeof(\"UTF-32LE\")];\n    char stringpool_str426[sizeof(\"MACCYRILLIC\")];\n    char stringpool_str428[sizeof(\"TIS620.2529-1\")];\n    char stringpool_str429[sizeof(\"MACICELAND\")];\n    char stringpool_str430[sizeof(\"JP\")];\n    char stringpool_str434[sizeof(\"CSVISCII\")];\n    char stringpool_str437[sizeof(\"MACROMAN\")];\n    char stringpool_str440[sizeof(\"GREEK8\")];\n    char stringpool_str441[sizeof(\"VISCII1.1-1\")];\n    char stringpool_str445[sizeof(\"UCS-4BE\")];\n    char stringpool_str446[sizeof(\"IBM-CP1133\")];\n    char stringpool_str447[sizeof(\"ISO_646.IRV:1991\")];\n    char stringpool_str451[sizeof(\"MACCROATIAN\")];\n    char stringpool_str452[sizeof(\"UCS-2BE\")];\n    char stringpool_str453[sizeof(\"ARMSCII-8\")];\n    char stringpool_str454[sizeof(\"CN-GB\")];\n    char stringpool_str456[sizeof(\"WINDOWS-1251\")];\n    char stringpool_str457[sizeof(\"JAVA\")];\n    char stringpool_str459[sizeof(\"WINDOWS-1256\")];\n    char stringpool_str460[sizeof(\"WINDOWS-936\")];\n    char stringpool_str462[sizeof(\"UCS-4-SWAPPED\")];\n    char stringpool_str463[sizeof(\"WINDOWS-1254\")];\n    char stringpool_str466[sizeof(\"GBK\")];\n    char stringpool_str467[sizeof(\"WINDOWS-1255\")];\n    char stringpool_str468[sizeof(\"TIS620.2533-1\")];\n    char stringpool_str469[sizeof(\"UCS-2-SWAPPED\")];\n    char stringpool_str470[sizeof(\"WINDOWS-1252\")];\n    char stringpool_str471[sizeof(\"KS_C_5601-1987\")];\n    char stringpool_str472[sizeof(\"CN-GB-ISOIR165\")];\n    char stringpool_str474[sizeof(\"WINDOWS-1258\")];\n    char stringpool_str475[sizeof(\"IBM-EUCCN\")];\n    char stringpool_str476[sizeof(\"JIS_C6226-1983\")];\n    char stringpool_str480[sizeof(\"UNICODE-1-1-UTF-7\")];\n    char stringpool_str481[sizeof(\"CSKSC56011987\")];\n    char stringpool_str482[sizeof(\"WINDOWS-1253\")];\n    char stringpool_str483[sizeof(\"CSUNICODE11UTF7\")];\n    char stringpool_str484[sizeof(\"WCHAR_T\")];\n    char stringpool_str490[sizeof(\"JIS_C6220-1969-RO\")];\n    char stringpool_str493[sizeof(\"CSISO58GB231280\")];\n    char stringpool_str495[sizeof(\"ASMO-708\")];\n    char stringpool_str498[sizeof(\"WINDOWS-1250\")];\n    char stringpool_str507[sizeof(\"KOI8-U\")];\n    char stringpool_str508[sizeof(\"KOI8-RU\")];\n    char stringpool_str510[sizeof(\"TIS620.2533-0\")];\n    char stringpool_str511[sizeof(\"MS-HEBR\")];\n    char stringpool_str517[sizeof(\"ISO_8859-1:1987\")];\n    char stringpool_str518[sizeof(\"MACARABIC\")];\n    char stringpool_str520[sizeof(\"ISO_8859-6:1987\")];\n    char stringpool_str521[sizeof(\"MACINTOSH\")];\n    char stringpool_str525[sizeof(\"CSPC862LATINHEBREW\")];\n    char stringpool_str526[sizeof(\"ISO8859-7\")];\n    char stringpool_str527[sizeof(\"ISO-8859-7\")];\n    char stringpool_str528[sizeof(\"ISO_8859-7\")];\n    char stringpool_str530[sizeof(\"CSIBM866\")];\n    char stringpool_str531[sizeof(\"ISO_8859-2:1987\")];\n    char stringpool_str534[sizeof(\"CSMACINTOSH\")];\n    char stringpool_str538[sizeof(\"JIS0208\")];\n    char stringpool_str542[sizeof(\"MACROMANIA\")];\n    char stringpool_str543[sizeof(\"ISO_8859-7:2003\")];\n    char stringpool_str549[sizeof(\"KOI8-T\")];\n    char stringpool_str552[sizeof(\"EUCJP\")];\n    char stringpool_str553[sizeof(\"EUC-JP\")];\n    char stringpool_str554[sizeof(\"BIG5HKSCS\")];\n    char stringpool_str555[sizeof(\"BIG5-HKSCS\")];\n    char stringpool_str557[sizeof(\"MACCENTRALEUROPE\")];\n    char stringpool_str560[sizeof(\"MACTHAI\")];\n    char stringpool_str561[sizeof(\"ANSI_X3.4-1986\")];\n    char stringpool_str565[sizeof(\"EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE\")];\n    char stringpool_str568[sizeof(\"EUCTW\")];\n    char stringpool_str569[sizeof(\"EUC-TW\")];\n    char stringpool_str572[sizeof(\"CSISOLATINHEBREW\")];\n    char stringpool_str573[sizeof(\"UTF-16BE\")];\n    char stringpool_str574[sizeof(\"ISO-IR-57\")];\n    char stringpool_str576[sizeof(\"ANSI_X3.4-1968\")];\n    char stringpool_str577[sizeof(\"ISO-IR-157\")];\n    char stringpool_str580[sizeof(\"ISO-IR-127\")];\n    char stringpool_str581[sizeof(\"ISO-IR-87\")];\n    char stringpool_str585[sizeof(\"CSPC850MULTILINGUAL\")];\n    char stringpool_str593[sizeof(\"CSISO57GB1988\")];\n    char stringpool_str596[sizeof(\"ISO646-JP\")];\n    char stringpool_str597[sizeof(\"LATIN7\")];\n    char stringpool_str598[sizeof(\"GREEK\")];\n    char stringpool_str604[sizeof(\"CSISOLATINGREEK\")];\n    char stringpool_str606[sizeof(\"CSISO14JISC6220RO\")];\n    char stringpool_str610[sizeof(\"UTF-32BE\")];\n    char stringpool_str613[sizeof(\"MS-ARAB\")];\n    char stringpool_str614[sizeof(\"TCVN5712-1:1993\")];\n    char stringpool_str618[sizeof(\"UTF-7\")];\n    char stringpool_str623[sizeof(\"ISO-2022-JP-1\")];\n    char stringpool_str633[sizeof(\"ISO-2022-JP-MS\")];\n    char stringpool_str637[sizeof(\"ISO-2022-JP-2\")];\n    char stringpool_str642[sizeof(\"WINDOWS-1257\")];\n    char stringpool_str647[sizeof(\"NEXTSTEP\")];\n    char stringpool_str648[sizeof(\"WINDOWS-874\")];\n    char stringpool_str649[sizeof(\"CSISO2022JP2\")];\n    char stringpool_str655[sizeof(\"CSISO159JISX02121990\")];\n    char stringpool_str666[sizeof(\"IBM-EUCKR\")];\n    char stringpool_str669[sizeof(\"CSEUCTW\")];\n    char stringpool_str671[sizeof(\"ISO-2022-JP\")];\n    char stringpool_str679[sizeof(\"UNICODELITTLE\")];\n    char stringpool_str680[sizeof(\"BIGFIVE\")];\n    char stringpool_str681[sizeof(\"BIG-FIVE\")];\n    char stringpool_str682[sizeof(\"HEBREW\")];\n    char stringpool_str683[sizeof(\"CSHALFWIDTHKATAKANA\")];\n    char stringpool_str684[sizeof(\"CSISO2022JP\")];\n    char stringpool_str690[sizeof(\"UNICODEBIG\")];\n    char stringpool_str703[sizeof(\"ISO_8859-7:1987\")];\n    char stringpool_str709[sizeof(\"IBM367\")];\n    char stringpool_str711[sizeof(\"JIS_X0212\")];\n    char stringpool_str719[sizeof(\"BIG5-HKSCS:1999\")];\n    char stringpool_str721[sizeof(\"BIG5-HKSCS:2001\")];\n    char stringpool_str725[sizeof(\"JIS_X0201\")];\n    char stringpool_str728[sizeof(\"BIG5-HKSCS:2004\")];\n    char stringpool_str733[sizeof(\"JISX0201-1976\")];\n    char stringpool_str739[sizeof(\"BIG5-HKSCS:2008\")];\n    char stringpool_str744[sizeof(\"MACUKRAINE\")];\n    char stringpool_str746[sizeof(\"JIS_X0212-1990\")];\n    char stringpool_str761[sizeof(\"JIS_X0208\")];\n    char stringpool_str776[sizeof(\"JIS_X0208-1983\")];\n    char stringpool_str792[sizeof(\"JIS_X0208-1990\")];\n    char stringpool_str807[sizeof(\"MS-GREEK\")];\n    char stringpool_str809[sizeof(\"MACGREEK\")];\n    char stringpool_str814[sizeof(\"JOHAB\")];\n    char stringpool_str815[sizeof(\"MACTURKISH\")];\n    char stringpool_str826[sizeof(\"MS-TURK\")];\n    char stringpool_str852[sizeof(\"SHIFT-JIS\")];\n    char stringpool_str853[sizeof(\"SHIFT_JIS\")];\n    char stringpool_str897[sizeof(\"CSSHIFTJIS\")];\n    char stringpool_str922[sizeof(\"JIS_X0212.1990-0\")];\n    char stringpool_str947[sizeof(\"IBM-EUCJP\")];\n    char stringpool_str958[sizeof(\"MACHEBREW\")];\n    char stringpool_str963[sizeof(\"IBM-EUCTW\")];\n    char stringpool_str978[sizeof(\"MS_KANJI\")];\n    char stringpool_str984[sizeof(\"CSEUCPKDFMTJAPANESE\")];\n    char stringpool_str1026[sizeof(\"WINBALTRIM\")];\n    char stringpool_str1039[sizeof(\"CSISO87JISX0208\")];\n  };\nstatic const struct stringpool_t stringpool_contents =\n  {\n    \"C99\",\n    \"CN\",\n    \"L1\",\n    \"L6\",\n    \"CHAR\",\n    \"CP949\",\n    \"L4\",\n    \"L5\",\n    \"R8\",\n    \"L2\",\n    \"L8\",\n    \"CP819\",\n    \"866\",\n    \"L3\",\n    \"CP154\",\n    \"CP866\",\n    \"CP1251\",\n    \"CP1131\",\n    \"CP936\",\n    \"CP1361\",\n    \"HZ\",\n    \"CP1256\",\n    \"862\",\n    \"CP1254\",\n    \"CP862\",\n    \"CP1255\",\n    \"CP932\",\n    \"CP1252\",\n    \"CP1258\",\n    \"EUCCN\",\n    \"EUC-CN\",\n    \"PT154\",\n    \"CP1253\",\n    \"CP1133\",\n    \"L10\",\n    \"RK1048\",\n    \"CP50221\",\n    \"UHC\",\n    \"CP950\",\n    \"US\",\n    \"850\",\n    \"ISO646-CN\",\n    \"SJIS\",\n    \"CP1250\",\n    \"CP850\",\n    \"UCS-4\",\n    \"CSUCS4\",\n    \"UCS-2\",\n    \"PTCP154\",\n    \"GB2312\",\n    \"ISO8859-9\",\n    \"ISO-8859-9\",\n    \"ISO_8859-9\",\n    \"ISO8859-1\",\n    \"ISO-8859-1\",\n    \"ISO_8859-1\",\n    \"ISO8859-11\",\n    \"ISO-8859-11\",\n    \"ISO_8859-11\",\n    \"ISO8859-6\",\n    \"ISO-8859-6\",\n    \"ISO_8859-6\",\n    \"ISO8859-16\",\n    \"ISO-8859-16\",\n    \"ISO_8859-16\",\n    \"ISO_8859-16:2001\",\n    \"ISO8859-4\",\n    \"ISO-8859-4\",\n    \"ISO_8859-4\",\n    \"ISO8859-14\",\n    \"ISO-8859-14\",\n    \"ISO_8859-14\",\n    \"ISO8859-5\",\n    \"ISO-8859-5\",\n    \"ISO_8859-5\",\n    \"ISO8859-15\",\n    \"ISO-8859-15\",\n    \"ISO_8859-15\",\n    \"ISO8859-2\",\n    \"ISO-8859-2\",\n    \"ISO_8859-2\",\n    \"TCVN\",\n    \"ISO-IR-199\",\n    \"ISO_8859-14:1998\",\n    \"ISO8859-8\",\n    \"ISO-8859-8\",\n    \"ISO_8859-8\",\n    \"ISO_8859-15:1998\",\n    \"ISO-IR-6\",\n    \"L7\",\n    \"ISO-IR-149\",\n    \"ISO-2022-CN\",\n    \"ISO-IR-159\",\n    \"CYRILLIC\",\n    \"ISO-IR-166\",\n    \"ISO-IR-14\",\n    \"ISO8859-3\",\n    \"ISO-8859-3\",\n    \"ISO_8859-3\",\n    \"ISO8859-13\",\n    \"ISO-8859-13\",\n    \"ISO_8859-13\",\n    \"CSISO2022CN\",\n    \"MAC\",\n    \"ISO-IR-126\",\n    \"ISO-IR-144\",\n    \"ISO-IR-165\",\n    \"ISO_8859-10:1992\",\n    \"LATIN-9\",\n    \"LATIN1\",\n    \"GB_1988-80\",\n    \"ISO-IR-226\",\n    \"CYRILLIC-ASIAN\",\n    \"LATIN6\",\n    \"ISO-IR-109\",\n    \"CP874\",\n    \"ISO646-US\",\n    \"ISO-IR-101\",\n    \"ISO-IR-148\",\n    \"ISO-IR-58\",\n    \"LATIN4\",\n    \"MS-CYRL\",\n    \"ISO8859-10\",\n    \"ISO-8859-10\",\n    \"ISO_8859-10\",\n    \"TIS620\",\n    \"TIS-620\",\n    \"GB_2312-80\",\n    \"LATIN5\",\n    \"ELOT_928\",\n    \"MS936\",\n    \"LATIN2\",\n    \"GB18030\",\n    \"UTF-16\",\n    \"ISO-IR-138\",\n    \"UCS-4LE\",\n    \"LATIN8\",\n    \"ROMAN8\",\n    \"UCS-2LE\",\n    \"CSPTCP154\",\n    \"GEORGIAN-ACADEMY\",\n    \"EUCKR\",\n    \"EUC-KR\",\n    \"ISO-10646-UCS-4\",\n    \"X0212\",\n    \"KSC_5601\",\n    \"LATIN3\",\n    \"ISO-IR-110\",\n    \"ASCII\",\n    \"ISO-10646-UCS-2\",\n    \"UTF-8\",\n    \"KS_C_5601-1989\",\n    \"KOREAN\",\n    \"BIG5\",\n    \"BIG-5\",\n    \"UNICODE-1-1\",\n    \"X0201\",\n    \"TIS620-0\",\n    \"CSUNICODE11\",\n    \"CSASCII\",\n    \"KZ-1048\",\n    \"ISO-IR-203\",\n    \"UTF-32\",\n    \"MULELAO-1\",\n    \"CHINESE\",\n    \"ARABIC\",\n    \"CSKZ1048\",\n    \"HP-ROMAN8\",\n    \"ECMA-114\",\n    \"LATIN10\",\n    \"KOI8-R\",\n    \"GEORGIAN-PS\",\n    \"CSKOI8R\",\n    \"ISO-2022-CN-EXT\",\n    \"ISO-IR-100\",\n    \"IBM-921\",\n    \"IBM819\",\n    \"X0208\",\n    \"ISO_8859-9:1989\",\n    \"ECMA-118\",\n    \"IBM866\",\n    \"IBM-1131\",\n    \"CSISOLATIN1\",\n    \"VISCII\",\n    \"CSGB2312\",\n    \"CSISOLATIN6\",\n    \"CSISOLATINCYRILLIC\",\n    \"CSUNICODE\",\n    \"CSISOLATINARABIC\",\n    \"CSISOLATIN4\",\n    \"ISO_8859-4:1988\",\n    \"IBM862\",\n    \"ISO_8859-5:1988\",\n    \"IBM-932\",\n    \"CSISOLATIN5\",\n    \"CSHPROMAN8\",\n    \"IBM-1252\",\n    \"ISO_8859-8:1988\",\n    \"CSISOLATIN2\",\n    \"CSEUCKR\",\n    \"STRK1048-2002\",\n    \"ISO_8859-3:1988\",\n    \"ISO-IR-179\",\n    \"CSBIG5\",\n    \"CN-BIG5\",\n    \"ISO-CELTIC\",\n    \"HZ-GB-2312\",\n    \"UTF-16LE\",\n    \"ISO-2022-KR\",\n    \"US-ASCII\",\n    \"CSISOLATIN3\",\n    \"CSISO2022KR\",\n    \"MS-EE\",\n    \"UCS-4-INTERNAL\",\n    \"MS-ANSI\",\n    \"TCVN5712-1\",\n    \"CP1257\",\n    \"CP367\",\n    \"UCS-2-INTERNAL\",\n    \"IBM850\",\n    \"IBM-850\",\n    \"TCVN-5712\",\n    \"UTF-32LE\",\n    \"MACCYRILLIC\",\n    \"TIS620.2529-1\",\n    \"MACICELAND\",\n    \"JP\",\n    \"CSVISCII\",\n    \"MACROMAN\",\n    \"GREEK8\",\n    \"VISCII1.1-1\",\n    \"UCS-4BE\",\n    \"IBM-CP1133\",\n    \"ISO_646.IRV:1991\",\n    \"MACCROATIAN\",\n    \"UCS-2BE\",\n    \"ARMSCII-8\",\n    \"CN-GB\",\n    \"WINDOWS-1251\",\n    \"JAVA\",\n    \"WINDOWS-1256\",\n    \"WINDOWS-936\",\n    \"UCS-4-SWAPPED\",\n    \"WINDOWS-1254\",\n    \"GBK\",\n    \"WINDOWS-1255\",\n    \"TIS620.2533-1\",\n    \"UCS-2-SWAPPED\",\n    \"WINDOWS-1252\",\n    \"KS_C_5601-1987\",\n    \"CN-GB-ISOIR165\",\n    \"WINDOWS-1258\",\n    \"IBM-EUCCN\",\n    \"JIS_C6226-1983\",\n    \"UNICODE-1-1-UTF-7\",\n    \"CSKSC56011987\",\n    \"WINDOWS-1253\",\n    \"CSUNICODE11UTF7\",\n    \"WCHAR_T\",\n    \"JIS_C6220-1969-RO\",\n    \"CSISO58GB231280\",\n    \"ASMO-708\",\n    \"WINDOWS-1250\",\n    \"KOI8-U\",\n    \"KOI8-RU\",\n    \"TIS620.2533-0\",\n    \"MS-HEBR\",\n    \"ISO_8859-1:1987\",\n    \"MACARABIC\",\n    \"ISO_8859-6:1987\",\n    \"MACINTOSH\",\n    \"CSPC862LATINHEBREW\",\n    \"ISO8859-7\",\n    \"ISO-8859-7\",\n    \"ISO_8859-7\",\n    \"CSIBM866\",\n    \"ISO_8859-2:1987\",\n    \"CSMACINTOSH\",\n    \"JIS0208\",\n    \"MACROMANIA\",\n    \"ISO_8859-7:2003\",\n    \"KOI8-T\",\n    \"EUCJP\",\n    \"EUC-JP\",\n    \"BIG5HKSCS\",\n    \"BIG5-HKSCS\",\n    \"MACCENTRALEUROPE\",\n    \"MACTHAI\",\n    \"ANSI_X3.4-1986\",\n    \"EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE\",\n    \"EUCTW\",\n    \"EUC-TW\",\n    \"CSISOLATINHEBREW\",\n    \"UTF-16BE\",\n    \"ISO-IR-57\",\n    \"ANSI_X3.4-1968\",\n    \"ISO-IR-157\",\n    \"ISO-IR-127\",\n    \"ISO-IR-87\",\n    \"CSPC850MULTILINGUAL\",\n    \"CSISO57GB1988\",\n    \"ISO646-JP\",\n    \"LATIN7\",\n    \"GREEK\",\n    \"CSISOLATINGREEK\",\n    \"CSISO14JISC6220RO\",\n    \"UTF-32BE\",\n    \"MS-ARAB\",\n    \"TCVN5712-1:1993\",\n    \"UTF-7\",\n    \"ISO-2022-JP-1\",\n    \"ISO-2022-JP-MS\",\n    \"ISO-2022-JP-2\",\n    \"WINDOWS-1257\",\n    \"NEXTSTEP\",\n    \"WINDOWS-874\",\n    \"CSISO2022JP2\",\n    \"CSISO159JISX02121990\",\n    \"IBM-EUCKR\",\n    \"CSEUCTW\",\n    \"ISO-2022-JP\",\n    \"UNICODELITTLE\",\n    \"BIGFIVE\",\n    \"BIG-FIVE\",\n    \"HEBREW\",\n    \"CSHALFWIDTHKATAKANA\",\n    \"CSISO2022JP\",\n    \"UNICODEBIG\",\n    \"ISO_8859-7:1987\",\n    \"IBM367\",\n    \"JIS_X0212\",\n    \"BIG5-HKSCS:1999\",\n    \"BIG5-HKSCS:2001\",\n    \"JIS_X0201\",\n    \"BIG5-HKSCS:2004\",\n    \"JISX0201-1976\",\n    \"BIG5-HKSCS:2008\",\n    \"MACUKRAINE\",\n    \"JIS_X0212-1990\",\n    \"JIS_X0208\",\n    \"JIS_X0208-1983\",\n    \"JIS_X0208-1990\",\n    \"MS-GREEK\",\n    \"MACGREEK\",\n    \"JOHAB\",\n    \"MACTURKISH\",\n    \"MS-TURK\",\n    \"SHIFT-JIS\",\n    \"SHIFT_JIS\",\n    \"CSSHIFTJIS\",\n    \"JIS_X0212.1990-0\",\n    \"IBM-EUCJP\",\n    \"MACHEBREW\",\n    \"IBM-EUCTW\",\n    \"MS_KANJI\",\n    \"CSEUCPKDFMTJAPANESE\",\n    \"WINBALTRIM\",\n    \"CSISO87JISX0208\"\n  };\n#define stringpool ((const char *) &stringpool_contents)\n\nstatic const struct alias aliases[] =\n  {\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 51 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str5, ei_c99},\n    {-1},\n#line 292 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str7, ei_iso646_cn},\n    {-1}, {-1},\n#line 60 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str10, ei_iso8859_1},\n    {-1}, {-1},\n#line 134 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str13, ei_iso8859_10},\n    {-1},\n#line 368 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str15, ei_local_char},\n#line 362 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str16, ei_cp949},\n#line 84 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str17, ei_iso8859_4},\n    {-1}, {-1}, {-1},\n#line 126 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str21, ei_iso8859_9},\n#line 231 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str22, ei_hp_roman8},\n    {-1},\n#line 68 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str24, ei_iso8859_2},\n    {-1}, {-1}, {-1},\n#line 152 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str28, ei_iso8859_14},\n#line 57 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str29, ei_iso8859_1},\n    {-1}, {-1}, {-1},\n#line 210 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str33, ei_cp866},\n    {-1}, {-1},\n#line 76 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str36, ei_iso8859_3},\n    {-1}, {-1}, {-1},\n#line 240 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str40, ei_pt154},\n    {-1},\n#line 208 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str42, ei_cp866},\n#line 175 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str43, ei_cp1251},\n#line 212 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str44, ei_cp1131},\n#line 332 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str45, ei_cp936},\n    {-1},\n#line 365 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str47, ei_johab},\n#line 339 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str48, ei_hz},\n#line 191 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str49, ei_cp1256},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 206 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str55, ei_cp862},\n    {-1},\n#line 185 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str57, ei_cp1254},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 204 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str64, ei_cp862},\n#line 188 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str65, ei_cp1255},\n    {-1},\n#line 316 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str67, ei_cp932},\n    {-1}, {-1}, {-1},\n#line 178 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str71, ei_cp1252},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 197 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str79, ei_cp1258},\n#line 326 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str80, ei_euc_cn},\n#line 325 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str81, ei_euc_cn},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 238 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str90, ei_pt154},\n    {-1}, {-1}, {-1}, {-1},\n#line 182 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str95, ei_cp1253},\n#line 248 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str96, ei_cp1133},\n#line 166 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str97, ei_iso8859_16},\n    {-1}, {-1}, {-1},\n#line 243 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str101, ei_rk1048},\n#line 324 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str102, ei_iso2022_jpms},\n    {-1},\n#line 363 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str104, ei_cp949},\n    {-1}, {-1}, {-1},\n#line 351 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str108, ei_cp950},\n    {-1},\n#line 21 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str110, ei_ascii},\n#line 201 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str111, ei_cp850},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1},\n#line 290 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str124, ei_iso646_cn},\n#line 313 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str125, ei_sjis},\n    {-1},\n#line 172 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str127, ei_cp1250},\n#line 199 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str128, ei_cp850},\n    {-1}, {-1},\n#line 33 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str131, ei_ucs4},\n    {-1}, {-1}, {-1}, {-1},\n#line 35 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str136, ei_ucs4},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 24 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str145, ei_ucs2},\n#line 239 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str146, ei_pt154},\n    {-1}, {-1},\n#line 327 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str149, ei_euc_cn},\n#line 128 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str150, ei_iso8859_9},\n#line 121 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str151, ei_iso8859_9},\n#line 122 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str152, ei_iso8859_9},\n    {-1},\n#line 62 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str154, ei_iso8859_1},\n#line 53 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str155, ei_iso8859_1},\n#line 54 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str156, ei_iso8859_1},\n#line 139 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str157, ei_iso8859_11},\n#line 137 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str158, ei_iso8859_11},\n#line 138 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str159, ei_iso8859_11},\n#line 102 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str160, ei_iso8859_6},\n#line 94 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str161, ei_iso8859_6},\n#line 95 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str162, ei_iso8859_6},\n#line 167 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str163, ei_iso8859_16},\n#line 161 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str164, ei_iso8859_16},\n#line 162 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str165, ei_iso8859_16},\n    {-1},\n#line 163 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str167, ei_iso8859_16},\n#line 86 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str168, ei_iso8859_4},\n#line 79 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str169, ei_iso8859_4},\n#line 80 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str170, ei_iso8859_4},\n#line 154 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str171, ei_iso8859_14},\n#line 147 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str172, ei_iso8859_14},\n#line 148 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str173, ei_iso8859_14},\n    {-1}, {-1},\n#line 93 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str176, ei_iso8859_5},\n#line 87 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str177, ei_iso8859_5},\n#line 88 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str178, ei_iso8859_5},\n#line 160 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str179, ei_iso8859_15},\n#line 155 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str180, ei_iso8859_15},\n#line 156 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str181, ei_iso8859_15},\n#line 70 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str182, ei_iso8859_2},\n#line 63 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str183, ei_iso8859_2},\n#line 64 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str184, ei_iso8859_2},\n    {-1}, {-1},\n#line 262 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str187, ei_tcvn},\n#line 150 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str188, ei_iso8859_14},\n#line 149 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str189, ei_iso8859_14},\n#line 120 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str190, ei_iso8859_8},\n#line 114 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str191, ei_iso8859_8},\n#line 115 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str192, ei_iso8859_8},\n#line 157 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str193, ei_iso8859_15},\n#line 16 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str194, ei_ascii},\n    {-1},\n#line 144 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str196, ei_iso8859_13},\n#line 303 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str197, ei_ksc5601},\n    {-1},\n#line 336 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str199, ei_iso2022_cn},\n    {-1},\n#line 287 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str201, ei_jisx0212},\n#line 91 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str202, ei_iso8859_5},\n#line 256 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str203, ei_tis620},\n    {-1},\n#line 268 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str205, ei_iso646_jp},\n#line 78 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str206, ei_iso8859_3},\n#line 71 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str207, ei_iso8859_3},\n#line 72 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str208, ei_iso8859_3},\n#line 145 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str209, ei_iso8859_13},\n#line 140 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str210, ei_iso8859_13},\n#line 141 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str211, ei_iso8859_13},\n#line 337 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str212, ei_iso2022_cn},\n#line 216 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str213, ei_mac_roman},\n#line 107 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str214, ei_iso8859_7},\n#line 90 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str215, ei_iso8859_5},\n    {-1}, {-1}, {-1},\n#line 298 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str219, ei_isoir165},\n#line 131 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str220, ei_iso8859_10},\n    {-1},\n#line 159 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str222, ei_iso8859_15},\n    {-1}, {-1},\n#line 59 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str225, ei_iso8859_1},\n#line 289 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str226, ei_iso646_cn},\n    {-1},\n#line 164 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str228, ei_iso8859_16},\n#line 241 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str229, ei_pt154},\n    {-1},\n#line 133 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str231, ei_iso8859_10},\n#line 74 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str232, ei_iso8859_3},\n#line 257 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str233, ei_cp874},\n    {-1},\n#line 14 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str235, ei_ascii},\n#line 66 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str236, ei_iso8859_2},\n#line 124 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str237, ei_iso8859_9},\n#line 295 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str238, ei_gb2312},\n#line 83 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str239, ei_iso8859_4},\n#line 177 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str240, ei_cp1251},\n#line 136 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str241, ei_iso8859_10},\n#line 129 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str242, ei_iso8859_10},\n#line 130 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str243, ei_iso8859_10},\n#line 251 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str244, ei_tis620},\n#line 250 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str245, ei_tis620},\n#line 294 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str246, ei_gb2312},\n#line 125 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str247, ei_iso8859_9},\n#line 109 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str248, ei_iso8859_7},\n#line 333 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str249, ei_cp936},\n    {-1}, {-1}, {-1},\n#line 67 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str253, ei_iso8859_2},\n#line 335 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str254, ei_gb18030},\n#line 38 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str255, ei_utf16},\n#line 117 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str256, ei_iso8859_8},\n    {-1}, {-1}, {-1},\n#line 37 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str260, ei_ucs4le},\n#line 151 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str261, ei_iso8859_14},\n    {-1}, {-1},\n#line 230 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str264, ei_hp_roman8},\n    {-1}, {-1},\n#line 31 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str267, ei_ucs2le},\n#line 242 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str268, ei_pt154},\n    {-1},\n#line 235 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str270, ei_georgian_academy},\n#line 359 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str271, ei_euc_kr},\n#line 358 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str272, ei_euc_kr},\n    {-1},\n#line 34 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str274, ei_ucs4},\n#line 286 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str275, ei_jisx0212},\n#line 300 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str276, ei_ksc5601},\n#line 75 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str277, ei_iso8859_3},\n#line 82 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str278, ei_iso8859_4},\n    {-1},\n#line 13 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str280, ei_ascii},\n#line 25 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str281, ei_ucs2},\n#line 23 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str282, ei_utf8},\n#line 302 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str283, ei_ksc5601},\n    {-1},\n#line 305 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str285, ei_ksc5601},\n#line 345 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str286, ei_ces_big5},\n#line 346 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str287, ei_ces_big5},\n#line 29 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str288, ei_ucs2be},\n#line 273 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str289, ei_jisx0201},\n#line 252 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str290, ei_tis620},\n    {-1}, {-1},\n#line 30 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str293, ei_ucs2be},\n    {-1},\n#line 22 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str295, ei_ascii},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 245 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str301, ei_rk1048},\n#line 158 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str302, ei_iso8859_15},\n#line 41 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str303, ei_utf32},\n    {-1},\n#line 247 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str305, ei_mulelao},\n#line 297 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str306, ei_gb2312},\n#line 100 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str307, ei_iso8859_6},\n#line 246 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str308, ei_rk1048},\n#line 229 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str309, ei_hp_roman8},\n#line 98 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str310, ei_iso8859_6},\n    {-1},\n#line 165 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str312, ei_iso8859_16},\n#line 168 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str313, ei_koi8_r},\n    {-1},\n#line 236 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str315, ei_georgian_ps},\n#line 169 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str316, ei_koi8_r},\n    {-1},\n#line 338 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str318, ei_iso2022_cn_ext},\n    {-1},\n#line 56 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str320, ei_iso8859_1},\n#line 146 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str321, ei_iso8859_13},\n#line 58 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str322, ei_iso8859_1},\n    {-1}, {-1},\n#line 279 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str325, ei_jisx0208},\n    {-1},\n#line 123 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str327, ei_iso8859_9},\n    {-1}, {-1}, {-1}, {-1},\n#line 108 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str332, ei_iso8859_7},\n    {-1}, {-1},\n#line 209 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str335, ei_cp866},\n    {-1}, {-1},\n#line 213 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str338, ei_cp1131},\n    {-1},\n#line 61 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str340, ei_iso8859_1},\n    {-1},\n#line 259 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str342, ei_viscii},\n    {-1},\n#line 329 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str344, ei_euc_cn},\n    {-1},\n#line 135 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str346, ei_iso8859_10},\n#line 92 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str347, ei_iso8859_5},\n    {-1}, {-1},\n#line 26 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str350, ei_ucs2},\n    {-1},\n#line 101 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str352, ei_iso8859_6},\n    {-1},\n#line 85 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str354, ei_iso8859_4},\n    {-1},\n#line 81 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str356, ei_iso8859_4},\n#line 205 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str357, ei_cp862},\n    {-1}, {-1},\n#line 89 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str360, ei_iso8859_5},\n#line 317 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str361, ei_cp932},\n#line 127 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str362, ei_iso8859_9},\n    {-1},\n#line 232 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str364, ei_hp_roman8},\n#line 181 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str365, ei_cp1252},\n    {-1},\n#line 116 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str367, ei_iso8859_8},\n#line 69 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str368, ei_iso8859_2},\n    {-1}, {-1}, {-1},\n#line 360 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str372, ei_euc_kr},\n    {-1},\n#line 244 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str374, ei_rk1048},\n#line 73 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str375, ei_iso8859_3},\n#line 142 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str376, ei_iso8859_13},\n    {-1},\n#line 350 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str378, ei_ces_big5},\n#line 349 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str379, ei_ces_big5},\n    {-1},\n#line 153 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str381, ei_iso8859_14},\n    {-1}, {-1}, {-1}, {-1},\n#line 340 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str386, ei_hz},\n    {-1},\n#line 40 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str388, ei_utf16le},\n    {-1},\n#line 366 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str390, ei_iso2022_kr},\n#line 12 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str391, ei_ascii},\n#line 77 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str392, ei_iso8859_3},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1},\n#line 367 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str403, ei_iso2022_kr},\n    {-1}, {-1},\n#line 174 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str406, ei_cp1250},\n    {-1}, {-1}, {-1}, {-1},\n#line 49 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str411, ei_ucs4internal},\n#line 180 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str412, ei_cp1252},\n#line 264 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str413, ei_tcvn},\n    {-1},\n#line 194 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str415, ei_cp1257},\n#line 19 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str416, ei_ascii},\n    {-1},\n#line 47 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str418, ei_ucs2internal},\n    {-1}, {-1},\n#line 200 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str421, ei_cp850},\n#line 203 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str422, ei_cp850},\n    {-1},\n#line 263 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str424, ei_tcvn},\n#line 43 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str425, ei_utf32le},\n#line 222 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str426, ei_mac_cyrillic},\n    {-1},\n#line 253 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str428, ei_tis620},\n#line 219 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str429, ei_mac_iceland},\n#line 269 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str430, ei_iso646_jp},\n    {-1}, {-1}, {-1},\n#line 261 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str434, ei_viscii},\n    {-1}, {-1},\n#line 214 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str437, ei_mac_roman},\n    {-1}, {-1},\n#line 110 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str440, ei_iso8859_7},\n#line 260 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str441, ei_viscii},\n    {-1}, {-1}, {-1},\n#line 36 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str445, ei_ucs4be},\n#line 249 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str446, ei_cp1133},\n#line 15 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str447, ei_ascii},\n    {-1}, {-1}, {-1},\n#line 220 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str451, ei_mac_croatian},\n#line 27 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str452, ei_ucs2be},\n#line 234 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str453, ei_armscii_8},\n#line 328 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str454, ei_euc_cn},\n    {-1},\n#line 176 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str456, ei_cp1251},\n#line 52 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str457, ei_java},\n    {-1},\n#line 192 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str459, ei_cp1256},\n#line 334 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str460, ei_cp936},\n    {-1},\n#line 50 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str462, ei_ucs4swapped},\n#line 186 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str463, ei_cp1254},\n    {-1}, {-1},\n#line 331 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str466, ei_ces_gbk},\n#line 189 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str467, ei_cp1255},\n#line 255 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str468, ei_tis620},\n#line 48 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str469, ei_ucs2swapped},\n#line 179 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str470, ei_cp1252},\n#line 301 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str471, ei_ksc5601},\n#line 299 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str472, ei_isoir165},\n    {-1},\n#line 198 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str474, ei_cp1258},\n#line 330 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str475, ei_euc_cn},\n#line 281 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str476, ei_jisx0208},\n    {-1}, {-1}, {-1},\n#line 45 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str480, ei_utf7},\n#line 304 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str481, ei_ksc5601},\n#line 183 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str482, ei_cp1253},\n#line 46 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str483, ei_utf7},\n#line 369 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str484, ei_local_wchar_t},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 266 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str490, ei_iso646_jp},\n    {-1}, {-1},\n#line 296 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str493, ei_gb2312},\n    {-1},\n#line 99 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str495, ei_iso8859_6},\n    {-1}, {-1},\n#line 173 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str498, ei_cp1250},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 170 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str507, ei_koi8_u},\n#line 171 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str508, ei_koi8_ru},\n    {-1},\n#line 254 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str510, ei_tis620},\n#line 190 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str511, ei_cp1255},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 55 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str517, ei_iso8859_1},\n#line 227 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str518, ei_mac_arabic},\n    {-1},\n#line 96 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str520, ei_iso8859_6},\n#line 215 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str521, ei_mac_roman},\n    {-1}, {-1}, {-1},\n#line 207 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str525, ei_cp862},\n#line 113 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str526, ei_iso8859_7},\n#line 103 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str527, ei_iso8859_7},\n#line 104 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str528, ei_iso8859_7},\n    {-1},\n#line 211 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str530, ei_cp866},\n#line 65 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str531, ei_iso8859_2},\n    {-1}, {-1},\n#line 217 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str534, ei_mac_roman},\n    {-1}, {-1}, {-1},\n#line 278 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str538, ei_jisx0208},\n    {-1}, {-1}, {-1},\n#line 221 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str542, ei_mac_romania},\n#line 106 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str543, ei_iso8859_7},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 237 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str549, ei_koi8_t},\n    {-1}, {-1},\n#line 307 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str552, ei_euc_jp},\n#line 306 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str553, ei_euc_jp},\n#line 356 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str554, ei_big5hkscs2008},\n#line 355 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str555, ei_big5hkscs2008},\n    {-1},\n#line 218 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str557, ei_mac_centraleurope},\n    {-1}, {-1},\n#line 228 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str560, ei_mac_thai},\n#line 18 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str561, ei_ascii},\n    {-1}, {-1}, {-1},\n#line 308 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str565, ei_euc_jp},\n    {-1}, {-1},\n#line 342 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str568, ei_euc_tw},\n#line 341 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str569, ei_euc_tw},\n    {-1}, {-1},\n#line 119 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str572, ei_iso8859_8},\n#line 39 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str573, ei_utf16be},\n#line 291 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str574, ei_iso646_cn},\n    {-1},\n#line 17 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str576, ei_ascii},\n#line 132 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str577, ei_iso8859_10},\n    {-1}, {-1},\n#line 97 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str580, ei_iso8859_6},\n#line 280 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str581, ei_jisx0208},\n    {-1}, {-1}, {-1},\n#line 202 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str585, ei_cp850},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 293 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str593, ei_iso646_cn},\n    {-1}, {-1},\n#line 267 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str596, ei_iso646_jp},\n#line 143 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str597, ei_iso8859_13},\n#line 111 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str598, ei_iso8859_7},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 112 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str604, ei_iso8859_7},\n    {-1},\n#line 270 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str606, ei_iso646_jp},\n    {-1}, {-1}, {-1},\n#line 42 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str610, ei_utf32be},\n    {-1}, {-1},\n#line 193 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str613, ei_cp1256},\n#line 265 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str614, ei_tcvn},\n    {-1}, {-1}, {-1},\n#line 44 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str618, ei_utf7},\n    {-1}, {-1}, {-1}, {-1},\n#line 320 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str623, ei_iso2022_jp1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 323 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str633, ei_iso2022_jpms},\n    {-1}, {-1}, {-1},\n#line 321 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str637, ei_iso2022_jp2},\n    {-1}, {-1}, {-1}, {-1},\n#line 195 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str642, ei_cp1257},\n    {-1}, {-1}, {-1}, {-1},\n#line 233 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str647, ei_nextstep},\n#line 258 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str648, ei_cp874},\n#line 322 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str649, ei_iso2022_jp2},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 288 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str655, ei_jisx0212},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1},\n#line 361 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str666, ei_euc_kr},\n    {-1}, {-1},\n#line 343 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str669, ei_euc_tw},\n    {-1},\n#line 318 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str671, ei_iso2022_jp},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 32 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str679, ei_ucs2le},\n#line 348 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str680, ei_ces_big5},\n#line 347 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str681, ei_ces_big5},\n#line 118 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str682, ei_iso8859_8},\n#line 274 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str683, ei_jisx0201},\n#line 319 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str684, ei_iso2022_jp},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 28 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str690, ei_ucs2be},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1},\n#line 105 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str703, ei_iso8859_7},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 20 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str709, ei_ascii},\n    {-1},\n#line 283 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str711, ei_jisx0212},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 352 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str719, ei_big5hkscs1999},\n    {-1},\n#line 353 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str721, ei_big5hkscs2001},\n    {-1}, {-1}, {-1},\n#line 271 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str725, ei_jisx0201},\n    {-1}, {-1},\n#line 354 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str728, ei_big5hkscs2004},\n    {-1}, {-1}, {-1}, {-1},\n#line 272 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str733, ei_jisx0201},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 357 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str739, ei_big5hkscs2008},\n    {-1}, {-1}, {-1}, {-1},\n#line 223 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str744, ei_mac_ukraine},\n    {-1},\n#line 285 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str746, ei_jisx0212},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 275 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str761, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 276 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str776, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 277 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str792, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 184 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str807, ei_cp1253},\n    {-1},\n#line 224 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str809, ei_mac_greek},\n    {-1}, {-1}, {-1}, {-1},\n#line 364 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str814, ei_johab},\n#line 225 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str815, ei_mac_turkish},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1},\n#line 187 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str826, ei_cp1254},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 312 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str852, ei_sjis},\n#line 311 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str853, ei_sjis},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 315 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str897, ei_sjis},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 284 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str922, ei_jisx0212},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 310 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str947, ei_euc_jp},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1},\n#line 226 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str958, ei_mac_hebrew},\n    {-1}, {-1}, {-1}, {-1},\n#line 344 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str963, ei_euc_tw},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 314 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str978, ei_sjis},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 309 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str984, ei_euc_jp},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 196 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str1026, ei_cp1257},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1},\n#line 282 \"lib/aliases_sysaix.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str1039, ei_jisx0208}\n  };\n\n#ifdef __GNUC__\n__inline\n#if defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__\n__attribute__ ((__gnu_inline__))\n#endif\n#endif\nconst struct alias *\naliases_lookup (register const char *str, register unsigned int len)\n{\n  if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)\n    {\n      register int key = aliases_hash (str, len);\n\n      if (key <= MAX_HASH_VALUE && key >= 0)\n        {\n          register int o = aliases[key].name;\n          if (o >= 0)\n            {\n              register const char *s = o + stringpool;\n\n              if (*str == *s && !strcmp (str + 1, s + 1))\n                return &aliases[key];\n            }\n        }\n    }\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_syshpux.gperf",
    "content": "struct alias { int name; unsigned int encoding_index; };\n%struct-type\n%language=ANSI-C\n%define hash-function-name aliases_hash\n%define lookup-function-name aliases_lookup\n%7bit\n%readonly-tables\n%global-table\n%define word-array-name aliases\n%pic\n%%\nUS-ASCII, ei_ascii\nASCII, ei_ascii\nISO646-US, ei_ascii\nISO_646.IRV:1991, ei_ascii\nISO-IR-6, ei_ascii\nANSI_X3.4-1968, ei_ascii\nANSI_X3.4-1986, ei_ascii\nCP367, ei_ascii\nIBM367, ei_ascii\nUS, ei_ascii\nCSASCII, ei_ascii\nUTF-8, ei_utf8\nUTF8, ei_utf8\nUCS-2, ei_ucs2\nISO-10646-UCS-2, ei_ucs2\nCSUNICODE, ei_ucs2\nUCS-2BE, ei_ucs2be\nUNICODEBIG, ei_ucs2be\nUNICODE-1-1, ei_ucs2be\nCSUNICODE11, ei_ucs2be\nUCS-2LE, ei_ucs2le\nUNICODELITTLE, ei_ucs2le\nUCS-4, ei_ucs4\nISO-10646-UCS-4, ei_ucs4\nCSUCS4, ei_ucs4\nUCS-4BE, ei_ucs4be\nUCS-4LE, ei_ucs4le\nUTF-16, ei_utf16\nUTF-16BE, ei_utf16be\nUTF-16LE, ei_utf16le\nUTF-32, ei_utf32\nUTF-32BE, ei_utf32be\nUTF-32LE, ei_utf32le\nUTF-7, ei_utf7\nUNICODE-1-1-UTF-7, ei_utf7\nCSUNICODE11UTF7, ei_utf7\nUCS-2-INTERNAL, ei_ucs2internal\nUCS-2-SWAPPED, ei_ucs2swapped\nUCS-4-INTERNAL, ei_ucs4internal\nUCS-4-SWAPPED, ei_ucs4swapped\nC99, ei_c99\nJAVA, ei_java\nISO-8859-1, ei_iso8859_1\nISO_8859-1, ei_iso8859_1\nISO_8859-1:1987, ei_iso8859_1\nISO-IR-100, ei_iso8859_1\nCP819, ei_iso8859_1\nIBM819, ei_iso8859_1\nLATIN1, ei_iso8859_1\nL1, ei_iso8859_1\nCSISOLATIN1, ei_iso8859_1\nISO8859-1, ei_iso8859_1\nISO88591, ei_iso8859_1\nISO-8859-2, ei_iso8859_2\nISO_8859-2, ei_iso8859_2\nISO_8859-2:1987, ei_iso8859_2\nISO-IR-101, ei_iso8859_2\nLATIN2, ei_iso8859_2\nL2, ei_iso8859_2\nCSISOLATIN2, ei_iso8859_2\nISO8859-2, ei_iso8859_2\nISO88592, ei_iso8859_2\nISO-8859-3, ei_iso8859_3\nISO_8859-3, ei_iso8859_3\nISO_8859-3:1988, ei_iso8859_3\nISO-IR-109, ei_iso8859_3\nLATIN3, ei_iso8859_3\nL3, ei_iso8859_3\nCSISOLATIN3, ei_iso8859_3\nISO8859-3, ei_iso8859_3\nISO-8859-4, ei_iso8859_4\nISO_8859-4, ei_iso8859_4\nISO_8859-4:1988, ei_iso8859_4\nISO-IR-110, ei_iso8859_4\nLATIN4, ei_iso8859_4\nL4, ei_iso8859_4\nCSISOLATIN4, ei_iso8859_4\nISO8859-4, ei_iso8859_4\nISO-8859-5, ei_iso8859_5\nISO_8859-5, ei_iso8859_5\nISO_8859-5:1988, ei_iso8859_5\nISO-IR-144, ei_iso8859_5\nCYRILLIC, ei_iso8859_5\nCSISOLATINCYRILLIC, ei_iso8859_5\nISO8859-5, ei_iso8859_5\nISO88595, ei_iso8859_5\nISO-8859-6, ei_iso8859_6\nISO_8859-6, ei_iso8859_6\nISO_8859-6:1987, ei_iso8859_6\nISO-IR-127, ei_iso8859_6\nECMA-114, ei_iso8859_6\nASMO-708, ei_iso8859_6\nARABIC, ei_iso8859_6\nCSISOLATINARABIC, ei_iso8859_6\nISO8859-6, ei_iso8859_6\nISO88596, ei_iso8859_6\nISO-8859-7, ei_iso8859_7\nISO_8859-7, ei_iso8859_7\nISO_8859-7:1987, ei_iso8859_7\nISO_8859-7:2003, ei_iso8859_7\nISO-IR-126, ei_iso8859_7\nECMA-118, ei_iso8859_7\nELOT_928, ei_iso8859_7\nGREEK8, ei_iso8859_7\nGREEK, ei_iso8859_7\nCSISOLATINGREEK, ei_iso8859_7\nISO8859-7, ei_iso8859_7\nISO88597, ei_iso8859_7\nISO-8859-8, ei_iso8859_8\nISO_8859-8, ei_iso8859_8\nISO_8859-8:1988, ei_iso8859_8\nISO-IR-138, ei_iso8859_8\nHEBREW, ei_iso8859_8\nCSISOLATINHEBREW, ei_iso8859_8\nISO8859-8, ei_iso8859_8\nISO88598, ei_iso8859_8\nISO-8859-9, ei_iso8859_9\nISO_8859-9, ei_iso8859_9\nISO_8859-9:1989, ei_iso8859_9\nISO-IR-148, ei_iso8859_9\nLATIN5, ei_iso8859_9\nL5, ei_iso8859_9\nCSISOLATIN5, ei_iso8859_9\nISO8859-9, ei_iso8859_9\nISO88599, ei_iso8859_9\nISO-8859-10, ei_iso8859_10\nISO_8859-10, ei_iso8859_10\nISO_8859-10:1992, ei_iso8859_10\nISO-IR-157, ei_iso8859_10\nLATIN6, ei_iso8859_10\nL6, ei_iso8859_10\nCSISOLATIN6, ei_iso8859_10\nISO8859-10, ei_iso8859_10\nISO-8859-11, ei_iso8859_11\nISO_8859-11, ei_iso8859_11\nISO8859-11, ei_iso8859_11\nISO-8859-13, ei_iso8859_13\nISO_8859-13, ei_iso8859_13\nISO-IR-179, ei_iso8859_13\nLATIN7, ei_iso8859_13\nL7, ei_iso8859_13\nISO8859-13, ei_iso8859_13\nISO-8859-14, ei_iso8859_14\nISO_8859-14, ei_iso8859_14\nISO_8859-14:1998, ei_iso8859_14\nISO-IR-199, ei_iso8859_14\nLATIN8, ei_iso8859_14\nL8, ei_iso8859_14\nISO-CELTIC, ei_iso8859_14\nISO8859-14, ei_iso8859_14\nISO-8859-15, ei_iso8859_15\nISO_8859-15, ei_iso8859_15\nISO_8859-15:1998, ei_iso8859_15\nISO-IR-203, ei_iso8859_15\nLATIN-9, ei_iso8859_15\nISO8859-15, ei_iso8859_15\nISO885915, ei_iso8859_15\nISO-8859-16, ei_iso8859_16\nISO_8859-16, ei_iso8859_16\nISO_8859-16:2001, ei_iso8859_16\nISO-IR-226, ei_iso8859_16\nLATIN10, ei_iso8859_16\nL10, ei_iso8859_16\nISO8859-16, ei_iso8859_16\nKOI8-R, ei_koi8_r\nCSKOI8R, ei_koi8_r\nKOI8-U, ei_koi8_u\nKOI8-RU, ei_koi8_ru\nCP1250, ei_cp1250\nWINDOWS-1250, ei_cp1250\nMS-EE, ei_cp1250\nCP1251, ei_cp1251\nWINDOWS-1251, ei_cp1251\nMS-CYRL, ei_cp1251\nCP1252, ei_cp1252\nWINDOWS-1252, ei_cp1252\nMS-ANSI, ei_cp1252\nCP1253, ei_cp1253\nWINDOWS-1253, ei_cp1253\nMS-GREEK, ei_cp1253\nCP1254, ei_cp1254\nWINDOWS-1254, ei_cp1254\nMS-TURK, ei_cp1254\nCP1255, ei_cp1255\nWINDOWS-1255, ei_cp1255\nMS-HEBR, ei_cp1255\nCP1256, ei_cp1256\nWINDOWS-1256, ei_cp1256\nMS-ARAB, ei_cp1256\nCP1257, ei_cp1257\nWINDOWS-1257, ei_cp1257\nWINBALTRIM, ei_cp1257\nCP1258, ei_cp1258\nWINDOWS-1258, ei_cp1258\nCP850, ei_cp850\nIBM850, ei_cp850\n850, ei_cp850\nCSPC850MULTILINGUAL, ei_cp850\nCP862, ei_cp862\nIBM862, ei_cp862\n862, ei_cp862\nCSPC862LATINHEBREW, ei_cp862\nCP866, ei_cp866\nIBM866, ei_cp866\n866, ei_cp866\nCSIBM866, ei_cp866\nCP1131, ei_cp1131\nMACROMAN, ei_mac_roman\nMACINTOSH, ei_mac_roman\nMAC, ei_mac_roman\nCSMACINTOSH, ei_mac_roman\nMACCENTRALEUROPE, ei_mac_centraleurope\nMACICELAND, ei_mac_iceland\nMACCROATIAN, ei_mac_croatian\nMACROMANIA, ei_mac_romania\nMACCYRILLIC, ei_mac_cyrillic\nMACUKRAINE, ei_mac_ukraine\nMACGREEK, ei_mac_greek\nMACTURKISH, ei_mac_turkish\nMACHEBREW, ei_mac_hebrew\nMACARABIC, ei_mac_arabic\nMACTHAI, ei_mac_thai\nHP-ROMAN8, ei_hp_roman8\nROMAN8, ei_hp_roman8\nR8, ei_hp_roman8\nCSHPROMAN8, ei_hp_roman8\nNEXTSTEP, ei_nextstep\nARMSCII-8, ei_armscii_8\nGEORGIAN-ACADEMY, ei_georgian_academy\nGEORGIAN-PS, ei_georgian_ps\nKOI8-T, ei_koi8_t\nPT154, ei_pt154\nPTCP154, ei_pt154\nCP154, ei_pt154\nCYRILLIC-ASIAN, ei_pt154\nCSPTCP154, ei_pt154\nRK1048, ei_rk1048\nSTRK1048-2002, ei_rk1048\nKZ-1048, ei_rk1048\nCSKZ1048, ei_rk1048\nMULELAO-1, ei_mulelao\nCP1133, ei_cp1133\nIBM-CP1133, ei_cp1133\nTIS-620, ei_tis620\nTIS620, ei_tis620\nTIS620-0, ei_tis620\nTIS620.2529-1, ei_tis620\nTIS620.2533-0, ei_tis620\nTIS620.2533-1, ei_tis620\nISO-IR-166, ei_tis620\nCP874, ei_cp874\nWINDOWS-874, ei_cp874\nVISCII, ei_viscii\nVISCII1.1-1, ei_viscii\nCSVISCII, ei_viscii\nTCVN, ei_tcvn\nTCVN-5712, ei_tcvn\nTCVN5712-1, ei_tcvn\nTCVN5712-1:1993, ei_tcvn\nJIS_C6220-1969-RO, ei_iso646_jp\nISO646-JP, ei_iso646_jp\nISO-IR-14, ei_iso646_jp\nJP, ei_iso646_jp\nCSISO14JISC6220RO, ei_iso646_jp\nJIS_X0201, ei_jisx0201\nJISX0201-1976, ei_jisx0201\nX0201, ei_jisx0201\nCSHALFWIDTHKATAKANA, ei_jisx0201\nJIS_X0208, ei_jisx0208\nJIS_X0208-1983, ei_jisx0208\nJIS_X0208-1990, ei_jisx0208\nJIS0208, ei_jisx0208\nX0208, ei_jisx0208\nISO-IR-87, ei_jisx0208\nJIS_C6226-1983, ei_jisx0208\nCSISO87JISX0208, ei_jisx0208\nJIS_X0212, ei_jisx0212\nJIS_X0212.1990-0, ei_jisx0212\nJIS_X0212-1990, ei_jisx0212\nX0212, ei_jisx0212\nISO-IR-159, ei_jisx0212\nCSISO159JISX02121990, ei_jisx0212\nGB_1988-80, ei_iso646_cn\nISO646-CN, ei_iso646_cn\nISO-IR-57, ei_iso646_cn\nCN, ei_iso646_cn\nCSISO57GB1988, ei_iso646_cn\nGB_2312-80, ei_gb2312\nISO-IR-58, ei_gb2312\nCSISO58GB231280, ei_gb2312\nCHINESE, ei_gb2312\nISO-IR-165, ei_isoir165\nCN-GB-ISOIR165, ei_isoir165\nKSC_5601, ei_ksc5601\nKS_C_5601-1987, ei_ksc5601\nKS_C_5601-1989, ei_ksc5601\nISO-IR-149, ei_ksc5601\nCSKSC56011987, ei_ksc5601\nKOREAN, ei_ksc5601\nEUC-JP, ei_euc_jp\nEUCJP, ei_euc_jp\nEXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE, ei_euc_jp\nCSEUCPKDFMTJAPANESE, ei_euc_jp\nSHIFT_JIS, ei_sjis\nSHIFT-JIS, ei_sjis\nSJIS, ei_sjis\nMS_KANJI, ei_sjis\nCSSHIFTJIS, ei_sjis\nCP932, ei_cp932\nISO-2022-JP, ei_iso2022_jp\nCSISO2022JP, ei_iso2022_jp\nISO-2022-JP-1, ei_iso2022_jp1\nISO-2022-JP-2, ei_iso2022_jp2\nCSISO2022JP2, ei_iso2022_jp2\nISO-2022-JP-MS, ei_iso2022_jpms\nCP50221, ei_iso2022_jpms\nEUC-CN, ei_euc_cn\nEUCCN, ei_euc_cn\nGB2312, ei_euc_cn\nCN-GB, ei_euc_cn\nCSGB2312, ei_euc_cn\nHP15CN, ei_euc_cn\nGBK, ei_ces_gbk\nCP936, ei_cp936\nMS936, ei_cp936\nWINDOWS-936, ei_cp936\nGB18030, ei_gb18030\nISO-2022-CN, ei_iso2022_cn\nCSISO2022CN, ei_iso2022_cn\nISO-2022-CN-EXT, ei_iso2022_cn_ext\nHZ, ei_hz\nHZ-GB-2312, ei_hz\nEUC-TW, ei_euc_tw\nEUCTW, ei_euc_tw\nCSEUCTW, ei_euc_tw\nBIG5, ei_ces_big5\nBIG-5, ei_ces_big5\nBIG-FIVE, ei_ces_big5\nBIGFIVE, ei_ces_big5\nCN-BIG5, ei_ces_big5\nCSBIG5, ei_ces_big5\nCP950, ei_cp950\nBIG5-HKSCS:1999, ei_big5hkscs1999\nBIG5-HKSCS:2001, ei_big5hkscs2001\nBIG5-HKSCS:2004, ei_big5hkscs2004\nBIG5-HKSCS, ei_big5hkscs2008\nBIG5HKSCS, ei_big5hkscs2008\nBIG5-HKSCS:2008, ei_big5hkscs2008\nEUC-KR, ei_euc_kr\nEUCKR, ei_euc_kr\nCSEUCKR, ei_euc_kr\nCP949, ei_cp949\nUHC, ei_cp949\nJOHAB, ei_johab\nCP1361, ei_johab\nISO-2022-KR, ei_iso2022_kr\nCSISO2022KR, ei_iso2022_kr\nCHAR, ei_local_char\nWCHAR_T, ei_local_wchar_t\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_syshpux.h",
    "content": "/* ANSI-C code produced by gperf version 3.0.4 */\n/* Command-line: gperf -m 10 lib/aliases_syshpux.gperf  */\n/* Computed positions: -k'1,3-11,$' */\n\n#if !((' ' == 32) && ('!' == 33) && ('\"' == 34) && ('#' == 35) \\\n      && ('%' == 37) && ('&' == 38) && ('\\'' == 39) && ('(' == 40) \\\n      && (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \\\n      && ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \\\n      && ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \\\n      && ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \\\n      && ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \\\n      && ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \\\n      && ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \\\n      && ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \\\n      && ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \\\n      && ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \\\n      && ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \\\n      && ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \\\n      && ('Z' == 90) && ('[' == 91) && ('\\\\' == 92) && (']' == 93) \\\n      && ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \\\n      && ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \\\n      && ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \\\n      && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \\\n      && ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \\\n      && ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \\\n      && ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \\\n      && ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126))\n/* The character set is not based on ISO-646.  */\n#error \"gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>.\"\n#endif\n\n#line 1 \"lib/aliases_syshpux.gperf\"\nstruct alias { int name; unsigned int encoding_index; };\n\n#define TOTAL_KEYWORDS 359\n#define MIN_WORD_LENGTH 2\n#define MAX_WORD_LENGTH 45\n#define MIN_HASH_VALUE 19\n#define MAX_HASH_VALUE 1033\n/* maximum key range = 1015, duplicates = 0 */\n\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic unsigned int\naliases_hash (register const char *str, register unsigned int len)\n{\n  static const unsigned short asso_values[] =\n    {\n      1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034,\n      1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034,\n      1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034,\n      1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034,\n      1034, 1034, 1034, 1034, 1034,    2,   22, 1034,   56,    4,\n        36,   62,   23,   18,   11,  100,   30,    3,  115, 1034,\n      1034, 1034, 1034, 1034, 1034,   62,  170,  101,    3,   35,\n        78,   78,  169,    3,  375,   55,   16,  149,   18,    8,\n         3, 1034,    2,    4,  161,  210,  136,  158,  191,    6,\n         5, 1034, 1034, 1034, 1034,    3, 1034, 1034, 1034, 1034,\n      1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034,\n      1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034,\n      1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034\n    };\n  register int hval = len;\n\n  switch (hval)\n    {\n      default:\n        hval += asso_values[(unsigned char)str[10]];\n      /*FALLTHROUGH*/\n      case 10:\n        hval += asso_values[(unsigned char)str[9]];\n      /*FALLTHROUGH*/\n      case 9:\n        hval += asso_values[(unsigned char)str[8]];\n      /*FALLTHROUGH*/\n      case 8:\n        hval += asso_values[(unsigned char)str[7]];\n      /*FALLTHROUGH*/\n      case 7:\n        hval += asso_values[(unsigned char)str[6]];\n      /*FALLTHROUGH*/\n      case 6:\n        hval += asso_values[(unsigned char)str[5]];\n      /*FALLTHROUGH*/\n      case 5:\n        hval += asso_values[(unsigned char)str[4]];\n      /*FALLTHROUGH*/\n      case 4:\n        hval += asso_values[(unsigned char)str[3]];\n      /*FALLTHROUGH*/\n      case 3:\n        hval += asso_values[(unsigned char)str[2]];\n      /*FALLTHROUGH*/\n      case 2:\n      case 1:\n        hval += asso_values[(unsigned char)str[0]];\n        break;\n    }\n  return hval + asso_values[(unsigned char)str[len - 1]];\n}\n\nstruct stringpool_t\n  {\n    char stringpool_str19[sizeof(\"SJIS\")];\n    char stringpool_str22[sizeof(\"L1\")];\n    char stringpool_str29[sizeof(\"L6\")];\n    char stringpool_str34[sizeof(\"R8\")];\n    char stringpool_str36[sizeof(\"L5\")];\n    char stringpool_str41[sizeof(\"L4\")];\n    char stringpool_str43[sizeof(\"ISO-IR-199\")];\n    char stringpool_str48[sizeof(\"L8\")];\n    char stringpool_str50[sizeof(\"ISO-IR-6\")];\n    char stringpool_str54[sizeof(\"L2\")];\n    char stringpool_str55[sizeof(\"866\")];\n    char stringpool_str58[sizeof(\"ISO-IR-159\")];\n    char stringpool_str63[sizeof(\"ISO-IR-149\")];\n    char stringpool_str67[sizeof(\"ISO-IR-166\")];\n    char stringpool_str76[sizeof(\"PT154\")];\n    char stringpool_str79[sizeof(\"ISO-IR-14\")];\n    char stringpool_str80[sizeof(\"L3\")];\n    char stringpool_str81[sizeof(\"ISO-IR-165\")];\n    char stringpool_str92[sizeof(\"ISO-IR-126\")];\n    char stringpool_str96[sizeof(\"ISO-IR-109\")];\n    char stringpool_str98[sizeof(\"ISO-IR-101\")];\n    char stringpool_str100[sizeof(\"KOI8-R\")];\n    char stringpool_str103[sizeof(\"ISO-IR-144\")];\n    char stringpool_str105[sizeof(\"862\")];\n    char stringpool_str106[sizeof(\"ISO88599\")];\n    char stringpool_str107[sizeof(\"ISO-IR-58\")];\n    char stringpool_str108[sizeof(\"ISO88591\")];\n    char stringpool_str109[sizeof(\"ISO8859-9\")];\n    char stringpool_str110[sizeof(\"C99\")];\n    char stringpool_str111[sizeof(\"ISO8859-1\")];\n    char stringpool_str112[sizeof(\"ISO-8859-9\")];\n    char stringpool_str113[sizeof(\"ISO_8859-9\")];\n    char stringpool_str114[sizeof(\"ISO-8859-1\")];\n    char stringpool_str115[sizeof(\"ISO_8859-1\")];\n    char stringpool_str116[sizeof(\"ISO8859-11\")];\n    char stringpool_str117[sizeof(\"ISO-IR-148\")];\n    char stringpool_str118[sizeof(\"L7\")];\n    char stringpool_str119[sizeof(\"ISO-8859-11\")];\n    char stringpool_str120[sizeof(\"ISO_8859-11\")];\n    char stringpool_str121[sizeof(\"CN\")];\n    char stringpool_str122[sizeof(\"ISO88596\")];\n    char stringpool_str124[sizeof(\"ISO-IR-226\")];\n    char stringpool_str125[sizeof(\"ISO8859-6\")];\n    char stringpool_str128[sizeof(\"ISO-8859-6\")];\n    char stringpool_str129[sizeof(\"ISO_8859-6\")];\n    char stringpool_str130[sizeof(\"ISO8859-16\")];\n    char stringpool_str131[sizeof(\"L10\")];\n    char stringpool_str132[sizeof(\"ISO_8859-16:2001\")];\n    char stringpool_str133[sizeof(\"ISO-8859-16\")];\n    char stringpool_str134[sizeof(\"ISO_8859-16\")];\n    char stringpool_str136[sizeof(\"ISO88595\")];\n    char stringpool_str138[sizeof(\"CP949\")];\n    char stringpool_str139[sizeof(\"ISO8859-5\")];\n    char stringpool_str140[sizeof(\"ISO-IR-179\")];\n    char stringpool_str141[sizeof(\"ISO885915\")];\n    char stringpool_str142[sizeof(\"ISO-8859-5\")];\n    char stringpool_str143[sizeof(\"ISO_8859-5\")];\n    char stringpool_str144[sizeof(\"ISO8859-15\")];\n    char stringpool_str145[sizeof(\"850\")];\n    char stringpool_str146[sizeof(\"CP819\")];\n    char stringpool_str147[sizeof(\"ISO-8859-15\")];\n    char stringpool_str148[sizeof(\"ISO_8859-15\")];\n    char stringpool_str149[sizeof(\"ISO8859-4\")];\n    char stringpool_str150[sizeof(\"ISO-IR-110\")];\n    char stringpool_str151[sizeof(\"RK1048\")];\n    char stringpool_str152[sizeof(\"ISO-8859-4\")];\n    char stringpool_str153[sizeof(\"ISO_8859-4\")];\n    char stringpool_str154[sizeof(\"ISO8859-14\")];\n    char stringpool_str156[sizeof(\"ISO-IR-138\")];\n    char stringpool_str157[sizeof(\"ISO-8859-14\")];\n    char stringpool_str158[sizeof(\"ISO_8859-14\")];\n    char stringpool_str160[sizeof(\"ISO88598\")];\n    char stringpool_str163[sizeof(\"ISO8859-8\")];\n    char stringpool_str165[sizeof(\"ISO_8859-15:1998\")];\n    char stringpool_str166[sizeof(\"ISO-8859-8\")];\n    char stringpool_str167[sizeof(\"ISO_8859-8\")];\n    char stringpool_str169[sizeof(\"CP866\")];\n    char stringpool_str170[sizeof(\"ISO_8859-14:1998\")];\n    char stringpool_str171[sizeof(\"CHAR\")];\n    char stringpool_str172[sizeof(\"ISO88592\")];\n    char stringpool_str173[sizeof(\"CP1251\")];\n    char stringpool_str174[sizeof(\"CP154\")];\n    char stringpool_str175[sizeof(\"ISO8859-2\")];\n    char stringpool_str176[sizeof(\"HZ\")];\n    char stringpool_str177[sizeof(\"ASCII\")];\n    char stringpool_str178[sizeof(\"ISO-8859-2\")];\n    char stringpool_str179[sizeof(\"ISO_8859-2\")];\n    char stringpool_str182[sizeof(\"PTCP154\")];\n    char stringpool_str185[sizeof(\"CP1131\")];\n    char stringpool_str187[sizeof(\"CP1256\")];\n    char stringpool_str191[sizeof(\"GBK\")];\n    char stringpool_str192[sizeof(\"CP1361\")];\n    char stringpool_str193[sizeof(\"CP936\")];\n    char stringpool_str196[sizeof(\"KOREAN\")];\n    char stringpool_str198[sizeof(\"IBM819\")];\n    char stringpool_str200[sizeof(\"EUCKR\")];\n    char stringpool_str201[sizeof(\"CP1255\")];\n    char stringpool_str202[sizeof(\"ISO-IR-100\")];\n    char stringpool_str203[sizeof(\"EUC-KR\")];\n    char stringpool_str204[sizeof(\"ISO646-CN\")];\n    char stringpool_str207[sizeof(\"KZ-1048\")];\n    char stringpool_str208[sizeof(\"CSKOI8R\")];\n    char stringpool_str209[sizeof(\"ISO_8859-10:1992\")];\n    char stringpool_str211[sizeof(\"CP1254\")];\n    char stringpool_str212[sizeof(\"LATIN1\")];\n    char stringpool_str213[sizeof(\"LATIN-9\")];\n    char stringpool_str216[sizeof(\"US\")];\n    char stringpool_str219[sizeof(\"CP862\")];\n    char stringpool_str220[sizeof(\"ISO8859-10\")];\n    char stringpool_str221[sizeof(\"IBM866\")];\n    char stringpool_str223[sizeof(\"ISO-8859-10\")];\n    char stringpool_str224[sizeof(\"ISO_8859-10\")];\n    char stringpool_str225[sizeof(\"CP1258\")];\n    char stringpool_str226[sizeof(\"LATIN6\")];\n    char stringpool_str227[sizeof(\"ISO8859-3\")];\n    char stringpool_str230[sizeof(\"ISO-8859-3\")];\n    char stringpool_str231[sizeof(\"ISO_8859-3\")];\n    char stringpool_str232[sizeof(\"ISO8859-13\")];\n    char stringpool_str233[sizeof(\"ISO_8859-9:1989\")];\n    char stringpool_str235[sizeof(\"ISO-8859-13\")];\n    char stringpool_str236[sizeof(\"ISO_8859-13\")];\n    char stringpool_str237[sizeof(\"CP1252\")];\n    char stringpool_str238[sizeof(\"CHINESE\")];\n    char stringpool_str239[sizeof(\"CP950\")];\n    char stringpool_str240[sizeof(\"LATIN5\")];\n    char stringpool_str241[sizeof(\"MS936\")];\n    char stringpool_str242[sizeof(\"ISO_646.IRV:1991\")];\n    char stringpool_str243[sizeof(\"CP932\")];\n    char stringpool_str246[sizeof(\"ISO-IR-203\")];\n    char stringpool_str247[sizeof(\"ISO-IR-57\")];\n    char stringpool_str248[sizeof(\"MS-ANSI\")];\n    char stringpool_str249[sizeof(\"ISO-2022-KR\")];\n    char stringpool_str250[sizeof(\"LATIN4\")];\n    char stringpool_str252[sizeof(\"ISO-IR-157\")];\n    char stringpool_str256[sizeof(\"VISCII\")];\n    char stringpool_str258[sizeof(\"GB2312\")];\n    char stringpool_str259[sizeof(\"ISO-IR-87\")];\n    char stringpool_str260[sizeof(\"KSC_5601\")];\n    char stringpool_str261[sizeof(\"MS-EE\")];\n    char stringpool_str262[sizeof(\"CP50221\")];\n    char stringpool_str263[sizeof(\"GREEK\")];\n    char stringpool_str264[sizeof(\"LATIN8\")];\n    char stringpool_str266[sizeof(\"CP850\")];\n    char stringpool_str267[sizeof(\"UCS-4\")];\n    char stringpool_str269[sizeof(\"GREEK8\")];\n    char stringpool_str270[sizeof(\"ISO-IR-127\")];\n    char stringpool_str271[sizeof(\"IBM862\")];\n    char stringpool_str273[sizeof(\"GEORGIAN-PS\")];\n    char stringpool_str274[sizeof(\"KS_C_5601-1989\")];\n    char stringpool_str275[sizeof(\"ISO_8859-5:1988\")];\n    char stringpool_str276[sizeof(\"LATIN2\")];\n    char stringpool_str277[sizeof(\"CP1250\")];\n    char stringpool_str278[sizeof(\"EUCCN\")];\n    char stringpool_str280[sizeof(\"ISO_8859-4:1988\")];\n    char stringpool_str281[sizeof(\"EUC-CN\")];\n    char stringpool_str282[sizeof(\"CP874\")];\n    char stringpool_str284[sizeof(\"CSASCII\")];\n    char stringpool_str285[sizeof(\"ISO646-US\")];\n    char stringpool_str287[sizeof(\"ISO_8859-8:1988\")];\n    char stringpool_str288[sizeof(\"BIG5\")];\n    char stringpool_str289[sizeof(\"CP1253\")];\n    char stringpool_str291[sizeof(\"BIG-5\")];\n    char stringpool_str293[sizeof(\"UCS-2\")];\n    char stringpool_str296[sizeof(\"X0201\")];\n    char stringpool_str297[sizeof(\"ROMAN8\")];\n    char stringpool_str298[sizeof(\"VISCII1.1-1\")];\n    char stringpool_str299[sizeof(\"MS-CYRL\")];\n    char stringpool_str300[sizeof(\"ISO88597\")];\n    char stringpool_str301[sizeof(\"CP1133\")];\n    char stringpool_str302[sizeof(\"GB_1988-80\")];\n    char stringpool_str303[sizeof(\"ISO8859-7\")];\n    char stringpool_str305[sizeof(\"MULELAO-1\")];\n    char stringpool_str306[sizeof(\"ISO-8859-7\")];\n    char stringpool_str307[sizeof(\"ISO_8859-7\")];\n    char stringpool_str308[sizeof(\"X0212\")];\n    char stringpool_str310[sizeof(\"ECMA-114\")];\n    char stringpool_str312[sizeof(\"CSKZ1048\")];\n    char stringpool_str314[sizeof(\"ELOT_928\")];\n    char stringpool_str317[sizeof(\"STRK1048-2002\")];\n    char stringpool_str318[sizeof(\"IBM850\")];\n    char stringpool_str319[sizeof(\"ISO_8859-3:1988\")];\n    char stringpool_str321[sizeof(\"LATIN10\")];\n    char stringpool_str322[sizeof(\"UTF-16\")];\n    char stringpool_str324[sizeof(\"ECMA-118\")];\n    char stringpool_str327[sizeof(\"ISO-2022-CN\")];\n    char stringpool_str328[sizeof(\"LATIN3\")];\n    char stringpool_str330[sizeof(\"TIS620\")];\n    char stringpool_str331[sizeof(\"ISO_8859-1:1987\")];\n    char stringpool_str332[sizeof(\"UCS-4LE\")];\n    char stringpool_str333[sizeof(\"TIS-620\")];\n    char stringpool_str334[sizeof(\"HP15CN\")];\n    char stringpool_str337[sizeof(\"TCVN\")];\n    char stringpool_str338[sizeof(\"ISO_8859-6:1987\")];\n    char stringpool_str342[sizeof(\"CYRILLIC-ASIAN\")];\n    char stringpool_str345[sizeof(\"UCS-2LE\")];\n    char stringpool_str348[sizeof(\"X0208\")];\n    char stringpool_str349[sizeof(\"GB18030\")];\n    char stringpool_str350[sizeof(\"CSISO2022KR\")];\n    char stringpool_str351[sizeof(\"CYRILLIC\")];\n    char stringpool_str352[sizeof(\"UTF8\")];\n    char stringpool_str354[sizeof(\"MAC\")];\n    char stringpool_str355[sizeof(\"UTF-8\")];\n    char stringpool_str362[sizeof(\"CSVISCII\")];\n    char stringpool_str363[sizeof(\"ISO_8859-2:1987\")];\n    char stringpool_str365[sizeof(\"CP1257\")];\n    char stringpool_str368[sizeof(\"ISO-10646-UCS-4\")];\n    char stringpool_str371[sizeof(\"KS_C_5601-1987\")];\n    char stringpool_str373[sizeof(\"GB_2312-80\")];\n    char stringpool_str379[sizeof(\"CP367\")];\n    char stringpool_str380[sizeof(\"JP\")];\n    char stringpool_str381[sizeof(\"ISO-10646-UCS-2\")];\n    char stringpool_str387[sizeof(\"UNICODE-1-1\")];\n    char stringpool_str389[sizeof(\"ISO_8859-7:2003\")];\n    char stringpool_str390[sizeof(\"TIS620-0\")];\n    char stringpool_str393[sizeof(\"ARMSCII-8\")];\n    char stringpool_str394[sizeof(\"CSBIG5\")];\n    char stringpool_str395[sizeof(\"CSISOLATIN1\")];\n    char stringpool_str396[sizeof(\"US-ASCII\")];\n    char stringpool_str397[sizeof(\"CN-BIG5\")];\n    char stringpool_str399[sizeof(\"UTF-16LE\")];\n    char stringpool_str400[sizeof(\"TIS620.2529-1\")];\n    char stringpool_str401[sizeof(\"ANSI_X3.4-1986\")];\n    char stringpool_str404[sizeof(\"LATIN7\")];\n    char stringpool_str405[sizeof(\"CN-GB-ISOIR165\")];\n    char stringpool_str409[sizeof(\"CSISOLATIN6\")];\n    char stringpool_str415[sizeof(\"UHC\")];\n    char stringpool_str418[sizeof(\"KOI8-T\")];\n    char stringpool_str419[sizeof(\"MS-GREEK\")];\n    char stringpool_str420[sizeof(\"ANSI_X3.4-1968\")];\n    char stringpool_str423[sizeof(\"CSISOLATIN5\")];\n    char stringpool_str425[sizeof(\"WINDOWS-1251\")];\n    char stringpool_str427[sizeof(\"ISO_8859-7:1987\")];\n    char stringpool_str428[sizeof(\"CSISO2022CN\")];\n    char stringpool_str430[sizeof(\"UTF-32\")];\n    char stringpool_str431[sizeof(\"IBM367\")];\n    char stringpool_str432[sizeof(\"WINDOWS-1256\")];\n    char stringpool_str433[sizeof(\"CSISOLATIN4\")];\n    char stringpool_str436[sizeof(\"GEORGIAN-ACADEMY\")];\n    char stringpool_str439[sizeof(\"WINDOWS-1255\")];\n    char stringpool_str444[sizeof(\"WINDOWS-1254\")];\n    char stringpool_str445[sizeof(\"ASMO-708\")];\n    char stringpool_str446[sizeof(\"CSPTCP154\")];\n    char stringpool_str448[sizeof(\"ISO646-JP\")];\n    char stringpool_str449[sizeof(\"WINDOWS-936\")];\n    char stringpool_str451[sizeof(\"WINDOWS-1258\")];\n    char stringpool_str457[sizeof(\"WINDOWS-1252\")];\n    char stringpool_str459[sizeof(\"CSISOLATIN2\")];\n    char stringpool_str462[sizeof(\"IBM-CP1133\")];\n    char stringpool_str468[sizeof(\"CSUCS4\")];\n    char stringpool_str470[sizeof(\"CSKSC56011987\")];\n    char stringpool_str474[sizeof(\"ISO-2022-CN-EXT\")];\n    char stringpool_str477[sizeof(\"WINDOWS-1250\")];\n    char stringpool_str479[sizeof(\"HP-ROMAN8\")];\n    char stringpool_str482[sizeof(\"UTF-32LE\")];\n    char stringpool_str483[sizeof(\"WINDOWS-1253\")];\n    char stringpool_str485[sizeof(\"TIS620.2533-1\")];\n    char stringpool_str486[sizeof(\"UCS-4BE\")];\n    char stringpool_str487[sizeof(\"UCS-4-SWAPPED\")];\n    char stringpool_str489[sizeof(\"UNICODE-1-1-UTF-7\")];\n    char stringpool_str490[sizeof(\"UCS-4-INTERNAL\")];\n    char stringpool_str493[sizeof(\"TCVN5712-1\")];\n    char stringpool_str494[sizeof(\"CSIBM866\")];\n    char stringpool_str495[sizeof(\"UTF-7\")];\n    char stringpool_str499[sizeof(\"UCS-2BE\")];\n    char stringpool_str500[sizeof(\"UCS-2-SWAPPED\")];\n    char stringpool_str501[sizeof(\"MACICELAND\")];\n    char stringpool_str502[sizeof(\"CSUNICODE11\")];\n    char stringpool_str503[sizeof(\"UCS-2-INTERNAL\")];\n    char stringpool_str505[sizeof(\"ARABIC\")];\n    char stringpool_str511[sizeof(\"CSISOLATIN3\")];\n    char stringpool_str513[sizeof(\"CSEUCKR\")];\n    char stringpool_str515[sizeof(\"MACROMAN\")];\n    char stringpool_str516[sizeof(\"KOI8-U\")];\n    char stringpool_str518[sizeof(\"MACGREEK\")];\n    char stringpool_str519[sizeof(\"KOI8-RU\")];\n    char stringpool_str520[sizeof(\"TCVN-5712\")];\n    char stringpool_str521[sizeof(\"WINDOWS-1257\")];\n    char stringpool_str522[sizeof(\"EUCJP\")];\n    char stringpool_str523[sizeof(\"CSUNICODE\")];\n    char stringpool_str524[sizeof(\"CSISOLATINGREEK\")];\n    char stringpool_str525[sizeof(\"EUC-JP\")];\n    char stringpool_str526[sizeof(\"CN-GB\")];\n    char stringpool_str531[sizeof(\"CSGB2312\")];\n    char stringpool_str532[sizeof(\"CSISO57GB1988\")];\n    char stringpool_str536[sizeof(\"MS-HEBR\")];\n    char stringpool_str537[sizeof(\"TIS620.2533-0\")];\n    char stringpool_str538[sizeof(\"WINDOWS-874\")];\n    char stringpool_str541[sizeof(\"ISO-CELTIC\")];\n    char stringpool_str542[sizeof(\"BIGFIVE\")];\n    char stringpool_str545[sizeof(\"BIG-FIVE\")];\n    char stringpool_str553[sizeof(\"UTF-16BE\")];\n    char stringpool_str555[sizeof(\"CSISOLATINARABIC\")];\n    char stringpool_str571[sizeof(\"ISO-2022-JP\")];\n    char stringpool_str574[sizeof(\"ISO-2022-JP-1\")];\n    char stringpool_str575[sizeof(\"ISO-2022-JP-MS\")];\n    char stringpool_str581[sizeof(\"CSISO58GB231280\")];\n    char stringpool_str582[sizeof(\"CSHPROMAN8\")];\n    char stringpool_str584[sizeof(\"NEXTSTEP\")];\n    char stringpool_str594[sizeof(\"JIS0208\")];\n    char stringpool_str596[sizeof(\"CSISOLATINCYRILLIC\")];\n    char stringpool_str599[sizeof(\"CSISO159JISX02121990\")];\n    char stringpool_str601[sizeof(\"EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE\")];\n    char stringpool_str602[sizeof(\"CSUNICODE11UTF7\")];\n    char stringpool_str605[sizeof(\"HZ-GB-2312\")];\n    char stringpool_str606[sizeof(\"ISO-2022-JP-2\")];\n    char stringpool_str610[sizeof(\"MACCYRILLIC\")];\n    char stringpool_str612[sizeof(\"BIG5HKSCS\")];\n    char stringpool_str615[sizeof(\"BIG5-HKSCS\")];\n    char stringpool_str618[sizeof(\"EUCTW\")];\n    char stringpool_str621[sizeof(\"EUC-TW\")];\n    char stringpool_str624[sizeof(\"MS-ARAB\")];\n    char stringpool_str626[sizeof(\"MACROMANIA\")];\n    char stringpool_str636[sizeof(\"UTF-32BE\")];\n    char stringpool_str639[sizeof(\"JAVA\")];\n    char stringpool_str641[sizeof(\"MS-TURK\")];\n    char stringpool_str643[sizeof(\"SHIFT-JIS\")];\n    char stringpool_str644[sizeof(\"SHIFT_JIS\")];\n    char stringpool_str651[sizeof(\"CSISO14JISC6220RO\")];\n    char stringpool_str653[sizeof(\"JIS_C6220-1969-RO\")];\n    char stringpool_str655[sizeof(\"MACTHAI\")];\n    char stringpool_str659[sizeof(\"JIS_C6226-1983\")];\n    char stringpool_str671[sizeof(\"TCVN5712-1:1993\")];\n    char stringpool_str672[sizeof(\"CSISO2022JP\")];\n    char stringpool_str676[sizeof(\"MS_KANJI\")];\n    char stringpool_str680[sizeof(\"MACUKRAINE\")];\n    char stringpool_str696[sizeof(\"MACCROATIAN\")];\n    char stringpool_str698[sizeof(\"HEBREW\")];\n    char stringpool_str699[sizeof(\"UNICODEBIG\")];\n    char stringpool_str700[sizeof(\"CSPC862LATINHEBREW\")];\n    char stringpool_str706[sizeof(\"CSISO2022JP2\")];\n    char stringpool_str719[sizeof(\"CSISOLATINHEBREW\")];\n    char stringpool_str723[sizeof(\"WCHAR_T\")];\n    char stringpool_str731[sizeof(\"MACCENTRALEUROPE\")];\n    char stringpool_str734[sizeof(\"BIG5-HKSCS:1999\")];\n    char stringpool_str735[sizeof(\"BIG5-HKSCS:2001\")];\n    char stringpool_str738[sizeof(\"JIS_X0201\")];\n    char stringpool_str749[sizeof(\"UNICODELITTLE\")];\n    char stringpool_str750[sizeof(\"JIS_X0212\")];\n    char stringpool_str754[sizeof(\"BIG5-HKSCS:2004\")];\n    char stringpool_str755[sizeof(\"JISX0201-1976\")];\n    char stringpool_str760[sizeof(\"MACARABIC\")];\n    char stringpool_str761[sizeof(\"BIG5-HKSCS:2008\")];\n    char stringpool_str781[sizeof(\"JIS_X0212-1990\")];\n    char stringpool_str790[sizeof(\"JIS_X0208\")];\n    char stringpool_str791[sizeof(\"MACINTOSH\")];\n    char stringpool_str803[sizeof(\"JIS_X0212.1990-0\")];\n    char stringpool_str827[sizeof(\"JIS_X0208-1990\")];\n    char stringpool_str833[sizeof(\"JIS_X0208-1983\")];\n    char stringpool_str864[sizeof(\"CSISO87JISX0208\")];\n    char stringpool_str880[sizeof(\"CSPC850MULTILINGUAL\")];\n    char stringpool_str898[sizeof(\"WINBALTRIM\")];\n    char stringpool_str912[sizeof(\"CSSHIFTJIS\")];\n    char stringpool_str931[sizeof(\"CSEUCTW\")];\n    char stringpool_str950[sizeof(\"CSEUCPKDFMTJAPANESE\")];\n    char stringpool_str951[sizeof(\"JOHAB\")];\n    char stringpool_str956[sizeof(\"CSMACINTOSH\")];\n    char stringpool_str986[sizeof(\"MACHEBREW\")];\n    char stringpool_str1001[sizeof(\"CSHALFWIDTHKATAKANA\")];\n    char stringpool_str1033[sizeof(\"MACTURKISH\")];\n  };\nstatic const struct stringpool_t stringpool_contents =\n  {\n    \"SJIS\",\n    \"L1\",\n    \"L6\",\n    \"R8\",\n    \"L5\",\n    \"L4\",\n    \"ISO-IR-199\",\n    \"L8\",\n    \"ISO-IR-6\",\n    \"L2\",\n    \"866\",\n    \"ISO-IR-159\",\n    \"ISO-IR-149\",\n    \"ISO-IR-166\",\n    \"PT154\",\n    \"ISO-IR-14\",\n    \"L3\",\n    \"ISO-IR-165\",\n    \"ISO-IR-126\",\n    \"ISO-IR-109\",\n    \"ISO-IR-101\",\n    \"KOI8-R\",\n    \"ISO-IR-144\",\n    \"862\",\n    \"ISO88599\",\n    \"ISO-IR-58\",\n    \"ISO88591\",\n    \"ISO8859-9\",\n    \"C99\",\n    \"ISO8859-1\",\n    \"ISO-8859-9\",\n    \"ISO_8859-9\",\n    \"ISO-8859-1\",\n    \"ISO_8859-1\",\n    \"ISO8859-11\",\n    \"ISO-IR-148\",\n    \"L7\",\n    \"ISO-8859-11\",\n    \"ISO_8859-11\",\n    \"CN\",\n    \"ISO88596\",\n    \"ISO-IR-226\",\n    \"ISO8859-6\",\n    \"ISO-8859-6\",\n    \"ISO_8859-6\",\n    \"ISO8859-16\",\n    \"L10\",\n    \"ISO_8859-16:2001\",\n    \"ISO-8859-16\",\n    \"ISO_8859-16\",\n    \"ISO88595\",\n    \"CP949\",\n    \"ISO8859-5\",\n    \"ISO-IR-179\",\n    \"ISO885915\",\n    \"ISO-8859-5\",\n    \"ISO_8859-5\",\n    \"ISO8859-15\",\n    \"850\",\n    \"CP819\",\n    \"ISO-8859-15\",\n    \"ISO_8859-15\",\n    \"ISO8859-4\",\n    \"ISO-IR-110\",\n    \"RK1048\",\n    \"ISO-8859-4\",\n    \"ISO_8859-4\",\n    \"ISO8859-14\",\n    \"ISO-IR-138\",\n    \"ISO-8859-14\",\n    \"ISO_8859-14\",\n    \"ISO88598\",\n    \"ISO8859-8\",\n    \"ISO_8859-15:1998\",\n    \"ISO-8859-8\",\n    \"ISO_8859-8\",\n    \"CP866\",\n    \"ISO_8859-14:1998\",\n    \"CHAR\",\n    \"ISO88592\",\n    \"CP1251\",\n    \"CP154\",\n    \"ISO8859-2\",\n    \"HZ\",\n    \"ASCII\",\n    \"ISO-8859-2\",\n    \"ISO_8859-2\",\n    \"PTCP154\",\n    \"CP1131\",\n    \"CP1256\",\n    \"GBK\",\n    \"CP1361\",\n    \"CP936\",\n    \"KOREAN\",\n    \"IBM819\",\n    \"EUCKR\",\n    \"CP1255\",\n    \"ISO-IR-100\",\n    \"EUC-KR\",\n    \"ISO646-CN\",\n    \"KZ-1048\",\n    \"CSKOI8R\",\n    \"ISO_8859-10:1992\",\n    \"CP1254\",\n    \"LATIN1\",\n    \"LATIN-9\",\n    \"US\",\n    \"CP862\",\n    \"ISO8859-10\",\n    \"IBM866\",\n    \"ISO-8859-10\",\n    \"ISO_8859-10\",\n    \"CP1258\",\n    \"LATIN6\",\n    \"ISO8859-3\",\n    \"ISO-8859-3\",\n    \"ISO_8859-3\",\n    \"ISO8859-13\",\n    \"ISO_8859-9:1989\",\n    \"ISO-8859-13\",\n    \"ISO_8859-13\",\n    \"CP1252\",\n    \"CHINESE\",\n    \"CP950\",\n    \"LATIN5\",\n    \"MS936\",\n    \"ISO_646.IRV:1991\",\n    \"CP932\",\n    \"ISO-IR-203\",\n    \"ISO-IR-57\",\n    \"MS-ANSI\",\n    \"ISO-2022-KR\",\n    \"LATIN4\",\n    \"ISO-IR-157\",\n    \"VISCII\",\n    \"GB2312\",\n    \"ISO-IR-87\",\n    \"KSC_5601\",\n    \"MS-EE\",\n    \"CP50221\",\n    \"GREEK\",\n    \"LATIN8\",\n    \"CP850\",\n    \"UCS-4\",\n    \"GREEK8\",\n    \"ISO-IR-127\",\n    \"IBM862\",\n    \"GEORGIAN-PS\",\n    \"KS_C_5601-1989\",\n    \"ISO_8859-5:1988\",\n    \"LATIN2\",\n    \"CP1250\",\n    \"EUCCN\",\n    \"ISO_8859-4:1988\",\n    \"EUC-CN\",\n    \"CP874\",\n    \"CSASCII\",\n    \"ISO646-US\",\n    \"ISO_8859-8:1988\",\n    \"BIG5\",\n    \"CP1253\",\n    \"BIG-5\",\n    \"UCS-2\",\n    \"X0201\",\n    \"ROMAN8\",\n    \"VISCII1.1-1\",\n    \"MS-CYRL\",\n    \"ISO88597\",\n    \"CP1133\",\n    \"GB_1988-80\",\n    \"ISO8859-7\",\n    \"MULELAO-1\",\n    \"ISO-8859-7\",\n    \"ISO_8859-7\",\n    \"X0212\",\n    \"ECMA-114\",\n    \"CSKZ1048\",\n    \"ELOT_928\",\n    \"STRK1048-2002\",\n    \"IBM850\",\n    \"ISO_8859-3:1988\",\n    \"LATIN10\",\n    \"UTF-16\",\n    \"ECMA-118\",\n    \"ISO-2022-CN\",\n    \"LATIN3\",\n    \"TIS620\",\n    \"ISO_8859-1:1987\",\n    \"UCS-4LE\",\n    \"TIS-620\",\n    \"HP15CN\",\n    \"TCVN\",\n    \"ISO_8859-6:1987\",\n    \"CYRILLIC-ASIAN\",\n    \"UCS-2LE\",\n    \"X0208\",\n    \"GB18030\",\n    \"CSISO2022KR\",\n    \"CYRILLIC\",\n    \"UTF8\",\n    \"MAC\",\n    \"UTF-8\",\n    \"CSVISCII\",\n    \"ISO_8859-2:1987\",\n    \"CP1257\",\n    \"ISO-10646-UCS-4\",\n    \"KS_C_5601-1987\",\n    \"GB_2312-80\",\n    \"CP367\",\n    \"JP\",\n    \"ISO-10646-UCS-2\",\n    \"UNICODE-1-1\",\n    \"ISO_8859-7:2003\",\n    \"TIS620-0\",\n    \"ARMSCII-8\",\n    \"CSBIG5\",\n    \"CSISOLATIN1\",\n    \"US-ASCII\",\n    \"CN-BIG5\",\n    \"UTF-16LE\",\n    \"TIS620.2529-1\",\n    \"ANSI_X3.4-1986\",\n    \"LATIN7\",\n    \"CN-GB-ISOIR165\",\n    \"CSISOLATIN6\",\n    \"UHC\",\n    \"KOI8-T\",\n    \"MS-GREEK\",\n    \"ANSI_X3.4-1968\",\n    \"CSISOLATIN5\",\n    \"WINDOWS-1251\",\n    \"ISO_8859-7:1987\",\n    \"CSISO2022CN\",\n    \"UTF-32\",\n    \"IBM367\",\n    \"WINDOWS-1256\",\n    \"CSISOLATIN4\",\n    \"GEORGIAN-ACADEMY\",\n    \"WINDOWS-1255\",\n    \"WINDOWS-1254\",\n    \"ASMO-708\",\n    \"CSPTCP154\",\n    \"ISO646-JP\",\n    \"WINDOWS-936\",\n    \"WINDOWS-1258\",\n    \"WINDOWS-1252\",\n    \"CSISOLATIN2\",\n    \"IBM-CP1133\",\n    \"CSUCS4\",\n    \"CSKSC56011987\",\n    \"ISO-2022-CN-EXT\",\n    \"WINDOWS-1250\",\n    \"HP-ROMAN8\",\n    \"UTF-32LE\",\n    \"WINDOWS-1253\",\n    \"TIS620.2533-1\",\n    \"UCS-4BE\",\n    \"UCS-4-SWAPPED\",\n    \"UNICODE-1-1-UTF-7\",\n    \"UCS-4-INTERNAL\",\n    \"TCVN5712-1\",\n    \"CSIBM866\",\n    \"UTF-7\",\n    \"UCS-2BE\",\n    \"UCS-2-SWAPPED\",\n    \"MACICELAND\",\n    \"CSUNICODE11\",\n    \"UCS-2-INTERNAL\",\n    \"ARABIC\",\n    \"CSISOLATIN3\",\n    \"CSEUCKR\",\n    \"MACROMAN\",\n    \"KOI8-U\",\n    \"MACGREEK\",\n    \"KOI8-RU\",\n    \"TCVN-5712\",\n    \"WINDOWS-1257\",\n    \"EUCJP\",\n    \"CSUNICODE\",\n    \"CSISOLATINGREEK\",\n    \"EUC-JP\",\n    \"CN-GB\",\n    \"CSGB2312\",\n    \"CSISO57GB1988\",\n    \"MS-HEBR\",\n    \"TIS620.2533-0\",\n    \"WINDOWS-874\",\n    \"ISO-CELTIC\",\n    \"BIGFIVE\",\n    \"BIG-FIVE\",\n    \"UTF-16BE\",\n    \"CSISOLATINARABIC\",\n    \"ISO-2022-JP\",\n    \"ISO-2022-JP-1\",\n    \"ISO-2022-JP-MS\",\n    \"CSISO58GB231280\",\n    \"CSHPROMAN8\",\n    \"NEXTSTEP\",\n    \"JIS0208\",\n    \"CSISOLATINCYRILLIC\",\n    \"CSISO159JISX02121990\",\n    \"EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE\",\n    \"CSUNICODE11UTF7\",\n    \"HZ-GB-2312\",\n    \"ISO-2022-JP-2\",\n    \"MACCYRILLIC\",\n    \"BIG5HKSCS\",\n    \"BIG5-HKSCS\",\n    \"EUCTW\",\n    \"EUC-TW\",\n    \"MS-ARAB\",\n    \"MACROMANIA\",\n    \"UTF-32BE\",\n    \"JAVA\",\n    \"MS-TURK\",\n    \"SHIFT-JIS\",\n    \"SHIFT_JIS\",\n    \"CSISO14JISC6220RO\",\n    \"JIS_C6220-1969-RO\",\n    \"MACTHAI\",\n    \"JIS_C6226-1983\",\n    \"TCVN5712-1:1993\",\n    \"CSISO2022JP\",\n    \"MS_KANJI\",\n    \"MACUKRAINE\",\n    \"MACCROATIAN\",\n    \"HEBREW\",\n    \"UNICODEBIG\",\n    \"CSPC862LATINHEBREW\",\n    \"CSISO2022JP2\",\n    \"CSISOLATINHEBREW\",\n    \"WCHAR_T\",\n    \"MACCENTRALEUROPE\",\n    \"BIG5-HKSCS:1999\",\n    \"BIG5-HKSCS:2001\",\n    \"JIS_X0201\",\n    \"UNICODELITTLE\",\n    \"JIS_X0212\",\n    \"BIG5-HKSCS:2004\",\n    \"JISX0201-1976\",\n    \"MACARABIC\",\n    \"BIG5-HKSCS:2008\",\n    \"JIS_X0212-1990\",\n    \"JIS_X0208\",\n    \"MACINTOSH\",\n    \"JIS_X0212.1990-0\",\n    \"JIS_X0208-1990\",\n    \"JIS_X0208-1983\",\n    \"CSISO87JISX0208\",\n    \"CSPC850MULTILINGUAL\",\n    \"WINBALTRIM\",\n    \"CSSHIFTJIS\",\n    \"CSEUCTW\",\n    \"CSEUCPKDFMTJAPANESE\",\n    \"JOHAB\",\n    \"CSMACINTOSH\",\n    \"MACHEBREW\",\n    \"CSHALFWIDTHKATAKANA\",\n    \"MACTURKISH\"\n  };\n#define stringpool ((const char *) &stringpool_contents)\n\nstatic const struct alias aliases[] =\n  {\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1},\n#line 317 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str19, ei_sjis},\n    {-1}, {-1},\n#line 61 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str22, ei_iso8859_1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 142 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str29, ei_iso8859_10},\n    {-1}, {-1}, {-1}, {-1},\n#line 236 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str34, ei_hp_roman8},\n    {-1},\n#line 133 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str36, ei_iso8859_9},\n    {-1}, {-1}, {-1}, {-1},\n#line 87 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str41, ei_iso8859_4},\n    {-1},\n#line 157 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str43, ei_iso8859_14},\n    {-1}, {-1}, {-1}, {-1},\n#line 159 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str48, ei_iso8859_14},\n    {-1},\n#line 16 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str50, ei_ascii},\n    {-1}, {-1}, {-1},\n#line 70 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str54, ei_iso8859_2},\n#line 216 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str55, ei_cp866},\n    {-1}, {-1},\n#line 292 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str58, ei_jisx0212},\n    {-1}, {-1}, {-1}, {-1},\n#line 308 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str63, ei_ksc5601},\n    {-1}, {-1}, {-1},\n#line 261 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str67, ei_tis620},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 243 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str76, ei_pt154},\n    {-1}, {-1},\n#line 273 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str79, ei_iso646_jp},\n#line 79 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str80, ei_iso8859_3},\n#line 303 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str81, ei_isoir165},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1},\n#line 112 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str92, ei_iso8859_7},\n    {-1}, {-1}, {-1},\n#line 77 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str96, ei_iso8859_3},\n    {-1},\n#line 68 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str98, ei_iso8859_2},\n    {-1},\n#line 176 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str100, ei_koi8_r},\n    {-1}, {-1},\n#line 93 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str103, ei_iso8859_5},\n    {-1},\n#line 212 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str105, ei_cp862},\n#line 136 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str106, ei_iso8859_9},\n#line 300 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str107, ei_gb2312},\n#line 64 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str108, ei_iso8859_1},\n#line 135 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str109, ei_iso8859_9},\n#line 52 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str110, ei_c99},\n#line 63 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str111, ei_iso8859_1},\n#line 128 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str112, ei_iso8859_9},\n#line 129 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str113, ei_iso8859_9},\n#line 54 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str114, ei_iso8859_1},\n#line 55 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str115, ei_iso8859_1},\n#line 147 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str116, ei_iso8859_11},\n#line 131 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str117, ei_iso8859_9},\n#line 152 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str118, ei_iso8859_13},\n#line 145 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str119, ei_iso8859_11},\n#line 146 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str120, ei_iso8859_11},\n#line 297 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str121, ei_iso646_cn},\n#line 107 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str122, ei_iso8859_6},\n    {-1},\n#line 172 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str124, ei_iso8859_16},\n#line 106 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str125, ei_iso8859_6},\n    {-1}, {-1},\n#line 98 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str128, ei_iso8859_6},\n#line 99 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str129, ei_iso8859_6},\n#line 175 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str130, ei_iso8859_16},\n#line 174 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str131, ei_iso8859_16},\n#line 171 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str132, ei_iso8859_16},\n#line 169 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str133, ei_iso8859_16},\n#line 170 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str134, ei_iso8859_16},\n    {-1},\n#line 97 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str136, ei_iso8859_5},\n    {-1},\n#line 363 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str138, ei_cp949},\n#line 96 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str139, ei_iso8859_5},\n#line 150 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str140, ei_iso8859_13},\n#line 168 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str141, ei_iso8859_15},\n#line 90 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str142, ei_iso8859_5},\n#line 91 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str143, ei_iso8859_5},\n#line 167 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str144, ei_iso8859_15},\n#line 208 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str145, ei_cp850},\n#line 58 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str146, ei_iso8859_1},\n#line 162 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str147, ei_iso8859_15},\n#line 163 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str148, ei_iso8859_15},\n#line 89 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str149, ei_iso8859_4},\n#line 85 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str150, ei_iso8859_4},\n#line 248 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str151, ei_rk1048},\n#line 82 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str152, ei_iso8859_4},\n#line 83 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str153, ei_iso8859_4},\n#line 161 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str154, ei_iso8859_14},\n    {-1},\n#line 123 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str156, ei_iso8859_8},\n#line 154 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str157, ei_iso8859_14},\n#line 155 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str158, ei_iso8859_14},\n    {-1},\n#line 127 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str160, ei_iso8859_8},\n    {-1}, {-1},\n#line 126 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str163, ei_iso8859_8},\n    {-1},\n#line 164 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str165, ei_iso8859_15},\n#line 120 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str166, ei_iso8859_8},\n#line 121 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str167, ei_iso8859_8},\n    {-1},\n#line 214 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str169, ei_cp866},\n#line 156 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str170, ei_iso8859_14},\n#line 369 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str171, ei_local_char},\n#line 73 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str172, ei_iso8859_2},\n#line 183 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str173, ei_cp1251},\n#line 245 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str174, ei_pt154},\n#line 72 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str175, ei_iso8859_2},\n#line 342 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str176, ei_hz},\n#line 13 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str177, ei_ascii},\n#line 65 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str178, ei_iso8859_2},\n#line 66 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str179, ei_iso8859_2},\n    {-1}, {-1},\n#line 244 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str182, ei_pt154},\n    {-1}, {-1},\n#line 218 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str185, ei_cp1131},\n    {-1},\n#line 198 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str187, ei_cp1256},\n    {-1}, {-1}, {-1},\n#line 334 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str191, ei_ces_gbk},\n#line 366 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str192, ei_johab},\n#line 335 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str193, ei_cp936},\n    {-1}, {-1},\n#line 310 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str196, ei_ksc5601},\n    {-1},\n#line 59 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str198, ei_iso8859_1},\n    {-1},\n#line 361 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str200, ei_euc_kr},\n#line 195 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str201, ei_cp1255},\n#line 57 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str202, ei_iso8859_1},\n#line 360 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str203, ei_euc_kr},\n#line 295 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str204, ei_iso646_cn},\n    {-1}, {-1},\n#line 250 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str207, ei_rk1048},\n#line 177 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str208, ei_koi8_r},\n#line 139 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str209, ei_iso8859_10},\n    {-1},\n#line 192 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str211, ei_cp1254},\n#line 60 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str212, ei_iso8859_1},\n#line 166 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str213, ei_iso8859_15},\n    {-1}, {-1},\n#line 21 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str216, ei_ascii},\n    {-1}, {-1},\n#line 210 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str219, ei_cp862},\n#line 144 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str220, ei_iso8859_10},\n#line 215 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str221, ei_cp866},\n    {-1},\n#line 137 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str223, ei_iso8859_10},\n#line 138 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str224, ei_iso8859_10},\n#line 204 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str225, ei_cp1258},\n#line 141 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str226, ei_iso8859_10},\n#line 81 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str227, ei_iso8859_3},\n    {-1}, {-1},\n#line 74 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str230, ei_iso8859_3},\n#line 75 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str231, ei_iso8859_3},\n#line 153 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str232, ei_iso8859_13},\n#line 130 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str233, ei_iso8859_9},\n    {-1},\n#line 148 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str235, ei_iso8859_13},\n#line 149 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str236, ei_iso8859_13},\n#line 186 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str237, ei_cp1252},\n#line 302 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str238, ei_gb2312},\n#line 353 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str239, ei_cp950},\n#line 132 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str240, ei_iso8859_9},\n#line 336 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str241, ei_cp936},\n#line 15 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str242, ei_ascii},\n#line 320 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str243, ei_cp932},\n    {-1}, {-1},\n#line 165 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str246, ei_iso8859_15},\n#line 296 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str247, ei_iso646_cn},\n#line 188 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str248, ei_cp1252},\n#line 367 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str249, ei_iso2022_kr},\n#line 86 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str250, ei_iso8859_4},\n    {-1},\n#line 140 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str252, ei_iso8859_10},\n    {-1}, {-1}, {-1},\n#line 264 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str256, ei_viscii},\n    {-1},\n#line 330 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str258, ei_euc_cn},\n#line 285 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str259, ei_jisx0208},\n#line 305 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str260, ei_ksc5601},\n#line 182 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str261, ei_cp1250},\n#line 327 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str262, ei_iso2022_jpms},\n#line 116 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str263, ei_iso8859_7},\n#line 158 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str264, ei_iso8859_14},\n    {-1},\n#line 206 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str266, ei_cp850},\n#line 34 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str267, ei_ucs4},\n    {-1},\n#line 115 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str269, ei_iso8859_7},\n#line 101 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str270, ei_iso8859_6},\n#line 211 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str271, ei_cp862},\n    {-1},\n#line 241 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str273, ei_georgian_ps},\n#line 307 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str274, ei_ksc5601},\n#line 92 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str275, ei_iso8859_5},\n#line 69 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str276, ei_iso8859_2},\n#line 180 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str277, ei_cp1250},\n#line 329 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str278, ei_euc_cn},\n    {-1},\n#line 84 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str280, ei_iso8859_4},\n#line 328 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str281, ei_euc_cn},\n#line 262 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str282, ei_cp874},\n    {-1},\n#line 22 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str284, ei_ascii},\n#line 14 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str285, ei_ascii},\n    {-1},\n#line 122 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str287, ei_iso8859_8},\n#line 347 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str288, ei_ces_big5},\n#line 189 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str289, ei_cp1253},\n    {-1},\n#line 348 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str291, ei_ces_big5},\n    {-1},\n#line 25 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str293, ei_ucs2},\n    {-1}, {-1},\n#line 278 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str296, ei_jisx0201},\n#line 235 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str297, ei_hp_roman8},\n#line 265 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str298, ei_viscii},\n#line 185 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str299, ei_cp1251},\n#line 119 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str300, ei_iso8859_7},\n#line 253 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str301, ei_cp1133},\n#line 294 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str302, ei_iso646_cn},\n#line 118 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str303, ei_iso8859_7},\n    {-1},\n#line 252 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str305, ei_mulelao},\n#line 108 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str306, ei_iso8859_7},\n#line 109 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str307, ei_iso8859_7},\n#line 291 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str308, ei_jisx0212},\n    {-1},\n#line 102 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str310, ei_iso8859_6},\n    {-1},\n#line 251 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str312, ei_rk1048},\n    {-1},\n#line 114 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str314, ei_iso8859_7},\n    {-1}, {-1},\n#line 249 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str317, ei_rk1048},\n#line 207 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str318, ei_cp850},\n#line 76 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str319, ei_iso8859_3},\n    {-1},\n#line 173 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str321, ei_iso8859_16},\n#line 39 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str322, ei_utf16},\n    {-1},\n#line 113 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str324, ei_iso8859_7},\n    {-1}, {-1},\n#line 339 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str327, ei_iso2022_cn},\n#line 78 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str328, ei_iso8859_3},\n    {-1},\n#line 256 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str330, ei_tis620},\n#line 56 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str331, ei_iso8859_1},\n#line 38 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str332, ei_ucs4le},\n#line 255 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str333, ei_tis620},\n#line 333 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str334, ei_euc_cn},\n    {-1}, {-1},\n#line 267 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str337, ei_tcvn},\n#line 100 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str338, ei_iso8859_6},\n    {-1}, {-1}, {-1},\n#line 246 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str342, ei_pt154},\n    {-1}, {-1},\n#line 32 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str345, ei_ucs2le},\n    {-1}, {-1},\n#line 284 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str348, ei_jisx0208},\n#line 338 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str349, ei_gb18030},\n#line 368 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str350, ei_iso2022_kr},\n#line 94 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str351, ei_iso8859_5},\n#line 24 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str352, ei_utf8},\n    {-1},\n#line 221 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str354, ei_mac_roman},\n#line 23 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str355, ei_utf8},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 266 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str362, ei_viscii},\n#line 67 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str363, ei_iso8859_2},\n    {-1},\n#line 201 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str365, ei_cp1257},\n    {-1}, {-1},\n#line 35 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str368, ei_ucs4},\n    {-1}, {-1},\n#line 306 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str371, ei_ksc5601},\n    {-1},\n#line 299 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str373, ei_gb2312},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 19 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str379, ei_ascii},\n#line 274 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str380, ei_iso646_jp},\n#line 26 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str381, ei_ucs2},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 30 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str387, ei_ucs2be},\n    {-1},\n#line 111 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str389, ei_iso8859_7},\n#line 257 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str390, ei_tis620},\n    {-1}, {-1},\n#line 239 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str393, ei_armscii_8},\n#line 352 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str394, ei_ces_big5},\n#line 62 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str395, ei_iso8859_1},\n#line 12 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str396, ei_ascii},\n#line 351 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str397, ei_ces_big5},\n    {-1},\n#line 41 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str399, ei_utf16le},\n#line 258 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str400, ei_tis620},\n#line 18 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str401, ei_ascii},\n    {-1}, {-1},\n#line 151 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str404, ei_iso8859_13},\n#line 304 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str405, ei_isoir165},\n    {-1}, {-1}, {-1},\n#line 143 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str409, ei_iso8859_10},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 364 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str415, ei_cp949},\n    {-1}, {-1},\n#line 242 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str418, ei_koi8_t},\n#line 191 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str419, ei_cp1253},\n#line 17 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str420, ei_ascii},\n    {-1}, {-1},\n#line 134 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str423, ei_iso8859_9},\n    {-1},\n#line 184 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str425, ei_cp1251},\n    {-1},\n#line 110 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str427, ei_iso8859_7},\n#line 340 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str428, ei_iso2022_cn},\n    {-1},\n#line 42 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str430, ei_utf32},\n#line 20 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str431, ei_ascii},\n#line 199 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str432, ei_cp1256},\n#line 88 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str433, ei_iso8859_4},\n    {-1}, {-1},\n#line 240 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str436, ei_georgian_academy},\n    {-1}, {-1},\n#line 196 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str439, ei_cp1255},\n    {-1}, {-1}, {-1}, {-1},\n#line 193 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str444, ei_cp1254},\n#line 103 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str445, ei_iso8859_6},\n#line 247 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str446, ei_pt154},\n    {-1},\n#line 272 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str448, ei_iso646_jp},\n#line 337 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str449, ei_cp936},\n    {-1},\n#line 205 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str451, ei_cp1258},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 187 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str457, ei_cp1252},\n    {-1},\n#line 71 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str459, ei_iso8859_2},\n    {-1}, {-1},\n#line 254 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str462, ei_cp1133},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 36 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str468, ei_ucs4},\n    {-1},\n#line 309 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str470, ei_ksc5601},\n    {-1}, {-1}, {-1},\n#line 341 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str474, ei_iso2022_cn_ext},\n    {-1}, {-1},\n#line 181 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str477, ei_cp1250},\n    {-1},\n#line 234 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str479, ei_hp_roman8},\n    {-1}, {-1},\n#line 44 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str482, ei_utf32le},\n#line 190 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str483, ei_cp1253},\n    {-1},\n#line 260 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str485, ei_tis620},\n#line 37 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str486, ei_ucs4be},\n#line 51 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str487, ei_ucs4swapped},\n    {-1},\n#line 46 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str489, ei_utf7},\n#line 50 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str490, ei_ucs4internal},\n    {-1}, {-1},\n#line 269 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str493, ei_tcvn},\n#line 217 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str494, ei_cp866},\n#line 45 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str495, ei_utf7},\n    {-1}, {-1}, {-1},\n#line 28 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str499, ei_ucs2be},\n#line 49 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str500, ei_ucs2swapped},\n#line 224 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str501, ei_mac_iceland},\n#line 31 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str502, ei_ucs2be},\n#line 48 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str503, ei_ucs2internal},\n    {-1},\n#line 104 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str505, ei_iso8859_6},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 80 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str511, ei_iso8859_3},\n    {-1},\n#line 362 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str513, ei_euc_kr},\n    {-1},\n#line 219 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str515, ei_mac_roman},\n#line 178 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str516, ei_koi8_u},\n    {-1},\n#line 229 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str518, ei_mac_greek},\n#line 179 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str519, ei_koi8_ru},\n#line 268 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str520, ei_tcvn},\n#line 202 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str521, ei_cp1257},\n#line 312 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str522, ei_euc_jp},\n#line 27 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str523, ei_ucs2},\n#line 117 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str524, ei_iso8859_7},\n#line 311 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str525, ei_euc_jp},\n#line 331 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str526, ei_euc_cn},\n    {-1}, {-1}, {-1}, {-1},\n#line 332 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str531, ei_euc_cn},\n#line 298 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str532, ei_iso646_cn},\n    {-1}, {-1}, {-1},\n#line 197 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str536, ei_cp1255},\n#line 259 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str537, ei_tis620},\n#line 263 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str538, ei_cp874},\n    {-1}, {-1},\n#line 160 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str541, ei_iso8859_14},\n#line 350 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str542, ei_ces_big5},\n    {-1}, {-1},\n#line 349 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str545, ei_ces_big5},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 40 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str553, ei_utf16be},\n    {-1},\n#line 105 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str555, ei_iso8859_6},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 321 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str571, ei_iso2022_jp},\n    {-1}, {-1},\n#line 323 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str574, ei_iso2022_jp1},\n#line 326 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str575, ei_iso2022_jpms},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 301 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str581, ei_gb2312},\n#line 237 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str582, ei_hp_roman8},\n    {-1},\n#line 238 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str584, ei_nextstep},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 283 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str594, ei_jisx0208},\n    {-1},\n#line 95 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str596, ei_iso8859_5},\n    {-1}, {-1},\n#line 293 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str599, ei_jisx0212},\n    {-1},\n#line 313 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str601, ei_euc_jp},\n#line 47 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str602, ei_utf7},\n    {-1}, {-1},\n#line 343 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str605, ei_hz},\n#line 324 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str606, ei_iso2022_jp2},\n    {-1}, {-1}, {-1},\n#line 227 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str610, ei_mac_cyrillic},\n    {-1},\n#line 358 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str612, ei_big5hkscs2008},\n    {-1}, {-1},\n#line 357 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str615, ei_big5hkscs2008},\n    {-1}, {-1},\n#line 345 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str618, ei_euc_tw},\n    {-1}, {-1},\n#line 344 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str621, ei_euc_tw},\n    {-1}, {-1},\n#line 200 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str624, ei_cp1256},\n    {-1},\n#line 226 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str626, ei_mac_romania},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 43 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str636, ei_utf32be},\n    {-1}, {-1},\n#line 53 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str639, ei_java},\n    {-1},\n#line 194 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str641, ei_cp1254},\n    {-1},\n#line 316 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str643, ei_sjis},\n#line 315 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str644, ei_sjis},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 275 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str651, ei_iso646_jp},\n    {-1},\n#line 271 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str653, ei_iso646_jp},\n    {-1},\n#line 233 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str655, ei_mac_thai},\n    {-1}, {-1}, {-1},\n#line 286 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str659, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1},\n#line 270 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str671, ei_tcvn},\n#line 322 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str672, ei_iso2022_jp},\n    {-1}, {-1}, {-1},\n#line 318 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str676, ei_sjis},\n    {-1}, {-1}, {-1},\n#line 228 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str680, ei_mac_ukraine},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 225 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str696, ei_mac_croatian},\n    {-1},\n#line 124 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str698, ei_iso8859_8},\n#line 29 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str699, ei_ucs2be},\n#line 213 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str700, ei_cp862},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 325 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str706, ei_iso2022_jp2},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1},\n#line 125 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str719, ei_iso8859_8},\n    {-1}, {-1}, {-1},\n#line 370 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str723, ei_local_wchar_t},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 223 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str731, ei_mac_centraleurope},\n    {-1}, {-1},\n#line 354 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str734, ei_big5hkscs1999},\n#line 355 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str735, ei_big5hkscs2001},\n    {-1}, {-1},\n#line 276 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str738, ei_jisx0201},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1},\n#line 33 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str749, ei_ucs2le},\n#line 288 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str750, ei_jisx0212},\n    {-1}, {-1}, {-1},\n#line 356 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str754, ei_big5hkscs2004},\n#line 277 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str755, ei_jisx0201},\n    {-1}, {-1}, {-1}, {-1},\n#line 232 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str760, ei_mac_arabic},\n#line 359 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str761, ei_big5hkscs2008},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1},\n#line 290 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str781, ei_jisx0212},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 280 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str790, ei_jisx0208},\n#line 220 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str791, ei_mac_roman},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1},\n#line 289 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str803, ei_jisx0212},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 282 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str827, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 281 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str833, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1},\n#line 287 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str864, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 209 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str880, ei_cp850},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 203 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str898, ei_cp1257},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1},\n#line 319 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str912, ei_sjis},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 346 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str931, ei_euc_tw},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 314 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str950, ei_euc_jp},\n#line 365 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str951, ei_johab},\n    {-1}, {-1}, {-1}, {-1},\n#line 222 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str956, ei_mac_roman},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1},\n#line 231 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str986, ei_mac_hebrew},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 279 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str1001, ei_jisx0201},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1},\n#line 230 \"lib/aliases_syshpux.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str1033, ei_mac_turkish}\n  };\n\n#ifdef __GNUC__\n__inline\n#if defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__\n__attribute__ ((__gnu_inline__))\n#endif\n#endif\nconst struct alias *\naliases_lookup (register const char *str, register unsigned int len)\n{\n  if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)\n    {\n      register int key = aliases_hash (str, len);\n\n      if (key <= MAX_HASH_VALUE && key >= 0)\n        {\n          register int o = aliases[key].name;\n          if (o >= 0)\n            {\n              register const char *s = o + stringpool;\n\n              if (*str == *s && !strcmp (str + 1, s + 1))\n                return &aliases[key];\n            }\n        }\n    }\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_sysosf1.gperf",
    "content": "struct alias { int name; unsigned int encoding_index; };\n%struct-type\n%language=ANSI-C\n%define hash-function-name aliases_hash\n%define lookup-function-name aliases_lookup\n%7bit\n%readonly-tables\n%global-table\n%define word-array-name aliases\n%pic\n%%\nUS-ASCII, ei_ascii\nASCII, ei_ascii\nISO646-US, ei_ascii\nISO_646.IRV:1991, ei_ascii\nISO-IR-6, ei_ascii\nANSI_X3.4-1968, ei_ascii\nANSI_X3.4-1986, ei_ascii\nCP367, ei_ascii\nIBM367, ei_ascii\nUS, ei_ascii\nCSASCII, ei_ascii\nUTF-8, ei_utf8\nUCS-2, ei_ucs2\nISO-10646-UCS-2, ei_ucs2\nCSUNICODE, ei_ucs2\nUCS-2BE, ei_ucs2be\nUNICODEBIG, ei_ucs2be\nUNICODE-1-1, ei_ucs2be\nCSUNICODE11, ei_ucs2be\nUCS-2LE, ei_ucs2le\nUNICODELITTLE, ei_ucs2le\nUCS-4, ei_ucs4\nISO-10646-UCS-4, ei_ucs4\nCSUCS4, ei_ucs4\nUCS-4BE, ei_ucs4be\nUCS-4LE, ei_ucs4le\nUTF-16, ei_utf16\nUTF-16BE, ei_utf16be\nUTF-16LE, ei_utf16le\nUTF-32, ei_utf32\nUTF-32BE, ei_utf32be\nUTF-32LE, ei_utf32le\nUTF-7, ei_utf7\nUNICODE-1-1-UTF-7, ei_utf7\nCSUNICODE11UTF7, ei_utf7\nUCS-2-INTERNAL, ei_ucs2internal\nUCS-2-SWAPPED, ei_ucs2swapped\nUCS-4-INTERNAL, ei_ucs4internal\nUCS-4-SWAPPED, ei_ucs4swapped\nC99, ei_c99\nJAVA, ei_java\nISO-8859-1, ei_iso8859_1\nISO_8859-1, ei_iso8859_1\nISO_8859-1:1987, ei_iso8859_1\nISO-IR-100, ei_iso8859_1\nCP819, ei_iso8859_1\nIBM819, ei_iso8859_1\nLATIN1, ei_iso8859_1\nL1, ei_iso8859_1\nCSISOLATIN1, ei_iso8859_1\nISO8859-1, ei_iso8859_1\nISO-8859-2, ei_iso8859_2\nISO_8859-2, ei_iso8859_2\nISO_8859-2:1987, ei_iso8859_2\nISO-IR-101, ei_iso8859_2\nLATIN2, ei_iso8859_2\nL2, ei_iso8859_2\nCSISOLATIN2, ei_iso8859_2\nISO8859-2, ei_iso8859_2\nISO-8859-3, ei_iso8859_3\nISO_8859-3, ei_iso8859_3\nISO_8859-3:1988, ei_iso8859_3\nISO-IR-109, ei_iso8859_3\nLATIN3, ei_iso8859_3\nL3, ei_iso8859_3\nCSISOLATIN3, ei_iso8859_3\nISO8859-3, ei_iso8859_3\nISO-8859-4, ei_iso8859_4\nISO_8859-4, ei_iso8859_4\nISO_8859-4:1988, ei_iso8859_4\nISO-IR-110, ei_iso8859_4\nLATIN4, ei_iso8859_4\nL4, ei_iso8859_4\nCSISOLATIN4, ei_iso8859_4\nISO8859-4, ei_iso8859_4\nISO-8859-5, ei_iso8859_5\nISO_8859-5, ei_iso8859_5\nISO_8859-5:1988, ei_iso8859_5\nISO-IR-144, ei_iso8859_5\nCYRILLIC, ei_iso8859_5\nCSISOLATINCYRILLIC, ei_iso8859_5\nISO8859-5, ei_iso8859_5\nISO-8859-6, ei_iso8859_6\nISO_8859-6, ei_iso8859_6\nISO_8859-6:1987, ei_iso8859_6\nISO-IR-127, ei_iso8859_6\nECMA-114, ei_iso8859_6\nASMO-708, ei_iso8859_6\nARABIC, ei_iso8859_6\nCSISOLATINARABIC, ei_iso8859_6\nISO8859-6, ei_iso8859_6\nISO-8859-7, ei_iso8859_7\nISO_8859-7, ei_iso8859_7\nISO_8859-7:1987, ei_iso8859_7\nISO_8859-7:2003, ei_iso8859_7\nISO-IR-126, ei_iso8859_7\nECMA-118, ei_iso8859_7\nELOT_928, ei_iso8859_7\nGREEK8, ei_iso8859_7\nGREEK, ei_iso8859_7\nCSISOLATINGREEK, ei_iso8859_7\nISO8859-7, ei_iso8859_7\nISO-8859-8, ei_iso8859_8\nISO_8859-8, ei_iso8859_8\nISO_8859-8:1988, ei_iso8859_8\nISO-IR-138, ei_iso8859_8\nHEBREW, ei_iso8859_8\nCSISOLATINHEBREW, ei_iso8859_8\nISO8859-8, ei_iso8859_8\nISO-8859-9, ei_iso8859_9\nISO_8859-9, ei_iso8859_9\nISO_8859-9:1989, ei_iso8859_9\nISO-IR-148, ei_iso8859_9\nLATIN5, ei_iso8859_9\nL5, ei_iso8859_9\nCSISOLATIN5, ei_iso8859_9\nISO8859-9, ei_iso8859_9\nISO-8859-10, ei_iso8859_10\nISO_8859-10, ei_iso8859_10\nISO_8859-10:1992, ei_iso8859_10\nISO-IR-157, ei_iso8859_10\nLATIN6, ei_iso8859_10\nL6, ei_iso8859_10\nCSISOLATIN6, ei_iso8859_10\nISO8859-10, ei_iso8859_10\nISO-8859-11, ei_iso8859_11\nISO_8859-11, ei_iso8859_11\nISO8859-11, ei_iso8859_11\nISO-8859-13, ei_iso8859_13\nISO_8859-13, ei_iso8859_13\nISO-IR-179, ei_iso8859_13\nLATIN7, ei_iso8859_13\nL7, ei_iso8859_13\nISO8859-13, ei_iso8859_13\nISO-8859-14, ei_iso8859_14\nISO_8859-14, ei_iso8859_14\nISO_8859-14:1998, ei_iso8859_14\nISO-IR-199, ei_iso8859_14\nLATIN8, ei_iso8859_14\nL8, ei_iso8859_14\nISO-CELTIC, ei_iso8859_14\nISO8859-14, ei_iso8859_14\nISO-8859-15, ei_iso8859_15\nISO_8859-15, ei_iso8859_15\nISO_8859-15:1998, ei_iso8859_15\nISO-IR-203, ei_iso8859_15\nLATIN-9, ei_iso8859_15\nISO8859-15, ei_iso8859_15\nISO-8859-16, ei_iso8859_16\nISO_8859-16, ei_iso8859_16\nISO_8859-16:2001, ei_iso8859_16\nISO-IR-226, ei_iso8859_16\nLATIN10, ei_iso8859_16\nL10, ei_iso8859_16\nISO8859-16, ei_iso8859_16\nKOI8-R, ei_koi8_r\nCSKOI8R, ei_koi8_r\nKOI8-U, ei_koi8_u\nKOI8-RU, ei_koi8_ru\nCP1250, ei_cp1250\nWINDOWS-1250, ei_cp1250\nMS-EE, ei_cp1250\nCP1251, ei_cp1251\nWINDOWS-1251, ei_cp1251\nMS-CYRL, ei_cp1251\nCP1252, ei_cp1252\nWINDOWS-1252, ei_cp1252\nMS-ANSI, ei_cp1252\nCP1253, ei_cp1253\nWINDOWS-1253, ei_cp1253\nMS-GREEK, ei_cp1253\nCP1254, ei_cp1254\nWINDOWS-1254, ei_cp1254\nMS-TURK, ei_cp1254\nCP1255, ei_cp1255\nWINDOWS-1255, ei_cp1255\nMS-HEBR, ei_cp1255\nCP1256, ei_cp1256\nWINDOWS-1256, ei_cp1256\nMS-ARAB, ei_cp1256\nCP1257, ei_cp1257\nWINDOWS-1257, ei_cp1257\nWINBALTRIM, ei_cp1257\nCP1258, ei_cp1258\nWINDOWS-1258, ei_cp1258\nCP850, ei_cp850\nIBM850, ei_cp850\n850, ei_cp850\nCSPC850MULTILINGUAL, ei_cp850\nCP862, ei_cp862\nIBM862, ei_cp862\n862, ei_cp862\nCSPC862LATINHEBREW, ei_cp862\nCP866, ei_cp866\nIBM866, ei_cp866\n866, ei_cp866\nCSIBM866, ei_cp866\nCP1131, ei_cp1131\nMACROMAN, ei_mac_roman\nMACINTOSH, ei_mac_roman\nMAC, ei_mac_roman\nCSMACINTOSH, ei_mac_roman\nMACCENTRALEUROPE, ei_mac_centraleurope\nMACICELAND, ei_mac_iceland\nMACCROATIAN, ei_mac_croatian\nMACROMANIA, ei_mac_romania\nMACCYRILLIC, ei_mac_cyrillic\nMACUKRAINE, ei_mac_ukraine\nMACGREEK, ei_mac_greek\nMACTURKISH, ei_mac_turkish\nMACHEBREW, ei_mac_hebrew\nMACARABIC, ei_mac_arabic\nMACTHAI, ei_mac_thai\nHP-ROMAN8, ei_hp_roman8\nROMAN8, ei_hp_roman8\nR8, ei_hp_roman8\nCSHPROMAN8, ei_hp_roman8\nNEXTSTEP, ei_nextstep\nARMSCII-8, ei_armscii_8\nGEORGIAN-ACADEMY, ei_georgian_academy\nGEORGIAN-PS, ei_georgian_ps\nKOI8-T, ei_koi8_t\nPT154, ei_pt154\nPTCP154, ei_pt154\nCP154, ei_pt154\nCYRILLIC-ASIAN, ei_pt154\nCSPTCP154, ei_pt154\nRK1048, ei_rk1048\nSTRK1048-2002, ei_rk1048\nKZ-1048, ei_rk1048\nCSKZ1048, ei_rk1048\nMULELAO-1, ei_mulelao\nCP1133, ei_cp1133\nIBM-CP1133, ei_cp1133\nTIS-620, ei_tis620\nTIS620, ei_tis620\nTIS620-0, ei_tis620\nTIS620.2529-1, ei_tis620\nTIS620.2533-0, ei_tis620\nTIS620.2533-1, ei_tis620\nISO-IR-166, ei_tis620\nTACTIS, ei_tis620\nCP874, ei_cp874\nWINDOWS-874, ei_cp874\nVISCII, ei_viscii\nVISCII1.1-1, ei_viscii\nCSVISCII, ei_viscii\nTCVN, ei_tcvn\nTCVN-5712, ei_tcvn\nTCVN5712-1, ei_tcvn\nTCVN5712-1:1993, ei_tcvn\nJIS_C6220-1969-RO, ei_iso646_jp\nISO646-JP, ei_iso646_jp\nISO-IR-14, ei_iso646_jp\nJP, ei_iso646_jp\nCSISO14JISC6220RO, ei_iso646_jp\nJIS_X0201, ei_jisx0201\nJISX0201-1976, ei_jisx0201\nX0201, ei_jisx0201\nCSHALFWIDTHKATAKANA, ei_jisx0201\nJIS_X0208, ei_jisx0208\nJIS_X0208-1983, ei_jisx0208\nJIS_X0208-1990, ei_jisx0208\nJIS0208, ei_jisx0208\nX0208, ei_jisx0208\nISO-IR-87, ei_jisx0208\nJIS_C6226-1983, ei_jisx0208\nCSISO87JISX0208, ei_jisx0208\nJIS_X0212, ei_jisx0212\nJIS_X0212.1990-0, ei_jisx0212\nJIS_X0212-1990, ei_jisx0212\nX0212, ei_jisx0212\nISO-IR-159, ei_jisx0212\nCSISO159JISX02121990, ei_jisx0212\nGB_1988-80, ei_iso646_cn\nISO646-CN, ei_iso646_cn\nISO-IR-57, ei_iso646_cn\nCN, ei_iso646_cn\nCSISO57GB1988, ei_iso646_cn\nGB_2312-80, ei_gb2312\nISO-IR-58, ei_gb2312\nCSISO58GB231280, ei_gb2312\nCHINESE, ei_gb2312\nISO-IR-165, ei_isoir165\nCN-GB-ISOIR165, ei_isoir165\nKSC_5601, ei_ksc5601\nKS_C_5601-1987, ei_ksc5601\nKS_C_5601-1989, ei_ksc5601\nISO-IR-149, ei_ksc5601\nCSKSC56011987, ei_ksc5601\nKOREAN, ei_ksc5601\nEUC-JP, ei_euc_jp\nEUCJP, ei_euc_jp\nEXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE, ei_euc_jp\nCSEUCPKDFMTJAPANESE, ei_euc_jp\nSDECKANJI, ei_euc_jp\nSHIFT_JIS, ei_sjis\nSHIFT-JIS, ei_sjis\nSJIS, ei_sjis\nMS_KANJI, ei_sjis\nCSSHIFTJIS, ei_sjis\nCP932, ei_cp932\nISO-2022-JP, ei_iso2022_jp\nCSISO2022JP, ei_iso2022_jp\nISO-2022-JP-1, ei_iso2022_jp1\nISO-2022-JP-2, ei_iso2022_jp2\nCSISO2022JP2, ei_iso2022_jp2\nISO-2022-JP-MS, ei_iso2022_jpms\nCP50221, ei_iso2022_jpms\nEUC-CN, ei_euc_cn\nEUCCN, ei_euc_cn\nGB2312, ei_euc_cn\nCN-GB, ei_euc_cn\nCSGB2312, ei_euc_cn\nDECHANZI, ei_euc_cn\nGBK, ei_ces_gbk\nCP936, ei_cp936\nMS936, ei_cp936\nWINDOWS-936, ei_cp936\nGB18030, ei_gb18030\nISO-2022-CN, ei_iso2022_cn\nCSISO2022CN, ei_iso2022_cn\nISO-2022-CN-EXT, ei_iso2022_cn_ext\nHZ, ei_hz\nHZ-GB-2312, ei_hz\nEUC-TW, ei_euc_tw\nEUCTW, ei_euc_tw\nCSEUCTW, ei_euc_tw\nBIG5, ei_ces_big5\nBIG-5, ei_ces_big5\nBIG-FIVE, ei_ces_big5\nBIGFIVE, ei_ces_big5\nCN-BIG5, ei_ces_big5\nCSBIG5, ei_ces_big5\nCP950, ei_cp950\nBIG5-HKSCS:1999, ei_big5hkscs1999\nBIG5-HKSCS:2001, ei_big5hkscs2001\nBIG5-HKSCS:2004, ei_big5hkscs2004\nBIG5-HKSCS, ei_big5hkscs2008\nBIG5HKSCS, ei_big5hkscs2008\nBIG5-HKSCS:2008, ei_big5hkscs2008\nEUC-KR, ei_euc_kr\nEUCKR, ei_euc_kr\nCSEUCKR, ei_euc_kr\nDECKOREAN, ei_euc_kr\nCP949, ei_cp949\nUHC, ei_cp949\nKSC5601, ei_cp949\nJOHAB, ei_johab\nCP1361, ei_johab\nISO-2022-KR, ei_iso2022_kr\nCSISO2022KR, ei_iso2022_kr\nCHAR, ei_local_char\nWCHAR_T, ei_local_wchar_t\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_sysosf1.h",
    "content": "/* ANSI-C code produced by gperf version 3.0.4 */\n/* Command-line: gperf -m 10 lib/aliases_sysosf1.gperf  */\n/* Computed positions: -k'1,3-11,$' */\n\n#if !((' ' == 32) && ('!' == 33) && ('\"' == 34) && ('#' == 35) \\\n      && ('%' == 37) && ('&' == 38) && ('\\'' == 39) && ('(' == 40) \\\n      && (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \\\n      && ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \\\n      && ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \\\n      && ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \\\n      && ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \\\n      && ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \\\n      && ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \\\n      && ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \\\n      && ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \\\n      && ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \\\n      && ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \\\n      && ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \\\n      && ('Z' == 90) && ('[' == 91) && ('\\\\' == 92) && (']' == 93) \\\n      && ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \\\n      && ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \\\n      && ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \\\n      && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \\\n      && ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \\\n      && ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \\\n      && ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \\\n      && ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126))\n/* The character set is not based on ISO-646.  */\n#error \"gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>.\"\n#endif\n\n#line 1 \"lib/aliases_sysosf1.gperf\"\nstruct alias { int name; unsigned int encoding_index; };\n\n#define TOTAL_KEYWORDS 354\n#define MIN_WORD_LENGTH 2\n#define MAX_WORD_LENGTH 45\n#define MIN_HASH_VALUE 15\n#define MAX_HASH_VALUE 981\n/* maximum key range = 967, duplicates = 0 */\n\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic unsigned int\naliases_hash (register const char *str, register unsigned int len)\n{\n  static const unsigned short asso_values[] =\n    {\n      982, 982, 982, 982, 982, 982, 982, 982, 982, 982,\n      982, 982, 982, 982, 982, 982, 982, 982, 982, 982,\n      982, 982, 982, 982, 982, 982, 982, 982, 982, 982,\n      982, 982, 982, 982, 982, 982, 982, 982, 982, 982,\n      982, 982, 982, 982, 982,   5,  96, 982,  97,   7,\n       33, 102,  15,  17,   5, 173,  23,  25, 298, 982,\n      982, 982, 982, 982, 982, 168, 248,  11,  26,  25,\n       17,  29,  29,   6, 139, 153,   8, 132,   7,   6,\n      114, 982,   5,   8,  30, 235, 185, 182, 225,   5,\n       18, 982, 982, 982, 982,   6, 982, 982, 982, 982,\n      982, 982, 982, 982, 982, 982, 982, 982, 982, 982,\n      982, 982, 982, 982, 982, 982, 982, 982, 982, 982,\n      982, 982, 982, 982, 982, 982, 982, 982\n    };\n  register int hval = len;\n\n  switch (hval)\n    {\n      default:\n        hval += asso_values[(unsigned char)str[10]];\n      /*FALLTHROUGH*/\n      case 10:\n        hval += asso_values[(unsigned char)str[9]];\n      /*FALLTHROUGH*/\n      case 9:\n        hval += asso_values[(unsigned char)str[8]];\n      /*FALLTHROUGH*/\n      case 8:\n        hval += asso_values[(unsigned char)str[7]];\n      /*FALLTHROUGH*/\n      case 7:\n        hval += asso_values[(unsigned char)str[6]];\n      /*FALLTHROUGH*/\n      case 6:\n        hval += asso_values[(unsigned char)str[5]];\n      /*FALLTHROUGH*/\n      case 5:\n        hval += asso_values[(unsigned char)str[4]];\n      /*FALLTHROUGH*/\n      case 4:\n        hval += asso_values[(unsigned char)str[3]];\n      /*FALLTHROUGH*/\n      case 3:\n        hval += asso_values[(unsigned char)str[2]];\n      /*FALLTHROUGH*/\n      case 2:\n      case 1:\n        hval += asso_values[(unsigned char)str[0]];\n        break;\n    }\n  return hval + asso_values[(unsigned char)str[len - 1]];\n}\n\nstruct stringpool_t\n  {\n    char stringpool_str15[sizeof(\"L6\")];\n    char stringpool_str17[sizeof(\"L1\")];\n    char stringpool_str20[sizeof(\"CN\")];\n    char stringpool_str25[sizeof(\"L4\")];\n    char stringpool_str27[sizeof(\"L5\")];\n    char stringpool_str30[sizeof(\"R8\")];\n    char stringpool_str33[sizeof(\"L8\")];\n    char stringpool_str34[sizeof(\"SJIS\")];\n    char stringpool_str36[sizeof(\"866\")];\n    char stringpool_str43[sizeof(\"L2\")];\n    char stringpool_str49[sizeof(\"HZ\")];\n    char stringpool_str51[sizeof(\"ISO-IR-6\")];\n    char stringpool_str54[sizeof(\"CP866\")];\n    char stringpool_str64[sizeof(\"C99\")];\n    char stringpool_str65[sizeof(\"ISO-IR-166\")];\n    char stringpool_str66[sizeof(\"EUCCN\")];\n    char stringpool_str67[sizeof(\"LATIN6\")];\n    char stringpool_str70[sizeof(\"CP154\")];\n    char stringpool_str71[sizeof(\"LATIN1\")];\n    char stringpool_str72[sizeof(\"EUC-CN\")];\n    char stringpool_str74[sizeof(\"CYRILLIC\")];\n    char stringpool_str76[sizeof(\"ISO646-CN\")];\n    char stringpool_str79[sizeof(\"ISO-IR-14\")];\n    char stringpool_str84[sizeof(\"CP1256\")];\n    char stringpool_str87[sizeof(\"LATIN4\")];\n    char stringpool_str88[sizeof(\"CP1251\")];\n    char stringpool_str89[sizeof(\"ISO-IR-165\")];\n    char stringpool_str91[sizeof(\"LATIN5\")];\n    char stringpool_str92[sizeof(\"862\")];\n    char stringpool_str93[sizeof(\"ISO-IR-126\")];\n    char stringpool_str95[sizeof(\"ISO-IR-144\")];\n    char stringpool_str96[sizeof(\"CP819\")];\n    char stringpool_str99[sizeof(\"TACTIS\")];\n    char stringpool_str103[sizeof(\"LATIN8\")];\n    char stringpool_str104[sizeof(\"CP1254\")];\n    char stringpool_str105[sizeof(\"ISO-IR-58\")];\n    char stringpool_str106[sizeof(\"CP949\")];\n    char stringpool_str108[sizeof(\"CP1255\")];\n    char stringpool_str110[sizeof(\"CP862\")];\n    char stringpool_str111[sizeof(\"ISO-IR-148\")];\n    char stringpool_str112[sizeof(\"L3\")];\n    char stringpool_str113[sizeof(\"LATIN-9\")];\n    char stringpool_str114[sizeof(\"CHINESE\")];\n    char stringpool_str115[sizeof(\"ISO-IR-149\")];\n    char stringpool_str117[sizeof(\"ISO-IR-159\")];\n    char stringpool_str119[sizeof(\"ISO-IR-226\")];\n    char stringpool_str120[sizeof(\"CP1258\")];\n    char stringpool_str123[sizeof(\"LATIN2\")];\n    char stringpool_str124[sizeof(\"ISO8859-6\")];\n    char stringpool_str125[sizeof(\"ISO-IR-199\")];\n    char stringpool_str128[sizeof(\"ISO8859-1\")];\n    char stringpool_str129[sizeof(\"ISO-CELTIC\")];\n    char stringpool_str130[sizeof(\"ISO-8859-6\")];\n    char stringpool_str131[sizeof(\"ISO_8859-6\")];\n    char stringpool_str132[sizeof(\"ISO8859-16\")];\n    char stringpool_str134[sizeof(\"ISO-8859-1\")];\n    char stringpool_str135[sizeof(\"ISO_8859-1\")];\n    char stringpool_str136[sizeof(\"ISO8859-11\")];\n    char stringpool_str138[sizeof(\"ISO-8859-16\")];\n    char stringpool_str139[sizeof(\"ISO_8859-16\")];\n    char stringpool_str140[sizeof(\"CP1252\")];\n    char stringpool_str142[sizeof(\"ISO-8859-11\")];\n    char stringpool_str143[sizeof(\"ISO_8859-11\")];\n    char stringpool_str144[sizeof(\"ISO8859-4\")];\n    char stringpool_str145[sizeof(\"CP1361\")];\n    char stringpool_str146[sizeof(\"ISO_8859-16:2001\")];\n    char stringpool_str147[sizeof(\"CP1131\")];\n    char stringpool_str148[sizeof(\"ISO8859-5\")];\n    char stringpool_str150[sizeof(\"ISO-8859-4\")];\n    char stringpool_str151[sizeof(\"ISO_8859-4\")];\n    char stringpool_str152[sizeof(\"ISO8859-14\")];\n    char stringpool_str153[sizeof(\"CP936\")];\n    char stringpool_str154[sizeof(\"ISO-8859-5\")];\n    char stringpool_str155[sizeof(\"ISO_8859-5\")];\n    char stringpool_str156[sizeof(\"ISO8859-15\")];\n    char stringpool_str157[sizeof(\"MAC\")];\n    char stringpool_str158[sizeof(\"ISO-8859-14\")];\n    char stringpool_str159[sizeof(\"ISO_8859-14\")];\n    char stringpool_str160[sizeof(\"ISO8859-8\")];\n    char stringpool_str161[sizeof(\"ISO-IR-101\")];\n    char stringpool_str162[sizeof(\"ISO-8859-15\")];\n    char stringpool_str163[sizeof(\"ISO_8859-15\")];\n    char stringpool_str164[sizeof(\"ISO8859-9\")];\n    char stringpool_str166[sizeof(\"ISO-8859-8\")];\n    char stringpool_str167[sizeof(\"ISO_8859-8\")];\n    char stringpool_str170[sizeof(\"ISO-8859-9\")];\n    char stringpool_str171[sizeof(\"ISO_8859-9\")];\n    char stringpool_str172[sizeof(\"ISO_8859-14:1998\")];\n    char stringpool_str173[sizeof(\"PT154\")];\n    char stringpool_str174[sizeof(\"ISO_8859-15:1998\")];\n    char stringpool_str176[sizeof(\"RK1048\")];\n    char stringpool_str179[sizeof(\"ELOT_928\")];\n    char stringpool_str180[sizeof(\"ISO8859-2\")];\n    char stringpool_str181[sizeof(\"MS-CYRL\")];\n    char stringpool_str182[sizeof(\"IBM866\")];\n    char stringpool_str183[sizeof(\"L7\")];\n    char stringpool_str186[sizeof(\"ISO-8859-2\")];\n    char stringpool_str187[sizeof(\"ISO_8859-2\")];\n    char stringpool_str193[sizeof(\"CHAR\")];\n    char stringpool_str197[sizeof(\"ISO-IR-109\")];\n    char stringpool_str198[sizeof(\"ISO-IR-138\")];\n    char stringpool_str202[sizeof(\"ASCII\")];\n    char stringpool_str203[sizeof(\"KOI8-R\")];\n    char stringpool_str204[sizeof(\"EUCKR\")];\n    char stringpool_str205[sizeof(\"L10\")];\n    char stringpool_str209[sizeof(\"CP932\")];\n    char stringpool_str210[sizeof(\"EUC-KR\")];\n    char stringpool_str212[sizeof(\"CP50221\")];\n    char stringpool_str216[sizeof(\"CSKOI8R\")];\n    char stringpool_str217[sizeof(\"MS-EE\")];\n    char stringpool_str220[sizeof(\"850\")];\n    char stringpool_str223[sizeof(\"CSASCII\")];\n    char stringpool_str224[sizeof(\"IBM819\")];\n    char stringpool_str225[sizeof(\"MACCYRILLIC\")];\n    char stringpool_str228[sizeof(\"VISCII\")];\n    char stringpool_str233[sizeof(\"TCVN\")];\n    char stringpool_str236[sizeof(\"SHIFT-JIS\")];\n    char stringpool_str237[sizeof(\"SHIFT_JIS\")];\n    char stringpool_str238[sizeof(\"IBM862\")];\n    char stringpool_str240[sizeof(\"CSISO14JISC6220RO\")];\n    char stringpool_str242[sizeof(\"CP874\")];\n    char stringpool_str243[sizeof(\"GB2312\")];\n    char stringpool_str245[sizeof(\"US\")];\n    char stringpool_str247[sizeof(\"CSVISCII\")];\n    char stringpool_str250[sizeof(\"CP850\")];\n    char stringpool_str251[sizeof(\"ISO-IR-110\")];\n    char stringpool_str252[sizeof(\"CP950\")];\n    char stringpool_str253[sizeof(\"KOI8-T\")];\n    char stringpool_str254[sizeof(\"ISO-2022-CN\")];\n    char stringpool_str255[sizeof(\"JP\")];\n    char stringpool_str257[sizeof(\"CYRILLIC-ASIAN\")];\n    char stringpool_str259[sizeof(\"LATIN10\")];\n    char stringpool_str260[sizeof(\"UHC\")];\n    char stringpool_str261[sizeof(\"LATIN3\")];\n    char stringpool_str263[sizeof(\"CSISO2022CN\")];\n    char stringpool_str264[sizeof(\"ISO_8859-10:1992\")];\n    char stringpool_str267[sizeof(\"MACINTOSH\")];\n    char stringpool_str268[sizeof(\"CP1250\")];\n    char stringpool_str271[sizeof(\"CSISOLATIN6\")];\n    char stringpool_str272[sizeof(\"CSSHIFTJIS\")];\n    char stringpool_str273[sizeof(\"ISO-IR-179\")];\n    char stringpool_str274[sizeof(\"MS936\")];\n    char stringpool_str275[sizeof(\"CSISOLATIN1\")];\n    char stringpool_str276[sizeof(\"TIS620\")];\n    char stringpool_str278[sizeof(\"CP1253\")];\n    char stringpool_str279[sizeof(\"DECHANZI\")];\n    char stringpool_str280[sizeof(\"UTF-16\")];\n    char stringpool_str281[sizeof(\"ISO-2022-CN-EXT\")];\n    char stringpool_str282[sizeof(\"TIS-620\")];\n    char stringpool_str283[sizeof(\"UCS-4\")];\n    char stringpool_str284[sizeof(\"GREEK8\")];\n    char stringpool_str290[sizeof(\"CSISOLATINCYRILLIC\")];\n    char stringpool_str291[sizeof(\"CSISOLATIN4\")];\n    char stringpool_str295[sizeof(\"CSISOLATIN5\")];\n    char stringpool_str300[sizeof(\"PTCP154\")];\n    char stringpool_str301[sizeof(\"CSUCS4\")];\n    char stringpool_str302[sizeof(\"ISO646-US\")];\n    char stringpool_str304[sizeof(\"KSC5601\")];\n    char stringpool_str308[sizeof(\"UTF-8\")];\n    char stringpool_str311[sizeof(\"KSC_5601\")];\n    char stringpool_str315[sizeof(\"BIG5\")];\n    char stringpool_str316[sizeof(\"ISO8859-10\")];\n    char stringpool_str318[sizeof(\"ISO8859-3\")];\n    char stringpool_str319[sizeof(\"UCS-2\")];\n    char stringpool_str321[sizeof(\"BIG-5\")];\n    char stringpool_str322[sizeof(\"ISO-8859-10\")];\n    char stringpool_str323[sizeof(\"ISO_8859-10\")];\n    char stringpool_str324[sizeof(\"ISO-8859-3\")];\n    char stringpool_str325[sizeof(\"ISO_8859-3\")];\n    char stringpool_str326[sizeof(\"ISO8859-13\")];\n    char stringpool_str327[sizeof(\"CSISOLATIN2\")];\n    char stringpool_str328[sizeof(\"UCS-4LE\")];\n    char stringpool_str330[sizeof(\"KZ-1048\")];\n    char stringpool_str332[sizeof(\"ISO-8859-13\")];\n    char stringpool_str333[sizeof(\"ISO_8859-13\")];\n    char stringpool_str334[sizeof(\"CSBIG5\")];\n    char stringpool_str335[sizeof(\"UTF-16LE\")];\n    char stringpool_str336[sizeof(\"X0212\")];\n    char stringpool_str337[sizeof(\"CP1133\")];\n    char stringpool_str338[sizeof(\"GBK\")];\n    char stringpool_str339[sizeof(\"MS-ANSI\")];\n    char stringpool_str340[sizeof(\"CN-BIG5\")];\n    char stringpool_str341[sizeof(\"ISO-IR-100\")];\n    char stringpool_str343[sizeof(\"CSPTCP154\")];\n    char stringpool_str345[sizeof(\"GB_1988-80\")];\n    char stringpool_str346[sizeof(\"UCS-2LE\")];\n    char stringpool_str350[sizeof(\"CSISO159JISX02121990\")];\n    char stringpool_str351[sizeof(\"UNICODE-1-1\")];\n    char stringpool_str353[sizeof(\"KS_C_5601-1989\")];\n    char stringpool_str355[sizeof(\"CSKZ1048\")];\n    char stringpool_str356[sizeof(\"VISCII1.1-1\")];\n    char stringpool_str358[sizeof(\"ISO_646.IRV:1991\")];\n    char stringpool_str359[sizeof(\"CSUNICODE11\")];\n    char stringpool_str360[sizeof(\"CN-GB-ISOIR165\")];\n    char stringpool_str361[sizeof(\"CSUNICODE\")];\n    char stringpool_str363[sizeof(\"UCS-4-INTERNAL\")];\n    char stringpool_str364[sizeof(\"ROMAN8\")];\n    char stringpool_str367[sizeof(\"JIS_C6220-1969-RO\")];\n    char stringpool_str368[sizeof(\"JIS_C6226-1983\")];\n    char stringpool_str371[sizeof(\"KOREAN\")];\n    char stringpool_str374[sizeof(\"X0201\")];\n    char stringpool_str375[sizeof(\"MULELAO-1\")];\n    char stringpool_str377[sizeof(\"ISO-IR-203\")];\n    char stringpool_str378[sizeof(\"IBM850\")];\n    char stringpool_str380[sizeof(\"TIS620-0\")];\n    char stringpool_str381[sizeof(\"UCS-2-INTERNAL\")];\n    char stringpool_str382[sizeof(\"ECMA-114\")];\n    char stringpool_str389[sizeof(\"MACTHAI\")];\n    char stringpool_str390[sizeof(\"GREEK\")];\n    char stringpool_str391[sizeof(\"ARMSCII-8\")];\n    char stringpool_str392[sizeof(\"ISO-2022-KR\")];\n    char stringpool_str396[sizeof(\"GEORGIAN-PS\")];\n    char stringpool_str397[sizeof(\"TIS620.2529-1\")];\n    char stringpool_str398[sizeof(\"ECMA-118\")];\n    char stringpool_str401[sizeof(\"CSISO2022KR\")];\n    char stringpool_str403[sizeof(\"LATIN7\")];\n    char stringpool_str405[sizeof(\"ISO-IR-57\")];\n    char stringpool_str406[sizeof(\"X0208\")];\n    char stringpool_str407[sizeof(\"HP-ROMAN8\")];\n    char stringpool_str408[sizeof(\"EUCJP\")];\n    char stringpool_str411[sizeof(\"ISO-IR-87\")];\n    char stringpool_str413[sizeof(\"ISO-IR-157\")];\n    char stringpool_str414[sizeof(\"EUC-JP\")];\n    char stringpool_str416[sizeof(\"ISO-10646-UCS-4\")];\n    char stringpool_str417[sizeof(\"DECKOREAN\")];\n    char stringpool_str418[sizeof(\"ISO646-JP\")];\n    char stringpool_str420[sizeof(\"CP1257\")];\n    char stringpool_str421[sizeof(\"UNICODELITTLE\")];\n    char stringpool_str427[sizeof(\"JIS0208\")];\n    char stringpool_str429[sizeof(\"ISO-IR-127\")];\n    char stringpool_str430[sizeof(\"MACICELAND\")];\n    char stringpool_str431[sizeof(\"UTF-32\")];\n    char stringpool_str434[sizeof(\"ISO-10646-UCS-2\")];\n    char stringpool_str435[sizeof(\"EUCTW\")];\n    char stringpool_str441[sizeof(\"EUC-TW\")];\n    char stringpool_str442[sizeof(\"GB_2312-80\")];\n    char stringpool_str443[sizeof(\"CSIBM866\")];\n    char stringpool_str445[sizeof(\"CSISOLATINARABIC\")];\n    char stringpool_str447[sizeof(\"CSISOLATINGREEK\")];\n    char stringpool_str448[sizeof(\"CSMACINTOSH\")];\n    char stringpool_str452[sizeof(\"CSEUCKR\")];\n    char stringpool_str453[sizeof(\"US-ASCII\")];\n    char stringpool_str455[sizeof(\"GEORGIAN-ACADEMY\")];\n    char stringpool_str456[sizeof(\"MS-HEBR\")];\n    char stringpool_str457[sizeof(\"WCHAR_T\")];\n    char stringpool_str458[sizeof(\"UTF-32LE\")];\n    char stringpool_str459[sizeof(\"GB18030\")];\n    char stringpool_str460[sizeof(\"ISO8859-7\")];\n    char stringpool_str462[sizeof(\"ISO_8859-4:1988\")];\n    char stringpool_str463[sizeof(\"MACCENTRALEUROPE\")];\n    char stringpool_str464[sizeof(\"ISO_8859-5:1988\")];\n    char stringpool_str465[sizeof(\"CSISOLATIN3\")];\n    char stringpool_str466[sizeof(\"ISO-8859-7\")];\n    char stringpool_str467[sizeof(\"ISO_8859-7\")];\n    char stringpool_str469[sizeof(\"CP367\")];\n    char stringpool_str470[sizeof(\"ISO_8859-8:1988\")];\n    char stringpool_str474[sizeof(\"ISO_8859-9:1989\")];\n    char stringpool_str476[sizeof(\"MACROMAN\")];\n    char stringpool_str477[sizeof(\"CSISOLATINHEBREW\")];\n    char stringpool_str481[sizeof(\"TCVN5712-1\")];\n    char stringpool_str482[sizeof(\"EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE\")];\n    char stringpool_str489[sizeof(\"STRK1048-2002\")];\n    char stringpool_str490[sizeof(\"WINDOWS-1256\")];\n    char stringpool_str491[sizeof(\"ISO-2022-JP-1\")];\n    char stringpool_str492[sizeof(\"WINDOWS-1251\")];\n    char stringpool_str493[sizeof(\"ISO-2022-JP-MS\")];\n    char stringpool_str499[sizeof(\"TCVN-5712\")];\n    char stringpool_str500[sizeof(\"WINDOWS-1254\")];\n    char stringpool_str501[sizeof(\"KS_C_5601-1987\")];\n    char stringpool_str502[sizeof(\"WINDOWS-1255\")];\n    char stringpool_str504[sizeof(\"CSGB2312\")];\n    char stringpool_str508[sizeof(\"WINDOWS-1258\")];\n    char stringpool_str517[sizeof(\"ISO-2022-JP-2\")];\n    char stringpool_str518[sizeof(\"WINDOWS-1252\")];\n    char stringpool_str520[sizeof(\"BIG5HKSCS\")];\n    char stringpool_str523[sizeof(\"UNICODE-1-1-UTF-7\")];\n    char stringpool_str525[sizeof(\"CSISO2022JP2\")];\n    char stringpool_str526[sizeof(\"BIG5-HKSCS\")];\n    char stringpool_str527[sizeof(\"CSKSC56011987\")];\n    char stringpool_str528[sizeof(\"CSHPROMAN8\")];\n    char stringpool_str529[sizeof(\"CSUNICODE11UTF7\")];\n    char stringpool_str532[sizeof(\"SDECKANJI\")];\n    char stringpool_str534[sizeof(\"HZ-GB-2312\")];\n    char stringpool_str535[sizeof(\"MS-GREEK\")];\n    char stringpool_str541[sizeof(\"MACGREEK\")];\n    char stringpool_str542[sizeof(\"BIGFIVE\")];\n    char stringpool_str543[sizeof(\"TIS620.2533-1\")];\n    char stringpool_str546[sizeof(\"CN-GB\")];\n    char stringpool_str548[sizeof(\"BIG-FIVE\")];\n    char stringpool_str549[sizeof(\"ISO_8859-3:1988\")];\n    char stringpool_str561[sizeof(\"NEXTSTEP\")];\n    char stringpool_str562[sizeof(\"MACCROATIAN\")];\n    char stringpool_str564[sizeof(\"WINDOWS-936\")];\n    char stringpool_str566[sizeof(\"CSISO57GB1988\")];\n    char stringpool_str568[sizeof(\"UCS-4BE\")];\n    char stringpool_str575[sizeof(\"UTF-16BE\")];\n    char stringpool_str582[sizeof(\"WINDOWS-1250\")];\n    char stringpool_str586[sizeof(\"UCS-2BE\")];\n    char stringpool_str587[sizeof(\"WINDOWS-1253\")];\n    char stringpool_str590[sizeof(\"JIS_X0212\")];\n    char stringpool_str595[sizeof(\"CSISO58GB231280\")];\n    char stringpool_str596[sizeof(\"ISO-2022-JP\")];\n    char stringpool_str597[sizeof(\"IBM367\")];\n    char stringpool_str598[sizeof(\"IBM-CP1133\")];\n    char stringpool_str602[sizeof(\"ISO_8859-6:1987\")];\n    char stringpool_str604[sizeof(\"ISO_8859-1:1987\")];\n    char stringpool_str605[sizeof(\"CSISO2022JP\")];\n    char stringpool_str608[sizeof(\"UTF-7\")];\n    char stringpool_str609[sizeof(\"CSPC862LATINHEBREW\")];\n    char stringpool_str618[sizeof(\"ARABIC\")];\n    char stringpool_str625[sizeof(\"MS_KANJI\")];\n    char stringpool_str628[sizeof(\"JIS_X0201\")];\n    char stringpool_str630[sizeof(\"ISO_8859-2:1987\")];\n    char stringpool_str631[sizeof(\"UNICODEBIG\")];\n    char stringpool_str633[sizeof(\"TIS620.2533-0\")];\n    char stringpool_str635[sizeof(\"ASMO-708\")];\n    char stringpool_str643[sizeof(\"CSISO87JISX0208\")];\n    char stringpool_str648[sizeof(\"MACTURKISH\")];\n    char stringpool_str653[sizeof(\"WINDOWS-874\")];\n    char stringpool_str657[sizeof(\"ANSI_X3.4-1986\")];\n    char stringpool_str658[sizeof(\"WINDOWS-1257\")];\n    char stringpool_str660[sizeof(\"JIS_X0208\")];\n    char stringpool_str661[sizeof(\"JISX0201-1976\")];\n    char stringpool_str663[sizeof(\"KOI8-U\")];\n    char stringpool_str664[sizeof(\"JAVA\")];\n    char stringpool_str669[sizeof(\"KOI8-RU\")];\n    char stringpool_str671[sizeof(\"JIS_X0212-1990\")];\n    char stringpool_str675[sizeof(\"ANSI_X3.4-1968\")];\n    char stringpool_str677[sizeof(\"HEBREW\")];\n    char stringpool_str683[sizeof(\"CSEUCTW\")];\n    char stringpool_str693[sizeof(\"CSHALFWIDTHKATAKANA\")];\n    char stringpool_str698[sizeof(\"UTF-32BE\")];\n    char stringpool_str699[sizeof(\"ISO_8859-7:2003\")];\n    char stringpool_str705[sizeof(\"CSPC850MULTILINGUAL\")];\n    char stringpool_str720[sizeof(\"MS-TURK\")];\n    char stringpool_str751[sizeof(\"JIS_X0208-1990\")];\n    char stringpool_str756[sizeof(\"JIS_X0208-1983\")];\n    char stringpool_str764[sizeof(\"JIS_X0212.1990-0\")];\n    char stringpool_str769[sizeof(\"MACARABIC\")];\n    char stringpool_str770[sizeof(\"ISO_8859-7:1987\")];\n    char stringpool_str777[sizeof(\"MACUKRAINE\")];\n    char stringpool_str798[sizeof(\"CSEUCPKDFMTJAPANESE\")];\n    char stringpool_str813[sizeof(\"MACROMANIA\")];\n    char stringpool_str828[sizeof(\"BIG5-HKSCS:2001\")];\n    char stringpool_str836[sizeof(\"BIG5-HKSCS:2004\")];\n    char stringpool_str837[sizeof(\"JOHAB\")];\n    char stringpool_str844[sizeof(\"BIG5-HKSCS:2008\")];\n    char stringpool_str846[sizeof(\"BIG5-HKSCS:1999\")];\n    char stringpool_str848[sizeof(\"MACHEBREW\")];\n    char stringpool_str879[sizeof(\"TCVN5712-1:1993\")];\n    char stringpool_str893[sizeof(\"UCS-4-SWAPPED\")];\n    char stringpool_str911[sizeof(\"UCS-2-SWAPPED\")];\n    char stringpool_str928[sizeof(\"WINBALTRIM\")];\n    char stringpool_str981[sizeof(\"MS-ARAB\")];\n  };\nstatic const struct stringpool_t stringpool_contents =\n  {\n    \"L6\",\n    \"L1\",\n    \"CN\",\n    \"L4\",\n    \"L5\",\n    \"R8\",\n    \"L8\",\n    \"SJIS\",\n    \"866\",\n    \"L2\",\n    \"HZ\",\n    \"ISO-IR-6\",\n    \"CP866\",\n    \"C99\",\n    \"ISO-IR-166\",\n    \"EUCCN\",\n    \"LATIN6\",\n    \"CP154\",\n    \"LATIN1\",\n    \"EUC-CN\",\n    \"CYRILLIC\",\n    \"ISO646-CN\",\n    \"ISO-IR-14\",\n    \"CP1256\",\n    \"LATIN4\",\n    \"CP1251\",\n    \"ISO-IR-165\",\n    \"LATIN5\",\n    \"862\",\n    \"ISO-IR-126\",\n    \"ISO-IR-144\",\n    \"CP819\",\n    \"TACTIS\",\n    \"LATIN8\",\n    \"CP1254\",\n    \"ISO-IR-58\",\n    \"CP949\",\n    \"CP1255\",\n    \"CP862\",\n    \"ISO-IR-148\",\n    \"L3\",\n    \"LATIN-9\",\n    \"CHINESE\",\n    \"ISO-IR-149\",\n    \"ISO-IR-159\",\n    \"ISO-IR-226\",\n    \"CP1258\",\n    \"LATIN2\",\n    \"ISO8859-6\",\n    \"ISO-IR-199\",\n    \"ISO8859-1\",\n    \"ISO-CELTIC\",\n    \"ISO-8859-6\",\n    \"ISO_8859-6\",\n    \"ISO8859-16\",\n    \"ISO-8859-1\",\n    \"ISO_8859-1\",\n    \"ISO8859-11\",\n    \"ISO-8859-16\",\n    \"ISO_8859-16\",\n    \"CP1252\",\n    \"ISO-8859-11\",\n    \"ISO_8859-11\",\n    \"ISO8859-4\",\n    \"CP1361\",\n    \"ISO_8859-16:2001\",\n    \"CP1131\",\n    \"ISO8859-5\",\n    \"ISO-8859-4\",\n    \"ISO_8859-4\",\n    \"ISO8859-14\",\n    \"CP936\",\n    \"ISO-8859-5\",\n    \"ISO_8859-5\",\n    \"ISO8859-15\",\n    \"MAC\",\n    \"ISO-8859-14\",\n    \"ISO_8859-14\",\n    \"ISO8859-8\",\n    \"ISO-IR-101\",\n    \"ISO-8859-15\",\n    \"ISO_8859-15\",\n    \"ISO8859-9\",\n    \"ISO-8859-8\",\n    \"ISO_8859-8\",\n    \"ISO-8859-9\",\n    \"ISO_8859-9\",\n    \"ISO_8859-14:1998\",\n    \"PT154\",\n    \"ISO_8859-15:1998\",\n    \"RK1048\",\n    \"ELOT_928\",\n    \"ISO8859-2\",\n    \"MS-CYRL\",\n    \"IBM866\",\n    \"L7\",\n    \"ISO-8859-2\",\n    \"ISO_8859-2\",\n    \"CHAR\",\n    \"ISO-IR-109\",\n    \"ISO-IR-138\",\n    \"ASCII\",\n    \"KOI8-R\",\n    \"EUCKR\",\n    \"L10\",\n    \"CP932\",\n    \"EUC-KR\",\n    \"CP50221\",\n    \"CSKOI8R\",\n    \"MS-EE\",\n    \"850\",\n    \"CSASCII\",\n    \"IBM819\",\n    \"MACCYRILLIC\",\n    \"VISCII\",\n    \"TCVN\",\n    \"SHIFT-JIS\",\n    \"SHIFT_JIS\",\n    \"IBM862\",\n    \"CSISO14JISC6220RO\",\n    \"CP874\",\n    \"GB2312\",\n    \"US\",\n    \"CSVISCII\",\n    \"CP850\",\n    \"ISO-IR-110\",\n    \"CP950\",\n    \"KOI8-T\",\n    \"ISO-2022-CN\",\n    \"JP\",\n    \"CYRILLIC-ASIAN\",\n    \"LATIN10\",\n    \"UHC\",\n    \"LATIN3\",\n    \"CSISO2022CN\",\n    \"ISO_8859-10:1992\",\n    \"MACINTOSH\",\n    \"CP1250\",\n    \"CSISOLATIN6\",\n    \"CSSHIFTJIS\",\n    \"ISO-IR-179\",\n    \"MS936\",\n    \"CSISOLATIN1\",\n    \"TIS620\",\n    \"CP1253\",\n    \"DECHANZI\",\n    \"UTF-16\",\n    \"ISO-2022-CN-EXT\",\n    \"TIS-620\",\n    \"UCS-4\",\n    \"GREEK8\",\n    \"CSISOLATINCYRILLIC\",\n    \"CSISOLATIN4\",\n    \"CSISOLATIN5\",\n    \"PTCP154\",\n    \"CSUCS4\",\n    \"ISO646-US\",\n    \"KSC5601\",\n    \"UTF-8\",\n    \"KSC_5601\",\n    \"BIG5\",\n    \"ISO8859-10\",\n    \"ISO8859-3\",\n    \"UCS-2\",\n    \"BIG-5\",\n    \"ISO-8859-10\",\n    \"ISO_8859-10\",\n    \"ISO-8859-3\",\n    \"ISO_8859-3\",\n    \"ISO8859-13\",\n    \"CSISOLATIN2\",\n    \"UCS-4LE\",\n    \"KZ-1048\",\n    \"ISO-8859-13\",\n    \"ISO_8859-13\",\n    \"CSBIG5\",\n    \"UTF-16LE\",\n    \"X0212\",\n    \"CP1133\",\n    \"GBK\",\n    \"MS-ANSI\",\n    \"CN-BIG5\",\n    \"ISO-IR-100\",\n    \"CSPTCP154\",\n    \"GB_1988-80\",\n    \"UCS-2LE\",\n    \"CSISO159JISX02121990\",\n    \"UNICODE-1-1\",\n    \"KS_C_5601-1989\",\n    \"CSKZ1048\",\n    \"VISCII1.1-1\",\n    \"ISO_646.IRV:1991\",\n    \"CSUNICODE11\",\n    \"CN-GB-ISOIR165\",\n    \"CSUNICODE\",\n    \"UCS-4-INTERNAL\",\n    \"ROMAN8\",\n    \"JIS_C6220-1969-RO\",\n    \"JIS_C6226-1983\",\n    \"KOREAN\",\n    \"X0201\",\n    \"MULELAO-1\",\n    \"ISO-IR-203\",\n    \"IBM850\",\n    \"TIS620-0\",\n    \"UCS-2-INTERNAL\",\n    \"ECMA-114\",\n    \"MACTHAI\",\n    \"GREEK\",\n    \"ARMSCII-8\",\n    \"ISO-2022-KR\",\n    \"GEORGIAN-PS\",\n    \"TIS620.2529-1\",\n    \"ECMA-118\",\n    \"CSISO2022KR\",\n    \"LATIN7\",\n    \"ISO-IR-57\",\n    \"X0208\",\n    \"HP-ROMAN8\",\n    \"EUCJP\",\n    \"ISO-IR-87\",\n    \"ISO-IR-157\",\n    \"EUC-JP\",\n    \"ISO-10646-UCS-4\",\n    \"DECKOREAN\",\n    \"ISO646-JP\",\n    \"CP1257\",\n    \"UNICODELITTLE\",\n    \"JIS0208\",\n    \"ISO-IR-127\",\n    \"MACICELAND\",\n    \"UTF-32\",\n    \"ISO-10646-UCS-2\",\n    \"EUCTW\",\n    \"EUC-TW\",\n    \"GB_2312-80\",\n    \"CSIBM866\",\n    \"CSISOLATINARABIC\",\n    \"CSISOLATINGREEK\",\n    \"CSMACINTOSH\",\n    \"CSEUCKR\",\n    \"US-ASCII\",\n    \"GEORGIAN-ACADEMY\",\n    \"MS-HEBR\",\n    \"WCHAR_T\",\n    \"UTF-32LE\",\n    \"GB18030\",\n    \"ISO8859-7\",\n    \"ISO_8859-4:1988\",\n    \"MACCENTRALEUROPE\",\n    \"ISO_8859-5:1988\",\n    \"CSISOLATIN3\",\n    \"ISO-8859-7\",\n    \"ISO_8859-7\",\n    \"CP367\",\n    \"ISO_8859-8:1988\",\n    \"ISO_8859-9:1989\",\n    \"MACROMAN\",\n    \"CSISOLATINHEBREW\",\n    \"TCVN5712-1\",\n    \"EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE\",\n    \"STRK1048-2002\",\n    \"WINDOWS-1256\",\n    \"ISO-2022-JP-1\",\n    \"WINDOWS-1251\",\n    \"ISO-2022-JP-MS\",\n    \"TCVN-5712\",\n    \"WINDOWS-1254\",\n    \"KS_C_5601-1987\",\n    \"WINDOWS-1255\",\n    \"CSGB2312\",\n    \"WINDOWS-1258\",\n    \"ISO-2022-JP-2\",\n    \"WINDOWS-1252\",\n    \"BIG5HKSCS\",\n    \"UNICODE-1-1-UTF-7\",\n    \"CSISO2022JP2\",\n    \"BIG5-HKSCS\",\n    \"CSKSC56011987\",\n    \"CSHPROMAN8\",\n    \"CSUNICODE11UTF7\",\n    \"SDECKANJI\",\n    \"HZ-GB-2312\",\n    \"MS-GREEK\",\n    \"MACGREEK\",\n    \"BIGFIVE\",\n    \"TIS620.2533-1\",\n    \"CN-GB\",\n    \"BIG-FIVE\",\n    \"ISO_8859-3:1988\",\n    \"NEXTSTEP\",\n    \"MACCROATIAN\",\n    \"WINDOWS-936\",\n    \"CSISO57GB1988\",\n    \"UCS-4BE\",\n    \"UTF-16BE\",\n    \"WINDOWS-1250\",\n    \"UCS-2BE\",\n    \"WINDOWS-1253\",\n    \"JIS_X0212\",\n    \"CSISO58GB231280\",\n    \"ISO-2022-JP\",\n    \"IBM367\",\n    \"IBM-CP1133\",\n    \"ISO_8859-6:1987\",\n    \"ISO_8859-1:1987\",\n    \"CSISO2022JP\",\n    \"UTF-7\",\n    \"CSPC862LATINHEBREW\",\n    \"ARABIC\",\n    \"MS_KANJI\",\n    \"JIS_X0201\",\n    \"ISO_8859-2:1987\",\n    \"UNICODEBIG\",\n    \"TIS620.2533-0\",\n    \"ASMO-708\",\n    \"CSISO87JISX0208\",\n    \"MACTURKISH\",\n    \"WINDOWS-874\",\n    \"ANSI_X3.4-1986\",\n    \"WINDOWS-1257\",\n    \"JIS_X0208\",\n    \"JISX0201-1976\",\n    \"KOI8-U\",\n    \"JAVA\",\n    \"KOI8-RU\",\n    \"JIS_X0212-1990\",\n    \"ANSI_X3.4-1968\",\n    \"HEBREW\",\n    \"CSEUCTW\",\n    \"CSHALFWIDTHKATAKANA\",\n    \"UTF-32BE\",\n    \"ISO_8859-7:2003\",\n    \"CSPC850MULTILINGUAL\",\n    \"MS-TURK\",\n    \"JIS_X0208-1990\",\n    \"JIS_X0208-1983\",\n    \"JIS_X0212.1990-0\",\n    \"MACARABIC\",\n    \"ISO_8859-7:1987\",\n    \"MACUKRAINE\",\n    \"CSEUCPKDFMTJAPANESE\",\n    \"MACROMANIA\",\n    \"BIG5-HKSCS:2001\",\n    \"BIG5-HKSCS:2004\",\n    \"JOHAB\",\n    \"BIG5-HKSCS:2008\",\n    \"BIG5-HKSCS:1999\",\n    \"MACHEBREW\",\n    \"TCVN5712-1:1993\",\n    \"UCS-4-SWAPPED\",\n    \"UCS-2-SWAPPED\",\n    \"WINBALTRIM\",\n    \"MS-ARAB\"\n  };\n#define stringpool ((const char *) &stringpool_contents)\n\nstatic const struct alias aliases[] =\n  {\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 134 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str15, ei_iso8859_10},\n    {-1},\n#line 60 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str17, ei_iso8859_1},\n    {-1}, {-1},\n#line 289 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str20, ei_iso646_cn},\n    {-1}, {-1}, {-1}, {-1},\n#line 84 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str25, ei_iso8859_4},\n    {-1},\n#line 126 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str27, ei_iso8859_9},\n    {-1}, {-1},\n#line 227 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str30, ei_hp_roman8},\n    {-1}, {-1},\n#line 151 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str33, ei_iso8859_14},\n#line 310 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str34, ei_sjis},\n    {-1},\n#line 207 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str36, ei_cp866},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 68 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str43, ei_iso8859_2},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 335 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str49, ei_hz},\n    {-1},\n#line 16 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str51, ei_ascii},\n    {-1}, {-1},\n#line 205 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str54, ei_cp866},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 51 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str64, ei_c99},\n#line 252 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str65, ei_tis620},\n#line 322 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str66, ei_euc_cn},\n#line 133 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str67, ei_iso8859_10},\n    {-1}, {-1},\n#line 236 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str70, ei_pt154},\n#line 59 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str71, ei_iso8859_1},\n#line 321 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str72, ei_euc_cn},\n    {-1},\n#line 91 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str74, ei_iso8859_5},\n    {-1},\n#line 287 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str76, ei_iso646_cn},\n    {-1}, {-1},\n#line 265 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str79, ei_iso646_jp},\n    {-1}, {-1}, {-1}, {-1},\n#line 189 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str84, ei_cp1256},\n    {-1}, {-1},\n#line 83 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str87, ei_iso8859_4},\n#line 174 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str88, ei_cp1251},\n#line 295 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str89, ei_isoir165},\n    {-1},\n#line 125 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str91, ei_iso8859_9},\n#line 203 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str92, ei_cp862},\n#line 107 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str93, ei_iso8859_7},\n    {-1},\n#line 90 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str95, ei_iso8859_5},\n#line 57 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str96, ei_iso8859_1},\n    {-1}, {-1},\n#line 253 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str99, ei_tis620},\n    {-1}, {-1}, {-1},\n#line 150 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str103, ei_iso8859_14},\n#line 183 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str104, ei_cp1254},\n#line 292 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str105, ei_gb2312},\n#line 357 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str106, ei_cp949},\n    {-1},\n#line 186 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str108, ei_cp1255},\n    {-1},\n#line 201 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str110, ei_cp862},\n#line 124 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str111, ei_iso8859_9},\n#line 76 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str112, ei_iso8859_3},\n#line 158 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str113, ei_iso8859_15},\n#line 294 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str114, ei_gb2312},\n#line 300 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str115, ei_ksc5601},\n    {-1},\n#line 284 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str117, ei_jisx0212},\n    {-1},\n#line 163 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str119, ei_iso8859_16},\n#line 195 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str120, ei_cp1258},\n    {-1}, {-1},\n#line 67 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str123, ei_iso8859_2},\n#line 102 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str124, ei_iso8859_6},\n#line 149 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str125, ei_iso8859_14},\n    {-1}, {-1},\n#line 62 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str128, ei_iso8859_1},\n#line 152 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str129, ei_iso8859_14},\n#line 94 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str130, ei_iso8859_6},\n#line 95 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str131, ei_iso8859_6},\n#line 166 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str132, ei_iso8859_16},\n    {-1},\n#line 53 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str134, ei_iso8859_1},\n#line 54 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str135, ei_iso8859_1},\n#line 139 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str136, ei_iso8859_11},\n    {-1},\n#line 160 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str138, ei_iso8859_16},\n#line 161 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str139, ei_iso8859_16},\n#line 177 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str140, ei_cp1252},\n    {-1},\n#line 137 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str142, ei_iso8859_11},\n#line 138 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str143, ei_iso8859_11},\n#line 86 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str144, ei_iso8859_4},\n#line 361 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str145, ei_johab},\n#line 162 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str146, ei_iso8859_16},\n#line 209 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str147, ei_cp1131},\n#line 93 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str148, ei_iso8859_5},\n    {-1},\n#line 79 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str150, ei_iso8859_4},\n#line 80 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str151, ei_iso8859_4},\n#line 153 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str152, ei_iso8859_14},\n#line 328 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str153, ei_cp936},\n#line 87 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str154, ei_iso8859_5},\n#line 88 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str155, ei_iso8859_5},\n#line 159 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str156, ei_iso8859_15},\n#line 212 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str157, ei_mac_roman},\n#line 146 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str158, ei_iso8859_14},\n#line 147 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str159, ei_iso8859_14},\n#line 120 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str160, ei_iso8859_8},\n#line 66 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str161, ei_iso8859_2},\n#line 154 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str162, ei_iso8859_15},\n#line 155 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str163, ei_iso8859_15},\n#line 128 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str164, ei_iso8859_9},\n    {-1},\n#line 114 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str166, ei_iso8859_8},\n#line 115 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str167, ei_iso8859_8},\n    {-1}, {-1},\n#line 121 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str170, ei_iso8859_9},\n#line 122 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str171, ei_iso8859_9},\n#line 148 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str172, ei_iso8859_14},\n#line 234 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str173, ei_pt154},\n#line 156 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str174, ei_iso8859_15},\n    {-1},\n#line 239 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str176, ei_rk1048},\n    {-1}, {-1},\n#line 109 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str179, ei_iso8859_7},\n#line 70 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str180, ei_iso8859_2},\n#line 176 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str181, ei_cp1251},\n#line 206 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str182, ei_cp866},\n#line 144 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str183, ei_iso8859_13},\n    {-1}, {-1},\n#line 63 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str186, ei_iso8859_2},\n#line 64 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str187, ei_iso8859_2},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 364 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str193, ei_local_char},\n    {-1}, {-1}, {-1},\n#line 74 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str197, ei_iso8859_3},\n#line 117 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str198, ei_iso8859_8},\n    {-1}, {-1}, {-1},\n#line 13 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str202, ei_ascii},\n#line 167 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str203, ei_koi8_r},\n#line 354 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str204, ei_euc_kr},\n#line 165 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str205, ei_iso8859_16},\n    {-1}, {-1}, {-1},\n#line 313 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str209, ei_cp932},\n#line 353 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str210, ei_euc_kr},\n    {-1},\n#line 320 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str212, ei_iso2022_jpms},\n    {-1}, {-1}, {-1},\n#line 168 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str216, ei_koi8_r},\n#line 173 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str217, ei_cp1250},\n    {-1}, {-1},\n#line 199 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str220, ei_cp850},\n    {-1}, {-1},\n#line 22 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str223, ei_ascii},\n#line 58 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str224, ei_iso8859_1},\n#line 218 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str225, ei_mac_cyrillic},\n    {-1}, {-1},\n#line 256 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str228, ei_viscii},\n    {-1}, {-1}, {-1}, {-1},\n#line 259 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str233, ei_tcvn},\n    {-1}, {-1},\n#line 309 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str236, ei_sjis},\n#line 308 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str237, ei_sjis},\n#line 202 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str238, ei_cp862},\n    {-1},\n#line 267 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str240, ei_iso646_jp},\n    {-1},\n#line 254 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str242, ei_cp874},\n#line 323 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str243, ei_euc_cn},\n    {-1},\n#line 21 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str245, ei_ascii},\n    {-1},\n#line 258 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str247, ei_viscii},\n    {-1}, {-1},\n#line 197 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str250, ei_cp850},\n#line 82 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str251, ei_iso8859_4},\n#line 346 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str252, ei_cp950},\n#line 233 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str253, ei_koi8_t},\n#line 332 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str254, ei_iso2022_cn},\n#line 266 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str255, ei_iso646_jp},\n    {-1},\n#line 237 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str257, ei_pt154},\n    {-1},\n#line 164 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str259, ei_iso8859_16},\n#line 358 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str260, ei_cp949},\n#line 75 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str261, ei_iso8859_3},\n    {-1},\n#line 333 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str263, ei_iso2022_cn},\n#line 131 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str264, ei_iso8859_10},\n    {-1}, {-1},\n#line 211 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str267, ei_mac_roman},\n#line 171 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str268, ei_cp1250},\n    {-1}, {-1},\n#line 135 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str271, ei_iso8859_10},\n#line 312 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str272, ei_sjis},\n#line 142 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str273, ei_iso8859_13},\n#line 329 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str274, ei_cp936},\n#line 61 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str275, ei_iso8859_1},\n#line 247 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str276, ei_tis620},\n    {-1},\n#line 180 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str278, ei_cp1253},\n#line 326 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str279, ei_euc_cn},\n#line 38 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str280, ei_utf16},\n#line 334 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str281, ei_iso2022_cn_ext},\n#line 246 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str282, ei_tis620},\n#line 33 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str283, ei_ucs4},\n#line 110 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str284, ei_iso8859_7},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 92 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str290, ei_iso8859_5},\n#line 85 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str291, ei_iso8859_4},\n    {-1}, {-1}, {-1},\n#line 127 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str295, ei_iso8859_9},\n    {-1}, {-1}, {-1}, {-1},\n#line 235 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str300, ei_pt154},\n#line 35 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str301, ei_ucs4},\n#line 14 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str302, ei_ascii},\n    {-1},\n#line 359 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str304, ei_cp949},\n    {-1}, {-1}, {-1},\n#line 23 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str308, ei_utf8},\n    {-1}, {-1},\n#line 297 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str311, ei_ksc5601},\n    {-1}, {-1}, {-1},\n#line 340 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str315, ei_ces_big5},\n#line 136 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str316, ei_iso8859_10},\n    {-1},\n#line 78 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str318, ei_iso8859_3},\n#line 24 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str319, ei_ucs2},\n    {-1},\n#line 341 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str321, ei_ces_big5},\n#line 129 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str322, ei_iso8859_10},\n#line 130 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str323, ei_iso8859_10},\n#line 71 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str324, ei_iso8859_3},\n#line 72 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str325, ei_iso8859_3},\n#line 145 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str326, ei_iso8859_13},\n#line 69 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str327, ei_iso8859_2},\n#line 37 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str328, ei_ucs4le},\n    {-1},\n#line 241 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str330, ei_rk1048},\n    {-1},\n#line 140 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str332, ei_iso8859_13},\n#line 141 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str333, ei_iso8859_13},\n#line 345 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str334, ei_ces_big5},\n#line 40 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str335, ei_utf16le},\n#line 283 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str336, ei_jisx0212},\n#line 244 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str337, ei_cp1133},\n#line 327 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str338, ei_ces_gbk},\n#line 179 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str339, ei_cp1252},\n#line 344 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str340, ei_ces_big5},\n#line 56 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str341, ei_iso8859_1},\n    {-1},\n#line 238 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str343, ei_pt154},\n    {-1},\n#line 286 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str345, ei_iso646_cn},\n#line 31 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str346, ei_ucs2le},\n    {-1}, {-1}, {-1},\n#line 285 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str350, ei_jisx0212},\n#line 29 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str351, ei_ucs2be},\n    {-1},\n#line 299 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str353, ei_ksc5601},\n    {-1},\n#line 242 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str355, ei_rk1048},\n#line 257 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str356, ei_viscii},\n    {-1},\n#line 15 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str358, ei_ascii},\n#line 30 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str359, ei_ucs2be},\n#line 296 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str360, ei_isoir165},\n#line 26 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str361, ei_ucs2},\n    {-1},\n#line 49 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str363, ei_ucs4internal},\n#line 226 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str364, ei_hp_roman8},\n    {-1}, {-1},\n#line 263 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str367, ei_iso646_jp},\n#line 278 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str368, ei_jisx0208},\n    {-1}, {-1},\n#line 302 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str371, ei_ksc5601},\n    {-1}, {-1},\n#line 270 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str374, ei_jisx0201},\n#line 243 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str375, ei_mulelao},\n    {-1},\n#line 157 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str377, ei_iso8859_15},\n#line 198 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str378, ei_cp850},\n    {-1},\n#line 248 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str380, ei_tis620},\n#line 47 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str381, ei_ucs2internal},\n#line 98 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str382, ei_iso8859_6},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 224 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str389, ei_mac_thai},\n#line 111 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str390, ei_iso8859_7},\n#line 230 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str391, ei_armscii_8},\n#line 362 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str392, ei_iso2022_kr},\n    {-1}, {-1}, {-1},\n#line 232 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str396, ei_georgian_ps},\n#line 249 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str397, ei_tis620},\n#line 108 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str398, ei_iso8859_7},\n    {-1}, {-1},\n#line 363 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str401, ei_iso2022_kr},\n    {-1},\n#line 143 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str403, ei_iso8859_13},\n    {-1},\n#line 288 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str405, ei_iso646_cn},\n#line 276 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str406, ei_jisx0208},\n#line 225 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str407, ei_hp_roman8},\n#line 304 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str408, ei_euc_jp},\n    {-1}, {-1},\n#line 277 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str411, ei_jisx0208},\n    {-1},\n#line 132 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str413, ei_iso8859_10},\n#line 303 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str414, ei_euc_jp},\n    {-1},\n#line 34 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str416, ei_ucs4},\n#line 356 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str417, ei_euc_kr},\n#line 264 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str418, ei_iso646_jp},\n    {-1},\n#line 192 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str420, ei_cp1257},\n#line 32 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str421, ei_ucs2le},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 275 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str427, ei_jisx0208},\n    {-1},\n#line 97 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str429, ei_iso8859_6},\n#line 215 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str430, ei_mac_iceland},\n#line 41 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str431, ei_utf32},\n    {-1}, {-1},\n#line 25 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str434, ei_ucs2},\n#line 338 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str435, ei_euc_tw},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 337 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str441, ei_euc_tw},\n#line 291 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str442, ei_gb2312},\n#line 208 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str443, ei_cp866},\n    {-1},\n#line 101 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str445, ei_iso8859_6},\n    {-1},\n#line 112 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str447, ei_iso8859_7},\n#line 213 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str448, ei_mac_roman},\n    {-1}, {-1}, {-1},\n#line 355 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str452, ei_euc_kr},\n#line 12 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str453, ei_ascii},\n    {-1},\n#line 231 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str455, ei_georgian_academy},\n#line 188 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str456, ei_cp1255},\n#line 365 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str457, ei_local_wchar_t},\n#line 43 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str458, ei_utf32le},\n#line 331 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str459, ei_gb18030},\n#line 113 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str460, ei_iso8859_7},\n    {-1},\n#line 81 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str462, ei_iso8859_4},\n#line 214 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str463, ei_mac_centraleurope},\n#line 89 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str464, ei_iso8859_5},\n#line 77 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str465, ei_iso8859_3},\n#line 103 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str466, ei_iso8859_7},\n#line 104 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str467, ei_iso8859_7},\n    {-1},\n#line 19 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str469, ei_ascii},\n#line 116 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str470, ei_iso8859_8},\n    {-1}, {-1}, {-1},\n#line 123 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str474, ei_iso8859_9},\n    {-1},\n#line 210 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str476, ei_mac_roman},\n#line 119 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str477, ei_iso8859_8},\n    {-1}, {-1}, {-1},\n#line 261 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str481, ei_tcvn},\n#line 305 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str482, ei_euc_jp},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 240 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str489, ei_rk1048},\n#line 190 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str490, ei_cp1256},\n#line 316 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str491, ei_iso2022_jp1},\n#line 175 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str492, ei_cp1251},\n#line 319 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str493, ei_iso2022_jpms},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 260 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str499, ei_tcvn},\n#line 184 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str500, ei_cp1254},\n#line 298 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str501, ei_ksc5601},\n#line 187 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str502, ei_cp1255},\n    {-1},\n#line 325 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str504, ei_euc_cn},\n    {-1}, {-1}, {-1},\n#line 196 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str508, ei_cp1258},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 317 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str517, ei_iso2022_jp2},\n#line 178 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str518, ei_cp1252},\n    {-1},\n#line 351 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str520, ei_big5hkscs2008},\n    {-1}, {-1},\n#line 45 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str523, ei_utf7},\n    {-1},\n#line 318 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str525, ei_iso2022_jp2},\n#line 350 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str526, ei_big5hkscs2008},\n#line 301 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str527, ei_ksc5601},\n#line 228 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str528, ei_hp_roman8},\n#line 46 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str529, ei_utf7},\n    {-1}, {-1},\n#line 307 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str532, ei_euc_jp},\n    {-1},\n#line 336 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str534, ei_hz},\n#line 182 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str535, ei_cp1253},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 220 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str541, ei_mac_greek},\n#line 343 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str542, ei_ces_big5},\n#line 251 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str543, ei_tis620},\n    {-1}, {-1},\n#line 324 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str546, ei_euc_cn},\n    {-1},\n#line 342 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str548, ei_ces_big5},\n#line 73 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str549, ei_iso8859_3},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1},\n#line 229 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str561, ei_nextstep},\n#line 216 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str562, ei_mac_croatian},\n    {-1},\n#line 330 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str564, ei_cp936},\n    {-1},\n#line 290 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str566, ei_iso646_cn},\n    {-1},\n#line 36 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str568, ei_ucs4be},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 39 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str575, ei_utf16be},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 172 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str582, ei_cp1250},\n    {-1}, {-1}, {-1},\n#line 27 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str586, ei_ucs2be},\n#line 181 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str587, ei_cp1253},\n    {-1}, {-1},\n#line 280 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str590, ei_jisx0212},\n    {-1}, {-1}, {-1}, {-1},\n#line 293 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str595, ei_gb2312},\n#line 314 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str596, ei_iso2022_jp},\n#line 20 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str597, ei_ascii},\n#line 245 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str598, ei_cp1133},\n    {-1}, {-1}, {-1},\n#line 96 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str602, ei_iso8859_6},\n    {-1},\n#line 55 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str604, ei_iso8859_1},\n#line 315 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str605, ei_iso2022_jp},\n    {-1}, {-1},\n#line 44 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str608, ei_utf7},\n#line 204 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str609, ei_cp862},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 100 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str618, ei_iso8859_6},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 311 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str625, ei_sjis},\n    {-1}, {-1},\n#line 268 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str628, ei_jisx0201},\n    {-1},\n#line 65 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str630, ei_iso8859_2},\n#line 28 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str631, ei_ucs2be},\n    {-1},\n#line 250 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str633, ei_tis620},\n    {-1},\n#line 99 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str635, ei_iso8859_6},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 279 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str643, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1},\n#line 221 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str648, ei_mac_turkish},\n    {-1}, {-1}, {-1}, {-1},\n#line 255 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str653, ei_cp874},\n    {-1}, {-1}, {-1},\n#line 18 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str657, ei_ascii},\n#line 193 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str658, ei_cp1257},\n    {-1},\n#line 272 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str660, ei_jisx0208},\n#line 269 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str661, ei_jisx0201},\n    {-1},\n#line 169 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str663, ei_koi8_u},\n#line 52 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str664, ei_java},\n    {-1}, {-1}, {-1}, {-1},\n#line 170 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str669, ei_koi8_ru},\n    {-1},\n#line 282 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str671, ei_jisx0212},\n    {-1}, {-1}, {-1},\n#line 17 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str675, ei_ascii},\n    {-1},\n#line 118 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str677, ei_iso8859_8},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 339 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str683, ei_euc_tw},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 271 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str693, ei_jisx0201},\n    {-1}, {-1}, {-1}, {-1},\n#line 42 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str698, ei_utf32be},\n#line 106 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str699, ei_iso8859_7},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 200 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str705, ei_cp850},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 185 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str720, ei_cp1254},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1},\n#line 274 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str751, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1},\n#line 273 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str756, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 281 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str764, ei_jisx0212},\n    {-1}, {-1}, {-1}, {-1},\n#line 223 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str769, ei_mac_arabic},\n#line 105 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str770, ei_iso8859_7},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 219 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str777, ei_mac_ukraine},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1},\n#line 306 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str798, ei_euc_jp},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 217 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str813, ei_mac_romania},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 348 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str828, ei_big5hkscs2001},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 349 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str836, ei_big5hkscs2004},\n#line 360 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str837, ei_johab},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 352 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str844, ei_big5hkscs2008},\n    {-1},\n#line 347 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str846, ei_big5hkscs1999},\n    {-1},\n#line 222 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str848, ei_mac_hebrew},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1},\n#line 262 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str879, ei_tcvn},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1},\n#line 50 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str893, ei_ucs4swapped},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 48 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str911, ei_ucs2swapped},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 194 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str928, ei_cp1257},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 191 \"lib/aliases_sysosf1.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str981, ei_cp1256}\n  };\n\n#ifdef __GNUC__\n__inline\n#if defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__\n__attribute__ ((__gnu_inline__))\n#endif\n#endif\nconst struct alias *\naliases_lookup (register const char *str, register unsigned int len)\n{\n  if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)\n    {\n      register int key = aliases_hash (str, len);\n\n      if (key <= MAX_HASH_VALUE && key >= 0)\n        {\n          register int o = aliases[key].name;\n          if (o >= 0)\n            {\n              register const char *s = o + stringpool;\n\n              if (*str == *s && !strcmp (str + 1, s + 1))\n                return &aliases[key];\n            }\n        }\n    }\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_syssolaris.gperf",
    "content": "struct alias { int name; unsigned int encoding_index; };\n%struct-type\n%language=ANSI-C\n%define hash-function-name aliases_hash\n%define lookup-function-name aliases_lookup\n%7bit\n%readonly-tables\n%global-table\n%define word-array-name aliases\n%pic\n%%\nUS-ASCII, ei_ascii\nASCII, ei_ascii\nISO646-US, ei_ascii\nISO_646.IRV:1991, ei_ascii\nISO-IR-6, ei_ascii\nANSI_X3.4-1968, ei_ascii\nANSI_X3.4-1986, ei_ascii\nCP367, ei_ascii\nIBM367, ei_ascii\nUS, ei_ascii\nCSASCII, ei_ascii\n646, ei_ascii\nUTF-8, ei_utf8\nUCS-2, ei_ucs2\nISO-10646-UCS-2, ei_ucs2\nCSUNICODE, ei_ucs2\nUCS-2BE, ei_ucs2be\nUNICODEBIG, ei_ucs2be\nUNICODE-1-1, ei_ucs2be\nCSUNICODE11, ei_ucs2be\nUCS-2LE, ei_ucs2le\nUNICODELITTLE, ei_ucs2le\nUCS-4, ei_ucs4\nISO-10646-UCS-4, ei_ucs4\nCSUCS4, ei_ucs4\nUCS-4BE, ei_ucs4be\nUCS-4LE, ei_ucs4le\nUTF-16, ei_utf16\nUTF-16BE, ei_utf16be\nUTF-16LE, ei_utf16le\nUTF-32, ei_utf32\nUTF-32BE, ei_utf32be\nUTF-32LE, ei_utf32le\nUTF-7, ei_utf7\nUNICODE-1-1-UTF-7, ei_utf7\nCSUNICODE11UTF7, ei_utf7\nUCS-2-INTERNAL, ei_ucs2internal\nUCS-2-SWAPPED, ei_ucs2swapped\nUCS-4-INTERNAL, ei_ucs4internal\nUCS-4-SWAPPED, ei_ucs4swapped\nC99, ei_c99\nJAVA, ei_java\nISO-8859-1, ei_iso8859_1\nISO_8859-1, ei_iso8859_1\nISO_8859-1:1987, ei_iso8859_1\nISO-IR-100, ei_iso8859_1\nCP819, ei_iso8859_1\nIBM819, ei_iso8859_1\nLATIN1, ei_iso8859_1\nL1, ei_iso8859_1\nCSISOLATIN1, ei_iso8859_1\nISO8859-1, ei_iso8859_1\nISO-8859-2, ei_iso8859_2\nISO_8859-2, ei_iso8859_2\nISO_8859-2:1987, ei_iso8859_2\nISO-IR-101, ei_iso8859_2\nLATIN2, ei_iso8859_2\nL2, ei_iso8859_2\nCSISOLATIN2, ei_iso8859_2\nISO8859-2, ei_iso8859_2\nISO-8859-3, ei_iso8859_3\nISO_8859-3, ei_iso8859_3\nISO_8859-3:1988, ei_iso8859_3\nISO-IR-109, ei_iso8859_3\nLATIN3, ei_iso8859_3\nL3, ei_iso8859_3\nCSISOLATIN3, ei_iso8859_3\nISO8859-3, ei_iso8859_3\nISO-8859-4, ei_iso8859_4\nISO_8859-4, ei_iso8859_4\nISO_8859-4:1988, ei_iso8859_4\nISO-IR-110, ei_iso8859_4\nLATIN4, ei_iso8859_4\nL4, ei_iso8859_4\nCSISOLATIN4, ei_iso8859_4\nISO8859-4, ei_iso8859_4\nISO-8859-5, ei_iso8859_5\nISO_8859-5, ei_iso8859_5\nISO_8859-5:1988, ei_iso8859_5\nISO-IR-144, ei_iso8859_5\nCYRILLIC, ei_iso8859_5\nCSISOLATINCYRILLIC, ei_iso8859_5\nISO8859-5, ei_iso8859_5\nISO-8859-6, ei_iso8859_6\nISO_8859-6, ei_iso8859_6\nISO_8859-6:1987, ei_iso8859_6\nISO-IR-127, ei_iso8859_6\nECMA-114, ei_iso8859_6\nASMO-708, ei_iso8859_6\nARABIC, ei_iso8859_6\nCSISOLATINARABIC, ei_iso8859_6\nISO8859-6, ei_iso8859_6\nISO-8859-7, ei_iso8859_7\nISO_8859-7, ei_iso8859_7\nISO_8859-7:1987, ei_iso8859_7\nISO_8859-7:2003, ei_iso8859_7\nISO-IR-126, ei_iso8859_7\nECMA-118, ei_iso8859_7\nELOT_928, ei_iso8859_7\nGREEK8, ei_iso8859_7\nGREEK, ei_iso8859_7\nCSISOLATINGREEK, ei_iso8859_7\nISO8859-7, ei_iso8859_7\nISO-8859-8, ei_iso8859_8\nISO_8859-8, ei_iso8859_8\nISO_8859-8:1988, ei_iso8859_8\nISO-IR-138, ei_iso8859_8\nHEBREW, ei_iso8859_8\nCSISOLATINHEBREW, ei_iso8859_8\nISO8859-8, ei_iso8859_8\nISO-8859-9, ei_iso8859_9\nISO_8859-9, ei_iso8859_9\nISO_8859-9:1989, ei_iso8859_9\nISO-IR-148, ei_iso8859_9\nLATIN5, ei_iso8859_9\nL5, ei_iso8859_9\nCSISOLATIN5, ei_iso8859_9\nISO8859-9, ei_iso8859_9\nISO-8859-10, ei_iso8859_10\nISO_8859-10, ei_iso8859_10\nISO_8859-10:1992, ei_iso8859_10\nISO-IR-157, ei_iso8859_10\nLATIN6, ei_iso8859_10\nL6, ei_iso8859_10\nCSISOLATIN6, ei_iso8859_10\nISO8859-10, ei_iso8859_10\nISO-8859-11, ei_iso8859_11\nISO_8859-11, ei_iso8859_11\nISO8859-11, ei_iso8859_11\nISO-8859-13, ei_iso8859_13\nISO_8859-13, ei_iso8859_13\nISO-IR-179, ei_iso8859_13\nLATIN7, ei_iso8859_13\nL7, ei_iso8859_13\nISO8859-13, ei_iso8859_13\nISO-8859-14, ei_iso8859_14\nISO_8859-14, ei_iso8859_14\nISO_8859-14:1998, ei_iso8859_14\nISO-IR-199, ei_iso8859_14\nLATIN8, ei_iso8859_14\nL8, ei_iso8859_14\nISO-CELTIC, ei_iso8859_14\nISO8859-14, ei_iso8859_14\nISO-8859-15, ei_iso8859_15\nISO_8859-15, ei_iso8859_15\nISO_8859-15:1998, ei_iso8859_15\nISO-IR-203, ei_iso8859_15\nLATIN-9, ei_iso8859_15\nISO8859-15, ei_iso8859_15\nISO-8859-16, ei_iso8859_16\nISO_8859-16, ei_iso8859_16\nISO_8859-16:2001, ei_iso8859_16\nISO-IR-226, ei_iso8859_16\nLATIN10, ei_iso8859_16\nL10, ei_iso8859_16\nISO8859-16, ei_iso8859_16\nKOI8-R, ei_koi8_r\nCSKOI8R, ei_koi8_r\nKOI8-U, ei_koi8_u\nKOI8-RU, ei_koi8_ru\nCP1250, ei_cp1250\nWINDOWS-1250, ei_cp1250\nMS-EE, ei_cp1250\nCP1251, ei_cp1251\nWINDOWS-1251, ei_cp1251\nMS-CYRL, ei_cp1251\nANSI-1251, ei_cp1251\nCP1252, ei_cp1252\nWINDOWS-1252, ei_cp1252\nMS-ANSI, ei_cp1252\nCP1253, ei_cp1253\nWINDOWS-1253, ei_cp1253\nMS-GREEK, ei_cp1253\nCP1254, ei_cp1254\nWINDOWS-1254, ei_cp1254\nMS-TURK, ei_cp1254\nCP1255, ei_cp1255\nWINDOWS-1255, ei_cp1255\nMS-HEBR, ei_cp1255\nCP1256, ei_cp1256\nWINDOWS-1256, ei_cp1256\nMS-ARAB, ei_cp1256\nCP1257, ei_cp1257\nWINDOWS-1257, ei_cp1257\nWINBALTRIM, ei_cp1257\nCP1258, ei_cp1258\nWINDOWS-1258, ei_cp1258\nCP850, ei_cp850\nIBM850, ei_cp850\n850, ei_cp850\nCSPC850MULTILINGUAL, ei_cp850\nCP862, ei_cp862\nIBM862, ei_cp862\n862, ei_cp862\nCSPC862LATINHEBREW, ei_cp862\nCP866, ei_cp866\nIBM866, ei_cp866\n866, ei_cp866\nCSIBM866, ei_cp866\nCP1131, ei_cp1131\nMACROMAN, ei_mac_roman\nMACINTOSH, ei_mac_roman\nMAC, ei_mac_roman\nCSMACINTOSH, ei_mac_roman\nMACCENTRALEUROPE, ei_mac_centraleurope\nMACICELAND, ei_mac_iceland\nMACCROATIAN, ei_mac_croatian\nMACROMANIA, ei_mac_romania\nMACCYRILLIC, ei_mac_cyrillic\nMACUKRAINE, ei_mac_ukraine\nMACGREEK, ei_mac_greek\nMACTURKISH, ei_mac_turkish\nMACHEBREW, ei_mac_hebrew\nMACARABIC, ei_mac_arabic\nMACTHAI, ei_mac_thai\nHP-ROMAN8, ei_hp_roman8\nROMAN8, ei_hp_roman8\nR8, ei_hp_roman8\nCSHPROMAN8, ei_hp_roman8\nNEXTSTEP, ei_nextstep\nARMSCII-8, ei_armscii_8\nGEORGIAN-ACADEMY, ei_georgian_academy\nGEORGIAN-PS, ei_georgian_ps\nKOI8-T, ei_koi8_t\nPT154, ei_pt154\nPTCP154, ei_pt154\nCP154, ei_pt154\nCYRILLIC-ASIAN, ei_pt154\nCSPTCP154, ei_pt154\nRK1048, ei_rk1048\nSTRK1048-2002, ei_rk1048\nKZ-1048, ei_rk1048\nCSKZ1048, ei_rk1048\nMULELAO-1, ei_mulelao\nCP1133, ei_cp1133\nIBM-CP1133, ei_cp1133\nTIS-620, ei_tis620\nTIS620, ei_tis620\nTIS620-0, ei_tis620\nTIS620.2529-1, ei_tis620\nTIS620.2533-0, ei_tis620\nTIS620.2533-1, ei_tis620\nISO-IR-166, ei_tis620\nTIS620.2533, ei_tis620\nCP874, ei_cp874\nWINDOWS-874, ei_cp874\nVISCII, ei_viscii\nVISCII1.1-1, ei_viscii\nCSVISCII, ei_viscii\nTCVN, ei_tcvn\nTCVN-5712, ei_tcvn\nTCVN5712-1, ei_tcvn\nTCVN5712-1:1993, ei_tcvn\nJIS_C6220-1969-RO, ei_iso646_jp\nISO646-JP, ei_iso646_jp\nISO-IR-14, ei_iso646_jp\nJP, ei_iso646_jp\nCSISO14JISC6220RO, ei_iso646_jp\nJIS_X0201, ei_jisx0201\nJISX0201-1976, ei_jisx0201\nX0201, ei_jisx0201\nCSHALFWIDTHKATAKANA, ei_jisx0201\nJIS_X0208, ei_jisx0208\nJIS_X0208-1983, ei_jisx0208\nJIS_X0208-1990, ei_jisx0208\nJIS0208, ei_jisx0208\nX0208, ei_jisx0208\nISO-IR-87, ei_jisx0208\nJIS_C6226-1983, ei_jisx0208\nCSISO87JISX0208, ei_jisx0208\nJIS_X0212, ei_jisx0212\nJIS_X0212.1990-0, ei_jisx0212\nJIS_X0212-1990, ei_jisx0212\nX0212, ei_jisx0212\nISO-IR-159, ei_jisx0212\nCSISO159JISX02121990, ei_jisx0212\nGB_1988-80, ei_iso646_cn\nISO646-CN, ei_iso646_cn\nISO-IR-57, ei_iso646_cn\nCN, ei_iso646_cn\nCSISO57GB1988, ei_iso646_cn\nGB_2312-80, ei_gb2312\nISO-IR-58, ei_gb2312\nCSISO58GB231280, ei_gb2312\nCHINESE, ei_gb2312\nISO-IR-165, ei_isoir165\nCN-GB-ISOIR165, ei_isoir165\nKSC_5601, ei_ksc5601\nKS_C_5601-1987, ei_ksc5601\nKS_C_5601-1989, ei_ksc5601\nISO-IR-149, ei_ksc5601\nCSKSC56011987, ei_ksc5601\nKOREAN, ei_ksc5601\nEUC-JP, ei_euc_jp\nEUCJP, ei_euc_jp\nEXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE, ei_euc_jp\nCSEUCPKDFMTJAPANESE, ei_euc_jp\nSHIFT_JIS, ei_sjis\nSHIFT-JIS, ei_sjis\nSJIS, ei_sjis\nMS_KANJI, ei_sjis\nCSSHIFTJIS, ei_sjis\nPCK, ei_sjis\nCP932, ei_cp932\nISO-2022-JP, ei_iso2022_jp\nCSISO2022JP, ei_iso2022_jp\nISO-2022-JP-1, ei_iso2022_jp1\nISO-2022-JP-2, ei_iso2022_jp2\nCSISO2022JP2, ei_iso2022_jp2\nISO-2022-JP-MS, ei_iso2022_jpms\nCP50221, ei_iso2022_jpms\nEUC-CN, ei_euc_cn\nEUCCN, ei_euc_cn\nGB2312, ei_euc_cn\nCN-GB, ei_euc_cn\nCSGB2312, ei_euc_cn\nGBK, ei_ces_gbk\nCP936, ei_cp936\nMS936, ei_cp936\nWINDOWS-936, ei_cp936\nGB18030, ei_gb18030\nISO-2022-CN, ei_iso2022_cn\nCSISO2022CN, ei_iso2022_cn\nISO-2022-CN-EXT, ei_iso2022_cn_ext\nHZ, ei_hz\nHZ-GB-2312, ei_hz\nEUC-TW, ei_euc_tw\nEUCTW, ei_euc_tw\nCSEUCTW, ei_euc_tw\nCNS11643, ei_euc_tw\nBIG5, ei_ces_big5\nBIG-5, ei_ces_big5\nBIG-FIVE, ei_ces_big5\nBIGFIVE, ei_ces_big5\nCN-BIG5, ei_ces_big5\nCSBIG5, ei_ces_big5\nCP950, ei_cp950\nBIG5-HKSCS:1999, ei_big5hkscs1999\nBIG5-HKSCS:2001, ei_big5hkscs2001\nBIG5-HKSCS:2004, ei_big5hkscs2004\nBIG5-HKSCS, ei_big5hkscs2008\nBIG5HKSCS, ei_big5hkscs2008\nBIG5-HKSCS:2008, ei_big5hkscs2008\nEUC-KR, ei_euc_kr\nEUCKR, ei_euc_kr\nCSEUCKR, ei_euc_kr\n5601, ei_euc_kr\nCP949, ei_cp949\nUHC, ei_cp949\nJOHAB, ei_johab\nCP1361, ei_johab\nKO_KR.JOHAP92, ei_johab\nISO-2022-KR, ei_iso2022_kr\nCSISO2022KR, ei_iso2022_kr\nCHAR, ei_local_char\nWCHAR_T, ei_local_wchar_t\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/aliases_syssolaris.h",
    "content": "/* ANSI-C code produced by gperf version 3.0.4 */\n/* Command-line: gperf -m 10 lib/aliases_syssolaris.gperf  */\n/* Computed positions: -k'1,3-11,$' */\n\n#if !((' ' == 32) && ('!' == 33) && ('\"' == 34) && ('#' == 35) \\\n      && ('%' == 37) && ('&' == 38) && ('\\'' == 39) && ('(' == 40) \\\n      && (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \\\n      && ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \\\n      && ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \\\n      && ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \\\n      && ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \\\n      && ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \\\n      && ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \\\n      && ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \\\n      && ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \\\n      && ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \\\n      && ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \\\n      && ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \\\n      && ('Z' == 90) && ('[' == 91) && ('\\\\' == 92) && (']' == 93) \\\n      && ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \\\n      && ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \\\n      && ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \\\n      && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \\\n      && ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \\\n      && ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \\\n      && ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \\\n      && ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126))\n/* The character set is not based on ISO-646.  */\n#error \"gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>.\"\n#endif\n\n#line 1 \"lib/aliases_syssolaris.gperf\"\nstruct alias { int name; unsigned int encoding_index; };\n\n#define TOTAL_KEYWORDS 356\n#define MIN_WORD_LENGTH 2\n#define MAX_WORD_LENGTH 45\n#define MIN_HASH_VALUE 8\n#define MAX_HASH_VALUE 956\n/* maximum key range = 949, duplicates = 0 */\n\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic unsigned int\naliases_hash (register const char *str, register unsigned int len)\n{\n  static const unsigned short asso_values[] =\n    {\n      957, 957, 957, 957, 957, 957, 957, 957, 957, 957,\n      957, 957, 957, 957, 957, 957, 957, 957, 957, 957,\n      957, 957, 957, 957, 957, 957, 957, 957, 957, 957,\n      957, 957, 957, 957, 957, 957, 957, 957, 957, 957,\n      957, 957, 957, 957, 957,  10, 110, 957,  34,   2,\n        8,  85,  31,   4,   3, 170,   6,   7, 192, 957,\n      957, 957, 957, 957, 957,  26, 164,   2,  39,  78,\n      125,  98, 118,   2, 168, 103, 149, 143,   4,   2,\n      139, 957,  40,  64,  28, 123, 106, 162, 190,   5,\n        4, 957, 957, 957, 957,  82, 957, 957, 957, 957,\n      957, 957, 957, 957, 957, 957, 957, 957, 957, 957,\n      957, 957, 957, 957, 957, 957, 957, 957, 957, 957,\n      957, 957, 957, 957, 957, 957, 957, 957\n    };\n  register int hval = len;\n\n  switch (hval)\n    {\n      default:\n        hval += asso_values[(unsigned char)str[10]];\n      /*FALLTHROUGH*/\n      case 10:\n        hval += asso_values[(unsigned char)str[9]];\n      /*FALLTHROUGH*/\n      case 9:\n        hval += asso_values[(unsigned char)str[8]];\n      /*FALLTHROUGH*/\n      case 8:\n        hval += asso_values[(unsigned char)str[7]];\n      /*FALLTHROUGH*/\n      case 7:\n        hval += asso_values[(unsigned char)str[6]];\n      /*FALLTHROUGH*/\n      case 6:\n        hval += asso_values[(unsigned char)str[5]];\n      /*FALLTHROUGH*/\n      case 5:\n        hval += asso_values[(unsigned char)str[4]];\n      /*FALLTHROUGH*/\n      case 4:\n        hval += asso_values[(unsigned char)str[3]];\n      /*FALLTHROUGH*/\n      case 3:\n        hval += asso_values[(unsigned char)str[2]];\n      /*FALLTHROUGH*/\n      case 2:\n      case 1:\n        hval += asso_values[(unsigned char)str[0]];\n        break;\n    }\n  return hval + asso_values[(unsigned char)str[len - 1]];\n}\n\nstruct stringpool_t\n  {\n    char stringpool_str8[sizeof(\"CN\")];\n    char stringpool_str12[sizeof(\"646\")];\n    char stringpool_str15[sizeof(\"866\")];\n    char stringpool_str19[sizeof(\"C99\")];\n    char stringpool_str22[sizeof(\"CP866\")];\n    char stringpool_str25[sizeof(\"862\")];\n    char stringpool_str26[sizeof(\"CP1251\")];\n    char stringpool_str28[sizeof(\"CP1256\")];\n    char stringpool_str29[sizeof(\"CP819\")];\n    char stringpool_str30[sizeof(\"CP1255\")];\n    char stringpool_str32[sizeof(\"CP862\")];\n    char stringpool_str34[sizeof(\"CP1258\")];\n    char stringpool_str38[sizeof(\"CP1252\")];\n    char stringpool_str39[sizeof(\"ASCII\")];\n    char stringpool_str46[sizeof(\"5601\")];\n    char stringpool_str48[sizeof(\"R8\")];\n    char stringpool_str50[sizeof(\"ISO8859-1\")];\n    char stringpool_str52[sizeof(\"ISO8859-6\")];\n    char stringpool_str53[sizeof(\"ISO8859-11\")];\n    char stringpool_str54[sizeof(\"ISO8859-5\")];\n    char stringpool_str55[sizeof(\"ISO8859-16\")];\n    char stringpool_str57[sizeof(\"ISO8859-15\")];\n    char stringpool_str58[sizeof(\"ISO8859-8\")];\n    char stringpool_str59[sizeof(\"CP949\")];\n    char stringpool_str60[sizeof(\"ISO8859-9\")];\n    char stringpool_str61[sizeof(\"ISO-8859-1\")];\n    char stringpool_str62[sizeof(\"ISO8859-2\")];\n    char stringpool_str63[sizeof(\"ISO-8859-6\")];\n    char stringpool_str64[sizeof(\"ISO-8859-11\")];\n    char stringpool_str65[sizeof(\"ISO-8859-5\")];\n    char stringpool_str66[sizeof(\"ISO-8859-16\")];\n    char stringpool_str67[sizeof(\"CP50221\")];\n    char stringpool_str68[sizeof(\"ISO-8859-15\")];\n    char stringpool_str69[sizeof(\"ISO-8859-8\")];\n    char stringpool_str70[sizeof(\"ISO646-CN\")];\n    char stringpool_str71[sizeof(\"ISO-8859-9\")];\n    char stringpool_str73[sizeof(\"ISO-8859-2\")];\n    char stringpool_str75[sizeof(\"CP154\")];\n    char stringpool_str77[sizeof(\"850\")];\n    char stringpool_str80[sizeof(\"ISO-IR-6\")];\n    char stringpool_str84[sizeof(\"CP1254\")];\n    char stringpool_str85[sizeof(\"CP850\")];\n    char stringpool_str86[sizeof(\"CP950\")];\n    char stringpool_str87[sizeof(\"ISO-IR-166\")];\n    char stringpool_str89[sizeof(\"ISO-IR-165\")];\n    char stringpool_str90[sizeof(\"CP1250\")];\n    char stringpool_str91[sizeof(\"ISO-IR-58\")];\n    char stringpool_str92[sizeof(\"ISO-IR-126\")];\n    char stringpool_str95[sizeof(\"EUCCN\")];\n    char stringpool_str96[sizeof(\"ISO-IR-159\")];\n    char stringpool_str98[sizeof(\"ISO-IR-226\")];\n    char stringpool_str99[sizeof(\"ISO-IR-199\")];\n    char stringpool_str101[sizeof(\"CP1131\")];\n    char stringpool_str102[sizeof(\"CP1361\")];\n    char stringpool_str103[sizeof(\"ISO-2022-CN\")];\n    char stringpool_str105[sizeof(\"CP936\")];\n    char stringpool_str106[sizeof(\"EUC-CN\")];\n    char stringpool_str107[sizeof(\"CSASCII\")];\n    char stringpool_str108[sizeof(\"ISO8859-4\")];\n    char stringpool_str111[sizeof(\"ISO8859-14\")];\n    char stringpool_str112[sizeof(\"CHAR\")];\n    char stringpool_str115[sizeof(\"CP932\")];\n    char stringpool_str116[sizeof(\"ISO-IR-101\")];\n    char stringpool_str117[sizeof(\"ISO8859-10\")];\n    char stringpool_str119[sizeof(\"ISO-8859-4\")];\n    char stringpool_str121[sizeof(\"ISO-IR-148\")];\n    char stringpool_str122[sizeof(\"ISO-8859-14\")];\n    char stringpool_str123[sizeof(\"ISO-IR-149\")];\n    char stringpool_str124[sizeof(\"HZ\")];\n    char stringpool_str125[sizeof(\"RK1048\")];\n    char stringpool_str126[sizeof(\"ISO-IR-109\")];\n    char stringpool_str128[sizeof(\"ISO-8859-10\")];\n    char stringpool_str129[sizeof(\"ANSI-1251\")];\n    char stringpool_str130[sizeof(\"UHC\")];\n    char stringpool_str131[sizeof(\"ISO-2022-CN-EXT\")];\n    char stringpool_str133[sizeof(\"ISO_8859-1\")];\n    char stringpool_str135[sizeof(\"ISO_8859-6\")];\n    char stringpool_str136[sizeof(\"ISO_8859-11\")];\n    char stringpool_str137[sizeof(\"ISO_8859-5\")];\n    char stringpool_str138[sizeof(\"ISO_8859-16\")];\n    char stringpool_str139[sizeof(\"ISO-IR-14\")];\n    char stringpool_str140[sizeof(\"ISO_8859-15\")];\n    char stringpool_str141[sizeof(\"ISO_8859-8\")];\n    char stringpool_str142[sizeof(\"ISO_8859-16:2001\")];\n    char stringpool_str143[sizeof(\"ISO_8859-9\")];\n    char stringpool_str145[sizeof(\"ISO_8859-2\")];\n    char stringpool_str146[sizeof(\"TCVN\")];\n    char stringpool_str147[sizeof(\"ISO_8859-15:1998\")];\n    char stringpool_str148[sizeof(\"ISO-IR-110\")];\n    char stringpool_str149[sizeof(\"CSISO2022CN\")];\n    char stringpool_str150[sizeof(\"MAC\")];\n    char stringpool_str153[sizeof(\"L1\")];\n    char stringpool_str154[sizeof(\"L6\")];\n    char stringpool_str155[sizeof(\"L5\")];\n    char stringpool_str157[sizeof(\"L8\")];\n    char stringpool_str159[sizeof(\"L2\")];\n    char stringpool_str166[sizeof(\"IBM866\")];\n    char stringpool_str171[sizeof(\"ISO-IR-144\")];\n    char stringpool_str173[sizeof(\"IBM819\")];\n    char stringpool_str174[sizeof(\"ISO_8859-14:1998\")];\n    char stringpool_str175[sizeof(\"ISO-IR-138\")];\n    char stringpool_str176[sizeof(\"IBM862\")];\n    char stringpool_str177[sizeof(\"TIS620\")];\n    char stringpool_str179[sizeof(\"ISO_8859-10:1992\")];\n    char stringpool_str180[sizeof(\"ISO-IR-100\")];\n    char stringpool_str182[sizeof(\"L4\")];\n    char stringpool_str183[sizeof(\"KOI8-T\")];\n    char stringpool_str184[sizeof(\"VISCII\")];\n    char stringpool_str188[sizeof(\"TIS-620\")];\n    char stringpool_str189[sizeof(\"US\")];\n    char stringpool_str190[sizeof(\"CSVISCII\")];\n    char stringpool_str191[sizeof(\"ISO_8859-4\")];\n    char stringpool_str192[sizeof(\"CP1253\")];\n    char stringpool_str193[sizeof(\"LATIN1\")];\n    char stringpool_str194[sizeof(\"ISO_8859-14\")];\n    char stringpool_str195[sizeof(\"LATIN6\")];\n    char stringpool_str196[sizeof(\"CSKZ1048\")];\n    char stringpool_str197[sizeof(\"LATIN5\")];\n    char stringpool_str198[sizeof(\"SJIS\")];\n    char stringpool_str199[sizeof(\"KZ-1048\")];\n    char stringpool_str200[sizeof(\"ISO_8859-10\")];\n    char stringpool_str201[sizeof(\"LATIN8\")];\n    char stringpool_str202[sizeof(\"CSKOI8R\")];\n    char stringpool_str205[sizeof(\"LATIN2\")];\n    char stringpool_str207[sizeof(\"KOI8-R\")];\n    char stringpool_str212[sizeof(\"PT154\")];\n    char stringpool_str214[sizeof(\"LATIN-9\")];\n    char stringpool_str215[sizeof(\"GB2312\")];\n    char stringpool_str216[sizeof(\"ISO8859-3\")];\n    char stringpool_str218[sizeof(\"UCS-2\")];\n    char stringpool_str219[sizeof(\"ISO8859-13\")];\n    char stringpool_str220[sizeof(\"L10\")];\n    char stringpool_str221[sizeof(\"X0212\")];\n    char stringpool_str223[sizeof(\"TIS620-0\")];\n    char stringpool_str225[sizeof(\"ELOT_928\")];\n    char stringpool_str227[sizeof(\"ISO-8859-3\")];\n    char stringpool_str228[sizeof(\"ARABIC\")];\n    char stringpool_str229[sizeof(\"IBM850\")];\n    char stringpool_str230[sizeof(\"ISO-8859-13\")];\n    char stringpool_str231[sizeof(\"ROMAN8\")];\n    char stringpool_str236[sizeof(\"L3\")];\n    char stringpool_str239[sizeof(\"US-ASCII\")];\n    char stringpool_str240[sizeof(\"KSC_5601\")];\n    char stringpool_str241[sizeof(\"X0201\")];\n    char stringpool_str243[sizeof(\"ISO-10646-UCS-2\")];\n    char stringpool_str245[sizeof(\"CP874\")];\n    char stringpool_str246[sizeof(\"MS936\")];\n    char stringpool_str249[sizeof(\"X0208\")];\n    char stringpool_str251[sizeof(\"LATIN4\")];\n    char stringpool_str258[sizeof(\"MS-ANSI\")];\n    char stringpool_str259[sizeof(\"CSUCS4\")];\n    char stringpool_str260[sizeof(\"LATIN10\")];\n    char stringpool_str261[sizeof(\"KOREAN\")];\n    char stringpool_str262[sizeof(\"ISO-IR-179\")];\n    char stringpool_str264[sizeof(\"UCS-4\")];\n    char stringpool_str266[sizeof(\"ISO-10646-UCS-4\")];\n    char stringpool_str267[sizeof(\"CP1133\")];\n    char stringpool_str268[sizeof(\"EUCKR\")];\n    char stringpool_str269[sizeof(\"CSUNICODE11\")];\n    char stringpool_str270[sizeof(\"ARMSCII-8\")];\n    char stringpool_str272[sizeof(\"UTF-16\")];\n    char stringpool_str274[sizeof(\"BIG5\")];\n    char stringpool_str275[sizeof(\"UTF-8\")];\n    char stringpool_str276[sizeof(\"ISO-2022-KR\")];\n    char stringpool_str279[sizeof(\"EUC-KR\")];\n    char stringpool_str280[sizeof(\"CSBIG5\")];\n    char stringpool_str281[sizeof(\"ECMA-118\")];\n    char stringpool_str282[sizeof(\"CNS11643\")];\n    char stringpool_str283[sizeof(\"UNICODE-1-1\")];\n    char stringpool_str285[sizeof(\"BIG-5\")];\n    char stringpool_str287[sizeof(\"ISO-CELTIC\")];\n    char stringpool_str288[sizeof(\"ISO-IR-203\")];\n    char stringpool_str289[sizeof(\"TIS620.2529-1\")];\n    char stringpool_str290[sizeof(\"MACCROATIAN\")];\n    char stringpool_str291[sizeof(\"CN-BIG5\")];\n    char stringpool_str294[sizeof(\"CSISOLATIN1\")];\n    char stringpool_str295[sizeof(\"GB_1988-80\")];\n    char stringpool_str296[sizeof(\"CSISOLATIN6\")];\n    char stringpool_str298[sizeof(\"CSISOLATIN5\")];\n    char stringpool_str299[sizeof(\"ISO_8859-3\")];\n    char stringpool_str300[sizeof(\"GB18030\")];\n    char stringpool_str301[sizeof(\"CSISOLATINCYRILLIC\")];\n    char stringpool_str302[sizeof(\"ISO_8859-13\")];\n    char stringpool_str306[sizeof(\"CSISOLATIN2\")];\n    char stringpool_str307[sizeof(\"GBK\")];\n    char stringpool_str309[sizeof(\"JP\")];\n    char stringpool_str311[sizeof(\"ISO646-US\")];\n    char stringpool_str313[sizeof(\"CHINESE\")];\n    char stringpool_str315[sizeof(\"VISCII1.1-1\")];\n    char stringpool_str321[sizeof(\"L7\")];\n    char stringpool_str322[sizeof(\"CSISO2022KR\")];\n    char stringpool_str323[sizeof(\"CSISOLATINARABIC\")];\n    char stringpool_str327[sizeof(\"JIS0208\")];\n    char stringpool_str328[sizeof(\"MACTHAI\")];\n    char stringpool_str329[sizeof(\"GEORGIAN-ACADEMY\")];\n    char stringpool_str330[sizeof(\"JAVA\")];\n    char stringpool_str331[sizeof(\"ECMA-114\")];\n    char stringpool_str334[sizeof(\"CSIBM866\")];\n    char stringpool_str336[sizeof(\"ISO_8859-5:1988\")];\n    char stringpool_str338[sizeof(\"ISO_8859-8:1988\")];\n    char stringpool_str339[sizeof(\"CSUNICODE\")];\n    char stringpool_str340[sizeof(\"ISO_8859-9:1989\")];\n    char stringpool_str345[sizeof(\"KS_C_5601-1989\")];\n    char stringpool_str346[sizeof(\"TCVN5712-1\")];\n    char stringpool_str348[sizeof(\"PCK\")];\n    char stringpool_str349[sizeof(\"TCVN-5712\")];\n    char stringpool_str352[sizeof(\"CSISOLATIN4\")];\n    char stringpool_str353[sizeof(\"STRK1048-2002\")];\n    char stringpool_str355[sizeof(\"PTCP154\")];\n    char stringpool_str356[sizeof(\"CYRILLIC\")];\n    char stringpool_str358[sizeof(\"CSISO14JISC6220RO\")];\n    char stringpool_str359[sizeof(\"LATIN3\")];\n    char stringpool_str362[sizeof(\"CP1257\")];\n    char stringpool_str363[sizeof(\"ISO_8859-4:1988\")];\n    char stringpool_str364[sizeof(\"HP-ROMAN8\")];\n    char stringpool_str365[sizeof(\"UTF-32\")];\n    char stringpool_str371[sizeof(\"CSISO159JISX02121990\")];\n    char stringpool_str372[sizeof(\"MACROMAN\")];\n    char stringpool_str373[sizeof(\"KOI8-U\")];\n    char stringpool_str375[sizeof(\"GREEK8\")];\n    char stringpool_str377[sizeof(\"GB_2312-80\")];\n    char stringpool_str383[sizeof(\"CSGB2312\")];\n    char stringpool_str386[sizeof(\"ISO8859-7\")];\n    char stringpool_str387[sizeof(\"CSPTCP154\")];\n    char stringpool_str392[sizeof(\"MS-EE\")];\n    char stringpool_str395[sizeof(\"CSEUCKR\")];\n    char stringpool_str397[sizeof(\"ISO-8859-7\")];\n    char stringpool_str399[sizeof(\"ISO_646.IRV:1991\")];\n    char stringpool_str400[sizeof(\"JIS_C6220-1969-RO\")];\n    char stringpool_str404[sizeof(\"ISO-2022-JP-1\")];\n    char stringpool_str405[sizeof(\"ASMO-708\")];\n    char stringpool_str406[sizeof(\"CSKSC56011987\")];\n    char stringpool_str410[sizeof(\"ISO-2022-JP-2\")];\n    char stringpool_str412[sizeof(\"CN-GB-ISOIR165\")];\n    char stringpool_str414[sizeof(\"KOI8-RU\")];\n    char stringpool_str416[sizeof(\"MACARABIC\")];\n    char stringpool_str417[sizeof(\"ISO_8859-3:1988\")];\n    char stringpool_str419[sizeof(\"ISO-IR-57\")];\n    char stringpool_str421[sizeof(\"ISO-IR-87\")];\n    char stringpool_str422[sizeof(\"ISO-IR-157\")];\n    char stringpool_str424[sizeof(\"MACROMANIA\")];\n    char stringpool_str426[sizeof(\"ISO-IR-127\")];\n    char stringpool_str435[sizeof(\"CP367\")];\n    char stringpool_str437[sizeof(\"EUCTW\")];\n    char stringpool_str441[sizeof(\"CSUNICODE11UTF7\")];\n    char stringpool_str443[sizeof(\"CN-GB\")];\n    char stringpool_str444[sizeof(\"TIS620.2533-1\")];\n    char stringpool_str448[sizeof(\"EUC-TW\")];\n    char stringpool_str449[sizeof(\"JIS_C6226-1983\")];\n    char stringpool_str455[sizeof(\"CSISO2022JP2\")];\n    char stringpool_str457[sizeof(\"UNICODE-1-1-UTF-7\")];\n    char stringpool_str460[sizeof(\"CSISOLATIN3\")];\n    char stringpool_str464[sizeof(\"CYRILLIC-ASIAN\")];\n    char stringpool_str465[sizeof(\"GREEK\")];\n    char stringpool_str467[sizeof(\"ISO-2022-JP-MS\")];\n    char stringpool_str469[sizeof(\"ISO_8859-7\")];\n    char stringpool_str471[sizeof(\"WINDOWS-1251\")];\n    char stringpool_str472[sizeof(\"WINDOWS-1256\")];\n    char stringpool_str473[sizeof(\"WINDOWS-1255\")];\n    char stringpool_str475[sizeof(\"WINDOWS-1258\")];\n    char stringpool_str476[sizeof(\"TIS620.2533-0\")];\n    char stringpool_str477[sizeof(\"WINDOWS-1252\")];\n    char stringpool_str484[sizeof(\"CSISO58GB231280\")];\n    char stringpool_str490[sizeof(\"MACINTOSH\")];\n    char stringpool_str491[sizeof(\"WCHAR_T\")];\n    char stringpool_str494[sizeof(\"MACICELAND\")];\n    char stringpool_str495[sizeof(\"CSISOLATINGREEK\")];\n    char stringpool_str496[sizeof(\"CSHPROMAN8\")];\n    char stringpool_str498[sizeof(\"ISO_8859-1:1987\")];\n    char stringpool_str499[sizeof(\"ISO_8859-6:1987\")];\n    char stringpool_str500[sizeof(\"WINDOWS-1254\")];\n    char stringpool_str503[sizeof(\"WINDOWS-1250\")];\n    char stringpool_str504[sizeof(\"ISO_8859-2:1987\")];\n    char stringpool_str505[sizeof(\"MS-CYRL\")];\n    char stringpool_str506[sizeof(\"ISO646-JP\")];\n    char stringpool_str508[sizeof(\"KS_C_5601-1987\")];\n    char stringpool_str509[sizeof(\"MACCYRILLIC\")];\n    char stringpool_str517[sizeof(\"UCS-2LE\")];\n    char stringpool_str520[sizeof(\"CSMACINTOSH\")];\n    char stringpool_str521[sizeof(\"HZ-GB-2312\")];\n    char stringpool_str525[sizeof(\"TIS620.2533\")];\n    char stringpool_str529[sizeof(\"LATIN7\")];\n    char stringpool_str530[sizeof(\"UCS-2-INTERNAL\")];\n    char stringpool_str531[sizeof(\"EUCJP\")];\n    char stringpool_str532[sizeof(\"UCS-2BE\")];\n    char stringpool_str534[sizeof(\"CSISO57GB1988\")];\n    char stringpool_str535[sizeof(\"JISX0201-1976\")];\n    char stringpool_str536[sizeof(\"SHIFT-JIS\")];\n    char stringpool_str538[sizeof(\"MS_KANJI\")];\n    char stringpool_str539[sizeof(\"ISO-2022-JP\")];\n    char stringpool_str540[sizeof(\"UCS-4LE\")];\n    char stringpool_str542[sizeof(\"EUC-JP\")];\n    char stringpool_str544[sizeof(\"UNICODELITTLE\")];\n    char stringpool_str545[sizeof(\"CSPC862LATINHEBREW\")];\n    char stringpool_str552[sizeof(\"WINDOWS-936\")];\n    char stringpool_str553[sizeof(\"UCS-4-INTERNAL\")];\n    char stringpool_str554[sizeof(\"WINDOWS-1253\")];\n    char stringpool_str555[sizeof(\"UCS-4BE\")];\n    char stringpool_str557[sizeof(\"MS-TURK\")];\n    char stringpool_str558[sizeof(\"GEORGIAN-PS\")];\n    char stringpool_str564[sizeof(\"CSEUCTW\")];\n    char stringpool_str565[sizeof(\"IBM-CP1133\")];\n    char stringpool_str570[sizeof(\"MULELAO-1\")];\n    char stringpool_str573[sizeof(\"JIS_X0212\")];\n    char stringpool_str575[sizeof(\"CSISOLATINHEBREW\")];\n    char stringpool_str576[sizeof(\"UTF-16LE\")];\n    char stringpool_str579[sizeof(\"IBM367\")];\n    char stringpool_str580[sizeof(\"MS-ARAB\")];\n    char stringpool_str581[sizeof(\"ISO_8859-7:2003\")];\n    char stringpool_str585[sizeof(\"CSISO2022JP\")];\n    char stringpool_str591[sizeof(\"UTF-16BE\")];\n    char stringpool_str593[sizeof(\"JIS_X0201\")];\n    char stringpool_str600[sizeof(\"MS-HEBR\")];\n    char stringpool_str601[sizeof(\"JIS_X0208\")];\n    char stringpool_str603[sizeof(\"UTF-7\")];\n    char stringpool_str608[sizeof(\"SHIFT_JIS\")];\n    char stringpool_str609[sizeof(\"MACUKRAINE\")];\n    char stringpool_str616[sizeof(\"JIS_X0212-1990\")];\n    char stringpool_str618[sizeof(\"UNICODEBIG\")];\n    char stringpool_str619[sizeof(\"ANSI_X3.4-1986\")];\n    char stringpool_str622[sizeof(\"ANSI_X3.4-1968\")];\n    char stringpool_str626[sizeof(\"TCVN5712-1:1993\")];\n    char stringpool_str639[sizeof(\"WINDOWS-1257\")];\n    char stringpool_str644[sizeof(\"MACCENTRALEUROPE\")];\n    char stringpool_str645[sizeof(\"JOHAB\")];\n    char stringpool_str646[sizeof(\"JIS_X0208-1990\")];\n    char stringpool_str647[sizeof(\"CSSHIFTJIS\")];\n    char stringpool_str653[sizeof(\"MACGREEK\")];\n    char stringpool_str658[sizeof(\"BIGFIVE\")];\n    char stringpool_str661[sizeof(\"MS-GREEK\")];\n    char stringpool_str664[sizeof(\"UTF-32LE\")];\n    char stringpool_str666[sizeof(\"ISO_8859-7:1987\")];\n    char stringpool_str669[sizeof(\"BIG-FIVE\")];\n    char stringpool_str676[sizeof(\"EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE\")];\n    char stringpool_str678[sizeof(\"NEXTSTEP\")];\n    char stringpool_str679[sizeof(\"UTF-32BE\")];\n    char stringpool_str690[sizeof(\"BIG5HKSCS\")];\n    char stringpool_str691[sizeof(\"CSISO87JISX0208\")];\n    char stringpool_str692[sizeof(\"WINDOWS-874\")];\n    char stringpool_str697[sizeof(\"JIS_X0208-1983\")];\n    char stringpool_str701[sizeof(\"BIG5-HKSCS\")];\n    char stringpool_str718[sizeof(\"JIS_X0212.1990-0\")];\n    char stringpool_str730[sizeof(\"HEBREW\")];\n    char stringpool_str751[sizeof(\"MACTURKISH\")];\n    char stringpool_str797[sizeof(\"UCS-2-SWAPPED\")];\n    char stringpool_str798[sizeof(\"CSPC850MULTILINGUAL\")];\n    char stringpool_str814[sizeof(\"CSHALFWIDTHKATAKANA\")];\n    char stringpool_str820[sizeof(\"UCS-4-SWAPPED\")];\n    char stringpool_str836[sizeof(\"BIG5-HKSCS:2001\")];\n    char stringpool_str840[sizeof(\"BIG5-HKSCS:2008\")];\n    char stringpool_str841[sizeof(\"BIG5-HKSCS:1999\")];\n    char stringpool_str865[sizeof(\"BIG5-HKSCS:2004\")];\n    char stringpool_str871[sizeof(\"WINBALTRIM\")];\n    char stringpool_str879[sizeof(\"CSEUCPKDFMTJAPANESE\")];\n    char stringpool_str912[sizeof(\"KO_KR.JOHAP92\")];\n    char stringpool_str956[sizeof(\"MACHEBREW\")];\n  };\nstatic const struct stringpool_t stringpool_contents =\n  {\n    \"CN\",\n    \"646\",\n    \"866\",\n    \"C99\",\n    \"CP866\",\n    \"862\",\n    \"CP1251\",\n    \"CP1256\",\n    \"CP819\",\n    \"CP1255\",\n    \"CP862\",\n    \"CP1258\",\n    \"CP1252\",\n    \"ASCII\",\n    \"5601\",\n    \"R8\",\n    \"ISO8859-1\",\n    \"ISO8859-6\",\n    \"ISO8859-11\",\n    \"ISO8859-5\",\n    \"ISO8859-16\",\n    \"ISO8859-15\",\n    \"ISO8859-8\",\n    \"CP949\",\n    \"ISO8859-9\",\n    \"ISO-8859-1\",\n    \"ISO8859-2\",\n    \"ISO-8859-6\",\n    \"ISO-8859-11\",\n    \"ISO-8859-5\",\n    \"ISO-8859-16\",\n    \"CP50221\",\n    \"ISO-8859-15\",\n    \"ISO-8859-8\",\n    \"ISO646-CN\",\n    \"ISO-8859-9\",\n    \"ISO-8859-2\",\n    \"CP154\",\n    \"850\",\n    \"ISO-IR-6\",\n    \"CP1254\",\n    \"CP850\",\n    \"CP950\",\n    \"ISO-IR-166\",\n    \"ISO-IR-165\",\n    \"CP1250\",\n    \"ISO-IR-58\",\n    \"ISO-IR-126\",\n    \"EUCCN\",\n    \"ISO-IR-159\",\n    \"ISO-IR-226\",\n    \"ISO-IR-199\",\n    \"CP1131\",\n    \"CP1361\",\n    \"ISO-2022-CN\",\n    \"CP936\",\n    \"EUC-CN\",\n    \"CSASCII\",\n    \"ISO8859-4\",\n    \"ISO8859-14\",\n    \"CHAR\",\n    \"CP932\",\n    \"ISO-IR-101\",\n    \"ISO8859-10\",\n    \"ISO-8859-4\",\n    \"ISO-IR-148\",\n    \"ISO-8859-14\",\n    \"ISO-IR-149\",\n    \"HZ\",\n    \"RK1048\",\n    \"ISO-IR-109\",\n    \"ISO-8859-10\",\n    \"ANSI-1251\",\n    \"UHC\",\n    \"ISO-2022-CN-EXT\",\n    \"ISO_8859-1\",\n    \"ISO_8859-6\",\n    \"ISO_8859-11\",\n    \"ISO_8859-5\",\n    \"ISO_8859-16\",\n    \"ISO-IR-14\",\n    \"ISO_8859-15\",\n    \"ISO_8859-8\",\n    \"ISO_8859-16:2001\",\n    \"ISO_8859-9\",\n    \"ISO_8859-2\",\n    \"TCVN\",\n    \"ISO_8859-15:1998\",\n    \"ISO-IR-110\",\n    \"CSISO2022CN\",\n    \"MAC\",\n    \"L1\",\n    \"L6\",\n    \"L5\",\n    \"L8\",\n    \"L2\",\n    \"IBM866\",\n    \"ISO-IR-144\",\n    \"IBM819\",\n    \"ISO_8859-14:1998\",\n    \"ISO-IR-138\",\n    \"IBM862\",\n    \"TIS620\",\n    \"ISO_8859-10:1992\",\n    \"ISO-IR-100\",\n    \"L4\",\n    \"KOI8-T\",\n    \"VISCII\",\n    \"TIS-620\",\n    \"US\",\n    \"CSVISCII\",\n    \"ISO_8859-4\",\n    \"CP1253\",\n    \"LATIN1\",\n    \"ISO_8859-14\",\n    \"LATIN6\",\n    \"CSKZ1048\",\n    \"LATIN5\",\n    \"SJIS\",\n    \"KZ-1048\",\n    \"ISO_8859-10\",\n    \"LATIN8\",\n    \"CSKOI8R\",\n    \"LATIN2\",\n    \"KOI8-R\",\n    \"PT154\",\n    \"LATIN-9\",\n    \"GB2312\",\n    \"ISO8859-3\",\n    \"UCS-2\",\n    \"ISO8859-13\",\n    \"L10\",\n    \"X0212\",\n    \"TIS620-0\",\n    \"ELOT_928\",\n    \"ISO-8859-3\",\n    \"ARABIC\",\n    \"IBM850\",\n    \"ISO-8859-13\",\n    \"ROMAN8\",\n    \"L3\",\n    \"US-ASCII\",\n    \"KSC_5601\",\n    \"X0201\",\n    \"ISO-10646-UCS-2\",\n    \"CP874\",\n    \"MS936\",\n    \"X0208\",\n    \"LATIN4\",\n    \"MS-ANSI\",\n    \"CSUCS4\",\n    \"LATIN10\",\n    \"KOREAN\",\n    \"ISO-IR-179\",\n    \"UCS-4\",\n    \"ISO-10646-UCS-4\",\n    \"CP1133\",\n    \"EUCKR\",\n    \"CSUNICODE11\",\n    \"ARMSCII-8\",\n    \"UTF-16\",\n    \"BIG5\",\n    \"UTF-8\",\n    \"ISO-2022-KR\",\n    \"EUC-KR\",\n    \"CSBIG5\",\n    \"ECMA-118\",\n    \"CNS11643\",\n    \"UNICODE-1-1\",\n    \"BIG-5\",\n    \"ISO-CELTIC\",\n    \"ISO-IR-203\",\n    \"TIS620.2529-1\",\n    \"MACCROATIAN\",\n    \"CN-BIG5\",\n    \"CSISOLATIN1\",\n    \"GB_1988-80\",\n    \"CSISOLATIN6\",\n    \"CSISOLATIN5\",\n    \"ISO_8859-3\",\n    \"GB18030\",\n    \"CSISOLATINCYRILLIC\",\n    \"ISO_8859-13\",\n    \"CSISOLATIN2\",\n    \"GBK\",\n    \"JP\",\n    \"ISO646-US\",\n    \"CHINESE\",\n    \"VISCII1.1-1\",\n    \"L7\",\n    \"CSISO2022KR\",\n    \"CSISOLATINARABIC\",\n    \"JIS0208\",\n    \"MACTHAI\",\n    \"GEORGIAN-ACADEMY\",\n    \"JAVA\",\n    \"ECMA-114\",\n    \"CSIBM866\",\n    \"ISO_8859-5:1988\",\n    \"ISO_8859-8:1988\",\n    \"CSUNICODE\",\n    \"ISO_8859-9:1989\",\n    \"KS_C_5601-1989\",\n    \"TCVN5712-1\",\n    \"PCK\",\n    \"TCVN-5712\",\n    \"CSISOLATIN4\",\n    \"STRK1048-2002\",\n    \"PTCP154\",\n    \"CYRILLIC\",\n    \"CSISO14JISC6220RO\",\n    \"LATIN3\",\n    \"CP1257\",\n    \"ISO_8859-4:1988\",\n    \"HP-ROMAN8\",\n    \"UTF-32\",\n    \"CSISO159JISX02121990\",\n    \"MACROMAN\",\n    \"KOI8-U\",\n    \"GREEK8\",\n    \"GB_2312-80\",\n    \"CSGB2312\",\n    \"ISO8859-7\",\n    \"CSPTCP154\",\n    \"MS-EE\",\n    \"CSEUCKR\",\n    \"ISO-8859-7\",\n    \"ISO_646.IRV:1991\",\n    \"JIS_C6220-1969-RO\",\n    \"ISO-2022-JP-1\",\n    \"ASMO-708\",\n    \"CSKSC56011987\",\n    \"ISO-2022-JP-2\",\n    \"CN-GB-ISOIR165\",\n    \"KOI8-RU\",\n    \"MACARABIC\",\n    \"ISO_8859-3:1988\",\n    \"ISO-IR-57\",\n    \"ISO-IR-87\",\n    \"ISO-IR-157\",\n    \"MACROMANIA\",\n    \"ISO-IR-127\",\n    \"CP367\",\n    \"EUCTW\",\n    \"CSUNICODE11UTF7\",\n    \"CN-GB\",\n    \"TIS620.2533-1\",\n    \"EUC-TW\",\n    \"JIS_C6226-1983\",\n    \"CSISO2022JP2\",\n    \"UNICODE-1-1-UTF-7\",\n    \"CSISOLATIN3\",\n    \"CYRILLIC-ASIAN\",\n    \"GREEK\",\n    \"ISO-2022-JP-MS\",\n    \"ISO_8859-7\",\n    \"WINDOWS-1251\",\n    \"WINDOWS-1256\",\n    \"WINDOWS-1255\",\n    \"WINDOWS-1258\",\n    \"TIS620.2533-0\",\n    \"WINDOWS-1252\",\n    \"CSISO58GB231280\",\n    \"MACINTOSH\",\n    \"WCHAR_T\",\n    \"MACICELAND\",\n    \"CSISOLATINGREEK\",\n    \"CSHPROMAN8\",\n    \"ISO_8859-1:1987\",\n    \"ISO_8859-6:1987\",\n    \"WINDOWS-1254\",\n    \"WINDOWS-1250\",\n    \"ISO_8859-2:1987\",\n    \"MS-CYRL\",\n    \"ISO646-JP\",\n    \"KS_C_5601-1987\",\n    \"MACCYRILLIC\",\n    \"UCS-2LE\",\n    \"CSMACINTOSH\",\n    \"HZ-GB-2312\",\n    \"TIS620.2533\",\n    \"LATIN7\",\n    \"UCS-2-INTERNAL\",\n    \"EUCJP\",\n    \"UCS-2BE\",\n    \"CSISO57GB1988\",\n    \"JISX0201-1976\",\n    \"SHIFT-JIS\",\n    \"MS_KANJI\",\n    \"ISO-2022-JP\",\n    \"UCS-4LE\",\n    \"EUC-JP\",\n    \"UNICODELITTLE\",\n    \"CSPC862LATINHEBREW\",\n    \"WINDOWS-936\",\n    \"UCS-4-INTERNAL\",\n    \"WINDOWS-1253\",\n    \"UCS-4BE\",\n    \"MS-TURK\",\n    \"GEORGIAN-PS\",\n    \"CSEUCTW\",\n    \"IBM-CP1133\",\n    \"MULELAO-1\",\n    \"JIS_X0212\",\n    \"CSISOLATINHEBREW\",\n    \"UTF-16LE\",\n    \"IBM367\",\n    \"MS-ARAB\",\n    \"ISO_8859-7:2003\",\n    \"CSISO2022JP\",\n    \"UTF-16BE\",\n    \"JIS_X0201\",\n    \"MS-HEBR\",\n    \"JIS_X0208\",\n    \"UTF-7\",\n    \"SHIFT_JIS\",\n    \"MACUKRAINE\",\n    \"JIS_X0212-1990\",\n    \"UNICODEBIG\",\n    \"ANSI_X3.4-1986\",\n    \"ANSI_X3.4-1968\",\n    \"TCVN5712-1:1993\",\n    \"WINDOWS-1257\",\n    \"MACCENTRALEUROPE\",\n    \"JOHAB\",\n    \"JIS_X0208-1990\",\n    \"CSSHIFTJIS\",\n    \"MACGREEK\",\n    \"BIGFIVE\",\n    \"MS-GREEK\",\n    \"UTF-32LE\",\n    \"ISO_8859-7:1987\",\n    \"BIG-FIVE\",\n    \"EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE\",\n    \"NEXTSTEP\",\n    \"UTF-32BE\",\n    \"BIG5HKSCS\",\n    \"CSISO87JISX0208\",\n    \"WINDOWS-874\",\n    \"JIS_X0208-1983\",\n    \"BIG5-HKSCS\",\n    \"JIS_X0212.1990-0\",\n    \"HEBREW\",\n    \"MACTURKISH\",\n    \"UCS-2-SWAPPED\",\n    \"CSPC850MULTILINGUAL\",\n    \"CSHALFWIDTHKATAKANA\",\n    \"UCS-4-SWAPPED\",\n    \"BIG5-HKSCS:2001\",\n    \"BIG5-HKSCS:2008\",\n    \"BIG5-HKSCS:1999\",\n    \"BIG5-HKSCS:2004\",\n    \"WINBALTRIM\",\n    \"CSEUCPKDFMTJAPANESE\",\n    \"KO_KR.JOHAP92\",\n    \"MACHEBREW\"\n  };\n#define stringpool ((const char *) &stringpool_contents)\n\nstatic const struct alias aliases[] =\n  {\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 291 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str8, ei_iso646_cn},\n    {-1}, {-1}, {-1},\n#line 23 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str12, ei_ascii},\n    {-1}, {-1},\n#line 209 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str15, ei_cp866},\n    {-1}, {-1}, {-1},\n#line 52 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str19, ei_c99},\n    {-1}, {-1},\n#line 207 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str22, ei_cp866},\n    {-1}, {-1},\n#line 205 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str25, ei_cp862},\n#line 175 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str26, ei_cp1251},\n    {-1},\n#line 191 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str28, ei_cp1256},\n#line 58 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str29, ei_iso8859_1},\n#line 188 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str30, ei_cp1255},\n    {-1},\n#line 203 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str32, ei_cp862},\n    {-1},\n#line 197 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str34, ei_cp1258},\n    {-1}, {-1}, {-1},\n#line 179 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str38, ei_cp1252},\n#line 13 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str39, ei_ascii},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 358 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str46, ei_euc_kr},\n    {-1},\n#line 229 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str48, ei_hp_roman8},\n    {-1},\n#line 63 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str50, ei_iso8859_1},\n    {-1},\n#line 103 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str52, ei_iso8859_6},\n#line 140 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str53, ei_iso8859_11},\n#line 94 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str54, ei_iso8859_5},\n#line 167 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str55, ei_iso8859_16},\n    {-1},\n#line 160 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str57, ei_iso8859_15},\n#line 121 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str58, ei_iso8859_8},\n#line 359 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str59, ei_cp949},\n#line 129 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str60, ei_iso8859_9},\n#line 54 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str61, ei_iso8859_1},\n#line 71 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str62, ei_iso8859_2},\n#line 95 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str63, ei_iso8859_6},\n#line 138 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str64, ei_iso8859_11},\n#line 88 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str65, ei_iso8859_5},\n#line 161 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str66, ei_iso8859_16},\n#line 322 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str67, ei_iso2022_jpms},\n#line 155 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str68, ei_iso8859_15},\n#line 115 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str69, ei_iso8859_8},\n#line 289 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str70, ei_iso646_cn},\n#line 122 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str71, ei_iso8859_9},\n    {-1},\n#line 64 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str73, ei_iso8859_2},\n    {-1},\n#line 238 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str75, ei_pt154},\n    {-1},\n#line 201 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str77, ei_cp850},\n    {-1}, {-1},\n#line 16 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str80, ei_ascii},\n    {-1}, {-1}, {-1},\n#line 185 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str84, ei_cp1254},\n#line 199 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str85, ei_cp850},\n#line 348 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str86, ei_cp950},\n#line 254 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str87, ei_tis620},\n    {-1},\n#line 297 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str89, ei_isoir165},\n#line 172 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str90, ei_cp1250},\n#line 294 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str91, ei_gb2312},\n#line 108 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str92, ei_iso8859_7},\n    {-1}, {-1},\n#line 324 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str95, ei_euc_cn},\n#line 286 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str96, ei_jisx0212},\n    {-1},\n#line 164 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str98, ei_iso8859_16},\n#line 150 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str99, ei_iso8859_14},\n    {-1},\n#line 211 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str101, ei_cp1131},\n#line 362 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str102, ei_johab},\n#line 333 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str103, ei_iso2022_cn},\n    {-1},\n#line 329 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str105, ei_cp936},\n#line 323 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str106, ei_euc_cn},\n#line 22 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str107, ei_ascii},\n#line 87 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str108, ei_iso8859_4},\n    {-1}, {-1},\n#line 154 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str111, ei_iso8859_14},\n#line 366 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str112, ei_local_char},\n    {-1}, {-1},\n#line 315 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str115, ei_cp932},\n#line 67 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str116, ei_iso8859_2},\n#line 137 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str117, ei_iso8859_10},\n    {-1},\n#line 80 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str119, ei_iso8859_4},\n    {-1},\n#line 125 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str121, ei_iso8859_9},\n#line 147 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str122, ei_iso8859_14},\n#line 302 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str123, ei_ksc5601},\n#line 336 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str124, ei_hz},\n#line 241 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str125, ei_rk1048},\n#line 75 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str126, ei_iso8859_3},\n    {-1},\n#line 130 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str128, ei_iso8859_10},\n#line 178 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str129, ei_cp1251},\n#line 360 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str130, ei_cp949},\n#line 335 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str131, ei_iso2022_cn_ext},\n    {-1},\n#line 55 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str133, ei_iso8859_1},\n    {-1},\n#line 96 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str135, ei_iso8859_6},\n#line 139 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str136, ei_iso8859_11},\n#line 89 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str137, ei_iso8859_5},\n#line 162 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str138, ei_iso8859_16},\n#line 267 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str139, ei_iso646_jp},\n#line 156 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str140, ei_iso8859_15},\n#line 116 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str141, ei_iso8859_8},\n#line 163 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str142, ei_iso8859_16},\n#line 123 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str143, ei_iso8859_9},\n    {-1},\n#line 65 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str145, ei_iso8859_2},\n#line 261 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str146, ei_tcvn},\n#line 157 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str147, ei_iso8859_15},\n#line 83 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str148, ei_iso8859_4},\n#line 334 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str149, ei_iso2022_cn},\n#line 214 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str150, ei_mac_roman},\n    {-1}, {-1},\n#line 61 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str153, ei_iso8859_1},\n#line 135 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str154, ei_iso8859_10},\n#line 127 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str155, ei_iso8859_9},\n    {-1},\n#line 152 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str157, ei_iso8859_14},\n    {-1},\n#line 69 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str159, ei_iso8859_2},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 208 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str166, ei_cp866},\n    {-1}, {-1}, {-1}, {-1},\n#line 91 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str171, ei_iso8859_5},\n    {-1},\n#line 59 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str173, ei_iso8859_1},\n#line 149 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str174, ei_iso8859_14},\n#line 118 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str175, ei_iso8859_8},\n#line 204 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str176, ei_cp862},\n#line 249 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str177, ei_tis620},\n    {-1},\n#line 132 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str179, ei_iso8859_10},\n#line 57 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str180, ei_iso8859_1},\n    {-1},\n#line 85 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str182, ei_iso8859_4},\n#line 235 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str183, ei_koi8_t},\n#line 258 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str184, ei_viscii},\n    {-1}, {-1}, {-1},\n#line 248 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str188, ei_tis620},\n#line 21 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str189, ei_ascii},\n#line 260 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str190, ei_viscii},\n#line 81 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str191, ei_iso8859_4},\n#line 182 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str192, ei_cp1253},\n#line 60 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str193, ei_iso8859_1},\n#line 148 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str194, ei_iso8859_14},\n#line 134 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str195, ei_iso8859_10},\n#line 244 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str196, ei_rk1048},\n#line 126 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str197, ei_iso8859_9},\n#line 311 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str198, ei_sjis},\n#line 243 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str199, ei_rk1048},\n#line 131 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str200, ei_iso8859_10},\n#line 151 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str201, ei_iso8859_14},\n#line 169 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str202, ei_koi8_r},\n    {-1}, {-1},\n#line 68 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str205, ei_iso8859_2},\n    {-1},\n#line 168 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str207, ei_koi8_r},\n    {-1}, {-1}, {-1}, {-1},\n#line 236 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str212, ei_pt154},\n    {-1},\n#line 159 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str214, ei_iso8859_15},\n#line 325 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str215, ei_euc_cn},\n#line 79 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str216, ei_iso8859_3},\n    {-1},\n#line 25 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str218, ei_ucs2},\n#line 146 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str219, ei_iso8859_13},\n#line 166 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str220, ei_iso8859_16},\n#line 285 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str221, ei_jisx0212},\n    {-1},\n#line 250 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str223, ei_tis620},\n    {-1},\n#line 110 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str225, ei_iso8859_7},\n    {-1},\n#line 72 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str227, ei_iso8859_3},\n#line 101 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str228, ei_iso8859_6},\n#line 200 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str229, ei_cp850},\n#line 141 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str230, ei_iso8859_13},\n#line 228 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str231, ei_hp_roman8},\n    {-1}, {-1}, {-1}, {-1},\n#line 77 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str236, ei_iso8859_3},\n    {-1}, {-1},\n#line 12 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str239, ei_ascii},\n#line 299 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str240, ei_ksc5601},\n#line 272 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str241, ei_jisx0201},\n    {-1},\n#line 26 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str243, ei_ucs2},\n    {-1},\n#line 256 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str245, ei_cp874},\n#line 330 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str246, ei_cp936},\n    {-1}, {-1},\n#line 278 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str249, ei_jisx0208},\n    {-1},\n#line 84 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str251, ei_iso8859_4},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 181 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str258, ei_cp1252},\n#line 36 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str259, ei_ucs4},\n#line 165 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str260, ei_iso8859_16},\n#line 304 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str261, ei_ksc5601},\n#line 143 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str262, ei_iso8859_13},\n    {-1},\n#line 34 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str264, ei_ucs4},\n    {-1},\n#line 35 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str266, ei_ucs4},\n#line 246 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str267, ei_cp1133},\n#line 356 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str268, ei_euc_kr},\n#line 31 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str269, ei_ucs2be},\n#line 232 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str270, ei_armscii_8},\n    {-1},\n#line 39 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str272, ei_utf16},\n    {-1},\n#line 342 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str274, ei_ces_big5},\n#line 24 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str275, ei_utf8},\n#line 364 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str276, ei_iso2022_kr},\n    {-1}, {-1},\n#line 355 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str279, ei_euc_kr},\n#line 347 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str280, ei_ces_big5},\n#line 109 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str281, ei_iso8859_7},\n#line 341 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str282, ei_euc_tw},\n#line 30 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str283, ei_ucs2be},\n    {-1},\n#line 343 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str285, ei_ces_big5},\n    {-1},\n#line 153 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str287, ei_iso8859_14},\n#line 158 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str288, ei_iso8859_15},\n#line 251 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str289, ei_tis620},\n#line 218 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str290, ei_mac_croatian},\n#line 346 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str291, ei_ces_big5},\n    {-1}, {-1},\n#line 62 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str294, ei_iso8859_1},\n#line 288 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str295, ei_iso646_cn},\n#line 136 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str296, ei_iso8859_10},\n    {-1},\n#line 128 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str298, ei_iso8859_9},\n#line 73 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str299, ei_iso8859_3},\n#line 332 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str300, ei_gb18030},\n#line 93 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str301, ei_iso8859_5},\n#line 142 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str302, ei_iso8859_13},\n    {-1}, {-1}, {-1},\n#line 70 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str306, ei_iso8859_2},\n#line 328 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str307, ei_ces_gbk},\n    {-1},\n#line 268 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str309, ei_iso646_jp},\n    {-1},\n#line 14 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str311, ei_ascii},\n    {-1},\n#line 296 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str313, ei_gb2312},\n    {-1},\n#line 259 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str315, ei_viscii},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 145 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str321, ei_iso8859_13},\n#line 365 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str322, ei_iso2022_kr},\n#line 102 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str323, ei_iso8859_6},\n    {-1}, {-1}, {-1},\n#line 277 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str327, ei_jisx0208},\n#line 226 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str328, ei_mac_thai},\n#line 233 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str329, ei_georgian_academy},\n#line 53 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str330, ei_java},\n#line 99 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str331, ei_iso8859_6},\n    {-1}, {-1},\n#line 210 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str334, ei_cp866},\n    {-1},\n#line 90 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str336, ei_iso8859_5},\n    {-1},\n#line 117 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str338, ei_iso8859_8},\n#line 27 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str339, ei_ucs2},\n#line 124 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str340, ei_iso8859_9},\n    {-1}, {-1}, {-1}, {-1},\n#line 301 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str345, ei_ksc5601},\n#line 263 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str346, ei_tcvn},\n    {-1},\n#line 314 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str348, ei_sjis},\n#line 262 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str349, ei_tcvn},\n    {-1}, {-1},\n#line 86 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str352, ei_iso8859_4},\n#line 242 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str353, ei_rk1048},\n    {-1},\n#line 237 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str355, ei_pt154},\n#line 92 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str356, ei_iso8859_5},\n    {-1},\n#line 269 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str358, ei_iso646_jp},\n#line 76 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str359, ei_iso8859_3},\n    {-1}, {-1},\n#line 194 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str362, ei_cp1257},\n#line 82 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str363, ei_iso8859_4},\n#line 227 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str364, ei_hp_roman8},\n#line 42 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str365, ei_utf32},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 287 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str371, ei_jisx0212},\n#line 212 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str372, ei_mac_roman},\n#line 170 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str373, ei_koi8_u},\n    {-1},\n#line 111 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str375, ei_iso8859_7},\n    {-1},\n#line 293 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str377, ei_gb2312},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 327 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str383, ei_euc_cn},\n    {-1}, {-1},\n#line 114 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str386, ei_iso8859_7},\n#line 240 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str387, ei_pt154},\n    {-1}, {-1}, {-1}, {-1},\n#line 174 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str392, ei_cp1250},\n    {-1}, {-1},\n#line 357 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str395, ei_euc_kr},\n    {-1},\n#line 104 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str397, ei_iso8859_7},\n    {-1},\n#line 15 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str399, ei_ascii},\n#line 265 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str400, ei_iso646_jp},\n    {-1}, {-1}, {-1},\n#line 318 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str404, ei_iso2022_jp1},\n#line 100 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str405, ei_iso8859_6},\n#line 303 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str406, ei_ksc5601},\n    {-1}, {-1}, {-1},\n#line 319 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str410, ei_iso2022_jp2},\n    {-1},\n#line 298 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str412, ei_isoir165},\n    {-1},\n#line 171 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str414, ei_koi8_ru},\n    {-1},\n#line 225 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str416, ei_mac_arabic},\n#line 74 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str417, ei_iso8859_3},\n    {-1},\n#line 290 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str419, ei_iso646_cn},\n    {-1},\n#line 279 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str421, ei_jisx0208},\n#line 133 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str422, ei_iso8859_10},\n    {-1},\n#line 219 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str424, ei_mac_romania},\n    {-1},\n#line 98 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str426, ei_iso8859_6},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 19 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str435, ei_ascii},\n    {-1},\n#line 339 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str437, ei_euc_tw},\n    {-1}, {-1}, {-1},\n#line 47 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str441, ei_utf7},\n    {-1},\n#line 326 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str443, ei_euc_cn},\n#line 253 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str444, ei_tis620},\n    {-1}, {-1}, {-1},\n#line 338 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str448, ei_euc_tw},\n#line 280 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str449, ei_jisx0208},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 320 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str455, ei_iso2022_jp2},\n    {-1},\n#line 46 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str457, ei_utf7},\n    {-1}, {-1},\n#line 78 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str460, ei_iso8859_3},\n    {-1}, {-1}, {-1},\n#line 239 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str464, ei_pt154},\n#line 112 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str465, ei_iso8859_7},\n    {-1},\n#line 321 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str467, ei_iso2022_jpms},\n    {-1},\n#line 105 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str469, ei_iso8859_7},\n    {-1},\n#line 176 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str471, ei_cp1251},\n#line 192 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str472, ei_cp1256},\n#line 189 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str473, ei_cp1255},\n    {-1},\n#line 198 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str475, ei_cp1258},\n#line 252 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str476, ei_tis620},\n#line 180 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str477, ei_cp1252},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 295 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str484, ei_gb2312},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 213 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str490, ei_mac_roman},\n#line 367 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str491, ei_local_wchar_t},\n    {-1}, {-1},\n#line 217 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str494, ei_mac_iceland},\n#line 113 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str495, ei_iso8859_7},\n#line 230 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str496, ei_hp_roman8},\n    {-1},\n#line 56 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str498, ei_iso8859_1},\n#line 97 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str499, ei_iso8859_6},\n#line 186 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str500, ei_cp1254},\n    {-1}, {-1},\n#line 173 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str503, ei_cp1250},\n#line 66 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str504, ei_iso8859_2},\n#line 177 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str505, ei_cp1251},\n#line 266 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str506, ei_iso646_jp},\n    {-1},\n#line 300 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str508, ei_ksc5601},\n#line 220 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str509, ei_mac_cyrillic},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 32 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str517, ei_ucs2le},\n    {-1}, {-1},\n#line 215 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str520, ei_mac_roman},\n#line 337 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str521, ei_hz},\n    {-1}, {-1}, {-1},\n#line 255 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str525, ei_tis620},\n    {-1}, {-1}, {-1},\n#line 144 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str529, ei_iso8859_13},\n#line 48 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str530, ei_ucs2internal},\n#line 306 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str531, ei_euc_jp},\n#line 28 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str532, ei_ucs2be},\n    {-1},\n#line 292 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str534, ei_iso646_cn},\n#line 271 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str535, ei_jisx0201},\n#line 310 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str536, ei_sjis},\n    {-1},\n#line 312 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str538, ei_sjis},\n#line 316 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str539, ei_iso2022_jp},\n#line 38 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str540, ei_ucs4le},\n    {-1},\n#line 305 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str542, ei_euc_jp},\n    {-1},\n#line 33 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str544, ei_ucs2le},\n#line 206 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str545, ei_cp862},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 331 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str552, ei_cp936},\n#line 50 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str553, ei_ucs4internal},\n#line 183 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str554, ei_cp1253},\n#line 37 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str555, ei_ucs4be},\n    {-1},\n#line 187 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str557, ei_cp1254},\n#line 234 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str558, ei_georgian_ps},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 340 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str564, ei_euc_tw},\n#line 247 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str565, ei_cp1133},\n    {-1}, {-1}, {-1}, {-1},\n#line 245 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str570, ei_mulelao},\n    {-1}, {-1},\n#line 282 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str573, ei_jisx0212},\n    {-1},\n#line 120 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str575, ei_iso8859_8},\n#line 41 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str576, ei_utf16le},\n    {-1}, {-1},\n#line 20 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str579, ei_ascii},\n#line 193 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str580, ei_cp1256},\n#line 107 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str581, ei_iso8859_7},\n    {-1}, {-1}, {-1},\n#line 317 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str585, ei_iso2022_jp},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 40 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str591, ei_utf16be},\n    {-1},\n#line 270 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str593, ei_jisx0201},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 190 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str600, ei_cp1255},\n#line 274 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str601, ei_jisx0208},\n    {-1},\n#line 45 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str603, ei_utf7},\n    {-1}, {-1}, {-1}, {-1},\n#line 309 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str608, ei_sjis},\n#line 221 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str609, ei_mac_ukraine},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 284 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str616, ei_jisx0212},\n    {-1},\n#line 29 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str618, ei_ucs2be},\n#line 18 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str619, ei_ascii},\n    {-1}, {-1},\n#line 17 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str622, ei_ascii},\n    {-1}, {-1}, {-1},\n#line 264 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str626, ei_tcvn},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1},\n#line 195 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str639, ei_cp1257},\n    {-1}, {-1}, {-1}, {-1},\n#line 216 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str644, ei_mac_centraleurope},\n#line 361 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str645, ei_johab},\n#line 276 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str646, ei_jisx0208},\n#line 313 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str647, ei_sjis},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 222 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str653, ei_mac_greek},\n    {-1}, {-1}, {-1}, {-1},\n#line 345 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str658, ei_ces_big5},\n    {-1}, {-1},\n#line 184 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str661, ei_cp1253},\n    {-1}, {-1},\n#line 44 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str664, ei_utf32le},\n    {-1},\n#line 106 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str666, ei_iso8859_7},\n    {-1}, {-1},\n#line 344 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str669, ei_ces_big5},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 307 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str676, ei_euc_jp},\n    {-1},\n#line 231 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str678, ei_nextstep},\n#line 43 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str679, ei_utf32be},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1},\n#line 353 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str690, ei_big5hkscs2008},\n#line 281 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str691, ei_jisx0208},\n#line 257 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str692, ei_cp874},\n    {-1}, {-1}, {-1}, {-1},\n#line 275 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str697, ei_jisx0208},\n    {-1}, {-1}, {-1},\n#line 352 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str701, ei_big5hkscs2008},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 283 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str718, ei_jisx0212},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1},\n#line 119 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str730, ei_iso8859_8},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1},\n#line 223 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str751, ei_mac_turkish},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 49 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str797, ei_ucs2swapped},\n#line 202 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str798, ei_cp850},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 273 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str814, ei_jisx0201},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 51 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str820, ei_ucs4swapped},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 350 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str836, ei_big5hkscs2001},\n    {-1}, {-1}, {-1},\n#line 354 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str840, ei_big5hkscs2008},\n#line 349 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str841, ei_big5hkscs1999},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 351 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str865, ei_big5hkscs2004},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 196 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str871, ei_cp1257},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 308 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str879, ei_euc_jp},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1},\n#line 363 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str912, ei_johab},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n    {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},\n#line 224 \"lib/aliases_syssolaris.gperf\"\n    {(int)(long)&((struct stringpool_t *)0)->stringpool_str956, ei_mac_hebrew}\n  };\n\n#ifdef __GNUC__\n__inline\n#if defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__\n__attribute__ ((__gnu_inline__))\n#endif\n#endif\nconst struct alias *\naliases_lookup (register const char *str, register unsigned int len)\n{\n  if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)\n    {\n      register int key = aliases_hash (str, len);\n\n      if (key <= MAX_HASH_VALUE && key >= 0)\n        {\n          register int o = aliases[key].name;\n          if (o >= 0)\n            {\n              register const char *s = o + stringpool;\n\n              if (*str == *s && !strcmp (str + 1, s + 1))\n                return &aliases[key];\n            }\n        }\n    }\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/armscii_8.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ARMSCII-8\n */\n\nstatic const unsigned short armscii_8_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0xfffd, 0x0587, 0x0589, 0x0029, 0x0028, 0x00bb, 0x00ab,\n  0x2014, 0x002e, 0x055d, 0x002c, 0x002d, 0x058a, 0x2026, 0x055c,\n  /* 0xb0 */\n  0x055b, 0x055e, 0x0531, 0x0561, 0x0532, 0x0562, 0x0533, 0x0563,\n  0x0534, 0x0564, 0x0535, 0x0565, 0x0536, 0x0566, 0x0537, 0x0567,\n  /* 0xc0 */\n  0x0538, 0x0568, 0x0539, 0x0569, 0x053a, 0x056a, 0x053b, 0x056b,\n  0x053c, 0x056c, 0x053d, 0x056d, 0x053e, 0x056e, 0x053f, 0x056f,\n  /* 0xd0 */\n  0x0540, 0x0570, 0x0541, 0x0571, 0x0542, 0x0572, 0x0543, 0x0573,\n  0x0544, 0x0574, 0x0545, 0x0575, 0x0546, 0x0576, 0x0547, 0x0577,\n  /* 0xe0 */\n  0x0548, 0x0578, 0x0549, 0x0579, 0x054a, 0x057a, 0x054b, 0x057b,\n  0x054c, 0x057c, 0x054d, 0x057d, 0x054e, 0x057e, 0x054f, 0x057f,\n  /* 0xf0 */\n  0x0550, 0x0580, 0x0551, 0x0581, 0x0552, 0x0582, 0x0553, 0x0583,\n  0x0554, 0x0584, 0x0555, 0x0585, 0x0556, 0x0586, 0x055a, 0xfffd,\n};\n\nstatic int\narmscii_8_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = armscii_8_2uni[c-0xa0];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char armscii_8_page00[8] = {\n  0xa5, 0xa4, 0x2a, 0x2b, 0xab, 0xac, 0xa9, 0x2f, /* 0x28-0x2f */\n};\nstatic const unsigned char armscii_8_page00_1[32] = {\n  0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char armscii_8_page05[96] = {\n  0x00, 0xb2, 0xb4, 0xb6, 0xb8, 0xba, 0xbc, 0xbe, /* 0x30-0x37 */\n  0xc0, 0xc2, 0xc4, 0xc6, 0xc8, 0xca, 0xcc, 0xce, /* 0x38-0x3f */\n  0xd0, 0xd2, 0xd4, 0xd6, 0xd8, 0xda, 0xdc, 0xde, /* 0x40-0x47 */\n  0xe0, 0xe2, 0xe4, 0xe6, 0xe8, 0xea, 0xec, 0xee, /* 0x48-0x4f */\n  0xf0, 0xf2, 0xf4, 0xf6, 0xf8, 0xfa, 0xfc, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0xfe, 0xb0, 0xaf, 0xaa, 0xb1, 0x00, /* 0x58-0x5f */\n  0x00, 0xb3, 0xb5, 0xb7, 0xb9, 0xbb, 0xbd, 0xbf, /* 0x60-0x67 */\n  0xc1, 0xc3, 0xc5, 0xc7, 0xc9, 0xcb, 0xcd, 0xcf, /* 0x68-0x6f */\n  0xd1, 0xd3, 0xd5, 0xd7, 0xd9, 0xdb, 0xdd, 0xdf, /* 0x70-0x77 */\n  0xe1, 0xe3, 0xe5, 0xe7, 0xe9, 0xeb, 0xed, 0xef, /* 0x78-0x7f */\n  0xf1, 0xf3, 0xf5, 0xf7, 0xf9, 0xfb, 0xfd, 0xa2, /* 0x80-0x87 */\n  0x00, 0xa3, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n};\nstatic const unsigned char armscii_8_page20[24] = {\n  0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0x00, /* 0x20-0x27 */\n};\n\nstatic int\narmscii_8_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0028) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x0028 && wc < 0x0030)\n    c = armscii_8_page00[wc-0x0028];\n  else if (wc >= 0x0030 && wc < 0x00a0)\n    c = wc;\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = armscii_8_page00_1[wc-0x00a0];\n  else if (wc >= 0x0530 && wc < 0x0590)\n    c = armscii_8_page05[wc-0x0530];\n  else if (wc >= 0x2010 && wc < 0x2028)\n    c = armscii_8_page20[wc-0x2010];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ascii.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ASCII\n */\n\nstatic int\nascii_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\nascii_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/atarist.h",
    "content": "/*\n * Copyright (C) 1999-2005, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * Atari ST\n */\n\nstatic const unsigned short atarist_2uni[128] = {\n  /* 0x80 */\n  0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x00e0, 0x00e5, 0x00e7,\n  0x00ea, 0x00eb, 0x00e8, 0x00ef, 0x00ee, 0x00ec, 0x00c4, 0x00c5,\n  /* 0x90 */\n  0x00c9, 0x00e6, 0x00c6, 0x00f4, 0x00f6, 0x00f2, 0x00fb, 0x00f9,\n  0x00ff, 0x00d6, 0x00dc, 0x00a2, 0x00a3, 0x00a5, 0x00df, 0x0192,\n  /* 0xa0 */\n  0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00f1, 0x00d1, 0x00aa, 0x00ba,\n  0x00bf, 0x2310, 0x00ac, 0x00bd, 0x00bc, 0x00a1, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x00e3, 0x00f5, 0x00d8, 0x00f8, 0x0153, 0x0152, 0x00c0, 0x00c3,\n  0x00d5, 0x00a8, 0x00b4, 0x2020, 0x00b6, 0x00a9, 0x00ae, 0x2122,\n  /* 0xc0 */\n  0x0133, 0x0132, 0x05d0, 0x05d1, 0x05d2, 0x05d3, 0x05d4, 0x05d5,\n  0x05d6, 0x05d7, 0x05d8, 0x05d9, 0x05db, 0x05dc, 0x05de, 0x05e0,\n  /* 0xd0 */\n  0x05e1, 0x05e2, 0x05e4, 0x05e6, 0x05e7, 0x05e8, 0x05e9, 0x05ea,\n  0x05df, 0x05da, 0x05dd, 0x05e3, 0x05e5, 0x00a7, 0x2227, 0x221e,\n  /* 0xe0 */\n  0x03b1, 0x03b2, 0x0393, 0x03c0, 0x03a3, 0x03c3, 0x00b5, 0x03c4,\n  0x03a6, 0x0398, 0x03a9, 0x03b4, 0x222e, 0x03c6, 0x2208, 0x2229,\n  /* 0xf0 */\n  0x2261, 0x00b1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00f7, 0x2248,\n  0x00b0, 0x2219, 0x00b7, 0x221a, 0x207f, 0x00b2, 0x00b3, 0x00af,\n};\n\nstatic int\natarist_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) atarist_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char atarist_page00[96] = {\n  0x00, 0xad, 0x9b, 0x9c, 0x00, 0x9d, 0x00, 0xdd, /* 0xa0-0xa7 */\n  0xb9, 0xbd, 0xa6, 0xae, 0xaa, 0x00, 0xbe, 0xff, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0xfe, 0xba, 0xe6, 0xbc, 0xfa, /* 0xb0-0xb7 */\n  0x00, 0x00, 0xa7, 0xaf, 0xac, 0xab, 0x00, 0xa8, /* 0xb8-0xbf */\n  0xb6, 0x00, 0x00, 0xb7, 0x8e, 0x8f, 0x92, 0x80, /* 0xc0-0xc7 */\n  0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0xa5, 0x00, 0x00, 0x00, 0xb8, 0x99, 0x00, /* 0xd0-0xd7 */\n  0xb2, 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0x9e, /* 0xd8-0xdf */\n  0x85, 0xa0, 0x83, 0xb0, 0x84, 0x86, 0x91, 0x87, /* 0xe0-0xe7 */\n  0x8a, 0x82, 0x88, 0x89, 0x8d, 0xa1, 0x8c, 0x8b, /* 0xe8-0xef */\n  0x00, 0xa4, 0x95, 0xa2, 0x93, 0xb1, 0x94, 0xf6, /* 0xf0-0xf7 */\n  0xb3, 0x97, 0xa3, 0x96, 0x81, 0x00, 0x00, 0x98, /* 0xf8-0xff */\n};\nstatic const unsigned char atarist_page01[104] = {\n  0x00, 0x00, 0xc1, 0xc0, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0xb5, 0xb4, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char atarist_page03[56] = {\n  0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0xe8, 0x00, /* 0xa0-0xa7 */\n  0x00, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0xe0, 0xe1, 0x00, 0xeb, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0xe3, 0x00, 0x00, 0xe5, 0xe7, 0x00, 0xed, 0x00, /* 0xc0-0xc7 */\n};\nstatic const unsigned char atarist_page05[32] = {\n  0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, /* 0xd0-0xd7 */\n  0xca, 0xcb, 0xd9, 0xcc, 0xcd, 0xda, 0xce, 0xd8, /* 0xd8-0xdf */\n  0xcf, 0xd0, 0xd1, 0xdb, 0xd2, 0xdc, 0xd3, 0xd4, /* 0xe0-0xe7 */\n  0xd5, 0xd6, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n};\nstatic const unsigned char atarist_page22[96] = {\n  0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0xf9, 0xfb, 0x00, 0x00, 0x00, 0xdf, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, /* 0x20-0x27 */\n  0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0xec, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xf7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0xf0, 0x00, 0x00, 0xf3, 0xf2, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char atarist_page23[24] = {\n  0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0xf4, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\n\nstatic int\natarist_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = atarist_page00[wc-0x00a0];\n  else if (wc >= 0x0130 && wc < 0x0198)\n    c = atarist_page01[wc-0x0130];\n  else if (wc >= 0x0390 && wc < 0x03c8)\n    c = atarist_page03[wc-0x0390];\n  else if (wc >= 0x05d0 && wc < 0x05f0)\n    c = atarist_page05[wc-0x05d0];\n  else if (wc == 0x2020)\n    c = 0xbb;\n  else if (wc == 0x207f)\n    c = 0xfc;\n  else if (wc == 0x2122)\n    c = 0xbf;\n  else if (wc >= 0x2208 && wc < 0x2268)\n    c = atarist_page22[wc-0x2208];\n  else if (wc >= 0x2310 && wc < 0x2328)\n    c = atarist_page23[wc-0x2310];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/big5.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * BIG5\n */\n\nstatic const unsigned short big5_2uni_pagea1[6121] = {\n  /* 0xa1 */\n  0x3000, 0xff0c, 0x3001, 0x3002, 0xff0e, 0x2022, 0xff1b, 0xff1a,\n  0xff1f, 0xff01, 0xfe30, 0x2026, 0x2025, 0xfe50, 0xff64, 0xfe52,\n  0x00b7, 0xfe54, 0xfe55, 0xfe56, 0xfe57, 0xff5c, 0x2013, 0xfe31,\n  0x2014, 0xfe33, 0xfffd, 0xfe34, 0xfe4f, 0xff08, 0xff09, 0xfe35,\n  0xfe36, 0xff5b, 0xff5d, 0xfe37, 0xfe38, 0x3014, 0x3015, 0xfe39,\n  0xfe3a, 0x3010, 0x3011, 0xfe3b, 0xfe3c, 0x300a, 0x300b, 0xfe3d,\n  0xfe3e, 0x3008, 0x3009, 0xfe3f, 0xfe40, 0x300c, 0x300d, 0xfe41,\n  0xfe42, 0x300e, 0x300f, 0xfe43, 0xfe44, 0xfe59, 0xfe5a, 0xfe5b,\n  0xfe5c, 0xfe5d, 0xfe5e, 0x2018, 0x2019, 0x201c, 0x201d, 0x301d,\n  0x301e, 0x2035, 0x2032, 0xff03, 0xff06, 0xff0a, 0x203b, 0x00a7,\n  0x3003, 0x25cb, 0x25cf, 0x25b3, 0x25b2, 0x25ce, 0x2606, 0x2605,\n  0x25c7, 0x25c6, 0x25a1, 0x25a0, 0x25bd, 0x25bc, 0x32a3, 0x2105,\n  0x203e, 0xfffd, 0xff3f, 0xfffd, 0xfe49, 0xfe4a, 0xfe4d, 0xfe4e,\n  0xfe4b, 0xfe4c, 0xfe5f, 0xfe60, 0xfe61, 0xff0b, 0xff0d, 0x00d7,\n  0x00f7, 0x00b1, 0x221a, 0xff1c, 0xff1e, 0xff1d, 0x2266, 0x2267,\n  0x2260, 0x221e, 0x2252, 0x2261, 0xfe62, 0xfe63, 0xfe64, 0xfe65,\n  0xfe66, 0x223c, 0x2229, 0x222a, 0x22a5, 0x2220, 0x221f, 0x22bf,\n  0x33d2, 0x33d1, 0x222b, 0x222e, 0x2235, 0x2234, 0x2640, 0x2642,\n  0x2641, 0x2609, 0x2191, 0x2193, 0x2190, 0x2192, 0x2196, 0x2197,\n  0x2199, 0x2198, 0x2225, 0x2223, 0xfffd,\n  /* 0xa2 */\n  0xfffd, 0xff0f, 0xff3c, 0xff04, 0x00a5, 0x3012, 0x00a2, 0x00a3,\n  0xff05, 0xff20, 0x2103, 0x2109, 0xfe69, 0xfe6a, 0xfe6b, 0x33d5,\n  0x339c, 0x339d, 0x339e, 0x33ce, 0x33a1, 0x338e, 0x338f, 0x33c4,\n  0x00b0, 0x5159, 0x515b, 0x515e, 0x515d, 0x5161, 0x5163, 0x55e7,\n  0x74e9, 0x7cce, 0x2581, 0x2582, 0x2583, 0x2584, 0x2585, 0x2586,\n  0x2587, 0x2588, 0x258f, 0x258e, 0x258d, 0x258c, 0x258b, 0x258a,\n  0x2589, 0x253c, 0x2534, 0x252c, 0x2524, 0x251c, 0x2594, 0x2500,\n  0x2502, 0x2595, 0x250c, 0x2510, 0x2514, 0x2518, 0x256d, 0x256e,\n  0x2570, 0x256f, 0x2550, 0x255e, 0x256a, 0x2561, 0x25e2, 0x25e3,\n  0x25e5, 0x25e4, 0x2571, 0x2572, 0x2573, 0xff10, 0xff11, 0xff12,\n  0xff13, 0xff14, 0xff15, 0xff16, 0xff17, 0xff18, 0xff19, 0x2160,\n  0x2161, 0x2162, 0x2163, 0x2164, 0x2165, 0x2166, 0x2167, 0x2168,\n  0x2169, 0x3021, 0x3022, 0x3023, 0x3024, 0x3025, 0x3026, 0x3027,\n  0x3028, 0x3029, 0xfffd, 0x5344, 0xfffd, 0xff21, 0xff22, 0xff23,\n  0xff24, 0xff25, 0xff26, 0xff27, 0xff28, 0xff29, 0xff2a, 0xff2b,\n  0xff2c, 0xff2d, 0xff2e, 0xff2f, 0xff30, 0xff31, 0xff32, 0xff33,\n  0xff34, 0xff35, 0xff36, 0xff37, 0xff38, 0xff39, 0xff3a, 0xff41,\n  0xff42, 0xff43, 0xff44, 0xff45, 0xff46, 0xff47, 0xff48, 0xff49,\n  0xff4a, 0xff4b, 0xff4c, 0xff4d, 0xff4e, 0xff4f, 0xff50, 0xff51,\n  0xff52, 0xff53, 0xff54, 0xff55, 0xff56,\n  /* 0xa3 */\n  0xff57, 0xff58, 0xff59, 0xff5a, 0x0391, 0x0392, 0x0393, 0x0394,\n  0x0395, 0x0396, 0x0397, 0x0398, 0x0399, 0x039a, 0x039b, 0x039c,\n  0x039d, 0x039e, 0x039f, 0x03a0, 0x03a1, 0x03a3, 0x03a4, 0x03a5,\n  0x03a6, 0x03a7, 0x03a8, 0x03a9, 0x03b1, 0x03b2, 0x03b3, 0x03b4,\n  0x03b5, 0x03b6, 0x03b7, 0x03b8, 0x03b9, 0x03ba, 0x03bb, 0x03bc,\n  0x03bd, 0x03be, 0x03bf, 0x03c0, 0x03c1, 0x03c3, 0x03c4, 0x03c5,\n  0x03c6, 0x03c7, 0x03c8, 0x03c9, 0x3105, 0x3106, 0x3107, 0x3108,\n  0x3109, 0x310a, 0x310b, 0x310c, 0x310d, 0x310e, 0x310f, 0x3110,\n  0x3111, 0x3112, 0x3113, 0x3114, 0x3115, 0x3116, 0x3117, 0x3118,\n  0x3119, 0x311a, 0x311b, 0x311c, 0x311d, 0x311e, 0x311f, 0x3120,\n  0x3121, 0x3122, 0x3123, 0x3124, 0x3125, 0x3126, 0x3127, 0x3128,\n  0x3129, 0x02d9, 0x02c9, 0x02ca, 0x02c7, 0x02cb, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xa4 */\n  0x4e00, 0x4e59, 0x4e01, 0x4e03, 0x4e43, 0x4e5d, 0x4e86, 0x4e8c,\n  0x4eba, 0x513f, 0x5165, 0x516b, 0x51e0, 0x5200, 0x5201, 0x529b,\n  0x5315, 0x5341, 0x535c, 0x53c8, 0x4e09, 0x4e0b, 0x4e08, 0x4e0a,\n  0x4e2b, 0x4e38, 0x51e1, 0x4e45, 0x4e48, 0x4e5f, 0x4e5e, 0x4e8e,\n  0x4ea1, 0x5140, 0x5203, 0x52fa, 0x5343, 0x53c9, 0x53e3, 0x571f,\n  0x58eb, 0x5915, 0x5927, 0x5973, 0x5b50, 0x5b51, 0x5b53, 0x5bf8,\n  0x5c0f, 0x5c22, 0x5c38, 0x5c71, 0x5ddd, 0x5de5, 0x5df1, 0x5df2,\n  0x5df3, 0x5dfe, 0x5e72, 0x5efe, 0x5f0b, 0x5f13, 0x624d, 0x4e11,\n  0x4e10, 0x4e0d, 0x4e2d, 0x4e30, 0x4e39, 0x4e4b, 0x5c39, 0x4e88,\n  0x4e91, 0x4e95, 0x4e92, 0x4e94, 0x4ea2, 0x4ec1, 0x4ec0, 0x4ec3,\n  0x4ec6, 0x4ec7, 0x4ecd, 0x4eca, 0x4ecb, 0x4ec4, 0x5143, 0x5141,\n  0x5167, 0x516d, 0x516e, 0x516c, 0x5197, 0x51f6, 0x5206, 0x5207,\n  0x5208, 0x52fb, 0x52fe, 0x52ff, 0x5316, 0x5339, 0x5348, 0x5347,\n  0x5345, 0x535e, 0x5384, 0x53cb, 0x53ca, 0x53cd, 0x58ec, 0x5929,\n  0x592b, 0x592a, 0x592d, 0x5b54, 0x5c11, 0x5c24, 0x5c3a, 0x5c6f,\n  0x5df4, 0x5e7b, 0x5eff, 0x5f14, 0x5f15, 0x5fc3, 0x6208, 0x6236,\n  0x624b, 0x624e, 0x652f, 0x6587, 0x6597, 0x65a4, 0x65b9, 0x65e5,\n  0x66f0, 0x6708, 0x6728, 0x6b20, 0x6b62, 0x6b79, 0x6bcb, 0x6bd4,\n  0x6bdb, 0x6c0f, 0x6c34, 0x706b, 0x722a, 0x7236, 0x723b, 0x7247,\n  0x7259, 0x725b, 0x72ac, 0x738b, 0x4e19,\n  /* 0xa5 */\n  0x4e16, 0x4e15, 0x4e14, 0x4e18, 0x4e3b, 0x4e4d, 0x4e4f, 0x4e4e,\n  0x4ee5, 0x4ed8, 0x4ed4, 0x4ed5, 0x4ed6, 0x4ed7, 0x4ee3, 0x4ee4,\n  0x4ed9, 0x4ede, 0x5145, 0x5144, 0x5189, 0x518a, 0x51ac, 0x51f9,\n  0x51fa, 0x51f8, 0x520a, 0x52a0, 0x529f, 0x5305, 0x5306, 0x5317,\n  0x531d, 0x4edf, 0x534a, 0x5349, 0x5361, 0x5360, 0x536f, 0x536e,\n  0x53bb, 0x53ef, 0x53e4, 0x53f3, 0x53ec, 0x53ee, 0x53e9, 0x53e8,\n  0x53fc, 0x53f8, 0x53f5, 0x53eb, 0x53e6, 0x53ea, 0x53f2, 0x53f1,\n  0x53f0, 0x53e5, 0x53ed, 0x53fb, 0x56db, 0x56da, 0x5916, 0x592e,\n  0x5931, 0x5974, 0x5976, 0x5b55, 0x5b83, 0x5c3c, 0x5de8, 0x5de7,\n  0x5de6, 0x5e02, 0x5e03, 0x5e73, 0x5e7c, 0x5f01, 0x5f18, 0x5f17,\n  0x5fc5, 0x620a, 0x6253, 0x6254, 0x6252, 0x6251, 0x65a5, 0x65e6,\n  0x672e, 0x672c, 0x672a, 0x672b, 0x672d, 0x6b63, 0x6bcd, 0x6c11,\n  0x6c10, 0x6c38, 0x6c41, 0x6c40, 0x6c3e, 0x72af, 0x7384, 0x7389,\n  0x74dc, 0x74e6, 0x7518, 0x751f, 0x7528, 0x7529, 0x7530, 0x7531,\n  0x7532, 0x7533, 0x758b, 0x767d, 0x76ae, 0x76bf, 0x76ee, 0x77db,\n  0x77e2, 0x77f3, 0x793a, 0x79be, 0x7a74, 0x7acb, 0x4e1e, 0x4e1f,\n  0x4e52, 0x4e53, 0x4e69, 0x4e99, 0x4ea4, 0x4ea6, 0x4ea5, 0x4eff,\n  0x4f09, 0x4f19, 0x4f0a, 0x4f15, 0x4f0d, 0x4f10, 0x4f11, 0x4f0f,\n  0x4ef2, 0x4ef6, 0x4efb, 0x4ef0, 0x4ef3, 0x4efd, 0x4f01, 0x4f0b,\n  0x5149, 0x5147, 0x5146, 0x5148, 0x5168,\n  /* 0xa6 */\n  0x5171, 0x518d, 0x51b0, 0x5217, 0x5211, 0x5212, 0x520e, 0x5216,\n  0x52a3, 0x5308, 0x5321, 0x5320, 0x5370, 0x5371, 0x5409, 0x540f,\n  0x540c, 0x540a, 0x5410, 0x5401, 0x540b, 0x5404, 0x5411, 0x540d,\n  0x5408, 0x5403, 0x540e, 0x5406, 0x5412, 0x56e0, 0x56de, 0x56dd,\n  0x5733, 0x5730, 0x5728, 0x572d, 0x572c, 0x572f, 0x5729, 0x5919,\n  0x591a, 0x5937, 0x5938, 0x5984, 0x5978, 0x5983, 0x597d, 0x5979,\n  0x5982, 0x5981, 0x5b57, 0x5b58, 0x5b87, 0x5b88, 0x5b85, 0x5b89,\n  0x5bfa, 0x5c16, 0x5c79, 0x5dde, 0x5e06, 0x5e76, 0x5e74, 0x5f0f,\n  0x5f1b, 0x5fd9, 0x5fd6, 0x620e, 0x620c, 0x620d, 0x6210, 0x6263,\n  0x625b, 0x6258, 0x6536, 0x65e9, 0x65e8, 0x65ec, 0x65ed, 0x66f2,\n  0x66f3, 0x6709, 0x673d, 0x6734, 0x6731, 0x6735, 0x6b21, 0x6b64,\n  0x6b7b, 0x6c16, 0x6c5d, 0x6c57, 0x6c59, 0x6c5f, 0x6c60, 0x6c50,\n  0x6c55, 0x6c61, 0x6c5b, 0x6c4d, 0x6c4e, 0x7070, 0x725f, 0x725d,\n  0x767e, 0x7af9, 0x7c73, 0x7cf8, 0x7f36, 0x7f8a, 0x7fbd, 0x8001,\n  0x8003, 0x800c, 0x8012, 0x8033, 0x807f, 0x8089, 0x808b, 0x808c,\n  0x81e3, 0x81ea, 0x81f3, 0x81fc, 0x820c, 0x821b, 0x821f, 0x826e,\n  0x8272, 0x827e, 0x866b, 0x8840, 0x884c, 0x8863, 0x897f, 0x9621,\n  0x4e32, 0x4ea8, 0x4f4d, 0x4f4f, 0x4f47, 0x4f57, 0x4f5e, 0x4f34,\n  0x4f5b, 0x4f55, 0x4f30, 0x4f50, 0x4f51, 0x4f3d, 0x4f3a, 0x4f38,\n  0x4f43, 0x4f54, 0x4f3c, 0x4f46, 0x4f63,\n  /* 0xa7 */\n  0x4f5c, 0x4f60, 0x4f2f, 0x4f4e, 0x4f36, 0x4f59, 0x4f5d, 0x4f48,\n  0x4f5a, 0x514c, 0x514b, 0x514d, 0x5175, 0x51b6, 0x51b7, 0x5225,\n  0x5224, 0x5229, 0x522a, 0x5228, 0x52ab, 0x52a9, 0x52aa, 0x52ac,\n  0x5323, 0x5373, 0x5375, 0x541d, 0x542d, 0x541e, 0x543e, 0x5426,\n  0x544e, 0x5427, 0x5446, 0x5443, 0x5433, 0x5448, 0x5442, 0x541b,\n  0x5429, 0x544a, 0x5439, 0x543b, 0x5438, 0x542e, 0x5435, 0x5436,\n  0x5420, 0x543c, 0x5440, 0x5431, 0x542b, 0x541f, 0x542c, 0x56ea,\n  0x56f0, 0x56e4, 0x56eb, 0x574a, 0x5751, 0x5740, 0x574d, 0x5747,\n  0x574e, 0x573e, 0x5750, 0x574f, 0x573b, 0x58ef, 0x593e, 0x599d,\n  0x5992, 0x59a8, 0x599e, 0x59a3, 0x5999, 0x5996, 0x598d, 0x59a4,\n  0x5993, 0x598a, 0x59a5, 0x5b5d, 0x5b5c, 0x5b5a, 0x5b5b, 0x5b8c,\n  0x5b8b, 0x5b8f, 0x5c2c, 0x5c40, 0x5c41, 0x5c3f, 0x5c3e, 0x5c90,\n  0x5c91, 0x5c94, 0x5c8c, 0x5deb, 0x5e0c, 0x5e8f, 0x5e87, 0x5e8a,\n  0x5ef7, 0x5f04, 0x5f1f, 0x5f64, 0x5f62, 0x5f77, 0x5f79, 0x5fd8,\n  0x5fcc, 0x5fd7, 0x5fcd, 0x5ff1, 0x5feb, 0x5ff8, 0x5fea, 0x6212,\n  0x6211, 0x6284, 0x6297, 0x6296, 0x6280, 0x6276, 0x6289, 0x626d,\n  0x628a, 0x627c, 0x627e, 0x6279, 0x6273, 0x6292, 0x626f, 0x6298,\n  0x626e, 0x6295, 0x6293, 0x6291, 0x6286, 0x6539, 0x653b, 0x6538,\n  0x65f1, 0x66f4, 0x675f, 0x674e, 0x674f, 0x6750, 0x6751, 0x675c,\n  0x6756, 0x675e, 0x6749, 0x6746, 0x6760,\n  /* 0xa8 */\n  0x6753, 0x6757, 0x6b65, 0x6bcf, 0x6c42, 0x6c5e, 0x6c99, 0x6c81,\n  0x6c88, 0x6c89, 0x6c85, 0x6c9b, 0x6c6a, 0x6c7a, 0x6c90, 0x6c70,\n  0x6c8c, 0x6c68, 0x6c96, 0x6c92, 0x6c7d, 0x6c83, 0x6c72, 0x6c7e,\n  0x6c74, 0x6c86, 0x6c76, 0x6c8d, 0x6c94, 0x6c98, 0x6c82, 0x7076,\n  0x707c, 0x707d, 0x7078, 0x7262, 0x7261, 0x7260, 0x72c4, 0x72c2,\n  0x7396, 0x752c, 0x752b, 0x7537, 0x7538, 0x7682, 0x76ef, 0x77e3,\n  0x79c1, 0x79c0, 0x79bf, 0x7a76, 0x7cfb, 0x7f55, 0x8096, 0x8093,\n  0x809d, 0x8098, 0x809b, 0x809a, 0x80b2, 0x826f, 0x8292, 0x828b,\n  0x828d, 0x898b, 0x89d2, 0x8a00, 0x8c37, 0x8c46, 0x8c55, 0x8c9d,\n  0x8d64, 0x8d70, 0x8db3, 0x8eab, 0x8eca, 0x8f9b, 0x8fb0, 0x8fc2,\n  0x8fc6, 0x8fc5, 0x8fc4, 0x5de1, 0x9091, 0x90a2, 0x90aa, 0x90a6,\n  0x90a3, 0x9149, 0x91c6, 0x91cc, 0x9632, 0x962e, 0x9631, 0x962a,\n  0x962c, 0x4e26, 0x4e56, 0x4e73, 0x4e8b, 0x4e9b, 0x4e9e, 0x4eab,\n  0x4eac, 0x4f6f, 0x4f9d, 0x4f8d, 0x4f73, 0x4f7f, 0x4f6c, 0x4f9b,\n  0x4f8b, 0x4f86, 0x4f83, 0x4f70, 0x4f75, 0x4f88, 0x4f69, 0x4f7b,\n  0x4f96, 0x4f7e, 0x4f8f, 0x4f91, 0x4f7a, 0x5154, 0x5152, 0x5155,\n  0x5169, 0x5177, 0x5176, 0x5178, 0x51bd, 0x51fd, 0x523b, 0x5238,\n  0x5237, 0x523a, 0x5230, 0x522e, 0x5236, 0x5241, 0x52be, 0x52bb,\n  0x5352, 0x5354, 0x5353, 0x5351, 0x5366, 0x5377, 0x5378, 0x5379,\n  0x53d6, 0x53d4, 0x53d7, 0x5473, 0x5475,\n  /* 0xa9 */\n  0x5496, 0x5478, 0x5495, 0x5480, 0x547b, 0x5477, 0x5484, 0x5492,\n  0x5486, 0x547c, 0x5490, 0x5471, 0x5476, 0x548c, 0x549a, 0x5462,\n  0x5468, 0x548b, 0x547d, 0x548e, 0x56fa, 0x5783, 0x5777, 0x576a,\n  0x5769, 0x5761, 0x5766, 0x5764, 0x577c, 0x591c, 0x5949, 0x5947,\n  0x5948, 0x5944, 0x5954, 0x59be, 0x59bb, 0x59d4, 0x59b9, 0x59ae,\n  0x59d1, 0x59c6, 0x59d0, 0x59cd, 0x59cb, 0x59d3, 0x59ca, 0x59af,\n  0x59b3, 0x59d2, 0x59c5, 0x5b5f, 0x5b64, 0x5b63, 0x5b97, 0x5b9a,\n  0x5b98, 0x5b9c, 0x5b99, 0x5b9b, 0x5c1a, 0x5c48, 0x5c45, 0x5c46,\n  0x5cb7, 0x5ca1, 0x5cb8, 0x5ca9, 0x5cab, 0x5cb1, 0x5cb3, 0x5e18,\n  0x5e1a, 0x5e16, 0x5e15, 0x5e1b, 0x5e11, 0x5e78, 0x5e9a, 0x5e97,\n  0x5e9c, 0x5e95, 0x5e96, 0x5ef6, 0x5f26, 0x5f27, 0x5f29, 0x5f80,\n  0x5f81, 0x5f7f, 0x5f7c, 0x5fdd, 0x5fe0, 0x5ffd, 0x5ff5, 0x5fff,\n  0x600f, 0x6014, 0x602f, 0x6035, 0x6016, 0x602a, 0x6015, 0x6021,\n  0x6027, 0x6029, 0x602b, 0x601b, 0x6216, 0x6215, 0x623f, 0x623e,\n  0x6240, 0x627f, 0x62c9, 0x62cc, 0x62c4, 0x62bf, 0x62c2, 0x62b9,\n  0x62d2, 0x62db, 0x62ab, 0x62d3, 0x62d4, 0x62cb, 0x62c8, 0x62a8,\n  0x62bd, 0x62bc, 0x62d0, 0x62d9, 0x62c7, 0x62cd, 0x62b5, 0x62da,\n  0x62b1, 0x62d8, 0x62d6, 0x62d7, 0x62c6, 0x62ac, 0x62ce, 0x653e,\n  0x65a7, 0x65bc, 0x65fa, 0x6614, 0x6613, 0x660c, 0x6606, 0x6602,\n  0x660e, 0x6600, 0x660f, 0x6615, 0x660a,\n  /* 0xaa */\n  0x6607, 0x670d, 0x670b, 0x676d, 0x678b, 0x6795, 0x6771, 0x679c,\n  0x6773, 0x6777, 0x6787, 0x679d, 0x6797, 0x676f, 0x6770, 0x677f,\n  0x6789, 0x677e, 0x6790, 0x6775, 0x679a, 0x6793, 0x677c, 0x676a,\n  0x6772, 0x6b23, 0x6b66, 0x6b67, 0x6b7f, 0x6c13, 0x6c1b, 0x6ce3,\n  0x6ce8, 0x6cf3, 0x6cb1, 0x6ccc, 0x6ce5, 0x6cb3, 0x6cbd, 0x6cbe,\n  0x6cbc, 0x6ce2, 0x6cab, 0x6cd5, 0x6cd3, 0x6cb8, 0x6cc4, 0x6cb9,\n  0x6cc1, 0x6cae, 0x6cd7, 0x6cc5, 0x6cf1, 0x6cbf, 0x6cbb, 0x6ce1,\n  0x6cdb, 0x6cca, 0x6cac, 0x6cef, 0x6cdc, 0x6cd6, 0x6ce0, 0x7095,\n  0x708e, 0x7092, 0x708a, 0x7099, 0x722c, 0x722d, 0x7238, 0x7248,\n  0x7267, 0x7269, 0x72c0, 0x72ce, 0x72d9, 0x72d7, 0x72d0, 0x73a9,\n  0x73a8, 0x739f, 0x73ab, 0x73a5, 0x753d, 0x759d, 0x7599, 0x759a,\n  0x7684, 0x76c2, 0x76f2, 0x76f4, 0x77e5, 0x77fd, 0x793e, 0x7940,\n  0x7941, 0x79c9, 0x79c8, 0x7a7a, 0x7a79, 0x7afa, 0x7cfe, 0x7f54,\n  0x7f8c, 0x7f8b, 0x8005, 0x80ba, 0x80a5, 0x80a2, 0x80b1, 0x80a1,\n  0x80ab, 0x80a9, 0x80b4, 0x80aa, 0x80af, 0x81e5, 0x81fe, 0x820d,\n  0x82b3, 0x829d, 0x8299, 0x82ad, 0x82bd, 0x829f, 0x82b9, 0x82b1,\n  0x82ac, 0x82a5, 0x82af, 0x82b8, 0x82a3, 0x82b0, 0x82be, 0x82b7,\n  0x864e, 0x8671, 0x521d, 0x8868, 0x8ecb, 0x8fce, 0x8fd4, 0x8fd1,\n  0x90b5, 0x90b8, 0x90b1, 0x90b6, 0x91c7, 0x91d1, 0x9577, 0x9580,\n  0x961c, 0x9640, 0x963f, 0x963b, 0x9644,\n  /* 0xab */\n  0x9642, 0x96b9, 0x96e8, 0x9752, 0x975e, 0x4e9f, 0x4ead, 0x4eae,\n  0x4fe1, 0x4fb5, 0x4faf, 0x4fbf, 0x4fe0, 0x4fd1, 0x4fcf, 0x4fdd,\n  0x4fc3, 0x4fb6, 0x4fd8, 0x4fdf, 0x4fca, 0x4fd7, 0x4fae, 0x4fd0,\n  0x4fc4, 0x4fc2, 0x4fda, 0x4fce, 0x4fde, 0x4fb7, 0x5157, 0x5192,\n  0x5191, 0x51a0, 0x524e, 0x5243, 0x524a, 0x524d, 0x524c, 0x524b,\n  0x5247, 0x52c7, 0x52c9, 0x52c3, 0x52c1, 0x530d, 0x5357, 0x537b,\n  0x539a, 0x53db, 0x54ac, 0x54c0, 0x54a8, 0x54ce, 0x54c9, 0x54b8,\n  0x54a6, 0x54b3, 0x54c7, 0x54c2, 0x54bd, 0x54aa, 0x54c1, 0x54c4,\n  0x54c8, 0x54af, 0x54ab, 0x54b1, 0x54bb, 0x54a9, 0x54a7, 0x54bf,\n  0x56ff, 0x5782, 0x578b, 0x57a0, 0x57a3, 0x57a2, 0x57ce, 0x57ae,\n  0x5793, 0x5955, 0x5951, 0x594f, 0x594e, 0x5950, 0x59dc, 0x59d8,\n  0x59ff, 0x59e3, 0x59e8, 0x5a03, 0x59e5, 0x59ea, 0x59da, 0x59e6,\n  0x5a01, 0x59fb, 0x5b69, 0x5ba3, 0x5ba6, 0x5ba4, 0x5ba2, 0x5ba5,\n  0x5c01, 0x5c4e, 0x5c4f, 0x5c4d, 0x5c4b, 0x5cd9, 0x5cd2, 0x5df7,\n  0x5e1d, 0x5e25, 0x5e1f, 0x5e7d, 0x5ea0, 0x5ea6, 0x5efa, 0x5f08,\n  0x5f2d, 0x5f65, 0x5f88, 0x5f85, 0x5f8a, 0x5f8b, 0x5f87, 0x5f8c,\n  0x5f89, 0x6012, 0x601d, 0x6020, 0x6025, 0x600e, 0x6028, 0x604d,\n  0x6070, 0x6068, 0x6062, 0x6046, 0x6043, 0x606c, 0x606b, 0x606a,\n  0x6064, 0x6241, 0x62dc, 0x6316, 0x6309, 0x62fc, 0x62ed, 0x6301,\n  0x62ee, 0x62fd, 0x6307, 0x62f1, 0x62f7,\n  /* 0xac */\n  0x62ef, 0x62ec, 0x62fe, 0x62f4, 0x6311, 0x6302, 0x653f, 0x6545,\n  0x65ab, 0x65bd, 0x65e2, 0x6625, 0x662d, 0x6620, 0x6627, 0x662f,\n  0x661f, 0x6628, 0x6631, 0x6624, 0x66f7, 0x67ff, 0x67d3, 0x67f1,\n  0x67d4, 0x67d0, 0x67ec, 0x67b6, 0x67af, 0x67f5, 0x67e9, 0x67ef,\n  0x67c4, 0x67d1, 0x67b4, 0x67da, 0x67e5, 0x67b8, 0x67cf, 0x67de,\n  0x67f3, 0x67b0, 0x67d9, 0x67e2, 0x67dd, 0x67d2, 0x6b6a, 0x6b83,\n  0x6b86, 0x6bb5, 0x6bd2, 0x6bd7, 0x6c1f, 0x6cc9, 0x6d0b, 0x6d32,\n  0x6d2a, 0x6d41, 0x6d25, 0x6d0c, 0x6d31, 0x6d1e, 0x6d17, 0x6d3b,\n  0x6d3d, 0x6d3e, 0x6d36, 0x6d1b, 0x6cf5, 0x6d39, 0x6d27, 0x6d38,\n  0x6d29, 0x6d2e, 0x6d35, 0x6d0e, 0x6d2b, 0x70ab, 0x70ba, 0x70b3,\n  0x70ac, 0x70af, 0x70ad, 0x70b8, 0x70ae, 0x70a4, 0x7230, 0x7272,\n  0x726f, 0x7274, 0x72e9, 0x72e0, 0x72e1, 0x73b7, 0x73ca, 0x73bb,\n  0x73b2, 0x73cd, 0x73c0, 0x73b3, 0x751a, 0x752d, 0x754f, 0x754c,\n  0x754e, 0x754b, 0x75ab, 0x75a4, 0x75a5, 0x75a2, 0x75a3, 0x7678,\n  0x7686, 0x7687, 0x7688, 0x76c8, 0x76c6, 0x76c3, 0x76c5, 0x7701,\n  0x76f9, 0x76f8, 0x7709, 0x770b, 0x76fe, 0x76fc, 0x7707, 0x77dc,\n  0x7802, 0x7814, 0x780c, 0x780d, 0x7946, 0x7949, 0x7948, 0x7947,\n  0x79b9, 0x79ba, 0x79d1, 0x79d2, 0x79cb, 0x7a7f, 0x7a81, 0x7aff,\n  0x7afd, 0x7c7d, 0x7d02, 0x7d05, 0x7d00, 0x7d09, 0x7d07, 0x7d04,\n  0x7d06, 0x7f38, 0x7f8e, 0x7fbf, 0x8004,\n  /* 0xad */\n  0x8010, 0x800d, 0x8011, 0x8036, 0x80d6, 0x80e5, 0x80da, 0x80c3,\n  0x80c4, 0x80cc, 0x80e1, 0x80db, 0x80ce, 0x80de, 0x80e4, 0x80dd,\n  0x81f4, 0x8222, 0x82e7, 0x8303, 0x8305, 0x82e3, 0x82db, 0x82e6,\n  0x8304, 0x82e5, 0x8302, 0x8309, 0x82d2, 0x82d7, 0x82f1, 0x8301,\n  0x82dc, 0x82d4, 0x82d1, 0x82de, 0x82d3, 0x82df, 0x82ef, 0x8306,\n  0x8650, 0x8679, 0x867b, 0x867a, 0x884d, 0x886b, 0x8981, 0x89d4,\n  0x8a08, 0x8a02, 0x8a03, 0x8c9e, 0x8ca0, 0x8d74, 0x8d73, 0x8db4,\n  0x8ecd, 0x8ecc, 0x8ff0, 0x8fe6, 0x8fe2, 0x8fea, 0x8fe5, 0x8fed,\n  0x8feb, 0x8fe4, 0x8fe8, 0x90ca, 0x90ce, 0x90c1, 0x90c3, 0x914b,\n  0x914a, 0x91cd, 0x9582, 0x9650, 0x964b, 0x964c, 0x964d, 0x9762,\n  0x9769, 0x97cb, 0x97ed, 0x97f3, 0x9801, 0x98a8, 0x98db, 0x98df,\n  0x9996, 0x9999, 0x4e58, 0x4eb3, 0x500c, 0x500d, 0x5023, 0x4fef,\n  0x5026, 0x5025, 0x4ff8, 0x5029, 0x5016, 0x5006, 0x503c, 0x501f,\n  0x501a, 0x5012, 0x5011, 0x4ffa, 0x5000, 0x5014, 0x5028, 0x4ff1,\n  0x5021, 0x500b, 0x5019, 0x5018, 0x4ff3, 0x4fee, 0x502d, 0x502a,\n  0x4ffe, 0x502b, 0x5009, 0x517c, 0x51a4, 0x51a5, 0x51a2, 0x51cd,\n  0x51cc, 0x51c6, 0x51cb, 0x5256, 0x525c, 0x5254, 0x525b, 0x525d,\n  0x532a, 0x537f, 0x539f, 0x539d, 0x53df, 0x54e8, 0x5510, 0x5501,\n  0x5537, 0x54fc, 0x54e5, 0x54f2, 0x5506, 0x54fa, 0x5514, 0x54e9,\n  0x54ed, 0x54e1, 0x5509, 0x54ee, 0x54ea,\n  /* 0xae */\n  0x54e6, 0x5527, 0x5507, 0x54fd, 0x550f, 0x5703, 0x5704, 0x57c2,\n  0x57d4, 0x57cb, 0x57c3, 0x5809, 0x590f, 0x5957, 0x5958, 0x595a,\n  0x5a11, 0x5a18, 0x5a1c, 0x5a1f, 0x5a1b, 0x5a13, 0x59ec, 0x5a20,\n  0x5a23, 0x5a29, 0x5a25, 0x5a0c, 0x5a09, 0x5b6b, 0x5c58, 0x5bb0,\n  0x5bb3, 0x5bb6, 0x5bb4, 0x5bae, 0x5bb5, 0x5bb9, 0x5bb8, 0x5c04,\n  0x5c51, 0x5c55, 0x5c50, 0x5ced, 0x5cfd, 0x5cfb, 0x5cea, 0x5ce8,\n  0x5cf0, 0x5cf6, 0x5d01, 0x5cf4, 0x5dee, 0x5e2d, 0x5e2b, 0x5eab,\n  0x5ead, 0x5ea7, 0x5f31, 0x5f92, 0x5f91, 0x5f90, 0x6059, 0x6063,\n  0x6065, 0x6050, 0x6055, 0x606d, 0x6069, 0x606f, 0x6084, 0x609f,\n  0x609a, 0x608d, 0x6094, 0x608c, 0x6085, 0x6096, 0x6247, 0x62f3,\n  0x6308, 0x62ff, 0x634e, 0x633e, 0x632f, 0x6355, 0x6342, 0x6346,\n  0x634f, 0x6349, 0x633a, 0x6350, 0x633d, 0x632a, 0x632b, 0x6328,\n  0x634d, 0x634c, 0x6548, 0x6549, 0x6599, 0x65c1, 0x65c5, 0x6642,\n  0x6649, 0x664f, 0x6643, 0x6652, 0x664c, 0x6645, 0x6641, 0x66f8,\n  0x6714, 0x6715, 0x6717, 0x6821, 0x6838, 0x6848, 0x6846, 0x6853,\n  0x6839, 0x6842, 0x6854, 0x6829, 0x68b3, 0x6817, 0x684c, 0x6851,\n  0x683d, 0x67f4, 0x6850, 0x6840, 0x683c, 0x6843, 0x682a, 0x6845,\n  0x6813, 0x6818, 0x6841, 0x6b8a, 0x6b89, 0x6bb7, 0x6c23, 0x6c27,\n  0x6c28, 0x6c26, 0x6c24, 0x6cf0, 0x6d6a, 0x6d95, 0x6d88, 0x6d87,\n  0x6d66, 0x6d78, 0x6d77, 0x6d59, 0x6d93,\n  /* 0xaf */\n  0x6d6c, 0x6d89, 0x6d6e, 0x6d5a, 0x6d74, 0x6d69, 0x6d8c, 0x6d8a,\n  0x6d79, 0x6d85, 0x6d65, 0x6d94, 0x70ca, 0x70d8, 0x70e4, 0x70d9,\n  0x70c8, 0x70cf, 0x7239, 0x7279, 0x72fc, 0x72f9, 0x72fd, 0x72f8,\n  0x72f7, 0x7386, 0x73ed, 0x7409, 0x73ee, 0x73e0, 0x73ea, 0x73de,\n  0x7554, 0x755d, 0x755c, 0x755a, 0x7559, 0x75be, 0x75c5, 0x75c7,\n  0x75b2, 0x75b3, 0x75bd, 0x75bc, 0x75b9, 0x75c2, 0x75b8, 0x768b,\n  0x76b0, 0x76ca, 0x76cd, 0x76ce, 0x7729, 0x771f, 0x7720, 0x7728,\n  0x77e9, 0x7830, 0x7827, 0x7838, 0x781d, 0x7834, 0x7837, 0x7825,\n  0x782d, 0x7820, 0x781f, 0x7832, 0x7955, 0x7950, 0x7960, 0x795f,\n  0x7956, 0x795e, 0x795d, 0x7957, 0x795a, 0x79e4, 0x79e3, 0x79e7,\n  0x79df, 0x79e6, 0x79e9, 0x79d8, 0x7a84, 0x7a88, 0x7ad9, 0x7b06,\n  0x7b11, 0x7c89, 0x7d21, 0x7d17, 0x7d0b, 0x7d0a, 0x7d20, 0x7d22,\n  0x7d14, 0x7d10, 0x7d15, 0x7d1a, 0x7d1c, 0x7d0d, 0x7d19, 0x7d1b,\n  0x7f3a, 0x7f5f, 0x7f94, 0x7fc5, 0x7fc1, 0x8006, 0x8018, 0x8015,\n  0x8019, 0x8017, 0x803d, 0x803f, 0x80f1, 0x8102, 0x80f0, 0x8105,\n  0x80ed, 0x80f4, 0x8106, 0x80f8, 0x80f3, 0x8108, 0x80fd, 0x810a,\n  0x80fc, 0x80ef, 0x81ed, 0x81ec, 0x8200, 0x8210, 0x822a, 0x822b,\n  0x8228, 0x822c, 0x82bb, 0x832b, 0x8352, 0x8354, 0x834a, 0x8338,\n  0x8350, 0x8349, 0x8335, 0x8334, 0x834f, 0x8332, 0x8339, 0x8336,\n  0x8317, 0x8340, 0x8331, 0x8328, 0x8343,\n  /* 0xb0 */\n  0x8654, 0x868a, 0x86aa, 0x8693, 0x86a4, 0x86a9, 0x868c, 0x86a3,\n  0x869c, 0x8870, 0x8877, 0x8881, 0x8882, 0x887d, 0x8879, 0x8a18,\n  0x8a10, 0x8a0e, 0x8a0c, 0x8a15, 0x8a0a, 0x8a17, 0x8a13, 0x8a16,\n  0x8a0f, 0x8a11, 0x8c48, 0x8c7a, 0x8c79, 0x8ca1, 0x8ca2, 0x8d77,\n  0x8eac, 0x8ed2, 0x8ed4, 0x8ecf, 0x8fb1, 0x9001, 0x9006, 0x8ff7,\n  0x9000, 0x8ffa, 0x8ff4, 0x9003, 0x8ffd, 0x9005, 0x8ff8, 0x9095,\n  0x90e1, 0x90dd, 0x90e2, 0x9152, 0x914d, 0x914c, 0x91d8, 0x91dd,\n  0x91d7, 0x91dc, 0x91d9, 0x9583, 0x9662, 0x9663, 0x9661, 0x965b,\n  0x965d, 0x9664, 0x9658, 0x965e, 0x96bb, 0x98e2, 0x99ac, 0x9aa8,\n  0x9ad8, 0x9b25, 0x9b32, 0x9b3c, 0x4e7e, 0x507a, 0x507d, 0x505c,\n  0x5047, 0x5043, 0x504c, 0x505a, 0x5049, 0x5065, 0x5076, 0x504e,\n  0x5055, 0x5075, 0x5074, 0x5077, 0x504f, 0x500f, 0x506f, 0x506d,\n  0x515c, 0x5195, 0x51f0, 0x526a, 0x526f, 0x52d2, 0x52d9, 0x52d8,\n  0x52d5, 0x5310, 0x530f, 0x5319, 0x533f, 0x5340, 0x533e, 0x53c3,\n  0x66fc, 0x5546, 0x556a, 0x5566, 0x5544, 0x555e, 0x5561, 0x5543,\n  0x554a, 0x5531, 0x5556, 0x554f, 0x5555, 0x552f, 0x5564, 0x5538,\n  0x552e, 0x555c, 0x552c, 0x5563, 0x5533, 0x5541, 0x5557, 0x5708,\n  0x570b, 0x5709, 0x57df, 0x5805, 0x580a, 0x5806, 0x57e0, 0x57e4,\n  0x57fa, 0x5802, 0x5835, 0x57f7, 0x57f9, 0x5920, 0x5962, 0x5a36,\n  0x5a41, 0x5a49, 0x5a66, 0x5a6a, 0x5a40,\n  /* 0xb1 */\n  0x5a3c, 0x5a62, 0x5a5a, 0x5a46, 0x5a4a, 0x5b70, 0x5bc7, 0x5bc5,\n  0x5bc4, 0x5bc2, 0x5bbf, 0x5bc6, 0x5c09, 0x5c08, 0x5c07, 0x5c60,\n  0x5c5c, 0x5c5d, 0x5d07, 0x5d06, 0x5d0e, 0x5d1b, 0x5d16, 0x5d22,\n  0x5d11, 0x5d29, 0x5d14, 0x5d19, 0x5d24, 0x5d27, 0x5d17, 0x5de2,\n  0x5e38, 0x5e36, 0x5e33, 0x5e37, 0x5eb7, 0x5eb8, 0x5eb6, 0x5eb5,\n  0x5ebe, 0x5f35, 0x5f37, 0x5f57, 0x5f6c, 0x5f69, 0x5f6b, 0x5f97,\n  0x5f99, 0x5f9e, 0x5f98, 0x5fa1, 0x5fa0, 0x5f9c, 0x607f, 0x60a3,\n  0x6089, 0x60a0, 0x60a8, 0x60cb, 0x60b4, 0x60e6, 0x60bd, 0x60c5,\n  0x60bb, 0x60b5, 0x60dc, 0x60bc, 0x60d8, 0x60d5, 0x60c6, 0x60df,\n  0x60b8, 0x60da, 0x60c7, 0x621a, 0x621b, 0x6248, 0x63a0, 0x63a7,\n  0x6372, 0x6396, 0x63a2, 0x63a5, 0x6377, 0x6367, 0x6398, 0x63aa,\n  0x6371, 0x63a9, 0x6389, 0x6383, 0x639b, 0x636b, 0x63a8, 0x6384,\n  0x6388, 0x6399, 0x63a1, 0x63ac, 0x6392, 0x638f, 0x6380, 0x637b,\n  0x6369, 0x6368, 0x637a, 0x655d, 0x6556, 0x6551, 0x6559, 0x6557,\n  0x555f, 0x654f, 0x6558, 0x6555, 0x6554, 0x659c, 0x659b, 0x65ac,\n  0x65cf, 0x65cb, 0x65cc, 0x65ce, 0x665d, 0x665a, 0x6664, 0x6668,\n  0x6666, 0x665e, 0x66f9, 0x52d7, 0x671b, 0x6881, 0x68af, 0x68a2,\n  0x6893, 0x68b5, 0x687f, 0x6876, 0x68b1, 0x68a7, 0x6897, 0x68b0,\n  0x6883, 0x68c4, 0x68ad, 0x6886, 0x6885, 0x6894, 0x689d, 0x68a8,\n  0x689f, 0x68a1, 0x6882, 0x6b32, 0x6bba,\n  /* 0xb2 */\n  0x6beb, 0x6bec, 0x6c2b, 0x6d8e, 0x6dbc, 0x6df3, 0x6dd9, 0x6db2,\n  0x6de1, 0x6dcc, 0x6de4, 0x6dfb, 0x6dfa, 0x6e05, 0x6dc7, 0x6dcb,\n  0x6daf, 0x6dd1, 0x6dae, 0x6dde, 0x6df9, 0x6db8, 0x6df7, 0x6df5,\n  0x6dc5, 0x6dd2, 0x6e1a, 0x6db5, 0x6dda, 0x6deb, 0x6dd8, 0x6dea,\n  0x6df1, 0x6dee, 0x6de8, 0x6dc6, 0x6dc4, 0x6daa, 0x6dec, 0x6dbf,\n  0x6de6, 0x70f9, 0x7109, 0x710a, 0x70fd, 0x70ef, 0x723d, 0x727d,\n  0x7281, 0x731c, 0x731b, 0x7316, 0x7313, 0x7319, 0x7387, 0x7405,\n  0x740a, 0x7403, 0x7406, 0x73fe, 0x740d, 0x74e0, 0x74f6, 0x74f7,\n  0x751c, 0x7522, 0x7565, 0x7566, 0x7562, 0x7570, 0x758f, 0x75d4,\n  0x75d5, 0x75b5, 0x75ca, 0x75cd, 0x768e, 0x76d4, 0x76d2, 0x76db,\n  0x7737, 0x773e, 0x773c, 0x7736, 0x7738, 0x773a, 0x786b, 0x7843,\n  0x784e, 0x7965, 0x7968, 0x796d, 0x79fb, 0x7a92, 0x7a95, 0x7b20,\n  0x7b28, 0x7b1b, 0x7b2c, 0x7b26, 0x7b19, 0x7b1e, 0x7b2e, 0x7c92,\n  0x7c97, 0x7c95, 0x7d46, 0x7d43, 0x7d71, 0x7d2e, 0x7d39, 0x7d3c,\n  0x7d40, 0x7d30, 0x7d33, 0x7d44, 0x7d2f, 0x7d42, 0x7d32, 0x7d31,\n  0x7f3d, 0x7f9e, 0x7f9a, 0x7fcc, 0x7fce, 0x7fd2, 0x801c, 0x804a,\n  0x8046, 0x812f, 0x8116, 0x8123, 0x812b, 0x8129, 0x8130, 0x8124,\n  0x8202, 0x8235, 0x8237, 0x8236, 0x8239, 0x838e, 0x839e, 0x8398,\n  0x8378, 0x83a2, 0x8396, 0x83bd, 0x83ab, 0x8392, 0x838a, 0x8393,\n  0x8389, 0x83a0, 0x8377, 0x837b, 0x837c,\n  /* 0xb3 */\n  0x8386, 0x83a7, 0x8655, 0x5f6a, 0x86c7, 0x86c0, 0x86b6, 0x86c4,\n  0x86b5, 0x86c6, 0x86cb, 0x86b1, 0x86af, 0x86c9, 0x8853, 0x889e,\n  0x8888, 0x88ab, 0x8892, 0x8896, 0x888d, 0x888b, 0x8993, 0x898f,\n  0x8a2a, 0x8a1d, 0x8a23, 0x8a25, 0x8a31, 0x8a2d, 0x8a1f, 0x8a1b,\n  0x8a22, 0x8c49, 0x8c5a, 0x8ca9, 0x8cac, 0x8cab, 0x8ca8, 0x8caa,\n  0x8ca7, 0x8d67, 0x8d66, 0x8dbe, 0x8dba, 0x8edb, 0x8edf, 0x9019,\n  0x900d, 0x901a, 0x9017, 0x9023, 0x901f, 0x901d, 0x9010, 0x9015,\n  0x901e, 0x9020, 0x900f, 0x9022, 0x9016, 0x901b, 0x9014, 0x90e8,\n  0x90ed, 0x90fd, 0x9157, 0x91ce, 0x91f5, 0x91e6, 0x91e3, 0x91e7,\n  0x91ed, 0x91e9, 0x9589, 0x966a, 0x9675, 0x9673, 0x9678, 0x9670,\n  0x9674, 0x9676, 0x9677, 0x966c, 0x96c0, 0x96ea, 0x96e9, 0x7ae0,\n  0x7adf, 0x9802, 0x9803, 0x9b5a, 0x9ce5, 0x9e75, 0x9e7f, 0x9ea5,\n  0x9ebb, 0x50a2, 0x508d, 0x5085, 0x5099, 0x5091, 0x5080, 0x5096,\n  0x5098, 0x509a, 0x6700, 0x51f1, 0x5272, 0x5274, 0x5275, 0x5269,\n  0x52de, 0x52dd, 0x52db, 0x535a, 0x53a5, 0x557b, 0x5580, 0x55a7,\n  0x557c, 0x558a, 0x559d, 0x5598, 0x5582, 0x559c, 0x55aa, 0x5594,\n  0x5587, 0x558b, 0x5583, 0x55b3, 0x55ae, 0x559f, 0x553e, 0x55b2,\n  0x559a, 0x55bb, 0x55ac, 0x55b1, 0x557e, 0x5589, 0x55ab, 0x5599,\n  0x570d, 0x582f, 0x582a, 0x5834, 0x5824, 0x5830, 0x5831, 0x5821,\n  0x581d, 0x5820, 0x58f9, 0x58fa, 0x5960,\n  /* 0xb4 */\n  0x5a77, 0x5a9a, 0x5a7f, 0x5a92, 0x5a9b, 0x5aa7, 0x5b73, 0x5b71,\n  0x5bd2, 0x5bcc, 0x5bd3, 0x5bd0, 0x5c0a, 0x5c0b, 0x5c31, 0x5d4c,\n  0x5d50, 0x5d34, 0x5d47, 0x5dfd, 0x5e45, 0x5e3d, 0x5e40, 0x5e43,\n  0x5e7e, 0x5eca, 0x5ec1, 0x5ec2, 0x5ec4, 0x5f3c, 0x5f6d, 0x5fa9,\n  0x5faa, 0x5fa8, 0x60d1, 0x60e1, 0x60b2, 0x60b6, 0x60e0, 0x611c,\n  0x6123, 0x60fa, 0x6115, 0x60f0, 0x60fb, 0x60f4, 0x6168, 0x60f1,\n  0x610e, 0x60f6, 0x6109, 0x6100, 0x6112, 0x621f, 0x6249, 0x63a3,\n  0x638c, 0x63cf, 0x63c0, 0x63e9, 0x63c9, 0x63c6, 0x63cd, 0x63d2,\n  0x63e3, 0x63d0, 0x63e1, 0x63d6, 0x63ed, 0x63ee, 0x6376, 0x63f4,\n  0x63ea, 0x63db, 0x6452, 0x63da, 0x63f9, 0x655e, 0x6566, 0x6562,\n  0x6563, 0x6591, 0x6590, 0x65af, 0x666e, 0x6670, 0x6674, 0x6676,\n  0x666f, 0x6691, 0x667a, 0x667e, 0x6677, 0x66fe, 0x66ff, 0x671f,\n  0x671d, 0x68fa, 0x68d5, 0x68e0, 0x68d8, 0x68d7, 0x6905, 0x68df,\n  0x68f5, 0x68ee, 0x68e7, 0x68f9, 0x68d2, 0x68f2, 0x68e3, 0x68cb,\n  0x68cd, 0x690d, 0x6912, 0x690e, 0x68c9, 0x68da, 0x696e, 0x68fb,\n  0x6b3e, 0x6b3a, 0x6b3d, 0x6b98, 0x6b96, 0x6bbc, 0x6bef, 0x6c2e,\n  0x6c2f, 0x6c2c, 0x6e2f, 0x6e38, 0x6e54, 0x6e21, 0x6e32, 0x6e67,\n  0x6e4a, 0x6e20, 0x6e25, 0x6e23, 0x6e1b, 0x6e5b, 0x6e58, 0x6e24,\n  0x6e56, 0x6e6e, 0x6e2d, 0x6e26, 0x6e6f, 0x6e34, 0x6e4d, 0x6e3a,\n  0x6e2c, 0x6e43, 0x6e1d, 0x6e3e, 0x6ecb,\n  /* 0xb5 */\n  0x6e89, 0x6e19, 0x6e4e, 0x6e63, 0x6e44, 0x6e72, 0x6e69, 0x6e5f,\n  0x7119, 0x711a, 0x7126, 0x7130, 0x7121, 0x7136, 0x716e, 0x711c,\n  0x724c, 0x7284, 0x7280, 0x7336, 0x7325, 0x7334, 0x7329, 0x743a,\n  0x742a, 0x7433, 0x7422, 0x7425, 0x7435, 0x7436, 0x7434, 0x742f,\n  0x741b, 0x7426, 0x7428, 0x7525, 0x7526, 0x756b, 0x756a, 0x75e2,\n  0x75db, 0x75e3, 0x75d9, 0x75d8, 0x75de, 0x75e0, 0x767b, 0x767c,\n  0x7696, 0x7693, 0x76b4, 0x76dc, 0x774f, 0x77ed, 0x785d, 0x786c,\n  0x786f, 0x7a0d, 0x7a08, 0x7a0b, 0x7a05, 0x7a00, 0x7a98, 0x7a97,\n  0x7a96, 0x7ae5, 0x7ae3, 0x7b49, 0x7b56, 0x7b46, 0x7b50, 0x7b52,\n  0x7b54, 0x7b4d, 0x7b4b, 0x7b4f, 0x7b51, 0x7c9f, 0x7ca5, 0x7d5e,\n  0x7d50, 0x7d68, 0x7d55, 0x7d2b, 0x7d6e, 0x7d72, 0x7d61, 0x7d66,\n  0x7d62, 0x7d70, 0x7d73, 0x5584, 0x7fd4, 0x7fd5, 0x800b, 0x8052,\n  0x8085, 0x8155, 0x8154, 0x814b, 0x8151, 0x814e, 0x8139, 0x8146,\n  0x813e, 0x814c, 0x8153, 0x8174, 0x8212, 0x821c, 0x83e9, 0x8403,\n  0x83f8, 0x840d, 0x83e0, 0x83c5, 0x840b, 0x83c1, 0x83ef, 0x83f1,\n  0x83f4, 0x8457, 0x840a, 0x83f0, 0x840c, 0x83cc, 0x83fd, 0x83f2,\n  0x83ca, 0x8438, 0x840e, 0x8404, 0x83dc, 0x8407, 0x83d4, 0x83df,\n  0x865b, 0x86df, 0x86d9, 0x86ed, 0x86d4, 0x86db, 0x86e4, 0x86d0,\n  0x86de, 0x8857, 0x88c1, 0x88c2, 0x88b1, 0x8983, 0x8996, 0x8a3b,\n  0x8a60, 0x8a55, 0x8a5e, 0x8a3c, 0x8a41,\n  /* 0xb6 */\n  0x8a54, 0x8a5b, 0x8a50, 0x8a46, 0x8a34, 0x8a3a, 0x8a36, 0x8a56,\n  0x8c61, 0x8c82, 0x8caf, 0x8cbc, 0x8cb3, 0x8cbd, 0x8cc1, 0x8cbb,\n  0x8cc0, 0x8cb4, 0x8cb7, 0x8cb6, 0x8cbf, 0x8cb8, 0x8d8a, 0x8d85,\n  0x8d81, 0x8dce, 0x8ddd, 0x8dcb, 0x8dda, 0x8dd1, 0x8dcc, 0x8ddb,\n  0x8dc6, 0x8efb, 0x8ef8, 0x8efc, 0x8f9c, 0x902e, 0x9035, 0x9031,\n  0x9038, 0x9032, 0x9036, 0x9102, 0x90f5, 0x9109, 0x90fe, 0x9163,\n  0x9165, 0x91cf, 0x9214, 0x9215, 0x9223, 0x9209, 0x921e, 0x920d,\n  0x9210, 0x9207, 0x9211, 0x9594, 0x958f, 0x958b, 0x9591, 0x9593,\n  0x9592, 0x958e, 0x968a, 0x968e, 0x968b, 0x967d, 0x9685, 0x9686,\n  0x968d, 0x9672, 0x9684, 0x96c1, 0x96c5, 0x96c4, 0x96c6, 0x96c7,\n  0x96ef, 0x96f2, 0x97cc, 0x9805, 0x9806, 0x9808, 0x98e7, 0x98ea,\n  0x98ef, 0x98e9, 0x98f2, 0x98ed, 0x99ae, 0x99ad, 0x9ec3, 0x9ecd,\n  0x9ed1, 0x4e82, 0x50ad, 0x50b5, 0x50b2, 0x50b3, 0x50c5, 0x50be,\n  0x50ac, 0x50b7, 0x50bb, 0x50af, 0x50c7, 0x527f, 0x5277, 0x527d,\n  0x52df, 0x52e6, 0x52e4, 0x52e2, 0x52e3, 0x532f, 0x55df, 0x55e8,\n  0x55d3, 0x55e6, 0x55ce, 0x55dc, 0x55c7, 0x55d1, 0x55e3, 0x55e4,\n  0x55ef, 0x55da, 0x55e1, 0x55c5, 0x55c6, 0x55e5, 0x55c9, 0x5712,\n  0x5713, 0x585e, 0x5851, 0x5858, 0x5857, 0x585a, 0x5854, 0x586b,\n  0x584c, 0x586d, 0x584a, 0x5862, 0x5852, 0x584b, 0x5967, 0x5ac1,\n  0x5ac9, 0x5acc, 0x5abe, 0x5abd, 0x5abc,\n  /* 0xb7 */\n  0x5ab3, 0x5ac2, 0x5ab2, 0x5d69, 0x5d6f, 0x5e4c, 0x5e79, 0x5ec9,\n  0x5ec8, 0x5f12, 0x5f59, 0x5fac, 0x5fae, 0x611a, 0x610f, 0x6148,\n  0x611f, 0x60f3, 0x611b, 0x60f9, 0x6101, 0x6108, 0x614e, 0x614c,\n  0x6144, 0x614d, 0x613e, 0x6134, 0x6127, 0x610d, 0x6106, 0x6137,\n  0x6221, 0x6222, 0x6413, 0x643e, 0x641e, 0x642a, 0x642d, 0x643d,\n  0x642c, 0x640f, 0x641c, 0x6414, 0x640d, 0x6436, 0x6416, 0x6417,\n  0x6406, 0x656c, 0x659f, 0x65b0, 0x6697, 0x6689, 0x6687, 0x6688,\n  0x6696, 0x6684, 0x6698, 0x668d, 0x6703, 0x6994, 0x696d, 0x695a,\n  0x6977, 0x6960, 0x6954, 0x6975, 0x6930, 0x6982, 0x694a, 0x6968,\n  0x696b, 0x695e, 0x6953, 0x6979, 0x6986, 0x695d, 0x6963, 0x695b,\n  0x6b47, 0x6b72, 0x6bc0, 0x6bbf, 0x6bd3, 0x6bfd, 0x6ea2, 0x6eaf,\n  0x6ed3, 0x6eb6, 0x6ec2, 0x6e90, 0x6e9d, 0x6ec7, 0x6ec5, 0x6ea5,\n  0x6e98, 0x6ebc, 0x6eba, 0x6eab, 0x6ed1, 0x6e96, 0x6e9c, 0x6ec4,\n  0x6ed4, 0x6eaa, 0x6ea7, 0x6eb4, 0x714e, 0x7159, 0x7169, 0x7164,\n  0x7149, 0x7167, 0x715c, 0x716c, 0x7166, 0x714c, 0x7165, 0x715e,\n  0x7146, 0x7168, 0x7156, 0x723a, 0x7252, 0x7337, 0x7345, 0x733f,\n  0x733e, 0x746f, 0x745a, 0x7455, 0x745f, 0x745e, 0x7441, 0x743f,\n  0x7459, 0x745b, 0x745c, 0x7576, 0x7578, 0x7600, 0x75f0, 0x7601,\n  0x75f2, 0x75f1, 0x75fa, 0x75ff, 0x75f4, 0x75f3, 0x76de, 0x76df,\n  0x775b, 0x776b, 0x7766, 0x775e, 0x7763,\n  /* 0xb8 */\n  0x7779, 0x776a, 0x776c, 0x775c, 0x7765, 0x7768, 0x7762, 0x77ee,\n  0x788e, 0x78b0, 0x7897, 0x7898, 0x788c, 0x7889, 0x787c, 0x7891,\n  0x7893, 0x787f, 0x797a, 0x797f, 0x7981, 0x842c, 0x79bd, 0x7a1c,\n  0x7a1a, 0x7a20, 0x7a14, 0x7a1f, 0x7a1e, 0x7a9f, 0x7aa0, 0x7b77,\n  0x7bc0, 0x7b60, 0x7b6e, 0x7b67, 0x7cb1, 0x7cb3, 0x7cb5, 0x7d93,\n  0x7d79, 0x7d91, 0x7d81, 0x7d8f, 0x7d5b, 0x7f6e, 0x7f69, 0x7f6a,\n  0x7f72, 0x7fa9, 0x7fa8, 0x7fa4, 0x8056, 0x8058, 0x8086, 0x8084,\n  0x8171, 0x8170, 0x8178, 0x8165, 0x816e, 0x8173, 0x816b, 0x8179,\n  0x817a, 0x8166, 0x8205, 0x8247, 0x8482, 0x8477, 0x843d, 0x8431,\n  0x8475, 0x8466, 0x846b, 0x8449, 0x846c, 0x845b, 0x843c, 0x8435,\n  0x8461, 0x8463, 0x8469, 0x846d, 0x8446, 0x865e, 0x865c, 0x865f,\n  0x86f9, 0x8713, 0x8708, 0x8707, 0x8700, 0x86fe, 0x86fb, 0x8702,\n  0x8703, 0x8706, 0x870a, 0x8859, 0x88df, 0x88d4, 0x88d9, 0x88dc,\n  0x88d8, 0x88dd, 0x88e1, 0x88ca, 0x88d5, 0x88d2, 0x899c, 0x89e3,\n  0x8a6b, 0x8a72, 0x8a73, 0x8a66, 0x8a69, 0x8a70, 0x8a87, 0x8a7c,\n  0x8a63, 0x8aa0, 0x8a71, 0x8a85, 0x8a6d, 0x8a62, 0x8a6e, 0x8a6c,\n  0x8a79, 0x8a7b, 0x8a3e, 0x8a68, 0x8c62, 0x8c8a, 0x8c89, 0x8cca,\n  0x8cc7, 0x8cc8, 0x8cc4, 0x8cb2, 0x8cc3, 0x8cc2, 0x8cc5, 0x8de1,\n  0x8ddf, 0x8de8, 0x8def, 0x8df3, 0x8dfa, 0x8dea, 0x8de4, 0x8de6,\n  0x8eb2, 0x8f03, 0x8f09, 0x8efe, 0x8f0a,\n  /* 0xb9 */\n  0x8f9f, 0x8fb2, 0x904b, 0x904a, 0x9053, 0x9042, 0x9054, 0x903c,\n  0x9055, 0x9050, 0x9047, 0x904f, 0x904e, 0x904d, 0x9051, 0x903e,\n  0x9041, 0x9112, 0x9117, 0x916c, 0x916a, 0x9169, 0x91c9, 0x9237,\n  0x9257, 0x9238, 0x923d, 0x9240, 0x923e, 0x925b, 0x924b, 0x9264,\n  0x9251, 0x9234, 0x9249, 0x924d, 0x9245, 0x9239, 0x923f, 0x925a,\n  0x9598, 0x9698, 0x9694, 0x9695, 0x96cd, 0x96cb, 0x96c9, 0x96ca,\n  0x96f7, 0x96fb, 0x96f9, 0x96f6, 0x9756, 0x9774, 0x9776, 0x9810,\n  0x9811, 0x9813, 0x980a, 0x9812, 0x980c, 0x98fc, 0x98f4, 0x98fd,\n  0x98fe, 0x99b3, 0x99b1, 0x99b4, 0x9ae1, 0x9ce9, 0x9e82, 0x9f0e,\n  0x9f13, 0x9f20, 0x50e7, 0x50ee, 0x50e5, 0x50d6, 0x50ed, 0x50da,\n  0x50d5, 0x50cf, 0x50d1, 0x50f1, 0x50ce, 0x50e9, 0x5162, 0x51f3,\n  0x5283, 0x5282, 0x5331, 0x53ad, 0x55fe, 0x5600, 0x561b, 0x5617,\n  0x55fd, 0x5614, 0x5606, 0x5609, 0x560d, 0x560e, 0x55f7, 0x5616,\n  0x561f, 0x5608, 0x5610, 0x55f6, 0x5718, 0x5716, 0x5875, 0x587e,\n  0x5883, 0x5893, 0x588a, 0x5879, 0x5885, 0x587d, 0x58fd, 0x5925,\n  0x5922, 0x5924, 0x596a, 0x5969, 0x5ae1, 0x5ae6, 0x5ae9, 0x5ad7,\n  0x5ad6, 0x5ad8, 0x5ae3, 0x5b75, 0x5bde, 0x5be7, 0x5be1, 0x5be5,\n  0x5be6, 0x5be8, 0x5be2, 0x5be4, 0x5bdf, 0x5c0d, 0x5c62, 0x5d84,\n  0x5d87, 0x5e5b, 0x5e63, 0x5e55, 0x5e57, 0x5e54, 0x5ed3, 0x5ed6,\n  0x5f0a, 0x5f46, 0x5f70, 0x5fb9, 0x6147,\n  /* 0xba */\n  0x613f, 0x614b, 0x6177, 0x6162, 0x6163, 0x615f, 0x615a, 0x6158,\n  0x6175, 0x622a, 0x6487, 0x6458, 0x6454, 0x64a4, 0x6478, 0x645f,\n  0x647a, 0x6451, 0x6467, 0x6434, 0x646d, 0x647b, 0x6572, 0x65a1,\n  0x65d7, 0x65d6, 0x66a2, 0x66a8, 0x669d, 0x699c, 0x69a8, 0x6995,\n  0x69c1, 0x69ae, 0x69d3, 0x69cb, 0x699b, 0x69b7, 0x69bb, 0x69ab,\n  0x69b4, 0x69d0, 0x69cd, 0x69ad, 0x69cc, 0x69a6, 0x69c3, 0x69a3,\n  0x6b49, 0x6b4c, 0x6c33, 0x6f33, 0x6f14, 0x6efe, 0x6f13, 0x6ef4,\n  0x6f29, 0x6f3e, 0x6f20, 0x6f2c, 0x6f0f, 0x6f02, 0x6f22, 0x6eff,\n  0x6eef, 0x6f06, 0x6f31, 0x6f38, 0x6f32, 0x6f23, 0x6f15, 0x6f2b,\n  0x6f2f, 0x6f88, 0x6f2a, 0x6eec, 0x6f01, 0x6ef2, 0x6ecc, 0x6ef7,\n  0x7194, 0x7199, 0x717d, 0x718a, 0x7184, 0x7192, 0x723e, 0x7292,\n  0x7296, 0x7344, 0x7350, 0x7464, 0x7463, 0x746a, 0x7470, 0x746d,\n  0x7504, 0x7591, 0x7627, 0x760d, 0x760b, 0x7609, 0x7613, 0x76e1,\n  0x76e3, 0x7784, 0x777d, 0x777f, 0x7761, 0x78c1, 0x789f, 0x78a7,\n  0x78b3, 0x78a9, 0x78a3, 0x798e, 0x798f, 0x798d, 0x7a2e, 0x7a31,\n  0x7aaa, 0x7aa9, 0x7aed, 0x7aef, 0x7ba1, 0x7b95, 0x7b8b, 0x7b75,\n  0x7b97, 0x7b9d, 0x7b94, 0x7b8f, 0x7bb8, 0x7b87, 0x7b84, 0x7cb9,\n  0x7cbd, 0x7cbe, 0x7dbb, 0x7db0, 0x7d9c, 0x7dbd, 0x7dbe, 0x7da0,\n  0x7dca, 0x7db4, 0x7db2, 0x7db1, 0x7dba, 0x7da2, 0x7dbf, 0x7db5,\n  0x7db8, 0x7dad, 0x7dd2, 0x7dc7, 0x7dac,\n  /* 0xbb */\n  0x7f70, 0x7fe0, 0x7fe1, 0x7fdf, 0x805e, 0x805a, 0x8087, 0x8150,\n  0x8180, 0x818f, 0x8188, 0x818a, 0x817f, 0x8182, 0x81e7, 0x81fa,\n  0x8207, 0x8214, 0x821e, 0x824b, 0x84c9, 0x84bf, 0x84c6, 0x84c4,\n  0x8499, 0x849e, 0x84b2, 0x849c, 0x84cb, 0x84b8, 0x84c0, 0x84d3,\n  0x8490, 0x84bc, 0x84d1, 0x84ca, 0x873f, 0x871c, 0x873b, 0x8722,\n  0x8725, 0x8734, 0x8718, 0x8755, 0x8737, 0x8729, 0x88f3, 0x8902,\n  0x88f4, 0x88f9, 0x88f8, 0x88fd, 0x88e8, 0x891a, 0x88ef, 0x8aa6,\n  0x8a8c, 0x8a9e, 0x8aa3, 0x8a8d, 0x8aa1, 0x8a93, 0x8aa4, 0x8aaa,\n  0x8aa5, 0x8aa8, 0x8a98, 0x8a91, 0x8a9a, 0x8aa7, 0x8c6a, 0x8c8d,\n  0x8c8c, 0x8cd3, 0x8cd1, 0x8cd2, 0x8d6b, 0x8d99, 0x8d95, 0x8dfc,\n  0x8f14, 0x8f12, 0x8f15, 0x8f13, 0x8fa3, 0x9060, 0x9058, 0x905c,\n  0x9063, 0x9059, 0x905e, 0x9062, 0x905d, 0x905b, 0x9119, 0x9118,\n  0x911e, 0x9175, 0x9178, 0x9177, 0x9174, 0x9278, 0x9280, 0x9285,\n  0x9298, 0x9296, 0x927b, 0x9293, 0x929c, 0x92a8, 0x927c, 0x9291,\n  0x95a1, 0x95a8, 0x95a9, 0x95a3, 0x95a5, 0x95a4, 0x9699, 0x969c,\n  0x969b, 0x96cc, 0x96d2, 0x9700, 0x977c, 0x9785, 0x97f6, 0x9817,\n  0x9818, 0x98af, 0x98b1, 0x9903, 0x9905, 0x990c, 0x9909, 0x99c1,\n  0x9aaf, 0x9ab0, 0x9ae6, 0x9b41, 0x9b42, 0x9cf4, 0x9cf6, 0x9cf3,\n  0x9ebc, 0x9f3b, 0x9f4a, 0x5104, 0x5100, 0x50fb, 0x50f5, 0x50f9,\n  0x5102, 0x5108, 0x5109, 0x5105, 0x51dc,\n  /* 0xbc */\n  0x5287, 0x5288, 0x5289, 0x528d, 0x528a, 0x52f0, 0x53b2, 0x562e,\n  0x563b, 0x5639, 0x5632, 0x563f, 0x5634, 0x5629, 0x5653, 0x564e,\n  0x5657, 0x5674, 0x5636, 0x562f, 0x5630, 0x5880, 0x589f, 0x589e,\n  0x58b3, 0x589c, 0x58ae, 0x58a9, 0x58a6, 0x596d, 0x5b09, 0x5afb,\n  0x5b0b, 0x5af5, 0x5b0c, 0x5b08, 0x5bee, 0x5bec, 0x5be9, 0x5beb,\n  0x5c64, 0x5c65, 0x5d9d, 0x5d94, 0x5e62, 0x5e5f, 0x5e61, 0x5ee2,\n  0x5eda, 0x5edf, 0x5edd, 0x5ee3, 0x5ee0, 0x5f48, 0x5f71, 0x5fb7,\n  0x5fb5, 0x6176, 0x6167, 0x616e, 0x615d, 0x6155, 0x6182, 0x617c,\n  0x6170, 0x616b, 0x617e, 0x61a7, 0x6190, 0x61ab, 0x618e, 0x61ac,\n  0x619a, 0x61a4, 0x6194, 0x61ae, 0x622e, 0x6469, 0x646f, 0x6479,\n  0x649e, 0x64b2, 0x6488, 0x6490, 0x64b0, 0x64a5, 0x6493, 0x6495,\n  0x64a9, 0x6492, 0x64ae, 0x64ad, 0x64ab, 0x649a, 0x64ac, 0x6499,\n  0x64a2, 0x64b3, 0x6575, 0x6577, 0x6578, 0x66ae, 0x66ab, 0x66b4,\n  0x66b1, 0x6a23, 0x6a1f, 0x69e8, 0x6a01, 0x6a1e, 0x6a19, 0x69fd,\n  0x6a21, 0x6a13, 0x6a0a, 0x69f3, 0x6a02, 0x6a05, 0x69ed, 0x6a11,\n  0x6b50, 0x6b4e, 0x6ba4, 0x6bc5, 0x6bc6, 0x6f3f, 0x6f7c, 0x6f84,\n  0x6f51, 0x6f66, 0x6f54, 0x6f86, 0x6f6d, 0x6f5b, 0x6f78, 0x6f6e,\n  0x6f8e, 0x6f7a, 0x6f70, 0x6f64, 0x6f97, 0x6f58, 0x6ed5, 0x6f6f,\n  0x6f60, 0x6f5f, 0x719f, 0x71ac, 0x71b1, 0x71a8, 0x7256, 0x729b,\n  0x734e, 0x7357, 0x7469, 0x748b, 0x7483,\n  /* 0xbd */\n  0x747e, 0x7480, 0x757f, 0x7620, 0x7629, 0x761f, 0x7624, 0x7626,\n  0x7621, 0x7622, 0x769a, 0x76ba, 0x76e4, 0x778e, 0x7787, 0x778c,\n  0x7791, 0x778b, 0x78cb, 0x78c5, 0x78ba, 0x78ca, 0x78be, 0x78d5,\n  0x78bc, 0x78d0, 0x7a3f, 0x7a3c, 0x7a40, 0x7a3d, 0x7a37, 0x7a3b,\n  0x7aaf, 0x7aae, 0x7bad, 0x7bb1, 0x7bc4, 0x7bb4, 0x7bc6, 0x7bc7,\n  0x7bc1, 0x7ba0, 0x7bcc, 0x7cca, 0x7de0, 0x7df4, 0x7def, 0x7dfb,\n  0x7dd8, 0x7dec, 0x7ddd, 0x7de8, 0x7de3, 0x7dda, 0x7dde, 0x7de9,\n  0x7d9e, 0x7dd9, 0x7df2, 0x7df9, 0x7f75, 0x7f77, 0x7faf, 0x7fe9,\n  0x8026, 0x819b, 0x819c, 0x819d, 0x81a0, 0x819a, 0x8198, 0x8517,\n  0x853d, 0x851a, 0x84ee, 0x852c, 0x852d, 0x8513, 0x8511, 0x8523,\n  0x8521, 0x8514, 0x84ec, 0x8525, 0x84ff, 0x8506, 0x8782, 0x8774,\n  0x8776, 0x8760, 0x8766, 0x8778, 0x8768, 0x8759, 0x8757, 0x874c,\n  0x8753, 0x885b, 0x885d, 0x8910, 0x8907, 0x8912, 0x8913, 0x8915,\n  0x890a, 0x8abc, 0x8ad2, 0x8ac7, 0x8ac4, 0x8a95, 0x8acb, 0x8af8,\n  0x8ab2, 0x8ac9, 0x8ac2, 0x8abf, 0x8ab0, 0x8ad6, 0x8acd, 0x8ab6,\n  0x8ab9, 0x8adb, 0x8c4c, 0x8c4e, 0x8c6c, 0x8ce0, 0x8cde, 0x8ce6,\n  0x8ce4, 0x8cec, 0x8ced, 0x8ce2, 0x8ce3, 0x8cdc, 0x8cea, 0x8ce1,\n  0x8d6d, 0x8d9f, 0x8da3, 0x8e2b, 0x8e10, 0x8e1d, 0x8e22, 0x8e0f,\n  0x8e29, 0x8e1f, 0x8e21, 0x8e1e, 0x8eba, 0x8f1d, 0x8f1b, 0x8f1f,\n  0x8f29, 0x8f26, 0x8f2a, 0x8f1c, 0x8f1e,\n  /* 0xbe */\n  0x8f25, 0x9069, 0x906e, 0x9068, 0x906d, 0x9077, 0x9130, 0x912d,\n  0x9127, 0x9131, 0x9187, 0x9189, 0x918b, 0x9183, 0x92c5, 0x92bb,\n  0x92b7, 0x92ea, 0x92ac, 0x92e4, 0x92c1, 0x92b3, 0x92bc, 0x92d2,\n  0x92c7, 0x92f0, 0x92b2, 0x95ad, 0x95b1, 0x9704, 0x9706, 0x9707,\n  0x9709, 0x9760, 0x978d, 0x978b, 0x978f, 0x9821, 0x982b, 0x981c,\n  0x98b3, 0x990a, 0x9913, 0x9912, 0x9918, 0x99dd, 0x99d0, 0x99df,\n  0x99db, 0x99d1, 0x99d5, 0x99d2, 0x99d9, 0x9ab7, 0x9aee, 0x9aef,\n  0x9b27, 0x9b45, 0x9b44, 0x9b77, 0x9b6f, 0x9d06, 0x9d09, 0x9d03,\n  0x9ea9, 0x9ebe, 0x9ece, 0x58a8, 0x9f52, 0x5112, 0x5118, 0x5114,\n  0x5110, 0x5115, 0x5180, 0x51aa, 0x51dd, 0x5291, 0x5293, 0x52f3,\n  0x5659, 0x566b, 0x5679, 0x5669, 0x5664, 0x5678, 0x566a, 0x5668,\n  0x5665, 0x5671, 0x566f, 0x566c, 0x5662, 0x5676, 0x58c1, 0x58be,\n  0x58c7, 0x58c5, 0x596e, 0x5b1d, 0x5b34, 0x5b78, 0x5bf0, 0x5c0e,\n  0x5f4a, 0x61b2, 0x6191, 0x61a9, 0x618a, 0x61cd, 0x61b6, 0x61be,\n  0x61ca, 0x61c8, 0x6230, 0x64c5, 0x64c1, 0x64cb, 0x64bb, 0x64bc,\n  0x64da, 0x64c4, 0x64c7, 0x64c2, 0x64cd, 0x64bf, 0x64d2, 0x64d4,\n  0x64be, 0x6574, 0x66c6, 0x66c9, 0x66b9, 0x66c4, 0x66c7, 0x66b8,\n  0x6a3d, 0x6a38, 0x6a3a, 0x6a59, 0x6a6b, 0x6a58, 0x6a39, 0x6a44,\n  0x6a62, 0x6a61, 0x6a4b, 0x6a47, 0x6a35, 0x6a5f, 0x6a48, 0x6b59,\n  0x6b77, 0x6c05, 0x6fc2, 0x6fb1, 0x6fa1,\n  /* 0xbf */\n  0x6fc3, 0x6fa4, 0x6fc1, 0x6fa7, 0x6fb3, 0x6fc0, 0x6fb9, 0x6fb6,\n  0x6fa6, 0x6fa0, 0x6fb4, 0x71be, 0x71c9, 0x71d0, 0x71d2, 0x71c8,\n  0x71d5, 0x71b9, 0x71ce, 0x71d9, 0x71dc, 0x71c3, 0x71c4, 0x7368,\n  0x749c, 0x74a3, 0x7498, 0x749f, 0x749e, 0x74e2, 0x750c, 0x750d,\n  0x7634, 0x7638, 0x763a, 0x76e7, 0x76e5, 0x77a0, 0x779e, 0x779f,\n  0x77a5, 0x78e8, 0x78da, 0x78ec, 0x78e7, 0x79a6, 0x7a4d, 0x7a4e,\n  0x7a46, 0x7a4c, 0x7a4b, 0x7aba, 0x7bd9, 0x7c11, 0x7bc9, 0x7be4,\n  0x7bdb, 0x7be1, 0x7be9, 0x7be6, 0x7cd5, 0x7cd6, 0x7e0a, 0x7e11,\n  0x7e08, 0x7e1b, 0x7e23, 0x7e1e, 0x7e1d, 0x7e09, 0x7e10, 0x7f79,\n  0x7fb2, 0x7ff0, 0x7ff1, 0x7fee, 0x8028, 0x81b3, 0x81a9, 0x81a8,\n  0x81fb, 0x8208, 0x8258, 0x8259, 0x854a, 0x8559, 0x8548, 0x8568,\n  0x8569, 0x8543, 0x8549, 0x856d, 0x856a, 0x855e, 0x8783, 0x879f,\n  0x879e, 0x87a2, 0x878d, 0x8861, 0x892a, 0x8932, 0x8925, 0x892b,\n  0x8921, 0x89aa, 0x89a6, 0x8ae6, 0x8afa, 0x8aeb, 0x8af1, 0x8b00,\n  0x8adc, 0x8ae7, 0x8aee, 0x8afe, 0x8b01, 0x8b02, 0x8af7, 0x8aed,\n  0x8af3, 0x8af6, 0x8afc, 0x8c6b, 0x8c6d, 0x8c93, 0x8cf4, 0x8e44,\n  0x8e31, 0x8e34, 0x8e42, 0x8e39, 0x8e35, 0x8f3b, 0x8f2f, 0x8f38,\n  0x8f33, 0x8fa8, 0x8fa6, 0x9075, 0x9074, 0x9078, 0x9072, 0x907c,\n  0x907a, 0x9134, 0x9192, 0x9320, 0x9336, 0x92f8, 0x9333, 0x932f,\n  0x9322, 0x92fc, 0x932b, 0x9304, 0x931a,\n  /* 0xc0 */\n  0x9310, 0x9326, 0x9321, 0x9315, 0x932e, 0x9319, 0x95bb, 0x96a7,\n  0x96a8, 0x96aa, 0x96d5, 0x970e, 0x9711, 0x9716, 0x970d, 0x9713,\n  0x970f, 0x975b, 0x975c, 0x9766, 0x9798, 0x9830, 0x9838, 0x983b,\n  0x9837, 0x982d, 0x9839, 0x9824, 0x9910, 0x9928, 0x991e, 0x991b,\n  0x9921, 0x991a, 0x99ed, 0x99e2, 0x99f1, 0x9ab8, 0x9abc, 0x9afb,\n  0x9aed, 0x9b28, 0x9b91, 0x9d15, 0x9d23, 0x9d26, 0x9d28, 0x9d12,\n  0x9d1b, 0x9ed8, 0x9ed4, 0x9f8d, 0x9f9c, 0x512a, 0x511f, 0x5121,\n  0x5132, 0x52f5, 0x568e, 0x5680, 0x5690, 0x5685, 0x5687, 0x568f,\n  0x58d5, 0x58d3, 0x58d1, 0x58ce, 0x5b30, 0x5b2a, 0x5b24, 0x5b7a,\n  0x5c37, 0x5c68, 0x5dbc, 0x5dba, 0x5dbd, 0x5db8, 0x5e6b, 0x5f4c,\n  0x5fbd, 0x61c9, 0x61c2, 0x61c7, 0x61e6, 0x61cb, 0x6232, 0x6234,\n  0x64ce, 0x64ca, 0x64d8, 0x64e0, 0x64f0, 0x64e6, 0x64ec, 0x64f1,\n  0x64e2, 0x64ed, 0x6582, 0x6583, 0x66d9, 0x66d6, 0x6a80, 0x6a94,\n  0x6a84, 0x6aa2, 0x6a9c, 0x6adb, 0x6aa3, 0x6a7e, 0x6a97, 0x6a90,\n  0x6aa0, 0x6b5c, 0x6bae, 0x6bda, 0x6c08, 0x6fd8, 0x6ff1, 0x6fdf,\n  0x6fe0, 0x6fdb, 0x6fe4, 0x6feb, 0x6fef, 0x6f80, 0x6fec, 0x6fe1,\n  0x6fe9, 0x6fd5, 0x6fee, 0x6ff0, 0x71e7, 0x71df, 0x71ee, 0x71e6,\n  0x71e5, 0x71ed, 0x71ec, 0x71f4, 0x71e0, 0x7235, 0x7246, 0x7370,\n  0x7372, 0x74a9, 0x74b0, 0x74a6, 0x74a8, 0x7646, 0x7642, 0x764c,\n  0x76ea, 0x77b3, 0x77aa, 0x77b0, 0x77ac,\n  /* 0xc1 */\n  0x77a7, 0x77ad, 0x77ef, 0x78f7, 0x78fa, 0x78f4, 0x78ef, 0x7901,\n  0x79a7, 0x79aa, 0x7a57, 0x7abf, 0x7c07, 0x7c0d, 0x7bfe, 0x7bf7,\n  0x7c0c, 0x7be0, 0x7ce0, 0x7cdc, 0x7cde, 0x7ce2, 0x7cdf, 0x7cd9,\n  0x7cdd, 0x7e2e, 0x7e3e, 0x7e46, 0x7e37, 0x7e32, 0x7e43, 0x7e2b,\n  0x7e3d, 0x7e31, 0x7e45, 0x7e41, 0x7e34, 0x7e39, 0x7e48, 0x7e35,\n  0x7e3f, 0x7e2f, 0x7f44, 0x7ff3, 0x7ffc, 0x8071, 0x8072, 0x8070,\n  0x806f, 0x8073, 0x81c6, 0x81c3, 0x81ba, 0x81c2, 0x81c0, 0x81bf,\n  0x81bd, 0x81c9, 0x81be, 0x81e8, 0x8209, 0x8271, 0x85aa, 0x8584,\n  0x857e, 0x859c, 0x8591, 0x8594, 0x85af, 0x859b, 0x8587, 0x85a8,\n  0x858a, 0x8667, 0x87c0, 0x87d1, 0x87b3, 0x87d2, 0x87c6, 0x87ab,\n  0x87bb, 0x87ba, 0x87c8, 0x87cb, 0x893b, 0x8936, 0x8944, 0x8938,\n  0x893d, 0x89ac, 0x8b0e, 0x8b17, 0x8b19, 0x8b1b, 0x8b0a, 0x8b20,\n  0x8b1d, 0x8b04, 0x8b10, 0x8c41, 0x8c3f, 0x8c73, 0x8cfa, 0x8cfd,\n  0x8cfc, 0x8cf8, 0x8cfb, 0x8da8, 0x8e49, 0x8e4b, 0x8e48, 0x8e4a,\n  0x8f44, 0x8f3e, 0x8f42, 0x8f45, 0x8f3f, 0x907f, 0x907d, 0x9084,\n  0x9081, 0x9082, 0x9080, 0x9139, 0x91a3, 0x919e, 0x919c, 0x934d,\n  0x9382, 0x9328, 0x9375, 0x934a, 0x9365, 0x934b, 0x9318, 0x937e,\n  0x936c, 0x935b, 0x9370, 0x935a, 0x9354, 0x95ca, 0x95cb, 0x95cc,\n  0x95c8, 0x95c6, 0x96b1, 0x96b8, 0x96d6, 0x971c, 0x971e, 0x97a0,\n  0x97d3, 0x9846, 0x98b6, 0x9935, 0x9a01,\n  /* 0xc2 */\n  0x99ff, 0x9bae, 0x9bab, 0x9baa, 0x9bad, 0x9d3b, 0x9d3f, 0x9e8b,\n  0x9ecf, 0x9ede, 0x9edc, 0x9edd, 0x9edb, 0x9f3e, 0x9f4b, 0x53e2,\n  0x5695, 0x56ae, 0x58d9, 0x58d8, 0x5b38, 0x5f5d, 0x61e3, 0x6233,\n  0x64f4, 0x64f2, 0x64fe, 0x6506, 0x64fa, 0x64fb, 0x64f7, 0x65b7,\n  0x66dc, 0x6726, 0x6ab3, 0x6aac, 0x6ac3, 0x6abb, 0x6ab8, 0x6ac2,\n  0x6aae, 0x6aaf, 0x6b5f, 0x6b78, 0x6baf, 0x7009, 0x700b, 0x6ffe,\n  0x7006, 0x6ffa, 0x7011, 0x700f, 0x71fb, 0x71fc, 0x71fe, 0x71f8,\n  0x7377, 0x7375, 0x74a7, 0x74bf, 0x7515, 0x7656, 0x7658, 0x7652,\n  0x77bd, 0x77bf, 0x77bb, 0x77bc, 0x790e, 0x79ae, 0x7a61, 0x7a62,\n  0x7a60, 0x7ac4, 0x7ac5, 0x7c2b, 0x7c27, 0x7c2a, 0x7c1e, 0x7c23,\n  0x7c21, 0x7ce7, 0x7e54, 0x7e55, 0x7e5e, 0x7e5a, 0x7e61, 0x7e52,\n  0x7e59, 0x7f48, 0x7ff9, 0x7ffb, 0x8077, 0x8076, 0x81cd, 0x81cf,\n  0x820a, 0x85cf, 0x85a9, 0x85cd, 0x85d0, 0x85c9, 0x85b0, 0x85ba,\n  0x85b9, 0x85a6, 0x87ef, 0x87ec, 0x87f2, 0x87e0, 0x8986, 0x89b2,\n  0x89f4, 0x8b28, 0x8b39, 0x8b2c, 0x8b2b, 0x8c50, 0x8d05, 0x8e59,\n  0x8e63, 0x8e66, 0x8e64, 0x8e5f, 0x8e55, 0x8ec0, 0x8f49, 0x8f4d,\n  0x9087, 0x9083, 0x9088, 0x91ab, 0x91ac, 0x91d0, 0x9394, 0x938a,\n  0x9396, 0x93a2, 0x93b3, 0x93ae, 0x93ac, 0x93b0, 0x9398, 0x939a,\n  0x9397, 0x95d4, 0x95d6, 0x95d0, 0x95d5, 0x96e2, 0x96dc, 0x96d9,\n  0x96db, 0x96de, 0x9724, 0x97a3, 0x97a6,\n  /* 0xc3 */\n  0x97ad, 0x97f9, 0x984d, 0x984f, 0x984c, 0x984e, 0x9853, 0x98ba,\n  0x993e, 0x993f, 0x993d, 0x992e, 0x99a5, 0x9a0e, 0x9ac1, 0x9b03,\n  0x9b06, 0x9b4f, 0x9b4e, 0x9b4d, 0x9bca, 0x9bc9, 0x9bfd, 0x9bc8,\n  0x9bc0, 0x9d51, 0x9d5d, 0x9d60, 0x9ee0, 0x9f15, 0x9f2c, 0x5133,\n  0x56a5, 0x58de, 0x58df, 0x58e2, 0x5bf5, 0x9f90, 0x5eec, 0x61f2,\n  0x61f7, 0x61f6, 0x61f5, 0x6500, 0x650f, 0x66e0, 0x66dd, 0x6ae5,\n  0x6add, 0x6ada, 0x6ad3, 0x701b, 0x701f, 0x7028, 0x701a, 0x701d,\n  0x7015, 0x7018, 0x7206, 0x720d, 0x7258, 0x72a2, 0x7378, 0x737a,\n  0x74bd, 0x74ca, 0x74e3, 0x7587, 0x7586, 0x765f, 0x7661, 0x77c7,\n  0x7919, 0x79b1, 0x7a6b, 0x7a69, 0x7c3e, 0x7c3f, 0x7c38, 0x7c3d,\n  0x7c37, 0x7c40, 0x7e6b, 0x7e6d, 0x7e79, 0x7e69, 0x7e6a, 0x7f85,\n  0x7e73, 0x7fb6, 0x7fb9, 0x7fb8, 0x81d8, 0x85e9, 0x85dd, 0x85ea,\n  0x85d5, 0x85e4, 0x85e5, 0x85f7, 0x87fb, 0x8805, 0x880d, 0x87f9,\n  0x87fe, 0x8960, 0x895f, 0x8956, 0x895e, 0x8b41, 0x8b5c, 0x8b58,\n  0x8b49, 0x8b5a, 0x8b4e, 0x8b4f, 0x8b46, 0x8b59, 0x8d08, 0x8d0a,\n  0x8e7c, 0x8e72, 0x8e87, 0x8e76, 0x8e6c, 0x8e7a, 0x8e74, 0x8f54,\n  0x8f4e, 0x8fad, 0x908a, 0x908b, 0x91b1, 0x91ae, 0x93e1, 0x93d1,\n  0x93df, 0x93c3, 0x93c8, 0x93dc, 0x93dd, 0x93d6, 0x93e2, 0x93cd,\n  0x93d8, 0x93e4, 0x93d7, 0x93e8, 0x95dc, 0x96b4, 0x96e3, 0x972a,\n  0x9727, 0x9761, 0x97dc, 0x97fb, 0x985e,\n  /* 0xc4 */\n  0x9858, 0x985b, 0x98bc, 0x9945, 0x9949, 0x9a16, 0x9a19, 0x9b0d,\n  0x9be8, 0x9be7, 0x9bd6, 0x9bdb, 0x9d89, 0x9d61, 0x9d72, 0x9d6a,\n  0x9d6c, 0x9e92, 0x9e97, 0x9e93, 0x9eb4, 0x52f8, 0x56a8, 0x56b7,\n  0x56b6, 0x56b4, 0x56bc, 0x58e4, 0x5b40, 0x5b43, 0x5b7d, 0x5bf6,\n  0x5dc9, 0x61f8, 0x61fa, 0x6518, 0x6514, 0x6519, 0x66e6, 0x6727,\n  0x6aec, 0x703e, 0x7030, 0x7032, 0x7210, 0x737b, 0x74cf, 0x7662,\n  0x7665, 0x7926, 0x792a, 0x792c, 0x792b, 0x7ac7, 0x7af6, 0x7c4c,\n  0x7c43, 0x7c4d, 0x7cef, 0x7cf0, 0x8fae, 0x7e7d, 0x7e7c, 0x7e82,\n  0x7f4c, 0x8000, 0x81da, 0x8266, 0x85fb, 0x85f9, 0x8611, 0x85fa,\n  0x8606, 0x860b, 0x8607, 0x860a, 0x8814, 0x8815, 0x8964, 0x89ba,\n  0x89f8, 0x8b70, 0x8b6c, 0x8b66, 0x8b6f, 0x8b5f, 0x8b6b, 0x8d0f,\n  0x8d0d, 0x8e89, 0x8e81, 0x8e85, 0x8e82, 0x91b4, 0x91cb, 0x9418,\n  0x9403, 0x93fd, 0x95e1, 0x9730, 0x98c4, 0x9952, 0x9951, 0x99a8,\n  0x9a2b, 0x9a30, 0x9a37, 0x9a35, 0x9c13, 0x9c0d, 0x9e79, 0x9eb5,\n  0x9ee8, 0x9f2f, 0x9f5f, 0x9f63, 0x9f61, 0x5137, 0x5138, 0x56c1,\n  0x56c0, 0x56c2, 0x5914, 0x5c6c, 0x5dcd, 0x61fc, 0x61fe, 0x651d,\n  0x651c, 0x6595, 0x66e9, 0x6afb, 0x6b04, 0x6afa, 0x6bb2, 0x704c,\n  0x721b, 0x72a7, 0x74d6, 0x74d4, 0x7669, 0x77d3, 0x7c50, 0x7e8f,\n  0x7e8c, 0x7fbc, 0x8617, 0x862d, 0x861a, 0x8823, 0x8822, 0x8821,\n  0x881f, 0x896a, 0x896c, 0x89bd, 0x8b74,\n  /* 0xc5 */\n  0x8b77, 0x8b7d, 0x8d13, 0x8e8a, 0x8e8d, 0x8e8b, 0x8f5f, 0x8faf,\n  0x91ba, 0x942e, 0x9433, 0x9435, 0x943a, 0x9438, 0x9432, 0x942b,\n  0x95e2, 0x9738, 0x9739, 0x9732, 0x97ff, 0x9867, 0x9865, 0x9957,\n  0x9a45, 0x9a43, 0x9a40, 0x9a3e, 0x9acf, 0x9b54, 0x9b51, 0x9c2d,\n  0x9c25, 0x9daf, 0x9db4, 0x9dc2, 0x9db8, 0x9e9d, 0x9eef, 0x9f19,\n  0x9f5c, 0x9f66, 0x9f67, 0x513c, 0x513b, 0x56c8, 0x56ca, 0x56c9,\n  0x5b7f, 0x5dd4, 0x5dd2, 0x5f4e, 0x61ff, 0x6524, 0x6b0a, 0x6b61,\n  0x7051, 0x7058, 0x7380, 0x74e4, 0x758a, 0x766e, 0x766c, 0x79b3,\n  0x7c60, 0x7c5f, 0x807e, 0x807d, 0x81df, 0x8972, 0x896f, 0x89fc,\n  0x8b80, 0x8d16, 0x8d17, 0x8e91, 0x8e93, 0x8f61, 0x9148, 0x9444,\n  0x9451, 0x9452, 0x973d, 0x973e, 0x97c3, 0x97c1, 0x986b, 0x9955,\n  0x9a55, 0x9a4d, 0x9ad2, 0x9b1a, 0x9c49, 0x9c31, 0x9c3e, 0x9c3b,\n  0x9dd3, 0x9dd7, 0x9f34, 0x9f6c, 0x9f6a, 0x9f94, 0x56cc, 0x5dd6,\n  0x6200, 0x6523, 0x652b, 0x652a, 0x66ec, 0x6b10, 0x74da, 0x7aca,\n  0x7c64, 0x7c63, 0x7c65, 0x7e93, 0x7e96, 0x7e94, 0x81e2, 0x8638,\n  0x863f, 0x8831, 0x8b8a, 0x9090, 0x908f, 0x9463, 0x9460, 0x9464,\n  0x9768, 0x986f, 0x995c, 0x9a5a, 0x9a5b, 0x9a57, 0x9ad3, 0x9ad4,\n  0x9ad1, 0x9c54, 0x9c57, 0x9c56, 0x9de5, 0x9e9f, 0x9ef4, 0x56d1,\n  0x58e9, 0x652c, 0x705e, 0x7671, 0x7672, 0x77d7, 0x7f50, 0x7f88,\n  0x8836, 0x8839, 0x8862, 0x8b93, 0x8b92,\n  /* 0xc6 */\n  0x8b96, 0x8277, 0x8d1b, 0x91c0, 0x946a, 0x9742, 0x9748, 0x9744,\n  0x97c6, 0x9870, 0x9a5f, 0x9b22, 0x9b58, 0x9c5f, 0x9df9, 0x9dfa,\n  0x9e7c, 0x9e7d, 0x9f07, 0x9f77, 0x9f72, 0x5ef3, 0x6b16, 0x7063,\n  0x7c6c, 0x7c6e, 0x883b, 0x89c0, 0x8ea1, 0x91c1, 0x9472, 0x9470,\n  0x9871, 0x995e, 0x9ad6, 0x9b23, 0x9ecc, 0x7064, 0x77da, 0x8b9a,\n  0x9477, 0x97c9, 0x9a62, 0x9a65, 0x7e9c, 0x8b9c, 0x8eaa, 0x91c5,\n  0x947d, 0x947e, 0x947c, 0x9c77, 0x9c78, 0x9ef7, 0x8c54, 0x947f,\n  0x9e1a, 0x7228, 0x9a6a, 0x9b31, 0x9e1b, 0x9e1e, 0x7c72, 0x30fe,\n  0x309d, 0x309e, 0x3005, 0x3041, 0x3042, 0x3043, 0x3044, 0x3045,\n  0x3046, 0x3047, 0x3048, 0x3049, 0x304a, 0x304b, 0x304c, 0x304d,\n  0x304e, 0x304f, 0x3050, 0x3051, 0x3052, 0x3053, 0x3054, 0x3055,\n  0x3056, 0x3057, 0x3058, 0x3059, 0x305a, 0x305b, 0x305c, 0x305d,\n  0x305e, 0x305f, 0x3060, 0x3061, 0x3062, 0x3063, 0x3064, 0x3065,\n  0x3066, 0x3067, 0x3068, 0x3069, 0x306a, 0x306b, 0x306c, 0x306d,\n  0x306e, 0x306f, 0x3070, 0x3071, 0x3072, 0x3073, 0x3074, 0x3075,\n  0x3076, 0x3077, 0x3078, 0x3079, 0x307a, 0x307b, 0x307c, 0x307d,\n  0x307e, 0x307f, 0x3080, 0x3081, 0x3082, 0x3083, 0x3084, 0x3085,\n  0x3086, 0x3087, 0x3088, 0x3089, 0x308a, 0x308b, 0x308c, 0x308d,\n  0x308e, 0x308f, 0x3090, 0x3091, 0x3092, 0x3093, 0x30a1, 0x30a2,\n  0x30a3, 0x30a4, 0x30a5, 0x30a6, 0x30a7,\n  /* 0xc7 */\n  0x30a8, 0x30a9, 0x30aa, 0x30ab, 0x30ac, 0x30ad, 0x30ae, 0x30af,\n  0x30b0, 0x30b1, 0x30b2, 0x30b3, 0x30b4, 0x30b5, 0x30b6, 0x30b7,\n  0x30b8, 0x30b9, 0x30ba, 0x30bb, 0x30bc, 0x30bd, 0x30be, 0x30bf,\n  0x30c0, 0x30c1, 0x30c2, 0x30c3, 0x30c4, 0x30c5, 0x30c6, 0x30c7,\n  0x30c8, 0x30c9, 0x30ca, 0x30cb, 0x30cc, 0x30cd, 0x30ce, 0x30cf,\n  0x30d0, 0x30d1, 0x30d2, 0x30d3, 0x30d4, 0x30d5, 0x30d6, 0x30d7,\n  0x30d8, 0x30d9, 0x30da, 0x30db, 0x30dc, 0x30dd, 0x30de, 0x30df,\n  0x30e0, 0x30e1, 0x30e2, 0x30e3, 0x30e4, 0x30e5, 0x30e6, 0x30e7,\n  0x30e8, 0x30e9, 0x30ea, 0x30eb, 0x30ec, 0x30ed, 0x30ee, 0x30ef,\n  0x30f0, 0x30f1, 0x30f2, 0x30f3, 0x30f4, 0x30f5, 0x30f6, 0x0414,\n  0x0415, 0x0401, 0x0416, 0x0417, 0x0418, 0x0419, 0x041a, 0x041b,\n  0x041c, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, 0x0428, 0x0429,\n  0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f, 0x0430, 0x0431,\n  0x0432, 0x0433, 0x0434, 0x0435, 0x0451, 0x0436, 0x0437, 0x0438,\n  0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f, 0x0440,\n  0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, 0x0448,\n  0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f, 0x2460,\n  0x2461, 0x2462, 0x2463, 0x2464, 0x2465, 0x2466, 0x2467, 0x2468,\n  0x2469, 0x2474, 0x2475, 0x2476, 0x2477, 0x2478, 0x2479, 0x247a,\n  0x247b, 0x247c, 0x247d,\n};\nstatic const unsigned short big5_2uni_pagec9[7652] = {\n  /* 0xc9 */\n  0x4e42, 0x4e5c, 0x51f5, 0x531a, 0x5382, 0x4e07, 0x4e0c, 0x4e47,\n  0x4e8d, 0x56d7, 0xfa0c, 0x5c6e, 0x5f73, 0x4e0f, 0x5187, 0x4e0e,\n  0x4e2e, 0x4e93, 0x4ec2, 0x4ec9, 0x4ec8, 0x5198, 0x52fc, 0x536c,\n  0x53b9, 0x5720, 0x5903, 0x592c, 0x5c10, 0x5dff, 0x65e1, 0x6bb3,\n  0x6bcc, 0x6c14, 0x723f, 0x4e31, 0x4e3c, 0x4ee8, 0x4edc, 0x4ee9,\n  0x4ee1, 0x4edd, 0x4eda, 0x520c, 0x531c, 0x534c, 0x5722, 0x5723,\n  0x5917, 0x592f, 0x5b81, 0x5b84, 0x5c12, 0x5c3b, 0x5c74, 0x5c73,\n  0x5e04, 0x5e80, 0x5e82, 0x5fc9, 0x6209, 0x6250, 0x6c15, 0x6c36,\n  0x6c43, 0x6c3f, 0x6c3b, 0x72ae, 0x72b0, 0x738a, 0x79b8, 0x808a,\n  0x961e, 0x4f0e, 0x4f18, 0x4f2c, 0x4ef5, 0x4f14, 0x4ef1, 0x4f00,\n  0x4ef7, 0x4f08, 0x4f1d, 0x4f02, 0x4f05, 0x4f22, 0x4f13, 0x4f04,\n  0x4ef4, 0x4f12, 0x51b1, 0x5213, 0x5209, 0x5210, 0x52a6, 0x5322,\n  0x531f, 0x534d, 0x538a, 0x5407, 0x56e1, 0x56df, 0x572e, 0x572a,\n  0x5734, 0x593c, 0x5980, 0x597c, 0x5985, 0x597b, 0x597e, 0x5977,\n  0x597f, 0x5b56, 0x5c15, 0x5c25, 0x5c7c, 0x5c7a, 0x5c7b, 0x5c7e,\n  0x5ddf, 0x5e75, 0x5e84, 0x5f02, 0x5f1a, 0x5f74, 0x5fd5, 0x5fd4,\n  0x5fcf, 0x625c, 0x625e, 0x6264, 0x6261, 0x6266, 0x6262, 0x6259,\n  0x6260, 0x625a, 0x6265, 0x65ef, 0x65ee, 0x673e, 0x6739, 0x6738,\n  0x673b, 0x673a, 0x673f, 0x673c, 0x6733, 0x6c18, 0x6c46, 0x6c52,\n  0x6c5c, 0x6c4f, 0x6c4a, 0x6c54, 0x6c4b,\n  /* 0xca */\n  0x6c4c, 0x7071, 0x725e, 0x72b4, 0x72b5, 0x738e, 0x752a, 0x767f,\n  0x7a75, 0x7f51, 0x8278, 0x827c, 0x8280, 0x827d, 0x827f, 0x864d,\n  0x897e, 0x9099, 0x9097, 0x9098, 0x909b, 0x9094, 0x9622, 0x9624,\n  0x9620, 0x9623, 0x4f56, 0x4f3b, 0x4f62, 0x4f49, 0x4f53, 0x4f64,\n  0x4f3e, 0x4f67, 0x4f52, 0x4f5f, 0x4f41, 0x4f58, 0x4f2d, 0x4f33,\n  0x4f3f, 0x4f61, 0x518f, 0x51b9, 0x521c, 0x521e, 0x5221, 0x52ad,\n  0x52ae, 0x5309, 0x5363, 0x5372, 0x538e, 0x538f, 0x5430, 0x5437,\n  0x542a, 0x5454, 0x5445, 0x5419, 0x541c, 0x5425, 0x5418, 0x543d,\n  0x544f, 0x5441, 0x5428, 0x5424, 0x5447, 0x56ee, 0x56e7, 0x56e5,\n  0x5741, 0x5745, 0x574c, 0x5749, 0x574b, 0x5752, 0x5906, 0x5940,\n  0x59a6, 0x5998, 0x59a0, 0x5997, 0x598e, 0x59a2, 0x5990, 0x598f,\n  0x59a7, 0x59a1, 0x5b8e, 0x5b92, 0x5c28, 0x5c2a, 0x5c8d, 0x5c8f,\n  0x5c88, 0x5c8b, 0x5c89, 0x5c92, 0x5c8a, 0x5c86, 0x5c93, 0x5c95,\n  0x5de0, 0x5e0a, 0x5e0e, 0x5e8b, 0x5e89, 0x5e8c, 0x5e88, 0x5e8d,\n  0x5f05, 0x5f1d, 0x5f78, 0x5f76, 0x5fd2, 0x5fd1, 0x5fd0, 0x5fed,\n  0x5fe8, 0x5fee, 0x5ff3, 0x5fe1, 0x5fe4, 0x5fe3, 0x5ffa, 0x5fef,\n  0x5ff7, 0x5ffb, 0x6000, 0x5ff4, 0x623a, 0x6283, 0x628c, 0x628e,\n  0x628f, 0x6294, 0x6287, 0x6271, 0x627b, 0x627a, 0x6270, 0x6281,\n  0x6288, 0x6277, 0x627d, 0x6272, 0x6274, 0x6537, 0x65f0, 0x65f4,\n  0x65f3, 0x65f2, 0x65f5, 0x6745, 0x6747,\n  /* 0xcb */\n  0x6759, 0x6755, 0x674c, 0x6748, 0x675d, 0x674d, 0x675a, 0x674b,\n  0x6bd0, 0x6c19, 0x6c1a, 0x6c78, 0x6c67, 0x6c6b, 0x6c84, 0x6c8b,\n  0x6c8f, 0x6c71, 0x6c6f, 0x6c69, 0x6c9a, 0x6c6d, 0x6c87, 0x6c95,\n  0x6c9c, 0x6c66, 0x6c73, 0x6c65, 0x6c7b, 0x6c8e, 0x7074, 0x707a,\n  0x7263, 0x72bf, 0x72bd, 0x72c3, 0x72c6, 0x72c1, 0x72ba, 0x72c5,\n  0x7395, 0x7397, 0x7393, 0x7394, 0x7392, 0x753a, 0x7539, 0x7594,\n  0x7595, 0x7681, 0x793d, 0x8034, 0x8095, 0x8099, 0x8090, 0x8092,\n  0x809c, 0x8290, 0x828f, 0x8285, 0x828e, 0x8291, 0x8293, 0x828a,\n  0x8283, 0x8284, 0x8c78, 0x8fc9, 0x8fbf, 0x909f, 0x90a1, 0x90a5,\n  0x909e, 0x90a7, 0x90a0, 0x9630, 0x9628, 0x962f, 0x962d, 0x4e33,\n  0x4f98, 0x4f7c, 0x4f85, 0x4f7d, 0x4f80, 0x4f87, 0x4f76, 0x4f74,\n  0x4f89, 0x4f84, 0x4f77, 0x4f4c, 0x4f97, 0x4f6a, 0x4f9a, 0x4f79,\n  0x4f81, 0x4f78, 0x4f90, 0x4f9c, 0x4f94, 0x4f9e, 0x4f92, 0x4f82,\n  0x4f95, 0x4f6b, 0x4f6e, 0x519e, 0x51bc, 0x51be, 0x5235, 0x5232,\n  0x5233, 0x5246, 0x5231, 0x52bc, 0x530a, 0x530b, 0x533c, 0x5392,\n  0x5394, 0x5487, 0x547f, 0x5481, 0x5491, 0x5482, 0x5488, 0x546b,\n  0x547a, 0x547e, 0x5465, 0x546c, 0x5474, 0x5466, 0x548d, 0x546f,\n  0x5461, 0x5460, 0x5498, 0x5463, 0x5467, 0x5464, 0x56f7, 0x56f9,\n  0x576f, 0x5772, 0x576d, 0x576b, 0x5771, 0x5770, 0x5776, 0x5780,\n  0x5775, 0x577b, 0x5773, 0x5774, 0x5762,\n  /* 0xcc */\n  0x5768, 0x577d, 0x590c, 0x5945, 0x59b5, 0x59ba, 0x59cf, 0x59ce,\n  0x59b2, 0x59cc, 0x59c1, 0x59b6, 0x59bc, 0x59c3, 0x59d6, 0x59b1,\n  0x59bd, 0x59c0, 0x59c8, 0x59b4, 0x59c7, 0x5b62, 0x5b65, 0x5b93,\n  0x5b95, 0x5c44, 0x5c47, 0x5cae, 0x5ca4, 0x5ca0, 0x5cb5, 0x5caf,\n  0x5ca8, 0x5cac, 0x5c9f, 0x5ca3, 0x5cad, 0x5ca2, 0x5caa, 0x5ca7,\n  0x5c9d, 0x5ca5, 0x5cb6, 0x5cb0, 0x5ca6, 0x5e17, 0x5e14, 0x5e19,\n  0x5f28, 0x5f22, 0x5f23, 0x5f24, 0x5f54, 0x5f82, 0x5f7e, 0x5f7d,\n  0x5fde, 0x5fe5, 0x602d, 0x6026, 0x6019, 0x6032, 0x600b, 0x6034,\n  0x600a, 0x6017, 0x6033, 0x601a, 0x601e, 0x602c, 0x6022, 0x600d,\n  0x6010, 0x602e, 0x6013, 0x6011, 0x600c, 0x6009, 0x601c, 0x6214,\n  0x623d, 0x62ad, 0x62b4, 0x62d1, 0x62be, 0x62aa, 0x62b6, 0x62ca,\n  0x62ae, 0x62b3, 0x62af, 0x62bb, 0x62a9, 0x62b0, 0x62b8, 0x653d,\n  0x65a8, 0x65bb, 0x6609, 0x65fc, 0x6604, 0x6612, 0x6608, 0x65fb,\n  0x6603, 0x660b, 0x660d, 0x6605, 0x65fd, 0x6611, 0x6610, 0x66f6,\n  0x670a, 0x6785, 0x676c, 0x678e, 0x6792, 0x6776, 0x677b, 0x6798,\n  0x6786, 0x6784, 0x6774, 0x678d, 0x678c, 0x677a, 0x679f, 0x6791,\n  0x6799, 0x6783, 0x677d, 0x6781, 0x6778, 0x6779, 0x6794, 0x6b25,\n  0x6b80, 0x6b7e, 0x6bde, 0x6c1d, 0x6c93, 0x6cec, 0x6ceb, 0x6cee,\n  0x6cd9, 0x6cb6, 0x6cd4, 0x6cad, 0x6ce7, 0x6cb7, 0x6cd0, 0x6cc2,\n  0x6cba, 0x6cc3, 0x6cc6, 0x6ced, 0x6cf2,\n  /* 0xcd */\n  0x6cd2, 0x6cdd, 0x6cb4, 0x6c8a, 0x6c9d, 0x6c80, 0x6cde, 0x6cc0,\n  0x6d30, 0x6ccd, 0x6cc7, 0x6cb0, 0x6cf9, 0x6ccf, 0x6ce9, 0x6cd1,\n  0x7094, 0x7098, 0x7085, 0x7093, 0x7086, 0x7084, 0x7091, 0x7096,\n  0x7082, 0x709a, 0x7083, 0x726a, 0x72d6, 0x72cb, 0x72d8, 0x72c9,\n  0x72dc, 0x72d2, 0x72d4, 0x72da, 0x72cc, 0x72d1, 0x73a4, 0x73a1,\n  0x73ad, 0x73a6, 0x73a2, 0x73a0, 0x73ac, 0x739d, 0x74dd, 0x74e8,\n  0x753f, 0x7540, 0x753e, 0x758c, 0x7598, 0x76af, 0x76f3, 0x76f1,\n  0x76f0, 0x76f5, 0x77f8, 0x77fc, 0x77f9, 0x77fb, 0x77fa, 0x77f7,\n  0x7942, 0x793f, 0x79c5, 0x7a78, 0x7a7b, 0x7afb, 0x7c75, 0x7cfd,\n  0x8035, 0x808f, 0x80ae, 0x80a3, 0x80b8, 0x80b5, 0x80ad, 0x8220,\n  0x82a0, 0x82c0, 0x82ab, 0x829a, 0x8298, 0x829b, 0x82b5, 0x82a7,\n  0x82ae, 0x82bc, 0x829e, 0x82ba, 0x82b4, 0x82a8, 0x82a1, 0x82a9,\n  0x82c2, 0x82a4, 0x82c3, 0x82b6, 0x82a2, 0x8670, 0x866f, 0x866d,\n  0x866e, 0x8c56, 0x8fd2, 0x8fcb, 0x8fd3, 0x8fcd, 0x8fd6, 0x8fd5,\n  0x8fd7, 0x90b2, 0x90b4, 0x90af, 0x90b3, 0x90b0, 0x9639, 0x963d,\n  0x963c, 0x963a, 0x9643, 0x4fcd, 0x4fc5, 0x4fd3, 0x4fb2, 0x4fc9,\n  0x4fcb, 0x4fc1, 0x4fd4, 0x4fdc, 0x4fd9, 0x4fbb, 0x4fb3, 0x4fdb,\n  0x4fc7, 0x4fd6, 0x4fba, 0x4fc0, 0x4fb9, 0x4fec, 0x5244, 0x5249,\n  0x52c0, 0x52c2, 0x533d, 0x537c, 0x5397, 0x5396, 0x5399, 0x5398,\n  0x54ba, 0x54a1, 0x54ad, 0x54a5, 0x54cf,\n  /* 0xce */\n  0x54c3, 0x830d, 0x54b7, 0x54ae, 0x54d6, 0x54b6, 0x54c5, 0x54c6,\n  0x54a0, 0x5470, 0x54bc, 0x54a2, 0x54be, 0x5472, 0x54de, 0x54b0,\n  0x57b5, 0x579e, 0x579f, 0x57a4, 0x578c, 0x5797, 0x579d, 0x579b,\n  0x5794, 0x5798, 0x578f, 0x5799, 0x57a5, 0x579a, 0x5795, 0x58f4,\n  0x590d, 0x5953, 0x59e1, 0x59de, 0x59ee, 0x5a00, 0x59f1, 0x59dd,\n  0x59fa, 0x59fd, 0x59fc, 0x59f6, 0x59e4, 0x59f2, 0x59f7, 0x59db,\n  0x59e9, 0x59f3, 0x59f5, 0x59e0, 0x59fe, 0x59f4, 0x59ed, 0x5ba8,\n  0x5c4c, 0x5cd0, 0x5cd8, 0x5ccc, 0x5cd7, 0x5ccb, 0x5cdb, 0x5cde,\n  0x5cda, 0x5cc9, 0x5cc7, 0x5cca, 0x5cd6, 0x5cd3, 0x5cd4, 0x5ccf,\n  0x5cc8, 0x5cc6, 0x5cce, 0x5cdf, 0x5cf8, 0x5df9, 0x5e21, 0x5e22,\n  0x5e23, 0x5e20, 0x5e24, 0x5eb0, 0x5ea4, 0x5ea2, 0x5e9b, 0x5ea3,\n  0x5ea5, 0x5f07, 0x5f2e, 0x5f56, 0x5f86, 0x6037, 0x6039, 0x6054,\n  0x6072, 0x605e, 0x6045, 0x6053, 0x6047, 0x6049, 0x605b, 0x604c,\n  0x6040, 0x6042, 0x605f, 0x6024, 0x6044, 0x6058, 0x6066, 0x606e,\n  0x6242, 0x6243, 0x62cf, 0x630d, 0x630b, 0x62f5, 0x630e, 0x6303,\n  0x62eb, 0x62f9, 0x630f, 0x630c, 0x62f8, 0x62f6, 0x6300, 0x6313,\n  0x6314, 0x62fa, 0x6315, 0x62fb, 0x62f0, 0x6541, 0x6543, 0x65aa,\n  0x65bf, 0x6636, 0x6621, 0x6632, 0x6635, 0x661c, 0x6626, 0x6622,\n  0x6633, 0x662b, 0x663a, 0x661d, 0x6634, 0x6639, 0x662e, 0x670f,\n  0x6710, 0x67c1, 0x67f2, 0x67c8, 0x67ba,\n  /* 0xcf */\n  0x67dc, 0x67bb, 0x67f8, 0x67d8, 0x67c0, 0x67b7, 0x67c5, 0x67eb,\n  0x67e4, 0x67df, 0x67b5, 0x67cd, 0x67b3, 0x67f7, 0x67f6, 0x67ee,\n  0x67e3, 0x67c2, 0x67b9, 0x67ce, 0x67e7, 0x67f0, 0x67b2, 0x67fc,\n  0x67c6, 0x67ed, 0x67cc, 0x67ae, 0x67e6, 0x67db, 0x67fa, 0x67c9,\n  0x67ca, 0x67c3, 0x67ea, 0x67cb, 0x6b28, 0x6b82, 0x6b84, 0x6bb6,\n  0x6bd6, 0x6bd8, 0x6be0, 0x6c20, 0x6c21, 0x6d28, 0x6d34, 0x6d2d,\n  0x6d1f, 0x6d3c, 0x6d3f, 0x6d12, 0x6d0a, 0x6cda, 0x6d33, 0x6d04,\n  0x6d19, 0x6d3a, 0x6d1a, 0x6d11, 0x6d00, 0x6d1d, 0x6d42, 0x6d01,\n  0x6d18, 0x6d37, 0x6d03, 0x6d0f, 0x6d40, 0x6d07, 0x6d20, 0x6d2c,\n  0x6d08, 0x6d22, 0x6d09, 0x6d10, 0x70b7, 0x709f, 0x70be, 0x70b1,\n  0x70b0, 0x70a1, 0x70b4, 0x70b5, 0x70a9, 0x7241, 0x7249, 0x724a,\n  0x726c, 0x7270, 0x7273, 0x726e, 0x72ca, 0x72e4, 0x72e8, 0x72eb,\n  0x72df, 0x72ea, 0x72e6, 0x72e3, 0x7385, 0x73cc, 0x73c2, 0x73c8,\n  0x73c5, 0x73b9, 0x73b6, 0x73b5, 0x73b4, 0x73eb, 0x73bf, 0x73c7,\n  0x73be, 0x73c3, 0x73c6, 0x73b8, 0x73cb, 0x74ec, 0x74ee, 0x752e,\n  0x7547, 0x7548, 0x75a7, 0x75aa, 0x7679, 0x76c4, 0x7708, 0x7703,\n  0x7704, 0x7705, 0x770a, 0x76f7, 0x76fb, 0x76fa, 0x77e7, 0x77e8,\n  0x7806, 0x7811, 0x7812, 0x7805, 0x7810, 0x780f, 0x780e, 0x7809,\n  0x7803, 0x7813, 0x794a, 0x794c, 0x794b, 0x7945, 0x7944, 0x79d5,\n  0x79cd, 0x79cf, 0x79d6, 0x79ce, 0x7a80,\n  /* 0xd0 */\n  0x7a7e, 0x7ad1, 0x7b00, 0x7b01, 0x7c7a, 0x7c78, 0x7c79, 0x7c7f,\n  0x7c80, 0x7c81, 0x7d03, 0x7d08, 0x7d01, 0x7f58, 0x7f91, 0x7f8d,\n  0x7fbe, 0x8007, 0x800e, 0x800f, 0x8014, 0x8037, 0x80d8, 0x80c7,\n  0x80e0, 0x80d1, 0x80c8, 0x80c2, 0x80d0, 0x80c5, 0x80e3, 0x80d9,\n  0x80dc, 0x80ca, 0x80d5, 0x80c9, 0x80cf, 0x80d7, 0x80e6, 0x80cd,\n  0x81ff, 0x8221, 0x8294, 0x82d9, 0x82fe, 0x82f9, 0x8307, 0x82e8,\n  0x8300, 0x82d5, 0x833a, 0x82eb, 0x82d6, 0x82f4, 0x82ec, 0x82e1,\n  0x82f2, 0x82f5, 0x830c, 0x82fb, 0x82f6, 0x82f0, 0x82ea, 0x82e4,\n  0x82e0, 0x82fa, 0x82f3, 0x82ed, 0x8677, 0x8674, 0x867c, 0x8673,\n  0x8841, 0x884e, 0x8867, 0x886a, 0x8869, 0x89d3, 0x8a04, 0x8a07,\n  0x8d72, 0x8fe3, 0x8fe1, 0x8fee, 0x8fe0, 0x90f1, 0x90bd, 0x90bf,\n  0x90d5, 0x90c5, 0x90be, 0x90c7, 0x90cb, 0x90c8, 0x91d4, 0x91d3,\n  0x9654, 0x964f, 0x9651, 0x9653, 0x964a, 0x964e, 0x501e, 0x5005,\n  0x5007, 0x5013, 0x5022, 0x5030, 0x501b, 0x4ff5, 0x4ff4, 0x5033,\n  0x5037, 0x502c, 0x4ff6, 0x4ff7, 0x5017, 0x501c, 0x5020, 0x5027,\n  0x5035, 0x502f, 0x5031, 0x500e, 0x515a, 0x5194, 0x5193, 0x51ca,\n  0x51c4, 0x51c5, 0x51c8, 0x51ce, 0x5261, 0x525a, 0x5252, 0x525e,\n  0x525f, 0x5255, 0x5262, 0x52cd, 0x530e, 0x539e, 0x5526, 0x54e2,\n  0x5517, 0x5512, 0x54e7, 0x54f3, 0x54e4, 0x551a, 0x54ff, 0x5504,\n  0x5508, 0x54eb, 0x5511, 0x5505, 0x54f1,\n  /* 0xd1 */\n  0x550a, 0x54fb, 0x54f7, 0x54f8, 0x54e0, 0x550e, 0x5503, 0x550b,\n  0x5701, 0x5702, 0x57cc, 0x5832, 0x57d5, 0x57d2, 0x57ba, 0x57c6,\n  0x57bd, 0x57bc, 0x57b8, 0x57b6, 0x57bf, 0x57c7, 0x57d0, 0x57b9,\n  0x57c1, 0x590e, 0x594a, 0x5a19, 0x5a16, 0x5a2d, 0x5a2e, 0x5a15,\n  0x5a0f, 0x5a17, 0x5a0a, 0x5a1e, 0x5a33, 0x5b6c, 0x5ba7, 0x5bad,\n  0x5bac, 0x5c03, 0x5c56, 0x5c54, 0x5cec, 0x5cff, 0x5cee, 0x5cf1,\n  0x5cf7, 0x5d00, 0x5cf9, 0x5e29, 0x5e28, 0x5ea8, 0x5eae, 0x5eaa,\n  0x5eac, 0x5f33, 0x5f30, 0x5f67, 0x605d, 0x605a, 0x6067, 0x6041,\n  0x60a2, 0x6088, 0x6080, 0x6092, 0x6081, 0x609d, 0x6083, 0x6095,\n  0x609b, 0x6097, 0x6087, 0x609c, 0x608e, 0x6219, 0x6246, 0x62f2,\n  0x6310, 0x6356, 0x632c, 0x6344, 0x6345, 0x6336, 0x6343, 0x63e4,\n  0x6339, 0x634b, 0x634a, 0x633c, 0x6329, 0x6341, 0x6334, 0x6358,\n  0x6354, 0x6359, 0x632d, 0x6347, 0x6333, 0x635a, 0x6351, 0x6338,\n  0x6357, 0x6340, 0x6348, 0x654a, 0x6546, 0x65c6, 0x65c3, 0x65c4,\n  0x65c2, 0x664a, 0x665f, 0x6647, 0x6651, 0x6712, 0x6713, 0x681f,\n  0x681a, 0x6849, 0x6832, 0x6833, 0x683b, 0x684b, 0x684f, 0x6816,\n  0x6831, 0x681c, 0x6835, 0x682b, 0x682d, 0x682f, 0x684e, 0x6844,\n  0x6834, 0x681d, 0x6812, 0x6814, 0x6826, 0x6828, 0x682e, 0x684d,\n  0x683a, 0x6825, 0x6820, 0x6b2c, 0x6b2f, 0x6b2d, 0x6b31, 0x6b34,\n  0x6b6d, 0x8082, 0x6b88, 0x6be6, 0x6be4,\n  /* 0xd2 */\n  0x6be8, 0x6be3, 0x6be2, 0x6be7, 0x6c25, 0x6d7a, 0x6d63, 0x6d64,\n  0x6d76, 0x6d0d, 0x6d61, 0x6d92, 0x6d58, 0x6d62, 0x6d6d, 0x6d6f,\n  0x6d91, 0x6d8d, 0x6def, 0x6d7f, 0x6d86, 0x6d5e, 0x6d67, 0x6d60,\n  0x6d97, 0x6d70, 0x6d7c, 0x6d5f, 0x6d82, 0x6d98, 0x6d2f, 0x6d68,\n  0x6d8b, 0x6d7e, 0x6d80, 0x6d84, 0x6d16, 0x6d83, 0x6d7b, 0x6d7d,\n  0x6d75, 0x6d90, 0x70dc, 0x70d3, 0x70d1, 0x70dd, 0x70cb, 0x7f39,\n  0x70e2, 0x70d7, 0x70d2, 0x70de, 0x70e0, 0x70d4, 0x70cd, 0x70c5,\n  0x70c6, 0x70c7, 0x70da, 0x70ce, 0x70e1, 0x7242, 0x7278, 0x7277,\n  0x7276, 0x7300, 0x72fa, 0x72f4, 0x72fe, 0x72f6, 0x72f3, 0x72fb,\n  0x7301, 0x73d3, 0x73d9, 0x73e5, 0x73d6, 0x73bc, 0x73e7, 0x73e3,\n  0x73e9, 0x73dc, 0x73d2, 0x73db, 0x73d4, 0x73dd, 0x73da, 0x73d7,\n  0x73d8, 0x73e8, 0x74de, 0x74df, 0x74f4, 0x74f5, 0x7521, 0x755b,\n  0x755f, 0x75b0, 0x75c1, 0x75bb, 0x75c4, 0x75c0, 0x75bf, 0x75b6,\n  0x75ba, 0x768a, 0x76c9, 0x771d, 0x771b, 0x7710, 0x7713, 0x7712,\n  0x7723, 0x7711, 0x7715, 0x7719, 0x771a, 0x7722, 0x7727, 0x7823,\n  0x782c, 0x7822, 0x7835, 0x782f, 0x7828, 0x782e, 0x782b, 0x7821,\n  0x7829, 0x7833, 0x782a, 0x7831, 0x7954, 0x795b, 0x794f, 0x795c,\n  0x7953, 0x7952, 0x7951, 0x79eb, 0x79ec, 0x79e0, 0x79ee, 0x79ed,\n  0x79ea, 0x79dc, 0x79de, 0x79dd, 0x7a86, 0x7a89, 0x7a85, 0x7a8b,\n  0x7a8c, 0x7a8a, 0x7a87, 0x7ad8, 0x7b10,\n  /* 0xd3 */\n  0x7b04, 0x7b13, 0x7b05, 0x7b0f, 0x7b08, 0x7b0a, 0x7b0e, 0x7b09,\n  0x7b12, 0x7c84, 0x7c91, 0x7c8a, 0x7c8c, 0x7c88, 0x7c8d, 0x7c85,\n  0x7d1e, 0x7d1d, 0x7d11, 0x7d0e, 0x7d18, 0x7d16, 0x7d13, 0x7d1f,\n  0x7d12, 0x7d0f, 0x7d0c, 0x7f5c, 0x7f61, 0x7f5e, 0x7f60, 0x7f5d,\n  0x7f5b, 0x7f96, 0x7f92, 0x7fc3, 0x7fc2, 0x7fc0, 0x8016, 0x803e,\n  0x8039, 0x80fa, 0x80f2, 0x80f9, 0x80f5, 0x8101, 0x80fb, 0x8100,\n  0x8201, 0x822f, 0x8225, 0x8333, 0x832d, 0x8344, 0x8319, 0x8351,\n  0x8325, 0x8356, 0x833f, 0x8341, 0x8326, 0x831c, 0x8322, 0x8342,\n  0x834e, 0x831b, 0x832a, 0x8308, 0x833c, 0x834d, 0x8316, 0x8324,\n  0x8320, 0x8337, 0x832f, 0x8329, 0x8347, 0x8345, 0x834c, 0x8353,\n  0x831e, 0x832c, 0x834b, 0x8327, 0x8348, 0x8653, 0x8652, 0x86a2,\n  0x86a8, 0x8696, 0x868d, 0x8691, 0x869e, 0x8687, 0x8697, 0x8686,\n  0x868b, 0x869a, 0x8685, 0x86a5, 0x8699, 0x86a1, 0x86a7, 0x8695,\n  0x8698, 0x868e, 0x869d, 0x8690, 0x8694, 0x8843, 0x8844, 0x886d,\n  0x8875, 0x8876, 0x8872, 0x8880, 0x8871, 0x887f, 0x886f, 0x8883,\n  0x887e, 0x8874, 0x887c, 0x8a12, 0x8c47, 0x8c57, 0x8c7b, 0x8ca4,\n  0x8ca3, 0x8d76, 0x8d78, 0x8db5, 0x8db7, 0x8db6, 0x8ed1, 0x8ed3,\n  0x8ffe, 0x8ff5, 0x9002, 0x8fff, 0x8ffb, 0x9004, 0x8ffc, 0x8ff6,\n  0x90d6, 0x90e0, 0x90d9, 0x90da, 0x90e3, 0x90df, 0x90e5, 0x90d8,\n  0x90db, 0x90d7, 0x90dc, 0x90e4, 0x9150,\n  /* 0xd4 */\n  0x914e, 0x914f, 0x91d5, 0x91e2, 0x91da, 0x965c, 0x965f, 0x96bc,\n  0x98e3, 0x9adf, 0x9b2f, 0x4e7f, 0x5070, 0x506a, 0x5061, 0x505e,\n  0x5060, 0x5053, 0x504b, 0x505d, 0x5072, 0x5048, 0x504d, 0x5041,\n  0x505b, 0x504a, 0x5062, 0x5015, 0x5045, 0x505f, 0x5069, 0x506b,\n  0x5063, 0x5064, 0x5046, 0x5040, 0x506e, 0x5073, 0x5057, 0x5051,\n  0x51d0, 0x526b, 0x526d, 0x526c, 0x526e, 0x52d6, 0x52d3, 0x532d,\n  0x539c, 0x5575, 0x5576, 0x553c, 0x554d, 0x5550, 0x5534, 0x552a,\n  0x5551, 0x5562, 0x5536, 0x5535, 0x5530, 0x5552, 0x5545, 0x550c,\n  0x5532, 0x5565, 0x554e, 0x5539, 0x5548, 0x552d, 0x553b, 0x5540,\n  0x554b, 0x570a, 0x5707, 0x57fb, 0x5814, 0x57e2, 0x57f6, 0x57dc,\n  0x57f4, 0x5800, 0x57ed, 0x57fd, 0x5808, 0x57f8, 0x580b, 0x57f3,\n  0x57cf, 0x5807, 0x57ee, 0x57e3, 0x57f2, 0x57e5, 0x57ec, 0x57e1,\n  0x580e, 0x57fc, 0x5810, 0x57e7, 0x5801, 0x580c, 0x57f1, 0x57e9,\n  0x57f0, 0x580d, 0x5804, 0x595c, 0x5a60, 0x5a58, 0x5a55, 0x5a67,\n  0x5a5e, 0x5a38, 0x5a35, 0x5a6d, 0x5a50, 0x5a5f, 0x5a65, 0x5a6c,\n  0x5a53, 0x5a64, 0x5a57, 0x5a43, 0x5a5d, 0x5a52, 0x5a44, 0x5a5b,\n  0x5a48, 0x5a8e, 0x5a3e, 0x5a4d, 0x5a39, 0x5a4c, 0x5a70, 0x5a69,\n  0x5a47, 0x5a51, 0x5a56, 0x5a42, 0x5a5c, 0x5b72, 0x5b6e, 0x5bc1,\n  0x5bc0, 0x5c59, 0x5d1e, 0x5d0b, 0x5d1d, 0x5d1a, 0x5d20, 0x5d0c,\n  0x5d28, 0x5d0d, 0x5d26, 0x5d25, 0x5d0f,\n  /* 0xd5 */\n  0x5d30, 0x5d12, 0x5d23, 0x5d1f, 0x5d2e, 0x5e3e, 0x5e34, 0x5eb1,\n  0x5eb4, 0x5eb9, 0x5eb2, 0x5eb3, 0x5f36, 0x5f38, 0x5f9b, 0x5f96,\n  0x5f9f, 0x608a, 0x6090, 0x6086, 0x60be, 0x60b0, 0x60ba, 0x60d3,\n  0x60d4, 0x60cf, 0x60e4, 0x60d9, 0x60dd, 0x60c8, 0x60b1, 0x60db,\n  0x60b7, 0x60ca, 0x60bf, 0x60c3, 0x60cd, 0x60c0, 0x6332, 0x6365,\n  0x638a, 0x6382, 0x637d, 0x63bd, 0x639e, 0x63ad, 0x639d, 0x6397,\n  0x63ab, 0x638e, 0x636f, 0x6387, 0x6390, 0x636e, 0x63af, 0x6375,\n  0x639c, 0x636d, 0x63ae, 0x637c, 0x63a4, 0x633b, 0x639f, 0x6378,\n  0x6385, 0x6381, 0x6391, 0x638d, 0x6370, 0x6553, 0x65cd, 0x6665,\n  0x6661, 0x665b, 0x6659, 0x665c, 0x6662, 0x6718, 0x6879, 0x6887,\n  0x6890, 0x689c, 0x686d, 0x686e, 0x68ae, 0x68ab, 0x6956, 0x686f,\n  0x68a3, 0x68ac, 0x68a9, 0x6875, 0x6874, 0x68b2, 0x688f, 0x6877,\n  0x6892, 0x687c, 0x686b, 0x6872, 0x68aa, 0x6880, 0x6871, 0x687e,\n  0x689b, 0x6896, 0x688b, 0x68a0, 0x6889, 0x68a4, 0x6878, 0x687b,\n  0x6891, 0x688c, 0x688a, 0x687d, 0x6b36, 0x6b33, 0x6b37, 0x6b38,\n  0x6b91, 0x6b8f, 0x6b8d, 0x6b8e, 0x6b8c, 0x6c2a, 0x6dc0, 0x6dab,\n  0x6db4, 0x6db3, 0x6e74, 0x6dac, 0x6de9, 0x6de2, 0x6db7, 0x6df6,\n  0x6dd4, 0x6e00, 0x6dc8, 0x6de0, 0x6ddf, 0x6dd6, 0x6dbe, 0x6de5,\n  0x6ddc, 0x6ddd, 0x6ddb, 0x6df4, 0x6dca, 0x6dbd, 0x6ded, 0x6df0,\n  0x6dba, 0x6dd5, 0x6dc2, 0x6dcf, 0x6dc9,\n  /* 0xd6 */\n  0x6dd0, 0x6df2, 0x6dd3, 0x6dfd, 0x6dd7, 0x6dcd, 0x6de3, 0x6dbb,\n  0x70fa, 0x710d, 0x70f7, 0x7117, 0x70f4, 0x710c, 0x70f0, 0x7104,\n  0x70f3, 0x7110, 0x70fc, 0x70ff, 0x7106, 0x7113, 0x7100, 0x70f8,\n  0x70f6, 0x710b, 0x7102, 0x710e, 0x727e, 0x727b, 0x727c, 0x727f,\n  0x731d, 0x7317, 0x7307, 0x7311, 0x7318, 0x730a, 0x7308, 0x72ff,\n  0x730f, 0x731e, 0x7388, 0x73f6, 0x73f8, 0x73f5, 0x7404, 0x7401,\n  0x73fd, 0x7407, 0x7400, 0x73fa, 0x73fc, 0x73ff, 0x740c, 0x740b,\n  0x73f4, 0x7408, 0x7564, 0x7563, 0x75ce, 0x75d2, 0x75cf, 0x75cb,\n  0x75cc, 0x75d1, 0x75d0, 0x768f, 0x7689, 0x76d3, 0x7739, 0x772f,\n  0x772d, 0x7731, 0x7732, 0x7734, 0x7733, 0x773d, 0x7725, 0x773b,\n  0x7735, 0x7848, 0x7852, 0x7849, 0x784d, 0x784a, 0x784c, 0x7826,\n  0x7845, 0x7850, 0x7964, 0x7967, 0x7969, 0x796a, 0x7963, 0x796b,\n  0x7961, 0x79bb, 0x79fa, 0x79f8, 0x79f6, 0x79f7, 0x7a8f, 0x7a94,\n  0x7a90, 0x7b35, 0x7b47, 0x7b34, 0x7b25, 0x7b30, 0x7b22, 0x7b24,\n  0x7b33, 0x7b18, 0x7b2a, 0x7b1d, 0x7b31, 0x7b2b, 0x7b2d, 0x7b2f,\n  0x7b32, 0x7b38, 0x7b1a, 0x7b23, 0x7c94, 0x7c98, 0x7c96, 0x7ca3,\n  0x7d35, 0x7d3d, 0x7d38, 0x7d36, 0x7d3a, 0x7d45, 0x7d2c, 0x7d29,\n  0x7d41, 0x7d47, 0x7d3e, 0x7d3f, 0x7d4a, 0x7d3b, 0x7d28, 0x7f63,\n  0x7f95, 0x7f9c, 0x7f9d, 0x7f9b, 0x7fca, 0x7fcb, 0x7fcd, 0x7fd0,\n  0x7fd1, 0x7fc7, 0x7fcf, 0x7fc9, 0x801f,\n  /* 0xd7 */\n  0x801e, 0x801b, 0x8047, 0x8043, 0x8048, 0x8118, 0x8125, 0x8119,\n  0x811b, 0x812d, 0x811f, 0x812c, 0x811e, 0x8121, 0x8115, 0x8127,\n  0x811d, 0x8122, 0x8211, 0x8238, 0x8233, 0x823a, 0x8234, 0x8232,\n  0x8274, 0x8390, 0x83a3, 0x83a8, 0x838d, 0x837a, 0x8373, 0x83a4,\n  0x8374, 0x838f, 0x8381, 0x8395, 0x8399, 0x8375, 0x8394, 0x83a9,\n  0x837d, 0x8383, 0x838c, 0x839d, 0x839b, 0x83aa, 0x838b, 0x837e,\n  0x83a5, 0x83af, 0x8388, 0x8397, 0x83b0, 0x837f, 0x83a6, 0x8387,\n  0x83ae, 0x8376, 0x839a, 0x8659, 0x8656, 0x86bf, 0x86b7, 0x86c2,\n  0x86c1, 0x86c5, 0x86ba, 0x86b0, 0x86c8, 0x86b9, 0x86b3, 0x86b8,\n  0x86cc, 0x86b4, 0x86bb, 0x86bc, 0x86c3, 0x86bd, 0x86be, 0x8852,\n  0x8889, 0x8895, 0x88a8, 0x88a2, 0x88aa, 0x889a, 0x8891, 0x88a1,\n  0x889f, 0x8898, 0x88a7, 0x8899, 0x889b, 0x8897, 0x88a4, 0x88ac,\n  0x888c, 0x8893, 0x888e, 0x8982, 0x89d6, 0x89d9, 0x89d5, 0x8a30,\n  0x8a27, 0x8a2c, 0x8a1e, 0x8c39, 0x8c3b, 0x8c5c, 0x8c5d, 0x8c7d,\n  0x8ca5, 0x8d7d, 0x8d7b, 0x8d79, 0x8dbc, 0x8dc2, 0x8db9, 0x8dbf,\n  0x8dc1, 0x8ed8, 0x8ede, 0x8edd, 0x8edc, 0x8ed7, 0x8ee0, 0x8ee1,\n  0x9024, 0x900b, 0x9011, 0x901c, 0x900c, 0x9021, 0x90ef, 0x90ea,\n  0x90f0, 0x90f4, 0x90f2, 0x90f3, 0x90d4, 0x90eb, 0x90ec, 0x90e9,\n  0x9156, 0x9158, 0x915a, 0x9153, 0x9155, 0x91ec, 0x91f4, 0x91f1,\n  0x91f3, 0x91f8, 0x91e4, 0x91f9, 0x91ea,\n  /* 0xd8 */\n  0x91eb, 0x91f7, 0x91e8, 0x91ee, 0x957a, 0x9586, 0x9588, 0x967c,\n  0x966d, 0x966b, 0x9671, 0x966f, 0x96bf, 0x976a, 0x9804, 0x98e5,\n  0x9997, 0x509b, 0x5095, 0x5094, 0x509e, 0x508b, 0x50a3, 0x5083,\n  0x508c, 0x508e, 0x509d, 0x5068, 0x509c, 0x5092, 0x5082, 0x5087,\n  0x515f, 0x51d4, 0x5312, 0x5311, 0x53a4, 0x53a7, 0x5591, 0x55a8,\n  0x55a5, 0x55ad, 0x5577, 0x5645, 0x55a2, 0x5593, 0x5588, 0x558f,\n  0x55b5, 0x5581, 0x55a3, 0x5592, 0x55a4, 0x557d, 0x558c, 0x55a6,\n  0x557f, 0x5595, 0x55a1, 0x558e, 0x570c, 0x5829, 0x5837, 0x5819,\n  0x581e, 0x5827, 0x5823, 0x5828, 0x57f5, 0x5848, 0x5825, 0x581c,\n  0x581b, 0x5833, 0x583f, 0x5836, 0x582e, 0x5839, 0x5838, 0x582d,\n  0x582c, 0x583b, 0x5961, 0x5aaf, 0x5a94, 0x5a9f, 0x5a7a, 0x5aa2,\n  0x5a9e, 0x5a78, 0x5aa6, 0x5a7c, 0x5aa5, 0x5aac, 0x5a95, 0x5aae,\n  0x5a37, 0x5a84, 0x5a8a, 0x5a97, 0x5a83, 0x5a8b, 0x5aa9, 0x5a7b,\n  0x5a7d, 0x5a8c, 0x5a9c, 0x5a8f, 0x5a93, 0x5a9d, 0x5bea, 0x5bcd,\n  0x5bcb, 0x5bd4, 0x5bd1, 0x5bca, 0x5bce, 0x5c0c, 0x5c30, 0x5d37,\n  0x5d43, 0x5d6b, 0x5d41, 0x5d4b, 0x5d3f, 0x5d35, 0x5d51, 0x5d4e,\n  0x5d55, 0x5d33, 0x5d3a, 0x5d52, 0x5d3d, 0x5d31, 0x5d59, 0x5d42,\n  0x5d39, 0x5d49, 0x5d38, 0x5d3c, 0x5d32, 0x5d36, 0x5d40, 0x5d45,\n  0x5e44, 0x5e41, 0x5f58, 0x5fa6, 0x5fa5, 0x5fab, 0x60c9, 0x60b9,\n  0x60cc, 0x60e2, 0x60ce, 0x60c4, 0x6114,\n  /* 0xd9 */\n  0x60f2, 0x610a, 0x6116, 0x6105, 0x60f5, 0x6113, 0x60f8, 0x60fc,\n  0x60fe, 0x60c1, 0x6103, 0x6118, 0x611d, 0x6110, 0x60ff, 0x6104,\n  0x610b, 0x624a, 0x6394, 0x63b1, 0x63b0, 0x63ce, 0x63e5, 0x63e8,\n  0x63ef, 0x63c3, 0x649d, 0x63f3, 0x63ca, 0x63e0, 0x63f6, 0x63d5,\n  0x63f2, 0x63f5, 0x6461, 0x63df, 0x63be, 0x63dd, 0x63dc, 0x63c4,\n  0x63d8, 0x63d3, 0x63c2, 0x63c7, 0x63cc, 0x63cb, 0x63c8, 0x63f0,\n  0x63d7, 0x63d9, 0x6532, 0x6567, 0x656a, 0x6564, 0x655c, 0x6568,\n  0x6565, 0x658c, 0x659d, 0x659e, 0x65ae, 0x65d0, 0x65d2, 0x667c,\n  0x666c, 0x667b, 0x6680, 0x6671, 0x6679, 0x666a, 0x6672, 0x6701,\n  0x690c, 0x68d3, 0x6904, 0x68dc, 0x692a, 0x68ec, 0x68ea, 0x68f1,\n  0x690f, 0x68d6, 0x68f7, 0x68eb, 0x68e4, 0x68f6, 0x6913, 0x6910,\n  0x68f3, 0x68e1, 0x6907, 0x68cc, 0x6908, 0x6970, 0x68b4, 0x6911,\n  0x68ef, 0x68c6, 0x6914, 0x68f8, 0x68d0, 0x68fd, 0x68fc, 0x68e8,\n  0x690b, 0x690a, 0x6917, 0x68ce, 0x68c8, 0x68dd, 0x68de, 0x68e6,\n  0x68f4, 0x68d1, 0x6906, 0x68d4, 0x68e9, 0x6915, 0x6925, 0x68c7,\n  0x6b39, 0x6b3b, 0x6b3f, 0x6b3c, 0x6b94, 0x6b97, 0x6b99, 0x6b95,\n  0x6bbd, 0x6bf0, 0x6bf2, 0x6bf3, 0x6c30, 0x6dfc, 0x6e46, 0x6e47,\n  0x6e1f, 0x6e49, 0x6e88, 0x6e3c, 0x6e3d, 0x6e45, 0x6e62, 0x6e2b,\n  0x6e3f, 0x6e41, 0x6e5d, 0x6e73, 0x6e1c, 0x6e33, 0x6e4b, 0x6e40,\n  0x6e51, 0x6e3b, 0x6e03, 0x6e2e, 0x6e5e,\n  /* 0xda */\n  0x6e68, 0x6e5c, 0x6e61, 0x6e31, 0x6e28, 0x6e60, 0x6e71, 0x6e6b,\n  0x6e39, 0x6e22, 0x6e30, 0x6e53, 0x6e65, 0x6e27, 0x6e78, 0x6e64,\n  0x6e77, 0x6e55, 0x6e79, 0x6e52, 0x6e66, 0x6e35, 0x6e36, 0x6e5a,\n  0x7120, 0x711e, 0x712f, 0x70fb, 0x712e, 0x7131, 0x7123, 0x7125,\n  0x7122, 0x7132, 0x711f, 0x7128, 0x713a, 0x711b, 0x724b, 0x725a,\n  0x7288, 0x7289, 0x7286, 0x7285, 0x728b, 0x7312, 0x730b, 0x7330,\n  0x7322, 0x7331, 0x7333, 0x7327, 0x7332, 0x732d, 0x7326, 0x7323,\n  0x7335, 0x730c, 0x742e, 0x742c, 0x7430, 0x742b, 0x7416, 0x741a,\n  0x7421, 0x742d, 0x7431, 0x7424, 0x7423, 0x741d, 0x7429, 0x7420,\n  0x7432, 0x74fb, 0x752f, 0x756f, 0x756c, 0x75e7, 0x75da, 0x75e1,\n  0x75e6, 0x75dd, 0x75df, 0x75e4, 0x75d7, 0x7695, 0x7692, 0x76da,\n  0x7746, 0x7747, 0x7744, 0x774d, 0x7745, 0x774a, 0x774e, 0x774b,\n  0x774c, 0x77de, 0x77ec, 0x7860, 0x7864, 0x7865, 0x785c, 0x786d,\n  0x7871, 0x786a, 0x786e, 0x7870, 0x7869, 0x7868, 0x785e, 0x7862,\n  0x7974, 0x7973, 0x7972, 0x7970, 0x7a02, 0x7a0a, 0x7a03, 0x7a0c,\n  0x7a04, 0x7a99, 0x7ae6, 0x7ae4, 0x7b4a, 0x7b3b, 0x7b44, 0x7b48,\n  0x7b4c, 0x7b4e, 0x7b40, 0x7b58, 0x7b45, 0x7ca2, 0x7c9e, 0x7ca8,\n  0x7ca1, 0x7d58, 0x7d6f, 0x7d63, 0x7d53, 0x7d56, 0x7d67, 0x7d6a,\n  0x7d4f, 0x7d6d, 0x7d5c, 0x7d6b, 0x7d52, 0x7d54, 0x7d69, 0x7d51,\n  0x7d5f, 0x7d4e, 0x7f3e, 0x7f3f, 0x7f65,\n  /* 0xdb */\n  0x7f66, 0x7fa2, 0x7fa0, 0x7fa1, 0x7fd7, 0x8051, 0x804f, 0x8050,\n  0x80fe, 0x80d4, 0x8143, 0x814a, 0x8152, 0x814f, 0x8147, 0x813d,\n  0x814d, 0x813a, 0x81e6, 0x81ee, 0x81f7, 0x81f8, 0x81f9, 0x8204,\n  0x823c, 0x823d, 0x823f, 0x8275, 0x833b, 0x83cf, 0x83f9, 0x8423,\n  0x83c0, 0x83e8, 0x8412, 0x83e7, 0x83e4, 0x83fc, 0x83f6, 0x8410,\n  0x83c6, 0x83c8, 0x83eb, 0x83e3, 0x83bf, 0x8401, 0x83dd, 0x83e5,\n  0x83d8, 0x83ff, 0x83e1, 0x83cb, 0x83ce, 0x83d6, 0x83f5, 0x83c9,\n  0x8409, 0x840f, 0x83de, 0x8411, 0x8406, 0x83c2, 0x83f3, 0x83d5,\n  0x83fa, 0x83c7, 0x83d1, 0x83ea, 0x8413, 0x83c3, 0x83ec, 0x83ee,\n  0x83c4, 0x83fb, 0x83d7, 0x83e2, 0x841b, 0x83db, 0x83fe, 0x86d8,\n  0x86e2, 0x86e6, 0x86d3, 0x86e3, 0x86da, 0x86ea, 0x86dd, 0x86eb,\n  0x86dc, 0x86ec, 0x86e9, 0x86d7, 0x86e8, 0x86d1, 0x8848, 0x8856,\n  0x8855, 0x88ba, 0x88d7, 0x88b9, 0x88b8, 0x88c0, 0x88be, 0x88b6,\n  0x88bc, 0x88b7, 0x88bd, 0x88b2, 0x8901, 0x88c9, 0x8995, 0x8998,\n  0x8997, 0x89dd, 0x89da, 0x89db, 0x8a4e, 0x8a4d, 0x8a39, 0x8a59,\n  0x8a40, 0x8a57, 0x8a58, 0x8a44, 0x8a45, 0x8a52, 0x8a48, 0x8a51,\n  0x8a4a, 0x8a4c, 0x8a4f, 0x8c5f, 0x8c81, 0x8c80, 0x8cba, 0x8cbe,\n  0x8cb0, 0x8cb9, 0x8cb5, 0x8d84, 0x8d80, 0x8d89, 0x8dd8, 0x8dd3,\n  0x8dcd, 0x8dc7, 0x8dd6, 0x8ddc, 0x8dcf, 0x8dd5, 0x8dd9, 0x8dc8,\n  0x8dd7, 0x8dc5, 0x8eef, 0x8ef7, 0x8efa,\n  /* 0xdc */\n  0x8ef9, 0x8ee6, 0x8eee, 0x8ee5, 0x8ef5, 0x8ee7, 0x8ee8, 0x8ef6,\n  0x8eeb, 0x8ef1, 0x8eec, 0x8ef4, 0x8ee9, 0x902d, 0x9034, 0x902f,\n  0x9106, 0x912c, 0x9104, 0x90ff, 0x90fc, 0x9108, 0x90f9, 0x90fb,\n  0x9101, 0x9100, 0x9107, 0x9105, 0x9103, 0x9161, 0x9164, 0x915f,\n  0x9162, 0x9160, 0x9201, 0x920a, 0x9225, 0x9203, 0x921a, 0x9226,\n  0x920f, 0x920c, 0x9200, 0x9212, 0x91ff, 0x91fd, 0x9206, 0x9204,\n  0x9227, 0x9202, 0x921c, 0x9224, 0x9219, 0x9217, 0x9205, 0x9216,\n  0x957b, 0x958d, 0x958c, 0x9590, 0x9687, 0x967e, 0x9688, 0x9689,\n  0x9683, 0x9680, 0x96c2, 0x96c8, 0x96c3, 0x96f1, 0x96f0, 0x976c,\n  0x9770, 0x976e, 0x9807, 0x98a9, 0x98eb, 0x9ce6, 0x9ef9, 0x4e83,\n  0x4e84, 0x4eb6, 0x50bd, 0x50bf, 0x50c6, 0x50ae, 0x50c4, 0x50ca,\n  0x50b4, 0x50c8, 0x50c2, 0x50b0, 0x50c1, 0x50ba, 0x50b1, 0x50cb,\n  0x50c9, 0x50b6, 0x50b8, 0x51d7, 0x527a, 0x5278, 0x527b, 0x527c,\n  0x55c3, 0x55db, 0x55cc, 0x55d0, 0x55cb, 0x55ca, 0x55dd, 0x55c0,\n  0x55d4, 0x55c4, 0x55e9, 0x55bf, 0x55d2, 0x558d, 0x55cf, 0x55d5,\n  0x55e2, 0x55d6, 0x55c8, 0x55f2, 0x55cd, 0x55d9, 0x55c2, 0x5714,\n  0x5853, 0x5868, 0x5864, 0x584f, 0x584d, 0x5849, 0x586f, 0x5855,\n  0x584e, 0x585d, 0x5859, 0x5865, 0x585b, 0x583d, 0x5863, 0x5871,\n  0x58fc, 0x5ac7, 0x5ac4, 0x5acb, 0x5aba, 0x5ab8, 0x5ab1, 0x5ab5,\n  0x5ab0, 0x5abf, 0x5ac8, 0x5abb, 0x5ac6,\n  /* 0xdd */\n  0x5ab7, 0x5ac0, 0x5aca, 0x5ab4, 0x5ab6, 0x5acd, 0x5ab9, 0x5a90,\n  0x5bd6, 0x5bd8, 0x5bd9, 0x5c1f, 0x5c33, 0x5d71, 0x5d63, 0x5d4a,\n  0x5d65, 0x5d72, 0x5d6c, 0x5d5e, 0x5d68, 0x5d67, 0x5d62, 0x5df0,\n  0x5e4f, 0x5e4e, 0x5e4a, 0x5e4d, 0x5e4b, 0x5ec5, 0x5ecc, 0x5ec6,\n  0x5ecb, 0x5ec7, 0x5f40, 0x5faf, 0x5fad, 0x60f7, 0x6149, 0x614a,\n  0x612b, 0x6145, 0x6136, 0x6132, 0x612e, 0x6146, 0x612f, 0x614f,\n  0x6129, 0x6140, 0x6220, 0x9168, 0x6223, 0x6225, 0x6224, 0x63c5,\n  0x63f1, 0x63eb, 0x6410, 0x6412, 0x6409, 0x6420, 0x6424, 0x6433,\n  0x6443, 0x641f, 0x6415, 0x6418, 0x6439, 0x6437, 0x6422, 0x6423,\n  0x640c, 0x6426, 0x6430, 0x6428, 0x6441, 0x6435, 0x642f, 0x640a,\n  0x641a, 0x6440, 0x6425, 0x6427, 0x640b, 0x63e7, 0x641b, 0x642e,\n  0x6421, 0x640e, 0x656f, 0x6592, 0x65d3, 0x6686, 0x668c, 0x6695,\n  0x6690, 0x668b, 0x668a, 0x6699, 0x6694, 0x6678, 0x6720, 0x6966,\n  0x695f, 0x6938, 0x694e, 0x6962, 0x6971, 0x693f, 0x6945, 0x696a,\n  0x6939, 0x6942, 0x6957, 0x6959, 0x697a, 0x6948, 0x6949, 0x6935,\n  0x696c, 0x6933, 0x693d, 0x6965, 0x68f0, 0x6978, 0x6934, 0x6969,\n  0x6940, 0x696f, 0x6944, 0x6976, 0x6958, 0x6941, 0x6974, 0x694c,\n  0x693b, 0x694b, 0x6937, 0x695c, 0x694f, 0x6951, 0x6932, 0x6952,\n  0x692f, 0x697b, 0x693c, 0x6b46, 0x6b45, 0x6b43, 0x6b42, 0x6b48,\n  0x6b41, 0x6b9b, 0xfa0d, 0x6bfb, 0x6bfc,\n  /* 0xde */\n  0x6bf9, 0x6bf7, 0x6bf8, 0x6e9b, 0x6ed6, 0x6ec8, 0x6e8f, 0x6ec0,\n  0x6e9f, 0x6e93, 0x6e94, 0x6ea0, 0x6eb1, 0x6eb9, 0x6ec6, 0x6ed2,\n  0x6ebd, 0x6ec1, 0x6e9e, 0x6ec9, 0x6eb7, 0x6eb0, 0x6ecd, 0x6ea6,\n  0x6ecf, 0x6eb2, 0x6ebe, 0x6ec3, 0x6edc, 0x6ed8, 0x6e99, 0x6e92,\n  0x6e8e, 0x6e8d, 0x6ea4, 0x6ea1, 0x6ebf, 0x6eb3, 0x6ed0, 0x6eca,\n  0x6e97, 0x6eae, 0x6ea3, 0x7147, 0x7154, 0x7152, 0x7163, 0x7160,\n  0x7141, 0x715d, 0x7162, 0x7172, 0x7178, 0x716a, 0x7161, 0x7142,\n  0x7158, 0x7143, 0x714b, 0x7170, 0x715f, 0x7150, 0x7153, 0x7144,\n  0x714d, 0x715a, 0x724f, 0x728d, 0x728c, 0x7291, 0x7290, 0x728e,\n  0x733c, 0x7342, 0x733b, 0x733a, 0x7340, 0x734a, 0x7349, 0x7444,\n  0x744a, 0x744b, 0x7452, 0x7451, 0x7457, 0x7440, 0x744f, 0x7450,\n  0x744e, 0x7442, 0x7446, 0x744d, 0x7454, 0x74e1, 0x74ff, 0x74fe,\n  0x74fd, 0x751d, 0x7579, 0x7577, 0x6983, 0x75ef, 0x760f, 0x7603,\n  0x75f7, 0x75fe, 0x75fc, 0x75f9, 0x75f8, 0x7610, 0x75fb, 0x75f6,\n  0x75ed, 0x75f5, 0x75fd, 0x7699, 0x76b5, 0x76dd, 0x7755, 0x775f,\n  0x7760, 0x7752, 0x7756, 0x775a, 0x7769, 0x7767, 0x7754, 0x7759,\n  0x776d, 0x77e0, 0x7887, 0x789a, 0x7894, 0x788f, 0x7884, 0x7895,\n  0x7885, 0x7886, 0x78a1, 0x7883, 0x7879, 0x7899, 0x7880, 0x7896,\n  0x787b, 0x797c, 0x7982, 0x797d, 0x7979, 0x7a11, 0x7a18, 0x7a19,\n  0x7a12, 0x7a17, 0x7a15, 0x7a22, 0x7a13,\n  /* 0xdf */\n  0x7a1b, 0x7a10, 0x7aa3, 0x7aa2, 0x7a9e, 0x7aeb, 0x7b66, 0x7b64,\n  0x7b6d, 0x7b74, 0x7b69, 0x7b72, 0x7b65, 0x7b73, 0x7b71, 0x7b70,\n  0x7b61, 0x7b78, 0x7b76, 0x7b63, 0x7cb2, 0x7cb4, 0x7caf, 0x7d88,\n  0x7d86, 0x7d80, 0x7d8d, 0x7d7f, 0x7d85, 0x7d7a, 0x7d8e, 0x7d7b,\n  0x7d83, 0x7d7c, 0x7d8c, 0x7d94, 0x7d84, 0x7d7d, 0x7d92, 0x7f6d,\n  0x7f6b, 0x7f67, 0x7f68, 0x7f6c, 0x7fa6, 0x7fa5, 0x7fa7, 0x7fdb,\n  0x7fdc, 0x8021, 0x8164, 0x8160, 0x8177, 0x815c, 0x8169, 0x815b,\n  0x8162, 0x8172, 0x6721, 0x815e, 0x8176, 0x8167, 0x816f, 0x8144,\n  0x8161, 0x821d, 0x8249, 0x8244, 0x8240, 0x8242, 0x8245, 0x84f1,\n  0x843f, 0x8456, 0x8476, 0x8479, 0x848f, 0x848d, 0x8465, 0x8451,\n  0x8440, 0x8486, 0x8467, 0x8430, 0x844d, 0x847d, 0x845a, 0x8459,\n  0x8474, 0x8473, 0x845d, 0x8507, 0x845e, 0x8437, 0x843a, 0x8434,\n  0x847a, 0x8443, 0x8478, 0x8432, 0x8445, 0x8429, 0x83d9, 0x844b,\n  0x842f, 0x8442, 0x842d, 0x845f, 0x8470, 0x8439, 0x844e, 0x844c,\n  0x8452, 0x846f, 0x84c5, 0x848e, 0x843b, 0x8447, 0x8436, 0x8433,\n  0x8468, 0x847e, 0x8444, 0x842b, 0x8460, 0x8454, 0x846e, 0x8450,\n  0x870b, 0x8704, 0x86f7, 0x870c, 0x86fa, 0x86d6, 0x86f5, 0x874d,\n  0x86f8, 0x870e, 0x8709, 0x8701, 0x86f6, 0x870d, 0x8705, 0x88d6,\n  0x88cb, 0x88cd, 0x88ce, 0x88de, 0x88db, 0x88da, 0x88cc, 0x88d0,\n  0x8985, 0x899b, 0x89df, 0x89e5, 0x89e4,\n  /* 0xe0 */\n  0x89e1, 0x89e0, 0x89e2, 0x89dc, 0x89e6, 0x8a76, 0x8a86, 0x8a7f,\n  0x8a61, 0x8a3f, 0x8a77, 0x8a82, 0x8a84, 0x8a75, 0x8a83, 0x8a81,\n  0x8a74, 0x8a7a, 0x8c3c, 0x8c4b, 0x8c4a, 0x8c65, 0x8c64, 0x8c66,\n  0x8c86, 0x8c84, 0x8c85, 0x8ccc, 0x8d68, 0x8d69, 0x8d91, 0x8d8c,\n  0x8d8e, 0x8d8f, 0x8d8d, 0x8d93, 0x8d94, 0x8d90, 0x8d92, 0x8df0,\n  0x8de0, 0x8dec, 0x8df1, 0x8dee, 0x8dd0, 0x8de9, 0x8de3, 0x8de2,\n  0x8de7, 0x8df2, 0x8deb, 0x8df4, 0x8f06, 0x8eff, 0x8f01, 0x8f00,\n  0x8f05, 0x8f07, 0x8f08, 0x8f02, 0x8f0b, 0x9052, 0x903f, 0x9044,\n  0x9049, 0x903d, 0x9110, 0x910d, 0x910f, 0x9111, 0x9116, 0x9114,\n  0x910b, 0x910e, 0x916e, 0x916f, 0x9248, 0x9252, 0x9230, 0x923a,\n  0x9266, 0x9233, 0x9265, 0x925e, 0x9283, 0x922e, 0x924a, 0x9246,\n  0x926d, 0x926c, 0x924f, 0x9260, 0x9267, 0x926f, 0x9236, 0x9261,\n  0x9270, 0x9231, 0x9254, 0x9263, 0x9250, 0x9272, 0x924e, 0x9253,\n  0x924c, 0x9256, 0x9232, 0x959f, 0x959c, 0x959e, 0x959b, 0x9692,\n  0x9693, 0x9691, 0x9697, 0x96ce, 0x96fa, 0x96fd, 0x96f8, 0x96f5,\n  0x9773, 0x9777, 0x9778, 0x9772, 0x980f, 0x980d, 0x980e, 0x98ac,\n  0x98f6, 0x98f9, 0x99af, 0x99b2, 0x99b0, 0x99b5, 0x9aad, 0x9aab,\n  0x9b5b, 0x9cea, 0x9ced, 0x9ce7, 0x9e80, 0x9efd, 0x50e6, 0x50d4,\n  0x50d7, 0x50e8, 0x50f3, 0x50db, 0x50ea, 0x50dd, 0x50e4, 0x50d3,\n  0x50ec, 0x50f0, 0x50ef, 0x50e3, 0x50e0,\n  /* 0xe1 */\n  0x51d8, 0x5280, 0x5281, 0x52e9, 0x52eb, 0x5330, 0x53ac, 0x5627,\n  0x5615, 0x560c, 0x5612, 0x55fc, 0x560f, 0x561c, 0x5601, 0x5613,\n  0x5602, 0x55fa, 0x561d, 0x5604, 0x55ff, 0x55f9, 0x5889, 0x587c,\n  0x5890, 0x5898, 0x5886, 0x5881, 0x587f, 0x5874, 0x588b, 0x587a,\n  0x5887, 0x5891, 0x588e, 0x5876, 0x5882, 0x5888, 0x587b, 0x5894,\n  0x588f, 0x58fe, 0x596b, 0x5adc, 0x5aee, 0x5ae5, 0x5ad5, 0x5aea,\n  0x5ada, 0x5aed, 0x5aeb, 0x5af3, 0x5ae2, 0x5ae0, 0x5adb, 0x5aec,\n  0x5ade, 0x5add, 0x5ad9, 0x5ae8, 0x5adf, 0x5b77, 0x5be0, 0x5be3,\n  0x5c63, 0x5d82, 0x5d80, 0x5d7d, 0x5d86, 0x5d7a, 0x5d81, 0x5d77,\n  0x5d8a, 0x5d89, 0x5d88, 0x5d7e, 0x5d7c, 0x5d8d, 0x5d79, 0x5d7f,\n  0x5e58, 0x5e59, 0x5e53, 0x5ed8, 0x5ed1, 0x5ed7, 0x5ece, 0x5edc,\n  0x5ed5, 0x5ed9, 0x5ed2, 0x5ed4, 0x5f44, 0x5f43, 0x5f6f, 0x5fb6,\n  0x612c, 0x6128, 0x6141, 0x615e, 0x6171, 0x6173, 0x6152, 0x6153,\n  0x6172, 0x616c, 0x6180, 0x6174, 0x6154, 0x617a, 0x615b, 0x6165,\n  0x613b, 0x616a, 0x6161, 0x6156, 0x6229, 0x6227, 0x622b, 0x642b,\n  0x644d, 0x645b, 0x645d, 0x6474, 0x6476, 0x6472, 0x6473, 0x647d,\n  0x6475, 0x6466, 0x64a6, 0x644e, 0x6482, 0x645e, 0x645c, 0x644b,\n  0x6453, 0x6460, 0x6450, 0x647f, 0x643f, 0x646c, 0x646b, 0x6459,\n  0x6465, 0x6477, 0x6573, 0x65a0, 0x66a1, 0x66a0, 0x669f, 0x6705,\n  0x6704, 0x6722, 0x69b1, 0x69b6, 0x69c9,\n  /* 0xe2 */\n  0x69a0, 0x69ce, 0x6996, 0x69b0, 0x69ac, 0x69bc, 0x6991, 0x6999,\n  0x698e, 0x69a7, 0x698d, 0x69a9, 0x69be, 0x69af, 0x69bf, 0x69c4,\n  0x69bd, 0x69a4, 0x69d4, 0x69b9, 0x69ca, 0x699a, 0x69cf, 0x69b3,\n  0x6993, 0x69aa, 0x69a1, 0x699e, 0x69d9, 0x6997, 0x6990, 0x69c2,\n  0x69b5, 0x69a5, 0x69c6, 0x6b4a, 0x6b4d, 0x6b4b, 0x6b9e, 0x6b9f,\n  0x6ba0, 0x6bc3, 0x6bc4, 0x6bfe, 0x6ece, 0x6ef5, 0x6ef1, 0x6f03,\n  0x6f25, 0x6ef8, 0x6f37, 0x6efb, 0x6f2e, 0x6f09, 0x6f4e, 0x6f19,\n  0x6f1a, 0x6f27, 0x6f18, 0x6f3b, 0x6f12, 0x6eed, 0x6f0a, 0x6f36,\n  0x6f73, 0x6ef9, 0x6eee, 0x6f2d, 0x6f40, 0x6f30, 0x6f3c, 0x6f35,\n  0x6eeb, 0x6f07, 0x6f0e, 0x6f43, 0x6f05, 0x6efd, 0x6ef6, 0x6f39,\n  0x6f1c, 0x6efc, 0x6f3a, 0x6f1f, 0x6f0d, 0x6f1e, 0x6f08, 0x6f21,\n  0x7187, 0x7190, 0x7189, 0x7180, 0x7185, 0x7182, 0x718f, 0x717b,\n  0x7186, 0x7181, 0x7197, 0x7244, 0x7253, 0x7297, 0x7295, 0x7293,\n  0x7343, 0x734d, 0x7351, 0x734c, 0x7462, 0x7473, 0x7471, 0x7475,\n  0x7472, 0x7467, 0x746e, 0x7500, 0x7502, 0x7503, 0x757d, 0x7590,\n  0x7616, 0x7608, 0x760c, 0x7615, 0x7611, 0x760a, 0x7614, 0x76b8,\n  0x7781, 0x777c, 0x7785, 0x7782, 0x776e, 0x7780, 0x776f, 0x777e,\n  0x7783, 0x78b2, 0x78aa, 0x78b4, 0x78ad, 0x78a8, 0x787e, 0x78ab,\n  0x789e, 0x78a5, 0x78a0, 0x78ac, 0x78a2, 0x78a4, 0x7998, 0x798a,\n  0x798b, 0x7996, 0x7995, 0x7994, 0x7993,\n  /* 0xe3 */\n  0x7997, 0x7988, 0x7992, 0x7990, 0x7a2b, 0x7a4a, 0x7a30, 0x7a2f,\n  0x7a28, 0x7a26, 0x7aa8, 0x7aab, 0x7aac, 0x7aee, 0x7b88, 0x7b9c,\n  0x7b8a, 0x7b91, 0x7b90, 0x7b96, 0x7b8d, 0x7b8c, 0x7b9b, 0x7b8e,\n  0x7b85, 0x7b98, 0x5284, 0x7b99, 0x7ba4, 0x7b82, 0x7cbb, 0x7cbf,\n  0x7cbc, 0x7cba, 0x7da7, 0x7db7, 0x7dc2, 0x7da3, 0x7daa, 0x7dc1,\n  0x7dc0, 0x7dc5, 0x7d9d, 0x7dce, 0x7dc4, 0x7dc6, 0x7dcb, 0x7dcc,\n  0x7daf, 0x7db9, 0x7d96, 0x7dbc, 0x7d9f, 0x7da6, 0x7dae, 0x7da9,\n  0x7da1, 0x7dc9, 0x7f73, 0x7fe2, 0x7fe3, 0x7fe5, 0x7fde, 0x8024,\n  0x805d, 0x805c, 0x8189, 0x8186, 0x8183, 0x8187, 0x818d, 0x818c,\n  0x818b, 0x8215, 0x8497, 0x84a4, 0x84a1, 0x849f, 0x84ba, 0x84ce,\n  0x84c2, 0x84ac, 0x84ae, 0x84ab, 0x84b9, 0x84b4, 0x84c1, 0x84cd,\n  0x84aa, 0x849a, 0x84b1, 0x84d0, 0x849d, 0x84a7, 0x84bb, 0x84a2,\n  0x8494, 0x84c7, 0x84cc, 0x849b, 0x84a9, 0x84af, 0x84a8, 0x84d6,\n  0x8498, 0x84b6, 0x84cf, 0x84a0, 0x84d7, 0x84d4, 0x84d2, 0x84db,\n  0x84b0, 0x8491, 0x8661, 0x8733, 0x8723, 0x8728, 0x876b, 0x8740,\n  0x872e, 0x871e, 0x8721, 0x8719, 0x871b, 0x8743, 0x872c, 0x8741,\n  0x873e, 0x8746, 0x8720, 0x8732, 0x872a, 0x872d, 0x873c, 0x8712,\n  0x873a, 0x8731, 0x8735, 0x8742, 0x8726, 0x8727, 0x8738, 0x8724,\n  0x871a, 0x8730, 0x8711, 0x88f7, 0x88e7, 0x88f1, 0x88f2, 0x88fa,\n  0x88fe, 0x88ee, 0x88fc, 0x88f6, 0x88fb,\n  /* 0xe4 */\n  0x88f0, 0x88ec, 0x88eb, 0x899d, 0x89a1, 0x899f, 0x899e, 0x89e9,\n  0x89eb, 0x89e8, 0x8aab, 0x8a99, 0x8a8b, 0x8a92, 0x8a8f, 0x8a96,\n  0x8c3d, 0x8c68, 0x8c69, 0x8cd5, 0x8ccf, 0x8cd7, 0x8d96, 0x8e09,\n  0x8e02, 0x8dff, 0x8e0d, 0x8dfd, 0x8e0a, 0x8e03, 0x8e07, 0x8e06,\n  0x8e05, 0x8dfe, 0x8e00, 0x8e04, 0x8f10, 0x8f11, 0x8f0e, 0x8f0d,\n  0x9123, 0x911c, 0x9120, 0x9122, 0x911f, 0x911d, 0x911a, 0x9124,\n  0x9121, 0x911b, 0x917a, 0x9172, 0x9179, 0x9173, 0x92a5, 0x92a4,\n  0x9276, 0x929b, 0x927a, 0x92a0, 0x9294, 0x92aa, 0x928d, 0x92a6,\n  0x929a, 0x92ab, 0x9279, 0x9297, 0x927f, 0x92a3, 0x92ee, 0x928e,\n  0x9282, 0x9295, 0x92a2, 0x927d, 0x9288, 0x92a1, 0x928a, 0x9286,\n  0x928c, 0x9299, 0x92a7, 0x927e, 0x9287, 0x92a9, 0x929d, 0x928b,\n  0x922d, 0x969e, 0x96a1, 0x96ff, 0x9758, 0x977d, 0x977a, 0x977e,\n  0x9783, 0x9780, 0x9782, 0x977b, 0x9784, 0x9781, 0x977f, 0x97ce,\n  0x97cd, 0x9816, 0x98ad, 0x98ae, 0x9902, 0x9900, 0x9907, 0x999d,\n  0x999c, 0x99c3, 0x99b9, 0x99bb, 0x99ba, 0x99c2, 0x99bd, 0x99c7,\n  0x9ab1, 0x9ae3, 0x9ae7, 0x9b3e, 0x9b3f, 0x9b60, 0x9b61, 0x9b5f,\n  0x9cf1, 0x9cf2, 0x9cf5, 0x9ea7, 0x50ff, 0x5103, 0x5130, 0x50f8,\n  0x5106, 0x5107, 0x50f6, 0x50fe, 0x510b, 0x510c, 0x50fd, 0x510a,\n  0x528b, 0x528c, 0x52f1, 0x52ef, 0x5648, 0x5642, 0x564c, 0x5635,\n  0x5641, 0x564a, 0x5649, 0x5646, 0x5658,\n  /* 0xe5 */\n  0x565a, 0x5640, 0x5633, 0x563d, 0x562c, 0x563e, 0x5638, 0x562a,\n  0x563a, 0x571a, 0x58ab, 0x589d, 0x58b1, 0x58a0, 0x58a3, 0x58af,\n  0x58ac, 0x58a5, 0x58a1, 0x58ff, 0x5aff, 0x5af4, 0x5afd, 0x5af7,\n  0x5af6, 0x5b03, 0x5af8, 0x5b02, 0x5af9, 0x5b01, 0x5b07, 0x5b05,\n  0x5b0f, 0x5c67, 0x5d99, 0x5d97, 0x5d9f, 0x5d92, 0x5da2, 0x5d93,\n  0x5d95, 0x5da0, 0x5d9c, 0x5da1, 0x5d9a, 0x5d9e, 0x5e69, 0x5e5d,\n  0x5e60, 0x5e5c, 0x7df3, 0x5edb, 0x5ede, 0x5ee1, 0x5f49, 0x5fb2,\n  0x618b, 0x6183, 0x6179, 0x61b1, 0x61b0, 0x61a2, 0x6189, 0x619b,\n  0x6193, 0x61af, 0x61ad, 0x619f, 0x6192, 0x61aa, 0x61a1, 0x618d,\n  0x6166, 0x61b3, 0x622d, 0x646e, 0x6470, 0x6496, 0x64a0, 0x6485,\n  0x6497, 0x649c, 0x648f, 0x648b, 0x648a, 0x648c, 0x64a3, 0x649f,\n  0x6468, 0x64b1, 0x6498, 0x6576, 0x657a, 0x6579, 0x657b, 0x65b2,\n  0x65b3, 0x66b5, 0x66b0, 0x66a9, 0x66b2, 0x66b7, 0x66aa, 0x66af,\n  0x6a00, 0x6a06, 0x6a17, 0x69e5, 0x69f8, 0x6a15, 0x69f1, 0x69e4,\n  0x6a20, 0x69ff, 0x69ec, 0x69e2, 0x6a1b, 0x6a1d, 0x69fe, 0x6a27,\n  0x69f2, 0x69ee, 0x6a14, 0x69f7, 0x69e7, 0x6a40, 0x6a08, 0x69e6,\n  0x69fb, 0x6a0d, 0x69fc, 0x69eb, 0x6a09, 0x6a04, 0x6a18, 0x6a25,\n  0x6a0f, 0x69f6, 0x6a26, 0x6a07, 0x69f4, 0x6a16, 0x6b51, 0x6ba5,\n  0x6ba3, 0x6ba2, 0x6ba6, 0x6c01, 0x6c00, 0x6bff, 0x6c02, 0x6f41,\n  0x6f26, 0x6f7e, 0x6f87, 0x6fc6, 0x6f92,\n  /* 0xe6 */\n  0x6f8d, 0x6f89, 0x6f8c, 0x6f62, 0x6f4f, 0x6f85, 0x6f5a, 0x6f96,\n  0x6f76, 0x6f6c, 0x6f82, 0x6f55, 0x6f72, 0x6f52, 0x6f50, 0x6f57,\n  0x6f94, 0x6f93, 0x6f5d, 0x6f00, 0x6f61, 0x6f6b, 0x6f7d, 0x6f67,\n  0x6f90, 0x6f53, 0x6f8b, 0x6f69, 0x6f7f, 0x6f95, 0x6f63, 0x6f77,\n  0x6f6a, 0x6f7b, 0x71b2, 0x71af, 0x719b, 0x71b0, 0x71a0, 0x719a,\n  0x71a9, 0x71b5, 0x719d, 0x71a5, 0x719e, 0x71a4, 0x71a1, 0x71aa,\n  0x719c, 0x71a7, 0x71b3, 0x7298, 0x729a, 0x7358, 0x7352, 0x735e,\n  0x735f, 0x7360, 0x735d, 0x735b, 0x7361, 0x735a, 0x7359, 0x7362,\n  0x7487, 0x7489, 0x748a, 0x7486, 0x7481, 0x747d, 0x7485, 0x7488,\n  0x747c, 0x7479, 0x7508, 0x7507, 0x757e, 0x7625, 0x761e, 0x7619,\n  0x761d, 0x761c, 0x7623, 0x761a, 0x7628, 0x761b, 0x769c, 0x769d,\n  0x769e, 0x769b, 0x778d, 0x778f, 0x7789, 0x7788, 0x78cd, 0x78bb,\n  0x78cf, 0x78cc, 0x78d1, 0x78ce, 0x78d4, 0x78c8, 0x78c3, 0x78c4,\n  0x78c9, 0x799a, 0x79a1, 0x79a0, 0x799c, 0x79a2, 0x799b, 0x6b76,\n  0x7a39, 0x7ab2, 0x7ab4, 0x7ab3, 0x7bb7, 0x7bcb, 0x7bbe, 0x7bac,\n  0x7bce, 0x7baf, 0x7bb9, 0x7bca, 0x7bb5, 0x7cc5, 0x7cc8, 0x7ccc,\n  0x7ccb, 0x7df7, 0x7ddb, 0x7dea, 0x7de7, 0x7dd7, 0x7de1, 0x7e03,\n  0x7dfa, 0x7de6, 0x7df6, 0x7df1, 0x7df0, 0x7dee, 0x7ddf, 0x7f76,\n  0x7fac, 0x7fb0, 0x7fad, 0x7fed, 0x7feb, 0x7fea, 0x7fec, 0x7fe6,\n  0x7fe8, 0x8064, 0x8067, 0x81a3, 0x819f,\n  /* 0xe7 */\n  0x819e, 0x8195, 0x81a2, 0x8199, 0x8197, 0x8216, 0x824f, 0x8253,\n  0x8252, 0x8250, 0x824e, 0x8251, 0x8524, 0x853b, 0x850f, 0x8500,\n  0x8529, 0x850e, 0x8509, 0x850d, 0x851f, 0x850a, 0x8527, 0x851c,\n  0x84fb, 0x852b, 0x84fa, 0x8508, 0x850c, 0x84f4, 0x852a, 0x84f2,\n  0x8515, 0x84f7, 0x84eb, 0x84f3, 0x84fc, 0x8512, 0x84ea, 0x84e9,\n  0x8516, 0x84fe, 0x8528, 0x851d, 0x852e, 0x8502, 0x84fd, 0x851e,\n  0x84f6, 0x8531, 0x8526, 0x84e7, 0x84e8, 0x84f0, 0x84ef, 0x84f9,\n  0x8518, 0x8520, 0x8530, 0x850b, 0x8519, 0x852f, 0x8662, 0x8756,\n  0x8763, 0x8764, 0x8777, 0x87e1, 0x8773, 0x8758, 0x8754, 0x875b,\n  0x8752, 0x8761, 0x875a, 0x8751, 0x875e, 0x876d, 0x876a, 0x8750,\n  0x874e, 0x875f, 0x875d, 0x876f, 0x876c, 0x877a, 0x876e, 0x875c,\n  0x8765, 0x874f, 0x877b, 0x8775, 0x8762, 0x8767, 0x8769, 0x885a,\n  0x8905, 0x890c, 0x8914, 0x890b, 0x8917, 0x8918, 0x8919, 0x8906,\n  0x8916, 0x8911, 0x890e, 0x8909, 0x89a2, 0x89a4, 0x89a3, 0x89ed,\n  0x89f0, 0x89ec, 0x8acf, 0x8ac6, 0x8ab8, 0x8ad3, 0x8ad1, 0x8ad4,\n  0x8ad5, 0x8abb, 0x8ad7, 0x8abe, 0x8ac0, 0x8ac5, 0x8ad8, 0x8ac3,\n  0x8aba, 0x8abd, 0x8ad9, 0x8c3e, 0x8c4d, 0x8c8f, 0x8ce5, 0x8cdf,\n  0x8cd9, 0x8ce8, 0x8cda, 0x8cdd, 0x8ce7, 0x8da0, 0x8d9c, 0x8da1,\n  0x8d9b, 0x8e20, 0x8e23, 0x8e25, 0x8e24, 0x8e2e, 0x8e15, 0x8e1b,\n  0x8e16, 0x8e11, 0x8e19, 0x8e26, 0x8e27,\n  /* 0xe8 */\n  0x8e14, 0x8e12, 0x8e18, 0x8e13, 0x8e1c, 0x8e17, 0x8e1a, 0x8f2c,\n  0x8f24, 0x8f18, 0x8f1a, 0x8f20, 0x8f23, 0x8f16, 0x8f17, 0x9073,\n  0x9070, 0x906f, 0x9067, 0x906b, 0x912f, 0x912b, 0x9129, 0x912a,\n  0x9132, 0x9126, 0x912e, 0x9185, 0x9186, 0x918a, 0x9181, 0x9182,\n  0x9184, 0x9180, 0x92d0, 0x92c3, 0x92c4, 0x92c0, 0x92d9, 0x92b6,\n  0x92cf, 0x92f1, 0x92df, 0x92d8, 0x92e9, 0x92d7, 0x92dd, 0x92cc,\n  0x92ef, 0x92c2, 0x92e8, 0x92ca, 0x92c8, 0x92ce, 0x92e6, 0x92cd,\n  0x92d5, 0x92c9, 0x92e0, 0x92de, 0x92e7, 0x92d1, 0x92d3, 0x92b5,\n  0x92e1, 0x92c6, 0x92b4, 0x957c, 0x95ac, 0x95ab, 0x95ae, 0x95b0,\n  0x96a4, 0x96a2, 0x96d3, 0x9705, 0x9708, 0x9702, 0x975a, 0x978a,\n  0x978e, 0x9788, 0x97d0, 0x97cf, 0x981e, 0x981d, 0x9826, 0x9829,\n  0x9828, 0x9820, 0x981b, 0x9827, 0x98b2, 0x9908, 0x98fa, 0x9911,\n  0x9914, 0x9916, 0x9917, 0x9915, 0x99dc, 0x99cd, 0x99cf, 0x99d3,\n  0x99d4, 0x99ce, 0x99c9, 0x99d6, 0x99d8, 0x99cb, 0x99d7, 0x99cc,\n  0x9ab3, 0x9aec, 0x9aeb, 0x9af3, 0x9af2, 0x9af1, 0x9b46, 0x9b43,\n  0x9b67, 0x9b74, 0x9b71, 0x9b66, 0x9b76, 0x9b75, 0x9b70, 0x9b68,\n  0x9b64, 0x9b6c, 0x9cfc, 0x9cfa, 0x9cfd, 0x9cff, 0x9cf7, 0x9d07,\n  0x9d00, 0x9cf9, 0x9cfb, 0x9d08, 0x9d05, 0x9d04, 0x9e83, 0x9ed3,\n  0x9f0f, 0x9f10, 0x511c, 0x5113, 0x5117, 0x511a, 0x5111, 0x51de,\n  0x5334, 0x53e1, 0x5670, 0x5660, 0x566e,\n  /* 0xe9 */\n  0x5673, 0x5666, 0x5663, 0x566d, 0x5672, 0x565e, 0x5677, 0x571c,\n  0x571b, 0x58c8, 0x58bd, 0x58c9, 0x58bf, 0x58ba, 0x58c2, 0x58bc,\n  0x58c6, 0x5b17, 0x5b19, 0x5b1b, 0x5b21, 0x5b14, 0x5b13, 0x5b10,\n  0x5b16, 0x5b28, 0x5b1a, 0x5b20, 0x5b1e, 0x5bef, 0x5dac, 0x5db1,\n  0x5da9, 0x5da7, 0x5db5, 0x5db0, 0x5dae, 0x5daa, 0x5da8, 0x5db2,\n  0x5dad, 0x5daf, 0x5db4, 0x5e67, 0x5e68, 0x5e66, 0x5e6f, 0x5ee9,\n  0x5ee7, 0x5ee6, 0x5ee8, 0x5ee5, 0x5f4b, 0x5fbc, 0x619d, 0x61a8,\n  0x6196, 0x61c5, 0x61b4, 0x61c6, 0x61c1, 0x61cc, 0x61ba, 0x61bf,\n  0x61b8, 0x618c, 0x64d7, 0x64d6, 0x64d0, 0x64cf, 0x64c9, 0x64bd,\n  0x6489, 0x64c3, 0x64db, 0x64f3, 0x64d9, 0x6533, 0x657f, 0x657c,\n  0x65a2, 0x66c8, 0x66be, 0x66c0, 0x66ca, 0x66cb, 0x66cf, 0x66bd,\n  0x66bb, 0x66ba, 0x66cc, 0x6723, 0x6a34, 0x6a66, 0x6a49, 0x6a67,\n  0x6a32, 0x6a68, 0x6a3e, 0x6a5d, 0x6a6d, 0x6a76, 0x6a5b, 0x6a51,\n  0x6a28, 0x6a5a, 0x6a3b, 0x6a3f, 0x6a41, 0x6a6a, 0x6a64, 0x6a50,\n  0x6a4f, 0x6a54, 0x6a6f, 0x6a69, 0x6a60, 0x6a3c, 0x6a5e, 0x6a56,\n  0x6a55, 0x6a4d, 0x6a4e, 0x6a46, 0x6b55, 0x6b54, 0x6b56, 0x6ba7,\n  0x6baa, 0x6bab, 0x6bc8, 0x6bc7, 0x6c04, 0x6c03, 0x6c06, 0x6fad,\n  0x6fcb, 0x6fa3, 0x6fc7, 0x6fbc, 0x6fce, 0x6fc8, 0x6f5e, 0x6fc4,\n  0x6fbd, 0x6f9e, 0x6fca, 0x6fa8, 0x7004, 0x6fa5, 0x6fae, 0x6fba,\n  0x6fac, 0x6faa, 0x6fcf, 0x6fbf, 0x6fb8,\n  /* 0xea */\n  0x6fa2, 0x6fc9, 0x6fab, 0x6fcd, 0x6faf, 0x6fb2, 0x6fb0, 0x71c5,\n  0x71c2, 0x71bf, 0x71b8, 0x71d6, 0x71c0, 0x71c1, 0x71cb, 0x71d4,\n  0x71ca, 0x71c7, 0x71cf, 0x71bd, 0x71d8, 0x71bc, 0x71c6, 0x71da,\n  0x71db, 0x729d, 0x729e, 0x7369, 0x7366, 0x7367, 0x736c, 0x7365,\n  0x736b, 0x736a, 0x747f, 0x749a, 0x74a0, 0x7494, 0x7492, 0x7495,\n  0x74a1, 0x750b, 0x7580, 0x762f, 0x762d, 0x7631, 0x763d, 0x7633,\n  0x763c, 0x7635, 0x7632, 0x7630, 0x76bb, 0x76e6, 0x779a, 0x779d,\n  0x77a1, 0x779c, 0x779b, 0x77a2, 0x77a3, 0x7795, 0x7799, 0x7797,\n  0x78dd, 0x78e9, 0x78e5, 0x78ea, 0x78de, 0x78e3, 0x78db, 0x78e1,\n  0x78e2, 0x78ed, 0x78df, 0x78e0, 0x79a4, 0x7a44, 0x7a48, 0x7a47,\n  0x7ab6, 0x7ab8, 0x7ab5, 0x7ab1, 0x7ab7, 0x7bde, 0x7be3, 0x7be7,\n  0x7bdd, 0x7bd5, 0x7be5, 0x7bda, 0x7be8, 0x7bf9, 0x7bd4, 0x7bea,\n  0x7be2, 0x7bdc, 0x7beb, 0x7bd8, 0x7bdf, 0x7cd2, 0x7cd4, 0x7cd7,\n  0x7cd0, 0x7cd1, 0x7e12, 0x7e21, 0x7e17, 0x7e0c, 0x7e1f, 0x7e20,\n  0x7e13, 0x7e0e, 0x7e1c, 0x7e15, 0x7e1a, 0x7e22, 0x7e0b, 0x7e0f,\n  0x7e16, 0x7e0d, 0x7e14, 0x7e25, 0x7e24, 0x7f43, 0x7f7b, 0x7f7c,\n  0x7f7a, 0x7fb1, 0x7fef, 0x802a, 0x8029, 0x806c, 0x81b1, 0x81a6,\n  0x81ae, 0x81b9, 0x81b5, 0x81ab, 0x81b0, 0x81ac, 0x81b4, 0x81b2,\n  0x81b7, 0x81a7, 0x81f2, 0x8255, 0x8256, 0x8257, 0x8556, 0x8545,\n  0x856b, 0x854d, 0x8553, 0x8561, 0x8558,\n  /* 0xeb */\n  0x8540, 0x8546, 0x8564, 0x8541, 0x8562, 0x8544, 0x8551, 0x8547,\n  0x8563, 0x853e, 0x855b, 0x8571, 0x854e, 0x856e, 0x8575, 0x8555,\n  0x8567, 0x8560, 0x858c, 0x8566, 0x855d, 0x8554, 0x8565, 0x856c,\n  0x8663, 0x8665, 0x8664, 0x879b, 0x878f, 0x8797, 0x8793, 0x8792,\n  0x8788, 0x8781, 0x8796, 0x8798, 0x8779, 0x8787, 0x87a3, 0x8785,\n  0x8790, 0x8791, 0x879d, 0x8784, 0x8794, 0x879c, 0x879a, 0x8789,\n  0x891e, 0x8926, 0x8930, 0x892d, 0x892e, 0x8927, 0x8931, 0x8922,\n  0x8929, 0x8923, 0x892f, 0x892c, 0x891f, 0x89f1, 0x8ae0, 0x8ae2,\n  0x8af2, 0x8af4, 0x8af5, 0x8add, 0x8b14, 0x8ae4, 0x8adf, 0x8af0,\n  0x8ac8, 0x8ade, 0x8ae1, 0x8ae8, 0x8aff, 0x8aef, 0x8afb, 0x8c91,\n  0x8c92, 0x8c90, 0x8cf5, 0x8cee, 0x8cf1, 0x8cf0, 0x8cf3, 0x8d6c,\n  0x8d6e, 0x8da5, 0x8da7, 0x8e33, 0x8e3e, 0x8e38, 0x8e40, 0x8e45,\n  0x8e36, 0x8e3c, 0x8e3d, 0x8e41, 0x8e30, 0x8e3f, 0x8ebd, 0x8f36,\n  0x8f2e, 0x8f35, 0x8f32, 0x8f39, 0x8f37, 0x8f34, 0x9076, 0x9079,\n  0x907b, 0x9086, 0x90fa, 0x9133, 0x9135, 0x9136, 0x9193, 0x9190,\n  0x9191, 0x918d, 0x918f, 0x9327, 0x931e, 0x9308, 0x931f, 0x9306,\n  0x930f, 0x937a, 0x9338, 0x933c, 0x931b, 0x9323, 0x9312, 0x9301,\n  0x9346, 0x932d, 0x930e, 0x930d, 0x92cb, 0x931d, 0x92fa, 0x9325,\n  0x9313, 0x92f9, 0x92f7, 0x9334, 0x9302, 0x9324, 0x92ff, 0x9329,\n  0x9339, 0x9335, 0x932a, 0x9314, 0x930c,\n  /* 0xec */\n  0x930b, 0x92fe, 0x9309, 0x9300, 0x92fb, 0x9316, 0x95bc, 0x95cd,\n  0x95be, 0x95b9, 0x95ba, 0x95b6, 0x95bf, 0x95b5, 0x95bd, 0x96a9,\n  0x96d4, 0x970b, 0x9712, 0x9710, 0x9799, 0x9797, 0x9794, 0x97f0,\n  0x97f8, 0x9835, 0x982f, 0x9832, 0x9924, 0x991f, 0x9927, 0x9929,\n  0x999e, 0x99ee, 0x99ec, 0x99e5, 0x99e4, 0x99f0, 0x99e3, 0x99ea,\n  0x99e9, 0x99e7, 0x9ab9, 0x9abf, 0x9ab4, 0x9abb, 0x9af6, 0x9afa,\n  0x9af9, 0x9af7, 0x9b33, 0x9b80, 0x9b85, 0x9b87, 0x9b7c, 0x9b7e,\n  0x9b7b, 0x9b82, 0x9b93, 0x9b92, 0x9b90, 0x9b7a, 0x9b95, 0x9b7d,\n  0x9b88, 0x9d25, 0x9d17, 0x9d20, 0x9d1e, 0x9d14, 0x9d29, 0x9d1d,\n  0x9d18, 0x9d22, 0x9d10, 0x9d19, 0x9d1f, 0x9e88, 0x9e86, 0x9e87,\n  0x9eae, 0x9ead, 0x9ed5, 0x9ed6, 0x9efa, 0x9f12, 0x9f3d, 0x5126,\n  0x5125, 0x5122, 0x5124, 0x5120, 0x5129, 0x52f4, 0x5693, 0x568c,\n  0x568d, 0x5686, 0x5684, 0x5683, 0x567e, 0x5682, 0x567f, 0x5681,\n  0x58d6, 0x58d4, 0x58cf, 0x58d2, 0x5b2d, 0x5b25, 0x5b32, 0x5b23,\n  0x5b2c, 0x5b27, 0x5b26, 0x5b2f, 0x5b2e, 0x5b7b, 0x5bf1, 0x5bf2,\n  0x5db7, 0x5e6c, 0x5e6a, 0x5fbe, 0x5fbb, 0x61c3, 0x61b5, 0x61bc,\n  0x61e7, 0x61e0, 0x61e5, 0x61e4, 0x61e8, 0x61de, 0x64ef, 0x64e9,\n  0x64e3, 0x64eb, 0x64e4, 0x64e8, 0x6581, 0x6580, 0x65b6, 0x65da,\n  0x66d2, 0x6a8d, 0x6a96, 0x6a81, 0x6aa5, 0x6a89, 0x6a9f, 0x6a9b,\n  0x6aa1, 0x6a9e, 0x6a87, 0x6a93, 0x6a8e,\n  /* 0xed */\n  0x6a95, 0x6a83, 0x6aa8, 0x6aa4, 0x6a91, 0x6a7f, 0x6aa6, 0x6a9a,\n  0x6a85, 0x6a8c, 0x6a92, 0x6b5b, 0x6bad, 0x6c09, 0x6fcc, 0x6fa9,\n  0x6ff4, 0x6fd4, 0x6fe3, 0x6fdc, 0x6fed, 0x6fe7, 0x6fe6, 0x6fde,\n  0x6ff2, 0x6fdd, 0x6fe2, 0x6fe8, 0x71e1, 0x71f1, 0x71e8, 0x71f2,\n  0x71e4, 0x71f0, 0x71e2, 0x7373, 0x736e, 0x736f, 0x7497, 0x74b2,\n  0x74ab, 0x7490, 0x74aa, 0x74ad, 0x74b1, 0x74a5, 0x74af, 0x7510,\n  0x7511, 0x7512, 0x750f, 0x7584, 0x7643, 0x7648, 0x7649, 0x7647,\n  0x76a4, 0x76e9, 0x77b5, 0x77ab, 0x77b2, 0x77b7, 0x77b6, 0x77b4,\n  0x77b1, 0x77a8, 0x77f0, 0x78f3, 0x78fd, 0x7902, 0x78fb, 0x78fc,\n  0x78f2, 0x7905, 0x78f9, 0x78fe, 0x7904, 0x79ab, 0x79a8, 0x7a5c,\n  0x7a5b, 0x7a56, 0x7a58, 0x7a54, 0x7a5a, 0x7abe, 0x7ac0, 0x7ac1,\n  0x7c05, 0x7c0f, 0x7bf2, 0x7c00, 0x7bff, 0x7bfb, 0x7c0e, 0x7bf4,\n  0x7c0b, 0x7bf3, 0x7c02, 0x7c09, 0x7c03, 0x7c01, 0x7bf8, 0x7bfd,\n  0x7c06, 0x7bf0, 0x7bf1, 0x7c10, 0x7c0a, 0x7ce8, 0x7e2d, 0x7e3c,\n  0x7e42, 0x7e33, 0x9848, 0x7e38, 0x7e2a, 0x7e49, 0x7e40, 0x7e47,\n  0x7e29, 0x7e4c, 0x7e30, 0x7e3b, 0x7e36, 0x7e44, 0x7e3a, 0x7f45,\n  0x7f7f, 0x7f7e, 0x7f7d, 0x7ff4, 0x7ff2, 0x802c, 0x81bb, 0x81c4,\n  0x81cc, 0x81ca, 0x81c5, 0x81c7, 0x81bc, 0x81e9, 0x825b, 0x825a,\n  0x825c, 0x8583, 0x8580, 0x858f, 0x85a7, 0x8595, 0x85a0, 0x858b,\n  0x85a3, 0x857b, 0x85a4, 0x859a, 0x859e,\n  /* 0xee */\n  0x8577, 0x857c, 0x8589, 0x85a1, 0x857a, 0x8578, 0x8557, 0x858e,\n  0x8596, 0x8586, 0x858d, 0x8599, 0x859d, 0x8581, 0x85a2, 0x8582,\n  0x8588, 0x8585, 0x8579, 0x8576, 0x8598, 0x8590, 0x859f, 0x8668,\n  0x87be, 0x87aa, 0x87ad, 0x87c5, 0x87b0, 0x87ac, 0x87b9, 0x87b5,\n  0x87bc, 0x87ae, 0x87c9, 0x87c3, 0x87c2, 0x87cc, 0x87b7, 0x87af,\n  0x87c4, 0x87ca, 0x87b4, 0x87b6, 0x87bf, 0x87b8, 0x87bd, 0x87de,\n  0x87b2, 0x8935, 0x8933, 0x893c, 0x893e, 0x8941, 0x8952, 0x8937,\n  0x8942, 0x89ad, 0x89af, 0x89ae, 0x89f2, 0x89f3, 0x8b1e, 0x8b18,\n  0x8b16, 0x8b11, 0x8b05, 0x8b0b, 0x8b22, 0x8b0f, 0x8b12, 0x8b15,\n  0x8b07, 0x8b0d, 0x8b08, 0x8b06, 0x8b1c, 0x8b13, 0x8b1a, 0x8c4f,\n  0x8c70, 0x8c72, 0x8c71, 0x8c6f, 0x8c95, 0x8c94, 0x8cf9, 0x8d6f,\n  0x8e4e, 0x8e4d, 0x8e53, 0x8e50, 0x8e4c, 0x8e47, 0x8f43, 0x8f40,\n  0x9085, 0x907e, 0x9138, 0x919a, 0x91a2, 0x919b, 0x9199, 0x919f,\n  0x91a1, 0x919d, 0x91a0, 0x93a1, 0x9383, 0x93af, 0x9364, 0x9356,\n  0x9347, 0x937c, 0x9358, 0x935c, 0x9376, 0x9349, 0x9350, 0x9351,\n  0x9360, 0x936d, 0x938f, 0x934c, 0x936a, 0x9379, 0x9357, 0x9355,\n  0x9352, 0x934f, 0x9371, 0x9377, 0x937b, 0x9361, 0x935e, 0x9363,\n  0x9367, 0x9380, 0x934e, 0x9359, 0x95c7, 0x95c0, 0x95c9, 0x95c3,\n  0x95c5, 0x95b7, 0x96ae, 0x96b0, 0x96ac, 0x9720, 0x971f, 0x9718,\n  0x971d, 0x9719, 0x979a, 0x97a1, 0x979c,\n  /* 0xef */\n  0x979e, 0x979d, 0x97d5, 0x97d4, 0x97f1, 0x9841, 0x9844, 0x984a,\n  0x9849, 0x9845, 0x9843, 0x9925, 0x992b, 0x992c, 0x992a, 0x9933,\n  0x9932, 0x992f, 0x992d, 0x9931, 0x9930, 0x9998, 0x99a3, 0x99a1,\n  0x9a02, 0x99fa, 0x99f4, 0x99f7, 0x99f9, 0x99f8, 0x99f6, 0x99fb,\n  0x99fd, 0x99fe, 0x99fc, 0x9a03, 0x9abe, 0x9afe, 0x9afd, 0x9b01,\n  0x9afc, 0x9b48, 0x9b9a, 0x9ba8, 0x9b9e, 0x9b9b, 0x9ba6, 0x9ba1,\n  0x9ba5, 0x9ba4, 0x9b86, 0x9ba2, 0x9ba0, 0x9baf, 0x9d33, 0x9d41,\n  0x9d67, 0x9d36, 0x9d2e, 0x9d2f, 0x9d31, 0x9d38, 0x9d30, 0x9d45,\n  0x9d42, 0x9d43, 0x9d3e, 0x9d37, 0x9d40, 0x9d3d, 0x7ff5, 0x9d2d,\n  0x9e8a, 0x9e89, 0x9e8d, 0x9eb0, 0x9ec8, 0x9eda, 0x9efb, 0x9eff,\n  0x9f24, 0x9f23, 0x9f22, 0x9f54, 0x9fa0, 0x5131, 0x512d, 0x512e,\n  0x5698, 0x569c, 0x5697, 0x569a, 0x569d, 0x5699, 0x5970, 0x5b3c,\n  0x5c69, 0x5c6a, 0x5dc0, 0x5e6d, 0x5e6e, 0x61d8, 0x61df, 0x61ed,\n  0x61ee, 0x61f1, 0x61ea, 0x61f0, 0x61eb, 0x61d6, 0x61e9, 0x64ff,\n  0x6504, 0x64fd, 0x64f8, 0x6501, 0x6503, 0x64fc, 0x6594, 0x65db,\n  0x66da, 0x66db, 0x66d8, 0x6ac5, 0x6ab9, 0x6abd, 0x6ae1, 0x6ac6,\n  0x6aba, 0x6ab6, 0x6ab7, 0x6ac7, 0x6ab4, 0x6aad, 0x6b5e, 0x6bc9,\n  0x6c0b, 0x7007, 0x700c, 0x700d, 0x7001, 0x7005, 0x7014, 0x700e,\n  0x6fff, 0x7000, 0x6ffb, 0x7026, 0x6ffc, 0x6ff7, 0x700a, 0x7201,\n  0x71ff, 0x71f9, 0x7203, 0x71fd, 0x7376,\n  /* 0xf0 */\n  0x74b8, 0x74c0, 0x74b5, 0x74c1, 0x74be, 0x74b6, 0x74bb, 0x74c2,\n  0x7514, 0x7513, 0x765c, 0x7664, 0x7659, 0x7650, 0x7653, 0x7657,\n  0x765a, 0x76a6, 0x76bd, 0x76ec, 0x77c2, 0x77ba, 0x78ff, 0x790c,\n  0x7913, 0x7914, 0x7909, 0x7910, 0x7912, 0x7911, 0x79ad, 0x79ac,\n  0x7a5f, 0x7c1c, 0x7c29, 0x7c19, 0x7c20, 0x7c1f, 0x7c2d, 0x7c1d,\n  0x7c26, 0x7c28, 0x7c22, 0x7c25, 0x7c30, 0x7e5c, 0x7e50, 0x7e56,\n  0x7e63, 0x7e58, 0x7e62, 0x7e5f, 0x7e51, 0x7e60, 0x7e57, 0x7e53,\n  0x7fb5, 0x7fb3, 0x7ff7, 0x7ff8, 0x8075, 0x81d1, 0x81d2, 0x81d0,\n  0x825f, 0x825e, 0x85b4, 0x85c6, 0x85c0, 0x85c3, 0x85c2, 0x85b3,\n  0x85b5, 0x85bd, 0x85c7, 0x85c4, 0x85bf, 0x85cb, 0x85ce, 0x85c8,\n  0x85c5, 0x85b1, 0x85b6, 0x85d2, 0x8624, 0x85b8, 0x85b7, 0x85be,\n  0x8669, 0x87e7, 0x87e6, 0x87e2, 0x87db, 0x87eb, 0x87ea, 0x87e5,\n  0x87df, 0x87f3, 0x87e4, 0x87d4, 0x87dc, 0x87d3, 0x87ed, 0x87d8,\n  0x87e3, 0x87a4, 0x87d7, 0x87d9, 0x8801, 0x87f4, 0x87e8, 0x87dd,\n  0x8953, 0x894b, 0x894f, 0x894c, 0x8946, 0x8950, 0x8951, 0x8949,\n  0x8b2a, 0x8b27, 0x8b23, 0x8b33, 0x8b30, 0x8b35, 0x8b47, 0x8b2f,\n  0x8b3c, 0x8b3e, 0x8b31, 0x8b25, 0x8b37, 0x8b26, 0x8b36, 0x8b2e,\n  0x8b24, 0x8b3b, 0x8b3d, 0x8b3a, 0x8c42, 0x8c75, 0x8c99, 0x8c98,\n  0x8c97, 0x8cfe, 0x8d04, 0x8d02, 0x8d00, 0x8e5c, 0x8e62, 0x8e60,\n  0x8e57, 0x8e56, 0x8e5e, 0x8e65, 0x8e67,\n  /* 0xf1 */\n  0x8e5b, 0x8e5a, 0x8e61, 0x8e5d, 0x8e69, 0x8e54, 0x8f46, 0x8f47,\n  0x8f48, 0x8f4b, 0x9128, 0x913a, 0x913b, 0x913e, 0x91a8, 0x91a5,\n  0x91a7, 0x91af, 0x91aa, 0x93b5, 0x938c, 0x9392, 0x93b7, 0x939b,\n  0x939d, 0x9389, 0x93a7, 0x938e, 0x93aa, 0x939e, 0x93a6, 0x9395,\n  0x9388, 0x9399, 0x939f, 0x938d, 0x93b1, 0x9391, 0x93b2, 0x93a4,\n  0x93a8, 0x93b4, 0x93a3, 0x93a5, 0x95d2, 0x95d3, 0x95d1, 0x96b3,\n  0x96d7, 0x96da, 0x5dc2, 0x96df, 0x96d8, 0x96dd, 0x9723, 0x9722,\n  0x9725, 0x97ac, 0x97ae, 0x97a8, 0x97ab, 0x97a4, 0x97aa, 0x97a2,\n  0x97a5, 0x97d7, 0x97d9, 0x97d6, 0x97d8, 0x97fa, 0x9850, 0x9851,\n  0x9852, 0x98b8, 0x9941, 0x993c, 0x993a, 0x9a0f, 0x9a0b, 0x9a09,\n  0x9a0d, 0x9a04, 0x9a11, 0x9a0a, 0x9a05, 0x9a07, 0x9a06, 0x9ac0,\n  0x9adc, 0x9b08, 0x9b04, 0x9b05, 0x9b29, 0x9b35, 0x9b4a, 0x9b4c,\n  0x9b4b, 0x9bc7, 0x9bc6, 0x9bc3, 0x9bbf, 0x9bc1, 0x9bb5, 0x9bb8,\n  0x9bd3, 0x9bb6, 0x9bc4, 0x9bb9, 0x9bbd, 0x9d5c, 0x9d53, 0x9d4f,\n  0x9d4a, 0x9d5b, 0x9d4b, 0x9d59, 0x9d56, 0x9d4c, 0x9d57, 0x9d52,\n  0x9d54, 0x9d5f, 0x9d58, 0x9d5a, 0x9e8e, 0x9e8c, 0x9edf, 0x9f01,\n  0x9f00, 0x9f16, 0x9f25, 0x9f2b, 0x9f2a, 0x9f29, 0x9f28, 0x9f4c,\n  0x9f55, 0x5134, 0x5135, 0x5296, 0x52f7, 0x53b4, 0x56ab, 0x56ad,\n  0x56a6, 0x56a7, 0x56aa, 0x56ac, 0x58da, 0x58dd, 0x58db, 0x5912,\n  0x5b3d, 0x5b3e, 0x5b3f, 0x5dc3, 0x5e70,\n  /* 0xf2 */\n  0x5fbf, 0x61fb, 0x6507, 0x6510, 0x650d, 0x6509, 0x650c, 0x650e,\n  0x6584, 0x65de, 0x65dd, 0x66de, 0x6ae7, 0x6ae0, 0x6acc, 0x6ad1,\n  0x6ad9, 0x6acb, 0x6adf, 0x6adc, 0x6ad0, 0x6aeb, 0x6acf, 0x6acd,\n  0x6ade, 0x6b60, 0x6bb0, 0x6c0c, 0x7019, 0x7027, 0x7020, 0x7016,\n  0x702b, 0x7021, 0x7022, 0x7023, 0x7029, 0x7017, 0x7024, 0x701c,\n  0x702a, 0x720c, 0x720a, 0x7207, 0x7202, 0x7205, 0x72a5, 0x72a6,\n  0x72a4, 0x72a3, 0x72a1, 0x74cb, 0x74c5, 0x74b7, 0x74c3, 0x7516,\n  0x7660, 0x77c9, 0x77ca, 0x77c4, 0x77f1, 0x791d, 0x791b, 0x7921,\n  0x791c, 0x7917, 0x791e, 0x79b0, 0x7a67, 0x7a68, 0x7c33, 0x7c3c,\n  0x7c39, 0x7c2c, 0x7c3b, 0x7cec, 0x7cea, 0x7e76, 0x7e75, 0x7e78,\n  0x7e70, 0x7e77, 0x7e6f, 0x7e7a, 0x7e72, 0x7e74, 0x7e68, 0x7f4b,\n  0x7f4a, 0x7f83, 0x7f86, 0x7fb7, 0x7ffd, 0x7ffe, 0x8078, 0x81d7,\n  0x81d5, 0x8264, 0x8261, 0x8263, 0x85eb, 0x85f1, 0x85ed, 0x85d9,\n  0x85e1, 0x85e8, 0x85da, 0x85d7, 0x85ec, 0x85f2, 0x85f8, 0x85d8,\n  0x85df, 0x85e3, 0x85dc, 0x85d1, 0x85f0, 0x85e6, 0x85ef, 0x85de,\n  0x85e2, 0x8800, 0x87fa, 0x8803, 0x87f6, 0x87f7, 0x8809, 0x880c,\n  0x880b, 0x8806, 0x87fc, 0x8808, 0x87ff, 0x880a, 0x8802, 0x8962,\n  0x895a, 0x895b, 0x8957, 0x8961, 0x895c, 0x8958, 0x895d, 0x8959,\n  0x8988, 0x89b7, 0x89b6, 0x89f6, 0x8b50, 0x8b48, 0x8b4a, 0x8b40,\n  0x8b53, 0x8b56, 0x8b54, 0x8b4b, 0x8b55,\n  /* 0xf3 */\n  0x8b51, 0x8b42, 0x8b52, 0x8b57, 0x8c43, 0x8c77, 0x8c76, 0x8c9a,\n  0x8d06, 0x8d07, 0x8d09, 0x8dac, 0x8daa, 0x8dad, 0x8dab, 0x8e6d,\n  0x8e78, 0x8e73, 0x8e6a, 0x8e6f, 0x8e7b, 0x8ec2, 0x8f52, 0x8f51,\n  0x8f4f, 0x8f50, 0x8f53, 0x8fb4, 0x9140, 0x913f, 0x91b0, 0x91ad,\n  0x93de, 0x93c7, 0x93cf, 0x93c2, 0x93da, 0x93d0, 0x93f9, 0x93ec,\n  0x93cc, 0x93d9, 0x93a9, 0x93e6, 0x93ca, 0x93d4, 0x93ee, 0x93e3,\n  0x93d5, 0x93c4, 0x93ce, 0x93c0, 0x93d2, 0x93e7, 0x957d, 0x95da,\n  0x95db, 0x96e1, 0x9729, 0x972b, 0x972c, 0x9728, 0x9726, 0x97b3,\n  0x97b7, 0x97b6, 0x97dd, 0x97de, 0x97df, 0x985c, 0x9859, 0x985d,\n  0x9857, 0x98bf, 0x98bd, 0x98bb, 0x98be, 0x9948, 0x9947, 0x9943,\n  0x99a6, 0x99a7, 0x9a1a, 0x9a15, 0x9a25, 0x9a1d, 0x9a24, 0x9a1b,\n  0x9a22, 0x9a20, 0x9a27, 0x9a23, 0x9a1e, 0x9a1c, 0x9a14, 0x9ac2,\n  0x9b0b, 0x9b0a, 0x9b0e, 0x9b0c, 0x9b37, 0x9bea, 0x9beb, 0x9be0,\n  0x9bde, 0x9be4, 0x9be6, 0x9be2, 0x9bf0, 0x9bd4, 0x9bd7, 0x9bec,\n  0x9bdc, 0x9bd9, 0x9be5, 0x9bd5, 0x9be1, 0x9bda, 0x9d77, 0x9d81,\n  0x9d8a, 0x9d84, 0x9d88, 0x9d71, 0x9d80, 0x9d78, 0x9d86, 0x9d8b,\n  0x9d8c, 0x9d7d, 0x9d6b, 0x9d74, 0x9d75, 0x9d70, 0x9d69, 0x9d85,\n  0x9d73, 0x9d7b, 0x9d82, 0x9d6f, 0x9d79, 0x9d7f, 0x9d87, 0x9d68,\n  0x9e94, 0x9e91, 0x9ec0, 0x9efc, 0x9f2d, 0x9f40, 0x9f41, 0x9f4d,\n  0x9f56, 0x9f57, 0x9f58, 0x5337, 0x56b2,\n  /* 0xf4 */\n  0x56b5, 0x56b3, 0x58e3, 0x5b45, 0x5dc6, 0x5dc7, 0x5eee, 0x5eef,\n  0x5fc0, 0x5fc1, 0x61f9, 0x6517, 0x6516, 0x6515, 0x6513, 0x65df,\n  0x66e8, 0x66e3, 0x66e4, 0x6af3, 0x6af0, 0x6aea, 0x6ae8, 0x6af9,\n  0x6af1, 0x6aee, 0x6aef, 0x703c, 0x7035, 0x702f, 0x7037, 0x7034,\n  0x7031, 0x7042, 0x7038, 0x703f, 0x703a, 0x7039, 0x7040, 0x703b,\n  0x7033, 0x7041, 0x7213, 0x7214, 0x72a8, 0x737d, 0x737c, 0x74ba,\n  0x76ab, 0x76aa, 0x76be, 0x76ed, 0x77cc, 0x77ce, 0x77cf, 0x77cd,\n  0x77f2, 0x7925, 0x7923, 0x7927, 0x7928, 0x7924, 0x7929, 0x79b2,\n  0x7a6e, 0x7a6c, 0x7a6d, 0x7af7, 0x7c49, 0x7c48, 0x7c4a, 0x7c47,\n  0x7c45, 0x7cee, 0x7e7b, 0x7e7e, 0x7e81, 0x7e80, 0x7fba, 0x7fff,\n  0x8079, 0x81db, 0x81d9, 0x820b, 0x8268, 0x8269, 0x8622, 0x85ff,\n  0x8601, 0x85fe, 0x861b, 0x8600, 0x85f6, 0x8604, 0x8609, 0x8605,\n  0x860c, 0x85fd, 0x8819, 0x8810, 0x8811, 0x8817, 0x8813, 0x8816,\n  0x8963, 0x8966, 0x89b9, 0x89f7, 0x8b60, 0x8b6a, 0x8b5d, 0x8b68,\n  0x8b63, 0x8b65, 0x8b67, 0x8b6d, 0x8dae, 0x8e86, 0x8e88, 0x8e84,\n  0x8f59, 0x8f56, 0x8f57, 0x8f55, 0x8f58, 0x8f5a, 0x908d, 0x9143,\n  0x9141, 0x91b7, 0x91b5, 0x91b2, 0x91b3, 0x940b, 0x9413, 0x93fb,\n  0x9420, 0x940f, 0x9414, 0x93fe, 0x9415, 0x9410, 0x9428, 0x9419,\n  0x940d, 0x93f5, 0x9400, 0x93f7, 0x9407, 0x940e, 0x9416, 0x9412,\n  0x93fa, 0x9409, 0x93f8, 0x940a, 0x93ff,\n  /* 0xf5 */\n  0x93fc, 0x940c, 0x93f6, 0x9411, 0x9406, 0x95de, 0x95e0, 0x95df,\n  0x972e, 0x972f, 0x97b9, 0x97bb, 0x97fd, 0x97fe, 0x9860, 0x9862,\n  0x9863, 0x985f, 0x98c1, 0x98c2, 0x9950, 0x994e, 0x9959, 0x994c,\n  0x994b, 0x9953, 0x9a32, 0x9a34, 0x9a31, 0x9a2c, 0x9a2a, 0x9a36,\n  0x9a29, 0x9a2e, 0x9a38, 0x9a2d, 0x9ac7, 0x9aca, 0x9ac6, 0x9b10,\n  0x9b12, 0x9b11, 0x9c0b, 0x9c08, 0x9bf7, 0x9c05, 0x9c12, 0x9bf8,\n  0x9c40, 0x9c07, 0x9c0e, 0x9c06, 0x9c17, 0x9c14, 0x9c09, 0x9d9f,\n  0x9d99, 0x9da4, 0x9d9d, 0x9d92, 0x9d98, 0x9d90, 0x9d9b, 0x9da0,\n  0x9d94, 0x9d9c, 0x9daa, 0x9d97, 0x9da1, 0x9d9a, 0x9da2, 0x9da8,\n  0x9d9e, 0x9da3, 0x9dbf, 0x9da9, 0x9d96, 0x9da6, 0x9da7, 0x9e99,\n  0x9e9b, 0x9e9a, 0x9ee5, 0x9ee4, 0x9ee7, 0x9ee6, 0x9f30, 0x9f2e,\n  0x9f5b, 0x9f60, 0x9f5e, 0x9f5d, 0x9f59, 0x9f91, 0x513a, 0x5139,\n  0x5298, 0x5297, 0x56c3, 0x56bd, 0x56be, 0x5b48, 0x5b47, 0x5dcb,\n  0x5dcf, 0x5ef1, 0x61fd, 0x651b, 0x6b02, 0x6afc, 0x6b03, 0x6af8,\n  0x6b00, 0x7043, 0x7044, 0x704a, 0x7048, 0x7049, 0x7045, 0x7046,\n  0x721d, 0x721a, 0x7219, 0x737e, 0x7517, 0x766a, 0x77d0, 0x792d,\n  0x7931, 0x792f, 0x7c54, 0x7c53, 0x7cf2, 0x7e8a, 0x7e87, 0x7e88,\n  0x7e8b, 0x7e86, 0x7e8d, 0x7f4d, 0x7fbb, 0x8030, 0x81dd, 0x8618,\n  0x862a, 0x8626, 0x861f, 0x8623, 0x861c, 0x8619, 0x8627, 0x862e,\n  0x8621, 0x8620, 0x8629, 0x861e, 0x8625,\n  /* 0xf6 */\n  0x8829, 0x881d, 0x881b, 0x8820, 0x8824, 0x881c, 0x882b, 0x884a,\n  0x896d, 0x8969, 0x896e, 0x896b, 0x89fa, 0x8b79, 0x8b78, 0x8b45,\n  0x8b7a, 0x8b7b, 0x8d10, 0x8d14, 0x8daf, 0x8e8e, 0x8e8c, 0x8f5e,\n  0x8f5b, 0x8f5d, 0x9146, 0x9144, 0x9145, 0x91b9, 0x943f, 0x943b,\n  0x9436, 0x9429, 0x943d, 0x943c, 0x9430, 0x9439, 0x942a, 0x9437,\n  0x942c, 0x9440, 0x9431, 0x95e5, 0x95e4, 0x95e3, 0x9735, 0x973a,\n  0x97bf, 0x97e1, 0x9864, 0x98c9, 0x98c6, 0x98c0, 0x9958, 0x9956,\n  0x9a39, 0x9a3d, 0x9a46, 0x9a44, 0x9a42, 0x9a41, 0x9a3a, 0x9a3f,\n  0x9acd, 0x9b15, 0x9b17, 0x9b18, 0x9b16, 0x9b3a, 0x9b52, 0x9c2b,\n  0x9c1d, 0x9c1c, 0x9c2c, 0x9c23, 0x9c28, 0x9c29, 0x9c24, 0x9c21,\n  0x9db7, 0x9db6, 0x9dbc, 0x9dc1, 0x9dc7, 0x9dca, 0x9dcf, 0x9dbe,\n  0x9dc5, 0x9dc3, 0x9dbb, 0x9db5, 0x9dce, 0x9db9, 0x9dba, 0x9dac,\n  0x9dc8, 0x9db1, 0x9dad, 0x9dcc, 0x9db3, 0x9dcd, 0x9db2, 0x9e7a,\n  0x9e9c, 0x9eeb, 0x9eee, 0x9eed, 0x9f1b, 0x9f18, 0x9f1a, 0x9f31,\n  0x9f4e, 0x9f65, 0x9f64, 0x9f92, 0x4eb9, 0x56c6, 0x56c5, 0x56cb,\n  0x5971, 0x5b4b, 0x5b4c, 0x5dd5, 0x5dd1, 0x5ef2, 0x6521, 0x6520,\n  0x6526, 0x6522, 0x6b0b, 0x6b08, 0x6b09, 0x6c0d, 0x7055, 0x7056,\n  0x7057, 0x7052, 0x721e, 0x721f, 0x72a9, 0x737f, 0x74d8, 0x74d5,\n  0x74d9, 0x74d7, 0x766d, 0x76ad, 0x7935, 0x79b4, 0x7a70, 0x7a71,\n  0x7c57, 0x7c5c, 0x7c59, 0x7c5b, 0x7c5a,\n  /* 0xf7 */\n  0x7cf4, 0x7cf1, 0x7e91, 0x7f4f, 0x7f87, 0x81de, 0x826b, 0x8634,\n  0x8635, 0x8633, 0x862c, 0x8632, 0x8636, 0x882c, 0x8828, 0x8826,\n  0x882a, 0x8825, 0x8971, 0x89bf, 0x89be, 0x89fb, 0x8b7e, 0x8b84,\n  0x8b82, 0x8b86, 0x8b85, 0x8b7f, 0x8d15, 0x8e95, 0x8e94, 0x8e9a,\n  0x8e92, 0x8e90, 0x8e96, 0x8e97, 0x8f60, 0x8f62, 0x9147, 0x944c,\n  0x9450, 0x944a, 0x944b, 0x944f, 0x9447, 0x9445, 0x9448, 0x9449,\n  0x9446, 0x973f, 0x97e3, 0x986a, 0x9869, 0x98cb, 0x9954, 0x995b,\n  0x9a4e, 0x9a53, 0x9a54, 0x9a4c, 0x9a4f, 0x9a48, 0x9a4a, 0x9a49,\n  0x9a52, 0x9a50, 0x9ad0, 0x9b19, 0x9b2b, 0x9b3b, 0x9b56, 0x9b55,\n  0x9c46, 0x9c48, 0x9c3f, 0x9c44, 0x9c39, 0x9c33, 0x9c41, 0x9c3c,\n  0x9c37, 0x9c34, 0x9c32, 0x9c3d, 0x9c36, 0x9ddb, 0x9dd2, 0x9dde,\n  0x9dda, 0x9dcb, 0x9dd0, 0x9ddc, 0x9dd1, 0x9ddf, 0x9de9, 0x9dd9,\n  0x9dd8, 0x9dd6, 0x9df5, 0x9dd5, 0x9ddd, 0x9eb6, 0x9ef0, 0x9f35,\n  0x9f33, 0x9f32, 0x9f42, 0x9f6b, 0x9f95, 0x9fa2, 0x513d, 0x5299,\n  0x58e8, 0x58e7, 0x5972, 0x5b4d, 0x5dd8, 0x882f, 0x5f4f, 0x6201,\n  0x6203, 0x6204, 0x6529, 0x6525, 0x6596, 0x66eb, 0x6b11, 0x6b12,\n  0x6b0f, 0x6bca, 0x705b, 0x705a, 0x7222, 0x7382, 0x7381, 0x7383,\n  0x7670, 0x77d4, 0x7c67, 0x7c66, 0x7e95, 0x826c, 0x863a, 0x8640,\n  0x8639, 0x863c, 0x8631, 0x863b, 0x863e, 0x8830, 0x8832, 0x882e,\n  0x8833, 0x8976, 0x8974, 0x8973, 0x89fe,\n  /* 0xf8 */\n  0x8b8c, 0x8b8e, 0x8b8b, 0x8b88, 0x8c45, 0x8d19, 0x8e98, 0x8f64,\n  0x8f63, 0x91bc, 0x9462, 0x9455, 0x945d, 0x9457, 0x945e, 0x97c4,\n  0x97c5, 0x9800, 0x9a56, 0x9a59, 0x9b1e, 0x9b1f, 0x9b20, 0x9c52,\n  0x9c58, 0x9c50, 0x9c4a, 0x9c4d, 0x9c4b, 0x9c55, 0x9c59, 0x9c4c,\n  0x9c4e, 0x9dfb, 0x9df7, 0x9def, 0x9de3, 0x9deb, 0x9df8, 0x9de4,\n  0x9df6, 0x9de1, 0x9dee, 0x9de6, 0x9df2, 0x9df0, 0x9de2, 0x9dec,\n  0x9df4, 0x9df3, 0x9de8, 0x9ded, 0x9ec2, 0x9ed0, 0x9ef2, 0x9ef3,\n  0x9f06, 0x9f1c, 0x9f38, 0x9f37, 0x9f36, 0x9f43, 0x9f4f, 0x9f71,\n  0x9f70, 0x9f6e, 0x9f6f, 0x56d3, 0x56cd, 0x5b4e, 0x5c6d, 0x652d,\n  0x66ed, 0x66ee, 0x6b13, 0x705f, 0x7061, 0x705d, 0x7060, 0x7223,\n  0x74db, 0x74e5, 0x77d5, 0x7938, 0x79b7, 0x79b6, 0x7c6a, 0x7e97,\n  0x7f89, 0x826d, 0x8643, 0x8838, 0x8837, 0x8835, 0x884b, 0x8b94,\n  0x8b95, 0x8e9e, 0x8e9f, 0x8ea0, 0x8e9d, 0x91be, 0x91bd, 0x91c2,\n  0x946b, 0x9468, 0x9469, 0x96e5, 0x9746, 0x9743, 0x9747, 0x97c7,\n  0x97e5, 0x9a5e, 0x9ad5, 0x9b59, 0x9c63, 0x9c67, 0x9c66, 0x9c62,\n  0x9c5e, 0x9c60, 0x9e02, 0x9dfe, 0x9e07, 0x9e03, 0x9e06, 0x9e05,\n  0x9e00, 0x9e01, 0x9e09, 0x9dff, 0x9dfd, 0x9e04, 0x9ea0, 0x9f1e,\n  0x9f46, 0x9f74, 0x9f75, 0x9f76, 0x56d4, 0x652e, 0x65b8, 0x6b18,\n  0x6b19, 0x6b17, 0x6b1a, 0x7062, 0x7226, 0x72aa, 0x77d8, 0x77d9,\n  0x7939, 0x7c69, 0x7c6b, 0x7cf6, 0x7e9a,\n  /* 0xf9 */\n  0x7e98, 0x7e9b, 0x7e99, 0x81e0, 0x81e1, 0x8646, 0x8647, 0x8648,\n  0x8979, 0x897a, 0x897c, 0x897b, 0x89ff, 0x8b98, 0x8b99, 0x8ea5,\n  0x8ea4, 0x8ea3, 0x946e, 0x946d, 0x946f, 0x9471, 0x9473, 0x9749,\n  0x9872, 0x995f, 0x9c68, 0x9c6e, 0x9c6d, 0x9e0b, 0x9e0d, 0x9e10,\n  0x9e0f, 0x9e12, 0x9e11, 0x9ea1, 0x9ef5, 0x9f09, 0x9f47, 0x9f78,\n  0x9f7b, 0x9f7a, 0x9f79, 0x571e, 0x7066, 0x7c6f, 0x883c, 0x8db2,\n  0x8ea6, 0x91c3, 0x9474, 0x9478, 0x9476, 0x9475, 0x9a60, 0x9c74,\n  0x9c73, 0x9c71, 0x9c75, 0x9e14, 0x9e13, 0x9ef6, 0x9f0a, 0x9fa4,\n  0x7068, 0x7065, 0x7cf7, 0x866a, 0x883e, 0x883d, 0x883f, 0x8b9e,\n  0x8c9c, 0x8ea9, 0x8ec9, 0x974b, 0x9873, 0x9874, 0x98cc, 0x9961,\n  0x99ab, 0x9a64, 0x9a66, 0x9a67, 0x9b24, 0x9e15, 0x9e17, 0x9f48,\n  0x6207, 0x6b1e, 0x7227, 0x864c, 0x8ea8, 0x9482, 0x9480, 0x9481,\n  0x9a69, 0x9a68, 0x9b2e, 0x9e19, 0x7229, 0x864b, 0x8b9f, 0x9483,\n  0x9c79, 0x9eb7, 0x7675, 0x9a6b, 0x9c7a, 0x9e1d, 0x7069, 0x706a,\n  0x9ea4, 0x9f7e, 0x9f49, 0x9f98,\n};\n\nstatic int\nbig5_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0xa1 && c1 <= 0xc7) || (c1 >= 0xc9 && c1 <= 0xf9)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n        unsigned int i = 157 * (c1 - 0xa1) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n        unsigned short wc = 0xfffd;\n        if (i < 6280) {\n          if (i < 6121)\n            wc = big5_2uni_pagea1[i];\n        } else {\n          if (i < 13932)\n            wc = big5_2uni_pagec9[i-6280];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short big5_2charset[13703] = {\n  0xa246, 0xa247, 0xa244, 0xa1b1, 0xa258, 0xa1d3, 0xa150, 0xa1d1,\n  0xa1d2, 0xa3be, 0xa3bc, 0xa3bd, 0xa3bf, 0xa3bb, 0xa344, 0xa345,\n  0xa346, 0xa347, 0xa348, 0xa349, 0xa34a, 0xa34b, 0xa34c, 0xa34d,\n  0xa34e, 0xa34f, 0xa350, 0xa351, 0xa352, 0xa353, 0xa354, 0xa355,\n  0xa356, 0xa357, 0xa358, 0xa359, 0xa35a, 0xa35b, 0xa35c, 0xa35d,\n  0xa35e, 0xa35f, 0xa360, 0xa361, 0xa362, 0xa363, 0xa364, 0xa365,\n  0xa366, 0xa367, 0xa368, 0xa369, 0xa36a, 0xa36b, 0xa36c, 0xa36d,\n  0xa36e, 0xa36f, 0xa370, 0xa371, 0xa372, 0xa373, 0xc7b3, 0xc7b1,\n  0xc7b2, 0xc7b4, 0xc7b5, 0xc7b6, 0xc7b7, 0xc7b8, 0xc7b9, 0xc7ba,\n  0xc7bb, 0xc7bc, 0xc7bd, 0xc7be, 0xc7bf, 0xc7c0, 0xc7c1, 0xc7c2,\n  0xc7c3, 0xc7c4, 0xc7c5, 0xc7c6, 0xc7c7, 0xc7c8, 0xc7c9, 0xc7ca,\n  0xc7cb, 0xc7cc, 0xc7cd, 0xc7cf, 0xc7d0, 0xc7d1, 0xc7d2, 0xc7d3,\n  0xc7d4, 0xc7d5, 0xc7d6, 0xc7d7, 0xc7d8, 0xc7d9, 0xc7da, 0xc7db,\n  0xc7dc, 0xc7dd, 0xc7de, 0xc7df, 0xc7e0, 0xc7e1, 0xc7e2, 0xc7e3,\n  0xc7e4, 0xc7e5, 0xc7e6, 0xc7e7, 0xc7e8, 0xc7ce, 0xa156, 0xa158,\n  0xa1a5, 0xa1a6, 0xa1a7, 0xa1a8, 0xa145, 0xa14c, 0xa14b, 0xa1ac,\n  0xa1ab, 0xa1b0, 0xa1c2, 0xa24a, 0xa1c1, 0xa24b, 0xa2b9, 0xa2ba,\n  0xa2bb, 0xa2bc, 0xa2bd, 0xa2be, 0xa2bf, 0xa2c0, 0xa2c1, 0xa2c2,\n  0xa1f6, 0xa1f4, 0xa1f7, 0xa1f5, 0xa1f8, 0xa1f9, 0xa1fb, 0xa1fa,\n  0xa1d4, 0xa1db, 0xa1e8, 0xa1e7, 0xa1fd, 0xa1fc, 0xa1e4, 0xa1e5,\n  0xa1ec, 0xa1ed, 0xa1ef, 0xa1ee, 0xa1e3, 0xa1dc, 0xa1da, 0xa1dd,\n  0xa1d8, 0xa1d9, 0xa1e6, 0xa1e9, 0xc7e9, 0xc7ea, 0xc7eb, 0xc7ec,\n  0xc7ed, 0xc7ee, 0xc7ef, 0xc7f0, 0xc7f1, 0xc7f2, 0xc7f3, 0xc7f4,\n  0xc7f5, 0xc7f6, 0xc7f7, 0xc7f8, 0xc7f9, 0xc7fa, 0xc7fb, 0xc7fc,\n  0xa277, 0xa278, 0xa27a, 0xa27b, 0xa27c, 0xa27d, 0xa275, 0xa274,\n  0xa273, 0xa272, 0xa271, 0xa2a4, 0xa2a5, 0xa2a7, 0xa2a6, 0xa27e,\n  0xa2a1, 0xa2a3, 0xa2a2, 0xa2ac, 0xa2ad, 0xa2ae, 0xa262, 0xa263,\n  0xa264, 0xa265, 0xa266, 0xa267, 0xa268, 0xa269, 0xa270, 0xa26f,\n  0xa26e, 0xa26d, 0xa26c, 0xa26b, 0xa26a, 0xa276, 0xa279, 0xa1bd,\n  0xa1bc, 0xa1b6, 0xa1b5, 0xa1bf, 0xa1be, 0xa1bb, 0xa1ba, 0xa1b3,\n  0xa1b7, 0xa1b4, 0xa2a8, 0xa2a9, 0xa2ab, 0xa2aa, 0xa1b9, 0xa1b8,\n  0xa1f3, 0xa1f0, 0xa1f2, 0xa1f1, 0xa140, 0xa142, 0xa143, 0xa1b2,\n  0xc6a4, 0xa171, 0xa172, 0xa16d, 0xa16e, 0xa175, 0xa176, 0xa179,\n  0xa17a, 0xa169, 0xa16a, 0xa245, 0xa165, 0xa166, 0xa1a9, 0xa1aa,\n  0xa2c3, 0xa2c4, 0xa2c5, 0xa2c6, 0xa2c7, 0xa2c8, 0xa2c9, 0xa2ca,\n  0xa2cb, 0xc6a5, 0xc6a6, 0xc6a7, 0xc6a8, 0xc6a9, 0xc6aa, 0xc6ab,\n  0xc6ac, 0xc6ad, 0xc6ae, 0xc6af, 0xc6b0, 0xc6b1, 0xc6b2, 0xc6b3,\n  0xc6b4, 0xc6b5, 0xc6b6, 0xc6b7, 0xc6b8, 0xc6b9, 0xc6ba, 0xc6bb,\n  0xc6bc, 0xc6bd, 0xc6be, 0xc6bf, 0xc6c0, 0xc6c1, 0xc6c2, 0xc6c3,\n  0xc6c4, 0xc6c5, 0xc6c6, 0xc6c7, 0xc6c8, 0xc6c9, 0xc6ca, 0xc6cb,\n  0xc6cc, 0xc6cd, 0xc6ce, 0xc6cf, 0xc6d0, 0xc6d1, 0xc6d2, 0xc6d3,\n  0xc6d4, 0xc6d5, 0xc6d6, 0xc6d7, 0xc6d8, 0xc6d9, 0xc6da, 0xc6db,\n  0xc6dc, 0xc6dd, 0xc6de, 0xc6df, 0xc6e0, 0xc6e1, 0xc6e2, 0xc6e3,\n  0xc6e4, 0xc6e5, 0xc6e6, 0xc6e7, 0xc6e8, 0xc6e9, 0xc6ea, 0xc6eb,\n  0xc6ec, 0xc6ed, 0xc6ee, 0xc6ef, 0xc6f0, 0xc6f1, 0xc6f2, 0xc6f3,\n  0xc6f4, 0xc6f5, 0xc6f6, 0xc6f7, 0xc6a2, 0xc6a3, 0xc6f8, 0xc6f9,\n  0xc6fa, 0xc6fb, 0xc6fc, 0xc6fd, 0xc6fe, 0xc740, 0xc741, 0xc742,\n  0xc743, 0xc744, 0xc745, 0xc746, 0xc747, 0xc748, 0xc749, 0xc74a,\n  0xc74b, 0xc74c, 0xc74d, 0xc74e, 0xc74f, 0xc750, 0xc751, 0xc752,\n  0xc753, 0xc754, 0xc755, 0xc756, 0xc757, 0xc758, 0xc759, 0xc75a,\n  0xc75b, 0xc75c, 0xc75d, 0xc75e, 0xc75f, 0xc760, 0xc761, 0xc762,\n  0xc763, 0xc764, 0xc765, 0xc766, 0xc767, 0xc768, 0xc769, 0xc76a,\n  0xc76b, 0xc76c, 0xc76d, 0xc76e, 0xc76f, 0xc770, 0xc771, 0xc772,\n  0xc773, 0xc774, 0xc775, 0xc776, 0xc777, 0xc778, 0xc779, 0xc77a,\n  0xc77b, 0xc77c, 0xc77d, 0xc77e, 0xc7a1, 0xc7a2, 0xc7a3, 0xc7a4,\n  0xc7a5, 0xc7a6, 0xc7a7, 0xc7a8, 0xc7a9, 0xc7aa, 0xc7ab, 0xc7ac,\n  0xc7ad, 0xc7ae, 0xc7af, 0xc7b0, 0xc6a1, 0xa374, 0xa375, 0xa376,\n  0xa377, 0xa378, 0xa379, 0xa37a, 0xa37b, 0xa37c, 0xa37d, 0xa37e,\n  0xa3a1, 0xa3a2, 0xa3a3, 0xa3a4, 0xa3a5, 0xa3a6, 0xa3a7, 0xa3a8,\n  0xa3a9, 0xa3aa, 0xa3ab, 0xa3ac, 0xa3ad, 0xa3ae, 0xa3af, 0xa3b0,\n  0xa3b1, 0xa3b2, 0xa3b3, 0xa3b4, 0xa3b5, 0xa3b6, 0xa3b7, 0xa3b8,\n  0xa3b9, 0xa3ba, 0xa1c0, 0xa255, 0xa256, 0xa250, 0xa251, 0xa252,\n  0xa254, 0xa257, 0xa253, 0xa1eb, 0xa1ea, 0xa24f, 0xa440, 0xa442,\n  0xa443, 0xc945, 0xa456, 0xa454, 0xa457, 0xa455, 0xc946, 0xa4a3,\n  0xc94f, 0xc94d, 0xa4a2, 0xa4a1, 0xa542, 0xa541, 0xa540, 0xa543,\n  0xa4fe, 0xa5e0, 0xa5e1, 0xa8c3, 0xa458, 0xa4a4, 0xc950, 0xa4a5,\n  0xc963, 0xa6ea, 0xcbb1, 0xa459, 0xa4a6, 0xa544, 0xc964, 0xc940,\n  0xa444, 0xa45b, 0xc947, 0xa45c, 0xa4a7, 0xa545, 0xa547, 0xa546,\n  0xa5e2, 0xa5e3, 0xa8c4, 0xadbc, 0xa441, 0xc941, 0xa445, 0xa45e,\n  0xa45d, 0xa5e4, 0xa8c5, 0xb0ae, 0xd44b, 0xb6c3, 0xdcb1, 0xdcb2,\n  0xa446, 0xa4a9, 0xa8c6, 0xa447, 0xc948, 0xa45f, 0xa4aa, 0xa4ac,\n  0xc951, 0xa4ad, 0xa4ab, 0xa5e5, 0xa8c7, 0xa8c8, 0xab45, 0xa460,\n  0xa4ae, 0xa5e6, 0xa5e8, 0xa5e7, 0xa6eb, 0xa8c9, 0xa8ca, 0xab46,\n  0xab47, 0xadbd, 0xdcb3, 0xf6d6, 0xa448, 0xa4b0, 0xa4af, 0xc952,\n  0xa4b1, 0xa4b7, 0xa4b2, 0xa4b3, 0xc954, 0xc953, 0xa4b5, 0xa4b6,\n  0xa4b4, 0xa54a, 0xa54b, 0xa54c, 0xa54d, 0xa549, 0xa550, 0xc96a,\n  0xc966, 0xc969, 0xa551, 0xa561, 0xc968, 0xa54e, 0xa54f, 0xa548,\n  0xc965, 0xc967, 0xa5f5, 0xc9b0, 0xa5f2, 0xa5f6, 0xc9ba, 0xc9ae,\n  0xa5f3, 0xc9b2, 0xa5f4, 0xa5f7, 0xa5e9, 0xc9b1, 0xa5f8, 0xc9b5,\n  0xc9b9, 0xc9b6, 0xc9b3, 0xa5ea, 0xa5ec, 0xa5f9, 0xa5ee, 0xc9ab,\n  0xa5f1, 0xa5ef, 0xa5f0, 0xc9bb, 0xc9b8, 0xc9af, 0xa5ed, 0xc9ac,\n  0xa5eb, 0xc9b4, 0xc9b7, 0xc9ad, 0xca66, 0xa742, 0xa6f4, 0xca67,\n  0xa6f1, 0xa744, 0xa6f9, 0xa6f8, 0xca5b, 0xa6fc, 0xa6f7, 0xca60,\n  0xca68, 0xca64, 0xa6fa, 0xa6fd, 0xa6ee, 0xa747, 0xca5d, 0xcbbd,\n  0xa6ec, 0xa743, 0xa6ed, 0xa6f5, 0xa6f6, 0xca62, 0xca5e, 0xa6fb,\n  0xa6f3, 0xca5a, 0xa6ef, 0xca65, 0xa745, 0xa748, 0xa6f2, 0xa740,\n  0xa746, 0xa6f0, 0xca63, 0xa741, 0xca69, 0xca5c, 0xa6fe, 0xca5f,\n  0xca61, 0xa8d8, 0xcbbf, 0xcbcb, 0xa8d0, 0xcbcc, 0xa8cb, 0xa8d5,\n  0xa8ce, 0xcbb9, 0xa8d6, 0xcbb8, 0xcbbc, 0xcbc3, 0xcbc1, 0xa8de,\n  0xa8d9, 0xcbb3, 0xcbb5, 0xa8db, 0xa8cf, 0xcbb6, 0xcbc2, 0xcbc9,\n  0xa8d4, 0xcbbb, 0xcbb4, 0xa8d3, 0xcbb7, 0xa8d7, 0xcbba, 0xa8d2,\n  0xa8cd, 0xa8dc, 0xcbc4, 0xa8dd, 0xcbc8, 0xcbc6, 0xcbca, 0xa8da,\n  0xcbbe, 0xcbb2, 0xcbc0, 0xa8d1, 0xcbc5, 0xa8cc, 0xcbc7, 0xab56,\n  0xab4a, 0xcde0, 0xcde8, 0xab49, 0xab51, 0xab5d, 0xcdee, 0xcdec,\n  0xcde7, 0xab4b, 0xcded, 0xcde3, 0xab59, 0xab50, 0xab58, 0xcdde,\n  0xcdea, 0xcde1, 0xab54, 0xcde2, 0xcddd, 0xab5b, 0xab4e, 0xab57,\n  0xab4d, 0xcddf, 0xcde4, 0xcdeb, 0xab55, 0xab52, 0xcde6, 0xab5a,\n  0xcde9, 0xcde5, 0xab4f, 0xab5c, 0xab53, 0xab4c, 0xab48, 0xcdef,\n  0xadd7, 0xadc1, 0xadd1, 0xadd6, 0xd0d0, 0xd0cf, 0xd0d4, 0xd0d5,\n  0xadc4, 0xadcd, 0xadda, 0xadce, 0xd0c9, 0xadc7, 0xd0ca, 0xaddc,\n  0xadd3, 0xadbe, 0xadbf, 0xd0dd, 0xb0bf, 0xadcc, 0xadcb, 0xd0cb,\n  0xadcf, 0xd45b, 0xadc6, 0xd0d6, 0xadd5, 0xadd4, 0xadca, 0xd0ce,\n  0xd0d7, 0xd0c8, 0xadc9, 0xd0d8, 0xadd2, 0xd0cc, 0xadc0, 0xadc3,\n  0xadc2, 0xd0d9, 0xadd0, 0xadc5, 0xadd9, 0xaddb, 0xd0d3, 0xadd8,\n  0xd0db, 0xd0cd, 0xd0dc, 0xd0d1, 0xd0da, 0xd0d2, 0xadc8, 0xd463,\n  0xd457, 0xb0b3, 0xd45c, 0xd462, 0xb0b2, 0xd455, 0xb0b6, 0xd459,\n  0xd452, 0xb0b4, 0xd456, 0xb0b9, 0xb0be, 0xd467, 0xd451, 0xb0ba,\n  0xd466, 0xb0b5, 0xd458, 0xb0b1, 0xd453, 0xd44f, 0xd45d, 0xd450,\n  0xd44e, 0xd45a, 0xd460, 0xd461, 0xb0b7, 0xd85b, 0xd45e, 0xd44d,\n  0xd45f, 0xb0c1, 0xd464, 0xb0c0, 0xd44c, 0xd454, 0xd465, 0xb0bc,\n  0xb0bb, 0xb0b8, 0xb0bd, 0xb0af, 0xb0b0, 0xb3c8, 0xd85e, 0xd857,\n  0xb3c5, 0xd85f, 0xd855, 0xd858, 0xb3c4, 0xd859, 0xb3c7, 0xd85d,\n  0xd853, 0xd852, 0xb3c9, 0xb3ca, 0xb3c6, 0xb3cb, 0xd851, 0xd85c,\n  0xd85a, 0xd854, 0xb3c3, 0xd856, 0xb6ca, 0xb6c4, 0xdcb7, 0xb6cd,\n  0xdcbd, 0xdcc0, 0xb6c6, 0xb6c7, 0xdcba, 0xb6c5, 0xdcc3, 0xb6cb,\n  0xdcc4, 0xdcbf, 0xb6cc, 0xdcb4, 0xb6c9, 0xdcb5, 0xdcbe, 0xdcbc,\n  0xdcb8, 0xb6c8, 0xdcb6, 0xb6ce, 0xdcbb, 0xdcc2, 0xdcb9, 0xdcc1,\n  0xb9b6, 0xb9b3, 0xb9b4, 0xe0f9, 0xe0f1, 0xb9b2, 0xb9af, 0xe0f2,\n  0xb9b1, 0xe0f5, 0xe0f7, 0xe0fe, 0xe0fd, 0xe0f8, 0xb9ae, 0xe0f0,\n  0xb9ac, 0xe0f3, 0xb9b7, 0xe0f6, 0xe0fa, 0xb9b0, 0xb9ad, 0xe0fc,\n  0xe0fb, 0xb9b5, 0xe0f4, 0xbbf8, 0xe4ec, 0xe4e9, 0xbbf9, 0xbbf7,\n  0xe4f0, 0xe4ed, 0xe4e6, 0xbbf6, 0xbbfa, 0xe4e7, 0xbbf5, 0xbbfd,\n  0xe4ea, 0xe4eb, 0xbbfb, 0xbbfc, 0xe4f1, 0xe4ee, 0xe4ef, 0xbeaa,\n  0xe8f8, 0xbea7, 0xe8f5, 0xbea9, 0xbeab, 0xe8f6, 0xbea8, 0xe8f7,\n  0xe8f4, 0xc076, 0xecbd, 0xc077, 0xecbb, 0xecbc, 0xecba, 0xecb9,\n  0xecbe, 0xc075, 0xefb8, 0xefb9, 0xe4e8, 0xefb7, 0xc078, 0xc35f,\n  0xf1eb, 0xf1ec, 0xc4d7, 0xc4d8, 0xf5c1, 0xf5c0, 0xc56c, 0xc56b,\n  0xf7d0, 0xa449, 0xa461, 0xa4b9, 0xa4b8, 0xa553, 0xa552, 0xa5fc,\n  0xa5fb, 0xa5fd, 0xa5fa, 0xa74a, 0xa749, 0xa74b, 0xa8e0, 0xa8df,\n  0xa8e1, 0xab5e, 0xa259, 0xd0de, 0xa25a, 0xb0c2, 0xa25c, 0xa25b,\n  0xd860, 0xa25d, 0xb9b8, 0xa25e, 0xa44a, 0xa4ba, 0xa5fe, 0xa8e2,\n  0xa44b, 0xa4bd, 0xa4bb, 0xa4bc, 0xa640, 0xa74c, 0xa8e4, 0xa8e3,\n  0xa8e5, 0xaddd, 0xbeac, 0xc94e, 0xa554, 0xa555, 0xa641, 0xca6a,\n  0xab60, 0xab5f, 0xd0e0, 0xd0df, 0xb0c3, 0xa4be, 0xc955, 0xcbcd,\n  0xab61, 0xade0, 0xadde, 0xaddf, 0xbead, 0xa556, 0xa642, 0xc9bc,\n  0xa74d, 0xa74e, 0xca6b, 0xcbce, 0xa8e6, 0xcbcf, 0xd0e2, 0xd0e3,\n  0xade3, 0xd0e4, 0xd0e1, 0xade4, 0xade2, 0xade1, 0xd0e5, 0xd468,\n  0xd861, 0xdcc5, 0xe140, 0xbbfe, 0xbeae, 0xe8f9, 0xa44c, 0xa45a,\n  0xb0c4, 0xb3cd, 0xb9b9, 0xc942, 0xa4bf, 0xa559, 0xa557, 0xa558,\n  0xa8e7, 0xa44d, 0xa44e, 0xa462, 0xa4c0, 0xa4c1, 0xa4c2, 0xc9be,\n  0xa55a, 0xc96b, 0xa646, 0xc9bf, 0xa644, 0xa645, 0xc9bd, 0xa647,\n  0xa643, 0xca6c, 0xaaec, 0xca6d, 0xca6e, 0xa750, 0xa74f, 0xa753,\n  0xa751, 0xa752, 0xa8ed, 0xa8ec, 0xcbd4, 0xcbd1, 0xcbd2, 0xcbd0,\n  0xa8ee, 0xa8ea, 0xa8e9, 0xa8eb, 0xa8e8, 0xa8ef, 0xab63, 0xcdf0,\n  0xcbd3, 0xab68, 0xcdf1, 0xab64, 0xab67, 0xab66, 0xab65, 0xab62,\n  0xd0e8, 0xade7, 0xd0eb, 0xade5, 0xd0e7, 0xade8, 0xade6, 0xade9,\n  0xd0e9, 0xd0ea, 0xd0e6, 0xd0ec, 0xb3d1, 0xb0c5, 0xd469, 0xd46b,\n  0xd46a, 0xd46c, 0xb0c6, 0xb3ce, 0xb3cf, 0xb3d0, 0xb6d0, 0xdcc7,\n  0xdcc6, 0xdcc8, 0xdcc9, 0xb6d1, 0xb6cf, 0xe141, 0xe142, 0xb9bb,\n  0xb9ba, 0xe35a, 0xbc40, 0xbc41, 0xbc42, 0xbc44, 0xe4f2, 0xe4f3,\n  0xbc43, 0xbeaf, 0xbeb0, 0xf1ed, 0xf5c3, 0xf5c2, 0xf7d1, 0xa44f,\n  0xa55c, 0xa55b, 0xa648, 0xc9c0, 0xa755, 0xa756, 0xa754, 0xa757,\n  0xca6f, 0xca70, 0xa8f1, 0xcbd5, 0xa8f0, 0xcdf2, 0xab6c, 0xcdf3,\n  0xab6b, 0xab69, 0xab6a, 0xd0ed, 0xb0c7, 0xd46e, 0xb0ca, 0xd46d,\n  0xb1e5, 0xb0c9, 0xb0c8, 0xb3d4, 0xb3d3, 0xb3d2, 0xb6d2, 0xb6d5,\n  0xb6d6, 0xb6d4, 0xb6d3, 0xe143, 0xe144, 0xe4f5, 0xbc45, 0xe4f4,\n  0xbeb1, 0xecbf, 0xc079, 0xf1ee, 0xc455, 0xa463, 0xa4c3, 0xc956,\n  0xa4c4, 0xa4c5, 0xa55d, 0xa55e, 0xa649, 0xca71, 0xcbd6, 0xcbd7,\n  0xab6d, 0xd0ee, 0xb0cc, 0xb0cb, 0xd863, 0xd862, 0xa450, 0xa4c6,\n  0xa55f, 0xb0cd, 0xc943, 0xc96c, 0xa560, 0xc9c2, 0xa64b, 0xa64a,\n  0xc9c1, 0xa758, 0xadea, 0xd46f, 0xb6d7, 0xe145, 0xb9bc, 0xe8fa,\n  0xf3fd, 0xa4c7, 0xcbd8, 0xcdf4, 0xb0d0, 0xb0ce, 0xb0cf, 0xa451,\n  0xa464, 0xa2cd, 0xa4ca, 0xa4c9, 0xa4c8, 0xa563, 0xa562, 0xc96d,\n  0xc9c3, 0xa8f5, 0xa8f2, 0xa8f4, 0xa8f3, 0xab6e, 0xb3d5, 0xa452,\n  0xa4cb, 0xa565, 0xa564, 0xca72, 0xa8f6, 0xc957, 0xa567, 0xa566,\n  0xa64c, 0xa64d, 0xca73, 0xa759, 0xa75a, 0xa8f7, 0xa8f8, 0xa8f9,\n  0xab6f, 0xcdf5, 0xadeb, 0xc944, 0xa4cc, 0xc9c4, 0xca74, 0xca75,\n  0xcbd9, 0xcbda, 0xcdf7, 0xcdf6, 0xcdf9, 0xcdf8, 0xab70, 0xd470,\n  0xaded, 0xd0ef, 0xadec, 0xd864, 0xb3d6, 0xd865, 0xe146, 0xb9bd,\n  0xbc46, 0xf1ef, 0xc958, 0xa568, 0xb0d1, 0xa453, 0xa465, 0xa4ce,\n  0xa4cd, 0xa4cf, 0xa8fb, 0xa8fa, 0xa8fc, 0xab71, 0xadee, 0xe8fb,\n  0xc24f, 0xa466, 0xa56a, 0xa579, 0xa574, 0xa56f, 0xa56e, 0xa575,\n  0xa573, 0xa56c, 0xa57a, 0xa56d, 0xa569, 0xa578, 0xa577, 0xa576,\n  0xa56b, 0xa572, 0xa571, 0xa57b, 0xa570, 0xa653, 0xa659, 0xa655,\n  0xa65b, 0xc9c5, 0xa658, 0xa64e, 0xa651, 0xa654, 0xa650, 0xa657,\n  0xa65a, 0xa64f, 0xa652, 0xa656, 0xa65c, 0xca7e, 0xca7b, 0xa767,\n  0xca7c, 0xa75b, 0xa75d, 0xa775, 0xa770, 0xcaa5, 0xca7d, 0xa75f,\n  0xa761, 0xcaa4, 0xa768, 0xca78, 0xa774, 0xa776, 0xa75c, 0xa76d,\n  0xca76, 0xa773, 0xa764, 0xa76e, 0xa76f, 0xca77, 0xa76c, 0xa76a,\n  0xa76b, 0xa771, 0xcaa1, 0xa75e, 0xa772, 0xcaa3, 0xa766, 0xa763,\n  0xca7a, 0xa762, 0xcaa6, 0xa765, 0xa769, 0xa760, 0xcaa2, 0xca79,\n  0xcbeb, 0xcbea, 0xa94f, 0xcbed, 0xcbef, 0xcbe4, 0xcbe7, 0xcbee,\n  0xa950, 0xcbe1, 0xcbe5, 0xcbe9, 0xce49, 0xa94b, 0xce4d, 0xa8fd,\n  0xcbe6, 0xa8fe, 0xa94c, 0xa945, 0xa941, 0xcbe2, 0xa944, 0xa949,\n  0xa952, 0xcbe3, 0xcbdc, 0xa943, 0xcbdd, 0xcbdf, 0xa946, 0xa948,\n  0xcbdb, 0xcbe0, 0xa951, 0xa94d, 0xcbe8, 0xa953, 0xa94a, 0xcbde,\n  0xa947, 0xa942, 0xa940, 0xcbec, 0xa94e, 0xce48, 0xcdfb, 0xce4b,\n  0xcdfd, 0xab78, 0xaba8, 0xab74, 0xaba7, 0xab7d, 0xaba4, 0xab72,\n  0xcdfc, 0xce43, 0xaba3, 0xce4f, 0xaba5, 0xab79, 0xce45, 0xce42,\n  0xab77, 0xcdfa, 0xaba6, 0xce4a, 0xab7c, 0xce4c, 0xaba9, 0xab73,\n  0xab7e, 0xab7b, 0xce40, 0xaba1, 0xce46, 0xce47, 0xab7a, 0xaba2,\n  0xab76, 0xab75, 0xcdfe, 0xce44, 0xce4e, 0xd144, 0xadfb, 0xd0f1,\n  0xd0f6, 0xadf4, 0xae40, 0xd0f4, 0xadef, 0xadf9, 0xadfe, 0xd0fb,\n  0xadfa, 0xadfd, 0xd0fe, 0xadf5, 0xd0f5, 0xd142, 0xd143, 0xadf7,\n  0xd141, 0xadf3, 0xae43, 0xd0f8, 0xadf1, 0xd146, 0xd0f9, 0xd0fd,\n  0xadf6, 0xae42, 0xd0fa, 0xadfc, 0xd140, 0xd147, 0xd4a1, 0xd145,\n  0xae44, 0xadf0, 0xd0fc, 0xd0f3, 0xadf8, 0xd0f2, 0xd0f7, 0xd0f0,\n  0xae41, 0xd477, 0xb0e4, 0xd4a7, 0xb0e2, 0xb0df, 0xd47c, 0xb0db,\n  0xd4a2, 0xb0e6, 0xd476, 0xd47b, 0xd47a, 0xadf2, 0xb0e1, 0xd4a5,\n  0xd4a8, 0xd473, 0xb3e8, 0xd4a9, 0xb0e7, 0xb0d9, 0xb0d6, 0xd47e,\n  0xb0d3, 0xd4a6, 0xb0da, 0xd4aa, 0xd474, 0xd4a4, 0xb0dd, 0xd475,\n  0xd478, 0xd47d, 0xb0de, 0xb0dc, 0xb0e8, 0xb0e3, 0xb0d7, 0xb1d2,\n  0xb0d8, 0xd479, 0xb0e5, 0xb0e0, 0xd4a3, 0xb0d5, 0xb0d4, 0xd471,\n  0xd472, 0xd86a, 0xb3d7, 0xb3da, 0xd875, 0xb3ee, 0xd878, 0xb3d8,\n  0xd871, 0xb3de, 0xb3e4, 0xb5bd, 0xb3e2, 0xd86e, 0xb3ef, 0xb3db,\n  0xb3e3, 0xd876, 0xdcd7, 0xd87b, 0xd86f, 0xd866, 0xd873, 0xd86d,\n  0xb3e1, 0xd879, 0xb3dd, 0xb3f1, 0xb3ea, 0xb3df, 0xb3dc, 0xb3e7,\n  0xd87a, 0xd86c, 0xd872, 0xd874, 0xd868, 0xd877, 0xb3d9, 0xd867,\n  0xb3e0, 0xb3f0, 0xb3ec, 0xd869, 0xb3e6, 0xb3ed, 0xb3e9, 0xb3e5,\n  0xd870, 0xb3eb, 0xdcd5, 0xdcd1, 0xdce0, 0xdcca, 0xdcd3, 0xb6e5,\n  0xb6e6, 0xb6de, 0xdcdc, 0xb6e8, 0xdccf, 0xdcce, 0xdccc, 0xdcde,\n  0xb6dc, 0xdcd8, 0xdccd, 0xb6df, 0xdcd6, 0xb6da, 0xdcd2, 0xdcd9,\n  0xdcdb, 0xdcdf, 0xb6e3, 0xdccb, 0xb6dd, 0xdcd0, 0xb6d8, 0xb6e4,\n  0xdcda, 0xb6e0, 0xb6e1, 0xb6e7, 0xb6db, 0xa25f, 0xb6d9, 0xdcd4,\n  0xb6e2, 0xdcdd, 0xb9cd, 0xb9c8, 0xe155, 0xe151, 0xe14b, 0xb9c2,\n  0xb9be, 0xe154, 0xb9bf, 0xe14e, 0xe150, 0xe153, 0xb9c4, 0xb9cb,\n  0xb9c5, 0xe149, 0xb9c6, 0xb9c7, 0xe14c, 0xb9cc, 0xe14a, 0xe14f,\n  0xb9c3, 0xe148, 0xb9c9, 0xb9c1, 0xb9c0, 0xe14d, 0xe152, 0xb9ca,\n  0xe147, 0xbc4d, 0xe547, 0xe544, 0xbc47, 0xbc53, 0xbc54, 0xbc4a,\n  0xe542, 0xbc4c, 0xe4f9, 0xbc52, 0xe546, 0xbc49, 0xe548, 0xbc48,\n  0xe543, 0xe545, 0xbc4b, 0xe541, 0xe4fa, 0xe4f7, 0xd86b, 0xe4fd,\n  0xe4f6, 0xe4fc, 0xe4fb, 0xe4f8, 0xbc4f, 0xbc4e, 0xbc50, 0xe4fe,\n  0xbeb2, 0xe540, 0xe945, 0xe8fd, 0xbebe, 0xe942, 0xbeb6, 0xbeba,\n  0xe941, 0xbeb9, 0xbeb5, 0xbeb8, 0xbeb3, 0xbebd, 0xe943, 0xe8fe,\n  0xbebc, 0xe8fc, 0xbebb, 0xe944, 0xe940, 0xbc51, 0xbebf, 0xe946,\n  0xbeb7, 0xbeb4, 0xecc6, 0xecc8, 0xc07b, 0xecc9, 0xecc7, 0xecc5,\n  0xecc4, 0xc07d, 0xecc3, 0xc07e, 0xecc1, 0xecc2, 0xc07a, 0xc0a1,\n  0xc07c, 0xecc0, 0xc250, 0xefbc, 0xefba, 0xefbf, 0xefbd, 0xefbb,\n  0xefbe, 0xc360, 0xf1f2, 0xf1f3, 0xc456, 0xf1f4, 0xf1f0, 0xf1f5,\n  0xf1f1, 0xc251, 0xf3fe, 0xf441, 0xc459, 0xf440, 0xc458, 0xc457,\n  0xc45a, 0xf5c5, 0xf5c6, 0xc4da, 0xc4d9, 0xc4db, 0xf5c4, 0xf6d8,\n  0xf6d7, 0xc56d, 0xc56f, 0xc56e, 0xf6d9, 0xc5c8, 0xf8a6, 0xc5f1,\n  0xf8a5, 0xf8ee, 0xc949, 0xa57d, 0xa57c, 0xa65f, 0xa65e, 0xc9c7,\n  0xa65d, 0xc9c6, 0xa779, 0xcaa9, 0xcaa8, 0xa777, 0xa77a, 0xcaa7,\n  0xa778, 0xcbf0, 0xcbf1, 0xa954, 0xabaa, 0xd148, 0xd149, 0xae45,\n  0xae46, 0xd4ac, 0xb0e9, 0xb0eb, 0xd4ab, 0xb0ea, 0xd87c, 0xb3f2,\n  0xb6e9, 0xb6ea, 0xdce1, 0xb9cf, 0xb9ce, 0xe549, 0xe948, 0xe947,\n  0xf96b, 0xa467, 0xc959, 0xc96e, 0xc96f, 0xa662, 0xa666, 0xc9c9,\n  0xa664, 0xa663, 0xc9c8, 0xa665, 0xa661, 0xa660, 0xc9ca, 0xa7a6,\n  0xa7a3, 0xa77d, 0xcaaa, 0xcaab, 0xa7a1, 0xcaad, 0xa77b, 0xcaae,\n  0xcaac, 0xa77e, 0xa7a2, 0xa7a5, 0xa7a4, 0xa77c, 0xcaaf, 0xa959,\n  0xcbfe, 0xa95b, 0xa95a, 0xcc40, 0xa958, 0xa957, 0xcbf5, 0xcbf4,\n  0xcbf2, 0xcbf7, 0xcbf6, 0xcbf3, 0xcbfc, 0xcbfd, 0xcbfa, 0xcbf8,\n  0xa956, 0xcbfb, 0xa95c, 0xcc41, 0xcbf9, 0xabab, 0xa955, 0xabac,\n  0xce54, 0xce5a, 0xabb2, 0xce58, 0xce5e, 0xce55, 0xce59, 0xce5b,\n  0xce5d, 0xce57, 0xce56, 0xce51, 0xce52, 0xabad, 0xabaf, 0xabae,\n  0xce53, 0xce5c, 0xabb1, 0xce50, 0xd153, 0xd152, 0xd157, 0xd14e,\n  0xd151, 0xd150, 0xd154, 0xd158, 0xae47, 0xae4a, 0xd14f, 0xd155,\n  0xae49, 0xd14a, 0xabb0, 0xd4ba, 0xd156, 0xd14d, 0xae48, 0xd14c,\n  0xd4b1, 0xb0ec, 0xb0f0, 0xd4c1, 0xd4af, 0xd4bd, 0xb0f1, 0xd4bf,\n  0xd4c5, 0xd4c9, 0xd4c0, 0xd4b4, 0xd4bc, 0xd4ca, 0xd4c8, 0xd4be,\n  0xd4b9, 0xd4b2, 0xd8a6, 0xd4b0, 0xb0f5, 0xd4b7, 0xb0f6, 0xb0f2,\n  0xd4ad, 0xd4c3, 0xd4b5, 0xd4b3, 0xd4c6, 0xb0f3, 0xd4cc, 0xb0ed,\n  0xb0ef, 0xd4bb, 0xd4b6, 0xae4b, 0xb0ee, 0xd4b8, 0xd4c7, 0xd4cb,\n  0xd4c2, 0xd4c4, 0xd4ae, 0xd8a1, 0xd8aa, 0xd8a9, 0xb3fa, 0xd8a2,\n  0xb3fb, 0xb3f9, 0xd8a4, 0xb3f6, 0xd8a8, 0xd8a3, 0xd8a5, 0xd87d,\n  0xb3f4, 0xd8b2, 0xd8b1, 0xd8ae, 0xb3f3, 0xb3f7, 0xb3f8, 0xd14b,\n  0xd8ab, 0xb3f5, 0xb0f4, 0xd8ad, 0xd87e, 0xd8b0, 0xd8af, 0xd8b3,\n  0xdcef, 0xd8ac, 0xd8a7, 0xdce7, 0xb6f4, 0xb6f7, 0xb6f2, 0xdce6,\n  0xdcea, 0xdce5, 0xb6ec, 0xb6f6, 0xdce2, 0xb6f0, 0xdce9, 0xb6ee,\n  0xb6ed, 0xdcec, 0xb6ef, 0xdcee, 0xdceb, 0xb6eb, 0xb6f5, 0xdcf0,\n  0xdce4, 0xdced, 0xdce3, 0xb6f1, 0xb6f3, 0xdce8, 0xdcf1, 0xe15d,\n  0xb9d0, 0xe163, 0xb9d5, 0xe15f, 0xe166, 0xe157, 0xb9d7, 0xb9d1,\n  0xe15c, 0xbc55, 0xe15b, 0xe164, 0xb9d2, 0xb9d6, 0xe15a, 0xe160,\n  0xe165, 0xe156, 0xb9d4, 0xe15e, 0xe162, 0xe168, 0xe158, 0xe161,\n  0xb9d3, 0xe167, 0xe159, 0xbc59, 0xe54b, 0xbc57, 0xbc56, 0xe54d,\n  0xe552, 0xe54e, 0xe551, 0xbc5c, 0xbea5, 0xbc5b, 0xe54a, 0xe550,\n  0xbc5a, 0xe54f, 0xe54c, 0xbc58, 0xe94d, 0xe94f, 0xe94a, 0xbec1,\n  0xe94c, 0xbec0, 0xe94e, 0xbec3, 0xe950, 0xbec2, 0xe949, 0xe94b,\n  0xc0a5, 0xeccc, 0xc0a4, 0xeccd, 0xc0a3, 0xeccb, 0xc0a2, 0xecca,\n  0xc253, 0xc252, 0xf1f6, 0xf1f8, 0xf1f7, 0xc361, 0xc362, 0xc363,\n  0xf442, 0xc45b, 0xf7d3, 0xf7d2, 0xc5f2, 0xa468, 0xa4d0, 0xa7a7,\n  0xce5f, 0xb3fc, 0xb3fd, 0xdcf2, 0xb9d8, 0xe169, 0xe553, 0xc95a,\n  0xcab0, 0xcc42, 0xce60, 0xd159, 0xae4c, 0xf1f9, 0xc4dc, 0xa469,\n  0xa57e, 0xc970, 0xa667, 0xa668, 0xa95d, 0xb0f7, 0xb9da, 0xb9db,\n  0xb9d9, 0xa46a, 0xa4d1, 0xa4d3, 0xa4d2, 0xc95b, 0xa4d4, 0xa5a1,\n  0xc971, 0xa5a2, 0xa669, 0xa66a, 0xc9cb, 0xa7a8, 0xcab1, 0xa961,\n  0xcc43, 0xa95f, 0xa960, 0xa95e, 0xd15a, 0xabb6, 0xabb5, 0xabb7,\n  0xabb4, 0xce61, 0xa962, 0xabb3, 0xae4d, 0xae4e, 0xae4f, 0xd4cd,\n  0xb3fe, 0xd8b4, 0xb0f8, 0xb6f8, 0xb9dd, 0xb9dc, 0xe16a, 0xbc5d,\n  0xbec4, 0xefc0, 0xf6da, 0xf7d4, 0xa46b, 0xa5a3, 0xa5a4, 0xc9d1,\n  0xa66c, 0xa66f, 0xc9cf, 0xc9cd, 0xa66e, 0xc9d0, 0xc9d2, 0xc9cc,\n  0xa671, 0xa670, 0xa66d, 0xa66b, 0xc9ce, 0xa7b3, 0xa7b0, 0xcab6,\n  0xcab9, 0xcab8, 0xa7aa, 0xa7b2, 0xa7af, 0xcab5, 0xcab3, 0xa7ae,\n  0xa7a9, 0xa7ac, 0xcab4, 0xcabb, 0xcab7, 0xa7ad, 0xa7b1, 0xa7b4,\n  0xcab2, 0xcaba, 0xa7ab, 0xa967, 0xa96f, 0xcc4f, 0xcc48, 0xa970,\n  0xcc53, 0xcc44, 0xcc4b, 0xa966, 0xcc45, 0xa964, 0xcc4c, 0xcc50,\n  0xa963, 0xcc51, 0xcc4a, 0xcc4d, 0xa972, 0xa969, 0xcc54, 0xcc52,\n  0xa96e, 0xa96c, 0xcc49, 0xa96b, 0xcc47, 0xcc46, 0xa96a, 0xa968,\n  0xa971, 0xa96d, 0xa965, 0xcc4e, 0xabb9, 0xabc0, 0xce6f, 0xabb8,\n  0xce67, 0xce63, 0xce73, 0xce62, 0xabbb, 0xce6c, 0xabbe, 0xabc1,\n  0xabbc, 0xce70, 0xabbf, 0xae56, 0xce76, 0xce64, 0xce66, 0xce6d,\n  0xce71, 0xce75, 0xce72, 0xce6b, 0xce6e, 0xce68, 0xabc3, 0xce6a,\n  0xce69, 0xce74, 0xabba, 0xce65, 0xabc2, 0xabbd, 0xae5c, 0xd162,\n  0xae5b, 0xd160, 0xae50, 0xae55, 0xd15f, 0xd15c, 0xd161, 0xae51,\n  0xd15b, 0xae54, 0xae52, 0xd163, 0xae53, 0xae57, 0xae58, 0xae5a,\n  0xae59, 0xd15d, 0xd15e, 0xd164, 0xd4d4, 0xb0f9, 0xd8c2, 0xd4d3,\n  0xd4e6, 0xb140, 0xd4e4, 0xb0fe, 0xb0fa, 0xd4ed, 0xd4dd, 0xd4e0,\n  0xb143, 0xd4ea, 0xd4e2, 0xb0fb, 0xb144, 0xd4e7, 0xd4e5, 0xd4d6,\n  0xd4eb, 0xd4df, 0xd4da, 0xd4d0, 0xd4ec, 0xd4dc, 0xd4cf, 0xb142,\n  0xd4e1, 0xd4ee, 0xd4de, 0xd4d2, 0xd4d7, 0xd4ce, 0xb141, 0xd4db,\n  0xd4d8, 0xb0fc, 0xd4d1, 0xd4e9, 0xb0fd, 0xd4d9, 0xd4d5, 0xd4e8,\n  0xb440, 0xd8bb, 0xd8b8, 0xd8c9, 0xd8bd, 0xd8ca, 0xb442, 0xd8c6,\n  0xd8c3, 0xd8c4, 0xd8c7, 0xd8cb, 0xd4e3, 0xd8cd, 0xdd47, 0xb443,\n  0xd8ce, 0xd8b6, 0xd8c0, 0xd8c5, 0xb441, 0xb444, 0xd8cc, 0xd8cf,\n  0xd8ba, 0xd8b7, 0xd8b9, 0xd8be, 0xd8bc, 0xb445, 0xd8c8, 0xd8bf,\n  0xd8c1, 0xd8b5, 0xdcfa, 0xdcf8, 0xb742, 0xb740, 0xdd43, 0xdcf9,\n  0xdd44, 0xdd40, 0xdcf7, 0xdd46, 0xdcf6, 0xdcfd, 0xb6fe, 0xb6fd,\n  0xb6fc, 0xdcfb, 0xdd41, 0xb6f9, 0xb741, 0xdcf4, 0xdcfe, 0xdcf3,\n  0xdcfc, 0xb6fa, 0xdd42, 0xdcf5, 0xb6fb, 0xdd45, 0xe16e, 0xb9e2,\n  0xb9e1, 0xb9e3, 0xe17a, 0xe170, 0xe176, 0xe16b, 0xe179, 0xe178,\n  0xe17c, 0xe175, 0xb9de, 0xe174, 0xb9e4, 0xe16d, 0xb9df, 0xe17b,\n  0xb9e0, 0xe16f, 0xe172, 0xe177, 0xe171, 0xe16c, 0xe173, 0xe555,\n  0xbc61, 0xe558, 0xe557, 0xe55a, 0xe55c, 0xbc5f, 0xe556, 0xe554,\n  0xe55d, 0xe55b, 0xe559, 0xe55f, 0xe55e, 0xbc63, 0xbc5e, 0xbc60,\n  0xbc62, 0xe560, 0xe957, 0xe956, 0xe955, 0xe958, 0xe951, 0xe952,\n  0xe95a, 0xe953, 0xbec5, 0xe95c, 0xe95b, 0xe954, 0xecd1, 0xc0a8,\n  0xeccf, 0xecd4, 0xecd3, 0xe959, 0xc0a7, 0xecd2, 0xecce, 0xecd6,\n  0xecd5, 0xc0a6, 0xecd0, 0xbec6, 0xc254, 0xefc1, 0xf1fa, 0xf1fb,\n  0xf1fc, 0xc45c, 0xc45d, 0xf443, 0xf5c8, 0xf5c7, 0xf6db, 0xf6dc,\n  0xf7d5, 0xf8a7, 0xa46c, 0xa46d, 0xa46e, 0xa4d5, 0xa5a5, 0xc9d3,\n  0xa672, 0xa673, 0xa7b7, 0xa7b8, 0xa7b6, 0xa7b5, 0xa973, 0xcc55,\n  0xa975, 0xa974, 0xcc56, 0xabc4, 0xae5d, 0xd165, 0xd4f0, 0xb145,\n  0xb447, 0xd4ef, 0xb446, 0xb9e5, 0xe17d, 0xbec7, 0xc0a9, 0xecd7,\n  0xc45e, 0xc570, 0xc972, 0xa5a6, 0xc973, 0xa676, 0xa674, 0xa675,\n  0xa677, 0xa7ba, 0xa7b9, 0xcabc, 0xa7bb, 0xcabd, 0xcc57, 0xcc58,\n  0xa976, 0xa978, 0xa97a, 0xa977, 0xa97b, 0xa979, 0xabc8, 0xabc5,\n  0xabc7, 0xabc9, 0xabc6, 0xd166, 0xce77, 0xd168, 0xd167, 0xae63,\n  0xae5f, 0xae60, 0xae62, 0xae64, 0xae61, 0xae66, 0xae65, 0xb14a,\n  0xd4f2, 0xd4f1, 0xb149, 0xb148, 0xb147, 0xb14b, 0xb146, 0xd8d5,\n  0xd8d2, 0xb449, 0xd8d1, 0xd8d6, 0xb44b, 0xd8d4, 0xb448, 0xb44a,\n  0xd8d3, 0xdd48, 0xdd49, 0xdd4a, 0xb9e6, 0xb9ee, 0xe17e, 0xb9e8,\n  0xb9ec, 0xe1a1, 0xb9ed, 0xb9e9, 0xb9ea, 0xb9e7, 0xb9eb, 0xbc66,\n  0xd8d0, 0xbc67, 0xbc65, 0xbc64, 0xe95d, 0xbec8, 0xecd8, 0xecd9,\n  0xc364, 0xc45f, 0xa46f, 0xa678, 0xabca, 0xd169, 0xae67, 0xb14e,\n  0xb14d, 0xb14c, 0xb44c, 0xb44d, 0xd8d7, 0xb9ef, 0xbec9, 0xa470,\n  0xc95c, 0xa4d6, 0xc974, 0xc9d4, 0xa679, 0xa97c, 0xdd4b, 0xa471,\n  0xa4d7, 0xc9d5, 0xcabe, 0xcabf, 0xa7bc, 0xd8d8, 0xb44e, 0xdd4c,\n  0xc0aa, 0xa472, 0xa4a8, 0xa4d8, 0xc975, 0xa5a7, 0xa7c0, 0xa7bf,\n  0xa7bd, 0xa7be, 0xcc59, 0xa97e, 0xa9a1, 0xcc5a, 0xa97d, 0xabce,\n  0xce78, 0xabcd, 0xabcb, 0xabcc, 0xae6a, 0xae68, 0xd16b, 0xae69,\n  0xd16a, 0xae5e, 0xd4f3, 0xb150, 0xb151, 0xb14f, 0xb9f0, 0xe1a2,\n  0xbc68, 0xbc69, 0xe561, 0xc0ab, 0xefc2, 0xefc3, 0xc4dd, 0xf8a8,\n  0xc94b, 0xa4d9, 0xa473, 0xc977, 0xc976, 0xa67a, 0xc9d7, 0xc9d8,\n  0xc9d6, 0xc9d9, 0xcac7, 0xcac2, 0xcac4, 0xcac6, 0xcac3, 0xa7c4,\n  0xcac0, 0xcac1, 0xa7c1, 0xa7c2, 0xcac5, 0xcac8, 0xa7c3, 0xcac9,\n  0xcc68, 0xcc62, 0xcc5d, 0xa9a3, 0xcc65, 0xcc63, 0xcc5c, 0xcc69,\n  0xcc6c, 0xcc67, 0xcc60, 0xa9a5, 0xcc66, 0xa9a6, 0xcc61, 0xcc64,\n  0xcc5b, 0xcc5f, 0xcc6b, 0xa9a7, 0xa9a8, 0xcc5e, 0xcc6a, 0xa9a2,\n  0xa9a4, 0xceab, 0xcea4, 0xceaa, 0xcea3, 0xcea5, 0xce7d, 0xce7b,\n  0xceac, 0xcea9, 0xce79, 0xabd0, 0xcea7, 0xcea8, 0xcea6, 0xce7c,\n  0xce7a, 0xabcf, 0xcea2, 0xce7e, 0xcea1, 0xcead, 0xae6f, 0xae6e,\n  0xd16c, 0xae6b, 0xd16e, 0xae70, 0xd16f, 0xae73, 0xae71, 0xd170,\n  0xceae, 0xd172, 0xae6d, 0xae6c, 0xd16d, 0xd171, 0xae72, 0xb153,\n  0xb152, 0xd4f5, 0xd4f9, 0xd4fb, 0xb154, 0xd4fe, 0xb158, 0xd541,\n  0xb15a, 0xb156, 0xb15e, 0xb15b, 0xd4f7, 0xb155, 0xd4f6, 0xd4f4,\n  0xd543, 0xd4f8, 0xb157, 0xd542, 0xb15c, 0xd4fd, 0xd4fc, 0xb15d,\n  0xd4fa, 0xb159, 0xd544, 0xd540, 0xd8e7, 0xd8ee, 0xd8e3, 0xb451,\n  0xd8df, 0xd8ef, 0xd8d9, 0xd8ec, 0xd8ea, 0xd8e4, 0xd8ed, 0xd8e6,\n  0xd8de, 0xd8f0, 0xd8dc, 0xd8e9, 0xd8da, 0xd8f1, 0xb452, 0xd8eb,\n  0xdd4f, 0xd8dd, 0xb44f, 0xd8e1, 0xb450, 0xd8e0, 0xd8e5, 0xd8e2,\n  0xd8e8, 0xdd53, 0xdd56, 0xdd4e, 0xdd50, 0xdd55, 0xdd54, 0xb743,\n  0xd8db, 0xdd52, 0xb744, 0xdd4d, 0xdd51, 0xe1a9, 0xe1b0, 0xe1a7,\n  0xe1ae, 0xe1a5, 0xe1ad, 0xe1b1, 0xe1a4, 0xe1a8, 0xe1a3, 0xb9f1,\n  0xe1a6, 0xb9f2, 0xe1ac, 0xe1ab, 0xe1aa, 0xe1af, 0xe565, 0xe567,\n  0xbc6b, 0xe568, 0xe563, 0xe562, 0xe56c, 0xe56a, 0xbc6a, 0xe56d,\n  0xe564, 0xe569, 0xe56b, 0xe566, 0xe961, 0xe966, 0xe960, 0xe965,\n  0xe95e, 0xe968, 0xe964, 0xe969, 0xe963, 0xe95f, 0xe967, 0xe96a,\n  0xe962, 0xecda, 0xc0af, 0xc0ad, 0xc0ac, 0xc0ae, 0xefc4, 0xf172,\n  0xf1fd, 0xf444, 0xf445, 0xc460, 0xf5c9, 0xc4de, 0xf5ca, 0xf6de,\n  0xc572, 0xc571, 0xf6dd, 0xc5c9, 0xf7d6, 0xa474, 0xa67b, 0xc9da,\n  0xcaca, 0xa8b5, 0xb15f, 0xa475, 0xa5aa, 0xa5a9, 0xa5a8, 0xa7c5,\n  0xae74, 0xdd57, 0xa476, 0xa477, 0xa478, 0xa4da, 0xabd1, 0xceaf,\n  0xb453, 0xa479, 0xc95d, 0xa5ab, 0xa5ac, 0xc978, 0xa67c, 0xcacb,\n  0xa7c6, 0xcacc, 0xa9ae, 0xcc6e, 0xa9ac, 0xa9ab, 0xcc6d, 0xa9a9,\n  0xcc6f, 0xa9aa, 0xa9ad, 0xabd2, 0xabd4, 0xceb3, 0xceb0, 0xceb1,\n  0xceb2, 0xceb4, 0xabd3, 0xd174, 0xd173, 0xae76, 0xae75, 0xb162,\n  0xd546, 0xb161, 0xb163, 0xb160, 0xb455, 0xd545, 0xb456, 0xd8f3,\n  0xb457, 0xd8f2, 0xb454, 0xdd5a, 0xdd5c, 0xb745, 0xdd5b, 0xdd59,\n  0xdd58, 0xe1b4, 0xb9f7, 0xb9f5, 0xb9f6, 0xe1b2, 0xe1b3, 0xb9f3,\n  0xe571, 0xe56f, 0xbc6d, 0xe570, 0xbc6e, 0xbc6c, 0xb9f4, 0xe96d,\n  0xe96b, 0xe96c, 0xe56e, 0xecdc, 0xc0b0, 0xecdb, 0xefc5, 0xefc6,\n  0xe96e, 0xf1fe, 0xa47a, 0xa5ad, 0xa67e, 0xc9db, 0xa67d, 0xa9af,\n  0xb746, 0xa4db, 0xa5ae, 0xabd5, 0xb458, 0xc979, 0xc97a, 0xc9dc,\n  0xa7c8, 0xcad0, 0xcace, 0xa7c9, 0xcacd, 0xcacf, 0xcad1, 0xa7c7,\n  0xa9b3, 0xa9b4, 0xa9b1, 0xa9b0, 0xceb8, 0xa9b2, 0xabd6, 0xceb7,\n  0xceb9, 0xceb6, 0xceba, 0xabd7, 0xae79, 0xd175, 0xd177, 0xae77,\n  0xd178, 0xae78, 0xd176, 0xceb5, 0xd547, 0xd54a, 0xd54b, 0xd548,\n  0xb167, 0xb166, 0xb164, 0xb165, 0xd549, 0xb168, 0xb45a, 0xb45b,\n  0xb45c, 0xdd5d, 0xdd5f, 0xdd61, 0xb748, 0xb747, 0xb459, 0xdd60,\n  0xdd5e, 0xe1b8, 0xe1b6, 0xe1bc, 0xb9f8, 0xe1bd, 0xe1ba, 0xb9f9,\n  0xe1b7, 0xe1b5, 0xe1bb, 0xbc70, 0xe573, 0xe1b9, 0xbc72, 0xe574,\n  0xbc71, 0xbc74, 0xe575, 0xbc6f, 0xbc73, 0xe973, 0xe971, 0xe970,\n  0xe972, 0xe96f, 0xc366, 0xf446, 0xf447, 0xf5cb, 0xf6df, 0xc655,\n  0xa9b5, 0xa7ca, 0xabd8, 0xa47b, 0xa4dc, 0xa5af, 0xc9dd, 0xa7cb,\n  0xcad2, 0xcebb, 0xabd9, 0xb9fa, 0xa47c, 0xa6a1, 0xb749, 0xa47d,\n  0xa4dd, 0xa4de, 0xa5b1, 0xa5b0, 0xc9de, 0xa6a2, 0xcad3, 0xa7cc,\n  0xcc71, 0xcc72, 0xcc73, 0xa9b6, 0xa9b7, 0xcc70, 0xa9b8, 0xabda,\n  0xcebc, 0xd17a, 0xae7a, 0xd179, 0xb169, 0xd54c, 0xb16a, 0xd54d,\n  0xb45d, 0xdd62, 0xe1bf, 0xe1be, 0xb9fb, 0xbc75, 0xe576, 0xbeca,\n  0xe974, 0xc0b1, 0xc573, 0xf7d8, 0xcc74, 0xcebd, 0xb16b, 0xd8f4,\n  0xb74a, 0xc255, 0xa7ce, 0xa7cd, 0xabdb, 0xd17b, 0xb16d, 0xb343,\n  0xb16e, 0xb16c, 0xb45e, 0xe1c0, 0xb9fc, 0xbc76, 0xc94c, 0xc9df,\n  0xcad5, 0xa7cf, 0xcad4, 0xa7d0, 0xa9bc, 0xcc77, 0xcc76, 0xa9bb,\n  0xa9b9, 0xa9ba, 0xcc75, 0xabdd, 0xcebe, 0xabe0, 0xabdc, 0xabe2,\n  0xabde, 0xabdf, 0xabe1, 0xae7d, 0xae7c, 0xae7b, 0xd54f, 0xb16f,\n  0xb172, 0xb170, 0xd54e, 0xb175, 0xb171, 0xd550, 0xb174, 0xb173,\n  0xd8f6, 0xd8f5, 0xb461, 0xb45f, 0xb460, 0xd8f7, 0xb74b, 0xdd64,\n  0xb74c, 0xdd63, 0xe577, 0xbc78, 0xe1c1, 0xbc77, 0xb9fd, 0xecde,\n  0xe975, 0xc0b2, 0xecdd, 0xf240, 0xf448, 0xf449, 0xa4df, 0xa5b2,\n  0xc97b, 0xa7d2, 0xa7d4, 0xc9e2, 0xcad8, 0xcad7, 0xcad6, 0xc9e1,\n  0xc9e0, 0xa6a4, 0xa7d3, 0xa7d1, 0xa6a3, 0xa9bd, 0xcc78, 0xa9be,\n  0xcadd, 0xcadf, 0xcade, 0xcc79, 0xcada, 0xa7d8, 0xa7d6, 0xcad9,\n  0xcadb, 0xcae1, 0xa7d5, 0xcadc, 0xcae5, 0xa9c0, 0xcae2, 0xa7d7,\n  0xcae0, 0xcae3, 0xa9bf, 0xa9c1, 0xcae4, 0xccaf, 0xcca2, 0xcc7e,\n  0xccae, 0xcca9, 0xabe7, 0xa9c2, 0xccaa, 0xccad, 0xabe3, 0xccac,\n  0xa9c3, 0xa9c8, 0xa9c6, 0xcca3, 0xcc7c, 0xcca5, 0xa9cd, 0xccb0,\n  0xabe4, 0xcca6, 0xabe5, 0xa9c9, 0xcca8, 0xcecd, 0xabe6, 0xcc7b,\n  0xa9ca, 0xabe8, 0xa9cb, 0xa9c7, 0xa9cc, 0xcca7, 0xcc7a, 0xccab,\n  0xa9c4, 0xcc7d, 0xcca4, 0xcca1, 0xa9c5, 0xcebf, 0xcec0, 0xceca,\n  0xd1a1, 0xcecb, 0xabee, 0xcece, 0xcec4, 0xabed, 0xcec6, 0xcec7,\n  0xcec9, 0xabe9, 0xaea3, 0xcec5, 0xcec1, 0xaea4, 0xcecf, 0xae7e,\n  0xd17d, 0xcec8, 0xd17c, 0xcec3, 0xcecc, 0xabec, 0xaea1, 0xabf2,\n  0xaea2, 0xced0, 0xd17e, 0xabeb, 0xaea6, 0xabf1, 0xabf0, 0xabef,\n  0xaea5, 0xced1, 0xaea7, 0xabea, 0xcec2, 0xb176, 0xd1a4, 0xd1a6,\n  0xd1a8, 0xaea8, 0xaeae, 0xd553, 0xd1ac, 0xd1a3, 0xb178, 0xd551,\n  0xaead, 0xaeab, 0xd1ae, 0xd552, 0xd1a5, 0xaeac, 0xd1a9, 0xaeaf,\n  0xd1ab, 0xaeaa, 0xd1aa, 0xd1ad, 0xd1a7, 0xaea9, 0xb179, 0xd1a2,\n  0xb177, 0xb17a, 0xd555, 0xd55e, 0xb464, 0xb17c, 0xb1a3, 0xb465,\n  0xd560, 0xb1aa, 0xd8f9, 0xd556, 0xb1a2, 0xb1a5, 0xb17e, 0xd554,\n  0xd562, 0xd565, 0xd949, 0xd563, 0xd8fd, 0xb1a1, 0xb1a8, 0xb1ac,\n  0xd55d, 0xd8f8, 0xd561, 0xb17b, 0xd8fa, 0xd564, 0xd8fc, 0xd559,\n  0xb462, 0xd557, 0xd558, 0xb1a7, 0xb1a6, 0xd55b, 0xb1ab, 0xd55f,\n  0xb1a4, 0xd55c, 0xb1a9, 0xb466, 0xb463, 0xd8fb, 0xd55a, 0xb17d,\n  0xb46b, 0xb46f, 0xd940, 0xb751, 0xb46d, 0xd944, 0xb471, 0xdd65,\n  0xd946, 0xb753, 0xb469, 0xb46c, 0xd947, 0xd948, 0xd94e, 0xb473,\n  0xb754, 0xd94a, 0xd94f, 0xd943, 0xb75e, 0xb755, 0xb472, 0xd941,\n  0xd950, 0xb75d, 0xb470, 0xb74e, 0xd94d, 0xb474, 0xd945, 0xd8fe,\n  0xb46a, 0xd942, 0xd94b, 0xb74d, 0xb752, 0xb467, 0xd94c, 0xb750,\n  0xb468, 0xb75c, 0xe1c3, 0xdd70, 0xdd68, 0xe1c2, 0xdd6c, 0xdd6e,\n  0xdd6b, 0xb75b, 0xdd6a, 0xb75f, 0xe1d2, 0xb75a, 0xba40, 0xdd71,\n  0xe1c4, 0xb758, 0xdd69, 0xdd6d, 0xb9fe, 0xb74f, 0xdd66, 0xdd67,\n  0xba41, 0xb757, 0xb759, 0xb756, 0xdd6f, 0xe1c8, 0xe1c9, 0xe1ce,\n  0xbc7d, 0xe1d5, 0xba47, 0xba46, 0xe1d0, 0xbc7c, 0xe1c5, 0xba45,\n  0xe1d4, 0xba43, 0xba44, 0xe1d1, 0xe5aa, 0xbc7a, 0xb46e, 0xe1d3,\n  0xbca3, 0xe1cb, 0xbc7b, 0xbca2, 0xe1c6, 0xe1ca, 0xe1c7, 0xe1cd,\n  0xba48, 0xbc79, 0xba42, 0xe57a, 0xe1cf, 0xbca1, 0xbca4, 0xe1cc,\n  0xbc7e, 0xe579, 0xe57e, 0xbece, 0xe578, 0xe9a3, 0xe5a9, 0xbca8,\n  0xbca6, 0xbecc, 0xe5a6, 0xe5a2, 0xbcac, 0xe978, 0xbcaa, 0xe5a1,\n  0xe976, 0xe5a5, 0xe5a8, 0xe57d, 0xbcab, 0xbca5, 0xe977, 0xbecd,\n  0xe5a7, 0xbca7, 0xbca9, 0xe5a4, 0xbcad, 0xe5a3, 0xe57c, 0xe57b,\n  0xbecb, 0xe5ab, 0xe97a, 0xece0, 0xbed0, 0xe9a2, 0xe97e, 0xece1,\n  0xbed1, 0xe9a1, 0xe97c, 0xc0b4, 0xecdf, 0xe979, 0xe97b, 0xc0b5,\n  0xbed3, 0xc0b3, 0xbed2, 0xc0b7, 0xe97d, 0xbecf, 0xefcf, 0xefc7,\n  0xece7, 0xefc8, 0xece3, 0xc256, 0xece5, 0xece4, 0xc0b6, 0xece2,\n  0xece6, 0xefd0, 0xefcc, 0xefce, 0xefc9, 0xefca, 0xefcd, 0xefcb,\n  0xc367, 0xc36a, 0xc369, 0xc368, 0xc461, 0xf44a, 0xc462, 0xf241,\n  0xc4df, 0xf5cc, 0xc4e0, 0xc574, 0xc5ca, 0xf7d9, 0xf7da, 0xf7db,\n  0xf9ba, 0xa4e0, 0xc97c, 0xa5b3, 0xa6a6, 0xa6a7, 0xa6a5, 0xa6a8,\n  0xa7da, 0xa7d9, 0xccb1, 0xa9cf, 0xa9ce, 0xd1af, 0xb1ad, 0xb1ae,\n  0xb475, 0xdd72, 0xb760, 0xb761, 0xdd74, 0xdd76, 0xdd75, 0xe1d7,\n  0xe1d6, 0xba49, 0xe1d8, 0xe5ac, 0xbcae, 0xbed4, 0xc0b8, 0xc257,\n  0xc0b9, 0xa4e1, 0xcae6, 0xccb2, 0xa9d1, 0xa9d0, 0xa9d2, 0xabf3,\n  0xced2, 0xced3, 0xd1b0, 0xaeb0, 0xb1af, 0xb476, 0xd951, 0xa4e2,\n  0xa47e, 0xa4e3, 0xc97d, 0xa5b7, 0xa5b6, 0xa5b4, 0xa5b5, 0xa6ab,\n  0xc9e9, 0xc9eb, 0xa6aa, 0xc9e3, 0xc9e4, 0xc9ea, 0xc9e6, 0xc9e8,\n  0xa6a9, 0xc9e5, 0xc9ec, 0xc9e7, 0xa7e1, 0xa7ea, 0xa7e8, 0xcaf0,\n  0xcaed, 0xcaf5, 0xa7e6, 0xcaf6, 0xa7df, 0xcaf3, 0xa7e5, 0xcaef,\n  0xcaee, 0xa7e3, 0xcaf4, 0xa7e4, 0xa9d3, 0xa7de, 0xcaf1, 0xcae7,\n  0xa7db, 0xa7ee, 0xcaec, 0xcaf2, 0xa7e0, 0xa7e2, 0xcae8, 0xcae9,\n  0xcaea, 0xa7ed, 0xa7e7, 0xa7ec, 0xcaeb, 0xa7eb, 0xa7dd, 0xa7dc,\n  0xa7e9, 0xa9e1, 0xccbe, 0xccb7, 0xa9dc, 0xa9ef, 0xccb3, 0xccba,\n  0xccbc, 0xccbf, 0xa9ea, 0xccbb, 0xccb4, 0xa9e8, 0xccb8, 0xccc0,\n  0xa9d9, 0xccbd, 0xa9e3, 0xa9e2, 0xccb6, 0xa9d7, 0xa9d8, 0xa9d6,\n  0xa9ee, 0xa9e6, 0xa9e0, 0xa9d4, 0xccb9, 0xa9df, 0xa9d5, 0xa9e7,\n  0xa9f0, 0xced4, 0xa9e4, 0xccb5, 0xa9da, 0xa9dd, 0xa9de, 0xa9ec,\n  0xa9ed, 0xa9eb, 0xa9e5, 0xa9e9, 0xa9db, 0xabf4, 0xceda, 0xac41,\n  0xabf8, 0xabfa, 0xac40, 0xcee6, 0xabfd, 0xd1b1, 0xaeb1, 0xac43,\n  0xced7, 0xcedf, 0xabfe, 0xcede, 0xcedb, 0xcee3, 0xcee5, 0xabf7,\n  0xabfb, 0xac42, 0xaeb3, 0xcee0, 0xabf9, 0xac45, 0xced9, 0xabfc,\n  0xaeb2, 0xabf6, 0xced6, 0xcedd, 0xced5, 0xced8, 0xcedc, 0xd1b2,\n  0xac44, 0xcee1, 0xcee2, 0xcee4, 0xabf5, 0xaec1, 0xd1be, 0xaebf,\n  0xaec0, 0xd1b4, 0xd1c4, 0xaeb6, 0xd566, 0xd1c6, 0xd1c0, 0xd1b7,\n  0xd1c9, 0xd1ba, 0xaebc, 0xd57d, 0xd1bd, 0xaebe, 0xaeb5, 0xd1cb,\n  0xd1bf, 0xaeb8, 0xd1b8, 0xd1b5, 0xd1b6, 0xaeb9, 0xd1c5, 0xd1cc,\n  0xaebb, 0xd1bc, 0xd1bb, 0xaec3, 0xaec2, 0xaeb4, 0xaeba, 0xaebd,\n  0xd1c8, 0xd1c2, 0xaeb7, 0xd1b3, 0xd1ca, 0xd1c1, 0xd1c3, 0xd1c7,\n  0xd567, 0xb1b7, 0xb1cb, 0xb1ca, 0xb1bf, 0xd579, 0xd575, 0xd572,\n  0xd5a6, 0xb1ba, 0xb1b2, 0xd577, 0xb4a8, 0xb1b6, 0xd5a1, 0xb1cc,\n  0xb1c9, 0xd57b, 0xd56a, 0xb1c8, 0xd5a3, 0xd569, 0xb1bd, 0xb1c1,\n  0xd5a2, 0xd573, 0xb1c2, 0xb1bc, 0xd568, 0xb478, 0xd5a5, 0xd571,\n  0xb1c7, 0xd574, 0xd5a4, 0xb1c6, 0xd952, 0xb1b3, 0xd56f, 0xb1b8,\n  0xb1c3, 0xb1be, 0xd578, 0xd56e, 0xd56c, 0xd57e, 0xb1b0, 0xb1c4,\n  0xb1b4, 0xb477, 0xd57c, 0xb1b5, 0xb1b1, 0xb1c0, 0xb1bb, 0xb1b9,\n  0xd570, 0xb1c5, 0xd56d, 0xd57a, 0xd576, 0xd954, 0xd953, 0xd56b,\n  0xd964, 0xb47a, 0xd96a, 0xd959, 0xd967, 0xdd77, 0xb47d, 0xd96b,\n  0xd96e, 0xb47c, 0xd95c, 0xd96d, 0xd96c, 0xb47e, 0xd955, 0xb479,\n  0xb4a3, 0xb4a1, 0xd969, 0xd95f, 0xb4a5, 0xd970, 0xd968, 0xd971,\n  0xb4ad, 0xb4ab, 0xd966, 0xd965, 0xd963, 0xd95d, 0xb4a4, 0xb4a2,\n  0xd1b9, 0xd956, 0xddb7, 0xd957, 0xb47b, 0xb4aa, 0xdd79, 0xb4a6,\n  0xb4a7, 0xd958, 0xd96f, 0xdd78, 0xd960, 0xd95b, 0xb4a9, 0xd961,\n  0xd95e, 0xb4ae, 0xb770, 0xdd7c, 0xddb1, 0xddb6, 0xddaa, 0xb76c,\n  0xddbb, 0xb769, 0xdd7a, 0xdd7b, 0xb762, 0xb76b, 0xdda4, 0xb76e,\n  0xb76f, 0xdda5, 0xddb2, 0xddb8, 0xb76a, 0xb764, 0xdda3, 0xdd7d,\n  0xddba, 0xdda8, 0xdda9, 0xdd7e, 0xddb4, 0xddab, 0xddb5, 0xddad,\n  0xb765, 0xe1d9, 0xb768, 0xb766, 0xddb9, 0xddb0, 0xddac, 0xdda1,\n  0xba53, 0xddaf, 0xb76d, 0xdda7, 0xdda6, 0xb767, 0xb763, 0xe1ee,\n  0xddb3, 0xddae, 0xdda2, 0xe1e9, 0xe1da, 0xe1e5, 0xe1ec, 0xba51,\n  0xb4ac, 0xe1ea, 0xba4c, 0xba4b, 0xe1f1, 0xe1db, 0xe1e8, 0xe1dc,\n  0xe1e7, 0xba4f, 0xe1eb, 0xd962, 0xe1f2, 0xe1e3, 0xba52, 0xe5ba,\n  0xbcaf, 0xe1f0, 0xe1ef, 0xba54, 0xe5ad, 0xbcb0, 0xe5ae, 0xe1df,\n  0xe1e0, 0xe1dd, 0xe1e2, 0xe1de, 0xe1f3, 0xba4e, 0xbcb1, 0xba50,\n  0xba55, 0xe1e1, 0xe1ed, 0xe1e6, 0xe5b1, 0xba4a, 0xbcb4, 0xe9aa,\n  0xe5b6, 0xe5b5, 0xe5b7, 0xe5b4, 0xbcb5, 0xbcbb, 0xbcb8, 0xbcb9,\n  0xe5af, 0xe5b2, 0xe5bc, 0xbcc1, 0xbcbf, 0xe5b3, 0xd95a, 0xbcb2,\n  0xe5b9, 0xe5b0, 0xbcc2, 0xe5b8, 0xba4d, 0xbcb7, 0xe1e4, 0xbcba,\n  0xbcbe, 0xbcc0, 0xbcbd, 0xbcbc, 0xbcb6, 0xe5bb, 0xbcb3, 0xbcc3,\n  0xbed8, 0xbed9, 0xe9a9, 0xbee2, 0xbedf, 0xbed6, 0xbedd, 0xe9ab,\n  0xbedb, 0xbed5, 0xbedc, 0xe9a8, 0xc0bb, 0xbed7, 0xbede, 0xc0ba,\n  0xe9a7, 0xe9a6, 0xbee0, 0xbee1, 0xe9a5, 0xe9a4, 0xc0bc, 0xe9ae,\n  0xbeda, 0xe9ac, 0xc0bd, 0xc0c2, 0xecea, 0xecec, 0xc0bf, 0xeced,\n  0xece9, 0xeceb, 0xc0c0, 0xc0c3, 0xece8, 0xc0be, 0xc0c1, 0xc259,\n  0xe9ad, 0xc258, 0xc25e, 0xefd4, 0xc25c, 0xc25d, 0xefd7, 0xefd3,\n  0xc25a, 0xefd1, 0xc36b, 0xefd5, 0xefd6, 0xefd2, 0xc25b, 0xf242,\n  0xf245, 0xf246, 0xf244, 0xf247, 0xc36c, 0xf243, 0xf44e, 0xc464,\n  0xf44d, 0xf44c, 0xf44b, 0xc463, 0xc465, 0xf5cd, 0xc4e2, 0xc4e1,\n  0xf6e1, 0xf6e0, 0xf6e3, 0xc5cb, 0xc575, 0xf7dd, 0xf6e2, 0xf7dc,\n  0xc5cd, 0xc5cc, 0xc5f3, 0xf8a9, 0xf8ef, 0xa4e4, 0xd972, 0xe9af,\n  0xa6ac, 0xcaf7, 0xa7f1, 0xa7ef, 0xa7f0, 0xccc1, 0xa9f1, 0xac46,\n  0xcee7, 0xcee8, 0xac47, 0xd1ce, 0xaec4, 0xaec5, 0xd1cd, 0xb1d3,\n  0xb1cf, 0xd5a7, 0xb1d6, 0xb1d5, 0xb1ce, 0xb1d1, 0xb1d4, 0xb1d0,\n  0xd976, 0xb1cd, 0xb4af, 0xb4b1, 0xb4b2, 0xd975, 0xd978, 0xb4b0,\n  0xd973, 0xd977, 0xd974, 0xb771, 0xddbc, 0xba56, 0xe1f4, 0xbee3,\n  0xbcc4, 0xe5bd, 0xbcc5, 0xbcc6, 0xe5bf, 0xe5be, 0xe5c0, 0xe9b1,\n  0xe9b0, 0xecef, 0xecee, 0xc0c4, 0xc0c5, 0xf248, 0xa4e5, 0xd979,\n  0xb4b4, 0xb4b3, 0xddbd, 0xefd8, 0xc4e3, 0xf7de, 0xa4e6, 0xaec6,\n  0xb1d8, 0xb1d7, 0xd97a, 0xd97b, 0xb772, 0xe1f5, 0xba57, 0xe9b2,\n  0xa4e7, 0xa5b8, 0xa9f2, 0xccc2, 0xcee9, 0xac48, 0xb1d9, 0xd97c,\n  0xb4b5, 0xb773, 0xe5c1, 0xe5c2, 0xecf0, 0xc25f, 0xf8f0, 0xa4e8,\n  0xccc3, 0xa9f3, 0xac49, 0xceea, 0xaec7, 0xd1d2, 0xd1d0, 0xd1d1,\n  0xaec8, 0xd1cf, 0xb1db, 0xb1dc, 0xd5a8, 0xb1dd, 0xb1da, 0xd97d,\n  0xd97e, 0xddbe, 0xba59, 0xba58, 0xecf1, 0xefd9, 0xf24a, 0xf249,\n  0xf44f, 0xc95e, 0xac4a, 0xa4e9, 0xa5b9, 0xa6ae, 0xa6ad, 0xa6af,\n  0xa6b0, 0xc9ee, 0xc9ed, 0xcaf8, 0xa7f2, 0xcafb, 0xcafa, 0xcaf9,\n  0xcafc, 0xa9f4, 0xccc9, 0xccc5, 0xccce, 0xa9fb, 0xa9f9, 0xccca,\n  0xccc6, 0xcccd, 0xa9f8, 0xaa40, 0xccc8, 0xccc4, 0xa9fe, 0xcccb,\n  0xa9f7, 0xcccc, 0xa9fa, 0xa9fc, 0xccd0, 0xcccf, 0xccc7, 0xa9f6,\n  0xa9f5, 0xa9fd, 0xceef, 0xcef5, 0xac50, 0xac4d, 0xceec, 0xcef1,\n  0xac53, 0xac4b, 0xcef0, 0xac4e, 0xac51, 0xcef3, 0xac4c, 0xcef8,\n  0xac4f, 0xac52, 0xceed, 0xcef2, 0xcef6, 0xceee, 0xceeb, 0xcef7,\n  0xcef4, 0xaed0, 0xaec9, 0xaecc, 0xaecf, 0xd1d5, 0xaeca, 0xd1d3,\n  0xaece, 0xaecb, 0xd1d6, 0xaecd, 0xd5ac, 0xb1df, 0xd5ab, 0xd5ad,\n  0xb1de, 0xb1e3, 0xd1d4, 0xd5aa, 0xd5ae, 0xb1e0, 0xd5a9, 0xb1e2,\n  0xb1e1, 0xd9a7, 0xd9a2, 0xb4b6, 0xb4ba, 0xb4b7, 0xd9a5, 0xd9a8,\n  0xb4b8, 0xb4b9, 0xb4be, 0xddc7, 0xd9a6, 0xb4bc, 0xd9a3, 0xd9a1,\n  0xb4bd, 0xd9a4, 0xb779, 0xddbf, 0xb776, 0xb777, 0xb775, 0xddc4,\n  0xddc3, 0xddc0, 0xb77b, 0xddc2, 0xb4bb, 0xddc6, 0xddc1, 0xb778,\n  0xb774, 0xb77a, 0xddc5, 0xba5c, 0xe1f8, 0xe1f7, 0xe1f6, 0xba5a,\n  0xba5b, 0xe5c5, 0xe5c8, 0xbcc8, 0xbcc7, 0xe5c9, 0xe5c4, 0xbcca,\n  0xe5c6, 0xbcc9, 0xe5c3, 0xe5c7, 0xbee9, 0xbee6, 0xe9bb, 0xe9ba,\n  0xe9b9, 0xe9b4, 0xe9b5, 0xbee7, 0xbee4, 0xbee8, 0xe9b3, 0xbee5,\n  0xe9b6, 0xe9b7, 0xe9bc, 0xe9b8, 0xecf2, 0xc0c7, 0xefdc, 0xc0c6,\n  0xefda, 0xefdb, 0xc260, 0xc36e, 0xf24b, 0xc36d, 0xf451, 0xf452,\n  0xc466, 0xf450, 0xc4e4, 0xf7df, 0xc5ce, 0xf8aa, 0xf8ab, 0xa4ea,\n  0xa6b1, 0xa6b2, 0xa7f3, 0xccd1, 0xac54, 0xaed1, 0xb1e4, 0xb0d2,\n  0xb4bf, 0xb4c0, 0xb3cc, 0xd9a9, 0xb77c, 0xe1fa, 0xe1f9, 0xa4eb,\n  0xa6b3, 0xccd2, 0xaa42, 0xaa41, 0xcef9, 0xcefa, 0xd1d7, 0xd1d8,\n  0xaed2, 0xaed3, 0xaed4, 0xd5af, 0xb1e6, 0xb4c2, 0xb4c1, 0xddc8,\n  0xdf7a, 0xe1fb, 0xe9bd, 0xc261, 0xc467, 0xa4ec, 0xa5bc, 0xa5bd,\n  0xa5bb, 0xa5be, 0xa5ba, 0xa6b6, 0xc9f6, 0xa6b5, 0xa6b7, 0xc9f1,\n  0xc9f0, 0xc9f3, 0xc9f2, 0xc9f5, 0xa6b4, 0xc9ef, 0xc9f4, 0xcafd,\n  0xa7fd, 0xcafe, 0xcb43, 0xa7fc, 0xcb47, 0xcb42, 0xcb45, 0xa7f5,\n  0xa7f6, 0xa7f7, 0xa7f8, 0xa840, 0xcb41, 0xa7fa, 0xa841, 0xcb40,\n  0xcb46, 0xa7f9, 0xcb44, 0xa7fb, 0xa7f4, 0xa7fe, 0xaa57, 0xccd4,\n  0xaa43, 0xaa4d, 0xaa4e, 0xaa46, 0xaa58, 0xaa48, 0xccdc, 0xaa53,\n  0xccd7, 0xaa49, 0xcce6, 0xcce7, 0xccdf, 0xccd8, 0xaa56, 0xcce4,\n  0xaa51, 0xaa4f, 0xcce5, 0xcce3, 0xccdb, 0xccd3, 0xccda, 0xaa4a,\n  0xaa50, 0xaa44, 0xccde, 0xccdd, 0xccd5, 0xaa52, 0xcce1, 0xccd6,\n  0xaa55, 0xcce8, 0xaa45, 0xaa4c, 0xccd9, 0xcce2, 0xaa54, 0xaa47,\n  0xaa4b, 0xcce0, 0xcf5b, 0xac5c, 0xac69, 0xcf56, 0xcf4c, 0xac62,\n  0xcf4a, 0xac5b, 0xcf45, 0xac65, 0xcf52, 0xcefe, 0xcf41, 0xcf44,\n  0xcefb, 0xcf51, 0xcf61, 0xac60, 0xcf46, 0xcf58, 0xcefd, 0xcf5f,\n  0xcf60, 0xcf63, 0xcf5a, 0xcf4b, 0xcf53, 0xac66, 0xac59, 0xac61,\n  0xac6d, 0xac56, 0xac58, 0xcf43, 0xac6a, 0xac63, 0xcf5d, 0xcf40,\n  0xac6c, 0xac67, 0xcf49, 0xac6b, 0xcf50, 0xcf48, 0xac64, 0xcf5c,\n  0xcf54, 0xac5e, 0xcf62, 0xcf47, 0xac5a, 0xcf59, 0xcf4f, 0xac5f,\n  0xcf55, 0xac57, 0xcefc, 0xac68, 0xaee3, 0xac5d, 0xcf4e, 0xcf4d,\n  0xcf42, 0xcf5e, 0xcf57, 0xac55, 0xd1ec, 0xaeea, 0xd1ed, 0xd1e1,\n  0xaedf, 0xaeeb, 0xd1da, 0xd1e3, 0xd1eb, 0xd1d9, 0xd1f4, 0xaed5,\n  0xd1f3, 0xd1ee, 0xd1ef, 0xaedd, 0xaee8, 0xd1e5, 0xd1e6, 0xd1f0,\n  0xd1e7, 0xd1e2, 0xd1dc, 0xd1dd, 0xd1ea, 0xd1e4, 0xaed6, 0xaeda,\n  0xd1f2, 0xd1de, 0xaee6, 0xaee2, 0xaee5, 0xaeec, 0xaedb, 0xaee7,\n  0xd1e9, 0xaee9, 0xaed8, 0xaed7, 0xd1db, 0xd1df, 0xaee0, 0xd1f1,\n  0xd1e8, 0xd1e0, 0xaee4, 0xaee1, 0xaed9, 0xaedc, 0xd5c4, 0xd5b4,\n  0xd5b5, 0xd5b9, 0xd5c8, 0xd5c5, 0xd5be, 0xd5bd, 0xb1ed, 0xd5c1,\n  0xd5d0, 0xd5b0, 0xd5d1, 0xd5c3, 0xd5d5, 0xd5c9, 0xb1ec, 0xd5c7,\n  0xb1e7, 0xb1fc, 0xb1f2, 0xb1f6, 0xb1f5, 0xd5b1, 0xd5ce, 0xd5d4,\n  0xd5cc, 0xd5d3, 0xd5c0, 0xd5b2, 0xd5d2, 0xd5c2, 0xb1ea, 0xb1f7,\n  0xd5cb, 0xb1f0, 0xd5ca, 0xd5b3, 0xb1f8, 0xb1fa, 0xd5cd, 0xb1fb,\n  0xb1e9, 0xd5ba, 0xd5cf, 0xb1ef, 0xb1f9, 0xd5bc, 0xd5c6, 0xd5b7,\n  0xd5bb, 0xb1f4, 0xd5b6, 0xb1e8, 0xb1f1, 0xb1ee, 0xd5bf, 0xaede,\n  0xd9c0, 0xb1eb, 0xb1f3, 0xd9c3, 0xd9d9, 0xd9ce, 0xb4d6, 0xb4d1,\n  0xd9bd, 0xb4d2, 0xd9cd, 0xd9c6, 0xd9d3, 0xb4ce, 0xd9ab, 0xd9d5,\n  0xb4c4, 0xd9b3, 0xb4c7, 0xb4c6, 0xb4d7, 0xd9ad, 0xd9cf, 0xd9d0,\n  0xb4c9, 0xb4c5, 0xd9bb, 0xb4d0, 0xd9b6, 0xd9d1, 0xb4cc, 0xd9c9,\n  0xd9d6, 0xd9b0, 0xd9b5, 0xd9af, 0xb4cb, 0xd9c2, 0xddde, 0xd9b1,\n  0xb4cf, 0xd9ba, 0xd9d2, 0xb4ca, 0xd9b7, 0xd9b4, 0xd9c5, 0xb4cd,\n  0xb4c3, 0xb4d9, 0xd9c8, 0xd9c7, 0xd9ac, 0xb4c8, 0xd9d4, 0xd9bc,\n  0xd9be, 0xd9cb, 0xd9ca, 0xd9aa, 0xb4d3, 0xb4d5, 0xd9b2, 0xd9b9,\n  0xd9c1, 0xb4d4, 0xd9b8, 0xd9c4, 0xd9d7, 0xd9cc, 0xd9d8, 0xd9ae,\n  0xddf2, 0xb7a6, 0xddf0, 0xdddb, 0xdde0, 0xddd9, 0xddec, 0xddcb,\n  0xddd2, 0xddea, 0xddf4, 0xdddc, 0xddcf, 0xdde2, 0xdde7, 0xddd3,\n  0xdde4, 0xddd0, 0xddd7, 0xddd8, 0xb7a8, 0xddeb, 0xdde9, 0xddcc,\n  0xddee, 0xddef, 0xddf1, 0xb7ac, 0xb7a4, 0xd5b8, 0xddd4, 0xdde6,\n  0xddd5, 0xb7a1, 0xb7b1, 0xdded, 0xb7af, 0xb7ab, 0xddca, 0xb7a3,\n  0xddcd, 0xb7b0, 0xdddd, 0xddc9, 0xb7a9, 0xdde1, 0xddd1, 0xb7aa,\n  0xddda, 0xb77e, 0xb4d8, 0xdde3, 0xd9bf, 0xddce, 0xdde8, 0xb7a5,\n  0xdde5, 0xb7a2, 0xdddf, 0xb7ad, 0xddd6, 0xddf3, 0xb7a7, 0xdec6,\n  0xb7ae, 0xe24a, 0xe248, 0xe25e, 0xe246, 0xe258, 0xb77d, 0xba5f,\n  0xe242, 0xe25d, 0xe247, 0xe255, 0xba64, 0xba5d, 0xe25b, 0xe240,\n  0xe25a, 0xba6f, 0xe251, 0xe261, 0xba6d, 0xe249, 0xba5e, 0xe24b,\n  0xe259, 0xba67, 0xe244, 0xba6b, 0xba61, 0xe24d, 0xe243, 0xe1fc,\n  0xe257, 0xba68, 0xe260, 0xe1fd, 0xba65, 0xe253, 0xba66, 0xe245,\n  0xe250, 0xe24c, 0xe24e, 0xba60, 0xe25f, 0xba6e, 0xe24f, 0xe262,\n  0xe1fe, 0xe254, 0xba63, 0xba6c, 0xba6a, 0xe241, 0xe256, 0xba69,\n  0xba62, 0xe252, 0xe25c, 0xe5d5, 0xe5d1, 0xe5cd, 0xe5e1, 0xe5de,\n  0xbccd, 0xe5e5, 0xe5d4, 0xbcd8, 0xe5db, 0xe5d0, 0xe5da, 0xbcd5,\n  0xe5ee, 0xe5eb, 0xe5dd, 0xe5ce, 0xe5e2, 0xe5e4, 0xbcd1, 0xe5d8,\n  0xe5d3, 0xe5ca, 0xbcce, 0xbcd6, 0xe5e7, 0xbcd7, 0xe5cb, 0xe5ed,\n  0xe5e0, 0xe5e6, 0xbcd4, 0xe5e3, 0xe5ea, 0xbcd9, 0xbcd3, 0xe5dc,\n  0xe5cf, 0xe5ef, 0xe5cc, 0xe5e8, 0xbcd0, 0xe5d6, 0xe5d7, 0xbccf,\n  0xbccc, 0xe5d2, 0xbcd2, 0xbccb, 0xe5e9, 0xe5ec, 0xe5d9, 0xe9ca,\n  0xe9c2, 0xe9be, 0xbef6, 0xbeeb, 0xbef0, 0xbeec, 0xe9cc, 0xe9d7,\n  0xbeea, 0xe9c4, 0xe9cd, 0xe5df, 0xe9ce, 0xbef1, 0xe9dd, 0xbef5,\n  0xbef8, 0xe9c0, 0xbef4, 0xe9db, 0xe9dc, 0xe9d2, 0xe9d1, 0xe9c9,\n  0xe9d3, 0xe9da, 0xe9d9, 0xbeef, 0xbeed, 0xe9cb, 0xe9c8, 0xe9c5,\n  0xe9d8, 0xbef7, 0xe9d6, 0xbef3, 0xbef2, 0xe9d0, 0xe9bf, 0xe9c1,\n  0xe9c3, 0xe9d5, 0xe9cf, 0xbeee, 0xe9c6, 0xe9d4, 0xe9c7, 0xc0cf,\n  0xed45, 0xc0c8, 0xecf5, 0xed41, 0xc0ca, 0xed48, 0xecfc, 0xecf7,\n  0xed49, 0xecf3, 0xecfe, 0xc0d1, 0xed44, 0xed4a, 0xecfd, 0xc0c9,\n  0xed40, 0xecf4, 0xc0d0, 0xed47, 0xecf9, 0xc0cc, 0xecfb, 0xecf8,\n  0xc0d2, 0xecfa, 0xc0cb, 0xc0ce, 0xed43, 0xecf6, 0xed46, 0xed42,\n  0xc263, 0xefe7, 0xc268, 0xc269, 0xc262, 0xefe6, 0xefe3, 0xefe4,\n  0xc266, 0xefde, 0xefe2, 0xc265, 0xefdf, 0xc267, 0xc264, 0xefdd,\n  0xefe1, 0xefe5, 0xf251, 0xf24e, 0xf257, 0xf256, 0xf254, 0xf24f,\n  0xc372, 0xf250, 0xc371, 0xc0cd, 0xf253, 0xc370, 0xf258, 0xf252,\n  0xf24d, 0xefe0, 0xc36f, 0xf24c, 0xf456, 0xf455, 0xf255, 0xc468,\n  0xf459, 0xf45a, 0xf454, 0xf458, 0xf453, 0xf5d1, 0xf457, 0xc4e7,\n  0xc4e5, 0xf5cf, 0xf5d2, 0xf5ce, 0xf5d0, 0xc4e6, 0xf6e5, 0xf6e6,\n  0xc576, 0xf6e4, 0xf7e2, 0xc5cf, 0xf7e0, 0xf7e1, 0xf8ac, 0xc656,\n  0xf8f3, 0xf8f1, 0xf8f2, 0xf8f4, 0xf9bb, 0xa4ed, 0xa6b8, 0xaa59,\n  0xcce9, 0xcf64, 0xd1f5, 0xd1f7, 0xd1f6, 0xd1f8, 0xb1fd, 0xd5d7,\n  0xd1f9, 0xd5d6, 0xd5d8, 0xd5d9, 0xd9da, 0xb4db, 0xd9db, 0xd9dd,\n  0xb4dc, 0xb4da, 0xd9dc, 0xddfa, 0xddf8, 0xddf7, 0xddf6, 0xddf5,\n  0xb7b2, 0xddf9, 0xba70, 0xe263, 0xe265, 0xba71, 0xe264, 0xbcdb,\n  0xbcda, 0xe5f0, 0xe9df, 0xe9de, 0xe9e0, 0xbef9, 0xed4b, 0xc0d3,\n  0xefe8, 0xc26a, 0xf259, 0xc577, 0xa4ee, 0xa5bf, 0xa6b9, 0xa842,\n  0xaa5a, 0xaa5b, 0xac6e, 0xd1fa, 0xb7b3, 0xe6d1, 0xbefa, 0xc26b,\n  0xa4ef, 0xa6ba, 0xcceb, 0xaa5c, 0xccea, 0xcf65, 0xac6f, 0xcf66,\n  0xac70, 0xd1fc, 0xaeee, 0xaeed, 0xd5de, 0xd5dc, 0xd5dd, 0xd5db,\n  0xd5da, 0xd9de, 0xd9e1, 0xb4de, 0xd9df, 0xb4dd, 0xd9e0, 0xddfb,\n  0xe266, 0xe267, 0xe268, 0xe5f3, 0xe5f2, 0xbcdc, 0xe5f1, 0xe5f4,\n  0xe9e1, 0xe9e2, 0xe9e3, 0xed4c, 0xc0d4, 0xc26c, 0xf25a, 0xc4e8,\n  0xc95f, 0xac71, 0xcf67, 0xaeef, 0xb1fe, 0xb4df, 0xd9e2, 0xb7b5,\n  0xb7b4, 0xe269, 0xe26a, 0xbcdd, 0xbcde, 0xe9e5, 0xe9e4, 0xefe9,\n  0xf7e3, 0xa4f0, 0xc960, 0xa5c0, 0xa843, 0xcb48, 0xac72, 0xb7b6,\n  0xa4f1, 0xcf68, 0xac73, 0xcf69, 0xc0d5, 0xa4f2, 0xccec, 0xcf6a,\n  0xd242, 0xd241, 0xd1fe, 0xd1fd, 0xd243, 0xd240, 0xb240, 0xb241,\n  0xb4e0, 0xd9e3, 0xd9e4, 0xd9e5, 0xde41, 0xde42, 0xde40, 0xddfd,\n  0xddfe, 0xb7b7, 0xe26b, 0xe5f7, 0xe5f6, 0xe5f5, 0xe5f8, 0xe9e7,\n  0xe9e6, 0xbefb, 0xe9e8, 0xc0d6, 0xed4d, 0xefea, 0xf25b, 0xf6e7,\n  0xa4f3, 0xa5c2, 0xa5c1, 0xaa5d, 0xc961, 0xc97e, 0xa6bb, 0xc9f7,\n  0xcb49, 0xcb4a, 0xaa5e, 0xcced, 0xac74, 0xcf6b, 0xcf6c, 0xaef0,\n  0xaef4, 0xd244, 0xaef3, 0xaef1, 0xaef2, 0xd5df, 0xb242, 0xb4e3,\n  0xb4e1, 0xb4e2, 0xd9e6, 0xba72, 0xa4f4, 0xc9a1, 0xa5c3, 0xc9a4,\n  0xa5c6, 0xc9a3, 0xa5c5, 0xa5c4, 0xa844, 0xc9a2, 0xc9f8, 0xc9fc,\n  0xc9fe, 0xca40, 0xa6c5, 0xa6c6, 0xc9fb, 0xa6c1, 0xc9f9, 0xc9fd,\n  0xa6c2, 0xa6bd, 0xa6be, 0xa6c4, 0xc9fa, 0xa6bc, 0xa845, 0xa6bf,\n  0xa6c0, 0xa6c3, 0xcb5b, 0xcb59, 0xcb4c, 0xa851, 0xcb53, 0xa84c,\n  0xcb4d, 0xcb55, 0xcb52, 0xa84f, 0xcb51, 0xa856, 0xcb5a, 0xa858,\n  0xa85a, 0xcb4b, 0xa84d, 0xcb5c, 0xa854, 0xa857, 0xcd45, 0xa847,\n  0xa85e, 0xa855, 0xcb4e, 0xa84a, 0xa859, 0xcb56, 0xa848, 0xa849,\n  0xcd43, 0xcb4f, 0xa850, 0xa85b, 0xcb5d, 0xcb50, 0xa84e, 0xa853,\n  0xccee, 0xa85c, 0xcb57, 0xa852, 0xa85d, 0xa846, 0xcb54, 0xa84b,\n  0xcb58, 0xcd44, 0xaa6a, 0xaa7a, 0xccf5, 0xaa71, 0xcd4b, 0xaa62,\n  0xaa65, 0xcd42, 0xccf3, 0xccf7, 0xaa6d, 0xaa6f, 0xccfa, 0xaa76,\n  0xaa68, 0xaa66, 0xaa67, 0xaa75, 0xcd47, 0xaa70, 0xccf9, 0xccfb,\n  0xaa6e, 0xaa73, 0xccfc, 0xcd4a, 0xac75, 0xaa79, 0xaa63, 0xcd49,\n  0xcd4d, 0xccf8, 0xcd4f, 0xcd40, 0xaa6c, 0xccf4, 0xaa6b, 0xaa7d,\n  0xaa72, 0xccf2, 0xcf75, 0xaa78, 0xaa7c, 0xcd41, 0xcd46, 0xaa7e,\n  0xaa77, 0xaa69, 0xaa5f, 0xaa64, 0xccf6, 0xaa60, 0xcd4e, 0xccf0,\n  0xccef, 0xccfd, 0xccf1, 0xaa7b, 0xaef5, 0xaa74, 0xccfe, 0xaa61,\n  0xaca6, 0xcd4c, 0xcf7c, 0xcfa1, 0xcfa4, 0xcf77, 0xcfa7, 0xcfaa,\n  0xcfac, 0xcf74, 0xac76, 0xac7b, 0xd249, 0xacad, 0xcfa5, 0xcfad,\n  0xcf7b, 0xcf73, 0xd264, 0xac7e, 0xcfa2, 0xcf78, 0xcf7a, 0xaca5,\n  0xcf7d, 0xac7d, 0xcf70, 0xcfa8, 0xcfab, 0xac7a, 0xaca8, 0xcf6d,\n  0xacaa, 0xac78, 0xacae, 0xcfa9, 0xcf6f, 0xacab, 0xd25e, 0xcd48,\n  0xac7c, 0xac77, 0xcf76, 0xcf6e, 0xacac, 0xaca4, 0xcfa3, 0xaca9,\n  0xaca7, 0xcf79, 0xaca1, 0xcf71, 0xaca2, 0xaca3, 0xcf72, 0xcfa6,\n  0xac79, 0xcf7e, 0xd24c, 0xaefd, 0xaf43, 0xd255, 0xd25b, 0xd257,\n  0xd24a, 0xd24d, 0xd246, 0xd247, 0xaf4a, 0xaefa, 0xd256, 0xd25f,\n  0xaf45, 0xaef6, 0xaf40, 0xd24e, 0xaf42, 0xd24f, 0xd259, 0xaf44,\n  0xd268, 0xd248, 0xaefc, 0xaefb, 0xaf48, 0xd245, 0xd266, 0xd25a,\n  0xd267, 0xd261, 0xd253, 0xd262, 0xd25c, 0xd265, 0xd263, 0xaf49,\n  0xd254, 0xaef9, 0xaef8, 0xaf41, 0xaf47, 0xd260, 0xaf46, 0xd251,\n  0xb243, 0xd269, 0xd250, 0xd24b, 0xaefe, 0xaf4b, 0xaef7, 0xd258,\n  0xd25d, 0xb265, 0xd5e1, 0xd5e5, 0xb252, 0xb250, 0xb247, 0xd5e3,\n  0xd5e2, 0xb25b, 0xd5e8, 0xb255, 0xd5fa, 0xd647, 0xb244, 0xd5f7,\n  0xd5f0, 0xb267, 0xd5e0, 0xd5fc, 0xb264, 0xb258, 0xb263, 0xb24e,\n  0xd5ec, 0xd5fe, 0xd5f6, 0xb24f, 0xb249, 0xd645, 0xd5fd, 0xd640,\n  0xb251, 0xb259, 0xd642, 0xd5ea, 0xd5fb, 0xd5ef, 0xd644, 0xb25e,\n  0xb246, 0xb25c, 0xd5f4, 0xd5f2, 0xd5f3, 0xb253, 0xd5ee, 0xd5ed,\n  0xb248, 0xd5e7, 0xd646, 0xb24a, 0xd5f1, 0xb268, 0xb262, 0xd5e6,\n  0xb25f, 0xb25d, 0xb266, 0xd5f8, 0xb261, 0xd252, 0xd5f9, 0xb260,\n  0xd641, 0xb245, 0xd5f5, 0xb257, 0xd5e9, 0xb256, 0xb254, 0xb24c,\n  0xb24b, 0xd9e7, 0xd643, 0xd5eb, 0xd9fc, 0xb24d, 0xb541, 0xb25a,\n  0xb4ee, 0xd9f6, 0xb4fc, 0xd9ea, 0xb4eb, 0xb4e7, 0xda49, 0xb4ed,\n  0xb4f1, 0xb4ec, 0xb4f5, 0xda4d, 0xda44, 0xd9f1, 0xb4fa, 0xb4f4,\n  0xd9fd, 0xb4e4, 0xda4a, 0xda43, 0xb4e8, 0xd9f7, 0xb4f7, 0xda55,\n  0xda56, 0xb4e5, 0xda48, 0xb4f9, 0xd9fb, 0xd9ed, 0xd9ee, 0xb4fd,\n  0xd9f2, 0xd9f9, 0xd9f3, 0xb4fb, 0xb544, 0xd9ef, 0xd9e8, 0xd9e9,\n  0xd9eb, 0xb4ea, 0xd9f8, 0xb4f8, 0xb542, 0xd9fa, 0xda53, 0xda4b,\n  0xb4e6, 0xda51, 0xb4f2, 0xb4f0, 0xda57, 0xb4ef, 0xda41, 0xd9f4,\n  0xd9fe, 0xb547, 0xda45, 0xda42, 0xd9f0, 0xb543, 0xda4f, 0xda4c,\n  0xda54, 0xb4e9, 0xda40, 0xb546, 0xda47, 0xb4f3, 0xb4f6, 0xda46,\n  0xb545, 0xd9f5, 0xd5e4, 0xda50, 0xda4e, 0xda52, 0xd9ec, 0xb540,\n  0xde61, 0xde60, 0xde46, 0xb7bd, 0xde5f, 0xde49, 0xde4a, 0xb7c7,\n  0xde68, 0xb7c2, 0xde5e, 0xde43, 0xb7c8, 0xb7be, 0xde52, 0xde48,\n  0xde4b, 0xde63, 0xb7b8, 0xde6a, 0xde62, 0xb7c1, 0xde57, 0xb7cc,\n  0xb7cb, 0xb7c5, 0xde69, 0xb7b9, 0xde55, 0xde4c, 0xde59, 0xde65,\n  0xb7cd, 0xb7bb, 0xde54, 0xde4d, 0xb7c4, 0xb7c3, 0xde50, 0xde5a,\n  0xde64, 0xde47, 0xde51, 0xb7bc, 0xde5b, 0xb7c9, 0xb7c0, 0xde4e,\n  0xb7bf, 0xde45, 0xde53, 0xde67, 0xb4fe, 0xbab0, 0xde56, 0xe26c,\n  0xde58, 0xde66, 0xb7c6, 0xde4f, 0xb7ba, 0xb7ca, 0xbcf0, 0xde44,\n  0xde5d, 0xde5c, 0xe2aa, 0xbaad, 0xe27d, 0xe2a4, 0xbaa2, 0xe26e,\n  0xbaaf, 0xba77, 0xe26d, 0xe2b0, 0xbab1, 0xe271, 0xe2a3, 0xe273,\n  0xe2b3, 0xe2af, 0xba75, 0xbaa1, 0xe653, 0xbaae, 0xba7d, 0xe26f,\n  0xe2ae, 0xbaa3, 0xe2ab, 0xe2b8, 0xe275, 0xe27e, 0xe2b6, 0xe2ac,\n  0xba7c, 0xe27c, 0xba76, 0xba74, 0xbaa8, 0xe27a, 0xe277, 0xe278,\n  0xe2b2, 0xe2b7, 0xe2b5, 0xba7a, 0xe2b9, 0xba7e, 0xbaa7, 0xe270,\n  0xe5fa, 0xe279, 0xba78, 0xbaac, 0xbaa9, 0xba7b, 0xe2a5, 0xe274,\n  0xbaaa, 0xe2a7, 0xbaa4, 0xbaa6, 0xba73, 0xe2a9, 0xe2a1, 0xe272,\n  0xbaa5, 0xe2b1, 0xe2b4, 0xe27b, 0xe2a8, 0xba79, 0xbcdf, 0xe2a6,\n  0xe5f9, 0xe2ad, 0xe276, 0xe644, 0xe64e, 0xbce2, 0xe64d, 0xe659,\n  0xbce4, 0xe64b, 0xe64f, 0xbcef, 0xe646, 0xbce7, 0xe652, 0xe9f0,\n  0xbcf3, 0xbcf2, 0xe654, 0xe643, 0xe65e, 0xbced, 0xbce3, 0xe657,\n  0xe65b, 0xe660, 0xe655, 0xe649, 0xbce6, 0xbce9, 0xbcf1, 0xbcec,\n  0xe64c, 0xe2a2, 0xe648, 0xe65f, 0xbce8, 0xbceb, 0xe661, 0xbce0,\n  0xe656, 0xe5fb, 0xe65c, 0xc0df, 0xe64a, 0xbce1, 0xe645, 0xbce5,\n  0xe5fc, 0xbaab, 0xe641, 0xe65a, 0xe642, 0xe640, 0xbcea, 0xe658,\n  0xe5fe, 0xe651, 0xe650, 0xe65d, 0xe647, 0xbcee, 0xe9f3, 0xbf49,\n  0xbefe, 0xea40, 0xe9eb, 0xbf41, 0xe9f7, 0xbf48, 0xbf43, 0xe9f5,\n  0xed4f, 0xe9fb, 0xea42, 0xe9fa, 0xe9e9, 0xe9f8, 0xea44, 0xea46,\n  0xbefd, 0xea45, 0xbf44, 0xbf4a, 0xbf47, 0xe9fe, 0xbf46, 0xe9f9,\n  0xe9ed, 0xe9f2, 0xe9fd, 0xbf45, 0xbf42, 0xbefc, 0xbf40, 0xe9f1,\n  0xe5fd, 0xe9ec, 0xe9ef, 0xea41, 0xe9f4, 0xe9ea, 0xed4e, 0xea43,\n  0xe9ee, 0xe9fc, 0xed51, 0xc0e3, 0xc0d7, 0xc0db, 0xed53, 0xed59,\n  0xed57, 0xc0d9, 0xc0da, 0xc0e1, 0xed5a, 0xed52, 0xc0dc, 0xed56,\n  0xed55, 0xed5b, 0xc0e2, 0xc0dd, 0xc0e0, 0xed54, 0xc0e4, 0xc0de,\n  0xc0e5, 0xc0d8, 0xed58, 0xed50, 0xeff7, 0xc271, 0xeff4, 0xeff6,\n  0xc26f, 0xeff2, 0xeff3, 0xefee, 0xe9f6, 0xefef, 0xc270, 0xefeb,\n  0xc26d, 0xeff8, 0xc26e, 0xefec, 0xefed, 0xeff1, 0xc273, 0xc272,\n  0xeff0, 0xc378, 0xf25f, 0xf265, 0xc379, 0xf25c, 0xc376, 0xc373,\n  0xf267, 0xc377, 0xc374, 0xf25e, 0xf261, 0xf262, 0xf263, 0xf266,\n  0xeff5, 0xf25d, 0xc375, 0xf264, 0xf268, 0xf260, 0xf45d, 0xc46a,\n  0xf460, 0xc46b, 0xf468, 0xf45f, 0xf45c, 0xf45e, 0xf462, 0xf465,\n  0xf464, 0xf467, 0xf45b, 0xc469, 0xf463, 0xf466, 0xf469, 0xf461,\n  0xf5d3, 0xf5d4, 0xf5d8, 0xf5d9, 0xf5d6, 0xf5d7, 0xf5d5, 0xc4e9,\n  0xc578, 0xf6eb, 0xf6e8, 0xf6e9, 0xf6ea, 0xc579, 0xf7e5, 0xf7e4,\n  0xf8af, 0xc5f4, 0xf8ad, 0xf8b0, 0xf8ae, 0xf8f5, 0xc657, 0xc665,\n  0xf9a3, 0xf96c, 0xf9a2, 0xf9d0, 0xf9d1, 0xa4f5, 0xa6c7, 0xca41,\n  0xcb5e, 0xa85f, 0xa862, 0xcb5f, 0xa860, 0xa861, 0xcd58, 0xcd5a,\n  0xcd55, 0xcd52, 0xcd54, 0xaaa4, 0xaaa2, 0xcd56, 0xaaa3, 0xcd53,\n  0xcd50, 0xaaa1, 0xcd57, 0xcd51, 0xaaa5, 0xcd59, 0xcfaf, 0xcfb3,\n  0xacb7, 0xcfb6, 0xacaf, 0xacb2, 0xacb4, 0xacb6, 0xacb3, 0xcfb2,\n  0xcfb1, 0xacb1, 0xcfb4, 0xcfb5, 0xcfae, 0xacb5, 0xacb0, 0xcfb0,\n  0xd277, 0xd278, 0xd279, 0xaf50, 0xaf4c, 0xd26e, 0xd276, 0xd27b,\n  0xaf51, 0xd26c, 0xd272, 0xd26b, 0xd275, 0xd271, 0xaf4d, 0xaf4f,\n  0xd27a, 0xd26a, 0xd26d, 0xd273, 0xd274, 0xd27c, 0xd270, 0xaf4e,\n  0xb26d, 0xd64e, 0xd650, 0xd64c, 0xd658, 0xd64a, 0xd657, 0xb269,\n  0xd648, 0xda5b, 0xd652, 0xb26c, 0xd653, 0xd656, 0xd65a, 0xd64f,\n  0xd654, 0xb26a, 0xb26b, 0xd659, 0xd64d, 0xd649, 0xd65b, 0xd651,\n  0xd655, 0xd64b, 0xb548, 0xb549, 0xda65, 0xb54f, 0xda59, 0xda62,\n  0xda58, 0xb54c, 0xda60, 0xda5e, 0xda5f, 0xb54a, 0xda63, 0xda5c,\n  0xda5a, 0xb54b, 0xda5d, 0xda61, 0xb54d, 0xda64, 0xde70, 0xde77,\n  0xde79, 0xdea1, 0xb7da, 0xde6b, 0xb7d2, 0xde7a, 0xb7d7, 0xdea2,\n  0xb7ce, 0xde7d, 0xde6d, 0xde7e, 0xde6c, 0xb7dc, 0xde78, 0xb7cf,\n  0xdea3, 0xb7d4, 0xde71, 0xb7d9, 0xde7c, 0xde6f, 0xde76, 0xde72,\n  0xde6e, 0xb7d1, 0xb7d8, 0xb7d6, 0xb7d3, 0xb7db, 0xb7d0, 0xde75,\n  0xb7d5, 0xb54e, 0xde7b, 0xde73, 0xde74, 0xe2c1, 0xbab4, 0xe2bd,\n  0xe2c3, 0xe2bf, 0xbab6, 0xe2be, 0xe2c2, 0xe2ba, 0xe2bc, 0xbab5,\n  0xe2c0, 0xe2bb, 0xbab7, 0xbab2, 0xe2c4, 0xbab3, 0xe667, 0xe664,\n  0xe670, 0xe66a, 0xe66c, 0xbcf4, 0xe666, 0xe66e, 0xe66d, 0xe66b,\n  0xe671, 0xbcf7, 0xe668, 0xe66f, 0xbcf5, 0xe663, 0xe665, 0xbcf6,\n  0xe662, 0xe672, 0xe669, 0xea4a, 0xbf51, 0xea55, 0xea53, 0xbf4b,\n  0xea49, 0xea4c, 0xea4d, 0xea48, 0xbf55, 0xbf56, 0xea47, 0xea56,\n  0xea51, 0xbf4f, 0xbf4c, 0xea50, 0xea4e, 0xbf52, 0xea52, 0xbf4d,\n  0xbf4e, 0xea4f, 0xbf50, 0xea4b, 0xea54, 0xbf53, 0xea57, 0xea58,\n  0xbf54, 0xc0e7, 0xc0ee, 0xed5c, 0xed62, 0xed60, 0xc0ea, 0xc0e9,\n  0xc0e6, 0xed5e, 0xc0ec, 0xc0eb, 0xc0e8, 0xed61, 0xed5d, 0xed5f,\n  0xc0ed, 0xc277, 0xeffb, 0xc274, 0xc275, 0xeffd, 0xc276, 0xeffa,\n  0xeff9, 0xf26c, 0xeffc, 0xf26d, 0xc37a, 0xf26b, 0xf26a, 0xf269,\n  0xc37b, 0xc46c, 0xf46a, 0xf46b, 0xf5dc, 0xf5db, 0xc4ea, 0xf5da,\n  0xf6ec, 0xf6ed, 0xf7e6, 0xf8b1, 0xf8f6, 0xf9bc, 0xc679, 0xf9c6,\n  0xa4f6, 0xaaa6, 0xaaa7, 0xacb8, 0xc0ef, 0xa4f7, 0xaaa8, 0xaf52,\n  0xb7dd, 0xa4f8, 0xb26e, 0xbab8, 0xc962, 0xcfb7, 0xd27d, 0xe2c5,\n  0xc0f0, 0xa4f9, 0xaaa9, 0xcfb8, 0xcfb9, 0xda66, 0xb550, 0xdea4,\n  0xb7de, 0xe2c6, 0xbcf8, 0xc37c, 0xa4fa, 0xda67, 0xa4fb, 0xa6c9,\n  0xca42, 0xa6c8, 0xa865, 0xa864, 0xa863, 0xcb60, 0xaaaa, 0xaaab,\n  0xcd5b, 0xcfba, 0xcfbd, 0xacba, 0xcfbb, 0xacb9, 0xcfbc, 0xacbb,\n  0xd2a2, 0xd2a1, 0xd27e, 0xaf53, 0xd65d, 0xd65e, 0xb26f, 0xd65c,\n  0xd65f, 0xb552, 0xb270, 0xb551, 0xda6b, 0xda6a, 0xda68, 0xda69,\n  0xda6c, 0xdea6, 0xdea5, 0xdea9, 0xdea8, 0xdea7, 0xbab9, 0xe2c9,\n  0xe2c8, 0xbaba, 0xe2c7, 0xe673, 0xe674, 0xbcf9, 0xea59, 0xea5a,\n  0xf272, 0xc37d, 0xf271, 0xf270, 0xf26e, 0xf26f, 0xc4eb, 0xf46c,\n  0xf6ee, 0xf8f7, 0xa4fc, 0xc9a5, 0xa5c7, 0xc9a6, 0xca43, 0xca44,\n  0xcb66, 0xcb62, 0xcb61, 0xaaac, 0xcb65, 0xa867, 0xcb63, 0xa866,\n  0xcb67, 0xcb64, 0xcd5f, 0xcfbe, 0xcd5d, 0xcd64, 0xaaad, 0xaab0,\n  0xcd65, 0xcd61, 0xcd62, 0xcd5c, 0xaaaf, 0xcd5e, 0xaaae, 0xcd63,\n  0xcd60, 0xcfc2, 0xacbd, 0xacbe, 0xcfc5, 0xcfbf, 0xcfc4, 0xcfc0,\n  0xacbc, 0xcfc3, 0xcfc1, 0xd2a8, 0xd2a5, 0xd2a7, 0xaf58, 0xaf57,\n  0xaf55, 0xd2a4, 0xd2a9, 0xaf54, 0xaf56, 0xd2a6, 0xd667, 0xd2a3,\n  0xd2aa, 0xd662, 0xd666, 0xd665, 0xda6e, 0xda79, 0xd668, 0xd663,\n  0xda6d, 0xb274, 0xb273, 0xd661, 0xd664, 0xb275, 0xb272, 0xb271,\n  0xd660, 0xd669, 0xda70, 0xda77, 0xb554, 0xda76, 0xda73, 0xb556,\n  0xda75, 0xda6f, 0xda71, 0xda74, 0xda72, 0xb555, 0xda78, 0xb553,\n  0xb7df, 0xdead, 0xdeac, 0xdeaa, 0xb7e2, 0xb7e1, 0xdeae, 0xdeab,\n  0xe2ca, 0xbabb, 0xb7e0, 0xdeb0, 0xdeaf, 0xe2cd, 0xe2cb, 0xbcfa,\n  0xbabc, 0xe2cc, 0xe676, 0xbcfb, 0xe675, 0xe67e, 0xe67d, 0xe67b,\n  0xe67a, 0xe677, 0xe678, 0xe679, 0xe67c, 0xe6a1, 0xea5f, 0xea5c,\n  0xea5d, 0xbf57, 0xea5b, 0xea61, 0xea60, 0xea5e, 0xed64, 0xed65,\n  0xc0f1, 0xc0f2, 0xed63, 0xc279, 0xeffe, 0xc278, 0xc37e, 0xc3a1,\n  0xc46d, 0xf46e, 0xf46d, 0xf5dd, 0xf6ef, 0xc57a, 0xf7e8, 0xf7e7,\n  0xf7e9, 0xa5c8, 0xcfc6, 0xaf59, 0xb276, 0xd66a, 0xa5c9, 0xc9a7,\n  0xa4fd, 0xca45, 0xcb6c, 0xcb6a, 0xcb6b, 0xcb68, 0xa868, 0xcb69,\n  0xcd6d, 0xaab3, 0xcd6b, 0xcd67, 0xcd6a, 0xcd66, 0xaab5, 0xcd69,\n  0xaab2, 0xaab1, 0xaab4, 0xcd6c, 0xcd68, 0xacc2, 0xacc5, 0xcfce,\n  0xcfcd, 0xcfcc, 0xacbf, 0xcfd5, 0xcfcb, 0xacc1, 0xd2af, 0xcfd2,\n  0xcfd0, 0xacc4, 0xcfc8, 0xcfd3, 0xcfca, 0xcfd4, 0xcfd1, 0xcfc9,\n  0xacc0, 0xcfd6, 0xcfc7, 0xacc3, 0xd2b4, 0xd2ab, 0xd2b6, 0xd2ae,\n  0xd2b9, 0xd2ba, 0xd2ac, 0xd2b8, 0xd2b5, 0xd2b3, 0xd2b7, 0xaf5f,\n  0xaf5d, 0xd2b1, 0xd2ad, 0xd2b0, 0xd2bb, 0xd2b2, 0xaf5e, 0xcfcf,\n  0xaf5a, 0xaf5c, 0xd678, 0xd66d, 0xd66b, 0xd66c, 0xd673, 0xd674,\n  0xd670, 0xb27b, 0xd675, 0xd672, 0xd66f, 0xb279, 0xd66e, 0xb277,\n  0xb27a, 0xd671, 0xd679, 0xaf5b, 0xb278, 0xd677, 0xd676, 0xb27c,\n  0xda7e, 0xdaa1, 0xb560, 0xdaa7, 0xdaa9, 0xdaa2, 0xb55a, 0xdaa6,\n  0xdaa5, 0xb55b, 0xb561, 0xb562, 0xdaa8, 0xb558, 0xda7d, 0xda7b,\n  0xdaa3, 0xda7a, 0xb55f, 0xda7c, 0xdaa4, 0xdaaa, 0xb559, 0xb55e,\n  0xb55c, 0xb55d, 0xb557, 0xb7e9, 0xdeb7, 0xb7e8, 0xdebb, 0xdeb1,\n  0xdebc, 0xdeb2, 0xdeb3, 0xdebd, 0xdeba, 0xdeb8, 0xdeb9, 0xdeb5,\n  0xdeb4, 0xdebe, 0xb7e5, 0xdeb6, 0xb7ea, 0xb7e4, 0xb7eb, 0xb7ec,\n  0xb7e7, 0xb7e6, 0xe2ce, 0xbabe, 0xbabd, 0xe2d3, 0xbcfc, 0xbabf,\n  0xbac1, 0xe2d4, 0xb7e3, 0xbac0, 0xe2d0, 0xe2d2, 0xe2cf, 0xe2d1,\n  0xe6ab, 0xe6aa, 0xe6a7, 0xbd40, 0xea62, 0xbd41, 0xe6a6, 0xbcfe,\n  0xe6a8, 0xe6a5, 0xe6a2, 0xe6a9, 0xe6a3, 0xe6a4, 0xbcfd, 0xed69,\n  0xea66, 0xea65, 0xea67, 0xed66, 0xbf5a, 0xea63, 0xbf58, 0xbf5c,\n  0xbf5b, 0xea64, 0xea68, 0xbf59, 0xed6d, 0xc0f5, 0xc27a, 0xc0f6,\n  0xc0f3, 0xed6a, 0xed68, 0xed6b, 0xed6e, 0xc0f4, 0xed6c, 0xed67,\n  0xf042, 0xf045, 0xf275, 0xf040, 0xf46f, 0xf046, 0xc3a2, 0xf044,\n  0xc27b, 0xf041, 0xf043, 0xf047, 0xf276, 0xf274, 0xc3a3, 0xf273,\n  0xc46e, 0xc4ed, 0xf6f1, 0xc4ec, 0xf6f3, 0xf6f0, 0xf6f2, 0xc5d0,\n  0xf8b2, 0xa5ca, 0xcd6e, 0xd2bc, 0xd2bd, 0xb27d, 0xdebf, 0xbf5d,\n  0xc3a4, 0xc57b, 0xf8b3, 0xa5cb, 0xcd6f, 0xa260, 0xcfd7, 0xcfd8,\n  0xd2be, 0xd2bf, 0xb27e, 0xb2a1, 0xdaab, 0xdec2, 0xdec1, 0xdec0,\n  0xe2d5, 0xe2d6, 0xe2d7, 0xbac2, 0xe6ad, 0xe6ac, 0xea69, 0xbf5e,\n  0xbf5f, 0xed72, 0xed6f, 0xed70, 0xed71, 0xf049, 0xf048, 0xc27c,\n  0xf277, 0xf5de, 0xa5cc, 0xacc6, 0xb2a2, 0xdec3, 0xa5cd, 0xd2c0,\n  0xb2a3, 0xb563, 0xb564, 0xa5ce, 0xa5cf, 0xca46, 0xa86a, 0xa869,\n  0xacc7, 0xcfd9, 0xdaac, 0xa5d0, 0xa5d1, 0xa5d2, 0xa5d3, 0xa86b,\n  0xa86c, 0xcb6e, 0xcb6d, 0xaab6, 0xcd72, 0xcd70, 0xcd71, 0xcfda,\n  0xcfdb, 0xaccb, 0xacc9, 0xacca, 0xacc8, 0xaf60, 0xaf64, 0xaf63,\n  0xd2c1, 0xaf62, 0xaf61, 0xd2c2, 0xb2a6, 0xd67b, 0xd67a, 0xb2a4,\n  0xb2a5, 0xb566, 0xb565, 0xdaae, 0xdaad, 0xb2a7, 0xb7ed, 0xdec5,\n  0xb7ee, 0xdec4, 0xe2d8, 0xe6ae, 0xbd42, 0xea6a, 0xed73, 0xc3a6,\n  0xc3a5, 0xc57c, 0xa5d4, 0xcd73, 0xb2a8, 0xe2d9, 0xbac3, 0xcb6f,\n  0xcb70, 0xcd74, 0xaab8, 0xaab9, 0xaab7, 0xaccf, 0xacd0, 0xaccd,\n  0xacce, 0xcfdc, 0xcfdd, 0xaccc, 0xd2c3, 0xaf68, 0xaf69, 0xb2ab,\n  0xd2c9, 0xaf6e, 0xaf6c, 0xd2ca, 0xd2c5, 0xaf6b, 0xaf6a, 0xaf65,\n  0xd2c8, 0xd2c7, 0xd2c4, 0xaf6d, 0xd2c6, 0xaf66, 0xaf67, 0xb2ac,\n  0xd6a1, 0xd6a2, 0xb2ad, 0xd67c, 0xd67e, 0xd6a4, 0xd6a3, 0xd67d,\n  0xb2a9, 0xb2aa, 0xdab6, 0xb56b, 0xb56a, 0xdab0, 0xb568, 0xdab3,\n  0xb56c, 0xdab4, 0xb56d, 0xdab1, 0xb567, 0xb569, 0xdab5, 0xdab2,\n  0xdaaf, 0xded2, 0xdec7, 0xb7f0, 0xb7f3, 0xb7f2, 0xb7f7, 0xb7f6,\n  0xded3, 0xded1, 0xdeca, 0xdece, 0xdecd, 0xb7f4, 0xded0, 0xdecc,\n  0xded4, 0xdecb, 0xb7f5, 0xb7ef, 0xb7f1, 0xdec9, 0xe2db, 0xbac7,\n  0xe2df, 0xbac6, 0xe2dc, 0xbac5, 0xdec8, 0xdecf, 0xe2de, 0xbac8,\n  0xe2e0, 0xe2dd, 0xe2da, 0xe6b1, 0xe6b5, 0xe6b7, 0xe6b3, 0xe6b2,\n  0xe6b0, 0xbd45, 0xbd43, 0xbd48, 0xbd49, 0xe6b4, 0xbd46, 0xe6af,\n  0xbd47, 0xbac4, 0xe6b6, 0xbd44, 0xea6c, 0xea6b, 0xea73, 0xea6d,\n  0xea72, 0xea6f, 0xbf60, 0xea71, 0xbf61, 0xbf62, 0xea70, 0xea6e,\n  0xc0f8, 0xed74, 0xc0f7, 0xed77, 0xed75, 0xed76, 0xc0f9, 0xf04d,\n  0xc2a1, 0xf04e, 0xc27d, 0xf04f, 0xc27e, 0xf04c, 0xf050, 0xf04a,\n  0xc3a7, 0xf278, 0xc3a8, 0xc46f, 0xf04b, 0xc470, 0xc4ee, 0xf5df,\n  0xc57e, 0xf6f4, 0xc57d, 0xf7ea, 0xc5f5, 0xc5f6, 0xf9cc, 0xacd1,\n  0xcfde, 0xb56e, 0xb56f, 0xa5d5, 0xa6ca, 0xca47, 0xcb71, 0xa86d,\n  0xaaba, 0xacd2, 0xacd3, 0xacd4, 0xd6a6, 0xd2cb, 0xaf6f, 0xb2ae,\n  0xd6a5, 0xdab8, 0xb571, 0xdab7, 0xb570, 0xded5, 0xbd4a, 0xe6bb,\n  0xe6b8, 0xe6b9, 0xe6ba, 0xed78, 0xf051, 0xf471, 0xf470, 0xf6f5,\n  0xa5d6, 0xcd75, 0xaf70, 0xb572, 0xded6, 0xe2e1, 0xbd4b, 0xea74,\n  0xf052, 0xf472, 0xa5d7, 0xaabb, 0xacd7, 0xcfdf, 0xacd8, 0xacd6,\n  0xacd5, 0xd2cc, 0xaf71, 0xaf72, 0xaf73, 0xb2b0, 0xd6a7, 0xb2af,\n  0xdab9, 0xb2b1, 0xb573, 0xded7, 0xb7f8, 0xb7f9, 0xbac9, 0xbaca,\n  0xbd4c, 0xbf64, 0xea75, 0xbf63, 0xed79, 0xc0fa, 0xf053, 0xf473,\n  0xa5d8, 0xa86e, 0xcd78, 0xcd77, 0xaabc, 0xcd76, 0xaabd, 0xcd79,\n  0xcfe5, 0xacdb, 0xacda, 0xcfe7, 0xcfe6, 0xacdf, 0xacde, 0xacd9,\n  0xcfe1, 0xcfe2, 0xcfe3, 0xace0, 0xcfe0, 0xacdc, 0xcfe4, 0xacdd,\n  0xd2cf, 0xd2d3, 0xd2d1, 0xd2d0, 0xd2d4, 0xd2d5, 0xd2d6, 0xd2ce,\n  0xd2cd, 0xaf75, 0xaf76, 0xd2d7, 0xd2d2, 0xd6b0, 0xd2d8, 0xaf77,\n  0xaf74, 0xd6aa, 0xd6a9, 0xd6ab, 0xd6ac, 0xd6ae, 0xd6ad, 0xd6b2,\n  0xb2b5, 0xb2b2, 0xb2b6, 0xd6a8, 0xb2b7, 0xd6b1, 0xb2b4, 0xd6af,\n  0xb2b3, 0xdabc, 0xdabe, 0xdaba, 0xdabb, 0xdabf, 0xdac1, 0xdac2,\n  0xdabd, 0xdac0, 0xb574, 0xdedb, 0xdee0, 0xded8, 0xdedc, 0xdee1,\n  0xdedd, 0xb7fa, 0xb843, 0xb7fd, 0xded9, 0xdeda, 0xbace, 0xb846,\n  0xb7fe, 0xb844, 0xb7fc, 0xdedf, 0xb845, 0xdede, 0xb841, 0xb7fb,\n  0xb842, 0xdee2, 0xe2e6, 0xe2e8, 0xb840, 0xe2e3, 0xbacc, 0xe2e9,\n  0xbacd, 0xe2e7, 0xe2e2, 0xe2e5, 0xe2ea, 0xbacb, 0xe2e4, 0xbd4e,\n  0xe6bf, 0xe6be, 0xbd51, 0xbd4f, 0xe6bc, 0xbd4d, 0xe6bd, 0xbd50,\n  0xea7d, 0xeaa1, 0xea7e, 0xea76, 0xea7a, 0xea79, 0xea77, 0xbf66,\n  0xbf67, 0xbf65, 0xea78, 0xea7b, 0xea7c, 0xbf68, 0xc140, 0xeda3,\n  0xc0fc, 0xed7b, 0xc0fe, 0xc141, 0xc0fd, 0xeda2, 0xed7c, 0xc0fb,\n  0xeda1, 0xed7a, 0xed7e, 0xed7d, 0xf055, 0xc2a4, 0xc2a5, 0xc2a2,\n  0xc2a3, 0xf054, 0xf27b, 0xc3a9, 0xf279, 0xf27a, 0xf474, 0xf477,\n  0xf475, 0xf476, 0xf5e0, 0xc4ef, 0xf7eb, 0xf8b4, 0xc5f7, 0xf8f8,\n  0xf8f9, 0xc666, 0xa5d9, 0xace1, 0xdac3, 0xdee3, 0xa5da, 0xa86f,\n  0xaabe, 0xcfe8, 0xcfe9, 0xaf78, 0xdac4, 0xb575, 0xb847, 0xc142,\n  0xeda4, 0xf27c, 0xf478, 0xa5db, 0xcda1, 0xcd7a, 0xcd7c, 0xcd7e,\n  0xcd7d, 0xcd7b, 0xaabf, 0xace2, 0xcff2, 0xcfed, 0xcfea, 0xcff1,\n  0xace4, 0xace5, 0xcff0, 0xcfef, 0xcfee, 0xcfeb, 0xcfec, 0xcff3,\n  0xace3, 0xaf7c, 0xafa4, 0xafa3, 0xd2e1, 0xd2db, 0xd2d9, 0xafa1,\n  0xd6b9, 0xaf7a, 0xd2de, 0xd2e2, 0xd2e4, 0xd2e0, 0xd2da, 0xafa2,\n  0xd2df, 0xd2dd, 0xaf79, 0xd2e5, 0xafa5, 0xd2e3, 0xaf7d, 0xd2dc,\n  0xaf7e, 0xaf7b, 0xb2b9, 0xd6ba, 0xd6b3, 0xd6b5, 0xd6b7, 0xd6b8,\n  0xd6b6, 0xb2ba, 0xd6bb, 0xd6b4, 0xdac8, 0xb576, 0xdad0, 0xdac5,\n  0xdad1, 0xdac6, 0xdac7, 0xdacf, 0xdace, 0xdacb, 0xb2b8, 0xb577,\n  0xdac9, 0xdacc, 0xb578, 0xdacd, 0xdaca, 0xdeee, 0xdef2, 0xb84e,\n  0xe2f0, 0xb851, 0xdef0, 0xdeed, 0xdee8, 0xdeea, 0xdeeb, 0xdee4,\n  0xb84d, 0xb84c, 0xb848, 0xdee7, 0xb84f, 0xb850, 0xdee6, 0xdee9,\n  0xdef1, 0xb84a, 0xb84b, 0xdeef, 0xdee5, 0xe2f2, 0xbad0, 0xe2f4,\n  0xdeec, 0xe2f6, 0xbad4, 0xe2f7, 0xe2f3, 0xbad1, 0xe2ef, 0xbad3,\n  0xe2ec, 0xe2f1, 0xe2f5, 0xe2ee, 0xb849, 0xe2eb, 0xbad2, 0xe2ed,\n  0xbd54, 0xe6c1, 0xbd58, 0xbd56, 0xbacf, 0xe6c8, 0xe6c9, 0xbd53,\n  0xe6c7, 0xe6ca, 0xbd55, 0xbd52, 0xe6c3, 0xe6c0, 0xe6c5, 0xe6c2,\n  0xbd59, 0xe6c4, 0xe6c6, 0xbd57, 0xbf6a, 0xeaa8, 0xeaa2, 0xeaa6,\n  0xeaac, 0xeaad, 0xeaa9, 0xeaaa, 0xeaa7, 0xeaa4, 0xbf6c, 0xbf69,\n  0xeaa3, 0xeaa5, 0xbf6b, 0xeaab, 0xc146, 0xedaa, 0xeda5, 0xc145,\n  0xc143, 0xedac, 0xc144, 0xeda8, 0xeda9, 0xeda6, 0xedad, 0xf056,\n  0xc147, 0xeda7, 0xedae, 0xedab, 0xf05a, 0xf057, 0xc2a6, 0xf05b,\n  0xf05d, 0xf05c, 0xf058, 0xf059, 0xf2a3, 0xc3aa, 0xf27e, 0xf2a2,\n  0xf27d, 0xf2a4, 0xf2a1, 0xf47a, 0xf47d, 0xf479, 0xc471, 0xf47b,\n  0xf47c, 0xf47e, 0xc472, 0xc474, 0xc473, 0xf5e1, 0xf5e3, 0xf5e2,\n  0xf6f6, 0xf8b5, 0xf8fa, 0xa5dc, 0xcb72, 0xaac0, 0xcda3, 0xaac1,\n  0xaac2, 0xcda2, 0xcff8, 0xcff7, 0xace6, 0xace9, 0xace8, 0xace7,\n  0xcff4, 0xcff6, 0xcff5, 0xd2e8, 0xafa7, 0xd2ec, 0xd2eb, 0xd2ea,\n  0xd2e6, 0xafa6, 0xafaa, 0xafad, 0xafae, 0xd2e7, 0xd2e9, 0xafac,\n  0xafab, 0xafa9, 0xafa8, 0xd6c2, 0xd6c0, 0xd6bc, 0xb2bb, 0xd6bd,\n  0xb2bc, 0xd6be, 0xd6bf, 0xd6c1, 0xb2bd, 0xdad5, 0xdad4, 0xdad3,\n  0xdad2, 0xdef6, 0xb852, 0xdef3, 0xdef5, 0xb853, 0xb854, 0xdef4,\n  0xe341, 0xe2f9, 0xe2fa, 0xbad7, 0xbad5, 0xbad6, 0xe343, 0xe342,\n  0xe2fe, 0xe2fd, 0xe2fc, 0xe2fb, 0xe340, 0xe2f8, 0xe6cb, 0xe6d0,\n  0xe6ce, 0xe6cd, 0xe6cc, 0xe6cf, 0xeaae, 0xbf6d, 0xc148, 0xedb0,\n  0xc149, 0xedaf, 0xf05f, 0xf05e, 0xc2a7, 0xf2a5, 0xc3ab, 0xf4a1,\n  0xc5a1, 0xf6f7, 0xf8b7, 0xf8b6, 0xc9a8, 0xacea, 0xaceb, 0xd6c3,\n  0xb856, 0xa5dd, 0xa872, 0xa871, 0xa870, 0xcda4, 0xaac4, 0xaac3,\n  0xacee, 0xcffa, 0xcffd, 0xcffb, 0xacec, 0xaced, 0xcff9, 0xcffc,\n  0xafb5, 0xd2f3, 0xd2f5, 0xd2f4, 0xafb2, 0xd2ef, 0xafb0, 0xafaf,\n  0xafb3, 0xafb1, 0xafb4, 0xd2f2, 0xd2ed, 0xd2ee, 0xd2f1, 0xd2f0,\n  0xd6c6, 0xd6c7, 0xd6c5, 0xd6c4, 0xb2be, 0xb57d, 0xdad6, 0xdad8,\n  0xdada, 0xb57c, 0xb57a, 0xdad7, 0xb57b, 0xdad9, 0xb579, 0xdf41,\n  0xdef7, 0xdefa, 0xdefe, 0xb85a, 0xdefc, 0xdefb, 0xdef8, 0xdef9,\n  0xb858, 0xdf40, 0xb857, 0xb85c, 0xb85b, 0xb859, 0xdefd, 0xe349,\n  0xe348, 0xe344, 0xbad8, 0xe347, 0xe346, 0xbad9, 0xbd5e, 0xe6d2,\n  0xbd5f, 0xbd5b, 0xbd5d, 0xbd5a, 0xbd5c, 0xeaaf, 0xbf70, 0xeab1,\n  0xeab0, 0xe345, 0xbf72, 0xbf71, 0xbf6e, 0xbf6f, 0xedb5, 0xedb3,\n  0xc14a, 0xedb4, 0xedb6, 0xedb2, 0xedb1, 0xf060, 0xc2aa, 0xc2a8,\n  0xc2a9, 0xf2a6, 0xf2a7, 0xc3ad, 0xc3ac, 0xf4a3, 0xf4a4, 0xf4a2,\n  0xf6f8, 0xf6f9, 0xa5de, 0xca48, 0xa873, 0xcda5, 0xaac6, 0xaac5,\n  0xcda6, 0xd040, 0xacef, 0xcffe, 0xacf0, 0xafb6, 0xd2f8, 0xd2f6,\n  0xd2fc, 0xafb7, 0xd2f7, 0xd2fb, 0xd2f9, 0xd2fa, 0xd6c8, 0xd6ca,\n  0xb2bf, 0xd6c9, 0xb2c0, 0xb5a2, 0xb5a1, 0xb57e, 0xdadb, 0xdf44,\n  0xb85d, 0xb85e, 0xdf43, 0xdf42, 0xe34a, 0xbadb, 0xbada, 0xe34b,\n  0xe34c, 0xbd61, 0xbd60, 0xeab5, 0xe6d3, 0xe6d5, 0xe6d4, 0xeab4,\n  0xeab2, 0xeab6, 0xeab3, 0xbf73, 0xedb7, 0xc14b, 0xedb8, 0xedb9,\n  0xc2ab, 0xc2ac, 0xc475, 0xc5d1, 0xa5df, 0xd041, 0xd2fd, 0xafb8,\n  0xb3ba, 0xb3b9, 0xb5a4, 0xdadd, 0xb5a3, 0xdadc, 0xdf45, 0xbadc,\n  0xe34d, 0xbadd, 0xc476, 0xf4a5, 0xa6cb, 0xaac7, 0xcda7, 0xacf2,\n  0xacf1, 0xd042, 0xd043, 0xd340, 0xd342, 0xafb9, 0xd344, 0xd347,\n  0xd345, 0xd346, 0xd343, 0xd2fe, 0xafba, 0xd348, 0xd341, 0xd6d3,\n  0xb2c6, 0xd6dc, 0xb2c3, 0xd6d5, 0xb2c7, 0xb2c1, 0xd6d0, 0xd6dd,\n  0xd6d1, 0xd6ce, 0xb2c5, 0xb2c2, 0xd6d4, 0xd6d7, 0xb2c4, 0xd6d8,\n  0xb2c8, 0xd6d9, 0xd6cf, 0xd6d6, 0xd6da, 0xd6d2, 0xd6cd, 0xd6cb,\n  0xd6db, 0xdadf, 0xdae4, 0xdae0, 0xdae6, 0xb5a7, 0xd6cc, 0xdae1,\n  0xb5a5, 0xdade, 0xb5ac, 0xdae2, 0xb5ab, 0xdae3, 0xb5ad, 0xb5a8,\n  0xb5ae, 0xb5a9, 0xb5aa, 0xb5a6, 0xdae5, 0xb861, 0xdf50, 0xdf53,\n  0xdf47, 0xdf4c, 0xdf46, 0xb863, 0xdf4a, 0xdf48, 0xb862, 0xdf4f,\n  0xdf4e, 0xdf4b, 0xdf4d, 0xdf49, 0xbae1, 0xdf52, 0xb85f, 0xdf51,\n  0xe35d, 0xbae8, 0xe358, 0xbae7, 0xe34e, 0xe350, 0xbae0, 0xe355,\n  0xe354, 0xe357, 0xbae5, 0xe352, 0xe351, 0xbae4, 0xbadf, 0xe353,\n  0xbae2, 0xe359, 0xe35b, 0xe356, 0xe34f, 0xbae3, 0xbd69, 0xbade,\n  0xe35c, 0xe6d9, 0xbd62, 0xe6db, 0xbd63, 0xbd65, 0xe6de, 0xe6d6,\n  0xbae6, 0xe6dc, 0xe6d8, 0xb860, 0xbd68, 0xbd64, 0xbd66, 0xbd67,\n  0xbf76, 0xe6dd, 0xe6d7, 0xbd6a, 0xe6da, 0xeac0, 0xeabb, 0xeac5,\n  0xbf74, 0xeabd, 0xbf78, 0xeac3, 0xeaba, 0xeab7, 0xeac6, 0xc151,\n  0xbf79, 0xeac2, 0xeab8, 0xbf77, 0xeabc, 0xbf7b, 0xeab9, 0xeabe,\n  0xbf7a, 0xeac1, 0xeac4, 0xedcb, 0xedcc, 0xedbc, 0xedc3, 0xedc1,\n  0xc14f, 0xedc8, 0xeabf, 0xedbf, 0xedc9, 0xc14e, 0xedbe, 0xedbd,\n  0xedc7, 0xedc4, 0xedc6, 0xedba, 0xedca, 0xc14c, 0xedc5, 0xedce,\n  0xedc2, 0xc150, 0xc14d, 0xedc0, 0xedbb, 0xedcd, 0xbf75, 0xf063,\n  0xf061, 0xf067, 0xc2b0, 0xf065, 0xf064, 0xc2b2, 0xf06a, 0xc2b1,\n  0xf06b, 0xf068, 0xc2ae, 0xf069, 0xf062, 0xc2af, 0xc2ad, 0xf2ab,\n  0xf066, 0xf06c, 0xf2a8, 0xc3b2, 0xc3b0, 0xf2aa, 0xf2ac, 0xf2a9,\n  0xc3b1, 0xc3ae, 0xc3af, 0xc3b3, 0xc478, 0xf4aa, 0xf4a9, 0xf4a7,\n  0xf4a6, 0xf4a8, 0xc477, 0xc479, 0xc4f0, 0xf5e5, 0xf5e4, 0xf6fa,\n  0xf6fc, 0xf6fe, 0xf6fd, 0xf6fb, 0xc5a3, 0xc5a2, 0xc5d3, 0xc5d2,\n  0xc5d4, 0xf7ed, 0xf7ec, 0xf8fb, 0xf8b8, 0xf8fc, 0xc658, 0xc659,\n  0xf96d, 0xc67e, 0xa6cc, 0xcda8, 0xd045, 0xd046, 0xd044, 0xacf3,\n  0xd047, 0xd048, 0xd049, 0xd349, 0xd34f, 0xd34d, 0xafbb, 0xd34b,\n  0xd34c, 0xd34e, 0xd34a, 0xb2c9, 0xd6de, 0xb2cb, 0xd6e0, 0xb2ca,\n  0xd6df, 0xdae8, 0xb5af, 0xdaea, 0xdae7, 0xd6e1, 0xb5b0, 0xdae9,\n  0xdf56, 0xb864, 0xdf54, 0xb865, 0xdf55, 0xb866, 0xbae9, 0xe361,\n  0xe35e, 0xe360, 0xbaea, 0xbaeb, 0xe35f, 0xe6df, 0xe6e0, 0xbd6b,\n  0xe6e2, 0xe6e1, 0xa261, 0xeaca, 0xeacb, 0xeac7, 0xeac8, 0xbf7c,\n  0xbf7d, 0xeac9, 0xc157, 0xc153, 0xc158, 0xc154, 0xc156, 0xc152,\n  0xc155, 0xc2b3, 0xedcf, 0xf2ae, 0xf2ad, 0xf4ab, 0xc47a, 0xc47b,\n  0xf741, 0xf5e6, 0xf740, 0xf8fd, 0xf9a4, 0xa6cd, 0xa874, 0xcda9,\n  0xaac8, 0xacf6, 0xd04c, 0xacf4, 0xd04a, 0xacf9, 0xacf5, 0xacfa,\n  0xacf8, 0xd04b, 0xacf7, 0xafbf, 0xafbe, 0xd35a, 0xafc7, 0xd353,\n  0xd359, 0xafc3, 0xd352, 0xd358, 0xd356, 0xafc2, 0xafc4, 0xd355,\n  0xafbd, 0xd354, 0xafc8, 0xafc5, 0xafc9, 0xafc6, 0xd351, 0xd350,\n  0xd357, 0xafc0, 0xafbc, 0xafc1, 0xd6f0, 0xd6e9, 0xb5b5, 0xd6e8,\n  0xb2cf, 0xb2d6, 0xb2d3, 0xb2d9, 0xb2d8, 0xb2d4, 0xd6e2, 0xd6e5,\n  0xd6e4, 0xb2d0, 0xd6e6, 0xd6ef, 0xb2d1, 0xd6e3, 0xd6ec, 0xd6ed,\n  0xb2d2, 0xd6ea, 0xb2d7, 0xb2cd, 0xb2d5, 0xd6e7, 0xb2cc, 0xd6eb,\n  0xd6ee, 0xdafb, 0xdaf2, 0xb5b2, 0xdaf9, 0xdaf6, 0xdaee, 0xdaf7,\n  0xb5b4, 0xdaef, 0xdaeb, 0xb86c, 0xdaf4, 0xb5b1, 0xdafa, 0xb5b8,\n  0xb5ba, 0xdaed, 0xb5b9, 0xdaf0, 0xb5b3, 0xdaf8, 0xdaf1, 0xdaf5,\n  0xdaf3, 0xb5b6, 0xdaec, 0xb5bb, 0xb2ce, 0xb5b7, 0xb5bc, 0xb868,\n  0xdf5d, 0xdf5f, 0xdf61, 0xdf65, 0xdf5b, 0xdf59, 0xb86a, 0xdf60,\n  0xdf64, 0xdf5c, 0xdf58, 0xdf57, 0xdf62, 0xdf5a, 0xdf5e, 0xb86b,\n  0xb869, 0xdf66, 0xb867, 0xdf63, 0xe372, 0xbaee, 0xe36a, 0xbd78,\n  0xe374, 0xbaf1, 0xe378, 0xbaf7, 0xe365, 0xe375, 0xe362, 0xe377,\n  0xe366, 0xbafe, 0xbafb, 0xe376, 0xe370, 0xbaed, 0xbaf5, 0xbaf4,\n  0xbaf3, 0xbaf9, 0xe363, 0xbafa, 0xe371, 0xbaf6, 0xbaec, 0xe373,\n  0xbaef, 0xbaf0, 0xbaf8, 0xe368, 0xe367, 0xe364, 0xe36c, 0xe369,\n  0xe36d, 0xbafd, 0xe379, 0xbaf2, 0xe36e, 0xe36f, 0xe36b, 0xbafc,\n  0xe6e7, 0xbd70, 0xbd79, 0xbd75, 0xe6e4, 0xbd72, 0xbd76, 0xe6f0,\n  0xbd6c, 0xe6e8, 0xbd74, 0xe6eb, 0xe6e6, 0xbd73, 0xbd77, 0xe6e5,\n  0xbd71, 0xe6ef, 0xbd6e, 0xe6ee, 0xe6ed, 0xbd7a, 0xe572, 0xbd6d,\n  0xe6ec, 0xe6e3, 0xbd7b, 0xe6ea, 0xbd6f, 0xe6e9, 0xbfa2, 0xbfa7,\n  0xbf7e, 0xead8, 0xeacf, 0xeadb, 0xead3, 0xead9, 0xbfa8, 0xbfa1,\n  0xeacc, 0xead2, 0xeadc, 0xead5, 0xeada, 0xeace, 0xead6, 0xbfa3,\n  0xead4, 0xbfa6, 0xbfa5, 0xead0, 0xead1, 0xeacd, 0xead7, 0xbfa4,\n  0xeade, 0xeadd, 0xedda, 0xedd6, 0xc15f, 0xedd0, 0xc159, 0xc169,\n  0xeddc, 0xc161, 0xc15d, 0xedd3, 0xc164, 0xc167, 0xedde, 0xc15c,\n  0xedd5, 0xc165, 0xede0, 0xeddd, 0xedd1, 0xc160, 0xc15a, 0xc168,\n  0xedd8, 0xc163, 0xedd2, 0xc15e, 0xeddf, 0xc162, 0xc15b, 0xedd9,\n  0xc166, 0xedd7, 0xeddb, 0xf06e, 0xf074, 0xc2b9, 0xf077, 0xc2b4,\n  0xc2b5, 0xf06f, 0xf076, 0xf071, 0xc2ba, 0xc2b7, 0xf06d, 0xc2b6,\n  0xf073, 0xf075, 0xc2b8, 0xf072, 0xf070, 0xf2b8, 0xc3b7, 0xc3b8,\n  0xc3b4, 0xc3b5, 0xf2b4, 0xf2b2, 0xf2b6, 0xc3ba, 0xf2b7, 0xf2b0,\n  0xf2af, 0xf2b3, 0xf2b1, 0xc3b6, 0xf2b5, 0xf4ac, 0xc47e, 0xc47d,\n  0xf4ad, 0xf4af, 0xf4ae, 0xc4a1, 0xf5eb, 0xf5e8, 0xf5e9, 0xf5e7,\n  0xf5ea, 0xc4f2, 0xf5ec, 0xc4f1, 0xf742, 0xc5d5, 0xc5d7, 0xf7ee,\n  0xc5d6, 0xf8b9, 0xf940, 0xf942, 0xf8fe, 0xf941, 0xc66c, 0xa6ce,\n  0xacfb, 0xd26f, 0xafca, 0xb2da, 0xdafc, 0xdafd, 0xeadf, 0xc16a,\n  0xede1, 0xc2bb, 0xf2ba, 0xf2b9, 0xc4a2, 0xf5ed, 0xf743, 0xc5f8,\n  0xca49, 0xaac9, 0xa875, 0xd04d, 0xd360, 0xd35b, 0xd35f, 0xd35d,\n  0xafcb, 0xd35e, 0xd35c, 0xd6f1, 0xdafe, 0xdb40, 0xdf69, 0xdf6a,\n  0xb86e, 0xb86f, 0xdf68, 0xdf6b, 0xdf67, 0xb86d, 0xbb40, 0xb870,\n  0xe37a, 0xbd7c, 0xe6f1, 0xbd7d, 0xbfa9, 0xeae2, 0xeae0, 0xeae1,\n  0xede4, 0xede3, 0xede2, 0xf2bb, 0xc3b9, 0xf2bc, 0xf744, 0xc5f9,\n  0xf8ba, 0xa6cf, 0xaacb, 0xaaca, 0xd04f, 0xacfc, 0xd04e, 0xd362,\n  0xafcc, 0xd6f2, 0xd361, 0xb2dc, 0xd6f5, 0xd6f3, 0xd6f4, 0xb2db,\n  0xdb42, 0xdb43, 0xdb41, 0xb873, 0xdf6d, 0xdf6c, 0xdf6e, 0xb872,\n  0xb871, 0xe6f2, 0xe6f4, 0xbd7e, 0xe6f3, 0xeae3, 0xbfaa, 0xf079,\n  0xf078, 0xc3bb, 0xf2bd, 0xc3bd, 0xc3bc, 0xf4b0, 0xf5ee, 0xc4f3,\n  0xa6d0, 0xd050, 0xacfd, 0xd365, 0xafce, 0xd364, 0xd363, 0xafcd,\n  0xd6fb, 0xd6fd, 0xd6f6, 0xd6f7, 0xb2dd, 0xd6f8, 0xb2de, 0xd6fc,\n  0xd6f9, 0xd6fa, 0xb2df, 0xb5be, 0xb5bf, 0xdb44, 0xdf6f, 0xdf70,\n  0xe37e, 0xbb43, 0xbb41, 0xbb42, 0xe37b, 0xe37c, 0xe37d, 0xe6f9,\n  0xe6fa, 0xbda1, 0xe6f7, 0xe6f6, 0xe6f8, 0xe6f5, 0xbfad, 0xeae4,\n  0xbfab, 0xbfac, 0xede6, 0xc16b, 0xede5, 0xefa8, 0xf07a, 0xf07b,\n  0xc2bc, 0xc2bd, 0xc16c, 0xf2be, 0xf2bf, 0xf4b1, 0xc4a3, 0xa6d1,\n  0xa6d2, 0xacfe, 0xaacc, 0xafcf, 0xd051, 0xb5c0, 0xa6d3, 0xad41,\n  0xd052, 0xd053, 0xad40, 0xad42, 0xa6d4, 0xd054, 0xafd1, 0xd366,\n  0xafd3, 0xafd0, 0xafd2, 0xd741, 0xb2e0, 0xd740, 0xd6fe, 0xdf71,\n  0xe3a1, 0xbda2, 0xbfae, 0xeae6, 0xeae5, 0xede7, 0xf5ef, 0xa6d5,\n  0xcb73, 0xcdaa, 0xad43, 0xd055, 0xd368, 0xafd4, 0xd367, 0xafd5,\n  0xd743, 0xb2e2, 0xd742, 0xd744, 0xb2e1, 0xdb46, 0xdb47, 0xdb45,\n  0xb5c1, 0xb874, 0xb875, 0xbb45, 0xe3a3, 0xe3a2, 0xbb44, 0xe6fb,\n  0xe6fc, 0xeae7, 0xc170, 0xc16f, 0xc16d, 0xc16e, 0xc171, 0xf07c,\n  0xc2bf, 0xc2be, 0xf2c0, 0xf4b2, 0xc5a5, 0xc5a4, 0xa6d6, 0xd1fb,\n  0xb877, 0xb5c2, 0xb876, 0xbb46, 0xa6d7, 0xc9a9, 0xa6d8, 0xa6d9,\n  0xcdab, 0xcb76, 0xcb77, 0xa877, 0xcb74, 0xa876, 0xa879, 0xcb75,\n  0xa87b, 0xa87a, 0xcb78, 0xa878, 0xaad1, 0xaacf, 0xcdad, 0xaace,\n  0xaad3, 0xaad5, 0xaad2, 0xcdb0, 0xcdac, 0xaad6, 0xaad0, 0xa87c,\n  0xaad4, 0xcdaf, 0xcdae, 0xaacd, 0xd05b, 0xad47, 0xad48, 0xd05d,\n  0xd057, 0xd05a, 0xd063, 0xd061, 0xad49, 0xd067, 0xad4c, 0xd064,\n  0xd05c, 0xd059, 0xdb49, 0xd062, 0xad44, 0xd065, 0xd056, 0xd05f,\n  0xad46, 0xad4b, 0xd060, 0xad4f, 0xad4d, 0xd058, 0xad4a, 0xd05e,\n  0xad4e, 0xad45, 0xd066, 0xafda, 0xafe3, 0xafd8, 0xafd6, 0xd36a,\n  0xafde, 0xafdb, 0xd36c, 0xafdd, 0xd36b, 0xd369, 0xd36e, 0xafe2,\n  0xafe0, 0xdb48, 0xd36f, 0xd36d, 0xafd7, 0xafd9, 0xafdc, 0xafdf,\n  0xafe1, 0xd74e, 0xb2e4, 0xd745, 0xd747, 0xd748, 0xd750, 0xd74c,\n  0xd74a, 0xd74d, 0xd751, 0xb2e5, 0xb2e9, 0xd746, 0xd74f, 0xb2e7,\n  0xb2e6, 0xd74b, 0xd749, 0xb2e3, 0xb2e8, 0xb5c8, 0xdb51, 0xdb4f,\n  0xb5ca, 0xdb4a, 0xdfa1, 0xb5c9, 0xdb4e, 0xdb4b, 0xb5c5, 0xb5cb,\n  0xdb50, 0xb5c7, 0xdb4d, 0xbb47, 0xb5c6, 0xdb4c, 0xb5cc, 0xb5c4,\n  0xb5c3, 0xdf77, 0xdf75, 0xdf7b, 0xdf73, 0xdfa2, 0xdf78, 0xdf72,\n  0xb87b, 0xb8a3, 0xdf7d, 0xdf76, 0xb87e, 0xb87c, 0xdf7e, 0xb879,\n  0xb878, 0xdf79, 0xb87d, 0xb5cd, 0xdf7c, 0xdf74, 0xb87a, 0xb8a1,\n  0xb8a2, 0xbb4c, 0xbb48, 0xbb4d, 0xe3a6, 0xe3a5, 0xe3a7, 0xbb4a,\n  0xe3a4, 0xbb4b, 0xe3aa, 0xe3a9, 0xe3a8, 0xbb49, 0xe741, 0xe744,\n  0xbda8, 0xe743, 0xbda7, 0xbda3, 0xbda4, 0xbda5, 0xe740, 0xe6fe,\n  0xbda6, 0xe742, 0xe6fd, 0xeae9, 0xeaf3, 0xbfb1, 0xbfb0, 0xeaed,\n  0xeaef, 0xeaea, 0xeaee, 0xeae8, 0xeaf1, 0xbfaf, 0xeaf0, 0xeaec,\n  0xeaf2, 0xeaeb, 0xc174, 0xede8, 0xedee, 0xc178, 0xc17a, 0xc177,\n  0xc176, 0xc175, 0xc173, 0xede9, 0xedec, 0xc172, 0xeded, 0xc179,\n  0xedeb, 0xedea, 0xc2c0, 0xc2c1, 0xf0a1, 0xf07d, 0xf07e, 0xf2c2,\n  0xf2c1, 0xc3be, 0xf4b4, 0xc4a4, 0xf4b3, 0xf5f0, 0xf745, 0xc5a6,\n  0xf943, 0xf944, 0xc5d8, 0xa6da, 0xaad7, 0xdb52, 0xbb4e, 0xc17b,\n  0xedef, 0xa6db, 0xafe5, 0xafe4, 0xdb53, 0xeaf4, 0xa6dc, 0xad50,\n  0xdb54, 0xdb55, 0xdb56, 0xbb4f, 0xbfb2, 0xa6dd, 0xaad8, 0xd068,\n  0xafe6, 0xd370, 0xb2ea, 0xdb57, 0xb8a4, 0xbb50, 0xbfb3, 0xc17c,\n  0xc2c2, 0xf4b5, 0xa6de, 0xaad9, 0xafe7, 0xd752, 0xb5ce, 0xbb51,\n  0xe3ab, 0xe745, 0xa6df, 0xb5cf, 0xdfa3, 0xbb52, 0xa6e0, 0xcdb1,\n  0xd069, 0xad51, 0xd372, 0xafea, 0xafe8, 0xafe9, 0xafeb, 0xd371,\n  0xd757, 0xd754, 0xd756, 0xb2eb, 0xb2ed, 0xb2ec, 0xd753, 0xb2ee,\n  0xd755, 0xdb58, 0xdb59, 0xdb5a, 0xdfa6, 0xdfa7, 0xdfa5, 0xdfa8,\n  0xb8a5, 0xdfa4, 0xbb53, 0xe74a, 0xe746, 0xe749, 0xe74b, 0xe748,\n  0xe747, 0xeaf5, 0xeaf6, 0xeaf7, 0xbfb4, 0xbfb5, 0xedf1, 0xedf0,\n  0xedf2, 0xf0a3, 0xf0a2, 0xf2c4, 0xf2c5, 0xf2c3, 0xc4a5, 0xf4b6,\n  0xf4b7, 0xf746, 0xf7ef, 0xf8bb, 0xa6e1, 0xa87d, 0xc17d, 0xa6e2,\n  0xd758, 0xdb5b, 0xc641, 0xca4a, 0xca4b, 0xca4d, 0xa6e3, 0xca4e,\n  0xca4c, 0xcba2, 0xcba3, 0xcb7b, 0xcba1, 0xa8a1, 0xa8a2, 0xcb7c,\n  0xcb7a, 0xcb79, 0xcb7d, 0xa87e, 0xcb7e, 0xd06a, 0xcdb6, 0xaadc,\n  0xcdb5, 0xcdb7, 0xaadb, 0xcdbc, 0xaadf, 0xcdb2, 0xcdc0, 0xcdc6,\n  0xaae6, 0xcdc3, 0xaae3, 0xcdb9, 0xcdbf, 0xcdc1, 0xcdb4, 0xaae2,\n  0xaadd, 0xcdba, 0xaae4, 0xaae7, 0xaae1, 0xaada, 0xcdbe, 0xcdb8,\n  0xcdc5, 0xaae9, 0xaae5, 0xaae0, 0xcdbd, 0xafec, 0xcdbb, 0xaade,\n  0xaae8, 0xcdb3, 0xcdc2, 0xcdc4, 0xad62, 0xad5c, 0xad64, 0xad61,\n  0xd071, 0xd074, 0xad5d, 0xd06b, 0xad56, 0xad60, 0xad63, 0xad65,\n  0xd0a2, 0xd077, 0xad55, 0xd0a1, 0xad59, 0xad57, 0xad52, 0xd06f,\n  0xd07e, 0xd073, 0xd076, 0xd0a5, 0xad66, 0xd07d, 0xad5e, 0xd078,\n  0xd0a4, 0xd075, 0xd079, 0xd07c, 0xd06d, 0xd0a3, 0xd07b, 0xd06c,\n  0xd070, 0xad5f, 0xad5a, 0xad53, 0xad58, 0xad54, 0xad67, 0xd06e,\n  0xd3a5, 0xad5b, 0xd07a, 0xce41, 0xd3a8, 0xaffa, 0xd376, 0xd3a3,\n  0xd37d, 0xd3b2, 0xd3aa, 0xd37e, 0xd3a9, 0xd378, 0xd37c, 0xd3b5,\n  0xaffd, 0xd3ad, 0xd3a4, 0xafed, 0xd3b3, 0xd374, 0xd3ac, 0xaffc,\n  0xaff7, 0xd373, 0xaff5, 0xaff4, 0xaff9, 0xd3ab, 0xaff1, 0xaff8,\n  0xd072, 0xdb5c, 0xd3a6, 0xd37a, 0xaffb, 0xd37b, 0xd3a1, 0xaffe,\n  0xd375, 0xd3af, 0xd3ae, 0xd3b6, 0xaff3, 0xaff0, 0xd3b4, 0xd3b0,\n  0xd3a7, 0xd3a2, 0xaff6, 0xaff2, 0xd377, 0xafee, 0xd3b1, 0xafef,\n  0xd379, 0xd75e, 0xd760, 0xd765, 0xd779, 0xb2fc, 0xb2f2, 0xd75d,\n  0xb2fd, 0xb2fe, 0xd768, 0xd76f, 0xd775, 0xd762, 0xd769, 0xb340,\n  0xd777, 0xd772, 0xb2fa, 0xb2f8, 0xd76e, 0xd76a, 0xd75c, 0xb2ef,\n  0xd761, 0xd759, 0xb2f7, 0xb2f9, 0xd766, 0xd763, 0xb2f4, 0xd773,\n  0xb2f1, 0xd764, 0xd77a, 0xd76c, 0xd76b, 0xb2f0, 0xb2fb, 0xb2f3,\n  0xd75a, 0xd75f, 0xd770, 0xd776, 0xb341, 0xd75b, 0xd767, 0xd76d,\n  0xb2f6, 0xd778, 0xd771, 0xd774, 0xb2f5, 0xdb6c, 0xdb60, 0xb5d7,\n  0xdb7d, 0xdba7, 0xdbaa, 0xb5d5, 0xdb68, 0xdba3, 0xdb69, 0xdb77,\n  0xb5e2, 0xdb73, 0xb5df, 0xdb74, 0xdb5d, 0xdba4, 0xb5e8, 0xdba1,\n  0xdb75, 0xdbac, 0xdb70, 0xdfc8, 0xdbaf, 0xb5e6, 0xdb6e, 0xdb7a,\n  0xb5e9, 0xb5d4, 0xdb72, 0xdbad, 0xdb6b, 0xdb64, 0xdb6f, 0xdb63,\n  0xdb61, 0xb5d0, 0xdba5, 0xdb6a, 0xdba8, 0xdba9, 0xb5d8, 0xb5dd,\n  0xb5d9, 0xb5e1, 0xdb7e, 0xb5da, 0xdb76, 0xdb66, 0xb5d2, 0xdb5e,\n  0xdba2, 0xdbab, 0xdb65, 0xb5e0, 0xdbb0, 0xdb71, 0xdb6d, 0xb5d1,\n  0xb5e5, 0xdb7c, 0xb5e7, 0xdb78, 0xb5dc, 0xb5d6, 0xb5de, 0xb5d3,\n  0xb5e4, 0xdb79, 0xdb67, 0xdb7b, 0xdb62, 0xdba6, 0xdbae, 0xdb5f,\n  0xdfc7, 0xdfdd, 0xb855, 0xdfcc, 0xdfca, 0xdfb5, 0xb8a9, 0xdfc5,\n  0xdfd9, 0xdfc1, 0xb8b1, 0xdfd8, 0xdfbf, 0xb5e3, 0xdfcf, 0xdfc0,\n  0xdfd6, 0xb8b0, 0xb8a8, 0xdfaa, 0xdfb2, 0xdfcb, 0xdfc3, 0xdfdc,\n  0xdfc6, 0xb8b6, 0xdfd7, 0xb8ad, 0xdfc9, 0xdfd1, 0xdfb6, 0xdfd0,\n  0xdfe1, 0xdfb1, 0xdfd2, 0xdfdf, 0xdfab, 0xb5db, 0xdfb9, 0xdfb8,\n  0xb8af, 0xdfbc, 0xdfbe, 0xdfcd, 0xdfde, 0xb8b2, 0xb8b3, 0xdfb0,\n  0xb8ab, 0xdfb4, 0xdfda, 0xb8b4, 0xb8ac, 0xb8ae, 0xb8b5, 0xdfe0,\n  0xdfd3, 0xdfce, 0xdfbb, 0xdfba, 0xb8aa, 0xdfac, 0xb8a7, 0xdfc4,\n  0xdfad, 0xdfc2, 0xdfb7, 0xdfdb, 0xb8a6, 0xdfb3, 0xdfaf, 0xdfd5,\n  0xdfae, 0xbb60, 0xe3d3, 0xe3c2, 0xe3ac, 0xe3ca, 0xbb58, 0xe3bb,\n  0xe3c5, 0xbb5b, 0xe3be, 0xbb59, 0xe3af, 0xe3cd, 0xe3ae, 0xe3c1,\n  0xe3ad, 0xe3bf, 0xe3c8, 0xe3c6, 0xe3ba, 0xe3b5, 0xe3b3, 0xe3b4,\n  0xe3c7, 0xe3d2, 0xe3bc, 0xbb5a, 0xe3b7, 0xe3cb, 0xbb5d, 0xe3b6,\n  0xe3b0, 0xe3c0, 0xbb61, 0xbb55, 0xbb5e, 0xe3b8, 0xe3b2, 0xbb57,\n  0xdfd4, 0xbb56, 0xe3c3, 0xbb54, 0xbb63, 0xbb5c, 0xe3c4, 0xe3b9,\n  0xe3b1, 0xe3cc, 0xe3bd, 0xbb62, 0xe3d0, 0xbb5f, 0xe3cf, 0xe3c9,\n  0xe3ce, 0xe3d1, 0xe773, 0xe774, 0xe767, 0xe766, 0xe762, 0xbdb4,\n  0xbdac, 0xe776, 0xe775, 0xdfa9, 0xe75f, 0xe763, 0xe75d, 0xe770,\n  0xe761, 0xe777, 0xe75a, 0xe758, 0xe764, 0xe76e, 0xe769, 0xbdb6,\n  0xe74f, 0xe76d, 0xbdb7, 0xdfbd, 0xe75b, 0xe752, 0xe755, 0xe77b,\n  0xe75c, 0xe753, 0xe751, 0xe74e, 0xbdb0, 0xe765, 0xbdaf, 0xbdb3,\n  0xe760, 0xe768, 0xbda9, 0xe778, 0xe77c, 0xbdab, 0xe757, 0xe76b,\n  0xe76f, 0xe754, 0xe779, 0xbdb2, 0xbdb1, 0xe74c, 0xbdb5, 0xe772,\n  0xe756, 0xe76a, 0xe750, 0xe75e, 0xe759, 0xbdad, 0xbdae, 0xe76c,\n  0xe77d, 0xe77a, 0xe771, 0xe74d, 0xbdaa, 0xeb49, 0xeb40, 0xeb43,\n  0xbfbb, 0xeb45, 0xeaf9, 0xeb41, 0xeb47, 0xbfb8, 0xbfbc, 0xbfb6,\n  0xeafb, 0xeb4c, 0xeb46, 0xeafc, 0xeb55, 0xeb4f, 0xeaf8, 0xee46,\n  0xeafe, 0xbfb7, 0xeb4a, 0xeb54, 0xbfbf, 0xeb51, 0xeafd, 0xeb44,\n  0xeb48, 0xeb42, 0xeb56, 0xeb53, 0xeb50, 0xbfb9, 0xbfba, 0xbfbe,\n  0xeafa, 0xeb57, 0xbfbd, 0xeb4d, 0xeb4b, 0xeb4e, 0xee53, 0xee40,\n  0xee45, 0xee52, 0xee44, 0xedfb, 0xee41, 0xc1a2, 0xedf4, 0xee4d,\n  0xee4f, 0xedf3, 0xc1a1, 0xee51, 0xee49, 0xc1a8, 0xee50, 0xee42,\n  0xc1aa, 0xedf9, 0xeb52, 0xee4a, 0xee47, 0xedf5, 0xee55, 0xc1a4,\n  0xc1a5, 0xedf7, 0xee48, 0xee54, 0xee4b, 0xedfd, 0xc1a7, 0xc1a3,\n  0xee4c, 0xedfe, 0xee56, 0xedf8, 0xee43, 0xee4e, 0xedfa, 0xedfc,\n  0xc2cb, 0xedf6, 0xc1a9, 0xc2c4, 0xc17e, 0xc1a6, 0xc2c8, 0xf0b3,\n  0xf0a9, 0xf0a4, 0xf0aa, 0xf0b4, 0xf0b8, 0xf0b7, 0xc2ca, 0xc2c9,\n  0xf0ab, 0xf0b9, 0xf0ae, 0xf0a6, 0xf0a8, 0xf0a7, 0xf0ad, 0xf0b2,\n  0xf0a5, 0xf0ac, 0xf0b1, 0xc2c7, 0xf0af, 0xc2c5, 0xf0b0, 0xc2c3,\n  0xc2c6, 0xf2d5, 0xf0b5, 0xc3c2, 0xf2cd, 0xf2d1, 0xf2c9, 0xf2cc,\n  0xf2d4, 0xc3c0, 0xf2d9, 0xf2d2, 0xf2ca, 0xf2da, 0xf2d3, 0xc3c3,\n  0xc3c4, 0xf2d7, 0xf2cb, 0xc3bf, 0xc3c1, 0xf2c6, 0xf2ce, 0xf2c8,\n  0xf2d8, 0xf2d6, 0xf2c7, 0xf2cf, 0xf4be, 0xc3c5, 0xf2d0, 0xc4a7,\n  0xc4a9, 0xc4a6, 0xf4c3, 0xf4bb, 0xf4b9, 0xf4bd, 0xf4ba, 0xf4bf,\n  0xf4c1, 0xc4aa, 0xc4ac, 0xf4c0, 0xc4ad, 0xc4ab, 0xf4c2, 0xc4a8,\n  0xc4f4, 0xf5f1, 0xf5f7, 0xc4f6, 0xf4bc, 0xf5f6, 0xf5fd, 0xf5f4,\n  0xf5fb, 0xf5fa, 0xf4b8, 0xf5f5, 0xf0b6, 0xf5fe, 0xf5f3, 0xf5f8,\n  0xf5fc, 0xf5f2, 0xf74a, 0xc4f5, 0xf5f9, 0xf7f4, 0xf74b, 0xf749,\n  0xf747, 0xf748, 0xf74c, 0xc5d9, 0xf7f2, 0xf7f0, 0xf7f5, 0xf7f3,\n  0xf7f6, 0xc5da, 0xf7f1, 0xf8bc, 0xf945, 0xf946, 0xf947, 0xf9c7,\n  0xf9bd, 0xca4f, 0xaaea, 0xad68, 0xd3b8, 0xd3b7, 0xb040, 0xb342,\n  0xd77c, 0xd77b, 0xb5ea, 0xb8b8, 0xb8b7, 0xb8b9, 0xe3d4, 0xe77e,\n  0xeb58, 0xeb5a, 0xeb59, 0xc1ab, 0xee57, 0xf0ba, 0xf9a5, 0xa6e4,\n  0xcdc9, 0xcdca, 0xcdc8, 0xcdc7, 0xaaeb, 0xd0a9, 0xd0a7, 0xd0a6,\n  0xad69, 0xad6b, 0xad6a, 0xd0a8, 0xd3c4, 0xd3c1, 0xd3bf, 0xb041,\n  0xd3c2, 0xb046, 0xd3bc, 0xd3cb, 0xd3cd, 0xd3bd, 0xb043, 0xd3ce,\n  0xd3c9, 0xd3bb, 0xd3c0, 0xd3ca, 0xd3c6, 0xd3c3, 0xb048, 0xd3cc,\n  0xd3be, 0xd3c7, 0xd3b9, 0xb047, 0xb044, 0xd3c5, 0xd3c8, 0xd3ba,\n  0xb045, 0xb042, 0xb34c, 0xd7a5, 0xb34b, 0xd7a8, 0xd7ab, 0xb348,\n  0xb346, 0xd77e, 0xd7a9, 0xd7a7, 0xd7a4, 0xd7ac, 0xd7ad, 0xd7af,\n  0xd7b0, 0xd77d, 0xb345, 0xd7a2, 0xd7a1, 0xd7ae, 0xb347, 0xd7a3,\n  0xb349, 0xb344, 0xd7a6, 0xb34d, 0xb34a, 0xd7aa, 0xb5f1, 0xdbbf,\n  0xdbb4, 0xb5ee, 0xdfe7, 0xdbbd, 0xdbb1, 0xb5ec, 0xdbb6, 0xb5ef,\n  0xdbba, 0xdbb8, 0xb5f2, 0xb5eb, 0xdbb2, 0xdbb5, 0xb5f0, 0xdbb3,\n  0xdbbe, 0xdbbc, 0xdbb7, 0xdbb9, 0xdbbb, 0xb5ed, 0xdfe8, 0xdfee,\n  0xdfe4, 0xdfea, 0xb8ba, 0xdfe6, 0xb8c0, 0xb8bf, 0xb8be, 0xdfed,\n  0xb8c1, 0xb8c2, 0xdfe3, 0xdff0, 0xb8c3, 0xb8bd, 0xb8bc, 0xdfec,\n  0xb8c4, 0xdfe2, 0xdfe5, 0xdfef, 0xdfeb, 0xe3f4, 0xe3e9, 0xb8bb,\n  0xbb6a, 0xe3dd, 0xe3f2, 0xe3de, 0xbb65, 0xe3db, 0xe3e4, 0xe3dc,\n  0xbb67, 0xe3d6, 0xe3f1, 0xbb68, 0xe3ee, 0xe3ef, 0xe3d7, 0xbb6d,\n  0xe3e6, 0xe3e0, 0xe3e7, 0xe3da, 0xe3f3, 0xe3eb, 0xe3e5, 0xe3d5,\n  0xbb69, 0xe3ec, 0xbb6c, 0xe3f0, 0xe3ea, 0xbb66, 0xe3e8, 0xe3e2,\n  0xbb64, 0xe3d9, 0xe3e1, 0xe3ed, 0xe3df, 0xe3e3, 0xbdc1, 0xdfe9,\n  0xe7b2, 0xe7bb, 0xe7b1, 0xe7ad, 0xe7aa, 0xbdc2, 0xe7a8, 0xbb6b,\n  0xe7a1, 0xbdc0, 0xe7a7, 0xbdbf, 0xe7ac, 0xe7a9, 0xe7b9, 0xe7b4,\n  0xe7ae, 0xe7b3, 0xbdbb, 0xe7ab, 0xe7be, 0xe7a2, 0xe7a3, 0xe7ba,\n  0xbdbc, 0xe7bf, 0xbdbe, 0xe7c0, 0xe7b0, 0xe3d8, 0xe7b6, 0xe7af,\n  0xe7b8, 0xe7b5, 0xe7a6, 0xbdb9, 0xe7bd, 0xbdba, 0xe7a4, 0xbdbd,\n  0xeb64, 0xe7b7, 0xe7bc, 0xeb61, 0xbdb8, 0xbfc0, 0xeb6b, 0xeb67,\n  0xeb65, 0xeb60, 0xeb6f, 0xbfc4, 0xeb5c, 0xeb68, 0xeb69, 0xeb5f,\n  0xeb5e, 0xeb6c, 0xeb62, 0xeb5d, 0xeb63, 0xeb6e, 0xeb5b, 0xeb6d,\n  0xeb6a, 0xbfc2, 0xbfc1, 0xbfc3, 0xeb66, 0xf0cb, 0xee59, 0xc1b1,\n  0xee5d, 0xee5a, 0xee61, 0xee67, 0xee5c, 0xee70, 0xc1ae, 0xee6a,\n  0xee5f, 0xee6b, 0xee66, 0xee6d, 0xee5e, 0xc1b3, 0xc1b2, 0xee60,\n  0xee6e, 0xee58, 0xee6c, 0xc1ac, 0xee64, 0xee63, 0xee68, 0xee5b,\n  0xc1b0, 0xc1b4, 0xee62, 0xee69, 0xc1b5, 0xee65, 0xc1ad, 0xc1af,\n  0xf0c7, 0xf0c5, 0xf0cc, 0xf0c9, 0xf0cd, 0xf0be, 0xf0c6, 0xf0d1,\n  0xee6f, 0xf0c2, 0xc2cf, 0xe7a5, 0xf0bd, 0xf0ca, 0xf0c4, 0xf0c1,\n  0xf0bc, 0xf0bb, 0xf0d0, 0xf0c0, 0xf0bf, 0xc2cd, 0xf0c8, 0xc2cc,\n  0xc2ce, 0xf0c3, 0xf0cf, 0xf2de, 0xf2df, 0xc3c9, 0xf2dc, 0xc3c6,\n  0xf2e4, 0xc3ca, 0xf2e6, 0xf2db, 0xf0ce, 0xf2e8, 0xf2dd, 0xc3c7,\n  0xf2e3, 0xf2e5, 0xf2e0, 0xf2e7, 0xf2e2, 0xf2e1, 0xc3c8, 0xf4c5,\n  0xf4c6, 0xf4c8, 0xc4ae, 0xc4af, 0xf4c9, 0xf4c7, 0xf4c4, 0xf642,\n  0xf645, 0xf641, 0xc4fa, 0xf643, 0xc4f9, 0xc4f8, 0xc4f7, 0xf644,\n  0xf751, 0xf74f, 0xf74e, 0xf640, 0xf750, 0xf646, 0xf74d, 0xf7f9,\n  0xf7d7, 0xf7f7, 0xc5db, 0xf7f8, 0xf7fa, 0xf8bf, 0xc5fa, 0xf8be,\n  0xf8bd, 0xc5fb, 0xc65a, 0xf96e, 0xf9a7, 0xf9a6, 0xf9a8, 0xa6e5,\n  0xd0aa, 0xd3cf, 0xd3d0, 0xdbc0, 0xf647, 0xf8c0, 0xa6e6, 0xad6c,\n  0xd0ab, 0xd7b1, 0xb34e, 0xdbc2, 0xdbc1, 0xb5f3, 0xb8c5, 0xe7c1,\n  0xbdc3, 0xbdc4, 0xbfc5, 0xc5fc, 0xa6e7, 0xd0ac, 0xaaed, 0xd0ae,\n  0xd0ad, 0xad6d, 0xd3d1, 0xd3d8, 0xb049, 0xd3d6, 0xd3d4, 0xd3db,\n  0xd3d2, 0xd3d3, 0xb04a, 0xb04e, 0xd3dc, 0xb04d, 0xd3da, 0xd3d7,\n  0xd3d5, 0xb04b, 0xb04c, 0xd3d9, 0xb350, 0xd7b2, 0xb355, 0xd7c2,\n  0xb354, 0xd7c4, 0xd7b8, 0xb352, 0xd7c3, 0xd7b3, 0xb353, 0xd7bf,\n  0xd7bb, 0xd7bd, 0xd7b7, 0xd7be, 0xb34f, 0xd7ba, 0xd7b9, 0xd7b5,\n  0xd7c0, 0xd7bc, 0xd7b4, 0xd7b6, 0xb351, 0xd7c1, 0xb5f6, 0xdbcd,\n  0xdbc9, 0xdbcb, 0xdbc6, 0xdbc5, 0xdbc3, 0xdbca, 0xdbcc, 0xdbc8,\n  0xdbc7, 0xb5f4, 0xb5f5, 0xdbcf, 0xb8cd, 0xdff2, 0xdff8, 0xdff3,\n  0xdff4, 0xdff9, 0xb8cf, 0xb8c7, 0xb8ce, 0xdff1, 0xdbc4, 0xb8ca,\n  0xb8c8, 0xdff7, 0xdff6, 0xb8c9, 0xb8cb, 0xdff5, 0xb8c6, 0xb8cc,\n  0xe3f6, 0xbb74, 0xe442, 0xe441, 0xe3fb, 0xbb76, 0xe440, 0xe3f7,\n  0xe3f8, 0xbb6e, 0xbb70, 0xe3fd, 0xe3f5, 0xbb72, 0xbb71, 0xe3f9,\n  0xe3fe, 0xe3fc, 0xbb73, 0xe3fa, 0xdbce, 0xbb6f, 0xe7c2, 0xe7c9,\n  0xbdc6, 0xe7cd, 0xbdca, 0xe7c5, 0xe7c3, 0xe7cc, 0xbdc5, 0xe7cb,\n  0xbdc7, 0xbdc8, 0xe7c4, 0xbdc9, 0xe7ca, 0xe7c6, 0xe7c7, 0xe7c8,\n  0xbb75, 0xeb70, 0xeb7c, 0xbfca, 0xeb77, 0xeb79, 0xbfc8, 0xeb71,\n  0xeb75, 0xeb78, 0xbfc6, 0xbfc9, 0xeb7b, 0xeb73, 0xeb74, 0xeb7a,\n  0xeb72, 0xeb76, 0xbfc7, 0xee72, 0xee71, 0xc1b7, 0xee77, 0xc1b9,\n  0xc1b6, 0xee73, 0xc1ba, 0xee74, 0xee75, 0xee78, 0xc1b8, 0xf0d6,\n  0xf0d9, 0xf0d3, 0xf0d5, 0xf0d4, 0xf0d7, 0xf0d8, 0xee76, 0xf0d2,\n  0xc3cd, 0xf2ec, 0xf2ef, 0xf2f1, 0xf2ea, 0xf2eb, 0xf2ee, 0xf2f0,\n  0xc3ce, 0xc3cc, 0xc3cb, 0xf2ed, 0xf2e9, 0xf4ca, 0xc4b0, 0xf4cb,\n  0xf649, 0xc4fb, 0xf64b, 0xc4fc, 0xf648, 0xf64a, 0xc5a8, 0xf752,\n  0xc5a7, 0xf7fd, 0xf7fc, 0xf7fb, 0xf948, 0xf949, 0xf94b, 0xf94a,\n  0xca50, 0xa6e8, 0xad6e, 0xd7c5, 0xb5f7, 0xdffa, 0xc2d0, 0xf2f2,\n  0xa8a3, 0xb357, 0xb356, 0xdbd0, 0xb5f8, 0xdbd2, 0xdbd1, 0xdffb,\n  0xb8d0, 0xe443, 0xe446, 0xe445, 0xe444, 0xe7ce, 0xe7d0, 0xe7cf,\n  0xbfcc, 0xbfcb, 0xc1bb, 0xee79, 0xee7b, 0xee7a, 0xc2d1, 0xf2f4,\n  0xf2f3, 0xf4cc, 0xc4b1, 0xc4fd, 0xf754, 0xf753, 0xc65b, 0xa8a4,\n  0xd0af, 0xad6f, 0xd7c8, 0xd7c6, 0xd7c7, 0xdbd4, 0xdbd5, 0xe043,\n  0xdbd3, 0xdffc, 0xe041, 0xe040, 0xe042, 0xb8d1, 0xdffe, 0xdffd,\n  0xe044, 0xe449, 0xe447, 0xe448, 0xe7d3, 0xe7d1, 0xe7d2, 0xeb7d,\n  0xee7c, 0xee7d, 0xc2d2, 0xf2f5, 0xf4cd, 0xc4b2, 0xf64c, 0xf755,\n  0xc5a9, 0xf7fe, 0xf94c, 0xa8a5, 0xad71, 0xad72, 0xd0b0, 0xd0b1,\n  0xad70, 0xb054, 0xb052, 0xb051, 0xb058, 0xb050, 0xb059, 0xd3dd,\n  0xb056, 0xb053, 0xb057, 0xb055, 0xb04f, 0xb35f, 0xb359, 0xd7cc,\n  0xb35e, 0xb360, 0xb35a, 0xb35b, 0xd7ca, 0xb358, 0xd7cb, 0xb35d,\n  0xd7c9, 0xb35c, 0xb644, 0xb646, 0xdbd8, 0xb645, 0xb5f9, 0xb5fd,\n  0xb8e4, 0xe049, 0xdbda, 0xb5fe, 0xdbdd, 0xdbde, 0xb643, 0xdbe0,\n  0xdbe2, 0xdbe3, 0xdbd7, 0xdbd6, 0xdbe4, 0xb642, 0xdbe1, 0xdbdf,\n  0xb640, 0xb5fb, 0xb647, 0xdbdb, 0xdbdc, 0xdbd9, 0xb641, 0xb5fc,\n  0xb5fa, 0xe048, 0xb8df, 0xb8da, 0xb8d5, 0xb8e5, 0xb8d6, 0xb8d2,\n  0xb8e1, 0xb8de, 0xb8e0, 0xb8d7, 0xb8dc, 0xb8d3, 0xb8d4, 0xe050,\n  0xe04d, 0xe045, 0xe04a, 0xb8e2, 0xe051, 0xb8e3, 0xb8d9, 0xe047,\n  0xe04f, 0xe04b, 0xe04e, 0xe04c, 0xb8dd, 0xe046, 0xb8d8, 0xe44c,\n  0xbb78, 0xbb7b, 0xe44e, 0xbba5, 0xe44d, 0xbb7d, 0xbdcf, 0xe44f,\n  0xbba4, 0xe44b, 0xbba6, 0xbb79, 0xb8db, 0xbb7c, 0xbb7a, 0xbb7e,\n  0xbba2, 0xbb77, 0xbba7, 0xbba3, 0xbba1, 0xe44a, 0xbdd6, 0xbdd2,\n  0xbdd9, 0xe7d6, 0xbdda, 0xe7e2, 0xe7db, 0xbdcb, 0xe7e3, 0xe7dd,\n  0xbdd5, 0xe7de, 0xbdd4, 0xe7e1, 0xbdce, 0xe7df, 0xe7d5, 0xbdcd,\n  0xebaa, 0xbdd3, 0xbdd0, 0xbdd8, 0xe7d4, 0xe7d8, 0xbdcc, 0xe7d7,\n  0xe7d9, 0xe7da, 0xbdd7, 0xe7dc, 0xe7e0, 0xe7e4, 0xbddb, 0xbfd2,\n  0xeba5, 0xebab, 0xeba8, 0xeb7e, 0xebac, 0xeba1, 0xeba7, 0xbfcd,\n  0xbfd3, 0xebad, 0xbfcf, 0xbfd9, 0xbfd4, 0xebaf, 0xeba9, 0xbfd0,\n  0xeba2, 0xbfda, 0xeba3, 0xeba4, 0xbfdb, 0xbfd8, 0xbdd1, 0xbfce,\n  0xebb0, 0xbfdc, 0xbfd5, 0xebae, 0xbfd1, 0xbfd6, 0xbfd7, 0xc1c3,\n  0xeea4, 0xeead, 0xeeaa, 0xeeac, 0xc1c0, 0xeea5, 0xeeab, 0xc1bc,\n  0xeea7, 0xc1c4, 0xeea3, 0xeea8, 0xeeaf, 0xeba6, 0xeea9, 0xeea2,\n  0xc1bd, 0xeea1, 0xc1be, 0xeeb0, 0xc1bf, 0xeeae, 0xc1c2, 0xee7e,\n  0xc1c1, 0xeea6, 0xf0dc, 0xf0ea, 0xf0e5, 0xf0e7, 0xf0db, 0xc2d3,\n  0xf0da, 0xc2d6, 0xc2d5, 0xf0e9, 0xf0e1, 0xf0de, 0xf0e4, 0xf0dd,\n  0xf0df, 0xf0e8, 0xf0e6, 0xc2d4, 0xf0ed, 0xf0eb, 0xf0e2, 0xf0ec,\n  0xf0e3, 0xf2f9, 0xc3cf, 0xf341, 0xf64f, 0xc3d6, 0xf0e0, 0xf2f7,\n  0xc3d2, 0xf2f8, 0xf2fd, 0xc3d4, 0xc3d5, 0xf2f6, 0xf340, 0xf342,\n  0xf2fa, 0xf2fc, 0xf2fe, 0xf2fb, 0xf343, 0xc3d1, 0xc3d7, 0xc3d3,\n  0xc3d0, 0xf4d0, 0xc4b7, 0xf4ce, 0xf4d2, 0xf4d3, 0xc4b5, 0xf4d4,\n  0xf4d1, 0xf4cf, 0xc4b8, 0xc4b4, 0xf4d5, 0xc4b6, 0xc4b3, 0xc4fe,\n  0xc540, 0xf64e, 0xf64d, 0xf650, 0xf651, 0xc541, 0xf756, 0xf75b,\n  0xc5aa, 0xf758, 0xf757, 0xf75a, 0xf759, 0xf843, 0xc5dc, 0xf842,\n  0xf840, 0xf841, 0xc5fe, 0xc5fd, 0xf8c1, 0xf8c2, 0xc640, 0xf94d,\n  0xf94e, 0xc667, 0xc66d, 0xf9a9, 0xf9c8, 0xa8a6, 0xd7cd, 0xd7ce,\n  0xe052, 0xe450, 0xe7e5, 0xc1c6, 0xc1c5, 0xf0ee, 0xf344, 0xf844,\n  0xa8a7, 0xd3de, 0xb05a, 0xb361, 0xe054, 0xe053, 0xbddc, 0xe7e6,\n  0xbddd, 0xeeb1, 0xc2d7, 0xc676, 0xa8a8, 0xcdcb, 0xd3df, 0xb362,\n  0xd7cf, 0xd7d0, 0xdbe5, 0xb648, 0xb8e6, 0xe056, 0xe055, 0xe057,\n  0xe451, 0xe452, 0xbba8, 0xbfdd, 0xbdde, 0xbfde, 0xeeb5, 0xeeb2,\n  0xeeb4, 0xeeb3, 0xc1c7, 0xf0ef, 0xf346, 0xf345, 0xcba4, 0xb05c,\n  0xb05b, 0xd3e0, 0xd7d1, 0xdbe7, 0xdbe6, 0xb649, 0xe059, 0xe05a,\n  0xe058, 0xb8e8, 0xb8e7, 0xbbaa, 0xbba9, 0xe7e7, 0xebb3, 0xebb1,\n  0xebb2, 0xbfdf, 0xeeb7, 0xeeb6, 0xf0f2, 0xf0f1, 0xf0f0, 0xf347,\n  0xf9aa, 0xa8a9, 0xad73, 0xad74, 0xb05d, 0xb05e, 0xd3e2, 0xd3e1,\n  0xd7d2, 0xb368, 0xb366, 0xb363, 0xb367, 0xb365, 0xb364, 0xb64a,\n  0xdbea, 0xb8ed, 0xb64c, 0xb651, 0xdbec, 0xb653, 0xb652, 0xb655,\n  0xdbeb, 0xdbe8, 0xb64f, 0xb64b, 0xb64d, 0xdbe9, 0xb654, 0xb650,\n  0xb64e, 0xb8ef, 0xb8ee, 0xb8ec, 0xb8f0, 0xb8ea, 0xb8eb, 0xb8e9,\n  0xe05b, 0xe454, 0xbbac, 0xbbad, 0xbbab, 0xe453, 0xe455, 0xe7ea,\n  0xe7ec, 0xbde7, 0xe7ed, 0xbde0, 0xe7e9, 0xbddf, 0xbde9, 0xbde5,\n  0xbde6, 0xbde2, 0xe7e8, 0xbde1, 0xe7ee, 0xe7eb, 0xbde8, 0xbde3,\n  0xbde4, 0xebb5, 0xebb7, 0xebb6, 0xebb8, 0xbfe0, 0xebb4, 0xc1cb,\n  0xeeb8, 0xc1c8, 0xc1cc, 0xc1ca, 0xc1c9, 0xf0f3, 0xf0f6, 0xf0f5,\n  0xf0f4, 0xc2d8, 0xf348, 0xf349, 0xc3d8, 0xf34a, 0xc3d9, 0xc4ba,\n  0xc4b9, 0xf652, 0xc542, 0xf653, 0xf75c, 0xc5ab, 0xc5ac, 0xf845,\n  0xc642, 0xa8aa, 0xb36a, 0xb369, 0xe05c, 0xe05d, 0xbbae, 0xebb9,\n  0xbdea, 0xebba, 0xeeb9, 0xa8ab, 0xd0b2, 0xad76, 0xad75, 0xd3e3,\n  0xb05f, 0xd3e4, 0xd7d5, 0xd7d4, 0xd7d3, 0xdbee, 0xb658, 0xdbed,\n  0xb657, 0xdbef, 0xb656, 0xe05f, 0xe062, 0xe060, 0xe061, 0xe065,\n  0xe05e, 0xe066, 0xe063, 0xe064, 0xbbb0, 0xe456, 0xbbaf, 0xe7f2,\n  0xe7f0, 0xbdeb, 0xe7ef, 0xe7f1, 0xbdec, 0xebbb, 0xebbc, 0xc1cd,\n  0xf34c, 0xf34e, 0xf34b, 0xf34d, 0xf4d6, 0xf654, 0xf96f, 0xa8ac,\n  0xad77, 0xd3e5, 0xd3e7, 0xd3e6, 0xd7d8, 0xb36c, 0xd7d6, 0xb36b,\n  0xd7d9, 0xd7da, 0xd7d7, 0xdbfb, 0xb660, 0xdbf3, 0xdbf9, 0xb65b,\n  0xb65e, 0xdbf2, 0xb659, 0xdbf6, 0xe06c, 0xb65d, 0xdbf1, 0xdbf7,\n  0xdbf4, 0xdbfa, 0xdbf0, 0xdbf8, 0xb65c, 0xb65f, 0xdbf5, 0xb65a,\n  0xb8f2, 0xe068, 0xb8f1, 0xe06f, 0xe06e, 0xb8f8, 0xb8f9, 0xe070,\n  0xb8f3, 0xe06d, 0xb8f7, 0xe072, 0xe069, 0xe06b, 0xb8f4, 0xe067,\n  0xe06a, 0xe071, 0xb8f5, 0xe073, 0xb8f6, 0xbbb1, 0xe45b, 0xe461,\n  0xe459, 0xe462, 0xe458, 0xe45d, 0xe463, 0xe460, 0xe45f, 0xe45e,\n  0xe457, 0xe45c, 0xe45a, 0xbdf1, 0xbdee, 0xe7fb, 0xe841, 0xe843,\n  0xe840, 0xe7f8, 0xe7fa, 0xe845, 0xe842, 0xe7fc, 0xe846, 0xe7f9,\n  0xe844, 0xbdef, 0xbdf5, 0xbdf3, 0xe7f3, 0xbdf4, 0xbdf0, 0xe7f4,\n  0xe7f6, 0xe7f5, 0xe7fd, 0xe7fe, 0xbdf2, 0xbded, 0xe7f7, 0xebc6,\n  0xbfe2, 0xebbd, 0xbfe3, 0xbfe6, 0xebc2, 0xebbf, 0xbfe5, 0xebc3,\n  0xebc4, 0xebbe, 0xebc7, 0xebc0, 0xebc5, 0xbfe4, 0xbfe1, 0xebc1,\n  0xeebf, 0xc1d0, 0xc1ce, 0xc1d1, 0xc1cf, 0xeebe, 0xeebb, 0xeeba,\n  0xeebd, 0xeebc, 0xf145, 0xc2de, 0xf0fb, 0xf0fa, 0xc2d9, 0xf141,\n  0xf140, 0xf0f7, 0xf143, 0xf0fc, 0xc2dd, 0xf0f9, 0xf142, 0xf0f8,\n  0xc2da, 0xc2dc, 0xf0fd, 0xc2db, 0xf0fe, 0xf144, 0xf352, 0xc3de,\n  0xf34f, 0xf353, 0xc3db, 0xf351, 0xc3e0, 0xc3dd, 0xf350, 0xc3df,\n  0xf354, 0xc3da, 0xc4bc, 0xc4be, 0xf4d9, 0xc4bd, 0xf4d7, 0xc3dc,\n  0xf4d8, 0xc4bb, 0xc543, 0xc545, 0xf656, 0xc544, 0xf655, 0xf761,\n  0xc5ad, 0xf760, 0xc5ae, 0xf75e, 0xf75d, 0xf762, 0xf763, 0xf846,\n  0xf75f, 0xf8c6, 0xf8c3, 0xf8c4, 0xf8c5, 0xc65c, 0xf951, 0xf950,\n  0xf94f, 0xf970, 0xf9be, 0xf9ab, 0xc66e, 0xa8ad, 0xb060, 0xb8fa,\n  0xbdf6, 0xebc8, 0xc2df, 0xf355, 0xf9ac, 0xa8ae, 0xaaee, 0xad79,\n  0xad78, 0xb063, 0xd3e8, 0xb061, 0xd3e9, 0xb062, 0xd7df, 0xd7db,\n  0xb36d, 0xd7de, 0xd7dd, 0xd7dc, 0xb36e, 0xd7e0, 0xd7e1, 0xdc43,\n  0xdc41, 0xdc45, 0xdc46, 0xdc4c, 0xdc48, 0xdc4a, 0xdc42, 0xdbfc,\n  0xdc49, 0xdc4b, 0xdc44, 0xdc47, 0xdbfd, 0xb662, 0xdc40, 0xdbfe,\n  0xb661, 0xb663, 0xb8fd, 0xe075, 0xe077, 0xe076, 0xe07b, 0xb8fb,\n  0xe078, 0xe074, 0xe079, 0xe07a, 0xb8fc, 0xb8fe, 0xe07c, 0xe467,\n  0xe466, 0xe464, 0xe465, 0xbbb3, 0xbbb5, 0xbbb2, 0xbbb4, 0xe84d,\n  0xe84e, 0xe849, 0xe84a, 0xbdf8, 0xbdfd, 0xbdf7, 0xbdfe, 0xbdf9,\n  0xe84b, 0xe84c, 0xe848, 0xbe40, 0xbdfb, 0xbdfa, 0xbdfc, 0xe847,\n  0xebca, 0xbfe8, 0xebcc, 0xbfea, 0xebcf, 0xebcb, 0xebc9, 0xebce,\n  0xbfe9, 0xebcd, 0xbfe7, 0xc1d3, 0xc1d6, 0xeec1, 0xc1d4, 0xeec0,\n  0xc1d2, 0xc1d5, 0xf146, 0xf147, 0xf148, 0xc2e0, 0xf149, 0xc2e1,\n  0xc3e2, 0xf358, 0xf359, 0xf357, 0xf356, 0xf35a, 0xc3e1, 0xf4dd,\n  0xf4db, 0xf4dc, 0xf4de, 0xf4da, 0xf4df, 0xf658, 0xf659, 0xf657,\n  0xc546, 0xf764, 0xc5af, 0xf765, 0xf848, 0xf847, 0xa8af, 0xb664,\n  0xb940, 0xbbb6, 0xbfec, 0xbfeb, 0xc3e3, 0xc47c, 0xc547, 0xa8b0,\n  0xb064, 0xb941, 0xf35b, 0xcba6, 0xa8b1, 0xa8b4, 0xa8b3, 0xa8b2,\n  0xcba5, 0xcdcd, 0xcdcf, 0xaaef, 0xaaf1, 0xcdcc, 0xcdce, 0xaaf0,\n  0xcdd1, 0xcdd0, 0xcdd2, 0xd0b6, 0xd0b4, 0xad7c, 0xd0b3, 0xada3,\n  0xad7e, 0xad7b, 0xada4, 0xad7d, 0xada2, 0xada1, 0xd0b5, 0xad7a,\n  0xb06a, 0xd3eb, 0xd3f1, 0xb067, 0xb06e, 0xb069, 0xd3ee, 0xd3f0,\n  0xb06c, 0xd3ea, 0xd3ed, 0xb068, 0xb065, 0xd3ec, 0xb06b, 0xd3ef,\n  0xb06d, 0xb066, 0xd7e3, 0xd7e6, 0xb370, 0xb37a, 0xb376, 0xd7e4,\n  0xb37e, 0xb377, 0xb37c, 0xb372, 0xb36f, 0xb371, 0xb37d, 0xd7e5,\n  0xb375, 0xb378, 0xb374, 0xb379, 0xd7e7, 0xb37b, 0xb373, 0xd7e2,\n  0xdc4d, 0xb665, 0xdc4f, 0xb667, 0xb669, 0xdc4e, 0xb666, 0xb66a,\n  0xb668, 0xb947, 0xe0a3, 0xb94f, 0xe07e, 0xb950, 0xb945, 0xe0a1,\n  0xb94a, 0xe0a2, 0xb943, 0xb942, 0xb94d, 0xb94c, 0xb94b, 0xb949,\n  0xb94e, 0xe07d, 0xb944, 0xb946, 0xb948, 0xbbb8, 0xbbbb, 0xbbbf,\n  0xbbb9, 0xbbbe, 0xbbbc, 0xbbb7, 0xbbbd, 0xbbba, 0xe852, 0xbe43,\n  0xbe41, 0xe853, 0xbe44, 0xbe42, 0xe851, 0xe850, 0xbff0, 0xe84f,\n  0xbfee, 0xbfed, 0xebd0, 0xbe45, 0xbfef, 0xebd1, 0xbff2, 0xebd2,\n  0xbff1, 0xc1d8, 0xeec3, 0xc1d7, 0xc1dc, 0xc1da, 0xc1db, 0xc2e3,\n  0xc1d9, 0xeec2, 0xebd3, 0xc2e2, 0xc2e4, 0xc3e4, 0xc3e5, 0xf4e0,\n  0xc5de, 0xc5dd, 0xa8b6, 0xca55, 0xb06f, 0xca52, 0xca53, 0xca51,\n  0xca54, 0xcbaa, 0xcba7, 0xcbac, 0xcba8, 0xa8b7, 0xa8ba, 0xcba9,\n  0xa8b9, 0xcbab, 0xa8b8, 0xcdd5, 0xcdd7, 0xaaf4, 0xcdd3, 0xcdd6,\n  0xcdd4, 0xaaf2, 0xaaf5, 0xaaf3, 0xd0b8, 0xd0bc, 0xd0b9, 0xada7,\n  0xada8, 0xd0bb, 0xd0bd, 0xd0bf, 0xada5, 0xd0be, 0xada6, 0xd7ee,\n  0xd0ba, 0xd3f2, 0xd3fb, 0xd3f9, 0xd3f4, 0xd3f5, 0xd3fa, 0xd3fc,\n  0xb071, 0xd3f7, 0xd3f3, 0xb070, 0xb072, 0xd3f6, 0xd3fd, 0xd3f8,\n  0xb3a1, 0xd7f1, 0xd7e9, 0xd7ef, 0xd7f0, 0xb3a2, 0xd7e8, 0xd7ea,\n  0xd0b7, 0xd7ec, 0xd7ed, 0xd7eb, 0xb66c, 0xdc56, 0xebd4, 0xdc57,\n  0xdc54, 0xb3a3, 0xb66e, 0xdc53, 0xdc59, 0xdc58, 0xb66b, 0xdc5c,\n  0xdc52, 0xdc5b, 0xdc50, 0xdc5a, 0xdc55, 0xb66d, 0xe0aa, 0xe0a5,\n  0xe0ab, 0xe0a6, 0xe0a4, 0xe0a7, 0xb951, 0xe0a9, 0xe0a8, 0xb952,\n  0xbbc1, 0xbbc0, 0xe46e, 0xe471, 0xe469, 0xe46d, 0xbbc2, 0xe46c,\n  0xe46a, 0xe470, 0xe46b, 0xe468, 0xe46f, 0xe859, 0xbe48, 0xf14a,\n  0xe856, 0xe857, 0xe855, 0xdc51, 0xbe47, 0xe85a, 0xe854, 0xbe46,\n  0xbe49, 0xe858, 0xebd5, 0xbff3, 0xebd6, 0xebd7, 0xeec4, 0xc1dd,\n  0xf14b, 0xf14c, 0xf14d, 0xf35d, 0xf35c, 0xf4e2, 0xf4e1, 0xf65b,\n  0xf65c, 0xf65a, 0xf766, 0xc5b0, 0xa8bb, 0xadaa, 0xada9, 0xb075,\n  0xb074, 0xd440, 0xd441, 0xd3fe, 0xb073, 0xd7f5, 0xd7f6, 0xd7f2,\n  0xb3a4, 0xd7f3, 0xd7f4, 0xdc5f, 0xdc61, 0xdc5d, 0xdc60, 0xb66f,\n  0xdc5e, 0xb670, 0xdd73, 0xb955, 0xb954, 0xb953, 0xe0ac, 0xe0ad,\n  0xe473, 0xe475, 0xbbc6, 0xbbc3, 0xbbc5, 0xbbc4, 0xe474, 0xe472,\n  0xe861, 0xe85e, 0xe85f, 0xbe4d, 0xe860, 0xe85b, 0xe85c, 0xbe4a,\n  0xbe4b, 0xe85d, 0xbe4c, 0xebdb, 0xebdc, 0xebd9, 0xebda, 0xbff4,\n  0xebd8, 0xeec8, 0xeec5, 0xeec7, 0xc1e0, 0xeecb, 0xc1df, 0xeec9,\n  0xeecc, 0xeeca, 0xeec6, 0xc1de, 0xf14f, 0xf150, 0xf14e, 0xf152,\n  0xc2e5, 0xc2e6, 0xf35f, 0xc3e7, 0xf151, 0xf35e, 0xc3e6, 0xf4e5,\n  0xf4e6, 0xc4bf, 0xf4e4, 0xf4e3, 0xf65d, 0xc548, 0xf849, 0xf8c8,\n  0xf8c7, 0xc643, 0xc65d, 0xf8c9, 0xf971, 0xc66f, 0xa8bc, 0xaaf6,\n  0xb956, 0xc4c0, 0xa8bd, 0xadab, 0xb3a5, 0xb671, 0xc2e7, 0xaaf7,\n  0xd0c1, 0xd0c0, 0xd442, 0xb078, 0xb076, 0xb07a, 0xd444, 0xb079,\n  0xb077, 0xd443, 0xb3a8, 0xd7fc, 0xb3a7, 0xb3a9, 0xd842, 0xb3ab,\n  0xd7fe, 0xd840, 0xd7f7, 0xb3aa, 0xd843, 0xd7f9, 0xd7fa, 0xd7f8,\n  0xb3a6, 0xd841, 0xd7fb, 0xd7fd, 0xdc6d, 0xdc6c, 0xdc6a, 0xdc62,\n  0xdc71, 0xdc65, 0xdc6f, 0xdc76, 0xdc6e, 0xb679, 0xb675, 0xdc63,\n  0xdc69, 0xb677, 0xdc68, 0xb678, 0xb67a, 0xdc6b, 0xb672, 0xb673,\n  0xdc77, 0xdc75, 0xdc74, 0xdc66, 0xdc72, 0xb676, 0xb674, 0xdc73,\n  0xdc64, 0xdc67, 0xdc70, 0xe4ba, 0xe0b7, 0xe0b0, 0xe0c3, 0xe0cc,\n  0xe0b3, 0xb961, 0xe0c0, 0xb957, 0xb959, 0xb965, 0xe0b1, 0xb95a,\n  0xb95c, 0xb966, 0xb95b, 0xb964, 0xe0b9, 0xe0ae, 0xb962, 0xe0b8,\n  0xb95e, 0xe0ca, 0xb963, 0xe0c8, 0xe0bc, 0xe0c6, 0xb960, 0xe0af,\n  0xe0c9, 0xe0c4, 0xe0cb, 0xb958, 0xb967, 0xb95d, 0xe0b5, 0xe0bd,\n  0xe0c1, 0xe0c5, 0xb95f, 0xe0b4, 0xe0b2, 0xe0be, 0xe0bb, 0xe0ba,\n  0xe0bf, 0xe0c2, 0xe0c7, 0xe478, 0xbbc7, 0xe4a4, 0xe47a, 0xbbcc,\n  0xbbd0, 0xe4ad, 0xe4b5, 0xe4a6, 0xbbc8, 0xe4aa, 0xe0b6, 0xbbc9,\n  0xe4b1, 0xe4b6, 0xe4ae, 0xe4b0, 0xe4b9, 0xe4b2, 0xe47e, 0xe4a9,\n  0xbbd1, 0xbbcd, 0xe47c, 0xe4ab, 0xbbcb, 0xe4a5, 0xbbca, 0xe4b3,\n  0xe4a2, 0xe479, 0xbbce, 0xe4b8, 0xe47b, 0xe4af, 0xe4ac, 0xe4a7,\n  0xe477, 0xe476, 0xe4a1, 0xe4b4, 0xbbcf, 0xe4b7, 0xe47d, 0xe4a3,\n  0xbe52, 0xbe5a, 0xbe55, 0xe8a4, 0xe8a1, 0xe867, 0xbe50, 0xbe4f,\n  0xbe56, 0xe865, 0xbe54, 0xe871, 0xe863, 0xe864, 0xbe4e, 0xe8a3,\n  0xbe58, 0xe874, 0xe879, 0xe873, 0xebee, 0xe86f, 0xe877, 0xe875,\n  0xe868, 0xe862, 0xe87d, 0xbe57, 0xe87e, 0xe878, 0xe86d, 0xe86b,\n  0xe866, 0xe86e, 0xe87b, 0xe86a, 0xe87a, 0xe8a2, 0xbe53, 0xe876,\n  0xe87c, 0xe872, 0xe86c, 0xbe51, 0xe4a8, 0xe870, 0xbe59, 0xe869,\n  0xebf4, 0xbff7, 0xebf3, 0xebf0, 0xec44, 0xbffb, 0xec41, 0xebf8,\n  0xec43, 0xebe9, 0xebf6, 0xbffd, 0xebe1, 0xebdf, 0xec42, 0xec40,\n  0xebfe, 0xebed, 0xebec, 0xebe2, 0xc040, 0xebe8, 0xebf2, 0xebfd,\n  0xc043, 0xec45, 0xc1e8, 0xc045, 0xbffe, 0xebe6, 0xebef, 0xebde,\n  0xebe0, 0xbff5, 0xc042, 0xbffa, 0xebe7, 0xebf7, 0xebf1, 0xc041,\n  0xebdd, 0xc1e3, 0xebf9, 0xebfc, 0xbffc, 0xebeb, 0xc044, 0xbff9,\n  0xbff8, 0xebf5, 0xebfb, 0xbff6, 0xebe4, 0xebfa, 0xebe5, 0xebea,\n  0xeed2, 0xeed7, 0xc1e5, 0xc1e7, 0xeedd, 0xc1e1, 0xeeec, 0xeee3,\n  0xeed8, 0xeed9, 0xeee2, 0xc1ee, 0xeee1, 0xeed1, 0xeee0, 0xeed4,\n  0xeeed, 0xc1ed, 0xc1eb, 0xeed5, 0xeee8, 0xeeda, 0xeee7, 0xeee9,\n  0xeed0, 0xc1e6, 0xeeea, 0xeede, 0xc1ea, 0xeedb, 0xc1ec, 0xeee4,\n  0xc1e4, 0xeed6, 0xeee5, 0xeedf, 0xebe3, 0xeee6, 0xeed3, 0xc1e9,\n  0xeeeb, 0xc1e2, 0xeece, 0xf160, 0xf159, 0xc2e9, 0xf154, 0xf163,\n  0xf15b, 0xeedc, 0xf165, 0xf155, 0xc2e8, 0xf15f, 0xc2ea, 0xc2f2,\n  0xc2f0, 0xf161, 0xc2f1, 0xf157, 0xf158, 0xf15d, 0xf162, 0xeecd,\n  0xc2eb, 0xf16a, 0xf167, 0xf16b, 0xf15e, 0xf15a, 0xf168, 0xf36a,\n  0xf15c, 0xc2ee, 0xc2ed, 0xeecf, 0xc2ef, 0xf164, 0xf166, 0xc2ec,\n  0xf169, 0xf153, 0xf156, 0xf373, 0xf363, 0xc3eb, 0xf371, 0xf361,\n  0xc3ec, 0xf36c, 0xf368, 0xc3f1, 0xf372, 0xf362, 0xf365, 0xc3e9,\n  0xf374, 0xf36d, 0xf370, 0xc3ef, 0xc3f4, 0xc3f2, 0xf369, 0xf364,\n  0xc3ed, 0xc3ee, 0xf360, 0xc3ea, 0xc3e8, 0xc3f0, 0xf36f, 0xc3f3,\n  0xf36b, 0xf375, 0xc3f5, 0xf367, 0xf36e, 0xf4f3, 0xf542, 0xf4f5,\n  0xf4fc, 0xf366, 0xf4fa, 0xf4e9, 0xf540, 0xc4c3, 0xf4ed, 0xf4fe,\n  0xf4f4, 0xc4c2, 0xf544, 0xf4f6, 0xf4fb, 0xf4fd, 0xf4e7, 0xf541,\n  0xf4f2, 0xf4f7, 0xf4eb, 0xf4ef, 0xf543, 0xf4f9, 0xf4e8, 0xf4ec,\n  0xf4ee, 0xf4f8, 0xc4c1, 0xf4f1, 0xf4ea, 0xf4f0, 0xf661, 0xf666,\n  0xc54f, 0xf668, 0xc549, 0xf664, 0xf66a, 0xc54e, 0xc54a, 0xc54b,\n  0xf660, 0xf667, 0xc54d, 0xf665, 0xc54c, 0xf65f, 0xf663, 0xf662,\n  0xf65e, 0xf669, 0xc5b1, 0xf76d, 0xf770, 0xf76c, 0xf76e, 0xf76f,\n  0xf769, 0xf76a, 0xf767, 0xf76b, 0xf768, 0xc5b2, 0xc5b3, 0xf84b,\n  0xf84d, 0xf84c, 0xf84e, 0xc5e0, 0xf84a, 0xc5df, 0xc5e1, 0xf8cb,\n  0xf8cc, 0xc644, 0xf8ca, 0xf953, 0xf952, 0xf954, 0xc65f, 0xf955,\n  0xc65e, 0xf956, 0xf972, 0xf975, 0xf974, 0xc668, 0xf973, 0xc672,\n  0xc670, 0xc671, 0xc677, 0xf9c0, 0xf9c1, 0xf9bf, 0xf9c9, 0xaaf8,\n  0xd844, 0xdc78, 0xe8a5, 0xf376, 0xaaf9, 0xadac, 0xb07b, 0xd845,\n  0xd846, 0xb3ac, 0xb67d, 0xdc7a, 0xdc79, 0xb6a3, 0xb67c, 0xdc7b,\n  0xb67e, 0xb6a2, 0xb6a1, 0xb67b, 0xb968, 0xe0d0, 0xe0ce, 0xe0cf,\n  0xe0cd, 0xbbd2, 0xbbd5, 0xbbd7, 0xbbd6, 0xbbd3, 0xbbd4, 0xe8a7,\n  0xe8a6, 0xbe5b, 0xe8a8, 0xe8a9, 0xbe5c, 0xec4d, 0xec4b, 0xeef3,\n  0xec49, 0xec4a, 0xc046, 0xec46, 0xec4e, 0xec48, 0xec4c, 0xeeef,\n  0xeef1, 0xeef2, 0xc1f3, 0xeeee, 0xc1f2, 0xeef0, 0xc1ef, 0xc1f0,\n  0xc1f1, 0xec47, 0xc2f5, 0xf16e, 0xf16c, 0xf16d, 0xc2f3, 0xc2f6,\n  0xc2f4, 0xf377, 0xf378, 0xc3f6, 0xf545, 0xf547, 0xf546, 0xc4c4,\n  0xc550, 0xf66d, 0xf66c, 0xf66b, 0xaafa, 0xc9aa, 0xca58, 0xa6e9,\n  0xca56, 0xca59, 0xca57, 0xcbae, 0xa8c1, 0xa8c2, 0xcbb0, 0xa8bf,\n  0xcbaf, 0xcbad, 0xa8c0, 0xa8be, 0xcdd8, 0xcddb, 0xaafd, 0xcdda,\n  0xcdd9, 0xaafc, 0xaafb, 0xab40, 0xcddc, 0xaafe, 0xd0c6, 0xadae,\n  0xadaf, 0xadb0, 0xd0c7, 0xd0c3, 0xadad, 0xd0c4, 0xd0c5, 0xd0c2,\n  0xb0a4, 0xb0a1, 0xd445, 0xb0a2, 0xb0a5, 0xd446, 0xb07e, 0xb07c,\n  0xb07d, 0xb0a3, 0xb3ad, 0xd849, 0xb3b5, 0xd848, 0xd84b, 0xb3b1,\n  0xd84a, 0xb6ab, 0xb3af, 0xb3b2, 0xb3ae, 0xb3b3, 0xb3b4, 0xb3b0,\n  0xd847, 0xb6a7, 0xdc7d, 0xdca3, 0xdca2, 0xb6ac, 0xb6a8, 0xb6a9,\n  0xdc7c, 0xdc7e, 0xdca1, 0xb6a4, 0xb6a6, 0xb6aa, 0xb6a5, 0xe0d3,\n  0xe0d1, 0xe0d2, 0xb96a, 0xb96b, 0xe0d4, 0xb969, 0xbbd8, 0xbbda,\n  0xbbd9, 0xe4bb, 0xe4bc, 0xe8ab, 0xe8aa, 0xc047, 0xc048, 0xec4f,\n  0xc049, 0xeef6, 0xeef4, 0xeef5, 0xc1f4, 0xf16f, 0xc3f7, 0xc1f5,\n  0xab41, 0xb0a6, 0xd447, 0xd84c, 0xb3b6, 0xb6ad, 0xdca4, 0xdca6,\n  0xb6af, 0xb6ae, 0xb6b0, 0xb6b1, 0xdca5, 0xb96e, 0xb96f, 0xb96d,\n  0xbbdb, 0xb96c, 0xe0d5, 0xbbdc, 0xe8ac, 0xec50, 0xc04a, 0xc1f6,\n  0xf170, 0xf174, 0xc2f9, 0xf171, 0xc2fa, 0xc2f8, 0xf175, 0xc2fb,\n  0xf173, 0xf379, 0xc2f7, 0xc3f8, 0xf8cd, 0xab42, 0xb3b8, 0xb3b7,\n  0xb6b2, 0xdca8, 0xdca7, 0xb6b3, 0xe0d9, 0xb973, 0xb970, 0xe0d8,\n  0xb972, 0xe0d6, 0xb971, 0xe0d7, 0xe4bd, 0xbbdd, 0xe8af, 0xbe5d,\n  0xe8ad, 0xbe5e, 0xbe5f, 0xe8ae, 0xbe60, 0xec51, 0xc04e, 0xc04b,\n  0xc050, 0xec53, 0xc04c, 0xec52, 0xc04f, 0xc04d, 0xeef9, 0xeefb,\n  0xc1f7, 0xeefa, 0xc1f8, 0xeef8, 0xeef7, 0xf177, 0xf176, 0xc2fc,\n  0xf178, 0xf37e, 0xc3fa, 0xf37d, 0xf37a, 0xc3f9, 0xf37b, 0xf37c,\n  0xf548, 0xf549, 0xc4c5, 0xc553, 0xf66e, 0xc551, 0xc552, 0xf66f,\n  0xc5b4, 0xc5b5, 0xf771, 0xc645, 0xf8cf, 0xc647, 0xf8ce, 0xf8d0,\n  0xc646, 0xf957, 0xf9ad, 0xab43, 0xb974, 0xe4be, 0xe8b0, 0xc051,\n  0xc052, 0xab44, 0xbe61, 0xc3fb, 0xadb1, 0xc053, 0xc5e2, 0xadb2,\n  0xd84d, 0xdca9, 0xdcab, 0xdcaa, 0xe0dd, 0xe0da, 0xb975, 0xb976,\n  0xe0db, 0xe0dc, 0xe4c0, 0xe4c5, 0xbbde, 0xe4bf, 0xe4c1, 0xe4c8,\n  0xe4c3, 0xe4c7, 0xe4c4, 0xe4c2, 0xe4c6, 0xbbdf, 0xe8b3, 0xe8b1,\n  0xbe63, 0xbe62, 0xe8b2, 0xbe64, 0xec56, 0xec55, 0xc054, 0xec54,\n  0xeefc, 0xeefe, 0xef41, 0xef40, 0xc1f9, 0xeefd, 0xf1a1, 0xc2fd,\n  0xf17d, 0xf1a2, 0xc2fe, 0xf17b, 0xf17e, 0xf17c, 0xf179, 0xc340,\n  0xf17a, 0xf3a1, 0xf3a3, 0xf3a2, 0xf54a, 0xf54b, 0xf670, 0xc5b7,\n  0xc5b6, 0xf84f, 0xf850, 0xc648, 0xf8d1, 0xc669, 0xadb3, 0xb6b4,\n  0xe4ca, 0xe4c9, 0xe8b5, 0xe8b4, 0xc1fa, 0xef43, 0xef42, 0xf1a5,\n  0xf1a3, 0xf1a6, 0xf1a4, 0xc3fc, 0xf3a4, 0xf3a5, 0xf3a6, 0xf671,\n  0xf772, 0xf8d2, 0xadb4, 0xec57, 0xef44, 0xadb5, 0xbbe0, 0xec58,\n  0xc341, 0xf1a7, 0xc3fd, 0xf54c, 0xf54d, 0xc554, 0xf851, 0xadb6,\n  0xb3bb, 0xb3bc, 0xd84e, 0xb6b5, 0xb6b6, 0xdcac, 0xb6b7, 0xb97a,\n  0xb97c, 0xe0df, 0xe0e0, 0xe0de, 0xb977, 0xb978, 0xb97b, 0xb979,\n  0xe4cb, 0xbbe1, 0xbbe2, 0xe8bc, 0xbe67, 0xe8b7, 0xe8b6, 0xe8bb,\n  0xbe65, 0xc05b, 0xe8b8, 0xe8bd, 0xe8ba, 0xe8b9, 0xbe66, 0xc059,\n  0xec5a, 0xc055, 0xec5b, 0xec59, 0xc058, 0xc056, 0xc05a, 0xc057,\n  0xef45, 0xef4a, 0xef46, 0xef49, 0xc1fb, 0xedd4, 0xef48, 0xef47,\n  0xc344, 0xc342, 0xc345, 0xc343, 0xf1a8, 0xf1a9, 0xf1aa, 0xc346,\n  0xf3aa, 0xc440, 0xf3a8, 0xc441, 0xf3a7, 0xf3a9, 0xc3fe, 0xf551,\n  0xf54e, 0xf54f, 0xf550, 0xf672, 0xc556, 0xc555, 0xf774, 0xf773,\n  0xc5b8, 0xc5e3, 0xc649, 0xc660, 0xf958, 0xf9ae, 0xf9af, 0xadb7,\n  0xdcad, 0xe0e1, 0xe4cc, 0xe4cd, 0xbbe3, 0xbbe4, 0xe8be, 0xbe68,\n  0xc1fc, 0xf1ab, 0xc347, 0xf3ad, 0xc442, 0xf3ac, 0xf3ae, 0xf3ab,\n  0xf675, 0xf552, 0xf553, 0xc4c6, 0xf674, 0xf673, 0xf775, 0xf9b0,\n  0xadb8, 0xadb9, 0xb0a7, 0xd448, 0xd84f, 0xb6b8, 0xb6bb, 0xb6b9,\n  0xdcae, 0xb6bd, 0xb6ba, 0xb6bc, 0xb97e, 0xe0e2, 0xe0e3, 0xe8c0,\n  0xb97d, 0xb9a1, 0xb9a2, 0xe4cf, 0xe4ce, 0xbbe5, 0xbbe6, 0xe4d0,\n  0xe8bf, 0xbbe8, 0xbe69, 0xbbe7, 0xc05c, 0xe8c1, 0xbe6b, 0xbe6a,\n  0xe8c2, 0xe8c5, 0xe8c3, 0xe8c4, 0xbe6c, 0xc061, 0xc05f, 0xc05e,\n  0xec5d, 0xc060, 0xec5c, 0xef4b, 0xec5e, 0xc05d, 0xec5f, 0xef4e,\n  0xef4c, 0xef4d, 0xef52, 0xc34b, 0xef51, 0xef54, 0xef53, 0xef50,\n  0xef4f, 0xc1fd, 0xf1ae, 0xf1ad, 0xc34a, 0xc348, 0xc349, 0xf1ac,\n  0xf3b1, 0xc443, 0xf3b0, 0xf3af, 0xc444, 0xf558, 0xf557, 0xf555,\n  0xf554, 0xc4c8, 0xc4c7, 0xf559, 0xf776, 0xc5b9, 0xf677, 0xc557,\n  0xf676, 0xf556, 0xf777, 0xc5e4, 0xc661, 0xf959, 0xf9b1, 0xadba,\n  0xd850, 0xef55, 0xadbb, 0xe4d2, 0xe4d1, 0xec60, 0xef57, 0xef56,\n  0xc34c, 0xf3b2, 0xf3b3, 0xc4c9, 0xf9b2, 0xb0a8, 0xb6bf, 0xb6be,\n  0xe0e4, 0xe0e6, 0xb9a4, 0xe0e5, 0xb9a3, 0xb9a5, 0xe0e7, 0xe4d4,\n  0xe4d6, 0xe4d5, 0xe4d8, 0xbbe9, 0xe4d7, 0xe4d3, 0xe4d9, 0xe8cc,\n  0xe8cf, 0xe8d1, 0xe8c7, 0xe8cb, 0xe8c8, 0xbe6e, 0xbe71, 0xbe73,\n  0xe8c9, 0xe8ca, 0xbe72, 0xe8cd, 0xe8d0, 0xe8ce, 0xbe74, 0xbe70,\n  0xe8c6, 0xbe6d, 0xbe6f, 0xc063, 0xec66, 0xec64, 0xec63, 0xec69,\n  0xec68, 0xec67, 0xec62, 0xc062, 0xec61, 0xec65, 0xc064, 0xef5a,\n  0xef5e, 0xef5b, 0xef5d, 0xef5c, 0xef59, 0xef5f, 0xef62, 0xef60,\n  0xef61, 0xc240, 0xc1fe, 0xef58, 0xef63, 0xf1b3, 0xf1b6, 0xf1b8,\n  0xf1b7, 0xf1b1, 0xf1b5, 0xf1b0, 0xf1b2, 0xc34d, 0xf1af, 0xf1b4,\n  0xf3c0, 0xf3b5, 0xc445, 0xc446, 0xf3b4, 0xf3b9, 0xf3bf, 0xf3b7,\n  0xf3be, 0xf3bb, 0xf3ba, 0xf3bd, 0xf3b8, 0xf3b6, 0xf3bc, 0xf560,\n  0xf55e, 0xc4ca, 0xf55d, 0xf563, 0xf561, 0xc4cb, 0xf55c, 0xf55a,\n  0xf55b, 0xc4cd, 0xf55f, 0xc4cc, 0xf562, 0xf678, 0xf67e, 0xf679,\n  0xc55b, 0xf6a1, 0xc55a, 0xf67d, 0xf67c, 0xc559, 0xf67b, 0xc558,\n  0xf67a, 0xf77d, 0xf7a1, 0xf77e, 0xf77b, 0xc5bb, 0xf778, 0xf77c,\n  0xf7a3, 0xf7a2, 0xf779, 0xf77a, 0xc5ba, 0xf852, 0xc5e7, 0xf853,\n  0xc5e5, 0xc5e6, 0xf8d3, 0xc64a, 0xf976, 0xc66a, 0xf9b3, 0xc66b,\n  0xf9b4, 0xf9b5, 0xf9c3, 0xf9c2, 0xc67a, 0xf9cd, 0xb0a9, 0xe0e9,\n  0xe0e8, 0xbbea, 0xbbeb, 0xe4da, 0xe8d2, 0xec6c, 0xbe75, 0xc065,\n  0xec6a, 0xec6d, 0xc066, 0xef64, 0xec6b, 0xf1b9, 0xc34e, 0xf3c1,\n  0xf566, 0xf564, 0xf565, 0xf6a2, 0xc55c, 0xf7a4, 0xc5ea, 0xc5bc,\n  0xc5e8, 0xc5e9, 0xf8d4, 0xc662, 0xb0aa, 0xf1ba, 0xd449, 0xb9a6,\n  0xe4db, 0xbbec, 0xe4dc, 0xe8d4, 0xe8d3, 0xc068, 0xbe76, 0xbe77,\n  0xe8d7, 0xe8d6, 0xe8d5, 0xec6e, 0xec71, 0xec70, 0xec6f, 0xc067,\n  0xef68, 0xef66, 0xef65, 0xef67, 0xc34f, 0xf1bc, 0xf1bd, 0xc350,\n  0xf1bb, 0xf3c3, 0xf3c2, 0xf3c5, 0xc447, 0xf3c4, 0xf567, 0xf569,\n  0xf568, 0xf6a3, 0xf6a6, 0xf6a4, 0xf6a5, 0xf7a5, 0xc5bd, 0xf854,\n  0xf855, 0xf856, 0xc64b, 0xc663, 0xf9b6, 0xb0ab, 0xbe78, 0xc069,\n  0xf1be, 0xf7a6, 0xf9c4, 0xd44a, 0xc67b, 0xb0ac, 0xec72, 0xf1bf,\n  0xf3c6, 0xf6a7, 0xf7a7, 0xb0ad, 0xe4dd, 0xe4de, 0xbbed, 0xbbee,\n  0xe8d9, 0xbe7a, 0xbe79, 0xe8d8, 0xef69, 0xf1c0, 0xf1c2, 0xf1c1,\n  0xc353, 0xc352, 0xc351, 0xc55e, 0xf6a8, 0xc55d, 0xf7a9, 0xf7a8,\n  0xc64c, 0xf8d5, 0xb3bd, 0xe0ea, 0xe4e1, 0xe4df, 0xe4e0, 0xe8e2,\n  0xe8dd, 0xe8da, 0xe8e1, 0xe8e3, 0xbe7c, 0xe8e0, 0xe8dc, 0xe8db,\n  0xe8df, 0xe8de, 0xbe7b, 0xec7d, 0xec78, 0xec76, 0xeca1, 0xec77,\n  0xec73, 0xec79, 0xec74, 0xef72, 0xec75, 0xeca2, 0xec7c, 0xc06a,\n  0xec7b, 0xec7a, 0xec7e, 0xef6a, 0xef6d, 0xef6c, 0xef74, 0xef6f,\n  0xef73, 0xef71, 0xef70, 0xef6e, 0xef6b, 0xc243, 0xc242, 0xc244,\n  0xc241, 0xef75, 0xf1c8, 0xf1cb, 0xf1c9, 0xf1cd, 0xf1ce, 0xf1c6,\n  0xc358, 0xf1c7, 0xf1c5, 0xf1cc, 0xf1c4, 0xf1c3, 0xc357, 0xc355,\n  0xc354, 0xf1ca, 0xf3cf, 0xf3d5, 0xc44a, 0xf3d0, 0xf3d3, 0xf3d7,\n  0xc44b, 0xf3d2, 0xf3ca, 0xf3c9, 0xf3d6, 0xf3cd, 0xf3cb, 0xf3d4,\n  0xf3cc, 0xc449, 0xc448, 0xf3c7, 0xf3c8, 0xf3d1, 0xf3ce, 0xf56c,\n  0xf56f, 0xc356, 0xf56d, 0xf573, 0xf571, 0xf56b, 0xf576, 0xf56a,\n  0xc4cf, 0xf572, 0xf56e, 0xc4ce, 0xf575, 0xf574, 0xf6ab, 0xf6aa,\n  0xf6b1, 0xf6ad, 0xf6b0, 0xc560, 0xf6ae, 0xf6af, 0xf6a9, 0xf6ac,\n  0xc55f, 0xc5bf, 0xf7b4, 0xf7af, 0xf7b3, 0xf7b6, 0xf7b2, 0xf7ae,\n  0xc5c1, 0xf7b1, 0xf7b5, 0xc5c0, 0xf7ac, 0xf570, 0xf7b0, 0xf7ad,\n  0xf7aa, 0xf7ab, 0xc5be, 0xf85a, 0xf85c, 0xf85f, 0xf85b, 0xf860,\n  0xf859, 0xf857, 0xc5eb, 0xf85d, 0xc5ed, 0xc5ec, 0xf858, 0xf85e,\n  0xf8da, 0xc64d, 0xf8db, 0xf8d9, 0xf8d6, 0xf8d8, 0xf8d7, 0xf95a,\n  0xf95c, 0xf95b, 0xf979, 0xf978, 0xf977, 0xf97a, 0xc673, 0xc674,\n  0xf9ca, 0xf9ce, 0xb3be, 0xdcaf, 0xe0ed, 0xb9a7, 0xe0eb, 0xe0ec,\n  0xe4e2, 0xe4e3, 0xbbf1, 0xbbef, 0xe4e4, 0xbbf0, 0xe8e8, 0xe8eb,\n  0xe8e5, 0xe8ec, 0xe8e4, 0xe8e6, 0xe8e7, 0xe8ea, 0xbea1, 0xe8ef,\n  0xe8ee, 0xbe7d, 0xe8e9, 0xe8ed, 0xbe7e, 0xecac, 0xc06f, 0xeca7,\n  0xc06b, 0xeca4, 0xecaa, 0xecad, 0xc070, 0xeca9, 0xeca6, 0xecae,\n  0xeca5, 0xecab, 0xc06c, 0xeca3, 0xc06d, 0xc06e, 0xeca8, 0xefa9,\n  0xef7a, 0xef7b, 0xef7e, 0xef7c, 0xef76, 0xef79, 0xefa5, 0xef7d,\n  0xc245, 0xefa7, 0xefa4, 0xc246, 0xefa6, 0xef77, 0xefa2, 0xefa3,\n  0xefa1, 0xf1d2, 0xf1d4, 0xf1d7, 0xf1d1, 0xc359, 0xf1d9, 0xf1d0,\n  0xf1da, 0xf1d6, 0xf1d8, 0xf1dc, 0xf1d5, 0xf1dd, 0xf1d3, 0xf1cf,\n  0xc35a, 0xf1db, 0xc35b, 0xc44d, 0xef78, 0xf3f1, 0xf3e8, 0xc44f,\n  0xf3e4, 0xc450, 0xf3ed, 0xf3e7, 0xf3dd, 0xc44e, 0xf3ea, 0xf3e5,\n  0xf3e6, 0xf3d8, 0xf3df, 0xf3ee, 0xf3eb, 0xf3e3, 0xf3ef, 0xf3de,\n  0xf3d9, 0xf3ec, 0xf3db, 0xf3e9, 0xf3e0, 0xf3f0, 0xf3dc, 0xc44c,\n  0xf3da, 0xf3e1, 0xf3e2, 0xf57d, 0xf57b, 0xf5a2, 0xf5ae, 0xf5a5,\n  0xf57c, 0xf578, 0xf5a7, 0xf57e, 0xf5a3, 0xf57a, 0xf5aa, 0xf577,\n  0xf5a1, 0xf5a6, 0xf5a8, 0xf5ab, 0xf579, 0xf5af, 0xf5b0, 0xf5a9,\n  0xf5ad, 0xf5a4, 0xf6c1, 0xf6c4, 0xc561, 0xf6c3, 0xf6c8, 0xf6c6,\n  0xc562, 0xf6bd, 0xf6b3, 0xf6b2, 0xc564, 0xf6bf, 0xf6c0, 0xf6bc,\n  0xf6b4, 0xf6b9, 0xf5ac, 0xf6b5, 0xc563, 0xf6bb, 0xf6ba, 0xf6b6,\n  0xf6c2, 0xf6b7, 0xf7bb, 0xf6c5, 0xf6c7, 0xf6be, 0xf6b8, 0xf7bc,\n  0xf7be, 0xf7b8, 0xc5c2, 0xf7c5, 0xf7c3, 0xc5c3, 0xf7c2, 0xf7c1,\n  0xf7ba, 0xf7b7, 0xf7bd, 0xf7c6, 0xf7b9, 0xf7bf, 0xf869, 0xf86e,\n  0xf864, 0xf867, 0xc5ee, 0xf86b, 0xf872, 0xf7c0, 0xf865, 0xf86f,\n  0xf873, 0xf86a, 0xf863, 0xf86d, 0xf86c, 0xf871, 0xf870, 0xf7c4,\n  0xf868, 0xf862, 0xf866, 0xc64e, 0xc64f, 0xf861, 0xf8e6, 0xf8dd,\n  0xf8e5, 0xf8e2, 0xf8e3, 0xf8dc, 0xf8df, 0xf8e7, 0xf8e1, 0xf8e0,\n  0xf8de, 0xf8e4, 0xf95d, 0xf95e, 0xf960, 0xf95f, 0xf962, 0xf961,\n  0xf97c, 0xf97b, 0xf9b7, 0xf9b8, 0xf9c5, 0xc678, 0xc67c, 0xf9cf,\n  0xc67d, 0xb3bf, 0xc4d0, 0xf6c9, 0xc650, 0xc651, 0xb3c0, 0xe0ee,\n  0xb9a8, 0xe8f0, 0xecb0, 0xecb1, 0xecaf, 0xefab, 0xefaa, 0xc247,\n  0xf1df, 0xefac, 0xf1de, 0xf3f3, 0xc451, 0xc453, 0xf3f2, 0xc452,\n  0xf5b1, 0xf5b3, 0xf5b2, 0xf6ca, 0xc565, 0xc5ef, 0xf8e8, 0xf963,\n  0xf9d2, 0xb3c1, 0xe4e5, 0xbea2, 0xecb3, 0xecb2, 0xefad, 0xc454,\n  0xc4d1, 0xf7c7, 0xf9cb, 0xb3c2, 0xbbf2, 0xbea3, 0xf3f4, 0xf874,\n  0xb6c0, 0xefae, 0xc664, 0xb6c1, 0xbea4, 0xc248, 0xf875, 0xb6c2,\n  0xe8f1, 0xc072, 0xecb4, 0xecb5, 0xc071, 0xefaf, 0xc24c, 0xc24a,\n  0xc24b, 0xc249, 0xf1e0, 0xc35c, 0xf5b5, 0xf5b4, 0xf5b7, 0xf5b6,\n  0xc4d2, 0xf6cb, 0xf6cd, 0xf6cc, 0xc566, 0xf7c8, 0xf876, 0xf877,\n  0xc5f0, 0xf964, 0xf97d, 0xc675, 0xdcb0, 0xecb6, 0xefb0, 0xf3f5,\n  0xe0ef, 0xefb1, 0xf1e2, 0xf1e1, 0xf878, 0xc652, 0xf965, 0xf97e,\n  0xb9a9, 0xe8f2, 0xe8f3, 0xecb7, 0xb9aa, 0xc35d, 0xf1e3, 0xf6cf,\n  0xc567, 0xf6d0, 0xf6ce, 0xf879, 0xf8e9, 0xb9ab, 0xefb4, 0xefb3,\n  0xefb2, 0xf1e4, 0xf1e8, 0xf1e7, 0xf1e6, 0xf1e5, 0xc35e, 0xf3f6,\n  0xf5b9, 0xc4d3, 0xf5b8, 0xf6d1, 0xf7cb, 0xf7ca, 0xc5c4, 0xf7c9,\n  0xf87c, 0xf87b, 0xf87a, 0xbbf3, 0xecb8, 0xc24d, 0xf3f7, 0xf3f8,\n  0xf7cc, 0xf87d, 0xf8ea, 0xf966, 0xf9b9, 0xf9d4, 0xbbf4, 0xc24e,\n  0xf1e9, 0xf3f9, 0xf6d2, 0xf87e, 0xbea6, 0xefb5, 0xf1ea, 0xf3fa,\n  0xf3fb, 0xf3fc, 0xf5be, 0xf5ba, 0xc568, 0xf5bd, 0xf5bc, 0xc4d4,\n  0xf5bb, 0xc4d6, 0xc4d5, 0xf6d4, 0xf6d3, 0xc569, 0xc56a, 0xc5c6,\n  0xf7cd, 0xc5c5, 0xf8a3, 0xf8a4, 0xf8a2, 0xf8a1, 0xc654, 0xf8eb,\n  0xf8ec, 0xf8ed, 0xc653, 0xf967, 0xf96a, 0xf969, 0xf968, 0xf9d3,\n  0xc073, 0xc365, 0xf5bf, 0xf6d5, 0xc5c7, 0xf7ce, 0xf9d5, 0xc074,\n  0xefb6, 0xf7cf, 0xf9a1, 0xc94a, 0xddfc, 0xa14a, 0xa157, 0xa159,\n  0xa15b, 0xa15f, 0xa160, 0xa163, 0xa164, 0xa167, 0xa168, 0xa16b,\n  0xa16c, 0xa16f, 0xa170, 0xa173, 0xa174, 0xa177, 0xa178, 0xa17b,\n  0xa17c, 0xa1c6, 0xa1c7, 0xa1ca, 0xa1cb, 0xa1c8, 0xa1c9, 0xa15c,\n  0xa14d, 0xa14f, 0xa151, 0xa152, 0xa153, 0xa154, 0xa17d, 0xa17e,\n  0xa1a1, 0xa1a2, 0xa1a3, 0xa1a4, 0xa1cc, 0xa1cd, 0xa1ce, 0xa1de,\n  0xa1df, 0xa1e0, 0xa1e1, 0xa1e2, 0xa24c, 0xa24d, 0xa24e, 0xa149,\n  0xa1ad, 0xa243, 0xa248, 0xa1ae, 0xa15d, 0xa15e, 0xa1af, 0xa1cf,\n  0xa141, 0xa1d0, 0xa144, 0xa241, 0xa2af, 0xa2b0, 0xa2b1, 0xa2b2,\n  0xa2b3, 0xa2b4, 0xa2b5, 0xa2b6, 0xa2b7, 0xa2b8, 0xa147, 0xa146,\n  0xa1d5, 0xa1d7, 0xa1d6, 0xa148, 0xa249, 0xa2cf, 0xa2d0, 0xa2d1,\n  0xa2d2, 0xa2d3, 0xa2d4, 0xa2d5, 0xa2d6, 0xa2d7, 0xa2d8, 0xa2d9,\n  0xa2da, 0xa2db, 0xa2dc, 0xa2dd, 0xa2de, 0xa2df, 0xa2e0, 0xa2e1,\n  0xa2e2, 0xa2e3, 0xa2e4, 0xa2e5, 0xa2e6, 0xa2e7, 0xa2e8, 0xa242,\n  0xa1c4, 0xa2e9, 0xa2ea, 0xa2eb, 0xa2ec, 0xa2ed, 0xa2ee, 0xa2ef,\n  0xa2f0, 0xa2f1, 0xa2f2, 0xa2f3, 0xa2f4, 0xa2f5, 0xa2f6, 0xa2f7,\n  0xa2f8, 0xa2f9, 0xa2fa, 0xa2fb, 0xa2fc, 0xa2fd, 0xa2fe, 0xa340,\n  0xa341, 0xa342, 0xa343, 0xa161, 0xa155, 0xa162, 0xa14e,\n};\n\nstatic const Summary16 big5_uni2indx_page00[16] = {\n  /* 0x0000 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x00ac }, {    4, 0x0083 },\n  {    7, 0x0000 }, {    7, 0x0080 }, {    8, 0x0000 }, {    8, 0x0080 },\n};\nstatic const Summary16 big5_uni2indx_page02[38] = {\n  /* 0x0200 */\n  {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 },\n  {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 },\n  {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 },\n  {    9, 0x0e80 }, {   13, 0x0200 }, {   14, 0x0000 }, {   14, 0x0000 },\n  /* 0x0300 */\n  {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 },\n  {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 },\n  {   14, 0x0000 }, {   14, 0xfffe }, {   29, 0x03fb }, {   38, 0xfffe },\n  {   53, 0x03fb }, {   62, 0x0000 }, {   62, 0x0000 }, {   62, 0x0000 },\n  /* 0x0400 */\n  {   62, 0x0002 }, {   63, 0x1ff0 }, {   72, 0xfff8 }, {   85, 0xffff },\n  {  101, 0xffff }, {  117, 0x0002 },\n};\nstatic const Summary16 big5_uni2indx_page20[44] = {\n  /* 0x2000 */\n  {  118, 0x0000 }, {  118, 0x3318 }, {  124, 0x0064 }, {  127, 0x4824 },\n  {  131, 0x0000 }, {  131, 0x0000 }, {  131, 0x0000 }, {  131, 0x0000 },\n  {  131, 0x0000 }, {  131, 0x0000 }, {  131, 0x0000 }, {  131, 0x0000 },\n  {  131, 0x0000 }, {  131, 0x0000 }, {  131, 0x0000 }, {  131, 0x0000 },\n  /* 0x2100 */\n  {  131, 0x0228 }, {  134, 0x0000 }, {  134, 0x0000 }, {  134, 0x0000 },\n  {  134, 0x0000 }, {  134, 0x0000 }, {  134, 0x03ff }, {  144, 0x0000 },\n  {  144, 0x0000 }, {  144, 0x03cf }, {  152, 0x0000 }, {  152, 0x0000 },\n  {  152, 0x0000 }, {  152, 0x0000 }, {  152, 0x0000 }, {  152, 0x0000 },\n  /* 0x2200 */\n  {  152, 0x0000 }, {  152, 0xc400 }, {  155, 0x4e29 }, {  162, 0x1030 },\n  {  165, 0x0000 }, {  165, 0x0004 }, {  166, 0x00c3 }, {  170, 0x0000 },\n  {  170, 0x0000 }, {  170, 0x0000 }, {  170, 0x0020 }, {  171, 0x8000 },\n};\nstatic const Summary16 big5_uni2indx_page24[37] = {\n  /* 0x2400 */\n  {  172, 0x0000 }, {  172, 0x0000 }, {  172, 0x0000 }, {  172, 0x0000 },\n  {  172, 0x0000 }, {  172, 0x0000 }, {  172, 0x03ff }, {  182, 0x3ff0 },\n  {  192, 0x0000 }, {  192, 0x0000 }, {  192, 0x0000 }, {  192, 0x0000 },\n  {  192, 0x0000 }, {  192, 0x0000 }, {  192, 0x0000 }, {  192, 0x0000 },\n  /* 0x2500 */\n  {  192, 0x1005 }, {  195, 0x1111 }, {  199, 0x1010 }, {  201, 0x1010 },\n  {  203, 0x0000 }, {  203, 0x4001 }, {  205, 0xe402 }, {  210, 0x000f },\n  {  214, 0xfffe }, {  229, 0x0030 }, {  231, 0x0003 }, {  233, 0x300c },\n  {  237, 0xc8c0 }, {  242, 0x0000 }, {  242, 0x003c }, {  246, 0x0000 },\n  /* 0x2600 */\n  {  246, 0x0260 }, {  249, 0x0000 }, {  249, 0x0000 }, {  249, 0x0000 },\n  {  249, 0x0007 },\n};\nstatic const Summary16 big5_uni2indx_page30[62] = {\n  /* 0x3000 */\n  {  252, 0xff2f }, {  265, 0x6037 }, {  272, 0x03fe }, {  281, 0x0000 },\n  {  281, 0xfffe }, {  296, 0xffff }, {  312, 0xffff }, {  328, 0xffff },\n  {  344, 0xffff }, {  360, 0x600f }, {  366, 0xfffe }, {  381, 0xffff },\n  {  397, 0xffff }, {  413, 0xffff }, {  429, 0xffff }, {  445, 0x407f },\n  /* 0x3100 */\n  {  453, 0xffe0 }, {  464, 0xffff }, {  480, 0x03ff }, {  490, 0x0000 },\n  {  490, 0x0000 }, {  490, 0x0000 }, {  490, 0x0000 }, {  490, 0x0000 },\n  {  490, 0x0000 }, {  490, 0x0000 }, {  490, 0x0000 }, {  490, 0x0000 },\n  {  490, 0x0000 }, {  490, 0x0000 }, {  490, 0x0000 }, {  490, 0x0000 },\n  /* 0x3200 */\n  {  490, 0x0000 }, {  490, 0x0000 }, {  490, 0x0000 }, {  490, 0x0000 },\n  {  490, 0x0000 }, {  490, 0x0000 }, {  490, 0x0000 }, {  490, 0x0000 },\n  {  490, 0x0000 }, {  490, 0x0000 }, {  490, 0x0008 }, {  491, 0x0000 },\n  {  491, 0x0000 }, {  491, 0x0000 }, {  491, 0x0000 }, {  491, 0x0000 },\n  /* 0x3300 */\n  {  491, 0x0000 }, {  491, 0x0000 }, {  491, 0x0000 }, {  491, 0x0000 },\n  {  491, 0x0000 }, {  491, 0x0000 }, {  491, 0x0000 }, {  491, 0x0000 },\n  {  491, 0xc000 }, {  493, 0x7000 }, {  496, 0x0002 }, {  497, 0x0000 },\n  {  497, 0x4010 }, {  499, 0x0026 },\n};\nstatic const Summary16 big5_uni2indx_page4e[1307] = {\n  /* 0x4e00 */\n  {  502, 0xff8b }, {  514, 0xc373 }, {  523, 0x6840 }, {  527, 0x1b0f },\n  {  535, 0xe9ac }, {  544, 0xf34c }, {  553, 0x0200 }, {  554, 0xc008 },\n  {  557, 0x795c }, {  566, 0xca3e }, {  575, 0x7976 }, {  585, 0x0648 },\n  {  589, 0x2fdf }, {  601, 0xf7f0 }, {  612, 0x033a }, {  618, 0xa8ff },\n  /* 0x4f00 */\n  {  629, 0xef37 }, {  641, 0x233f }, {  650, 0xb004 }, {  654, 0xfd59 },\n  {  665, 0xf3ca }, {  675, 0xffff }, {  691, 0xde9f }, {  703, 0xfff9 },\n  {  717, 0xabff }, {  730, 0x7df7 }, {  743, 0xc000 }, {  745, 0x8eec },\n  {  754, 0xeebf }, {  767, 0xffdb }, {  781, 0xd003 }, {  786, 0x45fa },\n  /* 0x5000 */\n  {  795, 0xfae1 }, {  805, 0xdffe }, {  819, 0xbfef }, {  833, 0x10ab },\n  {  839, 0xffeb }, {  853, 0xfcaa }, {  863, 0xef3f }, {  876, 0x24fd },\n  {  885, 0x78ad }, {  894, 0x7f76 }, {  906, 0xf00c }, {  912, 0xedff },\n  {  926, 0xcff6 }, {  938, 0x2cfa }, {  947, 0xf7f9 }, {  960, 0xeb6b },\n  /* 0x5100 */\n  {  971, 0x1ffd }, {  983, 0x95bf }, {  994, 0x6677 }, { 1004, 0xbfbf },\n  { 1018, 0x3bfb }, { 1030, 0xfeb4 }, { 1041, 0x7bae }, { 1052, 0x11e2 },\n  { 1058, 0xa681 }, { 1064, 0x41be }, { 1072, 0x1435 }, { 1078, 0x72c3 },\n  { 1086, 0x7d70 }, { 1095, 0x7191 }, { 1102, 0x0003 }, { 1104, 0x276b },\n  /* 0x5200 */\n  { 1113, 0x57cb }, { 1123, 0x70cf }, { 1132, 0x4732 }, { 1139, 0x0def },\n  { 1149, 0x7eda }, { 1160, 0xfc74 }, { 1170, 0xfe06 }, { 1179, 0xbdb4 },\n  { 1189, 0x3f9f }, { 1201, 0x8bca }, { 1209, 0x7e49 }, { 1218, 0x5800 },\n  { 1221, 0x228f }, { 1228, 0xebec }, { 1239, 0x8a5c }, { 1246, 0xddbb },\n  /* 0x5300 */\n  { 1258, 0xef60 }, { 1267, 0xb6e7 }, { 1278, 0xa40f }, { 1285, 0xf293 },\n  { 1294, 0x37bb }, { 1305, 0x549e }, { 1313, 0xd04b }, { 1320, 0x9baf },\n  { 1331, 0xc414 }, { 1336, 0xf7d4 }, { 1347, 0x30b0 }, { 1352, 0x0a14 },\n  { 1356, 0x2f08 }, { 1362, 0x88d0 }, { 1367, 0xff7e }, { 1381, 0x192f },\n  /* 0x5400 */\n  { 1389, 0xffda }, { 1402, 0xfb07 }, { 1412, 0x7ff1 }, { 1424, 0x7beb },\n  { 1436, 0xc5ef }, { 1447, 0x0010 }, { 1448, 0x99ff }, { 1460, 0xfdff },\n  { 1475, 0x79d7 }, { 1486, 0x0567 }, { 1493, 0xffe7 }, { 1507, 0xfdcb },\n  { 1519, 0xc3ff }, { 1531, 0x4040 }, { 1533, 0x6ff7 }, { 1546, 0xbd8e },\n  /* 0x5500 */\n  { 1556, 0xdffa }, { 1569, 0x0497 }, { 1575, 0xf4c0 }, { 1582, 0x5bff },\n  { 1595, 0xed7b }, { 1607, 0xd0e7 }, { 1616, 0x047e }, { 1623, 0xf8e0 },\n  { 1631, 0xff9f }, { 1645, 0xb73e }, { 1656, 0x7dfe }, { 1669, 0x882e },\n  { 1675, 0xfffd }, { 1690, 0xbe7f }, { 1703, 0x83fe }, { 1713, 0xf6c4 },\n  /* 0x5600 */\n  { 1722, 0xf357 }, { 1733, 0xb8fd }, { 1744, 0xd680 }, { 1750, 0xef7d },\n  { 1763, 0x5767 }, { 1773, 0x4788 }, { 1779, 0xff7d }, { 1793, 0xc3df },\n  { 1804, 0xf0ff }, { 1816, 0x37a9 }, { 1825, 0x7de0 }, { 1834, 0x70fc },\n  { 1843, 0x3f6f }, { 1855, 0xec9a }, { 1864, 0x4cb3 }, { 1872, 0x8681 },\n  /* 0x5700 */\n  { 1877, 0x3f9e }, { 1888, 0xdd5c }, { 1898, 0xf70d }, { 1908, 0x4819 },\n  { 1913, 0xfea3 }, { 1924, 0x0007 }, { 1927, 0xaf56 }, { 1937, 0x38ff },\n  { 1948, 0x980d }, { 1954, 0xefb8 }, { 1965, 0x403d }, { 1971, 0xb760 },\n  { 1979, 0xd8ce }, { 1988, 0x9035 }, { 1994, 0x72bf }, { 2005, 0x3fff },\n  /* 0x5800 */\n  { 2019, 0x7ff7 }, { 2033, 0x7a11 }, { 2040, 0xf7bb }, { 2053, 0xabff },\n  { 2066, 0xff00 }, { 2074, 0x6fbe }, { 2086, 0xa93c }, { 2094, 0xfe72 },\n  { 2105, 0xcfef }, { 2118, 0xf11b }, { 2127, 0xdb6b }, { 2138, 0xf40a },\n  { 2145, 0xc3e6 }, { 2154, 0xef7e }, { 2167, 0x9b9c }, { 2176, 0xf610 },\n  /* 0x5900 */\n  { 2183, 0xf048 }, { 2189, 0x16f4 }, { 2197, 0xfeb5 }, { 2209, 0x5182 },\n  { 2214, 0xc7b1 }, { 2223, 0x15bb }, { 2232, 0x6e87 }, { 2241, 0xfbdf },\n  { 2255, 0xe43f }, { 2265, 0x63cd }, { 2274, 0xc1ff }, { 2285, 0x7e7e },\n  { 2297, 0xfdeb }, { 2310, 0x7d5f }, { 2322, 0x777b }, { 2334, 0xfcfe },\n  /* 0x5a00 */\n  { 2347, 0x960b }, { 2354, 0xdbea }, { 2365, 0x6229 }, { 2371, 0x53e8 },\n  { 2379, 0x37df }, { 2391, 0xfdef }, { 2405, 0x36f5 }, { 2415, 0xbd81 },\n  { 2423, 0xdc18 }, { 2430, 0xfcbd }, { 2442, 0xd2e4 }, { 2450, 0xffff },\n  { 2466, 0x3fd7 }, { 2478, 0xffe0 }, { 2489, 0x7f6f }, { 2502, 0xabf8 },\n  /* 0x5b00 */\n  { 2512, 0x9bae }, { 2522, 0x6ed9 }, { 2532, 0xf5fb }, { 2545, 0xf115 },\n  { 2553, 0x79a9 }, { 2562, 0xbdfb }, { 2575, 0x5a3c }, { 2583, 0xadaf },\n  { 2594, 0xdbba }, { 2605, 0x1fac }, { 2614, 0x71fc }, { 2624, 0x8379 },\n  { 2632, 0x7cf7 }, { 2644, 0xc35f }, { 2654, 0xdfff }, { 2669, 0x0567 },\n  /* 0x5c00 */\n  { 2676, 0xff9a }, { 2688, 0x8467 }, { 2695, 0x1534 }, { 2701, 0xdf8b },\n  { 2712, 0xf9f3 }, { 2724, 0x3373 }, { 2733, 0xf7bd }, { 2746, 0x5e1a },\n  { 2754, 0xbf40 }, { 2762, 0xa03f }, { 2770, 0xffff }, { 2786, 0x01eb },\n  { 2793, 0xdfc0 }, { 2802, 0xcfdd }, { 2814, 0x7500 }, { 2819, 0xabd3 },\n  /* 0x5d00 */\n  { 2829, 0xf8c3 }, { 2838, 0xeed6 }, { 2849, 0x43fd }, { 2859, 0xb7ff },\n  { 2873, 0x5eaf }, { 2884, 0x4227 }, { 2890, 0x9bac }, { 2899, 0xf686 },\n  { 2908, 0x27d7 }, { 2918, 0xf6bc }, { 2929, 0xf787 }, { 2940, 0x35b7 },\n  { 2950, 0xaacd }, { 2959, 0xe176 }, { 2968, 0x49e7 }, { 2977, 0xe29f },\n  /* 0x5e00 */\n  { 2987, 0x545c }, { 2994, 0xaff2 }, { 3005, 0x2b3f }, { 3015, 0x61d8 },\n  { 3022, 0xfc3b }, { 3033, 0xbbb8 }, { 3043, 0xffcf }, { 3057, 0x7b7d },\n  { 3069, 0xbf95 }, { 3080, 0x1ce0 }, { 3086, 0x7dfd }, { 3099, 0x43ff },\n  { 3110, 0x5ff6 }, { 3122, 0xfffe }, { 3137, 0xd3ef }, { 3149, 0xc4ce },\n  /* 0x5f00 */\n  { 3157, 0x8db6 }, { 3166, 0xadbc }, { 3176, 0x63dc }, { 3185, 0x11eb },\n  { 3193, 0xdf59 }, { 3204, 0x23d0 }, { 3210, 0xbeb4 }, { 3220, 0xf3db },\n  { 3232, 0x1fe7 }, { 3243, 0xdbc7 }, { 3254, 0xff63 }, { 3266, 0xfae4 },\n  { 3276, 0xb22b }, { 3284, 0x63f7 }, { 3295, 0xed3b }, { 3306, 0xadba },\n  /* 0x6000 */\n  { 3316, 0xfe01 }, { 3324, 0x7eff }, { 3338, 0xfff7 }, { 3353, 0x02bc },\n  { 3359, 0x32ff }, { 3370, 0xef39 }, { 3381, 0xfffc }, { 3395, 0x8005 },\n  { 3398, 0x77fb }, { 3411, 0xbcf5 }, { 3422, 0x010d }, { 3426, 0xfff7 },\n  { 3441, 0xfffb }, { 3456, 0xbf3a }, { 3467, 0x0057 }, { 3472, 0xdfff },\n  /* 0x6100 */\n  { 3487, 0xef7b }, { 3500, 0xbd7d }, { 3512, 0xdb88 }, { 3520, 0xc8d4 },\n  { 3527, 0xfff3 }, { 3541, 0xed7c }, { 3552, 0x5dee }, { 3563, 0x56ff },\n  { 3575, 0x7e0d }, { 3584, 0xac5f }, { 3594, 0xff96 }, { 3606, 0xd57f },\n  { 3618, 0x3fee }, { 3630, 0xc140 }, { 3634, 0x6ff9 }, { 3646, 0xffe7 },\n  /* 0x6200 */\n  { 3660, 0x779b }, { 3671, 0x8e77 }, { 3681, 0x6ebf }, { 3693, 0xe45d },\n  { 3702, 0x6fcf }, { 3714, 0x5f1f }, { 3725, 0xe07f }, { 3735, 0xfedf },\n  { 3749, 0xd7db }, { 3761, 0x01fe }, { 3769, 0xff00 }, { 3777, 0xfb7b },\n  { 3790, 0xffd4 }, { 3802, 0x1fdf }, { 3814, 0xf800 }, { 3819, 0xffff },\n  /* 0x6300 */\n  { 3835, 0xfb8f }, { 3847, 0x007b }, { 3853, 0xbf00 }, { 3860, 0x7f5c },\n  { 3871, 0xffff }, { 3887, 0x07f3 }, { 3896, 0xeba0 }, { 3904, 0x3de7 },\n  { 3915, 0xf7bf }, { 3929, 0xfbd7 }, { 3942, 0xffbf }, { 3957, 0x6003 },\n  { 3961, 0xfffd }, { 3976, 0xbfed }, { 3989, 0xefbb }, { 4002, 0x027f },\n  /* 0x6400 */\n  { 4010, 0xfe40 }, { 4018, 0xddfd }, { 4031, 0xfdff }, { 4046, 0xe2f9 },\n  { 4056, 0x680b }, { 4062, 0xfb1f }, { 4074, 0xfbe3 }, { 4086, 0xaffd },\n  { 4099, 0x9fa4 }, { 4108, 0xf7ed }, { 4121, 0x7a7d }, { 4132, 0xf80f },\n  { 4141, 0xeebe }, { 4153, 0x0fd5 }, { 4162, 0xbb5d }, { 4173, 0xfd9f },\n  /* 0x6500 */\n  { 4186, 0xf2db }, { 4197, 0x3bf9 }, { 4208, 0xfe7f }, { 4222, 0xebcc },\n  { 4232, 0x876a }, { 4240, 0x73fa }, { 4251, 0x95fc }, { 4261, 0x9ffc },\n  { 4273, 0x109f }, { 4280, 0xfaf7 }, { 4293, 0xddb7 }, { 4305, 0xbbcd },\n  { 4316, 0xf87e }, { 4327, 0xeccd }, { 4337, 0xf366 }, { 4347, 0x3c3f },\n  /* 0x6600 */\n  { 4357, 0xfffd }, { 4372, 0xb03f }, { 4381, 0xe9f7 }, { 4393, 0x067e },\n  { 4401, 0x96ae }, { 4410, 0xfe06 }, { 4419, 0xd576 }, { 4429, 0x5fd7 },\n  { 4441, 0x3fd1 }, { 4451, 0xa3f3 }, { 4461, 0xcf07 }, { 4470, 0x6fb7 },\n  { 4482, 0x9fd1 }, { 4492, 0x7f44 }, { 4501, 0x7b59 }, { 4511, 0xd3dd },\n  /* 0x6700 */\n  { 4522, 0xaf3b }, { 4533, 0xa9bd }, { 4543, 0x7dcf }, { 4555, 0xff3a },\n  { 4567, 0xfbe0 }, { 4577, 0xf6eb }, { 4589, 0xb401 }, { 4594, 0xffff },\n  { 4610, 0x7afa }, { 4621, 0xb7bf }, { 4634, 0xc000 }, { 4636, 0x0ffd },\n  { 4647, 0xff7f }, { 4662, 0xff1f }, { 4675, 0xfefc }, { 4688, 0x95ff },\n  /* 0x6800 */\n  { 4700, 0x0000 }, { 4700, 0xb5dc }, { 4710, 0xef63 }, { 4721, 0x3f3e },\n  { 4732, 0xfb7f }, { 4746, 0x001b }, { 4750, 0xe800 }, { 4754, 0xfbf6 },\n  { 4767, 0x9eef }, { 4779, 0xb8df }, { 4790, 0xff9f }, { 4804, 0x003f },\n  { 4810, 0x7bd0 }, { 4819, 0xf5ff }, { 4833, 0xdfdb }, { 4846, 0x3fff },\n  /* 0x6900 */\n  { 4860, 0xfdf0 }, { 4871, 0x00bf }, { 4878, 0x8420 }, { 4881, 0xbbbd },\n  { 4893, 0xdf37 }, { 4905, 0xffde }, { 4919, 0xff6d }, { 4932, 0x0ff3 },\n  { 4942, 0x604c }, { 4947, 0x5efb }, { 4959, 0xfffb }, { 4974, 0xfafb },\n  { 4987, 0xfe5e }, { 4999, 0x0219 }, { 5003, 0x79f4 }, { 5013, 0xf9de },\n  /* 0x6a00 */\n  { 5025, 0xa7f7 }, { 5037, 0xebfa }, { 5049, 0x01eb }, { 5056, 0xff34 },\n  { 5067, 0xebd3 }, { 5078, 0xef73 }, { 5090, 0xafd7 }, { 5102, 0xc040 },\n  { 5105, 0x72bb }, { 5115, 0xdcff }, { 5128, 0xf17f }, { 5140, 0x2fd8 },\n  { 5149, 0xb8ec }, { 5158, 0xfe0b }, { 5168, 0xdda3 }, { 5178, 0x1f0b },\n  /* 0x6b00 */\n  { 5186, 0x8f1d }, { 5195, 0x47cf }, { 5205, 0xb12b }, { 5213, 0xffde },\n  { 5227, 0x7fee }, { 5240, 0xda73 }, { 5250, 0x24ff }, { 5260, 0xcbc4 },\n  { 5268, 0xf75d }, { 5280, 0xcbf2 }, { 5290, 0xecfd }, { 5302, 0xb4ed },\n  { 5312, 0xbff9 }, { 5325, 0x4ddd }, { 5335, 0x99dd }, { 5345, 0xfb8d },\n  /* 0x6c00 */\n  { 5356, 0xbb7f }, { 5369, 0xaf7b }, { 5381, 0xddfb }, { 5394, 0xc959 },\n  { 5402, 0xfc4f }, { 5413, 0xfab5 }, { 5424, 0xafe3 }, { 5435, 0x6d5f },\n  { 5446, 0xffff }, { 5462, 0x3f7d }, { 5474, 0x7800 }, { 5478, 0xffdb },\n  { 5492, 0xb6ff }, { 5505, 0x7eff }, { 5519, 0xfbaf }, { 5532, 0x022f },\n  /* 0x6d00 */\n  { 5538, 0xff9b }, { 5551, 0xefc7 }, { 5563, 0xffa5 }, { 5575, 0xffff },\n  { 5591, 0x0007 }, { 5594, 0xc700 }, { 5599, 0xf7ff }, { 5614, 0xfff1 },\n  { 5627, 0x7ffd }, { 5641, 0x01bf }, { 5649, 0xdc00 }, { 5654, 0xfdbc },\n  { 5666, 0xbff5 }, { 5679, 0xffff }, { 5695, 0xff7f }, { 5710, 0x3eff },\n  /* 0x6e00 */\n  { 5723, 0x0029 }, { 5726, 0xbe00 }, { 5732, 0xf9ff }, { 5746, 0xff7f },\n  { 5761, 0x6efb }, { 5773, 0xfd7e }, { 5786, 0xcbff }, { 5799, 0x039e },\n  { 5806, 0xe300 }, { 5811, 0xfbdd }, { 5824, 0xccff }, { 5836, 0xf6df },\n  { 5849, 0xffff }, { 5865, 0x117f }, { 5874, 0xf800 }, { 5879, 0xfbf6 },\n  /* 0x6f00 */\n  { 5892, 0xe7ef }, { 5905, 0xd73c }, { 5915, 0xfeef }, { 5929, 0xdfef },\n  { 5943, 0xc00b }, { 5948, 0xedbf }, { 5961, 0xfedf }, { 5975, 0xfdcd },\n  { 5987, 0x7bf5 }, { 5999, 0x40fd }, { 6007, 0xffff }, { 6023, 0xb75f },\n  { 6035, 0xffdf }, { 6050, 0xf930 }, { 6058, 0xfbdf }, { 6072, 0xdc97 },\n  /* 0x7000 */\n  { 6082, 0xfef3 }, { 6095, 0xbff2 }, { 6107, 0x8fdf }, { 6119, 0xdfbf },\n  { 6133, 0x177f }, { 6144, 0xede6 }, { 6155, 0x0f7f }, { 6166, 0x3553 },\n  { 6174, 0x447c }, { 6181, 0x877e }, { 6191, 0xfa12 }, { 6199, 0x45bb },\n  { 6208, 0xede0 }, { 6217, 0x779e }, { 6228, 0x8017 }, { 6233, 0xbfd9 },\n  /* 0x7100 */\n  { 6245, 0x7e55 }, { 6255, 0xde89 }, { 6264, 0xc16f }, { 6273, 0x0447 },\n  { 6278, 0x7ade }, { 6289, 0xf75d }, { 6301, 0x57ff }, { 6314, 0x2905 },\n  { 6319, 0x86f7 }, { 6329, 0xfe95 }, { 6340, 0x97b3 }, { 6350, 0xf32f },\n  { 6361, 0xcfff }, { 6375, 0x9f75 }, { 6386, 0x71f7 }, { 6397, 0xfb17 },\n  /* 0x7200 */\n  { 6408, 0x34ee }, { 6417, 0xee19 }, { 6426, 0x37cc }, { 6435, 0xef61 },\n  { 6445, 0x9fd6 }, { 6456, 0xef4c }, { 6466, 0xd68f }, { 6476, 0xfbdd },\n  { 6489, 0x7b73 }, { 6500, 0x6def }, { 6512, 0xd7fe }, { 6525, 0xa431 },\n  { 6531, 0x5e7f }, { 6543, 0x97d7 }, { 6554, 0x0f5b }, { 6563, 0xffd8 },\n  /* 0x7300 */\n  { 6575, 0x9d83 }, { 6583, 0x7bce }, { 6594, 0x22ec }, { 6601, 0xdcff },\n  { 6614, 0x763d }, { 6624, 0xef87 }, { 6635, 0xdfe7 }, { 6648, 0xfded },\n  { 6661, 0x4fff }, { 6674, 0xa0fc }, { 6682, 0x3b77 }, { 6693, 0xdbfc },\n  { 6705, 0x3ded }, { 6716, 0x7fdc }, { 6728, 0x6fa9 }, { 6738, 0xf570 },\n  /* 0x7400 */\n  { 6747, 0x3ffb }, { 6760, 0x2c40 }, { 6764, 0xff7f }, { 6779, 0x847f },\n  { 6788, 0xec57 }, { 6798, 0xdeb7 }, { 6810, 0xe69c }, { 6819, 0xf22f },\n  { 6829, 0x0feb }, { 6839, 0xd5b5 }, { 6849, 0xafeb }, { 6861, 0xede7 },\n  { 6873, 0x8c2f }, { 6881, 0xfff0 }, { 6893, 0x537f }, { 6904, 0xe8f0 },\n  /* 0x7500 */\n  { 6912, 0xb99d }, { 6922, 0xb5ff }, { 6935, 0xff66 }, { 6947, 0xe78f },\n  { 6958, 0xd981 }, { 6965, 0xbe10 }, { 6972, 0x9c7c }, { 6981, 0xe3c1 },\n  { 6989, 0x9cd1 }, { 6997, 0x2733 }, { 7005, 0x0cbc }, { 7012, 0xff6d },\n  { 7025, 0xfcb7 }, { 7037, 0xefb7 }, { 7050, 0xa0df }, { 7059, 0xffff },\n  /* 0x7600 */\n  { 7075, 0xbf0b }, { 7085, 0xfe7b }, { 7098, 0xa3ff }, { 7110, 0x353f },\n  { 7120, 0x13cc }, { 7127, 0x97cd }, { 7137, 0x7637 }, { 7147, 0xfb27 },\n  { 7158, 0xcfd6 }, { 7169, 0x7e6c }, { 7179, 0xec50 }, { 7186, 0xed31 },\n  { 7195, 0x677c }, { 7205, 0xfc1c }, { 7214, 0xf6fa }, { 7226, 0x5fbf },\n  /* 0x7700 */\n  { 7239, 0x0fba }, { 7248, 0xae2f }, { 7258, 0xa3ad }, { 7267, 0x7ffe },\n  { 7281, 0xfcf0 }, { 7291, 0xde74 }, { 7301, 0xffef }, { 7316, 0xf200 },\n  { 7321, 0xfbbf }, { 7335, 0xfea2 }, { 7345, 0x3daf }, { 7356, 0xbcff },\n  { 7369, 0xf694 }, { 7378, 0x5fb9 }, { 7389, 0xf3ad }, { 7400, 0x3f8f },\n  /* 0x7800 */\n  { 7411, 0xf26c }, { 7420, 0xa01f }, { 7427, 0xffef }, { 7442, 0x01bf },\n  { 7450, 0x7728 }, { 7458, 0x7005 }, { 7463, 0xff35 }, { 7475, 0xda03 },\n  { 7482, 0xd2f9 }, { 7492, 0xc7fa }, { 7503, 0x3fbf }, { 7516, 0x5c1d },\n  { 7524, 0xff3a }, { 7536, 0xec33 }, { 7545, 0xb7af }, { 7557, 0xfe9c },\n  /* 0x7900 */\n  { 7568, 0x5236 }, { 7575, 0x7a9f }, { 7586, 0xbffa }, { 7599, 0xe722 },\n  { 7607, 0x9ff7 }, { 7620, 0xfcff }, { 7634, 0x2fbb }, { 7645, 0xb61d },\n  { 7654, 0xed06 }, { 7662, 0x1dfd }, { 7673, 0x7dd7 }, { 7685, 0xefdf },\n  { 7699, 0xeb23 }, { 7708, 0xf166 }, { 7717, 0x7ed9 }, { 7728, 0x0dc0 },\n  /* 0x7a00 */\n  { 7733, 0x3d3d }, { 7743, 0xdfbf }, { 7757, 0xc945 }, { 7764, 0xba83 },\n  { 7772, 0x7dd1 }, { 7782, 0x9dd0 }, { 7790, 0x7b87 }, { 7800, 0xcf73 },\n  { 7811, 0x9ff3 }, { 7823, 0xc3f5 }, { 7833, 0xdf0d }, { 7843, 0xc5fe },\n  { 7854, 0x0cb3 }, { 7861, 0x8302 }, { 7865, 0xe879 }, { 7874, 0xaec0 },\n  /* 0x7b00 */\n  { 7881, 0xc773 }, { 7891, 0x6f0f }, { 7901, 0xfd7d }, { 7914, 0x093f },\n  { 7922, 0xfff1 }, { 7935, 0x0157 }, { 7941, 0x62fb }, { 7951, 0x01ff },\n  { 7960, 0xfdb4 }, { 7971, 0x3bf3 }, { 7982, 0xb013 }, { 7988, 0x43b2 },\n  { 7995, 0x5ed3 }, { 8005, 0xff30 }, { 8015, 0x0fff }, { 8027, 0xeb9f },\n  /* 0x7c00 */\n  { 8039, 0xfeef }, { 8053, 0xf203 }, { 8060, 0x3fef }, { 8073, 0xfb89 },\n  { 8083, 0x37a9 }, { 8092, 0x9e99 }, { 8101, 0xdef9 }, { 8113, 0xa72c },\n  { 8121, 0x3733 }, { 8130, 0xc1f6 }, { 8139, 0x812e }, { 8145, 0xfe3e },\n  { 8157, 0x5d20 }, { 8163, 0xf2f7 }, { 8175, 0xd585 }, { 8183, 0x69d7 },\n  /* 0x7d00 */\n  { 8193, 0xffff }, { 8209, 0xffff }, { 8225, 0xdb07 }, { 8234, 0xff6f },\n  { 8248, 0xc4ff }, { 8259, 0xd97f }, { 8271, 0xefce }, { 8283, 0xbe0f },\n  { 8293, 0xf17b }, { 8304, 0xf05e }, { 8313, 0xf6cf }, { 8325, 0xffb7 },\n  { 8339, 0x5ef7 }, { 8351, 0xef84 }, { 8360, 0xd7cb }, { 8371, 0x0edf },\n  /* 0x7e00 */\n  { 8381, 0xff08 }, { 8390, 0xfcff }, { 8404, 0xee3f }, { 8416, 0xffff },\n  { 8432, 0x13ff }, { 8443, 0xd7ff }, { 8457, 0xaf0f }, { 8467, 0x7ffd },\n  { 8481, 0xbdc7 }, { 8492, 0x1ffa }, { 8503, 0x0000 }, { 8503, 0x0000 },\n  { 8503, 0x0000 }, { 8503, 0x0000 }, { 8503, 0x0000 }, { 8503, 0x0000 },\n  /* 0x7f00 */\n  { 8503, 0x0000 }, { 8503, 0x0000 }, { 8503, 0x0000 }, { 8503, 0xe740 },\n  { 8510, 0xbd38 }, { 8519, 0xf933 }, { 8529, 0x7feb }, { 8542, 0xfeed },\n  { 8555, 0x7fe8 }, { 8566, 0x7c76 }, { 8576, 0xb3f7 }, { 8588, 0xffef },\n  { 8603, 0xfeaf }, { 8616, 0xd8b7 }, { 8626, 0xff6f }, { 8640, 0xfbbf },\n  /* 0x8000 */\n  { 8654, 0xf8fb }, { 8666, 0xdbf7 }, { 8679, 0x1752 }, { 8686, 0xe2f9 },\n  { 8696, 0x85c8 }, { 8702, 0x7547 }, { 8711, 0x9090 }, { 8715, 0xe3ef },\n  { 8727, 0x9ef4 }, { 8737, 0x3f6d }, { 8748, 0xee2e }, { 8758, 0x0536 },\n  { 8764, 0xf7bc }, { 8776, 0x7ff3 }, { 8789, 0xa07b }, { 8797, 0x7f3f },\n  /* 0x8100 */\n  { 8810, 0x0567 }, { 8817, 0xeb60 }, { 8825, 0xbabe }, { 8836, 0x6601 },\n  { 8841, 0xfcd8 }, { 8851, 0x583f }, { 8860, 0xcaf7 }, { 8871, 0x87df },\n  { 8882, 0xbfcd }, { 8894, 0xffa0 }, { 8904, 0x5bcd }, { 8914, 0xfebf },\n  { 8928, 0xb6fd }, { 8940, 0xefa7 }, { 8952, 0x77ef }, { 8965, 0xdf9c },\n  /* 0x8200 */\n  { 8976, 0x3fb7 }, { 8988, 0xf877 }, { 8999, 0x9d27 }, { 9008, 0xb7fc },\n  { 9020, 0xcab5 }, { 9029, 0xdfef }, { 9043, 0xfb5a }, { 9054, 0xf1b6 },\n  { 9064, 0xec39 }, { 9073, 0xef1f }, { 9085, 0xfbbf }, { 9099, 0x7ffb },\n  { 9113, 0x000d }, { 9116, 0xdafe }, { 9128, 0xbdfb }, { 9141, 0x4e7f },\n  /* 0x8300 */\n  { 9152, 0x33ff }, { 9164, 0x5ac0 }, { 9170, 0xbff5 }, { 9183, 0x9ffe },\n  { 9196, 0xffbf }, { 9211, 0x005f }, { 9217, 0x0000 }, { 9217, 0xfdf8 },\n  { 9229, 0xffca }, { 9241, 0x6ffd }, { 9254, 0xcffd }, { 9267, 0xa001 },\n  { 9270, 0xdfff }, { 9285, 0xfbf2 }, { 9297, 0xdfbf }, { 9311, 0xff7f },\n  /* 0x8400 */\n  { 9326, 0xfeda }, { 9338, 0x080f }, { 9343, 0xba08 }, { 9349, 0xbfff },\n  { 9364, 0x7afd }, { 9376, 0xeed7 }, { 9388, 0xfbeb }, { 9401, 0x67f9 },\n  { 9412, 0xe044 }, { 9417, 0xff93 }, { 9429, 0xdf97 }, { 9441, 0x9f57 },\n  { 9452, 0xfef7 }, { 9466, 0x08df }, { 9474, 0xdf80 }, { 9482, 0xfedf },\n  /* 0x8500 */\n  { 9496, 0xffc5 }, { 9508, 0xf7fe }, { 9522, 0xfffb }, { 9537, 0x6803 },\n  { 9542, 0x67fb }, { 9554, 0x6bfa }, { 9565, 0x7fff }, { 9580, 0x5fe2 },\n  { 9590, 0xffff }, { 9606, 0xff73 }, { 9619, 0x87df }, { 9630, 0xe7fb },\n  { 9643, 0xebfd }, { 9656, 0xf7a7 }, { 9668, 0xbf7e }, { 9681, 0xefc7 },\n  /* 0x8600 */\n  { 9693, 0x1ef3 }, { 9703, 0xdf82 }, { 9712, 0x76ff }, { 9725, 0xdf7e },\n  { 9738, 0x79c9 }, { 9747, 0xda7d }, { 9758, 0xefbe }, { 9771, 0x1e9b },\n  { 9780, 0x7ce0 }, { 9788, 0x77fb }, { 9801, 0x87be }, { 9811, 0xfffb },\n  { 9826, 0x1bff }, { 9838, 0xffdb }, { 9852, 0x3f5c }, { 9862, 0x4fe0 },\n  /* 0x8700 */\n  { 9870, 0x7fff }, { 9885, 0x5f0e }, { 9894, 0x77ff }, { 9908, 0xddbf },\n  { 9921, 0xf04f }, { 9930, 0xffff }, { 9946, 0xffff }, { 9962, 0x0ff8 },\n  { 9971, 0xa3be }, { 9981, 0xfddf }, { 9995, 0xfc1c }, { 10004, 0xfffd },\n  { 10019, 0x1f7d }, { 10030, 0xfb9e }, { 10042, 0xbdff }, { 10056, 0xdedc },\n  /* 0x8800 */\n  { 10067, 0x3f6f }, { 10079, 0xbafb }, { 10091, 0xdf7f }, { 10105, 0xfbef },\n  { 10119, 0x7d1b }, { 10129, 0x2eec }, { 10138, 0xaf8e }, { 10148, 0xf2f7 },\n  { 10160, 0x7b0f }, { 10170, 0xcfee }, { 10182, 0x1d96 }, { 10190, 0x77c6 },\n  { 10200, 0x7e07 }, { 10209, 0xfff5 }, { 10223, 0xd982 }, { 10230, 0x7fdf },\n  /* 0x8900 */\n  { 10244, 0x5ee6 }, { 10254, 0xc7ff }, { 10267, 0xfeee }, { 10280, 0x79ef },\n  { 10292, 0x9a56 }, { 10300, 0xffcf }, { 10314, 0xfe5f }, { 10327, 0xde5e },\n  { 10338, 0x896e }, { 10346, 0xf9e8 }, { 10356, 0xf45e }, { 10366, 0xe6c4 },\n  { 10374, 0x0001 }, { 10375, 0xbe7c }, { 10386, 0x3b7f }, { 10398, 0xdddf },\n  /* 0x8a00 */\n  { 10411, 0xd59d }, { 10421, 0xe9ef }, { 10433, 0x34ac }, { 10440, 0xde53 },\n  { 10450, 0xf573 }, { 10461, 0x4bf7 }, { 10472, 0x7b4f }, { 10483, 0x9eff },\n  { 10496, 0xb8fe }, { 10507, 0x476e }, { 10516, 0x0dfb }, { 10526, 0xff45 },\n  { 10537, 0xabfd }, { 10549, 0xfbfe }, { 10563, 0xe9d7 }, { 10574, 0xddff },\n  /* 0x8b00 */\n  { 10588, 0xedf7 }, { 10601, 0x7fff }, { 10616, 0xddfd }, { 10629, 0x7eeb },\n  { 10641, 0xcfe7 }, { 10653, 0xb7ff }, { 10667, 0xbde9 }, { 10678, 0xef91 },\n  { 10688, 0x5d75 }, { 10698, 0xd77c }, { 10709, 0x0000 }, { 10709, 0x0000 },\n  { 10709, 0x0000 }, { 10709, 0x0000 }, { 10709, 0x0000 }, { 10709, 0x0000 },\n  /* 0x8c00 */\n  { 10709, 0x0000 }, { 10709, 0x0000 }, { 10709, 0x0000 }, { 10709, 0xfa80 },\n  { 10716, 0xffee }, { 10730, 0xb4f1 }, { 10739, 0xbf76 }, { 10751, 0x2fef },\n  { 10763, 0xb677 }, { 10774, 0x77bf }, { 10787, 0x9fbf }, { 10800, 0xfffd },\n  { 10815, 0x95bf }, { 10826, 0xf6ae }, { 10837, 0x75ff }, { 10850, 0x7f3b },\n  /* 0x8d00 */\n  { 10862, 0xa7f5 }, { 10873, 0x0af9 }, { 10881, 0x0000 }, { 10881, 0x0000 },\n  { 10881, 0x0000 }, { 10881, 0x0000 }, { 10881, 0xfbd0 }, { 10891, 0x2bdd },\n  { 10901, 0xf633 }, { 10911, 0x9a7f }, { 10922, 0xfdab }, { 10934, 0xd6fc },\n  { 10945, 0xf9e6 }, { 10956, 0xbfeb }, { 10969, 0xdfdf }, { 10983, 0xf41f },\n  /* 0x8e00 */\n  { 10993, 0xa6fd }, { 11004, 0xffff }, { 11020, 0x4aff }, { 11031, 0xf37b },\n  { 11043, 0x7fb7 }, { 11056, 0xfef9 }, { 11069, 0xb6ff }, { 11082, 0x1d5c },\n  { 11090, 0x7ff6 }, { 11103, 0xe5ff }, { 11116, 0x1f7b }, { 11127, 0x2404 },\n  { 11130, 0xbe05 }, { 11138, 0xf99e }, { 11149, 0xdbe3 }, { 11160, 0xdff2 },\n  /* 0x8f00 */\n  { 11172, 0x6fef }, { 11185, 0xfdff }, { 11200, 0xd679 }, { 11210, 0xcbfc },\n  { 11221, 0xebfd }, { 11234, 0xefff }, { 11249, 0x001f }, { 11254, 0x0000 },\n  { 11254, 0x0000 }, { 11254, 0x9800 }, { 11257, 0xe148 }, { 11263, 0x8017 },\n  { 11268, 0x6a74 }, { 11276, 0x00fe }, { 11283, 0x6d7f }, { 11295, 0xfdf1 },\n  /* 0x9000 */\n  { 11307, 0xb87f }, { 11318, 0xfef3 }, { 11331, 0xe01f }, { 11339, 0xf176 },\n  { 11349, 0xee96 }, { 11359, 0x7b3f }, { 11371, 0xeb8d }, { 11381, 0xfffd },\n  { 11396, 0xadff }, { 11409, 0xcbb3 }, { 11419, 0x84ef }, { 11428, 0xe17f },\n  { 11439, 0x4daa }, { 11447, 0xbff0 }, { 11458, 0xbf3f }, { 11471, 0xfe3f },\n  /* 0x9100 */\n  { 11484, 0xebff }, { 11498, 0xffd7 }, { 11512, 0xffdf }, { 11527, 0xcf7f },\n  { 11540, 0xfffb }, { 11555, 0x85ed }, { 11564, 0xd73f }, { 11576, 0x07bc },\n  { 11584, 0xaeff }, { 11597, 0xfe0f }, { 11608, 0xfdaf }, { 11621, 0x76bf },\n  { 11633, 0xfaef }, { 11646, 0x37bb }, { 11657, 0x7fdc }, { 11669, 0xa3ba },\n  /* 0x9200 */\n  { 11678, 0xb6ff }, { 11691, 0x56f7 }, { 11702, 0x60f8 }, { 11709, 0xe7df },\n  { 11722, 0xff61 }, { 11733, 0x4cdf }, { 11743, 0xb0fb }, { 11753, 0xff45 },\n  { 11764, 0x7ded }, { 11776, 0x3ffa }, { 11788, 0x1fff }, { 11801, 0x18fc },\n  { 11809, 0xffff }, { 11825, 0xe3af }, { 11836, 0xc7d3 }, { 11846, 0xdf83 },\n  /* 0x9300 */\n  { 11856, 0xfb57 }, { 11868, 0xef7d }, { 11881, 0xefff }, { 11896, 0x1378 },\n  { 11903, 0xfec0 }, { 11912, 0x5ff7 }, { 11925, 0x34bb }, { 11934, 0x5ee3 },\n  { 11944, 0xf70d }, { 11954, 0xeff6 }, { 11967, 0xd7fe }, { 11980, 0x00bf },\n  { 11987, 0xf59d }, { 11998, 0xf7f7 }, { 12012, 0x51de }, { 12021, 0xffe0 },\n  /* 0x9400 */\n  { 12032, 0xfec9 }, { 12043, 0x037f }, { 12052, 0x5f01 }, { 12059, 0xbfef },\n  { 12073, 0x9ff1 }, { 12084, 0x60a7 }, { 12091, 0xef1d }, { 12102, 0xf1ff },\n  { 12115, 0x000f }, { 12119, 0x0000 }, { 12119, 0x0000 }, { 12119, 0x0000 },\n  { 12119, 0x0000 }, { 12119, 0x0000 }, { 12119, 0x0000 }, { 12119, 0x0000 },\n  /* 0x9500 */\n  { 12119, 0x0000 }, { 12119, 0x0000 }, { 12119, 0x0000 }, { 12119, 0x0000 },\n  { 12119, 0x0000 }, { 12119, 0x0000 }, { 12119, 0x0000 }, { 12119, 0x3c80 },\n  { 12124, 0xfb4d }, { 12135, 0xd91f }, { 12145, 0x7b3a }, { 12155, 0xfee3 },\n  { 12167, 0x3fe9 }, { 12178, 0xdc7f }, { 12190, 0x003f }, { 12196, 0x0000 },\n  /* 0x9600 */\n  { 12196, 0x0000 }, { 12196, 0x5000 }, { 12198, 0xf51f }, { 12209, 0xbe07 },\n  { 12218, 0xfc1d }, { 12228, 0xf91b }, { 12238, 0xbc1e }, { 12247, 0x71ff },\n  { 12259, 0x6ff9 }, { 12271, 0x5bbe }, { 12282, 0x5796 }, { 12291, 0x9b1b },\n  { 12300, 0x7fff }, { 12315, 0xfffc }, { 12329, 0x872e }, { 12337, 0xafe7 },\n  /* 0x9700 */\n  { 12349, 0xebf5 }, { 12361, 0xf34f }, { 12372, 0xdffd }, { 12386, 0xe725 },\n  { 12395, 0x0bdc }, { 12403, 0x5d44 }, { 12410, 0x5747 }, { 12419, 0xfddd },\n  { 12432, 0xed3f }, { 12444, 0x7790 }, { 12452, 0x7d7f }, { 12465, 0x8ac8 },\n  { 12471, 0xfafa }, { 12483, 0xf3f9 }, { 12495, 0x202a }, { 12499, 0xef4b },\n  /* 0x9800 */\n  { 12510, 0xf5ff }, { 12524, 0x79cf }, { 12535, 0xabd3 }, { 12545, 0x0ba5 },\n  { 12552, 0xf77a }, { 12564, 0xfb8f }, { 12576, 0x8ebd }, { 12586, 0x001f },\n  { 12591, 0x0000 }, { 12591, 0x0000 }, { 12591, 0xf300 }, { 12597, 0xfd4e },\n  { 12608, 0x1a57 }, { 12616, 0x8800 }, { 12618, 0xaeac }, { 12627, 0x7654 },\n  /* 0x9900 */\n  { 12635, 0x17ad }, { 12644, 0xcdff }, { 12657, 0xffb2 }, { 12669, 0xf42f },\n  { 12679, 0x5baa }, { 12688, 0xdbff }, { 12702, 0x0002 }, { 12703, 0x0000 },\n  { 12703, 0x0000 }, { 12703, 0x73c0 }, { 12710, 0xf9ea }, { 12721, 0x2e3f },\n  { 12731, 0xfa8e }, { 12741, 0xbbff }, { 12755, 0x76bc }, { 12765, 0xffd3 },\n  /* 0x9a00 */\n  { 12778, 0xeefe }, { 12791, 0x7e72 }, { 12801, 0x7ebd }, { 12813, 0xe7f7 },\n  { 12826, 0xf77f }, { 12840, 0xcefd }, { 12852, 0x0ff5 }, { 12862, 0x0000 },\n  { 12862, 0x0000 }, { 12862, 0x0000 }, { 12862, 0xa900 }, { 12866, 0xdb9b },\n  { 12877, 0xa4c7 }, { 12885, 0x917f }, { 12895, 0xf8ca }, { 12904, 0x7ece },\n  /* 0x9b00 */\n  { 12915, 0x7d7a }, { 12926, 0xc7e7 }, { 12937, 0xcbbd }, { 12948, 0xdcae },\n  { 12958, 0xfd7e }, { 12971, 0x8f76 }, { 12981, 0x91d3 }, { 12989, 0x7cf3 },\n  { 13000, 0x01e5 }, { 13006, 0x4c2f }, { 13014, 0xed77 }, { 13026, 0xa360 },\n  { 13032, 0x07db }, { 13041, 0x5ef8 }, { 13051, 0x1df7 }, { 13062, 0x2181 },\n  /* 0x9c00 */\n  { 13066, 0x6be0 }, { 13074, 0x309c }, { 13080, 0x3b3a }, { 13089, 0xfade },\n  { 13101, 0x7f53 }, { 13112, 0xc3f5 }, { 13122, 0x61cd }, { 13130, 0x07ba },\n  { 13138, 0x0000 }, { 13138, 0x0000 }, { 13138, 0x0000 }, { 13138, 0x0000 },\n  { 13138, 0x0000 }, { 13138, 0x0000 }, { 13138, 0x26e0 }, { 13144, 0xbefe },\n  /* 0x9d00 */\n  { 13157, 0x03f9 }, { 13165, 0xebb5 }, { 13176, 0xe36d }, { 13186, 0xe9cb },\n  { 13196, 0x9c2f }, { 13205, 0xbfde }, { 13218, 0x9f83 }, { 13227, 0xabbf },\n  { 13239, 0x1ff7 }, { 13251, 0xffd5 }, { 13264, 0xb7df }, { 13277, 0xdffe },\n  { 13291, 0xfdae }, { 13303, 0xffef }, { 13318, 0xfb7e }, { 13331, 0xeffd },\n  /* 0x9e00 */\n  { 13345, 0xaaff }, { 13357, 0x6ebf }, { 13369, 0x0000 }, { 13369, 0x0000 },\n  { 13369, 0x0000 }, { 13369, 0x0000 }, { 13369, 0x0000 }, { 13369, 0xb620 },\n  { 13375, 0x7fcd }, { 13387, 0xbe9e }, { 13398, 0x62b3 }, { 13406, 0x58f1 },\n  { 13414, 0xf10d }, { 13422, 0xfd7b }, { 13435, 0xe9f1 }, { 13445, 0xbefd },\n  /* 0x9f00 */\n  { 13458, 0xc6c3 }, { 13466, 0x5f6d }, { 13477, 0xff3d }, { 13490, 0x69ff },\n  { 13502, 0xffcf }, { 13516, 0xfbf4 }, { 13528, 0xdcfb }, { 13540, 0x4ff7 },\n  { 13552, 0x2000 }, { 13553, 0x1137 }, { 13560, 0x0015 },\n};\nstatic const Summary16 big5_uni2indx_pagefa[1] = {\n  /* 0xfa00 */\n  { 13563, 0x3000 },\n};\nstatic const Summary16 big5_uni2indx_pagefe[23] = {\n  /* 0xfe00 */\n  { 13565, 0x0000 }, { 13565, 0x0000 }, { 13565, 0x0000 }, { 13565, 0xfffb },\n  { 13580, 0xfe1f }, { 13592, 0xfef5 }, { 13605, 0x0e7f }, { 13615, 0x0000 },\n  { 13615, 0x0000 }, { 13615, 0x0000 }, { 13615, 0x0000 }, { 13615, 0x0000 },\n  { 13615, 0x0000 }, { 13615, 0x0000 }, { 13615, 0x0000 }, { 13615, 0x0000 },\n  /* 0xff00 */\n  { 13615, 0xff7a }, { 13628, 0xffff }, { 13644, 0xffff }, { 13660, 0x97ff },\n  { 13673, 0xfffe }, { 13688, 0x3fff }, { 13702, 0x0010 },\n};\n\nstatic int\nbig5_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x0000 && wc < 0x0100)\n      summary = &big5_uni2indx_page00[(wc>>4)];\n    else if (wc >= 0x0200 && wc < 0x0460)\n      summary = &big5_uni2indx_page02[(wc>>4)-0x020];\n    else if (wc >= 0x2000 && wc < 0x22c0)\n      summary = &big5_uni2indx_page20[(wc>>4)-0x200];\n    else if (wc >= 0x2400 && wc < 0x2650)\n      summary = &big5_uni2indx_page24[(wc>>4)-0x240];\n    else if (wc >= 0x3000 && wc < 0x33e0)\n      summary = &big5_uni2indx_page30[(wc>>4)-0x300];\n    else if (wc >= 0x4e00 && wc < 0x9fb0)\n      summary = &big5_uni2indx_page4e[(wc>>4)-0x4e0];\n    else if (wc >= 0xfa00 && wc < 0xfa10)\n      summary = &big5_uni2indx_pagefa[(wc>>4)-0xfa0];\n    else if (wc >= 0xfe00 && wc < 0xff70)\n      summary = &big5_uni2indx_pagefe[(wc>>4)-0xfe0];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = big5_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/big5_2003.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2005, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * BIG5-2003\n */\n\n/*\n * BIG5-2003 is a slightly extended and slightly modified version of BIG5.\n * It is actually nearer to Microsoft CP950 than to BIG5. The differences\n * between EASTASIA/OTHER/BIG5.TXT found on ftp.unicode.org and BIG5-2003.TXT\n * are as follows:\n *\n * 1. Some characters in the symbols area (0xA140..0xA2CE) are defined\n *    differently:\n *\n *     code   BIG5.TXT                       BIG5-2003.TXT\n *    0xA145  0x2022 # BULLET                0x2027 # HYPHENATION POINT\n *    0xA14E  0xFF64 # HALFWIDTH IDEOGRAPHIC COMMA\n *                                           0xFE51 # SMALL IDEOGRAPHIC COMMA\n *    0xA156  0x2013 # EN DASH               0x2015 # HORIZONTAL BAR\n *    0xA15A    ---                          0x2574 # BOX DRAWINGS LIGHT LEFT\n *    0xA1C3    ---                          0xFFE3 # FULLWIDTH MACRON\n *    0xA1C5    ---                          0x02CD # MODIFIER LETTER LOW MACRON\n *    0xA1E3  0x223C # TILDE OPERATOR        0xFF5E # FULLWIDTH TILDE\n *    0xA1F2  0x2641 # EARTH                 0x2295 # CIRCLED PLUS\n *    0xA1F3  0x2609 # SUN                   0x2299 # CIRCLED DOT OPERATOR\n *    0xA1FE    ---                          0xFF0F # FULLWIDTH SOLIDUS\n *    0xA240    ---                          0xFF3C # FULLWIDTH REVERSE SOLIDUS\n *    0xA241  0xFF0F # FULLWIDTH SOLIDUS     0x2215 # DIVISION SLASH\n *    0xA242  0xFF3C # FULLWIDTH REVERSE SOLIDUS\n *                                           0xFE68 # SMALL REVERSE SOLIDUS\n *    0xA244  0x00A5 # YEN SIGN              0xFFE5 # FULLWIDTH YEN SIGN\n *    0xA246  0x00A2 # CENT SIGN             0xFFE0 # FULLWIDTH CENT SIGN\n *    0xA247  0x00A3 # POUND SIGN            0xFFE1 # FULLWIDTH POUND SIGN\n *    0xA2A4  0x2550 # BOX DRAWINGS DOUBLE HORIZONTAL\n *                                           0x2501 # BOX DRAWINGS HEAVY HORIZONTAL\n *    0xA2A5  0x255E # BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE\n *                                           0x251D # BOX DRAWINGS VERTICAL LIGHT AND RIGHT HEAVY\n *    0xA2A6  0x256A # BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE\n *                                           0x253F # BOX DRAWINGS VERTICAL LIGHT AND HORIZONTAL HEAVY\n *    0xA2A7  0x2561 # BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE\n *                                           0x2525 # BOX DRAWINGS VERTICAL LIGHT AND LEFT HEAVY\n *    0xA2CC    ---                          0x3038 # HANGZHOU NUMERAL TEN\n *    0xA2CD  0x5344                         0x3039 # HANGZHOU NUMERAL TWENTY\n *    0xA2CE    ---                          0x303A # HANGZHOU NUMERAL THIRTY\n *\n * 2. A control symbols area is added:\n *\n *         code\n *    0xA3C0..0xA3E0  U+2400..U+2421\n *\n * 3. The Euro sign is added:\n *\n *     code\n *    0xA3E1  0x20AC # EURO SIGN\n *\n * 4. Some characters in the main area are defined differently:\n *\n *     code   BIG5.TXT                       BIG5-2003.TXT\n *    0xC255  0x5F5D                         0x5F5E\n *\n * 5. The area 0xC6A1..0xC7FE is organized differently:\n *\n *         code\n *    0xC6A1..0xC6BE  numerals (was in BIG5.TXT at 0xC7E9..0xC7FC)\n *    0xC6BF..0xC6D7  radicals\n *    0xC6D8..0xC6E6  rarely used symbols\n *    0xC6E7..0xC77A  hiragana (U+3041..U+3093, was in BIG5.TXT at 0xC6A5..0xC6F7)\n *    0xC77B..0xC7F2  katakana (U+30A1..U+30F6, was in BIG5.TXT at 0xC6F8..0xC7B0)\n *\n * 6. Some characters are added at 0xF9D6..0xF9DC.\n *\n * 7. Box drawing characters are added at 0xF9DD..0xF9FE.\n *\n *    Note: 4 of these characters are mapped in a non-inversible way, because\n *    Unicode does not yet include the corresponding characters:\n *\n *     code                                           Unicode approximation\n *    0xF9FA  BOX DRAWINGS DOUBLE ARC DOWN AND RIGHT  0x2554\n *    0xF9FB  BOX DRAWINGS DOUBLE ARC DOWN AND LEFT   0x2557\n *    0xF9FC  BOX DRAWINGS DOUBLE ARC UP AND RIGHT    0x255A\n *    0xF9FD  BOX DRAWINGS DOUBLE ARC UP AND LEFT     0x255D\n *\n * 8. Private area mappings are added:\n *\n *              code                 Unicode\n *    0x{81..8D}{40..7E,A1..FE}  U+EEB8..U+F6B0\n *    0x{8E..A0}{40..7E,A1..FE}  U+E311..U+EEB7\n *    0x{FA..FE}{40..7E,A1..FE}  U+E000..U+E310\n *\n *    These mappings are not contained in the BSMI Big5-2003 standard. However,\n *    they were contained in a draft of it.\n */\n\nstatic const unsigned short big5_2003_2uni_pagea1[314] = {\n  /* 0xa1 */\n  0x3000, 0xff0c, 0x3001, 0x3002, 0xff0e, 0x2027, 0xff1b, 0xff1a,\n  0xff1f, 0xff01, 0xfe30, 0x2026, 0x2025, 0xfe50, 0xfe51, 0xfe52,\n  0x00b7, 0xfe54, 0xfe55, 0xfe56, 0xfe57, 0xff5c, 0x2015, 0xfe31,\n  0x2014, 0xfe33, 0x2574, 0xfe34, 0xfe4f, 0xff08, 0xff09, 0xfe35,\n  0xfe36, 0xff5b, 0xff5d, 0xfe37, 0xfe38, 0x3014, 0x3015, 0xfe39,\n  0xfe3a, 0x3010, 0x3011, 0xfe3b, 0xfe3c, 0x300a, 0x300b, 0xfe3d,\n  0xfe3e, 0x3008, 0x3009, 0xfe3f, 0xfe40, 0x300c, 0x300d, 0xfe41,\n  0xfe42, 0x300e, 0x300f, 0xfe43, 0xfe44, 0xfe59, 0xfe5a, 0xfe5b,\n  0xfe5c, 0xfe5d, 0xfe5e, 0x2018, 0x2019, 0x201c, 0x201d, 0x301d,\n  0x301e, 0x2035, 0x2032, 0xff03, 0xff06, 0xff0a, 0x203b, 0x00a7,\n  0x3003, 0x25cb, 0x25cf, 0x25b3, 0x25b2, 0x25ce, 0x2606, 0x2605,\n  0x25c7, 0x25c6, 0x25a1, 0x25a0, 0x25bd, 0x25bc, 0x32a3, 0x2105,\n  0x203e, 0xffe3, 0xff3f, 0x02cd, 0xfe49, 0xfe4a, 0xfe4d, 0xfe4e,\n  0xfe4b, 0xfe4c, 0xfe5f, 0xfe60, 0xfe61, 0xff0b, 0xff0d, 0x00d7,\n  0x00f7, 0x00b1, 0x221a, 0xff1c, 0xff1e, 0xff1d, 0x2266, 0x2267,\n  0x2260, 0x221e, 0x2252, 0x2261, 0xfe62, 0xfe63, 0xfe64, 0xfe65,\n  0xfe66, 0xff5e, 0x2229, 0x222a, 0x22a5, 0x2220, 0x221f, 0x22bf,\n  0x33d2, 0x33d1, 0x222b, 0x222e, 0x2235, 0x2234, 0x2640, 0x2642,\n  0x2295, 0x2299, 0x2191, 0x2193, 0x2190, 0x2192, 0x2196, 0x2197,\n  0x2199, 0x2198, 0x2225, 0x2223, 0xff0f,\n  /* 0xa2 */\n  0xff3c, 0x2215, 0xfe68, 0xff04, 0xffe5, 0x3012, 0xffe0, 0xffe1,\n  0xff05, 0xff20, 0x2103, 0x2109, 0xfe69, 0xfe6a, 0xfe6b, 0x33d5,\n  0x339c, 0x339d, 0x339e, 0x33ce, 0x33a1, 0x338e, 0x338f, 0x33c4,\n  0x00b0, 0x5159, 0x515b, 0x515e, 0x515d, 0x5161, 0x5163, 0x55e7,\n  0x74e9, 0x7cce, 0x2581, 0x2582, 0x2583, 0x2584, 0x2585, 0x2586,\n  0x2587, 0x2588, 0x258f, 0x258e, 0x258d, 0x258c, 0x258b, 0x258a,\n  0x2589, 0x253c, 0x2534, 0x252c, 0x2524, 0x251c, 0x2594, 0x2500,\n  0x2502, 0x2595, 0x250c, 0x2510, 0x2514, 0x2518, 0x256d, 0x256e,\n  0x2570, 0x256f, 0x2501, 0x251d, 0x253f, 0x2525, 0x25e2, 0x25e3,\n  0x25e5, 0x25e4, 0x2571, 0x2572, 0x2573, 0xff10, 0xff11, 0xff12,\n  0xff13, 0xff14, 0xff15, 0xff16, 0xff17, 0xff18, 0xff19, 0x2160,\n  0x2161, 0x2162, 0x2163, 0x2164, 0x2165, 0x2166, 0x2167, 0x2168,\n  0x2169, 0x3021, 0x3022, 0x3023, 0x3024, 0x3025, 0x3026, 0x3027,\n  0x3028, 0x3029, 0x3038, 0x3039, 0x303a, 0xff21, 0xff22, 0xff23,\n  0xff24, 0xff25, 0xff26, 0xff27, 0xff28, 0xff29, 0xff2a, 0xff2b,\n  0xff2c, 0xff2d, 0xff2e, 0xff2f, 0xff30, 0xff31, 0xff32, 0xff33,\n  0xff34, 0xff35, 0xff36, 0xff37, 0xff38, 0xff39, 0xff3a, 0xff41,\n  0xff42, 0xff43, 0xff44, 0xff45, 0xff46, 0xff47, 0xff48, 0xff49,\n  0xff4a, 0xff4b, 0xff4c, 0xff4d, 0xff4e, 0xff4f, 0xff50, 0xff51,\n  0xff52, 0xff53, 0xff54, 0xff55, 0xff56,\n};\n\nstatic const unsigned short big5_2003_2uni_pagec6[70] = {\n  /* 0xc6a1 */\n  0x2460, 0x2461, 0x2462, 0x2463, 0x2464, 0x2465, 0x2466, 0x2467,\n  0x2468, 0x2469, 0x2474, 0x2475, 0x2476, 0x2477, 0x2478, 0x2479,\n  0x247a, 0x247b, 0x247c, 0x247d, 0x2170, 0x2171, 0x2172, 0x2173,\n  0x2174, 0x2175, 0x2176, 0x2177, 0x2178, 0x2179, 0x2f02, 0x2f03,\n  0x2f05, 0x2f07, 0x2f0c, 0x2f0d, 0x2f0e, 0x2f13, 0x2f16, 0x2f19,\n  0x2f1b, 0x2f22, 0x2f27, 0x2f2e, 0x2f33, 0x2f34, 0x2f35, 0x2f39,\n  0x2f3a, 0x2f41, 0x2f46, 0x2f67, 0x2f68, 0x2fa1, 0x2faa, 0x00a8,\n  0xff3e, 0x30fd, 0x30fe, 0x309d, 0x309e, 0xfffd, 0xfffd, 0x3005,\n  0x3006, 0x3007, 0x30fc, 0xff3b, 0xff3d, 0x273d,\n};\n\nstatic const unsigned short big5_2003_2uni_pagef9[41] = {\n  /* 0xf9d6 */\n  0x7881, 0x92b9, 0x88cf, 0x58bb, 0x6052, 0x7ca7, 0x5afa,\n  /* 0xf9dd */\n  0x2554, 0x2566, 0x2557, 0x2560, 0x256c, 0x2563, 0x255a, 0x2569,\n  0x255d, 0x2552, 0x2564, 0x2555, 0x255e, 0x256a, 0x2561, 0x2558,\n  0x2567, 0x255b, 0x2553, 0x2565, 0x2556, 0x255f, 0x256b, 0x2562,\n  0x2559, 0x2568, 0x255c, 0x2551, 0x2550,\n  0x2554, 0x2557, 0x255a, 0x255d, /* not invertible */\n  0x2593,\n};\n\nstatic int\nbig5_2003_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  /* Code set 0 (ASCII) */\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  /* Code set 1 (BIG5 extended) */\n  if (c >= 0x81 && c < 0xff) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n        if (c >= 0xa1) {\n          if (c < 0xa3) {\n            unsigned int i = 157 * (c - 0xa1) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n            unsigned short wc = big5_2003_2uni_pagea1[i];\n            if (wc != 0xfffd) {\n              *pwc = (ucs4_t) wc;\n              return 2;\n            }\n          }\n          if (!((c == 0xc6 && c2 >= 0xa1) || c == 0xc7)) {\n            if (!(c == 0xc2 && c2 == 0x55)) {\n              int ret = big5_mbtowc(conv,pwc,s,2);\n              if (ret != RET_ILSEQ)\n                return ret;\n              if (c == 0xa3) {\n                if (c2 >= 0xc0 && c2 <= 0xe1) {\n                  *pwc = (c2 == 0xe1 ? 0x20ac : c2 == 0xe0 ? 0x2421 : 0x2340 + c2);\n                  return 2;\n                }\n              } else if (c == 0xf9) {\n                if (c2 >= 0xd6) {\n                  *pwc = big5_2003_2uni_pagef9[c2-0xd6];\n                  return 2;\n                }\n              } else if (c >= 0xfa) {\n                *pwc = 0xe000 + 157 * (c - 0xfa) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n                return 2;\n              }\n            } else {\n              /* c == 0xc2 && c2 == 0x55. */\n              *pwc = 0x5f5e;\n              return 2;\n            }\n          } else {\n            /* (c == 0xc6 && c2 >= 0xa1) || c == 0xc7. */\n            unsigned int i = 157 * (c - 0xc6) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n            if (i < 133) {\n              /* 63 <= i < 133. */\n              unsigned short wc = big5_2003_2uni_pagec6[i-63];\n              if (wc != 0xfffd) {\n                *pwc = (ucs4_t) wc;\n                return 2;\n              }\n            } else if (i < 216) {\n              /* 133 <= i < 216. Hiragana. */\n              *pwc = 0x3041 - 133 + i;\n              return 2;\n            } else if (i < 302) {\n              /* 216 <= i < 302. Katakana. */\n              *pwc = 0x30a1 - 216 + i;\n              return 2;\n            }\n          }\n        } else {\n          /* 0x81 <= c < 0xa1. */\n          *pwc = (c >= 0x8e ? 0xdb18 : 0xeeb8) + 157 * (c - 0x81)\n                 + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n          return 2;\n        }\n      }\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char big5_2003_2charset_page25[29] = {\n  /* 0x2550 */\n  0xf9, 0xf8, 0xe6, 0xef, 0xdd, 0xe8, 0xf1, 0xdf,\n  0xec, 0xf5, 0xe3, 0xee, 0xf7, 0xe5, 0xe9, 0xf2,\n  0xe0, 0xeb, 0xf4, 0xe2, 0xe7, 0xf0, 0xde, 0xed,\n  0xf6, 0xe4, 0xea, 0xf3, 0xe1,\n};\n\nstatic int\nbig5_2003_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Code set 0 (ASCII) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 1 (BIG5 extended) */\n  switch (wc >> 8) {\n    case 0x00:\n      if (wc == 0x00a8) { buf[0] = 0xc6; buf[1] = 0xd8; ret = 2; break; }\n      if (wc == 0x00a2 || wc == 0x00a3 || wc == 0x00a5)\n        return RET_ILUNI;\n      break;\n    case 0x02:\n      if (wc == 0x02cd) { buf[0] = 0xa1; buf[1] = 0xc5; ret = 2; break; }\n      break;\n    case 0x04:\n      return RET_ILUNI;\n    case 0x20:\n      if (wc == 0x2015) { buf[0] = 0xa1; buf[1] = 0x56; ret = 2; break; }\n      if (wc == 0x2027) { buf[0] = 0xa1; buf[1] = 0x45; ret = 2; break; }\n      if (wc == 0x20ac) { buf[0] = 0xa3; buf[1] = 0xe1; ret = 2; break; }\n      if (wc == 0x2013 || wc == 0x2022)\n        return RET_ILUNI;\n      break;\n    case 0x21:\n      if (wc >= 0x2170 && wc <= 0x2179) {\n        buf[0] = 0xc6; buf[1] = wc - 0x20bb; ret = 2;\n        break;\n      }\n      break;\n    case 0x22:\n      if (wc == 0x2215) { buf[0] = 0xa2; buf[1] = 0x41; ret = 2; break; }\n      if (wc == 0x2295) { buf[0] = 0xa1; buf[1] = 0xf2; ret = 2; break; }\n      if (wc == 0x2299) { buf[0] = 0xa1; buf[1] = 0xf3; ret = 2; break; }\n      if (wc == 0x223c)\n        return RET_ILUNI;\n      break;\n    case 0x24:\n      if (wc <= 0x241f) { buf[0] = 0xa3; buf[1] = wc - 0x2340; ret = 2; break; }\n      if (wc == 0x2421) { buf[0] = 0xa3; buf[1] = 0xe0; ret = 2; break; }\n      if (wc >= 0x2460 && wc <= 0x2469) {\n        buf[0] = 0xc6; buf[1] = wc - 0x23bf; ret = 2;\n        break;\n      }\n      if (wc >= 0x2474 && wc <= 0x247d) {\n        buf[0] = 0xc6; buf[1] = wc - 0x23c9; ret = 2;\n        break;\n      }\n      break;\n    case 0x25:\n      if (wc == 0x2501) { buf[0] = 0xa2; buf[1] = 0xa4; ret = 2; break; }\n      if (wc == 0x251d) { buf[0] = 0xa2; buf[1] = 0xa5; ret = 2; break; }\n      if (wc == 0x2525) { buf[0] = 0xa2; buf[1] = 0xa7; ret = 2; break; }\n      if (wc == 0x253f) { buf[0] = 0xa2; buf[1] = 0xa6; ret = 2; break; }\n      if (wc >= 0x2550 && wc <= 0x256c) {\n        buf[0] = 0xf9; buf[1] = big5_2003_2charset_page25[wc-0x2550]; ret = 2;\n        break;\n      }\n      if (wc == 0x2574) { buf[0] = 0xa1; buf[1] = 0x5a; ret = 2; break; }\n      if (wc == 0x2593) { buf[0] = 0xf9; buf[1] = 0xfe; ret = 2; break; }\n      break;\n    case 0x26:\n      if (wc == 0x2609 || wc == 0x2641)\n        return RET_ILUNI;\n      break;\n    case 0x27:\n      if (wc == 0x273d) { buf[0] = 0xc6; buf[1] = 0xe6; ret = 2; break; }\n      break;\n    case 0x2f:\n      if (wc == 0x2f02) { buf[0] = 0xc6; buf[1] = 0xbf; ret = 2; break; }\n      if (wc == 0x2f03) { buf[0] = 0xc6; buf[1] = 0xc0; ret = 2; break; }\n      if (wc == 0x2f05) { buf[0] = 0xc6; buf[1] = 0xc1; ret = 2; break; }\n      if (wc == 0x2f07) { buf[0] = 0xc6; buf[1] = 0xc2; ret = 2; break; }\n      if (wc == 0x2f0c) { buf[0] = 0xc6; buf[1] = 0xc3; ret = 2; break; }\n      if (wc == 0x2f0d) { buf[0] = 0xc6; buf[1] = 0xc4; ret = 2; break; }\n      if (wc == 0x2f0e) { buf[0] = 0xc6; buf[1] = 0xc5; ret = 2; break; }\n      if (wc == 0x2f13) { buf[0] = 0xc6; buf[1] = 0xc6; ret = 2; break; }\n      if (wc == 0x2f16) { buf[0] = 0xc6; buf[1] = 0xc7; ret = 2; break; }\n      if (wc == 0x2f19) { buf[0] = 0xc6; buf[1] = 0xc8; ret = 2; break; }\n      if (wc == 0x2f1b) { buf[0] = 0xc6; buf[1] = 0xc9; ret = 2; break; }\n      if (wc == 0x2f22) { buf[0] = 0xc6; buf[1] = 0xca; ret = 2; break; }\n      if (wc == 0x2f27) { buf[0] = 0xc6; buf[1] = 0xcb; ret = 2; break; }\n      if (wc == 0x2f2e) { buf[0] = 0xc6; buf[1] = 0xcc; ret = 2; break; }\n      if (wc == 0x2f33) { buf[0] = 0xc6; buf[1] = 0xcd; ret = 2; break; }\n      if (wc == 0x2f34) { buf[0] = 0xc6; buf[1] = 0xce; ret = 2; break; }\n      if (wc == 0x2f35) { buf[0] = 0xc6; buf[1] = 0xcf; ret = 2; break; }\n      if (wc == 0x2f39) { buf[0] = 0xc6; buf[1] = 0xd0; ret = 2; break; }\n      if (wc == 0x2f3a) { buf[0] = 0xc6; buf[1] = 0xd1; ret = 2; break; }\n      if (wc == 0x2f41) { buf[0] = 0xc6; buf[1] = 0xd2; ret = 2; break; }\n      if (wc == 0x2f46) { buf[0] = 0xc6; buf[1] = 0xd3; ret = 2; break; }\n      if (wc == 0x2f67) { buf[0] = 0xc6; buf[1] = 0xd4; ret = 2; break; }\n      if (wc == 0x2f68) { buf[0] = 0xc6; buf[1] = 0xd5; ret = 2; break; }\n      if (wc == 0x2fa1) { buf[0] = 0xc6; buf[1] = 0xd6; ret = 2; break; }\n      if (wc == 0x2faa) { buf[0] = 0xc6; buf[1] = 0xd7; ret = 2; break; }\n      break;\n    case 0x30:\n      if (wc >= 0x3005 && wc <= 0x3007) {\n        buf[0] = 0xc6; buf[1] = wc - 0x2f25; ret = 2;\n        break;\n      }\n      if (wc >= 0x3038 && wc <= 0x303a) {\n        buf[0] = 0xa2; buf[1] = wc - 0x2f6c; ret = 2;\n        break;\n      }\n      if (wc >= 0x3041 && wc <= 0x3093) {\n        if (wc < 0x3059) {\n          buf[0] = 0xc6; buf[1] = wc - 0x2f5a;\n        } else {\n          buf[0] = 0xc7; buf[1] = wc - 0x3019;\n        }\n        ret = 2;\n        break;\n      }\n      if (wc == 0x309d) { buf[0] = 0xc6; buf[1] = 0xdc; ret = 2; break; }\n      if (wc == 0x309e) { buf[0] = 0xc6; buf[1] = 0xdd; ret = 2; break; }\n      if (wc >= 0x30a1 && wc <= 0x30f6) {\n        buf[0] = 0xc7; buf[1] = wc - (wc < 0x30a5 ? 0x3026 : 0x3004); ret = 2;\n        break;\n      }\n      if (wc == 0x30fc) { buf[0] = 0xc6; buf[1] = 0xe3; ret = 2; break; }\n      if (wc == 0x30fd) { buf[0] = 0xc6; buf[1] = 0xda; ret = 2; break; }\n      if (wc == 0x30fe) { buf[0] = 0xc6; buf[1] = 0xdb; ret = 2; break; }\n      break;\n    case 0x53:\n      if (wc == 0x5344)\n        return RET_ILUNI;\n      break;\n    case 0x58:\n      if (wc == 0x58bb) { buf[0] = 0xf9; buf[1] = 0xd9; ret = 2; break; }\n      break;\n    case 0x5a:\n      if (wc == 0x5afa) { buf[0] = 0xf9; buf[1] = 0xdc; ret = 2; break; }\n      break;\n    case 0x5f:\n      if (wc == 0x5f5e) { buf[0] = 0xc2; buf[1] = 0x55; ret = 2; break; }\n      if (wc == 0x5f5d)\n        return RET_ILUNI;\n      break;\n    case 0x60:\n      if (wc == 0x6052) { buf[0] = 0xf9; buf[1] = 0xda; ret = 2; break; }\n      break;\n    case 0x78:\n      if (wc == 0x7881) { buf[0] = 0xf9; buf[1] = 0xd6; ret = 2; break; }\n      break;\n    case 0x7c:\n      if (wc == 0x7ca7) { buf[0] = 0xf9; buf[1] = 0xdb; ret = 2; break; }\n      break;\n    case 0x88:\n      if (wc == 0x88cf) { buf[0] = 0xf9; buf[1] = 0xd8; ret = 2; break; }\n      break;\n    case 0x92:\n      if (wc == 0x92b9) { buf[0] = 0xf9; buf[1] = 0xd7; ret = 2; break; }\n      break;\n    case 0xe0: case 0xe1: case 0xe2: case 0xe3: case 0xe4: case 0xe5:\n    case 0xe6: case 0xe7: case 0xe8: case 0xe9: case 0xea: case 0xeb:\n    case 0xec: case 0xed: case 0xee: case 0xef: case 0xf0: case 0xf1:\n    case 0xf2: case 0xf3: case 0xf4: case 0xf5: case 0xf6:\n      {\n        unsigned int i = wc - 0xe000;\n        if (i < 5809) {\n          unsigned int c1 = i / 157;\n          unsigned int c2 = i % 157;\n          buf[0] = c1 + (c1 < 5 ? 0xfa : c1 < 24 ? 0x89 : 0x69);\n          buf[1] = c2 + (c2 < 0x3f ? 0x40 : 0x62);\n          ret = 2;\n          break;\n        }\n      }\n      break;\n    case 0xfe:\n      if (wc == 0xfe51) { buf[0] = 0xa1; buf[1] = 0x4e; ret = 2; break; }\n      if (wc == 0xfe68) { buf[0] = 0xa2; buf[1] = 0x42; ret = 2; break; }\n      break;\n    case 0xff:\n      if (wc == 0xff0f) { buf[0] = 0xa1; buf[1] = 0xfe; ret = 2; break; }\n      if (wc == 0xff3b) { buf[0] = 0xc6; buf[1] = 0xe4; ret = 2; break; }\n      if (wc == 0xff3c) { buf[0] = 0xa2; buf[1] = 0x40; ret = 2; break; }\n      if (wc == 0xff3d) { buf[0] = 0xc6; buf[1] = 0xe5; ret = 2; break; }\n      if (wc == 0xff3e) { buf[0] = 0xc6; buf[1] = 0xd9; ret = 2; break; }\n      if (wc == 0xff5e) { buf[0] = 0xa1; buf[1] = 0xe3; ret = 2; break; }\n      if (wc == 0xffe0) { buf[0] = 0xa2; buf[1] = 0x46; ret = 2; break; }\n      if (wc == 0xffe1) { buf[0] = 0xa2; buf[1] = 0x47; ret = 2; break; }\n      if (wc == 0xffe3) { buf[0] = 0xa1; buf[1] = 0xc3; ret = 2; break; }\n      if (wc == 0xffe5) { buf[0] = 0xa2; buf[1] = 0x44; ret = 2; break; }\n      if (wc == 0xff64)\n        return RET_ILUNI;\n      break;\n  }\n  if (ret == RET_ILUNI)\n    ret = big5_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0];\n    r[1] = buf[1];\n    return 2;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/big5hkscs1999.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2006, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * BIG5-HKSCS:1999\n */\n\n/*\n * BIG5-HKSCS:1999 can be downloaded from\n *   http://www.info.gov.hk/digital21/eng/hkscs/download.html\n *   http://www.info.gov.hk/digital21/eng/hkscs/index.html\n *\n * It extends BIG5 (without the rows 0xC6..0xC7) through the ranges\n *\n *   0x{88..8D}{40..7E,A1..FE}      641 characters\n *   0x{8E..A0}{40..7E,A1..FE}     2898 characters\n *   0x{C6..C8}{40..7E,A1..FE}      359 characters\n *   0xF9{D6..FE}                    41 characters\n *   0x{FA..FE}{40..7E,A1..FE}      763 characters\n *\n * Note that some HKSCS characters are not contained in Unicode 3.2\n * and are therefore best represented as sequences of Unicode characters:\n *   0x8862  U+00CA U+0304  LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND MACRON\n *   0x8864  U+00CA U+030C  LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND CARON\n *   0x88A3  U+00EA U+0304  LATIN SMALL LETTER E WITH CIRCUMFLEX AND MACRON\n *   0x88A5  U+00EA U+030C  LATIN SMALL LETTER E WITH CIRCUMFLEX AND CARON\n */\n\n#include \"hkscs1999.h\"\n#include \"flushwc.h\"\n\nstatic int\nbig5hkscs1999_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  ucs4_t last_wc = conv->istate;\n  if (last_wc) {\n    /* Output the buffered character. */\n    conv->istate = 0;\n    *pwc = last_wc;\n    return 0; /* Don't advance the input pointer. */\n  } else {\n    unsigned char c = *s;\n    /* Code set 0 (ASCII) */\n    if (c < 0x80)\n      return ascii_mbtowc(conv,pwc,s,n);\n    /* Code set 1 (BIG5 extended) */\n    if (c >= 0xa1 && c < 0xff) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      {\n        unsigned char c2 = s[1];\n        if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n          if (!((c == 0xc6 && c2 >= 0xa1) || c == 0xc7)) {\n            int ret = big5_mbtowc(conv,pwc,s,2);\n            if (ret != RET_ILSEQ)\n              return ret;\n          }\n        }\n      }\n    }\n    {\n      int ret = hkscs1999_mbtowc(conv,pwc,s,n);\n      if (ret != RET_ILSEQ)\n        return ret;\n    }\n    if (c == 0x88) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      {\n        unsigned char c2 = s[1];\n        if (c2 == 0x62 || c2 == 0x64 || c2 == 0xa3 || c2 == 0xa5) {\n          /* It's a composed character. */\n          ucs4_t wc1 = ((c2 >> 3) << 2) + 0x009a; /* = 0x00ca or 0x00ea */\n          ucs4_t wc2 = ((c2 & 6) << 2) + 0x02fc; /* = 0x0304 or 0x030c */\n          /* We cannot output two Unicode characters at once. So,\n             output the first character and buffer the second one. */\n          *pwc = wc1;\n          conv->istate = wc2;\n          return 2;\n        }\n      }\n    }\n    return RET_ILSEQ;\n  }\n}\n\n#define big5hkscs1999_flushwc normal_flushwc\n\nstatic int\nbig5hkscs1999_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  int count = 0;\n  unsigned char last = conv->ostate;\n\n  if (last) {\n    /* last is = 0x66 or = 0xa7. */\n    if (wc == 0x0304 || wc == 0x030c) {\n      /* Output the combined character. */\n      if (n >= 2) {\n        r[0] = 0x88;\n        r[1] = last + ((wc & 24) >> 2) - 4; /* = 0x62 or 0x64 or 0xa3 or 0xa5 */\n        conv->ostate = 0;\n        return 2;\n      } else\n        return RET_TOOSMALL;\n    }\n\n    /* Output the buffered character. */\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x88;\n    r[1] = last;\n    r += 2;\n    count = 2;\n  }\n\n  /* Code set 0 (ASCII) */\n  if (wc < 0x0080) {\n    /* Plain ASCII character. */\n    if (n > count) {\n      r[0] = (unsigned char) wc;\n      conv->ostate = 0;\n      return count+1;\n    } else\n      return RET_TOOSMALL;\n  } else {\n    unsigned char buf[2];\n    int ret;\n\n    /* Code set 1 (BIG5 extended) */\n    ret = big5_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (!((buf[0] == 0xc6 && buf[1] >= 0xa1) || buf[0] == 0xc7)) {\n        if (n >= count+2) {\n          r[0] = buf[0];\n          r[1] = buf[1];\n          conv->ostate = 0;\n          return count+2;\n        } else\n          return RET_TOOSMALL;\n      }\n    }\n    ret = hkscs1999_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if ((wc & ~0x0020) == 0x00ca) {\n        /* A possible first character of a multi-character sequence. We have to\n           buffer it. */\n        if (!(buf[0] == 0x88 && (buf[1] == 0x66 || buf[1] == 0xa7))) abort();\n        conv->ostate = buf[1]; /* = 0x66 or = 0xa7 */\n        return count+0;\n      }\n      if (n >= count+2) {\n        r[0] = buf[0];\n        r[1] = buf[1];\n        conv->ostate = 0;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    return RET_ILUNI;\n  }\n}\n\nstatic int\nbig5hkscs1999_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  unsigned char last = conv->ostate;\n\n  if (last) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x88;\n    r[1] = last;\n    /* conv->ostate = 0; will be done by the caller */\n    return 2;\n  } else\n    return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/big5hkscs2001.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2006, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * BIG5-HKSCS:2001\n */\n\n/*\n * BIG5-HKSCS:2001 can be downloaded from\n *   http://www.info.gov.hk/digital21/eng/hkscs/download.html\n *   http://www.info.gov.hk/digital21/eng/hkscs/index.html\n *\n * It extends BIG5-HKSCS:1999 through 116 characters.\n *\n * It extends BIG5 (without the rows 0xC6..0xC7) through the ranges\n *\n *   0x{88..8D}{40..7E,A1..FE}      757 characters\n *   0x{8E..A0}{40..7E,A1..FE}     2898 characters\n *   0x{C6..C8}{40..7E,A1..FE}      359 characters\n *   0xF9{D6..FE}                    41 characters\n *   0x{FA..FE}{40..7E,A1..FE}      763 characters\n *\n * Note that some HKSCS characters are not contained in Unicode 3.2\n * and are therefore best represented as sequences of Unicode characters:\n *   0x8862  U+00CA U+0304  LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND MACRON\n *   0x8864  U+00CA U+030C  LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND CARON\n *   0x88A3  U+00EA U+0304  LATIN SMALL LETTER E WITH CIRCUMFLEX AND MACRON\n *   0x88A5  U+00EA U+030C  LATIN SMALL LETTER E WITH CIRCUMFLEX AND CARON\n */\n\n#include \"hkscs2001.h\"\n#include \"flushwc.h\"\n\nstatic int\nbig5hkscs2001_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  ucs4_t last_wc = conv->istate;\n  if (last_wc) {\n    /* Output the buffered character. */\n    conv->istate = 0;\n    *pwc = last_wc;\n    return 0; /* Don't advance the input pointer. */\n  } else {\n    unsigned char c = *s;\n    /* Code set 0 (ASCII) */\n    if (c < 0x80)\n      return ascii_mbtowc(conv,pwc,s,n);\n    /* Code set 1 (BIG5 extended) */\n    if (c >= 0xa1 && c < 0xff) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      {\n        unsigned char c2 = s[1];\n        if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n          if (!((c == 0xc6 && c2 >= 0xa1) || c == 0xc7)) {\n            int ret = big5_mbtowc(conv,pwc,s,2);\n            if (ret != RET_ILSEQ)\n              return ret;\n          }\n        }\n      }\n    }\n    {\n      int ret = hkscs1999_mbtowc(conv,pwc,s,n);\n      if (ret != RET_ILSEQ)\n        return ret;\n    }\n    {\n      int ret = hkscs2001_mbtowc(conv,pwc,s,n);\n      if (ret != RET_ILSEQ)\n        return ret;\n    }\n    if (c == 0x88) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      {\n        unsigned char c2 = s[1];\n        if (c2 == 0x62 || c2 == 0x64 || c2 == 0xa3 || c2 == 0xa5) {\n          /* It's a composed character. */\n          ucs4_t wc1 = ((c2 >> 3) << 2) + 0x009a; /* = 0x00ca or 0x00ea */\n          ucs4_t wc2 = ((c2 & 6) << 2) + 0x02fc; /* = 0x0304 or 0x030c */\n          /* We cannot output two Unicode characters at once. So,\n             output the first character and buffer the second one. */\n          *pwc = wc1;\n          conv->istate = wc2;\n          return 2;\n        }\n      }\n    }\n    return RET_ILSEQ;\n  }\n}\n\n#define big5hkscs2001_flushwc normal_flushwc\n\nstatic int\nbig5hkscs2001_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  int count = 0;\n  unsigned char last = conv->ostate;\n\n  if (last) {\n    /* last is = 0x66 or = 0xa7. */\n    if (wc == 0x0304 || wc == 0x030c) {\n      /* Output the combined character. */\n      if (n >= 2) {\n        r[0] = 0x88;\n        r[1] = last + ((wc & 24) >> 2) - 4; /* = 0x62 or 0x64 or 0xa3 or 0xa5 */\n        conv->ostate = 0;\n        return 2;\n      } else\n        return RET_TOOSMALL;\n    }\n\n    /* Output the buffered character. */\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x88;\n    r[1] = last;\n    r += 2;\n    count = 2;\n  }\n\n  /* Code set 0 (ASCII) */\n  if (wc < 0x0080) {\n    /* Plain ASCII character. */\n    if (n > count) {\n      r[0] = (unsigned char) wc;\n      conv->ostate = 0;\n      return count+1;\n    } else\n      return RET_TOOSMALL;\n  } else {\n    unsigned char buf[2];\n    int ret;\n\n    /* Code set 1 (BIG5 extended) */\n    ret = big5_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (!((buf[0] == 0xc6 && buf[1] >= 0xa1) || buf[0] == 0xc7)) {\n        if (n >= count+2) {\n          r[0] = buf[0];\n          r[1] = buf[1];\n          conv->ostate = 0;\n          return count+2;\n        } else\n          return RET_TOOSMALL;\n      }\n    }\n    ret = hkscs1999_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if ((wc & ~0x0020) == 0x00ca) {\n        /* A possible first character of a multi-character sequence. We have to\n           buffer it. */\n        if (!(buf[0] == 0x88 && (buf[1] == 0x66 || buf[1] == 0xa7))) abort();\n        conv->ostate = buf[1]; /* = 0x66 or = 0xa7 */\n        return count+0;\n      }\n      if (n >= count+2) {\n        r[0] = buf[0];\n        r[1] = buf[1];\n        conv->ostate = 0;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    ret = hkscs2001_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (n >= count+2) {\n        r[0] = buf[0];\n        r[1] = buf[1];\n        conv->ostate = 0;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    return RET_ILUNI;\n  }\n}\n\nstatic int\nbig5hkscs2001_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  unsigned char last = conv->ostate;\n\n  if (last) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x88;\n    r[1] = last;\n    /* conv->ostate = 0; will be done by the caller */\n    return 2;\n  } else\n    return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/big5hkscs2004.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2006, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * BIG5-HKSCS:2004\n */\n\n/*\n * BIG5-HKSCS:2004 can be downloaded from\n *   http://www.info.gov.hk/digital21/eng/hkscs/download.html\n *   http://www.info.gov.hk/digital21/eng/hkscs/index.html\n *\n * It extends BIG5-HKSCS:2001 through 123 characters.\n *\n * It extends BIG5 (without the rows 0xC6..0xC7) through the ranges\n *\n *   0x{87..8D}{40..7E,A1..FE}      880 characters\n *   0x{8E..A0}{40..7E,A1..FE}     2898 characters\n *   0x{C6..C8}{40..7E,A1..FE}      359 characters\n *   0xF9{D6..FE}                    41 characters\n *   0x{FA..FE}{40..7E,A1..FE}      763 characters\n *\n * Note that some HKSCS characters are not contained in Unicode 3.2\n * and are therefore best represented as sequences of Unicode characters:\n *   0x8862  U+00CA U+0304  LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND MACRON\n *   0x8864  U+00CA U+030C  LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND CARON\n *   0x88A3  U+00EA U+0304  LATIN SMALL LETTER E WITH CIRCUMFLEX AND MACRON\n *   0x88A5  U+00EA U+030C  LATIN SMALL LETTER E WITH CIRCUMFLEX AND CARON\n */\n\n#include \"hkscs2004.h\"\n#include \"flushwc.h\"\n\nstatic int\nbig5hkscs2004_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  ucs4_t last_wc = conv->istate;\n  if (last_wc) {\n    /* Output the buffered character. */\n    conv->istate = 0;\n    *pwc = last_wc;\n    return 0; /* Don't advance the input pointer. */\n  } else {\n    unsigned char c = *s;\n    /* Code set 0 (ASCII) */\n    if (c < 0x80)\n      return ascii_mbtowc(conv,pwc,s,n);\n    /* Code set 1 (BIG5 extended) */\n    if (c >= 0xa1 && c < 0xff) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      {\n        unsigned char c2 = s[1];\n        if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n          if (!((c == 0xc6 && c2 >= 0xa1) || c == 0xc7)) {\n            int ret = big5_mbtowc(conv,pwc,s,2);\n            if (ret != RET_ILSEQ)\n              return ret;\n          }\n        }\n      }\n    }\n    {\n      int ret = hkscs1999_mbtowc(conv,pwc,s,n);\n      if (ret != RET_ILSEQ)\n        return ret;\n    }\n    {\n      int ret = hkscs2001_mbtowc(conv,pwc,s,n);\n      if (ret != RET_ILSEQ)\n        return ret;\n    }\n    {\n      int ret = hkscs2004_mbtowc(conv,pwc,s,n);\n      if (ret != RET_ILSEQ)\n        return ret;\n    }\n    if (c == 0x88) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      {\n        unsigned char c2 = s[1];\n        if (c2 == 0x62 || c2 == 0x64 || c2 == 0xa3 || c2 == 0xa5) {\n          /* It's a composed character. */\n          ucs4_t wc1 = ((c2 >> 3) << 2) + 0x009a; /* = 0x00ca or 0x00ea */\n          ucs4_t wc2 = ((c2 & 6) << 2) + 0x02fc; /* = 0x0304 or 0x030c */\n          /* We cannot output two Unicode characters at once. So,\n             output the first character and buffer the second one. */\n          *pwc = wc1;\n          conv->istate = wc2;\n          return 2;\n        }\n      }\n    }\n    return RET_ILSEQ;\n  }\n}\n\n#define big5hkscs2004_flushwc normal_flushwc\n\nstatic int\nbig5hkscs2004_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  int count = 0;\n  unsigned char last = conv->ostate;\n\n  if (last) {\n    /* last is = 0x66 or = 0xa7. */\n    if (wc == 0x0304 || wc == 0x030c) {\n      /* Output the combined character. */\n      if (n >= 2) {\n        r[0] = 0x88;\n        r[1] = last + ((wc & 24) >> 2) - 4; /* = 0x62 or 0x64 or 0xa3 or 0xa5 */\n        conv->ostate = 0;\n        return 2;\n      } else\n        return RET_TOOSMALL;\n    }\n\n    /* Output the buffered character. */\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x88;\n    r[1] = last;\n    r += 2;\n    count = 2;\n  }\n\n  /* Code set 0 (ASCII) */\n  if (wc < 0x0080) {\n    /* Plain ASCII character. */\n    if (n > count) {\n      r[0] = (unsigned char) wc;\n      conv->ostate = 0;\n      return count+1;\n    } else\n      return RET_TOOSMALL;\n  } else {\n    unsigned char buf[2];\n    int ret;\n\n    /* Code set 1 (BIG5 extended) */\n    ret = big5_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (!((buf[0] == 0xc6 && buf[1] >= 0xa1) || buf[0] == 0xc7)) {\n        if (n >= count+2) {\n          r[0] = buf[0];\n          r[1] = buf[1];\n          conv->ostate = 0;\n          return count+2;\n        } else\n          return RET_TOOSMALL;\n      }\n    }\n    ret = hkscs1999_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if ((wc & ~0x0020) == 0x00ca) {\n        /* A possible first character of a multi-character sequence. We have to\n           buffer it. */\n        if (!(buf[0] == 0x88 && (buf[1] == 0x66 || buf[1] == 0xa7))) abort();\n        conv->ostate = buf[1]; /* = 0x66 or = 0xa7 */\n        return count+0;\n      }\n      if (n >= count+2) {\n        r[0] = buf[0];\n        r[1] = buf[1];\n        conv->ostate = 0;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    ret = hkscs2001_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (n >= count+2) {\n        r[0] = buf[0];\n        r[1] = buf[1];\n        conv->ostate = 0;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    ret = hkscs2004_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (n >= count+2) {\n        r[0] = buf[0];\n        r[1] = buf[1];\n        conv->ostate = 0;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    return RET_ILUNI;\n  }\n}\n\nstatic int\nbig5hkscs2004_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  unsigned char last = conv->ostate;\n\n  if (last) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x88;\n    r[1] = last;\n    /* conv->ostate = 0; will be done by the caller */\n    return 2;\n  } else\n    return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/big5hkscs2008.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2006, 2010 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * BIG5-HKSCS:2008\n */\n\n/*\n * BIG5-HKSCS:2008 can be downloaded from\n *   http://www.ogcio.gov.hk/ccli/eng/hkscs/download.html\n *   http://www.ogcio.gov.hk/ccli/eng/hkscs/introduction.html\n *\n * It extends BIG5-HKSCS:2004 through 68 characters.\n *\n * It extends BIG5 (without the rows 0xC6..0xC7) through the ranges\n *\n *   0x{87..8D}{40..7E,A1..FE}      880 characters\n *   0x{8E..A0}{40..7E,A1..FE}     2898 characters\n *   0x{C6..C8}{40..7E,A1..FE}      359 characters\n *   0xF9{D6..FE}                    41 characters\n *   0x{FA..FE}{40..7E,A1..FE}      763 characters\n *\n * Note that some HKSCS characters are not contained in Unicode 3.2\n * and are therefore best represented as sequences of Unicode characters:\n *   0x8862  U+00CA U+0304  LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND MACRON\n *   0x8864  U+00CA U+030C  LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND CARON\n *   0x88A3  U+00EA U+0304  LATIN SMALL LETTER E WITH CIRCUMFLEX AND MACRON\n *   0x88A5  U+00EA U+030C  LATIN SMALL LETTER E WITH CIRCUMFLEX AND CARON\n */\n\n#include \"hkscs2008.h\"\n#include \"flushwc.h\"\n\nstatic int\nbig5hkscs2008_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  ucs4_t last_wc = conv->istate;\n  if (last_wc) {\n    /* Output the buffered character. */\n    conv->istate = 0;\n    *pwc = last_wc;\n    return 0; /* Don't advance the input pointer. */\n  } else {\n    unsigned char c = *s;\n    /* Code set 0 (ASCII) */\n    if (c < 0x80)\n      return ascii_mbtowc(conv,pwc,s,n);\n    /* Code set 1 (BIG5 extended) */\n    if (c >= 0xa1 && c < 0xff) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      {\n        unsigned char c2 = s[1];\n        if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n          if (!((c == 0xc6 && c2 >= 0xa1) || c == 0xc7)) {\n            int ret = big5_mbtowc(conv,pwc,s,2);\n            if (ret != RET_ILSEQ)\n              return ret;\n          }\n        }\n      }\n    }\n    {\n      int ret = hkscs1999_mbtowc(conv,pwc,s,n);\n      if (ret != RET_ILSEQ)\n        return ret;\n    }\n    {\n      int ret = hkscs2001_mbtowc(conv,pwc,s,n);\n      if (ret != RET_ILSEQ)\n        return ret;\n    }\n    {\n      int ret = hkscs2004_mbtowc(conv,pwc,s,n);\n      if (ret != RET_ILSEQ)\n        return ret;\n    }\n    {\n      int ret = hkscs2008_mbtowc(conv,pwc,s,n);\n      if (ret != RET_ILSEQ)\n        return ret;\n    }\n    if (c == 0x88) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      {\n        unsigned char c2 = s[1];\n        if (c2 == 0x62 || c2 == 0x64 || c2 == 0xa3 || c2 == 0xa5) {\n          /* It's a composed character. */\n          ucs4_t wc1 = ((c2 >> 3) << 2) + 0x009a; /* = 0x00ca or 0x00ea */\n          ucs4_t wc2 = ((c2 & 6) << 2) + 0x02fc; /* = 0x0304 or 0x030c */\n          /* We cannot output two Unicode characters at once. So,\n             output the first character and buffer the second one. */\n          *pwc = wc1;\n          conv->istate = wc2;\n          return 2;\n        }\n      }\n    }\n    return RET_ILSEQ;\n  }\n}\n\n#define big5hkscs2008_flushwc normal_flushwc\n\nstatic int\nbig5hkscs2008_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  int count = 0;\n  unsigned char last = conv->ostate;\n\n  if (last) {\n    /* last is = 0x66 or = 0xa7. */\n    if (wc == 0x0304 || wc == 0x030c) {\n      /* Output the combined character. */\n      if (n >= 2) {\n        r[0] = 0x88;\n        r[1] = last + ((wc & 24) >> 2) - 4; /* = 0x62 or 0x64 or 0xa3 or 0xa5 */\n        conv->ostate = 0;\n        return 2;\n      } else\n        return RET_TOOSMALL;\n    }\n\n    /* Output the buffered character. */\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x88;\n    r[1] = last;\n    r += 2;\n    count = 2;\n  }\n\n  /* Code set 0 (ASCII) */\n  if (wc < 0x0080) {\n    /* Plain ASCII character. */\n    if (n > count) {\n      r[0] = (unsigned char) wc;\n      conv->ostate = 0;\n      return count+1;\n    } else\n      return RET_TOOSMALL;\n  } else {\n    unsigned char buf[2];\n    int ret;\n\n    /* Code set 1 (BIG5 extended) */\n    ret = big5_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (!((buf[0] == 0xc6 && buf[1] >= 0xa1) || buf[0] == 0xc7)) {\n        if (n >= count+2) {\n          r[0] = buf[0];\n          r[1] = buf[1];\n          conv->ostate = 0;\n          return count+2;\n        } else\n          return RET_TOOSMALL;\n      }\n    }\n    ret = hkscs1999_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if ((wc & ~0x0020) == 0x00ca) {\n        /* A possible first character of a multi-character sequence. We have to\n           buffer it. */\n        if (!(buf[0] == 0x88 && (buf[1] == 0x66 || buf[1] == 0xa7))) abort();\n        conv->ostate = buf[1]; /* = 0x66 or = 0xa7 */\n        return count+0;\n      }\n      if (n >= count+2) {\n        r[0] = buf[0];\n        r[1] = buf[1];\n        conv->ostate = 0;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    ret = hkscs2001_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (n >= count+2) {\n        r[0] = buf[0];\n        r[1] = buf[1];\n        conv->ostate = 0;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    ret = hkscs2004_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (n >= count+2) {\n        r[0] = buf[0];\n        r[1] = buf[1];\n        conv->ostate = 0;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    ret = hkscs2008_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (n >= count+2) {\n        r[0] = buf[0];\n        r[1] = buf[1];\n        conv->ostate = 0;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    return RET_ILUNI;\n  }\n}\n\nstatic int\nbig5hkscs2008_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  unsigned char last = conv->ostate;\n\n  if (last) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x88;\n    r[1] = last;\n    /* conv->ostate = 0; will be done by the caller */\n    return 2;\n  } else\n    return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/c99.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * C99\n * This is ASCII with \\uXXXX and \\UXXXXXXXX escape sequences, denoting Unicode\n * characters. See ISO/IEC 9899:1999, section 6.4.3.\n * The treatment of control characters in the range U+0080..U+009F is not\n * specified; we pass them through unmodified.\n */\n\nstatic int\nc99_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c;\n  ucs4_t wc;\n  int i;\n\n  c = s[0];\n  if (c < 0xa0) {\n    if (c != '\\\\') {\n      *pwc = c;\n      return 1;\n    }\n    if (n < 2)\n      return RET_TOOFEW(0);\n    c = s[1];\n    if (c == 'u') {\n      wc = 0;\n      for (i = 2; i < 6; i++) {\n        if (n <= i)\n          return RET_TOOFEW(0);\n        c = s[i];\n        if (c >= '0' && c <= '9')\n          c -= '0';\n        else if (c >= 'A' && c <= 'Z')\n          c -= 'A'-10;\n        else if (c >= 'a' && c <= 'z')\n          c -= 'a'-10;\n        else\n          goto simply_backslash;\n        wc |= (ucs4_t) c << (4 * (5-i));\n      }\n      if ((wc >= 0x00a0 && !(wc >= 0xd800 && wc < 0xe000))\n          || wc == 0x0024 || wc == 0x0040 || wc == 0x0060) {\n        *pwc = wc;\n        return 6;\n      }\n    } else if (c == 'U') {\n      wc = 0;\n      for (i = 2; i < 10; i++) {\n        if (n <= i)\n          return RET_TOOFEW(0);\n        c = s[i];\n        if (c >= '0' && c <= '9')\n          c -= '0';\n        else if (c >= 'A' && c <= 'Z')\n          c -= 'A'-10;\n        else if (c >= 'a' && c <= 'z')\n          c -= 'a'-10;\n        else\n          goto simply_backslash;\n        wc |= (ucs4_t) c << (4 * (9-i));\n      }\n      if ((wc >= 0x00a0 && !(wc >= 0xd800 && wc < 0xe000))\n          || wc == 0x0024 || wc == 0x0040 || wc == 0x0060) {\n        *pwc = wc;\n        return 10;\n      }\n    } else\n      goto simply_backslash;\n  }\n  return RET_ILSEQ;\nsimply_backslash:\n  *pwc = '\\\\';\n  return 1;\n}\n\nstatic int\nc99_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0xa0) {\n    *r = wc;\n    return 1;\n  } else {\n    int result;\n    unsigned char u;\n    if (wc < 0x10000) {\n      result = 6;\n      u = 'u';\n    } else {\n      result = 10;\n      u = 'U';\n    }\n    if (n >= result) {\n      int count;\n      r[0] = '\\\\';\n      r[1] = u;\n      r += 2;\n      for (count = result-3; count >= 0; count--) {\n        unsigned int i = (wc >> (4*count)) & 0x0f;\n        *r++ = (i < 10 ? '0'+i : 'a'-10+i);\n      }\n      return result;\n    } else\n      return RET_TOOSMALL;\n  }\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical.h",
    "content": "  (int)(long)&((struct stringpool_t *)0)->stringpool_str392,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str389,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str258,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str436,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str285,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str222,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str418,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str267,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str361,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str567,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str416,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str512,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str690,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str539,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str689,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str320,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str750,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str302,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str732,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str64,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str811,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str134,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str186,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str324,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str150,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str154,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str130,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str466,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str166,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str170,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str322,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str142,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str332,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str158,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str162,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str138,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str236,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str574,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str580,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str268,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str88,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str140,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str278,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str104,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str108,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str84,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str420,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str120,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str250,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str110,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str54,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str147,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str476,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str463,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str442,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str562,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str813,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str248,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str749,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str591,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str702,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str796,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str680,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str430,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str448,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str311,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str391,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str446,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str312,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str286,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str121,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str176,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str375,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str337,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str282,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str242,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str206,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str211,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str536,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str651,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str683,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str613,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str329,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str426,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str89,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str344,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str479,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str548,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str209,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str661,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str608,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str634,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str610,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str72,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str388,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str153,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str443,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str254,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str281,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str78,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str437,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str210,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str252,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str710,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str692,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str700,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str495,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str243,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str106,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str869,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str425,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_aix.h",
    "content": "  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_0,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_1,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_2,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_3,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_4,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_5,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_6,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_10,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_14,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_aix_sysaix.h",
    "content": "  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_0,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_2,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_4,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_6,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_8,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_10,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_12,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_16,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_aix_20,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_dos.h",
    "content": "  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_0,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_4,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_5,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_8,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_12,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_13,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_17,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_21,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_22,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_26,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_31,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_35,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_38,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_42,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_dos_47,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_extra.h",
    "content": "  (int)(long)&((struct stringpool2_t *)0)->stringpool_extra_0,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_extra_2,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_extra_4,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_extra_6,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_extra_7,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_extra_9,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_extra_11,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_local.h",
    "content": "  (int)(long)&((struct stringpool_t *)0)->stringpool_str193,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str496,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_local_sysaix.h",
    "content": "  (int)(long)&((struct stringpool_t *)0)->stringpool_str15,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str484,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_local_syshpux.h",
    "content": "  (int)(long)&((struct stringpool_t *)0)->stringpool_str171,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str723,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_local_sysosf1.h",
    "content": "  (int)(long)&((struct stringpool_t *)0)->stringpool_str193,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str457,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_local_syssolaris.h",
    "content": "  (int)(long)&((struct stringpool_t *)0)->stringpool_str112,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str491,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_osf1.h",
    "content": "  (int)(long)&((struct stringpool2_t *)0)->stringpool_osf1_0,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_osf1_1,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_osf1_sysosf1.h",
    "content": "  (int)(long)&((struct stringpool2_t *)0)->stringpool_osf1_0,\n  (int)(long)&((struct stringpool2_t *)0)->stringpool_osf1_2,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_sysaix.h",
    "content": "  (int)(long)&((struct stringpool_t *)0)->stringpool_str391,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str282,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str145,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str452,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str267,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str131,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str445,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str260,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str255,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str573,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str388,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str303,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str610,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str425,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str618,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str418,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str469,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str411,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str462,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str5,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str457,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str155,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str183,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str207,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str169,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str177,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str161,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str527,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str191,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str151,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str242,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str158,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str210,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str172,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str180,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str164,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str313,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str507,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str508,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str127,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str43,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str71,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str95,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str57,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str65,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str49,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str415,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str79,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str128,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str64,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str42,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str44,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str437,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str557,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str429,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str451,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str542,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str426,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str744,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str809,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str815,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str958,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str518,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str560,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str309,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str647,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str453,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str270,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str315,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str549,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str90,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str101,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str305,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str96,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str245,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str233,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str342,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str187,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str490,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str725,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str761,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str711,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str226,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str246,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str219,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str276,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str553,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str853,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str67,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str671,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str623,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str637,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str633,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str81,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str466,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str45,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str254,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str199,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str318,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str48,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str569,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str286,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str108,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str719,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str721,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str728,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str555,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str272,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str16,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str814,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str390,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_syshpux.h",
    "content": "  (int)(long)&((struct stringpool_t *)0)->stringpool_str396,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str355,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str293,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str499,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str345,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str267,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str486,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str332,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str322,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str553,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str399,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str430,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str636,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str482,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str495,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str503,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str500,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str490,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str487,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str110,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str639,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str114,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str178,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str230,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str152,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str142,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str128,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str306,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str166,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str112,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str223,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str119,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str235,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str157,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str147,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str133,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str100,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str516,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str519,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str277,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str173,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str237,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str289,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str211,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str201,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str187,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str365,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str225,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str266,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str219,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str169,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str185,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str515,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str731,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str501,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str696,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str626,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str610,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str680,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str518,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str1033,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str986,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str760,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str655,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str479,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str584,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str393,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str436,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str273,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str418,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str76,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str151,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str305,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str301,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str333,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str282,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str256,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str337,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str653,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str738,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str790,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str750,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str302,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str373,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str81,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str260,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str525,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str644,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str243,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str571,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str574,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str606,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str575,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str281,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str191,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str193,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str349,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str327,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str474,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str176,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str621,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str288,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str239,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str734,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str735,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str754,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str615,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str203,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str138,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str951,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str249,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_sysosf1.h",
    "content": "  (int)(long)&((struct stringpool_t *)0)->stringpool_str453,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str308,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str319,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str586,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str346,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str283,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str568,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str328,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str280,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str575,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str335,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str431,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str698,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str458,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str608,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str381,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str911,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str363,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str893,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str64,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str664,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str134,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str186,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str324,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str150,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str154,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str130,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str466,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str166,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str170,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str322,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str142,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str332,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str158,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str162,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str138,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str203,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str663,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str669,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str268,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str88,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str140,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str278,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str104,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str108,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str84,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str420,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str120,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str250,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str110,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str54,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str147,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str476,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str463,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str430,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str562,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str813,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str225,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str777,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str541,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str648,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str848,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str769,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str389,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str407,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str561,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str391,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str455,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str396,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str253,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str173,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str176,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str375,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str337,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str282,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str242,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str228,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str233,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str367,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str628,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str660,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str590,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str345,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str442,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str89,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str311,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str414,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str237,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str209,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str596,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str491,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str517,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str493,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str72,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str338,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str153,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str459,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str254,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str281,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str49,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str441,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str315,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str252,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str846,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str828,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str836,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str526,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str210,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str106,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str837,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str392,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/canonical_syssolaris.h",
    "content": "  (int)(long)&((struct stringpool_t *)0)->stringpool_str239,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str275,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str218,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str532,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str517,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str264,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str555,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str540,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str272,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str591,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str576,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str365,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str679,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str664,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str603,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str530,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str797,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str553,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str820,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str19,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str330,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str61,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str73,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str227,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str119,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str65,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str63,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str397,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str69,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str71,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str128,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str64,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str230,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str122,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str68,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str66,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str207,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str373,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str414,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str90,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str26,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str38,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str192,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str84,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str30,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str28,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str362,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str34,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str85,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str32,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str22,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str101,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str372,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str644,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str494,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str290,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str424,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str509,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str609,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str653,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str751,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str956,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str416,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str328,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str364,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str678,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str270,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str329,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str558,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str183,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str212,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str125,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str570,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str267,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str188,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str245,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str184,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str146,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str400,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str593,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str601,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str573,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str295,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str377,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str89,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str240,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str542,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str608,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str115,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str539,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str404,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str410,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str467,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str106,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str307,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str105,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str300,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str103,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str131,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str124,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str448,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str274,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str86,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str841,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str836,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str865,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str701,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str279,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str59,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str645,\n  (int)(long)&((struct stringpool_t *)0)->stringpool_str276,\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ces_big5.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * BIG-5\n */\n\nstatic int\nces_big5_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  /* Code set 0 (ASCII) */\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  /* Code set 1 (BIG5) */\n  if (c >= 0xa1 && c < 0xff) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff))\n        return big5_mbtowc(conv,pwc,s,2);\n      else\n        return RET_ILSEQ;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\nces_big5_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Code set 0 (ASCII) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 1 (BIG5) */\n  ret = big5_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0];\n    r[1] = buf[1];\n    return 2;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ces_gbk.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2005, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GBK\n */\n\nstatic int\nces_gbk_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n\n  /* Code set 0 (ASCII or GB 1988-89) */\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  /* Code set 1 (GBK) */\n  if (c >= 0x81 && c < 0xff) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    return gbk_mbtowc(conv,pwc,s,2);\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\nces_gbk_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Code set 0 (ASCII or GB 1988-89) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 1 (GBK) */\n  ret = gbk_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0];\n    r[1] = buf[1];\n    return 2;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/charset.alias",
    "content": "# This file contains a table of character encoding aliases,\n# suitable for operating system 'darwin16.6.0'.\n# It was automatically generated from config.charset.\n# Packages using this file: @PACKAGE@ \nISO8859-1 ISO-8859-1\nISO8859-2 ISO-8859-2\nISO8859-4 ISO-8859-4\nISO8859-5 ISO-8859-5\nISO8859-7 ISO-8859-7\nISO8859-9 ISO-8859-9\nISO8859-13 ISO-8859-13\nISO8859-15 ISO-8859-15\nKOI8-R KOI8-R\nKOI8-U KOI8-U\nCP866 CP866\nCP949 CP949\nCP1131 CP1131\nCP1251 CP1251\neucCN GB2312\nGB2312 GB2312\neucJP EUC-JP\neucKR EUC-KR\nBig5 BIG5\nBig5HKSCS BIG5-HKSCS\nGBK GBK\nGB18030 GB18030\nSJIS SHIFT_JIS\nARMSCII-8 ARMSCII-8\nPT154 PT154\n* UTF-8\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cjk_variants.h",
    "content": "/*\n * Copyright (C) 1999-2001 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CJK variants table\n */\n\nstatic const unsigned short cjk_variants[12038] = {\n  0x9e44, 0x1e2a, 0x200b, 0xcb87, 0xaf0c, 0x9e0a, 0x9e0b, 0xd42c,\n  0x23c1, 0xaf0e, 0x9e04, 0x9e05, 0xa176, 0xd207, 0x2303, 0xa304,\n  0x1e12, 0x619c, 0xeb57, 0x9e11, 0x2c02, 0xac08, 0x1e17, 0xa34b,\n  0x1e16, 0xa34b, 0x1e20, 0xa775, 0xb96d, 0x23e2, 0x3a37, 0x3b09,\n  0xd5c2, 0xb771, 0x4cf8, 0xcd72, 0x1e22, 0xa3be, 0x1e18, 0xa775,\n  0x1e24, 0xa169, 0x1e1f, 0xa3be, 0xe149, 0x1e21, 0xa169, 0x23b3,\n  0xa6b4, 0x20a1, 0x2e76, 0xcadd, 0xa5aa, 0x00f6, 0x200b, 0xcb87,\n  0x3792, 0x3860, 0xb90f, 0xc23f, 0x5c4a, 0x5c50, 0x673b, 0x674a,\n  0x68a8, 0xe8ce, 0x9e33, 0x9e32, 0xd1e8, 0x40ba, 0xc232, 0x2a6f,\n  0xee97, 0x3319, 0x34e7, 0xd209, 0xa3ca, 0x2208, 0xd2c5, 0x2efc,\n  0xdffa, 0x0006, 0x9e94, 0x1e46, 0xe579, 0x1e45, 0xe579, 0x2c1b,\n  0x2e7a, 0x2e85, 0x6ebc, 0xeebd, 0xcfa9, 0xc0cf, 0x397d, 0xba02,\n  0x1f17, 0x3500, 0x473e, 0xd846, 0xa5ac, 0x564e, 0xd65d, 0x1e58,\n  0xb909, 0x1e57, 0xb909, 0x6690, 0x66a0, 0xe6b1, 0xcfd2, 0x60f7,\n  0x6109, 0x610a, 0xe115, 0xb6f8, 0x2158, 0xa9cb, 0xdcb7, 0x1e82,\n  0xe1e0, 0x1e7e, 0x1e81, 0xbf27, 0x1e79, 0x1e81, 0x2e72, 0xbf27,\n  0x6f9c, 0xef9f, 0x1e79, 0x1e7e, 0xbf27, 0x1e71, 0xe1e0, 0x36b8,\n  0xc7ad, 0xdc6b, 0xc22d, 0x1e8b, 0xa3d3, 0x1e8a, 0xa3d3, 0xaf0d,\n  0x1e8f, 0x1e90, 0xb5bc, 0x1e8e, 0x1e90, 0x35bc, 0xd667, 0x1e8e,\n  0x9e8f, 0x1f1d, 0xe6f2, 0x9e44, 0xa6db, 0x2c81, 0x2d57, 0x3b72,\n  0xbb73, 0x9e99, 0x9e98, 0x1e9c, 0x9e9e, 0x1e9a, 0x9e9e, 0x3589,\n  0x358a, 0x6f4a, 0xef50, 0x1e9a, 0x9e9c, 0xc10f, 0x1ebe, 0xa166,\n  0x4522, 0xc523, 0x4546, 0x4552, 0x455d, 0xc55e, 0x9eaf, 0x9eb0,\n  0x9eab, 0x9eac, 0xa91c, 0xd9aa, 0xd93b, 0xa6b2, 0x9ebb, 0x9eba,\n  0x1ea1, 0xa166, 0xa104, 0xafce, 0x20cd, 0x22a8, 0xa2d5, 0x1ed8,\n  0xa0c5, 0xa0d5, 0xdb8e, 0xa0df, 0x21ab, 0x21b0, 0xbc37, 0x2f93,\n  0xaf9e, 0x9f5b, 0x1f1e, 0xa098, 0x1f96, 0x2d18, 0xad19, 0x1efa,\n  0xa009, 0x9ec5, 0x20ca, 0xa0f2, 0xa40c, 0x9eed, 0xaf74, 0x214f,\n  0x6577, 0x6578, 0xe57f, 0xa100, 0xa011, 0x9ede, 0x2047, 0xa3cd,\n  0x1fa1, 0xa0f9, 0x1ed3, 0xa009, 0x9fc7, 0x2f6c, 0xb58c, 0x9f4e,\n  0x2023, 0x2f77, 0x2fac, 0x4706, 0xeae3, 0x20a0, 0xc26b, 0xae11,\n  0x1e51, 0x473e, 0xd846, 0xa12a, 0xa925, 0xb703, 0xa0b4, 0xa005,\n  0x1e91, 0x1f20, 0xa0b3, 0x1ed0, 0x2098, 0xce56, 0xa049, 0x1f1d,\n  0xa0b3, 0x9fe5, 0x9fd4, 0xa0b7, 0xa000, 0xa02b, 0xa096, 0x207d,\n  0xa0de, 0x1f47, 0xcada, 0xa2aa, 0x1f32, 0x1f60, 0xa11e, 0x1f31,\n  0x1f60, 0xa11e, 0x9f90, 0xd0c4, 0x9f40, 0x9f3c, 0xb014, 0x9f2b,\n  0xae03, 0x9efe, 0x4b28, 0x5eb0, 0x5ec6, 0x6ab5, 0xead4, 0xa360,\n  0x6918, 0xe980, 0x1ecf, 0x2f7f, 0xeaf4, 0xa05a, 0x9fab, 0x1f31,\n  0x1f32, 0x211e, 0xa9b3, 0xa0ad, 0xa0c9, 0xaf8a, 0x3cd5, 0xc04b,\n  0x2002, 0xae76, 0xaf88, 0xa058, 0x29b7, 0xa9ea, 0xb765, 0x6625,\n  0x6634, 0x6670, 0xe682, 0xb549, 0x9f35, 0x9ed1, 0x5350, 0xd5a6,\n  0x9fe0, 0x1ef7, 0xa0f9, 0x9fb6, 0xa0e5, 0x2075, 0xe049, 0xa074,\n  0xa0d1, 0xa108, 0xa115, 0x9f5e, 0xa102, 0x2118, 0xac3d, 0xc7e6,\n  0x9fa3, 0xac40, 0xc537, 0x9fe3, 0xccfb, 0x9efc, 0xa101, 0xdf14,\n  0xc23c, 0x1f23, 0xb093, 0xa16a, 0xcae2, 0x9fa0, 0xda2b, 0x9fee,\n  0x9fc1, 0x9f21, 0xa114, 0xa13c, 0xa006, 0xa137, 0xa008, 0x2039,\n  0xa109, 0x1fe2, 0xd129, 0xa036, 0x209a, 0xb548, 0x2079, 0x2099,\n  0x20c3, 0xa907, 0x4ca5, 0xeb3b, 0x30de, 0xbb23, 0x9f25, 0x1f75,\n  0xae76, 0x207a, 0x24b1, 0xa592, 0x9f1c, 0x9fe9, 0x9feb, 0x1ed3,\n  0x9efa, 0xa06c, 0x00f6, 0x1e2a, 0xcb87, 0xd146, 0xa010, 0xa00f,\n  0x9eec, 0xae78, 0xa0b9, 0x2fa3, 0xd5c9, 0x1eff, 0xc706, 0xa03c,\n  0x22b5, 0xa2cc, 0x9f26, 0xa25a, 0x9ff1, 0x1fed, 0xa109, 0xa0b5,\n  0xa024, 0xa0be, 0xd2f1, 0xdcf0, 0x9eee, 0x9f1f, 0x5d0b, 0x5d17,\n  0xdd5d, 0x9f83, 0xa0c0, 0x9f5c, 0xafa4, 0xe03c, 0x200a, 0xa0af,\n  0x9fa7, 0x1fa6, 0xe049, 0xa078, 0xa077, 0x1ffb, 0x2099, 0x20c3,\n  0xa907, 0x2003, 0x24b1, 0xa592, 0xa0c2, 0x1f2a, 0xa0de, 0xa0e8,\n  0xa11f, 0x4f75, 0x69e1, 0xea82, 0xafac, 0xb770, 0x9f27, 0x1ed0,\n  0x1f1e, 0xce56, 0x1ffb, 0x2079, 0x20c3, 0xa907, 0x1ff2, 0xb548,\n  0xafad, 0x1f10, 0xc26b, 0x1e26, 0x2e76, 0xcadd, 0xabb6, 0xa10e,\n  0xa13b, 0xa110, 0xa132, 0xa13a, 0x9f63, 0xa06c, 0x1f1d, 0x9f20,\n  0x9f1b, 0xa03a, 0x9f24, 0xa01e, 0xa03e, 0xa059, 0xa07b, 0x1ffb,\n  0x2079, 0x2099, 0xa907, 0xafb1, 0x9ec5, 0x9f65, 0x9ed9, 0x1ec2,\n  0x22a8, 0xa2d5, 0x9fa8, 0x9ec6, 0xb55e, 0xc67b, 0x1f2a, 0xa07d,\n  0x9ec9, 0xa0ed, 0x9fa5, 0xa07e, 0xa0f4, 0x3076, 0x30aa, 0xb0e1,\n  0xa0e3, 0xe6c7, 0x9ed9, 0xa0e9, 0x1ef7, 0x9fa1, 0x9eea, 0x9fca,\n  0x9fac, 0x9ebf, 0x9fa9, 0x1fed, 0xa039, 0xa0a4, 0xa0a7, 0x9fe6,\n  0x9faa, 0x1fad, 0xac3d, 0x1f31, 0x1f32, 0x9f60, 0xa07f, 0xa139,\n  0x9f18, 0xa0a8, 0x9fea, 0xa127, 0xa0a9, 0xa0a5, 0x9fe8, 0x2150,\n  0xa152, 0xcc2a, 0xa1f6, 0x406e, 0xc097, 0x214c, 0xa151, 0x224b,\n  0x22ca, 0xac05, 0x214a, 0xa151, 0xa154, 0x1ee7, 0x6577, 0x6578,\n  0xe57f, 0x213f, 0xa152, 0x214a, 0xa14c, 0x213f, 0xa150, 0xa14e,\n  0xa157, 0xa156, 0x1e68, 0xa9cb, 0xeee8, 0xa160, 0xa15c, 0xb5f7,\n  0x1ea1, 0x9ebe, 0xa185, 0x1e21, 0x9e24, 0x9fde, 0xd62d, 0x2929,\n  0x6754, 0xe75d, 0x24b2, 0x4b11, 0x65a2, 0x65d7, 0xe5dc, 0xd208,\n  0x9e0c, 0x530a, 0xd332, 0x4faa, 0xe90a, 0x4363, 0xc378, 0xa180,\n  0xa17e, 0xa6c5, 0xa18b, 0xae3d, 0xa189, 0xa167, 0x2706, 0x270e,\n  0xa713, 0xaca1, 0xa184, 0x218c, 0xcb27, 0xa182, 0x218a, 0xcb27,\n  0x226e, 0xa3e7, 0xa6e7, 0xa192, 0xd0c4, 0xa190, 0xab82, 0x21a9,\n  0xabeb, 0xdecd, 0xdfb2, 0x2b90, 0xab9c, 0xa85a, 0xb700, 0xabc3,\n  0x2bbc, 0xabc7, 0xabcc, 0x2199, 0xabeb, 0x2e42, 0xcf83, 0x1ecc,\n  0x21b0, 0xbc37, 0x3638, 0xef15, 0xe9ae, 0x1ecc, 0x21ab, 0xbc37,\n  0xa1b4, 0x3c96, 0xd85d, 0xbc7a, 0xa1b1, 0xbcc1, 0xbcef, 0xa1cd,\n  0xbd0c, 0x21c8, 0xbde8, 0xbd7c, 0xbd82, 0x3053, 0x30bd, 0xbdd2,\n  0xbdb8, 0x21d6, 0xbe96, 0xa1c0, 0xbdbc, 0xa1bb, 0xbe1b, 0xbe4a,\n  0xc69a, 0xb817, 0x21c6, 0xbe96, 0x21dc, 0xbf9f, 0x21db, 0xbf9f,\n  0x4108, 0x4155, 0x4188, 0xc199, 0x2e7e, 0xb73a, 0x21e2, 0xa1e3,\n  0x21e1, 0xa1e3, 0x21e1, 0xa1e2, 0xecf3, 0xac45, 0x2904, 0xd655,\n  0x21ec, 0x21ee, 0x68a8, 0x68cc, 0xe8ce, 0xece7, 0x21e8, 0x21ee,\n  0x68a8, 0x68cc, 0xe8ce, 0x21f4, 0x317f, 0xb191, 0x21e8, 0x21ec,\n  0x68a8, 0x68cc, 0xe8ce, 0xa1f1, 0xa1ef, 0x2c32, 0x2c34, 0x2c36,\n  0x2c37, 0xeb50, 0xbac8, 0x21ed, 0x317f, 0xb191, 0xa147, 0x2757,\n  0x284a, 0xa8a4, 0x2c80, 0xef63, 0x3483, 0xb4ca, 0xa1fe, 0xa1fd,\n  0xe47f, 0x2202, 0xe1d6, 0x2200, 0xe1d6, 0xa204, 0xa203, 0x221b,\n  0xa275, 0x1e42, 0xd2c5, 0xb81e, 0xd2bb, 0x2283, 0x2290, 0xc53b,\n  0xa6ed, 0xb289, 0xa289, 0xa247, 0xa25b, 0x2205, 0x2231, 0x224f,\n  0x2259, 0xa275, 0xa22a, 0xa22b, 0x2227, 0x223c, 0xa2ab, 0x2226,\n  0x223c, 0xa2ab, 0x624b, 0x6464, 0xe4c7, 0xa220, 0x2225, 0xaf46,\n  0x2257, 0x2277, 0x63df, 0xe4f2, 0xa244, 0xe8b3, 0x221b, 0x224f,\n  0x2259, 0xa275, 0xa241, 0xd8fd, 0xa24e, 0xa23e, 0x2226, 0x2227,\n  0xa2ab, 0xa28a, 0xa23a, 0xa28c, 0xa274, 0xa234, 0x2264, 0xa291,\n  0xeb00, 0xa22d, 0xa219, 0x214b, 0x22ca, 0xac05, 0xbe82, 0xbb6c,\n  0xa239, 0x221b, 0x2231, 0x2259, 0xa275, 0x226e, 0xa3e7, 0x2263,\n  0x2271, 0x228d, 0x228e, 0x2292, 0x2294, 0x61f0, 0xe1fc, 0x222c,\n  0x2277, 0x63df, 0xe4f2, 0x221b, 0x2231, 0x224f, 0xa275, 0xa033,\n  0xa21a, 0xa265, 0x2251, 0x2271, 0x228d, 0x228e, 0x2292, 0x2294,\n  0x61f0, 0xe1fc, 0x2242, 0xa291, 0xa25d, 0x65b9, 0xe609, 0xa287,\n  0xa270, 0x218e, 0x2250, 0xa3e7, 0xa269, 0x2251, 0x2263, 0x228d,\n  0x228e, 0x2292, 0x2294, 0x61f0, 0xe1fc, 0xb72d, 0xa240, 0x2205,\n  0x221b, 0x2231, 0x224f, 0xa259, 0x222c, 0x2257, 0x63df, 0xe4f2,\n  0xb22e, 0xa2e6, 0x2212, 0x2290, 0xc53b, 0xcb9a, 0xa267, 0xa218,\n  0xa23d, 0xa23f, 0x2251, 0x2263, 0x2271, 0x228e, 0x2292, 0x2294,\n  0x61f0, 0xe1fc, 0x2251, 0x2263, 0x2271, 0x228d, 0x2292, 0x2294,\n  0x61f0, 0xe1fc, 0x2212, 0x2283, 0xc53b, 0x2242, 0xa264, 0x2251,\n  0x2263, 0x2271, 0x228d, 0x228e, 0x2294, 0x61f0, 0xe1fc, 0x2251,\n  0x2263, 0x2271, 0x228d, 0x228e, 0x2292, 0x61f0, 0xe1fc, 0x5cad,\n  0xdcea, 0x22e7, 0xa2f8, 0xdfa6, 0x4cfc, 0xccff, 0xa2d9, 0xa2f1,\n  0x1ec2, 0x20cd, 0xa2d5, 0x9f2e, 0x2226, 0x2227, 0xa23c, 0xa2f5,\n  0xa2c1, 0x22b4, 0x22de, 0xb1a5, 0x22b3, 0x22de, 0xb1a5, 0x2026,\n  0xa2cc, 0xb548, 0xa2e2, 0xa2b2, 0xb54f, 0x22d1, 0xb555, 0xa2c8,\n  0xa2c7, 0x214b, 0x224b, 0xac05, 0x22db, 0x22f2, 0xa2f3, 0x2026,\n  0xa2b5, 0x22c5, 0x2f95, 0x2fa0, 0xb555, 0x1ec2, 0x20cd, 0xa2a8,\n  0x22d7, 0xb702, 0x22d6, 0xb702, 0xa2a1, 0xa2e9, 0x22cb, 0x22f2,\n  0xa2f3, 0xd0dc, 0x22b3, 0x22b4, 0xb1a5, 0xb22e, 0xa2bf, 0xb1c3,\n  0xa27f, 0x229d, 0xa2f8, 0xa2da, 0xa2a2, 0x22cb, 0x22db, 0xa2f3,\n  0x22cb, 0x22db, 0xa2f2, 0xa2b1, 0x229d, 0xa2e7, 0xa300, 0xa2fb,\n  0x1e10, 0xa304, 0x1e10, 0xa303, 0xeead, 0x2fe9, 0x3031, 0xb0a4,\n  0xb3ac, 0x5133, 0xd166, 0xa338, 0x37e9, 0xb7fe, 0x2e00, 0xdfca,\n  0xa320, 0xa31e, 0xa329, 0xa32d, 0xcbcb, 0x5535, 0xd5cf, 0xa321,\n  0xa326, 0xa331, 0x3c47, 0xbed9, 0xa32e, 0x2333, 0x2941, 0xa969,\n  0x2332, 0x2941, 0xa969, 0xa31a, 0xa340, 0x3bc9, 0xe1ab, 0xa33a,\n  0xe7c6, 0xa352, 0x3607, 0x36fb, 0x6629, 0xe65e, 0xd294, 0x1e16,\n  0x9e17, 0xa350, 0x2d0b, 0x53ef, 0xd550, 0x2354, 0x23f6, 0xb5ea,\n  0xa34d, 0xa346, 0x384c, 0xb9d5, 0x234f, 0x23f6, 0xb5ea, 0x2358,\n  0xa5ae, 0x28f2, 0xdce3, 0x2355, 0xa5ae, 0xb13d, 0xc387, 0x53d4,\n  0xd514, 0x9f54, 0xc6e7, 0x2365, 0x2877, 0x3ef7, 0x3f9b, 0x4002,\n  0x597f, 0xee75, 0x2364, 0xd97f, 0xd1e5, 0x585b, 0xd85e, 0xadf5,\n  0x2918, 0xb23c, 0xae01, 0x237d, 0xc68d, 0xa37b, 0x2dfb, 0xb372,\n  0xcf37, 0x3064, 0xdcc9, 0xa374, 0x2373, 0xc68d, 0x2388, 0x23b0,\n  0xaee0, 0xb239, 0x2ef0, 0xaef3, 0x23a4, 0x23af, 0x36a6, 0x36c6,\n  0x3b74, 0xbb77, 0xc8d4, 0xa382, 0xa3b2, 0x2727, 0xa8d3, 0xa3ad,\n  0xa399, 0xc825, 0xef8e, 0xad16, 0x23a0, 0xaec1, 0x28e5, 0x2edb,\n  0x613d, 0xe1d0, 0xa38d, 0xa795, 0xaef3, 0xa3a1, 0x2395, 0xaec1,\n  0xa39f, 0xaec2, 0xa3b4, 0x2386, 0xb6c6, 0xaec8, 0xaeda, 0x2ecf,\n  0xaed0, 0xa38c, 0xaedd, 0x2386, 0x36a6, 0x36c6, 0x3b74, 0xbb77,\n  0x2382, 0xaee0, 0xa389, 0x1e25, 0xa6b4, 0xa3a3, 0xbe90, 0xc9c1,\n  0xd0b1, 0x60bb, 0x6130, 0xe6a3, 0xa3bb, 0xa3ba, 0x1e1f, 0x9e22,\n  0x470c, 0xce23, 0x1e09, 0xaf0e, 0x23c3, 0x23c4, 0xa3c5, 0x23c2,\n  0x23c4, 0xa3c5, 0x23c2, 0x23c3, 0xa3c5, 0x23c2, 0x23c3, 0xa3c4,\n  0xe749, 0xe746, 0xa3f9, 0xb268, 0x9e41, 0xe6d9, 0x1eee, 0x23db,\n  0xc08d, 0xb536, 0xa92c, 0xc2ae, 0x467a, 0x467c, 0x6aea, 0xeaee,\n  0x1e8a, 0x9e8b, 0xcdb4, 0x2909, 0xdb8a, 0x354d, 0xb558, 0x23cd,\n  0xc08d, 0xac09, 0x4573, 0x4582, 0x4589, 0xc58a, 0x28e1, 0xc77f,\n  0x1e1b, 0x3a37, 0x3b09, 0xd5c2, 0x218e, 0x2250, 0xa26e, 0x49d6,\n  0x5879, 0xe6bb, 0xa44c, 0x276e, 0x37b1, 0x3aaf, 0x51fa, 0xe8b1,\n  0x234f, 0x2354, 0x35ea, 0xd449, 0xd65f, 0x23c8, 0x2606, 0xbb4e,\n  0xa630, 0x24a9, 0xa4f6, 0x4c72, 0xefa5, 0x25ab, 0xa644, 0xe5a4,\n  0xaf14, 0x1edd, 0xd855, 0xaf8c, 0x26ae, 0xb6cf, 0xa687, 0xa442,\n  0xa5ce, 0xb061, 0xa451, 0x252b, 0x2656, 0xda21, 0xa678, 0x5074,\n  0xd07d, 0x2518, 0x2553, 0x2554, 0x255f, 0x5aec, 0xe5d9, 0x2434,\n  0xa449, 0x2433, 0xa449, 0xa450, 0xd117, 0xa44d, 0xa44a, 0xa415,\n  0x3282, 0xc2c2, 0x2433, 0xa434, 0xa43f, 0xa3eb, 0xa43d, 0xa436,\n  0xa41e, 0xa638, 0xa6c8, 0xa614, 0xa6a6, 0xa504, 0x24e1, 0x5c9f,\n  0xdd20, 0x24bc, 0xa58e, 0xa4fa, 0xa5c6, 0xa5da, 0xda46, 0xe031,\n  0xa5dc, 0x2492, 0xda4b, 0xda4d, 0x2611, 0x5656, 0xdb3c, 0xa4e3,\n  0x248c, 0x30d2, 0xefa2, 0x248a, 0x30d2, 0xefa2, 0xda60, 0x246a,\n  0xda4b, 0xa6a8, 0xa680, 0xa4a4, 0xa65d, 0xa49c, 0x2400, 0xa4f6,\n  0xef69, 0x2580, 0xd849, 0x2003, 0x207a, 0xa592, 0x2173, 0xcb11,\n  0x618e, 0xee79, 0x2459, 0xa58e, 0xa6a5, 0x65a7, 0xeb28, 0xe7ff,\n  0x2516, 0x255e, 0x45d6, 0xc602, 0xa660, 0xa635, 0xa5f6, 0xa666,\n  0x2629, 0xdb41, 0xa672, 0xa68c, 0xa665, 0xa5b2, 0x2458, 0x5c9f,\n  0xdd20, 0xa485, 0xda36, 0x2560, 0x2586, 0x269e, 0x27d1, 0xb08a,\n  0x2400, 0xa4a9, 0xa45a, 0x5a98, 0xdbf1, 0xa457, 0xd123, 0xd39e,\n  0xa57a, 0xa523, 0x24d1, 0x255e, 0x45d6, 0xc602, 0x242f, 0x2553,\n  0x2554, 0x255f, 0x5aec, 0xe5d9, 0xa61c, 0xa5ca, 0xa62e, 0xa5e9,\n  0xa515, 0xa59a, 0xa59e, 0xa41f, 0xdaaf, 0xaff5, 0xa60a, 0xdb2a,\n  0xe5ee, 0x242f, 0x2518, 0x2554, 0x255f, 0x5aec, 0xe5d9, 0x242f,\n  0x2518, 0x2553, 0x255f, 0x5aec, 0xe5d9, 0xa649, 0xa649, 0x24d1,\n  0x2516, 0x45d6, 0xc602, 0x242f, 0x2518, 0x2553, 0x2554, 0x5aec,\n  0xe5d9, 0x24f2, 0x2586, 0x269e, 0x27d1, 0xb08a, 0x5854, 0x5858,\n  0xe29c, 0xa616, 0xa5c7, 0xa6c0, 0x265b, 0x2699, 0x26d3, 0xef67,\n  0xa613, 0x26c9, 0xcf57, 0xa63d, 0xa62f, 0xa510, 0x24af, 0xd849,\n  0x6927, 0xe935, 0xdb71, 0x24f2, 0x2560, 0x269e, 0x27d1, 0xb08a,\n  0x2459, 0xa4bc, 0x267e, 0xc616, 0x2003, 0x207a, 0xa4b1, 0xa524,\n  0x3198, 0x3199, 0xbb56, 0xa527, 0xa5bb, 0x9e27, 0x2403, 0xa644,\n  0x9e54, 0x2355, 0xa358, 0x25b7, 0xa674, 0x68df, 0x68e0, 0xe963,\n  0xa4df, 0x41df, 0xd425, 0x25af, 0xa674, 0xa5a9, 0xa60d, 0xa6b3,\n  0xef45, 0xa45b, 0xa56c, 0xa51d, 0xa417, 0xa45c, 0xa469, 0xe16a,\n  0xab60, 0xa637, 0xa522, 0xa6c1, 0xa66f, 0xa4d4, 0xdb30, 0x23f9,\n  0xbb4e, 0xa540, 0xa5bd, 0x247c, 0xdb3c, 0xa56f, 0xa455, 0xa567,\n  0x2690, 0x2c1d, 0xc51e, 0xa653, 0xa51b, 0xa6b6, 0xa62f, 0x24d7,\n  0xdb41, 0xa520, 0x2578, 0xa628, 0xa3fd, 0xa6d1, 0xa4d3, 0xa5e5,\n  0xa452, 0xa574, 0xb076, 0xdb50, 0x2403, 0xa5ab, 0xa655, 0x2556,\n  0xa557, 0xa668, 0xa618, 0xa645, 0x241f, 0xda21, 0x256e, 0xa699,\n  0xa695, 0xa49d, 0xa4d2, 0xdb6b, 0xa4dd, 0xa4d5, 0xa650, 0xdb5f,\n  0xa5f3, 0xa4d9, 0x25af, 0xa5b7, 0x585c, 0x585f, 0xe053, 0xa428,\n  0xaf53, 0xa591, 0xa49b, 0xa413, 0xa4dc, 0xa694, 0x2617, 0x2c1d,\n  0xc51e, 0xa68f, 0xa65c, 0x256e, 0x265b, 0x26d3, 0xef67, 0x24f2,\n  0x2560, 0x2586, 0x27d1, 0xb08a, 0xbd4f, 0xa6ca, 0xa6c2, 0xa4bd,\n  0xa456, 0xa499, 0xa411, 0x9eb8, 0xa5be, 0x1e25, 0xa3b3, 0xa624,\n  0xa6c2, 0xa56d, 0xa5eb, 0x26a3, 0xa6bb, 0xa181, 0xa453, 0x2570,\n  0xcf57, 0xa6a2, 0xd2cf, 0xd271, 0xa631, 0x256e, 0x2699, 0xef67,\n  0x26f2, 0x26f4, 0xa70d, 0x26de, 0x26ec, 0x2efb, 0x2efd, 0x5ff4,\n  0xe025, 0xa6e0, 0x9e96, 0x26d8, 0x26ec, 0x2efb, 0x2efd, 0x5ff4,\n  0xe025, 0xe856, 0xa6d9, 0x26e3, 0x2718, 0xccf0, 0x26e2, 0x2718,\n  0xccf0, 0x3df5, 0x3e0a, 0xbe15, 0xa18f, 0xa6f1, 0x26d8, 0x26de,\n  0x2efb, 0x2efd, 0x5ff4, 0xe025, 0x2213, 0x2712, 0xd597, 0x26f6,\n  0x26fb, 0x26fd, 0x2700, 0xa70b, 0xc74f, 0xa6ea, 0x26d7, 0x26f4,\n  0xa70d, 0x26fe, 0x2716, 0xa717, 0x26d7, 0x26f2, 0xa70d, 0xa707,\n  0x26ef, 0x26fb, 0x26fd, 0x2700, 0xa70b, 0xb5e5, 0x26ef, 0x26f6,\n  0x26fd, 0x2700, 0xa70b, 0x26ef, 0x26f6, 0x26fb, 0x2700, 0xa70b,\n  0x26f3, 0x2716, 0xa717, 0x26ef, 0x26f6, 0x26fb, 0x26fd, 0xa70b,\n  0xa711, 0x2186, 0x270e, 0xa713, 0xa6f5, 0xa70f, 0x26ef, 0x26f6,\n  0x26fb, 0x26fd, 0xa700, 0x26d7, 0x26f2, 0xa6f4, 0x2186, 0x2706,\n  0xa713, 0xa708, 0xa703, 0x26ed, 0xd597, 0x2186, 0x2706, 0xa70e,\n  0x26f3, 0x26fe, 0xa717, 0x26f3, 0x26fe, 0xa716, 0x26e2, 0xa6e3,\n  0x383e, 0xbb12, 0xa721, 0xa71f, 0x453a, 0xc53c, 0xd056, 0x238b,\n  0xa8d3, 0xb257, 0xb747, 0xc3ea, 0x2754, 0x27ca, 0xadb3, 0xa8d9,\n  0x2834, 0xa872, 0x3b7e, 0x3b7f, 0x3b81, 0xbca1, 0xe62f, 0x2c85,\n  0xe62a, 0x276f, 0x28ca, 0x28de, 0xe62b, 0xaea7, 0xe62c, 0xa78b,\n  0x2730, 0x27ca, 0xadb3, 0x21f7, 0x284a, 0xa8a4, 0xade0, 0xa805,\n  0x28b0, 0x28b5, 0x28c7, 0x28dc, 0x4f48, 0xcf4e, 0xa8e2, 0x27bb,\n  0xa8e9, 0x2862, 0xe696, 0x28b3, 0xe6ab, 0x289c, 0xc908, 0xa802,\n  0xa803, 0xb1bb, 0xa88c, 0x6640, 0xe641, 0xbce5, 0x23f0, 0xd1fa,\n  0x274f, 0xe62b, 0xa7a7, 0xa787, 0x1e18, 0x9e20, 0xa7a2, 0xa8a2,\n  0xa7c0, 0xa8df, 0xa8e0, 0xa8da, 0xa773, 0xa753, 0x2841, 0xa8d8,\n  0xc561, 0xe67b, 0xa39a, 0xa806, 0x282f, 0x2c27, 0xac2d, 0xa79c,\n  0xa79b, 0xa8a2, 0xa778, 0xa8be, 0xa770, 0xab88, 0x280a, 0xd056,\n  0xa88a, 0xa7e1, 0xa8b6, 0xa8cb, 0xa84f, 0xa816, 0x275d, 0xa8e9,\n  0xa782, 0xc86e, 0xe656, 0x2730, 0x2754, 0xadb3, 0x24f2, 0x2560,\n  0x2586, 0x269e, 0xb08a, 0xa7d3, 0xa7d2, 0xa852, 0x2864, 0xa8ce,\n  0xa81d, 0x28c4, 0xe1ce, 0x2824, 0xe684, 0xa7ad, 0xc897, 0xb267,\n  0x2d0e, 0x2d5c, 0xc895, 0xb383, 0xa763, 0xa764, 0xa75a, 0xa796,\n  0xd3eb, 0xa7a9, 0xa879, 0x28ae, 0xa8af, 0xa7b4, 0xe67b, 0xa7da,\n  0x27de, 0xe684, 0x6636, 0xe68e, 0x279a, 0x2c27, 0xac2d, 0x2895,\n  0xe681, 0xb2a5, 0x273a, 0xa872, 0x454c, 0xc54d, 0x2792, 0xa8d8,\n  0xa8ea, 0x21f7, 0x2757, 0xa8a4, 0xd314, 0xc57b, 0xa7b2, 0xa851,\n  0xa850, 0xa7d8, 0xa896, 0xbd82, 0xa8a7, 0xa1a2, 0xd46c, 0xa86b,\n  0xa75e, 0x27d9, 0xa8ce, 0xe663, 0x46d0, 0xee7d, 0xa861, 0x273a,\n  0xa834, 0xac18, 0x2364, 0xee75, 0x2811, 0xa8cd, 0x450e, 0x4816,\n  0xc8da, 0xc245, 0xa7ab, 0xa767, 0x2830, 0xe681, 0xa854, 0xa89e,\n  0x28bb, 0xc246, 0x2760, 0xc908, 0xa897, 0x277a, 0xa7a1, 0x21f7,\n  0x2757, 0xa84a, 0xa859, 0x2815, 0xa8af, 0x2815, 0xa8ae, 0x275b,\n  0x28b5, 0x28dc, 0x4f48, 0xcf4e, 0x275f, 0xe6ab, 0x275b, 0x28b0,\n  0x28dc, 0x4f48, 0xcf4e, 0xa7af, 0xde87, 0xa899, 0xa7a6, 0x27dc,\n  0xe1ce, 0xa75b, 0x274f, 0xa8de, 0xa7b1, 0xa8e4, 0xa879, 0x27d9,\n  0xa864, 0xc4bd, 0x238b, 0xa727, 0x2792, 0xa841, 0xa739, 0xa786,\n  0x275b, 0x28b0, 0x28b5, 0x4f48, 0xcf4e, 0x274f, 0xa8ca, 0xa784,\n  0xa785, 0x23e1, 0xc77f, 0xa75c, 0xa8cc, 0x2398, 0x2edb, 0xe13d,\n  0x275d, 0xa7bb, 0xa846, 0x28ef, 0xa8f5, 0x28ee, 0xa8f5, 0xd072,\n  0xa8f9, 0x2356, 0xdce3, 0x3bbb, 0xbbbc, 0x28ee, 0xa8ef, 0x28f7,\n  0xa8fa, 0x28f6, 0xa8fa, 0xa8fc, 0xa8f1, 0x28f6, 0xa8f7, 0x2a7f,\n  0xd05f, 0xa8f8, 0x2900, 0xabff, 0x28fd, 0xabff, 0xa90a, 0x21e6,\n  0xd655, 0xe64d, 0x1ffb, 0x2079, 0x2099, 0xa0c3, 0x23d8, 0xdb8a,\n  0xa902, 0x2fa9, 0x5907, 0xd986, 0xa913, 0xa90f, 0xd641, 0x236f,\n  0xb23c, 0xa91b, 0xa91a, 0x9eb1, 0xa920, 0xa91f, 0x2923, 0xb8a6,\n  0x2922, 0xb8a6, 0x9f19, 0x2172, 0x6754, 0xe75d, 0xa3cf, 0xbb80,\n  0x372c, 0xb94d, 0xbcf0, 0xe82d, 0xbbd4, 0xda87, 0xa93e, 0xa96a,\n  0xa939, 0x2332, 0x2333, 0xa969, 0xa950, 0xcad2, 0xb7f0, 0xa96e,\n  0xeede, 0xa942, 0x4287, 0xe029, 0x2968, 0x296c, 0xc34e, 0xaf09,\n  0xc55a, 0x2967, 0xadb4, 0x2965, 0xadb4, 0x2956, 0x296c, 0xc34e,\n  0x2332, 0x2333, 0xa941, 0xa93a, 0x2956, 0x2968, 0xc34e, 0xa94b,\n  0x29b3, 0xab2d, 0x29e6, 0xa9e7, 0x299d, 0x2a24, 0x4ca7, 0xccda,\n  0x2a66, 0xaa8d, 0xaabd, 0xa9d9, 0x29f8, 0xd505, 0xa9ac, 0xc945,\n  0xc385, 0xaab8, 0x2986, 0x2a24, 0x4ca7, 0xccda, 0xaaf5, 0xaad7,\n  0x2aaf, 0xab00, 0xa992, 0x1f60, 0x2976, 0xab2d, 0x1f84, 0xa9ea,\n  0x2a3f, 0xaa40, 0xaa12, 0xa9ca, 0xa9c9, 0x1e68, 0xa158, 0xa9d7,\n  0xaa8e, 0xaa30, 0xa9cd, 0xa98a, 0xd591, 0xaa1f, 0x2978, 0xa9e7,\n  0x2978, 0xa9e6, 0x1f84, 0xa9b7, 0xa9ec, 0xa9eb, 0xaae6, 0x298d,\n  0xd505, 0xaa63, 0xaa41, 0xaa6d, 0xab08, 0xab0c, 0xab4c, 0xa9c6,\n  0x2b22, 0xab43, 0x2a2f, 0xaa31, 0xa9e2, 0x2986, 0x299d, 0x4ca7,\n  0xccda, 0xab2a, 0xab09, 0x2a1b, 0xaa31, 0xa9d2, 0x2a1b, 0xaa2f,\n  0xaaa7, 0x2afa, 0xaafb, 0x29b8, 0xaa40, 0x29b8, 0x2a3f, 0xaa50,\n  0xaa04, 0xaa40, 0xa9fb, 0x2987, 0xaa8d, 0xbdeb, 0xaa05, 0x1e3d,\n  0xee97, 0xaaff, 0x2b30, 0x2b46, 0xab7e, 0xab0b, 0xab38, 0x28fb,\n  0xd05f, 0x2987, 0xaa66, 0xa9d0, 0xaa32, 0xaabc, 0xab03, 0x29ab,\n  0xab00, 0xa99b, 0xaaaa, 0xa988, 0x3127, 0xd06d, 0x2b1d, 0xd885,\n  0xab32, 0xab21, 0xab2a, 0xa9aa, 0xa9ee, 0xab19, 0xa9a9, 0x3194,\n  0xc644, 0x2a34, 0xaafb, 0x2a34, 0xaafa, 0xaa73, 0x29ab, 0xaaaf,\n  0xaaad, 0xaa06, 0xaa2d, 0xaa75, 0xaa07, 0xaaf1, 0x2acb, 0xd885,\n  0xaad2, 0x2a18, 0xab43, 0xab37, 0x2a26, 0xaad4, 0x2976, 0xa9b3,\n  0x2a74, 0x2b46, 0xab7e, 0xaad0, 0xab24, 0xaa76, 0xb1d2, 0x2a18,\n  0xab22, 0x2a74, 0x2b30, 0xab7e, 0xaa08, 0xab53, 0xab52, 0xab6b,\n  0xa5e3, 0x2b78, 0x3569, 0x3585, 0x3586, 0xb588, 0xab7f, 0xab59,\n  0x2b66, 0x3569, 0x3585, 0x3586, 0xb588, 0xab7d, 0xab7c, 0x2a74,\n  0x2b30, 0xab46, 0xab6a, 0x2bcd, 0x2bd5, 0x2bd7, 0x2bdc, 0x2be7,\n  0xc52f, 0xa197, 0x4260, 0x5675, 0xd6c7, 0xca79, 0xa7a8, 0xca81,\n  0xd089, 0x219d, 0xab9c, 0x219d, 0xab90, 0x2bda, 0x2bf3, 0x2bf6,\n  0xc3e4, 0x2b9f, 0xabe6, 0x2b9e, 0xabe6, 0xabf5, 0x2bb7, 0xabe9,\n  0xac4e, 0xb1b2, 0xabae, 0xabab, 0x5b8c, 0xe1bc, 0xa0a2, 0x2ba1,\n  0xabe9, 0xabc6, 0x21a6, 0xabc7, 0x2bdb, 0xabec, 0x5cd3, 0xdcd4,\n  0xe1c7, 0xa1a4, 0xabbb, 0x21a6, 0xabbc, 0x6751, 0xe752, 0x66ba,\n  0x674d, 0x674e, 0x674f, 0x6db4, 0x6e16, 0xee64, 0xa1a8, 0x2b81,\n  0x2bd5, 0x2bd7, 0x2bdc, 0x2be7, 0xc52f, 0xaebd, 0x2b81, 0x2bcd,\n  0x2bd7, 0x2bdc, 0x2be7, 0xc52f, 0x2b81, 0x2bcd, 0x2bd5, 0x2bdc,\n  0x2be7, 0xc52f, 0x2b9d, 0x2bf3, 0x2bf6, 0xc3e4, 0x2bbd, 0xabec,\n  0x2b81, 0x2bcd, 0x2bd5, 0x2bd7, 0x2be7, 0xc52f, 0xabe2, 0xda67,\n  0x4aad, 0xcab6, 0xabdd, 0x2b9e, 0xab9f, 0x2b81, 0x2bcd, 0x2bd5,\n  0x2bd7, 0x2bdc, 0xc52f, 0x2ba1, 0xabb7, 0x2199, 0xa1a9, 0x2bbd,\n  0xabdb, 0x2b9d, 0x2bda, 0x2bf6, 0xc3e4, 0xaba0, 0x2b9d, 0x2bda,\n  0x2bf3, 0xc3e4, 0x2bfe, 0xac0d, 0xac0b, 0xac0e, 0x2bf9, 0xac0d,\n  0x28fd, 0xa900, 0x1e13, 0xac08, 0x214b, 0x224b, 0xa2ca, 0xac07,\n  0xac06, 0x1e13, 0xac02, 0xa3de, 0xabfb, 0x2bf9, 0xabfe, 0xabfc,\n  0x2c13, 0x2c14, 0xc23e, 0x2c12, 0x2c14, 0xc23e, 0x2c12, 0x2c13,\n  0xc23e, 0xa875, 0xac1a, 0xac19, 0x1e48, 0x2e85, 0x6ebc, 0xeebd,\n  0x2617, 0x2690, 0xc51e, 0xc1ce, 0x2c20, 0x5d7b, 0x6bae, 0x6c7b,\n  0xec9c, 0x2c1f, 0x5d7b, 0x6bae, 0x6c7b, 0xec9c, 0x2c23, 0x2c24,\n  0xb023, 0xac22, 0x2c22, 0xb023, 0xac26, 0xac25, 0x279a, 0x282f,\n  0xac2d, 0xac2b, 0xac29, 0xeb40, 0x279a, 0x282f, 0xac27, 0x21f2,\n  0x2c34, 0x2c36, 0x2c37, 0xeb50, 0x21f2, 0x2c32, 0x2c36, 0x2c37,\n  0xeb50, 0x21f2, 0x2c32, 0x2c34, 0x2c37, 0xeb50, 0x21f2, 0x2c32,\n  0x2c34, 0x2c36, 0xeb50, 0xac4d, 0x1fad, 0x2118, 0xc6e1, 0x1fb7,\n  0xddfc, 0xac64, 0xac53, 0xa1e5, 0xac4a, 0xac46, 0x6ce5, 0xee1f,\n  0xac38, 0xaba9, 0x2c5b, 0xae48, 0xac43, 0x2c4f, 0xae48, 0xac6c,\n  0xac62, 0xac61, 0xac42, 0xac68, 0xac66, 0xac5e, 0xadbc, 0xa1fa,\n  0x1e97, 0x2d57, 0x3b72, 0xbb73, 0xdc48, 0x2742, 0xe62a, 0xdc3a,\n  0xad87, 0xad17, 0xacf4, 0xad50, 0x2cf6, 0x2d8b, 0x2d8c, 0x2db9,\n  0x6666, 0x669d, 0xe6af, 0xa188, 0x2d52, 0x2d53, 0x2dcc, 0x2dd6,\n  0x2dd7, 0xc89e, 0xadba, 0xadbd, 0xad87, 0xad2c, 0xadcb, 0xada8,\n  0xada7, 0xacdd, 0xacd2, 0xacfd, 0xada2, 0xada0, 0xad22, 0xadd2,\n  0xace9, 0xace8, 0xacf0, 0xacef, 0xac98, 0x2d58, 0x2db8, 0xadc6,\n  0x2c9b, 0x2d8b, 0x2d8c, 0x2db9, 0x6666, 0x669d, 0xe6af, 0xace1,\n  0xad97, 0xad0d, 0xadae, 0xad08, 0xad07, 0x234e, 0xd3ef, 0xad03,\n  0x27fc, 0x2d5c, 0xc895, 0xa393, 0xac97, 0x1ed1, 0xad19, 0x1ed1,\n  0xad18, 0xace5, 0xacbd, 0x2d83, 0xad84, 0xcbcf, 0xac9a, 0x2ca9,\n  0x2d53, 0xc89e, 0x2ca9, 0x2d52, 0xc89e, 0x1e97, 0x2c81, 0x3b72,\n  0xbb73, 0x2cf5, 0x2db8, 0xadc6, 0xad94, 0x27fc, 0x2d0e, 0xc895,\n  0xad81, 0x3e13, 0xbeaa, 0xad73, 0xad6f, 0xad5d, 0xad2d, 0xad2d,\n  0x2c96, 0xacb4, 0x2c9b, 0x2cf6, 0x2d8c, 0x2db9, 0x6666, 0x669d,\n  0xe6af, 0x2c9b, 0x2cf6, 0x2d8b, 0x2db9, 0x6666, 0x669d, 0xe6af,\n  0xad5a, 0xad02, 0xace4, 0xace3, 0xacc4, 0xacc3, 0xad04, 0xe6df,\n  0x2730, 0x2754, 0xa7ca, 0x2965, 0xa967, 0x2cf5, 0x2d58, 0xadc6,\n  0x2c9b, 0x2cf6, 0x2d8b, 0x2d8c, 0x6666, 0x669d, 0xe6af, 0xacad,\n  0xac7f, 0xacb3, 0x2dd3, 0xadd4, 0x2cf5, 0x2d58, 0xadb8, 0xacbf,\n  0x2ca9, 0x2dd6, 0xadd7, 0xace6, 0xadc5, 0xadc5, 0x2ca9, 0x2dcc,\n  0xadd7, 0x2ca9, 0x2dcc, 0xadd6, 0xaddd, 0xaddb, 0xa759, 0xade3,\n  0xade2, 0xe78f, 0xadf0, 0xadef, 0xa36e, 0xd856, 0xadfd, 0x2377,\n  0xb372, 0xadfa, 0x67cd, 0xe7e8, 0x231d, 0xdfca, 0x2370, 0x2e63,\n  0xae64, 0x9f48, 0xae25, 0xae2b, 0xcd19, 0xae43, 0xae33, 0x9f16,\n  0xd88b, 0xcd48, 0xcc3e, 0xcb92, 0x2e5f, 0xb5d8, 0xae05, 0x2e2f,\n  0xae36, 0xae40, 0xae08, 0xd4c6, 0x2e47, 0x2e5a, 0xae6b, 0x2e26,\n  0xae36, 0x2f52, 0x3b78, 0xc688, 0xae6c, 0xae10, 0x2e26, 0xae2f,\n  0xae58, 0xae57, 0xa183, 0xae27, 0x21aa, 0xcf83, 0xae0f, 0x2e2e,\n  0x2e5a, 0xae6b, 0x2c4f, 0xac5b, 0xce28, 0xae3c, 0xae3b, 0x2e2e,\n  0x2e47, 0xae6b, 0x2e1c, 0xb5d8, 0xb5d9, 0x2e01, 0xae64, 0x2e01,\n  0xae63, 0x2e2e, 0x2e47, 0xae5a, 0xae31, 0x1e7e, 0x2e79, 0xb9a6,\n  0xc9ca, 0x1e26, 0x1f75, 0x2002, 0x20a1, 0x2e77, 0xcadd, 0xae76,\n  0xa016, 0x2e72, 0xb9a6, 0x9e48, 0xa1e0, 0x2e83, 0x2eb5, 0xaee3,\n  0x2ef0, 0xaef3, 0x2e7f, 0xaee3, 0x5358, 0xd38a, 0x1e48, 0x2c1b,\n  0x6ebc, 0xeebd, 0xb176, 0xc240, 0xaeec, 0xaee1, 0xaeab, 0x2fdc,\n  0xb1c9, 0xaedf, 0xef90, 0x2ec3, 0xaee2, 0xa750, 0xae93, 0x2e7f,\n  0x53f4, 0x544a, 0xd4ed, 0xaebb, 0x377e, 0x3780, 0x37a9, 0x37d7,\n  0xb8a5, 0xaeb6, 0xaece, 0xabd3, 0xaedf, 0x2395, 0xa3a0, 0xa3a2,\n  0x2e9f, 0xaee2, 0xa3a6, 0xaebc, 0x23a9, 0xaed0, 0x23a9, 0xaecf,\n  0xa3a8, 0x2398, 0x28e5, 0xe13d, 0xa3ae, 0x2e99, 0xaebf, 0x2382,\n  0xa3b0, 0xae91, 0x2e9f, 0xaec3, 0x2e7f, 0xae83, 0xaeea, 0xaee9,\n  0xae90, 0x2385, 0x2e81, 0xaef3, 0x2385, 0x239b, 0x2e81, 0xaef0,\n  0xdfea, 0x26d8, 0x26de, 0x26ec, 0x2efd, 0x5ff4, 0xe025, 0x1e43,\n  0xdffa, 0x26d8, 0x26de, 0x26ec, 0x2efb, 0x5ff4, 0xe025, 0xe58b,\n  0x44e3, 0x598d, 0x5fa1, 0x5fa7, 0x5fa8, 0x5fa9, 0xdfaf, 0xc570,\n  0xb8c4, 0x330a, 0xb335, 0xa958, 0x9e00, 0x9e8c, 0x1e09, 0xa3c1,\n  0x5cae, 0x5cb3, 0xdd30, 0xaf12, 0xaf11, 0xa40a, 0xaf35, 0x2f4c,\n  0xc030, 0xcd43, 0xaf33, 0xaf4e, 0xaf2a, 0xaf20, 0xaf3a, 0x2f3e,\n  0xaf48, 0xaf37, 0xaf3c, 0xaf3b, 0x2f39, 0xaf48, 0xa22b, 0x2f39,\n  0xaf3e, 0xaf25, 0xaf2f, 0xaf51, 0xaf50, 0x2e30, 0x3b78, 0xc688,\n  0x2679, 0xc576, 0xaf55, 0x2f54, 0x6304, 0xe332, 0xcbf2, 0x2f5a,\n  0xbc47, 0x2f59, 0xbc47, 0x2f5c, 0x2f5d, 0xaf5e, 0x2f5b, 0x2f5d,\n  0xaf5e, 0x2f5b, 0x2f5c, 0xaf5e, 0x2f5b, 0x2f5c, 0xaf5d, 0xaf60,\n  0x2f5f, 0xd4a6, 0xaf66, 0xaf65, 0xaf72, 0xcdb5, 0xe6d5, 0x1efd,\n  0xb58c, 0xaf68, 0x9ee2, 0x1eff, 0x2fac, 0xeae3, 0xafb9, 0x1f5b,\n  0xeaf4, 0x2f83, 0xdfec, 0x2fb0, 0x2fb4, 0xafb5, 0xaf80, 0x2f91,\n  0x5ff3, 0xe015, 0xc2e5, 0x9f77, 0x9f6a, 0xa40e, 0xe65f, 0x2f84,\n  0x5ff3, 0xe015, 0x1ece, 0xaf9e, 0x22d1, 0xafa0, 0x1ece, 0xaf93,\n  0x22d1, 0xaf95, 0xc9a6, 0x201f, 0xd5c9, 0xa065, 0x290d, 0xd986,\n  0x1eff, 0x208d, 0xaf77, 0xa09c, 0xaf81, 0xa0c4, 0x2fb7, 0x3074,\n  0xb0b3, 0x2f81, 0xafb5, 0x2f81, 0xafb4, 0x2fb3, 0x3074, 0xb0b3,\n  0xaf7b, 0xafc4, 0xafc3, 0xb1b6, 0x9ec1, 0x31f4, 0xb1fa, 0xda8c,\n  0xb07e, 0x2e94, 0xb1c9, 0xb09f, 0xb025, 0xb182, 0x2306, 0x3031,\n  0xb0a4, 0xb0b4, 0xa538, 0xb13e, 0x31d0, 0xb1f7, 0xb14b, 0xb16b,\n  0xb1ae, 0xb16a, 0xb0b5, 0xb134, 0x9f42, 0xb091, 0xb190, 0xb056,\n  0x2c22, 0xac24, 0xafe3, 0xb060, 0x2306, 0x2fe9, 0xb0a4, 0x30e3,\n  0x3374, 0x4dcf, 0x4deb, 0xce3d, 0xb1df, 0xb1cc, 0xb052, 0xb200,\n  0xb046, 0x21c4, 0xb0bd, 0xb01d, 0xb02a, 0x241d, 0xb08b, 0x2379,\n  0xdcc9, 0xd03b, 0xb119, 0x3085, 0xb0a6, 0xb1c7, 0x2fb3, 0x2fb7,\n  0xb0b3, 0xb0e0, 0x20eb, 0x2641, 0x30aa, 0xb0e1, 0xb15f, 0xb1e8,\n  0xb137, 0xb0fb, 0x30a9, 0xb0f1, 0xb0f2, 0xafd9, 0x30e5, 0xb142,\n  0x3111, 0xb139, 0x3071, 0xb0a6, 0x24f2, 0x2560, 0x2586, 0x269e,\n  0xa7d1, 0xb061, 0xc302, 0xb016, 0x9fd4, 0x3102, 0xda96, 0xdbef,\n  0xafe2, 0xb0ca, 0x2306, 0x2fe9, 0xb031, 0x3071, 0xb085, 0x307c,\n  0xb0f1, 0x20eb, 0x3076, 0xb0e1, 0xb164, 0xb1f8, 0xb173, 0xb1ab,\n  0x2fb3, 0x2fb7, 0xb074, 0xaff0, 0xb005, 0xe5f7, 0x21c4, 0xb053,\n  0x30a2, 0xea5a, 0x248a, 0x248c, 0xefa2, 0x1ffd, 0xbb23, 0xb075,\n  0x20eb, 0x3076, 0xb0aa, 0xb03b, 0x307f, 0xb142, 0xb1fc, 0xb158,\n  0xb1f2, 0xb18a, 0xb11c, 0x3159, 0xb15a, 0xb19a, 0xb163, 0x307c,\n  0xb0a9, 0xb07d, 0xd822, 0xb07b, 0xd90a, 0x3096, 0xda96, 0x4609,\n  0xc652, 0x3080, 0xb139, 0xb06a, 0xc231, 0xb0ec, 0xb14d, 0xb181,\n  0xb1a4, 0xb192, 0x2abf, 0xd06d, 0xb1fc, 0xb006, 0xb07a, 0x3080,\n  0xb111, 0xb14e, 0xa35a, 0xaffe, 0xe858, 0x307f, 0xb0e5, 0xb817,\n  0xbbb7, 0xb001, 0xb120, 0x313c, 0x361a, 0xc718, 0x3174, 0xb1fe,\n  0xb0e8, 0x30ed, 0xb15a, 0x30ed, 0xb159, 0x3078, 0xb185, 0xb0ef,\n  0xb0ab, 0xb004, 0xb002, 0xb196, 0xd651, 0xb0ad, 0xb151, 0xae86,\n  0x317d, 0xb21a, 0x317c, 0xb21a, 0xbb32, 0x21ed, 0x21f4, 0xb191,\n  0xb121, 0xafe7, 0xb15f, 0xb1a9, 0xb0eb, 0xb01c, 0x21ed, 0x21f4,\n  0xb17f, 0xb126, 0x2af6, 0xc644, 0x316d, 0xb197, 0xb196, 0x259c,\n  0x3199, 0xbb56, 0x259c, 0x3198, 0xbb56, 0xb0ee, 0xb124, 0x22b3,\n  0x22b4, 0xa2de, 0xb187, 0xb0af, 0xb003, 0xabaa, 0xafc6, 0xa766,\n  0xa2e4, 0xb073, 0x2e94, 0xafdc, 0xb03f, 0xb1d4, 0x3000, 0xb1f7,\n  0xb1e3, 0x2b3e, 0xb1f6, 0xb1cd, 0xb1f5, 0xd499, 0xb03c, 0xb1d1,\n  0xb1e7, 0xb1e6, 0xb079, 0xb0e9, 0x2fcf, 0xb1ff, 0xb1dc, 0xb1d2,\n  0x3000, 0xb1d0, 0xb0ac, 0xafcf, 0x30e7, 0xb133, 0xbb22, 0xb151,\n  0xb1f4, 0xb04b, 0xb207, 0xb206, 0xb214, 0x322f, 0xb232, 0xb20b,\n  0xb227, 0x3226, 0xb230, 0x317c, 0xb17d, 0xb21e, 0x5ca1, 0xdd22,\n  0xb21b, 0x3218, 0xb230, 0xb217, 0xb22c, 0xb229, 0x2279, 0xa2e0,\n  0x320f, 0xb232, 0x3218, 0xb226, 0x320f, 0xb22f, 0x3237, 0xb238,\n  0x3236, 0xb238, 0x3236, 0xb237, 0xa384, 0xb23e, 0x236f, 0xa918,\n  0xb23b, 0xb24c, 0xb24b, 0xce94, 0x33e0, 0xcd2e, 0x34b2, 0xb4c8,\n  0xb2c2, 0xa728, 0x5a17, 0xdbac, 0xb34d, 0xb268, 0xe1e6, 0xa7f7,\n  0x23c9, 0xb260, 0x32e1, 0xb4f4, 0xb36b, 0xb383, 0xb3da, 0xb4a6,\n  0xb4fe, 0xb5bc, 0x2448, 0xc2c2, 0xa214, 0xb4ab, 0xb2cb, 0xb2d4,\n  0xb2d7, 0x32e9, 0xb4c7, 0xb476, 0xb473, 0xb384, 0xb436, 0xdb77,\n  0xa831, 0xb4e1, 0x32de, 0x4274, 0xd9dd, 0xb255, 0xb4d4, 0xb49a,\n  0xb29b, 0xb2ff, 0x37b4, 0xb7fa, 0xb428, 0xb29c, 0xb2d6, 0xb2d5,\n  0xb29d, 0xb2dd, 0xb2dc, 0xb2b5, 0xb4ec, 0x336e, 0xb4da, 0x3269,\n  0x3304, 0xb4f4, 0xb50f, 0xb3c0, 0xb4c1, 0xb514, 0xb4f0, 0x34a5,\n  0xc67a, 0x329e, 0xb4c7, 0xb2cf, 0xb39b, 0x32e1, 0xb4f4, 0x2f04,\n  0xb335, 0x1e3e, 0x34e7, 0xd209, 0xb46f, 0xb523, 0xb397, 0xb4be,\n  0xb4bb, 0xb33e, 0xb493, 0xb4cb, 0xb49f, 0xb399, 0xb4e0, 0xb3ee,\n  0xb48f, 0x2f04, 0xb30a, 0xb412, 0xdf13, 0xb31f, 0xb3d2, 0x3405,\n  0x34b9, 0xb52a, 0x38b1, 0x4975, 0xcd91, 0xb25e, 0xb3d1, 0xd379,\n  0xb41c, 0xb488, 0xb40d, 0xb4bf, 0xb3db, 0x3417, 0xb4e3, 0xd20d,\n  0xb26a, 0x32e0, 0xb4da, 0x2377, 0xadfb, 0xb03b, 0x3816, 0xb8f2,\n  0x27fd, 0xb26b, 0xb2a1, 0xb31c, 0xb323, 0xb302, 0xe1c7, 0xb4d1,\n  0xa30a, 0xb3ed, 0xb4c4, 0xb451, 0xb4f2, 0xb4a3, 0xb47b, 0xb414,\n  0xb45c, 0xc8b0, 0xb2e3, 0xb34f, 0xb33f, 0xb26c, 0xb362, 0xb24e,\n  0xb3b2, 0xb325, 0xd0cc, 0x3416, 0xb447, 0xb52c, 0xb4b3, 0xb519,\n  0xb4f1, 0xb45f, 0xce3d, 0x3341, 0x34b9, 0xb52a, 0xb784, 0xb35f,\n  0xb337, 0xb3bb, 0x33fa, 0xb447, 0xb363, 0x335c, 0xd490, 0xb2d3,\n  0xb498, 0xb528, 0xb2a2, 0x34d5, 0xb51c, 0xb9a8, 0x3444, 0xb51d,\n  0x3442, 0xb51d, 0xb504, 0x34fa, 0xd96c, 0x33fa, 0xb416, 0xb4ef,\n  0xb524, 0xb3b4, 0xb3bc, 0xb402, 0x4dcf, 0x4deb, 0xce3d, 0xb4f5,\n  0xb31a, 0xb2a0, 0xb29f, 0xb3ba, 0x21fb, 0xb4ca, 0xb516, 0xb35e,\n  0xb326, 0xb491, 0xb490, 0xb320, 0xb42d, 0xb2c8, 0xb322, 0xb4cd,\n  0xb3b8, 0x32e8, 0xc67a, 0xb26f, 0x4d55, 0x4d76, 0xcedd, 0xb29a,\n  0x3251, 0xb4c8, 0xb3ff, 0xb506, 0xb4f7, 0xb4fc, 0x3341, 0x3405,\n  0xb52a, 0xb51b, 0xb31e, 0xb31d, 0xb361, 0xb2e5, 0xb3b3, 0x329e,\n  0xb2e9, 0x3251, 0xb4b2, 0x21fb, 0xb483, 0xb321, 0xb4a1, 0xb3a5,\n  0xb2c5, 0x343a, 0xb51c, 0x32e0, 0xb36e, 0xb4fb, 0xb324, 0xb2ac,\n  0xb363, 0xb52c, 0x1e3e, 0x3319, 0xd209, 0xb2df, 0xb448, 0xb2e7,\n  0xb401, 0xb3b7, 0x3269, 0x32e1, 0xb304, 0xb469, 0x34b7, 0xd96d,\n  0xb446, 0xb4de, 0xb4b8, 0xb50a, 0xb270, 0x9e51, 0xb445, 0xb522,\n  0xb4b5, 0xb51f, 0xb4fd, 0xb2e2, 0xb522, 0xb2e6, 0xb484, 0xb400,\n  0xb4ba, 0x343a, 0xb4d5, 0x3442, 0xb444, 0xb508, 0x3505, 0xb512,\n  0xb31b, 0xb44a, 0xb432, 0x3341, 0x3405, 0xb4b9, 0xc234, 0x33fd,\n  0xb4e5, 0xb535, 0xb534, 0xa3ce, 0xd003, 0x4b27, 0x4b56, 0x4b5e,\n  0xcba3, 0x1ff2, 0x209a, 0xa2b9, 0x9f8e, 0xb575, 0x23d9, 0xb558,\n  0xb559, 0xa2c4, 0x22c5, 0xa2d1, 0x5d01, 0xdd25, 0x23d9, 0xb54d,\n  0xb54e, 0x3582, 0xbb5b, 0xa0d8, 0x2b66, 0x2b78, 0x3585, 0x3586,\n  0xb588, 0xb578, 0xb54c, 0xb5c9, 0xb570, 0x69c6, 0x69c8, 0x6a45,\n  0xea71, 0xbb5d, 0x355b, 0xbb5b, 0xbbd9, 0x2b66, 0x2b78, 0x3569,\n  0x3586, 0xb588, 0x2b66, 0x2b78, 0x3569, 0x3585, 0xb588, 0x2b66,\n  0x2b78, 0x3569, 0x3585, 0xb586, 0x1e9d, 0x358a, 0x6f4a, 0xef50,\n  0x1e9d, 0x3589, 0x6f4a, 0xef50, 0x358e, 0xef4b, 0x1efd, 0xaf6c,\n  0xd9ba, 0x358b, 0xef4b, 0xb595, 0x359e, 0xd7a4, 0xb593, 0x65d8,\n  0x6b25, 0x6b26, 0x6b2a, 0xeb2d, 0x3594, 0xd7a4, 0xe159, 0xb5ac,\n  0xb5a9, 0xb5b7, 0xb5b5, 0xb5b2, 0xb5ad, 0x1e8e, 0x1e8f, 0xb275,\n  0xb5d2, 0xb577, 0xb5c8, 0x4c31, 0xcc4f, 0x2e1c, 0xae5f, 0x2e61,\n  0xb5db, 0xb5d9, 0xc121, 0xa6f8, 0xd20a, 0x234f, 0x2354, 0xa3f6,\n  0x35f9, 0xb642, 0x2164, 0x363f, 0xb6e0, 0xb698, 0x35f6, 0xb642,\n  0xb680, 0xb625, 0xb664, 0xb63b, 0x2347, 0xb6fb, 0xb626, 0xb719,\n  0xb62c, 0xb6c7, 0xb14e, 0xc6a8, 0xb5fe, 0xb60a, 0xb60f, 0xc0a4,\n  0xb630, 0xb62f, 0xa1ac, 0xb602, 0x365d, 0xb6f8, 0xb6e8, 0x6855,\n  0xe86f, 0x35f7, 0xb6e0, 0x35f6, 0xb5f9, 0xb644, 0xb643, 0xb64b,\n  0xb649, 0xb6ec, 0x3681, 0xb6c9, 0xb6c4, 0xb688, 0xb689, 0xb669,\n  0x363c, 0xb6f8, 0xb660, 0xb65f, 0xb5ff, 0xb6df, 0xb65a, 0xb69c,\n  0x3692, 0xc520, 0xb697, 0xb5fa, 0x3653, 0xb6c9, 0xb6ab, 0x4f6a,\n  0xdfa0, 0xb655, 0xb656, 0xb674, 0x4156, 0xc157, 0x367b, 0x5af3,\n  0x5c19, 0x65c7, 0xe68c, 0xb5f8, 0xb66e, 0xc545, 0x36ad, 0x36cd,\n  0xc6a5, 0x2386, 0x23af, 0xb6c6, 0xb6d6, 0xb6c1, 0xb682, 0x36a4,\n  0xc6a5, 0x1e86, 0xc7ad, 0xb6a8, 0xb654, 0x2386, 0x23a4, 0x23af,\n  0xb6a6, 0xb619, 0x3653, 0xb681, 0x40a4, 0x4167, 0x41f3, 0xc7be,\n  0xb6a4, 0xa411, 0xb6a7, 0xb668, 0x35f7, 0xb63f, 0xb63d, 0xb652,\n  0x3d40, 0x4cac, 0x6eaf, 0x6eb4, 0xeeb9, 0xb6f5, 0xb6f3, 0x1e66,\n  0x363c, 0xb65d, 0xb6fa, 0xb6f9, 0x2347, 0xb607, 0xb6fe, 0xb6fd,\n  0xa1a3, 0x22d6, 0xa2d7, 0x9f1a, 0xd8e8, 0xb717, 0xb716, 0xb60e,\n  0xb722, 0xb71f, 0xb71e, 0xb71b, 0xd0e7, 0x2932, 0xb94d, 0xa273,\n  0xb72f, 0x372e, 0xd853, 0xc843, 0x3a38, 0xba8f, 0xb736, 0xb735,\n  0x21e0, 0xba5f, 0xbbba, 0x594d, 0x66d1, 0xe6dc, 0x3a29, 0xbb0a,\n  0xb87f, 0xa72c, 0x3766, 0x3919, 0xba86, 0xe0a8, 0xb9d3, 0xb89d,\n  0xb803, 0x9f86, 0xb749, 0xb94a, 0xb9aa, 0x386e, 0xc6c3, 0xa091,\n  0x9e1c, 0x2eba, 0x3780, 0x37a9, 0x37d7, 0x38a5, 0xeb06, 0xe5c6,\n  0x2eba, 0x377e, 0x37a9, 0x37d7, 0xb8a5, 0xb975, 0x3406, 0xb9cb,\n  0xb960, 0x1e2b, 0x3860, 0x390f, 0xb930, 0x5edb, 0x5ef6, 0xdf6d,\n  0xd3d3, 0xba05, 0xb85d, 0xba1e, 0xb8d7, 0xbaea, 0xb80c, 0xb898,\n  0xb8d6, 0x2eba, 0x377e, 0x3780, 0x37d7, 0xb8a5, 0x39cd, 0x6397,\n  0xe453, 0xb953, 0xb89f, 0x23f0, 0x3aaf, 0xd01c, 0x32d0, 0xb7fa,\n  0xb827, 0xd235, 0xb822, 0xb959, 0x2eba, 0x377e, 0x3780, 0x37a9,\n  0xb8a5, 0xbac3, 0xbab8, 0xb7fb, 0x231b, 0xb7fe, 0xa948, 0x3801,\n  0x387a, 0xba6e, 0xb805, 0xb7ff, 0x32d0, 0xb7b4, 0xb7e5, 0xba89,\n  0x231b, 0xb7e9, 0xb7f9, 0xb894, 0x37f3, 0x387a, 0xba6e, 0x3764,\n  0xbad4, 0x39ae, 0xd363, 0xb7f5, 0xba19, 0x385f, 0xb8e7, 0xbadb,\n  0x39de, 0xbaf3, 0xb8df, 0x37a6, 0xbae8, 0x3aaa, 0xbadf, 0x3b04,\n  0xbb17, 0xba39, 0x337f, 0xb8f2, 0x21d3, 0xb144, 0xa20a, 0xb7cf,\n  0xb7bb, 0x3a43, 0xcb4f, 0x39d8, 0xba23, 0xd988, 0x271d, 0xbb12,\n  0xb97f, 0x2353, 0xb9d5, 0xb852, 0xb851, 0xb90e, 0x3a31, 0xbafb,\n  0xb7a1, 0x3808, 0xb8e7, 0x1e2b, 0x3792, 0xb90f, 0xba48, 0xb968,\n  0xba94, 0xb9bf, 0x39d7, 0xba4b, 0xba3a, 0xba9c, 0xb9f3, 0xba01,\n  0xba33, 0x376f, 0xc6c3, 0xba03, 0x37f3, 0x3801, 0xba6e, 0xbf06,\n  0xb746, 0x3a11, 0xcc17, 0xb9f1, 0x3973, 0xb9d1, 0x4681, 0xc682,\n  0xb800, 0xb7a7, 0xb761, 0xb7ad, 0x2eba, 0x377e, 0x3780, 0x37a9,\n  0xb7d7, 0x2922, 0xa923, 0x3346, 0xcd91, 0xbaae, 0xb8f6, 0xb9e4,\n  0x391c, 0xbaa2, 0xbb1e, 0xaf03, 0x38cb, 0x3ab1, 0x3ac0, 0xc881,\n  0x38ca, 0x3ab1, 0x3ac0, 0xc881, 0xb936, 0xb7a8, 0xb7a3, 0xb80b,\n  0xba0a, 0x3808, 0xb85f, 0xca1c, 0x337f, 0xb816, 0xb8be, 0xbac2,\n  0xc897, 0xb9e8, 0x1e57, 0x9e58, 0xb858, 0x1e2b, 0x3792, 0xb860,\n  0x47f4, 0xc887, 0xb95a, 0xb749, 0x38c0, 0xbaa2, 0xbadd, 0xb9e7,\n  0xb9f6, 0xbb0f, 0xba3f, 0xba62, 0xb792, 0xd46e, 0xb8d5, 0xd45a,\n  0xb768, 0x2932, 0xb72c, 0xb7ab, 0xba62, 0xb7d5, 0xb918, 0xb78f,\n  0xb986, 0xb966, 0xb965, 0xb862, 0xc243, 0xba9d, 0x9e1a, 0x3885,\n  0xb9d1, 0xb781, 0xba13, 0x1e50, 0xba02, 0xb842, 0xbb16, 0xb9b2,\n  0xb961, 0xbaec, 0xbada, 0x3af8, 0xbb05, 0xc253, 0x2e72, 0xae79,\n  0xb43e, 0xb769, 0x3804, 0xd363, 0xb985, 0xba4a, 0xe198, 0xb864,\n  0xb9d9, 0x5028, 0xe392, 0xb784, 0xb7aa, 0x3885, 0xb973, 0xb760,\n  0x39f9, 0xba70, 0x2353, 0xb84c, 0x3865, 0xba4b, 0x3837, 0xba23,\n  0xb9c7, 0xba9f, 0x3abb, 0xce7f, 0xb80a, 0xbab3, 0xbae7, 0xb8bf,\n  0xb920, 0xb901, 0xb884, 0xb868, 0xb922, 0xb9d4, 0xb869, 0x1e50,\n  0xb97d, 0xb879, 0xb79e, 0xb8e5, 0xbad3, 0x3881, 0xcc17, 0xbac1,\n  0xb97c, 0xb807, 0xb7a2, 0x3837, 0xb9d8, 0x3743, 0xbb0a, 0x3a6b,\n  0xbace, 0x3aa3, 0xd262, 0x385c, 0xbafb, 0xb86a, 0x1e1b, 0x23e2,\n  0x3b09, 0xd5c2, 0x3734, 0xba8f, 0xb811, 0xb866, 0xcf47, 0xb92b,\n  0x3830, 0xcb4f, 0xb861, 0xb9b4, 0x3865, 0xb9d7, 0xb73a, 0x392d,\n  0xb955, 0x3a2a, 0xbace, 0x37f3, 0x3801, 0xb87a, 0xb9d4, 0xbae5,\n  0x3ad3, 0x5263, 0xd26a, 0xbade, 0xbaa9, 0xbafd, 0xb749, 0xb7fd,\n  0x3734, 0xba38, 0xcc37, 0xb863, 0x3a98, 0xd617, 0xba97, 0xb867,\n  0xb96b, 0xb9da, 0x38c0, 0xb91c, 0xba2f, 0xba81, 0x380e, 0xbadf,\n  0xb8bc, 0x23f0, 0xb7b1, 0x38ca, 0x38cb, 0x3ac0, 0xc881, 0xb9df,\n  0xb7e0, 0xb9db, 0x38ca, 0x38cb, 0x3ab1, 0xc881, 0xba12, 0xb8f9,\n  0xb7dc, 0xa1f3, 0xd030, 0x3a2a, 0xba6b, 0x3a10, 0xba79, 0xb803,\n  0xbb11, 0xb988, 0xb809, 0xb91f, 0xba7c, 0x380e, 0xbaaa, 0xba71,\n  0xb9e0, 0xb80c, 0xb7a5, 0xb987, 0xb80a, 0xb989, 0xbb1e, 0x385c,\n  0xba31, 0xba83, 0x380f, 0xbb17, 0xb989, 0x1e1b, 0x23e2, 0x3a37,\n  0xd5c2, 0x3743, 0xba29, 0xb924, 0xbad5, 0x271d, 0xb83e, 0xb984,\n  0x380f, 0xbb04, 0x60c1, 0x6b30, 0xeb31, 0x38c2, 0xbafa, 0x4f3a,\n  0xcf3c, 0x31fd, 0x3b53, 0x3b61, 0xea69, 0x1ffd, 0x30de, 0xda22,\n  0xbb5f, 0xbb50, 0xb17e, 0xbb3e, 0xbb58, 0xe4a6, 0xbb35, 0xdb0c,\n  0x23f9, 0xa606, 0xbb27, 0x3b22, 0xbb61, 0x259c, 0x3198, 0xb199,\n  0xbb3b, 0x355b, 0xb582, 0xb581, 0xbb24, 0x3b22, 0xbb53, 0x3b68,\n  0xbb69, 0x3b65, 0xbb69, 0x3b65, 0xbb68, 0xa24d, 0x3e0b, 0x3f80,\n  0xbf81, 0x6f52, 0xef7f, 0x1e97, 0x2c81, 0x2d57, 0xbb73, 0x1e97,\n  0x2c81, 0x2d57, 0xbb72, 0x2386, 0x23af, 0xbb77, 0x2386, 0x23af,\n  0xbb74, 0x2e30, 0x2f52, 0xc688, 0xbb7a, 0xbb79, 0x3bb1, 0xbbb2,\n  0x273d, 0x3b7f, 0x3b81, 0xbca1, 0x273d, 0x3b7e, 0x3b81, 0xbca1,\n  0xa92d, 0x273d, 0x3b7e, 0x3b7f, 0xbca1, 0xbba4, 0xbb98, 0xbb9e,\n  0xbbae, 0xbb8b, 0xbbab, 0xbb92, 0xbbaf, 0xbb87, 0xbb9a, 0xbb93,\n  0xbba1, 0x3b7c, 0xbbb2, 0x3b7c, 0xbbb1, 0xbbc6, 0xb147, 0xb740,\n  0x28f3, 0xbbbc, 0x28f3, 0xbbbb, 0xbbc1, 0x3bc0, 0x41ec, 0xdb6d,\n  0xdf42, 0xbbb4, 0x233b, 0xe1ab, 0xbbcf, 0xbbce, 0x50b2, 0xd8ac,\n  0xa936, 0xc562, 0xbbd8, 0xbbd7, 0xb583, 0xbbee, 0xbc08, 0xc403,\n  0xbbdf, 0xbbff, 0xbbf5, 0x4266, 0xc29b, 0xbc0c, 0x3be1, 0xbc0a,\n  0xbc08, 0xbc07, 0x3c17, 0x3c23, 0xc081, 0x3c14, 0x3c23, 0xc081,\n  0xe6f0, 0xbc2b, 0x3c14, 0x3c17, 0xc081, 0xbc2c, 0xbc22, 0xbc29,\n  0xbc33, 0xbc32, 0x3c35, 0xbc3a, 0x3c34, 0xbc3a, 0x1ecc, 0x21ab,\n  0xa1b0, 0x3c34, 0xbc35, 0x232f, 0x2f59, 0x2f5a, 0xbed9, 0xbf22,\n  0xbcdb, 0x3c5a, 0xbc61, 0x3c59, 0xbc61, 0x3c59, 0xbc5a, 0xbe6f,\n  0xbc74, 0xbc73, 0xbd36, 0xa1b3, 0xbef8, 0x3c89, 0xc00b, 0xbc88,\n  0xbca1, 0xa1b2, 0xbdfb, 0xbe9d, 0x273d, 0x3b7e, 0x3b7f, 0x3b81,\n  0xbc92, 0x3cfd, 0xbfa4, 0xc043, 0xbf1a, 0xc01d, 0xbdea, 0xbec4,\n  0xbe22, 0xbf59, 0x3eec, 0xcc04, 0xe63b, 0xbcb2, 0xbcb1, 0xbfd4,\n  0xe711, 0xa1b5, 0x1f71, 0xc04b, 0xbc4e, 0xbeaf, 0xbfd8, 0xa76d,\n  0xda3b, 0x3d99, 0xbdda, 0xa1ba, 0xa933, 0xbfa9, 0x3edd, 0xc027,\n  0xc018, 0xbffc, 0xc009, 0x3e8c, 0x3f51, 0xc67a, 0x3ca2, 0xbfa4,\n  0xbd87, 0xbf54, 0xa1bd, 0xc051, 0xbf54, 0xbc79, 0xcaaa, 0xb6f2,\n  0xbd79, 0xbde8, 0xbdfa, 0xbf3f, 0xbf86, 0xbe5e, 0xbeae, 0xbfc1,\n  0xbe2c, 0xbfae, 0x3e08, 0xbfdf, 0x26a0, 0xc00f, 0xbefb, 0xbe3e,\n  0xbef8, 0xbfc3, 0xbf6f, 0xbfdc, 0x3ee8, 0x3ff1, 0xbff5, 0xbfa3,\n  0x3f82, 0x3f84, 0xc013, 0xbf94, 0xbd43, 0xa1c2, 0x21c3, 0xa857,\n  0xbe7c, 0xbcfe, 0xbe09, 0xbe67, 0x5385, 0xd49e, 0x3cea, 0xbdda,\n  0xbfe4, 0x3e0e, 0xc006, 0xbf87, 0xbdf6, 0xbf23, 0xbf7f, 0xbe26,\n  0xbeb3, 0xbe19, 0xbecc, 0xbf64, 0x3f97, 0xc900, 0xbf32, 0x3e0b,\n  0x3f80, 0x3f81, 0xbfc7, 0xbf04, 0xa1c5, 0xa1c9, 0xbfb1, 0xbe7d,\n  0xc5f3, 0xa1c4, 0x3cea, 0xbd99, 0xbe0c, 0x21c0, 0xbd44, 0xbca6,\n  0x2a6c, 0xbedb, 0xbe7b, 0x26e6, 0x3e0a, 0xbe15, 0xbd9e, 0xbe05,\n  0xbd45, 0xbc97, 0xbdf8, 0xbe34, 0x3d4e, 0xbfdf, 0xbd89, 0x26e6,\n  0x3df5, 0xbe15, 0x3b6e, 0x3da9, 0x3f80, 0xbf81, 0xbde5, 0xbf2c,\n  0x3d9c, 0xc006, 0xbf38, 0xbfa0, 0x2d60, 0x3eaa, 0x5c3f, 0xdc40,\n  0xbf01, 0x26e6, 0x3df5, 0xbe0a, 0xc00b, 0xbef2, 0xbda3, 0xa1cf,\n  0xbca8, 0xbda1, 0xbeab, 0xbd4b, 0xbe07, 0x6030, 0xe04a, 0xbd51,\n  0xa1d1, 0xbd48, 0xbd8c, 0xbc64, 0xbdf3, 0xbd85, 0xbdc4, 0xc063,\n  0x3ebc, 0xbfd5, 0x3ee1, 0xbeff, 0xbfda, 0xa24c, 0xbf70, 0xbffa,\n  0xbf0a, 0xbf11, 0x3cfc, 0x3f51, 0xc67a, 0xa3b5, 0x3fdb, 0xd499,\n  0x21c6, 0xa1d6, 0xbf91, 0xbc9f, 0x2d60, 0x3e13, 0x5c3f, 0xdc40,\n  0xbe29, 0xbd49, 0x3cdd, 0xe061, 0xbda2, 0x4194, 0xe394, 0x3e7f,\n  0xbfd5, 0xbca7, 0xc06d, 0xbda4, 0xd365, 0xbf77, 0x232f, 0xbc47,\n  0xbefe, 0xbdeb, 0x3cf7, 0xc027, 0xbeef, 0x404e, 0x4054, 0xc067,\n  0xc044, 0x3e80, 0xbeff, 0xc005, 0xbffe, 0xbfeb, 0xc064, 0x3d5c,\n  0x3ff1, 0xbff5, 0xc058, 0xbfa6, 0x3caa, 0xcc04, 0xbede, 0xbe17,\n  0x2364, 0x3f9b, 0xc002, 0x3c7b, 0xbd52, 0xbd50, 0xbeda, 0x3e80,\n  0xbee1, 0xbe14, 0xbdaf, 0xb87c, 0xbe87, 0xbe89, 0xc055, 0xbca4,\n  0xbc49, 0xbd9f, 0x1e79, 0x1e7e, 0x9e81, 0xc1b3, 0xbe0d, 0xbf44,\n  0xbda8, 0xbe10, 0xbd46, 0xe88d, 0xbf31, 0xc04c, 0xc020, 0xc01f,\n  0xc032, 0xbff0, 0x3cfc, 0x3e8c, 0xc67a, 0x3d01, 0xbd2f, 0xbca9,\n  0x3f5c, 0xbff3, 0x3f5b, 0xbff3, 0xbda6, 0xbd54, 0xbe83, 0xc026,\n  0xbed7, 0xbda0, 0x3b6e, 0x3da9, 0x3e0b, 0xbf81, 0x3b6e, 0x3da9,\n  0x3e0b, 0xbf80, 0x3d67, 0x3f84, 0xc013, 0x3d67, 0x3f82, 0xc013,\n  0xbd47, 0xbd9d, 0xbe9c, 0xbd69, 0xbda7, 0xbfb3, 0x2364, 0x3ef7,\n  0xc002, 0xc03e, 0x21db, 0xa1dc, 0xbe11, 0xbd63, 0x3ca2, 0xbcfd,\n  0xbeea, 0xbcf6, 0xbd4d, 0xc032, 0xbdc0, 0xbf9a, 0xbd4a, 0xbd53,\n  0xbda9, 0x4028, 0xc02c, 0xc015, 0xbcb5, 0x3e7f, 0xbebc, 0xbcde,\n  0x3e81, 0xc02f, 0x3e95, 0xd499, 0xbd55, 0x3d4e, 0xbe08, 0xbd9b,\n  0xbee5, 0xbf4d, 0x3d5c, 0x3ee8, 0xbff5, 0x3f5b, 0xbf5c, 0x3d5c,\n  0x3ee8, 0xbff1, 0x65ca, 0xe614, 0xbe85, 0xbcfa, 0xbee4, 0x2364,\n  0x3ef7, 0xbf9b, 0xbee2, 0x3d9c, 0xbe0e, 0xbcfb, 0x3c88, 0xbe16,\n  0xbd4f, 0x3d67, 0x3f82, 0xbf84, 0xbfd2, 0xbcf8, 0xbca5, 0xbf47,\n  0xbf46, 0xbf74, 0x3cf7, 0xbedd, 0x3fd1, 0xc02c, 0x3fd1, 0xc028,\n  0xbfda, 0xaf25, 0x3f4b, 0xbfb0, 0xbf9c, 0xbca3, 0xbee0, 0x1f71,\n  0xbcd5, 0xbf45, 0x3edf, 0xc054, 0xc05d, 0xbd12, 0x3edf, 0xc04e,\n  0xbf13, 0xbee9, 0xc04f, 0xbe7e, 0xbee6, 0xbedf, 0xbec5, 0x2149,\n  0xc097, 0xc1c8, 0x670a, 0x671b, 0xe748, 0x4ac3, 0xcac8, 0x40fe,\n  0xdd64, 0x407e, 0xc0d6, 0x407d, 0xc0d6, 0xc1e6, 0xc16c, 0x3c14,\n  0x3c17, 0xbc23, 0x4210, 0x6229, 0xe46a, 0x23cd, 0xa3db, 0xc08f,\n  0xc08e, 0x2149, 0xc06e, 0xc152, 0xc197, 0x362d, 0x36cc, 0x4167,\n  0x41f3, 0xc7be, 0x4832, 0x491f, 0xc92e, 0xc0f1, 0xcf39, 0xeede,\n  0x1e3a, 0xc232, 0x4149, 0x632c, 0xe34a, 0xc1be, 0xc20d, 0x41d7,\n  0x421b, 0xc224, 0xc0f4, 0xc16c, 0x9e4c, 0x407d, 0xc07e, 0xc1ed,\n  0xc159, 0xc169, 0x413c, 0xc1d2, 0x41c1, 0xc217, 0xc1f4, 0xc1d9,\n  0xc1fc, 0xc1b1, 0xc0af, 0xc0c3, 0xc1a2, 0x407b, 0xdd64, 0xe2b7,\n  0x21de, 0x4155, 0x4188, 0xc199, 0xe2b2, 0x9e9f, 0x4130, 0xc1c4,\n  0xc165, 0xc1dc, 0xc1fe, 0x41cc, 0xc1d3, 0xb5e0, 0xc133, 0xc162,\n  0x4114, 0xc1c4, 0xc126, 0x40e7, 0xc1d2, 0xe35b, 0x40bc, 0x632c,\n  0xe34a, 0xc16e, 0xc09c, 0x21de, 0x4108, 0x4188, 0xc199, 0xb696,\n  0xb696, 0xc0df, 0x412d, 0xd315, 0xc115, 0x36cc, 0x40a4, 0x41f3,\n  0xc7be, 0xc0e6, 0x4080, 0xc0ca, 0xc151, 0x417e, 0xc185, 0x4174,\n  0xc185, 0x4174, 0xc17e, 0x21de, 0x4108, 0x4155, 0xc199, 0xc1fb,\n  0xd367, 0x3eb6, 0xe394, 0xc09d, 0x21de, 0x4108, 0x4155, 0xc188,\n  0xc0fd, 0xc0ed, 0xe88e, 0xbf2b, 0xc1ba, 0xc1b9, 0xc0bd, 0x40e8,\n  0xc217, 0x4114, 0xc130, 0xc06f, 0x411a, 0xc1d3, 0xac1e, 0x48f7,\n  0xcca6, 0x40e7, 0xc13c, 0x411a, 0xc1cc, 0xedf0, 0x40c2, 0x421b,\n  0xc224, 0xc0eb, 0xc116, 0x25b6, 0xd425, 0xc07f, 0xbbc1, 0xc0db,\n  0x36cc, 0x40a4, 0x4167, 0xc7be, 0xc0e9, 0xc18f, 0xc0ec, 0xc118,\n  0xd000, 0xc0c1, 0xc089, 0x40e8, 0xc1c1, 0x40c2, 0x41d7, 0xc224,\n  0x40c2, 0x41d7, 0xc21b, 0x9e89, 0xb11b, 0x1e3a, 0xc0ba, 0xb52b,\n  0xc23a, 0xc237, 0x9fce, 0x2c12, 0x2c13, 0xac14, 0x9e2c, 0xae8a,\n  0xb96a, 0xa889, 0xa899, 0xcb3a, 0xc258, 0x4255, 0x4a93, 0x4a97,\n  0xcabb, 0xb99c, 0x424e, 0x4a93, 0x4a97, 0xcabb, 0xc24d, 0xc25c,\n  0xc25b, 0xab83, 0x3c02, 0xc29b, 0x1f10, 0xa0a0, 0xb2b5, 0xc27d,\n  0x42a0, 0xc2a7, 0xc275, 0xc282, 0xc281, 0xa954, 0xc2a2, 0xd366,\n  0x3c02, 0xc266, 0x427a, 0xc2a7, 0xc28a, 0x427a, 0xc2a0, 0xc2ad,\n  0xc2ac, 0xa3d0, 0xdc7a, 0x5c7b, 0xdc8b, 0xc2c0, 0xc377, 0xc341,\n  0xc336, 0xc2b6, 0x2448, 0xb282, 0xc2fd, 0xdc7e, 0xc329, 0xc36e,\n  0xc370, 0xdc89, 0xaf87, 0xc368, 0xc2f9, 0xc345, 0xc36a, 0xc319,\n  0xc344, 0xc33b, 0x430d, 0xdc8d, 0xc2ed, 0xc2c8, 0xc318, 0xb08d,\n  0xc36b, 0xd653, 0xdc8e, 0x42f8, 0xdc8d, 0x431f, 0xc375, 0xc37c,\n  0xc2fe, 0xc2f0, 0x430e, 0xc375, 0xc380, 0xc33f, 0xc2cc, 0xdc6c,\n  0xdc93, 0xd75f, 0xc37b, 0xdc92, 0xc366, 0xc371, 0xc2b9, 0xc2f2,\n  0x4328, 0xd76f, 0xc2b8, 0xc2f1, 0xc2ee, 0xe3e1, 0x2956, 0x2968,\n  0xa96c, 0xdc98, 0xee9e, 0xc359, 0xc358, 0x217d, 0xc378, 0xc332,\n  0xc2ec, 0xc2ef, 0x4303, 0xc381, 0xc37a, 0xc2dd, 0xc2de, 0xc335,\n  0xd3b7, 0x430e, 0xc31f, 0xc2b7, 0x217d, 0xc363, 0xc36d, 0xc32e,\n  0xc315, 0xdc9b, 0xc321, 0xc36b, 0x583c, 0xdc9c, 0xa999, 0xa35b,\n  0xc4a3, 0xc4b5, 0xc452, 0xc46a, 0x43cf, 0xc474, 0xcfeb, 0xc44b,\n  0xc4b0, 0xc3fe, 0xc472, 0xc447, 0xc4bd, 0x4409, 0x4460, 0xc4a2,\n  0xc3ce, 0xc3cd, 0x43a8, 0xc474, 0xc43a, 0xc4cf, 0x4434, 0xc439,\n  0x2b9d, 0x2bda, 0x2bf3, 0xabf6, 0xa72d, 0xc4ab, 0x448e, 0xc4d4,\n  0xc43f, 0xc894, 0xc3b0, 0xbbec, 0xc46f, 0x43cb, 0x4460, 0xc4a2,\n  0x4483, 0xc4c8, 0xc4a1, 0xc489, 0x4411, 0xc463, 0x4410, 0xc463,\n  0xe6d5, 0x43e1, 0xc439, 0x43e1, 0xc434, 0xc3d0, 0xc4ca, 0xc3f2,\n  0xc3b3, 0xc3ae, 0xc39a, 0xc8af, 0x43cb, 0x4409, 0xc4a2, 0x4410,\n  0xc411, 0xc476, 0xc4a1, 0xd3b9, 0xc39b, 0xc405, 0xc4cc, 0xc3b1,\n  0x43a8, 0xc3cf, 0xc464, 0xc4a6, 0xc4b8, 0x440d, 0xc4c8, 0xc4bf,\n  0xc40f, 0x43f1, 0xc4d4, 0x440e, 0xc468, 0x43cb, 0x4409, 0xc460,\n  0xc391, 0xc477, 0xc3f0, 0xc3af, 0xc399, 0xc478, 0x28d0, 0xc3ba,\n  0xc487, 0x440d, 0xc483, 0xc4da, 0xc43c, 0xc470, 0xc3d1, 0xc4da,\n  0x43f1, 0xc48e, 0x44c9, 0xc4d2, 0xaf01, 0xcf38, 0xc515, 0xc50c,\n  0x4501, 0xcf3e, 0xc506, 0x44f6, 0xcf3e, 0xc4f7, 0xc4ef, 0x287c,\n  0x4816, 0xc8da, 0xc4ee, 0x4f42, 0xcf4c, 0x2617, 0x2690, 0xac1d,\n  0xb674, 0x1ea7, 0xc523, 0x1ea7, 0xc522, 0x4a4c, 0x52cf, 0xd607,\n  0x2b81, 0x2bcd, 0x2bd5, 0x2bd7, 0x2bdc, 0xabe7, 0xe6fb, 0x9fbd,\n  0x2722, 0xc53c, 0x2212, 0x2283, 0x2290, 0x456b, 0xc575, 0x2722,\n  0xc53a, 0xc54e, 0xc55d, 0x4559, 0xc571, 0xb6a2, 0x1ea9, 0x4552,\n  0x455d, 0xc55e, 0xd015, 0x283a, 0xc54d, 0x283a, 0xc54c, 0xc53d,\n  0xc560, 0x1ea9, 0x4546, 0x455d, 0xc55e, 0x4544, 0xc571, 0xa959,\n  0x1ea9, 0x4542, 0x4546, 0x4552, 0xc55e, 0x1ea9, 0x4546, 0x4552,\n  0xc55d, 0xc551, 0xa793, 0xbbd5, 0xc567, 0xc565, 0xc56a, 0xc568,\n  0x453b, 0xc575, 0xaf02, 0x4544, 0xc559, 0x23e0, 0x4582, 0x4589,\n  0xc58a, 0xc587, 0x453b, 0xc56b, 0xaf53, 0xc585, 0xa84d, 0x23e0,\n  0x4573, 0x4589, 0xc58a, 0x457a, 0xc586, 0xc585, 0xc574, 0x23e0,\n  0x4573, 0x4582, 0xc58a, 0x23e0, 0x4573, 0x4582, 0xc589, 0x458f,\n  0xde08, 0x458e, 0xde08, 0xc664, 0xc642, 0xc627, 0xc658, 0xc60d,\n  0xd0ac, 0xc667, 0xc632, 0xc621, 0xc60b, 0x46b0, 0xe764, 0xc5fe,\n  0xc665, 0xc670, 0xc5d9, 0xc662, 0x24d1, 0x2516, 0x255e, 0xc602,\n  0xc5c9, 0xc646, 0xc626, 0xc613, 0xc647, 0xd139, 0x45f3, 0xeebb,\n  0x3dcb, 0x45f2, 0xeebb, 0xc661, 0xc5fa, 0xc5f9, 0xc5b4, 0x24d1,\n  0x2516, 0x255e, 0xc5d6, 0xc649, 0xc62e, 0x3108, 0xc652, 0xc5af,\n  0xc5a1, 0xc5ea, 0xa591, 0xc61e, 0xc63b, 0xc617, 0xc5ae, 0xc645,\n  0xc5e9, 0xc59f, 0xc65f, 0xc671, 0xc606, 0xc5ad, 0xc63b, 0x4618,\n  0xc63a, 0xc66e, 0xc66d, 0xc597, 0x2af6, 0xb194, 0xc624, 0xc5e8,\n  0xc5eb, 0xc605, 0x3108, 0xc609, 0x4670, 0xd1c3, 0xc5a0, 0xc669,\n  0xc62a, 0xc5f4, 0xc5d2, 0xc66c, 0xc596, 0xc5c7, 0xc5ac, 0xc65e,\n  0xc672, 0xc663, 0xc63f, 0xc63e, 0xd1de, 0x45c8, 0x4655, 0xd1c3,\n  0xc62b, 0xc66b, 0xc675, 0xc674, 0x23d1, 0x32e8, 0x34a5, 0x3cfc,\n  0x3e8c, 0x3f51, 0x467c, 0x6166, 0x6197, 0xe1b1, 0xa0dc, 0x23d1,\n  0xc67a, 0x388d, 0xc682, 0x388d, 0xc681, 0xdc8c, 0x2e30, 0x2f52,\n  0xbb78, 0xc690, 0x2373, 0xa37d, 0xdccb, 0xc68b, 0xc69a, 0x21d2,\n  0xc691, 0xc6a1, 0xc69e, 0x36a4, 0xb6ad, 0xb61f, 0x45b1, 0xe764,\n  0xc6ba, 0x46b8, 0xc6b9, 0xef13, 0x46b2, 0xc6b9, 0x46b2, 0xc6b8,\n  0xc6b1, 0xef13, 0xc6c8, 0x376f, 0xb86e, 0xc6cd, 0xc6c1, 0x4f3d,\n  0x6262, 0xe4b5, 0xc897, 0xc6c7, 0xc6de, 0x2869, 0xee7d, 0x46e3,\n  0xdb7c, 0x5462, 0xd4cb, 0xc6dc, 0xc6e4, 0xcc20, 0xc6d7, 0xc6cf,\n  0xac3d, 0x46d1, 0xdb7c, 0xc6d8, 0xa362, 0x5361, 0xd62f, 0x1eff,\n  0xa023, 0xc742, 0x23bf, 0xce23, 0xc798, 0x5996, 0xd9c6, 0xb14e,\n  0xc71f, 0xc71e, 0xc726, 0xc725, 0xc72f, 0xc7d3, 0x472b, 0xc787,\n  0xc760, 0x1e51, 0x1f17, 0xd846, 0xd457, 0xc75c, 0xc709, 0xa6f0,\n  0xc75e, 0xc7bc, 0xc741, 0xc750, 0xc737, 0xc765, 0xc764, 0xd9a9,\n  0x23e1, 0xa8e1, 0xc7c1, 0xc7b6, 0xc72f, 0xc79e, 0xcff3, 0xc70d,\n  0xc792, 0xc7aa, 0xc7d2, 0xc7da, 0xc7a0, 0x1e86, 0xb6b8, 0xc7d9,\n  0xc786, 0xc751, 0x36cc, 0x40a4, 0x4167, 0xc1f3, 0xc785, 0xd499,\n  0xc7a2, 0xc72c, 0xc7b0, 0xc7a9, 0xcb36, 0x47e7, 0xda20, 0x9faf,\n  0x47e4, 0xda20, 0xc7ef, 0xc7eb, 0x3917, 0x4887, 0xc8f8, 0xc8ef,\n  0xc92c, 0x483f, 0x4926, 0x6271, 0x62db, 0xe45b, 0xc8ad, 0xc8bc,\n  0xc8c7, 0xc88e, 0x287c, 0x450e, 0xc8da, 0xc868, 0xc86f, 0xc8b8,\n  0xa38e, 0xc8aa, 0xc8d6, 0x40ae, 0x491f, 0xc92e, 0xc92a, 0xc931,\n  0xc92b, 0x47ff, 0x4926, 0x6271, 0x62db, 0xe45b, 0xc90e, 0xc85c,\n  0xb731, 0xc8a9, 0xc864, 0xc8fd, 0xc8d1, 0xc904, 0xc841, 0xc856,\n  0xc817, 0xc912, 0x27c6, 0x48ba, 0xc8bb, 0xc81a, 0xc8e0, 0x6e78,\n  0x6e7b, 0xee7c, 0x38ca, 0x38cb, 0x3ab1, 0xbac0, 0x3917, 0xc7f4,\n  0xc919, 0xc815, 0xc3f7, 0x27fc, 0x2d0e, 0xad5c, 0x27e6, 0x3900,\n  0xc6cc, 0xc8e7, 0xc8e3, 0x2ca9, 0x2d52, 0xad53, 0xe7a8, 0xc855,\n  0xc827, 0xc800, 0xc459, 0x33bd, 0xde2b, 0x6e78, 0xee7c, 0xc81c,\n  0x486e, 0xc8bb, 0x486e, 0xc8ba, 0xc801, 0xc920, 0xc812, 0xc859,\n  0xe695, 0xa387, 0xc82c, 0x287c, 0x450e, 0xc816, 0xc875, 0xc89c,\n  0xc89b, 0xc7f6, 0xc1d0, 0xc7f4, 0xeec4, 0xc857, 0xbda7, 0xc85a,\n  0x6669, 0x667a, 0xe6aa, 0x2760, 0xa89c, 0xc840, 0xc86a, 0xc88d,\n  0x40ae, 0x4832, 0xc92e, 0xc8c1, 0x47ff, 0x483f, 0x6271, 0x62db,\n  0xe45b, 0xc83a, 0xc83e, 0xc7fe, 0x40ae, 0x4832, 0xc91f, 0xc83b,\n  0xc93b, 0xc93a, 0xc9ae, 0xc9b4, 0xc9a9, 0xc9a1, 0xa996, 0xc995,\n  0xc9d8, 0xc9b0, 0xc98e, 0xb346, 0xc9b1, 0xc98d, 0xc984, 0xca1f,\n  0xc97f, 0xc9aa, 0xc978, 0xc96f, 0xc94e, 0xc943, 0xafa1, 0xc940,\n  0xc985, 0xc93c, 0xc962, 0xc977, 0xc93f, 0xe6e2, 0xc9c3, 0xa3b6,\n  0xc9bf, 0xca08, 0x527a, 0x52b8, 0x541f, 0x54fa, 0xd5dd, 0xcc7c,\n  0xae74, 0x49cc, 0x4a50, 0x67a6, 0x67a7, 0xef9d, 0x49cb, 0x4a50,\n  0xef9d, 0xca2e, 0xd018, 0x4a09, 0xccb3, 0xcc83, 0xa3ea, 0xe8eb,\n  0xc955, 0xca4d, 0x4a31, 0xca6a, 0xca2d, 0xca62, 0xca60, 0x4a3e,\n  0x4a3f, 0x55c1, 0xd5f3, 0xca0e, 0x4a5e, 0xca6d, 0xc9c6, 0x49d4,\n  0xccb3, 0xca05, 0x4cba, 0xd5ad, 0x4a3a, 0xca49, 0xb8f1, 0xc980,\n  0xca4c, 0xc9f8, 0xc9cd, 0x49f0, 0xca6a, 0xca3b, 0x4a4f, 0xca69,\n  0x4a1a, 0xca49, 0xca32, 0x4a01, 0x4a3f, 0x55c1, 0xd5f3, 0x4a01,\n  0x4a3e, 0x55c1, 0xd5f3, 0x4cd3, 0xdc37, 0xca57, 0x4c87, 0xcce0,\n  0x4a1a, 0xca3a, 0x4526, 0x4a23, 0x52cf, 0xd607, 0xc9ef, 0x6834,\n  0xe896, 0x4a33, 0xca69, 0x49cb, 0x49cc, 0xef9d, 0xca61, 0xca42,\n  0x4a06, 0xca6d, 0xc9fe, 0xca51, 0xc9fd, 0xca70, 0x6839, 0x683a,\n  0x683d, 0xe893, 0x4a33, 0xca4f, 0x49f0, 0xca31, 0xd3b7, 0x4a06,\n  0xca5e, 0xca63, 0x4aae, 0xcac6, 0xab86, 0xe631, 0xab8a, 0xcaca,\n  0xcab3, 0xcac5, 0xcab5, 0x4aaf, 0xcab0, 0x424e, 0x4255, 0x4a97,\n  0xcabb, 0x424e, 0x4255, 0x4a93, 0xcabb, 0xcac4, 0xcaa9, 0xcaba,\n  0xcac7, 0xca9d, 0xbd3c, 0xde30, 0x2be0, 0xcab6, 0x4a77, 0xcac6,\n  0x4a91, 0xcab0, 0x4a91, 0xcaaf, 0xca8a, 0xca8e, 0x2be0, 0xcaad,\n  0xcaa5, 0x424e, 0x4255, 0x4a93, 0xca97, 0x4076, 0xcac8, 0xca9c,\n  0xca8d, 0x4a77, 0xcaae, 0xcaa6, 0x4076, 0xcac3, 0xca83, 0xa947,\n  0x4aea, 0xdc4e, 0x9f2b, 0x6f8d, 0xef92, 0x1e26, 0x20a1, 0xae76,\n  0x4af6, 0xcaf8, 0x9fdf, 0x5abc, 0xdc0a, 0x4ad6, 0xdc4e, 0x4ade,\n  0xcaf8, 0x4ade, 0xcaf6, 0xcbea, 0xcbe4, 0x4b4d, 0xcbb0, 0x2173,\n  0xa4b2, 0xcb46, 0xcb67, 0xcb8d, 0x218a, 0x218c, 0x3547, 0x4b56,\n  0x4b5e, 0xcba3, 0x9f53, 0x4bc4, 0xd303, 0xc7e2, 0x424b, 0xcb8b,\n  0x4bed, 0xcc60, 0xcc69, 0xcbb2, 0xcb14, 0xd9d4, 0x4b0b, 0xcbb0,\n  0x3830, 0xba43, 0xcb7a, 0xcbc9, 0x3547, 0x4b27, 0x4b5e, 0xcba3,\n  0xcc06, 0xcb82, 0xcbf3, 0xcbe9, 0xcc39, 0xcb8f, 0x3547, 0x4b27,\n  0x4b56, 0xcba3, 0xcb15, 0xcbe0, 0xcc4c, 0xcb50, 0xcbd4, 0x4c3d,\n  0x4c56, 0xcc64, 0xcbe0, 0xcc21, 0xcb59, 0xcbe6, 0x00f6, 0x1e2a,\n  0xa00b, 0xcb3a, 0xcb1f, 0xcb5d, 0xae1a, 0xcc59, 0xa284, 0x3547,\n  0x4b27, 0x4b56, 0xcb5e, 0x4c00, 0xd536, 0xcbcb, 0xcc5c, 0xcc6e,\n  0xcc1e, 0xcc2b, 0xcbdb, 0x4b0b, 0xcb4d, 0xcb45, 0xd282, 0x4b35,\n  0xd303, 0xd483, 0xcb51, 0x2327, 0xcba7, 0xad4c, 0xcc23, 0xcc0d,\n  0xcb7c, 0xcc46, 0xcbac, 0x4b71, 0xcb7f, 0xcc12, 0xcb03, 0xcb86,\n  0x4b5b, 0x4c01, 0xcc6d, 0xcafe, 0x4b3c, 0xcc60, 0xcc43, 0xcc5b,\n  0xcc6c, 0xaf57, 0xcb5a, 0x4ba6, 0xd536, 0x4be9, 0xcc6d, 0x3caa,\n  0xbeec, 0xcb58, 0xcbd3, 0x4c14, 0xd4d1, 0xcbe1, 0x4c11, 0xd4d1,\n  0xcc6a, 0x3881, 0xba11, 0xcc2b, 0xcbaa, 0xc6d9, 0xcb80, 0xcbd1,\n  0xa142, 0x4bab, 0xcc18, 0x35d7, 0xcc4f, 0xba90, 0xcb5c, 0xcb7e,\n  0xae18, 0x4c52, 0xcc55, 0xcc5f, 0xcbee, 0xcbd7, 0xcb79, 0x35d7,\n  0xcc31, 0xcc58, 0xcc40, 0x55ae, 0xd5ea, 0xcc40, 0x4b7e, 0xcc64,\n  0x4c50, 0xd5e4, 0xcb93, 0xcbef, 0xcba8, 0xcc41, 0x4b3c, 0xcbed,\n  0x4b7e, 0xcc56, 0xcb3e, 0xcc16, 0xcbf1, 0x4be9, 0xcc01, 0xcba9,\n  0x2401, 0xefa5, 0xccf4, 0xe85e, 0xc9c8, 0xc9d5, 0x4a45, 0xcce0,\n  0xccb9, 0xeea4, 0xeecf, 0x5083, 0xd085, 0xccf6, 0xccf2, 0xccb5,\n  0x1ffc, 0xeb3b, 0xc1d0, 0x2986, 0x299d, 0x2a24, 0xccda, 0xccde,\n  0x36f2, 0x6eaf, 0x6eb4, 0xeeb9, 0xcce7, 0x49d4, 0xca09, 0xcca4,\n  0xcc8b, 0xca17, 0xccc9, 0xccdd, 0x6762, 0x6eaa, 0x6eab, 0x6eb5,\n  0xeeba, 0xe931, 0xccbd, 0xe92c, 0x4a40, 0xdc37, 0xe93b, 0x2986,\n  0x299d, 0x2a24, 0xcca7, 0xccc1, 0xccaa, 0x4a45, 0xcc87, 0xe94e,\n  0xccae, 0x26e2, 0xa6e3, 0xcc9d, 0xcc74, 0xcc9c, 0x1e1d, 0x4cf9,\n  0x4d72, 0xce9f, 0x4cf8, 0xce9f, 0xccfe, 0x1fc2, 0x4e18, 0x4e4b,\n  0xce6b, 0x229f, 0xccff, 0x4cfa, 0xcea0, 0x229f, 0xccfc, 0xceaa,\n  0xcea3, 0xcea6, 0xcea2, 0xcea1, 0xcea5, 0xcea8, 0xceab, 0xceb9,\n  0xceb3, 0xcebd, 0xcebe, 0xceaf, 0xceb0, 0xcebc, 0xceb1, 0x4d8b,\n  0xceae, 0x2e0b, 0xceb8, 0xcea7, 0xceb7, 0xcead, 0x4d4d, 0xceb4,\n  0xceba, 0xcdb7, 0xcd2e, 0xcdca, 0x4da2, 0xcef8, 0x324e, 0xcd25,\n  0x4e32, 0x4e8d, 0x4e9d, 0xcf27, 0xcec6, 0xcec2, 0xcec1, 0xcec5,\n  0xcebb, 0xcecd, 0xcec0, 0xcecb, 0xced0, 0xcecc, 0xcec8, 0xaf26,\n  0xcec4, 0xcd97, 0x4eca, 0xe77d, 0xae15, 0xcea9, 0x4d93, 0xcecf,\n  0xcd1d, 0xced7, 0xcec1, 0xced3, 0x34a7, 0x4d76, 0xcedd, 0xce8a,\n  0xcdea, 0x4e27, 0xcee6, 0x4ed4, 0xd8b4, 0xcede, 0xcedc, 0xceda,\n  0x4dab, 0x4dda, 0x4ebf, 0xcf10, 0xd32f, 0xced9, 0xced2, 0xced6,\n  0x4d82, 0xcedf, 0x1e1d, 0xccf8, 0xcedb, 0x4e6a, 0xced8, 0x34a7,\n  0x4d55, 0xcedd, 0xce36, 0x4e6d, 0xd812, 0xcee2, 0xced1, 0x4d71,\n  0xcedf, 0xcee1, 0xcee0, 0xcee8, 0xcee3, 0xcd18, 0xcee4, 0xcee5,\n  0x3346, 0xb8b1, 0x4d4c, 0xcecf, 0xcd45, 0x4e7c, 0xcee7, 0x4e8c,\n  0x4eed, 0xdce1, 0xcefc, 0xcf0d, 0x4dd1, 0xceff, 0x4d2c, 0xcef8,\n  0xcefb, 0x4d64, 0x4dda, 0x4ebf, 0xcf10, 0xcef6, 0xcef4, 0xcef9,\n  0xcefe, 0xceb2, 0xcf51, 0x4e43, 0xcef7, 0x23d5, 0xcf00, 0xaf69,\n  0xcd23, 0xceb6, 0xcefa, 0xceee, 0xcefd, 0x4e5b, 0xcef0, 0xceeb,\n  0xcef5, 0xcef2, 0xcf01, 0xcd27, 0xceef, 0xcde1, 0x303b, 0x3460,\n  0x4deb, 0xce3d, 0xce41, 0x4da0, 0xceff, 0x4dd6, 0xceea, 0xcef1,\n  0xce83, 0x4dd2, 0xceea, 0xcf03, 0xcf04, 0xcf02, 0x4d64, 0x4dab,\n  0x4ebf, 0xcf10, 0xcef5, 0xcf09, 0xcf0e, 0xcf14, 0x4dcd, 0xcf17,\n  0x4e01, 0xcf18, 0xd913, 0xcf0c, 0xcf16, 0xcf13, 0xcd5a, 0x303b,\n  0x3460, 0x4dcf, 0xce3d, 0xcf05, 0xceac, 0xcf11, 0xcf08, 0xcec3,\n  0xcf0f, 0xcf07, 0xd1f4, 0x4e15, 0xcf0a, 0x4de3, 0xcf18, 0x4e69,\n  0xcef3, 0xd426, 0xcf19, 0xcf22, 0xcf12, 0xcec9, 0xcf23, 0x4dfc,\n  0xcf0a, 0xcf1e, 0x4cfb, 0x4e4b, 0xce6b, 0xcf1a, 0xcf1c, 0xcf1f,\n  0xcf1b, 0x23bf, 0xc70c, 0x4e31, 0xceb5, 0x4d5b, 0xcee6, 0xae4c,\n  0xcf1d, 0xcf21, 0xcf29, 0x4e26, 0xceb5, 0x4d2f, 0x4e9d, 0xcf27,\n  0xcea4, 0xcf26, 0x4d77, 0xe9bd, 0xcf15, 0xcf25, 0x303b, 0x3403,\n  0x3460, 0x4dcf, 0xcdeb, 0xcee9, 0xcdd0, 0x4db3, 0xcef7, 0x4e70,\n  0xcf2b, 0xcf2a, 0xce66, 0x4e8e, 0x4e96, 0xcea4, 0x4cfb, 0x4e18,\n  0xce6b, 0x4e61, 0xcee3, 0xcf2f, 0xcec7, 0xcf2e, 0x1f1e, 0xa098,\n  0xcffb, 0xcf2d, 0xcdbd, 0xced5, 0x4e4d, 0xcee3, 0xcf0b, 0xce82,\n  0xce48, 0x4e04, 0xcef3, 0x4d75, 0xced8, 0x4cfb, 0x4e18, 0xce4b,\n  0x4d78, 0x5327, 0xd812, 0x4f30, 0xe7c1, 0xcf33, 0x4e45, 0x4f2b,\n  0xcf32, 0xcf34, 0xcece, 0x4d99, 0xcee7, 0xcf24, 0xcf31, 0xb9db,\n  0xce64, 0xcdd5, 0xe8a3, 0xcf2c, 0x4e98, 0xcf35, 0x4d56, 0xcea9,\n  0x4d9a, 0x4eed, 0xdce1, 0xcd2f, 0x4e4a, 0x4e96, 0xcea4, 0x4e92,\n  0xcf20, 0x4e8f, 0xcf20, 0xcf28, 0xb24d, 0x4e4a, 0x4e8e, 0xcea4,\n  0x4e89, 0xcf35, 0xcf06, 0x4d2f, 0x4e32, 0xcf27, 0x4cf8, 0xccf9,\n  0xccfe, 0xcd06, 0xcd05, 0xcd02, 0x4e34, 0x4e4a, 0x4e8e, 0xce96,\n  0xcd07, 0xcd04, 0xcd1a, 0xcd08, 0x4d4b, 0xce8a, 0xcd00, 0xcd09,\n  0xcdef, 0xcd1c, 0xcd18, 0xcd14, 0xcd15, 0xcd17, 0xcdb1, 0xcd0d,\n  0xcd1d, 0x4e26, 0xce31, 0xcdb8, 0xcd1b, 0xcd19, 0xcd0b, 0xcd21,\n  0xcd35, 0xcd16, 0xcd10, 0xcd13, 0x4d64, 0x4dab, 0x4dda, 0xcf10,\n  0xcd3a, 0x4d32, 0xcd4f, 0xcd31, 0xcdf4, 0xcd44, 0xcd33, 0xcd30,\n  0xce54, 0xcd42, 0xce10, 0xcd46, 0xcd3c, 0xcd40, 0xcd39, 0xce79,\n  0x4d4c, 0xcd93, 0xcd3f, 0xcd81, 0xcd68, 0xcd50, 0xcd5d, 0x4e5e,\n  0xe076, 0xcd70, 0xcd4e, 0x4d75, 0xce6a, 0xcd66, 0xcd62, 0xcd73,\n  0xcd61, 0x34a7, 0x4d55, 0xcd76, 0xcd5e, 0x4d71, 0xcd82, 0xcd86,\n  0xcd83, 0xcd79, 0x4d89, 0x4e4d, 0xce61, 0xcd8c, 0xcd8f, 0x4d5b,\n  0xce27, 0x4d99, 0xce7c, 0xcd88, 0xce3e, 0x4dd2, 0xcdd6, 0xcdbe,\n  0x4d9a, 0xce8c, 0xcdba, 0xcdcb, 0xcdbd, 0xcdd4, 0xcdc4, 0x4e04,\n  0xce69, 0xcdad, 0x4dbf, 0xcddc, 0xcdac, 0x4db3, 0xce43, 0x4d2c,\n  0xcda2, 0xcdaf, 0xcdb9, 0xcda3, 0xcd9c, 0xcdbb, 0xcdb0, 0x4da0,\n  0xcdd1, 0xcdb4, 0xcdc7, 0xcdd9, 0xcdd7, 0xcdd8, 0xcdec, 0xce9c,\n  0xcdf9, 0xcdf2, 0xcddd, 0x4dfc, 0xce15, 0xce62, 0xcde6, 0xcd9e,\n  0xcdde, 0xcdf6, 0x4d64, 0x4dab, 0x4dda, 0xcebf, 0xcdf1, 0xce0b,\n  0xcde9, 0xcde0, 0xce37, 0xcde8, 0xcde1, 0x4de3, 0xce01, 0xce09,\n  0xce1b, 0xce1f, 0xce1d, 0xce2b, 0xce17, 0xce1e, 0x4e8f, 0xce92,\n  0xce2d, 0xce0a, 0xce11, 0xce7d, 0xce39, 0xce35, 0x4d2f, 0x4e32,\n  0xce9d, 0xce93, 0xce2e, 0xce46, 0x4e45, 0xce70, 0xce88, 0xce5a,\n  0xce55, 0xce52, 0x4e6e, 0xe7c1, 0xce7e, 0xce70, 0xce6f, 0xce73,\n  0x4e89, 0xce98, 0x4f3b, 0x4f50, 0xe475, 0xa378, 0xc4e8, 0xc0b0,\n  0x3b20, 0xcf3c, 0xcf36, 0x3b20, 0xcf3a, 0x46cb, 0x6262, 0xe4b5,\n  0x44f6, 0xc501, 0x4516, 0xcf4c, 0xba3d, 0x275b, 0x28b0, 0x28b5,\n  0x28dc, 0xcf4e, 0x4516, 0xcf42, 0x275b, 0x28b0, 0x28b5, 0x28dc,\n  0xcf48, 0x4f36, 0xe475, 0x4db2, 0x4f52, 0xcf53, 0x4f51, 0xcf53,\n  0x4f51, 0xcf52, 0x2570, 0x26c9, 0xcf85, 0x4f70, 0xcf78, 0xcf77,\n  0x3683, 0xdfa0, 0x4f5a, 0xcf78, 0xcf86, 0x208c, 0x69e1, 0xea82,\n  0xcf80, 0xcf62, 0x4f5a, 0xcf70, 0xcf76, 0x4f88, 0xd98a, 0x21aa,\n  0xae42, 0xcf57, 0xcf74, 0x4f88, 0x5989, 0xd98a, 0x4f81, 0x4f87,\n  0x5989, 0xd98a, 0xd288, 0xd288, 0xcf97, 0xcf91, 0xcf90, 0xcf8c,\n  0xcfa5, 0xcfa8, 0xcfa4, 0xcfa3, 0xcf9f, 0xcfa1, 0x9e49, 0x217b,\n  0xe90a, 0xcfb9, 0x4fb6, 0xd1bb, 0x4fb4, 0xd1bb, 0xcfae, 0x4fc5,\n  0xcfe4, 0x4fc4, 0xcfe4, 0xcfe0, 0x9e60, 0xcff9, 0xcffd, 0xcfec,\n  0xcfc6, 0x4fc4, 0xcfc5, 0xc3a9, 0xcfda, 0xcffa, 0xc796, 0xcfd8,\n  0xcff1, 0x4e59, 0xe8dc, 0xcfd9, 0xc1ff, 0xb537, 0xd008, 0xd007,\n  0xd00b, 0xd00a, 0xc54a, 0xc9d0, 0xb7b1, 0xe504, 0xd02e, 0xd5c9,\n  0xd02c, 0x39c8, 0xe392, 0xd027, 0xd022, 0xbacc, 0xd073, 0xb065,\n  0xd043, 0xdead, 0x504c, 0x5077, 0xdec4, 0xd076, 0xd03c, 0xd07e,\n  0x5040, 0x5077, 0xdec4, 0xd079, 0x5068, 0xd06f, 0x2723, 0xa7a9,\n  0xe5fb, 0x28fb, 0xaa7f, 0x5066, 0x506a, 0xd070, 0x5061, 0x506a,\n  0xd070, 0x5054, 0xd06f, 0xd075, 0x5061, 0x5066, 0xd070, 0xd06f,\n  0x2abf, 0xb127, 0xd06f, 0x5054, 0x5068, 0x506b, 0xd06e, 0x5061,\n  0x5066, 0xd06a, 0xa8f0, 0xd038, 0x242c, 0xd07d, 0xd069, 0xd042,\n  0x5040, 0x504c, 0xdec4, 0xd04d, 0x242c, 0xd074, 0xd04b, 0x4c9b,\n  0xd085, 0x4c9b, 0xd083, 0xd088, 0xd087, 0xab8d, 0xd0af, 0x5178,\n  0xd193, 0xd135, 0xd19a, 0xd0da, 0xc5a3, 0xeaaf, 0x508e, 0xd0bb,\n  0xa3b7, 0x3bd3, 0xd8ac, 0xe91a, 0xd0af, 0xd14e, 0xd16b, 0xd139,\n  0x5105, 0x5107, 0xd10b, 0x1f37, 0xa191, 0x51bb, 0xd1bd, 0xb3f9,\n  0xd0a7, 0xa2dd, 0x585a, 0xeb0d, 0xb727, 0xd156, 0xd1da, 0x511b,\n  0xde01, 0xd1d9, 0xd1a0, 0x5106, 0xd13a, 0x50c1, 0xd10b, 0x5103,\n  0xd13a, 0xd0c1, 0xd109, 0xd108, 0x50c1, 0xd105, 0xd1be, 0x51d3,\n  0x51df, 0xead2, 0xd1cd, 0x5133, 0xd166, 0xd1bf, 0xd1e0, 0xa43b,\n  0x5173, 0xde0b, 0x50eb, 0xde01, 0xa507, 0x9fee, 0xd131, 0xd12b,\n  0x2318, 0x5111, 0xd166, 0xd0a1, 0xd161, 0xd1c9, 0x45ee, 0xd0c0,\n  0x5103, 0xd106, 0xd157, 0xa00e, 0x51c8, 0xd1d8, 0xe183, 0xd0be,\n  0xd0e8, 0xd13e, 0xd195, 0xd1a3, 0xd136, 0x2318, 0x5111, 0xd133,\n  0xd0bf, 0xef76, 0xe84b, 0x511a, 0xde0b, 0x50a0, 0xd193, 0xd1a9,\n  0xd183, 0xea30, 0xeac8, 0xd190, 0xd17d, 0xd182, 0xd1cf, 0x50a0,\n  0xd178, 0xd158, 0xd0a4, 0xd0f6, 0xd15f, 0xecd5, 0xd17b, 0xe94d,\n  0x6ac4, 0xead3, 0x4fb4, 0x4fb6, 0x50c6, 0xd1bd, 0x50c6, 0xd1bb,\n  0xd10d, 0xd113, 0xd1cb, 0x4655, 0xc670, 0x514a, 0xd1d8, 0xd138,\n  0xd1c0, 0xd110, 0x5191, 0xead5, 0x510f, 0xd1df, 0x514a, 0xd1c8,\n  0xd0ed, 0xd0ea, 0xd1e2, 0xc66f, 0x510f, 0xd1d3, 0xd114, 0xd1dc,\n  0xa367, 0x9e34, 0xd1f0, 0xd1ed, 0xcdfb, 0x23f0, 0xa76e, 0xdf3f,\n  0x9e0e, 0xa174, 0x1e3e, 0x3319, 0xb4e7, 0xb5e7, 0x3368, 0xd20e,\n  0xd20d, 0xd213, 0xd210, 0x5217, 0x62ea, 0xe4fa, 0x5216, 0x62ea,\n  0xe4fa, 0xe928, 0xd264, 0xd239, 0x523b, 0xd26b, 0xd266, 0xd259,\n  0xb7c1, 0xd24a, 0xd229, 0x522e, 0xd26b, 0xd236, 0xd231, 0xba2f,\n  0x3a79, 0xd26a, 0xd223, 0xd230, 0x3a79, 0xd263, 0x522e, 0xd23b,\n  0xd271, 0x26cf, 0xd270, 0x5276, 0x5277, 0x5c53, 0xdc54, 0x5273,\n  0x5277, 0x5c53, 0xdc54, 0x5273, 0x5276, 0x5c53, 0xdc54, 0xd279,\n  0xd278, 0x49c7, 0x52b8, 0x541f, 0x54fa, 0xd5dd, 0xcbc0, 0x4f8a,\n  0xcf8b, 0xd28c, 0xd28b, 0xa349, 0xd58c, 0xd56a, 0xd606, 0xd2b2,\n  0xd2b1, 0x49c7, 0x527a, 0x541f, 0x54b7, 0x54fa, 0x5553, 0xd5dd,\n  0xa20d, 0xd4ef, 0x1e42, 0xa208, 0xd466, 0xd5f6, 0xd3a7, 0xd407,\n  0xd4bc, 0xd2e7, 0x26cc, 0x4526, 0x4a4c, 0x5607, 0xd613, 0xd351,\n  0xd2e2, 0xd2e1, 0xd2ce, 0xa040, 0x55b2, 0xd60b, 0xd393, 0xd3f0,\n  0x4b35, 0xcbc4, 0x2179, 0xd332, 0xd396, 0xd622, 0xd526, 0xa84b,\n  0xc162, 0xd354, 0x4e6d, 0xd812, 0xcd65, 0xd438, 0x2179, 0xd30a,\n  0xd34a, 0xd395, 0xd346, 0x1f9f, 0xd5a6, 0xd2d0, 0xd318, 0x2e84,\n  0xd38a, 0xd598, 0xd3a2, 0xd558, 0xd4fd, 0xd434, 0xd54e, 0xd588,\n  0x5415, 0xd5ba, 0x46ea, 0x5569, 0xd62f, 0x3804, 0xb9ae, 0xd477,\n  0xbece, 0xc296, 0xc192, 0xd541, 0xd5ce, 0xd4c0, 0xd52d, 0xd552,\n  0xd452, 0xd464, 0x546f, 0x55ac, 0xd5e5, 0xdc46, 0xb357, 0xd510,\n  0x3d96, 0xd49e, 0x2e84, 0xd358, 0xd2fa, 0xd347, 0xd30e, 0xa50d,\n  0xd35a, 0xd2cb, 0xd40a, 0xd4ee, 0xd494, 0xd435, 0xd3df, 0xd59f,\n  0x4372, 0xca6b, 0xd555, 0xc469, 0x6d2c, 0x6daf, 0xee0e, 0x5493,\n  0xd4f4, 0xd3be, 0xd3bd, 0xd458, 0xb79c, 0x235c, 0xd514, 0xd3b5,\n  0xa807, 0x234e, 0x2d0b, 0xd550, 0xd2fd, 0xd506, 0x2eb5, 0x544a,\n  0xd4ed, 0xd445, 0xd2cc, 0xd3b1, 0xd420, 0xd4f1, 0x5360, 0xd5ba,\n  0xd600, 0xd63f, 0x49c7, 0x527a, 0x52b8, 0x54fa, 0xd5dd, 0xd40c,\n  0x56cd, 0xd7a2, 0x25b6, 0xc1df, 0xce08, 0xd56d, 0xd5a9, 0x9e07,\n  0x557f, 0x55fc, 0xd610, 0xd35d, 0xd3b4, 0xd330, 0xd55a, 0xd3f9,\n  0xa3f6, 0x2eb5, 0x53f4, 0xd4ed, 0xd36d, 0xc740, 0xd3d1, 0xb939,\n  0xd593, 0x46d6, 0xd4cb, 0xd36e, 0xd2c7, 0xd58a, 0xa85f, 0xb934,\n  0xd36f, 0xd525, 0xd364, 0xd515, 0xcbc6, 0xd546, 0xd562, 0xd523,\n  0xd51e, 0xb41c, 0x53bc, 0xd4f4, 0xd3b3, 0x31de, 0x3e95, 0x3fdb,\n  0xc7c7, 0x3d96, 0xd385, 0xaf60, 0xd533, 0xd2b8, 0xd2cd, 0xd36a,\n  0xae2d, 0x46d6, 0xd462, 0x4c11, 0xcc14, 0xd5cd, 0xd58a, 0xd63a,\n  0xd577, 0xe3a3, 0xea40, 0x2eb5, 0x53f4, 0xd44a, 0xd3b2, 0xd2c1,\n  0xd40d, 0x53bc, 0xd493, 0x49c7, 0x527a, 0x52b8, 0x541f, 0xd5dd,\n  0xd35c, 0x298d, 0xa9f8, 0xd3f1, 0xd37b, 0xd84a, 0x235c, 0xd3d4,\n  0xd482, 0xd48c, 0xd48b, 0xd471, 0xd311, 0xd36b, 0xd5bc, 0xd53b,\n  0xd4a8, 0xeebb, 0x2328, 0xd5cf, 0x4ba6, 0xcc00, 0xd594, 0xd61e,\n  0xd5fa, 0xd532, 0x55f9, 0xdb6a, 0xd368, 0xd487, 0x554b, 0xd602,\n  0x554a, 0xd602, 0xd35e, 0x234e, 0xd3ef, 0xd36c, 0xd2b8, 0xd3b8,\n  0xd35b, 0xd43c, 0xd489, 0xd361, 0xd29c, 0xd427, 0xd580, 0xd604,\n  0x55f4, 0xd60a, 0xd4e3, 0x5431, 0x55fc, 0xd610, 0xd570, 0xd35f,\n  0x546a, 0xd4df, 0xd297, 0xa9dc, 0xd460, 0xd537, 0x26ed, 0xa712,\n  0xd359, 0xd3b6, 0x1f9f, 0xd350, 0xd428, 0x55b0, 0xd60d, 0x536f,\n  0xd5e5, 0xca17, 0x4c54, 0xd5ea, 0xd5f7, 0x55ab, 0xd60d, 0x52f9,\n  0xd60b, 0x5360, 0xd415, 0xd52f, 0x4a01, 0x4a3e, 0x4a3f, 0xd5f3,\n  0x1e1b, 0x23e2, 0x3a37, 0xbb09, 0x201f, 0x2fa3, 0xd024, 0xd4dd,\n  0xd369, 0x2328, 0xd535, 0xd61a, 0x49c7, 0x527a, 0x52b8, 0x541f,\n  0xd4fa, 0x563d, 0xd646, 0xcc58, 0x536f, 0xd5ac, 0x4c54, 0xd5ae,\n  0x4a01, 0x4a3e, 0x4a3f, 0xd5c1, 0x5574, 0xd60a, 0xd2c8, 0xd5af,\n  0x553c, 0xdb6a, 0xd53a, 0x5431, 0x557f, 0xd610, 0xd41a, 0x554a,\n  0xd54b, 0xd572, 0xd2a6, 0x4526, 0x4a4c, 0x52cf, 0xd613, 0x5574,\n  0xd5f4, 0x52f9, 0xd5b2, 0x55ab, 0xd5b0, 0x6a65, 0xeaa5, 0x5431,\n  0x557f, 0xd5fc, 0x52cf, 0xd607, 0xba97, 0xd5d3, 0xd539, 0xd30f,\n  0xa170, 0x46ea, 0xd361, 0xd4e0, 0x55df, 0xd646, 0xd41d, 0xa914,\n  0x55df, 0xd63d, 0x1e55, 0xd65d, 0xd65c, 0xb16e, 0xc307, 0x21e6,\n  0xa904, 0xa47c, 0x565a, 0xd65b, 0x5657, 0xd65b, 0x5657, 0xd65a,\n  0xd64f, 0x1e55, 0xd64e, 0xa3f7, 0xd666, 0xd665, 0x9e8f, 0x567a,\n  0xd7f2, 0xd66f, 0xd7e3, 0xd66c, 0xd768, 0x2b83, 0xd6c7, 0xd66b,\n  0xd771, 0xe6d6, 0xd766, 0xd806, 0xd755, 0xd7fb, 0xd79e, 0xd801,\n  0x57a1, 0xd7c1, 0xd739, 0xd72f, 0x5745, 0x5836, 0xd83a, 0xd788,\n  0xd6d4, 0xd814, 0xd6ba, 0xec8d, 0xd706, 0xd6d4, 0xd6a6, 0x2b83,\n  0xd675, 0xd831, 0x5424, 0xd7a2, 0x5807, 0xd823, 0xd7f6, 0x5698,\n  0x56b4, 0xd716, 0xef03, 0xd83b, 0xd7a7, 0xd7c4, 0xd6fa, 0xd7ef,\n  0xd784, 0xd810, 0xd6f1, 0xd715, 0x5c9d, 0xdd1d, 0xd82d, 0xd6ac,\n  0xd782, 0xd6fb, 0xd6d4, 0xd778, 0x574b, 0xd81f, 0xd68c, 0xd68b,\n  0xeb4e, 0x5695, 0x5836, 0xd83a, 0x577f, 0xd805, 0xd7c8, 0xd7ec,\n  0x5721, 0xd81f, 0xd80d, 0xd680, 0xc32c, 0xd815, 0xd67e, 0xd671,\n  0xc33f, 0xd67b, 0xd717, 0xd7bb, 0xd811, 0x5747, 0xd805, 0xd7bf,\n  0xd70b, 0xd6f3, 0xd696, 0xd78e, 0xd78d, 0xd7fb, 0x5827, 0xd839,\n  0xd682, 0xd68a, 0x5424, 0xd6cd, 0x3594, 0xb59e, 0xd6ef, 0xd7ce,\n  0xd77c, 0xd780, 0xd68a, 0xd6f0, 0xd7c7, 0xd7c6, 0xd748, 0xd7a8,\n  0xd828, 0xd80e, 0xd66e, 0xd749, 0xd6f2, 0xd66b, 0xd6cf, 0xd821,\n  0xd80f, 0x5681, 0xd798, 0xd683, 0x5747, 0xd77f, 0xd67f, 0x56ce,\n  0xd823, 0xd74e, 0xd7d2, 0xd7f9, 0xd6f4, 0xd77e, 0x4d78, 0x4e6d,\n  0xd327, 0xd69d, 0xd761, 0x5721, 0xd74b, 0xd7f8, 0xb0f7, 0x56ce,\n  0xd807, 0x5799, 0xd839, 0xd7cf, 0xd702, 0xd6ca, 0x5695, 0x5745,\n  0xd83a, 0x5799, 0xd827, 0x5695, 0x5745, 0xd836, 0xd6ee, 0x4383,\n  0xdc9c, 0xd844, 0xd842, 0xe1c1, 0x1e51, 0x1f17, 0xc73e, 0x24af,\n  0xa580, 0xd511, 0xb72f, 0x2563, 0x5858, 0xe29c, 0xa40c, 0xadf7,\n  0x2563, 0x5854, 0xe29c, 0xd0e1, 0x236b, 0xd85e, 0x2675, 0x585f,\n  0xe053, 0xa1b2, 0x236b, 0xd85b, 0x2675, 0x585c, 0xe053, 0xd864,\n  0xd863, 0xd8dc, 0xe336, 0xd96f, 0xd89e, 0xa3ea, 0xd8b5, 0xd956,\n  0x2acb, 0x2b1d, 0xd8ca, 0xd918, 0xae12, 0x596a, 0x67c8, 0xe7e4,\n  0xd86e, 0x3bd3, 0xd0b2, 0xd972, 0xeef9, 0xd94f, 0x4d5d, 0xd8e4,\n  0xd87d, 0xd8cc, 0xd8dd, 0xd960, 0xd90c, 0xd885, 0xd8b7, 0x58e1,\n  0xe1cc, 0xd8e0, 0xd865, 0xd8c5, 0xd8d9, 0x58cf, 0xe1cc, 0xd933,\n  0xd95d, 0x58b4, 0xd932, 0xd947, 0x5912, 0xd943, 0xb707, 0xd92b,\n  0xd8f5, 0xd8f4, 0xa236, 0xa90d, 0xb0fc, 0xd8c8, 0xd90f, 0xd90e,\n  0x58e6, 0xd943, 0xcde5, 0xd886, 0xd938, 0xd94c, 0xd8ed, 0xd8e4,\n  0xd8e2, 0xd964, 0xd91b, 0x9eb5, 0x58e6, 0xd912, 0xd8e5, 0xd91d,\n  0xb742, 0xd8af, 0xd974, 0xd884, 0xd8e3, 0xd8c6, 0xd934, 0xd89c,\n  0xb446, 0xb4f7, 0xd86c, 0xd8ad, 0x5955, 0xd97d, 0xd974, 0x2364,\n  0xa365, 0x290d, 0xafa9, 0xe738, 0xb838, 0x4f87, 0x4f88, 0xd98a,\n  0x4f81, 0x4f87, 0x4f88, 0xd989, 0xd9c1, 0xaf01, 0xd9c3, 0xd9c4,\n  0x599a, 0x59ba, 0xd9c9, 0x5994, 0xd9c5, 0x5993, 0xd9c5, 0x470e,\n  0xd9c6, 0xd9c7, 0x5990, 0x59ba, 0xd9c9, 0xd9cb, 0xd9cd, 0xd9ce,\n  0x59bd, 0xd9c8, 0xc779, 0x9eb2, 0xd9ca, 0xd9cf, 0xd9b7, 0xd9d0,\n  0x59c0, 0xd9c2, 0xd9bc, 0x59b0, 0xd9d1, 0x358d, 0x5990, 0x599a,\n  0xd9c9, 0xd9b6, 0x59a7, 0xd9c8, 0xd9cc, 0x59b3, 0xd9c2, 0xd98b,\n  0x59b3, 0xd9c0, 0xd98e, 0xd98f, 0x5993, 0xd994, 0x470e, 0xd996,\n  0xd998, 0x59a7, 0xd9bd, 0x5990, 0x599a, 0xd9ba, 0xd9ac, 0xd9a1,\n  0xd9bf, 0xd9a5, 0xd9a6, 0xd9af, 0xd9b2, 0xd9b7, 0xcb4b, 0x59ef,\n  0xd9f6, 0xb2b5, 0xd9f4, 0xd9e7, 0xd9f8, 0xd9e3, 0x59d7, 0xd9f6,\n  0xd9de, 0x59d7, 0xd9ef, 0xd9e6, 0x59fd, 0xd9ff, 0x59f9, 0xd9ff,\n  0x59f9, 0xd9fd, 0x5a01, 0xdba0, 0x5a00, 0xdba0, 0xdba2, 0xdba3,\n  0xdba1, 0xdbaf, 0xdba7, 0xdba8, 0xdba6, 0xdbb1, 0xdbad, 0xdbaa,\n  0xdbab, 0x3258, 0xdbac, 0xdbb0, 0xdabe, 0xdbb9, 0xdbb6, 0xdbbc,\n  0x47e4, 0xc7e7, 0x241f, 0xa656, 0xbb23, 0xdbc0, 0xdbb7, 0xdbbb,\n  0xdbbf, 0x9fe1, 0xdbbe, 0xdbb8, 0x5b6f, 0xdbd1, 0xdbc9, 0x24ec,\n  0xdbc3, 0xdbca, 0xbce8, 0x5b49, 0xdbc1, 0xda6c, 0xdbc2, 0x2467,\n  0xdbcb, 0x246a, 0xa492, 0xa46d, 0xdbb5, 0xdbc8, 0xdbd2, 0xdbcf,\n  0xdbc4, 0xdbd0, 0xdbc7, 0xdbce, 0xdbc5, 0xdbcd, 0xdb8b, 0xa48f,\n  0xdbe9, 0xdbe2, 0xdbe3, 0xdbd5, 0xabdf, 0xdbd7, 0xdbe7, 0x5a3d,\n  0xdbdf, 0xdbe1, 0xdbe0, 0xdbd8, 0x5b6e, 0xdbdd, 0xdbe5, 0xdbe6,\n  0xdbdc, 0xdbd9, 0xdbd6, 0xdbd4, 0xdbdb, 0xdbd3, 0xa938, 0xdb7d,\n  0xdb04, 0xafd7, 0xdba4, 0xdbf3, 0xdbf6, 0xdbde, 0x3096, 0xb102,\n  0x2500, 0xdbf1, 0xdbee, 0xdbed, 0xdbda, 0xdbeb, 0xdbec, 0xdbef,\n  0xdbf0, 0xdbf5, 0xdbf2, 0x5aac, 0xdbf4, 0x5aaa, 0xdbf4, 0x5b80,\n  0xdbfb, 0xa531, 0xdc01, 0xdbfe, 0xdc07, 0xdbfd, 0x4ae9, 0xdc0a,\n  0xda1a, 0xdc03, 0xdc04, 0xdc06, 0xdc08, 0xdbff, 0xdbf7, 0x5aeb,\n  0xdc0f, 0xdbe4, 0xdbf9, 0xdbfc, 0xdc05, 0xdbba, 0xdc02, 0xdc00,\n  0xdc0d, 0xdc1e, 0xdc1d, 0x5afc, 0xdc16, 0x5b1a, 0xdc25, 0xdbe8,\n  0x5b8d, 0xdc14, 0xdc1b, 0xdc10, 0xdb5c, 0x5acc, 0xdc0f, 0x242f,\n  0x2518, 0x2553, 0x2554, 0x255f, 0xe5d9, 0xdc15, 0xdc18, 0xdbb3,\n  0x3697, 0xdc19, 0xdc0c, 0x5bbd, 0xe8a8, 0xdbf8, 0xdc1a, 0x5ae0,\n  0xdc16, 0xdbfa, 0xdc0b, 0xdc12, 0xdc13, 0xda8a, 0xdbcc, 0xdc0e,\n  0xbb4c, 0xdc1c, 0xdc27, 0xdc11, 0xdc21, 0xdc24, 0xdc26, 0x5ae1,\n  0xdc25, 0xdbb2, 0xdc22, 0x5b21, 0xdc23, 0x5b20, 0xdc23, 0xdc1f,\n  0xa546, 0x5b81, 0xdc2a, 0xdc2c, 0x5b7e, 0xdc2b, 0xa5f9, 0xdbb4,\n  0xdc28, 0x247c, 0xa611, 0xdc29, 0x24d7, 0xa629, 0x5a3c, 0xdbc1,\n  0xdbb9, 0xdc32, 0xdba5, 0xa642, 0x5b5b, 0xdc2e, 0xdbc6, 0xdc2f,\n  0xdc2d, 0x5b56, 0xdc2e, 0x5ae9, 0xdc31, 0xa66a, 0x553c, 0xd5f9,\n  0x2661, 0xdc35, 0xbbc1, 0x5a71, 0xdbdd, 0x5a33, 0xdbd1, 0xdbae,\n  0xa584, 0x5b93, 0xdba9, 0xdc34, 0xb2a4, 0xdbea, 0x46d1, 0xc6e3,\n  0xda89, 0x5b2d, 0xdc2b, 0x5aad, 0xdbfb, 0x5b2b, 0xdc2a, 0x5b9a,\n  0xdd5e, 0xdc09, 0x23d8, 0xa909, 0xda5f, 0x2bb4, 0xe1bc, 0x5ae4,\n  0xdc14, 0x1ec7, 0x5b90, 0xe6e0, 0x5b8e, 0xe6e0, 0xdc17, 0x5b72,\n  0xdba9, 0xdc30, 0xdc36, 0x5b83, 0xdd5e, 0xdc20, 0xdc33, 0x5a00,\n  0xda01, 0xda08, 0xda02, 0xda03, 0xda8d, 0xdb4f, 0xda10, 0xda0c,\n  0xda0e, 0x5b72, 0xdb93, 0xda15, 0xda16, 0x3258, 0xda17, 0xda13,\n  0xdb70, 0xda0a, 0xda18, 0xda12, 0xdb1b, 0xdaf1, 0xdb33, 0xda4e,\n  0xda1d, 0xda25, 0xda31, 0x5a1b, 0xdb4c, 0xdad6, 0xda29, 0xda1f,\n  0x5af7, 0xe8a8, 0xda2d, 0xda2a, 0xda23, 0x5a3c, 0xdb49, 0xda41,\n  0xda36, 0xda55, 0xda5b, 0xdb58, 0xda57, 0xda50, 0xda34, 0xda3a,\n  0xda46, 0xdb05, 0xda5e, 0xda58, 0xda54, 0xda56, 0x5a33, 0xdb6f,\n  0xda52, 0xda86, 0xda84, 0xda66, 0xda7f, 0xda69, 0xda70, 0xda7c,\n  0xdaa0, 0xda85, 0xda75, 0x5a71, 0xdb6e, 0xda95, 0xda6c, 0xda6e,\n  0xda6d, 0xda62, 0xda63, 0xdacd, 0xda72, 0xda73, 0xda6b, 0xdae2,\n  0xda61, 0xdb78, 0xdaa1, 0xdaa3, 0xda9e, 0xda9a, 0x309e, 0xdaa4,\n  0xdaa5, 0x2500, 0xda98, 0xdaa8, 0xda91, 0x5aaa, 0xdaac, 0xdaa6,\n  0xda92, 0xdacb, 0xdaf8, 0xdacf, 0xdafe, 0x5aad, 0xdb80, 0xdad1,\n  0xdab9, 0xdab2, 0xdac9, 0xdadb, 0xdab0, 0xdad7, 0xdabf, 0xdac2,\n  0xdad2, 0xdac4, 0xdab6, 0xdac7, 0xdb85, 0x4ae9, 0xdabc, 0xdb00,\n  0xdaf6, 0xdadc, 0xdb0a, 0x5acc, 0xdaeb, 0xdae7, 0xdb14, 0xdb01,\n  0xdb02, 0x5ae4, 0xdb8d, 0xdaed, 0x5ae0, 0xdafc, 0xdb92, 0xdaee,\n  0x3697, 0xdaf3, 0xdafa, 0xdae6, 0xdb0e, 0xdade, 0xdadd, 0xdb28,\n  0xdb9c, 0xdb16, 0xdb1d, 0x5b20, 0xdb21, 0xdb17, 0x5ae1, 0xdb1a,\n  0xdb19, 0xdb10, 0xdb39, 0xdb3e, 0x5b2b, 0xdb81, 0x5b2d, 0xdb7e,\n  0xdb2c, 0xdb5a, 0x5b56, 0xdb5b, 0xdb59, 0xdb95, 0xdb5c, 0xdb4e,\n  0xdb9e, 0xdb74, 0xdb6b, 0xdb96, 0x4a40, 0xccd3, 0xac88, 0x3e13,\n  0x3eaa, 0xdc40, 0x3e13, 0x3eaa, 0xdc3f, 0xd373, 0xac82, 0x1e30,\n  0x5c50, 0x673b, 0xe74a, 0x4ad6, 0xcaea, 0x1e30, 0x5c4a, 0x673b,\n  0xe74a, 0x5273, 0x5276, 0x5277, 0xdc54, 0x5273, 0x5276, 0x5277,\n  0xdc53, 0xdc5a, 0xdc58, 0xdc87, 0x9e88, 0xc32a, 0xdc76, 0xdc6e,\n  0xc2b2, 0xc2b4, 0xdc94, 0xc2c9, 0xef26, 0xdc64, 0xc2e2, 0xc2b4,\n  0xc683, 0x42f8, 0xc30d, 0xc30a, 0xc32f, 0xc32b, 0xdc7c, 0xc34f,\n  0xc37e, 0x4383, 0xd83c, 0x56fd, 0xdd1d, 0xdd1e, 0x2458, 0x24e1,\n  0xdd20, 0xdd1f, 0x321d, 0xdd22, 0xdd21, 0xdd2b, 0xdd27, 0xdd29,\n  0xdd2a, 0xdd2f, 0xdd23, 0x2295, 0x5cea, 0xdd28, 0x2f10, 0x5cb3,\n  0xdd30, 0xdd2e, 0xdd33, 0xdd40, 0x2f10, 0x5cae, 0xdd30, 0xdd35,\n  0xdd2c, 0x9e70, 0xdd37, 0xdd36, 0xdd39, 0xdd34, 0xdd3b, 0xdd38,\n  0xdd3a, 0xdd32, 0xdd42, 0xdd41, 0xdd3f, 0xdd45, 0xdd44, 0xdd3e,\n  0x2379, 0xb064, 0xdd3c, 0xc68e, 0x5d13, 0xdd43, 0x5ce4, 0xdd31,\n  0xdd48, 0xdd4a, 0x2bbe, 0xdcd4, 0x2bbe, 0xdcd3, 0xdd47, 0xdd4a,\n  0xdd52, 0xdd49, 0x5d0a, 0xdd5e, 0xdd50, 0xdd4f, 0xdd54, 0x4d9a,\n  0x4e8c, 0xdd53, 0x5d12, 0xdd24, 0x2356, 0xa8f2, 0x5cce, 0xdd31,\n  0xdd4b, 0xdd55, 0x2295, 0x5cad, 0xdd28, 0xdd4d, 0xdd26, 0xdd4c,\n  0xa046, 0x5d56, 0xe83c, 0xdd57, 0x5d4d, 0xef4e, 0xdd5a, 0xdd59,\n  0xdd2d, 0xdd5b, 0xdd5c, 0x3557, 0xdd25, 0xdd3d, 0xdd58, 0xdd5f,\n  0xdd60, 0x5cdb, 0xdd5e, 0x2050, 0x5d17, 0xdd5d, 0xdd61, 0xdd62,\n  0xdd46, 0x5ce2, 0xdd24, 0x5ccd, 0xdd43, 0xdd51, 0xdd4e, 0x2050,\n  0x5d0b, 0xdd5d, 0xdd63, 0xdd43, 0x56fd, 0xdc9d, 0xdc9e, 0xdca0,\n  0x2458, 0x24e1, 0xdc9f, 0xdca2, 0x321d, 0xdca1, 0xdcac, 0x5ce2,\n  0xdd12, 0x3557, 0xdd01, 0xdcec, 0xdca8, 0x5cad, 0xdcea, 0xdca9,\n  0xdcaa, 0xdca7, 0xdcb6, 0xdcfc, 0xdcaf, 0xdcab, 0x2f10, 0x5cae,\n  0xdcb3, 0x5cce, 0xdce4, 0xdcc1, 0xdcb0, 0xdcbc, 0xdcb4, 0xdcba,\n  0xdcb8, 0xdcbf, 0xdcbb, 0xdcc0, 0xdcbd, 0xdcca, 0xdd04, 0xdcc8,\n  0xdcc4, 0xdcb2, 0xdcc3, 0xdcc2, 0x5ccd, 0x5d13, 0xdd1c, 0xdcc7,\n  0xdcc5, 0xdd10, 0xdcd5, 0xdcd1, 0xdcda, 0x5cd2, 0xdcd6, 0xdce6,\n  0xdced, 0x5ceb, 0x5cf7, 0xef4e, 0xdd16, 0xdcde, 0xdcdc, 0xdd14,\n  0xdcd9, 0xdce1, 0xdce0, 0xdce7, 0x5cf4, 0xe83c, 0xdcf5, 0xdd05,\n  0xdcfb, 0xdcfa, 0xdcfd, 0xdcfe, 0x2050, 0x5d0b, 0xdd17, 0x5b83,\n  0x5b9a, 0x5cdb, 0xdd0a, 0xdd07, 0xdd08, 0xdd0d, 0xdd0f, 0xdd1b,\n  0x407b, 0xc0fe, 0xdd6c, 0xdd6a, 0xdd71, 0xdd70, 0xdd99, 0xdd95,\n  0x2c1f, 0x2c20, 0x6bae, 0x6c7b, 0xec9c, 0xdfdf, 0xdd82, 0xdd81,\n  0xdda8, 0xdda6, 0xdd76, 0xdd75, 0xdd91, 0xdd8b, 0xde7a, 0x5dc3,\n  0xde8d, 0xddb2, 0xddb1, 0xde89, 0xde38, 0x5daf, 0xde8d, 0xde4c,\n  0xde92, 0xdff9, 0xddfa, 0xde29, 0xde10, 0xde82, 0xde7a, 0xde55,\n  0xde9a, 0xdde5, 0xde8b, 0xac40, 0x50eb, 0xd11b, 0x458e, 0xc58f,\n  0xde34, 0x511a, 0xd173, 0xde8a, 0xddf5, 0xde64, 0xddf4, 0xde64,\n  0xc8b0, 0xde93, 0xde91, 0xcaac, 0xde0a, 0xddbb, 0xde4f, 0x5e79,\n  0xdea2, 0xddc4, 0xde44, 0xdea1, 0xde63, 0xddf8, 0xdff9, 0xde52,\n  0x5e28, 0xde2a, 0x5e8a, 0xde95, 0x5e4b, 0xdea2, 0x5dac, 0xddf7,\n  0xdea5, 0xddf6, 0xde84, 0xde83, 0xa8b8, 0xddb8, 0x5e0c, 0x5e70,\n  0xde95, 0x5dfb, 0xe6ae, 0x5daf, 0xddc3, 0xdeaa, 0xde2f, 0xddde,\n  0xde2c, 0x5e70, 0xde8a, 0xdeaa, 0xddf9, 0xdea6, 0xde51, 0x5e4b,\n  0xde79, 0xde7f, 0xde9c, 0x5e8f, 0xde99, 0xdeb3, 0xd03d, 0xdec0,\n  0x1f53, 0x5ec6, 0x6ab5, 0xead4, 0xdeb2, 0xdeb1, 0xdeac, 0xdeaf,\n  0x5040, 0x504c, 0xd077, 0x1f53, 0x5eb0, 0x6ab5, 0xead4, 0xdf66,\n  0xdf67, 0xdf68, 0xa19b, 0xdf6a, 0xdf69, 0xdf6b, 0x3799, 0x5ef6,\n  0xdf6d, 0xdf6f, 0x5f49, 0xdf6c, 0x5f5f, 0xdf70, 0xdf77, 0xdf78,\n  0x5f29, 0xdf88, 0xdf71, 0x3799, 0x5edb, 0xdf6d, 0xdf74, 0xdf75,\n  0xdf7a, 0xdf72, 0xdf76, 0x5f15, 0xdf7b, 0xdf7c, 0xdf5c, 0xdf83,\n  0xdf82, 0xdf81, 0xdf80, 0xdf7d, 0xdf7e, 0x5f1b, 0xdf86, 0xdf36,\n  0x5f19, 0xdf84, 0xb33d, 0x1fcc, 0xdf85, 0x5efd, 0xdf7b, 0x5f12,\n  0xdf84, 0x5f0c, 0xdf86, 0x5f3a, 0xdf8e, 0xdf89, 0xdf8b, 0xdf8d,\n  0xdf57, 0xdf8a, 0xdf87, 0x5ef0, 0xdf88, 0xdf6e, 0xdf8c, 0xdf6f,\n  0xdf91, 0xdf8f, 0xdf0f, 0xdf93, 0x5f1c, 0xdf8e, 0xdf90, 0xdf92,\n  0xdf97, 0xd206, 0x67b1, 0x67dc, 0xe7ec, 0xbbc2, 0x5f96, 0xe38b,\n  0xdf95, 0xdf98, 0x5ee2, 0xdf6c, 0xdf99, 0xdf7f, 0xdf9a, 0xdf21,\n  0xdf00, 0x5ee3, 0xdf70, 0xdf94, 0xdf79, 0xdf73, 0xdeca, 0xdecb,\n  0xdecc, 0xded2, 0xded1, 0xded4, 0x5ee2, 0xdf49, 0x3799, 0x5edb,\n  0xdef6, 0xdf2a, 0x5edf, 0xdf2d, 0x5ee3, 0xdf5f, 0xdef2, 0xdefb,\n  0xdf64, 0xdef8, 0xdef9, 0xdefc, 0xdee4, 0xdeeb, 0xdf62, 0xdefa,\n  0x5efd, 0xdf15, 0xdefe, 0xdf09, 0xdf0a, 0xdf4e, 0xdf08, 0xdf07,\n  0xdf05, 0xdf03, 0x5f12, 0xdf19, 0xdf14, 0x5f0c, 0xdf1b, 0xdf26,\n  0x5ef0, 0xdf29, 0xdf1d, 0xdf25, 0xdf1e, 0xdf2c, 0xdf1f, 0x5f1c,\n  0xdf3a, 0xdf33, 0xdf3b, 0xdf2f, 0xdf3c, 0xdf38, 0xdf61, 0xdf45,\n  0xdf44, 0xdf3e, 0xdf46, 0xdf4d, 0xdf54, 0x5f9e, 0x5fa4, 0xdfad,\n  0x5f9d, 0x5fa4, 0xdfad, 0xe5e2, 0x3683, 0xcf6a, 0x2f01, 0x5fa9,\n  0xdfaf, 0x5f9d, 0x5f9e, 0xdfad, 0xa29e, 0x2f01, 0xdfa8, 0x2f01,\n  0xdfa7, 0x2f01, 0x5fa1, 0xdfaf, 0xdfae, 0x5f9d, 0x5f9e, 0xdfa4,\n  0xdfab, 0x2f01, 0x5fa1, 0xdfa9, 0xa19c, 0xdfb6, 0xdfb5, 0x5fba,\n  0x6089, 0xe08a, 0x5fb9, 0x6089, 0xe08a, 0xe07c, 0x6039, 0xe054,\n  0xe077, 0xdfc3, 0xdfc2, 0xdfe4, 0xe04e, 0xe081, 0x231d, 0xae00,\n  0xe04b, 0xe084, 0xe019, 0xe032, 0xe060, 0xe055, 0xe023, 0x5d7f,\n  0x6045, 0xe072, 0xdfc6, 0xe008, 0xe087, 0xaef8, 0xaf80, 0xe003,\n  0x2f84, 0x2f91, 0xe015, 0x26d8, 0x26de, 0x26ec, 0x2efb, 0x2efd,\n  0xe025, 0x5de1, 0xde5f, 0x1e43, 0xaefc, 0xe069, 0xdfef, 0xdfe5,\n  0xe078, 0xe05c, 0xe052, 0x6013, 0xe05e, 0x6012, 0xe05e, 0x2f84,\n  0x2f91, 0xdff3, 0xdfd9, 0xdfde, 0x26d8, 0x26de, 0x26ec, 0x2efb,\n  0x2efd, 0xdff4, 0xe090, 0xa954, 0x3e38, 0xe04a, 0xa468, 0xdfdb,\n  0x5fbe, 0xe054, 0xe060, 0xe08f, 0xa06a, 0xe06f, 0x5fdf, 0xe072,\n  0x1fa6, 0xa075, 0x3e38, 0xe030, 0xdfd0, 0xdfc7, 0xe00e, 0x2675,\n  0x585c, 0xd85f, 0x5fbe, 0xe039, 0xdfdd, 0xe07a, 0xe065, 0xe00a,\n  0x6012, 0xe013, 0x5fdc, 0xe03a, 0xbeaf, 0xe059, 0xe002, 0xe041,\n  0x5fdf, 0xe045, 0xced5, 0xdfc1, 0xe009, 0xe057, 0xdfbd, 0xdfc8,\n  0xdfd8, 0xdfe9, 0x5fb9, 0x5fba, 0xe08a, 0x5fb9, 0x5fba, 0xe089,\n  0xe03b, 0xe026, 0xe61d, 0xe127, 0xe13a, 0xe0ab, 0xb751, 0xe0a6,\n  0xe114, 0xe0f5, 0xe112, 0xe134, 0x23b8, 0x6130, 0xe6a3, 0xe0cc,\n  0x3b1d, 0x6b30, 0xeb31, 0xe0bd, 0x60d2, 0xe0de, 0xe0df, 0xe136,\n  0xe12d, 0x60ce, 0xe0de, 0xe106, 0x60ce, 0xe0d2, 0xe0cf, 0xe148,\n  0xe116, 0xe0f6, 0xe0ae, 0xe0e8, 0x1e61, 0x6109, 0x610a, 0xe115,\n  0xe132, 0xe0d3, 0x1e61, 0x60f7, 0x610a, 0xe115, 0x1e61, 0x60f7,\n  0x6109, 0xe115, 0xe0b9, 0xe0ac, 0x1e61, 0x60f7, 0x6109, 0xe10a,\n  0xe0e7, 0xe093, 0xe0d1, 0x23b8, 0x60bb, 0xe6a3, 0xe0f8, 0xe0ba,\n  0xe0d0, 0xe146, 0xe09d, 0xe147, 0x2398, 0x28e5, 0xaedb, 0xe147,\n  0xe137, 0x613c, 0xe142, 0xe0e6, 0x9e23, 0xe194, 0xe189, 0xb59f,\n  0x6196, 0xe19e, 0xe18b, 0x467a, 0x6197, 0xe1b1, 0x616c, 0xe1bb,\n  0xa5e0, 0x6167, 0xe1bb, 0x61a4, 0xe1ac, 0xe1c5, 0xe1c3, 0x61b8,\n  0xe1c0, 0xd14c, 0xe195, 0xe154, 0xe91f, 0xe162, 0x24b8, 0xee79,\n  0xe14b, 0xe187, 0x615d, 0xe19e, 0x467a, 0x6166, 0xe1b1, 0xb9bc,\n  0x1e11, 0xeb57, 0x615d, 0xe196, 0x6171, 0xe1ac, 0x233b, 0xbbc9,\n  0x6171, 0xe1a4, 0x467a, 0x6166, 0xe197, 0x617f, 0xe1c0, 0x6167,\n  0xe16c, 0x2bb4, 0xdb8c, 0x617f, 0xe1b8, 0xd845, 0xe17e, 0xe17d,\n  0x2bc0, 0xb3a1, 0x61ca, 0xe1cb, 0x61c8, 0xe1cb, 0x61c8, 0xe1ca,\n  0x58cf, 0xd8e1, 0x27dc, 0xa8c4, 0xa398, 0x61d2, 0xe485, 0x61d1,\n  0xe485, 0x61da, 0x61fb, 0xe486, 0xe487, 0xe48c, 0x2200, 0xa202,\n  0xe48a, 0xe489, 0xe48b, 0x61d3, 0xe1fb, 0xe1e1, 0xe488, 0x1e71,\n  0x9e82, 0xe1dc, 0x621f, 0xe493, 0xe490, 0xb263, 0xe48f, 0xe492,\n  0xe2e9, 0x2251, 0x2263, 0x2271, 0x228d, 0x228e, 0x2292, 0x2294,\n  0xe1fc, 0xe497, 0xe48d, 0xe495, 0xe48e, 0x61d3, 0x61da, 0xe486,\n  0x2251, 0x2263, 0x2271, 0x228d, 0x228e, 0x2292, 0x2294, 0xe1f0,\n  0xe4af, 0xe4ab, 0xe498, 0xe4ad, 0xe4a5, 0x625b, 0xe4c5, 0xe49a,\n  0xe4a0, 0xe49d, 0x6264, 0xe4a9, 0xe4a4, 0xe4a3, 0xe491, 0xe49e,\n  0xe4ae, 0x629e, 0xe4a7, 0xe1e3, 0xe49f, 0xe499, 0xe4ac, 0xe49b,\n  0xe4aa, 0xe3ba, 0x4089, 0xe46a, 0x6438, 0xe4ce, 0x6268, 0xe4cc,\n  0xe4c8, 0xe4b6, 0xe4c3, 0xe4b4, 0xe4b9, 0xe4cd, 0xe4b0, 0xe4b8,\n  0xe4c0, 0xe4bf, 0xe4be, 0x6295, 0x62e8, 0x6421, 0x6435, 0xe4c1,\n  0xe49c, 0xe4bb, 0xe4ca, 0xe4ca, 0xe4c9, 0x2228, 0xe4c7, 0xe4cb,\n  0xe4c2, 0xe4b7, 0xe4b3, 0xe4c6, 0x6206, 0xe4c5, 0xe4ba, 0xe348,\n  0x46cb, 0x4f3d, 0xe4b5, 0x620e, 0xe4a9, 0xe4b2, 0x622e, 0xe4cc,\n  0xe4bc, 0xe4bd, 0x47ff, 0x483f, 0x4926, 0x62db, 0xe45b, 0x6373,\n  0x6451, 0x6452, 0xe46c, 0xe4cf, 0xe4f0, 0xe4d2, 0xe4ec, 0xe4ea,\n  0xe4f6, 0xe4f3, 0xe4dc, 0xe4da, 0xe4e3, 0xe4e8, 0x6244, 0x62e8,\n  0x6421, 0xe435, 0xe4e2, 0xe4ed, 0x6443, 0xe4eb, 0x62bd, 0xe4e6,\n  0x2563, 0x5854, 0xd858, 0xe21e, 0xe4d1, 0xe4f7, 0xe4f1, 0xe4df,\n  0xe4f5, 0xe4e5, 0xe4d5, 0xe4ef, 0xe4d0, 0x6322, 0xe4b1, 0xe47e,\n  0xe4de, 0xc10a, 0x62ed, 0xe510, 0x4107, 0xe500, 0xe508, 0xe511,\n  0xe509, 0xe29b, 0xe4dd, 0xe512, 0xe50c, 0xe4a1, 0xe4e4, 0xe4d7,\n  0xe50b, 0xe4fb, 0x47ff, 0x483f, 0x4926, 0x6271, 0xe45b, 0xe50a,\n  0x646f, 0xe513, 0x6381, 0xe4d8, 0xe504, 0xe503, 0xe514, 0x6244,\n  0x6295, 0x6421, 0x6435, 0xe507, 0x61ef, 0xe4d3, 0x5216, 0x5217,\n  0xe4fa, 0x62b3, 0xe510, 0xe4d6, 0xe506, 0xe502, 0xe4fd, 0x6444,\n  0xe4f8, 0xe50d, 0xe52f, 0xe4a2, 0xe51e, 0x2f55, 0xe332, 0xe516,\n  0xe52b, 0xe529, 0x641a, 0xe4d4, 0xe525, 0xe515, 0xe51f, 0xe524,\n  0x637f, 0xe531, 0xe4ee, 0xe51b, 0xe52c, 0xe52d, 0xe51c, 0x62ad,\n  0xe4b1, 0xe526, 0xe51a, 0xe520, 0xe521, 0x40bc, 0x4149, 0xe34a,\n  0xe522, 0xe519, 0x2f55, 0xe304, 0xe530, 0xd868, 0xe486, 0xe4fc,\n  0xe3e8, 0xe51d, 0xe528, 0xe52a, 0xe494, 0xe534, 0x6260, 0xe533,\n  0x40bc, 0x4149, 0xe32c, 0xe505, 0xe540, 0xe537, 0xe4e1, 0xe496,\n  0x4145, 0xe53b, 0xe4ff, 0x6445, 0xe53d, 0xe538, 0xe532, 0xe518,\n  0xe539, 0x63d3, 0xe52a, 0xe53e, 0x6274, 0x6451, 0x6452, 0xe46c,\n  0xe52e, 0xe536, 0xe517, 0x649f, 0xe53a, 0xe319, 0xe2e3, 0xe541,\n  0xe53f, 0xe545, 0xe551, 0xdf44, 0x642e, 0xe570, 0x39c8, 0xd028,\n  0x3eb6, 0xc194, 0x63c1, 0xe501, 0xb7aa, 0xe549, 0xe524, 0xe548,\n  0x6543, 0xef12, 0xe4a8, 0xd4e5, 0x6402, 0xe54f, 0xe4e0, 0xe4e9,\n  0xe53c, 0xe550, 0x63ae, 0xe547, 0x63ad, 0xe547, 0xe552, 0xe54d,\n  0xe553, 0xe54c, 0xe228, 0xe54e, 0xe396, 0xe55e, 0xe55f, 0xe4fe,\n  0xe546, 0xe559, 0xe560, 0xe55d, 0xe36f, 0xe4ff, 0xe535, 0xe557,\n  0xe558, 0xe55b, 0x222c, 0x2257, 0x2277, 0xe4f2, 0x434d, 0xe55c,\n  0xe556, 0xe542, 0x63fd, 0xe508, 0xe33e, 0xe55a, 0xe4e7, 0xe564,\n  0xe56a, 0x63e5, 0xe508, 0x63a6, 0xe54f, 0xe4d9, 0xe4f4, 0xe563,\n  0xe4f9, 0xe566, 0xe561, 0xe50f, 0xe49f, 0xe56b, 0x630f, 0xe4d4,\n  0x6481, 0xe562, 0xe568, 0x6244, 0x6295, 0x62e8, 0x6435, 0xe4c1,\n  0xe50e, 0xe50f, 0xe544, 0xe54c, 0x638c, 0xe570, 0xe56f, 0xe56d,\n  0x6244, 0x6295, 0x62e8, 0x6421, 0xe4c1, 0xe56e, 0x622c, 0xe4ce,\n  0xe4db, 0xe571, 0x629a, 0xe4eb, 0x62f3, 0xe4f8, 0xe360, 0xe56c,\n  0xe554, 0x6274, 0x6373, 0x6452, 0xe46c, 0x6274, 0x6373, 0x6451,\n  0xe46c, 0xb7aa, 0xe572, 0xe527, 0x647d, 0xe4bb, 0x47ff, 0x483f,\n  0x4926, 0x6271, 0xe2db, 0x6909, 0xe95f, 0xe574, 0xe4c4, 0xe573,\n  0xa228, 0xe565, 0x4089, 0xe229, 0x6274, 0x6373, 0x6451, 0xe452,\n  0xe567, 0xe2df, 0xe4a5, 0xe575, 0xe576, 0x4f36, 0xcf50, 0xe54a,\n  0xe569, 0xe523, 0x645a, 0xe4bb, 0xe2ae, 0xa1ff, 0x641d, 0xe562,\n  0xe54b, 0x61d1, 0xe1d2, 0x61d3, 0x61fb, 0xe337, 0xe1d4, 0xe1dd,\n  0xe1d8, 0xe1d7, 0xe1d9, 0xe1d5, 0xe1f7, 0xe1fa, 0xe1e7, 0xe1e4,\n  0xe212, 0xe1e9, 0xe1e3, 0xe346, 0xe1f9, 0xe35a, 0xe1f5, 0xe203,\n  0xe223, 0xe208, 0xe226, 0xe245, 0xe20d, 0xe214, 0x6221, 0x637e,\n  0x6418, 0xe53a, 0xe209, 0xe2c7, 0xe2fc, 0xe211, 0xe210, 0x6205,\n  0xe470, 0xbb3d, 0xe21e, 0xe3a2, 0x620e, 0xe264, 0xe227, 0xe201,\n  0xe225, 0xe204, 0xe215, 0xe200, 0xe23a, 0x62ad, 0xe322, 0xe266,\n  0xe257, 0xe237, 0x46cb, 0x4f3d, 0xe262, 0xe233, 0xe255, 0xe23d,\n  0xe238, 0xe25e, 0x6246, 0x645a, 0xe47d, 0xe26c, 0xe26d, 0xe240,\n  0xe23f, 0xe23e, 0x6244, 0x6421, 0xe435, 0xe251, 0xe234, 0xe460,\n  0x6206, 0xe25b, 0xe25a, 0x2228, 0xe24b, 0xe230, 0xe249, 0x6247,\n  0xe248, 0xe24d, 0x622e, 0xe268, 0xe239, 0x622c, 0xe438, 0xe276,\n  0xe2ac, 0xe2a0, 0xe27a, 0xe2e9, 0x630f, 0xe41a, 0xe2aa, 0xe2ee,\n  0xe2cf, 0xe2e3, 0xe403, 0xe28d, 0xe43a, 0xe285, 0xe2c1, 0xe2b1,\n  0xe2a6, 0xe3a7, 0xe358, 0xe296, 0xe291, 0xe2cc, 0xe2a9, 0xe29b,\n  0xe3f5, 0xe293, 0xe3a9, 0xe27f, 0x629a, 0xe443, 0xe27b, 0xe298,\n  0xe31a, 0xe2ab, 0xe278, 0xe2a5, 0x222c, 0x2257, 0x2277, 0xe3df,\n  0xe283, 0xe40b, 0xe2a8, 0xe280, 0xe2a3, 0x62f3, 0xe444, 0xe412,\n  0x5216, 0x5217, 0xe2ea, 0xe2d9, 0xe338, 0xe2f1, 0xe3c8, 0x635e,\n  0xe3d7, 0xe2b7, 0xe396, 0xe2f0, 0xe2e5, 0x5021, 0xe2e4, 0xe34b,\n  0xe2ef, 0xe2e8, 0x62b9, 0x63e5, 0xe3fd, 0xe2bc, 0xe2dd, 0xe2d2,\n  0xe2c5, 0xe2f6, 0xe426, 0x6417, 0xe427, 0x62b3, 0xe2ed, 0xe2bb,\n  0xe2c3, 0xe2df, 0xe2e6, 0xe312, 0xe306, 0xe37a, 0xe369, 0xe32f,\n  0xe328, 0xe31b, 0xe321, 0xe340, 0xe301, 0xe315, 0xe329, 0xe32b,\n  0xe32e, 0xe47c, 0x6318, 0xe39a, 0xe310, 0xe326, 0xe455, 0xe341,\n  0xe308, 0x6343, 0xe36f, 0xe307, 0xe31f, 0xe320, 0xe375, 0xe2f8,\n  0xe333, 0xe319, 0xe365, 0xe348, 0xe347, 0xe3d8, 0xe376, 0xe354,\n  0xe364, 0xe36c, 0x637e, 0xe49f, 0xe35b, 0xe3aa, 0xe360, 0xe370,\n  0xe384, 0xe34d, 0xe382, 0xe3e4, 0xe3a1, 0xe428, 0xe387, 0xe3cc,\n  0x63ad, 0xe3ae, 0xe39b, 0xe398, 0xe477, 0xe482, 0x63b8, 0xe42b,\n  0xe3b3, 0xe3bf, 0x63a6, 0xe402, 0xe3ac, 0xe38a, 0xe3b0, 0xe3b5,\n  0xe44c, 0xe3e2, 0xe3dc, 0xe3dd, 0xe3cd, 0xe3f0, 0xe3de, 0xe3e1,\n  0xe3d1, 0xe3c3, 0xe3c7, 0xe3d0, 0xe414, 0x641d, 0xe481, 0xe410,\n  0xe3f7, 0xe465, 0xe413, 0xe46d, 0xe420, 0xe479, 0xe3f9, 0xe419,\n  0xe44a, 0xe433, 0xe436, 0xe432, 0x638c, 0xe42e, 0xe43f, 0xe454,\n  0xe463, 0xe45e, 0xe471, 0xe472, 0x1ee7, 0x214f, 0x6578, 0xe57f,\n  0x1ee7, 0x214f, 0x6577, 0xe57f, 0x1e45, 0x9e46, 0x1ee7, 0x214f,\n  0x6577, 0xe578, 0xe5e8, 0xe5e9, 0xe5ea, 0xe5eb, 0x6589, 0xe5ed,\n  0xe5ec, 0x6587, 0xe5ed, 0xaf00, 0xe5f6, 0xe5f3, 0x65a0, 0xe5f0,\n  0x6592, 0xe5f2, 0x6591, 0xe5f2, 0xe5f4, 0xe5f5, 0xe5f8, 0x65f9,\n  0xeb27, 0x658f, 0xe5f0, 0xe602, 0x2173, 0x65d7, 0xe5dc, 0xe601,\n  0xa408, 0xe600, 0xa4c4, 0xe5fa, 0xe5fd, 0xe603, 0xe606, 0xe5fe,\n  0x65b2, 0xe605, 0x65b1, 0xe605, 0x65c3, 0xe612, 0xe60a, 0x2266,\n  0xe609, 0xe60e, 0xe60f, 0xe60d, 0xe608, 0xe60c, 0x65b4, 0xe612,\n  0xb77f, 0xb697, 0xe5f1, 0x3ff6, 0xe614, 0xe615, 0xe611, 0xe607,\n  0xe617, 0xe618, 0xe5ff, 0xe616, 0xe619, 0xe5ef, 0x2173, 0x65a2,\n  0xe5dc, 0x3597, 0x6b25, 0x6b26, 0x6b2a, 0xeb2d, 0x242f, 0x2518,\n  0x2553, 0x2554, 0x255f, 0xdaec, 0x2173, 0x65a2, 0xe5d7, 0xe61a,\n  0xe613, 0xe610, 0xdf9f, 0xe61b, 0xe5fc, 0xe580, 0xe582, 0xe583,\n  0xe586, 0xe588, 0x6587, 0xe589, 0xa54f, 0xe5d6, 0x658f, 0xe5a0,\n  0xe5c8, 0x6591, 0xe592, 0xe58e, 0xe593, 0xe594, 0xe58c, 0xb0b6,\n  0xe598, 0x6599, 0xeb27, 0xe5a8, 0xd05e, 0xe5e5, 0xe5a9, 0xe5ad,\n  0xe5d3, 0xe5a5, 0xe5a3, 0xe5a1, 0xe5ab, 0xeb2e, 0x65b1, 0xe5b2,\n  0xe5ac, 0xe5cd, 0xe5be, 0x2266, 0xe5b9, 0xe5b6, 0xeb29, 0xe5bf,\n  0xe5bd, 0xe5bb, 0xe5bc, 0xe5e1, 0xe5cc, 0x65b4, 0xe5c3, 0xe5e0,\n  0x3ff6, 0xe5ca, 0xe5cb, 0xe5d4, 0xe5d0, 0xe5d2, 0xe5d5, 0x65de,\n  0xeb2b, 0xe5e4, 0xe61d, 0x6091, 0xe61c, 0xe68a, 0x1f8c, 0x6634,\n  0x6670, 0xe682, 0x6633, 0xe67d, 0xe638, 0x2347, 0xe65e, 0x2742,\n  0xac85, 0x274f, 0xa76f, 0xa751, 0xa740, 0xca7d, 0x6626, 0xe67d,\n  0x1f8c, 0x6625, 0x6670, 0xe682, 0xe663, 0x2826, 0xe68e, 0xe628,\n  0xbcae, 0x2768, 0xe641, 0x2768, 0xe640, 0xe69b, 0xe678, 0xe6b4,\n  0xe673, 0xe658, 0xa905, 0x665c, 0x665d, 0xe67f, 0xa7c8, 0xe649,\n  0x6655, 0xe67f, 0xe655, 0x2347, 0xe629, 0xaf8f, 0x2866, 0xe635,\n  0xe677, 0x2c9b, 0x2cf6, 0x2d8b, 0x2d8c, 0x2db9, 0x669d, 0xe6af,\n  0xe695, 0x4906, 0x667a, 0xe6aa, 0x1f8c, 0x6625, 0x6634, 0xe682,\n  0xe648, 0xe665, 0xe646, 0x4906, 0x6669, 0xe6aa, 0x2794, 0xa819,\n  0x6626, 0xe633, 0x6655, 0xe65c, 0x2830, 0xa895, 0x1f8c, 0x6625,\n  0x6634, 0xe670, 0x27de, 0xa824, 0xe61f, 0xb697, 0x2826, 0xe636,\n  0xe6a8, 0x1e5a, 0x66a0, 0xe6b1, 0x48d2, 0xe668, 0xa75e, 0xe69f,\n  0xe645, 0x2c9b, 0x2cf6, 0x2d8b, 0x2d8c, 0x2db9, 0x6666, 0xe6af,\n  0xe699, 0x1e5a, 0x6690, 0xe6b1, 0x23b8, 0x60bb, 0xe130, 0xe68f,\n  0x4906, 0x6669, 0xe67a, 0x275f, 0xa8b3, 0xde8b, 0x2c9b, 0x2cf6,\n  0x2d8b, 0x2d8c, 0x2db9, 0x6666, 0xe69d, 0x1e5a, 0x6690, 0xe6a0,\n  0xea98, 0xe647, 0x66b7, 0xe6b8, 0x66b6, 0xe6b8, 0x66b6, 0xe6b7,\n  0x2bc9, 0x674d, 0x674e, 0x674f, 0x6db4, 0x6e16, 0xee64, 0xa3ea,\n  0xe6cb, 0xe6e3, 0x6ceb, 0xed08, 0x20f1, 0xecf8, 0xe6bd, 0xe6dd,\n  0xe6db, 0x3742, 0xe6dc, 0x2f6b, 0x4431, 0xed70, 0xd67d, 0xa3cc,\n  0xee1b, 0x66cf, 0xedb5, 0x3742, 0xe6d1, 0xe6cd, 0x6d8f, 0x6dc4,\n  0xee21, 0xadb2, 0x5b8e, 0xdb90, 0xc9bb, 0xe6be, 0xbc1b, 0x9e91,\n  0xe742, 0xe717, 0xe741, 0x671a, 0xe727, 0xc535, 0x671a, 0xe727,\n  0xe73d, 0xeef4, 0x4075, 0x671b, 0xe748, 0xbcbe, 0xe6f6, 0x66fa,\n  0x66fe, 0xe727, 0x4075, 0x670a, 0xe748, 0xe722, 0xe721, 0x66fa,\n  0x66fe, 0xe71a, 0xe744, 0xd987, 0x1e30, 0x5c4a, 0x5c50, 0xe74a,\n  0xe701, 0xe6f7, 0xe6f3, 0xe72d, 0xa3c7, 0x4075, 0x670a, 0xe71b,\n  0xa3c6, 0x1e30, 0x5c4a, 0x5c50, 0xe73b, 0x2bc9, 0x66ba, 0x674e,\n  0x674f, 0x6db4, 0x6e16, 0xee64, 0x2bc9, 0x66ba, 0x674d, 0x674f,\n  0x6db4, 0x6e16, 0xee64, 0x2bc9, 0x66ba, 0x674d, 0x674e, 0x6db4,\n  0x6e16, 0xee64, 0x2bc8, 0xe752, 0x2bc8, 0xe751, 0xe75a, 0x2172,\n  0x2929, 0xe75d, 0xe75c, 0xe753, 0xe759, 0x2172, 0x2929, 0xe754,\n  0x4cc6, 0x6763, 0x6eaa, 0x6eab, 0x6eb5, 0xeeba, 0xe762, 0x45b1,\n  0xc6b0, 0xe768, 0xe82e, 0xe765, 0x676d, 0xe771, 0x676b, 0x6771,\n  0xe7e7, 0x676b, 0x676d, 0xe7e7, 0xe7be, 0xcd46, 0x6789, 0xef17,\n  0x6780, 0xef17, 0xe7b5, 0xe78d, 0xe78c, 0xade9, 0xe7c3, 0xe7bd,\n  0xe7b9, 0x49cb, 0xe7a7, 0x49cb, 0xe7a6, 0xc89f, 0xe7c9, 0x5f41,\n  0xe7dc, 0xe7dd, 0xe78b, 0xe79f, 0xe792, 0xe774, 0x4e6e, 0xcf30,\n  0xe791, 0xa343, 0x589c, 0xe7e4, 0xe7af, 0xe7e6, 0xe7e7, 0x2dff,\n  0xe7e8, 0xe7e9, 0xe7ea, 0x5f41, 0x67b1, 0xe7ec, 0xe7b2, 0xe7eb,\n  0x589c, 0xe7c8, 0xe7cb, 0x676d, 0x6771, 0xe7cc, 0x2dff, 0xe7cd,\n  0xe7d3, 0xe7d9, 0xe7de, 0x5f41, 0xe7dc, 0xe7ee, 0xe7ed, 0xe7f1,\n  0xe7ef, 0x6f4f, 0xef51, 0xe7fb, 0xe7f5, 0xa4cd, 0xe875, 0xe876,\n  0xe877, 0xe879, 0xe87a, 0xe878, 0xe87b, 0xe87c, 0xe882, 0xe880,\n  0xe883, 0xe884, 0xe87d, 0xe881, 0xe87f, 0xe887, 0xe886, 0x6838,\n  0xe888, 0xe88c, 0xe889, 0x6825, 0xe890, 0x6824, 0xe890, 0xe88f,\n  0x6830, 0xe88a, 0xa934, 0x6767, 0xe892, 0x682c, 0xe88a, 0xe88b,\n  0x4a4e, 0xe896, 0xe894, 0x681a, 0xe888, 0x4a68, 0x683a, 0x683d,\n  0xe893, 0x4a68, 0x6839, 0x683d, 0xe893, 0xe891, 0x5cf4, 0xdd56,\n  0x4a68, 0x6839, 0x683a, 0xe893, 0xeaed, 0xe897, 0xd16e, 0xe898,\n  0xe89d, 0xe89a, 0x6854, 0xe89c, 0xe899, 0xe89b, 0x684f, 0xe89c,\n  0x363e, 0xe86f, 0xa6df, 0xb13f, 0xe8a1, 0x685b, 0xe8a0, 0x685a,\n  0xe8a0, 0xcc7b, 0xe89f, 0xe8a2, 0xe87e, 0xe8a4, 0xe8a5, 0x363e,\n  0xe855, 0xe8a6, 0x6885, 0x6ad7, 0xee15, 0xe89e, 0xe8a7, 0xe801,\n  0xe802, 0xe803, 0xe807, 0xe805, 0xe806, 0x6808, 0xeb1a, 0xe80a,\n  0xe811, 0xe867, 0xe813, 0xe80e, 0xe812, 0xe80c, 0xe80f, 0xe810,\n  0x6871, 0xead7, 0xe818, 0xe817, 0x681a, 0xe838, 0xe821, 0x682c,\n  0xe830, 0xe832, 0xe81c, 0xbf41, 0xc1b2, 0xe826, 0x6824, 0xe825,\n  0xe83b, 0xe82e, 0x4a68, 0x6839, 0x683a, 0xe83d, 0xe837, 0x4a4e,\n  0xe834, 0xe846, 0xe84c, 0xe852, 0xe84e, 0xe853, 0x684f, 0xe854,\n  0xe84d, 0xe873, 0xe862, 0x685a, 0xe85b, 0xe859, 0xe865, 0xce87,\n  0xe86b, 0xe86c, 0xe870, 0xe874, 0x1e30, 0x21e8, 0x21ec, 0x21ee,\n  0x5af7, 0x5bbd, 0x68cc, 0xe8ce, 0xe8d0, 0x68b7, 0x68c6, 0x68c8,\n  0xe8d1, 0xe8d2, 0xa3f0, 0xa22e, 0xe8d3, 0x68ae, 0x68c6, 0xe8c8,\n  0xe8d4, 0xe8cf, 0xe8d6, 0xe8d5, 0xe8d7, 0x68c4, 0xe8d8, 0x68c3,\n  0xe8d8, 0x68ae, 0x68b7, 0x68c7, 0x68c8, 0xe8d9, 0xe8c6, 0x68ae,\n  0x68b7, 0x68c6, 0xe8da, 0x21e8, 0x21ec, 0x21ee, 0x68a8, 0xe8ce,\n  0x1e30, 0x21e8, 0x21ec, 0x21ee, 0x68a8, 0xe8cc, 0xe8ba, 0xe8ad,\n  0xe8ae, 0xe8af, 0xe8b6, 0xe8b8, 0xe8bc, 0xe8bb, 0xe8c0, 0x68c3,\n  0xe8c4, 0xe8c6, 0xe8c8, 0xe8de, 0xcffb, 0xe8db, 0x25b0, 0x68e0,\n  0xe963, 0x25b0, 0x68df, 0xe963, 0xe910, 0xe965, 0xe964, 0xe966,\n  0xe957, 0xe968, 0xe96a, 0x49d7, 0xe96b, 0xe90a, 0xe96c, 0x68f2,\n  0xe96e, 0x68f0, 0xe96d, 0xe8ef, 0x68ee, 0xe96e, 0xe974, 0xe99d,\n  0xe972, 0xe971, 0xe970, 0xe973, 0xe97a, 0xe978, 0x6920, 0xe97c,\n  0x645c, 0x695f, 0xe977, 0x217b, 0x4faa, 0xe8ec, 0xe975, 0xe95c,\n  0xe979, 0xe97b, 0xe8e1, 0xe97d, 0x6927, 0xe981, 0xe97f, 0xe982,\n  0xe97e, 0x1f59, 0xe980, 0xd0b4, 0xe984, 0xe983, 0xe96f, 0xe18a,\n  0x6905, 0xe97c, 0xe985, 0x2582, 0x6912, 0x6935, 0xe981, 0x5218,\n  0xe986, 0xccca, 0xccc7, 0xe967, 0xe959, 0x2582, 0xe927, 0xe989,\n  0xe987, 0xe967, 0xe98e, 0xccd5, 0xe969, 0xe988, 0xe98f, 0xe98a,\n  0xe98c, 0xe98d, 0xe992, 0xe990, 0xe991, 0xe993, 0xe988, 0xe994,\n  0xd1b3, 0xcce6, 0xe965, 0xe976, 0xe8e8, 0xe934, 0xe90d, 0xe98b,\n  0x645c, 0x6909, 0xe977, 0xe995, 0x25b0, 0x68df, 0xe8e0, 0xe8e3,\n  0x68e2, 0xe951, 0xe8e5, 0x6933, 0xe939, 0xe8e9, 0xe93c, 0xe8ea,\n  0xe8eb, 0xe8ed, 0xe8ef, 0x68ee, 0xe8f2, 0xe91e, 0xe8fe, 0xe8fd,\n  0xe8fc, 0xe8ff, 0xe8f4, 0xe90c, 0xe952, 0x6909, 0xe95f, 0xe904,\n  0xe90e, 0xe903, 0xe90f, 0x6905, 0xe920, 0xe911, 0xe916, 0xe913,\n  0x1f59, 0xe918, 0x6912, 0xe927, 0xe915, 0xe91c, 0xe91b, 0xe921,\n  0xe928, 0xe937, 0x693d, 0xe94b, 0xe936, 0xe93f, 0xe95e, 0xe941,\n  0xe943, 0xe93a, 0xe93e, 0xe948, 0xe949, 0xe945, 0xe94a, 0xe94c,\n  0xe962, 0xe8f6, 0xe99f, 0xe99e, 0xea6c, 0xea6d, 0xa1af, 0x69c4,\n  0xea6e, 0xea5d, 0xea70, 0xea6f, 0xea72, 0xce36, 0x6a62, 0xea74,\n  0xea73, 0x69b1, 0xea6e, 0x6a5b, 0xea7f, 0x357a, 0x69c8, 0x6a45,\n  0xea71, 0x357a, 0x69c6, 0x6a45, 0xea71, 0xea7b, 0xea7d, 0xea79,\n  0xea75, 0xea7e, 0xea80, 0xea78, 0xea76, 0x69de, 0xea7c, 0x69dd,\n  0xea7c, 0xea77, 0x208c, 0x4f75, 0xea82, 0xea88, 0xea87, 0xea73,\n  0xea83, 0xea86, 0x6a2e, 0xea51, 0xea8e, 0xea8f, 0xea8b, 0xea8d,\n  0xea93, 0xea92, 0xea91, 0xea90, 0x6a13, 0x6a57, 0xea8c, 0x6a37,\n  0xea9a, 0x6a10, 0x6a57, 0xea8c, 0xea9b, 0xea97, 0xea99, 0xea52,\n  0xea9e, 0xea98, 0x69f5, 0x6a51, 0xea9d, 0xd17e, 0xea7a, 0x6a12,\n  0xea9a, 0xea9f, 0xea47, 0xeaa1, 0xd4e6, 0xea9c, 0xea96, 0xeaa0,\n  0xeaa2, 0x357a, 0x69c6, 0x69c8, 0xea71, 0xea3a, 0xea85, 0xea95,\n  0xea81, 0xeaa3, 0x69f5, 0x6a2e, 0xea9d, 0xea28, 0xea84, 0x6a10,\n  0x6a13, 0xea8c, 0xb0ca, 0x69c5, 0xea7f, 0xe9b2, 0xeaa4, 0x69bf,\n  0xea74, 0xeaa7, 0x560e, 0xeaa5, 0xeaa6, 0xbb22, 0xea8a, 0xea89,\n  0xe9ac, 0xe9ad, 0x69b1, 0xe9c4, 0xe9b4, 0xe9b3, 0x357a, 0x69c6,\n  0x69c8, 0xea45, 0xe9b9, 0x69c1, 0xe9ee, 0x69bf, 0xea62, 0xe9d4,\n  0xe9db, 0xe9df, 0xe9d9, 0xe9d2, 0xea36, 0xe9d0, 0x69dd, 0xe9de,\n  0xe9d1, 0xe9d5, 0x69c5, 0xea5b, 0xe9d8, 0xea4d, 0x208c, 0x4f75,\n  0xe9e1, 0xe9f0, 0xea55, 0xea4a, 0xe9f1, 0xe9ed, 0xe9e2, 0xea6b,\n  0xea6a, 0xea01, 0x6a10, 0x6a13, 0xea57, 0xea02, 0xe9f8, 0xe9ff,\n  0xea0f, 0xea0e, 0xea0d, 0xea05, 0xea4c, 0xea42, 0xea19, 0x66b2,\n  0xea2d, 0xea24, 0x6a12, 0xea37, 0xea16, 0xea41, 0x6a2e, 0xea51,\n  0xea2b, 0xea38, 0xea43, 0xea3e, 0xea44, 0xea4f, 0xea5f, 0x560e,\n  0xea65, 0xea66, 0xea64, 0xd0ae, 0x1f53, 0x5eb0, 0x5ec6, 0xead4,\n  0xeca0, 0x51b8, 0xead3, 0xeacf, 0xd180, 0xead6, 0xead5, 0xeac5,\n  0xd10f, 0x51b8, 0xeac4, 0x1f53, 0x5eb0, 0x5ec6, 0xeab5, 0x51cf,\n  0xeacc, 0xeacb, 0x6871, 0x6885, 0xee15, 0xead9, 0xead8, 0x1eff,\n  0xaf77, 0xeaf9, 0xeaef, 0x6b02, 0xeb22, 0x23d1, 0xeaee, 0xe83e,\n  0x23d1, 0xeaea, 0xeae5, 0x1f5b, 0xaf7f, 0xeae4, 0xa243, 0x6ae9,\n  0x6b13, 0xeb22, 0xb77e, 0xd0e1, 0x6b02, 0xeb22, 0xe87b, 0xeb23,\n  0x6ae9, 0x6b02, 0xeb13, 0xeb1b, 0x3597, 0x65d8, 0x6b26, 0x6b2a,\n  0xeb2d, 0x3597, 0x65d8, 0x6b25, 0x6b2a, 0xeb2d, 0x6599, 0xe5f9,\n  0xa4c4, 0xe60b, 0x3597, 0x65d8, 0x6b25, 0x6b26, 0xeb2d, 0xe61a,\n  0x3597, 0x65d8, 0x6b25, 0x6b26, 0xeb2a, 0xe604, 0x3b1d, 0x60c1,\n  0xeb31, 0x3b1d, 0x60c1, 0xeb30, 0xeb39, 0xeb36, 0x1ffc, 0xcca5,\n  0xac2c, 0xeb58, 0xeb4e, 0x573d, 0xeb49, 0x21f2, 0x2c32, 0x2c34,\n  0x2c36, 0xac37, 0x1e11, 0xe19c, 0xeb47, 0xec7c, 0xec7d, 0xec7e,\n  0xec6e, 0xebbb, 0xec80, 0xeeff, 0xec81, 0x6c78, 0xec88, 0xec24,\n  0xec82, 0xec7f, 0xec84, 0xec85, 0xec86, 0x6bdb, 0xecb7, 0xec8c,\n  0xec89, 0xec8f, 0xec87, 0xebf9, 0xec90, 0xec8d, 0xec8b, 0xec8a,\n  0xec92, 0xec98, 0x6bd7, 0x6c76, 0xec9e, 0xec95, 0xec96, 0x6bb7,\n  0xebf7, 0xec94, 0xec9b, 0xec91, 0x2c1f, 0x2c20, 0x5d7b, 0x6c7b,\n  0xec9c, 0xec93, 0xecaa, 0x6ba7, 0xebf7, 0xec9d, 0xeb66, 0xebd8,\n  0xeca7, 0xeca0, 0x6c00, 0xeca9, 0xeca4, 0x6bcb, 0xeca8, 0xebca,\n  0xecac, 0xecbb, 0xecaf, 0xecad, 0x6b9d, 0xec76, 0xebbe, 0x6b89,\n  0xecb7, 0xecb4, 0xecb1, 0xecb5, 0xecb2, 0xecb3, 0xecb8, 0xecae,\n  0xecb0, 0xecb6, 0xecba, 0xec3a, 0x6ba7, 0x6bb7, 0xecc0, 0xeb8f,\n  0xecab, 0xecca, 0x6bc7, 0xeca9, 0xecc8, 0xec97, 0xecc2, 0x6c28,\n  0xecbd, 0xecc7, 0x6c0d, 0xecc5, 0x6c0c, 0xecc5, 0xecbe, 0x6c77,\n  0xecc4, 0xecc6, 0xecc3, 0x6c2e, 0xecc1, 0xecd2, 0xecd1, 0xeccb,\n  0xeca5, 0xeb73, 0x6c5e, 0xeccf, 0x6c08, 0xecce, 0xecd0, 0xeccd,\n  0xec1b, 0xeca2, 0x6ccc, 0xef07, 0xecd3, 0xecd8, 0xeca6, 0xeca3,\n  0x6bf5, 0xecb9, 0xecd7, 0xecdb, 0xecd4, 0xecc9, 0xecd9, 0xecd5,\n  0x6cd6, 0x6f08, 0xef9e, 0xecdf, 0xecdd, 0xecdd, 0xecdc, 0xecde,\n  0xec9f, 0xecbc, 0xec25, 0xec8e, 0xec99, 0xece3, 0xece1, 0xece2,\n  0xecbf, 0xec9a, 0xeb63, 0xece0, 0x6b9d, 0x6bd7, 0xec9e, 0x6c10,\n  0xecc4, 0x6b72, 0xec88, 0xeca1, 0x2c1f, 0x2c20, 0x5d7b, 0x6bae,\n  0xec9c, 0xeb5a, 0xeb5b, 0xeb62, 0xeb77, 0xeb68, 0xeb6f, 0xeb74,\n  0xeb7a, 0xeb81, 0xeb83, 0xeb8e, 0x6b72, 0xec78, 0xeb8b, 0xeb93,\n  0xeb92, 0xeb8a, 0x56ab, 0xeb91, 0xec5f, 0xeb8d, 0xeb90, 0xebad,\n  0xeb9a, 0xebb3, 0xebaa, 0xeb9e, 0xeba6, 0xec02, 0xeb9c, 0xec60,\n  0xec6d, 0xebab, 0x2c1f, 0x2c20, 0x5d7b, 0x6bae, 0xec7b, 0xebba,\n  0x6b9d, 0xec76, 0xec58, 0x6abe, 0xebc1, 0xec7a, 0xec31, 0xec39,\n  0xebc9, 0xec23, 0xec37, 0xebc0, 0xebca, 0x6bc7, 0xec00, 0xebb6,\n  0xebfd, 0xebd2, 0xebd6, 0xebea, 0xebd5, 0xebeb, 0xebe1, 0xebe4,\n  0xebe7, 0xebdd, 0xebe2, 0xebf0, 0x6b89, 0xebdb, 0xebe8, 0xec3a,\n  0xebf4, 0xebd4, 0xec5d, 0xec08, 0xec0f, 0xec68, 0xebf7, 0xec1b,\n  0xec03, 0xec13, 0x6c10, 0xec77, 0x6c0c, 0xec0d, 0xec12, 0xec09,\n  0xec01, 0xec42, 0xebff, 0xec20, 0x6c32, 0xef07, 0xec2d, 0xec28,\n  0xec25, 0xec29, 0xec1f, 0xec1c, 0xec33, 0xec3e, 0x51a4, 0xec48,\n  0x6c49, 0xef08, 0xec3b, 0xec35, 0xec45, 0xec3c, 0xec56, 0x6c53,\n  0xec54, 0xec57, 0xec52, 0xec6f, 0xec64, 0xec67, 0xec63, 0x2c4c,\n  0xee1f, 0x21eb, 0xecec, 0xee20, 0x66c1, 0xed08, 0xece7, 0xee24,\n  0xa1e4, 0xee23, 0xee22, 0xe6c7, 0xee29, 0xee28, 0x66c1, 0xeceb,\n  0x6d76, 0xee26, 0x6dd7, 0xee25, 0xee30, 0xee35, 0xee33, 0x6e1c,\n  0xee32, 0xee2e, 0x6d44, 0xee31, 0xee2a, 0xee2f, 0xee2d, 0x53ba,\n  0xedaf, 0xee38, 0xee39, 0xedc3, 0xee3b, 0xee3f, 0xedfa, 0xee3d,\n  0xee3a, 0xee3c, 0xed1f, 0xee40, 0xee43, 0xee46, 0xee41, 0xedaa,\n  0xee48, 0x6d5e, 0xee45, 0x6d5d, 0xee45, 0xee44, 0xee49, 0xee4c,\n  0xee4f, 0xee50, 0xee4e, 0xe6d5, 0xee4a, 0x6d09, 0xee26, 0xee53,\n  0x6da4, 0xee4d, 0x6dab, 0xee2b, 0xee51, 0xee52, 0x66de, 0x6dc4,\n  0xee21, 0xee4b, 0xee59, 0xee55, 0xee57, 0xee56, 0xed7e, 0xee5b,\n  0xee5c, 0xed59, 0x6d87, 0xee2b, 0xee27, 0x53ba, 0xed2c, 0xee5f,\n  0x2bc9, 0x66ba, 0x674d, 0x674e, 0x674f, 0x6e16, 0xee64, 0xe6db,\n  0xee60, 0xee61, 0xee58, 0xee63, 0xee5a, 0xee5a, 0xee62, 0xee5e,\n  0xed33, 0x66de, 0x6d8f, 0xee21, 0xedcf, 0xedc9, 0xedc8, 0xee5d,\n  0xedc6, 0xee67, 0xee65, 0x6d0e, 0xee25, 0xee37, 0xee68, 0xee36,\n  0xee6a, 0xee54, 0xee69, 0xc1d5, 0xee6b, 0x6df4, 0xee47, 0x6df3,\n  0xee47, 0xee6c, 0xee70, 0x6d3c, 0xee6d, 0xee34, 0xee0a, 0xee6f,\n  0xedff, 0xee71, 0xd3ba, 0xee72, 0x6871, 0x6ad7, 0xee2c, 0x2bc9,\n  0x66ba, 0x674d, 0x674e, 0x674f, 0x6db4, 0xee64, 0xee74, 0xee66,\n  0x66da, 0xee73, 0xed1d, 0xee42, 0xee3e, 0x2c4c, 0xece5, 0xece9,\n  0x66de, 0x6d8f, 0xedc4, 0xecf6, 0xecf4, 0xecf2, 0x6d0e, 0xedd7,\n  0x6d09, 0xed76, 0xedac, 0xed07, 0xed06, 0xed23, 0x6d87, 0xedab,\n  0xee15, 0xed28, 0xed1e, 0xed26, 0xed12, 0xed1f, 0xed1d, 0xed1b,\n  0xedfd, 0xed15, 0xede5, 0xedd9, 0xed2f, 0xed30, 0xed42, 0xed34,\n  0xed43, 0xed3f, 0xee1e, 0xed3b, 0xed50, 0xed53, 0xee1d, 0xed51,\n  0xed60, 0x6d5d, 0xed5e, 0xed52, 0x6df3, 0xedf4, 0xed5c, 0xed61,\n  0xed72, 0xed93, 0xed6a, 0xed7e, 0xed6f, 0xed6c, 0xed6e, 0xed89,\n  0xed8a, 0xed77, 0xedeb, 0xed98, 0xeda1, 0xed9a, 0xedbb, 0xed96,\n  0x6dbf, 0xedc0, 0xeda5, 0xeda9, 0xedca, 0xedc2, 0xedb2, 0xedb9,\n  0xedba, 0xedc1, 0xedbc, 0x2bc9, 0x66ba, 0x674d, 0x674e, 0x674f,\n  0x6db4, 0xee16, 0xedd6, 0xee1a, 0xedd3, 0xedda, 0xedef, 0xede6,\n  0xedf2, 0xedf8, 0xedfa, 0xee07, 0xedf9, 0xee0c, 0xee0f, 0xee1b,\n  0xee18, 0x2364, 0xa877, 0x4877, 0x48b1, 0xee7c, 0x24b8, 0xe18e,\n  0xee7e, 0xc877, 0x4877, 0x48b1, 0xee78, 0x2869, 0xc6d0, 0xee7a,\n  0xee85, 0xeea4, 0xee83, 0xee8f, 0xee87, 0x1e3d, 0xaa6f, 0xc350,\n  0x4c97, 0xee84, 0xeea6, 0xeea5, 0x6eac, 0xeeb8, 0x4cc6, 0x6762,\n  0x6eab, 0x6eb5, 0xeeba, 0x4cc6, 0x6762, 0x6eaa, 0x6eb5, 0xeeba,\n  0x6ea9, 0xeeb8, 0xa305, 0x36f2, 0x4cac, 0x6eb4, 0xeeb9, 0x36f2,\n  0x4cac, 0x6eaf, 0xeeb9, 0x4cc6, 0x6762, 0x6eaa, 0x6eab, 0xeeba,\n  0x6ea9, 0xeeac, 0x36f2, 0x4cac, 0x6eaf, 0xeeb4, 0x4cc6, 0x6762,\n  0x6eaa, 0x6eab, 0xeeb5, 0x45f2, 0x45f3, 0xd534, 0x1e48, 0x2c1b,\n  0x2e85, 0xeebd, 0x1e48, 0x2c1b, 0x2e85, 0xeebc, 0xeec4, 0x48fa,\n  0xeec3, 0xeecc, 0xeec9, 0xcc98, 0xeed2, 0xeed1, 0xeed9, 0xeed8,\n  0xeef1, 0x294c, 0xc0b9, 0xeef6, 0xeeed, 0xa15a, 0xeef7, 0xeef2,\n  0xeee4, 0xeedb, 0xeeea, 0xe709, 0xeee1, 0xeee9, 0xd8ae, 0xeefe,\n  0xeefd, 0x6b6d, 0xef0b, 0xef0c, 0xd6d9, 0x6c32, 0xeccc, 0x6c49,\n  0x6cd6, 0xef9e, 0xef0d, 0xeeff, 0xef02, 0xef09, 0xef11, 0xef0e,\n  0xe3a1, 0x46b7, 0xc6bc, 0xa1ac, 0x6780, 0xe789, 0xef21, 0xef20,\n  0xdc82, 0xef39, 0xef34, 0xa5c5, 0x1e9d, 0x3589, 0x358a, 0xef50,\n  0x358b, 0xb58e, 0x5cf7, 0xdd4d, 0x67f2, 0xef51, 0x1e9d, 0x3589,\n  0x358a, 0xef4a, 0x67f2, 0xef4f, 0x3b6f, 0xef7f, 0xef54, 0x6f53,\n  0xef80, 0xef81, 0xef82, 0xef85, 0xef70, 0xef87, 0xef83, 0xef86,\n  0x6f62, 0xef84, 0x6f61, 0xef84, 0xa1fa, 0xef88, 0x256e, 0x2699,\n  0xa6d3, 0xa4ac, 0x6f71, 0xef8a, 0xef89, 0xef5a, 0xef6a, 0xef8b,\n  0xd16d, 0xef8c, 0x3b6f, 0xef52, 0xef54, 0xef55, 0xef57, 0xef5f,\n  0x6f61, 0xef62, 0xef59, 0xef60, 0xef5c, 0xef66, 0xef6c, 0xef6a,\n  0xef72, 0xef77, 0x4adc, 0x6f92, 0xef99, 0xa390, 0xae9e, 0x4adc,\n  0x6f8d, 0xef99, 0xef9a, 0xef9b, 0x6f8d, 0xef92, 0xef94, 0xef95,\n  0x1e80, 0xef9f, 0x49cb, 0x49cc, 0xca50, 0x6c49, 0xef08, 0x1e80,\n  0xef9c, 0x248a, 0x248c, 0xb0d2, 0x2401, 0xcc72,\n};\n\nstatic const short cjk_variants_indx[0x5200] = {\n  /* 0x4e00 */\n      4,    -1,    -1,    -1,     5,     6,    -1,     7,\n     -1,     8,    10,    11,    12,    -1,    13,    -1,\n     14,    16,    19,    20,    -1,    -1,    22,    24,\n     26,    -1,    28,    29,    33,    34,    -1,    36,\n     38,    40,    42,    44,    45,    47,    49,    52,\n     -1,    -1,    53,    56,    59,    -1,    -1,    -1,\n     60,    -1,    66,    67,    68,    -1,    -1,    -1,\n     -1,    -1,    69,    -1,    -1,    71,    73,    -1,\n     -1,    76,    77,    79,    81,    83,    85,    -1,\n     87,    92,    -1,    -1,    93,    -1,    -1,    -1,\n     94,    96,    -1,    -1,   100,   101,    -1,   103,\n    105,    -1,   107,    -1,    -1,    -1,    -1,    -1,\n    110,   111,    -1,    -1,    -1,    -1,   115,    -1,\n    116,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n    118,   119,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,   121,    -1,    -1,    -1,    -1,   124,    -1,\n    128,   130,   133,    -1,    -1,    -1,   135,    -1,\n    137,   138,   139,   141,   143,    -1,   144,   147,\n    151,   153,    -1,    -1,   155,    -1,   156,   157,\n    161,   162,   163,    -1,   165,   167,   171,   173,\n     -1,   174,    -1,    -1,    -1,    -1,    -1,   176,\n     -1,   178,    -1,   182,   183,    -1,    -1,   184,\n    185,   186,   187,    -1,    -1,   188,    -1,    -1,\n    189,    -1,   190,   191,    -1,    -1,   192,   194,\n     -1,   195,   196,    -1,    -1,   199,   201,   202,\n     -1,   203,    -1,    -1,   204,    -1,   207,   209,\n    210,   212,    -1,   215,    -1,    -1,    -1,    -1,\n    217,   218,    -1,    -1,    -1,   220,   221,    -1,\n     -1,    -1,   222,    -1,    -1,    -1,    -1,   223,\n     -1,    -1,   227,    -1,   228,   229,   230,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,   232,\n     -1,    -1,   234,    -1,   236,   237,   239,   240,\n  /* 0x4f00 */\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n    245,    -1,    -1,    -1,    -1,    -1,   247,   248,\n    251,   252,   253,   254,   255,   256,   259,   262,\n    263,   265,    -1,   266,   267,   268,   269,   270,\n     -1,    -1,   271,   273,    -1,    -1,   275,    -1,\n     -1,   276,   279,    -1,    -1,   282,    -1,   283,\n     -1,    -1,    -1,    -1,   284,    -1,    -1,    -1,\n    285,    -1,   286,    -1,    -1,    -1,    -1,   287,\n    288,    -1,    -1,    -1,    -1,    -1,   289,    -1,\n     -1,    -1,    -1,   290,   295,    -1,    -1,    -1,\n     -1,   296,    -1,   298,   301,    -1,   302,    -1,\n    303,    -1,    -1,   307,    -1,   308,    -1,    -1,\n     -1,    -1,   309,    -1,    -1,    -1,    -1,    -1,\n     -1,   310,    -1,    -1,    -1,   312,    -1,   314,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,   315,   316,    -1,   318,    -1,\n     -1,    -1,    -1,    -1,   319,    -1,   323,    -1,\n    324,    -1,    -1,    -1,    -1,    -1,   325,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,   326,\n    328,   329,    -1,   331,    -1,   332,   333,   335,\n    336,   337,   338,   339,   340,   341,    -1,   343,\n     -1,    -1,    -1,    -1,    -1,    -1,   344,   345,\n     -1,    -1,    -1,    -1,    -1,   346,    -1,    -1,\n     -1,   347,   348,    -1,    -1,    -1,    -1,   349,\n     -1,    -1,   350,    -1,   351,    -1,   352,    -1,\n     -1,    -1,    -1,    -1,   353,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,   355,   356,\n    357,   358,   359,   360,    -1,   361,   362,    -1,\n    363,   364,   365,   366,    -1,   367,   369,    -1,\n     -1,   371,   372,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,   374,   378,   380,    -1,    -1,\n  /* 0x5000 */\n    382,    -1,   383,   385,    -1,   388,   389,    -1,\n    390,   391,   393,   394,    -1,    -1,   397,   398,\n    399,   400,    -1,    -1,    -1,    -1,   401,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,   402,   403,\n     -1,    -1,    -1,   405,   407,    -1,   408,    -1,\n     -1,    -1,    -1,   410,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,   411,    -1,    -1,   412,    -1,\n     -1,   413,   415,    -1,   416,    -1,   417,    -1,\n    418,    -1,    -1,    -1,    -1,    -1,   419,   420,\n     -1,   421,    -1,    -1,    -1,    -1,    -1,    -1,\n    422,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n    425,   426,   427,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,   428,    -1,    -1,\n     -1,    -1,   429,    -1,   430,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,   432,   433,    -1,   435,\n    436,   437,   441,   444,    -1,   445,   447,   448,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,   449,   452,    -1,    -1,\n     -1,   453,    -1,    -1,    -1,    -1,   454,    -1,\n    455,   458,   462,    -1,   464,    -1,    -1,    -1,\n    465,   467,   470,    -1,   471,   472,    -1,   473,\n    474,   475,    -1,    -1,    -1,   476,    -1,   477,\n     -1,    -1,    -1,   478,   480,   481,    -1,   482,\n     -1,   483,    -1,    -1,    -1,    -1,   484,    -1,\n    485,    -1,   486,   487,   491,   492,    -1,    -1,\n     -1,   493,   494,    -1,    -1,   495,    -1,    -1,\n     -1,   498,    -1,    -1,    -1,   499,    -1,    -1,\n    500,    -1,    -1,    -1,   501,    -1,   502,   504,\n     -1,    -1,    -1,   505,    -1,   506,    -1,    -1,\n    507,   508,    -1,   509,    -1,   512,    -1,    -1,\n     -1,   513,   514,    -1,   515,    -1,    -1,    -1,\n     -1,   516,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x5100 */\n    518,   519,   520,    -1,   521,    -1,    -1,    -1,\n    522,   523,    -1,    -1,    -1,    -1,   525,    -1,\n    526,    -1,    -1,    -1,   527,   528,    -1,    -1,\n    529,    -1,    -1,    -1,    -1,    -1,   531,   534,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,   535,\n     -1,    -1,   536,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,   537,    -1,    -1,    -1,    -1,   538,\n     -1,   539,   540,   541,   542,    -1,    -1,   543,\n     -1,    -1,   545,    -1,    -1,    -1,    -1,   546,\n     -1,   547,   549,   551,   554,    -1,   556,   557,\n    561,   563,   565,    -1,   567,    -1,   568,   569,\n    570,    -1,   572,    -1,   573,    -1,    -1,    -1,\n    574,    -1,    -1,    -1,   575,    -1,   576,   578,\n     -1,   579,   581,    -1,    -1,    -1,    -1,    -1,\n    582,    -1,   583,   586,   591,    -1,   592,    -1,\n     -1,   593,    -1,   595,    -1,   597,   599,    -1,\n    600,   601,   602,   603,   604,   605,   606,    -1,\n    609,   610,   611,   613,   614,    -1,   616,   618,\n    619,   620,   621,    -1,    -1,    -1,    -1,   622,\n     -1,   623,    -1,   625,   626,   627,    -1,    -1,\n     -1,    -1,   629,   630,   631,    -1,   632,    -1,\n    634,   635,   637,   639,   642,    -1,    -1,   644,\n    645,   648,   649,   651,   652,   653,    -1,    -1,\n     -1,    -1,   654,   655,    -1,   656,    -1,    -1,\n    657,    -1,   659,   660,   661,   664,   665,    -1,\n    667,   668,    -1,    -1,    -1,   669,    -1,   670,\n     -1,   671,   672,   673,    -1,    -1,   674,    -1,\n     -1,    -1,    -1,   676,   678,    -1,   680,    -1,\n    684,   686,   688,   690,   692,   693,   694,    -1,\n    696,    -1,    -1,   701,   702,   707,   710,   715,\n     -1,   716,   717,   722,   723,    -1,   726,   727,\n     -1,    -1,   730,   732,    -1,   734,   735,   736,\n  /* 0x5200 */\n    737,    -1,   739,   741,   742,   743,    -1,    -1,\n    745,    -1,   747,    -1,    -1,   748,    -1,    -1,\n     -1,    -1,   749,   752,   753,    -1,    -1,    -1,\n    754,   755,   756,   757,    -1,    -1,    -1,    -1,\n    762,    -1,    -1,    -1,    -1,   763,   764,   767,\n    770,    -1,   773,   774,   776,   780,   781,    -1,\n     -1,   782,    -1,    -1,   786,    -1,   787,    -1,\n     -1,   788,   789,    -1,   790,   793,   794,   795,\n    796,   797,   798,   800,   801,    -1,    -1,   802,\n     -1,    -1,    -1,   803,   806,   807,   808,   809,\n    813,   815,    -1,    -1,    -1,    -1,    -1,   823,\n     -1,   827,   831,   832,    -1,   833,    -1,    -1,\n     -1,    -1,    -1,   834,   842,   844,   845,   847,\n     -1,   848,    -1,    -1,    -1,    -1,   849,    -1,\n    852,   853,    -1,   861,   862,   863,    -1,   868,\n     -1,   872,    -1,    -1,    -1,    -1,    -1,   873,\n     -1,    -1,    -1,   874,   877,    -1,    -1,   878,\n     -1,   879,   880,    -1,   881,   882,   890,    -1,\n    898,   901,   903,    -1,   911,   919,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,   921,   923,   924,\n     -1,   926,   927,    -1,    -1,    -1,    -1,    -1,\n    928,    -1,   931,   932,    -1,    -1,    -1,    -1,\n     -1,   935,   936,   937,   940,   943,    -1,    -1,\n     -1,   945,    -1,    -1,    -1,    -1,    -1,   946,\n     -1,   947,    -1,    -1,   948,   949,    -1,   951,\n    952,    -1,   953,   956,   959,    -1,    -1,    -1,\n     -1,   961,    -1,    -1,    -1,   965,   968,   970,\n     -1,   972,   973,   974,    -1,   977,   978,    -1,\n    981,    -1,   982,    -1,   983,    -1,   984,   985,\n     -1,   987,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,   988,   989,   992,    -1,   995,    -1,    -1,\n    996,    -1,    -1,   998,    -1,    -1,    -1,    -1,\n  /* 0x5300 */\n    999,    -1,    -1,  1000,  1002,  1004,  1005,    -1,\n     -1,    -1,  1008,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   1009,    -1,  1011,  1012,    -1,  1014,  1016,    -1,\n   1017,  1018,    -1,    -1,    -1,    -1,  1019,  1020,\n   1021,  1023,    -1,    -1,    -1,  1024,  1025,  1026,\n     -1,  1028,  1029,  1032,    -1,    -1,    -1,    -1,\n   1035,    -1,  1036,  1037,    -1,    -1,    -1,    -1,\n   1039,    -1,    -1,  1040,    -1,    -1,  1041,  1042,\n     -1,  1046,    -1,  1047,    -1,  1049,  1050,  1053,\n   1056,    -1,  1057,  1058,  1060,  1063,  1065,    -1,\n   1067,    -1,  1069,  1070,  1071,    -1,    -1,    -1,\n   1073,    -1,  1074,    -1,  1075,  1082,    -1,  1084,\n     -1,    -1,    -1,  1085,    -1,    -1,  1087,  1088,\n   1090,    -1,    -1,  1091,  1093,    -1,    -1,  1094,\n   1096,  1097,    -1,  1099,    -1,  1100,    -1,    -1,\n     -1,    -1,  1102,    -1,  1105,  1106,  1108,  1114,\n   1115,  1116,    -1,  1117,  1119,  1120,  1121,    -1,\n   1122,    -1,    -1,  1123,    -1,  1124,    -1,    -1,\n   1126,  1130,  1131,  1132,    -1,    -1,    -1,  1133,\n   1134,  1136,  1137,  1138,  1139,    -1,  1141,    -1,\n   1142,  1143,    -1,    -1,    -1,  1145,  1146,  1147,\n   1152,    -1,  1154,  1155,  1157,  1158,  1159,  1160,\n   1161,    -1,  1164,  1165,    -1,    -1,  1166,  1168,\n     -1,  1170,  1172,  1175,  1178,  1181,  1184,  1185,\n   1186,  1187,  1188,    -1,  1189,  1190,  1193,  1194,\n   1195,  1196,    -1,  1200,    -1,  1202,    -1,    -1,\n   1203,  1205,    -1,  1207,    -1,    -1,  1209,    -1,\n   1210,  1214,  1216,    -1,    -1,    -1,    -1,  1220,\n     -1,    -1,  1223,  1226,    -1,    -1,    -1,    -1,\n   1227,    -1,    -1,    -1,    -1,    -1,  1232,  1236,\n     -1,  1237,    -1,    -1,    -1,  1240,    -1,    -1,\n  /* 0x5400 */\n   1241,  1243,    -1,  1245,    -1,    -1,    -1,    -1,\n   1247,    -1,  1248,    -1,  1249,    -1,  1251,    -1,\n     -1,  1252,    -1,  1254,    -1,  1255,    -1,  1256,\n     -1,    -1,    -1,    -1,    -1,  1257,  1258,  1259,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   1262,    -1,    -1,    -1,  1263,    -1,    -1,  1265,\n     -1,    -1,    -1,  1271,  1273,    -1,  1275,    -1,\n     -1,    -1,    -1,  1276,    -1,  1277,    -1,  1278,\n     -1,    -1,  1279,    -1,    -1,    -1,    -1,    -1,\n   1280,  1282,  1284,    -1,  1285,  1286,    -1,    -1,\n   1287,  1288,  1289,  1290,    -1,  1291,  1292,  1293,\n   1294,  1297,  1299,  1300,  1301,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  1302,\n   1303,  1304,  1305,    -1,    -1,  1307,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  1308,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  1311,    -1,    -1,\n     -1,    -1,  1312,    -1,  1315,    -1,    -1,  1318,\n     -1,    -1,  1319,    -1,    -1,    -1,    -1,    -1,\n     -1,  1321,    -1,  1322,  1323,  1324,    -1,    -1,\n     -1,    -1,    -1,    -1,  1325,    -1,    -1,    -1,\n     -1,  1326,    -1,    -1,  1328,    -1,    -1,  1329,\n     -1,  1331,  1334,    -1,    -1,    -1,    -1,    -1,\n   1336,    -1,    -1,    -1,  1338,  1340,    -1,    -1,\n     -1,    -1,    -1,    -1,  1341,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  1343,    -1,    -1,\n     -1,  1344,  1348,  1349,  1350,  1351,    -1,  1352,\n     -1,  1354,    -1,    -1,  1355,  1356,    -1,  1357,\n     -1,  1358,    -1,  1361,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  1362,    -1,    -1,    -1,\n     -1,    -1,  1363,    -1,    -1,    -1,  1368,    -1,\n     -1,    -1,  1370,    -1,    -1,    -1,    -1,    -1,\n  /* 0x5500 */\n   1371,    -1,    -1,    -1,  1373,    -1,    -1,  1374,\n     -1,    -1,    -1,    -1,    -1,  1375,    -1,    -1,\n   1376,    -1,    -1,    -1,    -1,  1377,  1378,    -1,\n   1382,    -1,    -1,  1388,    -1,  1389,    -1,    -1,\n   1390,    -1,  1391,  1392,  1393,    -1,    -1,  1394,\n     -1,    -1,    -1,  1395,    -1,    -1,    -1,    -1,\n     -1,  1396,    -1,    -1,    -1,    -1,    -1,    -1,\n   1397,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   1398,    -1,    -1,    -1,    -1,    -1,  1399,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  1400,\n     -1,    -1,    -1,  1401,  1407,    -1,  1413,  1414,\n     -1,    -1,    -1,    -1,    -1,    -1,  1415,  1419,\n   1425,    -1,    -1,  1430,    -1,    -1,    -1,  1433,\n     -1,    -1,    -1,    -1,  1434,  1435,  1436,  1440,\n   1441,    -1,    -1,    -1,  1443,    -1,    -1,    -1,\n   1444,    -1,  1445,    -1,    -1,    -1,    -1,    -1,\n   1446,    -1,  1448,    -1,  1450,    -1,  1451,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  1456,    -1,\n     -1,  1458,  1460,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  1463,    -1,  1464,    -1,  1467,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  1468,  1469,  1470,  1472,    -1,  1473,  1475,\n   1477,    -1,  1480,    -1,    -1,    -1,  1481,  1483,\n     -1,    -1,    -1,  1485,    -1,  1486,  1487,    -1,\n     -1,    -1,    -1,    -1,    -1,  1488,  1489,  1490,\n     -1,    -1,  1491,    -1,    -1,    -1,  1492,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  1493,    -1,  1494,    -1,    -1,    -1,\n   1495,    -1,    -1,  1496,    -1,  1497,    -1,    -1,\n     -1,  1498,    -1,  1499,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  1500,    -1,    -1,  1501,    -1,\n     -1,  1502,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x5600 */\n     -1,    -1,    -1,    -1,    -1,    -1,  1503,    -1,\n     -1,    -1,  1505,    -1,    -1,  1506,    -1,    -1,\n     -1,  1507,    -1,  1509,  1510,    -1,  1511,  1512,\n   1515,    -1,    -1,    -1,  1516,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  1517,    -1,    -1,    -1,\n   1518,  1519,    -1,    -1,    -1,    -1,  1521,  1522,\n   1524,  1525,    -1,    -1,    -1,  1526,    -1,  1527,\n   1528,    -1,    -1,    -1,    -1,  1529,    -1,    -1,\n     -1,  1530,  1531,    -1,  1532,  1534,    -1,    -1,\n     -1,  1535,    -1,    -1,    -1,    -1,    -1,    -1,\n   1537,    -1,    -1,  1538,    -1,  1539,  1540,    -1,\n     -1,    -1,    -1,  1542,  1544,  1545,    -1,    -1,\n   1546,  1547,    -1,    -1,    -1,  1548,  1549,    -1,\n   1550,    -1,  1551,    -1,    -1,    -1,    -1,  1552,\n     -1,    -1,  1553,    -1,  1554,  1556,    -1,    -1,\n   1559,  1560,    -1,    -1,    -1,    -1,  1561,    -1,\n   1562,    -1,    -1,    -1,    -1,    -1,    -1,  1563,\n     -1,    -1,    -1,    -1,  1564,    -1,    -1,  1565,\n   1566,    -1,    -1,    -1,  1569,  1570,    -1,    -1,\n     -1,  1571,    -1,    -1,    -1,    -1,  1575,    -1,\n   1580,    -1,  1581,  1582,    -1,  1583,  1584,    -1,\n   1585,    -1,    -1,    -1,    -1,    -1,  1586,    -1,\n     -1,    -1,  1587,  1588,  1589,    -1,  1591,    -1,\n     -1,    -1,    -1,  1592,    -1,    -1,    -1,    -1,\n   1593,  1594,  1595,    -1,    -1,  1597,    -1,    -1,\n   1598,  1599,  1601,    -1,  1602,    -1,    -1,  1603,\n     -1,  1604,    -1,  1605,    -1,    -1,    -1,  1608,\n   1611,  1617,    -1,  1618,    -1,    -1,  1619,  1625,\n   1626,    -1,  1627,  1630,    -1,    -1,  1633,  1636,\n     -1,    -1,  1637,    -1,  1638,  1644,    -1,  1647,\n   1652,  1653,  1654,  1657,  1660,  1663,  1664,    -1,\n   1669,    -1,    -1,  1670,    -1,  1675,  1680,    -1,\n  /* 0x5700 */\n   1683,    -1,    -1,  1688,    -1,    -1,  1689,  1692,\n   1693,    -1,    -1,  1694,    -1,  1699,  1702,  1705,\n     -1,  1706,  1707,  1709,    -1,    -1,  1712,  1715,\n   1718,    -1,    -1,    -1,    -1,  1720,    -1,  1722,\n     -1,  1723,  1724,  1726,    -1,    -1,    -1,  1727,\n   1729,    -1,    -1,    -1,  1730,  1731,    -1,    -1,\n   1732,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  1735,  1736,    -1,    -1,  1738,    -1,    -1,\n   1742,    -1,  1743,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  1745,\n   1749,  1750,    -1,  1751,  1752,    -1,    -1,  1755,\n     -1,  1758,  1759,  1760,  1766,  1767,  1769,  1771,\n   1773,    -1,    -1,  1775,  1776,    -1,  1777,  1778,\n   1779,    -1,    -1,    -1,    -1,  1781,  1782,  1784,\n   1786,    -1,    -1,  1787,    -1,  1788,    -1,    -1,\n   1790,    -1,  1791,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  1792,    -1,  1793,  1794,  1795,  1796,\n     -1,    -1,    -1,  1797,    -1,    -1,    -1,    -1,\n     -1,    -1,  1798,  1800,  1801,  1802,  1803,    -1,\n     -1,    -1,  1804,  1807,  1808,    -1,    -1,    -1,\n     -1,  1809,  1810,    -1,    -1,    -1,  1811,  1812,\n   1813,  1814,    -1,  1816,    -1,  1817,    -1,  1818,\n     -1,  1819,  1820,    -1,  1821,    -1,    -1,    -1,\n     -1,    -1,    -1,  1822,    -1,    -1,    -1,    -1,\n   1824,    -1,    -1,    -1,    -1,    -1,  1825,    -1,\n   1826,    -1,  1827,    -1,    -1,    -1,    -1,    -1,\n     -1,  1830,  1835,  1836,    -1,    -1,    -1,    -1,\n   1837,  1838,  1840,    -1,  1841,    -1,  1843,    -1,\n     -1,  1845,    -1,    -1,    -1,    -1,  1846,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  1847,\n     -1,    -1,    -1,    -1,  1848,  1851,    -1,    -1,\n  /* 0x5800 */\n     -1,    -1,  1852,  1853,    -1,  1854,  1855,  1856,\n     -1,    -1,  1857,    -1,    -1,    -1,    -1,    -1,\n     -1,  1858,    -1,    -1,    -1,  1859,  1861,    -1,\n     -1,  1862,    -1,    -1,    -1,  1863,    -1,    -1,\n     -1,    -1,    -1,    -1,  1864,    -1,  1866,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  1868,\n   1871,  1873,    -1,    -1,  1874,    -1,    -1,    -1,\n     -1,    -1,  1876,    -1,    -1,    -1,    -1,    -1,\n     -1,  1878,    -1,    -1,    -1,    -1,  1880,    -1,\n     -1,    -1,  1881,  1884,    -1,  1885,    -1,  1886,\n   1887,  1888,  1889,    -1,  1890,    -1,    -1,  1891,\n     -1,  1892,  1893,    -1,    -1,    -1,    -1,  1894,\n     -1,  1895,  1896,    -1,  1897,    -1,  1899,    -1,\n     -1,  1900,    -1,  1902,    -1,    -1,    -1,    -1,\n     -1,    -1,  1903,    -1,    -1,  1905,    -1,  1906,\n     -1,  1908,    -1,    -1,  1910,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  1913,  1914,    -1,  1915,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  1916,  1918,  1919,\n     -1,  1920,    -1,    -1,  1922,    -1,  1924,    -1,\n     -1,    -1,  1925,    -1,  1927,    -1,    -1,  1930,\n     -1,    -1,    -1,    -1,    -1,    -1,  1931,  1933,\n   1935,    -1,    -1,  1940,    -1,  1942,  1947,    -1,\n   1948,    -1,    -1,  1949,    -1,    -1,  1950,    -1,\n     -1,    -1,    -1,    -1,  1951,    -1,    -1,  1953,\n     -1,    -1,  1954,  1956,  1957,  1958,  1959,    -1,\n   1961,    -1,    -1,  1962,    -1,    -1,    -1,    -1,\n   1964,  1966,  1967,    -1,  1968,    -1,  1973,  1975,\n   1976,  1977,  1979,    -1,  1980,  1981,    -1,    -1,\n     -1,  1984,  1986,    -1,    -1,    -1,  1987,  1989,\n   1991,  1992,  1993,  1995,    -1,  1997,  1999,  2001,\n   2003,  2004,  2005,  2007,  2009,  2010,    -1,    -1,\n  /* 0x5900 */\n   2012,    -1,  2014,    -1,  2015,  2017,    -1,  2018,\n     -1,  2022,  2024,    -1,    -1,  2025,    -1,  2028,\n     -1,    -1,    -1,  2029,  2030,    -1,    -1,    -1,\n   2031,    -1,  2033,  2034,  2035,    -1,    -1,  2036,\n   2037,    -1,  2038,  2040,    -1,  2042,    -1,    -1,\n     -1,  2043,    -1,    -1,  2046,  2047,    -1,    -1,\n     -1,    -1,  2048,  2050,  2051,    -1,  2052,    -1,\n   2053,  2054,  2055,    -1,    -1,    -1,  2056,    -1,\n     -1,  2057,  2060,    -1,    -1,    -1,    -1,  2061,\n   2062,    -1,    -1,  2063,  2064,    -1,    -1,    -1,\n   2065,    -1,    -1,    -1,  2066,    -1,  2068,    -1,\n   2071,  2072,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  2073,    -1,  2075,\n   2077,  2080,  2083,    -1,  2084,    -1,  2087,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  2088,    -1,\n   2090,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  2092,  2096,\n   2098,    -1,  2099,    -1,    -1,  2100,    -1,    -1,\n     -1,    -1,  2102,    -1,    -1,    -1,  2103,    -1,\n     -1,  2104,    -1,  2105,    -1,  2106,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  2110,  2111,  2112,  2114,    -1,    -1,    -1,\n     -1,    -1,    -1,  2115,    -1,    -1,    -1,  2118,\n   2120,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  2122,    -1,\n     -1,  2123,  2124,  2125,    -1,  2127,    -1,    -1,\n   2128,    -1,  2129,    -1,    -1,    -1,    -1,  2130,\n     -1,  2131,    -1,    -1,  2132,    -1,    -1,    -1,\n     -1,    -1,  2133,    -1,    -1,    -1,  2134,  2136,\n     -1,    -1,  2138,  2140,  2141,    -1,  2142,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   2143,    -1,    -1,  2145,    -1,    -1,    -1,    -1,\n  /* 0x5a00 */\n     -1,    -1,    -1,    -1,  2146,  2147,  2148,  2149,\n   2150,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  2151,    -1,    -1,    -1,    -1,    -1,\n   2152,    -1,    -1,  2154,    -1,    -1,    -1,  2156,\n     -1,    -1,    -1,    -1,  2157,    -1,  2161,    -1,\n     -1,    -1,    -1,    -1,    -1,  2162,    -1,  2163,\n   2165,  2166,  2168,    -1,  2169,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  2171,\n   2173,  2176,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   2177,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  2178,    -1,    -1,  2179,    -1,\n     -1,    -1,    -1,    -1,  2181,  2182,    -1,  2183,\n     -1,    -1,    -1,  2185,  2186,  2189,  2190,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  2191,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  2193,  2195,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  2196,\n     -1,    -1,  2197,    -1,    -1,  2198,    -1,  2199,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   2201,    -1,    -1,    -1,  2202,  2203,    -1,  2204,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  2206,    -1,    -1,    -1,    -1,\n   2208,    -1,  2209,    -1,  2210,    -1,    -1,  2211,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  2212,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  2213,    -1,    -1,    -1,  2214,  2215,    -1,\n     -1,    -1,  2217,  2219,    -1,    -1,    -1,  2221,\n  /* 0x5b00 */\n   2222,    -1,    -1,  2224,    -1,    -1,    -1,    -1,\n   2225,  2226,    -1,  2227,  2228,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  2229,    -1,    -1,    -1,  2230,    -1,    -1,\n     -1,  2232,  2233,    -1,  2235,    -1,    -1,    -1,\n     -1,    -1,  2236,    -1,    -1,  2238,    -1,    -1,\n   2240,    -1,  2243,    -1,    -1,    -1,    -1,  2244,\n   2245,    -1,    -1,    -1,    -1,    -1,  2246,    -1,\n     -1,    -1,    -1,  2247,    -1,    -1,  2249,    -1,\n     -1,    -1,    -1,    -1,  2252,    -1,    -1,    -1,\n     -1,    -1,  2253,  2254,    -1,    -1,    -1,    -1,\n     -1,  2255,    -1,    -1,    -1,    -1,    -1,    -1,\n   2256,    -1,    -1,    -1,    -1,    -1,  2257,    -1,\n     -1,    -1,  2262,  2263,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   2264,    -1,    -1,    -1,  2269,  2270,  2271,  2274,\n     -1,  2275,  2281,  2282,    -1,    -1,  2285,    -1,\n   2286,    -1,  2287,    -1,    -1,  2288,    -1,    -1,\n   2289,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  2291,  2293,  2297,  2299,\n   2301,  2302,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  2304,  2305,  2306,    -1,    -1,  2307,    -1,\n     -1,    -1,    -1,    -1,  2308,    -1,  2310,  2311,\n     -1,    -1,    -1,  2313,  2314,  2316,  2318,    -1,\n   2320,    -1,    -1,  2321,    -1,    -1,  2322,  2323,\n   2325,  2327,    -1,    -1,  2334,  2335,    -1,    -1,\n     -1,    -1,    -1,  2341,    -1,  2342,    -1,  2348,\n     -1,    -1,  2354,  2358,  2360,  2366,    -1,  2367,\n   2368,    -1,  2370,    -1,    -1,    -1,  2371,  2373,\n     -1,  2379,    -1,  2381,  2383,    -1,    -1,    -1,\n     -1,    -1,    -1,  2385,    -1,  2389,  2390,    -1,\n     -1,  2394,    -1,  2396,  2397,    -1,  2398,  2400,\n  /* 0x5c00 */\n     -1,    -1,  2402,    -1,    -1,  2404,  2407,  2408,\n   2409,  2411,    -1,  2412,    -1,  2413,  2415,    -1,\n     -1,    -1,  2416,  2419,  2422,    -1,    -1,    -1,\n   2425,  2426,  2427,  2428,    -1,  2432,  2435,  2436,\n   2441,    -1,  2446,  2449,  2450,  2452,  2453,  2454,\n     -1,  2457,    -1,  2458,  2459,  2460,    -1,    -1,\n     -1,    -1,  2463,    -1,  2468,    -1,  2473,  2478,\n   2483,    -1,    -1,    -1,    -1,  2484,    -1,    -1,\n   2487,    -1,  2489,  2490,    -1,  2491,  2492,    -1,\n     -1,    -1,  2493,    -1,  2494,  2496,  2497,  2498,\n     -1,    -1,    -1,  2500,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  2501,    -1,    -1,  2503,    -1,\n     -1,  2504,  2505,    -1,  2506,    -1,  2507,    -1,\n   2508,    -1,    -1,    -1,  2509,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  2510,\n   2511,  2512,  2516,    -1,    -1,  2517,    -1,    -1,\n   2519,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  2520,  2521,\n   2522,    -1,  2523,  2524,    -1,    -1,    -1,    -1,\n     -1,  2531,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  2532,    -1,    -1,    -1,  2538,    -1,    -1,\n     -1,    -1,    -1,  2539,  2540,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  2541,    -1,  2542,\n     -1,    -1,    -1,  2543,  2544,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  2545,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  2546,    -1,    -1,\n     -1,  2547,    -1,  2548,  2549,  2550,  2551,    -1,\n   2552,  2553,    -1,    -1,    -1,    -1,    -1,  2554,\n   2555,    -1,    -1,    -1,  2556,  2557,  2560,    -1,\n     -1,    -1,    -1,    -1,    -1,  2567,    -1,    -1,\n  /* 0x5d00 */\n     -1,    -1,  2568,  2569,  2570,    -1,    -1,  2571,\n   2572,    -1,    -1,  2573,    -1,  2575,  2576,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  2579,  2580,\n   2581,  2583,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  2585,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  2586,  2587,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  2589,    -1,    -1,    -1,\n   2590,    -1,  2591,  2594,    -1,    -1,    -1,  2597,\n   2601,    -1,  2604,    -1,  2605,  2608,    -1,    -1,\n   2609,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  2611,\n     -1,    -1,    -1,  2612,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  2613,    -1,  2614,  2615,    -1,    -1,  2616,\n     -1,    -1,    -1,  2618,  2625,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  2632,    -1,    -1,  2633,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   2634,    -1,  2635,    -1,    -1,    -1,    -1,  2636,\n   2637,    -1,    -1,    -1,    -1,    -1,  2638,    -1,\n     -1,    -1,  2639,  2640,  2643,    -1,    -1,    -1,\n   2645,  2648,  2655,    -1,  2656,  2657,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  2658,  2660,    -1,\n     -1,    -1,    -1,  2663,  2664,    -1,    -1,    -1,\n     -1,    -1,  2667,  2668,  2669,    -1,  2670,  2673,\n     -1,    -1,    -1,  2676,    -1,  2677,    -1,    -1,\n   2678,    -1,  2679,  2680,    -1,    -1,    -1,    -1,\n     -1,  2681,    -1,    -1,    -1,    -1,    -1,  2682,\n   2683,    -1,    -1,    -1,    -1,  2684,    -1,  2685,\n     -1,    -1,  2686,  2687,    -1,  2689,    -1,  2690,\n  /* 0x5e00 */\n   2692,  2694,    -1,  2697,    -1,  2698,    -1,    -1,\n   2699,    -1,    -1,  2700,    -1,    -1,    -1,  2701,\n   2702,  2703,  2704,    -1,    -1,  2705,    -1,    -1,\n   2706,    -1,  2707,    -1,  2708,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  2710,  2711,  2713,\n     -1,    -1,    -1,  2714,    -1,  2715,  2716,  2719,\n   2721,  2724,    -1,  2725,    -1,    -1,  2726,    -1,\n     -1,    -1,    -1,  2728,  2729,  2730,    -1,    -1,\n   2731,    -1,  2732,  2734,    -1,    -1,    -1,  2735,\n   2738,    -1,    -1,    -1,  2740,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  2741,\n   2742,    -1,  2743,    -1,    -1,    -1,    -1,  2746,\n     -1,  2748,    -1,  2749,  2751,    -1,    -1,    -1,\n     -1,    -1,    -1,  2753,  2756,    -1,    -1,    -1,\n     -1,    -1,  2757,    -1,  2760,    -1,  2761,  2767,\n   2768,  2769,  2771,    -1,    -1,    -1,  2772,  2773,\n     -1,  2776,    -1,  2778,  2780,  2782,  2786,    -1,\n     -1,    -1,  2787,    -1,    -1,    -1,    -1,    -1,\n   2788,  2789,    -1,  2790,  2791,    -1,    -1,    -1,\n     -1,  2793,    -1,    -1,    -1,    -1,  2794,  2795,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  2797,\n     -1,    -1,    -1,  2798,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  2799,  2803,    -1,\n     -1,    -1,  2804,  2809,  2810,  2811,    -1,  2812,\n     -1,  2813,  2815,  2816,    -1,    -1,    -1,    -1,\n   2818,    -1,    -1,    -1,    -1,    -1,  2819,  2820,\n   2822,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  2824,  2825,    -1,  2828,    -1,  2829,\n   2831,  2833,  2834,  2836,    -1,    -1,    -1,    -1,\n     -1,  2838,  2839,    -1,  2840,    -1,    -1,    -1,\n   2841,    -1,    -1,  2844,    -1,    -1,    -1,    -1,\n   2848,    -1,    -1,  2849,  2855,  2857,    -1,    -1,\n  /* 0x5f00 */\n   2863,  2864,  2871,  2872,  2873,    -1,    -1,    -1,\n     -1,  2875,    -1,    -1,  2876,  2877,  2878,    -1,\n   2880,  2883,  2884,    -1,  2885,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   2886,    -1,    -1,    -1,    -1,  2887,  2889,    -1,\n     -1,    -1,  2890,    -1,    -1,    -1,    -1,  2891,\n     -1,    -1,    -1,  2892,    -1,  2893,    -1,  2894,\n     -1,  2895,  2897,  2898,  2899,    -1,  2900,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  2902,    -1,\n   2903,    -1,    -1,    -1,  2905,    -1,  2906,    -1,\n   2907,  2908,  2909,  2912,  2914,  2915,    -1,  2918,\n     -1,  2919,  2921,  2923,  2926,  2929,  2932,  2935,\n   2936,    -1,    -1,    -1,    -1,  2938,  2939,    -1,\n   2940,  2941,    -1,  2942,  2943,    -1,    -1,    -1,\n     -1,    -1,  2945,    -1,  2946,    -1,    -1,  2947,\n     -1,    -1,    -1,  2950,    -1,    -1,    -1,  2951,\n   2953,  2955,    -1,  2958,  2959,    -1,    -1,  2962,\n   2963,    -1,  2964,    -1,  2965,    -1,    -1,  2966,\n     -1,  2967,    -1,  2970,    -1,  2972,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  2974,    -1,\n   2976,  2978,    -1,  2979,  2981,    -1,    -1,    -1,\n     -1,  2982,    -1,    -1,  2984,  2987,    -1,    -1,\n   2988,  2989,    -1,  2990,  2993,  2995,    -1,  2997,\n     -1,  3000,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  3001,  3002,    -1,  3003,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  3004,  3005,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  3007,\n     -1,  3008,    -1,    -1,  3009,    -1,    -1,    -1,\n     -1,    -1,  3011,  3012,    -1,    -1,    -1,  3013,\n     -1,  3014,    -1,    -1,    -1,    -1,    -1,    -1,\n   3017,    -1,    -1,    -1,    -1,  3018,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  3019,    -1,\n  /* 0x6000 */\n   3020,  3022,  3023,  3024,  3025,  3026,  3027,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  3028,    -1,  3029,    -1,\n     -1,    -1,    -1,    -1,  3030,  3031,    -1,    -1,\n     -1,    -1,    -1,  3032,    -1,  3034,    -1,    -1,\n     -1,    -1,  3035,    -1,    -1,    -1,    -1,    -1,\n     -1,  3036,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  3039,  3044,    -1,    -1,  3045,\n     -1,    -1,    -1,    -1,    -1,    -1,  3046,    -1,\n     -1,    -1,    -1,  3047,    -1,    -1,    -1,    -1,\n     -1,    -1,  3048,  3049,    -1,    -1,  3051,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   3052,  3053,    -1,    -1,  3055,  3057,    -1,    -1,\n     -1,    -1,  3058,    -1,    -1,    -1,    -1,    -1,\n     -1,  3059,    -1,  3061,  3062,  3065,  3066,    -1,\n   3070,  3071,  3072,  3073,  3074,  3076,  3077,  3078,\n   3080,    -1,    -1,    -1,    -1,  3082,    -1,    -1,\n     -1,    -1,  3084,  3089,    -1,  3090,    -1,    -1,\n     -1,  3091,    -1,  3092,    -1,    -1,  3093,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  3095,  3096,\n     -1,    -1,  3097,    -1,  3098,    -1,  3101,    -1,\n     -1,  3103,  3105,  3108,  3109,  3110,    -1,  3111,\n     -1,    -1,    -1,  3112,  3115,  3116,  3117,    -1,\n     -1,    -1,    -1,    -1,    -1,  3118,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  3120,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  3122,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  3125,    -1,\n   3127,  3128,    -1,  3131,    -1,  3132,    -1,  3134,\n   3135,  3136,    -1,  3137,  3138,  3139,  3141,  3142,\n     -1,  3143,  3145,    -1,    -1,    -1,    -1,  3146,\n     -1,    -1,    -1,  3147,  3148,    -1,    -1,    -1,\n  /* 0x6100 */\n     -1,    -1,  3149,    -1,    -1,    -1,    -1,    -1,\n   3151,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  3153,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  3155,    -1,  3156,  3157,    -1,    -1,    -1,\n   3158,  3159,    -1,    -1,  3160,    -1,  3161,  3162,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  3164,  3165,    -1,    -1,  3166,\n     -1,  3167,    -1,    -1,  3169,  3170,  3171,  3172,\n     -1,    -1,  3173,    -1,  3175,    -1,    -1,  3176,\n     -1,    -1,    -1,  3177,    -1,  3178,  3179,    -1,\n     -1,  3182,    -1,    -1,    -1,    -1,    -1,    -1,\n   3184,  3185,  3187,    -1,    -1,    -1,    -1,  3189,\n     -1,    -1,    -1,  3191,  3192,    -1,    -1,    -1,\n     -1,    -1,  3193,  3194,    -1,  3195,  3196,    -1,\n     -1,    -1,    -1,  3197,  3198,    -1,  3199,    -1,\n     -1,    -1,    -1,    -1,  3200,  3202,  3204,  3205,\n     -1,  3208,  3209,    -1,    -1,  3210,    -1,  3211,\n     -1,    -1,  3212,    -1,    -1,    -1,    -1,    -1,\n   3213,  3214,  3217,    -1,  3218,    -1,  3220,  3222,\n   3223,  3226,  3229,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  3230,  3231,    -1,    -1,\n     -1,  3234,    -1,  3235,    -1,    -1,  3236,    -1,\n     -1,    -1,  3237,    -1,    -1,    -1,  3238,    -1,\n     -1,    -1,    -1,  3239,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  3240,    -1,    -1,    -1,  3241,\n     -1,  3242,    -1,    -1,  3244,  3245,    -1,    -1,\n   3246,  3248,  3249,    -1,  3251,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  3252,    -1,  3253,  3254,\n     -1,    -1,    -1,  3255,    -1,    -1,  3256,  3257,\n   3258,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  3259,    -1,  3260,  3262,  3263,  3264,\n   3266,    -1,  3267,    -1,  3268,  3270,  3271,  3272,\n  /* 0x6200 */\n   3273,    -1,    -1,    -1,    -1,    -1,  3274,  3275,\n     -1,    -1,    -1,  3276,    -1,    -1,    -1,  3277,\n     -1,    -1,    -1,    -1,  3279,    -1,    -1,  3280,\n   3281,    -1,  3283,  3285,    -1,  3286,  3288,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  3289,  3291,\n     -1,  3292,    -1,    -1,  3293,    -1,  3294,  3296,\n   3298,    -1,  3300,    -1,    -1,    -1,  3302,  3304,\n   3306,  3308,    -1,  3309,  3310,    -1,  3312,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  3313,  3314,  3315,  3316,    -1,\n     -1,  3318,    -1,    -1,    -1,  3320,    -1,  3321,\n   3322,    -1,    -1,    -1,    -1,    -1,  3324,    -1,\n   3325,    -1,    -1,  3326,    -1,    -1,    -1,  3327,\n   3328,  3330,  3332,  3333,  3334,    -1,    -1,  3335,\n   3336,    -1,    -1,    -1,    -1,  3337,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  3338,    -1,    -1,    -1,    -1,    -1,\n     -1,  3340,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  3341,  3342,  3343,  3344,  3345,  3347,\n   3348,  3349,  3350,    -1,  3351,  3352,    -1,    -1,\n     -1,    -1,    -1,    -1,  3353,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  3354,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  3357,    -1,    -1,  3358,    -1,    -1,\n   3359,    -1,    -1,  3360,    -1,    -1,    -1,  3361,\n   3362,    -1,    -1,  3364,  3365,  3366,  3367,  3368,\n     -1,    -1,    -1,    -1,  3369,  3370,  3371,  3372,\n   3373,  3375,  3378,  3379,    -1,  3380,  3381,  3382,\n   3383,  3385,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  3387,\n  /* 0x6300 */\n     -1,    -1,  3388,    -1,  3389,    -1,    -1,    -1,\n     -1,    -1,  3391,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  3393,  3396,  3397,  3398,  3399,  3400,  3401,\n   3402,  3403,  3404,  3405,  3406,  3407,  3408,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  3409,    -1,  3411,\n     -1,    -1,    -1,    -1,    -1,  3412,  3413,  3414,\n     -1,  3415,    -1,    -1,    -1,    -1,  3418,    -1,\n     -1,    -1,    -1,    -1,    -1,  3421,    -1,  3422,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  3423,\n     -1,    -1,    -1,    -1,  3424,    -1,  3425,  3426,\n     -1,  3427,  3428,  3429,    -1,    -1,    -1,    -1,\n   3431,    -1,    -1,  3432,    -1,    -1,  3433,    -1,\n     -1,    -1,  3435,    -1,  3437,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  3438,\n     -1,    -1,    -1,  3440,  3442,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  3443,\n     -1,  3444,    -1,  3445,    -1,    -1,    -1,    -1,\n     -1,  3446,    -1,    -1,    -1,  3447,    -1,    -1,\n     -1,    -1,    -1,    -1,  3448,    -1,    -1,    -1,\n     -1,    -1,  3449,  3450,  3451,    -1,    -1,  3452,\n   3453,    -1,  3454,  3455,  3456,  3457,    -1,    -1,\n   3458,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  3459,  3460,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  3461,  3462,    -1,    -1,    -1,    -1,\n   3463,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  3464,  3465,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  3466,  3467,    -1,    -1,  3469,    -1,  3470,\n  /* 0x6400 */\n   3471,  3472,  3473,  3474,    -1,  3475,  3478,    -1,\n     -1,    -1,    -1,    -1,    -1,  3479,    -1,    -1,\n     -1,    -1,  3480,    -1,  3481,    -1,  3482,  3484,\n     -1,    -1,    -1,    -1,  3485,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   3487,    -1,    -1,    -1,    -1,  3488,    -1,    -1,\n     -1,    -1,  3489,    -1,    -1,    -1,  3490,    -1,\n     -1,    -1,  3491,    -1,    -1,    -1,  3493,    -1,\n     -1,    -1,  3494,    -1,  3496,  3498,  3499,  3501,\n   3503,    -1,  3504,    -1,    -1,    -1,    -1,    -1,\n     -1,  3505,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  3506,    -1,    -1,  3507,\n   3508,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  3511,    -1,    -1,    -1,    -1,    -1,  3512,\n     -1,    -1,    -1,  3513,    -1,    -1,  3514,    -1,\n     -1,    -1,    -1,  3515,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  3516,  3518,    -1,    -1,    -1,\n   3519,    -1,    -1,    -1,    -1,    -1,    -1,  3520,\n   3521,  3522,    -1,  3523,    -1,    -1,    -1,    -1,\n   3524,    -1,  3525,    -1,    -1,    -1,    -1,  3526,\n     -1,  3527,    -1,  3528,    -1,  3529,  3531,  3532,\n     -1,    -1,    -1,  3535,    -1,    -1,    -1,    -1,\n     -1,    -1,  3536,  3538,    -1,  3539,    -1,  3540,\n   3541,  3542,  3545,  3546,    -1,    -1,  3547,  3548,\n     -1,  3549,    -1,    -1,  3550,    -1,    -1,  3551,\n   3553,    -1,  3555,  3557,    -1,  3558,    -1,    -1,\n     -1,  3559,    -1,    -1,  3560,  3561,    -1,    -1,\n     -1,    -1,  3563,    -1,    -1,    -1,  3565,    -1,\n   3566,  3567,    -1,  3568,    -1,  3569,    -1,  3570,\n     -1,    -1,    -1,    -1,  3573,    -1,    -1,  3574,\n   3575,  3576,  3577,    -1,  3578,  3581,    -1,  3582,\n     -1,    -1,  3584,  3585,  3586,  3587,  3588,    -1,\n  /* 0x6500 */\n   3589,    -1,    -1,    -1,  3590,  3591,  3592,    -1,\n   3593,    -1,  3594,    -1,    -1,    -1,    -1,  3595,\n     -1,    -1,  3596,    -1,  3597,    -1,  3598,    -1,\n     -1,  3599,    -1,  3600,  3601,  3603,    -1,  3605,\n     -1,    -1,  3606,  3608,  3609,    -1,    -1,    -1,\n   3610,    -1,  3611,  3614,  3615,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  3617,  3618,  3619,  3620,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  3621,\n   3625,  3628,    -1,    -1,  3629,  3630,  3632,  3633,\n     -1,    -1,    -1,    -1,    -1,  3634,    -1,  3636,\n   3638,  3640,    -1,  3641,    -1,    -1,  3643,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  3644,    -1,    -1,    -1,    -1,    -1,    -1,\n   3649,    -1,    -1,    -1,    -1,  3650,    -1,  3651,\n   3652,    -1,  3653,    -1,    -1,    -1,    -1,    -1,\n     -1,  3657,  3658,  3660,    -1,  3661,  3666,    -1,\n   3671,  3676,  3680,  3684,  3686,  3688,  3689,    -1,\n     -1,    -1,    -1,  3691,  3692,  3694,    -1,  3695,\n     -1,    -1,    -1,    -1,    -1,    -1,  3700,  3702,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  3703,    -1,    -1,  3704,  3705,    -1,    -1,\n     -1,    -1,  3706,    -1,    -1,  3707,    -1,  3708,\n     -1,    -1,    -1,    -1,  3709,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   3712,  3713,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  3714,    -1,    -1,    -1,    -1,  3715,\n   3717,  3719,    -1,  3721,    -1,    -1,    -1,    -1,\n   3722,    -1,    -1,    -1,    -1,  3723,    -1,  3724,\n     -1,    -1,  3725,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  3728,  3730,\n   3733,  3734,  3736,    -1,    -1,    -1,  3737,  3738,\n  /* 0x6600 */\n     -1,    -1,  3739,    -1,    -1,    -1,    -1,  3740,\n     -1,    -1,  3742,    -1,    -1,    -1,  3743,  3744,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  3745,  3746,    -1,    -1,    -1,    -1,  3747,\n     -1,    -1,    -1,    -1,    -1,  3748,  3749,    -1,\n     -1,    -1,    -1,    -1,  3750,  3751,    -1,  3752,\n   3753,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   3754,    -1,    -1,  3755,  3756,  3758,  3759,  3761,\n     -1,    -1,  3763,  3765,  3766,    -1,    -1,    -1,\n     -1,  3767,    -1,  3768,    -1,    -1,    -1,    -1,\n     -1,    -1,  3769,  3770,  3772,  3773,  3774,    -1,\n     -1,    -1,  3775,    -1,    -1,  3776,    -1,  3778,\n   3779,    -1,    -1,    -1,  3780,    -1,    -1,    -1,\n   3781,  3782,    -1,    -1,    -1,    -1,  3783,    -1,\n     -1,    -1,    -1,    -1,  3784,    -1,    -1,    -1,\n     -1,    -1,    -1,  3786,    -1,    -1,    -1,    -1,\n   3787,  3788,  3790,  3791,    -1,    -1,    -1,    -1,\n   3793,  3794,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  3795,    -1,    -1,    -1,  3796,  3798,\n   3803,    -1,    -1,    -1,  3804,    -1,    -1,    -1,\n     -1,    -1,  3805,    -1,  3806,    -1,  3809,  3812,\n   3813,    -1,    -1,  3814,    -1,  3815,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   3817,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  3819,    -1,    -1,  3820,    -1,  3821,  3825,\n     -1,  3826,    -1,    -1,  3828,  3832,    -1,  3833,\n     -1,    -1,    -1,    -1,    -1,    -1,  3834,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  3835,\n   3836,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   3838,    -1,    -1,    -1,  3839,    -1,    -1,    -1,\n     -1,    -1,  3840,  3845,    -1,  3846,    -1,    -1,\n   3847,  3850,  3851,  3852,    -1,  3854,  3855,    -1,\n  /* 0x6700 */\n   3856,    -1,  3857,  3859,    -1,    -1,    -1,  3860,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  3861,  3862,\n     -1,  3863,    -1,  3864,    -1,    -1,  3865,  3866,\n     -1,    -1,  3867,    -1,    -1,    -1,    -1,  3868,\n     -1,    -1,    -1,    -1,  3869,  3871,  3872,  3873,\n     -1,  3875,    -1,    -1,  3876,  3878,  3879,    -1,\n     -1,    -1,  3880,    -1,    -1,    -1,    -1,    -1,\n   3882,    -1,  3883,  3886,    -1,    -1,  3888,  3889,\n     -1,  3890,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  3893,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   3894,  3895,    -1,    -1,  3896,  3897,  3898,    -1,\n   3899,  3900,    -1,    -1,    -1,    -1,    -1,  3901,\n   3903,  3904,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  3905,  3911,\n   3912,  3917,    -1,    -1,  3918,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  3920,\n     -1,    -1,  3921,    -1,    -1,    -1,    -1,    -1,\n     -1,  3925,    -1,    -1,  3928,    -1,  3929,    -1,\n     -1,  3930,  3931,  3932,    -1,  3933,  3934,  3935,\n   3936,  3937,  3942,  3945,    -1,  3946,    -1,    -1,\n     -1,  3947,    -1,    -1,  3950,    -1,    -1,    -1,\n     -1,    -1,    -1,  3952,    -1,    -1,    -1,    -1,\n     -1,  3953,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  3954,\n     -1,    -1,    -1,    -1,    -1,  3955,    -1,  3956,\n     -1,    -1,    -1,    -1,  3961,    -1,    -1,    -1,\n   3962,    -1,    -1,    -1,    -1,  3963,    -1,    -1,\n     -1,  3964,    -1,    -1,    -1,    -1,    -1,    -1,\n   3966,    -1,    -1,  3967,    -1,  3970,    -1,    -1,\n     -1,  3971,  3972,  3974,    -1,  3975,  3976,  3978,\n  /* 0x6800 */\n   3979,  3980,    -1,  3983,  3985,  3987,    -1,  3988,\n   3989,  3991,  3992,  3994,  3995,    -1,  3997,  3999,\n     -1,  4001,    -1,    -1,    -1,    -1,  4002,  4004,\n     -1,    -1,    -1,    -1,    -1,    -1,  4006,    -1,\n     -1,    -1,  4007,    -1,    -1,    -1,    -1,  4008,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   4009,    -1,    -1,    -1,    -1,    -1,    -1,  4011,\n   4013,    -1,    -1,    -1,    -1,    -1,  4014,    -1,\n     -1,    -1,  4016,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  4017,    -1,    -1,    -1,\n     -1,  4019,  4020,    -1,    -1,    -1,    -1,    -1,\n   4021,    -1,    -1,    -1,  4022,  4024,    -1,  4025,\n   4027,  4030,  4031,  4032,  4033,  4034,  4036,  4037,\n   4038,  4039,  4040,    -1,    -1,    -1,  4041,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4043,  4044,    -1,  4047,    -1,    -1,  4048,\n     -1,  4049,    -1,    -1,  4051,  4052,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  4054,    -1,    -1,\n     -1,    -1,    -1,    -1,  4056,    -1,    -1,    -1,\n   4057,    -1,    -1,    -1,    -1,  4058,    -1,  4059,\n     -1,    -1,    -1,    -1,    -1,  4060,  4065,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4067,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  4069,    -1,  4070,  4071,\n   4072,    -1,  4074,    -1,  4075,    -1,    -1,    -1,\n     -1,    -1,  4076,  4080,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  4084,  4085,  4086,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4087,\n     -1,    -1,    -1,    -1,    -1,  4088,    -1,  4089,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4091,  4092,    -1,    -1,    -1,  4094,    -1,\n     -1,  4095,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x6900 */\n   4096,  4097,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4098,    -1,    -1,    -1,    -1,  4100,  4101,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4104,\n   4106,  4107,    -1,    -1,  4108,    -1,    -1,  4110,\n   4111,    -1,  4112,    -1,  4113,    -1,    -1,    -1,\n     -1,    -1,    -1,  4114,    -1,  4115,    -1,    -1,\n   4116,    -1,    -1,    -1,  4117,    -1,  4118,    -1,\n     -1,  4119,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  4120,    -1,    -1,  4121,    -1,    -1,\n     -1,    -1,    -1,  4123,    -1,  4124,    -1,    -1,\n     -1,  4125,  4126,    -1,    -1,    -1,    -1,    -1,\n   4127,  4128,    -1,    -1,    -1,  4129,  4130,    -1,\n   4131,    -1,  4132,  4133,    -1,  4134,    -1,    -1,\n     -1,    -1,    -1,  4135,    -1,  4137,    -1,    -1,\n     -1,    -1,    -1,    -1,  4138,  4139,    -1,  4141,\n     -1,    -1,    -1,    -1,  4142,  4143,  4144,  4145,\n   4146,  4147,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  4149,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  4150,    -1,\n   4152,    -1,  4153,    -1,    -1,    -1,  4154,    -1,\n     -1,    -1,  4156,    -1,  4157,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  4158,    -1,    -1,  4159,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4160,\n   4161,    -1,    -1,  4163,    -1,  4164,    -1,    -1,\n     -1,  4165,    -1,  4167,  4168,  4170,    -1,  4172,\n   4174,  4176,  4177,  4178,    -1,    -1,  4180,  4181,\n   4182,    -1,    -1,    -1,  4183,    -1,    -1,  4184,\n   4185,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4186,    -1,  4187,    -1,    -1,  4188,    -1,\n     -1,  4189,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x6a00 */\n     -1,  4190,  4191,  4193,    -1,  4194,    -1,    -1,\n     -1,    -1,  4195,    -1,    -1,    -1,    -1,    -1,\n   4196,  4197,  4199,  4200,    -1,    -1,    -1,    -1,\n     -1,  4201,    -1,    -1,    -1,    -1,  4202,    -1,\n     -1,    -1,    -1,  4203,    -1,    -1,    -1,    -1,\n     -1,  4205,  4207,    -1,    -1,    -1,    -1,  4209,\n     -1,  4211,    -1,  4213,    -1,    -1,    -1,  4214,\n   4218,  4220,  4221,    -1,    -1,  4222,    -1,  4223,\n     -1,    -1,    -1,  4224,    -1,    -1,    -1,    -1,\n   4226,    -1,  4227,  4228,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4230,\n     -1,    -1,  4231,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  4233,    -1,    -1,  4235,    -1,\n   4238,  4239,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4240,    -1,    -1,  4243,    -1,    -1,    -1,\n     -1,  4244,    -1,  4245,    -1,    -1,  4246,    -1,\n     -1,  4247,    -1,    -1,    -1,    -1,    -1,  4248,\n   4250,    -1,    -1,    -1,  4251,    -1,    -1,  4252,\n   4254,    -1,    -1,    -1,  4255,  4256,    -1,  4257,\n     -1,    -1,  4258,  4260,    -1,    -1,    -1,    -1,\n     -1,  4261,  4262,    -1,    -1,    -1,  4264,  4265,\n     -1,  4267,    -1,  4271,    -1,    -1,    -1,    -1,\n   4272,    -1,    -1,  4273,    -1,    -1,    -1,    -1,\n   4274,  4278,  4279,  4280,    -1,    -1,    -1,    -1,\n   4281,    -1,    -1,    -1,  4282,    -1,  4283,    -1,\n     -1,    -1,    -1,  4285,  4287,  4288,    -1,    -1,\n     -1,    -1,  4289,  4290,    -1,  4291,  4292,  4293,\n     -1,    -1,    -1,    -1,    -1,  4295,    -1,  4296,\n   4297,    -1,  4298,    -1,  4299,    -1,    -1,    -1,\n     -1,    -1,    -1,  4300,    -1,    -1,    -1,    -1,\n   4301,    -1,  4302,  4303,    -1,  4305,    -1,    -1,\n  /* 0x6b00 */\n     -1,    -1,    -1,    -1,  4306,  4308,    -1,    -1,\n     -1,  4309,  4313,    -1,    -1,    -1,    -1,  4315,\n     -1,  4316,  4317,    -1,    -1,    -1,  4319,  4320,\n     -1,    -1,    -1,    -1,    -1,  4322,  4325,    -1,\n   4327,    -1,  4329,  4333,  4336,    -1,    -1,  4337,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  4338,    -1,    -1,  4339,    -1,    -1,\n     -1,    -1,    -1,  4340,    -1,  4341,  4342,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  4343,    -1,  4344,    -1,\n   4346,    -1,    -1,  4347,    -1,    -1,  4349,    -1,\n   4352,    -1,    -1,  4353,    -1,  4355,    -1,  4356,\n     -1,  4357,    -1,    -1,    -1,  4359,    -1,    -1,\n   4361,  4363,    -1,    -1,  4365,    -1,  4366,  4369,\n     -1,    -1,  4371,  4375,  4379,    -1,    -1,  4382,\n   4385,  4388,  4389,    -1,  4390,    -1,  4392,  4396,\n   4400,  4401,    -1,    -1,    -1,    -1,    -1,  4405,\n     -1,    -1,    -1,  4406,    -1,    -1,    -1,    -1,\n     -1,    -1,  4407,  4408,    -1,    -1,    -1,    -1,\n   4409,    -1,  4410,    -1,    -1,    -1,  4411,    -1,\n     -1,  4412,    -1,    -1,  4413,    -1,    -1,    -1,\n     -1,    -1,    -1,  4414,    -1,    -1,  4415,  4416,\n     -1,  4417,  4419,    -1,  4421,    -1,    -1,  4422,\n     -1,    -1,  4423,  4424,  4426,    -1,    -1,    -1,\n   4428,  4429,  4432,    -1,    -1,    -1,  4433,    -1,\n     -1,  4434,    -1,    -1,    -1,    -1,  4436,  4437,\n     -1,    -1,    -1,  4438,  4440,  4441,    -1,  4442,\n   4443,  4444,    -1,    -1,    -1,    -1,    -1,  4445,\n     -1,  4446,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  4447,    -1,  4448,    -1,\n     -1,    -1,    -1,    -1,    -1,  4449,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4450,\n  /* 0x6c00 */\n     -1,    -1,  4451,    -1,    -1,    -1,    -1,  4453,\n   4454,    -1,  4456,    -1,  4457,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  4458,    -1,    -1,  4461,\n     -1,    -1,    -1,  4464,    -1,    -1,    -1,    -1,\n     -1,    -1,  4465,  4466,    -1,    -1,    -1,    -1,\n     -1,  4469,    -1,  4470,  4471,    -1,    -1,    -1,\n     -1,    -1,  4472,  4473,  4474,  4476,    -1,  4478,\n     -1,    -1,  4481,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4483,\n     -1,  4487,    -1,    -1,    -1,    -1,  4488,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4489,  4491,    -1,    -1,    -1,    -1,    -1,\n     -1,  4493,    -1,    -1,  4495,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  4496,  4497,    -1,    -1,    -1,\n     -1,  4498,  4499,  4500,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   4501,  4503,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  4504,    -1,    -1,    -1,  4505,  4506,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4507,\n     -1,  4508,  4513,  4515,  4516,  4517,  4518,  4519,\n   4520,  4521,  4522,    -1,    -1,    -1,  4524,    -1,\n     -1,  4525,  4526,    -1,    -1,  4527,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  4528,    -1,\n     -1,  4529,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  4530,    -1,    -1,\n     -1,    -1,    -1,  4532,    -1,  4533,  4534,    -1,\n     -1,    -1,    -1,    -1,    -1,  4535,    -1,    -1,\n   4536,    -1,  4537,    -1,    -1,    -1,    -1,  4539,\n   4540,    -1,    -1,    -1,    -1,    -1,  4541,  4542,\n   4544,    -1,  4545,  4546,  4547,  4550,  4552,    -1,\n  /* 0x6d00 */\n     -1,  4553,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  4554,    -1,    -1,    -1,\n     -1,    -1,  4555,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4556,\n     -1,    -1,    -1,    -1,    -1,    -1,  4557,    -1,\n     -1,    -1,    -1,    -1,  4558,    -1,    -1,    -1,\n   4559,    -1,    -1,  4560,  4561,  4562,  4563,  4564,\n   4565,  4566,  4567,  4568,    -1,  4569,  4570,  4572,\n   4574,  4575,  4576,  4577,  4578,  4579,    -1,    -1,\n     -1,    -1,    -1,    -1,  4580,    -1,    -1,    -1,\n     -1,    -1,    -1,  4583,    -1,    -1,    -1,  4584,\n     -1,  4587,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4588,    -1,    -1,  4589,    -1,    -1,    -1,\n     -1,    -1,  4590,    -1,    -1,  4592,    -1,  4593,\n     -1,  4594,    -1,    -1,  4595,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  4596,    -1,\n     -1,  4598,    -1,  4600,  4601,  4603,  4604,  4605,\n   4606,  4607,  4608,  4609,  4610,    -1,  4611,  4612,\n   4614,  4615,    -1,    -1,    -1,    -1,    -1,  4619,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   4620,    -1,    -1,    -1,  4621,    -1,    -1,    -1,\n   4622,    -1,    -1,    -1,  4623,    -1,    -1,    -1,\n     -1,    -1,    -1,  4624,    -1,    -1,    -1,    -1,\n     -1,    -1,  4625,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  4626,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  4628,    -1,    -1,\n   4629,    -1,  4631,  4632,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  4634,    -1,  4635,  4638,    -1,\n   4639,    -1,  4640,  4641,    -1,    -1,    -1,    -1,\n  /* 0x6e00 */\n     -1,    -1,    -1,    -1,    -1,  4642,    -1,  4643,\n   4644,  4646,  4647,  4650,  4654,  4655,  4656,    -1,\n   4658,  4659,    -1,  4660,  4664,  4665,  4668,  4669,\n     -1,  4670,    -1,  4671,    -1,    -1,    -1,    -1,\n     -1,    -1,  4672,    -1,    -1,    -1,  4673,    -1,\n     -1,  4674,    -1,    -1,  4675,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  4676,    -1,    -1,    -1,\n   4677,    -1,    -1,    -1,    -1,    -1,  4679,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  4680,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  4681,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4682,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4683,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  4684,  4685,  4686,  4687,  4688,\n   4690,  4692,  4693,  4694,    -1,  4695,    -1,  4696,\n     -1,  4697,    -1,    -1,  4698,    -1,    -1,    -1,\n   4701,    -1,    -1,    -1,    -1,  4702,  4704,    -1,\n     -1,    -1,    -1,    -1,  4706,  4707,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  4708,  4712,    -1,    -1,  4713,  4714,\n     -1,    -1,    -1,  4716,    -1,    -1,  4717,    -1,\n     -1,    -1,    -1,    -1,  4719,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  4721,  4722,    -1,    -1,\n     -1,    -1,    -1,    -1,  4723,    -1,  4724,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4725,\n     -1,  4726,  4728,  4729,    -1,  4730,  4732,  4733,\n   4736,  4737,  4739,    -1,  4740,  4741,  4742,    -1,\n   4743,  4746,  4747,    -1,  4748,    -1,    -1,  4750,\n     -1,    -1,  4751,    -1,    -1,    -1,    -1,  4752,\n   4755,    -1,    -1,  4757,    -1,    -1,  4758,  4759,\n  /* 0x6f00 */\n     -1,  4761,    -1,    -1,  4762,    -1,  4763,    -1,\n     -1,    -1,  4764,    -1,    -1,    -1,    -1,    -1,\n     -1,  4765,    -1,  4766,    -1,    -1,    -1,    -1,\n     -1,    -1,  4767,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  4768,  4769,    -1,    -1,    -1,  4770,\n     -1,    -1,    -1,  4773,  4774,    -1,    -1,    -1,\n     -1,  4775,  4776,    -1,    -1,    -1,    -1,    -1,\n   4777,    -1,    -1,    -1,    -1,    -1,    -1,  4778,\n     -1,  4779,    -1,    -1,  4780,  4781,  4782,  4783,\n     -1,    -1,    -1,  4784,    -1,  4785,    -1,    -1,\n     -1,  4786,    -1,    -1,  4789,    -1,    -1,    -1,\n     -1,  4791,    -1,  4792,  4794,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  4796,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4797,\n   4798,    -1,    -1,    -1,  4799,    -1,    -1,  4800,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4801,\n   4802,  4806,  4810,    -1,  4813,    -1,  4816,  4817,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4818,    -1,    -1,  4819,    -1,    -1,  4820,\n     -1,    -1,  4821,  4822,  4825,    -1,    -1,  4826,\n   4828,    -1,    -1,  4829,  4830,    -1,  4832,    -1,\n     -1,  4833,    -1,    -1,    -1,    -1,  4834,    -1,\n   4835,  4836,    -1,  4837,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4838,    -1,  4839,    -1,    -1,    -1,  4840,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4841,  4843,    -1,  4844,  4845,    -1,    -1,\n   4847,    -1,  4848,  4850,  4852,    -1,    -1,  4853,\n     -1,    -1,    -1,    -1,  4855,    -1,    -1,    -1,\n     -1,    -1,    -1,  4856,    -1,    -1,    -1,    -1,\n   4857,  4858,    -1,  4861,    -1,  4863,  4866,    -1,\n     -1,    -1,  4868,    -1,  4869,    -1,  4870,    -1,\n  /* 0x7000 */\n     -1,    -1,  4871,    -1,    -1,  4874,  4875,    -1,\n     -1,  4877,    -1,  4878,    -1,    -1,    -1,  4880,\n     -1,    -1,    -1,  4881,    -1,  4884,    -1,    -1,\n   4885,    -1,    -1,    -1,    -1,  4886,    -1,  4887,\n   4888,    -1,    -1,    -1,    -1,    -1,  4889,  4890,\n   4892,    -1,    -1,    -1,  4894,    -1,    -1,  4896,\n   4897,    -1,  4898,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  4900,    -1,\n     -1,    -1,    -1,  4901,  4902,    -1,    -1,    -1,\n     -1,    -1,    -1,  4903,  4905,    -1,  4906,  4908,\n     -1,  4909,    -1,    -1,  4910,  4912,    -1,    -1,\n   4913,    -1,    -1,    -1,    -1,  4914,    -1,    -1,\n     -1,    -1,    -1,  4915,  4916,    -1,    -1,  4917,\n     -1,    -1,    -1,    -1,    -1,  4918,  4919,  4921,\n     -1,    -1,    -1,    -1,    -1,  4922,  4925,    -1,\n     -1,    -1,    -1,  4927,    -1,  4929,  4931,  4933,\n   4934,  4935,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4938,    -1,    -1,    -1,  4941,  4943,  4944,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4945,\n     -1,    -1,    -1,    -1,  4947,  4948,    -1,    -1,\n     -1,    -1,    -1,    -1,  4949,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  4954,  4957,\n   4958,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  4959,  4960,    -1,  4962,  4965,    -1,    -1,\n     -1,  4966,  4967,  4970,    -1,    -1,    -1,    -1,\n     -1,    -1,  4971,    -1,    -1,    -1,    -1,  4972,\n     -1,    -1,    -1,    -1,    -1,    -1,  4973,    -1,\n     -1,    -1,    -1,  4975,    -1,    -1,    -1,  4976,\n     -1,    -1,    -1,    -1,    -1,    -1,  4977,  4978,\n   4980,  4982,    -1,  4983,  4984,  4985,    -1,    -1,\n     -1,  4986,    -1,    -1,  4987,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  4988,  4989,    -1,\n  /* 0x7100 */\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  4991,\n   4992,    -1,  4996,    -1,    -1,    -1,    -1,  4997,\n     -1,    -1,    -1,    -1,  4998,  5000,  5001,    -1,\n   5002,    -1,  5003,    -1,    -1,    -1,    -1,    -1,\n     -1,  5005,    -1,    -1,    -1,    -1,  5006,    -1,\n     -1,    -1,    -1,    -1,    -1,  5007,    -1,    -1,\n   5008,    -1,    -1,  5010,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  5011,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  5013,    -1,    -1,\n     -1,  5014,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5017,  5018,    -1,    -1,  5019,  5023,  5024,\n     -1,  5025,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5026,    -1,    -1,  5028,    -1,  5029,\n     -1,  5033,    -1,    -1,  5034,    -1,  5036,    -1,\n     -1,    -1,    -1,    -1,  5037,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  5039,    -1,\n     -1,    -1,    -1,    -1,    -1,  5041,    -1,    -1,\n   5043,    -1,    -1,    -1,    -1,    -1,    -1,  5047,\n     -1,    -1,  5048,    -1,  5049,    -1,    -1,  5051,\n     -1,  5052,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5056,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5057,  5058,  5059,    -1,    -1,    -1,    -1,\n     -1,  5060,  5061,    -1,    -1,    -1,  5062,    -1,\n     -1,  5063,    -1,    -1,  5065,    -1,    -1,    -1,\n   5067,    -1,    -1,    -1,  5068,    -1,  5070,    -1,\n   5071,    -1,  5073,  5075,    -1,  5077,    -1,  5078,\n     -1,  5081,    -1,    -1,  5082,    -1,    -1,  5083,\n     -1,    -1,    -1,    -1,    -1,    -1,  5085,    -1,\n     -1,    -1,    -1,    -1,  5086,  5087,    -1,    -1,\n     -1,    -1,    -1,  5088,  5092,    -1,    -1,    -1,\n     -1,    -1,    -1,  5093,  5094,    -1,  5095,  5096,\n  /* 0x7200 */\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  5097,    -1,    -1,\n   5098,    -1,    -1,    -1,    -1,    -1,    -1,  5099,\n     -1,    -1,    -1,  5101,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  5104,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  5107,    -1,    -1,\n     -1,  5108,  5109,    -1,  5111,    -1,    -1,  5112,\n     -1,    -1,  5113,    -1,  5114,    -1,  5115,  5118,\n   5119,    -1,    -1,  5120,    -1,  5121,  5122,    -1,\n     -1,    -1,    -1,  5123,    -1,  5124,  5125,    -1,\n     -1,    -1,    -1,  5129,    -1,  5130,    -1,    -1,\n   5134,    -1,    -1,  5135,  5136,    -1,    -1,    -1,\n   5137,    -1,    -1,    -1,    -1,    -1,  5138,    -1,\n     -1,    -1,    -1,  5140,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  5142,  5143,    -1,    -1,\n     -1,    -1,  5144,    -1,    -1,  5146,    -1,    -1,\n     -1,  5147,  5148,    -1,    -1,    -1,    -1,  5149,\n     -1,    -1,  5150,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  5151,    -1,\n     -1,    -1,    -1,  5152,    -1,    -1,    -1,    -1,\n   5154,    -1,  5156,    -1,    -1,    -1,    -1,  5157,\n     -1,    -1,    -1,    -1,  5159,  5160,  5161,    -1,\n     -1,    -1,  5162,    -1,  5163,    -1,  5165,  5166,\n   5167,  5168,    -1,    -1,    -1,    -1,    -1,    -1,\n   5169,    -1,  5170,    -1,    -1,    -1,    -1,    -1,\n   5172,  5173,    -1,    -1,  5174,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  5175,  5176,    -1,\n     -1,    -1,  5177,    -1,    -1,  5178,    -1,    -1,\n     -1,    -1,    -1,    -1,  5179,  5180,  5181,  5182,\n   5183,  5184,  5185,    -1,    -1,    -1,    -1,    -1,\n   5186,  5188,    -1,    -1,    -1,  5189,  5190,    -1,\n  /* 0x7300 */\n     -1,    -1,  5191,  5192,    -1,    -1,    -1,  5193,\n     -1,    -1,  5194,    -1,    -1,  5195,  5197,    -1,\n     -1,    -1,    -1,    -1,    -1,  5199,    -1,    -1,\n   5200,  5201,    -1,    -1,    -1,    -1,    -1,  5202,\n     -1,  5204,    -1,    -1,    -1,    -1,    -1,    -1,\n   5205,  5206,  5207,  5208,  5209,    -1,  5210,  5211,\n     -1,    -1,  5212,    -1,    -1,  5213,  5214,    -1,\n     -1,    -1,    -1,  5215,    -1,    -1,    -1,  5216,\n     -1,  5218,    -1,    -1,  5219,  5220,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  5221,  5222,  5225,\n   5226,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   5227,  5228,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  5229,    -1,    -1,  5231,    -1,\n   5232,    -1,  5233,  5234,    -1,  5236,  5237,    -1,\n   5238,  5239,  5240,    -1,    -1,  5241,    -1,  5243,\n   5244,    -1,  5246,  5247,  5248,    -1,  5249,    -1,\n   5250,  5251,    -1,  5252,    -1,  5254,    -1,  5255,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5256,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5257,  5258,  5259,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   5260,  5262,    -1,    -1,    -1,    -1,  5263,  5264,\n   5265,  5266,    -1,  5267,    -1,    -1,    -1,    -1,\n     -1,    -1,  5268,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  5269,    -1,  5272,  5273,  5274,\n   5276,  5277,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5278,    -1,    -1,  5280,    -1,    -1,    -1,\n     -1,    -1,  5284,    -1,    -1,    -1,    -1,    -1,\n   5285,  5286,  5288,    -1,    -1,    -1,    -1,  5289,\n     -1,    -1,    -1,    -1,    -1,    -1,  5290,    -1,\n  /* 0x7400 */\n     -1,    -1,    -1,  5291,    -1,  5292,    -1,    -1,\n     -1,  5293,    -1,    -1,    -1,  5296,  5298,  5299,\n   5300,  5302,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5304,    -1,    -1,  5305,    -1,    -1,    -1,\n     -1,  5307,  5309,    -1,  5310,    -1,    -1,  5311,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  5312,\n     -1,    -1,    -1,  5313,    -1,    -1,    -1,    -1,\n     -1,    -1,  5314,    -1,    -1,    -1,    -1,    -1,\n     -1,  5315,    -1,    -1,    -1,    -1,    -1,    -1,\n   5316,    -1,    -1,  5319,  5321,    -1,    -1,    -1,\n   5322,  5323,  5324,    -1,    -1,    -1,    -1,  5325,\n   5326,    -1,  5327,    -1,  5328,    -1,  5330,  5331,\n   5332,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  5333,    -1,    -1,    -1,  5335,\n     -1,  5336,    -1,    -1,    -1,    -1,  5337,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5339,  5341,  5344,    -1,    -1,  5345,    -1,\n     -1,    -1,    -1,  5346,    -1,    -1,    -1,    -1,\n   5347,    -1,    -1,    -1,    -1,  5348,    -1,    -1,\n   5349,    -1,    -1,    -1,    -1,  5350,    -1,  5352,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   5353,  5355,  5356,    -1,  5357,    -1,    -1,  5358,\n     -1,    -1,  5359,    -1,  5360,    -1,    -1,    -1,\n     -1,    -1,  5362,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  5364,    -1,    -1,    -1,    -1,\n   5365,    -1,    -1,    -1,    -1,    -1,  5366,  5367,\n     -1,    -1,    -1,    -1,    -1,    -1,  5368,  5370,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x7500 */\n     -1,  5371,    -1,    -1,    -1,    -1,  5373,    -1,\n     -1,    -1,    -1,    -1,  5374,    -1,  5375,    -1,\n     -1,    -1,    -1,    -1,    -1,  5378,  5379,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  5381,    -1,\n   5384,    -1,  5385,  5387,    -1,    -1,  5389,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  5392,\n     -1,    -1,    -1,    -1,    -1,  5398,    -1,  5399,\n     -1,    -1,  5400,  5402,  5407,  5409,    -1,    -1,\n     -1,    -1,  5410,    -1,  5411,  5413,  5414,    -1,\n     -1,    -1,  5418,    -1,  5419,  5421,  5423,    -1,\n     -1,  5424,  5425,    -1,    -1,    -1,    -1,    -1,\n     -1,  5429,  5431,    -1,    -1,  5432,  5437,    -1,\n   5441,  5442,  5443,    -1,    -1,  5444,    -1,  5445,\n   5446,    -1,  5447,  5448,    -1,    -1,    -1,    -1,\n   5450,  5451,    -1,  5453,  5457,  5458,  5460,    -1,\n     -1,    -1,  5461,  5462,    -1,    -1,    -1,    -1,\n     -1,    -1,  5463,    -1,    -1,  5467,  5469,  5470,\n     -1,  5471,  5475,    -1,    -1,    -1,  5479,  5481,\n     -1,    -1,    -1,    -1,    -1,    -1,  5483,  5484,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  5485,\n   5486,  5487,    -1,  5488,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  5489,  5490,  5491,  5492,\n     -1,  5493,    -1,    -1,  5495,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  5496,\n   5497,  5498,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5499,    -1,    -1,    -1,  5500,    -1,\n     -1,  5504,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   5505,  5506,  5507,  5508,    -1,    -1,  5509,    -1,\n     -1,    -1,  5510,  5512,  5515,    -1,    -1,    -1,\n     -1,  5516,  5517,    -1,    -1,    -1,  5518,    -1,\n  /* 0x7600 */\n     -1,    -1,  5519,    -1,    -1,  5523,  5524,    -1,\n     -1,  5525,    -1,  5527,    -1,  5528,    -1,    -1,\n     -1,    -1,    -1,  5529,    -1,    -1,  5530,  5531,\n   5532,    -1,    -1,    -1,    -1,    -1,  5533,    -1,\n     -1,  5534,    -1,    -1,  5535,    -1,  5536,  5537,\n     -1,    -1,  5538,  5539,    -1,    -1,  5540,    -1,\n     -1,    -1,  5541,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5542,  5543,    -1,    -1,  5545,  5546,\n     -1,    -1,  5547,    -1,  5548,  5550,  5551,  5552,\n     -1,  5553,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5554,    -1,    -1,  5556,    -1,    -1,\n   5558,    -1,    -1,    -1,    -1,    -1,  5559,  5560,\n     -1,  5561,  5562,  5563,  5564,  5565,    -1,  5566,\n     -1,  5567,    -1,  5568,  5569,  5570,  5571,  5572,\n   5573,  5576,  5577,    -1,  5578,  5579,    -1,    -1,\n     -1,    -1,  5580,  5590,  5591,    -1,    -1,    -1,\n     -1,  5593,  5595,  5597,    -1,    -1,    -1,    -1,\n   5598,    -1,    -1,  5601,    -1,  5602,  5604,    -1,\n   5605,  5606,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5607,    -1,    -1,    -1,  5609,    -1,\n     -1,  5610,    -1,    -1,    -1,  5611,    -1,    -1,\n   5613,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   5614,  5616,  5617,    -1,    -1,    -1,    -1,  5619,\n   5620,  5622,  5624,    -1,  5625,    -1,    -1,    -1,\n     -1,  5626,    -1,  5627,    -1,    -1,    -1,  5629,\n   5630,    -1,    -1,  5631,  5634,  5635,    -1,  5636,\n   5637,  5639,    -1,    -1,    -1,    -1,  5641,  5643,\n   5644,  5645,    -1,    -1,  5646,    -1,  5647,    -1,\n     -1,  5648,    -1,  5649,  5651,    -1,    -1,  5652,\n     -1,    -1,  5653,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x7700 */\n     -1,    -1,    -1,    -1,    -1,    -1,  5655,    -1,\n     -1,  5657,    -1,    -1,  5658,  5660,  5661,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   5663,    -1,    -1,    -1,    -1,    -1,  5664,  5665,\n     -1,    -1,    -1,    -1,    -1,  5666,  5667,    -1,\n     -1,    -1,    -1,  5668,  5669,    -1,    -1,  5670,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  5672,\n     -1,    -1,    -1,    -1,    -1,    -1,  5673,    -1,\n   5676,  5677,  5678,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  5679,\n   5680,  5681,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  5682,    -1,  5683,    -1,\n   5684,    -1,    -1,    -1,  5685,  5686,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5687,    -1,    -1,    -1,    -1,    -1,  5688,\n     -1,    -1,    -1,    -1,    -1,  5690,  5691,  5692,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5693,    -1,    -1,    -1,  5694,    -1,\n   5695,    -1,    -1,    -1,    -1,    -1,  5696,    -1,\n   5697,    -1,  5698,    -1,    -1,    -1,    -1,    -1,\n     -1,  5699,  5700,    -1,    -1,  5701,    -1,    -1,\n   5703,    -1,    -1,    -1,    -1,    -1,  5704,    -1,\n     -1,    -1,    -1,    -1,  5705,    -1,  5706,    -1,\n     -1,  5710,    -1,    -1,    -1,    -1,    -1,  5711,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5712,  5713,    -1,    -1,    -1,    -1,\n     -1,  5714,  5715,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5716,    -1,  5717,    -1,  5719,  5720,\n     -1,    -1,    -1,  5722,    -1,    -1,    -1,  5723,\n     -1,    -1,    -1,    -1,  5724,    -1,  5727,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  5728,  5729,\n  /* 0x7800 */\n   5734,  5735,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5736,    -1,    -1,  5737,  5738,  5741,\n     -1,    -1,  5742,    -1,  5743,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  5744,    -1,  5745,\n     -1,    -1,    -1,    -1,  5746,    -1,    -1,    -1,\n     -1,    -1,  5747,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5750,  5751,    -1,    -1,  5752,  5753,\n   5758,  5759,    -1,  5760,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  5761,  5762,  5763,\n     -1,  5764,  5765,    -1,  5766,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  5767,    -1,    -1,    -1,\n   5768,    -1,  5769,    -1,    -1,    -1,  5770,  5773,\n     -1,    -1,    -1,    -1,    -1,  5774,    -1,  5775,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5778,    -1,    -1,    -1,    -1,    -1,  5782,\n     -1,    -1,    -1,    -1,    -1,  5784,  5785,    -1,\n     -1,    -1,    -1,    -1,  5786,  5787,    -1,  5790,\n     -1,    -1,    -1,  5793,  5794,    -1,  5795,  5798,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5799,  5800,    -1,    -1,  5801,    -1,  5802,\n   5803,  5805,    -1,    -1,    -1,    -1,    -1,    -1,\n   5807,    -1,  5808,  5810,  5812,    -1,    -1,    -1,\n     -1,  5813,    -1,    -1,    -1,    -1,    -1,  5814,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5815,  5816,    -1,  5817,    -1,  5818,    -1,\n     -1,    -1,  5819,    -1,    -1,    -1,    -1,    -1,\n   5822,    -1,    -1,  5823,    -1,    -1,    -1,  5824,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  5825,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  5826,\n   5827,    -1,  5828,    -1,    -1,  5829,    -1,    -1,\n  /* 0x7900 */\n   5830,    -1,    -1,    -1,  5831,    -1,  5832,    -1,\n   5835,    -1,    -1,    -1,    -1,    -1,  5837,    -1,\n     -1,    -1,  5838,    -1,    -1,    -1,    -1,    -1,\n     -1,  5839,    -1,    -1,    -1,    -1,    -1,  5840,\n   5843,    -1,    -1,    -1,    -1,    -1,  5844,    -1,\n     -1,    -1,  5849,  5850,  5851,    -1,  5852,    -1,\n     -1,  5855,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5856,  5857,  5858,    -1,    -1,  5859,\n   5860,    -1,    -1,  5861,    -1,  5862,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  5863,    -1,\n     -1,    -1,    -1,    -1,    -1,  5864,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  5865,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  5866,\n     -1,    -1,    -1,    -1,    -1,  5867,    -1,  5868,\n   5869,    -1,    -1,    -1,    -1,    -1,    -1,  5870,\n   5871,    -1,    -1,    -1,  5872,  5873,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  5874,  5875,    -1,\n     -1,    -1,    -1,    -1,    -1,  5876,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  5877,    -1,    -1,    -1,    -1,  5878,    -1,\n     -1,  5879,  5880,    -1,    -1,    -1,  5881,    -1,\n   5882,  5883,    -1,    -1,  5884,    -1,    -1,    -1,\n     -1,    -1,    -1,  5885,    -1,    -1,    -1,  5886,\n     -1,  5887,    -1,  5888,    -1,    -1,  5889,  5890,\n   5895,    -1,  5896,  5897,  5902,  5905,    -1,    -1,\n   5906,    -1,    -1,    -1,  5907,  5909,  5910,  5911,\n   5912,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  5913,\n   5914,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   5916,    -1,    -1,    -1,    -1,  5917,  5918,    -1,\n  /* 0x7a00 */\n     -1,  5919,    -1,    -1,    -1,  5923,  5924,    -1,\n   5926,  5927,    -1,    -1,    -1,    -1,  5929,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  5930,\n     -1,    -1,  5932,    -1,  5934,    -1,    -1,  5935,\n     -1,    -1,    -1,  5936,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  5937,  5938,    -1,\n     -1,  5939,  5941,  5942,    -1,    -1,    -1,    -1,\n     -1,    -1,  5944,  5946,    -1,    -1,  5947,  5951,\n   5955,    -1,  5957,    -1,    -1,  5958,    -1,    -1,\n     -1,  5960,    -1,    -1,  5962,  5966,  5967,  5969,\n   5971,  5974,    -1,    -1,    -1,    -1,    -1,  5975,\n     -1,    -1,    -1,    -1,    -1,    -1,  5976,    -1,\n   5978,  5979,  5980,  5981,    -1,    -1,    -1,    -1,\n   5982,  5986,  5988,  5990,    -1,  5991,    -1,    -1,\n   5993,    -1,    -1,    -1,    -1,    -1,    -1,  5994,\n     -1,  5996,    -1,    -1,    -1,  5997,    -1,    -1,\n     -1,  5998,    -1,  5999,    -1,    -1,    -1,    -1,\n     -1,    -1,  6000,    -1,    -1,  6001,  6002,    -1,\n     -1,  6003,    -1,  6005,    -1,    -1,    -1,  6009,\n     -1,    -1,    -1,    -1,  6013,  6014,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  6015,  6016,    -1,\n     -1,  6017,  6018,    -1,  6019,  6020,  6022,  6024,\n   6026,    -1,    -1,  6028,    -1,  6029,  6030,    -1,\n     -1,    -1,  6032,  6033,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  6037,  6039,  6040,  6041,  6043,\n   6044,    -1,  6046,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  6047,    -1,    -1,    -1,  6048,    -1,\n     -1,    -1,  6050,    -1,  6051,  6053,  6056,    -1,\n     -1,    -1,  6058,    -1,    -1,    -1,    -1,    -1,\n     -1,  6059,  6061,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  6063,    -1,\n   6065,    -1,    -1,    -1,    -1,    -1,  6067,    -1,\n  /* 0x7b00 */\n     -1,    -1,    -1,  6068,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  6069,    -1,    -1,    -1,    -1,\n     -1,  6071,    -1,    -1,  6073,  6074,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  6075,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  6076,\n   6082,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  6083,  6085,    -1,\n     -1,    -1,  6086,    -1,  6088,    -1,  6090,    -1,\n     -1,    -1,    -1,    -1,    -1,  6091,  6092,    -1,\n     -1,    -1,    -1,  6093,    -1,  6094,    -1,  6096,\n   6098,  6099,    -1,    -1,    -1,    -1,  6100,    -1,\n   6104,  6105,  6106,  6107,  6108,  6109,  6110,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  6114,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  6115,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  6116,  6117,    -1,  6118,    -1,  6119,  6122,\n   6123,    -1,  6124,    -1,    -1,    -1,  6125,  6126,\n     -1,    -1,    -1,  6129,    -1,  6130,    -1,  6131,\n     -1,    -1,  6132,  6133,    -1,    -1,    -1,    -1,\n     -1,    -1,  6134,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  6135,    -1,    -1,  6139,  6141,\n   6142,  6143,  6144,  6145,  6146,    -1,    -1,    -1,\n   6147,    -1,  6149,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   6150,    -1,    -1,    -1,  6151,    -1,  6153,    -1,\n     -1,  6154,    -1,  6155,    -1,    -1,    -1,  6157,\n     -1,  6158,    -1,  6159,  6160,    -1,    -1,  6161,\n     -1,    -1,    -1,  6162,    -1,    -1,    -1,    -1,\n   6163,  6165,    -1,    -1,  6166,    -1,  6167,    -1,\n     -1,  6168,  6171,    -1,    -1,  6172,  6174,  6175,\n     -1,  6176,  6177,  6178,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x7c00 */\n   6179,  6181,    -1,    -1,  6183,    -1,  6185,    -1,\n     -1,    -1,    -1,    -1,    -1,  6186,    -1,    -1,\n     -1,  6187,  6189,    -1,  6190,    -1,  6192,  6193,\n   6195,    -1,    -1,    -1,    -1,    -1,  6196,    -1,\n   6197,  6198,    -1,  6199,    -1,    -1,    -1,    -1,\n     -1,    -1,  6200,  6201,    -1,    -1,    -1,    -1,\n     -1,  6203,    -1,    -1,    -1,    -1,    -1,  6205,\n     -1,  6206,    -1,    -1,    -1,  6207,  6208,    -1,\n   6209,  6211,    -1,  6212,    -1,    -1,  6213,    -1,\n     -1,    -1,    -1,    -1,  6214,    -1,    -1,  6215,\n   6217,    -1,  6218,    -1,  6219,  6221,  6222,    -1,\n   6224,  6226,    -1,  6227,  6228,    -1,    -1,  6229,\n   6230,    -1,    -1,    -1,  6232,    -1,    -1,    -1,\n     -1,  6234,  6235,    -1,  6236,  6237,  6239,    -1,\n     -1,    -1,  6240,    -1,  6242,    -1,    -1,    -1,\n     -1,    -1,    -1,  6243,  6244,    -1,    -1,    -1,\n     -1,    -1,    -1,  6245,    -1,    -1,    -1,  6246,\n     -1,    -1,    -1,  6248,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  6249,\n   6250,    -1,    -1,  6251,  6253,  6254,    -1,    -1,\n     -1,    -1,    -1,    -1,  6255,  6256,  6258,  6259,\n     -1,    -1,  6263,    -1,  6264,    -1,  6268,    -1,\n     -1,    -1,    -1,  6269,    -1,  6271,    -1,    -1,\n     -1,  6272,  6273,    -1,    -1,  6274,    -1,    -1,\n     -1,  6275,    -1,    -1,    -1,    -1,  6276,  6281,\n     -1,  6282,  6283,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  6284,    -1,  6286,    -1,    -1,\n     -1,    -1,  6287,    -1,    -1,  6291,  6292,    -1,\n   6293,    -1,    -1,    -1,    -1,    -1,  6295,  6296,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   6297,    -1,  6299,    -1,  6300,    -1,  6301,    -1,\n   6302,  6306,  6308,  6309,  6313,    -1,  6315,  6317,\n  /* 0x7d00 */\n   6319,    -1,  6320,    -1,  6321,  6322,  6323,  6324,\n   6325,  6326,    -1,  6327,    -1,  6328,    -1,    -1,\n   6329,    -1,    -1,  6330,  6331,  6332,  6333,  6334,\n   6335,  6337,  6339,  6340,  6341,  6342,    -1,    -1,\n     -1,  6344,    -1,  6345,    -1,  6346,    -1,  6347,\n     -1,    -1,    -1,    -1,  6348,    -1,  6350,  6352,\n   6356,  6357,  6358,  6359,    -1,  6360,    -1,    -1,\n     -1,  6361,  6362,    -1,  6363,    -1,    -1,  6364,\n   6365,    -1,  6366,  6367,  6368,  6369,  6370,    -1,\n   6372,    -1,    -1,  6373,  6374,  6376,  6377,  6378,\n   6379,    -1,    -1,    -1,    -1,  6380,  6383,    -1,\n     -1,    -1,  6384,  6385,    -1,  6387,  6389,    -1,\n     -1,  6390,  6391,    -1,  6392,  6396,  6397,    -1,\n   6398,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   6399,  6400,  6402,  6404,    -1,  6405,  6407,  6410,\n   6411,  6413,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  6414,  6415,  6417,    -1,    -1,  6418,    -1,\n   6419,  6420,    -1,  6421,  6422,    -1,    -1,  6423,\n     -1,  6424,    -1,  6426,    -1,    -1,    -1,  6428,\n     -1,  6429,  6431,    -1,  6434,    -1,  6435,    -1,\n   6436,    -1,  6438,  6440,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  6441,  6445,  6446,    -1,  6447,\n   6448,  6449,  6450,  6451,  6453,  6455,    -1,  6456,\n   6457,  6458,  6459,  6460,    -1,  6461,  6463,  6464,\n     -1,    -1,    -1,    -1,  6465,    -1,    -1,  6466,\n     -1,    -1,  6467,  6468,    -1,  6469,    -1,  6470,\n   6474,  6475,  6477,    -1,  6479,  6480,  6481,  6483,\n   6484,  6485,  6486,    -1,  6490,  6491,  6492,    -1,\n   6493,  6494,    -1,  6496,    -1,  6498,  6499,    -1,\n   6500,  6501,  6502,  6503,  6507,    -1,    -1,  6508,\n     -1,  6509,  6510,    -1,  6511,    -1,  6512,    -1,\n     -1,  6513,    -1,  6514,  6515,    -1,    -1,    -1,\n  /* 0x7e00 */\n     -1,  6517,    -1,    -1,  6519,    -1,    -1,    -1,\n   6521,  6522,  6523,  6524,    -1,    -1,    -1,    -1,\n   6525,  6526,    -1,    -1,    -1,  6527,    -1,  6529,\n   6530,    -1,    -1,  6533,    -1,  6534,  6535,  6536,\n     -1,    -1,    -1,  6537,    -1,    -1,  6539,  6541,\n   6543,    -1,    -1,  6544,    -1,  6545,  6546,    -1,\n     -1,  6547,  6549,    -1,  6552,  6553,  6554,  6556,\n     -1,  6557,    -1,    -1,    -1,  6558,  6563,    -1,\n     -1,  6564,    -1,  6565,    -1,  6567,  6569,    -1,\n   6570,    -1,  6571,  6574,    -1,  6577,    -1,    -1,\n     -1,    -1,  6579,    -1,  6580,  6581,  6582,    -1,\n     -1,  6584,  6585,  6586,    -1,    -1,  6587,    -1,\n     -1,  6588,  6590,    -1,  6591,    -1,  6592,    -1,\n     -1,  6593,  6595,  6597,    -1,  6600,  6603,  6605,\n   6606,    -1,    -1,  6609,    -1,    -1,    -1,    -1,\n     -1,  6610,    -1,    -1,  6611,  6613,  6614,  6615,\n     -1,    -1,  6616,  6617,    -1,    -1,    -1,  6618,\n   6619,  6620,  6622,    -1,  6624,  6627,  6628,  6631,\n     -1,    -1,  6633,  6635,  6636,    -1,  6637,    -1,\n   6640,    -1,    -1,    -1,  6642,  6643,    -1,  6646,\n   6648,  6649,  6650,  6651,  6652,  6656,  6657,  6658,\n   6659,  6660,  6662,  6663,  6664,  6665,  6666,  6667,\n   6668,  6669,  6670,  6671,  6672,  6673,  6675,  6676,\n   6677,  6678,  6679,  6680,  6681,  6682,  6683,  6684,\n   6688,  6689,  6691,  6692,  6693,  6694,  6695,  6696,\n   6697,  6698,  6699,  6700,  6701,  6702,  6703,  6704,\n   6706,  6707,  6708,  6709,  6710,  6711,  6713,  6714,\n   6715,  6717,  6718,  6719,  6720,  6721,  6724,  6725,\n   6727,  6728,  6729,  6730,  6733,  6734,  6735,  6737,\n   6739,  6740,  6741,  6743,    -1,  6744,  6746,  6747,\n   6748,  6749,  6750,  6751,  6753,  6754,  6756,  6757,\n   6759,  6761,  6762,  6763,  6764,  6765,  6766,  6767,\n  /* 0x7f00 */\n   6769,  6770,  6771,  6772,  6773,  6774,  6775,  6776,\n   6777,  6778,  6779,  6781,  6782,  6783,  6784,  6785,\n   6786,  6790,  6791,  6792,  6793,  6794,  6795,  6796,\n   6797,  6799,  6800,  6801,  6802,  6803,  6804,  6805,\n   6806,  6808,  6809,  6810,  6811,  6812,  6813,  6814,\n   6817,  6818,  6819,  6820,  6822,  6823,  6824,  6825,\n   6826,  6828,  6829,  6830,  6831,  6832,  6834,  6837,\n   6838,  6839,  6840,  6842,  6843,  6845,  6848,    -1,\n     -1,    -1,  6850,    -1,    -1,    -1,    -1,  6852,\n   6853,    -1,    -1,    -1,  6858,    -1,  6860,    -1,\n   6865,  6867,  6870,  6872,    -1,    -1,    -1,  6874,\n     -1,    -1,  6877,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  6879,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  6880,    -1,    -1,    -1,    -1,    -1,\n   6882,    -1,    -1,    -1,  6884,  6885,  6888,  6889,\n   6890,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   6892,  6893,    -1,  6895,    -1,  6897,  6898,  6899,\n   6902,    -1,  6906,  6907,  6908,    -1,    -1,    -1,\n   6909,  6910,    -1,    -1,    -1,    -1,    -1,  6911,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  6912,\n     -1,  6913,    -1,  6914,  6915,  6916,    -1,    -1,\n   6917,  6918,  6919,    -1,    -1,    -1,  6921,    -1,\n     -1,    -1,    -1,    -1,  6922,    -1,  6924,    -1,\n     -1,  6926,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  6927,  6929,  6931,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  6932,    -1,    -1,    -1,    -1,    -1,\n   6933,  6934,  6935,    -1,    -1,    -1,    -1,    -1,\n   6936,    -1,    -1,    -1,  6937,    -1,    -1,    -1,\n     -1,    -1,    -1,  6939,  6940,    -1,    -1,    -1,\n     -1,  6941,    -1,  6942,    -1,    -1,    -1,    -1,\n     -1,  6943,  6944,  6945,    -1,  6947,    -1,    -1,\n  /* 0x8000 */\n   6948,    -1,    -1,  6949,    -1,    -1,    -1,  6950,\n   6951,    -1,  6952,  6953,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  6954,    -1,    -1,\n   6955,    -1,    -1,    -1,  6956,    -1,    -1,    -1,\n     -1,  6957,  6958,    -1,  6959,    -1,    -1,  6960,\n   6961,    -1,    -1,    -1,  6963,    -1,  6964,    -1,\n   6965,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   6966,    -1,    -1,  6967,  6968,  6969,    -1,    -1,\n   6970,    -1,  6973,  6974,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  6975,  6976,  6979,    -1,    -1,\n     -1,    -1,    -1,    -1,  6980,    -1,  6982,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  6984,  6985,\n     -1,  6987,    -1,    -1,    -1,    -1,  6990,    -1,\n   6993,  6995,  6996,  6999,    -1,  7000,  7002,  7003,\n   7007,    -1,  7010,  7011,  7012,  7014,  7015,  7016,\n     -1,  7019,    -1,    -1,    -1,  7020,  7022,    -1,\n     -1,    -1,    -1,  7023,    -1,  7025,    -1,  7027,\n   7028,  7029,    -1,    -1,    -1,    -1,  7030,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   7031,  7033,    -1,    -1,  7034,    -1,    -1,  7035,\n     -1,    -1,    -1,    -1,  7036,    -1,  7037,  7038,\n     -1,  7040,  7041,    -1,  7043,    -1,    -1,    -1,\n     -1,    -1,    -1,  7044,    -1,    -1,  7045,  7046,\n   7047,  7048,    -1,    -1,  7051,    -1,  7053,    -1,\n     -1,    -1,    -1,    -1,  7055,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  7056,    -1,  7057,    -1,    -1,    -1,\n     -1,  7058,    -1,    -1,    -1,    -1,    -1,  7060,\n   7061,    -1,  7062,  7063,    -1,  7065,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  7066,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x8100 */\n     -1,    -1,    -1,  7067,    -1,  7069,  7071,  7073,\n   7074,  7075,    -1,  7076,    -1,  7078,    -1,  7079,\n   7082,  7083,    -1,  7085,  7086,    -1,    -1,  7087,\n     -1,    -1,  7088,  7090,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  7092,    -1,    -1,    -1,    -1,\n     -1,  7093,    -1,  7094,    -1,    -1,    -1,    -1,\n     -1,  7095,    -1,  7096,    -1,  7099,  7100,    -1,\n   7101,  7102,  7104,    -1,    -1,    -1,  7106,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  7107,    -1,\n     -1,    -1,  7108,    -1,  7110,    -1,  7111,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  7112,  7113,\n   7114,    -1,    -1,    -1,    -1,    -1,    -1,  7115,\n     -1,  7116,    -1,    -1,    -1,    -1,  7117,    -1,\n     -1,    -1,    -1,  7120,    -1,  7121,  7122,    -1,\n     -1,    -1,    -1,  7123,    -1,    -1,    -1,    -1,\n   7125,    -1,    -1,  7127,    -1,  7128,  7129,    -1,\n   7130,    -1,  7131,  7132,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   7133,  7134,    -1,  7135,    -1,  7137,    -1,    -1,\n     -1,    -1,  7138,    -1,    -1,    -1,    -1,    -1,\n   7139,    -1,    -1,  7140,  7141,    -1,    -1,    -1,\n     -1,  7142,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  7143,    -1,    -1,    -1,    -1,\n   7144,    -1,    -1,  7146,    -1,  7150,  7152,  7153,\n   7154,    -1,    -1,  7155,    -1,    -1,    -1,    -1,\n   7157,  7159,    -1,  7160,    -1,  7161,    -1,  7162,\n     -1,    -1,    -1,  7164,    -1,    -1,    -1,    -1,\n   7166,  7168,  7169,    -1,  7170,    -1,  7171,  7172,\n   7174,    -1,  7175,    -1,    -1,  7176,    -1,    -1,\n   7177,    -1,    -1,    -1,    -1,  7178,    -1,    -1,\n   7179,    -1,    -1,    -1,  7180,    -1,    -1,    -1,\n     -1,    -1,  7181,    -1,    -1,    -1,    -1,    -1,\n  /* 0x8200 */\n     -1,    -1,    -1,    -1,    -1,    -1,  7183,  7184,\n   7185,  7186,  7189,    -1,    -1,  7190,  7192,    -1,\n   7193,    -1,    -1,  7194,    -1,    -1,  7195,  7198,\n   7201,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  7202,    -1,    -1,    -1,    -1,\n     -1,  7203,    -1,    -1,    -1,    -1,  7204,    -1,\n   7206,  7207,    -1,    -1,    -1,  7208,  7209,    -1,\n     -1,  7210,    -1,  7211,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  7213,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  7214,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  7215,  7216,  7218,    -1,  7219,    -1,\n     -1,    -1,  7220,  7222,    -1,    -1,    -1,    -1,\n   7224,  7225,    -1,  7227,    -1,    -1,  7231,  7235,\n   7239,  7240,  7241,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  7246,    -1,    -1,    -1,    -1,    -1,\n   7247,    -1,    -1,  7249,  7250,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  7251,    -1,    -1,  7252,\n     -1,    -1,    -1,    -1,  7253,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  7254,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  7255,  7256,    -1,    -1,    -1,    -1,    -1,\n   7257,    -1,    -1,  7264,    -1,    -1,    -1,    -1,\n     -1,  7265,    -1,    -1,    -1,  7266,    -1,  7268,\n   7269,    -1,    -1,  7270,  7271,  7272,  7273,  7274,\n   7279,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  7280,  7281,    -1,    -1,    -1,    -1,  7282,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  7283,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  7284,  7286,    -1,    -1,  7287,    -1,    -1,\n  /* 0x8300 */\n     -1,    -1,    -1,  7288,    -1,    -1,    -1,    -1,\n     -1,    -1,  7290,    -1,    -1,    -1,  7292,  7293,\n     -1,  7294,    -1,    -1,  7295,  7296,    -1,    -1,\n   7297,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  7298,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  7300,\n   7301,    -1,  7302,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  7304,  7305,\n     -1,    -1,  7306,    -1,    -1,    -1,    -1,    -1,\n   7307,  7309,    -1,    -1,  7310,    -1,    -1,    -1,\n   7311,  7313,  7314,  7315,  7316,  7317,  7318,  7319,\n   7320,  7322,    -1,  7325,  7327,  7328,  7329,  7330,\n   7331,  7332,  7333,  7334,  7335,  7336,  7337,  7338,\n     -1,    -1,    -1,  7341,    -1,    -1,    -1,    -1,\n     -1,  7342,    -1,  7343,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7344,    -1,    -1,\n     -1,    -1,  7346,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  7348,    -1,  7349,  7350,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  7351,    -1,\n     -1,    -1,  7352,    -1,    -1,    -1,    -1,  7353,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  7354,  7355,  7356,  7357,  7358,  7359,  7360,\n   7362,  7363,  7364,    -1,  7367,  7369,  7370,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  7371,    -1,  7372,  7373,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  7375,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  7376,    -1,    -1,    -1,  7377,\n   7380,  7381,    -1,    -1,  7382,    -1,    -1,    -1,\n     -1,  7385,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x8400 */\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  7386,\n     -1,    -1,  7387,    -1,  7388,  7389,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7390,    -1,    -1,\n     -1,    -1,  7392,    -1,    -1,  7393,    -1,  7394,\n   7399,    -1,    -1,    -1,  7400,  7402,  7404,  7405,\n   7406,    -1,    -1,    -1,  7407,    -1,    -1,    -1,\n     -1,  7408,    -1,    -1,  7411,  7412,    -1,    -1,\n   7413,    -1,    -1,    -1,  7414,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7415,    -1,    -1,\n     -1,  7416,  7417,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  7420,    -1,    -1,    -1,    -1,  7421,\n   7422,    -1,  7423,    -1,    -1,    -1,    -1,    -1,\n   7424,    -1,  7425,    -1,  7427,    -1,  7428,    -1,\n     -1,    -1,  7429,    -1,  7430,    -1,  7431,  7432,\n     -1,  7433,    -1,    -1,    -1,    -1,    -1,  7434,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  7435,  7436,    -1,    -1,    -1,  7437,\n     -1,  7438,    -1,  7439,  7440,    -1,    -1,    -1,\n   7441,    -1,    -1,  7442,  7444,    -1,    -1,    -1,\n     -1,  7445,    -1,    -1,    -1,    -1,  7449,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  7451,    -1,\n   7452,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  7453,\n     -1,    -1,    -1,    -1,  7454,    -1,    -1,    -1,\n   7455,    -1,    -1,    -1,    -1,    -1,  7456,    -1,\n     -1,    -1,    -1,  7457,    -1,    -1,    -1,    -1,\n     -1,  7459,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7461,    -1,  7462,\n   7463,    -1,    -1,  7464,    -1,  7465,  7466,    -1,\n     -1,    -1,    -1,    -1,    -1,  7467,  7470,  7471,\n     -1,  7472,    -1,    -1,  7473,    -1,    -1,    -1,\n     -1,    -1,  7475,    -1,    -1,  7480,    -1,    -1,\n  /* 0x8500 */\n     -1,    -1,    -1,    -1,    -1,  7481,  7483,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   7484,  7485,    -1,    -1,  7486,  7488,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  7489,    -1,\n     -1,    -1,    -1,  7490,    -1,  7491,  7492,    -1,\n     -1,    -1,    -1,    -1,    -1,  7493,    -1,  7494,\n     -1,    -1,  7495,  7496,  7497,  7498,  7500,  7502,\n     -1,  7503,  7504,  7505,  7506,    -1,    -1,    -1,\n     -1,  7508,    -1,    -1,    -1,    -1,  7509,    -1,\n     -1,    -1,  7510,  7512,    -1,    -1,  7514,    -1,\n   7515,    -1,  7517,  7518,    -1,  7519,    -1,    -1,\n   7520,    -1,  7521,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  7522,    -1,    -1,    -1,    -1,    -1,\n     -1,  7523,  7524,    -1,    -1,  7525,    -1,    -1,\n   7526,    -1,  7527,    -1,  7528,    -1,    -1,  7530,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  7531,\n   7534,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   7535,    -1,  7536,    -1,  7538,    -1,    -1,    -1,\n     -1,  7539,    -1,  7540,  7541,    -1,    -1,  7542,\n   7544,    -1,    -1,    -1,    -1,    -1,    -1,  7545,\n     -1,    -1,    -1,    -1,    -1,    -1,  7546,    -1,\n     -1,  7548,    -1,  7549,  7551,  7553,  7554,  7556,\n   7557,    -1,  7559,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  7561,    -1,  7563,    -1,    -1,    -1,\n     -1,  7564,  7568,    -1,    -1,    -1,    -1,    -1,\n     -1,  7572,    -1,    -1,    -1,  7575,  7576,  7577,\n     -1,    -1,    -1,  7579,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7580,    -1,  7585,\n     -1,    -1,    -1,    -1,  7587,  7588,    -1,    -1,\n     -1,    -1,  7590,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  7592,  7596,    -1,  7598,  7599,\n     -1,  7600,  7602,    -1,  7603,    -1,    -1,    -1,\n  /* 0x8600 */\n   7606,    -1,  7607,    -1,  7609,    -1,  7610,  7611,\n     -1,    -1,  7615,  7617,    -1,  7619,  7621,    -1,\n   7623,    -1,    -1,  7626,    -1,    -1,    -1,  7628,\n     -1,    -1,  7629,    -1,    -1,    -1,  7630,    -1,\n     -1,    -1,  7631,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7632,    -1,  7633,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  7635,    -1,    -1,  7636,    -1,  7638,\n     -1,  7639,    -1,    -1,    -1,    -1,  7640,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  7642,  7644,\n     -1,  7645,    -1,  7646,    -1,  7647,  7649,  7650,\n     -1,    -1,  7652,  7654,  7656,  7657,    -1,  7659,\n     -1,    -1,    -1,    -1,    -1,  7660,  7661,  7662,\n     -1,    -1,    -1,  7663,  7665,    -1,  7666,  7667,\n     -1,  7668,    -1,    -1,    -1,  7669,    -1,    -1,\n     -1,    -1,  7671,  7672,    -1,  7673,  7674,  7675,\n   7676,  7677,  7678,  7679,    -1,    -1,    -1,    -1,\n     -1,    -1,  7680,  7682,  7683,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7684,  7687,    -1,\n   7688,    -1,    -1,    -1,    -1,  7689,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  7690,    -1,\n     -1,    -1,    -1,  7691,  7692,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  7693,    -1,    -1,    -1,\n     -1,    -1,  7694,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  7695,\n     -1,    -1,  7697,    -1,    -1,  7698,  7700,  7702,\n     -1,    -1,    -1,    -1,  7703,    -1,    -1,    -1,\n     -1,  7706,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  7707,  7708,\n   7709,  7710,  7711,  7712,  7713,    -1,    -1,    -1,\n     -1,    -1,  7714,  7715,    -1,  7716,    -1,    -1,\n  /* 0x8700 */\n     -1,    -1,  7718,    -1,    -1,    -1,  7719,    -1,\n     -1,    -1,    -1,  7720,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7721,  7722,  7723,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  7724,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  7726,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  7727,    -1,    -1,    -1,  7728,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7729,    -1,  7732,\n   7734,  7735,    -1,  7736,    -1,    -1,  7738,    -1,\n     -1,    -1,    -1,    -1,    -1,  7739,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  7740,\n     -1,  7741,    -1,    -1,    -1,    -1,  7742,    -1,\n   7743,    -1,    -1,    -1,    -1,    -1,    -1,  7744,\n     -1,  7745,    -1,    -1,    -1,    -1,    -1,    -1,\n   7746,    -1,    -1,    -1,  7747,    -1,  7748,  7749,\n   7751,    -1,  7752,    -1,  7753,    -1,    -1,    -1,\n   7754,    -1,    -1,    -1,    -1,  7755,  7756,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   7757,  7758,    -1,    -1,    -1,    -1,  7760,    -1,\n     -1,  7761,  7762,    -1,  7764,    -1,    -1,  7766,\n   7767,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  7768,    -1,    -1,    -1,  7769,\n     -1,  7770,    -1,    -1,  7771,    -1,  7772,  7773,\n   7774,    -1,    -1,    -1,    -1,    -1,  7775,  7776,\n     -1,    -1,  7777,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  7778,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  7779,    -1,    -1,  7780,\n     -1,    -1,  7781,    -1,    -1,    -1,  7782,    -1,\n   7783,  7784,    -1,  7785,    -1,    -1,    -1,    -1,\n  /* 0x8800 */\n     -1,  7787,    -1,    -1,    -1,  7788,  7790,  7791,\n     -1,    -1,    -1,    -1,    -1,  7793,  7794,  7795,\n   7796,  7797,  7798,    -1,  7801,  7802,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  7803,\n     -1,  7805,  7806,  7807,    -1,    -1,    -1,  7809,\n   7811,    -1,    -1,    -1,    -1,  7812,    -1,    -1,\n     -1,  7813,    -1,    -1,    -1,    -1,  7814,    -1,\n     -1,  7817,  7819,  7822,  7823,    -1,    -1,    -1,\n     -1,    -1,  7825,    -1,  7826,  7827,  7828,    -1,\n     -1,  7831,  7833,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  7834,  7835,  7838,  7839,    -1,\n   7840,    -1,  7843,  7844,  7846,  7849,  7850,  7852,\n     -1,    -1,    -1,  7855,  7856,  7857,    -1,    -1,\n   7858,    -1,    -1,    -1,  7859,    -1,  7860,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  7861,    -1,    -1,    -1,  7862,    -1,    -1,\n     -1,    -1,    -1,    -1,  7863,  7864,  7867,    -1,\n     -1,    -1,    -1,  7868,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  7869,    -1,  7872,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  7873,  7875,  7876,  7877,\n     -1,    -1,    -1,    -1,  7878,  7880,    -1,  7881,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7882,  7883,    -1,\n   7884,    -1,  7885,    -1,  7886,    -1,    -1,  7887,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  7889,    -1,    -1,  7890,  7891,    -1,    -1,\n   7892,  7893,  7895,  7896,  7897,  7899,  7900,    -1,\n   7902,    -1,    -1,    -1,    -1,  7903,    -1,    -1,\n     -1,    -1,    -1,    -1,  7904,  7905,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7906,    -1,    -1,\n  /* 0x8900 */\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  7907,\n     -1,    -1,  7908,    -1,  7909,    -1,  7910,  7911,\n     -1,    -1,  7912,  7914,    -1,    -1,    -1,    -1,\n   7915,    -1,    -1,  7916,    -1,  7917,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  7918,    -1,    -1,    -1,    -1,\n     -1,    -1,  7919,  7920,  7921,    -1,    -1,    -1,\n   7922,    -1,    -1,  7923,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  7924,    -1,    -1,    -1,  7926,\n     -1,    -1,    -1,    -1,  7927,  7928,    -1,  7929,\n     -1,    -1,    -1,    -1,    -1,  7930,  7931,    -1,\n     -1,    -1,    -1,    -1,    -1,  7932,    -1,    -1,\n   7933,    -1,    -1,    -1,  7934,    -1,    -1,    -1,\n     -1,    -1,  7935,    -1,  7936,  7937,    -1,  7938,\n     -1,    -1,  7939,    -1,  7940,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  7942,    -1,  7943,\n     -1,    -1,    -1,    -1,    -1,    -1,  7945,  7947,\n   7948,  7949,  7952,  7956,    -1,  7957,  7958,  7959,\n   7960,    -1,    -1,  7963,  7965,    -1,  7967,    -1,\n   7969,    -1,  7970,    -1,    -1,    -1,    -1,    -1,\n     -1,  7973,    -1,    -1,    -1,  7974,  7975,  7976,\n     -1,  7978,  7979,    -1,  7980,    -1,    -1,  7981,\n   7982,    -1,  7983,  7984,    -1,    -1,  7986,  7987,\n     -1,    -1,  7989,    -1,  7993,  7994,    -1,  7996,\n   7997,  7999,  8000,  8002,  8003,  8004,  8006,  8008,\n   8009,  8011,  8014,  8015,  8016,  8017,  8018,  8019,\n   8020,  8021,    -1,    -1,  8022,    -1,    -1,  8023,\n     -1,    -1,    -1,    -1,    -1,  8025,  8026,    -1,\n     -1,    -1,    -1,  8027,    -1,    -1,  8028,  8029,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  8030,\n     -1,    -1,    -1,    -1,  8032,    -1,  8033,    -1,\n   8035,  8036,    -1,    -1,    -1,  8038,    -1,  8040,\n  /* 0x8a00 */\n   8042,  8044,  8046,  8047,    -1,    -1,    -1,    -1,\n   8048,    -1,  8049,    -1,  8050,    -1,  8051,    -1,\n   8052,    -1,  8053,  8054,    -1,  8055,  8056,  8057,\n   8059,    -1,  8060,  8061,    -1,  8062,    -1,  8063,\n   8064,  8066,  8068,  8069,    -1,  8070,    -1,    -1,\n     -1,  8071,  8072,  8073,    -1,  8074,    -1,    -1,\n     -1,  8075,    -1,  8076,  8078,    -1,  8079,    -1,\n     -1,    -1,  8081,  8082,  8083,  8085,    -1,    -1,\n     -1,  8086,    -1,    -1,    -1,    -1,  8087,    -1,\n     -1,    -1,    -1,  8089,    -1,  8091,  8092,    -1,\n   8093,    -1,  8094,    -1,  8095,  8096,  8097,  8098,\n   8099,    -1,    -1,  8100,    -1,    -1,  8101,  8102,\n   8103,  8104,  8105,  8106,    -1,    -1,  8107,  8108,\n     -1,  8109,    -1,  8110,  8111,  8113,  8114,    -1,\n   8115,  8116,  8118,  8119,    -1,  8120,    -1,    -1,\n     -1,    -1,    -1,    -1,  8121,    -1,    -1,  8122,\n     -1,    -1,    -1,    -1,  8123,  8124,  8125,  8126,\n     -1,  8127,  8128,    -1,  8129,  8130,    -1,    -1,\n     -1,  8131,  8132,    -1,    -1,  8133,  8134,    -1,\n   8136,    -1,  8138,    -1,    -1,    -1,  8139,    -1,\n   8140,  8141,    -1,  8142,  8143,  8144,  8145,    -1,\n   8146,    -1,  8147,    -1,  8149,  8151,    -1,  8153,\n   8154,    -1,  8155,    -1,    -1,    -1,  8156,    -1,\n     -1,  8157,    -1,    -1,  8158,    -1,  8160,  8161,\n     -1,    -1,  8162,    -1,  8163,    -1,    -1,  8164,\n     -1,  8165,    -1,  8166,  8167,  8169,    -1,  8170,\n     -1,  8171,  8172,    -1,    -1,    -1,  8173,  8174,\n     -1,    -1,    -1,  8175,  8176,  8177,  8178,    -1,\n   8179,  8181,  8183,    -1,  8184,    -1,  8186,  8187,\n     -1,  8188,    -1,  8189,  8191,  8197,  8198,    -1,\n     -1,  8199,    -1,  8200,    -1,    -1,  8202,  8203,\n   8205,    -1,  8206,    -1,  8207,    -1,  8209,    -1,\n  /* 0x8b00 */\n   8210,  8211,  8212,    -1,  8213,  8214,    -1,    -1,\n     -1,    -1,  8215,    -1,  8216,    -1,  8217,    -1,\n   8218,    -1,    -1,    -1,  8219,    -1,  8220,  8221,\n     -1,  8222,  8223,  8225,    -1,  8226,    -1,    -1,\n   8227,  8229,    -1,    -1,    -1,    -1,    -1,    -1,\n   8231,    -1,  8232,  8233,  8235,  8236,    -1,    -1,\n   8238,    -1,    -1,  8239,    -1,    -1,    -1,    -1,\n     -1,  8240,    -1,    -1,  8241,    -1,  8243,    -1,\n     -1,  8244,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  8246,    -1,    -1,  8248,    -1,  8249,  8250,\n   8251,    -1,    -1,    -1,    -1,    -1,  8252,    -1,\n   8254,  8255,  8256,  8257,  8259,    -1,    -1,  8261,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  8262,  8264,    -1,  8266,  8267,  8269,\n   8271,  8272,  8273,    -1,  8275,    -1,    -1,  8276,\n   8277,    -1,    -1,    -1,  8278,  8280,  8281,    -1,\n   8283,  8285,    -1,  8287,    -1,  8289,    -1,    -1,\n     -1,    -1,  8290,  8292,  8293,  8295,  8297,    -1,\n   8300,    -1,  8302,  8303,    -1,  8305,  8306,    -1,\n     -1,    -1,  8307,    -1,  8309,    -1,  8310,    -1,\n   8311,  8313,  8314,  8315,  8316,  8317,  8318,  8319,\n   8320,  8321,  8323,  8324,  8325,  8327,  8328,  8329,\n   8330,  8331,  8332,  8333,  8334,  8335,  8336,  8337,\n   8338,  8339,  8341,  8342,  8343,  8344,  8346,  8347,\n   8348,  8349,  8351,  8352,  8353,  8354,  8355,  8356,\n   8357,  8358,  8359,  8360,  8361,  8362,  8363,  8364,\n   8365,  8366,  8368,  8369,  8370,  8371,  8372,  8373,\n   8374,  8375,  8376,  8377,  8378,  8379,  8381,  8382,\n   8383,  8384,  8385,  8386,  8387,  8388,  8389,  8390,\n   8391,  8392,  8393,  8394,  8395,  8396,  8397,  8398,\n   8400,  8401,  8403,  8404,  8405,  8407,  8408,  8409,\n   8410,  8411,  8412,  8413,  8415,  8416,  8417,  8418,\n  /* 0x8c00 */\n   8419,  8420,  8421,  8422,  8423,  8424,  8425,  8426,\n   8427,  8428,  8429,  8431,  8432,  8433,  8434,  8435,\n   8437,  8438,  8439,  8440,  8441,  8443,  8444,  8446,\n   8447,  8448,  8450,  8451,  8452,  8453,  8454,  8455,\n   8456,  8457,  8458,  8459,  8461,  8462,  8464,  8465,\n   8466,  8467,  8468,  8470,  8472,  8473,  8474,  8476,\n   8477,  8478,  8479,  8480,  8481,  8482,  8483,  8484,\n     -1,    -1,  8486,    -1,    -1,    -1,    -1,  8487,\n   8490,    -1,    -1,    -1,    -1,    -1,  8493,    -1,\n   8494,    -1,  8495,    -1,    -1,    -1,  8499,    -1,\n   8501,    -1,    -1,  8505,  8509,    -1,    -1,    -1,\n   8513,    -1,  8514,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  8515,    -1,    -1,    -1,\n     -1,    -1,    -1,  8516,  8517,    -1,  8518,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  8519,    -1,\n     -1,    -1,  8520,  8521,  8522,    -1,  8523,    -1,\n     -1,    -1,  8524,    -1,    -1,    -1,    -1,  8525,\n     -1,  8526,    -1,  8527,  8528,  8529,  8531,    -1,\n     -1,    -1,  8532,  8533,  8534,    -1,    -1,    -1,\n   8535,    -1,    -1,  8536,  8537,  8539,  8541,  8542,\n   8545,  8546,  8548,    -1,    -1,    -1,    -1,  8549,\n   8550,  8551,  8552,  8553,  8554,  8555,  8558,  8561,\n   8562,    -1,  8563,  8564,  8567,    -1,  8568,  8569,\n   8570,    -1,  8571,  8572,  8573,  8574,    -1,  8575,\n   8576,  8577,  8578,  8579,  8580,  8581,    -1,  8582,\n   8583,  8584,  8586,  8587,    -1,  8588,  8590,    -1,\n     -1,  8592,  8593,  8594,  8596,  8598,  8599,    -1,\n     -1,  8600,  8601,  8602,  8604,    -1,  8605,    -1,\n   8606,  8607,  8610,  8612,  8614,    -1,  8616,  8617,\n     -1,    -1,  8618,  8621,  8622,  8623,    -1,    -1,\n   8624,    -1,    -1,    -1,  8625,  8627,    -1,  8628,\n     -1,    -1,  8630,  8631,  8632,  8633,  8634,    -1,\n  /* 0x8d00 */\n     -1,  8635,    -1,    -1,  8637,  8638,    -1,  8639,\n   8640,    -1,  8641,  8643,    -1,  8646,    -1,  8647,\n   8648,    -1,  8649,  8651,  8653,    -1,  8654,  8655,\n     -1,    -1,    -1,  8658,  8659,  8660,  8662,  8663,\n   8664,  8667,  8668,  8670,  8671,  8673,  8675,  8676,\n   8677,  8679,  8680,  8681,  8682,  8683,  8684,  8685,\n   8686,  8689,  8691,  8692,  8693,  8694,  8695,  8696,\n   8697,  8698,  8699,  8700,  8701,  8702,  8703,  8704,\n   8705,  8706,  8707,  8708,  8711,  8712,  8713,  8714,\n   8715,  8716,  8717,  8719,  8720,  8721,  8724,  8725,\n   8726,  8727,  8728,  8729,  8730,  8731,  8732,  8734,\n   8735,  8736,  8737,  8738,  8739,  8740,  8743,  8747,\n   8748,  8749,  8750,  8751,  8752,    -1,    -1,    -1,\n     -1,    -1,  8754,    -1,  8755,    -1,    -1,    -1,\n   8756,  8757,    -1,    -1,    -1,  8758,  8759,    -1,\n     -1,    -1,    -1,  8760,    -1,    -1,    -1,  8765,\n     -1,  8766,  8767,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  8768,    -1,    -1,    -1,    -1,\n     -1,  8769,    -1,    -1,    -1,  8770,    -1,    -1,\n     -1,  8771,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  8772,    -1,\n   8773,    -1,    -1,    -1,  8774,    -1,    -1,  8775,\n     -1,  8777,  8778,    -1,    -1,    -1,    -1,    -1,\n   8779,    -1,    -1,  8780,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  8781,  8783,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  8784,    -1,\n     -1,  8785,    -1,    -1,    -1,  8786,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  8787,  8788,  8789,  8790,\n   8791,  8792,  8793,  8794,  8795,    -1,    -1,    -1,\n  /* 0x8e00 */\n     -1,  8796,    -1,    -1,    -1,    -1,    -1,    -1,\n   8798,    -1,  8800,  8801,  8803,    -1,    -1,    -1,\n   8804,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   8805,  8806,  8807,  8808,  8809,    -1,    -1,  8810,\n   8811,    -1,    -1,    -1,  8812,    -1,    -1,    -1,\n   8813,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  8814,    -1,    -1,    -1,\n     -1,    -1,    -1,  8815,  8817,    -1,    -1,  8818,\n     -1,  8819,  8820,    -1,    -1,  8821,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  8822,\n     -1,    -1,    -1,  8823,  8824,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   8826,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  8828,  8830,    -1,    -1,    -1,    -1,  8832,\n     -1,    -1,  8833,  8834,  8835,    -1,    -1,  8836,\n     -1,  8837,  8838,  8841,    -1,  8843,    -1,  8845,\n     -1,  8846,  8847,  8848,    -1,  8849,    -1,    -1,\n     -1,  8851,  8852,    -1,  8853,    -1,    -1,    -1,\n     -1,  8854,  8855,    -1,    -1,  8857,  8858,    -1,\n     -1,    -1,  8859,    -1,  8861,  8862,    -1,  8863,\n   8864,  8868,  8869,  8870,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   8871,    -1,    -1,    -1,  8872,    -1,  8875,    -1,\n     -1,    -1,  8879,  8880,  8881,  8882,    -1,    -1,\n     -1,  8883,  8884,    -1,  8885,    -1,    -1,    -1,\n     -1,    -1,    -1,  8886,    -1,    -1,    -1,  8889,\n     -1,    -1,  8890,  8892,  8894,    -1,    -1,    -1,\n     -1,    -1,    -1,  8895,    -1,    -1,    -1,    -1,\n   8896,    -1,  8898,    -1,    -1,    -1,  8899,    -1,\n   8902,  8903,  8904,  8905,  8906,  8907,  8909,    -1,\n  /* 0x8f00 */\n   8910,    -1,    -1,  8911,    -1,  8912,    -1,  8913,\n   8914,  8915,  8916,    -1,  8917,    -1,    -1,  8919,\n     -1,    -1,  8920,  8922,  8923,  8925,    -1,    -1,\n     -1,  8927,    -1,  8929,  8931,  8933,  8934,  8935,\n     -1,  8936,    -1,    -1,    -1,  8937,  8938,    -1,\n     -1,  8939,  8941,    -1,  8942,  8943,    -1,  8944,\n     -1,    -1,    -1,  8945,    -1,    -1,  8946,    -1,\n   8947,    -1,  8948,  8950,  8951,    -1,  8952,  8953,\n     -1,  8954,  8957,    -1,  8958,  8960,  8961,    -1,\n     -1,  8962,    -1,    -1,    -1,  8964,  8965,    -1,\n     -1,    -1,    -1,    -1,  8966,    -1,    -1,  8967,\n     -1,    -1,    -1,    -1,  8968,    -1,    -1,  8969,\n     -1,  8971,  8972,    -1,  8973,    -1,  8974,  8975,\n   8976,  8977,  8978,  8979,  8980,  8982,  8985,  8986,\n   8988,  8990,  8991,  8992,  8993,  8994,  8995,  8996,\n   8997,  8998,  8999,  9000,  9002,  9003,  9004,  9005,\n   9006,  9007,  9008,  9009,  9010,  9012,  9013,  9015,\n   9016,  9018,  9019,  9020,  9021,  9022,  9023,  9025,\n   9026,  9027,  9028,  9029,  9030,  9031,  9032,  9033,\n   9034,  9035,  9036,    -1,    -1,  9037,  9040,  9043,\n   9044,  9046,    -1,    -1,  9049,    -1,  9052,  9053,\n   9055,  9057,    -1,  9060,    -1,  9061,  9064,  9065,\n     -1,    -1,  9068,    -1,    -1,  9069,  9070,    -1,\n     -1,  9071,  9074,    -1,    -1,  9077,  9078,    -1,\n     -1,  9080,  9081,  9082,    -1,    -1,  9083,  9084,\n   9085,    -1,  9086,    -1,    -1,    -1,    -1,    -1,\n   9088,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   9089,  9090,    -1,  9091,  9092,  9093,  9094,  9095,\n     -1,    -1,    -1,    -1,  9098,  9099,    -1,    -1,\n     -1,  9100,  9101,    -1,  9102,    -1,    -1,  9103,\n     -1,    -1,    -1,  9104,  9107,    -1,    -1,    -1,\n     -1,  9113,  9115,    -1,    -1,    -1,    -1,    -1,\n  /* 0x9000 */\n     -1,    -1,  9117,  9118,    -1,    -1,    -1,    -1,\n   9119,  9120,  9121,    -1,    -1,    -1,  9122,    -1,\n     -1,    -1,  9123,  9125,    -1,  9127,    -1,    -1,\n     -1,  9130,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  9131,    -1,  9132,  9138,    -1,\n     -1,  9139,    -1,    -1,    -1,    -1,    -1,    -1,\n   9140,  9142,  9143,    -1,    -1,    -1,    -1,    -1,\n     -1,  9144,  9146,  9147,  9148,    -1,    -1,    -1,\n     -1,  9149,    -1,    -1,    -1,  9150,    -1,    -1,\n     -1,  9152,  9154,  9156,    -1,    -1,  9157,    -1,\n     -1,    -1,  9158,  9159,  9162,  9164,    -1,  9165,\n     -1,  9166,    -1,    -1,  9167,    -1,  9168,    -1,\n   9170,  9172,    -1,    -1,    -1,  9173,    -1,    -1,\n     -1,  9174,    -1,    -1,    -1,    -1,    -1,  9175,\n     -1,    -1,  9176,    -1,    -1,    -1,  9178,  9179,\n   9180,    -1,  9181,    -1,  9182,    -1,    -1,    -1,\n     -1,  9183,    -1,    -1,  9184,    -1,    -1,  9185,\n     -1,  9186,  9189,    -1,    -1,    -1,    -1,  9192,\n   9193,  9194,    -1,  9195,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  9196,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  9197,    -1,\n   9198,    -1,    -1,  9199,  9200,    -1,  9201,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,  9202,  9203,  9204,    -1,  9207,    -1,    -1,\n     -1,  9208,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  9211,    -1,  9212,  9214,\n   9215,  9216,  9217,  9219,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  9220,  9222,\n     -1,    -1,    -1,    -1,    -1,    -1,  9223,  9224,\n   9225,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  9226,  9227,  9228,\n   9232,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x9100 */\n     -1,    -1,    -1,    -1,    -1,    -1,  9233,    -1,\n     -1,  9234,  9238,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,  9242,    -1,  9243,  9244,  9248,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,  9249,\n     -1,    -1,    -1,    -1,    -1,  9250,    -1,    -1,\n   9251,    -1,  9254,    -1,  9255,    -1,  9256,  9257,\n     -1,    -1,  9258,    -1,  9259,  9260,    -1,    -1,\n     -1,    -1,  9263,    -1,    -1,    -1,  9264,  9265,\n   9267,  9268,    -1,  9269,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,  9270,    -1,    -1,    -1,\n     -1,  9271,    -1,    -1,    -1,  9272,    -1,    -1,\n     -1,    -1,  9274,    -1,    -1,    -1,  9275,  9278,\n     -1,    -1,  9280,    -1,  9281,    -1,    -1,    -1,\n     -1,  9283,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  9285,  9286,  9287,\n     -1,    -1,    -1,  9289,    -1,    -1,    -1,  9290,\n     -1,  9291,  9292,  9293,    -1,    -1,  9294,    -1,\n     -1,    -1,    -1,    -1,  9296,  9297,  9298,  9300,\n   9303,    -1,    -1,    -1,  9304,    -1,  9306,    -1,\n     -1,    -1,    -1,    -1,  9308,    -1,    -1,    -1,\n     -1,    -1,    -1,  9310,  9312,    -1,    -1,    -1,\n     -1,  9314,    -1,    -1,    -1,    -1,    -1,    -1,\n   9317,    -1,    -1,  9319,  9321,    -1,    -1,    -1,\n   9323,  9325,    -1,  9326,    -1,  9327,    -1,  9328,\n   9330,    -1,  9332,  9334,  9336,    -1,  9338,    -1,\n   9340,  9341,  9343,  9345,  9348,  9349,  9350,  9352,\n   9353,  9354,  9355,    -1,  9357,  9358,    -1,    -1,\n   9359,  9361,    -1,  9362,  9364,    -1,  9365,  9366,\n     -1,  9367,    -1,    -1,    -1,    -1,    -1,  9368,\n   9369,    -1,    -1,    -1,    -1,  9377,    -1,  9378,\n     -1,  9379,  9380,  9381,  9384,    -1,    -1,    -1,\n  /* 0x9200 */\n   9392,  9393,    -1,  9394,  9395,  9396,  9397,    -1,\n   9399,  9400,    -1,    -1,    -1,  9401,  9402,    -1,\n   9404,  9405,  9406,    -1,  9407,  9408,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,  9409,  9411,\n     -1,  9412,    -1,  9413,    -1,  9414,  9415,  9416,\n   9417,  9418,    -1,    -1,  9420,    -1,  9422,    -1,\n   9424,    -1,    -1,  9425,  9426,    -1,    -1,  9427,\n   9428,  9429,  9430,    -1,    -1,  9431,  9432,  9433,\n   9434,    -1,    -1,    -1,  9435,  9440,  9441,  9442,\n   9443,  9444,    -1,  9445,    -1,  9447,    -1,    -1,\n     -1,  9448,    -1,    -1,    -1,  9449,    -1,  9450,\n     -1,    -1,  9451,  9452,    -1,    -1,  9454,    -1,\n   9455,    -1,  9456,    -1,  9459,    -1,  9461,    -1,\n   9462,    -1,    -1,    -1,  9464,  9465,    -1,    -1,\n     -1,  9466,    -1,    -1,  9471,    -1,  9475,    -1,\n   9476,    -1,  9477,  9478,    -1,    -1,    -1,  9479,\n   9480,    -1,    -1,  9481,    -1,  9482,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,  9483,    -1,    -1,\n     -1,  9484,    -1,  9485,    -1,  9486,  9490,    -1,\n   9491,    -1,  9492,  9494,  9496,    -1,  9499,    -1,\n   9500,    -1,    -1,  9501,    -1,  9502,  9503,    -1,\n   9504,  9505,  9506,  9507,  9508,  9509,  9511,    -1,\n     -1,  9512,  9513,  9514,    -1,    -1,    -1,  9516,\n     -1,  9518,    -1,  9519,  9520,  9521,    -1,    -1,\n     -1,  9522,    -1,  9523,    -1,  9524,    -1,  9525,\n     -1,    -1,    -1,    -1,  9526,    -1,    -1,  9527,\n     -1,    -1,  9528,    -1,    -1,    -1,    -1,    -1,\n     -1,  9529,    -1,  9530,    -1,  9535,    -1,  9536,\n     -1,    -1,    -1,  9538,  9540,  9541,  9542,    -1,\n   9543,  9548,  9550,    -1,    -1,  9553,  9555,  9556,\n   9557,  9558,    -1,  9559,    -1,    -1,  9561,    -1,\n   9562,    -1,    -1,    -1,  9563,    -1,    -1,    -1,\n  /* 0x9300 */\n     -1,  9564,    -1,    -1,  9565,    -1,  9567,  9568,\n   9569,    -1,    -1,    -1,    -1,    -1,    -1,  9570,\n   9572,    -1,  9573,    -1,    -1,  9574,    -1,    -1,\n   9575,  9576,  9578,  9579,    -1,    -1,    -1,  9580,\n   9581,  9582,  9583,    -1,    -1,    -1,  9585,    -1,\n   9586,  9587,    -1,  9588,  9589,    -1,  9592,  9593,\n     -1,    -1,  9594,  9596,    -1,    -1,  9597,  9598,\n   9599,    -1,    -1,    -1,    -1,    -1,  9600,    -1,\n   9601,  9602,    -1,  9603,    -1,    -1,  9604,  9605,\n   9606,    -1,  9608,  9611,    -1,  9612,    -1,    -1,\n     -1,    -1,    -1,    -1,  9613,    -1,    -1,    -1,\n   9614,    -1,  9615,  9616,    -1,    -1,  9618,    -1,\n   9619,    -1,    -1,    -1,  9621,  9622,    -1,    -1,\n     -1,  9623,    -1,    -1,  9624,    -1,    -1,  9625,\n   9627,    -1,    -1,  9628,    -1,  9632,  9633,    -1,\n     -1,    -1,  9634,    -1,    -1,    -1,  9635,  9637,\n     -1,  9638,  9639,    -1,  9640,    -1,    -1,  9641,\n     -1,    -1,  9642,  9643,  9644,    -1,    -1,    -1,\n     -1,    -1,  9646,    -1,  9648,    -1,  9650,  9652,\n   9653,    -1,  9654,  9655,    -1,    -1,    -1,    -1,\n     -1,  9656,  9658,  9659,    -1,    -1,  9660,  9662,\n     -1,  9663,  9664,    -1,  9665,  9666,  9668,    -1,\n   9670,    -1,    -1,  9671,    -1,  9672,    -1,    -1,\n   9673,    -1,  9674,    -1,    -1,    -1,    -1,  9675,\n     -1,  9676,    -1,  9677,    -1,    -1,    -1,  9678,\n   9679,    -1,    -1,    -1,  9680,  9681,    -1,    -1,\n   9682,  9683,    -1,  9684,    -1,    -1,    -1,  9685,\n   9686,    -1,    -1,    -1,  9687,  9688,  9689,  9690,\n     -1,  9694,  9696,    -1,  9697,  9698,    -1,    -1,\n   9700,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n   9701,    -1,    -1,    -1,    -1,  9702,    -1,  9703,\n     -1,  9704,    -1,    -1,    -1,  9705,    -1,    -1,\n  /* 0x9400 */\n     -1,    -1,  9707,  9709,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,  9710,    -1,    -1,    -1,    -1,\n   9711,    -1,  9712,  9713,  9714,    -1,    -1,  9715,\n   9716,  9717,  9718,    -1,    -1,  9720,    -1,    -1,\n   9722,  9723,    -1,    -1,    -1,    -1,  9728,  9729,\n   9730,    -1,    -1,  9731,    -1,    -1,  9732,    -1,\n     -1,    -1,  9734,  9735,    -1,  9736,  9741,    -1,\n   9742,    -1,  9744,    -1,    -1,    -1,    -1,  9745,\n     -1,    -1,    -1,  9746,  9748,  9750,    -1,    -1,\n     -1,    -1,  9751,    -1,  9752,    -1,    -1,    -1,\n     -1,  9753,  9757,  9761,  9762,  9763,    -1,    -1,\n     -1,    -1,  9764,  9766,  9771,    -1,  9773,    -1,\n   9774,    -1,    -1,  9775,  9776,  9777,    -1,    -1,\n     -1,    -1,  9778,    -1,  9780,  9784,    -1,  9785,\n   9786,  9787,  9788,    -1,    -1,  9789,    -1,  9791,\n     -1,  9792,    -1,    -1,  9793,  9794,  9796,  9797,\n     -1,  9798,  9800,    -1,    -1,  9801,  9803,  9806,\n   9807,  9808,  9809,  9810,  9811,  9812,  9813,  9814,\n   9815,  9816,  9817,  9818,  9819,  9820,  9821,  9822,\n   9823,  9824,  9825,  9826,  9827,  9828,  9829,  9830,\n   9834,  9835,  9836,  9837,  9838,  9839,  9841,  9842,\n   9843,  9844,  9846,  9847,  9848,  9849,  9850,  9851,\n   9852,  9853,  9855,  9856,  9857,  9858,  9861,  9862,\n   9863,  9864,  9865,  9866,  9869,  9870,  9871,  9872,\n   9873,  9874,  9877,  9878,  9879,  9880,  9882,  9883,\n   9885,  9886,  9887,  9889,  9890,  9892,  9893,  9895,\n   9896,  9897,  9898,  9899,  9900,  9902,  9903,  9904,\n   9905,  9906,  9907,  9908,  9909,  9910,  9911,  9912,\n   9913,  9914,  9915,  9916,  9917,  9918,  9919,  9920,\n   9921,  9922,  9923,  9924,  9926,  9927,  9928,  9929,\n   9930,  9931,  9932,  9936,  9937,  9938,  9939,  9940,\n   9941,  9943,  9944,  9947,  9948,  9949,  9950,  9951,\n  /* 0x9500 */\n   9953,  9954,  9955,  9956,  9957,  9959,  9960,  9961,\n   9962,  9965,  9966,  9967,  9968,  9969,  9970,  9971,\n   9973,  9975,  9976,  9977,  9978,  9979,  9980,  9981,\n   9982,  9983,  9984,  9985,  9986,  9987,  9988,  9989,\n   9990,  9991,  9992,  9993,  9994,  9996,  9997,  9998,\n   9999, 10000, 10001, 10003, 10004, 10005, 10006, 10007,\n  10008, 10009, 10010, 10011, 10012, 10013, 10014, 10015,\n  10016, 10017, 10018, 10020, 10021, 10022, 10023, 10024,\n  10025, 10026, 10027, 10028, 10029, 10030, 10031, 10032,\n  10034, 10035, 10036, 10037, 10038, 10040, 10041, 10042,\n  10044, 10045, 10046, 10047, 10048,    -1, 10049, 10050,\n  10051, 10052, 10053, 10054, 10055, 10056, 10057, 10058,\n  10059, 10060, 10061, 10063, 10064, 10065, 10066, 10067,\n  10068, 10069, 10070, 10071, 10072, 10073, 10074, 10075,\n  10076, 10078, 10079, 10080, 10081, 10082, 10083, 10084,\n  10088, 10092,    -1,    -1,    -1,    -1,    -1, 10094,\n  10098,    -1, 10099, 10100,    -1,    -1, 10101, 10102,\n  10104, 10105,    -1, 10107, 10108,    -1, 10109, 10110,\n     -1, 10112, 10114, 10116, 10117,    -1,    -1,    -1,\n  10118, 10119,    -1,    -1,    -1,    -1,    -1,    -1,\n  10121, 10123, 10124, 10127, 10128, 10129,    -1, 10130,\n  10131, 10132,    -1, 10133, 10134, 10135,    -1,    -1,\n     -1, 10136, 10138,    -1, 10140,    -1, 10142,    -1,\n     -1, 10143,    -1, 10145, 10146, 10147, 10148, 10149,\n     -1,    -1,    -1, 10150,    -1,    -1, 10152, 10153,\n  10154,    -1, 10155, 10157, 10158, 10159,    -1,    -1,\n  10160,    -1, 10161, 10162, 10163, 10164, 10165, 10166,\n  10169, 10174,    -1,    -1, 10180,    -1, 10183,    -1,\n  10184, 10185, 10186,    -1, 10187, 10188,    -1,    -1,\n  10189, 10190, 10191, 10192, 10193, 10194, 10196, 10197,\n  10198, 10200, 10201, 10203, 10204, 10205, 10206, 10207,\n  10208, 10209, 10211, 10212, 10213, 10214, 10215, 10216,\n  /* 0x9600 */\n  10217, 10218, 10219, 10220, 10221, 10222, 10224, 10225,\n  10226, 10227, 10229, 10230, 10231, 10232, 10233, 10234,\n  10235, 10236, 10237, 10239, 10240, 10242, 10243, 10244,\n  10245, 10246, 10247, 10249, 10250, 10251,    -1, 10253,\n     -1,    -1,    -1,    -1,    -1, 10254, 10258,    -1,\n  10260, 10261, 10263, 10265, 10267,    -1,    -1, 10268,\n     -1, 10269,    -1, 10270, 10272, 10276, 10277,    -1,\n  10279,    -1,    -1, 10280,    -1,    -1,    -1,    -1,\n  10281, 10283,    -1,    -1,    -1, 10285, 10286, 10287,\n  10288, 10289,    -1,    -1,    -1, 10290,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1, 10291, 10294,    -1,\n  10295,    -1,    -1,    -1, 10296, 10298, 10299, 10301,\n     -1,    -1,    -1, 10302,    -1, 10304, 10305,    -1,\n  10312, 10313,    -1,    -1,    -1,    -1,    -1,    -1,\n  10316,    -1,    -1, 10320,    -1,    -1,    -1, 10321,\n  10322,    -1, 10323, 10326,    -1, 10328,    -1, 10330,\n     -1, 10332, 10334,    -1, 10338,    -1,    -1,    -1,\n     -1,    -1, 10340,    -1, 10341,    -1, 10342, 10344,\n  10345,    -1,    -1,    -1,    -1, 10348, 10350,    -1,\n     -1, 10351,    -1, 10352,    -1, 10353,    -1, 10360,\n  10361,    -1,    -1, 10364,    -1,    -1,    -1,    -1,\n  10367,    -1, 10368, 10371,    -1,    -1, 10373, 10374,\n     -1, 10381, 10384,    -1, 10385,    -1, 10386, 10388,\n  10390,    -1, 10392, 10399,    -1, 10400, 10401,    -1,\n     -1, 10402,    -1,    -1,    -1,    -1,    -1, 10404,\n     -1,    -1,    -1, 10406,    -1, 10407,    -1, 10408,\n     -1, 10409,    -1,    -1,    -1, 10411, 10414,    -1,\n     -1, 10415, 10416, 10417, 10419, 10421, 10422, 10425,\n  10426,    -1, 10428, 10429,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n  10430,    -1, 10431, 10432,    -1,    -1, 10433, 10434,\n     -1,    -1, 10435, 10437,    -1,    -1, 10438,    -1,\n  /* 0x9700 */\n     -1, 10440,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1, 10441, 10442,    -1,    -1,    -1,    -1,    -1,\n     -1, 10445,    -1,    -1,    -1,    -1,    -1, 10446,\n     -1,    -1, 10447, 10450,    -1,    -1,    -1,    -1,\n     -1, 10453, 10454,    -1,    -1,    -1,    -1, 10455,\n     -1,    -1,    -1,    -1,    -1, 10458,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n  10459,    -1,    -1, 10460,    -1, 10464,    -1,    -1,\n     -1, 10465, 10466,    -1, 10467,    -1, 10468,    -1,\n  10469, 10472, 10473,    -1,    -1, 10477, 10484, 10491,\n     -1, 10498, 10500, 10502, 10503,    -1,    -1,    -1,\n     -1, 10506, 10507,    -1, 10508, 10509,    -1,    -1,\n     -1,    -1, 10512, 10518, 10519, 10521,    -1, 10522,\n  10523,    -1,    -1, 10524,    -1, 10526,    -1,    -1,\n     -1, 10529,    -1,    -1, 10532,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1, 10533,    -1,    -1,\n  10534,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1, 10536,    -1, 10538, 10539, 10540,    -1, 10541,\n     -1, 10542, 10543,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1, 10544,\n     -1,    -1,    -1,    -1,    -1,    -1, 10545, 10547,\n  10549,    -1,    -1,    -1,    -1,    -1,    -1, 10550,\n     -1, 10551, 10553,    -1,    -1, 10554,    -1,    -1,\n     -1, 10555,    -1,    -1,    -1, 10556, 10557,    -1,\n     -1, 10558,    -1, 10560,    -1,    -1, 10561,    -1,\n  10562, 10564,    -1, 10565, 10566, 10567,    -1,    -1,\n     -1,    -1,    -1, 10569,    -1,    -1,    -1,    -1,\n     -1, 10570,    -1,    -1, 10571, 10574, 10575,    -1,\n     -1,    -1,    -1,    -1, 10576,    -1, 10578, 10579,\n  10582, 10584, 10585, 10586, 10587, 10589, 10590, 10591,\n     -1, 10592, 10593,    -1,    -1, 10595,    -1,    -1,\n     -1,    -1,    -1, 10596,    -1,    -1,    -1, 10597,\n  /* 0x9800 */\n     -1, 10598, 10599, 10600,    -1, 10601, 10602, 10603,\n  10604,    -1, 10605,    -1, 10606,    -1, 10607, 10608,\n  10609, 10610, 10611, 10612,    -1,    -1,    -1, 10613,\n  10614,    -1, 10615,    -1, 10617,    -1,    -1,    -1,\n     -1, 10618,    -1,    -1, 10619, 10621, 10623,    -1,\n     -1,    -1,    -1,    -1, 10624, 10626, 10627,    -1,\n  10629,    -1, 10631,    -1, 10632,    -1,    -1, 10634,\n  10635, 10637, 10641, 10645, 10646, 10648, 10652,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1, 10653,    -1,\n     -1,    -1,    -1, 10654, 10655, 10656, 10657, 10658,\n     -1,    -1, 10660, 10661, 10662, 10664, 10666,    -1,\n  10667, 10668, 10669, 10671,    -1,    -1, 10673,    -1,\n     -1,    -1, 10674,    -1,    -1, 10675,    -1, 10676,\n     -1,    -1,    -1, 10677, 10678,    -1,    -1, 10679,\n  10681, 10682,    -1, 10685, 10686, 10687, 10688, 10689,\n  10690, 10691, 10692, 10693, 10695, 10696, 10697, 10698,\n  10699, 10700, 10701, 10702, 10703, 10704, 10706, 10707,\n  10708, 10710, 10711, 10713, 10714, 10715, 10716, 10717,\n  10718, 10720, 10721, 10722, 10726,    -1, 10727, 10729,\n  10730, 10731, 10732, 10733, 10734, 10736, 10737, 10738,\n  10739, 10741, 10742, 10743, 10744, 10745, 10746, 10747,\n  10748,    -1,    -1,    -1,    -1, 10756, 10757, 10761,\n     -1, 10762,    -1, 10763,    -1,    -1, 10764, 10765,\n  10768,    -1, 10769, 10770, 10771,    -1,    -1,    -1,\n  10772,    -1,    -1, 10773, 10775,    -1, 10777, 10782,\n  10783,    -1,    -1,    -1, 10787,    -1, 10792, 10798,\n  10799, 10800, 10801, 10802, 10803, 10804, 10805, 10806,\n  10807, 10809, 10810, 10811, 10812,    -1, 10813, 10814,\n  10817, 10820, 10821, 10822,    -1, 10823,    -1,    -1,\n  10824, 10825, 10826, 10827, 10829, 10830, 10831, 10833,\n  10835,    -1, 10836,    -1, 10838,    -1, 10839,    -1,\n     -1,    -1,    -1,    -1, 10840, 10841, 10842, 10843,\n  /* 0x9900 */\n     -1,    -1,    -1, 10844, 10845, 10846,    -1,    -1,\n     -1, 10848, 10851,    -1, 10854, 10855, 10856, 10857,\n  10858, 10859, 10860, 10862,    -1, 10863, 10864,    -1,\n  10865,    -1, 10867, 10868, 10869,    -1, 10870, 10871,\n  10872, 10874,    -1,    -1,    -1,    -1,    -1, 10875,\n  10879,    -1,    -1,    -1, 10881,    -1,    -1,    -1,\n     -1, 10882,    -1, 10883, 10884, 10885, 10887, 10888,\n     -1, 10889, 10890, 10891, 10892, 10893, 10894, 10895,\n     -1, 10896,    -1, 10897,    -1, 10898,    -1,    -1,\n  10899, 10900, 10901, 10902, 10903, 10904, 10905,    -1,\n     -1, 10906, 10907,    -1,    -1,    -1,    -1, 10908,\n     -1, 10909,    -1,    -1, 10910,    -1, 10911, 10912,\n     -1,    -1, 10915, 10916, 10919, 10920, 10922, 10923,\n  10925, 10926, 10927, 10928, 10929, 10930, 10931, 10933,\n  10934, 10935, 10936, 10937, 10938, 10939, 10940, 10941,\n  10943, 10944, 10945, 10946, 10947, 10949, 10950, 10951,\n  10952, 10954, 10956, 10957, 10958, 10959, 10960, 10961,\n  10962, 10964, 10965, 10966, 10967, 10968, 10969, 10970,\n  10971, 10972, 10973, 10974, 10975, 10976,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1, 10977, 10978, 10979,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1, 10980, 10981, 10982,    -1,\n     -1, 10983, 10985, 10986, 10987,    -1,    -1,    -1,\n     -1, 10988,    -1,    -1,    -1, 10989,    -1, 10990,\n     -1, 10992,    -1,    -1, 10993, 10995, 10997,    -1,\n  11001,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n  11005, 11006, 11007,    -1, 11008, 11009,    -1,    -1,\n  11010, 11011,    -1, 11012,    -1, 11013, 11015, 11017,\n     -1, 11018, 11021,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1, 11022, 11023,    -1,\n  11024, 11025,    -1,    -1,    -1, 11026,    -1,    -1,\n  11028,    -1,    -1,    -1,    -1,    -1,    -1, 11029,\n  /* 0x9a00 */\n     -1, 11030, 11031,    -1,    -1, 11032,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1, 11033, 11034, 11035,\n  11036,    -1, 11039, 11041,    -1,    -1, 11044,    -1,\n     -1, 11045,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1, 11046,    -1,    -1,    -1,\n  11047,    -1,    -1, 11048,    -1, 11049, 11050,    -1,\n  11053,    -1,    -1,    -1,    -1,    -1, 11054, 11055,\n  11057,    -1, 11058,    -1,    -1,    -1, 11059,    -1,\n  11060, 11061, 11062, 11063, 11064, 11065,    -1, 11069,\n     -1,    -1, 11070,    -1, 11071, 11072,    -1, 11073,\n     -1, 11074, 11077,    -1,    -1, 11078,    -1, 11079,\n     -1,    -1, 11082, 11083,    -1, 11085,    -1, 11086,\n     -1,    -1, 11087,    -1, 11089, 11090, 11092,    -1,\n     -1, 11093, 11094, 11095, 11096, 11097, 11098, 11100,\n  11101, 11102, 11106, 11107, 11109, 11111, 11112, 11113,\n  11114, 11115, 11116, 11117, 11118, 11120, 11121, 11122,\n  11124, 11125, 11126, 11129, 11130, 11131, 11132, 11133,\n  11134, 11135, 11136, 11137, 11138, 11141, 11142, 11143,\n  11144, 11145, 11146, 11147,    -1, 11148, 11149, 11150,\n  11151, 11153, 11154, 11156, 11157, 11158, 11160, 11161,\n  11162, 11163, 11164, 11165, 11166, 11167, 11169, 11170,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1, 11171,\n     -1,    -1,    -1,    -1,    -1, 11172,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1, 11176,    -1,\n     -1,    -1,    -1,    -1, 11177, 11179,    -1,    -1,\n  11180,    -1,    -1, 11181, 11182,    -1,    -1, 11183,\n     -1,    -1, 11184, 11185, 11187, 11191, 11193, 11194,\n  11197, 11198,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1, 11199, 11201, 11202,    -1,    -1,\n     -1, 11203, 11205,    -1,    -1, 11207, 11208, 11210,\n     -1,    -1,    -1,    -1, 11211,    -1,    -1,    -1,\n     -1, 11213,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x9b00 */\n  11214,    -1, 11215,    -1,    -1,    -1, 11218,    -1,\n     -1,    -1,    -1,    -1,    -1, 11219,    -1,    -1,\n     -1,    -1,    -1, 11220,    -1,    -1,    -1,    -1,\n     -1,    -1, 11222, 11223,    -1,    -1,    -1,    -1,\n     -1,    -1, 11224, 11227,    -1, 11228, 11233, 11238,\n  11240, 11241, 11242, 11247,    -1, 11248, 11253,    -1,\n  11254, 11257,    -1,    -1,    -1,    -1, 11260,    -1,\n     -1, 11261,    -1, 11262,    -1,    -1,    -1,    -1,\n  11264,    -1,    -1,    -1,    -1,    -1,    -1, 11265,\n     -1, 11266,    -1,    -1,    -1,    -1, 11267,    -1,\n  11269,    -1,    -1,    -1,    -1,    -1,    -1, 11274,\n  11276,    -1, 11277, 11278,    -1,    -1,    -1,    -1,\n     -1,    -1, 11279, 11280,    -1,    -1, 11281,    -1,\n  11282,    -1,    -1,    -1,    -1, 11283,    -1, 11284,\n     -1,    -1, 11285, 11287, 11288,    -1,    -1, 11289,\n     -1,    -1, 11290,    -1,    -1,    -1,    -1,    -1,\n     -1, 11291,    -1, 11292,    -1,    -1,    -1,    -1,\n     -1, 11293, 11295, 11296,    -1, 11297, 11298, 11299,\n  11300, 11301, 11302, 11303,    -1,    -1,    -1,    -1,\n     -1,    -1, 11304,    -1, 11305, 11306, 11309,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1, 11310, 11311,\n     -1,    -1, 11313, 11314,    -1, 11315, 11316,    -1,\n     -1,    -1,    -1, 11321,    -1,    -1, 11322, 11323,\n     -1,    -1, 11325, 11326,    -1,    -1, 11327,    -1,\n  11328, 11329,    -1,    -1,    -1,    -1,    -1, 11330,\n     -1, 11332, 11333, 11335,    -1,    -1,    -1,    -1,\n     -1,    -1, 11336,    -1, 11337, 11338, 11339, 11340,\n  11342,    -1,    -1, 11343,    -1, 11345,    -1,    -1,\n     -1, 11346, 11347,    -1, 11348,    -1,    -1, 11349,\n  11350,    -1, 11351, 11352,    -1,    -1,    -1,    -1,\n  11353,    -1,    -1,    -1, 11354, 11355,    -1, 11356,\n     -1, 11359,    -1,    -1,    -1, 11360,    -1, 11361,\n  /* 0x9c00 */\n  11362, 11364, 11365, 11366,    -1,    -1,    -1,    -1,\n  11367, 11369,    -1,    -1, 11370, 11372,    -1, 11374,\n  11375,    -1, 11377, 11378,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1, 11379, 11381,    -1,    -1, 11382,\n  11383,    -1,    -1, 11384, 11385, 11386,    -1,    -1,\n  11388, 11390,    -1,    -1,    -1, 11391, 11392,    -1,\n     -1, 11393, 11394, 11396,    -1, 11397,    -1, 11398,\n     -1, 11399, 11400, 11402, 11403,    -1, 11404,    -1,\n     -1,    -1, 11405,    -1,    -1, 11406,    -1,    -1,\n  11407, 11408,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1, 11411, 11412, 11413,    -1, 11414, 11415,\n  11416,    -1,    -1,    -1,    -1, 11417, 11418, 11419,\n  11420,    -1,    -1, 11421, 11422,    -1,    -1, 11423,\n  11424,    -1,    -1,    -1,    -1, 11425, 11426, 11427,\n     -1,    -1,    -1,    -1,    -1,    -1, 11428, 11431,\n  11433,    -1, 11435, 11436, 11441, 11442, 11443, 11444,\n  11445, 11446, 11447,    -1, 11448, 11449, 11450, 11451,\n  11452, 11454, 11455, 11456, 11457, 11458, 11460, 11461,\n  11462, 11463, 11464, 11465, 11466, 11467, 11468, 11469,\n  11470, 11471, 11472, 11473, 11474, 11479, 11480, 11482,\n  11483, 11485, 11486, 11487, 11488, 11489, 11490, 11491,\n  11492, 11493, 11495, 11496, 11497, 11498, 11499, 11500,\n  11501, 11502, 11503, 11504, 11505, 11506, 11507, 11508,\n  11510, 11511, 11512, 11513, 11514, 11515, 11516, 11517,\n  11518, 11519, 11520, 11521, 11522, 11524, 11526, 11527,\n  11528, 11529, 11530, 11531, 11532, 11534, 11535, 11536,\n  11537, 11538, 11539, 11540, 11541, 11542, 11544, 11546,\n  11547, 11548,    -1, 11549, 11550, 11551, 11553, 11554,\n  11555, 11556, 11557, 11558,    -1, 11559,    -1, 11561,\n     -1, 11563,    -1, 11564, 11566,    -1,    -1,    -1,\n     -1,    -1, 11567, 11568, 11569,    -1, 11570,    -1,\n  11571,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n  /* 0x9d00 */\n     -1,    -1,    -1,    -1,    -1,    -1, 11572, 11573,\n  11574, 11576,    -1,    -1,    -1,    -1, 11578,    -1,\n     -1,    -1, 11580,    -1,    -1, 11581,    -1,    -1,\n     -1,    -1,    -1, 11582,    -1, 11583, 11585, 11586,\n     -1,    -1,    -1, 11588,    -1,    -1, 11589,    -1,\n  11590,    -1,    -1,    -1, 11591,    -1,    -1, 11593,\n  11594,    -1,    -1, 11595, 11596,    -1,    -1,    -1,\n     -1,    -1,    -1, 11597, 11598,    -1,    -1, 11599,\n     -1,    -1, 11600, 11601, 11602,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n  11603, 11604, 11605, 11606,    -1,    -1,    -1,    -1,\n     -1, 11607,    -1,    -1, 11608, 11609, 11611,    -1,\n  11613, 11614,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1, 11615,    -1, 11616,    -1, 11617, 11618,\n  11619,    -1, 11620,    -1,    -1,    -1, 11621, 11623,\n     -1,    -1,    -1,    -1,    -1,    -1, 11624,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1, 11626,\n     -1, 11628, 11629,    -1,    -1,    -1,    -1, 11630,\n     -1,    -1,    -1, 11633,    -1,    -1, 11634,    -1,\n  11635,    -1, 11636,    -1,    -1,    -1,    -1,    -1,\n     -1, 11637,    -1,    -1, 11638, 11639,    -1,    -1,\n     -1, 11640, 11641, 11642, 11644,    -1,    -1, 11645,\n     -1,    -1, 11647,    -1, 11648, 11655,    -1,    -1,\n     -1, 11656, 11657, 11658, 11659,    -1,    -1, 11660,\n  11661, 11662, 11663, 11664, 11665,    -1, 11668,    -1,\n  11669, 11670, 11671,    -1,    -1,    -1,    -1, 11672,\n     -1,    -1,    -1, 11673,    -1,    -1, 11674, 11675,\n     -1, 11677, 11678,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1, 11679, 11680,    -1,\n     -1,    -1,    -1, 11681,    -1,    -1,    -1, 11682,\n  11683,    -1, 11684, 11685, 11687,    -1,    -1,    -1,\n  11689, 11690, 11691,    -1,    -1, 11693,    -1, 11694,\n  /* 0x9e00 */\n     -1,    -1,    -1,    -1,    -1,    -1,    -1, 11695,\n     -1,    -1, 11696,    -1, 11697,    -1, 11698, 11699,\n     -1,    -1,    -1,    -1,    -1, 11700, 11703,    -1,\n  11710,    -1, 11711, 11712, 11714, 11715, 11716, 11717,\n  11719, 11720, 11723, 11724, 11725, 11726, 11728, 11730,\n  11731, 11732, 11733, 11734, 11736, 11737, 11738, 11739,\n  11740, 11741, 11742, 11743, 11744, 11745, 11746, 11747,\n  11748, 11749, 11750, 11751, 11752, 11753, 11754, 11755,\n  11756, 11757, 11758, 11759, 11760, 11761, 11763, 11764,\n  11766, 11767, 11768, 11769, 11770, 11771, 11772, 11773,\n  11774, 11775, 11776, 11777, 11778, 11779, 11780, 11781,\n  11782, 11783, 11784, 11786, 11787, 11788, 11789, 11790,\n  11791, 11792, 11793, 11794, 11795, 11802, 11803, 11804,\n  11805, 11806, 11807, 11808, 11809, 11810,    -1, 11811,\n  11812, 11813, 11814, 11815, 11816, 11817,    -1,    -1,\n  11819, 11822, 11824, 11825, 11826, 11829, 11831,    -1,\n     -1,    -1,    -1, 11832, 11833, 11834,    -1, 11835,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1, 11836,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1, 11837,\n     -1,    -1,    -1,    -1,    -1,    -1, 11839,    -1,\n     -1,    -1,    -1,    -1, 11840, 11842, 11843,    -1,\n     -1, 11844, 11846, 11851, 11856, 11858,    -1, 11859,\n     -1,    -1,    -1,    -1, 11863, 11867,    -1,    -1,\n  11872, 11874, 11878, 11883, 11886, 11890,    -1,    -1,\n     -1,    -1,    -1, 11894, 11895,    -1,    -1,    -1,\n     -1, 11897,    -1,    -1, 11898,    -1,    -1, 11899,\n     -1, 11900, 11901,    -1,    -1,    -1,    -1,    -1,\n  11902, 11903,    -1, 11904,    -1,    -1, 11905,    -1,\n     -1, 11907,    -1,    -1, 11908,    -1,    -1,    -1,\n  11909, 11910, 11911,    -1,    -1, 11912,    -1,    -1,\n     -1, 11913, 11914,    -1, 11915,    -1, 11916, 11917,\n     -1, 11918,    -1,    -1,    -1, 11919, 11920, 11921,\n  /* 0x9f00 */\n     -1,    -1, 11923, 11924,    -1,    -1,    -1, 11925,\n  11927, 11930,    -1, 11931, 11932, 11933, 11934,    -1,\n     -1, 11935, 11936, 11937,    -1, 11939,    -1, 11940,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n  11942, 11943,    -1,    -1,    -1,    -1, 11944,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1, 11945,    -1,    -1,    -1,\n     -1, 11946,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1, 11947,    -1,    -1,\n     -1,    -1, 11948, 11952,    -1,    -1, 11954, 11956,\n  11958, 11962, 11964, 11966, 11967, 11969,    -1, 11970,\n     -1, 11971, 11972,    -1, 11973,    -1,    -1, 11974,\n  11975, 11976, 11978, 11980,    -1,    -1, 11981, 11982,\n     -1, 11985, 11986,    -1, 11988,    -1,    -1,    -1,\n  11989, 11990, 11991,    -1,    -1,    -1, 11992, 11993,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1, 11994,\n  11996, 11997, 11998, 11999, 12000, 12002, 12003, 12004,\n  12005, 12006, 12007, 12008, 12009, 12010, 12013,    -1,\n  12014,    -1, 12015,    -1, 12018, 12019,    -1,    -1,\n     -1, 12020, 12022, 12023, 12024, 12026, 12029, 12031,\n     -1,    -1, 12033,    -1,    -1, 12036,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,\n};\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643.h",
    "content": "/*\n * Copyright (C) 1999-2001 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992\n */\n\n/* ISO-2022-CN and EUC-TW use CNS 11643-1992 planes 1 to 7. We also\n * have a table for the older plane 15. We use a trick to keep the\n * Unicode -> CNS 11643 table as small as possible (see cns11643_inv.h).\n */\n\n#include \"cns11643_1.h\"\n#include \"cns11643_2.h\"\n#include \"cns11643_3.h\"\n#include \"cns11643_4.h\"\n#include \"cns11643_5.h\"\n#include \"cns11643_6.h\"\n#include \"cns11643_7.h\"\n#include \"cns11643_15.h\"\n#include \"cns11643_inv.h\"\n\n/* Returns the plane number (1,...,7,15) in r[0], the two bytes in r[1],r[2]. */\n#define cns11643_wctomb cns11643_inv_wctomb\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643_1.h",
    "content": "/*\n * Copyright (C) 1999-2005, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992 plane 1\n */\n\nstatic const unsigned short cns11643_1_2uni_page21[500] = {\n  /* 0x21 */\n  0x3000, 0xff0c, 0x3001, 0x3002, 0xff0e, 0x30fb, 0xff1b, 0xff1a,\n  0xff1f, 0xff01, 0xfe30, 0x2026, 0x2025, 0xfe50, 0xfe51, 0xfe52,\n  0x00b7, 0xfe54, 0xfe55, 0xfe56, 0xfe57, 0xfe31, 0x2014, 0xfe32,\n  0x2013, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xff08, 0xff09, 0xfe35,\n  0xfe36, 0xff5b, 0xff5d, 0xfe37, 0xfe38, 0x3014, 0x3015, 0xfe39,\n  0xfe3a, 0x3010, 0x3011, 0xfe3b, 0xfe3c, 0x300a, 0x300b, 0xfe3d,\n  0xfe3e, 0x3008, 0x3009, 0xfe3f, 0xfe40, 0x300c, 0x300d, 0xfe41,\n  0xfe42, 0x300e, 0x300f, 0xfe43, 0xfe44, 0xfe59, 0xfe5a, 0xfe5b,\n  0xfe5c, 0xfe5d, 0xfe5e, 0x2018, 0x2019, 0x201c, 0x201d, 0x301d,\n  0x301e, 0x2032, 0x2035, 0xff03, 0xff06, 0xff0a, 0x203b, 0x00a7,\n  0x3003, 0x25cb, 0x25cf, 0x25b3, 0x25b2, 0x25ce, 0x2606, 0x2605,\n  0x25c7, 0x25c6, 0x25a1, 0x25a0, 0x25bd, 0x25bc,\n  /* 0x22 */\n  0x32a3, 0x2105, 0x203e, 0xfffd, 0xff3f, 0xfffd, 0xfe49, 0xfe4a,\n  0xfe4d, 0xfe4e, 0xfe4b, 0xfe4c, 0xfe5f, 0xfe60, 0xfe61, 0xff0b,\n  0xff0d, 0x00d7, 0x00f7, 0x00b1, 0x221a, 0xff1c, 0xff1e, 0xff1d,\n  0x2266, 0x2267, 0x2260, 0x221e, 0x2252, 0x2261, 0xfe62, 0xfe63,\n  0xfe64, 0xfe66, 0xfe65, 0x223c, 0x2229, 0x222a, 0x22a5, 0x2220,\n  0x221f, 0x22bf, 0x33d2, 0x33d1, 0x222b, 0x222e, 0x2235, 0x2234,\n  0x2640, 0x2642, 0x2641, 0x2609, 0x2191, 0x2193, 0x2192, 0x2190,\n  0x2196, 0x2197, 0x2199, 0x2198, 0x2016, 0xff5c, 0xff0f, 0xff3c,\n  0x2215, 0xfe68, 0xff04, 0xffe5, 0x3012, 0xffe0, 0xffe1, 0xff05,\n  0xff20, 0x2103, 0x2109, 0xfe69, 0xfe6a, 0xfe6b, 0x33d5, 0x339c,\n  0x339d, 0x339e, 0x33ce, 0x33a1, 0x338e, 0x338f, 0x33c4, 0x00b0,\n  0x5159, 0x515b, 0x515e, 0x515d, 0x5161, 0x5163,\n  /* 0x23 */\n  0x55e7, 0x74e9, 0x7cce, 0x2581, 0x2582, 0x2583, 0x2584, 0x2585,\n  0x2586, 0x2587, 0x2588, 0x258f, 0x258e, 0x258d, 0x258c, 0x258b,\n  0x258a, 0x2589, 0x253c, 0x2534, 0x252c, 0x2524, 0x251c, 0x2594,\n  0x2500, 0x2502, 0x2595, 0x250c, 0x2510, 0x2514, 0x2518, 0x256d,\n  0x256e, 0x2570, 0x256f, 0x2550, 0x255e, 0x256a, 0x2561, 0x25e2,\n  0x25e3, 0x25e5, 0x25e4, 0x2571, 0x2572, 0x2573, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x24 */\n  0xff10, 0xff11, 0xff12, 0xff13, 0xff14, 0xff15, 0xff16, 0xff17,\n  0xff18, 0xff19, 0x2160, 0x2161, 0x2162, 0x2163, 0x2164, 0x2165,\n  0x2166, 0x2167, 0x2168, 0x2169, 0x3021, 0x3022, 0x3023, 0x3024,\n  0x3025, 0x3026, 0x3027, 0x3028, 0x3029, 0xfffd, 0x5344, 0xfffd,\n  0xff21, 0xff22, 0xff23, 0xff24, 0xff25, 0xff26, 0xff27, 0xff28,\n  0xff29, 0xff2a, 0xff2b, 0xff2c, 0xff2d, 0xff2e, 0xff2f, 0xff30,\n  0xff31, 0xff32, 0xff33, 0xff34, 0xff35, 0xff36, 0xff37, 0xff38,\n  0xff39, 0xff3a, 0xff41, 0xff42, 0xff43, 0xff44, 0xff45, 0xff46,\n  0xff47, 0xff48, 0xff49, 0xff4a, 0xff4b, 0xff4c, 0xff4d, 0xff4e,\n  0xff4f, 0xff50, 0xff51, 0xff52, 0xff53, 0xff54, 0xff55, 0xff56,\n  0xff57, 0xff58, 0xff59, 0xff5a, 0x0391, 0x0392, 0x0393, 0x0394,\n  0x0395, 0x0396, 0x0397, 0x0398, 0x0399, 0x039a,\n  /* 0x25 */\n  0x039b, 0x039c, 0x039d, 0x039e, 0x039f, 0x03a0, 0x03a1, 0x03a3,\n  0x03a4, 0x03a5, 0x03a6, 0x03a7, 0x03a8, 0x03a9, 0x03b1, 0x03b2,\n  0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7, 0x03b8, 0x03b9, 0x03ba,\n  0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf, 0x03c0, 0x03c1, 0x03c3,\n  0x03c4, 0x03c5, 0x03c6, 0x03c7, 0x03c8, 0x03c9, 0x3105, 0x3106,\n  0x3107, 0x3108, 0x3109, 0x310a, 0x310b, 0x310c, 0x310d, 0x310e,\n  0x310f, 0x3110, 0x3111, 0x3112, 0x3113, 0x3114, 0x3115, 0x3116,\n  0x3117, 0x3118, 0x3119, 0x311a, 0x311b, 0x311c, 0x311d, 0x311e,\n  0x311f, 0x3120, 0x3121, 0x3122, 0x3123, 0x3124, 0x3125, 0x3126,\n  0x3127, 0x3128, 0x3129, 0x02d9, 0x02c9, 0x02ca, 0x02c7, 0x02cb,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x26 */\n  0x2460, 0x2461, 0x2462, 0x2463, 0x2464, 0x2465, 0x2466, 0x2467,\n  0x2468, 0x2469, 0x2474, 0x2475, 0x2476, 0x2477, 0x2478, 0x2479,\n  0x247a, 0x247b, 0x247c, 0x247d, 0x2170, 0x2171, 0x2172, 0x2173,\n  0x2174, 0x2175, 0x2176, 0x2177, 0x2178, 0x2179,\n};\nstatic const unsigned short cns11643_1_2uni_page42[34] = {\n  /* 0x42 */\n  0x2400, 0x2401, 0x2402, 0x2403, 0x2404, 0x2405, 0x2406, 0x2407,\n  0x2408, 0x2409, 0x240a, 0x240b, 0x240c, 0x240d, 0x240e, 0x240f,\n  0x2410, 0x2411, 0x2412, 0x2413, 0x2414, 0x2415, 0x2416, 0x2417,\n  0x2418, 0x2419, 0x241a, 0x241b, 0x241c, 0x241d, 0x241e, 0x241f,\n  0x2421, 0x20ac,\n};\nstatic const unsigned short cns11643_1_2uni_page44[5401] = {\n  /* 0x44 */\n  0x4e00, 0x4e59, 0x4e01, 0x4e03, 0x4e43, 0x4e5d, 0x4e86, 0x4e8c,\n  0x4eba, 0x513f, 0x5165, 0x516b, 0x51e0, 0x5200, 0x5201, 0x529b,\n  0x5315, 0x5341, 0x535c, 0x53c8, 0x4e09, 0x4e0b, 0x4e08, 0x4e0a,\n  0x4e2b, 0x4e38, 0x51e1, 0x4e45, 0x4e48, 0x4e5f, 0x4e5e, 0x4e8e,\n  0x4ea1, 0x5140, 0x5203, 0x52fa, 0x5343, 0x53c9, 0x53e3, 0x571f,\n  0x58eb, 0x5915, 0x5927, 0x5973, 0x5b50, 0x5b51, 0x5b53, 0x5bf8,\n  0x5c0f, 0x5c22, 0x5c38, 0x5c71, 0x5ddd, 0x5de5, 0x5df1, 0x5df2,\n  0x5df3, 0x5dfe, 0x5e72, 0x5efe, 0x5f0b, 0x5f13, 0x624d, 0x4e11,\n  0x4e10, 0x4e0d, 0x4e2d, 0x4e30, 0x4e39, 0x4e4b, 0x5c39, 0x4e88,\n  0x4e91, 0x4e95, 0x4e92, 0x4e94, 0x4ea2, 0x4ec1, 0x4ec0, 0x4ec3,\n  0x4ec6, 0x4ec7, 0x4ecd, 0x4eca, 0x4ecb, 0x4ec4, 0x5143, 0x5141,\n  0x5167, 0x516d, 0x516e, 0x516c, 0x5197, 0x51f6,\n  /* 0x45 */\n  0x5206, 0x5207, 0x5208, 0x52fb, 0x52fe, 0x52ff, 0x5316, 0x5339,\n  0x5348, 0x5347, 0x5345, 0x535e, 0x5384, 0x53cb, 0x53ca, 0x53cd,\n  0x58ec, 0x5929, 0x592b, 0x592a, 0x592d, 0x5b54, 0x5c11, 0x5c24,\n  0x5c3a, 0x5c6f, 0x5df4, 0x5e7b, 0x5eff, 0x5f14, 0x5f15, 0x5fc3,\n  0x6208, 0x6236, 0x624b, 0x624e, 0x652f, 0x6587, 0x6597, 0x65a4,\n  0x65b9, 0x65e5, 0x66f0, 0x6708, 0x6728, 0x6b20, 0x6b62, 0x6b79,\n  0x6bcb, 0x6bd4, 0x6bdb, 0x6c0f, 0x6c34, 0x706b, 0x722a, 0x7236,\n  0x723b, 0x7247, 0x7259, 0x725b, 0x72ac, 0x738b, 0x4e19, 0x4e16,\n  0x4e15, 0x4e14, 0x4e18, 0x4e3b, 0x4e4d, 0x4e4f, 0x4e4e, 0x4ee5,\n  0x4ed8, 0x4ed4, 0x4ed5, 0x4ed6, 0x4ed7, 0x4ee3, 0x4ee4, 0x4ed9,\n  0x4ede, 0x5145, 0x5144, 0x5189, 0x518a, 0x51ac, 0x51f9, 0x51fa,\n  0x51f8, 0x520a, 0x52a0, 0x529f, 0x5305, 0x5306,\n  /* 0x46 */\n  0x5317, 0x531d, 0x4edf, 0x534a, 0x5349, 0x5361, 0x5360, 0x536f,\n  0x536e, 0x53bb, 0x53ef, 0x53e4, 0x53f3, 0x53ec, 0x53ee, 0x53e9,\n  0x53e8, 0x53fc, 0x53f8, 0x53f5, 0x53eb, 0x53e6, 0x53ea, 0x53f2,\n  0x53f1, 0x53f0, 0x53e5, 0x53ed, 0x53fb, 0x56db, 0x56da, 0x5916,\n  0x592e, 0x5931, 0x5974, 0x5976, 0x5b55, 0x5b83, 0x5c3c, 0x5de8,\n  0x5de7, 0x5de6, 0x5e02, 0x5e03, 0x5e73, 0x5e7c, 0x5f01, 0x5f18,\n  0x5f17, 0x5fc5, 0x620a, 0x6253, 0x6254, 0x6252, 0x6251, 0x65a5,\n  0x65e6, 0x672e, 0x672c, 0x672a, 0x672b, 0x672d, 0x6b63, 0x6bcd,\n  0x6c11, 0x6c10, 0x6c38, 0x6c41, 0x6c40, 0x6c3e, 0x72af, 0x7384,\n  0x7389, 0x74dc, 0x74e6, 0x7518, 0x751f, 0x7528, 0x7529, 0x7530,\n  0x7531, 0x7532, 0x7533, 0x758b, 0x767d, 0x76ae, 0x76bf, 0x76ee,\n  0x77db, 0x77e2, 0x77f3, 0x793a, 0x79be, 0x7a74,\n  /* 0x47 */\n  0x7acb, 0x4e1e, 0x4e1f, 0x4e52, 0x4e53, 0x4e69, 0x4e99, 0x4ea4,\n  0x4ea6, 0x4ea5, 0x4eff, 0x4f09, 0x4f19, 0x4f0a, 0x4f15, 0x4f0d,\n  0x4f10, 0x4f11, 0x4f0f, 0x4ef2, 0x4ef6, 0x4efb, 0x4ef0, 0x4ef3,\n  0x4efd, 0x4f01, 0x4f0b, 0x5149, 0x5147, 0x5146, 0x5148, 0x5168,\n  0x5171, 0x518d, 0x51b0, 0x5217, 0x5211, 0x5212, 0x520e, 0x5216,\n  0x52a3, 0x5308, 0x5321, 0x5320, 0x5370, 0x5371, 0x5409, 0x540f,\n  0x540c, 0x540a, 0x5410, 0x5401, 0x540b, 0x5404, 0x5411, 0x540d,\n  0x5408, 0x5403, 0x540e, 0x5406, 0x5412, 0x56e0, 0x56de, 0x56dd,\n  0x5733, 0x5730, 0x5728, 0x572d, 0x572c, 0x572f, 0x5729, 0x5919,\n  0x591a, 0x5937, 0x5938, 0x5984, 0x5978, 0x5983, 0x597d, 0x5979,\n  0x5982, 0x5981, 0x5b57, 0x5b58, 0x5b87, 0x5b88, 0x5b85, 0x5b89,\n  0x5bfa, 0x5c16, 0x5c79, 0x5dde, 0x5e06, 0x5e76,\n  /* 0x48 */\n  0x5e74, 0x5f0f, 0x5f1b, 0x5fd9, 0x5fd6, 0x620e, 0x620c, 0x620d,\n  0x6210, 0x6263, 0x625b, 0x6258, 0x6536, 0x65e9, 0x65e8, 0x65ec,\n  0x65ed, 0x66f2, 0x66f3, 0x6709, 0x673d, 0x6734, 0x6731, 0x6735,\n  0x6b21, 0x6b64, 0x6b7b, 0x6c16, 0x6c5d, 0x6c57, 0x6c59, 0x6c5f,\n  0x6c60, 0x6c50, 0x6c55, 0x6c61, 0x6c5b, 0x6c4d, 0x6c4e, 0x7070,\n  0x725f, 0x725d, 0x767e, 0x7af9, 0x7c73, 0x7cf8, 0x7f36, 0x7f8a,\n  0x7fbd, 0x8001, 0x8003, 0x800c, 0x8012, 0x8033, 0x807f, 0x8089,\n  0x808b, 0x808c, 0x81e3, 0x81ea, 0x81f3, 0x81fc, 0x820c, 0x821b,\n  0x821f, 0x826e, 0x8272, 0x827e, 0x866b, 0x8840, 0x884c, 0x8863,\n  0x897f, 0x9621, 0x4e32, 0x4ea8, 0x4f4d, 0x4f4f, 0x4f47, 0x4f57,\n  0x4f5e, 0x4f34, 0x4f5b, 0x4f55, 0x4f30, 0x4f50, 0x4f51, 0x4f3d,\n  0x4f3a, 0x4f38, 0x4f43, 0x4f54, 0x4f3c, 0x4f46,\n  /* 0x49 */\n  0x4f63, 0x4f5c, 0x4f60, 0x4f2f, 0x4f4e, 0x4f36, 0x4f59, 0x4f5d,\n  0x4f48, 0x4f5a, 0x514c, 0x514b, 0x514d, 0x5175, 0x51b6, 0x51b7,\n  0x5225, 0x5224, 0x5229, 0x522a, 0x5228, 0x52ab, 0x52a9, 0x52aa,\n  0x52ac, 0x5323, 0x5373, 0x5375, 0x541d, 0x542d, 0x541e, 0x543e,\n  0x5426, 0x544e, 0x5427, 0x5446, 0x5443, 0x5433, 0x5448, 0x5442,\n  0x541b, 0x5429, 0x544a, 0x5439, 0x543b, 0x5438, 0x542e, 0x5435,\n  0x5436, 0x5420, 0x543c, 0x5440, 0x5431, 0x542b, 0x541f, 0x542c,\n  0x56ea, 0x56f0, 0x56e4, 0x56eb, 0x574a, 0x5751, 0x5740, 0x574d,\n  0x5747, 0x574e, 0x573e, 0x5750, 0x574f, 0x573b, 0x58ef, 0x593e,\n  0x599d, 0x5992, 0x59a8, 0x599e, 0x59a3, 0x5999, 0x5996, 0x598d,\n  0x59a4, 0x5993, 0x598a, 0x59a5, 0x5b5d, 0x5b5c, 0x5b5a, 0x5b5b,\n  0x5b8c, 0x5b8b, 0x5b8f, 0x5c2c, 0x5c40, 0x5c41,\n  /* 0x4a */\n  0x5c3f, 0x5c3e, 0x5c90, 0x5c91, 0x5c94, 0x5c8c, 0x5deb, 0x5e0c,\n  0x5e8f, 0x5e87, 0x5e8a, 0x5ef7, 0x5f04, 0x5f1f, 0x5f64, 0x5f62,\n  0x5f77, 0x5f79, 0x5fd8, 0x5fcc, 0x5fd7, 0x5fcd, 0x5ff1, 0x5feb,\n  0x5ff8, 0x5fea, 0x6212, 0x6211, 0x6284, 0x6297, 0x6296, 0x6280,\n  0x6276, 0x6289, 0x626d, 0x628a, 0x627c, 0x627e, 0x6279, 0x6273,\n  0x6292, 0x626f, 0x6298, 0x626e, 0x6295, 0x6293, 0x6291, 0x6286,\n  0x6539, 0x653b, 0x6538, 0x65f1, 0x66f4, 0x675f, 0x674e, 0x674f,\n  0x6750, 0x6751, 0x675c, 0x6756, 0x675e, 0x6749, 0x6746, 0x6760,\n  0x6753, 0x6757, 0x6b65, 0x6bcf, 0x6c42, 0x6c5e, 0x6c99, 0x6c81,\n  0x6c88, 0x6c89, 0x6c85, 0x6c9b, 0x6c6a, 0x6c7a, 0x6c90, 0x6c70,\n  0x6c8c, 0x6c68, 0x6c96, 0x6c92, 0x6c7d, 0x6c83, 0x6c72, 0x6c7e,\n  0x6c74, 0x6c86, 0x6c76, 0x6c8d, 0x6c94, 0x6c98,\n  /* 0x4b */\n  0x6c82, 0x7076, 0x707c, 0x707d, 0x7078, 0x7262, 0x7261, 0x7260,\n  0x72c4, 0x72c2, 0x7396, 0x752c, 0x752b, 0x7537, 0x7538, 0x7682,\n  0x76ef, 0x77e3, 0x79c1, 0x79c0, 0x79bf, 0x7a76, 0x7cfb, 0x7f55,\n  0x8096, 0x8093, 0x809d, 0x8098, 0x809b, 0x809a, 0x80b2, 0x826f,\n  0x8292, 0x828b, 0x828d, 0x898b, 0x89d2, 0x8a00, 0x8c37, 0x8c46,\n  0x8c55, 0x8c9d, 0x8d64, 0x8d70, 0x8db3, 0x8eab, 0x8eca, 0x8f9b,\n  0x8fb0, 0x8fc2, 0x8fc6, 0x8fc5, 0x8fc4, 0x5de1, 0x9091, 0x90a2,\n  0x90aa, 0x90a6, 0x90a3, 0x9149, 0x91c6, 0x91cc, 0x9632, 0x962e,\n  0x9631, 0x962a, 0x962c, 0x4e26, 0x4e56, 0x4e73, 0x4e8b, 0x4e9b,\n  0x4e9e, 0x4eab, 0x4eac, 0x4f6f, 0x4f9d, 0x4f8d, 0x4f73, 0x4f7f,\n  0x4f6c, 0x4f9b, 0x4f8b, 0x4f86, 0x4f83, 0x4f70, 0x4f75, 0x4f88,\n  0x4f69, 0x4f7b, 0x4f96, 0x4f7e, 0x4f8f, 0x4f91,\n  /* 0x4c */\n  0x4f7a, 0x5154, 0x5152, 0x5155, 0x5169, 0x5177, 0x5176, 0x5178,\n  0x51bd, 0x51fd, 0x523b, 0x5238, 0x5237, 0x523a, 0x5230, 0x522e,\n  0x5236, 0x5241, 0x52be, 0x52bb, 0x5352, 0x5354, 0x5353, 0x5351,\n  0x5366, 0x5377, 0x5378, 0x5379, 0x53d6, 0x53d4, 0x53d7, 0x5473,\n  0x5475, 0x5496, 0x5478, 0x5495, 0x5480, 0x547b, 0x5477, 0x5484,\n  0x5492, 0x5486, 0x547c, 0x5490, 0x5471, 0x5476, 0x548c, 0x549a,\n  0x5462, 0x5468, 0x548b, 0x547d, 0x548e, 0x56fa, 0x5783, 0x5777,\n  0x576a, 0x5769, 0x5761, 0x5766, 0x5764, 0x577c, 0x591c, 0x5949,\n  0x5947, 0x5948, 0x5944, 0x5954, 0x59be, 0x59bb, 0x59d4, 0x59b9,\n  0x59ae, 0x59d1, 0x59c6, 0x59d0, 0x59cd, 0x59cb, 0x59d3, 0x59ca,\n  0x59af, 0x59b3, 0x59d2, 0x59c5, 0x5b5f, 0x5b64, 0x5b63, 0x5b97,\n  0x5b9a, 0x5b98, 0x5b9c, 0x5b99, 0x5b9b, 0x5c1a,\n  /* 0x4d */\n  0x5c48, 0x5c45, 0x5c46, 0x5cb7, 0x5ca1, 0x5cb8, 0x5ca9, 0x5cab,\n  0x5cb1, 0x5cb3, 0x5e18, 0x5e1a, 0x5e16, 0x5e15, 0x5e1b, 0x5e11,\n  0x5e78, 0x5e9a, 0x5e97, 0x5e9c, 0x5e95, 0x5e96, 0x5ef6, 0x5f26,\n  0x5f27, 0x5f29, 0x5f80, 0x5f81, 0x5f7f, 0x5f7c, 0x5fdd, 0x5fe0,\n  0x5ffd, 0x5ff5, 0x5fff, 0x600f, 0x6014, 0x602f, 0x6035, 0x6016,\n  0x602a, 0x6015, 0x6021, 0x6027, 0x6029, 0x602b, 0x601b, 0x6216,\n  0x6215, 0x623f, 0x623e, 0x6240, 0x627f, 0x62c9, 0x62cc, 0x62c4,\n  0x62bf, 0x62c2, 0x62b9, 0x62d2, 0x62db, 0x62ab, 0x62d3, 0x62d4,\n  0x62cb, 0x62c8, 0x62a8, 0x62bd, 0x62bc, 0x62d0, 0x62d9, 0x62c7,\n  0x62cd, 0x62b5, 0x62da, 0x62b1, 0x62d8, 0x62d6, 0x62d7, 0x62c6,\n  0x62ac, 0x62ce, 0x653e, 0x65a7, 0x65bc, 0x65fa, 0x6614, 0x6613,\n  0x660c, 0x6606, 0x6602, 0x660e, 0x6600, 0x660f,\n  /* 0x4e */\n  0x6615, 0x660a, 0x6607, 0x670d, 0x670b, 0x676d, 0x678b, 0x6795,\n  0x6771, 0x679c, 0x6773, 0x6777, 0x6787, 0x679d, 0x6797, 0x676f,\n  0x6770, 0x677f, 0x6789, 0x677e, 0x6790, 0x6775, 0x679a, 0x6793,\n  0x677c, 0x676a, 0x6772, 0x6b23, 0x6b66, 0x6b67, 0x6b7f, 0x6c13,\n  0x6c1b, 0x6ce3, 0x6ce8, 0x6cf3, 0x6cb1, 0x6ccc, 0x6ce5, 0x6cb3,\n  0x6cbd, 0x6cbe, 0x6cbc, 0x6ce2, 0x6cab, 0x6cd5, 0x6cd3, 0x6cb8,\n  0x6cc4, 0x6cb9, 0x6cc1, 0x6cae, 0x6cd7, 0x6cc5, 0x6cf1, 0x6cbf,\n  0x6cbb, 0x6ce1, 0x6cdb, 0x6cca, 0x6cac, 0x6cef, 0x6cdc, 0x6cd6,\n  0x6ce0, 0x7095, 0x708e, 0x7092, 0x708a, 0x7099, 0x722c, 0x722d,\n  0x7238, 0x7248, 0x7267, 0x7269, 0x72c0, 0x72ce, 0x72d9, 0x72d7,\n  0x72d0, 0x73a9, 0x73a8, 0x739f, 0x73ab, 0x73a5, 0x753d, 0x759d,\n  0x7599, 0x759a, 0x7684, 0x76c2, 0x76f2, 0x76f4,\n  /* 0x4f */\n  0x77e5, 0x77fd, 0x793e, 0x7940, 0x7941, 0x79c9, 0x79c8, 0x7a7a,\n  0x7a79, 0x7afa, 0x7cfe, 0x7f54, 0x7f8c, 0x7f8b, 0x8005, 0x80ba,\n  0x80a5, 0x80a2, 0x80b1, 0x80a1, 0x80ab, 0x80a9, 0x80b4, 0x80aa,\n  0x80af, 0x81e5, 0x81fe, 0x820d, 0x82b3, 0x829d, 0x8299, 0x82ad,\n  0x82bd, 0x829f, 0x82b9, 0x82b1, 0x82ac, 0x82a5, 0x82af, 0x82b8,\n  0x82a3, 0x82b0, 0x82be, 0x82b7, 0x864e, 0x8671, 0x521d, 0x8868,\n  0x8ecb, 0x8fce, 0x8fd4, 0x8fd1, 0x90b5, 0x90b8, 0x90b1, 0x90b6,\n  0x91c7, 0x91d1, 0x9577, 0x9580, 0x961c, 0x9640, 0x963f, 0x963b,\n  0x9644, 0x9642, 0x96b9, 0x96e8, 0x9752, 0x975e, 0x4e9f, 0x4ead,\n  0x4eae, 0x4fe1, 0x4fb5, 0x4faf, 0x4fbf, 0x4fe0, 0x4fd1, 0x4fcf,\n  0x4fdd, 0x4fc3, 0x4fb6, 0x4fd8, 0x4fdf, 0x4fca, 0x4fd7, 0x4fae,\n  0x4fd0, 0x4fc4, 0x4fc2, 0x4fda, 0x4fce, 0x4fde,\n  /* 0x50 */\n  0x4fb7, 0x5157, 0x5192, 0x5191, 0x51a0, 0x524e, 0x5243, 0x524a,\n  0x524d, 0x524c, 0x524b, 0x5247, 0x52c7, 0x52c9, 0x52c3, 0x52c1,\n  0x530d, 0x5357, 0x537b, 0x539a, 0x53db, 0x54ac, 0x54c0, 0x54a8,\n  0x54ce, 0x54c9, 0x54b8, 0x54a6, 0x54b3, 0x54c7, 0x54c2, 0x54bd,\n  0x54aa, 0x54c1, 0x54c4, 0x54c8, 0x54af, 0x54ab, 0x54b1, 0x54bb,\n  0x54a9, 0x54a7, 0x54bf, 0x56ff, 0x5782, 0x578b, 0x57a0, 0x57a3,\n  0x57a2, 0x57ce, 0x57ae, 0x5793, 0x5955, 0x5951, 0x594f, 0x594e,\n  0x5950, 0x59dc, 0x59d8, 0x59ff, 0x59e3, 0x59e8, 0x5a03, 0x59e5,\n  0x59ea, 0x59da, 0x59e6, 0x5a01, 0x59fb, 0x5b69, 0x5ba3, 0x5ba6,\n  0x5ba4, 0x5ba2, 0x5ba5, 0x5c01, 0x5c4e, 0x5c4f, 0x5c4d, 0x5c4b,\n  0x5cd9, 0x5cd2, 0x5df7, 0x5e1d, 0x5e25, 0x5e1f, 0x5e7d, 0x5ea0,\n  0x5ea6, 0x5efa, 0x5f08, 0x5f2d, 0x5f65, 0x5f88,\n  /* 0x51 */\n  0x5f85, 0x5f8a, 0x5f8b, 0x5f87, 0x5f8c, 0x5f89, 0x6012, 0x601d,\n  0x6020, 0x6025, 0x600e, 0x6028, 0x604d, 0x6070, 0x6068, 0x6062,\n  0x6046, 0x6043, 0x606c, 0x606b, 0x606a, 0x6064, 0x6241, 0x62dc,\n  0x6316, 0x6309, 0x62fc, 0x62ed, 0x6301, 0x62ee, 0x62fd, 0x6307,\n  0x62f1, 0x62f7, 0x62ef, 0x62ec, 0x62fe, 0x62f4, 0x6311, 0x6302,\n  0x653f, 0x6545, 0x65ab, 0x65bd, 0x65e2, 0x6625, 0x662d, 0x6620,\n  0x6627, 0x662f, 0x661f, 0x6628, 0x6631, 0x6624, 0x66f7, 0x67ff,\n  0x67d3, 0x67f1, 0x67d4, 0x67d0, 0x67ec, 0x67b6, 0x67af, 0x67f5,\n  0x67e9, 0x67ef, 0x67c4, 0x67d1, 0x67b4, 0x67da, 0x67e5, 0x67b8,\n  0x67cf, 0x67de, 0x67f3, 0x67b0, 0x67d9, 0x67e2, 0x67dd, 0x67d2,\n  0x6b6a, 0x6b83, 0x6b86, 0x6bb5, 0x6bd2, 0x6bd7, 0x6c1f, 0x6cc9,\n  0x6d0b, 0x6d32, 0x6d2a, 0x6d41, 0x6d25, 0x6d0c,\n  /* 0x52 */\n  0x6d31, 0x6d1e, 0x6d17, 0x6d3b, 0x6d3d, 0x6d3e, 0x6d36, 0x6d1b,\n  0x6cf5, 0x6d39, 0x6d27, 0x6d38, 0x6d29, 0x6d2e, 0x6d35, 0x6d0e,\n  0x6d2b, 0x70ab, 0x70ba, 0x70b3, 0x70ac, 0x70af, 0x70ad, 0x70b8,\n  0x70ae, 0x70a4, 0x7230, 0x7272, 0x726f, 0x7274, 0x72e9, 0x72e0,\n  0x72e1, 0x73b7, 0x73ca, 0x73bb, 0x73b2, 0x73cd, 0x73c0, 0x73b3,\n  0x751a, 0x752d, 0x754f, 0x754c, 0x754e, 0x754b, 0x75ab, 0x75a4,\n  0x75a5, 0x75a2, 0x75a3, 0x7678, 0x7686, 0x7687, 0x7688, 0x76c8,\n  0x76c6, 0x76c3, 0x76c5, 0x7701, 0x76f9, 0x76f8, 0x7709, 0x770b,\n  0x76fe, 0x76fc, 0x7707, 0x77dc, 0x7802, 0x7814, 0x780c, 0x780d,\n  0x7946, 0x7949, 0x7948, 0x7947, 0x79b9, 0x79ba, 0x79d1, 0x79d2,\n  0x79cb, 0x7a7f, 0x7a81, 0x7aff, 0x7afd, 0x7c7d, 0x7d02, 0x7d05,\n  0x7d00, 0x7d09, 0x7d07, 0x7d04, 0x7d06, 0x7f38,\n  /* 0x53 */\n  0x7f8e, 0x7fbf, 0x8010, 0x800d, 0x8011, 0x8036, 0x80d6, 0x80e5,\n  0x80da, 0x80c3, 0x80c4, 0x80cc, 0x80e1, 0x80db, 0x80ce, 0x80de,\n  0x80e4, 0x80dd, 0x81f4, 0x8222, 0x82e7, 0x8303, 0x8305, 0x82e3,\n  0x82db, 0x82e6, 0x8304, 0x82e5, 0x8302, 0x8309, 0x82d2, 0x82d7,\n  0x82f1, 0x8301, 0x82dc, 0x82d4, 0x82d1, 0x82de, 0x82d3, 0x82df,\n  0x82ef, 0x8306, 0x8650, 0x8679, 0x867b, 0x867a, 0x884d, 0x886b,\n  0x8981, 0x89d4, 0x8a08, 0x8a02, 0x8a03, 0x8c9e, 0x8ca0, 0x8d74,\n  0x8d73, 0x8db4, 0x8ecd, 0x8ecc, 0x8ff0, 0x8fe6, 0x8fe2, 0x8fea,\n  0x8fe5, 0x8fed, 0x8feb, 0x8fe4, 0x8fe8, 0x90ca, 0x90ce, 0x90c1,\n  0x90c3, 0x914b, 0x914a, 0x91cd, 0x9582, 0x9650, 0x964b, 0x964c,\n  0x964d, 0x9762, 0x9769, 0x97cb, 0x97ed, 0x97f3, 0x9801, 0x98a8,\n  0x98db, 0x98df, 0x9996, 0x9999, 0x4e58, 0x4eb3,\n  /* 0x54 */\n  0x500c, 0x500d, 0x5023, 0x4fef, 0x5026, 0x5025, 0x4ff8, 0x5029,\n  0x5016, 0x5006, 0x503c, 0x501f, 0x501a, 0x5012, 0x5011, 0x4ffa,\n  0x5000, 0x5014, 0x5028, 0x4ff1, 0x5021, 0x500b, 0x5019, 0x5018,\n  0x4ff3, 0x4fee, 0x502d, 0x502a, 0x4ffe, 0x502b, 0x5009, 0x517c,\n  0x51a4, 0x51a5, 0x51a2, 0x51cd, 0x51cc, 0x51c6, 0x51cb, 0x5256,\n  0x525c, 0x5254, 0x525b, 0x525d, 0x532a, 0x537f, 0x539f, 0x539d,\n  0x53df, 0x54e8, 0x5510, 0x5501, 0x5537, 0x54fc, 0x54e5, 0x54f2,\n  0x5506, 0x54fa, 0x5514, 0x54e9, 0x54ed, 0x54e1, 0x5509, 0x54ee,\n  0x54ea, 0x54e6, 0x5527, 0x5507, 0x54fd, 0x550f, 0x5703, 0x5704,\n  0x57c2, 0x57d4, 0x57cb, 0x57c3, 0x5809, 0x590f, 0x5957, 0x5958,\n  0x595a, 0x5a11, 0x5a18, 0x5a1c, 0x5a1f, 0x5a1b, 0x5a13, 0x59ec,\n  0x5a20, 0x5a23, 0x5a29, 0x5a25, 0x5a0c, 0x5a09,\n  /* 0x55 */\n  0x5b6b, 0x5c58, 0x5bb0, 0x5bb3, 0x5bb6, 0x5bb4, 0x5bae, 0x5bb5,\n  0x5bb9, 0x5bb8, 0x5c04, 0x5c51, 0x5c55, 0x5c50, 0x5ced, 0x5cfd,\n  0x5cfb, 0x5cea, 0x5ce8, 0x5cf0, 0x5cf6, 0x5d01, 0x5cf4, 0x5dee,\n  0x5e2d, 0x5e2b, 0x5eab, 0x5ead, 0x5ea7, 0x5f31, 0x5f92, 0x5f91,\n  0x5f90, 0x6059, 0x6063, 0x6065, 0x6050, 0x6055, 0x606d, 0x6069,\n  0x606f, 0x6084, 0x609f, 0x609a, 0x608d, 0x6094, 0x608c, 0x6085,\n  0x6096, 0x6247, 0x62f3, 0x6308, 0x62ff, 0x634e, 0x633e, 0x632f,\n  0x6355, 0x6342, 0x6346, 0x634f, 0x6349, 0x633a, 0x6350, 0x633d,\n  0x632a, 0x632b, 0x6328, 0x634d, 0x634c, 0x6548, 0x6549, 0x6599,\n  0x65c1, 0x65c5, 0x6642, 0x6649, 0x664f, 0x6643, 0x6652, 0x664c,\n  0x6645, 0x6641, 0x66f8, 0x6714, 0x6715, 0x6717, 0x6821, 0x6838,\n  0x6848, 0x6846, 0x6853, 0x6839, 0x6842, 0x6854,\n  /* 0x56 */\n  0x6829, 0x68b3, 0x6817, 0x684c, 0x6851, 0x683d, 0x67f4, 0x6850,\n  0x6840, 0x683c, 0x6843, 0x682a, 0x6845, 0x6813, 0x6818, 0x6841,\n  0x6b8a, 0x6b89, 0x6bb7, 0x6c23, 0x6c27, 0x6c28, 0x6c26, 0x6c24,\n  0x6cf0, 0x6d6a, 0x6d95, 0x6d88, 0x6d87, 0x6d66, 0x6d78, 0x6d77,\n  0x6d59, 0x6d93, 0x6d6c, 0x6d89, 0x6d6e, 0x6d5a, 0x6d74, 0x6d69,\n  0x6d8c, 0x6d8a, 0x6d79, 0x6d85, 0x6d65, 0x6d94, 0x70ca, 0x70d8,\n  0x70e4, 0x70d9, 0x70c8, 0x70cf, 0x7239, 0x7279, 0x72fc, 0x72f9,\n  0x72fd, 0x72f8, 0x72f7, 0x7386, 0x73ed, 0x7409, 0x73ee, 0x73e0,\n  0x73ea, 0x73de, 0x7554, 0x755d, 0x755c, 0x755a, 0x7559, 0x75be,\n  0x75c5, 0x75c7, 0x75b2, 0x75b3, 0x75bd, 0x75bc, 0x75b9, 0x75c2,\n  0x75b8, 0x768b, 0x76b0, 0x76ca, 0x76cd, 0x76ce, 0x7729, 0x771f,\n  0x7720, 0x7728, 0x77e9, 0x7830, 0x7827, 0x7838,\n  /* 0x57 */\n  0x781d, 0x7834, 0x7837, 0x7825, 0x782d, 0x7820, 0x781f, 0x7832,\n  0x7955, 0x7950, 0x7960, 0x795f, 0x7956, 0x795e, 0x795d, 0x7957,\n  0x795a, 0x79e4, 0x79e3, 0x79e7, 0x79df, 0x79e6, 0x79e9, 0x79d8,\n  0x7a84, 0x7a88, 0x7ad9, 0x7b06, 0x7b11, 0x7c89, 0x7d21, 0x7d17,\n  0x7d0b, 0x7d0a, 0x7d20, 0x7d22, 0x7d14, 0x7d10, 0x7d15, 0x7d1a,\n  0x7d1c, 0x7d0d, 0x7d19, 0x7d1b, 0x7f3a, 0x7f5f, 0x7f94, 0x7fc5,\n  0x7fc1, 0x8006, 0x8004, 0x8018, 0x8015, 0x8019, 0x8017, 0x803d,\n  0x803f, 0x80f1, 0x8102, 0x80f0, 0x8105, 0x80ed, 0x80f4, 0x8106,\n  0x80f8, 0x80f3, 0x8108, 0x80fd, 0x810a, 0x80fc, 0x80ef, 0x81ed,\n  0x81ec, 0x8200, 0x8210, 0x822a, 0x822b, 0x8228, 0x822c, 0x82bb,\n  0x832b, 0x8352, 0x8354, 0x834a, 0x8338, 0x8350, 0x8349, 0x8335,\n  0x8334, 0x834f, 0x8332, 0x8339, 0x8336, 0x8317,\n  /* 0x58 */\n  0x8340, 0x8331, 0x8328, 0x8343, 0x8654, 0x868a, 0x86aa, 0x8693,\n  0x86a4, 0x86a9, 0x868c, 0x86a3, 0x869c, 0x8870, 0x8877, 0x8881,\n  0x8882, 0x887d, 0x8879, 0x8a18, 0x8a10, 0x8a0e, 0x8a0c, 0x8a15,\n  0x8a0a, 0x8a17, 0x8a13, 0x8a16, 0x8a0f, 0x8a11, 0x8c48, 0x8c7a,\n  0x8c79, 0x8ca1, 0x8ca2, 0x8d77, 0x8eac, 0x8ed2, 0x8ed4, 0x8ecf,\n  0x8fb1, 0x9001, 0x9006, 0x8ff7, 0x9000, 0x8ffa, 0x8ff4, 0x9003,\n  0x8ffd, 0x9005, 0x8ff8, 0x9095, 0x90e1, 0x90dd, 0x90e2, 0x9152,\n  0x914d, 0x914c, 0x91d8, 0x91dd, 0x91d7, 0x91dc, 0x91d9, 0x9583,\n  0x9662, 0x9663, 0x9661, 0x965b, 0x965d, 0x9664, 0x9658, 0x965e,\n  0x96bb, 0x98e2, 0x99ac, 0x9aa8, 0x9ad8, 0x9b25, 0x9b32, 0x9b3c,\n  0x4e7e, 0x507a, 0x507d, 0x505c, 0x5047, 0x5043, 0x504c, 0x505a,\n  0x5049, 0x5065, 0x5076, 0x504e, 0x5055, 0x5075,\n  /* 0x59 */\n  0x5074, 0x5077, 0x504f, 0x500f, 0x506f, 0x506d, 0x515c, 0x5195,\n  0x51f0, 0x526a, 0x526f, 0x52d2, 0x52d9, 0x52d8, 0x52d5, 0x5310,\n  0x530f, 0x5319, 0x533f, 0x5340, 0x533e, 0x53c3, 0x66fc, 0x5546,\n  0x556a, 0x5566, 0x5544, 0x555e, 0x5561, 0x5543, 0x554a, 0x5531,\n  0x5556, 0x554f, 0x5555, 0x552f, 0x5564, 0x5538, 0x552e, 0x555c,\n  0x552c, 0x5563, 0x5533, 0x5541, 0x5557, 0x5708, 0x570b, 0x5709,\n  0x57df, 0x5805, 0x580a, 0x5806, 0x57e0, 0x57e4, 0x57fa, 0x5802,\n  0x5835, 0x57f7, 0x57f9, 0x5920, 0x5962, 0x5a36, 0x5a41, 0x5a49,\n  0x5a66, 0x5a6a, 0x5a40, 0x5a3c, 0x5a62, 0x5a5a, 0x5a46, 0x5a4a,\n  0x5b70, 0x5bc7, 0x5bc5, 0x5bc4, 0x5bc2, 0x5bbf, 0x5bc6, 0x5c09,\n  0x5c08, 0x5c07, 0x5c60, 0x5c5c, 0x5c5d, 0x5d07, 0x5d06, 0x5d0e,\n  0x5d1b, 0x5d16, 0x5d22, 0x5d11, 0x5d29, 0x5d14,\n  /* 0x5a */\n  0x5d19, 0x5d24, 0x5d27, 0x5d17, 0x5de2, 0x5e38, 0x5e36, 0x5e33,\n  0x5e37, 0x5eb7, 0x5eb8, 0x5eb6, 0x5eb5, 0x5ebe, 0x5f35, 0x5f37,\n  0x5f57, 0x5f6c, 0x5f69, 0x5f6b, 0x5f97, 0x5f99, 0x5f9e, 0x5f98,\n  0x5fa1, 0x5fa0, 0x5f9c, 0x607f, 0x60a3, 0x6089, 0x60a0, 0x60a8,\n  0x60cb, 0x60b4, 0x60e6, 0x60bd, 0x60c5, 0x60bb, 0x60b5, 0x60dc,\n  0x60bc, 0x60d8, 0x60d5, 0x60c6, 0x60df, 0x60b8, 0x60da, 0x60c7,\n  0x621a, 0x621b, 0x6248, 0x63a0, 0x63a7, 0x6372, 0x6396, 0x63a2,\n  0x63a5, 0x6377, 0x6367, 0x6398, 0x63aa, 0x6371, 0x63a9, 0x6389,\n  0x6383, 0x639b, 0x636b, 0x63a8, 0x6384, 0x6388, 0x6399, 0x63a1,\n  0x63ac, 0x6392, 0x638f, 0x6380, 0x637b, 0x6369, 0x6368, 0x637a,\n  0x655d, 0x6556, 0x6551, 0x6559, 0x6557, 0x555f, 0x654f, 0x6558,\n  0x6555, 0x6554, 0x659c, 0x659b, 0x65ac, 0x65cf,\n  /* 0x5b */\n  0x65cb, 0x65cc, 0x65ce, 0x665d, 0x665a, 0x6664, 0x6668, 0x6666,\n  0x665e, 0x66f9, 0x52d7, 0x671b, 0x6881, 0x68af, 0x68a2, 0x6893,\n  0x68b5, 0x687f, 0x6876, 0x68b1, 0x68a7, 0x6897, 0x68b0, 0x6883,\n  0x68c4, 0x68ad, 0x6886, 0x6885, 0x6894, 0x689d, 0x68a8, 0x689f,\n  0x68a1, 0x6882, 0x6b32, 0x6bba, 0x6beb, 0x6bec, 0x6c2b, 0x6d8e,\n  0x6dbc, 0x6df3, 0x6dd9, 0x6db2, 0x6de1, 0x6dcc, 0x6de4, 0x6dfb,\n  0x6dfa, 0x6e05, 0x6dc7, 0x6dcb, 0x6daf, 0x6dd1, 0x6dae, 0x6dde,\n  0x6df9, 0x6db8, 0x6df7, 0x6df5, 0x6dc5, 0x6dd2, 0x6e1a, 0x6db5,\n  0x6dda, 0x6deb, 0x6dd8, 0x6dea, 0x6df1, 0x6dee, 0x6de8, 0x6dc6,\n  0x6dc4, 0x6daa, 0x6dec, 0x6dbf, 0x6de6, 0x70f9, 0x7109, 0x710a,\n  0x70fd, 0x70ef, 0x723d, 0x727d, 0x7281, 0x731c, 0x731b, 0x7316,\n  0x7313, 0x7319, 0x7387, 0x7405, 0x740a, 0x7403,\n  /* 0x5c */\n  0x7406, 0x73fe, 0x740d, 0x74e0, 0x74f6, 0x74f7, 0x751c, 0x7522,\n  0x7565, 0x7566, 0x7562, 0x7570, 0x758f, 0x75d4, 0x75d5, 0x75b5,\n  0x75ca, 0x75cd, 0x768e, 0x76d4, 0x76d2, 0x76db, 0x7737, 0x773e,\n  0x773c, 0x7736, 0x7738, 0x773a, 0x786b, 0x7843, 0x784e, 0x7965,\n  0x7968, 0x796d, 0x79fb, 0x7a92, 0x7a95, 0x7b20, 0x7b28, 0x7b1b,\n  0x7b2c, 0x7b26, 0x7b19, 0x7b1e, 0x7b2e, 0x7c92, 0x7c97, 0x7c95,\n  0x7d46, 0x7d43, 0x7d71, 0x7d2e, 0x7d39, 0x7d3c, 0x7d40, 0x7d30,\n  0x7d33, 0x7d44, 0x7d2f, 0x7d42, 0x7d32, 0x7d31, 0x7f3d, 0x7f9e,\n  0x7f9a, 0x7fcc, 0x7fce, 0x7fd2, 0x801c, 0x804a, 0x8046, 0x812f,\n  0x8116, 0x8123, 0x812b, 0x8129, 0x8130, 0x8124, 0x8202, 0x8235,\n  0x8237, 0x8236, 0x8239, 0x838e, 0x839e, 0x8398, 0x8378, 0x83a2,\n  0x8396, 0x83bd, 0x83ab, 0x8392, 0x838a, 0x8393,\n  /* 0x5d */\n  0x8389, 0x83a0, 0x8377, 0x837b, 0x837c, 0x8386, 0x83a7, 0x8655,\n  0x5f6a, 0x86c7, 0x86c0, 0x86b6, 0x86c4, 0x86b5, 0x86c6, 0x86cb,\n  0x86b1, 0x86af, 0x86c9, 0x8853, 0x889e, 0x8888, 0x88ab, 0x8892,\n  0x8896, 0x888d, 0x888b, 0x8993, 0x898f, 0x8a2a, 0x8a1d, 0x8a23,\n  0x8a25, 0x8a31, 0x8a2d, 0x8a1f, 0x8a1b, 0x8a22, 0x8c49, 0x8c5a,\n  0x8ca9, 0x8cac, 0x8cab, 0x8ca8, 0x8caa, 0x8ca7, 0x8d67, 0x8d66,\n  0x8dbe, 0x8dba, 0x8edb, 0x8edf, 0x9019, 0x900d, 0x901a, 0x9017,\n  0x9023, 0x901f, 0x901d, 0x9010, 0x9015, 0x901e, 0x9020, 0x900f,\n  0x9022, 0x9016, 0x901b, 0x9014, 0x90e8, 0x90ed, 0x90fd, 0x9157,\n  0x91ce, 0x91f5, 0x91e6, 0x91e3, 0x91e7, 0x91ed, 0x91e9, 0x9589,\n  0x966a, 0x9675, 0x9673, 0x9678, 0x9670, 0x9674, 0x9676, 0x9677,\n  0x966c, 0x96c0, 0x96ea, 0x96e9, 0x7ae0, 0x7adf,\n  /* 0x5e */\n  0x9802, 0x9803, 0x9b5a, 0x9ce5, 0x9e75, 0x9e7f, 0x9ea5, 0x9ebb,\n  0x50a2, 0x508d, 0x5085, 0x5099, 0x5091, 0x5080, 0x5096, 0x5098,\n  0x509a, 0x6700, 0x51f1, 0x5272, 0x5274, 0x5275, 0x5269, 0x52de,\n  0x52dd, 0x52db, 0x535a, 0x53a5, 0x557b, 0x5580, 0x55a7, 0x557c,\n  0x558a, 0x559d, 0x5598, 0x5582, 0x559c, 0x55aa, 0x5594, 0x5587,\n  0x558b, 0x5583, 0x55b3, 0x55ae, 0x559f, 0x553e, 0x55b2, 0x559a,\n  0x55bb, 0x55ac, 0x55b1, 0x557e, 0x5589, 0x55ab, 0x5599, 0x570d,\n  0x582f, 0x582a, 0x5834, 0x5824, 0x5830, 0x5831, 0x5821, 0x581d,\n  0x5820, 0x58f9, 0x58fa, 0x5960, 0x5a77, 0x5a9a, 0x5a7f, 0x5a92,\n  0x5a9b, 0x5aa7, 0x5b73, 0x5b71, 0x5bd2, 0x5bcc, 0x5bd3, 0x5bd0,\n  0x5c0a, 0x5c0b, 0x5c31, 0x5d4c, 0x5d50, 0x5d34, 0x5d47, 0x5dfd,\n  0x5e45, 0x5e3d, 0x5e40, 0x5e43, 0x5e7e, 0x5eca,\n  /* 0x5f */\n  0x5ec1, 0x5ec2, 0x5ec4, 0x5f3c, 0x5f6d, 0x5fa9, 0x5faa, 0x5fa8,\n  0x60d1, 0x60e1, 0x60b2, 0x60b6, 0x60e0, 0x611c, 0x6123, 0x60fa,\n  0x6115, 0x60f0, 0x60fb, 0x60f4, 0x6168, 0x60f1, 0x610e, 0x60f6,\n  0x6109, 0x6100, 0x6112, 0x621f, 0x6249, 0x63a3, 0x638c, 0x63cf,\n  0x63c0, 0x63e9, 0x63c9, 0x63c6, 0x63cd, 0x63d2, 0x63e3, 0x63d0,\n  0x63e1, 0x63d6, 0x63ed, 0x63ee, 0x6376, 0x63f4, 0x63ea, 0x63db,\n  0x6452, 0x63da, 0x63f9, 0x655e, 0x6566, 0x6562, 0x6563, 0x6591,\n  0x6590, 0x65af, 0x666e, 0x6670, 0x6674, 0x6676, 0x666f, 0x6691,\n  0x667a, 0x667e, 0x6677, 0x66fe, 0x66ff, 0x671f, 0x671d, 0x68fa,\n  0x68d5, 0x68e0, 0x68d8, 0x68d7, 0x6905, 0x68df, 0x68f5, 0x68ee,\n  0x68e7, 0x68f9, 0x68d2, 0x68f2, 0x68e3, 0x68cb, 0x68cd, 0x690d,\n  0x6912, 0x690e, 0x68c9, 0x68da, 0x696e, 0x68fb,\n  /* 0x60 */\n  0x6b3e, 0x6b3a, 0x6b3d, 0x6b98, 0x6b96, 0x6bbc, 0x6bef, 0x6c2e,\n  0x6c2f, 0x6c2c, 0x6e2f, 0x6e38, 0x6e54, 0x6e21, 0x6e32, 0x6e67,\n  0x6e4a, 0x6e20, 0x6e25, 0x6e23, 0x6e1b, 0x6e5b, 0x6e58, 0x6e24,\n  0x6e56, 0x6e6e, 0x6e2d, 0x6e26, 0x6e6f, 0x6e34, 0x6e4d, 0x6e3a,\n  0x6e2c, 0x6e43, 0x6e1d, 0x6e3e, 0x6ecb, 0x6e89, 0x6e19, 0x6e4e,\n  0x6e63, 0x6e44, 0x6e72, 0x6e69, 0x6e5f, 0x7119, 0x711a, 0x7126,\n  0x7130, 0x7121, 0x7136, 0x716e, 0x711c, 0x724c, 0x7284, 0x7280,\n  0x7336, 0x7325, 0x7334, 0x7329, 0x743a, 0x742a, 0x7433, 0x7422,\n  0x7425, 0x7435, 0x7436, 0x7434, 0x742f, 0x741b, 0x7426, 0x7428,\n  0x7525, 0x7526, 0x756b, 0x756a, 0x75e2, 0x75db, 0x75e3, 0x75d9,\n  0x75d8, 0x75de, 0x75e0, 0x767b, 0x767c, 0x7696, 0x7693, 0x76b4,\n  0x76dc, 0x774f, 0x77ed, 0x785d, 0x786c, 0x786f,\n  /* 0x61 */\n  0x7a0d, 0x7a08, 0x7a0b, 0x7a05, 0x7a00, 0x7a98, 0x7a97, 0x7a96,\n  0x7ae5, 0x7ae3, 0x7b49, 0x7b56, 0x7b46, 0x7b50, 0x7b52, 0x7b54,\n  0x7b4d, 0x7b4b, 0x7b4f, 0x7b51, 0x7c9f, 0x7ca5, 0x7d5e, 0x7d50,\n  0x7d68, 0x7d55, 0x7d2b, 0x7d6e, 0x7d72, 0x7d61, 0x7d66, 0x7d62,\n  0x7d70, 0x7d73, 0x5584, 0x7fd4, 0x7fd5, 0x800b, 0x8052, 0x8085,\n  0x8155, 0x8154, 0x814b, 0x8151, 0x814e, 0x8139, 0x8146, 0x813e,\n  0x814c, 0x8153, 0x8174, 0x8212, 0x821c, 0x83e9, 0x8403, 0x83f8,\n  0x840d, 0x83e0, 0x83c5, 0x840b, 0x83c1, 0x83ef, 0x83f1, 0x83f4,\n  0x8457, 0x840a, 0x83f0, 0x840c, 0x83cc, 0x83fd, 0x83f2, 0x83ca,\n  0x8438, 0x840e, 0x8404, 0x83dc, 0x8407, 0x83d4, 0x83df, 0x865b,\n  0x86df, 0x86d9, 0x86ed, 0x86d4, 0x86db, 0x86e4, 0x86d0, 0x86de,\n  0x8857, 0x88c1, 0x88c2, 0x88b1, 0x8983, 0x8996,\n  /* 0x62 */\n  0x8a3b, 0x8a60, 0x8a55, 0x8a5e, 0x8a3c, 0x8a41, 0x8a54, 0x8a5b,\n  0x8a50, 0x8a46, 0x8a34, 0x8a3a, 0x8a36, 0x8a56, 0x8c61, 0x8c82,\n  0x8caf, 0x8cbc, 0x8cb3, 0x8cbd, 0x8cc1, 0x8cbb, 0x8cc0, 0x8cb4,\n  0x8cb7, 0x8cb6, 0x8cbf, 0x8cb8, 0x8d8a, 0x8d85, 0x8d81, 0x8dce,\n  0x8ddd, 0x8dcb, 0x8dda, 0x8dd1, 0x8dcc, 0x8ddb, 0x8dc6, 0x8efb,\n  0x8ef8, 0x8efc, 0x8f9c, 0x902e, 0x9035, 0x9031, 0x9038, 0x9032,\n  0x9036, 0x9102, 0x90f5, 0x9109, 0x90fe, 0x9163, 0x9165, 0x91cf,\n  0x9214, 0x9215, 0x9223, 0x9209, 0x921e, 0x920d, 0x9210, 0x9207,\n  0x9211, 0x9594, 0x958f, 0x958b, 0x9591, 0x9593, 0x9592, 0x958e,\n  0x968a, 0x968e, 0x968b, 0x967d, 0x9685, 0x9686, 0x968d, 0x9672,\n  0x9684, 0x96c1, 0x96c5, 0x96c4, 0x96c6, 0x96c7, 0x96ef, 0x96f2,\n  0x97cc, 0x9805, 0x9806, 0x9808, 0x98e7, 0x98ea,\n  /* 0x63 */\n  0x98ef, 0x98e9, 0x98f2, 0x98ed, 0x99ae, 0x99ad, 0x9ec3, 0x9ecd,\n  0x9ed1, 0x4e82, 0x50ad, 0x50b5, 0x50b2, 0x50b3, 0x50c5, 0x50be,\n  0x50ac, 0x50b7, 0x50bb, 0x50af, 0x50c7, 0x527f, 0x5277, 0x527d,\n  0x52df, 0x52e6, 0x52e4, 0x52e2, 0x52e3, 0x532f, 0x55df, 0x55e8,\n  0x55d3, 0x55e6, 0x55ce, 0x55dc, 0x55c7, 0x55d1, 0x55e3, 0x55e4,\n  0x55ef, 0x55da, 0x55e1, 0x55c5, 0x55c6, 0x55e5, 0x55c9, 0x5712,\n  0x5713, 0x585e, 0x5851, 0x5858, 0x5857, 0x585a, 0x5854, 0x586b,\n  0x584c, 0x586d, 0x584a, 0x5862, 0x5852, 0x584b, 0x5967, 0x5ac1,\n  0x5ac9, 0x5acc, 0x5abe, 0x5abd, 0x5abc, 0x5ab3, 0x5ac2, 0x5ab2,\n  0x5d69, 0x5d6f, 0x5e4c, 0x5e79, 0x5ec9, 0x5ec8, 0x5f12, 0x5f59,\n  0x5fac, 0x5fae, 0x611a, 0x610f, 0x6148, 0x611f, 0x60f3, 0x611b,\n  0x60f9, 0x6101, 0x6108, 0x614e, 0x614c, 0x6144,\n  /* 0x64 */\n  0x614d, 0x613e, 0x6134, 0x6127, 0x610d, 0x6106, 0x6137, 0x6221,\n  0x6222, 0x6413, 0x643e, 0x641e, 0x642a, 0x642d, 0x643d, 0x642c,\n  0x640f, 0x641c, 0x6414, 0x640d, 0x6436, 0x6416, 0x6417, 0x6406,\n  0x656c, 0x659f, 0x65b0, 0x6697, 0x6689, 0x6687, 0x6688, 0x6696,\n  0x6684, 0x6698, 0x668d, 0x6703, 0x6994, 0x696d, 0x695a, 0x6977,\n  0x6960, 0x6954, 0x6975, 0x6930, 0x6982, 0x694a, 0x6968, 0x696b,\n  0x695e, 0x6953, 0x6979, 0x6986, 0x695d, 0x6963, 0x695b, 0x6b47,\n  0x6b72, 0x6bc0, 0x6bbf, 0x6bd3, 0x6bfd, 0x6ea2, 0x6eaf, 0x6ed3,\n  0x6eb6, 0x6ec2, 0x6e90, 0x6e9d, 0x6ec7, 0x6ec5, 0x6ea5, 0x6e98,\n  0x6ebc, 0x6eba, 0x6eab, 0x6ed1, 0x6e96, 0x6e9c, 0x6ec4, 0x6ed4,\n  0x6eaa, 0x6ea7, 0x6eb4, 0x714e, 0x7159, 0x7169, 0x7164, 0x7149,\n  0x7167, 0x715c, 0x716c, 0x7166, 0x714c, 0x7165,\n  /* 0x65 */\n  0x715e, 0x7146, 0x7168, 0x7156, 0x723a, 0x7252, 0x7337, 0x7345,\n  0x733f, 0x733e, 0x746f, 0x745a, 0x7455, 0x745f, 0x745e, 0x7441,\n  0x743f, 0x7459, 0x745b, 0x745c, 0x7576, 0x7578, 0x7600, 0x75f0,\n  0x7601, 0x75f2, 0x75f1, 0x75fa, 0x75ff, 0x75f4, 0x75f3, 0x76de,\n  0x76df, 0x775b, 0x776b, 0x7766, 0x775e, 0x7763, 0x7779, 0x776a,\n  0x776c, 0x775c, 0x7765, 0x7768, 0x7762, 0x77ee, 0x788e, 0x78b0,\n  0x7897, 0x7898, 0x788c, 0x7889, 0x787c, 0x7891, 0x7893, 0x787f,\n  0x797a, 0x797f, 0x7981, 0x842c, 0x79bd, 0x7a1c, 0x7a1a, 0x7a20,\n  0x7a14, 0x7a1f, 0x7a1e, 0x7a9f, 0x7aa0, 0x7b77, 0x7bc0, 0x7b60,\n  0x7b6e, 0x7b67, 0x7cb1, 0x7cb3, 0x7cb5, 0x7d93, 0x7d79, 0x7d91,\n  0x7d81, 0x7d8f, 0x7d5b, 0x7f6e, 0x7f69, 0x7f6a, 0x7f72, 0x7fa9,\n  0x7fa8, 0x7fa4, 0x8056, 0x8058, 0x8086, 0x8084,\n  /* 0x66 */\n  0x8171, 0x8170, 0x8178, 0x8165, 0x816e, 0x8173, 0x816b, 0x8179,\n  0x817a, 0x8166, 0x8205, 0x8247, 0x8482, 0x8477, 0x843d, 0x8431,\n  0x8475, 0x8466, 0x846b, 0x8449, 0x846c, 0x845b, 0x843c, 0x8435,\n  0x8461, 0x8463, 0x8469, 0x846d, 0x8446, 0x865e, 0x865c, 0x865f,\n  0x86f9, 0x8713, 0x8708, 0x8707, 0x8700, 0x86fe, 0x86fb, 0x8702,\n  0x8703, 0x8706, 0x870a, 0x8859, 0x88df, 0x88d4, 0x88d9, 0x88dc,\n  0x88d8, 0x88dd, 0x88e1, 0x88ca, 0x88d5, 0x88d2, 0x899c, 0x89e3,\n  0x8a6b, 0x8a72, 0x8a73, 0x8a66, 0x8a69, 0x8a70, 0x8a87, 0x8a7c,\n  0x8a63, 0x8aa0, 0x8a71, 0x8a85, 0x8a6d, 0x8a62, 0x8a6e, 0x8a6c,\n  0x8a79, 0x8a7b, 0x8a3e, 0x8a68, 0x8c62, 0x8c8a, 0x8c89, 0x8cca,\n  0x8cc7, 0x8cc8, 0x8cc4, 0x8cb2, 0x8cc3, 0x8cc2, 0x8cc5, 0x8de1,\n  0x8ddf, 0x8de8, 0x8def, 0x8df3, 0x8dfa, 0x8dea,\n  /* 0x67 */\n  0x8de4, 0x8de6, 0x8eb2, 0x8f03, 0x8f09, 0x8efe, 0x8f0a, 0x8f9f,\n  0x8fb2, 0x904b, 0x904a, 0x9053, 0x9042, 0x9054, 0x903c, 0x9055,\n  0x9050, 0x9047, 0x904f, 0x904e, 0x904d, 0x9051, 0x903e, 0x9041,\n  0x9112, 0x9117, 0x916c, 0x916a, 0x9169, 0x91c9, 0x9237, 0x9257,\n  0x9238, 0x923d, 0x9240, 0x923e, 0x925b, 0x924b, 0x9264, 0x9251,\n  0x9234, 0x9249, 0x924d, 0x9245, 0x9239, 0x923f, 0x925a, 0x9598,\n  0x9698, 0x9694, 0x9695, 0x96cd, 0x96cb, 0x96c9, 0x96ca, 0x96f7,\n  0x96fb, 0x96f9, 0x96f6, 0x9756, 0x9774, 0x9776, 0x9810, 0x9811,\n  0x9813, 0x980a, 0x9812, 0x980c, 0x98fc, 0x98f4, 0x98fd, 0x98fe,\n  0x99b3, 0x99b1, 0x99b4, 0x9ae1, 0x9ce9, 0x9e82, 0x9f0e, 0x9f13,\n  0x9f20, 0x50e7, 0x50ee, 0x50e5, 0x50d6, 0x50ed, 0x50da, 0x50d5,\n  0x50cf, 0x50d1, 0x50f1, 0x50ce, 0x50e9, 0x5162,\n  /* 0x68 */\n  0x51f3, 0x5283, 0x5282, 0x5331, 0x53ad, 0x55fe, 0x5600, 0x561b,\n  0x5617, 0x55fd, 0x5614, 0x5606, 0x5609, 0x560d, 0x560e, 0x55f7,\n  0x5616, 0x561f, 0x5608, 0x5610, 0x55f6, 0x5718, 0x5716, 0x5875,\n  0x587e, 0x5883, 0x5893, 0x588a, 0x5879, 0x5885, 0x587d, 0x58fd,\n  0x5925, 0x5922, 0x5924, 0x596a, 0x5969, 0x5ae1, 0x5ae6, 0x5ae9,\n  0x5ad7, 0x5ad6, 0x5ad8, 0x5ae3, 0x5b75, 0x5bde, 0x5be7, 0x5be1,\n  0x5be5, 0x5be6, 0x5be8, 0x5be2, 0x5be4, 0x5bdf, 0x5c0d, 0x5c62,\n  0x5d84, 0x5d87, 0x5e5b, 0x5e63, 0x5e55, 0x5e57, 0x5e54, 0x5ed3,\n  0x5ed6, 0x5f0a, 0x5f46, 0x5f70, 0x5fb9, 0x6147, 0x613f, 0x614b,\n  0x6177, 0x6162, 0x6163, 0x615f, 0x615a, 0x6158, 0x6175, 0x622a,\n  0x6487, 0x6458, 0x6454, 0x64a4, 0x6478, 0x645f, 0x647a, 0x6451,\n  0x6467, 0x6434, 0x646d, 0x647b, 0x6572, 0x65a1,\n  /* 0x69 */\n  0x65d7, 0x65d6, 0x66a2, 0x66a8, 0x669d, 0x699c, 0x69a8, 0x6995,\n  0x69c1, 0x69ae, 0x69d3, 0x69cb, 0x699b, 0x69b7, 0x69bb, 0x69ab,\n  0x69b4, 0x69d0, 0x69cd, 0x69ad, 0x69cc, 0x69a6, 0x69c3, 0x69a3,\n  0x6b49, 0x6b4c, 0x6c33, 0x6f33, 0x6f14, 0x6efe, 0x6f13, 0x6ef4,\n  0x6f29, 0x6f3e, 0x6f20, 0x6f2c, 0x6f0f, 0x6f02, 0x6f22, 0x6eff,\n  0x6eef, 0x6f06, 0x6f31, 0x6f38, 0x6f32, 0x6f23, 0x6f15, 0x6f2b,\n  0x6f2f, 0x6f88, 0x6f2a, 0x6eec, 0x6f01, 0x6ef2, 0x6ecc, 0x6ef7,\n  0x7194, 0x7199, 0x717d, 0x718a, 0x7184, 0x7192, 0x723e, 0x7292,\n  0x7296, 0x7344, 0x7350, 0x7464, 0x7463, 0x746a, 0x7470, 0x746d,\n  0x7504, 0x7591, 0x7627, 0x760d, 0x760b, 0x7609, 0x7613, 0x76e1,\n  0x76e3, 0x7784, 0x777d, 0x777f, 0x7761, 0x78c1, 0x789f, 0x78a7,\n  0x78b3, 0x78a9, 0x78a3, 0x798e, 0x798f, 0x798d,\n  /* 0x6a */\n  0x7a2e, 0x7a31, 0x7aaa, 0x7aa9, 0x7aed, 0x7aef, 0x7ba1, 0x7b95,\n  0x7b8b, 0x7b75, 0x7b97, 0x7b9d, 0x7b94, 0x7b8f, 0x7bb8, 0x7b87,\n  0x7b84, 0x7cb9, 0x7cbd, 0x7cbe, 0x7dbb, 0x7db0, 0x7d9c, 0x7dbd,\n  0x7dbe, 0x7da0, 0x7dca, 0x7db4, 0x7db2, 0x7db1, 0x7dba, 0x7da2,\n  0x7dbf, 0x7db5, 0x7db8, 0x7dad, 0x7dd2, 0x7dc7, 0x7dac, 0x7f70,\n  0x7fe0, 0x7fe1, 0x7fdf, 0x805e, 0x805a, 0x8087, 0x8150, 0x8180,\n  0x818f, 0x8188, 0x818a, 0x817f, 0x8182, 0x81e7, 0x81fa, 0x8207,\n  0x8214, 0x821e, 0x824b, 0x84c9, 0x84bf, 0x84c6, 0x84c4, 0x8499,\n  0x849e, 0x84b2, 0x849c, 0x84cb, 0x84b8, 0x84c0, 0x84d3, 0x8490,\n  0x84bc, 0x84d1, 0x84ca, 0x873f, 0x871c, 0x873b, 0x8722, 0x8725,\n  0x8734, 0x8718, 0x8755, 0x8737, 0x8729, 0x88f3, 0x8902, 0x88f4,\n  0x88f9, 0x88f8, 0x88fd, 0x88e8, 0x891a, 0x88ef,\n  /* 0x6b */\n  0x8aa6, 0x8a8c, 0x8a9e, 0x8aa3, 0x8a8d, 0x8aa1, 0x8a93, 0x8aa4,\n  0x8aaa, 0x8aa5, 0x8aa8, 0x8a98, 0x8a91, 0x8a9a, 0x8aa7, 0x8c6a,\n  0x8c8d, 0x8c8c, 0x8cd3, 0x8cd1, 0x8cd2, 0x8d6b, 0x8d99, 0x8d95,\n  0x8dfc, 0x8f14, 0x8f12, 0x8f15, 0x8f13, 0x8fa3, 0x9060, 0x9058,\n  0x905c, 0x9063, 0x9059, 0x905e, 0x9062, 0x905d, 0x905b, 0x9119,\n  0x9118, 0x911e, 0x9175, 0x9178, 0x9177, 0x9174, 0x9278, 0x92ac,\n  0x9280, 0x9285, 0x9298, 0x9296, 0x927b, 0x9293, 0x929c, 0x92a8,\n  0x927c, 0x9291, 0x95a1, 0x95a8, 0x95a9, 0x95a3, 0x95a5, 0x95a4,\n  0x9699, 0x969c, 0x969b, 0x96cc, 0x96d2, 0x9700, 0x977c, 0x9785,\n  0x97f6, 0x9817, 0x9818, 0x98af, 0x98b1, 0x9903, 0x9905, 0x990c,\n  0x9909, 0x99c1, 0x9aaf, 0x9ab0, 0x9ae6, 0x9b41, 0x9b42, 0x9cf4,\n  0x9cf6, 0x9cf3, 0x9ebc, 0x9f3b, 0x9f4a, 0x5104,\n  /* 0x6c */\n  0x5100, 0x50fb, 0x50f5, 0x50f9, 0x5102, 0x5108, 0x5109, 0x5105,\n  0x51dc, 0x5287, 0x5288, 0x5289, 0x528d, 0x528a, 0x52f0, 0x53b2,\n  0x562e, 0x563b, 0x5639, 0x5632, 0x563f, 0x5634, 0x5629, 0x5653,\n  0x564e, 0x5657, 0x5674, 0x5636, 0x562f, 0x5630, 0x5880, 0x589f,\n  0x589e, 0x58b3, 0x589c, 0x58ae, 0x58a9, 0x58a6, 0x596d, 0x5b09,\n  0x5afb, 0x5b0b, 0x5af5, 0x5b0c, 0x5b08, 0x5bee, 0x5bec, 0x5be9,\n  0x5beb, 0x5c64, 0x5c65, 0x5d9d, 0x5d94, 0x5e62, 0x5e5f, 0x5e61,\n  0x5ee2, 0x5eda, 0x5edf, 0x5edd, 0x5ee3, 0x5ee0, 0x5f48, 0x5f71,\n  0x5fb7, 0x5fb5, 0x6176, 0x6167, 0x616e, 0x615d, 0x6155, 0x6182,\n  0x617c, 0x6170, 0x616b, 0x617e, 0x61a7, 0x6190, 0x61ab, 0x618e,\n  0x61ac, 0x619a, 0x61a4, 0x6194, 0x61ae, 0x622e, 0x6469, 0x646f,\n  0x6479, 0x649e, 0x64b2, 0x6488, 0x6490, 0x64b0,\n  /* 0x6d */\n  0x64a5, 0x6493, 0x6495, 0x64a9, 0x6492, 0x64ae, 0x64ad, 0x64ab,\n  0x649a, 0x64ac, 0x6499, 0x64a2, 0x64b3, 0x6575, 0x6577, 0x6578,\n  0x66ae, 0x66ab, 0x66b4, 0x66b1, 0x6a23, 0x6a1f, 0x69e8, 0x6a01,\n  0x6a1e, 0x6a19, 0x69fd, 0x6a21, 0x6a13, 0x6a0a, 0x69f3, 0x6a02,\n  0x6a05, 0x69ed, 0x6a11, 0x6b50, 0x6b4e, 0x6ba4, 0x6bc5, 0x6bc6,\n  0x6f3f, 0x6f7c, 0x6f84, 0x6f51, 0x6f66, 0x6f54, 0x6f86, 0x6f6d,\n  0x6f5b, 0x6f78, 0x6f6e, 0x6f8e, 0x6f7a, 0x6f70, 0x6f64, 0x6f97,\n  0x6f58, 0x6ed5, 0x6f6f, 0x6f60, 0x6f5f, 0x719f, 0x71ac, 0x71b1,\n  0x71a8, 0x7256, 0x729b, 0x734e, 0x7357, 0x7469, 0x748b, 0x7483,\n  0x747e, 0x7480, 0x757f, 0x7620, 0x7629, 0x761f, 0x7624, 0x7626,\n  0x7621, 0x7622, 0x769a, 0x76ba, 0x76e4, 0x778e, 0x7787, 0x778c,\n  0x7791, 0x778b, 0x78cb, 0x78c5, 0x78ba, 0x78ca,\n  /* 0x6e */\n  0x78be, 0x78d5, 0x78bc, 0x78d0, 0x7a3f, 0x7a3c, 0x7a40, 0x7a3d,\n  0x7a37, 0x7a3b, 0x7aaf, 0x7aae, 0x7bad, 0x7bb1, 0x7bc4, 0x7bb4,\n  0x7bc6, 0x7bc7, 0x7bc1, 0x7ba0, 0x7bcc, 0x7cca, 0x7de0, 0x7df4,\n  0x7def, 0x7dfb, 0x7dd8, 0x7dec, 0x7ddd, 0x7de8, 0x7de3, 0x7dda,\n  0x7dde, 0x7de9, 0x7d9e, 0x7dd9, 0x7df2, 0x7df9, 0x7f75, 0x7f77,\n  0x7faf, 0x7fe9, 0x8026, 0x819b, 0x819c, 0x819d, 0x81a0, 0x819a,\n  0x8198, 0x8517, 0x853d, 0x851a, 0x84ee, 0x852c, 0x852d, 0x8513,\n  0x8511, 0x8523, 0x8521, 0x8514, 0x84ec, 0x8525, 0x84ff, 0x8506,\n  0x8782, 0x8774, 0x8776, 0x8760, 0x8766, 0x8778, 0x8768, 0x8759,\n  0x8757, 0x874c, 0x8753, 0x885b, 0x885d, 0x8910, 0x8907, 0x8912,\n  0x8913, 0x8915, 0x890a, 0x8abc, 0x8ad2, 0x8ac7, 0x8ac4, 0x8a95,\n  0x8acb, 0x8af8, 0x8ab2, 0x8ac9, 0x8ac2, 0x8abf,\n  /* 0x6f */\n  0x8ab0, 0x8ad6, 0x8acd, 0x8ab6, 0x8ab9, 0x8adb, 0x8c4c, 0x8c4e,\n  0x8c6c, 0x8ce0, 0x8cde, 0x8ce6, 0x8ce4, 0x8cec, 0x8ced, 0x8ce2,\n  0x8ce3, 0x8cdc, 0x8cea, 0x8ce1, 0x8d6d, 0x8d9f, 0x8da3, 0x8e2b,\n  0x8e10, 0x8e1d, 0x8e22, 0x8e0f, 0x8e29, 0x8e1f, 0x8e21, 0x8e1e,\n  0x8eba, 0x8f1d, 0x8f1b, 0x8f1f, 0x8f29, 0x8f26, 0x8f2a, 0x8f1c,\n  0x8f1e, 0x8f25, 0x9069, 0x906e, 0x9068, 0x906d, 0x9077, 0x9130,\n  0x912d, 0x9127, 0x9131, 0x9187, 0x9189, 0x918b, 0x9183, 0x92c5,\n  0x92bb, 0x92b7, 0x92ea, 0x92e4, 0x92c1, 0x92b3, 0x92bc, 0x92d2,\n  0x92c7, 0x92f0, 0x92b2, 0x95ad, 0x95b1, 0x9704, 0x9706, 0x9707,\n  0x9709, 0x9760, 0x978d, 0x978b, 0x978f, 0x9821, 0x982b, 0x981c,\n  0x98b3, 0x990a, 0x9913, 0x9912, 0x9918, 0x99dd, 0x99d0, 0x99df,\n  0x99db, 0x99d1, 0x99d5, 0x99d2, 0x99d9, 0x9ab7,\n  /* 0x70 */\n  0x9aee, 0x9aef, 0x9b27, 0x9b45, 0x9b44, 0x9b77, 0x9b6f, 0x9d06,\n  0x9d09, 0x9d03, 0x9ea9, 0x9ebe, 0x9ece, 0x58a8, 0x9f52, 0x5112,\n  0x5118, 0x5114, 0x5110, 0x5115, 0x5180, 0x51aa, 0x51dd, 0x5291,\n  0x5293, 0x52f3, 0x5659, 0x566b, 0x5679, 0x5669, 0x5664, 0x5678,\n  0x566a, 0x5668, 0x5665, 0x5671, 0x566f, 0x566c, 0x5662, 0x5676,\n  0x58c1, 0x58be, 0x58c7, 0x58c5, 0x596e, 0x5b1d, 0x5b34, 0x5b78,\n  0x5bf0, 0x5c0e, 0x5f4a, 0x61b2, 0x6191, 0x61a9, 0x618a, 0x61cd,\n  0x61b6, 0x61be, 0x61ca, 0x61c8, 0x6230, 0x64c5, 0x64c1, 0x64cb,\n  0x64bb, 0x64bc, 0x64da, 0x64c4, 0x64c7, 0x64c2, 0x64cd, 0x64bf,\n  0x64d2, 0x64d4, 0x64be, 0x6574, 0x66c6, 0x66c9, 0x66b9, 0x66c4,\n  0x66c7, 0x66b8, 0x6a3d, 0x6a38, 0x6a3a, 0x6a59, 0x6a6b, 0x6a58,\n  0x6a39, 0x6a44, 0x6a62, 0x6a61, 0x6a4b, 0x6a47,\n  /* 0x71 */\n  0x6a35, 0x6a5f, 0x6a48, 0x6b59, 0x6b77, 0x6c05, 0x6fc2, 0x6fb1,\n  0x6fa1, 0x6fc3, 0x6fa4, 0x6fc1, 0x6fa7, 0x6fb3, 0x6fc0, 0x6fb9,\n  0x6fb6, 0x6fa6, 0x6fa0, 0x6fb4, 0x71be, 0x71c9, 0x71d0, 0x71d2,\n  0x71c8, 0x71d5, 0x71b9, 0x71ce, 0x71d9, 0x71dc, 0x71c3, 0x71c4,\n  0x7368, 0x749c, 0x74a3, 0x7498, 0x749f, 0x749e, 0x74e2, 0x750c,\n  0x750d, 0x7634, 0x7638, 0x763a, 0x76e7, 0x76e5, 0x77a0, 0x779e,\n  0x779f, 0x77a5, 0x78e8, 0x78da, 0x78ec, 0x78e7, 0x79a6, 0x7a4d,\n  0x7a4e, 0x7a46, 0x7a4c, 0x7a4b, 0x7aba, 0x7bd9, 0x7c11, 0x7bc9,\n  0x7be4, 0x7bdb, 0x7be1, 0x7be9, 0x7be6, 0x7cd5, 0x7cd6, 0x7e0a,\n  0x7e11, 0x7e08, 0x7e1b, 0x7e23, 0x7e1e, 0x7e1d, 0x7e09, 0x7e10,\n  0x7f79, 0x7fb2, 0x7ff0, 0x7ff1, 0x7fee, 0x8028, 0x81b3, 0x81a9,\n  0x81a8, 0x81fb, 0x8208, 0x8258, 0x8259, 0x854a,\n  /* 0x72 */\n  0x8559, 0x8548, 0x8568, 0x8569, 0x8543, 0x8549, 0x856d, 0x856a,\n  0x855e, 0x8783, 0x879f, 0x879e, 0x87a2, 0x878d, 0x8861, 0x892a,\n  0x8932, 0x8925, 0x892b, 0x8921, 0x89aa, 0x89a6, 0x8ae6, 0x8afa,\n  0x8aeb, 0x8af1, 0x8b00, 0x8adc, 0x8ae7, 0x8aee, 0x8afe, 0x8b01,\n  0x8b02, 0x8af7, 0x8aed, 0x8af3, 0x8af6, 0x8afc, 0x8c6b, 0x8c6d,\n  0x8c93, 0x8cf4, 0x8e44, 0x8e31, 0x8e34, 0x8e42, 0x8e39, 0x8e35,\n  0x8f3b, 0x8f2f, 0x8f38, 0x8f33, 0x8fa8, 0x8fa6, 0x9075, 0x9074,\n  0x9078, 0x9072, 0x907c, 0x907a, 0x9134, 0x9192, 0x9320, 0x9336,\n  0x92f8, 0x9333, 0x932f, 0x9322, 0x92fc, 0x932b, 0x9304, 0x931a,\n  0x9310, 0x9326, 0x9321, 0x9315, 0x932e, 0x9319, 0x95bb, 0x96a7,\n  0x96a8, 0x96aa, 0x96d5, 0x970e, 0x9711, 0x9716, 0x970d, 0x9713,\n  0x970f, 0x975b, 0x975c, 0x9766, 0x9798, 0x9830,\n  /* 0x73 */\n  0x9838, 0x983b, 0x9837, 0x982d, 0x9839, 0x9824, 0x9910, 0x9928,\n  0x991e, 0x991b, 0x9921, 0x991a, 0x99ed, 0x99e2, 0x99f1, 0x9ab8,\n  0x9abc, 0x9afb, 0x9aed, 0x9b28, 0x9b91, 0x9d15, 0x9d23, 0x9d26,\n  0x9d28, 0x9d12, 0x9d1b, 0x9ed8, 0x9ed4, 0x9f8d, 0x9f9c, 0x512a,\n  0x511f, 0x5121, 0x5132, 0x52f5, 0x568e, 0x5680, 0x5690, 0x5685,\n  0x5687, 0x568f, 0x58d5, 0x58d3, 0x58d1, 0x58ce, 0x5b30, 0x5b2a,\n  0x5b24, 0x5b7a, 0x5c37, 0x5c68, 0x5dbc, 0x5dba, 0x5dbd, 0x5db8,\n  0x5e6b, 0x5f4c, 0x5fbd, 0x61c9, 0x61c2, 0x61c7, 0x61e6, 0x61cb,\n  0x6232, 0x6234, 0x64ce, 0x64ca, 0x64d8, 0x64e0, 0x64f0, 0x64e6,\n  0x64ec, 0x64f1, 0x64e2, 0x64ed, 0x6582, 0x6583, 0x66d9, 0x66d6,\n  0x6a80, 0x6a94, 0x6a84, 0x6aa2, 0x6a9c, 0x6adb, 0x6aa3, 0x6a7e,\n  0x6a97, 0x6a90, 0x6aa0, 0x6b5c, 0x6bae, 0x6bda,\n  /* 0x74 */\n  0x6c08, 0x6fd8, 0x6ff1, 0x6fdf, 0x6fe0, 0x6fdb, 0x6fe4, 0x6feb,\n  0x6fef, 0x6f80, 0x6fec, 0x6fe1, 0x6fe9, 0x6fd5, 0x6fee, 0x6ff0,\n  0x71e7, 0x71df, 0x71ee, 0x71e6, 0x71e5, 0x71ed, 0x71ec, 0x71f4,\n  0x71e0, 0x7235, 0x7246, 0x7370, 0x7372, 0x74a9, 0x74b0, 0x74a6,\n  0x74a8, 0x7646, 0x7642, 0x764c, 0x76ea, 0x77b3, 0x77aa, 0x77b0,\n  0x77ac, 0x77a7, 0x77ad, 0x77ef, 0x78f7, 0x78fa, 0x78f4, 0x78ef,\n  0x7901, 0x79a7, 0x79aa, 0x7a57, 0x7abf, 0x7c07, 0x7c0d, 0x7bfe,\n  0x7bf7, 0x7c0c, 0x7be0, 0x7ce0, 0x7cdc, 0x7cde, 0x7ce2, 0x7cdf,\n  0x7cd9, 0x7cdd, 0x7e2e, 0x7e3e, 0x7e46, 0x7e37, 0x7e32, 0x7e43,\n  0x7e2b, 0x7e3d, 0x7e31, 0x7e45, 0x7e41, 0x7e34, 0x7e39, 0x7e48,\n  0x7e35, 0x7e3f, 0x7e2f, 0x7f44, 0x7ff3, 0x7ffc, 0x8071, 0x8072,\n  0x8070, 0x806f, 0x8073, 0x81c6, 0x81c3, 0x81ba,\n  /* 0x75 */\n  0x81c2, 0x81c0, 0x81bf, 0x81bd, 0x81c9, 0x81be, 0x81e8, 0x8209,\n  0x8271, 0x85aa, 0x8584, 0x857e, 0x859c, 0x8591, 0x8594, 0x85af,\n  0x859b, 0x8587, 0x85a8, 0x858a, 0x85a6, 0x8667, 0x87c0, 0x87d1,\n  0x87b3, 0x87d2, 0x87c6, 0x87ab, 0x87bb, 0x87ba, 0x87c8, 0x87cb,\n  0x893b, 0x8936, 0x8944, 0x8938, 0x893d, 0x89ac, 0x8b0e, 0x8b17,\n  0x8b19, 0x8b1b, 0x8b0a, 0x8b20, 0x8b1d, 0x8b04, 0x8b10, 0x8c41,\n  0x8c3f, 0x8c73, 0x8cfa, 0x8cfd, 0x8cfc, 0x8cf8, 0x8cfb, 0x8da8,\n  0x8e49, 0x8e4b, 0x8e48, 0x8e4a, 0x8f44, 0x8f3e, 0x8f42, 0x8f45,\n  0x8f3f, 0x907f, 0x907d, 0x9084, 0x9081, 0x9082, 0x9080, 0x9139,\n  0x91a3, 0x919e, 0x919c, 0x934d, 0x9382, 0x9328, 0x9375, 0x934a,\n  0x9365, 0x934b, 0x9318, 0x937e, 0x936c, 0x935b, 0x9370, 0x935a,\n  0x9354, 0x95ca, 0x95cb, 0x95cc, 0x95c8, 0x95c6,\n  /* 0x76 */\n  0x96b1, 0x96b8, 0x96d6, 0x971c, 0x971e, 0x97a0, 0x97d3, 0x9846,\n  0x98b6, 0x9935, 0x9a01, 0x99ff, 0x9bae, 0x9bab, 0x9baa, 0x9bad,\n  0x9d3b, 0x9d3f, 0x9e8b, 0x9ecf, 0x9ede, 0x9edc, 0x9edd, 0x9edb,\n  0x9f3e, 0x9f4b, 0x53e2, 0x5695, 0x56ae, 0x58d9, 0x58d8, 0x5b38,\n  0x5f5e, 0x61e3, 0x6233, 0x64f4, 0x64f2, 0x64fe, 0x6506, 0x64fa,\n  0x64fb, 0x64f7, 0x65b7, 0x66dc, 0x6726, 0x6ab3, 0x6aac, 0x6ac3,\n  0x6abb, 0x6ab8, 0x6ac2, 0x6aae, 0x6aaf, 0x6b5f, 0x6b78, 0x6baf,\n  0x7009, 0x700b, 0x6ffe, 0x7006, 0x6ffa, 0x7011, 0x700f, 0x71fb,\n  0x71fc, 0x71fe, 0x71f8, 0x7377, 0x7375, 0x74a7, 0x74bf, 0x7515,\n  0x7656, 0x7658, 0x7652, 0x77bd, 0x77bf, 0x77bb, 0x77bc, 0x790e,\n  0x79ae, 0x7a61, 0x7a62, 0x7a60, 0x7ac4, 0x7ac5, 0x7c2b, 0x7c27,\n  0x7c2a, 0x7c1e, 0x7c23, 0x7c21, 0x7ce7, 0x7e54,\n  /* 0x77 */\n  0x7e55, 0x7e5e, 0x7e5a, 0x7e61, 0x7e52, 0x7e59, 0x7f48, 0x7ff9,\n  0x7ffb, 0x8077, 0x8076, 0x81cd, 0x81cf, 0x820a, 0x85cf, 0x85a9,\n  0x85cd, 0x85d0, 0x85c9, 0x85b0, 0x85ba, 0x85b9, 0x87ef, 0x87ec,\n  0x87f2, 0x87e0, 0x8986, 0x89b2, 0x89f4, 0x8b28, 0x8b39, 0x8b2c,\n  0x8b2b, 0x8c50, 0x8d05, 0x8e59, 0x8e63, 0x8e66, 0x8e64, 0x8e5f,\n  0x8e55, 0x8ec0, 0x8f49, 0x8f4d, 0x9087, 0x9083, 0x9088, 0x91ab,\n  0x91ac, 0x91d0, 0x9394, 0x938a, 0x9396, 0x93a2, 0x93b3, 0x93ae,\n  0x93ac, 0x93b0, 0x9398, 0x939a, 0x9397, 0x95d4, 0x95d6, 0x95d0,\n  0x95d5, 0x96e2, 0x96dc, 0x96d9, 0x96db, 0x96de, 0x9724, 0x97a3,\n  0x97a6, 0x97ad, 0x97f9, 0x984d, 0x984f, 0x984c, 0x984e, 0x9853,\n  0x98ba, 0x993e, 0x993f, 0x993d, 0x992e, 0x99a5, 0x9a0e, 0x9ac1,\n  0x9b03, 0x9b06, 0x9b4f, 0x9b4e, 0x9b4d, 0x9bca,\n  /* 0x78 */\n  0x9bc9, 0x9bfd, 0x9bc8, 0x9bc0, 0x9d51, 0x9d5d, 0x9d60, 0x9ee0,\n  0x9f15, 0x9f2c, 0x5133, 0x56a5, 0x56a8, 0x58de, 0x58df, 0x58e2,\n  0x5bf5, 0x9f90, 0x5eec, 0x61f2, 0x61f7, 0x61f6, 0x61f5, 0x6500,\n  0x650f, 0x66e0, 0x66dd, 0x6ae5, 0x6add, 0x6ada, 0x6ad3, 0x701b,\n  0x701f, 0x7028, 0x701a, 0x701d, 0x7015, 0x7018, 0x7206, 0x720d,\n  0x7258, 0x72a2, 0x7378, 0x737a, 0x74bd, 0x74ca, 0x74e3, 0x7587,\n  0x7586, 0x765f, 0x7661, 0x77c7, 0x7919, 0x79b1, 0x7a6b, 0x7a69,\n  0x7c3e, 0x7c3f, 0x7c38, 0x7c3d, 0x7c37, 0x7c40, 0x7e6b, 0x7e6d,\n  0x7e79, 0x7e69, 0x7e6a, 0x7e73, 0x7f85, 0x7fb6, 0x7fb9, 0x7fb8,\n  0x81d8, 0x85e9, 0x85dd, 0x85ea, 0x85d5, 0x85e4, 0x85e5, 0x85f7,\n  0x87fb, 0x8805, 0x880d, 0x87f9, 0x87fe, 0x8960, 0x895f, 0x8956,\n  0x895e, 0x8b41, 0x8b5c, 0x8b58, 0x8b49, 0x8b5a,\n  /* 0x79 */\n  0x8b4e, 0x8b4f, 0x8b46, 0x8b59, 0x8d08, 0x8d0a, 0x8e7c, 0x8e72,\n  0x8e87, 0x8e76, 0x8e6c, 0x8e7a, 0x8e74, 0x8f54, 0x8f4e, 0x8fad,\n  0x908a, 0x908b, 0x91b1, 0x91ae, 0x93e1, 0x93d1, 0x93df, 0x93c3,\n  0x93c8, 0x93dc, 0x93dd, 0x93d6, 0x93e2, 0x93cd, 0x93d8, 0x93e4,\n  0x93d7, 0x93e8, 0x95dc, 0x96b4, 0x96e3, 0x972a, 0x9727, 0x9761,\n  0x97dc, 0x97fb, 0x985e, 0x9858, 0x985b, 0x98bc, 0x9945, 0x9949,\n  0x9a16, 0x9a19, 0x9b0d, 0x9be8, 0x9be7, 0x9bd6, 0x9bdb, 0x9d89,\n  0x9d61, 0x9d72, 0x9d6a, 0x9d6c, 0x9e92, 0x9e97, 0x9e93, 0x9eb4,\n  0x52f8, 0x56b7, 0x56b6, 0x56b4, 0x56bc, 0x58e4, 0x5b40, 0x5b43,\n  0x5b7d, 0x5bf6, 0x5dc9, 0x61f8, 0x61fa, 0x6518, 0x6514, 0x6519,\n  0x66e6, 0x6727, 0x6aec, 0x703e, 0x7030, 0x7032, 0x7210, 0x737b,\n  0x74cf, 0x7662, 0x7665, 0x7926, 0x792a, 0x792c,\n  /* 0x7a */\n  0x792b, 0x7ac7, 0x7af6, 0x7c4c, 0x7c43, 0x7c4d, 0x7cef, 0x7cf0,\n  0x8fae, 0x7e7d, 0x7e7c, 0x7e82, 0x7f4c, 0x8000, 0x81da, 0x8266,\n  0x85fb, 0x85f9, 0x8611, 0x85fa, 0x8606, 0x860b, 0x8607, 0x860a,\n  0x8814, 0x8815, 0x8964, 0x89ba, 0x89f8, 0x8b70, 0x8b6c, 0x8b66,\n  0x8b6f, 0x8b5f, 0x8b6b, 0x8d0f, 0x8d0d, 0x8e89, 0x8e81, 0x8e85,\n  0x8e82, 0x91b4, 0x91cb, 0x9418, 0x9403, 0x93fd, 0x95e1, 0x9730,\n  0x98c4, 0x9952, 0x9951, 0x99a8, 0x9a2b, 0x9a30, 0x9a37, 0x9a35,\n  0x9c13, 0x9c0d, 0x9e79, 0x9eb5, 0x9ee8, 0x9f2f, 0x9f5f, 0x9f63,\n  0x9f61, 0x5137, 0x5138, 0x56c1, 0x56c0, 0x56c2, 0x5914, 0x5c6c,\n  0x5dcd, 0x61fc, 0x61fe, 0x651d, 0x651c, 0x6595, 0x66e9, 0x6afb,\n  0x6b04, 0x6afa, 0x6bb2, 0x704c, 0x721b, 0x72a7, 0x74d6, 0x74d4,\n  0x7669, 0x77d3, 0x7c50, 0x7e8f, 0x7e8c, 0x7fbc,\n  /* 0x7b */\n  0x8617, 0x862d, 0x861a, 0x8823, 0x8822, 0x8821, 0x881f, 0x896a,\n  0x896c, 0x89bd, 0x8b74, 0x8b77, 0x8b7d, 0x8d13, 0x8e8a, 0x8e8d,\n  0x8e8b, 0x8f5f, 0x8faf, 0x91ba, 0x942e, 0x9433, 0x9435, 0x943a,\n  0x9438, 0x9432, 0x942b, 0x95e2, 0x9738, 0x9739, 0x9732, 0x97ff,\n  0x9867, 0x9865, 0x9957, 0x9a45, 0x9a43, 0x9a40, 0x9a3e, 0x9acf,\n  0x9b54, 0x9b51, 0x9c2d, 0x9c25, 0x9daf, 0x9db4, 0x9dc2, 0x9db8,\n  0x9e9d, 0x9eef, 0x9f19, 0x9f5c, 0x9f66, 0x9f67, 0x513c, 0x513b,\n  0x56c8, 0x56ca, 0x56c9, 0x5b7f, 0x5dd4, 0x5dd2, 0x5f4e, 0x61ff,\n  0x6524, 0x6b0a, 0x6b61, 0x7051, 0x7058, 0x7380, 0x74e4, 0x758a,\n  0x766e, 0x766c, 0x79b3, 0x7c60, 0x7c5f, 0x807e, 0x807d, 0x81df,\n  0x8972, 0x896f, 0x89fc, 0x8b80, 0x8d16, 0x8d17, 0x8e91, 0x8e93,\n  0x8f61, 0x9148, 0x9444, 0x9451, 0x9452, 0x973d,\n  /* 0x7c */\n  0x973e, 0x97c3, 0x97c1, 0x986b, 0x9955, 0x9a55, 0x9a4d, 0x9ad2,\n  0x9b1a, 0x9c49, 0x9c31, 0x9c3e, 0x9c3b, 0x9dd3, 0x9dd7, 0x9f34,\n  0x9f6c, 0x9f6a, 0x9f94, 0x56cc, 0x5dd6, 0x6200, 0x6523, 0x652b,\n  0x652a, 0x66ec, 0x6b10, 0x74da, 0x7aca, 0x7c64, 0x7c63, 0x7c65,\n  0x7e93, 0x7e96, 0x7e94, 0x81e2, 0x8638, 0x863f, 0x8831, 0x8b8a,\n  0x9090, 0x908f, 0x9463, 0x9460, 0x9464, 0x9768, 0x986f, 0x995c,\n  0x9a5a, 0x9a5b, 0x9a57, 0x9ad3, 0x9ad4, 0x9ad1, 0x9c54, 0x9c57,\n  0x9c56, 0x9de5, 0x9e9f, 0x9ef4, 0x56d1, 0x58e9, 0x652c, 0x705e,\n  0x7671, 0x7672, 0x77d7, 0x7f50, 0x7f88, 0x8836, 0x8839, 0x8862,\n  0x8b93, 0x8b92, 0x8b96, 0x8277, 0x8d1b, 0x91c0, 0x946a, 0x9742,\n  0x9748, 0x9744, 0x97c6, 0x9870, 0x9a5f, 0x9b22, 0x9b58, 0x9c5f,\n  0x9df9, 0x9dfa, 0x9e7c, 0x9e7d, 0x9f07, 0x9f77,\n  /* 0x7d */\n  0x9f72, 0x5ef3, 0x6b16, 0x7063, 0x7c6c, 0x7c6e, 0x883b, 0x89c0,\n  0x8ea1, 0x91c1, 0x9472, 0x9470, 0x9871, 0x995e, 0x9ad6, 0x9b23,\n  0x9ecc, 0x7064, 0x77da, 0x8b9a, 0x9477, 0x97c9, 0x9a62, 0x9a65,\n  0x7e9c, 0x8b9c, 0x8eaa, 0x91c5, 0x947d, 0x947e, 0x947c, 0x9c77,\n  0x9c78, 0x9ef7, 0x8c54, 0x947f, 0x9e1a, 0x7228, 0x9a6a, 0x9b31,\n  0x9e1b, 0x9e1e, 0x7c72,\n};\n\nstatic int\ncns11643_1_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x21 && c1 <= 0x27) || (c1 == 0x42) || (c1 >= 0x44 && c1 <= 0x7d)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        unsigned short wc = 0xfffd;\n        if (i < 3102) {\n          if (i < 500)\n            wc = cns11643_1_2uni_page21[i];\n          else if (i == 571)\n            wc = 0x4ea0;\n          else if (i == 578)\n            wc = 0x51ab;\n          else if (i == 583)\n            wc = 0x52f9;\n        } else if (i < 3290) {\n          if (i < 3136)\n            wc = cns11643_1_2uni_page42[i-3102];\n        } else {\n          if (i < 8691)\n            wc = cns11643_1_2uni_page44[i-3290];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643_15.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992 plane 15\n */\n\nstatic const unsigned short cns11643_15_2uni_page21[7169] = {\n  /* 0x21 */\n  0x5302, 0x538c, 0x53d4, 0x54a5, 0x5392, 0x5393, 0x53d8, 0x53d9,\n  0x54a7, 0x592b, 0x592c, 0x592d, 0x5930, 0x592e, 0x59ab, 0x1a01,\n  0x5c2d, 0x5c6d, 0xfa34, 0x5d0f, 0x52fd, 0x5e9d, 0x64a2, 0x68d4,\n  0x6e56, 0x6ec3, 0x7314, 0x52fd, 0x9a1a, 0x530f, 0x5310, 0x539a,\n  0x539b, 0x52fd, 0x54ac, 0x0036, 0x5397, 0x5846, 0x0e4f, 0x5876,\n  0x5877, 0x58ae, 0x593a, 0x597d, 0x6ec5, 0x5ea8, 0x52fd, 0x1afa,\n  0x6541, 0x6542, 0x68d8, 0x68d9, 0x69aa, 0x69ab, 0x6c42, 0x6c41,\n  0x5099, 0x6ec6, 0x52fd, 0x7035, 0x7036, 0x7037, 0xfa83, 0xb64d,\n  0x52fd, 0x74b5, 0x7617, 0x7782, 0x86b6, 0x2d49, 0x8f72, 0x985c,\n  0x98a8, 0x45b7, 0x68e3, 0x0006, 0x52fd, 0x53e6, 0x5444, 0x5445,\n  0x1729, 0x003e, 0x54c4, 0x54c5, 0x54c6, 0x54c7, 0x54c8, 0x54c9,\n  0x54ca, 0x54d4, 0x587d, 0xb572, 0x58b2, 0x58b4,\n  /* 0x22 */\n  0x5982, 0x59c7, 0x59c8, 0x52fd, 0x5b3c, 0x5b3d, 0x5b3e, 0x5b3f,\n  0xfa24, 0x5bd3, 0x5447, 0x1a4e, 0x5d3d, 0x5de2, 0x5eb8, 0x5eb9,\n  0x5ec2, 0x5eba, 0x5ec6, 0x5ebb, 0x64ad, 0x654c, 0x654d, 0x52fd,\n  0x69b2, 0x69b3, 0x69b4, 0x69b5, 0x6cc3, 0x6cc4, 0x6cc5, 0x6cc6,\n  0x6cc7, 0x52fd, 0x6ece, 0x6f30, 0x7047, 0x7048, 0x2281, 0x735c,\n  0x52fd, 0x735f, 0x7618, 0x7619, 0x767e, 0x2410, 0x78b0, 0x7d75,\n  0x2568, 0x7d76, 0x8341, 0x8442, 0x52fd, 0x86bd, 0x2842, 0x2840,\n  0x18ea, 0x8e1e, 0x8e1f, 0x8f87, 0x2d62, 0x8f78, 0x9488, 0x9489,\n  0x948a, 0x9917, 0x9915, 0x52fd, 0x52fd, 0x3291, 0xa3e5, 0xa909,\n  0xaa3b, 0xaa4f, 0x52fd, 0xb92e, 0xb92f, 0xbdff, 0xbdfd, 0xbdfe,\n  0x45bb, 0x45bc, 0x52fd, 0x5323, 0x53ea, 0x542a, 0x5449, 0x544a,\n  0x544b, 0x54df, 0x54e0, 0x54e1, 0x54e2, 0x58c1,\n  /* 0x23 */\n  0x54e3, 0x54e4, 0x54e5, 0x58c0, 0x54e6, 0x54f7, 0x52fd, 0x54e7,\n  0x54e8, 0x54e9, 0x54ea, 0x54eb, 0x580e, 0x5880, 0x5881, 0x58ba,\n  0x58bb, 0x58bc, 0x58bd, 0x593f, 0x5940, 0x5988, 0xfa1f, 0x5b46,\n  0x52fd, 0x5b47, 0x5b48, 0x5c36, 0x5c72, 0x5c96, 0x5d47, 0x5de7,\n  0x5e34, 0x5e35, 0x5e36, 0x5e37, 0x5ee3, 0x5ee4, 0x5ee5, 0x5eeb,\n  0x0175, 0x5ee6, 0x5ee7, 0x5ee8, 0x52fd, 0x52fd, 0x64b9, 0x1de8,\n  0x64ba, 0x1e5b, 0x6563, 0x6564, 0x52fd, 0x6565, 0x52fd, 0x6566,\n  0x657c, 0x6567, 0xfa5a, 0x6859, 0x68e9, 0x68ea, 0x68eb, 0x68ec,\n  0x68ed, 0x68ee, 0x68ef, 0x69bf, 0x69cb, 0x69c3, 0x69d5, 0x69c4,\n  0x69c5, 0x69d3, 0x69c6, 0x69c7, 0x69c8, 0x69c9, 0x69ca, 0x6c4a,\n  0x52fd, 0x6cd1, 0x6e61, 0x6f37, 0x52fd, 0x7064, 0x7066, 0x2299,\n  0x7067, 0x7068, 0x7069, 0x2297, 0x7073, 0x706a,\n  /* 0x24 */\n  0x706b, 0x2862, 0x52fd, 0x7372, 0x043c, 0x74b9, 0x761c, 0x7636,\n  0x76bc, 0x76be, 0x76bf, 0x76c0, 0x7787, 0x78dc, 0x78dd, 0x78f5,\n  0x78de, 0x78df, 0xfa9e, 0x78e0, 0x78e1, 0x78e2, 0x7d2c, 0x7d2d,\n  0x25a4, 0x7da9, 0x7d9c, 0x7d9d, 0x7d9e, 0x7d9f, 0x7da0, 0x7da1,\n  0x7da2, 0x52fd, 0x7da3, 0x7da4, 0x7da7, 0x8342, 0x8393, 0x8451,\n  0x52fd, 0x8452, 0x8444, 0x8453, 0x8622, 0x86c6, 0x86c7, 0x86c9,\n  0xfadd, 0x86ca, 0x2866, 0x86c8, 0x8e24, 0x8e25, 0x8e26, 0x52fd,\n  0x8e27, 0x8e28, 0x52fd, 0x8f58, 0xfafb, 0x8fa7, 0x8f88, 0x8f89,\n  0x8fa5, 0x8fa8, 0x8fa9, 0x8faa, 0x8fab, 0x8fac, 0x8fad, 0x2da3,\n  0x8f79, 0x52fd, 0x9494, 0x9495, 0x9496, 0x09a5, 0x52fd, 0x9497,\n  0x307f, 0x9498, 0x984e, 0x984f, 0x9919, 0x52fd, 0x9a41, 0xfb2a,\n  0x9bf7, 0x9f04, 0x9f19, 0x9f17, 0xa340, 0xa3ec,\n  /* 0x25 */\n  0xa71b, 0xa71c, 0x36f6, 0xa90e, 0xaa52, 0xadd8, 0xb126, 0xb574,\n  0x52fd, 0xb575, 0xbcc6, 0xbe0b, 0xbe0c, 0xbe0d, 0xbe0e, 0xbe0f,\n  0xbe10, 0x45c8, 0xd759, 0xd75a, 0xd983, 0xd984, 0xd985, 0x52fd,\n  0x4af5, 0xe120, 0xe121, 0xe122, 0xe123, 0xe124, 0xe129, 0x53f4,\n  0x52fd, 0x688f, 0x5451, 0x17ab, 0x5517, 0x5518, 0x555b, 0x5519,\n  0x551a, 0x0053, 0x551b, 0x551c, 0x551d, 0x551e, 0x551f, 0x5520,\n  0x5521, 0x578b, 0x5788, 0x222d, 0x5885, 0xb587, 0x58c7, 0x594c,\n  0x594d, 0x59fc, 0x59fd, 0x59fe, 0x59ff, 0x52fd, 0x52fd, 0x5b56,\n  0x5b57, 0x5b58, 0x5b59, 0x5bdc, 0x5bdd, 0x5c73, 0x5c9d, 0x5ca1,\n  0x5c9e, 0x5c9f, 0x5ca0, 0x5ce6, 0x5d51, 0x5d52, 0x5e3d, 0x5f22,\n  0x1b9c, 0x5f23, 0x5f24, 0x5f25, 0x5f26, 0x5f27, 0x5f28, 0x5f29,\n  0x5f2a, 0x5f2b, 0x52fd, 0x5f40, 0x5f2c, 0x5f2d,\n  /* 0x26 */\n  0x5f2e, 0x5f2f, 0x5f30, 0x64d0, 0x65a8, 0x6594, 0x6595, 0x6596,\n  0x6597, 0x6598, 0x659c, 0x659b, 0x52fd, 0x65a1, 0x65a0, 0x6599,\n  0x659a, 0x65a7, 0x1e88, 0x6864, 0x52fd, 0x6900, 0x6901, 0x52fd,\n  0x52fd, 0x69e5, 0x69e9, 0x69fb, 0x69fc, 0x69ea, 0x69eb, 0x69ec,\n  0x69ed, 0x69ee, 0x69ef, 0x69fa, 0x69f0, 0x69f1, 0x69f2, 0x69f3,\n  0x69f4, 0x6c52, 0x6c53, 0x6c54, 0x6c55, 0x6c58, 0x6c56, 0x52fd,\n  0x6cdd, 0x6cde, 0x6ce3, 0x6cdf, 0x6ce0, 0x6e22, 0x6e23, 0x6e68,\n  0x6edf, 0x00ac, 0x6f44, 0x7094, 0x7095, 0x7096, 0x7097, 0x7098,\n  0x7099, 0xfa79, 0x709a, 0x709b, 0x709d, 0x709e, 0x709f, 0x70a0,\n  0x72f3, 0x72f2, 0x731f, 0x7388, 0x748f, 0x7490, 0x52fd, 0x74fd,\n  0x74fe, 0x74ff, 0x7500, 0x7501, 0x791a, 0x52fd, 0x78e3, 0x78e4,\n  0x78e5, 0x78e6, 0x78e7, 0x78eb, 0x78e8, 0x78e9,\n  /* 0x27 */\n  0x78ea, 0x791d, 0x7ca4, 0x7ca3, 0x7dd4, 0x7dc6, 0x7dc7, 0x7dc8,\n  0x7dc9, 0x7dca, 0x7dcb, 0x7dcc, 0x7dcd, 0x05de, 0x7dce, 0x25c3,\n  0x81b8, 0x81b9, 0x81ba, 0x836e, 0x83db, 0x83dc, 0x8468, 0x8469,\n  0x846a, 0x846b, 0x846c, 0x846d, 0x846e, 0x2719, 0x8624, 0x8625,\n  0x52fd, 0x8700, 0x86e5, 0x86f9, 0x86e7, 0x86e8, 0x86e9, 0x86fe,\n  0x86ea, 0x86eb, 0x86ec, 0x0749, 0x86ed, 0x28a1, 0x86ee, 0x28a6,\n  0x86ef, 0x52fd, 0x8717, 0x86f0, 0x86f1, 0x8b94, 0x8c5b, 0x8c5c,\n  0x8c5d, 0x8e2f, 0x0891, 0x8e30, 0x8e31, 0x8e32, 0x8e33, 0x8fcc,\n  0x8fcd, 0x8fce, 0x8fae, 0x8faf, 0x8fb0, 0x08d3, 0x8fcf, 0x8fd0,\n  0x8fd1, 0x8fd2, 0x8fd3, 0x52fd, 0x8fd4, 0x09a9, 0x94a6, 0x94a7,\n  0x94a8, 0x94b0, 0x94a9, 0x94aa, 0x94ab, 0x94ac, 0x94ad, 0x97fb,\n  0x97fc, 0x52fd, 0x992d, 0x992e, 0x9950, 0x992f,\n  /* 0x28 */\n  0x9930, 0x9a65, 0x9be6, 0x9c0c, 0x9c02, 0x9c03, 0x9c04, 0x9c05,\n  0x9c06, 0x52fd, 0x9ec0, 0x9f24, 0x9f25, 0xa016, 0xa032, 0xa720,\n  0xa721, 0xa722, 0xa723, 0x36fe, 0xa725, 0xa919, 0xa924, 0xa91a,\n  0xa91b, 0xa91c, 0xa91d, 0xfb52, 0xa91e, 0xaa5a, 0xaa5b, 0xaa5c,\n  0xaa5d, 0xaa5e, 0xac31, 0x52fd, 0xb129, 0x52fd, 0xb288, 0xb289,\n  0xb589, 0x3d57, 0xb656, 0xb7d1, 0xb7e6, 0xb832, 0xb833, 0xb952,\n  0xb953, 0x0ed5, 0xb954, 0xb955, 0x52fd, 0x52fd, 0xbe29, 0xbe2a,\n  0xbe2b, 0xbe2c, 0xbe2d, 0xfb92, 0xbe2e, 0xbe2f, 0xbe30, 0xbe31,\n  0xbe32, 0xbe33, 0x3ec5, 0xbe34, 0xc49b, 0xc523, 0xc524, 0x52fd,\n  0xc525, 0xc527, 0xc916, 0xcfa0, 0xd76f, 0x45df, 0xd770, 0xd771,\n  0x45dc, 0x138c, 0xd772, 0xd773, 0xd774, 0xd99c, 0xd9aa, 0xd99d,\n  0xd99e, 0x0c99, 0xd9ab, 0xd99f, 0xe135, 0xe138,\n  /* 0x29 */\n  0xf68d, 0x5335, 0x5336, 0xadee, 0x53b4, 0xf9c9, 0x5432, 0x5455,\n  0x5544, 0x5545, 0x5546, 0x5547, 0x17e4, 0x5548, 0x5549, 0x52fd,\n  0x554a, 0x554b, 0x554c, 0x554d, 0x554e, 0x554f, 0x5550, 0x5551,\n  0xb599, 0x58d1, 0x52fd, 0x58d2, 0x58d3, 0x58d4, 0x58d5, 0x5a21,\n  0x5a22, 0x5a23, 0x5b68, 0x5b69, 0x5b6a, 0x5be2, 0x5c45, 0x5cec,\n  0x5ced, 0x5cee, 0x5cef, 0x52fd, 0x5d62, 0x5d63, 0x5df4, 0x536f,\n  0x5e44, 0x5e45, 0x5f79, 0x1c1b, 0x5f7a, 0x5f7b, 0x5f7c, 0x5f7d,\n  0x5f7e, 0x5f7f, 0x5f80, 0x0188, 0x52fd, 0x5f81, 0x5f82, 0x5f83,\n  0x5f84, 0x5f85, 0x5f86, 0x5f87, 0x5f8f, 0x5f88, 0x5f89, 0x65c5,\n  0x65c6, 0x1eaa, 0x65c7, 0x65c8, 0x65c9, 0x65ca, 0x65cb, 0x65cc,\n  0x1eab, 0x65cd, 0x65ce, 0x65e3, 0x65cf, 0x65d0, 0x65d1, 0x65d2,\n  0x65d3, 0x65c4, 0x65d4, 0x65d5, 0x65d6, 0x6820,\n  /* 0x2a */\n  0x6821, 0x691a, 0x6912, 0x6914, 0x6915, 0x6916, 0x6919, 0x6917,\n  0x6918, 0x02c9, 0xfa61, 0x52fd, 0x6a12, 0x6a13, 0x6a14, 0x6a15,\n  0x6a16, 0x6a17, 0x6a18, 0x6a19, 0x6c61, 0x6c62, 0x6c63, 0x6cf5,\n  0x21a9, 0x6cf6, 0x6cf7, 0x6cf8, 0x6e29, 0x0517, 0x6f5d, 0x6f57,\n  0x6f58, 0x6f59, 0x6f5a, 0x6f5b, 0x70bb, 0x70d1, 0x70bc, 0x70bd,\n  0xbbdf, 0x70d0, 0x70be, 0x70bf, 0x70c0, 0x70c1, 0x70c2, 0x70c3,\n  0x70c4, 0xbe6c, 0x73a1, 0x73a2, 0x73a3, 0x7493, 0x750d, 0x750f,\n  0x750e, 0x7510, 0x7511, 0x7512, 0xfa95, 0x77e5, 0x792f, 0x52fd,\n  0x7957, 0x7930, 0x7968, 0x792b, 0x7931, 0x7958, 0xfaa2, 0x7932,\n  0x7959, 0x52fd, 0x795a, 0x7933, 0x795b, 0x795c, 0x795d, 0x791e,\n  0x7cae, 0x7caf, 0x7d3b, 0x7d3c, 0x7d3d, 0x7e07, 0x7e08, 0x7e09,\n  0x7e0a, 0x7e0b, 0x7e0c, 0x7e0d, 0x7e0e, 0x7e0f,\n  /* 0x2b */\n  0x7e10, 0x7e22, 0x7e11, 0x7e12, 0x7e13, 0x7e14, 0x7e15, 0x7e16,\n  0x7e17, 0x7e18, 0xfab8, 0x52fd, 0x8346, 0x8347, 0x8348, 0x83e1,\n  0x8481, 0x8483, 0x5f75, 0x52fd, 0x8485, 0x8486, 0x862a, 0xfad1,\n  0x862b, 0x866b, 0x8718, 0x8719, 0x871a, 0x52fd, 0x871b, 0x871c,\n  0x871d, 0x871e, 0x871f, 0x8720, 0x8721, 0x8722, 0x8723, 0x2911,\n  0x8724, 0x8725, 0x8726, 0x8727, 0x8728, 0x8729, 0x872a, 0x8cef,\n  0x8e49, 0x8e4a, 0x8e4b, 0x8e4c, 0x8e4d, 0x8e4e, 0x8e4f, 0x8e50,\n  0x8e51, 0x8e52, 0x8e53, 0x8e54, 0x8e5a, 0x8e55, 0x8f5f, 0x9002,\n  0x9003, 0x9004, 0x9005, 0x8fd5, 0x9006, 0x9007, 0x8fd6, 0x9008,\n  0x9009, 0x900a, 0x900b, 0x8fd7, 0x900c, 0x900d, 0x94c8, 0x94c9,\n  0x94ca, 0x94cb, 0x94cc, 0x94cd, 0x94ce, 0x94cf, 0x94d0, 0x94d1,\n  0x94d2, 0x3451, 0x94d3, 0x94d4, 0x94d5, 0x94d6,\n  /* 0x2c */\n  0x94d7, 0x94e2, 0x94d8, 0x9804, 0x9805, 0x9806, 0x52fd, 0x9943,\n  0x9944, 0x9a84, 0x9a8f, 0x9a85, 0x9a86, 0x9c2f, 0x9c1a, 0x9c1b,\n  0x9c1c, 0x0abd, 0x9c1d, 0x9c1e, 0x9c1f, 0x9c20, 0x9c21, 0x9c22,\n  0xfb2c, 0x9c23, 0x9c24, 0x9c0e, 0x9c25, 0x9c2b, 0x9c2c, 0x9c0b,\n  0x9dee, 0x52fd, 0x9ec3, 0x9ed8, 0x9ed9, 0x9f38, 0x9f39, 0x9f3a,\n  0x9f3b, 0x3453, 0x9f3c, 0x9f3d, 0x9f3e, 0x9f3f, 0x9f40, 0xa048,\n  0xa04c, 0xa228, 0xa251, 0xa252, 0xa34c, 0xa423, 0xfb45, 0xa424,\n  0xa731, 0xa732, 0xa733, 0x3718, 0xa734, 0xa735, 0xa736, 0xa740,\n  0xa737, 0x52fd, 0xa738, 0xa73d, 0xa938, 0xa939, 0xa93a, 0xa93b,\n  0xa93c, 0xa94c, 0xaa73, 0xaa74, 0x0d33, 0xaa75, 0xaa76, 0xaa79,\n  0xac41, 0xac42, 0xac43, 0xad5b, 0x52fd, 0x39d7, 0x8ba6, 0xad5c,\n  0xade5, 0xade6, 0xade7, 0xade8, 0xaded, 0xb130,\n  /* 0x2d */\n  0x3b7e, 0xb131, 0xb294, 0xb651, 0xb6fd, 0xb6fe, 0xb7e9, 0x52fd,\n  0xb9b3, 0xb984, 0xb994, 0x52fd, 0xb99c, 0x52fd, 0xb985, 0xbc00,\n  0xbc37, 0xbc57, 0xbe54, 0xbe68, 0xbe55, 0xbe5c, 0xbe56, 0xbe57,\n  0xbe58, 0xbe59, 0xbe5a, 0xbe5b, 0xc534, 0x407e, 0xc535, 0x52fd,\n  0xc539, 0xc536, 0xc537, 0xc538, 0xc8e5, 0xc959, 0x52fd, 0xc93a,\n  0xc93b, 0xd028, 0xd189, 0x52fd, 0xd18a, 0xd18b, 0xd18c, 0xd18d,\n  0xd2bc, 0xd5a3, 0x1344, 0xd5a4, 0xd793, 0xd794, 0xd795, 0xd796,\n  0xd797, 0xd9b9, 0xe14f, 0xe150, 0xe151, 0xe376, 0x52fd, 0x53fb,\n  0x5383, 0x5438, 0x545d, 0x5571, 0x52fd, 0x5577, 0x5578, 0xfa07,\n  0x55c3, 0x5579, 0x557a, 0x557b, 0x557c, 0x5572, 0x557d, 0x55a0,\n  0x557e, 0x557f, 0x5580, 0x5581, 0x5582, 0x5583, 0x559e, 0x5584,\n  0x5585, 0x5586, 0x5587, 0x5588, 0x5793, 0x5794,\n  /* 0x2e */\n  0x5795, 0x57ef, 0x57f0, 0x52fd, 0x588d, 0x588f, 0x5890, 0x5891,\n  0x5892, 0x58de, 0x58e1, 0x5953, 0x1966, 0x5a4a, 0x5a4b, 0x5a4c,\n  0x5a51, 0x5a4d, 0x5a48, 0x5b74, 0x5b75, 0x5c20, 0x5c21, 0x5ca5,\n  0x5ca6, 0x5d73, 0x5d74, 0x5e50, 0x5e51, 0x5e52, 0x5e53, 0x5fdb,\n  0x5fdc, 0x1c20, 0x5fdd, 0x5fde, 0x5fff, 0x52fd, 0x52fd, 0x5fdf,\n  0x5fe0, 0x1c21, 0x5fe1, 0x5fe2, 0x5fe3, 0x5fe4, 0x5fe5, 0x5fe6,\n  0x5fe7, 0x5fe8, 0x5fe9, 0x5fea, 0x6607, 0x6608, 0x6609, 0x660a,\n  0x660b, 0x660c, 0x660d, 0x1ed7, 0x661a, 0x660e, 0x660f, 0x6610,\n  0x661c, 0x6827, 0x6866, 0x6898, 0x6899, 0x6933, 0x6924, 0x6925,\n  0x6926, 0x52fd, 0x02e1, 0x6a3e, 0xfa64, 0x6a3f, 0x6a57, 0x6a40,\n  0x6a41, 0x6a58, 0x6a42, 0x6a43, 0x6a44, 0x6a45, 0x6a46, 0x02e2,\n  0x6a47, 0x6c6b, 0x6c6c, 0x6d10, 0x6d11, 0x21be,\n  /* 0x2f */\n  0x6e75, 0x6eef, 0x6f6a, 0x6f6b, 0x52fd, 0x6f6c, 0x6f6d, 0x6f6e,\n  0x70ef, 0x70f0, 0x70f1, 0x70f2, 0x70f3, 0x70f4, 0x70f5, 0x70ff,\n  0x70f6, 0x7102, 0x70f7, 0x7322, 0x73c4, 0x73c3, 0x7528, 0x047c,\n  0x7620, 0x7625, 0x7622, 0x7623, 0x76eb, 0x04e3, 0x77f9, 0x77fa,\n  0x7999, 0x799a, 0x799b, 0x7963, 0x52fd, 0x795e, 0x795f, 0x7960,\n  0x799c, 0x7961, 0x799d, 0x7e54, 0x7e55, 0x7e56, 0x7e57, 0x7e58,\n  0x7e59, 0x7e5a, 0x7e19, 0x7e6a, 0x7e5b, 0x7e5c, 0x7e5d, 0x7e66,\n  0x52fd, 0x7e5e, 0x7e5f, 0x7e1a, 0x7e60, 0x7e61, 0x52fd, 0x7e62,\n  0x7e1b, 0x7e63, 0xb710, 0xb711, 0x834c, 0x839b, 0x83eb, 0x83ec,\n  0x83ed, 0x83ee, 0x84a3, 0x84a8, 0x84a6, 0x06ec, 0x862f, 0x8630,\n  0x8631, 0x8632, 0x8633, 0x874f, 0x8751, 0x8752, 0x877d, 0x8753,\n  0x8754, 0x8755, 0x8756, 0x8757, 0x8758, 0x8759,\n  /* 0x30 */\n  0x875a, 0x875b, 0x875c, 0x2957, 0x875d, 0x875e, 0x875f, 0x876f,\n  0x8760, 0x8761, 0x8762, 0x8763, 0x8772, 0x8764, 0x52fd, 0x876e,\n  0x8bb5, 0x8e65, 0x8e66, 0x8e67, 0x8e68, 0x8e69, 0x8e6a, 0x8e6b,\n  0x8e6c, 0x900e, 0x9043, 0x52fd, 0x900f, 0x9044, 0x9045, 0x9046,\n  0x9047, 0x9048, 0x9049, 0x9010, 0x904a, 0x904b, 0x904c, 0x904d,\n  0x08df, 0x904e, 0x904f, 0x9050, 0x9051, 0x9052, 0x9053, 0x9054,\n  0x9055, 0x9056, 0x9057, 0x9058, 0x9059, 0x905a, 0x901d, 0x905b,\n  0x905c, 0x905d, 0xfb06, 0x52fd, 0x94fe, 0x94ff, 0x9500, 0x9501,\n  0x9502, 0x9503, 0x9504, 0x9505, 0x9506, 0x9507, 0x9518, 0x9508,\n  0x9509, 0x94f3, 0x950a, 0x950b, 0x951b, 0x950c, 0x950d, 0x950e,\n  0x950f, 0x9510, 0x980f, 0x9861, 0x9879, 0x9ac1, 0x9aac, 0x9aad,\n  0x9c43, 0x9c44, 0x9c45, 0x9c46, 0x9c47, 0x9c48,\n  /* 0x31 */\n  0x9c49, 0x9c64, 0x9c4a, 0x9c4b, 0x9c4c, 0x9c4d, 0x0ac7, 0xfb2d,\n  0x9e39, 0x9f57, 0x9f58, 0x9f59, 0x9f5f, 0x9f5a, 0xa06a, 0xa22b,\n  0xa25d, 0xa25e, 0xa25f, 0x52fd, 0xa260, 0xa261, 0xa358, 0xa359,\n  0xa44a, 0xa44b, 0xa44c, 0xa44d, 0xa44e, 0xa757, 0xa6b3, 0xa6b4,\n  0xa76e, 0xa75b, 0xa75c, 0x52fd, 0xa75d, 0xa75e, 0x52fd, 0xa76c,\n  0xa93d, 0xa954, 0xa93e, 0xa955, 0xa956, 0xa93f, 0xa957, 0xa958,\n  0xa959, 0xa95a, 0xa95b, 0xa95c, 0xaa88, 0xaa89, 0x52fd, 0xac58,\n  0xac59, 0xac5a, 0x52fd, 0xad67, 0xad68, 0xad69, 0xad6a, 0x52fd,\n  0xad6b, 0xad6c, 0xadfe, 0xadff, 0xae00, 0xae01, 0xae02, 0xae03,\n  0xae04, 0xae05, 0xb139, 0xb13a, 0xb13b, 0xb13c, 0x52fd, 0x52fd,\n  0xb2b2, 0xb2b3, 0xb2b4, 0xb2b5, 0xb2b6, 0xb2b7, 0xb2b8, 0x3d3c,\n  0xb5a2, 0xb661, 0xb662, 0xb714, 0x52fd, 0xb7eb,\n  /* 0x32 */\n  0xb842, 0xb848, 0x52fd, 0xb843, 0xb84e, 0xb844, 0xb845, 0xb9b4,\n  0xb9b5, 0x52fd, 0x52fd, 0x52fd, 0xb9b6, 0x52fd, 0xbbe1, 0xbc05,\n  0x52fd, 0x3e73, 0xbe9a, 0x52fd, 0xbe9b, 0xbe9c, 0xbe9d, 0xbe9e,\n  0xbe9f, 0xfb9a, 0xbea0, 0xbea1, 0xbea2, 0xbeb5, 0xbea3, 0xbea4,\n  0x52fd, 0xbea5, 0xbea6, 0xbea7, 0xbea8, 0xbeaf, 0xbea9, 0xbeaa,\n  0xbeab, 0xbeac, 0xbead, 0xbeb3, 0x52fd, 0xc4a0, 0xc556, 0xc934,\n  0x1127, 0xc93c, 0xcb0c, 0x52fd, 0xcf3e, 0xcfa3, 0xd030, 0xd031,\n  0xd197, 0xd198, 0xd199, 0xd19a, 0xd19b, 0xd5b2, 0xd5ab, 0xd5ac,\n  0xd9fc, 0xd9e8, 0xd9e9, 0xd9ea, 0xdaf1, 0xdc3f, 0xdfce, 0xe16d,\n  0xe16e, 0xe16f, 0xe170, 0xe171, 0xe172, 0xe173, 0x4bbe, 0xe378,\n  0xeb3a, 0x5467, 0x27fa, 0x5464, 0x5465, 0x5607, 0x55c4, 0x55c5,\n  0x55c6, 0x55c7, 0x55c8, 0x55c9, 0x55e5, 0x55ca,\n  /* 0x33 */\n  0x55cb, 0x52fd, 0x55cc, 0x55cd, 0x55ce, 0x55cf, 0x55d0, 0x5797,\n  0x579a, 0x579b, 0x58ea, 0x58ec, 0x58ed, 0x58f7, 0x58ee, 0x58ef,\n  0x595b, 0x595c, 0x595d, 0x5a6d, 0x5a6e, 0x52fd, 0x5a6f, 0x5b81,\n  0x5b82, 0x5c4f, 0x5cad, 0xda0a, 0x5d7e, 0x5e69, 0x6054, 0x6055,\n  0x6056, 0x6057, 0x01ab, 0x6058, 0x6059, 0x605a, 0x605b, 0x605c,\n  0x605d, 0x52fd, 0x52fd, 0x605e, 0x605f, 0x663b, 0x6636, 0x663c,\n  0x663d, 0x663e, 0x663f, 0x6640, 0x6641, 0x6642, 0x024b, 0x6643,\n  0x6644, 0x6645, 0x6637, 0x52fd, 0x52fd, 0x6646, 0x6647, 0x6648,\n  0x6649, 0x682d, 0x68a5, 0x693d, 0x693f, 0x6c6e, 0x6ae7, 0x6a75,\n  0x6a76, 0x6a77, 0x6a78, 0x6a79, 0x6a7a, 0x6a7b, 0x6a7c, 0x6a8e,\n  0x6a7d, 0x6a7e, 0x2072, 0x6a7f, 0x6a80, 0x6a81, 0x6a82, 0x6a83,\n  0x6a84, 0x6a85, 0x6a86, 0x6a87, 0x6a88, 0x6a89,\n  /* 0x34 */\n  0x6a8a, 0x6a8b, 0x6a8c, 0x6c6f, 0x6c70, 0x6c71, 0x6c72, 0x6d2a,\n  0x6d2b, 0x6d2c, 0x6d2d, 0x6d2e, 0x6d2f, 0x6d30, 0x6d31, 0x6e83,\n  0x6f84, 0x6f85, 0x6f93, 0x52fd, 0x6f86, 0x6f87, 0x6f88, 0x6f89,\n  0x6f8a, 0x6f8b, 0x7136, 0x7138, 0x7139, 0x713a, 0x03e2, 0x713b,\n  0x713c, 0x713d, 0x713e, 0x713f, 0x52fd, 0x7140, 0x7141, 0x7142,\n  0x73de, 0x73df, 0x73e0, 0x73e1, 0x754a, 0x754b, 0x754c, 0x754d,\n  0x754e, 0x754f, 0x7550, 0x7627, 0x76f9, 0x76fa, 0x76fb, 0x7798,\n  0x7799, 0x779a, 0x52fd, 0x781e, 0x799e, 0x79f7, 0x799f, 0x79a0,\n  0x79f0, 0x79f8, 0x79f9, 0x79a1, 0x79a2, 0x79a3, 0x79a4, 0x79a5,\n  0x79fa, 0x79fb, 0x79fc, 0x79fd, 0x79fe, 0x7a1f, 0x79ff, 0x7a00,\n  0x7a8c, 0x7a01, 0x7cc2, 0x7cc3, 0x52fd, 0x7cd3, 0x7d4e, 0x7eaf,\n  0x7eb0, 0x7eb1, 0x7eb2, 0x7eb3, 0x7ec6, 0x7eb4,\n  /* 0x35 */\n  0x52fd, 0x7eb5, 0x7eb6, 0x7eb7, 0x7eb8, 0x7eb9, 0x7eba, 0x7ebb,\n  0x7ebc, 0x7ebd, 0x7ebe, 0x7ebf, 0x7ec1, 0x7ec0, 0x7ec2, 0x7ec3,\n  0x8251, 0x8252, 0x8253, 0x8254, 0x8255, 0x835a, 0x8350, 0x8351,\n  0x8378, 0x83f8, 0x83f9, 0x84c6, 0x84cb, 0x84cc, 0x84cd, 0x84ce,\n  0x84cf, 0x84d0, 0x84d1, 0x84d2, 0x84d3, 0x84d4, 0x84d5, 0x52fd,\n  0x8637, 0x8638, 0x8673, 0x8790, 0x8791, 0x87bf, 0x8792, 0x8793,\n  0x8794, 0x8795, 0x8796, 0x8797, 0x8798, 0x8799, 0x29bd, 0x879a,\n  0x879b, 0x879c, 0x879d, 0x879e, 0x879f, 0x87a0, 0x87a1, 0x87a2,\n  0x87a3, 0x87a4, 0x87a5, 0x52fd, 0x87a6, 0x87a7, 0x8bbf, 0x8bc0,\n  0x8bc1, 0x8bc2, 0x8bc3, 0x8bc4, 0x8bc5, 0x8bc6, 0x8c75, 0x8d43,\n  0x8d12, 0x8d9f, 0x8d91, 0xfaf6, 0x8d92, 0x8d93, 0x8d94, 0x8e7e,\n  0x8e7f, 0x8e80, 0x8e81, 0x8e82, 0x8f4c, 0x8f63,\n  /* 0x36 */\n  0x90c0, 0x90c1, 0x90c2, 0x953a, 0x90c3, 0x90c4, 0x90c5, 0x90c6,\n  0x2e15, 0x90c7, 0x52fd, 0x90c8, 0x9073, 0x90c9, 0x90ca, 0x90cb,\n  0x90cc, 0x90cd, 0x090e, 0x52fd, 0x52fd, 0x90ce, 0x90cf, 0x90d0,\n  0x90d1, 0x90d2, 0x90d3, 0x90d4, 0x90d5, 0x953b, 0x953c, 0x953d,\n  0x953e, 0x52fd, 0x953f, 0x9540, 0x9541, 0x9542, 0x9543, 0x09c1,\n  0x9544, 0x9545, 0x9559, 0x9546, 0x9547, 0x9548, 0x52fd, 0x9549,\n  0x9813, 0x9882, 0x9883, 0x9966, 0x9967, 0x9c65, 0x3313, 0x9c66,\n  0x0ad9, 0x9c75, 0x9c74, 0x9c67, 0x9c6d, 0x9c76, 0x9c68, 0x9c69,\n  0x9c6a, 0x9c6b, 0x9c4f, 0x9c6c, 0x9df8, 0x9e45, 0x33f8, 0x9e46,\n  0x9ee4, 0x9f85, 0x9f6f, 0x9f70, 0xa082, 0xa083, 0xa084, 0xa08b,\n  0xa22d, 0xa268, 0xa269, 0xa277, 0xa264, 0xa26a, 0x52fd, 0xa2f2,\n  0xa2e2, 0xa363, 0xa364, 0xa365, 0xa366, 0x3a3d,\n  /* 0x37 */\n  0xa367, 0xa368, 0x35d8, 0x52fd, 0xa472, 0xa47d, 0xa669, 0xa784,\n  0xa786, 0xa787, 0xa788, 0xa79e, 0x52fd, 0xa789, 0xa78a, 0xa796,\n  0xa78b, 0xa78c, 0xa78d, 0xa979, 0xa983, 0xa97a, 0xa95d, 0xa97b,\n  0x52fd, 0xaa9f, 0x0d48, 0xaaa0, 0xaaa1, 0xaaa2, 0x38fc, 0xac6a,\n  0xac6b, 0xac6c, 0xac6d, 0xac6e, 0xad78, 0x52fd, 0xad79, 0xad7c,\n  0xae21, 0xae22, 0xae23, 0xae24, 0x3a39, 0xae25, 0xae26, 0xb151,\n  0xb152, 0xb156, 0x52fd, 0x3c4b, 0xb2e1, 0x52fd, 0x52fd, 0xb2d6,\n  0xb2d7, 0xb2d8, 0xb2d9, 0xb5b5, 0xb66c, 0xb66f, 0xb670, 0xb7bc,\n  0xb7bd, 0xb7ed, 0xb85b, 0xb85c, 0xb85d, 0xb85e, 0xb986, 0xb987,\n  0xb9ed, 0x52fd, 0xb9ee, 0x52fd, 0xbc0e, 0xbc0f, 0x52fd, 0xbd2d,\n  0xbd2a, 0xbd2e, 0xbdcc, 0xbef9, 0xbefa, 0xbefb, 0xbefc, 0x3fb9,\n  0xbefd, 0xbf1b, 0xbefe, 0xbeff, 0xbf00, 0xbf01,\n  /* 0x38 */\n  0xbf02, 0xbf03, 0xbf21, 0xbf04, 0xbf05, 0xbf06, 0xbf07, 0xbf08,\n  0xbf09, 0xbf0a, 0xbf0b, 0xbf0c, 0xbf0d, 0xbf0e, 0xbf0f, 0xbf10,\n  0xbf11, 0xbf12, 0xbf13, 0xbf14, 0xbf15, 0xc57b, 0xc57c, 0xc57d,\n  0xc57e, 0x40cf, 0xc57f, 0xc580, 0xc566, 0xc581, 0xc582, 0xc583,\n  0xc8b2, 0x52fd, 0xc97f, 0xc972, 0xc95a, 0xcaeb, 0xcb15, 0x52fd,\n  0xcb16, 0xfbca, 0xcb17, 0x52fd, 0xcbc5, 0xcbc6, 0xcbc7, 0xcc88,\n  0xcc89, 0x52fd, 0xcc8a, 0xcc8b, 0xcc8c, 0xcc8d, 0xcedf, 0x52fd,\n  0xd03b, 0xd03c, 0xd03d, 0xd03e, 0xd03f, 0xd040, 0xd041, 0xd042,\n  0xd15c, 0xd1af, 0xd1a9, 0xd1aa, 0xd1ab, 0xd1ac, 0xd1b5, 0xd1ad,\n  0xd1ae, 0xd2e2, 0xd524, 0x44ae, 0xd5c4, 0x52fd, 0xd7ea, 0xd7d3,\n  0xd7d4, 0xd7d5, 0xd986, 0x52fd, 0xd987, 0xd9fd, 0xdb05, 0xdc49,\n  0xdf5f, 0xdfd3, 0xdfd5, 0xe18a, 0xe18b, 0xe18c,\n  /* 0x39 */\n  0xe18d, 0xe18e, 0xe18f, 0xe190, 0xe191, 0xe192, 0xe193, 0xe37d,\n  0xe37e, 0x4beb, 0x52fd, 0x52fd, 0xe4ec, 0xe55b, 0xef87, 0xef86,\n  0x52fd, 0x5346, 0x5347, 0x5402, 0x546d, 0x546e, 0x546f, 0x560d,\n  0x560e, 0x560f, 0x5610, 0x5611, 0x5612, 0x5613, 0x5614, 0x579f,\n  0x57a0, 0x57a1, 0x57a3, 0x5821, 0x5822, 0x867c, 0x5895, 0x5896,\n  0x5961, 0x5967, 0x5a91, 0x5a92, 0x5a93, 0x5a94, 0x5b8a, 0x5b8b,\n  0x5bf7, 0x5c24, 0x5cb0, 0x5cb1, 0x5d8e, 0x5e04, 0x5e6a, 0x5e6b,\n  0x5e6c, 0x5e6d, 0x60e8, 0x610c, 0x60e9, 0x60ea, 0x610d, 0x52fd,\n  0x60eb, 0x60ec, 0x60ed, 0x60ee, 0x60ef, 0x60f0, 0x60f1, 0x60f2,\n  0x6116, 0x60f3, 0x6104, 0x611d, 0x60f4, 0x60f5, 0x60f6, 0x60f7,\n  0x1cb0, 0x6502, 0x6503, 0x6504, 0x669a, 0x667c, 0x66c5, 0x667d,\n  0x667e, 0x667f, 0x6680, 0x6681, 0x1f40, 0x1f42,\n  /* 0x3a */\n  0x6682, 0x6683, 0x6684, 0x6685, 0x6686, 0x6687, 0x68ae, 0x694d,\n  0x6ab0, 0x6adc, 0x6ab6, 0x6ab7, 0x6ab8, 0x6ab9, 0x6aba, 0x6abb,\n  0x6adb, 0x6abc, 0x6abd, 0x6abe, 0x52fd, 0x6abf, 0x6ac0, 0x6ac1,\n  0x6ac2, 0x6ac3, 0x6ace, 0x0301, 0x6ad9, 0x6ac4, 0x6ac5, 0x6ada,\n  0x6ac6, 0x6ac7, 0x6ac8, 0x6ac9, 0x6aca, 0x6c7e, 0x6c7b, 0x6d4e,\n  0x6d4f, 0x6d50, 0x6d51, 0x6d52, 0x6d53, 0x6d54, 0x6d55, 0x6e8f,\n  0x6efc, 0x6fa6, 0x6fa7, 0x6fa8, 0x7023, 0x718b, 0x52fd, 0x718c,\n  0x718d, 0x718e, 0x718f, 0x71a4, 0x5899, 0x7324, 0x7346, 0x7347,\n  0x7348, 0x73fd, 0x73fe, 0x52fd, 0x756e, 0x757c, 0x756f, 0x7570,\n  0x7571, 0x7572, 0x7629, 0x762a, 0x765f, 0x77a2, 0x7830, 0x782b,\n  0x7a61, 0x7a02, 0x7a03, 0x7a04, 0x7a05, 0x7a06, 0x7a07, 0x52fd,\n  0x7a08, 0x7a09, 0x7a62, 0x7a0a, 0x7a0b, 0x7a0c,\n  /* 0x3b */\n  0x7a0d, 0x7a0e, 0x7a63, 0x7a27, 0x7a0f, 0x52fd, 0x7a1b, 0x7a64,\n  0x7a10, 0x7a11, 0x7a81, 0x7a12, 0x7a65, 0x7a13, 0x7cce, 0x7f29,\n  0x7ec4, 0x7f2a, 0x52fd, 0x7f2b, 0x7f2c, 0x7f2d, 0x7f2e, 0x7f2f,\n  0x7f30, 0x7f31, 0x7f32, 0x7f33, 0x7f34, 0x52fd, 0x7f35, 0x7f36,\n  0x7ee3, 0x7f37, 0x7f38, 0x7f39, 0x7f3a, 0x7f3b, 0x7f4d, 0x7f3c,\n  0x7f3d, 0x7f3e, 0x52fd, 0x81d0, 0x81d1, 0x8355, 0x8402, 0x8404,\n  0x84fc, 0x8507, 0x84fd, 0x84fe, 0x52fd, 0x84ff, 0x8500, 0x8508,\n  0x8501, 0x8502, 0x8535, 0x8503, 0x8504, 0x52fd, 0x863b, 0x8689,\n  0x8681, 0x8682, 0xba33, 0x87eb, 0x87ec, 0x52fd, 0x87ed, 0x87ee,\n  0x87ef, 0x52fd, 0x87f0, 0x87f1, 0x87f2, 0x2a2b, 0x87f3, 0x2a16,\n  0x87f4, 0x87f5, 0x534b, 0x87f6, 0x87f7, 0x87f8, 0x87f9, 0x87fa,\n  0x87fb, 0x87fc, 0x87fd, 0x87fe, 0x87ff, 0x8800,\n  /* 0x3c */\n  0x2a1b, 0x8801, 0x8802, 0x8803, 0x8804, 0x8805, 0x8806, 0x8807,\n  0x2a27, 0x8808, 0x8809, 0x880a, 0x880b, 0x880c, 0x880d, 0x8bd7,\n  0x8bd8, 0x8d29, 0x8d9c, 0x8df8, 0x8e98, 0x8ea4, 0x8e99, 0x8e9a,\n  0x8e9b, 0x8e97, 0x8e9c, 0x2cf5, 0x8e9d, 0x52fd, 0x8e9e, 0x8e9f,\n  0x8f65, 0x90d6, 0x0920, 0x9132, 0x9133, 0x9134, 0x2e82, 0x9135,\n  0x9136, 0x9137, 0x90d7, 0x52fd, 0x90d8, 0x9138, 0x9139, 0x913a,\n  0x913b, 0x913c, 0x913d, 0x913e, 0x913f, 0x9140, 0x90d9, 0x9141,\n  0x9142, 0x0921, 0x9143, 0x9144, 0x2e7a, 0x957c, 0x957d, 0x957e,\n  0x957f, 0x9580, 0x9581, 0x9582, 0x52fd, 0x9583, 0x9584, 0x9585,\n  0x9586, 0x95a5, 0x9587, 0x9588, 0x9589, 0x958a, 0x958b, 0x958c,\n  0x958d, 0x958e, 0x52fd, 0x52fd, 0x958f, 0x52fd, 0x9590, 0x9591,\n  0x9592, 0x9593, 0x9594, 0x9595, 0x52fd, 0x3129,\n  /* 0x3d */\n  0x9596, 0x9856, 0x9857, 0x98e1, 0x990e, 0x990f, 0x997a, 0x997b,\n  0x998b, 0x9af2, 0x9af3, 0x9c93, 0x9c94, 0x9c95, 0x9c96, 0x9c97,\n  0x9cad, 0x9c98, 0x9cab, 0x9c7b, 0x9c99, 0x9c9a, 0x9c9b, 0x9c85,\n  0x9c9c, 0x9c9d, 0x0ada, 0x52fd, 0x9cac, 0x9c79, 0x9c9e, 0x9ca4,\n  0x9dfd, 0x9eeb, 0x9eea, 0x9f8f, 0x9f90, 0x9f86, 0x9f87, 0x9f88,\n  0xa0ac, 0xa0ad, 0xa2ec, 0xa373, 0xa374, 0x52fd, 0xa4aa, 0xa4ab,\n  0xa4ac, 0xa6d1, 0xa6d7, 0xa7b9, 0xa7ba, 0xa7bb, 0xa7bc, 0xa98e,\n  0xa98f, 0xa990, 0xa97c, 0xa991, 0xa992, 0xa993, 0xa994, 0xfb54,\n  0xa99a, 0xa995, 0xa996, 0xa997, 0xaabd, 0xaac7, 0xaabe, 0x52fd,\n  0xaabf, 0x52fd, 0xac93, 0x6d5e, 0xad86, 0xad87, 0xad88, 0xad89,\n  0xae41, 0xae42, 0xae43, 0xae44, 0xae45, 0xae46, 0xae4a, 0xae47,\n  0xae48, 0xae49, 0xb16b, 0xb166, 0x52fd, 0xb167,\n  /* 0x3e */\n  0x3bab, 0xb168, 0x3bac, 0x52fd, 0xb2fd, 0xb2fe, 0xb2ff, 0xb300,\n  0xb301, 0xb302, 0xb303, 0xb304, 0xb305, 0xb306, 0xb533, 0xb5c2,\n  0xb5d0, 0xfb74, 0xb695, 0xb696, 0xb735, 0xb736, 0xb867, 0xb868,\n  0xb869, 0xb86a, 0xb872, 0xb86b, 0xb86c, 0xb86d, 0xb86e, 0xb86f,\n  0xba22, 0x52fd, 0x52fd, 0xba23, 0xba41, 0xba24, 0xba25, 0xba26,\n  0xba27, 0xba28, 0xba29, 0xb9b7, 0x52fd, 0x52fd, 0x52fd, 0xbcda,\n  0xbdcf, 0xbdda, 0xbf89, 0xbfb7, 0xbf8a, 0xbf8b, 0xc05e, 0xbf8c,\n  0x52fd, 0xbf8d, 0xbf8e, 0xbf8f, 0xbf90, 0xbf91, 0xbf92, 0xbf93,\n  0xbf94, 0xbfb6, 0xbf95, 0xbf96, 0xbf97, 0x3ff7, 0x52fd, 0xbf98,\n  0xbf99, 0xbf9a, 0x0fea, 0x52fd, 0xbf9b, 0xbfbd, 0xbf9c, 0xbf9d,\n  0xbf9e, 0xbf9f, 0xbfc0, 0xbfa0, 0xbfa1, 0xbfa2, 0xbfa3, 0xbfa4,\n  0xbfa5, 0xbfa6, 0xbfa7, 0xbfa8, 0xbfa9, 0xbfaa,\n  /* 0x3f */\n  0x52fd, 0xc4b4, 0xc4b5, 0xc4b6, 0xc5b9, 0xc5ba, 0xc5bb, 0xc591,\n  0xc5bc, 0xc8ee, 0xc8ef, 0xc996, 0xc997, 0xc973, 0xc998, 0xc999,\n  0xcaed, 0xcaee, 0xcbde, 0xccb0, 0xccb1, 0xccb2, 0xccb3, 0xccb4,\n  0xccb5, 0xccb6, 0xfbce, 0xccb7, 0xcee3, 0xcfb9, 0xd055, 0xd07e,\n  0xd056, 0xd057, 0xd058, 0xd059, 0xd05a, 0x52fd, 0xd1c4, 0xd1c5,\n  0xd1c6, 0xd1c7, 0xd1c8, 0xd1c9, 0xd1ee, 0xd1cf, 0xd1ca, 0xd1cb,\n  0xd1cc, 0xd309, 0xfbda, 0xd303, 0xd52f, 0xd530, 0xd531, 0xd532,\n  0xd80e, 0xd80f, 0xd810, 0xd811, 0xd812, 0x52fd, 0xd813, 0xd814,\n  0xd815, 0xd7ff, 0xda1f, 0xda20, 0xda21, 0xda2d, 0x52fd, 0xdb1b,\n  0xdb1c, 0xdb1d, 0xdb1e, 0xdc53, 0xdc54, 0xdc55, 0xdc56, 0xdc64,\n  0xdc59, 0xdc57, 0x52fd, 0xdc58, 0xdf6b, 0x1489, 0x52fd, 0xdfe7,\n  0xdfe8, 0xdfe9, 0xdfea, 0xdfeb, 0xdfec, 0x4a96,\n  /* 0x40 */\n  0xdfed, 0xe1b1, 0xe1b4, 0x52fd, 0xe38a, 0xe38d, 0xe38c, 0xe4f2,\n  0xe4f3, 0x52fd, 0x7408, 0xe717, 0x15b2, 0xe89f, 0xe9a0, 0x52fd,\n  0xeb6d, 0x837d, 0xf290, 0xf8c4, 0x534c, 0x5474, 0x5475, 0x5476,\n  0x5649, 0x564a, 0x564b, 0x564c, 0x564d, 0x564e, 0x564f, 0x5650,\n  0x5651, 0x5652, 0x5653, 0x5654, 0x5655, 0x5656, 0x57a4, 0x57a9,\n  0x582a, 0x582b, 0x5ab3, 0x5ac1, 0x5b98, 0x5bfb, 0x5bfc, 0x5cbc,\n  0x5d96, 0x5e0a, 0x52fd, 0x61a2, 0x52fd, 0x6181, 0x6182, 0x6183,\n  0x6184, 0x6185, 0x6186, 0x6187, 0x6188, 0x6189, 0x618a, 0x618b,\n  0x618c, 0x1cf1, 0x618d, 0x61d1, 0x6514, 0x66c9, 0x66ca, 0x66cb,\n  0xedfd, 0x66cc, 0x66cd, 0x66ce, 0x66cf, 0x66d0, 0x66d1, 0x66d2,\n  0x66d3, 0x66d4, 0x66d5, 0x6871, 0x534d, 0x6962, 0x6b0e, 0x6afe,\n  0x6aff, 0x6b00, 0x52fd, 0x6b01, 0x6b02, 0x6b03,\n  /* 0x41 */\n  0x6b15, 0x6b04, 0x6b05, 0x52fd, 0x6c87, 0x6c89, 0x6d6e, 0x6d6f,\n  0x6d70, 0x6d71, 0xfa6e, 0x6d72, 0x6d73, 0x6d74, 0x6e9d, 0x6fb8,\n  0x6fb9, 0x6fba, 0x71c2, 0x71c3, 0x71d5, 0x71c4, 0x71c0, 0x71c5,\n  0x71c6, 0x758a, 0x758b, 0x758c, 0x7664, 0xae8c, 0x2441, 0x770d,\n  0x77a8, 0x783b, 0x783c, 0x783d, 0x783e, 0x783f, 0x7840, 0x7a66,\n  0x7acb, 0x7ab7, 0x7ab8, 0x7ab9, 0x7aba, 0x7a67, 0x7abb, 0x7a68,\n  0x7a69, 0x7a6a, 0x7abc, 0x52fd, 0x7cdb, 0x7f81, 0x7f82, 0x7f83,\n  0x7f84, 0x7f85, 0x7f86, 0x7f87, 0x7f88, 0x7f89, 0xfabf, 0x7f8a,\n  0x7f8b, 0x52fd, 0x7f8c, 0x7f8d, 0x7f8e, 0x7f8f, 0x7f90, 0x7fa1,\n  0x7f91, 0x81d6, 0x829f, 0x8358, 0x8385, 0x840b, 0x840c, 0x8537,\n  0x8538, 0xface, 0x8539, 0x853a, 0x853b, 0x853c, 0x853d, 0x853e,\n  0x8540, 0x8541, 0x8542, 0x52fd, 0x8543, 0x868a,\n  /* 0x42 */\n  0x868b, 0x8890, 0x8859, 0x885b, 0x885c, 0x885d, 0x885e, 0x2a8a,\n  0x885f, 0x8860, 0x8861, 0x8862, 0x8863, 0x8864, 0x8893, 0x8865,\n  0x8866, 0x8867, 0x8868, 0x8869, 0x886a, 0x886b, 0x8895, 0x886c,\n  0x886d, 0x886e, 0x886f, 0x2a8c, 0x8870, 0x8871, 0x8872, 0x8873,\n  0x8874, 0x8875, 0x8876, 0x8877, 0x8878, 0x8879, 0x2a80, 0x887a,\n  0x2a7f, 0x887b, 0x88a9, 0x887c, 0x8bf1, 0x8beb, 0x8c8a, 0x8d3d,\n  0x8da6, 0x8da7, 0x8eba, 0x52fd, 0x8ebb, 0x8ebc, 0x8ebd, 0x9191,\n  0x9192, 0x9193, 0x9194, 0x9195, 0x9196, 0x9197, 0x90da, 0x9198,\n  0x9199, 0x919a, 0x52fd, 0x52fd, 0x919b, 0x919c, 0x919d, 0x919e,\n  0x919f, 0x91a0, 0x91bf, 0x91a1, 0x91a2, 0x91a3, 0x91a4, 0x91a5,\n  0x91a6, 0x91a7, 0x915b, 0xfb0d, 0x91a8, 0x95cb, 0x52fd, 0x09da,\n  0x95cc, 0x964f, 0x95cd, 0x95ce, 0x95cf, 0x964e,\n  /* 0x43 */\n  0x95d0, 0x95d1, 0x95d2, 0x52fd, 0x95d3, 0x95d4, 0x95d5, 0x95d6,\n  0x95d7, 0x95d8, 0x95d9, 0x95fa, 0x95da, 0x95db, 0xfb1c, 0x95dc,\n  0x52fd, 0x52fd, 0x95dd, 0x95de, 0x95df, 0x95e0, 0x95e1, 0x95e2,\n  0x95e3, 0x95e4, 0x95e5, 0x09db, 0x95e6, 0x95e7, 0x988e, 0x9998,\n  0x9999, 0x52fd, 0x9b0a, 0x52fd, 0x9b26, 0x9b27, 0x9cbd, 0x9cdf,\n  0x0ae2, 0x9cbe, 0x9cde, 0x9cbf, 0x9cc0, 0x9cc1, 0x9cc2, 0x9c9f,\n  0x9cc3, 0x9cc4, 0x9cc5, 0x9cc6, 0x9cc7, 0x0ae3, 0x9cc8, 0x9cc9,\n  0x9ce3, 0x9cca, 0x9ccb, 0x9ccc, 0x9ccd, 0x9cce, 0x9ccf, 0x9cd0,\n  0x9cd1, 0x9cd2, 0x9cd3, 0xfb2f, 0x9cd4, 0x9e04, 0x9e65, 0x9eee,\n  0x9fa0, 0x9fa1, 0xa0dd, 0xa0de, 0xa283, 0xa2fa, 0xa37f, 0xa380,\n  0xa4e8, 0xa4e9, 0xa4ea, 0x88a6, 0xa6e1, 0x52fd, 0xa7db, 0xa7dc,\n  0xa7dd, 0xa7de, 0xa7df, 0xa7e0, 0xa7e1, 0xa7e2,\n  /* 0x44 */\n  0xa7e3, 0xa7e4, 0xa7e5, 0xa7e6, 0x379c, 0xa7e7, 0xa9b0, 0xa998,\n  0xa9b1, 0xa999, 0xa9b2, 0xa9b3, 0xa9b4, 0xa9b5, 0xa9b6, 0xa9b7,\n  0xa9b8, 0xa9b9, 0xaae2, 0xaae3, 0xaae4, 0xaae5, 0xaae6, 0xaae7,\n  0xaae8, 0xaae9, 0xacad, 0xaccf, 0xacae, 0xacaf, 0xacb0, 0xacb1,\n  0xad92, 0xad93, 0xad94, 0xae79, 0x3a7b, 0xae7a, 0xae7b, 0xae7c,\n  0xae7d, 0xae7e, 0xae7f, 0xae80, 0xae81, 0xae82, 0xae83, 0xae84,\n  0xb197, 0xb184, 0xb185, 0xb189, 0xb186, 0xb187, 0xb32c, 0xb32d,\n  0xb32e, 0xb32f, 0xb330, 0xb331, 0xb332, 0xb333, 0xb334, 0xb335,\n  0xb336, 0xb337, 0xb5d2, 0xb744, 0xb800, 0xb883, 0xb884, 0xfb86,\n  0xba7a, 0xba7b, 0xba7c, 0xba7d, 0xba7e, 0x52fd, 0xba7f, 0xba87,\n  0xba80, 0xbd43, 0xc034, 0x1249, 0xc035, 0xc036, 0xc037, 0xc038,\n  0xc039, 0xc03a, 0xc03b, 0xc03c, 0xc03d, 0xc03e,\n  /* 0x45 */\n  0xc03f, 0xc040, 0xc041, 0xc042, 0xc043, 0xc044, 0xc045, 0xc046,\n  0xc047, 0xc048, 0xc049, 0xc04a, 0x52fd, 0xc04b, 0xc04c, 0xc04d,\n  0xc04e, 0xc5e7, 0xc5e8, 0xc5e9, 0xc5ea, 0xc5eb, 0xc5ec, 0xc5ed,\n  0xc5ee, 0xc8f7, 0xc99a, 0xc9cd, 0xfbc8, 0xc9a3, 0xc9ce, 0xcb31,\n  0xcb32, 0xcb33, 0xcce4, 0x52fd, 0xcce5, 0xcce6, 0xcfc8, 0xd074,\n  0xd075, 0xd076, 0xd077, 0xd078, 0xd079, 0xd07a, 0xd161, 0xd1df,\n  0xd1e0, 0xd1e1, 0xd1e2, 0xd1e3, 0xd1e4, 0xd1e5, 0xd1e6, 0x12f3,\n  0xd331, 0xd53d, 0xd53e, 0xd53f, 0xd5f4, 0xd5f5, 0xd5f6, 0x52fd,\n  0xd717, 0xd841, 0xd842, 0xd843, 0xd844, 0xd845, 0xd846, 0xd847,\n  0xd848, 0xd849, 0xd84a, 0xd84b, 0x46d2, 0xd9ba, 0xda44, 0xdc2a,\n  0xdc6d, 0x4774, 0xfbe7, 0xdc7e, 0xdc6e, 0xdc6f, 0xdc70, 0xdc71,\n  0xdc76, 0xdf79, 0x4aa0, 0x52fd, 0xe004, 0xdff8,\n  /* 0x46 */\n  0xe005, 0xe1da, 0xe1db, 0xe1dc, 0xe1dd, 0xe1de, 0xe1df, 0xe1e0,\n  0xe1e1, 0xe3c5, 0xe39a, 0xe39b, 0xe39c, 0xe4d8, 0xe4d9, 0xe4da,\n  0xe56e, 0x1557, 0xe76b, 0xd083, 0x52fd, 0xe9d6, 0xe9bd, 0x52fd,\n  0x852e, 0xedfc, 0xf053, 0xf0b7, 0xf58c, 0xf68e, 0xf5ff, 0x5376,\n  0x5406, 0x547e, 0x5684, 0x5685, 0x5686, 0x5687, 0x5688, 0x56a7,\n  0x5689, 0x568a, 0x568b, 0x568c, 0x568d, 0x568e, 0x568f, 0x56a3,\n  0x5690, 0x5691, 0x5692, 0x5693, 0x56ac, 0x5694, 0x5695, 0x5696,\n  0x57aa, 0x57ab, 0x589e, 0x18a9, 0x5908, 0x5909, 0x5968, 0x5969,\n  0x596a, 0x599a, 0x5ad9, 0x5ada, 0x5adb, 0x5ba8, 0x5c01, 0x5c28,\n  0x5c77, 0x5cbd, 0x5cbe, 0x6260, 0x5da0, 0x5da2, 0x5e0f, 0x5e85,\n  0x61fe, 0x61ff, 0x6200, 0x6201, 0x6216, 0x6202, 0x6203, 0x6204,\n  0x6205, 0x6206, 0x6207, 0x6208, 0x6222, 0x6209,\n  /* 0x47 */\n  0x620a, 0x620b, 0x620c, 0x6214, 0x6229, 0x616e, 0x620d, 0x620e,\n  0x620f, 0x6210, 0x6211, 0x6212, 0x6213, 0x651b, 0x651c, 0x651d,\n  0x6713, 0x66ff, 0x6700, 0x6701, 0x6702, 0x6703, 0x6704, 0x670a,\n  0x6705, 0x6706, 0x6707, 0x6708, 0x683a, 0x6873, 0x696f, 0x6970,\n  0x6971, 0x5352, 0x52fd, 0x6d9a, 0x6b60, 0xfa69, 0x6b2b, 0x6b24,\n  0x6b2c, 0x6b2d, 0x6b2e, 0x6b2f, 0x6b30, 0x6b31, 0x6b32, 0x6b33,\n  0x6b34, 0x6b35, 0x6b45, 0x6b36, 0x6c92, 0x6c93, 0x6d88, 0x6d89,\n  0x6d8a, 0x6d8b, 0x6e3f, 0x52fd, 0x6fca, 0x71f6, 0x71f7, 0x71f8,\n  0x71f9, 0x742b, 0x52fd, 0x74a4, 0x74ce, 0x52fd, 0x759e, 0x759f,\n  0x75a0, 0x75a1, 0x75a2, 0x75a3, 0x75a4, 0x75a5, 0x75a6, 0x7718,\n  0x7860, 0x7861, 0x7862, 0x7863, 0x7864, 0x7abd, 0x7abe, 0x7b0b,\n  0x7abf, 0x7ac0, 0x52fd, 0x7b0c, 0x7a8d, 0x7b0d,\n  /* 0x48 */\n  0x7b0e, 0x7b5e, 0x7b0f, 0x7b10, 0x7ac1, 0x7b11, 0x52fd, 0x7ac2,\n  0x7cea, 0x7ceb, 0x7fe3, 0x7fe4, 0x7fe5, 0x7fe6, 0x7fe7, 0x7f92,\n  0x804a, 0x52fd, 0x7fe8, 0x7fe9, 0x7fea, 0x8001, 0x7feb, 0x7fec,\n  0x7fef, 0x7fed, 0x7fee, 0x7ff0, 0x7ff1, 0x7ff2, 0x7ff3, 0x7ff4,\n  0x7ff5, 0x7ff6, 0x7ff7, 0x7ff8, 0x7ff9, 0x7ffe, 0x7ffa, 0x7ffb,\n  0x7ffc, 0x8563, 0x8564, 0x8565, 0x8566, 0x8567, 0x8568, 0x890b,\n  0x890d, 0x07bc, 0x890e, 0x890f, 0x07a4, 0x8914, 0x88d4, 0x88d5,\n  0x88d6, 0x88d7, 0x88d8, 0x88d9, 0x88da, 0x88db, 0x88dc, 0x88dd,\n  0x88de, 0x88df, 0x88e0, 0x88e1, 0x88e2, 0x88e3, 0x88e4, 0x88e5,\n  0x88e6, 0x88e7, 0x88e8, 0x88e9, 0x88ea, 0x88eb, 0x88ec, 0x89ec,\n  0x88ed, 0x88ee, 0x88ef, 0x8900, 0x88f0, 0x8c04, 0x52fd, 0x8c05,\n  0xfaf3, 0x8db5, 0xfaf9, 0x8ed6, 0x8ed7, 0x8ed8,\n  /* 0x49 */\n  0x8ed9, 0x91a9, 0x9200, 0x9201, 0x9202, 0x9203, 0x9204, 0x9205,\n  0x9206, 0x923f, 0x9207, 0x9208, 0x9209, 0x920a, 0x91b6, 0x920b,\n  0x920c, 0x52fd, 0x52fd, 0x920d, 0x52fd, 0x920e, 0x920f, 0x9210,\n  0x9211, 0x9212, 0x9235, 0x9213, 0x9214, 0x91aa, 0x52fd, 0x92c1,\n  0x9215, 0x9216, 0x9217, 0x961e, 0x961f, 0x9620, 0x9621, 0x52fd,\n  0x9622, 0x9623, 0x3195, 0x9624, 0x9625, 0x9626, 0x9627, 0x9628,\n  0x9629, 0x962a, 0x962b, 0x9607, 0x962c, 0x962d, 0x962e, 0x09e8,\n  0x52fd, 0x962f, 0x9630, 0x9648, 0x9631, 0x9632, 0x3198, 0x9633,\n  0x52fd, 0x9634, 0x9635, 0x9636, 0x9859, 0x9891, 0x98e7, 0x99b8,\n  0x99b9, 0x99ba, 0x99bb, 0x99c8, 0x9b4d, 0x9b89, 0x9b50, 0x9b28,\n  0x9cfb, 0x9cfc, 0x9cfd, 0x9cfe, 0x9cff, 0x3378, 0x9d00, 0x9d01,\n  0x9d02, 0x9ce4, 0x9ce5, 0x9d03, 0x9d04, 0x9d05,\n  /* 0x4a */\n  0x9d06, 0x9d07, 0x9d13, 0x9d08, 0x9d09, 0x9ce6, 0x9d0a, 0x9d0b,\n  0x9d0c, 0x9e0b, 0x9ef4, 0x9f0a, 0x9fb1, 0xa11d, 0xfb3b, 0xa28b,\n  0xa28c, 0xa28f, 0xa28d, 0xa28e, 0xa306, 0xa386, 0xa522, 0xa523,\n  0xa524, 0xa525, 0xa526, 0xa527, 0xa528, 0xa6f1, 0x37b9, 0xa823,\n  0xa812, 0x52fd, 0xa813, 0xa814, 0xa815, 0xa816, 0xa817, 0xa818,\n  0xa819, 0xa84b, 0xa81a, 0xa81b, 0xa81c, 0x52fd, 0xa81d, 0xa81e,\n  0xa81f, 0xa820, 0xa9ca, 0x75ac, 0xa9cb, 0xa9cc, 0xa9cd, 0xa9ce,\n  0x52fd, 0xa9cf, 0xab10, 0xab11, 0xab12, 0xab13, 0xab14, 0xab0f,\n  0xab15, 0xab16, 0xab17, 0x3933, 0xab18, 0xacc6, 0xad9f, 0xada0,\n  0xada4, 0xada1, 0xaeb5, 0xaeb6, 0xaeb7, 0xaeb8, 0xaeb9, 0xaeba,\n  0xaed0, 0xaec6, 0xaebb, 0xaebc, 0xaebd, 0xaebe, 0xaebf, 0xaec0,\n  0xaec1, 0xaec2, 0xfb60, 0xb1a7, 0xb1a8, 0xb1a9,\n  /* 0x4b */\n  0xb1aa, 0xb1ab, 0xb1ac, 0xb1bc, 0xb1ad, 0xb1ae, 0x3bc0, 0xb1af,\n  0xb1b0, 0xb1b1, 0x3bc1, 0xb1b4, 0xb1b2, 0xb366, 0xb367, 0xb368,\n  0xb369, 0xb36a, 0xb36b, 0xb36c, 0xb36d, 0xb36e, 0xb36f, 0x52fd,\n  0xb53e, 0xb53f, 0xb540, 0xb5e8, 0xb752, 0xb753, 0xb754, 0xb755,\n  0xb891, 0xb892, 0xb893, 0xb894, 0xb895, 0xb896, 0xb897, 0xb898,\n  0x52fd, 0xb899, 0xb89a, 0xb89b, 0xbab7, 0xbab8, 0xbab9, 0x52fd,\n  0xbaba, 0xbabb, 0xbabd, 0x52fd, 0xbabc, 0xfb88, 0xfb87, 0xbbeb,\n  0xbbec, 0xbc16, 0xbc44, 0xbce3, 0xbd58, 0xbd53, 0xbd54, 0xbde0,\n  0xc0b1, 0xc0b2, 0xc0b3, 0xc0ea, 0x52fd, 0xc0b4, 0xc0f0, 0xc0b5,\n  0xc0b6, 0xc0b7, 0xc0b8, 0xc0b9, 0xc0ba, 0xc0bb, 0xc0bc, 0xc0bd,\n  0xc0be, 0xc0bf, 0xc0c0, 0xc0c1, 0xc0c2, 0xc0c3, 0x52fd, 0xc0c4,\n  0xc0c5, 0xc0c6, 0xc0fc, 0xc0c7, 0xc0c8, 0xc0c9,\n  /* 0x4c */\n  0xc0ca, 0xc0cb, 0xc0cc, 0xc184, 0xc0cd, 0xc0ce, 0xc0cf, 0xc0d0,\n  0xc0d1, 0xc0d2, 0xc4ca, 0xc4cb, 0xc636, 0xc637, 0xc69f, 0xc638,\n  0xc639, 0xc63a, 0x4144, 0xc9be, 0xc9f0, 0xc9bf, 0xc9c0, 0xcaf7,\n  0xcaf8, 0xcafa, 0xcb43, 0xcb44, 0xcd0f, 0xcd10, 0xcd11, 0xcd12,\n  0x43ad, 0xcd13, 0xcd14, 0xcd15, 0xcd16, 0x52fd, 0x52fd, 0xcfd3,\n  0xcfd7, 0x52fd, 0xd0b0, 0xd098, 0xd090, 0xd091, 0xd092, 0xd097,\n  0xd093, 0xd164, 0xd201, 0xd202, 0xd203, 0xd204, 0xd205, 0xd206,\n  0xd207, 0xd35a, 0xd35b, 0xd54e, 0xd54f, 0xd550, 0xd619, 0xd61a,\n  0xd61b, 0x52fd, 0xd61c, 0x52fd, 0xd719, 0xd71a, 0x1386, 0xdc8a,\n  0xd86e, 0xd86f, 0x4664, 0xd870, 0xd871, 0xd872, 0xd873, 0xd874,\n  0xd875, 0xd876, 0xdb3a, 0xdb3b, 0xdb3c, 0xdb5a, 0xdb3d, 0xdb42,\n  0xdc8b, 0xdca0, 0xdc8c, 0xdc8d, 0xdc8e, 0xdcab,\n  /* 0x4d */\n  0xdc8f, 0x4777, 0xdc90, 0xdc91, 0xdc92, 0xdcaa, 0x47af, 0xdc93,\n  0xdc94, 0xdc9e, 0xdca8, 0x52fd, 0x52fd, 0xe200, 0xe201, 0xe202,\n  0xe203, 0xe204, 0xe205, 0xe2c4, 0xe2c5, 0x52fd, 0xe3ae, 0xe3b2,\n  0x52fd, 0x52fd, 0xe4f7, 0xe513, 0xe69e, 0xe785, 0xa680, 0xe7c8,\n  0xeb41, 0xeb81, 0xeb82, 0xeb83, 0xeb84, 0xedc4, 0xedc5, 0xedc6,\n  0xef95, 0xef96, 0xef97, 0xf058, 0xf059, 0x52fd, 0xf2a9, 0xf2aa,\n  0xf2ab, 0xf58e, 0xf603, 0xf6b3, 0x5e82, 0x5353, 0x5483, 0x5484,\n  0x5485, 0x56cc, 0x56cd, 0x56ce, 0x56cf, 0x56d0, 0x52fd, 0x56d1,\n  0x56d2, 0x56da, 0x57b3, 0x57b4, 0x52fd, 0x5913, 0x590e, 0x596b,\n  0x5c03, 0x5c61, 0x5cc1, 0x5cc2, 0x5db5, 0x5440, 0x6298, 0x6299,\n  0x629a, 0x629b, 0x629c, 0x629d, 0x629e, 0x629f, 0x62ee, 0x62a0,\n  0x62a1, 0x6286, 0x6525, 0x6734, 0x6735, 0x6751,\n  /* 0x4e */\n  0x672d, 0x9662, 0x6754, 0x6752, 0x026d, 0x6736, 0x6737, 0x6738,\n  0x6739, 0x673a, 0x673b, 0x6768, 0x673c, 0x026e, 0x6877, 0x8596,\n  0x697e, 0x697f, 0x6b69, 0x6b6a, 0x6b6b, 0x6b6c, 0x6b6d, 0x6b6e,\n  0x6b6f, 0x6b5d, 0x6b70, 0x6b85, 0x6b71, 0x6b72, 0x6b73, 0x6b74,\n  0x6b75, 0x6b76, 0x6b84, 0x6b77, 0x6b83, 0x6c9a, 0x6da7, 0x6da8,\n  0x6da9, 0x6daa, 0x6dab, 0x6dac, 0x6db7, 0x6dad, 0x6dae, 0x52fd,\n  0x6e45, 0x6fd3, 0x6fd4, 0x6fd5, 0x6fd6, 0x6fd7, 0x7226, 0x7227,\n  0x7228, 0x52fd, 0x7229, 0x722a, 0x7305, 0x2364, 0x74d0, 0x75b7,\n  0x52fd, 0x75b8, 0x75b9, 0x7722, 0x7723, 0x7873, 0x7874, 0x7b8f,\n  0x7b12, 0x7b13, 0x7b14, 0x7b15, 0x7b16, 0x7b17, 0x7b18, 0x7b61,\n  0x7b66, 0x7b67, 0x7b19, 0x7b68, 0x7b1a, 0x7b69, 0x7d04, 0x7d05,\n  0x52fd, 0x7d06, 0x7cfd, 0x8050, 0x8051, 0x8052,\n  /* 0x4f */\n  0x8053, 0x8054, 0x8055, 0x8063, 0xfac4, 0x8056, 0x8057, 0x8058,\n  0x8059, 0x805a, 0x805b, 0x52fd, 0x805c, 0x805d, 0x805e, 0x805f,\n  0x82d7, 0x52fd, 0x8360, 0x8361, 0x8417, 0x8439, 0x858f, 0x85c8,\n  0x8590, 0x8591, 0x8698, 0x8699, 0x8944, 0x8945, 0x8946, 0x8959,\n  0x89ee, 0x2b2b, 0x8947, 0x8948, 0x52fd, 0x8949, 0x894a, 0x894b,\n  0x894c, 0x894d, 0x894e, 0x894f, 0x8950, 0x8951, 0x8952, 0x8953,\n  0x8954, 0x8955, 0x8956, 0x8c15, 0x8c9a, 0x8d58, 0x8dfc, 0x8dfd,\n  0x9286, 0x9287, 0x9288, 0x9289, 0x928a, 0x928b, 0x928c, 0x52fd,\n  0x931f, 0x928d, 0x928e, 0x928f, 0x9290, 0x9291, 0x9292, 0x9293,\n  0xfb11, 0x9294, 0x9295, 0x91ca, 0x9218, 0x52fd, 0x9296, 0x9297,\n  0x9298, 0x9299, 0x929a, 0x929b, 0x929c, 0x929d, 0x929e, 0x929f,\n  0x2f46, 0x52fd, 0x92a0, 0x92a1, 0x2f9a, 0x92b7,\n  /* 0x50 */\n  0x52fd, 0x9696, 0x9668, 0x9669, 0x968c, 0x966a, 0x966b, 0x966c,\n  0x966d, 0x966e, 0x966f, 0x967f, 0x9684, 0x9670, 0x9671, 0x9685,\n  0x9672, 0x9673, 0x9674, 0x9675, 0x9676, 0x52fd, 0x9677, 0x9678,\n  0x9679, 0x967a, 0x967b, 0x967c, 0xfb1e, 0x9894, 0x99d5, 0x9b29,\n  0x9d2b, 0x9d2c, 0x9d2d, 0x9d2e, 0x9d2f, 0x9d30, 0x9d3e, 0x9d31,\n  0x9d32, 0x9d33, 0x9d34, 0x9d35, 0x9e11, 0x0b53, 0x9fc0, 0xa142,\n  0xa143, 0xa144, 0xa145, 0xa146, 0xa38c, 0xa38d, 0xa38e, 0xa38f,\n  0xa390, 0xa391, 0xa563, 0xa564, 0xa565, 0x52fd, 0xfb4a, 0x52fd,\n  0xa6f6, 0xa836, 0xa837, 0xa82c, 0xa838, 0xa839, 0x52fd, 0xa83a,\n  0xa9e3, 0xa9e2, 0xa9f5, 0xab47, 0x52fd, 0xab48, 0xab49, 0xab4a,\n  0xab4b, 0xab4c, 0xada8, 0xada9, 0xadaa, 0x52fd, 0xaf0b, 0xaf06,\n  0xaf73, 0xaf0c, 0xaf0d, 0xaf0e, 0xaf0f, 0xaf10,\n  /* 0x51 */\n  0x52fd, 0xaf11, 0xfb62, 0xaf12, 0xaf14, 0xaf15, 0xaf16, 0x52fd,\n  0xaf13, 0xaf17, 0xb1d9, 0xb1da, 0xb1db, 0x52fd, 0xb1dc, 0xb3a6,\n  0xb3a7, 0xb3a8, 0xb3a9, 0xb3aa, 0xb3ab, 0x52fd, 0xfb6d, 0xb3ac,\n  0xb3ad, 0xb3ae, 0x52fd, 0x52fd, 0xb3af, 0xb3b0, 0xb3b1, 0xb544,\n  0xb545, 0xb5f7, 0xb5f8, 0xb76b, 0xb76c, 0xb761, 0xb812, 0xb8af,\n  0xb8b0, 0xb8b1, 0xb8b2, 0xb8b3, 0xb8b4, 0xb8b5, 0xb8b6, 0xb922,\n  0xbaea, 0xbaeb, 0xbaec, 0xbaed, 0x0f3d, 0xbbed, 0xbc1b, 0xbc47,\n  0xbce8, 0xbdd0, 0xbde7, 0xbde8, 0xbde9, 0xc14e, 0xc14f, 0xc150,\n  0xc172, 0xc151, 0xc152, 0xfba7, 0x1026, 0xc153, 0xc154, 0xc155,\n  0xc156, 0xc157, 0xc177, 0xc158, 0xc159, 0xc15a, 0xc15b, 0xc15c,\n  0xc16e, 0xc15d, 0x1027, 0x52fd, 0xc15e, 0x1028, 0xc15f, 0x52fd,\n  0xc4d7, 0xc689, 0xc68a, 0x52fd, 0xfbbe, 0xc68b,\n  /* 0x52 */\n  0xc68c, 0xc68d, 0xc68e, 0xfbbc, 0xc68f, 0x52fd, 0xc69a, 0xc690,\n  0xc691, 0xc692, 0xc693, 0xca12, 0xc9f1, 0x52fd, 0xcafe, 0xcafb,\n  0xcb57, 0xcd49, 0xcd4a, 0xcd4b, 0xcd4c, 0x52fd, 0xcd4d, 0xcd59,\n  0xcd4e, 0xcd4f, 0xcef4, 0xcf65, 0xd0a6, 0xd0a7, 0xd0a8, 0xd222,\n  0xd223, 0xd38b, 0xd38c, 0xd38d, 0xd38e, 0xd558, 0x52fd, 0xd559,\n  0xd63b, 0xd63c, 0xd63d, 0xd63e, 0xd748, 0xd894, 0xd895, 0xd896,\n  0xd897, 0xd898, 0xda7d, 0xd9fe, 0xda7e, 0xda7f, 0x52fd, 0xdb5b,\n  0xdb5c, 0xdce4, 0xdcc1, 0xdcfd, 0xdcc2, 0xdcd6, 0xdcc3, 0xdcc4,\n  0x52fd, 0xdcdc, 0xdcc5, 0xdcc6, 0xdcc7, 0xdce1, 0xdcc8, 0xdcc9,\n  0xdcca, 0xdccb, 0x47f2, 0xdccc, 0xdccd, 0xe035, 0xe036, 0xe047,\n  0xe037, 0xe21b, 0xe21c, 0xe21d, 0xe21e, 0xe21f, 0xe220, 0xe27b,\n  0xe27a, 0xe2fe, 0xe3c6, 0xe3c7, 0xe3c8, 0xe3c9,\n  /* 0x53 */\n  0xe3ca, 0x52fd, 0xe7a0, 0xe7a1, 0xe8cc, 0xe8cd, 0xe9f1, 0xe9d7,\n  0xeb42, 0xeb46, 0xeba3, 0xeba5, 0xeba6, 0xedcb, 0xedcc, 0xee26,\n  0xee27, 0xee28, 0xee29, 0xefae, 0xefaf, 0xefb0, 0xf073, 0x52fd,\n  0xf07c, 0xf074, 0x52fd, 0xf280, 0xf075, 0x4c79, 0x52fd, 0xf2cf,\n  0x52fd, 0xf68f, 0x5970, 0x5385, 0x5697, 0x56f6, 0x56f7, 0x56f8,\n  0x56fa, 0x56fb, 0x57ba, 0x57bb, 0x57bc, 0x57bd, 0x5834, 0x5835,\n  0x58a2, 0x5914, 0x5911, 0x596e, 0x596f, 0x5b08, 0x5bb8, 0x5d09,\n  0x5dbd, 0x5dbe, 0x5e88, 0x62fe, 0x1d7a, 0x62ff, 0x6300, 0x6301,\n  0x6302, 0x6303, 0x6304, 0x6305, 0x6306, 0x52fd, 0x6307, 0x6308,\n  0x6309, 0x630a, 0x630b, 0x630c, 0x630d, 0x630e, 0x630f, 0x52fd,\n  0x52fd, 0x52fd, 0x652c, 0x676b, 0x52fd, 0x676c, 0x6787, 0x676d,\n  0x6878, 0x698b, 0x6ba4, 0x6ba5, 0x6ba6, 0x6ba7,\n  /* 0x54 */\n  0x6bbe, 0x6ba8, 0x6ba9, 0x6baa, 0x6b8d, 0x6bab, 0x6bac, 0x6bbf,\n  0x52fd, 0x032c, 0x6bad, 0x6bae, 0x6ca4, 0x6ca5, 0x6dc7, 0x6dc8,\n  0x6dc9, 0xd0bc, 0x6dca, 0x6dcb, 0x6dcc, 0x6dcd, 0x6dce, 0x6f19,\n  0x6fe6, 0x724c, 0x724d, 0x724e, 0x7306, 0x52fd, 0x75cd, 0x75ce,\n  0x75cf, 0x75d0, 0x245c, 0x7881, 0x7882, 0x5833, 0x7b6a, 0x7b6b,\n  0x7bb2, 0x7b6c, 0x7b6d, 0x7bcc, 0x7bae, 0x7bb3, 0x7b91, 0x52fd,\n  0x7b6e, 0x7bb4, 0x7b6f, 0x80c9, 0x80a7, 0x80a8, 0x80a9, 0x80aa,\n  0x80ab, 0x80ac, 0x80ad, 0x80ae, 0x80af, 0x80b0, 0x8060, 0x80b1,\n  0x81e1, 0x82e3, 0x82f6, 0x26d9, 0x85af, 0x85b0, 0x85b1, 0x85ba,\n  0x85b2, 0x85b3, 0x864c, 0x52fd, 0x86a0, 0x86a1, 0x89b0, 0x89b1,\n  0x89b2, 0x89b3, 0x89b4, 0xfaeb, 0x89b5, 0x89b6, 0x89b7, 0x89b8,\n  0x89b9, 0x89ba, 0x2b72, 0x89bb, 0x89bc, 0x89bd,\n  /* 0x55 */\n  0x89be, 0x89bf, 0x89df, 0x89c0, 0x89c1, 0x89c2, 0x89c3, 0x89c4,\n  0x2b78, 0x52fd, 0x89c5, 0x89c6, 0x89c7, 0x89c8, 0x89c9, 0x89ca,\n  0x8a3c, 0x89cb, 0x89cc, 0x89cd, 0x89ce, 0x89cf, 0x89d0, 0x89d1,\n  0x2c5a, 0x8c1d, 0x8c1e, 0x8d64, 0x8d65, 0x8dc5, 0x8dc6, 0x8dc7,\n  0x8dff, 0x8eff, 0x8f00, 0x8f01, 0x8f02, 0x92f5, 0x935c, 0x92f6,\n  0x92f7, 0x92b0, 0x92f8, 0x92f9, 0x935d, 0x9350, 0x92fa, 0x92fb,\n  0x92a2, 0x92fc, 0x92fd, 0x92fe, 0x92ff, 0xfb13, 0x9300, 0xfb1f,\n  0x96c1, 0x96c2, 0x96c3, 0x96c4, 0x96c5, 0x96c6, 0x96c7, 0x96c8,\n  0x96c9, 0x96ca, 0x96cb, 0xe3ef, 0x96d7, 0x96cc, 0x96cd, 0x96ce,\n  0x9722, 0x96cf, 0x96d0, 0x52fd, 0x96d1, 0x96d2, 0x96e9, 0x96d3,\n  0x96d4, 0x96d5, 0x9838, 0x633b, 0x9b7d, 0x586f, 0x9ba1, 0x9d53,\n  0x9d54, 0x0afb, 0x9d55, 0x9d3c, 0x9d56, 0x52fd,\n  /* 0x56 */\n  0x9d66, 0x0afc, 0x9d57, 0x9d58, 0x9d59, 0x9d5a, 0x9d5b, 0x9d67,\n  0x9d5c, 0x52fd, 0x52fd, 0x9d6a, 0x9d5d, 0x9d3d, 0x9d5e, 0x9d65,\n  0x9fe1, 0x9fcd, 0xf311, 0xa16f, 0xa170, 0xa31a, 0xa39a, 0xa39b,\n  0xa39c, 0xa39e, 0xa39f, 0xfb3f, 0xa58e, 0x52fd, 0xa6fd, 0x52fd,\n  0xa85e, 0xa85f, 0xa860, 0xa865, 0xa867, 0xa868, 0xa869, 0x52fd,\n  0xa86a, 0xa88f, 0xa86b, 0xa86c, 0xa86d, 0xa9f7, 0xa9f8, 0xa9f9,\n  0xa9e4, 0xa9fa, 0xabb1, 0xab75, 0xab76, 0xacff, 0xad00, 0xad01,\n  0xad02, 0xad03, 0xadae, 0xadad, 0xaf51, 0xaf52, 0x52fd, 0xaf53,\n  0xaf54, 0xaf55, 0xaf56, 0xaf57, 0xaf58, 0xaf59, 0xaf5a, 0xaf5b,\n  0xaf5c, 0xaf5d, 0xaf5e, 0xaf5f, 0xaf60, 0xaf61, 0xaf62, 0xaf63,\n  0xaf64, 0xaf4c, 0xaf66, 0xb1f1, 0xb1f2, 0xb3f2, 0xb3f3, 0xb3f4,\n  0xb3f5, 0xb3f6, 0xb3f7, 0xb3f8, 0xb3f9, 0xb3fa,\n  /* 0x57 */\n  0xb54c, 0xb54b, 0xb61b, 0xb6ce, 0xb6b3, 0xb77f, 0xfb79, 0xfb7c,\n  0xb81a, 0xb8c4, 0xb8c5, 0xb8c6, 0xb8c7, 0xb8c8, 0xb8c9, 0x52fd,\n  0xbb19, 0xbb1c, 0xbb1a, 0xbc4c, 0xbc8e, 0xbd7e, 0xc1eb, 0xc1ec,\n  0xc1ed, 0xc1ee, 0xc1ef, 0xc1f0, 0xc1f1, 0xc1d8, 0xc1d9, 0xc1da,\n  0xc1db, 0xc1f2, 0xc1f3, 0xc1f4, 0xc207, 0x52fd, 0xfbac, 0x52fd,\n  0xc1f5, 0xc215, 0x52fd, 0xc1f6, 0xc1f7, 0xc1f8, 0xc1f9, 0xc1fa,\n  0xc1fb, 0xc1fc, 0xc1fd, 0xc1fe, 0xc2a7, 0xc1ff, 0xc200, 0xc201,\n  0xc202, 0xc203, 0xc204, 0xc205, 0xc4e9, 0xc4ea, 0xc4eb, 0xc6de,\n  0xc6df, 0x52fd, 0xc6e0, 0xc6e1, 0xc6e2, 0xc6e3, 0xca3e, 0xca3f,\n  0xca40, 0xca41, 0xcb71, 0xcb72, 0xcb73, 0xcd88, 0xcd89, 0xcd8a,\n  0xcd8b, 0xcd8c, 0xcd8d, 0xcd8e, 0xcd8f, 0xcd90, 0xcd91, 0xcd92,\n  0x52fd, 0xcff1, 0xd0be, 0xd0bf, 0xd0c0, 0xd0c1,\n  /* 0x58 */\n  0xd0c2, 0xd0c3, 0xd16e, 0xd237, 0xd257, 0xd238, 0xd239, 0xd23a,\n  0xd23b, 0xd23c, 0xd23d, 0xd23e, 0xd227, 0xd23f, 0x52fd, 0x52fd,\n  0xd3c0, 0xd3c1, 0x44be, 0xd567, 0x52fd, 0xd568, 0xd658, 0xd665,\n  0xd659, 0xd65a, 0xd724, 0xd8cd, 0xd8ce, 0xd8cf, 0xd8d2, 0xda9f,\n  0xda22, 0xdb7d, 0xdb7e, 0xdcff, 0xdd25, 0xdd00, 0xdd01, 0x483b,\n  0xdd02, 0xdd03, 0xdd04, 0x5128, 0xdd05, 0xdd06, 0xdd07, 0xdd16,\n  0xdd08, 0xdd17, 0xdd09, 0xdd0a, 0x4840, 0xdd0b, 0xdd0c, 0xdd29,\n  0x483a, 0xdd0d, 0x52fd, 0xdd0e, 0xdd10, 0xdd11, 0xdd1d, 0xdd12,\n  0xdd13, 0x52fd, 0xdd14, 0xdd15, 0xdf8d, 0xe054, 0xe055, 0xe056,\n  0xe233, 0xe234, 0xe235, 0xe236, 0xe2fa, 0xe3e3, 0xe3e6, 0xe3ed,\n  0xe3e7, 0xe3e8, 0xe3e9, 0xe3ea, 0xe3eb, 0xe527, 0xe520, 0xfbf8,\n  0xe72a, 0xe7c9, 0x52fd, 0xe7ca, 0xe7cb, 0xe7d9,\n  /* 0x59 */\n  0xe7cc, 0xe7cd, 0xe7ce, 0x52fd, 0xe8e1, 0xea1b, 0xea1c, 0xea1d,\n  0xea1e, 0xeb47, 0xebd1, 0xebc9, 0xedd0, 0xedd1, 0xee3f, 0xee40,\n  0xee41, 0xfc09, 0xee42, 0xefc4, 0xf09b, 0xf092, 0xf093, 0x4c96,\n  0xf094, 0xf095, 0x52fd, 0x52fd, 0xf2f3, 0xf2f4, 0xf2f5, 0xf2f6,\n  0xf560, 0xf59e, 0xf5a0, 0xf5a1, 0xf61c, 0xf69f, 0x5356, 0x5712,\n  0x571f, 0x5715, 0x5716, 0x5717, 0xfa0c, 0x5718, 0x57c2, 0x57c3,\n  0x57c4, 0x58a1, 0x591b, 0x591c, 0x5971, 0x5b13, 0x5e17, 0x5e8f,\n  0x635f, 0x6360, 0x63ac, 0x52fd, 0x52fd, 0x6361, 0x6362, 0x6363,\n  0x6364, 0x6365, 0x52fd, 0x6799, 0x679a, 0x679b, 0x679c, 0x679d,\n  0x679e, 0x679f, 0x67a0, 0x6bda, 0x6bdb, 0x6bdc, 0x6bdd, 0x6bde,\n  0x6bdf, 0x6dd5, 0x6dd6, 0x6dd7, 0x6dd8, 0x6de0, 0x6eb4, 0x52fd,\n  0x726e, 0x726f, 0x7270, 0x7463, 0x52fd, 0x75d5,\n  /* 0x5a */\n  0x75d6, 0x75d7, 0x75d8, 0x7730, 0x7bb5, 0x7bb6, 0x7bc1, 0x7bf7,\n  0x05a0, 0x7bcb, 0x7be8, 0x52fd, 0x7be9, 0x7bb7, 0x7d15, 0x80e6,\n  0x80e7, 0x80e8, 0x80e9, 0x80ea, 0x80eb, 0xfaca, 0x830b, 0x830c,\n  0x8364, 0x85d4, 0x85d5, 0x85d6, 0x85d8, 0x86a5, 0x535b, 0x8a0f,\n  0x8a10, 0x52fd, 0x8a11, 0x8a12, 0x8a13, 0x8a14, 0x8a15, 0x8a16,\n  0x8a17, 0x8a18, 0x8a19, 0x8a1a, 0x8a2f, 0x8a1b, 0x8a1c, 0x8a3f,\n  0x8a1d, 0x8a1e, 0x8a2c, 0x8a1f, 0x8c24, 0x8ca4, 0x8ca5, 0xb551,\n  0x8dfe, 0x8f11, 0x8f12, 0x8f13, 0x8f54, 0x935e, 0x9321, 0x933f,\n  0x9340, 0x9341, 0x9342, 0x9343, 0x9344, 0x9320, 0x9345, 0x52fd,\n  0x9346, 0x93b0, 0x9347, 0x9357, 0x9301, 0x93b1, 0x935a, 0x9348,\n  0x9704, 0x9705, 0x31f5, 0x974f, 0x9750, 0x9706, 0x9707, 0x9708,\n  0x9709, 0x970a, 0x970b, 0x970c, 0x970d, 0x970e,\n  /* 0x5b */\n  0x970f, 0x9710, 0x9711, 0x9833, 0x9834, 0x9835, 0x98fc, 0x98fd,\n  0x9bb0, 0x9bb1, 0x9bb2, 0x9bb3, 0x0b01, 0x9d7b, 0x9d7c, 0x9d7d,\n  0x9d7e, 0x9d7f, 0x9d80, 0x9d81, 0x9d82, 0x9ef9, 0x9fda, 0xa1a1,\n  0x52fd, 0x52fd, 0xa3ad, 0xa3ae, 0x52fd, 0xa5c8, 0xa5c9, 0xa5ca,\n  0xa882, 0xa883, 0xa884, 0xa885, 0xa886, 0xa887, 0xa888, 0xa889,\n  0xa88a, 0x52fd, 0xaa07, 0xaa08, 0xaa01, 0xaa09, 0xaa02, 0xaa0a,\n  0xaa0b, 0xaa0c, 0xaba7, 0xab98, 0xab99, 0xab9a, 0xab9b, 0xab9c,\n  0x3950, 0xab9d, 0xad1a, 0xadb2, 0xafb0, 0xafb1, 0x3b14, 0xafb2,\n  0xafb3, 0xafb4, 0xafb5, 0xafb6, 0xafc0, 0xafb7, 0xafb8, 0xafb9,\n  0xafba, 0xb01d, 0xb20c, 0xb20d, 0xb20e, 0xb235, 0xb20f, 0xb210,\n  0xb211, 0xb212, 0xb422, 0xb423, 0xb424, 0x52fd, 0xb425, 0xb426,\n  0xb427, 0xb428, 0xb429, 0xb42a, 0xb42b, 0xb42c,\n  /* 0x5c */\n  0xb42d, 0xb42e, 0xb552, 0xb553, 0xb619, 0xb6bf, 0xb78b, 0xb78c,\n  0xb823, 0xb824, 0xb8f1, 0xb8d8, 0xfb7f, 0xbb4e, 0xbb4f, 0xbb55,\n  0xbb50, 0xbb51, 0xbb52, 0xbb53, 0xbb02, 0xbb54, 0xbbf1, 0xbc24,\n  0xbdd1, 0xc27c, 0xc27d, 0xc27e, 0xc27f, 0xc280, 0xc29f, 0xc281,\n  0xc282, 0xc283, 0xc284, 0xc285, 0xc286, 0xc287, 0xc288, 0xc29b,\n  0xc289, 0xc28a, 0xc28b, 0xc28c, 0x52fd, 0xc2a1, 0xc28d, 0xc28e,\n  0xc4f3, 0xc4f4, 0xc4f5, 0xc724, 0xc725, 0xc726, 0xc727, 0xc728,\n  0xc729, 0xc72a, 0x52fd, 0xc72b, 0xc8cd, 0xc901, 0x788d, 0xca70,\n  0xcb80, 0xcb81, 0xcdc0, 0xcdc1, 0xcdc2, 0xcdc3, 0xcdc4, 0xcdc5,\n  0xcdc6, 0xcdc7, 0xcdc8, 0xcffe, 0x52fd, 0xd0d9, 0xd0dc, 0xd0da,\n  0xd175, 0xd258, 0xd259, 0xd25a, 0xd25b, 0xd25c, 0xd3ec, 0x131a,\n  0xd3f3, 0xd572, 0xd573, 0xd682, 0xd683, 0xd72a,\n  /* 0x5d */\n  0xd72b, 0xd72c, 0xd72d, 0xd8f6, 0xd900, 0xd8f7, 0xd8f8, 0xd8f9,\n  0x52fd, 0xdb94, 0xdb95, 0xdb96, 0xdc1b, 0xdd86, 0xdd4c, 0xdd4d,\n  0xdd83, 0x52fd, 0xdd82, 0xdd4e, 0xdd4f, 0xdd50, 0xdd51, 0xdd81,\n  0x4887, 0xdd52, 0xdd53, 0xdd54, 0xdd55, 0x52fd, 0xdd56, 0xdd57,\n  0x4885, 0xdd58, 0xdd5b, 0xdd5c, 0xdd5d, 0xdd5e, 0xdd5f, 0xdd60,\n  0xdd61, 0xdd7c, 0xdd62, 0x143c, 0x52fd, 0xdd63, 0xdd64, 0xe073,\n  0xe245, 0xe246, 0xe247, 0xe24c, 0xe312, 0x52fd, 0xe313, 0xe439,\n  0xe403, 0xe40d, 0xe530, 0xe5d5, 0xe6c0, 0xe7f2, 0xe7f3, 0xe7f4,\n  0xe7f5, 0xe7f6, 0xe7f7, 0xe8fa, 0xe8fb, 0xea45, 0xea46, 0xeb49,\n  0xebe7, 0xebe8, 0xedd8, 0xedd9, 0xee55, 0xee56, 0xee57, 0xefda,\n  0xefdb, 0xefdc, 0xf0b8, 0xf0b9, 0xf0ba, 0x4cb1, 0xf0bb, 0xf289,\n  0xf0bc, 0xf330, 0xf331, 0xf332, 0xf333, 0x52fd,\n  /* 0x5e */\n  0xf334, 0xf335, 0xf336, 0x4e47, 0xf337, 0xf5b2, 0xf690, 0xf626,\n  0xf6a2, 0xf738, 0x52fd, 0x572e, 0x52fd, 0x572f, 0x5730, 0x572a,\n  0x572b, 0x57c9, 0x5837, 0x5920, 0x5972, 0x5b1f, 0x5c65, 0x5cca,\n  0x5dc0, 0x5dc1, 0x5dc2, 0x63b7, 0x63b8, 0x63b9, 0x63ba, 0x63bb,\n  0x52fd, 0x52fd, 0x63bc, 0x63bd, 0x63be, 0x63f2, 0x67b5, 0x67b7,\n  0x67b8, 0x63df, 0x67b9, 0x67d5, 0x67ba, 0x67bb, 0x684a, 0x6bf2,\n  0x6bf3, 0x6bf4, 0x6bfa, 0x6bf5, 0x6c02, 0x6de2, 0x6de3, 0x728e,\n  0x728b, 0x75e4, 0x75eb, 0x75e5, 0x7735, 0x7893, 0x7bea, 0x7beb,\n  0x52fd, 0x7bec, 0x7bed, 0x7c17, 0x7bee, 0x7bef, 0x7bf0, 0x810e,\n  0x810f, 0x8110, 0x8119, 0x8118, 0x8111, 0x8112, 0x8113, 0xfac7,\n  0x8114, 0x8115, 0x066b, 0x8116, 0x8365, 0x85ea, 0x85eb, 0x85ec,\n  0x85ed, 0x52fd, 0x85ee, 0x86ac, 0x8ac2, 0x8a69,\n  /* 0x5f */\n  0x8a81, 0x8a6a, 0x8a6b, 0x8a6c, 0x8a6d, 0x8a6e, 0x8a6f, 0x8a70,\n  0x07f4, 0x8a71, 0x8a72, 0x8a73, 0x8a8c, 0x8a74, 0x8a75, 0x8a76,\n  0x8f24, 0x8f2a, 0x938e, 0x93af, 0x938f, 0x9390, 0x9391, 0x52fd,\n  0x9392, 0x9393, 0x9394, 0x9395, 0x9396, 0x9397, 0x9398, 0x9399,\n  0x939a, 0x939b, 0x939c, 0x9739, 0x973b, 0x973a, 0x973c, 0x973d,\n  0x973e, 0x973f, 0x9770, 0x9740, 0x9741, 0x9bc0, 0x9bc1, 0x9da4,\n  0x9d97, 0x9da5, 0x9d98, 0x9d99, 0x9d9a, 0x52fd, 0x9d9b, 0x9da6,\n  0x9d9c, 0x9d9d, 0x9d9e, 0x9d9f, 0xddce, 0x9dc8, 0x9da0, 0x9e19,\n  0x9f0d, 0xa3bf, 0xa5e9, 0xa5ea, 0xa8a2, 0xa8a3, 0xa8a4, 0xa8a5,\n  0xa8a6, 0xaa15, 0xaa17, 0xabbf, 0xabc0, 0xabc1, 0xabc2, 0xabc3,\n  0xabc4, 0xabc5, 0x6c0d, 0xad23, 0xadbe, 0xb003, 0xb004, 0xb005,\n  0xb006, 0xb007, 0xb008, 0xb009, 0xb00a, 0xb00b,\n  /* 0x60 */\n  0xb00c, 0xb020, 0xb00d, 0xb00e, 0xb00f, 0x52fd, 0xb226, 0xb227,\n  0xb228, 0xb45d, 0xb45e, 0xb45f, 0xb460, 0xb461, 0xb462, 0xb463,\n  0xb464, 0xb465, 0xb557, 0xb6cf, 0xb6d0, 0xb799, 0xb79a, 0xb8ea,\n  0xb8eb, 0xb8ec, 0xbb7e, 0xbb7f, 0xbb80, 0x52fd, 0x52fd, 0xbb81,\n  0xbb82, 0xbbf3, 0xbc25, 0xbc9f, 0xbca0, 0xbcf3, 0xbd00, 0xc2eb,\n  0xc2ec, 0xc2ed, 0xc2ee, 0xc2ef, 0x52fd, 0x105c, 0xc2f0, 0xc2f1,\n  0xc2f2, 0xc2f3, 0xc2f4, 0xc2f5, 0xc2f9, 0xc2fa, 0xc2fb, 0xc2fc,\n  0xc2fd, 0xc2fe, 0xc2ff, 0xc300, 0xfbae, 0xc301, 0xc302, 0xc503,\n  0xc786, 0xc779, 0x52fd, 0xc77a, 0xc77b, 0xc77c, 0xc784, 0xc77d,\n  0xc77e, 0xc77f, 0xca86, 0xca87, 0xcb00, 0xcb01, 0xcb88, 0xcb89,\n  0xcb8a, 0xcdf5, 0x52fd, 0xce25, 0xcdf6, 0xd0eb, 0xd0ec, 0xd0ed,\n  0xd0ee, 0x1287, 0xd0ef, 0xd0f0, 0xd26c, 0xd421,\n  /* 0x61 */\n  0xd422, 0xd423, 0xd424, 0xd425, 0xd426, 0xd57b, 0xd57c, 0xd691,\n  0xd692, 0xd693, 0xd90e, 0xd90f, 0xd910, 0xdbb3, 0xdc36, 0xddc6,\n  0xdda1, 0xdda2, 0x48b9, 0xdda3, 0xddcc, 0xdda4, 0xdda5, 0xdda6,\n  0xddcb, 0xdda7, 0x52fd, 0xdda8, 0xdda9, 0xddaa, 0x52fd, 0xddab,\n  0xddac, 0xddad, 0x48bf, 0xddae, 0xddaf, 0xddb0, 0xe08c, 0xe08d,\n  0xe08e, 0xfbf1, 0xe092, 0xe08f, 0xe252, 0xe253, 0xe254, 0xe255,\n  0xe429, 0x52fd, 0xe5f3, 0xe5f4, 0xe80d, 0xe80e, 0xe80f, 0xe810,\n  0xe914, 0xea71, 0xea72, 0xec0f, 0xec04, 0xec06, 0x52fd, 0xec07,\n  0xeddc, 0xeddd, 0xee6d, 0xee79, 0xee6e, 0x52fd, 0xefec, 0xf0dd,\n  0xf0de, 0xf0df, 0xf0e0, 0xf0e1, 0xf0e2, 0xf0e3, 0xf0e4, 0xf13a,\n  0xf0e5, 0x4ccf, 0xf0e6, 0xf36b, 0xf36c, 0x974e, 0x4e64, 0xf5bd,\n  0xf5be, 0xf5bf, 0xf634, 0x4fbf, 0xf812, 0x5740,\n  /* 0x62 */\n  0x5741, 0x6402, 0x6403, 0x6404, 0x6405, 0x6406, 0x67d7, 0x67cc,\n  0x6998, 0x6c06, 0x6c07, 0x6caf, 0x6cb0, 0x6dea, 0x6df2, 0x72a2,\n  0x72a3, 0x72a4, 0x7476, 0x75f5, 0x75f6, 0x75f7, 0x52fd, 0x7c3b,\n  0x7c25, 0x7c3a, 0x7c3c, 0x7c3d, 0x7c3e, 0x8137, 0x8138, 0x8139,\n  0x813a, 0x813b, 0x813c, 0x813d, 0x813e, 0x813f, 0x814b, 0x52fd,\n  0x8140, 0x8322, 0x8367, 0x83d3, 0x85fa, 0x52fd, 0x8abc, 0x52fd,\n  0x52fd, 0x8aa5, 0x0807, 0x8ab6, 0x52fd, 0x8aa6, 0x8abb, 0x8aa7,\n  0x8aa8, 0x8aa9, 0x8aaa, 0x8aab, 0x8aac, 0x8abf, 0x8aad, 0x8aae,\n  0x8aaf, 0x8c2e, 0x8e00, 0x939d, 0x939e, 0x93cb, 0x93cc, 0x93cd,\n  0x93ce, 0x93cf, 0x52fd, 0x939f, 0x93d0, 0x93d1, 0x93d2, 0x93d3,\n  0x93d4, 0x52fd, 0x52fd, 0x975d, 0x975e, 0x975f, 0x9760, 0x0b05,\n  0x9dba, 0x9dbc, 0x0b06, 0x9db5, 0x9dbd, 0x9db6,\n  /* 0x63 */\n  0x9db7, 0x9db8, 0x9da8, 0xfb32, 0x9efe, 0x9efc, 0xa1e1, 0xa3c4,\n  0xa3c5, 0xa614, 0xa8ae, 0xa8af, 0xa8b0, 0xa8b1, 0xa8b9, 0xabe7,\n  0xb046, 0x52fd, 0xb047, 0xb048, 0xb049, 0xb01e, 0xb01f, 0xb04a,\n  0xb04b, 0xb04c, 0xb04d, 0xb04e, 0x52fd, 0xb246, 0xb24b, 0xb490,\n  0xb491, 0x52fd, 0xb492, 0xb493, 0xb494, 0xb55b, 0xb8f2, 0xb8f8,\n  0xb8f9, 0xbb94, 0xbba4, 0xbb97, 0xbb98, 0xbc29, 0xbcae, 0xbdaf,\n  0xc359, 0xc35a, 0x52fd, 0xc35b, 0xc35c, 0xc35d, 0xc35e, 0xc35f,\n  0xc360, 0xc361, 0xc2aa, 0xc362, 0xc363, 0xc364, 0xc365, 0xc366,\n  0xc367, 0xc368, 0xc369, 0xc36a, 0xc36b, 0xc36c, 0xc36d, 0xc36e,\n  0xc36f, 0x52fd, 0xc7b2, 0xc7b3, 0xc7b4, 0x10f9, 0xc7b5, 0xc7b6,\n  0xc7b7, 0xc7b8, 0xc7b9, 0xc7ba, 0xc7bb, 0xca88, 0x42b8, 0xce19,\n  0xce1a, 0xce1b, 0xcf16, 0xd10c, 0xd10d, 0xd10e,\n  /* 0x64 */\n  0xd10f, 0x52fd, 0xd283, 0xd284, 0xd285, 0xd583, 0xd584, 0xd6b0,\n  0x52fd, 0xd926, 0xd927, 0xd936, 0xd928, 0xd929, 0x52fd, 0x52fd,\n  0xdde7, 0xdde8, 0xdde9, 0x1453, 0xddea, 0xddeb, 0x52fd, 0xddec,\n  0xdded, 0xddee, 0xddef, 0xddf0, 0xddf1, 0xde0c, 0xddf2, 0xddf3,\n  0xddf4, 0xddf5, 0xddf6, 0xddf7, 0xddf8, 0xe0a3, 0xe0a4, 0xe0a5,\n  0xe0a6, 0xe0a7, 0x52fd, 0xe25c, 0x52fd, 0xe44b, 0xe4e1, 0xe615,\n  0x52fd, 0xe616, 0xe617, 0xe82c, 0xe82d, 0xe922, 0xe923, 0xea96,\n  0xea97, 0x52fd, 0xec2e, 0xec30, 0xec31, 0x52fd, 0xeddf, 0xee8b,\n  0xee8c, 0x52fd, 0xee8d, 0xeffc, 0xeffd, 0xeffe, 0xefff, 0xf117,\n  0xf12d, 0xf118, 0x4cf3, 0xf119, 0x52fd, 0xf112, 0xf11a, 0xf11b,\n  0xf11c, 0x1669, 0x52fd, 0xf397, 0x16e5, 0xf398, 0xf399, 0x52fd,\n  0xf6c4, 0x574f, 0x57cd, 0x5dc7, 0x641c, 0x641d,\n  /* 0x65 */\n  0x641e, 0x67e7, 0x67e9, 0x67ea, 0x67eb, 0x6c15, 0x6ff1, 0x6ff2,\n  0x72b6, 0x78a0, 0x7c4a, 0x7d20, 0x8160, 0x8161, 0x8141, 0x8162,\n  0x8603, 0x8604, 0x8ad9, 0x8ada, 0x8adb, 0x8adc, 0x8add, 0x52fd,\n  0x8ade, 0x8adf, 0x8ae0, 0x8ae1, 0x8ae2, 0x0812, 0x8ae3, 0x52fd,\n  0x8f31, 0x9405, 0x9406, 0x9407, 0x9772, 0x978a, 0x978b, 0x9788,\n  0x52fd, 0x978c, 0x978d, 0x978e, 0x978f, 0x9790, 0x9842, 0x9843,\n  0x52fd, 0x9dc1, 0x9dc2, 0x9dc3, 0x9dc4, 0xa3cb, 0xa622, 0x52fd,\n  0x52fd, 0xa8c3, 0xa8c4, 0xa8c5, 0xa8c6, 0xaa1e, 0xaa25, 0xabf3,\n  0xabf4, 0x52fd, 0xabf5, 0xad38, 0xad48, 0xadca, 0x3b4f, 0xb07a,\n  0xb07b, 0xb255, 0xb256, 0xb4b1, 0xb4b2, 0xb4b3, 0x52fd, 0xb4b4,\n  0xb4b5, 0xb7a4, 0xb900, 0xb901, 0xb902, 0xbbac, 0x52fd, 0xbcb3,\n  0xc3b6, 0xc3b7, 0xc3b8, 0xc3b9, 0xc3ba, 0xc3bb,\n  /* 0x66 */\n  0xc3bc, 0xc3bd, 0xc3be, 0xc3bf, 0xc3c0, 0xc3c1, 0xc3c2, 0xc3c3,\n  0xc3c4, 0xc3c5, 0xc3c6, 0xc3c7, 0xc7e3, 0xc7e4, 0xc7e5, 0xc7e6,\n  0xc7e7, 0x52fd, 0xcab5, 0xcaa1, 0xcb95, 0xce3b, 0xce3c, 0xce3d,\n  0xce3e, 0xcf14, 0xd120, 0xd121, 0xd122, 0xd123, 0xd124, 0xd296,\n  0xd297, 0xd298, 0xd494, 0xd495, 0xd496, 0xd497, 0xd498, 0xd58f,\n  0xd590, 0xd6bc, 0xd73b, 0xd93d, 0x52fd, 0xdbdf, 0xdc1e, 0xde23,\n  0xde24, 0xde49, 0xde25, 0xde26, 0xde27, 0xde28, 0x4925, 0xde29,\n  0xde2a, 0xde2e, 0xde2f, 0xde4e, 0xde30, 0xfbeb, 0xde31, 0xde32,\n  0xde33, 0xde34, 0xde35, 0xde36, 0x52fd, 0xde37, 0xde50, 0xde38,\n  0x52fd, 0xde39, 0xde3a, 0xde3b, 0xde3c, 0xde3d, 0xde3e, 0xe0b8,\n  0xe0b9, 0xe262, 0xe263, 0xe341, 0xe46d, 0x52fd, 0xe652, 0xe637,\n  0xe6db, 0xe83f, 0xe934, 0xeb5b, 0xec46, 0xec5a,\n  /* 0x67 */\n  0xec5b, 0xede1, 0xede2, 0xede3, 0xede4, 0xeea7, 0xeea8, 0xeea9,\n  0xf00f, 0xf02b, 0xf156, 0xf157, 0xf158, 0xf15e, 0xf159, 0xf15a,\n  0xf15b, 0xf15c, 0x52fd, 0xf168, 0x52fd, 0xf42c, 0xf3e2, 0xf3f3,\n  0xf5d2, 0xf656, 0xf6ce, 0xf761, 0xf99b, 0xf9b4, 0x575c, 0xfa10,\n  0x57d2, 0x5871, 0x5973, 0x5b2c, 0x5e94, 0x52fd, 0x643f, 0x6440,\n  0x67f9, 0x67fa, 0x67fd, 0x67fb, 0x6c1c, 0x6c1d, 0x6dff, 0x6e00,\n  0x6ff7, 0x9ffe, 0x52fd, 0x77b6, 0x7c54, 0x8177, 0x8179, 0x817a,\n  0x817b, 0x8369, 0x8b02, 0x8b03, 0x8b04, 0x8b05, 0x8b06, 0x8b07,\n  0x8b08, 0x8b09, 0x8b0a, 0x8b0b, 0x8b35, 0x52fd, 0x8f39, 0x941e,\n  0x941f, 0x9420, 0x9421, 0x52fd, 0x9422, 0x9423, 0x9424, 0x942c,\n  0x97b3, 0x97b5, 0x97b6, 0x97b7, 0x97b8, 0x9dd0, 0x9ffa, 0xa207,\n  0xa2bd, 0xa3d7, 0xa3d2, 0xa8db, 0xa8d6, 0x575d,\n  /* 0x68 */\n  0xad43, 0xadcf, 0xb0a3, 0xb0a4, 0xb0a5, 0xb0a6, 0xb0a7, 0xb0a8,\n  0xb0a9, 0xb25d, 0xb25e, 0xb4c9, 0xb4ca, 0xb4cb, 0xb4cc, 0xb906,\n  0xb907, 0x52fd, 0xbbc5, 0xbbf5, 0xbcb4, 0xbcb8, 0xbcb5, 0xc3fd,\n  0x1077, 0xc3fe, 0xc3ff, 0xc400, 0xc401, 0xc402, 0xc403, 0xc409,\n  0xc404, 0xc405, 0xc406, 0xc407, 0xc811, 0xc812, 0xc813, 0xc814,\n  0xc815, 0x4277, 0xcb98, 0xcb99, 0xd13c, 0xd12d, 0xd12e, 0x52fd,\n  0xd4bb, 0xd4bc, 0x1378, 0xd73d, 0xd947, 0xd948, 0xd949, 0xd94a,\n  0xdae1, 0xdae7, 0xdbeb, 0xdc20, 0xdc38, 0xde62, 0xde67, 0xde68,\n  0xde69, 0xde6a, 0xde6b, 0xde6d, 0xde6e, 0xde6f, 0xde70, 0xde71,\n  0xde72, 0xde8f, 0xde73, 0xde74, 0xde75, 0xde76, 0xde77, 0xe0c9,\n  0xe0ca, 0x4ae6, 0xe0cb, 0xe0cc, 0xe0cd, 0xe351, 0x52fd, 0x52fd,\n  0xe545, 0xe859, 0xe85a, 0xe85b, 0xe940, 0xeacf,\n  /* 0x69 */\n  0xeb5e, 0xec7b, 0xed93, 0xeebc, 0xf016, 0xf030, 0x52fd, 0xf18d,\n  0xf18e, 0x4d2f, 0xf18f, 0xf190, 0xf191, 0xf192, 0xf193, 0xf194,\n  0xf195, 0xf196, 0xf423, 0xf414, 0xf5db, 0xf70a, 0xf8ce, 0x5766,\n  0x5768, 0x5767, 0x57d3, 0x6463, 0x6804, 0x699e, 0x6c26, 0x6c2a,\n  0x7c6c, 0x7c64, 0x818f, 0x8190, 0x8334, 0x860e, 0x8b25, 0x8b26,\n  0x8b27, 0x52fd, 0x8b28, 0x2c0c, 0x52fd, 0x8b29, 0x8b2a, 0x8b2b,\n  0x8b2c, 0x8f3e, 0x9442, 0x9443, 0x9433, 0x97c1, 0x97c2, 0x97c3,\n  0x9dd6, 0x9dd7, 0xa8e1, 0xa8e2, 0xaa2b, 0xadd1, 0xb0cc, 0xb0cd,\n  0xb0ce, 0xb0cf, 0xb4de, 0xb4df, 0xb4e0, 0xb4e1, 0xbbf6, 0xc42c,\n  0x52fd, 0xc454, 0xc42d, 0xc42e, 0xc841, 0xc842, 0xcac7, 0xcba0,\n  0xcba1, 0xce70, 0xce71, 0xce72, 0x52fd, 0xd134, 0xd135, 0xd136,\n  0xd2a6, 0xd4cc, 0x52fd, 0xd599, 0xdbf4, 0xde9b,\n  /* 0x6a */\n  0xde9e, 0xde9f, 0xdea0, 0xdea1, 0xdea2, 0xdea3, 0xdea4, 0xdea5,\n  0xdea6, 0xdea7, 0xdea8, 0xe0db, 0xe0dc, 0xe0dd, 0xe0d7, 0xe0de,\n  0xe0df, 0xe359, 0xe746, 0xe865, 0xe949, 0x52fd, 0xeadd, 0xec95,\n  0xec96, 0xec97, 0xeed4, 0xeed6, 0xf026, 0x4d47, 0x1688, 0xf1c8,\n  0xf1c5, 0xf1c6, 0xf1c7, 0xf451, 0xf452, 0xf453, 0xf454, 0xf455,\n  0xf5de, 0x52fd, 0x576d, 0x57d5, 0x6472, 0x74ae, 0x760f, 0x7c6b,\n  0x7c6d, 0x7c6e, 0x7c78, 0x8198, 0x8199, 0x819a, 0x8b44, 0x8b5c,\n  0x8b45, 0x8e01, 0x9458, 0x9459, 0x945a, 0x52fd, 0x97d9, 0x97d6,\n  0x9dda, 0x9ddf, 0x9ddb, 0xa003, 0xa8ef, 0x3836, 0xaa33, 0xadd2,\n  0xb0e1, 0xb26f, 0xb564, 0xb90e, 0xc450, 0xc451, 0xc452, 0xc856,\n  0xc857, 0xc858, 0x52fd, 0xce81, 0xce82, 0xcf1d, 0xcf1e, 0xd143,\n  0xd2aa, 0xdbfd, 0x52fd, 0xdec6, 0xdec7, 0xded9,\n  /* 0x6b */\n  0xded7, 0x52fd, 0xdec8, 0xdec9, 0xdeca, 0xdecb, 0xdeda, 0x52fd,\n  0xdecc, 0xdecd, 0xdece, 0xdecf, 0xded0, 0xded1, 0xdebc, 0xe0e1,\n  0xe0e2, 0xe0e3, 0xe4a9, 0xe54e, 0xe877, 0x52fd, 0x52fd, 0xecac,\n  0xecad, 0xedb6, 0xeee5, 0xf1f8, 0xf1ea, 0xf28d, 0xf1eb, 0xf495,\n  0x576e, 0x57d8, 0x6483, 0x69a3, 0x6c30, 0x6e0f, 0x7c79, 0x7c7a,\n  0x81a7, 0x81a8, 0x81a9, 0x81aa, 0x8619, 0x8b50, 0x8b51, 0x8b52,\n  0x2c15, 0x8b68, 0x8b53, 0x8b54, 0x9be2, 0x9ddc, 0xac15, 0xac16,\n  0xad4f, 0xb0f5, 0xb0f6, 0xb0f7, 0xb4f4, 0xb7cc, 0xb90f, 0xc466,\n  0xc467, 0x52fd, 0xc468, 0xcba4, 0xce8b, 0xce8c, 0xd4fa, 0xdee6,\n  0xdeed, 0xdeee, 0xdeef, 0xdef0, 0xdefe, 0xe0e7, 0xe0e8, 0xe4b3,\n  0xe4e4, 0xe883, 0xedec, 0x52fd, 0xf216, 0x52fd, 0x52fd, 0xf217,\n  0xf4c3, 0xf4ac, 0xf5ed, 0x52fd, 0x52fd, 0xf8b4,\n  /* 0x6c */\n  0x52fd, 0x648a, 0x648b, 0x6c34, 0x6e14, 0x72df, 0x77bb, 0x7c7f,\n  0x7c81, 0x81ad, 0x81ae, 0x8b62, 0x8b6e, 0x52fd, 0x946e, 0x52fd,\n  0x9a17, 0x9de6, 0x9f10, 0xac19, 0x52fd, 0xb910, 0xbdf2, 0xc476,\n  0xc477, 0xce95, 0xce96, 0xdf00, 0xdf01, 0xdf31, 0xfbed, 0xdf1c,\n  0xe36d, 0xeef4, 0xeef5, 0xf03d, 0xf232, 0xf233, 0xf5f4, 0x52fd,\n  0x5773, 0x6c37, 0x52fd, 0x8b71, 0xb10f, 0x52fd, 0xb10e, 0xb911,\n  0xc485, 0xdf14, 0xdf15, 0xdf16, 0xdf17, 0xdf18, 0xdf19, 0xdf1a,\n  0xe4c3, 0xf242, 0xf243, 0xf244, 0xf248, 0xf4fb, 0x69a5, 0x6cb8,\n  0x81b2, 0x833d, 0x8b72, 0x97e7, 0x97e8, 0xa659, 0xaa3a, 0xb114,\n  0xb4ff, 0xbcc0, 0xc48d, 0x1084, 0xc48e, 0x52fd, 0xdf22, 0x52fd,\n  0x52fd, 0xef04, 0xef29, 0xf251, 0xf266, 0xf50e, 0xfc13, 0x52fd,\n  0x649b, 0x649c, 0x7616, 0x7c86, 0x7c87, 0x52fd,\n  /* 0x6d */\n  0xdf2c, 0xdf30, 0xdf28, 0xe95f, 0x52fd, 0x947e, 0xb119, 0xd50a,\n  0xdf36, 0xe0fc, 0xf26d, 0xf26e, 0xf9c6, 0x1ab5, 0x8b7b, 0xb506,\n  0xc89f, 0xf532, 0xd50d, 0x7c8b, 0xdf3b, 0x52fd, 0xf53d, 0xdf3c,\n  0xdf3d,\n};\n\nstatic const ucs4_t cns11643_15_2uni_upages[253] = {\n  0x03400, 0x03500, 0x03600, 0x03700, 0x03800, 0x03900, 0x03a00, 0x03b00,\n  0x03c00, 0x03d00, 0x03e00, 0x03f00, 0x04000, 0x04100, 0x04300, 0x04400,\n  0x04500, 0x04600, 0x04700, 0x04800, 0x04900, 0x04a00, 0x04c00, 0x04f00,\n  0x05100, 0x05200, 0x05300, 0x05400, 0x05500, 0x05600, 0x05700, 0x05800,\n  0x05a00, 0x05b00, 0x05c00, 0x05e00, 0x05f00, 0x06200, 0x06500, 0x06600,\n  0x06700, 0x06800, 0x06900, 0x06a00, 0x06b00, 0x06c00, 0x06e00, 0x06f00,\n  0x07000, 0x07100, 0x07300, 0x07400, 0x07500, 0x07600, 0x07700, 0x07800,\n  0x07900, 0x07a00, 0x07b00, 0x07c00, 0x07d00, 0x07f00, 0x08200, 0x08300,\n  0x08600, 0x08700, 0x08900, 0x08a00, 0x08e00, 0x08f00, 0x09000, 0x09200,\n  0x09300, 0x09400, 0x09500, 0x09600, 0x09b00, 0x09c00, 0x09d00, 0x09e00,\n  0x09f00, 0x0fa00, 0x0ff00, 0x20000, 0x20100, 0x20200, 0x20300, 0x20400,\n  0x20500, 0x20600, 0x20700, 0x20800, 0x20900, 0x20a00, 0x20b00, 0x20c00,\n  0x20d00, 0x20e00, 0x20f00, 0x21000, 0x21100, 0x21200, 0x21300, 0x21400,\n  0x21500, 0x21600, 0x21700, 0x21800, 0x21900, 0x21a00, 0x21b00, 0x21c00,\n  0x21d00, 0x21e00, 0x21f00, 0x22000, 0x22100, 0x22200, 0x22300, 0x22400,\n  0x22500, 0x22600, 0x22700, 0x22800, 0x22900, 0x22a00, 0x22b00, 0x22c00,\n  0x22d00, 0x22e00, 0x22f00, 0x23000, 0x23100, 0x23200, 0x23300, 0x23400,\n  0x23500, 0x23600, 0x23700, 0x23800, 0x23900, 0x23a00, 0x23b00, 0x23c00,\n  0x23d00, 0x23e00, 0x23f00, 0x24000, 0x24100, 0x24200, 0x24300, 0x24400,\n  0x24500, 0x24600, 0x24700, 0x24800, 0x24900, 0x24a00, 0x24b00, 0x24c00,\n  0x24d00, 0x24e00, 0x24f00, 0x25000, 0x25100, 0x25200, 0x25300, 0x25400,\n  0x25500, 0x25600, 0x25700, 0x25800, 0x25900, 0x25a00, 0x25b00, 0x25c00,\n  0x25d00, 0x25e00, 0x25f00, 0x26000, 0x26100, 0x26200, 0x26300, 0x26400,\n  0x26500, 0x26600, 0x26700, 0x26800, 0x26900, 0x26a00, 0x26b00, 0x26c00,\n  0x26d00, 0x26e00, 0x26f00, 0x27000, 0x27100, 0x27200, 0x27300, 0x27400,\n  0x27500, 0x27600, 0x27700, 0x27800, 0x27900, 0x27a00, 0x27b00, 0x27c00,\n  0x27d00, 0x27e00, 0x27f00, 0x28000, 0x28100, 0x28200, 0x28300, 0x28400,\n  0x28500, 0x28600, 0x28700, 0x28800, 0x28900, 0x28a00, 0x28b00, 0x28c00,\n  0x28d00, 0x28e00, 0x28f00, 0x29000, 0x29100, 0x29200, 0x29300, 0x29400,\n  0x29500, 0x29600, 0x29700, 0x29800, 0x29900, 0x29a00, 0x29b00, 0x29c00,\n  0x29d00, 0x29e00, 0x29f00, 0x2a000, 0x2a100, 0x2a200, 0x2a300, 0x2a400,\n  0x2a500, 0x2a600, 0x2f800, 0x2f900, 0x2fa00,\n};\n\nstatic int\ncns11643_15_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x21 && c1 <= 0x6d)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        ucs4_t wc = 0xfffd;\n        unsigned short swc;\n        {\n          if (i < 7169)\n            swc = cns11643_15_2uni_page21[i],\n            wc = cns11643_15_2uni_upages[swc>>8] | (swc & 0xff);\n        }\n        if (wc != 0xfffd) {\n          *pwc = wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643_2.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992 plane 2\n */\n\nstatic const unsigned short cns11643_2_2uni_page21[7650] = {\n  /* 0x21 */\n  0x4e42, 0x4e5c, 0x51f5, 0x531a, 0x5382, 0x4e07, 0x4e0c, 0x4e47,\n  0x4e8d, 0x56d7, 0x5c6e, 0x5f73, 0x4e0f, 0x5187, 0x4e0e, 0x4e2e,\n  0x4e93, 0x4ec2, 0x4ec9, 0x4ec8, 0x5198, 0x52fc, 0x536c, 0x53b9,\n  0x5720, 0x5903, 0x592c, 0x5c10, 0x5dff, 0x65e1, 0x6bb3, 0x6bcc,\n  0x6c14, 0x723f, 0x4e31, 0x4e3c, 0x4ee8, 0x4edc, 0x4ee9, 0x4ee1,\n  0x4edd, 0x4eda, 0x520c, 0x5209, 0x531c, 0x534c, 0x5722, 0x5723,\n  0x5917, 0x592f, 0x5b81, 0x5b84, 0x5c12, 0x5c3b, 0x5c74, 0x5c73,\n  0x5e04, 0x5e80, 0x5e82, 0x5fc9, 0x6209, 0x6250, 0x6c15, 0x6c36,\n  0x6c43, 0x6c3f, 0x6c3b, 0x72ae, 0x72b0, 0x738a, 0x79b8, 0x808a,\n  0x961e, 0x4f0e, 0x4f18, 0x4f2c, 0x4ef5, 0x4f14, 0x4ef1, 0x4f00,\n  0x4ef7, 0x4f08, 0x4f1d, 0x4f02, 0x4f05, 0x4f22, 0x4f13, 0x4f04,\n  0x4ef4, 0x4f12, 0x51b1, 0x5213, 0x5210, 0x52a6,\n  /* 0x22 */\n  0x5322, 0x531f, 0x534d, 0x538a, 0x5407, 0x56e1, 0x56df, 0x572e,\n  0x572a, 0x5734, 0x593c, 0x5980, 0x597c, 0x5985, 0x597b, 0x597e,\n  0x5977, 0x597f, 0x5b56, 0x5c15, 0x5c25, 0x5c7c, 0x5c7a, 0x5c7b,\n  0x5c7e, 0x5ddf, 0x5e75, 0x5e84, 0x5f02, 0x5f1a, 0x5f74, 0x5fd5,\n  0x5fd4, 0x5fcf, 0x625c, 0x625e, 0x6264, 0x6261, 0x6266, 0x6262,\n  0x6259, 0x6260, 0x625a, 0x6265, 0x6537, 0x65ef, 0x65ee, 0x673e,\n  0x6739, 0x6738, 0x673b, 0x673a, 0x673f, 0x673c, 0x6733, 0x6c18,\n  0x6c46, 0x6c52, 0x6c5c, 0x6c4f, 0x6c4a, 0x6c54, 0x6c4b, 0x6c4c,\n  0x7071, 0x725e, 0x72b4, 0x72b5, 0x738e, 0x752a, 0x767f, 0x7a75,\n  0x7f51, 0x8278, 0x827c, 0x8280, 0x827d, 0x827f, 0x864d, 0x897e,\n  0x9099, 0x9097, 0x9098, 0x909b, 0x9094, 0x9622, 0x9624, 0x9620,\n  0x9623, 0x4f56, 0x4f3b, 0x4f62, 0x4f49, 0x4f53,\n  /* 0x23 */\n  0x4f64, 0x4f3e, 0x4f67, 0x4f52, 0x4f5f, 0x4f41, 0x4f58, 0x4f2d,\n  0x4f33, 0x4f3f, 0x4f61, 0x518f, 0x51b9, 0x521c, 0x521e, 0x5221,\n  0x52ad, 0x52ae, 0x5309, 0x5363, 0x5372, 0x538e, 0x538f, 0x5430,\n  0x5437, 0x542a, 0x5454, 0x5445, 0x5419, 0x541c, 0x5425, 0x5418,\n  0x543d, 0x544f, 0x5441, 0x5428, 0x5424, 0x5447, 0x56ee, 0x56e7,\n  0x56e5, 0x5741, 0x5745, 0x574c, 0x5749, 0x574b, 0x5752, 0x5906,\n  0x5940, 0x59a6, 0x5998, 0x59a0, 0x5997, 0x598e, 0x59a2, 0x5990,\n  0x598f, 0x59a7, 0x59a1, 0x5b8e, 0x5b92, 0x5c28, 0x5c2a, 0x5c8d,\n  0x5c8f, 0x5c88, 0x5c8b, 0x5c89, 0x5c92, 0x5c8a, 0x5c86, 0x5c93,\n  0x5c95, 0x5de0, 0x5e0a, 0x5e0e, 0x5e8b, 0x5e89, 0x5e8c, 0x5e88,\n  0x5e8d, 0x5f05, 0x5f1d, 0x5f78, 0x5f76, 0x5fd2, 0x5fd1, 0x5fd0,\n  0x5fed, 0x5fe8, 0x5fee, 0x5ff3, 0x5fe1, 0x5fe4,\n  /* 0x24 */\n  0x5fe3, 0x5ffa, 0x5fef, 0x5ff7, 0x5ffb, 0x6000, 0x5ff4, 0x623a,\n  0x6283, 0x628c, 0x628e, 0x628f, 0x6294, 0x6287, 0x6271, 0x627b,\n  0x627a, 0x6270, 0x6281, 0x6288, 0x6277, 0x627d, 0x6272, 0x6274,\n  0x65f0, 0x65f4, 0x65f3, 0x65f2, 0x65f5, 0x6745, 0x6747, 0x6759,\n  0x6755, 0x674c, 0x6748, 0x675d, 0x674d, 0x675a, 0x674b, 0x6bd0,\n  0x6c19, 0x6c1a, 0x6c78, 0x6c67, 0x6c6b, 0x6c84, 0x6c8b, 0x6c8f,\n  0x6c71, 0x6c6f, 0x6c69, 0x6c9a, 0x6c6d, 0x6c87, 0x6c95, 0x6c9c,\n  0x6c66, 0x6c73, 0x6c65, 0x6c7b, 0x6c8e, 0x7074, 0x707a, 0x7263,\n  0x72bf, 0x72bd, 0x72c3, 0x72c6, 0x72c1, 0x72ba, 0x72c5, 0x7395,\n  0x7397, 0x7393, 0x7394, 0x7392, 0x753a, 0x7539, 0x7594, 0x7595,\n  0x7681, 0x793d, 0x8034, 0x8095, 0x8099, 0x8090, 0x8092, 0x809c,\n  0x8290, 0x828f, 0x8285, 0x828e, 0x8291, 0x8293,\n  /* 0x25 */\n  0x828a, 0x8283, 0x8284, 0x8c78, 0x8fc9, 0x8fbf, 0x909f, 0x90a1,\n  0x90a5, 0x909e, 0x90a7, 0x90a0, 0x9630, 0x9628, 0x962f, 0x962d,\n  0x4e33, 0x4f98, 0x4f7c, 0x4f85, 0x4f7d, 0x4f80, 0x4f87, 0x4f76,\n  0x4f74, 0x4f89, 0x4f84, 0x4f77, 0x4f4c, 0x4f97, 0x4f6a, 0x4f9a,\n  0x4f79, 0x4f81, 0x4f78, 0x4f90, 0x4f9c, 0x4f94, 0x4f9e, 0x4f92,\n  0x4f82, 0x4f95, 0x4f6b, 0x4f6e, 0x519e, 0x51bc, 0x51be, 0x5235,\n  0x5232, 0x5233, 0x5246, 0x5231, 0x52bc, 0x530a, 0x530b, 0x533c,\n  0x5392, 0x5394, 0x5487, 0x547f, 0x5481, 0x5491, 0x5482, 0x5488,\n  0x546b, 0x547a, 0x547e, 0x5465, 0x546c, 0x5474, 0x5466, 0x548d,\n  0x546f, 0x5461, 0x5460, 0x5498, 0x5463, 0x5467, 0x5464, 0x56f7,\n  0x56f9, 0x576f, 0x5772, 0x576d, 0x576b, 0x5771, 0x5770, 0x5776,\n  0x5780, 0x5775, 0x577b, 0x5773, 0x5774, 0x5762,\n  /* 0x26 */\n  0x5768, 0x577d, 0x590c, 0x5945, 0x59b5, 0x59ba, 0x59cf, 0x59ce,\n  0x59b2, 0x59cc, 0x59c1, 0x59b6, 0x59bc, 0x59c3, 0x59d6, 0x59b1,\n  0x59bd, 0x59c0, 0x59c8, 0x59b4, 0x59c7, 0x5b62, 0x5b65, 0x5b93,\n  0x5b95, 0x5c44, 0x5c47, 0x5cae, 0x5ca4, 0x5ca0, 0x5cb5, 0x5caf,\n  0x5ca8, 0x5cac, 0x5c9f, 0x5ca3, 0x5cad, 0x5ca2, 0x5caa, 0x5ca7,\n  0x5c9d, 0x5ca5, 0x5cb6, 0x5cb0, 0x5ca6, 0x5e17, 0x5e14, 0x5e19,\n  0x5f28, 0x5f22, 0x5f23, 0x5f24, 0x5f54, 0x5f82, 0x5f7e, 0x5f7d,\n  0x5fde, 0x5fe5, 0x602d, 0x6026, 0x6019, 0x6032, 0x600b, 0x6034,\n  0x600a, 0x6017, 0x6033, 0x601a, 0x601e, 0x602c, 0x6022, 0x600d,\n  0x6010, 0x602e, 0x6013, 0x6011, 0x600c, 0x6009, 0x601c, 0x6214,\n  0x623d, 0x62ad, 0x62b4, 0x62d1, 0x62be, 0x62aa, 0x62b6, 0x62ca,\n  0x62ae, 0x62b3, 0x62af, 0x62bb, 0x62a9, 0x62b0,\n  /* 0x27 */\n  0x62b8, 0x653d, 0x65a8, 0x65bb, 0x6609, 0x65fc, 0x6604, 0x6612,\n  0x6608, 0x65fb, 0x6603, 0x660b, 0x660d, 0x6605, 0x65fd, 0x6611,\n  0x6610, 0x66f6, 0x670a, 0x6785, 0x676c, 0x678e, 0x6792, 0x6776,\n  0x677b, 0x6798, 0x6786, 0x6784, 0x6774, 0x678d, 0x678c, 0x677a,\n  0x679f, 0x6791, 0x6799, 0x6783, 0x677d, 0x6781, 0x6778, 0x6779,\n  0x6794, 0x6b25, 0x6b80, 0x6b7e, 0x6bde, 0x6c1d, 0x6c93, 0x6cec,\n  0x6ceb, 0x6cee, 0x6cd9, 0x6cb6, 0x6cd4, 0x6cad, 0x6ce7, 0x6cb7,\n  0x6cd0, 0x6cc2, 0x6cba, 0x6cc3, 0x6cc6, 0x6ced, 0x6cf2, 0x6cd2,\n  0x6cdd, 0x6cb4, 0x6c8a, 0x6c9d, 0x6c80, 0x6cde, 0x6cc0, 0x6d30,\n  0x6ccd, 0x6cc7, 0x6cb0, 0x6cf9, 0x6ccf, 0x6ce9, 0x6cd1, 0x7094,\n  0x7098, 0x7085, 0x7093, 0x7086, 0x7084, 0x7091, 0x7096, 0x7082,\n  0x709a, 0x7083, 0x726a, 0x72d6, 0x72cb, 0x72d8,\n  /* 0x28 */\n  0x72c9, 0x72dc, 0x72d2, 0x72d4, 0x72da, 0x72cc, 0x72d1, 0x73a4,\n  0x73a1, 0x73ad, 0x73a6, 0x73a2, 0x73a0, 0x73ac, 0x739d, 0x74dd,\n  0x74e8, 0x753f, 0x7540, 0x753e, 0x758c, 0x7598, 0x76af, 0x76f3,\n  0x76f1, 0x76f0, 0x76f5, 0x77f8, 0x77fc, 0x77f9, 0x77fb, 0x77fa,\n  0x77f7, 0x7942, 0x793f, 0x79c5, 0x7a78, 0x7a7b, 0x7afb, 0x7c75,\n  0x7cfd, 0x8035, 0x808f, 0x80ae, 0x80a3, 0x80b8, 0x80b5, 0x80ad,\n  0x8220, 0x82a0, 0x82c0, 0x82ab, 0x829a, 0x8298, 0x829b, 0x82b5,\n  0x82a7, 0x82ae, 0x82bc, 0x829e, 0x82ba, 0x82b4, 0x82a8, 0x82a1,\n  0x82a9, 0x82c2, 0x82a4, 0x82c3, 0x82b6, 0x82a2, 0x8670, 0x866f,\n  0x866d, 0x866e, 0x8c56, 0x8fd2, 0x8fcb, 0x8fd3, 0x8fcd, 0x8fd6,\n  0x8fd5, 0x8fd7, 0x90b2, 0x90b4, 0x90af, 0x90b3, 0x90b0, 0x9639,\n  0x963d, 0x963c, 0x963a, 0x9643, 0x4fcd, 0x4fc5,\n  /* 0x29 */\n  0x4fd3, 0x4fb2, 0x4fc9, 0x4fcb, 0x4fc1, 0x4fd4, 0x4fdc, 0x4fd9,\n  0x4fbb, 0x4fb3, 0x4fdb, 0x4fc7, 0x4fd6, 0x4fba, 0x4fc0, 0x4fb9,\n  0x4fec, 0x5244, 0x5249, 0x52c0, 0x52c2, 0x533d, 0x537c, 0x5397,\n  0x5396, 0x5399, 0x5398, 0x54ba, 0x54a1, 0x54ad, 0x54a5, 0x54cf,\n  0x54c3, 0x830d, 0x54b7, 0x54ae, 0x54d6, 0x54b6, 0x54c5, 0x54c6,\n  0x54a0, 0x5470, 0x54bc, 0x54a2, 0x54be, 0x5472, 0x54de, 0x54b0,\n  0x57b5, 0x579e, 0x579f, 0x57a4, 0x578c, 0x5797, 0x579d, 0x579b,\n  0x5794, 0x5798, 0x578f, 0x5799, 0x57a5, 0x579a, 0x5795, 0x58f4,\n  0x590d, 0x5953, 0x59e1, 0x59de, 0x59ee, 0x5a00, 0x59f1, 0x59dd,\n  0x59fa, 0x59fd, 0x59fc, 0x59f6, 0x59e4, 0x59f2, 0x59f7, 0x59db,\n  0x59e9, 0x59f3, 0x59f5, 0x59e0, 0x59fe, 0x59f4, 0x59ed, 0x5ba8,\n  0x5c4c, 0x5cd0, 0x5cd8, 0x5ccc, 0x5cd7, 0x5ccb,\n  /* 0x2a */\n  0x5cdb, 0x5cde, 0x5cda, 0x5cc9, 0x5cc7, 0x5cca, 0x5cd6, 0x5cd3,\n  0x5cd4, 0x5ccf, 0x5cc8, 0x5cc6, 0x5cce, 0x5cdf, 0x5cf8, 0x5df9,\n  0x5e21, 0x5e22, 0x5e23, 0x5e20, 0x5e24, 0x5eb0, 0x5ea4, 0x5ea2,\n  0x5e9b, 0x5ea3, 0x5ea5, 0x5f07, 0x5f2e, 0x5f56, 0x5f86, 0x6037,\n  0x6039, 0x6054, 0x6072, 0x605e, 0x6045, 0x6053, 0x6047, 0x6049,\n  0x605b, 0x604c, 0x6040, 0x6042, 0x605f, 0x6024, 0x6044, 0x6058,\n  0x6066, 0x606e, 0x6242, 0x6243, 0x62cf, 0x630d, 0x630b, 0x62f5,\n  0x630e, 0x6303, 0x62eb, 0x62f9, 0x630f, 0x630c, 0x62f8, 0x62f6,\n  0x6300, 0x6313, 0x6314, 0x62fa, 0x6315, 0x62fb, 0x62f0, 0x6541,\n  0x6543, 0x65aa, 0x65bf, 0x6636, 0x6621, 0x6632, 0x6635, 0x661c,\n  0x6626, 0x6622, 0x6633, 0x662b, 0x663a, 0x661d, 0x6634, 0x6639,\n  0x662e, 0x670f, 0x6710, 0x67c1, 0x67f2, 0x67c8,\n  /* 0x2b */\n  0x67ba, 0x67dc, 0x67bb, 0x67f8, 0x67d8, 0x67c0, 0x67b7, 0x67c5,\n  0x67eb, 0x67e4, 0x67df, 0x67b5, 0x67cd, 0x67b3, 0x67f7, 0x67f6,\n  0x67ee, 0x67e3, 0x67c2, 0x67b9, 0x67ce, 0x67e7, 0x67f0, 0x67b2,\n  0x67fc, 0x67c6, 0x67ed, 0x67cc, 0x67ae, 0x67e6, 0x67db, 0x67fa,\n  0x67c9, 0x67ca, 0x67c3, 0x67ea, 0x67cb, 0x6b28, 0x6b82, 0x6b84,\n  0x6bb6, 0x6bd6, 0x6bd8, 0x6be0, 0x6c20, 0x6c21, 0x6d28, 0x6d34,\n  0x6d2d, 0x6d1f, 0x6d3c, 0x6d3f, 0x6d12, 0x6d0a, 0x6cda, 0x6d33,\n  0x6d04, 0x6d19, 0x6d3a, 0x6d1a, 0x6d11, 0x6d00, 0x6d1d, 0x6d42,\n  0x6d01, 0x6d18, 0x6d37, 0x6d03, 0x6d0f, 0x6d40, 0x6d07, 0x6d20,\n  0x6d2c, 0x6d08, 0x6d22, 0x6d09, 0x6d10, 0x70b7, 0x709f, 0x70be,\n  0x70b1, 0x70b0, 0x70a1, 0x70b4, 0x70b5, 0x70a9, 0x7241, 0x7249,\n  0x724a, 0x726c, 0x7270, 0x7273, 0x726e, 0x72ca,\n  /* 0x2c */\n  0x72e4, 0x72e8, 0x72eb, 0x72df, 0x72ea, 0x72e6, 0x72e3, 0x7385,\n  0x73cc, 0x73c2, 0x73c8, 0x73c5, 0x73b9, 0x73b6, 0x73b5, 0x73b4,\n  0x73eb, 0x73bf, 0x73c7, 0x73be, 0x73c3, 0x73c6, 0x73b8, 0x73cb,\n  0x74ec, 0x74ee, 0x752e, 0x7547, 0x7548, 0x75a7, 0x75aa, 0x7679,\n  0x76c4, 0x7708, 0x7703, 0x7704, 0x7705, 0x770a, 0x76f7, 0x76fb,\n  0x76fa, 0x77e7, 0x77e8, 0x7806, 0x7811, 0x7812, 0x7805, 0x7810,\n  0x780f, 0x780e, 0x7809, 0x7803, 0x7813, 0x794a, 0x794c, 0x794b,\n  0x7945, 0x7944, 0x79d5, 0x79cd, 0x79cf, 0x79d6, 0x79ce, 0x7a80,\n  0x7a7e, 0x7ad1, 0x7b00, 0x7b01, 0x7c7a, 0x7c78, 0x7c79, 0x7c7f,\n  0x7c80, 0x7c81, 0x7d03, 0x7d08, 0x7d01, 0x7f58, 0x7f91, 0x7f8d,\n  0x7fbe, 0x8007, 0x800e, 0x800f, 0x8014, 0x8037, 0x80d8, 0x80c7,\n  0x80e0, 0x80d1, 0x80c8, 0x80c2, 0x80d0, 0x80c5,\n  /* 0x2d */\n  0x80e3, 0x80d9, 0x80dc, 0x80ca, 0x80d5, 0x80c9, 0x80cf, 0x80d7,\n  0x80e6, 0x80cd, 0x81ff, 0x8221, 0x8294, 0x82d9, 0x82fe, 0x82f9,\n  0x8307, 0x82e8, 0x8300, 0x82d5, 0x833a, 0x82eb, 0x82d6, 0x82f4,\n  0x82ec, 0x82e1, 0x82f2, 0x82f5, 0x830c, 0x82fb, 0x82f6, 0x82f0,\n  0x82ea, 0x82e4, 0x82e0, 0x82fa, 0x82f3, 0x82ed, 0x8677, 0x8674,\n  0x867c, 0x8673, 0x8841, 0x884e, 0x8867, 0x886a, 0x8869, 0x89d3,\n  0x8a04, 0x8a07, 0x8d72, 0x8fe3, 0x8fe1, 0x8fee, 0x8fe0, 0x90f1,\n  0x90bd, 0x90bf, 0x90d5, 0x90c5, 0x90be, 0x90c7, 0x90cb, 0x90c8,\n  0x91d4, 0x91d3, 0x9654, 0x964f, 0x9651, 0x9653, 0x964a, 0x964e,\n  0x501e, 0x5005, 0x5007, 0x5013, 0x5022, 0x5030, 0x501b, 0x4ff5,\n  0x4ff4, 0x5033, 0x5037, 0x502c, 0x4ff6, 0x4ff7, 0x5017, 0x501c,\n  0x5020, 0x5027, 0x5035, 0x502f, 0x5031, 0x500e,\n  /* 0x2e */\n  0x515a, 0x5194, 0x5193, 0x51ca, 0x51c4, 0x51c5, 0x51c8, 0x51ce,\n  0x5261, 0x525a, 0x5252, 0x525e, 0x525f, 0x5255, 0x5262, 0x52cd,\n  0x530e, 0x539e, 0x5526, 0x54e2, 0x5517, 0x5512, 0x54e7, 0x54f3,\n  0x54e4, 0x551a, 0x54ff, 0x5504, 0x5508, 0x54eb, 0x5511, 0x5505,\n  0x54f1, 0x550a, 0x54fb, 0x54f7, 0x54f8, 0x54e0, 0x550e, 0x5503,\n  0x550b, 0x5701, 0x5702, 0x57cc, 0x5832, 0x57d5, 0x57d2, 0x57ba,\n  0x57c6, 0x57bd, 0x57bc, 0x57b8, 0x57b6, 0x57bf, 0x57c7, 0x57d0,\n  0x57b9, 0x57c1, 0x590e, 0x594a, 0x5a19, 0x5a16, 0x5a2d, 0x5a2e,\n  0x5a15, 0x5a0f, 0x5a17, 0x5a0a, 0x5a1e, 0x5a33, 0x5b6c, 0x5ba7,\n  0x5bad, 0x5bac, 0x5c03, 0x5c56, 0x5c54, 0x5cec, 0x5cff, 0x5cee,\n  0x5cf1, 0x5cf7, 0x5d00, 0x5cf9, 0x5e29, 0x5e28, 0x5ea8, 0x5eae,\n  0x5eaa, 0x5eac, 0x5f33, 0x5f30, 0x5f67, 0x605d,\n  /* 0x2f */\n  0x605a, 0x6067, 0x6041, 0x60a2, 0x6088, 0x6080, 0x6092, 0x6081,\n  0x609d, 0x6083, 0x6095, 0x609b, 0x6097, 0x6087, 0x609c, 0x608e,\n  0x6219, 0x6246, 0x62f2, 0x6310, 0x6356, 0x632c, 0x6344, 0x6345,\n  0x6336, 0x6343, 0x63e4, 0x6339, 0x634b, 0x634a, 0x633c, 0x6329,\n  0x6341, 0x6334, 0x6358, 0x6354, 0x6359, 0x632d, 0x6347, 0x6333,\n  0x635a, 0x6351, 0x6338, 0x6357, 0x6340, 0x6348, 0x654a, 0x6546,\n  0x65c6, 0x65c3, 0x65c4, 0x65c2, 0x664a, 0x665f, 0x6647, 0x6651,\n  0x6712, 0x6713, 0x681f, 0x681a, 0x6849, 0x6832, 0x6833, 0x683b,\n  0x684b, 0x684f, 0x6816, 0x6831, 0x681c, 0x6835, 0x682b, 0x682d,\n  0x682f, 0x684e, 0x6844, 0x6834, 0x681d, 0x6812, 0x6814, 0x6826,\n  0x6828, 0x682e, 0x684d, 0x683a, 0x6825, 0x6820, 0x6b2c, 0x6b2f,\n  0x6b2d, 0x6b31, 0x6b34, 0x6b6d, 0x8082, 0x6b88,\n  /* 0x30 */\n  0x6be6, 0x6be4, 0x6be8, 0x6be3, 0x6be2, 0x6be7, 0x6c25, 0x6d7a,\n  0x6d63, 0x6d64, 0x6d76, 0x6d0d, 0x6d61, 0x6d92, 0x6d58, 0x6d62,\n  0x6d6d, 0x6d6f, 0x6d91, 0x6d8d, 0x6def, 0x6d7f, 0x6d86, 0x6d5e,\n  0x6d67, 0x6d60, 0x6d97, 0x6d70, 0x6d7c, 0x6d5f, 0x6d82, 0x6d98,\n  0x6d2f, 0x6d68, 0x6d8b, 0x6d7e, 0x6d80, 0x6d84, 0x6d16, 0x6d83,\n  0x6d7b, 0x6d7d, 0x6d75, 0x6d90, 0x70dc, 0x70d3, 0x70d1, 0x70dd,\n  0x70cb, 0x7f39, 0x70e2, 0x70d7, 0x70d2, 0x70de, 0x70e0, 0x70d4,\n  0x70cd, 0x70c5, 0x70c6, 0x70c7, 0x70da, 0x70ce, 0x70e1, 0x7242,\n  0x7278, 0x7277, 0x7276, 0x7300, 0x72fa, 0x72f4, 0x72fe, 0x72f6,\n  0x72f3, 0x72fb, 0x7301, 0x73d3, 0x73d9, 0x73e5, 0x73d6, 0x73bc,\n  0x73e7, 0x73e3, 0x73e9, 0x73dc, 0x73d2, 0x73db, 0x73d4, 0x73dd,\n  0x73da, 0x73d7, 0x73d8, 0x73e8, 0x74de, 0x74df,\n  /* 0x31 */\n  0x74f4, 0x74f5, 0x7521, 0x755b, 0x755f, 0x75b0, 0x75c1, 0x75bb,\n  0x75c4, 0x75c0, 0x75bf, 0x75b6, 0x75ba, 0x768a, 0x76c9, 0x771d,\n  0x771b, 0x7710, 0x7713, 0x7712, 0x7723, 0x7711, 0x7715, 0x7719,\n  0x771a, 0x7722, 0x7727, 0x7823, 0x782c, 0x7822, 0x7835, 0x782f,\n  0x7828, 0x782e, 0x782b, 0x7821, 0x7829, 0x7833, 0x782a, 0x7831,\n  0x7954, 0x795b, 0x794f, 0x795c, 0x7953, 0x7952, 0x7951, 0x79eb,\n  0x79ec, 0x79e0, 0x79ee, 0x79ed, 0x79ea, 0x79dc, 0x79de, 0x79dd,\n  0x7a86, 0x7a89, 0x7a85, 0x7a8b, 0x7a8c, 0x7a8a, 0x7a87, 0x7ad8,\n  0x7b10, 0x7b04, 0x7b13, 0x7b05, 0x7b0f, 0x7b08, 0x7b0a, 0x7b0e,\n  0x7b09, 0x7b12, 0x7c84, 0x7c91, 0x7c8a, 0x7c8c, 0x7c88, 0x7c8d,\n  0x7c85, 0x7d1e, 0x7d1d, 0x7d11, 0x7d0e, 0x7d18, 0x7d16, 0x7d13,\n  0x7d1f, 0x7d12, 0x7d0f, 0x7d0c, 0x7f5c, 0x7f61,\n  /* 0x32 */\n  0x7f5e, 0x7f60, 0x7f5d, 0x7f5b, 0x7f96, 0x7f92, 0x7fc3, 0x7fc2,\n  0x7fc0, 0x8016, 0x803e, 0x8039, 0x80fa, 0x80f2, 0x80f9, 0x80f5,\n  0x8101, 0x80fb, 0x8100, 0x8201, 0x822f, 0x8225, 0x8333, 0x832d,\n  0x8344, 0x8319, 0x8351, 0x8325, 0x8356, 0x833f, 0x8341, 0x8326,\n  0x831c, 0x8322, 0x8342, 0x834e, 0x831b, 0x832a, 0x8308, 0x833c,\n  0x834d, 0x8316, 0x8324, 0x8320, 0x8337, 0x832f, 0x8329, 0x8347,\n  0x8345, 0x834c, 0x8353, 0x831e, 0x832c, 0x834b, 0x8327, 0x8348,\n  0x8653, 0x8652, 0x86a2, 0x86a8, 0x8696, 0x868d, 0x8691, 0x869e,\n  0x8687, 0x8697, 0x8686, 0x868b, 0x869a, 0x8685, 0x86a5, 0x8699,\n  0x86a1, 0x86a7, 0x8695, 0x8698, 0x868e, 0x869d, 0x8690, 0x8694,\n  0x8843, 0x8844, 0x886d, 0x8875, 0x8876, 0x8872, 0x8880, 0x8871,\n  0x887f, 0x886f, 0x8883, 0x887e, 0x8874, 0x887c,\n  /* 0x33 */\n  0x8a12, 0x8c47, 0x8c57, 0x8c7b, 0x8ca4, 0x8ca3, 0x8d76, 0x8d78,\n  0x8db5, 0x8db7, 0x8db6, 0x8ed1, 0x8ed3, 0x8ffe, 0x8ff5, 0x9002,\n  0x8fff, 0x8ffb, 0x9004, 0x8ffc, 0x8ff6, 0x90d6, 0x90e0, 0x90d9,\n  0x90da, 0x90e3, 0x90df, 0x90e5, 0x90d8, 0x90db, 0x90d7, 0x90dc,\n  0x90e4, 0x9150, 0x914e, 0x914f, 0x91d5, 0x91e2, 0x91da, 0x965c,\n  0x965f, 0x96bc, 0x98e3, 0x9adf, 0x9b2f, 0x4e7f, 0x5070, 0x506a,\n  0x5061, 0x505e, 0x5060, 0x5053, 0x504b, 0x505d, 0x5072, 0x5048,\n  0x504d, 0x5041, 0x505b, 0x504a, 0x5062, 0x5015, 0x5045, 0x505f,\n  0x5069, 0x506b, 0x5063, 0x5064, 0x5046, 0x5040, 0x506e, 0x5073,\n  0x5057, 0x5051, 0x51d0, 0x526b, 0x526d, 0x526c, 0x526e, 0x52d6,\n  0x52d3, 0x532d, 0x539c, 0x5575, 0x5576, 0x553c, 0x554d, 0x5550,\n  0x5534, 0x552a, 0x5551, 0x5562, 0x5536, 0x5535,\n  /* 0x34 */\n  0x5530, 0x5552, 0x5545, 0x550c, 0x5532, 0x5565, 0x554e, 0x5539,\n  0x5548, 0x552d, 0x553b, 0x5540, 0x554b, 0x570a, 0x5707, 0x57fb,\n  0x5814, 0x57e2, 0x57f6, 0x57dc, 0x57f4, 0x5800, 0x57ed, 0x57fd,\n  0x5808, 0x57f8, 0x580b, 0x57f3, 0x57cf, 0x5807, 0x57ee, 0x57e3,\n  0x57f2, 0x57e5, 0x57ec, 0x57e1, 0x580e, 0x57fc, 0x5810, 0x57e7,\n  0x5801, 0x580c, 0x57f1, 0x57e9, 0x57f0, 0x580d, 0x5804, 0x595c,\n  0x5a60, 0x5a58, 0x5a55, 0x5a67, 0x5a5e, 0x5a38, 0x5a35, 0x5a6d,\n  0x5a50, 0x5a5f, 0x5a65, 0x5a6c, 0x5a53, 0x5a64, 0x5a57, 0x5a43,\n  0x5a5d, 0x5a52, 0x5a44, 0x5a5b, 0x5a48, 0x5a8e, 0x5a3e, 0x5a4d,\n  0x5a39, 0x5a4c, 0x5a70, 0x5a69, 0x5a47, 0x5a51, 0x5a56, 0x5a42,\n  0x5a5c, 0x5b72, 0x5b6e, 0x5bc1, 0x5bc0, 0x5c59, 0x5d1e, 0x5d0b,\n  0x5d1d, 0x5d1a, 0x5d20, 0x5d0c, 0x5d28, 0x5d0d,\n  /* 0x35 */\n  0x5d26, 0x5d25, 0x5d0f, 0x5d30, 0x5d12, 0x5d23, 0x5d1f, 0x5d2e,\n  0x5e3e, 0x5e34, 0x5eb1, 0x5eb4, 0x5eb9, 0x5eb2, 0x5eb3, 0x5f36,\n  0x5f38, 0x5f9b, 0x5f96, 0x5f9f, 0x608a, 0x6090, 0x6086, 0x60be,\n  0x60b0, 0x60ba, 0x60d3, 0x60d4, 0x60cf, 0x60e4, 0x60d9, 0x60dd,\n  0x60c8, 0x60b1, 0x60db, 0x60b7, 0x60ca, 0x60bf, 0x60c3, 0x60cd,\n  0x60c0, 0x6332, 0x6365, 0x638a, 0x6382, 0x637d, 0x63bd, 0x639e,\n  0x63ad, 0x639d, 0x6397, 0x63ab, 0x638e, 0x636f, 0x6387, 0x6390,\n  0x636e, 0x63af, 0x6375, 0x639c, 0x636d, 0x63ae, 0x637c, 0x63a4,\n  0x633b, 0x639f, 0x6378, 0x6385, 0x6381, 0x6391, 0x638d, 0x6370,\n  0x6553, 0x65cd, 0x6665, 0x6661, 0x665b, 0x6659, 0x665c, 0x6662,\n  0x6718, 0x6879, 0x6887, 0x6890, 0x689c, 0x686d, 0x686e, 0x68ae,\n  0x68ab, 0x6956, 0x686f, 0x68a3, 0x68ac, 0x68a9,\n  /* 0x36 */\n  0x6875, 0x6874, 0x68b2, 0x688f, 0x6877, 0x6892, 0x687c, 0x686b,\n  0x6872, 0x68aa, 0x6880, 0x6871, 0x687e, 0x689b, 0x6896, 0x688b,\n  0x68a0, 0x6889, 0x68a4, 0x6878, 0x687b, 0x6891, 0x688c, 0x688a,\n  0x687d, 0x6b36, 0x6b33, 0x6b37, 0x6b38, 0x6b91, 0x6b8f, 0x6b8d,\n  0x6b8e, 0x6b8c, 0x6c2a, 0x6dc0, 0x6dab, 0x6db4, 0x6db3, 0x6e74,\n  0x6dac, 0x6de9, 0x6de2, 0x6db7, 0x6df6, 0x6dd4, 0x6e00, 0x6dc8,\n  0x6de0, 0x6ddf, 0x6dd6, 0x6dbe, 0x6de5, 0x6ddc, 0x6ddd, 0x6ddb,\n  0x6df4, 0x6dca, 0x6dbd, 0x6ded, 0x6df0, 0x6dba, 0x6dd5, 0x6dc2,\n  0x6dcf, 0x6dc9, 0x6dd0, 0x6df2, 0x6dd3, 0x6dfd, 0x6dd7, 0x6dcd,\n  0x6de3, 0x6dbb, 0x70fa, 0x710d, 0x70f7, 0x7117, 0x70f4, 0x710c,\n  0x70f0, 0x7104, 0x70f3, 0x7110, 0x70fc, 0x70ff, 0x7106, 0x7113,\n  0x7100, 0x70f8, 0x70f6, 0x710b, 0x7102, 0x710e,\n  /* 0x37 */\n  0x727e, 0x727b, 0x727c, 0x727f, 0x731d, 0x7317, 0x7307, 0x7311,\n  0x7318, 0x730a, 0x7308, 0x72ff, 0x730f, 0x731e, 0x7388, 0x73f6,\n  0x73f8, 0x73f5, 0x7404, 0x7401, 0x73fd, 0x7407, 0x7400, 0x73fa,\n  0x73fc, 0x73ff, 0x740c, 0x740b, 0x73f4, 0x7408, 0x7564, 0x7563,\n  0x75ce, 0x75d2, 0x75cf, 0x75cb, 0x75cc, 0x75d1, 0x75d0, 0x768f,\n  0x7689, 0x76d3, 0x7739, 0x772f, 0x772d, 0x7731, 0x7732, 0x7734,\n  0x7733, 0x773d, 0x7725, 0x773b, 0x7735, 0x7848, 0x7852, 0x7849,\n  0x784d, 0x784a, 0x784c, 0x7826, 0x7845, 0x7850, 0x7964, 0x7967,\n  0x7969, 0x796a, 0x7963, 0x796b, 0x7961, 0x79bb, 0x79fa, 0x79f8,\n  0x79f6, 0x79f7, 0x7a8f, 0x7a94, 0x7a90, 0x7b35, 0x7b3b, 0x7b34,\n  0x7b25, 0x7b30, 0x7b22, 0x7b24, 0x7b33, 0x7b18, 0x7b2a, 0x7b1d,\n  0x7b31, 0x7b2b, 0x7b2d, 0x7b2f, 0x7b32, 0x7b38,\n  /* 0x38 */\n  0x7b1a, 0x7b23, 0x7c94, 0x7c98, 0x7c96, 0x7ca3, 0x7d35, 0x7d3d,\n  0x7d38, 0x7d36, 0x7d3a, 0x7d45, 0x7d2c, 0x7d29, 0x7d41, 0x7d47,\n  0x7d3e, 0x7d3f, 0x7d4a, 0x7d3b, 0x7d28, 0x7f63, 0x7f95, 0x7f9c,\n  0x7f9d, 0x7f9b, 0x7fca, 0x7fcb, 0x7fcd, 0x7fd0, 0x7fd1, 0x7fc7,\n  0x7fcf, 0x7fc9, 0x801f, 0x801e, 0x801b, 0x8047, 0x8043, 0x8048,\n  0x8118, 0x8125, 0x8119, 0x811b, 0x812d, 0x811f, 0x812c, 0x811e,\n  0x8121, 0x8115, 0x8127, 0x811d, 0x8122, 0x8211, 0x8238, 0x8233,\n  0x823a, 0x8234, 0x8232, 0x8274, 0x8390, 0x83a3, 0x83a8, 0x838d,\n  0x837a, 0x8373, 0x83a4, 0x8374, 0x838f, 0x8381, 0x8395, 0x8399,\n  0x8375, 0x8394, 0x83a9, 0x837d, 0x8383, 0x838c, 0x839d, 0x839b,\n  0x83aa, 0x838b, 0x837e, 0x83a5, 0x83af, 0x8388, 0x8397, 0x83b0,\n  0x837f, 0x83a6, 0x8387, 0x83ae, 0x8376, 0x8659,\n  /* 0x39 */\n  0x8656, 0x86bf, 0x86b7, 0x86c2, 0x86c1, 0x86c5, 0x86ba, 0x86b0,\n  0x86c8, 0x86b9, 0x86b3, 0x86b8, 0x86cc, 0x86b4, 0x86bb, 0x86bc,\n  0x86c3, 0x86bd, 0x86be, 0x8852, 0x8889, 0x8895, 0x88a8, 0x88a2,\n  0x88aa, 0x889a, 0x8891, 0x88a1, 0x889f, 0x8898, 0x88a7, 0x8899,\n  0x889b, 0x8897, 0x88a4, 0x88ac, 0x888c, 0x8893, 0x888e, 0x8982,\n  0x89d6, 0x89d9, 0x89d5, 0x8a30, 0x8a27, 0x8a2c, 0x8a1e, 0x8c39,\n  0x8c3b, 0x8c5c, 0x8c5d, 0x8c7d, 0x8ca5, 0x8d7d, 0x8d7b, 0x8d79,\n  0x8dbc, 0x8dc2, 0x8db9, 0x8dbf, 0x8dc1, 0x8ed8, 0x8ede, 0x8edd,\n  0x8edc, 0x8ed7, 0x8ee0, 0x8ee1, 0x9024, 0x900b, 0x9011, 0x901c,\n  0x900c, 0x9021, 0x90ef, 0x90ea, 0x90f0, 0x90f4, 0x90f2, 0x90f3,\n  0x90d4, 0x90eb, 0x90ec, 0x90e9, 0x9156, 0x9158, 0x915a, 0x9153,\n  0x9155, 0x91ec, 0x91f4, 0x91f1, 0x91f3, 0x91f8,\n  /* 0x3a */\n  0x91e4, 0x91f9, 0x91ea, 0x91eb, 0x91f7, 0x91e8, 0x91ee, 0x957a,\n  0x9586, 0x9588, 0x967c, 0x966d, 0x966b, 0x9671, 0x966f, 0x96bf,\n  0x976a, 0x9804, 0x98e5, 0x9997, 0x509b, 0x5095, 0x5094, 0x509e,\n  0x508b, 0x50a3, 0x5083, 0x508c, 0x508e, 0x509d, 0x5068, 0x509c,\n  0x5092, 0x5082, 0x5087, 0x515f, 0x51d4, 0x5312, 0x5311, 0x53a4,\n  0x53a7, 0x5591, 0x55a8, 0x55a5, 0x55ad, 0x5577, 0x5645, 0x55a2,\n  0x5593, 0x5588, 0x558f, 0x55b5, 0x5581, 0x55a3, 0x5592, 0x55a4,\n  0x557d, 0x558c, 0x55a6, 0x557f, 0x5595, 0x55a1, 0x558e, 0x570c,\n  0x5829, 0x5837, 0x5819, 0x581e, 0x5827, 0x5823, 0x5828, 0x57f5,\n  0x5848, 0x5825, 0x581c, 0x581b, 0x5833, 0x583f, 0x5836, 0x582e,\n  0x5839, 0x5838, 0x582d, 0x582c, 0x583b, 0x5961, 0x5aaf, 0x5a94,\n  0x5a9f, 0x5a7a, 0x5aa2, 0x5a9e, 0x5a78, 0x5aa6,\n  /* 0x3b */\n  0x5a7c, 0x5aa5, 0x5aac, 0x5a95, 0x5aae, 0x5a37, 0x5a84, 0x5a8a,\n  0x5a97, 0x5a83, 0x5a8b, 0x5aa9, 0x5a7b, 0x5a7d, 0x5a8c, 0x5a9c,\n  0x5a8f, 0x5a93, 0x5a9d, 0x5bea, 0x5bcd, 0x5bcb, 0x5bd4, 0x5bd1,\n  0x5bca, 0x5bce, 0x5c0c, 0x5c30, 0x5d37, 0x5d43, 0x5d6b, 0x5d41,\n  0x5d4b, 0x5d3f, 0x5d35, 0x5d51, 0x5d4e, 0x5d55, 0x5d33, 0x5d3a,\n  0x5d52, 0x5d3d, 0x5d31, 0x5d59, 0x5d42, 0x5d39, 0x5d49, 0x5d38,\n  0x5d3c, 0x5d32, 0x5d36, 0x5d40, 0x5d45, 0x5e44, 0x5e41, 0x5f58,\n  0x5fa6, 0x5fa5, 0x5fab, 0x60c9, 0x60b9, 0x60cc, 0x60e2, 0x60ce,\n  0x60c4, 0x6114, 0x60f2, 0x610a, 0x6116, 0x6105, 0x60f5, 0x6113,\n  0x60f8, 0x60fc, 0x60fe, 0x60c1, 0x6103, 0x6118, 0x611d, 0x6110,\n  0x60ff, 0x6104, 0x610b, 0x624a, 0x6394, 0x63b1, 0x63b0, 0x63ce,\n  0x63e5, 0x63e8, 0x63ef, 0x63c3, 0x649d, 0x63f3,\n  /* 0x3c */\n  0x63ca, 0x63e0, 0x63f6, 0x63d5, 0x63f2, 0x63f5, 0x6461, 0x63df,\n  0x63be, 0x63dd, 0x63dc, 0x63c4, 0x63d8, 0x63d3, 0x63c2, 0x63c7,\n  0x63cc, 0x63cb, 0x63c8, 0x63f0, 0x63d7, 0x63d9, 0x6532, 0x6567,\n  0x656a, 0x6564, 0x655c, 0x6568, 0x6565, 0x658c, 0x659d, 0x659e,\n  0x65ae, 0x65d0, 0x65d2, 0x667c, 0x666c, 0x667b, 0x6680, 0x6671,\n  0x6679, 0x666a, 0x6672, 0x6701, 0x690c, 0x68d3, 0x6904, 0x68dc,\n  0x692a, 0x68ec, 0x68ea, 0x68f1, 0x690f, 0x68d6, 0x68f7, 0x68eb,\n  0x68e4, 0x68f6, 0x6913, 0x6910, 0x68f3, 0x68e1, 0x6907, 0x68cc,\n  0x6908, 0x6970, 0x68b4, 0x6911, 0x68ef, 0x68c6, 0x6914, 0x68f8,\n  0x68d0, 0x68fd, 0x68fc, 0x68e8, 0x690b, 0x690a, 0x6917, 0x68ce,\n  0x68c8, 0x68dd, 0x68de, 0x68e6, 0x68f4, 0x68d1, 0x6906, 0x68d4,\n  0x68e9, 0x6915, 0x6925, 0x68c7, 0x6b39, 0x6b3b,\n  /* 0x3d */\n  0x6b3f, 0x6b3c, 0x6b94, 0x6b97, 0x6b99, 0x6b95, 0x6bbd, 0x6bf0,\n  0x6bf2, 0x6bf3, 0x6c30, 0x6dfc, 0x6e46, 0x6e47, 0x6e1f, 0x6e49,\n  0x6e88, 0x6e3c, 0x6e3d, 0x6e45, 0x6e62, 0x6e2b, 0x6e3f, 0x6e41,\n  0x6e5d, 0x6e73, 0x6e1c, 0x6e33, 0x6e4b, 0x6e40, 0x6e51, 0x6e3b,\n  0x6e03, 0x6e2e, 0x6e5e, 0x6e68, 0x6e5c, 0x6e61, 0x6e31, 0x6e28,\n  0x6e60, 0x6e71, 0x6e6b, 0x6e39, 0x6e22, 0x6e30, 0x6e53, 0x6e65,\n  0x6e27, 0x6e78, 0x6e64, 0x6e77, 0x6e55, 0x6e79, 0x6e52, 0x6e66,\n  0x6e35, 0x6e36, 0x6e5a, 0x7120, 0x711e, 0x712f, 0x70fb, 0x712e,\n  0x7131, 0x7123, 0x7125, 0x7122, 0x7132, 0x711f, 0x7128, 0x713a,\n  0x711b, 0x724b, 0x725a, 0x7288, 0x7289, 0x7286, 0x7285, 0x728b,\n  0x7312, 0x730b, 0x7330, 0x7322, 0x7331, 0x7333, 0x7327, 0x7332,\n  0x732d, 0x7326, 0x7323, 0x7335, 0x730c, 0x742e,\n  /* 0x3e */\n  0x742c, 0x7430, 0x742b, 0x7416, 0x741a, 0x7421, 0x742d, 0x7431,\n  0x7424, 0x7423, 0x741d, 0x7429, 0x7420, 0x7432, 0x74fb, 0x752f,\n  0x756f, 0x756c, 0x75e7, 0x75da, 0x75e1, 0x75e6, 0x75dd, 0x75df,\n  0x75e4, 0x75d7, 0x7695, 0x7692, 0x76da, 0x7746, 0x7747, 0x7744,\n  0x774d, 0x7745, 0x774a, 0x774e, 0x774b, 0x774c, 0x77de, 0x77ec,\n  0x7860, 0x7864, 0x7865, 0x785c, 0x786d, 0x7871, 0x786a, 0x786e,\n  0x7870, 0x7869, 0x7868, 0x785e, 0x7862, 0x7974, 0x7973, 0x7972,\n  0x7970, 0x7a02, 0x7a0a, 0x7a03, 0x7a0c, 0x7a04, 0x7a99, 0x7ae6,\n  0x7ae4, 0x7b4a, 0x7b47, 0x7b44, 0x7b48, 0x7b4c, 0x7b4e, 0x7b40,\n  0x7b58, 0x7b45, 0x7ca2, 0x7c9e, 0x7ca8, 0x7ca1, 0x7d58, 0x7d6f,\n  0x7d63, 0x7d53, 0x7d56, 0x7d67, 0x7d6a, 0x7d4f, 0x7d6d, 0x7d5c,\n  0x7d6b, 0x7d52, 0x7d54, 0x7d69, 0x7d51, 0x7d5f,\n  /* 0x3f */\n  0x7d4e, 0x7f3e, 0x7f3f, 0x7f65, 0x7f66, 0x7fa2, 0x7fa0, 0x7fa1,\n  0x7fd7, 0x8051, 0x804f, 0x8050, 0x80fe, 0x80d4, 0x8143, 0x814a,\n  0x8152, 0x814f, 0x8147, 0x813d, 0x814d, 0x813a, 0x81e6, 0x81ee,\n  0x81f7, 0x81f8, 0x81f9, 0x8204, 0x823c, 0x823d, 0x823f, 0x8275,\n  0x833b, 0x83cf, 0x83f9, 0x8423, 0x83c0, 0x83e8, 0x8412, 0x83e7,\n  0x83e4, 0x83fc, 0x83f6, 0x8410, 0x83c6, 0x83c8, 0x83eb, 0x83e3,\n  0x83bf, 0x8401, 0x83dd, 0x83e5, 0x83d8, 0x83ff, 0x83e1, 0x83cb,\n  0x83ce, 0x83d6, 0x83f5, 0x83c9, 0x8409, 0x840f, 0x83de, 0x8411,\n  0x8406, 0x83c2, 0x83f3, 0x83d5, 0x83fa, 0x83c7, 0x83d1, 0x83ea,\n  0x8413, 0x839a, 0x83c3, 0x83ec, 0x83ee, 0x83c4, 0x83fb, 0x83d7,\n  0x83e2, 0x841b, 0x83db, 0x83fe, 0x86d8, 0x86e2, 0x86e6, 0x86d3,\n  0x86e3, 0x86da, 0x86ea, 0x86dd, 0x86eb, 0x86dc,\n  /* 0x40 */\n  0x86ec, 0x86e9, 0x86d7, 0x86e8, 0x86d1, 0x8848, 0x8856, 0x8855,\n  0x88ba, 0x88d7, 0x88b9, 0x88b8, 0x88c0, 0x88be, 0x88b6, 0x88bc,\n  0x88b7, 0x88bd, 0x88b2, 0x8901, 0x88c9, 0x8995, 0x8998, 0x8997,\n  0x89dd, 0x89da, 0x89db, 0x8a4e, 0x8a4d, 0x8a39, 0x8a59, 0x8a40,\n  0x8a57, 0x8a58, 0x8a44, 0x8a45, 0x8a52, 0x8a48, 0x8a51, 0x8a4a,\n  0x8a4c, 0x8a4f, 0x8c5f, 0x8c81, 0x8c80, 0x8cba, 0x8cbe, 0x8cb0,\n  0x8cb9, 0x8cb5, 0x8d84, 0x8d80, 0x8d89, 0x8dd8, 0x8dd3, 0x8dcd,\n  0x8dc7, 0x8dd6, 0x8ddc, 0x8dcf, 0x8dd5, 0x8dd9, 0x8dc8, 0x8dd7,\n  0x8dc5, 0x8eef, 0x8ef7, 0x8efa, 0x8ef9, 0x8ee6, 0x8eee, 0x8ee5,\n  0x8ef5, 0x8ee7, 0x8ee8, 0x8ef6, 0x8eeb, 0x8ef1, 0x8eec, 0x8ef4,\n  0x8ee9, 0x902d, 0x9034, 0x902f, 0x9106, 0x912c, 0x9104, 0x90ff,\n  0x90fc, 0x9108, 0x90f9, 0x90fb, 0x9101, 0x9100,\n  /* 0x41 */\n  0x9107, 0x9105, 0x9103, 0x9161, 0x9164, 0x915f, 0x9162, 0x9160,\n  0x9201, 0x920a, 0x9225, 0x9203, 0x921a, 0x9226, 0x920f, 0x920c,\n  0x9200, 0x9212, 0x91ff, 0x91fd, 0x9206, 0x9204, 0x9227, 0x9202,\n  0x921c, 0x9224, 0x9219, 0x9217, 0x9205, 0x9216, 0x957b, 0x958d,\n  0x958c, 0x9590, 0x9687, 0x967e, 0x9688, 0x9689, 0x9683, 0x9680,\n  0x96c2, 0x96c8, 0x96c3, 0x96f1, 0x96f0, 0x976c, 0x9770, 0x976e,\n  0x9807, 0x98a9, 0x98eb, 0x9ce6, 0x9ef9, 0x4e83, 0x4e84, 0x4eb6,\n  0x50bd, 0x50bf, 0x50c6, 0x50ae, 0x50c4, 0x50ca, 0x50b4, 0x50c8,\n  0x50c2, 0x50b0, 0x50c1, 0x50ba, 0x50b1, 0x50cb, 0x50c9, 0x50b6,\n  0x50b8, 0x51d7, 0x527a, 0x5278, 0x527b, 0x527c, 0x55c3, 0x55db,\n  0x55cc, 0x55d0, 0x55cb, 0x55ca, 0x55dd, 0x55c0, 0x55d4, 0x55c4,\n  0x55e9, 0x55bf, 0x55d2, 0x558d, 0x55cf, 0x55d5,\n  /* 0x42 */\n  0x55e2, 0x55d6, 0x55c8, 0x55f2, 0x55cd, 0x55d9, 0x55c2, 0x5714,\n  0x5853, 0x5868, 0x5864, 0x584f, 0x584d, 0x5849, 0x586f, 0x5855,\n  0x584e, 0x585d, 0x5859, 0x5865, 0x585b, 0x583d, 0x5863, 0x5871,\n  0x58fc, 0x5ac7, 0x5ac4, 0x5acb, 0x5aba, 0x5ab8, 0x5ab1, 0x5ab5,\n  0x5ab0, 0x5abf, 0x5ac8, 0x5abb, 0x5ac6, 0x5ab7, 0x5ac0, 0x5aca,\n  0x5ab4, 0x5ab6, 0x5acd, 0x5ab9, 0x5a90, 0x5bd6, 0x5bd8, 0x5bd9,\n  0x5c1f, 0x5c33, 0x5d71, 0x5d63, 0x5d4a, 0x5d65, 0x5d72, 0x5d6c,\n  0x5d5e, 0x5d68, 0x5d67, 0x5d62, 0x5df0, 0x5e4f, 0x5e4e, 0x5e4a,\n  0x5e4d, 0x5e4b, 0x5ec5, 0x5ecc, 0x5ec6, 0x5ecb, 0x5ec7, 0x5f40,\n  0x5faf, 0x5fad, 0x60f7, 0x6149, 0x614a, 0x612b, 0x6145, 0x6136,\n  0x6132, 0x612e, 0x6146, 0x612f, 0x614f, 0x6129, 0x6140, 0x6220,\n  0x9168, 0x6223, 0x6225, 0x6224, 0x63c5, 0x63f1,\n  /* 0x43 */\n  0x63eb, 0x6410, 0x6412, 0x6409, 0x6420, 0x6424, 0x6433, 0x6443,\n  0x641f, 0x6415, 0x6418, 0x6439, 0x6437, 0x6422, 0x6423, 0x640c,\n  0x6426, 0x6430, 0x6428, 0x6441, 0x6435, 0x642f, 0x640a, 0x641a,\n  0x6440, 0x6425, 0x6427, 0x640b, 0x63e7, 0x641b, 0x642e, 0x6421,\n  0x640e, 0x656f, 0x6592, 0x65d3, 0x6686, 0x668c, 0x6695, 0x6690,\n  0x668b, 0x668a, 0x6699, 0x6694, 0x6678, 0x6720, 0x6966, 0x695f,\n  0x6938, 0x694e, 0x6962, 0x6971, 0x693f, 0x6945, 0x696a, 0x6939,\n  0x6942, 0x6957, 0x6959, 0x697a, 0x6948, 0x6949, 0x6935, 0x696c,\n  0x6933, 0x693d, 0x6965, 0x68f0, 0x6978, 0x6934, 0x6969, 0x6940,\n  0x696f, 0x6944, 0x6976, 0x6958, 0x6941, 0x6974, 0x694c, 0x693b,\n  0x694b, 0x6937, 0x695c, 0x694f, 0x6951, 0x6932, 0x6952, 0x692f,\n  0x697b, 0x693c, 0x6b46, 0x6b45, 0x6b43, 0x6b42,\n  /* 0x44 */\n  0x6b48, 0x6b41, 0x6b9b, 0x6bfb, 0x6bfc, 0x6bf9, 0x6bf7, 0x6bf8,\n  0x6e9b, 0x6ed6, 0x6ec8, 0x6e8f, 0x6ec0, 0x6e9f, 0x6e93, 0x6e94,\n  0x6ea0, 0x6eb1, 0x6eb9, 0x6ec6, 0x6ed2, 0x6ebd, 0x6ec1, 0x6e9e,\n  0x6ec9, 0x6eb7, 0x6eb0, 0x6ecd, 0x6ea6, 0x6ecf, 0x6eb2, 0x6ebe,\n  0x6ec3, 0x6edc, 0x6ed8, 0x6e99, 0x6e92, 0x6e8e, 0x6e8d, 0x6ea4,\n  0x6ea1, 0x6ebf, 0x6eb3, 0x6ed0, 0x6eca, 0x6e97, 0x6eae, 0x6ea3,\n  0x7147, 0x7154, 0x7152, 0x7163, 0x7160, 0x7141, 0x715d, 0x7162,\n  0x7172, 0x7178, 0x716a, 0x7161, 0x7142, 0x7158, 0x7143, 0x714b,\n  0x7170, 0x715f, 0x7150, 0x7153, 0x7144, 0x714d, 0x715a, 0x724f,\n  0x728d, 0x728c, 0x7291, 0x7290, 0x728e, 0x733c, 0x7342, 0x733b,\n  0x733a, 0x7340, 0x734a, 0x7349, 0x7444, 0x744a, 0x744b, 0x7452,\n  0x7451, 0x7457, 0x7440, 0x744f, 0x7450, 0x744e,\n  /* 0x45 */\n  0x7442, 0x7446, 0x744d, 0x7454, 0x74e1, 0x74ff, 0x74fe, 0x74fd,\n  0x751d, 0x7579, 0x7577, 0x6983, 0x75ef, 0x760f, 0x7603, 0x75f7,\n  0x75fe, 0x75fc, 0x75f9, 0x75f8, 0x7610, 0x75fb, 0x75f6, 0x75ed,\n  0x75f5, 0x75fd, 0x7699, 0x76b5, 0x76dd, 0x7755, 0x775f, 0x7760,\n  0x7752, 0x7756, 0x775a, 0x7769, 0x7767, 0x7754, 0x7759, 0x776d,\n  0x77e0, 0x7887, 0x789a, 0x7894, 0x788f, 0x7884, 0x7895, 0x7885,\n  0x7886, 0x78a1, 0x7883, 0x7879, 0x7899, 0x7880, 0x7896, 0x787b,\n  0x797c, 0x7982, 0x797d, 0x7979, 0x7a11, 0x7a18, 0x7a19, 0x7a12,\n  0x7a17, 0x7a15, 0x7a22, 0x7a13, 0x7a1b, 0x7a10, 0x7aa3, 0x7aa2,\n  0x7a9e, 0x7aeb, 0x7b66, 0x7b64, 0x7b6d, 0x7b74, 0x7b69, 0x7b72,\n  0x7b65, 0x7b73, 0x7b71, 0x7b70, 0x7b61, 0x7b78, 0x7b76, 0x7b63,\n  0x7cb2, 0x7cb4, 0x7caf, 0x7d88, 0x7d86, 0x7d80,\n  /* 0x46 */\n  0x7d8d, 0x7d7f, 0x7d85, 0x7d7a, 0x7d8e, 0x7d7b, 0x7d83, 0x7d7c,\n  0x7d8c, 0x7d94, 0x7d84, 0x7d7d, 0x7d92, 0x7f6d, 0x7f6b, 0x7f67,\n  0x7f68, 0x7f6c, 0x7fa6, 0x7fa5, 0x7fa7, 0x7fdb, 0x7fdc, 0x8021,\n  0x8164, 0x8160, 0x8177, 0x815c, 0x8169, 0x815b, 0x8162, 0x8172,\n  0x6721, 0x815e, 0x8176, 0x8167, 0x816f, 0x8144, 0x8161, 0x821d,\n  0x8249, 0x8244, 0x8240, 0x8242, 0x8245, 0x84f1, 0x843f, 0x8456,\n  0x8476, 0x8479, 0x848f, 0x848d, 0x8465, 0x8451, 0x8440, 0x8486,\n  0x8467, 0x8430, 0x844d, 0x847d, 0x845a, 0x8459, 0x8474, 0x8473,\n  0x845d, 0x8507, 0x845e, 0x8437, 0x843a, 0x8434, 0x847a, 0x8443,\n  0x8478, 0x8432, 0x8445, 0x8429, 0x83d9, 0x844b, 0x842f, 0x8442,\n  0x842d, 0x845f, 0x8470, 0x8439, 0x844e, 0x844c, 0x8452, 0x846f,\n  0x84c5, 0x848e, 0x843b, 0x8447, 0x8436, 0x8433,\n  /* 0x47 */\n  0x8468, 0x847e, 0x8444, 0x842b, 0x8460, 0x8454, 0x846e, 0x8450,\n  0x870b, 0x8704, 0x86f7, 0x870c, 0x86fa, 0x86d6, 0x86f5, 0x874d,\n  0x86f8, 0x870e, 0x8709, 0x8701, 0x86f6, 0x870d, 0x8705, 0x88d6,\n  0x88cb, 0x88cd, 0x88ce, 0x88de, 0x88db, 0x88da, 0x88cc, 0x88d0,\n  0x8985, 0x899b, 0x89df, 0x89e5, 0x89e4, 0x89e1, 0x89e0, 0x89e2,\n  0x89dc, 0x89e6, 0x8a76, 0x8a86, 0x8a7f, 0x8a61, 0x8a3f, 0x8a77,\n  0x8a82, 0x8a84, 0x8a75, 0x8a83, 0x8a81, 0x8a74, 0x8a7a, 0x8c3c,\n  0x8c4b, 0x8c4a, 0x8c65, 0x8c64, 0x8c66, 0x8c86, 0x8c84, 0x8c85,\n  0x8ccc, 0x8d68, 0x8d69, 0x8d91, 0x8d8c, 0x8d8e, 0x8d8f, 0x8d8d,\n  0x8d93, 0x8d94, 0x8d90, 0x8d92, 0x8df0, 0x8de0, 0x8dec, 0x8df1,\n  0x8dee, 0x8dd0, 0x8de9, 0x8de3, 0x8de2, 0x8de7, 0x8df2, 0x8deb,\n  0x8df4, 0x8f06, 0x8eff, 0x8f01, 0x8f00, 0x8f05,\n  /* 0x48 */\n  0x8f07, 0x8f08, 0x8f02, 0x8f0b, 0x9052, 0x903f, 0x9044, 0x9049,\n  0x903d, 0x9110, 0x910d, 0x910f, 0x9111, 0x9116, 0x9114, 0x910b,\n  0x910e, 0x916e, 0x916f, 0x9248, 0x9252, 0x9230, 0x923a, 0x9266,\n  0x9233, 0x9265, 0x925e, 0x9283, 0x922e, 0x924a, 0x9246, 0x926d,\n  0x926c, 0x924f, 0x9260, 0x9267, 0x926f, 0x9236, 0x9261, 0x9270,\n  0x9231, 0x9254, 0x9263, 0x9250, 0x9272, 0x924e, 0x9253, 0x924c,\n  0x9256, 0x9232, 0x959f, 0x959c, 0x959e, 0x959b, 0x9692, 0x9693,\n  0x9691, 0x9697, 0x96ce, 0x96fa, 0x96fd, 0x96f8, 0x96f5, 0x9773,\n  0x9777, 0x9778, 0x9772, 0x980f, 0x980d, 0x980e, 0x98ac, 0x98f6,\n  0x98f9, 0x99af, 0x99b2, 0x99b0, 0x99b5, 0x9aad, 0x9aab, 0x9b5b,\n  0x9cea, 0x9ced, 0x9ce7, 0x9e80, 0x9efd, 0x50e6, 0x50d4, 0x50d7,\n  0x50e8, 0x50f3, 0x50db, 0x50ea, 0x50dd, 0x50e4,\n  /* 0x49 */\n  0x50d3, 0x50ec, 0x50f0, 0x50ef, 0x50e3, 0x50e0, 0x51d8, 0x5280,\n  0x5281, 0x52e9, 0x52eb, 0x5330, 0x53ac, 0x5627, 0x5615, 0x560c,\n  0x5612, 0x55fc, 0x560f, 0x561c, 0x5601, 0x5613, 0x5602, 0x55fa,\n  0x561d, 0x5604, 0x55ff, 0x55f9, 0x5889, 0x587c, 0x5890, 0x5898,\n  0x5886, 0x5881, 0x587f, 0x5874, 0x588b, 0x587a, 0x5887, 0x5891,\n  0x588e, 0x5876, 0x5882, 0x5888, 0x587b, 0x5894, 0x588f, 0x58fe,\n  0x596b, 0x5adc, 0x5aee, 0x5ae5, 0x5ad5, 0x5aea, 0x5ada, 0x5aed,\n  0x5aeb, 0x5af3, 0x5ae2, 0x5ae0, 0x5adb, 0x5aec, 0x5ade, 0x5add,\n  0x5ad9, 0x5ae8, 0x5adf, 0x5b77, 0x5be0, 0x5be3, 0x5c63, 0x5d82,\n  0x5d80, 0x5d7d, 0x5d86, 0x5d7a, 0x5d81, 0x5d77, 0x5d8a, 0x5d89,\n  0x5d88, 0x5d7e, 0x5d7c, 0x5d8d, 0x5d79, 0x5d7f, 0x5e58, 0x5e59,\n  0x5e53, 0x5ed8, 0x5ed1, 0x5ed7, 0x5ece, 0x5edc,\n  /* 0x4a */\n  0x5ed5, 0x5ed9, 0x5ed2, 0x5ed4, 0x5f44, 0x5f43, 0x5f6f, 0x5fb6,\n  0x612c, 0x6128, 0x6141, 0x615e, 0x6171, 0x6173, 0x6152, 0x6153,\n  0x6172, 0x616c, 0x6180, 0x6174, 0x6154, 0x617a, 0x615b, 0x6165,\n  0x613b, 0x616a, 0x6161, 0x6156, 0x6229, 0x6227, 0x622b, 0x642b,\n  0x644d, 0x645b, 0x645d, 0x6474, 0x6476, 0x6472, 0x6473, 0x647d,\n  0x6475, 0x6466, 0x64a6, 0x644e, 0x6482, 0x645e, 0x645c, 0x644b,\n  0x6453, 0x6460, 0x6450, 0x647f, 0x643f, 0x646c, 0x646b, 0x6459,\n  0x6465, 0x6477, 0x6573, 0x65a0, 0x66a1, 0x66a0, 0x669f, 0x6705,\n  0x6704, 0x6722, 0x69b1, 0x69b6, 0x69c9, 0x69a0, 0x69ce, 0x6996,\n  0x69b0, 0x69ac, 0x69bc, 0x6991, 0x6999, 0x698e, 0x69a7, 0x698d,\n  0x69a9, 0x69be, 0x69af, 0x69bf, 0x69c4, 0x69bd, 0x69a4, 0x69d4,\n  0x69b9, 0x69ca, 0x699a, 0x69cf, 0x69b3, 0x6993,\n  /* 0x4b */\n  0x69aa, 0x69a1, 0x699e, 0x69d9, 0x6997, 0x6990, 0x69c2, 0x69b5,\n  0x69a5, 0x69c6, 0x6b4a, 0x6b4d, 0x6b4b, 0x6b9e, 0x6b9f, 0x6ba0,\n  0x6bc3, 0x6bc4, 0x6bfe, 0x6ece, 0x6ef5, 0x6ef1, 0x6f03, 0x6f25,\n  0x6ef8, 0x6f37, 0x6efb, 0x6f2e, 0x6f09, 0x6f4e, 0x6f19, 0x6f1a,\n  0x6f27, 0x6f18, 0x6f3b, 0x6f12, 0x6eed, 0x6f0a, 0x6f36, 0x6f73,\n  0x6ef9, 0x6eee, 0x6f2d, 0x6f40, 0x6f30, 0x6f3c, 0x6f35, 0x6eeb,\n  0x6f07, 0x6f0e, 0x6f43, 0x6f05, 0x6efd, 0x6ef6, 0x6f39, 0x6f1c,\n  0x6efc, 0x6f3a, 0x6f1f, 0x6f0d, 0x6f1e, 0x6f08, 0x6f21, 0x7187,\n  0x7190, 0x7189, 0x7180, 0x7185, 0x7182, 0x718f, 0x717b, 0x7186,\n  0x7181, 0x7197, 0x7244, 0x7253, 0x7297, 0x7295, 0x7293, 0x7343,\n  0x734d, 0x7351, 0x734c, 0x7462, 0x7473, 0x7471, 0x7475, 0x7472,\n  0x7467, 0x746e, 0x7500, 0x7502, 0x7503, 0x757d,\n  /* 0x4c */\n  0x7590, 0x7616, 0x7608, 0x760c, 0x7615, 0x7611, 0x760a, 0x7614,\n  0x76b8, 0x7781, 0x777c, 0x7785, 0x7782, 0x776e, 0x7780, 0x776f,\n  0x777e, 0x7783, 0x78b2, 0x78aa, 0x78b4, 0x78ad, 0x78a8, 0x787e,\n  0x78ab, 0x789e, 0x78a5, 0x78a0, 0x78ac, 0x78a2, 0x78a4, 0x7998,\n  0x798a, 0x798b, 0x7996, 0x7995, 0x7994, 0x7993, 0x7997, 0x7988,\n  0x7992, 0x7990, 0x7a2b, 0x7a4a, 0x7a30, 0x7a2f, 0x7a28, 0x7a26,\n  0x7aa8, 0x7aab, 0x7aac, 0x7aee, 0x7b88, 0x7b9c, 0x7b8a, 0x7b91,\n  0x7b90, 0x7b96, 0x7b8d, 0x7b8c, 0x7b9b, 0x7b8e, 0x7b85, 0x7b98,\n  0x5284, 0x7b99, 0x7ba4, 0x7b82, 0x7cbb, 0x7cbf, 0x7cbc, 0x7cba,\n  0x7da7, 0x7db7, 0x7dc2, 0x7da3, 0x7daa, 0x7dc1, 0x7dc0, 0x7dc5,\n  0x7d9d, 0x7dce, 0x7dc4, 0x7dc6, 0x7dcb, 0x7dcc, 0x7daf, 0x7db9,\n  0x7d96, 0x7dbc, 0x7d9f, 0x7da6, 0x7dae, 0x7da9,\n  /* 0x4d */\n  0x7da1, 0x7dc9, 0x7f73, 0x7fe2, 0x7fe3, 0x7fe5, 0x7fde, 0x8024,\n  0x805d, 0x805c, 0x8189, 0x8186, 0x8183, 0x8187, 0x818d, 0x818c,\n  0x818b, 0x8215, 0x8497, 0x84a4, 0x84a1, 0x849f, 0x84ba, 0x84ce,\n  0x84c2, 0x84ac, 0x84ae, 0x84ab, 0x84b9, 0x84b4, 0x84c1, 0x84cd,\n  0x84aa, 0x849a, 0x84b1, 0x84d0, 0x849d, 0x84a7, 0x84bb, 0x84a2,\n  0x8494, 0x84c7, 0x84cc, 0x849b, 0x84a9, 0x84af, 0x84a8, 0x84d6,\n  0x8498, 0x84b6, 0x84cf, 0x84a0, 0x84d7, 0x84d4, 0x84d2, 0x84db,\n  0x84b0, 0x8491, 0x8661, 0x8733, 0x8723, 0x8728, 0x876b, 0x8740,\n  0x872e, 0x871e, 0x8721, 0x8719, 0x871b, 0x8743, 0x872c, 0x8741,\n  0x873e, 0x8746, 0x8720, 0x8732, 0x872a, 0x872d, 0x873c, 0x8712,\n  0x873a, 0x8731, 0x8735, 0x8742, 0x8726, 0x8727, 0x8738, 0x8724,\n  0x871a, 0x8730, 0x8711, 0x88f7, 0x88e7, 0x88f1,\n  /* 0x4e */\n  0x88f2, 0x88fa, 0x88fe, 0x88ee, 0x88fc, 0x88f6, 0x88fb, 0x88f0,\n  0x88ec, 0x88eb, 0x899d, 0x89a1, 0x899f, 0x899e, 0x89e9, 0x89eb,\n  0x89e8, 0x8aab, 0x8a99, 0x8a8b, 0x8a92, 0x8a8f, 0x8a96, 0x8c3d,\n  0x8c68, 0x8c69, 0x8cd5, 0x8ccf, 0x8cd7, 0x8d96, 0x8e09, 0x8e02,\n  0x8dff, 0x8e0d, 0x8dfd, 0x8e0a, 0x8e03, 0x8e07, 0x8e06, 0x8e05,\n  0x8dfe, 0x8e00, 0x8e04, 0x8f10, 0x8f11, 0x8f0e, 0x8f0d, 0x9123,\n  0x911c, 0x9120, 0x9122, 0x911f, 0x911d, 0x911a, 0x9124, 0x9121,\n  0x911b, 0x917a, 0x9172, 0x9179, 0x9173, 0x92a5, 0x92a4, 0x9276,\n  0x929b, 0x927a, 0x92a0, 0x9294, 0x92aa, 0x928d, 0x92a6, 0x929a,\n  0x92ab, 0x9279, 0x9297, 0x927f, 0x92a3, 0x92ee, 0x928e, 0x9282,\n  0x9295, 0x92a2, 0x927d, 0x9288, 0x92a1, 0x928a, 0x9286, 0x928c,\n  0x9299, 0x92a7, 0x927e, 0x9287, 0x92a9, 0x929d,\n  /* 0x4f */\n  0x928b, 0x922d, 0x969e, 0x96a1, 0x96ff, 0x9758, 0x977d, 0x977a,\n  0x977e, 0x9783, 0x9780, 0x9782, 0x977b, 0x9784, 0x9781, 0x977f,\n  0x97ce, 0x97cd, 0x9816, 0x98ad, 0x98ae, 0x9902, 0x9900, 0x9907,\n  0x999d, 0x999c, 0x99c3, 0x99b9, 0x99bb, 0x99ba, 0x99c2, 0x99bd,\n  0x99c7, 0x9ab1, 0x9ae3, 0x9ae7, 0x9b3e, 0x9b3f, 0x9b60, 0x9b61,\n  0x9b5f, 0x9cf1, 0x9cf2, 0x9cf5, 0x9ea7, 0x50ff, 0x5103, 0x5130,\n  0x50f8, 0x5106, 0x5107, 0x50f6, 0x50fe, 0x510b, 0x510c, 0x50fd,\n  0x510a, 0x528b, 0x528c, 0x52f1, 0x52ef, 0x5648, 0x5642, 0x564c,\n  0x5635, 0x5641, 0x564a, 0x5649, 0x5646, 0x5658, 0x565a, 0x5640,\n  0x5633, 0x563d, 0x562c, 0x563e, 0x5638, 0x562a, 0x563a, 0x571a,\n  0x58ab, 0x589d, 0x58b1, 0x58a0, 0x58a3, 0x58af, 0x58ac, 0x58a5,\n  0x58a1, 0x58ff, 0x5aff, 0x5af4, 0x5afd, 0x5af7,\n  /* 0x50 */\n  0x5af6, 0x5b03, 0x5af8, 0x5b02, 0x5af9, 0x5b01, 0x5b07, 0x5b05,\n  0x5b0f, 0x5c67, 0x5d99, 0x5d97, 0x5d9f, 0x5d92, 0x5da2, 0x5d93,\n  0x5d95, 0x5da0, 0x5d9c, 0x5da1, 0x5d9a, 0x5d9e, 0x5e69, 0x5e5d,\n  0x5e60, 0x5e5c, 0x7df3, 0x5edb, 0x5ede, 0x5ee1, 0x5f49, 0x5fb2,\n  0x618b, 0x6183, 0x6179, 0x61b1, 0x61b0, 0x61a2, 0x6189, 0x619b,\n  0x6193, 0x61af, 0x61ad, 0x619f, 0x6192, 0x61aa, 0x61a1, 0x618d,\n  0x6166, 0x61b3, 0x622d, 0x646e, 0x6470, 0x6496, 0x64a0, 0x6485,\n  0x6497, 0x649c, 0x648f, 0x648b, 0x648a, 0x648c, 0x64a3, 0x649f,\n  0x6468, 0x64b1, 0x6498, 0x6576, 0x657a, 0x6579, 0x657b, 0x65b2,\n  0x65b3, 0x66b5, 0x66b0, 0x66a9, 0x66b2, 0x66b7, 0x66aa, 0x66af,\n  0x6a00, 0x6a06, 0x6a17, 0x69e5, 0x69f8, 0x6a15, 0x69f1, 0x69e4,\n  0x6a20, 0x69ff, 0x69ec, 0x69e2, 0x6a1b, 0x6a1d,\n  /* 0x51 */\n  0x69fe, 0x6a27, 0x69f2, 0x69ee, 0x6a14, 0x69f7, 0x69e7, 0x6a40,\n  0x6a08, 0x69e6, 0x69fb, 0x6a0d, 0x69fc, 0x69eb, 0x6a09, 0x6a04,\n  0x6a18, 0x6a25, 0x6a0f, 0x69f6, 0x6a26, 0x6a07, 0x69f4, 0x6a16,\n  0x6b51, 0x6ba5, 0x6ba3, 0x6ba2, 0x6ba6, 0x6c01, 0x6c00, 0x6bff,\n  0x6c02, 0x6f41, 0x6f26, 0x6f7e, 0x6f87, 0x6fc6, 0x6f92, 0x6f8d,\n  0x6f89, 0x6f8c, 0x6f62, 0x6f4f, 0x6f85, 0x6f5a, 0x6f96, 0x6f76,\n  0x6f6c, 0x6f82, 0x6f55, 0x6f72, 0x6f52, 0x6f50, 0x6f57, 0x6f94,\n  0x6f93, 0x6f5d, 0x6f00, 0x6f61, 0x6f6b, 0x6f7d, 0x6f67, 0x6f90,\n  0x6f53, 0x6f8b, 0x6f69, 0x6f7f, 0x6f95, 0x6f63, 0x6f77, 0x6f6a,\n  0x6f7b, 0x71b2, 0x71af, 0x719b, 0x71b0, 0x71a0, 0x719a, 0x71a9,\n  0x71b5, 0x719d, 0x71a5, 0x719e, 0x71a4, 0x71a1, 0x71aa, 0x719c,\n  0x71a7, 0x71b3, 0x7298, 0x729a, 0x7358, 0x7352,\n  /* 0x52 */\n  0x735e, 0x735f, 0x7360, 0x735d, 0x735b, 0x7361, 0x735a, 0x7359,\n  0x7362, 0x7487, 0x7489, 0x748a, 0x7486, 0x7481, 0x747d, 0x7485,\n  0x7488, 0x747c, 0x7479, 0x7508, 0x7507, 0x757e, 0x7625, 0x761e,\n  0x7619, 0x761d, 0x761c, 0x7623, 0x761a, 0x7628, 0x761b, 0x769c,\n  0x769d, 0x769e, 0x769b, 0x778d, 0x778f, 0x7789, 0x7788, 0x78cd,\n  0x78bb, 0x78cf, 0x78cc, 0x78d1, 0x78ce, 0x78d4, 0x78c8, 0x78c3,\n  0x78c4, 0x78c9, 0x799a, 0x79a1, 0x79a0, 0x799c, 0x79a2, 0x799b,\n  0x6b76, 0x7a39, 0x7ab2, 0x7ab4, 0x7ab3, 0x7bb7, 0x7bcb, 0x7bbe,\n  0x7bac, 0x7bce, 0x7baf, 0x7bb9, 0x7bca, 0x7bb5, 0x7cc5, 0x7cc8,\n  0x7ccc, 0x7ccb, 0x7df7, 0x7ddb, 0x7dea, 0x7de7, 0x7dd7, 0x7de1,\n  0x7e03, 0x7dfa, 0x7de6, 0x7df6, 0x7df1, 0x7df0, 0x7dee, 0x7ddf,\n  0x7f76, 0x7fac, 0x7fb0, 0x7fad, 0x7fed, 0x7feb,\n  /* 0x53 */\n  0x7fea, 0x7fec, 0x7fe6, 0x7fe8, 0x8064, 0x8067, 0x81a3, 0x819f,\n  0x819e, 0x8195, 0x81a2, 0x8199, 0x8197, 0x8216, 0x824f, 0x8253,\n  0x8252, 0x8250, 0x824e, 0x8251, 0x8524, 0x853b, 0x850f, 0x8500,\n  0x8529, 0x850e, 0x8509, 0x850d, 0x851f, 0x850a, 0x8527, 0x851c,\n  0x84fb, 0x852b, 0x84fa, 0x8508, 0x850c, 0x84f4, 0x852a, 0x84f2,\n  0x8515, 0x84f7, 0x84eb, 0x84f3, 0x84fc, 0x8512, 0x84ea, 0x84e9,\n  0x8516, 0x84fe, 0x8528, 0x851d, 0x852e, 0x8502, 0x84fd, 0x851e,\n  0x84f6, 0x8531, 0x8526, 0x84e7, 0x84e8, 0x84f0, 0x84ef, 0x84f9,\n  0x8518, 0x8520, 0x8530, 0x850b, 0x8519, 0x852f, 0x8662, 0x8756,\n  0x8763, 0x8764, 0x8777, 0x87e1, 0x8773, 0x8758, 0x8754, 0x875b,\n  0x8752, 0x8761, 0x875a, 0x8751, 0x875e, 0x876d, 0x876a, 0x8750,\n  0x874e, 0x875f, 0x875d, 0x876f, 0x876c, 0x877a,\n  /* 0x54 */\n  0x876e, 0x875c, 0x8765, 0x874f, 0x877b, 0x8775, 0x8762, 0x8767,\n  0x8769, 0x885a, 0x8905, 0x890c, 0x8914, 0x890b, 0x8917, 0x8918,\n  0x8919, 0x8906, 0x8916, 0x8911, 0x890e, 0x8909, 0x89a2, 0x89a4,\n  0x89a3, 0x89ed, 0x89f0, 0x89ec, 0x8acf, 0x8ac6, 0x8ab8, 0x8ad3,\n  0x8ad1, 0x8ad4, 0x8ad5, 0x8abb, 0x8ad7, 0x8abe, 0x8ac0, 0x8ac5,\n  0x8ad8, 0x8ac3, 0x8aba, 0x8abd, 0x8ad9, 0x8c3e, 0x8c4d, 0x8c8f,\n  0x8ce5, 0x8cdf, 0x8cd9, 0x8ce8, 0x8cda, 0x8cdd, 0x8ce7, 0x8da0,\n  0x8d9c, 0x8da1, 0x8d9b, 0x8e20, 0x8e23, 0x8e25, 0x8e24, 0x8e2e,\n  0x8e15, 0x8e1b, 0x8e16, 0x8e11, 0x8e19, 0x8e26, 0x8e27, 0x8e14,\n  0x8e12, 0x8e18, 0x8e13, 0x8e1c, 0x8e17, 0x8e1a, 0x8f2c, 0x8f24,\n  0x8f18, 0x8f1a, 0x8f20, 0x8f23, 0x8f16, 0x8f17, 0x9073, 0x9070,\n  0x906f, 0x9067, 0x906b, 0x912f, 0x912b, 0x9129,\n  /* 0x55 */\n  0x912a, 0x9132, 0x9126, 0x912e, 0x9185, 0x9186, 0x918a, 0x9181,\n  0x9182, 0x9184, 0x9180, 0x92d0, 0x92c3, 0x92c4, 0x92c0, 0x92d9,\n  0x92b6, 0x92cf, 0x92f1, 0x92df, 0x92d8, 0x92e9, 0x92d7, 0x92dd,\n  0x92cc, 0x92ef, 0x92c2, 0x92e8, 0x92ca, 0x92c8, 0x92ce, 0x92e6,\n  0x92cd, 0x92d5, 0x92c9, 0x92e0, 0x92de, 0x92e7, 0x92d1, 0x92d3,\n  0x92b5, 0x92e1, 0x9325, 0x92c6, 0x92b4, 0x957c, 0x95ac, 0x95ab,\n  0x95ae, 0x95b0, 0x96a4, 0x96a2, 0x96d3, 0x9705, 0x9708, 0x9702,\n  0x975a, 0x978a, 0x978e, 0x9788, 0x97d0, 0x97cf, 0x981e, 0x981d,\n  0x9826, 0x9829, 0x9828, 0x9820, 0x981b, 0x9827, 0x98b2, 0x9908,\n  0x98fa, 0x9911, 0x9914, 0x9916, 0x9917, 0x9915, 0x99dc, 0x99cd,\n  0x99cf, 0x99d3, 0x99d4, 0x99ce, 0x99c9, 0x99d6, 0x99d8, 0x99cb,\n  0x99d7, 0x99cc, 0x9ab3, 0x9aec, 0x9aeb, 0x9af3,\n  /* 0x56 */\n  0x9af2, 0x9af1, 0x9b46, 0x9b43, 0x9b67, 0x9b74, 0x9b71, 0x9b66,\n  0x9b76, 0x9b75, 0x9b70, 0x9b68, 0x9b64, 0x9b6c, 0x9cfc, 0x9cfa,\n  0x9cfd, 0x9cff, 0x9cf7, 0x9d07, 0x9d00, 0x9cf9, 0x9cfb, 0x9d08,\n  0x9d05, 0x9d04, 0x9e83, 0x9ed3, 0x9f0f, 0x9f10, 0x511c, 0x5113,\n  0x5117, 0x511a, 0x5111, 0x51de, 0x5334, 0x53e1, 0x5670, 0x5660,\n  0x566e, 0x5673, 0x5666, 0x5663, 0x566d, 0x5672, 0x565e, 0x5677,\n  0x571c, 0x571b, 0x58c8, 0x58bd, 0x58c9, 0x58bf, 0x58ba, 0x58c2,\n  0x58bc, 0x58c6, 0x5b17, 0x5b19, 0x5b1b, 0x5b21, 0x5b14, 0x5b13,\n  0x5b10, 0x5b16, 0x5b28, 0x5b1a, 0x5b20, 0x5b1e, 0x5bef, 0x5dac,\n  0x5db1, 0x5da9, 0x5da7, 0x5db5, 0x5db0, 0x5dae, 0x5daa, 0x5da8,\n  0x5db2, 0x5dad, 0x5daf, 0x5db4, 0x5e67, 0x5e68, 0x5e66, 0x5e6f,\n  0x5ee9, 0x5ee7, 0x5ee6, 0x5ee8, 0x5ee5, 0x5f4b,\n  /* 0x57 */\n  0x5fbc, 0x5fbb, 0x619d, 0x61a8, 0x6196, 0x61c5, 0x61b4, 0x61c6,\n  0x61c1, 0x61cc, 0x61ba, 0x61bf, 0x61b8, 0x618c, 0x64d7, 0x64d6,\n  0x64d0, 0x64cf, 0x64c9, 0x64bd, 0x6489, 0x64c3, 0x64db, 0x64f3,\n  0x64d9, 0x6533, 0x657f, 0x657c, 0x65a2, 0x66c8, 0x66be, 0x66c0,\n  0x66ca, 0x66cb, 0x66cf, 0x66bd, 0x66bb, 0x66ba, 0x66cc, 0x6723,\n  0x6a34, 0x6a66, 0x6a49, 0x6a67, 0x6a32, 0x6a68, 0x6a3e, 0x6a5d,\n  0x6a6d, 0x6a76, 0x6a5b, 0x6a51, 0x6a28, 0x6a5a, 0x6a3b, 0x6a3f,\n  0x6a41, 0x6a6a, 0x6a64, 0x6a50, 0x6a4f, 0x6a54, 0x6a6f, 0x6a69,\n  0x6a60, 0x6a3c, 0x6a5e, 0x6a56, 0x6a55, 0x6a4d, 0x6a4e, 0x6a46,\n  0x6b55, 0x6b54, 0x6b56, 0x6ba7, 0x6baa, 0x6bab, 0x6bc8, 0x6bc7,\n  0x6c04, 0x6c03, 0x6c06, 0x6fad, 0x6fcb, 0x6fa3, 0x6fc7, 0x6fbc,\n  0x6fce, 0x6fc8, 0x6f5e, 0x6fc4, 0x6fbd, 0x6f9e,\n  /* 0x58 */\n  0x6fca, 0x6fa8, 0x7004, 0x6fa5, 0x6fae, 0x6fba, 0x6fac, 0x6faa,\n  0x6fcf, 0x6fbf, 0x6fb8, 0x6fa2, 0x6fc9, 0x6fab, 0x6fcd, 0x6faf,\n  0x6fb2, 0x6fb0, 0x71c5, 0x71c2, 0x71bf, 0x71b8, 0x71d6, 0x71c0,\n  0x71c1, 0x71cb, 0x71d4, 0x71ca, 0x71c7, 0x71cf, 0x71bd, 0x71d8,\n  0x71bc, 0x71c6, 0x71da, 0x71db, 0x729d, 0x729e, 0x7369, 0x7366,\n  0x7367, 0x736c, 0x7365, 0x736b, 0x736a, 0x747f, 0x749a, 0x74a0,\n  0x7494, 0x7492, 0x7495, 0x74a1, 0x750b, 0x7580, 0x762f, 0x762d,\n  0x7631, 0x763d, 0x7633, 0x763c, 0x7635, 0x7632, 0x7630, 0x76bb,\n  0x76e6, 0x779a, 0x779d, 0x77a1, 0x779c, 0x779b, 0x77a2, 0x77a3,\n  0x7795, 0x7799, 0x7797, 0x78dd, 0x78e9, 0x78e5, 0x78ea, 0x78de,\n  0x78e3, 0x78db, 0x78e1, 0x78e2, 0x78ed, 0x78df, 0x78e0, 0x79a4,\n  0x7a44, 0x7a48, 0x7a47, 0x7ab6, 0x7ab8, 0x7ab5,\n  /* 0x59 */\n  0x7ab1, 0x7ab7, 0x7bde, 0x7be3, 0x7be7, 0x7bdd, 0x7bd5, 0x7be5,\n  0x7bda, 0x7be8, 0x7bf9, 0x7bd4, 0x7bea, 0x7be2, 0x7bdc, 0x7beb,\n  0x7bd8, 0x7bdf, 0x7cd2, 0x7cd4, 0x7cd7, 0x7cd0, 0x7cd1, 0x7e12,\n  0x7e21, 0x7e17, 0x7e0c, 0x7e1f, 0x7e20, 0x7e13, 0x7e0e, 0x7e1c,\n  0x7e15, 0x7e1a, 0x7e22, 0x7e0b, 0x7e0f, 0x7e16, 0x7e0d, 0x7e14,\n  0x7e25, 0x7e24, 0x7f43, 0x7f7b, 0x7f7c, 0x7f7a, 0x7fb1, 0x7fef,\n  0x802a, 0x8029, 0x806c, 0x81b1, 0x81a6, 0x81ae, 0x81b9, 0x81b5,\n  0x81ab, 0x81b0, 0x81ac, 0x81b4, 0x81b2, 0x81b7, 0x81a7, 0x81f2,\n  0x8255, 0x8256, 0x8257, 0x8556, 0x8545, 0x856b, 0x854d, 0x8553,\n  0x8561, 0x8558, 0x8540, 0x8546, 0x8564, 0x8541, 0x8562, 0x8544,\n  0x8551, 0x8547, 0x8563, 0x853e, 0x855b, 0x8571, 0x854e, 0x856e,\n  0x8575, 0x8555, 0x8567, 0x8560, 0x858c, 0x8566,\n  /* 0x5a */\n  0x855d, 0x8554, 0x8565, 0x856c, 0x8663, 0x8665, 0x8664, 0x87a4,\n  0x879b, 0x878f, 0x8797, 0x8793, 0x8792, 0x8788, 0x8781, 0x8796,\n  0x8798, 0x8779, 0x8787, 0x87a3, 0x8785, 0x8790, 0x8791, 0x879d,\n  0x8784, 0x8794, 0x879c, 0x879a, 0x8789, 0x891e, 0x8926, 0x8930,\n  0x892d, 0x892e, 0x8927, 0x8931, 0x8922, 0x8929, 0x8923, 0x892f,\n  0x892c, 0x891f, 0x89f1, 0x8ae0, 0x8ae2, 0x8af2, 0x8af4, 0x8af5,\n  0x8add, 0x8b14, 0x8ae4, 0x8adf, 0x8af0, 0x8ac8, 0x8ade, 0x8ae1,\n  0x8ae8, 0x8aff, 0x8aef, 0x8afb, 0x8c91, 0x8c92, 0x8c90, 0x8cf5,\n  0x8cee, 0x8cf1, 0x8cf0, 0x8cf3, 0x8d6c, 0x8d6e, 0x8da5, 0x8da7,\n  0x8e33, 0x8e3e, 0x8e38, 0x8e40, 0x8e45, 0x8e36, 0x8e3c, 0x8e3d,\n  0x8e41, 0x8e30, 0x8e3f, 0x8ebd, 0x8f36, 0x8f2e, 0x8f35, 0x8f32,\n  0x8f39, 0x8f37, 0x8f34, 0x9076, 0x9079, 0x907b,\n  /* 0x5b */\n  0x9086, 0x90fa, 0x9133, 0x9135, 0x9136, 0x9193, 0x9190, 0x9191,\n  0x918d, 0x918f, 0x9327, 0x931e, 0x9308, 0x931f, 0x9306, 0x930f,\n  0x937a, 0x9338, 0x933c, 0x931b, 0x9323, 0x9312, 0x9301, 0x9346,\n  0x932d, 0x930e, 0x930d, 0x92cb, 0x931d, 0x92fa, 0x9313, 0x92f9,\n  0x92f7, 0x9334, 0x9302, 0x9324, 0x92ff, 0x9329, 0x9339, 0x9335,\n  0x932a, 0x9314, 0x930c, 0x930b, 0x92fe, 0x9309, 0x9300, 0x92fb,\n  0x9316, 0x95bc, 0x95cd, 0x95be, 0x95b9, 0x95ba, 0x95b6, 0x95bf,\n  0x95b5, 0x95bd, 0x96a9, 0x96d4, 0x970b, 0x9712, 0x9710, 0x9799,\n  0x9797, 0x9794, 0x97f0, 0x97f8, 0x9835, 0x982f, 0x9832, 0x9924,\n  0x991f, 0x9927, 0x9929, 0x999e, 0x99ee, 0x99ec, 0x99e5, 0x99e4,\n  0x99f0, 0x99e3, 0x99ea, 0x99e9, 0x99e7, 0x9ab9, 0x9abf, 0x9ab4,\n  0x9abb, 0x9af6, 0x9afa, 0x9af9, 0x9af7, 0x9b33,\n  /* 0x5c */\n  0x9b80, 0x9b85, 0x9b87, 0x9b7c, 0x9b7e, 0x9b7b, 0x9b82, 0x9b93,\n  0x9b92, 0x9b90, 0x9b7a, 0x9b95, 0x9b7d, 0x9b88, 0x9d25, 0x9d17,\n  0x9d20, 0x9d1e, 0x9d14, 0x9d29, 0x9d1d, 0x9d18, 0x9d22, 0x9d10,\n  0x9d19, 0x9d1f, 0x9e88, 0x9e86, 0x9e87, 0x9eae, 0x9ead, 0x9ed5,\n  0x9ed6, 0x9efa, 0x9f12, 0x9f3d, 0x5126, 0x5125, 0x5122, 0x5124,\n  0x5120, 0x5129, 0x52f4, 0x5693, 0x568c, 0x568d, 0x5686, 0x5684,\n  0x5683, 0x567e, 0x5682, 0x567f, 0x5681, 0x58d6, 0x58d4, 0x58cf,\n  0x58d2, 0x5b2d, 0x5b25, 0x5b32, 0x5b23, 0x5b2c, 0x5b27, 0x5b26,\n  0x5b2f, 0x5b2e, 0x5b7b, 0x5bf1, 0x5bf2, 0x5db7, 0x5e6c, 0x5e6a,\n  0x5fbe, 0x61c3, 0x61b5, 0x61bc, 0x61e7, 0x61e0, 0x61e5, 0x61e4,\n  0x61e8, 0x61de, 0x64ef, 0x64e9, 0x64e3, 0x64eb, 0x64e4, 0x64e8,\n  0x6581, 0x6580, 0x65b6, 0x65da, 0x66d2, 0x6a8d,\n  /* 0x5d */\n  0x6a96, 0x6a81, 0x6aa5, 0x6a89, 0x6a9f, 0x6a9b, 0x6aa1, 0x6a9e,\n  0x6a87, 0x6a93, 0x6a8e, 0x6a95, 0x6a83, 0x6aa8, 0x6aa4, 0x6a91,\n  0x6a7f, 0x6aa6, 0x6a9a, 0x6a85, 0x6a8c, 0x6a92, 0x6b5b, 0x6bad,\n  0x6c09, 0x6fcc, 0x6fa9, 0x6ff4, 0x6fd4, 0x6fe3, 0x6fdc, 0x6fed,\n  0x6fe7, 0x6fe6, 0x6fde, 0x6ff2, 0x6fdd, 0x6fe2, 0x6fe8, 0x71e1,\n  0x71f1, 0x71e8, 0x71f2, 0x71e4, 0x71f0, 0x71e2, 0x7373, 0x736e,\n  0x736f, 0x7497, 0x74b2, 0x74ab, 0x7490, 0x74aa, 0x74ad, 0x74b1,\n  0x74a5, 0x74af, 0x7510, 0x7511, 0x7512, 0x750f, 0x7584, 0x7643,\n  0x7648, 0x7649, 0x7647, 0x76a4, 0x76e9, 0x77b5, 0x77ab, 0x77b2,\n  0x77b7, 0x77b6, 0x77b4, 0x77b1, 0x77a8, 0x77f0, 0x78f3, 0x78fd,\n  0x7902, 0x78fb, 0x78fc, 0x78ff, 0x78f2, 0x7905, 0x78f9, 0x78fe,\n  0x7904, 0x79ab, 0x79a8, 0x7a5c, 0x7a5b, 0x7a56,\n  /* 0x5e */\n  0x7a58, 0x7a54, 0x7a5a, 0x7abe, 0x7ac0, 0x7ac1, 0x7c05, 0x7c0f,\n  0x7bf2, 0x7c00, 0x7bff, 0x7bfb, 0x7c0e, 0x7bf4, 0x7c0b, 0x7bf3,\n  0x7c02, 0x7c09, 0x7c03, 0x7c01, 0x7bf8, 0x7bfd, 0x7c06, 0x7bf0,\n  0x7bf1, 0x7c10, 0x7c0a, 0x7ce8, 0x7e2d, 0x7e3c, 0x7e42, 0x7e33,\n  0x9848, 0x7e38, 0x7e2a, 0x7e49, 0x7e40, 0x7e47, 0x7e29, 0x7e4c,\n  0x7e30, 0x7e3b, 0x7e36, 0x7e44, 0x7e3a, 0x7f45, 0x7f7f, 0x7f7e,\n  0x7f7d, 0x7ff4, 0x7ff2, 0x802c, 0x81bb, 0x81c4, 0x81cc, 0x81ca,\n  0x81c5, 0x81c7, 0x81bc, 0x81e9, 0x825b, 0x825a, 0x825c, 0x8583,\n  0x8580, 0x858f, 0x85a7, 0x8595, 0x85a0, 0x858b, 0x85a3, 0x857b,\n  0x85a4, 0x859a, 0x859e, 0x8577, 0x857c, 0x8589, 0x85a1, 0x857a,\n  0x8578, 0x8557, 0x858e, 0x8596, 0x8586, 0x858d, 0x8599, 0x859d,\n  0x8581, 0x85a2, 0x8582, 0x8588, 0x8585, 0x8579,\n  /* 0x5f */\n  0x8576, 0x8598, 0x8590, 0x859f, 0x8668, 0x87be, 0x87aa, 0x87ad,\n  0x87c5, 0x87b0, 0x87ac, 0x87b9, 0x87b5, 0x87bc, 0x87ae, 0x87c9,\n  0x87c3, 0x87c2, 0x87cc, 0x87b7, 0x87af, 0x87c4, 0x87ca, 0x87b4,\n  0x87b6, 0x87bf, 0x87b8, 0x87bd, 0x87de, 0x87b2, 0x8935, 0x8933,\n  0x893c, 0x893e, 0x8941, 0x8952, 0x8937, 0x8942, 0x89ad, 0x89af,\n  0x89ae, 0x89f2, 0x89f3, 0x8b1e, 0x8b18, 0x8b16, 0x8b11, 0x8b05,\n  0x8b0b, 0x8b22, 0x8b0f, 0x8b12, 0x8b15, 0x8b07, 0x8b0d, 0x8b08,\n  0x8b06, 0x8b1c, 0x8b13, 0x8b1a, 0x8c4f, 0x8c70, 0x8c72, 0x8c71,\n  0x8c6f, 0x8c95, 0x8c94, 0x8cf9, 0x8d6f, 0x8e4e, 0x8e4d, 0x8e53,\n  0x8e50, 0x8e4c, 0x8e47, 0x8f43, 0x8f40, 0x9085, 0x907e, 0x9138,\n  0x919a, 0x91a2, 0x919b, 0x9199, 0x919f, 0x91a1, 0x919d, 0x91a0,\n  0x93a1, 0x9383, 0x93af, 0x9364, 0x9356, 0x9347,\n  /* 0x60 */\n  0x937c, 0x9358, 0x935c, 0x9376, 0x9349, 0x9350, 0x9351, 0x9360,\n  0x936d, 0x938f, 0x934c, 0x936a, 0x9379, 0x9357, 0x9355, 0x9352,\n  0x934f, 0x9371, 0x9377, 0x937b, 0x9361, 0x935e, 0x9363, 0x9367,\n  0x934e, 0x9359, 0x95c7, 0x95c0, 0x95c9, 0x95c3, 0x95c5, 0x95b7,\n  0x96ae, 0x96b0, 0x96ac, 0x9720, 0x971f, 0x9718, 0x971d, 0x9719,\n  0x979a, 0x97a1, 0x979c, 0x979e, 0x979d, 0x97d5, 0x97d4, 0x97f1,\n  0x9841, 0x9844, 0x984a, 0x9849, 0x9845, 0x9843, 0x9925, 0x992b,\n  0x992c, 0x992a, 0x9933, 0x9932, 0x992f, 0x992d, 0x9931, 0x9930,\n  0x9998, 0x99a3, 0x99a1, 0x9a02, 0x99fa, 0x99f4, 0x99f7, 0x99f9,\n  0x99f8, 0x99f6, 0x99fb, 0x99fd, 0x99fe, 0x99fc, 0x9a03, 0x9abe,\n  0x9afe, 0x9afd, 0x9b01, 0x9afc, 0x9b48, 0x9b9a, 0x9ba8, 0x9b9e,\n  0x9b9b, 0x9ba6, 0x9ba1, 0x9ba5, 0x9ba4, 0x9b86,\n  /* 0x61 */\n  0x9ba2, 0x9ba0, 0x9baf, 0x9d33, 0x9d41, 0x9d67, 0x9d36, 0x9d2e,\n  0x9d2f, 0x9d31, 0x9d38, 0x9d30, 0x9d45, 0x9d42, 0x9d43, 0x9d3e,\n  0x9d37, 0x9d40, 0x9d3d, 0x7ff5, 0x9d2d, 0x9e8a, 0x9e89, 0x9e8d,\n  0x9eb0, 0x9ec8, 0x9eda, 0x9efb, 0x9eff, 0x9f24, 0x9f23, 0x9f22,\n  0x9f54, 0x9fa0, 0x5131, 0x512d, 0x512e, 0x5698, 0x569c, 0x5697,\n  0x569a, 0x569d, 0x5699, 0x5970, 0x5b3c, 0x5c69, 0x5c6a, 0x5dc0,\n  0x5e6d, 0x5e6e, 0x61d8, 0x61df, 0x61ed, 0x61ee, 0x61f1, 0x61ea,\n  0x61f0, 0x61eb, 0x61d6, 0x61e9, 0x64ff, 0x6504, 0x64fd, 0x64f8,\n  0x6501, 0x6503, 0x64fc, 0x6594, 0x65db, 0x66da, 0x66db, 0x66d8,\n  0x6ac5, 0x6ab9, 0x6abd, 0x6ae1, 0x6ac6, 0x6aba, 0x6ab6, 0x6ab7,\n  0x6ac7, 0x6ab4, 0x6aad, 0x6b5e, 0x6bc9, 0x6c0b, 0x7007, 0x700c,\n  0x700d, 0x7001, 0x7005, 0x7014, 0x700e, 0x6fff,\n  /* 0x62 */\n  0x7000, 0x6ffb, 0x7026, 0x6ffc, 0x6ff7, 0x700a, 0x7201, 0x71ff,\n  0x71f9, 0x7203, 0x71fd, 0x7376, 0x74b8, 0x74c0, 0x74b5, 0x74c1,\n  0x74be, 0x74b6, 0x74bb, 0x74c2, 0x7514, 0x7513, 0x765c, 0x7664,\n  0x7659, 0x7650, 0x7653, 0x7657, 0x765a, 0x76a6, 0x76bd, 0x76ec,\n  0x77c2, 0x77ba, 0x790c, 0x7913, 0x7914, 0x7909, 0x7910, 0x7912,\n  0x7911, 0x79ad, 0x79ac, 0x7a5f, 0x7c1c, 0x7c29, 0x7c19, 0x7c20,\n  0x7c1f, 0x7c2d, 0x7c1d, 0x7c26, 0x7c28, 0x7c22, 0x7c25, 0x7c30,\n  0x7e5c, 0x7e50, 0x7e56, 0x7e63, 0x7e58, 0x7e62, 0x7e5f, 0x7e51,\n  0x7e60, 0x7e57, 0x7e53, 0x7fb5, 0x7fb3, 0x7ff7, 0x7ff8, 0x8075,\n  0x81d1, 0x81d2, 0x81d0, 0x825f, 0x825e, 0x85b4, 0x85c6, 0x85c0,\n  0x85c3, 0x85c2, 0x85b3, 0x85b5, 0x85bd, 0x85c7, 0x85c4, 0x85bf,\n  0x85cb, 0x85ce, 0x85c8, 0x85c5, 0x85b1, 0x85b6,\n  /* 0x63 */\n  0x85d2, 0x8624, 0x85b8, 0x85b7, 0x85be, 0x8669, 0x87e7, 0x87e6,\n  0x87e2, 0x87db, 0x87eb, 0x87ea, 0x87e5, 0x87df, 0x87f3, 0x87e4,\n  0x87d4, 0x87dc, 0x87d3, 0x87ed, 0x87d8, 0x87e3, 0x87d7, 0x87d9,\n  0x8801, 0x87f4, 0x87e8, 0x87dd, 0x8953, 0x894b, 0x894f, 0x894c,\n  0x8946, 0x8950, 0x8951, 0x8949, 0x8b2a, 0x8b27, 0x8b23, 0x8b33,\n  0x8b30, 0x8b35, 0x8b47, 0x8b2f, 0x8b3c, 0x8b3e, 0x8b31, 0x8b25,\n  0x8b37, 0x8b26, 0x8b36, 0x8b2e, 0x8b24, 0x8b3b, 0x8b3d, 0x8b3a,\n  0x8c42, 0x8c75, 0x8c99, 0x8c98, 0x8c97, 0x8cfe, 0x8d04, 0x8d02,\n  0x8d00, 0x8e5c, 0x8e62, 0x8e60, 0x8e57, 0x8e56, 0x8e5e, 0x8e65,\n  0x8e67, 0x8e5b, 0x8e5a, 0x8e61, 0x8e5d, 0x8e69, 0x8e54, 0x8f46,\n  0x8f47, 0x8f48, 0x8f4b, 0x9128, 0x913a, 0x913b, 0x913e, 0x91a8,\n  0x91a5, 0x91a7, 0x91af, 0x91aa, 0x93b5, 0x938c,\n  /* 0x64 */\n  0x9392, 0x93b7, 0x939b, 0x939d, 0x9389, 0x93a7, 0x938e, 0x93aa,\n  0x939e, 0x93a6, 0x9395, 0x9388, 0x9399, 0x939f, 0x9380, 0x938d,\n  0x93b1, 0x9391, 0x93b2, 0x93a4, 0x93a8, 0x93b4, 0x93a3, 0x95d2,\n  0x95d3, 0x95d1, 0x96b3, 0x96d7, 0x96da, 0x5dc2, 0x96df, 0x96d8,\n  0x96dd, 0x9723, 0x9722, 0x9725, 0x97ac, 0x97ae, 0x97a8, 0x97ab,\n  0x97a4, 0x97aa, 0x97a2, 0x97a5, 0x97d7, 0x97d9, 0x97d6, 0x97d8,\n  0x97fa, 0x9850, 0x9851, 0x9852, 0x98b8, 0x9941, 0x993c, 0x993a,\n  0x9a0f, 0x9a0b, 0x9a09, 0x9a0d, 0x9a04, 0x9a11, 0x9a0a, 0x9a05,\n  0x9a07, 0x9a06, 0x9ac0, 0x9adc, 0x9b08, 0x9b04, 0x9b05, 0x9b29,\n  0x9b35, 0x9b4a, 0x9b4c, 0x9b4b, 0x9bc7, 0x9bc6, 0x9bc3, 0x9bbf,\n  0x9bc1, 0x9bb5, 0x9bb8, 0x9bd3, 0x9bb6, 0x9bc4, 0x9bb9, 0x9bbd,\n  0x9d5c, 0x9d53, 0x9d4f, 0x9d4a, 0x9d5b, 0x9d4b,\n  /* 0x65 */\n  0x9d59, 0x9d56, 0x9d4c, 0x9d57, 0x9d52, 0x9d54, 0x9d5f, 0x9d58,\n  0x9d5a, 0x9e8e, 0x9e8c, 0x9edf, 0x9f01, 0x9f00, 0x9f16, 0x9f25,\n  0x9f2b, 0x9f2a, 0x9f29, 0x9f28, 0x9f4c, 0x9f55, 0x5134, 0x5135,\n  0x5296, 0x52f7, 0x53b4, 0x56ab, 0x56ad, 0x56a6, 0x56a7, 0x56aa,\n  0x56ac, 0x58da, 0x58dd, 0x58db, 0x5912, 0x5b3d, 0x5b3e, 0x5b3f,\n  0x5dc3, 0x5e70, 0x5fbf, 0x61fb, 0x6507, 0x6510, 0x650d, 0x6509,\n  0x650c, 0x650e, 0x6584, 0x65de, 0x65dd, 0x66de, 0x6ae7, 0x6ae0,\n  0x6acc, 0x6ad1, 0x6ad9, 0x6acb, 0x6adf, 0x6adc, 0x6ad0, 0x6aeb,\n  0x6acf, 0x6acd, 0x6ade, 0x6b60, 0x6bb0, 0x6c0c, 0x7019, 0x7027,\n  0x7020, 0x7016, 0x702b, 0x7021, 0x7022, 0x7023, 0x7029, 0x7017,\n  0x7024, 0x701c, 0x720c, 0x720a, 0x7207, 0x7202, 0x7205, 0x72a5,\n  0x72a6, 0x72a4, 0x72a3, 0x72a1, 0x74cb, 0x74c5,\n  /* 0x66 */\n  0x74b7, 0x74c3, 0x7516, 0x7660, 0x77c9, 0x77ca, 0x77c4, 0x77f1,\n  0x791d, 0x791b, 0x7921, 0x791c, 0x7917, 0x791e, 0x79b0, 0x7a67,\n  0x7a68, 0x7c33, 0x7c3c, 0x7c39, 0x7c2c, 0x7c3b, 0x7cec, 0x7cea,\n  0x7e76, 0x7e75, 0x7e78, 0x7e70, 0x7e77, 0x7e6f, 0x7e7a, 0x7e72,\n  0x7e74, 0x7e68, 0x7f4b, 0x7f4a, 0x7f83, 0x7f86, 0x7fb7, 0x7ffd,\n  0x7ffe, 0x8078, 0x81d7, 0x81d5, 0x820b, 0x8264, 0x8261, 0x8263,\n  0x85eb, 0x85f1, 0x85ed, 0x85d9, 0x85e1, 0x85e8, 0x85da, 0x85d7,\n  0x85ec, 0x85f2, 0x85f8, 0x85d8, 0x85df, 0x85e3, 0x85dc, 0x85d1,\n  0x85f0, 0x85e6, 0x85ef, 0x85de, 0x85e2, 0x8800, 0x87fa, 0x8803,\n  0x87f6, 0x87f7, 0x8809, 0x880c, 0x880b, 0x8806, 0x87fc, 0x8808,\n  0x87ff, 0x880a, 0x8802, 0x8962, 0x895a, 0x895b, 0x8957, 0x8961,\n  0x895c, 0x8958, 0x895d, 0x8959, 0x8988, 0x89b7,\n  /* 0x67 */\n  0x89b6, 0x89f6, 0x8b50, 0x8b48, 0x8b4a, 0x8b40, 0x8b53, 0x8b56,\n  0x8b54, 0x8b4b, 0x8b55, 0x8b51, 0x8b42, 0x8b52, 0x8b57, 0x8c43,\n  0x8c77, 0x8c76, 0x8c9a, 0x8d06, 0x8d07, 0x8d09, 0x8dac, 0x8daa,\n  0x8dad, 0x8dab, 0x8e6d, 0x8e78, 0x8e73, 0x8e6a, 0x8e6f, 0x8e7b,\n  0x8ec2, 0x8f52, 0x8f51, 0x8f4f, 0x8f50, 0x8f53, 0x8fb4, 0x9140,\n  0x913f, 0x91b0, 0x91ad, 0x93de, 0x93c7, 0x93cf, 0x93c2, 0x93da,\n  0x93d0, 0x93f9, 0x93ec, 0x93cc, 0x93d9, 0x93a9, 0x93e6, 0x93ca,\n  0x93d4, 0x93ee, 0x93e3, 0x93d5, 0x93c4, 0x93ce, 0x93c0, 0x93d2,\n  0x93a5, 0x93e7, 0x957d, 0x95da, 0x95db, 0x96e1, 0x9729, 0x972b,\n  0x972c, 0x9728, 0x9726, 0x97b3, 0x97b7, 0x97b6, 0x97dd, 0x97de,\n  0x97df, 0x985c, 0x9859, 0x985d, 0x9857, 0x98bf, 0x98bd, 0x98bb,\n  0x98be, 0x9948, 0x9947, 0x9943, 0x99a6, 0x99a7,\n  /* 0x68 */\n  0x9a1a, 0x9a15, 0x9a25, 0x9a1d, 0x9a24, 0x9a1b, 0x9a22, 0x9a20,\n  0x9a27, 0x9a23, 0x9a1e, 0x9a1c, 0x9a14, 0x9ac2, 0x9b0b, 0x9b0a,\n  0x9b0e, 0x9b0c, 0x9b37, 0x9bea, 0x9beb, 0x9be0, 0x9bde, 0x9be4,\n  0x9be6, 0x9be2, 0x9bf0, 0x9bd4, 0x9bd7, 0x9bec, 0x9bdc, 0x9bd9,\n  0x9be5, 0x9bd5, 0x9be1, 0x9bda, 0x9d77, 0x9d81, 0x9d8a, 0x9d84,\n  0x9d88, 0x9d71, 0x9d80, 0x9d78, 0x9d86, 0x9d8b, 0x9d8c, 0x9d7d,\n  0x9d6b, 0x9d74, 0x9d75, 0x9d70, 0x9d69, 0x9d85, 0x9d73, 0x9d7b,\n  0x9d82, 0x9d6f, 0x9d79, 0x9d7f, 0x9d87, 0x9d68, 0x9e94, 0x9e91,\n  0x9ec0, 0x9efc, 0x9f2d, 0x9f40, 0x9f41, 0x9f4d, 0x9f56, 0x9f57,\n  0x9f58, 0x5337, 0x56b2, 0x56b5, 0x56b3, 0x58e3, 0x5b45, 0x5dc6,\n  0x5dc7, 0x5eee, 0x5eef, 0x5fc0, 0x5fc1, 0x61f9, 0x6517, 0x6516,\n  0x6515, 0x6513, 0x65df, 0x66e8, 0x66e3, 0x66e4,\n  /* 0x69 */\n  0x6af3, 0x6af0, 0x6aea, 0x6ae8, 0x6af9, 0x6af1, 0x6aee, 0x6aef,\n  0x703c, 0x7035, 0x702f, 0x7037, 0x7034, 0x7031, 0x7042, 0x7038,\n  0x703f, 0x703a, 0x7039, 0x702a, 0x7040, 0x703b, 0x7033, 0x7041,\n  0x7213, 0x7214, 0x72a8, 0x737d, 0x737c, 0x74ba, 0x76ab, 0x76aa,\n  0x76be, 0x76ed, 0x77cc, 0x77ce, 0x77cf, 0x77cd, 0x77f2, 0x7925,\n  0x7923, 0x7927, 0x7928, 0x7924, 0x7929, 0x79b2, 0x7a6e, 0x7a6c,\n  0x7a6d, 0x7af7, 0x7c49, 0x7c48, 0x7c4a, 0x7c47, 0x7c45, 0x7cee,\n  0x7e7b, 0x7e7e, 0x7e81, 0x7e80, 0x7fba, 0x7fff, 0x8079, 0x81db,\n  0x81d9, 0x8268, 0x8269, 0x8622, 0x85ff, 0x8601, 0x85fe, 0x861b,\n  0x8600, 0x85f6, 0x8604, 0x8609, 0x8605, 0x860c, 0x85fd, 0x8819,\n  0x8810, 0x8811, 0x8817, 0x8813, 0x8816, 0x8963, 0x8966, 0x89b9,\n  0x89f7, 0x8b60, 0x8b6a, 0x8b5d, 0x8b68, 0x8b63,\n  /* 0x6a */\n  0x8b65, 0x8b67, 0x8b6d, 0x8dae, 0x8e86, 0x8e88, 0x8e84, 0x8f59,\n  0x8f56, 0x8f57, 0x8f55, 0x8f58, 0x8f5a, 0x908d, 0x9143, 0x9141,\n  0x91b7, 0x91b5, 0x91b2, 0x91b3, 0x940b, 0x9413, 0x93fb, 0x9420,\n  0x940f, 0x9414, 0x93fe, 0x9415, 0x9410, 0x9428, 0x9419, 0x940d,\n  0x93f5, 0x9400, 0x93f7, 0x9407, 0x940e, 0x9416, 0x9412, 0x93fa,\n  0x9409, 0x93f8, 0x943c, 0x940a, 0x93ff, 0x93fc, 0x940c, 0x93f6,\n  0x9411, 0x9406, 0x95de, 0x95e0, 0x95df, 0x972e, 0x972f, 0x97b9,\n  0x97bb, 0x97fd, 0x97fe, 0x9860, 0x9862, 0x9863, 0x985f, 0x98c1,\n  0x98c2, 0x9950, 0x994e, 0x9959, 0x994c, 0x994b, 0x9953, 0x9a32,\n  0x9a34, 0x9a31, 0x9a2c, 0x9a2a, 0x9a36, 0x9a29, 0x9a2e, 0x9a38,\n  0x9a2d, 0x9ac7, 0x9aca, 0x9ac6, 0x9b10, 0x9b12, 0x9b11, 0x9c0b,\n  0x9c08, 0x9bf7, 0x9c05, 0x9c12, 0x9bf8, 0x9c40,\n  /* 0x6b */\n  0x9c07, 0x9c0e, 0x9c06, 0x9c17, 0x9c14, 0x9c09, 0x9d9f, 0x9d99,\n  0x9da4, 0x9d9d, 0x9d92, 0x9d98, 0x9d90, 0x9d9b, 0x9da0, 0x9d94,\n  0x9d9c, 0x9daa, 0x9d97, 0x9da1, 0x9d9a, 0x9da2, 0x9da8, 0x9d9e,\n  0x9da3, 0x9dbf, 0x9da9, 0x9d96, 0x9da6, 0x9da7, 0x9e99, 0x9e9b,\n  0x9e9a, 0x9ee5, 0x9ee4, 0x9ee7, 0x9ee6, 0x9f30, 0x9f2e, 0x9f5b,\n  0x9f60, 0x9f5e, 0x9f5d, 0x9f59, 0x9f91, 0x513a, 0x5139, 0x5298,\n  0x5297, 0x56c3, 0x56bd, 0x56be, 0x5b48, 0x5b47, 0x5dcb, 0x5dcf,\n  0x5ef1, 0x61fd, 0x651b, 0x6b02, 0x6afc, 0x6b03, 0x6af8, 0x6b00,\n  0x7043, 0x7044, 0x704a, 0x7048, 0x7049, 0x7045, 0x7046, 0x721d,\n  0x721a, 0x7219, 0x737e, 0x7517, 0x766a, 0x77d0, 0x792d, 0x7931,\n  0x792f, 0x7c54, 0x7c53, 0x7cf2, 0x7e8a, 0x7e87, 0x7e88, 0x7e8b,\n  0x7e86, 0x7e8d, 0x7f4d, 0x7fbb, 0x8030, 0x81dd,\n  /* 0x6c */\n  0x8618, 0x862a, 0x8626, 0x861f, 0x8623, 0x861c, 0x8619, 0x8627,\n  0x862e, 0x8621, 0x8620, 0x8629, 0x861e, 0x8625, 0x8829, 0x881d,\n  0x881b, 0x8820, 0x8824, 0x881c, 0x882b, 0x884a, 0x896d, 0x8969,\n  0x896e, 0x896b, 0x89fa, 0x8b79, 0x8b78, 0x8b45, 0x8b7a, 0x8b7b,\n  0x8d10, 0x8d14, 0x8daf, 0x8e8e, 0x8e8c, 0x8f5e, 0x8f5b, 0x8f5d,\n  0x9146, 0x9144, 0x9145, 0x91b9, 0x943f, 0x943b, 0x9436, 0x9429,\n  0x943d, 0x9430, 0x9439, 0x942a, 0x9437, 0x942c, 0x9440, 0x9431,\n  0x95e5, 0x95e4, 0x95e3, 0x9735, 0x973a, 0x97bf, 0x97e1, 0x9864,\n  0x98c9, 0x98c6, 0x98c0, 0x9958, 0x9956, 0x9a39, 0x9a3d, 0x9a46,\n  0x9a44, 0x9a42, 0x9a41, 0x9a3a, 0x9a3f, 0x9acd, 0x9b15, 0x9b17,\n  0x9b18, 0x9b16, 0x9b3a, 0x9b52, 0x9c2b, 0x9c1d, 0x9c1c, 0x9c2c,\n  0x9c23, 0x9c28, 0x9c29, 0x9c24, 0x9c21, 0x9db7,\n  /* 0x6d */\n  0x9db6, 0x9dbc, 0x9dc1, 0x9dc7, 0x9dca, 0x9dcf, 0x9dbe, 0x9dc5,\n  0x9dc3, 0x9dbb, 0x9db5, 0x9dce, 0x9db9, 0x9dba, 0x9dac, 0x9dc8,\n  0x9db1, 0x9dad, 0x9dcc, 0x9db3, 0x9dcd, 0x9db2, 0x9e7a, 0x9e9c,\n  0x9eeb, 0x9eee, 0x9eed, 0x9f1b, 0x9f18, 0x9f1a, 0x9f31, 0x9f4e,\n  0x9f65, 0x9f64, 0x9f92, 0x4eb9, 0x56c6, 0x56c5, 0x56cb, 0x5971,\n  0x5b4b, 0x5b4c, 0x5dd5, 0x5dd1, 0x5ef2, 0x6521, 0x6520, 0x6526,\n  0x6522, 0x6b0b, 0x6b08, 0x6b09, 0x6c0d, 0x7055, 0x7056, 0x7057,\n  0x7052, 0x721e, 0x721f, 0x72a9, 0x737f, 0x74d8, 0x74d5, 0x74d9,\n  0x74d7, 0x766d, 0x76ad, 0x7935, 0x79b4, 0x7a70, 0x7a71, 0x7c57,\n  0x7c5c, 0x7c59, 0x7c5b, 0x7c5a, 0x7cf4, 0x7cf1, 0x7e91, 0x7f4f,\n  0x7f87, 0x81de, 0x826b, 0x8634, 0x8635, 0x8633, 0x862c, 0x8632,\n  0x8636, 0x882c, 0x8828, 0x8826, 0x882a, 0x8825,\n  /* 0x6e */\n  0x8971, 0x89bf, 0x89be, 0x89fb, 0x8b7e, 0x8b84, 0x8b82, 0x8b86,\n  0x8b85, 0x8b7f, 0x8d15, 0x8e95, 0x8e94, 0x8e9a, 0x8e92, 0x8e90,\n  0x8e96, 0x8e97, 0x8f60, 0x8f62, 0x9147, 0x944c, 0x9450, 0x944a,\n  0x944b, 0x944f, 0x9447, 0x9445, 0x9448, 0x9449, 0x9446, 0x973f,\n  0x97e3, 0x986a, 0x9869, 0x98cb, 0x9954, 0x995b, 0x9a4e, 0x9a53,\n  0x9a54, 0x9a4c, 0x9a4f, 0x9a48, 0x9a4a, 0x9a49, 0x9a52, 0x9a50,\n  0x9ad0, 0x9b19, 0x9b2b, 0x9b3b, 0x9b56, 0x9b55, 0x9c46, 0x9c48,\n  0x9c3f, 0x9c44, 0x9c39, 0x9c33, 0x9c41, 0x9c3c, 0x9c37, 0x9c34,\n  0x9c32, 0x9c3d, 0x9c36, 0x9ddb, 0x9dd2, 0x9dde, 0x9dda, 0x9dcb,\n  0x9dd0, 0x9ddc, 0x9dd1, 0x9ddf, 0x9de9, 0x9dd9, 0x9dd8, 0x9dd6,\n  0x9df5, 0x9dd5, 0x9ddd, 0x9eb6, 0x9ef0, 0x9f35, 0x9f33, 0x9f32,\n  0x9f42, 0x9f6b, 0x9f95, 0x9fa2, 0x513d, 0x5299,\n  /* 0x6f */\n  0x58e8, 0x58e7, 0x5972, 0x5b4d, 0x5dd8, 0x882f, 0x5f4f, 0x6201,\n  0x6203, 0x6204, 0x6529, 0x6525, 0x6596, 0x66eb, 0x6b11, 0x6b12,\n  0x6b0f, 0x6bca, 0x705b, 0x705a, 0x7222, 0x7382, 0x7381, 0x7383,\n  0x7670, 0x77d4, 0x7c67, 0x7c66, 0x7e95, 0x826c, 0x863a, 0x8640,\n  0x8639, 0x863c, 0x8631, 0x863b, 0x863e, 0x8830, 0x8832, 0x882e,\n  0x8833, 0x8976, 0x8974, 0x8973, 0x89fe, 0x8b8c, 0x8b8e, 0x8b8b,\n  0x8b88, 0x8c45, 0x8d19, 0x8e98, 0x8f64, 0x8f63, 0x91bc, 0x9462,\n  0x9455, 0x945d, 0x9457, 0x945e, 0x97c4, 0x97c5, 0x9800, 0x9a56,\n  0x9a59, 0x9b1e, 0x9b1f, 0x9b20, 0x9c52, 0x9c58, 0x9c50, 0x9c4a,\n  0x9c4d, 0x9c4b, 0x9c55, 0x9c59, 0x9c4c, 0x9c4e, 0x9dfb, 0x9df7,\n  0x9def, 0x9de3, 0x9deb, 0x9df8, 0x9de4, 0x9df6, 0x9de1, 0x9dee,\n  0x9de6, 0x9df2, 0x9df0, 0x9de2, 0x9dec, 0x9df4,\n  /* 0x70 */\n  0x9df3, 0x9de8, 0x9ded, 0x9ec2, 0x9ed0, 0x9ef2, 0x9ef3, 0x9f06,\n  0x9f1c, 0x9f38, 0x9f37, 0x9f36, 0x9f43, 0x9f4f, 0x9f71, 0x9f70,\n  0x9f6e, 0x9f6f, 0x56d3, 0x56cd, 0x5b4e, 0x5c6d, 0x652d, 0x66ed,\n  0x66ee, 0x6b13, 0x705f, 0x7061, 0x705d, 0x7060, 0x7223, 0x74db,\n  0x74e5, 0x77d5, 0x7938, 0x79b7, 0x79b6, 0x7c6a, 0x7e97, 0x7f89,\n  0x826d, 0x8643, 0x8838, 0x8837, 0x8835, 0x884b, 0x8b94, 0x8b95,\n  0x8e9e, 0x8e9f, 0x8ea0, 0x8e9d, 0x91be, 0x91bd, 0x91c2, 0x946b,\n  0x9468, 0x9469, 0x96e5, 0x9746, 0x9743, 0x9747, 0x97c7, 0x97e5,\n  0x9a5e, 0x9ad5, 0x9b59, 0x9c63, 0x9c67, 0x9c66, 0x9c62, 0x9c5e,\n  0x9c60, 0x9e02, 0x9dfe, 0x9e07, 0x9e03, 0x9e06, 0x9e05, 0x9e00,\n  0x9e01, 0x9e09, 0x9dff, 0x9dfd, 0x9e04, 0x9ea0, 0x9f1e, 0x9f46,\n  0x9f74, 0x9f75, 0x9f76, 0x56d4, 0x652e, 0x65b8,\n  /* 0x71 */\n  0x6b18, 0x6b19, 0x6b17, 0x6b1a, 0x7062, 0x7226, 0x72aa, 0x77d8,\n  0x77d9, 0x7939, 0x7c69, 0x7c6b, 0x7cf6, 0x7e9a, 0x7e98, 0x7e9b,\n  0x7e99, 0x81e0, 0x81e1, 0x8646, 0x8647, 0x8648, 0x8979, 0x897a,\n  0x897c, 0x897b, 0x89ff, 0x8b98, 0x8b99, 0x8ea5, 0x8ea4, 0x8ea3,\n  0x946e, 0x946d, 0x946f, 0x9471, 0x9473, 0x9749, 0x9872, 0x995f,\n  0x9c68, 0x9c6e, 0x9c6d, 0x9e0b, 0x9e0d, 0x9e10, 0x9e0f, 0x9e12,\n  0x9e11, 0x9ea1, 0x9ef5, 0x9f09, 0x9f47, 0x9f78, 0x9f7b, 0x9f7a,\n  0x9f79, 0x571e, 0x7066, 0x7c6f, 0x883c, 0x8db2, 0x8ea6, 0x91c3,\n  0x9474, 0x9478, 0x9476, 0x9475, 0x9a60, 0x9b2e, 0x9c74, 0x9c73,\n  0x9c71, 0x9c75, 0x9e14, 0x9e13, 0x9ef6, 0x9f0a, 0x9fa4, 0x7068,\n  0x7065, 0x7cf7, 0x866a, 0x883e, 0x883d, 0x883f, 0x8b9e, 0x8c9c,\n  0x8ea9, 0x8ec9, 0x974b, 0x9873, 0x9874, 0x98cc,\n  /* 0x72 */\n  0x9961, 0x99ab, 0x9a64, 0x9a66, 0x9a67, 0x9b24, 0x9e15, 0x9e17,\n  0x9f48, 0x6207, 0x6b1e, 0x7227, 0x864c, 0x8ea8, 0x9482, 0x9480,\n  0x9481, 0x9a69, 0x9a68, 0x9e19, 0x864b, 0x8b9f, 0x9483, 0x9c79,\n  0x9eb7, 0x7675, 0x9a6b, 0x9c7a, 0x9e1d, 0x7069, 0x706a, 0x7229,\n  0x9ea4, 0x9f7e, 0x9f49, 0x9f98,\n};\n\nstatic int\ncns11643_2_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x21 && c1 <= 0x72)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        unsigned short wc = 0xfffd;\n        {\n          if (i < 7650)\n            wc = cns11643_2_2uni_page21[i];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643_3.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992 plane 3\n */\n\nstatic const unsigned short cns11643_3_2uni_page21[6148] = {\n  /* 0x21 */\n  0x1a28, 0x1a36, 0x1a3f, 0x1a85, 0x1a05, 0x1a04, 0x1d82, 0x1d96,\n  0x1f38, 0x1f69, 0x1fb6, 0x1a2a, 0x1a87, 0x1a49, 0x1de2, 0x1a46,\n  0x1a8f, 0x1abc, 0x1abe, 0x1d66, 0x1de3, 0x1e04, 0x1e9c, 0x1f44,\n  0x2502, 0x250a, 0x2780, 0x29db, 0x2a7a, 0x2a7f, 0x2af4, 0x2b50,\n  0x2b51, 0x2b61, 0x621d, 0x6d0b, 0x1a63, 0x1a62, 0x1aa3, 0x1d85,\n  0x1ac5, 0x1acf, 0x1ace, 0x1acc, 0x1d84, 0x1d86, 0x8517, 0x00c5,\n  0x1de4, 0x1e05, 0x1e9e, 0x1e9d, 0x1efd, 0x1f00, 0x1f3a, 0x0139,\n  0x1f46, 0x1f5d, 0x1f86, 0x1fb7, 0x0155, 0x1fcc, 0x015b, 0x1fce,\n  0x2321, 0x03a2, 0x2a00, 0x2b0c, 0x2e37, 0x2e38, 0x3134, 0x3135,\n  0x31e0, 0x0a26, 0x3f8d, 0x1a97, 0x1ae0, 0x0032, 0x6ea9, 0x1ae7,\n  0x0033, 0x1ae6, 0x0034, 0x02a2, 0x0031, 0x00b0, 0x22d8, 0x1d8b,\n  0x1d8c, 0x1d99, 0x1de5, 0x8550, 0x1e0b, 0x00dc,\n  /* 0x22 */\n  0x021e, 0x1f04, 0x1f03, 0x1f07, 0x852a, 0x1f1e, 0x1f5f, 0x1f6d,\n  0x1f89, 0x1fba, 0x1fd0, 0x0165, 0x1ff6, 0x1ff7, 0x1ff9, 0x0164,\n  0x1ff4, 0x021d, 0x0226, 0x2324, 0x2504, 0x2518, 0x2532, 0x2530,\n  0x2534, 0x028e, 0x2575, 0x034a, 0x2782, 0x27f9, 0x2814, 0x038b,\n  0x03a6, 0x03a4, 0x03a5, 0x03a7, 0x042f, 0x0432, 0x2a81, 0x2a83,\n  0x2b0d, 0x2b52, 0x04d4, 0x2bca, 0x2bc7, 0x2e39, 0x05c5, 0x2e4f,\n  0x31e7, 0x332f, 0x377a, 0x3839, 0x08ba, 0x08b9, 0x3837, 0x3844,\n  0x3845, 0x3f8c, 0x4192, 0x4276, 0x5c93, 0x5c92, 0x14b3, 0x15ba,\n  0x1a21, 0x1a20, 0x1a22, 0x1a68, 0x1a89, 0x1a98, 0x1af9, 0x1aef,\n  0x003b, 0x003c, 0x1af8, 0x1b06, 0x1b03, 0x1afc, 0x1aee, 0x1b16,\n  0x0039, 0x1b28, 0x1b1c, 0x1b07, 0x1b1a, 0x1afa, 0x1b17, 0x1d4a,\n  0x00b2, 0x1d72, 0x8515, 0x1db4, 0x1db3, 0x1db2,\n  /* 0x23 */\n  0x00c7, 0x1de8, 0x002b, 0x1e14, 0x1e0f, 0x1e15, 0x1e18, 0x1ea8,\n  0x852c, 0x1f4b, 0x1f4f, 0x013b, 0x1f50, 0x0144, 0x1f8b, 0x0142,\n  0x1fbe, 0x015c, 0x1fd2, 0x2016, 0x1fff, 0x0167, 0x2000, 0x0166,\n  0x2005, 0x2013, 0x2015, 0x853b, 0x021f, 0x22e3, 0x2335, 0x2336,\n  0x2331, 0x2332, 0x24ee, 0x2505, 0x1a54, 0x028f, 0x2536, 0x0290,\n  0x02a8, 0x02a4, 0x257a, 0x02a3, 0x2586, 0x033d, 0x034c, 0x2786,\n  0x2b53, 0x2818, 0x038c, 0x283d, 0x2878, 0x03a8, 0x03ad, 0x03af,\n  0x7746, 0x2880, 0x0429, 0x2a08, 0x0436, 0x0471, 0x0470, 0x046f,\n  0x2af5, 0x2b0e, 0x04a9, 0x04aa, 0x04fb, 0x2bd3, 0x2bda, 0x04fc,\n  0x2bdb, 0x05ae, 0x2e0f, 0x2e5d, 0x2e5f, 0x2e67, 0x2e57, 0x6b50,\n  0x06c3, 0x31eb, 0x31ea, 0x0730, 0x3337, 0x0741, 0x3332, 0x3336,\n  0x3722, 0x37ce, 0x088c, 0x3858, 0x3851, 0x3877,\n  /* 0x24 */\n  0x383c, 0x08bb, 0x385a, 0x7c86, 0x3853, 0x3c6f, 0x3c72, 0x3c6e,\n  0x8535, 0x09a1, 0x3c73, 0x3eb1, 0x3eb2, 0x0aa8, 0x3f8f, 0x0aaa,\n  0x0aab, 0x0c96, 0x453c, 0x0dc2, 0x4c8d, 0x4c8e, 0x1093, 0x4e7b,\n  0x1094, 0x5971, 0x5bb9, 0x5c96, 0x5c9a, 0x15bb, 0x1a24, 0x1a71,\n  0x851b, 0x1a9c, 0x1b45, 0x1b4a, 0x1b39, 0x1b37, 0x0043, 0x1b32,\n  0x1b42, 0x0042, 0x1b44, 0x1b4b, 0x0044, 0x1b40, 0x1b35, 0x1b31,\n  0x1d51, 0x850e, 0x1d50, 0x1d4e, 0x00b3, 0x00b7, 0x1d9d, 0x00c8,\n  0x1db5, 0x1db8, 0x1dec, 0x1e23, 0x1e27, 0x1e26, 0x1e1f, 0x1e2b,\n  0x1e20, 0x1eb4, 0x1eb3, 0x0118, 0x1f25, 0x1f3b, 0x1f74, 0x0147,\n  0x0146, 0x0145, 0x016b, 0x0169, 0x204d, 0x0172, 0x0171, 0x203a,\n  0x016c, 0x016f, 0x2044, 0x204c, 0x2023, 0x201a, 0x2032, 0x204b,\n  0x2021, 0x0173, 0x2034, 0x2049, 0x2050, 0x2022,\n  /* 0x25 */\n  0x203f, 0x2051, 0x205a, 0x202f, 0x0176, 0x22e9, 0x22f2, 0x22f3,\n  0x22ef, 0x22ed, 0x22ec, 0x22e6, 0x2348, 0x0227, 0x2344, 0x233f,\n  0x233c, 0x2353, 0x2356, 0x0230, 0x235f, 0x2343, 0x2358, 0x2357,\n  0x0229, 0x022a, 0x022f, 0x2346, 0x022c, 0x233d, 0x022d, 0x2342,\n  0x2354, 0x2355, 0x24f1, 0x24f2, 0x24f0, 0x250b, 0x6aa6, 0x22f1,\n  0x253d, 0x0293, 0x2594, 0x258c, 0x02ad, 0x259c, 0x02ac, 0x02ab,\n  0x259f, 0x02a9, 0x259b, 0x02ae, 0x2589, 0x259a, 0x02aa, 0x3188,\n  0x034e, 0x278d, 0x0350, 0x27fe, 0x27ff, 0x27fd, 0x282b, 0x03b2,\n  0x2884, 0x288e, 0x289c, 0x03b5, 0x03b6, 0x2885, 0x29f5, 0x2a09,\n  0x0439, 0x043b, 0x2a0b, 0x0472, 0x2a92, 0x2a90, 0x2b03, 0x04ac,\n  0x2b1e, 0x2b63, 0x0508, 0x2be7, 0x2bfe, 0x2be6, 0x2bdc, 0x2bce,\n  0x0503, 0x2bfc, 0x2bdf, 0x2bec, 0x2bf6, 0x79d7,\n  /* 0x26 */\n  0x2bf2, 0x2bf0, 0x2bf9, 0x050b, 0x2e13, 0x05af, 0x85b2, 0x2e3b,\n  0x2e3c, 0x2e82, 0x05ce, 0x05cb, 0x05cc, 0x2e78, 0x2e8b, 0x05cd,\n  0x2e9e, 0x2ea5, 0x2e9b, 0x2e9c, 0x2e99, 0x2e8d, 0x2e85, 0x2e9d,\n  0x2e75, 0x0680, 0x06af, 0x06d3, 0x31f6, 0x06d5, 0x06d4, 0x06d7,\n  0x32f5, 0x335b, 0x0742, 0x3354, 0x3352, 0x0744, 0x3358, 0x3344,\n  0x334a, 0x3361, 0x08c6, 0x387f, 0x3891, 0x389e, 0x08c0, 0x386e,\n  0x387c, 0x389f, 0x3875, 0x08be, 0x3856, 0x38a2, 0x3879, 0x08ca,\n  0x38a1, 0x08c4, 0x38aa, 0x38a0, 0x08c2, 0x3c79, 0x3c77, 0x3c7e,\n  0x09a4, 0x3c75, 0x3c7b, 0x3e64, 0x0a29, 0x3ebb, 0x3ebc, 0x3ec7,\n  0x3eb9, 0x3ebe, 0x3eb6, 0x0a60, 0x0a5e, 0x3f98, 0x0aad, 0x0aae,\n  0x0aac, 0x0b57, 0x4193, 0x4280, 0x0bdd, 0x4283, 0x42c0, 0x42c1,\n  0x0c0e, 0x0c97, 0x43f4, 0x43f5, 0x0d27, 0x46cc,\n  /* 0x27 */\n  0x46cd, 0x48fa, 0x4c9f, 0x4c91, 0x4c97, 0x4c94, 0x1095, 0x4e86,\n  0x4e8c, 0x868f, 0x4e95, 0x1098, 0x526c, 0x119d, 0x5bb5, 0x5bbe,\n  0x5bc7, 0x148a, 0x5bc1, 0x5ca9, 0x5ca4, 0x14b5, 0x14b6, 0x14b7,\n  0x5ca8, 0x6227, 0x6226, 0x622b, 0x6233, 0x6234, 0x6229, 0x1a3d,\n  0x0028, 0x1a9d, 0x1b93, 0x1b8a, 0x004d, 0x0049, 0x1b6d, 0x1b8e,\n  0x1ba0, 0x1ba2, 0x1ba1, 0x1b9f, 0x1ba3, 0x6f09, 0x1b72, 0x0051,\n  0x1b8c, 0x1d56, 0x850f, 0x8511, 0x1d90, 0x00cb, 0x00ca, 0x00cc,\n  0x1ded, 0x1dfe, 0x1e2f, 0x71ec, 0x1e3c, 0x1e34, 0x1e39, 0x1eb9,\n  0x1eb5, 0x1ebf, 0x1f55, 0x013d, 0x1f76, 0x1f7a, 0x1f93, 0x0148,\n  0x1fc1, 0x1fc2, 0x1fd5, 0x2085, 0x0178, 0x205f, 0x2093, 0x2089,\n  0x2079, 0x6afe, 0x208f, 0x2069, 0x206d, 0x017a, 0x2094, 0x206a,\n  0x208a, 0x0177, 0x22fd, 0x22fb, 0x22f8, 0x0221,\n  /* 0x28 */\n  0x22fc, 0x22f6, 0x2365, 0x2381, 0x2363, 0x2367, 0x0231, 0x236e,\n  0x2378, 0x237f, 0x0233, 0x0234, 0x24f3, 0x254b, 0x254c, 0x02c1,\n  0x02b0, 0x02b4, 0x25ad, 0x02b8, 0x25c4, 0x02bc, 0x25c2, 0x25b0,\n  0x02bf, 0x02b5, 0x02b1, 0x02bd, 0x25bf, 0x02bb, 0x25c9, 0x25b8,\n  0x25ac, 0x02b3, 0x02b6, 0x02ba, 0x25b7, 0x25d7, 0x02b7, 0x2760,\n  0x0340, 0x2796, 0x279e, 0x2794, 0x279f, 0x279d, 0x0352, 0x2800,\n  0x2819, 0x0390, 0x0391, 0x2849, 0x284a, 0x03be, 0x28bb, 0x28c1,\n  0x03c0, 0x03c1, 0x03b9, 0x28b9, 0x289e, 0x28b4, 0x28ba, 0x29f6,\n  0x2a13, 0x2a12, 0x2a77, 0x0479, 0x2a98, 0x047b, 0x2a99, 0x2a9d,\n  0x2af8, 0x04a0, 0x2af9, 0x0029, 0x2b06, 0x2b21, 0x04ae, 0x2b25,\n  0x2b55, 0x04cd, 0x04cb, 0x04d9, 0x2b84, 0x2b83, 0x2c30, 0x2c07,\n  0x050c, 0x2c36, 0x0501, 0x0505, 0x0502, 0x2be9,\n  /* 0x29 */\n  0x2c3d, 0x2c08, 0x0513, 0x0511, 0x2eba, 0x2eb2, 0x05e4, 0x2eb7,\n  0x2ee4, 0x2ea7, 0x05da, 0x05d5, 0x05d3, 0x2ed5, 0x2ee1, 0x2edd,\n  0x2ea6, 0x2ec1, 0x2ec5, 0x2ec0, 0x2edf, 0x2ee0, 0x2ede, 0x05d6,\n  0x3189, 0x06b4, 0x31a6, 0x31ba, 0x06d9, 0x31ff, 0x06d8, 0x3217,\n  0x3218, 0x3201, 0x31fe, 0x0733, 0x330c, 0x0748, 0x336b, 0x3396,\n  0x3382, 0x338a, 0x0747, 0x33a3, 0x074b, 0x33a2, 0x338f, 0x074a,\n  0x33f9, 0x3380, 0x3726, 0x3727, 0x3768, 0x3769, 0x085a, 0x3781,\n  0x37b4, 0x37d1, 0x088e, 0x08b4, 0x381c, 0x08cd, 0x08cc, 0x08cf,\n  0x08cb, 0x08ce, 0x3897, 0x386c, 0x38df, 0x08d2, 0x38ea, 0x08d1,\n  0x38e4, 0x38d8, 0x38b2, 0x38ce, 0x38c8, 0x09a6, 0x3c8b, 0x3c88,\n  0x3c90, 0x3c8f, 0x09aa, 0x3c87, 0x3c89, 0x3c8d, 0x3c81, 0x09a8,\n  0x3c8c, 0x0a13, 0x0a1a, 0x3e40, 0x0a1d, 0x0a1e,\n  /* 0x2a */\n  0x3e65, 0x3e66, 0x3e68, 0x0a65, 0x0a66, 0x3ecd, 0x3ed3, 0x3edb,\n  0x0a64, 0x3ecf, 0x3fa7, 0x3fa3, 0x3f9e, 0x0ab0, 0x3faf, 0x0ab3,\n  0x0ab5, 0x3faa, 0x3f9c, 0x0b19, 0x4142, 0x4144, 0x413b, 0x4141,\n  0x783f, 0x419b, 0x419e, 0x0b75, 0x45c4, 0x45c3, 0x45c6, 0x0d2b,\n  0x0d2c, 0x45c7, 0x0d2d, 0x45ca, 0x802e, 0x0dc3, 0x46cf, 0x4876,\n  0x4874, 0x48ff, 0x48fc, 0x00ba, 0x0f50, 0x4b59, 0x4ca8, 0x0fd3,\n  0x0fd0, 0x4cb0, 0x0fdc, 0x4cb3, 0x0fd2, 0x4ca4, 0x4cb6, 0x4ca7,\n  0x4cac, 0x0fdb, 0x4ca6, 0x1f67, 0x4e0e, 0x4ec4, 0x4f3e, 0x4e9c,\n  0x10a5, 0x109f, 0x109a, 0x109c, 0x10a2, 0x4eaa, 0x109b, 0x4ec9,\n  0x10a3, 0x109d, 0x4ea6, 0x4eb2, 0x1188, 0x121a, 0x148d, 0x5bcc,\n  0x5bd9, 0x5bca, 0x5bd8, 0x5bcf, 0x5cb7, 0x14b8, 0x5cad, 0x5cb9,\n  0x6237, 0x15c3, 0x6241, 0x623e, 0x62b6, 0x6351,\n  /* 0x2b */\n  0x6363, 0x1a57, 0x1a79, 0x1ab2, 0x1ab0, 0x1aaf, 0x1ab1, 0x1bd2,\n  0x1bd5, 0x005d, 0x1bbe, 0x1bb8, 0x1bb0, 0x1bb1, 0x1bc8, 0x005a,\n  0x0057, 0x1bc6, 0x1bcc, 0x1be5, 0x1be3, 0x1bb4, 0x1d6a, 0x00b8,\n  0x1d9f, 0x00c2, 0x1dc1, 0x00cf, 0x1dc2, 0x1dc3, 0x1e45, 0x1e48,\n  0x00e7, 0x00e9, 0x1e4f, 0x1052, 0x00e8, 0x1ec5, 0x1eca, 0x1ec4,\n  0x1f27, 0x1f58, 0x1f7d, 0x014a, 0x1fdd, 0x1fdc, 0x1fda, 0x1fd9,\n  0x20b9, 0x0180, 0x20d0, 0x20b4, 0x20ca, 0x0187, 0x20a3, 0x20da,\n  0x20a4, 0x0184, 0x20b2, 0x209e, 0x209f, 0x20b5, 0x0182, 0x0181,\n  0x20cd, 0x0183, 0x20cc, 0x0222, 0x2300, 0x23ac, 0x2391, 0x238e,\n  0x238d, 0x2392, 0x23a1, 0x2390, 0x23a6, 0x23a8, 0x023b, 0x239c,\n  0x2396, 0x23a7, 0x023a, 0x0238, 0x0239, 0x0236, 0x24f5, 0x0285,\n  0x2509, 0x2508, 0x0854, 0x2552, 0x029a, 0x02c4,\n  /* 0x2c */\n  0x25df, 0x02c5, 0x25eb, 0x25ef, 0x25f0, 0x25d5, 0x260d, 0x2604,\n  0x25f9, 0x2602, 0x25f8, 0x25e2, 0x25d9, 0x25e7, 0x276a, 0x0354,\n  0x0355, 0x27ab, 0x0356, 0x281b, 0x282f, 0x0396, 0x323c, 0x0395,\n  0x0394, 0x03c4, 0x28d1, 0x28dc, 0x28e6, 0x28e1, 0x28cd, 0x857a,\n  0x28e2, 0x28dd, 0x28e5, 0x29fb, 0x29fa, 0x2a1e, 0x0444, 0x2aa1,\n  0x047d, 0x047e, 0x2afc, 0x2afb, 0x2b2f, 0x04b2, 0x04b6, 0x2b66,\n  0x8599, 0x04dc, 0x04df, 0x2c5c, 0x0528, 0x2c4e, 0x2c51, 0x0519,\n  0x0510, 0x2c23, 0x2c31, 0x2c7c, 0x2c52, 0x052c, 0x2c60, 0x2c4a,\n  0x2c61, 0x051b, 0x2e18, 0x05c2, 0x05ef, 0x05e3, 0x05e5, 0x05ea,\n  0x05e6, 0x05ee, 0x2f1f, 0x2f17, 0x2eea, 0x2f21, 0x2f04, 0x2f05,\n  0x05e8, 0x3131, 0x3144, 0x3140, 0x0685, 0x3142, 0x31be, 0x06e0,\n  0x3229, 0x321b, 0x06dd, 0x3223, 0x322c, 0x321a,\n  /* 0x2d */\n  0x3230, 0x323b, 0x321e, 0x3237, 0x3238, 0x06e1, 0x330e, 0x0751,\n  0x0755, 0x33e8, 0x33d6, 0x0752, 0x33c7, 0x33bc, 0x3452, 0x33bf,\n  0x33d5, 0x33fe, 0x4f63, 0x33fb, 0x85df, 0x33b1, 0x3401, 0x3405,\n  0x3400, 0x33d7, 0x0c9e, 0x372a, 0x376b, 0x0852, 0x085e, 0x0860,\n  0x085f, 0x37e1, 0x0892, 0x08d6, 0x3923, 0x38ff, 0x3914, 0x3905,\n  0x3913, 0x3906, 0x3921, 0x08de, 0x3915, 0x38af, 0x38f4, 0x3902,\n  0x3945, 0x85fe, 0x3926, 0x08d9, 0x3944, 0x08dd, 0x3924, 0x3ca5,\n  0x09ac, 0x3ca3, 0x09b0, 0x3ca2, 0x3cbb, 0x3ca0, 0x3caa, 0x09af,\n  0x09ae, 0x3ca8, 0x3cb6, 0x3cb2, 0x3ca7, 0x09ad, 0x09ab, 0x3cb9,\n  0x3e2e, 0x0a16, 0x3e3c, 0x0a30, 0x3e6d, 0x0a33, 0x0a31, 0x3ee7,\n  0x3eed, 0x0a6e, 0x3eec, 0x3ee5, 0x3ee2, 0x0ab1, 0x3fc4, 0x3fbd,\n  0x3fcf, 0x3fc9, 0x3fc1, 0x3fd0, 0x0ab7, 0x3fce,\n  /* 0x2e */\n  0x40ed, 0x40eb, 0x0b1a, 0x40ef, 0x4149, 0x4150, 0x4146, 0x414a,\n  0x0b59, 0x414d, 0x41a6, 0x0b7a, 0x0b78, 0x0b7b, 0x41a8, 0x0bde,\n  0x0bec, 0x42c7, 0x42ff, 0x0c1e, 0x42fd, 0x43e6, 0x440a, 0x0c9b,\n  0x4404, 0x440b, 0x4407, 0x0c9d, 0x4415, 0x4408, 0x0cfd, 0x45d3,\n  0x45d4, 0x45d0, 0x45d7, 0x467c, 0x0d94, 0x0d93, 0x467d, 0x4683,\n  0x4682, 0x0dc6, 0x46d4, 0x46d5, 0x46d3, 0x46d0, 0x46d2, 0x46fe,\n  0x46fc, 0x4877, 0x487c, 0x487b, 0x0eb8, 0x866a, 0x0eb7, 0x0eb9,\n  0x0f53, 0x7f33, 0x0f52, 0x0f51, 0x4b8f, 0x4cd3, 0x0fe3, 0x4ccb,\n  0x4cd2, 0x0fe2, 0x4d09, 0x4ce2, 0x4cdf, 0x4cc6, 0x1063, 0x4e24,\n  0x4ef7, 0x4ed8, 0x4edd, 0x10aa, 0x10a6, 0x4ef8, 0x4efc, 0x10a8,\n  0x10a9, 0x4ee9, 0x10ab, 0x4eee, 0x10ac, 0x4ed0, 0x4f0e, 0x4ee2,\n  0x4f0b, 0x4efd, 0x1d79, 0x5276, 0x119e, 0x5278,\n  /* 0x2f */\n  0x119f, 0x11a0, 0x5275, 0x527d, 0x120f, 0x5442, 0x5466, 0x121c,\n  0x558c, 0x5605, 0x12ae, 0x5606, 0x12b0, 0x589f, 0x13d4, 0x5bf1,\n  0x5be7, 0x5be9, 0x5bef, 0x5cc2, 0x5cbc, 0x14bb, 0x5cc6, 0x5cc0,\n  0x14c1, 0x14c2, 0x5ccd, 0x5cc9, 0x14be, 0x5cc4, 0x14e5, 0x6181,\n  0x15c6, 0x68ec, 0x1c32, 0x1bf9, 0x1c1d, 0x1bff, 0x1c04, 0x1bf0,\n  0x1c03, 0x122e, 0x1c02, 0x1bfc, 0x1bf2, 0x1c24, 0x1c08, 0x1c36,\n  0x1c2e, 0x0065, 0x1c10, 0x1c38, 0x1c39, 0x1bfd, 0x1c56, 0x1bfb,\n  0x1da3, 0x1da6, 0x1da1, 0x00d1, 0x00d0, 0x1dc7, 0x1dc9, 0x1e60,\n  0x1e64, 0x1e59, 0x1e65, 0x1e67, 0x1e57, 0x1e63, 0x00ee, 0x1e53,\n  0x00ef, 0x1ecf, 0x011e, 0x1ece, 0x1ed0, 0x1ed1, 0x1ecc, 0x014b,\n  0x014d, 0x0156, 0x210d, 0x20f4, 0x0192, 0x2113, 0x20ef, 0x20f5,\n  0x20f9, 0x2102, 0x2100, 0x0193, 0x0190, 0x2118,\n  /* 0x30 */\n  0x20f0, 0x20f6, 0x8541, 0x0197, 0x2119, 0x0223, 0x2305, 0x23c9,\n  0x023f, 0x23b7, 0x23cd, 0x0243, 0x0242, 0x0244, 0x23be, 0x23bb,\n  0x0245, 0x23db, 0x23c8, 0x23c4, 0x23c5, 0x23d1, 0x23ca, 0x23c0,\n  0x02d9, 0x02de, 0x2621, 0x262a, 0x02cf, 0x261d, 0x02cd, 0x260b,\n  0x02dd, 0x02ce, 0x02d3, 0x02d6, 0x2622, 0x02dc, 0x02d1, 0x2624,\n  0x02d0, 0x2614, 0x2631, 0x02d5, 0x262f, 0x261a, 0x2612, 0x02d4,\n  0x02db, 0x2626, 0x762e, 0x0343, 0x27bc, 0x27bb, 0x27b7, 0x2805,\n  0x2806, 0x2852, 0x2853, 0x03cd, 0x03d1, 0x28fa, 0x28eb, 0x03ca,\n  0x28f3, 0x28f5, 0x28e9, 0x28ef, 0x03d4, 0x2a2a, 0x2a30, 0x2a2e,\n  0x2a2c, 0x2a2f, 0x2aaf, 0x2aa9, 0x0486, 0x2afd, 0x2b32, 0x2b8e,\n  0x2b93, 0x2b8f, 0x2c4f, 0x2c99, 0x0533, 0x2c7e, 0x0537, 0x2c74,\n  0x2c4b, 0x2c73, 0x2c75, 0x052a, 0x051f, 0x2c56,\n  /* 0x31 */\n  0x2ca9, 0x2c8b, 0x2ca6, 0x0539, 0x2c93, 0x2cae, 0x2c9e, 0x2ca7,\n  0x2e45, 0x05f2, 0x05f8, 0x2f2e, 0x05f7, 0x2f52, 0x2f30, 0x2f5b,\n  0x05f4, 0x2f19, 0x2f1b, 0x05f1, 0x2f31, 0x2f5d, 0x2f37, 0x2f35,\n  0x2f53, 0x05f5, 0x2f5c, 0x2f3f, 0x314b, 0x0687, 0x0f69, 0x318b,\n  0x06b6, 0x319a, 0x3250, 0x3246, 0x324e, 0x3240, 0x06e9, 0x324b,\n  0x3248, 0x06eb, 0x3260, 0x3244, 0x324d, 0x0734, 0x3437, 0x3424,\n  0x0762, 0x075c, 0x341b, 0x3436, 0x0760, 0x342c, 0x3419, 0x3456,\n  0x3447, 0x343e, 0x341e, 0x85e1, 0x3415, 0x3422, 0x3427, 0x3459,\n  0x3458, 0x3455, 0x3430, 0x3423, 0x372e, 0x372b, 0x3730, 0x376c,\n  0x0861, 0x378b, 0x087f, 0x37e9, 0x37ea, 0x37e5, 0x396b, 0x08e5,\n  0x08e6, 0x3973, 0x3957, 0x08e9, 0x08f3, 0x395d, 0x3956, 0x398f,\n  0x395b, 0x391c, 0x399a, 0x399b, 0x3999, 0x08ee,\n  /* 0x32 */\n  0x3981, 0x3971, 0x08ed, 0x08ec, 0x3972, 0x395c, 0x3996, 0x3cc4,\n  0x3cdb, 0x3ccc, 0x3cd0, 0x3ce3, 0x3cdf, 0x09b3, 0x3cd6, 0x3cee,\n  0x3cd5, 0x09b5, 0x0a27, 0x0a35, 0x0a36, 0x3e7a, 0x0a71, 0x3ef5,\n  0x3f02, 0x0ab8, 0x0ac2, 0x3fe2, 0x3fec, 0x3fd5, 0x3ff9, 0x3fdf,\n  0x3fe6, 0x0ac8, 0x0ac0, 0x0ac1, 0x0ac4, 0x3fe4, 0x3fe1, 0x40f3,\n  0x0b1f, 0x0b1c, 0x0b1d, 0x0b4d, 0x4156, 0x4155, 0x4158, 0x4157,\n  0x415e, 0x41c3, 0x0b87, 0x0b82, 0x41b4, 0x0b7d, 0x41b1, 0x0bdf,\n  0x0c00, 0x42cb, 0x42cc, 0x432a, 0x0c20, 0x4316, 0x430f, 0x0c22,\n  0x0c24, 0x433f, 0x432b, 0x430e, 0x4324, 0x0c21, 0x4321, 0x4318,\n  0x43dd, 0x0ca4, 0x0ca5, 0x4424, 0x4436, 0x0d01, 0x4558, 0x4559,\n  0x0d03, 0x4562, 0x45da, 0x45d9, 0x0d37, 0x45e1, 0x45e5, 0x45e8,\n  0x45db, 0x0d38, 0x45e2, 0x45f0, 0x0d99, 0x0d98,\n  /* 0x33 */\n  0x0d97, 0x0dc9, 0x46da, 0x46dd, 0x0dc7, 0x46db, 0x46dc, 0x0dd9,\n  0x0ddb, 0x470d, 0x470b, 0x4714, 0x488e, 0x4886, 0x0e7b, 0x4887,\n  0x4883, 0x488b, 0x0e7c, 0x0ebd, 0x0ebc, 0x0ec3, 0x4924, 0x0ec1,\n  0x0ebf, 0x0ec4, 0x4925, 0x4b62, 0x4b93, 0x4b99, 0x4b97, 0x0f7e,\n  0x0f7f, 0x4bc4, 0x4bc6, 0x4c0a, 0x0fb4, 0x0fb3, 0x4c40, 0x4c3c,\n  0x4c3b, 0x4cf6, 0x4cff, 0x4cee, 0x4d04, 0x4d03, 0x4d07, 0x8683,\n  0x0fe6, 0x4cf7, 0x1059, 0x105a, 0x4e2d, 0x1064, 0x4e27, 0x4e29,\n  0x4f1f, 0x4f57, 0x10b4, 0x10b9, 0x10b7, 0x10b5, 0x4f21, 0x10c1,\n  0x10b1, 0x4f18, 0x4f58, 0x10b3, 0x10ba, 0x118c, 0x118b, 0x118d,\n  0x5284, 0x529f, 0x529b, 0x5289, 0x52a6, 0x5292, 0x528f, 0x52a0,\n  0x544f, 0x5478, 0x547a, 0x546e, 0x547b, 0x5484, 0x5473, 0x1278,\n  0x1277, 0x560d, 0x560b, 0x5619, 0x12b2, 0x13d6,\n  /* 0x34 */\n  0x5ad0, 0x1445, 0x1492, 0x1495, 0x5bf9, 0x5c09, 0x5c08, 0x14c6,\n  0x5cde, 0x5d51, 0x14e7, 0x14e8, 0x5ddb, 0x5ddf, 0x5dde, 0x5dd6,\n  0x5de0, 0x6185, 0x6260, 0x6259, 0x15cb, 0x6256, 0x15cd, 0x15f1,\n  0x62bd, 0x1722, 0x0021, 0x1c42, 0x1c59, 0x006f, 0x1c44, 0x1c66,\n  0x1c52, 0x1c54, 0x1c71, 0x1c50, 0x1c7b, 0x1c7c, 0x1c58, 0x0070,\n  0x0064, 0x1c79, 0x1c6c, 0x1c78, 0x1da8, 0x1dd1, 0x1dcf, 0x1e68,\n  0x1e76, 0x1ed4, 0x012d, 0x1fa0, 0x1fc4, 0x0158, 0x2158, 0x214c,\n  0x2168, 0x01a6, 0x2149, 0x01a4, 0x019f, 0x215d, 0x2129, 0x73ae,\n  0x2154, 0x2153, 0x01a3, 0x215a, 0x01a0, 0x213a, 0x213f, 0x212b,\n  0x23ea, 0x024a, 0x23ef, 0x0247, 0x0248, 0x23dd, 0x23fe, 0x8555,\n  0x23de, 0x23e6, 0x0249, 0x23e8, 0x23ff, 0x2403, 0x24f7, 0x34a6,\n  0x251f, 0x029e, 0x255b, 0x255d, 0x255e, 0x7537,\n  /* 0x35 */\n  0x02e8, 0x262b, 0x02ec, 0x263b, 0x02ed, 0x02e6, 0x2661, 0x263a,\n  0x266e, 0x264b, 0x266b, 0x02eb, 0x02e7, 0x2645, 0x264e, 0x2668,\n  0x263d, 0x2671, 0x263f, 0x266f, 0x2675, 0x02e9, 0x2673, 0x262c,\n  0x2659, 0x2654, 0x264f, 0x2663, 0x035c, 0x035d, 0x27c8, 0x0360,\n  0x27c3, 0x035b, 0x285b, 0x2861, 0x0399, 0x2921, 0x290a, 0x2909,\n  0x03d8, 0x292c, 0x2908, 0x03da, 0x03dd, 0x292a, 0x2915, 0x03e0,\n  0x2910, 0x2913, 0x03e5, 0x292f, 0x2918, 0x03d7, 0x29e3, 0x2a39,\n  0x2a35, 0x2a3a, 0x2a32, 0x044e, 0x048c, 0x0488, 0x858d, 0x2abb,\n  0x2aba, 0x2b34, 0x2b39, 0x04ce, 0x859c, 0x04e5, 0x04e6, 0x2c98,\n  0x0532, 0x2cd0, 0x0540, 0x0547, 0x054c, 0x2cd7, 0x2caa, 0x0535,\n  0x2ca1, 0x2ca4, 0x0530, 0x2cee, 0x0543, 0x2ce7, 0x054d, 0x2ce8,\n  0x2cde, 0x05b7, 0x05f3, 0x2f7e, 0x2f8b, 0x0602,\n  /* 0x36 */\n  0x060b, 0x2f79, 0x2f86, 0x2f93, 0x0604, 0x2f73, 0x2f6a, 0x85ba,\n  0x2f6c, 0x0608, 0x2f7f, 0x05fc, 0x2fb2, 0x2fba, 0x05ff, 0x0600,\n  0x2f66, 0x2f74, 0x068b, 0x315a, 0x068d, 0x314e, 0x314d, 0x318d,\n  0x318e, 0x31ad, 0x06ca, 0x31c7, 0x31ca, 0x06cb, 0x31c9, 0x85cb,\n  0x31e3, 0x3257, 0x06f3, 0x3263, 0x3267, 0x331a, 0x3319, 0x3316,\n  0x0736, 0x076a, 0x349e, 0x34b6, 0x3498, 0x3473, 0x076b, 0x349a,\n  0x348e, 0x34b7, 0x34db, 0x34a5, 0x346c, 0x34c1, 0x3484, 0x0771,\n  0x0768, 0x3495, 0x347a, 0x3499, 0x0772, 0x34b8, 0x34b9, 0x3470,\n  0x082e, 0x3735, 0x0862, 0x3790, 0x37bb, 0x37ed, 0x0898, 0x08b5,\n  0x08eb, 0x39c1, 0x39c3, 0x39ce, 0x08fb, 0x08f8, 0x39ad, 0x3a04,\n  0x08f5, 0x39b9, 0x0908, 0x39e7, 0x8607, 0x3a08, 0x3a06, 0x090a,\n  0x3a0a, 0x39b0, 0x0906, 0x39f8, 0x3a0c, 0x08fd,\n  /* 0x37 */\n  0x39b1, 0x08fa, 0x3a02, 0x3a07, 0x3a09, 0x3a01, 0x3a17, 0x39ff,\n  0x3a12, 0x09ba, 0x09b9, 0x3d03, 0x3d07, 0x3d01, 0x3cf5, 0x3cf1,\n  0x3d08, 0x3cf2, 0x3d0f, 0x09bb, 0x3cfe, 0x0a18, 0x0a40, 0x0a3d,\n  0x3f1a, 0x3f10, 0x3f0e, 0x4002, 0x3ff3, 0x0acd, 0x0ac9, 0x3ffb,\n  0x0acb, 0x0aca, 0x0ace, 0x411b, 0x4123, 0x4161, 0x4168, 0x0b5e,\n  0x4167, 0x41d3, 0x0b91, 0x0b8c, 0x4290, 0x0be1, 0x0c02, 0x42d5,\n  0x42d7, 0x42d6, 0x4330, 0x0c2b, 0x4326, 0x0c2a, 0x4340, 0x0a14,\n  0x431e, 0x0cad, 0x0ca3, 0x0cab, 0x4447, 0x0caf, 0x444b, 0x4451,\n  0x444f, 0x4442, 0x4446, 0x0d04, 0x456e, 0x456c, 0x45f2, 0x0d44,\n  0x45f1, 0x45f5, 0x45f3, 0x45f9, 0x0d3d, 0x0d47, 0x0d9c, 0x469a,\n  0x4693, 0x4691, 0x46e1, 0x0de0, 0x0de4, 0x4721, 0x471c, 0x4716,\n  0x4717, 0x4736, 0x471f, 0x0e80, 0x4893, 0x4899,\n  /* 0x38 */\n  0x489a, 0x489c, 0x0eca, 0x4949, 0x0ed4, 0x4934, 0x4937, 0x0ed2,\n  0x492d, 0x0ecb, 0x494c, 0x0ece, 0x0ed3, 0x4948, 0x0f44, 0x0f48,\n  0x4b3b, 0x0f45, 0x0f81, 0x0f86, 0x0f85, 0x4c08, 0x4c1a, 0x0fa3,\n  0x4c1d, 0x0fb5, 0x4c49, 0x4c45, 0x4c44, 0x489b, 0x0ffa, 0x0ff9,\n  0x4d2a, 0x4d2e, 0x0ffb, 0x0ff2, 0x4d31, 0x0fef, 0x4d1a, 0x4d34,\n  0x4d17, 0x105b, 0x1066, 0x10ce, 0x4f1d, 0x4f71, 0x4f84, 0x4f80,\n  0x4f72, 0x4fa1, 0x01b4, 0x4f79, 0x4f91, 0x10c8, 0x4f9f, 0x4fad,\n  0x10d1, 0x10c5, 0x4f23, 0x10d2, 0x4f85, 0x4f9c, 0x4fb7, 0x5258,\n  0x525a, 0x118f, 0x5257, 0x52b2, 0x11a7, 0x52ae, 0x11a5, 0x11a4,\n  0x1211, 0x5445, 0x549c, 0x5494, 0x54a3, 0x548f, 0x54a5, 0x54a9,\n  0x54a6, 0x548a, 0x54a0, 0x5490, 0x5592, 0x5591, 0x5594, 0x12b5,\n  0x5626, 0x5632, 0x5628, 0x12b4, 0x12bd, 0x561c,\n  /* 0x39 */\n  0x12bb, 0x562b, 0x5620, 0x12b9, 0x5629, 0x12c2, 0x12be, 0x12ba,\n  0x5621, 0x583a, 0x06b7, 0x585b, 0x5858, 0x587c, 0x1358, 0x58a6,\n  0x58ae, 0x58ad, 0x5965, 0x139b, 0x597e, 0x139c, 0x597c, 0x597f,\n  0x597a, 0x59bd, 0x13da, 0x13de, 0x59c0, 0x59bb, 0x5aad, 0x5aaf,\n  0x5ad6, 0x144d, 0x1446, 0x1447, 0x144b, 0x144c, 0x5ad9, 0x1448,\n  0x1499, 0x5c12, 0x5c0e, 0x5c25, 0x149b, 0x5c13, 0x5cee, 0x14ce,\n  0x5cab, 0x5cf7, 0x14eb, 0x5d59, 0x5d54, 0x5df2, 0x5df0, 0x5de5,\n  0x5df6, 0x151c, 0x158c, 0x6187, 0x15d1, 0x625a, 0x15d6, 0x15d3,\n  0x626e, 0x15d4, 0x15d0, 0x15d5, 0x6279, 0x160b, 0x64e1, 0x64e6,\n  0x17c6, 0x6ac4, 0x6ad2, 0x1a80, 0x0024, 0x1a81, 0x1c8f, 0x1c97,\n  0x1c88, 0x1c89, 0x0074, 0x007a, 0x1c81, 0x1d60, 0x7064, 0x00c3,\n  0x2a42, 0x1dd3, 0x00d4, 0x00d5, 0x1dd2, 0x1dd6,\n  /* 0x3a */\n  0x1e73, 0x00fb, 0x1e70, 0x00f7, 0x0132, 0x8533, 0x1fa8, 0x1fa6,\n  0x1fc5, 0x2197, 0x21de, 0x01ba, 0x01bf, 0x2196, 0x21b4, 0x01c7,\n  0x2185, 0x01b7, 0x219b, 0x21a0, 0x01b9, 0x2159, 0x01c3, 0x2186,\n  0x01bd, 0x01d0, 0x21af, 0x217a, 0x01c1, 0x01be, 0x01cd, 0x219e,\n  0x01cb, 0x21a9, 0x230f, 0x230e, 0x241a, 0x024f, 0x241f, 0x0253,\n  0x243c, 0x2418, 0x243e, 0x2426, 0x0255, 0x243a, 0x7464, 0x2422,\n  0x0251, 0x24fb, 0x2563, 0x2564, 0x029f, 0x26a8, 0x26a3, 0x2682,\n  0x2688, 0x26a1, 0x2685, 0x2698, 0x02fe, 0x2699, 0x02fb, 0x2689,\n  0x2681, 0x2696, 0x2680, 0x02f1, 0x02f5, 0x2691, 0x02ef, 0x0304,\n  0x0303, 0x02f4, 0x26cf, 0x02f3, 0x0302, 0x02f7, 0x02fa, 0x02fd,\n  0x02ee, 0x2687, 0x26a0, 0x02f0, 0x2679, 0x02f2, 0x2686, 0x26ab,\n  0x26aa, 0x26a4, 0x268d, 0x267e, 0x0344, 0x27d5,\n  /* 0x3b */\n  0x0362, 0x0377, 0x09c9, 0x281e, 0x285f, 0x285e, 0x2944, 0x293e,\n  0x03e8, 0x2948, 0x291c, 0x03ef, 0x295b, 0x294d, 0x03e6, 0x03ed,\n  0x2957, 0x03e7, 0x2953, 0x294f, 0x03eb, 0x293b, 0x2946, 0x042d,\n  0x0455, 0x2a46, 0x2a47, 0x0453, 0x2a48, 0x2ac0, 0x2abd, 0x2abf,\n  0x0490, 0x2b11, 0x04be, 0x2b3e, 0x2b3b, 0x04bd, 0x2b3a, 0x04cf,\n  0x04d0, 0x04ec, 0x2ba7, 0x054b, 0x2cea, 0x0548, 0x2d07, 0x2d22,\n  0x2d0c, 0x0555, 0x0551, 0x2cb3, 0x2cd6, 0x2cd2, 0x054e, 0x2ce3,\n  0x2ce5, 0x2ce9, 0x056b, 0x055e, 0x2d11, 0x2cfd, 0x0560, 0x0567,\n  0x2d1e, 0x2d20, 0x2d21, 0x2e1e, 0x05b8, 0x2fe2, 0x2fde, 0x2fe6,\n  0x0614, 0x060f, 0x0607, 0x0613, 0x2ff8, 0x0617, 0x2ffe, 0x2fc1,\n  0x2fbf, 0x2ff7, 0x2fd1, 0x315f, 0x3160, 0x3161, 0x069a, 0x06b8,\n  0x31d1, 0x06f7, 0x06f8, 0x327d, 0x326b, 0x327f,\n  /* 0x3c */\n  0x06fd, 0x06f5, 0x3273, 0x3281, 0x326d, 0x3269, 0x06fa, 0x0738,\n  0x331e, 0x34ed, 0x0787, 0x0780, 0x0788, 0x0779, 0x3503, 0x077c,\n  0x34fe, 0x34e5, 0x351e, 0x3502, 0x0783, 0x0785, 0x3509, 0x34ca,\n  0x3500, 0x85e5, 0x3501, 0x3518, 0x34e2, 0x34cf, 0x077b, 0x352e,\n  0x34c5, 0x34ff, 0x0786, 0x351c, 0x34c3, 0x0834, 0x376f, 0x0855,\n  0x376e, 0x0868, 0x37be, 0x089c, 0x37f4, 0x382d, 0x08fc, 0x39b6,\n  0x3a75, 0x3a1e, 0x091a, 0x3a18, 0x0917, 0x3a48, 0x091b, 0x3a4f,\n  0x0913, 0x3a42, 0x3a6a, 0x3a70, 0x39fe, 0x0905, 0x0907, 0x3a6d,\n  0x091c, 0x3a7b, 0x3a7e, 0x3a59, 0x0911, 0x3a57, 0x0916, 0x3a80,\n  0x3a50, 0x0915, 0x3a29, 0x3a76, 0x3a2a, 0x3a4c, 0x3d2a, 0x09cb,\n  0x3d35, 0x3d2c, 0x3d37, 0x3d1d, 0x09c5, 0x09c2, 0x3d38, 0x09cd,\n  0x3d34, 0x3d2b, 0x3d33, 0x3d27, 0x3d24, 0x09ca,\n  /* 0x3d */\n  0x3d2d, 0x3e32, 0x3e83, 0x3e82, 0x3e87, 0x3f06, 0x3f24, 0x3f38,\n  0x3f2a, 0x3f2c, 0x3f2b, 0x0a83, 0x3f2f, 0x3f28, 0x4017, 0x0ad6,\n  0x0ad5, 0x4019, 0x4038, 0x0ad1, 0x401f, 0x4014, 0x403c, 0x3ff7,\n  0x401c, 0x4015, 0x4018, 0x4039, 0x40f9, 0x4124, 0x8634, 0x0b52,\n  0x0b5f, 0x416e, 0x416d, 0x4171, 0x418e, 0x0b95, 0x41e5, 0x0b9d,\n  0x0b98, 0x0b9e, 0x0b96, 0x4294, 0x42b3, 0x0c03, 0x42d9, 0x0c2f,\n  0x4348, 0x4349, 0x4343, 0x0c31, 0x0c33, 0x4342, 0x43df, 0x0cb4,\n  0x4463, 0x4476, 0x0cb0, 0x445f, 0x4466, 0x4566, 0x4571, 0x0d08,\n  0x0d07, 0x4576, 0x4584, 0x4575, 0x45ff, 0x4607, 0x0d4e, 0x460e,\n  0x4609, 0x0d50, 0x0d52, 0x0da1, 0x0da3, 0x0da5, 0x0dcc, 0x46e7,\n  0x46e2, 0x4755, 0x0def, 0x0dea, 0x4743, 0x4757, 0x476c, 0x4742,\n  0x4753, 0x0ded, 0x4741, 0x0e85, 0x0e84, 0x48a7,\n  /* 0x3e */\n  0x48a0, 0x48a6, 0x48a4, 0x4974, 0x0edb, 0x4959, 0x0ed9, 0x4960,\n  0x4957, 0x496c, 0x497e, 0x4964, 0x0ed7, 0x495a, 0x495d, 0x0eda,\n  0x0ede, 0x0ed8, 0x4976, 0x494d, 0x4975, 0x0ed5, 0x4bd3, 0x4bd6,\n  0x0f9c, 0x0f9d, 0x4c60, 0x4c4e, 0x4d45, 0x4d3b, 0x0ffe, 0x4d48,\n  0x4d42, 0x4d49, 0x4d40, 0x4d14, 0x4d41, 0x1007, 0x4def, 0x4df6,\n  0x4e03, 0x106a, 0x4fed, 0x10e7, 0x4fda, 0x5018, 0x4fd2, 0x5008,\n  0x10e2, 0x5000, 0x10df, 0x10e1, 0x10e5, 0x5017, 0x4f46, 0x5014,\n  0x4fd3, 0x5005, 0x501f, 0x5002, 0x5016, 0x4fcd, 0x4fe6, 0x1191,\n  0x525d, 0x52d5, 0x52e1, 0x11b4, 0x11b0, 0x11b5, 0x11ae, 0x52ee,\n  0x5447, 0x5446, 0x122d, 0x122c, 0x54bb, 0x122b, 0x54bf, 0x54b4,\n  0x1229, 0x54b5, 0x127f, 0x559a, 0x5643, 0x12c9, 0x12cb, 0x565a,\n  0x12c5, 0x12c6, 0x12ca, 0x5635, 0x5638, 0x5642,\n  /* 0x3f */\n  0x5649, 0x565d, 0x564b, 0x563d, 0x12d2, 0x12d0, 0x132d, 0x1335,\n  0x5860, 0x585e, 0x587f, 0x587e, 0x5883, 0x136c, 0x58b1, 0x5987,\n  0x139d, 0x13a0, 0x5988, 0x5983, 0x13a2, 0x139f, 0x5986, 0x598b,\n  0x5982, 0x59ca, 0x59d2, 0x13eb, 0x13e2, 0x59d4, 0x59c9, 0x5ab0,\n  0x1436, 0x1432, 0x1450, 0x5af2, 0x5ae4, 0x5af3, 0x5aea, 0x144f,\n  0x5afd, 0x1452, 0x5b9d, 0x5c2b, 0x5c2a, 0x149e, 0x5c28, 0x5c29,\n  0x5c2c, 0x14a0, 0x149c, 0x5c3a, 0x5c30, 0x5c37, 0x5c3b, 0x14d1,\n  0x5d0a, 0x14ef, 0x14f0, 0x14f1, 0x5dfe, 0x5e20, 0x151d, 0x5e0b,\n  0x151f, 0x5e18, 0x5e22, 0x151e, 0x5e1b, 0x5e08, 0x1520, 0x5e0e,\n  0x5e13, 0x158e, 0x1591, 0x6195, 0x83dd, 0x1590, 0x15d7, 0x628c,\n  0x627b, 0x627f, 0x6281, 0x15d9, 0x6282, 0x15f4, 0x15f6, 0x0160,\n  0x15f5, 0x15f3, 0x62ee, 0x62ed, 0x160c, 0x62ec,\n  /* 0x40 */\n  0x635f, 0x636f, 0x1651, 0x636d, 0x16a6, 0x16a7, 0x16a8, 0x1727,\n  0x1724, 0x1725, 0x64f0, 0x172a, 0x1774, 0x17c7, 0x66a9, 0x17e7,\n  0x17ed, 0x66e0, 0x1ab7, 0x002e, 0x007b, 0x1ccc, 0x1cbc, 0x007c,\n  0x1caa, 0x1cb9, 0x007d, 0x1cab, 0x1cc3, 0x1ccd, 0x1d7e, 0x1e7e,\n  0x1e79, 0x00fd, 0x8523, 0x1ee1, 0x1ee0, 0x1ee7, 0x1f80, 0x1fab,\n  0x1faa, 0x1fa9, 0x1fe0, 0x21ea, 0x01da, 0x21d7, 0x01d6, 0x01db,\n  0x21c1, 0x2315, 0x025b, 0x246c, 0x025c, 0x245c, 0x2450, 0x2461,\n  0x246a, 0x2469, 0x2456, 0x2460, 0x2466, 0x245f, 0x2523, 0x2566,\n  0x2568, 0x0306, 0x030b, 0x26ce, 0x030d, 0x26c5, 0x26c3, 0x030a,\n  0x0313, 0x26d0, 0x0310, 0x0312, 0x0309, 0x0308, 0x0311, 0x030f,\n  0x2774, 0x2776, 0x27dc, 0x27d7, 0x27da, 0x27db, 0x0367, 0x2820,\n  0x296d, 0x2966, 0x03f6, 0x2964, 0x296e, 0x857e,\n  /* 0x41 */\n  0x2960, 0x2b42, 0x2b5a, 0x2b6e, 0x0564, 0x056c, 0x2d30, 0x2d3a,\n  0x2d2a, 0x2d43, 0x2d19, 0x2d31, 0x056d, 0x2d3d, 0x057a, 0x0575,\n  0x060d, 0x3008, 0x3032, 0x3038, 0x061e, 0x3031, 0x061b, 0x3019,\n  0x062a, 0x3011, 0x061f, 0x0622, 0x3029, 0x301d, 0x0625, 0x0627,\n  0x0629, 0x303c, 0x0624, 0x3046, 0x3047, 0x0628, 0x0626, 0x303a,\n  0x3007, 0x0623, 0x316b, 0x069f, 0x3170, 0x316d, 0x06b1, 0x31e4,\n  0x3293, 0x0703, 0x0707, 0x070c, 0x0706, 0x328f, 0x0704, 0x0709,\n  0x3292, 0x0705, 0x328e, 0x0708, 0x3546, 0x0796, 0x079c, 0x079f,\n  0x079b, 0x0798, 0x0799, 0x0794, 0x3531, 0x078d, 0x07a3, 0x353e,\n  0x0793, 0x357c, 0x3543, 0x0792, 0x3573, 0x85e8, 0x3555, 0x078e,\n  0x078c, 0x3585, 0x354d, 0x3550, 0x3547, 0x3567, 0x3536, 0x3564,\n  0x3561, 0x079a, 0x357d, 0x3744, 0x3740, 0x3771,\n  /* 0x42 */\n  0x3773, 0x379c, 0x086a, 0x086d, 0x0884, 0x37c1, 0x08a0, 0x37fa,\n  0x3831, 0x3832, 0x091d, 0x0926, 0x3ab8, 0x3aa8, 0x0933, 0x3a91,\n  0x3abb, 0x0938, 0x3a9a, 0x0930, 0x0928, 0x3aa9, 0x0927, 0x092a,\n  0x3ab5, 0x3a6c, 0x3ae8, 0x0931, 0x3add, 0x3ada, 0x3ae6, 0x3aac,\n  0x0934, 0x092e, 0x093b, 0x3ad9, 0x3ae3, 0x3ae9, 0x3adb, 0x0929,\n  0x3d6f, 0x09d2, 0x09d8, 0x3d48, 0x09cf, 0x3d4a, 0x3d6b, 0x09d9,\n  0x3d4f, 0x3d57, 0x3d74, 0x09ce, 0x09d3, 0x09d0, 0x3d45, 0x3d51,\n  0x3d6d, 0x07a1, 0x3e51, 0x3e50, 0x3e4e, 0x0a47, 0x3f41, 0x0a8b,\n  0x3f2e, 0x3f46, 0x0ad4, 0x4027, 0x0ade, 0x4048, 0x4053, 0x403d,\n  0x0adf, 0x405d, 0x4056, 0x0ad7, 0x401e, 0x4047, 0x4043, 0x4058,\n  0x4049, 0x0ae1, 0x404c, 0x4045, 0x403e, 0x0b2f, 0x4101, 0x411e,\n  0x0b62, 0x0b63, 0x417a, 0x41ee, 0x4202, 0x4297,\n  /* 0x43 */\n  0x4298, 0x0be2, 0x0c04, 0x0c43, 0x435d, 0x4364, 0x4353, 0x4358,\n  0x4482, 0x4490, 0x448a, 0x0cbe, 0x447a, 0x447d, 0x0cba, 0x448b,\n  0x4478, 0x0cbc, 0x864e, 0x448d, 0x4488, 0x4492, 0x4481, 0x457e,\n  0x4583, 0x0d0d, 0x0d0e, 0x0d11, 0x4580, 0x0d0f, 0x0d12, 0x0d55,\n  0x460f, 0x0d59, 0x0d5b, 0x461d, 0x0d57, 0x46a1, 0x46a4, 0x0dce,\n  0x46e9, 0x46ea, 0x0dfe, 0x4762, 0x476b, 0x0dfc, 0x475e, 0x0df5,\n  0x4779, 0x0df9, 0x0dfa, 0x476f, 0x4768, 0x0e88, 0x0e89, 0x48ae,\n  0x0e8a, 0x0e87, 0x0e8b, 0x48b0, 0x0ee6, 0x4990, 0x0eed, 0x498a,\n  0x0ee5, 0x498b, 0x4999, 0x4995, 0x0ee0, 0x4987, 0x4978, 0x4997,\n  0x4989, 0x4998, 0x0ee1, 0x0f5b, 0x0f5c, 0x4ba3, 0x0f8f, 0x0f8b,\n  0x0f8d, 0x4bdd, 0x4c57, 0x0fb9, 0x4d63, 0x4d6a, 0x4d6c, 0x100f,\n  0x1019, 0x1013, 0x4d5d, 0x4d75, 0x1018, 0x4d5f,\n  /* 0x44 */\n  0x1016, 0x4d7d, 0x4d6d, 0x1053, 0x868d, 0x4e41, 0x504f, 0x5084,\n  0x10f6, 0x507f, 0x10f5, 0x5048, 0x502a, 0x507b, 0x5072, 0x5064,\n  0x502e, 0x505c, 0x5053, 0x10f7, 0x5041, 0x50c8, 0x10f0, 0x5062,\n  0x5080, 0x503e, 0x5083, 0x5071, 0x10f9, 0x504a, 0x5055, 0x5058,\n  0x1192, 0x1195, 0x1196, 0x52fc, 0x52fd, 0x5315, 0x11b9, 0x5316,\n  0x52ff, 0x11bd, 0x11b8, 0x1212, 0x5458, 0x54cf, 0x54e0, 0x1280,\n  0x1281, 0x129a, 0x1298, 0x55e7, 0x566a, 0x5680, 0x12d4, 0x566f,\n  0x5665, 0x12da, 0x5678, 0x567d, 0x5688, 0x12d6, 0x12db, 0x5664,\n  0x567e, 0x12dc, 0x5667, 0x5863, 0x5888, 0x1371, 0x58cd, 0x1372,\n  0x58c9, 0x13a8, 0x59ed, 0x13f0, 0x86db, 0x13f1, 0x13fd, 0x1438,\n  0x1437, 0x1439, 0x5ab1, 0x1455, 0x1453, 0x5b04, 0x5b9e, 0x5ba0,\n  0x5c43, 0x5c46, 0x5c48, 0x5c45, 0x5c40, 0x5c4c,\n  /* 0x45 */\n  0x14d5, 0x14bd, 0x5d0c, 0x5d13, 0x5d15, 0x14f5, 0x5d6b, 0x5d67,\n  0x5e5d, 0x5e55, 0x5e35, 0x1521, 0x5e59, 0x5e2f, 0x5e3c, 0x5e8f,\n  0x5e5c, 0x5e6a, 0x5e62, 0x5e5f, 0x5e6b, 0x5e6e, 0x5e3b, 0x5e44,\n  0x5e41, 0x619a, 0x1592, 0x6199, 0x15de, 0x15db, 0x15da, 0x628f,\n  0x15df, 0x6296, 0x15f9, 0x15f8, 0x15fa, 0x62f4, 0x62fc, 0x160e,\n  0x6355, 0x1643, 0x6379, 0x1656, 0x1653, 0x169e, 0x63ee, 0x63f5,\n  0x16a9, 0x640b, 0x16fa, 0x64f3, 0x1731, 0x1730, 0x64f7, 0x64ff,\n  0x64f5, 0x1732, 0x64ec, 0x64f1, 0x1729, 0x172e, 0x659a, 0x1776,\n  0x66e2, 0x673d, 0x675d, 0x68e8, 0x18a5, 0x68eb, 0x68ef, 0x68ee,\n  0x6a81, 0x6b14, 0x1cd0, 0x1cd9, 0x1cdc, 0x1cd8, 0x008c, 0x1ce1,\n  0x1ceb, 0x008b, 0x0089, 0x1cf4, 0x1ce2, 0x1cde, 0x008d, 0x0086,\n  0x00d7, 0x1df4, 0x0104, 0x0107, 0x0103, 0x1eed,\n  /* 0x46 */\n  0x1eea, 0x0122, 0x1f32, 0x0151, 0x1fae, 0x1fb0, 0x0161, 0x21fb,\n  0x2203, 0x220b, 0x01e9, 0x2207, 0x01e5, 0x21f8, 0x01e4, 0x2228,\n  0x221e, 0x01e3, 0x2218, 0x2211, 0x2251, 0x2205, 0x2317, 0x2492,\n  0x0265, 0x248c, 0x0263, 0x2478, 0x2484, 0x2473, 0x24ad, 0x2497,\n  0x2495, 0x2477, 0x2472, 0x2496, 0x248d, 0x2510, 0x028c, 0x256c,\n  0x031a, 0x26e7, 0x0315, 0x26e4, 0x0320, 0x0321, 0x26ef, 0x2226,\n  0x031c, 0x031b, 0x26f0, 0x297b, 0x03fe, 0x2983, 0x0404, 0x0401,\n  0x298b, 0x298c, 0x0400, 0x2978, 0x2a52, 0x046d, 0x0493, 0x2ad0,\n  0x2acf, 0x04a1, 0x2bb3, 0x2bb4, 0x0576, 0x0579, 0x0572, 0x2d7b,\n  0x0583, 0x2d6f, 0x2d81, 0x2d3c, 0x2d42, 0x2d38, 0x2d33, 0x85a6,\n  0x2d60, 0x2d69, 0x2d7d, 0x2d86, 0x2e2c, 0x2e28, 0x0638, 0x304c,\n  0x0630, 0x3057, 0x307c, 0x0634, 0x063a, 0x3055,\n  /* 0x47 */\n  0x3062, 0x3071, 0x306a, 0x3056, 0x303b, 0x3081, 0x0635, 0x304f,\n  0x307e, 0x3064, 0x063f, 0x0640, 0x0632, 0x0631, 0x0636, 0x3171,\n  0x7aba, 0x070f, 0x32a5, 0x329a, 0x329c, 0x0710, 0x32a6, 0x070d,\n  0x32a4, 0x358f, 0x35c5, 0x35c8, 0x3592, 0x35b2, 0x07a9, 0x07b4,\n  0x07ac, 0x35e3, 0x35c0, 0x35d6, 0x35d1, 0x359f, 0x35a2, 0x35d2,\n  0x07b8, 0x07ae, 0x7bf3, 0x35e1, 0x35d5, 0x359d, 0x07b3, 0x07ba,\n  0x3598, 0x083f, 0x3774, 0x37a1, 0x093c, 0x3af0, 0x3af3, 0x0942,\n  0x0940, 0x3b1b, 0x3b0c, 0x3b1d, 0x3b34, 0x3b28, 0x3b17, 0x093e,\n  0x3b44, 0x3b42, 0x3b04, 0x3b11, 0x3afa, 0x3b4a, 0x3d91, 0x3d8e,\n  0x09e1, 0x3d8b, 0x3d8d, 0x3d7f, 0x3d8c, 0x3d7e, 0x3d7c, 0x3d83,\n  0x09e6, 0x3d88, 0x09e0, 0x0a15, 0x3e94, 0x0a93, 0x3f55, 0x3f53,\n  0x3f4f, 0x3f54, 0x406c, 0x4065, 0x4066, 0x4061,\n  /* 0x48 */\n  0x406b, 0x4068, 0x4076, 0x0ae7, 0x4060, 0x7e0f, 0x4074, 0x4106,\n  0x420e, 0x0bad, 0x4207, 0x0bae, 0x0be3, 0x42b9, 0x0bf5, 0x42b7,\n  0x42e2, 0x0c06, 0x4374, 0x4377, 0x4376, 0x4375, 0x0c4f, 0x4378,\n  0x4371, 0x0c54, 0x437a, 0x3d5b, 0x437b, 0x44a6, 0x44ae, 0x44b8,\n  0x0ccb, 0x0ce3, 0x0cc9, 0x44b1, 0x44af, 0x0d13, 0x4589, 0x4587,\n  0x0d15, 0x0d61, 0x4629, 0x0d66, 0x462a, 0x0d64, 0x462d, 0x462c,\n  0x0d60, 0x4632, 0x0d63, 0x46ec, 0x46f0, 0x4781, 0x479e, 0x4783,\n  0x0e0a, 0x4792, 0x0e04, 0x47a3, 0x479f, 0x4793, 0x0e07, 0x4786,\n  0x48b8, 0x48b7, 0x0e8d, 0x0e8f, 0x0e90, 0x0e92, 0x0eec, 0x49c8,\n  0x49b6, 0x866c, 0x49d1, 0x0ee7, 0x49a8, 0x49ab, 0x0ef2, 0x49b3,\n  0x49cd, 0x0eee, 0x49cf, 0x49a4, 0x0eef, 0x0f4c, 0x4b41, 0x4b6f,\n  0x4b71, 0x0f5e, 0x0f5f, 0x0f76, 0x0f74, 0x0f72,\n  /* 0x49 */\n  0x0f90, 0x4c23, 0x4c5b, 0x0fbe, 0x4c61, 0x4c5f, 0x4d81, 0x1026,\n  0x1025, 0x4d84, 0x4e13, 0x1074, 0x4e4a, 0x4e4c, 0x10fd, 0x1105,\n  0x1101, 0x50bd, 0x5095, 0x1109, 0x5092, 0x50c3, 0x110c, 0x5096,\n  0x50a5, 0x50b5, 0x50b3, 0x50a3, 0x50e4, 0x50d8, 0x50d5, 0x110d,\n  0x50b7, 0x50ad, 0x50da, 0x5093, 0x5336, 0x11c0, 0x11c5, 0x11c9,\n  0x533d, 0x532b, 0x5347, 0x5339, 0x11d5, 0x5345, 0x531d, 0x1241,\n  0x54ff, 0x54ea, 0x1233, 0x54f5, 0x123a, 0x5500, 0x54ed, 0x5503,\n  0x54e9, 0x1240, 0x1242, 0x55ea, 0x12e8, 0x569b, 0x568e, 0x56a2,\n  0x12e4, 0x569c, 0x5694, 0x5690, 0x56a9, 0x56ac, 0x12e7, 0x569f,\n  0x12e6, 0x12e1, 0x569d, 0x1339, 0x5867, 0x135c, 0x1375, 0x58d0,\n  0x58d6, 0x58d4, 0x5998, 0x599a, 0x5997, 0x13ae, 0x13b0, 0x13fa,\n  0x5a0b, 0x5a08, 0x5a01, 0x5ab4, 0x5ab3, 0x145b,\n  /* 0x4a */\n  0x5ba1, 0x5ba2, 0x14a5, 0x5c5a, 0x14a2, 0x5c61, 0x5c5f, 0x14db,\n  0x14da, 0x5d25, 0x5d7b, 0x5d76, 0x5d7c, 0x1524, 0x5e89, 0x5ef6,\n  0x5eb1, 0x5ead, 0x5e92, 0x5e81, 0x5e84, 0x1526, 0x5eae, 0x5e90,\n  0x5e9e, 0x1598, 0x1596, 0x159a, 0x61a2, 0x61a7, 0x1597, 0x15e1,\n  0x15e0, 0x15e3, 0x15e2, 0x62a0, 0x629d, 0x629f, 0x62d0, 0x15fb,\n  0x62d1, 0x1612, 0x1614, 0x6359, 0x1645, 0x6364, 0x165c, 0x165d,\n  0x16b8, 0x6419, 0x16ba, 0x6414, 0x6415, 0x641a, 0x1703, 0x1735,\n  0x1736, 0x1739, 0x6506, 0x172d, 0x64f8, 0x6501, 0x177a, 0x65be,\n  0x65bc, 0x65b7, 0x65b6, 0x65c0, 0x1778, 0x65b8, 0x177b, 0x177c,\n  0x177e, 0x65c4, 0x177d, 0x65bf, 0x17c9, 0x66da, 0x66e4, 0x66e9,\n  0x66e8, 0x66ea, 0x66e5, 0x17f3, 0x6726, 0x181a, 0x1819, 0x6740,\n  0x181f, 0x18a6, 0x18a7, 0x18a8, 0x18ab, 0x18a9,\n  /* 0x4b */\n  0x192e, 0x6abd, 0x195e, 0x0095, 0x0093, 0x0092, 0x1d0e, 0x0096,\n  0x1cf7, 0x0097, 0x1cfc, 0x1d0d, 0x1d01, 0x1dda, 0x1dd9, 0x1ddb,\n  0x1e86, 0x1e8e, 0x1eee, 0x1f33, 0x1fb1, 0x01f5, 0x2247, 0x222d,\n  0x2254, 0x01ea, 0x224b, 0x2252, 0x2231, 0x2244, 0x2256, 0x2250,\n  0x222b, 0x01f3, 0x224d, 0x2237, 0x224f, 0x24a2, 0x24b7, 0x0269,\n  0x24b2, 0x026b, 0x24aa, 0x24b5, 0x24b0, 0x026c, 0x24b4, 0x24a4,\n  0x24a7, 0x0268, 0x2526, 0x26fe, 0x0328, 0x2704, 0x0326, 0x26fc,\n  0x0325, 0x2706, 0x270a, 0x26fa, 0x270d, 0x2700, 0x270e, 0x036b,\n  0x040f, 0x0408, 0x2991, 0x040c, 0x298f, 0x2990, 0x2998, 0x29a4,\n  0x299b, 0x29a3, 0x2996, 0x29e4, 0x2a5a, 0x0460, 0x0462, 0x2a5e,\n  0x0498, 0x2bb8, 0x2d57, 0x2d5c, 0x2da6, 0x2d95, 0x2d88, 0x058a,\n  0x2da3, 0x2d8f, 0x0584, 0x2d64, 0x057f, 0x2d59,\n  /* 0x4c */\n  0x2d78, 0x0582, 0x2d85, 0x2d87, 0x2d9e, 0x0596, 0x0589, 0x2d98,\n  0x2d9c, 0x058d, 0x05bc, 0x2e2f, 0x3080, 0x309b, 0x308e, 0x308d,\n  0x3094, 0x30c6, 0x0644, 0x30a8, 0x3083, 0x063c, 0x30b9, 0x3086,\n  0x30b4, 0x30af, 0x3091, 0x064e, 0x30aa, 0x30a1, 0x30a7, 0x32b6,\n  0x32b3, 0x0714, 0x32bc, 0x32ac, 0x0715, 0x32ad, 0x360e, 0x07ce,\n  0x361c, 0x361a, 0x07e0, 0x07c2, 0x360b, 0x07bf, 0x35ef, 0x360c,\n  0x35f0, 0x3622, 0x07c4, 0x35d8, 0x07cf, 0x3612, 0x35fa, 0x07c8,\n  0x362a, 0x07cc, 0x3610, 0x07cd, 0x07c7, 0x3629, 0x35f9, 0x35ea,\n  0x362c, 0x3624, 0x18b7, 0x35e9, 0x3752, 0x374f, 0x3753, 0x0843,\n  0x08b6, 0x3b10, 0x3b65, 0x3b75, 0x0951, 0x094a, 0x094d, 0x0956,\n  0x3bd0, 0x0953, 0x3b5c, 0x3b3d, 0x3b71, 0x0959, 0x3b91, 0x3b0b,\n  0x3b79, 0x3b81, 0x3b8f, 0x094e, 0x3b59, 0x3b74,\n  /* 0x4d */\n  0x09ee, 0x3dae, 0x09ec, 0x3da3, 0x3dad, 0x09eb, 0x09ef, 0x3dab,\n  0x3da6, 0x3da2, 0x09ed, 0x1ef2, 0x3e57, 0x3e55, 0x3e99, 0x3f4b,\n  0x407a, 0x0af2, 0x0aef, 0x0af1, 0x408c, 0x4084, 0x0aed, 0x0af0,\n  0x4082, 0x4093, 0x407b, 0x0aee, 0x4109, 0x181b, 0x0b50, 0x0b66,\n  0x0284, 0x0bb8, 0x0bf6, 0x438a, 0x0c57, 0x4390, 0x0c5e, 0x44c6,\n  0x44d3, 0x44c0, 0x44d2, 0x44c7, 0x44c2, 0x0d19, 0x459f, 0x459d,\n  0x459e, 0x0d70, 0x4641, 0x0d6e, 0x4638, 0x463a, 0x4642, 0x0d72,\n  0x0d76, 0x463e, 0x46b0, 0x47ae, 0x47b3, 0x0e12, 0x0e1f, 0x47bf,\n  0x0e11, 0x0e16, 0x47cd, 0x0e19, 0x47b2, 0x0e24, 0x0e14, 0x0e25,\n  0x0e95, 0x0e96, 0x0e93, 0x0e94, 0x48c4, 0x48cd, 0x48c2, 0x48c6,\n  0x48c3, 0x48c9, 0x48c7, 0x0ea0, 0x49f8, 0x0efb, 0x49ed, 0x49e2,\n  0x0efc, 0x0f00, 0x0ef8, 0x49dc, 0x4a02, 0x4a01,\n  /* 0x4e */\n  0x0ef9, 0x49d6, 0x0f04, 0x49e4, 0x49fe, 0x0f03, 0x4a00, 0x49fc,\n  0x49fd, 0x0ef3, 0x49f5, 0x49ff, 0x0efa, 0x49eb, 0x49e5, 0x4b78,\n  0x4bae, 0x4be7, 0x0fbf, 0x4c65, 0x4c6a, 0x4c66, 0x4c68, 0x4c6b,\n  0x4d94, 0x4da1, 0x4d92, 0x4d96, 0x4d93, 0x1079, 0x1110, 0x5101,\n  0x1114, 0x50f8, 0x110e, 0x50f5, 0x111a, 0x5104, 0x1119, 0x1121,\n  0x1123, 0x111f, 0x511b, 0x5103, 0x5133, 0x5134, 0x50ed, 0x1125,\n  0x112b, 0x5135, 0x1116, 0x5105, 0x1122, 0x111b, 0x11ce, 0x11cf,\n  0x537d, 0x11cb, 0x11d1, 0x11cc, 0x5371, 0x1217, 0x545c, 0x54e6,\n  0x550f, 0x551b, 0x1251, 0x55a9, 0x55a5, 0x55ee, 0x56b1, 0x12ed,\n  0x56cc, 0x56ce, 0x12f4, 0x56b7, 0x12f1, 0x56b5, 0x56e9, 0x56b4,\n  0x12f8, 0x56b3, 0x56c1, 0x56af, 0x56ca, 0x56d0, 0x132f, 0x135e,\n  0x135d, 0x588e, 0x1376, 0x1377, 0x58e9, 0x58db,\n  /* 0x4f */\n  0x137e, 0x58eb, 0x59a4, 0x13b6, 0x59a2, 0x599d, 0x13b3, 0x13fc,\n  0x1403, 0x1400, 0x5a2a, 0x5a28, 0x140a, 0x1402, 0x5ab8, 0x5ab6,\n  0x5ab9, 0x5ab7, 0x5b22, 0x5b2b, 0x5b27, 0x5b19, 0x5ba4, 0x1487,\n  0x5bb3, 0x14a6, 0x5c71, 0x5c6a, 0x14a9, 0x14de, 0x5d88, 0x5d8c,\n  0x5ebf, 0x5eb8, 0x5ebe, 0x5edc, 0x5ee5, 0x152e, 0x152d, 0x5ed4,\n  0x5ed6, 0x1530, 0x5eda, 0x5eed, 0x5ef3, 0x5edb, 0x152b, 0x5eb9,\n  0x5ee2, 0x5eeb, 0x61af, 0x159e, 0x61b2, 0x61b3, 0x159f, 0x15e5,\n  0x15e4, 0x62a3, 0x62a5, 0x15fd, 0x15fc, 0x1617, 0x1619, 0x630a,\n  0x1618, 0x6387, 0x6389, 0x638c, 0x63ef, 0x642a, 0x6422, 0x16bf,\n  0x641f, 0x173c, 0x6519, 0x176b, 0x65ca, 0x65da, 0x1783, 0x1781,\n  0x1780, 0x65de, 0x65c8, 0x65e0, 0x17ca, 0x66b6, 0x66b5, 0x17ce,\n  0x66f4, 0x17f6, 0x676b, 0x6769, 0x6772, 0x6763,\n  /* 0x50 */\n  0x1839, 0x690d, 0x18ae, 0x6901, 0x690c, 0x18b5, 0x68f8, 0x18b3,\n  0x18b4, 0x68fe, 0x6902, 0x6a84, 0x1922, 0x6aab, 0x6aaa, 0x1d1d,\n  0x1d16, 0x0099, 0x1d2b, 0x1d1e, 0x1d1b, 0x1e90, 0x1e94, 0x1f14,\n  0x7289, 0x0202, 0x2267, 0x0201, 0x227b, 0x02a1, 0x225f, 0x2261,\n  0x01fd, 0x0273, 0x0274, 0x0270, 0x0276, 0x0275, 0x0272, 0x24c3,\n  0x24ca, 0x24bb, 0x24c0, 0x24c4, 0x2501, 0x271f, 0x2718, 0x2711,\n  0x2715, 0x0329, 0x2712, 0x271c, 0x032a, 0x2722, 0x2779, 0x29a6,\n  0x0416, 0x29b3, 0x29ab, 0x2aea, 0x0499, 0x2b5b, 0x04d3, 0x04f5,\n  0x2db7, 0x2dce, 0x2db9, 0x2dbd, 0x2dcf, 0x2dc0, 0x2d99, 0x2d97,\n  0x0594, 0x2dbb, 0x2dd0, 0x2dc4, 0x2e31, 0x0656, 0x30d3, 0x30c0,\n  0x0659, 0x0658, 0x0655, 0x0652, 0x30dc, 0x30d1, 0x30c8, 0x0657,\n  0x30d5, 0x32c3, 0x071b, 0x071c, 0x32bf, 0x32c5,\n  /* 0x51 */\n  0x0719, 0x32cd, 0x32c1, 0x3306, 0x073f, 0x3324, 0x3663, 0x3642,\n  0x3652, 0x07db, 0x3643, 0x3633, 0x07e2, 0x366c, 0x3657, 0x07d7,\n  0x364c, 0x366e, 0x07de, 0x07e5, 0x07e4, 0x07e6, 0x07d6, 0x3637,\n  0x07df, 0x3671, 0x364a, 0x3636, 0x07dc, 0x3653, 0x07da, 0x3645,\n  0x3670, 0x07d3, 0x07d0, 0x365c, 0x3758, 0x3757, 0x0886, 0x0887,\n  0x08ad, 0x08b7, 0x0958, 0x096a, 0x3bbb, 0x0962, 0x0961, 0x3bbe,\n  0x0969, 0x096c, 0x0965, 0x3bb5, 0x3bd3, 0x3b9f, 0x0966, 0x3bb7,\n  0x3bf5, 0x3db7, 0x09f5, 0x3dbb, 0x09f4, 0x3dd1, 0x09f7, 0x3dba,\n  0x09f8, 0x3db6, 0x3dcc, 0x09fb, 0x09fc, 0x3dd3, 0x409b, 0x0af5,\n  0x0af8, 0x4096, 0x40a2, 0x409d, 0x410a, 0x410e, 0x0b3c, 0x4181,\n  0x422c, 0x4237, 0x4236, 0x423b, 0x0bc5, 0x42a1, 0x0c62, 0x0c63,\n  0x4398, 0x0c67, 0x4396, 0x0c66, 0x0cd9, 0x0cdb,\n  /* 0x52 */\n  0x44d6, 0x44eb, 0x0cd8, 0x44dc, 0x0d1b, 0x45a5, 0x45a9, 0x6434,\n  0x4653, 0x4645, 0x0d79, 0x464f, 0x0d7d, 0x46bd, 0x46bb, 0x46f1,\n  0x0e2c, 0x0e37, 0x47ec, 0x47ed, 0x0e30, 0x0e9a, 0x48d3, 0x1600,\n  0x48e1, 0x0f05, 0x4a19, 0x0f07, 0x0f09, 0x0f0a, 0x4a27, 0x4a26,\n  0x0f79, 0x0fc2, 0x4c6e, 0x4daf, 0x1038, 0x1037, 0x4dad, 0x1021,\n  0x4daa, 0x4e18, 0x105e, 0x113d, 0x1137, 0x1140, 0x516f, 0x514c,\n  0x111d, 0x5142, 0x1133, 0x515c, 0x5170, 0x515f, 0x1135, 0x515a,\n  0x514b, 0x513f, 0x538a, 0x11d8, 0x538b, 0x53a1, 0x538e, 0x11dc,\n  0x11de, 0x5399, 0x545e, 0x545f, 0x5524, 0x55a7, 0x56ea, 0x56fd,\n  0x56f9, 0x56e3, 0x56e5, 0x12fa, 0x12fb, 0x56ec, 0x133d, 0x133b,\n  0x133f, 0x135f, 0x58f2, 0x137f, 0x58ef, 0x1384, 0x59a6, 0x13bc,\n  0x1414, 0x140f, 0x5a3b, 0x5a43, 0x140e, 0x5a32,\n  /* 0x53 */\n  0x5b31, 0x5b30, 0x1460, 0x5b2d, 0x5b3c, 0x5ba7, 0x5ba5, 0x14ab,\n  0x14ac, 0x14aa, 0x5d37, 0x5d95, 0x5d8e, 0x1504, 0x5d96, 0x1508,\n  0x5f45, 0x5f0a, 0x1533, 0x1534, 0x5efd, 0x5f17, 0x5f1c, 0x5f07,\n  0x5f31, 0x5f32, 0x5f2c, 0x5f30, 0x5f03, 0x5f05, 0x15a2, 0x61c2,\n  0x15a4, 0x61b8, 0x15a5, 0x61c1, 0x15a7, 0x15a6, 0x15e7, 0x62ab,\n  0x62b7, 0x15ff, 0x15fe, 0x6315, 0x6314, 0x161d, 0x161c, 0x630c,\n  0x6317, 0x1667, 0x6393, 0x1694, 0x63d2, 0x16c5, 0x16c8, 0x6436,\n  0x6431, 0x6433, 0x643c, 0x642e, 0x643a, 0x16c9, 0x643d, 0x16c7,\n  0x64b5, 0x6522, 0x6523, 0x6520, 0x651c, 0x651d, 0x176c, 0x65a0,\n  0x178a, 0x65ef, 0x65e8, 0x65eb, 0x1788, 0x1787, 0x1786, 0x65e1,\n  0x65e6, 0x17cf, 0x17d0, 0x66f8, 0x66f5, 0x181c, 0x1823, 0x6783,\n  0x6794, 0x6784, 0x1849, 0x678b, 0x678f, 0x1843,\n  /* 0x54 */\n  0x678c, 0x1848, 0x6789, 0x1847, 0x678e, 0x1846, 0x183f, 0x1844,\n  0x6924, 0x690f, 0x18be, 0x6913, 0x690a, 0x18c2, 0x18ba, 0x18bc,\n  0x18c6, 0x692a, 0x691a, 0x18c8, 0x6927, 0x6916, 0x6921, 0x1923,\n  0x6a85, 0x6aac, 0x6ac6, 0x6ac5, 0x6ad7, 0x6b53, 0x009d, 0x1d28,\n  0x1d27, 0x1ddf, 0x0124, 0x1f35, 0x1fb3, 0x0207, 0x228a, 0x227d,\n  0x2289, 0x0279, 0x24cd, 0x24d0, 0x0278, 0x272b, 0x2733, 0x2729,\n  0x2735, 0x2731, 0x2737, 0x2836, 0x29be, 0x0419, 0x29b9, 0x041c,\n  0x29bb, 0x0418, 0x2de2, 0x2ddb, 0x2ddd, 0x2ddc, 0x2dda, 0x85af,\n  0x2dd9, 0x05bd, 0x065d, 0x30df, 0x065a, 0x065e, 0x30e1, 0x065c,\n  0x30ee, 0x065b, 0x31b5, 0x32d4, 0x32d5, 0x0721, 0x32d0, 0x32d1,\n  0x32ce, 0x32d7, 0x0720, 0x0732, 0x367d, 0x368a, 0x07f2, 0x36a7,\n  0x07f5, 0x3699, 0x3682, 0x3688, 0x07ee, 0x07ec,\n  /* 0x55 */\n  0x3686, 0x07ea, 0x3698, 0x369d, 0x07ed, 0x07f3, 0x368f, 0x07f6,\n  0x36aa, 0x0848, 0x375d, 0x0849, 0x380a, 0x0975, 0x3bd7, 0x3bd6,\n  0x3be5, 0x096f, 0x097b, 0x0973, 0x3bd9, 0x3bda, 0x3bea, 0x0970,\n  0x3bf6, 0x7d39, 0x0978, 0x3de3, 0x09fe, 0x3de9, 0x0a00, 0x3deb,\n  0x3def, 0x3df3, 0x3dea, 0x0a01, 0x8621, 0x0a55, 0x0a56, 0x0a9d,\n  0x3f71, 0x0af9, 0x40ae, 0x0aff, 0x40b3, 0x0afd, 0x40ac, 0x0b43,\n  0x0b41, 0x4183, 0x4245, 0x424e, 0x4244, 0x42a3, 0x42a5, 0x43a6,\n  0x43a4, 0x0c6f, 0x43a9, 0x43af, 0x0c8a, 0x0ce5, 0x0ce6, 0x44f0,\n  0x44f8, 0x44f1, 0x0d7f, 0x4649, 0x0db5, 0x0db6, 0x0dbb, 0x46c2,\n  0x46f2, 0x46f3, 0x47fa, 0x0e40, 0x47f6, 0x47fc, 0x4818, 0x4808,\n  0x4812, 0x0e9d, 0x0e9c, 0x48db, 0x48da, 0x0f0f, 0x0f11, 0x0f0d,\n  0x4a2c, 0x4a4d, 0x0f14, 0x0f13, 0x4b46, 0x4bf6,\n  /* 0x56 */\n  0x4c2b, 0x4c74, 0x4db8, 0x4dc8, 0x1082, 0x1083, 0x114d, 0x5192,\n  0x5193, 0x114f, 0x517f, 0x51ab, 0x5197, 0x114c, 0x1151, 0x51ac,\n  0x11ee, 0x11e8, 0x18cb, 0x53ce, 0x11eb, 0x53cd, 0x11e2, 0x11e6,\n  0x53c1, 0x53b1, 0x53c7, 0x11ec, 0x5540, 0x1259, 0x553f, 0x5539,\n  0x125d, 0x5543, 0x1257, 0x125b, 0x1256, 0x55ab, 0x12fe, 0x571f,\n  0x5709, 0x570c, 0x1300, 0x1301, 0x5840, 0x1342, 0x5896, 0x1360,\n  0x58f6, 0x58f7, 0x141d, 0x5a46, 0x5a4f, 0x143e, 0x1469, 0x1465,\n  0x5b3d, 0x5b41, 0x5f66, 0x5f78, 0x5f5d, 0x5f69, 0x5f74, 0x5f7d,\n  0x5f6e, 0x5f72, 0x5f73, 0x5f62, 0x5f48, 0x5f53, 0x5f5f, 0x5f68,\n  0x1538, 0x5f7f, 0x5f6b, 0x15ae, 0x61c4, 0x15ad, 0x62af, 0x62ad,\n  0x62b2, 0x1602, 0x161f, 0x631a, 0x631b, 0x1622, 0x1620, 0x86f5,\n  0x166c, 0x639b, 0x639f, 0x1668, 0x166d, 0x166e,\n  /* 0x57 */\n  0x16a0, 0x16ce, 0x16d0, 0x16d1, 0x16cb, 0x6440, 0x16d2, 0x6447,\n  0x16d3, 0x64b7, 0x1720, 0x174e, 0x174b, 0x1772, 0x1770, 0x65a2,\n  0x1792, 0x178f, 0x6600, 0x65f3, 0x1790, 0x8437, 0x65f5, 0x17d9,\n  0x17d5, 0x66bd, 0x6700, 0x6702, 0x17fa, 0x6734, 0x6749, 0x679f,\n  0x184b, 0x67a3, 0x67cd, 0x6799, 0x679d, 0x18d0, 0x18ce, 0x6939,\n  0x18cf, 0x6944, 0x18c4, 0x18cc, 0x6935, 0x18d2, 0x1935, 0x6aaf,\n  0x0a03, 0x1d2f, 0x009e, 0x00af, 0x6b8e, 0x020c, 0x229f, 0x229b,\n  0x229e, 0x2296, 0x2294, 0x22a0, 0x027c, 0x273b, 0x0330, 0x0331,\n  0x273a, 0x29c1, 0x2b4d, 0x2b5d, 0x2df3, 0x05a1, 0x059e, 0x0668,\n  0x0661, 0x30f6, 0x30e5, 0x30ea, 0x30e7, 0x3105, 0x0665, 0x30f9,\n  0x0666, 0x066a, 0x06ab, 0x36ab, 0x36ed, 0x36b2, 0x36b0, 0x36b5,\n  0x36be, 0x36c1, 0x36c8, 0x07f9, 0x36c0, 0x36bc,\n  /* 0x58 */\n  0x36b1, 0x36c4, 0x36bf, 0x0858, 0x088a, 0x3c08, 0x3c03, 0x3bfd,\n  0x3c10, 0x3c02, 0x3c13, 0x0a04, 0x3dfa, 0x3e00, 0x40b9, 0x40bc,\n  0x0b02, 0x425b, 0x4251, 0x424f, 0x42eb, 0x43b8, 0x0c79, 0x43b9,\n  0x43c1, 0x43c0, 0x43be, 0x450b, 0x0ceb, 0x4507, 0x450a, 0x4508,\n  0x0ce9, 0x450d, 0x4506, 0x4515, 0x45af, 0x0d20, 0x0d21, 0x0d81,\n  0x46f5, 0x0e4d, 0x0e59, 0x482e, 0x0e58, 0x481b, 0x81d1, 0x481a,\n  0x4824, 0x0ea5, 0x0ea9, 0x48e6, 0x48e3, 0x0f1a, 0x0f19, 0x4a5d,\n  0x4a4f, 0x4a66, 0x4a5b, 0x4b47, 0x4bb4, 0x0f96, 0x0f98, 0x0f97,\n  0x4bfa, 0x4c2e, 0x82df, 0x0fc8, 0x4dce, 0x1043, 0x1045, 0x4e19,\n  0x1152, 0x1157, 0x51cc, 0x51b2, 0x1155, 0x51bb, 0x51c1, 0x1156,\n  0x1158, 0x11f2, 0x53e9, 0x53ee, 0x53f0, 0x53d6, 0x540e, 0x53da,\n  0x5548, 0x554a, 0x554e, 0x554d, 0x55b1, 0x55b0,\n  /* 0x59 */\n  0x55b3, 0x1307, 0x5738, 0x5732, 0x1308, 0x572d, 0x130a, 0x5734,\n  0x0f1b, 0x5729, 0x5874, 0x1361, 0x1362, 0x5903, 0x13c2, 0x13c6,\n  0x59a9, 0x5a58, 0x141e, 0x1425, 0x5abf, 0x5ac1, 0x5b4a, 0x5bac,\n  0x14b0, 0x5c89, 0x5d3d, 0x5d3c, 0x5da9, 0x5fa0, 0x153d, 0x5f90,\n  0x153e, 0x5f93, 0x5f8b, 0x5fad, 0x5fbb, 0x5fb8, 0x1546, 0x1545,\n  0x5f9c, 0x61d8, 0x61d7, 0x1603, 0x1626, 0x1627, 0x635d, 0x63a9,\n  0x63da, 0x1698, 0x16ad, 0x16d5, 0x16da, 0x6454, 0x16d9, 0x6455,\n  0x644b, 0x16dd, 0x643f, 0x64b9, 0x1715, 0x1716, 0x1717, 0x1721,\n  0x6538, 0x6536, 0x6540, 0x174c, 0x653b, 0x6539, 0x65a4, 0x1796,\n  0x1798, 0x6608, 0x660c, 0x179b, 0x6610, 0x17ff, 0x6707, 0x1825,\n  0x67d2, 0x184f, 0x67c2, 0x67bb, 0x67cc, 0x67cb, 0x1856, 0x1854,\n  0x694d, 0x6963, 0x694e, 0x18d8, 0x6950, 0x6955,\n  /* 0x5a */\n  0x18d7, 0x695e, 0x1926, 0x6a90, 0x6ab2, 0x6ab1, 0x1938, 0x6aca,\n  0x6b02, 0x6b27, 0x6b26, 0x198a, 0x22af, 0x24e0, 0x24dc, 0x0334,\n  0x2739, 0x0335, 0x856a, 0x277c, 0x27f3, 0x8570, 0x03a1, 0x286b,\n  0x29c4, 0x310b, 0x3108, 0x310a, 0x066c, 0x066d, 0x31dc, 0x0729,\n  0x072a, 0x32e1, 0x32df, 0x36ce, 0x36d4, 0x36e3, 0x36d7, 0x36e2,\n  0x0800, 0x0808, 0x0806, 0x0805, 0x36d8, 0x36d5, 0x36d2, 0x08b1,\n  0x0988, 0x3c1e, 0x3c2c, 0x3c25, 0x3bf3, 0x3e04, 0x3e08, 0x3e15,\n  0x0a09, 0x40c4, 0x40c9, 0x40c7, 0x40c8, 0x42a9, 0x43c6, 0x43c5,\n  0x4518, 0x451a, 0x4520, 0x0d22, 0x4666, 0x4664, 0x466a, 0x0dd5,\n  0x0e61, 0x0e5d, 0x0e62, 0x0e4f, 0x0e60, 0x4835, 0x4834, 0x0eaa,\n  0x0f22, 0x4a6c, 0x0f21, 0x4a6e, 0x4a71, 0x1046, 0x4dd4, 0x4dd6,\n  0x4e1a, 0x4e62, 0x4e65, 0x4e76, 0x51db, 0x51d6,\n  /* 0x5b */\n  0x1162, 0x51e7, 0x1160, 0x1164, 0x51f4, 0x86b6, 0x53fd, 0x53d5,\n  0x5407, 0x11f6, 0x540f, 0x53f8, 0x86c1, 0x1219, 0x5587, 0x1291,\n  0x55b5, 0x55f5, 0x130d, 0x573f, 0x5743, 0x574c, 0x1365, 0x590b,\n  0x5a6b, 0x5a68, 0x5a70, 0x5a75, 0x5a77, 0x143f, 0x5ac3, 0x154b,\n  0x5fe9, 0x5fea, 0x5fcb, 0x5fc5, 0x5fc6, 0x1548, 0x5fed, 0x5fd3,\n  0x1552, 0x5fe5, 0x154a, 0x1551, 0x5fdb, 0x5feb, 0x5fe0, 0x5fc1,\n  0x1550, 0x154c, 0x61dd, 0x15ee, 0x1604, 0x1606, 0x162d, 0x162e,\n  0x162f, 0x167b, 0x1678, 0x1677, 0x63b2, 0x63b4, 0x63b1, 0x63b5,\n  0x63f2, 0x16a2, 0x16a1, 0x16e3, 0x6456, 0x171a, 0x1719, 0x1757,\n  0x6544, 0x179e, 0x6626, 0x661f, 0x6618, 0x6621, 0x6617, 0x17dd,\n  0x6709, 0x1805, 0x1828, 0x67c5, 0x67df, 0x1860, 0x67e3, 0x1866,\n  0x67e9, 0x67ee, 0x1867, 0x1868, 0x6966, 0x697a,\n  /* 0x5c */\n  0x18de, 0x696e, 0x6991, 0x6983, 0x6976, 0x697e, 0x696d, 0x18e1,\n  0x6a95, 0x6ae3, 0x1969, 0x1977, 0x6b03, 0x6b04, 0x8719, 0x6b17,\n  0x00a6, 0x1d36, 0x00a5, 0x1f36, 0x0214, 0x2742, 0x0336, 0x0338,\n  0x2744, 0x2746, 0x277e, 0x29ca, 0x29c8, 0x29cc, 0x2af0, 0x0670,\n  0x3185, 0x32e5, 0x32e7, 0x072b, 0x0811, 0x080a, 0x36f4, 0x080d,\n  0x36e9, 0x0816, 0x0810, 0x0809, 0x080e, 0x087a, 0x3c3d, 0x098c,\n  0x3c36, 0x0991, 0x3e16, 0x0a0a, 0x3e12, 0x3e0f, 0x3e17, 0x3e11,\n  0x3e0b, 0x0a08, 0x0a0b, 0x40cd, 0x40d0, 0x40cc, 0x40ce, 0x40d1,\n  0x0b07, 0x4189, 0x0cf2, 0x466f, 0x484b, 0x4844, 0x4855, 0x0eae,\n  0x0f24, 0x0f26, 0x0f27, 0x4a7f, 0x5771, 0x0f99, 0x4c2f, 0x4c7a,\n  0x4c7b, 0x4c7c, 0x115f, 0x116a, 0x1171, 0x51fc, 0x5210, 0x5202,\n  0x116c, 0x116f, 0x51ee, 0x5203, 0x1168, 0x520d,\n  /* 0x5d */\n  0x5213, 0x5208, 0x520f, 0x5418, 0x5412, 0x1201, 0x1268, 0x5567,\n  0x5565, 0x55bb, 0x5769, 0x5762, 0x1313, 0x576e, 0x1316, 0x5761,\n  0x1318, 0x5764, 0x574d, 0x5851, 0x1389, 0x13c8, 0x5a83, 0x5ac6,\n  0x1484, 0x601f, 0x1554, 0x6004, 0x6017, 0x6008, 0x6005, 0x1556,\n  0x5ff3, 0x601e, 0x6002, 0x601a, 0x601b, 0x6027, 0x601c, 0x155a,\n  0x62b5, 0x1605, 0x1607, 0x6333, 0x1631, 0x6334, 0x6331, 0x63b8,\n  0x63ba, 0x16a3, 0x63fc, 0x16eb, 0x171c, 0x64c3, 0x175a, 0x654d,\n  0x175b, 0x662f, 0x17a6, 0x17aa, 0x17a5, 0x66c9, 0x17e1, 0x66c8,\n  0x66c4, 0x672a, 0x6738, 0x6750, 0x182a, 0x680a, 0x67fb, 0x6804,\n  0x67fc, 0x67fe, 0x1872, 0x186f, 0x1873, 0x6802, 0x67f6, 0x681b,\n  0x67f9, 0x6815, 0x6810, 0x67ff, 0x6800, 0x680c, 0x186b, 0x18e6,\n  0x6995, 0x69a5, 0x18e9, 0x18ec, 0x18e8, 0x18f0,\n  /* 0x5e */\n  0x6a98, 0x6ac1, 0x198c, 0x6b5a, 0x1d64, 0x22bb, 0x0215, 0x24e6,\n  0x2749, 0x27f7, 0x0371, 0x0426, 0x29d0, 0x04c6, 0x2bc2, 0x05a8,\n  0x3111, 0x0673, 0x36ff, 0x36fe, 0x36fd, 0x0815, 0x3701, 0x0998,\n  0x0997, 0x3c4b, 0x3c4d, 0x3c47, 0x40d3, 0x4268, 0x4267, 0x0bd7,\n  0x0c80, 0x43d1, 0x4530, 0x4532, 0x452e, 0x0d88, 0x6b9d, 0x46c9,\n  0x46c8, 0x0e69, 0x4856, 0x4851, 0x0e6b, 0x0f29, 0x0f28, 0x4a85,\n  0x4a89, 0x4a8e, 0x4a84, 0x105f, 0x4e6a, 0x522b, 0x522f, 0x5228,\n  0x1174, 0x5216, 0x5215, 0x521d, 0x541a, 0x1202, 0x126a, 0x1294,\n  0x55bc, 0x5775, 0x577c, 0x138a, 0x5911, 0x5912, 0x5b5c, 0x5dbb,\n  0x1564, 0x5ff4, 0x155e, 0x1561, 0x602d, 0x1565, 0x1566, 0x62e4,\n  0x6337, 0x6336, 0x6367, 0x63be, 0x63bd, 0x63e2, 0x6468, 0x6466,\n  0x64c8, 0x64ca, 0x64c7, 0x64dc, 0x175f, 0x654f,\n  /* 0x5f */\n  0x65a9, 0x663c, 0x17af, 0x663b, 0x66ce, 0x180d, 0x6714, 0x6753,\n  0x187c, 0x682e, 0x187a, 0x681f, 0x1876, 0x1879, 0x187d, 0x1877,\n  0x69b0, 0x69bd, 0x18f6, 0x18f1, 0x69ae, 0x69c4, 0x6a7b, 0x0c0b,\n  0x1929, 0x6a9e, 0x196f, 0x6b05, 0x199a, 0x6b69, 0x6ba1, 0x22c7,\n  0x231d, 0x274a, 0x29d3, 0x0469, 0x2b72, 0x2e02, 0x05ab, 0x2e35,\n  0x3127, 0x311e, 0x311f, 0x072c, 0x072d, 0x3707, 0x3706, 0x0817,\n  0x099a, 0x3c54, 0x3e1c, 0x3e20, 0x46f8, 0x0e6e, 0x485d, 0x4858,\n  0x0f2c, 0x4a92, 0x4b4e, 0x0fca, 0x1178, 0x1206, 0x5427, 0x1207,\n  0x5781, 0x5783, 0x1320, 0x5844, 0x1353, 0x13ce, 0x147a, 0x1479,\n  0x6042, 0x604d, 0x6054, 0x604e, 0x156b, 0x6043, 0x1567, 0x156d,\n  0x633c, 0x6340, 0x63c0, 0x1685, 0x16b0, 0x16f3, 0x1763, 0x655a,\n  0x6651, 0x17b6, 0x66dd, 0x1882, 0x187f, 0x6838,\n  /* 0x60 */\n  0x1886, 0x6845, 0x683a, 0x1884, 0x6835, 0x18fc, 0x18fd, 0x18fa,\n  0x6af1, 0x1987, 0x6b93, 0x1e9a, 0x021a, 0x0219, 0x5241, 0x29d7,\n  0x0675, 0x3128, 0x081a, 0x081b, 0x0819, 0x3c53, 0x3c59, 0x099c,\n  0x3e21, 0x0a10, 0x426f, 0x4537, 0x45b5, 0x4862, 0x485e, 0x48f5,\n  0x117b, 0x117c, 0x523d, 0x1208, 0x542d, 0x5589, 0x578d, 0x5787,\n  0x5790, 0x591a, 0x5a99, 0x1441, 0x14e3, 0x1572, 0x605f, 0x1573,\n  0x1568, 0x6056, 0x6061, 0x605b, 0x605a, 0x605c, 0x6065, 0x1635,\n  0x6341, 0x1688, 0x169d, 0x646e, 0x646c, 0x646d, 0x0e75, 0x65aa,\n  0x665c, 0x6658, 0x66de, 0x188f, 0x684f, 0x6851, 0x188e, 0x6853,\n  0x1905, 0x1904, 0x18ff, 0x69fc, 0x6b39, 0x199e, 0x1d3e, 0x0154,\n  0x22d2, 0x0281, 0x274f, 0x3714, 0x0cfa, 0x4672, 0x4673, 0x0f32,\n  0x1270, 0x126e, 0x5791, 0x86d6, 0x147c, 0x5dbf,\n  /* 0x61 */\n  0x1575, 0x606c, 0x1574, 0x1577, 0x62e6, 0x6345, 0x1637, 0x63c8,\n  0x63e4, 0x655d, 0x17ba, 0x6721, 0x1811, 0x672c, 0x6757, 0x1892,\n  0x1899, 0x685d, 0x6861, 0x6865, 0x6a08, 0x190a, 0x192a, 0x192b,\n  0x1944, 0x1979, 0x6b45, 0x00aa, 0x0348, 0x2e05, 0x32ef, 0x371b,\n  0x371d, 0x3e25, 0x3e24, 0x486d, 0x0eb4, 0x5242, 0x5249, 0x120d,\n  0x5578, 0x558a, 0x5797, 0x1354, 0x589b, 0x591c, 0x1430, 0x5aa2,\n  0x1609, 0x1638, 0x1636, 0x168b, 0x16f7, 0x1766, 0x17bd, 0x181e,\n  0x686c, 0x1896, 0x686f, 0x190d, 0x6a0e, 0x1973, 0x6b08, 0x6b1d,\n  0x6ba3, 0x033b, 0x033c, 0x2b60, 0x371c, 0x09a0, 0x0cfb, 0x6cfd,\n  0x48f3, 0x1181, 0x579b, 0x5aa7, 0x5dc4, 0x1578, 0x607a, 0x168d,\n  0x1773, 0x6661, 0x6663, 0x66d7, 0x6876, 0x19a6, 0x6ba5, 0x05ad,\n  0x3c67, 0x0a11, 0x3eab, 0x524a, 0x557d, 0x579d,\n  /* 0x62 */\n  0x5853, 0x5b65, 0x607b, 0x1639, 0x64cd, 0x64dd, 0x17bf, 0x6730,\n  0x6a16, 0x190f, 0x19a7, 0x19b5, 0x0bdc, 0x1431, 0x62e7, 0x6a18,\n  0x6aa2, 0x19a8, 0x6b7c, 0x0d25, 0x4a9e, 0x6084, 0x17c1, 0x6a1c,\n  0x0d90, 0x4871, 0x63ca, 0x1296, 0x147f, 0x1910, 0x6aa3, 0x160a,\n  0x687b, 0x6b97, 0x1912, 0x163a, 0x6350, 0x163b,\n};\nstatic const unsigned short cns11643_3_2uni_page64[292] = {\n  /* 0x64 */\n  0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd,\n  0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd,\n  0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd,\n  0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd,\n  0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x6cfd, 0x1b66,\n  0x1b68, 0x1be7, 0x1c3f, 0x6cfd, 0x1ca6, 0x1d0f, 0x1e3e, 0x1f24,\n  0x1f65, 0x1f9b, 0x1d7f, 0x20cb, 0x2173, 0x2171, 0x216b, 0x21f4,\n  0x2222, 0x2220, 0x2292, 0x22ba, 0x2291, 0x22b0, 0x2359, 0x238a,\n  0x240f, 0x2412, 0x2413, 0x2447, 0x249b, 0x2500, 0x254d, 0x26d1,\n  0x26d3, 0x2767, 0x2857, 0x2877, 0x28d5, 0x2975, 0x298e, 0x29a5,\n  0x29b6, 0x29bf, 0x2a65, 0x2acd, 0x2aed, 0x2b94, 0x2b9a, 0x2bba,\n  0x2d25, 0x2d50, 0x2ea3, 0x2f60, 0x2f64, 0x2fb6,\n  /* 0x65 */\n  0x3003, 0x30b6, 0x311a, 0x4625, 0x2821, 0x32e2, 0x3302, 0x33a4,\n  0x33ac, 0x3410, 0x3406, 0x345e, 0x345a, 0x352c, 0x3529, 0x362d,\n  0x3677, 0x367a, 0x36ca, 0x36e6, 0x36f5, 0x370d, 0x370e, 0x37dc,\n  0x37dd, 0x37f6, 0x381e, 0x3863, 0x39a5, 0x3a0f, 0x3a8a, 0x3a84,\n  0x3a8b, 0x3a7c, 0x3b4c, 0x3b48, 0x3b49, 0x3b9d, 0x3b99, 0x3bf8,\n  0x3c2e, 0x3c2d, 0x3c5c, 0x45cc, 0x3cbf, 0x3cea, 0x3ce5, 0x3d11,\n  0x3d12, 0x3d3f, 0x3d39, 0x3d3b, 0x3d3d, 0x3d77, 0x3d75, 0x3d76,\n  0x3d71, 0x3d96, 0x3d93, 0x3db4, 0x3ddd, 0x3dde, 0x3e0e, 0x2511,\n  0x3e18, 0x3f47, 0x3f48, 0x3fef, 0x4012, 0x403b, 0x40a4, 0x408d,\n  0x40b4, 0x4273, 0x4277, 0x42bc, 0x4419, 0x441b, 0x443d, 0x4453,\n  0x4454, 0x4458, 0x44b7, 0x44d8, 0x44ee, 0x4522, 0x454d, 0x4586,\n  0x4599, 0x45a3, 0x45bc, 0x46a7, 0x4737, 0x4759,\n  /* 0x66 */\n  0x47d0, 0x482f, 0x4832, 0x4842, 0x484e, 0x4868, 0x48a9, 0x48ed,\n  0x49d0, 0x4a07, 0x49d3, 0x4a64, 0x4b40, 0x6cfd, 0x4c41, 0x4c63,\n  0x4cbb, 0x3311, 0x3325, 0x4e48, 0x4f10, 0x4f62, 0x4f12, 0x5021,\n  0x501e, 0x50e2, 0x50de, 0x50e1, 0x5173, 0x51d4, 0x51f5, 0x5237,\n  0x5245, 0x5272, 0x534a, 0x53a9, 0x53a5, 0x53f5, 0x5434, 0x5450,\n  0x5487, 0x5554, 0x5584, 0x5703, 0x5852, 0x58d8, 0x590c, 0x5918,\n  0x59b0, 0x5abc, 0x5ad5, 0x5baa, 0x5c9c, 0x6cfd, 0x5d5c, 0x5e2b,\n  0x5e21, 0x5e73, 0x5ef4, 0x5ef5, 0x5f3f, 0x5f42, 0x5f86, 0x5fbe,\n  0x5fbc, 0x5fbd, 0x5ff1, 0x5ff2, 0x5fef, 0x6022, 0x6023, 0x6024,\n  0x6067, 0x6066, 0x6197, 0x61ce, 0x61e7, 0x633b, 0x634d, 0x64e4,\n  0x6542, 0x671d, 0x6798, 0x6cfd, 0x6949, 0x3049, 0x2a71, 0x2a85,\n  0x2dd3, 0x650e, 0x4c02, 0x441e, 0x6cfd, 0x6cfd,\n  /* 0x67 */\n  0x2128, 0x2172, 0x21ba, 0x21f0, 0x21ee, 0x22b8, 0x22b9, 0x22c4,\n  0x4c53, 0x5eb0,\n};\n\nstatic const ucs4_t cns11643_3_2uni_upages[136] = {\n  0x03400, 0x03500, 0x03600, 0x03700, 0x03800, 0x03900, 0x03a00, 0x03b00,\n  0x03c00, 0x03d00, 0x03e00, 0x03f00, 0x04000, 0x04100, 0x04200, 0x04300,\n  0x04400, 0x04500, 0x04600, 0x04700, 0x04800, 0x04900, 0x04a00, 0x04b00,\n  0x04c00, 0x04d00, 0x04e00, 0x04f00, 0x05000, 0x05100, 0x05200, 0x05300,\n  0x05400, 0x05500, 0x05600, 0x05700, 0x05800, 0x05900, 0x05a00, 0x05b00,\n  0x05c00, 0x05d00, 0x05e00, 0x05f00, 0x06000, 0x06100, 0x06200, 0x06300,\n  0x06400, 0x06500, 0x06600, 0x06700, 0x06800, 0x06900, 0x06a00, 0x06b00,\n  0x06c00, 0x06d00, 0x06e00, 0x06f00, 0x07000, 0x07100, 0x07200, 0x07300,\n  0x07400, 0x07500, 0x07600, 0x07700, 0x07800, 0x07900, 0x07a00, 0x07b00,\n  0x07c00, 0x07d00, 0x07e00, 0x07f00, 0x08000, 0x08100, 0x08200, 0x08300,\n  0x08400, 0x08500, 0x08600, 0x08700, 0x08800, 0x08900, 0x08a00, 0x08b00,\n  0x08c00, 0x08d00, 0x08e00, 0x08f00, 0x09000, 0x09100, 0x09200, 0x09300,\n  0x09400, 0x09500, 0x09600, 0x09700, 0x09800, 0x09900, 0x09a00, 0x09b00,\n  0x09c00, 0x09d00, 0x09e00, 0x09f00, 0x0ff00, 0x20000, 0x20100, 0x20200,\n  0x20500, 0x20600, 0x20b00, 0x20d00, 0x21300, 0x21600, 0x21700, 0x21d00,\n  0x22300, 0x22500, 0x23000, 0x23500, 0x23c00, 0x24000, 0x24a00, 0x25100,\n  0x25900, 0x25c00, 0x26500, 0x28c00, 0x29900, 0x2f800, 0x2f900, 0x2fa00,\n};\n\nstatic int\ncns11643_3_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x21 && c1 <= 0x62) || (c1 >= 0x64 && c1 <= 0x67)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        ucs4_t wc = 0xfffd;\n        unsigned short swc;\n        if (i < 6298) {\n          if (i < 6148)\n            swc = cns11643_3_2uni_page21[i],\n            wc = cns11643_3_2uni_upages[swc>>8] | (swc & 0xff);\n        } else {\n          if (i < 6590)\n            swc = cns11643_3_2uni_page64[i-6298],\n            wc = cns11643_3_2uni_upages[swc>>8] | (swc & 0xff);\n        }\n        if (wc != 0xfffd) {\n          *pwc = wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643_4.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992 plane 4\n */\n\n/*\n * The table has been split into two parts. Each part's entries fit it 16 bits.\n * But the combined table would need 17 bits per entry.\n */\n#include \"cns11643_4a.h\"\n#include \"cns11643_4b.h\"\n\nstatic int\ncns11643_4_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x21 && c1 <= 0x6e)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        ucs4_t wc = 0xfffd;\n        unsigned short swc;\n        {\n          if (i < 2914)\n            swc = cns11643_4a_2uni_page21[i],\n            wc = cns11643_4a_2uni_upages[swc>>8] | (swc & 0xff);\n          else if (i < 7298)\n            swc = cns11643_4b_2uni_page40[i-2914],\n            wc = cns11643_4b_2uni_upages[swc>>8] | (swc & 0xff);\n        }\n        if (wc != 0xfffd) {\n          *pwc = wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643_4a.h",
    "content": "/*\n * Copyright (C) 1999-2002 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992 plane 4 part a\n */\n\nstatic const unsigned short cns11643_4a_2uni_page21[2914] = {\n  /* 0x21 */\n  0x5a86, 0x1840, 0x1841, 0x185a, 0x75e8, 0x1802, 0x1829, 0x5b0e,\n  0x6027, 0x1c02, 0x013e, 0x27dc, 0x5f3c, 0x6075, 0xd128, 0x1d42,\n  0x1d6a, 0x2552, 0x6f3c, 0xd175, 0xd178, 0x29c4, 0x2c4c, 0x39ad,\n  0x1812, 0x182f, 0x1896, 0x18d0, 0x1b42, 0x1b83, 0xd119, 0x60a5,\n  0x60aa, 0x630f, 0x640e, 0x1d83, 0x1db8, 0x659c, 0x659b, 0x6a3c,\n  0x2328, 0x71c2, 0x2623, 0x2801, 0x2900, 0x87b4, 0x08b8, 0x376c,\n  0x392b, 0x1b88, 0x4879, 0x51b6, 0x1817, 0x5a65, 0x000c, 0x5bb2,\n  0x0030, 0x18e2, 0x18db, 0x5e77, 0x5f42, 0x1bad, 0x6033, 0x1bf7,\n  0x00da, 0x60af, 0x6236, 0x0113, 0x1d1b, 0x1d88, 0x1d87, 0x6522,\n  0x1dcf, 0x1dfd, 0x0163, 0x1de7, 0x20dc, 0x69a3, 0x20d9, 0x2125,\n  0x2127, 0x2333, 0x2613, 0x7225, 0x7224, 0x2675, 0x7652, 0x7789,\n  0x7abf, 0x05c4, 0x05c3, 0x2ff1, 0x87b5, 0xa24c,\n  /* 0x22 */\n  0x4552, 0xc714, 0xc712, 0x0001, 0x5aa3, 0x5aa2, 0x1851, 0x186a,\n  0x5bb6, 0x190c, 0x5bb5, 0x5bb4, 0x18fe, 0x191b, 0x5bc2, 0x5bb8,\n  0x003a, 0x5e79, 0x00ab, 0x1b73, 0x5f08, 0x1b8e, 0x5f7a, 0x5fb6,\n  0x60bd, 0x60b7, 0x60bc, 0x00dd, 0x60c4, 0x60c9, 0x1ca5, 0x0115,\n  0x1ca7, 0x1ca4, 0x6330, 0x6383, 0x6385, 0x6412, 0x6434, 0x1dbd,\n  0x64e4, 0x64de, 0x652a, 0x1e02, 0x65af, 0x65b4, 0x65b3, 0x65b1,\n  0x212b, 0x231b, 0x2335, 0x6cde, 0x02a7, 0x02a5, 0x6db8, 0x6db0,\n  0x02a6, 0x6fc2, 0x59fd, 0x2617, 0x037c, 0x722a, 0x2670, 0x267d,\n  0x03a9, 0x75e9, 0x27e9, 0x7657, 0x0434, 0x0435, 0x77b6, 0x77d7,\n  0x77de, 0x04a8, 0x2919, 0x291c, 0x2975, 0x7ac2, 0x7bab, 0x04ff,\n  0x29c8, 0x7e8f, 0x05c7, 0x05c6, 0x05c8, 0x7f6d, 0x82b5, 0x06d0,\n  0x06d1, 0x87c0, 0x87bf, 0x0859, 0x8bb9, 0x8d1c,\n  /* 0x23 */\n  0x3412, 0x08bd, 0x8e80, 0x9184, 0x9185, 0x0a28, 0x39b3, 0x9524,\n  0x0aa9, 0x3a90, 0x3c36, 0xaa4c, 0x0fcc, 0xb1f6, 0x4881, 0x51b8,\n  0xc370, 0x14b4, 0xc375, 0xc717, 0x1823, 0x0016, 0x002c, 0x5bf1,\n  0x192e, 0x5bda, 0x1b4f, 0x5fb9, 0x1bba, 0x00df, 0x00e0, 0x1c22,\n  0x60ce, 0x60d2, 0x60d0, 0x0117, 0x6243, 0x1caf, 0x1cb0, 0x1cb1,\n  0x624d, 0x6334, 0x012f, 0x63d9, 0x1d64, 0x6418, 0x1dd3, 0x6538,\n  0x016a, 0x65d7, 0x0170, 0x016d, 0x65dc, 0x65cb, 0x65d6, 0x65d8,\n  0x016e, 0x65d1, 0xd13e, 0xd13c, 0x65d2, 0x022b, 0x0228, 0x6a59,\n  0x59fd, 0x233f, 0x6ce5, 0x6ce6, 0x0292, 0x6ce8, 0x238b, 0x6dbd,\n  0x2391, 0x2395, 0x6dbe, 0x6f49, 0x033f, 0x6fcd, 0x258a, 0x034f,\n  0x0374, 0x715e, 0x71d0, 0x037d, 0x7306, 0x03b7, 0x03a3, 0x03b0,\n  0x03b1, 0x2687, 0x03ab, 0x737c, 0x7371, 0x75ef,\n  /* 0x24 */\n  0x043a, 0x0437, 0x280d, 0x0438, 0x0440, 0x778d, 0x77b7, 0x288e,\n  0x049f, 0x7933, 0x797f, 0x297a, 0x7bf2, 0x0504, 0x0509, 0x0506,\n  0x04fd, 0x050a, 0x0507, 0x7f2a, 0x7f8b, 0x05ca, 0x7f83, 0x7f8a,\n  0x2c90, 0x05c9, 0x7f8e, 0x2c9a, 0x82b6, 0x2e3c, 0x2e3a, 0x067f,\n  0x2e98, 0x84d8, 0x06d2, 0x8556, 0x87d2, 0x3065, 0xd1db, 0x0743,\n  0x87c2, 0x8a87, 0x8a81, 0x8bc2, 0x8bbc, 0x8d23, 0x08c1, 0x8e93,\n  0x08c5, 0x09a3, 0x918d, 0x918e, 0x0a2a, 0x0a5f, 0x953b, 0x954d,\n  0x0a5d, 0x9534, 0x9531, 0x96f2, 0x96f0, 0x0b17, 0x9a15, 0x9b28,\n  0x0b71, 0x0b72, 0x9c25, 0x9de7, 0x0c0f, 0x9de9, 0xa017, 0x40c2,\n  0x0d91, 0xa96c, 0xa980, 0xaa4b, 0x0fb2, 0x0fcf, 0x0fce, 0x469e,\n  0xafde, 0xaffb, 0x47eb, 0xb051, 0x4889, 0x1096, 0xb201, 0xb202,\n  0x4896, 0xb205, 0x4887, 0xb203, 0x1097, 0xc151,\n  /* 0x25 */\n  0x51c0, 0x148b, 0x51c3, 0xc153, 0xc37a, 0xc378, 0xc376, 0xc379,\n  0xc38f, 0xc37c, 0x5578, 0xc71b, 0xc71c, 0x5625, 0x8f92, 0x1875,\n  0x1874, 0x5b2e, 0x5b2c, 0x002d, 0x5c0c, 0x1999, 0x5c0b, 0x0050,\n  0x004b, 0x5c05, 0x004f, 0x004c, 0xd105, 0x1971, 0x1b53, 0x1bbf,\n  0x5fc2, 0x5fc3, 0x1bc0, 0x6048, 0x1bee, 0x6046, 0x00e4, 0x00e3,\n  0x60ea, 0x00e1, 0x60eb, 0x00e2, 0x60ee, 0x1c3d, 0x0119, 0x1cbd,\n  0x1d0c, 0x62d8, 0x9a1e, 0x63df, 0x63de, 0x0141, 0x4537, 0x644f,\n  0x1dc0, 0x015e, 0x660d, 0x6608, 0x0179, 0x6609, 0x1e6e, 0x1e83,\n  0x6612, 0x6665, 0x1e5e, 0x1e5d, 0x217e, 0x2179, 0x6a89, 0x217a,\n  0x216c, 0x6a84, 0x6a9e, 0x6a8b, 0x0232, 0x2187, 0x6c62, 0x231d,\n  0x0294, 0x2346, 0x0297, 0x6cf9, 0x2343, 0x6cf7, 0x0296, 0x0298,\n  0x6d06, 0x6ddd, 0x02b2, 0x6dd9, 0x6ddf, 0x6de2,\n  /* 0x26 */\n  0x02b9, 0x2561, 0x2566, 0x5af1, 0x2590, 0x0375, 0x037f, 0x037e,\n  0x2629, 0x038f, 0x723f, 0x723e, 0x730b, 0x03bd, 0x26b2, 0x7383,\n  0x03bb, 0x03bc, 0x7386, 0x26c0, 0x767c, 0x043d, 0x043e, 0x0474,\n  0x77f7, 0x047a, 0x0476, 0x0478, 0x0475, 0x77fb, 0x793b, 0x04af,\n  0x04b0, 0x04c7, 0x04cc, 0x7bf9, 0x7bca, 0x0516, 0x7bff, 0x0512,\n  0x051d, 0x7c09, 0x7c03, 0x0515, 0x050f, 0x0514, 0x2a1f, 0x29e2,\n  0x7c10, 0x7e9a, 0x7e9f, 0x05b0, 0x05bf, 0x05c0, 0x7f87, 0x05d2,\n  0x05d9, 0x82b7, 0x067a, 0x8308, 0x82f9, 0x0681, 0x0682, 0x82f4,\n  0x2f16, 0x2ef9, 0x06da, 0xad57, 0x3088, 0x87d6, 0x309b, 0xd1de,\n  0x306e, 0x309e, 0x87d4, 0x0822, 0x081f, 0x8a90, 0x8a8d, 0x0821,\n  0x3324, 0x8b60, 0x8bce, 0x8bcf, 0x085c, 0x337d, 0x8bd1, 0x087d,\n  0x088d, 0x088f, 0x34e6, 0x8eca, 0x34cb, 0x08d0,\n  /* 0x27 */\n  0x8eb7, 0x08d8, 0x8eb2, 0x8ebb, 0x8eb9, 0x34b5, 0x09a7, 0x919e,\n  0x3797, 0x91b2, 0x379b, 0x0a12, 0x936f, 0x93ac, 0x0a2f, 0x9423,\n  0x396b, 0x0a2e, 0x0a2c, 0x0a5c, 0x956c, 0x39d5, 0x9532, 0x955e,\n  0x0a62, 0x0a67, 0x0ab4, 0x96fb, 0x9929, 0x99bd, 0x9a1f, 0x3c43,\n  0x7941, 0x9a1d, 0x3c9c, 0x9b31, 0x9b2f, 0x0bea, 0x9d43, 0x0bfb,\n  0x9d41, 0x0c14, 0x9df5, 0x0c13, 0x0c12, 0x0c10, 0x0c11, 0x9df2,\n  0x0c86, 0x3ee4, 0x0c98, 0xa01e, 0xa254, 0x0d2a, 0xa256, 0xa329,\n  0xa327, 0xa328, 0x41ce, 0x0eb5, 0xa979, 0xa97e, 0xabb6, 0xabb7,\n  0x4613, 0x0fd6, 0x0fd8, 0x46b7, 0x0fd9, 0x0fd4, 0x0fd7, 0xd281,\n  0x46b9, 0x59fd, 0xad4d, 0x47e4, 0x47fd, 0x480f, 0x1060, 0xb109,\n  0xb108, 0x109e, 0x10a1, 0xb21e, 0xb21a, 0xb223, 0xb215, 0xb219,\n  0xb216, 0x48bf, 0x48ca, 0xb214, 0xb218, 0x48c1,\n  /* 0x28 */\n  0x10a0, 0xb51f, 0xb6dd, 0xb6df, 0xc169, 0x51d0, 0x59fd, 0xc16c,\n  0x14b9, 0xc393, 0x52ae, 0xc395, 0xc394, 0xc391, 0xc397, 0xc730,\n  0x15c1, 0x15c2, 0x5638, 0xd318, 0x001c, 0x5c31, 0x005e, 0x19bc,\n  0x0059, 0x005c, 0x5c36, 0x005f, 0x19e9, 0x19bd, 0x19e2, 0x1b58,\n  0x5fc9, 0x5fca, 0x00ce, 0x6118, 0x6112, 0x6119, 0x6110, 0x6116,\n  0x1cc6, 0x625f, 0x1cc8, 0x62df, 0x6317, 0x1d28, 0x633c, 0x1d29,\n  0x63ea, 0x63e9, 0x641c, 0x6458, 0x6464, 0x64f3, 0x015f, 0x6697,\n  0x0185, 0x665a, 0x6659, 0x0186, 0x668e, 0x21b4, 0x6abc, 0x21a9,\n  0x0287, 0x6d0d, 0x6cfc, 0x6d0c, 0x6e07, 0x6e0a, 0x02ca, 0x6e02,\n  0x02c3, 0x6e26, 0x6e08, 0x6e1d, 0x02c2, 0x2568, 0x6f4e, 0x0341,\n  0x6fed, 0x6fee, 0x6fef, 0x0380, 0x0381, 0x7250, 0x724c, 0x0393,\n  0x0392, 0x724f, 0x03c5, 0x73d4, 0x59fd, 0x73b0,\n  /* 0x29 */\n  0x0446, 0x0441, 0x0445, 0x0442, 0x043f, 0x76a5, 0x7809, 0x0482,\n  0x0481, 0x047f, 0x04a5, 0x292b, 0x04b3, 0x04b5, 0x79f3, 0x79d7,\n  0x298d, 0x04da, 0x7adc, 0x04db, 0x050d, 0x2a18, 0x050e, 0x7c0b,\n  0x051e, 0x0525, 0x0526, 0x051c, 0x0521, 0x2a57, 0x2a48, 0x0527,\n  0x051a, 0x7c3a, 0x7c0d, 0x7c11, 0x2a38, 0x7c20, 0x7c01, 0x0524,\n  0x7c37, 0xd1a3, 0x2a71, 0x7eaa, 0x05c1, 0x05e1, 0x7fe7, 0x7fe8,\n  0x2d12, 0x05eb, 0x7ff5, 0x05e2, 0x05d7, 0x05e9, 0x8035, 0x7fe6,\n  0x2d0a, 0x7ff8, 0x2d23, 0x7ff1, 0x0684, 0x8314, 0x8315, 0x8309,\n  0x06b5, 0x06bc, 0x06dc, 0x06de, 0x06df, 0x857b, 0x2f2a, 0x857e,\n  0x8766, 0x8767, 0x880a, 0x0754, 0x30e0, 0x30be, 0x0753, 0x0824,\n  0x0825, 0x3329, 0x0828, 0x0827, 0x8a9c, 0x8b62, 0x8be1, 0x8bde,\n  0x8bdf, 0x8be9, 0x088b, 0x8ee4, 0x8ef7, 0x08dc,\n  /* 0x2a */\n  0x3543, 0x8eea, 0x8ef6, 0x8f12, 0xd201, 0x37a6, 0x09b2, 0x37c0,\n  0x91d9, 0x392f, 0x935f, 0x0a1b, 0x9373, 0x0a32, 0x3971, 0x943f,\n  0x9578, 0x0a6b, 0x957d, 0x0a6c, 0x0a6d, 0x9712, 0x0ab9, 0x0aba,\n  0x0b09, 0x0b0a, 0x992f, 0x3bea, 0x0b1b, 0x9930, 0x99db, 0x3c20,\n  0x0b58, 0x9a29, 0x0b5a, 0xd236, 0x9b40, 0x0b77, 0x9b3d, 0x9b3e,\n  0x0b79, 0x3ca9, 0x9b38, 0x3d85, 0x9c48, 0x0beb, 0x9cd0, 0x0bfd,\n  0x0bfc, 0x3e06, 0x0c15, 0x0c18, 0x3df6, 0x0c16, 0x0c17, 0x0c19,\n  0x3e00, 0x0c1b, 0x9e0e, 0x9e09, 0x3e02, 0x9e07, 0x0c87, 0x9f5f,\n  0x9f60, 0x0c9c, 0xa02a, 0x0c9a, 0xa029, 0x0cff, 0x0cfe, 0xa14d,\n  0x0d31, 0x0d2e, 0x0d30, 0x0d32, 0xa26c, 0x59fd, 0x0d2f, 0xa267,\n  0x0d95, 0x0d96, 0xa339, 0xa334, 0xa459, 0x0dc5, 0x0e7a, 0xa923,\n  0x0f42, 0xa982, 0x0f54, 0xa983, 0xa9a8, 0xaa55,\n  /* 0x2b */\n  0xaaf9, 0xaaf8, 0xaafc, 0xaafa, 0x4609, 0xd27a, 0x0f9f, 0x0fa0,\n  0x0fa2, 0x0fe0, 0xad74, 0x0fe1, 0xad6b, 0xad71, 0x0fdf, 0xad76,\n  0xb10e, 0x1062, 0x1061, 0xb110, 0xb10f, 0x10a7, 0xb238, 0xb239,\n  0xb23a, 0x48da, 0xb237, 0xb23e, 0x490a, 0x1189, 0xb49c, 0xb52a,\n  0xb53a, 0xb52b, 0xb528, 0xb6aa, 0xb70f, 0x121d, 0xb710, 0xb8e6,\n  0x132a, 0xbd25, 0xbe8e, 0x13d3, 0x1442, 0x1443, 0xc18b, 0x1491,\n  0xc18c, 0xc19a, 0x1490, 0x14bf, 0xc3b3, 0x14bc, 0xc3b2, 0x14c0,\n  0x15c7, 0x15c5, 0x5655, 0xc744, 0x5652, 0x1835, 0x5b58, 0x5ca7,\n  0x1a34, 0x1a01, 0x5c63, 0x1a0a, 0x0066, 0x5c6a, 0x5c65, 0x5c6b,\n  0x00ad, 0x5eed, 0x5fd9, 0x613b, 0x6132, 0x1c58, 0x6135, 0x6131,\n  0x613e, 0x6143, 0x6136, 0x626d, 0x011d, 0x62e4, 0x0131, 0x1d2b,\n  0x63f4, 0x014c, 0x6469, 0x646b, 0x0195, 0x0191,\n  /* 0x2c */\n  0x0194, 0x66bf, 0x66c3, 0x66ae, 0x018f, 0x1eec, 0x66b1, 0x1f15,\n  0x1efe, 0x66bb, 0x66af, 0x66b0, 0x1ee3, 0x1f16, 0x0240, 0x6aef,\n  0x0241, 0x6aed, 0x21d3, 0x6af0, 0x6c93, 0x6d34, 0x6d2b, 0x2359,\n  0x2427, 0x02d8, 0x02d2, 0x02da, 0x2428, 0x2410, 0x02d7, 0x240e,\n  0x0342, 0x0357, 0x7004, 0x7003, 0x7002, 0x25af, 0x7005, 0x25ba,\n  0x25b1, 0x7000, 0x7174, 0x0378, 0x0382, 0x0397, 0x7265, 0x7263,\n  0x03c9, 0x73d7, 0x03c8, 0x03d6, 0x03cc, 0x73e8, 0x03d0, 0x73db,\n  0x73d8, 0x03ce, 0x03c7, 0x26fc, 0x7409, 0x03cf, 0x03cb, 0x26f2,\n  0x26fe, 0x73e5, 0x73e7, 0x27f8, 0x763f, 0x0447, 0x76c0, 0x0448,\n  0x76b9, 0x76ba, 0x0483, 0x0485, 0x0484, 0x7820, 0x794f, 0x292c,\n  0x04b8, 0x04bc, 0x7a91, 0x7a90, 0x7aee, 0x7af3, 0x7aec, 0x7af1,\n  0x7aeb, 0x7af2, 0x7af4, 0x7aed, 0x7c41, 0x7c48,\n  /* 0x2d */\n  0x7c45, 0x0531, 0x0534, 0x0536, 0x2a82, 0x7c7f, 0x7c8b, 0x0523,\n  0x7c3b, 0x7c4e, 0x053a, 0x2a91, 0x2a8f, 0x7c7c, 0x05b4, 0x05b5,\n  0x05ed, 0x05ec, 0x05d8, 0x7ff0, 0x8036, 0x803f, 0x8043, 0x8031,\n  0x8034, 0x8046, 0x05f6, 0x05e7, 0x802f, 0x82c3, 0x067c, 0x067b,\n  0x8336, 0x0688, 0x2e47, 0x2e4c, 0x8321, 0xd1c8, 0x2e8a, 0x8473,\n  0x06be, 0x84e6, 0x06e7, 0x06e5, 0x06ee, 0x30e1, 0x314a, 0x883f,\n  0x0759, 0x075e, 0x886b, 0x075a, 0x313f, 0x0761, 0x0758, 0x075b,\n  0x30bd, 0x8871, 0x075f, 0xd1e2, 0x082a, 0x082d, 0x8ab0, 0x0823,\n  0x082b, 0x082c, 0x8bf3, 0x087e, 0xd1f5, 0x0893, 0x0899, 0x8d61,\n  0x8d5f, 0x08b3, 0x08e7, 0x08ea, 0x8f28, 0x8f1e, 0x8f29, 0xd202,\n  0x8eeb, 0x8f66, 0x09b4, 0x91f6, 0x37c9, 0x0a17, 0x9360, 0x9377,\n  0x93bb, 0x0a21, 0x93bc, 0x0a38, 0x0a37, 0x0a74,\n  /* 0x2e */\n  0x0a73, 0x0a75, 0x95a2, 0x95b2, 0x959e, 0x0a76, 0x0a78, 0x973a,\n  0x9738, 0x3aba, 0x0b0c, 0x0b20, 0x0b1e, 0x9a4d, 0x0b5b, 0x9a5e,\n  0x0b5c, 0x9b17, 0x0b83, 0x3cc6, 0x0b80, 0x0b81, 0x0b7e, 0x0b88,\n  0x0b85, 0x0b89, 0x0b7f, 0x0b8e, 0x9b64, 0x9b67, 0x0b84, 0x3cb7,\n  0x3d8c, 0x9c59, 0x3d8d, 0x9cda, 0x0bee, 0x0bed, 0x0bfe, 0x9d51,\n  0x0bff, 0x9d55, 0x9e3b, 0x9e34, 0x0c23, 0x9e37, 0x3e17, 0x9e31,\n  0x3e1c, 0x0c1f, 0x9e3f, 0x9e59, 0x3e14, 0x9f61, 0x0c8f, 0x0c90,\n  0xa058, 0xa062, 0xa050, 0x0ca0, 0xa051, 0x0ca6, 0x0c9f, 0xa046,\n  0x0ca7, 0x0ca1, 0xa12d, 0x0d02, 0x0d36, 0xa348, 0xa351, 0xa34a,\n  0xa34f, 0xa350, 0xa349, 0xa463, 0x0dc8, 0xa466, 0xa460, 0x0dd8,\n  0x420c, 0x0ddd, 0x0ddc, 0xa4f1, 0x0dd7, 0xa507, 0x0dda, 0x0eba,\n  0xa79b, 0xa7a3, 0xa79d, 0x0ebe, 0x0ec2, 0x0ebb,\n  /* 0x2f */\n  0x0ec0, 0xa7a9, 0xa7a7, 0xa7a4, 0x4423, 0xa7ba, 0x77c1, 0xa926,\n  0x0f43, 0x0f55, 0xa994, 0xa993, 0x0f57, 0x0f68, 0x4598, 0x4590,\n  0xab07, 0xab0d, 0xab02, 0xab0c, 0xab09, 0xab08, 0xab13, 0x0fa1,\n  0xabd2, 0x463a, 0xac3e, 0xac3c, 0xad67, 0xad9e, 0x0fea, 0xadad,\n  0x0fe7, 0xadd9, 0xad42, 0xada3, 0xada0, 0x0fe8, 0x0fe9, 0xad7c,\n  0xb004, 0x1054, 0xb058, 0xb060, 0xb0c9, 0xb0c8, 0x4826, 0x1065,\n  0xb11c, 0xb11a, 0x108a, 0xb274, 0x10b0, 0xb26e, 0xb26f, 0xb279,\n  0x10bc, 0x492e, 0xb277, 0x4955, 0x491a, 0x10b8, 0x493d, 0xb27c,\n  0x10b2, 0xb270, 0x4930, 0x10bd, 0xb27a, 0xb282, 0x118a, 0x4b51,\n  0x11a1, 0xb544, 0x11a2, 0xb543, 0x4b88, 0xb545, 0x1215, 0xb725,\n  0xb71f, 0x1220, 0x1273, 0xb8e8, 0x4d8e, 0x4d8d, 0xb909, 0xb9b7,\n  0xb9b9, 0xba64, 0xba63, 0x4e09, 0x4e14, 0x12b1,\n  /* 0x30 */\n  0xba62, 0xba65, 0x132b, 0xbbac, 0x1345, 0xbd2a, 0x1397, 0x1398,\n  0xbe96, 0x13d5, 0xbfc2, 0xd2de, 0x1493, 0x1496, 0x5207, 0x1494,\n  0xc1aa, 0xc1b0, 0x14c7, 0x14c5, 0xc3d4, 0xc3cd, 0xc3d6, 0x14c4,\n  0xc4f0, 0x5579, 0x5584, 0x15ce, 0x15ca, 0x15cc, 0x5657, 0x15c9,\n  0x56ba, 0x59fd, 0xd04b, 0x5b62, 0x006e, 0x5cb7, 0x1a67, 0x5cac,\n  0x5cab, 0x0071, 0x5cc1, 0x00bb, 0x00d3, 0x5fe8, 0x6169, 0x615d,\n  0x615f, 0x00f3, 0x00ed, 0x00f5, 0x6164, 0x6162, 0x00f1, 0x00f2,\n  0x00f6, 0x0120, 0x62f9, 0x0128, 0x62ee, 0x1d18, 0x1d2c, 0x1d59,\n  0x63ab, 0x63ac, 0x63aa, 0x1d68, 0x1d7e, 0x6486, 0x647a, 0x1da1,\n  0x6728, 0x01a1, 0x1f5b, 0x01aa, 0x01a9, 0x6731, 0x01b5, 0x01a5,\n  0x01a8, 0x1f42, 0x01a7, 0x1f47, 0x672d, 0xd143, 0x1f3d, 0x672b,\n  0x6732, 0x1f60, 0x21eb, 0x6b29, 0x6b26, 0x6b53,\n  /* 0x31 */\n  0x024d, 0x6b33, 0x6b34, 0x6c9d, 0x029c, 0x235f, 0x6d41, 0x02ea,\n  0x02e5, 0x6e91, 0x6e69, 0x256f, 0x7022, 0x035e, 0x7034, 0xd16d,\n  0x712e, 0x0386, 0x0384, 0x71f4, 0x265a, 0x7428, 0x03d9, 0x741c,\n  0x03de, 0x7411, 0x7424, 0x7415, 0x03db, 0x7416, 0x7454, 0x7423,\n  0x75ff, 0x0431, 0x76cf, 0x76d0, 0x044b, 0x76ce, 0x0449, 0x044a,\n  0x044c, 0x77c7, 0x785c, 0x048a, 0x7836, 0x0489, 0x048b, 0x7843,\n  0x04bb, 0x29a2, 0x299d, 0x04e4, 0x7b2a, 0x7b01, 0x29a3, 0x7b0b,\n  0x7b0f, 0x053b, 0x052e, 0x053e, 0x0546, 0x0553, 0x7cdf, 0x0544,\n  0x7cd2, 0x053f, 0x0542, 0x054f, 0x7ccd, 0x0552, 0x054a, 0x2ac2,\n  0x7cdb, 0x055a, 0x2aa5, 0x0549, 0x7ccf, 0x2c1c, 0x7ec0, 0x2c1d,\n  0x0603, 0x8081, 0x8082, 0x808a, 0x80a8, 0x808c, 0x2d95, 0x2d9a,\n  0x0601, 0x0606, 0x05fb, 0x05f9, 0x808e, 0x0605,\n  /* 0x32 */\n  0x05fa, 0x808b, 0x2da6, 0x8096, 0x05fe, 0x80cc, 0x067d, 0x068c,\n  0x834f, 0x834a, 0x2e50, 0x068e, 0x834b, 0x833d, 0x2e52, 0x8344,\n  0x8349, 0x849e, 0x84f3, 0x2ec8, 0x84f5, 0x06f0, 0x06f2, 0x85b3,\n  0x2f58, 0x06f1, 0x06e6, 0x85e5, 0x85b6, 0xd1d8, 0x3188, 0x8886,\n  0x076f, 0x076d, 0x0769, 0x88b6, 0x8885, 0x076e, 0x88ab, 0x082f,\n  0x0830, 0x0863, 0x8c0d, 0x8c8b, 0x8c8c, 0x33b8, 0x0880, 0x33b9,\n  0x089a, 0x0894, 0x0896, 0x0895, 0x0897, 0x8d72, 0x08f4, 0x08fe,\n  0x8f8f, 0x0901, 0x8f79, 0x0902, 0x8f77, 0x08f9, 0x8f90, 0x8f88,\n  0x8f80, 0x8f9e, 0x08f6, 0x08f7, 0x8f82, 0x8f34, 0x8f89, 0x08ff,\n  0x8f85, 0x8f7e, 0x8f7a, 0x8fa6, 0x360b, 0x8fb5, 0x91f4, 0x09bf,\n  0x09bc, 0x3805, 0x9229, 0x9226, 0x922a, 0x09be, 0x09c0, 0x937e,\n  0x0a3b, 0x0a39, 0x945b, 0x9461, 0x9460, 0x0a3c,\n  /* 0x33 */\n  0x959b, 0x3a14, 0x3a04, 0x95c3, 0x0a7d, 0x95cd, 0x0a7f, 0x0a7a,\n  0x0a7c, 0x3a05, 0x0a7e, 0x3a15, 0x3a0d, 0x0a80, 0x0abf, 0x0ac3,\n  0x9754, 0x9759, 0x0acc, 0x0b0e, 0x0b0d, 0x98f5, 0x0b26, 0x0b24,\n  0x0b25, 0x0b23, 0x0b21, 0x0b29, 0x9a69, 0x9a65, 0x0b8f, 0x0b8d,\n  0x9b7c, 0x0b8b, 0x0b92, 0x9b80, 0x0b90, 0x9c65, 0x0bef, 0x0bf0,\n  0x9cdf, 0x9d60, 0x0c01, 0x9d5e, 0x0c2e, 0x0c2d, 0x3e2e, 0x0c28,\n  0x0c29, 0x0c2c, 0x9e8f, 0x9e61, 0x9e5a, 0x3e41, 0x0c88, 0x9f67,\n  0x0c92, 0x0c91, 0x3eea, 0x9fbb, 0x3f44, 0x0ca9, 0x0cac, 0x0cae,\n  0x0caa, 0x0d06, 0x0d05, 0x0d4a, 0x0d3e, 0x0d3c, 0x0d3b, 0xa29b,\n  0x0d42, 0x0d41, 0x0d43, 0xa2a9, 0x0d45, 0xa366, 0x0d9a, 0x0d9b,\n  0x0d9f, 0x0d9e, 0xa472, 0xa476, 0xa514, 0x0dde, 0x0de2, 0x0de6,\n  0xa50f, 0x4229, 0x0de3, 0x4227, 0x0ddf, 0xa641,\n  /* 0x34 */\n  0xa646, 0x439d, 0xa64b, 0xa643, 0x0e7e, 0x0ec9, 0x0ecc, 0xa7c6,\n  0x0ed1, 0xa7c7, 0x0ed0, 0xa7ce, 0x0ecf, 0x0ec8, 0xa7c9, 0x0ecd,\n  0xa7cb, 0xa7c5, 0x0f49, 0x0f47, 0x0f58, 0x0f6b, 0x0f6c, 0x0f6a,\n  0xaa69, 0x0f80, 0x0f82, 0x0f84, 0x45c8, 0x0f83, 0xab1e, 0xabba,\n  0x0fb6, 0xac52, 0xac51, 0xac53, 0xad9f, 0xaddb, 0x4726, 0x0ff1,\n  0xade3, 0x0ff6, 0x0ff3, 0x0ff0, 0x471c, 0xadd7, 0xade9, 0x4728,\n  0x0ff5, 0x0ff4, 0x0ff7, 0xadde, 0xaddc, 0xb03c, 0xd28b, 0x1055,\n  0xb122, 0xb132, 0xb123, 0x108b, 0x10cb, 0x10c2, 0xb2d4, 0xb2c8,\n  0xb2bc, 0x10ca, 0x10cc, 0xb2cd, 0x10c7, 0x10c9, 0x4970, 0xb2be,\n  0x10c6, 0xb340, 0xb2d6, 0x10c3, 0x4982, 0xb2bd, 0x49ac, 0xb2ba,\n  0x10c4, 0xb2c0, 0xd29b, 0xd29d, 0xb2c1, 0xb4a6, 0xb4a5, 0xb4a8,\n  0x11a9, 0x4bad, 0x11a8, 0x11a6, 0xb55f, 0xb570,\n  /* 0x35 */\n  0xb56a, 0xb565, 0xb567, 0xb56f, 0xb587, 0x4bca, 0x4c51, 0xb73d,\n  0xb743, 0x1222, 0xb740, 0x1226, 0x1224, 0x1225, 0x4c9d, 0x122a,\n  0x1274, 0xb918, 0x1279, 0x4d90, 0x127a, 0xb919, 0xb9c1, 0x4dd8,\n  0x4dd7, 0x1297, 0xb9bc, 0xb9c8, 0x4e2e, 0xba71, 0x12bc, 0xba6e,\n  0x12b3, 0xba78, 0x12bf, 0x12b7, 0xd2cd, 0xba7a, 0xbbb1, 0xbbaf,\n  0xbbb0, 0x1334, 0x1346, 0x1348, 0x4f59, 0xbca8, 0xbca6, 0x1356,\n  0x1367, 0xbd48, 0xbd45, 0x1368, 0x1399, 0x139a, 0xbea0, 0xbea4,\n  0x13d8, 0xbfd4, 0x13db, 0x13dc, 0x13dd, 0x13d7, 0xbfd2, 0xc022,\n  0x1449, 0x144a, 0x50da, 0xc0b7, 0xc0cc, 0x5233, 0xc1e6, 0x5218,\n  0x149a, 0xc1c8, 0x14cd, 0x14ca, 0xc3f4, 0x14cb, 0xc3ed, 0x14cf,\n  0xc37e, 0xd2e3, 0x14cc, 0x14ea, 0x14ed, 0xc4f9, 0xc4fd, 0x14e9,\n  0xc507, 0x151a, 0x53ef, 0x158d, 0x15d2, 0xc778,\n  /* 0x36 */\n  0xc77a, 0xc779, 0xc88a, 0x15f2, 0xc97b, 0xcad5, 0xcae9, 0x163d,\n  0xcaeb, 0x163e, 0x16f8, 0x1723, 0x58d9, 0x18b4, 0x5b6c, 0x1aa0,\n  0x1a90, 0x0075, 0x1a86, 0x1a84, 0x5cfa, 0x1a8a, 0x0076, 0x0073,\n  0x1a9f, 0x1aa1, 0x5d18, 0x1a93, 0x00bd, 0x5ff6, 0x1bd5, 0x618a,\n  0x6189, 0x00f9, 0x617f, 0x6188, 0x00fa, 0x6183, 0x6184, 0x6198,\n  0x6163, 0x6187, 0x0121, 0xd127, 0x0129, 0x62f5, 0x6350, 0x0138,\n  0x014e, 0x6487, 0x648a, 0x6565, 0x67b7, 0x67c1, 0x67c7, 0x01c8,\n  0x01bc, 0x67c5, 0x67cb, 0x1f90, 0x67d1, 0x01bb, 0x01c2, 0x01c0,\n  0x67b8, 0x67ca, 0x01ca, 0x67de, 0x01c9, 0x67ce, 0x01b8, 0x2110,\n  0x2217, 0x6b68, 0x024e, 0x6b6b, 0x2244, 0x0250, 0x222b, 0x6b6a,\n  0x2245, 0x6b66, 0x6b77, 0x6b96, 0x6b6e, 0xd156, 0x028a, 0x6d57,\n  0x2365, 0x6d56, 0x6e9c, 0x6e9e, 0x02fc, 0x02f9,\n  /* 0x37 */\n  0x6ea1, 0x0363, 0x7042, 0x25cf, 0x7046, 0x703e, 0x7133, 0x0387,\n  0x0388, 0x71fa, 0x039a, 0x7297, 0x729b, 0x72aa, 0x2756, 0x7473,\n  0x747c, 0x03e9, 0x7486, 0x03ea, 0x2754, 0x0450, 0x76f3, 0x76f0,\n  0x0456, 0x0452, 0x044f, 0x0454, 0x0451, 0x76ec, 0x78af, 0x048e,\n  0x048f, 0x7864, 0x7868, 0x795a, 0x293d, 0x7b1f, 0x7b25, 0x04ed,\n  0x04eb, 0x29a4, 0x7cc6, 0x7cd6, 0x7cc3, 0x0562, 0x7d2c, 0x055d,\n  0x7d2e, 0x7d5e, 0x7d33, 0x0561, 0x0565, 0x055c, 0x7d2d, 0x7d46,\n  0x055f, 0x7cc1, 0x7d3a, 0x7ecc, 0x809d, 0x8083, 0x80f6, 0x2dec,\n  0x0616, 0x060a, 0x80f8, 0x060e, 0x0612, 0x80fe, 0x80f3, 0x0611,\n  0x80eb, 0x80fa, 0x0610, 0x8107, 0x80fc, 0x0609, 0x2dfa, 0x0615,\n  0x2dd4, 0x8372, 0x8373, 0x8374, 0x0691, 0x0695, 0x0693, 0x0692,\n  0x068f, 0x835f, 0x8360, 0x84aa, 0x8534, 0x06f6,\n  /* 0x38 */\n  0x85b4, 0x06fb, 0x85f0, 0x2f75, 0x06f9, 0x860d, 0x85f3, 0x860f,\n  0x301c, 0x077d, 0x88c9, 0x077a, 0x077f, 0x88c5, 0x0778, 0x88d7,\n  0x88cc, 0x31d9, 0x88e7, 0x0770, 0x0782, 0x88c1, 0x0784, 0x88e8,\n  0x0833, 0x8acb, 0x0832, 0x0836, 0x8ac8, 0x8b7a, 0x0856, 0x8b79,\n  0x8b7e, 0x0867, 0x8c1b, 0x0865, 0x0864, 0x0866, 0x8c1f, 0x8c19,\n  0x0881, 0x0882, 0x0883, 0x089e, 0x8d89, 0x33f1, 0x089d, 0x8d8b,\n  0x090f, 0x0912, 0x9009, 0x8ffe, 0x9000, 0x0910, 0x0918, 0x900b,\n  0x0914, 0x0919, 0x3637, 0x59fd, 0x904a, 0x367d, 0x3686, 0x09c8,\n  0x09c4, 0x09c6, 0x9279, 0x09c7, 0x09c3, 0x926c, 0x9299, 0xd21b,\n  0x9262, 0x9314, 0x0a19, 0x0a1c, 0x93c8, 0x93d7, 0x940c, 0x0a41,\n  0x9470, 0x0a42, 0x0a43, 0x9471, 0x95df, 0x95e4, 0x0a82, 0x95e7,\n  0x0a81, 0x0a94, 0x0a84, 0x9790, 0x0ad2, 0x0b0f,\n  /* 0x39 */\n  0x0b22, 0x994c, 0x0b27, 0x0b2a, 0x3bfa, 0x0b28, 0x994f, 0x0b60,\n  0x9a7d, 0x9a7e, 0x9a7c, 0x3c72, 0x9a8d, 0x9b19, 0x0b9b, 0x0b9c,\n  0x9bc0, 0x0b93, 0x0b94, 0x3cdc, 0x0ba0, 0x0b99, 0x9bb6, 0x0ba1,\n  0x9ba8, 0x0bf1, 0x9ceb, 0x9ce7, 0x9d6f, 0x9ec7, 0x0c36, 0x9e9f,\n  0x0c37, 0x0c3f, 0x0c3c, 0x9ec4, 0x0c34, 0x0c39, 0x0c3b, 0x0c35,\n  0x0c30, 0x0c32, 0x0c38, 0x0c3e, 0x0c3a, 0x9e9b, 0x9e97, 0x9ec5,\n  0x9f6b, 0x9fce, 0x0cb6, 0x3f67, 0xa0b1, 0xa0ae, 0xa0b0, 0x0cb3,\n  0x0d09, 0x4077, 0xa23e, 0xa2b5, 0xa2ba, 0x0d4c, 0xa2b2, 0xa2b4,\n  0x0d53, 0x0d4d, 0x0d51, 0x0d4f, 0x419b, 0xa377, 0x0da2, 0xa386,\n  0xa37b, 0x0dcd, 0xa47e, 0xa52e, 0x0de7, 0xa52f, 0x0df0, 0xa537,\n  0x0de9, 0x0dec, 0xa532, 0x0de8, 0x0dee, 0x0e02, 0xa536, 0xa539,\n  0xa535, 0xa65c, 0x0e82, 0x0e83, 0x0e86, 0xa67b,\n  /* 0x3a */\n  0xa661, 0xa7ee, 0xa7eb, 0xa7ef, 0xa820, 0x442a, 0x4465, 0x0f4a,\n  0xa930, 0x0f5a, 0x4564, 0xa9be, 0x0f6e, 0xaa67, 0xaa7c, 0x0f70,\n  0x0f6f, 0xab24, 0x0f8a, 0x0f87, 0x0f88, 0xab29, 0xabef, 0x4620,\n  0x0fb7, 0x0ffd, 0x4720, 0xae0d, 0x1005, 0x473c, 0x1008, 0x1003,\n  0x1002, 0x1004, 0x0739, 0x1009, 0x0fff, 0xae64, 0x473f, 0xae15,\n  0x0ffc, 0x1001, 0x100a, 0x47f0, 0x47f5, 0x106b, 0x106c, 0xb135,\n  0xb136, 0xb134, 0xb137, 0xb347, 0xb32b, 0x10de, 0xb341, 0xb343,\n  0x10db, 0xb342, 0x10dd, 0x10e3, 0xb332, 0x10e0, 0x10d9, 0x10d8,\n  0x10e4, 0xb344, 0xb34a, 0x10da, 0x10ef, 0xd2a0, 0x4a15, 0x49be,\n  0xb354, 0xb36e, 0xb352, 0x10d7, 0x11b3, 0x11bb, 0x4be5, 0x11b2,\n  0x4bd2, 0x11ad, 0xb592, 0x11af, 0xd2b8, 0x4be0, 0xb5bf, 0x1216,\n  0x1228, 0x1223, 0x4cb3, 0xb741, 0xb769, 0xb765,\n  /* 0x3b */\n  0x1275, 0x127e, 0x127c, 0xb922, 0xb91d, 0xb9d2, 0xb9da, 0xb9db,\n  0x12ce, 0x12cd, 0x12cf, 0x4e53, 0xbaa4, 0xba9e, 0x4e37, 0x4e47,\n  0x4e5c, 0xba9d, 0x12c4, 0x12cc, 0x12c8, 0x12c7, 0xbaad, 0xbaa6,\n  0xbaa7, 0xbbb3, 0xbbe0, 0xbc35, 0xbc37, 0x135a, 0x136a, 0xbd4a,\n  0x136b, 0x136d, 0x136f, 0xbe5e, 0x139e, 0xbec0, 0x13a4, 0x13a3,\n  0x13e4, 0x13e8, 0x13e9, 0x13e0, 0x13e3, 0xbff9, 0x13ea, 0x13e1,\n  0x13ed, 0x1434, 0x1435, 0x1451, 0x50f0, 0xc1f0, 0x149d, 0xc1f3,\n  0xc21b, 0xc1f2, 0xc1fb, 0xc41c, 0xc413, 0x14d0, 0xc40f, 0x14ee,\n  0xc516, 0xc511, 0xc512, 0x14f2, 0xc50e, 0x541d, 0x1588, 0xc667,\n  0xc6f2, 0xc6da, 0x158f, 0xc6dc, 0x15d8, 0xc894, 0xc89b, 0xc892,\n  0xc89a, 0xc988, 0xc986, 0x163f, 0xcaef, 0x1652, 0x576b, 0xcb5e,\n  0x1650, 0xcc58, 0x16b1, 0xcc56, 0xcc54, 0x16f9,\n  /* 0x3c */\n  0xcd9b, 0xce96, 0xcea4, 0x1726, 0x1728, 0xce9a, 0xcf12, 0x0080,\n  0x1ac0, 0x0081, 0x5d6b, 0x007e, 0x007f, 0x5d37, 0x5d3c, 0xd10a,\n  0x5ef7, 0x00be, 0x5f66, 0x00d6, 0x61a9, 0x61ae, 0x61ad, 0x61c8,\n  0x61a5, 0x61b0, 0x6295, 0x1ce5, 0x6325, 0x0134, 0x6499, 0x1daf,\n  0x6574, 0x6570, 0x656f, 0x6841, 0x6854, 0x01d5, 0x01d8, 0x6840,\n  0x6838, 0x01d4, 0x1fd8, 0x01d9, 0x6852, 0x683a, 0x6857, 0xd14a,\n  0x6859, 0x2111, 0x2267, 0x6bb4, 0x6bc0, 0x025d, 0x2243, 0x025e,\n  0x0259, 0x6b75, 0x025a, 0x02a0, 0x6d60, 0x6d47, 0x0305, 0x6ef0,\n  0x0307, 0x6eef, 0x030e, 0x030c, 0x6eec, 0x6f83, 0x0345, 0x6f84,\n  0x6f8f, 0x0364, 0x7061, 0x0365, 0x7069, 0x25dd, 0x0366, 0x7062,\n  0x0389, 0x03ec, 0x03f1, 0x2770, 0x276a, 0x03f0, 0x03f8, 0x2774,\n  0x275f, 0x74ae, 0x2761, 0x2773, 0x74b2, 0x03f2,\n  /* 0x3d */\n  0x03f4, 0x770b, 0x0458, 0x7710, 0x770d, 0x045a, 0x0459, 0x0457,\n  0x045b, 0x2850, 0x787f, 0x7881, 0x04a6, 0x04c2, 0x04c1, 0x293f,\n  0x7a0b, 0x7b4e, 0x04ef, 0x29b0, 0x7dea, 0x7d45, 0x0568, 0x2b35,\n  0x2b2d, 0x0573, 0x056e, 0x0574, 0x2b02, 0x0566, 0x7d28, 0x7d5d,\n  0x7edc, 0x05b9, 0x2c26, 0x7ed4, 0x060c, 0x8164, 0x8168, 0x0620,\n  0x8162, 0x061d, 0x8161, 0x061c, 0x8166, 0x0621, 0x061a, 0x0619,\n  0x80f2, 0x8169, 0x8167, 0x067e, 0x839a, 0x839b, 0x8385, 0x839c,\n  0x069d, 0x83a4, 0x069e, 0x069c, 0x2e6e, 0x8399, 0x8386, 0x8390,\n  0x8481, 0x84ae, 0x2eb1, 0x2ed4, 0x06cd, 0x8538, 0x070b, 0x070a,\n  0x2f85, 0x893b, 0x078f, 0x3272, 0x0795, 0x0790, 0x0791, 0x894c,\n  0x323a, 0x07b9, 0x8947, 0x8935, 0x0797, 0x079e, 0x8933, 0x078b,\n  0x8982, 0x8940, 0x083b, 0x083a, 0x083c, 0x083d,\n  /* 0x3e */\n  0x0839, 0x083e, 0x086b, 0x086c, 0x8c36, 0x8d0e, 0x08a2, 0x08a1,\n  0x089f, 0x8dad, 0x8daa, 0x9017, 0x092d, 0x9067, 0x0936, 0x092b,\n  0x9072, 0x0937, 0xd20a, 0x9061, 0x90b0, 0x36ad, 0x0925, 0x092f,\n  0x092c, 0x906e, 0x9064, 0x0932, 0x908c, 0x9066, 0x3695, 0x906b,\n  0x905f, 0x9074, 0x9065, 0x92bb, 0x92be, 0x09d5, 0x92b9, 0x09d4,\n  0x09d6, 0x92ef, 0x09d1, 0x3943, 0x93da, 0x0a46, 0x398f, 0x9490,\n  0x95e9, 0x0a8c, 0x0a8a, 0x0a88, 0x9611, 0x960d, 0x95ed, 0x9621,\n  0x0add, 0x9781, 0x97b1, 0x9901, 0x0b2d, 0x995e, 0x9962, 0x0b2e,\n  0x0b2c, 0x0b2b, 0x0b30, 0x995b, 0x0b4e, 0x9a96, 0x9a93, 0x0b64,\n  0x0b61, 0x9a92, 0x3c75, 0xd239, 0x0b70, 0x0ba6, 0x0ba4, 0x9bc4,\n  0x9bc7, 0x9bc3, 0x0ba8, 0x0ba2, 0x9bc8, 0x0ba7, 0x3cec, 0x0ba5,\n  0x9bca, 0x0ba9, 0x9bc5, 0x9bcf, 0x9bdc, 0x9c7c,\n  /* 0x3f */\n  0x9d01, 0x0c3d, 0x9ed3, 0x9edc, 0x0c44, 0x0c45, 0x0c46, 0x9ed4,\n  0x3e57, 0x9ecc, 0x0c47, 0x0c48, 0x0c42, 0x9ed6, 0x9edb, 0x0c41,\n  0x9ed5, 0x9fd9, 0x0c94, 0x9fdd, 0x9fdc, 0x9fe0, 0xa0cc, 0x0cc0,\n  0x0cb8, 0x0cc1, 0x0cc2, 0x0cbb, 0x0cbd, 0x0cbf, 0x0cb9, 0x0cb7,\n  0xa0d2, 0x0cc7, 0xa0d3, 0x0d0c, 0x0d0b, 0x407b, 0x0d10, 0xa18d,\n  0x0d5d, 0x4121, 0x0d5a, 0x0d58, 0x0d56, 0xa2d8, 0x0d54, 0x4116,\n  0xa2bc, 0x0da8, 0x0da7, 0x0dcf, 0x0dd0, 0xa48a, 0x41e8, 0xa48b,\n  0xa48d, 0x0dd1, 0x0deb, 0xa553, 0x0dfb, 0x426a, 0xa559, 0x0dfd,\n  0x0df8, 0x0df7, 0x0e00, 0xa556, 0xa557, 0x0df6, 0x425f, 0xa673,\n  0xa81b, 0x0edf, 0xa821, 0xa816, 0xa818, 0x0ee2, 0x0ee4, 0xa844,\n  0x4482, 0xa826, 0x0ee3, 0xa936, 0x0f59, 0x0f71, 0x0f8e, 0x0f8c,\n  0xab3a, 0x0fa4, 0xabf4, 0x4655, 0x1014, 0xae62,\n};\n\nstatic const ucs4_t cns11643_4a_2uni_upages[212] = {\n  0x03400, 0x03500, 0x03600, 0x03700, 0x03800, 0x03900, 0x03a00, 0x03b00,\n  0x03c00, 0x03d00, 0x03e00, 0x03f00, 0x04000, 0x04100, 0x04200, 0x04300,\n  0x04400, 0x04500, 0x04600, 0x04700, 0x04800, 0x04900, 0x04a00, 0x04b00,\n  0x04e00, 0x04f00, 0x05000, 0x05100, 0x05200, 0x05300, 0x05400, 0x05500,\n  0x05600, 0x05700, 0x05800, 0x05900, 0x05a00, 0x05b00, 0x05c00, 0x05d00,\n  0x05e00, 0x05f00, 0x06000, 0x06100, 0x06200, 0x06300, 0x06500, 0x06600,\n  0x06700, 0x06800, 0x06900, 0x06b00, 0x06c00, 0x06d00, 0x06e00, 0x07000,\n  0x07100, 0x07200, 0x07300, 0x07400, 0x07500, 0x07600, 0x07700, 0x07800,\n  0x07900, 0x07a00, 0x07b00, 0x07c00, 0x07d00, 0x07f00, 0x08000, 0x08100,\n  0x08200, 0x08300, 0x08400, 0x08600, 0x08800, 0x08900, 0x08a00, 0x08c00,\n  0x08e00, 0x08f00, 0x09000, 0x09100, 0x09200, 0x09500, 0x09600, 0x09700,\n  0x09a00, 0x0ff00, 0x20000, 0x20100, 0x20200, 0x20300, 0x20400, 0x20500,\n  0x20600, 0x20700, 0x20800, 0x20900, 0x20a00, 0x20b00, 0x20c00, 0x20d00,\n  0x20e00, 0x21100, 0x21200, 0x21300, 0x21500, 0x21600, 0x21700, 0x21900,\n  0x21a00, 0x21b00, 0x21c00, 0x21d00, 0x21e00, 0x21f00, 0x22000, 0x22100,\n  0x22200, 0x22300, 0x22400, 0x22500, 0x22600, 0x22700, 0x22900, 0x22a00,\n  0x22b00, 0x22c00, 0x22e00, 0x22f00, 0x23000, 0x23100, 0x23200, 0x23300,\n  0x23400, 0x23500, 0x23800, 0x23900, 0x23a00, 0x23b00, 0x23c00, 0x23d00,\n  0x23e00, 0x24100, 0x24200, 0x24500, 0x24600, 0x24700, 0x24800, 0x24900,\n  0x24a00, 0x24b00, 0x24c00, 0x24d00, 0x24f00, 0x25000, 0x25100, 0x25300,\n  0x25400, 0x25600, 0x25700, 0x25900, 0x25a00, 0x25b00, 0x25e00, 0x25f00,\n  0x26000, 0x26200, 0x26300, 0x26400, 0x26500, 0x26600, 0x26700, 0x26800,\n  0x26900, 0x26a00, 0x26b00, 0x26c00, 0x27100, 0x27200, 0x27500, 0x27600,\n  0x27700, 0x27800, 0x27900, 0x27b00, 0x27c00, 0x27d00, 0x27e00, 0x27f00,\n  0x28200, 0x28400, 0x28500, 0x28600, 0x28700, 0x28800, 0x28c00, 0x28e00,\n  0x28f00, 0x29000, 0x29100, 0x29200, 0x29400, 0x29500, 0x29600, 0x29a00,\n  0x29d00, 0x2f800, 0x2f900, 0x2fa00,\n};\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643_4b.h",
    "content": "/*\n * Copyright (C) 1999-2002 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992 plane 4 part b\n */\n\nstatic const unsigned short cns11643_4b_2uni_page40[4384] = {\n  /* 0x40 */\n  0xb65b, 0xb66a, 0x1011, 0xb668, 0x101b, 0x1012, 0x100e, 0x1015,\n  0x3f68, 0x1010, 0xb681, 0x1017, 0x4046, 0x4043, 0x1070, 0x10ed,\n  0xbae7, 0x10ee, 0xbae6, 0xbad1, 0xbb11, 0x4181, 0xbad0, 0xbad9,\n  0xbb0a, 0x10f4, 0xbada, 0xbadd, 0xbac8, 0xbae2, 0xbae9, 0xbacb,\n  0x417c, 0xbacc, 0xbac1, 0x416a, 0xbade, 0x4188, 0x10f2, 0x10f8,\n  0x10f3, 0xbb51, 0xbb12, 0x10fa, 0xbae0, 0xbb2b, 0xf6b4, 0xc0d8,\n  0xc0d1, 0x4410, 0xc0d2, 0xc0cd, 0x441f, 0x11b6, 0x11b7, 0xc13d,\n  0x440f, 0xc0ca, 0x11ba, 0xc0cb, 0x11bc, 0xc0d7, 0xc3f4, 0x123b,\n  0x45d3, 0x122f, 0xc487, 0xc48b, 0xc483, 0x1237, 0x1299, 0xc7c5,\n  0xc7d2, 0xc7c6, 0xc7d3, 0x12d9, 0x12d8, 0x12d7, 0xc7f0, 0xc7cd,\n  0xc7cc, 0xc7dc, 0xc7d6, 0x1336, 0xc9e6, 0xca41, 0xca3f, 0x4987,\n  0xcac5, 0xcac0, 0xcac6, 0xcabe, 0xcabf, 0x49c6,\n  /* 0x41 */\n  0x1370, 0xcb63, 0xccd3, 0xccda, 0xccd5, 0x13a5, 0x13a6, 0x13a9,\n  0x13ee, 0x1454, 0xd0ee, 0x1457, 0xd0fc, 0xd214, 0x14a1, 0xd323,\n  0xd322, 0xd330, 0xd4b5, 0x14d3, 0xd538, 0x14d4, 0xd53f, 0x14d7,\n  0x4dcc, 0x4e6d, 0x4e70, 0x14f7, 0x14f6, 0x14f9, 0x14f8, 0x4f58,\n  0x4f42, 0x4f68, 0x4f69, 0xd768, 0xd767, 0x4f43, 0xd765, 0x4f47,\n  0x158a, 0xda75, 0xdaf7, 0xdaf3, 0xdaf6, 0x1594, 0xdb00, 0x1593,\n  0xdaff, 0xdaf5, 0x529d, 0x15dd, 0x15dc, 0x15f7, 0x53cf, 0xde92,\n  0xe006, 0x1642, 0xe007, 0xe06b, 0x1654, 0xe06c, 0x1655, 0xe193,\n  0x168f, 0xe194, 0x54f4, 0x16b4, 0x16b3, 0xe262, 0xe263, 0x5509,\n  0xe25f, 0xe264, 0xe25b, 0xe259, 0x16fb, 0x16fd, 0xe3a4, 0xe3ac,\n  0x55ab, 0x16fc, 0xe4b5, 0x172c, 0x172f, 0xe4ae, 0x172b, 0xe4c5,\n  0x1733, 0x1734, 0x55fb, 0xe63b, 0x57ac, 0x57ae,\n  /* 0x42 */\n  0x57aa, 0x17e8, 0xe8bf, 0xea2b, 0xea84, 0xea80, 0xeb4d, 0xeb4f,\n  0x585c, 0xeb4c, 0xed92, 0x195d, 0x1ad2, 0x0085, 0x0088, 0x5fae,\n  0x5f79, 0x008e, 0x0084, 0x5f71, 0x1adf, 0x5fb3, 0x0083, 0x5f2c,\n  0x5f77, 0x612f, 0x63c3, 0x0102, 0x63cd, 0x0106, 0x0105, 0x63c9,\n  0x00fe, 0x0101, 0x0100, 0x63ce, 0x64a5, 0x64a0, 0x64fe, 0x6559,\n  0x669a, 0x01e7, 0x1e19, 0x68e4, 0x68d7, 0x68dc, 0x01e6, 0x68e7,\n  0x01ed, 0x01e2, 0x01eb, 0x68e5, 0x01e8, 0x01ec, 0x1e0a, 0x0224,\n  0x1f9a, 0x6e14, 0x0262, 0x6df1, 0x0261, 0x0260, 0x0264, 0x028b,\n  0x6fb6, 0x706e, 0x706c, 0x7081, 0x7142, 0x0319, 0x0316, 0x0318,\n  0x0322, 0x711a, 0x031d, 0x0317, 0x031e, 0x7127, 0x7125, 0x7117,\n  0x711c, 0x713d, 0x7120, 0x0369, 0x036a, 0x7381, 0x036c, 0x037a,\n  0x038a, 0x7509, 0x75c6, 0x75c4, 0x039c, 0x75c5,\n  /* 0x43 */\n  0x03fd, 0x03f9, 0x76ef, 0x03ff, 0x76df, 0x76de, 0x76ee, 0x76f5,\n  0x76ec, 0x03fc, 0x76dd, 0x2385, 0x03fb, 0x0402, 0x045f, 0x2456,\n  0x045e, 0x045d, 0x045c, 0x7822, 0x2451, 0x0492, 0x7997, 0x7995,\n  0x0494, 0x0495, 0x04d1, 0x7ba9, 0x04f1, 0x7c53, 0x25b1, 0x7c56,\n  0x7c55, 0x0577, 0x056f, 0x7de3, 0x7de2, 0x0587, 0x057d, 0x057c,\n  0x057e, 0x0585, 0x058b, 0x0586, 0x0580, 0x5dfd, 0x7da9, 0x0578,\n  0xf5ab, 0x7e33, 0x7e0a, 0x05ba, 0x8059, 0x0633, 0x81bc, 0x062d,\n  0x81c4, 0x81c7, 0x81c6, 0x0637, 0x275a, 0x2763, 0x81b8, 0x81da,\n  0x062e, 0x81b7, 0x81c0, 0x063d, 0x81cd, 0x06a0, 0x84bc, 0x84ab,\n  0x06a3, 0x8586, 0x299b, 0x875a, 0x29a3, 0x070e, 0x299e, 0x8843,\n  0x07b6, 0x89ac, 0x07ab, 0x07ad, 0x07a6, 0x89be, 0x2ab8, 0x07aa,\n  0x2aba, 0x07b1, 0x89ab, 0x07a8, 0x07af, 0x07b0,\n  /* 0x44 */\n  0x07a7, 0x07b2, 0x079d, 0x07a5, 0x07b5, 0x743e, 0x2ac7, 0x2ad7,\n  0x8cf9, 0x0841, 0x8cf3, 0x8cf7, 0x2c70, 0x8e45, 0x8e48, 0x0872,\n  0x2c9d, 0x086f, 0x0871, 0x8e44, 0x0885, 0x8eaf, 0x8eb1, 0x08a4,\n  0x08a5, 0x08a6, 0x8fcf, 0x08a8, 0x8fcb, 0x8fcd, 0x08a3, 0x9050,\n  0x91ec, 0x921a, 0x2d16, 0x2d24, 0x91d8, 0x0943, 0x91d0, 0x91d1,\n  0x093d, 0x0945, 0x917b, 0x91d2, 0x0944, 0x91d4, 0x91e7, 0x91df,\n  0x91de, 0x2d45, 0x91d9, 0x91cf, 0x950d, 0x09e3, 0x2f79, 0x5dfd,\n  0x09df, 0x09e4, 0x2f7a, 0x09e5, 0x9538, 0x3054, 0x0a22, 0x0a4a,\n  0x98a9, 0x0a49, 0x0a44, 0x0a4b, 0x0a87, 0x0a89, 0x0a92, 0x0a91,\n  0x0a90, 0x0a8e, 0x993e, 0x9946, 0x9aed, 0xf630, 0x0b12, 0x0b10,\n  0x0b11, 0x9c6c, 0x0b32, 0x0b34, 0x0b37, 0x0b33, 0x0b36, 0x0b35,\n  0x0b65, 0x9dac, 0x337c, 0x337b, 0x9ec9, 0x3412,\n  /* 0x45 */\n  0x0bb0, 0x9f12, 0x0baf, 0x0baa, 0x9efd, 0x9f01, 0x9f11, 0x0bab,\n  0x9f89, 0x9f05, 0x9efe, 0x9f0b, 0x9f20, 0x9f04, 0xa088, 0x0bf3,\n  0xa102, 0x0bf4, 0xa103, 0x34b6, 0x34e0, 0x0c08, 0x0c4e, 0x0c55,\n  0x0c4b, 0xa229, 0xa23b, 0x0c4d, 0x3573, 0xa206, 0x0c52, 0x3572,\n  0x0c4c, 0x3570, 0x0c50, 0x0c53, 0xa203, 0x0c51, 0xa378, 0xa379,\n  0xa37d, 0x0c89, 0xa37f, 0x0c95, 0x0ccc, 0x0cc8, 0x0cce, 0xa432,\n  0x0cca, 0xa400, 0x369d, 0xa422, 0x0ccd, 0xa5a9, 0x0d5c, 0x0d67,\n  0x0d69, 0x0d65, 0x0d62, 0xa704, 0x3827, 0x3835, 0xf659, 0x0daa,\n  0xa8b8, 0xa99b, 0x0dd2, 0x39a2, 0x0e03, 0x0e0c, 0xaa92, 0x0e09,\n  0x0e06, 0x0e05, 0x3989, 0xaa8f, 0x0e0b, 0x0e08, 0xaa98, 0x39a5,\n  0xaaae, 0x0e8e, 0xad9d, 0x3ab6, 0x0ee8, 0xaf49, 0xaf50, 0xaf46,\n  0x0eea, 0xaf4e, 0x3ba5, 0x3bc3, 0xaf55, 0x0ee9,\n  /* 0x46 */\n  0x0eeb, 0xaf64, 0x0ef0, 0xb138, 0x0f4b, 0x3dab, 0x0f73, 0x0f75,\n  0x0f92, 0x0f91, 0x0f93, 0x3e25, 0x0fa7, 0x0fa6, 0x0fa8, 0x0faa,\n  0xb3fe, 0x0fa9, 0x3e59, 0x0fbb, 0x0fbc, 0x0fba, 0x0fbd, 0x1027,\n  0x3f85, 0xb6a6, 0x1024, 0x101e, 0x101f, 0x101d, 0x1020, 0x1023,\n  0x1029, 0x1022, 0xb69c, 0xb699, 0x101c, 0x3f8e, 0x1028, 0xb6b5,\n  0xb6a3, 0xb6a0, 0xb6a7, 0xb69b, 0xb8df, 0xb8e1, 0x1071, 0x1073,\n  0x1072, 0xb94d, 0x1102, 0xbbf3, 0xbb6f, 0xbb69, 0x10fe, 0x41be,\n  0xbb6b, 0xbb78, 0xbb87, 0x1108, 0xbb85, 0xbb82, 0xbb90, 0x1107,\n  0x1104, 0xbb80, 0xbb67, 0x1100, 0x10fc, 0xbb61, 0x1144, 0xbb93,\n  0x10f1, 0xbbf2, 0xbb86, 0x41a6, 0x1106, 0xbfcd, 0xbfc4, 0x11c6,\n  0x11c3, 0x11c1, 0x11c2, 0xc10f, 0x11c4, 0x11c7, 0xc10d, 0x11bf,\n  0x11d2, 0xc173, 0x11ca, 0xf6ba, 0xc10a, 0x442f,\n  /* 0x47 */\n  0xc108, 0xc113, 0x1213, 0xc3f8, 0x1230, 0x123e, 0x1239, 0xc4ab,\n  0xc4a8, 0x123c, 0x123f, 0xc4a5, 0x1234, 0x123d, 0xc4c3, 0xc4a4,\n  0x1238, 0xc4d4, 0xc4ba, 0xc5f1, 0x46a0, 0x1282, 0xc63f, 0x1283,\n  0xc6ea, 0x129b, 0xc7f7, 0x12e0, 0x12dd, 0xc7fa, 0xc7f5, 0x12de,\n  0xc7fe, 0x12e3, 0x12e5, 0xc800, 0x4797, 0x12e2, 0xc802, 0xc7fb,\n  0xc807, 0x12df, 0xc81a, 0x132e, 0xc9b8, 0x1337, 0x1338, 0xc9e9,\n  0xc9eb, 0xca50, 0xca4f, 0x498b, 0xcb86, 0x0162, 0xcb8e, 0x1394,\n  0x1393, 0x13ab, 0x13ad, 0xccf0, 0xccfb, 0x13f5, 0x13f7, 0xce42,\n  0x13f6, 0x13f8, 0xce85, 0x13fb, 0x13f9, 0x1458, 0x145a, 0xd105,\n  0x1459, 0x4c0f, 0x1485, 0x14a4, 0x14d8, 0x14d9, 0xd54b, 0x14dd,\n  0x14c8, 0xd563, 0x14fa, 0x14fb, 0x4f75, 0x1527, 0x4f9f, 0x152a,\n  0x1525, 0xd799, 0x1528, 0xda81, 0xdb17, 0xdb10,\n  /* 0x48 */\n  0xdb12, 0x52a6, 0x1595, 0x539a, 0xdcfa, 0xdcf3, 0xdcf2, 0xdcf5,\n  0xdcf6, 0xddbb, 0xddc2, 0xdea7, 0x160f, 0x1611, 0xdea8, 0xdea3,\n  0x1610, 0xdeaa, 0x1615, 0x1613, 0x5457, 0xdfdc, 0x1647, 0x1646,\n  0xe00f, 0x1659, 0x165b, 0xe079, 0x165e, 0xe07f, 0xe085, 0x165a,\n  0x1691, 0x1692, 0x1690, 0x1693, 0xe21b, 0x54f7, 0x16be, 0xe277,\n  0xe276, 0xe298, 0x16bc, 0x16bb, 0x16b7, 0x16b9, 0xe27a, 0x1701,\n  0x16fe, 0xe3bc, 0xe3ba, 0x1702, 0xe3b6, 0x16ff, 0x55b0, 0xe3b4,\n  0x1700, 0xe4cf, 0x1737, 0x173a, 0x176f, 0x1777, 0x1779, 0x56c6,\n  0xe67b, 0x17c8, 0xe81c, 0xe821, 0xe81d, 0xe8c0, 0x17f2, 0xe8ff,\n  0x17f1, 0x17f0, 0x5862, 0xeb56, 0x1834, 0xeda1, 0xeda2, 0xeda6,\n  0xf056, 0xf057, 0x192c, 0x192d, 0xf101, 0xf1ed, 0xf71c, 0xf3f2,\n  0x1afa, 0x5fb8, 0x0091, 0x5fc0, 0x0094, 0x5fb7,\n  /* 0x49 */\n  0x5fe1, 0x00c4, 0x010a, 0x63e8, 0x1c85, 0x64b2, 0x0152, 0x66ae,\n  0x0159, 0x026f, 0x697e, 0x01f2, 0x01f4, 0x1e43, 0x6976, 0x01f1,\n  0x1e3c, 0x6996, 0x026a, 0x6e20, 0x6e21, 0x6e23, 0x6e29, 0x7077,\n  0x7151, 0x0324, 0x7156, 0x0323, 0x7188, 0x7159, 0x7155, 0x0327,\n  0x7297, 0x7298, 0x036d, 0x21ed, 0x036e, 0x036f, 0x73a1, 0x73a3,\n  0x2235, 0x039f, 0x040a, 0x0406, 0x040e, 0x770a, 0x040d, 0x0405,\n  0x773d, 0x770c, 0x040b, 0x0410, 0x042e, 0x783d, 0x7839, 0x79b0,\n  0x79b2, 0x79ae, 0x0496, 0x0497, 0x04c4, 0x2547, 0x04c5, 0x7b20,\n  0x04d2, 0x7c6e, 0x7c6d, 0x7c6a, 0x0581, 0x7e32, 0x058e, 0x0590,\n  0x058f, 0x7e39, 0x0591, 0x0595, 0x0593, 0x7da3, 0x266d, 0x7e7f,\n  0x7e35, 0x7e3d, 0x7ff4, 0x7ff5, 0x063b, 0x0648, 0x8248, 0x8228,\n  0x0646, 0x0647, 0x8227, 0x8232, 0x822c, 0x064c,\n  /* 0x4a */\n  0x822e, 0x064a, 0x0650, 0x0643, 0x8223, 0x8231, 0xf5c5, 0x0649,\n  0x06a6, 0x06a5, 0x06a4, 0x84c9, 0x8589, 0x06b9, 0x85bb, 0x06ce,\n  0x06cf, 0x0713, 0x8897, 0x8893, 0x8a28, 0x07c6, 0x07c5, 0x07ca,\n  0x07d9, 0x07c1, 0x8a18, 0x8a3b, 0x2af5, 0x8a27, 0x8a24, 0x8a1b,\n  0x8a31, 0x07cb, 0x8a26, 0x8aa3, 0x8a3f, 0x8a22, 0x8a19, 0x2b03,\n  0x8a41, 0x8a2b, 0x2b65, 0x0842, 0x8d0c, 0x2c75, 0x0874, 0x0873,\n  0x8e4e, 0x8eb9, 0x8efa, 0x8fe9, 0x8fe8, 0x8fe4, 0x2d8a, 0x2d56,\n  0x0952, 0x925f, 0x925d, 0x9252, 0x0950, 0x9274, 0x094b, 0x9246,\n  0x094c, 0x096d, 0x92aa, 0x2d98, 0x924a, 0x9259, 0x924b, 0x094f,\n  0x2d68, 0x09f0, 0x9550, 0x3034, 0x3045, 0x0a4d, 0x0a4c, 0x98d0,\n  0x0a4f, 0x0a4e, 0x0a50, 0x98cc, 0x315c, 0x0a96, 0x3156, 0x9964,\n  0x9965, 0x0a97, 0x0a95, 0x0a98, 0x995c, 0x9b15,\n  /* 0x4b */\n  0x0aec, 0x0aeb, 0x0b13, 0x0b14, 0x0b38, 0x0b3a, 0x0b39, 0x9c79,\n  0x0b68, 0x0b67, 0x9dc5, 0x9db8, 0x9f2c, 0x0bbe, 0x0bbc, 0x9f37,\n  0x9f35, 0x9f31, 0x0bbb, 0x9f2f, 0x0bba, 0x9f2b, 0x0bb9, 0x0bb7,\n  0x9f2d, 0x9f2a, 0x0bc1, 0xa095, 0x0bf7, 0xa23e, 0x0c60, 0xa247,\n  0xa245, 0x0c59, 0x0c5c, 0x0c5a, 0x0c58, 0xa252, 0x0c5b, 0xa270,\n  0xa250, 0xa258, 0xa251, 0xa23d, 0x0c5d, 0xa241, 0xa20c, 0xa23c,\n  0xa386, 0xa383, 0xa389, 0xa3f3, 0x0cd4, 0x0cd3, 0x36bf, 0x0cd2,\n  0x36bd, 0xa42d, 0x0cd7, 0x0cd1, 0x36e4, 0x0cd5, 0xa5c5, 0xf655,\n  0x0d6d, 0x0d6f, 0x3834, 0x0d75, 0x0d6c, 0x0d74, 0xa743, 0x0d73,\n  0xa737, 0xa745, 0x3836, 0x0dac, 0xa8e5, 0xa9a6, 0xaadb, 0x0e10,\n  0xaada, 0xaae6, 0x39ba, 0x39bc, 0x0e0f, 0x39c8, 0x0e23, 0x39c3,\n  0x0e1d, 0x39b6, 0x0e0e, 0xaaf8, 0xaae9, 0x0e15,\n  /* 0x4c */\n  0x39c2, 0x0e13, 0xaae8, 0xaaf6, 0x0e1b, 0x39c5, 0x0e22, 0x0e26,\n  0xaae7, 0x39bd, 0x39b0, 0x0e21, 0x0e1c, 0x0e17, 0xaad5, 0x0e1a,\n  0x39bb, 0xadd3, 0xadc7, 0xadd1, 0x0e99, 0xadc3, 0x0e97, 0xaf80,\n  0xaf98, 0x0efd, 0xaf84, 0x0ef6, 0x0efe, 0x0ef5, 0x0eff, 0x0ef7,\n  0xaf97, 0xaf83, 0xaf81, 0x0f01, 0x3c04, 0xaf8c, 0xb142, 0xb2ab,\n  0x0f77, 0xb2a3, 0xb2a6, 0xb35c, 0xb369, 0xb367, 0x0fab, 0xb48b,\n  0xb4a8, 0x0fc0, 0xb6d8, 0x1031, 0x102e, 0xf689, 0xb6dc, 0x102c,\n  0xb6e0, 0xb6e5, 0x1032, 0x102f, 0x102b, 0x102d, 0x1033, 0xb818,\n  0xb819, 0x3ff1, 0x1057, 0x105c, 0x107b, 0xb95f, 0xb95e, 0x107a,\n  0xbc02, 0x4222, 0x1113, 0x111e, 0x1117, 0x1120, 0x112a, 0x1111,\n  0x1115, 0x110f, 0x1118, 0x4238, 0xbc12, 0xbc36, 0x112c, 0x4232,\n  0xf6a8, 0x4210, 0xbc23, 0xbc03, 0x111c, 0xbc00,\n  /* 0x4d */\n  0x1129, 0xbc46, 0xbc61, 0x1112, 0x424f, 0x1197, 0xc184, 0x4472,\n  0xc16b, 0xc162, 0xc156, 0xc16a, 0xc152, 0xc155, 0x11d4, 0x11d0,\n  0x447c, 0xc161, 0xf6bb, 0xc158, 0xc177, 0x11d3, 0x1214, 0xc4d7,\n  0x1246, 0x1245, 0xc4de, 0x1243, 0xc4df, 0x460d, 0x1244, 0x1248,\n  0xc4d1, 0x1247, 0xc4e2, 0xc4e1, 0xc4dd, 0x4608, 0x1249, 0x1285,\n  0xc64b, 0x1284, 0xc64e, 0x129d, 0xc6fc, 0x129e, 0x12a0, 0xc6fa,\n  0x129c, 0xc6fb, 0x129f, 0xc6fe, 0x12f7, 0x12ea, 0xc831, 0x12ef,\n  0x12e9, 0x12f3, 0x12f0, 0x12eb, 0xc838, 0x12ec, 0x12f2, 0x12f5,\n  0x12ee, 0xc83a, 0xc9bb, 0x133a, 0x134b, 0xca59, 0x134a, 0x134c,\n  0xcadb, 0xcadf, 0xcae2, 0x1379, 0x137b, 0x1378, 0xcb9e, 0xcba1,\n  0x13b5, 0xcd10, 0x13b4, 0x13b7, 0x4a9e, 0x1409, 0x13fe, 0x1408,\n  0x1407, 0xce76, 0xce7f, 0xce7d, 0x1406, 0x1404,\n  /* 0x4e */\n  0x1405, 0x13ff, 0x140b, 0xce82, 0xd057, 0x143b, 0x145d, 0x145c,\n  0x145f, 0x145e, 0x4c28, 0xd12e, 0x4c21, 0x1483, 0xd38b, 0xd38d,\n  0x14a7, 0x4d66, 0x4d6c, 0xd390, 0x14a8, 0xd4ec, 0xd56f, 0xd56b,\n  0xd571, 0xd578, 0x4df6, 0x14e0, 0x14df, 0x14fe, 0x14fc, 0x14ff,\n  0x14fd, 0xd7ad, 0x152c, 0x4fec, 0x4fba, 0x4fe3, 0x4fbd, 0x159d,\n  0xdb2f, 0x52b4, 0xdd78, 0x1640, 0xdff8, 0xe019, 0x165f, 0xe09b,\n  0xe094, 0xe097, 0xe099, 0xe1a6, 0xe1a4, 0xe1a7, 0x54d1, 0xe295,\n  0x16c0, 0x5523, 0xe290, 0x16c1, 0x16c6, 0xe29b, 0xe3c4, 0x1704,\n  0x1705, 0xe3c6, 0x560b, 0x173e, 0x173d, 0x1740, 0x173f, 0xe4e3,\n  0x1742, 0xe4df, 0xe4dd, 0xe4e7, 0x1784, 0x1782, 0x177f, 0x1785,\n  0xe82d, 0xe82c, 0x17cc, 0x57b2, 0x17cb, 0x17cd, 0xe834, 0xe838,\n  0x57db, 0xe91d, 0x17f5, 0xe91a, 0xe91b, 0xe914,\n  /* 0x4f */\n  0x57f0, 0xe917, 0xea21, 0x1820, 0x1821, 0xeaaa, 0xeaa1, 0x1837,\n  0x183e, 0x5873, 0x183d, 0x586e, 0xeb63, 0xeb79, 0xeb60, 0x5865,\n  0xeb62, 0x183c, 0xeb61, 0x1838, 0x586a, 0xeb70, 0x586d, 0xeb6a,\n  0x183b, 0xedc8, 0x18b0, 0xedc5, 0xedbe, 0xedc2, 0x18ad, 0x18b2,\n  0x18b8, 0x5a0b, 0xedc7, 0x18af, 0xedb0, 0xedca, 0x191a, 0x5b76,\n  0x1920, 0x1921, 0x1930, 0x5ba8, 0x192f, 0xf10d, 0xf107, 0xf196,\n  0xf1ef, 0x195f, 0x1960, 0xf21e, 0xf21d, 0x5c11, 0xf390, 0x5feb,\n  0x008a, 0x1b19, 0x009c, 0x5fee, 0x009a, 0x5fef, 0x5fec, 0x63fa,\n  0x010c, 0x010b, 0x010d, 0x1c92, 0x6504, 0x69d3, 0x01fe, 0x69d1,\n  0x69fa, 0x01ff, 0x01fb, 0x01fc, 0x0209, 0x69c8, 0x0200, 0x69d5,\n  0x1e75, 0x69cd, 0x69d2, 0x69fb, 0x6c2a, 0x6e88, 0x6e61, 0x0271,\n  0x6e63, 0x6e62, 0x206f, 0x5e57, 0x71c8, 0x7198,\n  /* 0x50 */\n  0x032b, 0x73c1, 0x773f, 0x7741, 0x0414, 0x0411, 0x0412, 0x7852,\n  0x0463, 0x785e, 0x046e, 0x049a, 0x79c7, 0x049b, 0x7a70, 0x7b27,\n  0x04c8, 0x7b71, 0x7bb0, 0x04f6, 0x7e42, 0x7e43, 0x26a5, 0x058c,\n  0x0597, 0x05a2, 0x26a0, 0x7e57, 0x7e9d, 0x8289, 0x828d, 0x828b,\n  0x8280, 0x8292, 0x828a, 0x82c8, 0x0654, 0x828f, 0x8293, 0x8291,\n  0x06a8, 0x84f2, 0x84de, 0x06a9, 0x85c8, 0x28b4, 0x28d8, 0x29c2,\n  0x0718, 0x0717, 0x071d, 0x87a7, 0x87a1, 0x0731, 0x8a8c, 0x8a7f,\n  0x07d8, 0x07d5, 0x8a7b, 0x8a95, 0x8a99, 0x07e1, 0x8a8e, 0x07d4,\n  0x8ada, 0x8a8a, 0x8a9c, 0x07e3, 0x8a7e, 0x0844, 0x0845, 0x8d1a,\n  0x8e55, 0x0876, 0x0875, 0x8e60, 0x2ca8, 0x0888, 0x08aa, 0x8ffb,\n  0x08ab, 0x08ac, 0x8ffd, 0x0957, 0x2d83, 0x0960, 0x095d, 0x096b,\n  0x92d0, 0x0963, 0x0967, 0x92c5, 0x095e, 0x92d2,\n  /* 0x51 */\n  0x9311, 0x2dc5, 0x2fcd, 0x09f9, 0x09f3, 0x95ad, 0x95a4, 0x95a9,\n  0x95b0, 0x959d, 0x09f6, 0x9798, 0x309c, 0x0a51, 0x0a53, 0x0a52,\n  0x9992, 0x0a9b, 0x998a, 0x0a9c, 0x998d, 0x9996, 0x0af7, 0x3299,\n  0x328f, 0x3291, 0x9b45, 0x9b4b, 0x9c0f, 0x9c16, 0x0b3b, 0x9c8a,\n  0x0b3e, 0x0b3d, 0x9dc9, 0x0b69, 0x9dc8, 0x9dca, 0x9f64, 0x0bc3,\n  0x0bc4, 0x0bc7, 0x9f5d, 0x9f63, 0x3439, 0x0bc6, 0x342e, 0x0bc8,\n  0x9f88, 0xa03a, 0xa039, 0x349f, 0x34a0, 0x0be6, 0x0bf8, 0xa117,\n  0xa193, 0x0c07, 0xa195, 0x0c64, 0x0c68, 0xa276, 0x3594, 0x0c65,\n  0x35ae, 0xa280, 0xa27b, 0x0c69, 0xa248, 0xa2a8, 0xa288, 0xa38b,\n  0xa38a, 0xa38c, 0xa3fc, 0x0cda, 0x0ce0, 0x36e6, 0xa458, 0x0cde,\n  0xa451, 0xa455, 0xa453, 0x0d1c, 0x0d1d, 0x0d1a, 0xa5dc, 0x0d7b,\n  0x0d7a, 0x0d7c, 0xa75c, 0x0d78, 0x0d77, 0xa765,\n  /* 0x52 */\n  0xf65a, 0x0db1, 0xa8ee, 0x0db2, 0x0db0, 0xa8f0, 0x38bc, 0xa8f2,\n  0x0e36, 0xab35, 0x0e2e, 0xab22, 0x39d6, 0xab20, 0x0e34, 0xab2d,\n  0xab28, 0xab26, 0xab3c, 0x0e2a, 0xab38, 0x0e33, 0x0e2d, 0x0e2f,\n  0x0e31, 0x0e2b, 0x0e32, 0xab2a, 0x0e35, 0xab1a, 0xab30, 0xaae3,\n  0xab19, 0xade9, 0xade7, 0x3acf, 0xafd6, 0xafc4, 0x0f08, 0xaf87,\n  0x0f06, 0xafc7, 0xafd9, 0x3c18, 0xafdf, 0x0f4d, 0x0f61, 0xb20a,\n  0xb201, 0xb2b1, 0x0f78, 0xb2c1, 0x0f94, 0x0f95, 0xb376, 0xb40d,\n  0xb40e, 0x0fc1, 0x0fc3, 0x3e6d, 0xb707, 0x1039, 0xb709, 0xb716,\n  0x103a, 0x103b, 0x1035, 0x1036, 0xb70e, 0x103c, 0x3f90, 0xb706,\n  0xb81e, 0xb84a, 0x1058, 0x107c, 0x107d, 0x108d, 0x108c, 0xbca6,\n  0xbc91, 0x113b, 0x113f, 0xbcb8, 0xbc96, 0x1132, 0x112d, 0xbcc5,\n  0x112f, 0x1139, 0x112e, 0x113a, 0xbd0a, 0x1136,\n  /* 0x53 */\n  0x1131, 0x113e, 0x1138, 0x4252, 0x1134, 0xbcb2, 0x1141, 0xbcb7,\n  0xbcb4, 0xbc89, 0xbc8d, 0x1130, 0xbc87, 0xbcc2, 0xbc9c, 0xbc92,\n  0x1143, 0xbcca, 0x4250, 0xbc8a, 0xbfe0, 0x1198, 0xbfe6, 0xbfe5,\n  0x44a0, 0xc1a5, 0xc1b3, 0x4486, 0x11da, 0x11d7, 0xc1b5, 0xc1af,\n  0x4495, 0xc1b0, 0xc1cc, 0x448c, 0xc1a2, 0xc1be, 0xc1c6, 0xc1ac,\n  0xc1ae, 0x1218, 0x4560, 0xf6c3, 0xc508, 0xc505, 0x1252, 0x4628,\n  0xc4fe, 0x124e, 0x4620, 0xc500, 0x124f, 0x1250, 0xc664, 0xc668,\n  0x46a8, 0x1286, 0x1287, 0x1289, 0xc66a, 0xc669, 0xc70d, 0xc712,\n  0x12a2, 0x12a3, 0xc70f, 0x12a1, 0xc867, 0xc879, 0xc872, 0xc866,\n  0xc87c, 0x12f9, 0x12fd, 0xc868, 0xc885, 0xc876, 0xc874, 0xc871,\n  0xc864, 0x133e, 0x133c, 0xc9f8, 0x134d, 0xca6c, 0x134e, 0xcaeb,\n  0x1381, 0x1383, 0x1382, 0xcbb8, 0x1380, 0x1388,\n  /* 0x54 */\n  0xcd2d, 0xcd2e, 0xcd28, 0xcd29, 0xcd31, 0x13b9, 0xcd2f, 0xcd2a,\n  0x4b3a, 0xcea4, 0xceb7, 0xcebf, 0x1411, 0x140d, 0x1410, 0x1413,\n  0xd063, 0x143c, 0x1462, 0x1463, 0xd167, 0xd3be, 0xf6e0, 0xd595,\n  0xd59c, 0x1503, 0x1506, 0x1502, 0x1501, 0xd671, 0xd672, 0x1505,\n  0xd66f, 0x4e94, 0x5011, 0xd7f1, 0x5037, 0x1536, 0xd7e8, 0x1535,\n  0x5043, 0xf6ea, 0x15a1, 0x15a3, 0xdb49, 0xdb64, 0x15a0, 0xdb48,\n  0x15ea, 0x53a6, 0x15e8, 0xdd2c, 0xdde1, 0xddef, 0xdec0, 0x1621,\n  0x161b, 0xded7, 0xded4, 0x1649, 0x1648, 0xe0ad, 0x5495, 0x1662,\n  0x1661, 0x1664, 0x1660, 0x1663, 0xe0ae, 0xe0ac, 0x5496, 0x1666,\n  0x16ac, 0x16ab, 0xe227, 0xe2ae, 0x16c3, 0xe2b0, 0x16c4, 0x5525,\n  0xe2c0, 0xe2c4, 0x1708, 0x1709, 0x170a, 0x1706, 0x1707, 0x1741,\n  0xe507, 0x1745, 0xe4fd, 0x1743, 0x1744, 0x5626,\n  /* 0x55 */\n  0x5634, 0x1747, 0xf704, 0xe61b, 0xe61c, 0x1771, 0xe6b2, 0xe6b4,\n  0xe6b7, 0xe6b1, 0xe6b3, 0xe6ae, 0x178b, 0x17d4, 0x17d3, 0x17d1,\n  0x57ba, 0x17d2, 0xe83f, 0xe936, 0x17f7, 0x17f8, 0xe931, 0xe93b,\n  0xe935, 0xe93a, 0xe937, 0xea22, 0xea36, 0xea32, 0x1822, 0xeac0,\n  0x1845, 0x1841, 0x5881, 0x1840, 0x588a, 0xeb85, 0x587f, 0x1842,\n  0xeb89, 0x18c1, 0x18c5, 0xede1, 0x18bb, 0x18b9, 0x18bd, 0x18c9,\n  0xee0a, 0x5a11, 0xee09, 0x18bf, 0x18c7, 0xede8, 0x18c3, 0x1924,\n  0x1931, 0x1933, 0xf118, 0x1932, 0x1934, 0x1952, 0x1961, 0x5bd9,\n  0x197a, 0x1982, 0x5c3c, 0xf3c5, 0x1b23, 0x600d, 0x600c, 0x6021,\n  0x1b2c, 0x6216, 0x640e, 0x010f, 0x1c95, 0x6417, 0x0123, 0x0125,\n  0x6a48, 0x0206, 0x0208, 0x1e88, 0x6a55, 0x6a49, 0x6a4c, 0x1e8b,\n  0x6a4f, 0x6a3d, 0x027a, 0x0277, 0x6e8a, 0x6ea8,\n  /* 0x56 */\n  0x708a, 0x032e, 0x71cb, 0x032f, 0x71d5, 0x78d4, 0x041b, 0x0413,\n  0x775c, 0x7775, 0x0466, 0x7861, 0x0465, 0x7096, 0x04f7, 0x7c8a,\n  0x7ed0, 0x26e1, 0x26d7, 0x7e49, 0x7ecf, 0x059c, 0x82d6, 0x827f,\n  0x0653, 0x82d2, 0x82cf, 0x8506, 0x8509, 0x06ba, 0x28a3, 0x0722,\n  0x29d3, 0x8b06, 0x8af1, 0x8b04, 0x2b8b, 0x8afa, 0x8af4, 0x07eb,\n  0x07dd, 0x8af9, 0x07ef, 0x8a8b, 0x8b03, 0x0847, 0x0846, 0x8da2,\n  0x0878, 0x2cac, 0x0889, 0x900c, 0x900b, 0x0968, 0x0976, 0x0974,\n  0x0979, 0x9324, 0x097a, 0x0977, 0xf614, 0x0971, 0x9325, 0x0972,\n  0x95f6, 0x09ff, 0x95fb, 0x0a05, 0x9732, 0x97fb, 0x0a54, 0x98f2,\n  0x98f3, 0x0a9e, 0x0a9f, 0x3174, 0x999c, 0x9b72, 0x0afa, 0x9b74,\n  0x0b44, 0x0b3f, 0x0b40, 0x9c86, 0x0b42, 0x9c8e, 0x9c90, 0x0b51,\n  0x9ccd, 0x9cf7, 0x9dd6, 0x9f84, 0x9f95, 0x9f8a,\n  /* 0x57 */\n  0x3440, 0x0bca, 0x9f97, 0x3441, 0x0bce, 0x0bc9, 0xa0a0, 0xa0a1,\n  0xa122, 0xa1a6, 0xa1a4, 0x0c09, 0x34e8, 0x0c6c, 0x0c6e, 0x0c70,\n  0x0c6d, 0x0c6b, 0x0c71, 0x0c72, 0xa2af, 0xa2b0, 0xa2bd, 0x0c8c,\n  0x0ce4, 0xa476, 0x0ce1, 0xa47b, 0xa479, 0x36f6, 0x0ce7, 0x3700,\n  0x0ce2, 0x0d1f, 0xa5ee, 0xa5f1, 0x0d7e, 0xa794, 0x0d80, 0x3859,\n  0x3855, 0xa791, 0x0db9, 0x0db7, 0x0db8, 0xa910, 0x0dba, 0x38f4,\n  0xa9af, 0x0dd3, 0x0e3f, 0x3a04, 0x0e45, 0x0e41, 0x3a15, 0x0e42,\n  0x0e43, 0x0e3b, 0x0e38, 0xab7b, 0xab77, 0x0e3a, 0x39f5, 0xab80,\n  0xabc6, 0x0e3c, 0xab7c, 0xab90, 0x0e3e, 0xaba3, 0xab7d, 0xabbd,\n  0x0e9e, 0x0e9f, 0x0ea1, 0xae13, 0x0e9b, 0x0f12, 0xb011, 0xb044,\n  0xb00d, 0x0f18, 0x0f0c, 0xb214, 0x0f62, 0xb2b8, 0x0f7a, 0xb2b7,\n  0xb383, 0x0fae, 0x0faf, 0xb414, 0x0fad, 0xb41c,\n  /* 0x58 */\n  0x0fc4, 0x0fc7, 0x0fc6, 0x0fc5, 0xb4d4, 0xb4d5, 0x3fc1, 0x1040,\n  0xb743, 0xb742, 0x103f, 0x1041, 0xf68a, 0xb741, 0xb84e, 0x107f,\n  0xb987, 0x1086, 0x1081, 0x1080, 0x108e, 0x114a, 0xbd39, 0x1147,\n  0xbd8f, 0xbd2a, 0x114b, 0x1146, 0x114e, 0x427d, 0xbd2b, 0x42a5,\n  0xbd50, 0x1148, 0xbd6e, 0x1145, 0xbd3b, 0xbd53, 0xbd5f, 0xbd2f,\n  0xbd30, 0xbd38, 0xbd4c, 0xbff1, 0x11db, 0x11e7, 0x11e4, 0xc207,\n  0xc216, 0x11e1, 0xc214, 0x11e9, 0xc1fb, 0x11e5, 0x11e0, 0x11e3,\n  0xc1f8, 0xc210, 0xc21d, 0xc1ff, 0xc20b, 0xc204, 0x11ea, 0xc1fe,\n  0xc3ff, 0x463a, 0x1254, 0x1258, 0x125c, 0xc523, 0x1255, 0x128b,\n  0x128c, 0x12a6, 0x12a5, 0xc72a, 0xc8a0, 0xc898, 0xc89c, 0x12ff,\n  0xc89e, 0xc8a6, 0xc8b5, 0xc8b0, 0x1330, 0x1340, 0x1341, 0xcaf9,\n  0xcaf5, 0x1386, 0xcbd2, 0x13bf, 0x13bd, 0xcd50,\n  /* 0x59 */\n  0xcd4e, 0xcd4b, 0xcd52, 0xcd4d, 0x13be, 0x1419, 0xcee4, 0x141c,\n  0xceda, 0x141b, 0x1417, 0x1418, 0x4b51, 0xcedf, 0xcee8, 0x143d,\n  0x146a, 0x1466, 0xd170, 0xd172, 0x1467, 0xd177, 0x1468, 0x14ad,\n  0x14ae, 0xd3e6, 0xd5aa, 0x14d6, 0x1509, 0xd68c, 0x4e98, 0xd689,\n  0x150c, 0x150a, 0xd832, 0x153b, 0x153a, 0x5084, 0x5081, 0xd87a,\n  0x506f, 0xda9e, 0xdaa0, 0xdb70, 0x15af, 0x15aa, 0x15ab, 0xdb6e,\n  0xdb66, 0x15b1, 0xdb65, 0x15ac, 0x15ec, 0xdd7f, 0xdde0, 0x1601,\n  0xddff, 0xdef6, 0xdef7, 0xdef5, 0x1623, 0xdefc, 0x1624, 0x161e,\n  0xdef9, 0x164a, 0x1665, 0x166a, 0xe0ca, 0xe0c3, 0xe0c6, 0x1669,\n  0xe1b8, 0xe1bd, 0x1695, 0xe1bc, 0xe205, 0xe2e0, 0xe2e9, 0x5542,\n  0xe2df, 0xe2ec, 0x16cc, 0xe2e5, 0xe2de, 0xf700, 0x16cf, 0xe2f0,\n  0xe2e3, 0x170f, 0xe3ec, 0x170e, 0x170b, 0x1710,\n  /* 0x5a */\n  0x170d, 0x170c, 0xe3f2, 0xe3ef, 0xe3e9, 0xe4fb, 0x1746, 0x1748,\n  0x5637, 0x1749, 0xe537, 0xe6de, 0x1791, 0x178e, 0xe6da, 0x17d8,\n  0x17d6, 0xe84b, 0x17da, 0xe849, 0x17d7, 0xe8d5, 0x57ff, 0x17f9,\n  0xe952, 0xe947, 0x17fc, 0xe948, 0xeacc, 0xead0, 0x58a9, 0x184a,\n  0x58a7, 0x184e, 0x58b3, 0x58ac, 0x58b0, 0xeb86, 0xeba7, 0xeba3,\n  0x589c, 0xebb6, 0xebad, 0xee13, 0x5a3c, 0x5a1c, 0x5a3a, 0x18d3,\n  0x18cd, 0x18d1, 0xee17, 0xee22, 0x5a32, 0x5a34, 0xee49, 0xee26,\n  0xf70c, 0xee3c, 0xee28, 0xf0a8, 0x5bc7, 0xf1fb, 0x1962, 0xf232,\n  0xf2d6, 0xf348, 0x1983, 0x5c3f, 0xf3c6, 0x1992, 0x009f, 0x00a0,\n  0x6025, 0x6026, 0x6024, 0x6033, 0x6170, 0x0127, 0x6790, 0x020b,\n  0x6a95, 0x6aa1, 0x6a92, 0x6a8f, 0x6a9f, 0x6a96, 0x6a98, 0x6a9d,\n  0x6aa0, 0x028d, 0x7097, 0x71eb, 0x0370, 0x7787,\n  /* 0x5b */\n  0x24eb, 0x7b32, 0x059a, 0x059f, 0x059d, 0x7ed8, 0x7efb, 0x7f06,\n  0x059b, 0x7ed1, 0x26d5, 0xf5b0, 0x0660, 0x0664, 0x0669, 0x0663,\n  0x0667, 0x0662, 0x82f6, 0x8304, 0x82fe, 0x2802, 0x82ff, 0x82f7,\n  0x8518, 0x06ac, 0x8514, 0x85cd, 0x8620, 0x87de, 0x0726, 0x0723,\n  0x0725, 0x8b45, 0x8b53, 0x07f8, 0x8b4b, 0x8b55, 0x8b41, 0x07f7,\n  0x07fb, 0x07fa, 0x8b5c, 0x8b54, 0x8e71, 0x8ed0, 0x08b0, 0x08af,\n  0x9053, 0x9329, 0x937e, 0x097e, 0x9379, 0x097d, 0x0980, 0x9370,\n  0x936a, 0x097f, 0x0986, 0x9385, 0x9364, 0x2e12, 0x9378, 0x0981,\n  0x9632, 0x9627, 0x962f, 0x0a24, 0x0a58, 0x0a57, 0x0aa0, 0x99ba,\n  0x0afe, 0x9b71, 0x9b8c, 0x0b15, 0x9c1a, 0x0b47, 0x0b46, 0x9c98,\n  0x9de4, 0x0b6b, 0x0b6c, 0x3385, 0x3454, 0x9fc2, 0x0bcc, 0x9fba,\n  0x3455, 0x9fc8, 0x0bcb, 0x34a7, 0x34a8, 0x0bf9,\n  /* 0x5c */\n  0xa1b9, 0xa1b8, 0xa1a5, 0xa2e2, 0x0c78, 0x0c7a, 0x0c75, 0xa2d9,\n  0x0c76, 0x0c77, 0xa2ac, 0xa2dd, 0x0cea, 0x0cee, 0x0ced, 0xa49d,\n  0x0cec, 0x370f, 0xa611, 0xa603, 0x0d84, 0x0d85, 0x0d83, 0xa7ee,\n  0x0dbc, 0x0dbd, 0x0dd4, 0xaba4, 0xabd8, 0xabdd, 0xabde, 0x0e55,\n  0xabe7, 0x0e50, 0x0e4c, 0x0e48, 0xabd4, 0x0e53, 0xabce, 0x0e57,\n  0x0e54, 0x0e4e, 0x0e4a, 0x0e51, 0xabf1, 0xabd3, 0x0e49, 0x0e4b,\n  0x0e63, 0xabca, 0xabe9, 0x0ea7, 0x0ea6, 0x0ea4, 0xae1a, 0xae41,\n  0xf668, 0x3ae4, 0x3ae5, 0xb03d, 0xb040, 0x3c65, 0x3c4e, 0x0f17,\n  0xb043, 0x0f16, 0xb03f, 0xb03c, 0x0f63, 0xb221, 0xb220, 0x3d82,\n  0xb2c6, 0x0f7b, 0x0f7c, 0xb2d1, 0xb2ca, 0xb38e, 0xb391, 0x0fb0,\n  0x3e2d, 0xb4e3, 0xb788, 0x1042, 0xb770, 0x1044, 0xb89d, 0xb99d,\n  0xb991, 0xb998, 0xb999, 0x1088, 0x108f, 0x1153,\n  /* 0x5d */\n  0x115b, 0xbdbf, 0x1159, 0xbdae, 0xbdb1, 0xbdcc, 0xbe04, 0x42ca,\n  0xbe16, 0xbdcd, 0x1154, 0x42bc, 0xbde0, 0xbdcb, 0xbdd4, 0xbdc9,\n  0xbfff, 0x1199, 0xbffd, 0xc257, 0xc252, 0xc250, 0xc245, 0xc24d,\n  0x11f1, 0xc253, 0x11ef, 0xc282, 0xc244, 0xc3ce, 0xc3cf, 0xc3d2,\n  0xc402, 0xc54f, 0xc558, 0x1262, 0xc543, 0x1263, 0xc552, 0x1260,\n  0x1261, 0x125f, 0xc549, 0xc553, 0xc54d, 0x128d, 0xc684, 0x128e,\n  0xc683, 0xc732, 0xc8e2, 0x1309, 0xc8e4, 0xc8d3, 0x1305, 0xc8d5,\n  0xc8dd, 0x1303, 0x1306, 0xc8ec, 0xc8e6, 0xc8d2, 0xc8fa, 0xc8da,\n  0x1331, 0xca06, 0xca04, 0x134f, 0xca7b, 0xcb04, 0xcb02, 0x1366,\n  0x49ff, 0x13c4, 0xcd60, 0x13c3, 0x13c1, 0x13c5, 0xcf07, 0xcf05,\n  0xcf0c, 0x1421, 0xcf5a, 0x141f, 0x1422, 0xcf1a, 0x1427, 0x1420,\n  0xd18a, 0x146d, 0x146c, 0x146b, 0x146f, 0x1470,\n  /* 0x5e */\n  0xd18c, 0xd409, 0xd6a6, 0x4ea6, 0xd6ac, 0xd6a9, 0x1542, 0xd88b,\n  0x50b6, 0xd88c, 0x1544, 0x1540, 0xd888, 0xd889, 0x153f, 0xd893,\n  0x50ab, 0x158b, 0xdb83, 0xdd4f, 0x1625, 0x1628, 0xdf20, 0x5421,\n  0xe036, 0xe0e2, 0x1675, 0x1672, 0xe0ee, 0x166f, 0xe0e7, 0xe0e9,\n  0x1676, 0x1671, 0x54a7, 0xe0df, 0x1697, 0xe1c7, 0x16d7, 0xe309,\n  0x16d6, 0xe301, 0x16d8, 0x16dc, 0x16db, 0x16d4, 0x553e, 0x1713,\n  0x1711, 0x1714, 0xe405, 0xe40c, 0xe578, 0xe55d, 0x1751, 0x1750,\n  0x1753, 0x1754, 0x1752, 0xe55e, 0xe560, 0xe567, 0x176d, 0xf705,\n  0xe6f4, 0x1795, 0x1799, 0xe6f1, 0x179a, 0xe6fa, 0x1793, 0x1797,\n  0xe6f8, 0xe6f9, 0xe709, 0xe6fd, 0xe6f7, 0x17dc, 0xe859, 0x17fd,\n  0xe960, 0xe968, 0x17fe, 0x1800, 0x1802, 0x1801, 0x1803, 0xe96a,\n  0xea14, 0xea3e, 0xeae4, 0x1827, 0x1826, 0x1824,\n  /* 0x5f */\n  0x184c, 0x58bc, 0x1850, 0x1855, 0x1853, 0x58b7, 0x1852, 0xebd2,\n  0x1857, 0x58be, 0x1858, 0x18d6, 0xee58, 0xee50, 0x18d4, 0xee5c,\n  0x18da, 0x18d9, 0xcf19, 0x5a62, 0x18d5, 0x18e4, 0xf70e, 0x18dc,\n  0x191b, 0x5b8f, 0x1937, 0x1936, 0x194b, 0x5bcb, 0x1966, 0x1976,\n  0xf2df, 0x197e, 0x197d, 0x197f, 0x1984, 0x198b, 0xf3d9, 0x1994,\n  0x00a1, 0x0111, 0x6566, 0x0210, 0x1ea9, 0x6ae1, 0x6aef, 0x6ae8,\n  0x6c33, 0x2013, 0x71fe, 0x0332, 0x21f4, 0x73ef, 0x73ec, 0x75ec,\n  0x779c, 0x0420, 0x7799, 0x7870, 0x786e, 0x049d, 0x7b41, 0x26ec,\n  0x26ef, 0x7f02, 0x7f01, 0x05a5, 0x801b, 0x8323, 0x8325, 0x8324,\n  0x8326, 0x8333, 0x832f, 0x858f, 0x8856, 0x0802, 0x07fe, 0x0801,\n  0x2bd6, 0x0803, 0x07ff, 0x8b99, 0x0804, 0xf5ed, 0x084a, 0x8ed9,\n  0x0987, 0x93b7, 0x0984, 0x93b6, 0x0985, 0x3009,\n  /* 0x60 */\n  0x9654, 0x9657, 0x967a, 0x0a59, 0x3179, 0x9b8e, 0x32c6, 0x9b90,\n  0x9bb9, 0x0b04, 0x0b49, 0x0b48, 0x9def, 0x0b6d, 0x0bd2, 0x0bd3,\n  0x9fe2, 0x0bd1, 0x9fd6, 0x9fd8, 0x9fda, 0x9fde, 0x0be7, 0x0c0a,\n  0x35c3, 0xa308, 0xa304, 0xa30a, 0xa30b, 0xa302, 0x0cf0, 0xa4aa,\n  0xa4c1, 0x371f, 0xa7d7, 0xa7d9, 0x3865, 0xa7de, 0xa7da, 0x0dbe,\n  0x0dbf, 0xa92a, 0x38c6, 0x3a3a, 0xac31, 0x3a36, 0xac2b, 0xac2c,\n  0xac29, 0xac2e, 0x0e5e, 0xac27, 0xac28, 0x0e5b, 0xac5f, 0xac30,\n  0xac24, 0x3aeb, 0x0eab, 0xae3a, 0x0eac, 0xae39, 0xae40, 0xb080,\n  0xb084, 0x0f1f, 0x0f1d, 0xb075, 0xb076, 0x0f1c, 0xb07c, 0x0f1e,\n  0xb078, 0xb09b, 0xb07e, 0xb15a, 0x0f64, 0xb22c, 0x3d84, 0xb39c,\n  0xb747, 0xb78a, 0x1048, 0x1047, 0xb827, 0xbe4a, 0x115e, 0x1161,\n  0xbe27, 0x42e0, 0x42f3, 0xbe2e, 0xbe26, 0xc008,\n  /* 0x61 */\n  0x11f7, 0xc2bd, 0xc296, 0x11f4, 0x11f8, 0x451e, 0xc2be, 0xc28e,\n  0xc574, 0x1264, 0xc580, 0x1292, 0x128f, 0x1290, 0x46b4, 0x1293,\n  0x12a8, 0xc73c, 0xc73d, 0x12a9, 0xc73a, 0xc742, 0x46f9, 0xc924,\n  0xc906, 0x4844, 0x130e, 0xc915, 0x130f, 0xc902, 0xc90c, 0x130b,\n  0xc908, 0xc90a, 0xc905, 0xc91c, 0x1310, 0x1351, 0xca82, 0x1350,\n  0xca86, 0x1363, 0xcc03, 0xcd7b, 0x13c7, 0xcd7a, 0x4b71, 0x1424,\n  0x1426, 0x4b6e, 0xcf80, 0x4b79, 0xcf58, 0x4bc4, 0x1474, 0x1473,\n  0x1472, 0xd1aa, 0xd1ab, 0xd236, 0xd24a, 0x14b1, 0x4d8c, 0xd5d6,\n  0x150e, 0x1511, 0x1510, 0x150f, 0x1512, 0x1549, 0x50c9, 0x154f,\n  0x154d, 0xd903, 0xd8cf, 0x1555, 0xdb9f, 0xdba2, 0xde2a, 0xde2f,\n  0xdf44, 0xdf40, 0x162c, 0x162b, 0xe111, 0xe10f, 0x1679, 0xe10d,\n  0xe107, 0xe103, 0x167a, 0x54b0, 0x1699, 0x169a,\n  /* 0x62 */\n  0xe235, 0x16ae, 0x16af, 0xe304, 0x16e4, 0x16e1, 0x16de, 0x16e6,\n  0x16df, 0xe326, 0x16e7, 0x16e2, 0x16e0, 0xe31e, 0x16e5, 0x555a,\n  0xe40e, 0x1718, 0xe41d, 0xe41e, 0xe41f, 0x1756, 0xe588, 0x5646,\n  0xe58d, 0xe591, 0xe580, 0x176e, 0xe654, 0xe655, 0x179d, 0x17a0,\n  0x179c, 0xe725, 0xe71a, 0x17a1, 0x17a2, 0x179f, 0x17df, 0x17de,\n  0x57c3, 0x17ea, 0xe988, 0x1806, 0xe97a, 0x1804, 0x580f, 0xe980,\n  0xeb1e, 0xebfc, 0xec25, 0x185f, 0x58f4, 0x58fa, 0x185c, 0xec0b,\n  0x185e, 0xec06, 0xec04, 0x58dd, 0x1859, 0xebf9, 0xec00, 0x1864,\n  0x185d, 0x1862, 0xec02, 0x1865, 0xec07, 0x58ed, 0x185b, 0x58ef,\n  0xeeb5, 0x18dd, 0xee87, 0x18df, 0xee93, 0xf70f, 0x18e2, 0xeebe,\n  0xf066, 0x1927, 0xf0c7, 0xf0cf, 0x5b96, 0x193a, 0x193c, 0xf13d,\n  0x1939, 0xf13c, 0xf147, 0x193d, 0x193b, 0x5bb3,\n  /* 0x63 */\n  0x194c, 0xf1c3, 0x1968, 0x5be2, 0xf31b, 0x1980, 0x1985, 0xf3c9,\n  0x1995, 0xf3dd, 0x1996, 0xf493, 0x5c8f, 0x603d, 0x00a4, 0x0112,\n  0x1eb1, 0x0225, 0x6ee6, 0x2141, 0x0337, 0x73f7, 0x77b0, 0x77ae,\n  0x5dfd, 0x0468, 0x0467, 0x049e, 0x7c9f, 0x7c9e, 0x7f30, 0x05aa,\n  0x7f4f, 0x05a9, 0x05a4, 0x7f27, 0x7f51, 0x0671, 0x066f, 0x8351,\n  0x8354, 0x8356, 0x8527, 0x06ad, 0x8524, 0x2bf6, 0x080c, 0x2bf2,\n  0x080b, 0x8bec, 0x8bc4, 0x080f, 0x0879, 0x93f8, 0x93f6, 0x93f7,\n  0x93ed, 0x098d, 0x098f, 0x93f4, 0x93ef, 0x098e, 0x0a0c, 0x967f,\n  0x96a2, 0x967e, 0x0aa6, 0x99c5, 0x0aa3, 0x0aa4, 0x0aa5, 0x3388,\n  0x0b6e, 0x9ff1, 0x9ff2, 0x0bfa, 0xa12f, 0x0c7c, 0x0c7e, 0x0c7b,\n  0x0c7d, 0xa323, 0xa329, 0x0c8d, 0x0cf4, 0x0cf3, 0xa61b, 0xa7eb,\n  0x0d89, 0xa7ea, 0xa933, 0x0dc0, 0xac63, 0x0e65,\n  /* 0x64 */\n  0xac92, 0xac65, 0x0ead, 0x0f25, 0xb0a0, 0xf670, 0xb15e, 0x0fc9,\n  0xb7aa, 0x104a, 0xb7a9, 0x4067, 0x1089, 0xbe9c, 0x1166, 0x1170,\n  0xbe92, 0x116d, 0x1169, 0x1167, 0xbe86, 0x1172, 0x430e, 0x116e,\n  0xbe83, 0x119c, 0x11fc, 0x11fd, 0x1204, 0x11ff, 0xf6c2, 0x11fe,\n  0x1200, 0xc2ce, 0x1266, 0x1269, 0xc593, 0x12aa, 0x12ab, 0x1317,\n  0xc92e, 0xc927, 0xc928, 0x1315, 0x485e, 0x1312, 0x4a0e, 0xcc18,\n  0xcc16, 0xcd8d, 0x13ca, 0xcd8e, 0x13c9, 0x13cb, 0xcd90, 0xcd8f,\n  0xcf81, 0x1429, 0x1428, 0xcf8a, 0xcf8c, 0xd08d, 0x1440, 0x1475,\n  0x1476, 0xd1b2, 0x1488, 0xd5d9, 0x4eb6, 0x1557, 0x5101, 0xd90d,\n  0x155f, 0xd913, 0x511d, 0x1558, 0x155b, 0xd91b, 0x512f, 0xdbac,\n  0x15b3, 0xdbb3, 0x15ef, 0xdf5e, 0x1630, 0xdf60, 0xdf68, 0xdf63,\n  0xdf69, 0xdf67, 0x1641, 0x164b, 0xe128, 0x167d,\n  /* 0x65 */\n  0xe12e, 0xe130, 0x167c, 0xe126, 0xe131, 0xe141, 0x54e0, 0xe1da,\n  0x54db, 0xf6fa, 0xe20b, 0x5561, 0xe334, 0xe333, 0x16e8, 0x16ea,\n  0x16e9, 0xe339, 0xe33b, 0xe340, 0xe430, 0x171b, 0xe432, 0xe437,\n  0x1755, 0x564a, 0x1759, 0x1758, 0xe581, 0xe59f, 0xe5a7, 0x17a4,\n  0x17a3, 0xe744, 0xe747, 0xe748, 0xe73d, 0x5733, 0x17a7, 0xe749,\n  0x17e0, 0xe880, 0xe9a0, 0xe99d, 0x1808, 0x180a, 0x1809, 0xe99c,\n  0xea47, 0xeb07, 0x1871, 0x590f, 0x186c, 0xec49, 0x5911, 0xec44,\n  0x5903, 0x5901, 0x186e, 0xecdf, 0x5916, 0xec4c, 0x5dfd, 0xec4f,\n  0x18e0, 0x18ee, 0xeec1, 0x18eb, 0xeeb9, 0xeecb, 0xeecf, 0xeec4,\n  0x5a93, 0x18ea, 0x18ef, 0x18e7, 0xeeca, 0xeec3, 0xf0d0, 0xf151,\n  0x1948, 0x1949, 0xf1a8, 0xf1c7, 0xf1c6, 0x194d, 0xf1ca, 0xf202,\n  0x1955, 0xf25d, 0xf25a, 0x196a, 0x196c, 0xf259,\n  /* 0x66 */\n  0x196b, 0xf2cc, 0xf31c, 0xf3cc, 0x1998, 0x1999, 0x1997, 0xf3e8,\n  0xf3ec, 0xf3ea, 0xf4ad, 0xf4b0, 0x605f, 0x6058, 0x6057, 0x1d5b,\n  0x6793, 0x0216, 0x6b3b, 0x1ebf, 0x6b34, 0x6ef2, 0x0339, 0x73fd,\n  0x751d, 0x0425, 0x23ce, 0x7a04, 0x7b48, 0x7f58, 0x834f, 0x0674,\n  0x836e, 0x8372, 0x06ae, 0x852e, 0x8bfc, 0x8bf4, 0x9036, 0x940e,\n  0x0992, 0x0994, 0x9414, 0x0995, 0x9419, 0x0a0d, 0x96a6, 0x0a25,\n  0x9bc9, 0x9bc0, 0x9bcc, 0x9c1b, 0x9caa, 0x9ca8, 0xa003, 0x0bd5,\n  0x0bd6, 0x34ac, 0x0be8, 0xa135, 0x0c7f, 0x35d2, 0x0cf5, 0x0cf6,\n  0x0cf7, 0xa4d9, 0x0d24, 0x0d8d, 0x0d8a, 0xa93f, 0xa93d, 0x0e6c,\n  0x0e66, 0x0e6a, 0xac8b, 0x0e67, 0x0e6d, 0x0e68, 0x3a52, 0xac68,\n  0xac8a, 0xae58, 0xae57, 0xb0ce, 0xb0bc, 0xb0c0, 0xb0c1, 0xb0bf,\n  0xb0ab, 0xb15f, 0x0f65, 0xb3a6, 0x0f9a, 0xb429,\n  /* 0x67 */\n  0x0fb1, 0x104b, 0x104d, 0x104c, 0x104e, 0xb7b8, 0x1173, 0x1175,\n  0xbedd, 0xbed6, 0xf6b1, 0xbed5, 0xbee7, 0xbed8, 0xc2ec, 0x1203,\n  0xc300, 0xc307, 0xc2fd, 0xc2f1, 0xc2ff, 0xc5aa, 0xc5b0, 0xc948,\n  0x131e, 0xc953, 0x4873, 0xc94d, 0x1319, 0x131c, 0x131a, 0x131d,\n  0x4876, 0xc943, 0xc950, 0x1343, 0x1352, 0xca8c, 0xcc27, 0x1395,\n  0xcd99, 0x13cc, 0xcfb1, 0x142b, 0xcfb0, 0xcfaa, 0xcfac, 0x142a,\n  0x4bc7, 0x1477, 0xd1c8, 0xd1ca, 0xd442, 0xd5e0, 0xd6e7, 0xd6e8,\n  0xd6e6, 0x1513, 0x1514, 0x5134, 0xd95b, 0xd956, 0x155d, 0xd95a,\n  0x1560, 0x513e, 0x1562, 0xdab8, 0xdbc5, 0x15b2, 0x15f0, 0xde48,\n  0xdf7d, 0xdf7c, 0xdf81, 0xdf82, 0xdf62, 0x164c, 0xe145, 0x1682,\n  0x54bc, 0x1681, 0x169b, 0xe1e3, 0x16a4, 0x16ee, 0x16ec, 0xe350,\n  0x16ed, 0xe34f, 0x16f0, 0x16ef, 0xe439, 0x171d,\n  /* 0x68 */\n  0xe43a, 0x1760, 0x175e, 0x175d, 0xe5c1, 0xe74e, 0xe76e, 0x17b1,\n  0x17ab, 0x17ac, 0x17ad, 0xe771, 0x17ae, 0xe88c, 0xe889, 0x17e2,\n  0xe8e5, 0xe9b3, 0xe9b6, 0xe9b4, 0xea4d, 0x5839, 0xeb13, 0xec78,\n  0x592a, 0x187b, 0x5926, 0x1878, 0x1875, 0x5927, 0xec72, 0x18f2,\n  0x18f4, 0x18f3, 0x5ac0, 0x5ac9, 0xf075, 0xf0da, 0xf0d7, 0x193f,\n  0x193e, 0x1940, 0x194e, 0x1957, 0x1959, 0x1958, 0xf716, 0xf269,\n  0xf267, 0x196e, 0xf266, 0xf26f, 0xf271, 0x5bec, 0xf2cf, 0xf323,\n  0x1981, 0x1986, 0xf3a5, 0x198f, 0xf3fe, 0xf3fb, 0xf3fd, 0x5c68,\n  0x199b, 0x19b1, 0x19b3, 0x6b6d, 0x033a, 0x7405, 0x7520, 0x0427,\n  0x77c8, 0x77c9, 0x046a, 0x05ac, 0x8627, 0x0818, 0x8c1e, 0x8d36,\n  0x084c, 0x943d, 0x0996, 0x99d7, 0x0b4a, 0x9cad, 0x9e00, 0x0c81,\n  0xa33a, 0x0c83, 0x0cf9, 0x0cf8, 0xa626, 0x0d8e,\n  /* 0x69 */\n  0x0d8f, 0x0dc1, 0xacb7, 0xacb6, 0xacc0, 0x0e70, 0xac9b, 0x0e71,\n  0xb0d8, 0x0f2a, 0x0f2d, 0x0f7d, 0x3e32, 0x3e31, 0xb7c0, 0x104f,\n  0xb7bf, 0xb9bf, 0x1090, 0xbf20, 0xbed0, 0xbf0e, 0x1179, 0xbf1d,\n  0xbf1e, 0xbf15, 0xbf14, 0xc31e, 0xc32c, 0x1205, 0xc5b9, 0xc5b8,\n  0xc5b6, 0xc69e, 0xc69c, 0xc74d, 0x46fd, 0xc96e, 0xc960, 0x1321,\n  0xc964, 0xc962, 0xb0e5, 0x1332, 0xcda3, 0x13cd, 0x13cf, 0xd1d2,\n  0xd1d5, 0x4d8e, 0x1516, 0x1515, 0x15b5, 0x1608, 0xde55, 0x1632,\n  0xdf93, 0x1633, 0x1634, 0x163c, 0xe156, 0x54c2, 0xe1e9, 0x169c,\n  0xe245, 0x16f4, 0x16f2, 0xe47c, 0x1762, 0xe5d3, 0x1761, 0x1764,\n  0x17b5, 0x574b, 0x17b4, 0xe78e, 0xe897, 0x17e3, 0xe89b, 0xe899,\n  0x581c, 0x180e, 0xe9cf, 0x581b, 0xea59, 0x182c, 0x182b, 0xeb20,\n  0xeb23, 0xeb2a, 0x1885, 0x1881, 0x187e, 0x1883,\n  /* 0x6a */\n  0x1880, 0xecb0, 0x5942, 0xef2f, 0x5ad4, 0x18fb, 0x18f7, 0xef32,\n  0xef43, 0xef3f, 0xef39, 0x18f8, 0xef30, 0xf0dd, 0xf1da, 0xf1db,\n  0x195a, 0xf284, 0xf27f, 0xf272, 0xf280, 0xf2ee, 0x1978, 0xf32a,\n  0xf322, 0xf371, 0xf3cd, 0x199d, 0x199c, 0xf40f, 0xf418, 0x606a,\n  0x00a9, 0x00bf, 0x1ed0, 0x1ecf, 0x740c, 0x23da, 0x7ca6, 0x0677,\n  0x0676, 0x8537, 0x06bb, 0x29ea, 0x8ee2, 0x099b, 0x96bc, 0x0a0f,\n  0x0a5b, 0x9bd5, 0x0b4c, 0x0b6f, 0x0bd9, 0xa012, 0x0c82, 0xa34b,\n  0xa341, 0xa3a1, 0xa4ec, 0x0e74, 0x0e72, 0xacd4, 0xacd8, 0xacd9,\n  0x0e73, 0xacda, 0xae6c, 0xae6d, 0x0eb1, 0x0f2e, 0xb0e7, 0xb0eb,\n  0xb0ec, 0xb162, 0x0f4e, 0xb42b, 0xb50d, 0xb7cd, 0xb9c3, 0xbf3f,\n  0xbf3c, 0xbf3e, 0xbf3d, 0xbf3a, 0xbf38, 0xc344, 0xc345, 0x120b,\n  0xc348, 0xc350, 0x126c, 0x4889, 0xc978, 0xc979,\n  /* 0x6b */\n  0x138b, 0xcc3e, 0x13d0, 0x142d, 0xd454, 0x14e4, 0x1571, 0xd9b9,\n  0x5158, 0x156f, 0xde5f, 0x1687, 0x16a5, 0xe372, 0xe375, 0x171e,\n  0x1765, 0x17b9, 0x17b7, 0x17b8, 0x17e4, 0xe8a3, 0xe8a5, 0xe9dc,\n  0xe9dd, 0xea5a, 0x188c, 0x1889, 0x188a, 0xecdb, 0xecdc, 0x188b,\n  0xefab, 0xef84, 0xef76, 0x1901, 0x18fe, 0x5ae7, 0x1903, 0x1906,\n  0xef83, 0x5aea, 0x5af1, 0xf07f, 0x191d, 0x1943, 0xf173, 0xf1ad,\n  0xf1b0, 0x194f, 0xf20f, 0xf20c, 0x195b, 0x1970, 0xf379, 0x1988,\n  0xf377, 0xf37a, 0x1989, 0x5c44, 0xf432, 0xf427, 0xf42a, 0xf42c,\n  0x5c6d, 0xf428, 0xf429, 0xf438, 0x642f, 0x6b7b, 0x740d, 0x23d9,\n  0x77d6, 0x77d5, 0x83a1, 0x8c4c, 0x099e, 0x099f, 0x0aa7, 0x0b4b,\n  0x0bdb, 0x0bda, 0xa0c0, 0x35d6, 0x0c8e, 0x0e76, 0xacf4, 0x0f30,\n  0x0f2f, 0xb0f0, 0x0f66, 0xb23f, 0x117e, 0xc35d,\n  /* 0x6c */\n  0xc372, 0xc362, 0x453a, 0xc366, 0x4675, 0x126f, 0xc988, 0x13d1,\n  0x142f, 0xcfe8, 0xcfe4, 0x14b2, 0x1518, 0x1517, 0xd6ff, 0x1576,\n  0xdfaf, 0xdfae, 0x164f, 0x1689, 0xe1f2, 0xe248, 0xe381, 0xe37e,\n  0x16f5, 0x171f, 0xe452, 0xe5ef, 0x575d, 0x17e5, 0xe8ad, 0xe9e6,\n  0x1810, 0xe9ed, 0x180f, 0xe9e9, 0xea61, 0xea60, 0xeb33, 0x182f,\n  0x1830, 0x5964, 0xed0b, 0xed08, 0x1893, 0x1894, 0xed07, 0x1907,\n  0x1909, 0x1908, 0xefca, 0x190b, 0xefc6, 0x5b0a, 0xf084, 0xf0eb,\n  0xf17d, 0x1950, 0x1971, 0xf29b, 0xf2a2, 0xf2a1, 0xf2a0, 0xf29c,\n  0x197b, 0x197c, 0xf380, 0x5c73, 0xf440, 0x19a1, 0xf439, 0xf43c,\n  0x19a0, 0x19a2, 0x64ca, 0x021b, 0x6b89, 0x0282, 0x853c, 0x8d40,\n  0x9463, 0x9469, 0x0be9, 0xa353, 0x0c84, 0x35e1, 0xa817, 0xa81a,\n  0xad00, 0x0eb3, 0x0f34, 0x0f33, 0x1180, 0xc36f,\n  /* 0x6d */\n  0xc6ab, 0x12ad, 0xc991, 0x1344, 0x1355, 0xcdb1, 0x13d2, 0xcfef,\n  0xdbf1, 0xdbf2, 0xdfb7, 0xdfb5, 0x168a, 0xe386, 0xe45a, 0x1767,\n  0xe7c6, 0xe7cb, 0x17e6, 0xe8b2, 0x1813, 0xe9f3, 0x582d, 0xed27,\n  0x1897, 0x5b0c, 0xefd5, 0xefd8, 0x190c, 0xefec, 0xf087, 0xf0f2,\n  0x1946, 0x195c, 0x1974, 0x1972, 0xf2ad, 0xf2b0, 0xf2fd, 0x5c1f,\n  0xf387, 0xf44a, 0x19a4, 0x19a3, 0xf44e, 0xf449, 0xf451, 0xf44d,\n  0x19b4, 0x6072, 0x0136, 0x7416, 0x8c6d, 0x8d41, 0x08b2, 0x9471,\n  0x9474, 0x0b16, 0x3a70, 0x0e77, 0xae7c, 0x117f, 0xbf8a, 0xc756,\n  0x147d, 0x5179, 0xd9fa, 0x544a, 0x168c, 0xe45b, 0x1768, 0x17be,\n  0x1815, 0xeff5, 0xeff0, 0xf0f3, 0xf17f, 0xf213, 0x1975, 0x19a5,\n  0x7419, 0x7f85, 0x83b0, 0x9477, 0xa4ff, 0x0e78, 0x0f35, 0x3c9d,\n  0x1182, 0xbf87, 0x1183, 0xbf8b, 0x1271, 0xc99e,\n  /* 0x6e */\n  0x147e, 0x168e, 0xe38f, 0x5660, 0x1769, 0xe639, 0xe7d4, 0xe8f1,\n  0xea02, 0xea6b, 0xeb40, 0x189a, 0x189b, 0xf010, 0xf2be, 0xf2b9,\n  0x1990, 0xf464, 0x5c9e, 0x9be9, 0xbf90, 0x1186, 0x1185, 0xc01c,\n  0x120e, 0xc392, 0xc6ae, 0xc9a3, 0x1519, 0xdfc9, 0x17c0, 0xe7d8,\n  0xeb44, 0xf024, 0x5bf8, 0x5c3a, 0x5c7d, 0xf470, 0xf4d3, 0x0c0d,\n  0x1816, 0xf2c3, 0x19a9, 0x19aa, 0x0c85, 0xad21, 0xb9ca, 0xc39c,\n  0xea73, 0xf186, 0xf3c1, 0xea09, 0x5c96, 0xf4d5, 0x17c2, 0x1831,\n  0x1911, 0x19ab, 0x189c, 0xdfd4,\n};\n\nstatic const ucs4_t cns11643_4b_2uni_upages[248] = {\n  0x03400, 0x03500, 0x03600, 0x03700, 0x03800, 0x03900, 0x03a00, 0x03b00,\n  0x03c00, 0x03d00, 0x03e00, 0x03f00, 0x04000, 0x04100, 0x04200, 0x04300,\n  0x04400, 0x04500, 0x04600, 0x04700, 0x04800, 0x04900, 0x04a00, 0x04b00,\n  0x04c00, 0x04d00, 0x05000, 0x05100, 0x05200, 0x05300, 0x05600, 0x05800,\n  0x05900, 0x05b00, 0x05c00, 0x05d00, 0x05e00, 0x05f00, 0x06100, 0x06400,\n  0x06500, 0x06600, 0x06900, 0x06a00, 0x06b00, 0x06f00, 0x07000, 0x07100,\n  0x07200, 0x07300, 0x07400, 0x07500, 0x07600, 0x07700, 0x07800, 0x07900,\n  0x07a00, 0x07b00, 0x07c00, 0x07d00, 0x07e00, 0x07f00, 0x08000, 0x08100,\n  0x08200, 0x08400, 0x08500, 0x08600, 0x08700, 0x08800, 0x08900, 0x08a00,\n  0x08b00, 0x08c00, 0x08d00, 0x08e00, 0x08f00, 0x09000, 0x09100, 0x09200,\n  0x09300, 0x09400, 0x09500, 0x09600, 0x09700, 0x09800, 0x09900, 0x09a00,\n  0x09b00, 0x09c00, 0x09d00, 0x09e00, 0x09f00, 0x0ff00, 0x20000, 0x20300,\n  0x20400, 0x20500, 0x20600, 0x20700, 0x20800, 0x20900, 0x20a00, 0x20b00,\n  0x20e00, 0x20f00, 0x21000, 0x21100, 0x21200, 0x21300, 0x21400, 0x21500,\n  0x21600, 0x21800, 0x21900, 0x21a00, 0x21b00, 0x21c00, 0x21e00, 0x21f00,\n  0x22100, 0x22200, 0x22300, 0x22400, 0x22500, 0x22700, 0x22800, 0x22900,\n  0x22a00, 0x22c00, 0x22d00, 0x22e00, 0x22f00, 0x23000, 0x23100, 0x23200,\n  0x23300, 0x23500, 0x23600, 0x23700, 0x23800, 0x23900, 0x23a00, 0x23b00,\n  0x23c00, 0x23e00, 0x23f00, 0x24000, 0x24100, 0x24300, 0x24400, 0x24500,\n  0x24600, 0x24800, 0x24900, 0x24a00, 0x24b00, 0x24c00, 0x24d00, 0x24e00,\n  0x24f00, 0x25000, 0x25200, 0x25300, 0x25500, 0x25600, 0x25700, 0x25800,\n  0x25900, 0x25a00, 0x25b00, 0x25c00, 0x25d00, 0x25e00, 0x25f00, 0x26000,\n  0x26100, 0x26200, 0x26300, 0x26400, 0x26500, 0x26600, 0x26700, 0x26800,\n  0x26900, 0x26a00, 0x26c00, 0x26d00, 0x26e00, 0x26f00, 0x27000, 0x27100,\n  0x27200, 0x27300, 0x27400, 0x27500, 0x27600, 0x27700, 0x27800, 0x27900,\n  0x27a00, 0x27b00, 0x27c00, 0x27d00, 0x27e00, 0x27f00, 0x28000, 0x28100,\n  0x28200, 0x28300, 0x28400, 0x28500, 0x28600, 0x28700, 0x28800, 0x28900,\n  0x28a00, 0x28b00, 0x28c00, 0x28d00, 0x28e00, 0x28f00, 0x29000, 0x29100,\n  0x29200, 0x29300, 0x29400, 0x29500, 0x29600, 0x29700, 0x29800, 0x29900,\n  0x29a00, 0x29b00, 0x29c00, 0x29d00, 0x29e00, 0x29f00, 0x2a000, 0x2a100,\n  0x2a200, 0x2a300, 0x2a400, 0x2a500, 0x2a600, 0x2f800, 0x2f900, 0x2fa00,\n};\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643_5.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992 plane 5\n */\n\nstatic const unsigned short cns11643_5_2uni_page21[8603] = {\n  /* 0x21 */\n  0x3bd1, 0x3bcb, 0x3bc9, 0x3c0c, 0x3b00, 0x3b87, 0x3c0d, 0x3c0f,\n  0xe21d, 0x5e98, 0x3bd2, 0x3c11, 0x3b7e, 0x45d3, 0x5052, 0x57fe,\n  0x60a9, 0x7442, 0x3b09, 0x3bd6, 0x3fdd, 0x3fdc, 0x4002, 0x4073,\n  0x4176, 0x41a7, 0x41a8, 0x4333, 0x43cc, 0x450d, 0x452c, 0x461b,\n  0x015a, 0x461d, 0x4699, 0x4d3e, 0x582d, 0x582f, 0x5e99, 0x6eb3,\n  0x74b6, 0x761b, 0x7fef, 0x83e9, 0x3b14, 0x3b94, 0x3be1, 0x4006,\n  0x404a, 0x4044, 0x4131, 0x417a, 0x41ad, 0x41ae, 0x41b1, 0x4338,\n  0x4337, 0x447d, 0x447e, 0x452d, 0x4532, 0x4623, 0x4626, 0xe23a,\n  0x46a0, 0x51a8, 0x543f, 0x54bc, 0x56c4, 0x583b, 0x5b19, 0x5b18,\n  0x5cb3, 0x5eaa, 0x5fbe, 0x60ac, 0x6525, 0x6566, 0x656b, 0x7443,\n  0x74b5, 0x75ec, 0x7776, 0x08bc, 0x8114, 0x50dc, 0x821c, 0x821d,\n  0x9fd0, 0xa112, 0xa5f3, 0xc169, 0x15b9, 0xc911,\n  /* 0x22 */\n  0xc915, 0xc910, 0xc913, 0x3ba4, 0x3ba5, 0x3cd0, 0x3cba, 0x3ccb,\n  0x407b, 0x4186, 0x41bb, 0x41ba, 0x41c3, 0x41b9, 0x41c0, 0x00de,\n  0x4339, 0x433b, 0x4341, 0x43d1, 0x43cf, 0x43d2, 0x442e, 0x446e,\n  0x448c, 0x4488, 0x4535, 0x0143, 0x453a, 0x453b, 0x4538, 0x4539,\n  0x462e, 0x462c, 0x46c8, 0x46b5, 0x46ad, 0x46b0, 0x46ab, 0x4cb3,\n  0x4ca9, 0x51bb, 0x51b9, 0x565a, 0x56cd, 0x572b, 0x5805, 0x03ac,\n  0x03aa, 0x5851, 0x584b, 0x5aea, 0x5aed, 0x5b36, 0x5b62, 0x5b56,\n  0x5b55, 0x5b64, 0x5b58, 0x1c07, 0x5cda, 0x5cd8, 0x5ead, 0x5eab,\n  0x5fc0, 0x5fc3, 0x60b3, 0x60b7, 0x60ba, 0x1dcb, 0x04fe, 0x60c7,\n  0x60b5, 0x648e, 0x6573, 0x656c, 0x6574, 0xe2b4, 0x6572, 0x6571,\n  0x6582, 0x6570, 0x6c3f, 0x6eba, 0x6eb8, 0x74b7, 0x8223, 0x8221,\n  0x822b, 0x8226, 0x8222, 0x8825, 0x8be4, 0x8f15,\n  /* 0x23 */\n  0x9fe4, 0xa133, 0xa12a, 0xa132, 0xa129, 0xa5fb, 0xb45b, 0xb45c,\n  0xb728, 0xc16f, 0xc16d, 0xc16b, 0xc16e, 0xc916, 0x3b22, 0x3c16,\n  0x3c48, 0x3cd8, 0x3d00, 0x0041, 0x3f80, 0x3fe4, 0x00b4, 0x3fe7,\n  0x400c, 0x4053, 0x40b7, 0x45e8, 0x41d1, 0x41e5, 0x41d8, 0x41d6,\n  0x41da, 0x41d9, 0x41d5, 0x41e6, 0x41d4, 0x41d3, 0x4344, 0x43d6,\n  0x43d7, 0x4413, 0x3afd, 0x4470, 0x4492, 0x44db, 0x44da, 0x4541,\n  0x4543, 0x4633, 0x46f6, 0x46d4, 0x46dd, 0x46d0, 0x4704, 0x46d9,\n  0x46db, 0x4705, 0x46d3, 0x46e1, 0x4d80, 0x4d77, 0x4d81, 0x4d82,\n  0x4d83, 0xe25c, 0x5061, 0x5060, 0x51d8, 0x51d6, 0x51d7, 0x8105,\n  0x544d, 0x5448, 0x56d6, 0x56cf, 0x56d9, 0x56d8, 0x573d, 0x03b3,\n  0x5854, 0x585b, 0x585c, 0x03b4, 0x5859, 0x5858, 0x585a, 0x5855,\n  0x5856, 0x5882, 0x5af0, 0x5b1c, 0x5b6a, 0x5b69,\n  /* 0x24 */\n  0x5b71, 0x5b67, 0x5b6c, 0x5b6e, 0x5b79, 0x5c8b, 0x5cb8, 0x5ce7,\n  0x5ce8, 0x5ce4, 0x5ce6, 0x5ce5, 0x5cf0, 0x5e83, 0x5eb7, 0x5ebb,\n  0x5eb9, 0x5ec5, 0x5f53, 0x5fc4, 0x5fc6, 0x5fcb, 0x60c8, 0xe29f,\n  0x60c9, 0x60db, 0x6494, 0x6595, 0x6588, 0x658d, 0x69ec, 0x69ee,\n  0x69f1, 0x6c2e, 0x6c49, 0x6e5f, 0x6ed1, 0x6ecb, 0x7385, 0x081d,\n  0x744a, 0x7447, 0x744b, 0x74bb, 0x74c4, 0x087c, 0x7602, 0x7782,\n  0x7791, 0x778f, 0x7792, 0x7c8f, 0x7c91, 0x7cb4, 0x7c92, 0x7ff4,\n  0x80aa, 0x8235, 0x8237, 0x823d, 0x823c, 0x822f, 0x8230, 0x83f8,\n  0x83ef, 0x8626, 0x0b55, 0x8826, 0x8827, 0x8a41, 0x8ac6, 0x8ac7,\n  0x8beb, 0x8be8, 0x8bea, 0x8f1a, 0x8f19, 0x0d26, 0x9423, 0x9424,\n  0x9925, 0xa135, 0xa134, 0xa507, 0xad1d, 0xb2e1, 0xb6ab, 0xbf60,\n  0xc177, 0xc17d, 0x15bc, 0xc91e, 0xc91a, 0xc91d,\n  /* 0x25 */\n  0x3b6b, 0x3c2d, 0x3c4c, 0x3d2a, 0x004a, 0x3d15, 0x3d2c, 0x3d06,\n  0x3d08, 0x3d0a, 0x004e, 0x4056, 0x4084, 0x00c9, 0x40c6, 0x41f5,\n  0x4209, 0x41f8, 0x41e8, 0x41fb, 0x41e9, 0x41f6, 0x1ab7, 0x1ab8,\n  0x4352, 0x1ab6, 0x1aba, 0x4354, 0x4351, 0x4439, 0x443a, 0x4498,\n  0x454e, 0x017b, 0x4736, 0x470c, 0x4710, 0x4732, 0x4711, 0x4718,\n  0x471c, 0x471a, 0x4719, 0x470b, 0x470f, 0x471d, 0x4721, 0x4713,\n  0x471b, 0x4715, 0x0220, 0x4cd1, 0x4cc8, 0x4d8d, 0x4db5, 0x0289,\n  0x0295, 0x50f8, 0x51e0, 0x51e1, 0x02be, 0x51de, 0x51fe, 0x51dc,\n  0x5201, 0x51fd, 0x5200, 0x54d7, 0x54d6, 0x54d9, 0x5665, 0x56d2,\n  0x56dc, 0x56e1, 0x56de, 0x5742, 0x574b, 0x03c3, 0x588e, 0x5891,\n  0x588b, 0x5890, 0x5888, 0x5889, 0x5884, 0x58aa, 0x5b8d, 0x5b8f,\n  0x5b7d, 0x5b7f, 0x5b7b, 0x5b80, 0x5b7e, 0x5b83,\n  /* 0x26 */\n  0x5b81, 0x5b86, 0x5b8a, 0x5cbd, 0x5cbe, 0x0477, 0x5cf4, 0x5cf3,\n  0x5d02, 0x5cf6, 0x5cf5, 0x5cf2, 0x5d04, 0x5e3d, 0x5ec6, 0x5f89,\n  0x5fd4, 0x5fd6, 0x5fd2, 0x60fa, 0x6106, 0x610c, 0x610a, 0x610f,\n  0x652f, 0x05d4, 0x65b7, 0x65be, 0x65bc, 0x65e2, 0x6a06, 0x69f7,\n  0x6a07, 0x69f6, 0x7635, 0x6c5f, 0x6c65, 0x6c64, 0x6c61, 0x6c5a,\n  0x6c5d, 0xe2d7, 0x6ed7, 0x6ed5, 0x6ede, 0x6ee1, 0x6ee0, 0x6ed9,\n  0x074c, 0x6eda, 0x6edf, 0x6ef6, 0x6f03, 0x0820, 0x7393, 0x738b,\n  0x7391, 0x7392, 0x738a, 0x7389, 0x738f, 0x7456, 0x7459, 0x74ca,\n  0x74cc, 0x085b, 0x74d0, 0x74cd, 0x74d6, 0x74cb, 0x7583, 0x7582,\n  0x7606, 0x762a, 0x762c, 0x762b, 0x7629, 0x77bd, 0x77b3, 0x77be,\n  0x77c0, 0x77b5, 0x77b6, 0x7c9d, 0x7c9f, 0x8120, 0x0a2d, 0x811e,\n  0x811c, 0x8132, 0x811f, 0x812b, 0x8121, 0x8126,\n  /* 0x27 */\n  0x8124, 0x811d, 0x8127, 0x825b, 0x8259, 0x8280, 0x8255, 0x8250,\n  0x825a, 0x8256, 0x8263, 0x8252, 0x8258, 0x0a63, 0x8239, 0x83f9,\n  0x8628, 0x0b18, 0x86bc, 0x86d6, 0x8705, 0x8720, 0x0b74, 0x8833,\n  0x8a46, 0x8a42, 0x8a43, 0x8a47, 0x8acb, 0x8b42, 0x8b45, 0x8bfd,\n  0x8bf4, 0x8bf9, 0x8bfa, 0x8e5e, 0x8f1d, 0x0d28, 0x9258, 0x9255,\n  0x9557, 0x9558, 0x95d9, 0x95dc, 0x95db, 0x9927, 0x9a85, 0x9a87,\n  0x9a8a, 0x9d8b, 0x9e4f, 0xa030, 0xa02f, 0xa168, 0xa149, 0x0fda,\n  0xa148, 0xa13f, 0xa14b, 0xa15c, 0xa146, 0xa140, 0xa50d, 0xa61b,\n  0xa61d, 0xa617, 0x10a4, 0xa622, 0xb0a7, 0xb108, 0xb306, 0xbf7d,\n  0x148e, 0xbf63, 0xbf64, 0xbf7f, 0xbf6b, 0xbf7c, 0xbf68, 0xbf65,\n  0xbf6a, 0xc198, 0xc199, 0xc1ae, 0xc92b, 0xc92d, 0xc931, 0xc92e,\n  0xc92f, 0x3b6d, 0x3c31, 0x3d2d, 0x3d39, 0x3d38,\n  /* 0x28 */\n  0x005b, 0x3d3a, 0x3d35, 0x3d62, 0x3fea, 0x3feb, 0x4015, 0x40cc,\n  0x40c8, 0x40cd, 0x40db, 0x40cb, 0x4211, 0x4226, 0x4362, 0x435e,\n  0x4361, 0x4441, 0x443f, 0x4475, 0x7465, 0x4649, 0x44eb, 0x451a,\n  0x4557, 0x476b, 0x47a9, 0x4754, 0x4762, 0x47aa, 0x4758, 0x4772,\n  0x4763, 0x4773, 0x478b, 0x478c, 0x475c, 0x4751, 0x4716, 0x4760,\n  0x4761, 0x475e, 0x475d, 0x4764, 0x4753, 0x475f, 0x475b, 0x476e,\n  0x4755, 0x4752, 0x4768, 0x4cd2, 0x4cd6, 0x4cd3, 0x4db8, 0x4dbb,\n  0x4deb, 0x4de8, 0x4db6, 0x4dea, 0x4de7, 0x4de9, 0x5091, 0x5110,\n  0x510e, 0x510f, 0x520b, 0x5203, 0x522b, 0x5209, 0x5228, 0x522c,\n  0x5225, 0x5227, 0x520f, 0x54e9, 0x54ec, 0x0353, 0x5627, 0x5673,\n  0x56e2, 0x56e6, 0xe276, 0x5761, 0x5751, 0x5812, 0x580e, 0x58ad,\n  0x58af, 0x58b1, 0x58d3, 0x5b94, 0x5b92, 0x5b90,\n  /* 0x29 */\n  0x5b9d, 0x5b93, 0x5b95, 0x5b98, 0x5b97, 0x0480, 0xe28a, 0x5d07,\n  0x5d0b, 0x5d08, 0x5ed9, 0x5ed5, 0x5fd7, 0x5fdf, 0x04dd, 0x5fde,\n  0x5fe3, 0x5fe2, 0x04de, 0x6147, 0x0522, 0x613d, 0x6138, 0x6544,\n  0x653a, 0x65b8, 0x662a, 0x6600, 0x65f3, 0x65f2, 0x65eb, 0x65fa,\n  0x65ed, 0x65ec, 0x65ff, 0x65fb, 0x1f06, 0x664e, 0x65ef, 0x65f7,\n  0x6a10, 0x6a11, 0x6a0c, 0x6a0b, 0x6bdd, 0x6c30, 0x06db, 0x6c7a,\n  0x6c77, 0x6e28, 0x6e27, 0x6e65, 0x6f0e, 0x6f0b, 0x6f41, 0x6f13,\n  0x6f0f, 0x6f12, 0x6f30, 0x73a0, 0x73a3, 0x739e, 0x7397, 0x73a1,\n  0x739d, 0x739b, 0x7463, 0x74e3, 0x74e4, 0x74e6, 0x74e7, 0x74dd,\n  0x2185, 0x74ec, 0x74e5, 0x74f1, 0x763b, 0x7639, 0x763a, 0x763c,\n  0x763d, 0x7647, 0x763f, 0x7644, 0x7748, 0x7749, 0x7760, 0x77e3,\n  0x77e9, 0x77f0, 0x08da, 0x08db, 0x77f2, 0x77ed,\n  /* 0x2a */\n  0x77ec, 0x77e6, 0x7816, 0x08d7, 0x7cbc, 0x7cbe, 0x7cc0, 0x7ce0,\n  0x8000, 0x8002, 0x7ffe, 0x805e, 0x80b3, 0x80b7, 0x813a, 0x8139,\n  0x813e, 0x8138, 0x813d, 0x814f, 0x826e, 0x825f, 0x8281, 0x8282,\n  0x8271, 0x827b, 0x8279, 0x8277, 0x8273, 0x826f, 0x8297, 0x827e,\n  0x83fc, 0x8411, 0x8432, 0x8431, 0x8410, 0x85ec, 0x85eb, 0x862c,\n  0x862d, 0x86da, 0x872e, 0x872c, 0x872a, 0x8733, 0x874b, 0x8818,\n  0x8842, 0x883b, 0x883f, 0x8841, 0x8843, 0x883c, 0x8a4c, 0x8a4a,\n  0x8a49, 0x8a56, 0x8acf, 0x8b47, 0x8b48, 0x8b46, 0x8c1b, 0x8c11,\n  0x8c14, 0x8c1d, 0x8c17, 0x8c1e, 0x8c0b, 0x8c1c, 0x8c12, 0x8c16,\n  0x8c0d, 0x8c15, 0x8c13, 0x8c18, 0x0c1a, 0x8eac, 0x8f44, 0x8f2c,\n  0x8f45, 0x9266, 0x926e, 0x9265, 0x9268, 0x9284, 0x9438, 0x943b,\n  0x943a, 0x943f, 0x95df, 0x95dd, 0x95de, 0x95e2,\n  /* 0x2b */\n  0x0dd6, 0x992c, 0x992f, 0x9a8f, 0x9a90, 0x9a8c, 0x9a93, 0x9d25,\n  0x9d88, 0x9da7, 0x9ef7, 0x9fbb, 0xa038, 0xa039, 0xa037, 0xa114,\n  0xa16e, 0xa17b, 0x0fde, 0xa16c, 0xa17f, 0xa178, 0xa17a, 0xa16f,\n  0x0fe5, 0xa3fe, 0xa648, 0xa64b, 0xa641, 0xa649, 0xa63b, 0xad2d,\n  0xb0e3, 0xb11a, 0xb10d, 0xb113, 0xb111, 0xb11c, 0x1272, 0xb3b5,\n  0x12af, 0xb729, 0xb7a1, 0xb824, 0xbabb, 0xbda1, 0xbf83, 0xbf8d,\n  0xbf87, 0xbf85, 0xbf8a, 0xbfa3, 0xbf89, 0xbf84, 0xbfa2, 0xc1b1,\n  0xc1b0, 0xc1af, 0xc1b6, 0xc1c9, 0xc1ca, 0xc1c8, 0xc1b4, 0xc759,\n  0xc7c9, 0xc941, 0xc94c, 0x15c4, 0xc945, 0xc95a, 0x3bb9, 0x3d94,\n  0x3d6e, 0x3da2, 0x3d67, 0x0063, 0x3da3, 0x3d76, 0x3d6c, 0x3d64,\n  0x3da5, 0x3d30, 0x3da6, 0x3d69, 0x3da4, 0x3f90, 0x405f, 0x4060,\n  0x40da, 0x40d8, 0x40dd, 0x00ec, 0x4259, 0x425b,\n  /* 0x2c */\n  0x425a, 0x4239, 0x4234, 0x4244, 0x4233, 0x423c, 0x4258, 0x426a,\n  0x436f, 0x4372, 0x4370, 0x4371, 0x436e, 0x43f0, 0x43eb, 0x4449,\n  0x444c, 0x44f5, 0x4520, 0x456a, 0x4572, 0x464b, 0x465d, 0x4750,\n  0x47f9, 0x47fa, 0x47fb, 0x4823, 0x47b7, 0x4822, 0x47b5, 0x47c4,\n  0x47b4, 0x47ef, 0x0198, 0x47cd, 0x47f0, 0x47b8, 0x47cb, 0x47f1,\n  0x47ba, 0x4803, 0x47f8, 0x47b6, 0x47bc, 0x47b3, 0x4821, 0x47f7,\n  0x47c2, 0x47be, 0x47c9, 0x47bd, 0x47ce, 0x47b9, 0x47c7, 0x47ca,\n  0x47cc, 0x4826, 0x4ce4, 0x4ce0, 0x4cf0, 0x4dec, 0x4e24, 0x4e18,\n  0x4e2f, 0x4e25, 0x5028, 0x5022, 0x506a, 0x3c57, 0x5094, 0x5092,\n  0x509c, 0x5122, 0x5130, 0x511d, 0x5123, 0x5235, 0x5233, 0x522f,\n  0x524d, 0x5231, 0x525b, 0x525a, 0x5232, 0x525c, 0x5259, 0x525d,\n  0x5469, 0x546d, 0x5d32, 0x0358, 0x550a, 0x5520,\n  /* 0x2d */\n  0x551f, 0x550d, 0x56e8, 0x56ec, 0x5777, 0x5770, 0x5771, 0x58f8,\n  0x58d6, 0x58d9, 0x58de, 0x58d5, 0x58e1, 0x03d3, 0x58e2, 0x58dd,\n  0x58e0, 0x590e, 0x5908, 0x58dc, 0x590a, 0x590c, 0x5bb4, 0x5bb1,\n  0x5bb6, 0x5bbc, 0x5d1d, 0x5d24, 0x5d19, 0x5d1b, 0x5d22, 0x5d1a,\n  0x5d1c, 0x5d21, 0x5ee6, 0x5ee4, 0x5ee7, 0x5eea, 0x04e2, 0xe29b,\n  0x5ff0, 0x5ff5, 0x5fef, 0x6142, 0x616e, 0x613c, 0x6197, 0x618c,\n  0x6181, 0x6171, 0x61ce, 0x61ba, 0x617a, 0x617e, 0x0554, 0x6172,\n  0x61bb, 0x052f, 0x6173, 0x6182, 0x05b6, 0x64ba, 0x64b8, 0x654b,\n  0x6548, 0x662b, 0x65f4, 0x662c, 0x6642, 0x6648, 0x6644, 0x6645,\n  0x663c, 0x6637, 0x6633, 0x6641, 0x6632, 0x6687, 0x6a27, 0x6a23,\n  0x6a2d, 0x6a1f, 0x6a2c, 0x6a28, 0x6b75, 0x6b74, 0x6be7, 0x6c32,\n  0x6c31, 0x6c99, 0x6c96, 0x6c98, 0x6c9d, 0x6c92,\n  /* 0x2e */\n  0x6c94, 0x6c95, 0x6c97, 0xa1b9, 0x0735, 0x6f11, 0x6f3b, 0x6f79,\n  0x6f42, 0x6f43, 0x075d, 0x6f78, 0x73ac, 0x0829, 0x73b1, 0x73b4,\n  0x73b3, 0x73af, 0x73aa, 0x73b2, 0x7468, 0x74f2, 0x74fe, 0x74f8,\n  0x74f9, 0x74ff, 0x74f5, 0x74f7, 0x74fd, 0x7500, 0x7588, 0x766e,\n  0x765d, 0x7663, 0x7660, 0x7761, 0x7837, 0x7871, 0x7823, 0x7822,\n  0x781f, 0x7825, 0x7cfd, 0x7d11, 0x7d23, 0x7cf0, 0x7cef, 0x800e,\n  0x800c, 0x80ba, 0x0a1f, 0x8152, 0x8155, 0x8153, 0x8154, 0x8151,\n  0x8158, 0x82b0, 0x829f, 0x0a72, 0x82a1, 0x829a, 0x82be, 0x82a0,\n  0x8437, 0x0b0b, 0x85f1, 0x85f2, 0x8634, 0x8637, 0x8635, 0x5e8c,\n  0x86df, 0x874c, 0x874e, 0x8764, 0x8763, 0x8736, 0x8858, 0x8868,\n  0x885b, 0x885f, 0x8859, 0x8865, 0x8860, 0x885e, 0x8ad5, 0x8ad6,\n  0x8b4e, 0x8b52, 0x8c35, 0x8c39, 0x8c58, 0x8c41,\n  /* 0x2f */\n  0x8c57, 0x8c38, 0x8c3d, 0x8c32, 0x8c44, 0xe344, 0x8e63, 0x8e62,\n  0x8eb8, 0x8eb0, 0x8eb1, 0x8f4d, 0x8f63, 0x8f70, 0x8f4b, 0x8f4f,\n  0x8f4e, 0x8f53, 0x8f47, 0x0ca2, 0x8f54, 0x8f52, 0x8f59, 0x8f7e,\n  0x912b, 0x912e, 0x927f, 0x927e, 0x9281, 0x9283, 0x9447, 0x9454,\n  0x944d, 0x944c, 0x944b, 0x9457, 0x9565, 0x9564, 0x9561, 0x9562,\n  0x95f0, 0x95f3, 0x95f9, 0x95f4, 0x95f5, 0x95ef, 0x95f8, 0x95fc,\n  0x95f7, 0x95fd, 0x9617, 0x9934, 0x9936, 0x9938, 0x9aaf, 0x9aae,\n  0x9aac, 0x9aa2, 0x9d28, 0x69c2, 0x9d9c, 0x9db3, 0x9d90, 0x9f06,\n  0x9f04, 0x9f0b, 0x9f05, 0xa040, 0xa04f, 0xa1ab, 0xa19d, 0xa1b8,\n  0xa1b2, 0xa1d2, 0xa1cf, 0xa1a2, 0x0fec, 0xa1a5, 0xa1a9, 0xa1a7,\n  0xa1d0, 0xa402, 0xa4cf, 0xa4d0, 0xa516, 0xa519, 0xa675, 0xa671,\n  0xa691, 0xa672, 0xa68e, 0xa66d, 0xa688, 0xa673,\n  /* 0x30 */\n  0x10bb, 0xa681, 0xa676, 0xa67b, 0xa67f, 0xa690, 0xa678, 0xad4b,\n  0xad48, 0xad5b, 0xad51, 0xad3d, 0xad40, 0xad46, 0xad4d, 0xad3b,\n  0xad4a, 0xad41, 0xad3e, 0xad4e, 0xb0ac, 0xb0e6, 0xb0e9, 0xb129,\n  0x1221, 0xb133, 0xb12e, 0xb11e, 0x121f, 0xe3c5, 0xb122, 0xb127,\n  0xb2e7, 0xb30b, 0xb466, 0xb6ad, 0xb6ae, 0x3038, 0xb72b, 0xb72a,\n  0xb82c, 0xb82d, 0x1391, 0x1396, 0xb98f, 0xb993, 0xbac6, 0xbac5,\n  0xbd15, 0xbd13, 0xbdb1, 0xbda9, 0x31ce, 0xbfa8, 0xbfab, 0xbfbe,\n  0xbfac, 0xbfa9, 0xbfa6, 0xbfc1, 0xc1cc, 0xc1d1, 0xc1d3, 0xc1e4,\n  0xc1cb, 0xc1e1, 0xc1d2, 0xc1e3, 0xc1cf, 0xc1d0, 0xc1e5, 0xc20e,\n  0xc7cc, 0xc7ca, 0xc7cb, 0xc95c, 0xc961, 0xc95d, 0xc959, 0xcb77,\n  0xd184, 0x3b41, 0x3bfd, 0x3c1a, 0x3c63, 0x3db6, 0x3db2, 0x3de9,\n  0x3de7, 0x3dd6, 0x3e30, 0x3dec, 0x3ddd, 0x3de8,\n  /* 0x31 */\n  0x3db0, 0x3db5, 0x3de1, 0x3f98, 0x3f99, 0x00bc, 0x4093, 0x40e5,\n  0x00d8, 0x4260, 0x425e, 0x00f4, 0x437b, 0x43f1, 0x43f3, 0x457f,\n  0xe238, 0x4657, 0x4658, 0x4839, 0x48a7, 0x4835, 0x4860, 0x4851,\n  0x4862, 0x4842, 0x483c, 0x4843, 0x48ab, 0x48a9, 0x48b4, 0x4879,\n  0x486a, 0x483b, 0x48aa, 0x4833, 0x4837, 0x4827, 0x48a8, 0x4870,\n  0x482f, 0x4836, 0x48b5, 0x4830, 0x483a, 0x4838, 0x48b1, 0x48ac,\n  0x482e, 0x4875, 0x48b0, 0x4cf7, 0x4d00, 0x4cf1, 0x4cf3, 0x4e60,\n  0x4e61, 0x4e32, 0x4e2d, 0x4e4a, 0x4e2a, 0x5067, 0x50a2, 0x50a3,\n  0x509e, 0x50a4, 0x5144, 0x5132, 0x529b, 0x5298, 0x5299, 0x529a,\n  0x5266, 0x5262, 0x526b, 0x8062, 0x5267, 0x553b, 0x5523, 0x5529,\n  0x567e, 0x56f3, 0x0385, 0x56f5, 0x0383, 0x5780, 0x577e, 0x577c,\n  0x577f, 0x577d, 0x5781, 0x5925, 0x5929, 0x5917,\n  /* 0x32 */\n  0x5963, 0x5967, 0x5965, 0x592a, 0x5968, 0x5926, 0x5964, 0x591b,\n  0x5962, 0x5969, 0x5afe, 0x5b44, 0x5b42, 0x5bb7, 0x5bd2, 0x5bd4,\n  0x5bd7, 0x5bdc, 0x5bd1, 0x5bd5, 0x5bcd, 0x5bd8, 0x5c9a, 0x5d42,\n  0x5d35, 0x5d58, 0x5d34, 0x5d3c, 0x5d3b, 0x5d3e, 0x5d3d, 0x5d5a,\n  0x5d41, 0x5d38, 0x5d45, 0x5d33, 0x5e26, 0x04ba, 0x5ef7, 0x5eef,\n  0x5ef0, 0x5eee, 0x5f9d, 0x6006, 0x6011, 0x6008, 0x6002, 0x600a,\n  0x6007, 0x6191, 0x618e, 0x6185, 0x61e8, 0x6217, 0x61d4, 0x0569,\n  0x61c4, 0x61d5, 0x0545, 0x61d8, 0x6180, 0x61de, 0x6242, 0x64c7,\n  0x64bf, 0x668d, 0x6689, 0x6690, 0x669a, 0x66c8, 0x6692, 0x66a1,\n  0x6684, 0x6a57, 0x6a47, 0x6a77, 0x6a3a, 0x6a50, 0x6a42, 0x6a43,\n  0x6aa3, 0x6b77, 0x6cb2, 0x6ce2, 0x6cbd, 0x6e74, 0x6f82, 0x6fb8,\n  0x076c, 0x6fba, 0x6fb9, 0x6fbb, 0x6f87, 0xe2e4,\n  /* 0x33 */\n  0x6f83, 0x6fb7, 0x3b43, 0x73ce, 0x73ba, 0x7473, 0x7509, 0x750a,\n  0x750b, 0x7507, 0x7505, 0x750e, 0x7597, 0x7677, 0x767b, 0x767a,\n  0x7674, 0x7679, 0x7886, 0x78f5, 0x78a5, 0x789d, 0x78be, 0x7896,\n  0x78e1, 0x78a4, 0x78a1, 0x78f6, 0x0904, 0x788d, 0x788b, 0x7878,\n  0x7898, 0x790a, 0x7d5d, 0x7d27, 0x7d5f, 0x80c0, 0x80c1, 0x816d,\n  0x815e, 0x818a, 0x8162, 0x8164, 0x0a3a, 0x82c0, 0x82ca, 0x82d1,\n  0x0a79, 0x82c7, 0x82ce, 0x2309, 0x82c5, 0x8436, 0x8457, 0x8477,\n  0x85f6, 0x85f7, 0x8655, 0x8644, 0x863e, 0x8642, 0x8652, 0x86e1,\n  0x8708, 0x8768, 0x8767, 0x0b5d, 0xe337, 0x887e, 0x8893, 0x8879,\n  0x8881, 0x887d, 0x887b, 0x8894, 0x0b8a, 0x8a66, 0x8ad9, 0x8ae0,\n  0xe33e, 0x8b5f, 0x8c5f, 0x8c5e, 0x8c68, 0x0c27, 0x8c88, 0x8c6a,\n  0x8c6c, 0x8c66, 0x8c67, 0x8c89, 0x8c60, 0x8c85,\n  /* 0x34 */\n  0x3e2a, 0x8e68, 0x8eb9, 0x8eba, 0x8ebe, 0x8f6f, 0x8f80, 0x8f74,\n  0x8f81, 0x8f7a, 0x8f9c, 0x8f73, 0x8f82, 0x8f7f, 0x8fa7, 0x8f79,\n  0x8f78, 0x8f7d, 0x8fa8, 0x8f7c, 0x9168, 0x914e, 0x929e, 0x0d46,\n  0x0d40, 0x9298, 0x0d3f, 0x9285, 0x929c, 0x92c5, 0x929a, 0x9468,\n  0x9465, 0x9467, 0x9461, 0x9460, 0x0d9d, 0x0dcb, 0x957b, 0x0de1,\n  0x9619, 0x960e, 0x9631, 0x9612, 0x9610, 0x9615, 0x963f, 0x961d,\n  0x961e, 0x994d, 0x9948, 0x9945, 0x9942, 0x9949, 0x994a, 0x9947,\n  0x0e7f, 0x994c, 0x9acd, 0x9ad5, 0x9ac4, 0x9aca, 0x9ac3, 0x0f46,\n  0x9d29, 0x9db4, 0x9e6d, 0x9e66, 0x9e6a, 0x9f15, 0x9fd3, 0x9fec,\n  0xa055, 0x101a, 0xa1d6, 0xa1d8, 0xa251, 0xa1e0, 0xa203, 0xa204,\n  0xa1da, 0xa1ea, 0xa202, 0xa1d3, 0xa1e4, 0xa1e5, 0xa43b, 0xa466,\n  0xa52c, 0xa521, 0xa526, 0xa5d4, 0xa5d5, 0xa5d9,\n  /* 0x35 */\n  0xa6d5, 0xa6eb, 0xa6c5, 0x10d3, 0xa727, 0xa6f0, 0xa6b9, 0xa718,\n  0xa6ee, 0x10d0, 0xa6b7, 0xa6bb, 0xa6ef, 0xa6b8, 0xa6df, 0xa6da,\n  0xa6e3, 0xa6c9, 0xa6ec, 0xaca4, 0x118e, 0xaca3, 0xad5e, 0xad61,\n  0xad62, 0xad63, 0xad8e, 0xad69, 0xad6b, 0xad85, 0xad8d, 0xad64,\n  0xad6d, 0xb14c, 0xb149, 0xb147, 0xb148, 0xb142, 0xb145, 0xb15b,\n  0xb15d, 0xb146, 0xb313, 0xb31a, 0xb30e, 0xb30f, 0xb31b, 0xb312,\n  0xb3c3, 0xb3be, 0xb3bd, 0xb479, 0xb47c, 0x12c3, 0x12b6, 0xb480,\n  0xb475, 0xb49b, 0x2f2f, 0xb474, 0x12c0, 0x12b8, 0x5b41, 0x5f94,\n  0xb730, 0xb7a7, 0xb7a5, 0xb7a4, 0xb83a, 0xb95b, 0xb99f, 0xb9a8,\n  0xb9b3, 0xb9a1, 0xb9a7, 0xb9b2, 0xb99d, 0xb9a3, 0xb9a2, 0xbaef,\n  0xbad9, 0x13d9, 0xbad5, 0xbadd, 0xbada, 0xbaee, 0xbad7, 0xbd1a,\n  0xbd19, 0xbd18, 0xbdb3, 0xbdbf, 0xbdbb, 0xbdc0,\n  /* 0x36 */\n  0xbdb9, 0xbdb8, 0xbdd5, 0xbf11, 0xbf10, 0xbfc3, 0xbfc2, 0xbfe9,\n  0xbfcd, 0xbfe5, 0xbfca, 0xbfc7, 0xbfe8, 0xc1f1, 0xc20c, 0xc1ef,\n  0xc1ee, 0xc1f3, 0xc20d, 0xc1f6, 0xc1f0, 0x14ec, 0xc2f5, 0xc2f4,\n  0xc2f8, 0xc2fe, 0xc411, 0xc422, 0xc442, 0xc75c, 0xc75a, 0xc75d,\n  0xc7d1, 0xc7d0, 0xc975, 0xc97b, 0xca89, 0xcf4d, 0xd189, 0xd192,\n  0xd18c, 0xd188, 0xd367, 0xd368, 0x3e21, 0x3df2, 0x3e09, 0x3df8,\n  0x3df0, 0x3df3, 0x3df5, 0x3dfb, 0x3df7, 0x3def, 0x3e0b, 0x3fa2,\n  0x40f5, 0x40f3, 0x40f4, 0x40f2, 0x4198, 0x4268, 0x4280, 0x4285,\n  0x428e, 0x428f, 0x3df4, 0x4286, 0x42a4, 0x4386, 0x4389, 0x4387,\n  0x4385, 0x1adc, 0x4388, 0x45ff, 0x4666, 0x01cc, 0x48c3, 0x01a2,\n  0x48c4, 0x493b, 0x48e7, 0x48f8, 0x48fb, 0x01b6, 0x48be, 0x48c6,\n  0x01c5, 0x01c6, 0x48fc, 0x48c0, 0x4933, 0x48c9,\n  /* 0x37 */\n  0x48fe, 0x48da, 0x48cc, 0x48bb, 0x48fd, 0x48df, 0x48cd, 0x48c2,\n  0x48c8, 0x4932, 0x492d, 0x48d2, 0x4931, 0x48d3, 0x492e, 0x48cf,\n  0x4cff, 0x4d09, 0x4cfc, 0x4e72, 0x4eaa, 0x4eab, 0x4ea7, 0x4e7b,\n  0x4e76, 0x4ea8, 0x4eac, 0x0283, 0x1b21, 0x50aa, 0x4503, 0x50ac,\n  0x50ad, 0x50ab, 0x5150, 0x5158, 0x52dd, 0x02f8, 0x52ae, 0x52a2,\n  0x52ab, 0x52e3, 0x52af, 0x52e0, 0x52e4, 0x02f6, 0x52a7, 0x52aa,\n  0x52e2, 0x52e1, 0x52df, 0x52ad, 0x52e5, 0x52d1, 0x52ac, 0x52d5,\n  0x52a3, 0x529f, 0x5479, 0x5476, 0x5543, 0x553d, 0x5547, 0x5544,\n  0x553f, 0x555b, 0x567f, 0x579a, 0x579c, 0x039b, 0x581e, 0x5988,\n  0x596a, 0x5976, 0x5972, 0x5970, 0x597e, 0x596c, 0x596f, 0x5975,\n  0x5977, 0x5978, 0x598a, 0x5979, 0x5994, 0x5b01, 0x5c05, 0x5bf1,\n  0x5bee, 0x5bef, 0x5c04, 0x1c3f, 0x5bfa, 0x5c07,\n  /* 0x38 */\n  0x5bf4, 0x5bf5, 0x5c9c, 0x5d6d, 0x5d69, 0x5d66, 0x5d62, 0x5d46,\n  0x048d, 0x5d65, 0x5d5d, 0x5d5e, 0x5d5f, 0x5e8e, 0x5f02, 0x5f06,\n  0x5f04, 0x5f03, 0x5f62, 0x6027, 0x6021, 0x6020, 0x6024, 0x6029,\n  0x6031, 0x6023, 0x6022, 0x61dc, 0x624d, 0x61e5, 0x61d3, 0x61ee,\n  0x61e6, 0x0556, 0x6236, 0x6240, 0x633f, 0x623d, 0x6244, 0x055b,\n  0x625f, 0x6229, 0x6249, 0x628a, 0x622a, 0x6287, 0x624c, 0x6231,\n  0x6248, 0x622b, 0x623b, 0x6241, 0x61c9, 0x6234, 0x6253, 0x6235,\n  0x6247, 0x6238, 0x64d1, 0x64d2, 0x6551, 0x6555, 0x6552, 0x6553,\n  0x668f, 0x66f4, 0x6747, 0x670d, 0x671c, 0x66fb, 0x6719, 0x66f7,\n  0x66f9, 0x66f5, 0x66e9, 0x670a, 0x66ee, 0x670b, 0x66fd, 0x6706,\n  0x6702, 0x6716, 0x6718, 0x66f0, 0x69d4, 0x6a66, 0x6a6a, 0x6a75,\n  0x6a76, 0x6a80, 0x6a6d, 0x0696, 0x6a69, 0x6a67,\n  /* 0x39 */\n  0x6a68, 0x6a5d, 0x6ba4, 0x6bfe, 0x6bfd, 0x6cec, 0x6ce9, 0x6d21,\n  0x6ceb, 0x6ce7, 0x6cf2, 0x6d20, 0x6e7a, 0x702d, 0x702e, 0x6fca,\n  0x702f, 0x6fc8, 0x077e, 0x6fcb, 0x6fc3, 0x6f84, 0x6fd2, 0x6fc6,\n  0x0781, 0x6fcf, 0x6fd5, 0x6fd4, 0x6fdd, 0x702b, 0x70a3, 0x6fdb,\n  0x702c, 0x7013, 0x0835, 0x73d1, 0x73cc, 0x73d5, 0x73c9, 0x73cf,\n  0x73d2, 0x747b, 0x747c, 0x7523, 0x751d, 0x751c, 0x751e, 0x7522,\n  0x7524, 0x7520, 0x7518, 0x7521, 0x7688, 0x768a, 0x7694, 0x768f,\n  0x768e, 0x7690, 0x089b, 0x76a7, 0x7764, 0x0900, 0x7918, 0x7914,\n  0x791d, 0x7905, 0x78ff, 0x791b, 0x791a, 0x7919, 0x7903, 0x790e,\n  0x7947, 0x7904, 0x795a, 0x7907, 0x7920, 0x7d6a, 0x7d66, 0x7d7a,\n  0x7d65, 0x7daf, 0x80cd, 0x80cf, 0x80d1, 0x80ce, 0x815f, 0x8177,\n  0x8174, 0x8188, 0x8175, 0x8189, 0x8172, 0x82c6,\n  /* 0x3a */\n  0x82ea, 0x82e0, 0x8307, 0x82e6, 0x82e5, 0x82dd, 0x82e3, 0x82da,\n  0x84ae, 0x847e, 0x847d, 0x847f, 0x0ad3, 0x84d9, 0x85fa, 0x85fb,\n  0x864d, 0x8654, 0x8651, 0x8650, 0x8898, 0x8895, 0x889d, 0x88c1,\n  0x889a, 0x889b, 0x0b9f, 0x889c, 0x88d7, 0x88a4, 0x8896, 0x88a0,\n  0x8a31, 0x8ae9, 0x8b6e, 0x8c9a, 0x8ca5, 0x8c94, 0x8ca6, 0x8c99,\n  0x8c8b, 0x8c98, 0x8c91, 0x8c8c, 0x8ca1, 0x8ca3, 0x8cc6, 0x8e6f,\n  0x8e6d, 0x8e6a, 0x8e6c, 0x8e71, 0x8e6e, 0x8edf, 0x8fac, 0x8faa,\n  0x0cb1, 0x8fb5, 0x8fad, 0x8fb2, 0x8fb3, 0x8fab, 0x8fb6, 0x8fc7,\n  0x8fc6, 0x916c, 0x9170, 0x92b3, 0x0d4b, 0x948c, 0x9481, 0x9483,\n  0x947d, 0x9485, 0x9490, 0x94a2, 0x948d, 0x948f, 0x947e, 0x948a,\n  0x947f, 0x9476, 0x9487, 0x9478, 0x9580, 0x9582, 0x9581, 0x9583,\n  0x965a, 0x9634, 0x962c, 0x962a, 0x9640, 0x962d,\n  /* 0x3b */\n  0x9633, 0x962b, 0x964b, 0x283f, 0x963c, 0x995a, 0x9977, 0x9960,\n  0x9afa, 0x9af9, 0x9afc, 0x0ed6, 0x9af5, 0x9ae8, 0x9b09, 0x9ae7,\n  0x9ae6, 0x9ae9, 0x9d32, 0x9d2c, 0x9dbd, 0x9dbc, 0x9e7a, 0x9e7e,\n  0x9e79, 0x0f89, 0x9f23, 0x9f30, 0x9f28, 0x9fd4, 0xa5ce, 0x9ff1,\n  0x9ff0, 0xa060, 0xa065, 0xa1a8, 0xa20a, 0xa21b, 0xa212, 0xa207,\n  0xa24f, 0xa20e, 0xa252, 0xa216, 0x1000, 0xa253, 0xa254, 0xe384,\n  0xa256, 0xa46d, 0xa472, 0xa52f, 0xa72a, 0x10dc, 0xa763, 0xa784,\n  0xa7af, 0xa745, 0xa770, 0xa756, 0xa716, 0xa73d, 0xa738, 0xa76f,\n  0xa777, 0xa72e, 0xa731, 0xa74c, 0xa75f, 0xa775, 0xa739, 0xa73a,\n  0xa72c, 0xa72d, 0xa73f, 0xa72f, 0xa730, 0xa73e, 0x2ad0, 0x1190,\n  0xacb2, 0xadb7, 0xad8f, 0x11b1, 0xad96, 0xad9e, 0xad97, 0xad95,\n  0xada5, 0xad98, 0x2be7, 0xada3, 0xad9a, 0xadad,\n  /* 0x3c */\n  0xada6, 0xadb6, 0xad99, 0xadaf, 0xadac, 0x11aa, 0xad9f, 0xad94,\n  0xb0eb, 0xb16f, 0xb16d, 0xb17e, 0xb16c, 0xb161, 0xb163, 0xb16b,\n  0xb15e, 0xb13e, 0xb164, 0xb1ad, 0x127d, 0xb320, 0xb3d1, 0xb3d5,\n  0xb4ae, 0xb4af, 0xb49f, 0xb4a8, 0xb4ca, 0xb6e1, 0xb739, 0xb738,\n  0xb73b, 0xb7ad, 0xb7b5, 0xb7af, 0xb7b1, 0xb7ae, 0xb7b4, 0xb7b0,\n  0xb84b, 0xb851, 0xb84c, 0x1369, 0xb860, 0xb9be, 0xb9b9, 0xb9b7,\n  0xb9b6, 0x13a1, 0xb9bd, 0xb9b8, 0xb9c1, 0xbaf7, 0xbaf3, 0xbaf4,\n  0xbafb, 0xbafd, 0xbaf5, 0x13e7, 0xbafa, 0xbb14, 0x13ec, 0xbaf2,\n  0xbafc, 0xbb00, 0x13df, 0xbd2b, 0xbd29, 0xbd2e, 0x1433, 0xbdd7,\n  0xbddb, 0xbdd9, 0xbdd8, 0xbde6, 0xbdd6, 0xbdd1, 0xbde7, 0xbdd0,\n  0xbddc, 0xbfed, 0xc01a, 0xc019, 0xc016, 0xbfec, 0xbfef, 0xbfee,\n  0xbff4, 0xc02f, 0xc230, 0xc219, 0xc218, 0xc211,\n  /* 0x3d */\n  0xc216, 0xc212, 0xc210, 0xc214, 0xc30c, 0xc30d, 0xc410, 0xc429,\n  0xc428, 0xc765, 0xc766, 0xc7de, 0xc7df, 0xc7e0, 0xc7d9, 0xc7db,\n  0xc7d8, 0xc7e3, 0xc7d7, 0xc9a6, 0xc9a7, 0xc9bf, 0xc9a8, 0xc99f,\n  0xc9a1, 0xc9a2, 0xc9ad, 0xc9a3, 0xc9a0, 0xcb83, 0xcb85, 0xcb82,\n  0xcb84, 0xccee, 0xcd5d, 0xce92, 0xcf55, 0xcf53, 0xe3fc, 0xcf51,\n  0xcf52, 0xcf50, 0xd09d, 0xd187, 0xd197, 0xd19b, 0xd19d, 0xd369,\n  0xd511, 0x17ee, 0xd77a, 0x1832, 0x6d44, 0x3bc6, 0x3e40, 0x3e2e,\n  0x3e68, 0x3e2d, 0x3e34, 0x3e32, 0x3e69, 0x3e31, 0x3e6a, 0x3e3e,\n  0x3e6f, 0x3e75, 0x3ff6, 0x4020, 0x4028, 0x4067, 0x40fb, 0x40fe,\n  0x40fc, 0x40fd, 0x40ff, 0x40fa, 0x42ac, 0x42af, 0x42b1, 0x00fc,\n  0x42bf, 0x42be, 0x42a7, 0x42aa, 0x4394, 0x4393, 0x4399, 0x012a,\n  0x43fa, 0x4456, 0x4522, 0x4591, 0x4592, 0x4608,\n  /* 0x3e */\n  0x4606, 0x48d6, 0x4937, 0x494b, 0x49ce, 0x49d0, 0x4939, 0x4964,\n  0x49cf, 0x4946, 0x4966, 0x4956, 0x4943, 0x494a, 0x4958, 0x4965,\n  0x495a, 0x495b, 0x4955, 0x4950, 0x494c, 0x49cd, 0x4951, 0x4947,\n  0x01d3, 0x4953, 0x4962, 0x49cc, 0x01d7, 0x497f, 0x494d, 0x4d0a,\n  0x4d0c, 0x4d0f, 0x4ebb, 0x4eb9, 0x4eeb, 0x4eae, 0x4ec1, 0x4eea,\n  0x4ebe, 0x4ebf, 0x4eba, 0x4eb7, 0x4eb3, 0x4ee9, 0x506e, 0x50af,\n  0x50b3, 0x50b2, 0x5168, 0x5169, 0x516a, 0x52de, 0x52eb, 0x5311,\n  0x52ed, 0x52e9, 0x52f7, 0x52f4, 0x52ea, 0x5312, 0x52e8, 0x5313,\n  0x548e, 0x5486, 0x5563, 0x5565, 0x5699, 0x57c2, 0x57ae, 0x57b0,\n  0x57ad, 0x59b4, 0x59d1, 0x59ad, 0x03f3, 0x59bd, 0x59b7, 0x59ab,\n  0x59af, 0x59c1, 0x59b5, 0x5c0f, 0x5c0e, 0x5c1c, 0x5c13, 0x5c0a,\n  0x5c1e, 0x5c14, 0x5c1a, 0x5ccb, 0x5d87, 0x5d93,\n  /* 0x3f */\n  0x0491, 0x5d84, 0x5d85, 0x5d92, 0x5d80, 0x5e2b, 0x5e63, 0x5f0a,\n  0x04c0, 0x5f66, 0x6034, 0x6033, 0x604d, 0x6289, 0x6257, 0x1e17,\n  0x624a, 0x0563, 0x6239, 0x623f, 0x6290, 0x628f, 0x62b2, 0x629f,\n  0x6295, 0x62a1, 0x629c, 0x628e, 0x62a0, 0x62ae, 0x6296, 0x62ca,\n  0x62ac, 0x0570, 0x62a6, 0x6297, 0x6293, 0x3eb6, 0x64d6, 0x64e0,\n  0x64d8, 0x6556, 0x676e, 0x677e, 0x6774, 0x6777, 0x6780, 0x677a,\n  0x676b, 0x675f, 0x6776, 0x67b0, 0x6763, 0x6a92, 0x6a82, 0x6a9d,\n  0x6a94, 0x6a83, 0x6a8b, 0x6a84, 0x6b57, 0x6b84, 0x6bb5, 0x6c09,\n  0x6ce6, 0x0702, 0x6d25, 0x6d51, 0x6e3e, 0xe2da, 0x6e85, 0x703f,\n  0x7042, 0x7038, 0x703a, 0x704e, 0x7045, 0x7039, 0x7037, 0x7044,\n  0xe2e7, 0x70a4, 0x703d, 0x7041, 0x73df, 0x73de, 0x73ca, 0x73e9,\n  0x73e2, 0x73e0, 0x7489, 0x7487, 0x7532, 0x7533,\n  /* 0x40 */\n  0x75ac, 0x75f9, 0x760d, 0x76b9, 0x795e, 0x796a, 0x0935, 0x7981,\n  0x7969, 0x79ac, 0x7980, 0x7975, 0x7971, 0x7976, 0x796f, 0x7db6,\n  0x7e03, 0x7dbf, 0x7e01, 0x7db2, 0x7dc4, 0x80db, 0x80dc, 0x80d8,\n  0xd172, 0x81b5, 0x81a8, 0x818f, 0x819e, 0x818e, 0x82de, 0x82e2,\n  0x8320, 0x831d, 0x831a, 0x8319, 0x832b, 0x8318, 0x8310, 0x830e,\n  0x8324, 0x831f, 0x8313, 0x8335, 0x8483, 0x0ae0, 0x84d7, 0x8602,\n  0x8603, 0x865c, 0x865f, 0x86c7, 0x879a, 0x8797, 0x87a3, 0x88f7,\n  0x88c6, 0x88cc, 0x88d6, 0x88cd, 0x88f9, 0x88d9, 0x88d8, 0x0b9a,\n  0x88d1, 0x88ce, 0x88d5, 0x0ba3, 0x88d4, 0x88f8, 0x8a7a, 0x8a79,\n  0x8a7f, 0x8af3, 0x8af5, 0x8af6, 0x8af4, 0x8af7, 0x0c05, 0x8b79,\n  0x8c9c, 0x8cdf, 0x8cf5, 0x8cff, 0x8cd1, 0x8cda, 0x8ccf, 0x8ccd,\n  0x8cde, 0x8cd8, 0x75ad, 0x8ce0, 0x8cfe, 0x8c9e,\n  /* 0x41 */\n  0x8e75, 0x8e73, 0x8e72, 0x8ed8, 0x8fd0, 0x8fd6, 0x8fd7, 0x8fca,\n  0x8fcd, 0x918a, 0x9189, 0x918b, 0x92d3, 0x92da, 0x92ce, 0x92d2,\n  0x0d5e, 0x92d4, 0x92d7, 0x92d5, 0x92fb, 0x92cd, 0x92fa, 0x92d6,\n  0x0da6, 0x949b, 0x949e, 0x949d, 0x94a4, 0x949f, 0x94a5, 0x94a8,\n  0x958f, 0x958c, 0x9595, 0x9660, 0x9655, 0x965c, 0x966f, 0x9651,\n  0x9661, 0x96a7, 0x965e, 0x9662, 0x9654, 0x966e, 0x9652, 0x9658,\n  0x966d, 0x965f, 0x966c, 0x9650, 0x965d, 0x968e, 0x9972, 0x9978,\n  0x9975, 0x9976, 0x997c, 0x997e, 0x997d, 0x9b15, 0x9b14, 0x9b1d,\n  0x9b1c, 0x9b23, 0x9b57, 0x9dc8, 0x0f5d, 0x9dc9, 0x9dc5, 0x9e87,\n  0x9e8a, 0x9e94, 0x9f39, 0x9f40, 0x9f3e, 0x9f38, 0x9fd6, 0x0fb8,\n  0xa077, 0xa078, 0xa07d, 0xa1dd, 0xa25e, 0xa277, 0xa2d4, 0xa266,\n  0xa25f, 0xa273, 0xa272, 0xa297, 0xa25a, 0xa296,\n  /* 0x42 */\n  0xa25d, 0xa265, 0xa270, 0xa275, 0xa274, 0xa25c, 0xa260, 0x1034,\n  0xa26d, 0xa441, 0xa53c, 0xa53e, 0x106f, 0xa549, 0xa6e4, 0xa80c,\n  0xa815, 0xa80e, 0xa7d4, 0xa7c7, 0xa814, 0xa7db, 0xa85f, 0xa7ed,\n  0xa809, 0xa7cf, 0xa7ff, 0xa81a, 0xa7f5, 0xa7ee, 0xa7e5, 0xa80d,\n  0xa7df, 0xa7ec, 0xa7d7, 0xa82c, 0xa7cd, 0xa7e3, 0xa800, 0xa7eb,\n  0xa7fd, 0xa80f, 0xa82d, 0xa850, 0xa7fe, 0xa7c4, 0xa7e1, 0xa7f9,\n  0xacbb, 0xacbc, 0x1194, 0x1193, 0xacba, 0xadd0, 0xadd6, 0xadce,\n  0xade1, 0xadd5, 0xadcf, 0xadd3, 0x2c14, 0xadd4, 0xb0b5, 0xb190,\n  0xb1a1, 0xb181, 0xb185, 0xb16e, 0xb188, 0xb182, 0xb186, 0xb18f,\n  0xb189, 0xb180, 0xb184, 0x2dd1, 0xb329, 0xb32b, 0xb32a, 0xb330,\n  0xb3e2, 0xb3e3, 0xb3e1, 0xb4d5, 0xb4c4, 0xb4c9, 0xb4e0, 0xb4df,\n  0xb4cb, 0xb4dd, 0xb4e8, 0xb4d4, 0xb51c, 0xb6b5,\n  /* 0x43 */\n  0xb6b6, 0xb6e5, 0xb745, 0xb749, 0xb740, 0xb746, 0xb744, 0xb74a,\n  0xb7c9, 0xb7c4, 0xb7c2, 0xb868, 0x30cb, 0xb882, 0xb86b, 0xb867,\n  0xb86c, 0xb86d, 0xb871, 0x1392, 0xb9d7, 0xb9d2, 0xb9d9, 0x13aa,\n  0xb9bc, 0xb9dd, 0xb9d6, 0x13a7, 0xb9d8, 0xbb20, 0xbb16, 0xbb18,\n  0xbb15, 0xbb19, 0xbb27, 0xbb50, 0xbb1d, 0xbb2c, 0xbb1c, 0xbb29,\n  0xbb2b, 0xbb24, 0x13ef, 0xbb28, 0xbd39, 0xbdf2, 0xbdf0, 0x31ed,\n  0xbded, 0xbdef, 0xbdea, 0xbe01, 0xbfbc, 0xc05c, 0xc05b, 0xc05a,\n  0xc026, 0xc243, 0xc233, 0xc23a, 0xc237, 0xc236, 0xc23c, 0xc234,\n  0xc24a, 0xc23b, 0xc235, 0xc23d, 0xc240, 0xc23e, 0xc217, 0xc326,\n  0xc324, 0xc310, 0xc336, 0xc325, 0x1522, 0xc466, 0xc77f, 0xc77a,\n  0xc7fb, 0xc7fd, 0xc7fc, 0xc7fa, 0xc9d6, 0xc9d2, 0xc9c8, 0xc9c2,\n  0xc9c7, 0xc9cd, 0xc9c1, 0xc9c6, 0xc9cc, 0xcaa1,\n  /* 0x44 */\n  0xcb95, 0xcb94, 0xcb97, 0xcb96, 0xcb93, 0xcba1, 0xcd09, 0xcd08,\n  0xcd67, 0xcd65, 0xcd62, 0xcd61, 0xce97, 0xcf01, 0xcf19, 0xcf18,\n  0xcf5c, 0xcf67, 0xcf6c, 0x16b5, 0xe3fd, 0xcf66, 0xcf61, 0xcf6e,\n  0xcf5d, 0xcf5a, 0xd0a2, 0xd0a9, 0xd0a5, 0xd0a6, 0xd0b2, 0xd0a3,\n  0xd1ac, 0xd1aa, 0xd1af, 0xd1ab, 0xd1b1, 0xd1c6, 0xd1ad, 0xd1b9,\n  0xd370, 0x1775, 0xd70c, 0xd781, 0xd783, 0xd77e, 0xd851, 0xda99,\n  0xda94, 0xda95, 0xddfe, 0xdf18, 0x3c05, 0x3e72, 0x0082, 0x3e99,\n  0x3fad, 0x4106, 0x42c2, 0x42cb, 0x42d5, 0x42d2, 0x42cc, 0x42d7,\n  0x42c5, 0x42ca, 0x1aec, 0x43a2, 0x43a3, 0x43a1, 0x1ae8, 0x43a6,\n  0x43a4, 0x43ff, 0x4400, 0x0135, 0x4506, 0x4525, 0x459f, 0x467f,\n  0x49ea, 0x49eb, 0x49de, 0x4a18, 0x49e0, 0x49e8, 0x49df, 0x49f1,\n  0x49ec, 0x4a1a, 0x49e6, 0x49e1, 0x4a5d, 0x3b77,\n  /* 0x45 */\n  0x4a1e, 0x01f0, 0x4a80, 0x4d17, 0x4f1d, 0x4ef7, 0x4eef, 0x4eee,\n  0x4eed, 0x4ef5, 0x4f1e, 0x50bd, 0x92ff, 0x50be, 0x516d, 0x5176,\n  0x534c, 0x5319, 0x5348, 0x531e, 0x534a, 0x5349, 0x5326, 0x5495,\n  0x5585, 0x557e, 0x5597, 0x557d, 0x5642, 0x569e, 0x570c, 0x570b,\n  0x570e, 0x57cf, 0x59d8, 0x59e0, 0x59e8, 0x59e9, 0x59e2, 0x59e1,\n  0x59da, 0x59e3, 0x59d9, 0x59f0, 0x59e7, 0x59e4, 0x5c23, 0x5c31,\n  0x5c33, 0x5c0c, 0xa4e0, 0x5c26, 0x5c24, 0x5c32, 0x5c27, 0x5c21,\n  0x5c30, 0x5ca2, 0x5ccc, 0x5d96, 0xe28f, 0x5d98, 0x5d9c, 0x5d9b,\n  0x5e6b, 0x5f12, 0x5f14, 0x605a, 0x6054, 0x6051, 0x605e, 0x6058,\n  0x04f0, 0x6059, 0x629a, 0x62f2, 0x62ad, 0x6320, 0x62f1, 0x62f0,\n  0x62f3, 0x62f4, 0x62e9, 0x62fe, 0x632e, 0x62e8, 0x62e7, 0x62ff,\n  0x62f5, 0x64e5, 0x64e7, 0x64e6, 0x64e9, 0x6558,\n  /* 0x46 */\n  0x676c, 0x67d9, 0x063e, 0x67cb, 0x0639, 0x67be, 0x67b5, 0x67d1,\n  0x67c2, 0x67b6, 0x67d3, 0xe2c2, 0x69da, 0x06a2, 0x6aae, 0x06a1,\n  0x6aac, 0x6aa9, 0x6aba, 0x6aa7, 0x6ab3, 0x6abd, 0x6ab1, 0x6c0e,\n  0x6c11, 0x6c0f, 0x6d52, 0x6d6a, 0x6d54, 0x6d55, 0x6d53, 0x6d57,\n  0xe2d0, 0x6d5b, 0x6d58, 0x6d59, 0x073b, 0x70b8, 0x70b5, 0x70bf,\n  0x70c1, 0x70bb, 0x07b7, 0x70c3, 0x70ad, 0x70a8, 0x70ae, 0x70aa,\n  0x70d0, 0x70b1, 0x70bc, 0x70b7, 0x70b0, 0x70fa, 0x70fb, 0x70b9,\n  0x7407, 0x73fc, 0x73ff, 0x73f2, 0x73f8, 0x73f4, 0x0857, 0x0870,\n  0x75ae, 0x760f, 0x7610, 0xd5c1, 0x76c7, 0x76c6, 0x76ce, 0x08a7,\n  0x76dc, 0x79d5, 0x79d3, 0x7a20, 0x79e2, 0x79f1, 0x79db, 0x79ea,\n  0x79eb, 0x79e1, 0x79ff, 0x79d6, 0x79e0, 0x79d7, 0x79e5, 0x0954,\n  0x7e1b, 0x7e10, 0x7e0f, 0x7e0e, 0x7e39, 0x7e0a,\n  /* 0x47 */\n  0x7e14, 0x7e0c, 0x8023, 0x805a, 0x80e2, 0x8193, 0x81b0, 0x81ab,\n  0x81bd, 0x81b1, 0x818d, 0x81ad, 0x81aa, 0x81ac, 0x81bc, 0x81c9,\n  0x8347, 0x8362, 0x8340, 0x8344, 0x833f, 0x8343, 0x833d, 0x8360,\n  0x835f, 0x833a, 0x8342, 0x835e, 0x835d, 0x84bc, 0x84e0, 0x84ee,\n  0x84eb, 0x850d, 0x8609, 0x860c, 0x8669, 0x8674, 0x8667, 0x0b31,\n  0x2427, 0x87ad, 0x88ff, 0x8916, 0x8908, 0x8909, 0x8900, 0x88fc,\n  0x8913, 0x8914, 0x890a, 0xd33e, 0x8929, 0x8917, 0x893b, 0x88fb,\n  0x0bbf, 0x890e, 0x0be4, 0x8b08, 0x8d1b, 0x8d1a, 0x8d19, 0x8d02,\n  0x0c4a, 0x8d17, 0x8d07, 0x8d13, 0x8d09, 0x8d0a, 0x8d12, 0x8daa,\n  0x8d38, 0x8e7b, 0x8e7c, 0x8e7a, 0x8eea, 0x8eeb, 0x8eef, 0x8ef0,\n  0x9009, 0x9002, 0x9001, 0x902b, 0x9007, 0x0ccf, 0x9028, 0x8ffb,\n  0x902a, 0x8ffe, 0x9004, 0x9029, 0x900a, 0x268c,\n  /* 0x48 */\n  0x91c2, 0x2691, 0x91a6, 0x0d14, 0x6ac6, 0x5707, 0x930a, 0x92fd,\n  0x9306, 0x930d, 0x9309, 0x930b, 0x9300, 0x9305, 0x933d, 0x94d5,\n  0x94bf, 0x94ba, 0x94c7, 0x9598, 0x959a, 0x0e0d, 0x96a4, 0x969c,\n  0x969d, 0x96a2, 0x9696, 0x9695, 0x96a5, 0x96aa, 0x96ad, 0x969a,\n  0x96a3, 0x9697, 0x9690, 0x96af, 0x968d, 0x0e01, 0x96a8, 0x96ee,\n  0x99a3, 0x9999, 0x99a1, 0x999c, 0x99a4, 0x99cb, 0x9b56, 0x9b48,\n  0x9b59, 0x9b4a, 0x9b5c, 0x0ef1, 0x9b4f, 0x9b4d, 0x9b5d, 0x9d3a,\n  0x9de3, 0x9de1, 0x9dde, 0x9e97, 0x9e9a, 0x9f48, 0x9f4a, 0x9f4c,\n  0x9f4e, 0x9f4f, 0x9f4b, 0x9f4d, 0x9f47, 0x9f51, 0x9fda, 0x9ff9,\n  0x9ffc, 0x9ffb, 0x9ffd, 0x9ff8, 0x9ffa, 0xa08a, 0xa08e, 0xa088,\n  0xa089, 0xa08d, 0xa090, 0xe37e, 0xa21c, 0xa2ab, 0xa2a4, 0xa2a8,\n  0xa2ad, 0xa29f, 0xa29a, 0xa2b0, 0xa2a5, 0xa2d5,\n  /* 0x49 */\n  0xa2a2, 0xa2b2, 0xa29d, 0xa2a1, 0xa415, 0xa442, 0xa473, 0xa484,\n  0xa4dd, 0xa55c, 0xa54c, 0x1076, 0xa54b, 0xa767, 0xa8a8, 0xa87f,\n  0xa88d, 0xa88b, 0xa8f7, 0xa8a9, 0xa8f4, 0xa89a, 0xa88c, 0xa895,\n  0xa87e, 0xa877, 0x110a, 0x1103, 0xa871, 0xa8fd, 0xa888, 0xa899,\n  0xa86d, 0xa8d4, 0xa891, 0xa87d, 0xa863, 0xa875, 0xa8f9, 0xa88e,\n  0xa874, 0xa8d9, 0xa866, 0xa8fa, 0xa8f5, 0x2b60, 0xacc1, 0xacc9,\n  0xae03, 0xae2c, 0xae34, 0xae17, 0xae09, 0xae04, 0xae06, 0xae1a,\n  0xae0e, 0xae27, 0xae05, 0xae07, 0xae19, 0xae14, 0xae0c, 0xae1d,\n  0xae22, 0xae23, 0xb0bb, 0xb0bc, 0xb0ba, 0xb1a9, 0xb1b5, 0xb1ac,\n  0xb1aa, 0xb1af, 0xb1b7, 0x1235, 0x1236, 0xb33d, 0xb345, 0xb348,\n  0xb33c, 0xb33e, 0xb3ec, 0xb3ed, 0xb3e9, 0xb50a, 0xb50b, 0xb4f8,\n  0xb504, 0xb4f6, 0xb4f9, 0xb753, 0xb752, 0xb760,\n  /* 0x4a */\n  0xb763, 0xb7ce, 0xb7cd, 0xb7d0, 0xb7cc, 0xb887, 0xb88d, 0xb89d,\n  0x1373, 0xb963, 0xb9f4, 0xb9f1, 0xb9ff, 0xb9f5, 0xb9fc, 0xb9f2,\n  0xb9f6, 0x13b1, 0xb9fa, 0x13af, 0xbb2e, 0xbb45, 0xbb43, 0xbb51,\n  0xbb4c, 0xbb73, 0xbb47, 0xbb4b, 0xbb4f, 0x13f4, 0xbb44, 0xbb4d,\n  0xbb4e, 0xbb4a, 0xbb41, 0xbb52, 0xbb9f, 0xbb54, 0xbb59, 0xbba2,\n  0xbd4b, 0xbd48, 0xbe0d, 0xbe1f, 0xbe08, 0xbe0e, 0xbe1d, 0xbe04,\n  0xbf18, 0xbf1b, 0xc066, 0xc062, 0xc083, 0xc067, 0xc262, 0xc24f,\n  0xc24e, 0xc267, 0xc253, 0xc24d, 0xc24c, 0xc268, 0xc251, 0x14dc,\n  0xc258, 0xc25b, 0xc250, 0xc26a, 0xc339, 0xc338, 0xc482, 0xc484,\n  0xc486, 0xc780, 0xc786, 0xc825, 0xc811, 0x1599, 0xc80e, 0xc815,\n  0xc80f, 0xc818, 0xc80d, 0xc813, 0xc816, 0xc819, 0xca08, 0xc9f7,\n  0xc9fb, 0xc9fc, 0xcab4, 0xcabe, 0xcac1, 0xcba6,\n  /* 0x4b */\n  0xcba5, 0xcba2, 0xcba4, 0xcd12, 0xcd0e, 0xcd7a, 0xcd78, 0xcd7d,\n  0xcd7e, 0xcd81, 0xcd83, 0xcd80, 0xcd82, 0xce9b, 0xce99, 0xce9c,\n  0xce9a, 0xcea1, 0xcf1a, 0xcf1c, 0xcf8a, 0xcf79, 0xcf73, 0xcf75,\n  0xcf7c, 0xcf78, 0xcf60, 0xcf83, 0xcf70, 0x16b6, 0x16bd, 0xcf87,\n  0xcf84, 0xcf7b, 0xcf7e, 0xcf74, 0xd0b9, 0xd0b8, 0xd0b7, 0xd0b5,\n  0xd1cc, 0xd1ce, 0xd1d1, 0x3504, 0xd1cb, 0x359b, 0xd37e, 0xd37a,\n  0xd377, 0xd38c, 0xd3e1, 0xd520, 0xd51e, 0xd5c2, 0xd60f, 0xd600,\n  0x17f4, 0xd610, 0xd70d, 0xd70e, 0xd78e, 0xd78d, 0xd78a, 0xd78b,\n  0xd78c, 0xd78f, 0xd857, 0x1835, 0xd855, 0xd85b, 0xdaac, 0xdaa7,\n  0xdaa0, 0xda9e, 0x18aa, 0xdd8d, 0x191f, 0xde93, 0xde94, 0xde92,\n  0x3c81, 0x3ed6, 0x3ec3, 0x3ee4, 0x3ee2, 0x3f09, 0x3ebf, 0x3ec8,\n  0x3ec7, 0x3fb5, 0x3fb2, 0x410c, 0x410b, 0x410a,\n  /* 0x4c */\n  0x4105, 0x42d3, 0x42e6, 0x42e9, 0x42f0, 0x42ea, 0x42e7, 0x43b1,\n  0x43b3, 0x43b4, 0x43b0, 0x445c, 0x445d, 0x445e, 0x44c0, 0x45af,\n  0x0150, 0x4686, 0x4683, 0x4684, 0x4a5c, 0x4a70, 0x4a8c, 0x4a7b,\n  0x4a66, 0x4a79, 0x4a63, 0x4ac5, 0x4a6b, 0x4a6d, 0x4a72, 0x4a69,\n  0x4a75, 0x4a89, 0x4ac6, 0x4aa5, 0x3ee7, 0x4a6a, 0x4a97, 0x4f5a,\n  0x4f5c, 0x4f59, 0x4f24, 0x4f25, 0x4f30, 0x4f58, 0x4f31, 0x5076,\n  0x50c1, 0x5185, 0x517d, 0x5365, 0x5387, 0x5352, 0x5354, 0x538a,\n  0x5350, 0x5386, 0x534f, 0x5368, 0x549d, 0x55a0, 0x55ba, 0x55bd,\n  0x55b8, 0x56a6, 0x037b, 0x57de, 0x57d8, 0x57d1, 0x5a13, 0x0409,\n  0x5a0e, 0x5a1b, 0x5a3a, 0x0407, 0x5a1c, 0x5a12, 0x5a16, 0x5a1a,\n  0x4f48, 0x5c4b, 0x5c37, 0x5c36, 0x5c38, 0x5c3a, 0x5c49, 0x5c3c,\n  0x5c4a, 0x5db1, 0x5dc2, 0x5db5, 0x5dc4, 0x5db6,\n  /* 0x4d */\n  0x5f1e, 0x5f1f, 0x5faf, 0x606b, 0x606f, 0x6292, 0x62e4, 0x632c,\n  0x62ef, 0x1e84, 0x634f, 0x6352, 0x6350, 0x633a, 0x6337, 0x6347,\n  0x6364, 0x6340, 0x633c, 0x6345, 0x6341, 0x64f3, 0x05bb, 0x67c1,\n  0x67b4, 0x064b, 0x682a, 0x6822, 0x6829, 0x064d, 0x683e, 0x683c,\n  0x6830, 0x6ac7, 0x6ad5, 0x6ad6, 0x6ad3, 0x6ace, 0x6ac8, 0x6b5c,\n  0x6b5f, 0x6b62, 0x06c2, 0x6bbd, 0x6bbf, 0x6d5c, 0x6db6, 0x071a,\n  0x6d9d, 0x6d7f, 0x0712, 0x6d94, 0x6d81, 0x6e47, 0x6e46, 0x073c,\n  0x6e94, 0x7175, 0x711a, 0x712a, 0x7132, 0x7117, 0x7123, 0x7174,\n  0x07c3, 0x7176, 0x712e, 0x7125, 0x7120, 0x7171, 0x7116, 0x7170,\n  0x712c, 0x712f, 0x711f, 0x7164, 0x07c0, 0x7408, 0x7414, 0x740a,\n  0x740b, 0x754f, 0x7559, 0x7554, 0x7551, 0x75b6, 0x76ec, 0x76ed,\n  0x76ea, 0x79ee, 0x7a5a, 0x7a73, 0x7a65, 0x7a61,\n  /* 0x4e */\n  0x7a55, 0x7a6b, 0x7a64, 0x7a5b, 0x7a4c, 0x7a6f, 0x7a84, 0x7a70,\n  0x7e5d, 0x7e57, 0x7e66, 0x7e53, 0x7e98, 0x7e97, 0x8028, 0x80eb,\n  0x80ea, 0x80e8, 0x80ec, 0x80ef, 0x81d1, 0x81ca, 0x229f, 0x81cf,\n  0x81cd, 0x81ce, 0x8370, 0x8367, 0x8373, 0x836d, 0x8376, 0x8379,\n  0x836a, 0x838b, 0x8372, 0x8371, 0x836e, 0x837a, 0x8516, 0x8539,\n  0x853b, 0x8610, 0x8696, 0x867b, 0x867c, 0x867d, 0x87be, 0x895c,\n  0x8938, 0x8939, 0x892e, 0x8934, 0x8932, 0x895b, 0x8933, 0x893c,\n  0x0be5, 0x8b0e, 0x8b0f, 0x8b10, 0x8b87, 0x8d5b, 0x8d53, 0x0c5f,\n  0x8d5c, 0x8d3f, 0x8d59, 0x8d4a, 0x8d44, 0x8d4c, 0x8d40, 0x8d5f,\n  0x8d5e, 0x8d4e, 0x8d54, 0x8d43, 0x8d87, 0x8e82, 0x8e85, 0x9031,\n  0x9047, 0x902e, 0x902f, 0x9048, 0x9034, 0x0d18, 0x409f, 0x9332,\n  0x9336, 0x9333, 0x9331, 0x9340, 0x9341, 0x94dd,\n  /* 0x4f */\n  0x94d2, 0x94d9, 0x0dad, 0x94df, 0x94db, 0x94d8, 0x94d3, 0x94de,\n  0x94e0, 0x94d4, 0x94d7, 0x94da, 0x95a7, 0x96fe, 0x96dd, 0x9740,\n  0x96e2, 0x0e1e, 0x96d6, 0x96de, 0x96ef, 0x0e27, 0x96eb, 0x96ea,\n  0x96e4, 0x96d1, 0x0e18, 0x96ec, 0x96fa, 0x96d9, 0x96f3, 0x96e1,\n  0x96dc, 0x96e5, 0x96df, 0x96d4, 0x0e20, 0x9705, 0x99d6, 0x99d5,\n  0x99d0, 0x99c8, 0x99c4, 0x99c9, 0x99cd, 0x99d2, 0x99cc, 0x99ca,\n  0x9ba0, 0x9b92, 0x0ef4, 0x0f02, 0x9b8b, 0x9ba1, 0x9b95, 0x9b88,\n  0x9b86, 0x9b8d, 0x9b85, 0x9b91, 0x9b89, 0x9ba2, 0x9df0, 0x9df3,\n  0x9df4, 0x9def, 0x9e06, 0x9ea2, 0x9f5e, 0x9f63, 0x9f60, 0x9f5b,\n  0x9f7b, 0x9f58, 0x9f59, 0x9f5d, 0xa005, 0xa006, 0xa002, 0xa003,\n  0xa004, 0xa0a2, 0xa0a7, 0xa0a6, 0xa0a4, 0xa0ac, 0xa0a9, 0xa2e7,\n  0xa301, 0xa2df, 0xa2d9, 0xa2e3, 0xa30f, 0xa41a,\n  /* 0x50 */\n  0xa445, 0xa448, 0xa47b, 0xa485, 0xa486, 0xa4fe, 0xa4ff, 0xa564,\n  0xa571, 0xa572, 0xa561, 0xa562, 0xa56c, 0xa560, 0xa55d, 0xa563,\n  0xa567, 0xa901, 0xa92a, 0xa930, 0xa906, 0xa97d, 0xa922, 0xa9b9,\n  0xa90a, 0xa910, 0xa88f, 0xa980, 0xa913, 0xa92e, 0xa918, 0xa917,\n  0xa91a, 0xa914, 0xa947, 0xa963, 0xa938, 0x1124, 0xa97f, 0xa921,\n  0xa937, 0xa931, 0xa91b, 0xa9a5, 0xaa6c, 0xacd3, 0xae88, 0xae6e,\n  0xae5c, 0xae74, 0xae54, 0xae83, 0x2c70, 0xae65, 0xae60, 0xae70,\n  0xae6f, 0xae6d, 0xae72, 0xae6c, 0xae76, 0xae75, 0xae59, 0xaec7,\n  0xb0c1, 0xb0f9, 0xb1e3, 0xb1e7, 0xb1d6, 0xb1cf, 0xb1da, 0xb1e9,\n  0xb1d2, 0xb355, 0xb34f, 0xb34d, 0xb351, 0xb356, 0xb3f9, 0xb3f8,\n  0xb406, 0xb403, 0xb409, 0xb3f7, 0xb3f5, 0xb547, 0xb545, 0xb53e,\n  0xb546, 0xb529, 0xb534, 0xb53f, 0xb544, 0xb535,\n  /* 0x51 */\n  0xb55a, 0xb52a, 0xb533, 0xb537, 0xb543, 0xb539, 0xb530, 0xb55d,\n  0xb532, 0xb527, 0xb6bd, 0xb6ba, 0xb6bc, 0xb6f1, 0xb6f0, 0xb761,\n  0xb75c, 0xb758, 0xb75d, 0xb7da, 0xb7d9, 0xb7dd, 0xb7dc, 0xb7de,\n  0x137d, 0xb8a0, 0xb8a2, 0xba0f, 0xba13, 0xba12, 0xba11, 0xba14,\n  0xba19, 0xba0e, 0xba17, 0xba21, 0xba20, 0xba16, 0xbb78, 0x3137,\n  0xbb87, 0xbb79, 0xbb80, 0xbb77, 0xbb81, 0xbb46, 0xbb7a, 0xbb9c,\n  0xbb83, 0xbb84, 0xbbad, 0xbb9d, 0xbb9e, 0xbd55, 0xbe36, 0xbe2b,\n  0xbe27, 0xbe46, 0xbe2c, 0xbe45, 0xbe33, 0xbe2d, 0xbe34, 0xbe22,\n  0x1464, 0xbf1f, 0xc0b3, 0xc08c, 0xc08f, 0xc0af, 0xc0ad, 0xc08e,\n  0xc0ac, 0xc0b0, 0xc0b1, 0xc0ae, 0xc099, 0xc1eb, 0xc274, 0xc275,\n  0xc28e, 0xc26d, 0xc270, 0xc28c, 0xc34f, 0xc351, 0xc358, 0xc34c,\n  0xc34e, 0xc415, 0xc4be, 0xc4db, 0xc4b3, 0xc4ae,\n  /* 0x52 */\n  0xc787, 0xc78a, 0xc788, 0xc78b, 0xc78c, 0xc844, 0xc82d, 0xc82a,\n  0xc831, 0xc82c, 0xc845, 0xc830, 0xc829, 0xc846, 0xc9f4, 0xca14,\n  0xca10, 0xca0f, 0xca12, 0xca0b, 0xca0c, 0xca0a, 0xca13, 0xca0e,\n  0xcad9, 0xcad0, 0x3403, 0xcbc1, 0xcbbf, 0xcbbd, 0xcbbc, 0xcbba,\n  0xcbbb, 0xcbd1, 0xcbbe, 0xcbd0, 0xcbb9, 0xcd1a, 0xcd1c, 0xcd1b,\n  0xcd91, 0xcd96, 0xcd9f, 0xcd9c, 0xcd9a, 0xcd9d, 0xcead, 0xcea5,\n  0xceae, 0xcf03, 0xcf26, 0xcf20, 0xcf23, 0xcf24, 0xcf21, 0xcf28,\n  0xcf25, 0xcf1e, 0xcf94, 0xcf93, 0xcf8f, 0xcf9a, 0xcfad, 0x16c2,\n  0xd0ca, 0xd0c5, 0xd1bb, 0xd1e1, 0xd1ea, 0xd1e4, 0xd1ed, 0xd1e6,\n  0xd1e0, 0xd1e8, 0xd1e5, 0xd31a, 0xd394, 0xd396, 0xd39e, 0xd395,\n  0xd3a1, 0xd38e, 0xd39b, 0xd392, 0xd397, 0xd399, 0xd393, 0xd532,\n  0xd52f, 0xd52e, 0xd533, 0xd61c, 0xd61e, 0xd611,\n  /* 0x53 */\n  0xd620, 0xd61f, 0xd619, 0xd616, 0xd7ac, 0xd7b9, 0xd7b3, 0xd7a6,\n  0xd7a2, 0xd7a9, 0xd7a7, 0xd86c, 0xd86d, 0xd869, 0xd880, 0xd866,\n  0xd865, 0xd871, 0xd86b, 0xdabd, 0xdac1, 0xdad3, 0xdab6, 0x18ac,\n  0xdab9, 0xdad4, 0xdab7, 0xdadb, 0xdab8, 0xdac0, 0xdabc, 0xdad5,\n  0xdabf, 0xdac3, 0xdac9, 0xdd58, 0xdd90, 0xdd95, 0xdd97, 0xde09,\n  0xde08, 0xde06, 0xde05, 0xde10, 0xde97, 0xde95, 0xdeee, 0xdf1f,\n  0xe41a, 0x564b, 0x3c8e, 0x3ee8, 0x3ef0, 0x3ef4, 0x3f06, 0x3eed,\n  0x009b, 0x3ee9, 0x3f00, 0x3fb8, 0x406d, 0x4304, 0x4301, 0x4303,\n  0x4302, 0x1af6, 0x0126, 0x4462, 0x45ba, 0x4613, 0x4ade, 0x4ad7,\n  0x4ae4, 0x4ace, 0x4ae3, 0x4add, 0x4b3a, 0x4adb, 0x4ad6, 0x4ae0,\n  0x4ad4, 0x4acb, 0x4ae1, 0x4ac9, 0x4adf, 0x4b3c, 0x4afc, 0x4acf,\n  0x4f79, 0x4f76, 0x4f78, 0x5187, 0x539c, 0x53b1,\n  /* 0x54 */\n  0x53c1, 0x539a, 0x5392, 0x0daf, 0x53c2, 0x5396, 0x53c0, 0x5391,\n  0x5395, 0x54a2, 0x55c3, 0x55c0, 0x55c2, 0x468a, 0x56b0, 0x5716,\n  0x5a46, 0x5a4a, 0x5a3e, 0x5a45, 0x5a42, 0x0415, 0x5a5b, 0x5a44,\n  0x5b04, 0x7b22, 0x5c55, 0x5c57, 0x5c51, 0x5c4e, 0x5c5a, 0x5dc6,\n  0x5dc3, 0x049c, 0x5dc5, 0x5dcc, 0x5e71, 0x5f26, 0x5fb2, 0x607a,\n  0x6084, 0x607b, 0x6374, 0x638c, 0x6351, 0x6348, 0x638d, 0x6392,\n  0x6398, 0x6393, 0x63b0, 0x634e, 0x6396, 0x6397, 0x639c, 0x63ca,\n  0x6833, 0x6883, 0x6884, 0x689a, 0x688c, 0x20cc, 0x6899, 0x69e0,\n  0x6ae4, 0x6af8, 0x6aed, 0x6af3, 0x6af4, 0x6af5, 0x6afd, 0x6c19,\n  0x6d9e, 0x6dc4, 0x6d9f, 0x6e9b, 0x6e9f, 0x6e9a, 0x71aa, 0x719d,\n  0x7192, 0x71a2, 0x71af, 0x71eb, 0x71a0, 0x71a1, 0x7194, 0x7198,\n  0x718f, 0x7187, 0x7184, 0x71a9, 0x717c, 0x7418,\n  /* 0x55 */\n  0x755f, 0x7562, 0x7561, 0x75c0, 0x7615, 0x76fc, 0x76f9, 0x7ac8,\n  0x7ac9, 0x7ade, 0x7aca, 0x7ae2, 0x0964, 0x096e, 0x7b04, 0x7acc,\n  0x7add, 0x7ae4, 0x7ad3, 0x7ac7, 0x7ac6, 0x095f, 0x7b37, 0x7ed8,\n  0x7eee, 0x7eb2, 0x7ea3, 0x7eb3, 0x7eed, 0x7ef8, 0x8031, 0x805b,\n  0x8066, 0x8069, 0x8096, 0x809b, 0x80f7, 0x80f3, 0x80f4, 0x80f5,\n  0x81e2, 0x81e7, 0x81e5, 0x81e9, 0x81e6, 0x81e3, 0x8374, 0x837f,\n  0x838f, 0x8390, 0x8397, 0x83a3, 0x838e, 0x8398, 0x838c, 0x8542,\n  0x8544, 0x8569, 0x8543, 0x8568, 0x0af6, 0x868d, 0x8688, 0x868b,\n  0x8689, 0x87cc, 0x881f, 0x8980, 0x895e, 0x8967, 0x8968, 0x8965,\n  0x254a, 0x8974, 0x8969, 0x8961, 0x8962, 0x896c, 0x8993, 0x8986,\n  0x8a9d, 0x8a9b, 0x8b1b, 0x8b16, 0x8b19, 0x8b14, 0x8b18, 0x8b15,\n  0x8b99, 0x8b98, 0x8d5d, 0x8d89, 0x8d7a, 0x8d7d,\n  /* 0x56 */\n  0x8d4b, 0x0c73, 0x8d78, 0x8d7f, 0x8d77, 0x8d7e, 0x8d79, 0x8dab,\n  0x8d7c, 0x8d74, 0x8d75, 0x8da7, 0x8e8d, 0x904e, 0x9066, 0x9061,\n  0x904d, 0x904f, 0x0cdd, 0x9054, 0x907c, 0x91da, 0x91de, 0x91d8,\n  0x91dd, 0x91df, 0x9366, 0x9362, 0x935f, 0x9364, 0x9363, 0x9360,\n  0x9388, 0x936a, 0x9367, 0x9387, 0x933f, 0x936c, 0x936e, 0x93ad,\n  0x94f1, 0x94f4, 0x94f6, 0x94f5, 0x94f8, 0x94fb, 0x94ec, 0x94ef,\n  0x94ed, 0x27b9, 0x94f7, 0x94f9, 0x94fd, 0x95b1, 0x9736, 0x971b,\n  0x9732, 0x9742, 0x974d, 0x971f, 0x9721, 0x971c, 0x9731, 0x972e,\n  0x9747, 0x973b, 0x9741, 0x9718, 0x9739, 0x971d, 0x9727, 0x9723,\n  0x28d7, 0x99ee, 0x99e8, 0x99e5, 0x99ef, 0x99e4, 0x99ec, 0x99f0,\n  0x9bd7, 0x9bd8, 0x9bd4, 0x9bca, 0x9bd2, 0x9bcb, 0x9bd3, 0x9be6,\n  0x9be2, 0x9d49, 0x9d48, 0x9dff, 0x9e09, 0x9eb0,\n  /* 0x57 */\n  0x9eaf, 0x9f7c, 0x9f78, 0x9f7a, 0x9f72, 0x9f79, 0x9f7e, 0xa00c,\n  0xa00b, 0xa0cd, 0xa0be, 0xa0bc, 0xa0bf, 0xa0c0, 0xa0bd, 0xa338,\n  0xa308, 0xa305, 0xa33b, 0xa310, 0xa30c, 0xa30d, 0xa304, 0xa33a,\n  0xa313, 0xa337, 0xa339, 0xa41f, 0xa44b, 0xa4ee, 0xa575, 0xa578,\n  0xa57c, 0xa574, 0xa576, 0xa5ea, 0xa5eb, 0xa8fb, 0xa919, 0xa9a7,\n  0xa98c, 0xa9dc, 0xa998, 0xa9be, 0xa99e, 0xaa0f, 0xa99f, 0xa9dd,\n  0xa993, 0xa9bb, 0xa9b6, 0xa990, 0xa9a1, 0xa9bd, 0xa9de, 0xa93a,\n  0xaa22, 0xa997, 0xa994, 0xa9c3, 0xa98e, 0xa9a8, 0xa999, 0xa9ad,\n  0xa99b, 0xa9a2, 0xaa21, 0xa9ac, 0xaa0e, 0xaa31, 0xace1, 0xacde,\n  0xacdf, 0xacdc, 0xacdd, 0xacec, 0xace7, 0xae69, 0xaeb8, 0xaea1,\n  0xaea8, 0xaeba, 0xaec2, 0xaea6, 0xaea4, 0xaea3, 0xaeab, 0xaebc,\n  0xaeb7, 0xaebf, 0xaead, 0xaeb1, 0xaeca, 0xaec4,\n  /* 0x58 */\n  0xaeb9, 0xb0c8, 0xb0c6, 0xb0c7, 0xb20a, 0xb20d, 0xb1fb, 0xb203,\n  0xb202, 0xb1fc, 0xb1f9, 0xb1f8, 0xb36e, 0xb363, 0xb362, 0xb361,\n  0xb36b, 0x1288, 0xb36f, 0xb366, 0xb36c, 0xb40e, 0xb415, 0xb416,\n  0xb410, 0xb417, 0xb411, 0xb56e, 0xb56c, 0xb587, 0xb583, 0xb563,\n  0xb5dc, 0xb6c0, 0xb6f7, 0xb6fa, 0xb770, 0xb76a, 0xb768, 0xb769,\n  0xb784, 0xb7ec, 0xb7e7, 0xb7ee, 0xb8ba, 0xb8b2, 0xb8b5, 0xb8cb,\n  0x430b, 0xb8d0, 0xb96d, 0xb96c, 0x13bb, 0xba45, 0xba46, 0xba34,\n  0xba2c, 0xba35, 0xba44, 0x13ba, 0xba76, 0xbbb1, 0xbbaa, 0xbba1,\n  0xbbb2, 0x1412, 0xbba6, 0xbbb5, 0xbbb4, 0xbbb8, 0xbbaf, 0xbbb0,\n  0xbba3, 0xbd62, 0xbd64, 0xbe56, 0xbe51, 0xbe4f, 0xbe68, 0xbe4c,\n  0xbe50, 0x1461, 0xbe48, 0xbe4a, 0xbf21, 0xc0e3, 0xc0b9, 0xc0de,\n  0xc0b7, 0xc0e1, 0xc0b6, 0xc0b5, 0xc0df, 0x14e1,\n  /* 0x59 */\n  0xc297, 0xc29a, 0xc29b, 0xc298, 0xc292, 0xc293, 0xc2d7, 0xc273,\n  0xc36b, 0xc374, 0xc378, 0xc36d, 0xc418, 0xc4e9, 0xc4f5, 0xc4ea,\n  0xc52e, 0xc4e7, 0xc4fe, 0xc4e5, 0xc536, 0xc4f0, 0xc4e6, 0xc52c,\n  0xc789, 0xc795, 0xc793, 0xc84d, 0xc84a, 0xc84f, 0xc850, 0xc84b,\n  0xca2a, 0xca2b, 0xca2f, 0xca2e, 0xca7c, 0xcaed, 0xcae2, 0xcbe0,\n  0xcbdc, 0xcbda, 0xcbd6, 0xcbf4, 0xcbd9, 0xcbd5, 0xcd22, 0xcd21,\n  0xcd24, 0xcd25, 0xcd26, 0xcd23, 0xcdaa, 0xcdaf, 0xcdb0, 0xcdab,\n  0xceaf, 0xceb7, 0xceb5, 0xceb2, 0xceb3, 0xcf2b, 0xcfd8, 0xcfc2,\n  0xcfaf, 0xcfbc, 0xcfb8, 0xcfbe, 0xcfb7, 0xcfb4, 0xcfbf, 0xcfb3,\n  0xcfb1, 0xcfbb, 0xcfbd, 0xcfd6, 0xcfdd, 0xd0d8, 0xd0d3, 0xd0d5,\n  0xd0e3, 0xd0e2, 0xd0d9, 0xd0de, 0xd0df, 0xd0da, 0xd0d4, 0xd1f3,\n  0xd1e2, 0xd20d, 0xd201, 0xd205, 0xd21a, 0xd203,\n  /* 0x5a */\n  0xd21f, 0xd216, 0xd1fa, 0xd1fc, 0xd20a, 0x359f, 0xd3bc, 0xd3ca,\n  0xd3b6, 0xd3c7, 0xd3bf, 0x1789, 0xd3b9, 0x178c, 0xd3b0, 0xd3b8,\n  0xd3bd, 0xd391, 0xd3bb, 0xd3be, 0xd53e, 0xd53d, 0xd638, 0xd63d,\n  0xd639, 0xd633, 0xd733, 0xd7bb, 0xd7c6, 0xd7c5, 0xd7c7, 0xd7cb,\n  0xd7a8, 0xd7c8, 0xd7be, 0xd7c1, 0xd7bd, 0xd882, 0xd89e, 0xd881,\n  0xd884, 0x368d, 0xd896, 0xd88e, 0xd888, 0xd887, 0xdae0, 0xdb0d,\n  0xdadf, 0xdae4, 0xdae2, 0xdadd, 0xdaec, 0xdade, 0xdae7, 0xdaea,\n  0xdae3, 0xdd5c, 0x3977, 0xdd5d, 0xdd9c, 0xde1d, 0xde9d, 0xde9e,\n  0xde9b, 0xdeb5, 0xdeb9, 0xdeb6, 0xdef3, 0xdef2, 0xdef4, 0xdf26,\n  0xdf27, 0xdf25, 0xe006, 0xe00b, 0xe03a, 0xe03c, 0x3f0a, 0x3f0b,\n  0x3fbf, 0x3ffd, 0x4118, 0xccdf, 0x8e90, 0x419e, 0x42fc, 0x4310,\n  0x430f, 0x430d, 0x43b9, 0x43b7, 0x43ba, 0x440a,\n  /* 0x5b */\n  0x4b41, 0x4b8b, 0x4b46, 0x4b53, 0x4be2, 0x4b3f, 0x4a7c, 0x4b4b,\n  0x4b4e, 0x4b8a, 0x4b47, 0x4f93, 0xb8ce, 0x4f8c, 0x4faf, 0x4fc9,\n  0x50c6, 0x50c8, 0x5191, 0x53cf, 0x53d4, 0x53ce, 0x55dd, 0x55d4,\n  0x5a49, 0x5a63, 0x5a5d, 0x041a, 0x5a67, 0x5abb, 0x5a60, 0x5a80,\n  0x5c5f, 0x5c60, 0x5dda, 0x5dd2, 0x5ddd, 0x608e, 0x6088, 0x606c,\n  0x639e, 0x63c9, 0x63a4, 0x0598, 0x63d9, 0x63d2, 0x63da, 0x63dd,\n  0x63ce, 0x63fc, 0x6514, 0x6560, 0x68d7, 0x68cb, 0x68cd, 0x68d5,\n  0x69e7, 0x6b00, 0x6b0a, 0x6b0f, 0x6b02, 0x6b01, 0x6c1d, 0x6dca,\n  0x6dcb, 0x6dcd, 0x6e4f, 0x6e9c, 0x7180, 0x720d, 0x7202, 0x07f1,\n  0x7207, 0x71f7, 0x71f8, 0x71fd, 0x7224, 0x71fb, 0x7239, 0x723a,\n  0x7422, 0x21a9, 0x756a, 0x756d, 0x7574, 0x770e, 0x7adf, 0x7b2b,\n  0x7ae3, 0x7b26, 0x7b2a, 0x7b23, 0x7b35, 0x7b4a,\n  /* 0x5c */\n  0x7efd, 0x7f00, 0x7f1e, 0x7eff, 0x809e, 0x80fa, 0x81f1, 0x8395,\n  0x83a8, 0x83a6, 0x856e, 0x8583, 0x856d, 0x868f, 0x0b6a, 0x87df,\n  0x87d5, 0x87e0, 0x87d3, 0x87d8, 0x898c, 0x254b, 0x8994, 0x8996,\n  0x8985, 0x898f, 0x89a9, 0x898e, 0x8990, 0x89b8, 0x89c3, 0x89bb,\n  0x8aa5, 0x8aa2, 0x25a2, 0x8aa3, 0x8bb5, 0x8bac, 0x8ba8, 0x8dad,\n  0x8db8, 0x8db4, 0x8dae, 0x8db6, 0x1085, 0x8dc1, 0x8dbf, 0x8e92,\n  0x8f00, 0x8f01, 0x9075, 0x9072, 0x9078, 0x9070, 0x907e, 0x907d,\n  0x907f, 0x91ef, 0x936d, 0x938e, 0x938f, 0x938a, 0x938d, 0x9395,\n  0x938b, 0x938c, 0x93b0, 0x9393, 0x94fc, 0x9515, 0x950e, 0x9518,\n  0x9511, 0x950d, 0x95bb, 0x95b3, 0x0e39, 0x97a1, 0x979a, 0x9784,\n  0x97a0, 0x9786, 0x979d, 0x97aa, 0x9778, 0x978d, 0x978a, 0x97a6,\n  0x977a, 0x9797, 0x9788, 0x978e, 0x0e3d, 0x0e44,\n  /* 0x5d */\n  0x9776, 0x9781, 0x9785, 0x9775, 0x97a8, 0x978f, 0x9791, 0x97a2,\n  0x979c, 0x9789, 0x977f, 0x9796, 0x9779, 0x979f, 0x97a7, 0x0e46,\n  0x9787, 0x979b, 0x97a5, 0x978b, 0x97c9, 0x99ff, 0x9a03, 0x9a00,\n  0x9a02, 0x9a04, 0x9a05, 0x99e6, 0x9a1f, 0x9c14, 0x0f0e, 0x9c0c,\n  0x9c0f, 0x9c19, 0x9c0b, 0x9c13, 0x9bd5, 0x0f10, 0x9c1c, 0x9d50,\n  0x9d4e, 0x9e12, 0x9eb9, 0x9f85, 0x9f88, 0x9f90, 0xa013, 0xa0d0,\n  0xa0d1, 0xa0d2, 0xa0d7, 0xa0d6, 0xa0e5, 0xa346, 0xa36b, 0xa345,\n  0xa33f, 0xa33e, 0x103e, 0xa36a, 0xa368, 0xa34c, 0xa423, 0xa422,\n  0xa497, 0xa491, 0x95b5, 0xa498, 0xa49c, 0xa589, 0x1084, 0xa58b,\n  0xa58a, 0xa58d, 0xa58e, 0xa588, 0xaa4e, 0xaa44, 0xaa37, 0xaa75,\n  0xaa54, 0xaa76, 0xaa34, 0xaa6b, 0xaa32, 0xaa57, 0xaa52, 0xaa45,\n  0x1149, 0xa9b1, 0xaa4b, 0xaa47, 0xaa33, 0xaa40,\n  /* 0x5e */\n  0xaa3c, 0xaa43, 0xaa4f, 0xaa55, 0xaa41, 0xaab2, 0xaac0, 0xaf34,\n  0xaef9, 0xaf19, 0xaf0d, 0xaefa, 0xaf1e, 0xaf1f, 0xaf0e, 0xaf40,\n  0xaf08, 0x11df, 0xaf13, 0xaf4c, 0x11f0, 0xb0cc, 0xb0cb, 0xb224,\n  0xb225, 0xb23d, 0xb220, 0xb227, 0xb226, 0xb21d, 0xb21e, 0xb232,\n  0xb26c, 0xb259, 0x128a, 0xb37a, 0xb379, 0xb41b, 0xb42e, 0xb423,\n  0xb420, 0xb41f, 0xb5b6, 0xb5b9, 0xb5a1, 0xb5a3, 0xb5a8, 0xb5af,\n  0xb59a, 0xb599, 0xb5a2, 0xb59d, 0x1302, 0xb5ab, 0xb6c9, 0xb6fe,\n  0xb700, 0xb6fc, 0xb707, 0xb775, 0xb772, 0xb773, 0xb774, 0xb7fa,\n  0xb7fc, 0xb7f8, 0xb7f6, 0xb7fb, 0xb8cd, 0xb8d1, 0xb8cf, 0xb974,\n  0xb972, 0xb973, 0xba54, 0xba51, 0x13c0, 0xba53, 0xba49, 0xba4c,\n  0xba4a, 0xba4f, 0xba56, 0xbc00, 0xbbd5, 0xbbd7, 0xbbff, 0xbbd9,\n  0xbbe3, 0xbbd3, 0x1415, 0xbbd8, 0xbbd4, 0xbbde,\n  /* 0x5f */\n  0xbd71, 0xbe74, 0xbe88, 0xbe7f, 0xbe6b, 0xbe87, 0xbe79, 0xbe78,\n  0xbe89, 0xbe80, 0xbe76, 0xbf29, 0xbf28, 0xbf2f, 0xc0e5, 0xc104,\n  0xc103, 0xc0f0, 0xc0e8, 0xc0ea, 0xc0f1, 0xc101, 0xc102, 0xc2a9,\n  0xc2ab, 0xc2b7, 0xc2b6, 0x14e2, 0xc3a0, 0xc38e, 0xc386, 0xc387,\n  0xc385, 0xc38b, 0xc388, 0xc390, 0xc41a, 0xc434, 0xc537, 0xc52f,\n  0xc530, 0xc539, 0xc534, 0xc533, 0xc585, 0xc584, 0xc53a, 0xc79f,\n  0xc869, 0xc86c, 0xc86a, 0xc867, 0xc86b, 0xca3f, 0xca40, 0xcb0b,\n  0xcbd2, 0xcbf8, 0xcc01, 0xcbfa, 0xcc16, 0xe3f6, 0xcd2c, 0xcd2d,\n  0xcd2f, 0xcd2e, 0xcdc1, 0xcdf5, 0xcdc4, 0xcdde, 0xcdcc, 0xcdd2,\n  0xcdc2, 0xcdcd, 0xcdcf, 0xcddd, 0xcdc8, 0xceba, 0xcebe, 0xcebf,\n  0xcf2e, 0xcf30, 0xcfe7, 0xcfee, 0xcfe8, 0xcfe6, 0xcfe2, 0xcfe4,\n  0xcffb, 0xcffc, 0xcfea, 0xd0ed, 0xd0f6, 0xd0f3,\n  /* 0x60 */\n  0xd0f4, 0xd0f1, 0xd0f7, 0xd0f5, 0xd0ea, 0xd0eb, 0xd200, 0xd22c,\n  0xd212, 0xd23d, 0xd233, 0x174d, 0xd230, 0xd240, 0xd231, 0xd257,\n  0x174a, 0xd235, 0xd232, 0xd22d, 0xd236, 0xd238, 0xd262, 0xd25f,\n  0xd28a, 0xd3d6, 0xd3d8, 0xd3dd, 0xd3e4, 0xd3e3, 0xd54d, 0xd5d7,\n  0xd64a, 0xd64c, 0xd650, 0xd64b, 0xd64e, 0xd64f, 0xd739, 0xd7d2,\n  0xd7cd, 0xd7d3, 0xd7e1, 0xd7ce, 0xd7d5, 0xd7dd, 0xd7d4, 0xd7cf,\n  0xd8cb, 0xd8a6, 0xd8c2, 0xd8a5, 0xd8a9, 0xd8a2, 0xd8a4, 0xd8b0,\n  0xd8cc, 0xd8af, 0xd8bf, 0xdb24, 0xdb1a, 0xdb14, 0xdb3a, 0xdb20,\n  0xdb1b, 0xdb21, 0xdb25, 0xdb1e, 0xdb3f, 0xdb40, 0xdb18, 0xdb2c,\n  0xdb15, 0xdb2d, 0xdb1f, 0xdb29, 0xdb4b, 0xddb3, 0xdda5, 0xdda7,\n  0xddab, 0xdda6, 0xddaa, 0xde22, 0xde23, 0xdea1, 0xdea3, 0xdea0,\n  0xdebd, 0xdeba, 0xdefa, 0xdef8, 0xdefc, 0xdef6,\n  /* 0x61 */\n  0xdf34, 0xdf43, 0x1963, 0xdfd4, 0xe00d, 0xe043, 0xe041, 0xe03d,\n  0xe040, 0xe03e, 0xe03f, 0xe046, 0x1993, 0xe0d4, 0x3f35, 0x3f36,\n  0x3f32, 0x3f3a, 0x3fc8, 0x4036, 0x411e, 0x411d, 0x411f, 0x431c,\n  0x431d, 0x4320, 0x010e, 0x43c0, 0x4b9a, 0x4b93, 0x4bdd, 0x020a,\n  0x4ba3, 0x4ba9, 0x4b9c, 0x4b9b, 0x020d, 0x4b97, 0x4fb1, 0x4fca,\n  0x4fb3, 0x4fcd, 0x53ea, 0x53ee, 0x53ef, 0x55df, 0x5650, 0x56bb,\n  0x5a88, 0x5a89, 0x5a8c, 0x5a85, 0x5a5e, 0x5a94, 0x5a95, 0x5c6b,\n  0x5c6a, 0x5c69, 0x5de3, 0x5df1, 0x5f37, 0x5f33, 0x6091, 0x608f,\n  0x6097, 0x63d4, 0x63de, 0x63d3, 0x63e0, 0x6443, 0x640b, 0x63ff,\n  0x6404, 0x6407, 0x68f9, 0x68fa, 0x68fb, 0x68f8, 0x6b12, 0x6b10,\n  0x6c1f, 0x6ddf, 0x6de3, 0x6e52, 0x6ea9, 0x7265, 0x7287, 0x7242,\n  0x7252, 0x724c, 0x719f, 0x7201, 0x7248, 0x724f,\n  /* 0x62 */\n  0x727e, 0x724d, 0x7258, 0x7247, 0x725e, 0x7249, 0x724e, 0x725d,\n  0x725a, 0x7286, 0x7251, 0x7429, 0x74a6, 0x74a7, 0x7570, 0x756f,\n  0x75d3, 0x75d2, 0x7728, 0x771b, 0x771a, 0x771c, 0x7721, 0x7b32,\n  0x7b66, 0x7b7d, 0x7b73, 0x7b7f, 0x7b65, 0x7b80, 0x7b61, 0x7b75,\n  0x7b6e, 0x7b67, 0x7b71, 0x7b6c, 0x7b63, 0x7b62, 0x7b83, 0x7bb2,\n  0x7b81, 0x7b6f, 0x7b6b, 0x7b82, 0x7b8a, 0x7f29, 0x7f30, 0x7f31,\n  0x8097, 0x8100, 0x80ff, 0x83b6, 0x83b5, 0x83c3, 0x858d, 0x8618,\n  0x869c, 0x869a, 0x8699, 0x89b7, 0x89c4, 0x89c6, 0x89c7, 0x89bc,\n  0x89c0, 0x89c5, 0x89cd, 0x89c1, 0x89be, 0x8aa7, 0x8ab8, 0x8b23,\n  0x0c74, 0x8de8, 0x8dde, 0x8de3, 0x8def, 0x8ddc, 0x8de4, 0x8de1,\n  0x8de5, 0x8e95, 0x8e94, 0x8e93, 0x8e8e, 0x9098, 0x909c, 0x9099,\n  0x90a0, 0x909e, 0x9204, 0x93d3, 0x93b4, 0x93bb,\n  /* 0x63 */\n  0x93b7, 0x93b8, 0x93bd, 0x93b6, 0x93b9, 0x93b5, 0x9522, 0x9521,\n  0x95c3, 0x95bc, 0x97ff, 0x97e5, 0x97f7, 0x97d2, 0x9800, 0x97db,\n  0x97f0, 0x97e2, 0x97cd, 0x0e56, 0x97e1, 0x97f2, 0x97dc, 0x97cc,\n  0x97d6, 0x97f3, 0x97fa, 0x97f6, 0x97ec, 0x97ea, 0x97e3, 0x97d0,\n  0x0e5a, 0x9795, 0x97d5, 0x97f4, 0x97cb, 0x97da, 0x97c8, 0x97df,\n  0x97f5, 0x97cf, 0x97c7, 0x97d7, 0x9a24, 0x0ea3, 0x9a1c, 0x9a21,\n  0x9a1e, 0x9a18, 0x9a1b, 0x0ea8, 0x9c46, 0x9c4b, 0x9c48, 0x9c47,\n  0x9c67, 0x9c54, 0x9e15, 0x9e22, 0x9ec5, 0x9e29, 0x9ec7, 0x9f8d,\n  0xa01b, 0xa020, 0xa0e2, 0xa0e7, 0xa0e8, 0xa0e1, 0xa372, 0xa37b,\n  0xa374, 0xa371, 0xa379, 0xa375, 0xa390, 0xa377, 0xa37d, 0xa44f,\n  0xa450, 0xa4a3, 0xa4a2, 0xa4f4, 0xa594, 0xa59a, 0xa59b, 0xa5a7,\n  0xa597, 0xa595, 0xa592, 0xa59c, 0xa596, 0xaab6,\n  /* 0x64 */\n  0xaab8, 0xaab0, 0xab18, 0xaac5, 0xaab5, 0xaac2, 0xab06, 0xab19,\n  0xaab9, 0xab15, 0xaad6, 0xaaac, 0x113c, 0xaac6, 0xaab3, 0xaac3,\n  0xaaca, 0xaacf, 0xaabd, 0xaace, 0xab14, 0xaaba, 0xab1a, 0xaac1,\n  0xaabb, 0x119b, 0x119a, 0xad01, 0xacfc, 0xaf5a, 0xaf54, 0xaf61,\n  0xaf5c, 0xaf55, 0xaf4a, 0xaf4b, 0xaf51, 0xaf69, 0xaf6b, 0x2cf1,\n  0xaf66, 0xaf58, 0xaf5d, 0xaf67, 0xaf56, 0xaf88, 0xaf64, 0xaf4e,\n  0xb257, 0xb25a, 0xb251, 0xb24a, 0xb24b, 0x125e, 0xb247, 0xb26f,\n  0xb26a, 0xb26b, 0xb246, 0xb26d, 0xb254, 0xb26e, 0xb24c, 0xb378,\n  0xb386, 0xb382, 0x12a7, 0xb5e1, 0xb5e5, 0xb5db, 0xb5de, 0xb5d7,\n  0xb703, 0xb77c, 0xb77e, 0xb805, 0xb807, 0xb8e6, 0xb8e1, 0xb8fb,\n  0xb8e5, 0xb8e7, 0xb8df, 0xb8ff, 0xb976, 0xba63, 0xba66, 0xba65,\n  0xba5e, 0xba64, 0xba6b, 0xba5f, 0xba67, 0xba68,\n  /* 0x65 */\n  0xbc08, 0xbc09, 0xbc17, 0xbc15, 0xbc1b, 0xbc0b, 0xbc28, 0xbc0e,\n  0xbc18, 0xbc53, 0xbc45, 0xbc0d, 0xbc0a, 0xbc13, 0xbc4a, 0xbd79,\n  0xbea1, 0xbe8d, 0xbea2, 0xbe90, 0x146e, 0xbf31, 0xbf30, 0xc11f,\n  0xc119, 0xc10c, 0xc11e, 0xc11d, 0xc107, 0xc266, 0xc2c5, 0xc2ba,\n  0xc2bd, 0xc2c2, 0xc2c3, 0xc2bf, 0x150d, 0xc3a1, 0xc3a2, 0xc3a8,\n  0xc3a3, 0xc3aa, 0xc3af, 0xc3b9, 0xc437, 0xc58f, 0x1543, 0xc58e,\n  0xc587, 0xc58a, 0xc592, 0xc597, 0xc59f, 0xc605, 0xc7a9, 0xc7a7,\n  0xc88a, 0xc882, 0xc885, 0xc88b, 0xc889, 0xc881, 0xc880, 0xc887,\n  0xc886, 0xca4d, 0xcb1c, 0xcb1f, 0xcc21, 0xcc1d, 0xcc22, 0xcbfe,\n  0xcc1b, 0xcc3a, 0xcc37, 0xcc17, 0xcc38, 0xcc26, 0xcc18, 0xcd34,\n  0xcd35, 0xcd32, 0x1673, 0xcde1, 0xcdfd, 0xcde3, 0xcde8, 0xcdf9,\n  0xcdff, 0xcdfe, 0x1674, 0xcde0, 0xce00, 0x1670,\n  /* 0x66 */\n  0xcdec, 0xcde4, 0xcdef, 0xcdfa, 0xceca, 0xcf31, 0xcf32, 0xcf34,\n  0xcf41, 0xd000, 0xd006, 0xd008, 0xd005, 0xd003, 0xd00b, 0xd002,\n  0xd00a, 0xd0f0, 0xd113, 0xd10a, 0xd10f, 0xd111, 0xd108, 0xd10b,\n  0xd112, 0xd10d, 0xd25b, 0xd263, 0xd261, 0xd268, 0xd25a, 0xd34e,\n  0xd34d, 0xd350, 0xd3fc, 0xd412, 0xd3f5, 0xd41e, 0xd3f0, 0xd3f3,\n  0xd3f2, 0xd401, 0xd3ef, 0xd3ee, 0xd416, 0xd3f6, 0xd3fb, 0xd41c,\n  0x17db, 0xd55d, 0xd560, 0xd566, 0xd55f, 0xd561, 0xd55b, 0xd562,\n  0xd557, 0xd669, 0xd66b, 0xd661, 0xd677, 0xd65f, 0xd663, 0xd662,\n  0xd665, 0xd7ef, 0xd7e2, 0xd800, 0xd7e8, 0xd7f2, 0xd7e7, 0x1829,\n  0xd7e5, 0xd8d5, 0xd8d0, 0xd8da, 0xd8d3, 0x1851, 0xd8d9, 0xd8cf,\n  0xd8d6, 0xd8d8, 0xd8f5, 0xd8ce, 0xd8d7, 0xd8f4, 0xd8cd, 0xd901,\n  0x36ba, 0xdb52, 0xdb55, 0xdb5a, 0xdb4d, 0xdb54,\n  /* 0x67 */\n  0xdb53, 0xdb5e, 0xdb67, 0xdb65, 0xdb4e, 0x18db, 0xdb4f, 0xdb61,\n  0xdb6e, 0xdb51, 0xdb5b, 0xdd63, 0xddb7, 0xddb6, 0xddc3, 0xddbb,\n  0xddb5, 0xde2e, 0xde30, 0xde33, 0xde31, 0xdea4, 0xdec1, 0xdebb,\n  0xdebe, 0xdf00, 0xdeff, 0xdf40, 0x1965, 0xdf3f, 0xdf44, 0x1964,\n  0x1967, 0xdfdb, 0xe00f, 0xe011, 0xe04e, 0xe04d, 0xe04b, 0xe04c,\n  0xe095, 0x3f3b, 0x3f45, 0x3f44, 0x3f3e, 0x3f3c, 0x3f3f, 0x3fcc,\n  0x3fce, 0x4122, 0x4123, 0x419f, 0x43c5, 0x43c4, 0x4be9, 0x4b99,\n  0x0211, 0x4be6, 0x4be7, 0x4bf7, 0x4fd2, 0x0333, 0x53fd, 0x540c,\n  0x540b, 0x57ed, 0x0421, 0x0422, 0x5a9b, 0x5b0a, 0x5c6f, 0x5c75,\n  0x5df2, 0x5df8, 0x5f3e, 0x6424, 0x640e, 0x6416, 0x6418, 0x6410,\n  0x6431, 0x6444, 0x05a6, 0x6429, 0x642f, 0x644b, 0x6436, 0x05a3,\n  0x6934, 0x6900, 0x692b, 0x6b20, 0x6b21, 0x6b1e,\n  /* 0x68 */\n  0x6b1d, 0x6df5, 0x6df2, 0x6df6, 0x7290, 0x729d, 0x729c, 0x7292,\n  0x7294, 0x72d1, 0x7293, 0x72b7, 0x7297, 0x72b0, 0x729f, 0x72c9,\n  0x742d, 0x742c, 0x7577, 0x772c, 0x7bc0, 0x7bb9, 0x7f53, 0x8040,\n  0x8202, 0x81fb, 0x0aa1, 0x858b, 0x85ae, 0x85ab, 0x86a1, 0xddcd,\n  0x87ea, 0x89dd, 0x89dc, 0x89d9, 0x8aab, 0x8aac, 0x8aad, 0x8ab2,\n  0x8b2c, 0x8b2b, 0x8bc2, 0x8e00, 0x8e0d, 0x8e06, 0x8dff, 0x8e03,\n  0x8e01, 0x8e10, 0x8e0f, 0x8e05, 0x8e98, 0x8e97, 0x8e96, 0x8e99,\n  0x90ac, 0x90ab, 0x9212, 0x93d8, 0x93df, 0x93d6, 0x952d, 0x9532,\n  0x983f, 0x982f, 0x9826, 0x983a, 0x9839, 0x0e5f, 0x983b, 0x9835,\n  0x982a, 0x9821, 0x9838, 0x9837, 0x9834, 0x0e5c, 0x9822, 0x9836,\n  0x9844, 0x9a45, 0x9a3b, 0x9a36, 0x9a42, 0x9c7a, 0x9c86, 0x9c8b,\n  0x9c7f, 0x9c81, 0x9e2a, 0x9ed5, 0x9f9f, 0x9f9d,\n  /* 0x69 */\n  0xa026, 0xa0f4, 0xa0f5, 0xa315, 0xa38e, 0xa38f, 0xa426, 0xa4a7,\n  0xa4af, 0xa5ad, 0xa5ac, 0xa5ab, 0xa5aa, 0xab2f, 0xab21, 0xab23,\n  0xaba3, 0xab49, 0xab3a, 0xab48, 0xab2d, 0xab25, 0xab29, 0xab32,\n  0xab34, 0xab24, 0xab2c, 0xab4b, 0xab3b, 0xab20, 0xab28, 0xaf98,\n  0x11f5, 0xaf97, 0x2d04, 0xaf9d, 0xafa8, 0xb0d5, 0xb277, 0xb278,\n  0xb272, 0xb273, 0xb302, 0xb43b, 0xb5fe, 0xb60b, 0xb5ff, 0xb607,\n  0x1311, 0x130c, 0xb630, 0xb6cd, 0xb6cf, 0xb710, 0xb70a, 0xb783,\n  0xb815, 0xb80e, 0xb80c, 0xb902, 0xb8fe, 0xb905, 0xb915, 0xb908,\n  0xba7f, 0xba77, 0xba7c, 0xba82, 0xba7e, 0xba78, 0xba7d, 0xba79,\n  0xba81, 0xbc4b, 0xbc63, 0xbc64, 0xbc56, 0xbc54, 0xbc4e, 0xbc10,\n  0xbc4f, 0xbc57, 0xbc5e, 0xbc51, 0xbc6a, 0xbc69, 0xbead, 0xbea4,\n  0xbeac, 0xbea9, 0xbeae, 0x3f4c, 0xc150, 0xc135,\n  /* 0x6a */\n  0xc132, 0xc2d8, 0xc2d1, 0xc2cf, 0xc2be, 0xc3d5, 0xc3c1, 0xc3c6,\n  0xc3c3, 0xc3c2, 0xc3c0, 0xc3c5, 0xc3c7, 0xc3bf, 0xc3c4, 0xc3d4,\n  0xc590, 0xc5d2, 0x154e, 0xc5d4, 0xc7af, 0xc7ae, 0xc7b2, 0xc7ad,\n  0xc89c, 0xc8a0, 0xc8b6, 0xca3d, 0xca56, 0xca82, 0xcb28, 0xcb2b,\n  0xcc3c, 0xcc3e, 0xcc3f, 0xcc42, 0xcc3d, 0xcc41, 0xcc3b, 0xcc49,\n  0xcc43, 0xcd39, 0xcd38, 0xce22, 0xce08, 0xce0c, 0xce06, 0xce13,\n  0xce04, 0xce20, 0xce1d, 0xce05, 0xce0a, 0xced6, 0xced7, 0xcf36,\n  0xcf37, 0xd023, 0xd022, 0xd020, 0xd01a, 0xd01d, 0xd11c, 0xd120,\n  0xd177, 0xd27f, 0xd28b, 0xd27d, 0xd299, 0xd284, 0xd289, 0xd285,\n  0xd283, 0xd286, 0xd29e, 0xd353, 0xd417, 0x1794, 0xd419, 0xd420,\n  0xd41f, 0xd423, 0xd418, 0xd421, 0xd429, 0xd424, 0xd426, 0xd55e,\n  0xd56f, 0xd56e, 0xd574, 0xd572, 0xd573, 0xd67d,\n  /* 0x6b */\n  0xd67e, 0xd685, 0xd67f, 0xd684, 0xd744, 0xd7f5, 0xd7f8, 0xd803,\n  0xd7f6, 0xd928, 0x1863, 0xd939, 0xd8fb, 0xd90e, 0xd8fd, 0xd91f,\n  0x1861, 0xd903, 0x36d8, 0xd910, 0x185a, 0xd90d, 0xd927, 0xd941,\n  0xdb72, 0xdb78, 0xdb80, 0x18e3, 0xdb85, 0xdb7b, 0x387c, 0xdb7d,\n  0xdb91, 0xdb88, 0xdbaa, 0xdb8d, 0xdb89, 0xdb95, 0xdb9b, 0xdb8c,\n  0xdb9e, 0xdb7c, 0xdb86, 0xdb84, 0xdd68, 0xddc5, 0xddc4, 0xddc9,\n  0xddc6, 0xde42, 0xde45, 0xde41, 0xde44, 0xdea6, 0xdec2, 0xdf42,\n  0xdf49, 0xdf48, 0xdf4a, 0xdf4c, 0xdf4b, 0xe017, 0xe018, 0xe015,\n  0xe052, 0xe054, 0xe053, 0xe09a, 0xe09b, 0xe0dc, 0xe0e4, 0xe191,\n  0x19af, 0xe1ba, 0x3f51, 0x3f5b, 0x3fcf, 0x6e05, 0x4c13, 0x4c15,\n  0x4c14, 0x4c23, 0x0213, 0x4c11, 0x4c12, 0x0280, 0x4ff0, 0x519b,\n  0x5412, 0x5416, 0x5417, 0x54b5, 0x57f4, 0x5ab1,\n  /* 0x6c */\n  0x5c79, 0x5dff, 0x5dfc, 0x5dfb, 0x5f3f, 0x5f44, 0x609d, 0x6432,\n  0x644c, 0x642b, 0x645a, 0x651f, 0x6901, 0x692d, 0x6927, 0x6959,\n  0x695a, 0x694d, 0x6958, 0x6b23, 0x6b25, 0x6b2b, 0x6dff, 0x6eae,\n  0x72cb, 0x72ca, 0x72d0, 0x72ce, 0x72cc, 0x72d8, 0x72c6, 0x72d2,\n  0x72cf, 0x72c8, 0x7617, 0x19b0, 0x7bc4, 0xcd40, 0x7be9, 0x7bf2,\n  0x7bfc, 0x7bea, 0x7beb, 0x7bfd, 0x7f78, 0x7f77, 0x7f73, 0x7f9e,\n  0x7f79, 0x80a2, 0x8103, 0x8204, 0x8205, 0x83ce, 0x85bf, 0x89f6,\n  0x89f7, 0x8b31, 0x8b30, 0x8bc9, 0x8bc7, 0x8e1c, 0x8e28, 0x8e1a,\n  0x8e1e, 0x8e1b, 0x8e1f, 0x90bf, 0x90bb, 0x90bc, 0x90c0, 0x921a,\n  0x93ef, 0x93ec, 0x93e9, 0x93f0, 0x93fe, 0x9534, 0x986a, 0x9895,\n  0x986c, 0x9872, 0x9867, 0x9860, 0x986b, 0x985e, 0x986f, 0x9866,\n  0x2946, 0x9862, 0x985d, 0x985c, 0xe365, 0x9a50,\n  /* 0x6d */\n  0x9c9f, 0x0f23, 0x9c9e, 0x9ca6, 0x9e35, 0x9e38, 0x9e36, 0x9e3a,\n  0x9edc, 0xa37c, 0xa3ab, 0x1049, 0xa3a8, 0xa3a7, 0xa42b, 0xa42c,\n  0xa428, 0x442b, 0xa4a9, 0xa4aa, 0xa4ab, 0xa4f8, 0xa5b1, 0xa5f0,\n  0xa5ef, 0xaba8, 0xab8b, 0xab94, 0xab9e, 0xab8f, 0xab88, 0xab7e,\n  0xab81, 0xab30, 0xab9b, 0xab82, 0xab90, 0xab85, 0xab7f, 0xaba9,\n  0xabde, 0xad0d, 0x11fa, 0xafcf, 0xafcb, 0xafd8, 0xafdd, 0xafd3,\n  0xafd0, 0xafd5, 0xafd6, 0xb0d6, 0xb292, 0xb295, 0xe0cb, 0xb28d,\n  0xb29b, 0xb29d, 0xb28f, 0xb29e, 0xb2a6, 0xb396, 0xb392, 0xb616,\n  0xb62a, 0xb629, 0xb62c, 0xb715, 0xb712, 0xb711, 0xb713, 0xb788,\n  0xb78b, 0xb78a, 0xb787, 0xb817, 0xb816, 0xb81a, 0xb919, 0xb917,\n  0xba91, 0xba94, 0xbc8b, 0xbc90, 0xbc8f, 0xbc86, 0xbc83, 0xbc8e,\n  0xbc87, 0xbca8, 0xbc85, 0xbca6, 0xbc82, 0xbca7,\n  /* 0x6e */\n  0xbeb9, 0xbeb7, 0xbeb4, 0xbeb6, 0xbeb3, 0xbec6, 0xc13c, 0xc140,\n  0xc138, 0xc291, 0xc2a6, 0xc2da, 0xc3da, 0xc3d8, 0xc3d9, 0xc3db,\n  0xc3d7, 0xc616, 0xc612, 0xc61f, 0x1559, 0xc614, 0xc61a, 0xc610,\n  0xc7b3, 0xc8ae, 0xc8c1, 0xc8b0, 0xc8af, 0xc8b1, 0xc8ad, 0xc8b2,\n  0xc8c4, 0xcb3c, 0xcb3f, 0xcc61, 0xcc66, 0xcd3c, 0xcd3b, 0xce2c,\n  0x167e, 0xce2a, 0xce3e, 0xce2f, 0xce32, 0xce27, 0xce29, 0xce40,\n  0xcedf, 0xcede, 0xcf3c, 0xcf3b, 0xcf3e, 0xd021, 0xd046, 0xd03c,\n  0xd036, 0xd038, 0xd035, 0xd131, 0xd136, 0xd12d, 0xd133, 0xd12f,\n  0xd12e, 0xd135, 0xd2ac, 0xd2a9, 0xd2a6, 0x17a8, 0xd44c, 0xd443,\n  0xd441, 0xd44f, 0xd442, 0xd451, 0x17a9, 0xd440, 0xd450, 0xd445,\n  0xd44a, 0xd44b, 0xd583, 0xd582, 0xd581, 0xd5e0, 0xd698, 0xd69f,\n  0xd69b, 0xd69a, 0xd699, 0xd696, 0xd6ae, 0xd69e,\n  /* 0x6f */\n  0xd809, 0xd80d, 0xd94e, 0xd94a, 0xd94d, 0xd940, 0xd93e, 0xd948,\n  0xd942, 0xd962, 0xd945, 0xd951, 0xdbc6, 0xdbd0, 0xdbc0, 0xdbb7,\n  0xdbc2, 0xdbbc, 0xdbc5, 0xdbdc, 0xdbdb, 0xdbd2, 0xdbc7, 0xdbb6,\n  0xdbc9, 0xdbcc, 0xdbd1, 0xdbcd, 0xdbda, 0xdbba, 0xdbd3, 0xdbce,\n  0xdbf6, 0xdbbd, 0xdbdd, 0xdbc8, 0xdc0d, 0xdc35, 0xdd71, 0xdd6e,\n  0xdd6f, 0xddd6, 0xde4c, 0xde4f, 0xde54, 0xde53, 0xdec9, 0xdec8,\n  0xdf03, 0x1954, 0xdf04, 0x1956, 0xdf57, 0xdf52, 0xdf53, 0x196d,\n  0xdf56, 0xdf5c, 0xdf55, 0xe064, 0xe05d, 0xe05e, 0xe0a2, 0xe0a3,\n  0x198e, 0xe0e7, 0xe0e6, 0xe198, 0xe1ac, 0xe1af, 0xe1ae, 0x3f59,\n  0x40a9, 0x432a, 0x43c7, 0x4c41, 0x4c37, 0x4c35, 0x4c33, 0x4c39,\n  0x4c32, 0x4fff, 0x5001, 0x4ff8, 0x541b, 0x5419, 0x56bf, 0x5abc,\n  0x5abe, 0x5abd, 0x5c7d, 0x5f46, 0x5f47, 0x60a4,\n  /* 0x70 */\n  0x6521, 0x6562, 0x6986, 0x0672, 0x6b2f, 0x6b31, 0x0814, 0x72f8,\n  0x72f5, 0x72f9, 0x72f2, 0x72fa, 0x72f3, 0x7314, 0x72fd, 0x730f,\n  0x730e, 0x7301, 0x7437, 0x7435, 0x7434, 0x7431, 0x757a, 0x757b,\n  0x7737, 0x7c2b, 0x7bfb, 0x7c16, 0x7c13, 0x0993, 0x7c11, 0x7c0f,\n  0x7c1b, 0x7c38, 0x7fa4, 0x8209, 0x8207, 0x820b, 0x83d3, 0x83d1,\n  0x83d8, 0x861d, 0x86a9, 0x86d0, 0xad15, 0x8a02, 0x8a05, 0x8a01,\n  0x8a00, 0x8e2e, 0x8e30, 0x8e2f, 0x8e31, 0x90d2, 0x90d3, 0x9402,\n  0x9540, 0x9542, 0x953b, 0x95ce, 0x9898, 0x988f, 0x9894, 0x9891,\n  0x0e6f, 0x98ba, 0x9890, 0x9886, 0x989a, 0x988c, 0x9893, 0x9887,\n  0x9888, 0x9897, 0x988d, 0x989c, 0x98bd, 0x9a3c, 0x9a59, 0x0eb0,\n  0x9cd1, 0x9cbb, 0x9cbe, 0x9d5d, 0x9ee2, 0xa105, 0xa3ba, 0x012e,\n  0xa3f4, 0xa4b2, 0xa4f9, 0xa5b7, 0xa5b6, 0xab89,\n  /* 0x71 */\n  0xabf9, 0xabd9, 0xabe8, 0xabd4, 0xabdb, 0xabe2, 0xabdf, 0xabd1,\n  0xabe9, 0xabea, 0xad13, 0xad11, 0xaffa, 0xaff8, 0xaff4, 0xaffb,\n  0xb00e, 0xb002, 0xb00f, 0xb290, 0xb2ad, 0xb2a9, 0xb448, 0xb65a,\n  0xb64f, 0xb64e, 0xb655, 0xb654, 0xb64a, 0xb6d5, 0xb718, 0xb78d,\n  0xb81d, 0xb819, 0xb926, 0xb928, 0xb92b, 0xb97d, 0xbaa0, 0xba9a,\n  0xba9b, 0xbcb5, 0xbcad, 0xbcb2, 0xbd94, 0xbec9, 0xc14e, 0xc14f,\n  0xc144, 0xc152, 0xc3e9, 0xc439, 0x1569, 0x337e, 0xc8c7, 0xc8d3,\n  0xc8c6, 0xc8c3, 0x15b4, 0xc8d2, 0xca66, 0xcc7f, 0xcc80, 0xcc84,\n  0xcc85, 0xcce3, 0x164d, 0xcd41, 0xcd44, 0xcd43, 0xce4e, 0xce4f,\n  0x1683, 0xce49, 0xce4a, 0xce4b, 0xce43, 0xcee0, 0xcee5, 0xcee1,\n  0xcee6, 0xcee2, 0xcf0c, 0xcf40, 0xd049, 0xd04a, 0xd054, 0xd04c,\n  0xd055, 0xd056, 0xd13b, 0xd13d, 0xd2a4, 0xd2a8,\n  /* 0x72 */\n  0xd2c3, 0xd2bf, 0xd2c8, 0xd2c2, 0xd2ca, 0xd2cc, 0xd2c9, 0xd2be,\n  0xd2cd, 0xd2c7, 0xd2c5, 0xd35d, 0x17b0, 0xd46c, 0xd46b, 0xd470,\n  0xd46d, 0xd46f, 0xd489, 0xd484, 0xd58d, 0xd58a, 0xd58e, 0xd591,\n  0xd6b5, 0xd6b1, 0xd6af, 0xd6b9, 0xd6b7, 0xd6b0, 0x180c, 0xd717,\n  0x1818, 0xd74f, 0xd819, 0xd810, 0xd818, 0xd811, 0xd81c, 0xd812,\n  0xd976, 0xd971, 0x3720, 0xd97a, 0xd97f, 0x3722, 0xd973, 0xd9ab,\n  0x371e, 0xd977, 0xd974, 0xd97e, 0xd99b, 0xd984, 0xd97c, 0xdc29,\n  0xdc2b, 0xdc0e, 0xdc00, 0xdc0b, 0xdbfe, 0xdbfa, 0xdc17, 0xdbff,\n  0xdc0c, 0xdc0f, 0x18f5, 0xdc02, 0xdc01, 0xdbfc, 0xdc49, 0xdc06,\n  0xdc12, 0xdc13, 0xdd78, 0xde5b, 0xde62, 0xde5f, 0xde5d, 0xdeab,\n  0xded5, 0xded4, 0xded3, 0xdf07, 0xdf6c, 0xdf70, 0xdf6e, 0xdf68,\n  0xdf6d, 0xdf77, 0xdf6a, 0xdfce, 0xdfec, 0xe069,\n  /* 0x73 */\n  0xe068, 0xe0a6, 0xe0a9, 0xe0aa, 0xe100, 0xe10d, 0xe0f8, 0xe0fc,\n  0xe10a, 0xe0f7, 0xe101, 0xe1b6, 0xe1bb, 0xe1b7, 0xe1b9, 0xe1ca,\n  0x3f69, 0x4125, 0x4c59, 0x5007, 0x5009, 0x5422, 0x5607, 0x5604,\n  0x6e0f, 0x57f8, 0x5ac7, 0x5ad1, 0x5c7e, 0x5e08, 0x5f4a, 0xe298,\n  0x5fb9, 0x6988, 0x6991, 0x6984, 0x6973, 0x6989, 0x6985, 0x6b33,\n  0x6e13, 0x731d, 0x731f, 0x731c, 0x7320, 0x731a, 0x731b, 0x7439,\n  0x74af, 0x75e5, 0x773c, 0x7c37, 0x7c3a, 0x7fbb, 0x0a0e, 0x8210,\n  0x820d, 0x86af, 0x8711, 0x0bd8, 0x8a0d, 0x8a0c, 0x8a0b, 0x8bd4,\n  0x8e3d, 0x8e3e, 0x8e3b, 0x8e43, 0x8e40, 0x8e46, 0x8f11, 0x90dd,\n  0x90df, 0x90ea, 0x924a, 0x9406, 0x98c1, 0x98b9, 0x98c6, 0x98b8,\n  0x98bb, 0x98c8, 0x98c5, 0x98bf, 0x98c7, 0x98c4, 0x9a65, 0x9a67,\n  0x9cd7, 0x9cdb, 0x9cd4, 0x9cd6, 0x9ee8, 0xa10a,\n  /* 0x74 */\n  0xa5bd, 0xa5be, 0xac1a, 0xac0d, 0xac0f, 0xac1b, 0xac10, 0xac11,\n  0xac13, 0xad18, 0xb020, 0xb01f, 0xb023, 0xb01d, 0xb037, 0xb025,\n  0xb024, 0xb02a, 0xb027, 0xb033, 0xb028, 0xb034, 0xb2ba, 0x2e70,\n  0xb39d, 0xb44c, 0xb65c, 0xb66a, 0xb65d, 0xb665, 0xb663, 0xb65e,\n  0xb719, 0xb797, 0xb93f, 0xb933, 0xb932, 0xbaa1, 0xbaa5, 0xbaa4,\n  0xbaa2, 0xbcc1, 0x142c, 0xbcc7, 0xbcc4, 0xbcc6, 0xbcc5, 0xbcd4,\n  0xbcca, 0xc153, 0xc3f1, 0xc421, 0x156e, 0xc6b7, 0xc692, 0xc8d4,\n  0xca44, 0xcc98, 0xcc9b, 0xcc91, 0xcc95, 0xcc9a, 0xcc92, 0xce53,\n  0xce57, 0x1686, 0xce5c, 0xce5d, 0xce64, 0xceea, 0xceed, 0xcf42,\n  0xcf43, 0xd064, 0xd061, 0xd060, 0xd17d, 0xd2d4, 0xd2d5, 0xd2d9,\n  0xd487, 0xd499, 0xd48c, 0xd48a, 0xd48f, 0x17b3, 0xd48b, 0xd482,\n  0xd49b, 0x17eb, 0xd6c8, 0xd6c4, 0xd6cc, 0xd6c7,\n  /* 0x75 */\n  0xd6c3, 0xd6c6, 0xd6cb, 0xd6ca, 0xd6c9, 0xd6cd, 0xd753, 0xd821,\n  0xd829, 0xd81d, 0xd824, 0xd828, 0x3743, 0xd9b1, 0xd9b2, 0xd9b5,\n  0xd9d6, 0xd9af, 0xd9ca, 0xd9b8, 0xe412, 0xe411, 0xdc45, 0xdc47,\n  0xdc34, 0xdc6e, 0xdc42, 0xdc31, 0xdc2e, 0xdc56, 0xdc38, 0xdc37,\n  0xdc4b, 0xdc2d, 0xdc33, 0xdc36, 0x38e0, 0xdc48, 0xdddc, 0x1942,\n  0xde66, 0xde6d, 0xde63, 0xde64, 0x1941, 0xde67, 0xded9, 0xdf0b,\n  0xdf7e, 0xdf8b, 0xe026, 0xe02c, 0xe029, 0xe06f, 0xe06b, 0xe06d,\n  0xe06e, 0xe11c, 0xe111, 0xe110, 0xe124, 0xe112, 0xe115, 0xe117,\n  0x19ac, 0x3f6f, 0x40ab, 0x432e, 0x43c9, 0x4696, 0x4c85, 0x51a0,\n  0x542b, 0x5e0d, 0x6b36, 0x3afd, 0x072f, 0x072e, 0x6eb1, 0x734a,\n  0x7337, 0x733c, 0x7338, 0x733a, 0x733e, 0x7349, 0x084d, 0x087b,\n  0x7580, 0x757f, 0x75e3, 0x773f, 0x7c52, 0x7c4e,\n  /* 0x76 */\n  0x7c4a, 0x7c4b, 0x7fd5, 0x85d8, 0x8620, 0x86b3, 0x86b1, 0x86b0,\n  0x8a17, 0x8bd9, 0x8e49, 0x8f13, 0x90ed, 0x90eb, 0x90ee, 0x940a,\n  0x940b, 0x954a, 0x98d5, 0x98d7, 0x98de, 0x98dc, 0x98ee, 0x9a70,\n  0x0eb2, 0x9cd9, 0x9ed7, 0xa3cb, 0xa3c7, 0xa4fc, 0xac3b, 0xac39,\n  0xac4b, 0xac43, 0xac40, 0xac46, 0xb04d, 0xb043, 0xb047, 0xb04b,\n  0xb055, 0xb052, 0xb65f, 0x1322, 0xb67c, 0xb67b, 0xbaa8, 0xbaa9,\n  0xbcde, 0xbcd7, 0xbcdd, 0xbcd6, 0xbcd8, 0xbd9b, 0xbee0, 0xbee8,\n  0xbee6, 0xc3f8, 0xc3fb, 0xc6bb, 0x3259, 0xc6b8, 0x1570, 0xc7c1,\n  0xc7c0, 0xcca4, 0xccab, 0xcd4d, 0xce65, 0xce67, 0xce6a, 0xce66,\n  0xce69, 0xd073, 0xd080, 0xd06f, 0xd071, 0xd2e4, 0xd2e6, 0xd2e7,\n  0xd4a0, 0xd4a4, 0xd5a2, 0xd5a7, 0xd5a4, 0xd6de, 0xd6db, 0xd758,\n  0xd75c, 0xd82f, 0xd82e, 0xd9dd, 0xd9e4, 0xd9d8,\n  /* 0x77 */\n  0xd9e7, 0xd9da, 0xd975, 0x1895, 0xdc79, 0xdc80, 0xdc7f, 0xdc7c,\n  0xdc75, 0xdc7b, 0xdc82, 0x1900, 0xdc89, 0xdc74, 0xdc7d, 0xdc7a,\n  0xdc86, 0xdca8, 0xdc72, 0x1902, 0xdc8b, 0xdc91, 0xdcb3, 0xdc81,\n  0xdd82, 0xdde1, 0xdde3, 0xdde2, 0xde76, 0xde74, 0xde72, 0xde75,\n  0xdf0e, 0xdf0d, 0xdf94, 0xdf92, 0xdf93, 0xdf91, 0xdf8f, 0xdf95,\n  0xdfd0, 0xdff7, 0xe076, 0xe0af, 0x199f, 0xe126, 0xe125, 0xe12d,\n  0xe1a0, 0xe1c3, 0x3fd7, 0x45cc, 0x4c79, 0x4c7a, 0x5015, 0x5adb,\n  0x5c85, 0x6470, 0x647b, 0x69a5, 0x699f, 0x6e17, 0x6eb2, 0x7339,\n  0x7340, 0x734e, 0x743e, 0x75e8, 0x75e7, 0x7c66, 0x7c61, 0x7fda,\n  0x8214, 0x83df, 0x8a18, 0x8b39, 0x8b3a, 0x9230, 0x9232, 0x940e,\n  0x954c, 0x98e8, 0x98f1, 0x98eb, 0x98ec, 0x9a74, 0x9a73, 0x9cf1,\n  0x9e42, 0x9e3e, 0x9e41, 0xa02c, 0xa3d2, 0xa4bb,\n  /* 0x78 */\n  0xac58, 0xac57, 0xac56, 0xac5a, 0x117d, 0xb061, 0xb068, 0xb065,\n  0xb05f, 0xb064, 0xb05e, 0xb05b, 0xb067, 0xb2c3, 0xb3a2, 0xb453,\n  0xb67d, 0xb720, 0xbaae, 0xbaaf, 0xbab0, 0xbce7, 0xbce6, 0xbce9,\n  0xbef1, 0xbeeb, 0xbeea, 0xbee9, 0xc163, 0xc402, 0xc3fe, 0xc6de,\n  0xc7c2, 0xc8e6, 0xca5d, 0xccad, 0xce75, 0xce72, 0xce77, 0x16f6,\n  0xd151, 0xd2e8, 0xd2ed, 0xd2ee, 0xd4b9, 0xd4a1, 0xd4b6, 0xd5ae,\n  0xd6e8, 0x1812, 0xd71e, 0xd831, 0xd832, 0x1891, 0xda0e, 0xda12,\n  0xda09, 0xda05, 0x1890, 0xda03, 0xda1f, 0xda0d, 0xda0c, 0xda04,\n  0xda0a, 0xdcc2, 0xdcbf, 0xdcc9, 0xdcb2, 0xdcc1, 0xdcaf, 0xdcb4,\n  0xdcb0, 0xdcb6, 0xdcb7, 0xdcbb, 0xdcb1, 0xddf0, 0xde78, 0xde7a,\n  0xde79, 0xdee4, 0xdee6, 0xdf9f, 0xdf9d, 0xdf98, 0xdf99, 0xdff9,\n  0xe030, 0xe082, 0xe081, 0xe0b3, 0xe07f, 0xe13a,\n  /* 0x79 */\n  0xe13e, 0xe148, 0x4c86, 0x5436, 0x5613, 0x5722, 0x5add, 0x60a7,\n  0x647d, 0x0679, 0x6e1c, 0x7365, 0x7360, 0x7367, 0x084e, 0x761a,\n  0x85e3, 0x9234, 0x9418, 0x9552, 0x98fc, 0x9a79, 0x9a78, 0x9a76,\n  0x9cfa, 0x9cf8, 0xa02d, 0xa3d6, 0xa4bd, 0xa4bf, 0xa4be, 0xac44,\n  0xac70, 0xac62, 0xac6e, 0xb06e, 0xb07c, 0xb074, 0xb078, 0xb070,\n  0xb079, 0xb071, 0xb2cc, 0xb3a7, 0xb3a6, 0xb693, 0xb721, 0xb79c,\n  0xbd9d, 0xbef4, 0xbef3, 0xc8f0, 0xccb8, 0xccb6, 0xccbd, 0xce73,\n  0xce82, 0xd087, 0xd156, 0xd159, 0xd2f6, 0xd4c9, 0xd4c5, 0xd4c7,\n  0xd4ca, 0xd4c2, 0xd4c4, 0xd6f2, 0xd6f0, 0xd83b, 0xd83a, 0xda26,\n  0xda28, 0xda34, 0xda2d, 0xdcd7, 0xdcd2, 0xdcd6, 0xdcdc, 0xdcd3,\n  0xdcd1, 0xdd86, 0x191e, 0xddef, 0xddee, 0xdee8, 0xdfac, 0xdfa9,\n  0xdfaa, 0xdfab, 0xdffb, 0xe033, 0xe088, 0xe0b6,\n  /* 0x7a */\n  0xe0b7, 0xe0d0, 0xe0cf, 0xe14f, 0xe159, 0xe14c, 0x5618, 0x5ae0,\n  0x7369, 0x7c73, 0x7c72, 0x85e8, 0x90fb, 0x941c, 0x9909, 0x990a,\n  0x9908, 0x9a7d, 0x9a7f, 0x9d67, 0xac7a, 0xac7b, 0xb2d1, 0xe3cb,\n  0xb69d, 0xb79d, 0xbcfc, 0xbcfb, 0xbcfd, 0xbef5, 0xbef6, 0xc70f,\n  0xc71d, 0xccc7, 0xccc1, 0xccbf, 0xcd54, 0xce7f, 0xcef5, 0xd08a,\n  0xd08c, 0xd15c, 0xd365, 0xd4cf, 0xd4d0, 0xd5b8, 0xd6fa, 0xd766,\n  0xda40, 0xda41, 0x3772, 0xdcf7, 0xdcf3, 0xdcef, 0xdcf4, 0xdced,\n  0xdcf2, 0xdcf1, 0xdcf9, 0xdfb4, 0xdffc, 0xe0bc, 0xe15e, 0xe15b,\n  0xe15f, 0xe15d, 0xe1cf, 0xe1ce, 0x543a, 0x5ae1, 0x5e15, 0x5e14,\n  0x7c78, 0x7c79, 0x7fe6, 0x86b8, 0x8a22, 0x90fe, 0xa3db, 0xa506,\n  0xa5c8, 0xac89, 0xb086, 0xb3ad, 0xb699, 0xb6d8, 0xb723, 0xb823,\n  0xbab5, 0xbef9, 0xc407, 0xc71e, 0xc8fb, 0xca72,\n  /* 0x7b */\n  0xca73, 0xce87, 0xcf49, 0xd15d, 0xd2f8, 0xd703, 0xda4e, 0xda4d,\n  0xda50, 0xda55, 0xdd09, 0xdd07, 0xdd0c, 0xdd03, 0xdd06, 0xdd0b,\n  0xdd0a, 0xdd89, 0xdfbb, 0xdfff, 0xe036, 0xe08b, 0xe166, 0xe169,\n  0xe167, 0xe1c2, 0xe1d2, 0x5ae2, 0x0428, 0x6488, 0x6e5b, 0x7376,\n  0x7c7d, 0x80a6, 0x8e5a, 0x9917, 0xa3dc, 0xac8f, 0xb094, 0xb095,\n  0xbab6, 0xbd04, 0xc2ee, 0xce8a, 0xcef9, 0xd707, 0xd71f, 0xd72a,\n  0xd845, 0xda5c, 0xda5b, 0xda61, 0xda5d, 0xdd18, 0xdd1f, 0xde83,\n  0xdf16, 0xdf14, 0xdfbf, 0xdfc0, 0xe173, 0xe1c0, 0x5017, 0x6489,\n  0x941e, 0x941f, 0x9554, 0x9918, 0x9d05, 0xac95, 0xb098, 0xb09b,\n  0xb459, 0xbd08, 0xbf01, 0xccce, 0xcefa, 0xd5be, 0xd847, 0xda6a,\n  0xda69, 0xda68, 0xda67, 0xdd25, 0xdd28, 0xdfc4, 0xe037, 0xe08d,\n  0xe08c, 0x1991, 0xe320, 0x9922, 0x9a82, 0xb2d9,\n  /* 0x7c */\n  0xc738, 0xcefb, 0xd4e1, 0xd772, 0xd848, 0xda6c, 0xda70, 0xdd31,\n  0xdd30, 0xe179, 0x9923, 0xa3f8, 0xd774, 0xda73, 0xdd34, 0xde87,\n  0xdeb2, 0xe0c2, 0xe17d, 0x5ae5, 0xce8c, 0xda77, 0xda75, 0xdd38,\n  0xdd3a, 0xe183, 0xe181, 0x7c80, 0xac99, 0x1187, 0xcf4a, 0xd84a,\n  0xdd3c, 0xe1c8, 0x9104, 0xb3af, 0xe189, 0xddfa, 0xd161, 0xdd3f,\n  0xac93, 0xdfc9, 0xb2de, 0xce91, 0xe18e, 0xe18d, 0xac98, 0xa4c5,\n  0xe1a5,\n};\n\nstatic const ucs4_t cns11643_5_2uni_upages[229] = {\n  0x03400, 0x03500, 0x03600, 0x03700, 0x03800, 0x03900, 0x03a00, 0x03b00,\n  0x03c00, 0x03d00, 0x03e00, 0x03f00, 0x04000, 0x04100, 0x04200, 0x04300,\n  0x04400, 0x04500, 0x04600, 0x04700, 0x04800, 0x04900, 0x04a00, 0x04b00,\n  0x04c00, 0x04d00, 0x05200, 0x05900, 0x05e00, 0x05f00, 0x06100, 0x06300,\n  0x06400, 0x06b00, 0x07200, 0x07300, 0x07500, 0x07600, 0x07900, 0x07a00,\n  0x07b00, 0x07c00, 0x08300, 0x08600, 0x08700, 0x08800, 0x08900, 0x08a00,\n  0x08c00, 0x08e00, 0x09400, 0x09500, 0x09700, 0x09900, 0x09b00, 0x09c00,\n  0x09d00, 0x09e00, 0x0ff00, 0x20000, 0x20100, 0x20200, 0x20300, 0x20400,\n  0x20500, 0x20600, 0x20700, 0x20800, 0x20900, 0x20a00, 0x20b00, 0x20c00,\n  0x20d00, 0x20e00, 0x20f00, 0x21000, 0x21100, 0x21200, 0x21300, 0x21400,\n  0x21500, 0x21600, 0x21700, 0x21800, 0x21900, 0x21a00, 0x21b00, 0x21c00,\n  0x21d00, 0x21e00, 0x21f00, 0x22000, 0x22100, 0x22200, 0x22300, 0x22400,\n  0x22500, 0x22600, 0x22700, 0x22800, 0x22900, 0x22a00, 0x22b00, 0x22c00,\n  0x22d00, 0x22e00, 0x22f00, 0x23000, 0x23100, 0x23200, 0x23300, 0x23400,\n  0x23500, 0x23600, 0x23700, 0x23800, 0x23900, 0x23a00, 0x23b00, 0x23c00,\n  0x23d00, 0x23e00, 0x23f00, 0x24000, 0x24100, 0x24200, 0x24300, 0x24400,\n  0x24500, 0x24600, 0x24700, 0x24800, 0x24900, 0x24a00, 0x24b00, 0x24c00,\n  0x24d00, 0x24e00, 0x24f00, 0x25000, 0x25100, 0x25200, 0x25300, 0x25400,\n  0x25500, 0x25600, 0x25700, 0x25800, 0x25900, 0x25a00, 0x25b00, 0x25c00,\n  0x25d00, 0x25e00, 0x25f00, 0x26000, 0x26100, 0x26200, 0x26300, 0x26400,\n  0x26500, 0x26600, 0x26700, 0x26800, 0x26900, 0x26a00, 0x26b00, 0x26c00,\n  0x26d00, 0x26e00, 0x26f00, 0x27000, 0x27100, 0x27200, 0x27300, 0x27400,\n  0x27500, 0x27600, 0x27700, 0x27800, 0x27900, 0x27a00, 0x27b00, 0x27c00,\n  0x27d00, 0x27e00, 0x27f00, 0x28000, 0x28100, 0x28200, 0x28300, 0x28400,\n  0x28500, 0x28600, 0x28700, 0x28800, 0x28900, 0x28a00, 0x28b00, 0x28c00,\n  0x28d00, 0x28e00, 0x28f00, 0x29000, 0x29100, 0x29200, 0x29300, 0x29400,\n  0x29500, 0x29600, 0x29700, 0x29800, 0x29900, 0x29a00, 0x29b00, 0x29c00,\n  0x29d00, 0x29e00, 0x29f00, 0x2a000, 0x2a100, 0x2a200, 0x2a300, 0x2a400,\n  0x2a500, 0x2a600, 0x2f800, 0x2f900, 0x2fa00,\n};\n\nstatic int\ncns11643_5_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x21 && c1 <= 0x7c)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        ucs4_t wc = 0xfffd;\n        unsigned short swc;\n        {\n          if (i < 8603)\n            swc = cns11643_5_2uni_page21[i],\n            wc = cns11643_5_2uni_upages[swc>>8] | (swc & 0xff);\n        }\n        if (wc != 0xfffd) {\n          *pwc = wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643_6.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992 plane 6\n */\n\nstatic const unsigned short cns11643_6_2uni_page21[6388] = {\n  /* 0x21 */\n  0xc902, 0x3362, 0x0005, 0x3388, 0x33d0, 0x33cf, 0x341e, 0x341f,\n  0x3420, 0x3c0e, 0x3c2c, 0x3361, 0x3304, 0x3305, 0x3303, 0x0004,\n  0xc901, 0x337d, 0x338d, 0x34a3, 0x34a4, 0x37db, 0x3800, 0xc91e,\n  0x39a3, 0x3b32, 0x013f, 0x3dd4, 0x3dd5, 0x4e23, 0x552c, 0x557a,\n  0x3803, 0x3307, 0x3308, 0x338f, 0x339c, 0x33d5, 0x3412, 0x3413,\n  0x3414, 0x3421, 0x34a8, 0x34a6, 0x3776, 0x3801, 0x383d, 0xc914,\n  0x383e, 0x3929, 0x3977, 0x3978, 0x39a6, 0x39a9, 0x39ac, 0x3b34,\n  0x3804, 0x3c7b, 0x3d10, 0x392f, 0x3dd7, 0x3e1c, 0x3e1f, 0x3e1a,\n  0xc936, 0x3e1e, 0x3e9e, 0x3e9a, 0x43a0, 0x43a1, 0x47d2, 0x47d3,\n  0x4bb9, 0x4d1d, 0x4d55, 0x4eff, 0x51e7, 0x042a, 0x5211, 0x5213,\n  0x5212, 0x53af, 0x53b1, 0xc990, 0x552d, 0x557b, 0x559d, 0x559a,\n  0x04a7, 0x559f, 0x55a0, 0x559c, 0x56bd, 0x04fa,\n  /* 0x22 */\n  0x57aa, 0x626c, 0x6291, 0x6d74, 0x756a, 0xca29, 0x8605, 0x8f6b,\n  0x8f6a, 0x33e0, 0x3312, 0x0000, 0x337f, 0x33a0, 0x3399, 0x3395,\n  0x339e, 0x33df, 0x33de, 0x34af, 0x34ad, 0x34b0, 0x37df, 0x3843,\n  0x3841, 0x3848, 0x3875, 0xc91a, 0x3932, 0x397b, 0x3979, 0x39b3,\n  0x00db, 0x3ea7, 0x39b2, 0x39b0, 0x39b4, 0xc929, 0x3bcd, 0x3bce,\n  0xc92b, 0x3c10, 0x3c80, 0x3cd3, 0x3d30, 0x3398, 0x3d2f, 0x3d31,\n  0x3dda, 0x3dd9, 0x3e27, 0x3e28, 0x3e21, 0x3e25, 0x3ea6, 0x3ea2,\n  0x3ea1, 0x3ea4, 0xc939, 0x3eaa, 0x3ea5, 0x3ea3, 0x3364, 0x443f,\n  0x4444, 0x471b, 0x4753, 0x4784, 0x4786, 0x47d5, 0xc960, 0x4b3e,\n  0x4b40, 0x4dca, 0x4dc9, 0x4e26, 0x4f00, 0x4f31, 0x4f3c, 0x4f30,\n  0x4f33, 0x4f32, 0x4f38, 0x5234, 0x5253, 0x5254, 0x53b4, 0x53b2,\n  0x552f, 0x55a5, 0x55a7, 0x55a4, 0x55a8, 0x55a9,\n  /* 0x23 */\n  0x55a2, 0x55a3, 0x55a6, 0x5681, 0x5680, 0x57ad, 0x5c24, 0x5c65,\n  0x5c68, 0x5c69, 0x633c, 0x633b, 0x655d, 0x6a44, 0x7182, 0x74f1,\n  0x756b, 0x771b, 0x78eb, 0x7bba, 0x7bd3, 0x7d13, 0x8922, 0x97f4,\n  0xab0f, 0xab10, 0x3807, 0xc10b, 0xc10a, 0x3319, 0x331a, 0x3318,\n  0x3366, 0x3382, 0x33a8, 0x33e5, 0x33e7, 0x33e4, 0x3415, 0x3423,\n  0x3424, 0x3443, 0x34c3, 0x34bc, 0x34bb, 0x0038, 0x34b7, 0x34b9,\n  0x34cf, 0xc90d, 0x377a, 0x377b, 0x37e1, 0x37e0, 0x3809, 0x384d,\n  0xc916, 0x384b, 0x3879, 0x38b1, 0x3936, 0x3935, 0x3937, 0x3938,\n  0x397f, 0x3980, 0x3981, 0x9653, 0x397e, 0x39cd, 0x39bf, 0x39be,\n  0x39c2, 0x39b8, 0x39c1, 0x2030, 0x3c31, 0x3c2f, 0x3c6f, 0x3c82,\n  0x013a, 0x3c87, 0x3c86, 0x3c8d, 0x3c94, 0x3cd7, 0x3cd4, 0x3cd8,\n  0x3d16, 0x3d14, 0x3d2e, 0x3d36, 0x3d37, 0x51ee,\n  /* 0x24 */\n  0x3de0, 0x3de5, 0x3ddf, 0x3e2b, 0x3e29, 0x3e2d, 0x3e2f, 0x3eb7,\n  0x3ec9, 0x3ec1, 0x3eca, 0x3eb2, 0x3eac, 0x3eae, 0x43b2, 0x43a8,\n  0x43b0, 0x43a7, 0xc951, 0x4452, 0x444a, 0x4756, 0x4755, 0x475f,\n  0x475e, 0x4788, 0xc95d, 0x47dd, 0x47e2, 0x47e1, 0x47df, 0x47e0,\n  0x48af, 0x48b1, 0x48ba, 0x4b45, 0x4b43, 0x4bbd, 0x4bc8, 0xc96c,\n  0x4bbe, 0x4bbf, 0xc974, 0x4d59, 0x4e29, 0x4e2c, 0x4e2f, 0x4e2d,\n  0x4e2e, 0x4f04, 0x4f02, 0x4f01, 0x4f40, 0x4f4a, 0x4f3f, 0x4f4f,\n  0x4f41, 0x4f4e, 0x51eb, 0x51ec, 0x33ac, 0x525b, 0x5263, 0x525a,\n  0x5259, 0x53dc, 0x53db, 0x53d9, 0x53e0, 0x53dd, 0x3320, 0x55b0,\n  0x55b1, 0x55b2, 0x55b6, 0x5651, 0x5652, 0x5650, 0x5684, 0x04c9,\n  0x5683, 0x57c3, 0x57b8, 0x57b9, 0x57b2, 0x5b90, 0x5c26, 0x5c29,\n  0x5c6e, 0x6340, 0x633e, 0x6341, 0x655e, 0x65bb,\n  /* 0x25 */\n  0x65bc, 0x65b9, 0xc9ef, 0x6980, 0x084f, 0x6a45, 0x6aba, 0x6abd,\n  0x6d56, 0x6d55, 0x6d75, 0x6d77, 0x6d81, 0xc9fa, 0x6d83, 0x6d8b,\n  0x6d84, 0x7186, 0x7183, 0x718b, 0x756d, 0x7616, 0x7728, 0x78ea,\n  0x7bd4, 0x7c03, 0x7d15, 0x7f3d, 0x7f3e, 0x8416, 0xca4c, 0x8606,\n  0x874d, 0x8f22, 0x8f73, 0x8f6d, 0x8f6e, 0x91b1, 0x384e, 0x932d,\n  0x0fcd, 0x95f9, 0x9652, 0x9800, 0x97fc, 0x97fa, 0x1092, 0x97f7,\n  0x97f8, 0xca90, 0xcac4, 0xa627, 0xab11, 0x33ae, 0xad50, 0xad4f,\n  0xad4d, 0xaf71, 0xcae2, 0xaf72, 0xb518, 0x3d44, 0x3321, 0x3367,\n  0x33af, 0x33b0, 0x3329, 0x3417, 0x3422, 0xc903, 0x3325, 0x3428,\n  0x34ff, 0x34d9, 0x34db, 0x34de, 0x34f2, 0x34fe, 0x34f4, 0x34dd,\n  0x0045, 0xc904, 0x3501, 0x34dc, 0x377d, 0x3781, 0x377e, 0x377f,\n  0x37e5, 0x380f, 0x00b5, 0x380a, 0x00b6, 0x380b,\n  /* 0x26 */\n  0x3851, 0x3852, 0x3850, 0x38b8, 0x393d, 0x393e, 0x393c, 0x3987,\n  0x39d7, 0x39db, 0x39cf, 0x39e0, 0x3b4c, 0x3b42, 0x3bd4, 0x3c11,\n  0x3c14, 0x3c15, 0x3c12, 0x3c33, 0x3c35, 0x0137, 0x3c71, 0x0130,\n  0x3c91, 0x3c93, 0x3c95, 0x3cdc, 0x3d42, 0x3d40, 0x83a6, 0x3de6,\n  0x448f, 0x3e32, 0xc937, 0x3e31, 0x3ef5, 0x3ecd, 0x3ede, 0x3ed5,\n  0x3eda, 0x3eee, 0x3eec, 0x3ecf, 0x3ece, 0xc93d, 0x3ecc, 0x3ef3,\n  0x43c1, 0x43c4, 0x43c6, 0x43b4, 0x43c3, 0x43b8, 0x43bb, 0x43b7,\n  0x43bc, 0x43bf, 0x43c7, 0x43be, 0x4460, 0x445d, 0x4476, 0x446c,\n  0x4475, 0x445b, 0x4471, 0x4473, 0x4461, 0x445a, 0x4462, 0x4472,\n  0x445f, 0x4458, 0x471e, 0x4758, 0x478b, 0x478a, 0x47f4, 0x47f0,\n  0x48d2, 0x48cd, 0x48ce, 0x48bc, 0x48d0, 0x4b46, 0x4b47, 0x033e,\n  0x034d, 0x0351, 0x4bce, 0x4bcf, 0x4bcc, 0x4bcb,\n  /* 0x27 */\n  0xc972, 0x4d60, 0x4d5f, 0x4d5d, 0x4dd4, 0x4e3a, 0x4e38, 0x4e3c,\n  0x4e36, 0x4f08, 0x4f7e, 0x4f5e, 0x4f6e, 0x4f53, 0x4f70, 0x4f57,\n  0x4f5d, 0x4f63, 0x4f7a, 0x4f79, 0x4f93, 0xc981, 0x521d, 0x5268,\n  0x5273, 0x5274, 0x5266, 0x526f, 0x5275, 0x527a, 0x5270, 0x526d,\n  0x5265, 0x538a, 0x53ed, 0x53e9, 0x53e3, 0x53ef, 0x0473, 0x53ea,\n  0x5531, 0xc991, 0x5538, 0x9820, 0x5535, 0x553a, 0x5581, 0x5580,\n  0x55b8, 0x55c1, 0x55ba, 0x5688, 0x56cf, 0x56ca, 0x56c7, 0x56c5,\n  0x56c8, 0x56d0, 0x56c9, 0x57bb, 0x57b6, 0x57bd, 0xc99d, 0x57b4,\n  0x57c1, 0x57d1, 0x57d2, 0x57cc, 0x57d4, 0x57cb, 0x57ce, 0x57d5,\n  0x57d8, 0x5b95, 0x5b93, 0x5b99, 0x5b96, 0x05be, 0x5c89, 0x5c94,\n  0x5c91, 0x5c8f, 0x5c84, 0x5c97, 0x5c86, 0x5c85, 0x5c8c, 0x60f2,\n  0x60ed, 0x60ef, 0x62d9, 0x6346, 0x6347, 0x634b,\n  /* 0x28 */\n  0x6350, 0x634a, 0x634e, 0x634c, 0x6348, 0x6563, 0x6561, 0x6562,\n  0x6560, 0x65c3, 0x65c5, 0x65c1, 0x65d0, 0xc9dc, 0x6982, 0x081e,\n  0x6986, 0x6984, 0x6a4c, 0x6a48, 0x6ab8, 0x6abf, 0x6ac1, 0x6ac6,\n  0x6ac5, 0x6ac7, 0x6ac0, 0x6ac3, 0x6bed, 0x6c03, 0x6c22, 0x6c21,\n  0x6d9f, 0x6d90, 0x6d9e, 0x08c8, 0x6da0, 0x6d94, 0x6d95, 0x6da1,\n  0x08c3, 0x08c7, 0x719a, 0x7190, 0x74f2, 0x74f3, 0x756e, 0x75ab,\n  0x75a9, 0x761a, 0x7618, 0x761b, 0x7760, 0x774c, 0x7742, 0x7733,\n  0x773f, 0x773e, 0x7738, 0x7743, 0x7746, 0x7736, 0x78ee, 0x78f5,\n  0x78f4, 0x0b56, 0x7c1b, 0x0140, 0x7d2b, 0x7d29, 0x7d2a, 0x7d2e,\n  0x803f, 0x80e6, 0x83a7, 0x83a8, 0x8418, 0x8608, 0x8750, 0x8753,\n  0x8a56, 0x8a55, 0x8f6f, 0x8f7f, 0x91b3, 0x933a, 0x9338, 0x9337,\n  0x9336, 0x3854, 0xca80, 0x95dd, 0x95fc, 0x95fa,\n  /* 0x29 */\n  0x9633, 0x9804, 0x9807, 0x9808, 0x9806, 0x9809, 0xca91, 0xca93,\n  0x9d1e, 0xcad2, 0xad0b, 0xad43, 0xad52, 0xad58, 0xad5e, 0xaf68,\n  0xaf8d, 0xaf82, 0xaf7b, 0xb358, 0x15bd, 0xc900, 0x332c, 0x332e,\n  0x480b, 0x332d, 0x3369, 0x33b2, 0x33b6, 0x33a9, 0x33ed, 0x3419,\n  0x344f, 0x3516, 0x3503, 0x350e, 0x3504, 0x3507, 0x3510, 0x3527,\n  0x3528, 0x350d, 0x3529, 0x350f, 0x3522, 0x3511, 0x3785, 0x3784,\n  0x3783, 0x378a, 0x3786, 0x3810, 0x3858, 0x385a, 0x3a0c, 0x38c4,\n  0x38c5, 0x3947, 0x3949, 0x394a, 0x394b, 0x53bb, 0x398d, 0x398b,\n  0x3a07, 0x3a06, 0xc920, 0x39ef, 0x39f0, 0x39ed, 0x39f9, 0x3a02,\n  0x39e7, 0x39f4, 0x39f7, 0x39f1, 0x3b53, 0x3b55, 0x011a, 0x3bda,\n  0x3bd9, 0x012c, 0x3c38, 0x3c99, 0x3ca2, 0x3c9c, 0x3c9a, 0x3c9b,\n  0x3ce5, 0x3ce3, 0x3ce1, 0x3ce0, 0x3ce2, 0x3ce4,\n  /* 0x2a */\n  0x32fd, 0x3ce8, 0xc92f, 0x3d13, 0x3d56, 0x3d4b, 0x3d4a, 0x3d4d,\n  0x3d4c, 0x0149, 0x3dea, 0x3de9, 0x3deb, 0x3dec, 0x3e3a, 0x3e3c,\n  0x3e39, 0x3e3b, 0x3f14, 0x3f0e, 0x3f35, 0x3f0a, 0x3f3f, 0x3f38,\n  0x017c, 0x3f4e, 0x3f17, 0xc93f, 0x3f1e, 0x43b6, 0x43ce, 0x43ca,\n  0x43cb, 0x43cc, 0x43c9, 0x44b4, 0x44ac, 0x4488, 0x4486, 0x448c,\n  0x4493, 0x448a, 0x44a4, 0x4487, 0x44a5, 0x44a6, 0x4485, 0x44a3,\n  0x448e, 0x471f, 0x4763, 0x478d, 0x47fa, 0x47fb, 0x4809, 0x47fe,\n  0x47ff, 0x4802, 0x4804, 0x47fd, 0x4805, 0x48f9, 0x48f7, 0x48db,\n  0x48da, 0x4b51, 0x4b50, 0x4b57, 0x4be2, 0x4bd8, 0x4bda, 0x4bdc,\n  0x4d20, 0x4d1f, 0x4d69, 0x4ddd, 0x4e40, 0x4e41, 0x4e43, 0x4f0d,\n  0x4f0c, 0x4f87, 0x4fa9, 0x4f92, 0x4f85, 0x03bf, 0x4f8c, 0x4fa2,\n  0x4f8f, 0x4f8a, 0x03ba, 0x4f8d, 0x51f1, 0x5237,\n  /* 0x2b */\n  0x528b, 0x5287, 0x5282, 0x538e, 0x53bc, 0x53f8, 0x53fa, 0x53eb,\n  0x53f9, 0x53fc, 0x5405, 0x551b, 0x551d, 0x551e, 0xc992, 0x553c,\n  0x553e, 0x5584, 0x55c8, 0x55c9, 0x55d3, 0x55c7, 0x55d2, 0x5655,\n  0xc996, 0x568c, 0x568a, 0x56d5, 0x56d3, 0x04d8, 0x56d8, 0x57d0,\n  0x57ee, 0x57f1, 0x57fb, 0x57d3, 0x57ec, 0x57cd, 0x5815, 0x5826,\n  0x580e, 0x5827, 0x582a, 0x5800, 0x5804, 0x5828, 0x5808, 0x5814,\n  0x5b9b, 0x05b2, 0x5ba1, 0x5b9d, 0x5ba0, 0x5b9e, 0x5ba2, 0x5b9c,\n  0x5c32, 0x5c34, 0x5c93, 0x5c96, 0x5c90, 0x5cb4, 0x5cb5, 0xc9b6,\n  0x5cb6, 0x5cc2, 0xc9b5, 0x5cba, 0x5c92, 0x60fb, 0x6105, 0x60f3,\n  0x60fe, 0x60fd, 0x755d, 0x60fa, 0x6243, 0x6295, 0x6294, 0x06c4,\n  0x636f, 0x6373, 0x635c, 0x635b, 0x6366, 0x6374, 0x6363, 0x6367,\n  0x6360, 0x6362, 0x6371, 0x6372, 0x635e, 0x6523,\n  /* 0x2c */\n  0x6526, 0x6564, 0xc9d6, 0x65f2, 0x6601, 0x65dd, 0x65dc, 0x65db,\n  0x65f3, 0x65fd, 0x65d8, 0x65f8, 0x65fb, 0x6983, 0x698c, 0x698e,\n  0x6a49, 0x6a54, 0x6a52, 0x6a4e, 0x6a58, 0x6a51, 0x6a55, 0x6a53,\n  0x6a57, 0x6a50, 0x6a4f, 0x6a4d, 0x6ad2, 0x6ad3, 0x6ac9, 0x6ad4,\n  0x6bef, 0xc9f8, 0x33b1, 0x6c05, 0x6c04, 0x6c2e, 0x6c2d, 0x6d45,\n  0x6d5b, 0x6d5a, 0x6d59, 0x6d9d, 0x6d8e, 0x6dbc, 0x6ddd, 0x6dba,\n  0xc9fd, 0x6dd8, 0x6dcb, 0x6dd9, 0x6dda, 0x6dc4, 0x6db8, 0x6dbf,\n  0x6ddb, 0x6dc1, 0xc9fc, 0x6dc5, 0xca19, 0x71b1, 0x71af, 0xca18,\n  0x74f7, 0x74f6, 0x74f8, 0x7550, 0x7551, 0x7571, 0x7570, 0x75b0,\n  0x75af, 0x75ae, 0x75ad, 0x7625, 0x762c, 0x7622, 0x7633, 0x7634,\n  0x0a2b, 0x773a, 0x7740, 0x7768, 0x0a61, 0x7764, 0x775c, 0x7757,\n  0x7753, 0x774f, 0x7751, 0x7754, 0x7766, 0x23dd,\n  /* 0x2d */\n  0x0ab2, 0x790d, 0x7908, 0xca2b, 0x78fa, 0x7aea, 0x7b2a, 0x7bbb,\n  0x7bd5, 0x7bd7, 0x4fa4, 0x33f0, 0x33b5, 0x7c06, 0x7c28, 0x7c22,\n  0x7c21, 0x5656, 0x7c23, 0x43cd, 0x7d30, 0x7d34, 0x7fc9, 0x7fca,\n  0x7fc8, 0xca3d, 0x8044, 0x80f3, 0xca41, 0x80f8, 0x80fc, 0x80f6,\n  0x80fb, 0x80f7, 0x8100, 0x8102, 0xca40, 0xca4d, 0x8424, 0x860d,\n  0x0d29, 0x8762, 0x8930, 0x892b, 0x892a, 0x0d92, 0x892d, 0x8ada,\n  0x8c28, 0x8d86, 0x8f77, 0x8f7c, 0x9050, 0x904e, 0x90f2, 0x91b2,\n  0x91ce, 0x91cf, 0x91e5, 0x6607, 0x9235, 0x9231, 0x9313, 0x932b,\n  0x932c, 0x9345, 0x9360, 0x9341, 0x9358, 0x9347, 0x935b, 0x9350,\n  0xca82, 0x935f, 0x934a, 0x9356, 0x9343, 0x9344, 0x9351, 0x95fd,\n  0x9634, 0x9635, 0x9654, 0x9655, 0x970c, 0x970b, 0x970a, 0x97f9,\n  0x9835, 0x9824, 0x9813, 0x981c, 0x9869, 0x9825,\n  /* 0x2e */\n  0x9821, 0xca95, 0xca96, 0xca98, 0x9d20, 0x9fa9, 0x9fa8, 0x9fde,\n  0xa009, 0xa00a, 0xa00b, 0xa1e3, 0xa207, 0xa2b2, 0xa2b3, 0xa35d,\n  0xa858, 0xa886, 0xa887, 0xa9b9, 0xa9b8, 0xad0c, 0xad44, 0xad66,\n  0xad80, 0xad75, 0xad6d, 0xad7e, 0xad67, 0xad81, 0xad77, 0xafa8,\n  0xafa2, 0xafa5, 0xaf9b, 0xb357, 0xb50f, 0xb532, 0xb52c, 0xb533,\n  0xb8e7, 0x336e, 0x33b7, 0x33f6, 0x33f2, 0x33f3, 0x3817, 0x3430,\n  0x3454, 0x3453, 0x3552, 0x353d, 0x353c, 0x3534, 0x3533, 0x3554,\n  0x352f, 0x0058, 0x3555, 0x353f, 0x3537, 0x3556, 0x3561, 0x3558,\n  0xc906, 0x353b, 0x3532, 0x352e, 0x353e, 0x333b, 0x378c, 0x378d,\n  0x3813, 0x3816, 0x3812, 0x385b, 0x388a, 0x38d7, 0x38ce, 0x3950,\n  0x3951, 0x394f, 0x398e, 0x398f, 0x39f2, 0xc921, 0x3a28, 0x3a1a,\n  0x3a25, 0x3a1d, 0x3a14, 0x3a20, 0x3a1f, 0x3a1b,\n  /* 0x2f */\n  0x3a17, 0x3a15, 0x3a1c, 0x3a13, 0xc925, 0x3b60, 0x011c, 0x3b66,\n  0x3be3, 0x3bde, 0x3be0, 0x3be1, 0x3c1a, 0x3c1b, 0x3c18, 0x3c1c,\n  0x3c19, 0x3c42, 0x3c40, 0x3c3e, 0x3c44, 0x3c74, 0x3c43, 0xc92d,\n  0x3cf2, 0x3d1b, 0x3d19, 0x3d1e, 0xc930, 0x3d5e, 0x3d66, 0x3d5d,\n  0x3d5a, 0x3d5f, 0x3d60, 0x3d5b, 0x3d5c, 0x3d59, 0x3df0, 0x3df1,\n  0x3e43, 0x3e40, 0x3e42, 0x3e41, 0x3e3f, 0x3f57, 0x3f69, 0x3f6f,\n  0x3fab, 0x3f71, 0x3f93, 0x3f56, 0x3f90, 0x3f6d, 0x3f6c, 0x3f70,\n  0x3f66, 0x3f67, 0x43d7, 0x43b5, 0x43db, 0x43d8, 0x43d5, 0x43d4,\n  0x44ba, 0x44b7, 0x44be, 0x44b9, 0x0237, 0x44e0, 0x44dd, 0x44de,\n  0x7918, 0x44d8, 0x44bd, 0x44db, 0x471d, 0x4725, 0x4921, 0x490c,\n  0x4929, 0x492d, 0x491b, 0x490e, 0x491f, 0x4904, 0x491c, 0x4905,\n  0x4906, 0x4920, 0x490d, 0x492a, 0x4923, 0x4911,\n  /* 0x30 */\n  0x4b5c, 0x4b66, 0x4b5b, 0x4b4f, 0x4b5e, 0x4b5d, 0x4bf1, 0x4bea,\n  0x4bf4, 0x4beb, 0x4bf0, 0x4bfa, 0x4bfb, 0x4d28, 0x4d2c, 0x4d6b,\n  0x4d2a, 0x4d6a, 0x4d6f, 0x4ddb, 0x4de0, 0x7fd1, 0x4de3, 0x4de5,\n  0x4de7, 0x4e4d, 0x4e55, 0x4e54, 0x4e53, 0x4e52, 0x4e4e, 0x4e60,\n  0x53c0, 0x4f0f, 0x4f11, 0x4f13, 0x4fc6, 0x4fb3, 0x4fc7, 0x4fd2,\n  0x4fb8, 0x4fac, 0x4fae, 0x4fcf, 0x4fc5, 0xc97b, 0x4fcc, 0x4fab,\n  0x4fc9, 0x4fb9, 0x51fb, 0x51f8, 0x51f7, 0x51f9, 0x5220, 0x523b,\n  0x5239, 0x529e, 0x529a, 0x52aa, 0x52ab, 0x52af, 0x5296, 0x52a9,\n  0x52a6, 0x5291, 0x0443, 0x52ae, 0x529f, 0x52ac, 0x52a0, 0x5392,\n  0x5391, 0x53bf, 0x5417, 0x540a, 0x540c, 0x554a, 0x5546, 0x5534,\n  0x5545, 0x5543, 0x5544, 0xc993, 0x5587, 0x5586, 0x558a, 0x55da,\n  0x55d8, 0x04b4, 0x3818, 0x3434, 0x55d6, 0x55d4,\n  /* 0x31 */\n  0x5654, 0x5659, 0x565a, 0x5657, 0x04e0, 0x56dd, 0x56e9, 0x56e0,\n  0x5805, 0x5812, 0x5813, 0x5807, 0x5816, 0x5823, 0x5802, 0xc9a1,\n  0x584a, 0x5836, 0x5840, 0x5856, 0x5843, 0xc9a0, 0x584b, 0x5846,\n  0x583e, 0x5849, 0x5ba7, 0x5bb6, 0x5ba6, 0x5ba8, 0x5bac, 0x5ba9,\n  0x5bab, 0x5c38, 0x5c37, 0x5c39, 0x5c41, 0x5c3e, 0x5cc0, 0x5cbb,\n  0x5cbf, 0x5cbd, 0x5cfe, 0x5d1e, 0x5cee, 0x5cfc, 0xc9b7, 0x5cf9,\n  0x5d06, 0x5ce4, 0x5ce9, 0x5ce5, 0x5d03, 0x5cfd, 0x5d49, 0x60be,\n  0x610a, 0x8626, 0x6118, 0x610d, 0x610f, 0x610e, 0x6120, 0x6271,\n  0x6299, 0x62e2, 0x62df, 0x62de, 0x6378, 0x6379, 0x06e4, 0x637c,\n  0x637d, 0x6384, 0x638b, 0x638a, 0xc9d2, 0x6389, 0x652c, 0x6529,\n  0x656c, 0x2104, 0x6609, 0x6608, 0x660c, 0x660d, 0x6610, 0x0826,\n  0x699f, 0x6998, 0x69a2, 0x699a, 0x6ad5, 0x6ae2,\n  /* 0x32 */\n  0x6af0, 0x6aea, 0x6aeb, 0x6aed, 0x6ae8, 0x6ae0, 0x6b85, 0x6b86,\n  0x6bf0, 0x5046, 0x6c45, 0x6c38, 0x6c3e, 0x6c42, 0x6c40, 0x6d47,\n  0x6d5c, 0x6d5e, 0x6db4, 0x6dc2, 0x6e14, 0x6de5, 0x6e15, 0x6e11,\n  0xc9ff, 0x6dee, 0x6de7, 0x6df5, 0x6df4, 0x6de8, 0x6e01, 0x6def,\n  0x6df1, 0xca00, 0x71db, 0x71bf, 0x71da, 0x71c7, 0x71dd, 0xca1a,\n  0x71eb, 0x71e1, 0x71c1, 0x71bd, 0x7507, 0x74fd, 0x7501, 0x750a,\n  0x7503, 0x7572, 0x7574, 0x7575, 0x75b2, 0x75b1, 0x75b4, 0x764c,\n  0x7642, 0x7640, 0x7649, 0x763c, 0x764d, 0x764a, 0x763b, 0x7761,\n  0x7774, 0xca26, 0x777f, 0x777a, 0x7788, 0x777c, 0x0a6f, 0x7770,\n  0x790f, 0x7928, 0x7913, 0x792a, 0x7aed, 0x7aef, 0x7b2e, 0x7bc1,\n  0x7bdd, 0x3e47, 0x7c2d, 0x7c2b, 0x7c35, 0x7c2f, 0x7c31, 0x7c34,\n  0xca35, 0x7c30, 0x7d3a, 0x7d39, 0x7d37, 0x7d4b,\n  /* 0x33 */\n  0x7d54, 0x7d4d, 0x7d51, 0x7d47, 0x7f27, 0x7f50, 0x7f4d, 0x7f4e,\n  0x7f54, 0x7fd2, 0x7fce, 0x804b, 0x8049, 0x8105, 0x810f, 0x8119,\n  0xca43, 0x8106, 0x810c, 0x8129, 0x8104, 0x8108, 0x8125, 0x0c1c,\n  0x8103, 0x8127, 0x8110, 0x810a, 0xca42, 0x985d, 0x83aa, 0x83ab,\n  0x83a9, 0x8441, 0x843a, 0x843c, 0x842b, 0x8449, 0x8615, 0x0d00,\n  0x8616, 0xca53, 0x8631, 0x6d4a, 0x873c, 0x877c, 0x876d, 0x876a,\n  0x8763, 0x876b, 0x877b, 0x8764, 0x877a, 0x8769, 0x876f, 0x8937,\n  0x8935, 0x893c, 0x8936, 0x893d, 0x893e, 0x8ae1, 0x8ae0, 0x8c2d,\n  0x8c2b, 0x8d8d, 0x8d92, 0x0eb6, 0x8d8e, 0xca6b, 0x8d91, 0x8d96,\n  0x8f7b, 0x8f78, 0x8f81, 0x8f96, 0x8fa3, 0x8f95, 0x8f97, 0x9054,\n  0x9052, 0x90f5, 0x9100, 0x90fb, 0x90f4, 0x90f6, 0x91e8, 0x91ea,\n  0x933e, 0x933d, 0x933b, 0x9380, 0x0fe4, 0x9388,\n  /* 0x34 */\n  0x9381, 0x9382, 0x93ce, 0x9383, 0x9377, 0x9379, 0x9373, 0x936d,\n  0x9370, 0x938d, 0x9375, 0x938c, 0x936a, 0x9391, 0x9389, 0x938e,\n  0x44dc, 0x95ff, 0x9659, 0x96c7, 0x9712, 0x9714, 0x9713, 0x97cb,\n  0x9842, 0x10ad, 0x983d, 0x2aff, 0x9840, 0x9844, 0x9862, 0x9843,\n  0x983f, 0x9845, 0x983c, 0xca97, 0x9846, 0x9847, 0xcab3, 0x9c9e,\n  0x9c9d, 0x9d2c, 0x9d29, 0x9d2f, 0x9d2e, 0x9d30, 0x9fe1, 0x9fe2,\n  0xa00e, 0xa019, 0xa012, 0xa2b4, 0xa5da, 0xa726, 0xa859, 0xa85a,\n  0xa888, 0xa9c0, 0xa9ba, 0xaba0, 0xcadd, 0xaba2, 0xad86, 0x2fec,\n  0xad9d, 0xad88, 0xad8f, 0xad8e, 0xad9b, 0xafc1, 0xafc3, 0xafc4,\n  0xaf96, 0xafc7, 0xafc6, 0xafbf, 0x14c3, 0xb20f, 0xb555, 0xb542,\n  0xb546, 0xb54b, 0xb543, 0xb553, 0xb548, 0xb549, 0xb54a, 0xb54e,\n  0x7bde, 0x3991, 0xbb4b, 0xbd80, 0xbd81, 0xbd83,\n  /* 0x35 */\n  0x358a, 0xbd82, 0x5542, 0x3c22, 0x3370, 0x3371, 0x33bc, 0x4f18,\n  0x33be, 0x33ba, 0x33f8, 0x3437, 0x3435, 0x3dfc, 0x3456, 0x3459,\n  0x345e, 0x356d, 0x3591, 0x3592, 0x3568, 0x3566, 0x3573, 0x0067,\n  0x3596, 0x358b, 0x358c, 0x3796, 0x37ee, 0x381c, 0x381a, 0x3819,\n  0x381b, 0x385d, 0x385e, 0xc918, 0x38dc, 0x38e2, 0x3952, 0x3992,\n  0x3a30, 0x3a52, 0x3a42, 0x3a41, 0x3a45, 0x3a37, 0x3a40, 0x3a3f,\n  0x3a3d, 0x3a38, 0x3a3a, 0x3a49, 0x3b6b, 0x3b78, 0x3b79, 0xc926,\n  0x3b6c, 0x3be9, 0x3be6, 0x3be5, 0x3bea, 0x3be7, 0x3be8, 0x3c1f,\n  0x3c4b, 0x3c4a, 0x3c53, 0x3c76, 0x3ca3, 0x3ca4, 0x3cf6, 0x3cf3,\n  0x3cf9, 0x3cf7, 0x3cfc, 0x3d1d, 0x3d6d, 0x3d71, 0x3d6c, 0x3d6e,\n  0x3d70, 0x3d6f, 0x3d67, 0x3d68, 0x3dfa, 0x3df9, 0x3e4e, 0x19de,\n  0x3e4d, 0x3e4f, 0x3e4a, 0x3e4c, 0x0196, 0xc942,\n  /* 0x36 */\n  0x3fee, 0x3fb2, 0x3fc0, 0x3fc1, 0x3ff4, 0x3fc8, 0x3fc5, 0x3fc6,\n  0x3fad, 0x43e2, 0x43ea, 0x43e3, 0x43e1, 0x44f7, 0x4501, 0x4512,\n  0x44f6, 0x44f1, 0x451f, 0x44ee, 0xc952, 0x44f3, 0x4515, 0x4516,\n  0x4517, 0x44f8, 0x4519, 0x44f2, 0x44f4, 0x44f5, 0x4513, 0x4506,\n  0x4726, 0x4724, 0x475a, 0x60c8, 0x4797, 0x4795, 0x479a, 0x481f,\n  0x3dfb, 0x4829, 0x4820, 0xc962, 0xc963, 0x494c, 0x4930, 0x4938,\n  0x493d, 0x4951, 0x494f, 0x494a, 0x4934, 0x4936, 0x1b30, 0x4b6a,\n  0x4b68, 0x4c1c, 0x4c0e, 0x4c1e, 0x0359, 0x4c09, 0x4c08, 0x4c13,\n  0x4c01, 0x4c0f, 0x4c14, 0x4c06, 0x4c07, 0x1cb2, 0xc973, 0x0376,\n  0x4d79, 0x4dea, 0x4ded, 0x4de9, 0x4dee, 0x4e68, 0x4e64, 0x4e67,\n  0x4e72, 0x4e62, 0x4e74, 0x4e79, 0x4f19, 0x4f17, 0x4f15, 0x4f16,\n  0x4fe6, 0x8fa4, 0x4fee, 0x03d2, 0x4fdf, 0x4fe4,\n  /* 0x37 */\n  0x4fda, 0x4fea, 0x4fed, 0x4fe3, 0x4fe9, 0x51fd, 0x3957, 0x5221,\n  0x52c6, 0x52b8, 0x52cb, 0xc985, 0x52bd, 0x52b5, 0x52bb, 0x52bf,\n  0x52be, 0x52b2, 0x52c1, 0x52c2, 0x5399, 0x53c6, 0x542c, 0x542d,\n  0x5425, 0x541e, 0x541f, 0x5423, 0x5550, 0x554e, 0x554d, 0x5552,\n  0x55e9, 0x55ec, 0x55e8, 0x5658, 0x565c, 0x565b, 0x568f, 0x6a72,\n  0x56f6, 0x5700, 0x56fc, 0x56f8, 0x56ea, 0x56fe, 0x56f7, 0x56fd,\n  0x5870, 0x5862, 0x5844, 0x0520, 0x584d, 0x584c, 0x583f, 0x5866,\n  0x5835, 0x0529, 0x5834, 0x588d, 0x5884, 0x0538, 0x5886, 0x5889,\n  0x5887, 0x5883, 0x5875, 0x5879, 0x58af, 0x58b0, 0x5bb7, 0x5bbb,\n  0x5bb9, 0x5c46, 0x5c47, 0x5c45, 0x5cea, 0x5cf6, 0x5d68, 0x5d39,\n  0xc9b9, 0x5d3d, 0x5d3b, 0x5d4d, 0x5d30, 0x5d4a, 0x5d3e, 0x5d40,\n  0x5d4c, 0x5d47, 0x5d38, 0x5d52, 0x5d3a, 0x5d53,\n  /* 0x38 */\n  0x60c4, 0x60c1, 0x611c, 0x611d, 0x612a, 0x611e, 0x612f, 0x6122,\n  0x612e, 0x6125, 0x0689, 0x06b0, 0x624a, 0x624b, 0x6276, 0x06bf,\n  0x62e8, 0x62ef, 0x62e9, 0x06c5, 0x62ea, 0xc9cc, 0x06ea, 0x639b,\n  0x639e, 0x6393, 0x63a7, 0x639c, 0x63a0, 0x639a, 0x63ab, 0x63be,\n  0x63a9, 0x652d, 0x656e, 0x6644, 0x663d, 0x663a, 0x6668, 0x663c,\n  0x666a, 0xc9e0, 0x6638, 0x6665, 0x6639, 0x666d, 0x6636, 0xc9e3,\n  0x663e, 0x667e, 0x6637, 0x6999, 0x69a9, 0x69ad, 0x69a7, 0x69a8,\n  0x6a66, 0x6a69, 0x6a6d, 0x6a67, 0x6a6b, 0x6a6a, 0x6aee, 0x6b01,\n  0x6b03, 0x6af4, 0x6afb, 0x0837, 0x6af6, 0x6afc, 0x6bf4, 0x6c08,\n  0x6c0a, 0x6c09, 0x6c6d, 0x6c62, 0x6c41, 0x6c5e, 0x6c5c, 0x6df3,\n  0x6e26, 0x08e4, 0x6e39, 0xca04, 0x6e6c, 0x6e2b, 0x6e2e, 0x6e3b,\n  0x6e5e, 0x6efb, 0x6e27, 0x6e24, 0x6e69, 0x6e30,\n  /* 0x39 */\n  0xca05, 0x6e62, 0x6e38, 0x6e35, 0x6e2a, 0x6e2c, 0x6e68, 0x6e31,\n  0x6e2f, 0x6e2d, 0x6e3a, 0x6e36, 0xca03, 0x6e21, 0x6e3c, 0x6e20,\n  0x6e64, 0x6e3e, 0x08e8, 0x71f7, 0x7212, 0x71f1, 0x71f5, 0x7222,\n  0x71f2, 0x71df, 0x7215, 0x7216, 0x757a, 0x7576, 0x75be, 0x0a20,\n  0x75bd, 0x7609, 0x7608, 0x7657, 0x77a3, 0x77bf, 0x77b8, 0x77af,\n  0x779c, 0x77a5, 0x7772, 0x7775, 0x779d, 0x7799, 0x77b9, 0x794e,\n  0x7939, 0x793b, 0x7935, 0x793c, 0x7955, 0x7af0, 0x7af3, 0x7af4,\n  0x7b3b, 0x7b3c, 0x7b3a, 0x7b36, 0x7c07, 0x3feb, 0x7c55, 0x7c50,\n  0x7c4f, 0x7c52, 0x7c56, 0x33bd, 0x7c32, 0x7d63, 0x7d6b, 0x7d66,\n  0x7d57, 0x7d5d, 0x0b86, 0x7d6d, 0x7d61, 0x7d69, 0x7d5a, 0x7d5c,\n  0x7d62, 0x7f2a, 0x7f29, 0x7f58, 0x7f5a, 0x7fd7, 0x7fdb, 0x7fdc,\n  0x7fdd, 0x7fd8, 0x8054, 0x805b, 0x805c, 0x8053,\n  /* 0x3a */\n  0x804f, 0x8056, 0x8050, 0x805a, 0x806b, 0x8136, 0x8153, 0x813a,\n  0x813c, 0x813e, 0x8149, 0x8140, 0xca46, 0xca47, 0x8364, 0x8365,\n  0x83b5, 0x83b6, 0x83b2, 0x8448, 0x844a, 0x8472, 0x8469, 0x845a,\n  0x844c, 0x862c, 0x8630, 0x864b, 0x8649, 0x8642, 0x8644, 0x864a,\n  0x864f, 0x8792, 0xca57, 0x8797, 0x8780, 0x8782, 0x8786, 0x8953,\n  0x895e, 0x8952, 0x895b, 0x894e, 0x8a6d, 0x8a6e, 0x8afa, 0x8af6,\n  0x8afb, 0x8c33, 0x8c3d, 0x8c37, 0x8c3e, 0x8c35, 0x8d9a, 0x8dab,\n  0x8da6, 0x8db0, 0x8d99, 0x8da0, 0x8d9e, 0x8da8, 0x8da1, 0x8daa,\n  0x8dad, 0x8dbb, 0x8d9c, 0x8da5, 0x33b3, 0x8f27, 0x8f8d, 0x8f8e,\n  0x8f8f, 0x8f92, 0x0f56, 0x8f91, 0x8fad, 0x9057, 0x9058, 0x905e,\n  0x905d, 0x905c, 0x905b, 0x0f67, 0x910a, 0x9103, 0x910e, 0x91b8,\n  0x924d, 0x923f, 0x9247, 0x924b, 0x924a, 0x923d,\n  /* 0x3b */\n  0x2838, 0x9241, 0x924c, 0x2881, 0x9362, 0x9369, 0x9361, 0x0fd1,\n  0x93aa, 0x93a6, 0x93ac, 0x93bd, 0x93bb, 0x93a4, 0x93ba, 0x939a,\n  0x0feb, 0x93a1, 0x93c1, 0x95e0, 0x960a, 0x9603, 0x9606, 0x9639,\n  0x963a, 0x9636, 0x965b, 0x965f, 0x965e, 0x9667, 0x9661, 0x9662,\n  0x965d, 0x96ca, 0x96cc, 0x96ce, 0x9718, 0x971d, 0x971f, 0x9720,\n  0x9717, 0x9715, 0x981f, 0x9827, 0x9826, 0x5010, 0x988b, 0x98ae,\n  0x988a, 0xca99, 0x9892, 0x9889, 0x9887, 0x10b6, 0x988f, 0x9884,\n  0x9883, 0x988c, 0x9893, 0x988d, 0x9898, 0x987d, 0x987e, 0x98d2,\n  0x9880, 0x9899, 0x9cac, 0x9d50, 0x9d55, 0x9d42, 0x9d3f, 0x9d3c,\n  0x11a3, 0x9d4c, 0x9d49, 0x9d57, 0x9d58, 0x9d4f, 0x9d5c, 0x9d47,\n  0xcab7, 0x9fab, 0x1210, 0x9faf, 0x9fad, 0x9fe8, 0x9fe7, 0xa030,\n  0xa026, 0xa02f, 0xa028, 0xa02b, 0xa01d, 0xa02d,\n  /* 0x3c */\n  0xa020, 0xa02a, 0xa02c, 0xa035, 0xa021, 0xa023, 0xa024, 0xa036,\n  0xa037, 0xa1e9, 0xa2ba, 0xa2b8, 0xcacc, 0xa36d, 0xa36a, 0xa368,\n  0xa369, 0xa36b, 0xa361, 0xa5dc, 0xa5db, 0xa62d, 0xa62c, 0xa6a2,\n  0xa72b, 0xa732, 0xcad7, 0xa894, 0xa892, 0xa890, 0xa9c9, 0xa9c4,\n  0xa9c1, 0xa9c3, 0xa9cd, 0xab14, 0xaba7, 0xabaf, 0xabaa, 0xad0d,\n  0xad54, 0xad5b, 0xad61, 0xadae, 0xadb3, 0xadc0, 0xadc4, 0xadbf,\n  0xadcb, 0xadad, 0xada7, 0xada4, 0xadbd, 0xadaf, 0xadb2, 0xada5,\n  0xafe7, 0xafe0, 0xafce, 0xafde, 0xafd5, 0xafdf, 0xafd9, 0xb0f2,\n  0xb223, 0xb240, 0x151b, 0xb23e, 0x1587, 0xb3cf, 0x3e54, 0xb55b,\n  0xb558, 0xb562, 0xb55f, 0xb567, 0xb563, 0xb55e, 0xb560, 0xb685,\n  0xb686, 0xb687, 0xb8e8, 0xb8e6, 0xbd71, 0xbd85, 0xcb02, 0xbd86,\n  0xbe10, 0x3cf8, 0x33bf, 0x3e61, 0x33fe, 0x33fc,\n  /* 0x3d */\n  0x3439, 0x3461, 0x3460, 0x35e2, 0x35ea, 0x35e3, 0x35b4, 0x35ae,\n  0x35be, 0x35b8, 0x35a8, 0x35aa, 0x35a9, 0x35b3, 0x35d5, 0x35ad,\n  0x35b9, 0x35bb, 0x35b1, 0x35c2, 0xc908, 0x35eb, 0x35ba, 0x35d2,\n  0x35d4, 0x37f1, 0x381d, 0xc912, 0x3862, 0x388c, 0x38e6, 0x38e7,\n  0x395a, 0x3958, 0x3959, 0x3996, 0x3997, 0x3a61, 0x3a67, 0x3a71,\n  0x3a65, 0x3a7d, 0x3a7e, 0x3b7d, 0x3b84, 0x3b7c, 0x3b7e, 0x3b7f,\n  0x3b80, 0x3bef, 0x3bf4, 0x3c1e, 0x3c4e, 0x3cfb, 0x3cfa, 0x3cfd,\n  0xc931, 0xc932, 0x3d79, 0x3d7c, 0x3d7d, 0x3d84, 0x3d7b, 0x3d78,\n  0x0157, 0x3e5e, 0x3e5a, 0x3e5c, 0x3e59, 0x3e55, 0x3e63, 0x3e56,\n  0x3e5f, 0x3e60, 0x3e5b, 0x404a, 0x4065, 0x40b3, 0x402c, 0x4077,\n  0x403d, 0x4052, 0x4061, 0x402a, 0x403e, 0x4034, 0x4029, 0x40b2,\n  0x40ad, 0x4040, 0x4053, 0xc944, 0x403f, 0x4041,\n  /* 0x3e */\n  0x4072, 0x43f6, 0x43f5, 0x43f4, 0x43f2, 0x43f9, 0x4527, 0x4554,\n  0x4555, 0x452e, 0xc954, 0xc953, 0x452c, 0x4538, 0x4539, 0x4531,\n  0x454f, 0x4573, 0x4530, 0x452b, 0x4551, 0x472c, 0x475b, 0x475c,\n  0x4768, 0x476c, 0x476b, 0x4769, 0x479f, 0x4838, 0x483c, 0x483a,\n  0x4835, 0x029d, 0x4839, 0x4836, 0x483b, 0x4960, 0x4961, 0x4963,\n  0x4964, 0x4994, 0x4993, 0x495e, 0x4968, 0x496a, 0x4965, 0xc966,\n  0x4990, 0x495f, 0x4972, 0xc965, 0x4c3c, 0x4c27, 0x4c24, 0x4c26,\n  0x4c25, 0x035f, 0x4c28, 0x4c36, 0x4d31, 0x4d30, 0x4d34, 0x4d81,\n  0x4d7d, 0x4d82, 0x4d80, 0x0379, 0x35d3, 0x4df2, 0x4e66, 0x4e8c,\n  0x4e7b, 0x4e83, 0x0398, 0x4e8e, 0x4e7a, 0x4e92, 0x4e91, 0x4e82,\n  0x4f1b, 0x4f1c, 0x5027, 0x5021, 0x03dc, 0x1d2b, 0x5043, 0x03df,\n  0x5018, 0x507b, 0x501a, 0x504b, 0x504a, 0x504d,\n  /* 0x3f */\n  0x504f, 0x5019, 0x5035, 0x5013, 0x5052, 0x5014, 0x501e, 0x502c,\n  0x5020, 0x5022, 0x5012, 0x501f, 0x5200, 0x5223, 0x5240, 0x5243,\n  0x52e4, 0x52db, 0x52ea, 0x52dd, 0x52cc, 0x52d9, 0x52e8, 0x52f6,\n  0x52e3, 0x52d3, 0x52da, 0x52d6, 0x52e7, 0x543a, 0x543f, 0x5440,\n  0x5448, 0x5459, 0x5437, 0x5444, 0xc98c, 0xc98b, 0x5455, 0x5439,\n  0x5554, 0x5555, 0x5556, 0x5557, 0x5558, 0x5559, 0x558d, 0x55f2,\n  0x55f8, 0x55f5, 0x55f6, 0x55fc, 0x55fe, 0x55f1, 0x55fd, 0x565e,\n  0x5696, 0x5697, 0x569c, 0x569b, 0x5695, 0xc99a, 0x571a, 0x5709,\n  0x5704, 0x570e, 0x571c, 0x5718, 0x570d, 0x5710, 0x570c, 0x5703,\n  0x587b, 0x58a6, 0x5877, 0x5888, 0x5874, 0x58da, 0x5876, 0x5878,\n  0x588a, 0x588f, 0x587d, 0x5890, 0x58ed, 0x58d9, 0x58d0, 0x591a,\n  0x58d7, 0x58e2, 0x58e1, 0x58c5, 0x58e0, 0x58ca,\n  /* 0x40 */\n  0x5925, 0x58cc, 0xc9b3, 0x5bc6, 0x5bc1, 0x5c4d, 0x5d4b, 0x5d64,\n  0x5d95, 0x5d99, 0xc9bc, 0x5d94, 0x5da2, 0x5dae, 0x5d9e, 0x5da7,\n  0x5d86, 0x05fd, 0x5da4, 0x5d91, 0x5d93, 0xc9bb, 0x5d88, 0x60cd,\n  0x60ca, 0x613f, 0x6140, 0x6146, 0x6141, 0x6145, 0x6158, 0x613b,\n  0x6148, 0x624e, 0x6252, 0x624f, 0x627b, 0x627a, 0x62a0, 0x629f,\n  0x62fb, 0x62f7, 0x63b8, 0x63b9, 0x63bb, 0x63b7, 0x06f4, 0x63ba,\n  0x06ef, 0x63da, 0x63b5, 0x63bf, 0x63bc, 0x63c0, 0xc9d3, 0xc9d9,\n  0x6575, 0x6579, 0x6576, 0x6635, 0x6640, 0x66c0, 0x6681, 0x66ad,\n  0x66af, 0x66ac, 0x668f, 0x66a8, 0x66aa, 0x66a9, 0x6688, 0x667f,\n  0x6680, 0x66bc, 0x69ae, 0x69bb, 0x69bd, 0x0831, 0x6a78, 0x6a74,\n  0x6b0c, 0x6b11, 0x6b08, 0x6b06, 0x6b10, 0x6b8f, 0x6b90, 0x6b8d,\n  0x6b8e, 0x6b96, 0x6b95, 0x6c0b, 0x6c0c, 0x6c7c,\n  /* 0x41 */\n  0x6c73, 0x6c75, 0x6c76, 0x6c7d, 0x6c78, 0x6c71, 0x6d4b, 0x6d4e,\n  0x6e33, 0x6e32, 0x0903, 0x6e91, 0x6ee7, 0x6ee9, 0x6ea2, 0x6e94,\n  0x6e87, 0x6ea3, 0x6edd, 0x6e7b, 0x6e83, 0x6e81, 0x6edf, 0x6e7c,\n  0x6ee4, 0x6ee2, 0x6e93, 0x6e7d, 0x6ebf, 0x6e9b, 0x6e8e, 0x6e9f,\n  0x0909, 0x6e8c, 0x6e7f, 0x6e9c, 0x6e84, 0x6e42, 0x6ee6, 0x7251,\n  0x724a, 0x7264, 0x7225, 0x722f, 0x722e, 0x722b, 0x7228, 0x7232,\n  0x722d, 0x7231, 0x7239, 0x722c, 0x7261, 0x7511, 0x7510, 0x7512,\n  0x7553, 0x7555, 0x757b, 0x7581, 0x757d, 0x757c, 0x75c2, 0x75c5,\n  0xca22, 0x75c4, 0xca23, 0x766b, 0x7668, 0x0a3e, 0x765c, 0x765d,\n  0x766a, 0xca24, 0x7c76, 0x7776, 0x0a77, 0x77c4, 0x77cb, 0x77c8,\n  0x77d4, 0x77d5, 0x77c9, 0x77d7, 0x0a7b, 0x7978, 0x795a, 0x795b,\n  0x795c, 0x7956, 0x7958, 0x7971, 0x96d4, 0x7b40,\n  /* 0x42 */\n  0xca33, 0x7b3f, 0x7b43, 0x7b41, 0x7be2, 0x7be0, 0x7be3, 0x7c66,\n  0x7c73, 0x7c6c, 0x7c71, 0x7c6a, 0x7c6d, 0x7c6e, 0x7c6b, 0x7d8c,\n  0x7d77, 0xca3a, 0x7d7f, 0x7d89, 0x7d7a, 0x7d85, 0x7d78, 0x7d8a,\n  0x7d86, 0x7f2c, 0x7f67, 0x7f5b, 0x7fe5, 0x7fe1, 0x8061, 0x8069,\n  0x806a, 0x8165, 0x816d, 0x8163, 0x8186, 0x815c, 0x8162, 0xca48,\n  0x8179, 0x8169, 0x8170, 0x8176, 0x815d, 0x8187, 0x816e, 0x8171,\n  0x817c, 0x8173, 0x815b, 0x816b, 0x83bf, 0x83c1, 0x83bd, 0x83c9,\n  0x83bc, 0x83c2, 0x83c0, 0x8492, 0x84a9, 0x848f, 0x8476, 0x847b,\n  0x8475, 0x84a4, 0x8664, 0x873d, 0x87af, 0x0d3a, 0xca58, 0x879d,\n  0x8799, 0x87b1, 0x8963, 0x8962, 0x8964, 0x8969, 0x0da0, 0x8a75,\n  0x8a73, 0x8a71, 0x8a74, 0x8b0c, 0x8b16, 0x0de5, 0x8b11, 0x8b1f,\n  0x8b1a, 0x8b0d, 0x8b1b, 0x8b13, 0x8c4e, 0x8c55,\n  /* 0x43 */\n  0x8c50, 0x0e7d, 0x8dd2, 0x8dd3, 0x8dd1, 0x8df1, 0x8ddc, 0x8dc8,\n  0x8dcc, 0x8dd0, 0x8dcf, 0x8ddf, 0x8f2b, 0x8f2e, 0x8f2d, 0x8f9d,\n  0x8f9e, 0x8f9f, 0x8fa9, 0x8fa0, 0x8f98, 0x8fa1, 0x8fab, 0x8faf,\n  0x906e, 0x905f, 0x905a, 0x0f6d, 0x9065, 0x9068, 0x9072, 0x9117,\n  0x9116, 0x9118, 0x9119, 0x911a, 0x9122, 0x911b, 0x911c, 0x91be,\n  0x91ee, 0x925a, 0x9250, 0x9258, 0x9254, 0x9257, 0x9256, 0x9315,\n  0x939b, 0x9393, 0x9392, 0x9372, 0x9398, 0x9399, 0x93df, 0x0ff8,\n  0x93d5, 0x2958, 0x93d4, 0x93f3, 0x93f4, 0x93e7, 0x93e1, 0x93e6,\n  0x93eb, 0x93ec, 0x35db, 0x1050, 0x960d, 0x960c, 0x4d2f, 0x9668,\n  0x9665, 0x966b, 0x9669, 0x96d1, 0x96d3, 0x9727, 0x9728, 0x1068,\n  0x1067, 0x9724, 0x97d7, 0x98ca, 0x98c7, 0xca9e, 0x98d8, 0x98e1,\n  0x98c6, 0x98f8, 0x98c3, 0x98f4, 0x9917, 0x98ea,\n  /* 0x44 */\n  0x98cb, 0x9886, 0x98c4, 0x98d9, 0x9919, 0x98c2, 0x98e2, 0x10cf,\n  0x98de, 0x98ed, 0xca9c, 0x10cd, 0x991d, 0x98dd, 0x98db, 0x98e8,\n  0x98e9, 0x98bf, 0x98e0, 0x98d1, 0x98dc, 0x98ce, 0x991e, 0x98cc,\n  0x98f2, 0x98f3, 0xca9f, 0xcaa2, 0xcaa3, 0xcaa1, 0x9cab, 0x9caa,\n  0x9ca7, 0x9ca9, 0x9d88, 0x9d75, 0x9d60, 0x9d6c, 0x9d73, 0x11ab,\n  0x9d6e, 0x9d74, 0x9d76, 0x9d68, 0x9d77, 0x9d86, 0x9fea, 0xa051,\n  0xa050, 0xa058, 0xa04d, 0xa04f, 0xa04e, 0xa05c, 0xa052, 0xa044,\n  0xa04a, 0xa04b, 0xa1ea, 0xa210, 0xa211, 0xa2cd, 0xa2bf, 0xa2c4,\n  0xa2d0, 0xa2ce, 0xa2c0, 0xa2c2, 0xa2cf, 0xa2c9, 0xa2bb, 0xa397,\n  0xa392, 0xa36f, 0xa37e, 0xa39a, 0x12c1, 0xa386, 0xa373, 0x2d24,\n  0xa377, 0xa38f, 0xa370, 0xa381, 0xa382, 0xa399, 0xa37d, 0xa37f,\n  0xa37b, 0xa387, 0xa5b2, 0xa62f, 0xa634, 0xa62e,\n  /* 0x45 */\n  0xa632, 0x1347, 0xa6aa, 0x1357, 0xa6a9, 0xa738, 0xa736, 0xa737,\n  0xa747, 0xa733, 0xa739, 0xa735, 0xa744, 0xa8a5, 0xa8a6, 0xa89e,\n  0xa9e3, 0xa9df, 0xa9d3, 0xa9f1, 0xa9e4, 0xa9e0, 0xa9d6, 0x2ec3,\n  0xa9e6, 0xa9d8, 0xa9de, 0xa9db, 0xa9dc, 0xab1b, 0xab1f, 0xab1d,\n  0xab1c, 0xab1e, 0xab20, 0xab21, 0x144e, 0xabb6, 0xabbc, 0xabc6,\n  0xabc7, 0xabba, 0xabbe, 0xabbd, 0xabb5, 0xabb4, 0xad0f, 0xad62,\n  0xadeb, 0xadd9, 0xade4, 0xadd7, 0xadd8, 0xadd6, 0xadce, 0xaddd,\n  0xade7, 0xadd2, 0xadc5, 0xadc9, 0xaddb, 0xaf92, 0xaf8a, 0xaf8b,\n  0xaf89, 0xb008, 0xb003, 0xb006, 0xb005, 0xaff5, 0xb00b, 0xaffb,\n  0xb0fc, 0xb101, 0xb102, 0xb0fa, 0xb108, 0xb0f7, 0xb100, 0xb0ff,\n  0xb106, 0xb0f6, 0xb0fb, 0xb10a, 0xb225, 0xb243, 0xb244, 0xb364,\n  0xb362, 0xb35e, 0xb35b, 0xb3d6, 0x3372, 0x33c2,\n  /* 0x46 */\n  0xb577, 0xb582, 0xb57c, 0xb57d, 0xb586, 0xb581, 0xb584, 0xb576,\n  0xb583, 0xb57f, 0xb57e, 0xb688, 0xb68d, 0xb68b, 0xb691, 0xb68f,\n  0xb77c, 0xb779, 0xb77a, 0xb8ea, 0xbb4c, 0xbc99, 0x35d1, 0xbd8b,\n  0xbd8d, 0xbd8a, 0xbd8e, 0xbe11, 0x5456, 0xcb15, 0x3374, 0x33c3,\n  0x33c4, 0x341b, 0x345f, 0x346a, 0x3469, 0x346b, 0x360c, 0x35f6,\n  0x35ed, 0x3629, 0x35fe, 0x35f1, 0x3617, 0x35ff, 0x35ee, 0x35fd,\n  0x361c, 0x35fc, 0x3600, 0x3620, 0x0077, 0x35f9, 0x3667, 0x3608,\n  0x379e, 0x37f3, 0x3825, 0x3827, 0x381f, 0x3865, 0x3863, 0x3894,\n  0x3897, 0x38f1, 0x395f, 0x3962, 0x18f2, 0x3960, 0xc922, 0x3a8c,\n  0x3a82, 0x3a90, 0x3a8b, 0x3a8d, 0x3a81, 0x3a9d, 0x3b8e, 0x3b8f,\n  0x3b92, 0x3c23, 0x3c52, 0xc92e, 0x3d00, 0x3d01, 0x3d02, 0x3d1f,\n  0x3d8c, 0x3d89, 0x3d8b, 0x3d88, 0x3d8d, 0x3d8f,\n  /* 0x47 */\n  0x9085, 0x3e00, 0x3e05, 0x3e01, 0x3e68, 0x3e6e, 0x3e67, 0x3e75,\n  0x1ab6, 0xc945, 0x40d7, 0xc946, 0x3348, 0x40d4, 0x40d8, 0xc947,\n  0xc948, 0x40ba, 0xc949, 0x40db, 0x40bf, 0x4135, 0x40bc, 0x40d9,\n  0x01c4, 0x40dd, 0x4100, 0x40d5, 0x4130, 0x40bd, 0x40dc, 0x43fd,\n  0x43fe, 0x4407, 0x7517, 0x456f, 0x4569, 0x4570, 0x4567, 0x45a9,\n  0x4595, 0x4590, 0x456c, 0x4597, 0x4571, 0x0252, 0x4574, 0x456d,\n  0x458e, 0x472f, 0xc61b, 0x47a9, 0x484e, 0xc95f, 0x485a, 0x4848,\n  0x4855, 0x484c, 0x4849, 0x484f, 0x484a, 0x49d6, 0x49a0, 0x49a9,\n  0xc967, 0x499d, 0x49d4, 0x49a4, 0x49a8, 0x49a6, 0x49e6, 0x4b7d,\n  0x4b77, 0x4b7a, 0x4c41, 0x4c49, 0x4c59, 0x4c45, 0x4c48, 0x4c40,\n  0x4d8e, 0x4d95, 0x4d90, 0x4df7, 0x4df8, 0x4df6, 0x4dfb, 0x4e9e,\n  0x4e9d, 0x4e99, 0xc977, 0x4ea3, 0x4ea9, 0x4e98,\n  /* 0x48 */\n  0x4ea0, 0x4e96, 0x4e94, 0x4e95, 0x4e9f, 0x4ea1, 0x4f21, 0x4f1d,\n  0x4f1f, 0x506d, 0xc97c, 0x509a, 0x5092, 0x507a, 0x507d, 0x50a1,\n  0x509d, 0x5099, 0x506b, 0x506e, 0xc97d, 0x5245, 0xc984, 0x52fb,\n  0x52eb, 0x52f2, 0x52f9, 0xc986, 0x52f8, 0x52ed, 0x5301, 0x52f7,\n  0x5306, 0x539b, 0x53ca, 0x046b, 0x1ec3, 0x546b, 0x546c, 0x5474,\n  0x5467, 0x545b, 0x5460, 0x5476, 0x5463, 0x5461, 0x5528, 0x555b,\n  0x555e, 0x5560, 0x555d, 0x555c, 0x55f4, 0x5600, 0x5608, 0x5607,\n  0x5601, 0x5605, 0x5664, 0x5663, 0x569e, 0x56a0, 0x56a1, 0x569f,\n  0x5726, 0x572d, 0x5728, 0x571d, 0x58ec, 0x58e3, 0x58eb, 0x5916,\n  0x58c8, 0x931b, 0x58e9, 0x58e4, 0x5924, 0x58d1, 0x0541, 0x58dd,\n  0x58c2, 0x58cb, 0x58c7, 0x58e7, 0x0550, 0x58ea, 0x594b, 0xc9a5,\n  0x5960, 0x597d, 0x593e, 0xc9a4, 0x5952, 0x594e,\n  /* 0x49 */\n  0x593c, 0x5932, 0x5930, 0x5923, 0x5bca, 0x5bcb, 0x5bc9, 0x5bc8,\n  0x5bcd, 0x5d98, 0x5da0, 0x5d9f, 0x5d9c, 0x5da3, 0x5d97, 0xc9be,\n  0x5df1, 0x5e09, 0x5e03, 0x5dea, 0x5e45, 0x5ded, 0x5e05, 0x5e1a,\n  0x5e15, 0x5e01, 0x5dec, 0x5e0e, 0x5e17, 0x5e42, 0x5e12, 0x5e10,\n  0x5def, 0x5dff, 0x5e00, 0x5e0c, 0x5e0f, 0x5e04, 0x5e08, 0x5e14,\n  0x5e43, 0xc9bd, 0x5e1b, 0x5e11, 0x5e13, 0x60cf, 0x60ce, 0x616f,\n  0x616e, 0x617a, 0x6170, 0x6164, 0x615e, 0x616c, 0xc9c9, 0x615b,\n  0x6161, 0x6165, 0x627f, 0x6280, 0x627c, 0x62a7, 0x62a6, 0x62a1,\n  0x06c0, 0x62a8, 0x62a3, 0x62a2, 0x62ad, 0x62a5, 0x6301, 0x62ff,\n  0x62fc, 0x6300, 0x6335, 0x63ee, 0x63ef, 0x63f6, 0x63e8, 0x63ea,\n  0x63e3, 0x641f, 0x06fc, 0x63e4, 0x63fa, 0x63f1, 0x63fb, 0xc9d4,\n  0x653d, 0x653c, 0x0079, 0x6578, 0x6577, 0x100b,\n  /* 0x4a */\n  0x66d1, 0x66c7, 0x66df, 0x66d0, 0x66e0, 0x66d6, 0x66d8, 0x6716,\n  0x670e, 0x66d9, 0x670f, 0x6711, 0x66cd, 0x6689, 0x66ce, 0x6714,\n  0x66da, 0x6712, 0x66d3, 0x66c2, 0x66e1, 0x66e9, 0x66ea, 0x66de,\n  0x6715, 0x69d9, 0x69d6, 0x69cd, 0x69d0, 0x69d3, 0xc9f0, 0x6a82,\n  0x6a85, 0x6a7f, 0x6a7d, 0x6a81, 0x6a83, 0x6a84, 0xada0, 0x6b28,\n  0x6b0f, 0x6b17, 0x6b1a, 0x6b25, 0xc9f7, 0x6b9b, 0x6b99, 0x6c92,\n  0x6c8c, 0x6c95, 0x6c8d, 0x6ca3, 0x6c93, 0x6c91, 0x6edb, 0x6e99,\n  0x6e9a, 0x6f08, 0x6f4c, 0x6f0d, 0x6f01, 0x6f4e, 0x6f02, 0x6f4d,\n  0x6f21, 0x6efc, 0xca09, 0x6e8a, 0xca08, 0x6e95, 0x6f11, 0x6f12,\n  0x6f46, 0x6f1c, 0x6f49, 0x6f0c, 0x091e, 0x6f13, 0x6f16, 0x6efd,\n  0x6f0f, 0x6f1f, 0x7230, 0x726e, 0x726b, 0x729b, 0x727b, 0x7263,\n  0x7297, 0x726d, 0x729c, 0x7298, 0x726f, 0x7267,\n  /* 0x4b */\n  0x7269, 0x7515, 0x7563, 0x7586, 0x758a, 0x7587, 0x7588, 0x7585,\n  0x7589, 0x75ca, 0x75c7, 0x75cb, 0x75cc, 0x75c9, 0x760d, 0x7683,\n  0x7684, 0x7678, 0x7682, 0x7673, 0x7679, 0x768c, 0x77d0, 0x77cf,\n  0x77d2, 0x77d9, 0x77cc, 0x77eb, 0x77fd, 0x77ec, 0x77e8, 0x77f8,\n  0x77fa, 0xca27, 0x0a85, 0x77e1, 0x77fb, 0x78e7, 0xca2e, 0x79a5,\n  0x7991, 0x79a6, 0x797c, 0x7992, 0x79a2, 0x79a0, 0x7afc, 0x7afe,\n  0x7b57, 0x7b53, 0x7b58, 0x7be7, 0x7c8e, 0xca38, 0x7c83, 0x7c8b,\n  0x7c84, 0x0b97, 0x7da2, 0x7db7, 0x7da9, 0x7da5, 0x7d9f, 0x7daa,\n  0x7d97, 0x7da1, 0x7d9e, 0x7dab, 0x7d99, 0x7da3, 0x7f30, 0x7f32,\n  0x7f2f, 0x7f70, 0x7f6c, 0x7f6f, 0x7fe8, 0x7fee, 0x7fea, 0x806d,\n  0x8076, 0x8070, 0x8071, 0x806c, 0x81eb, 0x81b5, 0x8196, 0x8190,\n  0x818d, 0xca49, 0x81a2, 0x81b0, 0x8192, 0x81a0,\n  /* 0x4c */\n  0x8193, 0x81c3, 0x818e, 0x81b6, 0x819d, 0x8195, 0x81b3, 0x81a4,\n  0x8370, 0x83d4, 0x0c93, 0x83cf, 0x3470, 0x8494, 0x2561, 0x84c0,\n  0x84b4, 0x84c1, 0x0cb2, 0x84bd, 0x84af, 0x8677, 0x8678, 0x866b,\n  0x866d, 0x866e, 0x8672, 0x866f, 0x8671, 0x62ab, 0x868c, 0x873f,\n  0x87b6, 0x87b7, 0x2606, 0x87bb, 0x87b8, 0x3a9c, 0x87b9, 0x2601,\n  0x898b, 0x897a, 0x8984, 0x8988, 0x8991, 0x8979, 0x898e, 0x8980,\n  0x8982, 0x897c, 0x0da4, 0x8a84, 0x8a7f, 0x0df2, 0x8b3b, 0x8b71,\n  0x8b3d, 0x8b30, 0x0df1, 0x8b3e, 0x8b38, 0x8c5e, 0x8c64, 0x0e81,\n  0x8c5d, 0x8c6d, 0x8c4f, 0x8c62, 0x8c5f, 0x8dec, 0x8df2, 0x8df4,\n  0x8df7, 0x8df6, 0x8e07, 0x8ded, 0x8dea, 0x8df0, 0x8df8, 0x8df3,\n  0x0edc, 0xca72, 0x8f31, 0x8f2f, 0x8fb6, 0x8fae, 0x8faa, 0x8fbf,\n  0x8fcc, 0x8fc7, 0x9983, 0x9080, 0x907b, 0x907f,\n  /* 0x4d */\n  0x907d, 0x9083, 0xca78, 0x9146, 0x912d, 0x9125, 0x9126, 0x912c,\n  0x9137, 0x9131, 0x9133, 0x9132, 0x9127, 0x912a, 0x912e, 0x912f,\n  0x91c0, 0x9271, 0x9261, 0x9262, 0x9266, 0x9318, 0x93c5, 0x93c3,\n  0x93c4, 0x93c2, 0x93ae, 0x9410, 0x9408, 0x941f, 0x943a, 0x943b,\n  0x9436, 0x940c, 0x9406, 0x942a, 0x9457, 0x9450, 0x9420, 0xca85,\n  0x942c, 0x9421, 0x940b, 0x9419, 0x9435, 0x9418, 0x940f, 0x9413,\n  0x9455, 0x9439, 0x941a, 0x100c, 0x9417, 0x95e4, 0x95e9, 0x758b,\n  0x9610, 0x9612, 0x963f, 0x966e, 0x7518, 0xca8c, 0x96d6, 0x96d5,\n  0x96d7, 0x3e02, 0x106d, 0x9731, 0x9730, 0x973a, 0x9885, 0x986b,\n  0x9948, 0x994b, 0x9937, 0x997b, 0x996c, 0x9985, 0x9965, 0x9936,\n  0x9986, 0x9934, 0x9968, 0x995a, 0x9958, 0x9972, 0x996a, 0x98d3,\n  0x993c, 0x9933, 0x993b, 0x994d, 0x994f, 0x997c,\n  /* 0x4e */\n  0x99b0, 0x995b, 0x9955, 0x9964, 0x996b, 0x9953, 0x10e6, 0x9957,\n  0x995e, 0x996d, 0x9935, 0x9969, 0x9959, 0x9966, 0x9950, 0x9951,\n  0x995c, 0x9a5d, 0x9987, 0x9978, 0x9949, 0x994e, 0x98f1, 0x9973,\n  0x9988, 0x98cf, 0xcaa4, 0x9cb1, 0x9cb3, 0x9d9c, 0x9da4, 0x9d90,\n  0x9db8, 0x9da0, 0x9d9d, 0x9da8, 0x9da9, 0xcab9, 0x9db1, 0x9d93,\n  0x9d9b, 0x9da2, 0x9da1, 0x9db0, 0x9da7, 0x9fb3, 0x2b49, 0x9fb4,\n  0x9ff1, 0x9fed, 0x9fec, 0xa068, 0xa075, 0xa06a, 0xa062, 0xa067,\n  0xa060, 0xa077, 0xa05f, 0xa079, 0xa223, 0xa221, 0xa21c, 0x2c99,\n  0xa21f, 0xa21e, 0xa2d6, 0xa2d3, 0xa2d9, 0xa2d7, 0xa2d4, 0xa2dc,\n  0xa2d8, 0xa3a3, 0x12d1, 0xa3be, 0xa3a9, 0xa3a1, 0xa3a0, 0xa3ab,\n  0xa3a2, 0xa3ba, 0xa3c2, 0xa39c, 0xa3bb, 0xa3aa, 0xa3ac, 0xa3a5,\n  0xa3c1, 0x132c, 0xa5e2, 0xa636, 0xa63d, 0xa63a,\n  /* 0x4f */\n  0x5661, 0xa648, 0xa63c, 0xa6b7, 0xa6ac, 0xa6b3, 0xa6b6, 0xa6b2,\n  0x136e, 0xa75d, 0xa749, 0xa74e, 0xa74f, 0xa74d, 0xa75c, 0xa85d,\n  0xa8bb, 0xa8ce, 0xa8bf, 0xa8ba, 0xa8c3, 0x13e5, 0xaa06, 0xa9f8,\n  0xa9fe, 0xaa13, 0xa9f6, 0x13e6, 0xab34, 0xab2d, 0xab2a, 0xab35,\n  0xab2c, 0xabd4, 0xabda, 0xabd3, 0xabd2, 0xabce, 0xabcf, 0x149f,\n  0xadfd, 0xae0b, 0xadfe, 0xadf8, 0xadf7, 0xae17, 0xadfa, 0xadf9,\n  0xae00, 0xadf5, 0xadf1, 0xae03, 0xae05, 0xae1c, 0xafac, 0xaf9a,\n  0xafad, 0xafa0, 0xb01b, 0xb025, 0xb024, 0xb026, 0xb027, 0xb028,\n  0xb02a, 0xb01a, 0xb02e, 0xb015, 0xb115, 0xb114, 0xb117, 0xb118,\n  0xb10f, 0xb113, 0xb10b, 0xb122, 0x457a, 0xb226, 0x301f, 0xb251,\n  0xb24d, 0xb24e, 0xb24a, 0xb24b, 0xb24c, 0xb250, 0xb262, 0xb24f,\n  0xb252, 0xb368, 0xb369, 0xb3e5, 0xb3f0, 0xb3e1,\n  /* 0x50 */\n  0xb3e2, 0xcaf2, 0xb5a5, 0xb5a9, 0xb5a4, 0xb5af, 0xb5ac, 0xb5ae,\n  0xb5aa, 0xb695, 0xb699, 0xb693, 0xb69d, 0xb698, 0xb69c, 0xb697,\n  0x160d, 0xb789, 0xb787, 0xb8d7, 0xb8ed, 0xb8f1, 0xb8f0, 0xb905,\n  0xb903, 0xb904, 0xb95f, 0xbb57, 0xbc9c, 0xbca1, 0xbc9a, 0xbd8f,\n  0xbd93, 0xbd9e, 0xbda3, 0xbd98, 0xbd99, 0xbd95, 0xbe6e, 0xbe6a,\n  0xbff4, 0xbff7, 0xc179, 0xc38f, 0xc391, 0xc40b, 0xc802, 0x3384,\n  0x3404, 0x3480, 0x362f, 0x363f, 0x363b, 0x3662, 0x3644, 0x3633,\n  0x365f, 0x362b, 0xc909, 0x3639, 0x3636, 0x3648, 0x3635, 0x366c,\n  0x3658, 0x363a, 0x37a8, 0x37f4, 0x3829, 0x389a, 0x3900, 0x3abb,\n  0x3abd, 0x3ab7, 0x3ab2, 0x00f8, 0x3aa8, 0x3aab, 0x3aa6, 0x3abc,\n  0x3b97, 0x3b96, 0x3bf8, 0x1913, 0x3c51, 0x0133, 0x3cb5, 0x3cb4,\n  0x3cb6, 0x013c, 0x3cb7, 0x3d05, 0x3d23, 0x3d95,\n  /* 0x51 */\n  0x3d98, 0x014f, 0x3d94, 0x3d93, 0x3e07, 0x3e73, 0x3e71, 0x3e72,\n  0x3e78, 0x415f, 0x416a, 0x4167, 0x416b, 0x4169, 0x418e, 0x4149,\n  0x4180, 0x01dc, 0x4144, 0x418f, 0x4145, 0xc94c, 0x414f, 0x4163,\n  0x4136, 0x4148, 0x415c, 0x4193, 0x4161, 0x4160, 0x414e, 0x415e,\n  0x413f, 0x41a4, 0x1ae0, 0x4168, 0x440b, 0x4411, 0x440d, 0x440e,\n  0x45c2, 0xc957, 0x45b0, 0x45c3, 0x45c8, 0x4565, 0x45d7, 0x45bd,\n  0x45b8, 0x45b6, 0x45c7, 0x45bc, 0x45b1, 0x45af, 0xc95b, 0x4735,\n  0x4730, 0x475d, 0x3e76, 0x476f, 0x47b0, 0xc95e, 0x47b4, 0x485c,\n  0x485d, 0x4a08, 0x49ee, 0x4a0b, 0x49f2, 0x49fd, 0x49f1, 0x4a10,\n  0xc968, 0x4a14, 0x4b8b, 0x4b8c, 0x4b85, 0x4c7a, 0x4c6c, 0x4c60,\n  0x4c67, 0x4c66, 0x4c6a, 0x4c5f, 0x4c6d, 0x4c68, 0x4c64, 0x4d3a,\n  0x4d3b, 0x4d39, 0x4e02, 0x4e04, 0x4e03, 0x4eb4,\n  /* 0x52 */\n  0x4eb3, 0x4ebb, 0x4eac, 0x4eb6, 0x4eb1, 0x4eaf, 0x4eb5, 0x4ebe,\n  0x4eb2, 0x4f24, 0x50b6, 0x50b9, 0x50ac, 0x50b0, 0x50d7, 0x50bb,\n  0x50fe, 0x50cb, 0xc97f, 0x03f5, 0x50b3, 0x50be, 0x50cd, 0x50bc,\n  0x50ba, 0x50c7, 0x5316, 0x531b, 0x5317, 0x5315, 0x539f, 0xc98e,\n  0x5482, 0x5483, 0x548e, 0x546a, 0x5489, 0x5494, 0x5486, 0x5490,\n  0x5562, 0x5590, 0x560c, 0x560f, 0x04c3, 0x56a5, 0x56a7, 0x56a6,\n  0x56a4, 0x5735, 0x5738, 0x5736, 0x5743, 0x5747, 0x5737, 0x5943,\n  0x59a2, 0x5951, 0x5972, 0x596d, 0x592f, 0x5954, 0x596e, 0x5955,\n  0x5937, 0x594f, 0x5950, 0x1f39, 0x599e, 0xc9a8, 0x59b3, 0x59a7,\n  0x0571, 0x59f9, 0x5991, 0xc9a7, 0x59b6, 0x59dd, 0x5999, 0x5bdf,\n  0x5bd5, 0x77f5, 0x5e28, 0x5e40, 0x5e71, 0x5e98, 0x5e95, 0x5e65,\n  0x5e78, 0x5e7f, 0x5e60, 0x5e7c, 0x5e96, 0x5e6a,\n  /* 0x53 */\n  0x5e79, 0x5e73, 0x5e72, 0x5e7b, 0x5e70, 0x60d5, 0x60d7, 0x618f,\n  0x6189, 0x619e, 0x6187, 0x61a0, 0x618d, 0x6188, 0x617f, 0x618c,\n  0x6193, 0x6259, 0xbcb0, 0x62b1, 0x81f4, 0x62af, 0x62b2, 0x6308,\n  0x630a, 0x6336, 0x6337, 0xc9cf, 0x0701, 0x6436, 0x6429, 0x644a,\n  0x6426, 0x6428, 0x6424, 0x642a, 0x6448, 0x6544, 0x6584, 0x658c,\n  0x66c4, 0x66dc, 0x6787, 0x6753, 0x677f, 0x6731, 0x6751, 0x674b,\n  0x6752, 0x6780, 0x67a5, 0x6781, 0x6743, 0x6734, 0x6736, 0x6732,\n  0x6748, 0x6749, 0x673c, 0x674d, 0x674a, 0xc9e6, 0x678a, 0x6746,\n  0x673e, 0x6783, 0x6750, 0x67b4, 0x69f0, 0x69e4, 0x69e3, 0x69e5,\n  0x69e6, 0x69e7, 0x69e1, 0x69ef, 0x69e8, 0x69dd, 0x6a03, 0x6a88,\n  0x6b26, 0x6b16, 0x6b3b, 0x6b2f, 0x6b39, 0x6b34, 0xc9f4, 0x6b35,\n  0x6b31, 0x6b38, 0x3e81, 0x6baa, 0x6ba3, 0x6ba4,\n  /* 0x54 */\n  0x6ba0, 0x6ba1, 0x6ba9, 0x6ba5, 0x6caf, 0x6cb1, 0x6cab, 0x6cae,\n  0x6cb0, 0x6cb3, 0x6cac, 0x6ca9, 0x6cb2, 0x6ca8, 0x6cb4, 0x6cc2,\n  0x6d4f, 0x6d66, 0x6f1e, 0x6f15, 0x6f10, 0x6f7f, 0x6f7e, 0x6f60,\n  0x6fcc, 0x6fb2, 0x6f62, 0x6f8d, 0x6f8e, 0x6f77, 0x6f7c, 0x6f8f,\n  0x6f5d, 0x6f6d, 0x6f63, 0x6faf, 0x6f90, 0x6f7d, 0x6f7a, 0x6f06,\n  0xca0b, 0x6f68, 0x6fb4, 0x6f78, 0x6fb1, 0x22d7, 0xca0c, 0x0941,\n  0x72e8, 0x72e9, 0x72c0, 0x09d7, 0x72ea, 0x72b7, 0x72ba, 0x72b5,\n  0xca1d, 0x72b4, 0x72bc, 0x72c6, 0x72b8, 0x72bd, 0x72c2, 0x734d,\n  0x72f0, 0x72c7, 0x72c1, 0x72c3, 0x72f1, 0x72ec, 0x09e2, 0x751c,\n  0x7520, 0x7558, 0x7565, 0x7564, 0x758c, 0x758d, 0x75d9, 0x75e0,\n  0x7610, 0x7694, 0x7692, 0x7696, 0x7695, 0x76bf, 0x76a0, 0x0a45,\n  0x77f4, 0x77f6, 0x77dc, 0x243d, 0x7816, 0x7815,\n  /* 0x55 */\n  0x781c, 0x780f, 0x782c, 0x7814, 0x7825, 0x7817, 0x7812, 0x781e,\n  0x7980, 0x79a8, 0x79af, 0x79d6, 0x79e2, 0x79b4, 0x79b3, 0x79b0,\n  0x79b2, 0x79a1, 0x7b60, 0x7b66, 0x7b61, 0x7b4e, 0x7b5d, 0x7b63,\n  0x7be6, 0x7bef, 0x7bec, 0x7c98, 0x7ca7, 0x7c94, 0x7c95, 0x7c91,\n  0x7c9d, 0x7c99, 0x7c9b, 0x7c9c, 0x7d1d, 0x7d1c, 0x7dd0, 0x7de0,\n  0x7dcb, 0x7ddb, 0x7dda, 0x7dc2, 0x7dd3, 0x7de5, 0x7f7d, 0x7f7b,\n  0x7fff, 0x0bf2, 0x7ff9, 0x8077, 0x807c, 0x8078, 0x807b, 0x807a,\n  0x81d2, 0x81cb, 0x81c9, 0x81ce, 0x81e4, 0x81ca, 0x81d0, 0x61a5,\n  0x0c49, 0x81d9, 0x81ee, 0x81dd, 0x8200, 0x81e1, 0x83de, 0x83e2,\n  0x83da, 0x84ce, 0xca4f, 0x84cf, 0x84da, 0x84d1, 0x84d4, 0x84ed,\n  0x84cb, 0x84d5, 0x84f1, 0x869c, 0x8688, 0x8741, 0x87d0, 0x87f7,\n  0x87cf, 0x87d1, 0x87db, 0x87de, 0x87f8, 0x87dc,\n  /* 0x56 */\n  0x87d9, 0x89a0, 0x89b2, 0x89a1, 0x89aa, 0x89a9, 0x0da9, 0x89a6,\n  0x899c, 0x89b5, 0x89a7, 0x8a8e, 0x8a90, 0x8a91, 0x8b85, 0x8b5b,\n  0x8b70, 0x8b64, 0x8b67, 0x8b63, 0x8b77, 0x8b68, 0x8b65, 0x8b6a,\n  0x8b78, 0x8b66, 0x8c88, 0x8c9e, 0x8c74, 0x8c7a, 0x8c79, 0x8c8b,\n  0x8c7f, 0x8e13, 0x8e1e, 0x8e17, 0x8e1a, 0x8e22, 0x8e43, 0x8e19,\n  0x8e1f, 0x8e27, 0x8e12, 0x8e24, 0x8e25, 0x365e, 0x8f35, 0x8f34,\n  0x8fd1, 0x8fc4, 0x8fca, 0x8fc6, 0x8fcb, 0x8fcd, 0x8fe2, 0x9089,\n  0x908b, 0x9086, 0x9088, 0x908d, 0x913b, 0x913c, 0x913d, 0x91f5,\n  0x9279, 0x9275, 0x9282, 0x927f, 0x9285, 0x9276, 0x927c, 0x927e,\n  0x927b, 0x9280, 0x927a, 0x5748, 0x0fcb, 0x931d, 0x93f6, 0x93f7,\n  0x93f9, 0x9463, 0x946c, 0x946e, 0x9414, 0x100d, 0x9467, 0x946f,\n  0x9469, 0x9476, 0x9495, 0x9471, 0x9461, 0x9478,\n  /* 0x57 */\n  0x946b, 0x9485, 0x9484, 0x9614, 0x9676, 0x89b6, 0x9675, 0x9674,\n  0x96e2, 0x973f, 0x9744, 0x973d, 0x9747, 0x9748, 0x97db, 0x97dc,\n  0x97dd, 0x98e5, 0x98e6, 0x99c2, 0x9a2e, 0x9a1d, 0x99f8, 0x99f0,\n  0x99f6, 0x99c5, 0x99c6, 0x99fc, 0x9a52, 0x9a2f, 0x9a10, 0x99f3,\n  0x99d2, 0x99ea, 0x99dc, 0x9a1b, 0x99fb, 0x99c3, 0x9a16, 0x9a07,\n  0x99c9, 0x99d8, 0x9a30, 0x9a13, 0x9a31, 0x99fa, 0x99f2, 0x9ae3,\n  0x99d5, 0x9a01, 0x99f1, 0x9a1c, 0x99d6, 0x9a08, 0x9a0b, 0x9a17,\n  0x9a20, 0x99ca, 0x9a32, 0x9a05, 0x99e4, 0x99ce, 0x9a33, 0x9a02,\n  0x9a19, 0x9a1e, 0x99d3, 0x99f7, 0x99e8, 0x9a1f, 0x99f4, 0x9ad8,\n  0x9cbf, 0x9cbe, 0x9cbd, 0x9ddc, 0x9ddd, 0x9dab, 0x9dc9, 0x9dc8,\n  0x9ddf, 0x9dd9, 0x9ddb, 0x9dcc, 0x9de0, 0x9def, 0x9df3, 0x9dae,\n  0x9e01, 0x9fb7, 0x9fb9, 0x9fb6, 0x9fb8, 0x9ff6,\n  /* 0x58 */\n  0x9ff3, 0x9ff5, 0x9ff2, 0xa091, 0xa09d, 0xa09b, 0xa092, 0xa08d,\n  0xa09e, 0xa08c, 0x1231, 0xcac7, 0xa095, 0xcac6, 0xa08a, 0xa08e,\n  0xa09c, 0xa1ef, 0xa22d, 0xa252, 0xa235, 0xa228, 0xa22e, 0xa2e5,\n  0xa3ea, 0xa3f1, 0xa3eb, 0xa3d8, 0xa3d0, 0xa3f3, 0xa3db, 0xa3ce,\n  0x12d5, 0xa3da, 0xa3d7, 0xa3e1, 0xa3f2, 0xa3c8, 0xa3d9, 0xa3de,\n  0xa3d1, 0xa3e7, 0xa3cf, 0xa5b7, 0xa647, 0xa642, 0xa643, 0xcad3,\n  0xa6c3, 0xa6c1, 0xa6c7, 0xa764, 0xa76a, 0xa766, 0xa750, 0xa76e,\n  0xa765, 0x69ec, 0xa77f, 0xcad5, 0xa79a, 0xa769, 0xa772, 0xa76f,\n  0xa77d, 0xa770, 0xa860, 0xa8c2, 0xa8e7, 0xa8d1, 0xa8eb, 0xa8d4,\n  0xa8dc, 0xa8db, 0xaa37, 0xaa25, 0xaa1f, 0xaa1e, 0xaa21, 0xaa1b,\n  0xaa17, 0xaa22, 0xaa2a, 0xaa1a, 0xaa2d, 0xaa23, 0xaa26, 0xaa36,\n  0xa9ff, 0xab3a, 0xab40, 0xab42, 0xab38, 0xab3b,\n  /* 0x59 */\n  0xab3c, 0xab43, 0xabe8, 0x1456, 0xabf9, 0xabeb, 0xabf1, 0xabe9,\n  0xabec, 0xad15, 0xad47, 0xad46, 0xad45, 0xae24, 0xae56, 0xae21,\n  0xae27, 0xae4d, 0xae31, 0xae1e, 0xae2c, 0xae4f, 0xae2b, 0xae53,\n  0xae51, 0xae54, 0xae29, 0xae50, 0xae1f, 0xae32, 0xae2a, 0xae1d,\n  0xae28, 0xae2e, 0xae2d, 0xafbc, 0xafbb, 0xafbd, 0xcae4, 0xb047,\n  0xb041, 0xcae5, 0xb049, 0x14f4, 0xb12e, 0xb127, 0xb26a, 0xb27b,\n  0xb273, 0xb275, 0xb269, 0xb279, 0xb272, 0xb376, 0xb377, 0xb374,\n  0xb373, 0xb402, 0xb3fe, 0xb401, 0xb3f9, 0xb3f4, 0xb5d3, 0xb5d5,\n  0xb5d8, 0xb5c3, 0xb5ca, 0xb5d0, 0xb5cb, 0xb5ce, 0xb5c5, 0xb5e6,\n  0xb5c4, 0xb5c0, 0xb5d4, 0xb5e8, 0xb676, 0xb6a2, 0xb6ae, 0xb6a8,\n  0xb6a3, 0xb6a7, 0xb696, 0xb6a9, 0xb6a5, 0xb6af, 0xb6a4, 0xb6ab,\n  0xb6aa, 0xb6a6, 0xb6a0, 0xb798, 0xb8db, 0xb8f6,\n  /* 0x5a */\n  0xb8f5, 0xb90c, 0xb90a, 0x3175, 0xb968, 0xb963, 0xb966, 0x1658,\n  0xb964, 0xb96a, 0xb969, 0xba95, 0xbb02, 0xbb6a, 0xbb5e, 0xbb68,\n  0xbb69, 0xbb65, 0xcafe, 0xbca7, 0xbcae, 0xbca8, 0xbcb3, 0xbd9c,\n  0xbda9, 0xbdb6, 0xbdb3, 0xbdb2, 0xcb03, 0xbdb8, 0xbdc0, 0xbdbf,\n  0xbdba, 0xbda8, 0xbe3c, 0xbe72, 0xbe71, 0xbe75, 0xbe73, 0xbf17,\n  0xbf15, 0xbf16, 0xbf1b, 0xbffa, 0xbff9, 0xc12c, 0xc185, 0xc182,\n  0xc17f, 0xc17d, 0xc188, 0x72f3, 0xc24e, 0xc250, 0xc393, 0xc397,\n  0xc398, 0xc39b, 0xc39c, 0xc396, 0xc58b, 0xc5fd, 0xc5fc, 0xcb17,\n  0x6a8b, 0x3408, 0x3407, 0x3673, 0x36a2, 0x36af, 0x3682, 0x367b,\n  0x3674, 0x36b0, 0x3676, 0x36b9, 0x369e, 0x36b1, 0x36a1, 0x36b2,\n  0x366e, 0xc90b, 0x0087, 0x3678, 0x367a, 0x3683, 0x369a, 0x37f8,\n  0x3831, 0x3869, 0x3868, 0x389c, 0x3904, 0x3999,\n  /* 0x5b */\n  0x3ac7, 0x3ac6, 0x3adc, 0x3ac4, 0x3ad8, 0x3ad4, 0x3adf, 0x3ad1,\n  0x3ad0, 0x3ad6, 0x3acf, 0x3bad, 0x3baf, 0x3ba7, 0x3bfd, 0x3c5b,\n  0x3c5a, 0x3d07, 0x3d9d, 0x3d9b, 0x3dab, 0x3da4, 0x3d9c, 0x3d9e,\n  0x3da5, 0x3daa, 0x3da6, 0x3e0e, 0x3e7e, 0x3e7c, 0x41ee, 0x41d5,\n  0x41e9, 0x4142, 0x41e2, 0x4223, 0x41d9, 0x41d4, 0x41e3, 0x4215,\n  0x41ef, 0x41f0, 0x41d6, 0x41dd, 0x41f6, 0x421c, 0x41d8, 0x41db,\n  0x41da, 0x41ed, 0x4611, 0x4415, 0x4418, 0x441a, 0x441f, 0x4416,\n  0xc94d, 0x4419, 0xc94b, 0x45f0, 0x4609, 0x461b, 0xa5e7, 0x45f6,\n  0x45f4, 0x45b5, 0x4610, 0x45f2, 0x4615, 0x45f3, 0x45f8, 0x4739,\n  0x473b, 0x4736, 0x460e, 0x4772, 0x4774, 0x47b9, 0x47b7, 0x47b8,\n  0x4872, 0x486b, 0x4a1d, 0x4a37, 0x4a22, 0x4a43, 0x4a4d, 0x4a38,\n  0x4a5b, 0x4a79, 0x4a1b, 0x49f3, 0x4b91, 0x4c7b,\n  /* 0x5c */\n  0x4c94, 0xc96f, 0x4c96, 0x4c7f, 0x4c8f, 0x4c84, 0x4c7c, 0x4c8e,\n  0x4c90, 0x4c98, 0x4c83, 0x4c80, 0x4c93, 0x4c82, 0x32fd, 0x4d3d,\n  0x4d41, 0x4da1, 0x4d9f, 0x4e0a, 0x4e0d, 0x4ec8, 0x4ec9, 0x4ec7,\n  0x4ecd, 0x4f25, 0x50b1, 0x50dc, 0xc980, 0x50e5, 0x50f4, 0x50bf,\n  0x50db, 0x50ea, 0x50f2, 0x03fa, 0x50f1, 0x50ed, 0x50e6, 0x5202,\n  0xc982, 0x5325, 0x5318, 0x531f, 0x5320, 0x53cf, 0x549d, 0x5499,\n  0x54a8, 0x5568, 0x5566, 0x5567, 0x5591, 0x5613, 0x5615, 0x561d,\n  0x5616, 0x5619, 0x566b, 0x5668, 0x566a, 0x566d, 0x5669, 0x56aa,\n  0x5757, 0x5752, 0x5750, 0x575f, 0x5767, 0x574f, 0x04f2, 0x575b,\n  0x575c, 0x575d, 0x5a1f, 0x599d, 0x59b1, 0x59b0, 0x5994, 0x59c3,\n  0x59af, 0x59a8, 0x59dc, 0x5998, 0x59c4, 0x59a4, 0x59ab, 0x59aa,\n  0x59a5, 0x5a21, 0x59eb, 0x59e6, 0x59f7, 0x59f8,\n  /* 0x5d */\n  0x59fc, 0x59fa, 0x59e0, 0xc9aa, 0x59f6, 0xc9a9, 0x59e1, 0x5bec,\n  0x5be2, 0x5be4, 0x5bf9, 0x5e6f, 0x6b4c, 0x5ebb, 0x5ee1, 0x5f00,\n  0x5ed8, 0x062f, 0x5ed6, 0x5ee2, 0x5ec3, 0x5eb3, 0x5ed2, 0xc9c1,\n  0x5ece, 0x5ed0, 0x5ed5, 0x5eb9, 0x5eba, 0x5ecf, 0x5ebd, 0x60db,\n  0x61aa, 0x61ad, 0x61b8, 0x61b6, 0x61b5, 0x61af, 0x61b4, 0x61b7,\n  0x61a8, 0x61b9, 0x61be, 0x6282, 0x62bc, 0x62b8, 0x62b6, 0x62b9,\n  0x06c1, 0x6310, 0x6427, 0x6469, 0x6470, 0x6456, 0x646b, 0x647a,\n  0x646c, 0x646d, 0xc9d5, 0x94c1, 0x658d, 0x6590, 0x67b6, 0x6810,\n  0x6812, 0x67ba, 0x67bd, 0x6805, 0x67c2, 0x6807, 0x67f5, 0xc9e9,\n  0x67af, 0x67f4, 0x67f7, 0x67f8, 0x6811, 0x69f6, 0x69f5, 0x69fb,\n  0x6a01, 0x6a00, 0x6a02, 0x69fe, 0x69fa, 0x69fd, 0x0840, 0x6b37,\n  0x6b49, 0x6b4b, 0x6b46, 0x6b47, 0x6bb3, 0x6bb2,\n  /* 0x5e */\n  0x6bb0, 0x6bb7, 0x6c11, 0x6ccc, 0x6cdf, 0x6cd3, 0x6cd5, 0x6cdb,\n  0x6cc5, 0x6cc8, 0x6cc9, 0x6ce2, 0x6cca, 0x6cd1, 0x6cd2, 0x6cdd,\n  0x6f6c, 0x6f73, 0x7021, 0x6ff0, 0x701f, 0x703b, 0x7022, 0x7023,\n  0x6fe8, 0x6fdd, 0x093f, 0x701b, 0x6fed, 0xca0e, 0x6ff2, 0x0946,\n  0x6fdc, 0x6fe9, 0x701d, 0x6fda, 0x6fe6, 0x7313, 0x7315, 0x7316,\n  0x733c, 0x730b, 0x731c, 0x733a, 0x733d, 0x739a, 0x731d, 0x7309,\n  0x7308, 0x733b, 0x7522, 0x7526, 0x7525, 0x7524, 0x369b, 0x758f,\n  0x7590, 0x75e6, 0x75e3, 0x75e5, 0x7611, 0xca25, 0x76ae, 0x76be,\n  0x76b4, 0x76b3, 0x76af, 0x7691, 0x76c2, 0x76b6, 0x76b2, 0x7857,\n  0x783b, 0x7858, 0x7851, 0x7841, 0x7839, 0x0a8f, 0x7859, 0x7845,\n  0x7861, 0x78e8, 0x79fa, 0x79ea, 0x79ef, 0x79f2, 0x79f0, 0x7b08,\n  0x7b70, 0x7b6a, 0x7b73, 0x7b68, 0x7bc8, 0x7bf2,\n  /* 0x5f */\n  0x3e7b, 0x7cae, 0x7cab, 0x7cb5, 0x7caf, 0x7cb2, 0x7cb6, 0x7cb0,\n  0x7d1e, 0x7e03, 0x7e06, 0x7e1f, 0x0bac, 0x7e0f, 0x7e02, 0x7e19,\n  0x7e18, 0x7e22, 0x7e15, 0x7e07, 0x7e0d, 0x7e24, 0x7e0c, 0x7e1e,\n  0x7f89, 0x7f8a, 0x800a, 0x800b, 0x8007, 0x8004, 0x8009, 0x8084,\n  0x8083, 0x8218, 0x8214, 0x8205, 0x8216, 0x820e, 0x8211, 0x8208,\n  0x820b, 0x8215, 0x8085, 0x8237, 0x822a, 0x820d, 0x820f, 0x837e,\n  0x8376, 0x8377, 0x83ec, 0x84fc, 0x8508, 0x84ff, 0x8503, 0x8510,\n  0x8505, 0x8506, 0x84fa, 0x86c7, 0x86c0, 0x86c3, 0x86a7, 0x86a8,\n  0x86ab, 0x86c1, 0x86aa, 0x86c8, 0x8743, 0x8802, 0x880e, 0x8801,\n  0x87fe, 0x8803, 0x0d68, 0x8822, 0x8821, 0x8807, 0x8808, 0x880c,\n  0x89ca, 0x89bc, 0x89be, 0x89bd, 0xca5c, 0x89bb, 0x89b9, 0x0dab,\n  0x89c5, 0x8a99, 0x8b6b, 0x8b93, 0x8b94, 0x8ba9,\n  /* 0x60 */\n  0x8ba0, 0x8ba6, 0xca61, 0x8bab, 0x8b9e, 0x8b9b, 0x8b91, 0x8b99,\n  0x8cb6, 0x8cb8, 0x8c9a, 0x0e91, 0x8c98, 0x8c9b, 0x8cb3, 0x8ca2,\n  0x54aa, 0x8ca0, 0x8c9f, 0x8e5b, 0x8e70, 0x8e54, 0x8e71, 0x8e65,\n  0x8e51, 0x8e9d, 0x8e61, 0x8e5a, 0x8e74, 0x8e4c, 0x8e4b, 0x8e5e,\n  0x8e58, 0x8e53, 0x8e52, 0x8f3b, 0x8f39, 0x8fd6, 0x8fe7, 0x8fd7,\n  0x8fd8, 0x8fd9, 0x8fda, 0x8fdb, 0x8fdc, 0x8fe0, 0x8fe4, 0x8fdd,\n  0x8ff5, 0x8ff1, 0x9098, 0x909d, 0x9099, 0x9150, 0x9149, 0x27e4,\n  0x9162, 0x91d7, 0x9201, 0x91f7, 0xca7d, 0x928c, 0x929c, 0x2888,\n  0x931f, 0x931e, 0x943d, 0x943f, 0x9411, 0x9459, 0x943e, 0x9458,\n  0x9500, 0x949e, 0x94b6, 0x94aa, 0x94af, 0x94ac, 0x1030, 0x94c0,\n  0x94a9, 0x3e10, 0x95ee, 0x9677, 0x9679, 0x967a, 0x967d, 0x967f,\n  0x9683, 0x9678, 0x967e, 0x96e4, 0x96e6, 0x96e5,\n  /* 0x61 */\n  0x105d, 0x974e, 0x9759, 0x1075, 0xca8e, 0x974f, 0x974a, 0x97e3,\n  0x97de, 0x97e2, 0x9974, 0x99ac, 0x9961, 0x9962, 0x9976, 0x997a,\n  0x9979, 0x9960, 0x9a64, 0x9b81, 0x9adf, 0x9a84, 0x9a8a, 0x9a92,\n  0x9a79, 0x9ade, 0x9a98, 0x9a6c, 0x9ae1, 0xcaa5, 0x9a7c, 0x9a72,\n  0x9a81, 0x9ae0, 0x9a65, 0x10ff, 0x9a6a, 0x9a97, 0x9aaa, 0x9ad3,\n  0x9aab, 0x9a6e, 0x9aac, 0x9a76, 0x9a7b, 0x9aad, 0xcaa6, 0x9a94,\n  0x9ad7, 0x9a70, 0x9ad5, 0x9af1, 0x9a7a, 0x9a68, 0x9a96, 0x110b,\n  0x9a73, 0x9aae, 0x9add, 0x9ada, 0x9aaf, 0x9ab0, 0x9adb, 0x9a62,\n  0x9af8, 0x9cc2, 0x9cc7, 0x9cc8, 0x9cc5, 0x9cc3, 0x9cc6, 0x9dde,\n  0x11c8, 0x9e11, 0x9e15, 0x9e28, 0x9e21, 0x9e2d, 0x9e51, 0x9e2b,\n  0x9e16, 0x9e24, 0x9e35, 0x9e1f, 0x9e12, 0x9e10, 0x9e80, 0x9e3b,\n  0x9e29, 0x9e2a, 0x9e1b, 0x9e18, 0x9e20, 0x9e3f,\n  /* 0x62 */\n  0x9e1c, 0x9e26, 0x9e0b, 0x9fbe, 0x9fc4, 0x9fbd, 0x9ffa, 0x9ffb,\n  0xa0b1, 0xa0b2, 0xa0b0, 0xa0b9, 0xa0a6, 0xa0bd, 0xa0b6, 0xa0b8,\n  0xa0b4, 0xa0b3, 0xa0a7, 0xa0ae, 0xa0bc, 0xa1f2, 0xa1f3, 0xa1f4,\n  0xa23b, 0xa240, 0xa246, 0xa2f0, 0xa2ee, 0xa2e8, 0xa2f1, 0xa2eb,\n  0xa2ef, 0xa3fc, 0xa420, 0xa409, 0xa406, 0xa403, 0xcacf, 0xa419,\n  0xa424, 0xa41b, 0xa41d, 0xa3fd, 0xa41e, 0xa3f4, 0xa401, 0xa408,\n  0xa405, 0xa423, 0xa3ff, 0xa5ea, 0xa64d, 0xa64e, 0xa656, 0xa657,\n  0xa651, 0xa655, 0xa654, 0xa6cb, 0xa6d4, 0xa6d1, 0xa6cf, 0xa6d2,\n  0xa6ca, 0xa6d6, 0xa78b, 0xa788, 0xa785, 0xa789, 0x4c9b, 0xa7bb,\n  0xa78c, 0x1374, 0xa799, 0xa78a, 0xa8ec, 0xa8ef, 0xa8f9, 0xa909,\n  0xa8f8, 0xa8f3, 0xa900, 0xa91d, 0x13ac, 0xa8fd, 0xaa48, 0xaa5c,\n  0xaa55, 0xaa5e, 0xaa49, 0xaa63, 0xaa60, 0xaa53,\n  /* 0x63 */\n  0xaa62, 0xaa40, 0xab49, 0xab4a, 0xab4c, 0xab4d, 0xac0a, 0xac06,\n  0xac2f, 0xac21, 0xac07, 0xac09, 0xac02, 0xac16, 0xac03, 0xac0b,\n  0xac0f, 0xae60, 0xae68, 0xae5e, 0xae5d, 0xae63, 0xae5f, 0xae64,\n  0xae78, 0xae61, 0xae69, 0xae65, 0xafda, 0xafe6, 0xafdb, 0xafdc,\n  0xb039, 0xb057, 0xb055, 0xb065, 0xb061, 0xb054, 0xb145, 0xb141,\n  0xb13e, 0xb137, 0xb212, 0xb213, 0xb22c, 0xb296, 0xcae9, 0xb29c,\n  0xb29d, 0xb285, 0xcae8, 0xb29f, 0xb2a3, 0xb382, 0xb383, 0xcaee,\n  0xb41d, 0xb414, 0xb41f, 0xb420, 0xb547, 0xb580, 0xb5c9, 0xb5f9,\n  0xb606, 0xb5f0, 0xb5f8, 0xb5ef, 0xb5fd, 0xb5f1, 0xb5fe, 0xb6b8,\n  0xb6c0, 0xb6c3, 0xb6b5, 0xb6b6, 0xb6c9, 0xcaf3, 0xb6bd, 0xb6ba,\n  0xb6bf, 0xb6b3, 0xb6c6, 0xb6b2, 0xb6bc, 0xb6b7, 0xb6b9, 0xb6c8,\n  0xb7b5, 0xb7b3, 0x1616, 0xb7ac, 0xb7a9, 0xb7ad,\n  /* 0x64 */\n  0xb911, 0xb90d, 0xb916, 0xb989, 0xb97c, 0xb98b, 0xb97b, 0xb988,\n  0xb984, 0xba9d, 0xba98, 0xbb88, 0xbb86, 0xbb82, 0xbb8b, 0xcaff,\n  0xbb71, 0xbb72, 0xbb81, 0xbb8c, 0xbb80, 0xbb89, 0xbcbb, 0xbcc1,\n  0xbcbe, 0xcb01, 0xbcbd, 0xbdc1, 0xbdb4, 0xbdb7, 0xbdc8, 0x173b,\n  0xbdd3, 0xbdd0, 0xbdb0, 0xbdca, 0xbdcd, 0xbe15, 0xbe19, 0xbe17,\n  0xbe3f, 0xbe40, 0xbe44, 0xbe7c, 0xbe78, 0xbe79, 0xbe88, 0xcb06,\n  0xbe89, 0xbe7d, 0xbf23, 0xbf24, 0xbf26, 0xbf22, 0xbf27, 0xbf1f,\n  0xbfc9, 0xbfc3, 0xc00a, 0xc00b, 0xc004, 0x17ef, 0xc003, 0xc001,\n  0xc009, 0xc10f, 0xc12e, 0xc12d, 0xc191, 0xc199, 0xc19e, 0xc190,\n  0xc194, 0xc19d, 0xc198, 0xc19b, 0xc19c, 0xc19a, 0xc254, 0xc39d,\n  0xc39f, 0xc3a3, 0xc3a4, 0xc3a5, 0xc602, 0xc717, 0xc71b, 0xc719,\n  0xc7d1, 0x4737,\n};\n\nstatic const ucs4_t cns11643_6_2uni_upages[204] = {\n  0x03400, 0x03500, 0x03600, 0x03700, 0x03800, 0x03900, 0x03a00, 0x03b00,\n  0x03c00, 0x03d00, 0x03e00, 0x03f00, 0x04000, 0x04100, 0x04200, 0x04300,\n  0x04400, 0x04500, 0x04600, 0x04700, 0x04800, 0x04900, 0x04a00, 0x04b00,\n  0x05100, 0x05300, 0x05500, 0x05a00, 0x05b00, 0x05d00, 0x05e00, 0x06100,\n  0x06500, 0x06800, 0x06e00, 0x07200, 0x07300, 0x07800, 0x07a00, 0x07f00,\n  0x08000, 0x08100, 0x08200, 0x08800, 0x08900, 0x08a00, 0x08d00, 0x08f00,\n  0x09200, 0x09700, 0x0ff00, 0x20000, 0x20100, 0x20200, 0x20300, 0x20400,\n  0x20500, 0x20600, 0x20700, 0x20800, 0x20900, 0x20a00, 0x20b00, 0x20c00,\n  0x20d00, 0x20e00, 0x20f00, 0x21100, 0x21200, 0x21300, 0x21400, 0x21500,\n  0x21600, 0x21700, 0x21800, 0x21900, 0x21a00, 0x21b00, 0x21c00, 0x21d00,\n  0x21e00, 0x21f00, 0x22000, 0x22100, 0x22200, 0x22300, 0x22400, 0x22500,\n  0x22600, 0x22700, 0x22800, 0x22900, 0x22a00, 0x22b00, 0x22c00, 0x22d00,\n  0x22e00, 0x22f00, 0x23000, 0x23100, 0x23200, 0x23300, 0x23400, 0x23500,\n  0x23600, 0x23800, 0x23900, 0x23a00, 0x23b00, 0x23c00, 0x23d00, 0x23e00,\n  0x23f00, 0x24100, 0x24200, 0x24300, 0x24400, 0x24500, 0x24600, 0x24700,\n  0x24800, 0x24900, 0x24a00, 0x24b00, 0x24c00, 0x24d00, 0x24e00, 0x24f00,\n  0x25000, 0x25100, 0x25200, 0x25300, 0x25400, 0x25500, 0x25600, 0x25700,\n  0x25800, 0x25900, 0x25a00, 0x25b00, 0x25e00, 0x25f00, 0x26000, 0x26200,\n  0x26300, 0x26400, 0x26500, 0x26600, 0x26700, 0x26800, 0x26900, 0x26a00,\n  0x26b00, 0x26c00, 0x26d00, 0x26e00, 0x27100, 0x27200, 0x27300, 0x27500,\n  0x27600, 0x27700, 0x27800, 0x27900, 0x27a00, 0x27b00, 0x27c00, 0x27d00,\n  0x27e00, 0x27f00, 0x28000, 0x28200, 0x28300, 0x28400, 0x28500, 0x28600,\n  0x28700, 0x28800, 0x28900, 0x28c00, 0x28d00, 0x28e00, 0x28f00, 0x29000,\n  0x29100, 0x29200, 0x29300, 0x29400, 0x29500, 0x29600, 0x29800, 0x29a00,\n  0x29b00, 0x29c00, 0x29d00, 0x29f00, 0x2a000, 0x2a200, 0x2a300, 0x2a400,\n  0x2a500, 0x2f800, 0x2f900, 0x2fa00,\n};\n\nstatic int\ncns11643_6_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x21 && c1 <= 0x64)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        ucs4_t wc = 0xfffd;\n        unsigned short swc;\n        {\n          if (i < 6388)\n            swc = cns11643_6_2uni_page21[i],\n            wc = cns11643_6_2uni_upages[swc>>8] | (swc & 0xff);\n        }\n        if (wc != 0xfffd) {\n          *pwc = wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643_7.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992 plane 7\n */\n\nstatic const unsigned short cns11643_7_2uni_page21[6539] = {\n  /* 0x21 */\n  0x2b55, 0x2c82, 0x2c89, 0x2c87, 0x2dbe, 0x2dbd, 0x2dca, 0x2dd4,\n  0x2dbc, 0x2dc4, 0x2dc1, 0x2dc2, 0x2dd7, 0x2d70, 0x2dba, 0x2de3,\n  0x2dbb, 0x2eb1, 0x2eb6, 0x2eb0, 0x2f6c, 0x300d, 0x3007, 0x31f1,\n  0x31f5, 0x31ed, 0x31ef, 0x31eb, 0x31ec, 0x31ee, 0x3207, 0x33c4,\n  0x3408, 0x34b3, 0x34ad, 0x34b0, 0x3511, 0x2c8a, 0x3683, 0x367a,\n  0x3682, 0x3668, 0x3671, 0x36b0, 0x36af, 0x01f6, 0x366c, 0x366f,\n  0x3662, 0x3665, 0x3681, 0x367f, 0x3664, 0x3673, 0x366e, 0x3667,\n  0x3674, 0x367d, 0x3678, 0x3685, 0x36aa, 0x3688, 0x36a6, 0xc34e,\n  0x368a, 0x3684, 0x1a55, 0x3924, 0x3922, 0x3923, 0x3a32, 0x3a5b,\n  0x3a4f, 0x0267, 0x3a26, 0x3a3e, 0x3a42, 0x3a47, 0x3a22, 0x309b,\n  0x3a4a, 0x3a1f, 0x3a49, 0x3a2b, 0x3a33, 0xc358, 0x3a2a, 0x3a28,\n  0x3b3d, 0x3b3c, 0x3bbf, 0x3c79, 0x3c80, 0x3c7c,\n  /* 0x22 */\n  0x3c7a, 0x3c78, 0x3d82, 0x3d5c, 0x3d5a, 0x3d4b, 0x3d7c, 0x3d7f,\n  0x3d1f, 0x3d89, 0x3d8b, 0x3d57, 0x3d7e, 0x3d7d, 0x3d53, 0x3f9f,\n  0x3fbc, 0x3fa5, 0x3f86, 0x3fdc, 0x3fa4, 0x3fb6, 0x3fa2, 0x3fb4,\n  0x4048, 0x4046, 0x40a7, 0x4114, 0x4112, 0x4111, 0x41e1, 0x41d0,\n  0x4226, 0x4228, 0x4229, 0x432f, 0x430d, 0x4325, 0x4314, 0x433c,\n  0x430b, 0x4311, 0x4330, 0x4318, 0x4319, 0x4336, 0x4317, 0x4310,\n  0x4315, 0x4403, 0x4429, 0x444c, 0x453f, 0x453e, 0x4534, 0x4542,\n  0x4535, 0x31f3, 0x45cd, 0x45d1, 0x45d2, 0x46ad, 0x46ba, 0x46c1,\n  0x46bb, 0x46b4, 0x46bc, 0x476c, 0x4792, 0x4821, 0x4824, 0x5f19,\n  0x48ad, 0x48ae, 0x48ab, 0x48ac, 0x4970, 0x4976, 0x4971, 0x4977,\n  0x1c7f, 0x4aec, 0x4b1c, 0x4afb, 0x4aee, 0x4be2, 0x4afd, 0x4b1e,\n  0x4b3b, 0x4b4a, 0xc3ae, 0x0592, 0x4b7d, 0x4b56,\n  /* 0x23 */\n  0x4b44, 0x4b4b, 0x4cfa, 0x4ce8, 0x4cf8, 0x4cff, 0x4cf7, 0x4cf6,\n  0x4cfe, 0x4d07, 0x4d5d, 0x4ed4, 0xc3c3, 0x4ec8, 0x4ec5, 0xc3c0,\n  0x4ec9, 0x4f4d, 0x4f20, 0x4f36, 0x4f35, 0x4f88, 0x4f25, 0x4f21,\n  0x4f26, 0x0645, 0x4f3f, 0x4f3b, 0x4f24, 0x4f43, 0x4f4e, 0x4f4f,\n  0x4f44, 0x4f40, 0x4f41, 0x4f39, 0x4f2b, 0x50dd, 0x50de, 0x51cd,\n  0x51cb, 0x51db, 0x51d8, 0x51d9, 0x51d2, 0x51ca, 0x51d1, 0x51d4,\n  0x51f9, 0x51d0, 0x525e, 0x525d, 0x528a, 0x5314, 0x5483, 0x5484,\n  0x549b, 0x5482, 0x547d, 0x547c, 0x5499, 0x547e, 0x549a, 0x5495,\n  0x547b, 0x5486, 0x5548, 0x5592, 0x56b2, 0x5742, 0x5772, 0x5715,\n  0x5730, 0x5743, 0x575b, 0x571d, 0x5773, 0x572d, 0x07c9, 0x5721,\n  0x571c, 0xc3ea, 0x5729, 0x571e, 0x5733, 0x5a10, 0x5a0e, 0xc3f1,\n  0x5a0d, 0x5a11, 0x5a12, 0x5a17, 0x5a09, 0x5a0f,\n  /* 0x24 */\n  0x5a98, 0x5a94, 0x5a96, 0x5a99, 0x5a95, 0x5a97, 0x5b50, 0x5b52,\n  0x5b4d, 0x5b57, 0x5b53, 0x5b56, 0x5bb8, 0x5c12, 0x5cf1, 0x5cf0,\n  0x5cee, 0x5cef, 0x5ce5, 0x5ceb, 0x5ce7, 0x5cf2, 0x5ce6, 0x5cf7,\n  0x5d09, 0x5d6b, 0x5d6a, 0x5e79, 0x5ecd, 0x5eef, 0x5ee4, 0x5ee3,\n  0x5f6c, 0x5f67, 0x5f62, 0x5f58, 0x5f69, 0x5fab, 0x5f57, 0x5fad,\n  0x5f54, 0x5fae, 0x5f76, 0x5f49, 0x5f45, 0x5f4f, 0xc40f, 0x5f50,\n  0x5f7d, 0x5f44, 0x5f66, 0x5f48, 0x5fa3, 0x5f51, 0x5f53, 0xc410,\n  0x5f60, 0x5f47, 0x5f5e, 0x5f85, 0x5fac, 0x5f6d, 0x5f75, 0x5fa8,\n  0x0955, 0x5f43, 0x5f4e, 0x5f5c, 0x5f56, 0x5f6e, 0x5f63, 0x5f6a,\n  0x6256, 0x6212, 0x625c, 0x6258, 0x6255, 0x627e, 0x62a8, 0x6211,\n  0x6259, 0x625a, 0x6267, 0x6254, 0x625b, 0x62f0, 0x6429, 0x642c,\n  0x642a, 0x6427, 0x6467, 0x6468, 0x6493, 0x6495,\n  /* 0x25 */\n  0x649a, 0x64ee, 0x64f1, 0x64ed, 0x64e9, 0x65cb, 0x65df, 0x65db,\n  0x673c, 0x674e, 0x676c, 0x677b, 0x677c, 0x6783, 0x676b, 0x6766,\n  0x6763, 0x67a0, 0x6785, 0x6768, 0x67a2, 0x68ec, 0x0ae8, 0x68e7,\n  0x6910, 0x6918, 0x693a, 0x691a, 0x6938, 0x6941, 0x691b, 0x6914,\n  0x691c, 0x691d, 0x6a12, 0x6a0d, 0x6a07, 0x6a7e, 0x6a7f, 0x34b9,\n  0x6a80, 0x6a7a, 0x6af3, 0x6bb9, 0x6bbb, 0x6bba, 0x6bbd, 0x6bb7,\n  0x6bbf, 0x6c21, 0x6d3a, 0x6d3d, 0x6d36, 0x6d49, 0x6d81, 0x0bb6,\n  0x6d3f, 0x6d4d, 0x6d3e, 0x0bbd, 0x6d30, 0x6d4f, 0x6e37, 0x6e98,\n  0x6e99, 0x6f11, 0x6f0d, 0x6f88, 0x6f8a, 0x701c, 0x7055, 0x7056,\n  0x7062, 0x7057, 0x7042, 0x7010, 0x704d, 0x705a, 0x7066, 0x7046,\n  0x4b7e, 0x704f, 0x80f9, 0x7187, 0x7184, 0x71f4, 0x71f5, 0x71f2,\n  0x71f7, 0x7345, 0xc450, 0x7349, 0x7335, 0x72fd,\n  /* 0x26 */\n  0x7330, 0x7343, 0x7346, 0x0cd6, 0x7333, 0x74c6, 0xc456, 0x74d4,\n  0x8dd8, 0x74e0, 0x36a7, 0x7544, 0x2d98, 0x7654, 0x763e, 0x7635,\n  0x763a, 0x0d71, 0x7634, 0x7639, 0x7646, 0x765a, 0x765b, 0x763c,\n  0x77dc, 0x77d6, 0x77d0, 0xc45e, 0x78ac, 0xc45d, 0x78a5, 0x79f4,\n  0x7a24, 0x79e0, 0x79fd, 0x79f2, 0x79fc, 0x7a02, 0x79f1, 0x79ff,\n  0x79d2, 0x79d8, 0x79d3, 0x79f9, 0xc463, 0x79ed, 0x79f7, 0x79f0,\n  0x79d7, 0x7a09, 0x79f5, 0x7cc2, 0x7cc5, 0x7ccf, 0x0e98, 0x7cc1,\n  0x7cc6, 0x7cd4, 0x7cce, 0x7e9b, 0x7e99, 0x7e8f, 0x7eb7, 0x7e82,\n  0x7e93, 0x7eb4, 0x7ec1, 0x7e90, 0x7e9a, 0x7e94, 0x7e9c, 0x7eb5,\n  0xc46f, 0xc46e, 0x7e9f, 0x7e8e, 0x7e9e, 0x803c, 0x8047, 0x8041,\n  0x80eb, 0x80ec, 0x80ed, 0x80ee, 0x80df, 0x80f2, 0x810d, 0x810e,\n  0x2c86, 0x81a9, 0x81a4, 0x81a5, 0x825f, 0x825a,\n  /* 0x27 */\n  0x8266, 0x8268, 0x826a, 0x8264, 0x8265, 0x82c1, 0x82d8, 0xc47b,\n  0x82d9, 0x8309, 0x83aa, 0x83a3, 0x83b9, 0x77e2, 0x83a5, 0x83ab,\n  0x8420, 0x8589, 0x858b, 0x85db, 0x85e4, 0x85ef, 0x85e2, 0x85e9,\n  0x85f0, 0x85f3, 0x85dd, 0x861e, 0x871d, 0x8746, 0x877c, 0x8780,\n  0x8781, 0x8782, 0x8787, 0x8788, 0x878a, 0x878c, 0x87e7, 0x87eb,\n  0x87ea, 0x8868, 0x886b, 0x8869, 0x8866, 0x886a, 0x8865, 0x88e5,\n  0x88e4, 0x88e6, 0x8918, 0x8a24, 0x8a48, 0x8a2f, 0x8a7e, 0x8989,\n  0x8a1e, 0x8a49, 0x8a26, 0x8a09, 0x8a34, 0x8a2d, 0x8a4a, 0x8a15,\n  0xc4a9, 0x8a33, 0x8a28, 0x8a27, 0x8a20, 0x8a2b, 0x8a29, 0x8a6a,\n  0x8a0b, 0x8a0e, 0x8a1c, 0x89ff, 0xc4aa, 0x8a35, 0x8a11, 0x8a4b,\n  0x8a4c, 0x8a1f, 0x8a0f, 0x8a39, 0x8a68, 0x8a1d, 0x8a08, 0x8a0c,\n  0x8a0d, 0x8a62, 0x8aaf, 0x8a32, 0x8a2c, 0x8a64,\n  /* 0x28 */\n  0x8a04, 0x8a16, 0x8a4d, 0x8a07, 0x8aae, 0x8dd4, 0x8dd1, 0x8dd5,\n  0x8dd0, 0x8f71, 0x8f5d, 0x8f5b, 0x8f7a, 0xc4bd, 0x8f7f, 0x8f79,\n  0x8f67, 0x8f9e, 0x8f94, 0x8f64, 0x8f5e, 0x8f81, 0x8f5a, 0x8f57,\n  0x8f7c, 0x8f98, 0x8f66, 0x8f7e, 0x8f82, 0x8f68, 0x8f5f, 0x8f63,\n  0x8f97, 0x11cd, 0x8f53, 0x8f7b, 0x8f7d, 0x8f78, 0x9006, 0x91c0,\n  0x91c2, 0x91c3, 0x92dc, 0x92e6, 0x92ec, 0x92f2, 0x92e8, 0x92eb,\n  0x92ea, 0x92e5, 0x92e0, 0x92d0, 0x92d8, 0x92d5, 0x92d3, 0x92e4,\n  0x92f3, 0x92db, 0x932f, 0x93f9, 0x945d, 0x945b, 0x944c, 0x9458,\n  0x9460, 0x9453, 0x9450, 0x9507, 0x9508, 0x94f4, 0x94f6, 0x9504,\n  0x94fd, 0x9505, 0x9628, 0x9656, 0x9642, 0x965c, 0x963d, 0x962f,\n  0x962b, 0x9658, 0x9661, 0x962c, 0x9651, 0x9650, 0x963c, 0x9636,\n  0x12f6, 0x9660, 0x965b, 0x962e, 0x9640, 0x965f,\n  /* 0x29 */\n  0x9626, 0x962d, 0x965e, 0x963b, 0x97ef, 0x97f3, 0x97ee, 0x97ed,\n  0x985a, 0x9862, 0x985b, 0x985f, 0x985e, 0x9864, 0x98e0, 0x98e1,\n  0x98e5, 0x99a5, 0x999b, 0x999f, 0x999c, 0x137a, 0x99aa, 0x99a4,\n  0x99a3, 0x9a67, 0x9b26, 0x9b1a, 0x13b8, 0x9b1c, 0x9b15, 0x9b1b,\n  0x9b18, 0x9b1e, 0x9b25, 0xc4dc, 0x9c7b, 0x9c75, 0x9c93, 0x9c8f,\n  0x9c7c, 0x9c9b, 0x9c88, 0x9c91, 0x9c7e, 0x1401, 0x9c86, 0x9e5b,\n  0x9e54, 0x9f35, 0x9f40, 0x9f37, 0x9f29, 0x9f26, 0x9f23, 0x9f30,\n  0x9f20, 0x9f28, 0x9f32, 0x9f2a, 0x9f31, 0x9f24, 0x9f41, 0x9f42,\n  0x9f43, 0x9f25, 0x9f38, 0xa01c, 0xa01d, 0xa01e, 0xa0f6, 0xa1a5,\n  0xa189, 0xa19d, 0xa18a, 0xa187, 0xa1ab, 0xa186, 0xa19e, 0xa193,\n  0xa1a1, 0xa188, 0xa1a3, 0xa19f, 0xa1a0, 0xa2ff, 0xa300, 0xa302,\n  0xa2f8, 0xa2f7, 0xa301, 0xa387, 0xa389, 0xa376,\n  /* 0x2a */\n  0xa36e, 0xa377, 0xa382, 0xa385, 0xa383, 0xa384, 0xa457, 0xa44b,\n  0xa456, 0xa45d, 0xa460, 0xa44d, 0xa455, 0xa454, 0xa453, 0xa450,\n  0xa463, 0xa462, 0xa517, 0xa516, 0xa52d, 0xa5d9, 0xa5bf, 0x152f,\n  0xa5b2, 0xa5ac, 0xa5b0, 0xa5cf, 0xa5b8, 0x1531, 0xa5d3, 0xa5b1,\n  0xa5af, 0xa5ce, 0xa5b4, 0xa5b7, 0xa5d5, 0x159c, 0xa938, 0xa928,\n  0xa93f, 0xa940, 0xa941, 0xa933, 0xa92b, 0xa92e, 0xab11, 0xab18,\n  0xab17, 0xab19, 0xab16, 0x15e6, 0xab0d, 0xab26, 0xab79, 0xabd8,\n  0xabf3, 0xabd7, 0xabcc, 0xabcf, 0xabcb, 0xabd1, 0xabce, 0xabd4,\n  0xabd5, 0xabd3, 0xabd6, 0xabcd, 0xabda, 0xabd2, 0xabde, 0xaccc,\n  0xacb8, 0xacb7, 0xacc2, 0xacc3, 0xadfa, 0xadf9, 0xae1f, 0xae1d,\n  0x6282, 0xaea6, 0xae90, 0xae9e, 0xae98, 0xae93, 0xae92, 0xaea5,\n  0xae95, 0xafa9, 0xafa8, 0xafaa, 0xafab, 0xafac,\n  /* 0x2b */\n  0xb01f, 0xb022, 0xb0aa, 0xb096, 0xb091, 0xb0ab, 0xb0a2, 0xb0a4,\n  0xb09d, 0xb097, 0xb07d, 0xb09f, 0xb09c, 0xb099, 0xb0a6, 0xb092,\n  0xb0a7, 0xb1c9, 0xb1c8, 0xb1c7, 0xb1cb, 0xb274, 0xb2c9, 0x1738,\n  0xb2d2, 0xb2db, 0xb2eb, 0xb2e9, 0xb2ef, 0xb2ee, 0xb2f9, 0xb2de,\n  0xb416, 0xb445, 0xb47f, 0xb498, 0xb49f, 0xb486, 0xb490, 0xb49a,\n  0xb49d, 0xb48d, 0xb49c, 0xb4a0, 0xb4a7, 0xb48f, 0xb641, 0xb635,\n  0xb637, 0xb630, 0xb63a, 0xb636, 0xc508, 0xb6ca, 0xb712, 0xb715,\n  0xb722, 0xb713, 0xb718, 0xb721, 0xb810, 0xb820, 0xb82f, 0xb8a5,\n  0xb8a3, 0xb8b6, 0xb8ab, 0xb968, 0xb967, 0xb96f, 0xb977, 0xb964,\n  0xb978, 0x183a, 0xb976, 0xb96e, 0x18b1, 0xbbd0, 0xbbb3, 0xbbcb,\n  0xbbd6, 0xbbb1, 0xbbb4, 0xbbd7, 0xbbc6, 0xbbba, 0xbbd1, 0xbbd2,\n  0xbbb5, 0xbbc4, 0xbbcc, 0xbbbb, 0xbbb2, 0xbe5b,\n  /* 0x2c */\n  0xbe5a, 0xbe59, 0xbe99, 0xbe94, 0xbe96, 0xbe93, 0xbe91, 0xbe8f,\n  0xbe98, 0xbf0c, 0xbf0a, 0xbf0e, 0xbf12, 0xbf11, 0xbf0b, 0xbf9a,\n  0x1947, 0xbfb4, 0x1951, 0xc01c, 0xc020, 0xc021, 0xc0d3, 0xc0d2,\n  0xc138, 0x2afd, 0x6bcf, 0x2c1d, 0x2c92, 0x2c8f, 0x2c8c, 0x2dea,\n  0x2eb9, 0x2f6e, 0x2fa0, 0xaddd, 0x3012, 0x3017, 0x306d, 0x3205,\n  0x31fb, 0x31fd, 0x3206, 0x3200, 0x31ff, 0x31fe, 0x32b6, 0x3305,\n  0x3307, 0x34bc, 0x34bb, 0x358b, 0x3587, 0x97fb, 0x36e7, 0x36e6,\n  0x36e2, 0xa1d3, 0x36d9, 0x36ca, 0x3712, 0x3710, 0x36dc, 0x36d0,\n  0x368b, 0x3713, 0x4d10, 0x36da, 0xc34f, 0x36fd, 0x36e5, 0x36cc,\n  0x3739, 0x36c7, 0x36d8, 0x3a60, 0x3a64, 0x3a86, 0x3a5e, 0x3a66,\n  0x3a5f, 0x3a77, 0x3a82, 0x3a96, 0x3b3e, 0x3b79, 0x3b7a, 0x3c88,\n  0x3c89, 0x3c8c, 0x62e0, 0x3c7b, 0x3c86, 0x3d94,\n  /* 0x2d */\n  0x3d97, 0x3db7, 0x3db5, 0x3db8, 0x3d93, 0x3db2, 0x3db4, 0x3d99,\n  0x3dc3, 0x3d9d, 0x3d9b, 0x3da3, 0x0347, 0x3e9f, 0x3e9e, 0x3ea3,\n  0x3ea0, 0x3ea1, 0x3fc5, 0x3fc6, 0x3fbe, 0x3fc4, 0x3fbf, 0x404c,\n  0x404a, 0x40b1, 0x4115, 0x4117, 0x4110, 0x4118, 0x41e0, 0x41df,\n  0x4227, 0x4343, 0x4348, 0x431d, 0x4350, 0x4358, 0x4347, 0x4354,\n  0x4353, 0x4340, 0x4355, 0x0417, 0x435a, 0x4870, 0x455b, 0x454d,\n  0x4556, 0x454f, 0xc387, 0x4559, 0xc388, 0x4554, 0x4553, 0x4550,\n  0x46b3, 0x476e, 0x04a3, 0x476f, 0x4793, 0x4829, 0x4825, 0x4828,\n  0x486f, 0x54b8, 0xc397, 0x48b3, 0x4979, 0x497e, 0x497c, 0x4983,\n  0xc3ac, 0x4b00, 0x4b34, 0x4b65, 0x4b36, 0x4ba7, 0x4b59, 0x4b58,\n  0x4b31, 0x4b62, 0x4b38, 0x4b73, 0x4b3e, 0x4b55, 0x4b54, 0x4b95,\n  0xc3ad, 0x4ba5, 0x4b94, 0x4b9a, 0x4b9b, 0x4b99,\n  /* 0x2e */\n  0x4b9f, 0x4b53, 0x4d12, 0x4d0a, 0x4d09, 0x4d0c, 0x4d0b, 0x4d0e,\n  0x4d0d, 0x4d08, 0x4f38, 0x4f3a, 0x4f37, 0x4f3d, 0x4f2d, 0x4f82,\n  0x4f95, 0x4f87, 0x4f9d, 0x4fb5, 0x4f81, 0x4fc7, 0x4f9b, 0x4f98,\n  0x4f94, 0x4f86, 0x4f90, 0x4f34, 0x4f8e, 0x4f85, 0x4fa6, 0x4f96,\n  0x51ea, 0x51df, 0x54bd, 0x51f7, 0x51eb, 0x51e0, 0x51e8, 0x51e1,\n  0x51e9, 0x51ee, 0x51e5, 0x51ec, 0x5263, 0x52c6, 0x52c2, 0x52c1,\n  0x52c0, 0x52c3, 0x5318, 0x54ae, 0x54a3, 0x54c5, 0x54a0, 0x54b4,\n  0x54a5, 0x071e, 0x54a4, 0x54a8, 0x54a6, 0x57a8, 0x578d, 0x5782,\n  0x579e, 0x5789, 0x5783, 0x5791, 0x57a6, 0x579a, 0x5790, 0x5785,\n  0x577d, 0xc3ec, 0x579b, 0x57a5, 0x57f0, 0x5796, 0x5788, 0x57d6,\n  0x57d8, 0x5786, 0x57a4, 0x5797, 0x5a1c, 0x5a19, 0x5a9e, 0x5a9f,\n  0x5a9d, 0x5a9c, 0x5b5d, 0x5b5e, 0x5b73, 0x5b63,\n  /* 0x2f */\n  0x5bbe, 0x5bc1, 0x5bbc, 0x5bbf, 0x5bbb, 0x5bbd, 0x5c13, 0x5c14,\n  0x5cf8, 0x5cfa, 0x5d06, 0x5cfe, 0x5d51, 0x600b, 0x5ff1, 0x5fa9,\n  0x5fd5, 0x5fdc, 0x5fcb, 0x5ff2, 0x605f, 0x5fdb, 0x5fd6, 0x5fd9,\n  0x5fd1, 0x5fcf, 0x5fd8, 0x5fe0, 0x5fd4, 0x5ff3, 0x6005, 0x5fce,\n  0x5ff4, 0xc412, 0x5fda, 0x600e, 0x6006, 0x5fd7, 0x5fcd, 0x6007,\n  0x5fe1, 0x6008, 0x62be, 0x62ef, 0x62d9, 0x62da, 0x1fd7, 0x62a0,\n  0x62df, 0x629e, 0x62bf, 0x62af, 0x62a7, 0x62aa, 0x62f4, 0x62ae,\n  0x62b5, 0x62b8, 0x62db, 0x62c0, 0x62b7, 0x62a2, 0x62dd, 0x62a1,\n  0x62a5, 0x62b4, 0x62a6, 0x62ab, 0x62ac, 0x629f, 0x62b1, 0x62fc,\n  0x642e, 0x6430, 0x6499, 0x64f8, 0x64f6, 0x65f4, 0x65eb, 0x65e1,\n  0x65e4, 0x6775, 0x6769, 0x0a9a, 0x6799, 0x679e, 0x6794, 0x6793,\n  0x6791, 0x6919, 0x6917, 0x6949, 0x6947, 0x6948,\n  /* 0x30 */\n  0x6952, 0x6940, 0x6963, 0x6946, 0x695f, 0x6a0e, 0x6a85, 0x6a87,\n  0x6acb, 0x6acc, 0x6ac9, 0x6bcb, 0x41e7, 0x6c20, 0x6d5f, 0x6d60,\n  0x6d6a, 0x6d76, 0x6d73, 0x6d71, 0x6d66, 0x0bc2, 0x6d6b, 0x6d79,\n  0x6d7b, 0x6e3c, 0x6e9e, 0x6e9c, 0x6f1c, 0x6f1e, 0x6f21, 0x6f96,\n  0x6fa1, 0x6fb6, 0x6fa0, 0x6f94, 0x6f97, 0x7081, 0x7086, 0x70c0,\n  0x708a, 0xc44b, 0x7085, 0x7095, 0x7049, 0x7082, 0x7084, 0x4b78,\n  0x7090, 0x70b1, 0x71fe, 0x71fb, 0x7350, 0x7356, 0x735a, 0x734c,\n  0x0cdc, 0x7357, 0x74e1, 0x74d9, 0x74db, 0x74f4, 0x7545, 0x7547,\n  0x7674, 0x766b, 0x7668, 0x7669, 0x7679, 0xc45b, 0x7680, 0x7681,\n  0x7661, 0x7670, 0x766f, 0x7673, 0x765d, 0x77fa, 0x0db3, 0x77f3,\n  0x780a, 0x7817, 0xc45f, 0x78b0, 0x7a3e, 0x7a46, 0x7a4f, 0x7a44,\n  0x7a69, 0x7a33, 0x7a2f, 0x7a4e, 0x7a3a, 0x7a2b,\n  /* 0x31 */\n  0x7aa9, 0x7a50, 0x7a45, 0x7a37, 0x7a25, 0x7a2c, 0x7a3f, 0x7a34,\n  0x7a29, 0x7a1e, 0x7a3d, 0x7ced, 0xc466, 0x7cf3, 0x7cea, 0x7ceb,\n  0x7ecc, 0x7ece, 0x7ed0, 0x7ee3, 0x7ee0, 0x7ed1, 0x7edc, 0x7edd,\n  0x7ef0, 0x7edb, 0x7ee5, 0x7ef1, 0x7ec9, 0x7ee8, 0x7ee7, 0x7ec8,\n  0x7ede, 0x7ecd, 0x7ec5, 0x7ec6, 0x7ee4, 0x7ec3, 0x80fb, 0x80fc,\n  0x80fe, 0x8103, 0x8100, 0x80fd, 0x8105, 0x8113, 0x81a7, 0x81b4,\n  0x8270, 0x8274, 0x8271, 0x8275, 0x827d, 0x8273, 0x82c4, 0x82c3,\n  0x82de, 0x82dd, 0x8311, 0x830f, 0x8310, 0x83c3, 0x83c2, 0x83ca,\n  0x83c1, 0x8423, 0x85b1, 0x8624, 0x8611, 0x8625, 0x860a, 0x861f,\n  0x8620, 0x8614, 0x8628, 0x8603, 0x8612, 0x860b, 0x8617, 0x4d11,\n  0x8749, 0x8789, 0x8790, 0x878f, 0x8796, 0x8795, 0x8793, 0x87ed,\n  0x87f0, 0x62de, 0x8885, 0x8877, 0x887a, 0x8884,\n  /* 0x32 */\n  0x8879, 0x887d, 0x887b, 0x88ed, 0x88ec, 0x89f6, 0x899b, 0x8a9d,\n  0x8b11, 0x8ac4, 0x8ac8, 0x8adf, 0x8abf, 0x8ab3, 0x8aba, 0x8b10,\n  0x8b06, 0x8a88, 0x8a9a, 0x8ae0, 0x8acc, 0x8ab5, 0x8ae1, 0x8abc,\n  0x8ac6, 0x8b0b, 0x8aa4, 0x8a95, 0x8aa3, 0x8ae2, 0x8acd, 0x8ae3,\n  0x8aab, 0x8acb, 0x8a8f, 0xc4ab, 0x8aa9, 0x8b24, 0x8ae4, 0x8b12,\n  0x8ae5, 0x8b67, 0x8aaa, 0x8aa0, 0x8ae6, 0x8ac1, 0x8ae7, 0x8b0d,\n  0x8a86, 0x8ab0, 0x8a8b, 0x8ae8, 0x8ac9, 0x8b19, 0x8ac0, 0x8b0c,\n  0x8ae9, 0x8aea, 0x8ded, 0x8de3, 0x8de4, 0x8de8, 0x8dd2, 0x8de2,\n  0x2466, 0x8fcf, 0x8fd1, 0x8fc3, 0x8fc9, 0x8fea, 0x8fb4, 0x8fdc,\n  0x8fbd, 0x8fe6, 0x8fc8, 0x8fec, 0x8fb2, 0x8fa9, 0x8fd3, 0x8fc0,\n  0x8fe9, 0x8fd5, 0x11d9, 0x8fc5, 0x11dd, 0x8fcb, 0x8fd0, 0x8fd2,\n  0x8fe4, 0x8fe8, 0x8fcd, 0x8fb6, 0x8faa, 0x8fd4,\n  /* 0x33 */\n  0xa049, 0x8fc1, 0x8fdd, 0x8fce, 0x91c9, 0x91ca, 0x92fd, 0x92d9,\n  0x92ff, 0x9304, 0x92fa, 0x9306, 0x9315, 0x9311, 0x9307, 0x930b,\n  0x93fc, 0x93fd, 0x946d, 0x9465, 0x9514, 0x9513, 0x950c, 0x950b,\n  0x9518, 0x9522, 0x967d, 0x966f, 0x9675, 0x967b, 0x9680, 0x967f,\n  0x9696, 0x966d, 0x966b, 0x9686, 0x9673, 0x9662, 0x9677, 0x9681,\n  0x9669, 0x9682, 0x9697, 0x9684, 0x12fc, 0x9678, 0xc4d0, 0x967a,\n  0x966a, 0x9665, 0x967e, 0x9694, 0x97c2, 0x97c1, 0x97f9, 0x9871,\n  0x986b, 0x986d, 0x986f, 0x986e, 0x98f2, 0x98e8, 0x98ef, 0x98e9,\n  0x98ea, 0x98ed, 0x98f3, 0x98e6, 0x99c9, 0x99b4, 0x99b3, 0x99b9,\n  0x99ca, 0x99b1, 0x99b6, 0x99c7, 0x99c4, 0x99b7, 0x9a6f, 0x9b33,\n  0x9b32, 0x9b1f, 0xc4d9, 0x9b2b, 0x9b30, 0x9b36, 0x9b42, 0x9b41,\n  0xc4d8, 0x9ca5, 0x9cab, 0x9ca9, 0x9cb3, 0x9ca7,\n  /* 0x34 */\n  0x9ca0, 0x9cd2, 0x9ca8, 0x9cb6, 0x9cac, 0x9cae, 0x9ce6, 0x9e65,\n  0x9f47, 0x9f63, 0x9f4d, 0x9f5f, 0x9f4b, 0x9f60, 0x9f49, 0x9f53,\n  0xc4df, 0x263a, 0x9f57, 0x9f4e, 0x9f52, 0x9f54, 0xa020, 0xa022,\n  0xa1c1, 0xa1d7, 0xa1d5, 0xa1c4, 0xa1d0, 0xa1bb, 0xa1e2, 0xa1cb,\n  0xa1b8, 0xa1bf, 0xa1d8, 0xa1c0, 0xa1ba, 0xa1b4, 0xa1bc, 0xa1d4,\n  0xa1ed, 0xa1c2, 0xa1d9, 0xa1cc, 0xa32f, 0xa323, 0xa396, 0xa38d,\n  0xa39e, 0xa399, 0xa483, 0x1507, 0xa46a, 0xa469, 0xa475, 0xa46c,\n  0xa480, 0xa46e, 0xa481, 0xa477, 0xa476, 0xa473, 0xa470, 0xa484,\n  0xa519, 0xa5f2, 0x273d, 0xa5ec, 0xa5eb, 0xa5f6, 0xa5ef, 0xa5f4,\n  0xa5ee, 0xa5f3, 0xa5ed, 0xa89b, 0xa898, 0xa894, 0x3a7a, 0xa89a,\n  0xc4f0, 0xa94c, 0x15a8, 0xa957, 0xa951, 0xa962, 0xa952, 0xa95c,\n  0xa953, 0xc4ef, 0xaa85, 0xab2d, 0xab3e, 0xab30,\n  /* 0x35 */\n  0xab7d, 0xabe6, 0xabf6, 0xabe4, 0xabe9, 0xabec, 0xabf2, 0xabe8,\n  0xabe3, 0xabeb, 0xabf0, 0xabea, 0xabe7, 0xabfd, 0xabe5, 0xabee,\n  0xabf5, 0xabf9, 0xabf1, 0xabf4, 0xc4f4, 0xac11, 0xacde, 0xacd8,\n  0xacdd, 0xacdb, 0xacd3, 0xace1, 0xadde, 0xadfc, 0xae28, 0xaeb7,\n  0xaeb8, 0xaec7, 0xaeb2, 0xaea9, 0xaeb9, 0xaebc, 0xaeb3, 0xaed1,\n  0xafb0, 0xafb1, 0xafb6, 0xb004, 0xb02c, 0xb0c1, 0xb09e, 0xb0ba,\n  0x16ca, 0xb0d1, 0xb0d3, 0xb0d4, 0xb0d5, 0xb0c5, 0xb0b6, 0xb0b2,\n  0xb0b5, 0xb0c3, 0xb0b9, 0xb0c6, 0xb1d6, 0xb1e0, 0xb1db, 0xb1d7,\n  0xb1dd, 0xb315, 0xb30c, 0xb30f, 0xb30e, 0xb2fe, 0xb304, 0xb30b,\n  0xb302, 0xb2ff, 0xb308, 0xb310, 0xb317, 0xb313, 0xb306, 0xb309,\n  0xb424, 0xb426, 0xb425, 0xb448, 0xb4b5, 0xb4d2, 0xb4d5, 0xb4c4,\n  0xb4af, 0xb4ad, 0xb4c1, 0xb4c0, 0xb4cc, 0xb4cd,\n  /* 0x36 */\n  0xb4c3, 0xb4c8, 0xb4c5, 0xb4ba, 0xb4d0, 0xb4c2, 0xb4ce, 0x178d,\n  0xb643, 0xb642, 0xb640, 0xb631, 0xb6cf, 0xb6ce, 0xb730, 0xb734,\n  0xb732, 0xb743, 0xb73c, 0xb811, 0xb835, 0xb834, 0xb837, 0xb831,\n  0xb8bf, 0xb8bc, 0xb8c2, 0xb8c9, 0xb983, 0xb98b, 0xb9a0, 0xb98d,\n  0xb98c, 0xb99a, 0xb98a, 0xb991, 0xbbf1, 0xbc0f, 0xbc01, 0xbc07,\n  0xbc0c, 0x18c0, 0xbbdc, 0xbbee, 0xbbf7, 0xbbf2, 0xbbf8, 0xbbeb,\n  0x18ca, 0xbbe6, 0xbbed, 0xbbe9, 0xbc08, 0xbc00, 0xbbe5, 0xbbfc,\n  0xbe61, 0xbe5e, 0xbe5f, 0x1925, 0xbe9b, 0xbf16, 0xbf15, 0xbf20,\n  0xbf14, 0xbf1a, 0xbf17, 0xbf9c, 0x194a, 0xbff1, 0x1953, 0xbff0,\n  0xc028, 0xc024, 0xc02a, 0xc02b, 0xc0d5, 0xc104, 0xc105, 0xc191,\n  0xc192, 0xc2a6, 0x2c09, 0x2e22, 0x2e1a, 0x2e0e, 0x2e1b, 0x2e08,\n  0x6fb3, 0xc31c, 0x309d, 0x3212, 0x321e, 0x32bb,\n  /* 0x37 */\n  0x32bf, 0x32bc, 0x3308, 0x3309, 0x3363, 0x33c8, 0x5828, 0x358e,\n  0x358d, 0x3743, 0x374d, 0x376d, 0x3742, 0x3752, 0x3751, 0x3769,\n  0x3750, 0x3756, 0x376c, 0x3744, 0x3745, 0x376b, 0x0205, 0x3768,\n  0x3757, 0x392e, 0x3931, 0x392d, 0x3a8b, 0x3ab2, 0x3a8d, 0x3aa3,\n  0x3aa4, 0x3a90, 0x3a89, 0x3a8e, 0x3a92, 0x3b7b, 0x3c90, 0x3c8f,\n  0x3de9, 0x3dcd, 0x3dc5, 0x3dd0, 0x3dc9, 0x3dd1, 0x3dc7, 0x3dd2,\n  0x3d5f, 0x3de1, 0x3dcc, 0x3dc6, 0x3de4, 0x3ea9, 0x3fd3, 0x3fda,\n  0x3fd2, 0x3fdb, 0x404d, 0x404e, 0x411c, 0x41e8, 0x436c, 0x435f,\n  0x4366, 0x4364, 0x4378, 0x4365, 0x436d, 0x4361, 0x437a, 0x4407,\n  0x4566, 0x4568, 0x4562, 0x46d3, 0x46d4, 0x46d1, 0x46dc, 0x4773,\n  0x4772, 0x482d, 0x482c, 0x482f, 0x4872, 0x48b4, 0x4989, 0x4bcd,\n  0x4ba6, 0x4ba2, 0x4ba0, 0x4b46, 0x4ba1, 0x8657,\n  /* 0x38 */\n  0x4ba3, 0x4bb1, 0x4bdb, 0x4bf6, 0x4bdc, 0x4bd6, 0x4d13, 0x4f9c,\n  0x4f97, 0x4fd8, 0x4fe4, 0x4fd4, 0x4fe5, 0x4fdb, 0x4fd0, 0x4fda,\n  0x4fcc, 0x4fdc, 0x4fed, 0x4fd3, 0x4fd1, 0x4fce, 0x4fd9, 0x4fdd,\n  0xc3c6, 0x50e6, 0x50e5, 0x50e9, 0x51ff, 0x51fe, 0x520e, 0x528c,\n  0x52ca, 0x52cb, 0x531a, 0x54d7, 0x54cf, 0x54d0, 0x54c9, 0x54cc,\n  0x54d3, 0x55a4, 0x55a3, 0x5781, 0x5826, 0x57f3, 0x5827, 0x57f2,\n  0x57ff, 0x57f5, 0x57fc, 0x580e, 0x07f0, 0x57f6, 0x5800, 0x5823,\n  0x5805, 0x5825, 0x5808, 0x5850, 0x5a25, 0x5a20, 0x5a23, 0x5a21,\n  0x5aa1, 0x5b69, 0x5b6c, 0x5b68, 0x5b6b, 0x5bcc, 0x5bcd, 0x5d10,\n  0x5d0d, 0x5d0a, 0x5d16, 0x5d14, 0x5d52, 0x6028, 0x602e, 0x602c,\n  0x604d, 0x6049, 0x6031, 0x6030, 0x6033, 0x602d, 0x6036, 0x603e,\n  0x602f, 0x6027, 0x6034, 0x604c, 0x62fe, 0x6312,\n  /* 0x39 */\n  0x631f, 0x6317, 0x62f5, 0x6315, 0x62f7, 0x0a02, 0x437d, 0x62fa,\n  0x62f9, 0x634b, 0x649c, 0x649d, 0x0a23, 0x65f0, 0x65f6, 0x65ef,\n  0x679d, 0x679a, 0x67a7, 0x67af, 0x67aa, 0x6964, 0x6986, 0x6975,\n  0x6970, 0x6984, 0x696b, 0x6985, 0x696c, 0x6a17, 0x6a94, 0x6a93,\n  0x6bd2, 0x6bd7, 0x6bd4, 0x6da6, 0x6da7, 0x6d9c, 0x6d8b, 0x6d8d,\n  0x6d98, 0x6db9, 0x6d9b, 0x6d9d, 0x6d99, 0x6da8, 0x6d91, 0x6d87,\n  0x6d9a, 0x6ea6, 0x6f1f, 0x6fa7, 0x6fb1, 0x6fb2, 0x6fb7, 0x70d0,\n  0x70b3, 0x70b5, 0x70c4, 0x70c3, 0x70bc, 0x70b2, 0x70ba, 0x70bb,\n  0x70c2, 0x70cd, 0x70be, 0x70b7, 0x718f, 0x7203, 0x7204, 0x7371,\n  0x7377, 0x7374, 0x738b, 0x737a, 0xc451, 0x738c, 0x7373, 0x74ff,\n  0x74fb, 0x74fd, 0x74f0, 0x74f3, 0x74fc, 0x74f2, 0x7692, 0x769e,\n  0x76ae, 0x7696, 0x7814, 0x7812, 0x7813, 0x7816,\n  /* 0x3a */\n  0x780f, 0x78b6, 0x78bd, 0x7a8c, 0x7aae, 0x7aac, 0x7aab, 0x7a99,\n  0x7a92, 0x7abb, 0x7a9e, 0x7a7e, 0x7aaf, 0x7abc, 0x7a98, 0x7d01,\n  0x7d09, 0x7d06, 0xc467, 0x7d07, 0x7d08, 0x7ecf, 0x7f0e, 0x7f32,\n  0x0f15, 0x7f12, 0x7f16, 0x7f17, 0x7f1b, 0x7f15, 0x7f31, 0x7f18,\n  0x7f1a, 0x7f10, 0x7f0a, 0x7f09, 0x804f, 0xc473, 0x810f, 0x8110,\n  0xc475, 0x8128, 0x8111, 0x8116, 0x8117, 0x8102, 0x81bb, 0x81ba,\n  0x81c3, 0x81bc, 0x828a, 0x8284, 0x8286, 0x82e0, 0x8317, 0x8318,\n  0x831e, 0x8315, 0x83d3, 0x83da, 0x83d9, 0x85e6, 0x85f4, 0x85e1,\n  0x8669, 0x8640, 0x8658, 0x866c, 0x864d, 0x8721, 0x8799, 0x87f1,\n  0x5f68, 0x8886, 0x8b5b, 0x8b5c, 0x8b77, 0x8b2c, 0xc4ad, 0x8b58,\n  0x8b64, 0x8b61, 0x8b48, 0x8b97, 0x8b59, 0x8b29, 0x8b62, 0x8b2e,\n  0x8b68, 0x8b90, 0x8b3a, 0x8b3d, 0x8b5e, 0x8b46,\n  /* 0x3b */\n  0x8b69, 0x8b65, 0x8b3e, 0x8b49, 0x8b56, 0x8be1, 0x8b78, 0x8b79,\n  0x8b66, 0x8b4a, 0x8b35, 0x8b7a, 0x8b92, 0x8b60, 0x8b36, 0x8b51,\n  0x8b42, 0x115d, 0x8b3f, 0x8b7b, 0x8b5d, 0x8b94, 0x8b6a, 0xc4b5,\n  0x8df2, 0x8fbb, 0x901b, 0x901a, 0x9033, 0x9017, 0x900a, 0x9015,\n  0x9012, 0x9001, 0x902d, 0x8ffd, 0x9023, 0x9005, 0x9011, 0x9000,\n  0x901c, 0x9035, 0x902e, 0x9036, 0x34bf, 0x902f, 0x900c, 0x9009,\n  0x9031, 0x8ffc, 0x900f, 0x9018, 0x9002, 0x9200, 0x931f, 0x9337,\n  0x125a, 0x9338, 0x932b, 0x932e, 0x9321, 0x9330, 0x9329, 0x9331,\n  0xc4c9, 0x9301, 0x932c, 0x9322, 0x93ff, 0x9477, 0x9467, 0x947f,\n  0x947d, 0x947b, 0x947e, 0x951e, 0x951c, 0x9521, 0x9526, 0x9527,\n  0x9529, 0x952c, 0x951d, 0x952b, 0x96bf, 0x96a4, 0x96aa, 0x96ae,\n  0x969f, 0x96d0, 0x96b1, 0x96ad, 0x969b, 0x96b2,\n  /* 0x3c */\n  0x96a9, 0x96b3, 0x96b4, 0x96ba, 0x96a5, 0x96b7, 0x96ac, 0x96cb,\n  0x96cf, 0x97c6, 0x9801, 0x97ff, 0x97fd, 0x9877, 0x9878, 0x9876,\n  0x98f7, 0x99cc, 0x1385, 0x99d4, 0x99d7, 0x99d5, 0x99d6, 0x99d3,\n  0x9b5d, 0x9b55, 0x9ce0, 0x9d48, 0x9cee, 0x9cdb, 0x9ce7, 0x9cd6,\n  0x9ce5, 0x9ce1, 0x9cdd, 0x9ce2, 0x9e70, 0x9e66, 0x9e6f, 0x9e6e,\n  0x9f81, 0x9f69, 0x9f6e, 0x9f6d, 0x9f6c, 0x9f84, 0x9f85, 0x9f71,\n  0x9f73, 0x9f6a, 0x9f6f, 0x9f7b, 0xa16a, 0xa17c, 0xa17d, 0xa181,\n  0xa1fa, 0xa205, 0xa1eb, 0xa1fb, 0xa1e9, 0xa1ef, 0xa1fc, 0xa1e7,\n  0xc4e1, 0xa1ee, 0xa1fd, 0xa332, 0xa3a7, 0xa3b5, 0xa3b1, 0xa3b9,\n  0xa3a8, 0xa3b3, 0xc4e6, 0xa48a, 0xa491, 0xa48d, 0xa499, 0x150b,\n  0xa49a, 0xa49b, 0xa492, 0xa48f, 0xa4ab, 0x6bdb, 0x1539, 0xa675,\n  0xa631, 0xa638, 0x1537, 0xa635, 0xa669, 0xa63b,\n  /* 0x3d */\n  0xa63d, 0xa66c, 0xa679, 0xa63c, 0xa63e, 0xa897, 0xa8a5, 0xa8a2,\n  0xa89d, 0xa8a1, 0xa968, 0xa96f, 0xa96d, 0xa972, 0xa975, 0xa977,\n  0xa979, 0xaab5, 0xaaea, 0xaaab, 0xab43, 0xab41, 0xab42, 0xac09,\n  0xac08, 0xac06, 0xac01, 0xac03, 0xac00, 0xac04, 0xac0a, 0xac0e,\n  0xac0d, 0xac07, 0xac0f, 0xac14, 0xac02, 0xac15, 0xac0c, 0xac10,\n  0xac05, 0xacfd, 0xacff, 0xad04, 0xad00, 0xad09, 0xae2b, 0xc4f7,\n  0xae31, 0xaedb, 0xaec5, 0xaed3, 0xaece, 0x166b, 0xaec9, 0xaebf,\n  0xaecb, 0xaec0, 0xaed0, 0xaed4, 0xafc1, 0xafb9, 0xafbb, 0xafc3,\n  0xafc9, 0xb007, 0xb02d, 0xb0f8, 0xb0e1, 0xb0fa, 0xb0ef, 0xb0fd,\n  0x16cd, 0xb0eb, 0xb0f1, 0xb0ed, 0xb0fe, 0xb1f8, 0xb203, 0xb1ee,\n  0xb1e8, 0xb201, 0xb2ec, 0xb322, 0xb314, 0xb334, 0xb32f, 0xb339,\n  0xb341, 0xb33c, 0xb349, 0xb358, 0xb33a, 0xb342,\n  /* 0x3e */\n  0xb33f, 0xb422, 0xb423, 0xb44a, 0xb4dc, 0xb4d9, 0xb4db, 0xb4e2,\n  0xc507, 0xb4df, 0xb4e0, 0xb4d7, 0xb64f, 0xb646, 0xb653, 0xb655,\n  0xb64e, 0xb64a, 0xb64c, 0xb663, 0xb751, 0xb753, 0xb758, 0xb74d,\n  0xb75a, 0xb749, 0xb75d, 0xb812, 0xb83c, 0xb8d1, 0xb8df, 0xb8d6,\n  0xb8d8, 0xb8e0, 0xb8d9, 0xb9b1, 0xb9ac, 0xb9aa, 0xb9ee, 0xb9bd,\n  0x184d, 0xb9c3, 0xb9a8, 0xb9ae, 0xb9ab, 0xbc1d, 0xbc27, 0xbc38,\n  0xbc12, 0xbc48, 0xbc2b, 0xbc16, 0xbc19, 0xbc3d, 0xbc23, 0xbc2a,\n  0xbe64, 0xbead, 0xbeac, 0xc514, 0xbeb1, 0xbeaf, 0xbf2c, 0xbf24,\n  0xbf25, 0xbf28, 0xbff9, 0xbff7, 0xbffd, 0xbffe, 0xc039, 0xc033,\n  0xc0d7, 0xc0d8, 0xc0e4, 0x3aa1, 0xc10e, 0xc13b, 0xc144, 0xc142,\n  0xc194, 0xc193, 0xc1d5, 0xc2a7, 0x2e31, 0x2e23, 0x2e28, 0x2e27,\n  0x2ec6, 0x2fa3, 0x3021, 0x321b, 0x0110, 0x32c1,\n  /* 0x3f */\n  0x32c3, 0x332a, 0x3369, 0x3427, 0x37b6, 0x37a7, 0x37a4, 0x37a6,\n  0x3790, 0x379e, 0x3794, 0x37a8, 0x37a5, 0x37a2, 0x3791, 0x027b,\n  0x3abc, 0x3abd, 0x3ab4, 0x3ab0, 0x3ae4, 0x3b45, 0x3b4b, 0x3b7e,\n  0x3b7f, 0x3b7d, 0x3bc3, 0x3dfc, 0x3df7, 0x3df0, 0x3ded, 0x3df1,\n  0x3df8, 0x3fe9, 0x41eb, 0x041d, 0x4390, 0x438d, 0x4386, 0x4391,\n  0x438a, 0x4408, 0x4450, 0x46ea, 0x46e6, 0x46e2, 0x46e7, 0x46ed,\n  0x46e1, 0x4834, 0x4876, 0x4875, 0x4873, 0x48b5, 0x4990, 0x4992,\n  0x4be1, 0x4bdf, 0x4bd5, 0x4bf2, 0x4bfe, 0x4c13, 0x4c2e, 0x4d19,\n  0x5008, 0x1df5, 0x5005, 0x5009, 0x5006, 0x5003, 0x4ffd, 0x4ffc,\n  0x5002, 0x5042, 0x521a, 0x5211, 0x5215, 0x5216, 0x52cc, 0x52cf,\n  0x52d0, 0x5322, 0x531e, 0x5321, 0x54e5, 0x0727, 0x5554, 0x54ef,\n  0x5553, 0x5551, 0x55ad, 0x5867, 0x5868, 0x58a4,\n  /* 0x40 */\n  0x5877, 0x5889, 0x5844, 0x588b, 0x5879, 0x585b, 0x5843, 0x5857,\n  0x584a, 0x587c, 0x5846, 0x587b, 0x5856, 0x5aa8, 0x5b76, 0x5b72,\n  0x5bd6, 0x5bd8, 0x5bd1, 0x5d22, 0x5d20, 0x5d23, 0x5d1e, 0x5d6e,\n  0x60a3, 0x6077, 0x60a6, 0x606d, 0x60a2, 0x607c, 0x6084, 0x6068,\n  0x6074, 0x6086, 0x60a5, 0x607b, 0x607a, 0x6069, 0x6072, 0x6076,\n  0x634a, 0x6337, 0x632a, 0x632d, 0x6346, 0x6328, 0x6326, 0x6342,\n  0x632c, 0x6338, 0x632b, 0x6333, 0x6345, 0x6439, 0x65f9, 0x65fa,\n  0x67b8, 0x67b7, 0x67bb, 0x67b9, 0x67b4, 0x696f, 0x6987, 0x698f,\n  0x69a2, 0x69a3, 0xc431, 0x6a9b, 0x6a9d, 0x6ace, 0x0bcf, 0x6dbd,\n  0x6dbf, 0x6d92, 0x0bcd, 0x6def, 0x6dc9, 0x6ea4, 0x6ea8, 0x6eaa,\n  0x6f28, 0x6f24, 0x6f25, 0x6f26, 0x6fa9, 0x6fba, 0x6fbe, 0x6fbc,\n  0x6fc0, 0x70f0, 0x70df, 0x70e0, 0x70ed, 0x70db,\n  /* 0x41 */\n  0x70fb, 0x70b9, 0x70da, 0x70eb, 0x70ec, 0x739a, 0x739f, 0x739b,\n  0x7397, 0x73a1, 0x750f, 0x7505, 0x7548, 0x0d82, 0x76bc, 0x76ba,\n  0x78bf, 0x7b01, 0x7ae8, 0x7aef, 0x7ae4, 0x7ae6, 0x7b02, 0x7aeb,\n  0x7ae0, 0x7aed, 0x7ad9, 0xc464, 0x7b14, 0x7aee, 0x0e52, 0x7b13,\n  0x7af9, 0x7af8, 0x7d25, 0xc469, 0x7d19, 0x7d20, 0x7d43, 0x7d3f,\n  0x7f45, 0x7f4c, 0x7f49, 0x7f4f, 0x7f41, 0x7f3e, 0x7f4d, 0x7f52,\n  0x7f4a, 0x7f4e, 0x7f73, 0x7f42, 0x7f51, 0x7f55, 0x7f50, 0x7f6c,\n  0x2afd, 0x7f6a, 0x7f53, 0x7f68, 0x8055, 0x8056, 0x811c, 0x811d,\n  0x2280, 0x811e, 0x8123, 0x811f, 0x81e1, 0x81cd, 0x81cb, 0x81cc,\n  0x81c8, 0x81c9, 0x829b, 0x8294, 0x8292, 0x8296, 0x8293, 0x8295,\n  0x828f, 0x831d, 0x8322, 0x8321, 0x83e9, 0x83ef, 0x83e0, 0x83e6,\n  0x83e4, 0x8629, 0x862c, 0x8676, 0x8683, 0x8678,\n  /* 0x42 */\n  0x863c, 0x6343, 0x867a, 0x1051, 0x86f2, 0x879e, 0x879b, 0x879a,\n  0x87f6, 0x87f5, 0x88a5, 0x8893, 0x88a4, 0x8a82, 0x8ac7, 0x8bb7,\n  0x8c1d, 0x8be2, 0x8bd7, 0x8be3, 0x8be4, 0x8bbc, 0x8bd3, 0x115a,\n  0x8b5a, 0x8bd2, 0x8b2d, 0xc4af, 0x8bc4, 0x8bd0, 0x8be5, 0x8c05,\n  0x8c07, 0x8be6, 0x8c1b, 0x8be7, 0x8bd8, 0x8bbe, 0x8c17, 0x8bb4,\n  0x8bd9, 0x8be8, 0x8bad, 0x8baf, 0x8bc8, 0x8be9, 0x8bea, 0x8dfe,\n  0x8dfb, 0x8e00, 0x9072, 0x9070, 0x9046, 0x9059, 0x905e, 0x9048,\n  0x904f, 0x9071, 0x9060, 0x905f, 0x906e, 0x9073, 0xc4c0, 0xc4bf,\n  0x9047, 0x906d, 0x906f, 0x9081, 0x906c, 0x9078, 0x9083, 0x9049,\n  0x9068, 0x9074, 0x9063, 0x906a, 0x8685, 0x9065, 0x9062, 0x90c8,\n  0x91d0, 0x91d4, 0x91d1, 0x9203, 0x9342, 0x9363, 0x9356, 0x935b,\n  0x9355, 0x9350, 0x932d, 0x9344, 0x9348, 0x9345,\n  /* 0x43 */\n  0x9382, 0x1265, 0x9362, 0x9485, 0x948d, 0x9536, 0x952f, 0x9531,\n  0x9537, 0x96a7, 0x96d9, 0x96f0, 0x96f2, 0x96fd, 0x96e8, 0x96eb,\n  0x96ee, 0x96e0, 0x96e9, 0x96ed, 0x96d6, 0x96f8, 0x96d4, 0x96df,\n  0x96e7, 0x96d8, 0x96e3, 0x96ef, 0x970f, 0x97ca, 0x3b46, 0x9805,\n  0x980c, 0x980d, 0x987f, 0x9880, 0x9881, 0x9901, 0x9903, 0x99f2,\n  0x99e2, 0x99e3, 0x99de, 0x99e9, 0x99e8, 0x99e0, 0x9a01, 0x99f5,\n  0x99e4, 0x2501, 0x9a77, 0x9b74, 0x9b6f, 0x9b62, 0x9b61, 0x9b6d,\n  0x9b73, 0x9b6a, 0x9b69, 0x9d12, 0x9d2d, 0x9d14, 0x9d0f, 0x9d29,\n  0x9d16, 0x9d03, 0x9d46, 0x9d5c, 0x9d11, 0x9d06, 0x9cdc, 0x9d2b,\n  0x9d2a, 0x9d2c, 0x9d27, 0x9e7a, 0x9f9c, 0x9f99, 0x9f95, 0x9f8b,\n  0x9f98, 0x9f96, 0xa032, 0xa1a4, 0xa1aa, 0xa21b, 0x14af, 0xa20d,\n  0xa21c, 0xa20a, 0xa220, 0xa208, 0xa21a, 0xa213,\n  /* 0x44 */\n  0xa211, 0xa35d, 0xa35f, 0xa35e, 0xa360, 0xa3bb, 0xa3bc, 0xa3c1,\n  0xa3c0, 0xa3c8, 0xa3ce, 0xa4a7, 0xa4b2, 0xa4b6, 0xa4a5, 0xa4ba,\n  0xa4b5, 0xa4ad, 0xa4a4, 0xa4d3, 0xa4b0, 0xa4b1, 0xa51d, 0xa68d,\n  0x1541, 0xa691, 0xa6b6, 0xa6b7, 0xa6bd, 0xa6bc, 0xa696, 0xa694,\n  0xa6a0, 0xa8a8, 0xa8a6, 0xa984, 0xa996, 0xa988, 0xa99a, 0xaad1,\n  0xaacf, 0xab50, 0xab51, 0xab4e, 0xab80, 0xab81, 0xac1b, 0xac17,\n  0xac20, 0xac19, 0xac1a, 0xac21, 0xac1e, 0xac18, 0xac1d, 0x1629,\n  0xad2d, 0xad24, 0xad27, 0xad2e, 0xad25, 0xad1c, 0xad19, 0x162a,\n  0xad23, 0xad1f, 0xad1a, 0xad2b, 0xad1e, 0xade0, 0xae33, 0xaee6,\n  0xaefc, 0xaee5, 0xaef8, 0xaef6, 0xaeea, 0xaef2, 0xaeed, 0xaeeb,\n  0xaef0, 0xaef1, 0xafc6, 0xafc8, 0xafce, 0xafc5, 0x1696, 0xafcb,\n  0xb113, 0xb114, 0xb107, 0xb10c, 0xb21a, 0x1712,\n  /* 0x45 */\n  0xb217, 0xb206, 0xb216, 0xb207, 0xb210, 0xb209, 0xb219, 0xb215,\n  0xb36e, 0xb33b, 0xb33e, 0xb36c, 0xb365, 0xb364, 0xb359, 0xb37c,\n  0xb370, 0xb379, 0xb42c, 0xb452, 0xb451, 0xb44c, 0xb500, 0xb510,\n  0xb513, 0xb4ff, 0xb4fe, 0xb4ed, 0xb65a, 0xb658, 0xb65c, 0xb6da,\n  0xb778, 0xb75e, 0xb767, 0xb764, 0xb813, 0xb823, 0xb841, 0xb83f,\n  0xb840, 0xb8ed, 0xb8e3, 0xb8ea, 0xb8f0, 0xb8e6, 0xb8e9, 0xb8f1,\n  0xb8ee, 0xb9d4, 0xb9d1, 0xb9dc, 0xb9ec, 0xbc69, 0xbc6d, 0xbc57,\n  0xbc66, 0xbcf9, 0xbc4a, 0xbc60, 0xbc56, 0xbc59, 0xbc4c, 0xbc6a,\n  0xbc62, 0xbc63, 0xbc70, 0xbc5f, 0xc50d, 0xbc64, 0xbc5d, 0xbc68,\n  0xbc9f, 0xbeba, 0xbeb8, 0xbebc, 0xbeb9, 0xbeb4, 0xbf3b, 0xbf2d,\n  0xbf38, 0xbf2f, 0xbf32, 0xc041, 0xc0cb, 0xc0de, 0xc0dd, 0xc0da,\n  0xc0dc, 0xc110, 0xc14f, 0xc149, 0xc198, 0xc196,\n  /* 0x46 */\n  0xc197, 0xc1c7, 0x2c9c, 0xc1da, 0xc1d8, 0xc2a8, 0x2c0a, 0x2c9d,\n  0x2ecb, 0x2f38, 0x2f39, 0x2fa6, 0x3223, 0x3222, 0x3221, 0x33ce,\n  0x3592, 0x3591, 0x37ec, 0x37e0, 0x37ed, 0x3808, 0x37e5, 0x37ee,\n  0x37e4, 0x37eb, 0x37e3, 0x37ea, 0x380a, 0xc359, 0x3ad1, 0x3ae3,\n  0x3ad4, 0x3ad0, 0x3ad9, 0x027e, 0x1be1, 0x3ada, 0x3ad3, 0x3b4c,\n  0x3b4d, 0x3b7c, 0x3b80, 0x3bcc, 0x3dff, 0x3e08, 0xc108, 0x3e01,\n  0xc36b, 0x3e00, 0x3fed, 0x3ff3, 0x3fee, 0x3ff1, 0x3ff0, 0x3fde,\n  0x4051, 0x4382, 0x43a9, 0x4398, 0x439d, 0x439a, 0x439e, 0x439f,\n  0x43a6, 0x43a7, 0x4409, 0x442f, 0x4571, 0x456d, 0x4572, 0x46ef,\n  0x46f0, 0x483b, 0x4839, 0x483c, 0x4838, 0x6afd, 0x483a, 0x4878,\n  0x4879, 0x4877, 0x4998, 0x499c, 0x4999, 0x499a, 0x4c11, 0x4c0a,\n  0x4bfd, 0x4c0f, 0x4c19, 0x4c03, 0x4c15, 0x4c0c,\n  /* 0x47 */\n  0x4c09, 0x4c12, 0x4c34, 0x4c2a, 0x4c08, 0x4c2d, 0x4c28, 0xc3b1,\n  0x4c2c, 0x4c26, 0x4c33, 0x05a7, 0x4d1a, 0x4d1e, 0x5007, 0x502c,\n  0x5032, 0x5028, 0x5031, 0x5029, 0x5030, 0x502a, 0x5044, 0x502e,\n  0x52d1, 0x5324, 0x54f7, 0x54f4, 0x54f3, 0x54f8, 0x58b5, 0x5896,\n  0x5898, 0x5895, 0x5891, 0x58b2, 0x589e, 0x5859, 0x58a3, 0x589a,\n  0x589b, 0x0f20, 0x7f83, 0x5bda, 0x5bdf, 0x5c16, 0x5d1f, 0x5d2d,\n  0x5d2e, 0x5d2b, 0x60b8, 0x60bb, 0x60bf, 0x60ba, 0x60d5, 0x60e3,\n  0x60c1, 0x60be, 0x60bd, 0x60b4, 0x60c2, 0x60a1, 0x6087, 0x60d7,\n  0x60ca, 0x60b5, 0x60da, 0x60d9, 0x60b3, 0x60d8, 0x6367, 0x6371,\n  0x6362, 0x635c, 0x6368, 0x6352, 0x6356, 0x3809, 0x2e42, 0x64a0,\n  0x6600, 0x65fe, 0x65ff, 0x67cb, 0xc428, 0x67ca, 0x67a9, 0x67c8,\n  0x69b4, 0x69ac, 0x69aa, 0x69a9, 0x6b0e, 0x6be9,\n  /* 0x48 */\n  0x6bed, 0x6bf2, 0x6beb, 0x6bee, 0x6de8, 0x6ddb, 0x6dd7, 0x6de3,\n  0x6de5, 0x6dee, 0x6dd5, 0x6eb3, 0x6f2d, 0x6fc1, 0x6fc3, 0x710c,\n  0x710e, 0x7107, 0x7117, 0x7109, 0x7116, 0x719a, 0x719c, 0x73b4,\n  0x73b7, 0x73b3, 0x3b4e, 0x7513, 0x7514, 0x76e6, 0x76dc, 0x76e8,\n  0x76e5, 0x782e, 0x782c, 0x782b, 0x78cd, 0x7b3d, 0x7b32, 0x7b2d,\n  0x7b45, 0x7b3e, 0x7b50, 0x7b25, 0x7b53, 0x7b23, 0x7d37, 0x7d38,\n  0x7d47, 0x7d3d, 0x7d3e, 0x7d49, 0x7d4a, 0x7d1d, 0x21e9, 0x7fa5,\n  0x7f8c, 0x7f8d, 0x7f89, 0x7f96, 0x7f85, 0x7f8f, 0x7f77, 0x7f8e,\n  0x7f82, 0x7f8a, 0x7f88, 0x7f7b, 0x7f97, 0x7f7d, 0x7f79, 0x8059,\n  0x8124, 0x812d, 0x812e, 0x812b, 0xc476, 0x81da, 0x81d8, 0x81d6,\n  0x8287, 0x82a0, 0x8328, 0x8325, 0x831f, 0x83f3, 0x83f7, 0x83f6,\n  0x862b, 0x865b, 0x8648, 0x23cb, 0x865c, 0x866d,\n  /* 0x49 */\n  0x869d, 0x8699, 0x868c, 0x8691, 0x869b, 0x869a, 0x869c, 0x8695,\n  0x868d, 0x8696, 0x86a5, 0x872a, 0x87a1, 0x87a4, 0x87ad, 0x88a9,\n  0x88ae, 0x88b0, 0x8c0d, 0x8b63, 0x8b71, 0x8c51, 0x8c54, 0x8c2a,\n  0x8c44, 0x8c55, 0x8c99, 0x8c39, 0x8c3f, 0x8c3e, 0x8c4f, 0x8c4d,\n  0x8c35, 0x8c40, 0x8c31, 0x8bd5, 0x8c2b, 0x8c33, 0x8c41, 0x8c56,\n  0x8c4c, 0x8c46, 0x8c3c, 0x8c45, 0x8c43, 0x8c3d, 0x8c70, 0x8c57,\n  0x8c38, 0x8c58, 0x1165, 0x8c37, 0x8e07, 0x8e06, 0x8e09, 0x90ab,\n  0x9090, 0x9093, 0x90bc, 0x90a9, 0x909e, 0x90bf, 0x90aa, 0x9091,\n  0x90a4, 0x909a, 0x90a7, 0x90a1, 0x909c, 0x90a2, 0x909b, 0x909f,\n  0x9094, 0x908f, 0x8ef0, 0x9092, 0x9095, 0x90a5, 0x90a6, 0x9204,\n  0x939c, 0x9379, 0x937a, 0x937e, 0x937b, 0x9371, 0x9381, 0x937f,\n  0x937c, 0x937d, 0x9375, 0x9376, 0x948e, 0x948f,\n  /* 0x4a */\n  0x953e, 0x953f, 0x9540, 0x9541, 0x1304, 0x970d, 0x9717, 0x9710,\n  0x970e, 0x96ea, 0x971d, 0x9703, 0x9722, 0x9704, 0x9700, 0x9720,\n  0x9721, 0x9723, 0x9713, 0x9709, 0x9711, 0x97cb, 0x97ce, 0x97d0,\n  0x97cc, 0x97d4, 0x3adb, 0x9809, 0x980b, 0x9885, 0x9906, 0x990d,\n  0x1364, 0x9914, 0x990f, 0x9a09, 0x9a14, 0x9a0b, 0x99fc, 0x9a04,\n  0x9a0a, 0x9a00, 0x99fd, 0x9a07, 0x9a06, 0x9a11, 0x9a79, 0x9a78,\n  0x9b88, 0x9b80, 0x9b8b, 0x9d59, 0x9d61, 0x9d75, 0x1423, 0x9d55,\n  0x9d5b, 0x9d5f, 0x9d52, 0x9d62, 0x9d72, 0x9d5d, 0x9d68, 0x9d71,\n  0x9d65, 0x9d66, 0x9d67, 0x9d76, 0x9d4c, 0x9d60, 0x9d74, 0x9d50,\n  0x9e8a, 0x9e81, 0x9e86, 0x9e7f, 0x9e80, 0x9fa5, 0x9fa7, 0x9fa8,\n  0x9fa6, 0x9faf, 0x7f95, 0x9fb1, 0xa035, 0xa039, 0xa1c3, 0xa230,\n  0xa22a, 0xa22b, 0xa22d, 0xa22e, 0xa22c, 0xa223,\n  /* 0x4b */\n  0xa221, 0xa222, 0xa36c, 0xa381, 0xa38f, 0xa380, 0xa3d0, 0xa3cd,\n  0xa3d5, 0xa3d4, 0xa4d1, 0xa4be, 0xa4cb, 0xa4ce, 0xa4bd, 0xa4d0,\n  0xa704, 0xa6d5, 0xa6d0, 0xa6d3, 0xa6fb, 0xa6d8, 0xa6d1, 0xa6fd,\n  0xa6d9, 0xa6d6, 0xa6e6, 0xa6f9, 0xa9a1, 0xa99d, 0xa99e, 0x28d9,\n  0xaaff, 0xab5f, 0xab57, 0xab60, 0xab59, 0xac2c, 0xac25, 0xac27,\n  0xac30, 0xac24, 0xac26, 0xac2d, 0xac2e, 0xac29, 0xac31, 0xad45,\n  0xad47, 0xad52, 0xad4a, 0xad50, 0xad46, 0xad4f, 0xad4e, 0xad53,\n  0xaf21, 0xaf09, 0xaf1a, 0xaf1b, 0x7115, 0xaf10, 0xc4f9, 0xaf14,\n  0xaf0e, 0xaf12, 0xaf0b, 0xafcf, 0xafd2, 0xafd0, 0xafd4, 0xafd3,\n  0xafd1, 0x3518, 0xc4fb, 0xb009, 0xb11c, 0xb127, 0xb125, 0xb11b,\n  0xb129, 0xb11f, 0xb130, 0xb124, 0xb128, 0xb119, 0xb12f, 0xb224,\n  0xb221, 0xb225, 0xb226, 0xb227, 0xb276, 0xb366,\n  /* 0x4c */\n  0xb375, 0xb369, 0xb37e, 0xb38f, 0xb374, 0x8e10, 0xb3ad, 0xb42b,\n  0xb42a, 0xb458, 0xb522, 0xb51d, 0xb52b, 0xb52c, 0xb52d, 0xb533,\n  0xb51b, 0xb527, 0xb52a, 0xb528, 0xb53b, 0xb67e, 0xb671, 0xb679,\n  0xb678, 0xb670, 0xb66d, 0xb67d, 0xb675, 0xb676, 0xb6de, 0xb766,\n  0xb783, 0xb787, 0xb77b, 0xb789, 0xb786, 0xb782, 0xb77c, 0xb781,\n  0xb843, 0xb845, 0xb8f7, 0xb8f9, 0xb8fa, 0xba05, 0xb9fe, 0xba0f,\n  0xb9ff, 0xb9fa, 0xba09, 0xba20, 0xba0c, 0xba3c, 0xba22, 0xb9f8,\n  0xba0a, 0xba08, 0xb9f7, 0xbc8e, 0xbc77, 0xbc8b, 0xbcb4, 0xbc8a,\n  0xbc9a, 0xbc79, 0xbc83, 0xbc7f, 0xbca1, 0xbc8f, 0xbca3, 0xbc81,\n  0xbc94, 0xbc7e, 0xbc82, 0xbc90, 0xbca5, 0xbcad, 0xbc9d, 0xbe67,\n  0xbe69, 0xbecb, 0xbec8, 0xbed1, 0xbf40, 0xbf4b, 0xbf49, 0xbf46,\n  0xbf3e, 0xbf43, 0xbf3f, 0xbfa5, 0xbfa7, 0xc04e,\n  /* 0x4d */\n  0xc04d, 0x499b, 0xc0e5, 0xc0e1, 0xc0e2, 0xc116, 0xc114, 0xc51b,\n  0xc159, 0xc151, 0xc15f, 0xc14a, 0xc157, 0xc158, 0xc1ca, 0xc1db,\n  0xc1de, 0xc1e0, 0xc1e1, 0xc1df, 0xc1e2, 0xc1e3, 0xc292, 0xc2bf,\n  0xc2be, 0x2c0b, 0x2e52, 0x2e4e, 0x00b9, 0xc313, 0x2fa7, 0x3226,\n  0x3227, 0x32c6, 0x330b, 0x336a, 0x3378, 0x381a, 0x3816, 0x3819,\n  0x3817, 0x381b, 0x3818, 0x3820, 0x3937, 0x3aec, 0x3b81, 0xae3d,\n  0x3e0f, 0x3ead, 0x3ffb, 0x4052, 0x43af, 0x43b7, 0x43b2, 0x4578,\n  0x45ac, 0x4700, 0x46fe, 0x4702, 0x46fd, 0x4703, 0x4840, 0x4843,\n  0x4842, 0x48b7, 0x49a2, 0x4c00, 0x4c35, 0x4c41, 0x4c05, 0x2e53,\n  0x4c50, 0x4c4e, 0x4c53, 0x5053, 0x5050, 0x5057, 0x505f, 0x5055,\n  0x50ea, 0x5226, 0xb430, 0x522a, 0x5228, 0x522c, 0x522d, 0x52d4,\n  0x5507, 0x5558, 0x5559, 0x58c5, 0x58cd, 0x58c7,\n  /* 0x4e */\n  0x58e8, 0x084b, 0x5a32, 0xc297, 0x5bde, 0x5d32, 0x34c8, 0xc415,\n  0x60f1, 0x60f0, 0x60ec, 0x6109, 0x60f9, 0x60f5, 0x60fe, 0x6374,\n  0x6381, 0x637c, 0x6375, 0x6389, 0x6382, 0x6397, 0x6386, 0x637d,\n  0x6393, 0x639c, 0x6376, 0x6380, 0x6445, 0x30a1, 0x6603, 0x67c9,\n  0x67cd, 0x67d0, 0x69ad, 0x69c5, 0x6aa2, 0x6bec, 0x6bf6, 0x6bf3,\n  0x6df3, 0x6dfa, 0x6df9, 0x6df5, 0x6df4, 0x6df8, 0x6eb6, 0x6eb4,\n  0x6f32, 0x6fcd, 0x6fc8, 0x6fce, 0x6fca, 0x712a, 0x7121, 0x711d,\n  0x73bd, 0x73be, 0x73c2, 0x0cf1, 0x73c9, 0x751f, 0x76f1, 0x76ed,\n  0x76f2, 0x76e0, 0x76f7, 0x7830, 0x7837, 0x7831, 0x7836, 0x78c8,\n  0x7b6d, 0x7b69, 0x7b7d, 0x7b61, 0x7b70, 0x7b71, 0x7b73, 0x7b76,\n  0x7b75, 0x7b78, 0x7b79, 0x7b64, 0x7b6e, 0x7d51, 0x7d4f, 0x7d22,\n  0x7faf, 0x7faa, 0x7fa3, 0x7f9d, 0x7f9c, 0x7fa1,\n  /* 0x4f */\n  0x7fb6, 0x7fac, 0x7fa2, 0x7fa7, 0x7fb0, 0x7fa9, 0x7fc3, 0x8131,\n  0x8132, 0x8133, 0x8134, 0x8137, 0x813c, 0x81d9, 0x81dd, 0x81de,\n  0x81df, 0x81e0, 0x82a5, 0x82aa, 0x82a2, 0x82a3, 0x8404, 0x8403,\n  0x83fe, 0x8428, 0x86af, 0x86ad, 0x86a6, 0x87ac, 0x87a5, 0x87b0,\n  0x87b1, 0x8801, 0x88b2, 0x88d2, 0x88f1, 0x8bd1, 0x8c47, 0x8cc9,\n  0x8ca7, 0x8cc8, 0x8c95, 0x8c8e, 0x8c91, 0x8c7d, 0x8cee, 0x8c8d,\n  0x8c8c, 0x8cb0, 0x8c96, 0x8c42, 0x8c7c, 0x8cb1, 0x8cb2, 0x8c84,\n  0x8c9d, 0x8ca1, 0x8c98, 0x8cb3, 0x8c22, 0x8c7b, 0x8c8a, 0x8cce,\n  0x8c80, 0x8c97, 0x8cb4, 0x8cb5, 0x8c9a, 0x8c9f, 0x8c93, 0x8e12,\n  0x8e0b, 0x8e0e, 0x90a3, 0x90cc, 0x90dc, 0x90e1, 0x90de, 0x90d2,\n  0x90db, 0x90d9, 0x90d7, 0x90d4, 0x90c9, 0x90eb, 0x90da, 0x90d1,\n  0x9104, 0x90ca, 0x90e2, 0x91d7, 0x938c, 0x9399,\n  /* 0x50 */\n  0x93a2, 0x9396, 0x9394, 0x939f, 0x1267, 0x938e, 0x9403, 0x9494,\n  0x9493, 0x9544, 0x972f, 0x9735, 0x972b, 0x9732, 0x972d, 0x9736,\n  0x1314, 0x9731, 0x9712, 0x9733, 0x971f, 0x9734, 0x9740, 0x973f,\n  0x9741, 0x97d3, 0x9889, 0x9918, 0x9910, 0x9a1a, 0x9a25, 0x9a1e,\n  0x9b92, 0x9b95, 0x9b93, 0x9d84, 0x9d9a, 0x9d89, 0x9d8d, 0x9d88,\n  0x9d91, 0x9d9b, 0x9d9c, 0xb148, 0x9e8e, 0x9e92, 0x9fc5, 0x9fc1,\n  0x9fb8, 0x9fbe, 0x9fb5, 0x9fc7, 0xa03c, 0x1489, 0xa1ec, 0xa23f,\n  0xa239, 0xa237, 0xa3a1, 0xa394, 0xa3a0, 0xa3de, 0xa3db, 0xa3df,\n  0xa3dc, 0xa4d6, 0xa4dc, 0xa4dd, 0xa4e0, 0xa4e3, 0xa4e1, 0xa718,\n  0xa719, 0xa753, 0xc4ec, 0xa744, 0xa70e, 0xa70f, 0xa747, 0xa717,\n  0xa71d, 0xa711, 0xa8b4, 0xa8b6, 0xa9b7, 0xa9be, 0xa9c2, 0xa9b4,\n  0xab31, 0xab15, 0xab83, 0xac3b, 0xac36, 0xac42,\n  /* 0x51 */\n  0xac50, 0xac40, 0xac34, 0xac38, 0xac3d, 0xac3e, 0xac35, 0xac3a,\n  0xac46, 0xac37, 0xac39, 0xac45, 0xad77, 0xad5d, 0xad6a, 0xad76,\n  0xad6b, 0xad6c, 0xad65, 0xad64, 0xad71, 0xad5f, 0xad72, 0xadfe,\n  0xadff, 0xae3e, 0xaf2b, 0xaf36, 0xaf2d, 0xaf39, 0xaf3f, 0xaf3b,\n  0xaf33, 0xaf42, 0xaf3a, 0xafd5, 0xafd8, 0xafd9, 0xb00d, 0xb00a,\n  0xb039, 0xb03a, 0xb13d, 0xb145, 0xb13a, 0xb137, 0xb13e, 0xb142,\n  0xb387, 0xb38c, 0xb382, 0xb36b, 0xb3a0, 0xb39a, 0xb390, 0xb38e,\n  0xb3a1, 0xb3bd, 0xb3b2, 0xb3b5, 0xb3b7, 0xb3aa, 0xb3a2, 0xb3a5,\n  0xb3ae, 0xb3ab, 0xb3bc, 0xb432, 0xb45a, 0xb564, 0xb55c, 0xb54d,\n  0xb53f, 0xb53e, 0xb552, 0xb558, 0xb557, 0xb55e, 0xb553, 0xb554,\n  0xb556, 0xab65, 0xb684, 0xb685, 0xb686, 0xb797, 0xb7a1, 0xb7a2,\n  0x180b, 0xc50a, 0xb7a3, 0xb7a6, 0x1817, 0xb815,\n  /* 0x52 */\n  0xb824, 0xb84a, 0xb849, 0xb848, 0xb84b, 0xb90e, 0xb562, 0xb90b,\n  0xb90a, 0xb908, 0xb906, 0xba43, 0xba47, 0xba3f, 0xba46, 0xba50,\n  0x186d, 0xba4b, 0x1870, 0xba52, 0xbcd7, 0xbcbf, 0xbcd8, 0xbce0,\n  0xbce7, 0xbcb8, 0xbcd5, 0xbcef, 0xbce6, 0xbce4, 0xbcd4, 0xbcd6,\n  0xbcea, 0x18ed, 0xbcbb, 0xbce9, 0xc510, 0xbe6d, 0xbe70, 0xbe73,\n  0xbe72, 0xbed4, 0xbece, 0xbed5, 0xbf5a, 0xbf58, 0xbf52, 0xbf50,\n  0xbf55, 0xbf4e, 0xbf4d, 0xbfcb, 0xbfcc, 0xbfcd, 0xbfd1, 0xc058,\n  0xc063, 0xc05e, 0xc054, 0xc05b, 0xc0e9, 0xc0e7, 0xc0e8, 0xc11d,\n  0xc167, 0xc15a, 0xc15c, 0xc15b, 0xc161, 0xc1a1, 0x198d, 0xc1a4,\n  0xc1e9, 0xc1ef, 0xc1e5, 0xc1f5, 0xc1eb, 0xc1ed, 0xc296, 0xc295,\n  0xc2b3, 0xc2b5, 0xc2b1, 0x00a7, 0x2e4d, 0x3024, 0x322b, 0x33cf,\n  0x34c9, 0x3836, 0x3831, 0x3854, 0x383a, 0x3838,\n  /* 0x53 */\n  0x3939, 0x3938, 0x3af4, 0x3af3, 0x3af6, 0x3afc, 0x3af5, 0x3af1,\n  0x3c9c, 0x3e18, 0x3e1a, 0x3ffc, 0x3ffe, 0x4003, 0x4053, 0x422b,\n  0x43c6, 0x43c1, 0x457b, 0x4706, 0x4849, 0x48b8, 0x49a3, 0x4c52,\n  0x4c4d, 0x4c5f, 0x4c5e, 0x4c61, 0x4d23, 0x508c, 0x506f, 0x5075,\n  0x5074, 0x5071, 0x5070, 0x506c, 0x5326, 0x5508, 0x1e07, 0x58f0,\n  0x58ef, 0x58fb, 0x5910, 0x590c, 0x58f6, 0x58fe, 0x5b7c, 0x5be1,\n  0x5d38, 0x5d6f, 0x6118, 0x6115, 0x611c, 0x6110, 0x6135, 0xc417,\n  0x6117, 0x611d, 0x6126, 0x6128, 0x6129, 0x612a, 0x611a, 0xc416,\n  0x4707, 0x63ab, 0x63ac, 0x63a1, 0x63ae, 0x63a3, 0x63a7, 0x6448,\n  0x6504, 0x65fd, 0x0a5a, 0x6608, 0x67d2, 0x69c6, 0x69be, 0x6a1c,\n  0x6aa6, 0x6aa7, 0x6aab, 0x6b00, 0x6bfb, 0x6bfc, 0x6bf9, 0x6c01,\n  0x6e06, 0x6e04, 0xc43c, 0x6f34, 0x7136, 0x7132,\n  /* 0x54 */\n  0x7142, 0x712d, 0x7135, 0x73d8, 0x7523, 0x7520, 0x7701, 0x7700,\n  0x7703, 0xc2bc, 0x783c, 0x7841, 0x7835, 0x78c9, 0x7b8e, 0x7b9e,\n  0x7b99, 0x7bb4, 0x7baa, 0x7b9f, 0x7b96, 0x7b9d, 0x7bc3, 0x7b74,\n  0x7bab, 0x0eaf, 0x7d63, 0x7d5b, 0x7d5a, 0x7fc5, 0x7fc4, 0x7fcf,\n  0x7fc8, 0x7fa4, 0x7fbd, 0x7fd3, 0x8060, 0x813b, 0x81e3, 0x81e7,\n  0x82a8, 0x82ac, 0x82a9, 0x832a, 0x8408, 0x8409, 0x86b9, 0x88c1,\n  0x88c2, 0x88b8, 0x8ce1, 0x8ceb, 0x8ce5, 0x8cfa, 0x8ce4, 0x8d0b,\n  0x8cd7, 0x8cef, 0x8ce0, 0x8cec, 0x8cfb, 0xc4b0, 0x8cd3, 0x8ce6,\n  0x8cfc, 0x8ce3, 0x8ccf, 0x8cda, 0x8cdc, 0x8cd2, 0x8ca4, 0x116b,\n  0x8e17, 0x8e16, 0x90f2, 0x90fc, 0x9118, 0x90f6, 0x90fe, 0x90f3,\n  0x90f7, 0x9101, 0x90f9, 0x9106, 0x90f5, 0x9110, 0x90df, 0x9103,\n  0x9108, 0x91d8, 0x9205, 0x9397, 0x93b3, 0x93ae,\n  /* 0x55 */\n  0x93af, 0x93a7, 0x93b1, 0x93a8, 0x93ac, 0x93ab, 0x9404, 0x949a,\n  0x954a, 0x9742, 0x9758, 0x974b, 0x9745, 0x9749, 0x974c, 0x9759,\n  0x9756, 0x131b, 0x9746, 0x9744, 0x975b, 0x9769, 0x988e, 0x988f,\n  0x991e, 0x86bc, 0x9a2f, 0x9b9e, 0x9b9d, 0x9b9f, 0x9b9c, 0x9db4,\n  0x9dae, 0x9dab, 0x9db3, 0x9daf, 0x9dc2, 0x9e93, 0x9e95, 0x9e96,\n  0x9e97, 0x9fcf, 0x9fce, 0x9fcb, 0xa04b, 0xa246, 0xa243, 0xa245,\n  0xa251, 0xa3ae, 0xa3af, 0xa3b0, 0xa3b8, 0xa3e2, 0xa3e3, 0xa3e6,\n  0xa4ed, 0xa4ea, 0xa53a, 0xa759, 0xa784, 0xa75f, 0xa77c, 0xa75c,\n  0xa758, 0xa755, 0xa75d, 0xa77e, 0xa780, 0xa783, 0xa757, 0x1563,\n  0xa75e, 0xa8ba, 0xa9d5, 0xab58, 0xab68, 0xab67, 0xac4a, 0xac4c,\n  0xac52, 0xac49, 0xac4e, 0xac47, 0xac4d, 0xac4b, 0xac4f, 0xad7e,\n  0xad87, 0xad83, 0xad89, 0x69ca, 0xad86, 0xad88,\n  /* 0x56 */\n  0xae47, 0xae42, 0xae49, 0xae48, 0x1680, 0x1684, 0x167f, 0xaf44,\n  0xaf51, 0xaf46, 0xaf47, 0xafe4, 0xb00f, 0xb03f, 0xb14b, 0xb157,\n  0xb152, 0x16f1, 0xb151, 0xb158, 0xb15e, 0xb153, 0xb15d, 0xb14d,\n  0xb23c, 0xb23f, 0xb246, 0xb23e, 0xb244, 0xb245, 0xb241, 0xb238,\n  0xb242, 0xb243, 0xb27a, 0xb3a3, 0xb3ba, 0xb3c0, 0xb3c4, 0xb3c6,\n  0xb3cb, 0xb461, 0xb57a, 0xb573, 0xb572, 0xb574, 0xb580, 0xb581,\n  0x2947, 0xb695, 0xb68f, 0xb690, 0xb692, 0xb694, 0xb68b, 0xb6e6,\n  0xb7b2, 0xb7b8, 0xb7bd, 0xb7be, 0xb7ce, 0xb7ba, 0xb816, 0xb826,\n  0xb825, 0xb84c, 0xb850, 0xb84e, 0xb851, 0xb852, 0xb914, 0xb915,\n  0xb91b, 0xba82, 0xba99, 0xba9a, 0xba7d, 0xba85, 0xba86, 0xba9c,\n  0xba79, 0xba7b, 0xba80, 0xba83, 0xba81, 0xbd1e, 0xbd1b, 0xbd2a,\n  0xbcfb, 0xbd05, 0xbd20, 0xbd11, 0xbd04, 0xbcfd,\n  /* 0x57 */\n  0xbd03, 0xbd10, 0xbd18, 0xbd0a, 0xbd4e, 0xbd09, 0xbd07, 0xbd1c,\n  0x191c, 0xbe77, 0xbe76, 0xbed8, 0xbed9, 0xbf61, 0xbf5c, 0xbf5e,\n  0xbf60, 0xbfaa, 0xbfd6, 0xbfd8, 0xc009, 0xc008, 0xc06b, 0xc065,\n  0xc073, 0xc074, 0xc0ed, 0xc124, 0xc125, 0xc16a, 0xc1a7, 0xc1a8,\n  0xc20b, 0xc1fa, 0xc1f9, 0xc1ff, 0xc204, 0xc1f6, 0xc205, 0xc299,\n  0xc2ab, 0xc2bd, 0xc2b8, 0x00a8, 0x2e64, 0x2e5a, 0x2f72, 0x337a,\n  0x3595, 0x385f, 0x3861, 0x385e, 0x385a, 0x385c, 0x385d, 0x386e,\n  0x3857, 0x3858, 0x3b02, 0x3b0b, 0x3b08, 0x3b51, 0x3e25, 0x3e28,\n  0x3e23, 0x3e21, 0x3e24, 0x3e29, 0x4006, 0x400a, 0x43ca, 0x43cc,\n  0x43cb, 0x43cf, 0x457f, 0x457c, 0x45d6, 0x4709, 0x470b, 0x4776,\n  0x487d, 0x49a5, 0x4c5b, 0x4c5c, 0x4c5d, 0x4c65, 0x506d, 0x5082,\n  0x5083, 0x5087, 0x5095, 0x508a, 0x52d6, 0x5328,\n  /* 0x58 */\n  0x550d, 0x592e, 0xc3ee, 0x592d, 0x5921, 0x5919, 0x5a3b, 0x5a3c,\n  0x5a3a, 0x5b7e, 0x5d3b, 0x6147, 0x6139, 0x6134, 0x6136, 0x6146,\n  0x613b, 0x6141, 0x6145, 0x63c0, 0x63c4, 0x63ba, 0x63bd, 0x63be,\n  0x64a3, 0x660c, 0x67d9, 0x69cd, 0x6aae, 0x6bff, 0x6c24, 0x6ebb,\n  0x6ebc, 0x6f36, 0x6fd5, 0x6fd3, 0x6fd6, 0x713c, 0x713f, 0x73de,\n  0x73e3, 0x7527, 0x7529, 0x0d8b, 0x7705, 0x7707, 0x770c, 0x78d0,\n  0x7bbe, 0x7bbc, 0x7bd0, 0x7bc2, 0x7bb5, 0x7bc9, 0x7d66, 0x0f2b,\n  0x7fd5, 0x7fe2, 0x7fdc, 0x7fe3, 0x7fda, 0x7fc2, 0x7fe8, 0x81e9,\n  0x82af, 0x82ad, 0x82ae, 0x840b, 0x86c1, 0x87b6, 0x87b9, 0x88c0,\n  0x8ca5, 0x8d28, 0x8d22, 0x8d29, 0x8d18, 0x8d1f, 0x8d1c, 0x8d12,\n  0x8d2a, 0x117a, 0x8d21, 0x8d2b, 0x8d17, 0x8cf0, 0x8d16, 0x8d23,\n  0x912b, 0x9126, 0x913d, 0x9122, 0x913a, 0x9131,\n  /* 0x59 */\n  0x9132, 0x9154, 0x9121, 0x9135, 0x1209, 0x912e, 0x9130, 0x912f,\n  0x9136, 0x91da, 0x91d9, 0x93bb, 0x93bc, 0x93b7, 0x93c2, 0x93bd,\n  0x93b2, 0x126d, 0x7144, 0x7bd1, 0x9752, 0x976b, 0x9767, 0x131f,\n  0x9761, 0x976c, 0x9751, 0x9774, 0x9777, 0x976f, 0x976d, 0x9768,\n  0xc4d1, 0x9784, 0x9890, 0x9892, 0x9893, 0x991f, 0x9a31, 0x9a38,\n  0x9a39, 0x9a37, 0x9bab, 0x9dc3, 0x9dc8, 0x9dcb, 0x9dcf, 0x9e98,\n  0x9fd4, 0x9fd3, 0x9fd8, 0x9fd9, 0x9fdd, 0x9fd1, 0x9fd6, 0xa03e,\n  0xa258, 0xa257, 0xa255, 0xa3c4, 0xa3e4, 0xa4ee, 0xa4ef, 0xa4f3,\n  0xa4f2, 0xa4f0, 0xa7ab, 0xa79a, 0xa7af, 0xa797, 0x156a, 0x156c,\n  0xa7bf, 0xa794, 0xa793, 0xa8be, 0xa8bb, 0xa8bc, 0xa9d9, 0xab6c,\n  0xac53, 0xac54, 0xac5b, 0xac58, 0xac56, 0xac57, 0xad9f, 0xad94,\n  0xad96, 0xad97, 0xae4a, 0xae4b, 0xaf55, 0xaf5a,\n  /* 0x5a */\n  0xaf5e, 0xaf5f, 0xaf59, 0xaf5b, 0xaf58, 0xaf54, 0xafe8, 0xafeb,\n  0xafec, 0xb013, 0xb166, 0xb16b, 0xb162, 0xb169, 0xb163, 0xb15f,\n  0xb14e, 0xb248, 0xb24a, 0xb3e3, 0xb3db, 0xb3d8, 0xb3d6, 0xb586,\n  0xb590, 0xb591, 0xb588, 0xb594, 0xb583, 0x17b2, 0xb59c, 0xb58d,\n  0xb585, 0xb698, 0xb69a, 0xb69c, 0xb6e7, 0xb7c5, 0xb7d0, 0xb7d1,\n  0xb819, 0xb827, 0x181d, 0xb854, 0xb92d, 0xb922, 0x182d, 0xb91f,\n  0xbabd, 0xbaae, 0xbabb, 0xbaad, 0xbabc, 0xbab9, 0xbab4, 0xbacb,\n  0xbab7, 0xbab3, 0xbaba, 0xbab6, 0xbacd, 0xbabe, 0xbac9, 0xc50b,\n  0xbd5f, 0xbd3b, 0xbd61, 0xbd5c, 0xbd8a, 0xbd5a, 0xbd4d, 0xbd46,\n  0xbd44, 0xbd3d, 0xbd40, 0xbd3c, 0xbd8c, 0xbd41, 0xbd4c, 0xbd3e,\n  0xbd4a, 0xbe7c, 0xbe7a, 0xbf65, 0xbf6e, 0xbf69, 0xbf6a, 0xbf6f,\n  0xbf6c, 0xbf70, 0xbf68, 0xbf6b, 0x1945, 0xbfac,\n  /* 0x5b */\n  0xbfde, 0xbfdd, 0xbfdc, 0x63c5, 0xc08c, 0xc083, 0xc082, 0xc088,\n  0xc085, 0xc081, 0xc0f5, 0xc0ef, 0xc0f4, 0xc0f2, 0xc0f6, 0xc0f3,\n  0xc0f0, 0xc0f1, 0xc12b, 0xc127, 0xc128, 0xc16c, 0xc1ae, 0xc20e,\n  0xc21b, 0xc216, 0xc21f, 0xc222, 0xc220, 0xc221, 0xc214, 0xc213,\n  0xc29d, 0xc29c, 0xc29e, 0xc29f, 0x2e6b, 0x32c8, 0x3878, 0x3876,\n  0x3870, 0x3871, 0x3b0a, 0x3e2c, 0x4711, 0x487e, 0x4c57, 0x4c66,\n  0x4c69, 0x4c67, 0x4c68, 0x4c71, 0x4c6f, 0xbfae, 0x508b, 0x5096,\n  0x5235, 0x523a, 0x526b, 0x5516, 0x5943, 0x5946, 0x593f, 0x593b,\n  0x593d, 0x5ab1, 0x5ab2, 0x5be4, 0x5d40, 0x615d, 0x6151, 0x614d,\n  0x614c, 0x615b, 0x63d4, 0x63d2, 0x63ca, 0x63c8, 0x63d0, 0x63c9,\n  0x6449, 0x64a4, 0x6612, 0x660f, 0x6611, 0x67db, 0x67dd, 0x67dc,\n  0x69d4, 0x6a21, 0x6ab2, 0x6c04, 0x6c02, 0x6e11,\n  /* 0x5c */\n  0x6e16, 0x6e10, 0x6ebe, 0x8e1a, 0x714c, 0x714a, 0x73f2, 0x73f1,\n  0x752a, 0x752c, 0x752f, 0x7531, 0x7711, 0x7712, 0x784b, 0x7bdb,\n  0x7bd6, 0x7bdd, 0x7be2, 0x7be4, 0x7be0, 0x7bdf, 0x7be3, 0x7d6e,\n  0x7d71, 0x7fe9, 0x7fea, 0x8063, 0x81eb, 0x81ea, 0x86bd, 0x86bb,\n  0x86c6, 0x86cc, 0x86c8, 0x63cf, 0x86c9, 0x86ca, 0x86cf, 0x86d0,\n  0x87ba, 0x87fb, 0x8803, 0x88c4, 0x8d49, 0x8d53, 0x8d36, 0x8d4a,\n  0x8d41, 0x8d4e, 0x8d19, 0x8d4d, 0x8d45, 0x8d4c, 0x8d47, 0x8d48,\n  0x8d4f, 0x8d37, 0x8d42, 0x914a, 0x9146, 0x120a, 0x9149, 0x914f,\n  0x9151, 0x914c, 0x120c, 0x9206, 0x9551, 0x977a, 0x9783, 0x977e,\n  0x977f, 0x9780, 0x6ab5, 0x9891, 0x9894, 0x9895, 0x9921, 0x9920,\n  0x9a3d, 0x9a40, 0x9a46, 0x9a84, 0x9bac, 0x9bad, 0x142e, 0x9dda,\n  0x9dd9, 0x9fe2, 0x9fe1, 0x9fe3, 0x9fe4, 0x9fde,\n  /* 0x5d */\n  0x9fdf, 0xa241, 0xa259, 0xa25c, 0xa25a, 0xa3e8, 0xa4f6, 0xa4fc,\n  0xa4f7, 0xa4fa, 0xa4f9, 0xa7c4, 0xa7be, 0xa7d2, 0xa7bd, 0xa795,\n  0xa7d4, 0xa9e4, 0xac61, 0xac62, 0xac63, 0xac64, 0xac60, 0xac5c,\n  0xac5d, 0xac5e, 0xada5, 0xada6, 0xae4c, 0xaf68, 0xaf6e, 0xaf71,\n  0xaf6b, 0xaf6f, 0xafee, 0xaff1, 0xaff0, 0xafef, 0xb015, 0xb014,\n  0xab6e, 0xb047, 0xb17c, 0xb17a, 0xb174, 0xb176, 0xb16e, 0xb178,\n  0xb16d, 0xb16c, 0xb24e, 0xb3d7, 0xb3ea, 0xb3e5, 0xb464, 0xb5b3,\n  0xb5a3, 0xb5a5, 0xb5a7, 0xb5a2, 0xb59f, 0xb5a6, 0xb59e, 0xb5a8,\n  0xb6a9, 0xb6a6, 0xb6aa, 0xb6ab, 0xb6a0, 0xb6a1, 0xb6a8, 0xb6e8,\n  0xb6e9, 0xb6ea, 0xb7e4, 0xb7df, 0xb7e0, 0xb828, 0xb85d, 0xb85b,\n  0xb856, 0xb857, 0xb85f, 0xb862, 0xbae1, 0xbae3, 0xbade, 0xbad9,\n  0xbae8, 0xbaf2, 0xbaf6, 0xbae6, 0xbaf4, 0xbaf5,\n  /* 0x5e */\n  0xbae5, 0xbae2, 0x188d, 0xbd96, 0xbdaa, 0xbd97, 0xbd70, 0xbda1,\n  0xbd9d, 0xbda9, 0xbd6f, 0xbd7e, 0xbd94, 0xbd9a, 0xbd73, 0xbd87,\n  0xbd71, 0xbd77, 0xbd88, 0xbd8d, 0xbd85, 0xbd78, 0xbdad, 0xbe80,\n  0xbe81, 0xbee5, 0xbee7, 0xbf7c, 0xbfaf, 0xbfe1, 0xc096, 0xc0a3,\n  0xc090, 0xc0f8, 0xc12e, 0xc175, 0xc17e, 0xc17d, 0xc17b, 0xc178,\n  0xc1b0, 0xc234, 0xc236, 0xc230, 0xc51d, 0xc22e, 0xc237, 0x34ce,\n  0x3597, 0x3598, 0x387c, 0x387e, 0x387d, 0x387f, 0x3b0f, 0x3ca4,\n  0x3e31, 0x3e2e, 0x3e2f, 0x3e32, 0x422c, 0x43d4, 0x43dc, 0x43d8,\n  0x440e, 0x4583, 0x4584, 0x4712, 0x4c72, 0x4c7c, 0x4c7e, 0x50a6,\n  0x50a0, 0x509e, 0x50a2, 0x532a, 0x5518, 0x594d, 0x5958, 0x595b,\n  0x7714, 0xc3f2, 0x5be6, 0x6164, 0x6168, 0x6160, 0x6162, 0x63d7,\n  0x644b, 0x67e0, 0x6a22, 0x6c05, 0x6e19, 0x6e1a,\n  /* 0x5f */\n  0x6ec3, 0x6fd8, 0x6fdc, 0x714f, 0x73f7, 0x73f4, 0x73f8, 0x7713,\n  0x7850, 0x7bf0, 0x7be9, 0x7bef, 0x7bed, 0x7bea, 0x7bf8, 0x7c05,\n  0x7bf2, 0x7d72, 0x0f31, 0x7ff9, 0x7ff3, 0x7ff6, 0x7ff2, 0x7ff7,\n  0x8066, 0x8065, 0x8140, 0xc477, 0x86d1, 0x86d3, 0x8804, 0x8d59,\n  0x8d60, 0x8d5b, 0x8d5d, 0x8d5e, 0x8d69, 0x8d5c, 0x8d61, 0x8d6a,\n  0x8d5f, 0x914e, 0x915c, 0x9160, 0x9163, 0x91db, 0x93ca, 0x93c9,\n  0x93c8, 0x94a5, 0x94a3, 0x978e, 0x9787, 0x9789, 0x9785, 0x9786,\n  0x978f, 0x978a, 0x9790, 0x9898, 0x989b, 0x9a47, 0x9a49, 0x9a48,\n  0x9de5, 0x9dea, 0x9ded, 0x9ff0, 0x9fef, 0x9ff2, 0x9fec, 0xa040,\n  0xa260, 0xa25f, 0xa3eb, 0xa3ec, 0xa500, 0xa501, 0xa7e2, 0xa7df,\n  0xa7e0, 0xa7e1, 0xa7e3, 0xa8c3, 0xa9eb, 0xa9ea, 0xab61, 0xab71,\n  0xac6b, 0xac68, 0xac69, 0xac67, 0xadb0, 0xadb1,\n  /* 0x60 */\n  0xadb2, 0xae51, 0xaf74, 0xb17f, 0xb184, 0xb253, 0xb254, 0xb3f0,\n  0xb3f4, 0xb3f1, 0xb437, 0xb5bf, 0x17bc, 0x17bb, 0xb5bd, 0xb5be,\n  0xb5b7, 0xb5c0, 0xb5ba, 0xb5b8, 0xb5bc, 0xb5bb, 0xb6eb, 0xb7e7,\n  0xb81d, 0xb81c, 0xb863, 0x484b, 0xb938, 0xb936, 0xb934, 0xb937,\n  0xbb06, 0xbb1c, 0xbb02, 0xbb1d, 0xbb1e, 0xbae0, 0xbb11, 0xbb18,\n  0xbb21, 0xbb20, 0xbb10, 0xbdbd, 0xbdae, 0xbdb5, 0xbdb8, 0xbdb9,\n  0xbdbe, 0xbdc4, 0xbdbc, 0xbdba, 0xbe83, 0xbeea, 0xbeec, 0xbf7e,\n  0xbf7b, 0xbfe5, 0xc0a7, 0xc09e, 0xc09a, 0xc12f, 0xc131, 0xc183,\n  0xc1b5, 0xc246, 0xc241, 0xc243, 0xc23d, 0xc242, 0xc23b, 0xc247,\n  0x336b, 0x33d0, 0x388e, 0x4011, 0xc371, 0xc389, 0x484c, 0x532b,\n  0x594f, 0x595e, 0x5963, 0x596b, 0x5a3f, 0x5be9, 0x616d, 0x616b,\n  0x616a, 0xbb2a, 0x63e0, 0x63dd, 0x63e1, 0x63de,\n  /* 0x61 */\n  0x63dc, 0x644d, 0x6616, 0x67e3, 0x69e5, 0x69e4, 0x6e1d, 0x754b,\n  0xc2c1, 0x784e, 0x78d6, 0x7bfd, 0x7c07, 0x7bfe, 0x7c03, 0x7c0b,\n  0x7bff, 0x7d7a, 0x7d77, 0x7ffb, 0x8143, 0x81ed, 0x87bc, 0x63df,\n  0x8805, 0x88c6, 0x88c5, 0x8d74, 0x8d73, 0x8d72, 0x8d78, 0x9173,\n  0x917a, 0x6e1c, 0x9176, 0x9175, 0x9177, 0x93cf, 0x93ce, 0x93cd,\n  0x94a8, 0x9798, 0x9792, 0x9794, 0x989a, 0x9bb4, 0x9deb, 0x9df4,\n  0x9df3, 0x9dee, 0x9df2, 0x9df0, 0xa264, 0xa805, 0xa7fb, 0xa7fc,\n  0xa9f3, 0xac6c, 0xadba, 0xaf79, 0xaf7e, 0xaf78, 0xaff4, 0xb016,\n  0xb257, 0xb5c8, 0xb5c3, 0xb5ce, 0xb6b3, 0xb6ed, 0xb6ee, 0xb7f1,\n  0xb7f8, 0x1814, 0xb864, 0xb865, 0xbb35, 0xbb29, 0xbb2c, 0xbb31,\n  0xbb2b, 0xbb2e, 0xbb25, 0xbdda, 0xbde0, 0xbdd4, 0xbde1, 0xbddd,\n  0xbfe7, 0xc012, 0xc0ae, 0xc0af, 0xc186, 0xc185,\n  /* 0x62 */\n  0xc1d1, 0xc258, 0xc23f, 0xc252, 0xc24b, 0xc253, 0xc250, 0xc256,\n  0xc257, 0xc2cd, 0xc2cb, 0x3231, 0x3230, 0x33d1, 0x021c, 0x3892,\n  0x3890, 0x388f, 0x3893, 0x3891, 0x0372, 0x4713, 0x487f, 0x50ac,\n  0x6170, 0x63e5, 0x6a23, 0x6a24, 0x6c08, 0x6c07, 0x6e1f, 0x6e20,\n  0x6e21, 0x6fe1, 0x7154, 0x7157, 0x7155, 0x73fa, 0x7538, 0x8d86,\n  0x7537, 0x7853, 0x7d7e, 0x7d7b, 0xc471, 0x7ffd, 0x7ffc, 0x8146,\n  0x8732, 0x88c7, 0x8d71, 0x8d83, 0x8d6f, 0x8d7e, 0x8d7d, 0x8d81,\n  0x8d7c, 0x918a, 0x917e, 0x9180, 0x917d, 0x917f, 0x9182, 0x93d4,\n  0x93d0, 0x93d2, 0x9555, 0x979b, 0x979a, 0x9a4e, 0x9df1, 0x9ff8,\n  0x9ffd, 0xa25e, 0xa266, 0xa505, 0xa80a, 0xa80b, 0xa80e, 0xa80d,\n  0xa811, 0xa809, 0xa810, 0xa80c, 0xa812, 0xa8c4, 0xa9f7, 0xa9f8,\n  0xab6a, 0xab6b, 0xadc0, 0xadc2, 0xaf85, 0xaf80,\n  /* 0x63 */\n  0xaf84, 0xaf81, 0xadc4, 0xb18b, 0xb18d, 0xb18e, 0xb6b7, 0xb6b9,\n  0xb6ef, 0xb7fb, 0xb7ff, 0xb867, 0xb868, 0xb869, 0xb93f, 0xbb3c,\n  0xbb4c, 0xbb3d, 0xbb3e, 0xbb3f, 0xbb3b, 0xbdff, 0x190e, 0xbdf6,\n  0xbdee, 0xbdfc, 0xbdf8, 0xbe01, 0xbdfa, 0xbe88, 0xbf80, 0xc011,\n  0xc0fe, 0xc100, 0xc135, 0x6f3c, 0xc1bd, 0xc1bb, 0xc25c, 0xc25a,\n  0xc2d1, 0xc2d0, 0x340b, 0x5973, 0x3e39, 0x401a, 0x43e3, 0x4587,\n  0x4777, 0x4778, 0x50b1, 0x596a, 0x5974, 0x5beb, 0x617b, 0x64a5,\n  0x67e4, 0x6c0b, 0x6c0e, 0x6c0c, 0x7539, 0x7c10, 0x7c11, 0x7c16,\n  0x7d81, 0x7d80, 0x7ffe, 0x8001, 0x8000, 0x8147, 0x81ef, 0x8d88,\n  0x918b, 0x918d, 0x9187, 0x9185, 0x918f, 0x9184, 0x9188, 0x918e,\n  0x918c, 0x93d7, 0x93d6, 0x979f, 0x4588, 0x9e03, 0x9ffe, 0xa3ef,\n  0xa509, 0xa508, 0xa820, 0xa824, 0xa81f, 0xac70,\n  /* 0x64 */\n  0xae56, 0xaff7, 0xaff8, 0xaff6, 0xb190, 0xb25e, 0xb3f7, 0xb5d6,\n  0xb5d5, 0xb6bb, 0xb6f0, 0xb801, 0xb86c, 0xb941, 0xb942, 0xbb4f,\n  0xbb53, 0xbb58, 0xbe12, 0xbe04, 0xbe13, 0xbe05, 0xbe0d, 0xbf82,\n  0xbf81, 0xc0b5, 0xc0ba, 0xc1be, 0xc265, 0xc263, 0xc26e, 0xc26a,\n  0xc26c, 0xc2c4, 0x336c, 0x97a5, 0x4012, 0x484d, 0x551f, 0x5977,\n  0x5978, 0x5d44, 0x617c, 0x63eb, 0x63ea, 0x63ec, 0x64a7, 0x6619,\n  0x6e23, 0x2074, 0x7401, 0x7c1c, 0x8003, 0x8148, 0x86da, 0x8d91,\n  0x8d92, 0x9196, 0x9197, 0x9191, 0x9193, 0x93d8, 0x93d5, 0x9557,\n  0x9558, 0x97a2, 0x9e05, 0x9ffa, 0xa50c, 0xa50a, 0xa82e, 0xa829,\n  0xa82f, 0xa8c5, 0xac72, 0xadc8, 0xae5a, 0xae59, 0xaf89, 0xaf88,\n  0xb5db, 0xb5d9, 0xb5da, 0xb6bc, 0x17ec, 0xb806, 0xb805, 0xb86f,\n  0xb86d, 0xb870, 0xbb60, 0xbb5e, 0xbb63, 0xbb5a,\n  /* 0x65 */\n  0xbb5f, 0xbe19, 0xbe1d, 0xbe1b, 0xbe22, 0xbe1c, 0xbe1e, 0xbef7,\n  0xbf84, 0xc015, 0xc0b8, 0xc0c1, 0xc101, 0xc10a, 0xc1d2, 0xc275,\n  0xc274, 0xc272, 0x34d0, 0x401b, 0x4410, 0x4779, 0x63ed, 0x6ab9,\n  0x6e24, 0x6ec5, 0x7403, 0x814a, 0x86f7, 0x87c1, 0x87c2, 0x8d94,\n  0x9199, 0x919a, 0x955a, 0x97a8, 0x9825, 0x989e, 0xa041, 0xa832,\n  0xa833, 0xadcb, 0xadca, 0xadcc, 0xb193, 0xb5e0, 0xb871, 0xbb6b,\n  0xbe2b, 0xbe29, 0xbe1a, 0xbe26, 0xbe27, 0xbe2a, 0xbef8, 0x6f3d,\n  0xc276, 0x3b18, 0x597a, 0x617f, 0x0e79, 0x81f0, 0x8d9a, 0x8d96,\n  0x919e, 0x919d, 0x91dc, 0x93da, 0x9e0b, 0xa002, 0xa042, 0xa267,\n  0xaf8b, 0xb5e2, 0xbb71, 0xbe2f, 0xbe2e, 0xc0c6, 0xc18e, 0xc27b,\n  0xc277, 0xc278, 0xc27c, 0x597c, 0x8007, 0x8d97, 0x97d9, 0xa50d,\n  0xa50e, 0xb5e3, 0xb5e4, 0xb6f3, 0xb875, 0xbe37,\n  /* 0x66 */\n  0xbe35, 0xc18f, 0xc280, 0xc27f, 0xc2d4, 0x50b4, 0xbfec, 0xab75,\n  0x6c10, 0x8069, 0x91a4, 0x93db, 0xadd1, 0xaf8d, 0xbb76, 0xbe39,\n  0xc284, 0xc282, 0x34d2, 0x63ee, 0x6c11, 0x7d84, 0xab74, 0xaf8f,\n  0xaf8e, 0xbe3b, 0x32cb, 0xc288, 0xc286, 0x555c, 0x71a4, 0xac75,\n  0xc28b, 0x3b19, 0x989f, 0xb5e5, 0xbe40, 0x6c12, 0xbefb, 0xc28c,\n  0x71a5, 0xb877, 0xb878, 0xc2d6, 0x93df, 0xadd2, 0x3b1a, 0x97a9,\n  0xadd3, 0xc0ca, 0x87c4, 0x94b1, 0xb264,\n};\n\nstatic const ucs4_t cns11643_7_2uni_upages[198] = {\n  0x03400, 0x03500, 0x03600, 0x03700, 0x03800, 0x03900, 0x03a00, 0x03b00,\n  0x03c00, 0x03d00, 0x03e00, 0x03f00, 0x04000, 0x04100, 0x04200, 0x04300,\n  0x04400, 0x04500, 0x04600, 0x04700, 0x04800, 0x04900, 0x04a00, 0x04b00,\n  0x04c00, 0x04d00, 0x05600, 0x05800, 0x06100, 0x06400, 0x06700, 0x07100,\n  0x07600, 0x07c00, 0x07f00, 0x08100, 0x08600, 0x08d00, 0x08f00, 0x09300,\n  0x09500, 0x09a00, 0x0ff00, 0x20000, 0x20100, 0x20300, 0x20400, 0x20500,\n  0x20600, 0x20700, 0x20800, 0x20900, 0x20a00, 0x20b00, 0x20f00, 0x21000,\n  0x21100, 0x21200, 0x21400, 0x21500, 0x21600, 0x21800, 0x21900, 0x21a00,\n  0x21b00, 0x21c00, 0x21d00, 0x21f00, 0x22000, 0x22100, 0x22200, 0x22300,\n  0x22400, 0x22500, 0x22700, 0x22800, 0x22900, 0x22a00, 0x22c00, 0x22d00,\n  0x22e00, 0x22f00, 0x23000, 0x23100, 0x23200, 0x23300, 0x23500, 0x23600,\n  0x23700, 0x23800, 0x23900, 0x23a00, 0x23b00, 0x23c00, 0x23e00, 0x23f00,\n  0x24000, 0x24100, 0x24300, 0x24400, 0x24500, 0x24600, 0x24700, 0x24800,\n  0x24900, 0x24a00, 0x24b00, 0x24c00, 0x24d00, 0x24e00, 0x24f00, 0x25000,\n  0x25200, 0x25300, 0x25400, 0x25500, 0x25600, 0x25700, 0x25800, 0x25900,\n  0x25a00, 0x25b00, 0x25c00, 0x25d00, 0x25e00, 0x25f00, 0x26000, 0x26100,\n  0x26200, 0x26300, 0x26400, 0x26500, 0x26600, 0x26700, 0x26800, 0x26900,\n  0x26a00, 0x26d00, 0x26e00, 0x26f00, 0x27000, 0x27100, 0x27200, 0x27300,\n  0x27400, 0x27500, 0x27600, 0x27700, 0x27800, 0x27900, 0x27a00, 0x27b00,\n  0x27c00, 0x27d00, 0x27e00, 0x27f00, 0x28000, 0x28100, 0x28200, 0x28300,\n  0x28400, 0x28500, 0x28600, 0x28700, 0x28800, 0x28900, 0x28a00, 0x28b00,\n  0x28c00, 0x28d00, 0x28e00, 0x28f00, 0x29000, 0x29100, 0x29200, 0x29300,\n  0x29400, 0x29500, 0x29600, 0x29700, 0x29800, 0x29900, 0x29a00, 0x29b00,\n  0x29c00, 0x29d00, 0x29e00, 0x29f00, 0x2a000, 0x2a100, 0x2a200, 0x2a300,\n  0x2a400, 0x2a500, 0x2a600, 0x2f800, 0x2f900, 0x2fa00,\n};\n\nstatic int\ncns11643_7_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x21 && c1 <= 0x66)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        ucs4_t wc = 0xfffd;\n        unsigned short swc;\n        {\n          if (i < 6539)\n            swc = cns11643_7_2uni_page21[i],\n            wc = cns11643_7_2uni_upages[swc>>8] | (swc & 0xff);\n        }\n        if (wc != 0xfffd) {\n          *pwc = wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cns11643_inv.h",
    "content": "/*\n * Copyright (C) 1999-2005, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CNS 11643-1992 planes 1-7, CNS 11643-1986 plane 15\n */\n\nstatic const unsigned char cns11643_inv_2charset[3*55442] = {\n  0x1,0x21,0x70, 0x1,0x22,0x78, 0x1,0x22,0x34, 0x1,0x21,0x31,\n  0x1,0x22,0x32, 0x1,0x22,0x33, 0x1,0x25,0x6f, 0x1,0x25,0x6d,\n  0x1,0x25,0x6e, 0x1,0x25,0x70, 0x1,0x25,0x6c, 0x1,0x24,0x75,\n  0x1,0x24,0x76, 0x1,0x24,0x77, 0x1,0x24,0x78, 0x1,0x24,0x79,\n  0x1,0x24,0x7a, 0x1,0x24,0x7b, 0x1,0x24,0x7c, 0x1,0x24,0x7d,\n  0x1,0x24,0x7e, 0x1,0x25,0x21, 0x1,0x25,0x22, 0x1,0x25,0x23,\n  0x1,0x25,0x24, 0x1,0x25,0x25, 0x1,0x25,0x26, 0x1,0x25,0x27,\n  0x1,0x25,0x28, 0x1,0x25,0x29, 0x1,0x25,0x2a, 0x1,0x25,0x2b,\n  0x1,0x25,0x2c, 0x1,0x25,0x2d, 0x1,0x25,0x2e, 0x1,0x25,0x2f,\n  0x1,0x25,0x30, 0x1,0x25,0x31, 0x1,0x25,0x32, 0x1,0x25,0x33,\n  0x1,0x25,0x34, 0x1,0x25,0x35, 0x1,0x25,0x36, 0x1,0x25,0x37,\n  0x1,0x25,0x38, 0x1,0x25,0x39, 0x1,0x25,0x3a, 0x1,0x25,0x3b,\n  0x1,0x25,0x3c, 0x1,0x25,0x3d, 0x1,0x25,0x3e, 0x1,0x25,0x3f,\n  0x1,0x25,0x40, 0x1,0x25,0x41, 0x1,0x25,0x42, 0x1,0x25,0x43,\n  0x1,0x25,0x44, 0x1,0x25,0x45, 0x1,0x25,0x46, 0x1,0x21,0x39,\n  0x1,0x21,0x37, 0x1,0x22,0x5d, 0x1,0x21,0x64, 0x1,0x21,0x65,\n  0x1,0x21,0x66, 0x1,0x21,0x67, 0x1,0x21,0x2d, 0x1,0x21,0x2c,\n  0x1,0x21,0x6a, 0x1,0x21,0x6b, 0x1,0x21,0x6f, 0x1,0x22,0x23,\n  0x1,0x42,0x42, 0x1,0x22,0x6a, 0x1,0x22,0x22, 0x1,0x22,0x6b,\n  0x1,0x24,0x2b, 0x1,0x24,0x2c, 0x1,0x24,0x2d, 0x1,0x24,0x2e,\n  0x1,0x24,0x2f, 0x1,0x24,0x30, 0x1,0x24,0x31, 0x1,0x24,0x32,\n  0x1,0x24,0x33, 0x1,0x24,0x34, 0x1,0x26,0x35, 0x1,0x26,0x36,\n  0x1,0x26,0x37, 0x1,0x26,0x38, 0x1,0x26,0x39, 0x1,0x26,0x3a,\n  0x1,0x26,0x3b, 0x1,0x26,0x3c, 0x1,0x26,0x3d, 0x1,0x26,0x3e,\n  0x1,0x22,0x58, 0x1,0x22,0x55, 0x1,0x22,0x57, 0x1,0x22,0x56,\n  0x1,0x22,0x59, 0x1,0x22,0x5a, 0x1,0x22,0x5c, 0x1,0x22,0x5b,\n  0x1,0x22,0x61, 0x1,0x22,0x35, 0x1,0x22,0x3c, 0x1,0x22,0x49,\n  0x1,0x22,0x48, 0x1,0x22,0x45, 0x1,0x22,0x46, 0x1,0x22,0x4d,\n  0x1,0x22,0x4e, 0x1,0x22,0x50, 0x1,0x22,0x4f, 0x1,0x22,0x44,\n  0x1,0x22,0x3d, 0x1,0x22,0x3b, 0x1,0x22,0x3e, 0x1,0x22,0x39,\n  0x1,0x22,0x3a, 0x1,0x22,0x47, 0x1,0x22,0x4a, 0x1,0x42,0x21,\n  0x1,0x42,0x22, 0x1,0x42,0x23, 0x1,0x42,0x24, 0x1,0x42,0x25,\n  0x1,0x42,0x26, 0x1,0x42,0x27, 0x1,0x42,0x28, 0x1,0x42,0x29,\n  0x1,0x42,0x2a, 0x1,0x42,0x2b, 0x1,0x42,0x2c, 0x1,0x42,0x2d,\n  0x1,0x42,0x2e, 0x1,0x42,0x2f, 0x1,0x42,0x30, 0x1,0x42,0x31,\n  0x1,0x42,0x32, 0x1,0x42,0x33, 0x1,0x42,0x34, 0x1,0x42,0x35,\n  0x1,0x42,0x36, 0x1,0x42,0x37, 0x1,0x42,0x38, 0x1,0x42,0x39,\n  0x1,0x42,0x3a, 0x1,0x42,0x3b, 0x1,0x42,0x3c, 0x1,0x42,0x3d,\n  0x1,0x42,0x3e, 0x1,0x42,0x3f, 0x1,0x42,0x40, 0x1,0x42,0x41,\n  0x1,0x26,0x21, 0x1,0x26,0x22, 0x1,0x26,0x23, 0x1,0x26,0x24,\n  0x1,0x26,0x25, 0x1,0x26,0x26, 0x1,0x26,0x27, 0x1,0x26,0x28,\n  0x1,0x26,0x29, 0x1,0x26,0x2a, 0x1,0x26,0x2b, 0x1,0x26,0x2c,\n  0x1,0x26,0x2d, 0x1,0x26,0x2e, 0x1,0x26,0x2f, 0x1,0x26,0x30,\n  0x1,0x26,0x31, 0x1,0x26,0x32, 0x1,0x26,0x33, 0x1,0x26,0x34,\n  0x1,0x23,0x39, 0x1,0x23,0x3a, 0x1,0x23,0x3c, 0x1,0x23,0x3d,\n  0x1,0x23,0x3e, 0x1,0x23,0x3f, 0x1,0x23,0x37, 0x1,0x23,0x36,\n  0x1,0x23,0x35, 0x1,0x23,0x34, 0x1,0x23,0x33, 0x1,0x23,0x44,\n  0x1,0x23,0x45, 0x1,0x23,0x47, 0x1,0x23,0x46, 0x1,0x23,0x40,\n  0x1,0x23,0x41, 0x1,0x23,0x43, 0x1,0x23,0x42, 0x1,0x23,0x4c,\n  0x1,0x23,0x4d, 0x1,0x23,0x4e, 0x1,0x23,0x24, 0x1,0x23,0x25,\n  0x1,0x23,0x26, 0x1,0x23,0x27, 0x1,0x23,0x28, 0x1,0x23,0x29,\n  0x1,0x23,0x2a, 0x1,0x23,0x2b, 0x1,0x23,0x32, 0x1,0x23,0x31,\n  0x1,0x23,0x30, 0x1,0x23,0x2f, 0x1,0x23,0x2e, 0x1,0x23,0x2d,\n  0x1,0x23,0x2c, 0x1,0x23,0x38, 0x1,0x23,0x3b, 0x1,0x21,0x7c,\n  0x1,0x21,0x7b, 0x1,0x21,0x75, 0x1,0x21,0x74, 0x1,0x21,0x7e,\n  0x1,0x21,0x7d, 0x1,0x21,0x7a, 0x1,0x21,0x79, 0x1,0x21,0x72,\n  0x1,0x21,0x76, 0x1,0x21,0x73, 0x1,0x23,0x48, 0x1,0x23,0x49,\n  0x1,0x23,0x4b, 0x1,0x23,0x4a, 0x1,0x21,0x78, 0x1,0x21,0x77,\n  0x1,0x22,0x54, 0x1,0x22,0x51, 0x1,0x22,0x53, 0x1,0x22,0x52,\n  0x1,0x21,0x21, 0x1,0x21,0x23, 0x1,0x21,0x24, 0x1,0x21,0x71,\n  0x1,0x21,0x52, 0x1,0x21,0x53, 0x1,0x21,0x4e, 0x1,0x21,0x4f,\n  0x1,0x21,0x56, 0x1,0x21,0x57, 0x1,0x21,0x5a, 0x1,0x21,0x5b,\n  0x1,0x21,0x4a, 0x1,0x21,0x4b, 0x1,0x22,0x65, 0x1,0x21,0x46,\n  0x1,0x21,0x47, 0x1,0x21,0x68, 0x1,0x21,0x69, 0x1,0x24,0x35,\n  0x1,0x24,0x36, 0x1,0x24,0x37, 0x1,0x24,0x38, 0x1,0x24,0x39,\n  0x1,0x24,0x3a, 0x1,0x24,0x3b, 0x1,0x24,0x3c, 0x1,0x24,0x3d,\n  0x1,0x21,0x26, 0x1,0x25,0x47, 0x1,0x25,0x48, 0x1,0x25,0x49,\n  0x1,0x25,0x4a, 0x1,0x25,0x4b, 0x1,0x25,0x4c, 0x1,0x25,0x4d,\n  0x1,0x25,0x4e, 0x1,0x25,0x4f, 0x1,0x25,0x50, 0x1,0x25,0x51,\n  0x1,0x25,0x52, 0x1,0x25,0x53, 0x1,0x25,0x54, 0x1,0x25,0x55,\n  0x1,0x25,0x56, 0x1,0x25,0x57, 0x1,0x25,0x58, 0x1,0x25,0x59,\n  0x1,0x25,0x5a, 0x1,0x25,0x5b, 0x1,0x25,0x5c, 0x1,0x25,0x5d,\n  0x1,0x25,0x5e, 0x1,0x25,0x5f, 0x1,0x25,0x60, 0x1,0x25,0x61,\n  0x1,0x25,0x62, 0x1,0x25,0x63, 0x1,0x25,0x64, 0x1,0x25,0x65,\n  0x1,0x25,0x66, 0x1,0x25,0x67, 0x1,0x25,0x68, 0x1,0x25,0x69,\n  0x1,0x25,0x6a, 0x1,0x25,0x6b, 0x1,0x22,0x21, 0x1,0x22,0x75,\n  0x1,0x22,0x76, 0x1,0x22,0x70, 0x1,0x22,0x71, 0x1,0x22,0x72,\n  0x1,0x22,0x74, 0x1,0x22,0x77, 0x1,0x22,0x73, 0x1,0x22,0x4c,\n  0x1,0x22,0x4b, 0x1,0x22,0x6f, 0x6,0x22,0x2c, 0x4,0x22,0x24,\n  0x6,0x21,0x30, 0x6,0x21,0x23, 0xf,0x21,0x6c, 0x4,0x21,0x57,\n  0x4,0x23,0x36, 0x4,0x28,0x35, 0x3,0x34,0x3b, 0x3,0x39,0x6d,\n  0x3,0x27,0x41, 0x3,0x28,0x6c, 0x3,0x23,0x23, 0x4,0x23,0x37,\n  0x4,0x25,0x34, 0x3,0x40,0x34, 0x4,0x21,0x59, 0x3,0x21,0x75,\n  0x3,0x21,0x6e, 0x3,0x21,0x71, 0x3,0x21,0x73, 0xf,0x21,0x44,\n  0x6,0x23,0x4e, 0x3,0x22,0x71, 0x4,0x22,0x31, 0x3,0x22,0x69,\n  0x3,0x22,0x6a, 0xf,0x21,0x72, 0x5,0x23,0x34, 0x3,0x24,0x4a,\n  0x3,0x24,0x47, 0x3,0x24,0x4d, 0x6,0x25,0x71, 0x3,0x27,0x46,\n  0x5,0x25,0x25, 0x4,0x25,0x39, 0x4,0x25,0x3c, 0x3,0x27,0x45,\n  0x5,0x25,0x2b, 0x4,0x25,0x3b, 0x4,0x25,0x38, 0x3,0x27,0x50,\n  0xf,0x25,0x4a, 0x3,0x2b,0x31, 0x6,0x2e,0x5a, 0x4,0x28,0x39,\n  0x3,0x2b,0x30, 0x5,0x28,0x21, 0x4,0x28,0x3a, 0x3,0x2b,0x2a,\n  0x4,0x28,0x37, 0x4,0x28,0x3c, 0x5,0x2b,0x6c, 0x3,0x34,0x49,\n  0x3,0x2f,0x52, 0x4,0x2b,0x65, 0x6,0x35,0x38, 0x4,0x30,0x45,\n  0x3,0x34,0x3e, 0x3,0x34,0x48, 0x4,0x30,0x4a, 0x4,0x36,0x38,\n  0x3,0x39,0x73, 0x4,0x36,0x32, 0x4,0x36,0x37, 0x6,0x46,0x55,\n  0x6,0x49,0x7b, 0x3,0x39,0x74, 0x3,0x40,0x35, 0x3,0x40,0x38,\n  0x3,0x40,0x3b, 0x4,0x3c,0x2c, 0x4,0x3c,0x2d, 0x4,0x3c,0x28,\n  0x4,0x3c,0x2a, 0x5,0x44,0x57, 0x4,0x42,0x37, 0x4,0x42,0x33,\n  0x4,0x42,0x2e, 0x3,0x45,0x78, 0x6,0x5a,0x73, 0x4,0x42,0x2f,\n  0x3,0x45,0x73, 0x4,0x4f,0x59, 0x3,0x45,0x72, 0x3,0x45,0x6f,\n  0x3,0x45,0x77, 0x4,0x42,0x32, 0x4,0x48,0x7b, 0x3,0x4b,0x26,\n  0x3,0x4b,0x25, 0x4,0x48,0x7d, 0x3,0x4b,0x24, 0x3,0x4b,0x28,\n  0x3,0x4b,0x2a, 0x3,0x50,0x32, 0x4,0x4f,0x5d, 0x5,0x53,0x59,\n  0x4,0x4f,0x5b, 0x3,0x54,0x3f, 0x3,0x57,0x53, 0x4,0x5a,0x67,\n  0x4,0x5a,0x68, 0x4,0x5f,0x49, 0x4,0x63,0x2f, 0x3,0x5c,0x33,\n  0x3,0x5c,0x31, 0x7,0x52,0x74, 0x7,0x57,0x4c, 0x4,0x6a,0x41,\n  0x3,0x61,0x3c, 0x4,0x22,0x33, 0xf,0x26,0x5a, 0x4,0x2b,0x69,\n  0x3,0x57,0x54, 0x3,0x21,0x76, 0x3,0x22,0x79, 0x3,0x24,0x55,\n  0x5,0x23,0x37, 0x6,0x25,0x7b, 0x6,0x25,0x7d, 0x3,0x24,0x56,\n  0x3,0x2b,0x38, 0x7,0x4d,0x3d, 0x3,0x2a,0x4c, 0x4,0x30,0x4c,\n  0x5,0x31,0x26, 0x4,0x36,0x3d, 0x4,0x3c,0x32, 0x4,0x6a,0x42,\n  0x3,0x2b,0x3a, 0x3,0x39,0x78, 0x4,0x49,0x22, 0x3,0x21,0x50,\n  0x3,0x23,0x21, 0x3,0x24,0x58, 0x5,0x25,0x2e, 0x3,0x27,0x57,\n  0x3,0x27,0x56, 0x3,0x27,0x58, 0x4,0x28,0x43, 0x3,0x2b,0x3c,\n  0x3,0x2f,0x5d, 0x3,0x2f,0x5c, 0x4,0x30,0x4d, 0x3,0x39,0x7b,\n  0x3,0x39,0x7c, 0x4,0x3c,0x34, 0x3,0x45,0x79, 0x5,0x31,0x29,\n  0x4,0x21,0x61, 0x6,0x22,0x41, 0x3,0x21,0x7e, 0x4,0x22,0x3c,\n  0x5,0x22,0x30, 0x4,0x23,0x3e, 0x4,0x23,0x3f, 0x4,0x25,0x4a,\n  0x4,0x25,0x4c, 0x4,0x25,0x48, 0x4,0x25,0x47, 0x3,0x2b,0x41,\n  0x3,0x2b,0x45, 0x3,0x2b,0x42, 0x5,0x2b,0x7c, 0x4,0x30,0x53,\n  0x3,0x2f,0x67, 0x3,0x2f,0x69, 0x4,0x30,0x57, 0x4,0x30,0x58,\n  0x4,0x30,0x52, 0x5,0x31,0x2c, 0x4,0x30,0x54, 0x4,0x30,0x59,\n  0x3,0x3a,0x24, 0x6,0x50,0x6c, 0x4,0x36,0x42, 0x4,0x36,0x45,\n  0x3,0x3a,0x22, 0x5,0x3d,0x70, 0x3,0x40,0x42, 0x4,0x42,0x41,\n  0x4,0x42,0x43, 0x4,0x42,0x42, 0x4,0x42,0x3c, 0x3,0x45,0x7d,\n  0x3,0x45,0x7b, 0x4,0x42,0x3f, 0x4,0x42,0x3e, 0x3,0x45,0x7c,\n  0x4,0x49,0x23, 0x4,0x4f,0x62, 0x4,0x4f,0x61, 0x4,0x4f,0x63,\n  0x5,0x61,0x3b, 0x4,0x55,0x6c, 0x7,0x3e,0x7d, 0x4,0x5f,0x4a,\n  0x4,0x63,0x30, 0x4,0x21,0x64, 0x4,0x22,0x40, 0x4,0x23,0x44,\n  0x3,0x24,0x64, 0x4,0x25,0x4f, 0x6,0x29,0x6f, 0x6,0x2f,0x27,\n  0x4,0x2b,0x75, 0x3,0x2f,0x6b, 0x4,0x30,0x5a, 0x4,0x36,0x4b,\n  0x3,0x46,0x22, 0x4,0x55,0x6f, 0x3,0x54,0x43, 0x4,0x55,0x70,\n  0x5,0x53,0x63, 0x4,0x5a,0x6e, 0x4,0x30,0x5c, 0x4,0x36,0x4d,\n  0x5,0x3d,0x78, 0x6,0x29,0x72, 0x3,0x34,0x53, 0x5,0x70,0x78,\n  0x4,0x23,0x4b, 0x6,0x26,0x38, 0x4,0x2b,0x77, 0x3,0x3a,0x25,\n  0x6,0x50,0x76, 0x4,0x3c,0x3e, 0x5,0x44,0x6c, 0x4,0x6d,0x53,\n  0x6,0x26,0x36, 0x4,0x36,0x50, 0x3,0x21,0x58, 0x6,0x23,0x71,\n  0x3,0x23,0x2c, 0x6,0x50,0x7a, 0x3,0x27,0x64, 0x4,0x21,0x2b,\n  0x6,0x21,0x3b, 0x6,0x28,0x64, 0x4,0x25,0x56, 0x3,0x23,0x30,\n  0x5,0x22,0x3c, 0x3,0x23,0x2e, 0x3,0x24,0x6a, 0x3,0x24,0x69,\n  0x3,0x24,0x68, 0x3,0x27,0x68, 0x6,0x2a,0x2a, 0x3,0x2b,0x4c,\n  0x3,0x2f,0x70, 0x4,0x2b,0x7a, 0x3,0x2f,0x71, 0x4,0x36,0x51,\n  0x6,0x51,0x22, 0x5,0x4c,0x31, 0x3,0x46,0x24, 0x4,0x49,0x27,\n  0x3,0x60,0x70, 0x3,0x21,0x5d, 0x3,0x2f,0x72, 0x6,0x3d,0x61,\n  0x3,0x34,0x56, 0x4,0x49,0x29, 0x5,0x21,0x41, 0x3,0x21,0x5f,\n  0x3,0x23,0x32, 0x4,0x25,0x5a, 0x4,0x28,0x57, 0x3,0x3f,0x78,\n  0x3,0x46,0x27, 0x4,0x47,0x56, 0x4,0x21,0x6b, 0x3,0x22,0x30,\n  0x3,0x22,0x2c, 0x3,0x23,0x38, 0x3,0x23,0x36, 0x3,0x24,0x6c,\n  0x4,0x23,0x51, 0x3,0x24,0x6b, 0x3,0x24,0x71, 0x4,0x23,0x54,\n  0x4,0x23,0x59, 0x3,0x24,0x72, 0x4,0x23,0x53, 0x3,0x24,0x6f,\n  0x3,0x24,0x6e, 0x3,0x24,0x7a, 0xf,0x23,0x49, 0x3,0x25,0x25,\n  0x3,0x27,0x7a, 0x3,0x27,0x6d, 0x4,0x25,0x5d, 0x3,0x27,0x76,\n  0x5,0x25,0x42, 0x6,0x2a,0x39, 0x3,0x2b,0x52, 0x3,0x2b,0x60,\n  0x3,0x2b,0x5f, 0x3,0x2b,0x62, 0x3,0x2b,0x5a, 0x4,0x28,0x59,\n  0x4,0x28,0x5c, 0x3,0x2b,0x56, 0xf,0x29,0x5c, 0x4,0x2c,0x25,\n  0x3,0x2f,0x7d, 0x4,0x2b,0x7e, 0x3,0x2f,0x75, 0x3,0x2f,0x7c,\n  0x4,0x2c,0x21, 0x4,0x2b,0x7d, 0x6,0x35,0x7d, 0x3,0x30,0x24,\n  0x5,0x2c,0x43, 0x3,0x34,0x5d, 0x3,0x34,0x65, 0x4,0x30,0x6a,\n  0x5,0x36,0x70, 0x3,0x34,0x63, 0x3,0x34,0x5c, 0x4,0x30,0x70,\n  0x3,0x34,0x5a, 0x4,0x30,0x73, 0x4,0x30,0x71, 0x4,0x30,0x6d,\n  0x4,0x30,0x6c, 0xf,0x33,0x43, 0x3,0x38,0x53, 0x4,0x30,0x6f,\n  0x5,0x36,0x76, 0x3,0x3a,0x32, 0x4,0x36,0x67, 0x3,0x3a,0x35,\n  0x3,0x3a,0x2c, 0x4,0x36,0x5e, 0x4,0x36,0x59, 0x3,0x3a,0x39,\n  0x3,0x3a,0x3e, 0x3,0x3a,0x2d, 0x4,0x36,0x60, 0x3,0x3a,0x3d,\n  0x4,0x36,0x5f, 0x3,0x3a,0x37, 0x6,0x47,0x39, 0x5,0x36,0x79,\n  0x5,0x36,0x7a, 0x3,0x3a,0x30, 0x4,0x36,0x58, 0x4,0x36,0x65,\n  0x4,0x36,0x63, 0x3,0x3a,0x41, 0x5,0x36,0x6e, 0x3,0x3a,0x3f,\n  0x3,0x3a,0x3a, 0x5,0x3e,0x39, 0x4,0x3c,0x4a, 0x4,0x3c,0x46,\n  0x3,0x40,0x4f, 0x5,0x3e,0x3d, 0x4,0x3c,0x47, 0x4,0x3c,0x4c,\n  0x3,0x40,0x4d, 0x3,0x40,0x50, 0x6,0x51,0x32, 0x4,0x42,0x52,\n  0x3,0x46,0x32, 0x3,0x46,0x2f, 0x3,0x46,0x2d, 0x4,0x42,0x4f,\n  0x4,0x42,0x4a, 0x4,0x42,0x55, 0x3,0x46,0x2b, 0x3,0x4b,0x3a,\n  0x4,0x42,0x53, 0x4,0x42,0x56, 0x4,0x42,0x51, 0x5,0x45,0x22,\n  0x4,0x49,0x30, 0x4,0x49,0x2c, 0x3,0x4b,0x42, 0x4,0x49,0x2d,\n  0x3,0x4b,0x36, 0x7,0x21,0x4e, 0x4,0x4f,0x6b, 0x4,0x4f,0x6c,\n  0x3,0x50,0x41, 0x4,0x4f,0x67, 0x4,0x4f,0x6a, 0x4,0x4f,0x6f,\n  0x3,0x50,0x3c, 0x3,0x50,0x3a, 0x7,0x37,0x37, 0x4,0x55,0x72,\n  0x3,0x54,0x46, 0x4,0x55,0x73, 0x4,0x4f,0x6d, 0x5,0x61,0x40,\n  0x4,0x5a,0x70, 0x3,0x57,0x56, 0x5,0x61,0x45, 0x4,0x5f,0x4c,\n  0x5,0x67,0x59, 0x5,0x6b,0x73, 0x3,0x5c,0x35, 0x3,0x5e,0x27,\n  0x4,0x66,0x32, 0x3,0x60,0x2e, 0x3,0x60,0x2d, 0x4,0x6c,0x6c,\n  0x7,0x62,0x2f, 0x3,0x22,0x32, 0x3,0x22,0x21, 0x3,0x23,0x3d,\n  0x5,0x25,0x53, 0x3,0x27,0x7e, 0x3,0x2b,0x64, 0x3,0x30,0x26,\n  0x4,0x42,0x58, 0x4,0x63,0x32, 0x3,0x22,0x33, 0x3,0x25,0x2e,\n  0x4,0x23,0x5f, 0x3,0x25,0x39, 0x3,0x25,0x3a, 0x4,0x23,0x5e,\n  0x3,0x25,0x3d, 0x3,0x25,0x3f, 0x3,0x25,0x3b, 0x3,0x25,0x34,\n  0x3,0x28,0x27, 0x4,0x25,0x6d, 0x3,0x28,0x2b, 0x3,0x28,0x2c,\n  0x3,0x2b,0x76, 0x6,0x2f,0x65, 0x3,0x2b,0x74, 0x3,0x2b,0x75,\n  0x3,0x2b,0x73, 0x3,0x2b,0x6f, 0x3,0x30,0x29, 0x4,0x2c,0x2f,\n  0x4,0x2c,0x31, 0x3,0x30,0x2d, 0x3,0x30,0x2c, 0x3,0x30,0x2e,\n  0x3,0x30,0x31, 0x3,0x34,0x6c, 0x3,0x34,0x6d, 0x3,0x34,0x73,\n  0x3,0x34,0x6a, 0xf,0x33,0x57, 0x4,0x31,0x21, 0x4,0x36,0x6b,\n  0x3,0x3a,0x46, 0x4,0x36,0x6e, 0x3,0x3a,0x51, 0x6,0x47,0x4e,\n  0x3,0x3a,0x48, 0x3,0x3a,0x4d, 0x4,0x3c,0x59, 0x4,0x3c,0x5b,\n  0x3,0x40,0x53, 0x3,0x40,0x55, 0x4,0x3c,0x56, 0x4,0x3c,0x58,\n  0x4,0x42,0x5e, 0x4,0x42,0x5d, 0x4,0x42,0x5b, 0x3,0x46,0x3b,\n  0x4,0x42,0x5f, 0x3,0x46,0x39, 0x7,0x21,0x6a, 0x3,0x4b,0x52,\n  0x3,0x4b,0x48, 0x4,0x49,0x33, 0x3,0x4b,0x4a, 0x3,0x4b,0x4e,\n  0xf,0x4e,0x25, 0xf,0x4e,0x2e, 0x4,0x49,0x2a, 0x3,0x50,0x44,\n  0x4,0x4f,0x78, 0x3,0x50,0x47, 0x3,0x50,0x42, 0x3,0x50,0x43,\n  0x3,0x50,0x46, 0x3,0x50,0x45, 0x4,0x55,0x7c, 0x3,0x54,0x4d,\n  0x3,0x54,0x4a, 0x4,0x55,0x7b, 0x7,0x3f,0x30, 0x3,0x57,0x5d,\n  0x7,0x46,0x44, 0x5,0x6b,0x76, 0x3,0x60,0x72, 0x4,0x6c,0x6e,\n  0x5,0x37,0x3c, 0x3,0x4d,0x41, 0x3,0x2b,0x78, 0x4,0x28,0x61,\n  0x5,0x25,0x58, 0x4,0x36,0x77, 0x4,0x42,0x60, 0x3,0x46,0x47,\n  0x4,0x5a,0x7a, 0x3,0x22,0x3a, 0x3,0x23,0x46, 0x3,0x23,0x48,\n  0x4,0x23,0x65, 0x3,0x25,0x4a, 0x4,0x25,0x71, 0x5,0x25,0x59,\n  0x4,0x25,0x77, 0x4,0x25,0x73, 0x4,0x25,0x78, 0x3,0x2b,0x7d,\n  0x4,0x31,0x25, 0x6,0x3e,0x42, 0x3,0x34,0x7a, 0x3,0x3a,0x55,\n  0x4,0x3c,0x5c, 0x3,0x50,0x3e, 0x3,0x21,0x74, 0x3,0x23,0x4c,\n  0x3,0x23,0x4a, 0x4,0x22,0x56, 0x4,0x22,0x59, 0x4,0x22,0x55,\n  0x3,0x23,0x49, 0x3,0x25,0x52, 0x3,0x25,0x57, 0x3,0x25,0x50,\n  0x3,0x25,0x4f, 0x3,0x25,0x4d, 0x3,0x25,0x54, 0x3,0x28,0x31,\n  0x3,0x28,0x3b, 0x4,0x25,0x7b, 0x3,0x28,0x42, 0x3,0x28,0x32,\n  0x3,0x28,0x3a, 0x3,0x28,0x43, 0x3,0x28,0x47, 0x3,0x28,0x34,\n  0x4,0x26,0x21, 0x3,0x28,0x44, 0x3,0x28,0x3e, 0x3,0x28,0x36,\n  0x3,0x28,0x3c, 0x5,0x25,0x5d, 0x3,0x28,0x39, 0x3,0x28,0x30,\n  0x4,0x28,0x6d, 0x4,0x28,0x69, 0x3,0x2b,0x7e, 0x3,0x2c,0x22,\n  0xf,0x2a,0x2a, 0x4,0x28,0x67, 0x3,0x30,0x3f, 0x3,0x30,0x42,\n  0x3,0x30,0x3d, 0x3,0x30,0x49, 0x3,0x30,0x47, 0x4,0x2c,0x3b,\n  0x3,0x30,0x43, 0x3,0x30,0x50, 0x3,0x30,0x4c, 0x3,0x30,0x44,\n  0x4,0x2c,0x3f, 0x4,0x2c,0x3a, 0x3,0x30,0x39, 0x4,0x2c,0x3c,\n  0x3,0x30,0x51, 0x3,0x30,0x46, 0x3,0x30,0x41, 0x3,0x30,0x3a,\n  0xf,0x2e,0x6b, 0xf,0x2e,0x78, 0x4,0x31,0x29, 0x3,0x35,0x26,\n  0x3,0x35,0x2d, 0x3,0x35,0x21, 0x3,0x35,0x36, 0x4,0x31,0x28,\n  0x3,0x35,0x2c, 0x3,0x35,0x23, 0x3,0x35,0x25, 0x3,0x3a,0x71,\n  0x3,0x3a,0x67, 0x3,0x3a,0x74, 0x3,0x3a,0x64, 0x3,0x3a,0x76,\n  0x3,0x3a,0x6c, 0x3,0x3a,0x6a, 0x3,0x3a,0x65, 0x5,0x37,0x4e,\n  0x3,0x3a,0x6e, 0x5,0x37,0x46, 0x4,0x36,0x7e, 0x3,0x3a,0x6f,\n  0x3,0x3a,0x5f, 0x4,0x36,0x7d, 0x3,0x3a,0x70, 0x3,0x3a,0x5d,\n  0xf,0x3a,0x3c, 0x3,0x3a,0x6d, 0x3,0x3a,0x69, 0x3,0x3a,0x68,\n  0x4,0x3c,0x5f, 0x3,0x40,0x62, 0x4,0x3c,0x61, 0x3,0x40,0x6e,\n  0x3,0x40,0x6d, 0x3,0x40,0x68, 0x3,0x40,0x63, 0x4,0x3c,0x64,\n  0x3,0x40,0x65, 0x4,0x3c,0x63, 0x3,0x40,0x70, 0x3,0x40,0x6b,\n  0x3,0x40,0x6f, 0x3,0x40,0x6c, 0x3,0x40,0x69, 0x3,0x46,0x4b,\n  0x4,0x42,0x67, 0x4,0x42,0x6c, 0x4,0x42,0x68, 0x4,0x42,0x66,\n  0x3,0x46,0x49, 0x3,0x46,0x52, 0x3,0x46,0x51, 0x4,0x42,0x6b,\n  0x4,0x42,0x6d, 0x3,0x46,0x4d, 0x3,0x46,0x4e, 0x4,0x42,0x69,\n  0x4,0x49,0x3c, 0x4,0x49,0x3a, 0x3,0x4b,0x59, 0x3,0x4b,0x57,\n  0x4,0x49,0x40, 0x3,0x4b,0x55, 0x3,0x50,0x52, 0x3,0x50,0x55,\n  0x4,0x50,0x21, 0xf,0x54,0x2a, 0x4,0x56,0x22, 0x4,0x56,0x24,\n  0x3,0x57,0x5f, 0x3,0x57,0x60, 0x4,0x5f,0x54, 0x5,0x67,0x5e,\n  0x3,0x5a,0x30, 0x3,0x5a,0x32, 0x3,0x5c,0x37, 0x4,0x63,0x35,\n  0x3,0x5c,0x38, 0x4,0x66,0x37, 0x4,0x68,0x65, 0x3,0x61,0x62,\n  0x3,0x61,0x63, 0x3,0x23,0x4e, 0x6,0x26,0x78, 0x4,0x23,0x6d,\n  0x3,0x28,0x49, 0x4,0x28,0x70, 0x4,0x2c,0x41, 0x3,0x30,0x54,\n  0x3,0x3a,0x7d, 0x4,0x3c,0x67, 0x7,0x2d,0x2d, 0x3,0x61,0x3d,\n  0x3,0x22,0x3c, 0x3,0x23,0x4f, 0x6,0x26,0x79, 0x3,0x25,0x59,\n  0x4,0x23,0x70, 0x3,0x25,0x5b, 0x6,0x26,0x7a, 0x3,0x28,0x4f,\n  0x5,0x28,0x6e, 0x3,0x2c,0x30, 0x3,0x2c,0x31, 0x3,0x2c,0x33,\n  0x4,0x2c,0x42, 0x5,0x2c,0x7c, 0x6,0x36,0x5d, 0x3,0x35,0x42,\n  0x3,0x35,0x3d, 0x3,0x35,0x3e, 0x4,0x31,0x2e, 0x6,0x3e,0x5a,\n  0x3,0x35,0x40, 0x3,0x3b,0x21, 0x4,0x37,0x22, 0x4,0x3c,0x6a,\n  0x4,0x3c,0x6c, 0x4,0x3c,0x6f, 0x3,0x40,0x77, 0x4,0x42,0x74,\n  0x4,0x42,0x75, 0x3,0x4b,0x60, 0x4,0x42,0x77, 0x4,0x49,0x43,\n  0x4,0x49,0x45, 0x4,0x49,0x46, 0x4,0x5a,0x7d, 0x3,0x5e,0x2b,\n  0x7,0x62,0x35, 0x4,0x23,0x71, 0x4,0x26,0x26, 0x6,0x36,0x68,\n  0x3,0x3b,0x22, 0x4,0x2c,0x4c, 0x6,0x3e,0x64, 0x4,0x42,0x78,\n  0x5,0x4c,0x63, 0x4,0x22,0x5d, 0x4,0x23,0x74, 0x4,0x26,0x28,\n  0x4,0x26,0x27, 0x4,0x28,0x74, 0x4,0x28,0x75, 0x4,0x2c,0x4d,\n  0x5,0x31,0x75, 0x4,0x31,0x33, 0x5,0x31,0x73, 0x4,0x31,0x32,\n  0x4,0x37,0x28, 0x4,0x37,0x29, 0x4,0x3c,0x71, 0x4,0x42,0x79,\n  0x3,0x22,0x40, 0x3,0x23,0x53, 0x4,0x26,0x2a, 0x3,0x28,0x52,\n  0x3,0x28,0x53, 0x4,0x28,0x79, 0x4,0x28,0x78, 0x3,0x2c,0x39,\n  0x3,0x2c,0x38, 0x3,0x2c,0x36, 0x4,0x2c,0x4e, 0x6,0x3e,0x6b,\n  0x3,0x35,0x45, 0x4,0x37,0x2b, 0x5,0x37,0x66, 0x4,0x42,0x7d,\n  0x4,0x49,0x4a, 0x3,0x5a,0x37, 0x3,0x21,0x62, 0x4,0x23,0x77,\n  0x3,0x22,0x42, 0x3,0x22,0x43, 0x3,0x22,0x41, 0x3,0x22,0x44,\n  0x3,0x23,0x56, 0x4,0x22,0x61, 0x5,0x22,0x51, 0x4,0x23,0x7b,\n  0x5,0x22,0x50, 0x3,0x23,0x57, 0x3,0x23,0x58, 0x4,0x23,0x78,\n  0x4,0x23,0x79, 0x3,0x25,0x60, 0x5,0x23,0x70, 0x5,0x23,0x74,\n  0x3,0x25,0x64, 0x3,0x25,0x65, 0x4,0x23,0x76, 0x3,0x28,0x5b,\n  0x6,0x2a,0x7b, 0x4,0x26,0x31, 0x4,0x26,0x32, 0x4,0x26,0x2e,\n  0x3,0x28,0x56, 0x6,0x2a,0x76, 0x3,0x28,0x59, 0x3,0x28,0x5a,\n  0x5,0x25,0x6e, 0x3,0x2c,0x3a, 0x4,0x28,0x7b, 0x4,0x2c,0x5b,\n  0x4,0x2c,0x53, 0x4,0x2c,0x51, 0x3,0x30,0x60, 0x4,0x2c,0x5f,\n  0x4,0x2c,0x55, 0x3,0x30,0x5c, 0x4,0x2c,0x5a, 0x4,0x2c,0x5e,\n  0x4,0x2c,0x57, 0x3,0x30,0x5d, 0x6,0x36,0x7c, 0x5,0x2d,0x2e,\n  0x3,0x30,0x65, 0x4,0x2c,0x54, 0x3,0x35,0x56, 0x3,0x35,0x49,\n  0x4,0x31,0x37, 0x3,0x35,0x4c, 0x4,0x31,0x3d, 0x6,0x3e,0x75,\n  0x3,0x35,0x4d, 0x4,0x31,0x39, 0x6,0x3e,0x78, 0x3,0x35,0x50,\n  0xf,0x34,0x3f, 0x3,0x35,0x53, 0x3,0x3b,0x2f, 0x3,0x3b,0x32,\n  0x3,0x3b,0x29, 0x4,0x37,0x32, 0x4,0x37,0x34, 0x3,0x3b,0x35,\n  0x4,0x3c,0x72, 0x3,0x3b,0x30, 0x3,0x3b,0x2c, 0x4,0x3c,0x76,\n  0x4,0x3c,0x73, 0x4,0x3c,0x7e, 0x5,0x3e,0x6d, 0x4,0x3d,0x21,\n  0x6,0x52,0x34, 0x3,0x40,0x7b, 0x4,0x3c,0x77, 0x4,0x43,0x22,\n  0x6,0x5c,0x44, 0x4,0x43,0x2d, 0x4,0x43,0x2a, 0x4,0x43,0x21,\n  0x3,0x46,0x55, 0x4,0x43,0x24, 0x3,0x46,0x5b, 0x3,0x46,0x58,\n  0x4,0x43,0x2e, 0x3,0x46,0x57, 0x4,0x49,0x50, 0x4,0x49,0x4c,\n  0x5,0x4c,0x6c, 0x3,0x4b,0x62, 0x5,0x4c,0x68, 0x4,0x49,0x4b,\n  0x4,0x49,0x53, 0x3,0x4b,0x64, 0x4,0x49,0x4f, 0x4,0x49,0x4d,\n  0x3,0x4b,0x61, 0x4,0x49,0x54, 0x4,0x50,0x26, 0x4,0x50,0x27,\n  0x4,0x56,0x28, 0x4,0x50,0x25, 0x5,0x54,0x36, 0x3,0x50,0x59,\n  0x7,0x2d,0x4c, 0x3,0x54,0x5a, 0x3,0x54,0x56, 0x5,0x5b,0x3c,\n  0x4,0x56,0x27, 0x3,0x54,0x58, 0x7,0x3f,0x44, 0x4,0x5f,0x5a,\n  0x5,0x67,0x63, 0x5,0x67,0x64, 0x4,0x66,0x3a, 0x3,0x5e,0x2c,\n  0x4,0x68,0x68, 0x5,0x7b,0x3d, 0x3,0x23,0x5b, 0x6,0x21,0x6e,\n  0x3,0x3b,0x38, 0x4,0x49,0x55, 0x3,0x22,0x45, 0x4,0x31,0x42,\n  0x3,0x22,0x46, 0x4,0x22,0x65, 0x4,0x22,0x66, 0x3,0x23,0x5d,\n  0x4,0x24,0x22, 0x4,0x24,0x24, 0x3,0x25,0x69, 0x4,0x24,0x21,\n  0x3,0x25,0x6a, 0xf,0x24,0x25, 0x4,0x26,0x36, 0x4,0x26,0x37,\n  0x4,0x29,0x25, 0x4,0x24,0x25, 0x4,0x29,0x22, 0x4,0x29,0x24,\n  0x6,0x30,0x63, 0x3,0x2c,0x47, 0x4,0x29,0x23, 0x4,0x29,0x21,\n  0x4,0x2c,0x66, 0x4,0x2c,0x68, 0x4,0x31,0x47, 0x4,0x31,0x48,\n  0x4,0x31,0x45, 0x4,0x31,0x49, 0x3,0x35,0x5c, 0x4,0x37,0x3b,\n  0x4,0x37,0x36, 0x4,0x37,0x3d, 0x4,0x37,0x3a, 0x3,0x3b,0x3c,\n  0x4,0x37,0x3c, 0x3,0x3b,0x39, 0x4,0x37,0x39, 0x4,0x3d,0x28,\n  0x4,0x3d,0x23, 0x4,0x3d,0x27, 0x4,0x3d,0x26, 0x4,0x3d,0x29,\n  0x4,0x43,0x33, 0x4,0x43,0x32, 0x4,0x43,0x31, 0x4,0x43,0x2f,\n  0x3,0x4b,0x6e, 0x3,0x4b,0x6f, 0x4,0x50,0x29, 0x4,0x56,0x2d,\n  0x4,0x56,0x2b, 0x4,0x63,0x3b, 0x4,0x63,0x3a, 0x3,0x5f,0x44,\n  0x4,0x68,0x6b, 0x6,0x48,0x44, 0x3,0x46,0x5e, 0x4,0x50,0x2b,\n  0x3,0x23,0x60, 0x3,0x23,0x5f, 0x3,0x23,0x5e, 0x3,0x25,0x6c,\n  0x6,0x27,0x47, 0x4,0x26,0x38, 0x4,0x26,0x3d, 0x4,0x26,0x3b,\n  0x5,0x26,0x26, 0x4,0x26,0x3c, 0x3,0x28,0x64, 0x4,0x26,0x3a,\n  0x3,0x28,0x66, 0xf,0x2f,0x38, 0x3,0x2c,0x49, 0x3,0x2c,0x4a,\n  0x4,0x29,0x2a, 0x5,0x29,0x26, 0x4,0x29,0x29, 0x4,0x29,0x28,\n  0x4,0x2c,0x6b, 0x4,0x2c,0x6d, 0x4,0x2c,0x6c, 0x3,0x30,0x6d,\n  0x3,0x35,0x5e, 0x4,0x31,0x4e, 0x4,0x31,0x4c, 0x4,0x31,0x4f,\n  0x3,0x35,0x5d, 0x5,0x38,0x29, 0x4,0x37,0x40, 0x4,0x37,0x41,\n  0x3,0x3b,0x41, 0x5,0x3f,0x21, 0x4,0x43,0x36, 0x3,0x46,0x5f,\n  0x4,0x43,0x39, 0x4,0x43,0x3a, 0x4,0x49,0x5b, 0x4,0x49,0x5c,\n  0x3,0x4b,0x71, 0x3,0x50,0x5d, 0x4,0x50,0x2c, 0x4,0x50,0x2e,\n  0x5,0x54,0x42, 0x4,0x5f,0x5e, 0x4,0x63,0x3c, 0x4,0x24,0x29,\n  0x3,0x28,0x6a, 0x3,0x46,0x62, 0x7,0x2d,0x5b, 0x4,0x29,0x2b,\n  0x4,0x3d,0x2d, 0x6,0x21,0x79, 0x4,0x22,0x6a, 0x3,0x23,0x63,\n  0x3,0x23,0x64, 0x3,0x25,0x70, 0x3,0x28,0x6f, 0x4,0x26,0x40,\n  0x4,0x26,0x41, 0x3,0x2c,0x4e, 0x4,0x29,0x2d, 0x6,0x30,0x7a,\n  0x4,0x29,0x2e, 0x3,0x2c,0x4f, 0x4,0x2c,0x71, 0x5,0x32,0x46,\n  0x4,0x31,0x51, 0x4,0x2c,0x72, 0x3,0x3b,0x46, 0x3,0x3b,0x43,\n  0x5,0x3f,0x29, 0x4,0x3d,0x2f, 0x4,0x3d,0x2e, 0x6,0x52,0x4d,\n  0x4,0x49,0x5d, 0x4,0x49,0x5f, 0x3,0x5e,0x2e, 0x4,0x26,0x42,\n  0x4,0x50,0x31, 0x6,0x24,0x70, 0x3,0x28,0x73, 0x4,0x26,0x43,\n  0x3,0x28,0x72, 0x3,0x35,0x64, 0x3,0x3b,0x48, 0x3,0x3b,0x49,\n  0x4,0x43,0x3b, 0x4,0x49,0x61, 0x3,0x50,0x5f, 0x3,0x22,0x4b,\n  0x6,0x2b,0x3e, 0x3,0x28,0x74, 0x4,0x29,0x32, 0x4,0x29,0x34,\n  0x3,0x2c,0x52, 0x5,0x29,0x2f, 0x5,0x29,0x33, 0x3,0x2c,0x53,\n  0x6,0x31,0x25, 0x5,0x2d,0x47, 0xf,0x2f,0x3e, 0x4,0x31,0x54,\n  0x3,0x35,0x66, 0x3,0x35,0x67, 0x4,0x37,0x49, 0x3,0x3b,0x4a,\n  0x4,0x37,0x48, 0x4,0x3d,0x33, 0x5,0x45,0x69, 0x4,0x43,0x3d,\n  0x6,0x5c,0x67, 0x3,0x50,0x60, 0x4,0x50,0x34, 0x4,0x56,0x2f,\n  0x6,0x21,0x7e, 0x3,0x23,0x65, 0x3,0x23,0x68, 0x4,0x24,0x31,\n  0x5,0x22,0x67, 0x4,0x22,0x70, 0x3,0x28,0x7b, 0x3,0x28,0x7d,\n  0x3,0x25,0x79, 0x4,0x24,0x2e, 0x3,0x28,0x7c, 0x4,0x24,0x30,\n  0x4,0x24,0x33, 0x3,0x25,0x73, 0x4,0x24,0x2f, 0x4,0x24,0x32,\n  0x3,0x26,0x24, 0x3,0x28,0x79, 0x4,0x29,0x35, 0x4,0x29,0x37,\n  0x4,0x26,0x4d, 0x3,0x2c,0x59, 0x3,0x29,0x24, 0x4,0x26,0x48,\n  0x3,0x29,0x23, 0x4,0x26,0x4e, 0x4,0x26,0x4c, 0x4,0x26,0x46,\n  0xf,0x2a,0x3e, 0x3,0x2c,0x58, 0x4,0x29,0x41, 0x3,0x2c,0x62,\n  0x4,0x29,0x3c, 0x4,0x26,0x49, 0x4,0x29,0x39, 0x3,0x30,0x7d,\n  0x6,0x37,0x54, 0x4,0x29,0x3d, 0x5,0x29,0x35, 0x4,0x2d,0x28,\n  0x4,0x29,0x48, 0x4,0x29,0x3a, 0x4,0x29,0x3b, 0x4,0x29,0x40,\n  0x3,0x2c,0x55, 0x6,0x37,0x5a, 0x3,0x30,0x7c, 0x3,0x2c,0x5e,\n  0x4,0x31,0x5b, 0x5,0x2d,0x5a, 0x3,0x35,0x73, 0x4,0x2d,0x22,\n  0x3,0x35,0x69, 0x3,0x30,0x75, 0x4,0x2d,0x23, 0x3,0x35,0x70,\n  0x4,0x2d,0x24, 0x3,0x30,0x77, 0x6,0x37,0x5e, 0x3,0x31,0x24,\n  0x4,0x2d,0x2b, 0x4,0x31,0x5a, 0x4,0x31,0x5c, 0x4,0x31,0x62,\n  0x3,0x35,0x6b, 0x6,0x48,0x6f, 0x4,0x31,0x63, 0x3,0x35,0x75,\n  0x4,0x31,0x60, 0x5,0x32,0x5b, 0x4,0x31,0x5d, 0x3,0x35,0x6c,\n  0x3,0x3b,0x4e, 0x4,0x31,0x6c, 0x4,0x31,0x67, 0x3,0x3b,0x4c,\n  0x3,0x35,0x6d, 0x3,0x35,0x77, 0x3,0x3b,0x57, 0x4,0x31,0x64,\n  0x6,0x48,0x75, 0x3,0x3b,0x53, 0x4,0x31,0x66, 0x4,0x31,0x5e,\n  0x5,0x2d,0x57, 0x3,0x3b,0x52, 0x5,0x38,0x42, 0x4,0x31,0x6a,\n  0x5,0x38,0x48, 0x4,0x37,0x56, 0x4,0x37,0x50, 0x3,0x3b,0x5c,\n  0x4,0x37,0x59, 0x3,0x3b,0x5f, 0x4,0x37,0x54, 0x4,0x37,0x4e,\n  0x5,0x3f,0x32, 0x3,0x41,0x25, 0x4,0x37,0x55, 0x4,0x3d,0x3e,\n  0x3,0x3b,0x60, 0x4,0x3d,0x37, 0x5,0x32,0x58, 0x3,0x3b,0x5b,\n  0x3,0x41,0x26, 0x3,0x41,0x2d, 0x4,0x3d,0x3b, 0x4,0x43,0x43,\n  0x5,0x3f,0x42, 0x6,0x52,0x69, 0x3,0x46,0x67, 0x4,0x3d,0x3a,\n  0x4,0x3d,0x3c, 0x3,0x41,0x30, 0x3,0x46,0x65, 0x4,0x43,0x42,\n  0x4,0x43,0x50, 0x3,0x46,0x66, 0x3,0x41,0x2f, 0x4,0x43,0x48,\n  0x4,0x43,0x47, 0x4,0x43,0x49, 0x3,0x4b,0x7d, 0x4,0x43,0x4d,\n  0x4,0x49,0x65, 0x3,0x4c,0x22, 0x3,0x46,0x69, 0x3,0x4b,0x7b,\n  0x4,0x43,0x4a, 0x4,0x43,0x4c, 0x4,0x43,0x46, 0x3,0x4c,0x27,\n  0x3,0x4b,0x78, 0x4,0x43,0x4b, 0x4,0x50,0x38, 0x3,0x4c,0x2a,\n  0x4,0x49,0x67, 0x4,0x49,0x69, 0x4,0x49,0x68, 0x4,0x49,0x6b,\n  0x7,0x22,0x7c, 0x4,0x49,0x6d, 0x3,0x50,0x69, 0x4,0x49,0x6c,\n  0x3,0x4c,0x26, 0x4,0x50,0x39, 0x5,0x5b,0x4c, 0x4,0x5b,0x23,\n  0x4,0x5b,0x29, 0x4,0x56,0x36, 0x4,0x5b,0x25, 0x3,0x57,0x67,\n  0x4,0x5b,0x24, 0xf,0x5a,0x29, 0x3,0x57,0x66, 0x4,0x50,0x3a,\n  0x5,0x67,0x78, 0x4,0x63,0x43, 0x4,0x5f,0x64, 0x5,0x67,0x73,\n  0x7,0x47,0x2c, 0x3,0x5e,0x30, 0x4,0x63,0x42, 0x4,0x63,0x40,\n  0x3,0x5f,0x47, 0x4,0x68,0x6c, 0x3,0x61,0x78, 0x3,0x23,0x6a,\n  0x3,0x26,0x26, 0x4,0x26,0x54, 0x6,0x2b,0x52, 0x4,0x2d,0x2f,\n  0x4,0x2d,0x30, 0x5,0x2d,0x5d, 0x3,0x35,0x7a, 0x3,0x3b,0x65,\n  0x4,0x3d,0x42, 0x4,0x43,0x54, 0x5,0x4d,0x37, 0x3,0x4c,0x2b,\n  0x3,0x54,0x62, 0x6,0x27,0x6e, 0x4,0x26,0x55, 0x4,0x26,0x56,\n  0x4,0x29,0x4d, 0x3,0x2c,0x64, 0x4,0x21,0x7b, 0x4,0x21,0x7a,\n  0x3,0x22,0x4f, 0x4,0x22,0x74, 0x4,0x22,0x73, 0x4,0x22,0x75,\n  0x4,0x24,0x3a, 0x4,0x24,0x36, 0x3,0x26,0x2c, 0x3,0x26,0x2d,\n  0x3,0x26,0x30, 0x3,0x26,0x2b, 0x4,0x26,0x58, 0x3,0x29,0x2d,\n  0x5,0x26,0x3a, 0x3,0x29,0x2c, 0x3,0x29,0x38, 0x4,0x29,0x55,\n  0x4,0x2d,0x33, 0x4,0x26,0x59, 0x3,0x29,0x2b, 0xf,0x27,0x2e,\n  0x4,0x29,0x4e, 0x4,0x29,0x54, 0x3,0x2c,0x66, 0x3,0x29,0x27,\n  0x3,0x2c,0x67, 0x3,0x2c,0x69, 0x4,0x2d,0x3c, 0x3,0x2c,0x71,\n  0x4,0x29,0x56, 0x3,0x2c,0x68, 0x4,0x29,0x52, 0x4,0x2d,0x32,\n  0x4,0x2d,0x31, 0x3,0x2c,0x6a, 0x3,0x2c,0x65, 0x3,0x31,0x34,\n  0x3,0x31,0x2a, 0x3,0x35,0x7b, 0x3,0x31,0x31, 0x3,0x31,0x3a,\n  0x4,0x2d,0x3b, 0x3,0x31,0x2d, 0x3,0x31,0x2b, 0x4,0x31,0x7c,\n  0x4,0x32,0x21, 0x4,0x31,0x7b, 0x3,0x36,0x2c, 0x6,0x40,0x32,\n  0x4,0x32,0x25, 0x3,0x36,0x2f, 0x3,0x36,0x30, 0x4,0x31,0x79,\n  0x3,0x35,0x7e, 0x4,0x31,0x71, 0x3,0x36,0x25, 0x4,0x31,0x7e,\n  0x4,0x31,0x7a, 0x3,0x3b,0x6b, 0x3,0x36,0x2a, 0x4,0x37,0x6e,\n  0x4,0x37,0x62, 0x3,0x36,0x21, 0x4,0x3d,0x45, 0x3,0x41,0x31,\n  0x4,0x37,0x64, 0x3,0x3b,0x6a, 0x4,0x37,0x6b, 0x4,0x37,0x68,\n  0x4,0x37,0x65, 0x3,0x3b,0x6c, 0x3,0x3b,0x69, 0x4,0x37,0x70,\n  0x4,0x37,0x61, 0x3,0x3b,0x6e, 0x4,0x3d,0x50, 0x4,0x3d,0x4f,\n  0x3,0x41,0x37, 0x4,0x3d,0x4c, 0x4,0x3d,0x4a, 0x3,0x41,0x35,\n  0x3,0x41,0x3b, 0x4,0x3d,0x48, 0x4,0x3d,0x4e, 0x3,0x41,0x3c,\n  0x3,0x41,0x4a, 0x3,0x41,0x43, 0x3,0x41,0x3f, 0x3,0x41,0x47,\n  0x3,0x41,0x40, 0x3,0x41,0x46, 0x3,0x41,0x41, 0x3,0x41,0x39,\n  0x4,0x43,0x58, 0x4,0x43,0x61, 0x6,0x5d,0x32, 0x3,0x46,0x79,\n  0x3,0x47,0x2e, 0x3,0x47,0x2d, 0x4,0x43,0x56, 0x3,0x46,0x7c,\n  0x3,0x47,0x27, 0x3,0x47,0x2f, 0x4,0x43,0x5c, 0x3,0x46,0x77,\n  0x5,0x46,0x25, 0x3,0x46,0x7d, 0x4,0x49,0x75, 0x3,0x4c,0x36,\n  0x4,0x43,0x64, 0x5,0x46,0x23, 0x3,0x47,0x2b, 0x3,0x47,0x2c,\n  0x4,0x4a,0x24, 0x3,0x4c,0x33, 0x7,0x23,0x3a, 0x4,0x49,0x79,\n  0x4,0x49,0x7a, 0x4,0x49,0x76, 0x4,0x4a,0x28, 0x4,0x4a,0x22,\n  0x5,0x4d,0x3a, 0x4,0x49,0x7e, 0x5,0x4d,0x3e, 0x3,0x4c,0x3c,\n  0x4,0x4a,0x23, 0x3,0x50,0x74, 0x4,0x56,0x39, 0x4,0x50,0x45,\n  0x3,0x50,0x73, 0x3,0x50,0x6e, 0x3,0x50,0x78, 0x3,0x50,0x72,\n  0x3,0x50,0x71, 0x3,0x54,0x65, 0x3,0x54,0x6a, 0x3,0x54,0x68,\n  0x3,0x54,0x63, 0x3,0x54,0x66, 0x4,0x5b,0x2d, 0x3,0x57,0x69,\n  0x4,0x5b,0x32, 0x4,0x5b,0x30, 0x4,0x5b,0x2e, 0x3,0x57,0x6f,\n  0x3,0x57,0x71, 0x4,0x5b,0x31, 0x3,0x57,0x68, 0x4,0x5b,0x2f,\n  0x3,0x57,0x72, 0xf,0x5e,0x73, 0x3,0x5a,0x3d, 0x3,0x5a,0x3e,\n  0x4,0x63,0x47, 0x3,0x5c,0x40, 0x4,0x63,0x46, 0x5,0x70,0x24,\n  0x3,0x5e,0x32, 0x4,0x66,0x40, 0x3,0x60,0x31, 0x4,0x6a,0x49,\n  0x4,0x6a,0x48, 0x5,0x79,0x2a, 0x4,0x26,0x5b, 0x4,0x2d,0x40,\n  0x4,0x2d,0x3f, 0x4,0x32,0x27, 0x4,0x3d,0x54, 0x4,0x24,0x40,\n  0x3,0x26,0x3a, 0x4,0x26,0x5e, 0x4,0x26,0x5f, 0x4,0x29,0x5d,\n  0x3,0x2c,0x75, 0x3,0x31,0x3e, 0x4,0x2d,0x42, 0x6,0x38,0x2b,\n  0x3,0x36,0x33, 0x4,0x32,0x28, 0x3,0x36,0x35, 0x4,0x32,0x2c,\n  0x4,0x37,0x79, 0x4,0x37,0x75, 0x4,0x37,0x78, 0x4,0x37,0x77,\n  0x4,0x37,0x76, 0x5,0x38,0x7c, 0x3,0x3b,0x77, 0x4,0x3d,0x5c,\n  0x4,0x3d,0x59, 0x4,0x3d,0x5b, 0x3,0x41,0x4c, 0x4,0x43,0x66,\n  0x5,0x46,0x30, 0x5,0x46,0x2e, 0x4,0x43,0x69, 0x4,0x4a,0x2b,\n  0x4,0x4a,0x2a, 0x4,0x4a,0x29, 0x4,0x50,0x49, 0x4,0x50,0x4c,\n  0x3,0x57,0x73, 0x4,0x5b,0x3a, 0x4,0x63,0x4c, 0x4,0x66,0x43,\n  0x3,0x26,0x3b, 0x6,0x38,0x2c, 0x3,0x41,0x4f, 0x3,0x29,0x3a,\n  0x4,0x29,0x61, 0x3,0x31,0x41, 0x3,0x39,0x2b, 0x3,0x3b,0x78,\n  0x4,0x4a,0x2e, 0x4,0x56,0x3e, 0x4,0x6a,0x4b, 0x4,0x29,0x62,\n  0x4,0x2d,0x49, 0x6,0x38,0x30, 0x6,0x49,0x61, 0x6,0x5d,0x51,\n  0x5,0x4d,0x4b, 0x3,0x23,0x71, 0x6,0x2b,0x70, 0x6,0x38,0x34,\n  0x3,0x36,0x3b, 0x3,0x36,0x3e, 0x4,0x3d,0x65, 0x4,0x4a,0x30,\n  0x4,0x4a,0x31, 0x4,0x22,0x78, 0x4,0x22,0x79, 0x4,0x24,0x43,\n  0x3,0x26,0x3c, 0x3,0x26,0x3f, 0x3,0x26,0x3e, 0x3,0x26,0x40,\n  0x3,0x29,0x3f, 0x3,0x29,0x3d, 0x4,0x26,0x63, 0x5,0x29,0x4f,\n  0x4,0x29,0x63, 0x3,0x2c,0x7b, 0x4,0x29,0x64, 0x4,0x29,0x65,\n  0x3,0x2c,0x78, 0x3,0x2d,0x26, 0x6,0x31,0x67, 0x4,0x2d,0x4c,\n  0x4,0x32,0x3b, 0x4,0x2d,0x4b, 0x3,0x31,0x47, 0x6,0x38,0x37,\n  0x3,0x31,0x4a, 0xf,0x2f,0x6e, 0x4,0x2d,0x4d, 0x6,0x40,0x51,\n  0x4,0x32,0x36, 0x4,0x32,0x3a, 0x4,0x32,0x37, 0x3,0x36,0x43,\n  0x6,0x40,0x4f, 0x3,0x3c,0x22, 0x4,0x37,0x7e, 0x3,0x3b,0x7a,\n  0x3,0x3b,0x7b, 0x4,0x38,0x25, 0x3,0x3c,0x27, 0x4,0x38,0x22,\n  0x6,0x49,0x73, 0x3,0x3c,0x21, 0x6,0x53,0x3d, 0x5,0x3f,0x62,\n  0x3,0x41,0x52, 0x3,0x41,0x57, 0x3,0x41,0x5a, 0x3,0x41,0x55,\n  0x3,0x41,0x53, 0x3,0x41,0x5c, 0x3,0x41,0x58, 0x4,0x3d,0x68,\n  0x4,0x3d,0x67, 0x3,0x41,0x54, 0x3,0x47,0x38, 0x4,0x43,0x6e,\n  0x3,0x47,0x32, 0x3,0x47,0x36, 0x5,0x4d,0x53, 0x4,0x4a,0x32,\n  0x3,0x4c,0x42, 0x3,0x4c,0x45, 0x4,0x50,0x52, 0x4,0x50,0x51,\n  0x3,0x51,0x21, 0x5,0x4d,0x50, 0x3,0x50,0x7b, 0x3,0x50,0x7c,\n  0x4,0x50,0x53, 0x7,0x2e,0x5a, 0x3,0x54,0x73, 0x3,0x54,0x6e,\n  0x4,0x56,0x40, 0x4,0x5b,0x40, 0x4,0x5b,0x41, 0x4,0x5b,0x3f,\n  0x7,0x3f,0x76, 0x3,0x5a,0x40, 0x3,0x5a,0x41, 0x3,0x5c,0x44,\n  0x3,0x5f,0x4c, 0x3,0x5f,0x4d, 0x5,0x75,0x6e, 0x5,0x75,0x6d,\n  0x3,0x23,0x74, 0x4,0x50,0x56, 0x3,0x54,0x74, 0x3,0x29,0x44,\n  0x3,0x31,0x4e, 0x5,0x2e,0x25, 0x3,0x36,0x49, 0x3,0x3c,0x28,\n  0x4,0x3a,0x43, 0x5,0x46,0x45, 0x5,0x4d,0x58, 0x3,0x51,0x25,\n  0x3,0x23,0x76, 0x3,0x26,0x43, 0x4,0x24,0x48, 0x3,0x26,0x46,\n  0x3,0x29,0x4b, 0x3,0x29,0x46, 0xf,0x27,0x4c, 0x3,0x29,0x50,\n  0x3,0x29,0x4d, 0x5,0x26,0x51, 0x3,0x2d,0x28, 0x3,0x2d,0x2c,\n  0x4,0x29,0x6f, 0x4,0x29,0x6c, 0x3,0x2d,0x29, 0x4,0x2d,0x57,\n  0x4,0x2d,0x51, 0x4,0x2d,0x54, 0x4,0x2d,0x58, 0x3,0x31,0x52,\n  0x5,0x2e,0x2b, 0x4,0x2d,0x52, 0x4,0x2d,0x5b, 0x3,0x31,0x55,\n  0x4,0x2d,0x56, 0x3,0x31,0x51, 0x3,0x36,0x59, 0x4,0x32,0x43,\n  0x3,0x36,0x4a, 0x3,0x36,0x4f, 0x5,0x32,0x79, 0x4,0x32,0x42,\n  0x4,0x32,0x46, 0x4,0x32,0x41, 0x4,0x38,0x34, 0x3,0x36,0x58,\n  0x3,0x36,0x5d, 0x4,0x38,0x2f, 0x3,0x3c,0x2e, 0x4,0x38,0x2c,\n  0x3,0x3c,0x3f, 0x3,0x3c,0x30, 0x4,0x38,0x2a, 0x5,0x39,0x33,\n  0x4,0x38,0x2d, 0x3,0x3c,0x2c, 0x5,0x39,0x39, 0x4,0x38,0x35,\n  0x3,0x3c,0x35, 0x4,0x38,0x37, 0x3,0x3c,0x36, 0x3,0x3c,0x43,\n  0x3,0x3c,0x2b, 0x3,0x3c,0x2d, 0x4,0x3d,0x78, 0x3,0x41,0x71,\n  0x3,0x41,0x66, 0x3,0x41,0x70, 0x4,0x3d,0x6b, 0x4,0x3d,0x6e,\n  0x4,0x3d,0x6f, 0x3,0x41,0x6c, 0x3,0x41,0x69, 0x3,0x41,0x64,\n  0x4,0x3d,0x6d, 0x3,0x41,0x5e, 0x4,0x3d,0x75, 0x3,0x41,0x62,\n  0x3,0x41,0x63, 0x3,0x41,0x7a, 0x3,0x41,0x61, 0x3,0x41,0x5f,\n  0x4,0x44,0x23, 0x4,0x3d,0x76, 0x3,0x41,0x60, 0x3,0x42,0x5a,\n  0x3,0x41,0x67, 0xf,0x48,0x55, 0x4,0x44,0x24, 0x4,0x43,0x75,\n  0x4,0x44,0x21, 0x4,0x43,0x7c, 0x3,0x47,0x3f, 0x4,0x43,0x78,\n  0x4,0x43,0x73, 0x3,0x47,0x41, 0x4,0x43,0x74, 0x3,0x47,0x4a,\n  0x4,0x43,0x7d, 0x4,0x43,0x7e, 0x4,0x43,0x7a, 0x4,0x44,0x22,\n  0x3,0x47,0x4f, 0x3,0x47,0x40, 0x4,0x44,0x25, 0x4,0x43,0x71,\n  0x5,0x46,0x4b, 0x3,0x47,0x49, 0x4,0x3d,0x72, 0x3,0x47,0x50,\n  0xf,0x48,0x52, 0x3,0x4c,0x4e, 0x5,0x4d,0x6d, 0x4,0x4a,0x3a,\n  0x3,0x4c,0x4c, 0x5,0x4d,0x61, 0x3,0x4c,0x53, 0x4,0x4a,0x37,\n  0x4,0x4a,0x36, 0x3,0x4c,0x5d, 0x3,0x4c,0x58, 0x7,0x23,0x6f,\n  0x4,0x4a,0x38, 0x4,0x4a,0x42, 0x3,0x4c,0x5a, 0x3,0x4c,0x5c,\n  0x3,0x4c,0x48, 0x3,0x4c,0x55, 0x3,0x51,0x43, 0x3,0x51,0x42,\n  0x4,0x50,0x60, 0x4,0x50,0x5a, 0x3,0x51,0x37, 0x3,0x51,0x30,\n  0x4,0x50,0x59, 0x4,0x4a,0x39, 0x3,0x51,0x3f, 0x3,0x51,0x2a,\n  0x3,0x51,0x3d, 0x4,0x56,0x49, 0x3,0x51,0x33, 0x3,0x51,0x39,\n  0x3,0x4c,0x4b, 0x4,0x50,0x5e, 0x3,0x51,0x2d, 0x4,0x50,0x64,\n  0x3,0x51,0x35, 0x3,0x51,0x34, 0x3,0x51,0x36, 0x3,0x55,0x22,\n  0x4,0x56,0x48, 0x3,0x54,0x7e, 0x3,0x55,0x25, 0x3,0x54,0x7d,\n  0x4,0x56,0x4b, 0x7,0x38,0x55, 0x5,0x5b,0x68, 0x3,0x54,0x77,\n  0x3,0x55,0x26, 0xf,0x5f,0x29, 0x3,0x54,0x79, 0x3,0x55,0x28,\n  0x4,0x5b,0x48, 0x4,0x5b,0x44, 0x3,0x57,0x7c, 0x4,0x5b,0x4a,\n  0x4,0x5b,0x49, 0x4,0x5f,0x6f, 0x4,0x5f,0x73, 0x3,0x5a,0x49,\n  0x4,0x5f,0x70, 0x4,0x5f,0x6e, 0x4,0x5f,0x72, 0x4,0x5f,0x75,\n  0x3,0x5a,0x4c, 0x3,0x5a,0x4b, 0xf,0x62,0x53, 0x3,0x5a,0x4a,\n  0x3,0x5c,0x4c, 0x3,0x5c,0x46, 0x4,0x63,0x51, 0x4,0x63,0x4f,\n  0x3,0x5c,0x48, 0x3,0x5c,0x4d, 0x4,0x63,0x54, 0x3,0x5c,0x4b,\n  0x3,0x5c,0x45, 0xf,0x65,0x3e, 0x5,0x70,0x27, 0x3,0x5e,0x36,\n  0x3,0x5c,0x4a, 0x3,0x5f,0x50, 0x4,0x68,0x6e, 0x3,0x60,0x35,\n  0x3,0x60,0x33, 0x3,0x60,0x34, 0x5,0x24,0x48, 0x6,0x28,0x30,\n  0x4,0x26,0x6d, 0x5,0x26,0x56, 0x4,0x26,0x70, 0x4,0x26,0x6c,\n  0x4,0x2d,0x60, 0x4,0x29,0x70, 0x4,0x29,0x71, 0x6,0x31,0x78,\n  0x4,0x29,0x74, 0x4,0x29,0x73, 0x5,0x2e,0x2e, 0x4,0x2d,0x5d,\n  0x4,0x2d,0x61, 0x4,0x2d,0x62, 0x4,0x2d,0x5e, 0x3,0x36,0x61,\n  0x4,0x32,0x48, 0x4,0x32,0x49, 0x6,0x40,0x6e, 0x4,0x38,0x3b,\n  0x4,0x38,0x39, 0x3,0x3c,0x46, 0x5,0x39,0x43, 0x4,0x38,0x3c,\n  0x6,0x38,0x64, 0x4,0x3e,0x21, 0x4,0x3d,0x7c, 0x4,0x3d,0x7b,\n  0x4,0x3d,0x7d, 0x4,0x3d,0x7e, 0x4,0x3e,0x22, 0x3,0x47,0x52,\n  0x6,0x5d,0x77, 0x4,0x44,0x2a, 0x4,0x4a,0x4c, 0x3,0x4c,0x68,\n  0x4,0x50,0x66, 0x4,0x50,0x67, 0x4,0x56,0x4f, 0x4,0x56,0x4e,\n  0x3,0x55,0x2a, 0x3,0x55,0x2c, 0x4,0x5f,0x77, 0x7,0x4e,0x22,\n  0x4,0x68,0x71, 0x5,0x75,0x77, 0x5,0x79,0x2f, 0x6,0x25,0x25,\n  0x3,0x2d,0x3e, 0x3,0x2b,0x7b, 0x3,0x3c,0x48, 0x4,0x38,0x3f,\n  0x5,0x46,0x5f, 0x3,0x58,0x24, 0x4,0x22,0x7c, 0x3,0x29,0x57,\n  0x5,0x26,0x62, 0x4,0x26,0x75, 0x3,0x2d,0x3f, 0x3,0x2d,0x41,\n  0x3,0x2d,0x40, 0x3,0x31,0x69, 0x3,0x36,0x63, 0x4,0x32,0x4a,\n  0x4,0x38,0x45, 0x4,0x38,0x44, 0x4,0x38,0x46, 0x4,0x38,0x42,\n  0x3,0x3c,0x4a, 0x3,0x42,0x23, 0x4,0x3e,0x23, 0x4,0x3e,0x24,\n  0x3,0x42,0x24, 0x4,0x44,0x32, 0x5,0x46,0x60, 0x4,0x44,0x33,\n  0x4,0x44,0x30, 0x4,0x4a,0x50, 0x4,0x4a,0x4f, 0x4,0x50,0x6b,\n  0x4,0x50,0x6a, 0x4,0x56,0x51, 0x4,0x63,0x55, 0x3,0x5c,0x4e,\n  0x5,0x75,0x78, 0x5,0x24,0x4e, 0x4,0x26,0x78, 0x4,0x2d,0x64,\n  0x3,0x31,0x6b, 0x4,0x32,0x4f, 0x4,0x38,0x49, 0x4,0x38,0x4a,\n  0x4,0x38,0x4b, 0x3,0x42,0x25, 0x4,0x44,0x35, 0x3,0x51,0x47,\n  0x3,0x51,0x48, 0x4,0x50,0x6e, 0x4,0x56,0x53, 0x3,0x58,0x25,\n  0x4,0x29,0x7b, 0x3,0x23,0x7b, 0x4,0x26,0x79, 0x3,0x29,0x5b,\n  0x4,0x26,0x7a, 0xf,0x27,0x5b, 0x3,0x2d,0x43, 0x4,0x2d,0x66,\n  0x4,0x32,0x52, 0x4,0x32,0x54, 0x4,0x32,0x53, 0x4,0x32,0x55,\n  0x3,0x36,0x67, 0x4,0x2d,0x67, 0x4,0x32,0x51, 0x5,0x39,0x5b,\n  0x3,0x3c,0x4c, 0x4,0x38,0x4f, 0x4,0x38,0x4c, 0x4,0x3e,0x29,\n  0x3,0x42,0x27, 0x4,0x3e,0x28, 0x4,0x3e,0x27, 0x4,0x44,0x3f,\n  0x4,0x44,0x38, 0x4,0x44,0x39, 0x4,0x44,0x3a, 0x5,0x46,0x68,\n  0x4,0x44,0x3c, 0x4,0x50,0x6f, 0x4,0x50,0x71, 0x4,0x50,0x72,\n  0x3,0x51,0x49, 0x4,0x5b,0x50, 0x4,0x5b,0x4f, 0x3,0x5a,0x50,\n  0x4,0x6d,0x57, 0x4,0x2d,0x6a, 0x3,0x29,0x5c, 0x3,0x36,0x68,\n  0x3,0x4c,0x69, 0x3,0x51,0x4a, 0x4,0x21,0x4f, 0x3,0x22,0x56,\n  0x3,0x22,0x55, 0x3,0x24,0x22, 0x5,0x21,0x74, 0x4,0x23,0x22,\n  0x3,0x26,0x54, 0x3,0x26,0x4f, 0x4,0x24,0x4f, 0x3,0x26,0x5d,\n  0x6,0x28,0x49, 0x3,0x26,0x5a, 0x4,0x24,0x51, 0x3,0x26,0x4b,\n  0x6,0x28,0x4a, 0x6,0x28,0x44, 0x3,0x26,0x58, 0x3,0x29,0x61,\n  0x3,0x29,0x5f, 0x3,0x29,0x5e, 0x3,0x29,0x62, 0x3,0x29,0x60,\n  0x4,0x26,0x7e, 0x3,0x29,0x68, 0x3,0x29,0x66, 0xf,0x27,0x66,\n  0x3,0x2d,0x44, 0x5,0x2a,0x24, 0x4,0x27,0x22, 0x3,0x2d,0x54,\n  0x5,0x29,0x7b, 0x5,0x29,0x7c, 0x4,0x29,0x7e, 0x3,0x2d,0x56,\n  0x3,0x2d,0x4c, 0xf,0x30,0x49, 0x6,0x38,0x72, 0x3,0x31,0x70,\n  0x3,0x31,0x71, 0x4,0x2d,0x6b, 0x6,0x39,0x33, 0x3,0x31,0x74,\n  0x4,0x2d,0x6c, 0x3,0x36,0x69, 0x3,0x32,0x24, 0x3,0x32,0x23,\n  0x3,0x31,0x7e, 0x3,0x31,0x75, 0x4,0x32,0x57, 0x3,0x36,0x71,\n  0x4,0x32,0x63, 0x4,0x32,0x64, 0x3,0x36,0x6e, 0x4,0x32,0x5e,\n  0x3,0x37,0x22, 0x3,0x36,0x6d, 0x3,0x3c,0x4f, 0x3,0x36,0x7e,\n  0x4,0x32,0x58, 0x4,0x32,0x68, 0x5,0x39,0x5e, 0x4,0x32,0x5a,\n  0x4,0x32,0x5c, 0x6,0x41,0x2b, 0x5,0x33,0x3d, 0x3,0x3c,0x5e,\n  0x3,0x36,0x7b, 0x3,0x3c,0x5f, 0x3,0x36,0x73, 0x6,0x41,0x41,\n  0x3,0x36,0x78, 0xf,0x36,0x33, 0x4,0x38,0x51, 0x4,0x38,0x56,\n  0x3,0x3c,0x65, 0x4,0x38,0x52, 0x3,0x3c,0x59, 0x4,0x38,0x59,\n  0x3,0x3c,0x6a, 0x3,0x3c,0x67, 0x3,0x3c,0x55, 0x4,0x38,0x57,\n  0x4,0x38,0x5a, 0x3,0x3c,0x53, 0x3,0x3c,0x57, 0x3,0x3c,0x61,\n  0x3,0x42,0x2b, 0x6,0x4a,0x6d, 0xf,0x3c,0x43, 0xf,0x3c,0x5a,\n  0x4,0x3e,0x37, 0x3,0x42,0x2c, 0x3,0x42,0x37, 0x3,0x42,0x35,\n  0x3,0x42,0x48, 0x3,0x42,0x38, 0x4,0x3e,0x30, 0x4,0x3e,0x39,\n  0x4,0x3e,0x2d, 0x3,0x42,0x42, 0x4,0x3e,0x38, 0x3,0x42,0x34,\n  0x3,0x42,0x3c, 0x4,0x3e,0x3c, 0x3,0x42,0x2f, 0x3,0x42,0x41,\n  0x5,0x40,0x27, 0x4,0x3e,0x2f, 0x4,0x3e,0x32, 0x3,0x42,0x32,\n  0x3,0x42,0x43, 0x3,0x47,0x55, 0x4,0x44,0x49, 0x3,0x47,0x60,\n  0x6,0x5e,0x3b, 0x3,0x47,0x59, 0x6,0x54,0x50, 0x3,0x47,0x58,\n  0x4,0x44,0x46, 0x4,0x44,0x4d, 0x4,0x44,0x4a, 0x6,0x5e,0x40,\n  0x3,0x4c,0x6e, 0x4,0x4a,0x5f, 0x4,0x4a,0x61, 0x3,0x4c,0x6f,\n  0x3,0x4c,0x7c, 0x4,0x4a,0x68, 0x4,0x4a,0x5d, 0x3,0x4c,0x6d,\n  0x4,0x4a,0x59, 0x3,0x4c,0x72, 0x5,0x46,0x78, 0x7,0x24,0x61,\n  0x3,0x4c,0x70, 0x4,0x50,0x74, 0x3,0x51,0x4b, 0x3,0x4c,0x76,\n  0x4,0x50,0x77, 0x4,0x50,0x7d, 0x5,0x55,0x36, 0x4,0x50,0x76,\n  0x3,0x51,0x4f, 0x3,0x51,0x4e, 0x4,0x50,0x7a, 0x5,0x55,0x2d,\n  0x3,0x51,0x53, 0x3,0x51,0x57, 0x4,0x50,0x7b, 0x4,0x56,0x56,\n  0x3,0x51,0x51, 0x3,0x51,0x4c, 0x4,0x50,0x78, 0x3,0x51,0x52,\n  0x4,0x4a,0x62, 0x5,0x55,0x2e, 0x3,0x55,0x32, 0x3,0x55,0x38,\n  0x4,0x56,0x5e, 0x4,0x56,0x60, 0x3,0x55,0x34, 0x4,0x56,0x58,\n  0x3,0x55,0x2e, 0x4,0x56,0x57, 0x4,0x56,0x5c, 0x3,0x55,0x3b,\n  0x4,0x56,0x59, 0x4,0x56,0x5b, 0x3,0x55,0x33, 0x4,0x5b,0x56,\n  0x4,0x5b,0x54, 0x4,0x5b,0x5a, 0x4,0x5b,0x57, 0x4,0x5b,0x60,\n  0x4,0x5f,0x7b, 0x4,0x5f,0x7d, 0x4,0x5b,0x5b, 0x4,0x5f,0x79,\n  0x3,0x5a,0x51, 0x3,0x5c,0x50, 0x4,0x63,0x5a, 0x4,0x63,0x5e,\n  0x4,0x63,0x5b, 0x3,0x5c,0x52, 0x4,0x66,0x49, 0x5,0x70,0x3e,\n  0x4,0x66,0x4a, 0x4,0x66,0x4c, 0x4,0x68,0x73, 0x3,0x5e,0x39,\n  0x3,0x5e,0x38, 0x3,0x5f,0x51, 0x4,0x6a,0x4e, 0x3,0x60,0x38,\n  0x4,0x6b,0x6d, 0x4,0x6b,0x6e, 0x3,0x61,0x66, 0x3,0x24,0x2a,\n  0x4,0x24,0x52, 0x3,0x26,0x61, 0xf,0x24,0x6e, 0x3,0x29,0x6e,\n  0x4,0x27,0x27, 0x3,0x29,0x78, 0xf,0x27,0x6e, 0x3,0x29,0x73,\n  0x3,0x2d,0x67, 0x3,0x2d,0x59, 0x3,0x2d,0x66, 0x3,0x2d,0x61,\n  0x3,0x2d,0x60, 0x3,0x2d,0x5b, 0x4,0x2a,0x27, 0x3,0x32,0x2e,\n  0x4,0x2d,0x73, 0x3,0x32,0x32, 0x3,0x37,0x2b, 0x3,0x37,0x2a,\n  0x3,0x37,0x34, 0x4,0x32,0x71, 0x4,0x32,0x76, 0x4,0x32,0x70,\n  0x4,0x32,0x77, 0xf,0x36,0x48, 0x3,0x3c,0x76, 0x4,0x38,0x65,\n  0x4,0x38,0x61, 0x3,0x3c,0x75, 0x4,0x38,0x62, 0x4,0x38,0x64,\n  0x4,0x38,0x60, 0x3,0x3b,0x23, 0x3,0x3c,0x7e, 0x3,0x3c,0x70,\n  0x3,0x3c,0x78, 0x3,0x42,0x54, 0x3,0x42,0x4d, 0x3,0x42,0x56,\n  0x4,0x3e,0x4b, 0x3,0x42,0x4a, 0x3,0x42,0x55, 0x4,0x3e,0x48,\n  0x4,0x3e,0x46, 0x4,0x3e,0x49, 0x6,0x54,0x54, 0x3,0x42,0x4b,\n  0x3,0x42,0x50, 0xf,0x42,0x78, 0xf,0x43,0x3c, 0x4,0x44,0x59,\n  0x3,0x47,0x73, 0x3,0x47,0x69, 0x6,0x54,0x67, 0x4,0x44,0x56,\n  0x4,0x44,0x5a, 0x4,0x44,0x5c, 0x3,0x47,0x71, 0xf,0x49,0x58,\n  0x3,0x4d,0x26, 0x3,0x4d,0x23, 0x3,0x4d,0x2b, 0x3,0x4d,0x21,\n  0x3,0x4d,0x27, 0x4,0x4a,0x6a, 0x4,0x51,0x25, 0x3,0x51,0x5d,\n  0x3,0x51,0x5b, 0x4,0x51,0x2b, 0x3,0x51,0x5f, 0x3,0x51,0x61,\n  0x4,0x51,0x24, 0x3,0x51,0x64, 0x3,0x51,0x65, 0x3,0x55,0x3d,\n  0x4,0x56,0x62, 0x3,0x55,0x3f, 0x3,0x55,0x44, 0x7,0x39,0x26,\n  0x3,0x57,0x51, 0x3,0x58,0x2c, 0x4,0x56,0x64, 0x3,0x5c,0x5a,\n  0x3,0x5a,0x59, 0x3,0x5c,0x54, 0x3,0x5c,0x5b, 0x4,0x63,0x5f,\n  0x4,0x66,0x4e, 0x5,0x73,0x57, 0x4,0x6a,0x50, 0x3,0x60,0x3a,\n  0x3,0x61,0x7a, 0x4,0x27,0x2c, 0x3,0x29,0x7a, 0x3,0x37,0x58,\n  0x3,0x47,0x74, 0x3,0x2d,0x6a, 0x4,0x2d,0x76, 0x3,0x37,0x36,\n  0x4,0x38,0x6b, 0x3,0x29,0x7b, 0x4,0x2a,0x2c, 0x4,0x38,0x6c,\n  0x3,0x29,0x7d, 0x3,0x29,0x7e, 0x5,0x2e,0x53, 0x6,0x39,0x40,\n  0x4,0x2d,0x7a, 0x4,0x44,0x5f, 0x7,0x39,0x2d, 0x4,0x5b,0x64,\n  0x4,0x66,0x50, 0x3,0x21,0x6a, 0x3,0x32,0x33, 0x4,0x23,0x26,\n  0x3,0x26,0x65, 0x4,0x24,0x55, 0x6,0x2c,0x71, 0x4,0x27,0x33,\n  0x5,0x26,0x77, 0x4,0x27,0x32, 0x4,0x27,0x2f, 0x3,0x2d,0x6c,\n  0x3,0x2d,0x6f, 0x4,0x2a,0x2e, 0x3,0x2d,0x6e, 0x3,0x32,0x34,\n  0x3,0x32,0x35, 0x4,0x2d,0x7d, 0x4,0x2d,0x7c, 0x4,0x32,0x7a,\n  0x5,0x33,0x4d, 0x4,0x32,0x79, 0x4,0x32,0x7e, 0x3,0x37,0x38,\n  0x6,0x41,0x66, 0x3,0x37,0x37, 0x4,0x38,0x70, 0x4,0x38,0x72,\n  0x4,0x38,0x73, 0x4,0x44,0x63, 0x6,0x54,0x78, 0x4,0x3e,0x4e,\n  0x3,0x42,0x5e, 0x4,0x44,0x62, 0x4,0x44,0x60, 0x4,0x44,0x64,\n  0x4,0x4a,0x6f, 0x4,0x4a,0x6e, 0x4,0x4a,0x72, 0x4,0x4a,0x71,\n  0x4,0x4a,0x73, 0x4,0x51,0x2e, 0x4,0x51,0x30, 0x4,0x51,0x2f,\n  0x4,0x56,0x67, 0x3,0x55,0x46, 0x3,0x55,0x47, 0x4,0x5b,0x66,\n  0x4,0x5b,0x65, 0x4,0x60,0x24, 0x7,0x53,0x6b, 0x4,0x6a,0x51,\n  0x4,0x27,0x34, 0x4,0x24,0x59, 0x3,0x26,0x6d, 0x4,0x24,0x56,\n  0x3,0x26,0x6c, 0x6,0x2c,0x75, 0x4,0x27,0x39, 0x5,0x27,0x2e,\n  0x3,0x2a,0x29, 0x3,0x2a,0x24, 0x3,0x2a,0x25, 0x4,0x27,0x3a,\n  0x4,0x2a,0x32, 0x4,0x2a,0x34, 0x4,0x2a,0x35, 0x3,0x2d,0x72,\n  0x6,0x32,0x67, 0x3,0x32,0x37, 0x5,0x2e,0x5c, 0x4,0x2e,0x21,\n  0x4,0x2d,0x7e, 0x4,0x2e,0x22, 0x4,0x2e,0x26, 0x6,0x41,0x6d,\n  0x4,0x2e,0x27, 0x5,0x33,0x51, 0x4,0x33,0x28, 0x6,0x41,0x75,\n  0x4,0x33,0x29, 0x4,0x33,0x25, 0x4,0x33,0x2b, 0x4,0x33,0x27,\n  0x4,0x33,0x2e, 0x4,0x38,0x79, 0x4,0x38,0x77, 0x3,0x3d,0x2c,\n  0x4,0x38,0x7b, 0x6,0x4b,0x43, 0x4,0x44,0x65, 0x4,0x3e,0x54,\n  0x4,0x44,0x66, 0x4,0x3e,0x53, 0x3,0x42,0x60, 0x4,0x3e,0x52,\n  0x4,0x44,0x6a, 0x6,0x5e,0x6e, 0x4,0x44,0x69, 0x4,0x44,0x68,\n  0x4,0x44,0x67, 0x3,0x47,0x76, 0x4,0x38,0x7a, 0x4,0x4a,0x7b,\n  0x4,0x4a,0x76, 0x4,0x4a,0x7a, 0x4,0x4a,0x7c, 0x7,0x2f,0x74,\n  0x4,0x51,0x32, 0x4,0x51,0x34, 0x3,0x55,0x48, 0x4,0x56,0x6a,\n  0x4,0x56,0x6b, 0x4,0x5b,0x67, 0x5,0x68,0x3b, 0x4,0x63,0x65,\n  0x4,0x63,0x66, 0x4,0x63,0x67, 0x4,0x63,0x63, 0x4,0x6b,0x6f,\n  0x3,0x24,0x2e, 0x4,0x23,0x29, 0x3,0x24,0x30, 0x3,0x24,0x31,\n  0x3,0x26,0x71, 0x3,0x26,0x6f, 0x3,0x26,0x70, 0x3,0x2a,0x2e,\n  0x3,0x2d,0x76, 0x6,0x2d,0x21, 0x3,0x2a,0x30, 0x4,0x27,0x3b,\n  0x3,0x2a,0x31, 0x3,0x2d,0x7d, 0x3,0x32,0x3a, 0x4,0x2a,0x37,\n  0x4,0x2a,0x38, 0xf,0x2c,0x32, 0x4,0x33,0x2f, 0x3,0x32,0x43,\n  0x3,0x32,0x44, 0x3,0x32,0x3b, 0x4,0x33,0x30, 0x3,0x32,0x45,\n  0xf,0x31,0x27, 0x3,0x32,0x42, 0x3,0x37,0x3f, 0x3,0x37,0x42,\n  0x3,0x37,0x41, 0x4,0x33,0x33, 0x3,0x37,0x3e, 0x3,0x37,0x43,\n  0x3,0x3d,0x34, 0x4,0x38,0x7d, 0x5,0x3a,0x2d, 0x3,0x42,0x63,\n  0x3,0x3d,0x31, 0x3,0x3d,0x30, 0x3,0x42,0x6c, 0xf,0x36,0x59,\n  0xf,0x3d,0x3b, 0x4,0x3e,0x59, 0x3,0x42,0x65, 0x3,0x42,0x69,\n  0x5,0x40,0x4e, 0x3,0x42,0x72, 0xf,0x43,0x49, 0xf,0x43,0x56,\n  0x3,0x48,0x24, 0x7,0x25,0x37, 0x4,0x4b,0x22, 0x4,0x4b,0x21,\n  0x3,0x4d,0x37, 0x3,0x4d,0x3c, 0x3,0x4d,0x33, 0x3,0x4d,0x38,\n  0x3,0x4d,0x34, 0x3,0x4d,0x32, 0x3,0x51,0x68, 0x5,0x55,0x5d,\n  0x4,0x51,0x37, 0x3,0x51,0x69, 0x3,0x55,0x4a, 0x4,0x56,0x6f,\n  0xf,0x55,0x7a, 0xf,0x56,0x22, 0x3,0x55,0x4e, 0x4,0x5b,0x69,\n  0x3,0x55,0x4c, 0xf,0x5b,0x2d, 0x3,0x58,0x31, 0x4,0x60,0x2a,\n  0xf,0x62,0x78, 0xf,0x62,0x7b, 0x3,0x5c,0x61, 0x4,0x2a,0x39,\n  0x4,0x2a,0x3a, 0x5,0x2e,0x62, 0x4,0x2e,0x2b, 0x4,0x33,0x35,\n  0x4,0x33,0x34, 0x4,0x38,0x7e, 0x4,0x44,0x70, 0x4,0x44,0x71,\n  0x4,0x44,0x6f, 0x4,0x4b,0x23, 0x4,0x4b,0x24, 0x4,0x5b,0x6c,\n  0x4,0x6d,0x5a, 0x4,0x24,0x5e, 0x5,0x27,0x32, 0x3,0x2a,0x34,\n  0x3,0x2e,0x23, 0x4,0x2a,0x3d, 0x3,0x32,0x4a, 0x3,0x32,0x4b,\n  0x4,0x2e,0x2d, 0x3,0x32,0x49, 0x4,0x2e,0x2c, 0x4,0x33,0x3b,\n  0x4,0x39,0x21, 0x4,0x33,0x3a, 0x4,0x33,0x38, 0x4,0x33,0x39,\n  0x4,0x33,0x37, 0x4,0x39,0x23, 0x4,0x39,0x26, 0x4,0x33,0x3c,\n  0x4,0x39,0x24, 0x4,0x3e,0x62, 0x4,0x3e,0x61, 0x4,0x3e,0x5d,\n  0x4,0x3e,0x60, 0x3,0x42,0x76, 0x4,0x3e,0x63, 0x5,0x47,0x48,\n  0x4,0x44,0x73, 0x4,0x44,0x76, 0x4,0x44,0x74, 0x4,0x44,0x78,\n  0x4,0x44,0x77, 0x4,0x44,0x75, 0x4,0x4b,0x25, 0x4,0x4b,0x27,\n  0x4,0x4b,0x26, 0x4,0x51,0x3f, 0x3,0x51,0x6f, 0x4,0x51,0x42,\n  0x4,0x51,0x41, 0x4,0x56,0x72, 0x4,0x56,0x73, 0x3,0x55,0x51,\n  0x4,0x56,0x75, 0x3,0x55,0x50, 0x4,0x56,0x71, 0x4,0x5b,0x6f,\n  0x4,0x5b,0x6e, 0x4,0x60,0x2c, 0x4,0x60,0x2b, 0x4,0x68,0x75,\n  0x4,0x6b,0x70, 0x4,0x6a,0x53, 0x3,0x32,0x4c, 0x4,0x3e,0x65,\n  0x3,0x4d,0x3f, 0x4,0x56,0x78, 0x3,0x3d,0x40, 0xf,0x50,0x4e,\n  0x5,0x24,0x63, 0x6,0x28,0x62, 0x3,0x26,0x72, 0x4,0x2a,0x41,\n  0x3,0x2e,0x29, 0x4,0x2a,0x43, 0x4,0x2e,0x2f, 0x4,0x2e,0x31,\n  0x5,0x33,0x64, 0x3,0x37,0x48, 0x3,0x3d,0x41, 0x4,0x39,0x28,\n  0x4,0x3e,0x69, 0x3,0x42,0x79, 0x3,0x42,0x7a, 0x4,0x3e,0x68,\n  0x4,0x44,0x79, 0x3,0x4d,0x40, 0x4,0x4b,0x2a, 0x4,0x4b,0x29,\n  0x4,0x51,0x44, 0x5,0x5c,0x2f, 0x4,0x5b,0x72, 0x4,0x5b,0x73,\n  0x4,0x60,0x2e, 0x4,0x63,0x69, 0x4,0x6a,0x54, 0x4,0x3e,0x6d,\n  0x4,0x24,0x61, 0x4,0x24,0x62, 0x5,0x27,0x37, 0x3,0x2a,0x3c,\n  0x4,0x2a,0x46, 0x3,0x2e,0x2d, 0x4,0x2a,0x49, 0x3,0x2e,0x2c,\n  0x3,0x2e,0x2e, 0x3,0x32,0x56, 0x4,0x2e,0x37, 0x4,0x2e,0x3b,\n  0x4,0x2e,0x35, 0x4,0x2e,0x36, 0x3,0x32,0x54, 0x4,0x2e,0x33,\n  0x4,0x2e,0x3f, 0x4,0x2e,0x39, 0x6,0x39,0x6b, 0x3,0x32,0x53,\n  0x4,0x2e,0x38, 0x4,0x2e,0x3a, 0x5,0x33,0x6d, 0x4,0x33,0x42,\n  0x3,0x37,0x4c, 0x4,0x33,0x40, 0x4,0x2e,0x3c, 0x4,0x33,0x3f,\n  0x4,0x33,0x45, 0x3,0x37,0x4b, 0x4,0x33,0x43, 0x4,0x39,0x32,\n  0x4,0x39,0x33, 0x3,0x3d,0x46, 0x3,0x3d,0x4b, 0x6,0x4b,0x5a,\n  0x3,0x3d,0x49, 0x4,0x39,0x36, 0x5,0x40,0x60, 0x4,0x39,0x2f,\n  0x4,0x39,0x30, 0x3,0x3d,0x48, 0x3,0x3d,0x4a, 0x5,0x3a,0x3b,\n  0x4,0x39,0x35, 0x4,0x39,0x38, 0x4,0x3e,0x74, 0x5,0x40,0x64,\n  0x4,0x3e,0x6f, 0x4,0x3e,0x78, 0x4,0x3e,0x6e, 0x4,0x3e,0x76,\n  0x4,0x3e,0x73, 0x4,0x3e,0x7a, 0x4,0x45,0x24, 0x4,0x45,0x28,\n  0x6,0x5f,0x2d, 0x3,0x48,0x2a, 0x3,0x48,0x2c, 0x4,0x45,0x23,\n  0x4,0x45,0x21, 0x7,0x25,0x58, 0x4,0x4b,0x38, 0x3,0x4d,0x42,\n  0x4,0x4b,0x37, 0x4,0x4b,0x35, 0x4,0x4b,0x33, 0x4,0x4b,0x2f,\n  0x7,0x25,0x5c, 0x4,0x4b,0x2e, 0x5,0x47,0x59, 0x4,0x4b,0x3b,\n  0x7,0x30,0x36, 0x4,0x51,0x48, 0x4,0x51,0x49, 0x3,0x51,0x75,\n  0x4,0x51,0x4e, 0x4,0x51,0x4a, 0x4,0x51,0x50, 0x4,0x57,0x26,\n  0x4,0x57,0x22, 0x4,0x5b,0x7b, 0x4,0x5b,0x77, 0x7,0x40,0x6b,\n  0x4,0x57,0x25, 0x7,0x40,0x67, 0x4,0x60,0x32, 0x4,0x60,0x2f,\n  0x4,0x60,0x30, 0x4,0x66,0x58, 0x4,0x66,0x59, 0x3,0x5e,0x40,\n  0x5,0x73,0x5c, 0x4,0x6a,0x55, 0x4,0x6b,0x72, 0x4,0x6b,0x71,\n  0x3,0x62,0x2d, 0x3,0x26,0x75, 0x3,0x2e,0x30, 0x3,0x32,0x58,\n  0x3,0x37,0x4e, 0x3,0x43,0x22, 0x3,0x48,0x2d, 0x5,0x47,0x5b,\n  0x5,0x4e,0x59, 0x4,0x51,0x56, 0x4,0x60,0x37, 0x4,0x66,0x5b,\n  0x4,0x6c,0x73, 0x4,0x27,0x46, 0x4,0x2a,0x4e, 0x3,0x2e,0x31,\n  0x4,0x2e,0x46, 0x4,0x2e,0x45, 0x4,0x33,0x47, 0x4,0x33,0x48,\n  0x4,0x39,0x3a, 0x6,0x55,0x52, 0x4,0x45,0x30, 0x4,0x45,0x32,\n  0x3,0x48,0x2f, 0x3,0x4d,0x43, 0x4,0x4b,0x3d, 0x4,0x51,0x57,\n  0x4,0x5b,0x7e, 0x4,0x63,0x6c, 0x4,0x27,0x48, 0x4,0x2a,0x51,\n  0x4,0x2a,0x50, 0x4,0x2e,0x47, 0x4,0x2e,0x49, 0x3,0x32,0x59,\n  0x4,0x33,0x4b, 0x3,0x37,0x4f, 0x3,0x3d,0x4e, 0x3,0x43,0x23,\n  0x5,0x40,0x6f, 0x3,0x48,0x32, 0x4,0x51,0x5a, 0x4,0x45,0x36,\n  0x4,0x57,0x2c, 0x4,0x60,0x38, 0x3,0x5f,0x38, 0x4,0x6e,0x48,\n  0x3,0x26,0x79, 0x4,0x24,0x65, 0x4,0x27,0x4e, 0x4,0x27,0x4f,\n  0x4,0x27,0x4d, 0x4,0x27,0x4c, 0x4,0x27,0x4a, 0x4,0x2a,0x53,\n  0x4,0x2a,0x56, 0x4,0x2a,0x57, 0x4,0x2a,0x54, 0x4,0x2a,0x58,\n  0x5,0x2a,0x6d, 0x4,0x2a,0x5a, 0x6,0x33,0x38, 0x3,0x2e,0x34,\n  0x4,0x2e,0x52, 0x3,0x32,0x5d, 0x3,0x32,0x66, 0x3,0x32,0x60,\n  0x4,0x2e,0x4d, 0x3,0x32,0x61, 0x5,0x33,0x76, 0x4,0x33,0x50,\n  0x4,0x33,0x51, 0x3,0x37,0x56, 0x3,0x37,0x54, 0x4,0x33,0x52,\n  0x4,0x33,0x4e, 0x4,0x33,0x4d, 0x3,0x3d,0x50, 0x4,0x39,0x49,\n  0x3,0x3d,0x54, 0x4,0x39,0x4a, 0x3,0x3d,0x55, 0x4,0x39,0x45,\n  0x4,0x39,0x48, 0x4,0x39,0x3f, 0x4,0x39,0x41, 0x4,0x39,0x4b,\n  0x4,0x39,0x46, 0x4,0x39,0x4d, 0x4,0x39,0x47, 0x4,0x39,0x43,\n  0x4,0x3f,0x22, 0x4,0x39,0x4c, 0x4,0x39,0x42, 0x4,0x3f,0x30,\n  0x4,0x3f,0x2d, 0x3,0x43,0x24, 0x4,0x3f,0x25, 0x4,0x3f,0x26,\n  0x4,0x3f,0x27, 0x4,0x3f,0x2b, 0x4,0x3f,0x2c, 0x6,0x55,0x61,\n  0x5,0x47,0x61, 0x4,0x45,0x39, 0x4,0x45,0x41, 0x4,0x45,0x3c,\n  0x4,0x45,0x37, 0x3,0x48,0x37, 0x4,0x45,0x43, 0x4,0x45,0x46,\n  0x4,0x45,0x3f, 0x4,0x45,0x44, 0x3,0x48,0x3a, 0x4,0x45,0x38,\n  0x3,0x4d,0x45, 0x4,0x4b,0x45, 0x4,0x4b,0x42, 0x4,0x4b,0x44,\n  0x4,0x4b,0x47, 0x4,0x4b,0x43, 0x4,0x4b,0x4d, 0x3,0x4d,0x47,\n  0x5,0x4e,0x60, 0x4,0x4b,0x3f, 0x3,0x51,0x77, 0x3,0x51,0x78,\n  0x4,0x51,0x5c, 0x4,0x51,0x60, 0x3,0x51,0x7c, 0x3,0x51,0x7a,\n  0x4,0x51,0x5d, 0x4,0x51,0x64, 0x4,0x57,0x32, 0x4,0x57,0x2e,\n  0x4,0x57,0x31, 0x4,0x57,0x2f, 0x3,0x55,0x5a, 0x4,0x57,0x30,\n  0x4,0x57,0x33, 0x4,0x57,0x34, 0x5,0x56,0x22, 0x5,0x62,0x69,\n  0x4,0x5c,0x27, 0x4,0x5c,0x29, 0x4,0x5c,0x2a, 0x4,0x5c,0x25,\n  0x3,0x58,0x37, 0x4,0x5c,0x26, 0x4,0x63,0x70, 0x4,0x63,0x6e,\n  0x4,0x63,0x71, 0x4,0x63,0x6f, 0x4,0x66,0x5d, 0x3,0x5e,0x41,\n  0x4,0x68,0x78, 0x4,0x6a,0x57, 0x4,0x68,0x7a, 0x4,0x6c,0x75,\n  0x4,0x6e,0x4d, 0x4,0x27,0x51, 0x4,0x2a,0x5f, 0x4,0x33,0x57,\n  0x4,0x45,0x4a, 0x3,0x55,0x5d, 0x4,0x57,0x38, 0x4,0x63,0x74,\n  0x4,0x6b,0x75, 0x4,0x2e,0x57, 0x4,0x2e,0x58, 0x4,0x33,0x5a,\n  0x4,0x33,0x59, 0x6,0x4c,0x2b, 0x4,0x3f,0x33, 0x4,0x45,0x4c,\n  0x3,0x24,0x32, 0x3,0x26,0x7a, 0x4,0x27,0x53, 0xf,0x28,0x7a,\n  0x4,0x2a,0x64, 0x3,0x2e,0x38, 0x4,0x2a,0x62, 0x3,0x2e,0x3c,\n  0x3,0x2d,0x3b, 0x4,0x2e,0x5f, 0x4,0x2e,0x5c, 0x4,0x2e,0x62,\n  0x5,0x2f,0x34, 0x3,0x37,0x5b, 0x3,0x32,0x6a, 0x3,0x32,0x6b,\n  0x4,0x2e,0x5e, 0x4,0x2e,0x61, 0x4,0x33,0x5e, 0x4,0x33,0x61,\n  0x3,0x37,0x5c, 0x4,0x33,0x5f, 0x3,0x37,0x5a, 0x4,0x33,0x60,\n  0x3,0x37,0x5e, 0x3,0x3d,0x5b, 0x5,0x3a,0x59, 0x6,0x4c,0x33,\n  0x4,0x39,0x58, 0x3,0x3d,0x58, 0x4,0x39,0x53, 0x4,0x3f,0x40,\n  0x4,0x3f,0x39, 0x4,0x3f,0x3f, 0x3,0x43,0x2f, 0x4,0x3f,0x3c,\n  0x3,0x43,0x32, 0x4,0x3f,0x3d, 0x3,0x43,0x2c, 0x4,0x3f,0x3e,\n  0x4,0x3f,0x38, 0x4,0x3f,0x3a, 0x4,0x3f,0x3b, 0x4,0x3f,0x42,\n  0x4,0x45,0x4e, 0x3,0x48,0x43, 0x4,0x45,0x51, 0x3,0x48,0x41,\n  0x4,0x45,0x4d, 0x4,0x45,0x55, 0x4,0x45,0x4f, 0x5,0x47,0x76,\n  0x4,0x4b,0x5c, 0x4,0x4b,0x58, 0x4,0x4b,0x56, 0x4,0x4b,0x55,\n  0x4,0x4b,0x5e, 0x7,0x26,0x24, 0x4,0x4b,0x5b, 0x3,0x52,0x23,\n  0x3,0x51,0x7d, 0x4,0x51,0x6c, 0x3,0x51,0x7e, 0x7,0x30,0x59,\n  0x5,0x56,0x33, 0x4,0x51,0x70, 0x4,0x51,0x6d, 0x4,0x57,0x3b,\n  0x4,0x57,0x41, 0x3,0x48,0x42, 0x4,0x57,0x39, 0x3,0x55,0x5e,\n  0x3,0x55,0x5f, 0x4,0x57,0x3f, 0x3,0x58,0x41, 0x4,0x5c,0x2d,\n  0x3,0x58,0x3d, 0x4,0x5c,0x31, 0x4,0x5c,0x2f, 0x4,0x5c,0x2e,\n  0x4,0x60,0x3f, 0x7,0x4e,0x5c, 0x3,0x5c,0x63, 0x4,0x63,0x76,\n  0x4,0x63,0x75, 0x4,0x66,0x5f, 0x4,0x66,0x60, 0x4,0x66,0x61,\n  0x4,0x68,0x7c, 0x4,0x68,0x7b, 0x3,0x60,0x75, 0x3,0x61,0x67,\n  0x3,0x2e,0x3f, 0x4,0x2a,0x67, 0x4,0x2a,0x66, 0x6,0x33,0x48,\n  0x3,0x32,0x6e, 0x4,0x2e,0x64, 0x3,0x32,0x71, 0x3,0x37,0x64,\n  0x4,0x33,0x63, 0x4,0x33,0x62, 0x3,0x3d,0x61, 0x3,0x3d,0x60,\n  0x4,0x39,0x59, 0x4,0x3f,0x45, 0x4,0x3f,0x44, 0x3,0x43,0x3a,\n  0x3,0x43,0x3b, 0x3,0x43,0x3e, 0x4,0x3f,0x47, 0x3,0x43,0x3c,\n  0x3,0x43,0x3f, 0x3,0x48,0x46, 0x5,0x48,0x24, 0x3,0x48,0x49,\n  0x5,0x4e,0x76, 0x3,0x4d,0x4e, 0x4,0x51,0x76, 0x3,0x52,0x25,\n  0x4,0x51,0x74, 0x4,0x51,0x75, 0x4,0x57,0x42, 0x3,0x58,0x46,\n  0x3,0x58,0x47, 0x3,0x5a,0x64, 0x4,0x66,0x63, 0x3,0x62,0x34,\n  0x5,0x24,0x6e, 0x3,0x26,0x7d, 0x5,0x27,0x46, 0x6,0x2d,0x49,\n  0x4,0x27,0x56, 0x3,0x2a,0x40, 0x3,0x2a,0x41, 0x3,0x2a,0x43,\n  0x4,0x2a,0x6a, 0x4,0x2a,0x6f, 0x4,0x2a,0x6b, 0x4,0x2a,0x69,\n  0x4,0x2a,0x6c, 0xf,0x2c,0x6d, 0x4,0x2e,0x65, 0x3,0x32,0x75,\n  0x3,0x32,0x7a, 0x6,0x42,0x66, 0x4,0x33,0x67, 0x4,0x33,0x66,\n  0x3,0x37,0x6d, 0x4,0x33,0x65, 0x5,0x34,0x3b, 0x5,0x34,0x39,\n  0x4,0x33,0x6a, 0x4,0x33,0x69, 0x4,0x33,0x6b, 0x3,0x37,0x68,\n  0x4,0x33,0x6d, 0x5,0x34,0x38, 0x3,0x37,0x6e, 0xf,0x37,0x3b,\n  0x4,0x33,0x64, 0x5,0x3a,0x65, 0x4,0x39,0x5e, 0x4,0x39,0x62,\n  0x3,0x3d,0x67, 0x4,0x39,0x64, 0x3,0x3d,0x6a, 0x4,0x39,0x63,\n  0x3,0x3d,0x6b, 0x4,0x39,0x61, 0x4,0x3f,0x4f, 0x3,0x43,0x40,\n  0x4,0x3f,0x4d, 0x3,0x43,0x45, 0x4,0x3f,0x4c, 0x3,0x43,0x42,\n  0x4,0x3f,0x4b, 0x3,0x43,0x43, 0x4,0x45,0x57, 0x4,0x3f,0x49,\n  0x5,0x41,0x31, 0x3,0x48,0x51, 0x3,0x48,0x4a, 0x4,0x45,0x5b,\n  0x3,0x48,0x53, 0x3,0x48,0x4e, 0x4,0x45,0x5a, 0x3,0x48,0x4c,\n  0x4,0x45,0x58, 0x6,0x5f,0x6b, 0x4,0x45,0x59, 0x4,0x4b,0x65,\n  0x4,0x4b,0x61, 0x3,0x4d,0x54, 0x4,0x4b,0x62, 0x3,0x4d,0x52,\n  0x7,0x26,0x32, 0x3,0x4d,0x58, 0x4,0x4b,0x68, 0x4,0x4b,0x66,\n  0x4,0x4b,0x64, 0x3,0x4d,0x59, 0x4,0x51,0x7d, 0x4,0x51,0x7c,\n  0x3,0x52,0x2b, 0x4,0x51,0x79, 0x4,0x51,0x78, 0x4,0x51,0x7a,\n  0x3,0x52,0x2d, 0x4,0x57,0x45, 0x3,0x55,0x63, 0x4,0x57,0x47,\n  0x3,0x58,0x48, 0x7,0x41,0x2e, 0x4,0x5c,0x37, 0x4,0x5c,0x35,\n  0x4,0x5c,0x36, 0x3,0x5e,0x46, 0x4,0x63,0x79, 0x4,0x66,0x65,\n  0x7,0x58,0x4c, 0x4,0x66,0x64, 0x4,0x68,0x7e, 0x4,0x69,0x21,\n  0x3,0x62,0x39, 0x4,0x24,0x69, 0x6,0x2d,0x4e, 0x3,0x2e,0x46,\n  0x3,0x2e,0x45, 0x4,0x2a,0x71, 0x4,0x2a,0x72, 0x3,0x33,0x21,\n  0x3,0x32,0x7e, 0x3,0x32,0x7d, 0x4,0x33,0x6f, 0x4,0x33,0x70,\n  0x3,0x37,0x6f, 0x5,0x34,0x45, 0x4,0x33,0x72, 0x4,0x33,0x71,\n  0x6,0x42,0x6f, 0x3,0x3d,0x6c, 0x4,0x39,0x67, 0x3,0x3d,0x6d,\n  0x6,0x4c,0x53, 0x3,0x3d,0x6e, 0x5,0x41,0x39, 0x4,0x3f,0x53,\n  0x4,0x3f,0x52, 0x6,0x56,0x27, 0x4,0x45,0x60, 0x6,0x5f,0x78,\n  0x4,0x4b,0x6c, 0x5,0x4f,0x23, 0x5,0x54,0x24, 0x4,0x52,0x25,\n  0x4,0x52,0x22, 0x4,0x52,0x24, 0x7,0x30,0x6f, 0x3,0x55,0x65,\n  0x3,0x55,0x66, 0x4,0x57,0x4c, 0x4,0x57,0x4d, 0x4,0x57,0x4b,\n  0x4,0x57,0x4f, 0x3,0x55,0x67, 0x4,0x5c,0x39, 0x4,0x5c,0x3a,\n  0x4,0x60,0x48, 0x4,0x60,0x49, 0x4,0x63,0x7c, 0x4,0x69,0x22,\n  0x3,0x24,0x34, 0x3,0x2a,0x46, 0x4,0x2a,0x76, 0x3,0x2e,0x4a,\n  0x3,0x33,0x25, 0x4,0x2e,0x6d, 0x3,0x33,0x22, 0x5,0x34,0x46,\n  0x3,0x3d,0x6f, 0x4,0x39,0x6a, 0x3,0x43,0x48, 0x4,0x3f,0x54,\n  0x4,0x3f,0x55, 0x4,0x3f,0x5a, 0x4,0x45,0x63, 0x4,0x57,0x52,\n  0x4,0x5c,0x3b, 0x3,0x5a,0x68, 0x5,0x2b,0x21, 0x4,0x2e,0x75,\n  0x4,0x2e,0x70, 0x3,0x33,0x28, 0x4,0x2e,0x77, 0x3,0x33,0x29,\n  0x4,0x2e,0x73, 0x4,0x2e,0x72, 0x4,0x33,0x76, 0x4,0x33,0x7d,\n  0x3,0x37,0x74, 0x5,0x34,0x48, 0x4,0x33,0x77, 0x4,0x33,0x7b,\n  0x3,0x37,0x75, 0x6,0x42,0x76, 0x4,0x33,0x78, 0x4,0x39,0x6d,\n  0x4,0x39,0x74, 0x4,0x39,0x71, 0x3,0x3d,0x74, 0x4,0x3f,0x5b,\n  0x4,0x39,0x72, 0x3,0x3d,0x7a, 0x4,0x39,0x75, 0x3,0x3d,0x73,\n  0x4,0x39,0x6f, 0x6,0x4c,0x5b, 0x6,0x4c,0x56, 0x3,0x43,0x50,\n  0x4,0x3f,0x66, 0x4,0x3f,0x62, 0x4,0x3f,0x61, 0x3,0x43,0x52,\n  0x3,0x43,0x53, 0x4,0x3f,0x5d, 0x3,0x43,0x4e, 0x4,0x3f,0x60,\n  0x3,0x43,0x4b, 0x4,0x3f,0x63, 0x5,0x48,0x46, 0x4,0x39,0x76,\n  0x4,0x45,0x65, 0x3,0x48,0x5b, 0x4,0x45,0x6a, 0x4,0x45,0x69,\n  0x3,0x48,0x5f, 0x4,0x45,0x6e, 0x4,0x45,0x68, 0x3,0x48,0x59,\n  0x4,0x45,0x6d, 0x4,0x45,0x66, 0x5,0x48,0x36, 0x4,0x4b,0x7b,\n  0x4,0x4b,0x75, 0x4,0x4b,0x70, 0x3,0x4d,0x61, 0x3,0x4d,0x5e,\n  0x4,0x4c,0x22, 0x3,0x4d,0x67, 0x4,0x4b,0x7e, 0x3,0x4d,0x62,\n  0x4,0x4c,0x2e, 0x5,0x4f,0x3b, 0x3,0x4d,0x64, 0x4,0x4c,0x30,\n  0x4,0x4c,0x25, 0x4,0x4c,0x2d, 0x4,0x4b,0x79, 0x5,0x4f,0x32,\n  0x3,0x4d,0x5f, 0x5,0x4f,0x45, 0x4,0x4c,0x2c, 0x4,0x4c,0x27,\n  0x4,0x4b,0x77, 0x3,0x4d,0x66, 0x3,0x4d,0x68, 0x4,0x4c,0x28,\n  0x5,0x4f,0x36, 0x4,0x52,0x34, 0x4,0x52,0x3a, 0x3,0x52,0x31,\n  0x4,0x52,0x37, 0x4,0x52,0x2b, 0x4,0x52,0x38, 0x3,0x52,0x35,\n  0x4,0x52,0x39, 0x4,0x52,0x3b, 0x4,0x52,0x36, 0x4,0x52,0x2f,\n  0x4,0x52,0x3d, 0x4,0x52,0x29, 0x3,0x52,0x32, 0x4,0x57,0x5b,\n  0x5,0x5c,0x6d, 0x4,0x57,0x5e, 0x4,0x57,0x5a, 0x4,0x57,0x62,\n  0x5,0x5c,0x7d, 0x4,0x57,0x65, 0x4,0x57,0x53, 0x3,0x55,0x6c,\n  0x4,0x57,0x56, 0x4,0x57,0x58, 0x4,0x57,0x59, 0x5,0x5c,0x7e,\n  0x4,0x57,0x55, 0x5,0x5d,0x30, 0x4,0x5c,0x44, 0x4,0x5c,0x4f,\n  0x4,0x5c,0x4b, 0x4,0x5c,0x50, 0x4,0x5c,0x43, 0x3,0x58,0x4a,\n  0x4,0x5c,0x4a, 0x3,0x5a,0x6c, 0x4,0x5c,0x42, 0x4,0x5c,0x4c,\n  0x7,0x41,0x3f, 0x4,0x5c,0x46, 0x4,0x5c,0x49, 0x4,0x5c,0x40,\n  0x5,0x63,0x34, 0x4,0x5c,0x48, 0x3,0x58,0x4d, 0x3,0x58,0x4b,\n  0x5,0x63,0x41, 0x4,0x60,0x56, 0x5,0x68,0x6e, 0x3,0x5a,0x6a,\n  0x4,0x60,0x53, 0x5,0x68,0x66, 0x3,0x5a,0x6d, 0x3,0x5a,0x69,\n  0x3,0x5a,0x6b, 0x4,0x5c,0x51, 0x4,0x63,0x7e, 0x4,0x66,0x69,\n  0x4,0x66,0x6c, 0x4,0x66,0x6e, 0x3,0x5e,0x4a, 0x4,0x66,0x6a,\n  0x3,0x5e,0x4d, 0x4,0x66,0x68, 0x4,0x66,0x6d, 0x3,0x5f,0x56,\n  0x5,0x70,0x61, 0x4,0x69,0x26, 0x4,0x69,0x28, 0x4,0x6a,0x5d,\n  0x4,0x6a,0x61, 0x4,0x6a,0x5c, 0x3,0x60,0x5f, 0x4,0x6b,0x76,\n  0x4,0x6d,0x5c, 0x4,0x6d,0x76, 0x7,0x65,0x5d, 0x4,0x2a,0x77,\n  0x3,0x33,0x2f, 0x3,0x33,0x33, 0x6,0x43,0x22, 0x4,0x34,0x25,\n  0x5,0x34,0x59, 0x3,0x37,0x7c, 0x6,0x4c,0x60, 0x4,0x39,0x7b,\n  0x4,0x39,0x7c, 0x3,0x3d,0x7d, 0x3,0x3d,0x7c, 0x4,0x39,0x7d,\n  0x3,0x43,0x5a, 0x3,0x43,0x56, 0x3,0x43,0x57, 0x3,0x43,0x59,\n  0x3,0x43,0x5b, 0x3,0x48,0x63, 0x4,0x45,0x72, 0x3,0x48,0x64,\n  0x3,0x48,0x65, 0x6,0x60,0x2c, 0x3,0x48,0x66, 0x3,0x4d,0x6b,\n  0x3,0x4d,0x6c, 0x3,0x4d,0x69, 0x3,0x4d,0x6a, 0x4,0x4c,0x37,\n  0x7,0x26,0x57, 0x4,0x4c,0x35, 0x3,0x52,0x36, 0x4,0x57,0x6d,\n  0x3,0x55,0x73, 0x3,0x55,0x72, 0x4,0x57,0x69, 0x4,0x57,0x6a,\n  0x3,0x4d,0x74, 0x4,0x57,0x6b, 0x5,0x63,0x4e, 0x4,0x5c,0x56,\n  0x3,0x58,0x52, 0x4,0x5c,0x55, 0x4,0x5c,0x54, 0x5,0x63,0x54,\n  0x3,0x58,0x53, 0x3,0x5a,0x70, 0x4,0x60,0x5b, 0x4,0x60,0x5d,\n  0x4,0x64,0x23, 0x3,0x5c,0x68, 0x7,0x54,0x3a, 0x5,0x70,0x70,\n  0x4,0x6a,0x65, 0x5,0x76,0x39, 0x4,0x6c,0x7a, 0x3,0x61,0x45,\n  0x4,0x27,0x5c, 0x6,0x33,0x64, 0x3,0x2e,0x57, 0x3,0x2e,0x55,\n  0x3,0x2e,0x58, 0x4,0x2e,0x78, 0x4,0x2e,0x7e, 0x3,0x33,0x35,\n  0x3,0x33,0x34, 0x4,0x2e,0x7c, 0x3,0x33,0x39, 0x4,0x2f,0x21,\n  0x3,0x33,0x38, 0x4,0x2e,0x7d, 0x3,0x33,0x36, 0x3,0x33,0x3a,\n  0x4,0x34,0x2e, 0x4,0x34,0x26, 0x3,0x38,0x23, 0x3,0x38,0x2a,\n  0x4,0x34,0x27, 0x4,0x34,0x30, 0x3,0x38,0x2c, 0x4,0x34,0x2d,\n  0x4,0x34,0x2b, 0x4,0x34,0x29, 0x3,0x38,0x28, 0x3,0x38,0x2d,\n  0x3,0x38,0x25, 0x3,0x3e,0x36, 0x5,0x3b,0x2c, 0x3,0x3e,0x2d,\n  0x3,0x3e,0x32, 0x3,0x3e,0x27, 0x3,0x3e,0x30, 0x3,0x3e,0x25,\n  0x6,0x4c,0x71, 0x3,0x3e,0x31, 0x4,0x3f,0x6a, 0x3,0x43,0x65,\n  0x3,0x43,0x6b, 0x4,0x3f,0x6e, 0x4,0x3f,0x73, 0x4,0x3f,0x6f,\n  0x3,0x43,0x61, 0x3,0x43,0x5d, 0x3,0x48,0x6c, 0x4,0x45,0x75,\n  0x4,0x45,0x7e, 0x4,0x45,0x79, 0x4,0x46,0x21, 0x3,0x48,0x67,\n  0x3,0x43,0x5f, 0x3,0x48,0x72, 0x3,0x48,0x75, 0x4,0x46,0x23,\n  0x5,0x48,0x54, 0x3,0x48,0x6f, 0x3,0x4e,0x2a, 0x5,0x4f,0x53,\n  0x4,0x4c,0x3e, 0x4,0x4c,0x3c, 0x4,0x4c,0x40, 0x3,0x4d,0x7b,\n  0x3,0x4e,0x21, 0x3,0x4e,0x2d, 0x3,0x4d,0x76, 0x3,0x4d,0x79,\n  0x4,0x4c,0x3a, 0x4,0x4c,0x3d, 0x4,0x4c,0x3f, 0x3,0x4d,0x7a,\n  0x4,0x4c,0x44, 0x5,0x4f,0x54, 0x3,0x4e,0x26, 0x3,0x4e,0x23,\n  0x3,0x52,0x3a, 0x4,0x52,0x49, 0x3,0x52,0x3c, 0x4,0x52,0x47,\n  0x3,0x52,0x3d, 0x3,0x52,0x3e, 0x4,0x57,0x73, 0x3,0x55,0x78,\n  0x5,0x5d,0x3f, 0x3,0x55,0x76, 0x5,0x5d,0x46, 0x3,0x55,0x77,\n  0x4,0x57,0x6e, 0x3,0x55,0x7c, 0x3,0x55,0x7b, 0x7,0x3a,0x39,\n  0x4,0x5c,0x62, 0x4,0x5c,0x60, 0x4,0x57,0x72, 0x3,0x58,0x57,\n  0x3,0x58,0x56, 0x3,0x59,0x29, 0x4,0x60,0x66, 0x4,0x60,0x63,\n  0x4,0x60,0x68, 0x4,0x60,0x62, 0x7,0x47,0x4a, 0x3,0x5a,0x73,\n  0x3,0x5a,0x71, 0x5,0x6d,0x22, 0x3,0x5c,0x69, 0x4,0x64,0x24,\n  0x3,0x5c,0x6a, 0x3,0x5c,0x6b, 0x3,0x5e,0x4f, 0x3,0x5e,0x4e,\n  0x4,0x69,0x2a, 0x7,0x58,0x58, 0x3,0x5f,0x59, 0x4,0x69,0x2b,\n  0x4,0x6a,0x66, 0x4,0x6b,0x79, 0x4,0x6b,0x78, 0x7,0x5f,0x33,\n  0x3,0x60,0x78, 0x4,0x6c,0x7c, 0x4,0x6c,0x7b, 0x4,0x6d,0x77,\n  0x4,0x2a,0x79, 0x4,0x2f,0x29, 0x3,0x38,0x2f, 0x3,0x38,0x32,\n  0x5,0x34,0x60, 0x4,0x34,0x34, 0x3,0x38,0x30, 0x4,0x34,0x33,\n  0x4,0x3a,0x28, 0x4,0x46,0x25, 0x3,0x48,0x76, 0x4,0x52,0x4e,\n  0x4,0x6a,0x6b, 0xf,0x21,0x47, 0x3,0x2a,0x4d, 0x3,0x2e,0x5c,\n  0x3,0x2e,0x5b, 0x3,0x2e,0x59, 0x4,0x2a,0x7b, 0x4,0x2f,0x2a,\n  0x6,0x3a,0x6b, 0x4,0x2f,0x2d, 0x4,0x34,0x35, 0x4,0x3f,0x75,\n  0x4,0x3a,0x2a, 0x3,0x43,0x6c, 0x3,0x43,0x6d, 0x5,0x41,0x65,\n  0x3,0x48,0x7a, 0x3,0x48,0x7b, 0x4,0x52,0x4f, 0x4,0x57,0x75,\n  0x4,0x5c,0x65, 0x4,0x60,0x6d, 0x4,0x66,0x7b, 0x4,0x6b,0x7b,\n  0x6,0x3a,0x74, 0x4,0x2f,0x2e, 0x3,0x31,0x3f, 0x4,0x34,0x38,\n  0x4,0x34,0x36, 0x4,0x34,0x37, 0x6,0x43,0x3c, 0x4,0x3a,0x2d,\n  0x4,0x3a,0x31, 0x4,0x3a,0x30, 0x4,0x3f,0x76, 0x3,0x48,0x7e,\n  0x4,0x46,0x27, 0x3,0x48,0x7d, 0x4,0x46,0x28, 0x3,0x48,0x7c,\n  0x4,0x4c,0x49, 0x4,0x52,0x53, 0x3,0x52,0x41, 0x4,0x57,0x77,\n  0x4,0x5c,0x6a, 0x4,0x5c,0x6b, 0x4,0x69,0x2c, 0x3,0x33,0x40,\n  0x3,0x33,0x41, 0x4,0x34,0x3a, 0x3,0x38,0x33, 0x4,0x34,0x3b,\n  0x4,0x34,0x3e, 0x4,0x34,0x3c, 0x3,0x38,0x35, 0x3,0x38,0x34,\n  0x4,0x3a,0x34, 0x4,0x3a,0x35, 0x5,0x3b,0x3a, 0x4,0x3a,0x33,\n  0x3,0x43,0x70, 0x4,0x3f,0x78, 0x3,0x43,0x71, 0x4,0x3f,0x77,\n  0x3,0x43,0x6f, 0x3,0x49,0x21, 0x4,0x46,0x2a, 0x4,0x46,0x29,\n  0x4,0x46,0x2b, 0x4,0x52,0x55, 0x4,0x52,0x56, 0x3,0x58,0x5e,\n  0x3,0x58,0x60, 0x3,0x58,0x5f, 0x3,0x5c,0x6e, 0x4,0x66,0x7d,\n  0x3,0x3e,0x39, 0x3,0x3e,0x3a, 0x4,0x2b,0x27, 0x4,0x2b,0x28,\n  0x4,0x2f,0x38, 0x4,0x2b,0x29, 0x3,0x38,0x38, 0x4,0x3f,0x7a,\n  0x4,0x46,0x2e, 0x4,0x46,0x2d, 0x4,0x46,0x2f, 0x4,0x46,0x32,\n  0x4,0x46,0x30, 0x4,0x4c,0x4f, 0x4,0x57,0x7d, 0x4,0x57,0x7a,\n  0x4,0x57,0x7b, 0x4,0x5c,0x70, 0x4,0x67,0x21, 0x4,0x24,0x6d,\n  0x3,0x33,0x46, 0x3,0x33,0x45, 0x3,0x38,0x3a, 0x4,0x34,0x41,\n  0x4,0x3a,0x39, 0x5,0x41,0x70, 0x3,0x43,0x74, 0x4,0x46,0x36,\n  0x4,0x46,0x34, 0x4,0x46,0x35, 0x4,0x46,0x37, 0x3,0x49,0x24,\n  0x3,0x4e,0x33, 0x4,0x4c,0x52, 0x4,0x52,0x5a, 0x3,0x52,0x42,\n  0x4,0x52,0x5b, 0x4,0x58,0x21, 0x4,0x58,0x24, 0x4,0x58,0x23,\n  0x4,0x58,0x22, 0x3,0x58,0x64, 0x4,0x64,0x28, 0x3,0x5f,0x5c,\n  0x6,0x56,0x6d, 0x4,0x23,0x2d, 0x6,0x25,0x49, 0x4,0x24,0x6f,\n  0x4,0x24,0x6e, 0x3,0x2a,0x51, 0x6,0x3b,0x28, 0x3,0x2a,0x55,\n  0x3,0x2a,0x50, 0x4,0x27,0x66, 0xf,0x28,0x52, 0x4,0x27,0x62,\n  0x4,0x27,0x67, 0x4,0x27,0x63, 0x4,0x27,0x65, 0x5,0x27,0x58,\n  0x3,0x2a,0x5a, 0x3,0x2a,0x53, 0x5,0x2b,0x33, 0x4,0x2b,0x2f,\n  0x4,0x2b,0x2a, 0x4,0x2b,0x2c, 0x3,0x2e,0x62, 0x3,0x2e,0x5f,\n  0x6,0x33,0x7d, 0x5,0x2b,0x39, 0x3,0x33,0x51, 0x4,0x2f,0x41,\n  0x4,0x2f,0x46, 0x4,0x2f,0x47, 0x4,0x2f,0x3f, 0x6,0x3b,0x31,\n  0x5,0x2f,0x6d, 0x3,0x38,0x46, 0x4,0x34,0x4c, 0x4,0x34,0x48,\n  0x3,0x38,0x44, 0x4,0x34,0x4b, 0x4,0x34,0x52, 0x4,0x34,0x51,\n  0x4,0x34,0x4a, 0x4,0x34,0x53, 0x6,0x43,0x58, 0x3,0x38,0x40,\n  0x3,0x38,0x3f, 0x3,0x38,0x43, 0x4,0x3a,0x49, 0x4,0x3a,0x3a,\n  0x3,0x3e,0x3f, 0x4,0x3a,0x45, 0x5,0x3b,0x4d, 0x4,0x3a,0x4a,\n  0x4,0x3a,0x41, 0x4,0x3a,0x40, 0x4,0x3a,0x42, 0x4,0x3a,0x3d,\n  0x3,0x3e,0x46, 0x4,0x3a,0x3f, 0x4,0x3a,0x44, 0x4,0x3a,0x4b,\n  0x6,0x49,0x7e, 0x6,0x4d,0x54, 0x6,0x56,0x76, 0x4,0x40,0x27,\n  0x3,0x43,0x78, 0x4,0x40,0x2a, 0x4,0x40,0x23, 0x4,0x40,0x26,\n  0x3,0x43,0x7a, 0x4,0x3f,0x7d, 0x4,0x40,0x28, 0x3,0x44,0x21,\n  0x4,0x40,0x2c, 0x3,0x43,0x7d, 0x3,0x43,0x79, 0x5,0x34,0x6a,\n  0x4,0x40,0x25, 0x4,0x46,0x45, 0x4,0x46,0x3e, 0x4,0x46,0x3c,\n  0x4,0x46,0x3d, 0x4,0x46,0x3f, 0x3,0x52,0x48, 0x4,0x46,0x42,\n  0x4,0x46,0x40, 0x4,0x46,0x3b, 0x3,0x49,0x29, 0x3,0x49,0x28,\n  0x4,0x46,0x38, 0x4,0x46,0x47, 0x4,0x46,0x41, 0x4,0x4c,0x5d,\n  0x4,0x4c,0x58, 0x4,0x4c,0x5e, 0x4,0x4c,0x55, 0x4,0x4c,0x5c,\n  0x6,0x60,0x6f, 0x4,0x4c,0x54, 0x4,0x4c,0x5b, 0x4,0x4c,0x5f,\n  0x5,0x42,0x28, 0x4,0x52,0x63, 0x4,0x52,0x64, 0x3,0x52,0x46,\n  0x3,0x52,0x45, 0x4,0x52,0x5e, 0x4,0x52,0x61, 0x4,0x52,0x62,\n  0x4,0x52,0x66, 0xf,0x51,0x55, 0x5,0x5d,0x5b, 0x4,0x58,0x2b,\n  0x4,0x58,0x28, 0x4,0x58,0x2c, 0x4,0x5c,0x74, 0x3,0x58,0x66,\n  0x4,0x5c,0x76, 0x3,0x58,0x67, 0x3,0x5a,0x76, 0x4,0x60,0x74,\n  0x4,0x60,0x73, 0x5,0x6d,0x2c, 0x4,0x64,0x2a, 0x4,0x67,0x22,\n  0x4,0x67,0x24, 0x4,0x67,0x23, 0x4,0x67,0x25, 0x4,0x69,0x30,\n  0x6,0x43,0x64, 0x7,0x42,0x24, 0x3,0x2b,0x44, 0x3,0x44,0x24,\n  0x4,0x2f,0x4a, 0x4,0x34,0x58, 0x4,0x4c,0x63, 0x4,0x52,0x6b,\n  0x3,0x33,0x53, 0x3,0x33,0x54, 0x3,0x38,0x4a, 0x4,0x4c,0x64,\n  0x6,0x61,0x21, 0x3,0x52,0x4b, 0x3,0x5e,0x54, 0x4,0x27,0x6f,\n  0x4,0x2b,0x33, 0x4,0x2b,0x32, 0x3,0x2e,0x67, 0x3,0x33,0x56,\n  0x4,0x2f,0x50, 0x3,0x38,0x4b, 0x6,0x43,0x71, 0x6,0x43,0x70,\n  0x3,0x3e,0x4a, 0x4,0x3a,0x4e, 0x4,0x3a,0x4f, 0x6,0x4d,0x63,\n  0x5,0x42,0x2d, 0x4,0x40,0x2f, 0x4,0x46,0x4f, 0x4,0x46,0x51,\n  0x4,0x46,0x50, 0x3,0x49,0x2c, 0x6,0x61,0x24, 0x5,0x49,0x2c,\n  0x3,0x4e,0x3e, 0x4,0x4c,0x68, 0x4,0x4c,0x65, 0x4,0x52,0x6c,\n  0x4,0x52,0x6d, 0x4,0x58,0x30, 0x4,0x58,0x34, 0x4,0x58,0x33,\n  0x3,0x56,0x25, 0x3,0x56,0x26, 0x5,0x5d,0x67, 0x5,0x5c,0x4d,\n  0x4,0x58,0x32, 0x4,0x5c,0x7c, 0x4,0x64,0x2d, 0x4,0x2f,0x53,\n  0x4,0x34,0x5c, 0x4,0x52,0x6f, 0x4,0x52,0x6e, 0x4,0x58,0x35,\n  0x4,0x5c,0x7d, 0x4,0x69,0x33, 0x6,0x25,0x4f, 0x3,0x24,0x37,\n  0x3,0x24,0x39, 0x3,0x27,0x27, 0x4,0x24,0x76, 0x4,0x24,0x7d,\n  0x3,0x27,0x2c, 0x3,0x2a,0x63, 0x3,0x2a,0x67, 0x3,0x2a,0x64,\n  0x3,0x2a,0x6a, 0x4,0x27,0x72, 0x3,0x2a,0x62, 0x4,0x28,0x21,\n  0x4,0x27,0x73, 0x3,0x2a,0x65, 0x3,0x2a,0x69, 0x5,0x27,0x63,\n  0x3,0x2a,0x61, 0x3,0x2e,0x6d, 0x4,0x2b,0x36, 0x3,0x2e,0x70,\n  0x3,0x2e,0x71, 0x3,0x2e,0x6c, 0x3,0x2e,0x73, 0x3,0x2e,0x75,\n  0x6,0x34,0x3a, 0x4,0x2f,0x55, 0x3,0x33,0x61, 0x4,0x2f,0x61,\n  0x3,0x33,0x64, 0x3,0x33,0x5b, 0x3,0x33,0x5e, 0x6,0x3b,0x56,\n  0x3,0x33,0x5d, 0x4,0x2f,0x5e, 0x3,0x33,0x5c, 0x3,0x33,0x65,\n  0x5,0x30,0x21, 0x4,0x2f,0x59, 0x4,0x2f,0x64, 0x3,0x33,0x60,\n  0x4,0x34,0x5e, 0x4,0x34,0x6c, 0x4,0x34,0x71, 0x3,0x38,0x5a,\n  0x4,0x34,0x69, 0x4,0x34,0x65, 0x3,0x38,0x56, 0x4,0x34,0x66,\n  0x4,0x34,0x62, 0x4,0x34,0x5d, 0x4,0x34,0x63, 0x6,0x44,0x2c,\n  0x3,0x38,0x4c, 0x6,0x44,0x28, 0x5,0x35,0x2a, 0x3,0x38,0x59,\n  0x3,0x38,0x5c, 0x5,0x35,0x24, 0x4,0x3a,0x6c, 0x4,0x3a,0x60,\n  0x4,0x3a,0x5f, 0x4,0x3a,0x64, 0x4,0x3a,0x59, 0x5,0x3b,0x56,\n  0x4,0x3a,0x5b, 0x4,0x3a,0x56, 0x3,0x3e,0x53, 0x4,0x3a,0x5e,\n  0x3,0x3e,0x54, 0x3,0x3e,0x51, 0x4,0x3a,0x5c, 0x4,0x3a,0x61,\n  0x3,0x3e,0x55, 0x6,0x4e,0x27, 0x3,0x3e,0x4c, 0xf,0x3e,0x6b,\n  0x4,0x40,0x30, 0x4,0x40,0x32, 0x4,0x3a,0x65, 0x3,0x44,0x37,\n  0x4,0x46,0x69, 0x4,0x40,0x47, 0x4,0x40,0x49, 0x4,0x40,0x3a,\n  0x3,0x44,0x2b, 0x3,0x44,0x29, 0x3,0x44,0x34, 0x4,0x40,0x48,\n  0x3,0x44,0x3d, 0x4,0x40,0x4c, 0x4,0x46,0x65, 0x3,0x49,0x2f,\n  0x4,0x46,0x57, 0x6,0x61,0x44, 0x4,0x46,0x64, 0x3,0x49,0x31,\n  0x4,0x46,0x53, 0x5,0x49,0x3c, 0x4,0x46,0x61, 0x3,0x49,0x30,\n  0x4,0x46,0x6d, 0x4,0x46,0x60, 0x4,0x46,0x5c, 0x3,0x49,0x34,\n  0x5,0x49,0x3b, 0x6,0x61,0x58, 0x3,0x49,0x37, 0x3,0x49,0x40,\n  0x3,0x4e,0x43, 0x4,0x4c,0x72, 0x3,0x4e,0x3f, 0x4,0x4c,0x70,\n  0x4,0x4d,0x24, 0x4,0x4c,0x6b, 0x3,0x4e,0x41, 0x4,0x4c,0x71,\n  0x3,0x4e,0x53, 0x4,0x4c,0x6d, 0x4,0x4c,0x73, 0x3,0x4e,0x47,\n  0x3,0x4e,0x45, 0x3,0x4e,0x56, 0x4,0x4c,0x7d, 0x3,0x52,0x51,\n  0x4,0x4c,0x6c, 0x3,0x4e,0x4a, 0x4,0x4c,0x6e, 0x3,0x4e,0x48,\n  0x3,0x4e,0x55, 0x3,0x4e,0x49, 0x5,0x50,0x46, 0x3,0x4e,0x50,\n  0xf,0x51,0x65, 0xf,0x51,0x73, 0xf,0x51,0x76, 0x4,0x4d,0x21,\n  0x4,0x4c,0x6f, 0x3,0x4e,0x51, 0x4,0x4c,0x77, 0x4,0x52,0x77,\n  0x4,0x52,0x7b, 0x4,0x52,0x79, 0x4,0x53,0x2c, 0x4,0x53,0x21,\n  0x4,0x52,0x76, 0x3,0x52,0x53, 0x4,0x53,0x25, 0x3,0x52,0x57,\n  0x4,0x52,0x7e, 0x3,0x52,0x4d, 0x4,0x53,0x23, 0x4,0x52,0x7a,\n  0x4,0x52,0x7c, 0x4,0x52,0x72, 0x5,0x64,0x2d, 0x3,0x52,0x4c,\n  0x4,0x53,0x22, 0x4,0x52,0x73, 0x3,0x52,0x4e, 0x4,0x53,0x27,\n  0x4,0x53,0x31, 0x4,0x46,0x67, 0x4,0x58,0x44, 0x4,0x58,0x3c,\n  0x4,0x58,0x38, 0x4,0x58,0x42, 0x5,0x5d,0x79, 0x4,0x58,0x36,\n  0x4,0x58,0x3b, 0x3,0x56,0x2e, 0x3,0x56,0x27, 0x4,0x58,0x3d,\n  0x3,0x56,0x2a, 0x3,0x56,0x2f, 0x3,0x58,0x69, 0x4,0x5c,0x7e,\n  0x4,0x5d,0x2b, 0x3,0x58,0x6d, 0x3,0x58,0x70, 0x3,0x58,0x6a,\n  0x3,0x58,0x71, 0x4,0x5d,0x23, 0x7,0x42,0x38, 0x4,0x5d,0x21,\n  0xf,0x60,0x4e, 0x7,0x3b,0x32, 0x4,0x60,0x77, 0x3,0x5c,0x73,\n  0x3,0x5b,0x23, 0x4,0x60,0x78, 0x3,0x5b,0x21, 0x3,0x5b,0x24,\n  0x7,0x49,0x53, 0x4,0x64,0x2f, 0x4,0x64,0x34, 0x3,0x5c,0x7d,\n  0x4,0x64,0x33, 0x3,0x5c,0x74, 0x7,0x54,0x68, 0x3,0x5c,0x79,\n  0x4,0x64,0x32, 0x4,0x64,0x38, 0x3,0x5c,0x7a, 0x4,0x64,0x30,\n  0x3,0x5c,0x75, 0x4,0x64,0x36, 0x4,0x67,0x27, 0x3,0x5e,0x59,\n  0x4,0x67,0x28, 0xf,0x68,0x39, 0x3,0x5f,0x5d, 0x4,0x69,0x37,\n  0x7,0x58,0x72, 0x3,0x60,0x41, 0x3,0x60,0x42, 0x5,0x78,0x25,\n  0x4,0x6b,0x7d, 0x4,0x6d,0x5e, 0x4,0x6c,0x7d, 0x3,0x61,0x6a,\n  0x4,0x6d,0x79, 0x4,0x6d,0x7b, 0xf,0x6c,0x6c, 0x4,0x6e,0x37,\n  0x4,0x6e,0x36, 0x5,0x7c,0x3e, 0x3,0x2a,0x6d, 0x4,0x2b,0x3e,\n  0x4,0x2f,0x67, 0x3,0x33,0x67, 0x3,0x33,0x66, 0x3,0x33,0x68,\n  0x5,0x35,0x35, 0x3,0x38,0x62, 0x5,0x3b,0x70, 0x3,0x3e,0x60,\n  0x3,0x44,0x41, 0x5,0x42,0x54, 0x5,0x42,0x53, 0x3,0x44,0x42,\n  0x3,0x44,0x43, 0x4,0x4d,0x26, 0x4,0x53,0x36, 0x4,0x5d,0x32,\n  0x5,0x64,0x3b, 0x5,0x64,0x3a, 0x4,0x64,0x3a, 0x3,0x27,0x2e,\n  0x3,0x2e,0x7d, 0x3,0x2f,0x21, 0x3,0x2f,0x22, 0x4,0x2f,0x69,\n  0x4,0x2f,0x6b, 0x6,0x3b,0x69, 0x3,0x38,0x68, 0x3,0x38,0x67,\n  0x4,0x34,0x7c, 0x3,0x38,0x65, 0x4,0x34,0x7b, 0x4,0x34,0x79,\n  0x5,0x3c,0x26, 0x6,0x44,0x48, 0x4,0x3a,0x72, 0x3,0x3e,0x67,\n  0x4,0x3a,0x74, 0x3,0x3e,0x65, 0x5,0x3b,0x74, 0x4,0x3a,0x70,\n  0x4,0x3a,0x6d, 0x3,0x3e,0x64, 0x3,0x3e,0x66, 0x4,0x40,0x56,\n  0x4,0x40,0x57, 0x3,0x44,0x4b, 0x3,0x44,0x47, 0x4,0x40,0x5b,\n  0x4,0x3a,0x6e, 0x4,0x40,0x5d, 0x3,0x44,0x4a, 0x4,0x46,0x78,\n  0x3,0x49,0x46, 0x4,0x46,0x72, 0x4,0x46,0x73, 0x4,0x46,0x71,\n  0x4,0x46,0x75, 0x3,0x49,0x47, 0x4,0x46,0x70, 0x4,0x46,0x76,\n  0x6,0x61,0x69, 0x3,0x49,0x48, 0x4,0x46,0x7b, 0x3,0x4e,0x5a,\n  0x3,0x4e,0x5c, 0x7,0x28,0x42, 0x3,0x4e,0x57, 0x3,0x4e,0x58,\n  0x4,0x4d,0x30, 0x3,0x4e,0x5b, 0x4,0x46,0x79, 0x4,0x4d,0x36,\n  0x4,0x4d,0x2f, 0x3,0x49,0x4d, 0x4,0x53,0x3e, 0x3,0x52,0x5c,\n  0x7,0x32,0x73, 0x4,0x53,0x3d, 0x4,0x58,0x4d, 0x3,0x52,0x60,\n  0x7,0x32,0x75, 0x3,0x52,0x61, 0x5,0x5e,0x32, 0x4,0x58,0x57,\n  0x4,0x58,0x52, 0x3,0x56,0x37, 0x4,0x58,0x58, 0x4,0x58,0x4f,\n  0x4,0x58,0x56, 0x3,0x56,0x38, 0x4,0x58,0x4e, 0x3,0x56,0x32,\n  0x4,0x58,0x54, 0x4,0x58,0x5f, 0x3,0x56,0x35, 0x3,0x56,0x3c,\n  0x3,0x56,0x31, 0x4,0x5d,0x3b, 0x5,0x5e,0x35, 0x4,0x5d,0x39,\n  0x3,0x58,0x72, 0x4,0x61,0x24, 0x5,0x69,0x41, 0x3,0x5b,0x2a,\n  0x4,0x61,0x21, 0x4,0x61,0x25, 0xf,0x63,0x6e, 0x5,0x6d,0x4b,\n  0x4,0x64,0x3b, 0x4,0x64,0x3c, 0x4,0x64,0x40, 0x4,0x64,0x3e,\n  0x4,0x64,0x41, 0x3,0x5d,0x26, 0x3,0x5e,0x5e, 0x4,0x67,0x30,\n  0x4,0x64,0x3d, 0x4,0x69,0x3e, 0x3,0x5f,0x5e, 0x3,0x5f,0x60,\n  0x3,0x60,0x44, 0x7,0x59,0x25, 0x7,0x5c,0x5e, 0x4,0x6a,0x78,\n  0x7,0x5c,0x63, 0x3,0x61,0x48, 0x4,0x6e,0x39, 0x3,0x2f,0x25,\n  0x6,0x3b,0x73, 0x3,0x38,0x69, 0x3,0x44,0x4c, 0x4,0x47,0x23,\n  0x4,0x4d,0x37, 0x4,0x2f,0x6f, 0x4,0x3a,0x78, 0x3,0x4e,0x5e,\n  0x4,0x53,0x4a, 0x3,0x5b,0x2e, 0x3,0x2a,0x6e, 0x3,0x2f,0x28,\n  0x4,0x2b,0x46, 0x5,0x30,0x3d, 0x4,0x2f,0x72, 0x5,0x30,0x39,\n  0x4,0x35,0x2a, 0x4,0x3a,0x7a, 0x4,0x35,0x2d, 0x4,0x35,0x2e,\n  0x4,0x35,0x2c, 0xf,0x32,0x51, 0x4,0x3a,0x79, 0x3,0x3e,0x71,\n  0x4,0x35,0x30, 0x3,0x3e,0x6e, 0x3,0x3e,0x6c, 0x3,0x3e,0x6b,\n  0x3,0x2f,0x4a, 0x4,0x40,0x62, 0x4,0x47,0x25, 0x6,0x58,0x2b,\n  0x3,0x49,0x53, 0x4,0x47,0x2d, 0x5,0x49,0x6c, 0x5,0x49,0x6d,\n  0x4,0x40,0x66, 0x4,0x47,0x31, 0x4,0x47,0x27, 0x3,0x49,0x55,\n  0x4,0x40,0x60, 0x4,0x47,0x2a, 0x4,0x47,0x2e, 0x4,0x47,0x26,\n  0x4,0x47,0x2b, 0x3,0x49,0x5a, 0x3,0x49,0x50, 0x3,0x49,0x5b,\n  0x4,0x4d,0x3c, 0x4,0x4d,0x3f, 0x4,0x4d,0x3a, 0x4,0x4d,0x39,\n  0x4,0x4d,0x42, 0x4,0x4d,0x40, 0x4,0x4d,0x47, 0x4,0x53,0x52,\n  0x4,0x53,0x55, 0x4,0x53,0x56, 0x3,0x4e,0x63, 0x4,0x53,0x4f,\n  0x4,0x58,0x63, 0x4,0x58,0x67, 0x3,0x56,0x45, 0x3,0x56,0x43,\n  0x4,0x58,0x64, 0x3,0x56,0x3e, 0x7,0x3b,0x59, 0x3,0x56,0x44,\n  0x4,0x58,0x65, 0x3,0x56,0x41, 0x5,0x64,0x56, 0x4,0x5d,0x4a,\n  0x4,0x5d,0x48, 0x4,0x5d,0x49, 0x4,0x5d,0x44, 0x4,0x5d,0x46,\n  0x4,0x61,0x2a, 0x7,0x43,0x22, 0x4,0x64,0x43, 0x7,0x50,0x25,\n  0x3,0x5d,0x27, 0x4,0x64,0x44, 0x3,0x5e,0x5f, 0x4,0x6a,0x7b,\n  0x7,0x59,0x32, 0x3,0x60,0x7a, 0x4,0x6c,0x26, 0x3,0x60,0x79,\n  0x4,0x6d,0x7d, 0x5,0x2b,0x47, 0x4,0x2f,0x73, 0x4,0x35,0x31,\n  0x4,0x3b,0x21, 0x3,0x33,0x79, 0x3,0x33,0x78, 0x4,0x35,0x33,\n  0x4,0x35,0x35, 0x4,0x3b,0x23, 0x5,0x3c,0x35, 0x4,0x3b,0x22,\n  0x3,0x3e,0x73, 0x3,0x44,0x50, 0x3,0x44,0x51, 0x4,0x47,0x36,\n  0x4,0x47,0x38, 0x4,0x4d,0x4a, 0x4,0x4d,0x48, 0x4,0x53,0x5a,\n  0x4,0x53,0x5b, 0x5,0x58,0x32, 0x4,0x53,0x5c, 0x5,0x5e,0x43,\n  0x4,0x58,0x68, 0x4,0x58,0x69, 0x4,0x5d,0x4e, 0x4,0x5d,0x50,\n  0x4,0x61,0x2d, 0x4,0x61,0x2e, 0x3,0x5b,0x30, 0x4,0x61,0x2c,\n  0x4,0x61,0x30, 0x3,0x5e,0x60, 0x3,0x62,0x3c, 0x4,0x35,0x3a,\n  0x3,0x44,0x53, 0x4,0x40,0x67, 0x3,0x44,0x52, 0x4,0x47,0x3a,\n  0x4,0x4d,0x51, 0x4,0x4d,0x4c, 0x4,0x4d,0x4e, 0x4,0x4d,0x53,\n  0x4,0x4d,0x4f, 0x4,0x53,0x64, 0x4,0x53,0x61, 0x4,0x53,0x62,\n  0x4,0x58,0x6b, 0x4,0x58,0x6a, 0x5,0x64,0x63, 0x4,0x61,0x31,\n  0x4,0x61,0x34, 0x4,0x64,0x46, 0x4,0x64,0x47, 0x4,0x6d,0x22,\n  0x3,0x2f,0x2b, 0x5,0x2b,0x49, 0x3,0x2f,0x2d, 0x4,0x2f,0x7e,\n  0x3,0x33,0x7d, 0x4,0x35,0x41, 0x3,0x38,0x7c, 0x3,0x38,0x78,\n  0x5,0x35,0x57, 0x4,0x35,0x44, 0x5,0x35,0x5e, 0x3,0x39,0x24,\n  0x3,0x39,0x28, 0x3,0x39,0x21, 0x4,0x35,0x3f, 0x3,0x38,0x7d,\n  0x3,0x39,0x27, 0x4,0x35,0x43, 0x5,0x35,0x5d, 0x6,0x44,0x6d,\n  0x3,0x39,0x26, 0x5,0x35,0x56, 0x4,0x3b,0x33, 0x3,0x3e,0x79,\n  0x3,0x3e,0x7a, 0x4,0x3b,0x36, 0x4,0x3b,0x35, 0x3,0x3e,0x76,\n  0x3,0x3e,0x7b, 0x3,0x3e,0x77, 0x4,0x3b,0x34, 0x4,0x3b,0x2a,\n  0x4,0x3b,0x29, 0x4,0x3b,0x2b, 0x3,0x3f,0x26, 0x6,0x4e,0x6b,\n  0x3,0x3f,0x25, 0x3,0x44,0x57, 0x6,0x58,0x41, 0x3,0x44,0x5e,\n  0x4,0x40,0x6e, 0x4,0x40,0x6d, 0x4,0x40,0x6c, 0x3,0x44,0x5a,\n  0x3,0x44,0x5f, 0x3,0x44,0x62, 0x4,0x47,0x3d, 0x4,0x47,0x40,\n  0x4,0x47,0x4a, 0x4,0x47,0x3c, 0x3,0x49,0x6a, 0x4,0x47,0x46,\n  0x4,0x47,0x42, 0x3,0x49,0x61, 0x4,0x47,0x43, 0x3,0x49,0x69,\n  0x3,0x49,0x67, 0x3,0x49,0x5d, 0x4,0x4d,0x59, 0x4,0x4d,0x56,\n  0x4,0x4d,0x5c, 0x4,0x4d,0x5e, 0x3,0x4e,0x68, 0x4,0x4d,0x61,\n  0x4,0x4d,0x58, 0x4,0x4d,0x5b, 0x3,0x4e,0x6d, 0x4,0x4d,0x5f,\n  0x4,0x4d,0x5a, 0x3,0x4e,0x6b, 0x4,0x4d,0x60, 0x7,0x28,0x79,\n  0x4,0x4d,0x55, 0x3,0x4e,0x71, 0x4,0x53,0x6a, 0x3,0x52,0x6c,\n  0x3,0x52,0x6d, 0x7,0x33,0x4d, 0x4,0x53,0x6b, 0x3,0x56,0x47,\n  0x4,0x58,0x70, 0x3,0x56,0x4b, 0x3,0x56,0x4c, 0x5,0x5e,0x55,\n  0x4,0x5d,0x5a, 0x7,0x4a,0x25, 0x4,0x5d,0x57, 0x4,0x5d,0x5b,\n  0x3,0x59,0x22, 0x3,0x59,0x25, 0x4,0x5d,0x54, 0x3,0x59,0x27,\n  0x4,0x61,0x40, 0x5,0x69,0x52, 0x3,0x5b,0x33, 0x4,0x61,0x3b,\n  0x4,0x61,0x3d, 0x4,0x61,0x45, 0x5,0x69,0x51, 0x4,0x64,0x4e,\n  0x3,0x5d,0x2d, 0x7,0x50,0x31, 0x4,0x64,0x4c, 0x3,0x5d,0x2f,\n  0x4,0x64,0x48, 0x3,0x5d,0x31, 0x4,0x67,0x3d, 0x4,0x67,0x3f,\n  0x7,0x55,0x32, 0x4,0x67,0x3e, 0x4,0x67,0x40, 0x4,0x67,0x39,\n  0x7,0x59,0x38, 0x3,0x5f,0x63, 0x4,0x69,0x48, 0x5,0x76,0x4c,\n  0x4,0x2b,0x49, 0x4,0x30,0x23, 0x6,0x4e,0x7a, 0x3,0x3f,0x27,\n  0x4,0x47,0x4c, 0x3,0x4e,0x77, 0x4,0x58,0x75, 0x4,0x5d,0x61,\n  0x4,0x69,0x4c, 0x4,0x35,0x4a, 0x3,0x3f,0x28, 0x4,0x40,0x74,\n  0x4,0x47,0x4e, 0x4,0x47,0x4f, 0x3,0x49,0x6c, 0x4,0x4d,0x64,\n  0x3,0x52,0x70, 0x4,0x53,0x73, 0x3,0x52,0x6f, 0x4,0x53,0x72,\n  0x3,0x52,0x71, 0x4,0x58,0x76, 0x4,0x58,0x77, 0x3,0x56,0x4e,\n  0x4,0x67,0x44, 0x4,0x6d,0x24, 0x4,0x30,0x25, 0x4,0x35,0x4b,\n  0x6,0x45,0x22, 0x4,0x35,0x4c, 0xf,0x44,0x74, 0x4,0x4d,0x67,\n  0x4,0x4d,0x65, 0x4,0x4d,0x68, 0x4,0x53,0x75, 0x4,0x53,0x77,\n  0x4,0x5d,0x64, 0x4,0x61,0x48, 0x4,0x61,0x46, 0x4,0x67,0x45,\n  0x3,0x5f,0x65, 0x3,0x61,0x4c, 0x4,0x6d,0x25, 0x4,0x35,0x50,\n  0x6,0x45,0x24, 0x3,0x39,0x2f, 0x4,0x3b,0x3e, 0x3,0x49,0x6e,\n  0x3,0x4e,0x79, 0x3,0x4e,0x78, 0x3,0x52,0x72, 0x3,0x56,0x50,\n  0x3,0x59,0x2c, 0x3,0x59,0x2d, 0x4,0x61,0x4a, 0x7,0x4a,0x41,\n  0x3,0x5b,0x37, 0x4,0x5d,0x68, 0x4,0x35,0x51, 0x4,0x35,0x54,\n  0x5,0x3c,0x4c, 0x4,0x3b,0x3f, 0x4,0x3b,0x41, 0x3,0x3f,0x2e,\n  0x4,0x3b,0x42, 0x6,0x4f,0x29, 0x4,0x3b,0x43, 0x4,0x41,0x21,\n  0x3,0x44,0x66, 0x3,0x44,0x68, 0x5,0x4a,0x29, 0x6,0x62,0x6a,\n  0x3,0x49,0x6f, 0x3,0x4e,0x7b, 0x3,0x4e,0x7c, 0x4,0x4d,0x6e,\n  0x4,0x4d,0x6c, 0x7,0x29,0x36, 0x4,0x4d,0x6d, 0x5,0x51,0x39,\n  0x3,0x4f,0x21, 0x3,0x52,0x74, 0x4,0x53,0x7d, 0x4,0x53,0x79,\n  0x4,0x53,0x7b, 0x4,0x53,0x7a, 0x3,0x52,0x76, 0x7,0x3c,0x33,\n  0x4,0x58,0x7a, 0xf,0x60,0x7a, 0x4,0x53,0x7e, 0x3,0x5d,0x35,\n  0x3,0x5e,0x64, 0x4,0x6b,0x21, 0x5,0x30,0x4b, 0x5,0x43,0x34,\n  0x4,0x47,0x59, 0x4,0x47,0x58, 0x4,0x67,0x48, 0x5,0x30,0x4c,\n  0x4,0x30,0x27, 0x4,0x30,0x28, 0x4,0x35,0x55, 0x4,0x35,0x56,\n  0x3,0x39,0x34, 0x3,0x39,0x36, 0x3,0x3f,0x31, 0x4,0x3b,0x45,\n  0x3,0x3f,0x36, 0x3,0x3f,0x32, 0x5,0x3c,0x52, 0x3,0x3f,0x35,\n  0x4,0x3b,0x48, 0x4,0x3b,0x47, 0x4,0x41,0x26, 0x4,0x41,0x27,\n  0x5,0x43,0x3c, 0x3,0x44,0x6a, 0x4,0x41,0x28, 0x5,0x43,0x38,\n  0x4,0x47,0x5a, 0x6,0x62,0x75, 0x4,0x47,0x5b, 0x3,0x49,0x76,\n  0x5,0x4a,0x34, 0x3,0x49,0x77, 0x5,0x4a,0x32, 0x3,0x4f,0x27,\n  0x4,0x4d,0x73, 0x4,0x4d,0x71, 0x3,0x4f,0x24, 0x4,0x4d,0x74,\n  0x7,0x29,0x3d, 0x4,0x54,0x26, 0x5,0x58,0x5c, 0x5,0x58,0x55,\n  0x3,0x52,0x78, 0x4,0x58,0x7d, 0x4,0x59,0x25, 0x4,0x58,0x7c,\n  0x5,0x5e,0x6d, 0x4,0x5d,0x6d, 0x3,0x59,0x2f, 0x4,0x5d,0x6c,\n  0x4,0x5d,0x6a, 0x4,0x5d,0x6e, 0x3,0x59,0x30, 0x4,0x61,0x4d,\n  0x3,0x5d,0x36, 0x4,0x64,0x55, 0x4,0x64,0x53, 0x4,0x64,0x56,\n  0x4,0x67,0x4a, 0x4,0x69,0x4e, 0x3,0x5f,0x66, 0x4,0x69,0x4f,\n  0x4,0x6b,0x23, 0x4,0x6c,0x28, 0x4,0x6d,0x27, 0x4,0x2b,0x4c,\n  0x3,0x2f,0x2f, 0x4,0x30,0x2a, 0x3,0x33,0x7e, 0x4,0x35,0x5e,\n  0x4,0x35,0x59, 0x5,0x35,0x72, 0x3,0x39,0x3b, 0x4,0x35,0x5b,\n  0x4,0x35,0x5c, 0x4,0x35,0x5d, 0x3,0x39,0x3c, 0x5,0x3c,0x63,\n  0x4,0x3b,0x4c, 0x4,0x3b,0x50, 0x3,0x3f,0x3d, 0x4,0x3b,0x4d,\n  0x4,0x3b,0x49, 0x6,0x4f,0x36, 0x6,0x4f,0x3c, 0x5,0x3c,0x5c,\n  0x4,0x3b,0x4a, 0x4,0x3b,0x4b, 0x4,0x3b,0x4f, 0x3,0x3f,0x3c,\n  0x5,0x3c,0x5f, 0x4,0x3b,0x51, 0x4,0x41,0x29, 0x5,0x43,0x4b,\n  0x3,0x44,0x6c, 0x3,0x44,0x6e, 0xf,0x45,0x58, 0x5,0x4a,0x3e,\n  0x4,0x47,0x5e, 0x4,0x47,0x61, 0x4,0x47,0x5f, 0x4,0x47,0x62,\n  0x4,0x47,0x65, 0x3,0x49,0x78, 0x4,0x47,0x64, 0x3,0x4f,0x28,\n  0x3,0x44,0x6f, 0x4,0x4d,0x77, 0x4,0x4e,0x22, 0x3,0x4f,0x2a,\n  0x7,0x29,0x4e, 0x3,0x4f,0x2e, 0x3,0x4f,0x29, 0x4,0x4d,0x7e,\n  0x4,0x4e,0x21, 0x4,0x4d,0x7d, 0x4,0x4d,0x79, 0x4,0x4d,0x78,\n  0x4,0x4d,0x76, 0x3,0x4f,0x2d, 0x4,0x4e,0x23, 0x4,0x54,0x2e,\n  0x3,0x52,0x7d, 0x3,0x52,0x7a, 0x4,0x54,0x2f, 0x4,0x54,0x2d,\n  0x5,0x58,0x62, 0x4,0x54,0x30, 0x3,0x52,0x79, 0x5,0x5e,0x7b,\n  0x4,0x59,0x2b, 0x4,0x59,0x2c, 0x4,0x59,0x26, 0xf,0x5c,0x78,\n  0x4,0x59,0x2a, 0x4,0x59,0x28, 0x3,0x56,0x53, 0x3,0x59,0x33,\n  0x4,0x5d,0x74, 0x4,0x5d,0x78, 0x4,0x5d,0x72, 0x4,0x5d,0x75,\n  0x7,0x4a,0x57, 0x4,0x61,0x50, 0x3,0x59,0x34, 0x4,0x61,0x51,\n  0x4,0x5d,0x77, 0x4,0x64,0x5b, 0x4,0x64,0x5a, 0x4,0x67,0x50,\n  0x4,0x67,0x4c, 0x5,0x74,0x4b, 0x4,0x6b,0x24, 0x7,0x5c,0x77,\n  0x4,0x6c,0x29, 0x3,0x61,0x4f, 0x3,0x62,0x2e, 0x3,0x3f,0x42,\n  0x5,0x3c,0x67, 0x4,0x3b,0x52, 0x4,0x3b,0x53, 0x3,0x3f,0x41,\n  0x3,0x44,0x71, 0x3,0x44,0x70, 0x3,0x44,0x72, 0x4,0x4e,0x26,\n  0x4,0x54,0x32, 0x4,0x59,0x30, 0x3,0x56,0x56, 0x3,0x5b,0x3e,\n  0x4,0x64,0x5f, 0x3,0x60,0x4c, 0x4,0x2b,0x4d, 0x4,0x2b,0x4e,\n  0xf,0x2d,0x53, 0x3,0x34,0x22, 0x3,0x39,0x43, 0x3,0x39,0x44,\n  0x3,0x39,0x48, 0x4,0x35,0x61, 0x4,0x35,0x62, 0x3,0x39,0x45,\n  0x3,0x39,0x46, 0x3,0x39,0x42, 0x6,0x45,0x45, 0x3,0x3f,0x48,\n  0x3,0x3f,0x43, 0x4,0x3b,0x54, 0x3,0x3f,0x4a, 0x3,0x44,0x75,\n  0x4,0x41,0x2a, 0x3,0x44,0x74, 0x6,0x59,0x24, 0x4,0x41,0x2c,\n  0x4,0x47,0x66, 0x4,0x47,0x69, 0x4,0x47,0x67, 0x3,0x49,0x7e,\n  0x4,0x4e,0x28, 0x4,0x4e,0x27, 0x4,0x4e,0x2a, 0x4,0x4e,0x29,\n  0x3,0x53,0x23, 0x5,0x58,0x72, 0x4,0x54,0x33, 0x4,0x54,0x34,\n  0x5,0x51,0x61, 0x3,0x56,0x58, 0x4,0x59,0x32, 0x4,0x59,0x35,\n  0x4,0x59,0x37, 0x3,0x56,0x57, 0x4,0x59,0x31, 0x4,0x5d,0x7c,\n  0x4,0x5d,0x7b, 0x4,0x5d,0x7a, 0x5,0x65,0x35, 0x4,0x5d,0x7d,\n  0x4,0x5d,0x7e, 0x4,0x61,0x59, 0x4,0x61,0x58, 0x4,0x61,0x57,\n  0x4,0x64,0x60, 0x4,0x64,0x61, 0x4,0x67,0x52, 0xf,0x68,0x53,\n  0x3,0x5f,0x68, 0x3,0x5f,0x67, 0x3,0x60,0x7d, 0x4,0x6d,0x61,\n  0x4,0x6e,0x21, 0x3,0x62,0x3d, 0x4,0x4e,0x2e, 0x3,0x5d,0x39,\n  0x4,0x47,0x6b, 0xf,0x4c,0x67, 0x3,0x4f,0x38, 0x4,0x64,0x63,\n  0x7,0x50,0x56, 0x3,0x27,0x32, 0x4,0x25,0x22, 0xf,0x28,0x72,\n  0x3,0x2a,0x6f, 0x5,0x27,0x69, 0x4,0x2b,0x53, 0x4,0x2b,0x50,\n  0x3,0x34,0x23, 0x4,0x30,0x2d, 0x4,0x30,0x30, 0x3,0x34,0x24,\n  0x4,0x30,0x2e, 0x3,0x39,0x49, 0x4,0x35,0x69, 0x3,0x39,0x4d,\n  0x3,0x3f,0x53, 0x4,0x3b,0x57, 0x3,0x3f,0x4e, 0x6,0x4f,0x48,\n  0x3,0x3f,0x52, 0x4,0x41,0x2f, 0x3,0x4a,0x25, 0x4,0x47,0x6c,\n  0x3,0x4a,0x23, 0x3,0x4f,0x3a, 0x4,0x4e,0x31, 0x4,0x4e,0x35,\n  0x3,0x4f,0x3d, 0x3,0x53,0x2a, 0x3,0x53,0x28, 0x3,0x53,0x29,\n  0x4,0x59,0x38, 0x4,0x59,0x39, 0x7,0x43,0x77, 0x3,0x59,0x39,\n  0x4,0x61,0x5e, 0x4,0x6c,0x2c, 0x3,0x22,0x5f, 0x4,0x23,0x32,\n  0x3,0x27,0x36, 0x3,0x27,0x37, 0x3,0x27,0x38, 0x3,0x2a,0x76,\n  0x4,0x28,0x29, 0x3,0x2f,0x36, 0x4,0x2b,0x56, 0x3,0x45,0x22,\n  0x3,0x2f,0x3d, 0x4,0x2b,0x54, 0x4,0x2b,0x58, 0x3,0x2f,0x39,\n  0x3,0x2f,0x3a, 0x6,0x34,0x6d, 0x4,0x30,0x38, 0x4,0x30,0x34,\n  0x3,0x34,0x28, 0x4,0x30,0x33, 0x4,0x47,0x71, 0x4,0x35,0x6c,\n  0x4,0x35,0x6e, 0x4,0x35,0x73, 0x4,0x35,0x6b, 0x3,0x39,0x50,\n  0x4,0x35,0x70, 0x4,0x3b,0x5e, 0x3,0x3f,0x58, 0x4,0x41,0x34,\n  0x4,0x41,0x36, 0x3,0x45,0x21, 0x4,0x59,0x3c, 0x4,0x41,0x38,\n  0x4,0x47,0x6d, 0x4,0x47,0x6e, 0x3,0x4a,0x29, 0x3,0x4a,0x28,\n  0x5,0x4a,0x60, 0x4,0x47,0x70, 0x3,0x4f,0x3e, 0x4,0x4e,0x3d,\n  0x4,0x4e,0x3c, 0x5,0x58,0x7e, 0x5,0x5f,0x3c, 0x3,0x60,0x4d,\n  0x4,0x6b,0x26, 0x3,0x2f,0x3f, 0x3,0x34,0x2b, 0x3,0x34,0x2c,\n  0x4,0x35,0x78, 0x4,0x35,0x74, 0x3,0x39,0x53, 0x5,0x36,0x36,\n  0x4,0x35,0x75, 0x4,0x3b,0x60, 0x3,0x3f,0x5a, 0x3,0x3f,0x5b,\n  0x3,0x3f,0x5c, 0x4,0x3b,0x64, 0x6,0x59,0x4c, 0x3,0x45,0x26,\n  0x4,0x41,0x3d, 0x4,0x41,0x3c, 0x4,0x41,0x3f, 0x4,0x41,0x3e,\n  0x4,0x47,0x73, 0x4,0x47,0x74, 0x4,0x4e,0x3f, 0x4,0x4e,0x41,\n  0x4,0x4e,0x3e, 0x4,0x4e,0x40, 0x4,0x54,0x3d, 0x4,0x54,0x3c,\n  0x4,0x54,0x3a, 0x3,0x53,0x2e, 0x4,0x54,0x40, 0x4,0x54,0x3b,\n  0x7,0x34,0x54, 0x3,0x53,0x30, 0x4,0x59,0x3d, 0x4,0x59,0x42,\n  0x7,0x3c,0x70, 0x4,0x59,0x41, 0x5,0x65,0x45, 0x4,0x61,0x61,\n  0x4,0x61,0x64, 0x4,0x61,0x63, 0x4,0x61,0x62, 0x4,0x61,0x65,\n  0x4,0x67,0x5a, 0x4,0x67,0x5b, 0x4,0x69,0x54, 0x4,0x69,0x53,\n  0x4,0x6c,0x2e, 0x4,0x6c,0x2d, 0x4,0x6e,0x3d, 0x4,0x35,0x7a,\n  0x6,0x3c,0x63, 0x3,0x39,0x5a, 0x3,0x3f,0x5f, 0x3,0x3f,0x64,\n  0x3,0x3f,0x61, 0x3,0x3f,0x67, 0x3,0x45,0x2c, 0x5,0x43,0x6d,\n  0x3,0x4a,0x2e, 0x4,0x47,0x79, 0x3,0x4a,0x36, 0x4,0x47,0x76,\n  0x4,0x47,0x7b, 0x4,0x47,0x78, 0x3,0x4f,0x4f, 0x4,0x4e,0x43,\n  0x3,0x4f,0x47, 0x3,0x4f,0x46, 0x7,0x2a,0x38, 0x3,0x4f,0x4a,\n  0x7,0x2a,0x3e, 0x3,0x53,0x33, 0x3,0x53,0x34, 0x4,0x54,0x48,\n  0x4,0x54,0x46, 0x7,0x3c,0x7b, 0x3,0x56,0x69, 0x7,0x3c,0x77,\n  0x4,0x59,0x45, 0x4,0x59,0x44, 0xf,0x5d,0x4c, 0x3,0x59,0x3f,\n  0x3,0x59,0x41, 0x4,0x5e,0x2f, 0x4,0x5e,0x2c, 0x7,0x44,0x39,\n  0x4,0x5e,0x27, 0x5,0x65,0x4f, 0x4,0x5e,0x2b, 0x3,0x59,0x48,\n  0x3,0x59,0x47, 0x3,0x5b,0x46, 0x4,0x61,0x66, 0x3,0x5b,0x4b,\n  0x3,0x5b,0x40, 0x3,0x5b,0x52, 0x4,0x61,0x69, 0x5,0x6a,0x33,\n  0x4,0x61,0x68, 0x3,0x5b,0x51, 0x3,0x5b,0x4c, 0x3,0x5b,0x49,\n  0xf,0x64,0x34, 0x3,0x5d,0x3b, 0x4,0x61,0x6c, 0x3,0x5d,0x40,\n  0x4,0x64,0x66, 0x4,0x64,0x6c, 0x5,0x6e,0x35, 0x3,0x5d,0x48,\n  0x4,0x64,0x6d, 0x4,0x67,0x5f, 0x3,0x5e,0x6b, 0x4,0x64,0x69,\n  0x4,0x67,0x61, 0x3,0x5e,0x6c, 0x4,0x67,0x63, 0x7,0x55,0x68,\n  0x3,0x5e,0x69, 0x3,0x5e,0x6e, 0x3,0x5e,0x6f, 0x3,0x5f,0x6f,\n  0x3,0x60,0x51, 0x5,0x71,0x55, 0x7,0x59,0x67, 0x3,0x5f,0x6d,\n  0x7,0x59,0x68, 0x3,0x5f,0x70, 0x5,0x74,0x55, 0x4,0x6b,0x2a,\n  0x5,0x76,0x5f, 0x4,0x6b,0x27, 0x3,0x60,0x4e, 0x3,0x60,0x50,\n  0x3,0x61,0x23, 0x3,0x61,0x21, 0x4,0x6c,0x30, 0x3,0x61,0x24,\n  0x3,0x61,0x6e, 0x6,0x3c,0x65, 0x4,0x3b,0x67, 0xf,0x3f,0x76,\n  0x4,0x41,0x49, 0x4,0x5e,0x32, 0x3,0x39,0x5b, 0x4,0x35,0x7c,\n  0x3,0x3f,0x6a, 0x4,0x3b,0x6b, 0x3,0x3f,0x6e, 0x3,0x3f,0x6b,\n  0x3,0x45,0x3b, 0x4,0x41,0x50, 0x4,0x41,0x4e, 0x4,0x48,0x23,\n  0x3,0x4a,0x3b, 0x3,0x4a,0x3f, 0x3,0x4a,0x3a, 0x5,0x4a,0x6e,\n  0x3,0x4a,0x3c, 0x7,0x2a,0x46, 0x4,0x4e,0x48, 0x3,0x4f,0x54,\n  0x3,0x4f,0x57, 0x4,0x54,0x4f, 0x4,0x54,0x4b, 0x3,0x53,0x3f,\n  0x4,0x54,0x4c, 0x3,0x53,0x41, 0x3,0x53,0x43, 0x3,0x53,0x46,\n  0x3,0x53,0x45, 0x7,0x34,0x73, 0x4,0x59,0x4e, 0x4,0x59,0x4f,\n  0x4,0x59,0x54, 0x3,0x56,0x6e, 0x3,0x56,0x6c, 0x4,0x59,0x4d,\n  0x4,0x59,0x52, 0x4,0x67,0x66, 0x4,0x64,0x71, 0x5,0x71,0x5b,\n  0x4,0x69,0x55, 0x5,0x21,0x7d, 0x3,0x22,0x60, 0x3,0x24,0x3e,\n  0x5,0x24,0x7b, 0x6,0x29,0x35, 0x4,0x28,0x31, 0x4,0x28,0x32,\n  0x3,0x2a,0x7a, 0x5,0x2b,0x64, 0x4,0x2b,0x5a, 0x3,0x2f,0x41,\n  0x4,0x2b,0x59, 0x4,0x30,0x40, 0x4,0x30,0x3d, 0x3,0x34,0x35,\n  0x4,0x30,0x3e, 0x3,0x34,0x37, 0x4,0x30,0x3c, 0x3,0x39,0x63,\n  0x3,0x39,0x5d, 0x4,0x35,0x7d, 0x3,0x39,0x60, 0x3,0x39,0x62,\n  0x3,0x39,0x64, 0x3,0x39,0x5f, 0x3,0x3f,0x6f, 0x4,0x3b,0x6d,\n  0x3,0x3f,0x74, 0x3,0x45,0x3f, 0x3,0x45,0x3e, 0x4,0x41,0x55,\n  0x4,0x41,0x54, 0x3,0x45,0x3d, 0x3,0x45,0x41, 0x3,0x4a,0x41,\n  0x3,0x4a,0x40, 0x3,0x4a,0x43, 0x3,0x4a,0x42, 0x3,0x4f,0x59,\n  0x3,0x4f,0x58, 0x7,0x2a,0x54, 0x3,0x53,0x47, 0x4,0x54,0x53,\n  0x4,0x54,0x51, 0x4,0x59,0x55, 0x3,0x5b,0x54, 0x4,0x64,0x73,\n  0x4,0x67,0x67, 0x3,0x34,0x38, 0x4,0x36,0x24, 0x3,0x3f,0x7a,\n  0x3,0x3f,0x76, 0x3,0x3f,0x79, 0x3,0x3f,0x77, 0x4,0x41,0x56,\n  0x3,0x45,0x44, 0x3,0x45,0x43, 0x3,0x45,0x45, 0x3,0x4a,0x48,\n  0x3,0x4f,0x5d, 0x3,0x4f,0x5c, 0x3,0x53,0x4b, 0x3,0x53,0x4a,\n  0x3,0x52,0x38, 0x4,0x59,0x58, 0x3,0x56,0x72, 0x3,0x59,0x4c,\n  0x3,0x5b,0x55, 0x3,0x5d,0x4a, 0x3,0x5b,0x56, 0x3,0x5d,0x4b,\n  0x4,0x69,0x56, 0x3,0x61,0x51, 0x3,0x62,0x40, 0x3,0x39,0x66,\n  0x3,0x3f,0x7d, 0x6,0x50,0x31, 0x3,0x45,0x48, 0x4,0x48,0x2d,\n  0x4,0x48,0x31, 0x4,0x48,0x2e, 0x3,0x4a,0x4a, 0x4,0x48,0x34,\n  0x3,0x4a,0x4b, 0x4,0x48,0x33, 0x6,0x63,0x7b, 0x3,0x4f,0x5e,\n  0x3,0x4f,0x61, 0x3,0x4f,0x5f, 0x4,0x54,0x59, 0x3,0x53,0x4f,\n  0x3,0x53,0x4e, 0x4,0x59,0x60, 0x3,0x56,0x73, 0x3,0x56,0x77,\n  0x4,0x54,0x58, 0x3,0x56,0x76, 0x4,0x59,0x5d, 0x4,0x59,0x5f,\n  0x4,0x5e,0x35, 0x3,0x59,0x4d, 0x3,0x59,0x4e, 0x4,0x5e,0x36,\n  0x7,0x44,0x58, 0x7,0x44,0x60, 0x4,0x61,0x74, 0x4,0x61,0x73,\n  0x3,0x5b,0x57, 0x3,0x5b,0x58, 0x3,0x5b,0x59, 0x4,0x64,0x75,\n  0x3,0x5d,0x4d, 0x4,0x69,0x58, 0x4,0x69,0x5a, 0x4,0x69,0x5b,\n  0x3,0x60,0x58, 0x3,0x61,0x53, 0x3,0x61,0x27, 0x3,0x61,0x52,\n  0x3,0x62,0x24, 0x3,0x62,0x44, 0x3,0x62,0x46, 0x4,0x69,0x5c,\n  0x4,0x36,0x28, 0x4,0x36,0x2a, 0x4,0x3b,0x74, 0x4,0x4e,0x4c,\n  0x4,0x64,0x7b, 0x4,0x41,0x5a, 0x3,0x45,0x4a, 0x3,0x4a,0x4d,\n  0x4,0x48,0x38, 0x4,0x48,0x37, 0x4,0x54,0x5d, 0x4,0x54,0x5c,\n  0x4,0x59,0x62, 0x4,0x64,0x7c, 0x4,0x67,0x6e, 0x5,0x71,0x63,\n  0x4,0x6c,0x33, 0x4,0x3b,0x79, 0x3,0x40,0x23, 0x4,0x3b,0x76,\n  0x3,0x45,0x4d, 0x4,0x41,0x5d, 0x4,0x41,0x5f, 0x3,0x45,0x4c,\n  0xf,0x46,0x32, 0x6,0x5a,0x28, 0x4,0x48,0x3a, 0x4,0x48,0x40,\n  0x4,0x48,0x3b, 0x3,0x4a,0x4f, 0x3,0x4a,0x50, 0x4,0x48,0x3d,\n  0x4,0x4e,0x4f, 0x4,0x54,0x63, 0x4,0x54,0x61, 0x4,0x54,0x60,\n  0x4,0x54,0x64, 0x4,0x54,0x62, 0x4,0x59,0x63, 0x4,0x54,0x68,\n  0x3,0x53,0x52, 0x3,0x56,0x7c, 0x4,0x59,0x68, 0x4,0x59,0x64,\n  0x7,0x3d,0x56, 0x3,0x56,0x79, 0x3,0x56,0x7d, 0x3,0x56,0x7e,\n  0x4,0x5e,0x3e, 0x5,0x65,0x7e, 0x4,0x5e,0x42, 0x4,0x5e,0x3c,\n  0x5,0x65,0x73, 0x5,0x65,0x7b, 0x4,0x5e,0x3b, 0x4,0x5e,0x41,\n  0x3,0x5b,0x5c, 0x3,0x5b,0x5b, 0x4,0x61,0x77, 0x4,0x61,0x7b,\n  0x3,0x5b,0x5a, 0x4,0x65,0x23, 0x4,0x64,0x7e, 0x5,0x6e,0x49,\n  0x7,0x56,0x27, 0x7,0x56,0x25, 0x4,0x67,0x72, 0x4,0x67,0x70,\n  0x5,0x71,0x69, 0x7,0x56,0x26, 0x3,0x5f,0x74, 0x5,0x74,0x62,\n  0x4,0x6b,0x2c, 0x3,0x60,0x5a, 0x4,0x6c,0x34, 0x4,0x6d,0x2d,\n  0x3,0x61,0x54, 0x4,0x6d,0x65, 0x3,0x61,0x70, 0x4,0x6e,0x22,\n  0x4,0x41,0x61, 0x4,0x48,0x43, 0x4,0x48,0x41, 0x4,0x48,0x42,\n  0x4,0x48,0x44, 0x3,0x53,0x54, 0x4,0x59,0x6b, 0x7,0x44,0x77,\n  0x4,0x5e,0x45, 0x3,0x59,0x52, 0x4,0x61,0x7d, 0x4,0x61,0x7e,\n  0x4,0x67,0x73, 0x4,0x69,0x60, 0x3,0x60,0x5b, 0x3,0x45,0x4e,\n  0x3,0x57,0x21, 0x3,0x5b,0x63, 0x3,0x5b,0x62, 0x3,0x5d,0x52,\n  0x4,0x67,0x75, 0x4,0x6b,0x2d, 0x3,0x40,0x25, 0x3,0x40,0x26,\n  0x3,0x40,0x27, 0x3,0x45,0x51, 0x4,0x54,0x6a, 0x4,0x54,0x69,\n  0x3,0x59,0x53, 0x4,0x62,0x22, 0x4,0x62,0x23, 0x3,0x5f,0x75,\n  0x4,0x3b,0x7b, 0xf,0x40,0x2d, 0x4,0x41,0x65, 0x4,0x41,0x64,\n  0x5,0x44,0x34, 0x5,0x4b,0x3e, 0x4,0x48,0x4d, 0x3,0x4a,0x51,\n  0x4,0x48,0x4e, 0x3,0x4a,0x53, 0x4,0x48,0x4c, 0x4,0x48,0x4b,\n  0x5,0x4b,0x3f, 0x4,0x48,0x47, 0x3,0x4f,0x68, 0x4,0x4e,0x59,\n  0x4,0x4e,0x5c, 0x5,0x52,0x60, 0x4,0x54,0x6d, 0x4,0x54,0x6f,\n  0x3,0x53,0x56, 0x4,0x4e,0x5d, 0x3,0x53,0x60, 0x3,0x53,0x57,\n  0x3,0x53,0x5e, 0x7,0x35,0x51, 0x3,0x57,0x25, 0x4,0x59,0x73,\n  0x7,0x3d,0x69, 0x3,0x57,0x22, 0x4,0x59,0x77, 0x3,0x57,0x23,\n  0x3,0x57,0x24, 0x3,0x57,0x27, 0x3,0x57,0x29, 0x4,0x5e,0x4e,\n  0x3,0x59,0x54, 0x4,0x5e,0x49, 0x4,0x5e,0x47, 0x4,0x5e,0x4b,\n  0x3,0x59,0x57, 0x3,0x59,0x55, 0x4,0x5e,0x4d, 0x4,0x5e,0x4c,\n  0x3,0x59,0x5a, 0x4,0x62,0x27, 0x4,0x62,0x29, 0x4,0x62,0x2d,\n  0x4,0x62,0x26, 0x4,0x62,0x2c, 0x3,0x5b,0x64, 0x4,0x62,0x25,\n  0x4,0x62,0x2f, 0x4,0x62,0x28, 0x4,0x62,0x2b, 0x4,0x65,0x2f,\n  0x4,0x65,0x31, 0x4,0x65,0x30, 0x3,0x5d,0x54, 0x4,0x67,0x77,\n  0x4,0x67,0x79, 0x4,0x67,0x76, 0x4,0x67,0x7c, 0x4,0x67,0x7b,\n  0x7,0x56,0x32, 0x4,0x69,0x63, 0x3,0x5f,0x76, 0x4,0x69,0x62,\n  0x4,0x6c,0x39, 0x5,0x78,0x48, 0x3,0x61,0x55, 0x4,0x36,0x2b,\n  0x4,0x3b,0x7e, 0x3,0x45,0x53, 0x4,0x41,0x6d, 0x4,0x41,0x72,\n  0x4,0x41,0x6e, 0x4,0x48,0x51, 0x4,0x48,0x56, 0x4,0x48,0x59,\n  0x4,0x48,0x50, 0x4,0x48,0x54, 0x3,0x4a,0x57, 0x4,0x4e,0x60,\n  0x4,0x4e,0x61, 0x4,0x54,0x76, 0x4,0x54,0x77, 0x4,0x54,0x73,\n  0x4,0x54,0x74, 0x4,0x54,0x75, 0x4,0x59,0x7d, 0x4,0x5a,0x22,\n  0x4,0x5a,0x21, 0x4,0x59,0x7c, 0x4,0x59,0x7a, 0x4,0x59,0x7e,\n  0x4,0x5e,0x51, 0x7,0x44,0x7e, 0x4,0x5e,0x50, 0x4,0x5e,0x52,\n  0x3,0x59,0x5d, 0x3,0x59,0x5e, 0x3,0x59,0x5f, 0x4,0x62,0x32,\n  0x3,0x5b,0x67, 0x3,0x5b,0x66, 0x4,0x65,0x36, 0x3,0x5d,0x55,\n  0x4,0x67,0x7e, 0x4,0x6b,0x30, 0x4,0x6c,0x3a, 0x3,0x57,0x2b,\n  0x3,0x59,0x60, 0x3,0x34,0x3a, 0x4,0x36,0x2c, 0x3,0x40,0x29,\n  0x3,0x40,0x2a, 0x4,0x3c,0x24, 0x3,0x40,0x28, 0x4,0x3c,0x25,\n  0x3,0x45,0x5d, 0x3,0x40,0x2c, 0x4,0x41,0x77, 0x4,0x41,0x74,\n  0x3,0x4a,0x5c, 0x3,0x45,0x5e, 0x4,0x41,0x75, 0x3,0x45,0x56,\n  0x3,0x45,0x55, 0x3,0x45,0x5a, 0x4,0x41,0x79, 0x4,0x41,0x7a,\n  0x3,0x4a,0x58, 0x3,0x4a,0x59, 0x4,0x48,0x5b, 0x7,0x2b,0x38,\n  0x3,0x4a,0x5a, 0x4,0x48,0x5c, 0x6,0x64,0x40, 0x3,0x4f,0x6a,\n  0x4,0x4e,0x65, 0x4,0x4e,0x64, 0x4,0x4e,0x67, 0x4,0x4e,0x66,\n  0x4,0x54,0x78, 0x4,0x4e,0x69, 0x4,0x54,0x7c, 0x4,0x54,0x7d,\n  0x4,0x54,0x7a, 0x4,0x5a,0x27, 0x4,0x55,0x22, 0x4,0x5a,0x28,\n  0x4,0x5a,0x2a, 0x5,0x60,0x31, 0x3,0x57,0x2d, 0x3,0x59,0x64,\n  0x5,0x60,0x2c, 0x3,0x57,0x2c, 0x4,0x5e,0x58, 0x4,0x5e,0x57,\n  0x4,0x5e,0x5b, 0x4,0x5e,0x59, 0x4,0x5e,0x5a, 0x4,0x65,0x39,\n  0x4,0x62,0x36, 0x3,0x5b,0x68, 0x4,0x65,0x3c, 0x4,0x65,0x3b,\n  0x3,0x5d,0x57, 0x3,0x5d,0x59, 0x4,0x68,0x24, 0x4,0x68,0x23,\n  0x3,0x5e,0x7d, 0x4,0x68,0x22, 0x4,0x69,0x67, 0x4,0x69,0x65,\n  0x3,0x5f,0x77, 0x4,0x69,0x68, 0x4,0x6b,0x31, 0x3,0x61,0x56,\n  0x4,0x6d,0x30, 0x4,0x6d,0x67, 0x4,0x6e,0x25, 0x3,0x4f,0x6c,\n  0x3,0x53,0x67, 0x4,0x5e,0x5f, 0x4,0x62,0x3c, 0x4,0x48,0x5d,\n  0x3,0x57,0x2f, 0x4,0x55,0x26, 0x3,0x57,0x2e, 0x3,0x61,0x71,\n  0x3,0x40,0x2d, 0x5,0x44,0x4a, 0x3,0x45,0x60, 0x4,0x48,0x5e,\n  0x3,0x4a,0x65, 0x4,0x48,0x5f, 0x3,0x4a,0x5f, 0x3,0x4a,0x67,\n  0x3,0x4a,0x68, 0x3,0x4a,0x6b, 0x3,0x4a,0x69, 0x4,0x4e,0x6f,\n  0x3,0x4f,0x71, 0x3,0x4f,0x70, 0x4,0x4e,0x6e, 0x3,0x4f,0x6f,\n  0x4,0x4e,0x6d, 0x4,0x4e,0x70, 0x3,0x53,0x6f, 0x3,0x53,0x6e,\n  0x3,0x53,0x6d, 0x5,0x5a,0x2c, 0x3,0x53,0x69, 0x4,0x55,0x2d,\n  0x5,0x5a,0x2e, 0x7,0x36,0x28, 0x4,0x5a,0x2e, 0x3,0x57,0x32,\n  0x3,0x57,0x35, 0x4,0x5a,0x2d, 0x3,0x57,0x31, 0x4,0x5e,0x67,\n  0x5,0x6a,0x6e, 0x4,0x5e,0x62, 0x3,0x59,0x68, 0x4,0x5e,0x68,\n  0x3,0x59,0x69, 0x4,0x5e,0x63, 0x4,0x5e,0x65, 0x3,0x59,0x6c,\n  0x4,0x62,0x41, 0x4,0x62,0x3f, 0x3,0x5b,0x6a, 0x4,0x62,0x46,\n  0x4,0x62,0x40, 0x4,0x62,0x44, 0x4,0x62,0x45, 0x4,0x65,0x41,\n  0x4,0x65,0x40, 0x3,0x5d,0x5d, 0x3,0x5d,0x5b, 0x4,0x65,0x47,\n  0x5,0x6e,0x66, 0x5,0x6e,0x6d, 0x3,0x5d,0x5c, 0x4,0x68,0x29,\n  0x4,0x68,0x2a, 0x4,0x68,0x2b, 0x4,0x68,0x2d, 0x3,0x5f,0x23,\n  0x5,0x72,0x2d, 0x4,0x68,0x28, 0x7,0x5a,0x3e, 0x5,0x74,0x76,\n  0x4,0x69,0x6b, 0x4,0x69,0x69, 0x3,0x5f,0x7a, 0x4,0x6b,0x33,\n  0x4,0x6b,0x34, 0x4,0x6b,0x32, 0x3,0x61,0x2b, 0x7,0x60,0x2e,\n  0x7,0x60,0x2d, 0x3,0x61,0x57, 0x4,0x6d,0x68, 0x3,0x62,0x27,\n  0x4,0x6e,0x3f, 0x3,0x62,0x37, 0x4,0x6e,0x57, 0x3,0x39,0x69,\n  0x3,0x40,0x2e, 0x4,0x48,0x62, 0x3,0x4a,0x6d, 0x3,0x4f,0x75,\n  0x4,0x4e,0x75, 0x4,0x4e,0x73, 0x4,0x4e,0x76, 0x3,0x4f,0x78,\n  0x3,0x53,0x72, 0x3,0x53,0x73, 0x4,0x55,0x30, 0x4,0x55,0x32,\n  0x4,0x55,0x2f, 0x4,0x55,0x2e, 0x3,0x57,0x39, 0x4,0x5a,0x31,\n  0x4,0x5a,0x35, 0x4,0x5a,0x30, 0x3,0x57,0x38, 0x4,0x5a,0x33,\n  0x5,0x66,0x51, 0x4,0x5e,0x6e, 0x3,0x5b,0x70, 0x4,0x62,0x48,\n  0x4,0x62,0x47, 0x4,0x65,0x49, 0x3,0x5d,0x5f, 0x4,0x68,0x30,\n  0x4,0x69,0x6e, 0x4,0x6b,0x35, 0x4,0x6c,0x3e, 0x4,0x6d,0x33,\n  0x3,0x40,0x30, 0x4,0x42,0x22, 0x4,0x62,0x4a, 0x5,0x74,0x7a,\n  0x7,0x64,0x75, 0x3,0x40,0x31, 0x5,0x3d,0x52, 0x6,0x64,0x5e,\n  0x4,0x48,0x6a, 0x4,0x48,0x69, 0x4,0x48,0x67, 0x3,0x4a,0x74,\n  0x5,0x4b,0x59, 0x4,0x4e,0x7b, 0x3,0x4f,0x7a, 0x4,0x55,0x35,\n  0x4,0x55,0x36, 0x4,0x5a,0x38, 0x3,0x57,0x3d, 0x4,0x5a,0x3b,\n  0x4,0x5e,0x70, 0x4,0x5e,0x73, 0x3,0x59,0x6e, 0x4,0x5e,0x74,\n  0x4,0x5e,0x76, 0x4,0x5e,0x75, 0x4,0x5e,0x77, 0x4,0x62,0x4e,\n  0x3,0x5b,0x72, 0x4,0x62,0x4c, 0x4,0x65,0x4d, 0x4,0x65,0x4f,\n  0x4,0x65,0x4e, 0x7,0x51,0x79, 0x5,0x72,0x3f, 0x3,0x5f,0x26,\n  0x4,0x69,0x72, 0x4,0x6c,0x43, 0x4,0x6c,0x41, 0x3,0x61,0x2d,\n  0x5,0x78,0x52, 0x4,0x6d,0x35, 0x7,0x61,0x6a, 0x4,0x6d,0x69,\n  0x4,0x6e,0x49, 0x7,0x51,0x7d, 0x5,0x72,0x41, 0x3,0x4a,0x77,\n  0x3,0x4a,0x76, 0x3,0x4d,0x3e, 0x3,0x53,0x76, 0x7,0x5a,0x4b,\n  0x3,0x61,0x58, 0x3,0x4a,0x79, 0x4,0x4f,0x24, 0x4,0x4f,0x25,\n  0x4,0x55,0x3f, 0x3,0x53,0x77, 0x4,0x5e,0x7e, 0x3,0x59,0x70,\n  0x4,0x5e,0x7d, 0x4,0x5e,0x7c, 0x3,0x5b,0x73, 0x5,0x66,0x68,\n  0x3,0x5d,0x65, 0x4,0x69,0x77, 0x4,0x69,0x76, 0x7,0x5a,0x4f,\n  0x4,0x6c,0x48, 0x4,0x6c,0x49, 0x4,0x6e,0x58, 0x5,0x3d,0x54,\n  0x4,0x48,0x6d, 0x5,0x4b,0x64, 0x4,0x4f,0x28, 0x4,0x4f,0x34,\n  0x3,0x50,0x21, 0x7,0x2b,0x6a, 0x4,0x4f,0x39, 0x4,0x4f,0x32,\n  0x4,0x4f,0x2b, 0x4,0x4f,0x29, 0x3,0x54,0x27, 0x4,0x55,0x44,\n  0x4,0x55,0x42, 0x4,0x55,0x48, 0x3,0x53,0x7e, 0x3,0x54,0x28,\n  0x4,0x55,0x41, 0x3,0x54,0x26, 0x3,0x54,0x24, 0x3,0x54,0x22,\n  0x3,0x53,0x7b, 0x4,0x5a,0x40, 0x3,0x57,0x41, 0x4,0x5f,0x21,\n  0x7,0x3e,0x49, 0x4,0x5a,0x42, 0x3,0x59,0x72, 0x4,0x5f,0x23,\n  0x5,0x66,0x6e, 0x4,0x5f,0x27, 0x4,0x5f,0x25, 0x3,0x59,0x78,\n  0x4,0x5f,0x24, 0x3,0x59,0x77, 0x4,0x5f,0x29, 0x4,0x5f,0x2b,\n  0x4,0x62,0x5d, 0x5,0x6b,0x35, 0x4,0x62,0x67, 0x4,0x62,0x57,\n  0x4,0x62,0x61, 0x4,0x62,0x59, 0x4,0x62,0x54, 0x3,0x5b,0x76,\n  0x5,0x6b,0x31, 0x4,0x62,0x62, 0x5,0x6b,0x2b, 0x4,0x62,0x60,\n  0x4,0x62,0x64, 0x3,0x5b,0x78, 0x3,0x5b,0x7b, 0x3,0x5b,0x7c,\n  0xf,0x64,0x72, 0x3,0x5d,0x77, 0x4,0x65,0x55, 0x7,0x52,0x31,\n  0x4,0x65,0x5b, 0x3,0x5d,0x6c, 0x7,0x52,0x33, 0x4,0x65,0x53,\n  0x3,0x5d,0x6b, 0x3,0x5d,0x6d, 0x4,0x68,0x3d, 0x3,0x5f,0x2d,\n  0x3,0x5f,0x30, 0x4,0x68,0x3c, 0x3,0x5f,0x2e, 0x3,0x5f,0x2b,\n  0x4,0x68,0x3a, 0x3,0x5f,0x29, 0x3,0x5f,0x2f, 0x4,0x69,0x7d,\n  0x3,0x5f,0x7d, 0x4,0x6a,0x21, 0x4,0x69,0x7c, 0x3,0x5f,0x7c,\n  0x4,0x69,0x7e, 0x3,0x60,0x24, 0x4,0x69,0x7b, 0x3,0x60,0x21,\n  0xf,0x6a,0x3f, 0x4,0x6b,0x3c, 0x4,0x6b,0x3d, 0x4,0x6b,0x40,\n  0x4,0x6b,0x3b, 0x7,0x5e,0x23, 0x3,0x60,0x67, 0x3,0x60,0x64,\n  0x5,0x78,0x5b, 0x5,0x78,0x56, 0x3,0x61,0x30, 0x4,0x6c,0x4d,\n  0x4,0x6c,0x4e, 0x5,0x77,0x24, 0x3,0x61,0x5a, 0x4,0x6d,0x39,\n  0x3,0x61,0x31, 0x4,0x6e,0x2c, 0x4,0x6e,0x2d, 0x4,0x6e,0x5b,\n  0x3,0x45,0x65, 0x3,0x4a,0x7a, 0x3,0x4a,0x7b, 0x3,0x4a,0x7c,\n  0x3,0x4a,0x7e, 0x5,0x4b,0x6b, 0x3,0x4a,0x7d, 0x5,0x53,0x38,\n  0x4,0x4f,0x3f, 0x3,0x50,0x23, 0x4,0x4f,0x44, 0x4,0x4f,0x3b,\n  0x7,0x2b,0x6d, 0x4,0x4f,0x40, 0x3,0x50,0x28, 0x3,0x50,0x29,\n  0x3,0x50,0x26, 0x3,0x4c,0x63, 0x4,0x4f,0x41, 0x4,0x55,0x4e,\n  0x3,0x54,0x2f, 0x4,0x55,0x4d, 0x3,0x54,0x30, 0x4,0x55,0x4f,\n  0x3,0x54,0x2b, 0x4,0x55,0x54, 0x7,0x36,0x4a, 0x4,0x55,0x4a,\n  0x3,0x54,0x2e, 0x4,0x55,0x57, 0x3,0x57,0x4b, 0x4,0x55,0x4b,\n  0x3,0x54,0x31, 0x4,0x55,0x55, 0x3,0x54,0x34, 0x4,0x55,0x50,\n  0x7,0x36,0x51, 0x3,0x56,0x33, 0x3,0x57,0x4c, 0x4,0x5a,0x51,\n  0x3,0x57,0x47, 0x3,0x57,0x49, 0x3,0x57,0x46, 0x4,0x5a,0x52,\n  0x3,0x57,0x4e, 0x4,0x5a,0x50, 0x4,0x5f,0x2f, 0x4,0x5f,0x35,\n  0x4,0x5f,0x2c, 0x3,0x5a,0x21, 0x3,0x59,0x7c, 0x4,0x5f,0x32,\n  0x4,0x5f,0x31, 0x5,0x67,0x26, 0x4,0x5f,0x38, 0x4,0x62,0x6a,\n  0x3,0x5c,0x21, 0x4,0x62,0x6c, 0x4,0x65,0x61, 0x3,0x5c,0x28,\n  0x4,0x62,0x6f, 0x5,0x6b,0x3c, 0x4,0x5f,0x36, 0xf,0x64,0x75,\n  0x3,0x5d,0x78, 0x4,0x65,0x6c, 0x3,0x5d,0x7d, 0x3,0x5d,0x7b,\n  0x4,0x65,0x6a, 0x4,0x65,0x64, 0x3,0x5d,0x7c, 0x7,0x52,0x42,\n  0x4,0x65,0x62, 0x4,0x65,0x6b, 0x3,0x5d,0x7e, 0x3,0x5f,0x34,\n  0x4,0x68,0x40, 0x4,0x68,0x42, 0x4,0x68,0x41, 0x5,0x72,0x63,\n  0x3,0x5f,0x33, 0x4,0x6a,0x27, 0x4,0x6a,0x2c, 0x3,0x60,0x28,\n  0x4,0x6a,0x26, 0x3,0x60,0x26, 0x3,0x60,0x27, 0x4,0x6b,0x45,\n  0x3,0x60,0x6b, 0x5,0x77,0x2c, 0x4,0x6b,0x44, 0x5,0x77,0x34,\n  0x4,0x6b,0x47, 0x3,0x60,0x6a, 0x3,0x60,0x69, 0x4,0x6b,0x48,\n  0x4,0x6c,0x50, 0x4,0x6c,0x52, 0x4,0x6c,0x51, 0x3,0x61,0x36,\n  0x4,0x6c,0x54, 0x4,0x6d,0x3d, 0x3,0x61,0x5c, 0x7,0x63,0x37,\n  0x3,0x62,0x2a, 0x3,0x62,0x3e, 0x4,0x6e,0x59, 0x3,0x62,0x43,\n  0x4,0x4f,0x47, 0x4,0x5f,0x39, 0x7,0x57,0x29, 0x4,0x6b,0x4d,\n  0x5,0x79,0x73, 0x5,0x4b,0x6d, 0x4,0x4f,0x49, 0x4,0x4f,0x4a,\n  0x3,0x50,0x2d, 0x3,0x54,0x38, 0x4,0x55,0x58, 0x7,0x36,0x5c,\n  0x3,0x5a,0x23, 0x4,0x62,0x72, 0x3,0x5f,0x39, 0x3,0x61,0x37,\n  0x3,0x61,0x38, 0x4,0x48,0x73, 0x4,0x48,0x74, 0x3,0x4b,0x21,\n  0x4,0x4f,0x4d, 0x4,0x4f,0x4b, 0x4,0x55,0x59, 0x4,0x55,0x5c,\n  0x4,0x55,0x5a, 0x4,0x55,0x5d, 0x3,0x57,0x4f, 0x4,0x5f,0x3c,\n  0x4,0x5f,0x3b, 0x3,0x5a,0x27, 0x4,0x62,0x79, 0x4,0x62,0x76,\n  0x4,0x62,0x7d, 0x4,0x62,0x77, 0x4,0x62,0x7c, 0x4,0x68,0x49,\n  0x4,0x68,0x48, 0x4,0x68,0x4a, 0x5,0x75,0x4d, 0x5,0x75,0x48,\n  0x4,0x6b,0x4e, 0x3,0x61,0x39, 0x7,0x5a,0x7d, 0x4,0x6d,0x41,\n  0x7,0x2c,0x31, 0x4,0x65,0x71, 0x4,0x65,0x72, 0x7,0x36,0x65,\n  0x4,0x5f,0x3d, 0x4,0x63,0x21, 0x4,0x65,0x76, 0x4,0x68,0x4b,\n  0x4,0x6b,0x52, 0x4,0x6c,0x5a, 0x7,0x2c,0x33, 0x4,0x55,0x5e,\n  0x7,0x36,0x67, 0x5,0x6f,0x52, 0x4,0x65,0x79, 0x5,0x6f,0x54,\n  0x4,0x68,0x4c, 0x4,0x68,0x4e, 0x4,0x68,0x4d, 0x4,0x6a,0x31,\n  0x4,0x6b,0x55, 0x4,0x6d,0x42, 0x4,0x42,0x2c, 0x3,0x4b,0x23,\n  0x4,0x4f,0x52, 0x4,0x4f,0x53, 0x4,0x55,0x5f, 0x4,0x5a,0x5f,\n  0x5,0x61,0x23, 0x5,0x67,0x40, 0x5,0x67,0x3d, 0x4,0x5f,0x3f,\n  0x5,0x67,0x41, 0x4,0x63,0x23, 0x3,0x5c,0x2b, 0x4,0x65,0x7c,\n  0x4,0x66,0x21, 0x4,0x65,0x7d, 0x5,0x6f,0x58, 0x4,0x68,0x52,\n  0x3,0x5f,0x3b, 0x4,0x6b,0x56, 0x4,0x6c,0x5b, 0x4,0x6d,0x44,\n  0x3,0x61,0x5e, 0x4,0x6d,0x43, 0x4,0x6d,0x6f, 0x4,0x5f,0x40,\n  0x3,0x5c,0x2c, 0x4,0x6a,0x37, 0x3,0x61,0x3a, 0x4,0x55,0x61,\n  0x4,0x6c,0x61, 0x4,0x6c,0x62, 0x4,0x5f,0x43, 0x4,0x5f,0x42,\n  0x4,0x5f,0x44, 0x4,0x63,0x26, 0x4,0x68,0x59, 0x4,0x55,0x62,\n  0x4,0x5a,0x63, 0x4,0x5f,0x45, 0x4,0x63,0x27, 0x4,0x68,0x5a,\n  0x3,0x60,0x2a, 0x4,0x6b,0x58, 0x4,0x6b,0x5b, 0x3,0x5a,0x2c,\n  0x4,0x5f,0x46, 0x3,0x5e,0x23, 0x7,0x52,0x67, 0x5,0x6f,0x61,\n  0x4,0x68,0x5c, 0x4,0x6e,0x31, 0x5,0x7b,0x7a, 0x4,0x5a,0x66,\n  0x5,0x61,0x2d, 0x4,0x5f,0x48, 0x4,0x63,0x29, 0x4,0x63,0x2b,\n  0x4,0x66,0x27, 0x4,0x66,0x25, 0x4,0x66,0x26, 0x3,0x5f,0x3d,\n  0x4,0x68,0x61, 0x4,0x6a,0x3d, 0x4,0x6a,0x3c, 0x3,0x60,0x6e,\n  0x5,0x77,0x4d, 0x4,0x6c,0x69, 0x4,0x6c,0x66, 0x4,0x6c,0x6a,\n  0x4,0x6d,0x4c, 0x4,0x6d,0x4b, 0x4,0x6d,0x70, 0x3,0x61,0x76,\n  0x3,0x62,0x2b, 0x3,0x62,0x32, 0x4,0x6e,0x4b, 0x4,0x6e,0x4c,\n  0x4,0x6e,0x5a, 0x5,0x75,0x61, 0x5,0x6b,0x69, 0x5,0x6c,0x44,\n  0x4,0x68,0x62, 0x4,0x68,0x63, 0x4,0x6d,0x51, 0x3,0x62,0x2c,\n  0x1,0x44,0x21, 0x1,0x44,0x23, 0x4,0x21,0x26, 0x1,0x44,0x24,\n  0x3,0x21,0x26, 0x3,0x21,0x25, 0x2,0x21,0x26, 0x1,0x44,0x37,\n  0x1,0x44,0x35, 0x1,0x44,0x38, 0x1,0x44,0x36, 0x2,0x21,0x27,\n  0x1,0x44,0x62, 0x2,0x21,0x2f, 0x2,0x21,0x2d, 0x1,0x44,0x61,\n  0x1,0x44,0x60, 0x4,0x21,0x39, 0x1,0x45,0x62, 0x1,0x45,0x61,\n  0x1,0x45,0x60, 0x4,0x21,0x55, 0x1,0x45,0x63, 0x1,0x45,0x5f,\n  0x1,0x47,0x22, 0x1,0x47,0x23, 0x3,0x22,0x62, 0x3,0x22,0x61,\n  0x3,0x22,0x63, 0x4,0x23,0x35, 0x3,0x24,0x3f, 0x1,0x4b,0x64,\n  0x3,0x21,0x21, 0x4,0x21,0x27, 0x3,0x21,0x2c, 0x1,0x44,0x39,\n  0x1,0x44,0x63, 0x2,0x21,0x30, 0x4,0x21,0x3a, 0x1,0x44,0x64,\n  0x2,0x21,0x43, 0x1,0x48,0x6b, 0x2,0x25,0x31, 0x4,0x2b,0x5e,\n  0x3,0x21,0x22, 0x1,0x44,0x3a, 0x1,0x44,0x65, 0x1,0x45,0x64,\n  0x2,0x21,0x44, 0x3,0x27,0x40, 0x3,0x21,0x23, 0x4,0x21,0x22,\n  0x4,0x21,0x23, 0x2,0x21,0x21, 0x1,0x44,0x25, 0x1,0x44,0x3c,\n  0x3,0x21,0x30, 0x2,0x21,0x28, 0x1,0x44,0x3d, 0x3,0x21,0x2e,\n  0x1,0x44,0x66, 0x1,0x45,0x65, 0x1,0x45,0x67, 0x1,0x45,0x66,\n  0x4,0x22,0x27, 0x1,0x47,0x24, 0x1,0x47,0x25, 0x3,0x23,0x45,\n  0x1,0x4b,0x65, 0x3,0x2b,0x22, 0x1,0x53,0x7d, 0x1,0x44,0x22,\n  0x4,0x21,0x24, 0x2,0x21,0x22, 0x1,0x44,0x26, 0x1,0x44,0x3f,\n  0x1,0x44,0x3e, 0x3,0x21,0x46, 0x3,0x21,0x45, 0x3,0x22,0x64,\n  0x1,0x47,0x26, 0x4,0x22,0x28, 0x3,0x24,0x40, 0x1,0x4b,0x66,\n  0x4,0x25,0x31, 0x4,0x25,0x30, 0x3,0x2b,0x23, 0x1,0x58,0x71,\n  0x2,0x33,0x4e, 0x3,0x39,0x6c, 0x3,0x39,0x6e, 0x1,0x63,0x2a,\n  0x2,0x41,0x56, 0x2,0x41,0x57, 0x3,0x21,0x24, 0x1,0x44,0x27,\n  0x3,0x21,0x2d, 0x1,0x44,0x68, 0x3,0x22,0x65, 0x1,0x4b,0x67,\n  0x1,0x44,0x28, 0x2,0x21,0x29, 0x1,0x44,0x40, 0x3,0x21,0x31,\n  0x1,0x44,0x69, 0x1,0x44,0x6b, 0x2,0x21,0x31, 0x1,0x44,0x6c,\n  0x1,0x44,0x6a, 0x4,0x21,0x3b, 0x3,0x21,0x6c, 0x3,0x22,0x66,\n  0x1,0x47,0x27, 0x1,0x4b,0x68, 0x3,0x24,0x42, 0x3,0x27,0x42,\n  0x1,0x4b,0x69, 0x1,0x4f,0x67, 0x1,0x27,0x28, 0x1,0x44,0x41,\n  0x1,0x44,0x6d, 0x3,0x21,0x47, 0x1,0x47,0x28, 0x1,0x47,0x2a,\n  0x1,0x47,0x29, 0x1,0x48,0x6c, 0x1,0x4b,0x6a, 0x1,0x4b,0x6b,\n  0x1,0x4f,0x68, 0x1,0x4f,0x69, 0x3,0x2b,0x26, 0x3,0x2b,0x25,\n  0x3,0x2b,0x27, 0x3,0x2b,0x24, 0x1,0x53,0x7e, 0x4,0x36,0x2e,\n  0x2,0x41,0x58, 0x3,0x40,0x33, 0x2,0x6d,0x44, 0x1,0x44,0x29,\n  0x3,0x21,0x32, 0x3,0x21,0x33, 0x1,0x44,0x6f, 0x1,0x44,0x6e,\n  0x2,0x21,0x32, 0x1,0x44,0x70, 0x1,0x44,0x76, 0x3,0x21,0x49,\n  0x1,0x44,0x71, 0x1,0x44,0x72, 0x2,0x21,0x34, 0x2,0x21,0x33,\n  0x1,0x44,0x74, 0x1,0x44,0x75, 0x3,0x21,0x4c, 0x1,0x44,0x73,\n  0x3,0x21,0x4b, 0x3,0x21,0x4a, 0x4,0x21,0x3c, 0x1,0x45,0x6a,\n  0x1,0x45,0x6b, 0x1,0x45,0x6c, 0x1,0x45,0x6d, 0x1,0x45,0x69,\n  0x1,0x45,0x70, 0x2,0x21,0x4a, 0x4,0x21,0x5b, 0x2,0x21,0x46,\n  0x2,0x21,0x49, 0x1,0x45,0x71, 0x1,0x46,0x23, 0x3,0x21,0x6d,\n  0x2,0x21,0x48, 0x4,0x21,0x5a, 0x1,0x45,0x6e, 0x1,0x45,0x6f,\n  0x1,0x45,0x68, 0x3,0x21,0x72, 0x3,0x21,0x70, 0x2,0x21,0x45,\n  0x2,0x21,0x47, 0x3,0x22,0x6f, 0x3,0x22,0x68, 0x1,0x47,0x37,\n  0x2,0x21,0x6f, 0x1,0x47,0x34, 0x1,0x47,0x38, 0x2,0x21,0x79,\n  0x2,0x21,0x6d, 0x1,0x47,0x35, 0x2,0x21,0x71, 0x3,0x22,0x6b,\n  0x3,0x22,0x67, 0x3,0x22,0x76, 0x1,0x47,0x36, 0x3,0x22,0x6e,\n  0x1,0x47,0x39, 0x4,0x22,0x2d, 0x1,0x47,0x2b, 0x2,0x21,0x70,\n  0x1,0x47,0x3a, 0x2,0x21,0x74, 0x3,0x22,0x6d, 0x2,0x21,0x78,\n  0x2,0x21,0x75, 0x3,0x22,0x6c, 0x3,0x22,0x74, 0x2,0x21,0x72,\n  0x1,0x47,0x2c, 0x1,0x47,0x2e, 0x1,0x47,0x3b, 0x4,0x22,0x2a,\n  0x1,0x47,0x30, 0x2,0x21,0x6a, 0x1,0x47,0x33, 0x1,0x47,0x31,\n  0x1,0x47,0x32, 0x2,0x21,0x7a, 0x2,0x21,0x77, 0x2,0x21,0x6e,\n  0x1,0x47,0x2f, 0x3,0x22,0x70, 0x3,0x22,0x77, 0x2,0x21,0x6b,\n  0x1,0x47,0x2d, 0x3,0x22,0x75, 0x4,0x22,0x2e, 0x3,0x22,0x73,\n  0x2,0x21,0x73, 0x2,0x21,0x76, 0x3,0x22,0x72, 0xf,0x21,0x71,\n  0x2,0x21,0x6c, 0x2,0x23,0x28, 0x4,0x23,0x39, 0x1,0x49,0x24,\n  0x1,0x48,0x75, 0x3,0x24,0x50, 0x3,0x24,0x48, 0x2,0x23,0x29,\n  0x1,0x48,0x72, 0x3,0x24,0x4f, 0x1,0x49,0x26, 0x3,0x24,0x46,\n  0x1,0x48,0x7a, 0x3,0x24,0x45, 0x1,0x48,0x79, 0x2,0x22,0x7b,\n  0x1,0x48,0x7d, 0x1,0x48,0x78, 0x2,0x23,0x22, 0x2,0x23,0x2a,\n  0x3,0x24,0x4e, 0x2,0x23,0x26, 0x3,0x24,0x49, 0x1,0x48,0x7b,\n  0x3,0x24,0x4b, 0x3,0x24,0x43, 0x1,0x48,0x7e, 0x1,0x48,0x6f,\n  0x1,0x49,0x29, 0x2,0x22,0x7d, 0x3,0x24,0x44, 0x3,0x24,0x4c,\n  0x2,0x25,0x3d, 0x1,0x48,0x6d, 0x1,0x49,0x25, 0x1,0x48,0x6e,\n  0x1,0x48,0x76, 0x1,0x48,0x77, 0x2,0x23,0x24, 0x2,0x22,0x7e,\n  0x1,0x48,0x7c, 0x1,0x48,0x74, 0x2,0x22,0x7a, 0x1,0x48,0x70,\n  0x2,0x23,0x27, 0x1,0x49,0x27, 0x1,0x49,0x2a, 0x1,0x48,0x73,\n  0x1,0x49,0x22, 0x1,0x49,0x28, 0x1,0x48,0x71, 0x2,0x23,0x25,\n  0x1,0x49,0x23, 0x2,0x23,0x2b, 0x2,0x22,0x7c, 0x1,0x49,0x21,\n  0x2,0x23,0x21, 0x3,0x64,0x48, 0x2,0x23,0x23, 0x3,0x64,0x49,\n  0x1,0x4b,0x79, 0x2,0x25,0x3f, 0x2,0x25,0x4b, 0x1,0x4b,0x71,\n  0x3,0x27,0x47, 0x2,0x25,0x4c, 0x1,0x4b,0x6c, 0x1,0x4b,0x76,\n  0x4,0x25,0x3e, 0x3,0x27,0x4f, 0x1,0x4b,0x6f, 0x2,0x25,0x39,\n  0x1,0x4b,0x77, 0x2,0x25,0x38, 0x2,0x25,0x3c, 0x2,0x25,0x43,\n  0x2,0x25,0x41, 0x1,0x4c,0x21, 0x1,0x4b,0x7a, 0x2,0x25,0x33,\n  0x2,0x25,0x35, 0x1,0x4b,0x7c, 0x1,0x4b,0x70, 0x2,0x25,0x36,\n  0x2,0x25,0x42, 0x2,0x25,0x49, 0x1,0x4b,0x75, 0x2,0x25,0x3b,\n  0x2,0x25,0x34, 0x1,0x4b,0x74, 0x2,0x25,0x37, 0x1,0x4b,0x78,\n  0x2,0x25,0x3a, 0x3,0x27,0x44, 0x1,0x4b,0x73, 0x3,0x27,0x51,\n  0x1,0x4b,0x6e, 0x3,0x27,0x48, 0x1,0x4b,0x7d, 0x2,0x25,0x44,\n  0x1,0x4b,0x7e, 0x2,0x25,0x48, 0x3,0x27,0x43, 0x2,0x25,0x46,\n  0x2,0x25,0x4a, 0x1,0x4b,0x7b, 0x2,0x25,0x3e, 0x2,0x25,0x32,\n  0x4,0x25,0x36, 0x2,0x25,0x40, 0x1,0x4b,0x72, 0x2,0x25,0x45,\n  0x1,0x4b,0x6d, 0x2,0x25,0x47, 0x3,0x27,0x4c, 0x3,0x27,0x49,\n  0x3,0x27,0x4b, 0x3,0x27,0x4a, 0x3,0x27,0x4d, 0xf,0x25,0x44,\n  0x1,0x4f,0x78, 0x1,0x4f,0x6c, 0x3,0x2b,0x2d, 0x3,0x2b,0x2e,\n  0x2,0x29,0x22, 0x2,0x29,0x2a, 0x3,0x2b,0x36, 0x1,0x4f,0x6b,\n  0x1,0x4f,0x73, 0x1,0x50,0x21, 0x3,0x2b,0x2c, 0x2,0x29,0x30,\n  0x2,0x29,0x2e, 0x2,0x29,0x29, 0x4,0x28,0x38, 0x4,0x28,0x3e,\n  0x3,0x2b,0x2b, 0x1,0x4f,0x6d, 0x2,0x29,0x2f, 0x2,0x29,0x25,\n  0x1,0x4f,0x7b, 0x1,0x4f,0x72, 0x1,0x4f,0x7a, 0x2,0x28,0x7e,\n  0x3,0x2b,0x32, 0x2,0x29,0x2c, 0x3,0x2b,0x2f, 0x2,0x29,0x23,\n  0x1,0x4f,0x76, 0x2,0x29,0x24, 0x3,0x2b,0x33, 0x2,0x28,0x7d,\n  0x1,0x4f,0x7d, 0x1,0x4f,0x70, 0x1,0x4f,0x79, 0x1,0x4f,0x6f,\n  0x3,0x2b,0x28, 0x2,0x29,0x21, 0x2,0x29,0x26, 0x3,0x2b,0x29,\n  0x2,0x29,0x2d, 0x1,0x4f,0x77, 0x1,0x4f,0x74, 0x2,0x29,0x28,\n  0x1,0x4f,0x7c, 0x2,0x29,0x2b, 0x2,0x29,0x27, 0x1,0x4f,0x71,\n  0x1,0x4f,0x7e, 0x1,0x4f,0x75, 0x1,0x4f,0x6e, 0x1,0x4f,0x6a,\n  0x4,0x28,0x3f, 0x3,0x2b,0x35, 0xf,0x29,0x2d, 0x3,0x2b,0x34,\n  0x3,0x64,0x4a, 0x4,0x28,0x3d, 0x2,0x29,0x31, 0x1,0x54,0x3a,\n  0x1,0x54,0x24, 0x3,0x2f,0x48, 0x1,0x54,0x34, 0x3,0x2f,0x4d,\n  0x1,0x54,0x39, 0x2,0x2d,0x71, 0x2,0x2d,0x70, 0x2,0x2d,0x75,\n  0x2,0x2d,0x76, 0x1,0x54,0x27, 0x3,0x2f,0x44, 0x1,0x54,0x30,\n  0x3,0x2f,0x58, 0x3,0x2f,0x4c, 0x3,0x2f,0x56, 0x1,0x54,0x3d,\n  0x3,0x2f,0x46, 0x1,0x54,0x31, 0x4,0x2b,0x62, 0x3,0x2f,0x4b,\n  0x3,0x2f,0x49, 0x3,0x2f,0x47, 0x2,0x2d,0x6a, 0x1,0x54,0x2a,\n  0x2,0x2d,0x6b, 0x3,0x2f,0x4f, 0x1,0x54,0x3f, 0x4,0x2b,0x64,\n  0x1,0x54,0x36, 0x1,0x54,0x21, 0x1,0x54,0x22, 0x2,0x2d,0x7e,\n  0x1,0x59,0x24, 0x3,0x2f,0x53, 0x1,0x54,0x2f, 0x1,0x54,0x2e,\n  0x2,0x2d,0x6c, 0x1,0x54,0x32, 0x2,0x33,0x5e, 0x1,0x54,0x29,\n  0x2,0x2d,0x77, 0x1,0x54,0x38, 0x1,0x54,0x37, 0x1,0x54,0x2d,\n  0x2,0x2d,0x6f, 0x2,0x2d,0x78, 0x3,0x2f,0x45, 0x2,0x2d,0x69,\n  0x1,0x54,0x2c, 0x2,0x2d,0x79, 0x1,0x54,0x35, 0x2,0x2d,0x6d,\n  0x1,0x54,0x23, 0x3,0x2f,0x4e, 0x1,0x54,0x26, 0x1,0x54,0x25,\n  0x2,0x2d,0x7a, 0x1,0x54,0x33, 0x1,0x54,0x28, 0x1,0x54,0x3c,\n  0x1,0x54,0x3e, 0x2,0x2d,0x74, 0x1,0x54,0x3b, 0x3,0x2f,0x51,\n  0x2,0x2d,0x7c, 0x2,0x2d,0x6e, 0x2,0x2d,0x7d, 0x3,0x2f,0x43,\n  0x2,0x2d,0x72, 0x4,0x2b,0x61, 0x2,0x2d,0x7b, 0x3,0x2f,0x50,\n  0x2,0x2d,0x73, 0x3,0x2f,0x54, 0x3,0x2f,0x55, 0x1,0x54,0x2b,\n  0x3,0x64,0x4b, 0x2,0x33,0x66, 0x2,0x33,0x5a, 0x3,0x34,0x3c,\n  0x1,0x58,0x76, 0x3,0x34,0x3f, 0x2,0x33,0x5f, 0x2,0x33,0x65,\n  0x1,0x58,0x75, 0x2,0x33,0x58, 0x1,0x58,0x79, 0x2,0x33,0x5c,\n  0x2,0x33,0x55, 0x1,0x58,0x77, 0x2,0x33,0x59, 0x1,0x58,0x7c,\n  0x1,0x59,0x23, 0x3,0x34,0x44, 0x2,0x33,0x6a, 0x3,0x34,0x41,\n  0x2,0x33,0x54, 0x3,0x34,0x42, 0x1,0x58,0x7d, 0x3,0x2f,0x57,\n  0x2,0x33,0x69, 0x3,0x34,0x47, 0x3,0x34,0x3d, 0x1,0x58,0x78,\n  0x2,0x33,0x5b, 0x1,0x58,0x74, 0x2,0x33,0x56, 0x2,0x33,0x52,\n  0x2,0x33,0x60, 0x2,0x33,0x53, 0x2,0x33,0x51, 0x2,0x33,0x5d,\n  0x2,0x33,0x63, 0x2,0x33,0x64, 0x1,0x58,0x7a, 0x3,0x34,0x40,\n  0x4,0x30,0x47, 0x2,0x3a,0x3f, 0x2,0x33,0x61, 0x2,0x33,0x50,\n  0x2,0x33,0x62, 0x3,0x34,0x4b, 0x1,0x59,0x26, 0x2,0x33,0x67,\n  0x1,0x59,0x25, 0x2,0x33,0x4f, 0x3,0x34,0x43, 0x2,0x33,0x57,\n  0x2,0x33,0x68, 0x1,0x59,0x21, 0x1,0x58,0x7e, 0x1,0x58,0x7b,\n  0x1,0x59,0x22, 0x3,0x34,0x4c, 0x3,0x34,0x4a, 0x1,0x58,0x72,\n  0x3,0x34,0x45, 0x3,0x34,0x46, 0x1,0x58,0x73, 0x1,0x5e,0x2e,\n  0x3,0x39,0x75, 0x2,0x3a,0x42, 0x2,0x3a,0x3b, 0x4,0x36,0x34,\n  0x1,0x5e,0x2b, 0x4,0x36,0x33, 0x2,0x3a,0x43, 0x3,0x39,0x71,\n  0x3,0x39,0x72, 0x4,0x36,0x36, 0x2,0x3a,0x39, 0x2,0x3a,0x3c,\n  0x1,0x5e,0x2a, 0x2,0x3a,0x3d, 0x3,0x39,0x6f, 0x4,0x36,0x31,\n  0x1,0x5e,0x2d, 0x2,0x3a,0x41, 0x4,0x36,0x3c, 0x2,0x3a,0x37,\n  0x2,0x3a,0x36, 0x1,0x5e,0x2f, 0x3,0x39,0x70, 0x1,0x5e,0x30,\n  0x1,0x5e,0x2c, 0x1,0x5e,0x31, 0x2,0x3a,0x35, 0x2,0x3a,0x40,\n  0x2,0x3a,0x3e, 0x2,0x3a,0x38, 0x4,0x36,0x39, 0x4,0x36,0x30,\n  0x4,0x36,0x3a, 0x1,0x5e,0x29, 0x2,0x3a,0x3a, 0x3,0x64,0x4d,\n  0x3,0x40,0x39, 0x3,0x40,0x3c, 0x1,0x63,0x31, 0x1,0x63,0x2b,\n  0x2,0x41,0x5c, 0x1,0x63,0x34, 0x2,0x41,0x62, 0x2,0x41,0x65,\n  0x1,0x63,0x2d, 0x1,0x63,0x2e, 0x2,0x41,0x5f, 0x1,0x63,0x2c,\n  0x2,0x41,0x68, 0x1,0x63,0x32, 0x2,0x41,0x69, 0x3,0x40,0x3a,\n  0x2,0x41,0x64, 0x1,0x63,0x33, 0x3,0x40,0x37, 0x2,0x41,0x59,\n  0x1,0x63,0x30, 0x2,0x41,0x5a, 0x4,0x3c,0x29, 0x2,0x41,0x63,\n  0x2,0x41,0x61, 0x3,0x40,0x3d, 0x2,0x41,0x5d, 0x1,0x63,0x2f,\n  0x2,0x41,0x5b, 0x1,0x63,0x35, 0x2,0x41,0x60, 0x2,0x41,0x67,\n  0x2,0x41,0x5e, 0x2,0x41,0x66, 0x3,0x40,0x36, 0x3,0x40,0x3e,\n  0x1,0x67,0x7c, 0x1,0x67,0x79, 0x3,0x45,0x6b, 0x1,0x67,0x7a,\n  0x4,0x42,0x2d, 0x2,0x49,0x21, 0x2,0x48,0x77, 0x1,0x67,0x78,\n  0x1,0x67,0x75, 0x2,0x48,0x78, 0x3,0x45,0x6e, 0x3,0x45,0x6c,\n  0x1,0x67,0x77, 0x2,0x48,0x7b, 0x3,0x45,0x6d, 0x2,0x48,0x7d,\n  0x3,0x45,0x76, 0x4,0x42,0x35, 0x2,0x49,0x26, 0x3,0x45,0x70,\n  0x3,0x45,0x75, 0x2,0x49,0x25, 0x2,0x48,0x7e, 0x1,0x67,0x74,\n  0x2,0x48,0x76, 0x1,0x67,0x72, 0x2,0x48,0x79, 0x1,0x67,0x7d,\n  0x2,0x48,0x7c, 0x3,0x45,0x71, 0x2,0x49,0x22, 0x1,0x67,0x76,\n  0x1,0x67,0x73, 0x2,0x49,0x24, 0x2,0x49,0x23, 0x1,0x67,0x7b,\n  0x2,0x48,0x7a, 0x3,0x45,0x74, 0x1,0x6c,0x23, 0x2,0x4f,0x54,\n  0x3,0x4b,0x29, 0x2,0x4f,0x51, 0x1,0x6c,0x24, 0x4,0x48,0x79,\n  0x1,0x6c,0x22, 0x3,0x4b,0x2b, 0x2,0x4f,0x58, 0x2,0x4f,0x55,\n  0x2,0x4f,0x4e, 0x1,0x6c,0x21, 0x3,0x4b,0x2d, 0x1,0x6c,0x25,\n  0x2,0x4f,0x4f, 0x1,0x6b,0x7e, 0x1,0x6c,0x28, 0x2,0x4f,0x52,\n  0x2,0x4f,0x53, 0x1,0x6c,0x26, 0x1,0x6c,0x27, 0x2,0x4f,0x59,\n  0x2,0x4f,0x56, 0x2,0x4f,0x57, 0x3,0x4b,0x2c, 0x3,0x4b,0x27,\n  0x3,0x64,0x4e, 0x1,0x70,0x33, 0x2,0x56,0x43, 0x1,0x70,0x30,\n  0x2,0x56,0x40, 0x1,0x70,0x32, 0x1,0x70,0x34, 0x3,0x50,0x31,\n  0x2,0x56,0x41, 0x1,0x70,0x31, 0x4,0x4f,0x5a, 0x2,0x56,0x42,\n  0x3,0x50,0x35, 0x2,0x56,0x3f, 0x3,0x50,0x30, 0x3,0x50,0x34,\n  0x1,0x73,0x41, 0x2,0x5c,0x49, 0x1,0x73,0x42, 0x2,0x5c,0x47,\n  0x4,0x55,0x65, 0x2,0x5c,0x48, 0x2,0x5c,0x46, 0x2,0x5c,0x45,\n  0x3,0x54,0x41, 0x3,0x54,0x40, 0x2,0x5c,0x4a, 0x1,0x73,0x40,\n  0x3,0x50,0x33, 0x4,0x55,0x69, 0x2,0x61,0x44, 0x2,0x61,0x45,\n  0x3,0x57,0x52, 0x2,0x4f,0x50, 0x2,0x61,0x43, 0x1,0x73,0x43,\n  0x1,0x78,0x2b, 0x2,0x65,0x37, 0x2,0x65,0x38, 0x3,0x5c,0x32,\n  0x1,0x7a,0x62, 0x1,0x7a,0x63, 0x2,0x6b,0x4f, 0x2,0x6b,0x4e,\n  0x1,0x7b,0x58, 0x1,0x7b,0x57, 0x2,0x6e,0x7d, 0x3,0x60,0x6f,\n  0x1,0x44,0x2a, 0x1,0x44,0x42, 0x1,0x44,0x78, 0x4,0x21,0x3d,\n  0x1,0x44,0x77, 0x1,0x45,0x73, 0x1,0x45,0x72, 0x1,0x47,0x3e,\n  0x1,0x47,0x3d, 0x1,0x47,0x3f, 0x1,0x47,0x3c, 0x3,0x22,0x78,\n  0x1,0x49,0x2c, 0x1,0x49,0x2b, 0x1,0x49,0x2d, 0x3,0x24,0x54,\n  0x4,0x23,0x3b, 0x3,0x24,0x53, 0x3,0x24,0x51, 0x1,0x4c,0x23,\n  0x4,0x25,0x3f, 0x1,0x4c,0x22, 0x1,0x4c,0x24, 0x3,0x27,0x52,\n  0x1,0x50,0x22, 0x4,0x28,0x40, 0x1,0x22,0x79, 0x2,0x2e,0x21,\n  0x1,0x22,0x7a, 0x1,0x59,0x27, 0x1,0x22,0x7c, 0x1,0x22,0x7b,\n  0x2,0x3a,0x44, 0x3,0x39,0x76, 0x1,0x22,0x7d, 0x1,0x67,0x7e,\n  0x1,0x22,0x7e, 0x3,0x5e,0x25, 0x1,0x44,0x2b, 0x3,0x21,0x34,\n  0x1,0x44,0x79, 0x1,0x47,0x40, 0x1,0x4c,0x25, 0x3,0x2b,0x37,\n  0x1,0x44,0x2c, 0x1,0x44,0x7c, 0x1,0x44,0x7a, 0x1,0x44,0x7b,\n  0x1,0x47,0x41, 0x3,0x22,0x7a, 0x4,0x22,0x34, 0x1,0x49,0x2e,\n  0x1,0x4c,0x27, 0x1,0x4c,0x26, 0x1,0x4c,0x28, 0x3,0x2e,0x7b,\n  0x1,0x54,0x40, 0x3,0x40,0x3f, 0x3,0x64,0x53, 0x1,0x70,0x35,\n  0x3,0x21,0x27, 0x4,0x21,0x3e, 0x3,0x21,0x4d, 0x3,0x21,0x48,\n  0x3,0x21,0x4e, 0x2,0x21,0x2e, 0x4,0x21,0x52, 0x1,0x45,0x74,\n  0x1,0x45,0x75, 0x3,0x21,0x78, 0x3,0x21,0x79, 0x1,0x47,0x42,\n  0x4,0x22,0x36, 0x2,0x23,0x2c, 0x3,0x27,0x55, 0x1,0x50,0x24,\n  0x1,0x50,0x23, 0x2,0x2e,0x23, 0x2,0x2e,0x22, 0x1,0x59,0x28,\n  0x3,0x21,0x28, 0x1,0x44,0x7d, 0x2,0x21,0x35, 0x3,0x21,0x7a,\n  0x3,0x24,0x57, 0x2,0x25,0x4d, 0x3,0x2b,0x39, 0x1,0x50,0x25,\n  0x3,0x2f,0x5b, 0x1,0x54,0x43, 0x3,0x2f,0x59, 0x1,0x54,0x41,\n  0x1,0x54,0x42, 0x3,0x2f,0x5a, 0x3,0x34,0x4d, 0xf,0x46,0x5c,\n  0x1,0x70,0x36, 0x1,0x27,0x2f, 0x1,0x45,0x76, 0x4,0x21,0x5e,\n  0x1,0x47,0x43, 0x2,0x21,0x7b, 0x3,0x22,0x7e, 0x3,0x22,0x7d,\n  0x3,0x22,0x7c, 0x3,0x24,0x59, 0x1,0x49,0x2f, 0x1,0x49,0x30,\n  0x3,0x24,0x5a, 0x2,0x23,0x2d, 0x4,0x23,0x3d, 0x2,0x25,0x4e,\n  0x1,0x4c,0x29, 0x2,0x25,0x4f, 0x4,0x25,0x40, 0x4,0x25,0x43,\n  0x3,0x2b,0x3b, 0x3,0x2b,0x3d, 0x3,0x2b,0x3e, 0x2,0x2e,0x25,\n  0x2,0x2e,0x26, 0x1,0x54,0x46, 0x3,0x2f,0x5e, 0x2,0x2e,0x27,\n  0x3,0x2f,0x5f, 0x2,0x2e,0x24, 0x1,0x54,0x47, 0x1,0x54,0x45,\n  0x1,0x54,0x44, 0x2,0x2e,0x28, 0x3,0x34,0x4f, 0x2,0x33,0x6b,\n  0x3,0x34,0x4e, 0x3,0x39,0x7d, 0x3,0x39,0x7a, 0x2,0x3a,0x45,\n  0x4,0x36,0x3f, 0x3,0x39,0x7e, 0x2,0x41,0x6a, 0x2,0x49,0x27,\n  0x3,0x4b,0x2f, 0x3,0x4b,0x2e, 0x3,0x4b,0x30, 0x1,0x6c,0x29,\n  0x1,0x70,0x37, 0x2,0x56,0x44, 0x3,0x54,0x42, 0x1,0x44,0x2d,\n  0x1,0x44,0x3b, 0x3,0x21,0x2f, 0x3,0x21,0x35, 0x3,0x21,0x51,\n  0x3,0x21,0x7b, 0x3,0x23,0x22, 0xf,0x22,0x59, 0x3,0x24,0x5b,\n  0x3,0x27,0x59, 0x4,0x25,0x45, 0x1,0x59,0x29, 0x1,0x5e,0x33,\n  0x6,0x46,0x65, 0x1,0x68,0x21, 0x3,0x45,0x7a, 0x2,0x21,0x23,\n  0x1,0x44,0x7e, 0x4,0x21,0x60, 0x1,0x45,0x79, 0x1,0x45,0x77,\n  0x1,0x45,0x78, 0x1,0x4c,0x2a, 0x3,0x27,0x5a, 0x1,0x44,0x2e,\n  0x1,0x44,0x2f, 0x4,0x21,0x2a, 0x1,0x44,0x43, 0x3,0x21,0x36,\n  0x3,0x21,0x52, 0x1,0x45,0x21, 0x1,0x45,0x22, 0x1,0x45,0x23,\n  0x2,0x21,0x4c, 0x1,0x45,0x7a, 0x3,0x21,0x7d, 0x2,0x21,0x4b,\n  0x1,0x47,0x47, 0x3,0x23,0x25, 0x2,0x21,0x7d, 0x1,0x47,0x45,\n  0x1,0x47,0x46, 0x2,0x21,0x7c, 0x3,0x23,0x24, 0x3,0x23,0x26,\n  0x1,0x47,0x48, 0x1,0x47,0x44, 0x3,0x23,0x27, 0x2,0x23,0x2e,\n  0x1,0x4f,0x4f, 0x2,0x23,0x2f, 0x3,0x24,0x5f, 0x3,0x24,0x61,\n  0x2,0x23,0x30, 0x4,0x23,0x40, 0x3,0x24,0x5c, 0x1,0x49,0x32,\n  0x1,0x49,0x31, 0x3,0x24,0x5e, 0x3,0x24,0x5d, 0x1,0x49,0x35,\n  0x1,0x49,0x33, 0x1,0x49,0x34, 0x3,0x24,0x60, 0x1,0x4c,0x30,\n  0x3,0x27,0x5b, 0x1,0x4c,0x2f, 0x2,0x25,0x54, 0x2,0x25,0x51,\n  0x2,0x25,0x52, 0x3,0x27,0x5e, 0x2,0x25,0x50, 0x1,0x4c,0x31,\n  0x1,0x4c,0x2d, 0x1,0x4c,0x2c, 0x3,0x27,0x5f, 0x1,0x4c,0x2e,\n  0x1,0x4c,0x2b, 0x3,0x27,0x5d, 0x4,0x25,0x4e, 0x3,0x64,0x4f,\n  0x1,0x4c,0x32, 0x1,0x50,0x27, 0x2,0x29,0x32, 0x3,0x2b,0x3f,\n  0x2,0x25,0x53, 0x1,0x50,0x2c, 0x3,0x2b,0x40, 0x2,0x29,0x33,\n  0x1,0x50,0x28, 0x1,0x50,0x2b, 0x1,0x50,0x2a, 0x1,0x50,0x29,\n  0x1,0x50,0x26, 0x3,0x2b,0x43, 0x2,0x2e,0x2b, 0x3,0x2f,0x68,\n  0x1,0x54,0x4a, 0x2,0x2e,0x2e, 0x1,0x54,0x48, 0x3,0x2f,0x65,\n  0x4,0x2b,0x6e, 0x3,0x2f,0x62, 0x2,0x2e,0x2a, 0x1,0x54,0x4b,\n  0x1,0x54,0x49, 0x1,0x54,0x4c, 0x2,0x2e,0x2c, 0x2,0x2e,0x2d,\n  0x3,0x2f,0x60, 0x2,0x2e,0x29, 0x2,0x2e,0x2f, 0x3,0x2f,0x66,\n  0x3,0x2f,0x61, 0x3,0x2f,0x63, 0xf,0x2e,0x2d, 0x3,0x2f,0x64,\n  0x3,0x34,0x50, 0x1,0x5e,0x37, 0x1,0x59,0x2a, 0x2,0x33,0x6c,\n  0x2,0x33,0x6e, 0x2,0x33,0x6d, 0x2,0x33,0x6f, 0x1,0x59,0x2b,\n  0x3,0x3a,0x23, 0x1,0x5e,0x34, 0x3,0x3a,0x21, 0x1,0x5e,0x35,\n  0x1,0x5e,0x36, 0x3,0x34,0x51, 0x1,0x63,0x37, 0x2,0x41,0x6c,\n  0x3,0x40,0x41, 0x2,0x41,0x6b, 0x2,0x41,0x6d, 0x2,0x41,0x6e,\n  0x1,0x63,0x38, 0x3,0x40,0x40, 0x1,0x63,0x36, 0x2,0x49,0x28,\n  0x2,0x49,0x29, 0x1,0x68,0x23, 0x1,0x68,0x22, 0x2,0x4c,0x61,\n  0x4,0x49,0x25, 0x3,0x4b,0x31, 0x1,0x6c,0x2a, 0x1,0x6c,0x2b,\n  0x1,0x6c,0x2c, 0x1,0x6c,0x2e, 0x2,0x4f,0x5a, 0x2,0x4f,0x5b,\n  0x1,0x6c,0x2d, 0x3,0x4b,0x32, 0x3,0x50,0x36, 0x1,0x70,0x38,\n  0x4,0x4f,0x64, 0x1,0x70,0x39, 0x3,0x50,0x37, 0x4,0x55,0x6d,\n  0x2,0x65,0x39, 0x2,0x6b,0x51, 0x2,0x6b,0x50, 0x2,0x6e,0x7e,\n  0x3,0x60,0x2c, 0x1,0x44,0x30, 0x3,0x21,0x37, 0x3,0x21,0x54,\n  0x3,0x21,0x53, 0x1,0x45,0x7c, 0x1,0x45,0x7b, 0x1,0x47,0x49,\n  0x4,0x22,0x42, 0x4,0x22,0x3f, 0x2,0x21,0x7e, 0x4,0x22,0x41,\n  0x3,0x23,0x28, 0x1,0x49,0x37, 0x1,0x49,0x38, 0x1,0x49,0x36,\n  0x1,0x49,0x39, 0x2,0x23,0x31, 0x2,0x23,0x32, 0x4,0x23,0x46,\n  0x4,0x23,0x47, 0x4,0x23,0x48, 0x3,0x24,0x63, 0x3,0x24,0x62,\n  0x3,0x27,0x61, 0x5,0x25,0x3a, 0x5,0x25,0x37, 0x5,0x25,0x38,\n  0x3,0x27,0x60, 0x5,0x25,0x3b, 0x1,0x4c,0x34, 0x2,0x25,0x55,\n  0x4,0x25,0x50, 0x1,0x4c,0x33, 0x3,0x27,0x62, 0x2,0x29,0x34,\n  0x1,0x50,0x30, 0x2,0x29,0x35, 0x1,0x50,0x2f, 0x3,0x2b,0x48,\n  0x3,0x2b,0x46, 0x4,0x28,0x49, 0x1,0x50,0x2d, 0x4,0x28,0x4b,\n  0x1,0x50,0x2e, 0x3,0x2b,0x47, 0x3,0x2f,0x6f, 0x2,0x2e,0x30,\n  0x3,0x2f,0x6c, 0x3,0x2f,0x6a, 0x3,0x2f,0x6d, 0x3,0x2f,0x6e,\n  0x1,0x59,0x2c, 0x2,0x33,0x71, 0x3,0x34,0x52, 0x1,0x59,0x2f,\n  0x2,0x33,0x70, 0x1,0x5b,0x2b, 0x1,0x59,0x2e, 0x1,0x59,0x2d,\n  0x1,0x5e,0x3a, 0x5,0x36,0x6a, 0x1,0x5e,0x39, 0x1,0x5e,0x38,\n  0x1,0x63,0x39, 0x3,0x40,0x45, 0x3,0x40,0x44, 0x1,0x63,0x3c,\n  0x1,0x63,0x3d, 0x1,0x63,0x3b, 0x4,0x3c,0x3c, 0x1,0x63,0x3a,\n  0x3,0x40,0x46, 0x5,0x44,0x67, 0x2,0x49,0x2a, 0x3,0x46,0x21,\n  0x2,0x49,0x2b, 0x5,0x44,0x63, 0x3,0x45,0x7e, 0x3,0x4b,0x33,\n  0x2,0x4f,0x5d, 0x1,0x6c,0x2f, 0x2,0x4f,0x5c, 0x3,0x4d,0x2c,\n  0x1,0x70,0x3a, 0x2,0x5c,0x4b, 0x1,0x73,0x44, 0x5,0x53,0x62,\n  0x2,0x65,0x3a, 0x1,0x79,0x61, 0x1,0x27,0x34, 0x1,0x44,0x44,\n  0x1,0x45,0x24, 0x2,0x21,0x36, 0x3,0x21,0x55, 0x1,0x45,0x25,\n  0x1,0x45,0x26, 0x3,0x21,0x56, 0xf,0x21,0x30, 0x3,0x22,0x23,\n  0x3,0x22,0x22, 0x1,0x45,0x7d, 0x1,0x45,0x7e, 0x3,0x22,0x24,\n  0x1,0x47,0x4a, 0x2,0x23,0x33, 0x2,0x25,0x56, 0x2,0x25,0x57,\n  0x4,0x25,0x51, 0x1,0x50,0x31, 0x2,0x2e,0x31, 0x1,0x59,0x31,\n  0x1,0x59,0x30, 0x2,0x3a,0x47, 0x2,0x3a,0x46, 0x6,0x50,0x74,\n  0x3,0x50,0x38, 0x1,0x44,0x31, 0x1,0x45,0x27, 0x1,0x46,0x21,\n  0x4,0x30,0x5e, 0x1,0x59,0x32, 0x2,0x21,0x24, 0x4,0x21,0x65,\n  0x2,0x21,0x4d, 0x1,0x46,0x22, 0x3,0x22,0x26, 0x2,0x22,0x22,\n  0x1,0x47,0x4c, 0x1,0x47,0x4b, 0x2,0x22,0x21, 0x1,0x49,0x3a,\n  0x3,0x64,0x50, 0x3,0x24,0x65, 0x3,0x2b,0x49, 0x4,0x28,0x4e,\n  0x4,0x28,0x50, 0x1,0x54,0x4d, 0x4,0x2b,0x78, 0x4,0x30,0x5f,\n  0x2,0x33,0x72, 0x1,0x63,0x3e, 0x2,0x49,0x2c, 0x1,0x68,0x24,\n  0x3,0x46,0x23, 0x3,0x4b,0x34, 0x2,0x56,0x45, 0x3,0x54,0x44,\n  0x3,0x5c,0x34, 0x2,0x68,0x6a, 0x3,0x21,0x29, 0x1,0x45,0x28,\n  0x3,0x21,0x57, 0x3,0x24,0x66, 0x2,0x25,0x58, 0x2,0x29,0x36,\n  0x1,0x59,0x35, 0x1,0x59,0x33, 0x1,0x59,0x34, 0x1,0x44,0x32,\n  0x4,0x21,0x30, 0x1,0x44,0x45, 0x1,0x24,0x3f, 0x1,0x45,0x2b,\n  0x3,0x21,0x59, 0x1,0x45,0x2a, 0x1,0x45,0x29, 0x1,0x46,0x25,\n  0x1,0x46,0x24, 0x3,0x23,0x2a, 0x2,0x21,0x4e, 0x2,0x22,0x23,\n  0xf,0x22,0x2c, 0x3,0x23,0x2b, 0x3,0x23,0x2d, 0x1,0x4c,0x38,\n  0x1,0x4c,0x35, 0x1,0x4c,0x37, 0x1,0x4c,0x36, 0x3,0x27,0x63,\n  0x1,0x50,0x32, 0x3,0x2b,0x4a, 0x4,0x30,0x60, 0x1,0x5e,0x3b,\n  0x4,0x66,0x30, 0x1,0x44,0x33, 0x3,0x21,0x5a, 0x1,0x45,0x2c,\n  0x3,0x22,0x27, 0x1,0x46,0x27, 0x1,0x46,0x26, 0x2,0x23,0x34,\n  0x4,0x23,0x4d, 0x3,0x64,0x51, 0x1,0x4c,0x39, 0x3,0x2a,0x5c,\n  0x4,0x30,0x64, 0x3,0x21,0x2a, 0x4,0x21,0x31, 0x2,0x21,0x37,\n  0x3,0x22,0x28, 0x1,0x46,0x29, 0x1,0x46,0x28, 0x1,0x47,0x4d,\n  0x1,0x47,0x4e, 0x2,0x23,0x35, 0x1,0x49,0x3b, 0x3,0x24,0x67,\n  0x1,0x49,0x3c, 0x3,0x27,0x65, 0x1,0x4c,0x3a, 0x1,0x4c,0x3b,\n  0x1,0x4c,0x3c, 0x3,0x27,0x66, 0x1,0x50,0x33, 0x2,0x29,0x37,\n  0x3,0x2b,0x4b, 0x4,0x30,0x65, 0x1,0x54,0x4e, 0x3,0x40,0x47,\n  0x2,0x21,0x25, 0x4,0x21,0x44, 0x1,0x45,0x2d, 0x3,0x21,0x5b,\n  0x4,0x21,0x67, 0x4,0x21,0x66, 0x3,0x22,0x29, 0x2,0x22,0x24,\n  0x3,0x23,0x2f, 0x2,0x23,0x36, 0x2,0x23,0x37, 0x2,0x25,0x59,\n  0x3,0x27,0x67, 0x2,0x25,0x5a, 0x2,0x29,0x39, 0x2,0x29,0x38,\n  0x2,0x29,0x3b, 0x2,0x29,0x3a, 0x1,0x50,0x34, 0x3,0x64,0x52,\n  0x2,0x33,0x73, 0x1,0x54,0x50, 0x2,0x2e,0x32, 0x1,0x54,0x4f,\n  0x3,0x34,0x54, 0x4,0x30,0x68, 0x2,0x3a,0x48, 0x1,0x5e,0x3c,\n  0x3,0x3a,0x28, 0x2,0x3a,0x49, 0x3,0x3a,0x27, 0x3,0x40,0x4a,\n  0x3,0x40,0x49, 0x3,0x40,0x48, 0x2,0x49,0x2d, 0x1,0x68,0x25,\n  0x3,0x46,0x25, 0x4,0x3c,0x40, 0x3,0x46,0x26, 0x3,0x4b,0x35,\n  0x1,0x6c,0x30, 0x3,0x54,0x45, 0x2,0x65,0x3b, 0xf,0x6d,0x2e,\n  0x3,0x21,0x2b, 0x3,0x21,0x5c, 0x4,0x21,0x45, 0x2,0x21,0x38,\n  0x3,0x22,0x2a, 0x1,0x46,0x2a, 0x4,0x22,0x48, 0x3,0x23,0x31,\n  0x4,0x25,0x59, 0x3,0x27,0x69, 0x3,0x27,0x6a, 0x1,0x59,0x36,\n  0x3,0x34,0x55, 0x3,0x3a,0x29, 0x1,0x44,0x34, 0x1,0x44,0x46,\n  0x1,0x45,0x2f, 0x1,0x45,0x2e, 0x3,0x21,0x5e, 0x1,0x45,0x30,\n  0x3,0x21,0x60, 0x4,0x21,0x69, 0x3,0x22,0x2b, 0x3,0x23,0x33,\n  0x4,0x23,0x4f, 0x1,0x4c,0x3e, 0x3,0x27,0x6b, 0x1,0x4c,0x3d,\n  0x1,0x4c,0x3f, 0x3,0x2b,0x50, 0x3,0x2b,0x4f, 0x1,0x50,0x35,\n  0x3,0x2b,0x4e, 0x3,0x2b,0x4d, 0x6,0x35,0x78, 0x1,0x54,0x51,\n  0x3,0x40,0x4b, 0x2,0x56,0x46, 0x1,0x76,0x3b, 0x1,0x44,0x47,\n  0x1,0x46,0x2c, 0x1,0x46,0x3b, 0x1,0x46,0x36, 0x4,0x21,0x6c,\n  0x1,0x46,0x31, 0x1,0x46,0x30, 0x1,0x46,0x37, 0x1,0x46,0x35,\n  0x1,0x46,0x2e, 0x1,0x46,0x3c, 0x1,0x46,0x2f, 0x1,0x46,0x2b,\n  0x1,0x46,0x3a, 0x1,0x46,0x39, 0x1,0x46,0x38, 0x1,0x46,0x2d,\n  0x3,0x22,0x31, 0x1,0x46,0x34, 0x3,0x22,0x2d, 0x3,0x22,0x2e,\n  0x1,0x46,0x33, 0x3,0x22,0x2f, 0xf,0x21,0x50, 0x1,0x46,0x3d,\n  0x1,0x46,0x32, 0x4,0x21,0x6a, 0x3,0x23,0x35, 0x3,0x23,0x37,\n  0x1,0x47,0x54, 0x4,0x22,0x4c, 0x1,0x47,0x5a, 0x1,0x47,0x56,\n  0x3,0x23,0x39, 0x1,0x47,0x5c, 0x2,0x22,0x25, 0x1,0x47,0x59,\n  0x1,0x47,0x4f, 0x1,0x47,0x52, 0x1,0x47,0x55, 0x1,0x47,0x51,\n  0x1,0x47,0x58, 0x1,0x47,0x5b, 0x1,0x47,0x50, 0x1,0x47,0x53,\n  0x1,0x47,0x57, 0x1,0x47,0x5d, 0x3,0x23,0x3a, 0x3,0x23,0x3b,\n  0x3,0x23,0x34, 0x2,0x23,0x40, 0x2,0x23,0x3d, 0x3,0x24,0x76,\n  0x1,0x49,0x49, 0x2,0x23,0x3e, 0x1,0x49,0x3d, 0x1,0x49,0x3f,\n  0x1,0x49,0x57, 0x1,0x49,0x52, 0x3,0x24,0x79, 0x3,0x24,0x7e,\n  0x3,0x24,0x75, 0x2,0x23,0x45, 0x2,0x23,0x3f, 0x1,0x49,0x41,\n  0x1,0x49,0x43, 0x2,0x23,0x44, 0x1,0x49,0x4a, 0x2,0x23,0x3a,\n  0x1,0x49,0x56, 0x1,0x49,0x58, 0x1,0x49,0x3e, 0x1,0x49,0x4f,\n  0x3,0x25,0x24, 0x2,0x23,0x38, 0x1,0x49,0x55, 0x3,0x24,0x77,\n  0x1,0x49,0x46, 0x3,0x24,0x7b, 0x1,0x49,0x50, 0x1,0x49,0x51,\n  0x2,0x23,0x39, 0x1,0x49,0x4e, 0x1,0x49,0x4c, 0x3,0x24,0x70,\n  0x1,0x49,0x4d, 0x1,0x49,0x53, 0x2,0x23,0x41, 0x1,0x49,0x40,\n  0x3,0x25,0x21, 0x1,0x49,0x54, 0x2,0x23,0x43, 0x1,0x49,0x48,\n  0x1,0x49,0x45, 0x3,0x24,0x73, 0x2,0x23,0x3c, 0x1,0x49,0x44,\n  0x2,0x23,0x46, 0x1,0x49,0x47, 0x3,0x24,0x7c, 0x1,0x49,0x4b,\n  0x3,0x24,0x78, 0x3,0x24,0x74, 0x3,0x24,0x6d, 0x1,0x49,0x42,\n  0x2,0x23,0x42, 0x3,0x24,0x7d, 0x3,0x25,0x22, 0x2,0x23,0x3b,\n  0x3,0x25,0x23, 0x4,0x25,0x64, 0x4,0x25,0x63, 0x3,0x27,0x6e,\n  0x2,0x25,0x6b, 0x2,0x25,0x6a, 0x1,0x4c,0x51, 0x2,0x25,0x6d,\n  0x2,0x25,0x6f, 0x2,0x25,0x64, 0x2,0x25,0x67, 0x2,0x25,0x6e,\n  0x1,0x4c,0x52, 0x3,0x27,0x74, 0x3,0x27,0x78, 0x2,0x25,0x61,\n  0x2,0x25,0x65, 0x3,0x27,0x75, 0x4,0x25,0x5f, 0x2,0x25,0x69,\n  0x2,0x29,0x4a, 0x1,0x4c,0x4d, 0x2,0x29,0x4e, 0x1,0x4c,0x40,\n  0x2,0x25,0x66, 0x1,0x4c,0x41, 0x1,0x4c,0x4e, 0x1,0x4c,0x47,\n  0x1,0x4c,0x43, 0x3,0x27,0x71, 0x2,0x25,0x62, 0x1,0x4c,0x46,\n  0x1,0x4c,0x4b, 0x1,0x4c,0x54, 0x2,0x25,0x63, 0x2,0x25,0x5c,\n  0x1,0x4c,0x45, 0x2,0x25,0x5d, 0x2,0x25,0x5f, 0x4,0x25,0x60,\n  0x1,0x4c,0x48, 0x3,0x27,0x6c, 0x1,0x4c,0x4a, 0x2,0x25,0x5b,\n  0x2,0x25,0x60, 0x3,0x27,0x70, 0x3,0x27,0x79, 0x1,0x4c,0x53,\n  0x1,0x4c,0x4f, 0x2,0x25,0x68, 0x1,0x4c,0x55, 0x3,0x27,0x73,\n  0x1,0x4c,0x4c, 0x2,0x25,0x5e, 0x1,0x4c,0x49, 0x3,0x27,0x6f,\n  0x3,0x27,0x77, 0x1,0x4c,0x44, 0x1,0x4c,0x42, 0x2,0x25,0x6c,\n  0x1,0x4c,0x50, 0xf,0x25,0x71, 0x3,0x2b,0x5c, 0x3,0x2b,0x5d,\n  0x2,0x29,0x49, 0x2,0x29,0x3d, 0x2,0x29,0x4c, 0x3,0x2b,0x57,\n  0x3,0x2b,0x59, 0x2,0x29,0x3f, 0x1,0x50,0x3c, 0x1,0x50,0x4a,\n  0x1,0x50,0x38, 0x1,0x50,0x49, 0x1,0x50,0x41, 0x1,0x50,0x46,\n  0x1,0x50,0x36, 0x2,0x29,0x3e, 0x2,0x29,0x44, 0x1,0x50,0x45,\n  0x2,0x29,0x50, 0x1,0x50,0x47, 0x3,0x2b,0x5b, 0x1,0x50,0x3d,\n  0x3,0x2b,0x54, 0x3,0x2b,0x5e, 0x2,0x29,0x46, 0x2,0x29,0x43,\n  0x1,0x50,0x3b, 0x3,0x2b,0x51, 0x2,0x29,0x3c, 0x1,0x50,0x48,\n  0x2,0x29,0x4b, 0x1,0x50,0x40, 0x2,0x29,0x4d, 0x1,0x50,0x4b,\n  0x1,0x50,0x37, 0x1,0x50,0x42, 0x1,0x50,0x3f, 0x2,0x29,0x41,\n  0x1,0x50,0x43, 0x2,0x29,0x47, 0x2,0x29,0x48, 0x1,0x50,0x3e,\n  0x1,0x50,0x44, 0x1,0x50,0x3a, 0x3,0x2b,0x55, 0x3,0x64,0x54,\n  0x3,0x2b,0x63, 0x3,0x2b,0x61, 0x1,0x50,0x39, 0x2,0x29,0x40,\n  0x3,0x2b,0x53, 0x2,0x29,0x45, 0x3,0x2b,0x58, 0x2,0x29,0x4f,\n  0x2,0x2e,0x46, 0x1,0x54,0x5e, 0x2,0x2e,0x34, 0x4,0x2c,0x2d,\n  0x2,0x2e,0x39, 0x1,0x54,0x57, 0x1,0x54,0x62, 0x2,0x2e,0x37,\n  0x1,0x54,0x52, 0x1,0x54,0x5c, 0x1,0x54,0x61, 0x2,0x2e,0x3e,\n  0x4,0x2c,0x26, 0x1,0x54,0x5d, 0x1,0x54,0x60, 0x3,0x2f,0x77,\n  0x3,0x30,0x21, 0x2,0x2e,0x41, 0x1,0x54,0x58, 0x2,0x2e,0x38,\n  0x3,0x2f,0x74, 0x3,0x2f,0x78, 0x3,0x30,0x22, 0x2,0x2e,0x44,\n  0x2,0x2e,0x45, 0x3,0x2f,0x79, 0x1,0x54,0x5a, 0x2,0x2e,0x43,\n  0x1,0x54,0x56, 0x1,0x54,0x65, 0x4,0x2c,0x29, 0x2,0x2e,0x3b,\n  0x3,0x2f,0x7b, 0x1,0x54,0x54, 0x3,0x2f,0x7a, 0x2,0x2e,0x48,\n  0x2,0x2e,0x3c, 0x2,0x2e,0x40, 0x1,0x54,0x59, 0x1,0x54,0x64,\n  0x2,0x2e,0x3d, 0x1,0x54,0x5f, 0x2,0x2e,0x42, 0x2,0x2e,0x49,\n  0x2,0x34,0x24, 0x3,0x2f,0x73, 0x2,0x2e,0x47, 0x1,0x54,0x66,\n  0x1,0x54,0x53, 0x2,0x2e,0x3f, 0x2,0x2e,0x36, 0x3,0x2f,0x76,\n  0x1,0x54,0x5b, 0x4,0x2c,0x28, 0x4,0x2c,0x2e, 0x2,0x2e,0x35,\n  0x3,0x2f,0x7e, 0x3,0x30,0x25, 0x2,0x2e,0x3a, 0xf,0x29,0x54,\n  0xf,0x2e,0x42, 0xf,0x2e,0x4a, 0x2,0x2e,0x33, 0x1,0x54,0x63,\n  0x3,0x67,0x21, 0x3,0x34,0x5f, 0x2,0x33,0x7a, 0x3,0x34,0x68,\n  0x1,0x59,0x49, 0x2,0x34,0x2a, 0x1,0x59,0x47, 0x1,0x59,0x44,\n  0x2,0x34,0x21, 0x1,0x59,0x40, 0x2,0x34,0x25, 0x1,0x59,0x4b,\n  0x2,0x33,0x79, 0x2,0x33,0x7e, 0x2,0x33,0x7d, 0x1,0x54,0x55,\n  0x1,0x59,0x46, 0x2,0x34,0x28, 0x3,0x34,0x66, 0x2,0x34,0x2b,\n  0x2,0x33,0x76, 0x4,0x30,0x77, 0x1,0x5e,0x4e, 0x3,0x34,0x67,\n  0x2,0x34,0x2c, 0x1,0x59,0x4c, 0x4,0x30,0x72, 0x1,0x59,0x3e,\n  0x1,0x59,0x3b, 0x2,0x34,0x23, 0x1,0x59,0x38, 0x4,0x30,0x74,\n  0x2,0x34,0x29, 0x3,0x34,0x5b, 0x1,0x59,0x3f, 0x2,0x34,0x2d,\n  0x3,0x34,0x58, 0x2,0x33,0x77, 0x2,0x34,0x27, 0x1,0x59,0x42,\n  0x2,0x33,0x78, 0x2,0x33,0x7b, 0x2,0x34,0x22, 0x3,0x34,0x62,\n  0x3,0x34,0x61, 0x1,0x59,0x43, 0x1,0x59,0x41, 0x1,0x59,0x4d,\n  0x3,0x34,0x57, 0x3,0x3a,0x36, 0x3,0x34,0x64, 0x4,0x30,0x6b,\n  0x1,0x59,0x48, 0x3,0x34,0x5e, 0x1,0x59,0x3c, 0x1,0x5a,0x76,\n  0x4,0x30,0x7a, 0x1,0x59,0x3d, 0x2,0x33,0x7c, 0x1,0x59,0x4a,\n  0x1,0x59,0x45, 0x2,0x34,0x26, 0x1,0x59,0x3a, 0x3,0x34,0x59,\n  0x1,0x59,0x39, 0x3,0x64,0x57, 0x3,0x64,0x56, 0x3,0x67,0x22,\n  0x3,0x64,0x55, 0x2,0x33,0x74, 0x2,0x33,0x75, 0x2,0x3a,0x4e,\n  0x3,0x3a,0x3c, 0x1,0x5e,0x3d, 0x1,0x5e,0x40, 0x2,0x3a,0x59,\n  0x1,0x5e,0x54, 0x2,0x3a,0x5c, 0x1,0x5e,0x3e, 0x2,0x3a,0x55,\n  0x1,0x5e,0x44, 0x1,0x5e,0x4a, 0x1,0x61,0x43, 0x3,0x3a,0x31,\n  0x3,0x3a,0x38, 0x1,0x5e,0x48, 0x2,0x3a,0x52, 0x1,0x5e,0x55,\n  0x1,0x5e,0x41, 0x1,0x5e,0x49, 0x2,0x3a,0x5a, 0x2,0x41,0x7c,\n  0x2,0x3a,0x5f, 0x2,0x3a,0x53, 0x4,0x36,0x5c, 0x2,0x3a,0x4a,\n  0x2,0x3a,0x57, 0x2,0x3a,0x51, 0x1,0x5e,0x47, 0x2,0x3a,0x5d,\n  0x3,0x3a,0x2e, 0x3,0x3a,0x2a, 0x1,0x5e,0x43, 0x1,0x5e,0x57,\n  0x1,0x5e,0x50, 0x3,0x3a,0x33, 0x1,0x5e,0x45, 0x1,0x5e,0x42,\n  0x3,0x3a,0x40, 0x1,0x5e,0x4d, 0x3,0x3a,0x34, 0x2,0x3a,0x5e,\n  0x2,0x3a,0x50, 0x2,0x3a,0x56, 0x2,0x3a,0x58, 0x2,0x3a,0x4c,\n  0x2,0x3a,0x5b, 0x1,0x5e,0x3f, 0x2,0x3a,0x4b, 0x3,0x3a,0x42,\n  0x1,0x5e,0x46, 0x1,0x5e,0x56, 0x1,0x5e,0x52, 0x2,0x3a,0x4d,\n  0x1,0x5e,0x4c, 0x3,0x3a,0x3b, 0xf,0x39,0x71, 0x1,0x5e,0x53,\n  0x1,0x5e,0x4f, 0x1,0x5e,0x4b, 0x3,0x3a,0x2f, 0x2,0x3a,0x54,\n  0x6,0x47,0x29, 0x3,0x67,0x23, 0x1,0x5e,0x51, 0x2,0x41,0x7a,\n  0x2,0x41,0x76, 0x3,0x40,0x51, 0x2,0x42,0x27, 0x2,0x41,0x6f,\n  0x2,0x41,0x78, 0x1,0x63,0x4c, 0x1,0x63,0x4d, 0x1,0x63,0x45,\n  0x2,0x42,0x23, 0x1,0x63,0x4f, 0x2,0x41,0x74, 0x2,0x41,0x73,\n  0x2,0x41,0x71, 0x2,0x42,0x25, 0x1,0x63,0x43, 0x2,0x41,0x7d,\n  0x2,0x41,0x72, 0x1,0x63,0x46, 0x2,0x41,0x7b, 0x1,0x63,0x41,\n  0x2,0x41,0x77, 0x2,0x41,0x7e, 0x2,0x42,0x22, 0x3,0x40,0x4e,\n  0x4,0x3c,0x4b, 0x2,0x42,0x26, 0x1,0x63,0x4a, 0x2,0x41,0x70,\n  0x1,0x63,0x44, 0x2,0x41,0x75, 0x3,0x3a,0x2b, 0x1,0x63,0x3f,\n  0x6,0x51,0x43, 0x1,0x63,0x4b, 0x2,0x42,0x21, 0x1,0x63,0x47,\n  0x1,0x63,0x48, 0x1,0x63,0x4e, 0x1,0x63,0x42, 0x1,0x23,0x21,\n  0x1,0x63,0x40, 0x2,0x41,0x79, 0x3,0x40,0x4c, 0x3,0x67,0x25,\n  0x1,0x63,0x49, 0x3,0x67,0x24, 0xf,0x40,0x62, 0x2,0x42,0x24,\n  0x3,0x64,0x58, 0x1,0x68,0x35, 0x1,0x68,0x30, 0x3,0x46,0x2e,\n  0x2,0x49,0x3c, 0x2,0x49,0x38, 0x3,0x46,0x28, 0x2,0x49,0x32,\n  0x1,0x68,0x2a, 0x1,0x68,0x26, 0x2,0x49,0x3b, 0x1,0x68,0x27,\n  0x2,0x49,0x35, 0x2,0x49,0x37, 0x3,0x46,0x29, 0x2,0x49,0x3a,\n  0x3,0x46,0x36, 0x1,0x68,0x2c, 0x3,0x46,0x2c, 0x1,0x68,0x33,\n  0x1,0x68,0x2d, 0x4,0x42,0x57, 0x3,0x46,0x2a, 0x2,0x49,0x30,\n  0x1,0x68,0x2e, 0x1,0x68,0x2f, 0x2,0x49,0x33, 0x1,0x68,0x34,\n  0x3,0x46,0x34, 0x2,0x49,0x31, 0x2,0x49,0x36, 0x1,0x68,0x2b,\n  0x2,0x49,0x2f, 0x1,0x68,0x31, 0x1,0x68,0x29, 0x3,0x46,0x33,\n  0x4,0x42,0x4b, 0x1,0x68,0x28, 0x2,0x49,0x34, 0x2,0x49,0x39,\n  0x3,0x46,0x31, 0x1,0x68,0x32, 0x3,0x64,0x5a, 0x3,0x64,0x59,\n  0x3,0x46,0x50, 0x2,0x49,0x2e, 0x3,0x46,0x30, 0x1,0x6c,0x37,\n  0x2,0x4f,0x6e, 0x3,0x4b,0x41, 0x2,0x4f,0x6b, 0x3,0x4b,0x38,\n  0x1,0x6c,0x31, 0x1,0x6c,0x3d, 0x1,0x6c,0x3e, 0x3,0x4b,0x3d,\n  0x1,0x6c,0x34, 0x2,0x4f,0x69, 0x1,0x6c,0x36, 0x2,0x4f,0x61,\n  0x1,0x6c,0x3c, 0x3,0x4b,0x44, 0x2,0x4f,0x6d, 0x1,0x6c,0x33,\n  0x2,0x4f,0x6f, 0x1,0x6c,0x32, 0x4,0x49,0x31, 0x2,0x4f,0x6a,\n  0x2,0x4f,0x6c, 0x1,0x6c,0x35, 0x2,0x4f,0x68, 0x2,0x4f,0x62,\n  0x2,0x4f,0x5f, 0x4,0x49,0x2e, 0x3,0x4b,0x3e, 0x2,0x3a,0x4f,\n  0x2,0x4f,0x65, 0x3,0x4b,0x37, 0x2,0x4f,0x5e, 0x2,0x4f,0x64,\n  0x2,0x4f,0x63, 0x3,0x4b,0x3b, 0x2,0x4f,0x60, 0x3,0x4b,0x43,\n  0x1,0x6c,0x39, 0x3,0x4b,0x45, 0x3,0x4b,0x40, 0x3,0x46,0x35,\n  0x3,0x4b,0x3c, 0x1,0x6c,0x38, 0x3,0x4b,0x39, 0x7,0x21,0x63,\n  0x3,0x4b,0x3f, 0x1,0x6c,0x3a, 0x2,0x4f,0x66, 0x1,0x70,0x3b,\n  0x2,0x4f,0x67, 0x2,0x56,0x4f, 0x3,0x50,0x3f, 0x2,0x56,0x48,\n  0x3,0x50,0x40, 0x1,0x70,0x47, 0x2,0x56,0x4c, 0x1,0x70,0x3f,\n  0x1,0x70,0x43, 0x2,0x56,0x4b, 0x3,0x50,0x3b, 0x1,0x70,0x42,\n  0x1,0x70,0x3e, 0x1,0x70,0x41, 0x1,0x70,0x3c, 0x1,0x70,0x46,\n  0x2,0x56,0x4d, 0x2,0x56,0x49, 0x1,0x70,0x45, 0x2,0x56,0x47,\n  0x1,0x70,0x44, 0x2,0x56,0x4e, 0x2,0x56,0x4a, 0x1,0x6c,0x3b,\n  0x4,0x4f,0x71, 0x1,0x70,0x48, 0x2,0x56,0x50, 0x1,0x70,0x40,\n  0x1,0x70,0x3d, 0xf,0x53,0x5d, 0x3,0x50,0x3d, 0x3,0x54,0x48,\n  0x2,0x5c,0x52, 0x2,0x5c,0x54, 0x1,0x73,0x46, 0x2,0x5c,0x55,\n  0x2,0x5c,0x53, 0x2,0x5c,0x51, 0x2,0x5c,0x50, 0x1,0x73,0x48,\n  0x2,0x5c,0x4f, 0x1,0x73,0x49, 0x4,0x55,0x74, 0x3,0x54,0x49,\n  0x3,0x54,0x47, 0x4,0x55,0x78, 0x2,0x5c,0x4d, 0x2,0x5c,0x4e,\n  0x1,0x73,0x45, 0x1,0x73,0x4a, 0x1,0x73,0x47, 0x3,0x64,0x5d,\n  0x3,0x64,0x5b, 0x2,0x5c,0x4c, 0x3,0x57,0x5b, 0x1,0x76,0x3c,\n  0x3,0x57,0x5a, 0x2,0x61,0x48, 0x2,0x61,0x46, 0x2,0x61,0x4b,\n  0x2,0x61,0x49, 0x3,0x57,0x58, 0x2,0x61,0x47, 0x2,0x61,0x4a,\n  0x3,0x57,0x59, 0x3,0x57,0x57, 0x3,0x57,0x5c, 0x1,0x78,0x2c,\n  0x2,0x65,0x3e, 0x2,0x65,0x3f, 0x1,0x78,0x2d, 0x4,0x5f,0x4d,\n  0x2,0x65,0x40, 0x2,0x65,0x3c, 0x2,0x65,0x41, 0x2,0x65,0x3d,\n  0x1,0x76,0x3d, 0x3,0x5a,0x2d, 0x3,0x64,0x5e, 0x4,0x63,0x31,\n  0x2,0x68,0x6b, 0x2,0x68,0x6d, 0x1,0x79,0x64, 0x2,0x68,0x6c,\n  0x1,0x79,0x63, 0x1,0x79,0x62, 0x3,0x67,0x26, 0x3,0x67,0x27,\n  0x3,0x64,0x5c, 0x3,0x5e,0x26, 0x1,0x79,0x65, 0x2,0x6b,0x53,\n  0x2,0x6b,0x54, 0x4,0x66,0x34, 0x1,0x7a,0x65, 0x1,0x7a,0x64,\n  0x1,0x7a,0x66, 0x2,0x6b,0x52, 0x3,0x67,0x28, 0x2,0x6d,0x46,\n  0x2,0x6d,0x45, 0x3,0x5f,0x40, 0x1,0x7b,0x59, 0x1,0x7b,0x5b,\n  0x1,0x7b,0x5a, 0x2,0x6d,0x47, 0x1,0x7c,0x34, 0x2,0x70,0x34,\n  0x4,0x6a,0x44, 0x4,0x6a,0x43, 0x1,0x7c,0x5d, 0x3,0x60,0x71,\n  0x2,0x70,0x33, 0x2,0x70,0x7c, 0x2,0x21,0x2a, 0x3,0x21,0x77,\n  0x4,0x21,0x6f, 0x1,0x46,0x3f, 0x1,0x46,0x3e, 0x4,0x21,0x6d,\n  0x1,0x47,0x60, 0x1,0x47,0x5f, 0x2,0x22,0x27, 0x1,0x47,0x5e,\n  0x2,0x22,0x26, 0x3,0x23,0x3e, 0x1,0x49,0x5b, 0x2,0x23,0x49,\n  0x3,0x25,0x2c, 0x2,0x23,0x48, 0xf,0x23,0x50, 0x3,0x25,0x26,\n  0x1,0x49,0x59, 0x1,0x49,0x5c, 0x3,0x25,0x2b, 0x3,0x25,0x2a,\n  0x2,0x23,0x47, 0x3,0x25,0x29, 0x1,0x49,0x5a, 0x3,0x25,0x48,\n  0x3,0x25,0x27, 0x3,0x25,0x28, 0x3,0x28,0x22, 0x2,0x25,0x70,\n  0x3,0x27,0x7d, 0x2,0x25,0x71, 0x1,0x4c,0x56, 0x3,0x27,0x7c,\n  0x3,0x28,0x21, 0x3,0x27,0x7b, 0x1,0x50,0x4c, 0x3,0x2b,0x65,\n  0x2,0x2e,0x4a, 0x2,0x2e,0x4b, 0x1,0x54,0x67, 0x1,0x54,0x68,\n  0x3,0x30,0x27, 0x2,0x34,0x2f, 0x1,0x59,0x4e, 0x1,0x59,0x50,\n  0x2,0x34,0x2e, 0x1,0x59,0x4f, 0x2,0x3a,0x60, 0x1,0x5e,0x58,\n  0x3,0x3a,0x44, 0x3,0x3a,0x43, 0x4,0x36,0x68, 0x4,0x3c,0x52,\n  0x1,0x63,0x50, 0x1,0x63,0x51, 0x2,0x42,0x28, 0x3,0x40,0x52,\n  0x1,0x68,0x37, 0x3,0x46,0x37, 0x1,0x68,0x36, 0x2,0x4f,0x70,\n  0x2,0x56,0x52, 0x2,0x56,0x51, 0x3,0x5f,0x41, 0x2,0x71,0x5a,\n  0x1,0x44,0x48, 0x2,0x21,0x39, 0x3,0x21,0x61, 0x2,0x21,0x4f,\n  0x2,0x21,0x50, 0x3,0x22,0x34, 0x4,0x21,0x70, 0x4,0x21,0x71,\n  0x1,0x47,0x63, 0x1,0x47,0x67, 0x2,0x22,0x29, 0x4,0x22,0x51,\n  0x1,0x47,0x65, 0x1,0x47,0x64, 0x2,0x22,0x28, 0x1,0x47,0x66,\n  0x1,0x47,0x62, 0x3,0x23,0x41, 0x3,0x23,0x42, 0x1,0x47,0x61,\n  0x2,0x22,0x2a, 0x3,0x23,0x3f, 0x3,0x23,0x40, 0x1,0x49,0x66,\n  0x3,0x25,0x31, 0x3,0x25,0x3e, 0x1,0x49,0x63, 0x3,0x25,0x30,\n  0x1,0x49,0x5f, 0x2,0x23,0x4a, 0x3,0x25,0x40, 0x3,0x25,0x36,\n  0x3,0x25,0x2f, 0x2,0x23,0x4b, 0x3,0x25,0x3c, 0x1,0x49,0x61,\n  0x3,0x25,0x2d, 0x2,0x23,0x4d, 0x1,0x49,0x5d, 0x2,0x23,0x4e,\n  0x2,0x23,0x4c, 0x1,0x49,0x60, 0x1,0x49,0x62, 0x1,0x49,0x65,\n  0x1,0x49,0x64, 0x1,0x49,0x5e, 0x2,0x23,0x4f, 0x3,0x25,0x32,\n  0x3,0x25,0x41, 0x3,0x25,0x42, 0x3,0x25,0x33, 0x3,0x25,0x38,\n  0x3,0x25,0x37, 0x3,0x64,0x5f, 0xf,0x23,0x52, 0x3,0x25,0x35,\n  0x1,0x4c,0x5b, 0x2,0x25,0x7e, 0x3,0x28,0x25, 0x1,0x4c,0x5d,\n  0x3,0x28,0x23, 0x1,0x4c,0x5c, 0x3,0x28,0x26, 0x2,0x26,0x21,\n  0x1,0x4c,0x5a, 0x1,0x4c,0x59, 0x2,0x25,0x75, 0x4,0x25,0x69,\n  0x2,0x25,0x74, 0x3,0x28,0x28, 0x2,0x25,0x72, 0x2,0x25,0x77,\n  0x2,0x25,0x76, 0x2,0x25,0x73, 0x2,0x25,0x7c, 0x2,0x25,0x7d,\n  0x2,0x25,0x7a, 0x2,0x25,0x78, 0x1,0x4c,0x58, 0x3,0x28,0x29,\n  0x4,0x25,0x66, 0x4,0x25,0x68, 0x2,0x25,0x7b, 0x1,0x4c,0x5e,\n  0x2,0x26,0x22, 0x4,0x25,0x65, 0x3,0x28,0x2a, 0x2,0x25,0x79,\n  0x3,0x28,0x24, 0x1,0x50,0x4d, 0x1,0x4c,0x57, 0x4,0x25,0x6e,\n  0xf,0x26,0x33, 0x3,0x64,0x60, 0x1,0x50,0x4e, 0x2,0x29,0x55,\n  0x3,0x2b,0x69, 0x3,0x2b,0x68, 0x2,0x29,0x5b, 0x3,0x2b,0x6c,\n  0x3,0x2b,0x67, 0x3,0x2b,0x6a, 0x1,0x50,0x54, 0x2,0x29,0x59,\n  0x2,0x29,0x5f, 0x3,0x2b,0x71, 0x2,0x29,0x56, 0x2,0x29,0x5a,\n  0x2,0x29,0x5c, 0x2,0x29,0x5e, 0x2,0x29,0x58, 0x3,0x2b,0x70,\n  0x2,0x29,0x57, 0x2,0x29,0x52, 0x2,0x29,0x53, 0x1,0x50,0x4f,\n  0x3,0x2b,0x6b, 0x1,0x50,0x51, 0x1,0x50,0x50, 0x2,0x29,0x54,\n  0x2,0x29,0x5d, 0x3,0x2b,0x6d, 0x3,0x2b,0x72, 0x3,0x2b,0x6e,\n  0x4,0x28,0x60, 0xf,0x29,0x6a, 0xf,0x29,0x71, 0x3,0x2b,0x66,\n  0x1,0x50,0x53, 0x4,0x28,0x5e, 0x2,0x29,0x51, 0x2,0x2e,0x55,\n  0x3,0x30,0x2a, 0x2,0x2e,0x54, 0x2,0x2e,0x59, 0x2,0x2e,0x50,\n  0x3,0x30,0x30, 0x2,0x2e,0x53, 0x2,0x2e,0x52, 0x3,0x30,0x2f,\n  0x2,0x2e,0x56, 0x3,0x30,0x38, 0x2,0x2e,0x5a, 0x1,0x54,0x69,\n  0x1,0x54,0x6c, 0x3,0x30,0x34, 0x3,0x30,0x35, 0x2,0x2e,0x51,\n  0x2,0x2e,0x57, 0x3,0x30,0x33, 0x3,0x30,0x28, 0x3,0x30,0x37,\n  0x1,0x54,0x6b, 0x2,0x2e,0x4c, 0x3,0x30,0x2b, 0x1,0x50,0x52,\n  0x2,0x34,0x3d, 0x2,0x2e,0x58, 0x3,0x30,0x36, 0x2,0x2e,0x4f,\n  0x4,0x2c,0x33, 0x1,0x54,0x6a, 0x2,0x2e,0x4e, 0xf,0x2e,0x5c,\n  0x3,0x30,0x32, 0x2,0x34,0x34, 0x3,0x34,0x6e, 0x3,0x34,0x71,\n  0x1,0x59,0x51, 0x1,0x59,0x55, 0x2,0x34,0x44, 0x2,0x34,0x32,\n  0x2,0x34,0x40, 0x1,0x59,0x56, 0x2,0x34,0x42, 0x3,0x34,0x72,\n  0x2,0x34,0x48, 0x3,0x34,0x74, 0x2,0x34,0x4c, 0x3,0x34,0x69,\n  0x4,0x30,0x7b, 0x2,0x34,0x43, 0x2,0x34,0x37, 0x2,0x34,0x3f,\n  0x3,0x34,0x6b, 0x2,0x34,0x4d, 0x2,0x34,0x4b, 0x2,0x34,0x41,\n  0x2,0x34,0x3c, 0x2,0x34,0x35, 0x2,0x3a,0x68, 0x2,0x34,0x33,\n  0x1,0x59,0x5a, 0x2,0x34,0x3a, 0x1,0x59,0x5b, 0x1,0x59,0x57,\n  0x2,0x34,0x30, 0x2,0x34,0x46, 0x2,0x34,0x38, 0x3,0x34,0x6f,\n  0x3,0x34,0x75, 0x2,0x34,0x36, 0x2,0x34,0x49, 0x1,0x59,0x58,\n  0x3,0x34,0x76, 0x2,0x34,0x4f, 0x1,0x59,0x52, 0x1,0x59,0x54,\n  0x2,0x34,0x3e, 0x2,0x34,0x39, 0x1,0x54,0x6d, 0x1,0x59,0x53,\n  0x2,0x34,0x3b, 0x2,0x34,0x4a, 0x2,0x34,0x4e, 0x2,0x34,0x45,\n  0x3,0x64,0x61, 0x2,0x34,0x47, 0x3,0x64,0x62, 0x3,0x64,0x63,\n  0x2,0x34,0x31, 0x4,0x36,0x69, 0x3,0x3a,0x4a, 0x2,0x3a,0x63,\n  0x3,0x3a,0x45, 0x2,0x3a,0x6c, 0x2,0x3a,0x6b, 0x1,0x5e,0x60,\n  0x2,0x3a,0x64, 0x3,0x3a,0x47, 0x1,0x5e,0x61, 0x1,0x5e,0x5f,\n  0x3,0x3a,0x50, 0x2,0x3a,0x66, 0x1,0x5e,0x5c, 0x2,0x3a,0x6a,\n  0x3,0x3a,0x4c, 0x2,0x3a,0x65, 0x2,0x3a,0x67, 0x2,0x3a,0x61,\n  0x1,0x5e,0x5a, 0x4,0x36,0x6f, 0x2,0x3a,0x74, 0x2,0x3a,0x73,\n  0x2,0x3a,0x70, 0x1,0x5e,0x59, 0x1,0x5e,0x5d, 0x1,0x5e,0x5e,\n  0x2,0x2e,0x4d, 0x2,0x3a,0x6d, 0x1,0x5e,0x5b, 0x1,0x59,0x59,\n  0x2,0x3a,0x6f, 0x2,0x3a,0x62, 0x2,0x3a,0x72, 0x2,0x3a,0x71,\n  0x3,0x3a,0x4e, 0x2,0x3a,0x75, 0x3,0x3a,0x49, 0x2,0x42,0x36,\n  0x3,0x3a,0x4b, 0x2,0x3a,0x6e, 0xf,0x39,0x7d, 0xf,0x39,0x7e,\n  0x4,0x3c,0x57, 0x4,0x36,0x6d, 0x4,0x36,0x71, 0x3,0x64,0x64,\n  0x2,0x3a,0x69, 0x2,0x42,0x2e, 0x1,0x63,0x5b, 0x1,0x63,0x5e,\n  0x1,0x63,0x59, 0x2,0x42,0x2d, 0x2,0x42,0x31, 0x2,0x42,0x2c,\n  0x3,0x40,0x57, 0x1,0x63,0x53, 0x1,0x63,0x5d, 0x2,0x42,0x29,\n  0x1,0x63,0x57, 0x2,0x42,0x30, 0x3,0x40,0x5b, 0x1,0x63,0x55,\n  0x1,0x63,0x54, 0x2,0x42,0x33, 0x1,0x63,0x56, 0x2,0x42,0x35,\n  0x3,0x40,0x56, 0x2,0x42,0x32, 0x1,0x63,0x52, 0x3,0x40,0x5e,\n  0x3,0x40,0x5c, 0x3,0x40,0x58, 0x1,0x63,0x5c, 0x2,0x42,0x37,\n  0x2,0x42,0x2b, 0x2,0x42,0x34, 0x3,0x40,0x5d, 0x4,0x3c,0x53,\n  0x2,0x42,0x2a, 0x3,0x40,0x5a, 0x3,0x40,0x59, 0x1,0x63,0x58,\n  0x3,0x40,0x54, 0x1,0x63,0x5a, 0x2,0x42,0x2f, 0x2,0x42,0x38,\n  0x3,0x46,0x43, 0x3,0x46,0x3e, 0x2,0x49,0x44, 0x1,0x68,0x38,\n  0x2,0x49,0x4a, 0x3,0x46,0x42, 0x3,0x46,0x3c, 0x1,0x68,0x3d,\n  0x2,0x49,0x46, 0x2,0x49,0x4d, 0x2,0x49,0x3e, 0x1,0x68,0x3f,\n  0x1,0x68,0x39, 0x2,0x49,0x43, 0x1,0x6c,0x3f, 0x2,0x49,0x42,\n  0x2,0x49,0x4b, 0x1,0x68,0x3a, 0x3,0x46,0x3d, 0x1,0x68,0x3e,\n  0x2,0x49,0x41, 0x2,0x49,0x47, 0x2,0x49,0x4c, 0x2,0x49,0x3d,\n  0x1,0x68,0x3c, 0x2,0x49,0x45, 0x3,0x46,0x3a, 0x3,0x46,0x45,\n  0x2,0x49,0x49, 0x2,0x49,0x4f, 0x2,0x49,0x3f, 0x2,0x49,0x48,\n  0x3,0x46,0x38, 0x1,0x68,0x3b, 0x2,0x49,0x4e, 0x3,0x46,0x41,\n  0x3,0x46,0x44, 0x3,0x46,0x40, 0x2,0x49,0x40, 0x4,0x42,0x59,\n  0x3,0x64,0x65, 0x1,0x6c,0x43, 0x2,0x4f,0x72, 0x1,0x6c,0x41,\n  0x1,0x6c,0x40, 0x2,0x4f,0x74, 0x2,0x4f,0x79, 0x3,0x4b,0x46,\n  0x2,0x4f,0x75, 0x3,0x4b,0x50, 0x2,0x4f,0x78, 0x1,0x6c,0x46,\n  0x3,0x4b,0x51, 0x1,0x70,0x2e, 0x1,0x6c,0x45, 0x3,0x4b,0x4b,\n  0x2,0x4f,0x71, 0x2,0x4f,0x77, 0x3,0x46,0x3f, 0x1,0x6c,0x44,\n  0x2,0x4f,0x76, 0x3,0x4b,0x4d, 0x2,0x4f,0x73, 0x3,0x4b,0x49,\n  0x1,0x6c,0x42, 0x3,0x4b,0x4f, 0x3,0x4b,0x4c, 0x3,0x4b,0x47,\n  0x2,0x56,0x57, 0x3,0x50,0x4a, 0x2,0x56,0x59, 0x2,0x56,0x54,\n  0x1,0x70,0x4a, 0x2,0x56,0x56, 0x3,0x50,0x4b, 0x1,0x70,0x49,\n  0x2,0x56,0x58, 0x3,0x50,0x48, 0x3,0x50,0x4c, 0x1,0x70,0x4c,\n  0x2,0x56,0x5a, 0x1,0x70,0x4b, 0x2,0x56,0x53, 0x2,0x56,0x55,\n  0x3,0x50,0x49, 0x3,0x54,0x4b, 0x1,0x73,0x4e, 0x2,0x5c,0x58,\n  0x3,0x54,0x4c, 0x1,0x73,0x4d, 0x2,0x5c,0x59, 0x1,0x73,0x4c,\n  0x2,0x5c,0x57, 0x1,0x73,0x4b, 0x2,0x5c,0x56, 0x1,0x76,0x3f,\n  0x1,0x76,0x3e, 0x2,0x65,0x42, 0x2,0x65,0x44, 0x3,0x5a,0x2f,\n  0x2,0x65,0x43, 0x1,0x78,0x2e, 0x1,0x78,0x2f, 0x3,0x5a,0x2e,\n  0x7,0x46,0x45, 0x1,0x78,0x30, 0x2,0x68,0x6e, 0x1,0x79,0x66,\n  0x3,0x5e,0x28, 0x2,0x6f,0x22, 0x2,0x6f,0x21, 0x1,0x7c,0x5e,\n  0x1,0x44,0x49, 0x1,0x45,0x31, 0x3,0x23,0x43, 0x1,0x49,0x67,\n  0x3,0x25,0x45, 0x3,0x25,0x43, 0x3,0x25,0x44, 0x3,0x28,0x2d,\n  0x2,0x29,0x60, 0x3,0x2b,0x77, 0x3,0x34,0x77, 0x1,0x5e,0x62,\n  0x1,0x5e,0x63, 0x3,0x3a,0x52, 0x2,0x42,0x39, 0x1,0x68,0x40,\n  0x2,0x49,0x50, 0x2,0x4f,0x7a, 0x3,0x64,0x66, 0x3,0x50,0x4d,\n  0x3,0x21,0x39, 0x2,0x21,0x3a, 0x3,0x22,0x35, 0x3,0x23,0x44,\n  0x2,0x23,0x50, 0x3,0x2b,0x7a, 0x3,0x2b,0x79, 0x3,0x21,0x3a,\n  0x3,0x25,0x46, 0x2,0x26,0x23, 0x2,0x29,0x61, 0x2,0x2e,0x5b,\n  0x1,0x54,0x6e, 0x3,0x46,0x46, 0x3,0x65,0x60, 0x2,0x65,0x45,\n  0x4,0x5f,0x52, 0x1,0x7a,0x67, 0x1,0x44,0x4a, 0x1,0x46,0x40,\n  0x2,0x21,0x51, 0x3,0x22,0x36, 0x1,0x47,0x68, 0x1,0x47,0x69,\n  0x4,0x22,0x52, 0x1,0x4c,0x5f, 0x4,0x25,0x70, 0x3,0x34,0x79,\n  0x1,0x59,0x5c, 0x5,0x37,0x3d, 0x1,0x68,0x42, 0x3,0x40,0x5f,\n  0x1,0x68,0x43, 0x1,0x68,0x41, 0x3,0x4b,0x53, 0x1,0x44,0x4b,\n  0x4,0x21,0x49, 0x1,0x45,0x32, 0x1,0x45,0x34, 0x1,0x45,0x33,\n  0x2,0x21,0x3b, 0x1,0x45,0x35, 0x1,0x46,0x41, 0x2,0x21,0x52,\n  0x3,0x22,0x38, 0x1,0x46,0x42, 0x3,0x22,0x37, 0x4,0x21,0x72,\n  0x3,0x22,0x39, 0x4,0x22,0x53, 0x3,0x23,0x47, 0x1,0x47,0x6a,\n  0x1,0x47,0x6b, 0x2,0x22,0x2b, 0x3,0x25,0x49, 0x1,0x49,0x68,\n  0x4,0x23,0x62, 0x2,0x23,0x51, 0x4,0x25,0x75, 0x1,0x4c,0x63,\n  0x2,0x26,0x24, 0x4,0x25,0x72, 0x1,0x4c,0x61, 0x1,0x4c,0x62,\n  0x1,0x4c,0x60, 0x2,0x2e,0x5c, 0x3,0x28,0x2e, 0x3,0x28,0x2f,\n  0x3,0x64,0x67, 0x1,0x50,0x58, 0x1,0x50,0x57, 0x1,0x50,0x59,\n  0x1,0x50,0x56, 0x3,0x2b,0x7c, 0x2,0x29,0x62, 0x1,0x4c,0x64,\n  0x1,0x50,0x55, 0x1,0x54,0x6f, 0x1,0x54,0x70, 0x4,0x2c,0x38,\n  0x1,0x54,0x71, 0x3,0x34,0x7b, 0x2,0x34,0x50, 0x3,0x34,0x7c,\n  0x3,0x34,0x7d, 0x4,0x31,0x26, 0x1,0x5e,0x64, 0x2,0x3a,0x76,\n  0x1,0x59,0x5d, 0x3,0x3a,0x53, 0x3,0x3a,0x54, 0x4,0x36,0x79,\n  0x3,0x40,0x60, 0x1,0x63,0x5f, 0x3,0x40,0x61, 0x1,0x68,0x45,\n  0x1,0x68,0x44, 0x2,0x49,0x51, 0x3,0x46,0x48, 0x1,0x6c,0x47,\n  0x1,0x70,0x4d, 0x4,0x4f,0x7b, 0x2,0x61,0x4c, 0x2,0x6d,0x48,\n  0x2,0x6f,0x23, 0x1,0x44,0x4c, 0x1,0x46,0x43, 0x3,0x22,0x3b,\n  0x1,0x46,0x44, 0x2,0x22,0x31, 0x1,0x47,0x6d, 0x1,0x47,0x70,\n  0x3,0x23,0x4b, 0x2,0x22,0x2f, 0x2,0x22,0x2d, 0x1,0x47,0x6f,\n  0x2,0x22,0x30, 0x2,0x22,0x32, 0x2,0x22,0x2c, 0x1,0x47,0x72,\n  0x1,0x47,0x71, 0x1,0x47,0x6e, 0x1,0x47,0x6c, 0x2,0x22,0x2e,\n  0x3,0x23,0x4d, 0x3,0x25,0x55, 0x1,0x49,0x73, 0x4,0x23,0x67,\n  0x3,0x25,0x4c, 0x1,0x49,0x70, 0x2,0x23,0x56, 0x2,0x23,0x59,\n  0x2,0x23,0x58, 0x4,0x23,0x69, 0x1,0x49,0x6a, 0x1,0x49,0x72,\n  0x3,0x25,0x4b, 0x4,0x23,0x6a, 0x1,0x49,0x6f, 0x2,0x23,0x55,\n  0x2,0x23,0x53, 0x1,0x49,0x6e, 0x3,0x25,0x56, 0x3,0x25,0x53,\n  0x3,0x25,0x4e, 0x1,0x49,0x69, 0x1,0x49,0x6c, 0x3,0x25,0x51,\n  0x2,0x23,0x54, 0x2,0x23,0x5b, 0x2,0x23,0x57, 0x1,0x49,0x6d,\n  0x1,0x49,0x71, 0x1,0x49,0x74, 0x2,0x23,0x52, 0x2,0x23,0x5a,\n  0x1,0x49,0x6b, 0x3,0x28,0x41, 0x3,0x28,0x33, 0x1,0x4c,0x69,\n  0x1,0x4c,0x71, 0x3,0x28,0x38, 0x2,0x26,0x30, 0x2,0x26,0x29,\n  0x1,0x4c,0x72, 0x2,0x26,0x34, 0x2,0x26,0x25, 0x2,0x26,0x2c,\n  0x3,0x28,0x45, 0x3,0x28,0x40, 0x1,0x4c,0x68, 0x2,0x26,0x26,\n  0x1,0x4c,0x66, 0x2,0x26,0x2d, 0x2,0x26,0x31, 0x1,0x4c,0x65,\n  0x3,0x28,0x3d, 0x2,0x26,0x32, 0x2,0x26,0x2b, 0x3,0x28,0x37,\n  0x2,0x26,0x2e, 0x3,0x28,0x35, 0x1,0x4c,0x74, 0x1,0x4c,0x6b,\n  0x2,0x26,0x35, 0x2,0x26,0x33, 0x3,0x28,0x3f, 0x1,0x4c,0x70,\n  0x1,0x4c,0x6e, 0x2,0x26,0x2a, 0x1,0x4c,0x6d, 0x2,0x26,0x28,\n  0x2,0x26,0x27, 0x1,0x4c,0x6c, 0x1,0x4c,0x6a, 0x1,0x4c,0x73,\n  0x1,0x4c,0x6f, 0x1,0x4c,0x67, 0x3,0x2c,0x26, 0x2,0x26,0x2f,\n  0x3,0x28,0x46, 0x1,0x50,0x5b, 0x3,0x2c,0x2d, 0x1,0x50,0x62,\n  0x2,0x29,0x70, 0x1,0x50,0x5a, 0x2,0x29,0x68, 0x2,0x29,0x64,\n  0x3,0x2c,0x21, 0x2,0x29,0x74, 0x2,0x29,0x63, 0x3,0x2c,0x2c,\n  0x1,0x50,0x5d, 0x2,0x29,0x6d, 0x1,0x50,0x60, 0x1,0x50,0x63,\n  0x3,0x2c,0x2e, 0x1,0x50,0x5e, 0x2,0x29,0x71, 0x1,0x50,0x61,\n  0x3,0x2c,0x23, 0x1,0x54,0x78, 0x2,0x29,0x77, 0x2,0x29,0x65,\n  0x3,0x2c,0x24, 0x3,0x2c,0x25, 0x2,0x29,0x67, 0x2,0x29,0x6e,\n  0x2,0x29,0x72, 0x2,0x29,0x76, 0x2,0x29,0x73, 0x2,0x29,0x6c,\n  0x2,0x29,0x6f, 0x3,0x2c,0x2b, 0x3,0x2c,0x29, 0x2,0x29,0x69,\n  0x1,0x50,0x65, 0x2,0x29,0x6b, 0x2,0x29,0x6a, 0x2,0x29,0x75,\n  0x1,0x50,0x5c, 0x2,0x29,0x66, 0x1,0x50,0x64, 0x3,0x2c,0x2a,\n  0x1,0x50,0x5f, 0x3,0x2c,0x28, 0x1,0x54,0x7e, 0x2,0x2e,0x64,\n  0x3,0x30,0x40, 0x1,0x54,0x7d, 0x3,0x2c,0x27, 0x4,0x2c,0x40,\n  0x2,0x2e,0x62, 0x4,0x2c,0x3e, 0x1,0x54,0x72, 0x3,0x30,0x4f,\n  0x1,0x54,0x77, 0x3,0x30,0x4a, 0x2,0x2e,0x61, 0x2,0x2e,0x5e,\n  0x2,0x2e,0x63, 0x1,0x54,0x73, 0x2,0x2e,0x5d, 0x3,0x30,0x4e,\n  0x1,0x54,0x76, 0x1,0x54,0x74, 0x3,0x30,0x3e, 0x2,0x2e,0x65,\n  0x1,0x54,0x75, 0x1,0x54,0x79, 0x3,0x30,0x3b, 0x3,0x30,0x45,\n  0x1,0x54,0x7a, 0x3,0x30,0x48, 0x1,0x54,0x7c, 0x3,0x30,0x52,\n  0x4,0x2c,0x39, 0x4,0x2c,0x3d, 0x1,0x54,0x7b, 0x3,0x30,0x3c,\n  0x3,0x35,0x22, 0x3,0x35,0x38, 0x2,0x2e,0x5f, 0x2,0x2e,0x60,\n  0x3,0x30,0x4d, 0x6,0x36,0x57, 0x3,0x30,0x4b, 0x2,0x2e,0x66,\n  0x2,0x34,0x57, 0x1,0x59,0x5e, 0x2,0x3b,0x26, 0x2,0x34,0x56,\n  0x2,0x34,0x69, 0x3,0x35,0x28, 0x3,0x35,0x24, 0x1,0x59,0x64,\n  0x3,0x35,0x31, 0x2,0x34,0x67, 0x3,0x35,0x33, 0x1,0x59,0x63,\n  0x1,0x59,0x5f, 0x2,0x34,0x70, 0x2,0x34,0x60, 0x2,0x34,0x63,\n  0x3,0x35,0x2e, 0x1,0x59,0x67, 0x2,0x34,0x6d, 0x2,0x34,0x65,\n  0x1,0x59,0x60, 0x1,0x59,0x68, 0x3,0x35,0x2a, 0x2,0x34,0x6a,\n  0x2,0x34,0x68, 0x3,0x35,0x2f, 0x3,0x35,0x3b, 0x2,0x34,0x59,\n  0x2,0x34,0x6e, 0x2,0x34,0x62, 0x2,0x34,0x5d, 0x3,0x35,0x3a,\n  0x2,0x34,0x53, 0x2,0x34,0x6f, 0x2,0x34,0x5f, 0x2,0x34,0x52,\n  0x3,0x35,0x39, 0x1,0x59,0x66, 0x2,0x34,0x64, 0x2,0x34,0x71,\n  0x2,0x34,0x61, 0x2,0x34,0x55, 0x2,0x34,0x5a, 0x2,0x34,0x51,\n  0x3,0x35,0x27, 0x1,0x59,0x65, 0x3,0x35,0x3c, 0x2,0x34,0x5e,\n  0x2,0x34,0x5b, 0x1,0x59,0x61, 0x2,0x34,0x54, 0x3,0x35,0x30,\n  0x2,0x34,0x6c, 0x1,0x59,0x62, 0x3,0x35,0x2b, 0x2,0x34,0x5c,\n  0x2,0x34,0x58, 0x3,0x35,0x29, 0x3,0x35,0x34, 0x2,0x34,0x6b,\n  0x3,0x35,0x32, 0xf,0x33,0x73, 0x3,0x35,0x37, 0x3,0x35,0x35,\n  0x1,0x5e,0x65, 0x2,0x3a,0x7d, 0x3,0x3a,0x75, 0x2,0x3a,0x7a,\n  0x2,0x3b,0x2d, 0x2,0x3b,0x21, 0x2,0x3b,0x2e, 0x3,0x3a,0x7c,\n  0x1,0x5e,0x67, 0x3,0x3a,0x63, 0x3,0x3a,0x61, 0x3,0x3a,0x58,\n  0x2,0x3b,0x2a, 0x2,0x3b,0x27, 0x3,0x3a,0x5b, 0x3,0x3a,0x77,\n  0x3,0x3a,0x72, 0x3,0x3a,0x59, 0x3,0x3a,0x60, 0x2,0x3b,0x28,\n  0x2,0x3b,0x2b, 0x2,0x3b,0x2f, 0x3,0x3a,0x7b, 0x2,0x34,0x66,\n  0x2,0x3b,0x31, 0x2,0x42,0x4d, 0x3,0x3a,0x66, 0x1,0x5e,0x68,\n  0x2,0x3b,0x32, 0x2,0x3a,0x78, 0x2,0x3b,0x24, 0x3,0x3a,0x62,\n  0x2,0x3b,0x29, 0x3,0x3a,0x5c, 0x3,0x3a,0x5e, 0x1,0x5e,0x66,\n  0x1,0x5e,0x69, 0x2,0x3b,0x30, 0x2,0x3b,0x33, 0x2,0x3a,0x7c,\n  0x2,0x3a,0x79, 0x3,0x3a,0x73, 0x3,0x3a,0x5a, 0x2,0x3a,0x7b,\n  0x3,0x3a,0x57, 0x3,0x3a,0x7a, 0x2,0x3b,0x22, 0x2,0x3a,0x7e,\n  0x1,0x5e,0x6a, 0x3,0x3a,0x56, 0x2,0x3b,0x2c, 0x3,0x3a,0x79,\n  0x3,0x3a,0x78, 0x2,0x3b,0x23, 0x2,0x3b,0x25, 0x2,0x3a,0x77,\n  0x2,0x42,0x41, 0x2,0x42,0x3f, 0x1,0x63,0x68, 0x1,0x63,0x66,\n  0x2,0x42,0x49, 0x2,0x42,0x40, 0x2,0x42,0x4a, 0x2,0x42,0x46,\n  0x2,0x42,0x3e, 0x2,0x42,0x4c, 0x2,0x42,0x3d, 0x2,0x42,0x44,\n  0x1,0x63,0x65, 0x1,0x63,0x64, 0x1,0x63,0x63, 0x2,0x42,0x42,\n  0x2,0x42,0x47, 0x1,0x63,0x60, 0x1,0x63,0x67, 0x3,0x40,0x67,\n  0x2,0x42,0x3b, 0x3,0x40,0x66, 0x2,0x42,0x45, 0x2,0x42,0x3a,\n  0x2,0x42,0x43, 0x1,0x63,0x61, 0x2,0x42,0x48, 0x2,0x42,0x3c,\n  0x1,0x63,0x62, 0x2,0x42,0x4b, 0x3,0x40,0x64, 0x3,0x3a,0x6b,\n  0x3,0x40,0x6a, 0x3,0x64,0x68, 0x3,0x64,0x69, 0x2,0x49,0x55,\n  0x1,0x68,0x4a, 0x1,0x68,0x49, 0x1,0x68,0x4b, 0x2,0x49,0x61,\n  0x2,0x49,0x57, 0x2,0x49,0x5d, 0x2,0x49,0x52, 0x2,0x49,0x60,\n  0x2,0x49,0x5f, 0x2,0x49,0x63, 0x2,0x49,0x5c, 0x1,0x68,0x46,\n  0x2,0x49,0x5b, 0x1,0x68,0x4c, 0x3,0x46,0x4c, 0x2,0x49,0x54,\n  0x1,0x68,0x47, 0x3,0x46,0x4a, 0x2,0x49,0x62, 0x1,0x68,0x48,\n  0x2,0x49,0x56, 0x2,0x49,0x59, 0x2,0x49,0x5e, 0x2,0x49,0x58,\n  0x2,0x49,0x53, 0x3,0x46,0x4f, 0x3,0x46,0x53, 0x2,0x49,0x5a,\n  0x2,0x4f,0x7c, 0x1,0x6c,0x4b, 0x2,0x50,0x21, 0x2,0x4f,0x7e,\n  0x2,0x50,0x23, 0x2,0x50,0x25, 0x3,0x4b,0x5c, 0x1,0x6c,0x49,\n  0x3,0x4b,0x58, 0x2,0x4f,0x7d, 0x3,0x4b,0x54, 0x2,0x4f,0x7b,\n  0x3,0x4b,0x5e, 0x2,0x50,0x26, 0x2,0x50,0x24, 0x2,0x50,0x22,\n  0x3,0x4b,0x56, 0x2,0x50,0x28, 0x3,0x4b,0x5a, 0x2,0x50,0x27,\n  0x1,0x6c,0x4d, 0x1,0x6c,0x48, 0x3,0x4b,0x5b, 0x1,0x6c,0x4a,\n  0x1,0x6c,0x4c, 0x3,0x4b,0x5d, 0x3,0x4b,0x5f, 0x2,0x50,0x29,\n  0x2,0x56,0x61, 0x3,0x50,0x50, 0x3,0x50,0x53, 0x2,0x56,0x60,\n  0x2,0x56,0x5f, 0x3,0x50,0x51, 0x2,0x56,0x62, 0x2,0x56,0x5b,\n  0x3,0x50,0x4f, 0x2,0x56,0x5c, 0x2,0x56,0x64, 0x2,0x56,0x5d,\n  0x3,0x50,0x54, 0x1,0x70,0x4e, 0x2,0x56,0x66, 0x3,0x50,0x4e,\n  0x2,0x56,0x65, 0x2,0x56,0x5e, 0x3,0x50,0x56, 0x2,0x5c,0x5d,\n  0x1,0x73,0x51, 0x2,0x5c,0x5b, 0x2,0x5c,0x60, 0x2,0x5c,0x5f,\n  0x2,0x56,0x63, 0x3,0x54,0x50, 0x1,0x73,0x50, 0x3,0x54,0x4e,\n  0x2,0x5c,0x5e, 0x2,0x5c,0x5a, 0x2,0x5c,0x62, 0x2,0x5c,0x61,\n  0x1,0x73,0x4f, 0x3,0x54,0x52, 0x2,0x5c,0x5c, 0x3,0x54,0x4f,\n  0x1,0x70,0x4f, 0x3,0x54,0x51, 0x3,0x54,0x53, 0x1,0x76,0x40,\n  0x3,0x5a,0x31, 0x3,0x57,0x61, 0x3,0x57,0x5e, 0x2,0x61,0x4d,\n  0x2,0x65,0x46, 0x2,0x65,0x47, 0x2,0x65,0x48, 0x1,0x79,0x67,\n  0x4,0x63,0x34, 0x3,0x5c,0x36, 0x1,0x79,0x68, 0x3,0x5c,0x39,\n  0x2,0x68,0x6f, 0x3,0x5c,0x3a, 0x2,0x6b,0x56, 0x2,0x6b,0x55,\n  0x3,0x5e,0x29, 0x3,0x5f,0x42, 0x2,0x6d,0x49, 0x2,0x6d,0x4a,\n  0x2,0x6f,0x24, 0x2,0x70,0x35, 0x3,0x60,0x73, 0x1,0x44,0x4d,\n  0x1,0x44,0x4e, 0x4,0x21,0x32, 0x1,0x44,0x4f, 0x1,0x45,0x36,\n  0x1,0x46,0x45, 0x2,0x22,0x33, 0x1,0x47,0x73, 0x1,0x47,0x74,\n  0x1,0x49,0x77, 0x1,0x49,0x78, 0x1,0x49,0x76, 0x1,0x49,0x75,\n  0x1,0x4c,0x75, 0x3,0x28,0x48, 0x4,0x26,0x22, 0x2,0x26,0x36,\n  0x1,0x4c,0x77, 0x1,0x4c,0x76, 0x2,0x26,0x37, 0x4,0x26,0x23,\n  0x3,0x64,0x6a, 0x4,0x28,0x6e, 0x1,0x50,0x66, 0x3,0x2c,0x2f,\n  0x1,0x55,0x21, 0x2,0x2e,0x67, 0x2,0x34,0x73, 0x4,0x31,0x2c,\n  0x1,0x59,0x69, 0x1,0x5e,0x6c, 0x2,0x34,0x72, 0x1,0x5e,0x6b,\n  0x3,0x40,0x71, 0x1,0x68,0x4d, 0x3,0x40,0x72, 0x2,0x49,0x64,\n  0x1,0x70,0x50, 0x3,0x50,0x57, 0x1,0x73,0x52, 0x2,0x5c,0x63,\n  0x3,0x5a,0x34, 0x1,0x79,0x69, 0x3,0x5c,0x3b, 0x1,0x7b,0x5c,\n  0x3,0x21,0x3b, 0x2,0x21,0x53, 0x3,0x22,0x3d, 0x1,0x46,0x46,\n  0x2,0x21,0x54, 0x1,0x47,0x77, 0x3,0x23,0x50, 0x1,0x47,0x75,\n  0x1,0x47,0x76, 0x1,0x47,0x78, 0x4,0x23,0x6f, 0x1,0x49,0x7a,\n  0x1,0x49,0x79, 0x3,0x25,0x5a, 0x2,0x23,0x5c, 0x1,0x49,0x7b,\n  0x4,0x26,0x25, 0x2,0x23,0x5d, 0x2,0x26,0x38, 0x3,0x28,0x4c,\n  0x2,0x26,0x39, 0x3,0x28,0x4a, 0x1,0x4c,0x78, 0x1,0x4c,0x7a,\n  0x1,0x4c,0x7c, 0x1,0x4c,0x79, 0x1,0x4c,0x7d, 0x1,0x4c,0x7b,\n  0x3,0x28,0x4e, 0x3,0x28,0x4b, 0x3,0x28,0x4d, 0x1,0x50,0x6a,\n  0x1,0x50,0x67, 0x1,0x50,0x69, 0x1,0x50,0x6b, 0x1,0x50,0x68,\n  0x2,0x2e,0x68, 0x2,0x29,0x78, 0xf,0x2a,0x39, 0x3,0x2c,0x32,\n  0x2,0x2e,0x6a, 0x2,0x2e,0x69, 0x1,0x55,0x27, 0x4,0x2c,0x46,\n  0x1,0x55,0x23, 0x4,0x2c,0x49, 0x6,0x36,0x66, 0x1,0x55,0x24,\n  0x1,0x55,0x26, 0x1,0x55,0x28, 0x1,0x55,0x25, 0x3,0x30,0x57,\n  0x1,0x55,0x2a, 0x1,0x55,0x29, 0x4,0x2c,0x48, 0x3,0x30,0x56,\n  0x3,0x30,0x55, 0xf,0x2e,0x7e, 0x1,0x59,0x6e, 0x2,0x34,0x75,\n  0x2,0x34,0x74, 0x1,0x59,0x6d, 0x3,0x35,0x41, 0x1,0x59,0x6c,\n  0x1,0x59,0x6b, 0x1,0x59,0x6f, 0x1,0x59,0x6a, 0x3,0x35,0x3f,\n  0x2,0x3b,0x39, 0x2,0x3b,0x36, 0x1,0x5e,0x6e, 0x2,0x3b,0x35,\n  0x2,0x3b,0x3a, 0x4,0x37,0x24, 0x1,0x5e,0x70, 0x2,0x3b,0x38,\n  0x1,0x5e,0x6d, 0x1,0x5e,0x6f, 0x2,0x3b,0x37, 0x3,0x3a,0x7e,\n  0x2,0x42,0x4e, 0x3,0x40,0x74, 0x2,0x42,0x4f, 0x2,0x42,0x50,\n  0x3,0x40,0x75, 0x3,0x40,0x76, 0x3,0x40,0x73, 0x4,0x3c,0x6e,\n  0x1,0x68,0x4e, 0x1,0x68,0x56, 0x2,0x49,0x65, 0x1,0x68,0x50,\n  0x1,0x68,0x54, 0x2,0x49,0x66, 0x1,0x68,0x55, 0x1,0x68,0x51,\n  0x1,0x68,0x52, 0x1,0x68,0x4f, 0x1,0x68,0x53, 0x1,0x6c,0x50,\n  0x2,0x3b,0x34, 0x1,0x6c,0x51, 0x1,0x6c,0x4f, 0x4,0x49,0x44,\n  0x1,0x6c,0x4e, 0x2,0x56,0x67, 0x1,0x70,0x51, 0x2,0x5c,0x64,\n  0x2,0x5c,0x65, 0x3,0x5a,0x35, 0x4,0x5f,0x55, 0x1,0x78,0x31,\n  0x1,0x79,0x6a, 0x3,0x5e,0x2a, 0x1,0x44,0x50, 0x3,0x22,0x3e,\n  0x1,0x47,0x79, 0x3,0x25,0x5e, 0x3,0x25,0x5c, 0x3,0x25,0x5d,\n  0x3,0x28,0x50, 0x1,0x50,0x6c, 0x2,0x2e,0x6b, 0x1,0x55,0x2b,\n  0x3,0x30,0x58, 0x3,0x30,0x59, 0x1,0x59,0x72, 0x1,0x59,0x71,\n  0x1,0x59,0x70, 0x1,0x5e,0x71, 0x1,0x5e,0x72, 0x2,0x3b,0x3b,\n  0x1,0x68,0x57, 0x1,0x70,0x52, 0x1,0x44,0x51, 0x2,0x21,0x3c,\n  0x1,0x45,0x37, 0x2,0x21,0x55, 0x4,0x21,0x73, 0x3,0x22,0x3f,\n  0x2,0x22,0x34, 0x1,0x47,0x7a, 0x4,0x22,0x5c, 0x3,0x23,0x52,\n  0x3,0x28,0x51, 0x1,0x4c,0x7e, 0x3,0x2c,0x34, 0x3,0x3b,0x24,\n  0x2,0x42,0x51, 0x3,0x40,0x78, 0x3,0x65,0x25, 0x1,0x44,0x52,\n  0x4,0x21,0x4b, 0x1,0x45,0x38, 0x2,0x22,0x35, 0x2,0x23,0x5e,\n  0x4,0x26,0x29, 0x2,0x23,0x5f, 0x3,0x25,0x5f, 0x1,0x49,0x7c,\n  0xf,0x25,0x54, 0x3,0x2c,0x35, 0x2,0x3b,0x3c, 0x1,0x5e,0x73,\n  0x2,0x42,0x52, 0x4,0x49,0x49, 0x3,0x54,0x54, 0x1,0x73,0x53,\n  0x1,0x44,0x53, 0x1,0x44,0x67, 0x1,0x45,0x39, 0x2,0x21,0x56,\n  0x1,0x46,0x47, 0x3,0x23,0x54, 0x1,0x4a,0x22, 0x1,0x4a,0x21,\n  0x1,0x49,0x7d, 0x1,0x49,0x7e, 0x2,0x26,0x3a, 0x1,0x4d,0x22,\n  0x1,0x4d,0x23, 0x2,0x26,0x3b, 0x1,0x4d,0x21, 0x3,0x28,0x54,\n  0x3,0x28,0x55, 0x1,0x50,0x70, 0x2,0x29,0x79, 0x1,0x50,0x6f,\n  0x1,0x50,0x6d, 0x1,0x50,0x6e, 0x1,0x55,0x2e, 0x1,0x55,0x2c,\n  0x3,0x30,0x5a, 0x3,0x30,0x5b, 0x2,0x2e,0x6d, 0x1,0x55,0x2d,\n  0x2,0x2e,0x6c, 0x3,0x64,0x6b, 0x1,0x55,0x22, 0x2,0x34,0x76,\n  0x4,0x31,0x35, 0x3,0x35,0x43, 0x1,0x59,0x74, 0x1,0x59,0x75,\n  0x3,0x3b,0x26, 0x3,0x3b,0x25, 0x1,0x59,0x73, 0x3,0x35,0x44,\n  0x1,0x68,0x58, 0x2,0x49,0x67, 0x1,0x6c,0x52, 0x1,0x6c,0x53,\n  0x2,0x50,0x2a, 0x1,0x73,0x54, 0x2,0x61,0x4e, 0x2,0x61,0x4f,\n  0x3,0x5a,0x38, 0x1,0x7a,0x68, 0x2,0x70,0x36, 0x2,0x21,0x2b,\n  0x1,0x45,0x3a, 0x4,0x22,0x5f, 0x1,0x44,0x54, 0x2,0x21,0x58,\n  0x2,0x21,0x57, 0x4,0x21,0x76, 0x3,0x64,0x6c, 0x3,0x23,0x55,\n  0x1,0x47,0x7b, 0x2,0x22,0x37, 0x2,0x22,0x38, 0x2,0x22,0x36,\n  0x4,0x22,0x60, 0x2,0x22,0x39, 0x3,0x23,0x5a, 0xf,0x22,0x47,\n  0x3,0x25,0x61, 0x3,0x25,0x66, 0x2,0x23,0x67, 0x4,0x23,0x7a,\n  0x2,0x23,0x62, 0x2,0x23,0x64, 0x2,0x23,0x66, 0x2,0x23,0x63,\n  0x1,0x4a,0x26, 0x2,0x23,0x60, 0x3,0x25,0x62, 0x2,0x23,0x61,\n  0x1,0x4a,0x23, 0x1,0x4a,0x24, 0x2,0x23,0x65, 0x2,0x23,0x68,\n  0x1,0x4a,0x25, 0x2,0x23,0x69, 0xf,0x23,0x7c, 0xf,0x23,0x78,\n  0x3,0x25,0x63, 0x2,0x26,0x49, 0x3,0x28,0x5d, 0x2,0x26,0x43,\n  0x2,0x26,0x3e, 0x1,0x4d,0x25, 0x2,0x26,0x46, 0x2,0x26,0x44,\n  0x2,0x26,0x3d, 0x2,0x26,0x4a, 0x2,0x26,0x4d, 0x2,0x26,0x48,\n  0x2,0x26,0x41, 0x1,0x4d,0x27, 0x2,0x26,0x47, 0x1,0x4d,0x28,\n  0x2,0x26,0x42, 0x2,0x26,0x45, 0x2,0x26,0x3c, 0x2,0x26,0x40,\n  0x2,0x26,0x4c, 0x1,0x4d,0x29, 0x4,0x26,0x2f, 0x1,0x4d,0x2a,\n  0x3,0x28,0x5e, 0x2,0x26,0x3f, 0x2,0x26,0x4b, 0x1,0x4d,0x24,\n  0x1,0x4d,0x26, 0x3,0x28,0x5c, 0x3,0x28,0x5f, 0x3,0x28,0x57,\n  0x4,0x26,0x34, 0x3,0x28,0x58, 0x2,0x2a,0x2c, 0x2,0x2a,0x25,\n  0x2,0x2a,0x2b, 0x2,0x2a,0x24, 0x2,0x2a,0x26, 0x2,0x29,0x7e,\n  0x2,0x29,0x7c, 0x3,0x2c,0x3f, 0x2,0x2a,0x2d, 0x2,0x2a,0x2a,\n  0x2,0x29,0x7a, 0x3,0x2c,0x3b, 0x1,0x50,0x72, 0x2,0x2a,0x28,\n  0x2,0x2a,0x29, 0x3,0x64,0x6d, 0x2,0x2a,0x27, 0x2,0x29,0x7d,\n  0x2,0x29,0x7b, 0x1,0x50,0x71, 0x2,0x2a,0x23, 0x2,0x2a,0x21,\n  0x3,0x2c,0x3c, 0x3,0x2c,0x42, 0x2,0x2a,0x22, 0x2,0x2a,0x2e,\n  0x3,0x2c,0x3e, 0x3,0x2c,0x41, 0x3,0x2c,0x43, 0x3,0x2c,0x3d,\n  0x1,0x55,0x33, 0x3,0x30,0x63, 0x1,0x55,0x32, 0x3,0x30,0x5f,\n  0x2,0x2e,0x6e, 0x1,0x55,0x2f, 0x2,0x2e,0x70, 0x3,0x30,0x64,\n  0x1,0x55,0x34, 0x2,0x2e,0x71, 0x4,0x2c,0x60, 0x3,0x30,0x61,\n  0x1,0x55,0x37, 0x3,0x30,0x62, 0x1,0x55,0x35, 0x2,0x2e,0x72,\n  0x2,0x2a,0x2f, 0x2,0x2e,0x74, 0x3,0x30,0x5e, 0x1,0x55,0x31,\n  0x4,0x2c,0x5c, 0x1,0x55,0x30, 0x4,0x2c,0x61, 0x2,0x2e,0x6f,\n  0x2,0x2e,0x73, 0x1,0x55,0x36, 0x1,0x59,0x77, 0x1,0x59,0x76,\n  0x3,0x35,0x4b, 0x3,0x35,0x48, 0x3,0x35,0x47, 0x2,0x34,0x78,\n  0x2,0x34,0x7c, 0x2,0x34,0x7e, 0x1,0x59,0x78, 0x2,0x35,0x23,\n  0x3,0x35,0x51, 0x1,0x59,0x7c, 0x2,0x35,0x25, 0x3,0x35,0x52,\n  0x1,0x59,0x7e, 0x3,0x35,0x4f, 0x1,0x59,0x7a, 0x1,0x5a,0x24,\n  0x3,0x35,0x55, 0x1,0x5a,0x21, 0x2,0x34,0x7a, 0x1,0x59,0x79,\n  0x3,0x3b,0x2b, 0x2,0x34,0x79, 0x2,0x34,0x77, 0x2,0x35,0x27,\n  0x2,0x34,0x7b, 0x3,0x35,0x46, 0x1,0x59,0x7b, 0x2,0x35,0x26,\n  0x1,0x5a,0x22, 0x2,0x35,0x22, 0x2,0x35,0x21, 0x1,0x5a,0x23,\n  0x2,0x34,0x7d, 0x1,0x59,0x7d, 0x3,0x35,0x4e, 0x6,0x3e,0x76,\n  0x3,0x35,0x4a, 0x2,0x35,0x28, 0x3,0x35,0x54, 0x2,0x35,0x24,\n  0x2,0x3b,0x4b, 0x2,0x3b,0x52, 0x2,0x3b,0x47, 0x1,0x5e,0x76,\n  0x2,0x3b,0x43, 0x2,0x3b,0x53, 0x2,0x3b,0x3d, 0x2,0x3b,0x50,\n  0x2,0x3b,0x4e, 0x2,0x3b,0x48, 0x3,0x3b,0x36, 0x2,0x3b,0x51,\n  0x2,0x3b,0x4a, 0x3,0x3b,0x28, 0x2,0x3b,0x42, 0x2,0x3b,0x54,\n  0x2,0x3b,0x40, 0x2,0x3b,0x4d, 0x2,0x3b,0x3e, 0x3,0x3b,0x27,\n  0x2,0x3b,0x55, 0x3,0x3b,0x37, 0x1,0x5e,0x77, 0x3,0x3b,0x2a,\n  0x2,0x3b,0x4f, 0x2,0x42,0x55, 0x2,0x3b,0x41, 0x1,0x5e,0x74,\n  0x3,0x3b,0x2e, 0x2,0x3b,0x45, 0x3,0x3b,0x34, 0x1,0x5e,0x75,\n  0x2,0x3b,0x44, 0x2,0x3b,0x49, 0x3,0x3b,0x33, 0x4,0x37,0x35,\n  0x2,0x3b,0x46, 0x4,0x37,0x2f, 0x3,0x3b,0x31, 0x2,0x3b,0x4c,\n  0x3,0x3b,0x2d, 0x2,0x42,0x59, 0x4,0x3c,0x79, 0x3,0x41,0x21,\n  0x4,0x3c,0x7b, 0x2,0x42,0x5c, 0x2,0x42,0x54, 0x3,0x40,0x7c,\n  0x2,0x42,0x56, 0x3,0x40,0x7a, 0x2,0x42,0x5b, 0x2,0x42,0x5a,\n  0x1,0x63,0x69, 0x4,0x3c,0x75, 0x2,0x3b,0x3f, 0x2,0x42,0x58,\n  0x3,0x40,0x79, 0x3,0x40,0x7d, 0x1,0x63,0x6a, 0x4,0x3c,0x74,\n  0x2,0x42,0x53, 0x2,0x42,0x57, 0x4,0x3c,0x7c, 0x4,0x3c,0x78,\n  0x3,0x64,0x6e, 0x2,0x49,0x6e, 0x3,0x46,0x5c, 0x2,0x49,0x75,\n  0x2,0x49,0x6c, 0x3,0x46,0x54, 0x2,0x49,0x73, 0x2,0x49,0x6a,\n  0x2,0x49,0x72, 0x2,0x49,0x76, 0x2,0x49,0x69, 0x2,0x49,0x6d,\n  0x2,0x49,0x68, 0x3,0x46,0x56, 0x1,0x68,0x59, 0x4,0x43,0x2c,\n  0x2,0x49,0x6b, 0x1,0x68,0x5a, 0x2,0x49,0x71, 0x2,0x49,0x70,\n  0x2,0x49,0x6f, 0x3,0x46,0x59, 0x3,0x46,0x5a, 0x2,0x49,0x74,\n  0x3,0x64,0x6f, 0x3,0x4b,0x65, 0x3,0x4b,0x66, 0x3,0x4b,0x63,\n  0x2,0x50,0x2e, 0x2,0x50,0x30, 0x1,0x6c,0x55, 0x2,0x50,0x31,\n  0x3,0x4b,0x6b, 0x2,0x50,0x2c, 0x3,0x4b,0x67, 0x2,0x50,0x2b,\n  0x2,0x50,0x35, 0x3,0x4b,0x69, 0x2,0x50,0x33, 0x1,0x6c,0x54,\n  0x2,0x50,0x36, 0x2,0x50,0x2d, 0x2,0x50,0x32, 0x2,0x50,0x34,\n  0x2,0x50,0x2f, 0x3,0x4b,0x6a, 0x3,0x4b,0x68, 0x3,0x64,0x70,\n  0x3,0x50,0x58, 0x2,0x56,0x6b, 0x2,0x56,0x70, 0x2,0x56,0x6a,\n  0x2,0x56,0x6f, 0x3,0x50,0x5b, 0x2,0x56,0x68, 0x2,0x56,0x72,\n  0x2,0x56,0x6e, 0x2,0x56,0x73, 0x2,0x56,0x6d, 0x2,0x56,0x69,\n  0x2,0x56,0x71, 0x3,0x50,0x5a, 0x2,0x56,0x74, 0x2,0x56,0x6c,\n  0x3,0x64,0x71, 0x2,0x5c,0x66, 0x1,0x73,0x58, 0x3,0x54,0x57,\n  0x1,0x73,0x56, 0x3,0x54,0x59, 0x1,0x73,0x55, 0x1,0x73,0x57,\n  0x3,0x54,0x55, 0x3,0x64,0x72, 0x2,0x61,0x50, 0x3,0x57,0x62,\n  0x2,0x64,0x3e, 0x2,0x65,0x49, 0x3,0x5a,0x39, 0x2,0x68,0x70,\n  0x2,0x68,0x71, 0x3,0x5c,0x3d, 0x1,0x79,0x6b, 0x3,0x5c,0x3c,\n  0x2,0x6b,0x57, 0x3,0x5c,0x3e, 0x1,0x7a,0x69, 0x4,0x66,0x3b,\n  0x2,0x6b,0x58, 0x3,0x5e,0x2d, 0x2,0x6d,0x4c, 0x1,0x7b,0x5e,\n  0x3,0x5f,0x43, 0x1,0x7b,0x5d, 0x2,0x6d,0x4b, 0x1,0x7c,0x35,\n  0x3,0x60,0x30, 0x2,0x6f,0x25, 0x4,0x6b,0x68, 0x4,0x6a,0x46,\n  0x3,0x21,0x3c, 0x4,0x21,0x2c, 0x1,0x44,0x55, 0x1,0x47,0x7c,\n  0x2,0x22,0x3a, 0x2,0x23,0x6a, 0x1,0x4b,0x56, 0x1,0x5a,0x25,\n  0x3,0x35,0x57, 0x3,0x4b,0x6c, 0x1,0x44,0x56, 0x1,0x46,0x4a,\n  0x1,0x46,0x49, 0x1,0x46,0x48, 0x4,0x22,0x63, 0x1,0x4a,0x27,\n  0x1,0x55,0x38, 0x2,0x42,0x5d, 0x1,0x44,0x57, 0x1,0x44,0x58,\n  0x1,0x44,0x59, 0x1,0x45,0x3b, 0x3,0x25,0x67, 0x3,0x28,0x60,\n  0x1,0x50,0x73, 0x4,0x2c,0x64, 0x2,0x2a,0x30, 0x3,0x2c,0x45,\n  0x3,0x2c,0x44, 0x1,0x5e,0x78, 0x1,0x44,0x5a, 0x2,0x21,0x3d,\n  0x3,0x21,0x63, 0x4,0x21,0x4c, 0x1,0x46,0x4b, 0x1,0x46,0x4c,\n  0x2,0x21,0x59, 0x1,0x47,0x7d, 0x5,0x22,0x5c, 0x3,0x23,0x5c,\n  0x3,0x25,0x68, 0x2,0x23,0x6b, 0x3,0x25,0x6b, 0x1,0x4a,0x28,\n  0x4,0x24,0x23, 0x2,0x23,0x6c, 0x1,0x4d,0x30, 0x3,0x28,0x62,\n  0x3,0x28,0x61, 0x2,0x26,0x4f, 0x1,0x4d,0x2e, 0x1,0x4d,0x2d,\n  0x2,0x26,0x4e, 0x1,0x4d,0x2b, 0x2,0x26,0x50, 0x1,0x4d,0x2c,\n  0x1,0x4d,0x2f, 0x1,0x50,0x74, 0x3,0x2c,0x46, 0x1,0x50,0x76,\n  0x2,0x2a,0x34, 0x2,0x2a,0x31, 0x2,0x2a,0x32, 0x2,0x2a,0x33,\n  0x2,0x2a,0x35, 0x1,0x50,0x75, 0x2,0x2e,0x76, 0x2,0x2e,0x75,\n  0x3,0x30,0x66, 0x1,0x55,0x3a, 0x3,0x30,0x69, 0x1,0x55,0x39,\n  0x3,0x30,0x68, 0x3,0x30,0x6a, 0x3,0x30,0x67, 0x3,0x35,0x5b,\n  0x1,0x5a,0x28, 0x2,0x35,0x2a, 0x3,0x35,0x59, 0x1,0x5a,0x27,\n  0x1,0x5a,0x29, 0x1,0x5a,0x26, 0x3,0x35,0x58, 0x3,0x35,0x5a,\n  0x1,0x5e,0x7a, 0x2,0x35,0x29, 0x5,0x37,0x7c, 0x1,0x5e,0x7b,\n  0x2,0x3b,0x57, 0x3,0x39,0x79, 0x1,0x5e,0x7c, 0x2,0x3b,0x56,\n  0x1,0x5e,0x79, 0x3,0x3b,0x3a, 0x3,0x3b,0x3b, 0x3,0x3b,0x3d,\n  0x2,0x42,0x60, 0x2,0x42,0x62, 0x1,0x63,0x6b, 0x2,0x42,0x61,\n  0x2,0x42,0x5f, 0x2,0x42,0x5e, 0x4,0x3d,0x2a, 0x4,0x43,0x35,\n  0x3,0x46,0x5d, 0x2,0x49,0x79, 0x1,0x68,0x5f, 0x1,0x68,0x5d,\n  0x4,0x43,0x30, 0x1,0x68,0x5e, 0x2,0x49,0x77, 0x2,0x49,0x78,\n  0x3,0x4b,0x6d, 0x1,0x68,0x5b, 0x2,0x50,0x3a, 0x2,0x50,0x38,\n  0x3,0x4b,0x70, 0x1,0x6c,0x57, 0x2,0x50,0x39, 0x1,0x6c,0x58,\n  0x1,0x6c,0x56, 0x1,0x68,0x5c, 0xf,0x4e,0x5e, 0x3,0x64,0x73,\n  0x2,0x56,0x77, 0x2,0x56,0x75, 0x2,0x56,0x76, 0x2,0x50,0x37,\n  0x2,0x5c,0x68, 0x1,0x73,0x59, 0x2,0x5c,0x67, 0x2,0x61,0x51,\n  0x2,0x61,0x52, 0x2,0x56,0x78, 0x2,0x65,0x4a, 0x3,0x66,0x77,\n  0x1,0x44,0x5b, 0x1,0x46,0x4d, 0x1,0x48,0x21, 0x2,0x22,0x3b,\n  0x1,0x47,0x7e, 0x3,0x28,0x63, 0x1,0x4d,0x31, 0x1,0x63,0x6c,\n  0x3,0x21,0x3d, 0x1,0x45,0x3c, 0x1,0x46,0x4e, 0x1,0x50,0x77,\n  0x1,0x5e,0x7d, 0x3,0x21,0x3e, 0x2,0x21,0x5a, 0x3,0x22,0x47,\n  0x2,0x21,0x5b, 0x3,0x22,0x48, 0x2,0x22,0x3c, 0x3,0x66,0x78,\n  0x1,0x4a,0x2a, 0x2,0x23,0x70, 0x2,0x23,0x6e, 0x1,0x4a,0x2b,\n  0x2,0x23,0x6d, 0x2,0x23,0x6f, 0x2,0x23,0x71, 0x4,0x24,0x28,\n  0x1,0x4a,0x29, 0x3,0x25,0x6e, 0x3,0x25,0x6d, 0x1,0x4d,0x35,\n  0x1,0x4d,0x36, 0x1,0x4d,0x33, 0x3,0x28,0x65, 0x3,0x28,0x67,\n  0x1,0x4d,0x32, 0x2,0x2a,0x39, 0x1,0x4d,0x34, 0x3,0x28,0x68,\n  0x1,0x50,0x78, 0x3,0x2c,0x48, 0x2,0x2a,0x38, 0x2,0x2a,0x3a,\n  0x2,0x2a,0x37, 0x2,0x2a,0x3b, 0x1,0x50,0x79, 0x1,0x55,0x3d,\n  0x2,0x2e,0x77, 0x3,0x30,0x6c, 0x2,0x2e,0x79, 0x1,0x55,0x3b,\n  0x2,0x2e,0x7a, 0x1,0x55,0x3c, 0x2,0x2e,0x78, 0x3,0x30,0x6b,\n  0x2,0x2a,0x36, 0x2,0x35,0x2b, 0x2,0x35,0x2e, 0x2,0x35,0x2f,\n  0x2,0x35,0x2c, 0x1,0x5a,0x2d, 0x1,0x5a,0x2c, 0x1,0x5a,0x2a,\n  0x1,0x5a,0x2b, 0x2,0x35,0x2d, 0x3,0x35,0x61, 0x3,0x35,0x60,\n  0x3,0x3b,0x3f, 0x1,0x5a,0x2e, 0x3,0x3b,0x40, 0x3,0x3b,0x3e,\n  0x1,0x5f,0x21, 0x1,0x5f,0x22, 0x6,0x48,0x45, 0x1,0x5f,0x23,\n  0x2,0x42,0x63, 0x2,0x42,0x65, 0x2,0x42,0x67, 0x1,0x63,0x6e,\n  0x1,0x63,0x6d, 0x1,0x5e,0x7e, 0x2,0x42,0x66, 0x2,0x42,0x64,\n  0x3,0x64,0x74, 0x2,0x49,0x7d, 0x3,0x46,0x61, 0x3,0x46,0x60,\n  0x2,0x49,0x7b, 0x2,0x4a,0x23, 0x1,0x68,0x60, 0x2,0x4a,0x24,\n  0x2,0x4a,0x21, 0x1,0x68,0x61, 0x2,0x49,0x7c, 0x2,0x49,0x7a,\n  0x2,0x4a,0x22, 0x1,0x6c,0x5a, 0x2,0x50,0x3c, 0x2,0x49,0x7e,\n  0x1,0x6c,0x5c, 0x2,0x50,0x3d, 0x1,0x6c,0x5b, 0x1,0x6c,0x5e,\n  0x2,0x50,0x3e, 0x1,0x6c,0x59, 0x1,0x6c,0x5d, 0x2,0x56,0x7d,\n  0x2,0x56,0x7b, 0x2,0x56,0x7a, 0x2,0x56,0x7c, 0x2,0x56,0x79,\n  0x3,0x50,0x5c, 0x4,0x5b,0x21, 0x1,0x78,0x33, 0x3,0x64,0x75,\n  0x2,0x68,0x72, 0x2,0x68,0x73, 0x3,0x5c,0x3f, 0x2,0x6b,0x59,\n  0x2,0x6d,0x4d, 0x1,0x7d,0x22, 0x3,0x21,0x3f, 0x3,0x23,0x61,\n  0x1,0x4d,0x37, 0x1,0x4a,0x2c, 0x3,0x28,0x69, 0x3,0x28,0x6b,\n  0x1,0x50,0x7a, 0x3,0x2c,0x4c, 0x3,0x2c,0x4b, 0x3,0x30,0x6e,\n  0x1,0x44,0x5c, 0x1,0x45,0x3d, 0x4,0x21,0x4d, 0x1,0x46,0x4f,\n  0x2,0x22,0x3d, 0x3,0x25,0x6f, 0x1,0x4a,0x2d, 0x2,0x23,0x72,\n  0x3,0x28,0x6d, 0x2,0x2a,0x3c, 0x1,0x50,0x7b, 0x1,0x68,0x62,\n  0x1,0x44,0x5d, 0x3,0x21,0x64, 0x3,0x22,0x49, 0x3,0x23,0x62,\n  0x1,0x48,0x22, 0xf,0x22,0x4e, 0x3,0x3b,0x42, 0x1,0x63,0x6f,\n  0x1,0x44,0x5e, 0x1,0x45,0x3e, 0x1,0x45,0x3f, 0x1,0x46,0x51,\n  0x1,0x46,0x50, 0x4,0x22,0x6b, 0x2,0x22,0x3e, 0x1,0x48,0x23,\n  0x4,0x22,0x6c, 0x2,0x23,0x73, 0x3,0x25,0x71, 0x1,0x4a,0x2e,\n  0x3,0x28,0x6e, 0x2,0x26,0x52, 0x2,0x26,0x53, 0x2,0x26,0x54,\n  0x3,0x28,0x70, 0x1,0x4d,0x38, 0x1,0x4d,0x39, 0x2,0x26,0x51,\n  0x1,0x4d,0x3a, 0x4,0x29,0x2c, 0x4,0x2c,0x70, 0x1,0x50,0x7c,\n  0x2,0x2a,0x3d, 0x3,0x2c,0x4d, 0x2,0x2e,0x7c, 0x1,0x55,0x3e,\n  0x3,0x30,0x6f, 0x2,0x2e,0x7b, 0x3,0x35,0x62, 0x1,0x5a,0x2f,\n  0x2,0x35,0x30, 0x1,0x5a,0x30, 0x2,0x35,0x31, 0x3,0x35,0x63,\n  0x3,0x3b,0x47, 0x3,0x3b,0x45, 0x1,0x5f,0x24, 0x4,0x37,0x45,\n  0x3,0x3b,0x44, 0x4,0x3d,0x30, 0x2,0x42,0x68, 0xf,0x41,0x3f,\n  0x3,0x41,0x22, 0x2,0x4a,0x26, 0x2,0x4a,0x25, 0x1,0x68,0x63,\n  0x4,0x49,0x5e, 0x1,0x6c,0x5f, 0x2,0x50,0x3f, 0x1,0x70,0x53,\n  0x2,0x56,0x7e, 0x1,0x73,0x5a, 0x3,0x57,0x63, 0x1,0x7b,0x5f,\n  0x2,0x6f,0x27, 0x3,0x21,0x40, 0x3,0x21,0x41, 0x3,0x22,0x4a,\n  0x3,0x23,0x51, 0x2,0x26,0x55, 0x3,0x28,0x71, 0x2,0x2a,0x3e,\n  0x1,0x5a,0x31, 0x2,0x3b,0x58, 0x1,0x63,0x70, 0x3,0x41,0x23,\n  0x3,0x50,0x5e, 0xf,0x54,0x43, 0x3,0x57,0x64, 0x1,0x76,0x41,\n  0x3,0x61,0x64, 0x3,0x21,0x42, 0x1,0x4a,0x30, 0x3,0x25,0x72,\n  0x1,0x4a,0x2f, 0x1,0x50,0x7d, 0x3,0x2c,0x50, 0x2,0x2e,0x7d,\n  0x1,0x5a,0x33, 0x1,0x5d,0x29, 0x1,0x5a,0x34, 0x1,0x5a,0x32,\n  0x1,0x5f,0x25, 0x3,0x41,0x24, 0x2,0x4a,0x27, 0x1,0x68,0x64,\n  0x1,0x6c,0x60, 0x3,0x5f,0x45, 0x2,0x21,0x2c, 0x2,0x22,0x3f,\n  0x4,0x22,0x6d, 0x2,0x23,0x75, 0x1,0x4a,0x31, 0x2,0x23,0x74,\n  0x1,0x4a,0x32, 0x4,0x24,0x2c, 0x1,0x4d,0x3e, 0x2,0x26,0x58,\n  0x2,0x26,0x57, 0x1,0x4d,0x3d, 0x1,0x4d,0x3b, 0x1,0x4d,0x3c,\n  0x2,0x26,0x56, 0x3,0x28,0x76, 0x3,0x28,0x75, 0x1,0x51,0x21,\n  0x2,0x2a,0x3f, 0x1,0x51,0x24, 0x1,0x50,0x7e, 0x1,0x51,0x26,\n  0x1,0x51,0x22, 0x1,0x51,0x23, 0x1,0x51,0x25, 0x4,0x29,0x31,\n  0x3,0x30,0x70, 0x3,0x30,0x72, 0x1,0x55,0x41, 0x1,0x55,0x40,\n  0x1,0x55,0x3f, 0x3,0x30,0x71, 0x3,0x64,0x76, 0x2,0x35,0x33,\n  0x1,0x5a,0x35, 0x1,0x5a,0x38, 0x1,0x5a,0x36, 0x3,0x64,0x77,\n  0x2,0x35,0x32, 0x1,0x5a,0x3b, 0x4,0x31,0x53, 0x1,0x5a,0x37,\n  0x2,0x35,0x34, 0x1,0x5a,0x3a, 0x1,0x5a,0x39, 0x4,0x31,0x52,\n  0x4,0x31,0x57, 0x4,0x37,0x4a, 0x2,0x3b,0x5a, 0x2,0x3b,0x59,\n  0x3,0x3b,0x4b, 0x1,0x5f,0x28, 0x1,0x5f,0x26, 0x1,0x5f,0x27,\n  0x2,0x3b,0x5b, 0x1,0x63,0x71, 0x2,0x42,0x6a, 0x1,0x63,0x72,\n  0x2,0x42,0x69, 0x4,0x3d,0x34, 0x4,0x43,0x3f, 0x2,0x50,0x40,\n  0x3,0x46,0x63, 0x3,0x46,0x64, 0x1,0x6c,0x62, 0x2,0x4a,0x28,\n  0x1,0x6c,0x61, 0x3,0x4b,0x72, 0x1,0x68,0x65, 0x3,0x64,0x78,\n  0x2,0x57,0x22, 0x2,0x57,0x21, 0x1,0x73,0x5b, 0x2,0x5c,0x69,\n  0x2,0x65,0x4b, 0x2,0x68,0x74, 0x2,0x68,0x75, 0x3,0x5e,0x2f,\n  0x1,0x45,0x40, 0x4,0x21,0x36, 0x1,0x46,0x52, 0x3,0x22,0x4d,\n  0x4,0x22,0x71, 0x2,0x21,0x5c, 0x3,0x22,0x4c, 0x5,0x22,0x66,\n  0x1,0x4a,0x34, 0x1,0x4a,0x36, 0x3,0x25,0x78, 0x2,0x22,0x42,\n  0x2,0x23,0x78, 0x2,0x23,0x77, 0x2,0x23,0x76, 0x3,0x23,0x66,\n  0x2,0x22,0x41, 0x2,0x22,0x40, 0x1,0x48,0x25, 0x1,0x4a,0x35,\n  0x1,0x4a,0x33, 0x1,0x48,0x24, 0x3,0x23,0x67, 0x3,0x23,0x69,\n  0x3,0x25,0x77, 0x1,0x4d,0x3f, 0x2,0x26,0x59, 0x3,0x25,0x7b,\n  0x1,0x4d,0x40, 0x2,0x23,0x7d, 0x4,0x26,0x50, 0x2,0x24,0x21,\n  0x2,0x23,0x7e, 0x2,0x26,0x5a, 0x3,0x25,0x76, 0x3,0x25,0x74,\n  0x2,0x23,0x7a, 0x3,0x28,0x7e, 0x1,0x4a,0x3a, 0x1,0x4a,0x38,\n  0x3,0x25,0x7c, 0x2,0x23,0x79, 0x2,0x23,0x7b, 0x2,0x24,0x23,\n  0x3,0x26,0x22, 0x1,0x4a,0x37, 0x3,0x26,0x21, 0x2,0x23,0x7c,\n  0x2,0x24,0x27, 0x1,0x4d,0x42, 0x3,0x25,0x7d, 0x2,0x24,0x24,\n  0x1,0x4a,0x39, 0x3,0x26,0x23, 0x2,0x24,0x22, 0x2,0x24,0x25,\n  0x3,0x25,0x7a, 0x1,0x4d,0x41, 0x3,0x25,0x75, 0x1,0x4d,0x43,\n  0x2,0x24,0x26, 0x3,0x28,0x78, 0x3,0x29,0x22, 0x2,0x26,0x6e,\n  0x2,0x26,0x61, 0x2,0x26,0x5f, 0x2,0x26,0x6d, 0x2,0x26,0x68,\n  0x1,0x51,0x2b, 0x1,0x4d,0x44, 0x2,0x26,0x69, 0x2,0x26,0x6c,\n  0x1,0x51,0x27, 0x2,0x26,0x6b, 0x1,0x4d,0x45, 0x1,0x4d,0x4a,\n  0x1,0x4d,0x48, 0x2,0x26,0x62, 0x4,0x29,0x36, 0x2,0x26,0x5d,\n  0x2,0x26,0x64, 0x1,0x4d,0x4f, 0x2,0x26,0x6f, 0x1,0x51,0x28,\n  0x2,0x26,0x65, 0x4,0x26,0x4f, 0x1,0x51,0x29, 0x1,0x4d,0x4b,\n  0x2,0x26,0x67, 0x3,0x2c,0x5a, 0x2,0x2a,0x4e, 0x1,0x51,0x2a,\n  0x2,0x26,0x5c, 0x1,0x4d,0x4c, 0x1,0x51,0x2c, 0x1,0x4d,0x4d,\n  0x1,0x4d,0x49, 0x1,0x4d,0x4e, 0x2,0x26,0x66, 0x2,0x26,0x5b,\n  0x2,0x26,0x6a, 0x1,0x4d,0x46, 0x3,0x28,0x77, 0x3,0x2c,0x5b,\n  0x2,0x26,0x5e, 0x2,0x26,0x63, 0x2,0x26,0x60, 0x1,0x4d,0x47,\n  0x3,0x28,0x7a, 0x2,0x2a,0x40, 0x4,0x29,0x45, 0x2,0x2a,0x41,\n  0x3,0x29,0x21, 0x2,0x2a,0x4b, 0x2,0x2f,0x23, 0x2,0x2a,0x4c,\n  0x1,0x51,0x32, 0x2,0x2a,0x4f, 0x2,0x2a,0x45, 0x1,0x51,0x31,\n  0x2,0x2a,0x47, 0x4,0x29,0x3f, 0x2,0x2a,0x48, 0x3,0x2c,0x60,\n  0x3,0x30,0x79, 0x2,0x2a,0x4a, 0x1,0x51,0x2d, 0x3,0x2c,0x56,\n  0x3,0x30,0x73, 0x1,0x55,0x45, 0x3,0x2c,0x57, 0x3,0x2c,0x5d,\n  0x2,0x2a,0x46, 0x2,0x2a,0x42, 0x1,0x55,0x46, 0x3,0x30,0x7e,\n  0x4,0x29,0x3e, 0x2,0x2a,0x50, 0x1,0x55,0x42, 0x2,0x2f,0x21,\n  0x2,0x2a,0x49, 0x3,0x2c,0x54, 0x2,0x2e,0x7e, 0x2,0x2a,0x44,\n  0x2,0x2a,0x4d, 0x3,0x2c,0x5f, 0x3,0x2c,0x61, 0x1,0x51,0x30,\n  0x1,0x55,0x43, 0x1,0x51,0x36, 0x1,0x55,0x44, 0x2,0x2a,0x51,\n  0x2,0x2f,0x22, 0x1,0x51,0x2f, 0x1,0x55,0x48, 0x1,0x51,0x35,\n  0x1,0x51,0x34, 0x1,0x51,0x33, 0x1,0x55,0x47, 0x2,0x2a,0x52,\n  0x1,0x55,0x49, 0x1,0x51,0x2e, 0x4,0x29,0x4b, 0x2,0x2a,0x43,\n  0x3,0x30,0x7a, 0x3,0x30,0x78, 0x3,0x30,0x7b, 0x3,0x2c,0x5c,\n  0x3,0x30,0x76, 0x1,0x5a,0x3c, 0x2,0x2f,0x26, 0x2,0x2f,0x28,\n  0x4,0x2d,0x25, 0x2,0x2f,0x2a, 0x1,0x55,0x4a, 0x1,0x55,0x50,\n  0x2,0x35,0x37, 0x2,0x2f,0x2e, 0x2,0x2f,0x25, 0x1,0x5a,0x3e,\n  0x2,0x35,0x35, 0x3,0x31,0x22, 0x1,0x55,0x4f, 0x1,0x55,0x4d,\n  0x2,0x2f,0x30, 0x4,0x2d,0x2d, 0x2,0x35,0x36, 0x4,0x2d,0x2c,\n  0x2,0x2f,0x27, 0x3,0x31,0x25, 0x1,0x55,0x4e, 0x2,0x2f,0x2b,\n  0x1,0x55,0x51, 0x2,0x2f,0x2d, 0x3,0x35,0x68, 0x3,0x30,0x74,\n  0x1,0x55,0x4c, 0x2,0x2f,0x2c, 0x2,0x2f,0x2f, 0x2,0x2f,0x29,\n  0x3,0x31,0x27, 0x1,0x55,0x4b, 0x1,0x5a,0x3f, 0x3,0x35,0x71,\n  0x2,0x2f,0x24, 0x1,0x5a,0x3d, 0x3,0x35,0x72, 0x4,0x31,0x6b,\n  0x3,0x31,0x23, 0x3,0x31,0x28, 0x1,0x5a,0x40, 0x3,0x31,0x21,\n  0x3,0x35,0x6f, 0x3,0x31,0x26, 0x2,0x35,0x39, 0x2,0x35,0x42,\n  0x1,0x5f,0x2b, 0x3,0x3b,0x54, 0x1,0x5a,0x42, 0x1,0x5a,0x47,\n  0x1,0x5f,0x2c, 0x2,0x35,0x44, 0x1,0x5a,0x4e, 0x2,0x3b,0x5d,\n  0x2,0x35,0x3a, 0x1,0x5a,0x46, 0x1,0x5a,0x49, 0x1,0x5a,0x44,\n  0x2,0x35,0x38, 0x2,0x35,0x46, 0x2,0x35,0x49, 0x2,0x3b,0x6c,\n  0x4,0x31,0x68, 0x2,0x35,0x47, 0x2,0x3b,0x61, 0x1,0x5a,0x45,\n  0x1,0x5a,0x4c, 0x1,0x5a,0x50, 0x2,0x35,0x41, 0x2,0x3b,0x5c,\n  0x2,0x35,0x45, 0x1,0x5a,0x41, 0x2,0x3b,0x5e, 0x2,0x35,0x48,\n  0x2,0x3b,0x60, 0x2,0x35,0x3d, 0x3,0x35,0x6a, 0x1,0x5f,0x29,\n  0x3,0x3b,0x56, 0x2,0x35,0x3b, 0x2,0x35,0x3c, 0x1,0x5a,0x4b,\n  0x3,0x3b,0x55, 0x3,0x35,0x6e, 0x1,0x5a,0x4a, 0x2,0x35,0x3f,\n  0x1,0x5a,0x4f, 0x2,0x35,0x43, 0x1,0x5a,0x48, 0x2,0x35,0x40,\n  0x3,0x35,0x79, 0x1,0x5a,0x4d, 0x1,0x5f,0x2d, 0x1,0x5f,0x2a,\n  0x2,0x3b,0x5f, 0x3,0x3b,0x58, 0x2,0x35,0x3e, 0x3,0x3b,0x59,\n  0x1,0x5a,0x43, 0x3,0x35,0x76, 0x3,0x35,0x78, 0x3,0x3b,0x5a,\n  0x3,0x3b,0x4d, 0x3,0x35,0x74, 0x1,0x5f,0x32, 0x1,0x5f,0x36,\n  0x2,0x3b,0x63, 0x1,0x63,0x77, 0x1,0x5f,0x34, 0x2,0x3b,0x67,\n  0x1,0x5f,0x38, 0x2,0x42,0x6b, 0x2,0x3b,0x69, 0x1,0x63,0x79,\n  0x1,0x5f,0x30, 0x1,0x5f,0x33, 0x2,0x3b,0x6a, 0x3,0x3b,0x5e,\n  0x2,0x3b,0x6b, 0x2,0x3b,0x71, 0x1,0x5f,0x3a, 0x1,0x63,0x7a,\n  0x4,0x3d,0x3d, 0x2,0x3b,0x6d, 0x2,0x3b,0x72, 0x2,0x3b,0x66,\n  0x1,0x64,0x26, 0x3,0x3b,0x4f, 0x1,0x63,0x7b, 0x1,0x5f,0x39,\n  0x2,0x3b,0x64, 0x2,0x3b,0x73, 0x3,0x3b,0x51, 0x1,0x64,0x25,\n  0x1,0x5f,0x37, 0x1,0x63,0x74, 0x2,0x3b,0x70, 0x3,0x3b,0x5d,\n  0x1,0x5f,0x3b, 0x2,0x3b,0x68, 0x2,0x3b,0x62, 0x1,0x5f,0x31,\n  0x2,0x3b,0x65, 0x5,0x3f,0x30, 0x2,0x3b,0x6e, 0x3,0x41,0x2b,\n  0x1,0x63,0x73, 0x1,0x63,0x78, 0x1,0x5f,0x2e, 0x2,0x3b,0x6f,\n  0x3,0x3b,0x61, 0x1,0x63,0x76, 0x3,0x3b,0x62, 0x3,0x3b,0x63,\n  0x3,0x3b,0x50, 0x1,0x5f,0x2f, 0x3,0x64,0x79, 0x1,0x64,0x24,\n  0x2,0x4a,0x2a, 0x2,0x42,0x76, 0x3,0x41,0x29, 0x2,0x42,0x6e,\n  0x2,0x4a,0x29, 0x4,0x3d,0x39, 0x2,0x42,0x72, 0x2,0x42,0x74,\n  0x3,0x41,0x27, 0x3,0x41,0x2c, 0x2,0x42,0x71, 0x3,0x46,0x6f,\n  0x1,0x64,0x23, 0x4,0x3d,0x38, 0x2,0x42,0x70, 0x1,0x64,0x27,\n  0x3,0x46,0x6e, 0x6,0x52,0x64, 0x3,0x41,0x28, 0x2,0x4a,0x39,\n  0x3,0x46,0x6c, 0x3,0x41,0x2e, 0x1,0x64,0x22, 0x1,0x68,0x67,\n  0x2,0x42,0x77, 0x2,0x4a,0x2b, 0x3,0x46,0x6d, 0x3,0x41,0x2a,\n  0x1,0x63,0x7e, 0x2,0x42,0x6f, 0x2,0x42,0x73, 0x1,0x68,0x66,\n  0x1,0x63,0x75, 0x2,0x42,0x6c, 0x2,0x42,0x6d, 0x1,0x68,0x68,\n  0x1,0x63,0x7d, 0x1,0x64,0x21, 0x1,0x63,0x7c, 0x2,0x42,0x75,\n  0x3,0x64,0x7a, 0x2,0x4a,0x2f, 0x2,0x4a,0x30, 0x2,0x4a,0x35,\n  0x1,0x6c,0x67, 0x2,0x4a,0x3c, 0x3,0x4b,0x73, 0x1,0x68,0x6e,\n  0x3,0x4b,0x7e, 0x1,0x68,0x6d, 0x2,0x4a,0x37, 0x3,0x4b,0x74,\n  0x1,0x6c,0x66, 0x2,0x4a,0x2c, 0x1,0x68,0x6c, 0x3,0x46,0x71,\n  0x2,0x4a,0x3b, 0x1,0x68,0x6a, 0x1,0x68,0x6b, 0x3,0x4b,0x7c,\n  0x2,0x4a,0x38, 0x2,0x50,0x51, 0x1,0x6c,0x64, 0x1,0x5f,0x35,\n  0x3,0x46,0x72, 0x2,0x4a,0x3a, 0x1,0x6c,0x6b, 0x2,0x4a,0x32,\n  0x4,0x49,0x6f, 0x1,0x6c,0x65, 0x3,0x46,0x6a, 0x1,0x6c,0x6a,\n  0x2,0x4a,0x2d, 0x2,0x4a,0x31, 0x2,0x4a,0x2e, 0x2,0x4a,0x34,\n  0x1,0x68,0x6f, 0x1,0x6c,0x63, 0x1,0x68,0x69, 0x3,0x4c,0x21,\n  0x2,0x50,0x43, 0x2,0x4a,0x36, 0x3,0x46,0x68, 0x1,0x6c,0x69,\n  0x3,0x46,0x73, 0x1,0x6c,0x6c, 0x7,0x22,0x71, 0x2,0x4a,0x33,\n  0x3,0x46,0x6b, 0x1,0x6c,0x68, 0x2,0x50,0x42, 0x5,0x4d,0x2a,\n  0x3,0x4c,0x23, 0x3,0x46,0x74, 0x3,0x4c,0x24, 0x3,0x4b,0x77,\n  0x2,0x50,0x47, 0x1,0x70,0x57, 0x2,0x50,0x41, 0x2,0x57,0x2e,\n  0x2,0x50,0x50, 0x1,0x6c,0x70, 0x3,0x4b,0x7a, 0x1,0x6c,0x6e,\n  0x1,0x70,0x55, 0x2,0x50,0x4d, 0x2,0x50,0x49, 0x1,0x6c,0x74,\n  0x3,0x4b,0x76, 0x2,0x57,0x25, 0x3,0x50,0x68, 0x3,0x4c,0x28,\n  0x3,0x50,0x67, 0x1,0x6c,0x72, 0x2,0x50,0x48, 0x3,0x4c,0x29,\n  0x2,0x57,0x23, 0x3,0x4c,0x25, 0x2,0x50,0x4c, 0x4,0x50,0x3b,\n  0x2,0x50,0x4f, 0x2,0x50,0x46, 0x3,0x4b,0x79, 0x1,0x6c,0x73,\n  0x4,0x50,0x37, 0x3,0x4b,0x75, 0x1,0x6c,0x6d, 0x2,0x57,0x24,\n  0x1,0x70,0x56, 0x2,0x50,0x4e, 0x1,0x6c,0x6f, 0x1,0x6c,0x71,\n  0x2,0x50,0x4b, 0x1,0x6c,0x75, 0x2,0x50,0x4a, 0x2,0x50,0x45,\n  0x2,0x50,0x44, 0x1,0x70,0x54, 0x2,0x50,0x52, 0x2,0x57,0x27,\n  0x2,0x5c,0x6b, 0x1,0x70,0x59, 0x3,0x50,0x61, 0x2,0x57,0x2d,\n  0x3,0x50,0x63, 0x2,0x57,0x2b, 0x3,0x50,0x6a, 0x2,0x5c,0x6c,\n  0x3,0x50,0x64, 0x1,0x70,0x5a, 0x2,0x57,0x2c, 0x3,0x50,0x66,\n  0x2,0x57,0x29, 0x1,0x73,0x5d, 0x2,0x5c,0x6a, 0x3,0x50,0x6c,\n  0x2,0x57,0x26, 0x2,0x57,0x28, 0x1,0x73,0x5e, 0x1,0x70,0x5c,\n  0x1,0x73,0x5c, 0x1,0x70,0x5b, 0x1,0x73,0x60, 0x2,0x57,0x2a,\n  0x1,0x70,0x58, 0x3,0x50,0x62, 0x3,0x50,0x65, 0x3,0x50,0x6b,\n  0x3,0x66,0x79, 0x4,0x5b,0x2b, 0x2,0x61,0x5b, 0x4,0x56,0x33,\n  0x2,0x61,0x53, 0x3,0x54,0x61, 0x3,0x54,0x5f, 0x3,0x54,0x5c,\n  0x3,0x54,0x5e, 0x3,0x54,0x5d, 0x2,0x5c,0x72, 0x2,0x61,0x54,\n  0x2,0x5c,0x6e, 0x4,0x56,0x32, 0x3,0x54,0x5b, 0x1,0x76,0x42,\n  0x2,0x5c,0x70, 0x2,0x5c,0x6f, 0x1,0x73,0x5f, 0x2,0x5c,0x6d,\n  0x2,0x5c,0x71, 0x2,0x61,0x5c, 0x2,0x61,0x58, 0x2,0x61,0x5a,\n  0x4,0x5f,0x60, 0x2,0x61,0x55, 0x2,0x61,0x56, 0x4,0x5f,0x61,\n  0x2,0x61,0x59, 0x2,0x61,0x57, 0x1,0x78,0x34, 0x3,0x57,0x65,\n  0x1,0x78,0x37, 0x1,0x78,0x36, 0x1,0x78,0x35, 0x1,0x79,0x6c,\n  0x2,0x68,0x76, 0x1,0x79,0x6d, 0x2,0x65,0x4c, 0x1,0x7a,0x6a,\n  0x2,0x6b,0x5a, 0x1,0x7a,0x6b, 0x1,0x7b,0x60, 0x1,0x7c,0x36,\n  0x2,0x6f,0x28, 0x3,0x5f,0x46, 0x2,0x6f,0x29, 0x2,0x6f,0x2a,\n  0x3,0x61,0x3e, 0x2,0x72,0x2a, 0x1,0x45,0x41, 0x2,0x21,0x5d,\n  0x1,0x46,0x53, 0x1,0x48,0x27, 0x1,0x48,0x28, 0x1,0x48,0x26,\n  0x3,0x23,0x6b, 0x1,0x48,0x29, 0x1,0x4a,0x3c, 0x1,0x4a,0x3b,\n  0x3,0x26,0x25, 0x2,0x26,0x70, 0x1,0x4d,0x51, 0x1,0x4d,0x50,\n  0x3,0x2c,0x63, 0x2,0x2f,0x31, 0x1,0x5a,0x51, 0x1,0x5a,0x52,\n  0x4,0x31,0x6e, 0x4,0x31,0x70, 0x3,0x3b,0x64, 0x1,0x5f,0x3c,\n  0x2,0x42,0x78, 0x1,0x64,0x28, 0x1,0x64,0x29, 0x2,0x42,0x7a,\n  0x2,0x42,0x7c, 0x2,0x42,0x7b, 0x4,0x3d,0x43, 0x2,0x4a,0x3e,\n  0x3,0x46,0x76, 0x2,0x4a,0x3d, 0x1,0x68,0x70, 0x2,0x4a,0x3f,\n  0x3,0x46,0x75, 0x2,0x50,0x53, 0x1,0x6c,0x76, 0x3,0x4c,0x2c,\n  0x1,0x70,0x5d, 0x3,0x50,0x6d, 0x1,0x73,0x61, 0x1,0x76,0x43,\n  0x1,0x73,0x62, 0x3,0x5f,0x48, 0x1,0x45,0x42, 0x3,0x21,0x65,\n  0x3,0x21,0x66, 0x3,0x22,0x4e, 0x2,0x24,0x28, 0x3,0x26,0x28,\n  0x3,0x26,0x29, 0x2,0x26,0x71, 0x1,0x4d,0x53, 0x1,0x4d,0x52,\n  0x1,0x4d,0x54, 0x1,0x51,0x37, 0x2,0x2a,0x53, 0x2,0x2a,0x54,\n  0x3,0x31,0x29, 0x2,0x2f,0x32, 0x1,0x55,0x52, 0x1,0x5a,0x53,\n  0x1,0x5f,0x3d, 0x2,0x3b,0x74, 0x1,0x45,0x43, 0x4,0x21,0x37,\n  0x1,0x44,0x5f, 0x1,0x45,0x44, 0x3,0x22,0x50, 0x2,0x21,0x5e,\n  0x1,0x46,0x57, 0x1,0x46,0x56, 0x1,0x46,0x54, 0x1,0x46,0x55,\n  0x3,0x23,0x6f, 0x1,0x48,0x2c, 0x2,0x22,0x49, 0x2,0x22,0x4b,\n  0x1,0x48,0x2b, 0x2,0x22,0x43, 0x3,0x23,0x6c, 0x2,0x22,0x44,\n  0x3,0x23,0x6d, 0x2,0x22,0x4a, 0x2,0x22,0x46, 0x2,0x22,0x48,\n  0x1,0x48,0x2a, 0x2,0x22,0x45, 0x2,0x22,0x4c, 0x2,0x22,0x47,\n  0x3,0x23,0x6e, 0xf,0x22,0x51, 0x1,0x4a,0x43, 0x1,0x4a,0x4c,\n  0x1,0x4a,0x4a, 0x2,0x24,0x32, 0x2,0x24,0x2f, 0x2,0x24,0x37,\n  0x1,0x4a,0x48, 0x2,0x24,0x38, 0x3,0x26,0x39, 0x1,0x4a,0x41,\n  0x2,0x24,0x35, 0x3,0x26,0x2e, 0x1,0x4a,0x47, 0x2,0x24,0x31,\n  0x2,0x24,0x30, 0x1,0x4a,0x45, 0x2,0x24,0x36, 0x1,0x4a,0x46,\n  0x1,0x4d,0x55, 0x1,0x4a,0x40, 0x2,0x24,0x33, 0x3,0x26,0x2a,\n  0x2,0x24,0x29, 0x1,0x4a,0x3d, 0x3,0x26,0x37, 0x1,0x4a,0x50,\n  0x2,0x24,0x2e, 0x2,0x24,0x34, 0x1,0x4a,0x42, 0x1,0x4a,0x44,\n  0x3,0x26,0x2f, 0x2,0x24,0x2a, 0x3,0x26,0x36, 0x2,0x24,0x2b,\n  0x2,0x24,0x2c, 0x4,0x24,0x39, 0x1,0x4a,0x4f, 0x1,0x4a,0x49,\n  0x1,0x4a,0x4e, 0x2,0x24,0x2d, 0x1,0x4a,0x4d, 0x1,0x4a,0x3f,\n  0x1,0x4a,0x3e, 0x1,0x4a,0x4b, 0x3,0x26,0x35, 0x4,0x24,0x3c,\n  0x3,0x26,0x33, 0x3,0x26,0x34, 0x3,0x26,0x38, 0x3,0x26,0x31,\n  0x3,0x64,0x7b, 0xf,0x24,0x39, 0x3,0x26,0x32, 0x3,0x29,0x31,\n  0x3,0x29,0x2a, 0x1,0x4d,0x63, 0x2,0x26,0x7d, 0x2,0x26,0x76,\n  0x1,0x4d,0x5e, 0x1,0x4d,0x71, 0x2,0x26,0x72, 0x2,0x26,0x79,\n  0x2,0x26,0x7b, 0x2,0x26,0x7e, 0x1,0x4d,0x6c, 0x3,0x29,0x26,\n  0x2,0x26,0x7a, 0x2,0x26,0x73, 0x1,0x4d,0x6a, 0x2,0x26,0x77,\n  0x3,0x29,0x28, 0x2,0x27,0x21, 0x1,0x4d,0x5b, 0x3,0x29,0x25,\n  0x2,0x26,0x7c, 0x1,0x4d,0x65, 0x1,0x4d,0x64, 0x2,0x26,0x75,\n  0x1,0x4d,0x59, 0x3,0x29,0x34, 0x3,0x29,0x32, 0x1,0x4d,0x5a,\n  0xf,0x27,0x30, 0x1,0x4d,0x58, 0x3,0x29,0x33, 0x1,0x4d,0x70,\n  0x1,0x4d,0x68, 0x1,0x4d,0x62, 0x1,0x4d,0x56, 0x2,0x26,0x78,\n  0x1,0x4d,0x61, 0x1,0x4d,0x57, 0x1,0x4d,0x69, 0x1,0x4d,0x72,\n  0x2,0x2a,0x55, 0x1,0x4d,0x66, 0x2,0x26,0x74, 0x1,0x4d,0x5c,\n  0x1,0x4d,0x5f, 0x1,0x4d,0x60, 0x3,0x29,0x2e, 0x1,0x4d,0x6e,\n  0x1,0x4d,0x6f, 0x1,0x4d,0x6d, 0x1,0x4d,0x67, 0x1,0x4d,0x6b,\n  0x1,0x4d,0x5d, 0x1,0x51,0x38, 0x3,0x29,0x30, 0x3,0x29,0x37,\n  0x3,0x29,0x35, 0x3,0x29,0x36, 0x3,0x29,0x2f, 0x3,0x29,0x29,\n  0x3,0x2c,0x6d, 0x2,0x2a,0x5b, 0x1,0x51,0x44, 0x1,0x51,0x3c,\n  0x1,0x51,0x3e, 0x1,0x51,0x43, 0x2,0x2a,0x67, 0x1,0x51,0x41,\n  0x2,0x2f,0x33, 0x1,0x55,0x53, 0x1,0x51,0x46, 0x2,0x2a,0x58,\n  0x2,0x2a,0x60, 0x1,0x51,0x42, 0x2,0x2a,0x5f, 0x2,0x2a,0x5c,\n  0x2,0x2a,0x64, 0x2,0x2a,0x66, 0x1,0x51,0x3b, 0x1,0x51,0x3f,\n  0x1,0x51,0x45, 0x1,0x55,0x55, 0x2,0x2a,0x61, 0x1,0x51,0x3d,\n  0x1,0x51,0x48, 0x2,0x2a,0x5a, 0x3,0x2c,0x6f, 0x3,0x2c,0x70,\n  0x5,0x29,0x45, 0x1,0x51,0x40, 0x1,0x55,0x54, 0x1,0x51,0x3a,\n  0x4,0x29,0x59, 0x2,0x2a,0x57, 0x2,0x2a,0x5e, 0x2,0x2a,0x56,\n  0x2,0x2a,0x59, 0x2,0x2a,0x5d, 0x2,0x2f,0x34, 0x1,0x51,0x47,\n  0x4,0x29,0x51, 0x2,0x2a,0x62, 0x2,0x2a,0x63, 0x2,0x2a,0x65,\n  0x1,0x51,0x39, 0x3,0x2c,0x6c, 0x3,0x31,0x32, 0x3,0x31,0x33,\n  0x3,0x2c,0x6b, 0x3,0x2c,0x6e, 0x4,0x29,0x5b, 0x1,0x55,0x63,\n  0x2,0x2f,0x40, 0x1,0x55,0x61, 0x1,0x55,0x62, 0x2,0x2f,0x36,\n  0x2,0x2f,0x46, 0x3,0x31,0x2c, 0x1,0x55,0x58, 0x3,0x31,0x2f,\n  0x3,0x31,0x35, 0x2,0x35,0x4a, 0x2,0x2f,0x48, 0x2,0x2f,0x42,\n  0x3,0x31,0x38, 0x2,0x2f,0x39, 0x3,0x31,0x37, 0x2,0x2f,0x4b,\n  0x2,0x2f,0x3c, 0x1,0x55,0x5e, 0x2,0x35,0x61, 0x2,0x2f,0x3f,\n  0x1,0x55,0x60, 0x1,0x55,0x57, 0x3,0x31,0x3c, 0x2,0x2f,0x4d,\n  0x2,0x2f,0x41, 0x1,0x55,0x5a, 0x2,0x2f,0x3a, 0x2,0x2f,0x37,\n  0x2,0x2f,0x38, 0x1,0x55,0x5b, 0x2,0x2f,0x47, 0x2,0x2f,0x4e,\n  0x1,0x55,0x5d, 0x2,0x2f,0x3e, 0x2,0x2f,0x3d, 0x1,0x55,0x65,\n  0x1,0x55,0x64, 0x1,0x55,0x56, 0x1,0x55,0x5c, 0x1,0x55,0x5f,\n  0x2,0x2f,0x4a, 0x3,0x31,0x2e, 0x3,0x31,0x39, 0x2,0x2f,0x44,\n  0x1,0x55,0x59, 0x2,0x2f,0x35, 0x2,0x2f,0x4c, 0x2,0x2f,0x43,\n  0x2,0x2f,0x45, 0x2,0x2f,0x49, 0x3,0x31,0x30, 0x3,0x31,0x3b,\n  0x3,0x31,0x36, 0x3,0x64,0x7c, 0x3,0x64,0x7d, 0x2,0x35,0x4b,\n  0x3,0x36,0x31, 0x1,0x5a,0x5b, 0x1,0x5a,0x6f, 0x1,0x5a,0x6e,\n  0x3,0x36,0x27, 0x1,0x5a,0x63, 0x3,0x36,0x29, 0x2,0x35,0x5d,\n  0x2,0x35,0x59, 0x2,0x35,0x56, 0x2,0x35,0x68, 0x1,0x5a,0x5e,\n  0x1,0x5a,0x56, 0x3,0x36,0x26, 0x3,0x36,0x32, 0x2,0x35,0x5b,\n  0x1,0x5f,0x4d, 0x1,0x5a,0x5a, 0x2,0x35,0x63, 0x3,0x36,0x22,\n  0x1,0x5a,0x70, 0x1,0x5a,0x6d, 0x2,0x35,0x5f, 0x2,0x35,0x4e,\n  0x3,0x35,0x7c, 0x3,0x36,0x2b, 0x1,0x5a,0x6c, 0x2,0x35,0x65,\n  0x2,0x35,0x4d, 0x1,0x5a,0x61, 0x1,0x5a,0x65, 0x2,0x35,0x64,\n  0x3,0x36,0x23, 0x2,0x35,0x57, 0x1,0x5a,0x66, 0x1,0x5a,0x60,\n  0x2,0x35,0x4c, 0x3,0x35,0x7d, 0x1,0x5f,0x3f, 0x2,0x35,0x67,\n  0x2,0x35,0x55, 0x1,0x5a,0x6b, 0x2,0x35,0x58, 0x2,0x35,0x66,\n  0x1,0x5a,0x6a, 0x3,0x36,0x24, 0x2,0x3b,0x75, 0x4,0x31,0x77,\n  0x1,0x5a,0x57, 0x2,0x35,0x53, 0x1,0x5a,0x5c, 0x1,0x5a,0x67,\n  0x4,0x31,0x78, 0x1,0x5a,0x62, 0x2,0x35,0x5c, 0x2,0x35,0x52,\n  0x2,0x35,0x50, 0x2,0x35,0x62, 0x1,0x5a,0x54, 0x1,0x5a,0x68,\n  0x1,0x5a,0x58, 0x1,0x5f,0x3e, 0x2,0x35,0x60, 0x1,0x5a,0x59,\n  0x4,0x32,0x23, 0x1,0x5a,0x55, 0x1,0x5a,0x64, 0x1,0x5a,0x5f,\n  0x1,0x5a,0x5d, 0x2,0x35,0x54, 0x1,0x5a,0x69, 0x2,0x35,0x51,\n  0x2,0x35,0x5e, 0x2,0x35,0x5a, 0x2,0x3b,0x77, 0x2,0x3b,0x76,\n  0x3,0x36,0x2d, 0x3,0x64,0x7e, 0x3,0x36,0x2e, 0x2,0x35,0x4f,\n  0x2,0x3c,0x29, 0x3,0x3b,0x71, 0x1,0x5f,0x41, 0x3,0x3b,0x70,\n  0x2,0x3c,0x2f, 0x2,0x3b,0x7c, 0x2,0x3c,0x2c, 0x2,0x42,0x7d,\n  0x1,0x5f,0x44, 0x2,0x3c,0x30, 0x2,0x3c,0x33, 0x1,0x5f,0x43,\n  0x2,0x3c,0x21, 0x2,0x3c,0x32, 0x2,0x3c,0x31, 0x1,0x5f,0x45,\n  0x2,0x3b,0x78, 0x1,0x5f,0x40, 0x1,0x5f,0x48, 0x3,0x3b,0x73,\n  0x1,0x5f,0x46, 0x2,0x3c,0x2e, 0x4,0x37,0x71, 0x2,0x3c,0x24,\n  0x1,0x5f,0x4a, 0x2,0x3c,0x35, 0x2,0x3c,0x2d, 0x2,0x3c,0x36,\n  0x1,0x5f,0x52, 0x1,0x5f,0x50, 0x2,0x3c,0x2b, 0x2,0x3c,0x2a,\n  0x3,0x3b,0x67, 0x2,0x3c,0x28, 0x2,0x3c,0x22, 0x1,0x5f,0x49,\n  0x3,0x3b,0x66, 0x1,0x5f,0x47, 0x2,0x2f,0x3b, 0x2,0x3b,0x79,\n  0x3,0x3b,0x68, 0x2,0x43,0x3d, 0x2,0x3b,0x7a, 0x1,0x5f,0x42,\n  0x1,0x5f,0x4f, 0x2,0x43,0x21, 0x4,0x37,0x60, 0x1,0x5f,0x4b,\n  0x1,0x5f,0x4c, 0x2,0x3b,0x7b, 0x2,0x3c,0x34, 0x2,0x42,0x7e,\n  0x2,0x3c,0x25, 0x2,0x3b,0x7e, 0x1,0x5f,0x4e, 0x2,0x3c,0x26,\n  0x2,0x3c,0x23, 0x3,0x3b,0x72, 0x3,0x3b,0x6d, 0x1,0x5f,0x53,\n  0x4,0x37,0x6f, 0x3,0x3b,0x6f, 0x3,0x65,0x21, 0x1,0x64,0x38,\n  0x3,0x41,0x49, 0x3,0x41,0x32, 0x2,0x43,0x24, 0x2,0x43,0x37,\n  0x2,0x43,0x3c, 0x2,0x43,0x30, 0x1,0x64,0x34, 0x2,0x43,0x41,\n  0x1,0x64,0x31, 0x2,0x43,0x22, 0x3,0x41,0x3a, 0x2,0x43,0x23,\n  0x1,0x64,0x2a, 0x1,0x64,0x33, 0x2,0x43,0x2a, 0x1,0x64,0x36,\n  0x1,0x64,0x37, 0x2,0x43,0x2b, 0x3,0x41,0x38, 0x2,0x43,0x38,\n  0x2,0x43,0x3e, 0x1,0x64,0x32, 0x3,0x41,0x3e, 0x1,0x64,0x2c,\n  0x2,0x43,0x29, 0x2,0x43,0x25, 0x2,0x43,0x40, 0x2,0x43,0x2e,\n  0x2,0x43,0x2f, 0x2,0x43,0x26, 0x2,0x43,0x3a, 0x2,0x43,0x31,\n  0x2,0x43,0x3b, 0x2,0x43,0x33, 0x3,0x41,0x3d, 0x1,0x64,0x2d,\n  0x2,0x4a,0x40, 0x1,0x64,0x30, 0x1,0x64,0x2e, 0x2,0x43,0x3f,\n  0x2,0x43,0x36, 0x2,0x43,0x32, 0x3,0x41,0x36, 0x3,0x41,0x33,\n  0x2,0x43,0x27, 0x1,0x68,0x7a, 0x2,0x43,0x35, 0x1,0x64,0x35,\n  0x2,0x43,0x2d, 0x3,0x41,0x34, 0x2,0x43,0x2c, 0x3,0x41,0x48,\n  0x3,0x47,0x25, 0x3,0x41,0x42, 0x1,0x64,0x2f, 0x1,0x64,0x2b,\n  0x2,0x4a,0x55, 0x2,0x43,0x39, 0x2,0x43,0x34, 0x2,0x43,0x28,\n  0x3,0x41,0x44, 0x3,0x41,0x45, 0x3,0x66,0x76, 0x2,0x4a,0x50,\n  0x3,0x46,0x78, 0x2,0x4a,0x41, 0x2,0x4a,0x4c, 0x3,0x47,0x28,\n  0x2,0x4a,0x53, 0x1,0x68,0x78, 0x1,0x5f,0x51, 0x2,0x4a,0x51,\n  0x1,0x68,0x73, 0x3,0x46,0x7e, 0x3,0x47,0x24, 0x3,0x46,0x7a,\n  0x1,0x68,0x72, 0x2,0x4a,0x58, 0x4,0x43,0x5d, 0x2,0x4a,0x42,\n  0x2,0x4a,0x4f, 0x2,0x4a,0x43, 0x2,0x4a,0x4e, 0x1,0x68,0x76,\n  0x2,0x4a,0x52, 0x2,0x3c,0x27, 0x3,0x47,0x21, 0x4,0x43,0x5e,\n  0x3,0x47,0x2a, 0x2,0x4a,0x59, 0x2,0x4a,0x4a, 0x1,0x68,0x79,\n  0x2,0x50,0x61, 0x1,0x6c,0x77, 0x3,0x47,0x23, 0x2,0x4a,0x57,\n  0x2,0x4a,0x56, 0x1,0x68,0x7b, 0x2,0x50,0x54, 0x1,0x6c,0x78,\n  0x2,0x50,0x55, 0x3,0x47,0x22, 0x2,0x4a,0x46, 0x2,0x4a,0x47,\n  0x2,0x4a,0x44, 0x2,0x4a,0x49, 0x2,0x4a,0x45, 0x2,0x4a,0x5a,\n  0x1,0x68,0x75, 0x1,0x6c,0x79, 0x1,0x68,0x77, 0x1,0x68,0x7c,\n  0x3,0x46,0x7b, 0x2,0x4a,0x48, 0x3,0x47,0x29, 0x2,0x4a,0x54,\n  0x3,0x4c,0x2d, 0x3,0x47,0x26, 0x2,0x4a,0x4d, 0x3,0x4c,0x35,\n  0x2,0x50,0x58, 0x3,0x4c,0x38, 0x1,0x68,0x71, 0x1,0x6c,0x7c,\n  0x2,0x57,0x35, 0x2,0x50,0x5d, 0x2,0x50,0x5c, 0x2,0x50,0x5e,\n  0x3,0x4c,0x30, 0x3,0x4c,0x2f, 0x2,0x50,0x5b, 0x1,0x6c,0x7d,\n  0x3,0x4c,0x3b, 0x1,0x6d,0x25, 0x1,0x6d,0x22, 0x3,0x4c,0x31,\n  0x1,0x6d,0x23, 0x2,0x50,0x56, 0x2,0x50,0x59, 0x2,0x50,0x63,\n  0x1,0x6d,0x2b, 0x1,0x6d,0x29, 0x3,0x4c,0x2e, 0x2,0x50,0x5a,\n  0x2,0x3b,0x7d, 0x1,0x6c,0x7a, 0x2,0x50,0x60, 0x2,0x50,0x57,\n  0x3,0x4c,0x3e, 0x1,0x6d,0x2c, 0x2,0x50,0x5f, 0x1,0x68,0x74,\n  0x1,0x6d,0x21, 0x2,0x4a,0x4b, 0x3,0x4c,0x3f, 0x3,0x4c,0x34,\n  0x1,0x6d,0x24, 0x3,0x4c,0x3d, 0x1,0x6d,0x28, 0x1,0x6d,0x2a,\n  0x1,0x6d,0x27, 0x1,0x6d,0x26, 0x3,0x4c,0x3a, 0x1,0x6c,0x7e,\n  0x2,0x50,0x62, 0x1,0x6c,0x7b, 0x1,0x6d,0x2d, 0x3,0x4c,0x39,\n  0x3,0x65,0x22, 0x3,0x4c,0x37, 0x1,0x70,0x61, 0x1,0x70,0x62,\n  0x2,0x57,0x34, 0x1,0x70,0x6b, 0x1,0x70,0x68, 0x3,0x50,0x70,\n  0x1,0x70,0x5f, 0x1,0x70,0x66, 0x2,0x57,0x36, 0x1,0x70,0x64,\n  0x1,0x70,0x5e, 0x3,0x4c,0x32, 0x1,0x70,0x65, 0x3,0x50,0x77,\n  0x2,0x57,0x33, 0x1,0x73,0x64, 0x1,0x70,0x60, 0x5,0x54,0x5e,\n  0x1,0x70,0x67, 0x1,0x73,0x63, 0x2,0x57,0x32, 0x2,0x57,0x31,\n  0x3,0x50,0x76, 0x1,0x70,0x69, 0x3,0x50,0x6f, 0x1,0x70,0x6a,\n  0x3,0x50,0x79, 0x2,0x57,0x30, 0x2,0x57,0x2f, 0x1,0x73,0x65,\n  0x2,0x57,0x39, 0x1,0x70,0x63, 0x2,0x57,0x37, 0x3,0x50,0x75,\n  0x3,0x54,0x64, 0x1,0x73,0x66, 0x3,0x54,0x67, 0x1,0x73,0x6b,\n  0x2,0x5c,0x75, 0x2,0x5c,0x77, 0x3,0x57,0x6b, 0x1,0x73,0x68,\n  0x3,0x57,0x6d, 0x2,0x5c,0x78, 0x2,0x5c,0x74, 0x3,0x57,0x6c,\n  0x2,0x5c,0x76, 0x1,0x73,0x69, 0x1,0x73,0x6c, 0x3,0x54,0x69,\n  0x2,0x5c,0x73, 0x1,0x73,0x67, 0x1,0x73,0x6a, 0x1,0x76,0x45,\n  0x2,0x57,0x38, 0x1,0x76,0x44, 0x7,0x3f,0x62, 0x3,0x57,0x6a,\n  0x1,0x76,0x4a, 0x2,0x61,0x60, 0x3,0x57,0x70, 0x1,0x76,0x48,\n  0x1,0x76,0x49, 0x2,0x61,0x63, 0x2,0x61,0x5f, 0x1,0x76,0x46,\n  0x2,0x61,0x5d, 0x1,0x78,0x38, 0x2,0x61,0x61, 0x4,0x5b,0x36,\n  0x2,0x61,0x62, 0x2,0x61,0x5e, 0x3,0x57,0x6e, 0x1,0x76,0x47,\n  0x2,0x65,0x4d, 0x3,0x5a,0x3b, 0x2,0x65,0x50, 0x3,0x5a,0x3c,\n  0x3,0x5a,0x3a, 0x2,0x65,0x51, 0x2,0x65,0x4f, 0x2,0x65,0x52,\n  0x1,0x78,0x39, 0x2,0x65,0x4e, 0x3,0x5e,0x31, 0x2,0x68,0x7a,\n  0x1,0x79,0x6f, 0x2,0x68,0x79, 0x2,0x68,0x78, 0x2,0x68,0x77,\n  0x1,0x79,0x6e, 0x1,0x79,0x70, 0x3,0x65,0x23, 0x2,0x6b,0x5b,\n  0x1,0x7a,0x6d, 0x1,0x7a,0x6c, 0x3,0x5f,0x4a, 0x3,0x5f,0x4b,\n  0x2,0x6d,0x4f, 0x2,0x6d,0x4e, 0x2,0x6d,0x51, 0x1,0x7c,0x37,\n  0x1,0x7b,0x61, 0x2,0x6f,0x2c, 0x2,0x6d,0x50, 0x3,0x5f,0x49,\n  0x3,0x60,0x32, 0x2,0x6f,0x2b, 0x1,0x7c,0x39, 0x1,0x7c,0x38,\n  0x1,0x7c,0x5f, 0x2,0x70,0x37, 0x2,0x70,0x7d, 0x1,0x45,0x45,\n  0x6,0x23,0x6c, 0x3,0x2c,0x72, 0x2,0x3c,0x37, 0x2,0x57,0x3a,\n  0x3,0x21,0x67, 0x3,0x21,0x68, 0x1,0x48,0x2d, 0x2,0x22,0x4d,\n  0x1,0x4a,0x53, 0x1,0x4a,0x51, 0x4,0x24,0x3f, 0x1,0x4a,0x52,\n  0x4,0x24,0x3e, 0x2,0x27,0x22, 0x1,0x4d,0x73, 0x1,0x51,0x49,\n  0x3,0x2c,0x74, 0x2,0x2a,0x68, 0x3,0x2c,0x76, 0x2,0x2a,0x69,\n  0x3,0x2c,0x73, 0x1,0x51,0x4a, 0x2,0x2f,0x50, 0x4,0x2d,0x43,\n  0x1,0x55,0x66, 0x1,0x55,0x67, 0x2,0x2f,0x4f, 0x3,0x31,0x3d,\n  0x4,0x2d,0x44, 0x3,0x36,0x37, 0x3,0x36,0x36, 0x1,0x5a,0x77,\n  0x4,0x32,0x2b, 0x1,0x5a,0x73, 0x4,0x32,0x2f, 0x2,0x35,0x69,\n  0x1,0x5a,0x7a, 0x1,0x5a,0x79, 0x1,0x5a,0x72, 0x1,0x5a,0x75,\n  0x1,0x5a,0x78, 0x1,0x5a,0x74, 0x3,0x36,0x34, 0x2,0x3c,0x3b,\n  0x1,0x5a,0x71, 0x1,0x5f,0x54, 0x3,0x3b,0x74, 0x3,0x3b,0x75,\n  0x3,0x3b,0x76, 0x1,0x5f,0x56, 0x1,0x5f,0x57, 0x2,0x3c,0x3a,\n  0x2,0x3c,0x3d, 0x1,0x5f,0x55, 0x2,0x3c,0x38, 0x2,0x3c,0x3c,\n  0x2,0x3c,0x39, 0x3,0x41,0x4b, 0x1,0x64,0x39, 0x3,0x41,0x4e,\n  0x4,0x3d,0x5d, 0x2,0x43,0x42, 0x3,0x41,0x4d, 0x3,0x47,0x30,\n  0x1,0x68,0x7d, 0x2,0x4a,0x5b, 0x1,0x70,0x6c, 0x1,0x6d,0x2e,\n  0x2,0x50,0x64, 0x1,0x6d,0x2f, 0x1,0x6d,0x30, 0x2,0x50,0x66,\n  0x2,0x50,0x65, 0x2,0x50,0x67, 0x2,0x57,0x3c, 0x2,0x57,0x3b,\n  0x2,0x5c,0x7a, 0x2,0x5c,0x79, 0x1,0x73,0x6d, 0x1,0x73,0x6e,\n  0x2,0x65,0x53, 0x3,0x5c,0x41, 0x1,0x45,0x46, 0x3,0x25,0x58,\n  0x3,0x29,0x39, 0x4,0x2d,0x47, 0x3,0x31,0x40, 0x2,0x3c,0x3e,\n  0x3,0x36,0x38, 0x3,0x36,0x39, 0x1,0x5f,0x59, 0x1,0x5f,0x58,\n  0x2,0x43,0x43, 0x2,0x61,0x64, 0x1,0x7a,0x6e, 0x2,0x6f,0x2d,\n  0x1,0x45,0x47, 0x4,0x24,0x41, 0x1,0x55,0x68, 0x3,0x31,0x42,\n  0x1,0x5a,0x7c, 0x1,0x5a,0x7b, 0x2,0x3c,0x3f, 0x2,0x3c,0x40,\n  0x1,0x64,0x3a, 0x2,0x4a,0x5c, 0x1,0x68,0x7e, 0x2,0x57,0x3d,\n  0x4,0x56,0x3f, 0x1,0x45,0x48, 0x1,0x46,0x58, 0x3,0x29,0x3b,\n  0x1,0x4d,0x74, 0x2,0x27,0x23, 0x2,0x2a,0x6a, 0x1,0x51,0x4b,\n  0x1,0x5a,0x7d, 0x3,0x36,0x3a, 0x2,0x3c,0x41, 0x1,0x5f,0x5a,\n  0x1,0x64,0x3b, 0x4,0x3d,0x63, 0x2,0x50,0x68, 0x2,0x50,0x69,\n  0x4,0x50,0x4e, 0x3,0x54,0x6b, 0x2,0x5c,0x7b, 0x1,0x76,0x4b,\n  0x2,0x70,0x7e, 0x1,0x45,0x49, 0x3,0x29,0x3c, 0x2,0x27,0x24,\n  0x1,0x4d,0x75, 0x1,0x51,0x4c, 0x3,0x2c,0x77, 0x2,0x2a,0x6b,\n  0x1,0x55,0x69, 0x2,0x2f,0x54, 0x2,0x2f,0x52, 0x2,0x2f,0x53,\n  0x1,0x55,0x6a, 0x2,0x2f,0x51, 0x3,0x36,0x3c, 0x4,0x32,0x34,\n  0x3,0x36,0x3f, 0x3,0x36,0x3d, 0x1,0x5b,0x21, 0x1,0x5b,0x22,\n  0x2,0x35,0x6a, 0x1,0x5b,0x23, 0x1,0x5a,0x7e, 0x2,0x3c,0x42,\n  0x3,0x3b,0x79, 0x2,0x3c,0x43, 0x2,0x43,0x44, 0x4,0x3d,0x64,\n  0x1,0x69,0x22, 0x1,0x69,0x21, 0x4,0x50,0x4f, 0xf,0x54,0x64,\n  0x2,0x5c,0x7c, 0x2,0x61,0x65, 0x3,0x5a,0x3f, 0x2,0x65,0x55,\n  0x2,0x65,0x54, 0x2,0x68,0x7b, 0x3,0x21,0x69, 0x2,0x21,0x3e,\n  0x1,0x51,0x4d, 0x3,0x36,0x41, 0x3,0x41,0x50, 0x1,0x45,0x4a,\n  0x1,0x46,0x59, 0x3,0x22,0x51, 0x1,0x48,0x2f, 0x1,0x48,0x2e,\n  0x3,0x23,0x73, 0x3,0x23,0x72, 0x1,0x48,0x30, 0x1,0x48,0x31,\n  0x2,0x22,0x4f, 0x2,0x22,0x4e, 0x2,0x24,0x39, 0x1,0x4a,0x54,\n  0x2,0x24,0x3c, 0x2,0x24,0x3b, 0x2,0x24,0x3a, 0x2,0x24,0x3d,\n  0x3,0x26,0x3d, 0x4,0x26,0x62, 0x1,0x4d,0x76, 0x2,0x27,0x2a,\n  0x2,0x27,0x26, 0x2,0x27,0x2f, 0x3,0x29,0x43, 0x3,0x29,0x3e,\n  0x1,0x4d,0x7d, 0x3,0x29,0x42, 0x1,0x4d,0x7b, 0x2,0x27,0x2b,\n  0x2,0x27,0x27, 0x2,0x27,0x2e, 0x1,0x4d,0x7a, 0x1,0x4e,0x23,\n  0x2,0x27,0x29, 0x2,0x27,0x25, 0x1,0x4e,0x22, 0x2,0x27,0x2c,\n  0x1,0x4d,0x79, 0x2,0x27,0x2d, 0x1,0x4d,0x7c, 0x1,0x4d,0x7e,\n  0x2,0x27,0x31, 0x2,0x27,0x30, 0x2,0x27,0x28, 0x1,0x4d,0x78,\n  0x1,0x4d,0x77, 0x1,0x4e,0x21, 0x4,0x26,0x61, 0x3,0x29,0x40,\n  0x3,0x29,0x41, 0xf,0x27,0x3e, 0x3,0x2c,0x7e, 0x3,0x2c,0x7a,\n  0x2,0x2a,0x70, 0x2,0x2a,0x76, 0x3,0x2d,0x23, 0x1,0x51,0x53,\n  0x1,0x51,0x50, 0x2,0x2a,0x6d, 0x2,0x2a,0x72, 0x3,0x2c,0x7c,\n  0x1,0x51,0x56, 0x1,0x51,0x4e, 0x2,0x2a,0x71, 0x1,0x51,0x51,\n  0x1,0x51,0x54, 0x3,0x2c,0x79, 0x4,0x29,0x67, 0x2,0x2a,0x74,\n  0x3,0x2c,0x7d, 0x1,0x51,0x4f, 0x2,0x2a,0x79, 0x1,0x51,0x52,\n  0x3,0x2d,0x21, 0x1,0x51,0x55, 0x2,0x2a,0x6e, 0x2,0x2a,0x73,\n  0x2,0x2a,0x77, 0x2,0x2a,0x6f, 0x2,0x2a,0x6c, 0x3,0x2d,0x24,\n  0x3,0x2d,0x25, 0x2,0x2a,0x78, 0x2,0x2a,0x75, 0x3,0x2d,0x22,\n  0x3,0x2c,0x37, 0x3,0x31,0x46, 0x1,0x55,0x72, 0x1,0x55,0x6b,\n  0x1,0x55,0x6e, 0x3,0x31,0x4c, 0x1,0x55,0x71, 0x3,0x31,0x44,\n  0x2,0x2f,0x57, 0x3,0x31,0x49, 0x1,0x55,0x6c, 0x2,0x2f,0x55,\n  0x3,0x31,0x48, 0x1,0x55,0x70, 0x3,0x31,0x4d, 0x3,0x31,0x45,\n  0x1,0x55,0x6d, 0x3,0x31,0x43, 0x2,0x2f,0x58, 0x1,0x55,0x6f,\n  0x3,0x36,0x42, 0x4,0x32,0x39, 0x2,0x35,0x6e, 0x1,0x5b,0x25,\n  0x2,0x35,0x6d, 0x2,0x35,0x6f, 0x1,0x5b,0x24, 0x1,0x5b,0x29,\n  0x2,0x2f,0x56, 0x3,0x31,0x4b, 0x2,0x35,0x6c, 0x2,0x35,0x70,\n  0x3,0x36,0x44, 0x1,0x5b,0x26, 0x2,0x35,0x6b, 0x1,0x5b,0x28,\n  0x3,0x36,0x45, 0x1,0x5b,0x27, 0x3,0x3c,0x26, 0x2,0x3c,0x4a,\n  0x3,0x3b,0x7d, 0x2,0x3c,0x45, 0x3,0x3c,0x25, 0x1,0x5f,0x5b,\n  0x1,0x5f,0x5f, 0x1,0x5f,0x5c, 0x2,0x3c,0x48, 0x2,0x3c,0x4b,\n  0x3,0x3c,0x23, 0x1,0x5f,0x5d, 0x4,0x38,0x24, 0x1,0x5f,0x5e,\n  0x1,0x5f,0x63, 0x2,0x43,0x4d, 0x2,0x3c,0x49, 0x1,0x5f,0x61,\n  0x2,0x3c,0x46, 0x2,0x3c,0x44, 0x3,0x3b,0x7c, 0x1,0x5f,0x62,\n  0x3,0x3b,0x7e, 0x2,0x3c,0x47, 0x3,0x3c,0x24, 0x1,0x64,0x41,\n  0x4,0x3d,0x69, 0x2,0x43,0x45, 0x1,0x64,0x3e, 0x1,0x64,0x3f,\n  0x1,0x64,0x3d, 0x2,0x43,0x4a, 0x2,0x43,0x49, 0x2,0x43,0x46,\n  0x1,0x64,0x43, 0x3,0x41,0x5b, 0x3,0x41,0x56, 0x2,0x43,0x48,\n  0x1,0x5f,0x60, 0x3,0x41,0x59, 0x3,0x41,0x51, 0x2,0x43,0x4c,\n  0x2,0x43,0x47, 0x1,0x64,0x40, 0x1,0x64,0x3c, 0x1,0x64,0x42,\n  0x2,0x43,0x4b, 0x3,0x47,0x34, 0x4,0x43,0x6b, 0x3,0x47,0x35,\n  0x1,0x69,0x25, 0x4,0x43,0x6f, 0x2,0x4a,0x5f, 0x2,0x4a,0x5e,\n  0x2,0x4a,0x5d, 0x1,0x69,0x23, 0x4,0x43,0x6d, 0x3,0x47,0x39,\n  0x3,0x47,0x33, 0x3,0x47,0x37, 0x1,0x69,0x24, 0x2,0x50,0x6c,\n  0x2,0x50,0x6f, 0x1,0x6d,0x32, 0x3,0x4c,0x44, 0x3,0x4c,0x46,\n  0x1,0x6d,0x31, 0x2,0x50,0x70, 0x2,0x50,0x6b, 0x1,0x6d,0x34,\n  0x2,0x50,0x6d, 0x3,0x4c,0x41, 0x1,0x6d,0x33, 0x2,0x50,0x6a,\n  0x3,0x4c,0x40, 0x2,0x50,0x6e, 0x1,0x70,0x72, 0x1,0x70,0x6f,\n  0x2,0x57,0x46, 0x2,0x57,0x45, 0x3,0x4c,0x43, 0x2,0x57,0x44,\n  0x2,0x57,0x3f, 0x3,0x50,0x7d, 0x2,0x57,0x40, 0x3,0x51,0x23,\n  0x4,0x50,0x50, 0x3,0x50,0x7a, 0x1,0x70,0x70, 0x3,0x50,0x7e,\n  0x1,0x70,0x6d, 0x1,0x70,0x71, 0x2,0x57,0x3e, 0x1,0x70,0x6e,\n  0x2,0x57,0x41, 0x2,0x57,0x42, 0x2,0x57,0x47, 0x3,0x51,0x22,\n  0x3,0x54,0x71, 0x2,0x57,0x43, 0x3,0x54,0x6f, 0x3,0x54,0x70,\n  0x2,0x5c,0x7d, 0x4,0x56,0x41, 0x3,0x54,0x6c, 0x3,0x54,0x6d,\n  0x1,0x73,0x70, 0x3,0x54,0x72, 0x2,0x61,0x68, 0x1,0x73,0x6f,\n  0x2,0x61,0x66, 0x2,0x61,0x67, 0x1,0x76,0x4c, 0x1,0x78,0x3b,\n  0x2,0x65,0x56, 0x3,0x5a,0x43, 0x1,0x78,0x3a, 0x3,0x5a,0x42,\n  0x3,0x65,0x26, 0x2,0x68,0x7d, 0x2,0x68,0x7e, 0x3,0x5c,0x42,\n  0x1,0x79,0x71, 0x3,0x5c,0x43, 0x2,0x68,0x7c, 0x1,0x7a,0x6f,\n  0x4,0x6a,0x4c, 0x2,0x6f,0x2e, 0x1,0x7c,0x3a, 0x2,0x70,0x38,\n  0x2,0x70,0x39, 0x3,0x61,0x3f, 0x1,0x45,0x4b, 0x4,0x21,0x7c,\n  0x1,0x48,0x32, 0x1,0x48,0x33, 0x1,0x4a,0x55, 0x3,0x26,0x41,\n  0x2,0x27,0x32, 0x1,0x51,0x57, 0x1,0x55,0x73, 0x1,0x5b,0x2a,\n  0xf,0x32,0x73, 0x1,0x59,0x37, 0x1,0x5f,0x64, 0x1,0x5f,0x65,\n  0x1,0x5e,0x32, 0x2,0x3c,0x4c, 0x3,0x65,0x27, 0x1,0x64,0x44,\n  0x2,0x4a,0x61, 0x2,0x4a,0x60, 0x3,0x51,0x24, 0x7,0x53,0x47,\n  0x1,0x45,0x4c, 0x1,0x48,0x34, 0x2,0x27,0x33, 0x1,0x4e,0x25,\n  0x3,0x29,0x45, 0x1,0x4e,0x24, 0x3,0x2d,0x27, 0x2,0x2a,0x7a,\n  0x2,0x2a,0x7b, 0x3,0x66,0x32, 0x2,0x2f,0x59, 0x2,0x2f,0x5a,\n  0x1,0x55,0x74, 0x1,0x55,0x75, 0x3,0x36,0x48, 0x1,0x55,0x76,\n  0x2,0x35,0x71, 0x3,0x36,0x47, 0x3,0x36,0x46, 0x1,0x5b,0x2c,\n  0x4,0x38,0x29, 0x1,0x5f,0x67, 0x3,0x3c,0x29, 0x1,0x5f,0x66,\n  0x2,0x43,0x4e, 0x2,0x46,0x41, 0x2,0x4a,0x62, 0x2,0x57,0x48,\n  0x3,0x51,0x26, 0x3,0x66,0x33, 0x1,0x76,0x4d, 0x1,0x79,0x72,\n  0x1,0x45,0x4d, 0x1,0x46,0x5c, 0x1,0x46,0x5d, 0x1,0x46,0x5b,\n  0x1,0x46,0x5e, 0x1,0x46,0x5a, 0x3,0x22,0x52, 0x1,0x48,0x37,\n  0x3,0x23,0x77, 0x2,0x22,0x57, 0x1,0x48,0x36, 0x1,0x48,0x38,\n  0x3,0x23,0x78, 0x3,0x23,0x75, 0x2,0x22,0x52, 0x2,0x22,0x51,\n  0x2,0x22,0x54, 0x2,0x22,0x53, 0x2,0x22,0x56, 0x1,0x48,0x35,\n  0x2,0x22,0x50, 0x2,0x22,0x55, 0xf,0x22,0x58, 0xf,0x22,0x57,\n  0x3,0x26,0x48, 0x2,0x24,0x3e, 0x1,0x4a,0x5f, 0x2,0x24,0x3f,\n  0x2,0x24,0x43, 0x1,0x4a,0x5e, 0x3,0x26,0x49, 0x2,0x24,0x47,\n  0x2,0x24,0x42, 0x2,0x24,0x45, 0x1,0x4a,0x57, 0x1,0x4a,0x58,\n  0x1,0x4a,0x59, 0x1,0x4a,0x5a, 0x3,0x26,0x45, 0x1,0x4a,0x61,\n  0x3,0x26,0x44, 0x2,0x24,0x41, 0x1,0x4a,0x5c, 0x1,0x4a,0x62,\n  0x3,0x26,0x47, 0x2,0x24,0x40, 0x2,0x24,0x46, 0x3,0x26,0x42,\n  0x1,0x4a,0x5b, 0x2,0x24,0x44, 0x1,0x4a,0x5d, 0x1,0x4a,0x56,\n  0x1,0x4a,0x60, 0x3,0x26,0x4a, 0xf,0x24,0x22, 0x4,0x24,0x46,\n  0xf,0x24,0x53, 0x1,0x4e,0x3a, 0x3,0x29,0x47, 0x2,0x27,0x35,\n  0x1,0x4e,0x26, 0x4,0x26,0x69, 0x1,0x4e,0x30, 0x1,0x4e,0x31,\n  0x1,0x4e,0x29, 0x1,0x4e,0x3b, 0x1,0x4e,0x2b, 0x2,0x27,0x3d,\n  0x1,0x4e,0x36, 0x2,0x27,0x38, 0x1,0x4e,0x2c, 0x2,0x27,0x47,\n  0x2,0x27,0x48, 0x2,0x27,0x40, 0x2,0x27,0x39, 0x1,0x4e,0x39,\n  0x2,0x27,0x45, 0x1,0x4e,0x34, 0x1,0x4e,0x32, 0x3,0x29,0x52,\n  0x2,0x27,0x46, 0x3,0x29,0x49, 0x2,0x27,0x44, 0x2,0x27,0x3c,\n  0x2,0x27,0x34, 0x2,0x27,0x3b, 0x1,0x4e,0x2d, 0x4,0x26,0x65,\n  0x1,0x4e,0x33, 0x3,0x29,0x4a, 0x1,0x4e,0x27, 0x2,0x27,0x3f,\n  0x2,0x27,0x3e, 0x2,0x27,0x36, 0x3,0x29,0x4f, 0x1,0x4e,0x35,\n  0x2,0x27,0x42, 0x2,0x27,0x37, 0x1,0x4e,0x38, 0x2,0x27,0x49,\n  0x1,0x4e,0x28, 0x3,0x29,0x48, 0x1,0x4e,0x2f, 0x2,0x27,0x3a,\n  0x2,0x27,0x43, 0x1,0x4e,0x37, 0x4,0x26,0x67, 0x1,0x4e,0x2a,\n  0x1,0x4e,0x2e, 0x4,0x26,0x6a, 0x2,0x27,0x41, 0xf,0x27,0x4e,\n  0x3,0x29,0x4e, 0x3,0x29,0x4c, 0x3,0x65,0x28, 0xf,0x27,0x50,\n  0x3,0x65,0x29, 0x2,0x2b,0x3d, 0x1,0x51,0x5f, 0x1,0x51,0x6c,\n  0x3,0x2d,0x36, 0x2,0x2b,0x38, 0x2,0x2b,0x2e, 0x1,0x51,0x65,\n  0x2,0x2b,0x2c, 0x1,0x51,0x5e, 0x2,0x2b,0x27, 0x1,0x51,0x68,\n  0x2,0x2b,0x34, 0x2,0x2b,0x21, 0x2,0x2b,0x23, 0x3,0x2d,0x2e,\n  0x4,0x2d,0x59, 0x4,0x29,0x6e, 0x3,0x2d,0x30, 0x2,0x2b,0x26,\n  0x2,0x2a,0x7c, 0x2,0x2b,0x33, 0x2,0x2b,0x43, 0x1,0x51,0x63,\n  0x2,0x2b,0x28, 0x2,0x2b,0x3a, 0x3,0x2d,0x2d, 0x2,0x2a,0x7e,\n  0x2,0x2b,0x41, 0x2,0x2b,0x42, 0x2,0x2b,0x45, 0x2,0x2b,0x3c,\n  0x2,0x2b,0x2d, 0x2,0x2b,0x35, 0x1,0x51,0x69, 0x1,0x51,0x5c,\n  0x1,0x51,0x64, 0x1,0x51,0x70, 0x1,0x51,0x59, 0x1,0x51,0x5b,\n  0x3,0x2d,0x31, 0x3,0x2d,0x2b, 0x3,0x2d,0x3a, 0x2,0x2b,0x25,\n  0x1,0x51,0x6d, 0x1,0x51,0x66, 0x2,0x2b,0x3f, 0x2,0x2b,0x22,\n  0x1,0x51,0x6f, 0x1,0x51,0x6a, 0x2,0x2b,0x2b, 0x4,0x29,0x6d,\n  0x4,0x2d,0x4e, 0x1,0x51,0x6e, 0x2,0x2b,0x32, 0x2,0x2b,0x2a,\n  0x1,0x51,0x67, 0x2,0x2b,0x3e, 0x2,0x2b,0x36, 0x3,0x2d,0x2a,\n  0x1,0x51,0x61, 0x2,0x2b,0x44, 0x2,0x2b,0x29, 0x1,0x51,0x5d,\n  0x2,0x2b,0x3b, 0x2,0x2b,0x31, 0x1,0x51,0x62, 0x2,0x2b,0x37,\n  0x1,0x51,0x5a, 0x2,0x2a,0x7d, 0x1,0x51,0x6b, 0x1,0x56,0x27,\n  0x1,0x51,0x60, 0x2,0x2b,0x30, 0x2,0x2b,0x2f, 0x2,0x2b,0x24,\n  0x3,0x29,0x51, 0x2,0x2b,0x40, 0x3,0x2d,0x34, 0x2,0x2b,0x39,\n  0x3,0x2d,0x32, 0x1,0x51,0x58, 0x3,0x2d,0x39, 0x3,0x2d,0x37,\n  0x6,0x31,0x72, 0x3,0x2d,0x38, 0x3,0x65,0x2b, 0x3,0x65,0x2a,\n  0xf,0x2b,0x48, 0x2,0x2f,0x6e, 0x1,0x56,0x2e, 0x2,0x2f,0x6f,\n  0x3,0x31,0x5d, 0x2,0x2f,0x63, 0x1,0x56,0x23, 0x1,0x56,0x2f,\n  0x3,0x31,0x57, 0x2,0x2f,0x5c, 0x3,0x31,0x53, 0x2,0x2f,0x65,\n  0x2,0x2f,0x6d, 0x3,0x31,0x5b, 0x2,0x2f,0x5b, 0x2,0x2f,0x76,\n  0x1,0x55,0x77, 0x3,0x31,0x5e, 0x3,0x31,0x64, 0x3,0x31,0x50,\n  0x2,0x2f,0x75, 0x2,0x2f,0x70, 0x3,0x31,0x5f, 0x2,0x2f,0x71,\n  0x1,0x56,0x21, 0x1,0x56,0x2c, 0x2,0x2f,0x67, 0x3,0x31,0x56,\n  0x2,0x2f,0x68, 0x2,0x2f,0x72, 0x2,0x2f,0x69, 0x3,0x31,0x63,\n  0x2,0x2f,0x64, 0x2,0x2f,0x5e, 0x2,0x2f,0x5f, 0x2,0x2f,0x6c,\n  0x2,0x2f,0x66, 0x3,0x31,0x54, 0x3,0x31,0x4f, 0x1,0x55,0x78,\n  0x1,0x55,0x7c, 0x2,0x2f,0x74, 0x2,0x2f,0x60, 0x1,0x56,0x2a,\n  0x1,0x56,0x26, 0x3,0x31,0x5a, 0x4,0x2d,0x55, 0x1,0x56,0x29,\n  0x1,0x56,0x30, 0x1,0x55,0x7d, 0x1,0x56,0x2b, 0x2,0x2f,0x6b,\n  0x1,0x56,0x2d, 0x1,0x55,0x7a, 0x3,0x31,0x59, 0x1,0x55,0x79,\n  0x2,0x2f,0x5d, 0x4,0x2d,0x4f, 0x2,0x2f,0x61, 0x1,0x56,0x24,\n  0x2,0x2f,0x73, 0x2,0x2f,0x6a, 0x2,0x2f,0x62, 0x1,0x56,0x28,\n  0x1,0x56,0x25, 0x3,0x2d,0x2f, 0x1,0x55,0x7b, 0x1,0x55,0x7e,\n  0x3,0x31,0x62, 0x3,0x31,0x58, 0xf,0x30,0x24, 0x3,0x31,0x61,\n  0x3,0x31,0x60, 0x3,0x65,0x2d, 0x3,0x65,0x2c, 0x2,0x36,0x28,\n  0x3,0x36,0x55, 0x2,0x35,0x76, 0x2,0x35,0x77, 0x2,0x35,0x7b,\n  0x3,0x36,0x60, 0x2,0x36,0x2c, 0x2,0x36,0x29, 0x3,0x36,0x4e,\n  0x2,0x36,0x22, 0x2,0x36,0x21, 0x1,0x5b,0x33, 0x2,0x36,0x25,\n  0x2,0x36,0x34, 0x2,0x35,0x72, 0x3,0x36,0x5b, 0x2,0x36,0x35,\n  0x2,0x36,0x27, 0x2,0x36,0x39, 0x2,0x36,0x2d, 0x1,0x5b,0x32,\n  0x2,0x36,0x2b, 0x1,0x5b,0x2d, 0x1,0x5b,0x42, 0x1,0x5b,0x38,\n  0x3,0x36,0x57, 0x1,0x5b,0x3c, 0x1,0x5b,0x3b, 0x2,0x35,0x73,\n  0x4,0x32,0x3f, 0x2,0x36,0x32, 0x2,0x36,0x38, 0x2,0x36,0x30,\n  0x2,0x36,0x37, 0x3,0x36,0x51, 0x2,0x36,0x24, 0x2,0x35,0x74,\n  0x2,0x36,0x36, 0x2,0x36,0x26, 0x1,0x5b,0x30, 0x1,0x5b,0x3d,\n  0x3,0x36,0x5a, 0x2,0x36,0x2f, 0x1,0x5b,0x36, 0x3,0x36,0x4d,\n  0x3,0x36,0x5c, 0x3,0x36,0x50, 0x2,0x36,0x2e, 0x2,0x35,0x75,\n  0x1,0x5b,0x3e, 0x3,0x36,0x4b, 0x1,0x5b,0x40, 0x2,0x36,0x31,\n  0x1,0x5b,0x41, 0x1,0x5b,0x2f, 0x2,0x35,0x7c, 0x2,0x36,0x33,\n  0x3,0x36,0x54, 0x3,0x34,0x78, 0x1,0x5b,0x35, 0x1,0x5b,0x3f,\n  0x2,0x35,0x7e, 0x2,0x36,0x2a, 0x2,0x35,0x79, 0x2,0x35,0x7d,\n  0x1,0x5b,0x3a, 0x2,0x35,0x78, 0x1,0x5b,0x2e, 0x1,0x5b,0x37,\n  0x1,0x5b,0x34, 0x2,0x36,0x23, 0x1,0x56,0x22, 0x2,0x3c,0x63,\n  0x1,0x5b,0x31, 0x3,0x36,0x4c, 0x3,0x36,0x52, 0x3,0x36,0x5e,\n  0x3,0x36,0x5f, 0xf,0x35,0x57, 0x3,0x36,0x56, 0x3,0x3c,0x45,\n  0x1,0x5b,0x39, 0x3,0x3c,0x41, 0x2,0x3c,0x66, 0x2,0x3c,0x7c,\n  0x2,0x3c,0x71, 0x1,0x5f,0x7b, 0x3,0x3c,0x38, 0x1,0x5f,0x76,\n  0x2,0x3c,0x60, 0x1,0x5f,0x77, 0x2,0x3c,0x70, 0x3,0x3c,0x3e,\n  0x2,0x3c,0x69, 0x2,0x3c,0x76, 0x1,0x5f,0x73, 0x2,0x3c,0x4e,\n  0x2,0x3c,0x78, 0x1,0x5f,0x69, 0x2,0x3c,0x56, 0x1,0x5f,0x6c,\n  0x1,0x5f,0x6b, 0x4,0x38,0x32, 0x1,0x5f,0x7c, 0x3,0x36,0x53,\n  0x2,0x3c,0x50, 0x2,0x3c,0x72, 0x2,0x3c,0x73, 0x1,0x5f,0x6e,\n  0x1,0x5f,0x6a, 0x2,0x3c,0x5e, 0x3,0x3c,0x3d, 0x1,0x5f,0x75,\n  0x2,0x3c,0x59, 0x3,0x3c,0x32, 0x2,0x3c,0x74, 0x1,0x5f,0x71,\n  0x2,0x3c,0x6c, 0x2,0x3c,0x79, 0x2,0x3c,0x53, 0x2,0x3c,0x58,\n  0x2,0x3c,0x52, 0x3,0x3c,0x2a, 0x1,0x5f,0x70, 0x2,0x3c,0x65,\n  0x2,0x43,0x64, 0x2,0x3c,0x54, 0x1,0x5f,0x74, 0x2,0x3c,0x5d,\n  0x2,0x3c,0x75, 0x1,0x5f,0x6f, 0x2,0x3c,0x5a, 0x2,0x3c,0x57,\n  0x2,0x3c,0x68, 0x1,0x5f,0x72, 0x1,0x5f,0x68, 0x1,0x5f,0x7e,\n  0x2,0x3c,0x6b, 0x2,0x3c,0x6a, 0x3,0x3c,0x31, 0x3,0x3c,0x42,\n  0x3,0x3c,0x39, 0x3,0x3c,0x3b, 0x3,0x3c,0x34, 0x3,0x3c,0x2f,\n  0x2,0x3c,0x4f, 0x1,0x5f,0x6d, 0x2,0x3c,0x77, 0x2,0x3c,0x5f,\n  0x2,0x3c,0x61, 0x3,0x3c,0x37, 0x2,0x3c,0x6e, 0x2,0x3c,0x6d,\n  0x2,0x3c,0x4d, 0x1,0x5f,0x78, 0x1,0x5f,0x7a, 0x2,0x3c,0x55,\n  0x2,0x3c,0x5c, 0x2,0x3c,0x64, 0x1,0x5f,0x79, 0x2,0x3c,0x5b,\n  0x2,0x3c,0x67, 0x2,0x3c,0x7a, 0xf,0x3b,0x70, 0x2,0x3c,0x6f,\n  0x3,0x3c,0x3c, 0xf,0x3c,0x21, 0x3,0x3c,0x44, 0x3,0x3c,0x33,\n  0x2,0x3c,0x7b, 0xf,0x3c,0x29, 0x3,0x65,0x2f, 0x2,0x3c,0x51,\n  0xf,0x3b,0x6e, 0x3,0x65,0x2e, 0x3,0x3c,0x40, 0x2,0x43,0x78,\n  0x1,0x64,0x4c, 0x3,0x41,0x65, 0x2,0x43,0x76, 0x2,0x43,0x61,\n  0x2,0x43,0x66, 0x2,0x43,0x5f, 0x3,0x41,0x77, 0x2,0x43,0x72,\n  0x2,0x43,0x51, 0x2,0x43,0x58, 0x4,0x3d,0x71, 0x2,0x43,0x70,\n  0x2,0x43,0x7a, 0x2,0x43,0x62, 0x3,0x41,0x68, 0x2,0x43,0x55,\n  0x2,0x43,0x68, 0x2,0x43,0x6d, 0x2,0x43,0x59, 0x3,0x41,0x6b,\n  0x2,0x43,0x6a, 0x2,0x43,0x56, 0x3,0x41,0x5d, 0x3,0x41,0x75,\n  0x2,0x43,0x5d, 0x2,0x43,0x5e, 0x1,0x64,0x4e, 0x2,0x43,0x71,\n  0x2,0x43,0x6f, 0x3,0x41,0x73, 0x2,0x43,0x52, 0x2,0x43,0x74,\n  0x3,0x41,0x74, 0x2,0x43,0x75, 0x2,0x43,0x77, 0x1,0x64,0x52,\n  0x1,0x64,0x4a, 0x3,0x41,0x6f, 0x2,0x35,0x7a, 0x2,0x43,0x5a,\n  0x2,0x43,0x6c, 0x2,0x43,0x5b, 0x1,0x64,0x47, 0x1,0x64,0x57,\n  0x2,0x43,0x73, 0x1,0x64,0x55, 0x1,0x64,0x51, 0x2,0x43,0x50,\n  0x1,0x64,0x49, 0x3,0x41,0x79, 0x2,0x43,0x53, 0x1,0x64,0x56,\n  0x3,0x41,0x78, 0x2,0x43,0x63, 0x2,0x43,0x4f, 0x3,0x41,0x76,\n  0x1,0x64,0x4f, 0x2,0x43,0x67, 0x2,0x43,0x57, 0x1,0x64,0x50,\n  0x2,0x43,0x60, 0x1,0x64,0x46, 0x1,0x5f,0x7d, 0x2,0x43,0x69,\n  0x2,0x3c,0x62, 0x2,0x43,0x54, 0x4,0x3d,0x6c, 0x3,0x41,0x6d,\n  0x2,0x43,0x6e, 0x1,0x64,0x4b, 0x2,0x43,0x6b, 0x1,0x64,0x48,\n  0x2,0x43,0x65, 0x1,0x64,0x53, 0x2,0x43,0x5c, 0x2,0x43,0x79,\n  0x3,0x41,0x6a, 0x3,0x41,0x7b, 0xf,0x42,0x49, 0xf,0x42,0x47,\n  0x1,0x64,0x4d, 0x2,0x45,0x2c, 0x3,0x41,0x72, 0x1,0x64,0x54,\n  0xf,0x42,0x28, 0xf,0x42,0x3c, 0x2,0x4a,0x70, 0x2,0x4a,0x6e,\n  0x3,0x47,0x3a, 0x2,0x4b,0x26, 0x2,0x4a,0x6c, 0x3,0x47,0x3d,\n  0x2,0x4a,0x7e, 0x1,0x64,0x45, 0x1,0x69,0x28, 0x2,0x4a,0x68,\n  0x2,0x4b,0x25, 0x3,0x47,0x51, 0x2,0x4a,0x6d, 0x2,0x4a,0x7b,\n  0x1,0x69,0x2d, 0x1,0x69,0x26, 0x3,0x47,0x4e, 0x2,0x4b,0x23,\n  0x3,0x47,0x46, 0x2,0x4a,0x66, 0x2,0x4b,0x22, 0x3,0x47,0x47,\n  0x1,0x69,0x38, 0x2,0x4a,0x77, 0x2,0x4b,0x29, 0x1,0x69,0x36,\n  0x2,0x4a,0x6f, 0x1,0x69,0x27, 0x2,0x4a,0x71, 0x2,0x4b,0x21,\n  0x1,0x69,0x30, 0x2,0x4a,0x6a, 0x1,0x69,0x34, 0x1,0x69,0x2a,\n  0x2,0x4a,0x73, 0x2,0x4a,0x69, 0x2,0x4a,0x63, 0x3,0x47,0x3e,\n  0x2,0x4a,0x7d, 0x1,0x69,0x31, 0x2,0x4b,0x28, 0x2,0x4a,0x64,\n  0x1,0x69,0x2e, 0x4,0x43,0x77, 0x2,0x4a,0x79, 0x4,0x43,0x79,\n  0x1,0x69,0x2f, 0x2,0x4a,0x6b, 0x2,0x4a,0x76, 0x2,0x4a,0x72,\n  0x2,0x4a,0x74, 0x3,0x47,0x43, 0x1,0x69,0x29, 0x2,0x4b,0x27,\n  0x1,0x69,0x37, 0x2,0x4a,0x75, 0x3,0x47,0x3b, 0x2,0x4b,0x2a,\n  0x4,0x44,0x27, 0x3,0x47,0x3c, 0x2,0x4a,0x65, 0x2,0x4a,0x7a,\n  0x1,0x69,0x2c, 0x1,0x69,0x35, 0x1,0x69,0x33, 0x2,0x4a,0x67,\n  0x2,0x4a,0x7c, 0x1,0x69,0x32, 0x3,0x47,0x45, 0x3,0x47,0x48,\n  0x1,0x69,0x2b, 0x2,0x4a,0x78, 0x3,0x47,0x4d, 0x3,0x47,0x44,\n  0x4,0x44,0x28, 0x3,0x4c,0x54, 0x2,0x4b,0x24, 0x3,0x47,0x4c,\n  0x2,0x50,0x7c, 0x3,0x47,0x42, 0x2,0x50,0x78, 0x2,0x50,0x74,\n  0x2,0x51,0x2a, 0x2,0x51,0x27, 0x1,0x6d,0x37, 0x3,0x4c,0x64,\n  0x3,0x4c,0x60, 0x2,0x51,0x2e, 0x2,0x50,0x7b, 0x1,0x6d,0x42,\n  0x2,0x51,0x24, 0x3,0x4c,0x4f, 0x3,0x4c,0x51, 0x2,0x50,0x77,\n  0x2,0x51,0x23, 0x1,0x6d,0x3f, 0x2,0x51,0x37, 0x4,0x4a,0x3d,\n  0x2,0x51,0x34, 0x2,0x51,0x26, 0x2,0x50,0x75, 0x3,0x4c,0x5f,\n  0x3,0x4c,0x57, 0x2,0x51,0x2b, 0x2,0x51,0x2d, 0x1,0x6d,0x3b,\n  0x2,0x51,0x21, 0x2,0x50,0x7a, 0x2,0x50,0x71, 0x1,0x6d,0x38,\n  0x1,0x6d,0x40, 0x4,0x4a,0x48, 0x2,0x51,0x30, 0x1,0x6d,0x41,\n  0x2,0x50,0x72, 0x2,0x51,0x36, 0x2,0x51,0x29, 0x2,0x51,0x2f,\n  0x1,0x6d,0x3e, 0x3,0x4c,0x4d, 0x3,0x4c,0x50, 0x2,0x51,0x2c,\n  0x3,0x4c,0x47, 0x2,0x51,0x33, 0x3,0x4c,0x5b, 0x1,0x6d,0x43,\n  0x3,0x4c,0x56, 0x1,0x6d,0x3d, 0x2,0x51,0x25, 0x2,0x50,0x76,\n  0x2,0x51,0x38, 0x2,0x50,0x73, 0x2,0x51,0x31, 0x1,0x6d,0x3a,\n  0x3,0x4c,0x4a, 0x2,0x50,0x7d, 0x3,0x4c,0x49, 0x2,0x50,0x7e,\n  0x1,0x6d,0x39, 0x1,0x6d,0x36, 0x2,0x50,0x79, 0x1,0x6d,0x3c,\n  0x3,0x4c,0x52, 0x1,0x6d,0x35, 0x3,0x4c,0x62, 0x2,0x51,0x32,\n  0x2,0x51,0x35, 0x2,0x51,0x22, 0x2,0x57,0x55, 0x3,0x4c,0x5e,\n  0x3,0x4c,0x59, 0xf,0x4f,0x42, 0x3,0x4c,0x61, 0x3,0x65,0x30,\n  0x2,0x57,0x4d, 0x3,0x51,0x2c, 0x2,0x57,0x49, 0x1,0x71,0x21,\n  0x3,0x51,0x3c, 0x3,0x51,0x38, 0x1,0x70,0x74, 0x1,0x70,0x79,\n  0x1,0x70,0x75, 0x2,0x57,0x57, 0x2,0x57,0x62, 0x1,0x70,0x73,\n  0x2,0x57,0x4f, 0x2,0x57,0x58, 0x2,0x51,0x28, 0x2,0x57,0x59,\n  0x3,0x51,0x28, 0x3,0x51,0x2b, 0x1,0x70,0x7a, 0x3,0x51,0x40,\n  0x2,0x57,0x68, 0x1,0x70,0x7e, 0x1,0x71,0x23, 0x2,0x57,0x4b,\n  0x3,0x51,0x3b, 0x1,0x70,0x7d, 0x3,0x51,0x31, 0x2,0x57,0x66,\n  0x2,0x57,0x67, 0x2,0x57,0x5d, 0x2,0x57,0x5c, 0x2,0x57,0x54,\n  0x3,0x51,0x29, 0x3,0x51,0x3e, 0x2,0x57,0x5e, 0x2,0x57,0x65,\n  0x2,0x57,0x64, 0x3,0x51,0x2f, 0x1,0x70,0x78, 0x1,0x70,0x76,\n  0x2,0x57,0x56, 0x2,0x57,0x53, 0x3,0x51,0x44, 0x2,0x57,0x50,\n  0x2,0x57,0x63, 0x1,0x71,0x22, 0x2,0x57,0x61, 0x1,0x70,0x7c,\n  0x1,0x70,0x7b, 0x3,0x51,0x27, 0x2,0x57,0x5b, 0x4,0x4a,0x4b,\n  0x2,0x57,0x4a, 0x2,0x57,0x4c, 0x2,0x57,0x4e, 0x2,0x57,0x60,\n  0x2,0x57,0x5a, 0x1,0x70,0x77, 0x3,0x51,0x2e, 0x2,0x57,0x51,\n  0x3,0x51,0x32, 0x2,0x57,0x5f, 0x3,0x51,0x41, 0x3,0x51,0x3a,\n  0xf,0x54,0x7b, 0x2,0x57,0x52, 0x3,0x65,0x31, 0xf,0x55,0x29,\n  0x3,0x65,0x32, 0x3,0x54,0x75, 0x1,0x73,0x78, 0x2,0x5d,0x31,\n  0x1,0x73,0x71, 0x2,0x5d,0x22, 0x3,0x54,0x7b, 0x2,0x5d,0x2d,\n  0x1,0x73,0x73, 0x2,0x5d,0x34, 0x3,0x55,0x21, 0x2,0x5d,0x29,\n  0x3,0x54,0x7c, 0x2,0x5d,0x24, 0x3,0x54,0x76, 0x4,0x56,0x45,\n  0x2,0x5d,0x35, 0x2,0x5c,0x7e, 0x2,0x5d,0x2b, 0x3,0x55,0x27,\n  0x1,0x73,0x7a, 0x2,0x5d,0x30, 0x2,0x5d,0x36, 0x2,0x5d,0x2a,\n  0x1,0x73,0x72, 0x2,0x5d,0x2c, 0x2,0x5d,0x21, 0x1,0x73,0x79,\n  0x3,0x55,0x23, 0x3,0x54,0x7a, 0x2,0x5d,0x33, 0x2,0x5d,0x26,\n  0x1,0x73,0x75, 0x3,0x55,0x24, 0x2,0x5d,0x28, 0x2,0x5d,0x25,\n  0x1,0x73,0x7b, 0x2,0x5d,0x27, 0x1,0x73,0x74, 0x1,0x73,0x77,\n  0x2,0x5d,0x2f, 0x2,0x5d,0x23, 0x2,0x5d,0x32, 0x3,0x54,0x78,\n  0x2,0x5d,0x2e, 0x3,0x55,0x29, 0x3,0x57,0x74, 0x1,0x76,0x4f,\n  0x2,0x61,0x73, 0x1,0x76,0x54, 0x1,0x76,0x55, 0x3,0x57,0x77,\n  0x3,0x58,0x21, 0x3,0x57,0x76, 0x1,0x76,0x4e, 0x2,0x61,0x72,\n  0x3,0x57,0x78, 0x2,0x61,0x6f, 0x2,0x61,0x70, 0x1,0x76,0x52,\n  0x2,0x61,0x6a, 0x2,0x61,0x6e, 0x1,0x76,0x51, 0x3,0x57,0x7e,\n  0x2,0x61,0x6b, 0x3,0x57,0x79, 0x3,0x58,0x23, 0x3,0x57,0x7d,\n  0x3,0x57,0x7a, 0x1,0x76,0x53, 0x1,0x76,0x50, 0x3,0x58,0x22,\n  0x2,0x61,0x69, 0x2,0x61,0x6d, 0x2,0x61,0x71, 0x3,0x57,0x7b,\n  0x3,0x65,0x33, 0x2,0x65,0x5c, 0x2,0x65,0x59, 0x2,0x65,0x62,\n  0x3,0x5a,0x44, 0x2,0x65,0x61, 0x2,0x65,0x5f, 0x2,0x65,0x5a,\n  0x3,0x5a,0x4f, 0x1,0x78,0x3f, 0x3,0x5a,0x45, 0x3,0x5a,0x4e,\n  0x4,0x5f,0x71, 0x3,0x5a,0x47, 0x3,0x5a,0x4d, 0x2,0x65,0x5b,\n  0x1,0x78,0x3e, 0x1,0x73,0x76, 0x2,0x65,0x5e, 0x1,0x78,0x3d,\n  0x2,0x65,0x63, 0x2,0x65,0x5d, 0x2,0x65,0x58, 0x2,0x61,0x6c,\n  0x3,0x5a,0x48, 0x3,0x5a,0x46, 0x1,0x78,0x3c, 0x3,0x65,0x34,\n  0x2,0x65,0x57, 0x2,0x69,0x24, 0x3,0x5c,0x49, 0x2,0x69,0x23,\n  0x2,0x65,0x60, 0x1,0x79,0x73, 0x3,0x57,0x75, 0x2,0x69,0x27,\n  0x2,0x69,0x28, 0x2,0x69,0x22, 0x2,0x69,0x26, 0x4,0x63,0x50,\n  0x2,0x69,0x21, 0x3,0x5c,0x47, 0x3,0x65,0x35, 0x4,0x63,0x4e,\n  0x2,0x6b,0x5f, 0x2,0x69,0x25, 0x1,0x7a,0x72, 0x1,0x7a,0x70,\n  0x2,0x6b,0x5d, 0x3,0x5e,0x35, 0x3,0x5e,0x34, 0x3,0x5e,0x33,\n  0x2,0x6b,0x60, 0x3,0x5e,0x37, 0x2,0x6b,0x5c, 0x2,0x6b,0x5e,\n  0x1,0x7a,0x71, 0x3,0x5f,0x4f, 0x3,0x5f,0x4e, 0x2,0x6d,0x53,\n  0x2,0x6d,0x54, 0x1,0x7b,0x62, 0x2,0x6d,0x52, 0xf,0x69,0x4c,\n  0x3,0x65,0x36, 0x3,0x65,0x37, 0x2,0x6f,0x31, 0x1,0x7c,0x3b,\n  0x2,0x6f,0x2f, 0x2,0x6f,0x30, 0x2,0x70,0x3a, 0x3,0x60,0x74,\n  0xf,0x6b,0x51, 0x1,0x7d,0x23, 0x2,0x71,0x23, 0x2,0x71,0x21,\n  0x2,0x71,0x22, 0x2,0x71,0x24, 0x3,0x61,0x40, 0x3,0x61,0x65,\n  0x3,0x61,0x41, 0x2,0x72,0x2b, 0x1,0x45,0x4e, 0x1,0x48,0x39,\n  0x3,0x23,0x79, 0x1,0x4e,0x3c, 0x4,0x26,0x71, 0x2,0x27,0x4a,\n  0x3,0x29,0x53, 0x3,0x29,0x54, 0x2,0x2b,0x46, 0x4,0x29,0x72,\n  0x3,0x2d,0x3c, 0x3,0x31,0x66, 0x2,0x2f,0x77, 0x2,0x2f,0x79,\n  0x3,0x31,0x65, 0x2,0x2f,0x78, 0x3,0x31,0x67, 0x2,0x2f,0x7a,\n  0x1,0x5b,0x43, 0x2,0x36,0x3b, 0x2,0x2f,0x7b, 0x3,0x36,0x62,\n  0x2,0x36,0x3a, 0x2,0x36,0x3c, 0x2,0x36,0x3d, 0x2,0x3c,0x7d,\n  0x1,0x60,0x22, 0x2,0x3c,0x7e, 0x2,0x3d,0x22, 0x1,0x60,0x23,\n  0x1,0x60,0x21, 0x2,0x3d,0x21, 0x3,0x41,0x7d, 0x2,0x44,0x22,\n  0x2,0x43,0x7e, 0x2,0x43,0x7d, 0x3,0x41,0x7c, 0x2,0x43,0x7c,\n  0x2,0x43,0x7b, 0x1,0x64,0x58, 0x2,0x44,0x21, 0x1,0x69,0x39,\n  0x2,0x4b,0x2b, 0x2,0x4b,0x2d, 0x1,0x69,0x3a, 0x2,0x4b,0x2c,\n  0x1,0x6d,0x45, 0x3,0x4c,0x66, 0x1,0x6d,0x44, 0x2,0x51,0x39,\n  0x3,0x4c,0x65, 0x3,0x4c,0x67, 0x2,0x57,0x6a, 0x2,0x57,0x69,\n  0x2,0x57,0x6b, 0x3,0x51,0x46, 0x3,0x51,0x45, 0x1,0x71,0x24,\n  0xf,0x55,0x39, 0x2,0x5d,0x37, 0x1,0x73,0x7c, 0x3,0x55,0x2b,\n  0x2,0x61,0x74, 0x1,0x76,0x56, 0x2,0x65,0x64, 0x1,0x7b,0x63,\n  0x1,0x45,0x4f, 0x1,0x46,0x5f, 0x1,0x48,0x3a, 0x1,0x4a,0x63,\n  0x1,0x4e,0x3d, 0x1,0x4e,0x3e, 0x3,0x29,0x55, 0x3,0x29,0x56,\n  0x1,0x51,0x71, 0x3,0x2d,0x3d, 0x3,0x31,0x68, 0x2,0x2f,0x7c,\n  0x3,0x3c,0x49, 0x3,0x3c,0x47, 0x4,0x44,0x2d, 0x3,0x41,0x7e,\n  0x1,0x64,0x59, 0x3,0x42,0x21, 0x3,0x47,0x53, 0x4,0x4a,0x4e,\n  0x2,0x52,0x59, 0x1,0x71,0x25, 0x1,0x76,0x57, 0x1,0x45,0x50,\n  0x3,0x22,0x53, 0x1,0x48,0x3b, 0x4,0x26,0x76, 0x2,0x27,0x4c,\n  0x1,0x4e,0x3f, 0x2,0x27,0x4b, 0x3,0x29,0x58, 0x2,0x2b,0x47,\n  0x1,0x51,0x72, 0x2,0x2b,0x48, 0x5,0x29,0x69, 0x1,0x51,0x73,\n  0x2,0x2f,0x7e, 0x1,0x56,0x32, 0x1,0x56,0x31, 0x3,0x31,0x6a,\n  0x2,0x36,0x42, 0x2,0x36,0x40, 0x2,0x36,0x41, 0x2,0x36,0x3f,\n  0x3,0x36,0x64, 0x2,0x36,0x3e, 0x2,0x3d,0x23, 0x2,0x3d,0x26,\n  0x1,0x60,0x25, 0x2,0x3d,0x24, 0x1,0x60,0x24, 0x2,0x3d,0x25,\n  0x2,0x44,0x23, 0x3,0x42,0x22, 0x4,0x44,0x31, 0x2,0x4b,0x2e,\n  0x2,0x4b,0x2f, 0x2,0x4b,0x30, 0x3,0x47,0x54, 0x2,0x51,0x3c,\n  0x2,0x51,0x3b, 0x1,0x6d,0x46, 0x2,0x51,0x3a, 0x2,0x51,0x3d,\n  0x2,0x57,0x6c, 0x4,0x50,0x6d, 0x5,0x5b,0x72, 0x2,0x57,0x6d,\n  0x2,0x57,0x6e, 0x4,0x56,0x52, 0x2,0x5d,0x38, 0x1,0x73,0x7d,\n  0x1,0x76,0x58, 0x2,0x65,0x65, 0x1,0x7a,0x73, 0x2,0x21,0x3f,\n  0x3,0x29,0x59, 0x1,0x51,0x74, 0x2,0x2b,0x49, 0x1,0x56,0x33,\n  0x4,0x32,0x4e, 0x4,0x32,0x50, 0x1,0x5b,0x44, 0x3,0x36,0x65,\n  0x1,0x60,0x26, 0x2,0x3d,0x27, 0x3,0x3c,0x4b, 0x1,0x64,0x5b,\n  0x1,0x64,0x5a, 0x3,0x42,0x26, 0x2,0x4b,0x31, 0x2,0x4b,0x32,\n  0x1,0x6d,0x47, 0x1,0x6d,0x48, 0x2,0x57,0x70, 0x2,0x57,0x6f,\n  0x2,0x61,0x75, 0x2,0x6f,0x32, 0x1,0x45,0x51, 0x2,0x21,0x40,\n  0x1,0x46,0x60, 0x3,0x23,0x7a, 0x1,0x4a,0x64, 0x2,0x24,0x48,\n  0x3,0x29,0x5a, 0x1,0x51,0x75, 0x1,0x64,0x5c, 0x1,0x45,0x52,\n  0x2,0x2b,0x4a, 0x1,0x51,0x76, 0x2,0x2b,0x4b, 0x1,0x73,0x7e,\n  0x1,0x45,0x53, 0x3,0x65,0x38, 0x3,0x65,0x39, 0x2,0x27,0x4d,\n  0x2,0x2b,0x4c, 0x3,0x2d,0x42, 0x2,0x30,0x25, 0x2,0x30,0x24,\n  0x2,0x30,0x22, 0x3,0x31,0x6e, 0x2,0x30,0x21, 0x2,0x30,0x26,\n  0x2,0x30,0x23, 0x3,0x31,0x6c, 0x3,0x31,0x6d, 0x1,0x5b,0x45,\n  0x1,0x5b,0x46, 0x3,0x36,0x66, 0x1,0x60,0x27, 0x2,0x3d,0x28,\n  0x4,0x38,0x4e, 0x2,0x3d,0x29, 0x2,0x3d,0x2a, 0x3,0x3c,0x4d,\n  0xf,0x3c,0x3c, 0x3,0x65,0x3a, 0x2,0x44,0x27, 0x2,0x44,0x28,\n  0x2,0x44,0x26, 0x3,0x42,0x28, 0x2,0x44,0x24, 0x2,0x44,0x25,\n  0x1,0x64,0x5d, 0x2,0x4b,0x33, 0x2,0x51,0x40, 0x2,0x51,0x3f,\n  0x2,0x51,0x3e, 0x2,0x51,0x41, 0x2,0x57,0x72, 0x2,0x57,0x71,\n  0x1,0x71,0x26, 0x2,0x57,0x73, 0x1,0x74,0x21, 0x2,0x5d,0x39,\n  0x3,0x55,0x2d, 0x2,0x61,0x76, 0x2,0x65,0x66, 0x2,0x6d,0x55,\n  0x1,0x45,0x54, 0x1,0x46,0x62, 0x1,0x46,0x61, 0x4,0x23,0x21,\n  0x1,0x4e,0x40, 0x2,0x21,0x41, 0x2,0x21,0x5f, 0x1,0x48,0x3c,\n  0x2,0x22,0x58, 0x2,0x24,0x49, 0x2,0x24,0x4a, 0x1,0x4e,0x41,\n  0x3,0x29,0x5d, 0x2,0x27,0x4e, 0x3,0x65,0x3b, 0x1,0x51,0x77,\n  0x2,0x2b,0x4d, 0x2,0x2b,0x4e, 0x1,0x56,0x34, 0x1,0x56,0x38,\n  0x2,0x30,0x27, 0x1,0x56,0x37, 0x1,0x56,0x35, 0x1,0x56,0x36,\n  0x2,0x36,0x43, 0x1,0x5b,0x47, 0x1,0x60,0x2a, 0x3,0x3c,0x4e,\n  0x1,0x60,0x28, 0x1,0x60,0x29, 0x2,0x3d,0x2b, 0x3,0x42,0x29,\n  0x3,0x42,0x2a, 0x1,0x69,0x3b, 0x1,0x45,0x55, 0x2,0x21,0x60,\n  0x3,0x22,0x57, 0x1,0x46,0x63, 0x3,0x22,0x54, 0x2,0x21,0x63,\n  0x3,0x24,0x21, 0x1,0x46,0x66, 0x2,0x21,0x62, 0x1,0x46,0x65,\n  0x1,0x46,0x64, 0x1,0x4a,0x65, 0x2,0x21,0x61, 0x3,0x22,0x58,\n  0x3,0x22,0x59, 0x2,0x22,0x59, 0xf,0x21,0x66, 0x2,0x22,0x5d,\n  0x2,0x22,0x5f, 0x2,0x22,0x60, 0x1,0x48,0x46, 0x1,0x48,0x47,\n  0x2,0x22,0x5c, 0x1,0x48,0x42, 0x3,0x23,0x7d, 0x2,0x22,0x5a,\n  0x3,0x24,0x25, 0x2,0x22,0x5e, 0x1,0x48,0x43, 0x3,0x26,0x55,\n  0x1,0x48,0x3e, 0x3,0x23,0x7c, 0x1,0x48,0x3f, 0x3,0x24,0x23,\n  0x1,0x48,0x45, 0x2,0x22,0x5b, 0x1,0x48,0x3d, 0x1,0x4a,0x66,\n  0x1,0x48,0x40, 0x1,0x48,0x41, 0x1,0x48,0x44, 0xf,0x22,0x5d,\n  0x3,0x65,0x3c, 0x2,0x24,0x5b, 0x2,0x24,0x59, 0x2,0x24,0x4c,\n  0x1,0x4a,0x72, 0x2,0x24,0x53, 0x1,0x4a,0x6d, 0x2,0x24,0x4d,\n  0x3,0x29,0x64, 0x2,0x24,0x55, 0x3,0x26,0x50, 0x2,0x24,0x52,\n  0x1,0x4a,0x70, 0x2,0x24,0x51, 0x1,0x4a,0x77, 0x2,0x24,0x5a,\n  0x1,0x4a,0x79, 0x3,0x26,0x53, 0x1,0x4a,0x7b, 0x3,0x23,0x7e,\n  0x2,0x24,0x4b, 0x3,0x26,0x57, 0x1,0x4a,0x6e, 0x2,0x24,0x5c,\n  0x3,0x26,0x51, 0x1,0x4a,0x75, 0x1,0x4a,0x78, 0x3,0x26,0x4c,\n  0x2,0x27,0x65, 0x1,0x4a,0x68, 0x1,0x4b,0x21, 0x1,0x4a,0x76,\n  0x2,0x24,0x4e, 0x1,0x4a,0x6b, 0x1,0x4a,0x7a, 0x2,0x24,0x56,\n  0x1,0x4a,0x69, 0x1,0x4a,0x6a, 0x2,0x27,0x63, 0x2,0x24,0x4f,\n  0x1,0x4a,0x71, 0x1,0x4a,0x7c, 0x2,0x24,0x5d, 0x2,0x24,0x50,\n  0x1,0x4a,0x6f, 0x3,0x26,0x4d, 0x1,0x4a,0x74, 0x2,0x27,0x4f,\n  0x1,0x4a,0x7d, 0x2,0x24,0x57, 0x1,0x4a,0x73, 0x3,0x29,0x63,\n  0x1,0x4a,0x7e, 0x1,0x4a,0x67, 0x2,0x24,0x54, 0x1,0x4a,0x6c,\n  0x2,0x24,0x58, 0x2,0x27,0x64, 0x3,0x26,0x4e, 0x3,0x26,0x52,\n  0x3,0x26,0x5c, 0x3,0x26,0x59, 0x3,0x26,0x56, 0xf,0x24,0x68,\n  0x3,0x26,0x5b, 0x1,0x4e,0x4d, 0x1,0x4e,0x5d, 0x2,0x27,0x56,\n  0x1,0x4e,0x54, 0x3,0x2d,0x4e, 0x2,0x27,0x6b, 0x1,0x4e,0x45,\n  0x3,0x29,0x6b, 0x1,0x4e,0x48, 0x2,0x27,0x62, 0x4,0x27,0x26,\n  0x2,0x27,0x54, 0x2,0x27,0x58, 0x1,0x4e,0x50, 0x1,0x4e,0x52,\n  0x2,0x27,0x5b, 0x1,0x4e,0x59, 0x1,0x4e,0x4b, 0x1,0x4e,0x49,\n  0x1,0x4e,0x4a, 0x1,0x4e,0x58, 0x2,0x27,0x67, 0x1,0x4e,0x53,\n  0x2,0x27,0x5a, 0x2,0x27,0x5c, 0x1,0x4e,0x51, 0x1,0x4e,0x56,\n  0x2,0x27,0x5d, 0x2,0x27,0x6a, 0x3,0x29,0x6d, 0x1,0x51,0x78,\n  0x1,0x4e,0x5c, 0x4,0x26,0x7d, 0x1,0x4e,0x46, 0x2,0x27,0x69,\n  0x3,0x29,0x6c, 0x2,0x27,0x6d, 0x2,0x27,0x59, 0x2,0x27,0x6f,\n  0x2,0x27,0x60, 0x1,0x4e,0x4f, 0x2,0x27,0x55, 0x1,0x4e,0x4e,\n  0x1,0x4e,0x60, 0x1,0x4e,0x55, 0x3,0x29,0x6a, 0x2,0x27,0x53,\n  0x2,0x2b,0x57, 0x1,0x4e,0x5b, 0x1,0x4e,0x5f, 0x2,0x27,0x61,\n  0x2,0x27,0x66, 0x3,0x29,0x65, 0x1,0x4e,0x61, 0x1,0x4e,0x5a,\n  0x1,0x4e,0x4c, 0x1,0x4e,0x42, 0x3,0x29,0x69, 0x1,0x4e,0x47,\n  0x4,0x26,0x7b, 0x2,0x27,0x57, 0x1,0x4e,0x43, 0x2,0x27,0x6e,\n  0x3,0x29,0x67, 0x2,0x27,0x51, 0x2,0x27,0x50, 0x2,0x27,0x5e,\n  0x2,0x27,0x52, 0x1,0x4e,0x5e, 0x1,0x56,0x39, 0x1,0x4e,0x57,\n  0x2,0x27,0x5f, 0x1,0x4e,0x44, 0x3,0x2d,0x4f, 0x1,0x52,0x29,\n  0x2,0x27,0x6c, 0x3,0x2d,0x46, 0x2,0x2b,0x5e, 0x2,0x2b,0x61,\n  0x3,0x2d,0x50, 0x2,0x2b,0x64, 0x2,0x2b,0x59, 0x3,0x2d,0x48,\n  0x3,0x2d,0x4a, 0x2,0x2b,0x67, 0x2,0x2b,0x6a, 0x2,0x2b,0x6c,\n  0x2,0x2b,0x56, 0x1,0x51,0x79, 0x1,0x51,0x7e, 0x2,0x30,0x2c,\n  0x1,0x52,0x30, 0x2,0x2b,0x65, 0x2,0x2b,0x6d, 0x2,0x2b,0x5d,\n  0x2,0x2b,0x55, 0x3,0x2d,0x49, 0x3,0x2d,0x47, 0x3,0x2d,0x4d,\n  0x2,0x30,0x47, 0x1,0x52,0x23, 0x2,0x2b,0x62, 0x2,0x2b,0x5a,\n  0x2,0x2b,0x5c, 0x1,0x52,0x28, 0x3,0x31,0x7a, 0x2,0x2b,0x5f,\n  0x1,0x52,0x22, 0x2,0x2b,0x52, 0x2,0x2b,0x68, 0x3,0x2d,0x4b,\n  0x2,0x2b,0x6b, 0x3,0x2d,0x45, 0x3,0x2d,0x57, 0x1,0x51,0x7d,\n  0x3,0x2d,0x53, 0x1,0x52,0x2b, 0x2,0x2b,0x4f, 0x1,0x52,0x2d,\n  0x1,0x51,0x7b, 0x1,0x52,0x31, 0x2,0x2b,0x69, 0x2,0x2b,0x51,\n  0x1,0x52,0x2e, 0x2,0x30,0x41, 0x2,0x27,0x68, 0x1,0x52,0x21,\n  0x1,0x51,0x7a, 0x2,0x2b,0x58, 0x2,0x2b,0x50, 0x1,0x52,0x2f,\n  0x1,0x52,0x27, 0x2,0x2b,0x63, 0x1,0x52,0x2c, 0x1,0x52,0x2a,\n  0x2,0x2b,0x5b, 0x1,0x52,0x24, 0x2,0x2b,0x53, 0x1,0x52,0x25,\n  0x1,0x52,0x26, 0x2,0x2b,0x54, 0x2,0x2b,0x66, 0x1,0x51,0x7c,\n  0x2,0x2b,0x60, 0x4,0x2a,0x21, 0x3,0x2d,0x55, 0x3,0x2d,0x51,\n  0x3,0x31,0x77, 0x3,0x31,0x73, 0x2,0x30,0x2f, 0x1,0x56,0x41,\n  0x1,0x56,0x46, 0x3,0x31,0x79, 0x3,0x32,0x26, 0x3,0x31,0x76,\n  0x2,0x30,0x38, 0x2,0x30,0x3e, 0x2,0x30,0x3a, 0x2,0x30,0x2d,\n  0x2,0x30,0x30, 0x2,0x30,0x29, 0x2,0x30,0x2a, 0x1,0x56,0x4d,\n  0x1,0x56,0x3e, 0x2,0x30,0x39, 0x2,0x30,0x42, 0x1,0x56,0x48,\n  0x1,0x56,0x3a, 0x3,0x31,0x6f, 0x1,0x56,0x43, 0x2,0x30,0x31,\n  0x1,0x56,0x45, 0x2,0x30,0x32, 0x2,0x30,0x3c, 0x3,0x32,0x22,\n  0x3,0x32,0x25, 0x3,0x31,0x72, 0x1,0x56,0x47, 0x2,0x30,0x4b,\n  0x2,0x30,0x2b, 0x1,0x56,0x40, 0x1,0x56,0x3f, 0x1,0x56,0x4b,\n  0x2,0x30,0x28, 0x2,0x30,0x49, 0x2,0x30,0x3d, 0x2,0x30,0x4a,\n  0x2,0x30,0x44, 0x2,0x30,0x36, 0x2,0x30,0x45, 0x3,0x32,0x21,\n  0x2,0x30,0x3f, 0x2,0x30,0x48, 0x2,0x30,0x46, 0x1,0x56,0x4c,\n  0x2,0x30,0x37, 0x1,0x56,0x3d, 0x1,0x56,0x3c, 0x1,0x56,0x44,\n  0x1,0x56,0x4a, 0x2,0x30,0x43, 0x1,0x56,0x49, 0x2,0x30,0x34,\n  0x1,0x5b,0x48, 0x3,0x31,0x78, 0x2,0x30,0x4c, 0x2,0x30,0x33,\n  0x2,0x30,0x2e, 0x1,0x56,0x42, 0x1,0x56,0x4e, 0x1,0x56,0x3b,\n  0x3,0x32,0x27, 0x2,0x30,0x3b, 0x2,0x30,0x40, 0x3,0x31,0x7d,\n  0x3,0x31,0x7b, 0x3,0x31,0x7c, 0x3,0x65,0x3d, 0x1,0x5b,0x6a,\n  0x2,0x36,0x45, 0x2,0x36,0x49, 0x3,0x36,0x6f, 0x1,0x5b,0x57,\n  0x1,0x5b,0x55, 0x3,0x36,0x7a, 0x3,0x37,0x21, 0x1,0x5b,0x4c,\n  0x2,0x36,0x47, 0x2,0x36,0x46, 0x1,0x5b,0x60, 0x3,0x3c,0x50,\n  0x2,0x36,0x4c, 0x1,0x5b,0x5a, 0x3,0x36,0x72, 0x2,0x36,0x5e,\n  0x2,0x36,0x6a, 0x1,0x5b,0x49, 0x2,0x36,0x5b, 0x2,0x36,0x54,\n  0x1,0x5b,0x6c, 0x2,0x36,0x44, 0x3,0x36,0x6a, 0x2,0x36,0x60,\n  0x3,0x36,0x6b, 0x1,0x5b,0x69, 0x1,0x5b,0x5d, 0x1,0x5b,0x68,\n  0x1,0x5b,0x53, 0x2,0x36,0x50, 0x2,0x36,0x62, 0x2,0x36,0x5a,\n  0x1,0x5b,0x54, 0x1,0x5b,0x4e, 0x2,0x36,0x68, 0x3,0x36,0x6c,\n  0x2,0x36,0x61, 0x2,0x36,0x63, 0x1,0x5b,0x56, 0x1,0x5b,0x5e,\n  0x2,0x36,0x65, 0x2,0x36,0x4e, 0x2,0x36,0x5f, 0x2,0x36,0x53,\n  0x2,0x36,0x67, 0x1,0x5b,0x63, 0x1,0x5b,0x4b, 0x1,0x5b,0x61,\n  0x2,0x36,0x58, 0x2,0x36,0x56, 0x2,0x36,0x57, 0x1,0x5b,0x58,\n  0x2,0x36,0x52, 0x2,0x36,0x51, 0x1,0x5b,0x4d, 0x2,0x36,0x4b,\n  0x2,0x36,0x69, 0x1,0x5b,0x4f, 0x2,0x36,0x55, 0x1,0x5b,0x6d,\n  0x3,0x36,0x74, 0x1,0x5b,0x67, 0x2,0x36,0x4a, 0x1,0x5b,0x64,\n  0x1,0x5b,0x62, 0x1,0x5b,0x6b, 0x2,0x36,0x5c, 0x1,0x5b,0x66,\n  0x2,0x30,0x35, 0x2,0x36,0x5d, 0x1,0x5b,0x65, 0x2,0x36,0x64,\n  0x1,0x5b,0x4a, 0x2,0x36,0x59, 0x1,0x5b,0x5c, 0x2,0x36,0x4d,\n  0x1,0x5b,0x5b, 0x3,0x36,0x7c, 0x1,0x5b,0x59, 0x1,0x5b,0x51,\n  0x1,0x5b,0x50, 0x2,0x3d,0x2c, 0x2,0x36,0x66, 0x3,0x3c,0x5d,\n  0x3,0x37,0x28, 0x2,0x36,0x4f, 0x3,0x37,0x26, 0x3,0x37,0x23,\n  0x2,0x3d,0x41, 0x3,0x36,0x70, 0x1,0x5b,0x52, 0x3,0x36,0x77,\n  0x3,0x37,0x24, 0x3,0x36,0x76, 0x3,0x37,0x25, 0x3,0x36,0x79,\n  0x4,0x32,0x6d, 0x3,0x36,0x7d, 0x3,0x65,0x3e, 0x3,0x37,0x29,\n  0xf,0x36,0x29, 0x3,0x37,0x27, 0x3,0x3c,0x54, 0x1,0x60,0x47,\n  0x1,0x5b,0x5f, 0x1,0x60,0x35, 0x2,0x3d,0x3b, 0x1,0x60,0x43,\n  0x3,0x3c,0x52, 0x2,0x3d,0x2f, 0x1,0x60,0x32, 0x1,0x60,0x2e,\n  0x2,0x3d,0x4d, 0x1,0x60,0x34, 0x1,0x60,0x38, 0x1,0x60,0x33,\n  0x1,0x60,0x3c, 0x2,0x3d,0x51, 0x2,0x3d,0x48, 0x3,0x3c,0x6b,\n  0x3,0x3c,0x6d, 0x2,0x3d,0x36, 0x1,0x60,0x41, 0x1,0x60,0x3b,\n  0x2,0x3d,0x42, 0x1,0x60,0x2b, 0x2,0x3d,0x4e, 0x2,0x3d,0x47,\n  0x1,0x60,0x2f, 0x2,0x3d,0x3c, 0x1,0x60,0x3e, 0x2,0x3d,0x59,\n  0x2,0x3d,0x5a, 0x4,0x38,0x5b, 0x1,0x60,0x2c, 0x2,0x3d,0x4c,\n  0x1,0x60,0x40, 0x2,0x3d,0x40, 0x2,0x3d,0x32, 0x2,0x3d,0x33,\n  0x1,0x60,0x44, 0x2,0x3d,0x37, 0x2,0x3d,0x3e, 0x2,0x3d,0x38,\n  0x3,0x3c,0x5a, 0x1,0x60,0x42, 0x1,0x60,0x4a, 0x2,0x3d,0x34,\n  0x2,0x3d,0x2d, 0x2,0x3d,0x2e, 0x3,0x3c,0x56, 0x2,0x3d,0x30,\n  0x1,0x60,0x31, 0x2,0x3d,0x3d, 0x3,0x3c,0x6e, 0x1,0x60,0x3f,\n  0x1,0x60,0x48, 0x3,0x3c,0x58, 0x3,0x3c,0x69, 0x2,0x3d,0x3f,\n  0x2,0x3d,0x57, 0x2,0x3d,0x4f, 0x1,0x60,0x2d, 0x2,0x3d,0x55,\n  0x1,0x60,0x39, 0x3,0x3c,0x66, 0x1,0x60,0x37, 0x3,0x3c,0x64,\n  0x2,0x3d,0x5b, 0x1,0x60,0x36, 0x2,0x3d,0x45, 0x2,0x3d,0x39,\n  0x2,0x3d,0x43, 0x1,0x60,0x4d, 0x2,0x3d,0x49, 0x2,0x3d,0x46,\n  0x2,0x3d,0x35, 0x1,0x60,0x49, 0x2,0x3d,0x53, 0x2,0x3d,0x50,\n  0x2,0x3d,0x58, 0x1,0x60,0x30, 0x2,0x3d,0x44, 0x1,0x60,0x4c,\n  0x3,0x3c,0x5b, 0x2,0x3d,0x4b, 0x3,0x42,0x3a, 0x3,0x3c,0x60,\n  0x1,0x60,0x3a, 0x1,0x60,0x3d, 0x3,0x3c,0x5c, 0x2,0x3d,0x4a,\n  0x1,0x60,0x4b, 0x2,0x3d,0x3a, 0x2,0x36,0x48, 0x3,0x3c,0x51,\n  0x3,0x3c,0x6c, 0x2,0x3d,0x54, 0x2,0x3d,0x52, 0x2,0x3d,0x56,\n  0xf,0x3c,0x5d, 0x3,0x3c,0x62, 0x3,0x65,0x42, 0x4,0x38,0x5e,\n  0x3,0x3c,0x63, 0x3,0x3c,0x68, 0xf,0x3c,0x47, 0x3,0x65,0x40,\n  0x4,0x38,0x5f, 0x2,0x3d,0x31, 0x1,0x60,0x46, 0x3,0x65,0x3f,\n  0x3,0x65,0x41, 0x2,0x44,0x47, 0x2,0x44,0x46, 0x2,0x44,0x2c,\n  0x1,0x64,0x63, 0x3,0x42,0x30, 0x2,0x44,0x45, 0x2,0x44,0x2f,\n  0x2,0x44,0x30, 0x4,0x3e,0x3f, 0x1,0x64,0x6d, 0x2,0x44,0x4e,\n  0x1,0x64,0x68, 0x2,0x44,0x44, 0x3,0x42,0x33, 0x2,0x44,0x29,\n  0x1,0x64,0x6e, 0x1,0x64,0x64, 0x2,0x44,0x38, 0x2,0x44,0x2e,\n  0x2,0x44,0x31, 0x2,0x44,0x49, 0x1,0x64,0x5e, 0x2,0x44,0x50,\n  0x2,0x44,0x48, 0x1,0x64,0x67, 0x2,0x44,0x3d, 0x1,0x64,0x72,\n  0x3,0x42,0x2e, 0x3,0x42,0x36, 0x1,0x64,0x71, 0x1,0x64,0x6b,\n  0x3,0x42,0x40, 0x4,0x3e,0x36, 0x2,0x44,0x4f, 0x1,0x64,0x5f,\n  0x2,0x44,0x3b, 0x2,0x44,0x32, 0x2,0x44,0x3f, 0x2,0x44,0x4b,\n  0x1,0x64,0x73, 0x3,0x42,0x39, 0x1,0x64,0x61, 0x2,0x44,0x3a,\n  0x3,0x42,0x2d, 0x2,0x44,0x33, 0x1,0x64,0x6a, 0x3,0x42,0x31,\n  0x1,0x64,0x69, 0x2,0x44,0x36, 0x2,0x44,0x40, 0x2,0x44,0x4a,\n  0x2,0x44,0x2d, 0x2,0x44,0x37, 0x1,0x64,0x62, 0x2,0x44,0x41,\n  0x1,0x64,0x6f, 0x1,0x64,0x66, 0x2,0x44,0x34, 0x1,0x64,0x65,\n  0x2,0x44,0x2b, 0x2,0x44,0x39, 0x2,0x44,0x4d, 0x1,0x60,0x45,\n  0x1,0x69,0x57, 0x2,0x44,0x3c, 0x2,0x4b,0x34, 0x2,0x44,0x3e,\n  0x2,0x44,0x4c, 0x1,0x64,0x6c, 0x2,0x44,0x35, 0x1,0x64,0x60,\n  0x1,0x64,0x70, 0x1,0x6d,0x5a, 0x2,0x44,0x2a, 0x6,0x54,0x4e,\n  0x2,0x44,0x43, 0x3,0x42,0x44, 0x3,0x42,0x3e, 0x3,0x42,0x47,\n  0x2,0x44,0x42, 0x3,0x42,0x3d, 0x3,0x42,0x45, 0x3,0x42,0x3f,\n  0x3,0x42,0x3b, 0x3,0x42,0x46, 0x2,0x4b,0x50, 0x1,0x69,0x54,\n  0x2,0x4b,0x45, 0x2,0x4b,0x4a, 0x1,0x69,0x49, 0x3,0x47,0x56,\n  0x2,0x4b,0x36, 0x1,0x69,0x56, 0x3,0x47,0x57, 0x1,0x69,0x40,\n  0x2,0x4b,0x35, 0x2,0x4b,0x56, 0x1,0x69,0x58, 0x2,0x4b,0x39,\n  0x2,0x4b,0x49, 0x3,0x47,0x65, 0x2,0x4b,0x3b, 0x2,0x4b,0x59,\n  0x2,0x4b,0x55, 0x1,0x69,0x3e, 0x1,0x69,0x48, 0x2,0x51,0x5b,\n  0x1,0x69,0x55, 0x1,0x69,0x46, 0x2,0x4b,0x37, 0x3,0x47,0x63,\n  0x2,0x4b,0x54, 0x1,0x69,0x4a, 0x2,0x4b,0x51, 0x2,0x4b,0x5e,\n  0x2,0x4b,0x3d, 0x2,0x4b,0x46, 0x3,0x4c,0x78, 0x3,0x47,0x5b,\n  0x2,0x4b,0x5c, 0x2,0x4b,0x52, 0x1,0x69,0x45, 0x3,0x4c,0x6a,\n  0x3,0x47,0x64, 0x2,0x4b,0x44, 0x1,0x69,0x3f, 0x1,0x69,0x3d,\n  0x1,0x69,0x4f, 0x4,0x44,0x43, 0x3,0x47,0x5f, 0x2,0x4b,0x42,\n  0x2,0x4b,0x3f, 0x2,0x4b,0x40, 0x3,0x47,0x5a, 0x2,0x4b,0x58,\n  0x3,0x47,0x5c, 0x2,0x4b,0x5d, 0x2,0x4b,0x5b, 0x1,0x69,0x43,\n  0x2,0x4b,0x5f, 0x1,0x69,0x47, 0x1,0x69,0x4e, 0x4,0x44,0x44,\n  0x2,0x4b,0x38, 0x2,0x51,0x43, 0x2,0x4b,0x41, 0x3,0x47,0x5e,\n  0x1,0x69,0x41, 0x1,0x69,0x53, 0x1,0x69,0x50, 0x1,0x69,0x44,\n  0x2,0x4b,0x4b, 0x2,0x4b,0x3c, 0x1,0x69,0x51, 0x2,0x4b,0x4d,\n  0x1,0x69,0x4b, 0x1,0x69,0x4d, 0x1,0x69,0x3c, 0x3,0x47,0x5d,\n  0x2,0x4b,0x4f, 0x2,0x4b,0x47, 0x2,0x4b,0x3a, 0x1,0x69,0x4c,\n  0x2,0x4b,0x57, 0x2,0x4b,0x5a, 0x2,0x4b,0x43, 0x2,0x4b,0x4e,\n  0x3,0x4c,0x74, 0x1,0x69,0x42, 0x1,0x6d,0x49, 0x2,0x4b,0x4c,\n  0x2,0x51,0x42, 0x3,0x47,0x62, 0x2,0x4b,0x53, 0x3,0x47,0x61,\n  0x4,0x44,0x52, 0xf,0x4f,0x79, 0x3,0x65,0x44, 0x3,0x65,0x45,\n  0x3,0x47,0x66, 0x3,0x65,0x43, 0x2,0x4b,0x3e, 0x2,0x51,0x4c,\n  0x2,0x51,0x56, 0x1,0x6d,0x4c, 0x2,0x51,0x55, 0x2,0x51,0x61,\n  0x1,0x6d,0x4e, 0x2,0x51,0x53, 0x4,0x4a,0x58, 0x2,0x51,0x57,\n  0x1,0x6d,0x59, 0x3,0x4c,0x7d, 0x2,0x51,0x4e, 0x1,0x6d,0x51,\n  0x3,0x4c,0x73, 0x2,0x51,0x5a, 0x2,0x57,0x7b, 0x1,0x6d,0x5d,\n  0x1,0x6d,0x5c, 0x2,0x51,0x5c, 0x2,0x51,0x4b, 0x2,0x51,0x66,\n  0x1,0x6d,0x57, 0x3,0x4c,0x6b, 0x1,0x6d,0x4d, 0x2,0x51,0x5f,\n  0x4,0x4a,0x69, 0x2,0x51,0x63, 0x2,0x51,0x68, 0x2,0x51,0x5d,\n  0x2,0x51,0x51, 0x1,0x6d,0x50, 0x1,0x6d,0x53, 0x1,0x6d,0x5b,\n  0x1,0x6d,0x56, 0x3,0x4c,0x75, 0x2,0x51,0x54, 0x2,0x4b,0x48,\n  0x3,0x4c,0x7e, 0x3,0x4c,0x6c, 0x2,0x51,0x50, 0x2,0x51,0x67,\n  0x1,0x6d,0x52, 0x3,0x4c,0x79, 0x1,0x6d,0x55, 0x2,0x51,0x69,\n  0x1,0x6d,0x4a, 0x2,0x51,0x5e, 0x2,0x51,0x44, 0x2,0x51,0x64,\n  0x1,0x74,0x2a, 0x3,0x4c,0x7a, 0x2,0x51,0x52, 0x4,0x50,0x75,\n  0x1,0x6d,0x4b, 0x2,0x51,0x4d, 0x1,0x6d,0x4f, 0x2,0x51,0x45,\n  0x1,0x69,0x52, 0x2,0x51,0x49, 0x4,0x4a,0x57, 0x2,0x51,0x62,\n  0x2,0x51,0x4a, 0x2,0x51,0x48, 0x1,0x6d,0x54, 0x3,0x4c,0x7b,\n  0x2,0x51,0x60, 0x3,0x4c,0x77, 0x2,0x51,0x47, 0x2,0x51,0x59,\n  0x2,0x51,0x58, 0x2,0x51,0x65, 0x2,0x51,0x4f, 0x1,0x6d,0x58,\n  0x4,0x4a,0x64, 0x3,0x65,0x47, 0xf,0x4f,0x7d, 0x3,0x65,0x46,\n  0x2,0x57,0x7e, 0x3,0x51,0x56, 0x1,0x71,0x33, 0x1,0x71,0x29,\n  0x2,0x58,0x2c, 0x2,0x57,0x76, 0x1,0x71,0x2b, 0x2,0x58,0x24,\n  0x1,0x71,0x32, 0x1,0x71,0x2d, 0x2,0x58,0x22, 0x2,0x5d,0x3b,\n  0x2,0x58,0x28, 0x2,0x58,0x2e, 0x2,0x58,0x27, 0x2,0x57,0x74,\n  0x2,0x58,0x25, 0x2,0x58,0x30, 0x2,0x58,0x32, 0x1,0x71,0x28,\n  0x2,0x58,0x31, 0x1,0x71,0x2e, 0x1,0x71,0x34, 0x3,0x51,0x54,\n  0x1,0x71,0x31, 0x3,0x51,0x58, 0x2,0x58,0x2b, 0x1,0x71,0x30,\n  0x2,0x58,0x26, 0x3,0x51,0x4d, 0x2,0x57,0x78, 0x2,0x57,0x7d,\n  0x3,0x51,0x50, 0x2,0x58,0x2a, 0x1,0x71,0x2f, 0x1,0x71,0x2c,\n  0x1,0x71,0x27, 0x1,0x71,0x2a, 0x2,0x57,0x7c, 0x4,0x51,0x22,\n  0x2,0x51,0x46, 0x2,0x57,0x77, 0x2,0x57,0x7a, 0x2,0x58,0x2d,\n  0x2,0x58,0x21, 0x2,0x57,0x75, 0x2,0x5d,0x3a, 0x2,0x58,0x2f,\n  0x2,0x57,0x79, 0x2,0x58,0x29, 0x3,0x4c,0x71, 0x3,0x51,0x55,\n  0x2,0x5d,0x3d, 0x1,0x74,0x2e, 0x3,0x55,0x30, 0x3,0x55,0x2f,\n  0x1,0x74,0x22, 0x3,0x55,0x35, 0x3,0x55,0x36, 0x1,0x74,0x26,\n  0x2,0x5d,0x3f, 0x2,0x5d,0x45, 0x2,0x5d,0x43, 0x1,0x74,0x24,\n  0x1,0x74,0x25, 0x1,0x74,0x2c, 0x2,0x5d,0x46, 0x2,0x5d,0x3e,\n  0x1,0x74,0x27, 0x3,0x55,0x31, 0x2,0x5d,0x42, 0x2,0x5d,0x41,\n  0x2,0x5d,0x47, 0x1,0x74,0x2d, 0x3,0x55,0x37, 0x1,0x74,0x28,\n  0x1,0x74,0x2b, 0x2,0x5d,0x40, 0x1,0x74,0x2f, 0x1,0x74,0x29,\n  0x1,0x74,0x30, 0x1,0x74,0x23, 0x2,0x5d,0x44, 0x3,0x5a,0x55,\n  0x2,0x5d,0x3c, 0x3,0x51,0x59, 0x3,0x55,0x39, 0x2,0x62,0x25,\n  0x3,0x65,0x48, 0x1,0x76,0x5d, 0x2,0x62,0x22, 0x2,0x62,0x24,\n  0x3,0x58,0x28, 0x1,0x76,0x5b, 0x2,0x61,0x7e, 0x2,0x62,0x21,\n  0x2,0x61,0x7a, 0x3,0x58,0x2a, 0x3,0x58,0x27, 0x2,0x58,0x23,\n  0x2,0x61,0x7b, 0x1,0x76,0x5c, 0x2,0x61,0x77, 0x3,0x58,0x26,\n  0x1,0x76,0x59, 0x2,0x62,0x26, 0x1,0x76,0x5a, 0x2,0x61,0x78,\n  0x2,0x61,0x79, 0x2,0x61,0x7d, 0x1,0x76,0x5f, 0x3,0x58,0x29,\n  0x1,0x76,0x5e, 0x4,0x5b,0x5e, 0x3,0x58,0x2b, 0x2,0x61,0x7c,\n  0x1,0x78,0x45, 0x2,0x65,0x6a, 0x2,0x65,0x70, 0x1,0x78,0x46,\n  0x2,0x65,0x67, 0x1,0x78,0x43, 0x1,0x78,0x40, 0x2,0x65,0x72,\n  0x1,0x78,0x44, 0x3,0x5a,0x52, 0x1,0x78,0x41, 0x2,0x65,0x69,\n  0x2,0x65,0x6c, 0x2,0x65,0x6d, 0x2,0x65,0x6e, 0x2,0x65,0x71,\n  0x3,0x5a,0x54, 0x2,0x62,0x23, 0x2,0x65,0x68, 0x1,0x78,0x42,\n  0x2,0x65,0x6f, 0x2,0x69,0x34, 0x2,0x65,0x6b, 0x3,0x5a,0x53,\n  0x3,0x65,0x4a, 0x3,0x65,0x49, 0x2,0x69,0x2b, 0x1,0x79,0x75,\n  0x2,0x69,0x2e, 0x1,0x79,0x76, 0x2,0x69,0x37, 0x2,0x69,0x2d,\n  0x2,0x69,0x2a, 0x3,0x5c,0x51, 0x2,0x69,0x2c, 0x2,0x69,0x30,\n  0x2,0x69,0x33, 0x2,0x69,0x32, 0x2,0x69,0x36, 0x2,0x69,0x29,\n  0x3,0x5c,0x4f, 0x1,0x79,0x74, 0x2,0x69,0x31, 0x2,0x69,0x35,\n  0x2,0x69,0x38, 0x2,0x69,0x2f, 0x2,0x6b,0x61, 0x2,0x6b,0x62,\n  0x2,0x6b,0x66, 0x2,0x6b,0x67, 0x3,0x5e,0x3c, 0x2,0x6b,0x64,\n  0x2,0x6b,0x65, 0x2,0x6b,0x63, 0x3,0x5e,0x3a, 0x1,0x7a,0x74,\n  0x3,0x5e,0x3b, 0x1,0x7b,0x64, 0x2,0x6d,0x59, 0x3,0x60,0x36,\n  0x3,0x5f,0x52, 0x2,0x6d,0x56, 0x2,0x6d,0x57, 0x2,0x6d,0x58,\n  0x1,0x7b,0x65, 0x3,0x60,0x37, 0x2,0x6f,0x34, 0x2,0x6f,0x33,\n  0x3,0x65,0x4b, 0x2,0x70,0x3d, 0x1,0x7c,0x60, 0x2,0x70,0x3b,\n  0x2,0x70,0x3e, 0x2,0x70,0x3c, 0x2,0x71,0x25, 0x1,0x7d,0x24,\n  0x1,0x7d,0x32, 0x2,0x71,0x71, 0x2,0x71,0x5b, 0x3,0x61,0x79,\n  0x2,0x71,0x70, 0x2,0x72,0x3e, 0x2,0x72,0x3f, 0x1,0x45,0x56,\n  0x4,0x21,0x50, 0x3,0x24,0x28, 0x3,0x24,0x26, 0x1,0x48,0x48,\n  0x2,0x22,0x61, 0x3,0x24,0x27, 0x3,0x24,0x2b, 0x2,0x24,0x5e,\n  0x3,0x26,0x62, 0x1,0x4b,0x22, 0x3,0x26,0x5f, 0x1,0x4b,0x25,\n  0x3,0x26,0x5e, 0x2,0x24,0x5f, 0x3,0x26,0x63, 0x1,0x4b,0x23,\n  0x1,0x4b,0x24, 0x3,0x26,0x60, 0xf,0x24,0x71, 0x3,0x29,0x77,\n  0x2,0x27,0x78, 0x2,0x27,0x7a, 0x2,0x27,0x75, 0x2,0x27,0x72,\n  0x2,0x27,0x74, 0x3,0x29,0x74, 0x3,0x29,0x70, 0x3,0x29,0x75,\n  0x1,0x4e,0x65, 0x3,0x29,0x6f, 0x3,0x29,0x79, 0x3,0x29,0x76,\n  0x1,0x4e,0x63, 0x3,0x29,0x72, 0x3,0x29,0x71, 0x2,0x27,0x76,\n  0x1,0x4e,0x64, 0x2,0x27,0x73, 0x2,0x27,0x70, 0x1,0x4e,0x62,\n  0x2,0x27,0x77, 0x4,0x27,0x29, 0x2,0x27,0x71, 0x1,0x4e,0x66,\n  0x2,0x27,0x79, 0x4,0x27,0x2b, 0x2,0x2b,0x6f, 0x3,0x2d,0x5e,\n  0x2,0x2b,0x73, 0x3,0x2d,0x5c, 0x3,0x2d,0x5a, 0x1,0x52,0x3a,\n  0x3,0x2d,0x58, 0x4,0x2a,0x26, 0x3,0x2d,0x65, 0x3,0x2d,0x62,\n  0x2,0x2b,0x76, 0x3,0x2d,0x5f, 0x1,0x52,0x32, 0x1,0x52,0x35,\n  0x1,0x52,0x37, 0x1,0x52,0x39, 0x1,0x52,0x36, 0x2,0x2b,0x72,\n  0x2,0x2b,0x71, 0x3,0x2d,0x64, 0x1,0x52,0x34, 0x2,0x2b,0x74,\n  0x2,0x2b,0x75, 0x3,0x2d,0x63, 0x2,0x2b,0x6e, 0x1,0x52,0x38,\n  0x3,0x2d,0x68, 0x1,0x52,0x33, 0x3,0x2d,0x5d, 0x2,0x2b,0x70,\n  0x3,0x65,0x4d, 0x4,0x2a,0x28, 0x3,0x32,0x28, 0x2,0x30,0x5a,\n  0x2,0x30,0x5b, 0x2,0x30,0x5c, 0x1,0x56,0x53, 0x4,0x2d,0x75,\n  0x1,0x56,0x4f, 0x2,0x30,0x51, 0x3,0x32,0x2a, 0x2,0x30,0x59,\n  0x2,0x30,0x5e, 0x1,0x56,0x54, 0x3,0x32,0x2b, 0x2,0x30,0x4f,\n  0x2,0x30,0x55, 0x2,0x30,0x4e, 0x2,0x30,0x58, 0x3,0x32,0x31,\n  0x3,0x32,0x2f, 0x2,0x30,0x54, 0x1,0x56,0x50, 0x1,0x56,0x52,\n  0x2,0x30,0x5d, 0x3,0x32,0x29, 0x2,0x30,0x4d, 0x2,0x30,0x50,\n  0x2,0x30,0x56, 0x3,0x32,0x2d, 0x2,0x30,0x57, 0x2,0x30,0x5f,\n  0x2,0x30,0x53, 0x3,0x32,0x2c, 0x1,0x56,0x51, 0x3,0x65,0x4f,\n  0x3,0x65,0x4e, 0x3,0x32,0x30, 0x1,0x5b,0x72, 0x2,0x36,0x71,\n  0x3,0x37,0x30, 0x3,0x37,0x32, 0x2,0x36,0x73, 0x2,0x36,0x6f,\n  0x3,0x37,0x2f, 0x2,0x36,0x7b, 0x2,0x36,0x6d, 0x2,0x36,0x7a,\n  0x1,0x5b,0x6e, 0x2,0x36,0x6b, 0x2,0x3d,0x5f, 0x2,0x36,0x75,\n  0x1,0x5b,0x71, 0x3,0x37,0x35, 0x2,0x36,0x76, 0x2,0x36,0x79,\n  0x3,0x37,0x2e, 0x2,0x36,0x7d, 0x3,0x37,0x2c, 0x2,0x36,0x72,\n  0x4,0x32,0x72, 0x2,0x36,0x77, 0x3,0x37,0x2d, 0x3,0x37,0x31,\n  0x1,0x5b,0x6f, 0x1,0x5b,0x70, 0x2,0x36,0x7c, 0x2,0x36,0x70,\n  0x2,0x36,0x6c, 0x2,0x36,0x7e, 0x3,0x37,0x33, 0x2,0x36,0x74,\n  0x3,0x65,0x50, 0x3,0x65,0x51, 0x2,0x36,0x78, 0x2,0x36,0x6e,\n  0x1,0x60,0x4e, 0x1,0x60,0x4f, 0x2,0x3d,0x69, 0x1,0x60,0x55,\n  0x3,0x3c,0x74, 0x2,0x3d,0x5d, 0x2,0x3d,0x66, 0x2,0x3d,0x5c,\n  0x1,0x60,0x52, 0x2,0x3d,0x64, 0x2,0x3d,0x62, 0x3,0x3c,0x7d,\n  0x2,0x3d,0x63, 0x1,0x60,0x50, 0x3,0x3c,0x7c, 0x2,0x3d,0x67,\n  0xf,0x3c,0x7e, 0x3,0x3c,0x6f, 0x3,0x3c,0x7a, 0x3,0x3c,0x72,\n  0x3,0x3d,0x21, 0x2,0x3d,0x60, 0x2,0x3d,0x5e, 0x1,0x60,0x51,\n  0x2,0x3d,0x61, 0x2,0x3d,0x65, 0x3,0x3c,0x7b, 0x3,0x3c,0x79,\n  0x3,0x3c,0x71, 0x1,0x60,0x53, 0x3,0x3c,0x73, 0x3,0x3c,0x77,\n  0x3,0x65,0x53, 0x2,0x3d,0x68, 0x3,0x65,0x54, 0x3,0x65,0x55,\n  0x3,0x65,0x52, 0x2,0x44,0x56, 0x2,0x44,0x5d, 0x2,0x44,0x5f,\n  0x2,0x44,0x65, 0x3,0x42,0x57, 0x1,0x65,0x22, 0x2,0x44,0x51,\n  0x3,0x42,0x4c, 0x1,0x64,0x78, 0x3,0x42,0x4e, 0x2,0x44,0x60,\n  0x1,0x64,0x7d, 0x2,0x44,0x66, 0x1,0x64,0x74, 0x3,0x42,0x51,\n  0x2,0x44,0x63, 0x3,0x42,0x58, 0x2,0x44,0x53, 0x2,0x44,0x64,\n  0x2,0x44,0x52, 0x1,0x65,0x24, 0x3,0x42,0x52, 0x2,0x44,0x5e,\n  0x1,0x64,0x75, 0x2,0x44,0x67, 0x3,0x48,0x3c, 0x1,0x64,0x7a,\n  0x2,0x44,0x57, 0x1,0x65,0x21, 0x2,0x44,0x62, 0x2,0x44,0x55,\n  0x2,0x44,0x5c, 0x2,0x44,0x58, 0x2,0x44,0x54, 0x1,0x64,0x77,\n  0x1,0x64,0x7e, 0x1,0x64,0x7c, 0x1,0x64,0x79, 0x1,0x65,0x23,\n  0x1,0x64,0x76, 0x2,0x44,0x5b, 0x3,0x42,0x4f, 0x1,0x64,0x7b,\n  0x3,0x42,0x59, 0x1,0x60,0x54, 0x3,0x42,0x49, 0x2,0x44,0x61,\n  0x3,0x65,0x59, 0x2,0x44,0x59, 0x3,0x42,0x53, 0x3,0x65,0x57,\n  0x3,0x65,0x58, 0x3,0x65,0x56, 0x2,0x44,0x5a, 0x4,0x44,0x57,\n  0x4,0x44,0x5b, 0x2,0x4b,0x67, 0x3,0x47,0x6f, 0x1,0x69,0x5b,\n  0x3,0x47,0x6e, 0x3,0x47,0x6c, 0x2,0x4b,0x63, 0x2,0x4b,0x69,\n  0x2,0x4b,0x65, 0x3,0x47,0x70, 0x1,0x69,0x5d, 0x2,0x4b,0x64,\n  0x2,0x4b,0x68, 0x2,0x4b,0x60, 0x3,0x47,0x72, 0x2,0x4b,0x62,\n  0x1,0x69,0x5c, 0x3,0x47,0x6a, 0x3,0x47,0x6d, 0x3,0x47,0x6b,\n  0x3,0x47,0x68, 0x2,0x4b,0x66, 0x2,0x4b,0x61, 0x3,0x47,0x67,\n  0x1,0x69,0x5e, 0x3,0x65,0x5b, 0x1,0x69,0x59, 0xf,0x49,0x4b,\n  0x3,0x65,0x5a, 0x2,0x4b,0x6a, 0xf,0x49,0x5f, 0x1,0x69,0x5a,\n  0x2,0x51,0x6f, 0x2,0x51,0x6c, 0x2,0x51,0x78, 0x2,0x51,0x72,\n  0x2,0x51,0x74, 0x1,0x6d,0x5e, 0x2,0x51,0x6e, 0x2,0x51,0x76,\n  0x3,0x4d,0x2a, 0x3,0x4d,0x24, 0x2,0x51,0x75, 0x2,0x51,0x73,\n  0x3,0x4d,0x29, 0x2,0x51,0x79, 0x1,0x6d,0x61, 0x2,0x51,0x70,\n  0x2,0x51,0x77, 0x3,0x4d,0x28, 0x1,0x6d,0x5f, 0x3,0x4d,0x25,\n  0x3,0x4d,0x22, 0x2,0x51,0x6b, 0x2,0x51,0x6d, 0x1,0x6d,0x60,\n  0x2,0x51,0x6a, 0x2,0x51,0x7a, 0x3,0x65,0x5c, 0x2,0x51,0x71,\n  0x3,0x51,0x62, 0x3,0x51,0x5a, 0x2,0x58,0x36, 0x1,0x71,0x3b,\n  0x3,0x51,0x60, 0x3,0x51,0x5c, 0x2,0x58,0x41, 0x2,0x58,0x3f,\n  0x1,0x71,0x35, 0x2,0x58,0x35, 0x2,0x58,0x38, 0x2,0x58,0x39,\n  0x2,0x58,0x34, 0x1,0x71,0x3f, 0x1,0x71,0x40, 0x2,0x58,0x33,\n  0x2,0x58,0x42, 0x2,0x58,0x3d, 0x1,0x71,0x39, 0x1,0x71,0x36,\n  0x2,0x58,0x3c, 0x2,0x58,0x3a, 0x3,0x51,0x63, 0x4,0x51,0x23,\n  0x1,0x71,0x3c, 0x2,0x58,0x3e, 0x1,0x71,0x37, 0x3,0x51,0x5e,\n  0x1,0x71,0x38, 0x3,0x51,0x66, 0x2,0x58,0x3b, 0x1,0x71,0x3a,\n  0x2,0x58,0x37, 0x7,0x2f,0x4f, 0x2,0x58,0x40, 0x1,0x71,0x3d,\n  0x2,0x58,0x43, 0x2,0x58,0x44, 0x1,0x71,0x3e, 0x3,0x65,0x5d,\n  0x3,0x65,0x5e, 0x1,0x74,0x32, 0x1,0x74,0x39, 0x2,0x5d,0x48,\n  0x2,0x5d,0x4e, 0x3,0x55,0x3c, 0x2,0x5d,0x4c, 0x1,0x74,0x35,\n  0x1,0x74,0x34, 0x1,0x74,0x31, 0x2,0x5d,0x4a, 0x3,0x55,0x3e,\n  0x3,0x55,0x43, 0x3,0x55,0x40, 0x1,0x74,0x37, 0x1,0x74,0x36,\n  0x1,0x74,0x33, 0x3,0x55,0x41, 0x2,0x5d,0x4d, 0x2,0x5d,0x49,\n  0x2,0x5d,0x4b, 0x3,0x55,0x42, 0x1,0x74,0x38, 0xf,0x5a,0x73,\n  0x1,0x76,0x63, 0x2,0x62,0x29, 0x3,0x58,0x2d, 0x1,0x76,0x60,\n  0x1,0x76,0x61, 0x2,0x62,0x2b, 0x1,0x76,0x62, 0x2,0x62,0x28,\n  0x3,0x58,0x2e, 0x2,0x62,0x27, 0x2,0x65,0x76, 0x2,0x62,0x2a,\n  0x3,0x5a,0x56, 0x2,0x65,0x77, 0x1,0x78,0x47, 0x2,0x65,0x75,\n  0x3,0x5a,0x57, 0x4,0x5f,0x7e, 0x2,0x65,0x74, 0x3,0x5c,0x59,\n  0x2,0x65,0x73, 0x1,0x78,0x48, 0x3,0x65,0x5f, 0x3,0x5c,0x56,\n  0x1,0x79,0x77, 0x3,0x5c,0x58, 0x3,0x5c,0x55, 0x2,0x69,0x39,\n  0x2,0x69,0x3a, 0x3,0x5a,0x58, 0x3,0x5c,0x53, 0x3,0x5c,0x57,\n  0x3,0x65,0x61, 0x2,0x6b,0x6a, 0x2,0x6b,0x69, 0x1,0x7a,0x75,\n  0x3,0x5f,0x53, 0x2,0x6b,0x68, 0x2,0x6d,0x5a, 0x2,0x6d,0x5b,\n  0x3,0x5f,0x54, 0x3,0x60,0x39, 0x2,0x6f,0x35, 0x2,0x70,0x3f,\n  0x3,0x61,0x43, 0x3,0x61,0x42, 0x2,0x71,0x26, 0x2,0x72,0x2c,\n  0x1,0x7d,0x46, 0x2,0x72,0x40, 0x1,0x45,0x57, 0x4,0x21,0x51,\n  0x1,0x4e,0x67, 0x1,0x4e,0x68, 0x3,0x2d,0x69, 0x4,0x2a,0x2a,\n  0x1,0x52,0x3b, 0x3,0x3d,0x22, 0x4,0x4a,0x6c, 0x1,0x74,0x3a,\n  0x1,0x45,0x58, 0x1,0x4e,0x69, 0x1,0x56,0x55, 0x1,0x65,0x25,\n  0x1,0x45,0x59, 0x3,0x2d,0x6b, 0x1,0x5b,0x73, 0x1,0x69,0x5f,\n  0x2,0x21,0x42, 0x3,0x29,0x7c, 0x2,0x2b,0x77, 0x2,0x30,0x60,\n  0x4,0x3e,0x4c, 0x2,0x4b,0x6b, 0x4,0x4a,0x6d, 0x1,0x74,0x3b,\n  0x1,0x45,0x5a, 0x1,0x4e,0x6a, 0x2,0x2b,0x78, 0x2,0x2b,0x79,\n  0x2,0x3d,0x6a, 0x1,0x60,0x56, 0x3,0x42,0x5d, 0x2,0x44,0x68,\n  0x3,0x42,0x5c, 0x3,0x42,0x5b, 0x1,0x65,0x26, 0x2,0x4b,0x6c,\n  0x4,0x44,0x5e, 0x3,0x4d,0x2e, 0x1,0x6d,0x62, 0x3,0x4d,0x2d,\n  0x1,0x78,0x49, 0x1,0x45,0x5b, 0x2,0x3d,0x6b, 0x1,0x45,0x5c,\n  0x1,0x48,0x4a, 0x2,0x22,0x62, 0x1,0x48,0x49, 0x1,0x4b,0x28,\n  0x1,0x4b,0x27, 0x1,0x4b,0x26, 0x2,0x24,0x60, 0x3,0x26,0x64,\n  0x3,0x2a,0x21, 0x3,0x2a,0x22, 0x1,0x4e,0x6b, 0x3,0x2a,0x23,\n  0x1,0x4e,0x6c, 0x2,0x27,0x7b, 0x4,0x27,0x31, 0x2,0x2b,0x7a,\n  0x3,0x2d,0x6d, 0x2,0x2b,0x7d, 0x1,0x52,0x3d, 0x2,0x2b,0x7b,\n  0x4,0x2a,0x2f, 0x1,0x52,0x3c, 0x2,0x2b,0x7c, 0x1,0x52,0x3e,\n  0x2,0x30,0x63, 0x2,0x30,0x62, 0x2,0x30,0x61, 0x1,0x56,0x56,\n  0x3,0x32,0x36, 0x2,0x37,0x22, 0x2,0x37,0x23, 0x1,0x5b,0x74,\n  0x2,0x37,0x21, 0x2,0x37,0x24, 0x1,0x60,0x58, 0x1,0x5b,0x75,\n  0x3,0x3d,0x24, 0x3,0x3d,0x23, 0x1,0x60,0x57, 0x2,0x3d,0x6f,\n  0x2,0x3d,0x6e, 0x3,0x3d,0x25, 0x2,0x3d,0x6c, 0x2,0x3d,0x6d,\n  0x2,0x3d,0x70, 0x2,0x44,0x6a, 0x2,0x44,0x69, 0x2,0x44,0x6d,\n  0x4,0x3e,0x4f, 0x2,0x44,0x6c, 0x2,0x44,0x6b, 0x1,0x69,0x60,\n  0x2,0x4b,0x6f, 0x3,0x47,0x75, 0x2,0x4b,0x6e, 0x1,0x69,0x61,\n  0x2,0x4b,0x6d, 0x2,0x51,0x7b, 0x3,0x4d,0x2f, 0x2,0x51,0x7c,\n  0x1,0x6d,0x63, 0x4,0x51,0x2d, 0x2,0x58,0x45, 0x2,0x58,0x46,\n  0x5,0x4e,0x37, 0x2,0x65,0x7c, 0x1,0x78,0x4a, 0x2,0x65,0x7b,\n  0x2,0x65,0x7a, 0x2,0x65,0x78, 0x2,0x65,0x79, 0x1,0x7a,0x76,\n  0x2,0x69,0x3b, 0x2,0x6d,0x5c, 0x2,0x71,0x27, 0x3,0x61,0x7b,\n  0x1,0x45,0x5d, 0x4,0x21,0x38, 0x2,0x21,0x64, 0x1,0x46,0x67,\n  0x2,0x21,0x65, 0x3,0x24,0x2c, 0x3,0x24,0x2d, 0x4,0x23,0x27,\n  0x2,0x22,0x63, 0x2,0x22,0x64, 0x3,0x26,0x6b, 0x3,0x26,0x69,\n  0x2,0x24,0x66, 0x3,0x26,0x66, 0x3,0x26,0x67, 0x2,0x24,0x62,\n  0x3,0x26,0x6a, 0x2,0x24,0x61, 0x1,0x4e,0x6d, 0x2,0x24,0x65,\n  0x1,0x4b,0x2a, 0x2,0x24,0x63, 0x1,0x4b,0x29, 0x2,0x24,0x67,\n  0x2,0x24,0x64, 0x3,0x26,0x68, 0x2,0x28,0x21, 0x2,0x2b,0x7e,\n  0x2,0x27,0x7d, 0x2,0x28,0x26, 0x3,0x2a,0x26, 0x1,0x4e,0x6e,\n  0x3,0x2a,0x2a, 0x1,0x4e,0x71, 0x2,0x28,0x27, 0x2,0x28,0x23,\n  0x3,0x2a,0x27, 0x2,0x28,0x24, 0x4,0x27,0x36, 0x2,0x27,0x7c,\n  0x1,0x4e,0x70, 0x2,0x27,0x7e, 0x1,0x4e,0x6f, 0x2,0x28,0x25,\n  0x3,0x2a,0x28, 0x2,0x28,0x22, 0x6,0x2c,0x7e, 0x2,0x2c,0x24,\n  0x1,0x52,0x40, 0x1,0x52,0x41, 0x3,0x2d,0x75, 0x2,0x2c,0x27,\n  0x2,0x2c,0x21, 0x3,0x2d,0x74, 0x2,0x2c,0x26, 0x3,0x2d,0x70,\n  0x2,0x2c,0x22, 0x1,0x52,0x3f, 0x2,0x2c,0x25, 0x2,0x2c,0x23,\n  0x3,0x2d,0x73, 0x3,0x2d,0x71, 0x2,0x30,0x69, 0x2,0x30,0x66,\n  0x3,0x32,0x38, 0x2,0x30,0x68, 0x1,0x56,0x5b, 0x1,0x56,0x5a,\n  0x1,0x56,0x58, 0x2,0x30,0x65, 0x2,0x30,0x6a, 0x1,0x56,0x57,\n  0x1,0x56,0x59, 0x2,0x30,0x67, 0x2,0x37,0x2c, 0x2,0x30,0x64,\n  0x2,0x30,0x6b, 0x3,0x32,0x39, 0x4,0x33,0x23, 0x4,0x33,0x2a,\n  0x3,0x3d,0x26, 0x2,0x37,0x27, 0x2,0x37,0x2b, 0x5,0x33,0x54,\n  0x2,0x37,0x2a, 0x2,0x3d,0x72, 0x2,0x3d,0x7d, 0x4,0x33,0x2d,\n  0x3,0x37,0x3b, 0x2,0x37,0x2d, 0x3,0x37,0x3a, 0x2,0x37,0x28,\n  0x2,0x3d,0x71, 0x1,0x5b,0x79, 0x4,0x33,0x22, 0x4,0x33,0x2c,\n  0x1,0x5b,0x78, 0x2,0x37,0x26, 0x2,0x37,0x29, 0x1,0x5b,0x7a,\n  0x3,0x37,0x39, 0x1,0x5b,0x77, 0x1,0x5b,0x76, 0x2,0x37,0x25,\n  0x2,0x37,0x2e, 0x2,0x3d,0x74, 0x2,0x3d,0x7b, 0x3,0x3d,0x27,\n  0x1,0x60,0x5a, 0x2,0x3d,0x7a, 0x2,0x3d,0x77, 0x3,0x3d,0x2e,\n  0x1,0x60,0x5c, 0x3,0x3d,0x29, 0x3,0x3d,0x2b, 0x3,0x3d,0x2a,\n  0x2,0x3d,0x79, 0x3,0x42,0x61, 0x3,0x3d,0x2d, 0x2,0x3d,0x73,\n  0x2,0x3d,0x75, 0x2,0x3d,0x78, 0x2,0x3d,0x76, 0x1,0x60,0x5b,\n  0x2,0x3d,0x7c, 0x1,0x60,0x59, 0x1,0x65,0x27, 0x3,0x3d,0x28,\n  0x2,0x44,0x71, 0x2,0x44,0x70, 0x2,0x44,0x6e, 0x6,0x54,0x7c,\n  0x1,0x65,0x2a, 0x1,0x65,0x29, 0x2,0x44,0x72, 0x3,0x42,0x5f,\n  0x2,0x44,0x6f, 0x2,0x4b,0x70, 0x1,0x69,0x62, 0x1,0x65,0x28,\n  0x3,0x42,0x62, 0x3,0x65,0x62, 0x3,0x65,0x63, 0x2,0x44,0x74,\n  0x2,0x44,0x73, 0x3,0x4d,0x30, 0x2,0x4b,0x73, 0x2,0x4b,0x71,\n  0x1,0x6d,0x64, 0x3,0x47,0x79, 0x1,0x69,0x63, 0x2,0x4b,0x72,\n  0x2,0x51,0x7e, 0x3,0x47,0x78, 0x3,0x47,0x7a, 0x3,0x47,0x77,\n  0x4,0x4a,0x77, 0x1,0x6d,0x65, 0x2,0x51,0x7d, 0x2,0x52,0x28,\n  0x2,0x52,0x27, 0x2,0x52,0x25, 0x4,0x4a,0x75, 0x2,0x52,0x24,\n  0x2,0x52,0x21, 0x2,0x52,0x22, 0x2,0x52,0x23, 0x2,0x52,0x26,\n  0x2,0x52,0x29, 0x2,0x58,0x4b, 0x2,0x58,0x48, 0x2,0x58,0x49,\n  0x1,0x71,0x41, 0x2,0x58,0x47, 0x2,0x58,0x4d, 0x2,0x58,0x4c,\n  0x2,0x58,0x4a, 0x2,0x5d,0x50, 0x2,0x5d,0x51, 0x1,0x74,0x3c,\n  0x3,0x55,0x49, 0x1,0x74,0x3d, 0x2,0x5d,0x4f, 0x4,0x56,0x6c,\n  0x1,0x76,0x65, 0x2,0x62,0x2c, 0x1,0x76,0x64, 0x1,0x78,0x4b,\n  0x4,0x60,0x25, 0x1,0x78,0x4c, 0x1,0x79,0x78, 0x2,0x69,0x3d,\n  0x2,0x69,0x3c, 0x2,0x6b,0x6b, 0x2,0x6d,0x5d, 0x1,0x7b,0x66,\n  0x2,0x6f,0x37, 0x2,0x6f,0x36, 0x2,0x6f,0x38, 0x1,0x46,0x68,\n  0x2,0x2c,0x28, 0x1,0x56,0x5c, 0x1,0x5b,0x7b, 0x2,0x37,0x2f,\n  0x1,0x46,0x69, 0x2,0x21,0x66, 0x1,0x45,0x5e, 0x3,0x22,0x5a,\n  0x3,0x21,0x6b, 0x2,0x22,0x65, 0x3,0x24,0x2f, 0x4,0x23,0x2a,\n  0xf,0x22,0x66, 0x2,0x24,0x6c, 0x2,0x24,0x6a, 0x2,0x24,0x6b,\n  0x2,0x24,0x68, 0x1,0x4b,0x2b, 0x2,0x24,0x69, 0x3,0x26,0x6e,\n  0x3,0x2a,0x33, 0x2,0x28,0x2f, 0x3,0x2a,0x2d, 0x1,0x4e,0x74,\n  0x2,0x28,0x2d, 0x2,0x28,0x29, 0x2,0x28,0x2c, 0x3,0x2a,0x2c,\n  0x2,0x28,0x28, 0x1,0x4e,0x76, 0x2,0x28,0x2b, 0x3,0x2a,0x2b,\n  0x1,0x4e,0x73, 0x1,0x4e,0x72, 0x3,0x2a,0x32, 0x1,0x4e,0x75,\n  0x2,0x28,0x2e, 0x2,0x28,0x2a, 0x3,0x2a,0x2f, 0x1,0x52,0x45,\n  0x1,0x52,0x48, 0x2,0x2c,0x30, 0x2,0x2c,0x2f, 0x2,0x2c,0x2e,\n  0x1,0x52,0x42, 0x2,0x2c,0x37, 0x2,0x2c,0x2d, 0x4,0x2e,0x2a,\n  0x1,0x52,0x44, 0x2,0x30,0x70, 0x3,0x2d,0x78, 0x2,0x2c,0x34,\n  0x2,0x2c,0x32, 0x1,0x52,0x47, 0x3,0x2d,0x7b, 0x2,0x2c,0x2a,\n  0x2,0x2c,0x35, 0x3,0x2d,0x77, 0x2,0x2c,0x2c, 0x2,0x2c,0x36,\n  0x2,0x2c,0x33, 0x2,0x2c,0x2b, 0x3,0x2d,0x7a, 0x1,0x52,0x43,\n  0x2,0x2c,0x38, 0x2,0x2c,0x29, 0x1,0x52,0x46, 0x3,0x2d,0x7e,\n  0x3,0x2d,0x79, 0x3,0x2d,0x7c, 0x2,0x30,0x75, 0x2,0x30,0x6c,\n  0x2,0x30,0x77, 0x3,0x32,0x3e, 0x2,0x30,0x6f, 0x2,0x30,0x7a,\n  0x2,0x30,0x7b, 0x2,0x30,0x6d, 0x2,0x30,0x79, 0x2,0x30,0x76,\n  0x2,0x30,0x74, 0x2,0x30,0x78, 0x1,0x56,0x62, 0x3,0x32,0x40,\n  0x1,0x56,0x60, 0x3,0x32,0x47, 0x3,0x32,0x3c, 0x2,0x30,0x72,\n  0x3,0x32,0x46, 0x2,0x30,0x6e, 0x3,0x32,0x41, 0x2,0x30,0x71,\n  0x2,0x30,0x7c, 0x2,0x30,0x73, 0x1,0x56,0x61, 0x2,0x2c,0x31,\n  0x3,0x32,0x3d, 0x1,0x56,0x5d, 0x1,0x56,0x5f, 0x3,0x65,0x64,\n  0x3,0x37,0x3d, 0x2,0x37,0x3d, 0x2,0x37,0x32, 0x2,0x37,0x30,\n  0x3,0x3d,0x38, 0x2,0x37,0x31, 0x3,0x32,0x3f, 0x2,0x37,0x38,\n  0x3,0x37,0x40, 0x2,0x37,0x39, 0x2,0x37,0x35, 0x1,0x5c,0x22,\n  0x2,0x37,0x3a, 0x2,0x37,0x37, 0x2,0x37,0x34, 0x3,0x37,0x3c,\n  0x1,0x5b,0x7e, 0x2,0x37,0x33, 0x1,0x5b,0x7c, 0x1,0x5c,0x21,\n  0x2,0x37,0x36, 0x2,0x37,0x3e, 0x1,0x56,0x5e, 0x1,0x5b,0x7d,\n  0x2,0x37,0x3c, 0x2,0x37,0x3b, 0x1,0x5c,0x23, 0x3,0x65,0x65,\n  0xf,0x36,0x57, 0x3,0x3d,0x36, 0x3,0x3d,0x3a, 0x2,0x3e,0x24,\n  0x3,0x3d,0x2f, 0x3,0x3d,0x3b, 0x3,0x3d,0x32, 0x2,0x3e,0x25,\n  0x1,0x60,0x66, 0x3,0x3d,0x39, 0x2,0x3e,0x2b, 0x3,0x42,0x6d,\n  0x3,0x3d,0x35, 0x2,0x3e,0x2d, 0x2,0x3e,0x26, 0x1,0x60,0x60,\n  0x2,0x3e,0x2a, 0x2,0x3e,0x29, 0x1,0x60,0x61, 0x1,0x60,0x67,\n  0x3,0x42,0x64, 0x1,0x60,0x68, 0x2,0x3e,0x2c, 0x1,0x60,0x5e,\n  0x2,0x3e,0x23, 0x2,0x3e,0x21, 0x2,0x3e,0x27, 0x2,0x3d,0x7e,\n  0x1,0x60,0x65, 0x2,0x3e,0x22, 0x2,0x3e,0x28, 0x2,0x3e,0x2e,\n  0x1,0x60,0x5f, 0x1,0x60,0x64, 0x1,0x60,0x62, 0x1,0x60,0x63,\n  0x3,0x3d,0x33, 0x3,0x3d,0x3c, 0x1,0x60,0x5d, 0x3,0x65,0x66,\n  0x3,0x3d,0x37, 0x3,0x42,0x68, 0x3,0x42,0x75, 0x1,0x65,0x31,\n  0x2,0x44,0x7b, 0x1,0x65,0x30, 0x2,0x45,0x21, 0x3,0x42,0x6f,\n  0x2,0x44,0x75, 0x3,0x42,0x74, 0x2,0x45,0x22, 0x3,0x42,0x6e,\n  0x3,0x42,0x66, 0x3,0x42,0x71, 0x2,0x44,0x76, 0x2,0x44,0x77,\n  0x3,0x42,0x73, 0x2,0x45,0x23, 0x2,0x44,0x7e, 0x2,0x44,0x7c,\n  0x2,0x44,0x7d, 0x2,0x44,0x79, 0x2,0x44,0x78, 0x3,0x42,0x67,\n  0x2,0x45,0x24, 0x1,0x65,0x2d, 0x3,0x42,0x6b, 0x2,0x44,0x7a,\n  0x3,0x42,0x70, 0x1,0x65,0x32, 0x1,0x65,0x2c, 0x1,0x65,0x33,\n  0x1,0x65,0x34, 0x3,0x42,0x6a, 0x1,0x65,0x2f, 0x1,0x65,0x2e,\n  0x3,0x48,0x25, 0x3,0x47,0x7e, 0x2,0x4b,0x74, 0x1,0x69,0x65,\n  0x1,0x69,0x64, 0x3,0x47,0x7c, 0x3,0x47,0x7d, 0x2,0x4b,0x79,\n  0x3,0x48,0x22, 0x1,0x6d,0x66, 0x1,0x69,0x66, 0x3,0x48,0x21,\n  0x3,0x47,0x7b, 0x1,0x69,0x68, 0x2,0x4b,0x7a, 0x1,0x65,0x2b,\n  0x1,0x69,0x67, 0x2,0x4b,0x76, 0x2,0x4b,0x78, 0x2,0x4b,0x75,\n  0x3,0x48,0x27, 0x2,0x4b,0x77, 0x3,0x48,0x23, 0xf,0x49,0x76,\n  0x2,0x52,0x33, 0x3,0x4d,0x31, 0x3,0x4d,0x3b, 0x2,0x52,0x32,\n  0x2,0x52,0x2f, 0x1,0x6d,0x69, 0x2,0x58,0x4e, 0x1,0x6d,0x6a,\n  0x2,0x52,0x2e, 0x3,0x4d,0x39, 0x1,0x6d,0x68, 0x3,0x4d,0x36,\n  0x2,0x52,0x30, 0x2,0x52,0x2d, 0x2,0x52,0x2a, 0x2,0x52,0x31,\n  0x2,0x52,0x2b, 0x2,0x52,0x2c, 0x1,0x6d,0x67, 0x3,0x4d,0x35,\n  0x3,0x65,0x68, 0x4,0x51,0x39, 0x2,0x5d,0x55, 0x4,0x51,0x3a,\n  0x2,0x58,0x52, 0x3,0x4d,0x3a, 0x2,0x58,0x51, 0x2,0x58,0x53,\n  0x3,0x51,0x6a, 0x2,0x5d,0x52, 0x1,0x71,0x44, 0x4,0x51,0x38,\n  0x2,0x58,0x4f, 0x3,0x51,0x67, 0x1,0x71,0x42, 0x3,0x51,0x6c,\n  0x1,0x71,0x46, 0x1,0x71,0x45, 0x2,0x58,0x50, 0x2,0x58,0x54,\n  0x3,0x51,0x6b, 0x1,0x71,0x43, 0x3,0x65,0x67, 0x2,0x5d,0x59,\n  0x1,0x74,0x40, 0x1,0x76,0x66, 0x1,0x74,0x41, 0x1,0x74,0x3e,\n  0x2,0x5d,0x56, 0x2,0x5d,0x54, 0x3,0x55,0x4f, 0x2,0x5d,0x57,\n  0x3,0x55,0x4b, 0x2,0x5d,0x5a, 0x1,0x74,0x3f, 0x2,0x5d,0x58,\n  0x2,0x5d,0x53, 0x3,0x55,0x4d, 0x3,0x65,0x69, 0x2,0x62,0x2f,\n  0x2,0x62,0x32, 0x2,0x66,0x21, 0x2,0x62,0x2d, 0x3,0x58,0x2f,\n  0x2,0x69,0x3e, 0x2,0x62,0x33, 0x3,0x58,0x30, 0x1,0x78,0x4d,\n  0x2,0x62,0x31, 0x1,0x76,0x67, 0x2,0x62,0x2e, 0x2,0x62,0x30,\n  0x2,0x62,0x34, 0x2,0x66,0x22, 0x3,0x5a,0x5a, 0x2,0x65,0x7e,\n  0x4,0x60,0x27, 0x3,0x5a,0x5c, 0x3,0x5a,0x5d, 0x3,0x5a,0x5b,\n  0x1,0x78,0x4e, 0x2,0x65,0x7d, 0x3,0x5c,0x5e, 0x3,0x5c,0x5c,\n  0x3,0x5c,0x5f, 0x1,0x79,0x79, 0x3,0x5c,0x5d, 0x3,0x5c,0x60,\n  0x3,0x5e,0x3d, 0x1,0x7a,0x78, 0x2,0x6d,0x5f, 0x1,0x7a,0x77,\n  0x2,0x6d,0x61, 0x2,0x6d,0x5e, 0x2,0x6d,0x60, 0x1,0x7c,0x3c,\n  0x2,0x70,0x40, 0x1,0x46,0x6a, 0x2,0x28,0x30, 0x2,0x30,0x7d,\n  0x2,0x30,0x7e, 0x1,0x5c,0x24, 0x2,0x45,0x25, 0x1,0x71,0x47,\n  0x1,0x78,0x4f, 0x1,0x7b,0x67, 0x2,0x70,0x41, 0x1,0x46,0x6b,\n  0x2,0x28,0x31, 0x1,0x23,0x22, 0x4,0x2a,0x3c, 0x3,0x2e,0x22,\n  0x2,0x2c,0x39, 0x3,0x2e,0x21, 0x2,0x2c,0x3a, 0x3,0x2e,0x24,\n  0x3,0x32,0x48, 0x2,0x31,0x21, 0x2,0x31,0x22, 0x1,0x5c,0x25,\n  0x1,0x5c,0x26, 0xf,0x36,0x67, 0x3,0x3d,0x3d, 0x4,0x39,0x25,\n  0x2,0x3e,0x2f, 0x2,0x45,0x28, 0x2,0x45,0x27, 0x2,0x45,0x26,\n  0x2,0x4b,0x7b, 0x3,0x42,0x77, 0x2,0x4b,0x7c, 0x2,0x4b,0x7d,\n  0x1,0x69,0x69, 0x3,0x48,0x28, 0x2,0x52,0x35, 0x2,0x52,0x34,\n  0x3,0x4d,0x3d, 0x3,0x51,0x6d, 0x2,0x58,0x55, 0x1,0x71,0x48,\n  0x1,0x71,0x49, 0x3,0x51,0x6e, 0x2,0x5d,0x5e, 0x2,0x5d,0x5b,\n  0x2,0x5d,0x5c, 0x2,0x5d,0x5d, 0x2,0x62,0x36, 0x2,0x62,0x35,\n  0x1,0x76,0x68, 0x2,0x66,0x23, 0x2,0x6b,0x6c, 0x1,0x46,0x6c,\n  0x1,0x52,0x49, 0x3,0x37,0x44, 0x1,0x5c,0x27, 0x2,0x45,0x29,\n  0x3,0x42,0x78, 0x1,0x46,0x6d, 0x4,0x2a,0x40, 0x2,0x31,0x23,\n  0x1,0x5c,0x28, 0x3,0x37,0x45, 0x3,0x3d,0x3e, 0x1,0x60,0x69,\n  0x1,0x60,0x6a, 0x5,0x47,0x49, 0x1,0x46,0x6e, 0x1,0x46,0x6f,\n  0x2,0x22,0x66, 0x1,0x4b,0x2d, 0x1,0x4b,0x2c, 0x1,0x52,0x4a,\n  0x2,0x2c,0x3b, 0x2,0x3e,0x30, 0x1,0x46,0x70, 0x1,0x46,0x71,\n  0x1,0x46,0x72, 0x1,0x46,0x73, 0x4,0x23,0x2b, 0x1,0x4b,0x2e,\n  0x1,0x4b,0x2f, 0x2,0x24,0x6e, 0x2,0x24,0x6d, 0x3,0x2a,0x37,\n  0x1,0x4e,0x77, 0x2,0x28,0x34, 0x2,0x28,0x32, 0x2,0x28,0x33,\n  0x3,0x2a,0x38, 0x3,0x2a,0x35, 0x4,0x27,0x40, 0x3,0x2a,0x36,\n  0x3,0x2e,0x27, 0x2,0x2c,0x3c, 0x2,0x2c,0x3d, 0x3,0x2e,0x25,\n  0x3,0x2e,0x28, 0x1,0x52,0x4e, 0x1,0x52,0x4c, 0x3,0x2e,0x2a,\n  0x1,0x52,0x4d, 0x1,0x52,0x4b, 0x3,0x2e,0x26, 0xf,0x2b,0x7a,\n  0xf,0x2c,0x4a, 0x1,0x56,0x63, 0x3,0x32,0x4e, 0x3,0x32,0x4d,\n  0x3,0x32,0x50, 0x3,0x32,0x4f, 0x1,0x56,0x67, 0x1,0x56,0x66,\n  0x2,0x31,0x24, 0x1,0x56,0x65, 0x1,0x56,0x64, 0x3,0x32,0x51,\n  0x2,0x31,0x25, 0x3,0x37,0x46, 0x1,0x5c,0x2b, 0x2,0x37,0x40,\n  0x2,0x37,0x3f, 0x1,0x5c,0x29, 0x1,0x5c,0x2a, 0x3,0x37,0x49,\n  0x3,0x37,0x47, 0x1,0x60,0x6c, 0x1,0x60,0x6b, 0x2,0x3e,0x32,\n  0x3,0x3d,0x43, 0x3,0x3d,0x42, 0x2,0x3e,0x31, 0x1,0x5c,0x2c,\n  0x3,0x3d,0x44, 0x4,0x39,0x2c, 0x4,0x3e,0x6b, 0x1,0x65,0x35,\n  0x2,0x45,0x2b, 0x1,0x65,0x36, 0x2,0x45,0x2a, 0x3,0x42,0x7b,\n  0x4,0x44,0x7c, 0x4,0x44,0x7b, 0x2,0x4b,0x7e, 0x2,0x52,0x36,\n  0x1,0x6d,0x6b, 0x2,0x58,0x56, 0x3,0x51,0x70, 0x3,0x55,0x52,\n  0x2,0x5d,0x5f, 0x4,0x5b,0x74, 0x1,0x78,0x51, 0x1,0x78,0x50,\n  0x4,0x63,0x68, 0x3,0x5c,0x62, 0x1,0x7b,0x68, 0x1,0x46,0x74,\n  0x2,0x28,0x35, 0x3,0x3d,0x45, 0x1,0x5c,0x2d, 0x2,0x4c,0x21,\n  0x1,0x69,0x6a, 0x3,0x22,0x5b, 0x3,0x26,0x73, 0x2,0x24,0x6f,\n  0x2,0x24,0x70, 0x2,0x28,0x36, 0x1,0x4e,0x79, 0x1,0x4e,0x7a,\n  0x3,0x2a,0x3a, 0x4,0x27,0x43, 0x1,0x4e,0x78, 0x3,0x2a,0x3b,\n  0x1,0x52,0x52, 0x1,0x52,0x53, 0x1,0x52,0x50, 0x1,0x52,0x51,\n  0x3,0x2e,0x2b, 0x2,0x2c,0x3e, 0x3,0x2e,0x2f, 0x4,0x2a,0x4a,\n  0x2,0x2c,0x3f, 0x1,0x52,0x4f, 0x2,0x31,0x26, 0x3,0x32,0x57,\n  0x1,0x56,0x6b, 0x1,0x56,0x6c, 0x3,0x32,0x55, 0x1,0x5c,0x30,\n  0x2,0x31,0x2c, 0x4,0x2e,0x40, 0x1,0x56,0x71, 0x1,0x56,0x6f,\n  0x2,0x31,0x2d, 0x2,0x31,0x28, 0x1,0x56,0x6e, 0x1,0x56,0x6d,\n  0x1,0x56,0x68, 0x2,0x31,0x2b, 0x2,0x31,0x2a, 0x2,0x31,0x27,\n  0x1,0x56,0x70, 0x3,0x32,0x52, 0x2,0x31,0x29, 0x1,0x56,0x69,\n  0x4,0x2e,0x34, 0x1,0x56,0x6a, 0x1,0x5c,0x31, 0x2,0x37,0x44,\n  0x2,0x37,0x45, 0x1,0x5c,0x32, 0x2,0x37,0x41, 0x2,0x37,0x43,\n  0x2,0x37,0x47, 0x2,0x37,0x46, 0x2,0x37,0x42, 0x3,0x37,0x4a,\n  0x1,0x5c,0x2e, 0x1,0x5c,0x2f, 0x2,0x3e,0x3a, 0x1,0x60,0x71,\n  0x1,0x60,0x70, 0x2,0x3e,0x34, 0x1,0x60,0x6e, 0x4,0x39,0x34,\n  0x2,0x3e,0x37, 0x1,0x60,0x72, 0x2,0x3e,0x38, 0x1,0x60,0x73,\n  0x2,0x3e,0x35, 0x1,0x60,0x6d, 0x1,0x60,0x6f, 0x2,0x3e,0x39,\n  0x3,0x3d,0x47, 0x2,0x3e,0x36, 0x2,0x3e,0x33, 0x4,0x3e,0x77,\n  0x2,0x45,0x38, 0x3,0x42,0x7c, 0x2,0x45,0x2d, 0x1,0x65,0x38,\n  0x1,0x65,0x3b, 0x1,0x65,0x3a, 0x1,0x65,0x3f, 0x1,0x65,0x3e,\n  0x2,0x45,0x39, 0x2,0x45,0x37, 0x2,0x45,0x30, 0x2,0x45,0x34,\n  0x2,0x45,0x33, 0x1,0x65,0x3c, 0x2,0x45,0x36, 0x2,0x45,0x32,\n  0x2,0x45,0x3a, 0x2,0x45,0x31, 0x1,0x65,0x3d, 0x1,0x65,0x37,\n  0x1,0x65,0x39, 0x3,0x42,0x7d, 0x2,0x45,0x2f, 0x3,0x48,0x2b,\n  0x2,0x4c,0x23, 0x1,0x69,0x6e, 0x2,0x4c,0x27, 0x1,0x69,0x6d,\n  0x2,0x4c,0x24, 0x1,0x69,0x6c, 0x3,0x48,0x29, 0x2,0x45,0x2e,\n  0x2,0x45,0x35, 0x2,0x4c,0x26, 0x4,0x44,0x7e, 0x1,0x69,0x6f,\n  0x2,0x4c,0x28, 0x2,0x4c,0x25, 0x2,0x4c,0x22, 0x2,0x52,0x39,\n  0x2,0x52,0x3d, 0x2,0x52,0x3f, 0x2,0x52,0x3b, 0x2,0x52,0x3a,\n  0x2,0x52,0x38, 0x1,0x6d,0x6e, 0x1,0x6d,0x6c, 0x1,0x6d,0x71,\n  0x1,0x6d,0x72, 0x2,0x52,0x3c, 0x1,0x6d,0x6f, 0x2,0x52,0x37,\n  0x1,0x6d,0x70, 0x1,0x69,0x6b, 0x2,0x52,0x3e, 0x1,0x6d,0x6d,\n  0x3,0x51,0x71, 0x2,0x58,0x58, 0x4,0x51,0x4f, 0x2,0x58,0x57,\n  0x2,0x58,0x5f, 0x2,0x58,0x59, 0x2,0x58,0x5e, 0x2,0x58,0x5b,\n  0x1,0x71,0x4a, 0x2,0x58,0x5d, 0x3,0x51,0x73, 0x3,0x51,0x72,\n  0x1,0x71,0x4b, 0x4,0x51,0x4d, 0x1,0x71,0x4c, 0x3,0x51,0x74,\n  0x2,0x58,0x5c, 0x2,0x58,0x5a, 0x4,0x57,0x21, 0x4,0x57,0x24,\n  0x1,0x74,0x43, 0x2,0x5d,0x60, 0x3,0x55,0x55, 0x3,0x55,0x53,\n  0x1,0x74,0x42, 0x2,0x5d,0x63, 0x2,0x5d,0x61, 0x2,0x5d,0x62,\n  0x5,0x55,0x69, 0x5,0x5c,0x36, 0x1,0x74,0x44, 0x3,0x55,0x54,\n  0x3,0x58,0x34, 0x2,0x62,0x3a, 0x3,0x58,0x33, 0x1,0x76,0x6b,\n  0x2,0x62,0x3b, 0x4,0x5b,0x75, 0x4,0x5b,0x79, 0x1,0x76,0x69,\n  0x2,0x62,0x3c, 0x1,0x76,0x6a, 0x2,0x62,0x39, 0x2,0x62,0x3d,\n  0x3,0x58,0x32, 0x2,0x62,0x37, 0x1,0x78,0x52, 0x2,0x66,0x24,\n  0x1,0x78,0x53, 0x1,0x79,0x7a, 0x2,0x62,0x38, 0x1,0x79,0x7b,\n  0x3,0x5e,0x3f, 0x3,0x5e,0x3e, 0x1,0x7a,0x79, 0x2,0x6b,0x6d,\n  0x1,0x7b,0x6a, 0x2,0x6d,0x62, 0x1,0x7b,0x69, 0x3,0x60,0x3b,\n  0x2,0x6f,0x39, 0x1,0x7c,0x61, 0x1,0x7c,0x62, 0x3,0x65,0x6a,\n  0x7,0x64,0x52, 0x2,0x72,0x3a, 0x3,0x22,0x5c, 0x3,0x65,0x6b,\n  0x1,0x52,0x54, 0x2,0x2c,0x40, 0x1,0x60,0x74, 0x1,0x60,0x75,\n  0x1,0x46,0x75, 0x1,0x48,0x4b, 0x2,0x22,0x67, 0x3,0x26,0x74,\n  0x2,0x24,0x71, 0x1,0x4b,0x30, 0x3,0x26,0x76, 0x1,0x4e,0x7b,\n  0x4,0x2a,0x4c, 0x1,0x52,0x55, 0x1,0x52,0x56, 0x1,0x52,0x57,\n  0x2,0x37,0x49, 0x2,0x31,0x2e, 0x1,0x56,0x72, 0x4,0x2e,0x41,\n  0x4,0x2e,0x43, 0x1,0x5c,0x33, 0x2,0x37,0x48, 0x3,0x37,0x4d,\n  0x2,0x3e,0x3c, 0x1,0x60,0x77, 0x3,0x3d,0x4c, 0x2,0x3e,0x3b,\n  0x1,0x60,0x76, 0x3,0x42,0x7e, 0x3,0x43,0x21, 0x2,0x45,0x3b,\n  0x1,0x6d,0x73, 0x2,0x52,0x43, 0x2,0x52,0x40, 0x2,0x52,0x41,\n  0x2,0x52,0x42, 0x4,0x51,0x54, 0x4,0x51,0x55, 0x3,0x51,0x76,\n  0x5,0x5c,0x43, 0x3,0x55,0x56, 0x2,0x5d,0x64, 0x3,0x55,0x57,\n  0x2,0x62,0x3e, 0x4,0x5b,0x7c, 0x4,0x5b,0x7d, 0x3,0x5a,0x5e,\n  0x2,0x69,0x40, 0x2,0x69,0x3f, 0x4,0x66,0x5a, 0x2,0x6d,0x63,\n  0x1,0x46,0x76, 0x2,0x28,0x37, 0x1,0x56,0x73, 0x3,0x3d,0x4d,\n  0x1,0x60,0x78, 0x2,0x45,0x3c, 0x4,0x45,0x34, 0x3,0x48,0x30,\n  0x2,0x4c,0x29, 0x3,0x48,0x2e, 0x1,0x6d,0x74, 0x2,0x58,0x60,\n  0x3,0x65,0x6c, 0x2,0x62,0x3f, 0x2,0x69,0x41, 0x1,0x46,0x77,\n  0x3,0x26,0x77, 0x3,0x26,0x78, 0x1,0x4e,0x7c, 0x1,0x52,0x5a,\n  0x2,0x2c,0x41, 0x1,0x52,0x5b, 0x1,0x52,0x59, 0x3,0x2e,0x32,\n  0x1,0x52,0x58, 0x2,0x31,0x2f, 0x1,0x56,0x74, 0x3,0x32,0x5a,\n  0x3,0x32,0x5b, 0x1,0x56,0x75, 0x1,0x56,0x76, 0x1,0x5c,0x35,\n  0x2,0x37,0x4a, 0x1,0x5c,0x34, 0x3,0x37,0x50, 0x3,0x37,0x52,\n  0x3,0x37,0x51, 0xf,0x37,0x23, 0x3,0x3d,0x4f, 0x2,0x3e,0x3d,\n  0x1,0x5c,0x36, 0x1,0x60,0x79, 0x2,0x45,0x3d, 0x1,0x65,0x40,\n  0x1,0x65,0x41, 0x4,0x45,0x35, 0x1,0x69,0x70, 0x3,0x48,0x31,\n  0x1,0x69,0x71, 0x1,0x6d,0x75, 0x1,0x71,0x4e, 0x2,0x58,0x61,\n  0x1,0x71,0x4d, 0x4,0x57,0x2d, 0x2,0x5d,0x65, 0x1,0x74,0x45,\n  0x3,0x58,0x35, 0x2,0x62,0x40, 0x2,0x69,0x42, 0x1,0x46,0x78,\n  0x1,0x4b,0x31, 0x2,0x28,0x3a, 0x2,0x28,0x39, 0x1,0x4e,0x7d,\n  0x2,0x28,0x38, 0x1,0x4e,0x7e, 0x2,0x28,0x3b, 0x4,0x2a,0x55,\n  0x2,0x2c,0x47, 0x1,0x52,0x5e, 0x1,0x52,0x5d, 0x2,0x2c,0x49,\n  0x2,0x2c,0x48, 0x1,0x52,0x62, 0x3,0x2e,0x35, 0x1,0x52,0x61,\n  0x3,0x2e,0x33, 0x4,0x2a,0x59, 0x1,0x52,0x5c, 0x4,0x2a,0x5d,\n  0x2,0x2c,0x43, 0x2,0x2c,0x44, 0x2,0x2c,0x45, 0x4,0x2a,0x52,\n  0x1,0x52,0x63, 0x2,0x2c,0x42, 0x1,0x52,0x5f, 0x2,0x2c,0x46,\n  0x1,0x52,0x60, 0x3,0x32,0x64, 0x3,0x32,0x5f, 0x2,0x31,0x32,\n  0x2,0x31,0x36, 0x2,0x31,0x34, 0x2,0x31,0x33, 0x4,0x2e,0x55,\n  0x2,0x31,0x37, 0x3,0x32,0x5e, 0x4,0x2e,0x4f, 0x3,0x32,0x68,\n  0x2,0x31,0x38, 0x2,0x31,0x39, 0x2,0x31,0x31, 0x4,0x2e,0x51,\n  0x2,0x31,0x30, 0x3,0x37,0x59, 0x1,0x56,0x78, 0x1,0x56,0x79,\n  0x3,0x32,0x67, 0x2,0x31,0x3a, 0x2,0x31,0x35, 0x3,0x32,0x65,\n  0x2,0x37,0x53, 0x3,0x37,0x55, 0x2,0x31,0x3b, 0x1,0x56,0x7a,\n  0x1,0x56,0x77, 0x3,0x32,0x5c, 0x3,0x32,0x63, 0x2,0x37,0x4d,\n  0x4,0x33,0x4f, 0x2,0x37,0x4c, 0x3,0x37,0x53, 0x2,0x37,0x4e,\n  0x2,0x37,0x4f, 0x2,0x37,0x51, 0x2,0x37,0x50, 0x2,0x37,0x55,\n  0x1,0x5c,0x3a, 0x1,0x5c,0x37, 0x1,0x5c,0x3b, 0x2,0x37,0x4b,\n  0x1,0x5c,0x3c, 0x2,0x37,0x54, 0x1,0x5c,0x39, 0x2,0x37,0x52,\n  0x1,0x5c,0x38, 0x3,0x32,0x62, 0x3,0x37,0x57, 0x4,0x33,0x56,\n  0x3,0x3d,0x56, 0x3,0x3d,0x53, 0x2,0x3e,0x40, 0x2,0x3e,0x42,\n  0x2,0x3e,0x3e, 0x2,0x3e,0x3f, 0x3,0x3d,0x51, 0x3,0x3d,0x52,\n  0x2,0x3e,0x43, 0x2,0x3e,0x45, 0x2,0x3e,0x46, 0x2,0x3e,0x41,\n  0x2,0x3e,0x44, 0x1,0x60,0x7a, 0x2,0x45,0x41, 0x3,0x43,0x27,\n  0x2,0x45,0x46, 0x2,0x45,0x3e, 0x2,0x45,0x42, 0x4,0x3f,0x29,\n  0x3,0x43,0x28, 0x2,0x45,0x47, 0x2,0x45,0x43, 0x1,0x65,0x42,\n  0x1,0x65,0x4a, 0x3,0x43,0x25, 0x1,0x65,0x45, 0x2,0x45,0x3f,\n  0x2,0x45,0x40, 0x1,0x69,0x75, 0x1,0x65,0x4d, 0x1,0x65,0x46,\n  0x3,0x43,0x26, 0x1,0x65,0x4b, 0x1,0x65,0x44, 0x2,0x45,0x45,\n  0x1,0x65,0x4c, 0x2,0x45,0x44, 0x1,0x65,0x48, 0x1,0x65,0x43,\n  0x1,0x65,0x49, 0x2,0x45,0x48, 0x2,0x4c,0x2e, 0x2,0x4c,0x30,\n  0x4,0x45,0x42, 0x3,0x48,0x39, 0x4,0x45,0x40, 0x4,0x45,0x3d,\n  0x3,0x48,0x33, 0x3,0x48,0x36, 0x3,0x48,0x35, 0x3,0x48,0x34,\n  0x3,0x48,0x38, 0x1,0x65,0x47, 0x3,0x48,0x3b, 0x3,0x48,0x3d,\n  0x2,0x4c,0x2b, 0x1,0x69,0x73, 0x2,0x4c,0x31, 0x1,0x69,0x74,\n  0x2,0x4c,0x2f, 0x2,0x4c,0x2a, 0x2,0x4c,0x2d, 0x2,0x4c,0x32,\n  0x1,0x69,0x72, 0x2,0x4c,0x2c, 0x1,0x6d,0x77, 0x2,0x52,0x47,\n  0x2,0x52,0x46, 0x3,0x4d,0x44, 0x1,0x6d,0x7a, 0x1,0x6d,0x78,\n  0x2,0x52,0x44, 0x1,0x6d,0x76, 0x2,0x52,0x45, 0x3,0x4d,0x46,\n  0x1,0x6d,0x79, 0x4,0x51,0x5f, 0x2,0x58,0x69, 0x3,0x51,0x7b,\n  0x2,0x58,0x6b, 0x3,0x51,0x79, 0x2,0x58,0x6a, 0x2,0x58,0x62,\n  0x2,0x58,0x66, 0x2,0x58,0x65, 0x2,0x58,0x63, 0x1,0x71,0x50,\n  0x1,0x71,0x51, 0x1,0x71,0x4f, 0x2,0x58,0x64, 0x2,0x58,0x67,\n  0x2,0x58,0x68, 0x3,0x55,0x59, 0x1,0x71,0x52, 0x3,0x55,0x58,\n  0x1,0x74,0x4a, 0x2,0x5d,0x6d, 0x3,0x55,0x5b, 0x1,0x74,0x47,\n  0x2,0x5d,0x67, 0x1,0x74,0x49, 0x1,0x74,0x4b, 0x4,0x51,0x61,\n  0x3,0x55,0x5c, 0x1,0x74,0x48, 0x2,0x5d,0x6c, 0x2,0x5d,0x68,\n  0x1,0x74,0x46, 0x2,0x5d,0x6b, 0x2,0x5d,0x66, 0x2,0x5d,0x6a,\n  0x2,0x5d,0x69, 0x3,0x58,0x36, 0x3,0x58,0x38, 0x2,0x62,0x42,\n  0x1,0x76,0x6e, 0x1,0x76,0x6f, 0x1,0x76,0x6c, 0x3,0x58,0x3b,\n  0x1,0x76,0x6d, 0x3,0x58,0x3a, 0x3,0x58,0x39, 0x2,0x62,0x41,\n  0x4,0x60,0x39, 0x2,0x66,0x27, 0x3,0x5a,0x60, 0x3,0x5a,0x5f,\n  0x1,0x78,0x54, 0x2,0x66,0x25, 0x2,0x66,0x26, 0x2,0x69,0x43,\n  0x2,0x69,0x46, 0x2,0x69,0x44, 0x2,0x69,0x45, 0x2,0x6b,0x6e,\n  0x3,0x5e,0x42, 0x4,0x66,0x5e, 0x1,0x7a,0x7a, 0x2,0x6f,0x3a,\n  0x2,0x70,0x42, 0x4,0x6b,0x74, 0x1,0x7c,0x63, 0x2,0x71,0x28,\n  0x2,0x71,0x29, 0x1,0x7d,0x33, 0x1,0x46,0x79, 0x1,0x52,0x64,\n  0x3,0x32,0x69, 0x2,0x3e,0x47, 0x3,0x3d,0x57, 0x2,0x45,0x49,\n  0x4,0x6c,0x76, 0x1,0x46,0x7a, 0x1,0x4b,0x32, 0x4,0x27,0x52,\n  0x1,0x4f,0x21, 0x3,0x2e,0x36, 0x2,0x2c,0x4a, 0x2,0x2c,0x4b,\n  0x1,0x56,0x7b, 0x4,0x33,0x5b, 0x2,0x3e,0x48, 0x1,0x60,0x7b,\n  0x1,0x65,0x4e, 0x1,0x74,0x4c, 0x2,0x5d,0x6e, 0x2,0x66,0x28,\n  0x2,0x69,0x47, 0x1,0x46,0x7b, 0x3,0x26,0x7b, 0x3,0x26,0x7c,\n  0xf,0x25,0x23, 0x2,0x28,0x41, 0x2,0x28,0x3c, 0x2,0x28,0x3e,\n  0x2,0x28,0x40, 0x2,0x28,0x3f, 0x2,0x28,0x3d, 0x1,0x4f,0x22,\n  0xf,0x28,0x34, 0x1,0x52,0x65, 0x2,0x2c,0x54, 0x3,0x2e,0x39,\n  0x2,0x2c,0x4f, 0x2,0x2c,0x4c, 0x3,0x2e,0x3b, 0x3,0x2e,0x3e,\n  0x2,0x2c,0x53, 0x3,0x2e,0x37, 0x3,0x2e,0x3a, 0x1,0x52,0x67,\n  0x1,0x52,0x68, 0x2,0x2c,0x52, 0x2,0x2c,0x51, 0x2,0x2c,0x50,\n  0x2,0x2c,0x4d, 0x2,0x2c,0x4e, 0x2,0x2c,0x55, 0x1,0x52,0x66,\n  0x3,0x2e,0x3d, 0xf,0x2c,0x5c, 0x3,0x65,0x6d, 0x3,0x65,0x6e,\n  0x1,0x57,0x21, 0x3,0x66,0x7c, 0x1,0x57,0x27, 0x1,0x57,0x26,\n  0x2,0x31,0x44, 0x2,0x31,0x3e, 0x2,0x31,0x3c, 0x3,0x32,0x6c,\n  0x1,0x57,0x24, 0x2,0x37,0x5c, 0x1,0x56,0x7d, 0x2,0x31,0x41,\n  0x2,0x31,0x45, 0x2,0x31,0x47, 0x2,0x31,0x43, 0x2,0x31,0x3d,\n  0x1,0x57,0x25, 0x2,0x31,0x42, 0x2,0x31,0x40, 0x1,0x56,0x7c,\n  0x2,0x31,0x48, 0x1,0x57,0x28, 0x2,0x31,0x46, 0x1,0x57,0x22,\n  0x2,0x31,0x3f, 0x3,0x32,0x6d, 0x1,0x57,0x23, 0x1,0x56,0x7e,\n  0x3,0x65,0x6f, 0x3,0x37,0x62, 0x1,0x5c,0x3e, 0x4,0x33,0x5d,\n  0x2,0x37,0x5d, 0x3,0x37,0x63, 0x3,0x37,0x5d, 0x2,0x37,0x56,\n  0x2,0x37,0x58, 0x2,0x37,0x5a, 0x3,0x37,0x5f, 0x2,0x37,0x5b,\n  0x2,0x37,0x59, 0x1,0x5c,0x3f, 0x3,0x37,0x61, 0x2,0x37,0x5e,\n  0x3,0x37,0x60, 0x2,0x37,0x57, 0x3,0x65,0x70, 0x3,0x65,0x71,\n  0x3,0x65,0x72, 0x2,0x3e,0x4c, 0x1,0x60,0x7c, 0x2,0x3e,0x54,\n  0x3,0x3d,0x5c, 0x2,0x3e,0x49, 0x6,0x4c,0x2f, 0x2,0x3e,0x55,\n  0x3,0x3d,0x59, 0x2,0x3e,0x4a, 0x2,0x3e,0x4b, 0x3,0x3d,0x5d,\n  0x4,0x39,0x54, 0x2,0x3e,0x53, 0x2,0x3e,0x52, 0x2,0x3e,0x4f,\n  0x1,0x5c,0x3d, 0x1,0x60,0x7d, 0x2,0x3e,0x4d, 0x2,0x3e,0x50,\n  0x1,0x60,0x7e, 0x2,0x3e,0x51, 0x2,0x3e,0x4e, 0x3,0x3d,0x5a,\n  0x3,0x43,0x31, 0x2,0x45,0x54, 0x3,0x43,0x2d, 0x2,0x45,0x58,\n  0x1,0x65,0x55, 0x3,0x43,0x2e, 0x2,0x4c,0x38, 0x1,0x65,0x58,\n  0x2,0x45,0x56, 0x3,0x43,0x37, 0x3,0x43,0x29, 0x2,0x45,0x53,\n  0x2,0x45,0x4e, 0x2,0x45,0x50, 0x2,0x45,0x51, 0x2,0x45,0x4a,\n  0x3,0x43,0x35, 0x1,0x65,0x54, 0x3,0x43,0x2b, 0x3,0x43,0x30,\n  0x1,0x65,0x53, 0x3,0x43,0x34, 0x1,0x65,0x4f, 0x2,0x45,0x4d,\n  0x3,0x43,0x2a, 0x1,0x65,0x56, 0x3,0x43,0x36, 0x1,0x65,0x57,\n  0x2,0x45,0x4c, 0x2,0x45,0x4f, 0x2,0x45,0x57, 0x1,0x65,0x51,\n  0x1,0x65,0x52, 0x2,0x45,0x55, 0x2,0x45,0x4b, 0xf,0x44,0x25,\n  0x4,0x45,0x53, 0x2,0x4c,0x3a, 0x1,0x69,0x77, 0x2,0x4c,0x3c,\n  0x2,0x45,0x52, 0x2,0x4c,0x3e, 0x1,0x69,0x7b, 0x2,0x4c,0x3f,\n  0x2,0x4c,0x3b, 0x3,0x48,0x3e, 0x1,0x69,0x78, 0x2,0x4c,0x37,\n  0x1,0x69,0x7a, 0x2,0x4c,0x34, 0x2,0x4c,0x39, 0x2,0x4c,0x3d,\n  0x2,0x4c,0x36, 0x3,0x48,0x3f, 0x3,0x48,0x45, 0x1,0x65,0x50,\n  0x3,0x48,0x44, 0x2,0x4c,0x33, 0x1,0x69,0x79, 0x2,0x4c,0x35,\n  0x3,0x65,0x73, 0x3,0x48,0x40, 0xf,0x4a,0x3f, 0x1,0x6d,0x7d,\n  0x2,0x52,0x49, 0x1,0x6e,0x23, 0x4,0x4b,0x59, 0x1,0x6e,0x21,\n  0x4,0x4b,0x57, 0x3,0x4d,0x4a, 0x1,0x69,0x76, 0x3,0x4d,0x4d,\n  0x2,0x52,0x50, 0x2,0x52,0x51, 0x1,0x6d,0x7c, 0x3,0x4d,0x48,\n  0x3,0x4d,0x4c, 0x2,0x52,0x4f, 0x2,0x52,0x52, 0x1,0x6d,0x7e,\n  0x1,0x6d,0x7b, 0x2,0x52,0x4b, 0x2,0x52,0x48, 0x2,0x52,0x4d,\n  0x2,0x52,0x4a, 0x1,0x6e,0x24, 0x2,0x52,0x4c, 0x3,0x4d,0x4b,\n  0x3,0x4d,0x49, 0x2,0x52,0x4e, 0x1,0x6e,0x22, 0x3,0x52,0x21,\n  0x3,0x65,0x74, 0x1,0x71,0x54, 0x2,0x58,0x72, 0x3,0x52,0x24,\n  0x2,0x58,0x6c, 0x2,0x58,0x70, 0x2,0x58,0x76, 0x2,0x58,0x77,\n  0x2,0x58,0x73, 0x2,0x58,0x74, 0x2,0x58,0x71, 0x4,0x4b,0x5d,\n  0x2,0x58,0x6e, 0x4,0x51,0x6e, 0x1,0x71,0x56, 0x1,0x71,0x53,\n  0x2,0x58,0x6d, 0x2,0x58,0x6f, 0x3,0x52,0x22, 0x1,0x71,0x55,\n  0x2,0x58,0x75, 0x3,0x65,0x75, 0x1,0x74,0x50, 0x3,0x55,0x60,\n  0x3,0x55,0x62, 0x2,0x5d,0x75, 0x2,0x5d,0x6f, 0x1,0x74,0x4f,\n  0x4,0x57,0x3e, 0x1,0x74,0x4d, 0x3,0x55,0x61, 0x2,0x5d,0x77,\n  0x1,0x74,0x4e, 0x2,0x5d,0x72, 0x2,0x5d,0x73, 0x2,0x5d,0x70,\n  0x2,0x5d,0x78, 0x2,0x5d,0x74, 0x4,0x57,0x40, 0x1,0x74,0x51,\n  0x2,0x5d,0x71, 0x2,0x5d,0x79, 0x2,0x5d,0x76, 0x3,0x58,0x43,\n  0x3,0x58,0x3e, 0x3,0x58,0x40, 0x2,0x62,0x46, 0x3,0x58,0x3f,\n  0x3,0x58,0x3c, 0x2,0x62,0x43, 0x3,0x58,0x42, 0x1,0x76,0x70,\n  0x4,0x5c,0x32, 0x2,0x62,0x47, 0x2,0x62,0x49, 0x2,0x62,0x48,\n  0x2,0x62,0x44, 0x2,0x62,0x45, 0x3,0x58,0x44, 0x2,0x66,0x2d,\n  0x3,0x5a,0x61, 0x1,0x78,0x55, 0x3,0x5a,0x62, 0x2,0x66,0x2a,\n  0x2,0x66,0x2c, 0x2,0x66,0x29, 0x2,0x66,0x2e, 0x4,0x60,0x42,\n  0x3,0x5a,0x63, 0x2,0x66,0x2b, 0x3,0x65,0x76, 0x2,0x69,0x49,\n  0x2,0x69,0x4c, 0x2,0x69,0x48, 0x1,0x79,0x7c, 0x2,0x69,0x4a,\n  0x2,0x69,0x4b, 0x2,0x69,0x4d, 0x1,0x79,0x7d, 0x1,0x7a,0x21,\n  0x1,0x79,0x7e, 0x2,0x6b,0x6f, 0x3,0x5e,0x45, 0x2,0x6b,0x71,\n  0x3,0x5e,0x43, 0x2,0x6b,0x70, 0x3,0x5e,0x44, 0x2,0x6d,0x64,\n  0xf,0x6a,0x66, 0x3,0x60,0x3c, 0x2,0x70,0x43, 0x2,0x71,0x2a,\n  0x1,0x46,0x7c, 0x3,0x24,0x33, 0x2,0x24,0x72, 0x1,0x4f,0x23,\n  0x2,0x28,0x43, 0x1,0x4f,0x24, 0x1,0x4f,0x25, 0x2,0x28,0x42,\n  0x2,0x2c,0x5a, 0x2,0x2c,0x59, 0x1,0x52,0x69, 0x1,0x52,0x6c,\n  0x1,0x52,0x6b, 0x1,0x52,0x6a, 0x2,0x2c,0x56, 0x2,0x2c,0x58,\n  0x2,0x2c,0x57, 0x3,0x65,0x77, 0x2,0x31,0x4b, 0x1,0x57,0x2a,\n  0x2,0x31,0x4f, 0x2,0x31,0x4e, 0x2,0x31,0x4d, 0x2,0x31,0x49,\n  0x1,0x57,0x29, 0x1,0x57,0x2d, 0x1,0x57,0x30, 0x3,0x32,0x6f,\n  0x3,0x32,0x70, 0x1,0x57,0x31, 0x2,0x31,0x4a, 0x2,0x31,0x4c,\n  0x1,0x57,0x2f, 0x1,0x57,0x2e, 0x1,0x57,0x2c, 0x1,0x57,0x2b,\n  0x2,0x37,0x65, 0x3,0x32,0x72, 0x2,0x37,0x63, 0x2,0x37,0x5f,\n  0x1,0x5c,0x40, 0x3,0x3d,0x5e, 0x2,0x37,0x60, 0x1,0x5c,0x41,\n  0x2,0x37,0x61, 0x2,0x37,0x62, 0x2,0x37,0x64, 0x3,0x37,0x66,\n  0x1,0x5c,0x42, 0x3,0x37,0x65, 0x2,0x3e,0x59, 0x3,0x3d,0x5f,\n  0x2,0x3e,0x58, 0x2,0x3e,0x57, 0x2,0x3e,0x56, 0x3,0x3d,0x64,\n  0x3,0x3d,0x62, 0x4,0x39,0x5a, 0x2,0x45,0x5c, 0x1,0x65,0x59,\n  0x4,0x3f,0x46, 0x2,0x45,0x59, 0x2,0x45,0x5b, 0x3,0x43,0x38,\n  0x1,0x65,0x5a, 0x3,0x43,0x3d, 0x1,0x65,0x5b, 0x2,0x45,0x5a,\n  0x3,0x43,0x39, 0x3,0x3d,0x63, 0x3,0x65,0x78, 0x3,0x48,0x48,\n  0x2,0x4c,0x48, 0x3,0x48,0x47, 0x2,0x4c,0x41, 0x2,0x4c,0x42,\n  0x5,0x47,0x7e, 0x1,0x69,0x7e, 0x1,0x69,0x7c, 0x1,0x69,0x7d,\n  0x2,0x4c,0x4a, 0x5,0x48,0x22, 0x2,0x4c,0x49, 0x2,0x4c,0x46,\n  0x2,0x4c,0x45, 0x2,0x4c,0x44, 0x2,0x4c,0x43, 0x2,0x4c,0x47,\n  0x2,0x4c,0x40, 0x3,0x65,0x79, 0x2,0x52,0x53, 0x2,0x52,0x58,\n  0x2,0x52,0x56, 0x3,0x4d,0x50, 0x3,0x4d,0x51, 0x3,0x4d,0x4f,\n  0x2,0x52,0x55, 0x2,0x52,0x54, 0x2,0x52,0x57, 0x3,0x65,0x7a,\n  0x2,0x58,0x78, 0x3,0x52,0x26, 0x1,0x71,0x57, 0x1,0x74,0x52,\n  0x2,0x5d,0x7b, 0x3,0x52,0x27, 0x1,0x74,0x53, 0x2,0x5d,0x7a,\n  0x2,0x62,0x4b, 0x2,0x62,0x4a, 0x1,0x76,0x71, 0x3,0x58,0x45,\n  0x2,0x66,0x2f, 0x1,0x78,0x56, 0x2,0x69,0x4e, 0x1,0x7b,0x6b,\n  0x2,0x6d,0x65, 0x3,0x60,0x3d, 0x2,0x70,0x45, 0x2,0x70,0x44,\n  0x2,0x21,0x67, 0x1,0x52,0x6d, 0x1,0x52,0x6e, 0x2,0x37,0x66,\n  0x3,0x65,0x7b, 0x1,0x65,0x5d, 0x1,0x46,0x7d, 0x1,0x4b,0x35,\n  0x1,0x4b,0x34, 0x1,0x4b,0x33, 0x4,0x24,0x68, 0x3,0x2a,0x3e,\n  0x3,0x2a,0x3d, 0x2,0x28,0x44, 0x3,0x2a,0x3f, 0x3,0x2a,0x42,\n  0x1,0x4f,0x27, 0x1,0x4f,0x26, 0x3,0x2a,0x44, 0x1,0x52,0x71,\n  0x3,0x65,0x4c, 0x2,0x2c,0x5c, 0x2,0x2c,0x5f, 0x2,0x2c,0x5d,\n  0x3,0x2e,0x42, 0x1,0x52,0x6f, 0x1,0x52,0x70, 0x3,0x2e,0x40,\n  0x3,0x2e,0x41, 0x2,0x2c,0x5b, 0x2,0x2c,0x5e, 0x3,0x2e,0x43,\n  0x1,0x57,0x38, 0x3,0x32,0x74, 0x3,0x32,0x73, 0x3,0x32,0x79,\n  0x2,0x31,0x56, 0x2,0x31,0x58, 0x2,0x31,0x57, 0x1,0x57,0x35,\n  0x2,0x31,0x52, 0x3,0x32,0x76, 0x3,0x32,0x7b, 0x1,0x57,0x33,\n  0x1,0x57,0x32, 0x3,0x32,0x77, 0x1,0x57,0x36, 0x1,0x57,0x34,\n  0x3,0x32,0x78, 0x1,0x57,0x37, 0x2,0x31,0x55, 0x2,0x31,0x50,\n  0x2,0x31,0x51, 0x2,0x31,0x54, 0x2,0x31,0x53, 0x3,0x32,0x7c,\n  0x3,0x37,0x69, 0x3,0x37,0x67, 0x3,0x37,0x6b, 0x3,0x37,0x6a,\n  0x2,0x37,0x69, 0x2,0x37,0x6a, 0x2,0x37,0x68, 0x3,0x37,0x6c,\n  0x2,0x37,0x67, 0x1,0x5c,0x43, 0xf,0x37,0x3f, 0x3,0x3d,0x65,\n  0x1,0x61,0x25, 0x6,0x4c,0x48, 0x2,0x3e,0x5a, 0x2,0x3e,0x5c,\n  0x2,0x3e,0x5e, 0x1,0x61,0x24, 0x6,0x4c,0x43, 0x3,0x3d,0x66,\n  0x1,0x61,0x22, 0x3,0x3d,0x69, 0x2,0x3e,0x5b, 0x1,0x61,0x23,\n  0x2,0x3e,0x5d, 0x1,0x61,0x21, 0x3,0x3d,0x68, 0x3,0x43,0x41,\n  0x2,0x45,0x66, 0x2,0x45,0x5d, 0x2,0x45,0x60, 0x2,0x45,0x64,\n  0x1,0x65,0x61, 0x2,0x45,0x62, 0x4,0x3f,0x50, 0x2,0x45,0x61,\n  0x2,0x45,0x5e, 0x2,0x45,0x5f, 0x1,0x65,0x5f, 0x2,0x45,0x65,\n  0x1,0x65,0x5e, 0x3,0x43,0x44, 0x1,0x65,0x63, 0x1,0x65,0x62,\n  0x1,0x65,0x60, 0x4,0x3f,0x4a, 0x2,0x45,0x63, 0x3,0x65,0x24,\n  0x2,0x4c,0x50, 0x4,0x45,0x5d, 0x2,0x4c,0x4f, 0x3,0x48,0x4b,\n  0x3,0x48,0x4d, 0x2,0x4c,0x4b, 0x3,0x48,0x50, 0x3,0x48,0x4f,\n  0x1,0x6a,0x21, 0x2,0x4c,0x4e, 0x2,0x4c,0x4d, 0x1,0x6a,0x22,\n  0x3,0x48,0x52, 0xf,0x4a,0x64, 0x4,0x4b,0x63, 0x4,0x45,0x5e,\n  0x4,0x4b,0x6b, 0x1,0x6e,0x29, 0x3,0x4d,0x55, 0x2,0x52,0x5a,\n  0x3,0x4d,0x56, 0x1,0x6e,0x2a, 0x1,0x6e,0x26, 0x1,0x6e,0x28,\n  0x3,0x4d,0x5a, 0x1,0x6e,0x25, 0x1,0x6e,0x27, 0x3,0x4d,0x53,\n  0x3,0x4d,0x57, 0x2,0x58,0x79, 0x3,0x52,0x2a, 0x1,0x71,0x5a,\n  0x2,0x58,0x7b, 0x2,0x58,0x7a, 0x3,0x55,0x64, 0x2,0x4c,0x4c,\n  0x1,0x71,0x5c, 0x1,0x71,0x5b, 0x1,0x71,0x58, 0x1,0x71,0x59,\n  0x3,0x52,0x2c, 0xf,0x5b,0x59, 0x3,0x52,0x29, 0x2,0x5e,0x22,\n  0x4,0x57,0x49, 0x2,0x5d,0x7e, 0x1,0x74,0x54, 0x2,0x5e,0x21,\n  0x4,0x57,0x48, 0x2,0x5e,0x23, 0x2,0x5d,0x7d, 0x2,0x5d,0x7c,\n  0x2,0x62,0x4c, 0x1,0x76,0x74, 0x1,0x76,0x72, 0x1,0x76,0x73,\n  0x3,0x5a,0x66, 0x4,0x60,0x45, 0x3,0x5a,0x65, 0x2,0x66,0x30,\n  0x2,0x66,0x31, 0x1,0x78,0x58, 0x3,0x5a,0x67, 0x1,0x78,0x57,\n  0x2,0x69,0x50, 0x2,0x69,0x51, 0x2,0x69,0x4f, 0x3,0x5c,0x64,\n  0x2,0x6d,0x66, 0x2,0x6d,0x67, 0x3,0x60,0x76, 0x3,0x60,0x77,\n  0x1,0x46,0x7e, 0x2,0x22,0x68, 0x1,0x4b,0x36, 0x2,0x28,0x45,\n  0x1,0x4f,0x29, 0x1,0x4f,0x28, 0x2,0x28,0x46, 0x3,0x2e,0x44,\n  0x3,0x2e,0x47, 0x2,0x2c,0x61, 0x1,0x52,0x72, 0x2,0x2c,0x60,\n  0x1,0x52,0x73, 0x3,0x2e,0x49, 0x3,0x2e,0x48, 0x1,0x57,0x39,\n  0x2,0x31,0x5b, 0x2,0x31,0x59, 0x2,0x31,0x5f, 0x1,0x57,0x3a,\n  0x2,0x31,0x5a, 0x2,0x31,0x5e, 0x2,0x31,0x5c, 0x2,0x31,0x5d,\n  0x2,0x37,0x6b, 0x2,0x37,0x6d, 0x3,0x37,0x72, 0x1,0x5c,0x44,\n  0x3,0x37,0x71, 0x2,0x37,0x6c, 0x1,0x5c,0x45, 0x1,0x61,0x28,\n  0x1,0x61,0x27, 0x1,0x61,0x26, 0x2,0x3e,0x5f, 0x3,0x37,0x70,\n  0x4,0x39,0x65, 0x2,0x45,0x69, 0x1,0x65,0x64, 0x1,0x65,0x65,\n  0x3,0x43,0x46, 0x2,0x45,0x68, 0x2,0x45,0x67, 0x3,0x43,0x47,\n  0x3,0x65,0x7c, 0x2,0x4c,0x51, 0x1,0x6a,0x24, 0x1,0x6a,0x23,\n  0x2,0x4c,0x52, 0x2,0x4c,0x53, 0x1,0x6e,0x2c, 0x1,0x6e,0x2b,\n  0x3,0x4d,0x5b, 0x2,0x59,0x21, 0x2,0x52,0x5b, 0x2,0x52,0x5d,\n  0x2,0x52,0x5c, 0x2,0x58,0x7e, 0x2,0x58,0x7c, 0x2,0x59,0x22,\n  0x2,0x58,0x7d, 0x5,0x56,0x52, 0x1,0x71,0x5d, 0x3,0x52,0x2f,\n  0x4,0x52,0x27, 0x3,0x52,0x2e, 0x2,0x5e,0x24, 0x1,0x74,0x55,\n  0x2,0x5e,0x25, 0x2,0x5e,0x26, 0x3,0x55,0x68, 0x1,0x76,0x75,\n  0x1,0x76,0x76, 0x4,0x60,0x4b, 0x1,0x7a,0x22, 0x3,0x5e,0x49,\n  0x3,0x5e,0x48, 0x1,0x7c,0x3d, 0x1,0x47,0x21, 0x3,0x26,0x7e,\n  0x3,0x27,0x21, 0x4,0x27,0x5b, 0x3,0x2a,0x47, 0x3,0x2e,0x4e,\n  0x2,0x2c,0x62, 0x3,0x2e,0x4f, 0x3,0x2e,0x4d, 0x3,0x2e,0x4b,\n  0x3,0x2e,0x4c, 0xf,0x2c,0x76, 0x2,0x31,0x60, 0x1,0x57,0x3b,\n  0x3,0x33,0x23, 0x3,0x33,0x26, 0x3,0x33,0x27, 0x3,0x33,0x24,\n  0x1,0x5d,0x7e, 0x1,0x5d,0x7d, 0x3,0x37,0x73, 0x3,0x3d,0x71,\n  0x1,0x61,0x2a, 0x2,0x3e,0x61, 0x1,0x61,0x29, 0x2,0x3e,0x60,\n  0x3,0x3d,0x70, 0x4,0x3f,0x57, 0x3,0x43,0x49, 0x3,0x43,0x4a,\n  0x2,0x45,0x6a, 0x3,0x48,0x54, 0x1,0x6a,0x25, 0x2,0x4c,0x54,\n  0x1,0x6a,0x26, 0x3,0x48,0x55, 0x3,0x52,0x30, 0x3,0x55,0x69,\n  0x3,0x55,0x6a, 0x4,0x57,0x50, 0x3,0x58,0x49, 0x1,0x7a,0x23,\n  0x2,0x69,0x52, 0x3,0x5f,0x55, 0x1,0x48,0x4c, 0x1,0x4f,0x2a,\n  0x2,0x28,0x47, 0x3,0x2e,0x51, 0x1,0x52,0x75, 0x3,0x2e,0x50,\n  0x1,0x52,0x74, 0x2,0x2c,0x63, 0x2,0x2c,0x64, 0x2,0x31,0x62,\n  0x2,0x31,0x64, 0x1,0x57,0x3c, 0x2,0x31,0x66, 0x2,0x31,0x69,\n  0x2,0x31,0x67, 0x3,0x33,0x2b, 0x4,0x2e,0x71, 0x3,0x33,0x2a,\n  0x2,0x31,0x68, 0x2,0x31,0x65, 0x2,0x31,0x61, 0x1,0x57,0x3d,\n  0x2,0x31,0x6a, 0x2,0x31,0x63, 0x3,0x33,0x2c, 0x3,0x37,0x78,\n  0x3,0x37,0x79, 0x2,0x37,0x76, 0x1,0x5c,0x4b, 0x2,0x38,0x21,\n  0x1,0x5c,0x48, 0x3,0x37,0x77, 0x2,0x37,0x78, 0x1,0x5c,0x4c,\n  0x3,0x37,0x7b, 0x1,0x5c,0x46, 0x3,0x37,0x76, 0x2,0x37,0x73,\n  0x2,0x38,0x22, 0x2,0x37,0x74, 0x2,0x37,0x71, 0x1,0x5c,0x4a,\n  0x4,0x33,0x7c, 0x1,0x5c,0x47, 0x4,0x33,0x7a, 0x2,0x37,0x77,\n  0x2,0x37,0x7a, 0x1,0x5c,0x49, 0x2,0x37,0x7b, 0x1,0x5c,0x4d,\n  0x2,0x37,0x7c, 0x2,0x37,0x72, 0x2,0x37,0x79, 0x2,0x37,0x7d,\n  0x2,0x37,0x75, 0x2,0x37,0x70, 0x2,0x37,0x6e, 0x3,0x37,0x7a,\n  0x3,0x65,0x7d, 0x2,0x37,0x7e, 0xf,0x37,0x4d, 0x2,0x37,0x6f,\n  0xf,0x36,0x7e, 0x5,0x3b,0x24, 0x2,0x3e,0x68, 0x3,0x3d,0x7b,\n  0x3,0x3d,0x78, 0x3,0x3d,0x75, 0x2,0x3e,0x64, 0x2,0x3e,0x6a,\n  0x1,0x61,0x2d, 0x2,0x3e,0x63, 0x2,0x3e,0x65, 0x1,0x61,0x2b,\n  0x2,0x3e,0x62, 0x1,0x61,0x32, 0x2,0x3e,0x66, 0x1,0x61,0x31,\n  0x2,0x3e,0x67, 0x1,0x61,0x33, 0x1,0x61,0x2e, 0x1,0x61,0x34,\n  0x1,0x61,0x2f, 0x3,0x3d,0x79, 0x1,0x61,0x30, 0x3,0x3d,0x72,\n  0x1,0x61,0x2c, 0x3,0x3d,0x76, 0x2,0x3e,0x69, 0x3,0x65,0x7e,\n  0x3,0x43,0x4f, 0x4,0x3f,0x67, 0x1,0x65,0x68, 0x2,0x45,0x75,\n  0x3,0x43,0x4c, 0x2,0x45,0x78, 0x2,0x45,0x6c, 0x2,0x45,0x71,\n  0x2,0x45,0x6b, 0x1,0x65,0x6a, 0x3,0x43,0x55, 0x2,0x45,0x6f,\n  0x4,0x3f,0x5e, 0x3,0x43,0x4d, 0x3,0x3d,0x77, 0x2,0x45,0x6d,\n  0x1,0x65,0x69, 0x3,0x43,0x54, 0x2,0x45,0x74, 0x2,0x45,0x73,\n  0x2,0x45,0x70, 0x2,0x45,0x72, 0x2,0x45,0x6e, 0x1,0x6a,0x2a,\n  0x2,0x45,0x77, 0x1,0x65,0x66, 0x2,0x45,0x76, 0x3,0x43,0x51,\n  0xf,0x44,0x45, 0x3,0x48,0x56, 0x2,0x4c,0x64, 0x3,0x48,0x58,\n  0x1,0x6a,0x31, 0x2,0x4c,0x5f, 0x3,0x48,0x60, 0x1,0x6a,0x30,\n  0x2,0x4c,0x55, 0x4,0x45,0x6b, 0x2,0x4c,0x57, 0x1,0x6a,0x29,\n  0x2,0x4c,0x5c, 0x2,0x4c,0x5b, 0x2,0x4c,0x5e, 0x1,0x6a,0x2e,\n  0x2,0x4c,0x59, 0x2,0x4c,0x58, 0x3,0x48,0x5a, 0x3,0x48,0x5e,\n  0x1,0x6a,0x2d, 0x1,0x6a,0x28, 0x2,0x4c,0x5a, 0x1,0x6a,0x2b,\n  0x2,0x4c,0x60, 0x2,0x4c,0x62, 0x2,0x4c,0x5d, 0x2,0x4c,0x56,\n  0x1,0x6a,0x2c, 0x3,0x48,0x57, 0x3,0x48,0x5d, 0x1,0x6e,0x34,\n  0x1,0x6a,0x27, 0x4,0x45,0x64, 0x3,0x48,0x5c, 0x2,0x4c,0x63,\n  0x4,0x45,0x70, 0x2,0x52,0x61, 0x1,0x6e,0x2d, 0x3,0x4d,0x5c,\n  0x2,0x52,0x63, 0x4,0x4c,0x2b, 0x1,0x6e,0x2e, 0x3,0x4d,0x65,\n  0x3,0x4d,0x5d, 0x1,0x6e,0x30, 0x2,0x52,0x66, 0x4,0x4b,0x7a,\n  0x2,0x52,0x5e, 0x1,0x6a,0x2f, 0x2,0x52,0x64, 0x4,0x4b,0x73,\n  0x4,0x4c,0x31, 0x4,0x4b,0x74, 0x4,0x4c,0x2a, 0x2,0x52,0x60,\n  0x3,0x4d,0x60, 0x1,0x65,0x67, 0x1,0x6e,0x33, 0x4,0x4c,0x21,\n  0x4,0x4b,0x78, 0x1,0x6e,0x2f, 0x4,0x4c,0x26, 0x1,0x6e,0x31,\n  0x1,0x6e,0x32, 0x4,0x4b,0x76, 0x1,0x71,0x60, 0x2,0x52,0x65,\n  0x2,0x52,0x5f, 0x1,0x6e,0x35, 0x3,0x4d,0x63, 0x2,0x52,0x62,\n  0x3,0x66,0x21, 0x2,0x59,0x2c, 0x2,0x59,0x27, 0x4,0x52,0x2d,\n  0x5,0x56,0x69, 0x2,0x59,0x31, 0x1,0x71,0x5e, 0x2,0x59,0x29,\n  0x1,0x71,0x62, 0x2,0x59,0x2f, 0x2,0x59,0x26, 0x2,0x59,0x23,\n  0x2,0x59,0x32, 0x1,0x74,0x5b, 0x1,0x71,0x63, 0x2,0x59,0x2e,\n  0x2,0x59,0x24, 0x1,0x71,0x61, 0x2,0x59,0x28, 0x1,0x71,0x65,\n  0x2,0x59,0x25, 0x2,0x59,0x2a, 0x1,0x71,0x64, 0x2,0x59,0x2d,\n  0x2,0x59,0x30, 0x3,0x52,0x33, 0x3,0x52,0x34, 0x2,0x5e,0x38,\n  0x2,0x5e,0x39, 0x2,0x5e,0x29, 0x2,0x5e,0x30, 0x2,0x5e,0x2e,\n  0x4,0x57,0x5f, 0x3,0x55,0x6d, 0x1,0x74,0x59, 0x2,0x5e,0x35,\n  0x2,0x59,0x2b, 0x3,0x55,0x6b, 0x2,0x5e,0x2c, 0x3,0x55,0x6e,\n  0x2,0x5e,0x36, 0x1,0x74,0x58, 0x2,0x5e,0x2b, 0x2,0x5e,0x2a,\n  0x2,0x5e,0x34, 0x2,0x5e,0x31, 0x2,0x5e,0x33, 0x4,0x57,0x54,\n  0x2,0x5e,0x27, 0x2,0x5e,0x37, 0x1,0x74,0x56, 0x3,0x55,0x70,\n  0x2,0x5e,0x32, 0x2,0x5e,0x3b, 0x2,0x5e,0x2f, 0x1,0x74,0x5a,\n  0x1,0x74,0x57, 0x2,0x5e,0x2d, 0x2,0x5e,0x28, 0x2,0x5e,0x3a,\n  0x1,0x71,0x5f, 0x3,0x55,0x71, 0xf,0x5b,0x5f, 0x4,0x57,0x57,\n  0x3,0x55,0x6f, 0x2,0x62,0x4f, 0x3,0x58,0x50, 0x3,0x58,0x4e,\n  0x2,0x62,0x4d, 0x2,0x62,0x53, 0x1,0x76,0x7a, 0x2,0x62,0x51,\n  0x2,0x62,0x50, 0x1,0x76,0x7c, 0x2,0x62,0x56, 0x1,0x76,0x7b,\n  0x3,0x58,0x51, 0x2,0x62,0x57, 0x2,0x62,0x54, 0x1,0x76,0x78,\n  0x2,0x62,0x55, 0x2,0x62,0x4e, 0x1,0x76,0x79, 0x1,0x76,0x77,\n  0x2,0x66,0x35, 0x2,0x62,0x52, 0x3,0x58,0x4c, 0x3,0x66,0x22,\n  0x2,0x62,0x58, 0x3,0x66,0x23, 0x2,0x66,0x32, 0x3,0x5a,0x6f,\n  0x3,0x5a,0x6e, 0x4,0x60,0x4e, 0x1,0x78,0x5d, 0x1,0x78,0x5b,\n  0x2,0x66,0x34, 0x4,0x60,0x4c, 0x2,0x66,0x36, 0x2,0x66,0x33,\n  0x1,0x78,0x5c, 0x1,0x78,0x59, 0x1,0x78,0x5a, 0x1,0x78,0x5e,\n  0x3,0x66,0x24, 0x1,0x7a,0x25, 0x3,0x5c,0x66, 0x2,0x69,0x57,\n  0x5,0x6c,0x79, 0x2,0x69,0x56, 0x2,0x69,0x54, 0x2,0x69,0x53,\n  0x2,0x69,0x55, 0x3,0x5c,0x65, 0x1,0x7a,0x24, 0x1,0x7a,0x26,\n  0x3,0x66,0x25, 0xf,0x65,0x67, 0x1,0x7a,0x7b, 0x3,0x5e,0x4c,\n  0x4,0x66,0x6f, 0x2,0x6b,0x73, 0x2,0x6b,0x72, 0x3,0x5c,0x67,\n  0x3,0x5e,0x4b, 0x2,0x6d,0x68, 0x3,0x5f,0x58, 0x2,0x6d,0x6a,\n  0x2,0x6d,0x6c, 0x2,0x6d,0x6b, 0x2,0x6d,0x69, 0x3,0x5f,0x57,\n  0x3,0x60,0x3f, 0x1,0x7b,0x6d, 0x1,0x7b,0x6c, 0x3,0x60,0x3e,\n  0x1,0x7c,0x3f, 0x1,0x7c,0x3e, 0x1,0x7c,0x40, 0x2,0x6f,0x3c,\n  0x2,0x6f,0x3b, 0x3,0x66,0x26, 0x2,0x71,0x2b, 0x2,0x70,0x46,\n  0x2,0x71,0x2c, 0x1,0x7d,0x25, 0x3,0x61,0x44, 0x1,0x7d,0x26,\n  0x2,0x71,0x5c, 0x4,0x6d,0x5b, 0x3,0x62,0x3a, 0x1,0x7d,0x4b,\n  0x1,0x48,0x4d, 0x3,0x2a,0x49, 0x2,0x28,0x48, 0x3,0x2a,0x48,\n  0x3,0x2e,0x52, 0x2,0x2c,0x66, 0x2,0x2c,0x67, 0x2,0x2c,0x65,\n  0x3,0x2e,0x54, 0x3,0x2e,0x53, 0x1,0x52,0x76, 0xf,0x2d,0x21,\n  0x2,0x2c,0x68, 0x2,0x2c,0x69, 0x2,0x2c,0x6a, 0x3,0x33,0x31,\n  0x2,0x31,0x6b, 0x2,0x31,0x71, 0x3,0x33,0x2e, 0x3,0x33,0x30,\n  0x2,0x31,0x6f, 0x1,0x57,0x3e, 0x2,0x31,0x6d, 0x3,0x33,0x32,\n  0x2,0x31,0x6e, 0x2,0x31,0x70, 0x3,0x33,0x2d, 0x2,0x31,0x6c,\n  0x1,0x5c,0x4e, 0x3,0x37,0x7d, 0x2,0x38,0x23, 0x1,0x5c,0x50,\n  0x2,0x38,0x25, 0x1,0x5c,0x4f, 0x2,0x38,0x24, 0x3,0x37,0x7e,\n  0x3,0x38,0x21, 0x3,0x38,0x3e, 0x3,0x38,0x22, 0x4,0x34,0x22,\n  0x2,0x3e,0x6c, 0x1,0x61,0x35, 0x3,0x3e,0x21, 0x2,0x3e,0x6e,\n  0x2,0x3e,0x6b, 0x2,0x38,0x26, 0x3,0x3e,0x23, 0x1,0x61,0x36,\n  0x3,0x3e,0x22, 0x3,0x3d,0x7e, 0x2,0x3e,0x6d, 0x3,0x66,0x27,\n  0xf,0x3e,0x21, 0xf,0x3e,0x23, 0x3,0x43,0x58, 0x2,0x45,0x7b,\n  0x3,0x43,0x5c, 0x1,0x65,0x6b, 0x2,0x45,0x79, 0x1,0x65,0x6c,\n  0x2,0x45,0x7a, 0x1,0x65,0x6d, 0x4,0x45,0x74, 0x3,0x48,0x62,\n  0x3,0x48,0x61, 0x1,0x6a,0x32, 0x2,0x4c,0x68, 0x2,0x4c,0x65,\n  0x2,0x4c,0x67, 0x1,0x6a,0x33, 0x1,0x6a,0x34, 0x2,0x4c,0x66,\n  0xf,0x4b,0x27, 0xf,0x4b,0x2b, 0x3,0x4d,0x6f, 0x3,0x4d,0x71,\n  0x3,0x4d,0x6d, 0x2,0x52,0x67, 0x3,0x4d,0x70, 0x3,0x4d,0x73,\n  0x2,0x52,0x68, 0x3,0x4d,0x72, 0x1,0x6e,0x36, 0x2,0x52,0x6a,\n  0x2,0x52,0x69, 0x3,0x4d,0x6e, 0x1,0x23,0x23, 0x4,0x52,0x44,\n  0x2,0x59,0x36, 0x2,0x59,0x37, 0x2,0x59,0x33, 0x3,0x52,0x37,\n  0x2,0x59,0x34, 0x1,0x71,0x66, 0x1,0x71,0x67, 0x2,0x59,0x35,\n  0x1,0x74,0x61, 0x3,0x55,0x75, 0x3,0x55,0x74, 0x1,0x74,0x5d,\n  0x1,0x74,0x62, 0x1,0x74,0x5e, 0x1,0x74,0x60, 0x1,0x74,0x5c,\n  0x3,0x52,0x39, 0x1,0x74,0x5f, 0x3,0x58,0x55, 0x4,0x5c,0x5a,\n  0x4,0x5c,0x5b, 0x3,0x58,0x54, 0x1,0x76,0x7d, 0x2,0x5e,0x3c,\n  0x7,0x48,0x57, 0x2,0x66,0x38, 0x4,0x60,0x5a, 0x2,0x66,0x37,\n  0x3,0x66,0x28, 0x2,0x69,0x58, 0x1,0x7a,0x27, 0x1,0x7a,0x28,\n  0x2,0x6d,0x6e, 0x2,0x6b,0x74, 0x3,0x61,0x69, 0x2,0x6d,0x6d,\n  0x3,0x60,0x40, 0x2,0x71,0x2d, 0x2,0x71,0x72, 0x1,0x48,0x4e,\n  0x3,0x27,0x22, 0x1,0x4b,0x37, 0x3,0x2a,0x4b, 0x2,0x28,0x49,\n  0x1,0x4f,0x2b, 0x3,0x2a,0x4a, 0x1,0x52,0x79, 0x2,0x2c,0x6d,\n  0x1,0x52,0x77, 0x2,0x2c,0x6b, 0x1,0x52,0x7c, 0x1,0x52,0x78,\n  0x1,0x52,0x7d, 0x1,0x52,0x7b, 0x2,0x2c,0x6c, 0x1,0x52,0x7a,\n  0x1,0x57,0x42, 0x1,0x57,0x41, 0x2,0x31,0x7c, 0x1,0x57,0x4a,\n  0x2,0x31,0x75, 0x2,0x31,0x7b, 0x1,0x57,0x46, 0x2,0x31,0x74,\n  0x2,0x31,0x7a, 0x2,0x31,0x78, 0x1,0x57,0x45, 0x1,0x57,0x47,\n  0x2,0x31,0x77, 0x1,0x57,0x40, 0x2,0x31,0x76, 0x1,0x57,0x4b,\n  0x1,0x57,0x48, 0x1,0x57,0x4c, 0x1,0x57,0x49, 0x2,0x31,0x73,\n  0x2,0x31,0x72, 0x2,0x31,0x79, 0x1,0x57,0x43, 0x1,0x57,0x3f,\n  0x1,0x57,0x44, 0x4,0x2f,0x25, 0x3,0x33,0x37, 0x3,0x33,0x3b,\n  0x2,0x38,0x35, 0x2,0x38,0x2e, 0x4,0x3a,0x26, 0x1,0x61,0x3b,\n  0x2,0x38,0x2d, 0x3,0x38,0x29, 0x1,0x5c,0x54, 0x1,0x5c,0x5b,\n  0x1,0x5c,0x58, 0x1,0x5c,0x5e, 0x1,0x5c,0x5d, 0x1,0x5c,0x59,\n  0x3,0x38,0x26, 0x2,0x38,0x27, 0x2,0x38,0x2a, 0x3,0x38,0x27,\n  0x2,0x38,0x29, 0x1,0x5c,0x55, 0x2,0x38,0x2b, 0x2,0x38,0x34,\n  0x1,0x5c,0x56, 0x2,0x38,0x28, 0x2,0x38,0x31, 0x2,0x38,0x32,\n  0x1,0x5c,0x57, 0x2,0x38,0x2f, 0x1,0x5c,0x5c, 0x1,0x5c,0x52,\n  0x1,0x5c,0x5a, 0x2,0x38,0x2c, 0x1,0x5c,0x51, 0x2,0x38,0x30,\n  0x3,0x38,0x2e, 0x3,0x38,0x24, 0x2,0x38,0x33, 0xf,0x37,0x54,\n  0x3,0x38,0x2b, 0x3,0x3e,0x34, 0x2,0x3f,0x21, 0x2,0x3e,0x76,\n  0x1,0x61,0x38, 0x2,0x3e,0x7d, 0x2,0x3e,0x7a, 0x2,0x3e,0x72,\n  0x2,0x3e,0x7b, 0x1,0x61,0x3a, 0x2,0x3e,0x73, 0x3,0x3e,0x29,\n  0x2,0x3e,0x6f, 0x3,0x3e,0x26, 0x3,0x3e,0x2e, 0x1,0x65,0x73,\n  0x2,0x3e,0x78, 0x3,0x3e,0x2f, 0x1,0x61,0x37, 0x2,0x3e,0x7e,\n  0x3,0x3e,0x28, 0x1,0x61,0x3e, 0x1,0x61,0x40, 0x2,0x3e,0x71,\n  0x3,0x3e,0x2c, 0x4,0x3a,0x27, 0x1,0x61,0x3f, 0x2,0x3e,0x74,\n  0x1,0x61,0x39, 0x2,0x3e,0x7c, 0x2,0x3e,0x75, 0x2,0x3e,0x79,\n  0x3,0x3e,0x2a, 0x2,0x3e,0x77, 0x1,0x61,0x3c, 0x2,0x3e,0x70,\n  0x1,0x61,0x41, 0x1,0x5c,0x53, 0x1,0x61,0x3d, 0x1,0x61,0x42,\n  0x3,0x3e,0x24, 0x3,0x3e,0x35, 0x3,0x3e,0x33, 0x3,0x43,0x67,\n  0x1,0x65,0x6f, 0x2,0x46,0x24, 0x2,0x46,0x26, 0x2,0x46,0x28,\n  0x2,0x46,0x2c, 0x3,0x3e,0x2b, 0x2,0x46,0x22, 0x2,0x45,0x7e,\n  0x1,0x65,0x71, 0x4,0x3f,0x71, 0x2,0x46,0x27, 0x2,0x46,0x2b,\n  0x2,0x46,0x23, 0x2,0x45,0x7d, 0x3,0x43,0x66, 0x2,0x45,0x7c,\n  0x3,0x43,0x69, 0x3,0x43,0x60, 0x3,0x43,0x62, 0x2,0x46,0x29,\n  0x2,0x46,0x21, 0x2,0x46,0x25, 0x1,0x65,0x72, 0x3,0x43,0x5e,\n  0x1,0x65,0x70, 0x2,0x46,0x2d, 0x1,0x65,0x6e, 0x2,0x46,0x2a,\n  0x3,0x43,0x64, 0x2,0x4c,0x79, 0x3,0x43,0x68, 0x3,0x43,0x6a,\n  0x3,0x43,0x63, 0x1,0x6a,0x37, 0x2,0x4c,0x71, 0x1,0x6e,0x43,\n  0x2,0x4c,0x7b, 0x1,0x6a,0x3a, 0x2,0x4d,0x21, 0x1,0x6a,0x40,\n  0x2,0x4c,0x6c, 0x3,0x48,0x74, 0x4,0x45,0x7b, 0x2,0x4c,0x7c,\n  0x2,0x4c,0x69, 0x3,0x48,0x6d, 0x2,0x4c,0x7e, 0x2,0x4c,0x6d,\n  0x3,0x48,0x6e, 0x1,0x6a,0x47, 0x1,0x6a,0x44, 0x2,0x4c,0x7d,\n  0x2,0x4c,0x77, 0x1,0x6a,0x36, 0x1,0x6a,0x3e, 0x1,0x6a,0x3d,\n  0x3,0x48,0x70, 0x1,0x6a,0x3c, 0x1,0x6a,0x42, 0x3,0x48,0x69,\n  0x2,0x4c,0x6a, 0x1,0x6a,0x43, 0x2,0x4c,0x78, 0x1,0x6a,0x3f,\n  0x1,0x6a,0x35, 0x2,0x4c,0x7a, 0x1,0x6a,0x38, 0x1,0x6a,0x39,\n  0x1,0x6a,0x41, 0x2,0x4c,0x6f, 0x2,0x4c,0x6e, 0x2,0x4c,0x6b,\n  0x4,0x45,0x7c, 0x2,0x4c,0x73, 0x2,0x4c,0x70, 0x2,0x4c,0x74,\n  0x1,0x6a,0x46, 0x3,0x48,0x68, 0x2,0x4d,0x22, 0x1,0x6a,0x3b,\n  0x2,0x4c,0x75, 0x2,0x4c,0x76, 0x3,0x48,0x71, 0x2,0x4c,0x72,\n  0x3,0x48,0x73, 0x3,0x66,0x29, 0x3,0x48,0x6b, 0x1,0x6a,0x45,\n  0x3,0x66,0x2b, 0x3,0x4e,0x22, 0x2,0x52,0x6f, 0x1,0x6e,0x3b,\n  0x1,0x6e,0x44, 0x1,0x6e,0x40, 0x2,0x52,0x6c, 0x3,0x4d,0x7c,\n  0x1,0x6e,0x3d, 0x1,0x6e,0x41, 0x2,0x52,0x78, 0x1,0x6e,0x37,\n  0x2,0x52,0x70, 0x3,0x4d,0x78, 0x1,0x6e,0x3f, 0x3,0x4e,0x24,\n  0x3,0x4e,0x2f, 0x2,0x52,0x73, 0x2,0x52,0x6e, 0x1,0x6e,0x3e,\n  0x1,0x6e,0x42, 0x2,0x52,0x6d, 0x3,0x4e,0x2e, 0x1,0x6e,0x3c,\n  0x3,0x4d,0x77, 0x2,0x52,0x77, 0x1,0x6e,0x39, 0x2,0x52,0x76,\n  0x2,0x52,0x75, 0x1,0x6e,0x45, 0x2,0x50,0x3b, 0x1,0x6e,0x38,\n  0x3,0x4e,0x2b, 0x2,0x52,0x74, 0x2,0x52,0x6b, 0x3,0x4d,0x75,\n  0x1,0x6e,0x46, 0x2,0x52,0x72, 0x1,0x6e,0x3a, 0x3,0x4e,0x28,\n  0x3,0x4e,0x29, 0x3,0x4e,0x25, 0x3,0x4e,0x2c, 0x3,0x4e,0x27,\n  0x3,0x4d,0x7e, 0x3,0x4d,0x7d, 0x2,0x52,0x71, 0x4,0x4c,0x45,\n  0x3,0x66,0x2a, 0x1,0x71,0x6a, 0x1,0x71,0x6f, 0x1,0x71,0x68,\n  0x2,0x59,0x44, 0x2,0x59,0x3b, 0x2,0x59,0x47, 0x2,0x59,0x3f,\n  0x2,0x59,0x45, 0x1,0x71,0x70, 0x1,0x71,0x69, 0x2,0x59,0x38,\n  0x2,0x59,0x3e, 0x2,0x59,0x48, 0x2,0x59,0x41, 0x2,0x59,0x46,\n  0x2,0x59,0x3a, 0x4,0x52,0x4c, 0x3,0x52,0x3b, 0x2,0x59,0x42,\n  0x1,0x71,0x6b, 0x2,0x59,0x40, 0x1,0x71,0x6e, 0x1,0x71,0x6d,\n  0x2,0x59,0x3c, 0x2,0x59,0x3d, 0x2,0x59,0x39, 0x2,0x59,0x43,\n  0x1,0x71,0x6c, 0x2,0x59,0x4a, 0x2,0x59,0x49, 0x3,0x52,0x40,\n  0x3,0x52,0x3f, 0x2,0x5e,0x47, 0x2,0x5e,0x43, 0x1,0x74,0x69,\n  0x3,0x55,0x79, 0x2,0x5e,0x3d, 0x1,0x74,0x63, 0x1,0x74,0x73,\n  0x2,0x5e,0x49, 0x1,0x74,0x6b, 0x1,0x74,0x67, 0x2,0x5e,0x40,\n  0x1,0x74,0x6e, 0x1,0x74,0x71, 0x2,0x5e,0x4b, 0x1,0x74,0x66,\n  0x2,0x5e,0x42, 0x1,0x74,0x6f, 0x2,0x5e,0x4d, 0x2,0x5e,0x4a,\n  0x2,0x5e,0x3e, 0x1,0x74,0x6a, 0x1,0x74,0x64, 0x1,0x74,0x72,\n  0x2,0x5e,0x45, 0x1,0x74,0x6d, 0x2,0x5e,0x3f, 0x1,0x74,0x68,\n  0x2,0x5e,0x4c, 0x1,0x74,0x6c, 0x1,0x74,0x65, 0x2,0x5e,0x46,\n  0x1,0x74,0x70, 0x2,0x5e,0x44, 0x2,0x5e,0x48, 0x3,0x55,0x7a,\n  0x4,0x5c,0x5f, 0x3,0x58,0x59, 0x2,0x62,0x5a, 0x2,0x62,0x60,\n  0x1,0x77,0x25, 0x2,0x62,0x63, 0x1,0x76,0x7e, 0x1,0x77,0x21,\n  0x2,0x62,0x5b, 0x2,0x62,0x62, 0x2,0x62,0x5d, 0x1,0x77,0x26,\n  0x1,0x77,0x23, 0x3,0x58,0x5b, 0x2,0x62,0x59, 0x3,0x58,0x58,\n  0x1,0x77,0x22, 0x2,0x62,0x5f, 0x2,0x62,0x61, 0x1,0x77,0x24,\n  0x2,0x62,0x5e, 0x2,0x62,0x5c, 0x3,0x66,0x2c, 0x4,0x5c,0x5e,\n  0x3,0x58,0x5a, 0x2,0x66,0x42, 0x1,0x78,0x62, 0x1,0x78,0x63,\n  0x1,0x78,0x5f, 0x3,0x5a,0x72, 0x1,0x78,0x60, 0x3,0x5a,0x74,\n  0x2,0x66,0x3e, 0x2,0x66,0x3c, 0x3,0x5a,0x75, 0x2,0x66,0x40,\n  0x1,0x78,0x64, 0x2,0x66,0x41, 0x2,0x66,0x3a, 0x2,0x66,0x39,\n  0x2,0x66,0x3d, 0x2,0x66,0x3b, 0x1,0x78,0x61, 0x2,0x66,0x3f,\n  0x2,0x69,0x59, 0x1,0x7a,0x2b, 0x1,0x7a,0x2a, 0x2,0x69,0x5a,\n  0x3,0x5c,0x6c, 0x2,0x69,0x5c, 0x2,0x69,0x5b, 0x1,0x7a,0x2c,\n  0x3,0x5e,0x53, 0x3,0x5e,0x50, 0x2,0x6b,0x79, 0x2,0x6b,0x76,\n  0x2,0x6b,0x77, 0x3,0x5e,0x51, 0x2,0x6b,0x75, 0x2,0x6b,0x78,\n  0x1,0x7a,0x7d, 0x2,0x6b,0x7a, 0x3,0x5e,0x52, 0x1,0x7a,0x7c,\n  0x2,0x6d,0x6f, 0x3,0x5f,0x5a, 0x1,0x7c,0x41, 0x1,0x7c,0x43,\n  0x2,0x6f,0x3d, 0x1,0x7c,0x42, 0x2,0x70,0x47, 0x2,0x71,0x2f,\n  0x2,0x71,0x31, 0x2,0x71,0x2e, 0x2,0x71,0x30, 0x1,0x7d,0x39,\n  0x4,0x6d,0x78, 0x3,0x62,0x35, 0x1,0x48,0x4f, 0x4,0x25,0x57,\n  0x1,0x52,0x7e, 0x2,0x30,0x52, 0x1,0x57,0x4d, 0x3,0x38,0x31,\n  0xf,0x31,0x78, 0x1,0x5c,0x5f, 0x2,0x3f,0x22, 0x2,0x3f,0x23,\n  0x3,0x66,0x2d, 0x3,0x48,0x77, 0x2,0x59,0x4b, 0x1,0x74,0x74,\n  0x2,0x5e,0x4e, 0x3,0x55,0x7d, 0x3,0x58,0x5c, 0x1,0x77,0x27,\n  0x2,0x66,0x44, 0x2,0x66,0x43, 0x1,0x7a,0x2d, 0x2,0x6b,0x7b,\n  0x3,0x5f,0x5b, 0x2,0x6d,0x70, 0x1,0x7c,0x64, 0x2,0x22,0x69,\n  0x4,0x22,0x21, 0x1,0x4f,0x2c, 0x1,0x4b,0x38, 0xf,0x28,0x4a,\n  0x2,0x2c,0x6e, 0x3,0x2a,0x4e, 0x2,0x32,0x24, 0x2,0x31,0x7d,\n  0x2,0x32,0x23, 0x2,0x32,0x21, 0x1,0x57,0x4e, 0x2,0x32,0x22,\n  0x2,0x31,0x7e, 0x3,0x33,0x3c, 0x2,0x38,0x36, 0x4,0x3a,0x2b,\n  0x2,0x3f,0x24, 0x2,0x3f,0x25, 0x2,0x46,0x30, 0x2,0x46,0x31,\n  0x1,0x65,0x75, 0x1,0x65,0x76, 0x2,0x46,0x2f, 0x2,0x46,0x32,\n  0x2,0x46,0x2e, 0x1,0x65,0x74, 0x3,0x48,0x78, 0x1,0x6a,0x48,\n  0x3,0x48,0x79, 0x1,0x65,0x77, 0x2,0x4d,0x23, 0x1,0x6e,0x47,\n  0x2,0x52,0x79, 0x1,0x6e,0x48, 0x3,0x4e,0x30, 0x1,0x71,0x71,\n  0x2,0x59,0x4e, 0x2,0x59,0x4c, 0x2,0x59,0x4d, 0x2,0x5e,0x51,\n  0x2,0x5e,0x50, 0x2,0x5e,0x4f, 0x7,0x41,0x61, 0x4,0x5c,0x68,\n  0x2,0x66,0x45, 0x4,0x60,0x6f, 0x1,0x78,0x65, 0x2,0x66,0x46,\n  0x2,0x6d,0x71, 0x1,0x7c,0x65, 0x2,0x70,0x48, 0x1,0x48,0x50,\n  0x1,0x4f,0x2e, 0x1,0x4f,0x2d, 0x2,0x2c,0x70, 0x1,0x53,0x21,\n  0x3,0x2e,0x5d, 0x4,0x2f,0x30, 0x2,0x2c,0x6f, 0x2,0x32,0x26,\n  0x3,0x33,0x3d, 0x1,0x57,0x4f, 0x2,0x38,0x37, 0x2,0x32,0x25,\n  0x3,0x33,0x3f, 0x4,0x2f,0x2f, 0x3,0x33,0x3e, 0x1,0x5c,0x61,\n  0x2,0x38,0x3a, 0x2,0x38,0x38, 0x2,0x38,0x39, 0x1,0x5c,0x60,\n  0x2,0x3f,0x27, 0x2,0x3f,0x28, 0x2,0x3f,0x26, 0x3,0x43,0x6e,\n  0x1,0x65,0x7a, 0x2,0x46,0x34, 0x2,0x46,0x33, 0x2,0x46,0x35,\n  0x1,0x65,0x79, 0x1,0x65,0x78, 0x4,0x46,0x26, 0x2,0x52,0x7a,\n  0x2,0x52,0x7c, 0x3,0x4e,0x31, 0x1,0x6e,0x49, 0x2,0x52,0x7b,\n  0x2,0x59,0x4f, 0x1,0x71,0x72, 0x2,0x62,0x65, 0x3,0x58,0x5d,\n  0x2,0x62,0x64, 0x1,0x78,0x66, 0x2,0x66,0x47, 0x1,0x78,0x68,\n  0x1,0x78,0x67, 0x2,0x69,0x5d, 0x2,0x6b,0x7c, 0x1,0x7a,0x7e,\n  0x1,0x48,0x51, 0x2,0x2c,0x71, 0x1,0x53,0x22, 0x2,0x32,0x29,\n  0x1,0x57,0x51, 0x2,0x32,0x28, 0x2,0x32,0x27, 0x3,0x33,0x42,\n  0x1,0x57,0x50, 0x3,0x33,0x43, 0x2,0x38,0x40, 0x4,0x34,0x3d,\n  0x2,0x38,0x42, 0x2,0x38,0x3b, 0x2,0x38,0x3c, 0x1,0x5c,0x62,\n  0x2,0x38,0x3d, 0x1,0x5c,0x63, 0x2,0x38,0x41, 0x2,0x38,0x3e,\n  0x2,0x38,0x3f, 0x1,0x5c,0x64, 0x3,0x3e,0x37, 0x1,0x61,0x44,\n  0x1,0x61,0x45, 0x3,0x3e,0x38, 0x2,0x3f,0x29, 0x2,0x46,0x36,\n  0x2,0x46,0x37, 0x3,0x43,0x72, 0x2,0x4d,0x27, 0x1,0x6a,0x4b,\n  0x1,0x6a,0x49, 0x1,0x6a,0x4a, 0x2,0x4d,0x24, 0x2,0x4d,0x25,\n  0x6,0x60,0x58, 0x2,0x4d,0x26, 0x2,0x53,0x23, 0x3,0x4e,0x32,\n  0x2,0x53,0x24, 0x1,0x6e,0x4a, 0x2,0x53,0x21, 0x2,0x52,0x7e,\n  0x2,0x53,0x22, 0x2,0x52,0x7d, 0x1,0x71,0x75, 0x2,0x59,0x50,\n  0x1,0x71,0x73, 0x1,0x71,0x74, 0x2,0x5e,0x53, 0x1,0x74,0x75,\n  0x2,0x5e,0x52, 0x2,0x61,0x34, 0x3,0x55,0x7e, 0x2,0x62,0x66,\n  0x2,0x62,0x67, 0x1,0x77,0x28, 0x3,0x58,0x61, 0x1,0x77,0x29,\n  0x1,0x74,0x76, 0x2,0x66,0x48, 0x2,0x66,0x49, 0x2,0x69,0x5e,\n  0x1,0x7a,0x2e, 0x1,0x48,0x52, 0x3,0x66,0x7b, 0x1,0x48,0x53,\n  0x1,0x57,0x53, 0x1,0x4f,0x2f, 0x1,0x57,0x52, 0x2,0x2c,0x72,\n  0x3,0x38,0x36, 0x4,0x2b,0x25, 0x3,0x33,0x44, 0x1,0x61,0x46,\n  0x1,0x48,0x54, 0x1,0x53,0x24, 0x2,0x2c,0x73, 0x2,0x2c,0x74,\n  0x1,0x53,0x23, 0x1,0x53,0x25, 0x1,0x48,0x55, 0x4,0x27,0x61,\n  0x2,0x2c,0x75, 0x1,0x57,0x55, 0x2,0x32,0x2a, 0x1,0x57,0x57,\n  0x1,0x57,0x54, 0x1,0x57,0x56, 0x3,0x38,0x37, 0x2,0x38,0x45,\n  0x1,0x5c,0x65, 0x3,0x38,0x39, 0x2,0x38,0x44, 0x2,0x38,0x43,\n  0x4,0x3a,0x38, 0x2,0x46,0x38, 0x3,0x49,0x22, 0x2,0x4d,0x28,\n  0x4,0x46,0x2c, 0x1,0x6e,0x4b, 0x1,0x71,0x76, 0x2,0x59,0x52,\n  0x2,0x59,0x51, 0x3,0x56,0x21, 0x2,0x5e,0x54, 0x4,0x5c,0x71,\n  0x3,0x58,0x62, 0x3,0x5c,0x6f, 0x2,0x6b,0x7d, 0x4,0x69,0x2e,\n  0x4,0x69,0x2d, 0x1,0x48,0x56, 0x2,0x24,0x73, 0x2,0x28,0x4a,\n  0x1,0x53,0x26, 0x2,0x2c,0x76, 0x6,0x3b,0x21, 0x2,0x32,0x2c,\n  0x4,0x2f,0x3a, 0x3,0x33,0x49, 0x3,0x33,0x48, 0x1,0x57,0x58,\n  0x2,0x32,0x2b, 0x1,0x57,0x59, 0x3,0x33,0x47, 0x3,0x66,0x2f,\n  0x2,0x38,0x47, 0x3,0x38,0x3d, 0x3,0x38,0x3c, 0x1,0x5c,0x67,\n  0x2,0x38,0x46, 0x2,0x38,0x48, 0x3,0x38,0x3b, 0x1,0x5c,0x66,\n  0x3,0x3e,0x3c, 0x2,0x3f,0x2b, 0x2,0x3f,0x2c, 0x2,0x3f,0x2a,\n  0x1,0x61,0x47, 0x3,0x67,0x29, 0x4,0x3f,0x7c, 0x1,0x65,0x7b,\n  0x3,0x43,0x73, 0x1,0x65,0x7c, 0x4,0x46,0x33, 0x1,0x6a,0x4d,\n  0x3,0x49,0x23, 0x2,0x4d,0x2a, 0x2,0x4d,0x29, 0x1,0x6a,0x4c,\n  0x3,0x49,0x26, 0x3,0x3e,0x3b, 0x3,0x49,0x25, 0x3,0x66,0x30,\n  0x2,0x53,0x25, 0x3,0x4e,0x34, 0x3,0x4e,0x36, 0x2,0x53,0x26,\n  0x3,0x4e,0x37, 0x3,0x4e,0x35, 0x3,0x4e,0x38, 0x2,0x59,0x53,\n  0x4,0x52,0x5c, 0x3,0x52,0x43, 0x1,0x74,0x7a, 0x1,0x74,0x79,\n  0x1,0x74,0x77, 0x1,0x74,0x78, 0x1,0x74,0x7b, 0x3,0x56,0x22,\n  0x2,0x62,0x68, 0x1,0x77,0x2b, 0x1,0x77,0x2a, 0x2,0x66,0x4a,\n  0x2,0x69,0x5f, 0x3,0x5c,0x70, 0x3,0x5c,0x71, 0x3,0x5c,0x72,\n  0x1,0x7b,0x6f, 0x1,0x7b,0x6e, 0x1,0x48,0x57, 0x6,0x3b,0x24,\n  0x2,0x2f,0x7d, 0x1,0x65,0x7e, 0x1,0x61,0x48, 0x1,0x65,0x7d,\n  0x1,0x6a,0x4e, 0x6,0x60,0x60, 0x1,0x48,0x58, 0x2,0x21,0x68,\n  0x1,0x48,0x59, 0x1,0x48,0x5a, 0x3,0x24,0x35, 0x3,0x24,0x36,\n  0x2,0x28,0x4b, 0x2,0x24,0x76, 0x3,0x27,0x24, 0x2,0x24,0x77,\n  0x1,0x4b,0x3a, 0x3,0x27,0x26, 0x2,0x24,0x74, 0x1,0x4b,0x39,\n  0x3,0x27,0x25, 0x1,0x4b,0x3c, 0x2,0x24,0x75, 0x1,0x4b,0x3e,\n  0x1,0x4b,0x3d, 0x2,0x24,0x78, 0x1,0x4b,0x3b, 0x4,0x24,0x70,\n  0x3,0x27,0x23, 0x1,0x4f,0x34, 0x1,0x4f,0x32, 0x2,0x28,0x4d,\n  0x3,0x2a,0x56, 0x1,0x4f,0x31, 0x3,0x2a,0x5b, 0x3,0x2a,0x58,\n  0x3,0x2a,0x4f, 0x1,0x4f,0x36, 0x1,0x4f,0x38, 0x1,0x4f,0x35,\n  0x3,0x2a,0x59, 0x2,0x28,0x50, 0x2,0x28,0x4c, 0x1,0x4f,0x39,\n  0x3,0x2a,0x52, 0x1,0x4f,0x33, 0x1,0x4b,0x3f, 0x3,0x2a,0x54,\n  0x1,0x4f,0x37, 0x2,0x28,0x4f, 0x3,0x2a,0x57, 0x4,0x27,0x64,\n  0x2,0x28,0x4e, 0x4,0x27,0x69, 0x1,0x4f,0x30, 0x3,0x66,0x31,\n  0x2,0x2c,0x7c, 0x1,0x53,0x2a, 0x1,0x53,0x2b, 0x2,0x2c,0x7e,\n  0x3,0x2e,0x66, 0x2,0x2c,0x78, 0x2,0x2c,0x7b, 0x2,0x2d,0x26,\n  0x2,0x2d,0x24, 0x3,0x2e,0x60, 0x1,0x53,0x2c, 0x2,0x2d,0x2a,\n  0x1,0x53,0x2f, 0x2,0x2d,0x27, 0x2,0x2c,0x7d, 0x2,0x2c,0x7a,\n  0x3,0x2e,0x61, 0x3,0x2e,0x5e, 0x2,0x3f,0x2e, 0x2,0x2d,0x25,\n  0x1,0x53,0x27, 0x2,0x2d,0x28, 0x2,0x2c,0x77, 0x2,0x2d,0x22,\n  0x1,0x53,0x29, 0x1,0x53,0x2e, 0x2,0x2d,0x23, 0x1,0x53,0x32,\n  0x1,0x53,0x30, 0x3,0x2e,0x65, 0x2,0x2c,0x79, 0x1,0x53,0x2d,\n  0x3,0x2e,0x64, 0x2,0x2d,0x21, 0x1,0x53,0x31, 0x1,0x53,0x28,\n  0x2,0x2d,0x29, 0x1,0x57,0x5e, 0x3,0x33,0x4c, 0x1,0x57,0x67,\n  0x1,0x57,0x5c, 0x1,0x57,0x5a, 0x2,0x32,0x2e, 0x1,0x57,0x62,\n  0x1,0x57,0x5f, 0x2,0x32,0x30, 0x3,0x33,0x4a, 0x3,0x33,0x52,\n  0x1,0x57,0x61, 0x2,0x32,0x2f, 0x2,0x32,0x2d, 0x2,0x32,0x32,\n  0x1,0x57,0x66, 0x1,0x57,0x64, 0x2,0x3f,0x2d, 0x3,0x33,0x4b,\n  0x2,0x32,0x33, 0x2,0x32,0x31, 0x1,0x57,0x5b, 0x3,0x33,0x4e,\n  0x3,0x33,0x4d, 0x1,0x57,0x5d, 0x1,0x57,0x60, 0x3,0x33,0x4f,\n  0x1,0x57,0x63, 0x3,0x2e,0x63, 0x1,0x57,0x65, 0x3,0x3e,0x44,\n  0x2,0x38,0x52, 0x1,0x5c,0x69, 0x3,0x38,0x49, 0x2,0x38,0x49,\n  0x2,0x38,0x4b, 0x3,0x38,0x47, 0x2,0x38,0x4c, 0x4,0x34,0x4d,\n  0x2,0x38,0x54, 0x2,0x38,0x50, 0x2,0x38,0x4e, 0x4,0x3a,0x3b,\n  0x2,0x38,0x51, 0x2,0x38,0x55, 0x1,0x5c,0x6a, 0x1,0x5c,0x6e,\n  0x2,0x38,0x4a, 0x4,0x34,0x47, 0x2,0x38,0x53, 0x4,0x34,0x50,\n  0x1,0x5c,0x6c, 0x3,0x38,0x41, 0x1,0x5c,0x6b, 0x2,0x38,0x4f,\n  0x2,0x38,0x4d, 0x3,0x38,0x42, 0x1,0x5c,0x68, 0x1,0x5c,0x6d,\n  0x3,0x38,0x45, 0x3,0x38,0x48, 0x1,0x61,0x4e, 0x2,0x3f,0x36,\n  0x3,0x3e,0x3e, 0x4,0x3a,0x3e, 0x2,0x3f,0x34, 0x1,0x61,0x50,\n  0x4,0x3a,0x47, 0x3,0x3e,0x43, 0x3,0x3e,0x45, 0x3,0x3e,0x41,\n  0x2,0x3f,0x2f, 0x2,0x46,0x46, 0x3,0x3e,0x3d, 0x1,0x61,0x4f,\n  0x2,0x3f,0x33, 0x3,0x3e,0x40, 0x3,0x3e,0x42, 0x2,0x3f,0x30,\n  0x1,0x61,0x4b, 0x1,0x61,0x51, 0x2,0x3f,0x35, 0x1,0x61,0x4d,\n  0x2,0x3f,0x32, 0x1,0x6a,0x4f, 0x1,0x61,0x4c, 0x2,0x3f,0x31,\n  0x1,0x61,0x52, 0x1,0x61,0x4a, 0x1,0x61,0x49, 0x6,0x43,0x5a,\n  0x2,0x46,0x3e, 0x2,0x46,0x3c, 0x3,0x43,0x7b, 0x2,0x46,0x42,\n  0x3,0x43,0x7e, 0x2,0x46,0x3a, 0x2,0x46,0x47, 0x2,0x46,0x3f,\n  0x3,0x43,0x75, 0x2,0x46,0x39, 0x1,0x66,0x24, 0x1,0x66,0x2a,\n  0x2,0x46,0x44, 0x4,0x40,0x29, 0x2,0x46,0x3d, 0x3,0x43,0x76,\n  0x1,0x66,0x27, 0x3,0x43,0x77, 0x3,0x44,0x23, 0x1,0x66,0x25,\n  0x2,0x46,0x45, 0x1,0x66,0x22, 0x1,0x66,0x21, 0x2,0x46,0x40,\n  0x1,0x66,0x26, 0x1,0x61,0x53, 0x3,0x43,0x7c, 0x2,0x46,0x43,\n  0x2,0x46,0x3b, 0x1,0x66,0x23, 0x1,0x66,0x28, 0x1,0x66,0x29,\n  0x3,0x44,0x22, 0x1,0x6a,0x54, 0x1,0x6a,0x50, 0x3,0x49,0x27,\n  0x1,0x6a,0x55, 0x2,0x4d,0x2d, 0x3,0x49,0x2a, 0x4,0x46,0x39,\n  0x2,0x4d,0x2c, 0x2,0x4d,0x2e, 0x1,0x6a,0x52, 0x2,0x4d,0x2b,\n  0x1,0x6a,0x53, 0x2,0x4d,0x31, 0x2,0x4d,0x30, 0x2,0x4d,0x2f,\n  0x4,0x46,0x46, 0x1,0x6a,0x51, 0x4,0x52,0x67, 0x3,0x4e,0x3b,\n  0x3,0x4e,0x3d, 0x3,0x4e,0x39, 0x2,0x53,0x2a, 0x3,0x4e,0x3c,\n  0x2,0x53,0x2d, 0x1,0x6e,0x51, 0x2,0x53,0x2c, 0x1,0x6e,0x50,\n  0x1,0x6e,0x4c, 0x1,0x6e,0x4d, 0x1,0x6e,0x4e, 0x2,0x53,0x29,\n  0x2,0x53,0x28, 0x1,0x6e,0x4f, 0x3,0x4e,0x3a, 0x2,0x53,0x2b,\n  0x2,0x53,0x27, 0x2,0x59,0x55, 0x2,0x59,0x5f, 0x1,0x71,0x79,\n  0x1,0x71,0x78, 0x3,0x52,0x49, 0x2,0x59,0x59, 0x2,0x59,0x5b,\n  0x3,0x52,0x47, 0x2,0x59,0x56, 0x3,0x52,0x44, 0x2,0x59,0x5a,\n  0x2,0x59,0x54, 0x2,0x59,0x5d, 0x1,0x71,0x77, 0x2,0x59,0x5c,\n  0x2,0x59,0x58, 0x2,0x59,0x5e, 0x3,0x56,0x23, 0x2,0x59,0x57,\n  0x1,0x74,0x7e, 0x2,0x5e,0x55, 0x2,0x5e,0x5b, 0x1,0x75,0x24,\n  0x1,0x75,0x26, 0x1,0x75,0x23, 0x1,0x75,0x22, 0x4,0x58,0x27,\n  0x1,0x75,0x21, 0x1,0x74,0x7d, 0x2,0x5e,0x56, 0x2,0x5e,0x59,\n  0x1,0x74,0x7c, 0x2,0x5e,0x5a, 0x3,0x56,0x24, 0x1,0x75,0x25,\n  0x2,0x5e,0x58, 0x7,0x48,0x7c, 0x2,0x5e,0x57, 0x1,0x77,0x2c,\n  0x3,0x58,0x65, 0x1,0x77,0x2d, 0x2,0x62,0x6b, 0x2,0x62,0x69,\n  0x2,0x62,0x6a, 0x3,0x5a,0x77, 0x2,0x66,0x4c, 0x3,0x5a,0x78,\n  0x2,0x66,0x4b, 0x1,0x78,0x69, 0x2,0x69,0x61, 0x1,0x7a,0x2f,\n  0x2,0x69,0x60, 0x2,0x6b,0x7e, 0x2,0x6d,0x72, 0x1,0x7b,0x70,\n  0x2,0x71,0x32, 0x2,0x71,0x33, 0x1,0x7c,0x44, 0x1,0x48,0x5b,\n  0x4,0x27,0x6c, 0x1,0x4f,0x3a, 0x2,0x3f,0x37, 0x1,0x6a,0x56,\n  0x1,0x75,0x27, 0x2,0x5e,0x5c, 0x1,0x48,0x5c, 0x4,0x24,0x73,\n  0x1,0x57,0x69, 0x1,0x57,0x68, 0x2,0x3f,0x38, 0x3,0x3e,0x47,\n  0x4,0x3a,0x4c, 0x4,0x4c,0x62, 0x2,0x59,0x60, 0x1,0x48,0x5d,\n  0x1,0x53,0x33, 0x4,0x3a,0x4d, 0x3,0x3e,0x48, 0x2,0x3f,0x39,\n  0x2,0x3f,0x3a, 0x2,0x3f,0x3b, 0x1,0x6a,0x57, 0x1,0x71,0x7a,\n  0x1,0x48,0x5e, 0x4,0x27,0x6d, 0x1,0x4f,0x3b, 0x2,0x2d,0x2b,\n  0x1,0x57,0x6a, 0x2,0x32,0x34, 0x1,0x5c,0x6f, 0x3,0x3e,0x49,\n  0x2,0x3f,0x3c, 0x1,0x66,0x2b, 0x1,0x6a,0x58, 0x1,0x71,0x7b,\n  0x1,0x75,0x28, 0x1,0x77,0x2e, 0x2,0x66,0x4d, 0x1,0x48,0x5f,\n  0x1,0x4f,0x3c, 0x3,0x2a,0x5d, 0x4,0x27,0x6e, 0x1,0x57,0x6b,\n  0x2,0x38,0x56, 0x1,0x61,0x54, 0x3,0x49,0x2b, 0x1,0x6a,0x59,\n  0x2,0x4d,0x32, 0x2,0x53,0x2e, 0x3,0x52,0x4a, 0x3,0x58,0x68,\n  0x3,0x5a,0x79, 0x1,0x48,0x60, 0x1,0x61,0x55, 0x2,0x46,0x48,\n  0x1,0x6a,0x5a, 0x1,0x48,0x61, 0x2,0x28,0x51, 0x2,0x2d,0x2c,\n  0x1,0x53,0x34, 0x3,0x2e,0x68, 0x2,0x32,0x36, 0x4,0x2f,0x4f,\n  0x3,0x33,0x57, 0x1,0x57,0x6e, 0x3,0x33,0x58, 0x1,0x57,0x6c,\n  0x1,0x57,0x6d, 0x1,0x57,0x6f, 0x3,0x33,0x55, 0x2,0x32,0x35,\n  0x2,0x38,0x5b, 0x2,0x38,0x58, 0x2,0x38,0x5a, 0x1,0x5c,0x70,\n  0x1,0x5c,0x72, 0x1,0x5c,0x71, 0x2,0x38,0x57, 0x1,0x5c,0x73,\n  0x2,0x38,0x59, 0x2,0x3f,0x3d, 0x2,0x3f,0x3e, 0x2,0x3f,0x3f,\n  0x2,0x46,0x4b, 0x3,0x44,0x26, 0x2,0x46,0x4c, 0x4,0x40,0x2e,\n  0x2,0x46,0x4a, 0x2,0x46,0x4d, 0x4,0x40,0x2d, 0x1,0x66,0x2c,\n  0x3,0x66,0x34, 0x2,0x46,0x49, 0x3,0x49,0x2d, 0x1,0x6a,0x5b,\n  0x3,0x49,0x2e, 0x2,0x53,0x33, 0x2,0x53,0x2f, 0x2,0x53,0x32,\n  0x2,0x53,0x34, 0x2,0x53,0x31, 0x2,0x53,0x30, 0x2,0x59,0x61,\n  0x2,0x59,0x62, 0x2,0x59,0x63, 0x1,0x71,0x7c, 0x1,0x71,0x7d,\n  0x2,0x5e,0x5e, 0x2,0x5e,0x5d, 0x2,0x5e,0x5f, 0x2,0x62,0x6d,\n  0x2,0x62,0x6c, 0x2,0x66,0x4f, 0x3,0x5a,0x7a, 0x2,0x66,0x50,\n  0x2,0x66,0x4e, 0x3,0x5a,0x7b, 0x1,0x7a,0x30, 0x4,0x64,0x2c,\n  0x2,0x69,0x62, 0x2,0x69,0x63, 0x3,0x5e,0x55, 0x2,0x6d,0x73,\n  0x2,0x6f,0x3e, 0x2,0x70,0x49, 0x1,0x48,0x62, 0x1,0x4b,0x40,\n  0x1,0x75,0x29, 0x1,0x48,0x63, 0xf,0x32,0x32, 0x2,0x38,0x5c,\n  0x2,0x3f,0x40, 0x3,0x5a,0x7c, 0x1,0x7c,0x6c, 0x2,0x22,0x6a,\n  0x4,0x21,0x53, 0x3,0x24,0x38, 0x2,0x22,0x6b, 0x2,0x22,0x6d,\n  0x1,0x48,0x64, 0x2,0x22,0x6e, 0x2,0x22,0x6c, 0x4,0x23,0x2f,\n  0x2,0x25,0x22, 0x2,0x25,0x23, 0x2,0x24,0x7b, 0x3,0x27,0x28,\n  0x4,0x24,0x7b, 0x4,0x24,0x75, 0x2,0x25,0x21, 0x1,0x4b,0x42,\n  0x3,0x27,0x29, 0x1,0x4b,0x43, 0x2,0x24,0x7c, 0x2,0x24,0x7a,\n  0x2,0x24,0x79, 0x2,0x24,0x7d, 0x1,0x4b,0x41, 0x2,0x24,0x7e,\n  0x2,0x2d,0x2d, 0x3,0x27,0x2b, 0x4,0x24,0x79, 0x2,0x28,0x56,\n  0x1,0x4f,0x3f, 0x2,0x28,0x55, 0x2,0x28,0x57, 0x3,0x2a,0x60,\n  0x1,0x4f,0x3e, 0x2,0x28,0x5c, 0x1,0x4f,0x42, 0x2,0x28,0x52,\n  0x2,0x28,0x60, 0x2,0x28,0x66, 0x1,0x4f,0x49, 0x2,0x28,0x63,\n  0x1,0x4f,0x46, 0x3,0x2a,0x6b, 0x2,0x28,0x59, 0x2,0x28,0x5f,\n  0x2,0x28,0x61, 0x3,0x2a,0x66, 0x2,0x28,0x54, 0x1,0x4f,0x45,\n  0x1,0x4f,0x40, 0x2,0x28,0x5a, 0x1,0x4f,0x47, 0x1,0x4f,0x4a,\n  0x1,0x4f,0x44, 0x3,0x2a,0x6c, 0x1,0x4f,0x3d, 0x2,0x28,0x5e,\n  0x2,0x28,0x58, 0x2,0x28,0x65, 0x1,0x4f,0x4c, 0x1,0x4f,0x48,\n  0x1,0x4f,0x43, 0x2,0x28,0x5d, 0x1,0x57,0x70, 0x2,0x28,0x5b,\n  0x1,0x4f,0x41, 0x1,0x4f,0x4b, 0x4,0x27,0x7a, 0x2,0x28,0x53,\n  0x4,0x27,0x7e, 0x2,0x28,0x62, 0x2,0x28,0x64, 0x3,0x2a,0x5e,\n  0xf,0x28,0x63, 0x3,0x2a,0x68, 0x4,0x27,0x7b, 0x3,0x2e,0x76,\n  0x1,0x53,0x45, 0x1,0x53,0x3f, 0x1,0x53,0x47, 0x1,0x53,0x44,\n  0x2,0x2d,0x34, 0x2,0x2d,0x37, 0x1,0x53,0x40, 0x3,0x2e,0x6a,\n  0x2,0x2d,0x2e, 0x4,0x2b,0x3a, 0x1,0x53,0x39, 0x1,0x53,0x43,\n  0x3,0x2e,0x6b, 0x1,0x53,0x46, 0x1,0x53,0x48, 0x2,0x2d,0x43,\n  0x2,0x2d,0x3a, 0x3,0x2e,0x78, 0x1,0x53,0x38, 0x2,0x2d,0x42,\n  0x1,0x53,0x3c, 0x1,0x53,0x3a, 0x1,0x53,0x35, 0x2,0x2d,0x32,\n  0x3,0x2e,0x72, 0x2,0x2d,0x41, 0x2,0x2d,0x36, 0x2,0x2d,0x39,\n  0x2,0x2d,0x46, 0x3,0x2e,0x74, 0x1,0x53,0x49, 0x2,0x2d,0x40,\n  0x1,0x53,0x41, 0x2,0x2d,0x3b, 0x2,0x2d,0x45, 0x2,0x2d,0x38,\n  0x2,0x2d,0x3c, 0x2,0x2d,0x3f, 0x3,0x2e,0x69, 0x3,0x2e,0x6e,\n  0x2,0x2d,0x30, 0x2,0x2d,0x44, 0x2,0x2d,0x3e, 0x3,0x2e,0x6f,\n  0x3,0x2e,0x7a, 0x2,0x2d,0x2f, 0x6,0x34,0x3c, 0x2,0x2d,0x33,\n  0x1,0x53,0x42, 0x1,0x53,0x3d, 0x1,0x53,0x36, 0x1,0x53,0x3b,\n  0x1,0x53,0x37, 0x1,0x53,0x4a, 0x2,0x2d,0x31, 0x2,0x32,0x47,\n  0x1,0x53,0x3e, 0x4,0x2b,0x3d, 0x3,0x2e,0x79, 0x2,0x2d,0x3d,\n  0x2,0x29,0x42, 0x3,0x2e,0x77, 0x3,0x66,0x35, 0x3,0x66,0x37,\n  0x2,0x32,0x4a, 0x1,0x57,0x7e, 0x3,0x33,0x62, 0x2,0x32,0x3a,\n  0x4,0x2f,0x5d, 0x2,0x32,0x45, 0x2,0x32,0x41, 0x3,0x38,0x4d,\n  0x2,0x32,0x54, 0x3,0x33,0x59, 0x2,0x32,0x4c, 0x3,0x33,0x5f,\n  0x2,0x32,0x42, 0x3,0x38,0x5b, 0x2,0x32,0x4b, 0x2,0x32,0x3c,\n  0x2,0x32,0x40, 0x2,0x32,0x57, 0x1,0x58,0x23, 0x2,0x32,0x4f,\n  0x2,0x32,0x46, 0x1,0x57,0x71, 0x2,0x32,0x55, 0x2,0x32,0x38,\n  0x4,0x2f,0x5a, 0x2,0x32,0x4e, 0x4,0x2f,0x63, 0x1,0x58,0x22,\n  0x1,0x57,0x7b, 0x2,0x32,0x37, 0x1,0x57,0x79, 0x1,0x57,0x78,\n  0x1,0x57,0x7d, 0x2,0x32,0x4d, 0x1,0x57,0x75, 0x1,0x57,0x7c,\n  0x2,0x2d,0x35, 0x2,0x3f,0x41, 0x2,0x32,0x48, 0x4,0x2f,0x5f,\n  0x3,0x2a,0x5f, 0x2,0x32,0x3e, 0x1,0x58,0x21, 0x2,0x32,0x3f,\n  0x2,0x32,0x43, 0x1,0x58,0x24, 0x2,0x32,0x39, 0x2,0x32,0x51,\n  0x3,0x3e,0x57, 0x2,0x32,0x50, 0x2,0x32,0x58, 0x1,0x57,0x77,\n  0x1,0x57,0x74, 0x2,0x32,0x56, 0x2,0x32,0x52, 0x2,0x32,0x49,\n  0x2,0x32,0x44, 0x1,0x57,0x7a, 0x1,0x57,0x76, 0x2,0x32,0x3b,\n  0x1,0x57,0x72, 0x2,0x32,0x53, 0x1,0x57,0x73, 0x4,0x2f,0x5c,\n  0x2,0x32,0x3d, 0x3,0x33,0x5a, 0x3,0x33,0x63, 0x3,0x66,0x36,\n  0x3,0x2d,0x33, 0x4,0x34,0x67, 0x3,0x38,0x4e, 0x3,0x38,0x51,\n  0x2,0x38,0x62, 0x2,0x38,0x64, 0x2,0x38,0x69, 0x2,0x38,0x7d,\n  0x1,0x5d,0x23, 0x1,0x5c,0x77, 0x3,0x38,0x54, 0x2,0x38,0x61,\n  0x1,0x5d,0x24, 0x1,0x5d,0x25, 0x2,0x38,0x6c, 0x2,0x38,0x73,\n  0x2,0x38,0x79, 0x3,0x38,0x50, 0x2,0x38,0x66, 0x4,0x34,0x6d,\n  0x2,0x38,0x6d, 0x3,0x38,0x4f, 0x3,0x38,0x5d, 0x1,0x5d,0x26,\n  0x2,0x38,0x7b, 0x2,0x38,0x76, 0x1,0x5d,0x21, 0x1,0x5c,0x7d,\n  0x2,0x38,0x72, 0x2,0x38,0x6e, 0x2,0x38,0x60, 0x1,0x5c,0x74,\n  0x2,0x38,0x65, 0x2,0x38,0x5d, 0x3,0x38,0x55, 0x1,0x5c,0x7c,\n  0x1,0x5c,0x7e, 0x2,0x38,0x6a, 0x2,0x38,0x67, 0x1,0x5c,0x79,\n  0x2,0x38,0x77, 0x1,0x5c,0x76, 0x2,0x38,0x68, 0x2,0x3f,0x6a,\n  0x2,0x38,0x70, 0x3,0x38,0x5e, 0x2,0x38,0x6f, 0x1,0x5c,0x75,\n  0x3,0x38,0x57, 0x1,0x5d,0x22, 0x3,0x38,0x52, 0x1,0x5c,0x78,\n  0x2,0x38,0x5e, 0x2,0x38,0x63, 0x2,0x38,0x74, 0x2,0x38,0x7a,\n  0x1,0x5d,0x27, 0x2,0x38,0x5f, 0x2,0x38,0x6b, 0x2,0x38,0x71,\n  0x1,0x5c,0x7b, 0x4,0x34,0x6f, 0x3,0x38,0x58, 0x2,0x38,0x7c,\n  0x2,0x38,0x75, 0x2,0x38,0x78, 0x3,0x38,0x5f, 0xf,0x37,0x78,\n  0x1,0x5c,0x7a, 0x4,0x3a,0x68, 0x2,0x3f,0x51, 0x2,0x3f,0x45,\n  0x1,0x61,0x5d, 0x2,0x3f,0x62, 0x2,0x3f,0x6b, 0x2,0x3f,0x6e,\n  0x1,0x61,0x5b, 0x2,0x3f,0x4d, 0x2,0x3f,0x66, 0x2,0x3f,0x4e,\n  0x2,0x3f,0x5c, 0x1,0x61,0x68, 0x2,0x3f,0x58, 0x1,0x61,0x65,\n  0x3,0x3e,0x5e, 0x2,0x3f,0x59, 0x2,0x3f,0x42, 0x5,0x3b,0x6f,\n  0x2,0x3f,0x67, 0x3,0x3e,0x4f, 0x3,0x3e,0x59, 0x1,0x61,0x6e,\n  0x2,0x3f,0x64, 0x2,0x3f,0x5a, 0x2,0x3f,0x70, 0x2,0x3f,0x55,\n  0x2,0x46,0x6d, 0x3,0x3e,0x4d, 0x2,0x3f,0x73, 0x1,0x61,0x6c,\n  0x2,0x3f,0x53, 0x2,0x3f,0x5f, 0x1,0x61,0x6f, 0x1,0x61,0x5a,\n  0x2,0x3f,0x57, 0x2,0x3f,0x71, 0x2,0x3f,0x50, 0x2,0x3f,0x49,\n  0x2,0x3f,0x54, 0x3,0x3e,0x5f, 0x2,0x3f,0x48, 0x2,0x3f,0x46,\n  0x1,0x61,0x56, 0x2,0x3f,0x68, 0x2,0x3f,0x4f, 0x2,0x3f,0x6c,\n  0x3,0x3e,0x4b, 0x2,0x3f,0x6d, 0x1,0x61,0x5e, 0x1,0x61,0x63,\n  0x1,0x61,0x5f, 0x1,0x61,0x67, 0x2,0x3f,0x63, 0x1,0x61,0x60,\n  0x2,0x3f,0x5b, 0x2,0x3f,0x4b, 0xf,0x3e,0x66, 0x1,0x61,0x58,\n  0x2,0x3f,0x43, 0x2,0x3f,0x65, 0x2,0x3f,0x6f, 0x2,0x3f,0x4a,\n  0x1,0x61,0x66, 0x2,0x3f,0x74, 0x2,0x3f,0x56, 0x3,0x3e,0x52,\n  0x2,0x3f,0x52, 0x3,0x3e,0x5c, 0x1,0x61,0x57, 0x1,0x61,0x6b,\n  0x3,0x3e,0x5a, 0x2,0x3f,0x61, 0x1,0x61,0x6d, 0x3,0x3e,0x50,\n  0x2,0x3f,0x5d, 0x1,0x61,0x62, 0x1,0x61,0x5c, 0x1,0x61,0x64,\n  0x1,0x61,0x59, 0x1,0x61,0x6a, 0x2,0x3f,0x5e, 0x2,0x3f,0x4c,\n  0x2,0x3f,0x60, 0x2,0x3f,0x47, 0x2,0x3f,0x69, 0x3,0x3e,0x58,\n  0x4,0x3a,0x67, 0x3,0x3e,0x5d, 0x3,0x3e,0x56, 0x3,0x3e,0x4e,\n  0x2,0x3f,0x72, 0x3,0x66,0x39, 0x3,0x3e,0x5b, 0x3,0x66,0x38,\n  0x2,0x3f,0x44, 0x2,0x46,0x6c, 0x3,0x44,0x2d, 0x2,0x47,0x24,\n  0x1,0x65,0x5c, 0x2,0x46,0x71, 0x3,0x44,0x31, 0x2,0x46,0x6f,\n  0x2,0x46,0x5a, 0x1,0x66,0x30, 0x2,0x46,0x6a, 0x2,0x46,0x7e,\n  0x2,0x46,0x66, 0x1,0x66,0x38, 0x2,0x46,0x7d, 0x2,0x46,0x64,\n  0x1,0x61,0x69, 0x2,0x46,0x74, 0x2,0x46,0x65, 0x2,0x46,0x7b,\n  0x1,0x66,0x37, 0x1,0x66,0x2f, 0x3,0x44,0x3a, 0x2,0x46,0x4f,\n  0x2,0x46,0x57, 0x3,0x44,0x35, 0x2,0x46,0x70, 0x2,0x46,0x68,\n  0x2,0x47,0x23, 0x2,0x46,0x6b, 0x1,0x66,0x3d, 0x2,0x46,0x7c,\n  0x3,0x44,0x2c, 0x1,0x66,0x34, 0x3,0x44,0x3e, 0x2,0x46,0x6e,\n  0x2,0x46,0x76, 0x2,0x46,0x5b, 0x2,0x46,0x75, 0x3,0x44,0x27,\n  0x2,0x47,0x28, 0x2,0x46,0x56, 0x2,0x46,0x77, 0x3,0x44,0x33,\n  0x2,0x47,0x26, 0x3,0x44,0x3f, 0x2,0x46,0x50, 0x1,0x61,0x61,\n  0x3,0x44,0x40, 0x2,0x46,0x5e, 0x2,0x46,0x5d, 0x1,0x66,0x36,\n  0x3,0x44,0x32, 0x2,0x46,0x61, 0x2,0x46,0x63, 0x2,0x46,0x72,\n  0x2,0x47,0x25, 0x1,0x66,0x39, 0x3,0x44,0x38, 0x1,0x66,0x3a,\n  0x3,0x44,0x30, 0x2,0x46,0x55, 0x1,0x66,0x32, 0x2,0x46,0x59,\n  0x2,0x47,0x21, 0x1,0x66,0x3b, 0x4,0x40,0x44, 0x1,0x66,0x33,\n  0x1,0x66,0x35, 0x1,0x66,0x3c, 0x2,0x47,0x27, 0x2,0x46,0x78,\n  0x2,0x46,0x73, 0x3,0x44,0x3c, 0x3,0x44,0x2f, 0x2,0x46,0x60,\n  0x2,0x46,0x5f, 0x1,0x66,0x31, 0x2,0x46,0x51, 0x1,0x66,0x2e,\n  0x2,0x46,0x69, 0x2,0x46,0x52, 0x2,0x46,0x67, 0x3,0x44,0x2e,\n  0x4,0x40,0x41, 0x2,0x46,0x5c, 0x2,0x47,0x22, 0x3,0x44,0x2a,\n  0x3,0x44,0x39, 0x4,0x40,0x36, 0x1,0x66,0x2d, 0x3,0x44,0x3b,\n  0x3,0x44,0x28, 0x2,0x46,0x58, 0x4,0x40,0x46, 0x2,0x46,0x54,\n  0x2,0x46,0x7a, 0x2,0x46,0x53, 0x1,0x6a,0x68, 0x2,0x4d,0x5a,\n  0x3,0x49,0x35, 0x3,0x49,0x44, 0x2,0x4d,0x49, 0x3,0x49,0x33,\n  0x3,0x49,0x38, 0x2,0x4d,0x33, 0x2,0x4d,0x51, 0x1,0x6a,0x60,\n  0x2,0x4d,0x42, 0x2,0x4d,0x4c, 0x1,0x6a,0x63, 0x2,0x4d,0x45,\n  0x1,0x6a,0x61, 0x2,0x4d,0x36, 0x2,0x4d,0x54, 0x2,0x4d,0x35,\n  0x2,0x4d,0x48, 0x3,0x49,0x3c, 0x2,0x4d,0x34, 0x3,0x49,0x39,\n  0x4,0x46,0x6c, 0x2,0x4d,0x46, 0x2,0x4d,0x4f, 0x2,0x4d,0x4d,\n  0x2,0x4d,0x41, 0x2,0x4d,0x3c, 0x2,0x4d,0x3a, 0x3,0x49,0x42,\n  0x2,0x4d,0x3b, 0x2,0x4d,0x4e, 0x2,0x4d,0x59, 0x2,0x4d,0x43,\n  0x1,0x6a,0x62, 0x3,0x49,0x3b, 0x2,0x4d,0x3e, 0x3,0x49,0x3a,\n  0x2,0x4d,0x52, 0x3,0x49,0x41, 0x1,0x6a,0x65, 0x2,0x4d,0x3d,\n  0x2,0x4d,0x37, 0x2,0x4d,0x47, 0x1,0x6a,0x69, 0x3,0x49,0x32,\n  0x4,0x46,0x58, 0x1,0x6a,0x5d, 0x1,0x6a,0x66, 0x2,0x4d,0x3f,\n  0x2,0x4d,0x39, 0x3,0x49,0x36, 0x1,0x6a,0x5f, 0x2,0x46,0x79,\n  0x1,0x6a,0x5e, 0x2,0x4d,0x4a, 0x3,0x44,0x36, 0x1,0x6a,0x5c,\n  0x1,0x6a,0x6b, 0x1,0x6a,0x64, 0x2,0x4d,0x4b, 0x2,0x4d,0x40,\n  0x2,0x4d,0x38, 0x2,0x4d,0x53, 0x2,0x4d,0x44, 0x1,0x6a,0x6a,\n  0x2,0x4d,0x57, 0x1,0x6a,0x67, 0x2,0x4d,0x56, 0x3,0x49,0x3f,\n  0x2,0x4d,0x50, 0x2,0x4d,0x55, 0x3,0x49,0x3e, 0x3,0x49,0x43,\n  0x2,0x4d,0x58, 0x3,0x66,0x3b, 0x3,0x66,0x3c, 0x3,0x66,0x3a,\n  0x3,0x49,0x3d, 0x2,0x53,0x5c, 0x2,0x53,0x5d, 0x2,0x53,0x50,\n  0x2,0x53,0x4f, 0x2,0x53,0x4b, 0x1,0x6e,0x5d, 0x3,0x4e,0x4f,\n  0x1,0x6e,0x55, 0x2,0x53,0x5f, 0x2,0x53,0x5e, 0x2,0x46,0x4e,\n  0x2,0x53,0x48, 0x2,0x53,0x4c, 0x2,0x53,0x46, 0x3,0x4e,0x44,\n  0x2,0x53,0x59, 0x2,0x53,0x4a, 0x3,0x4e,0x42, 0x2,0x53,0x60,\n  0x2,0x53,0x43, 0x2,0x53,0x41, 0x2,0x53,0x4d, 0x2,0x53,0x57,\n  0x2,0x53,0x52, 0x1,0x6e,0x5f, 0x2,0x53,0x38, 0x3,0x4e,0x40,\n  0x2,0x53,0x56, 0x3,0x4e,0x4c, 0x3,0x4e,0x46, 0x3,0x4e,0x54,\n  0x1,0x6e,0x60, 0x2,0x46,0x62, 0x2,0x53,0x44, 0x2,0x53,0x3b,\n  0x2,0x53,0x3e, 0x2,0x53,0x64, 0x2,0x53,0x45, 0x2,0x53,0x3c,\n  0x2,0x53,0x3a, 0x2,0x53,0x37, 0x4,0x4c,0x7a, 0x1,0x6e,0x59,\n  0x2,0x53,0x4e, 0x1,0x6e,0x58, 0x1,0x6e,0x5c, 0x2,0x53,0x49,\n  0x2,0x53,0x51, 0x1,0x6e,0x52, 0x2,0x53,0x61, 0x2,0x53,0x65,\n  0x1,0x6e,0x54, 0x3,0x4e,0x4b, 0x2,0x53,0x40, 0x2,0x53,0x54,\n  0x2,0x53,0x58, 0x2,0x53,0x3d, 0x2,0x53,0x62, 0x1,0x6e,0x5b,\n  0x4,0x4c,0x6a, 0x1,0x6e,0x5a, 0x2,0x53,0x35, 0x1,0x6e,0x5e,\n  0x2,0x53,0x5b, 0x2,0x53,0x3f, 0x2,0x53,0x53, 0x2,0x53,0x39,\n  0x2,0x53,0x47, 0x2,0x53,0x42, 0x1,0x6e,0x56, 0x1,0x6e,0x57,\n  0x2,0x53,0x55, 0x2,0x53,0x66, 0x2,0x53,0x63, 0x2,0x53,0x5a,\n  0x4,0x4c,0x78, 0x3,0x4e,0x4d, 0x3,0x4e,0x4e, 0x3,0x4e,0x52,\n  0x4,0x4c,0x74, 0x2,0x53,0x36, 0x1,0x6e,0x53, 0x2,0x59,0x74,\n  0x3,0x52,0x5a, 0x2,0x59,0x6b, 0x2,0x59,0x6e, 0x3,0x52,0x52,\n  0x1,0x72,0x25, 0x2,0x59,0x70, 0x2,0x59,0x65, 0x2,0x59,0x6c,\n  0x2,0x59,0x72, 0x1,0x72,0x22, 0x1,0x72,0x26, 0x1,0x71,0x7e,\n  0x3,0x52,0x59, 0x3,0x52,0x50, 0x2,0x59,0x67, 0x2,0x59,0x77,\n  0x4,0x4d,0x25, 0x4,0x53,0x33, 0x2,0x59,0x71, 0x4,0x53,0x24,\n  0x2,0x59,0x68, 0x2,0x5a,0x22, 0x2,0x59,0x7a, 0x2,0x59,0x64,\n  0x2,0x5e,0x72, 0x2,0x59,0x6a, 0x1,0x72,0x21, 0x3,0x52,0x58,\n  0x2,0x59,0x75, 0x3,0x52,0x54, 0x2,0x5a,0x21, 0x1,0x72,0x29,\n  0x3,0x52,0x56, 0x2,0x59,0x7c, 0x2,0x59,0x69, 0x2,0x59,0x6f,\n  0x2,0x59,0x73, 0x2,0x59,0x6d, 0x2,0x5a,0x23, 0x2,0x59,0x7e,\n  0x2,0x59,0x7b, 0x1,0x72,0x23, 0x1,0x72,0x24, 0x1,0x72,0x28,\n  0x2,0x59,0x66, 0x2,0x5a,0x24, 0x1,0x72,0x27, 0x2,0x59,0x78,\n  0x3,0x52,0x4f, 0x3,0x52,0x55, 0x2,0x59,0x76, 0x3,0x66,0x3d,\n  0x2,0x59,0x79, 0x2,0x5f,0x21, 0x2,0x5e,0x6c, 0x2,0x5e,0x71,\n  0x2,0x5e,0x7e, 0x2,0x5e,0x70, 0x2,0x5e,0x68, 0x2,0x5e,0x6d,\n  0x4,0x58,0x3e, 0x1,0x75,0x2c, 0x3,0x56,0x2b, 0x2,0x5e,0x61,\n  0x2,0x5e,0x79, 0x2,0x5e,0x7b, 0x2,0x5e,0x60, 0x1,0x75,0x2b,\n  0x2,0x5e,0x7d, 0x2,0x5e,0x75, 0x1,0x75,0x32, 0x2,0x5e,0x7c,\n  0x2,0x5e,0x6e, 0x1,0x75,0x34, 0x2,0x5e,0x66, 0x2,0x59,0x7d,\n  0x2,0x5e,0x76, 0x2,0x5e,0x73, 0x2,0x5e,0x62, 0x2,0x5f,0x23,\n  0x1,0x75,0x2e, 0x3,0x56,0x28, 0x3,0x56,0x29, 0x1,0x75,0x2f,\n  0x2,0x5e,0x64, 0x2,0x5e,0x74, 0x3,0x56,0x2d, 0x2,0x5f,0x22,\n  0x2,0x5e,0x77, 0x2,0x5e,0x6a, 0x1,0x75,0x31, 0x1,0x75,0x2d,\n  0x2,0x5e,0x78, 0x2,0x5e,0x6b, 0x2,0x5f,0x24, 0x2,0x5e,0x65,\n  0x2,0x5e,0x6f, 0x2,0x5e,0x7a, 0x2,0x5e,0x67, 0x2,0x5e,0x69,\n  0x4,0x58,0x40, 0x1,0x75,0x35, 0x2,0x5e,0x63, 0x1,0x75,0x33,\n  0x1,0x77,0x30, 0x1,0x75,0x2a, 0x3,0x56,0x2c, 0x3,0x56,0x30,\n  0x1,0x75,0x30, 0x1,0x77,0x34, 0x2,0x62,0x7d, 0x3,0x58,0x6c,\n  0x2,0x62,0x73, 0x2,0x62,0x6e, 0x2,0x62,0x74, 0x2,0x62,0x7e,\n  0x2,0x63,0x24, 0x2,0x63,0x23, 0x1,0x77,0x36, 0x1,0x77,0x35,\n  0x3,0x58,0x6e, 0x4,0x5d,0x2c, 0x2,0x62,0x75, 0x2,0x63,0x25,\n  0x2,0x62,0x78, 0x2,0x62,0x70, 0x3,0x58,0x6f, 0x2,0x62,0x72,\n  0x2,0x62,0x71, 0x2,0x62,0x77, 0x2,0x62,0x7c, 0x2,0x62,0x6f,\n  0x2,0x62,0x76, 0x2,0x62,0x7b, 0x1,0x77,0x33, 0x4,0x5d,0x28,\n  0x2,0x62,0x79, 0x3,0x58,0x6b, 0x1,0x77,0x31, 0x2,0x62,0x7a,\n  0x1,0x77,0x2f, 0x1,0x77,0x32, 0x2,0x66,0x60, 0x2,0x63,0x21,\n  0x3,0x66,0x3e, 0x1,0x78,0x6d, 0x3,0x5a,0x7e, 0x2,0x66,0x58,\n  0x2,0x66,0x5c, 0x2,0x66,0x54, 0x2,0x66,0x57, 0x3,0x5a,0x7d,\n  0x2,0x66,0x5f, 0x1,0x78,0x6b, 0x2,0x66,0x64, 0x2,0x66,0x5d,\n  0x4,0x60,0x7a, 0x2,0x66,0x55, 0x2,0x66,0x65, 0x2,0x66,0x5e,\n  0x1,0x78,0x6e, 0x1,0x78,0x6f, 0x2,0x66,0x62, 0x3,0x5b,0x22,\n  0x2,0x66,0x56, 0x1,0x78,0x6a, 0x1,0x78,0x6c, 0x2,0x66,0x51,\n  0x2,0x66,0x59, 0x2,0x66,0x53, 0x3,0x5c,0x7b, 0x2,0x66,0x63,\n  0x2,0x66,0x61, 0x2,0x66,0x52, 0x2,0x66,0x5a, 0x4,0x60,0x7b,\n  0x3,0x5b,0x25, 0x3,0x66,0x3f, 0x2,0x69,0x6a, 0x1,0x78,0x70,\n  0x2,0x66,0x5b, 0x1,0x7a,0x32, 0x1,0x7a,0x34, 0x1,0x7a,0x31,\n  0x3,0x5c,0x76, 0x2,0x69,0x6f, 0x2,0x69,0x67, 0x2,0x69,0x65,\n  0x2,0x69,0x69, 0x2,0x69,0x66, 0x3,0x5c,0x78, 0x3,0x5c,0x7c,\n  0x2,0x69,0x6b, 0x2,0x69,0x6d, 0x1,0x7a,0x35, 0x1,0x7a,0x37,\n  0x3,0x5d,0x22, 0x2,0x69,0x6c, 0x1,0x7a,0x38, 0x1,0x7a,0x36,\n  0x2,0x69,0x6e, 0x3,0x5c,0x7e, 0x4,0x64,0x37, 0x3,0x5d,0x23,\n  0x3,0x5c,0x77, 0x1,0x7a,0x33, 0x3,0x5d,0x21, 0x3,0x5e,0x5b,\n  0x3,0x5e,0x5a, 0x1,0x7b,0x21, 0x2,0x6c,0x21, 0x2,0x6c,0x27,\n  0x1,0x7b,0x23, 0x2,0x69,0x68, 0x2,0x6c,0x26, 0x3,0x5e,0x5c,\n  0x2,0x6c,0x2d, 0x2,0x6c,0x24, 0x2,0x6c,0x2b, 0x2,0x6c,0x2a,\n  0x2,0x69,0x64, 0x2,0x6c,0x25, 0x2,0x63,0x22, 0x2,0x6c,0x2e,\n  0x2,0x6c,0x23, 0x2,0x6c,0x28, 0x3,0x5e,0x58, 0x2,0x6c,0x2c,\n  0x2,0x6c,0x22, 0x3,0x5e,0x56, 0x2,0x6d,0x77, 0x1,0x7b,0x22,\n  0x2,0x6c,0x29, 0x3,0x5e,0x57, 0x2,0x6f,0x43, 0x2,0x6d,0x78,\n  0x2,0x6d,0x76, 0x2,0x6d,0x74, 0x2,0x6d,0x75, 0x2,0x6d,0x79,\n  0x3,0x66,0x40, 0x1,0x7c,0x45, 0x2,0x6f,0x41, 0x2,0x6f,0x3f,\n  0x2,0x6f,0x44, 0x2,0x6f,0x42, 0x3,0x60,0x43, 0x2,0x6f,0x45,\n  0x1,0x7c,0x46, 0x2,0x6f,0x40, 0x3,0x60,0x2f, 0x3,0x61,0x46,\n  0x2,0x70,0x4a, 0x3,0x66,0x41, 0x2,0x71,0x34, 0x2,0x71,0x35,\n  0x2,0x71,0x36, 0x3,0x61,0x47, 0x3,0x61,0x7c, 0x2,0x72,0x35,\n  0x2,0x72,0x2d, 0x2,0x22,0x6f, 0x1,0x4f,0x4d, 0x1,0x53,0x4b,\n  0x4,0x2f,0x68, 0x2,0x32,0x5a, 0x2,0x32,0x59, 0x1,0x58,0x25,\n  0x1,0x5d,0x28, 0x2,0x39,0x21, 0x3,0x38,0x63, 0x3,0x38,0x60,\n  0x2,0x38,0x7e, 0x3,0x38,0x61, 0x1,0x61,0x70, 0x1,0x66,0x3f,\n  0x3,0x3e,0x61, 0x1,0x66,0x3e, 0x1,0x66,0x40, 0x5,0x49,0x4e,\n  0x2,0x4d,0x5b, 0x2,0x53,0x67, 0x2,0x5a,0x25, 0x2,0x5a,0x27,\n  0x2,0x5a,0x26, 0x7,0x32,0x61, 0x1,0x75,0x36, 0x2,0x5f,0x25,\n  0x2,0x63,0x26, 0x2,0x71,0x73, 0x1,0x48,0x65, 0x3,0x27,0x2d,\n  0x2,0x28,0x69, 0x2,0x28,0x6a, 0x2,0x28,0x68, 0x2,0x28,0x67,\n  0x1,0x4f,0x4e, 0x3,0x66,0x42, 0x2,0x2d,0x4a, 0x2,0x2d,0x48,\n  0x3,0x2f,0x23, 0x3,0x2e,0x7c, 0x2,0x2d,0x47, 0x3,0x2e,0x7e,\n  0x1,0x53,0x4c, 0x1,0x53,0x4e, 0x1,0x53,0x4d, 0x2,0x2d,0x49,\n  0x3,0x2f,0x24, 0xf,0x2d,0x3e, 0x3,0x33,0x69, 0x2,0x32,0x66,\n  0x2,0x32,0x63, 0x2,0x32,0x61, 0x4,0x2f,0x6d, 0x3,0x33,0x6c,\n  0x1,0x58,0x26, 0x2,0x32,0x64, 0x1,0x58,0x2b, 0x2,0x32,0x5e,\n  0x2,0x32,0x6d, 0x3,0x33,0x6f, 0x2,0x32,0x6f, 0x2,0x32,0x5f,\n  0x3,0x33,0x6e, 0x1,0x58,0x28, 0x2,0x32,0x70, 0x2,0x32,0x6b,\n  0x2,0x32,0x5d, 0x2,0x32,0x62, 0x2,0x32,0x6c, 0x2,0x32,0x68,\n  0x2,0x32,0x65, 0x3,0x33,0x6b, 0x1,0x58,0x2d, 0x2,0x32,0x6e,\n  0x2,0x32,0x60, 0x3,0x33,0x6a, 0x3,0x33,0x70, 0x2,0x32,0x69,\n  0x2,0x32,0x5b, 0x1,0x58,0x2c, 0x1,0x58,0x29, 0x2,0x32,0x67,\n  0x3,0x33,0x6d, 0x2,0x32,0x6a, 0x2,0x32,0x5c, 0x1,0x58,0x2a,\n  0x1,0x58,0x27, 0x4,0x34,0x7a, 0x3,0x38,0x66, 0x1,0x5d,0x32,\n  0x2,0x39,0x28, 0x1,0x5d,0x31, 0x3,0x38,0x64, 0x2,0x39,0x2b,\n  0x2,0x39,0x2e, 0x1,0x5d,0x2e, 0x1,0x5d,0x2c, 0x2,0x39,0x23,\n  0x2,0x39,0x2c, 0x2,0x39,0x2a, 0x2,0x39,0x27, 0x2,0x39,0x2f,\n  0x2,0x39,0x30, 0x2,0x39,0x32, 0x2,0x39,0x33, 0x2,0x39,0x22,\n  0x1,0x5d,0x2b, 0x2,0x39,0x25, 0x2,0x39,0x24, 0x2,0x39,0x31,\n  0x1,0x5d,0x2d, 0x2,0x39,0x26, 0x1,0x5d,0x2f, 0x1,0x5d,0x2a,\n  0x2,0x39,0x29, 0x1,0x5d,0x33, 0x4,0x35,0x26, 0x1,0x5d,0x30,\n  0x2,0x39,0x2d, 0xf,0x38,0x3a, 0x1,0x61,0x77, 0x2,0x40,0x25,\n  0x4,0x3a,0x71, 0x2,0x3f,0x78, 0x1,0x61,0x74, 0x3,0x3e,0x62,\n  0x2,0x47,0x2e, 0x2,0x40,0x23, 0x2,0x3f,0x75, 0x1,0x61,0x72,\n  0x2,0x3f,0x7a, 0x1,0x61,0x75, 0x2,0x3f,0x7e, 0x2,0x3f,0x7c,\n  0x1,0x61,0x78, 0x1,0x61,0x71, 0x4,0x3a,0x76, 0x3,0x3e,0x63,\n  0x2,0x3f,0x76, 0x2,0x3f,0x79, 0x1,0x61,0x76, 0x4,0x3a,0x6f,\n  0x2,0x3f,0x77, 0x5,0x3b,0x7b, 0x2,0x40,0x24, 0x2,0x40,0x22,\n  0x2,0x3f,0x7b, 0x2,0x3f,0x7d, 0x2,0x40,0x21, 0x1,0x61,0x73,\n  0x3,0x3e,0x68, 0x2,0x47,0x2f, 0x2,0x47,0x35, 0x2,0x47,0x2b,\n  0x2,0x47,0x31, 0x1,0x66,0x41, 0x2,0x47,0x2d, 0x1,0x66,0x47,\n  0x3,0x44,0x44, 0x3,0x44,0x45, 0x1,0x66,0x46, 0x3,0x44,0x49,\n  0x1,0x66,0x45, 0x2,0x47,0x34, 0x1,0x66,0x48, 0x1,0x66,0x49,\n  0x2,0x47,0x2a, 0x2,0x47,0x37, 0x1,0x66,0x4a, 0x1,0x66,0x44,\n  0x1,0x66,0x43, 0x2,0x47,0x33, 0x1,0x66,0x4b, 0x2,0x47,0x29,\n  0x2,0x47,0x2c, 0x2,0x47,0x36, 0x2,0x47,0x32, 0x4,0x40,0x59,\n  0x4,0x40,0x52, 0x2,0x4d,0x7b, 0x2,0x4d,0x70, 0x1,0x66,0x42,\n  0x5,0x42,0x5d, 0x3,0x44,0x46, 0x3,0x44,0x48, 0x1,0x6a,0x72,\n  0x2,0x4d,0x64, 0x2,0x4d,0x79, 0x2,0x4d,0x65, 0x1,0x6a,0x6d,\n  0x3,0x49,0x4f, 0x2,0x4d,0x62, 0x4,0x40,0x55, 0x2,0x4d,0x6b,\n  0x2,0x4d,0x63, 0x1,0x6a,0x6f, 0x2,0x4d,0x5d, 0x2,0x4d,0x78,\n  0x1,0x6a,0x70, 0x2,0x4d,0x75, 0x2,0x4d,0x76, 0x2,0x4d,0x5e,\n  0x1,0x6a,0x75, 0x2,0x4d,0x6d, 0x3,0x49,0x4a, 0x2,0x4d,0x67,\n  0x2,0x4d,0x6e, 0x2,0x4d,0x61, 0x4,0x46,0x7e, 0x2,0x4d,0x7a,\n  0x2,0x4d,0x72, 0x2,0x4d,0x6c, 0x2,0x4d,0x5c, 0x1,0x6a,0x71,\n  0x2,0x4d,0x73, 0x3,0x49,0x45, 0x1,0x6a,0x74, 0x2,0x4d,0x77,\n  0x3,0x49,0x4c, 0x2,0x4d,0x71, 0x1,0x6a,0x6e, 0x2,0x4d,0x6f,\n  0x3,0x49,0x49, 0x2,0x4d,0x69, 0x1,0x6a,0x6c, 0x2,0x4d,0x60,\n  0x2,0x4d,0x68, 0x2,0x4d,0x74, 0x2,0x4d,0x66, 0xf,0x4c,0x33,\n  0x3,0x49,0x4e, 0x2,0x4d,0x6a, 0x3,0x49,0x4b, 0x3,0x66,0x43,\n  0x1,0x6e,0x6a, 0x2,0x47,0x30, 0x2,0x53,0x79, 0x2,0x54,0x24,\n  0x2,0x53,0x78, 0x2,0x53,0x74, 0x2,0x53,0x71, 0x1,0x6e,0x6b,\n  0x2,0x53,0x6f, 0x1,0x6a,0x73, 0x2,0x53,0x68, 0x1,0x6e,0x69,\n  0x2,0x53,0x6e, 0x1,0x6e,0x68, 0x2,0x53,0x73, 0x2,0x53,0x70,\n  0x2,0x54,0x22, 0x2,0x53,0x7b, 0x2,0x53,0x75, 0x2,0x53,0x7a,\n  0x1,0x6e,0x64, 0x2,0x53,0x72, 0x2,0x54,0x27, 0x2,0x53,0x69,\n  0x2,0x53,0x6a, 0x2,0x54,0x23, 0x1,0x6e,0x65, 0x2,0x54,0x28,\n  0x1,0x6e,0x67, 0x2,0x54,0x29, 0x2,0x53,0x77, 0x2,0x4d,0x5f,\n  0x2,0x53,0x7d, 0x2,0x53,0x76, 0x2,0x54,0x21, 0x2,0x53,0x7c,\n  0x5,0x50,0x55, 0x3,0x4e,0x5d, 0x4,0x4d,0x28, 0x2,0x53,0x6d,\n  0x1,0x6e,0x62, 0x2,0x54,0x26, 0x1,0x6e,0x63, 0x2,0x53,0x6b,\n  0x1,0x6e,0x66, 0x2,0x5a,0x32, 0x2,0x53,0x7e, 0x2,0x54,0x25,\n  0x4,0x4d,0x31, 0x3,0x4e,0x59, 0x2,0x5a,0x2f, 0x1,0x6e,0x61,\n  0x1,0x72,0x2a, 0x2,0x5a,0x39, 0x2,0x5a,0x35, 0x4,0x53,0x3c,\n  0x2,0x5a,0x33, 0x2,0x5a,0x2e, 0x2,0x5a,0x3d, 0x3,0x52,0x5b,\n  0x3,0x52,0x5d, 0x4,0x53,0x44, 0x1,0x72,0x2e, 0x3,0x52,0x5f,\n  0x2,0x5a,0x2a, 0x2,0x5a,0x36, 0x2,0x5a,0x37, 0x2,0x5a,0x2d,\n  0x2,0x5a,0x2c, 0x2,0x5a,0x3a, 0x4,0x53,0x41, 0x2,0x5a,0x30,\n  0x2,0x5a,0x2b, 0x2,0x5a,0x31, 0x3,0x52,0x62, 0x2,0x5a,0x3c,\n  0x2,0x5a,0x29, 0x2,0x5a,0x3b, 0x2,0x5a,0x38, 0x1,0x72,0x2c,\n  0x1,0x72,0x2b, 0x4,0x53,0x39, 0x3,0x52,0x5e, 0x1,0x72,0x2d,\n  0x2,0x5a,0x34, 0x2,0x5a,0x28, 0x3,0x66,0x45, 0x3,0x66,0x44,\n  0x2,0x5f,0x27, 0x1,0x75,0x3c, 0x2,0x5f,0x2b, 0x2,0x5f,0x28,\n  0x2,0x5f,0x2f, 0x2,0x5f,0x35, 0x2,0x5f,0x2a, 0x3,0x56,0x3a,\n  0x2,0x5f,0x3e, 0x1,0x75,0x39, 0x2,0x5f,0x38, 0x2,0x5f,0x2d,\n  0x2,0x5f,0x39, 0x2,0x5f,0x34, 0x2,0x5f,0x3b, 0x2,0x5f,0x2c,\n  0x1,0x75,0x3e, 0x1,0x75,0x3d, 0x2,0x5f,0x2e, 0x2,0x5f,0x3c,\n  0x2,0x5f,0x26, 0x2,0x5f,0x3a, 0x1,0x75,0x37, 0x3,0x56,0x39,\n  0x2,0x5f,0x32, 0x2,0x5f,0x31, 0x2,0x5f,0x36, 0x2,0x5f,0x29,\n  0x1,0x75,0x3b, 0x3,0x56,0x3b, 0x1,0x75,0x3f, 0x2,0x5f,0x30,\n  0x2,0x5f,0x37, 0x1,0x75,0x40, 0x2,0x5f,0x33, 0x3,0x56,0x36,\n  0x3,0x56,0x34, 0x1,0x75,0x38, 0x1,0x75,0x3a, 0x2,0x63,0x33,\n  0x2,0x63,0x31, 0x3,0x5b,0x28, 0x3,0x58,0x76, 0x2,0x63,0x37,\n  0x2,0x63,0x35, 0x2,0x63,0x38, 0x3,0x58,0x78, 0x2,0x63,0x2a,\n  0x2,0x63,0x32, 0x2,0x63,0x3c, 0x2,0x5f,0x3d, 0x2,0x63,0x2e,\n  0x1,0x77,0x3a, 0x2,0x53,0x6c, 0x2,0x63,0x29, 0x2,0x63,0x36,\n  0x2,0x63,0x30, 0x2,0x63,0x2d, 0x2,0x63,0x28, 0x2,0x63,0x27,\n  0x2,0x63,0x3b, 0x3,0x58,0x73, 0x2,0x63,0x2c, 0x2,0x63,0x2b,\n  0x1,0x77,0x38, 0x2,0x63,0x34, 0x3,0x58,0x74, 0x1,0x77,0x37,\n  0x3,0x58,0x75, 0x5,0x64,0x48, 0x1,0x77,0x39, 0x2,0x63,0x2f,\n  0x2,0x63,0x3a, 0x3,0x66,0x46, 0x2,0x66,0x69, 0x2,0x66,0x6a,\n  0x3,0x5b,0x2c, 0x1,0x78,0x74, 0x2,0x66,0x67, 0x1,0x78,0x71,\n  0x2,0x66,0x6f, 0x3,0x5b,0x27, 0x1,0x78,0x75, 0x2,0x66,0x71,\n  0x2,0x66,0x66, 0x2,0x63,0x39, 0x2,0x66,0x73, 0x2,0x66,0x68,\n  0x5,0x69,0x43, 0x1,0x78,0x72, 0x2,0x66,0x6e, 0x3,0x5b,0x29,\n  0x2,0x66,0x70, 0x2,0x66,0x6b, 0x2,0x66,0x72, 0x2,0x66,0x6d,\n  0x2,0x66,0x6c, 0x1,0x78,0x73, 0x3,0x58,0x77, 0x3,0x5b,0x2b,\n  0x2,0x69,0x71, 0x2,0x69,0x72, 0x3,0x5d,0x25, 0x2,0x69,0x74,\n  0x1,0x7a,0x39, 0x1,0x7a,0x3a, 0x2,0x69,0x75, 0x2,0x69,0x73,\n  0x3,0x5d,0x24, 0x2,0x69,0x70, 0x3,0x5e,0x5d, 0x2,0x6c,0x31,\n  0x2,0x6c,0x34, 0x2,0x6c,0x30, 0x4,0x61,0x26, 0x1,0x7b,0x27,\n  0x2,0x6c,0x32, 0x1,0x7b,0x26, 0x1,0x7b,0x25, 0x1,0x7b,0x24,\n  0x2,0x6c,0x33, 0x2,0x6d,0x7e, 0x2,0x6d,0x7c, 0x3,0x5f,0x5f,\n  0x2,0x6d,0x7b, 0x2,0x6c,0x2f, 0x2,0x6d,0x7d, 0x2,0x6c,0x35,\n  0x2,0x6d,0x7a, 0x3,0x60,0x45, 0x2,0x6f,0x48, 0x2,0x6f,0x26,\n  0x2,0x6f,0x46, 0x1,0x7c,0x47, 0x2,0x6f,0x47, 0x2,0x6f,0x49,\n  0x3,0x66,0x47, 0x2,0x70,0x4d, 0x1,0x7c,0x66, 0x2,0x70,0x4c,\n  0x2,0x70,0x4b, 0x1,0x7c,0x67, 0x4,0x6c,0x23, 0x1,0x7d,0x27,\n  0x2,0x71,0x5d, 0x2,0x71,0x75, 0x2,0x71,0x74, 0x2,0x71,0x76,\n  0x1,0x48,0x66, 0x2,0x2d,0x4b, 0x3,0x2f,0x26, 0x2,0x32,0x71,\n  0x2,0x32,0x72, 0x3,0x38,0x6a, 0x3,0x3e,0x6a, 0x3,0x3e,0x69,\n  0x2,0x40,0x26, 0x6,0x4e,0x4f, 0x2,0x6c,0x36, 0x2,0x70,0x4e,\n  0x1,0x48,0x67, 0x1,0x53,0x4f, 0x2,0x2d,0x4c, 0x3,0x33,0x71,\n  0x3,0x66,0x48, 0x4,0x35,0x27, 0x2,0x39,0x34, 0x1,0x5d,0x34,\n  0x2,0x40,0x28, 0x2,0x40,0x27, 0x1,0x61,0x79, 0x3,0x44,0x4d,\n  0x1,0x66,0x4c, 0x2,0x54,0x2a, 0x1,0x6e,0x6c, 0x3,0x4e,0x5f,\n  0x1,0x6e,0x6d, 0x3,0x52,0x63, 0x3,0x52,0x64, 0x4,0x53,0x4b,\n  0x1,0x72,0x2f, 0x1,0x7c,0x68, 0x1,0x48,0x68, 0x3,0x2f,0x27,\n  0x2,0x2d,0x4d, 0x1,0x4f,0x50, 0x2,0x2d,0x4f, 0x2,0x2d,0x4e,\n  0x1,0x53,0x50, 0x2,0x32,0x73, 0x3,0x33,0x74, 0x2,0x32,0x7a,\n  0x1,0x58,0x2e, 0x2,0x32,0x78, 0x2,0x32,0x76, 0x3,0x33,0x77,\n  0x2,0x32,0x7d, 0x2,0x32,0x74, 0x2,0x32,0x75, 0x1,0x58,0x2f,\n  0x3,0x33,0x72, 0x1,0x58,0x33, 0x3,0x33,0x73, 0x3,0x33,0x75,\n  0x2,0x32,0x7e, 0x1,0x58,0x32, 0x2,0x32,0x7c, 0x2,0x32,0x79,\n  0x2,0x32,0x77, 0x1,0x58,0x30, 0x1,0x58,0x31, 0x2,0x32,0x7b,\n  0x3,0x33,0x76, 0x3,0x66,0x49, 0x1,0x5d,0x36, 0x2,0x39,0x35,\n  0x3,0x38,0x72, 0x1,0x5d,0x3b, 0x2,0x39,0x45, 0x1,0x5d,0x3a,\n  0x2,0x39,0x47, 0x3,0x38,0x6e, 0x3,0x38,0x74, 0x2,0x39,0x3b,\n  0x1,0x5d,0x38, 0x2,0x39,0x46, 0x3,0x38,0x6c, 0x2,0x39,0x36,\n  0x1,0x5d,0x39, 0x2,0x39,0x42, 0x2,0x39,0x3e, 0x2,0x39,0x40,\n  0x2,0x39,0x3a, 0x2,0x39,0x41, 0x3,0x38,0x6b, 0x4,0x35,0x2f,\n  0x1,0x5d,0x35, 0x2,0x39,0x3d, 0x3,0x38,0x73, 0x2,0x39,0x3c,\n  0x2,0x39,0x38, 0x3,0x38,0x6d, 0x2,0x39,0x43, 0x3,0x38,0x6f,\n  0x3,0x38,0x71, 0x2,0x39,0x3f, 0x2,0x39,0x37, 0x3,0x38,0x70,\n  0x2,0x39,0x39, 0x1,0x5d,0x37, 0x2,0x39,0x44, 0x1,0x61,0x7c,\n  0x2,0x40,0x33, 0x4,0x3a,0x7b, 0x3,0x3e,0x70, 0x3,0x3e,0x72,\n  0x2,0x40,0x2f, 0x2,0x40,0x31, 0x2,0x40,0x2c, 0x2,0x40,0x2b,\n  0x2,0x40,0x29, 0x3,0x3e,0x6d, 0x2,0x40,0x30, 0x2,0x40,0x32,\n  0x2,0x40,0x2e, 0x3,0x3e,0x6f, 0x2,0x40,0x2d, 0x1,0x61,0x7a,\n  0x1,0x61,0x7b, 0x2,0x40,0x35, 0x1,0x66,0x54, 0x2,0x47,0x39,\n  0x2,0x47,0x3f, 0x2,0x47,0x3a, 0x2,0x47,0x3b, 0x3,0x44,0x4e,\n  0x2,0x47,0x40, 0x5,0x42,0x6c, 0x1,0x66,0x56, 0x4,0x40,0x61,\n  0x1,0x66,0x4e, 0x1,0x66,0x55, 0x2,0x47,0x38, 0x2,0x40,0x2a,\n  0x1,0x66,0x51, 0x1,0x66,0x4f, 0x2,0x47,0x3e, 0x2,0x47,0x3d,\n  0x1,0x66,0x50, 0x1,0x66,0x52, 0x2,0x47,0x3c, 0x1,0x66,0x4d,\n  0x3,0x44,0x4f, 0x1,0x66,0x53, 0x3,0x4e,0x60, 0x2,0x4d,0x7d,\n  0x1,0x6a,0x7c, 0x3,0x49,0x59, 0x3,0x49,0x52, 0x2,0x4e,0x2a,\n  0x2,0x4e,0x29, 0x3,0x49,0x57, 0x2,0x4e,0x24, 0x1,0x6a,0x7e,\n  0x2,0x4e,0x28, 0x2,0x4d,0x7e, 0x2,0x4e,0x21, 0x1,0x6a,0x76,\n  0x1,0x6a,0x78, 0x3,0x49,0x54, 0x2,0x4e,0x26, 0x2,0x4d,0x7c,\n  0x1,0x6a,0x7a, 0x1,0x6a,0x79, 0x2,0x4e,0x22, 0x2,0x4e,0x27,\n  0x2,0x4e,0x25, 0x1,0x6a,0x7b, 0x2,0x4e,0x23, 0x3,0x49,0x51,\n  0x3,0x49,0x56, 0x2,0x40,0x34, 0x1,0x6a,0x77, 0x3,0x49,0x58,\n  0x2,0x54,0x2b, 0x2,0x54,0x32, 0x1,0x6e,0x6f, 0x4,0x4d,0x46,\n  0x2,0x54,0x36, 0x1,0x6e,0x73, 0x2,0x54,0x2e, 0x2,0x54,0x2c,\n  0x4,0x4d,0x3e, 0x2,0x54,0x35, 0x3,0x4e,0x61, 0x1,0x6e,0x6e,\n  0x2,0x54,0x34, 0x1,0x6e,0x70, 0x1,0x6e,0x71, 0x2,0x54,0x2d,\n  0x1,0x6e,0x72, 0x2,0x54,0x33, 0x2,0x54,0x2f, 0x2,0x54,0x30,\n  0x2,0x54,0x31, 0x1,0x6a,0x7d, 0x3,0x4e,0x62, 0x2,0x5a,0x3e,\n  0x2,0x5a,0x4a, 0x4,0x53,0x53, 0x1,0x72,0x34, 0x2,0x5a,0x45,\n  0x2,0x5a,0x47, 0x3,0x52,0x65, 0x1,0x72,0x32, 0x2,0x5a,0x3f,\n  0x2,0x5a,0x43, 0x4,0x53,0x50, 0x2,0x5a,0x46, 0x1,0x72,0x30,\n  0x1,0x72,0x33, 0x2,0x5a,0x49, 0x2,0x5a,0x41, 0x2,0x5a,0x42,\n  0x2,0x5a,0x48, 0x2,0x5a,0x40, 0x2,0x5a,0x44, 0x1,0x72,0x31,\n  0x2,0x5f,0x40, 0x2,0x5f,0x3f, 0x1,0x75,0x42, 0x2,0x5f,0x45,\n  0x1,0x75,0x44, 0x3,0x56,0x40, 0x4,0x58,0x62, 0x1,0x75,0x41,\n  0x2,0x5f,0x41, 0x1,0x75,0x45, 0x2,0x5f,0x42, 0x3,0x56,0x3f,\n  0x3,0x56,0x3d, 0x2,0x5f,0x43, 0x2,0x5f,0x46, 0x3,0x56,0x42,\n  0x1,0x75,0x43, 0x2,0x63,0x41, 0x3,0x58,0x79, 0x2,0x63,0x44,\n  0x3,0x58,0x7a, 0x2,0x63,0x3e, 0x2,0x63,0x40, 0x3,0x58,0x7c,\n  0x3,0x58,0x7b, 0x2,0x63,0x3f, 0x2,0x63,0x42, 0x2,0x63,0x43,\n  0x2,0x5f,0x44, 0x2,0x63,0x3d, 0x3,0x66,0x4a, 0x1,0x78,0x78,\n  0x2,0x66,0x77, 0x2,0x66,0x7a, 0x2,0x66,0x7c, 0x2,0x66,0x75,\n  0x2,0x66,0x76, 0x2,0x66,0x79, 0x2,0x66,0x7b, 0x1,0x78,0x79,\n  0x1,0x78,0x77, 0x1,0x78,0x76, 0x2,0x66,0x78, 0x2,0x66,0x74,\n  0x2,0x69,0x76, 0x1,0x7a,0x3b, 0x3,0x5d,0x29, 0x2,0x69,0x77,\n  0x3,0x5d,0x28, 0x2,0x6c,0x38, 0x1,0x7b,0x28, 0x2,0x6c,0x3a,\n  0x1,0x7b,0x29, 0x2,0x6c,0x37, 0x2,0x6c,0x39, 0x1,0x7b,0x72,\n  0x5,0x74,0x38, 0x2,0x6e,0x21, 0x1,0x7b,0x71, 0x2,0x6f,0x4c,\n  0x2,0x6f,0x4b, 0x4,0x6c,0x25, 0x2,0x6f,0x4a, 0xf,0x68,0x4a,\n  0x3,0x61,0x49, 0x2,0x71,0x37, 0x2,0x71,0x38, 0x2,0x71,0x3a,\n  0x2,0x71,0x39, 0x3,0x61,0x7d, 0x2,0x22,0x70, 0x1,0x48,0x69,\n  0x1,0x53,0x51, 0x2,0x39,0x48, 0x1,0x61,0x7d, 0x3,0x66,0x4b,\n  0x2,0x47,0x41, 0x1,0x77,0x3b, 0x3,0x5b,0x2f, 0x2,0x66,0x7d,\n  0x3,0x60,0x46, 0x3,0x61,0x4a, 0x1,0x4b,0x44, 0x3,0x2f,0x29,\n  0x4,0x2f,0x76, 0x4,0x2f,0x75, 0x1,0x5d,0x3d, 0x4,0x35,0x34,\n  0x3,0x38,0x76, 0x3,0x38,0x75, 0x1,0x5d,0x3c, 0x3,0x38,0x77,\n  0x2,0x40,0x36, 0x1,0x61,0x7e, 0x2,0x40,0x38, 0x2,0x40,0x37,\n  0x6,0x4e,0x60, 0x3,0x3e,0x74, 0x2,0x47,0x42, 0x1,0x66,0x57,\n  0x2,0x4e,0x2b, 0x2,0x4e,0x2e, 0x2,0x4e,0x2d, 0x4,0x47,0x35,\n  0x2,0x4e,0x2c, 0x2,0x54,0x37, 0x2,0x54,0x39, 0x2,0x54,0x38,\n  0x3,0x4e,0x65, 0x1,0x72,0x36, 0x3,0x52,0x66, 0x4,0x53,0x59,\n  0x3,0x4e,0x64, 0x1,0x72,0x35, 0x3,0x56,0x46, 0x1,0x75,0x46,\n  0x2,0x5f,0x47, 0x2,0x5f,0x49, 0x2,0x5f,0x48, 0x3,0x58,0x7e,\n  0x3,0x58,0x7d, 0x1,0x77,0x3c, 0x3,0x59,0x21, 0x4,0x61,0x2f,\n  0x3,0x5b,0x31, 0x2,0x67,0x21, 0x2,0x66,0x7e, 0xf,0x63,0x77,\n  0x2,0x69,0x78, 0x1,0x7a,0x3c, 0x3,0x5d,0x2a, 0x3,0x5e,0x61,\n  0x1,0x7b,0x2a, 0x2,0x6e,0x23, 0x2,0x6e,0x22, 0x1,0x7d,0x28,\n  0x1,0x4b,0x45, 0x2,0x2d,0x50, 0x1,0x53,0x52, 0x2,0x39,0x4b,\n  0x2,0x39,0x49, 0x4,0x35,0x39, 0x4,0x35,0x38, 0x2,0x39,0x4a,\n  0x2,0x40,0x3a, 0x2,0x40,0x3b, 0x2,0x47,0x49, 0x2,0x40,0x39,\n  0x2,0x47,0x43, 0x2,0x47,0x47, 0x2,0x47,0x46, 0x2,0x47,0x48,\n  0x1,0x66,0x58, 0x2,0x47,0x45, 0x2,0x47,0x44, 0x2,0x47,0x4a,\n  0x3,0x44,0x54, 0x2,0x4e,0x31, 0x2,0x4e,0x2f, 0x3,0x49,0x5c,\n  0x2,0x4e,0x30, 0x2,0x54,0x3c, 0x2,0x54,0x3a, 0x3,0x4e,0x66,\n  0x2,0x54,0x3b, 0x2,0x5a,0x4b, 0x2,0x5f,0x4a, 0x2,0x5f,0x4b,\n  0x1,0x77,0x3d, 0x3,0x5b,0x32, 0x2,0x67,0x22, 0x2,0x69,0x79,\n  0x1,0x7a,0x3d, 0x4,0x61,0x37, 0x2,0x6c,0x3b, 0x2,0x6e,0x24,\n  0x1,0x7b,0x73, 0x4,0x69,0x45, 0x2,0x6f,0x4d, 0x2,0x71,0x3b,\n  0x1,0x4b,0x46, 0x1,0x53,0x54, 0x1,0x53,0x55, 0x2,0x2d,0x51,\n  0x3,0x2f,0x2a, 0x3,0x2f,0x2c, 0x2,0x2d,0x52, 0x1,0x53,0x53,\n  0x4,0x2f,0x7c, 0x1,0x58,0x39, 0x3,0x33,0x7b, 0x1,0x58,0x37,\n  0x3,0x33,0x7a, 0x1,0x58,0x36, 0x1,0x58,0x3d, 0x1,0x58,0x35,\n  0x1,0x58,0x3e, 0x2,0x33,0x21, 0x1,0x58,0x3b, 0x4,0x2f,0x7d,\n  0x1,0x58,0x38, 0x1,0x58,0x3c, 0x1,0x58,0x3a, 0x1,0x58,0x34,\n  0x3,0x33,0x7c, 0x1,0x5d,0x45, 0x3,0x38,0x7e, 0x1,0x5d,0x3f,\n  0x2,0x39,0x4f, 0x1,0x5d,0x44, 0x3,0x39,0x23, 0x3,0x39,0x29,\n  0x1,0x5d,0x46, 0x1,0x5d,0x40, 0x6,0x44,0x70, 0x1,0x5d,0x41,\n  0x3,0x38,0x79, 0x2,0x39,0x4d, 0x3,0x38,0x7b, 0x3,0x39,0x25,\n  0x1,0x5d,0x3e, 0x3,0x39,0x22, 0x2,0x39,0x4e, 0x1,0x5d,0x43,\n  0x4,0x35,0x3d, 0x5,0x35,0x5b, 0x2,0x39,0x4c, 0x1,0x5d,0x42,\n  0x3,0x38,0x7a, 0x1,0x62,0x2b, 0x3,0x3e,0x7c, 0x1,0x62,0x2d,\n  0x4,0x3b,0x2f, 0x3,0x3e,0x7d, 0x2,0x40,0x3e, 0x1,0x62,0x2c,\n  0x1,0x62,0x21, 0x1,0x62,0x25, 0x3,0x3f,0x24, 0x1,0x66,0x6b,\n  0x2,0x47,0x4f, 0x2,0x40,0x40, 0x1,0x62,0x26, 0x3,0x3e,0x7e,\n  0x3,0x3e,0x75, 0x2,0x40,0x43, 0x2,0x40,0x44, 0x1,0x62,0x2a,\n  0x4,0x3b,0x30, 0x2,0x40,0x46, 0x3,0x3f,0x21, 0x2,0x40,0x48,\n  0x3,0x3f,0x23, 0x2,0x40,0x49, 0x2,0x40,0x3d, 0x2,0x40,0x3c,\n  0x2,0x40,0x4a, 0x1,0x62,0x29, 0x2,0x40,0x47, 0x2,0x40,0x45,\n  0x4,0x3b,0x2c, 0x1,0x62,0x27, 0x1,0x62,0x23, 0x1,0x62,0x2e,\n  0x2,0x40,0x41, 0x2,0x40,0x42, 0x2,0x40,0x3f, 0x3,0x3e,0x78,\n  0x1,0x62,0x28, 0x4,0x3b,0x31, 0x3,0x3f,0x22, 0x1,0x62,0x24,\n  0x1,0x62,0x22, 0x2,0x47,0x4e, 0x1,0x66,0x66, 0x1,0x66,0x61,\n  0x3,0x44,0x60, 0x3,0x44,0x59, 0x1,0x66,0x5c, 0x3,0x44,0x63,\n  0x1,0x66,0x6c, 0x1,0x66,0x5d, 0x3,0x44,0x55, 0x1,0x66,0x59,\n  0x1,0x66,0x68, 0x1,0x66,0x65, 0x1,0x66,0x67, 0x3,0x44,0x58,\n  0x1,0x66,0x5e, 0x1,0x66,0x63, 0x1,0x66,0x5a, 0x1,0x66,0x5b,\n  0x2,0x47,0x56, 0x2,0x47,0x53, 0x2,0x47,0x4b, 0x2,0x47,0x50,\n  0x3,0x44,0x5b, 0x1,0x66,0x69, 0x2,0x47,0x57, 0x1,0x66,0x6a,\n  0x1,0x66,0x60, 0x3,0x44,0x5c, 0x3,0x44,0x61, 0x2,0x47,0x4d,\n  0x3,0x44,0x56, 0x2,0x47,0x55, 0x2,0x47,0x51, 0x2,0x47,0x54,\n  0x2,0x47,0x52, 0x1,0x66,0x64, 0x2,0x47,0x4c, 0x1,0x66,0x5f,\n  0x3,0x44,0x5d, 0x2,0x4e,0x34, 0x1,0x6b,0x22, 0x1,0x6b,0x25,\n  0x3,0x49,0x5f, 0x2,0x4e,0x36, 0x3,0x49,0x64, 0x1,0x6b,0x2d,\n  0x2,0x4e,0x35, 0x1,0x6b,0x27, 0x3,0x49,0x63, 0x1,0x6e,0x78,\n  0x2,0x4e,0x37, 0x4,0x47,0x45, 0x1,0x6b,0x2c, 0x2,0x4e,0x33,\n  0x1,0x6b,0x2e, 0x3,0x49,0x5e, 0x3,0x49,0x62, 0x3,0x49,0x6b,\n  0x1,0x6b,0x23, 0x3,0x49,0x68, 0x1,0x66,0x62, 0x1,0x6b,0x26,\n  0x3,0x49,0x60, 0x1,0x6b,0x24, 0x1,0x6b,0x28, 0x1,0x6b,0x2a,\n  0x1,0x6b,0x21, 0x1,0x6b,0x2f, 0x1,0x6b,0x2b, 0x3,0x49,0x65,\n  0x1,0x6b,0x29, 0x2,0x4e,0x32, 0x3,0x49,0x66, 0xf,0x4c,0x41,\n  0x3,0x4e,0x74, 0x1,0x6f,0x21, 0x3,0x4e,0x67, 0x1,0x6e,0x7b,\n  0x3,0x4e,0x72, 0x3,0x4e,0x70, 0x3,0x4e,0x6e, 0x1,0x6f,0x24,\n  0x3,0x4e,0x6c, 0x2,0x54,0x3f, 0x1,0x6f,0x25, 0x2,0x54,0x4b,\n  0x2,0x54,0x44, 0x1,0x6e,0x74, 0x2,0x54,0x4c, 0x2,0x54,0x46,\n  0x1,0x6e,0x7e, 0x2,0x54,0x47, 0x3,0x4e,0x73, 0x1,0x6e,0x7d,\n  0x2,0x54,0x4a, 0x1,0x6e,0x77, 0x2,0x54,0x48, 0x2,0x54,0x3e,\n  0x1,0x6e,0x76, 0x2,0x5a,0x56, 0x1,0x6e,0x7c, 0x3,0x4e,0x75,\n  0x1,0x6e,0x79, 0x3,0x4e,0x69, 0x1,0x6f,0x23, 0x3,0x4e,0x6a,\n  0x2,0x54,0x3d, 0x3,0x4e,0x76, 0x2,0x54,0x41, 0x1,0x6e,0x75,\n  0x2,0x54,0x40, 0x2,0x54,0x42, 0x2,0x54,0x43, 0x1,0x6f,0x22,\n  0x2,0x54,0x45, 0x2,0x54,0x49, 0x2,0x54,0x4d, 0x1,0x6f,0x26,\n  0x1,0x72,0x3c, 0x2,0x5a,0x51, 0x2,0x5a,0x57, 0x2,0x5a,0x54,\n  0x2,0x5a,0x4c, 0x2,0x5a,0x58, 0x2,0x5a,0x4d, 0x3,0x52,0x6a,\n  0x2,0x5a,0x53, 0x3,0x52,0x6b, 0x1,0x72,0x37, 0x1,0x72,0x3d,\n  0x2,0x5a,0x59, 0x3,0x4e,0x6f, 0x3,0x52,0x67, 0x1,0x72,0x39,\n  0x3,0x52,0x6e, 0x1,0x72,0x43, 0x1,0x72,0x3e, 0x2,0x5a,0x5b,\n  0x2,0x5a,0x55, 0x1,0x72,0x3a, 0x2,0x5a,0x4e, 0x1,0x72,0x44,\n  0x2,0x5a,0x4f, 0x2,0x5a,0x50, 0x1,0x72,0x45, 0x1,0x72,0x42,\n  0x1,0x6e,0x7a, 0x3,0x52,0x69, 0x1,0x72,0x38, 0x2,0x5a,0x5c,\n  0x1,0x72,0x46, 0x3,0x52,0x68, 0x1,0x72,0x3f, 0x2,0x5a,0x5a,\n  0x1,0x72,0x3b, 0x1,0x72,0x40, 0x1,0x72,0x41, 0x3,0x66,0x4c,\n  0x1,0x75,0x4e, 0x2,0x5f,0x50, 0x2,0x5f,0x59, 0x2,0x5f,0x56,\n  0x2,0x5f,0x58, 0x3,0x56,0x49, 0x1,0x75,0x4b, 0x2,0x5f,0x51,\n  0x3,0x56,0x4a, 0x2,0x5f,0x57, 0x1,0x75,0x47, 0x2,0x5f,0x53,\n  0x1,0x75,0x4f, 0x2,0x5f,0x4f, 0x2,0x5f,0x54, 0x2,0x5f,0x5b,\n  0x2,0x5a,0x52, 0x2,0x5f,0x55, 0x2,0x5f,0x4e, 0x1,0x75,0x48,\n  0x2,0x5f,0x4d, 0x1,0x75,0x49, 0x2,0x5f,0x5c, 0x1,0x75,0x4a,\n  0x2,0x5f,0x5a, 0x1,0x75,0x4d, 0x2,0x5f,0x4c, 0x3,0x56,0x48,\n  0x1,0x75,0x4c, 0x2,0x5f,0x52, 0x2,0x63,0x47, 0x2,0x63,0x55,\n  0x2,0x63,0x50, 0x2,0x63,0x52, 0x2,0x63,0x46, 0x1,0x77,0x3e,\n  0x3,0x59,0x2a, 0x2,0x63,0x45, 0x1,0x77,0x41, 0x1,0x77,0x40,\n  0x3,0x59,0x26, 0x2,0x63,0x54, 0x2,0x63,0x4c, 0x2,0x63,0x49,\n  0x2,0x63,0x4f, 0x3,0x59,0x24, 0x2,0x63,0x48, 0x3,0x59,0x28,\n  0x2,0x63,0x4a, 0x2,0x63,0x53, 0x2,0x63,0x51, 0x3,0x59,0x23,\n  0x1,0x77,0x3f, 0x2,0x63,0x58, 0x2,0x63,0x56, 0x2,0x63,0x4d,\n  0x2,0x63,0x57, 0x2,0x63,0x4e, 0x3,0x5b,0x34, 0x2,0x67,0x26,\n  0x1,0x78,0x7a, 0x2,0x67,0x2d, 0x3,0x5b,0x35, 0x4,0x61,0x3a,\n  0x2,0x6c,0x3e, 0x1,0x79,0x23, 0x2,0x63,0x4b, 0x2,0x67,0x24,\n  0x1,0x78,0x7d, 0x2,0x67,0x25, 0x2,0x67,0x2a, 0x3,0x5b,0x36,\n  0x3,0x5d,0x33, 0x1,0x79,0x21, 0x1,0x79,0x22, 0x2,0x67,0x23,\n  0x2,0x67,0x2c, 0x2,0x67,0x2e, 0x2,0x67,0x27, 0x2,0x67,0x29,\n  0x2,0x67,0x2b, 0x2,0x67,0x28, 0x2,0x67,0x2f, 0x1,0x78,0x7c,\n  0x1,0x79,0x24, 0x1,0x78,0x7e, 0x1,0x78,0x7b, 0x2,0x69,0x7c,\n  0x4,0x64,0x4d, 0x1,0x7a,0x42, 0x2,0x69,0x7a, 0x3,0x5d,0x30,\n  0x3,0x5d,0x2c, 0x2,0x69,0x7e, 0x3,0x5d,0x32, 0x2,0x6a,0x21,\n  0x1,0x7a,0x40, 0x2,0x6a,0x22, 0x2,0x69,0x7d, 0x3,0x5d,0x2b,\n  0x2,0x69,0x7b, 0x1,0x7a,0x43, 0x1,0x7a,0x3f, 0x2,0x6a,0x23,\n  0x3,0x5d,0x2e, 0x1,0x7a,0x41, 0x1,0x7a,0x3e, 0x3,0x5c,0x6d,\n  0x4,0x67,0x3b, 0x1,0x7b,0x2b, 0x3,0x5e,0x62, 0x4,0x67,0x41,\n  0x1,0x7b,0x2c, 0x2,0x6c,0x3d, 0x2,0x6c,0x3c, 0x2,0x6c,0x3f,\n  0x2,0x6c,0x40, 0x3,0x5e,0x63, 0x1,0x7b,0x2d, 0x2,0x6e,0x25,\n  0x2,0x6e,0x2a, 0x1,0x7b,0x74, 0x3,0x5f,0x61, 0x2,0x6e,0x27,\n  0x3,0x5f,0x62, 0x2,0x6e,0x26, 0x2,0x6e,0x29, 0x2,0x6e,0x28,\n  0x3,0x60,0x48, 0x2,0x6f,0x51, 0x4,0x6a,0x7c, 0x1,0x7c,0x48,\n  0x2,0x6f,0x50, 0x2,0x6f,0x4e, 0x3,0x60,0x47, 0x2,0x6f,0x4f,\n  0x3,0x60,0x49, 0x3,0x60,0x7b, 0x1,0x7c,0x6a, 0x1,0x7c,0x69,\n  0x2,0x70,0x4f, 0x2,0x70,0x50, 0x1,0x7c,0x6b, 0x3,0x61,0x4b,\n  0x2,0x71,0x3c, 0x2,0x71,0x3d, 0x1,0x7d,0x34, 0x3,0x61,0x6b,\n  0x1,0x7d,0x3a, 0x3,0x61,0x7e, 0x2,0x71,0x77, 0x2,0x72,0x36,\n  0x1,0x4b,0x47, 0x5,0x30,0x46, 0x2,0x39,0x50, 0x3,0x39,0x2a,\n  0x2,0x39,0x51, 0x2,0x47,0x58, 0x2,0x4e,0x38, 0x2,0x54,0x4e,\n  0x1,0x75,0x51, 0x3,0x56,0x4d, 0x1,0x75,0x50, 0x2,0x63,0x59,\n  0x2,0x67,0x30, 0x3,0x5f,0x64, 0x2,0x6f,0x52, 0x1,0x4b,0x48,\n  0x2,0x33,0x22, 0x1,0x58,0x3f, 0x1,0x5d,0x47, 0x2,0x47,0x5a,\n  0x2,0x47,0x59, 0x1,0x6f,0x27, 0x2,0x54,0x4f, 0x1,0x6f,0x28,\n  0x2,0x5f,0x5d, 0x1,0x77,0x42, 0x3,0x5d,0x34, 0x3,0x66,0x4d,\n  0x3,0x62,0x21, 0x1,0x7d,0x43, 0x1,0x4b,0x49, 0x2,0x28,0x6b,\n  0x2,0x33,0x23, 0x3,0x39,0x2d, 0x4,0x35,0x4d, 0x1,0x5d,0x48,\n  0x3,0x39,0x2c, 0x2,0x39,0x52, 0x2,0x39,0x53, 0x3,0x3f,0x2a,\n  0x2,0x40,0x4b, 0x3,0x3f,0x29, 0x1,0x62,0x2f, 0x1,0x66,0x6d,\n  0x3,0x44,0x64, 0x2,0x47,0x5c, 0x2,0x47,0x5b, 0x2,0x47,0x5d,\n  0x3,0x49,0x6d, 0x2,0x4e,0x39, 0x2,0x4e,0x3a, 0x1,0x6b,0x30,\n  0x1,0x72,0x47, 0x1,0x6f,0x29, 0x1,0x72,0x48, 0x2,0x5f,0x61,\n  0x2,0x5f,0x5e, 0x2,0x5f,0x60, 0x2,0x5f,0x5f, 0x1,0x75,0x52,\n  0x3,0x59,0x2b, 0x2,0x63,0x5a, 0x2,0x67,0x32, 0x2,0x67,0x31,\n  0x2,0x25,0x24, 0x1,0x58,0x41, 0x1,0x58,0x40, 0x2,0x33,0x24,\n  0x3,0x39,0x2e, 0x2,0x39,0x54, 0x3,0x3f,0x2c, 0x3,0x3f,0x2b,\n  0x2,0x40,0x4d, 0x2,0x40,0x4c, 0x1,0x62,0x30, 0x3,0x3f,0x2d,\n  0x2,0x47,0x5f, 0x2,0x47,0x60, 0x2,0x47,0x5e, 0x4,0x40,0x78,\n  0x3,0x44,0x65, 0x1,0x66,0x6f, 0x1,0x66,0x6e, 0x4,0x47,0x54,\n  0x1,0x6b,0x32, 0x1,0x6b,0x31, 0x3,0x4e,0x7a, 0x2,0x54,0x50,\n  0x2,0x5a,0x5f, 0x2,0x5a,0x5d, 0x2,0x5a,0x5e, 0x1,0x72,0x49,\n  0x2,0x5f,0x63, 0x2,0x5f,0x62, 0x3,0x56,0x4f, 0x2,0x63,0x5d,\n  0x2,0x63,0x5c, 0x2,0x63,0x5b, 0x2,0x67,0x33, 0x3,0x61,0x4d,\n  0x2,0x71,0x78, 0x1,0x4b,0x4a, 0x1,0x53,0x56, 0x3,0x2f,0x2e,\n  0x1,0x53,0x57, 0x1,0x58,0x42, 0x1,0x58,0x43, 0x2,0x33,0x26,\n  0x2,0x33,0x25, 0x2,0x39,0x55, 0x3,0x39,0x30, 0x1,0x5d,0x4e,\n  0x1,0x5d,0x4c, 0x1,0x5d,0x49, 0x1,0x5d,0x4d, 0x1,0x5d,0x4b,\n  0x1,0x5d,0x4a, 0x3,0x39,0x32, 0x3,0x39,0x31, 0x1,0x62,0x31,\n  0x2,0x40,0x50, 0x3,0x3f,0x2f, 0x1,0x66,0x74, 0x1,0x62,0x33,\n  0x1,0x62,0x38, 0x2,0x40,0x52, 0x1,0x62,0x3a, 0x1,0x62,0x39,\n  0x1,0x62,0x3c, 0x2,0x40,0x51, 0x2,0x40,0x4e, 0x1,0x62,0x36,\n  0x1,0x62,0x32, 0x1,0x62,0x34, 0x2,0x40,0x4f, 0x1,0x62,0x3b,\n  0x1,0x62,0x37, 0x1,0x62,0x35, 0x1,0x66,0x76, 0x1,0x66,0x75,\n  0x1,0x66,0x73, 0x1,0x66,0x77, 0x4,0x40,0x7e, 0x1,0x66,0x71,\n  0x1,0x66,0x72, 0x3,0x44,0x69, 0x1,0x66,0x70, 0x5,0x43,0x2d,\n  0x2,0x47,0x61, 0x3,0x44,0x67, 0x2,0x4e,0x3c, 0x3,0x49,0x70,\n  0x1,0x6b,0x34, 0x1,0x6b,0x35, 0x1,0x6b,0x33, 0x3,0x49,0x72,\n  0x2,0x4e,0x3b, 0x3,0x49,0x71, 0x2,0x4e,0x3d, 0x3,0x66,0x4e,\n  0x2,0x54,0x53, 0x2,0x54,0x55, 0x3,0x4e,0x7e, 0x1,0x6f,0x32,\n  0x2,0x54,0x56, 0x1,0x6f,0x2b, 0x2,0x54,0x52, 0x1,0x6f,0x2a,\n  0x1,0x6f,0x34, 0x1,0x6f,0x30, 0x1,0x6f,0x31, 0x1,0x6f,0x2d,\n  0x2,0x54,0x51, 0x1,0x6f,0x2c, 0x2,0x54,0x57, 0x2,0x54,0x54,\n  0x3,0x4e,0x7d, 0x1,0x6f,0x33, 0x3,0x4f,0x22, 0x1,0x6f,0x2e,\n  0x1,0x6f,0x2f, 0x2,0x5a,0x61, 0x3,0x52,0x75, 0x2,0x5a,0x63,\n  0x2,0x5a,0x62, 0x3,0x52,0x73, 0x2,0x5a,0x64, 0x1,0x72,0x4a,\n  0x2,0x5a,0x60, 0x3,0x56,0x51, 0x3,0x56,0x52, 0x1,0x75,0x56,\n  0x2,0x5f,0x64, 0x1,0x75,0x53, 0x1,0x75,0x57, 0x1,0x75,0x55,\n  0x1,0x75,0x54, 0x2,0x63,0x5e, 0x4,0x5d,0x69, 0x2,0x63,0x61,\n  0x7,0x43,0x52, 0x2,0x63,0x60, 0x3,0x59,0x2e, 0x2,0x63,0x5f,\n  0x1,0x77,0x43, 0x2,0x67,0x34, 0x2,0x67,0x35, 0x1,0x79,0x25,\n  0x2,0x67,0x36, 0x1,0x79,0x26, 0x3,0x5b,0x38, 0x3,0x66,0x4f,\n  0x1,0x7a,0x45, 0x4,0x64,0x4f, 0x1,0x7a,0x44, 0x2,0x6c,0x41,\n  0x3,0x5e,0x65, 0x3,0x5e,0x66, 0x1,0x7b,0x2e, 0x2,0x6c,0x42,\n  0x2,0x6e,0x2b, 0x1,0x7b,0x75, 0x1,0x7b,0x76, 0x3,0x66,0x50,\n  0x2,0x6f,0x53, 0x3,0x60,0x4a, 0x1,0x7c,0x6d, 0x3,0x61,0x4e,\n  0x1,0x4b,0x4b, 0x3,0x39,0x33, 0x1,0x5d,0x50, 0x1,0x5d,0x4f,\n  0x2,0x47,0x62, 0x2,0x47,0x63, 0x1,0x6b,0x36, 0x2,0x5a,0x65,\n  0x1,0x6f,0x35, 0x2,0x5a,0x66, 0x2,0x5f,0x65, 0x1,0x4b,0x4c,\n  0x3,0x24,0x3a, 0x2,0x2d,0x53, 0x1,0x53,0x59, 0x1,0x53,0x58,\n  0x2,0x33,0x27, 0x1,0x58,0x44, 0x2,0x33,0x28, 0x2,0x39,0x58,\n  0x3,0x39,0x39, 0x2,0x39,0x57, 0x3,0x39,0x37, 0x2,0x39,0x56,\n  0x3,0x39,0x35, 0x3,0x39,0x38, 0x2,0x40,0x54, 0x1,0x62,0x3f,\n  0x3,0x3f,0x39, 0x3,0x3f,0x34, 0x2,0x40,0x53, 0x1,0x62,0x3e,\n  0x3,0x3f,0x37, 0x3,0x3f,0x30, 0x3,0x3f,0x33, 0x2,0x40,0x55,\n  0x1,0x62,0x3d, 0x3,0x3f,0x38, 0x2,0x47,0x65, 0x2,0x47,0x68,\n  0x2,0x47,0x66, 0x2,0x47,0x67, 0x2,0x47,0x6b, 0x2,0x47,0x64,\n  0x2,0x47,0x6c, 0x2,0x47,0x69, 0x2,0x47,0x6a, 0x1,0x6b,0x38,\n  0x2,0x4e,0x3e, 0x3,0x49,0x75, 0x3,0x49,0x73, 0x1,0x6b,0x37,\n  0x3,0x49,0x74, 0x2,0x54,0x5b, 0x2,0x54,0x59, 0x3,0x4f,0x26,\n  0x4,0x4d,0x75, 0x1,0x6f,0x36, 0x2,0x54,0x58, 0x2,0x54,0x5a,\n  0x3,0x4f,0x25, 0x1,0x6f,0x37, 0x3,0x4f,0x23, 0x2,0x5a,0x67,\n  0x3,0x52,0x77, 0x2,0x5a,0x68, 0x1,0x75,0x58, 0x3,0x59,0x31,\n  0x2,0x67,0x38, 0x2,0x67,0x3a, 0x2,0x67,0x37, 0x2,0x67,0x39,\n  0x2,0x6a,0x24, 0x2,0x6c,0x43, 0x3,0x66,0x51, 0x2,0x71,0x5e,\n  0x1,0x4b,0x4d, 0x1,0x53,0x5a, 0x2,0x33,0x29, 0x2,0x33,0x2b,\n  0x2,0x33,0x2a, 0x2,0x39,0x5b, 0x1,0x5d,0x52, 0x3,0x39,0x3e,\n  0x2,0x39,0x59, 0x3,0x39,0x3a, 0x1,0x5d,0x51, 0x2,0x39,0x5c,\n  0x3,0x39,0x3d, 0x2,0x39,0x5d, 0x2,0x39,0x5a, 0x6,0x45,0x38,\n  0x2,0x40,0x61, 0x1,0x62,0x47, 0x2,0x40,0x59, 0x2,0x40,0x5f,\n  0x3,0x3f,0x3f, 0x3,0x3f,0x3a, 0x1,0x62,0x42, 0x1,0x62,0x45,\n  0x2,0x40,0x58, 0x1,0x62,0x40, 0x2,0x40,0x5c, 0x2,0x47,0x72,\n  0x1,0x62,0x44, 0x3,0x3f,0x3b, 0x2,0x40,0x57, 0x3,0x3f,0x3e,\n  0x2,0x40,0x5d, 0x2,0x40,0x5a, 0x2,0x40,0x60, 0x2,0x40,0x56,\n  0x2,0x40,0x5e, 0x1,0x62,0x43, 0x1,0x62,0x46, 0x2,0x40,0x5b,\n  0x1,0x62,0x41, 0x1,0x66,0x79, 0x2,0x47,0x6e, 0x1,0x66,0x78,\n  0x2,0x47,0x75, 0x2,0x47,0x74, 0x1,0x67,0x21, 0x1,0x67,0x22,\n  0x2,0x47,0x76, 0x1,0x66,0x7a, 0x2,0x47,0x73, 0x1,0x66,0x7e,\n  0x2,0x47,0x78, 0x2,0x47,0x6f, 0x3,0x44,0x6b, 0x2,0x47,0x71,\n  0x1,0x66,0x7b, 0x2,0x47,0x6d, 0x2,0x47,0x70, 0x2,0x47,0x77,\n  0x1,0x66,0x7c, 0x2,0x47,0x79, 0x1,0x66,0x7d, 0x1,0x6b,0x39,\n  0x2,0x4e,0x43, 0x2,0x4e,0x49, 0x2,0x4e,0x41, 0x2,0x4e,0x4a,\n  0x3,0x49,0x7b, 0x2,0x4e,0x40, 0x2,0x4e,0x45, 0x2,0x4e,0x4b,\n  0x2,0x4e,0x48, 0x2,0x4e,0x47, 0x2,0x4e,0x46, 0x3,0x49,0x7a,\n  0x2,0x4e,0x3f, 0x2,0x4e,0x44, 0x3,0x49,0x79, 0x2,0x4e,0x42,\n  0x1,0x6f,0x3c, 0x1,0x6f,0x39, 0x2,0x54,0x64, 0x2,0x54,0x69,\n  0x2,0x54,0x6b, 0x2,0x54,0x68, 0x2,0x54,0x61, 0x2,0x54,0x63,\n  0x2,0x54,0x6d, 0x2,0x54,0x6a, 0x2,0x54,0x65, 0x2,0x54,0x6e,\n  0x2,0x54,0x62, 0x2,0x54,0x6c, 0x1,0x6f,0x3a, 0x1,0x6f,0x40,\n  0x1,0x6f,0x3e, 0x2,0x54,0x5c, 0x1,0x6f,0x3f, 0x1,0x6f,0x3b,\n  0x2,0x54,0x5d, 0x2,0x54,0x5f, 0x2,0x54,0x5e, 0x2,0x54,0x66,\n  0x2,0x54,0x67, 0x3,0x4f,0x2c, 0x1,0x6f,0x3d, 0x3,0x4f,0x2b,\n  0x1,0x6f,0x38, 0x2,0x54,0x60, 0x2,0x5a,0x72, 0x1,0x72,0x4c,\n  0x3,0x52,0x7e, 0x2,0x5a,0x69, 0x1,0x72,0x4d, 0x1,0x72,0x50,\n  0x2,0x5a,0x6e, 0x5,0x51,0x48, 0x2,0x5a,0x6b, 0x1,0x72,0x4f,\n  0x4,0x54,0x29, 0x3,0x52,0x7b, 0x2,0x5a,0x6f, 0x2,0x5a,0x70,\n  0x2,0x5a,0x6a, 0x2,0x5a,0x73, 0x2,0x5a,0x6c, 0x2,0x5a,0x71,\n  0x1,0x72,0x4e, 0x3,0x52,0x7c, 0x1,0x72,0x4b, 0x2,0x5a,0x6d,\n  0x3,0x56,0x54, 0x2,0x5f,0x6b, 0x1,0x75,0x5b, 0x1,0x75,0x59,\n  0x1,0x75,0x5c, 0x1,0x75,0x5a, 0x2,0x5f,0x6a, 0x2,0x5f,0x67,\n  0x2,0x5f,0x66, 0x3,0x56,0x55, 0x2,0x5f,0x69, 0x4,0x59,0x2d,\n  0x2,0x5f,0x68, 0x2,0x63,0x6f, 0x1,0x77,0x49, 0x2,0x63,0x66,\n  0x2,0x63,0x65, 0x3,0x59,0x32, 0x1,0x77,0x44, 0x2,0x63,0x6b,\n  0x2,0x63,0x6a, 0x2,0x63,0x62, 0x2,0x63,0x6d, 0x2,0x63,0x67,\n  0x1,0x77,0x48, 0x2,0x63,0x64, 0x2,0x63,0x6c, 0x2,0x63,0x63,\n  0x1,0x77,0x45, 0x1,0x77,0x47, 0x2,0x63,0x68, 0x1,0x77,0x46,\n  0x2,0x63,0x69, 0x3,0x5b,0x3a, 0x2,0x63,0x6e, 0x2,0x67,0x3e,\n  0x3,0x5b,0x39, 0x1,0x79,0x2b, 0x2,0x67,0x3b, 0x4,0x61,0x52,\n  0x2,0x67,0x3f, 0x3,0x5b,0x3b, 0x4,0x61,0x4f, 0x1,0x79,0x28,\n  0x2,0x67,0x3d, 0x1,0x79,0x2d, 0x3,0x5b,0x3c, 0x1,0x79,0x2a,\n  0x3,0x5b,0x3d, 0x2,0x67,0x3c, 0x4,0x61,0x54, 0x1,0x79,0x2c,\n  0x2,0x67,0x40, 0x1,0x79,0x27, 0x1,0x7a,0x47, 0x1,0x7a,0x49,\n  0x3,0x5d,0x37, 0x2,0x6a,0x27, 0x1,0x7a,0x48, 0x2,0x6a,0x25,\n  0x1,0x79,0x29, 0x2,0x6a,0x26, 0x1,0x7a,0x46, 0x1,0x7b,0x2f,\n  0x1,0x7b,0x31, 0x2,0x6c,0x45, 0x1,0x7b,0x30, 0x2,0x6c,0x44,\n  0x2,0x6e,0x30, 0x1,0x7b,0x77, 0x2,0x6e,0x2f, 0x1,0x7b,0x78,\n  0x2,0x6e,0x2d, 0x2,0x6e,0x2c, 0x2,0x6e,0x31, 0x2,0x6e,0x32,\n  0x2,0x6f,0x54, 0x3,0x60,0x4b, 0x2,0x6e,0x2e, 0x2,0x70,0x54,\n  0x2,0x70,0x51, 0x2,0x70,0x52, 0x2,0x70,0x53, 0x1,0x7d,0x29,\n  0x3,0x61,0x50, 0x2,0x71,0x40, 0x2,0x71,0x3f, 0x2,0x71,0x3e,\n  0x2,0x71,0x5f, 0x3,0x61,0x6c, 0x2,0x72,0x2e, 0x2,0x71,0x79,\n  0x1,0x7d,0x3b, 0x1,0x4b,0x4e, 0x1,0x58,0x45, 0x3,0x39,0x3f,\n  0xf,0x38,0x6c, 0x3,0x39,0x40, 0x3,0x3f,0x40, 0x3,0x44,0x73,\n  0x1,0x67,0x23, 0x3,0x49,0x7d, 0x3,0x49,0x7c, 0x3,0x4f,0x30,\n  0x3,0x4f,0x32, 0x3,0x4f,0x2f, 0x3,0x4f,0x31, 0x1,0x6f,0x41,\n  0x3,0x66,0x52, 0x2,0x5a,0x74, 0xf,0x58,0x33, 0x3,0x59,0x35,\n  0x1,0x77,0x4a, 0x3,0x59,0x36, 0x2,0x67,0x41, 0x3,0x5b,0x3f,\n  0x4,0x61,0x56, 0x3,0x5d,0x38, 0x4,0x67,0x51, 0x2,0x71,0x7a,\n  0x1,0x4b,0x4f, 0x1,0x4f,0x51, 0x1,0x53,0x5c, 0x1,0x53,0x5b,\n  0x5,0x30,0x55, 0x1,0x58,0x48, 0x3,0x34,0x21, 0x2,0x33,0x2c,\n  0x1,0x58,0x46, 0x2,0x33,0x2d, 0x1,0x58,0x47, 0x3,0x66,0x53,\n  0x3,0x39,0x41, 0x2,0x39,0x62, 0x2,0x39,0x5e, 0x3,0x39,0x47,\n  0x4,0x35,0x63, 0x1,0x5d,0x53, 0x2,0x39,0x61, 0x2,0x39,0x60,\n  0x2,0x39,0x5f, 0x1,0x5d,0x54, 0x2,0x39,0x63, 0x2,0x39,0x64,\n  0x3,0x3f,0x45, 0x2,0x40,0x68, 0x2,0x40,0x66, 0x2,0x40,0x6a,\n  0x2,0x40,0x6b, 0x2,0x40,0x71, 0x3,0x3f,0x47, 0x2,0x40,0x6d,\n  0x2,0x40,0x6f, 0x5,0x43,0x50, 0x2,0x40,0x67, 0x2,0x40,0x62,\n  0x4,0x3b,0x55, 0x2,0x40,0x6e, 0x3,0x3f,0x44, 0x3,0x3f,0x46,\n  0x2,0x40,0x70, 0x2,0x40,0x69, 0x2,0x40,0x6c, 0x2,0x40,0x63,\n  0x1,0x62,0x49, 0x2,0x40,0x65, 0x2,0x40,0x64, 0x1,0x62,0x48,\n  0x1,0x62,0x4a, 0x3,0x3f,0x49, 0x1,0x67,0x26, 0x2,0x47,0x7b,\n  0x2,0x47,0x7d, 0x2,0x47,0x7c, 0x2,0x48,0x23, 0x1,0x67,0x24,\n  0x3,0x44,0x76, 0x2,0x47,0x7e, 0x2,0x47,0x7a, 0x2,0x48,0x21,\n  0x2,0x48,0x22, 0x1,0x67,0x25, 0x1,0x67,0x27, 0x2,0x48,0x24,\n  0x2,0x4e,0x4f, 0x2,0x4e,0x4e, 0x4,0x47,0x6a, 0x2,0x4e,0x4c,\n  0x2,0x4e,0x4d, 0x1,0x6b,0x3b, 0x1,0x6b,0x3d, 0x1,0x6b,0x3a,\n  0x1,0x6b,0x3c, 0x2,0x54,0x75, 0x2,0x54,0x76, 0x2,0x54,0x71,\n  0x3,0x4f,0x36, 0x2,0x54,0x72, 0x1,0x6f,0x43, 0x1,0x6f,0x48,\n  0x1,0x6f,0x42, 0x1,0x6f,0x49, 0x1,0x6f,0x44, 0x2,0x54,0x73,\n  0x4,0x4e,0x2d, 0x3,0x4f,0x33, 0x2,0x54,0x74, 0x2,0x54,0x70,\n  0x1,0x6f,0x4a, 0x1,0x6f,0x46, 0x3,0x4f,0x35, 0x4,0x4e,0x2b,\n  0x1,0x6f,0x45, 0x1,0x6f,0x47, 0x3,0x4f,0x34, 0x2,0x54,0x6f,\n  0x3,0x53,0x24, 0x2,0x5a,0x76, 0x1,0x72,0x52, 0x3,0x53,0x22,\n  0x3,0x53,0x21, 0x2,0x5a,0x78, 0x1,0x72,0x54, 0x2,0x5a,0x7b,\n  0x2,0x5a,0x77, 0x2,0x5a,0x75, 0x2,0x5a,0x7a, 0x1,0x72,0x53,\n  0x2,0x5a,0x79, 0x7,0x34,0x32, 0x1,0x72,0x51, 0x3,0x53,0x25,\n  0x3,0x56,0x59, 0x1,0x75,0x5e, 0x1,0x75,0x61, 0x2,0x5f,0x6d,\n  0x3,0x56,0x5a, 0x1,0x75,0x5f, 0x2,0x5f,0x6c, 0x1,0x75,0x5d,\n  0x1,0x75,0x60, 0x2,0x63,0x70, 0x2,0x63,0x71, 0x2,0x63,0x72,\n  0x1,0x77,0x4b, 0x3,0x59,0x37, 0x2,0x63,0x73, 0x1,0x77,0x4c,\n  0x1,0x79,0x2f, 0x2,0x67,0x44, 0x2,0x67,0x45, 0x2,0x67,0x43,\n  0x2,0x67,0x42, 0x2,0x67,0x46, 0x1,0x79,0x2e, 0x2,0x6a,0x2b,\n  0x2,0x6a,0x29, 0x2,0x6a,0x2a, 0x2,0x6a,0x2c, 0x2,0x6a,0x28,\n  0x2,0x6a,0x2d, 0x2,0x6c,0x47, 0x3,0x5e,0x67, 0x2,0x6c,0x48,\n  0x2,0x6c,0x46, 0x1,0x7b,0x32, 0x2,0x6e,0x33, 0x1,0x7b,0x79,\n  0x2,0x6e,0x34, 0x2,0x6f,0x56, 0x2,0x6f,0x55, 0x3,0x62,0x22,\n  0x1,0x4b,0x50, 0x1,0x62,0x4b, 0x3,0x3f,0x4b, 0x3,0x44,0x77,\n  0x1,0x67,0x28, 0x3,0x44,0x78, 0x3,0x4a,0x21, 0x3,0x4a,0x22,\n  0x1,0x6b,0x3e, 0x3,0x4f,0x37, 0x3,0x53,0x27, 0x1,0x72,0x56,\n  0x3,0x53,0x26, 0x1,0x72,0x55, 0x3,0x66,0x54, 0x3,0x59,0x38,\n  0x1,0x79,0x30, 0x1,0x7a,0x29, 0x1,0x7b,0x33, 0x1,0x4b,0x51,\n  0x1,0x58,0x49, 0x1,0x67,0x29, 0x3,0x4f,0x39, 0x2,0x67,0x47,\n  0x3,0x27,0x2f, 0x4,0x21,0x54, 0xf,0x21,0x6a, 0x4,0x23,0x30,\n  0x3,0x24,0x3b, 0xf,0x22,0x71, 0xf,0x22,0x72, 0x3,0x27,0x30,\n  0x2,0x25,0x26, 0x4,0x25,0x21, 0x3,0x27,0x33, 0x1,0x4b,0x52,\n  0x4,0x25,0x23, 0x1,0x4b,0x55, 0x1,0x4b,0x54, 0x1,0x4b,0x53,\n  0x3,0x27,0x31, 0xf,0x25,0x32, 0x2,0x25,0x25, 0x3,0x2a,0x72,\n  0x2,0x28,0x6d, 0x3,0x2a,0x70, 0x2,0x28,0x6f, 0x1,0x4f,0x52,\n  0x3,0x2a,0x74, 0x4,0x28,0x26, 0x1,0x4f,0x54, 0x2,0x28,0x6c,\n  0x2,0x28,0x6e, 0x1,0x4f,0x53, 0x2,0x28,0x71, 0x2,0x28,0x70,\n  0x2,0x28,0x72, 0x3,0x2a,0x73, 0x3,0x2a,0x71, 0xf,0x28,0x71,\n  0xf,0x28,0x6e, 0x2,0x2d,0x57, 0x2,0x2d,0x55, 0x1,0x53,0x5f,\n  0x2,0x2d,0x54, 0x1,0x53,0x64, 0x1,0x53,0x61, 0x1,0x53,0x5e,\n  0x3,0x2f,0x31, 0x1,0x53,0x65, 0x3,0x2f,0x32, 0x1,0x53,0x60,\n  0x1,0x53,0x63, 0x6,0x34,0x60, 0x1,0x53,0x62, 0x2,0x2d,0x56,\n  0x3,0x2f,0x33, 0x1,0x53,0x5d, 0x3,0x2f,0x30, 0x1,0x58,0x4f,\n  0x2,0x33,0x2f, 0x2,0x33,0x35, 0x1,0x58,0x4c, 0x1,0x58,0x53,\n  0x3,0x34,0x25, 0x1,0x58,0x4e, 0x2,0x33,0x32, 0x2,0x33,0x34,\n  0x1,0x58,0x51, 0x2,0x33,0x2e, 0x2,0x33,0x31, 0x1,0x58,0x4d,\n  0x1,0x58,0x4a, 0x2,0x33,0x30, 0x1,0x58,0x50, 0x2,0x33,0x33,\n  0x1,0x58,0x52, 0x1,0x58,0x4b, 0x4,0x30,0x2f, 0x3,0x34,0x27,\n  0x3,0x34,0x26, 0x2,0x39,0x66, 0x2,0x39,0x69, 0x1,0x5d,0x56,\n  0x3,0x39,0x4b, 0x1,0x5d,0x60, 0x1,0x5d,0x5c, 0x2,0x39,0x67,\n  0x3,0x39,0x4a, 0x3,0x39,0x4e, 0x1,0x5d,0x64, 0x1,0x5d,0x5d,\n  0x1,0x5d,0x62, 0x1,0x5d,0x58, 0x4,0x35,0x68, 0x1,0x5d,0x55,\n  0x1,0x5d,0x57, 0x1,0x5d,0x63, 0x2,0x39,0x68, 0x1,0x5d,0x5b,\n  0x1,0x5d,0x5e, 0x1,0x5d,0x5a, 0x1,0x5d,0x5f, 0x2,0x39,0x6a,\n  0x1,0x5d,0x61, 0x1,0x5d,0x59, 0x2,0x39,0x65, 0x3,0x39,0x4c,\n  0x3,0x3f,0x4f, 0x3,0x3f,0x50, 0x3,0x3f,0x4d, 0x3,0x3f,0x4c,\n  0x3,0x3f,0x51, 0x2,0x40,0x72, 0x1,0x62,0x4c, 0x2,0x40,0x74,\n  0x3,0x3f,0x55, 0x1,0x62,0x4e, 0x1,0x62,0x50, 0x4,0x35,0x66,\n  0x2,0x40,0x73, 0x1,0x62,0x4d, 0x1,0x62,0x51, 0x3,0x3f,0x56,\n  0x1,0x62,0x4f, 0x3,0x3f,0x54, 0x3,0x3f,0x57, 0x1,0x67,0x2f,\n  0x2,0x48,0x29, 0x1,0x67,0x37, 0x2,0x48,0x26, 0x3,0x44,0x7d,\n  0x1,0x67,0x38, 0x1,0x67,0x2d, 0x3,0x44,0x79, 0x2,0x48,0x27,\n  0x3,0x44,0x7c, 0x3,0x44,0x7a, 0x1,0x67,0x32, 0x3,0x44,0x7b,\n  0x2,0x48,0x28, 0x1,0x67,0x2b, 0x1,0x67,0x2a, 0x3,0x44,0x7e,\n  0x1,0x67,0x35, 0x1,0x67,0x34, 0x1,0x67,0x33, 0x1,0x67,0x31,\n  0x1,0x67,0x36, 0x2,0x48,0x25, 0x1,0x67,0x2c, 0x1,0x67,0x2e,\n  0x1,0x67,0x30, 0x1,0x6b,0x40, 0x1,0x6b,0x43, 0x3,0x4a,0x24,\n  0x1,0x6b,0x47, 0x1,0x6b,0x41, 0x1,0x6b,0x46, 0x1,0x6b,0x44,\n  0x3,0x4a,0x27, 0x1,0x6b,0x3f, 0x3,0x4a,0x26, 0x1,0x6b,0x45,\n  0x1,0x6b,0x42, 0xf,0x4c,0x6b, 0x4,0x4e,0x32, 0x2,0x54,0x7a,\n  0x1,0x6f,0x4d, 0x1,0x6f,0x4b, 0x3,0x4f,0x3c, 0x2,0x54,0x7b,\n  0x4,0x4e,0x33, 0x1,0x6f,0x4e, 0x1,0x6f,0x4c, 0x2,0x54,0x79,\n  0x2,0x54,0x78, 0x3,0x4f,0x3b, 0x1,0x72,0x5a, 0x2,0x54,0x77,\n  0x1,0x72,0x58, 0x1,0x72,0x57, 0x2,0x5a,0x7c, 0x1,0x6f,0x4f,\n  0x1,0x72,0x59, 0x2,0x5a,0x7d, 0x1,0x72,0x5c, 0x2,0x5a,0x7e,\n  0x1,0x72,0x5b, 0x1,0x75,0x63, 0x2,0x5f,0x6f, 0x1,0x75,0x62,\n  0x1,0x75,0x67, 0x1,0x75,0x65, 0x1,0x75,0x66, 0x1,0x77,0x4e,\n  0x1,0x75,0x64, 0x2,0x5f,0x6e, 0x2,0x5b,0x21, 0x1,0x77,0x4d,\n  0x1,0x77,0x4f, 0x3,0x59,0x3a, 0x1,0x79,0x31, 0x1,0x79,0x32,\n  0x4,0x61,0x5f, 0x2,0x6a,0x2e, 0x4,0x69,0x52, 0x1,0x7c,0x4a,\n  0x1,0x7c,0x49, 0x1,0x4b,0x57, 0x3,0x22,0x5e, 0x3,0x22,0x5d,\n  0x2,0x22,0x75, 0x1,0x58,0x54, 0x3,0x24,0x3c, 0x2,0x22,0x72,\n  0x2,0x22,0x73, 0x2,0x22,0x71, 0x3,0x24,0x3d, 0x2,0x22,0x74,\n  0x3,0x66,0x55, 0x2,0x25,0x2a, 0x2,0x25,0x27, 0x2,0x25,0x2c,\n  0x2,0x25,0x28, 0x1,0x4b,0x58, 0x1,0x4b,0x5b, 0x3,0x27,0x35,\n  0x2,0x25,0x29, 0x1,0x4b,0x5a, 0x2,0x25,0x2b, 0x3,0x27,0x39,\n  0x3,0x27,0x34, 0x1,0x4b,0x59, 0x3,0x39,0x51, 0x3,0x2a,0x77,\n  0x4,0x28,0x2b, 0x2,0x28,0x75, 0x2,0x28,0x77, 0x1,0x4f,0x57,\n  0x2,0x28,0x73, 0x2,0x28,0x76, 0x2,0x28,0x74, 0x1,0x4f,0x55,\n  0x1,0x4f,0x58, 0x3,0x2a,0x75, 0x1,0x4f,0x56, 0x3,0x2a,0x78,\n  0x3,0x2f,0x35, 0x2,0x2d,0x59, 0x2,0x2d,0x5d, 0x2,0x2d,0x5a,\n  0x3,0x2f,0x38, 0x1,0x53,0x68, 0x3,0x2f,0x34, 0x1,0x53,0x69,\n  0x3,0x2f,0x3e, 0x2,0x2d,0x5c, 0x3,0x2f,0x37, 0x2,0x2d,0x5e,\n  0x2,0x2d,0x60, 0x3,0x2f,0x3c, 0x1,0x53,0x66, 0x2,0x2d,0x5f,\n  0x4,0x41,0x39, 0x3,0x2f,0x3b, 0x1,0x53,0x67, 0xf,0x45,0x6d,\n  0x2,0x39,0x71, 0x2,0x2d,0x5b, 0x2,0x33,0x36, 0x2,0x33,0x3f,\n  0x2,0x33,0x3d, 0x2,0x33,0x38, 0x2,0x33,0x39, 0x2,0x33,0x3e,\n  0x2,0x33,0x40, 0x1,0x58,0x56, 0x3,0x34,0x29, 0x2,0x33,0x3b,\n  0x2,0x33,0x37, 0x1,0x58,0x55, 0x1,0x58,0x57, 0x2,0x33,0x3a,\n  0x2,0x33,0x41, 0x2,0x33,0x3c, 0x1,0x5d,0x65, 0x2,0x39,0x74,\n  0x2,0x39,0x6c, 0x2,0x39,0x72, 0x2,0x39,0x73, 0x1,0x5d,0x66,\n  0x3,0x39,0x4f, 0x2,0x39,0x6b, 0x2,0x39,0x6d, 0x2,0x2d,0x58,\n  0x2,0x39,0x6f, 0x2,0x39,0x70, 0x2,0x39,0x6e, 0x1,0x62,0x53,\n  0x4,0x4e,0x3b, 0x3,0x39,0x52, 0x2,0x40,0x7b, 0x2,0x5b,0x22,\n  0x2,0x40,0x7c, 0x2,0x40,0x79, 0x1,0x5d,0x67, 0x1,0x62,0x55,\n  0x2,0x40,0x78, 0x2,0x40,0x7e, 0x2,0x40,0x7d, 0x1,0x62,0x52,\n  0x2,0x41,0x23, 0x2,0x40,0x77, 0x2,0x41,0x22, 0x2,0x40,0x75,\n  0x2,0x41,0x21, 0x2,0x40,0x7a, 0x1,0x62,0x54, 0x3,0x3f,0x59,\n  0x2,0x48,0x30, 0x3,0x45,0x23, 0x2,0x48,0x2b, 0x2,0x48,0x31,\n  0x2,0x48,0x2c, 0x2,0x48,0x2a, 0x2,0x48,0x2d, 0x1,0x67,0x39,\n  0x3,0x45,0x24, 0x2,0x48,0x2f, 0x3,0x45,0x25, 0x2,0x48,0x2e,\n  0x1,0x67,0x3a, 0x1,0x6b,0x49, 0x1,0x6b,0x48, 0x2,0x4e,0x56,\n  0x2,0x4e,0x59, 0x2,0x4e,0x51, 0x2,0x4e,0x55, 0x1,0x6b,0x4a,\n  0x2,0x4e,0x54, 0x2,0x4e,0x52, 0x2,0x4e,0x58, 0x2,0x4e,0x53,\n  0x2,0x4e,0x50, 0x2,0x4e,0x57, 0x3,0x4a,0x2a, 0x2,0x55,0x23,\n  0x1,0x6f,0x52, 0x2,0x63,0x74, 0x2,0x54,0x7e, 0x2,0x55,0x21,\n  0x2,0x54,0x7d, 0x2,0x40,0x76, 0x1,0x6f,0x51, 0x2,0x55,0x24,\n  0x2,0x54,0x7c, 0x1,0x6f,0x50, 0x1,0x6f,0x53, 0x2,0x55,0x22,\n  0x2,0x5b,0x23, 0x1,0x72,0x5d, 0x2,0x5b,0x24, 0x2,0x5b,0x25,\n  0x3,0x53,0x2b, 0x2,0x5f,0x70, 0x1,0x75,0x68, 0x2,0x63,0x75,\n  0x2,0x63,0x76, 0x3,0x59,0x3c, 0x3,0x59,0x3b, 0x2,0x63,0x77,\n  0x2,0x67,0x49, 0x2,0x67,0x48, 0x2,0x6a,0x30, 0x2,0x6a,0x2f,\n  0x2,0x6c,0x4a, 0x2,0x6c,0x4b, 0x2,0x6c,0x49, 0x2,0x6e,0x35,\n  0x1,0x7b,0x7a, 0x1,0x4b,0x5c, 0x1,0x53,0x6b, 0x1,0x53,0x6a,\n  0x1,0x58,0x5a, 0x1,0x58,0x59, 0x2,0x33,0x43, 0x2,0x33,0x44,\n  0x2,0x33,0x42, 0x3,0x34,0x2a, 0x1,0x58,0x58, 0x2,0x39,0x78,\n  0x3,0x39,0x55, 0x2,0x39,0x79, 0x2,0x39,0x75, 0x1,0x5d,0x68,\n  0x2,0x39,0x76, 0x3,0x39,0x54, 0x2,0x39,0x77, 0x3,0x66,0x57,\n  0x2,0x41,0x26, 0x2,0x41,0x28, 0x2,0x41,0x24, 0x2,0x41,0x27,\n  0x1,0x62,0x56, 0x2,0x41,0x25, 0x1,0x62,0x57, 0x3,0x45,0x28,\n  0x2,0x42,0x79, 0x1,0x67,0x3d, 0x1,0x67,0x3c, 0x3,0x45,0x27,\n  0x1,0x67,0x3b, 0x4,0x41,0x3a, 0x2,0x48,0x32, 0x2,0x48,0x33,\n  0x4,0x41,0x3b, 0x2,0x4e,0x5b, 0x2,0x4e,0x5d, 0x1,0x6b,0x4e,\n  0x1,0x6b,0x4b, 0x3,0x4a,0x2c, 0x1,0x6b,0x4d, 0x1,0x6b,0x4c,\n  0x2,0x4e,0x5c, 0x2,0x4e,0x5a, 0x3,0x4a,0x2b, 0x3,0x4a,0x2d,\n  0x2,0x55,0x2b, 0x2,0x55,0x28, 0x2,0x55,0x29, 0x1,0x6f,0x57,\n  0x2,0x55,0x2a, 0x2,0x55,0x25, 0x2,0x55,0x26, 0x1,0x6f,0x54,\n  0x3,0x4f,0x3f, 0x1,0x6f,0x55, 0x2,0x55,0x27, 0x1,0x6f,0x56,\n  0x3,0x4f,0x40, 0x2,0x5b,0x29, 0x3,0x53,0x2d, 0x2,0x5b,0x2a,\n  0x2,0x5b,0x27, 0x2,0x5b,0x28, 0x1,0x72,0x5e, 0x2,0x5b,0x26,\n  0x4,0x54,0x42, 0x3,0x53,0x2c, 0x3,0x53,0x2f, 0x4,0x59,0x3f,\n  0x2,0x5f,0x74, 0x2,0x5f,0x71, 0x2,0x5f,0x73, 0x1,0x75,0x6b,\n  0x2,0x5f,0x77, 0x1,0x75,0x6a, 0x2,0x5f,0x75, 0x2,0x5f,0x78,\n  0x2,0x5f,0x76, 0x2,0x5f,0x72, 0x1,0x75,0x69, 0x2,0x63,0x79,\n  0x4,0x5e,0x24, 0x2,0x63,0x7a, 0x2,0x63,0x78, 0x3,0x59,0x3d,\n  0x2,0x63,0x7c, 0x1,0x77,0x50, 0x1,0x77,0x51, 0x2,0x67,0x4b,\n  0x1,0x79,0x34, 0x2,0x63,0x7b, 0x2,0x67,0x4a, 0x1,0x79,0x33,\n  0x2,0x6a,0x33, 0x2,0x6a,0x34, 0x1,0x7a,0x4a, 0x2,0x6a,0x32,\n  0x4,0x64,0x65, 0x2,0x6a,0x31, 0x2,0x6c,0x4c, 0x1,0x7b,0x34,\n  0x3,0x5e,0x68, 0x2,0x6f,0x57, 0x2,0x70,0x56, 0x2,0x70,0x55,\n  0x3,0x60,0x7e, 0x1,0x7c,0x6e, 0x1,0x7d,0x2a, 0x2,0x70,0x57,\n  0x2,0x71,0x60, 0x3,0x61,0x6d, 0x1,0x7d,0x3c, 0x1,0x4b,0x5d,\n  0x1,0x4f,0x59, 0x1,0x67,0x3e, 0x1,0x7a,0x4b, 0x1,0x4b,0x5e,\n  0x1,0x53,0x6c, 0x1,0x5d,0x69, 0x1,0x62,0x58, 0x1,0x77,0x52,\n  0x1,0x4f,0x5a, 0x2,0x2d,0x62, 0x2,0x2d,0x61, 0x2,0x33,0x45,\n  0x3,0x34,0x30, 0x1,0x58,0x5d, 0x1,0x58,0x5b, 0x1,0x58,0x5f,\n  0x2,0x33,0x47, 0x3,0x34,0x2d, 0x1,0x58,0x5e, 0x1,0x58,0x5c,\n  0x3,0x34,0x2f, 0x3,0x34,0x2e, 0x3,0x34,0x31, 0x2,0x33,0x46,\n  0x1,0x5d,0x6c, 0x2,0x3a,0x21, 0x3,0x39,0x58, 0x1,0x5d,0x6b,\n  0x1,0x5d,0x6d, 0x2,0x3a,0x26, 0x1,0x5d,0x6f, 0x2,0x3a,0x23,\n  0x2,0x3a,0x24, 0x2,0x39,0x7a, 0x1,0x5d,0x6e, 0x2,0x3a,0x27,\n  0x4,0x35,0x7b, 0x3,0x39,0x57, 0x2,0x39,0x7c, 0x3,0x39,0x56,\n  0x2,0x39,0x7d, 0x2,0x39,0x7b, 0x1,0x5d,0x6a, 0x3,0x39,0x59,\n  0x2,0x3a,0x25, 0x2,0x39,0x7e, 0x2,0x3a,0x22, 0x2,0x41,0x34,\n  0x3,0x3f,0x5d, 0x2,0x41,0x33, 0x2,0x41,0x31, 0x2,0x41,0x29,\n  0x2,0x41,0x38, 0x2,0x41,0x2c, 0x2,0x41,0x36, 0x2,0x41,0x3d,\n  0x2,0x41,0x35, 0x1,0x62,0x60, 0x3,0x3f,0x66, 0x1,0x62,0x5c,\n  0x2,0x41,0x2a, 0x3,0x3f,0x60, 0x2,0x41,0x30, 0x1,0x62,0x5e,\n  0x3,0x3f,0x68, 0x2,0x41,0x2f, 0x1,0x62,0x5f, 0x1,0x62,0x61,\n  0x2,0x41,0x32, 0x3,0x3f,0x69, 0x1,0x62,0x59, 0x1,0x62,0x5a,\n  0x2,0x41,0x3e, 0x2,0x41,0x3c, 0x3,0x3f,0x62, 0x2,0x41,0x3b,\n  0x2,0x41,0x2d, 0x3,0x3f,0x65, 0x2,0x41,0x39, 0x4,0x3b,0x66,\n  0x1,0x62,0x5d, 0x6,0x4f,0x6f, 0x3,0x3f,0x5e, 0x3,0x66,0x59,\n  0x3,0x3f,0x63, 0x1,0x62,0x5b, 0x2,0x41,0x3a, 0x2,0x41,0x2b,\n  0x2,0x41,0x2e, 0x2,0x41,0x37, 0x3,0x66,0x58, 0x2,0x4f,0x22,\n  0x2,0x48,0x3d, 0x3,0x45,0x2e, 0x2,0x48,0x36, 0x2,0x48,0x49,\n  0x2,0x48,0x52, 0x2,0x48,0x39, 0x1,0x67,0x49, 0x3,0x45,0x2b,\n  0x2,0x48,0x46, 0x1,0x67,0x3f, 0x1,0x67,0x41, 0x1,0x67,0x4d,\n  0x2,0x48,0x37, 0x3,0x45,0x37, 0x3,0x45,0x2f, 0x1,0x67,0x42,\n  0x1,0x67,0x44, 0x1,0x67,0x4e, 0x1,0x67,0x43, 0x3,0x45,0x39,\n  0x4,0x41,0x41, 0x4,0x41,0x46, 0x3,0x45,0x38, 0x1,0x67,0x4c,\n  0x2,0x48,0x3f, 0x4,0x41,0x48, 0x2,0x48,0x34, 0x1,0x67,0x4a,\n  0x2,0x48,0x3e, 0x1,0x67,0x46, 0x2,0x48,0x50, 0x1,0x67,0x4b,\n  0x2,0x48,0x4e, 0x2,0x48,0x42, 0x2,0x48,0x4c, 0x1,0x67,0x48,\n  0x2,0x48,0x35, 0x2,0x48,0x4f, 0x2,0x48,0x4a, 0x3,0x45,0x2a,\n  0x2,0x48,0x51, 0x1,0x67,0x40, 0x4,0x41,0x40, 0x3,0x45,0x2d,\n  0x1,0x67,0x4f, 0x1,0x67,0x45, 0x3,0x45,0x31, 0x3,0x45,0x29,\n  0x2,0x48,0x3b, 0x3,0x45,0x34, 0x2,0x48,0x43, 0x2,0x48,0x47,\n  0x3,0x45,0x33, 0x2,0x48,0x4b, 0x1,0x67,0x47, 0x2,0x48,0x3a,\n  0x2,0x48,0x38, 0x2,0x48,0x44, 0x4,0x41,0x42, 0x4,0x41,0x43,\n  0x3,0x45,0x32, 0x3,0x45,0x35, 0x2,0x48,0x41, 0x2,0x48,0x40,\n  0x3,0x45,0x36, 0x2,0x48,0x45, 0x2,0x48,0x48, 0x2,0x48,0x4d,\n  0x3,0x66,0x5a, 0xf,0x45,0x72, 0x4,0x47,0x75, 0x2,0x4e,0x60,\n  0xf,0x4d,0x22, 0x1,0x6b,0x4f, 0x2,0x4e,0x6a, 0x2,0x4e,0x62,\n  0x1,0x6b,0x55, 0x1,0x6b,0x59, 0x2,0x4e,0x73, 0x2,0x4e,0x7b,\n  0x2,0x4e,0x6c, 0x1,0x6b,0x51, 0x3,0x4a,0x34, 0x2,0x4e,0x70,\n  0x2,0x48,0x3c, 0x3,0x4a,0x35, 0x1,0x6b,0x52, 0x2,0x4e,0x77,\n  0x2,0x4e,0x7c, 0x2,0x4e,0x74, 0x3,0x4a,0x2f, 0x2,0x4e,0x76,\n  0x2,0x4f,0x21, 0x2,0x4e,0x78, 0x2,0x4e,0x66, 0x2,0x4e,0x6f,\n  0x3,0x45,0x30, 0x3,0x4a,0x38, 0x1,0x6b,0x5a, 0x3,0x4a,0x33,\n  0x1,0x6b,0x56, 0x2,0x4e,0x64, 0x2,0x4e,0x71, 0x1,0x6b,0x54,\n  0x2,0x4e,0x6b, 0x1,0x6b,0x53, 0x2,0x4e,0x79, 0x2,0x4e,0x68,\n  0x2,0x4e,0x61, 0x1,0x6b,0x57, 0x2,0x4e,0x7e, 0x3,0x4a,0x39,\n  0x4,0x47,0x77, 0x2,0x4e,0x63, 0x2,0x4e,0x75, 0x2,0x4e,0x72,\n  0x2,0x4e,0x6d, 0x2,0x4e,0x5f, 0x2,0x4e,0x5e, 0x2,0x4e,0x67,\n  0x2,0x4e,0x7a, 0x1,0x6b,0x58, 0x2,0x4e,0x7d, 0x2,0x4e,0x65,\n  0x2,0x4e,0x69, 0x1,0x6b,0x50, 0x3,0x4a,0x32, 0x3,0x4a,0x37,\n  0xf,0x4d,0x27, 0x3,0x67,0x2a, 0x3,0x4a,0x31, 0x1,0x6f,0x63,\n  0x1,0x6f,0x5e, 0x2,0x55,0x4d, 0x2,0x55,0x49, 0x2,0x55,0x31,\n  0x1,0x6f,0x5a, 0x3,0x4f,0x42, 0x3,0x4f,0x50, 0x4,0x4e,0x45,\n  0x1,0x6f,0x59, 0x1,0x6f,0x5f, 0x4,0x4e,0x47, 0x3,0x4f,0x43,\n  0x3,0x4f,0x41, 0x2,0x55,0x2f, 0x1,0x6f,0x5d, 0x2,0x55,0x3b,\n  0x2,0x55,0x2d, 0x2,0x55,0x2e, 0x1,0x6f,0x58, 0x2,0x55,0x4c,\n  0x1,0x6f,0x61, 0x2,0x55,0x3e, 0x2,0x55,0x43, 0x2,0x55,0x3d,\n  0x2,0x5b,0x3c, 0x2,0x55,0x39, 0x2,0x55,0x41, 0x2,0x55,0x3f,\n  0x2,0x55,0x32, 0x2,0x55,0x2c, 0x2,0x55,0x47, 0x1,0x6f,0x60,\n  0x2,0x55,0x48, 0x3,0x4f,0x48, 0x2,0x55,0x42, 0x3,0x4f,0x49,\n  0x2,0x55,0x37, 0x2,0x55,0x35, 0x2,0x55,0x30, 0x3,0x4f,0x4b,\n  0x3,0x4f,0x4e, 0x3,0x4f,0x44, 0x2,0x55,0x38, 0x2,0x55,0x45,\n  0x2,0x55,0x34, 0x2,0x55,0x44, 0x2,0x55,0x4a, 0x3,0x4f,0x51,\n  0x4,0x4e,0x46, 0x1,0x6f,0x5c, 0x3,0x4f,0x45, 0x2,0x55,0x40,\n  0x2,0x55,0x46, 0x2,0x55,0x3c, 0x2,0x55,0x36, 0x1,0x6f,0x5b,\n  0x3,0x4f,0x52, 0x4,0x4e,0x44, 0x3,0x4f,0x4c, 0x2,0x4e,0x6e,\n  0x2,0x55,0x3a, 0x1,0x6f,0x62, 0x2,0x55,0x33, 0xf,0x52,0x6b,\n  0x3,0x4f,0x4d, 0x3,0x66,0x5b, 0x3,0x66,0x5c, 0x3,0x4a,0x30,\n  0x2,0x5b,0x41, 0x1,0x72,0x61, 0x2,0x5b,0x40, 0x2,0x5b,0x3e,\n  0x2,0x5b,0x50, 0x1,0x72,0x65, 0x3,0x53,0x35, 0x2,0x5b,0x4d,\n  0x2,0x5b,0x45, 0x2,0x5b,0x4f, 0x2,0x5b,0x37, 0x2,0x5b,0x43,\n  0x3,0x53,0x3d, 0x1,0x72,0x67, 0x3,0x53,0x3e, 0x2,0x5b,0x2f,\n  0x3,0x53,0x38, 0x2,0x5b,0x2d, 0x2,0x5b,0x4e, 0x3,0x53,0x32,\n  0x2,0x5b,0x4c, 0x2,0x5b,0x4b, 0x2,0x5b,0x3b, 0x2,0x5b,0x3a,\n  0x2,0x5b,0x30, 0x1,0x72,0x69, 0x4,0x54,0x43, 0x2,0x5b,0x36,\n  0x2,0x5b,0x3f, 0x2,0x5b,0x4a, 0x1,0x72,0x6c, 0x2,0x5b,0x51,\n  0x3,0x53,0x36, 0x1,0x75,0x73, 0x1,0x72,0x6e, 0x1,0x72,0x68,\n  0x2,0x5b,0x34, 0x3,0x53,0x37, 0x2,0x5b,0x3d, 0x2,0x5b,0x2c,\n  0x2,0x5b,0x2e, 0x1,0x72,0x5f, 0x1,0x72,0x6b, 0x1,0x72,0x64,\n  0x2,0x5b,0x35, 0x2,0x5b,0x44, 0x2,0x55,0x4b, 0x1,0x72,0x6a,\n  0x2,0x5b,0x2b, 0x1,0x75,0x6e, 0x2,0x5b,0x46, 0x2,0x5b,0x49,\n  0x1,0x72,0x66, 0x3,0x53,0x3b, 0x2,0x5b,0x39, 0x1,0x72,0x6d,\n  0x1,0x72,0x63, 0x3,0x53,0x3c, 0x3,0x53,0x39, 0x3,0x53,0x3a,\n  0x1,0x72,0x62, 0x2,0x5b,0x42, 0x2,0x5b,0x48, 0x1,0x72,0x60,\n  0x4,0x54,0x45, 0x2,0x5b,0x32, 0x2,0x5b,0x47, 0xf,0x58,0x59,\n  0xf,0x58,0x48, 0x2,0x5b,0x33, 0x7,0x34,0x63, 0x3,0x66,0x5d,\n  0xf,0x58,0x55, 0x3,0x66,0x5e, 0x4,0x54,0x49, 0x3,0x53,0x31,\n  0x2,0x5b,0x38, 0x2,0x5f,0x7e, 0x3,0x56,0x65, 0x2,0x60,0x25,\n  0x1,0x75,0x70, 0x1,0x75,0x72, 0x2,0x60,0x2b, 0x1,0x75,0x6c,\n  0x2,0x60,0x39, 0x2,0x60,0x31, 0x2,0x60,0x26, 0x2,0x60,0x27,\n  0x2,0x60,0x30, 0x3,0x56,0x66, 0x1,0x75,0x79, 0x2,0x60,0x2f,\n  0x2,0x5f,0x7d, 0x2,0x60,0x2e, 0x2,0x60,0x22, 0x2,0x60,0x3a,\n  0x1,0x75,0x78, 0x1,0x75,0x76, 0x2,0x60,0x23, 0x3,0x56,0x5d,\n  0x2,0x60,0x36, 0x3,0x56,0x67, 0x2,0x60,0x28, 0x2,0x60,0x35,\n  0x3,0x56,0x64, 0x2,0x60,0x37, 0x2,0x5f,0x7c, 0x1,0x75,0x71,\n  0x3,0x56,0x5b, 0x2,0x60,0x38, 0x3,0x56,0x68, 0x3,0x56,0x5e,\n  0x2,0x60,0x2c, 0x3,0x56,0x6b, 0x1,0x75,0x75, 0x2,0x60,0x29,\n  0x3,0x56,0x61, 0x4,0x59,0x49, 0x1,0x75,0x77, 0x2,0x60,0x32,\n  0x3,0x56,0x62, 0x3,0x56,0x63, 0x3,0x56,0x5f, 0x1,0x75,0x6f,\n  0x2,0x60,0x24, 0x2,0x60,0x33, 0x3,0x56,0x5c, 0x2,0x60,0x2d,\n  0x2,0x5b,0x31, 0x2,0x60,0x34, 0x2,0x60,0x21, 0x3,0x56,0x60,\n  0x1,0x75,0x74, 0x3,0x56,0x6a, 0x2,0x64,0x2f, 0x4,0x59,0x47,\n  0x1,0x75,0x6d, 0x2,0x5f,0x7a, 0x4,0x59,0x46, 0xf,0x5d,0x41,\n  0x3,0x66,0x5f, 0xf,0x5d,0x39, 0x2,0x64,0x2c, 0x2,0x64,0x25,\n  0x1,0x77,0x54, 0x3,0x59,0x43, 0x2,0x63,0x7e, 0x2,0x64,0x30,\n  0x2,0x64,0x27, 0x2,0x60,0x2a, 0x3,0x59,0x40, 0x2,0x64,0x32,\n  0x2,0x64,0x21, 0x3,0x59,0x42, 0x1,0x77,0x53, 0x2,0x64,0x2b,\n  0x1,0x77,0x55, 0x1,0x77,0x5d, 0x1,0x77,0x5b, 0x2,0x64,0x2d,\n  0x1,0x77,0x5c, 0x2,0x64,0x23, 0x3,0x59,0x49, 0x2,0x64,0x24,\n  0x2,0x64,0x29, 0x2,0x64,0x2e, 0x3,0x59,0x3e, 0x2,0x5f,0x79,\n  0x1,0x77,0x56, 0x2,0x64,0x37, 0x2,0x64,0x34, 0x2,0x67,0x61,\n  0x2,0x64,0x2a, 0x2,0x64,0x26, 0x2,0x64,0x35, 0x2,0x67,0x56,\n  0x2,0x64,0x28, 0x4,0x5e,0x31, 0x1,0x77,0x59, 0x3,0x59,0x44,\n  0x1,0x77,0x58, 0x2,0x5f,0x7b, 0x1,0x77,0x5a, 0x2,0x64,0x31,\n  0x2,0x64,0x33, 0x1,0x77,0x57, 0x2,0x64,0x36, 0x2,0x63,0x7d,\n  0x4,0x5e,0x29, 0x2,0x64,0x22, 0x3,0x59,0x46, 0xf,0x61,0x33,\n  0x3,0x59,0x45, 0x3,0x66,0x61, 0x3,0x66,0x62, 0x3,0x66,0x60,\n  0xf,0x61,0x43, 0x2,0x67,0x5f, 0x3,0x5b,0x50, 0x2,0x67,0x4f,\n  0x1,0x79,0x38, 0x2,0x67,0x5d, 0x3,0x5b,0x44, 0x3,0x5b,0x45,\n  0x2,0x67,0x4d, 0x1,0x79,0x39, 0x4,0x61,0x67, 0x2,0x67,0x58,\n  0x3,0x5b,0x43, 0x2,0x67,0x54, 0x1,0x79,0x3e, 0x2,0x67,0x5e,\n  0x2,0x67,0x4e, 0x2,0x67,0x51, 0x1,0x79,0x36, 0x2,0x67,0x60,\n  0x3,0x5b,0x48, 0x2,0x67,0x59, 0x2,0x67,0x5c, 0x1,0x79,0x3c,\n  0x1,0x79,0x41, 0x1,0x79,0x3f, 0x2,0x67,0x55, 0x2,0x67,0x50,\n  0x3,0x5b,0x4d, 0x1,0x79,0x3a, 0x1,0x79,0x3b, 0x2,0x67,0x4c,\n  0x1,0x79,0x37, 0x3,0x5b,0x4f, 0x1,0x79,0x35, 0x1,0x79,0x3d,\n  0x2,0x67,0x5b, 0x1,0x79,0x40, 0x3,0x5b,0x4a, 0x2,0x67,0x57,\n  0x2,0x67,0x62, 0x1,0x79,0x42, 0x3,0x5b,0x41, 0x3,0x5b,0x42,\n  0x3,0x5b,0x4e, 0x2,0x67,0x53, 0x3,0x5b,0x47, 0x2,0x67,0x5a,\n  0x3,0x66,0x65, 0x3,0x66,0x63, 0x3,0x66,0x64, 0x3,0x5d,0x41,\n  0x3,0x5e,0x6a, 0x2,0x6a,0x41, 0x2,0x6a,0x50, 0x2,0x6a,0x43,\n  0x2,0x6a,0x4a, 0x2,0x67,0x52, 0x2,0x6a,0x48, 0x2,0x6a,0x37,\n  0x2,0x6a,0x4e, 0x1,0x7a,0x4e, 0x2,0x6a,0x3b, 0x2,0x6a,0x4d,\n  0x2,0x6a,0x42, 0x4,0x64,0x67, 0x3,0x5d,0x43, 0x1,0x7a,0x4d,\n  0x3,0x5d,0x3c, 0x3,0x5d,0x3f, 0x2,0x6a,0x52, 0x2,0x6a,0x44,\n  0x3,0x5d,0x3e, 0x2,0x6a,0x49, 0x2,0x6a,0x4c, 0x2,0x6a,0x35,\n  0x2,0x6a,0x4f, 0x2,0x6a,0x40, 0x2,0x6a,0x45, 0x2,0x6a,0x39,\n  0x2,0x6a,0x3d, 0x2,0x6a,0x51, 0x2,0x6a,0x47, 0x2,0x6a,0x36,\n  0x2,0x6a,0x3a, 0x2,0x6a,0x3c, 0x2,0x6a,0x46, 0x3,0x5d,0x3d,\n  0x1,0x7a,0x4c, 0x2,0x6a,0x3f, 0x3,0x5d,0x44, 0x3,0x5d,0x45,\n  0x3,0x5d,0x47, 0x4,0x64,0x6b, 0x3,0x5d,0x42, 0x3,0x5d,0x3a,\n  0x2,0x6a,0x38, 0x3,0x66,0x66, 0x3,0x66,0x67, 0x3,0x66,0x68,\n  0xf,0x66,0x57, 0x3,0x5d,0x46, 0x2,0x6a,0x3e, 0x2,0x6c,0x50,\n  0x2,0x6c,0x54, 0x1,0x7b,0x3b, 0x2,0x6c,0x56, 0x3,0x5e,0x6d,\n  0x1,0x7b,0x35, 0x4,0x64,0x6f, 0x2,0x6c,0x52, 0x2,0x6c,0x58,\n  0x1,0x7b,0x3a, 0x1,0x7b,0x36, 0x4,0x67,0x5c, 0x1,0x7b,0x37,\n  0x2,0x6c,0x4f, 0x2,0x6c,0x55, 0x1,0x7b,0x39, 0x2,0x6c,0x53,\n  0x1,0x7b,0x38, 0x2,0x6c,0x4e, 0x2,0x6a,0x4b, 0x2,0x6c,0x51,\n  0x4,0x67,0x62, 0x2,0x6c,0x4d, 0x2,0x6c,0x57, 0x3,0x5f,0x69,\n  0x3,0x5f,0x6e, 0x1,0x7b,0x7b, 0x2,0x6e,0x3c, 0x2,0x6e,0x3f,\n  0x2,0x6e,0x3b, 0x2,0x6e,0x3d, 0x2,0x6e,0x3e, 0x2,0x6e,0x38,\n  0x2,0x6e,0x39, 0x2,0x6e,0x36, 0x3,0x5f,0x6a, 0x3,0x5f,0x6c,\n  0x2,0x6e,0x3a, 0x2,0x6e,0x37, 0x1,0x7b,0x7c, 0x1,0x7b,0x7d,\n  0x3,0x5f,0x6b, 0x2,0x6f,0x59, 0x3,0x60,0x52, 0x2,0x6f,0x5b,\n  0x4,0x6b,0x29, 0x5,0x76,0x5d, 0x3,0x60,0x55, 0x3,0x60,0x54,\n  0x3,0x60,0x56, 0x2,0x6f,0x5a, 0x2,0x6f,0x5c, 0x3,0x60,0x4f,\n  0x1,0x7c,0x4c, 0x3,0x60,0x53, 0x2,0x6f,0x58, 0x1,0x7c,0x4b,\n  0x1,0x7c,0x4d, 0x3,0x60,0x57, 0x3,0x66,0x6a, 0x3,0x66,0x69,\n  0x2,0x70,0x59, 0x2,0x70,0x5a, 0x1,0x7c,0x6f, 0x2,0x70,0x58,\n  0x3,0x61,0x22, 0x2,0x71,0x42, 0x2,0x71,0x41, 0x2,0x71,0x43,\n  0x1,0x7d,0x2c, 0x2,0x71,0x44, 0x1,0x7d,0x2b, 0x2,0x71,0x45,\n  0x2,0x71,0x61, 0x2,0x71,0x64, 0x2,0x71,0x63, 0x1,0x7d,0x35,\n  0x2,0x71,0x62, 0x4,0x6d,0x62, 0x3,0x61,0x6f, 0x3,0x62,0x23,\n  0x1,0x7d,0x3f, 0x1,0x7d,0x3d, 0x1,0x7d,0x3e, 0x1,0x7d,0x44,\n  0x2,0x72,0x30, 0x2,0x72,0x31, 0x2,0x72,0x2f, 0x2,0x72,0x37,\n  0x3,0x62,0x36, 0x1,0x4f,0x5b, 0x4,0x25,0x2b, 0x4,0x30,0x3a,\n  0x2,0x3a,0x28, 0x2,0x41,0x3f, 0x2,0x55,0x4e, 0x2,0x67,0x63,\n  0x5,0x71,0x56, 0x1,0x4f,0x5c, 0x3,0x2f,0x40, 0x1,0x53,0x6d,\n  0x1,0x58,0x60, 0x4,0x30,0x3b, 0x3,0x34,0x32, 0x2,0x3a,0x29,\n  0x3,0x39,0x5c, 0x2,0x3a,0x2a, 0x1,0x5d,0x70, 0x1,0x62,0x64,\n  0x2,0x41,0x41, 0x2,0x41,0x40, 0x1,0x62,0x68, 0x1,0x62,0x63,\n  0x2,0x41,0x42, 0x1,0x62,0x65, 0x1,0x62,0x67, 0x1,0x62,0x66,\n  0x1,0x62,0x62, 0x3,0x3f,0x6c, 0xf,0x3f,0x7e, 0x3,0x66,0x6b,\n  0x1,0x67,0x50, 0x3,0x45,0x3c, 0x3,0x45,0x3a, 0x2,0x48,0x56,\n  0x2,0x48,0x54, 0x4,0x41,0x53, 0x2,0x48,0x55, 0x2,0x48,0x53,\n  0xf,0x45,0x7b, 0x1,0x6b,0x5b, 0x3,0x4a,0x3d, 0x1,0x6b,0x5e,\n  0x1,0x6b,0x60, 0x1,0x6b,0x5f, 0x4,0x48,0x22, 0x3,0x4a,0x3e,\n  0x1,0x6b,0x5c, 0x1,0x6b,0x5d, 0x2,0x55,0x50, 0x2,0x55,0x4f,\n  0x1,0x6f,0x64, 0x2,0x55,0x51, 0x3,0x4f,0x53, 0x2,0x55,0x52,\n  0x1,0x6f,0x65, 0x3,0x4f,0x55, 0x3,0x4f,0x56, 0x4,0x4e,0x4a,\n  0x2,0x5b,0x59, 0x2,0x5b,0x57, 0x2,0x60,0x40, 0x3,0x53,0x42,\n  0x2,0x5b,0x55, 0x2,0x5b,0x56, 0x1,0x72,0x6f, 0x2,0x5b,0x52,\n  0x2,0x5b,0x5a, 0x2,0x5b,0x54, 0x2,0x5b,0x58, 0x2,0x60,0x3c,\n  0x3,0x53,0x44, 0x3,0x53,0x40, 0x2,0x60,0x3e, 0x3,0x56,0x6d,\n  0x2,0x60,0x3f, 0x1,0x75,0x7e, 0x2,0x60,0x3b, 0x1,0x75,0x7d,\n  0x2,0x60,0x3d, 0x1,0x75,0x7a, 0x1,0x75,0x7b, 0x1,0x75,0x7c,\n  0x2,0x5b,0x53, 0x3,0x66,0x6c, 0x1,0x77,0x60, 0x2,0x64,0x3a,\n  0x2,0x64,0x38, 0x2,0x64,0x39, 0x1,0x77,0x5e, 0x1,0x77,0x61,\n  0x1,0x77,0x5f, 0x3,0x59,0x4b, 0x3,0x59,0x4a, 0x7,0x4b,0x40,\n  0x2,0x67,0x64, 0x2,0x67,0x65, 0x1,0x79,0x43, 0x3,0x5b,0x53,\n  0x2,0x6a,0x53, 0x2,0x6a,0x55, 0x2,0x6a,0x54, 0x1,0x7a,0x4f,\n  0x1,0x7b,0x3c, 0x2,0x6c,0x5b, 0x2,0x6c,0x5a, 0x2,0x6c,0x59,\n  0xf,0x68,0x72, 0x3,0x66,0x6d, 0xf,0x25,0x39, 0x1,0x4f,0x5d,\n  0x3,0x21,0x43, 0x2,0x21,0x69, 0x2,0x22,0x78, 0x1,0x48,0x6a,\n  0x2,0x22,0x76, 0x2,0x22,0x79, 0x2,0x22,0x77, 0x4,0x25,0x2e,\n  0x3,0x27,0x3b, 0x3,0x27,0x3a, 0x2,0x25,0x2e, 0x3,0x27,0x3f,\n  0x1,0x4b,0x62, 0x3,0x27,0x3c, 0x1,0x4b,0x63, 0x2,0x25,0x30,\n  0x1,0x4b,0x60, 0x2,0x25,0x2f, 0x2,0x25,0x2d, 0x1,0x4b,0x61,\n  0x1,0x4b,0x5f, 0x3,0x27,0x3d, 0x3,0x27,0x3e, 0x3,0x2a,0x79,\n  0x4,0x28,0x33, 0x2,0x28,0x78, 0x2,0x28,0x7b, 0x1,0x4f,0x60,\n  0x2,0x28,0x7a, 0x2,0x28,0x79, 0x3,0x2a,0x7c, 0x1,0x4f,0x5f,\n  0x1,0x4f,0x5e, 0x3,0x2a,0x7b, 0x1,0x4f,0x62, 0x2,0x28,0x7c,\n  0x1,0x4f,0x61, 0x2,0x2d,0x67, 0x1,0x53,0x6f, 0x1,0x53,0x70,\n  0x1,0x53,0x71, 0x2,0x2d,0x68, 0x2,0x2d,0x64, 0x1,0x53,0x6e,\n  0x2,0x2d,0x65, 0x4,0x2b,0x5d, 0x2,0x2d,0x66, 0x2,0x2d,0x63,\n  0x4,0x2b,0x5b, 0x3,0x34,0x36, 0x4,0x30,0x3f, 0x1,0x58,0x67,\n  0x3,0x34,0x34, 0x3,0x39,0x5e, 0x1,0x58,0x64, 0x2,0x33,0x48,\n  0x1,0x58,0x65, 0x1,0x58,0x68, 0x2,0x33,0x49, 0x3,0x34,0x33,\n  0x1,0x58,0x63, 0x1,0x58,0x61, 0x1,0x58,0x62, 0x1,0x58,0x66,\n  0x1,0x5d,0x71, 0x2,0x3a,0x2d, 0x1,0x5d,0x79, 0x2,0x3a,0x2c,\n  0x3,0x39,0x61, 0x2,0x3a,0x2f, 0x1,0x5d,0x75, 0x2,0x3a,0x2e,\n  0x1,0x62,0x70, 0x1,0x5d,0x73, 0x1,0x5d,0x76, 0x1,0x5d,0x72,\n  0x1,0x5d,0x77, 0x1,0x5d,0x78, 0x1,0x5d,0x74, 0x3,0x39,0x65,\n  0x3,0x3f,0x71, 0x2,0x3a,0x2b, 0x1,0x62,0x6c, 0x2,0x41,0x44,\n  0x3,0x3f,0x72, 0x2,0x41,0x48, 0x3,0x3f,0x73, 0x3,0x3f,0x75,\n  0x2,0x41,0x47, 0x1,0x62,0x71, 0x1,0x62,0x6d, 0x1,0x62,0x6e,\n  0x2,0x41,0x43, 0x2,0x41,0x45, 0x2,0x41,0x46, 0x1,0x62,0x69,\n  0x1,0x62,0x6b, 0x3,0x3f,0x70, 0x1,0x62,0x6f, 0x1,0x62,0x6a,\n  0x3,0x45,0x40, 0x2,0x48,0x59, 0x2,0x48,0x57, 0x2,0x48,0x58,\n  0x1,0x67,0x52, 0x1,0x67,0x53, 0x3,0x45,0x42, 0x2,0x48,0x5a,\n  0x1,0x67,0x51, 0x1,0x6b,0x61, 0x4,0x48,0x24, 0x1,0x6b,0x63,\n  0x1,0x6b,0x62, 0x3,0x4a,0x45, 0x2,0x4f,0x23, 0x3,0x4a,0x46,\n  0x3,0x4a,0x44, 0x2,0x4f,0x24, 0x2,0x55,0x54, 0x3,0x4f,0x5a,\n  0x2,0x55,0x53, 0x3,0x4f,0x5b, 0x4,0x54,0x52, 0x1,0x72,0x70,\n  0x1,0x72,0x71, 0x2,0x5b,0x5b, 0x1,0x72,0x72, 0x3,0x53,0x48,\n  0x2,0x60,0x43, 0x3,0x56,0x70, 0x2,0x60,0x41, 0x3,0x56,0x6f,\n  0x2,0x60,0x42, 0x1,0x76,0x21, 0x3,0x56,0x71, 0x2,0x64,0x3b,\n  0x1,0x79,0x44, 0x3,0x5d,0x49, 0x3,0x2a,0x7d, 0x3,0x53,0x49,\n  0x1,0x76,0x22, 0x1,0x4f,0x63, 0x4,0x30,0x41, 0x1,0x58,0x69,\n  0x2,0x33,0x4a, 0x3,0x34,0x39, 0xf,0x32,0x6f, 0x2,0x3a,0x30,\n  0x1,0x5d,0x7a, 0x1,0x62,0x72, 0x2,0x41,0x49, 0x2,0x41,0x4b,\n  0x1,0x62,0x74, 0x1,0x62,0x73, 0x1,0x62,0x75, 0x1,0x62,0x76,\n  0x2,0x41,0x4a, 0x1,0x67,0x56, 0x1,0x67,0x57, 0x1,0x67,0x55,\n  0x1,0x6b,0x64, 0x1,0x67,0x54, 0x2,0x48,0x5b, 0x4,0x41,0x57,\n  0x3,0x4a,0x47, 0x3,0x4a,0x49, 0x1,0x6b,0x65, 0x2,0x55,0x55,\n  0x2,0x5b,0x5c, 0x1,0x72,0x73, 0x1,0x76,0x23, 0x2,0x64,0x3c,\n  0x2,0x64,0x40, 0x1,0x77,0x64, 0x2,0x64,0x3d, 0x1,0x77,0x65,\n  0x1,0x77,0x63, 0x2,0x64,0x41, 0x1,0x77,0x66, 0x2,0x64,0x3f,\n  0x2,0x67,0x66, 0x1,0x77,0x62, 0x1,0x79,0x45, 0x3,0x5e,0x70,\n  0x2,0x70,0x5b, 0x3,0x61,0x25, 0x3,0x62,0x2f, 0x1,0x4f,0x64,\n  0x1,0x5d,0x7c, 0x1,0x5d,0x7b, 0xf,0x39,0x2a, 0x3,0x3f,0x7e,\n  0x3,0x3f,0x7c, 0x3,0x3f,0x7b, 0x1,0x62,0x77, 0x2,0x41,0x4d,\n  0x2,0x41,0x4c, 0x1,0x62,0x78, 0x3,0x45,0x46, 0x2,0x48,0x5f,\n  0x1,0x67,0x5b, 0x1,0x67,0x58, 0x2,0x48,0x5e, 0x1,0x67,0x5a,\n  0x2,0x48,0x5c, 0x1,0x67,0x59, 0x3,0x45,0x47, 0x2,0x48,0x5d,\n  0x2,0x4f,0x25, 0x1,0x6b,0x66, 0x2,0x55,0x58, 0x5,0x52,0x3b,\n  0x1,0x6f,0x66, 0x2,0x55,0x56, 0x1,0x6f,0x67, 0x1,0x6f,0x68,\n  0x2,0x55,0x57, 0x1,0x6f,0x69, 0x3,0x4f,0x60, 0x2,0x5b,0x5d,\n  0x3,0x53,0x50, 0x1,0x72,0x77, 0x1,0x72,0x74, 0x1,0x72,0x79,\n  0x2,0x5b,0x5f, 0x1,0x72,0x75, 0x2,0x5b,0x5e, 0x1,0x72,0x78,\n  0x3,0x53,0x4d, 0x3,0x53,0x4c, 0x1,0x72,0x76, 0x3,0x53,0x51,\n  0x2,0x60,0x46, 0x2,0x60,0x48, 0x3,0x56,0x74, 0x3,0x56,0x75,\n  0x1,0x76,0x24, 0x2,0x60,0x47, 0x1,0x76,0x25, 0x2,0x60,0x45,\n  0x2,0x60,0x44, 0x4,0x5e,0x38, 0x2,0x64,0x43, 0x2,0x64,0x42,\n  0x1,0x77,0x67, 0x2,0x64,0x44, 0x2,0x67,0x6b, 0x1,0x79,0x47,\n  0x2,0x67,0x6a, 0x2,0x67,0x67, 0x1,0x79,0x46, 0x2,0x67,0x68,\n  0x2,0x67,0x69, 0x2,0x6a,0x56, 0x2,0x6a,0x57, 0x1,0x7a,0x50,\n  0x3,0x5d,0x4f, 0x1,0x7b,0x3f, 0x3,0x5d,0x4c, 0x3,0x5d,0x4e,\n  0x2,0x6c,0x5c, 0x3,0x5e,0x72, 0x3,0x5e,0x71, 0x1,0x7b,0x3d,\n  0x1,0x7b,0x3e, 0x2,0x6c,0x5d, 0x3,0x66,0x6e, 0x3,0x5f,0x71,\n  0x1,0x7b,0x7e, 0x1,0x7c,0x21, 0x2,0x6e,0x40, 0x3,0x5f,0x72,\n  0x3,0x60,0x59, 0x1,0x7c,0x70, 0x2,0x70,0x5d, 0x1,0x7c,0x72,\n  0x3,0x61,0x26, 0x2,0x70,0x5c, 0x2,0x70,0x5e, 0x1,0x7c,0x71,\n  0x2,0x71,0x46, 0x4,0x6d,0x64, 0x2,0x71,0x7b, 0x3,0x66,0x6f,\n  0x3,0x62,0x45, 0x3,0x2a,0x7e, 0x1,0x4f,0x65, 0x3,0x45,0x49,\n  0x1,0x67,0x5c, 0x4,0x48,0x35, 0x2,0x4f,0x26, 0x3,0x4a,0x4c,\n  0x2,0x55,0x59, 0x1,0x72,0x7a, 0x1,0x72,0x7b, 0x3,0x59,0x4f,\n  0x1,0x4f,0x66, 0x3,0x40,0x21, 0x1,0x6f,0x6a, 0x1,0x79,0x48,\n  0x1,0x53,0x72, 0x3,0x2b,0x21, 0x3,0x4a,0x4e, 0x1,0x72,0x7c,\n  0x3,0x5e,0x73, 0x1,0x7c,0x4e, 0x1,0x53,0x73, 0x2,0x3a,0x31,\n  0x4,0x3b,0x77, 0x2,0x41,0x4e, 0x3,0x40,0x24, 0x2,0x41,0x50,\n  0x3,0x40,0x22, 0x2,0x41,0x4f, 0x2,0x48,0x63, 0x2,0x48,0x60,\n  0x1,0x67,0x5d, 0x6,0x5a,0x24, 0x1,0x67,0x5e, 0x2,0x48,0x61,\n  0x2,0x48,0x62, 0x3,0x45,0x4b, 0x2,0x4f,0x28, 0x2,0x4f,0x2d,\n  0x1,0x6b,0x67, 0x2,0x4f,0x27, 0x2,0x4f,0x29, 0x2,0x4f,0x30,\n  0x2,0x4f,0x2b, 0x2,0x4f,0x2f, 0x2,0x4f,0x2c, 0x2,0x4f,0x2a,\n  0x2,0x4f,0x2e, 0x1,0x6b,0x68, 0x3,0x4f,0x62, 0x2,0x55,0x5c,\n  0x3,0x4f,0x63, 0x2,0x55,0x5a, 0x1,0x6f,0x6c, 0x3,0x4f,0x64,\n  0x1,0x6f,0x6b, 0x2,0x55,0x5b, 0x1,0x6f,0x6d, 0x3,0x53,0x53,\n  0x2,0x5b,0x62, 0x4,0x54,0x5f, 0x4,0x54,0x67, 0x2,0x5b,0x61,\n  0x1,0x72,0x7d, 0x2,0x5b,0x60, 0x2,0x60,0x49, 0x3,0x56,0x7a,\n  0x2,0x60,0x4b, 0x2,0x60,0x4d, 0x2,0x60,0x4c, 0x3,0x56,0x7b,\n  0x1,0x76,0x26, 0x2,0x60,0x4a, 0x2,0x64,0x4b, 0x1,0x77,0x68,\n  0x2,0x64,0x49, 0x2,0x64,0x4c, 0x1,0x77,0x69, 0x4,0x5e,0x43,\n  0x2,0x64,0x47, 0x3,0x59,0x50, 0x2,0x64,0x4a, 0x2,0x64,0x48,\n  0x2,0x64,0x45, 0x1,0x77,0x6a, 0x2,0x64,0x46, 0x4,0x61,0x7c,\n  0x3,0x5b,0x5f, 0x3,0x5b,0x5d, 0x2,0x67,0x6c, 0x3,0x5b,0x5e,\n  0x3,0x5b,0x60, 0x2,0x67,0x6e, 0x2,0x67,0x6d, 0x3,0x5d,0x50,\n  0x2,0x6a,0x58, 0x3,0x5d,0x51, 0x2,0x6a,0x59, 0x4,0x67,0x71,\n  0x3,0x5e,0x75, 0x3,0x5e,0x74, 0x2,0x6c,0x5e, 0x3,0x5f,0x73,\n  0x1,0x7c,0x23, 0x4,0x69,0x5e, 0x1,0x7c,0x22, 0x2,0x6f,0x5d,\n  0x2,0x6f,0x5e, 0x1,0x7c,0x73, 0x2,0x70,0x5f, 0x3,0x61,0x28,\n  0x1,0x7d,0x36, 0x3,0x62,0x3b, 0x1,0x53,0x74, 0x1,0x62,0x79,\n  0x2,0x4f,0x32, 0x2,0x4f,0x31, 0x2,0x55,0x5e, 0x2,0x55,0x5d,\n  0x4,0x4e,0x57, 0x3,0x53,0x55, 0x1,0x76,0x27, 0x2,0x60,0x4f,\n  0x2,0x60,0x4e, 0x2,0x64,0x4f, 0x2,0x64,0x4d, 0x2,0x64,0x50,\n  0x2,0x64,0x4e, 0x3,0x59,0x51, 0x4,0x65,0x29, 0x1,0x79,0x49,\n  0x2,0x67,0x6f, 0x2,0x67,0x70, 0x2,0x67,0x71, 0x4,0x65,0x27,\n  0x2,0x6c,0x5f, 0x3,0x5e,0x76, 0x2,0x6e,0x41, 0x3,0x61,0x29,\n  0x2,0x70,0x60, 0x1,0x53,0x75, 0x3,0x45,0x4f, 0x3,0x4f,0x65,\n  0x2,0x5b,0x63, 0x2,0x60,0x50, 0x3,0x5b,0x61, 0x1,0x53,0x76,\n  0x4,0x41,0x63, 0x3,0x45,0x50, 0x1,0x6b,0x69, 0x4,0x48,0x46,\n  0x2,0x5b,0x64, 0x1,0x77,0x6b, 0x2,0x64,0x51, 0x1,0x79,0x4a,\n  0x3,0x5d,0x53, 0x2,0x6a,0x5a, 0x2,0x6a,0x5b, 0x1,0x7b,0x40,\n  0x2,0x6f,0x5f, 0x1,0x53,0x77, 0x1,0x5e,0x21, 0x1,0x5e,0x22,\n  0x2,0x3a,0x32, 0x1,0x62,0x7a, 0x1,0x62,0x7b, 0x2,0x41,0x51,\n  0x1,0x62,0x7c, 0x4,0x41,0x68, 0x1,0x67,0x62, 0x3,0x45,0x52,\n  0x1,0x67,0x64, 0x2,0x48,0x65, 0x2,0x48,0x66, 0x2,0x48,0x64,\n  0x1,0x67,0x5f, 0x1,0x67,0x60, 0x1,0x67,0x63, 0x1,0x67,0x61,\n  0x3,0x4a,0x54, 0x3,0x4a,0x55, 0x2,0x4f,0x33, 0x1,0x6b,0x6a,\n  0x1,0x6b,0x6b, 0x3,0x4a,0x52, 0x3,0x4a,0x56, 0x2,0x55,0x65,\n  0x1,0x6f,0x70, 0x2,0x55,0x60, 0x2,0x55,0x5f, 0x3,0x4f,0x69,\n  0x2,0x55,0x64, 0x1,0x6f,0x6e, 0x3,0x4f,0x67, 0x4,0x4e,0x5a,\n  0x1,0x73,0x26, 0x4,0x54,0x70, 0x2,0x55,0x61, 0x2,0x55,0x66,\n  0x2,0x55,0x63, 0x2,0x55,0x62, 0x3,0x4f,0x66, 0x1,0x6f,0x6f,\n  0x1,0x73,0x24, 0x3,0x53,0x5c, 0x2,0x5b,0x66, 0x1,0x72,0x7e,\n  0x3,0x53,0x59, 0x2,0x5b,0x67, 0x3,0x53,0x5a, 0x3,0x52,0x28,\n  0x2,0x5b,0x65, 0x3,0x53,0x58, 0x1,0x73,0x23, 0x1,0x73,0x21,\n  0x1,0x73,0x25, 0x3,0x53,0x5d, 0x1,0x73,0x22, 0x3,0x53,0x5b,\n  0x3,0x53,0x5f, 0x4,0x5e,0x4f, 0x3,0x59,0x5b, 0x3,0x57,0x26,\n  0x2,0x60,0x51, 0x4,0x59,0x70, 0x2,0x60,0x56, 0x2,0x60,0x52,\n  0x2,0x60,0x55, 0x1,0x76,0x28, 0x3,0x57,0x28, 0x2,0x5e,0x41,\n  0x2,0x60,0x54, 0x2,0x60,0x53, 0x3,0x59,0x59, 0x1,0x77,0x6e,\n  0x1,0x77,0x6c, 0x1,0x77,0x6f, 0x1,0x77,0x6d, 0x2,0x64,0x52,\n  0x2,0x64,0x53, 0x2,0x64,0x54, 0x1,0x77,0x70, 0x3,0x59,0x56,\n  0x3,0x59,0x58, 0x3,0x5b,0x65, 0x2,0x67,0x75, 0x1,0x79,0x4c,\n  0x2,0x67,0x73, 0x4,0x62,0x30, 0x1,0x79,0x4d, 0x2,0x67,0x72,\n  0x2,0x67,0x74, 0x1,0x79,0x4b, 0x2,0x6a,0x5f, 0x2,0x6a,0x5c,\n  0x4,0x65,0x2c, 0x2,0x6a,0x5d, 0x2,0x6a,0x5e, 0x2,0x6c,0x60,\n  0x1,0x7b,0x42, 0x3,0x5e,0x78, 0x1,0x7b,0x41, 0x3,0x5e,0x77,\n  0x2,0x6e,0x43, 0x2,0x6e,0x42, 0x1,0x7c,0x24, 0x3,0x60,0x5d,\n  0x3,0x60,0x5e, 0x3,0x60,0x5c, 0x1,0x7c,0x4f, 0x1,0x7c,0x74,\n  0x1,0x7d,0x2d, 0x2,0x71,0x47, 0x2,0x71,0x7c, 0x2,0x71,0x7d,\n  0x1,0x53,0x78, 0x2,0x41,0x52, 0x4,0x41,0x71, 0x2,0x48,0x67,\n  0x2,0x4f,0x34, 0x2,0x4f,0x35, 0x1,0x6b,0x6c, 0x4,0x48,0x57,\n  0x1,0x6b,0x6d, 0x2,0x55,0x67, 0x1,0x6f,0x71, 0x3,0x53,0x61,\n  0x1,0x76,0x29, 0x3,0x57,0x2a, 0x2,0x64,0x55, 0x3,0x59,0x5c,\n  0x1,0x77,0x71, 0x2,0x67,0x78, 0x1,0x79,0x4e, 0x2,0x67,0x77,\n  0x2,0x67,0x79, 0x2,0x67,0x76, 0x2,0x6c,0x63, 0x2,0x6a,0x60,\n  0x2,0x6a,0x61, 0x3,0x5d,0x56, 0x1,0x7a,0x51, 0x2,0x6c,0x62,\n  0x3,0x5e,0x7b, 0x3,0x5e,0x79, 0x2,0x6c,0x61, 0x3,0x5e,0x7a,\n  0x2,0x6e,0x44, 0x2,0x71,0x7e, 0x3,0x62,0x25, 0x1,0x53,0x79,\n  0x3,0x5e,0x7c, 0x3,0x62,0x26, 0x1,0x53,0x7a, 0x3,0x39,0x67,\n  0x1,0x58,0x6a, 0x2,0x33,0x4b, 0x3,0x66,0x70, 0x2,0x3a,0x33,\n  0x3,0x39,0x68, 0x1,0x62,0x7d, 0x1,0x63,0x22, 0x1,0x62,0x7e,\n  0x2,0x41,0x53, 0x3,0x45,0x5b, 0x1,0x63,0x24, 0x1,0x63,0x21,\n  0x3,0x40,0x2b, 0x3,0x45,0x5c, 0x1,0x63,0x23, 0x3,0x45,0x54,\n  0x1,0x67,0x66, 0x3,0x45,0x59, 0x2,0x48,0x68, 0x3,0x45,0x57,\n  0x3,0x4a,0x5d, 0x2,0x48,0x69, 0x2,0x55,0x69, 0x4,0x41,0x7b,\n  0x1,0x67,0x65, 0x1,0x67,0x67, 0x1,0x67,0x68, 0x3,0x45,0x58,\n  0x2,0x4f,0x37, 0x3,0x4a,0x5e, 0x2,0x4f,0x36, 0x1,0x6b,0x6e,\n  0x5,0x4b,0x4c, 0x1,0x6b,0x6f, 0x3,0x4a,0x5b, 0x2,0x4f,0x38,\n  0x2,0x55,0x68, 0x1,0x6b,0x71, 0x1,0x6f,0x72, 0x4,0x4e,0x63,\n  0x1,0x6b,0x70, 0x3,0x66,0x7a, 0x1,0x73,0x27, 0x2,0x55,0x6a,\n  0x1,0x6f,0x74, 0x1,0x6f,0x73, 0x2,0x55,0x6b, 0x2,0x55,0x6e,\n  0x2,0x55,0x6c, 0x2,0x55,0x6d, 0x1,0x6f,0x75, 0x3,0x4f,0x6b,\n  0x1,0x73,0x2c, 0x1,0x73,0x2a, 0x3,0x53,0x65, 0x3,0x53,0x66,\n  0x1,0x73,0x29, 0x2,0x5b,0x69, 0x3,0x53,0x64, 0x1,0x73,0x2b,\n  0x3,0x53,0x62, 0x3,0x53,0x63, 0x2,0x5b,0x68, 0x2,0x60,0x57,\n  0x4,0x54,0x7e, 0x2,0x5b,0x6a, 0x1,0x73,0x28, 0x2,0x5b,0x6b,\n  0x2,0x60,0x5a, 0x2,0x60,0x58, 0x2,0x60,0x59, 0x2,0x60,0x5e,\n  0x1,0x77,0x75, 0x2,0x60,0x5d, 0x2,0x60,0x60, 0x2,0x60,0x5f,\n  0x2,0x60,0x5c, 0x2,0x60,0x5b, 0x4,0x55,0x21, 0x1,0x76,0x2a,\n  0x3,0x59,0x62, 0x4,0x5a,0x29, 0x3,0x59,0x61, 0x3,0x59,0x66,\n  0x2,0x64,0x58, 0x3,0x59,0x65, 0x2,0x64,0x57, 0x1,0x77,0x74,\n  0x1,0x77,0x72, 0x1,0x77,0x73, 0x3,0x59,0x63, 0x2,0x64,0x56,\n  0x3,0x66,0x71, 0x2,0x67,0x7c, 0x3,0x5b,0x69, 0x1,0x79,0x4f,\n  0x4,0x62,0x38, 0x2,0x67,0x7b, 0x2,0x67,0x7a, 0x1,0x79,0x50,\n  0x4,0x65,0x3a, 0x2,0x6a,0x66, 0x2,0x6a,0x65, 0x3,0x5d,0x58,\n  0x2,0x6a,0x63, 0x3,0x5e,0x7e, 0x2,0x6a,0x62, 0x1,0x7a,0x53,\n  0x1,0x7a,0x52, 0x2,0x6a,0x67, 0x2,0x6e,0x45, 0x1,0x7c,0x25,\n  0x2,0x6c,0x65, 0x1,0x7b,0x43, 0x2,0x6c,0x64, 0x2,0x6a,0x64,\n  0x3,0x5f,0x78, 0x2,0x6e,0x46, 0x1,0x7c,0x50, 0x3,0x61,0x2a,\n  0x1,0x7d,0x2e, 0x2,0x71,0x48, 0x4,0x6e,0x24, 0x2,0x72,0x21,\n  0x1,0x53,0x7b, 0x2,0x3a,0x34, 0x2,0x60,0x61, 0x1,0x53,0x7c,\n  0x3,0x45,0x5f, 0x5,0x4b,0x4e, 0x2,0x4f,0x3a, 0x2,0x4f,0x39,\n  0x2,0x5b,0x6c, 0x5,0x5a,0x26, 0x3,0x53,0x68, 0x2,0x60,0x63,\n  0x3,0x57,0x30, 0x2,0x60,0x62, 0x3,0x59,0x67, 0x1,0x77,0x76,\n  0x2,0x67,0x7d, 0x2,0x67,0x7e, 0x1,0x7a,0x54, 0x3,0x5f,0x21,\n  0x3,0x60,0x60, 0x2,0x72,0x22, 0x1,0x58,0x6b, 0x1,0x63,0x26,\n  0x1,0x63,0x25, 0x2,0x48,0x6a, 0x2,0x48,0x6c, 0x1,0x67,0x6a,\n  0x2,0x48,0x6b, 0x1,0x67,0x69, 0x1,0x67,0x6b, 0x2,0x48,0x6d,\n  0x3,0x4a,0x63, 0x3,0x4a,0x62, 0x3,0x4a,0x66, 0x2,0x4f,0x3c,\n  0x2,0x4f,0x3e, 0x2,0x4f,0x3d, 0x3,0x4a,0x61, 0x2,0x4f,0x40,\n  0x3,0x4a,0x60, 0x3,0x4a,0x6c, 0x3,0x4a,0x64, 0x1,0x6b,0x72,\n  0x2,0x4f,0x3f, 0x2,0x4f,0x3b, 0x3,0x4a,0x6a, 0x4,0x48,0x60,\n  0x2,0x4f,0x41, 0x3,0x4f,0x73, 0x2,0x55,0x75, 0x3,0x4f,0x6d,\n  0x2,0x55,0x78, 0x2,0x55,0x7a, 0x2,0x55,0x70, 0x2,0x55,0x74,\n  0x2,0x55,0x71, 0x1,0x6f,0x77, 0x1,0x6f,0x7a, 0x1,0x6f,0x7c,\n  0x2,0x55,0x72, 0x2,0x55,0x73, 0x1,0x6f,0x7b, 0x2,0x55,0x76,\n  0x2,0x55,0x79, 0x2,0x55,0x77, 0x1,0x6f,0x7d, 0x3,0x4f,0x6e,\n  0x1,0x6f,0x79, 0x2,0x55,0x6f, 0x1,0x6f,0x76, 0x3,0x4f,0x72,\n  0x1,0x6f,0x78, 0x3,0x4f,0x74, 0x3,0x53,0x70, 0x1,0x73,0x2e,\n  0x2,0x5b,0x72, 0x2,0x5b,0x70, 0x2,0x5b,0x6f, 0x3,0x53,0x71,\n  0x2,0x5b,0x75, 0x3,0x53,0x6b, 0x2,0x5b,0x74, 0x2,0x5b,0x73,\n  0x3,0x53,0x6c, 0x2,0x5b,0x6e, 0x1,0x73,0x2d, 0x2,0x5b,0x6d,\n  0x3,0x53,0x6a, 0x2,0x5b,0x71, 0x1,0x73,0x2f, 0x3,0x57,0x34,\n  0x2,0x60,0x66, 0x3,0x57,0x37, 0x2,0x60,0x6a, 0x2,0x60,0x67,\n  0x2,0x60,0x69, 0x2,0x60,0x68, 0x2,0x60,0x65, 0x2,0x60,0x6b,\n  0x2,0x60,0x6e, 0x2,0x60,0x6c, 0x2,0x60,0x6d, 0x1,0x76,0x2c,\n  0x3,0x57,0x33, 0x1,0x76,0x2b, 0x2,0x60,0x64, 0x2,0x60,0x6f,\n  0x2,0x64,0x5d, 0x2,0x64,0x60, 0x2,0x64,0x62, 0x2,0x64,0x61,\n  0x3,0x59,0x6a, 0x2,0x64,0x5b, 0x2,0x64,0x5f, 0x2,0x64,0x5a,\n  0x3,0x59,0x6b, 0x2,0x64,0x5c, 0x1,0x77,0x77, 0x2,0x64,0x59,\n  0x3,0x59,0x6d, 0x2,0x64,0x5e, 0x2,0x68,0x2d, 0x2,0x68,0x22,\n  0x1,0x79,0x51, 0x3,0x5b,0x6f, 0x3,0x5b,0x6d, 0x1,0x79,0x52,\n  0x2,0x68,0x21, 0x2,0x68,0x26, 0x2,0x68,0x2c, 0x2,0x68,0x24,\n  0x2,0x68,0x2b, 0x3,0x5b,0x6c, 0x2,0x68,0x28, 0x3,0x5b,0x6e,\n  0x2,0x68,0x27, 0x2,0x68,0x2a, 0x2,0x68,0x25, 0x2,0x68,0x23,\n  0x3,0x5b,0x6b, 0x2,0x68,0x29, 0x2,0x6a,0x6e, 0x2,0x6a,0x6c,\n  0x1,0x7a,0x55, 0x2,0x6a,0x6b, 0x2,0x6a,0x71, 0x2,0x6a,0x6f,\n  0x3,0x5d,0x5a, 0x1,0x7a,0x56, 0x2,0x6a,0x6a, 0x2,0x6a,0x68,\n  0x4,0x65,0x46, 0x2,0x6a,0x69, 0x1,0x7a,0x58, 0x2,0x6a,0x6d,\n  0x1,0x7a,0x57, 0x2,0x6a,0x70, 0x2,0x6c,0x66, 0x2,0x6c,0x6c,\n  0x3,0x5f,0x24, 0x3,0x5f,0x22, 0x2,0x6c,0x67, 0x1,0x7b,0x47,\n  0x2,0x6c,0x6d, 0x1,0x7b,0x46, 0x2,0x6c,0x6b, 0x2,0x6c,0x6a,\n  0x1,0x7b,0x45, 0x2,0x6c,0x69, 0x1,0x7b,0x44, 0x2,0x6c,0x68,\n  0x7,0x56,0x51, 0x2,0x6e,0x4c, 0x2,0x6e,0x4e, 0x2,0x6e,0x4d,\n  0x4,0x69,0x6a, 0x2,0x6e,0x4a, 0x1,0x7c,0x27, 0x2,0x6e,0x47,\n  0x2,0x6e,0x4b, 0x2,0x6e,0x50, 0x3,0x5f,0x79, 0x2,0x6e,0x4f,\n  0x2,0x6e,0x48, 0x2,0x6e,0x49, 0x1,0x7c,0x26, 0x2,0x6f,0x60,\n  0x1,0x7c,0x53, 0x3,0x60,0x62, 0x2,0x6f,0x61, 0x1,0x7c,0x51,\n  0x1,0x7c,0x52, 0x3,0x60,0x61, 0x4,0x6c,0x3d, 0x2,0x70,0x61,\n  0x1,0x7c,0x75, 0x2,0x71,0x65, 0x3,0x61,0x72, 0x1,0x7d,0x37,\n  0x3,0x61,0x73, 0x2,0x72,0x23, 0x1,0x7d,0x38, 0x2,0x72,0x24,\n  0x2,0x72,0x25, 0x2,0x72,0x33, 0x2,0x72,0x32, 0x1,0x7d,0x47,\n  0x2,0x72,0x3b, 0x1,0x58,0x6c, 0x3,0x40,0x2f, 0x4,0x42,0x21,\n  0x2,0x48,0x6f, 0x4,0x41,0x7d, 0x2,0x48,0x6e, 0x4,0x41,0x7e,\n  0x1,0x6b,0x73, 0x1,0x6b,0x74, 0x2,0x4f,0x42, 0x4,0x4e,0x74,\n  0x2,0x55,0x7b, 0x2,0x5b,0x78, 0x3,0x4f,0x77, 0x3,0x4f,0x76,\n  0x1,0x6f,0x7e, 0x1,0x73,0x30, 0x2,0x5b,0x76, 0x4,0x55,0x31,\n  0x2,0x5b,0x79, 0x1,0x73,0x31, 0x3,0x57,0x3a, 0x2,0x60,0x70,\n  0x2,0x5b,0x77, 0x2,0x64,0x63, 0x1,0x77,0x78, 0x2,0x68,0x2e,\n  0x4,0x62,0x49, 0x3,0x5d,0x61, 0x2,0x6a,0x74, 0x2,0x6a,0x72,\n  0x3,0x5d,0x60, 0x3,0x5d,0x5e, 0x2,0x6a,0x73, 0x2,0x6c,0x6e,\n  0x3,0x5f,0x25, 0x1,0x7b,0x48, 0x2,0x6e,0x51, 0x1,0x7c,0x56,\n  0x1,0x7c,0x28, 0x1,0x7c,0x54, 0x1,0x7c,0x55, 0x2,0x70,0x62,\n  0x1,0x7d,0x2f, 0x3,0x61,0x74, 0x1,0x58,0x6d, 0x4,0x36,0x2d,\n  0x3,0x4a,0x6e, 0x4,0x4e,0x79, 0x2,0x64,0x64, 0x3,0x5f,0x7b,\n  0x3,0x60,0x63, 0x2,0x33,0x4c, 0x3,0x40,0x32, 0x1,0x67,0x6c,\n  0x3,0x45,0x61, 0x2,0x4f,0x43, 0x3,0x4a,0x6f, 0x3,0x4a,0x73,\n  0x1,0x6b,0x75, 0x2,0x4f,0x44, 0x3,0x4a,0x71, 0x3,0x4a,0x70,\n  0x3,0x4a,0x72, 0x2,0x55,0x7d, 0x2,0x55,0x7c, 0x1,0x73,0x33,\n  0x1,0x70,0x21, 0x1,0x70,0x22, 0x4,0x4f,0x21, 0x2,0x56,0x22,\n  0x2,0x56,0x21, 0x2,0x55,0x7e, 0x3,0x4f,0x79, 0x3,0x53,0x75,\n  0x2,0x5b,0x7a, 0x2,0x5b,0x7d, 0x3,0x53,0x74, 0x2,0x5b,0x7c,\n  0x2,0x5b,0x7b, 0x1,0x73,0x32, 0x2,0x60,0x74, 0x2,0x60,0x72,\n  0x2,0x60,0x71, 0x4,0x5a,0x37, 0x3,0x57,0x3b, 0x2,0x60,0x73,\n  0x3,0x57,0x3c, 0x1,0x77,0x79, 0x2,0x64,0x66, 0x2,0x64,0x67,\n  0x1,0x77,0x7a, 0x3,0x59,0x6f, 0x2,0x64,0x65, 0x3,0x5b,0x71,\n  0x2,0x68,0x30, 0x2,0x68,0x2f, 0x2,0x68,0x32, 0x1,0x79,0x53,\n  0x2,0x68,0x31, 0x4,0x62,0x4f, 0x2,0x6a,0x75, 0x2,0x6a,0x77,\n  0x2,0x6a,0x76, 0x3,0x5f,0x27, 0x2,0x6c,0x6f, 0x2,0x6c,0x72,\n  0x2,0x6c,0x70, 0x2,0x6c,0x71, 0x2,0x6e,0x52, 0x1,0x7c,0x29,\n  0x4,0x69,0x74, 0x4,0x69,0x71, 0x3,0x66,0x72, 0x2,0x6f,0x62,\n  0x2,0x6f,0x63, 0x2,0x6f,0x64, 0x3,0x61,0x2c, 0x1,0x7c,0x76,\n  0x1,0x7d,0x30, 0x2,0x72,0x26, 0x1,0x58,0x6e, 0x3,0x4a,0x75,\n  0x1,0x70,0x23, 0x1,0x73,0x34, 0x2,0x64,0x68, 0x3,0x5d,0x62,\n  0x2,0x6e,0x53, 0x3,0x61,0x2e, 0x4,0x6d,0x37, 0x2,0x71,0x66,\n  0x2,0x33,0x4d, 0x3,0x62,0x28, 0x1,0x7d,0x48, 0x1,0x58,0x6f,\n  0x2,0x5b,0x7e, 0x3,0x57,0x3e, 0x2,0x64,0x69, 0x2,0x68,0x33,\n  0x3,0x5d,0x63, 0x4,0x68,0x36, 0x2,0x6c,0x73, 0x2,0x6e,0x54,\n  0x1,0x58,0x70, 0x3,0x45,0x62, 0x2,0x4f,0x45, 0x2,0x4f,0x46,\n  0x3,0x4a,0x78, 0x1,0x6b,0x76, 0x1,0x6b,0x77, 0x2,0x56,0x24,\n  0x1,0x70,0x25, 0x1,0x70,0x24, 0x2,0x56,0x23, 0x2,0x60,0x75,\n  0x3,0x57,0x3f, 0x2,0x64,0x6a, 0x2,0x64,0x6c, 0x2,0x64,0x6b,\n  0x1,0x77,0x7d, 0x1,0x77,0x7c, 0x1,0x77,0x7b, 0x3,0x5d,0x64,\n  0x1,0x7b,0x4a, 0x2,0x6c,0x74, 0x3,0x5f,0x28, 0x1,0x7b,0x49,\n  0x2,0x6e,0x56, 0x2,0x6e,0x55, 0x3,0x61,0x2f, 0x1,0x7c,0x77,\n  0x2,0x70,0x63, 0x1,0x5e,0x23, 0x2,0x48,0x70, 0x4,0x42,0x29,\n  0x3,0x45,0x63, 0x2,0x4f,0x49, 0x2,0x4f,0x47, 0x2,0x4f,0x48,\n  0x4,0x48,0x6b, 0x3,0x4f,0x7e, 0x2,0x56,0x2d, 0x4,0x4f,0x30,\n  0x2,0x56,0x28, 0x2,0x56,0x25, 0x2,0x56,0x2c, 0x3,0x4f,0x7c,\n  0x4,0x4f,0x35, 0x3,0x4f,0x7b, 0x2,0x56,0x2e, 0x4,0x4f,0x37,\n  0x4,0x4f,0x2c, 0x1,0x70,0x27, 0x2,0x56,0x2b, 0x2,0x56,0x27,\n  0x3,0x4f,0x7d, 0x4,0x4f,0x2a, 0x2,0x56,0x26, 0x2,0x56,0x2a,\n  0x2,0x56,0x29, 0x1,0x70,0x26, 0xf,0x53,0x3e, 0x2,0x5c,0x2b,\n  0x2,0x5c,0x26, 0x2,0x5c,0x24, 0x2,0x5c,0x2d, 0x2,0x5c,0x25,\n  0x4,0x55,0x47, 0x2,0x5c,0x21, 0x4,0x55,0x43, 0x2,0x5c,0x27,\n  0x3,0x53,0x78, 0x3,0x53,0x7a, 0x2,0x5c,0x22, 0x2,0x60,0x7e,\n  0x2,0x5c,0x23, 0x2,0x5c,0x2e, 0x3,0x54,0x23, 0x4,0x55,0x45,\n  0x3,0x53,0x7c, 0x3,0x54,0x21, 0x5,0x5a,0x4a, 0x3,0x54,0x25,\n  0x3,0x53,0x7d, 0x2,0x5c,0x2a, 0x1,0x73,0x35, 0x2,0x5c,0x29,\n  0x2,0x5c,0x28, 0x3,0x53,0x79, 0x2,0x5c,0x2c, 0xf,0x59,0x38,\n  0x3,0x66,0x73, 0x3,0x57,0x44, 0x2,0x60,0x76, 0x2,0x60,0x79,\n  0x4,0x5a,0x49, 0x3,0x57,0x45, 0x2,0x60,0x78, 0x3,0x57,0x40,\n  0x2,0x61,0x22, 0x2,0x60,0x7b, 0x2,0x61,0x21, 0x3,0x57,0x42,\n  0x2,0x60,0x7d, 0x2,0x60,0x7c, 0x2,0x60,0x7a, 0x4,0x5a,0x41,\n  0x2,0x60,0x77, 0x4,0x5a,0x3f, 0x1,0x76,0x2f, 0x1,0x76,0x2e,\n  0x4,0x5a,0x44, 0x1,0x76,0x30, 0x1,0x76,0x2d, 0x2,0x61,0x23,\n  0x4,0x5a,0x45, 0xf,0x5d,0x76, 0x4,0x5a,0x43, 0x2,0x64,0x72,\n  0x2,0x64,0x75, 0x4,0x5f,0x26, 0x2,0x64,0x73, 0x2,0x64,0x77,\n  0x5,0x66,0x79, 0x3,0x59,0x74, 0x4,0x5f,0x22, 0x2,0x64,0x78,\n  0x4,0x5f,0x2a, 0x2,0x64,0x70, 0x1,0x78,0x24, 0x2,0x64,0x71,\n  0x3,0x59,0x73, 0x2,0x64,0x6f, 0x2,0x64,0x76, 0x3,0x5b,0x74,\n  0x2,0x64,0x6e, 0x2,0x64,0x6d, 0x1,0x78,0x23, 0x1,0x78,0x21,\n  0x1,0x77,0x7e, 0x3,0x59,0x76, 0x3,0x59,0x75, 0x3,0x57,0x43,\n  0xf,0x61,0x72, 0x3,0x59,0x71, 0x2,0x64,0x74, 0x2,0x68,0x3c,\n  0x2,0x68,0x42, 0x1,0x79,0x56, 0x2,0x68,0x3d, 0x5,0x6b,0x33,\n  0x2,0x68,0x40, 0x2,0x68,0x44, 0x1,0x79,0x57, 0x2,0x68,0x3f,\n  0x4,0x62,0x5c, 0x2,0x68,0x37, 0x3,0x5b,0x75, 0x2,0x68,0x36,\n  0x2,0x68,0x43, 0x2,0x68,0x3a, 0x3,0x5b,0x77, 0x2,0x68,0x38,\n  0x2,0x68,0x41, 0x2,0x68,0x39, 0x1,0x79,0x55, 0x1,0x79,0x54,\n  0x3,0x5b,0x79, 0x2,0x68,0x34, 0x2,0x68,0x35, 0x2,0x68,0x3e,\n  0x4,0x62,0x66, 0x3,0x5b,0x7a, 0x4,0x62,0x68, 0x2,0x68,0x3b,\n  0xf,0x64,0x6b, 0x4,0x62,0x55, 0x3,0x5d,0x6f, 0x2,0x6a,0x7a,\n  0x2,0x6a,0x7d, 0x3,0x5d,0x71, 0x4,0x62,0x56, 0x3,0x5d,0x67,\n  0x3,0x5d,0x69, 0x1,0x78,0x22, 0x3,0x5d,0x6a, 0x3,0x5d,0x74,\n  0x3,0x5d,0x75, 0x4,0x65,0x5a, 0x3,0x5d,0x6e, 0x4,0x65,0x59,\n  0x3,0x5d,0x68, 0x2,0x6a,0x7b, 0x2,0x6b,0x23, 0x2,0x6b,0x21,\n  0x2,0x6a,0x79, 0x2,0x6b,0x26, 0x3,0x5d,0x66, 0x2,0x6a,0x78,\n  0x3,0x5d,0x76, 0x1,0x7a,0x5a, 0x2,0x6b,0x22, 0x4,0x65,0x54,\n  0x3,0x5d,0x73, 0x4,0x65,0x57, 0x2,0x6a,0x7c, 0x1,0x7a,0x59,\n  0x2,0x6b,0x25, 0x3,0x5d,0x72, 0x4,0x65,0x5d, 0x2,0x6b,0x24,\n  0x3,0x5d,0x70, 0x2,0x6c,0x77, 0x2,0x6c,0x76, 0x5,0x72,0x51,\n  0x3,0x5f,0x2c, 0x5,0x72,0x4b, 0x2,0x6c,0x7d, 0x5,0x72,0x4e,\n  0x2,0x6c,0x79, 0x2,0x6c,0x7c, 0x1,0x7b,0x4c, 0x4,0x68,0x3b,\n  0x4,0x68,0x3e, 0x2,0x6c,0x7a, 0x2,0x6c,0x7b, 0x4,0x68,0x39,\n  0x2,0x6c,0x75, 0x2,0x6c,0x78, 0x1,0x7b,0x4b, 0x3,0x5f,0x2a,\n  0xf,0x69,0x2a, 0x1,0x7c,0x2b, 0x2,0x6e,0x61, 0x2,0x6e,0x5c,\n  0x2,0x6e,0x60, 0x3,0x60,0x25, 0x2,0x6e,0x63, 0x2,0x6e,0x5f,\n  0x3,0x5f,0x7e, 0x2,0x6e,0x5b, 0x3,0x60,0x23, 0x1,0x7c,0x2d,\n  0x2,0x6e,0x5e, 0x2,0x6e,0x62, 0x1,0x7c,0x2c, 0x2,0x6e,0x59,\n  0x2,0x6a,0x7e, 0x2,0x6e,0x5d, 0x4,0x6a,0x23, 0x5,0x75,0x2d,\n  0x2,0x6e,0x5a, 0x3,0x60,0x22, 0x2,0x6e,0x57, 0xf,0x6a,0x3e,\n  0x2,0x6e,0x58, 0x1,0x7c,0x2a, 0x2,0x6f,0x68, 0x2,0x6f,0x6a,\n  0x2,0x6f,0x6d, 0x2,0x6f,0x69, 0x2,0x6f,0x6e, 0x3,0x60,0x65,\n  0x2,0x6f,0x67, 0x3,0x60,0x66, 0x2,0x6f,0x65, 0x3,0x60,0x68,\n  0x1,0x7c,0x57, 0x2,0x6f,0x6b, 0x1,0x7c,0x59, 0x1,0x7c,0x58,\n  0x2,0x6f,0x66, 0x2,0x6f,0x6c, 0x3,0x61,0x32, 0x2,0x70,0x68,\n  0x1,0x7c,0x78, 0x2,0x70,0x69, 0x3,0x61,0x33, 0x2,0x70,0x67,\n  0x2,0x70,0x64, 0x4,0x6c,0x4a, 0x3,0x61,0x34, 0x2,0x70,0x66,\n  0x2,0x70,0x65, 0x2,0x71,0x49, 0x3,0x61,0x59, 0x2,0x71,0x4b,\n  0x2,0x71,0x4a, 0x3,0x61,0x5b, 0x2,0x71,0x69, 0x5,0x7a,0x53,\n  0x2,0x71,0x68, 0x2,0x71,0x67, 0x2,0x71,0x6a, 0x3,0x61,0x75,\n  0x1,0x7d,0x40, 0x1,0x7d,0x41, 0x2,0x72,0x38, 0x2,0x72,0x3c,\n  0x3,0x62,0x41, 0x1,0x5e,0x24, 0x2,0x41,0x54, 0x2,0x48,0x73,\n  0x3,0x45,0x64, 0x1,0x67,0x6d, 0x2,0x48,0x71, 0x3,0x45,0x66,\n  0x3,0x2f,0x42, 0x2,0x48,0x72, 0x3,0x45,0x68, 0x3,0x45,0x67,\n  0x2,0x4f,0x4a, 0x2,0x4f,0x4b, 0x1,0x6b,0x7a, 0x1,0x6b,0x78,\n  0x2,0x4f,0x4c, 0x1,0x6b,0x79, 0x2,0x56,0x33, 0x3,0x50,0x27,\n  0x2,0x56,0x36, 0x2,0x56,0x30, 0x2,0x56,0x37, 0x2,0x56,0x2f,\n  0x2,0x56,0x31, 0x3,0x50,0x2a, 0x2,0x56,0x32, 0x2,0x56,0x35,\n  0x3,0x50,0x24, 0x3,0x50,0x2b, 0x1,0x70,0x2a, 0x2,0x56,0x3a,\n  0x2,0x56,0x39, 0x1,0x70,0x28, 0x2,0x56,0x34, 0x2,0x56,0x38,\n  0x1,0x70,0x29, 0x3,0x54,0x2d, 0x4,0x4f,0x42, 0x3,0x50,0x25,\n  0x3,0x50,0x22, 0x3,0x54,0x2a, 0x2,0x5c,0x38, 0x4,0x55,0x52,\n  0x1,0x73,0x3a, 0x3,0x54,0x2c, 0x2,0x5c,0x33, 0x1,0x73,0x36,\n  0x3,0x54,0x36, 0x2,0x5c,0x30, 0x2,0x5c,0x36, 0x2,0x5c,0x39,\n  0x3,0x54,0x33, 0x1,0x73,0x3b, 0x4,0x5a,0x4e, 0x2,0x5c,0x35,\n  0x2,0x5c,0x32, 0x2,0x5c,0x3a, 0x2,0x5c,0x31, 0x3,0x54,0x37,\n  0x2,0x5c,0x37, 0x1,0x73,0x37, 0x3,0x54,0x29, 0x2,0x5c,0x2f,\n  0x1,0x73,0x38, 0x3,0x54,0x35, 0x1,0x73,0x39, 0x2,0x5c,0x34,\n  0x3,0x54,0x32, 0x2,0x61,0x35, 0x2,0x61,0x28, 0x2,0x61,0x29,\n  0x2,0x61,0x2c, 0x2,0x61,0x2a, 0x4,0x5a,0x55, 0x2,0x61,0x24,\n  0x4,0x5a,0x56, 0x3,0x57,0x4d, 0x2,0x61,0x27, 0x2,0x61,0x31,\n  0x2,0x61,0x2b, 0x3,0x57,0x48, 0x4,0x5a,0x4f, 0x1,0x76,0x31,\n  0x4,0x5a,0x4d, 0x2,0x61,0x33, 0x2,0x61,0x30, 0x1,0x76,0x32,\n  0x2,0x61,0x32, 0x2,0x61,0x25, 0x2,0x61,0x2e, 0x2,0x61,0x2f,\n  0x3,0x57,0x4a, 0x2,0x61,0x2d, 0xf,0x5e,0x24, 0x3,0x66,0x75,\n  0x2,0x64,0x7c, 0x2,0x64,0x7e, 0x2,0x65,0x23, 0x3,0x59,0x79,\n  0x3,0x59,0x7b, 0x2,0x64,0x7b, 0x3,0x59,0x7d, 0x1,0x78,0x25,\n  0x2,0x65,0x25, 0x2,0x64,0x7a, 0x2,0x65,0x26, 0x3,0x59,0x7e,\n  0x2,0x65,0x22, 0x2,0x65,0x24, 0x2,0x65,0x28, 0x2,0x65,0x21,\n  0x2,0x65,0x29, 0x2,0x64,0x7d, 0x2,0x64,0x79, 0x1,0x78,0x26,\n  0x3,0x5a,0x22, 0x2,0x65,0x27, 0x1,0x78,0x27, 0x1,0x79,0x59,\n  0x4,0x5f,0x34, 0x3,0x59,0x7a, 0xf,0x61,0x77, 0x3,0x5b,0x7d,\n  0x2,0x61,0x26, 0x2,0x68,0x5e, 0x2,0x68,0x55, 0x1,0x79,0x5b,\n  0x2,0x68,0x51, 0x1,0x79,0x5c, 0x3,0x5c,0x27, 0x3,0x5c,0x22,\n  0x2,0x68,0x5a, 0x2,0x68,0x54, 0x2,0x68,0x4a, 0x1,0x79,0x5a,\n  0x2,0x68,0x57, 0x2,0x68,0x52, 0x2,0x68,0x53, 0x3,0x5c,0x25,\n  0x2,0x68,0x45, 0x2,0x68,0x4c, 0x2,0x68,0x5b, 0x3,0x5b,0x7e,\n  0x2,0x68,0x58, 0x5,0x6b,0x3f, 0x2,0x68,0x50, 0x3,0x5c,0x26,\n  0x2,0x68,0x5c, 0x2,0x68,0x4b, 0x2,0x68,0x46, 0x2,0x68,0x59,\n  0x3,0x5c,0x24, 0x2,0x68,0x48, 0x2,0x68,0x56, 0x2,0x68,0x4d,\n  0x2,0x68,0x5d, 0x2,0x68,0x49, 0x1,0x79,0x58, 0x2,0x68,0x47,\n  0x2,0x68,0x4e, 0x2,0x68,0x4f, 0x2,0x6b,0x2d, 0x3,0x5c,0x23,\n  0x2,0x6b,0x2b, 0x4,0x65,0x69, 0x2,0x6b,0x30, 0x3,0x5d,0x79,\n  0x2,0x6b,0x3c, 0x2,0x6b,0x33, 0x2,0x6b,0x2c, 0x2,0x6b,0x28,\n  0x2,0x6b,0x35, 0x2,0x6b,0x2e, 0x2,0x6b,0x31, 0x2,0x6b,0x2a,\n  0x2,0x6b,0x38, 0x2,0x6b,0x27, 0x2,0x6b,0x2f, 0x2,0x6b,0x34,\n  0x2,0x6b,0x36, 0x2,0x6b,0x39, 0x2,0x6b,0x29, 0x3,0x5d,0x7a,\n  0x2,0x6b,0x3d, 0x2,0x6b,0x3e, 0x2,0x6b,0x37, 0x2,0x6b,0x3b,\n  0x2,0x6b,0x32, 0x2,0x6d,0x2f, 0x2,0x6d,0x32, 0x3,0x5f,0x35,\n  0x1,0x7b,0x4d, 0x3,0x5f,0x31, 0x2,0x6d,0x31, 0x2,0x6d,0x36,\n  0x2,0x6d,0x34, 0x1,0x7b,0x4e, 0x2,0x6d,0x2b, 0x2,0x6d,0x21,\n  0x2,0x6c,0x7e, 0x1,0x7b,0x50, 0x2,0x6d,0x2d, 0x2,0x6d,0x2e,\n  0x2,0x6d,0x2a, 0x2,0x6d,0x22, 0x3,0x5f,0x32, 0x2,0x6d,0x27,\n  0x2,0x6b,0x3a, 0x4,0x68,0x43, 0x2,0x6d,0x23, 0x1,0x7b,0x4f,\n  0x2,0x6d,0x29, 0x3,0x5f,0x36, 0x2,0x6d,0x28, 0x2,0x6d,0x24,\n  0x2,0x6d,0x30, 0x4,0x68,0x44, 0x2,0x6d,0x25, 0x2,0x6e,0x68,\n  0x2,0x6d,0x33, 0x2,0x6d,0x35, 0x2,0x6d,0x2c, 0x2,0x6d,0x26,\n  0x2,0x6e,0x69, 0x2,0x6e,0x6b, 0x2,0x6e,0x65, 0x1,0x7c,0x2e,\n  0x4,0x6a,0x25, 0x2,0x6e,0x72, 0x2,0x6e,0x70, 0x1,0x7c,0x2f,\n  0x2,0x6e,0x6f, 0x2,0x6e,0x6e, 0x2,0x6e,0x67, 0x2,0x6e,0x64,\n  0x2,0x6e,0x6a, 0x2,0x6e,0x73, 0x2,0x6e,0x66, 0x2,0x6e,0x6c,\n  0x5,0x75,0x45, 0x2,0x6f,0x77, 0x2,0x6f,0x7c, 0x2,0x6f,0x72,\n  0x2,0x6f,0x75, 0x1,0x7c,0x5a, 0x2,0x6f,0x79, 0x4,0x6b,0x46,\n  0x2,0x70,0x22, 0x2,0x6e,0x6d, 0x4,0x6b,0x4a, 0x2,0x6f,0x73,\n  0x2,0x6f,0x7d, 0x2,0x70,0x23, 0x2,0x6f,0x78, 0x2,0x6f,0x71,\n  0x2,0x6f,0x7b, 0x4,0x6b,0x4b, 0x2,0x6f,0x7a, 0x2,0x70,0x21,\n  0x2,0x6f,0x7e, 0x2,0x6e,0x71, 0x2,0x6f,0x76, 0x2,0x6f,0x70,\n  0x2,0x6f,0x74, 0x1,0x7c,0x79, 0x1,0x7c,0x7a, 0x2,0x6f,0x6f,\n  0x3,0x60,0x6c, 0x2,0x70,0x74, 0x2,0x70,0x6b, 0x2,0x70,0x73,\n  0x2,0x70,0x70, 0x2,0x70,0x71, 0x2,0x70,0x6a, 0x2,0x70,0x6d,\n  0x2,0x70,0x75, 0x2,0x70,0x6f, 0x2,0x70,0x6e, 0x2,0x70,0x6c,\n  0x3,0x61,0x35, 0x2,0x70,0x72, 0x4,0x6c,0x56, 0x2,0x71,0x4c,\n  0x4,0x6d,0x3a, 0x2,0x71,0x4d, 0x3,0x61,0x5d, 0x2,0x71,0x4f,\n  0x2,0x71,0x4e, 0x2,0x71,0x51, 0x2,0x71,0x50, 0x2,0x71,0x6c,\n  0x2,0x71,0x6b, 0x2,0x72,0x27, 0x3,0x62,0x29, 0x2,0x72,0x28,\n  0x3,0x62,0x30, 0x2,0x72,0x34, 0x1,0x7d,0x45, 0x1,0x7d,0x49,\n  0x3,0x62,0x38, 0x2,0x72,0x3d, 0x1,0x7d,0x4a, 0x1,0x5e,0x25,\n  0x4,0x4f,0x48, 0x5,0x5a,0x5b, 0x1,0x7a,0x5b, 0x2,0x6d,0x37,\n  0x3,0x5f,0x37, 0x1,0x7c,0x7b, 0x1,0x7c,0x7c, 0x1,0x5e,0x26,\n  0x2,0x48,0x74, 0x3,0x45,0x69, 0x1,0x67,0x6e, 0x2,0x56,0x3b,\n  0x3,0x50,0x2c, 0x3,0x54,0x39, 0x2,0x5c,0x3c, 0x2,0x5c,0x3d,\n  0x2,0x5c,0x3b, 0x2,0x61,0x37, 0x2,0x61,0x36, 0x1,0x76,0x33,\n  0x2,0x65,0x2b, 0x2,0x61,0x38, 0x2,0x65,0x2a, 0x4,0x5f,0x3a,\n  0x3,0x5a,0x24, 0x2,0x68,0x60, 0x1,0x79,0x5d, 0x1,0x79,0x5f,\n  0x2,0x68,0x5f, 0x3,0x5c,0x29, 0x4,0x62,0x75, 0x1,0x79,0x5e,\n  0x3,0x5e,0x21, 0x2,0x6b,0x3f, 0x2,0x6b,0x41, 0x2,0x6b,0x40,\n  0x2,0x6d,0x38, 0x1,0x7b,0x51, 0x3,0x5f,0x3a, 0x1,0x7c,0x5b,\n  0x2,0x70,0x76, 0x2,0x71,0x52, 0x3,0x62,0x31, 0x3,0x62,0x3f,\n  0x2,0x72,0x41, 0x1,0x5e,0x27, 0x3,0x25,0x47, 0x2,0x4f,0x4d,\n  0x4,0x4f,0x4c, 0x1,0x70,0x2b, 0x3,0x50,0x2f, 0x3,0x50,0x2e,\n  0x3,0x54,0x3a, 0x2,0x5c,0x3f, 0x2,0x5c,0x3e, 0x3,0x57,0x50,\n  0x2,0x61,0x39, 0x3,0x5a,0x26, 0x3,0x5a,0x25, 0x4,0x62,0x7e,\n  0x1,0x79,0x60, 0x1,0x7a,0x5c, 0x2,0x6e,0x74, 0x2,0x72,0x39,\n  0x1,0x5e,0x28, 0x1,0x6b,0x7b, 0x3,0x4b,0x22, 0x1,0x70,0x2c,\n  0xf,0x61,0x7c, 0x2,0x68,0x61, 0x3,0x5e,0x22, 0x2,0x70,0x24,\n  0x1,0x63,0x27, 0x3,0x39,0x6a, 0x3,0x54,0x3c, 0x3,0x54,0x3b,\n  0x4,0x5a,0x5d, 0x2,0x61,0x3a, 0x3,0x5a,0x28, 0x4,0x5f,0x3e,\n  0x1,0x7d,0x31, 0x1,0x63,0x28, 0x1,0x70,0x2d, 0x1,0x76,0x34,\n  0x2,0x70,0x25, 0x1,0x63,0x29, 0x3,0x39,0x6b, 0x2,0x56,0x3c,\n  0x1,0x73,0x3d, 0x2,0x5c,0x40, 0x2,0x5c,0x41, 0x3,0x54,0x3d,\n  0x1,0x73,0x3c, 0x4,0x55,0x60, 0x2,0x61,0x3b, 0x1,0x76,0x38,\n  0x1,0x76,0x36, 0x1,0x76,0x37, 0x1,0x76,0x35, 0x2,0x65,0x2c,\n  0x1,0x78,0x28, 0x4,0x63,0x24, 0x3,0x5c,0x2a, 0x2,0x6b,0x43,\n  0x2,0x6b,0x42, 0x2,0x6b,0x45, 0x2,0x6b,0x44, 0x1,0x7a,0x5d,\n  0x2,0x6d,0x39, 0x4,0x68,0x56, 0x2,0x6d,0x3b, 0x2,0x6d,0x3a,\n  0x1,0x7b,0x52, 0x2,0x6e,0x75, 0x3,0x60,0x29, 0x2,0x70,0x26,\n  0x2,0x70,0x27, 0x1,0x7c,0x5c, 0x2,0x71,0x53, 0x2,0x71,0x6d,\n  0x1,0x7d,0x42, 0x4,0x6e,0x43, 0x2,0x41,0x55, 0x2,0x5c,0x42,\n  0x2,0x61,0x3c, 0x2,0x68,0x62, 0x2,0x48,0x75, 0x3,0x27,0x72,\n  0x2,0x61,0x3d, 0x2,0x65,0x2e, 0x2,0x65,0x2d, 0x3,0x5a,0x29,\n  0x3,0x5c,0x2d, 0x3,0x5c,0x2e, 0x3,0x5f,0x3c, 0x2,0x70,0x28,\n  0x1,0x7c,0x7d, 0x3,0x61,0x5f, 0x2,0x71,0x54, 0x2,0x71,0x6e,\n  0x1,0x67,0x6f, 0x2,0x56,0x3d, 0x2,0x56,0x3e, 0x4,0x4f,0x56,\n  0x2,0x5c,0x43, 0x1,0x67,0x70, 0x3,0x45,0x6a, 0x1,0x78,0x29,\n  0x2,0x65,0x2f, 0x3,0x5c,0x30, 0x2,0x6d,0x3d, 0x1,0x7b,0x53,\n  0x2,0x6d,0x3e, 0x2,0x6d,0x3c, 0x2,0x70,0x29, 0x3,0x61,0x60,\n  0x2,0x70,0x77, 0x4,0x6d,0x48, 0x1,0x67,0x71, 0x2,0x61,0x40,\n  0x2,0x61,0x3f, 0x2,0x61,0x3e, 0x2,0x65,0x30, 0x3,0x5a,0x2b,\n  0x3,0x5a,0x2a, 0x2,0x65,0x34, 0x2,0x65,0x33, 0x2,0x65,0x32,\n  0x2,0x65,0x31, 0x1,0x78,0x2a, 0x2,0x68,0x63, 0x2,0x6b,0x47,\n  0x1,0x7a,0x5e, 0x2,0x6b,0x46, 0x2,0x6d,0x3f, 0x2,0x6e,0x78,\n  0x2,0x6e,0x77, 0x1,0x7c,0x30, 0x2,0x6e,0x76, 0x2,0x70,0x2c,\n  0x2,0x70,0x2b, 0x2,0x70,0x2a, 0x3,0x60,0x6d, 0x4,0x6e,0x44,\n  0x1,0x6b,0x7c, 0x4,0x55,0x63, 0x2,0x5c,0x44, 0x1,0x76,0x39,\n  0x4,0x5a,0x64, 0x2,0x68,0x64, 0x2,0x68,0x65, 0x2,0x6e,0x79,\n  0x2,0x70,0x2d, 0x4,0x6b,0x5c, 0x3,0x61,0x3b, 0x2,0x70,0x78,\n  0x2,0x71,0x55, 0x2,0x72,0x29, 0x2,0x72,0x43, 0x1,0x6b,0x7d,\n  0x1,0x76,0x3a, 0x2,0x65,0x35, 0x2,0x68,0x66, 0x2,0x6d,0x40,\n  0x2,0x70,0x2e, 0x3,0x23,0x70, 0x1,0x70,0x2f, 0x3,0x54,0x3e,\n  0x2,0x61,0x41, 0x2,0x65,0x36, 0x2,0x68,0x67, 0x2,0x68,0x68,\n  0x2,0x68,0x69, 0x2,0x6b,0x4c, 0x3,0x5e,0x24, 0x2,0x6b,0x48,\n  0x1,0x7b,0x54, 0x2,0x6b,0x4b, 0x2,0x6b,0x4a, 0x1,0x7a,0x5f,\n  0x2,0x6b,0x49, 0x1,0x7a,0x61, 0x1,0x7a,0x60, 0x2,0x6d,0x42,\n  0x2,0x6d,0x41, 0x1,0x7b,0x55, 0x1,0x7b,0x56, 0x4,0x68,0x60,\n  0x3,0x5f,0x3e, 0x1,0x7c,0x32, 0x2,0x6e,0x7a, 0x1,0x7c,0x31,\n  0x4,0x6b,0x61, 0x2,0x70,0x31, 0x2,0x70,0x32, 0x2,0x70,0x30,\n  0x2,0x70,0x2f, 0x1,0x7d,0x21, 0x4,0x6c,0x64, 0x2,0x70,0x79,\n  0x2,0x70,0x7a, 0x2,0x70,0x7b, 0x1,0x7c,0x7e, 0x2,0x71,0x56,\n  0x2,0x71,0x59, 0x2,0x71,0x58, 0x2,0x71,0x57, 0x3,0x62,0x33,\n  0x4,0x6e,0x45, 0x2,0x72,0x42, 0x1,0x73,0x3e, 0x3,0x57,0x55,\n  0x4,0x63,0x2d, 0x1,0x78,0x32, 0x2,0x6b,0x4d, 0x2,0x6d,0x43,\n  0x3,0x60,0x2b, 0x1,0x7c,0x33, 0x2,0x6e,0x7b, 0x4,0x6e,0x55,\n  0x3,0x62,0x42, 0x2,0x72,0x44, 0xf,0x21,0x59, 0x1,0x73,0x3f,\n  0x3,0x5e,0x47, 0x4,0x6e,0x33, 0x2,0x61,0x42, 0x3,0x5f,0x3f,\n  0x2,0x6e,0x7c, 0x3,0x61,0x61, 0x2,0x71,0x6f, 0x3,0x61,0x77,\n  0xf,0x58,0x4c, 0x1,0x21,0x2b, 0x1,0x21,0x36, 0x1,0x21,0x38,\n  0x1,0x21,0x40, 0x1,0x21,0x41, 0x1,0x21,0x44, 0x1,0x21,0x45,\n  0x1,0x21,0x48, 0x1,0x21,0x49, 0x1,0x21,0x4c, 0x1,0x21,0x4d,\n  0x1,0x21,0x50, 0x1,0x21,0x51, 0x1,0x21,0x54, 0x1,0x21,0x55,\n  0x1,0x21,0x58, 0x1,0x21,0x59, 0x1,0x21,0x5c, 0x1,0x21,0x5d,\n  0x1,0x22,0x27, 0x1,0x22,0x28, 0x1,0x22,0x2b, 0x1,0x22,0x2c,\n  0x1,0x22,0x29, 0x1,0x22,0x2a, 0x1,0x21,0x2e, 0x1,0x21,0x2f,\n  0x1,0x21,0x30, 0x1,0x21,0x32, 0x1,0x21,0x33, 0x1,0x21,0x34,\n  0x1,0x21,0x35, 0x1,0x21,0x5e, 0x1,0x21,0x5f, 0x1,0x21,0x60,\n  0x1,0x21,0x61, 0x1,0x21,0x62, 0x1,0x21,0x63, 0x1,0x22,0x2d,\n  0x1,0x22,0x2e, 0x1,0x22,0x2f, 0x1,0x22,0x3f, 0x1,0x22,0x40,\n  0x1,0x22,0x41, 0x1,0x22,0x43, 0x1,0x22,0x42, 0x1,0x22,0x62,\n  0x1,0x22,0x6c, 0x1,0x22,0x6d, 0x1,0x22,0x6e, 0x1,0x21,0x2a,\n  0x1,0x21,0x6c, 0x1,0x22,0x63, 0x1,0x22,0x68, 0x1,0x21,0x6d,\n  0x1,0x21,0x3e, 0x1,0x21,0x3f, 0x1,0x21,0x6e, 0x1,0x22,0x30,\n  0x1,0x21,0x22, 0x1,0x22,0x31, 0x1,0x21,0x25, 0x1,0x22,0x5f,\n  0x1,0x24,0x21, 0x1,0x24,0x22, 0x1,0x24,0x23, 0x1,0x24,0x24,\n  0x1,0x24,0x25, 0x1,0x24,0x26, 0x1,0x24,0x27, 0x1,0x24,0x28,\n  0x1,0x24,0x29, 0x1,0x24,0x2a, 0x1,0x21,0x28, 0x1,0x21,0x27,\n  0x1,0x22,0x36, 0x1,0x22,0x38, 0x1,0x22,0x37, 0x1,0x21,0x29,\n  0x1,0x22,0x69, 0x1,0x24,0x41, 0x1,0x24,0x42, 0x1,0x24,0x43,\n  0x1,0x24,0x44, 0x1,0x24,0x45, 0x1,0x24,0x46, 0x1,0x24,0x47,\n  0x1,0x24,0x48, 0x1,0x24,0x49, 0x1,0x24,0x4a, 0x1,0x24,0x4b,\n  0x1,0x24,0x4c, 0x1,0x24,0x4d, 0x1,0x24,0x4e, 0x1,0x24,0x4f,\n  0x1,0x24,0x50, 0x1,0x24,0x51, 0x1,0x24,0x52, 0x1,0x24,0x53,\n  0x1,0x24,0x54, 0x1,0x24,0x55, 0x1,0x24,0x56, 0x1,0x24,0x57,\n  0x1,0x24,0x58, 0x1,0x24,0x59, 0x1,0x24,0x5a, 0x1,0x22,0x60,\n  0x1,0x22,0x25, 0x1,0x24,0x5b, 0x1,0x24,0x5c, 0x1,0x24,0x5d,\n  0x1,0x24,0x5e, 0x1,0x24,0x5f, 0x1,0x24,0x60, 0x1,0x24,0x61,\n  0x1,0x24,0x62, 0x1,0x24,0x63, 0x1,0x24,0x64, 0x1,0x24,0x65,\n  0x1,0x24,0x66, 0x1,0x24,0x67, 0x1,0x24,0x68, 0x1,0x24,0x69,\n  0x1,0x24,0x6a, 0x1,0x24,0x6b, 0x1,0x24,0x6c, 0x1,0x24,0x6d,\n  0x1,0x24,0x6e, 0x1,0x24,0x6f, 0x1,0x24,0x70, 0x1,0x24,0x71,\n  0x1,0x24,0x72, 0x1,0x24,0x73, 0x1,0x24,0x74, 0x1,0x21,0x42,\n  0x1,0x22,0x5e, 0x1,0x21,0x43, 0x1,0x22,0x66, 0x1,0x22,0x67,\n  0x1,0x22,0x64, 0x5,0x21,0x25, 0xf,0x21,0x21, 0x6,0x21,0x2f,\n  0x6,0x21,0x2d, 0x6,0x21,0x2e, 0x6,0x21,0x42, 0x6,0x21,0x43,\n  0x5,0x21,0x33, 0x3,0x21,0x44, 0xf,0x21,0x3e, 0xf,0x21,0x3f,\n  0x6,0x22,0x2b, 0x5,0x21,0x4d, 0x6,0x23,0x40, 0x6,0x23,0x3e,\n  0x6,0x23,0x3f, 0x6,0x24,0x67, 0x6,0x25,0x5f, 0x5,0x23,0x2f,\n  0xf,0x22,0x74, 0x6,0x25,0x67, 0x6,0x25,0x63, 0x6,0x29,0x37,\n  0x6,0x29,0x3a, 0x6,0x29,0x38, 0xf,0x29,0x22, 0xf,0x29,0x23,\n  0x6,0x2e,0x66, 0x5,0x30,0x72, 0x5,0x33,0x23, 0xf,0x39,0x32,\n  0xf,0x39,0x33, 0x6,0x47,0x2d, 0xf,0x3b,0x73, 0xf,0x40,0x35,\n  0xf,0x40,0x75, 0xf,0x47,0x42, 0xf,0x4d,0x56, 0x7,0x21,0x21,\n  0xf,0x59,0x47, 0x4,0x4f,0x7c, 0xf,0x5a,0x3f, 0x6,0x21,0x2c,\n  0x6,0x21,0x22, 0x6,0x22,0x5f, 0x4,0x21,0x56, 0x6,0x23,0x41,\n  0x6,0x25,0x60, 0x6,0x29,0x3b, 0x5,0x25,0x21, 0x5,0x27,0x7a,\n  0x6,0x2e,0x4a, 0xf,0x29,0x50, 0x6,0x35,0x25, 0x6,0x35,0x26,\n  0x6,0x45,0x7d, 0x6,0x46,0x3f, 0xf,0x46,0x40, 0x5,0x44,0x7e,\n  0x6,0x21,0x32, 0x5,0x21,0x2d, 0x6,0x22,0x2d, 0x6,0x23,0x42,\n  0xf,0x2d,0x61, 0x6,0x50,0x50, 0xf,0x53,0x44, 0x4,0x21,0x21,\n  0x5,0x21,0x26, 0x6,0x21,0x24, 0xf,0x21,0x22, 0x6,0x21,0x33,\n  0x6,0x21,0x44, 0xf,0x21,0x25, 0xf,0x21,0x26, 0x5,0x21,0x4e,\n  0x6,0x22,0x30, 0xf,0x21,0x45, 0x6,0x22,0x4e, 0x6,0x22,0x2f,\n  0xf,0x21,0x40, 0xf,0x21,0x41, 0x6,0x21,0x45, 0x6,0x22,0x31,\n  0x6,0x22,0x2e, 0x4,0x22,0x26, 0x4,0x22,0x25, 0x5,0x22,0x24,\n  0x5,0x22,0x25, 0x6,0x23,0x43, 0x6,0x29,0x3e, 0x6,0x24,0x5d,\n  0x6,0x25,0x56, 0x6,0x25,0x61, 0x6,0x25,0x62, 0x6,0x2c,0x43,\n  0x6,0x29,0x3c, 0x6,0x3a,0x65, 0xf,0x29,0x25, 0x6,0x2d,0x2d,\n  0x6,0x29,0x3d, 0x6,0x2e,0x4b, 0x5,0x2b,0x67, 0x6,0x35,0x2a,\n  0x6,0x35,0x27, 0x6,0x39,0x64, 0x6,0x35,0x29, 0x6,0x3c,0x7b,\n  0x6,0x45,0x7e, 0x6,0x46,0x40, 0x6,0x46,0x41, 0x5,0x3d,0x56,\n  0x5,0x21,0x23, 0x5,0x21,0x22, 0x6,0x21,0x26, 0x6,0x21,0x25,\n  0x5,0x21,0x21, 0x5,0x21,0x2b, 0xf,0x21,0x23, 0x6,0x21,0x46,\n  0x5,0x21,0x34, 0xf,0x21,0x27, 0xf,0x21,0x28, 0x6,0x22,0x33,\n  0x6,0x22,0x32, 0x6,0x22,0x2a, 0x5,0x21,0x4f, 0x6,0x23,0x46,\n  0x6,0x23,0x44, 0xf,0x21,0x6e, 0x6,0x23,0x45, 0xf,0x22,0x75,\n  0x6,0x29,0x3f, 0x6,0x2d,0x2c, 0x4,0x26,0x24, 0x6,0x2e,0x4d,\n  0x6,0x2e,0x4e, 0xf,0x25,0x40, 0x6,0x2e,0x4c, 0x6,0x35,0x2b,\n  0xf,0x2d,0x60, 0x6,0x3c,0x7e, 0x5,0x30,0x73, 0x6,0x3c,0x7d,\n  0xf,0x39,0x34, 0x6,0x50,0x51, 0x5,0x44,0x55, 0xf,0x46,0x41,\n  0x6,0x5a,0x63, 0x6,0x5a,0x62, 0x7,0x36,0x73, 0x7,0x46,0x27,\n  0x7,0x4d,0x3a, 0x5,0x21,0x24, 0x5,0x21,0x27, 0x4,0x21,0x28,\n  0x5,0x21,0x28, 0x5,0x21,0x2c, 0x6,0x21,0x47, 0x6,0x21,0x48,\n  0x6,0x21,0x49, 0x6,0x23,0x47, 0x5,0x23,0x30, 0x6,0x25,0x64,\n  0x6,0x29,0x40, 0x5,0x30,0x74, 0x6,0x46,0x42, 0x7,0x2c,0x3c,\n  0x6,0x21,0x27, 0x6,0x21,0x28, 0x6,0x21,0x29, 0x6,0x21,0x4a,\n  0x6,0x25,0x65, 0x6,0x23,0x48, 0x6,0x23,0x49, 0x6,0x25,0x68,\n  0xf,0x22,0x76, 0x4,0x25,0x33, 0x5,0x25,0x22, 0x4,0x25,0x32,\n  0x6,0x2e,0x50, 0x5,0x27,0x7b, 0xf,0x29,0x27, 0x6,0x30,0x7c,\n  0x6,0x35,0x2d, 0x6,0x35,0x2c, 0xf,0x2d,0x62, 0x6,0x3d,0x21,\n  0xf,0x4d,0x6e, 0x6,0x23,0x4a, 0xf,0x21,0x6f, 0xf,0x21,0x70,\n  0xf,0x22,0x2b, 0x5,0x23,0x31, 0xf,0x22,0x77, 0xf,0x22,0x78,\n  0xf,0x22,0x79, 0x5,0x25,0x23, 0x6,0x29,0x41, 0xf,0x25,0x43,\n  0x6,0x2e,0x52, 0x6,0x2e,0x51, 0xf,0x29,0x28, 0x6,0x35,0x2f,\n  0x5,0x2c,0x66, 0x4,0x2b,0x5f, 0x6,0x35,0x30, 0xf,0x2d,0x63,\n  0x6,0x35,0x31, 0x6,0x46,0x43, 0x6,0x3d,0x23, 0x6,0x3d,0x22,\n  0x4,0x30,0x44, 0x5,0x30,0x75, 0xf,0x32,0x74, 0xf,0x32,0x75,\n  0xf,0x32,0x72, 0x6,0x46,0x45, 0x6,0x46,0x44, 0x6,0x46,0x46,\n  0x4,0x36,0x2f, 0xf,0x39,0x35, 0xf,0x39,0x36, 0xf,0x39,0x37,\n  0x6,0x4c,0x2d, 0xf,0x40,0x36, 0xf,0x40,0x37, 0xf,0x40,0x38,\n  0xf,0x46,0x42, 0x6,0x50,0x52, 0x5,0x4b,0x71, 0x7,0x21,0x22,\n  0xf,0x4d,0x57, 0xf,0x4d,0x58, 0xf,0x4d,0x59, 0x7,0x26,0x79,\n  0x7,0x21,0x24, 0x7,0x21,0x23, 0x7,0x21,0x46, 0x7,0x2c,0x3f,\n  0x5,0x53,0x53, 0x7,0x2c,0x3e, 0x7,0x2c,0x3d, 0x7,0x46,0x23,\n  0x7,0x46,0x28, 0x6,0x21,0x34, 0x6,0x21,0x35, 0xf,0x21,0x24,\n  0x6,0x21,0x4c, 0xf,0x21,0x29, 0x6,0x21,0x4b, 0x3,0x21,0x6f,\n  0xf,0x21,0x43, 0x6,0x22,0x35, 0x6,0x22,0x34, 0x6,0x22,0x36,\n  0x4,0x21,0x58, 0x4,0x22,0x2c, 0x4,0x22,0x2b, 0x4,0x22,0x29,\n  0x6,0x23,0x4f, 0x4,0x22,0x30, 0x6,0x23,0x50, 0x5,0x22,0x27,\n  0x6,0x23,0x4d, 0x6,0x23,0x4c, 0x4,0x22,0x2f, 0x6,0x23,0x4b,\n  0xf,0x21,0x73, 0xf,0x21,0x74, 0xf,0x21,0x75, 0xf,0x21,0x76,\n  0xf,0x21,0x77, 0xf,0x21,0x78, 0xf,0x21,0x79, 0x5,0x22,0x28,\n  0x6,0x23,0x51, 0x5,0x22,0x26, 0xf,0x21,0x7a, 0x5,0x23,0x32,\n  0x6,0x25,0x6a, 0x4,0x23,0x3a, 0x6,0x25,0x6b, 0x6,0x25,0x74,\n  0x6,0x25,0x70, 0x6,0x25,0x6c, 0xf,0x22,0x7a, 0xf,0x22,0x7b,\n  0xf,0x22,0x7c, 0xf,0x22,0x7d, 0xf,0x23,0x21, 0xf,0x23,0x22,\n  0xf,0x23,0x23, 0xf,0x23,0x25, 0xf,0x23,0x28, 0xf,0x23,0x29,\n  0xf,0x23,0x2a, 0xf,0x23,0x2b, 0xf,0x23,0x2c, 0x4,0x23,0x38,\n  0x6,0x25,0x6d, 0x6,0x25,0x6f, 0xf,0x23,0x26, 0x6,0x25,0x6e,\n  0x6,0x25,0x69, 0x5,0x23,0x33, 0x6,0x25,0x73, 0x6,0x29,0x43,\n  0x6,0x29,0x45, 0x4,0x25,0x3a, 0x5,0x25,0x28, 0x6,0x29,0x46,\n  0x5,0x25,0x29, 0x3,0x27,0x4e, 0x5,0x25,0x2a, 0x4,0x25,0x37,\n  0x4,0x25,0x35, 0x6,0x29,0x4a, 0x6,0x29,0x44, 0x6,0x29,0x4c,\n  0x6,0x29,0x47, 0x6,0x29,0x4e, 0x5,0x25,0x26, 0x6,0x29,0x42,\n  0xf,0x25,0x45, 0xf,0x25,0x46, 0xf,0x25,0x48, 0xf,0x25,0x49,\n  0xf,0x25,0x4b, 0xf,0x25,0x4c, 0xf,0x25,0x4d, 0xf,0x25,0x4e,\n  0xf,0x25,0x4f, 0xf,0x25,0x50, 0xf,0x25,0x51, 0x6,0x29,0x4d,\n  0x6,0x29,0x48, 0x6,0x29,0x49, 0x6,0x29,0x4b, 0x5,0x25,0x24,\n  0x5,0x25,0x27, 0x5,0x27,0x7c, 0x6,0x2e,0x64, 0x6,0x2e,0x59,\n  0x5,0x2b,0x72, 0x4,0x28,0x36, 0x6,0x2e,0x63, 0x6,0x2e,0x57,\n  0x6,0x2e,0x56, 0x5,0x28,0x23, 0x4,0x28,0x3b, 0x6,0x2e,0x5d,\n  0x5,0x27,0x7e, 0x5,0x27,0x7d, 0x5,0x28,0x22, 0x6,0x2e,0x62,\n  0x6,0x2e,0x55, 0x6,0x2e,0x54, 0x6,0x2e,0x65, 0x6,0x2e,0x5c,\n  0xf,0x29,0x29, 0xf,0x29,0x2a, 0xf,0x29,0x2b, 0xf,0x29,0x2c,\n  0xf,0x29,0x2e, 0xf,0x29,0x2f, 0xf,0x29,0x31, 0xf,0x29,0x32,\n  0xf,0x29,0x33, 0xf,0x29,0x34, 0xf,0x29,0x35, 0xf,0x29,0x36,\n  0xf,0x29,0x37, 0xf,0x29,0x38, 0x6,0x2e,0x53, 0x6,0x2e,0x58,\n  0x6,0x2e,0x5b, 0x6,0x2e,0x5e, 0x6,0x2e,0x60, 0xf,0x25,0x47,\n  0x6,0x2e,0x5f, 0x5,0x28,0x24, 0x4,0x2b,0x63, 0x5,0x2b,0x70,\n  0x4,0x2b,0x67, 0x6,0x35,0x36, 0x5,0x2b,0x6b, 0x6,0x35,0x35,\n  0x5,0x2b,0x74, 0x4,0x2b,0x66, 0x4,0x2b,0x68, 0x5,0x2b,0x6f,\n  0x6,0x35,0x32, 0x5,0x2b,0x69, 0xf,0x2d,0x64, 0xf,0x2d,0x6e,\n  0x6,0x35,0x37, 0x5,0x2b,0x6e, 0xf,0x2d,0x66, 0xf,0x2d,0x67,\n  0xf,0x2d,0x6a, 0xf,0x2d,0x6b, 0xf,0x2d,0x6c, 0xf,0x2d,0x6d,\n  0xf,0x2d,0x6f, 0xf,0x2d,0x71, 0xf,0x2d,0x72, 0xf,0x2d,0x73,\n  0xf,0x2d,0x74, 0xf,0x2d,0x75, 0xf,0x2d,0x76, 0xf,0x2d,0x78,\n  0xf,0x2d,0x79, 0xf,0x2d,0x7a, 0xf,0x2d,0x7b, 0xf,0x2d,0x7c,\n  0x6,0x35,0x21, 0x6,0x35,0x3a, 0x6,0x35,0x3b, 0x6,0x35,0x33,\n  0x6,0x35,0x34, 0x5,0x2b,0x68, 0x6,0x35,0x39, 0xf,0x2d,0x77,\n  0xf,0x2d,0x70, 0x5,0x2b,0x6a, 0x5,0x2b,0x6d, 0x5,0x2b,0x75,\n  0x5,0x2b,0x71, 0x5,0x2b,0x73, 0x4,0x2b,0x60, 0x6,0x3d,0x2b,\n  0x6,0x3d,0x2d, 0x6,0x3d,0x2c, 0x4,0x30,0x49, 0x4,0x30,0x48,\n  0x6,0x3d,0x30, 0x6,0x3d,0x28, 0x5,0x31,0x21, 0x6,0x3d,0x33,\n  0x5,0x30,0x77, 0x6,0x3d,0x2e, 0x6,0x3d,0x27, 0x5,0x31,0x22,\n  0x5,0x30,0x76, 0x4,0x30,0x46, 0x6,0x3d,0x2a, 0x6,0x3d,0x31,\n  0x6,0x3d,0x37, 0x6,0x3d,0x32, 0x6,0x3d,0x29, 0x4,0x30,0x4b,\n  0x6,0x3d,0x34, 0xf,0x2d,0x69, 0xf,0x32,0x77, 0xf,0x32,0x78,\n  0xf,0x32,0x79, 0xf,0x32,0x7a, 0xf,0x32,0x7b, 0xf,0x32,0x7c,\n  0xf,0x32,0x7e, 0xf,0x33,0x21, 0xf,0x33,0x23, 0xf,0x33,0x24,\n  0xf,0x33,0x25, 0xf,0x33,0x26, 0xf,0x33,0x27, 0x6,0x46,0x37,\n  0x6,0x3d,0x38, 0x6,0x3e,0x65, 0x6,0x3d,0x39, 0x6,0x3d,0x2f,\n  0x5,0x30,0x7a, 0x6,0x43,0x63, 0x5,0x30,0x7d, 0x5,0x31,0x23,\n  0x6,0x3d,0x24, 0x6,0x3d,0x26, 0xf,0x32,0x7d, 0x5,0x30,0x79,\n  0x5,0x30,0x7e, 0x5,0x30,0x78, 0x6,0x3d,0x25, 0x6,0x3d,0x36,\n  0x5,0x30,0x7c, 0x6,0x46,0x49, 0x6,0x46,0x4f, 0x5,0x36,0x56,\n  0x5,0x36,0x51, 0x6,0x46,0x4c, 0x5,0x36,0x4e, 0x5,0x36,0x52,\n  0x5,0x36,0x63, 0x5,0x36,0x53, 0x6,0x46,0x48, 0x5,0x36,0x55,\n  0x5,0x36,0x50, 0x6,0x46,0x56, 0x4,0x36,0x35, 0x5,0x36,0x54,\n  0x6,0x46,0x52, 0x6,0x46,0x50, 0x6,0x46,0x4b, 0x6,0x46,0x4e,\n  0x6,0x46,0x53, 0xf,0x32,0x76, 0x6,0x46,0x58, 0x5,0x36,0x4f,\n  0x5,0x36,0x57, 0x6,0x46,0x47, 0xf,0x39,0x38, 0xf,0x39,0x39,\n  0xf,0x39,0x3a, 0xf,0x39,0x3b, 0xf,0x39,0x3c, 0xf,0x39,0x3d,\n  0xf,0x39,0x3e, 0xf,0x39,0x3f, 0x6,0x46,0x4d, 0x4,0x36,0x3b,\n  0x6,0x46,0x51, 0x6,0x46,0x54, 0x5,0x36,0x4d, 0x6,0x46,0x4a,\n  0x5,0x34,0x21, 0x6,0x50,0x5a, 0x4,0x42,0x38, 0x5,0x3d,0x5a,\n  0x5,0x3d,0x58, 0x6,0x50,0x53, 0x5,0x30,0x7b, 0x5,0x3d,0x5e,\n  0x5,0x3d,0x5c, 0x6,0x50,0x58, 0x5,0x3d,0x5b, 0x6,0x50,0x5f,\n  0x6,0x50,0x5d, 0x4,0x3c,0x2e, 0x6,0x50,0x5c, 0x6,0x50,0x62,\n  0x6,0x50,0x55, 0x4,0x3c,0x2f, 0x5,0x3d,0x60, 0x6,0x50,0x54,\n  0x5,0x3d,0x57, 0x6,0x50,0x57, 0x6,0x50,0x5e, 0xf,0x40,0x39,\n  0xf,0x40,0x3a, 0xf,0x40,0x3b, 0xf,0x40,0x3c, 0xf,0x40,0x3d,\n  0xf,0x40,0x3e, 0xf,0x40,0x3f, 0xf,0x40,0x40, 0xf,0x40,0x41,\n  0xf,0x40,0x42, 0xf,0x40,0x43, 0xf,0x40,0x44, 0xf,0x40,0x45,\n  0xf,0x40,0x46, 0x6,0x50,0x61, 0x6,0x56,0x4e, 0x6,0x50,0x59,\n  0x6,0x50,0x56, 0x6,0x46,0x57, 0x5,0x3d,0x59, 0x5,0x3d,0x5d,\n  0x5,0x3d,0x5f, 0x4,0x3c,0x2b, 0x6,0x50,0x60, 0x6,0x5a,0x71,\n  0x5,0x3d,0x61, 0x7,0x21,0x2e, 0x4,0x42,0x34, 0x5,0x44,0x56,\n  0x6,0x5a,0x64, 0x6,0x5a,0x69, 0x5,0x3d,0x62, 0x6,0x5a,0x6b,\n  0x4,0x42,0x39, 0x6,0x5a,0x74, 0x4,0x42,0x31, 0x6,0x5a,0x75,\n  0x6,0x5a,0x68, 0x6,0x5a,0x67, 0x6,0x5a,0x76, 0xf,0x46,0x43,\n  0xf,0x46,0x44, 0xf,0x46,0x45, 0xf,0x46,0x46, 0xf,0x46,0x47,\n  0xf,0x46,0x49, 0xf,0x46,0x4a, 0xf,0x46,0x4b, 0xf,0x46,0x4c,\n  0xf,0x46,0x4d, 0xf,0x46,0x4e, 0xf,0x46,0x4f, 0xf,0x46,0x51,\n  0xf,0x46,0x52, 0xf,0x46,0x53, 0xf,0x46,0x54, 0xf,0x46,0x56,\n  0xf,0x46,0x57, 0xf,0x46,0x58, 0xf,0x53,0x45, 0x7,0x26,0x2d,\n  0x5,0x44,0x58, 0x6,0x5a,0x77, 0x6,0x5e,0x57, 0x6,0x5a,0x6d,\n  0x6,0x5a,0x6f, 0x6,0x5a,0x65, 0xf,0x46,0x50, 0xf,0x46,0x48,\n  0xf,0x46,0x55, 0x4,0x42,0x30, 0x6,0x5a,0x66, 0x6,0x5a,0x6a,\n  0x6,0x5a,0x6e, 0x6,0x5a,0x70, 0x4,0x42,0x36, 0x5,0x3f,0x46,\n  0x4,0x48,0x7e, 0x4,0x48,0x7a, 0x6,0x5a,0x6c, 0x7,0x21,0x2f,\n  0x7,0x21,0x31, 0x7,0x21,0x29, 0x7,0x21,0x26, 0x7,0x21,0x25,\n  0x5,0x4b,0x77, 0x4,0x48,0x7c, 0x7,0x21,0x2b, 0x7,0x21,0x2c,\n  0x5,0x4b,0x73, 0x7,0x21,0x2a, 0x5,0x4b,0x79, 0x5,0x4b,0x78,\n  0x7,0x21,0x27, 0xf,0x4d,0x5a, 0xf,0x4d,0x5b, 0xf,0x4d,0x5c,\n  0xf,0x4d,0x5d, 0xf,0x4d,0x5e, 0xf,0x4d,0x60, 0xf,0x4d,0x61,\n  0x7,0x21,0x28, 0x5,0x4b,0x72, 0x7,0x21,0x2d, 0xf,0x4d,0x62,\n  0x4,0x49,0x21, 0x5,0x4b,0x75, 0x7,0x21,0x30, 0x5,0x4b,0x74,\n  0x5,0x4c,0x45, 0x5,0x53,0x54, 0x5,0x53,0x5a, 0x7,0x2c,0x40,\n  0x4,0x4f,0x58, 0x4,0x4f,0x5f, 0x5,0x53,0x58, 0x4,0x4f,0x5c,\n  0x4,0x4f,0x5e, 0x5,0x53,0x55, 0x5,0x53,0x56, 0xf,0x53,0x46,\n  0xf,0x53,0x47, 0xf,0x53,0x48, 0xf,0x53,0x49, 0xf,0x53,0x4a,\n  0x5,0x53,0x5b, 0x5,0x53,0x57, 0x7,0x36,0x78, 0x5,0x4b,0x76,\n  0x5,0x5a,0x6f, 0x5,0x5a,0x70, 0x4,0x55,0x67, 0x4,0x55,0x66,\n  0x7,0x36,0x76, 0xf,0x59,0x48, 0xf,0x59,0x4a, 0xf,0x59,0x4b,\n  0xf,0x59,0x4c, 0xf,0x59,0x4e, 0x7,0x36,0x75, 0x7,0x36,0x77,\n  0xf,0x59,0x49, 0x4,0x55,0x68, 0x7,0x36,0x74, 0x7,0x3e,0x76,\n  0x4,0x5a,0x6b, 0x4,0x5a,0x69, 0x4,0x5a,0x6a, 0x7,0x3e,0x78,\n  0x7,0x3e,0x77, 0xf,0x5e,0x30, 0xf,0x5e,0x31, 0xf,0x5e,0x2c,\n  0xf,0x5e,0x2e, 0xf,0x5e,0x2f, 0x7,0x3e,0x75, 0x5,0x61,0x31,\n  0x4,0x5a,0x6c, 0x5,0x61,0x2f, 0x5,0x61,0x30, 0x5,0x61,0x32,\n  0x5,0x67,0x4a, 0x5,0x67,0x4e, 0x4,0x63,0x2e, 0x5,0x67,0x4d,\n  0x5,0x67,0x4f, 0xf,0x61,0x7e, 0xf,0x62,0x21, 0x7,0x47,0x6f,\n  0x5,0x67,0x4c, 0x5,0x67,0x4b, 0x5,0x69,0x7c, 0x7,0x52,0x75,\n  0x7,0x4d,0x3c, 0xf,0x64,0x7a, 0x5,0x6b,0x6b, 0x7,0x4d,0x3b,\n  0x7,0x4d,0x68, 0x4,0x66,0x2f, 0x4,0x66,0x2e, 0x5,0x6f,0x68,\n  0x7,0x57,0x4e, 0x5,0x6b,0x6c, 0xf,0x67,0x3f, 0xf,0x67,0x7e,\n  0x4,0x66,0x2d, 0x7,0x57,0x4d, 0xf,0x69,0x38, 0xf,0x69,0x3a,\n  0xf,0x69,0x39, 0x5,0x73,0x31, 0x4,0x6a,0x40, 0x7,0x5b,0x45,\n  0xf,0x6a,0x4b, 0xf,0x6b,0x41, 0x5,0x75,0x62, 0x4,0x6d,0x52,\n  0xf,0x6c,0x49, 0x6,0x21,0x4d, 0x4,0x21,0x5c, 0x4,0x22,0x32,\n  0x6,0x23,0x53, 0x6,0x23,0x54, 0x6,0x25,0x75, 0x6,0x25,0x77,\n  0x6,0x25,0x78, 0x5,0x23,0x35, 0x6,0x25,0x76, 0x6,0x29,0x51,\n  0x6,0x29,0x50, 0x6,0x29,0x4f, 0x6,0x29,0x53, 0xf,0x25,0x53,\n  0x6,0x29,0x52, 0xf,0x25,0x52, 0x6,0x2e,0x67, 0x6,0x2e,0x68,\n  0x5,0x2b,0x76, 0xf,0x2d,0x7d, 0xf,0x2d,0x7e, 0xf,0x2e,0x21,\n  0x6,0x35,0x3c, 0xf,0x33,0x28, 0x5,0x31,0x24, 0x5,0x31,0x25,\n  0xf,0x33,0x29, 0xf,0x33,0x2a, 0x6,0x46,0x59, 0xf,0x39,0x40,\n  0xf,0x39,0x41, 0xf,0x39,0x42, 0x5,0x36,0x58, 0xf,0x39,0x43,\n  0xf,0x40,0x47, 0x6,0x50,0x63, 0xf,0x40,0x48, 0xf,0x46,0x59,\n  0xf,0x46,0x5a, 0x5,0x44,0x59, 0x7,0x21,0x34, 0x7,0x21,0x32,\n  0x5,0x4b,0x7b, 0xf,0x4d,0x63, 0xf,0x4d,0x64, 0x5,0x4b,0x7a,\n  0x7,0x21,0x33, 0x5,0x53,0x5c, 0x7,0x2c,0x41, 0xf,0x53,0x4b,\n  0xf,0x53,0x4c, 0xf,0x53,0x4d, 0xf,0x53,0x4e, 0x5,0x5a,0x71,\n  0xf,0x59,0x4f, 0xf,0x59,0x50, 0xf,0x59,0x51, 0x7,0x3e,0x79,\n  0x5,0x61,0x33, 0xf,0x5e,0x32, 0x7,0x46,0x29, 0x5,0x67,0x50,\n  0xf,0x64,0x7b, 0x5,0x67,0x51, 0x5,0x6b,0x6d, 0xf,0x67,0x41,\n  0xf,0x69,0x3b, 0xf,0x6a,0x4c, 0x5,0x77,0x53, 0xf,0x6b,0x42,\n  0x6,0x21,0x36, 0x5,0x21,0x36, 0x5,0x21,0x35, 0x6,0x22,0x37,\n  0x6,0x23,0x56, 0x6,0x23,0x55, 0x5,0x23,0x36, 0x6,0x25,0x79,\n  0x5,0x23,0x38, 0x5,0x28,0x25, 0x5,0x28,0x26, 0x4,0x2b,0x6a,\n  0x6,0x35,0x3d, 0xf,0x2e,0x22, 0xf,0x2e,0x23, 0x6,0x3d,0x3a,\n  0x6,0x46,0x5a, 0x6,0x50,0x64, 0x5,0x3d,0x63, 0x4,0x3c,0x31,\n  0x6,0x5a,0x78, 0x5,0x5a,0x72, 0x6,0x21,0x37, 0x6,0x21,0x4e,\n  0x5,0x21,0x37, 0x6,0x21,0x41, 0x6,0x21,0x59, 0x5,0x21,0x50,\n  0x6,0x23,0x3b, 0x4,0x22,0x35, 0x6,0x23,0x57, 0x6,0x25,0x7c,\n  0x6,0x25,0x7e, 0x5,0x23,0x39, 0xf,0x23,0x2d, 0x6,0x25,0x7a,\n  0x6,0x29,0x54, 0x6,0x2e,0x6b, 0x6,0x2e,0x69, 0x5,0x28,0x27,\n  0x6,0x2e,0x6a, 0x6,0x2e,0x4f, 0x6,0x30,0x7b, 0x6,0x35,0x40,\n  0x6,0x35,0x3f, 0x6,0x35,0x41, 0x6,0x35,0x3e, 0x6,0x3d,0x3b,\n  0x6,0x46,0x5d, 0x5,0x3d,0x64, 0xf,0x39,0x44, 0xf,0x39,0x45,\n  0x6,0x46,0x5b, 0x6,0x46,0x5c, 0x5,0x3d,0x65, 0x6,0x50,0x65,\n  0xf,0x40,0x49, 0xf,0x40,0x4a, 0x4,0x42,0x3a, 0x6,0x5a,0x79,\n  0xf,0x54,0x46, 0xf,0x53,0x4f, 0xf,0x53,0x50, 0x5,0x61,0x34,\n  0xf,0x5e,0x33, 0x7,0x46,0x2a, 0x7,0x46,0x2b, 0x4,0x21,0x2d,\n  0x6,0x21,0x4f, 0x6,0x21,0x51, 0x6,0x22,0x39, 0x4,0x21,0x5d,\n  0x6,0x22,0x38, 0x5,0x21,0x52, 0xf,0x21,0x46, 0x6,0x22,0x3a,\n  0x5,0x21,0x51, 0x6,0x23,0x5a, 0x6,0x23,0x58, 0x6,0x25,0x47,\n  0x6,0x26,0x23, 0x6,0x26,0x21, 0x6,0x26,0x22, 0x5,0x23,0x3a,\n  0x6,0x28,0x7a, 0x5,0x25,0x2c, 0x6,0x29,0x55, 0x6,0x29,0x56,\n  0x6,0x2e,0x6c, 0x6,0x35,0x42, 0x6,0x35,0x43, 0x5,0x2b,0x77,\n  0x5,0x2b,0x78, 0x6,0x3d,0x3d, 0x6,0x46,0x5f, 0x3,0x39,0x77,\n  0x6,0x46,0x5e, 0x4,0x3c,0x33, 0x5,0x3d,0x66, 0x6,0x5a,0x7b,\n  0x6,0x5a,0x7a, 0x7,0x21,0x35, 0x5,0x53,0x5d, 0x7,0x2c,0x42,\n  0xf,0x55,0x76, 0x4,0x5a,0x6d, 0xf,0x67,0x42, 0x7,0x57,0x4f,\n  0x5,0x21,0x38, 0x6,0x22,0x3b, 0xf,0x21,0x48, 0xf,0x21,0x49,\n  0x6,0x23,0x5b, 0x4,0x22,0x37, 0x5,0x22,0x29, 0xf,0x21,0x7b,\n  0xf,0x23,0x2e, 0xf,0x23,0x2f, 0x5,0x25,0x2d, 0xf,0x25,0x55,\n  0x6,0x2e,0x6d, 0x6,0x3d,0x3e, 0xf,0x2e,0x25, 0xf,0x2e,0x26,\n  0xf,0x2e,0x27, 0xf,0x2e,0x28, 0xf,0x2e,0x29, 0x5,0x31,0x27,\n  0x6,0x46,0x60, 0xf,0x39,0x47, 0xf,0x39,0x48, 0x6,0x46,0x61,\n  0xf,0x3a,0x5d, 0x6,0x50,0x66, 0x6,0x5a,0x7c, 0xf,0x46,0x5b,\n  0x5,0x4e,0x77, 0x7,0x2c,0x43, 0xf,0x59,0x52, 0xf,0x53,0x51,\n  0x7,0x3e,0x7a, 0x7,0x46,0x2c, 0x7,0x4d,0x3f, 0x5,0x6f,0x69,\n  0x5,0x75,0x63, 0xf,0x21,0x4a, 0x6,0x23,0x5c, 0xf,0x21,0x7d,\n  0xf,0x21,0x7e, 0x4,0x22,0x38, 0x5,0x23,0x3b, 0x6,0x26,0x24,\n  0x4,0x23,0x3c, 0xf,0x23,0x30, 0xf,0x23,0x31, 0xf,0x23,0x32,\n  0xf,0x23,0x33, 0xf,0x23,0x24, 0xf,0x22,0x7e, 0x4,0x25,0x41,\n  0x4,0x25,0x42, 0x6,0x29,0x58, 0x6,0x29,0x59, 0x5,0x25,0x2f,\n  0xf,0x25,0x57, 0x5,0x28,0x29, 0x4,0x28,0x41, 0x4,0x28,0x42,\n  0x5,0x28,0x2c, 0x5,0x28,0x28, 0x5,0x28,0x2a, 0x6,0x2e,0x6f,\n  0xf,0x29,0x3a, 0xf,0x29,0x3c, 0xf,0x29,0x3d, 0xf,0x29,0x3e,\n  0xf,0x29,0x3f, 0x6,0x2e,0x6e, 0x5,0x2b,0x7a, 0x4,0x2b,0x6b,\n  0x5,0x2b,0x79, 0x5,0x28,0x2b, 0x6,0x35,0x45, 0x5,0x2b,0x7b,\n  0xf,0x2e,0x2a, 0xf,0x2e,0x2b, 0x6,0x35,0x46, 0x5,0x31,0x28,\n  0x6,0x3d,0x3f, 0x6,0x3d,0x40, 0x4,0x30,0x4e, 0xf,0x33,0x2b,\n  0xf,0x33,0x2c, 0xf,0x33,0x2d, 0xf,0x33,0x2f, 0xf,0x33,0x30,\n  0x6,0x46,0x62, 0x5,0x36,0x5c, 0x5,0x36,0x5a, 0x5,0x36,0x5b,\n  0x5,0x36,0x59, 0x4,0x36,0x3e, 0xf,0x33,0x2e, 0x5,0x3d,0x6c,\n  0x5,0x3d,0x67, 0x5,0x3d,0x69, 0x5,0x3d,0x6a, 0x5,0x3d,0x68,\n  0x5,0x3d,0x6b, 0x6,0x50,0x67, 0x6,0x5a,0x7d, 0x5,0x4c,0x21,\n  0x5,0x44,0x5a, 0x7,0x21,0x37, 0xf,0x46,0x5d, 0xf,0x46,0x5e,\n  0x5,0x4b,0x7e, 0x5,0x4b,0x7d, 0x5,0x4b,0x7c, 0x7,0x21,0x36,\n  0xf,0x4d,0x67, 0xf,0x53,0x53, 0x7,0x2c,0x45, 0xf,0x4d,0x66,\n  0xf,0x53,0x52, 0x4,0x55,0x6a, 0x7,0x2c,0x46, 0x5,0x5a,0x73,\n  0xf,0x59,0x53, 0xf,0x59,0x54, 0x5,0x61,0x36, 0x5,0x61,0x35,\n  0x5,0x61,0x37, 0xf,0x5e,0x34, 0x7,0x3e,0x7b, 0x5,0x67,0x52,\n  0x5,0x67,0x53, 0x7,0x52,0x76, 0x5,0x73,0x32, 0x4,0x21,0x29,\n  0x6,0x21,0x52, 0xf,0x21,0x2a, 0xf,0x21,0x2b, 0xf,0x21,0x2c,\n  0xf,0x21,0x2e, 0x6,0x21,0x5c, 0xf,0x21,0x2d, 0x5,0x21,0x53,\n  0x6,0x22,0x3d, 0x4,0x21,0x5f, 0x6,0x23,0x5e, 0x6,0x23,0x5d,\n  0x6,0x23,0x5f, 0x6,0x23,0x60, 0xf,0x21,0x4b, 0x6,0x26,0x27,\n  0x6,0x26,0x25, 0x6,0x26,0x26, 0xf,0x23,0x34, 0xf,0x23,0x35,\n  0x4,0x25,0x46, 0x6,0x29,0x5a, 0x4,0x25,0x44, 0x6,0x29,0x5b,\n  0x6,0x29,0x5c, 0x6,0x29,0x5d, 0xf,0x25,0x58, 0xf,0x25,0x59,\n  0x6,0x2e,0x72, 0x6,0x2e,0x70, 0x6,0x2e,0x71, 0x6,0x35,0x47,\n  0xf,0x2e,0x2c, 0x6,0x37,0x27, 0x6,0x3d,0x42, 0x6,0x3d,0x43,\n  0x6,0x3d,0x41, 0xf,0x33,0x31, 0xf,0x33,0x32, 0xf,0x33,0x33,\n  0x6,0x46,0x63, 0x6,0x46,0x66, 0xf,0x39,0x49, 0x6,0x46,0x64,\n  0xf,0x39,0x4a, 0xf,0x46,0x5f, 0xf,0x46,0x60, 0xf,0x46,0x61,\n  0xf,0x4d,0x68, 0x7,0x2c,0x47, 0xf,0x53,0x54, 0xf,0x53,0x55,\n  0xf,0x53,0x43, 0xf,0x59,0x55, 0xf,0x5e,0x35, 0xf,0x67,0x43,\n  0x4,0x21,0x2e, 0x5,0x21,0x39, 0x6,0x21,0x53, 0x6,0x21,0x54,\n  0x6,0x22,0x3f, 0x5,0x21,0x54, 0x6,0x22,0x3e, 0xf,0x21,0x4c,\n  0x6,0x23,0x65, 0x6,0x23,0x61, 0x6,0x23,0x62, 0x6,0x23,0x63,\n  0xf,0x22,0x21, 0x5,0x22,0x2a, 0x6,0x26,0x28, 0xf,0x23,0x36,\n  0x6,0x29,0x60, 0x6,0x29,0x5f, 0x6,0x2e,0x73, 0x6,0x2e,0x74,\n  0x6,0x34,0x7a, 0x6,0x35,0x48, 0x6,0x3d,0x44, 0x6,0x3d,0x45,\n  0x5,0x36,0x5d, 0x6,0x5a,0x7e, 0xf,0x46,0x62, 0x7,0x21,0x70,\n  0x7,0x36,0x7b, 0x5,0x5a,0x76, 0x5,0x67,0x54, 0x7,0x4e,0x3e,\n  0x6,0x21,0x39, 0x4,0x21,0x40, 0x6,0x21,0x55, 0x5,0x21,0x3a,\n  0x5,0x21,0x3b, 0x6,0x21,0x56, 0x4,0x21,0x41, 0xf,0x21,0x2f,\n  0x6,0x21,0x57, 0x5,0x21,0x55, 0x5,0x21,0x56, 0x4,0x21,0x62,\n  0x6,0x22,0x44, 0x5,0x21,0x57, 0x6,0x22,0x43, 0x6,0x22,0x40,\n  0x6,0x22,0x45, 0x4,0x22,0x3a, 0x6,0x23,0x6a, 0x5,0x22,0x2e,\n  0x5,0x22,0x2c, 0x5,0x22,0x2b, 0x4,0x22,0x3b, 0x4,0x22,0x39,\n  0x6,0x23,0x68, 0x6,0x23,0x67, 0x5,0x22,0x2f, 0x6,0x23,0x6b,\n  0x6,0x23,0x69, 0x5,0x22,0x2d, 0x4,0x22,0x3d, 0xf,0x22,0x22,\n  0xf,0x22,0x23, 0x4,0x22,0x3e, 0x6,0x23,0x66, 0x4,0x23,0x41,\n  0x6,0x26,0x2b, 0x4,0x23,0x43, 0x5,0x23,0x3d, 0x4,0x23,0x42,\n  0x5,0x23,0x46, 0x5,0x23,0x45, 0x5,0x23,0x43, 0x5,0x23,0x40,\n  0x6,0x26,0x29, 0x5,0x23,0x3f, 0x5,0x23,0x42, 0x5,0x23,0x41,\n  0x6,0x26,0x2a, 0x6,0x26,0x2c, 0x5,0x23,0x3e, 0x5,0x23,0x44,\n  0x6,0x29,0x69, 0x5,0x25,0x33, 0x5,0x25,0x35, 0x4,0x25,0x49,\n  0x4,0x25,0x4b, 0x3,0x27,0x5c, 0x6,0x29,0x66, 0x4,0x25,0x4d,\n  0x6,0x29,0x64, 0x6,0x29,0x65, 0x6,0x29,0x6c, 0x6,0x2e,0x75,\n  0x6,0x29,0x6a, 0x5,0x25,0x30, 0x5,0x25,0x36, 0x6,0x29,0x6b,\n  0x5,0x25,0x32, 0x6,0x29,0x67, 0x5,0x25,0x34, 0xf,0x25,0x5a,\n  0xf,0x25,0x5b, 0xf,0x25,0x5c, 0xf,0x25,0x5d, 0x6,0x29,0x68,\n  0x6,0x29,0x62, 0x6,0x29,0x61, 0x5,0x25,0x31, 0x6,0x29,0x57,\n  0x4,0x28,0x47, 0x5,0x28,0x2d, 0x4,0x28,0x45, 0x6,0x2f,0x24,\n  0x6,0x2e,0x7b, 0x6,0x2f,0x22, 0x4,0x28,0x48, 0x6,0x2f,0x21,\n  0x4,0x28,0x44, 0x4,0x28,0x46, 0x6,0x2e,0x78, 0x6,0x2e,0x7e,\n  0x6,0x2f,0x23, 0x6,0x2e,0x7a, 0x6,0x2e,0x7d, 0x6,0x2e,0x7c,\n  0xf,0x29,0x40, 0xf,0x29,0x41, 0xf,0x29,0x42, 0x6,0x2e,0x79,\n  0x5,0x28,0x2e, 0x6,0x2e,0x77, 0x6,0x35,0x49, 0x4,0x2b,0x70,\n  0x4,0x2b,0x6d, 0x5,0x2c,0x25, 0x5,0x2c,0x23, 0x4,0x2b,0x6f,\n  0x4,0x2b,0x73, 0x6,0x35,0x4e, 0x6,0x35,0x52, 0x5,0x2c,0x22,\n  0x6,0x35,0x53, 0x4,0x2b,0x6c, 0x5,0x2c,0x26, 0x6,0x35,0x51,\n  0x4,0x2b,0x71, 0x6,0x35,0x50, 0x6,0x35,0x4f, 0x6,0x35,0x4c,\n  0x6,0x35,0x4b, 0x4,0x2b,0x72, 0x5,0x2c,0x24, 0x6,0x35,0x4d,\n  0xf,0x2e,0x33, 0x6,0x35,0x54, 0xf,0x2e,0x2e, 0xf,0x2e,0x2f,\n  0xf,0x2e,0x30, 0xf,0x2e,0x32, 0xf,0x2e,0x31, 0x6,0x35,0x4a,\n  0x5,0x2c,0x27, 0x5,0x2b,0x7d, 0x5,0x2c,0x21, 0x5,0x2b,0x7e,\n  0x4,0x30,0x50, 0x5,0x31,0x2b, 0x4,0x30,0x51, 0x5,0x31,0x2a,\n  0x6,0x3d,0x46, 0x4,0x30,0x56, 0x4,0x36,0x49, 0x4,0x30,0x55,\n  0x6,0x3d,0x49, 0x6,0x3d,0x47, 0x5,0x36,0x5e, 0x4,0x30,0x4f,\n  0x5,0x2c,0x28, 0xf,0x33,0x34, 0xf,0x33,0x35, 0xf,0x33,0x37,\n  0x6,0x3d,0x48, 0x6,0x3d,0x4a, 0x6,0x3d,0x4b, 0x4,0x36,0x43,\n  0x5,0x36,0x5f, 0x6,0x46,0x6d, 0x6,0x46,0x69, 0x4,0x36,0x46,\n  0x4,0x36,0x47, 0x5,0x36,0x60, 0x5,0x36,0x64, 0x4,0x36,0x4a,\n  0x4,0x36,0x44, 0x4,0x36,0x41, 0x4,0x36,0x40, 0x6,0x46,0x6b,\n  0x6,0x46,0x68, 0x6,0x46,0x6c, 0x5,0x36,0x61, 0x5,0x36,0x62,\n  0x6,0x46,0x6a, 0xf,0x39,0x4b, 0xf,0x39,0x4c, 0xf,0x39,0x4d,\n  0xf,0x39,0x4e, 0x4,0x36,0x48, 0x6,0x4c,0x46, 0x6,0x46,0x6e,\n  0x5,0x36,0x65, 0x4,0x3c,0x39, 0x6,0x50,0x6f, 0x5,0x3d,0x73,\n  0x6,0x50,0x6d, 0x4,0x3c,0x35, 0x5,0x3d,0x74, 0x6,0x50,0x6e,\n  0x5,0x3d,0x6d, 0x4,0x3c,0x37, 0x4,0x3c,0x36, 0x5,0x3d,0x6e,\n  0x4,0x3c,0x3a, 0x5,0x3d,0x6f, 0x6,0x50,0x6b, 0xf,0x40,0x4b,\n  0x6,0x50,0x6a, 0x6,0x50,0x68, 0x6,0x50,0x70, 0x6,0x50,0x69,\n  0x5,0x3d,0x72, 0x5,0x3d,0x71, 0xf,0x40,0x4c, 0x5,0x44,0x5b,\n  0x4,0x42,0x3b, 0x6,0x5b,0x24, 0x5,0x44,0x61, 0x6,0x5b,0x22,\n  0x6,0x5b,0x21, 0x4,0x3c,0x38, 0x4,0x42,0x40, 0x5,0x44,0x62,\n  0x5,0x44,0x5c, 0x5,0x44,0x5f, 0x4,0x42,0x3d, 0x4,0x42,0x44,\n  0x6,0x5b,0x2b, 0x6,0x5b,0x29, 0x6,0x5b,0x28, 0x5,0x44,0x5e,\n  0x5,0x4c,0x22, 0x6,0x5b,0x26, 0x5,0x44,0x5d, 0x6,0x5b,0x2a,\n  0x5,0x44,0x60, 0x6,0x5b,0x25, 0xf,0x46,0x63, 0xf,0x46,0x64,\n  0xf,0x46,0x65, 0x6,0x5b,0x23, 0x6,0x5b,0x27, 0x5,0x4c,0x23,\n  0x5,0x4c,0x27, 0x4,0x49,0x24, 0x5,0x4c,0x24, 0x5,0x4c,0x26,\n  0x7,0x21,0x3c, 0x7,0x21,0x3d, 0x7,0x21,0x3a, 0x7,0x21,0x3e,\n  0x7,0x21,0x3b, 0x5,0x4c,0x25, 0x7,0x21,0x38, 0x7,0x22,0x5a,\n  0x7,0x21,0x39, 0x4,0x4f,0x60, 0x7,0x2c,0x49, 0x5,0x5a,0x77,\n  0x7,0x2c,0x4a, 0x7,0x2c,0x4e, 0x7,0x2c,0x4d, 0x7,0x2c,0x4c,\n  0x5,0x53,0x5f, 0x5,0x53,0x61, 0x5,0x53,0x60, 0x5,0x53,0x5e,\n  0x7,0x2c,0x48, 0x7,0x2c,0x4b, 0x7,0x21,0x3f, 0xf,0x53,0x56,\n  0x5,0x58,0x51, 0x5,0x5a,0x7a, 0x4,0x55,0x6b, 0x5,0x5a,0x79,\n  0x5,0x5a,0x78, 0x7,0x36,0x7c, 0xf,0x59,0x56, 0x4,0x55,0x6e,\n  0x7,0x3e,0x7c, 0x5,0x61,0x38, 0x5,0x61,0x39, 0x7,0x36,0x7d,\n  0xf,0x5e,0x36, 0x5,0x61,0x3a, 0x7,0x46,0x2f, 0x7,0x46,0x2e,\n  0x7,0x46,0x2d, 0x7,0x4d,0x40, 0x7,0x4d,0x41, 0x5,0x6f,0x6a,\n  0x7,0x52,0x77, 0xf,0x67,0x44, 0x5,0x75,0x64, 0x4,0x6b,0x65,\n  0x7,0x62,0x2d, 0x7,0x62,0x2c, 0x6,0x21,0x3a, 0x5,0x21,0x3c,\n  0x6,0x21,0x58, 0x4,0x21,0x63, 0x5,0x21,0x59, 0x5,0x21,0x58,\n  0x5,0x22,0x31, 0x5,0x22,0x32, 0xf,0x22,0x25, 0xf,0x22,0x26,\n  0xf,0x22,0x27, 0xf,0x22,0x28, 0x5,0x22,0x33, 0x6,0x26,0x2e,\n  0x4,0x23,0x45, 0x5,0x23,0x47, 0xf,0x23,0x38, 0xf,0x23,0x3a,\n  0xf,0x23,0x3b, 0x6,0x26,0x2d, 0x4,0x23,0x49, 0x5,0x25,0x3d,\n  0x5,0x25,0x39, 0x6,0x29,0x6d, 0x5,0x25,0x3c, 0x6,0x29,0x6e,\n  0xf,0x25,0x60, 0xf,0x25,0x61, 0xf,0x25,0x62, 0xf,0x25,0x63,\n  0x5,0x28,0x30, 0x4,0x28,0x4a, 0x6,0x2f,0x26, 0x5,0x28,0x31,\n  0x5,0x28,0x2f, 0x6,0x2f,0x28, 0xf,0x29,0x43, 0xf,0x29,0x44,\n  0xf,0x29,0x45, 0x6,0x35,0x55, 0x6,0x35,0x59, 0x4,0x2b,0x74,\n  0x5,0x2c,0x2d, 0x5,0x2c,0x29, 0x5,0x2c,0x2b, 0x5,0x2c,0x2c,\n  0x5,0x2c,0x2a, 0xf,0x2e,0x34, 0xf,0x2e,0x35, 0x6,0x35,0x56,\n  0x6,0x35,0x57, 0x5,0x31,0x2d, 0x6,0x3d,0x4e, 0x6,0x3d,0x4c,\n  0x6,0x3d,0x4f, 0x6,0x3d,0x50, 0x6,0x3d,0x51, 0xf,0x33,0x38,\n  0xf,0x33,0x39, 0x6,0x3d,0x4d, 0x5,0x36,0x69, 0x5,0x36,0x66,\n  0x5,0x36,0x68, 0x5,0x36,0x6b, 0x5,0x36,0x67, 0xf,0x39,0x4f,\n  0xf,0x39,0x50, 0x6,0x46,0x6f, 0x6,0x46,0x70, 0x6,0x46,0x71,\n  0x5,0x3d,0x76, 0x5,0x3d,0x75, 0x4,0x3c,0x3b, 0x6,0x50,0x72,\n  0x6,0x50,0x71, 0xf,0x40,0x4d, 0x5,0x3d,0x77, 0x4,0x42,0x46,\n  0x5,0x44,0x66, 0x5,0x44,0x64, 0x5,0x44,0x65, 0x5,0x44,0x69,\n  0x4,0x42,0x45, 0x5,0x44,0x68, 0x6,0x5b,0x2e, 0xf,0x46,0x66,\n  0x6,0x5b,0x2c, 0x6,0x5b,0x2d, 0x5,0x4c,0x2b, 0x5,0x4c,0x28,\n  0x4,0x49,0x26, 0x5,0x4c,0x29, 0x5,0x4c,0x2a, 0x7,0x2c,0x4f,\n  0x5,0x5a,0x7c, 0xf,0x53,0x57, 0x5,0x5a,0x7b, 0x5,0x5a,0x7d,\n  0x7,0x36,0x7e, 0x7,0x37,0x22, 0x7,0x37,0x21, 0x5,0x61,0x3c,\n  0x7,0x3e,0x7e, 0x7,0x3f,0x21, 0x5,0x67,0x56, 0x5,0x67,0x55,\n  0x7,0x4d,0x42, 0x5,0x6f,0x6b, 0x7,0x5b,0x46, 0x5,0x75,0x65,\n  0x4,0x6c,0x6b, 0x7,0x66,0x3b, 0x5,0x21,0x3d, 0x6,0x22,0x47,\n  0x6,0x22,0x48, 0x5,0x22,0x35, 0x5,0x22,0x34, 0x5,0x22,0x36,\n  0xf,0x22,0x2a, 0x6,0x26,0x2f, 0x5,0x23,0x48, 0x5,0x23,0x49,\n  0x4,0x25,0x52, 0x6,0x29,0x71, 0x6,0x29,0x70, 0xf,0x25,0x64,\n  0xf,0x25,0x65, 0x6,0x2f,0x2a, 0x4,0x28,0x4c, 0x6,0x2f,0x2b,\n  0x6,0x2f,0x2c, 0xf,0x29,0x46, 0x6,0x2f,0x29, 0x4,0x2b,0x76,\n  0x6,0x35,0x5c, 0x6,0x35,0x5b, 0x6,0x35,0x5e, 0x6,0x35,0x5f,\n  0x6,0x35,0x5a, 0x6,0x35,0x5d, 0x5,0x2c,0x2f, 0x4,0x30,0x5d,\n  0x6,0x3d,0x52, 0x5,0x2c,0x2e, 0x5,0x31,0x2e, 0x5,0x31,0x2f,\n  0x6,0x3d,0x53, 0x4,0x36,0x4e, 0xf,0x39,0x51, 0x6,0x50,0x73,\n  0x4,0x30,0x5b, 0x5,0x3d,0x79, 0xf,0x40,0x4e, 0xf,0x40,0x4f,\n  0x6,0x5b,0x2f, 0x4,0x42,0x47, 0x5,0x44,0x6a, 0x5,0x44,0x6b,\n  0xf,0x46,0x67, 0xf,0x4d,0x69, 0x4,0x4f,0x65, 0x7,0x2c,0x50,\n  0x7,0x2c,0x51, 0x7,0x37,0x23, 0x7,0x37,0x24, 0x5,0x5a,0x7e,\n  0x7,0x4d,0x43, 0x6,0x21,0x2a, 0x4,0x21,0x42, 0x6,0x22,0x4a,\n  0x6,0x26,0x30, 0x6,0x26,0x33, 0x5,0x23,0x4a, 0x6,0x26,0x31,\n  0x6,0x26,0x32, 0x4,0x28,0x4d, 0x6,0x2f,0x2f, 0x6,0x2f,0x31,\n  0x6,0x2f,0x2d, 0x6,0x2f,0x2e, 0x6,0x2f,0x30, 0x6,0x3d,0x54,\n  0x6,0x35,0x60, 0xf,0x2e,0x36, 0xf,0x2e,0x37, 0x6,0x35,0x24,\n  0x6,0x46,0x72, 0xf,0x39,0x52, 0x4,0x3c,0x3d, 0xf,0x46,0x68,\n  0x7,0x3f,0x22, 0x5,0x6d,0x32, 0x6,0x21,0x2b, 0xf,0x21,0x31,\n  0x5,0x22,0x37, 0x6,0x23,0x6e, 0x4,0x22,0x43, 0x6,0x23,0x6d,\n  0x6,0x26,0x34, 0x4,0x23,0x4a, 0x6,0x26,0x35, 0xf,0x23,0x3c,\n  0x6,0x29,0x73, 0x5,0x25,0x3e, 0x5,0x25,0x3f, 0x4,0x28,0x4f,\n  0x6,0x2f,0x34, 0x5,0x28,0x33, 0x6,0x2f,0x33, 0x5,0x28,0x32,\n  0x6,0x2f,0x32, 0x6,0x2f,0x37, 0x6,0x2f,0x35, 0xf,0x29,0x47,\n  0x5,0x2c,0x30, 0x6,0x35,0x62, 0x6,0x35,0x61, 0x5,0x2c,0x31,\n  0x6,0x3d,0x55, 0xf,0x33,0x3a, 0x4,0x36,0x4f, 0x6,0x50,0x75,\n  0x6,0x46,0x73, 0x6,0x35,0x63, 0x5,0x3d,0x7a, 0x4,0x42,0x48,\n  0x6,0x5b,0x31, 0x6,0x5b,0x30, 0x5,0x4c,0x2c, 0x5,0x4c,0x2d,\n  0x5,0x4c,0x2e, 0xf,0x4d,0x6a, 0x5,0x53,0x64, 0x7,0x37,0x25,\n  0xf,0x5e,0x37, 0x4,0x5f,0x4b, 0x7,0x3f,0x23, 0x7,0x4d,0x44,\n  0x7,0x60,0x69, 0x7,0x64,0x43, 0xf,0x21,0x32, 0x5,0x22,0x38,\n  0x6,0x23,0x6f, 0x5,0x23,0x4c, 0x6,0x26,0x37, 0xf,0x23,0x3d,\n  0xf,0x25,0x66, 0x6,0x2f,0x36, 0x5,0x28,0x34, 0x6,0x35,0x64,\n  0xf,0x46,0x69, 0x7,0x4d,0x45, 0x7,0x57,0x50, 0x6,0x21,0x5a,\n  0x5,0x21,0x5a, 0x5,0x21,0x5b, 0x6,0x22,0x4b, 0x6,0x23,0x70,\n  0x4,0x22,0x44, 0x4,0x22,0x45, 0x6,0x23,0x73, 0x6,0x23,0x72,\n  0x5,0x22,0x3a, 0x5,0x22,0x39, 0x6,0x23,0x74, 0x6,0x26,0x39,\n  0x5,0x23,0x4d, 0x6,0x26,0x3a, 0x6,0x23,0x75, 0x6,0x26,0x3b,\n  0xf,0x23,0x3e, 0x5,0x25,0x40, 0x6,0x29,0x74, 0x6,0x29,0x77,\n  0x6,0x29,0x78, 0x6,0x29,0x76, 0xf,0x25,0x67, 0xf,0x25,0x69,\n  0xf,0x25,0x6a, 0xf,0x25,0x6b, 0xf,0x25,0x68, 0x6,0x29,0x75,\n  0x6,0x35,0x65, 0x6,0x35,0x66, 0xf,0x2e,0x38, 0xf,0x2e,0x39,\n  0x4,0x30,0x63, 0x4,0x30,0x61, 0x4,0x30,0x62, 0xf,0x33,0x3b,\n  0xf,0x39,0x53, 0xf,0x39,0x54, 0x6,0x50,0x78, 0x6,0x50,0x77,\n  0x6,0x50,0x79, 0x6,0x50,0x7b, 0xf,0x40,0x50, 0xf,0x46,0x6a,\n  0xf,0x46,0x6b, 0x5,0x4c,0x2f, 0xf,0x4d,0x6b, 0xf,0x4d,0x6c,\n  0x7,0x21,0x40, 0x7,0x37,0x26, 0xf,0x5e,0x38, 0x7,0x46,0x30,\n  0x7,0x52,0x78, 0x7,0x60,0x6a, 0x7,0x62,0x2e, 0x6,0x22,0x4c,\n  0x6,0x23,0x77, 0x6,0x23,0x76, 0x6,0x23,0x78, 0x4,0x23,0x4c,\n  0x5,0x23,0x4f, 0x5,0x23,0x4e, 0x6,0x26,0x3c, 0x4,0x25,0x55,\n  0x4,0x25,0x54, 0x6,0x29,0x7c, 0x6,0x29,0x7b, 0x6,0x29,0x7d,\n  0x6,0x29,0x7a, 0x6,0x29,0x7e, 0x6,0x29,0x79, 0xf,0x25,0x6c,\n  0x6,0x2a,0x22, 0x4,0x28,0x52, 0x4,0x28,0x51, 0x5,0x28,0x37,\n  0xf,0x29,0x48, 0xf,0x29,0x49, 0xf,0x29,0x4a, 0xf,0x29,0x4b,\n  0x6,0x2f,0x39, 0x6,0x35,0x68, 0x4,0x2b,0x79, 0x5,0x2c,0x32,\n  0x6,0x35,0x67, 0x6,0x35,0x6a, 0x6,0x3c,0x7a, 0x6,0x35,0x69,\n  0x6,0x3d,0x57, 0x6,0x3d,0x56, 0x6,0x35,0x6b, 0x6,0x3d,0x58,\n  0x6,0x46,0x75, 0x6,0x46,0x76, 0x6,0x46,0x77, 0x5,0x37,0x3f,\n  0x6,0x50,0x7c, 0x5,0x44,0x6d, 0x6,0x5b,0x32, 0x7,0x21,0x41,\n  0xf,0x53,0x58, 0x7,0x63,0x4b, 0x5,0x21,0x3e, 0x4,0x21,0x43,\n  0xf,0x21,0x34, 0x6,0x21,0x5b, 0x4,0x22,0x46, 0x6,0x2a,0x24,\n  0x6,0x23,0x7a, 0x6,0x23,0x79, 0x4,0x23,0x4e, 0x6,0x2f,0x3b,\n  0x5,0x28,0x38, 0x6,0x2f,0x3a, 0x4,0x28,0x53, 0x6,0x35,0x6c,\n  0x6,0x2f,0x3c, 0x6,0x46,0x78, 0x5,0x2c,0x33, 0x5,0x3d,0x7b,\n  0x6,0x50,0x7d, 0x5,0x44,0x6e, 0x7,0x3f,0x24, 0x5,0x21,0x3f,\n  0x5,0x21,0x5c, 0x6,0x23,0x7b, 0x6,0x22,0x4f, 0x6,0x22,0x4d,\n  0x6,0x22,0x50, 0x5,0x21,0x5d, 0x4,0x22,0x47, 0x5,0x22,0x3b,\n  0x6,0x23,0x7c, 0x6,0x23,0x7d, 0x5,0x22,0x3f, 0x5,0x22,0x40,\n  0x5,0x22,0x3d, 0x5,0x22,0x3e, 0xf,0x22,0x2d, 0x6,0x26,0x3e,\n  0x5,0x23,0x50, 0x6,0x26,0x3d, 0x5,0x23,0x51, 0x6,0x25,0x5e,\n  0xf,0x23,0x3f, 0x6,0x2a,0x27, 0x6,0x2a,0x26, 0x6,0x2a,0x29,\n  0x6,0x2a,0x28, 0x5,0x25,0x41, 0x4,0x25,0x58, 0xf,0x25,0x6d,\n  0xf,0x25,0x6e, 0x6,0x2a,0x25, 0x5,0x28,0x39, 0x4,0x28,0x54,\n  0x6,0x2f,0x46, 0x6,0x2f,0x41, 0x6,0x2f,0x44, 0x6,0x2f,0x45,\n  0x6,0x2f,0x40, 0x6,0x2f,0x3e, 0x6,0x2f,0x42, 0x6,0x2f,0x43,\n  0xf,0x29,0x4d, 0xf,0x29,0x4e, 0x4,0x28,0x55, 0x6,0x2f,0x3f,\n  0x6,0x35,0x73, 0x6,0x35,0x74, 0x4,0x2b,0x7b, 0x5,0x2c,0x34,\n  0x4,0x2b,0x7c, 0x6,0x35,0x6f, 0x6,0x35,0x6d, 0x6,0x35,0x70,\n  0x6,0x35,0x72, 0x6,0x35,0x71, 0x6,0x35,0x6e, 0x5,0x2c,0x35,\n  0xf,0x2e,0x3a, 0xf,0x2e,0x3b, 0x6,0x3d,0x60, 0x6,0x3d,0x5b,\n  0x4,0x30,0x67, 0x6,0x3d,0x5f, 0x6,0x3d,0x5c, 0x6,0x3d,0x5d,\n  0xf,0x33,0x3d, 0x5,0x31,0x30, 0x6,0x3d,0x5e, 0x4,0x30,0x66,\n  0x4,0x36,0x52, 0x6,0x46,0x7c, 0x6,0x46,0x7a, 0x4,0x36,0x53,\n  0x6,0x46,0x7b, 0x6,0x46,0x79, 0x6,0x46,0x7d, 0xf,0x39,0x55,\n  0x6,0x46,0x7e, 0x5,0x3d,0x7c, 0x5,0x3d,0x7d, 0x6,0x51,0x24,\n  0x6,0x51,0x23, 0x6,0x50,0x7e, 0xf,0x40,0x51, 0x6,0x51,0x21,\n  0x4,0x3c,0x3f, 0x4,0x42,0x49, 0x6,0x5b,0x34, 0x6,0x5b,0x37,\n  0x6,0x5b,0x33, 0x6,0x5b,0x38, 0x5,0x44,0x6f, 0xf,0x46,0x6d,\n  0xf,0x46,0x6e, 0x6,0x5b,0x36, 0x6,0x5b,0x39, 0x6,0x5b,0x3b,\n  0x6,0x5b,0x3a, 0x6,0x5b,0x35, 0x7,0x21,0x43, 0x4,0x49,0x28,\n  0x5,0x4c,0x30, 0x7,0x21,0x44, 0x7,0x21,0x42, 0xf,0x4d,0x6d,\n  0x7,0x25,0x48, 0x5,0x53,0x65, 0x7,0x2c,0x53, 0x7,0x2c,0x52,\n  0xf,0x53,0x59, 0xf,0x53,0x5a, 0x7,0x3b,0x4d, 0xf,0x5e,0x39,\n  0xf,0x5e,0x3a, 0xf,0x5e,0x3b, 0xf,0x64,0x7c, 0x7,0x4e,0x27,\n  0x7,0x52,0x79, 0x5,0x77,0x54, 0x7,0x5e,0x50, 0x7,0x65,0x33,\n  0x7,0x66,0x33, 0x5,0x21,0x2e, 0x6,0x21,0x3c, 0x6,0x21,0x3d,\n  0x6,0x21,0x5d, 0x6,0x22,0x52, 0x6,0x22,0x51, 0x4,0x22,0x4a,\n  0x6,0x24,0x23, 0x6,0x24,0x21, 0xf,0x22,0x2e, 0x4,0x22,0x49,\n  0x6,0x24,0x22, 0x6,0x26,0x40, 0xf,0x23,0x40, 0x5,0x23,0x3c,\n  0x6,0x2a,0x2c, 0x6,0x2a,0x2b, 0x6,0x2a,0x2d, 0x6,0x2a,0x2e,\n  0x6,0x2f,0x47, 0x6,0x2f,0x48, 0x4,0x28,0x56, 0xf,0x29,0x4f,\n  0x6,0x35,0x76, 0x6,0x35,0x75, 0x6,0x36,0x49, 0x6,0x35,0x2e,\n  0x5,0x36,0x6c, 0x6,0x47,0x22, 0x6,0x47,0x24, 0x6,0x4d,0x62,\n  0xf,0x39,0x56, 0x6,0x47,0x23, 0x5,0x3e,0x21, 0x6,0x51,0x25,\n  0x5,0x3d,0x7e, 0xf,0x40,0x52, 0x6,0x5b,0x3c, 0xf,0x46,0x6f,\n  0x6,0x60,0x72, 0x7,0x21,0x45, 0x5,0x53,0x66, 0xf,0x59,0x57,\n  0x7,0x4b,0x6a, 0x6,0x21,0x60, 0x5,0x21,0x40, 0x6,0x21,0x5e,\n  0x5,0x21,0x42, 0x6,0x21,0x62, 0x6,0x21,0x5f, 0x6,0x22,0x55,\n  0x4,0x21,0x68, 0x5,0x21,0x5e, 0x6,0x22,0x56, 0x5,0x21,0x5f,\n  0x6,0x22,0x53, 0x6,0x22,0x54, 0x6,0x24,0x25, 0x4,0x22,0x4b,\n  0x6,0x24,0x24, 0x5,0x22,0x42, 0x6,0x24,0x26, 0x5,0x22,0x41,\n  0x6,0x24,0x27, 0x6,0x26,0x44, 0x6,0x26,0x42, 0x5,0x23,0x52,\n  0xf,0x23,0x41, 0xf,0x23,0x42, 0xf,0x23,0x43, 0xf,0x23,0x44,\n  0x4,0x23,0x50, 0x6,0x2a,0x31, 0x6,0x2a,0x2f, 0x6,0x2a,0x32,\n  0x6,0x2a,0x30, 0xf,0x25,0x6f, 0x6,0x2f,0x4d, 0x6,0x2f,0x4a,\n  0x6,0x2f,0x4c, 0x6,0x2f,0x4b, 0x6,0x2f,0x49, 0xf,0x29,0x51,\n  0xf,0x29,0x52, 0x6,0x32,0x72, 0x5,0x28,0x36, 0x6,0x35,0x7b,\n  0x5,0x2c,0x36, 0x6,0x35,0x7c, 0x6,0x35,0x79, 0x6,0x35,0x77,\n  0x6,0x35,0x7a, 0xf,0x2e,0x3c, 0xf,0x2e,0x3d, 0xf,0x2e,0x3e,\n  0xf,0x2e,0x3f, 0x6,0x3c,0x67, 0x6,0x3d,0x66, 0x6,0x3d,0x68,\n  0x5,0x31,0x32, 0x5,0x31,0x33, 0x6,0x3d,0x65, 0x6,0x3d,0x63,\n  0x6,0x3d,0x6b, 0x6,0x3d,0x64, 0x5,0x2c,0x37, 0x6,0x3d,0x62,\n  0x6,0x3d,0x69, 0x6,0x3d,0x6a, 0x6,0x3c,0x7c, 0x6,0x3d,0x67,\n  0x4,0x36,0x54, 0x5,0x36,0x6d, 0x6,0x47,0x27, 0x6,0x47,0x25,\n  0xf,0x33,0x3e, 0xf,0x39,0x57, 0xf,0x39,0x58, 0xf,0x39,0x59,\n  0xf,0x39,0x5a, 0x6,0x47,0x26, 0x4,0x3c,0x43, 0x4,0x3c,0x42,\n  0x6,0x51,0x27, 0x6,0x51,0x28, 0x6,0x51,0x26, 0x4,0x3c,0x41,\n  0x6,0x47,0x28, 0x6,0x51,0x5b, 0x6,0x51,0x29, 0x6,0x5f,0x21,\n  0x6,0x5b,0x3e, 0x6,0x5b,0x3d, 0x5,0x44,0x70, 0x6,0x53,0x7b,\n  0xf,0x4d,0x55, 0x5,0x4c,0x33, 0x5,0x4c,0x34, 0xf,0x46,0x70,\n  0x5,0x4c,0x32, 0x7,0x2c,0x55, 0xf,0x53,0x5b, 0x3,0x50,0x39,\n  0x5,0x54,0x2e, 0x7,0x2c,0x54, 0x7,0x37,0x29, 0x7,0x37,0x28,\n  0xf,0x59,0x58, 0x4,0x5a,0x6f, 0x7,0x46,0x32, 0x7,0x46,0x31,\n  0x4,0x66,0x31, 0xf,0x67,0x45, 0x7,0x57,0x51, 0x5,0x75,0x66,\n  0x7,0x5e,0x51, 0x7,0x5e,0x52, 0x5,0x21,0x43, 0x6,0x21,0x64,\n  0x4,0x21,0x47, 0x4,0x21,0x46, 0xf,0x21,0x36, 0x6,0x21,0x63,\n  0x5,0x21,0x61, 0x6,0x22,0x59, 0x6,0x22,0x58, 0x6,0x22,0x5e,\n  0x6,0x22,0x5a, 0x6,0x22,0x5d, 0x6,0x22,0x57, 0x6,0x22,0x42,\n  0xf,0x21,0x4e, 0x6,0x22,0x5c, 0x5,0x22,0x47, 0x6,0x24,0x2d,\n  0x5,0x22,0x45, 0x6,0x24,0x2e, 0x4,0x22,0x4d, 0x5,0x22,0x46,\n  0x4,0x22,0x50, 0x6,0x24,0x2c, 0x4,0x22,0x4f, 0x4,0x22,0x4e,\n  0x5,0x22,0x44, 0x6,0x24,0x28, 0xf,0x22,0x2f, 0xf,0x22,0x30,\n  0xf,0x22,0x32, 0xf,0x22,0x34, 0x6,0x24,0x2a, 0xf,0x22,0x31,\n  0xf,0x22,0x33, 0x5,0x22,0x43, 0x6,0x24,0x29, 0x6,0x24,0x2b,\n  0x4,0x23,0x56, 0x6,0x26,0x4f, 0x6,0x26,0x46, 0x6,0x26,0x4d,\n  0x6,0x26,0x4c, 0x5,0x23,0x56, 0x4,0x23,0x5a, 0x4,0x23,0x5d,\n  0x5,0x23,0x5b, 0x5,0x23,0x54, 0x6,0x26,0x48, 0x4,0x23,0x57,\n  0x4,0x23,0x52, 0x4,0x23,0x58, 0x5,0x23,0x58, 0x6,0x26,0x49,\n  0x5,0x23,0x59, 0x4,0x23,0x55, 0x5,0x23,0x55, 0x6,0x26,0x47,\n  0x5,0x23,0x5c, 0xf,0x23,0x45, 0xf,0x23,0x46, 0xf,0x23,0x47,\n  0xf,0x23,0x4a, 0xf,0x23,0x4b, 0xf,0x23,0x4c, 0xf,0x23,0x48,\n  0x6,0x26,0x4b, 0x6,0x26,0x4a, 0x6,0x26,0x50, 0x6,0x26,0x45,\n  0x5,0x23,0x53, 0x5,0x23,0x57, 0x5,0x23,0x5a, 0x4,0x25,0x5c,\n  0x4,0x25,0x5e, 0x6,0x2a,0x36, 0x5,0x25,0x4c, 0x5,0x25,0x44,\n  0x4,0x25,0x5b, 0x6,0x2a,0x34, 0x5,0x25,0x4d, 0x5,0x25,0x45,\n  0x5,0x25,0x47, 0x4,0x25,0x61, 0x5,0x25,0x50, 0x6,0x2a,0x33,\n  0x5,0x25,0x52, 0x5,0x28,0x47, 0x6,0x2a,0x3b, 0x5,0x25,0x48,\n  0x5,0x25,0x4b, 0x5,0x25,0x4a, 0x5,0x25,0x51, 0x5,0x25,0x49,\n  0x5,0x25,0x4e, 0x6,0x2a,0x3d, 0x5,0x25,0x4f, 0xf,0x25,0x70,\n  0xf,0x25,0x72, 0xf,0x25,0x73, 0xf,0x25,0x74, 0xf,0x25,0x75,\n  0xf,0x25,0x76, 0xf,0x25,0x77, 0xf,0x25,0x78, 0xf,0x25,0x79,\n  0xf,0x25,0x7a, 0xf,0x25,0x7d, 0xf,0x25,0x7e, 0xf,0x26,0x21,\n  0xf,0x26,0x22, 0xf,0x26,0x23, 0x5,0x25,0x46, 0x6,0x2a,0x35,\n  0x5,0x25,0x43, 0x6,0x2a,0x38, 0x6,0x2a,0x37, 0xf,0x25,0x7c,\n  0x6,0x2a,0x3a, 0x5,0x2c,0x38, 0x5,0x28,0x46, 0x5,0x28,0x52,\n  0x5,0x28,0x4d, 0x5,0x28,0x3c, 0x5,0x28,0x51, 0x6,0x2f,0x54,\n  0x6,0x2f,0x4e, 0x5,0x28,0x3f, 0x4,0x28,0x5b, 0x4,0x28,0x5a,\n  0x5,0x28,0x4f, 0x5,0x28,0x45, 0x5,0x28,0x4b, 0x5,0x28,0x4a,\n  0x5,0x28,0x4e, 0x5,0x28,0x48, 0x5,0x28,0x49, 0x5,0x28,0x3d,\n  0x5,0x28,0x41, 0x5,0x28,0x4c, 0x4,0x25,0x62, 0x6,0x2f,0x59,\n  0x6,0x2f,0x5a, 0x5,0x28,0x53, 0x6,0x2f,0x4f, 0x5,0x28,0x3a,\n  0x6,0x2f,0x57, 0x6,0x2f,0x56, 0x5,0x28,0x50, 0x6,0x2f,0x50,\n  0x6,0x2f,0x58, 0x6,0x2f,0x52, 0x5,0x28,0x40, 0x5,0x28,0x42,\n  0xf,0x2b,0x33, 0xf,0x29,0x53, 0xf,0x29,0x55, 0xf,0x29,0x56,\n  0xf,0x29,0x57, 0xf,0x29,0x58, 0xf,0x29,0x59, 0xf,0x29,0x5a,\n  0xf,0x29,0x5b, 0xf,0x29,0x5e, 0xf,0x29,0x5f, 0xf,0x29,0x60,\n  0xf,0x29,0x61, 0xf,0x29,0x62, 0xf,0x29,0x63, 0xf,0x29,0x64,\n  0xf,0x29,0x66, 0xf,0x29,0x67, 0x5,0x28,0x43, 0x5,0x28,0x44,\n  0x4,0x28,0x5d, 0xf,0x29,0x65, 0x6,0x2f,0x55, 0x6,0x2f,0x53,\n  0x4,0x28,0x58, 0x5,0x28,0x3b, 0x5,0x28,0x3e, 0x6,0x2f,0x51,\n  0x6,0x36,0x29, 0x4,0x2c,0x24, 0x4,0x2c,0x2b, 0x4,0x2c,0x2c,\n  0x4,0x2c,0x27, 0x6,0x36,0x22, 0x5,0x2c,0x4e, 0x5,0x2c,0x41,\n  0x5,0x2c,0x3f, 0x5,0x2c,0x4c, 0x5,0x2c,0x3d, 0x5,0x2c,0x46,\n  0x5,0x2c,0x56, 0x5,0x2c,0x49, 0x4,0x2c,0x2a, 0x5,0x2c,0x4d,\n  0x5,0x2c,0x54, 0x5,0x2c,0x52, 0x4,0x2c,0x22, 0x6,0x36,0x23,\n  0x6,0x36,0x24, 0x5,0x2c,0x51, 0x4,0x2c,0x23, 0x5,0x2c,0x40,\n  0x6,0x36,0x27, 0x6,0x36,0x28, 0x5,0x2c,0x57, 0x6,0x36,0x26,\n  0x5,0x2c,0x53, 0x5,0x2c,0x58, 0x5,0x2c,0x47, 0x5,0x2c,0x59,\n  0x5,0x2c,0x44, 0x5,0x2c,0x55, 0xf,0x2e,0x40, 0xf,0x2e,0x41,\n  0xf,0x2e,0x43, 0xf,0x2e,0x44, 0xf,0x2e,0x48, 0xf,0x2e,0x49,\n  0xf,0x2e,0x4b, 0xf,0x2e,0x4c, 0xf,0x2e,0x4d, 0xf,0x2e,0x4e,\n  0xf,0x2e,0x4f, 0xf,0x2e,0x50, 0xf,0x2e,0x51, 0xf,0x2e,0x52,\n  0xf,0x2e,0x53, 0xf,0x2e,0x54, 0x6,0x39,0x5e, 0x6,0x36,0x21,\n  0x5,0x2c,0x42, 0x5,0x2c,0x45, 0x5,0x2c,0x48, 0x6,0x36,0x25,\n  0x5,0x2c,0x50, 0x5,0x2c,0x4b, 0x5,0x2c,0x39, 0x5,0x2c,0x3a,\n  0x5,0x2c,0x3b, 0xf,0x2e,0x45, 0x5,0x2c,0x4a, 0x5,0x2c,0x4f,\n  0x5,0x2c,0x3e, 0x5,0x2c,0x3c, 0x5,0x2c,0x5a, 0x5,0x31,0x46,\n  0x4,0x30,0x69, 0x6,0x3d,0x77, 0x6,0x3d,0x74, 0x4,0x30,0x78,\n  0x6,0x3d,0x6f, 0x4,0x30,0x75, 0x5,0x31,0x51, 0x5,0x31,0x49,\n  0x5,0x31,0x4c, 0x4,0x30,0x6e, 0x4,0x30,0x79, 0x5,0x31,0x44,\n  0x6,0x3d,0x76, 0x5,0x31,0x36, 0x5,0x31,0x4a, 0x5,0x31,0x45,\n  0x5,0x31,0x4e, 0x5,0x31,0x34, 0x5,0x31,0x4d, 0x5,0x31,0x42,\n  0x5,0x31,0x3b, 0x6,0x3d,0x71, 0x6,0x3d,0x75, 0x6,0x3d,0x7d,\n  0x6,0x3d,0x7a, 0x6,0x3d,0x7e, 0x5,0x31,0x3a, 0x5,0x31,0x3c,\n  0x6,0x3d,0x6c, 0x5,0x31,0x38, 0x6,0x3d,0x72, 0x6,0x3d,0x7b,\n  0xf,0x33,0x3f, 0xf,0x33,0x40, 0xf,0x33,0x41, 0xf,0x33,0x42,\n  0xf,0x33,0x44, 0xf,0x33,0x45, 0xf,0x33,0x46, 0xf,0x33,0x47,\n  0xf,0x33,0x48, 0xf,0x33,0x49, 0xf,0x33,0x4c, 0xf,0x33,0x4d,\n  0x5,0x31,0x37, 0x6,0x3d,0x73, 0x5,0x31,0x39, 0x6,0x3d,0x6d,\n  0x5,0x31,0x41, 0x5,0x31,0x48, 0x6,0x3e,0x21, 0x5,0x31,0x52,\n  0x6,0x3d,0x70, 0x5,0x31,0x40, 0x5,0x31,0x35, 0x5,0x31,0x47,\n  0x5,0x31,0x3e, 0x5,0x31,0x43, 0x5,0x31,0x3d, 0x5,0x31,0x50,\n  0x6,0x3d,0x79, 0x3,0x34,0x60, 0x5,0x31,0x53, 0x5,0x31,0x4f,\n  0x6,0x3d,0x78, 0x6,0x3d,0x6e, 0x5,0x31,0x3f, 0x5,0x31,0x4b,\n  0x4,0x36,0x55, 0x4,0x36,0x61, 0x6,0x47,0x32, 0x5,0x37,0x24,\n  0x6,0x47,0x37, 0x6,0x47,0x3e, 0x5,0x36,0x77, 0x6,0x47,0x35,\n  0x5,0x36,0x7c, 0x4,0x36,0x56, 0x5,0x37,0x28, 0x5,0x36,0x6f,\n  0x5,0x36,0x71, 0x4,0x36,0x5a, 0x5,0x36,0x78, 0x4,0x36,0x57,\n  0x5,0x37,0x29, 0x5,0x36,0x7e, 0x4,0x36,0x62, 0x4,0x36,0x5b,\n  0x5,0x37,0x23, 0x5,0x37,0x27, 0x4,0x36,0x66, 0x5,0x37,0x30,\n  0x4,0x36,0x5d, 0x5,0x37,0x2c, 0x5,0x37,0x2e, 0x6,0x47,0x2e,\n  0x6,0x47,0x3c, 0x5,0x3e,0x22, 0x6,0x47,0x2b, 0x6,0x47,0x2f,\n  0x6,0x47,0x38, 0x5,0x37,0x22, 0x6,0x47,0x34, 0x6,0x47,0x3f,\n  0x6,0x47,0x3a, 0x4,0x36,0x64, 0x5,0x37,0x26, 0x5,0x36,0x73,\n  0xf,0x39,0x5b, 0xf,0x39,0x5d, 0xf,0x39,0x5e, 0xf,0x39,0x61,\n  0xf,0x39,0x62, 0xf,0x39,0x63, 0xf,0x39,0x64, 0xf,0x39,0x65,\n  0xf,0x39,0x66, 0xf,0x39,0x67, 0xf,0x39,0x68, 0xf,0x39,0x6a,\n  0xf,0x39,0x6d, 0xf,0x39,0x6e, 0xf,0x39,0x6f, 0xf,0x39,0x70,\n  0x5,0x36,0x74, 0x5,0x36,0x75, 0x5,0x36,0x7b, 0x5,0x37,0x25,\n  0x5,0x37,0x21, 0x6,0x47,0x3b, 0xf,0x39,0x6b, 0xf,0x39,0x5c,\n  0xf,0x39,0x5f, 0xf,0x39,0x69, 0xf,0x39,0x6c, 0x5,0x37,0x2b,\n  0x5,0x37,0x2f, 0x6,0x47,0x3d, 0x5,0x37,0x2d, 0x5,0x37,0x2a,\n  0x5,0x36,0x7d, 0x6,0x47,0x36, 0x6,0x51,0x39, 0x5,0x3e,0x23,\n  0x4,0x3c,0x49, 0x5,0x3e,0x27, 0x4,0x3c,0x4e, 0x5,0x36,0x72,\n  0x6,0x51,0x41, 0x4,0x3c,0x48, 0x4,0x3c,0x44, 0x6,0x5b,0x42,\n  0x5,0x3e,0x2d, 0x6,0x51,0x33, 0x6,0x51,0x35, 0x5,0x3e,0x2a,\n  0x5,0x3e,0x38, 0x6,0x51,0x3a, 0x6,0x51,0x30, 0x5,0x3e,0x2e,\n  0x5,0x3e,0x24, 0x5,0x3e,0x35, 0x5,0x3e,0x3f, 0x6,0x51,0x3f,\n  0x6,0x51,0x37, 0x5,0x3e,0x34, 0x5,0x3e,0x37, 0x4,0x3c,0x4d,\n  0x5,0x3e,0x3a, 0x4,0x3c,0x45, 0x5,0x3e,0x33, 0x5,0x3e,0x2c,\n  0x4,0x3c,0x4f, 0x5,0x3e,0x2f, 0x4,0x3c,0x51, 0x5,0x3e,0x31,\n  0x5,0x3e,0x32, 0x6,0x51,0x3b, 0x6,0x51,0x40, 0x6,0x51,0x2a,\n  0x6,0x51,0x3e, 0x6,0x51,0x3d, 0x5,0x3e,0x3b, 0x6,0x51,0x38,\n  0x5,0x3e,0x28, 0x5,0x3e,0x30, 0x5,0x3e,0x2b, 0x6,0x51,0x2c,\n  0x6,0x51,0x44, 0x6,0x51,0x2e, 0x6,0x51,0x2b, 0x6,0x51,0x2d,\n  0xf,0x47,0x26, 0x5,0x3e,0x3e, 0x6,0x51,0x31, 0xf,0x40,0x56,\n  0xf,0x40,0x57, 0xf,0x40,0x58, 0xf,0x40,0x59, 0xf,0x40,0x5a,\n  0xf,0x40,0x5b, 0xf,0x40,0x5c, 0xf,0x40,0x5d, 0xf,0x40,0x5e,\n  0xf,0x40,0x5f, 0xf,0x40,0x60, 0xf,0x40,0x61, 0xf,0x40,0x63,\n  0x6,0x51,0x2f, 0x6,0x51,0x34, 0x6,0x51,0x3c, 0xf,0x40,0x54,\n  0x6,0x51,0x42, 0x5,0x3e,0x3c, 0x5,0x3e,0x36, 0x5,0x3e,0x25,\n  0x5,0x3e,0x29, 0x5,0x3e,0x26, 0xf,0x40,0x64, 0x6,0x5b,0x46,\n  0x6,0x5b,0x40, 0x6,0x5b,0x4b, 0x4,0x42,0x4d, 0x6,0x5b,0x4f,\n  0x6,0x5b,0x45, 0x6,0x5b,0x51, 0x6,0x5b,0x50, 0x4,0x42,0x4e,\n  0x6,0x5b,0x4c, 0x5,0x44,0x73, 0x5,0x44,0x77, 0x5,0x44,0x75,\n  0x5,0x44,0x7c, 0x6,0x5b,0x43, 0x6,0x5b,0x47, 0x4,0x42,0x4c,\n  0x4,0x42,0x54, 0x5,0x44,0x7b, 0x4,0x42,0x50, 0x5,0x44,0x76,\n  0x6,0x5b,0x41, 0x5,0x44,0x71, 0x5,0x44,0x72, 0x5,0x44,0x79,\n  0x6,0x5b,0x52, 0x6,0x5b,0x3f, 0x6,0x5b,0x49, 0x6,0x5b,0x4a,\n  0x5,0x44,0x78, 0x6,0x5b,0x4d, 0xf,0x46,0x71, 0xf,0x46,0x72,\n  0xf,0x46,0x73, 0xf,0x46,0x74, 0xf,0x46,0x76, 0xf,0x46,0x77,\n  0xf,0x46,0x78, 0xf,0x46,0x79, 0xf,0x46,0x7a, 0xf,0x46,0x7b,\n  0xf,0x46,0x7c, 0xf,0x46,0x7e, 0xf,0x47,0x21, 0xf,0x47,0x22,\n  0xf,0x47,0x23, 0xf,0x47,0x27, 0xf,0x47,0x28, 0xf,0x47,0x29,\n  0xf,0x47,0x2a, 0xf,0x47,0x2b, 0xf,0x47,0x2c, 0xf,0x47,0x2d,\n  0xf,0x47,0x24, 0x6,0x5b,0x48, 0xf,0x46,0x75, 0x5,0x44,0x74,\n  0x5,0x44,0x7a, 0x6,0x5b,0x4e, 0x5,0x45,0x21, 0xf,0x46,0x7d,\n  0x6,0x5b,0x44, 0xf,0x47,0x25, 0x5,0x4c,0x35, 0x5,0x44,0x7d,\n  0xf,0x46,0x6c, 0x7,0x21,0x51, 0x5,0x4c,0x3b, 0x7,0x21,0x55,\n  0x7,0x21,0x52, 0x5,0x4c,0x39, 0x7,0x21,0x58, 0x7,0x21,0x4a,\n  0x5,0x4c,0x40, 0x5,0x4c,0x46, 0x5,0x4c,0x3d, 0x7,0x21,0x4f,\n  0x5,0x4c,0x3e, 0x7,0x21,0x57, 0x7,0x21,0x50, 0x5,0x4c,0x36,\n  0x7,0x21,0x4b, 0x5,0x4c,0x3f, 0x7,0x21,0x56, 0x7,0x21,0x59,\n  0x5,0x4c,0x41, 0x4,0x49,0x2f, 0x7,0x21,0x5b, 0x5,0x4c,0x3a,\n  0x7,0x21,0x48, 0x5,0x4c,0x38, 0x5,0x5b,0x27, 0x7,0x21,0x5a,\n  0x4,0x49,0x2b, 0x7,0x21,0x54, 0x5,0x45,0x23, 0x7,0x21,0x53,\n  0x7,0x21,0x49, 0x7,0x21,0x47, 0x7,0x21,0x62, 0x7,0x21,0x5c,\n  0xf,0x4d,0x7a, 0x7,0x21,0x5e, 0x5,0x4c,0x42, 0x7,0x21,0x61,\n  0x7,0x2c,0x61, 0x5,0x4c,0x37, 0x4,0x49,0x32, 0x5,0x4c,0x47,\n  0xf,0x4d,0x6f, 0xf,0x4d,0x70, 0xf,0x4d,0x71, 0xf,0x4d,0x72,\n  0xf,0x4d,0x73, 0xf,0x4d,0x74, 0xf,0x4d,0x75, 0xf,0x4d,0x76,\n  0xf,0x4d,0x78, 0xf,0x4d,0x79, 0x5,0x4c,0x44, 0x7,0x21,0x5f,\n  0x7,0x26,0x2b, 0x7,0x21,0x5d, 0x7,0x21,0x4d, 0x7,0x21,0x4c,\n  0x5,0x4c,0x3c, 0x5,0x4c,0x43, 0x7,0x2c,0x6a, 0x4,0x4f,0x6e,\n  0x5,0x53,0x74, 0x7,0x2c,0x5c, 0x5,0x53,0x72, 0x7,0x2c,0x68,\n  0x4,0x4f,0x72, 0x5,0x53,0x6a, 0x5,0x53,0x78, 0x7,0x2c,0x60,\n  0x4,0x4f,0x68, 0x4,0x4f,0x73, 0x4,0x4f,0x66, 0x5,0x53,0x71,\n  0x4,0x4f,0x70, 0x5,0x53,0x6f, 0x5,0x53,0x68, 0x7,0x2c,0x6b,\n  0x7,0x2c,0x5b, 0x7,0x2c,0x64, 0x5,0x53,0x6e, 0x7,0x2c,0x5f,\n  0x5,0x53,0x6c, 0x5,0x53,0x67, 0x5,0x53,0x75, 0x5,0x53,0x70,\n  0x5,0x53,0x73, 0x7,0x2c,0x59, 0x5,0x53,0x6b, 0x5,0x53,0x69,\n  0x7,0x2c,0x67, 0x7,0x2c,0x58, 0x7,0x2c,0x57, 0xf,0x4d,0x77,\n  0x4,0x4f,0x69, 0x4,0x4f,0x74, 0x5,0x53,0x77, 0x7,0x2c,0x66,\n  0xf,0x53,0x5c, 0xf,0x53,0x5e, 0xf,0x53,0x5f, 0xf,0x53,0x60,\n  0xf,0x53,0x61, 0xf,0x53,0x62, 0xf,0x53,0x63, 0xf,0x53,0x64,\n  0xf,0x53,0x65, 0xf,0x53,0x67, 0xf,0x53,0x68, 0xf,0x53,0x69,\n  0xf,0x53,0x6a, 0xf,0x53,0x6b, 0xf,0x53,0x6c, 0xf,0x53,0x6d,\n  0xf,0x53,0x6e, 0xf,0x53,0x6f, 0x7,0x2c,0x5e, 0x7,0x2c,0x5d,\n  0x7,0x2c,0x62, 0x7,0x2c,0x69, 0x5,0x53,0x6d, 0xf,0x55,0x74,\n  0x5,0x53,0x76, 0x4,0x55,0x7a, 0x5,0x5b,0x26, 0x5,0x5b,0x21,\n  0x7,0x37,0x2d, 0x7,0x37,0x2a, 0x7,0x37,0x34, 0x7,0x37,0x35,\n  0x5,0x5b,0x23, 0x5,0x5b,0x2b, 0x4,0x55,0x71, 0x4,0x55,0x76,\n  0x5,0x5b,0x28, 0x4,0x55,0x77, 0x7,0x37,0x2b, 0x5,0x5b,0x29,\n  0x4,0x55,0x79, 0x7,0x37,0x31, 0x7,0x37,0x2f, 0x7,0x37,0x2e,\n  0x5,0x5b,0x24, 0x4,0x55,0x75, 0x7,0x37,0x32, 0x7,0x37,0x39,\n  0xf,0x59,0x59, 0xf,0x59,0x5a, 0xf,0x59,0x5e, 0xf,0x59,0x5f,\n  0xf,0x59,0x60, 0xf,0x59,0x61, 0xf,0x59,0x62, 0x7,0x37,0x38,\n  0x7,0x37,0x30, 0x7,0x37,0x36, 0x7,0x37,0x33, 0x7,0x37,0x2c,\n  0x5,0x5b,0x2a, 0x5,0x5b,0x22, 0x4,0x5a,0x74, 0x7,0x3f,0x29,\n  0x7,0x3f,0x2f, 0x4,0x5a,0x73, 0x5,0x61,0x3e, 0x7,0x3f,0x2b,\n  0x4,0x5a,0x71, 0x4,0x5a,0x76, 0x5,0x61,0x46, 0x4,0x5a,0x77,\n  0x5,0x67,0x58, 0x5,0x61,0x3d, 0x5,0x61,0x44, 0x5,0x61,0x43,\n  0x4,0x5a,0x78, 0x7,0x3f,0x2a, 0x4,0x5a,0x75, 0x4,0x5a,0x79,\n  0x4,0x5a,0x72, 0x7,0x3f,0x2e, 0x5,0x61,0x41, 0x7,0x3f,0x27,\n  0x7,0x3f,0x2d, 0x7,0x3f,0x28, 0x7,0x3f,0x26, 0x7,0x3f,0x2c,\n  0x5,0x61,0x42, 0xf,0x59,0x5b, 0x7,0x3f,0x25, 0xf,0x5e,0x3c,\n  0xf,0x5e,0x3d, 0xf,0x5e,0x3e, 0xf,0x5e,0x3f, 0xf,0x5e,0x40,\n  0xf,0x5e,0x43, 0xf,0x5e,0x44, 0xf,0x5e,0x45, 0x5,0x61,0x3f,\n  0xf,0x5e,0x4a, 0x7,0x46,0x34, 0x4,0x5f,0x4e, 0x5,0x5b,0x25,\n  0x7,0x46,0x3b, 0x7,0x46,0x39, 0x7,0x46,0x37, 0x5,0x67,0x5a,\n  0x5,0x67,0x5b, 0x4,0x5f,0x50, 0x5,0x67,0x57, 0x7,0x46,0x3c,\n  0x7,0x46,0x3a, 0x7,0x46,0x33, 0x7,0x46,0x35, 0x7,0x46,0x38,\n  0x4,0x5f,0x4f, 0xf,0x5e,0x46, 0x5,0x67,0x5c, 0xf,0x62,0x22,\n  0xf,0x62,0x23, 0xf,0x62,0x24, 0xf,0x62,0x25, 0xf,0x62,0x26,\n  0x7,0x46,0x36, 0x7,0x47,0x6e, 0x7,0x46,0x3d, 0x5,0x6b,0x74,\n  0x5,0x6b,0x75, 0x5,0x6b,0x6f, 0x5,0x6b,0x71, 0x5,0x6b,0x70,\n  0x7,0x4d,0x47, 0x7,0x4d,0x49, 0x7,0x4d,0x4b, 0x7,0x4d,0x48,\n  0x7,0x4d,0x46, 0x7,0x4d,0x4a, 0xf,0x64,0x7d, 0xf,0x64,0x7e,\n  0xf,0x65,0x21, 0x7,0x4d,0x4c, 0x5,0x6b,0x72, 0x7,0x52,0x7b,\n  0x5,0x6f,0x71, 0x5,0x6f,0x6f, 0x4,0x66,0x35, 0x5,0x6f,0x6e,\n  0x7,0x52,0x7a, 0x5,0x6f,0x6d, 0x7,0x52,0x7e, 0x5,0x6f,0x70,\n  0x7,0x52,0x7d, 0x4,0x66,0x33, 0xf,0x67,0x47, 0xf,0x67,0x48,\n  0x5,0x6f,0x6c, 0x7,0x52,0x7c, 0x7,0x57,0x59, 0x7,0x57,0x5a,\n  0x5,0x73,0x33, 0x7,0x57,0x55, 0x7,0x57,0x56, 0x7,0x57,0x57,\n  0x7,0x57,0x54, 0x7,0x57,0x52, 0x7,0x57,0x53, 0xf,0x69,0x3c,\n  0x4,0x68,0x64, 0x7,0x57,0x58, 0x7,0x5b,0x49, 0x7,0x5b,0x4a,\n  0xf,0x6a,0x4d, 0x7,0x5b,0x48, 0x7,0x5b,0x47, 0x5,0x77,0x55,\n  0x5,0x77,0x56, 0x4,0x6b,0x66, 0x7,0x5e,0x53, 0x7,0x5e,0x55,\n  0x7,0x5e,0x54, 0x7,0x5e,0x56, 0xf,0x6b,0x43, 0x5,0x75,0x67,\n  0x5,0x79,0x23, 0x4,0x6c,0x6d, 0xf,0x6c,0x22, 0xf,0x6c,0x23,\n  0x7,0x60,0x6b, 0x7,0x62,0x32, 0x7,0x62,0x31, 0x7,0x62,0x34,\n  0x7,0x62,0x30, 0x7,0x62,0x33, 0xf,0x6c,0x79, 0xf,0x6c,0x7a,\n  0x6,0x21,0x65, 0x6,0x21,0x66, 0xf,0x21,0x37, 0x4,0x21,0x6e,\n  0x6,0x24,0x32, 0x6,0x24,0x30, 0x5,0x22,0x49, 0xf,0x22,0x35,\n  0x6,0x24,0x31, 0x6,0x24,0x2f, 0x5,0x22,0x48, 0x6,0x26,0x54,\n  0x6,0x2f,0x5c, 0x6,0x2a,0x3e, 0x6,0x26,0x58, 0x6,0x26,0x56,\n  0xf,0x23,0x4f, 0xf,0x23,0x51, 0x6,0x26,0x57, 0x6,0x26,0x59,\n  0x6,0x26,0x5c, 0x6,0x26,0x5a, 0x6,0x26,0x51, 0x6,0x26,0x55,\n  0x6,0x26,0x52, 0x6,0x26,0x53, 0x6,0x26,0x5b, 0x5,0x25,0x55,\n  0x6,0x2a,0x43, 0x6,0x2a,0x40, 0x6,0x2a,0x41, 0x6,0x2a,0x42,\n  0x6,0x2d,0x34, 0x6,0x2a,0x3f, 0xf,0x26,0x24, 0x5,0x25,0x54,\n  0x5,0x28,0x54, 0x5,0x28,0x56, 0x6,0x2f,0x60, 0x6,0x2f,0x5f,\n  0x5,0x28,0x55, 0x6,0x2f,0x5b, 0x6,0x2f,0x5e, 0x6,0x2f,0x5d,\n  0x5,0x2c,0x5c, 0x6,0x36,0x2d, 0x6,0x36,0x2a, 0x6,0x36,0x2c,\n  0x5,0x2c,0x5b, 0x6,0x36,0x2b, 0x5,0x2c,0x5d, 0x5,0x31,0x56,\n  0x6,0x3e,0x25, 0x5,0x31,0x57, 0x6,0x3e,0x24, 0x6,0x3e,0x23,\n  0x6,0x3e,0x22, 0x5,0x31,0x54, 0x6,0x3e,0x26, 0x5,0x37,0x33,\n  0x6,0x47,0x40, 0x6,0x47,0x41, 0x5,0x37,0x31, 0x5,0x31,0x55,\n  0xf,0x39,0x72, 0xf,0x39,0x73, 0xf,0x39,0x74, 0x6,0x47,0x42,\n  0x5,0x37,0x32, 0x5,0x3e,0x40, 0x6,0x51,0x45, 0x5,0x3e,0x41,\n  0x6,0x51,0x47, 0x6,0x51,0x48, 0x5,0x3e,0x42, 0x6,0x51,0x46,\n  0xf,0x40,0x65, 0x6,0x5b,0x54, 0x6,0x5b,0x58, 0x5,0x45,0x24,\n  0x6,0x5b,0x55, 0x6,0x5b,0x5a, 0x6,0x5b,0x56, 0xf,0x47,0x2e,\n  0xf,0x47,0x2f, 0xf,0x47,0x30, 0x6,0x5b,0x57, 0x7,0x21,0x65,\n  0x7,0x21,0x66, 0x7,0x21,0x64, 0xf,0x4d,0x7b, 0x4,0x4f,0x75,\n  0xf,0x53,0x73, 0x7,0x37,0x3c, 0x7,0x37,0x3a, 0x7,0x37,0x3b,\n  0x4,0x5f,0x51, 0x7,0x4d,0x4d, 0x7,0x53,0x22, 0x7,0x53,0x21,\n  0x4,0x21,0x48, 0x5,0x21,0x44, 0x6,0x22,0x60, 0xf,0x21,0x51,\n  0xf,0x21,0x52, 0x6,0x22,0x61, 0x6,0x24,0x35, 0xf,0x22,0x36,\n  0xf,0x22,0x37, 0x6,0x24,0x34, 0x6,0x26,0x6a, 0x4,0x23,0x60,\n  0x6,0x26,0x66, 0x6,0x26,0x62, 0x6,0x26,0x5e, 0x6,0x26,0x69,\n  0x6,0x26,0x5d, 0x6,0x26,0x65, 0x6,0x26,0x67, 0xf,0x23,0x53,\n  0xf,0x23,0x54, 0xf,0x23,0x56, 0xf,0x23,0x58, 0xf,0x23,0x5a,\n  0x6,0x26,0x60, 0x6,0x26,0x63, 0x6,0x26,0x68, 0x6,0x26,0x64,\n  0x6,0x26,0x61, 0x6,0x26,0x5f, 0x5,0x23,0x5e, 0xf,0x23,0x59,\n  0x5,0x23,0x5d, 0x5,0x23,0x5f, 0x5,0x23,0x60, 0x5,0x23,0x61,\n  0x4,0x25,0x6a, 0x6,0x2a,0x4f, 0x6,0x2a,0x47, 0x6,0x2a,0x4c,\n  0x6,0x2a,0x46, 0x4,0x25,0x67, 0x6,0x2a,0x4a, 0x4,0x25,0x6c,\n  0x6,0x2a,0x48, 0x5,0x25,0x56, 0x6,0x2a,0x51, 0x6,0x26,0x41,\n  0x6,0x2a,0x49, 0xf,0x26,0x26, 0xf,0x26,0x27, 0xf,0x26,0x28,\n  0xf,0x26,0x29, 0xf,0x26,0x2a, 0xf,0x26,0x30, 0xf,0x26,0x31,\n  0xf,0x26,0x2c, 0xf,0x26,0x2b, 0x4,0x25,0x6b, 0xf,0x26,0x2f,\n  0xf,0x26,0x2e, 0x6,0x2a,0x50, 0x6,0x2a,0x4b, 0x6,0x2a,0x4d,\n  0x6,0x2a,0x4e, 0xf,0x26,0x32, 0xf,0x26,0x25, 0x6,0x2a,0x45,\n  0x6,0x2a,0x44, 0x5,0x25,0x57, 0x5,0x28,0x5b, 0x6,0x2f,0x62,\n  0x5,0x28,0x57, 0x6,0x2f,0x64, 0x6,0x2f,0x61, 0x5,0x28,0x58,\n  0x4,0x28,0x5f, 0x6,0x2f,0x6b, 0x6,0x2f,0x63, 0xf,0x29,0x7a,\n  0xf,0x29,0x68, 0xf,0x29,0x69, 0xf,0x29,0x6b, 0xf,0x29,0x6c,\n  0xf,0x29,0x6d, 0xf,0x29,0x6e, 0xf,0x29,0x6f, 0xf,0x29,0x70,\n  0xf,0x29,0x72, 0xf,0x29,0x73, 0xf,0x29,0x75, 0xf,0x29,0x76,\n  0xf,0x29,0x77, 0xf,0x29,0x78, 0xf,0x29,0x79, 0xf,0x29,0x7b,\n  0xf,0x29,0x7c, 0xf,0x29,0x7d, 0x6,0x2f,0x6a, 0x6,0x2f,0x6c,\n  0x6,0x34,0x31, 0x6,0x2f,0x67, 0x6,0x2f,0x68, 0x6,0x2f,0x66,\n  0xf,0x29,0x74, 0x5,0x28,0x5d, 0x5,0x28,0x5a, 0x5,0x28,0x5e,\n  0x5,0x28,0x5c, 0x5,0x28,0x59, 0x5,0x2c,0x5e, 0x4,0x2c,0x32,\n  0x6,0x36,0x34, 0x4,0x2c,0x30, 0x4,0x2c,0x34, 0x6,0x36,0x32,\n  0x6,0x36,0x3c, 0x6,0x36,0x36, 0x6,0x36,0x3d, 0x6,0x36,0x3e,\n  0x6,0x36,0x31, 0x6,0x36,0x2e, 0x6,0x36,0x3a, 0x6,0x36,0x2f,\n  0x6,0x36,0x40, 0xf,0x2e,0x55, 0xf,0x2e,0x56, 0xf,0x2e,0x57,\n  0xf,0x2e,0x58, 0xf,0x2e,0x59, 0xf,0x2e,0x5a, 0xf,0x2e,0x5b,\n  0xf,0x2e,0x5e, 0xf,0x2e,0x5f, 0xf,0x2e,0x60, 0x6,0x36,0x30,\n  0x6,0x36,0x3f, 0x6,0x36,0x37, 0x6,0x36,0x38, 0x6,0x36,0x39,\n  0x5,0x2c,0x60, 0x6,0x36,0x3b, 0xf,0x2e,0x5d, 0xf,0x2e,0x61,\n  0x6,0x36,0x33, 0x5,0x2c,0x5f, 0x5,0x2c,0x62, 0x4,0x30,0x7d,\n  0x6,0x3e,0x27, 0x4,0x30,0x7c, 0x5,0x31,0x5d, 0x6,0x3e,0x34,\n  0x6,0x3e,0x2d, 0x5,0x31,0x5b, 0x6,0x3e,0x2a, 0x5,0x2c,0x61,\n  0x6,0x3e,0x33, 0x6,0x3e,0x30, 0x5,0x31,0x5a, 0x4,0x31,0x22,\n  0x4,0x31,0x23, 0xf,0x33,0x4f, 0xf,0x33,0x5b, 0x6,0x3e,0x2e,\n  0x6,0x3e,0x2f, 0xf,0x33,0x4e, 0xf,0x33,0x50, 0xf,0x33,0x51,\n  0xf,0x33,0x52, 0xf,0x33,0x53, 0xf,0x33,0x54, 0xf,0x33,0x55,\n  0xf,0x33,0x56, 0xf,0x33,0x58, 0xf,0x33,0x59, 0xf,0x33,0x5a,\n  0xf,0x33,0x5e, 0xf,0x33,0x5f, 0xf,0x33,0x60, 0xf,0x33,0x61,\n  0x5,0x31,0x5c, 0x6,0x3e,0x31, 0x6,0x3e,0x35, 0x4,0x30,0x7e,\n  0x6,0x3e,0x28, 0x6,0x3e,0x29, 0x5,0x31,0x58, 0x5,0x31,0x59,\n  0x3,0x3a,0x4f, 0x6,0x51,0x4e, 0x4,0x36,0x72, 0x6,0x47,0x47,\n  0x4,0x36,0x6a, 0x6,0x47,0x45, 0x4,0x36,0x70, 0x4,0x36,0x6c,\n  0x6,0x47,0x4b, 0x6,0x47,0x50, 0x4,0x36,0x75, 0x6,0x47,0x44,\n  0x6,0x47,0x46, 0x6,0x47,0x4d, 0x5,0x37,0x34, 0x6,0x3e,0x32,\n  0x6,0x47,0x4f, 0x4,0x3c,0x5a, 0x5,0x37,0x39, 0x4,0x36,0x73,\n  0x6,0x4f,0x6d, 0x5,0x37,0x38, 0xf,0x39,0x76, 0xf,0x39,0x78,\n  0xf,0x39,0x79, 0xf,0x39,0x7a, 0xf,0x39,0x7b, 0xf,0x39,0x7c,\n  0xf,0x3a,0x21, 0xf,0x3a,0x22, 0xf,0x3a,0x23, 0xf,0x3a,0x24,\n  0xf,0x3a,0x25, 0xf,0x3a,0x26, 0x6,0x47,0x51, 0x6,0x47,0x4a,\n  0x6,0x47,0x49, 0x4,0x36,0x74, 0x6,0x47,0x4c, 0xf,0x39,0x75,\n  0x5,0x37,0x37, 0x5,0x37,0x3a, 0x6,0x47,0x48, 0x5,0x37,0x35,\n  0x5,0x37,0x36, 0x5,0x37,0x3b, 0x5,0x3e,0x46, 0x6,0x51,0x56,\n  0x6,0x51,0x4b, 0x6,0x51,0x55, 0x5,0x3e,0x4d, 0x4,0x3c,0x54,\n  0x6,0x5b,0x62, 0x6,0x51,0x52, 0x5,0x3e,0x4c, 0x6,0x51,0x51,\n  0x5,0x3e,0x44, 0x5,0x3e,0x4b, 0x5,0x3e,0x43, 0x6,0x51,0x54,\n  0x6,0x51,0x50, 0x5,0x3e,0x49, 0x5,0x3e,0x4a, 0x4,0x3c,0x55,\n  0x5,0x3e,0x47, 0x6,0x51,0x49, 0x6,0x51,0x4c, 0xf,0x39,0x77,\n  0x6,0x51,0x53, 0x6,0x51,0x4d, 0xf,0x40,0x66, 0xf,0x40,0x67,\n  0xf,0x40,0x68, 0xf,0x40,0x6a, 0xf,0x40,0x6b, 0xf,0x40,0x6c,\n  0xf,0x40,0x6d, 0xf,0x40,0x6e, 0xf,0x40,0x6f, 0xf,0x40,0x70,\n  0xf,0x40,0x71, 0xf,0x40,0x72, 0xf,0x40,0x73, 0x6,0x51,0x4f,\n  0x5,0x3e,0x4e, 0x5,0x3e,0x48, 0x5,0x3e,0x45, 0x5,0x45,0x29,\n  0x5,0x45,0x28, 0x5,0x45,0x27, 0x6,0x5b,0x5c, 0x4,0x42,0x5c,\n  0x6,0x5b,0x64, 0x6,0x5b,0x66, 0x6,0x5b,0x61, 0x5,0x45,0x2a,\n  0x6,0x5b,0x60, 0x5,0x45,0x26, 0x6,0x5b,0x67, 0xf,0x47,0x32,\n  0xf,0x47,0x33, 0xf,0x47,0x34, 0xf,0x47,0x35, 0xf,0x47,0x36,\n  0xf,0x47,0x37, 0xf,0x47,0x39, 0xf,0x47,0x3a, 0xf,0x47,0x3b,\n  0xf,0x47,0x3c, 0x6,0x5b,0x5d, 0xf,0x47,0x38, 0x6,0x5b,0x6b,\n  0x6,0x5b,0x63, 0x6,0x5b,0x53, 0xf,0x47,0x31, 0x4,0x42,0x5a,\n  0x6,0x5b,0x65, 0x6,0x5b,0x5e, 0x5,0x45,0x25, 0x5,0x45,0x2b,\n  0x7,0x21,0x72, 0x4,0x49,0x34, 0x4,0x49,0x35, 0x7,0x21,0x6f,\n  0x4,0x49,0x36, 0x5,0x4c,0x4b, 0x5,0x4c,0x4c, 0x7,0x21,0x6b,\n  0x7,0x21,0x78, 0x4,0x49,0x37, 0x7,0x21,0x77, 0x7,0x21,0x74,\n  0xf,0x4e,0x21, 0x5,0x4c,0x4d, 0x5,0x4c,0x4f, 0x7,0x21,0x67,\n  0x7,0x21,0x75, 0xf,0x4d,0x7c, 0xf,0x4d,0x7d, 0xf,0x4e,0x26,\n  0xf,0x4e,0x27, 0xf,0x4e,0x28, 0xf,0x4e,0x29, 0xf,0x4e,0x2a,\n  0xf,0x4e,0x2b, 0xf,0x4e,0x2d, 0x7,0x21,0x6c, 0x7,0x21,0x6d,\n  0x7,0x21,0x6e, 0x5,0x4c,0x71, 0x7,0x21,0x73, 0x7,0x21,0x71,\n  0x7,0x21,0x69, 0xf,0x4d,0x7e, 0xf,0x4e,0x24, 0xf,0x4e,0x23,\n  0x5,0x4c,0x4e, 0x5,0x4c,0x4a, 0x5,0x4c,0x48, 0x7,0x21,0x68,\n  0x5,0x4c,0x49, 0x7,0x2c,0x6f, 0x7,0x2c,0x71, 0x7,0x2c,0x6c,\n  0x4,0x4f,0x77, 0x4,0x4f,0x7a, 0x4,0x4f,0x79, 0x7,0x2c,0x6d,\n  0x7,0x2c,0x70, 0xf,0x4e,0x2c, 0xf,0x53,0x74, 0xf,0x53,0x76,\n  0xf,0x53,0x78, 0x5,0x53,0x7a, 0x7,0x2c,0x72, 0x5,0x53,0x7b,\n  0x5,0x53,0x79, 0x7,0x34,0x6f, 0x7,0x2c,0x73, 0x7,0x2c,0x6e,\n  0xf,0x53,0x77, 0x4,0x4f,0x76, 0x7,0x37,0x43, 0x4,0x55,0x7d,\n  0x7,0x37,0x3d, 0x5,0x5b,0x2e, 0x7,0x37,0x3f, 0x7,0x37,0x44,\n  0x7,0x37,0x42, 0x7,0x37,0x45, 0x5,0x5b,0x2c, 0x7,0x2c,0x74,\n  0xf,0x59,0x64, 0xf,0x59,0x65, 0xf,0x59,0x66, 0xf,0x59,0x67,\n  0xf,0x59,0x68, 0xf,0x59,0x69, 0xf,0x59,0x6a, 0xf,0x59,0x6b,\n  0x7,0x3e,0x6c, 0x7,0x37,0x40, 0x7,0x37,0x41, 0x4,0x55,0x7e,\n  0x5,0x5b,0x2f, 0x7,0x3f,0x34, 0x5,0x61,0x47, 0x7,0x37,0x3e,\n  0x5,0x61,0x49, 0x7,0x3f,0x33, 0xf,0x5e,0x47, 0xf,0x5e,0x48,\n  0xf,0x5e,0x49, 0xf,0x5e,0x4b, 0xf,0x5e,0x4d, 0xf,0x5e,0x4e,\n  0x7,0x3f,0x31, 0x7,0x3f,0x32, 0x5,0x5b,0x30, 0x5,0x61,0x48,\n  0xf,0x62,0x28, 0x5,0x61,0x4a, 0x7,0x46,0x42, 0x7,0x46,0x3f,\n  0x5,0x67,0x5d, 0x7,0x46,0x47, 0x7,0x46,0x41, 0xf,0x5e,0x4c,\n  0xf,0x62,0x27, 0x7,0x46,0x43, 0x7,0x46,0x46, 0x7,0x4a,0x3b,\n  0x7,0x46,0x40, 0x7,0x3f,0x35, 0x4,0x63,0x33, 0xf,0x65,0x22,\n  0xf,0x65,0x23, 0xf,0x65,0x24, 0xf,0x65,0x25, 0x7,0x4d,0x4e,\n  0x5,0x6b,0x77, 0x7,0x53,0x28, 0x4,0x66,0x36, 0x7,0x53,0x24,\n  0x7,0x53,0x23, 0x7,0x53,0x27, 0x7,0x53,0x25, 0x5,0x6f,0x74,\n  0xf,0x67,0x49, 0xf,0x67,0x4a, 0xf,0x67,0x4c, 0x7,0x53,0x26,\n  0xf,0x67,0x4b, 0x5,0x6f,0x72, 0x5,0x6f,0x73, 0x7,0x57,0x5b,\n  0xf,0x69,0x3d, 0x5,0x73,0x34, 0x7,0x57,0x5d, 0x5,0x73,0x35,\n  0x7,0x5b,0x4b, 0x7,0x57,0x5c, 0x7,0x5e,0x57, 0x5,0x77,0x57,\n  0x5,0x7b,0x5f, 0x7,0x65,0x5a, 0x7,0x66,0x42, 0x7,0x66,0x4f,\n  0x6,0x22,0x62, 0x6,0x2f,0x6d, 0x6,0x26,0x6b, 0x6,0x2a,0x52,\n  0xf,0x29,0x7e, 0xf,0x2a,0x21, 0x5,0x2c,0x64, 0x6,0x36,0x42,\n  0x6,0x2f,0x6e, 0x6,0x36,0x41, 0xf,0x2e,0x62, 0x5,0x2c,0x63,\n  0x6,0x3e,0x36, 0xf,0x33,0x62, 0x6,0x47,0x52, 0x6,0x51,0x59,\n  0x6,0x51,0x58, 0x6,0x5b,0x6a, 0x6,0x64,0x7a, 0x6,0x5b,0x68,\n  0xf,0x47,0x3d, 0x6,0x5b,0x69, 0x7,0x21,0x7a, 0x7,0x21,0x79,\n  0x7,0x2c,0x75, 0x7,0x3f,0x36, 0x7,0x43,0x3f, 0xf,0x5e,0x4f,\n  0x7,0x3f,0x37, 0x7,0x46,0x48, 0x7,0x46,0x49, 0x7,0x48,0x3b,\n  0x7,0x57,0x5e, 0x5,0x21,0x2f, 0x6,0x22,0x63, 0x6,0x24,0x37,\n  0x6,0x24,0x36, 0x6,0x26,0x6c, 0xf,0x23,0x5c, 0x6,0x36,0x43,\n  0x6,0x3e,0x37, 0x6,0x3e,0x38, 0x6,0x51,0x5a, 0x6,0x24,0x39,\n  0x6,0x24,0x38, 0x5,0x23,0x64, 0x5,0x23,0x63, 0x4,0x25,0x6f,\n  0x6,0x2a,0x53, 0xf,0x26,0x34, 0xf,0x2e,0x63, 0x5,0x31,0x5e,\n  0x6,0x3e,0x39, 0x6,0x3e,0x3c, 0x5,0x2c,0x65, 0x6,0x3e,0x3b,\n  0x6,0x3e,0x3a, 0x5,0x3e,0x4f, 0x6,0x51,0x5c, 0xf,0x40,0x74,\n  0x6,0x5b,0x6c, 0xf,0x47,0x3e, 0x6,0x5b,0x6d, 0x5,0x4c,0x50,\n  0xf,0x4e,0x2f, 0xf,0x53,0x79, 0x7,0x2c,0x76, 0x7,0x2c,0x77,\n  0x7,0x37,0x46, 0x7,0x46,0x4a, 0x7,0x3f,0x3a, 0x7,0x3f,0x38,\n  0x7,0x3f,0x39, 0x7,0x46,0x4b, 0x7,0x4d,0x4f, 0x6,0x22,0x64,\n  0x6,0x22,0x65, 0x6,0x24,0x3a, 0x6,0x26,0x6e, 0x6,0x26,0x6d,\n  0x6,0x2a,0x54, 0xf,0x25,0x42, 0x5,0x28,0x5f, 0x5,0x2c,0x68,\n  0x4,0x2c,0x35, 0x5,0x2c,0x67, 0x6,0x36,0x46, 0x6,0x36,0x45,\n  0xf,0x2e,0x64, 0xf,0x2e,0x65, 0x6,0x36,0x47, 0x5,0x2c,0x69,\n  0x4,0x31,0x24, 0x5,0x31,0x61, 0x6,0x3e,0x3d, 0x5,0x31,0x5f,\n  0x5,0x31,0x60, 0x5,0x31,0x62, 0xf,0x33,0x63, 0x6,0x47,0x54,\n  0x5,0x37,0x3e, 0x5,0x37,0x42, 0x5,0x37,0x40, 0x5,0x37,0x41,\n  0xf,0x3a,0x27, 0x5,0x3e,0x50, 0x6,0x51,0x5d, 0x5,0x3e,0x52,\n  0x5,0x3e,0x51, 0x6,0x51,0x5f, 0x4,0x42,0x61, 0x6,0x5b,0x6f,\n  0x6,0x5b,0x70, 0x6,0x5b,0x6e, 0x5,0x45,0x2c, 0x5,0x45,0x2e,\n  0x7,0x21,0x7b, 0x5,0x4c,0x51, 0x7,0x3f,0x3b, 0x5,0x5b,0x31,\n  0x5,0x5b,0x32, 0x7,0x46,0x4c, 0x6,0x21,0x67, 0x6,0x21,0x68,\n  0xf,0x21,0x38, 0x6,0x22,0x66, 0xf,0x21,0x53, 0xf,0x21,0x54,\n  0x5,0x21,0x76, 0x6,0x24,0x3c, 0x4,0x22,0x54, 0x6,0x24,0x3f,\n  0x6,0x24,0x40, 0x6,0x24,0x3e, 0x6,0x24,0x3d, 0xf,0x21,0x6b,\n  0x4,0x23,0x63, 0x4,0x23,0x64, 0x4,0x23,0x66, 0xf,0x23,0x5d,\n  0xf,0x23,0x5e, 0xf,0x23,0x5f, 0xf,0x23,0x60, 0xf,0x23,0x61,\n  0xf,0x23,0x62, 0xf,0x23,0x63, 0x6,0x26,0x70, 0x6,0x26,0x6f,\n  0x4,0x25,0x76, 0x5,0x25,0x5a, 0x4,0x25,0x74, 0x6,0x2a,0x55,\n  0x6,0x2a,0x56, 0x4,0x28,0x63, 0x6,0x2a,0x5c, 0x6,0x2a,0x58,\n  0x6,0x2a,0x59, 0xf,0x26,0x36, 0xf,0x26,0x37, 0x6,0x2a,0x5a,\n  0x6,0x2a,0x5b, 0x6,0x2a,0x5d, 0x4,0x25,0x79, 0x6,0x2a,0x57,\n  0x6,0x29,0x39, 0x4,0x28,0x64, 0x4,0x28,0x62, 0x5,0x28,0x61,\n  0x5,0x28,0x62, 0x5,0x28,0x60, 0xf,0x2a,0x23, 0xf,0x2a,0x24,\n  0xf,0x2a,0x25, 0xf,0x2a,0x26, 0xf,0x2a,0x28, 0xf,0x2a,0x29,\n  0xf,0x2a,0x27, 0xf,0x2a,0x22, 0x5,0x2c,0x6c, 0x6,0x36,0x48,\n  0x6,0x36,0x4b, 0x5,0x2c,0x6a, 0x5,0x2c,0x6d, 0xf,0x2e,0x67,\n  0xf,0x2e,0x68, 0xf,0x2e,0x69, 0x6,0x36,0x4a, 0x4,0x2c,0x37,\n  0x5,0x2c,0x6b, 0x5,0x31,0x64, 0xf,0x2e,0x66, 0x4,0x2c,0x36,\n  0x6,0x3e,0x41, 0x6,0x3e,0x44, 0x3,0x34,0x7e, 0x6,0x3e,0x3e,\n  0x6,0x3e,0x43, 0x6,0x3e,0x40, 0x6,0x3e,0x45, 0x6,0x3e,0x3f,\n  0xf,0x33,0x64, 0xf,0x33,0x65, 0x4,0x31,0x27, 0x5,0x31,0x63,\n  0x4,0x3c,0x5e, 0x6,0x47,0x58, 0x6,0x47,0x5b, 0x6,0x47,0x5d,\n  0x6,0x47,0x5a, 0xf,0x3a,0x28, 0x6,0x47,0x55, 0x6,0x47,0x5c,\n  0x5,0x37,0x43, 0x6,0x47,0x59, 0x4,0x36,0x7a, 0x4,0x36,0x78,\n  0x5,0x37,0x44, 0x6,0x47,0x57, 0x6,0x51,0x60, 0x6,0x51,0x61,\n  0x4,0x3c,0x5d, 0xf,0x40,0x76, 0x5,0x3e,0x53, 0x5,0x3e,0x54,\n  0x5,0x3e,0x55, 0x6,0x5b,0x72, 0x4,0x42,0x63, 0x5,0x45,0x2f,\n  0x4,0x42,0x62, 0xf,0x47,0x3f, 0xf,0x47,0x40, 0xf,0x47,0x41,\n  0x6,0x5b,0x71, 0x5,0x45,0x30, 0x4,0x49,0x38, 0x7,0x22,0x22,\n  0x7,0x21,0x7c, 0x7,0x22,0x21, 0x7,0x2c,0x7c, 0x7,0x21,0x7e,\n  0x5,0x4c,0x53, 0xf,0x4e,0x31, 0xf,0x4e,0x32, 0x7,0x21,0x7d,\n  0x4,0x42,0x64, 0x5,0x4c,0x52, 0x7,0x2c,0x7d, 0x5,0x53,0x7c,\n  0x7,0x2c,0x78, 0x7,0x2c,0x79, 0x4,0x56,0x21, 0xf,0x53,0x7a,\n  0x7,0x2c,0x7a, 0x7,0x37,0x48, 0x7,0x37,0x47, 0x5,0x5b,0x33,\n  0x4,0x56,0x2e, 0x4,0x5a,0x7b, 0xf,0x62,0x29, 0x5,0x6b,0x78,\n  0x7,0x53,0x29, 0xf,0x69,0x3e, 0x5,0x75,0x68, 0xf,0x6b,0x44,\n  0x7,0x5e,0x58, 0xf,0x6c,0x5f, 0x5,0x21,0x62, 0xf,0x21,0x55,\n  0xf,0x21,0x56, 0x6,0x24,0x41, 0x4,0x22,0x58, 0x6,0x24,0x42,\n  0xf,0x22,0x39, 0xf,0x22,0x3a, 0xf,0x22,0x3b, 0xf,0x22,0x3c,\n  0x4,0x22,0x57, 0x5,0x22,0x4b, 0x6,0x24,0x43, 0x5,0x22,0x4a,\n  0x6,0x26,0x74, 0x4,0x23,0x68, 0x4,0x23,0x6b, 0xf,0x23,0x64,\n  0xf,0x23,0x66, 0xf,0x23,0x68, 0xf,0x23,0x69, 0xf,0x23,0x6b,\n  0xf,0x23,0x6c, 0xf,0x23,0x6d, 0xf,0x23,0x6e, 0xf,0x23,0x6f,\n  0xf,0x23,0x65, 0x6,0x26,0x72, 0x6,0x26,0x73, 0x6,0x26,0x75,\n  0x6,0x26,0x71, 0xf,0x23,0x6a, 0xf,0x23,0x67, 0x5,0x23,0x66,\n  0x5,0x23,0x67, 0x5,0x23,0x65, 0x4,0x25,0x7c, 0x6,0x2a,0x61,\n  0x6,0x2a,0x60, 0x5,0x25,0x60, 0x4,0x25,0x7a, 0x5,0x25,0x5e,\n  0x4,0x25,0x7d, 0x5,0x25,0x5b, 0x5,0x25,0x5c, 0x4,0x25,0x7e,\n  0xf,0x26,0x3a, 0xf,0x26,0x3b, 0xf,0x26,0x3e, 0xf,0x26,0x3f,\n  0xf,0x26,0x40, 0xf,0x26,0x41, 0xf,0x26,0x42, 0xf,0x26,0x43,\n  0xf,0x26,0x45, 0xf,0x26,0x46, 0xf,0x26,0x47, 0xf,0x26,0x48,\n  0xf,0x26,0x49, 0x6,0x2a,0x5f, 0x6,0x2a,0x5e, 0xf,0x26,0x44,\n  0xf,0x26,0x3c, 0xf,0x26,0x3d, 0x5,0x25,0x62, 0x5,0x25,0x5f,\n  0x5,0x25,0x63, 0x5,0x25,0x61, 0x4,0x28,0x68, 0x5,0x28,0x64,\n  0x6,0x2f,0x76, 0x6,0x2f,0x78, 0x6,0x2f,0x79, 0x4,0x28,0x65,\n  0x4,0x28,0x6b, 0x5,0x28,0x66, 0x4,0x28,0x66, 0x5,0x28,0x63,\n  0x6,0x2f,0x70, 0x6,0x2f,0x7b, 0x6,0x2f,0x74, 0x5,0x28,0x6b,\n  0x6,0x2f,0x7e, 0xf,0x2a,0x2d, 0xf,0x2a,0x2e, 0xf,0x2a,0x2f,\n  0xf,0x2a,0x30, 0xf,0x2a,0x31, 0xf,0x2a,0x32, 0xf,0x2a,0x33,\n  0xf,0x2a,0x34, 0x6,0x2f,0x73, 0x6,0x2f,0x77, 0x4,0x28,0x6c,\n  0x6,0x2f,0x75, 0x6,0x2f,0x7a, 0x6,0x2f,0x6f, 0x6,0x2f,0x7d,\n  0x5,0x28,0x69, 0x4,0x28,0x6a, 0x5,0x28,0x6a, 0x5,0x28,0x67,\n  0x6,0x2f,0x71, 0x6,0x2f,0x7c, 0x5,0x28,0x65, 0x5,0x28,0x68,\n  0x6,0x2f,0x72, 0x3,0x30,0x53, 0x5,0x2c,0x70, 0x6,0x36,0x4f,\n  0x5,0x2c,0x72, 0x5,0x2c,0x75, 0x5,0x2c,0x6f, 0x6,0x36,0x55,\n  0x5,0x2c,0x6e, 0x6,0x36,0x56, 0x6,0x36,0x50, 0x6,0x36,0x51,\n  0xf,0x2e,0x6c, 0xf,0x2e,0x6e, 0xf,0x2e,0x70, 0xf,0x2e,0x71,\n  0xf,0x2e,0x73, 0xf,0x2e,0x74, 0xf,0x2e,0x75, 0xf,0x2e,0x76,\n  0xf,0x2e,0x77, 0xf,0x2e,0x79, 0x6,0x36,0x54, 0x6,0x36,0x4e,\n  0x5,0x2c,0x71, 0x6,0x36,0x53, 0x6,0x36,0x52, 0xf,0x2e,0x6f,\n  0xf,0x2e,0x72, 0x5,0x2c,0x77, 0x5,0x2c,0x74, 0x5,0x2c,0x73,\n  0x5,0x2c,0x76, 0x5,0x2c,0x78, 0x6,0x3e,0x4c, 0x6,0x3e,0x52,\n  0x6,0x3e,0x46, 0x6,0x3e,0x47, 0x5,0x31,0x6a, 0x6,0x3e,0x48,\n  0x6,0x3e,0x49, 0x6,0x3e,0x4f, 0x5,0x31,0x69, 0x5,0x31,0x6d,\n  0x6,0x3e,0x4d, 0x4,0x31,0x2b, 0x6,0x3e,0x4e, 0x5,0x31,0x6b,\n  0x6,0x3e,0x53, 0xf,0x33,0x68, 0xf,0x33,0x69, 0xf,0x33,0x6a,\n  0xf,0x33,0x6b, 0xf,0x33,0x6c, 0xf,0x33,0x6d, 0xf,0x33,0x6e,\n  0xf,0x33,0x6f, 0xf,0x33,0x71, 0xf,0x33,0x72, 0xf,0x33,0x74,\n  0xf,0x33,0x75, 0xf,0x33,0x76, 0xf,0x33,0x77, 0xf,0x33,0x78,\n  0xf,0x33,0x79, 0xf,0x33,0x7a, 0xf,0x33,0x7b, 0xf,0x33,0x7c,\n  0xf,0x33,0x7d, 0xf,0x33,0x7e, 0xf,0x34,0x21, 0xf,0x34,0x22,\n  0xf,0x34,0x23, 0xf,0x33,0x70, 0x6,0x3e,0x51, 0x4,0x31,0x2a,\n  0x6,0x3e,0x4b, 0x6,0x3e,0x4a, 0x5,0x31,0x66, 0x5,0x31,0x67,\n  0x5,0x31,0x68, 0x5,0x31,0x65, 0x4,0x36,0x7b, 0x6,0x47,0x62,\n  0x4,0x36,0x7c, 0x5,0x37,0x5a, 0x6,0x47,0x5f, 0x4,0x37,0x21,\n  0x5,0x37,0x48, 0x5,0x37,0x59, 0x6,0x47,0x64, 0x6,0x47,0x66,\n  0x5,0x37,0x4f, 0x6,0x47,0x65, 0x6,0x47,0x60, 0x5,0x37,0x50,\n  0x5,0x37,0x49, 0x5,0x37,0x57, 0x5,0x37,0x54, 0x5,0x37,0x47,\n  0x5,0x37,0x4b, 0xf,0x3a,0x29, 0xf,0x3a,0x2b, 0xf,0x3a,0x2c,\n  0xf,0x3a,0x2d, 0xf,0x3a,0x2e, 0xf,0x3a,0x2f, 0xf,0x3a,0x30,\n  0xf,0x3a,0x32, 0xf,0x3a,0x33, 0xf,0x3a,0x34, 0xf,0x3a,0x36,\n  0xf,0x3a,0x37, 0xf,0x3a,0x38, 0xf,0x3a,0x39, 0xf,0x3a,0x3a,\n  0xf,0x3a,0x3e, 0xf,0x3a,0x3f, 0xf,0x3a,0x41, 0xf,0x3a,0x42,\n  0xf,0x3a,0x43, 0xf,0x3a,0x44, 0xf,0x3a,0x45, 0xf,0x3a,0x3b,\n  0x5,0x37,0x56, 0x6,0x47,0x63, 0x5,0x37,0x58, 0x6,0x47,0x5e,\n  0xf,0x3a,0x3d, 0xf,0x3a,0x40, 0xf,0x3a,0x31, 0xf,0x3a,0x2a,\n  0x5,0x37,0x45, 0x5,0x3e,0x56, 0x5,0x37,0x53, 0x5,0x37,0x4c,\n  0x5,0x37,0x52, 0x5,0x37,0x51, 0x5,0x37,0x4a, 0x5,0x37,0x4d,\n  0x5,0x37,0x55, 0x6,0x47,0x67, 0xf,0x33,0x67, 0x5,0x3e,0x5f,\n  0x5,0x3e,0x5a, 0x5,0x3e,0x5d, 0x5,0x3e,0x57, 0x4,0x3c,0x65,\n  0x5,0x3e,0x59, 0x6,0x51,0x63, 0x4,0x3c,0x62, 0x4,0x3c,0x60,\n  0x6,0x51,0x67, 0x6,0x51,0x65, 0x6,0x5b,0x7c, 0x5,0x3e,0x5c,\n  0x5,0x3e,0x5b, 0x6,0x51,0x66, 0xf,0x40,0x78, 0xf,0x40,0x79,\n  0xf,0x40,0x7a, 0xf,0x40,0x7c, 0xf,0x40,0x7d, 0xf,0x40,0x7e,\n  0xf,0x41,0x22, 0xf,0x41,0x23, 0x6,0x51,0x62, 0x6,0x51,0x64,\n  0xf,0x40,0x77, 0x6,0x51,0x68, 0x5,0x3e,0x58, 0x5,0x3e,0x5e,\n  0x5,0x3e,0x60, 0x6,0x51,0x6a, 0xf,0x41,0x21, 0x4,0x42,0x70,\n  0x5,0x45,0x32, 0x4,0x42,0x6a, 0x6,0x5b,0x7b, 0x4,0x42,0x71,\n  0x6,0x5b,0x73, 0x5,0x45,0x34, 0x7,0x22,0x29, 0x4,0x42,0x73,\n  0x6,0x5b,0x75, 0xf,0x47,0x48, 0x4,0x42,0x6f, 0x5,0x45,0x37,\n  0x4,0x42,0x6e, 0xf,0x47,0x47, 0xf,0x47,0x49, 0xf,0x47,0x4a,\n  0xf,0x47,0x4b, 0xf,0x47,0x4c, 0xf,0x47,0x4d, 0xf,0x47,0x4e,\n  0xf,0x47,0x4f, 0xf,0x47,0x50, 0xf,0x47,0x51, 0xf,0x47,0x52,\n  0xf,0x47,0x54, 0x6,0x5b,0x74, 0x6,0x5b,0x78, 0x4,0x42,0x72,\n  0x4,0x42,0x65, 0x6,0x5b,0x76, 0xf,0x47,0x53, 0x5,0x45,0x33,\n  0x5,0x45,0x36, 0x5,0x45,0x35, 0x7,0x22,0x26, 0x5,0x45,0x31,\n  0x6,0x5b,0x77, 0x5,0x4c,0x5b, 0x5,0x4c,0x59, 0x4,0x49,0x39,\n  0x5,0x4c,0x56, 0x7,0x22,0x2f, 0x5,0x4c,0x57, 0x4,0x49,0x3f,\n  0x4,0x49,0x3b, 0x7,0x22,0x2c, 0x4,0x49,0x3e, 0x7,0x22,0x25,\n  0x6,0x5b,0x79, 0x7,0x22,0x24, 0xf,0x4e,0x3a, 0x7,0x37,0x51,\n  0xf,0x47,0x45, 0x5,0x4c,0x54, 0x5,0x4c,0x5c, 0xf,0x4e,0x33,\n  0xf,0x4e,0x34, 0xf,0x4e,0x35, 0xf,0x4e,0x36, 0xf,0x4e,0x37,\n  0xf,0x4e,0x38, 0xf,0x4e,0x39, 0xf,0x4e,0x3b, 0xf,0x4e,0x3d,\n  0xf,0x4e,0x3e, 0xf,0x4e,0x3f, 0xf,0x4e,0x40, 0xf,0x4e,0x41,\n  0xf,0x4e,0x42, 0xf,0x4e,0x44, 0x6,0x5b,0x7a, 0x7,0x22,0x27,\n  0x7,0x22,0x2e, 0x7,0x22,0x2d, 0x7,0x22,0x28, 0x7,0x22,0x23,\n  0xf,0x4e,0x45, 0xf,0x4e,0x43, 0xf,0x4e,0x3c, 0x5,0x4c,0x5a,\n  0x5,0x4c,0x55, 0x4,0x49,0x3d, 0x7,0x22,0x2a, 0x5,0x4c,0x58,\n  0x7,0x22,0x2b, 0xf,0x54,0x25, 0x5,0x54,0x28, 0x5,0x54,0x23,\n  0x7,0x2d,0x25, 0x7,0x2c,0x7e, 0x5,0x54,0x29, 0x5,0x54,0x26,\n  0x7,0x2d,0x21, 0x4,0x4f,0x7e, 0x7,0x2d,0x28, 0x5,0x54,0x22,\n  0x7,0x2d,0x2b, 0x5,0x53,0x7d, 0x7,0x2d,0x2a, 0x7,0x2d,0x2c,\n  0xf,0x53,0x7b, 0xf,0x53,0x7c, 0xf,0x53,0x7d, 0xf,0x53,0x7e,\n  0xf,0x54,0x22, 0xf,0x54,0x23, 0xf,0x54,0x24, 0xf,0x54,0x26,\n  0xf,0x54,0x27, 0xf,0x54,0x2b, 0xf,0x54,0x2c, 0x5,0x53,0x7e,\n  0x7,0x2d,0x26, 0x7,0x2d,0x27, 0x7,0x2d,0x23, 0x7,0x2d,0x22,\n  0x7,0x2d,0x24, 0xf,0x54,0x21, 0xf,0x54,0x28, 0x5,0x54,0x27,\n  0x5,0x54,0x21, 0x5,0x54,0x25, 0x7,0x2d,0x29, 0x7,0x37,0x4b,\n  0x7,0x37,0x54, 0x7,0x37,0x4f, 0x4,0x4f,0x7d, 0x7,0x37,0x4d,\n  0x4,0x56,0x23, 0x7,0x37,0x53, 0x7,0x37,0x4a, 0x5,0x5b,0x36,\n  0x5,0x5b,0x34, 0x7,0x37,0x4c, 0x7,0x37,0x4e, 0x7,0x37,0x50,\n  0x5,0x5b,0x35, 0x4,0x56,0x25, 0xf,0x59,0x6c, 0xf,0x59,0x6d,\n  0xf,0x59,0x6e, 0xf,0x59,0x6f, 0xf,0x59,0x70, 0xf,0x59,0x71,\n  0x7,0x37,0x52, 0x7,0x37,0x55, 0x7,0x37,0x49, 0x5,0x61,0x4b,\n  0x4,0x5a,0x7c, 0x7,0x3f,0x3f, 0x5,0x61,0x4c, 0x5,0x61,0x4d,\n  0x7,0x3f,0x3e, 0x7,0x3f,0x40, 0xf,0x5e,0x50, 0xf,0x5e,0x51,\n  0xf,0x5e,0x52, 0xf,0x5e,0x54, 0x7,0x3f,0x3d, 0x7,0x3f,0x41,\n  0xf,0x5e,0x53, 0x7,0x3f,0x3c, 0x5,0x67,0x5f, 0x4,0x5f,0x53,\n  0x7,0x46,0x4d, 0x7,0x46,0x52, 0x7,0x46,0x50, 0xf,0x5e,0x55,\n  0xf,0x62,0x2a, 0xf,0x62,0x2b, 0x7,0x46,0x4e, 0x5,0x67,0x61,\n  0x5,0x67,0x60, 0xf,0x5f,0x73, 0x7,0x4d,0x51, 0x5,0x6b,0x79,\n  0xf,0x65,0x26, 0x5,0x6b,0x7a, 0x5,0x6b,0x7b, 0x7,0x53,0x2a,\n  0x5,0x6f,0x76, 0x7,0x53,0x2b, 0x5,0x6f,0x75, 0xf,0x67,0x4d,\n  0xf,0x67,0x4e, 0x7,0x57,0x62, 0x5,0x73,0x36, 0x7,0x57,0x61,\n  0x7,0x57,0x63, 0x7,0x57,0x5f, 0xf,0x69,0x3f, 0x7,0x57,0x60,\n  0x7,0x57,0x64, 0xf,0x69,0x40, 0x5,0x75,0x69, 0x7,0x5b,0x4c,\n  0x7,0x5e,0x5a, 0x7,0x5e,0x5b, 0xf,0x6b,0x45, 0x7,0x5e,0x59,\n  0x7,0x5e,0x5c, 0xf,0x6c,0x24, 0x5,0x79,0x24, 0xf,0x6c,0x4a,\n  0x7,0x63,0x4d, 0x5,0x7a,0x65, 0x4,0x21,0x33, 0x6,0x22,0x68,\n  0x5,0x21,0x63, 0x6,0x22,0x69, 0xf,0x21,0x58, 0xf,0x21,0x57,\n  0x6,0x24,0x45, 0x6,0x24,0x44, 0x6,0x26,0x76, 0x6,0x26,0x77,\n  0x5,0x23,0x6a, 0x4,0x23,0x6c, 0xf,0x23,0x70, 0x5,0x23,0x69,\n  0x4,0x28,0x6f, 0x6,0x30,0x24, 0x6,0x2a,0x63, 0x6,0x2a,0x62,\n  0xf,0x26,0x4a, 0xf,0x26,0x4b, 0xf,0x26,0x4c, 0xf,0x26,0x4d,\n  0xf,0x26,0x4f, 0x6,0x2a,0x64, 0xf,0x26,0x4e, 0x6,0x30,0x23,\n  0x6,0x30,0x21, 0x6,0x30,0x26, 0x6,0x30,0x25, 0xf,0x2a,0x35,\n  0xf,0x2a,0x36, 0xf,0x2a,0x37, 0x6,0x30,0x22, 0x6,0x36,0x59,\n  0x5,0x2c,0x79, 0x6,0x36,0x58, 0xf,0x2e,0x7a, 0xf,0x2e,0x7b,\n  0x5,0x2c,0x7a, 0xf,0x33,0x66, 0xf,0x34,0x24, 0xf,0x34,0x25,\n  0xf,0x34,0x26, 0xf,0x34,0x27, 0x5,0x37,0x5c, 0x6,0x47,0x69,\n  0x5,0x37,0x5b, 0x6,0x47,0x6a, 0xf,0x3a,0x47, 0x6,0x47,0x68,\n  0xf,0x3a,0x46, 0x4,0x3c,0x66, 0x4,0x3c,0x68, 0x6,0x51,0x6d,\n  0x5,0x3e,0x62, 0xf,0x41,0x25, 0xf,0x41,0x26, 0x6,0x51,0x6b,\n  0x6,0x51,0x6c, 0x5,0x3e,0x61, 0x4,0x3c,0x69, 0x6,0x5b,0x7d,\n  0xf,0x47,0x55, 0xf,0x47,0x56, 0x5,0x45,0x38, 0x4,0x49,0x41,\n  0x4,0x49,0x42, 0xf,0x4e,0x46, 0x5,0x4c,0x5d, 0x7,0x2d,0x2f,\n  0x7,0x2d,0x2e, 0x7,0x2d,0x31, 0x7,0x2d,0x32, 0x5,0x54,0x2a,\n  0x7,0x2d,0x30, 0xf,0x54,0x2d, 0xf,0x54,0x2e, 0x7,0x37,0x56,\n  0x7,0x4d,0x52, 0xf,0x62,0x2c, 0xf,0x62,0x2d, 0x5,0x6b,0x7c,\n  0xf,0x6c,0x60, 0x6,0x21,0x69, 0x5,0x21,0x64, 0x6,0x24,0x46,\n  0x6,0x24,0x49, 0x6,0x24,0x4a, 0x4,0x22,0x5a, 0xf,0x22,0x3d,\n  0xf,0x22,0x3e, 0xf,0x22,0x3f, 0xf,0x22,0x40, 0xf,0x22,0x41,\n  0x6,0x24,0x47, 0x6,0x26,0x7e, 0x6,0x26,0x7d, 0x4,0x23,0x6e,\n  0x6,0x26,0x7b, 0x6,0x26,0x7c, 0xf,0x23,0x72, 0x5,0x25,0x65,\n  0x5,0x25,0x64, 0x6,0x2a,0x66, 0x5,0x25,0x66, 0x6,0x2a,0x67,\n  0x6,0x2a,0x68, 0xf,0x26,0x51, 0xf,0x26,0x52, 0xf,0x26,0x54,\n  0xf,0x26,0x55, 0x6,0x2a,0x65, 0xf,0x26,0x53, 0x5,0x28,0x6c,\n  0x6,0x30,0x28, 0x6,0x30,0x2a, 0x5,0x28,0x6d, 0x4,0x28,0x71,\n  0x4,0x28,0x72, 0x4,0x28,0x73, 0x6,0x30,0x2b, 0x6,0x30,0x27,\n  0x6,0x30,0x29, 0xf,0x2a,0x38, 0xf,0x2a,0x3a, 0xf,0x2a,0x3b,\n  0xf,0x2a,0x3c, 0x6,0x30,0x2c, 0x6,0x30,0x2d, 0x4,0x2c,0x4a,\n  0x6,0x36,0x61, 0x4,0x2c,0x45, 0x4,0x2c,0x44, 0x4,0x2c,0x43,\n  0x4,0x2c,0x47, 0x6,0x36,0x64, 0x6,0x36,0x65, 0x6,0x36,0x5f,\n  0x6,0x36,0x5e, 0x5,0x2c,0x7d, 0x5,0x2d,0x22, 0x6,0x36,0x5b,\n  0x6,0x36,0x62, 0xf,0x2e,0x7c, 0xf,0x2e,0x7d, 0x6,0x36,0x60,\n  0x6,0x36,0x63, 0x6,0x36,0x5a, 0x6,0x36,0x5c, 0x5,0x2d,0x21,\n  0x5,0x2c,0x7e, 0x4,0x31,0x2d, 0x5,0x31,0x6f, 0x6,0x3e,0x57,\n  0x6,0x3e,0x59, 0x6,0x3e,0x58, 0x6,0x3e,0x56, 0x6,0x3e,0x5b,\n  0x5,0x31,0x70, 0xf,0x34,0x28, 0xf,0x34,0x29, 0xf,0x34,0x2a,\n  0xf,0x34,0x2b, 0xf,0x34,0x2c, 0xf,0x34,0x2d, 0xf,0x34,0x2e,\n  0xf,0x34,0x2f, 0x4,0x31,0x2f, 0x6,0x3e,0x5c, 0x5,0x31,0x6e,\n  0x6,0x3e,0x55, 0x5,0x37,0x5e, 0x4,0x37,0x26, 0x5,0x37,0x61,\n  0x6,0x47,0x70, 0x6,0x47,0x6b, 0x4,0x37,0x23, 0x5,0x37,0x5d,\n  0x5,0x37,0x60, 0x6,0x47,0x6e, 0x4,0x37,0x25, 0x5,0x37,0x5f,\n  0x6,0x47,0x6f, 0x6,0x47,0x6c, 0xf,0x3a,0x48, 0xf,0x3a,0x49,\n  0xf,0x3a,0x4a, 0xf,0x3a,0x4b, 0xf,0x3a,0x4c, 0xf,0x3a,0x4d,\n  0xf,0x3a,0x4e, 0xf,0x3a,0x4f, 0x6,0x47,0x6d, 0x5,0x37,0x62,\n  0xf,0x3d,0x6c, 0x6,0x51,0x74, 0x6,0x51,0x70, 0x4,0x3c,0x6b,\n  0x4,0x3c,0x70, 0x5,0x3e,0x63, 0x6,0x51,0x77, 0x5,0x3e,0x64,\n  0x6,0x51,0x72, 0x6,0x51,0x71, 0x6,0x51,0x76, 0x4,0x3c,0x6d,\n  0x6,0x51,0x73, 0x6,0x51,0x6f, 0x6,0x51,0x75, 0xf,0x41,0x27,\n  0xf,0x41,0x28, 0xf,0x41,0x29, 0xf,0x41,0x2a, 0xf,0x41,0x2c,\n  0xf,0x41,0x2d, 0xf,0x41,0x2e, 0x6,0x51,0x6e, 0x6,0x5b,0x7e,\n  0x6,0x5c,0x27, 0x5,0x45,0x3c, 0x5,0x45,0x3a, 0x6,0x5c,0x24,\n  0x6,0x5c,0x2c, 0x4,0x42,0x76, 0x6,0x5c,0x2e, 0x6,0x5c,0x2b,\n  0x6,0x5c,0x26, 0x5,0x45,0x39, 0x7,0x22,0x33, 0xf,0x47,0x57,\n  0xf,0x47,0x58, 0xf,0x47,0x59, 0xf,0x47,0x5a, 0x6,0x5c,0x28,\n  0x6,0x5c,0x25, 0x6,0x5c,0x29, 0x6,0x5c,0x2d, 0x6,0x5c,0x21,\n  0x6,0x5c,0x23, 0x5,0x45,0x3b, 0x6,0x5c,0x2a, 0xf,0x47,0x44,\n  0x6,0x62,0x67, 0x7,0x22,0x30, 0x5,0x4c,0x5e, 0x4,0x49,0x47,\n  0x7,0x22,0x37, 0x4,0x49,0x48, 0x7,0x22,0x35, 0x7,0x22,0x32,\n  0xf,0x4e,0x47, 0xf,0x4e,0x48, 0xf,0x4e,0x49, 0xf,0x4e,0x4a,\n  0xf,0x4e,0x4b, 0xf,0x4e,0x4c, 0xf,0x4e,0x4e, 0xf,0x4e,0x4f,\n  0x7,0x22,0x38, 0x7,0x22,0x36, 0xf,0x4e,0x4d, 0x5,0x4c,0x61,\n  0x5,0x4c,0x5f, 0x7,0x22,0x31, 0x5,0x4c,0x60, 0x7,0x2d,0x35,\n  0x7,0x2d,0x37, 0x5,0x54,0x2c, 0x4,0x50,0x22, 0x5,0x54,0x2d,\n  0x5,0x54,0x2b, 0x7,0x2d,0x36, 0x7,0x2d,0x33, 0x7,0x2d,0x34,\n  0xf,0x54,0x2f, 0xf,0x54,0x30, 0xf,0x54,0x31, 0xf,0x54,0x33,\n  0xf,0x54,0x34, 0xf,0x54,0x35, 0xf,0x54,0x36, 0xf,0x54,0x37,\n  0x7,0x37,0x59, 0x7,0x37,0x57, 0x5,0x5b,0x38, 0xf,0x59,0x72,\n  0xf,0x59,0x73, 0xf,0x59,0x74, 0xf,0x59,0x75, 0x7,0x37,0x58,\n  0x7,0x37,0x5a, 0x7,0x22,0x34, 0x5,0x5b,0x37, 0x7,0x46,0x58,\n  0x5,0x61,0x4e, 0xf,0x59,0x76, 0xf,0x5e,0x56, 0xf,0x5e,0x57,\n  0x7,0x3f,0x42, 0xf,0x62,0x2e, 0x4,0x5f,0x57, 0x7,0x46,0x53,\n  0x7,0x46,0x55, 0x4,0x5f,0x56, 0x7,0x46,0x57, 0x7,0x46,0x56,\n  0xf,0x62,0x2f, 0x7,0x46,0x54, 0x4,0x63,0x36, 0x7,0x4d,0x53,\n  0x7,0x53,0x2c, 0x4,0x66,0x38, 0x7,0x53,0x2d, 0xf,0x67,0x4f,\n  0xf,0x67,0x50, 0x7,0x53,0x2e, 0x5,0x73,0x38, 0x4,0x68,0x66,\n  0x7,0x57,0x65, 0x5,0x73,0x37, 0x7,0x57,0x66, 0x4,0x6a,0x45,\n  0x4,0x6b,0x67, 0xf,0x6b,0x46, 0x7,0x60,0x6c, 0x7,0x64,0x45,\n  0x5,0x79,0x25, 0xf,0x6c,0x25, 0x4,0x6d,0x54, 0x5,0x7a,0x27,\n  0x4,0x6d,0x71, 0x7,0x63,0x4e, 0x7,0x65,0x34, 0x6,0x21,0x6a,\n  0x6,0x2a,0x6a, 0x6,0x2a,0x69, 0xf,0x26,0x56, 0xf,0x26,0x57,\n  0x5,0x28,0x6f, 0x6,0x30,0x2e, 0xf,0x2a,0x3d, 0x6,0x30,0x31,\n  0x6,0x30,0x2f, 0x4,0x31,0x31, 0x6,0x43,0x67, 0x6,0x3e,0x5e,\n  0x6,0x3e,0x5d, 0x4,0x37,0x27, 0x6,0x3e,0x5f, 0x6,0x51,0x7a,\n  0x6,0x51,0x78, 0x6,0x51,0x79, 0x6,0x5c,0x30, 0x4,0x44,0x26,\n  0xf,0x47,0x5b, 0x6,0x5c,0x31, 0x5,0x45,0x3d, 0xf,0x4e,0x51,\n  0x7,0x22,0x3a, 0x7,0x22,0x39, 0x7,0x2d,0x39, 0x5,0x53,0x52,\n  0x7,0x2d,0x38, 0x7,0x37,0x5b, 0x7,0x37,0x5c, 0x5,0x61,0x4f,\n  0x7,0x46,0x59, 0x7,0x4d,0x54, 0x7,0x53,0x2f, 0x6,0x21,0x6b,\n  0xf,0x21,0x39, 0x6,0x24,0x4c, 0x5,0x22,0x4c, 0x6,0x27,0x24,\n  0x4,0x23,0x72, 0x6,0x27,0x23, 0x6,0x27,0x22, 0xf,0x23,0x73,\n  0x5,0x25,0x67, 0xf,0x26,0x58, 0x6,0x2a,0x6b, 0x6,0x30,0x32,\n  0x6,0x30,0x30, 0x6,0x30,0x33, 0x5,0x28,0x70, 0x4,0x2c,0x4b,\n  0xf,0x2f,0x21, 0x6,0x36,0x69, 0x6,0x3e,0x61, 0x5,0x31,0x71,\n  0x5,0x37,0x63, 0x6,0x3e,0x63, 0x6,0x3e,0x60, 0x6,0x3e,0x62,\n  0xf,0x34,0x30, 0x6,0x47,0x71, 0xf,0x3a,0x50, 0x6,0x47,0x73,\n  0x6,0x47,0x72, 0x5,0x3e,0x65, 0xf,0x41,0x2f, 0x5,0x45,0x3e,\n  0x6,0x5c,0x33, 0x6,0x5c,0x32, 0x5,0x4c,0x62, 0x7,0x22,0x3b,\n  0x5,0x54,0x2f, 0x7,0x2d,0x3a, 0xf,0x59,0x77, 0x5,0x61,0x50,\n  0x5,0x6f,0x77, 0x4,0x21,0x4a, 0xf,0x21,0x3a, 0x5,0x21,0x65,\n  0xf,0x21,0x4d, 0xf,0x21,0x5a, 0x6,0x22,0x6b, 0x6,0x22,0x6a,\n  0x5,0x22,0x4d, 0xf,0x22,0x43, 0x5,0x23,0x6c, 0x4,0x23,0x73,\n  0x5,0x25,0x68, 0x6,0x27,0x25, 0x5,0x23,0x6b, 0x5,0x23,0x6e,\n  0x5,0x23,0x6d, 0x6,0x30,0x34, 0x5,0x25,0x69, 0x6,0x2a,0x6c,\n  0x5,0x25,0x6b, 0xf,0x26,0x59, 0x6,0x30,0x35, 0x5,0x25,0x6a,\n  0x5,0x28,0x71, 0x6,0x30,0x37, 0x6,0x30,0x38, 0x5,0x28,0x72,\n  0x6,0x30,0x39, 0x5,0x2d,0x23, 0x6,0x36,0x6c, 0x6,0x36,0x6a,\n  0x5,0x2d,0x24, 0x6,0x36,0x6b, 0x6,0x36,0x6d, 0xf,0x2f,0x22,\n  0x6,0x3e,0x66, 0x5,0x31,0x72, 0x4,0x31,0x34, 0x5,0x31,0x74,\n  0x6,0x47,0x76, 0x6,0x47,0x74, 0x6,0x47,0x75, 0x4,0x37,0x2a,\n  0x6,0x47,0x77, 0xf,0x3a,0x51, 0x6,0x51,0x7b, 0x6,0x51,0x7d,\n  0x6,0x51,0x7c, 0x5,0x48,0x26, 0x4,0x42,0x7a, 0x6,0x5c,0x34,\n  0x5,0x45,0x40, 0x5,0x45,0x3f, 0x6,0x5c,0x35, 0x5,0x45,0x41,\n  0x7,0x2d,0x3d, 0x7,0x22,0x3e, 0x7,0x22,0x3d, 0x7,0x22,0x3c,\n  0x7,0x2d,0x3b, 0x5,0x54,0x30, 0x7,0x2d,0x3c, 0x7,0x2d,0x3e,\n  0xf,0x54,0x38, 0x7,0x37,0x5d, 0x4,0x66,0x39, 0x4,0x68,0x67,\n  0x5,0x79,0x26, 0x6,0x21,0x3e, 0x4,0x21,0x75, 0x4,0x21,0x74,\n  0x6,0x22,0x6c, 0x6,0x24,0x4d, 0x4,0x22,0x5e, 0x5,0x22,0x4e,\n  0x6,0x24,0x4e, 0x6,0x24,0x50, 0x6,0x24,0x51, 0x6,0x24,0x4f,\n  0xf,0x22,0x44, 0x6,0x27,0x29, 0xf,0x23,0x74, 0x6,0x27,0x27,\n  0x6,0x27,0x26, 0x6,0x27,0x28, 0x5,0x23,0x6f, 0x4,0x26,0x2c,\n  0x4,0x26,0x2b, 0x6,0x2a,0x6d, 0x6,0x2a,0x6e, 0x5,0x25,0x6c,\n  0x6,0x2a,0x6f, 0xf,0x26,0x5b, 0x5,0x25,0x6d, 0x4,0x28,0x77,\n  0x6,0x30,0x3a, 0x6,0x30,0x3f, 0x4,0x28,0x7a, 0x4,0x28,0x76,\n  0x5,0x28,0x75, 0x6,0x30,0x3e, 0x6,0x30,0x3d, 0x6,0x30,0x3c,\n  0x6,0x30,0x3b, 0xf,0x2a,0x40, 0xf,0x2a,0x41, 0xf,0x2a,0x42,\n  0xf,0x2a,0x43, 0xf,0x2a,0x44, 0xf,0x2a,0x3f, 0x6,0x30,0x40,\n  0x5,0x28,0x74, 0x6,0x36,0x72, 0x4,0x2c,0x50, 0x6,0x36,0x6f,\n  0x4,0x2c,0x4f, 0x6,0x3e,0x67, 0x6,0x36,0x70, 0x6,0x36,0x6e,\n  0xf,0x2f,0x23, 0xf,0x2f,0x24, 0xf,0x2f,0x26, 0xf,0x2f,0x27,\n  0xf,0x2f,0x28, 0x5,0x2d,0x26, 0x5,0x2d,0x27, 0x6,0x36,0x71,\n  0x6,0x36,0x73, 0x5,0x2d,0x25, 0x6,0x36,0x74, 0x6,0x3e,0x6d,\n  0x6,0x3e,0x69, 0x5,0x31,0x78, 0x5,0x31,0x7a, 0x5,0x31,0x77,\n  0x5,0x31,0x79, 0x5,0x31,0x76, 0x5,0x31,0x7b, 0x6,0x3e,0x70,\n  0x6,0x3e,0x6a, 0xf,0x34,0x31, 0xf,0x34,0x32, 0xf,0x34,0x35,\n  0xf,0x34,0x36, 0xf,0x34,0x37, 0xf,0x34,0x38, 0xf,0x34,0x39,\n  0xf,0x34,0x3a, 0x6,0x3e,0x68, 0x6,0x3e,0x6c, 0x6,0x3e,0x6f,\n  0x6,0x3e,0x6e, 0xf,0x34,0x33, 0x6,0x48,0x23, 0x6,0x48,0x24,\n  0x6,0x48,0x22, 0x4,0x37,0x2c, 0x6,0x47,0x7e, 0x6,0x47,0x7a,\n  0x5,0x37,0x64, 0x4,0x37,0x2d, 0x5,0x37,0x65, 0x6,0x47,0x79,\n  0x6,0x47,0x78, 0x6,0x48,0x25, 0x6,0x48,0x21, 0x6,0x48,0x26,\n  0x6,0x47,0x7c, 0xf,0x3a,0x52, 0xf,0x3a,0x53, 0xf,0x3a,0x54,\n  0x6,0x47,0x7d, 0x4,0x37,0x2e, 0x6,0x52,0x23, 0x5,0x3e,0x69,\n  0x5,0x3e,0x67, 0x6,0x52,0x26, 0x5,0x3e,0x68, 0x6,0x52,0x25,\n  0x6,0x52,0x29, 0x6,0x52,0x21, 0x6,0x51,0x7e, 0x6,0x52,0x27,\n  0x6,0x52,0x24, 0xf,0x41,0x30, 0xf,0x41,0x31, 0xf,0x41,0x32,\n  0x6,0x52,0x22, 0x6,0x52,0x28, 0x5,0x3e,0x66, 0x4,0x42,0x7c,\n  0x4,0x42,0x7e, 0x4,0x42,0x7b, 0x6,0x5c,0x38, 0x6,0x5c,0x36,\n  0x6,0x5c,0x37, 0xf,0x47,0x5d, 0x6,0x5c,0x39, 0x5,0x45,0x42,\n  0x7,0x22,0x40, 0x5,0x4c,0x66, 0xf,0x4e,0x52, 0xf,0x4e,0x53,\n  0xf,0x4e,0x54, 0xf,0x4e,0x55, 0xf,0x4e,0x56, 0x5,0x4c,0x65,\n  0x5,0x4c,0x64, 0x7,0x2d,0x40, 0x7,0x2d,0x3f, 0x7,0x22,0x3f,\n  0xf,0x54,0x39, 0x7,0x30,0x2d, 0x7,0x37,0x5e, 0x7,0x3f,0x43,\n  0x4,0x5f,0x58, 0x5,0x67,0x62, 0xf,0x65,0x27, 0xf,0x65,0x28,\n  0x5,0x6b,0x7d, 0xf,0x67,0x51, 0x5,0x73,0x3a, 0x5,0x21,0x30,\n  0x6,0x21,0x6c, 0x6,0x22,0x6d, 0x6,0x24,0x54, 0x6,0x24,0x53,\n  0x6,0x24,0x52, 0x5,0x22,0x4f, 0x4,0x23,0x75, 0x6,0x27,0x2a,\n  0x4,0x26,0x2d, 0x6,0x2a,0x71, 0x6,0x2a,0x70, 0x5,0x28,0x77,\n  0x6,0x30,0x42, 0x6,0x30,0x43, 0x5,0x28,0x76, 0x6,0x30,0x44,\n  0x6,0x36,0x77, 0x6,0x36,0x78, 0x6,0x36,0x76, 0x6,0x35,0x28,\n  0x6,0x36,0x75, 0x6,0x3e,0x71, 0x6,0x3e,0x72, 0x6,0x48,0x28,\n  0x5,0x37,0x67, 0x6,0x48,0x29, 0x6,0x48,0x27, 0xf,0x3a,0x55,\n  0x6,0x52,0x2a, 0x6,0x5c,0x3a, 0x7,0x22,0x41, 0x7,0x2d,0x41,\n  0x7,0x22,0x42, 0x7,0x22,0x43, 0x7,0x53,0x30, 0x7,0x5e,0x5d,\n  0x5,0x21,0x45, 0x5,0x21,0x46, 0x6,0x22,0x70, 0x6,0x22,0x6e,\n  0x6,0x22,0x72, 0x6,0x22,0x71, 0xf,0x21,0x5c, 0xf,0x21,0x5d,\n  0xf,0x21,0x5e, 0x6,0x22,0x73, 0x5,0x21,0x66, 0x6,0x22,0x6f,\n  0x6,0x24,0x57, 0x6,0x24,0x55, 0x6,0x24,0x59, 0x3,0x23,0x59,\n  0xf,0x22,0x45, 0xf,0x22,0x46, 0x6,0x24,0x56, 0x5,0x22,0x53,\n  0x6,0x24,0x5a, 0x6,0x24,0x58, 0x5,0x22,0x52, 0x6,0x27,0x2e,\n  0x5,0x23,0x71, 0x5,0x23,0x78, 0x5,0x23,0x79, 0x6,0x27,0x30,\n  0x5,0x23,0x76, 0x5,0x23,0x75, 0x5,0x23,0x77, 0x5,0x23,0x72,\n  0x5,0x23,0x73, 0x6,0x27,0x31, 0x6,0x27,0x2c, 0x6,0x27,0x32,\n  0xf,0x23,0x76, 0xf,0x23,0x77, 0xf,0x23,0x79, 0xf,0x23,0x7a,\n  0xf,0x23,0x7b, 0xf,0x23,0x7e, 0xf,0x24,0x21, 0x6,0x27,0x2d,\n  0x6,0x27,0x2f, 0x4,0x23,0x7d, 0xf,0x23,0x7d, 0x6,0x27,0x34,\n  0x6,0x27,0x33, 0x4,0x23,0x7c, 0x6,0x27,0x2b, 0x5,0x23,0x7a,\n  0x4,0x26,0x30, 0x5,0x25,0x75, 0x6,0x2a,0x75, 0x4,0x26,0x33,\n  0x6,0x2a,0x72, 0x5,0x25,0x73, 0x5,0x25,0x74, 0x6,0x2a,0x7a,\n  0x5,0x25,0x71, 0x6,0x2a,0x77, 0x6,0x2a,0x7c, 0x5,0x25,0x6f,\n  0x6,0x2a,0x79, 0x5,0x25,0x72, 0x5,0x25,0x70, 0x6,0x2a,0x74,\n  0x6,0x27,0x35, 0xf,0x26,0x5c, 0xf,0x26,0x5d, 0xf,0x26,0x5e,\n  0xf,0x26,0x5f, 0xf,0x26,0x60, 0xf,0x26,0x61, 0xf,0x26,0x63,\n  0xf,0x26,0x64, 0xf,0x26,0x65, 0xf,0x26,0x66, 0xf,0x26,0x67,\n  0xf,0x26,0x68, 0x6,0x2a,0x78, 0x6,0x2d,0x2b, 0x6,0x2a,0x73,\n  0x5,0x25,0x76, 0x6,0x30,0x50, 0x6,0x30,0x4a, 0x5,0x28,0x78,\n  0x6,0x30,0x4b, 0x5,0x28,0x79, 0x4,0x28,0x7e, 0x5,0x28,0x7a,\n  0x6,0x30,0x46, 0x6,0x30,0x49, 0x6,0x30,0x52, 0xf,0x2a,0x45,\n  0xf,0x2a,0x47, 0xf,0x2a,0x48, 0xf,0x2a,0x4b, 0xf,0x2a,0x4c,\n  0xf,0x2a,0x4d, 0xf,0x2a,0x4e, 0xf,0x2a,0x4f, 0xf,0x2a,0x50,\n  0xf,0x2a,0x51, 0x6,0x30,0x4d, 0x6,0x30,0x45, 0x6,0x30,0x47,\n  0x6,0x30,0x51, 0x6,0x30,0x4f, 0x6,0x30,0x4c, 0xf,0x2a,0x4a,\n  0xf,0x2a,0x46, 0x6,0x30,0x48, 0x5,0x28,0x7b, 0x4,0x28,0x7c,\n  0x5,0x2d,0x2c, 0x5,0x2d,0x29, 0x4,0x2c,0x52, 0x4,0x2c,0x59,\n  0x5,0x2d,0x2a, 0x6,0x37,0x21, 0x4,0x2c,0x58, 0x5,0x2d,0x34,\n  0x5,0x2d,0x30, 0x5,0x2d,0x2b, 0x6,0x36,0x7d, 0x5,0x2d,0x31,\n  0x5,0x2d,0x2d, 0x5,0x2d,0x2f, 0x6,0x37,0x24, 0x6,0x36,0x7e,\n  0x4,0x2c,0x62, 0x6,0x36,0x79, 0x4,0x2c,0x63, 0x4,0x2c,0x56,\n  0x6,0x37,0x25, 0x6,0x37,0x22, 0x6,0x37,0x23, 0x6,0x36,0x7b,\n  0xf,0x2f,0x29, 0xf,0x2f,0x2a, 0xf,0x2f,0x2b, 0xf,0x2f,0x2c,\n  0xf,0x2f,0x2d, 0xf,0x2f,0x2e, 0xf,0x2f,0x2f, 0xf,0x2f,0x31,\n  0xf,0x2f,0x33, 0x5,0x2d,0x28, 0xf,0x2f,0x30, 0xf,0x2f,0x32,\n  0x5,0x2d,0x33, 0x4,0x2c,0x5d, 0x5,0x2d,0x35, 0x5,0x2d,0x36,\n  0x5,0x2d,0x32, 0x6,0x3b,0x4e, 0x4,0x31,0x3a, 0x6,0x3f,0x2b,\n  0x6,0x3f,0x24, 0x6,0x3f,0x26, 0x4,0x31,0x3c, 0x4,0x31,0x3e,\n  0x5,0x31,0x7e, 0x6,0x3e,0x79, 0x6,0x3f,0x22, 0x6,0x3e,0x7b,\n  0x5,0x32,0x28, 0x4,0x31,0x38, 0x6,0x3f,0x27, 0x6,0x3f,0x2c,\n  0x6,0x3f,0x29, 0x6,0x3e,0x74, 0x6,0x3f,0x2a, 0x4,0x31,0x40,\n  0x4,0x31,0x3b, 0x5,0x31,0x7c, 0x5,0x32,0x26, 0x6,0x3e,0x73,\n  0x4,0x31,0x36, 0x5,0x31,0x7d, 0x5,0x32,0x24, 0x6,0x3f,0x28,\n  0x6,0x3f,0x23, 0xf,0x34,0x3b, 0xf,0x34,0x3c, 0xf,0x34,0x3d,\n  0xf,0x34,0x3e, 0xf,0x34,0x40, 0xf,0x34,0x41, 0xf,0x34,0x42,\n  0xf,0x34,0x43, 0xf,0x34,0x44, 0xf,0x34,0x46, 0xf,0x34,0x47,\n  0xf,0x34,0x48, 0x6,0x3e,0x77, 0x6,0x32,0x2a, 0x6,0x3e,0x7d,\n  0x6,0x3e,0x7c, 0x6,0x3e,0x7e, 0x6,0x3f,0x21, 0x6,0x3f,0x25,\n  0x4,0x31,0x3f, 0x5,0x32,0x29, 0x5,0x32,0x21, 0x5,0x32,0x27,\n  0x5,0x32,0x23, 0x5,0x32,0x22, 0x5,0x32,0x25, 0x5,0x32,0x2a,\n  0x5,0x37,0x69, 0x6,0x48,0x33, 0x5,0x37,0x6e, 0x6,0x48,0x2a,\n  0x6,0x48,0x34, 0x5,0x37,0x6f, 0x5,0x37,0x6c, 0x5,0x37,0x6b,\n  0x4,0x37,0x30, 0x5,0x37,0x70, 0x5,0x37,0x6a, 0x5,0x37,0x71,\n  0x5,0x37,0x72, 0x5,0x37,0x74, 0x6,0x48,0x2e, 0x6,0x3e,0x7a,\n  0x4,0x37,0x31, 0x6,0x48,0x2f, 0x5,0x37,0x6d, 0x4,0x37,0x33,\n  0x5,0x37,0x68, 0x5,0x37,0x73, 0xf,0x3a,0x56, 0xf,0x3a,0x58,\n  0xf,0x3a,0x59, 0xf,0x3a,0x5a, 0xf,0x3a,0x5b, 0x6,0x48,0x2d,\n  0x5,0x37,0x75, 0x6,0x48,0x32, 0x6,0x48,0x2c, 0x6,0x48,0x31,\n  0x6,0x48,0x30, 0xf,0x3a,0x5c, 0x5,0x3e,0x70, 0x6,0x52,0x2d,\n  0x5,0x3e,0x6c, 0x4,0x3c,0x7a, 0x5,0x3e,0x71, 0x6,0x52,0x2e,\n  0x6,0x5c,0x3b, 0x4,0x3c,0x7d, 0x6,0x52,0x35, 0x5,0x3e,0x6a,\n  0x5,0x3e,0x73, 0x6,0x52,0x2b, 0x5,0x3e,0x6f, 0x6,0x52,0x2c,\n  0x6,0x52,0x39, 0x6,0x52,0x30, 0x6,0x52,0x38, 0x5,0x3e,0x6e,\n  0x6,0x52,0x36, 0x6,0x5c,0x40, 0xf,0x41,0x37, 0x5,0x3e,0x72,\n  0xf,0x41,0x33, 0xf,0x41,0x34, 0xf,0x41,0x36, 0xf,0x41,0x38,\n  0xf,0x41,0x39, 0x6,0x52,0x3a, 0x6,0x52,0x32, 0x6,0x52,0x37,\n  0x5,0x3e,0x6b, 0xf,0x41,0x35, 0x6,0x52,0x2f, 0x5,0x45,0x43,\n  0x5,0x45,0x4b, 0x5,0x45,0x49, 0x6,0x5c,0x41, 0x6,0x5c,0x3c,\n  0x4,0x43,0x2b, 0x4,0x43,0x26, 0x4,0x43,0x25, 0x5,0x45,0x44,\n  0x5,0x45,0x48, 0x5,0x45,0x47, 0x5,0x45,0x4a, 0x5,0x45,0x4e,\n  0x6,0x5c,0x3e, 0x6,0x5c,0x47, 0x5,0x45,0x4d, 0x5,0x45,0x45,\n  0x5,0x45,0x46, 0x6,0x5c,0x42, 0x4,0x43,0x29, 0x6,0x5c,0x46,\n  0x4,0x43,0x27, 0x4,0x43,0x23, 0x5,0x45,0x4c, 0x6,0x5c,0x45,\n  0x6,0x5c,0x43, 0x6,0x5c,0x3f, 0x4,0x43,0x28, 0xf,0x47,0x5e,\n  0xf,0x47,0x5f, 0xf,0x47,0x60, 0xf,0x47,0x61, 0x6,0x52,0x31,\n  0x4,0x49,0x4e, 0x7,0x22,0x49, 0x4,0x49,0x52, 0x7,0x22,0x45,\n  0x5,0x4c,0x69, 0x7,0x22,0x50, 0x7,0x22,0x4a, 0x5,0x4c,0x6e,\n  0x5,0x4c,0x67, 0x7,0x22,0x47, 0x7,0x22,0x51, 0x5,0x4c,0x6f,\n  0x7,0x22,0x4f, 0x7,0x22,0x4c, 0x7,0x22,0x4d, 0x5,0x4c,0x70,\n  0x5,0x4c,0x6a, 0x5,0x4c,0x6d, 0x7,0x2d,0x44, 0x7,0x22,0x46,\n  0xf,0x4e,0x57, 0xf,0x4e,0x58, 0xf,0x4e,0x59, 0xf,0x4e,0x5b,\n  0xf,0x4e,0x5c, 0x7,0x22,0x44, 0x7,0x22,0x4b, 0x7,0x22,0x4e,\n  0x5,0x4c,0x6b, 0x7,0x22,0x48, 0x4,0x49,0x51, 0x5,0x54,0x33,\n  0x4,0x50,0x23, 0x7,0x2d,0x4a, 0x4,0x50,0x24, 0x5,0x54,0x35,\n  0x7,0x2d,0x42, 0x5,0x54,0x38, 0x5,0x54,0x34, 0x5,0x54,0x31,\n  0x7,0x2d,0x47, 0x7,0x2d,0x43, 0x5,0x5b,0x39, 0x5,0x54,0x32,\n  0xf,0x54,0x3a, 0xf,0x54,0x3b, 0xf,0x54,0x3c, 0x7,0x2d,0x45,\n  0x7,0x2d,0x49, 0x7,0x2d,0x48, 0x7,0x2d,0x4b, 0x7,0x2d,0x46,\n  0x7,0x2d,0x4d, 0x5,0x54,0x37, 0x4,0x56,0x29, 0x5,0x5b,0x3b,\n  0x5,0x61,0x55, 0x7,0x37,0x60, 0x5,0x5b,0x3f, 0x7,0x37,0x66,\n  0x5,0x5b,0x3a, 0x7,0x37,0x62, 0x7,0x37,0x64, 0x7,0x37,0x61,\n  0x5,0x5b,0x3d, 0x7,0x37,0x5f, 0x7,0x37,0x65, 0xf,0x59,0x79,\n  0xf,0x59,0x7a, 0xf,0x59,0x7b, 0x4,0x56,0x2a, 0x7,0x37,0x63,\n  0x7,0x37,0x67, 0x7,0x39,0x27, 0x5,0x5b,0x40, 0x7,0x46,0x5a,\n  0x5,0x61,0x54, 0x7,0x3f,0x47, 0x4,0x5a,0x7e, 0x5,0x61,0x51,\n  0x5,0x61,0x52, 0x7,0x3f,0x49, 0xf,0x5e,0x59, 0x5,0x61,0x53,\n  0x7,0x3f,0x46, 0xf,0x5e,0x58, 0x7,0x3f,0x45, 0x7,0x3f,0x48,\n  0x5,0x61,0x56, 0x5,0x61,0x57, 0x7,0x46,0x5c, 0x4,0x5f,0x5b,\n  0x7,0x46,0x5e, 0x5,0x67,0x65, 0x4,0x5f,0x59, 0x7,0x46,0x5d,\n  0x7,0x46,0x5f, 0x7,0x46,0x60, 0xf,0x62,0x30, 0xf,0x62,0x31,\n  0xf,0x62,0x32, 0x7,0x46,0x61, 0x7,0x46,0x62, 0x7,0x46,0x5b,\n  0x4,0x63,0x38, 0x7,0x4d,0x55, 0x4,0x63,0x37, 0x5,0x6b,0x7e,\n  0x7,0x4d,0x57, 0xf,0x65,0x29, 0x7,0x4d,0x56, 0x5,0x5b,0x3e,\n  0x5,0x6f,0x78, 0x5,0x6f,0x7a, 0x5,0x6f,0x79, 0x7,0x53,0x32,\n  0x7,0x53,0x31, 0x5,0x73,0x3b, 0x4,0x68,0x69, 0x4,0x68,0x6a,\n  0x7,0x57,0x67, 0x7,0x57,0x69, 0x7,0x57,0x68, 0x7,0x57,0x6a,\n  0x5,0x73,0x3c, 0x7,0x5e,0x5e, 0x4,0x6b,0x6a, 0x4,0x6b,0x69,\n  0x7,0x5e,0x60, 0x5,0x77,0x58, 0x7,0x5e,0x5f, 0x5,0x79,0x27,\n  0xf,0x6c,0x26, 0x5,0x7a,0x28, 0x5,0x7a,0x66, 0x5,0x7b,0x3c,\n  0x7,0x63,0x4f, 0x5,0x7c,0x34, 0x6,0x21,0x6d, 0x4,0x21,0x25,\n  0x4,0x22,0x62, 0x5,0x22,0x54, 0x6,0x24,0x5b, 0x6,0x24,0x5c,\n  0x5,0x22,0x55, 0x6,0x23,0x7e, 0x4,0x23,0x7e, 0x5,0x23,0x7b,\n  0x6,0x2a,0x7d, 0xf,0x26,0x6a, 0xf,0x26,0x69, 0x6,0x30,0x55,\n  0x6,0x30,0x54, 0x6,0x30,0x56, 0x6,0x30,0x53, 0x6,0x37,0x26,\n  0x5,0x32,0x2b, 0x4,0x31,0x41, 0x6,0x3f,0x2d, 0x5,0x37,0x76,\n  0x6,0x5c,0x48, 0x7,0x22,0x52, 0x5,0x54,0x39, 0xf,0x4e,0x5d,\n  0xf,0x54,0x3d, 0x7,0x37,0x68, 0x7,0x3f,0x4a, 0x7,0x46,0x63,\n  0x5,0x67,0x66, 0x7,0x5e,0x61, 0x7,0x65,0x35, 0x6,0x21,0x6f,\n  0x6,0x21,0x71, 0x6,0x21,0x70, 0xf,0x21,0x3b, 0x5,0x21,0x68,\n  0x5,0x21,0x67, 0x5,0x23,0x7c, 0x6,0x27,0x37, 0xf,0x26,0x6b,\n  0x6,0x30,0x57, 0x6,0x37,0x28, 0xf,0x2f,0x34, 0x6,0x3f,0x2e,\n  0xf,0x3a,0x5e, 0x7,0x22,0x53, 0x7,0x46,0x64, 0x6,0x22,0x74,\n  0x5,0x22,0x56, 0x6,0x2a,0x7e, 0x6,0x30,0x59, 0x6,0x30,0x58,\n  0x4,0x2c,0x65, 0x6,0x3f,0x2f, 0x5,0x35,0x5f, 0x5,0x32,0x2d,\n  0x6,0x3f,0x30, 0x5,0x32,0x2c, 0x6,0x48,0x36, 0xf,0x3a,0x5f,\n  0xf,0x3a,0x60, 0xf,0x3a,0x61, 0x7,0x22,0x54, 0x7,0x3f,0x4b,\n  0x4,0x21,0x77, 0x6,0x22,0x75, 0x6,0x22,0x76, 0x5,0x22,0x59,\n  0x5,0x22,0x58, 0x4,0x22,0x64, 0x5,0x22,0x5b, 0x6,0x24,0x61,\n  0x6,0x24,0x60, 0x6,0x24,0x5e, 0xf,0x22,0x48, 0xf,0x22,0x4a,\n  0x5,0x22,0x57, 0x6,0x24,0x5f, 0x5,0x22,0x5a, 0x6,0x27,0x41,\n  0x6,0x27,0x3b, 0x5,0x24,0x22, 0x6,0x27,0x38, 0x5,0x23,0x7e,\n  0x5,0x23,0x7d, 0x5,0x24,0x23, 0x6,0x27,0x40, 0x5,0x24,0x24,\n  0x6,0x27,0x3c, 0x6,0x27,0x3f, 0x5,0x24,0x21, 0xf,0x24,0x24,\n  0x6,0x27,0x39, 0x6,0x27,0x3a, 0x6,0x27,0x3d, 0x5,0x24,0x25,\n  0x6,0x27,0x3e, 0x5,0x25,0x7b, 0x4,0x26,0x35, 0x5,0x25,0x79,\n  0x5,0x25,0x7d, 0x5,0x25,0x7a, 0x5,0x25,0x7c, 0x5,0x26,0x21,\n  0x6,0x2b,0x23, 0x5,0x25,0x7e, 0x5,0x26,0x22, 0x6,0x2b,0x22,\n  0xf,0x26,0x6c, 0x5,0x26,0x23, 0x6,0x2b,0x21, 0x5,0x25,0x77,\n  0x5,0x25,0x78, 0x5,0x28,0x7e, 0x6,0x30,0x62, 0x5,0x28,0x7d,\n  0x5,0x29,0x22, 0x5,0x28,0x7c, 0x5,0x29,0x23, 0x6,0x30,0x5f,\n  0x5,0x29,0x25, 0x5,0x29,0x24, 0x6,0x30,0x5b, 0x5,0x29,0x21,\n  0x6,0x30,0x5a, 0x6,0x30,0x65, 0x6,0x30,0x67, 0xf,0x2a,0x53,\n  0xf,0x2a,0x54, 0xf,0x2a,0x55, 0x4,0x29,0x26, 0x6,0x30,0x61,\n  0x6,0x30,0x60, 0x6,0x30,0x5c, 0x6,0x30,0x5d, 0x6,0x30,0x66,\n  0x6,0x30,0x64, 0x6,0x30,0x5e, 0x5,0x2d,0x38, 0x6,0x37,0x32,\n  0x5,0x2d,0x37, 0x6,0x37,0x2e, 0x5,0x2d,0x39, 0x5,0x32,0x2e,\n  0x6,0x37,0x2a, 0x4,0x2c,0x69, 0x4,0x2c,0x6a, 0x6,0x37,0x2f,\n  0x5,0x2d,0x3a, 0x6,0x37,0x2d, 0x6,0x37,0x31, 0x6,0x37,0x30,\n  0x4,0x2c,0x67, 0x6,0x37,0x33, 0x6,0x37,0x34, 0xf,0x2f,0x36,\n  0xf,0x2f,0x35, 0x6,0x37,0x29, 0x6,0x37,0x2b, 0x6,0x3f,0x35,\n  0x5,0x32,0x35, 0x4,0x31,0x46, 0x4,0x31,0x43, 0x4,0x31,0x44,\n  0x5,0x32,0x33, 0x5,0x32,0x2f, 0x6,0x3f,0x3a, 0x5,0x32,0x30,\n  0x5,0x32,0x34, 0x6,0x3f,0x3c, 0x5,0x32,0x31, 0x5,0x32,0x36,\n  0x6,0x3f,0x36, 0x6,0x3f,0x3b, 0x6,0x3f,0x32, 0x5,0x32,0x32,\n  0x6,0x3f,0x34, 0xf,0x34,0x49, 0xf,0x34,0x4a, 0xf,0x34,0x4b,\n  0xf,0x34,0x4c, 0x6,0x3f,0x39, 0x6,0x3f,0x31, 0x6,0x3f,0x3d,\n  0x6,0x3f,0x37, 0x6,0x3f,0x33, 0x6,0x48,0x39, 0x4,0x37,0x3e,\n  0x6,0x48,0x3e, 0x5,0x37,0x79, 0x5,0x37,0x7a, 0x4,0x37,0x38,\n  0x5,0x37,0x78, 0x6,0x48,0x3a, 0x4,0x37,0x37, 0x5,0x38,0x21,\n  0x5,0x38,0x22, 0x6,0x3f,0x38, 0x6,0x48,0x40, 0x6,0x48,0x3d,\n  0x6,0x48,0x3b, 0x5,0x37,0x7d, 0x6,0x48,0x38, 0xf,0x3a,0x62,\n  0xf,0x3a,0x63, 0x6,0x48,0x3f, 0x5,0x37,0x7b, 0x5,0x37,0x77,\n  0x6,0x48,0x41, 0x5,0x37,0x7e, 0xf,0x40,0x2b, 0x5,0x3e,0x78,\n  0x4,0x3d,0x22, 0x5,0x45,0x52, 0x4,0x3d,0x25, 0x5,0x3e,0x75,\n  0x5,0x3e,0x74, 0x4,0x3d,0x24, 0x5,0x3e,0x77, 0x5,0x3e,0x7a,\n  0x6,0x52,0x3e, 0x6,0x52,0x3b, 0x6,0x52,0x3d, 0x6,0x5c,0x4b,\n  0x5,0x3e,0x7b, 0x6,0x52,0x3c, 0x5,0x3e,0x76, 0x5,0x3e,0x79,\n  0x6,0x5c,0x4c, 0x6,0x5c,0x4d, 0x5,0x45,0x58, 0x4,0x43,0x34,\n  0x5,0x45,0x4f, 0x5,0x45,0x55, 0x6,0x5c,0x4a, 0x5,0x45,0x54,\n  0x5,0x45,0x57, 0xf,0x47,0x62, 0x5,0x45,0x59, 0x5,0x45,0x50,\n  0x5,0x45,0x56, 0x5,0x45,0x51, 0x7,0x22,0x57, 0x7,0x22,0x59,\n  0x5,0x4c,0x74, 0x5,0x4c,0x73, 0x5,0x4c,0x75, 0x4,0x49,0x57,\n  0x5,0x4c,0x76, 0x5,0x4c,0x78, 0x4,0x49,0x56, 0x7,0x22,0x56,\n  0x7,0x22,0x55, 0x7,0x22,0x58, 0x5,0x4c,0x77, 0x5,0x4c,0x79,\n  0x5,0x4c,0x72, 0x7,0x2d,0x50, 0x5,0x54,0x3e, 0x7,0x2d,0x52,\n  0x7,0x2d,0x58, 0x5,0x54,0x3d, 0x4,0x50,0x28, 0x7,0x2d,0x57,\n  0x7,0x2d,0x56, 0x5,0x54,0x3b, 0x7,0x2d,0x51, 0x5,0x54,0x3c,\n  0x7,0x2d,0x54, 0x5,0x54,0x3f, 0x7,0x2d,0x4f, 0x4,0x50,0x2a,\n  0x5,0x5b,0x41, 0x5,0x5b,0x42, 0x4,0x56,0x2c, 0x7,0x37,0x6b,\n  0xf,0x59,0x7c, 0x7,0x37,0x69, 0x7,0x37,0x6a, 0x5,0x61,0x5a,\n  0x5,0x61,0x59, 0x5,0x61,0x58, 0x7,0x46,0x66, 0x4,0x5f,0x5d,\n  0x5,0x67,0x67, 0x4,0x5f,0x5c, 0x7,0x46,0x65, 0x7,0x46,0x67,\n  0x5,0x67,0x68, 0xf,0x62,0x33, 0x7,0x4d,0x58, 0x5,0x6c,0x21,\n  0x7,0x53,0x33, 0x7,0x57,0x6c, 0x5,0x6f,0x7b, 0x5,0x73,0x3d,\n  0x7,0x57,0x6b, 0x7,0x5e,0x62, 0x7,0x5e,0x63, 0x5,0x77,0x59,\n  0x7,0x63,0x50, 0x7,0x63,0x75, 0x4,0x21,0x78, 0x6,0x27,0x42,\n  0x5,0x24,0x26, 0x4,0x24,0x26, 0x6,0x2b,0x24, 0xf,0x26,0x6d,\n  0xf,0x26,0x6e, 0x6,0x30,0x69, 0x6,0x30,0x68, 0xf,0x2a,0x56,\n  0x6,0x37,0x35, 0x5,0x32,0x37, 0x6,0x48,0x42, 0x5,0x38,0x23,\n  0x6,0x52,0x3f, 0x5,0x45,0x5a, 0xf,0x47,0x64, 0x7,0x4d,0x59,\n  0xf,0x6a,0x4e, 0x6,0x21,0x72, 0x6,0x21,0x73, 0x6,0x22,0x78,\n  0x5,0x21,0x69, 0x6,0x22,0x77, 0xf,0x21,0x62, 0x4,0x22,0x67,\n  0x4,0x24,0x27, 0x5,0x24,0x27, 0xf,0x24,0x26, 0x6,0x29,0x5e,\n  0x6,0x2b,0x25, 0x5,0x26,0x24, 0x5,0x26,0x25, 0x6,0x30,0x6a,\n  0x6,0x30,0x41, 0x4,0x2f,0x27, 0x6,0x37,0x36, 0x4,0x31,0x4a,\n  0x6,0x48,0x43, 0x5,0x3e,0x7c, 0x5,0x45,0x5b, 0x7,0x22,0x5b,\n  0xf,0x47,0x65, 0x6,0x5c,0x4e, 0xf,0x4e,0x5f, 0x7,0x22,0x5c,\n  0x7,0x22,0x5d, 0x4,0x56,0x26, 0x7,0x57,0x6d, 0x4,0x22,0x68,\n  0x5,0x22,0x5e, 0x6,0x24,0x64, 0x5,0x22,0x5d, 0x6,0x24,0x63,\n  0x6,0x24,0x62, 0x6,0x24,0x66, 0x4,0x22,0x69, 0x6,0x24,0x65,\n  0x6,0x27,0x45, 0x5,0x24,0x2a, 0x5,0x24,0x2c, 0x5,0x24,0x2b,\n  0x5,0x24,0x28, 0x5,0x24,0x29, 0x6,0x27,0x44, 0x6,0x27,0x48,\n  0x6,0x2b,0x28, 0x6,0x27,0x43, 0x6,0x27,0x46, 0x5,0x24,0x2d,\n  0x5,0x26,0x2c, 0x5,0x26,0x28, 0x5,0x26,0x27, 0x5,0x26,0x2b,\n  0x5,0x26,0x2a, 0x4,0x26,0x39, 0x6,0x2b,0x26, 0x6,0x2b,0x29,\n  0x6,0x2b,0x27, 0x4,0x26,0x3e, 0x6,0x2b,0x2a, 0xf,0x26,0x70,\n  0xf,0x26,0x71, 0xf,0x26,0x72, 0xf,0x26,0x73, 0xf,0x26,0x74,\n  0x5,0x26,0x29, 0x5,0x26,0x2d, 0x6,0x2b,0x2b, 0x5,0x29,0x28,\n  0x5,0x29,0x2a, 0x4,0x29,0x27, 0x6,0x30,0x6c, 0x5,0x29,0x29,\n  0x6,0x30,0x6d, 0xf,0x2a,0x57, 0xf,0x2a,0x59, 0xf,0x2a,0x58,\n  0xf,0x2a,0x5a, 0xf,0x2a,0x5b, 0xf,0x2a,0x5c, 0x6,0x30,0x6b,\n  0x5,0x2d,0x3d, 0x5,0x2d,0x40, 0x5,0x2d,0x3e, 0x5,0x2d,0x41,\n  0x5,0x2d,0x3b, 0x6,0x37,0x3a, 0x6,0x37,0x3b, 0x4,0x2c,0x6e,\n  0x5,0x2d,0x42, 0x5,0x2d,0x3f, 0x6,0x37,0x3c, 0x5,0x2d,0x3c,\n  0x6,0x37,0x39, 0xf,0x2f,0x37, 0x6,0x37,0x37, 0x6,0x37,0x38,\n  0x5,0x2c,0x7b, 0x5,0x32,0x44, 0x5,0x32,0x3b, 0x5,0x32,0x39,\n  0x4,0x31,0x4d, 0x6,0x3f,0x43, 0x5,0x32,0x42, 0x6,0x3f,0x48,\n  0x6,0x3f,0x3e, 0x5,0x32,0x3d, 0x5,0x32,0x3c, 0x5,0x32,0x3f,\n  0x5,0x32,0x3e, 0x6,0x3f,0x3f, 0x6,0x3f,0x40, 0x5,0x32,0x41,\n  0x5,0x32,0x38, 0x4,0x31,0x50, 0x6,0x3f,0x44, 0x5,0x32,0x43,\n  0x5,0x38,0x28, 0x6,0x3f,0x41, 0xf,0x34,0x4d, 0xf,0x34,0x4e,\n  0xf,0x34,0x4f, 0xf,0x34,0x50, 0xf,0x34,0x51, 0xf,0x34,0x52,\n  0xf,0x34,0x53, 0x6,0x3f,0x47, 0x6,0x46,0x3d, 0x5,0x32,0x3a,\n  0x6,0x3f,0x42, 0x5,0x32,0x40, 0x6,0x48,0x4a, 0x4,0x31,0x4b,\n  0x5,0x38,0x2b, 0x5,0x38,0x2c, 0x5,0x38,0x2d, 0x6,0x48,0x4b,\n  0x6,0x48,0x4e, 0x5,0x38,0x27, 0x6,0x48,0x4d, 0x4,0x37,0x42,\n  0x5,0x38,0x2a, 0x5,0x38,0x26, 0x6,0x48,0x49, 0x4,0x37,0x43,\n  0x5,0x38,0x25, 0x6,0x52,0x44, 0x6,0x48,0x46, 0x6,0x48,0x47,\n  0x5,0x38,0x24, 0xf,0x3a,0x65, 0xf,0x3a,0x67, 0xf,0x3a,0x68,\n  0xf,0x3a,0x69, 0xf,0x3a,0x6a, 0x6,0x48,0x48, 0x6,0x48,0x4c,\n  0xf,0x3a,0x66, 0x4,0x3d,0x2b, 0x5,0x3f,0x25, 0x4,0x3d,0x2c,\n  0x6,0x52,0x41, 0x6,0x52,0x42, 0x5,0x3f,0x22, 0x5,0x3f,0x23,\n  0x6,0x52,0x47, 0x5,0x3e,0x7d, 0x6,0x52,0x45, 0xf,0x41,0x3a,\n  0xf,0x41,0x3b, 0xf,0x41,0x3c, 0x6,0x52,0x43, 0x6,0x52,0x48,\n  0x5,0x3f,0x24, 0x5,0x3e,0x7e, 0x6,0x52,0x46, 0x4,0x43,0x38,\n  0x5,0x45,0x5c, 0x4,0x43,0x37, 0x5,0x45,0x5e, 0x6,0x5c,0x50,\n  0x5,0x45,0x60, 0x5,0x45,0x5f, 0x6,0x5c,0x4f, 0xf,0x47,0x67,\n  0xf,0x47,0x68, 0xf,0x47,0x69, 0xf,0x47,0x6a, 0xf,0x47,0x6b,\n  0xf,0x47,0x6c, 0xf,0x47,0x6d, 0xf,0x47,0x6e, 0xf,0x47,0x6f,\n  0x6,0x5c,0x51, 0x6,0x60,0x31, 0xf,0x4a,0x54, 0x7,0x22,0x5e,\n  0x4,0x49,0x5a, 0x4,0x37,0x3f, 0x4,0x49,0x58, 0x5,0x4c,0x7a,\n  0x4,0x49,0x59, 0x7,0x2d,0x59, 0x7,0x22,0x62, 0x5,0x4c,0x7c,\n  0x5,0x4c,0x7e, 0xf,0x4e,0x60, 0xf,0x4e,0x62, 0xf,0x4e,0x63,\n  0x7,0x22,0x5f, 0x7,0x22,0x61, 0x7,0x22,0x63, 0x7,0x22,0x60,\n  0x5,0x4c,0x7b, 0x5,0x54,0x41, 0x5,0x4c,0x7d, 0x5,0x54,0x43,\n  0x5,0x54,0x40, 0x4,0x50,0x2d, 0x5,0x54,0x44, 0xf,0x54,0x3f,\n  0xf,0x54,0x40, 0xf,0x54,0x41, 0xf,0x54,0x42, 0x7,0x37,0x6e,\n  0x5,0x5b,0x44, 0x7,0x37,0x6c, 0x7,0x37,0x6d, 0xf,0x59,0x7e,\n  0xf,0x5a,0x21, 0xf,0x5a,0x22, 0xf,0x5a,0x23, 0x5,0x5b,0x43,\n  0x7,0x37,0x6f, 0x5,0x5b,0x45, 0x7,0x3f,0x51, 0x7,0x3f,0x4e,\n  0x5,0x61,0x5b, 0xf,0x5e,0x5a, 0xf,0x5e,0x5c, 0x7,0x3f,0x4d,\n  0x7,0x3f,0x4f, 0x7,0x3f,0x4c, 0xf,0x5e,0x5b, 0x7,0x3f,0x50,\n  0x7,0x46,0x68, 0x7,0x46,0x69, 0x5,0x61,0x5c, 0x5,0x67,0x69,\n  0xf,0x62,0x34, 0xf,0x62,0x35, 0xf,0x62,0x36, 0x5,0x67,0x6a,\n  0x5,0x6c,0x24, 0x5,0x6c,0x23, 0x7,0x4d,0x5d, 0x7,0x4d,0x5b,\n  0x5,0x6c,0x22, 0x7,0x4d,0x5a, 0x7,0x4d,0x5c, 0x7,0x4d,0x5e,\n  0x4,0x66,0x3c, 0x7,0x53,0x34, 0x7,0x53,0x61, 0x5,0x73,0x3e,\n  0x7,0x57,0x6e, 0x7,0x57,0x6f, 0x5,0x75,0x6a, 0xf,0x6a,0x4f,\n  0x7,0x5b,0x4d, 0x7,0x5e,0x64, 0x7,0x62,0x36, 0x5,0x7a,0x68,\n  0x5,0x7a,0x67, 0xf,0x6c,0x7b, 0xf,0x21,0x63, 0xf,0x22,0x4b,\n  0xf,0x22,0x4c, 0x6,0x2b,0x2c, 0xf,0x24,0x27, 0x6,0x2b,0x2d,\n  0x6,0x2b,0x2e, 0xf,0x2f,0x39, 0xf,0x2f,0x3b, 0xf,0x2f,0x3c,\n  0xf,0x2f,0x3a, 0x5,0x32,0x45, 0xf,0x34,0x54, 0x6,0x48,0x4f,\n  0xf,0x3a,0x6b, 0xf,0x3a,0x6c, 0x5,0x3f,0x26, 0x6,0x21,0x3f,\n  0x6,0x21,0x75, 0x6,0x22,0x79, 0x6,0x27,0x49, 0x4,0x24,0x2a,\n  0x6,0x30,0x70, 0x6,0x27,0x4d, 0xf,0x24,0x28, 0x6,0x27,0x4b,\n  0x6,0x27,0x4e, 0x4,0x26,0x3f, 0x6,0x2b,0x30, 0x5,0x26,0x2e,\n  0x6,0x2b,0x31, 0x3,0x2a,0x39, 0x4,0x27,0x41, 0x6,0x35,0x23,\n  0x6,0x30,0x72, 0x6,0x30,0x73, 0x6,0x30,0x71, 0x6,0x30,0x6f,\n  0x6,0x30,0x6e, 0x6,0x37,0x3f, 0x6,0x37,0x3e, 0x4,0x2c,0x6f,\n  0x6,0x37,0x3d, 0x6,0x37,0x40, 0x6,0x3f,0x49, 0x6,0x3f,0x4a,\n  0x6,0x3f,0x4b, 0x6,0x3f,0x4c, 0x6,0x3f,0x4d, 0x6,0x3f,0x4e,\n  0x4,0x37,0x44, 0x6,0x48,0x50, 0x6,0x48,0x54, 0x6,0x48,0x53,\n  0x6,0x48,0x51, 0xf,0x3a,0x6d, 0x6,0x48,0x52, 0x6,0x52,0x49,\n  0x5,0x3f,0x27, 0xf,0x41,0x3d, 0x6,0x5c,0x53, 0x6,0x5c,0x54,\n  0x6,0x5c,0x52, 0x5,0x45,0x61, 0x7,0x22,0x64, 0x7,0x2d,0x5a,\n  0x7,0x2d,0x5c, 0x4,0x50,0x2f, 0x5,0x54,0x45, 0x7,0x37,0x71,\n  0x7,0x37,0x70, 0x7,0x57,0x70, 0x7,0x63,0x51, 0x7,0x63,0x52,\n  0x7,0x65,0x36, 0x6,0x21,0x40, 0x6,0x21,0x76, 0xf,0x22,0x4d,\n  0x4,0x24,0x2b, 0x6,0x27,0x50, 0x6,0x27,0x4f, 0x5,0x24,0x2e,\n  0x6,0x2b,0x32, 0x6,0x30,0x76, 0x6,0x30,0x75, 0x6,0x30,0x77,\n  0x5,0x2e,0x68, 0x6,0x3f,0x4f, 0x5,0x38,0x2e, 0x6,0x52,0x4a,\n  0x6,0x5c,0x55, 0x7,0x22,0x65, 0x7,0x2d,0x5d, 0x5,0x21,0x2a,\n  0x5,0x21,0x47, 0x6,0x21,0x78, 0x6,0x21,0x7c, 0x6,0x21,0x77,\n  0x6,0x21,0x7a, 0x6,0x21,0x7b, 0x6,0x23,0x21, 0x6,0x23,0x22,\n  0x6,0x22,0x7c, 0x6,0x22,0x7a, 0x6,0x23,0x23, 0x6,0x22,0x7b,\n  0x6,0x22,0x7d, 0x6,0x22,0x7e, 0x5,0x21,0x6a, 0x5,0x22,0x60,\n  0x5,0x22,0x5f, 0x6,0x24,0x68, 0x6,0x24,0x69, 0x6,0x24,0x6a,\n  0x6,0x24,0x6b, 0x5,0x24,0x2f, 0x6,0x27,0x51, 0x5,0x24,0x31,\n  0x6,0x27,0x53, 0x5,0x24,0x30, 0xf,0x24,0x29, 0xf,0x24,0x2a,\n  0xf,0x24,0x2b, 0xf,0x24,0x2c, 0x6,0x27,0x52, 0x5,0x24,0x32,\n  0x5,0x26,0x2f, 0x6,0x2b,0x36, 0x6,0x2b,0x33, 0x6,0x2b,0x34,\n  0x6,0x2b,0x37, 0x6,0x2b,0x35, 0x6,0x30,0x7e, 0x5,0x29,0x2c,\n  0x6,0x30,0x7d, 0x4,0x29,0x30, 0x6,0x30,0x79, 0x5,0x29,0x2b,\n  0x6,0x30,0x78, 0x5,0x2d,0x44, 0x5,0x2d,0x43, 0x5,0x2d,0x45,\n  0x6,0x37,0x43, 0x6,0x37,0x41, 0x5,0x2d,0x46, 0xf,0x2f,0x3d,\n  0x6,0x37,0x42, 0x5,0x32,0x4a, 0x5,0x32,0x48, 0x5,0x32,0x49,\n  0x6,0x3f,0x56, 0x6,0x3f,0x50, 0x4,0x29,0x2f, 0x6,0x48,0x55,\n  0x6,0x3f,0x52, 0x6,0x3f,0x53, 0x5,0x32,0x47, 0x6,0x3f,0x51,\n  0xf,0x34,0x55, 0xf,0x34,0x56, 0xf,0x34,0x57, 0x6,0x3f,0x54,\n  0x6,0x3f,0x57, 0x6,0x3f,0x55, 0x6,0x48,0x56, 0x6,0x48,0x59,\n  0x5,0x38,0x2f, 0x5,0x38,0x32, 0x5,0x38,0x31, 0x6,0x48,0x5a,\n  0x5,0x38,0x30, 0x6,0x48,0x58, 0x6,0x48,0x57, 0x5,0x3f,0x28,\n  0x4,0x3d,0x31, 0x6,0x52,0x4b, 0xf,0x41,0x40, 0x6,0x52,0x4c,\n  0x5,0x45,0x62, 0x6,0x5c,0x56, 0x5,0x45,0x63, 0x6,0x5c,0x57,\n  0x6,0x5c,0x59, 0xf,0x47,0x70, 0x6,0x5c,0x5a, 0x6,0x5c,0x58,\n  0x5,0x4d,0x21, 0x5,0x4d,0x22, 0x4,0x49,0x60, 0x7,0x22,0x66,\n  0xf,0x4e,0x64, 0xf,0x4e,0x65, 0x7,0x22,0x67, 0x7,0x2d,0x5f,\n  0x5,0x54,0x46, 0x4,0x50,0x30, 0x7,0x2d,0x60, 0x7,0x2d,0x5e,\n  0x7,0x37,0x73, 0x7,0x37,0x72, 0x7,0x37,0x74, 0xf,0x5a,0x24,\n  0x4,0x5b,0x22, 0x5,0x61,0x5e, 0x7,0x3f,0x52, 0xf,0x5e,0x5d,\n  0x5,0x61,0x5d, 0x7,0x46,0x6d, 0x7,0x46,0x6b, 0x7,0x46,0x6f,\n  0x7,0x46,0x6a, 0x7,0x46,0x6c, 0x5,0x67,0x6b, 0x5,0x6c,0x25,\n  0x7,0x4d,0x5f, 0x4,0x5f,0x5f, 0x7,0x4d,0x61, 0x7,0x4d,0x60,\n  0x5,0x6c,0x26, 0x5,0x6f,0x7c, 0x5,0x6f,0x7d, 0x4,0x66,0x3d,\n  0x7,0x53,0x35, 0x5,0x73,0x3f, 0x7,0x60,0x3c, 0x7,0x60,0x6f,\n  0x7,0x64,0x46, 0x6,0x24,0x6e, 0x6,0x24,0x6c, 0x6,0x24,0x6d,\n  0x5,0x24,0x33, 0x6,0x31,0x21, 0x6,0x2b,0x38, 0x6,0x2d,0x32,\n  0x6,0x31,0x24, 0x6,0x37,0x44, 0x6,0x31,0x22, 0x6,0x31,0x23,\n  0x6,0x37,0x46, 0x6,0x37,0x45, 0x6,0x3f,0x58, 0x6,0x4f,0x21,\n  0x5,0x38,0x33, 0x6,0x48,0x5c, 0x6,0x48,0x5b, 0x5,0x3f,0x2a,\n  0x6,0x5c,0x5c, 0x6,0x5c,0x5f, 0x6,0x5c,0x5d, 0x6,0x5c,0x5b,\n  0x6,0x5c,0x5e, 0x7,0x2d,0x61, 0x7,0x2d,0x4e, 0x4,0x50,0x32,\n  0x7,0x37,0x75, 0x7,0x3f,0x55, 0x7,0x3f,0x54, 0x7,0x3f,0x53,\n  0x7,0x46,0x72, 0x7,0x46,0x70, 0x7,0x46,0x71, 0x7,0x57,0x71,\n  0x7,0x5b,0x4e, 0x7,0x62,0x37, 0x6,0x23,0x25, 0x6,0x23,0x24,\n  0xf,0x21,0x64, 0x6,0x24,0x71, 0x6,0x24,0x6f, 0xf,0x24,0x2d,\n  0x6,0x27,0x54, 0x5,0x26,0x30, 0x6,0x2b,0x3b, 0x6,0x2b,0x3a,\n  0x6,0x37,0x47, 0x4,0x2c,0x74, 0x4,0x2c,0x73, 0x5,0x35,0x60,\n  0x6,0x3f,0x5d, 0x6,0x3f,0x59, 0x6,0x3f,0x5a, 0xf,0x34,0x58,\n  0xf,0x34,0x59, 0xf,0x34,0x5a, 0x6,0x3f,0x5c, 0x6,0x3f,0x5b,\n  0x5,0x32,0x4b, 0x6,0x48,0x5d, 0x6,0x48,0x60, 0x6,0x48,0x5e,\n  0x6,0x48,0x5f, 0xf,0x3a,0x6e, 0x6,0x52,0x51, 0x6,0x52,0x4e,\n  0x6,0x52,0x50, 0x6,0x52,0x4f, 0xf,0x41,0x41, 0x4,0x43,0x3c,\n  0x6,0x5c,0x60, 0x7,0x22,0x6b, 0x7,0x22,0x6c, 0x7,0x22,0x69,\n  0x7,0x22,0x6a, 0x5,0x4d,0x23, 0x4,0x50,0x33, 0x5,0x54,0x47,\n  0x7,0x2d,0x64, 0x7,0x37,0x76, 0x7,0x3f,0x56, 0xf,0x67,0x54,\n  0x7,0x4d,0x62, 0x7,0x53,0x36, 0x5,0x73,0x41, 0xf,0x6c,0x27,\n  0x6,0x21,0x7d, 0x5,0x21,0x6b, 0x4,0x21,0x79, 0x5,0x22,0x61,\n  0x4,0x22,0x6e, 0x5,0x22,0x62, 0x5,0x24,0x34, 0x6,0x27,0x58,\n  0x5,0x24,0x35, 0x6,0x27,0x57, 0x6,0x27,0x59, 0x6,0x27,0x5b,\n  0x6,0x27,0x56, 0x5,0x24,0x36, 0x6,0x27,0x55, 0x6,0x27,0x5a,\n  0x5,0x26,0x33, 0x6,0x2b,0x3d, 0x5,0x26,0x31, 0x6,0x2b,0x3c,\n  0x5,0x26,0x32, 0x5,0x29,0x2d, 0x6,0x2b,0x3f, 0x4,0x29,0x33,\n  0x6,0x31,0x26, 0x5,0x29,0x30, 0x5,0x29,0x2e, 0x6,0x31,0x28,\n  0x5,0x29,0x32, 0x5,0x29,0x31, 0xf,0x2a,0x5e, 0x6,0x31,0x27,\n  0x6,0x37,0x4d, 0x4,0x2c,0x79, 0x4,0x2c,0x77, 0x4,0x2c,0x7c,\n  0x4,0x2c,0x75, 0x5,0x2d,0x4b, 0x5,0x2d,0x49, 0x4,0x2c,0x78,\n  0x4,0x2c,0x7a, 0x4,0x2c,0x76, 0x4,0x2c,0x7b, 0x5,0x2d,0x4a,\n  0x6,0x37,0x49, 0x6,0x37,0x4f, 0x6,0x37,0x4c, 0xf,0x2f,0x3f,\n  0xf,0x2f,0x40, 0x6,0x37,0x4b, 0x6,0x37,0x50, 0x6,0x37,0x4e,\n  0x6,0x37,0x4a, 0x4,0x31,0x56, 0x5,0x32,0x4f, 0x6,0x3f,0x68,\n  0x6,0x3f,0x61, 0x5,0x32,0x4c, 0x5,0x32,0x51, 0x5,0x32,0x4e,\n  0x6,0x3f,0x60, 0x5,0x32,0x50, 0x4,0x31,0x58, 0x6,0x3f,0x67,\n  0x6,0x3f,0x65, 0x6,0x3f,0x62, 0x4,0x31,0x59, 0x6,0x3f,0x66,\n  0x5,0x32,0x4d, 0x6,0x3f,0x64, 0x6,0x3f,0x5f, 0x6,0x3f,0x63,\n  0x6,0x48,0x64, 0xf,0x34,0x5c, 0x4,0x37,0x46, 0x5,0x38,0x36,\n  0x5,0x38,0x35, 0x5,0x38,0x3b, 0x5,0x38,0x3a, 0x5,0x38,0x37,\n  0x4,0x37,0x47, 0x6,0x48,0x61, 0x5,0x38,0x34, 0x6,0x48,0x63,\n  0x5,0x38,0x38, 0x4,0x31,0x55, 0xf,0x3a,0x70, 0x6,0x48,0x62,\n  0xf,0x3a,0x6f, 0x5,0x38,0x39, 0x5,0x3f,0x2c, 0x5,0x3f,0x2b,\n  0x6,0x52,0x52, 0x6,0x52,0x54, 0x6,0x52,0x57, 0x6,0x52,0x53,\n  0xf,0x41,0x42, 0xf,0x41,0x43, 0xf,0x41,0x44, 0xf,0x41,0x45,\n  0xf,0x41,0x46, 0xf,0x41,0x47, 0x6,0x52,0x55, 0x6,0x52,0x56,\n  0x6,0x56,0x6c, 0x5,0x3f,0x2d, 0x4,0x3d,0x32, 0x6,0x5c,0x66,\n  0x6,0x5c,0x63, 0x5,0x45,0x66, 0x6,0x5c,0x62, 0x4,0x43,0x3e,\n  0x5,0x45,0x65, 0x4,0x43,0x41, 0x4,0x43,0x40, 0x6,0x5c,0x61,\n  0x5,0x45,0x68, 0x5,0x45,0x6a, 0x5,0x45,0x64, 0x6,0x5c,0x68,\n  0x6,0x5c,0x69, 0x6,0x5c,0x6a, 0x5,0x45,0x67, 0x6,0x5c,0x64,\n  0xf,0x47,0x71, 0xf,0x47,0x72, 0xf,0x47,0x73, 0xf,0x47,0x74,\n  0xf,0x47,0x75, 0x6,0x5c,0x65, 0x4,0x49,0x64, 0x5,0x4d,0x24,\n  0x5,0x5b,0x48, 0x4,0x49,0x63, 0x4,0x49,0x62, 0x5,0x4d,0x25,\n  0x7,0x22,0x6d, 0x7,0x22,0x6f, 0xf,0x4e,0x66, 0xf,0x4e,0x67,\n  0x7,0x22,0x6e, 0x7,0x22,0x70, 0x7,0x2d,0x65, 0x5,0x54,0x48,\n  0x5,0x54,0x4a, 0x7,0x2d,0x67, 0x7,0x2d,0x66, 0xf,0x54,0x44,\n  0xf,0x54,0x45, 0x7,0x2d,0x68, 0x5,0x54,0x49, 0x5,0x5b,0x47,\n  0x7,0x37,0x77, 0x4,0x56,0x30, 0xf,0x5c,0x5f, 0x5,0x5b,0x46,\n  0x5,0x61,0x60, 0x7,0x3f,0x57, 0x5,0x61,0x5f, 0x7,0x3f,0x58,\n  0xf,0x5e,0x5e, 0x5,0x61,0x61, 0x7,0x46,0x73, 0x7,0x46,0x75,\n  0x7,0x46,0x76, 0x7,0x4d,0x22, 0x7,0x46,0x74, 0x5,0x6c,0x27,\n  0x4,0x63,0x3e, 0x4,0x63,0x3d, 0xf,0x65,0x2a, 0x7,0x4d,0x63,\n  0x7,0x53,0x37, 0x5,0x6f,0x7e, 0x7,0x57,0x72, 0x4,0x6a,0x47,\n  0x5,0x79,0x28, 0x5,0x21,0x31, 0x6,0x22,0x21, 0x4,0x22,0x6f,\n  0x5,0x21,0x6c, 0x6,0x23,0x26, 0xf,0x22,0x4f, 0x6,0x24,0x75,\n  0x5,0x22,0x63, 0x6,0x27,0x60, 0x5,0x22,0x69, 0x6,0x27,0x5d,\n  0x5,0x22,0x64, 0x6,0x24,0x73, 0x6,0x24,0x74, 0x5,0x22,0x65,\n  0x6,0x27,0x5c, 0x6,0x27,0x5e, 0x6,0x27,0x61, 0x6,0x24,0x72,\n  0x5,0x22,0x68, 0x5,0x24,0x37, 0x5,0x24,0x39, 0x4,0x26,0x45,\n  0x6,0x27,0x66, 0x6,0x27,0x64, 0x6,0x2b,0x46, 0x6,0x27,0x67,\n  0x6,0x2b,0x40, 0x6,0x27,0x62, 0x6,0x27,0x63, 0x6,0x2b,0x44,\n  0x6,0x27,0x65, 0x6,0x27,0x68, 0x3,0x25,0x7e, 0x6,0x27,0x69,\n  0x5,0x24,0x3a, 0xf,0x24,0x2e, 0xf,0x24,0x2f, 0xf,0x24,0x31,\n  0xf,0x24,0x32, 0xf,0x24,0x34, 0xf,0x24,0x35, 0xf,0x24,0x36,\n  0xf,0x26,0x77, 0xf,0x26,0x78, 0xf,0x26,0x79, 0xf,0x26,0x7a,\n  0xf,0x26,0x7b, 0xf,0x26,0x7d, 0xf,0x26,0x7e, 0xf,0x27,0x21,\n  0xf,0x26,0x7c, 0x6,0x2b,0x45, 0x6,0x2b,0x41, 0x6,0x2b,0x42,\n  0x4,0x24,0x2d, 0xf,0x24,0x30, 0x4,0x26,0x44, 0x5,0x26,0x34,\n  0x6,0x2b,0x43, 0x4,0x26,0x47, 0x6,0x2b,0x4c, 0x4,0x29,0x47,\n  0x6,0x31,0x2f, 0x4,0x26,0x4b, 0x6,0x2b,0x4d, 0x6,0x31,0x29,\n  0x5,0x26,0x35, 0x6,0x31,0x2c, 0x6,0x2b,0x4f, 0x4,0x26,0x4a,\n  0x5,0x26,0x37, 0x4,0x29,0x38, 0x5,0x26,0x36, 0x4,0x29,0x43,\n  0x6,0x2b,0x49, 0x5,0x26,0x38, 0x4,0x26,0x51, 0x4,0x29,0x44,\n  0x6,0x31,0x2a, 0x6,0x31,0x2b, 0x6,0x2b,0x50, 0x6,0x2b,0x47,\n  0x6,0x31,0x2d, 0xf,0x26,0x75, 0xf,0x27,0x22, 0xf,0x2a,0x70,\n  0x4,0x29,0x46, 0x6,0x31,0x2e, 0x6,0x2b,0x48, 0x6,0x2b,0x4a,\n  0x6,0x2b,0x4e, 0x6,0x2b,0x4b, 0xf,0x2a,0x64, 0xf,0x2a,0x5f,\n  0xf,0x2a,0x62, 0xf,0x2a,0x65, 0xf,0x2a,0x68, 0xf,0x2a,0x6c,\n  0x6,0x37,0x5b, 0x6,0x37,0x59, 0x6,0x31,0x32, 0x4,0x29,0x49,\n  0x5,0x29,0x37, 0x4,0x29,0x42, 0x4,0x2d,0x29, 0x5,0x2d,0x4e,\n  0x5,0x29,0x36, 0x6,0x31,0x39, 0x6,0x37,0x57, 0x6,0x31,0x33,\n  0x4,0x2c,0x7d, 0x5,0x2d,0x4c, 0x6,0x31,0x35, 0x6,0x37,0x53,\n  0x4,0x2d,0x21, 0x6,0x31,0x38, 0x5,0x29,0x34, 0x4,0x2c,0x7e,\n  0x6,0x31,0x3a, 0x6,0x31,0x31, 0x6,0x31,0x37, 0x6,0x37,0x56,\n  0x6,0x37,0x55, 0x4,0x2d,0x2a, 0x6,0x31,0x34, 0xf,0x2a,0x61,\n  0xf,0x2a,0x66, 0xf,0x2a,0x69, 0xf,0x2a,0x6b, 0xf,0x2a,0x6d,\n  0xf,0x2a,0x6e, 0xf,0x2a,0x6f, 0xf,0x2f,0x46, 0xf,0x2f,0x47,\n  0xf,0x2f,0x48, 0xf,0x2f,0x4a, 0x6,0x37,0x52, 0xf,0x2f,0x44,\n  0x6,0x37,0x58, 0xf,0x2a,0x63, 0x5,0x2d,0x4d, 0x6,0x37,0x51,\n  0x5,0x2d,0x52, 0x5,0x2d,0x58, 0x5,0x2d,0x5b, 0x6,0x3f,0x6d,\n  0x6,0x37,0x63, 0x6,0x3f,0x6f, 0x6,0x3f,0x6b, 0x6,0x3f,0x70,\n  0x6,0x37,0x64, 0x5,0x2d,0x55, 0x6,0x3f,0x69, 0x4,0x2d,0x2e,\n  0x6,0x3f,0x73, 0x5,0x2d,0x56, 0x4,0x2d,0x26, 0x5,0x32,0x5d,\n  0x5,0x2d,0x51, 0x5,0x2d,0x5c, 0x6,0x37,0x62, 0x6,0x37,0x5d,\n  0x5,0x32,0x54, 0x6,0x37,0x5f, 0x6,0x37,0x61, 0x6,0x3f,0x6c,\n  0x6,0x37,0x60, 0x6,0x3f,0x71, 0x4,0x2d,0x27, 0x5,0x2d,0x50,\n  0x6,0x37,0x5c, 0x5,0x32,0x53, 0x6,0x3f,0x72, 0x6,0x3f,0x74,\n  0x5,0x32,0x52, 0x5,0x2d,0x4f, 0xf,0x2f,0x41, 0xf,0x2f,0x42,\n  0xf,0x2f,0x43, 0xf,0x2f,0x49, 0xf,0x2f,0x4b, 0xf,0x34,0x5d,\n  0xf,0x34,0x5f, 0xf,0x34,0x60, 0xf,0x34,0x64, 0xf,0x34,0x65,\n  0xf,0x34,0x66, 0xf,0x34,0x67, 0xf,0x34,0x68, 0x6,0x3f,0x6a,\n  0x6,0x37,0x65, 0x6,0x37,0x66, 0x5,0x2d,0x54, 0x5,0x2d,0x59,\n  0x4,0x37,0x5a, 0x6,0x48,0x71, 0x4,0x37,0x4d, 0x5,0x32,0x59,\n  0x6,0x3f,0x7c, 0x4,0x37,0x4b, 0x6,0x48,0x73, 0x6,0x48,0x69,\n  0x5,0x38,0x55, 0x6,0x3f,0x7e, 0x6,0x48,0x72, 0x6,0x40,0x22,\n  0x4,0x31,0x65, 0x5,0x2d,0x53, 0x4,0x31,0x6d, 0x6,0x3f,0x77,\n  0x6,0x48,0x6e, 0x4,0x31,0x61, 0x5,0x38,0x3f, 0x5,0x32,0x57,\n  0x5,0x32,0x5a, 0x4,0x37,0x4c, 0x6,0x3f,0x79, 0x5,0x32,0x5c,\n  0x6,0x3f,0x76, 0x6,0x3f,0x6e, 0x4,0x31,0x69, 0x5,0x38,0x3c,\n  0x6,0x48,0x70, 0x5,0x32,0x5e, 0x4,0x31,0x5f, 0x6,0x3f,0x7d,\n  0x6,0x3f,0x7b, 0x6,0x3f,0x7a, 0x6,0x48,0x66, 0x6,0x48,0x6c,\n  0x5,0x38,0x3e, 0x5,0x38,0x41, 0x6,0x48,0x74, 0x5,0x32,0x55,\n  0x6,0x48,0x6b, 0x6,0x48,0x76, 0x6,0x48,0x67, 0x6,0x48,0x65,\n  0x6,0x3f,0x75, 0x5,0x38,0x40, 0xf,0x34,0x61, 0xf,0x34,0x5e,\n  0xf,0x34,0x62, 0xf,0x34,0x63, 0xf,0x34,0x69, 0xf,0x34,0x6a,\n  0xf,0x34,0x6b, 0xf,0x34,0x6c, 0xf,0x34,0x6d, 0xf,0x34,0x6f,\n  0xf,0x34,0x70, 0xf,0x34,0x72, 0xf,0x3a,0x72, 0xf,0x3a,0x73,\n  0xf,0x3a,0x74, 0xf,0x3a,0x75, 0xf,0x3a,0x76, 0xf,0x3a,0x77,\n  0xf,0x3a,0x79, 0xf,0x3a,0x7a, 0xf,0x3a,0x7c, 0xf,0x3a,0x7d,\n  0xf,0x3a,0x7e, 0xf,0x3b,0x21, 0xf,0x3b,0x22, 0xf,0x3b,0x25,\n  0xf,0x3b,0x29, 0xf,0x3b,0x2a, 0xf,0x3b,0x2c, 0xf,0x3b,0x2e,\n  0x6,0x48,0x68, 0x5,0x32,0x56, 0x6,0x3f,0x78, 0xf,0x3b,0x27,\n  0xf,0x34,0x6e, 0x6,0x49,0x24, 0x6,0x48,0x6d, 0x6,0x40,0x21,\n  0xf,0x3b,0x24, 0x4,0x3d,0x3f, 0x5,0x38,0x4a, 0x5,0x38,0x4d,\n  0x5,0x38,0x52, 0x4,0x37,0x4f, 0x4,0x37,0x57, 0x4,0x37,0x51,\n  0x6,0x52,0x5d, 0x6,0x49,0x23, 0x5,0x38,0x50, 0x6,0x49,0x22,\n  0x4,0x37,0x53, 0x5,0x38,0x56, 0x5,0x38,0x58, 0x5,0x38,0x43,\n  0x6,0x52,0x61, 0x5,0x38,0x5a, 0x5,0x3f,0x33, 0x4,0x37,0x5b,\n  0x5,0x38,0x53, 0x6,0x49,0x21, 0x5,0x38,0x46, 0x6,0x48,0x7b,\n  0x5,0x3f,0x34, 0x5,0x38,0x44, 0x5,0x38,0x54, 0x5,0x32,0x5f,\n  0x6,0x52,0x58, 0x5,0x38,0x47, 0x4,0x3d,0x36, 0x4,0x37,0x58,\n  0x5,0x38,0x59, 0x5,0x38,0x51, 0x5,0x38,0x4b, 0x5,0x3f,0x31,\n  0x6,0x48,0x77, 0x5,0x38,0x4f, 0x5,0x38,0x3d, 0x6,0x48,0x7e,\n  0x6,0x52,0x62, 0x6,0x52,0x63, 0x6,0x52,0x5a, 0x6,0x48,0x7d,\n  0x5,0x38,0x57, 0x6,0x52,0x5e, 0x6,0x52,0x60, 0x5,0x3f,0x2f,\n  0x4,0x3d,0x40, 0x4,0x37,0x52, 0x5,0x38,0x49, 0x6,0x48,0x79,\n  0xf,0x3a,0x71, 0xf,0x3a,0x7b, 0xf,0x3b,0x23, 0xf,0x3b,0x28,\n  0xf,0x3b,0x2d, 0xf,0x41,0x48, 0xf,0x41,0x4e, 0xf,0x41,0x50,\n  0xf,0x41,0x51, 0xf,0x41,0x52, 0x6,0x52,0x5c, 0x6,0x52,0x5f,\n  0x6,0x52,0x5b, 0x6,0x48,0x7a, 0xf,0x3b,0x2b, 0x5,0x38,0x4e,\n  0x5,0x3f,0x2e, 0x5,0x38,0x4c, 0xf,0x34,0x71, 0xf,0x47,0x7d,\n  0x5,0x3f,0x3c, 0x5,0x3f,0x36, 0x5,0x3f,0x35, 0x6,0x52,0x6b,\n  0x5,0x4d,0x26, 0x5,0x3f,0x45, 0x6,0x5c,0x6f, 0x5,0x3f,0x39,\n  0x5,0x3f,0x3f, 0x5,0x3f,0x44, 0x6,0x5c,0x74, 0x6,0x52,0x6f,\n  0x5,0x45,0x6b, 0x5,0x3f,0x3b, 0x6,0x5c,0x6c, 0x6,0x52,0x65,\n  0x5,0x3f,0x38, 0x5,0x3f,0x3d, 0x5,0x3f,0x3a, 0x6,0x52,0x59,\n  0x4,0x49,0x6e, 0x6,0x5c,0x76, 0x6,0x5c,0x79, 0x5,0x3f,0x43,\n  0x6,0x52,0x68, 0x6,0x5c,0x72, 0x4,0x43,0x4f, 0x6,0x5c,0x78,\n  0x6,0x5c,0x77, 0x5,0x3f,0x41, 0x5,0x45,0x6d, 0x5,0x3f,0x3e,\n  0x6,0x5c,0x71, 0x6,0x5c,0x6e, 0x6,0x5c,0x6d, 0x5,0x3f,0x37,\n  0x6,0x52,0x67, 0x6,0x52,0x6d, 0xf,0x41,0x4a, 0xf,0x41,0x4b,\n  0xf,0x41,0x4c, 0xf,0x41,0x4d, 0xf,0x41,0x4f, 0xf,0x41,0x53,\n  0xf,0x47,0x76, 0xf,0x47,0x77, 0xf,0x47,0x79, 0xf,0x47,0x7a,\n  0xf,0x48,0x25, 0xf,0x48,0x28, 0x6,0x5c,0x70, 0x6,0x5c,0x75,\n  0x5,0x3f,0x40, 0xf,0x41,0x49, 0x6,0x5c,0x73, 0x6,0x52,0x6e,\n  0x6,0x5d,0x23, 0x6,0x5d,0x27, 0x4,0x43,0x45, 0x4,0x43,0x44,\n  0x5,0x4d,0x27, 0x6,0x5c,0x7c, 0x5,0x45,0x77, 0x5,0x45,0x76,\n  0x5,0x45,0x73, 0x4,0x3d,0x35, 0x6,0x5c,0x7b, 0x7,0x22,0x72,\n  0x7,0x22,0x75, 0x5,0x4d,0x29, 0x5,0x45,0x70, 0x5,0x45,0x6f,\n  0x5,0x45,0x6c, 0x5,0x45,0x71, 0x5,0x45,0x72, 0x5,0x45,0x79,\n  0x6,0x5d,0x25, 0x6,0x5c,0x7d, 0x6,0x5c,0x7e, 0x6,0x52,0x6a,\n  0x6,0x5d,0x22, 0x7,0x22,0x74, 0x6,0x5d,0x21, 0x7,0x22,0x77,\n  0x5,0x45,0x74, 0x5,0x45,0x78, 0x7,0x2d,0x6a, 0x4,0x43,0x53,\n  0xf,0x47,0x78, 0xf,0x47,0x7c, 0xf,0x47,0x7e, 0xf,0x48,0x21,\n  0xf,0x48,0x23, 0xf,0x48,0x24, 0xf,0x48,0x26, 0xf,0x4e,0x69,\n  0xf,0x4e,0x6a, 0xf,0x4e,0x6b, 0xf,0x4e,0x6c, 0xf,0x4e,0x6d,\n  0xf,0x4e,0x6e, 0xf,0x4e,0x6f, 0xf,0x4e,0x73, 0xf,0x4e,0x75,\n  0x7,0x22,0x73, 0x7,0x22,0x78, 0x6,0x5c,0x6b, 0x5,0x45,0x6e,\n  0x6,0x5c,0x7a, 0x5,0x4d,0x28, 0x5,0x45,0x75, 0x7,0x2d,0x71,\n  0x4,0x49,0x66, 0x4,0x43,0x52, 0x7,0x2d,0x6b, 0x4,0x49,0x71,\n  0x7,0x2d,0x6d, 0x5,0x4d,0x2f, 0x7,0x2d,0x73, 0x4,0x49,0x6a,\n  0x5,0x4d,0x2e, 0x7,0x22,0x79, 0x5,0x4d,0x33, 0x4,0x49,0x72,\n  0x7,0x2d,0x75, 0x5,0x38,0x45, 0x5,0x4d,0x32, 0x5,0x4d,0x35,\n  0x4,0x50,0x35, 0x4,0x50,0x36, 0x7,0x23,0x21, 0x5,0x4d,0x34,\n  0x7,0x37,0x7c, 0x5,0x4d,0x30, 0x5,0x54,0x4e, 0x4,0x56,0x34,\n  0x7,0x22,0x7a, 0x7,0x23,0x22, 0x5,0x54,0x54, 0x5,0x4d,0x2b,\n  0x5,0x4d,0x2d, 0x5,0x54,0x4d, 0x5,0x4d,0x2c, 0x7,0x2e,0x22,\n  0x7,0x2d,0x77, 0x7,0x2d,0x76, 0x7,0x22,0x7e, 0x4,0x50,0x3c,\n  0x7,0x2d,0x70, 0x7,0x2d,0x6f, 0xf,0x48,0x22, 0xf,0x4e,0x70,\n  0x7,0x2d,0x72, 0x5,0x4d,0x31, 0x7,0x2d,0x6c, 0xf,0x4e,0x71,\n  0xf,0x4e,0x72, 0xf,0x4e,0x74, 0xf,0x4e,0x76, 0xf,0x54,0x47,\n  0xf,0x54,0x48, 0xf,0x54,0x4a, 0xf,0x54,0x4b, 0xf,0x54,0x51,\n  0xf,0x54,0x53, 0x7,0x2d,0x74, 0x5,0x54,0x4b, 0x7,0x30,0x50,\n  0x7,0x22,0x7d, 0x7,0x25,0x71, 0x4,0x49,0x70, 0x5,0x54,0x4c,\n  0x5,0x54,0x4f, 0xf,0x4e,0x68, 0xf,0x54,0x4f, 0x5,0x54,0x50,\n  0x5,0x54,0x52, 0x7,0x2d,0x7b, 0x7,0x2d,0x78, 0x5,0x54,0x55,\n  0x5,0x54,0x56, 0x5,0x54,0x51, 0x7,0x2d,0x7e, 0x7,0x2d,0x7c,\n  0x7,0x2d,0x7d, 0x5,0x54,0x57, 0x4,0x50,0x3d, 0x5,0x5b,0x49,\n  0x7,0x2e,0x21, 0x7,0x37,0x7b, 0x7,0x37,0x7d, 0x7,0x37,0x7a,\n  0x7,0x38,0x21, 0x5,0x5b,0x4b, 0x7,0x2d,0x7a, 0x7,0x37,0x79,\n  0x7,0x2d,0x6e, 0xf,0x54,0x4d, 0x5,0x54,0x53, 0x7,0x38,0x22,\n  0xf,0x54,0x49, 0xf,0x54,0x4e, 0xf,0x54,0x52, 0xf,0x5a,0x25,\n  0xf,0x5a,0x26, 0xf,0x5a,0x2e, 0xf,0x5a,0x27, 0x5,0x5b,0x4a,\n  0x5,0x54,0x58, 0xf,0x5a,0x2a, 0xf,0x54,0x4c, 0x7,0x37,0x78,\n  0x5,0x5b,0x51, 0x4,0x56,0x35, 0x4,0x56,0x31, 0x4,0x5b,0x2a,\n  0x5,0x5b,0x4e, 0x5,0x61,0x64, 0x5,0x61,0x62, 0x7,0x3f,0x5b,\n  0x7,0x38,0x26, 0x4,0x5b,0x26, 0x5,0x5b,0x4d, 0x5,0x5b,0x4f,\n  0x7,0x38,0x23, 0x7,0x38,0x25, 0x5,0x5b,0x50, 0x5,0x61,0x63,\n  0x7,0x3f,0x5a, 0x5,0x61,0x65, 0x7,0x3f,0x59, 0x7,0x22,0x76,\n  0xf,0x5a,0x2b, 0xf,0x5a,0x2d, 0xf,0x5e,0x5f, 0xf,0x5e,0x60,\n  0xf,0x5e,0x62, 0xf,0x5e,0x63, 0xf,0x5e,0x65, 0xf,0x5e,0x66,\n  0xf,0x5e,0x67, 0x7,0x3f,0x5c, 0x7,0x38,0x24, 0xf,0x5a,0x28,\n  0x4,0x5b,0x27, 0x5,0x5b,0x52, 0x7,0x46,0x79, 0x7,0x3f,0x5d,\n  0x5,0x61,0x68, 0x7,0x4d,0x64, 0x4,0x5f,0x63, 0x4,0x5f,0x62,\n  0x7,0x46,0x7c, 0x5,0x61,0x69, 0x7,0x4d,0x67, 0x4,0x5b,0x28,\n  0x5,0x61,0x6a, 0x7,0x47,0x25, 0x7,0x47,0x21, 0x7,0x46,0x78,\n  0x5,0x61,0x67, 0x7,0x46,0x7e, 0x5,0x67,0x6d, 0x7,0x46,0x7a,\n  0x5,0x67,0x70, 0x7,0x46,0x77, 0x7,0x47,0x22, 0x7,0x3f,0x5e,\n  0x7,0x46,0x7d, 0x5,0x67,0x6e, 0xf,0x5e,0x64, 0x5,0x67,0x6f,\n  0x7,0x46,0x7b, 0x5,0x67,0x6c, 0xf,0x62,0x39, 0x7,0x47,0x2a,\n  0x4,0x63,0x44, 0x7,0x47,0x27, 0x5,0x67,0x74, 0x7,0x47,0x24,\n  0x5,0x6c,0x2a, 0x7,0x47,0x29, 0x7,0x47,0x26, 0x7,0x3f,0x5f,\n  0x5,0x67,0x75, 0x4,0x63,0x3f, 0x5,0x67,0x71, 0x5,0x6c,0x28,\n  0x7,0x47,0x2b, 0x7,0x47,0x23, 0x7,0x4d,0x65, 0x5,0x67,0x77,\n  0xf,0x62,0x3a, 0xf,0x62,0x38, 0xf,0x62,0x3b, 0xf,0x62,0x3c,\n  0xf,0x62,0x3d, 0x7,0x4d,0x66, 0x5,0x61,0x66, 0x5,0x67,0x72,\n  0xf,0x65,0x2b, 0x5,0x67,0x76, 0x5,0x6c,0x29, 0x7,0x53,0x39,\n  0x7,0x4d,0x6a, 0x4,0x63,0x41, 0x7,0x4d,0x69, 0x4,0x63,0x45,\n  0x7,0x53,0x38, 0x7,0x4d,0x6b, 0xf,0x67,0x55, 0x7,0x5b,0x4f,\n  0x4,0x66,0x3e, 0x5,0x6c,0x2b, 0x7,0x57,0x73, 0x7,0x57,0x74,\n  0x7,0x57,0x75, 0x7,0x53,0x3b, 0x7,0x53,0x3a, 0x7,0x53,0x3c,\n  0xf,0x69,0x42, 0x7,0x57,0x76, 0x7,0x5b,0x50, 0x7,0x5b,0x52,\n  0x7,0x5b,0x53, 0x7,0x5b,0x51, 0xf,0x6a,0x50, 0xf,0x69,0x41,\n  0xf,0x6a,0x51, 0xf,0x6a,0x52, 0x7,0x5b,0x55, 0x5,0x77,0x5a,\n  0x7,0x5b,0x54, 0x7,0x5e,0x65, 0xf,0x6a,0x53, 0xf,0x6b,0x47,\n  0xf,0x6b,0x48, 0x5,0x77,0x5b, 0x7,0x5e,0x66, 0x5,0x79,0x29,\n  0x7,0x5e,0x67, 0xf,0x6c,0x28, 0xf,0x6c,0x29, 0x4,0x6d,0x72,\n  0xf,0x6c,0x7c, 0xf,0x6c,0x7d, 0x5,0x7b,0x3e, 0x5,0x7b,0x60,\n  0xf,0x6d,0x34, 0x5,0x22,0x6a, 0x4,0x22,0x72, 0x6,0x24,0x76,\n  0x6,0x27,0x6b, 0x5,0x24,0x3b, 0x6,0x27,0x6a, 0x6,0x27,0x6d,\n  0x6,0x27,0x6c, 0x4,0x26,0x52, 0x6,0x2b,0x51, 0x6,0x2b,0x58,\n  0x6,0x2b,0x54, 0x6,0x2b,0x56, 0x4,0x26,0x53, 0x6,0x2b,0x55,\n  0x6,0x2b,0x53, 0x6,0x2b,0x57, 0xf,0x27,0x24, 0xf,0x27,0x23,\n  0x6,0x31,0x3d, 0x6,0x31,0x3b, 0x6,0x31,0x3e, 0x6,0x31,0x40,\n  0x4,0x29,0x4c, 0x6,0x31,0x41, 0x6,0x31,0x3f, 0xf,0x2a,0x71,\n  0xf,0x2a,0x72, 0x6,0x31,0x3c, 0x6,0x37,0x67, 0x5,0x2d,0x5f,\n  0x6,0x37,0x69, 0x5,0x2d,0x5e, 0x6,0x37,0x68, 0x5,0x32,0x61,\n  0x4,0x31,0x6f, 0x6,0x40,0x25, 0xf,0x34,0x73, 0xf,0x34,0x74,\n  0x6,0x40,0x24, 0x5,0x32,0x60, 0x6,0x49,0x28, 0x6,0x49,0x27,\n  0x6,0x49,0x25, 0x6,0x49,0x26, 0x4,0x37,0x5c, 0x6,0x49,0x29,\n  0xf,0x3b,0x2f, 0x5,0x38,0x5b, 0x5,0x38,0x5c, 0xf,0x34,0x76,\n  0x4,0x3d,0x44, 0x6,0x52,0x71, 0x5,0x3f,0x47, 0x5,0x3f,0x49,\n  0xf,0x41,0x55, 0x4,0x3d,0x41, 0x6,0x52,0x70, 0x5,0x3f,0x48,\n  0x6,0x5d,0x29, 0x6,0x5d,0x2a, 0x5,0x45,0x7a, 0x5,0x45,0x7c,\n  0x5,0x45,0x7b, 0x7,0x23,0x24, 0x5,0x45,0x7d, 0xf,0x48,0x29,\n  0xf,0x48,0x2a, 0x6,0x5d,0x28, 0x5,0x4d,0x36, 0x4,0x49,0x73,\n  0x4,0x49,0x74, 0x7,0x23,0x28, 0x7,0x23,0x27, 0x7,0x23,0x25,\n  0x6,0x5d,0x2b, 0x7,0x23,0x23, 0xf,0x4e,0x7b, 0x7,0x23,0x29,\n  0x7,0x23,0x26, 0xf,0x4e,0x77, 0xf,0x4e,0x78, 0xf,0x4e,0x7a,\n  0x7,0x23,0x2a, 0x7,0x2e,0x2a, 0x7,0x2e,0x25, 0x7,0x2e,0x24,\n  0x7,0x2e,0x27, 0x7,0x2e,0x26, 0x7,0x2e,0x29, 0x7,0x2e,0x28,\n  0x7,0x2c,0x63, 0x7,0x31,0x70, 0x7,0x2e,0x23, 0x7,0x38,0x27,\n  0x5,0x5b,0x53, 0xf,0x5a,0x2f, 0x7,0x3f,0x60, 0x7,0x47,0x2d,\n  0x4,0x5f,0x65, 0x7,0x47,0x2e, 0x5,0x6c,0x2c, 0xf,0x65,0x2c,\n  0x5,0x70,0x21, 0x7,0x53,0x3d, 0x6,0x23,0x27, 0x5,0x21,0x6d,\n  0x6,0x24,0x77, 0x6,0x24,0x78, 0x4,0x24,0x34, 0xf,0x24,0x37,\n  0xf,0x24,0x38, 0x5,0x26,0x39, 0x6,0x2b,0x59, 0x6,0x2b,0x5a,\n  0x6,0x31,0x43, 0x6,0x31,0x42, 0x6,0x31,0x44, 0x5,0x29,0x39,\n  0xf,0x2a,0x73, 0xf,0x2a,0x74, 0xf,0x2a,0x75, 0x6,0x31,0x46,\n  0x6,0x31,0x45, 0x5,0x29,0x38, 0x6,0x37,0x6c, 0x6,0x37,0x6a,\n  0x6,0x37,0x6b, 0x5,0x2d,0x61, 0x5,0x2d,0x60, 0x6,0x40,0x26,\n  0xf,0x34,0x77, 0x5,0x38,0x5d, 0x5,0x38,0x5f, 0x5,0x38,0x60,\n  0x5,0x38,0x5e, 0x5,0x3f,0x4a, 0x5,0x45,0x7e, 0x4,0x43,0x55,\n  0x7,0x23,0x2b, 0x5,0x5b,0x54, 0x5,0x70,0x22, 0x6,0x23,0x28,\n  0x5,0x21,0x6e, 0x6,0x23,0x29, 0x6,0x23,0x2a, 0x5,0x21,0x6f,\n  0x5,0x22,0x6c, 0x4,0x22,0x76, 0x6,0x24,0x79, 0x5,0x22,0x72,\n  0x5,0x22,0x70, 0x5,0x22,0x6f, 0x5,0x22,0x6b, 0x5,0x22,0x6d,\n  0xf,0x22,0x50, 0xf,0x22,0x52, 0x5,0x22,0x71, 0x4,0x24,0x37,\n  0x6,0x27,0x73, 0x6,0x27,0x76, 0x6,0x27,0x75, 0x4,0x26,0x57,\n  0x5,0x24,0x3d, 0x6,0x27,0x6f, 0x4,0x24,0x38, 0x4,0x24,0x35,\n  0x6,0x27,0x77, 0x5,0x24,0x3e, 0x4,0x24,0x3b, 0x6,0x27,0x72,\n  0x6,0x2b,0x5d, 0x6,0x27,0x71, 0x6,0x2b,0x65, 0x6,0x2b,0x5b,\n  0x6,0x27,0x70, 0x5,0x24,0x3c, 0x6,0x2b,0x5c, 0x6,0x27,0x74,\n  0xf,0x24,0x3b, 0xf,0x24,0x3c, 0xf,0x24,0x3d, 0xf,0x24,0x3e,\n  0xf,0x24,0x3f, 0xf,0x24,0x40, 0xf,0x24,0x41, 0xf,0x24,0x43,\n  0xf,0x24,0x44, 0xf,0x24,0x45, 0xf,0x24,0x3a, 0x6,0x2b,0x5e,\n  0x6,0x2b,0x5f, 0x6,0x2b,0x61, 0x5,0x26,0x3b, 0x5,0x29,0x3a,\n  0x6,0x2b,0x64, 0x6,0x31,0x48, 0x5,0x26,0x3d, 0x6,0x31,0x4a,\n  0x5,0x26,0x3c, 0x6,0x31,0x49, 0x6,0x31,0x47, 0x6,0x2b,0x62,\n  0xf,0x27,0x26, 0xf,0x27,0x27, 0xf,0x27,0x28, 0xf,0x27,0x29,\n  0xf,0x27,0x2a, 0xf,0x27,0x2b, 0xf,0x27,0x2c, 0xf,0x27,0x2d,\n  0xf,0x27,0x2f, 0xf,0x27,0x25, 0x5,0x26,0x3e, 0x6,0x31,0x52,\n  0x6,0x31,0x54, 0x4,0x29,0x58, 0x4,0x29,0x4f, 0x4,0x29,0x50,\n  0x6,0x31,0x53, 0x6,0x37,0x6d, 0x5,0x29,0x3f, 0x5,0x29,0x42,\n  0x5,0x29,0x41, 0x6,0x31,0x4d, 0x5,0x29,0x47, 0x4,0x2d,0x34,\n  0x4,0x29,0x5c, 0x5,0x29,0x3e, 0x5,0x29,0x3d, 0x5,0x2d,0x63,\n  0x4,0x29,0x53, 0x6,0x37,0x6e, 0x5,0x29,0x48, 0x4,0x29,0x5a,\n  0x6,0x31,0x50, 0x5,0x29,0x40, 0x5,0x29,0x44, 0x6,0x31,0x4e,\n  0x6,0x31,0x56, 0x6,0x31,0x4b, 0x5,0x29,0x43, 0x5,0x29,0x3c,\n  0x6,0x31,0x55, 0x6,0x31,0x51, 0xf,0x2a,0x76, 0xf,0x2a,0x77,\n  0xf,0x2a,0x78, 0xf,0x2a,0x79, 0xf,0x2a,0x7a, 0xf,0x2a,0x7b,\n  0xf,0x2a,0x7c, 0xf,0x2a,0x7d, 0xf,0x2a,0x7e, 0xf,0x2b,0x21,\n  0xf,0x2b,0x23, 0xf,0x2b,0x24, 0xf,0x2b,0x25, 0xf,0x2b,0x26,\n  0xf,0x2b,0x27, 0xf,0x2b,0x28, 0xf,0x2b,0x29, 0xf,0x2b,0x2a,\n  0xf,0x2f,0x53, 0xf,0x2f,0x5c, 0xf,0x2f,0x61, 0x6,0x31,0x4c,\n  0xf,0x2b,0x22, 0x5,0x29,0x3b, 0x5,0x2d,0x62, 0x5,0x2d,0x64,\n  0x4,0x2d,0x3d, 0x6,0x37,0x75, 0x4,0x2d,0x38, 0x5,0x2d,0x6d,\n  0x5,0x2d,0x6b, 0x4,0x2d,0x39, 0x4,0x29,0x57, 0x4,0x2d,0x35,\n  0x5,0x2d,0x6a, 0x6,0x37,0x7b, 0x6,0x37,0x70, 0x6,0x37,0x7d,\n  0x6,0x37,0x73, 0x5,0x2d,0x69, 0x6,0x37,0x72, 0x6,0x37,0x77,\n  0x4,0x2d,0x36, 0x6,0x37,0x78, 0x5,0x2d,0x6c, 0x5,0x2d,0x65,\n  0x4,0x2d,0x37, 0x5,0x2d,0x67, 0x5,0x2d,0x68, 0x4,0x2d,0x3a,\n  0x6,0x37,0x7a, 0x5,0x2d,0x66, 0x6,0x31,0x57, 0x6,0x37,0x76,\n  0x6,0x40,0x27, 0x6,0x37,0x79, 0x6,0x37,0x74, 0x5,0x29,0x46,\n  0x6,0x37,0x7c, 0x6,0x37,0x7e, 0xf,0x2f,0x4c, 0xf,0x2f,0x4d,\n  0xf,0x2f,0x4e, 0xf,0x2f,0x4f, 0xf,0x2f,0x50, 0xf,0x2f,0x51,\n  0xf,0x2f,0x52, 0xf,0x2f,0x55, 0xf,0x2f,0x56, 0xf,0x2f,0x57,\n  0xf,0x2f,0x5a, 0xf,0x2f,0x5b, 0xf,0x2f,0x5d, 0xf,0x2f,0x5e,\n  0xf,0x2f,0x60, 0xf,0x2f,0x62, 0x6,0x40,0x28, 0xf,0x2f,0x58,\n  0x6,0x37,0x6f, 0xf,0x2f,0x54, 0x4,0x31,0x72, 0x4,0x31,0x73,\n  0x4,0x37,0x5e, 0x5,0x32,0x69, 0x6,0x40,0x31, 0x5,0x2d,0x6e,\n  0x6,0x40,0x37, 0x5,0x32,0x63, 0x4,0x31,0x74, 0x4,0x32,0x22,\n  0x4,0x31,0x76, 0x5,0x32,0x62, 0x4,0x31,0x7d, 0x5,0x38,0x61,\n  0x5,0x32,0x64, 0x6,0x40,0x34, 0x5,0x32,0x67, 0x6,0x40,0x35,\n  0x6,0x40,0x2c, 0x6,0x40,0x29, 0x4,0x32,0x24, 0x6,0x49,0x2f,\n  0x6,0x49,0x2a, 0x6,0x40,0x2a, 0x5,0x32,0x65, 0x6,0x49,0x2d,\n  0x4,0x37,0x5d, 0x6,0x40,0x2f, 0x6,0x49,0x2c, 0x6,0x49,0x2b,\n  0x5,0x32,0x68, 0x6,0x40,0x2d, 0x6,0x49,0x2e, 0x6,0x40,0x33,\n  0x6,0x40,0x30, 0x4,0x31,0x75, 0x6,0x40,0x2e, 0xf,0x34,0x78,\n  0xf,0x34,0x79, 0xf,0x34,0x7a, 0xf,0x34,0x7b, 0xf,0x34,0x7c,\n  0xf,0x34,0x7e, 0xf,0x35,0x22, 0xf,0x35,0x23, 0xf,0x35,0x24,\n  0xf,0x35,0x25, 0xf,0x35,0x26, 0xf,0x35,0x27, 0xf,0x35,0x28,\n  0xf,0x35,0x29, 0xf,0x35,0x2a, 0xf,0x35,0x2b, 0xf,0x35,0x2c,\n  0xf,0x35,0x2e, 0xf,0x35,0x2d, 0xf,0x35,0x2f, 0xf,0x35,0x30,\n  0xf,0x3b,0x31, 0xf,0x34,0x7d, 0x5,0x32,0x66, 0x4,0x32,0x26,\n  0xf,0x3b,0x41, 0x5,0x38,0x6b, 0x6,0x49,0x34, 0x4,0x37,0x69,\n  0x6,0x49,0x3b, 0x6,0x49,0x36, 0x5,0x38,0x6d, 0x6,0x49,0x41,\n  0x5,0x38,0x74, 0x6,0x49,0x31, 0x4,0x3d,0x51, 0x4,0x37,0x67,\n  0x5,0x38,0x62, 0x5,0x38,0x6a, 0x4,0x37,0x5f, 0x5,0x38,0x68,\n  0x4,0x37,0x63, 0x5,0x38,0x69, 0x4,0x37,0x6a, 0x5,0x38,0x66,\n  0x4,0x37,0x6d, 0x5,0x38,0x6f, 0x4,0x37,0x66, 0x6,0x49,0x42,\n  0x6,0x49,0x43, 0x6,0x49,0x3a, 0x5,0x38,0x71, 0x6,0x49,0x33,\n  0x6,0x49,0x46, 0x6,0x49,0x37, 0x5,0x38,0x70, 0x4,0x37,0x6c,\n  0x6,0x49,0x47, 0x6,0x49,0x32, 0x5,0x38,0x6c, 0x5,0x38,0x6e,\n  0x6,0x49,0x44, 0x5,0x38,0x64, 0x6,0x49,0x3c, 0x6,0x49,0x45,\n  0x6,0x49,0x40, 0x6,0x49,0x4c, 0x6,0x49,0x3f, 0x6,0x49,0x4d,\n  0x6,0x49,0x48, 0x6,0x49,0x39, 0x5,0x38,0x72, 0x6,0x49,0x3d,\n  0x5,0x38,0x73, 0x5,0x38,0x67, 0x6,0x49,0x38, 0x6,0x49,0x4b,\n  0x5,0x38,0x65, 0x6,0x52,0x73, 0xf,0x3b,0x30, 0xf,0x3b,0x32,\n  0xf,0x3b,0x34, 0xf,0x3b,0x35, 0xf,0x3b,0x36, 0xf,0x3b,0x37,\n  0xf,0x3b,0x38, 0xf,0x3b,0x39, 0xf,0x3b,0x3a, 0xf,0x3b,0x3b,\n  0xf,0x3b,0x3c, 0xf,0x3b,0x3d, 0xf,0x3b,0x3f, 0xf,0x3b,0x40,\n  0xf,0x3b,0x42, 0xf,0x3b,0x43, 0xf,0x3b,0x44, 0xf,0x3b,0x45,\n  0xf,0x3b,0x46, 0xf,0x3b,0x48, 0xf,0x3b,0x49, 0xf,0x3b,0x4a,\n  0x6,0x52,0x74, 0x6,0x49,0x3e, 0x6,0x49,0x49, 0x6,0x49,0x35,\n  0x5,0x38,0x63, 0xf,0x3b,0x47, 0x5,0x3f,0x52, 0x6,0x52,0x7b,\n  0x4,0x3d,0x4b, 0x4,0x3d,0x49, 0x5,0x3f,0x55, 0x4,0x3d,0x46,\n  0x6,0x52,0x78, 0x4,0x3d,0x4d, 0x4,0x3d,0x53, 0x4,0x3d,0x47,\n  0x4,0x3d,0x52, 0x6,0x52,0x7e, 0x5,0x3f,0x51, 0x5,0x46,0x21,\n  0x5,0x3f,0x4b, 0x6,0x5d,0x2c, 0x6,0x53,0x25, 0x6,0x52,0x75,\n  0x6,0x53,0x23, 0x6,0x53,0x22, 0x5,0x3f,0x4d, 0x5,0x3f,0x53,\n  0x5,0x3f,0x4e, 0x6,0x52,0x79, 0x6,0x53,0x21, 0x5,0x3f,0x50,\n  0x6,0x53,0x24, 0x6,0x52,0x7c, 0x5,0x3f,0x4c, 0x6,0x52,0x7a,\n  0x5,0x3f,0x4f, 0xf,0x41,0x56, 0xf,0x41,0x57, 0xf,0x41,0x58,\n  0xf,0x41,0x59, 0xf,0x41,0x5a, 0xf,0x41,0x5b, 0xf,0x41,0x5c,\n  0xf,0x41,0x5d, 0xf,0x41,0x5e, 0xf,0x41,0x60, 0xf,0x41,0x61,\n  0xf,0x41,0x63, 0xf,0x41,0x64, 0xf,0x41,0x65, 0xf,0x41,0x66,\n  0xf,0x41,0x67, 0xf,0x41,0x69, 0xf,0x48,0x30, 0x6,0x52,0x77,\n  0x6,0x52,0x7d, 0x6,0x52,0x76, 0xf,0x41,0x68, 0x5,0x3f,0x54,\n  0x6,0x5d,0x36, 0x5,0x4d,0x39, 0x5,0x46,0x27, 0x5,0x46,0x2a,\n  0x4,0x43,0x62, 0x4,0x43,0x5f, 0x6,0x5d,0x3c, 0x6,0x5d,0x3d,\n  0x6,0x5d,0x2e, 0x4,0x43,0x57, 0x6,0x5d,0x3f, 0x5,0x46,0x26,\n  0x4,0x43,0x63, 0x5,0x4d,0x38, 0x5,0x46,0x29, 0x6,0x5d,0x35,\n  0x4,0x43,0x59, 0x7,0x23,0x2f, 0x4,0x43,0x5b, 0x4,0x43,0x5a,\n  0x7,0x23,0x2e, 0x7,0x23,0x31, 0x5,0x46,0x24, 0x4,0x43,0x65,\n  0x6,0x5d,0x39, 0x6,0x5d,0x3e, 0x6,0x5d,0x3a, 0x5,0x46,0x28,\n  0x6,0x5d,0x37, 0x5,0x46,0x2b, 0x7,0x23,0x2c, 0x6,0x5d,0x3b,\n  0x6,0x5d,0x33, 0x6,0x5d,0x31, 0x5,0x46,0x22, 0x4,0x43,0x60,\n  0x6,0x5d,0x2f, 0x6,0x5d,0x34, 0xf,0x48,0x2b, 0xf,0x48,0x2c,\n  0xf,0x48,0x2d, 0xf,0x48,0x2e, 0xf,0x48,0x2f, 0xf,0x48,0x33,\n  0xf,0x48,0x34, 0xf,0x48,0x35, 0xf,0x48,0x37, 0xf,0x48,0x38,\n  0xf,0x48,0x3a, 0xf,0x48,0x3b, 0xf,0x48,0x39, 0xf,0x48,0x3c,\n  0xf,0x48,0x3d, 0xf,0x48,0x3e, 0xf,0x48,0x3f, 0xf,0x48,0x40,\n  0xf,0x48,0x41, 0xf,0x48,0x42, 0xf,0x48,0x43, 0xf,0x48,0x44,\n  0xf,0x48,0x45, 0xf,0x48,0x47, 0xf,0x48,0x48, 0xf,0x48,0x49,\n  0xf,0x48,0x46, 0x6,0x5d,0x30, 0xf,0x48,0x36, 0x7,0x23,0x33,\n  0x7,0x23,0x38, 0x5,0x4d,0x3c, 0x4,0x4a,0x25, 0x7,0x23,0x3d,\n  0x7,0x23,0x37, 0x7,0x23,0x39, 0x4,0x49,0x7b, 0x4,0x49,0x78,\n  0x5,0x4d,0x3d, 0x5,0x4d,0x3b, 0x7,0x23,0x45, 0x4,0x49,0x7d,\n  0x7,0x2e,0x2f, 0x4,0x4a,0x21, 0x5,0x4d,0x41, 0x4,0x4a,0x26,\n  0x4,0x49,0x7c, 0x5,0x54,0x59, 0x7,0x2e,0x3c, 0x7,0x23,0x35,\n  0x7,0x23,0x34, 0x7,0x2e,0x2d, 0x7,0x2e,0x2b, 0x7,0x23,0x44,\n  0x7,0x2e,0x2c, 0x7,0x23,0x3c, 0x5,0x4d,0x40, 0x7,0x2e,0x2e,\n  0x5,0x4d,0x3f, 0x7,0x23,0x3b, 0x7,0x23,0x42, 0x7,0x23,0x43,\n  0x7,0x23,0x3e, 0x7,0x23,0x41, 0x4,0x49,0x77, 0xf,0x48,0x31,\n  0x7,0x23,0x32, 0x7,0x23,0x3f, 0x7,0x23,0x40, 0xf,0x4e,0x7c,\n  0xf,0x4e,0x7d, 0xf,0x4e,0x7e, 0xf,0x4f,0x21, 0xf,0x4f,0x22,\n  0xf,0x4f,0x23, 0xf,0x4f,0x26, 0xf,0x4f,0x27, 0xf,0x4f,0x28,\n  0xf,0x4f,0x29, 0xf,0x4f,0x2a, 0xf,0x4f,0x2b, 0xf,0x4f,0x2d,\n  0xf,0x4f,0x2e, 0xf,0x4f,0x2f, 0xf,0x4f,0x30, 0xf,0x54,0x5f,\n  0xf,0x4f,0x24, 0x4,0x56,0x38, 0x4,0x50,0x41, 0x7,0x2e,0x35,\n  0x7,0x2e,0x30, 0x5,0x54,0x5a, 0x5,0x54,0x5b, 0x7,0x2e,0x3e,\n  0x7,0x2e,0x3a, 0x7,0x2e,0x32, 0x7,0x23,0x36, 0x4,0x50,0x3e,\n  0x4,0x50,0x43, 0x4,0x50,0x40, 0x5,0x54,0x5d, 0x4,0x50,0x3f,\n  0x7,0x2e,0x3d, 0x4,0x50,0x46, 0x7,0x2e,0x3b, 0x4,0x50,0x48,\n  0x4,0x50,0x42, 0x4,0x50,0x47, 0x7,0x2e,0x39, 0x7,0x2e,0x31,\n  0x7,0x2e,0x40, 0x7,0x38,0x29, 0x7,0x2e,0x38, 0x5,0x54,0x5f,\n  0x5,0x54,0x5c, 0x7,0x2e,0x37, 0x7,0x38,0x28, 0x7,0x2e,0x33,\n  0x7,0x2e,0x3f, 0xf,0x54,0x55, 0xf,0x54,0x56, 0xf,0x54,0x57,\n  0xf,0x54,0x58, 0xf,0x54,0x59, 0xf,0x54,0x5a, 0xf,0x54,0x5b,\n  0xf,0x54,0x5c, 0xf,0x54,0x5d, 0xf,0x54,0x5e, 0xf,0x54,0x60,\n  0x7,0x2e,0x34, 0x7,0x2e,0x36, 0x4,0x50,0x44, 0xf,0x54,0x54,\n  0x5,0x5b,0x56, 0x7,0x38,0x31, 0x5,0x5b,0x57, 0x7,0x38,0x36,\n  0x4,0x56,0x3b, 0x7,0x38,0x2f, 0x7,0x38,0x35, 0x4,0x56,0x3a,\n  0x7,0x38,0x34, 0x7,0x38,0x2c, 0x5,0x5b,0x58, 0x4,0x56,0x37,\n  0x5,0x5b,0x55, 0x7,0x38,0x2a, 0x7,0x38,0x37, 0x7,0x38,0x30,\n  0x7,0x38,0x2e, 0x7,0x38,0x32, 0x7,0x38,0x38, 0x7,0x38,0x2b,\n  0x7,0x38,0x2d, 0xf,0x5a,0x30, 0xf,0x5a,0x31, 0xf,0x5a,0x32,\n  0xf,0x5a,0x33, 0xf,0x5a,0x34, 0xf,0x5a,0x35, 0x7,0x38,0x33,\n  0x4,0x5b,0x33, 0x4,0x5b,0x38, 0x5,0x61,0x6e, 0x5,0x61,0x6b,\n  0x5,0x61,0x6c, 0x5,0x61,0x6d, 0x7,0x3f,0x68, 0x7,0x3f,0x67,\n  0x4,0x5b,0x35, 0x4,0x5b,0x37, 0x5,0x67,0x7a, 0x5,0x6c,0x2d,\n  0x7,0x3f,0x69, 0x7,0x3f,0x66, 0x4,0x5b,0x34, 0x7,0x3f,0x63,\n  0x7,0x3f,0x65, 0x7,0x47,0x2f, 0x7,0x3f,0x61, 0x7,0x3f,0x64,\n  0xf,0x5e,0x68, 0xf,0x5e,0x69, 0xf,0x5e,0x6a, 0xf,0x5e,0x6d,\n  0xf,0x5e,0x6e, 0xf,0x5e,0x6f, 0xf,0x5e,0x71, 0xf,0x5e,0x72,\n  0xf,0x5e,0x74, 0xf,0x5e,0x6c, 0xf,0x5e,0x6b, 0x4,0x5f,0x66,\n  0x4,0x5f,0x68, 0x4,0x5f,0x67, 0x4,0x5f,0x69, 0x5,0x6c,0x2f,\n  0x7,0x47,0x32, 0x7,0x47,0x34, 0x7,0x47,0x36, 0x5,0x67,0x7b,\n  0x7,0x47,0x30, 0x5,0x6c,0x2e, 0x7,0x47,0x38, 0x4,0x5f,0x6b,\n  0x7,0x47,0x35, 0x7,0x47,0x33, 0x7,0x47,0x31, 0x4,0x5f,0x6a,\n  0x5,0x67,0x79, 0xf,0x62,0x3e, 0xf,0x62,0x3f, 0xf,0x62,0x40,\n  0xf,0x62,0x41, 0xf,0x62,0x42, 0xf,0x62,0x43, 0xf,0x62,0x44,\n  0xf,0x62,0x45, 0xf,0x62,0x46, 0xf,0x62,0x49, 0xf,0x65,0x2f,\n  0x7,0x3f,0x6a, 0x7,0x47,0x37, 0xf,0x62,0x47, 0x5,0x6c,0x32,\n  0x4,0x66,0x3f, 0x7,0x4d,0x6d, 0x4,0x63,0x48, 0x7,0x4d,0x6c,\n  0x4,0x63,0x49, 0x7,0x4d,0x70, 0x4,0x63,0x4a, 0x7,0x4d,0x6e,\n  0x5,0x6c,0x33, 0x5,0x6c,0x30, 0x5,0x6c,0x31, 0x7,0x4d,0x6f,\n  0xf,0x65,0x2d, 0xf,0x65,0x2e, 0xf,0x65,0x30, 0x7,0x53,0x44,\n  0x7,0x57,0x77, 0x4,0x66,0x41, 0x7,0x53,0x3f, 0x7,0x53,0x43,\n  0x7,0x53,0x42, 0x4,0x66,0x42, 0x5,0x73,0x45, 0x7,0x53,0x41,\n  0x7,0x53,0x40, 0xf,0x67,0x56, 0xf,0x67,0x57, 0xf,0x67,0x58,\n  0xf,0x67,0x59, 0x7,0x57,0x78, 0x7,0x57,0x79, 0x5,0x73,0x44,\n  0x5,0x73,0x47, 0x5,0x70,0x23, 0x7,0x57,0x7a, 0x5,0x73,0x42,\n  0x5,0x73,0x46, 0x7,0x57,0x7c, 0x7,0x5b,0x57, 0x7,0x53,0x3e,\n  0xf,0x69,0x43, 0xf,0x69,0x44, 0x5,0x73,0x43, 0x7,0x57,0x7b,\n  0x7,0x5b,0x58, 0xf,0x6a,0x54, 0xf,0x6a,0x55, 0xf,0x6a,0x56,\n  0x7,0x5e,0x6a, 0x5,0x77,0x5d, 0x7,0x5e,0x69, 0x4,0x6b,0x6b,\n  0x7,0x5e,0x6b, 0x5,0x77,0x5c, 0x7,0x5e,0x68, 0xf,0x6b,0x49,\n  0xf,0x6b,0x4a, 0xf,0x6b,0x4b, 0xf,0x6b,0x4c, 0x7,0x62,0x38,\n  0xf,0x6c,0x2a, 0xf,0x6c,0x2b, 0x4,0x6d,0x73, 0x7,0x63,0x53,\n  0xf,0x6c,0x61, 0x7,0x66,0x26, 0x4,0x22,0x77, 0x4,0x24,0x3d,\n  0x4,0x26,0x5a, 0xf,0x27,0x31, 0xf,0x27,0x32, 0xf,0x27,0x33,\n  0x6,0x31,0x58, 0x6,0x38,0x22, 0x5,0x2f,0x5c, 0x4,0x2d,0x3e,\n  0x6,0x38,0x21, 0x6,0x36,0x44, 0x6,0x40,0x39, 0x6,0x40,0x38,\n  0x6,0x49,0x4f, 0x6,0x49,0x4e, 0xf,0x3b,0x4c, 0xf,0x3b,0x4d,\n  0x5,0x38,0x75, 0x6,0x53,0x26, 0xf,0x41,0x6a, 0x6,0x53,0x27,\n  0x5,0x46,0x2d, 0x6,0x5d,0x40, 0x7,0x23,0x46, 0x7,0x23,0x47,\n  0x5,0x54,0x60, 0xf,0x54,0x61, 0x7,0x38,0x3b, 0x7,0x38,0x3a,\n  0x5,0x5b,0x59, 0x7,0x38,0x3c, 0x7,0x4d,0x71, 0x5,0x24,0x3f,\n  0x6,0x27,0x79, 0x5,0x24,0x40, 0x6,0x27,0x7a, 0x5,0x24,0x41,\n  0x6,0x27,0x78, 0x6,0x2b,0x68, 0x4,0x26,0x60, 0x5,0x26,0x42,\n  0x5,0x26,0x40, 0x4,0x26,0x5d, 0x6,0x2b,0x6c, 0x6,0x2b,0x66,\n  0x6,0x2b,0x6a, 0x6,0x2b,0x69, 0x6,0x2b,0x67, 0x5,0x26,0x3f,\n  0x5,0x26,0x41, 0x4,0x26,0x5c, 0x4,0x29,0x60, 0x6,0x31,0x59,\n  0x5,0x29,0x4c, 0x5,0x29,0x4b, 0x6,0x31,0x5c, 0x6,0x31,0x5e,\n  0x6,0x31,0x5d, 0x5,0x29,0x49, 0x5,0x29,0x4a, 0x4,0x29,0x5e,\n  0x4,0x29,0x5f, 0x6,0x31,0x5b, 0x6,0x38,0x23, 0x6,0x38,0x24,\n  0x6,0x38,0x26, 0x5,0x2d,0x72, 0x6,0x31,0x5f, 0x4,0x2d,0x45,\n  0x6,0x38,0x28, 0x5,0x2d,0x70, 0x6,0x38,0x2a, 0x5,0x2d,0x6f,\n  0x5,0x2d,0x74, 0x6,0x38,0x25, 0x5,0x2d,0x73, 0x5,0x2d,0x71,\n  0x6,0x38,0x29, 0x6,0x38,0x27, 0x4,0x2d,0x41, 0x5,0x32,0x6d,\n  0x6,0x40,0x40, 0x4,0x32,0x2e, 0x6,0x40,0x3a, 0x6,0x40,0x3b,\n  0x6,0x40,0x3d, 0x5,0x32,0x6f, 0x5,0x32,0x70, 0x4,0x32,0x30,\n  0x6,0x40,0x3e, 0x6,0x40,0x3c, 0x5,0x32,0x6b, 0x6,0x40,0x41,\n  0x4,0x32,0x31, 0x4,0x32,0x2a, 0x4,0x32,0x2d, 0x4,0x32,0x29,\n  0x5,0x32,0x6e, 0xf,0x35,0x31, 0xf,0x35,0x32, 0xf,0x35,0x33,\n  0xf,0x35,0x34, 0xf,0x35,0x35, 0x5,0x32,0x6a, 0x6,0x40,0x3f,\n  0x6,0x49,0x58, 0x5,0x39,0x22, 0x6,0x49,0x55, 0x4,0x37,0x7a,\n  0x4,0x37,0x7b, 0x6,0x49,0x59, 0x6,0x49,0x54, 0x6,0x49,0x5a,\n  0x5,0x38,0x76, 0x5,0x38,0x7e, 0x5,0x39,0x21, 0x5,0x38,0x7d,\n  0x5,0x38,0x77, 0x6,0x49,0x56, 0x5,0x38,0x7b, 0x6,0x49,0x51,\n  0x6,0x49,0x50, 0x6,0x49,0x53, 0x4,0x37,0x72, 0x4,0x37,0x73,\n  0x4,0x37,0x74, 0x5,0x38,0x78, 0x5,0x38,0x79, 0x5,0x32,0x6c,\n  0x6,0x49,0x52, 0x6,0x53,0x2f, 0x5,0x38,0x7a, 0x5,0x3f,0x57,\n  0x5,0x3f,0x5a, 0x5,0x3f,0x5c, 0x4,0x3d,0x57, 0x4,0x3d,0x5f,\n  0x6,0x53,0x2b, 0x6,0x53,0x2e, 0x6,0x53,0x29, 0x5,0x3f,0x5b,\n  0x6,0x53,0x30, 0x6,0x53,0x2d, 0x6,0x53,0x28, 0x4,0x3d,0x60,\n  0x5,0x3f,0x56, 0x6,0x53,0x31, 0x5,0x3f,0x59, 0x4,0x3d,0x5e,\n  0x4,0x3d,0x55, 0x4,0x3d,0x56, 0x4,0x3d,0x58, 0x5,0x3f,0x58,\n  0x6,0x53,0x2a, 0xf,0x41,0x6b, 0x6,0x53,0x2c, 0x5,0x32,0x71,\n  0x4,0x3d,0x5a, 0x6,0x55,0x60, 0x5,0x46,0x34, 0x6,0x5d,0x49,\n  0x5,0x46,0x32, 0x6,0x5d,0x41, 0x4,0x43,0x68, 0x5,0x46,0x31,\n  0x6,0x5d,0x42, 0x5,0x46,0x2f, 0x6,0x5d,0x46, 0x5,0x46,0x37,\n  0x5,0x46,0x35, 0x6,0x5d,0x47, 0x6,0x5d,0x45, 0x6,0x5d,0x44,\n  0x6,0x5d,0x48, 0x6,0x5d,0x43, 0x6,0x5d,0x4a, 0x5,0x46,0x33,\n  0x4,0x43,0x67, 0x5,0x46,0x36, 0x6,0x5d,0x4b, 0x5,0x48,0x25,\n  0x5,0x4d,0x42, 0x5,0x4d,0x47, 0x4,0x4a,0x2c, 0x7,0x23,0x4e,\n  0x7,0x23,0x49, 0x7,0x23,0x48, 0x5,0x4d,0x46, 0x7,0x23,0x52,\n  0x7,0x23,0x4f, 0x7,0x23,0x4d, 0x5,0x4d,0x45, 0x7,0x23,0x50,\n  0x5,0x4d,0x43, 0x5,0x4d,0x44, 0xf,0x4f,0x31, 0x7,0x23,0x4b,\n  0x7,0x23,0x4c, 0x7,0x23,0x4a, 0x4,0x50,0x4b, 0x7,0x2e,0x42,\n  0x7,0x2e,0x46, 0x7,0x2e,0x48, 0xf,0x54,0x62, 0x5,0x54,0x61,\n  0x7,0x2e,0x4b, 0x7,0x2e,0x47, 0x7,0x2e,0x49, 0x7,0x2e,0x41,\n  0x7,0x2e,0x45, 0x7,0x2e,0x4c, 0x5,0x54,0x63, 0x7,0x2e,0x4a,\n  0x4,0x50,0x4a, 0x5,0x54,0x64, 0x5,0x54,0x65, 0x5,0x54,0x66,\n  0xf,0x54,0x63, 0x7,0x2e,0x44, 0x5,0x54,0x62, 0x7,0x23,0x51,\n  0x5,0x54,0x67, 0x7,0x38,0x3e, 0x7,0x38,0x3d, 0x5,0x5b,0x5a,\n  0x5,0x5b,0x5e, 0x5,0x5b,0x5d, 0x4,0x56,0x3c, 0x4,0x56,0x3d,\n  0x5,0x5b,0x5b, 0xf,0x5a,0x37, 0xf,0x5a,0x38, 0x7,0x38,0x3f,\n  0x5,0x5b,0x5c, 0x5,0x61,0x70, 0x7,0x3f,0x6c, 0x5,0x61,0x6f,\n  0x4,0x5b,0x3b, 0x7,0x3f,0x6d, 0x7,0x3f,0x6e, 0x4,0x5b,0x39,\n  0x7,0x3f,0x6b, 0x5,0x68,0x21, 0x5,0x67,0x7e, 0x5,0x67,0x7c,\n  0x5,0x67,0x7d, 0xf,0x62,0x4a, 0x5,0x6c,0x34, 0x4,0x63,0x4d,\n  0x5,0x6c,0x35, 0x7,0x4d,0x72, 0x4,0x63,0x4b, 0x7,0x4d,0x75,\n  0x7,0x4d,0x74, 0x5,0x6c,0x36, 0x7,0x4d,0x76, 0x7,0x4d,0x77,\n  0x4,0x66,0x44, 0x5,0x70,0x25, 0x5,0x70,0x26, 0x5,0x73,0x48,\n  0xf,0x69,0x45, 0x7,0x5b,0x59, 0x5,0x75,0x6b, 0x4,0x6a,0x4a,\n  0x7,0x5b,0x5a, 0x4,0x6c,0x6f, 0xf,0x6c,0x62, 0xf,0x22,0x53,\n  0xf,0x24,0x46, 0x6,0x2b,0x6d, 0xf,0x2b,0x2d, 0xf,0x2b,0x2e,\n  0xf,0x2b,0x2f, 0x6,0x38,0x2d, 0x6,0x38,0x2e, 0xf,0x2f,0x65,\n  0x6,0x40,0x42, 0x6,0x40,0x44, 0xf,0x35,0x37, 0xf,0x35,0x38,\n  0x6,0x40,0x43, 0xf,0x3b,0x4e, 0x5,0x3f,0x5d, 0xf,0x41,0x6c,\n  0x6,0x53,0x32, 0xf,0x35,0x36, 0x5,0x4d,0x48, 0x7,0x23,0x54,\n  0x7,0x23,0x53, 0x5,0x4d,0x49, 0xf,0x4f,0x33, 0xf,0x4f,0x34,\n  0x5,0x4d,0x4a, 0x7,0x2e,0x4d, 0xf,0x5a,0x39, 0xf,0x5e,0x75,\n  0xf,0x62,0x4b, 0xf,0x67,0x5a, 0x7,0x5b,0x5b, 0x6,0x22,0x22,\n  0xf,0x27,0x34, 0x6,0x31,0x60, 0x4,0x2d,0x48, 0x5,0x2d,0x76,\n  0x5,0x2d,0x75, 0x6,0x38,0x2f, 0x5,0x32,0x72, 0xf,0x35,0x39,\n  0x6,0x40,0x46, 0x6,0x40,0x45, 0x6,0x49,0x5d, 0xf,0x40,0x32,\n  0x6,0x49,0x5b, 0x6,0x49,0x5c, 0x4,0x3d,0x61, 0x6,0x5d,0x4c,\n  0x5,0x3f,0x5e, 0xf,0x41,0x6d, 0x4,0x43,0x6a, 0x4,0x4a,0x2d,\n  0x7,0x23,0x55, 0x7,0x38,0x40, 0x4,0x5f,0x6c, 0x6,0x22,0x23,\n  0xf,0x24,0x47, 0x6,0x2b,0x6f, 0x6,0x2b,0x6e, 0x6,0x31,0x61,\n  0xf,0x2f,0x66, 0x4,0x32,0x32, 0x6,0x40,0x48, 0x6,0x40,0x47,\n  0x6,0x49,0x60, 0x6,0x49,0x64, 0x6,0x49,0x63, 0x5,0x39,0x23,\n  0x6,0x49,0x66, 0x6,0x49,0x5f, 0x6,0x49,0x5e, 0x6,0x49,0x62,\n  0x4,0x37,0x7c, 0x6,0x4c,0x3e, 0x6,0x49,0x65, 0x4,0x3d,0x62,\n  0x6,0x53,0x36, 0x6,0x53,0x34, 0x6,0x53,0x37, 0x5,0x3f,0x5f,\n  0x6,0x5d,0x4f, 0x6,0x5d,0x4e, 0x6,0x5d,0x50, 0x3,0x47,0x31,\n  0x4,0x4a,0x2f, 0x6,0x5d,0x4d, 0x5,0x4d,0x4c, 0x5,0x4d,0x4d,\n  0x7,0x2e,0x51, 0x7,0x2e,0x50, 0x7,0x2e,0x4f, 0x7,0x2e,0x52,\n  0x7,0x2e,0x4e, 0x4,0x50,0x4d, 0x7,0x38,0x41, 0x7,0x38,0x42,\n  0x7,0x3f,0x6f, 0x4,0x5b,0x3c, 0x7,0x3f,0x70, 0x7,0x3f,0x71,\n  0x7,0x47,0x39, 0xf,0x62,0x4c, 0x7,0x4d,0x78, 0x7,0x57,0x7d,\n  0x4,0x24,0x42, 0x6,0x27,0x7b, 0xf,0x27,0x35, 0xf,0x27,0x36,\n  0x5,0x29,0x4d, 0x6,0x31,0x64, 0x6,0x31,0x63, 0xf,0x2b,0x30,\n  0x6,0x31,0x62, 0x4,0x2d,0x4a, 0x5,0x2d,0x77, 0x6,0x38,0x31,\n  0x6,0x38,0x33, 0x6,0x38,0x35, 0xf,0x2f,0x67, 0xf,0x2f,0x68,\n  0xf,0x2f,0x69, 0xf,0x2f,0x6a, 0x6,0x38,0x32, 0x4,0x32,0x33,\n  0x4,0x32,0x35, 0x6,0x40,0x4a, 0xf,0x35,0x3a, 0xf,0x35,0x3b,\n  0x6,0x40,0x49, 0x6,0x49,0x69, 0x5,0x39,0x25, 0x5,0x39,0x24,\n  0x6,0x49,0x68, 0x6,0x49,0x6a, 0x6,0x49,0x67, 0xf,0x3b,0x4f,\n  0xf,0x3b,0x50, 0x6,0x53,0x38, 0x5,0x3f,0x60, 0x6,0x53,0x39,\n  0xf,0x41,0x6e, 0xf,0x41,0x6f, 0x5,0x46,0x38, 0x5,0x46,0x3a,\n  0x6,0x5d,0x52, 0x5,0x46,0x39, 0x7,0x23,0x56, 0xf,0x4f,0x35,\n  0x7,0x2e,0x53, 0x5,0x54,0x68, 0x7,0x38,0x43, 0x5,0x5b,0x5f,\n  0x7,0x3f,0x73, 0x5,0x61,0x71, 0x4,0x5b,0x3d, 0x7,0x3f,0x74,\n  0x7,0x3f,0x72, 0x7,0x47,0x3a, 0x7,0x53,0x45, 0x4,0x68,0x6d,\n  0x7,0x57,0x7e, 0x7,0x5e,0x6c, 0x7,0x60,0x70, 0x5,0x24,0x42,\n  0x5,0x29,0x4e, 0x5,0x2d,0x79, 0x5,0x2d,0x78, 0x4,0x37,0x7d,\n  0x6,0x49,0x6b, 0x6,0x53,0x3a, 0x6,0x53,0x3b, 0x4,0x3d,0x66,\n  0xf,0x4f,0x36, 0x6,0x23,0x2c, 0x6,0x23,0x2b, 0x6,0x24,0x7b,\n  0x5,0x22,0x73, 0x6,0x24,0x7a, 0x6,0x24,0x7c, 0xf,0x22,0x54,\n  0xf,0x24,0x4b, 0x6,0x27,0x7c, 0x6,0x27,0x7d, 0x6,0x28,0x25,\n  0x5,0x24,0x43, 0x6,0x28,0x22, 0x6,0x27,0x7e, 0x6,0x28,0x24,\n  0x6,0x28,0x23, 0x6,0x28,0x21, 0xf,0x24,0x48, 0xf,0x24,0x4a,\n  0xf,0x24,0x4c, 0x4,0x24,0x44, 0x5,0x26,0x48, 0x6,0x2b,0x74,\n  0x6,0x2b,0x73, 0x5,0x26,0x49, 0x6,0x2b,0x7d, 0x5,0x26,0x44,\n  0x6,0x2b,0x79, 0x5,0x26,0x47, 0x6,0x2b,0x7a, 0x6,0x2b,0x77,\n  0x5,0x26,0x46, 0x5,0x26,0x45, 0x6,0x2b,0x75, 0x6,0x2b,0x78,\n  0xf,0x27,0x37, 0xf,0x27,0x38, 0xf,0x27,0x39, 0xf,0x27,0x3a,\n  0xf,0x27,0x3b, 0xf,0x27,0x3c, 0xf,0x27,0x3d, 0x6,0x2b,0x71,\n  0x6,0x2b,0x7b, 0x6,0x2b,0x7c, 0x6,0x2b,0x72, 0x6,0x2b,0x76,\n  0x5,0x29,0x51, 0x6,0x31,0x65, 0x6,0x31,0x66, 0x5,0x29,0x50,\n  0x4,0x29,0x66, 0x6,0x31,0x68, 0x6,0x31,0x69, 0x4,0x29,0x68,\n  0xf,0x2b,0x31, 0xf,0x2b,0x32, 0x6,0x31,0x6a, 0xf,0x2b,0x35,\n  0xf,0x2b,0x36, 0x6,0x31,0x6e, 0x6,0x31,0x6c, 0x6,0x31,0x6b,\n  0x5,0x2d,0x7e, 0x6,0x38,0x3a, 0x5,0x2e,0x21, 0x5,0x2e,0x22,\n  0x5,0x2d,0x7b, 0x5,0x2e,0x23, 0x5,0x2d,0x7c, 0x5,0x2d,0x7a,\n  0x6,0x38,0x3e, 0x6,0x38,0x38, 0x6,0x38,0x3c, 0x5,0x2d,0x7d,\n  0x6,0x38,0x39, 0x6,0x38,0x3d, 0xf,0x2f,0x6b, 0xf,0x2f,0x6d,\n  0x6,0x38,0x3b, 0xf,0x2f,0x6c, 0x6,0x38,0x41, 0x6,0x38,0x3f,\n  0x5,0x32,0x73, 0x4,0x32,0x38, 0x4,0x38,0x21, 0x6,0x40,0x53,\n  0x4,0x32,0x3d, 0x6,0x40,0x4e, 0x6,0x40,0x4b, 0x6,0x40,0x4c,\n  0x6,0x40,0x50, 0x6,0x40,0x4d, 0x6,0x40,0x55, 0x5,0x32,0x75,\n  0x6,0x38,0x40, 0x6,0x40,0x54, 0x6,0x40,0x56, 0xf,0x35,0x3c,\n  0xf,0x35,0x3d, 0xf,0x35,0x3e, 0xf,0x35,0x3f, 0xf,0x35,0x40,\n  0xf,0x35,0x41, 0xf,0x35,0x42, 0xf,0x35,0x43, 0xf,0x35,0x44,\n  0xf,0x35,0x45, 0xf,0x35,0x46, 0xf,0x35,0x47, 0x6,0x40,0x52,\n  0x5,0x32,0x74, 0x6,0x49,0x71, 0x6,0x49,0x74, 0x4,0x32,0x3c,\n  0x5,0x3f,0x61, 0x5,0x39,0x2a, 0x6,0x49,0x6f, 0x5,0x39,0x27,\n  0x6,0x49,0x70, 0x5,0x39,0x29, 0x5,0x39,0x26, 0x6,0x49,0x6c,\n  0x6,0x49,0x6d, 0x4,0x38,0x23, 0x6,0x49,0x76, 0x5,0x39,0x2b,\n  0x4,0x38,0x27, 0x6,0x49,0x6e, 0x6,0x49,0x75, 0x6,0x49,0x77,\n  0xf,0x3b,0x51, 0xf,0x3b,0x53, 0xf,0x3b,0x54, 0xf,0x3b,0x56,\n  0xf,0x3b,0x57, 0xf,0x3b,0x59, 0xf,0x3b,0x5a, 0xf,0x3b,0x5c,\n  0xf,0x3b,0x5d, 0xf,0x3b,0x52, 0xf,0x3b,0x58, 0x4,0x38,0x26,\n  0x4,0x38,0x28, 0x6,0x49,0x72, 0x5,0x39,0x2c, 0x5,0x39,0x28,\n  0x6,0x53,0x43, 0x5,0x3f,0x63, 0x6,0x53,0x41, 0x6,0x5d,0x53,\n  0x6,0x53,0x42, 0x6,0x53,0x3f, 0x6,0x53,0x44, 0xf,0x46,0x39,\n  0xf,0x3b,0x5b, 0x6,0x53,0x3e, 0xf,0x41,0x70, 0xf,0x41,0x71,\n  0xf,0x41,0x73, 0xf,0x41,0x74, 0xf,0x41,0x75, 0xf,0x41,0x76,\n  0xf,0x41,0x77, 0xf,0x41,0x78, 0xf,0x41,0x79, 0xf,0x41,0x7a,\n  0xf,0x41,0x7b, 0xf,0x41,0x7d, 0x5,0x3d,0x55, 0x6,0x53,0x45,\n  0x6,0x53,0x40, 0x5,0x3f,0x64, 0x5,0x46,0x3b, 0x5,0x46,0x3f,\n  0x5,0x46,0x3d, 0x5,0x46,0x3e, 0x6,0x5d,0x56, 0x5,0x46,0x40,\n  0x5,0x46,0x43, 0x5,0x46,0x44, 0x4,0x43,0x6c, 0x5,0x46,0x42,\n  0x5,0x4d,0x4e, 0xf,0x48,0x4a, 0xf,0x48,0x4b, 0xf,0x48,0x4c,\n  0xf,0x48,0x4d, 0xf,0x48,0x4e, 0xf,0x48,0x4f, 0x6,0x5d,0x54,\n  0x5,0x46,0x3c, 0x6,0x5d,0x57, 0x6,0x5d,0x59, 0x6,0x5d,0x5a,\n  0x6,0x5d,0x55, 0x6,0x5d,0x58, 0x7,0x23,0x61, 0x7,0x23,0x5c,\n  0x7,0x23,0x5b, 0x7,0x23,0x5e, 0x5,0x4d,0x52, 0x5,0x4d,0x55,\n  0x7,0x23,0x5a, 0x7,0x23,0x57, 0x7,0x23,0x58, 0x7,0x23,0x62,\n  0xf,0x4f,0x37, 0xf,0x4f,0x39, 0xf,0x4f,0x3a, 0x5,0x4d,0x54,\n  0x7,0x23,0x60, 0xf,0x4e,0x30, 0x7,0x23,0x5d, 0x7,0x23,0x5f,\n  0x7,0x23,0x59, 0x5,0x4d,0x51, 0x5,0x54,0x69, 0x5,0x54,0x6b,\n  0x7,0x2e,0x57, 0x4,0x50,0x55, 0x7,0x2e,0x55, 0x7,0x2e,0x5b,\n  0x7,0x2e,0x59, 0x7,0x2e,0x5d, 0x4,0x50,0x54, 0x7,0x2e,0x5c,\n  0x7,0x2e,0x54, 0xf,0x54,0x65, 0xf,0x54,0x66, 0xf,0x54,0x67,\n  0xf,0x54,0x69, 0xf,0x54,0x6a, 0x7,0x2e,0x58, 0x5,0x4d,0x4f,\n  0x7,0x2d,0x62, 0xf,0x54,0x68, 0x7,0x2e,0x43, 0x5,0x54,0x6a,\n  0x7,0x2e,0x56, 0xf,0x4f,0x38, 0x7,0x38,0x47, 0x5,0x5b,0x60,\n  0x5,0x5b,0x61, 0x7,0x38,0x48, 0x5,0x5b,0x62, 0x7,0x38,0x45,\n  0x7,0x38,0x46, 0x7,0x38,0x49, 0xf,0x5a,0x3a, 0xf,0x5a,0x3b,\n  0xf,0x5a,0x3c, 0x7,0x38,0x44, 0xf,0x5a,0x3d, 0x4,0x5b,0x3e,\n  0x5,0x61,0x72, 0x5,0x61,0x73, 0x7,0x3f,0x75, 0xf,0x5e,0x76,\n  0xf,0x5e,0x77, 0xf,0x5e,0x78, 0xf,0x5e,0x79, 0xf,0x5e,0x7b,\n  0x7,0x3f,0x78, 0x5,0x68,0x23, 0x7,0x47,0x3d, 0x7,0x47,0x3c,\n  0x5,0x68,0x22, 0x5,0x68,0x24, 0x7,0x47,0x3b, 0x7,0x47,0x3e,\n  0xf,0x62,0x4d, 0x5,0x6c,0x37, 0xf,0x65,0x31, 0xf,0x65,0x32,\n  0x5,0x6b,0x6e, 0x7,0x4d,0x79, 0x7,0x53,0x46, 0x7,0x58,0x21,\n  0xf,0x69,0x46, 0x5,0x73,0x39, 0x5,0x73,0x49, 0x7,0x5b,0x5c,\n  0x5,0x77,0x5e, 0x7,0x5e,0x6d, 0xf,0x6b,0x4d, 0x5,0x79,0x2b,\n  0x7,0x64,0x47, 0xf,0x24,0x4d, 0x6,0x2b,0x7e, 0xf,0x27,0x3f,\n  0xf,0x27,0x40, 0x6,0x2c,0x21, 0x5,0x29,0x53, 0x5,0x29,0x52,\n  0x6,0x31,0x70, 0xf,0x2b,0x37, 0xf,0x2b,0x39, 0x6,0x31,0x6f,\n  0x6,0x38,0x42, 0xf,0x2f,0x6f, 0xf,0x2f,0x70, 0xf,0x2f,0x71,\n  0xf,0x2f,0x72, 0xf,0x2f,0x73, 0xf,0x35,0x49, 0xf,0x35,0x4a,\n  0xf,0x3b,0x5f, 0x6,0x49,0x7a, 0x6,0x49,0x79, 0x5,0x3f,0x65,\n  0x4,0x43,0x70, 0x6,0x53,0x46, 0x5,0x4d,0x57, 0x5,0x4d,0x56,\n  0x7,0x23,0x63, 0xf,0x54,0x6b, 0x5,0x5b,0x63, 0x7,0x3f,0x7a,\n  0x5,0x61,0x74, 0x7,0x3f,0x79, 0x7,0x3f,0x77, 0x4,0x5f,0x6d,\n  0x7,0x4d,0x7a, 0x7,0x4d,0x7b, 0x5,0x7b,0x3f, 0x7,0x66,0x3e,\n  0x6,0x23,0x2d, 0x6,0x24,0x7d, 0x5,0x24,0x44, 0x6,0x28,0x29,\n  0x6,0x28,0x27, 0x6,0x28,0x28, 0x6,0x28,0x26, 0x6,0x2c,0x22,\n  0x5,0x29,0x54, 0x4,0x29,0x69, 0x4,0x29,0x6a, 0xf,0x2b,0x3a,\n  0x6,0x31,0x71, 0x6,0x38,0x43, 0xf,0x35,0x4b, 0x5,0x32,0x76,\n  0x6,0x40,0x59, 0x6,0x40,0x5b, 0x6,0x49,0x7d, 0x6,0x49,0x7c,\n  0x6,0x40,0x5a, 0x5,0x39,0x2d, 0xf,0x39,0x46, 0xf,0x3b,0x61,\n  0xf,0x3b,0x62, 0x6,0x53,0x47, 0x5,0x3f,0x67, 0xf,0x3b,0x60,\n  0xf,0x41,0x7e, 0xf,0x42,0x21, 0x6,0x53,0x48, 0x6,0x5d,0x5d,\n  0x6,0x5d,0x5e, 0x7,0x23,0x64, 0x4,0x4a,0x34, 0x5,0x4d,0x59,\n  0x4,0x4a,0x33, 0xf,0x4f,0x3b, 0xf,0x4f,0x3c, 0x5,0x54,0x6e,\n  0x5,0x54,0x6c, 0x5,0x5b,0x64, 0x5,0x54,0x6d, 0xf,0x54,0x6d,\n  0xf,0x54,0x6e, 0x7,0x38,0x4b, 0x7,0x38,0x4a, 0xf,0x5a,0x3e,\n  0x5,0x61,0x75, 0xf,0x5e,0x7c, 0x7,0x3f,0x7b, 0x5,0x6c,0x38,\n  0x5,0x75,0x6f, 0x5,0x77,0x5f, 0x5,0x21,0x48, 0x4,0x21,0x4e,\n  0x4,0x21,0x7d, 0xf,0x21,0x65, 0x5,0x22,0x75, 0x6,0x25,0x22,\n  0x5,0x22,0x74, 0x6,0x24,0x7e, 0x6,0x25,0x21, 0xf,0x22,0x56,\n  0x4,0x22,0x7b, 0x4,0x22,0x7a, 0x6,0x28,0x2c, 0x4,0x24,0x49,\n  0x6,0x28,0x2a, 0x6,0x28,0x2b, 0xf,0x24,0x4e, 0xf,0x24,0x4f,\n  0xf,0x24,0x54, 0xf,0x24,0x50, 0xf,0x24,0x52, 0x5,0x24,0x46,\n  0x6,0x28,0x2d, 0x5,0x24,0x45, 0x4,0x24,0x45, 0x4,0x26,0x6b,\n  0x5,0x26,0x4c, 0x4,0x26,0x66, 0x5,0x26,0x4b, 0x6,0x2c,0x2b,\n  0x5,0x26,0x50, 0x5,0x26,0x52, 0x6,0x2c,0x28, 0x6,0x2c,0x27,\n  0x6,0x2c,0x26, 0x5,0x26,0x4d, 0x5,0x26,0x53, 0x5,0x26,0x4f,\n  0x5,0x26,0x4e, 0xf,0x27,0x43, 0xf,0x27,0x45, 0xf,0x27,0x46,\n  0xf,0x27,0x47, 0xf,0x27,0x49, 0xf,0x27,0x4a, 0xf,0x27,0x4b,\n  0xf,0x27,0x4d, 0xf,0x27,0x4f, 0xf,0x27,0x51, 0xf,0x27,0x54,\n  0xf,0x27,0x55, 0x6,0x2c,0x24, 0x6,0x2c,0x29, 0x5,0x26,0x54,\n  0x6,0x2c,0x2c, 0xf,0x27,0x44, 0x6,0x2c,0x2d, 0x6,0x2c,0x2a,\n  0xf,0x27,0x48, 0xf,0x27,0x42, 0x6,0x2c,0x25, 0x5,0x26,0x55,\n  0x6,0x2d,0x5c, 0x6,0x31,0x74, 0x6,0x31,0x73, 0x4,0x29,0x6b,\n  0x5,0x29,0x56, 0x6,0x31,0x75, 0x6,0x31,0x76, 0x5,0x29,0x55,\n  0x5,0x29,0x59, 0x6,0x31,0x77, 0x5,0x2e,0x26, 0x5,0x29,0x5a,\n  0x5,0x29,0x58, 0xf,0x27,0x53, 0xf,0x2b,0x3b, 0xf,0x2b,0x3c,\n  0xf,0x2b,0x3d, 0xf,0x2b,0x3f, 0xf,0x2b,0x40, 0xf,0x2b,0x41,\n  0xf,0x2b,0x42, 0xf,0x2b,0x43, 0xf,0x2b,0x44, 0xf,0x2b,0x45,\n  0xf,0x2b,0x46, 0xf,0x2b,0x47, 0xf,0x2b,0x49, 0xf,0x2b,0x4a,\n  0xf,0x2b,0x4b, 0xf,0x2b,0x4c, 0xf,0x2b,0x4d, 0xf,0x2b,0x4e,\n  0xf,0x2b,0x4f, 0x5,0x29,0x5b, 0x6,0x40,0x5c, 0x6,0x38,0x4f,\n  0x6,0x38,0x53, 0x6,0x38,0x4b, 0x6,0x38,0x4d, 0x6,0x38,0x46,\n  0x5,0x2e,0x27, 0x6,0x38,0x48, 0x6,0x38,0x45, 0x6,0x38,0x51,\n  0x4,0x2d,0x50, 0x6,0x40,0x5d, 0x5,0x29,0x57, 0x5,0x2e,0x29,\n  0x5,0x2e,0x2a, 0x6,0x38,0x44, 0xf,0x2f,0x74, 0xf,0x2f,0x75,\n  0xf,0x2f,0x76, 0xf,0x2f,0x78, 0xf,0x2f,0x79, 0xf,0x2f,0x7a,\n  0xf,0x2f,0x7b, 0xf,0x2f,0x7c, 0xf,0x2f,0x7d, 0xf,0x2f,0x7e,\n  0xf,0x30,0x21, 0xf,0x30,0x22, 0xf,0x30,0x23, 0xf,0x30,0x25,\n  0xf,0x30,0x26, 0xf,0x30,0x27, 0xf,0x30,0x29, 0xf,0x30,0x2a,\n  0xf,0x30,0x2b, 0xf,0x30,0x2c, 0xf,0x30,0x2e, 0x6,0x38,0x4c,\n  0x6,0x38,0x47, 0x6,0x38,0x49, 0x4,0x2d,0x53, 0x6,0x38,0x4e,\n  0xf,0x30,0x30, 0xf,0x30,0x28, 0x4,0x2d,0x5a, 0xf,0x30,0x2d,\n  0x5,0x2e,0x2c, 0x5,0x2e,0x28, 0xf,0x2f,0x77, 0x6,0x38,0x52,\n  0x6,0x40,0x68, 0x6,0x40,0x69, 0x6,0x40,0x5f, 0x5,0x32,0x77,\n  0x5,0x33,0x21, 0x5,0x39,0x36, 0x4,0x32,0x45, 0x4,0x32,0x40,\n  0x5,0x32,0x7d, 0x6,0x40,0x67, 0x6,0x4a,0x2e, 0x6,0x40,0x63,\n  0xf,0x35,0x4c, 0xf,0x35,0x4d, 0xf,0x35,0x4f, 0xf,0x35,0x50,\n  0xf,0x35,0x51, 0xf,0x35,0x52, 0xf,0x35,0x53, 0xf,0x35,0x54,\n  0xf,0x35,0x55, 0xf,0x35,0x56, 0xf,0x35,0x58, 0xf,0x35,0x59,\n  0xf,0x35,0x5a, 0xf,0x35,0x5b, 0xf,0x35,0x5c, 0xf,0x35,0x5d,\n  0xf,0x35,0x5e, 0xf,0x35,0x5f, 0xf,0x35,0x60, 0xf,0x35,0x61,\n  0xf,0x35,0x62, 0xf,0x35,0x63, 0xf,0x35,0x65, 0xf,0x35,0x66,\n  0x6,0x40,0x64, 0x6,0x40,0x66, 0x6,0x40,0x65, 0x4,0x32,0x47,\n  0x6,0x40,0x62, 0x6,0x40,0x60, 0x6,0x40,0x61, 0x4,0x32,0x44,\n  0x5,0x33,0x22, 0x5,0x32,0x78, 0x5,0x32,0x7b, 0x5,0x32,0x7a,\n  0x5,0x32,0x7c, 0x6,0x40,0x6a, 0xf,0x35,0x4e, 0x6,0x40,0x5e,\n  0x4,0x38,0x36, 0x6,0x4a,0x34, 0x5,0x39,0x35, 0x6,0x53,0x49,\n  0x4,0x38,0x2e, 0x5,0x39,0x38, 0x6,0x4a,0x22, 0x5,0x39,0x32,\n  0x4,0x38,0x2b, 0x5,0x39,0x30, 0x5,0x39,0x34, 0x4,0x38,0x31,\n  0x6,0x4a,0x2d, 0x6,0x4a,0x2f, 0x5,0x39,0x3a, 0x6,0x4a,0x24,\n  0x6,0x4a,0x21, 0x5,0x39,0x37, 0x6,0x4a,0x33, 0x5,0x39,0x3c,\n  0x5,0x39,0x3b, 0x6,0x4a,0x26, 0x4,0x38,0x30, 0x6,0x4a,0x27,\n  0x6,0x4a,0x2a, 0x6,0x4a,0x31, 0x5,0x39,0x40, 0x6,0x53,0x4a,\n  0x5,0x39,0x3d, 0x6,0x4a,0x38, 0x6,0x4a,0x23, 0x6,0x4a,0x25,\n  0x6,0x4a,0x35, 0x4,0x38,0x33, 0x4,0x38,0x38, 0x6,0x4a,0x36,\n  0x6,0x4a,0x37, 0xf,0x3b,0x64, 0xf,0x3b,0x65, 0xf,0x3b,0x67,\n  0xf,0x3b,0x68, 0xf,0x3b,0x69, 0xf,0x3b,0x6b, 0xf,0x3b,0x6c,\n  0xf,0x3b,0x6d, 0xf,0x3b,0x6f, 0xf,0x3b,0x71, 0xf,0x3b,0x72,\n  0xf,0x3b,0x74, 0xf,0x3b,0x75, 0xf,0x3b,0x76, 0xf,0x3b,0x77,\n  0xf,0x3b,0x78, 0xf,0x3b,0x79, 0xf,0x3b,0x7a, 0xf,0x3b,0x7b,\n  0xf,0x3b,0x7c, 0xf,0x3b,0x7d, 0xf,0x3b,0x7e, 0xf,0x3c,0x22,\n  0xf,0x3c,0x23, 0xf,0x3c,0x24, 0xf,0x3c,0x25, 0xf,0x3c,0x26,\n  0xf,0x3c,0x27, 0xf,0x3c,0x28, 0xf,0x3c,0x2a, 0xf,0x3c,0x2b,\n  0xf,0x3c,0x2c, 0xf,0x3c,0x2d, 0xf,0x3c,0x2e, 0xf,0x3c,0x2f,\n  0x6,0x4a,0x29, 0x6,0x4a,0x2b, 0x6,0x4a,0x2c, 0x6,0x4a,0x32,\n  0x5,0x39,0x42, 0x6,0x4a,0x30, 0x6,0x4a,0x39, 0x6,0x4a,0x28,\n  0x5,0x39,0x3e, 0x5,0x39,0x41, 0x5,0x39,0x2e, 0x5,0x39,0x2f,\n  0x5,0x39,0x31, 0x6,0x53,0x4e, 0x6,0x53,0x58, 0x4,0x3d,0x77,\n  0x6,0x53,0x56, 0x4,0x3d,0x74, 0x6,0x53,0x57, 0x5,0x3f,0x6f,\n  0x5,0x3f,0x6a, 0x5,0x3f,0x6e, 0x5,0x3f,0x6b, 0x4,0x3d,0x6a,\n  0x6,0x53,0x5b, 0x5,0x3f,0x73, 0x6,0x53,0x61, 0x5,0x3f,0x68,\n  0x4,0x3d,0x7a, 0x5,0x3f,0x74, 0x5,0x3f,0x69, 0x6,0x53,0x55,\n  0x5,0x3f,0x70, 0x5,0x3f,0x6d, 0x6,0x53,0x60, 0x4,0x3d,0x73,\n  0x6,0x53,0x59, 0x6,0x53,0x5a, 0x6,0x53,0x5d, 0x6,0x53,0x50,\n  0x4,0x3d,0x70, 0x6,0x53,0x5c, 0x5,0x3f,0x6c, 0x6,0x53,0x63,\n  0x6,0x53,0x4f, 0x6,0x53,0x51, 0x6,0x53,0x4c, 0xf,0x42,0x23,\n  0xf,0x42,0x24, 0xf,0x42,0x25, 0xf,0x42,0x26, 0xf,0x42,0x27,\n  0xf,0x42,0x29, 0xf,0x42,0x2a, 0xf,0x42,0x2b, 0xf,0x42,0x2c,\n  0xf,0x42,0x2d, 0xf,0x42,0x2e, 0xf,0x42,0x30, 0xf,0x42,0x31,\n  0xf,0x42,0x32, 0xf,0x42,0x33, 0xf,0x42,0x34, 0xf,0x42,0x35,\n  0xf,0x42,0x36, 0xf,0x42,0x38, 0xf,0x42,0x39, 0xf,0x42,0x3a,\n  0xf,0x42,0x3b, 0xf,0x42,0x3d, 0xf,0x42,0x3e, 0xf,0x42,0x3f,\n  0xf,0x42,0x40, 0xf,0x42,0x41, 0xf,0x42,0x42, 0xf,0x42,0x43,\n  0xf,0x42,0x44, 0xf,0x42,0x45, 0xf,0x42,0x46, 0xf,0x42,0x48,\n  0xf,0x42,0x4a, 0xf,0x42,0x4c, 0x6,0x53,0x4d, 0x6,0x53,0x52,\n  0x6,0x53,0x54, 0x4,0x3d,0x79, 0x6,0x53,0x62, 0x6,0x53,0x4b,\n  0x6,0x53,0x5f, 0xf,0x42,0x22, 0xf,0x42,0x2f, 0xf,0x42,0x37,\n  0x5,0x39,0x3f, 0x5,0x3f,0x72, 0x6,0x53,0x53, 0xf,0x43,0x74,\n  0x5,0x46,0x4e, 0xf,0x42,0x4b, 0x5,0x46,0x50, 0x4,0x43,0x7b,\n  0x4,0x43,0x72, 0x5,0x46,0x4d, 0x5,0x46,0x4f, 0x6,0x5d,0x69,\n  0x5,0x46,0x55, 0x5,0x46,0x52, 0x7,0x23,0x65, 0x6,0x53,0x64,\n  0x5,0x46,0x47, 0x6,0x5d,0x5f, 0x5,0x46,0x54, 0x5,0x46,0x46,\n  0x5,0x46,0x58, 0x6,0x5d,0x62, 0x5,0x46,0x4a, 0x5,0x46,0x53,\n  0x6,0x5d,0x63, 0x4,0x43,0x76, 0x5,0x46,0x48, 0x5,0x46,0x49,\n  0x6,0x5d,0x65, 0x5,0x46,0x4c, 0x5,0x46,0x51, 0xf,0x48,0x57,\n  0xf,0x48,0x58, 0xf,0x48,0x59, 0xf,0x48,0x5a, 0xf,0x48,0x5b,\n  0xf,0x48,0x5c, 0xf,0x48,0x5d, 0xf,0x48,0x5e, 0xf,0x48,0x5f,\n  0xf,0x48,0x60, 0xf,0x48,0x61, 0xf,0x48,0x62, 0xf,0x48,0x63,\n  0xf,0x48,0x64, 0xf,0x48,0x65, 0xf,0x48,0x66, 0xf,0x48,0x67,\n  0xf,0x48,0x68, 0xf,0x48,0x69, 0xf,0x48,0x6a, 0xf,0x48,0x6b,\n  0xf,0x48,0x6c, 0xf,0x48,0x6d, 0xf,0x48,0x6e, 0xf,0x48,0x6f,\n  0xf,0x48,0x71, 0xf,0x48,0x72, 0xf,0x48,0x73, 0xf,0x48,0x75,\n  0x3,0x47,0x4b, 0x6,0x5d,0x6a, 0x6,0x5d,0x67, 0x6,0x5d,0x6b,\n  0x6,0x5d,0x6c, 0x5,0x46,0x56, 0x5,0x46,0x57, 0xf,0x48,0x74,\n  0x6,0x5d,0x64, 0x6,0x5d,0x66, 0xf,0x48,0x50, 0xf,0x48,0x51,\n  0xf,0x48,0x53, 0xf,0x48,0x54, 0x6,0x5d,0x60, 0x6,0x5d,0x6d,\n  0x6,0x5d,0x61, 0xf,0x48,0x56, 0x7,0x23,0x68, 0x5,0x4d,0x67,\n  0x5,0x4d,0x5e, 0x4,0x4a,0x3b, 0x4,0x4a,0x47, 0x5,0x4d,0x5b,\n  0x4,0x4a,0x40, 0x7,0x23,0x71, 0x7,0x23,0x6c, 0x7,0x23,0x74,\n  0x5,0x4d,0x6b, 0x5,0x4d,0x65, 0x7,0x23,0x70, 0x4,0x4a,0x46,\n  0x5,0x4d,0x5f, 0x4,0x4a,0x3f, 0x5,0x4d,0x64, 0x4,0x4a,0x43,\n  0x4,0x4a,0x3e, 0x4,0x4a,0x35, 0x7,0x23,0x73, 0x5,0x4d,0x5c,\n  0x4,0x4a,0x4a, 0x5,0x4d,0x69, 0x7,0x23,0x6e, 0x5,0x4d,0x63,\n  0x5,0x4d,0x6a, 0x7,0x23,0x69, 0x4,0x4a,0x41, 0x5,0x4d,0x5d,\n  0x7,0x23,0x75, 0x4,0x4a,0x3c, 0x4,0x4a,0x45, 0x4,0x4a,0x49,\n  0x7,0x23,0x66, 0x7,0x23,0x6a, 0xf,0x4f,0x3d, 0xf,0x4f,0x3e,\n  0xf,0x4f,0x3f, 0xf,0x4f,0x43, 0xf,0x4f,0x44, 0xf,0x4f,0x46,\n  0xf,0x4f,0x47, 0xf,0x4f,0x48, 0xf,0x4f,0x49, 0xf,0x4f,0x4a,\n  0xf,0x4f,0x4b, 0xf,0x4f,0x4c, 0xf,0x4f,0x4d, 0xf,0x4f,0x4e,\n  0xf,0x4f,0x4f, 0xf,0x4f,0x50, 0xf,0x4f,0x51, 0xf,0x4f,0x52,\n  0xf,0x4f,0x53, 0xf,0x4f,0x40, 0x7,0x23,0x6b, 0x5,0x4d,0x6c,\n  0x5,0x4d,0x68, 0x5,0x4d,0x66, 0x7,0x23,0x67, 0x7,0x23,0x6d,\n  0x5,0x4d,0x60, 0x5,0x4d,0x5a, 0x5,0x4d,0x62, 0x4,0x50,0x5b,\n  0x5,0x54,0x7d, 0x7,0x2e,0x69, 0x4,0x50,0x65, 0x4,0x50,0x58,\n  0x5,0x5b,0x65, 0x7,0x38,0x4c, 0x7,0x2e,0x60, 0x7,0x2e,0x63,\n  0x5,0x54,0x7b, 0x7,0x2e,0x68, 0x7,0x2e,0x72, 0x5,0x54,0x7a,\n  0x7,0x2e,0x6f, 0x7,0x2e,0x62, 0x4,0x50,0x62, 0x4,0x56,0x4c,\n  0x4,0x50,0x57, 0x7,0x2e,0x5f, 0x4,0x50,0x5f, 0x5,0x54,0x79,\n  0x7,0x2e,0x67, 0x7,0x2e,0x64, 0x5,0x54,0x71, 0x5,0x54,0x77,\n  0x4,0x50,0x5c, 0x7,0x2e,0x6e, 0x7,0x2e,0x74, 0x5,0x54,0x78,\n  0x4,0x50,0x5d, 0x7,0x2e,0x66, 0x7,0x2e,0x6b, 0x4,0x50,0x63,\n  0x5,0x54,0x70, 0x7,0x2e,0x61, 0x5,0x61,0x7b, 0x5,0x54,0x75,\n  0x5,0x54,0x76, 0x5,0x54,0x72, 0x4,0x4a,0x44, 0x7,0x2e,0x73,\n  0x7,0x2e,0x6c, 0x7,0x2e,0x65, 0x7,0x2e,0x5e, 0x5,0x54,0x7c,\n  0x5,0x54,0x6f, 0x5,0x54,0x73, 0xf,0x54,0x6f, 0xf,0x54,0x70,\n  0xf,0x54,0x71, 0xf,0x54,0x72, 0xf,0x54,0x73, 0xf,0x54,0x75,\n  0xf,0x54,0x76, 0xf,0x54,0x77, 0xf,0x54,0x78, 0xf,0x54,0x79,\n  0xf,0x54,0x7a, 0xf,0x54,0x7c, 0xf,0x54,0x7d, 0xf,0x54,0x7e,\n  0xf,0x55,0x21, 0xf,0x55,0x22, 0xf,0x55,0x24, 0xf,0x55,0x25,\n  0xf,0x55,0x26, 0xf,0x55,0x27, 0xf,0x55,0x28, 0xf,0x55,0x2b,\n  0xf,0x55,0x2c, 0xf,0x55,0x2d, 0xf,0x55,0x2e, 0xf,0x55,0x2f,\n  0xf,0x55,0x30, 0xf,0x55,0x32, 0xf,0x55,0x33, 0xf,0x55,0x34,\n  0xf,0x55,0x35, 0xf,0x55,0x36, 0xf,0x55,0x37, 0xf,0x55,0x38,\n  0x7,0x2e,0x70, 0x7,0x2e,0x71, 0x4,0x50,0x61, 0xf,0x55,0x23,\n  0x5,0x54,0x74, 0xf,0x48,0x70, 0xf,0x4f,0x41, 0x7,0x2e,0x6d,\n  0x4,0x56,0x43, 0x7,0x38,0x50, 0x7,0x38,0x4e, 0x4,0x56,0x47,\n  0x7,0x38,0x52, 0x7,0x38,0x56, 0x5,0x5b,0x6a, 0x5,0x5b,0x6b,\n  0x4,0x56,0x4a, 0x4,0x56,0x46, 0x5,0x5b,0x6e, 0x7,0x38,0x53,\n  0x5,0x5b,0x6c, 0x7,0x38,0x51, 0x7,0x38,0x57, 0x5,0x61,0x7c,\n  0x5,0x5b,0x67, 0x4,0x56,0x4d, 0x4,0x56,0x44, 0x7,0x38,0x59,\n  0x4,0x56,0x42, 0x5,0x5b,0x69, 0x7,0x38,0x5b, 0x5,0x5b,0x66,\n  0x7,0x38,0x54, 0xf,0x5a,0x40, 0xf,0x5a,0x41, 0xf,0x5a,0x43,\n  0xf,0x5a,0x44, 0xf,0x5a,0x45, 0xf,0x5a,0x46, 0xf,0x5a,0x47,\n  0xf,0x5a,0x48, 0xf,0x5a,0x49, 0xf,0x5a,0x4a, 0xf,0x5a,0x4b,\n  0xf,0x5a,0x4c, 0xf,0x5a,0x4e, 0xf,0x5a,0x4f, 0xf,0x5a,0x51,\n  0xf,0x5a,0x52, 0xf,0x5a,0x54, 0x7,0x38,0x58, 0x5,0x5b,0x6d,\n  0x7,0x38,0x5a, 0x7,0x38,0x4d, 0x7,0x38,0x4f, 0x7,0x37,0x27,\n  0xf,0x5a,0x53, 0xf,0x5a,0x4d, 0x5,0x5b,0x6f, 0x5,0x5b,0x70,\n  0xf,0x55,0x31, 0xf,0x5a,0x50, 0x4,0x5b,0x47, 0x5,0x61,0x78,\n  0x7,0x40,0x27, 0x7,0x40,0x23, 0x4,0x5b,0x42, 0x7,0x40,0x2b,\n  0x5,0x62,0x24, 0x5,0x61,0x7d, 0x5,0x62,0x26, 0x7,0x40,0x29,\n  0x4,0x5b,0x45, 0x5,0x61,0x7a, 0x5,0x62,0x22, 0x5,0x62,0x27,\n  0x5,0x61,0x7e, 0x7,0x38,0x5c, 0x5,0x62,0x2b, 0x5,0x61,0x79,\n  0x4,0x5b,0x43, 0x4,0x5b,0x4c, 0x4,0x5b,0x46, 0x7,0x40,0x2d,\n  0x7,0x40,0x28, 0x5,0x62,0x23, 0x7,0x47,0x46, 0x5,0x62,0x29,\n  0x7,0x40,0x26, 0x4,0x5b,0x4b, 0x5,0x62,0x28, 0x5,0x62,0x25,\n  0x5,0x61,0x76, 0x7,0x3f,0x7c, 0x7,0x3f,0x7d, 0xf,0x5e,0x7e,\n  0xf,0x5f,0x22, 0xf,0x5f,0x23, 0xf,0x5f,0x24, 0xf,0x5f,0x25,\n  0xf,0x5f,0x26, 0xf,0x5f,0x27, 0xf,0x5f,0x28, 0xf,0x5f,0x2a,\n  0xf,0x5f,0x2b, 0xf,0x5f,0x2c, 0xf,0x5f,0x2e, 0xf,0x5f,0x2f,\n  0xf,0x5f,0x30, 0x7,0x40,0x21, 0x7,0x40,0x25, 0x7,0x40,0x2c,\n  0x7,0x40,0x2a, 0x5,0x62,0x21, 0xf,0x5f,0x21, 0x5,0x62,0x2a,\n  0x5,0x61,0x77, 0x7,0x40,0x22, 0x7,0x40,0x24, 0xf,0x5f,0x2d,\n  0x5,0x68,0x25, 0x7,0x47,0x43, 0x5,0x68,0x28, 0x5,0x68,0x2b,\n  0x5,0x68,0x29, 0x7,0x47,0x42, 0x7,0x47,0x40, 0x5,0x68,0x2d,\n  0x7,0x47,0x41, 0x4,0x5f,0x74, 0x7,0x47,0x48, 0x7,0x47,0x49,\n  0x5,0x68,0x27, 0x5,0x68,0x26, 0x7,0x47,0x45, 0x5,0x68,0x2f,\n  0x7,0x47,0x47, 0x7,0x3f,0x7e, 0xf,0x62,0x52, 0xf,0x62,0x56,\n  0xf,0x62,0x58, 0xf,0x62,0x59, 0xf,0x62,0x5a, 0xf,0x62,0x5b,\n  0xf,0x62,0x5c, 0xf,0x62,0x5d, 0xf,0x62,0x5f, 0xf,0x62,0x60,\n  0xf,0x62,0x61, 0x5,0x68,0x2e, 0x7,0x47,0x44, 0x7,0x47,0x3f,\n  0xf,0x62,0x54, 0x5,0x68,0x2c, 0xf,0x62,0x57, 0xf,0x62,0x4f,\n  0xf,0x62,0x5e, 0xf,0x5e,0x7d, 0x4,0x63,0x53, 0x7,0x4d,0x7c,\n  0x5,0x6c,0x3f, 0x7,0x4d,0x7e, 0x5,0x6c,0x42, 0x5,0x68,0x30,\n  0x5,0x6c,0x3a, 0x5,0x6c,0x39, 0x5,0x6c,0x3d, 0x7,0x4d,0x7d,\n  0x5,0x6c,0x3c, 0x5,0x6c,0x41, 0x5,0x6c,0x3b, 0x5,0x68,0x2a,\n  0x5,0x6c,0x40, 0x5,0x6c,0x3e, 0xf,0x65,0x33, 0xf,0x65,0x34,\n  0xf,0x65,0x35, 0xf,0x65,0x36, 0xf,0x65,0x37, 0xf,0x65,0x39,\n  0xf,0x65,0x3a, 0xf,0x65,0x3b, 0xf,0x65,0x3c, 0xf,0x65,0x3d,\n  0xf,0x65,0x3f, 0x7,0x4e,0x21, 0x4,0x63,0x52, 0x7,0x53,0x49,\n  0x7,0x53,0x48, 0x5,0x70,0x2b, 0x5,0x70,0x2d, 0x4,0x66,0x46,\n  0x5,0x70,0x29, 0x7,0x53,0x4d, 0x5,0x70,0x28, 0x5,0x70,0x2a,\n  0x5,0x70,0x2c, 0x7,0x53,0x4a, 0x4,0x66,0x45, 0x5,0x70,0x2f,\n  0x7,0x53,0x4e, 0x5,0x70,0x32, 0xf,0x67,0x5b, 0xf,0x67,0x5c,\n  0xf,0x67,0x5d, 0xf,0x67,0x5e, 0xf,0x67,0x5f, 0xf,0x67,0x60,\n  0xf,0x67,0x61, 0xf,0x67,0x62, 0xf,0x67,0x63, 0xf,0x67,0x64,\n  0x7,0x53,0x4c, 0x5,0x70,0x31, 0x5,0x70,0x30, 0x7,0x53,0x4b,\n  0x5,0x70,0x2e, 0x7,0x58,0x26, 0x5,0x73,0x4e, 0x5,0x73,0x4f,\n  0x5,0x73,0x4c, 0x5,0x73,0x4a, 0x4,0x68,0x6f, 0x5,0x73,0x4b,\n  0x5,0x73,0x4d, 0x7,0x58,0x25, 0xf,0x69,0x47, 0xf,0x69,0x48,\n  0xf,0x69,0x49, 0xf,0x69,0x4b, 0xf,0x69,0x4e, 0xf,0x69,0x4f,\n  0xf,0x69,0x50, 0xf,0x69,0x51, 0x7,0x58,0x24, 0x7,0x58,0x22,\n  0xf,0x67,0x65, 0x5,0x75,0x71, 0x5,0x75,0x73, 0x5,0x77,0x60,\n  0x5,0x75,0x74, 0x7,0x5b,0x60, 0x5,0x75,0x72, 0x7,0x5b,0x61,\n  0x5,0x75,0x75, 0x7,0x5b,0x5f, 0x5,0x77,0x61, 0x7,0x5b,0x5d,\n  0xf,0x6a,0x57, 0xf,0x6a,0x59, 0x7,0x5b,0x5e, 0x5,0x75,0x76,\n  0x5,0x75,0x70, 0x4,0x6b,0x6c, 0x7,0x5e,0x6e, 0x5,0x77,0x62,\n  0x7,0x60,0x71, 0xf,0x6b,0x4e, 0xf,0x6b,0x4f, 0xf,0x6b,0x50,\n  0xf,0x6b,0x53, 0xf,0x6b,0x54, 0x7,0x5e,0x6f, 0x7,0x5e,0x70,\n  0xf,0x6a,0x58, 0x7,0x60,0x72, 0x5,0x79,0x2d, 0xf,0x6c,0x2c,\n  0x7,0x60,0x73, 0x5,0x79,0x2c, 0x5,0x79,0x2e, 0xf,0x6b,0x52,\n  0x5,0x7a,0x29, 0x7,0x63,0x54, 0x7,0x60,0x74, 0x4,0x6d,0x55,\n  0xf,0x6c,0x2d, 0xf,0x6c,0x4c, 0xf,0x6c,0x63, 0x7,0x63,0x4c,\n  0x7,0x63,0x55, 0x5,0x7b,0x40, 0x7,0x64,0x48, 0x7,0x64,0x49,\n  0x7,0x65,0x5b, 0xf,0x6d,0x2f, 0x7,0x65,0x74, 0x6,0x25,0x24,\n  0x4,0x24,0x4b, 0x6,0x28,0x2f, 0x6,0x2c,0x2e, 0x6,0x28,0x32,\n  0x5,0x24,0x47, 0x6,0x28,0x31, 0x4,0x24,0x4a, 0x5,0x26,0x5c,\n  0x5,0x26,0x5b, 0x5,0x26,0x58, 0x6,0x2c,0x2f, 0x4,0x26,0x6f,\n  0x6,0x2c,0x30, 0x5,0x26,0x5d, 0x4,0x26,0x6e, 0x5,0x26,0x59,\n  0x5,0x26,0x5a, 0x5,0x26,0x57, 0xf,0x27,0x56, 0x5,0x29,0x5f,\n  0x6,0x31,0x7a, 0x6,0x38,0x54, 0x6,0x31,0x7c, 0x5,0x29,0x62,\n  0x4,0x29,0x75, 0x5,0x29,0x61, 0x5,0x29,0x5e, 0x6,0x31,0x79,\n  0x5,0x29,0x5c, 0x5,0x29,0x60, 0x6,0x31,0x7b, 0x5,0x29,0x5d,\n  0xf,0x2c,0x77, 0x6,0x38,0x57, 0x6,0x38,0x58, 0x6,0x38,0x55,\n  0x5,0x2e,0x33, 0x5,0x2e,0x2d, 0x6,0x38,0x56, 0x6,0x40,0x6b,\n  0x5,0x2e,0x32, 0x4,0x2d,0x5f, 0x5,0x2e,0x2f, 0x5,0x2e,0x34,\n  0x5,0x2e,0x31, 0x5,0x2e,0x30, 0xf,0x30,0x31, 0x5,0x33,0x25,\n  0x6,0x40,0x6c, 0x6,0x40,0x6d, 0xf,0x35,0x67, 0xf,0x35,0x68,\n  0xf,0x35,0x69, 0xf,0x35,0x6a, 0xf,0x35,0x6b, 0xf,0x35,0x6c,\n  0xf,0x35,0x6d, 0xf,0x35,0x6e, 0x4,0x38,0x3d, 0x5,0x39,0x47,\n  0x5,0x3f,0x77, 0x4,0x38,0x3a, 0x5,0x39,0x45, 0x6,0x4a,0x3c,\n  0x5,0x33,0x24, 0x5,0x39,0x48, 0x6,0x4a,0x3d, 0x5,0x39,0x44,\n  0x5,0x39,0x49, 0x6,0x4a,0x3e, 0x5,0x39,0x46, 0x6,0x4a,0x3b,\n  0xf,0x3c,0x30, 0xf,0x3c,0x31, 0x6,0x4a,0x3a, 0x6,0x53,0x6e,\n  0x5,0x3f,0x76, 0x5,0x3f,0x75, 0x5,0x3f,0x7a, 0x6,0x53,0x6b,\n  0x5,0x3f,0x79, 0x6,0x53,0x67, 0x6,0x53,0x66, 0x6,0x53,0x68,\n  0x6,0x53,0x69, 0x6,0x53,0x6a, 0x6,0x53,0x6d, 0x5,0x3f,0x78,\n  0xf,0x42,0x4e, 0x6,0x58,0x5a, 0x6,0x53,0x6c, 0x6,0x53,0x65,\n  0xf,0x42,0x4d, 0x5,0x46,0x5c, 0x4,0x44,0x2b, 0x5,0x46,0x5e,\n  0x6,0x5d,0x6f, 0x6,0x5d,0x6e, 0x4,0x44,0x2c, 0x5,0x46,0x5d,\n  0x4,0x44,0x29, 0x6,0x5d,0x75, 0x6,0x5d,0x70, 0x5,0x46,0x5a,\n  0x6,0x5d,0x76, 0x6,0x5d,0x74, 0x5,0x46,0x5b, 0x6,0x5d,0x72,\n  0x6,0x5d,0x71, 0x6,0x5d,0x73, 0x6,0x53,0x6f, 0xf,0x48,0x76,\n  0xf,0x48,0x78, 0x5,0x46,0x59, 0x5,0x4d,0x6e, 0x7,0x23,0x7d,\n  0x5,0x4d,0x70, 0x5,0x4d,0x71, 0x4,0x4a,0x4d, 0x7,0x23,0x79,\n  0x7,0x23,0x77, 0x7,0x23,0x7e, 0x7,0x23,0x76, 0x7,0x23,0x7a,\n  0x7,0x23,0x7b, 0x5,0x4d,0x6f, 0xf,0x4f,0x54, 0x7,0x23,0x7c,\n  0x5,0x54,0x7e, 0x7,0x2e,0x76, 0x4,0x50,0x68, 0x7,0x2e,0x75,\n  0xf,0x55,0x3a, 0xf,0x55,0x3b, 0x7,0x38,0x5e, 0x7,0x38,0x60,\n  0x5,0x5b,0x71, 0x7,0x38,0x5f, 0xf,0x5a,0x55, 0x7,0x38,0x5d,\n  0x5,0x62,0x2c, 0x5,0x68,0x32, 0x5,0x68,0x31, 0xf,0x62,0x62,\n  0x5,0x70,0x36, 0x7,0x4e,0x23, 0x5,0x70,0x35, 0x5,0x70,0x34,\n  0x4,0x68,0x70, 0x5,0x70,0x33, 0x5,0x73,0x50, 0x7,0x58,0x29,\n  0x7,0x58,0x27, 0x7,0x58,0x28, 0x5,0x77,0x63, 0x7,0x60,0x75,\n  0x4,0x6c,0x70, 0x4,0x6d,0x56, 0x5,0x21,0x32, 0x5,0x21,0x70,\n  0x6,0x23,0x2e, 0x6,0x25,0x26, 0x5,0x24,0x4a, 0x6,0x28,0x34,\n  0x6,0x2c,0x31, 0x5,0x24,0x49, 0x5,0x24,0x4b, 0x6,0x28,0x33,\n  0x6,0x2c,0x3c, 0x6,0x2c,0x34, 0x6,0x2c,0x3b, 0x6,0x2c,0x3a,\n  0x6,0x2c,0x36, 0x6,0x2c,0x33, 0x6,0x2c,0x38, 0x6,0x2c,0x32,\n  0x6,0x2c,0x37, 0x5,0x26,0x5e, 0x6,0x2c,0x39, 0x6,0x2c,0x35,\n  0x5,0x26,0x5f, 0xf,0x27,0x57, 0xf,0x27,0x58, 0xf,0x27,0x59,\n  0x4,0x26,0x72, 0x4,0x29,0x76, 0x5,0x29,0x63, 0x5,0x28,0x35,\n  0x6,0x38,0x59, 0x6,0x38,0x5c, 0x5,0x2e,0x35, 0x6,0x38,0x5a,\n  0x6,0x38,0x5e, 0x6,0x38,0x5d, 0x6,0x38,0x5b, 0x6,0x37,0x48,\n  0x5,0x33,0x26, 0x6,0x40,0x70, 0xf,0x35,0x6f, 0x6,0x40,0x6f,\n  0x4,0x38,0x40, 0x4,0x38,0x3e, 0x5,0x39,0x4a, 0x5,0x39,0x4b,\n  0x6,0x4a,0x43, 0x4,0x38,0x41, 0x6,0x4a,0x42, 0x6,0x4a,0x44,\n  0x6,0x4a,0x40, 0x6,0x4a,0x45, 0x6,0x4a,0x46, 0x6,0x4a,0x41,\n  0x5,0x3f,0x7c, 0x6,0x53,0x70, 0x5,0x3f,0x7b, 0xf,0x42,0x4f,\n  0x6,0x5a,0x61, 0x7,0x24,0x22, 0x7,0x24,0x25, 0x7,0x24,0x23,\n  0x7,0x24,0x26, 0x7,0x24,0x21, 0x7,0x24,0x24, 0xf,0x4f,0x55,\n  0x7,0x2e,0x7a, 0x7,0x2e,0x79, 0x7,0x2e,0x77, 0x7,0x2e,0x78,\n  0x7,0x38,0x61, 0x4,0x56,0x50, 0xf,0x5a,0x56, 0xf,0x5a,0x57,\n  0x5,0x62,0x2d, 0x5,0x62,0x2e, 0x7,0x40,0x2e, 0x5,0x73,0x51,\n  0x7,0x5b,0x62, 0x7,0x5b,0x63, 0x5,0x21,0x71, 0x5,0x21,0x49,\n  0x5,0x22,0x76, 0x6,0x28,0x35, 0x4,0x22,0x7d, 0x6,0x25,0x27,\n  0x5,0x24,0x4c, 0x4,0x24,0x4d, 0x6,0x25,0x28, 0x6,0x28,0x36,\n  0x6,0x28,0x3b, 0x6,0x28,0x37, 0x4,0x24,0x4c, 0x6,0x28,0x3c,\n  0x5,0x24,0x4d, 0x6,0x28,0x39, 0x6,0x28,0x38, 0x6,0x28,0x3a,\n  0x6,0x2c,0x3f, 0x5,0x26,0x60, 0x5,0x26,0x66, 0x5,0x26,0x61,\n  0x5,0x26,0x64, 0x4,0x26,0x73, 0x4,0x26,0x74, 0x5,0x26,0x63,\n  0x4,0x26,0x77, 0x6,0x2c,0x3d, 0x6,0x2c,0x3e, 0x6,0x2c,0x40,\n  0x6,0x31,0x7d, 0x5,0x26,0x65, 0x5,0x29,0x68, 0x4,0x29,0x78,\n  0x4,0x29,0x79, 0x6,0x32,0x26, 0x4,0x29,0x77, 0x6,0x31,0x7e,\n  0x5,0x29,0x64, 0x5,0x29,0x65, 0x5,0x29,0x6b, 0x5,0x29,0x66,\n  0x5,0x29,0x67, 0x6,0x32,0x25, 0x4,0x29,0x7a, 0x6,0x32,0x22,\n  0x6,0x32,0x23, 0x5,0x29,0x6a, 0x6,0x32,0x24, 0x6,0x38,0x5f,\n  0xf,0x2b,0x50, 0x6,0x32,0x21, 0x5,0x29,0x6c, 0x5,0x2e,0x36,\n  0x4,0x2d,0x63, 0x6,0x38,0x62, 0x5,0x2e,0x3b, 0x6,0x38,0x65,\n  0x5,0x2e,0x3c, 0x5,0x2e,0x38, 0x5,0x2e,0x39, 0x6,0x38,0x63,\n  0x6,0x38,0x66, 0x5,0x2e,0x3d, 0x5,0x2e,0x37, 0x5,0x2e,0x3a,\n  0x5,0x2e,0x3e, 0x6,0x38,0x60, 0x6,0x38,0x61, 0x5,0x33,0x2b,\n  0x6,0x40,0x74, 0x5,0x33,0x2a, 0x6,0x40,0x73, 0x5,0x33,0x27,\n  0x5,0x33,0x28, 0x5,0x33,0x29, 0x6,0x40,0x71, 0x4,0x32,0x4b,\n  0x5,0x33,0x2c, 0x6,0x4a,0x49, 0x6,0x40,0x75, 0x6,0x40,0x72,\n  0xf,0x35,0x71, 0x6,0x53,0x72, 0x6,0x4a,0x4a, 0x5,0x39,0x53,\n  0x4,0x38,0x48, 0x6,0x4a,0x4b, 0x4,0x38,0x43, 0x5,0x39,0x4e,\n  0x5,0x39,0x4d, 0x5,0x39,0x4f, 0x4,0x38,0x47, 0x5,0x39,0x52,\n  0x5,0x39,0x54, 0x5,0x39,0x50, 0x5,0x39,0x4c, 0x5,0x39,0x51,\n  0x6,0x4a,0x4c, 0x6,0x53,0x71, 0x6,0x4a,0x48, 0xf,0x3c,0x32,\n  0x6,0x53,0x74, 0x6,0x53,0x79, 0x5,0x3f,0x7d, 0x5,0x3f,0x7e,\n  0x6,0x53,0x76, 0x6,0x53,0x78, 0x4,0x3e,0x25, 0x6,0x5d,0x78,\n  0x6,0x53,0x7a, 0x6,0x53,0x75, 0x6,0x53,0x73, 0xf,0x42,0x50,\n  0xf,0x35,0x70, 0x4,0x44,0x34, 0x4,0x44,0x2e, 0x6,0x5d,0x7b,\n  0x6,0x5d,0x7c, 0x4,0x44,0x2f, 0x6,0x5d,0x79, 0x6,0x5d,0x7a,\n  0x6,0x5d,0x2d, 0x7,0x24,0x29, 0x4,0x4a,0x51, 0x5,0x4d,0x72,\n  0x7,0x24,0x27, 0x5,0x4d,0x75, 0x7,0x24,0x28, 0x7,0x24,0x2b,\n  0x5,0x4d,0x74, 0x4,0x50,0x69, 0x7,0x24,0x2c, 0x7,0x24,0x2a,\n  0xf,0x4f,0x56, 0x5,0x4d,0x73, 0x7,0x2e,0x7b, 0x7,0x2e,0x7c,\n  0x5,0x55,0x21, 0x4,0x50,0x6c, 0x5,0x55,0x23, 0x5,0x55,0x22,\n  0x7,0x2e,0x7e, 0xf,0x55,0x3c, 0xf,0x55,0x3d, 0x7,0x38,0x64,\n  0x7,0x38,0x62, 0x5,0x5b,0x73, 0x7,0x38,0x65, 0x7,0x38,0x63,\n  0x5,0x5b,0x74, 0x5,0x62,0x30, 0x5,0x62,0x2f, 0x4,0x5b,0x4d,\n  0x7,0x40,0x30, 0x7,0x2e,0x7d, 0x5,0x5b,0x75, 0x7,0x40,0x2f,\n  0x5,0x68,0x33, 0x5,0x70,0x37, 0x5,0x70,0x38, 0x7,0x53,0x4f,\n  0x7,0x58,0x2a, 0x5,0x75,0x7a, 0x5,0x75,0x79, 0x5,0x26,0x68,\n  0x5,0x26,0x67, 0x6,0x32,0x27, 0x6,0x32,0x28, 0x5,0x2e,0x3f,\n  0x4,0x32,0x4c, 0x4,0x32,0x4d, 0x6,0x40,0x78, 0x6,0x40,0x79,\n  0x6,0x40,0x76, 0x6,0x40,0x77, 0xf,0x35,0x73, 0xf,0x35,0x75,\n  0xf,0x35,0x76, 0xf,0x35,0x77, 0x6,0x40,0x7b, 0x6,0x40,0x7a,\n  0x5,0x33,0x2d, 0x6,0x4a,0x4f, 0x6,0x4a,0x4e, 0xf,0x3c,0x33,\n  0xf,0x35,0x72, 0x6,0x54,0x21, 0x6,0x54,0x22, 0x6,0x53,0x7d,\n  0x6,0x53,0x7e, 0x6,0x54,0x24, 0xf,0x42,0x51, 0xf,0x42,0x52,\n  0x6,0x54,0x23, 0x6,0x53,0x7c, 0x5,0x40,0x21, 0x5,0x40,0x7b,\n  0x5,0x46,0x61, 0x4,0x44,0x36, 0x6,0x5e,0x21, 0x4,0x44,0x37,\n  0x6,0x5d,0x7e, 0x6,0x5d,0x7d, 0xf,0x48,0x7a, 0x5,0x4d,0x76,\n  0x6,0x5e,0x22, 0x7,0x24,0x2d, 0x4,0x4a,0x52, 0x7,0x2f,0x25,\n  0x7,0x2f,0x23, 0x7,0x2f,0x26, 0x7,0x2f,0x21, 0x7,0x2f,0x24,\n  0x5,0x55,0x24, 0x7,0x2f,0x22, 0xf,0x55,0x3e, 0xf,0x55,0x3f,\n  0xf,0x55,0x40, 0x7,0x38,0x66, 0x7,0x38,0x67, 0x4,0x5b,0x4e,\n  0x7,0x40,0x33, 0x5,0x62,0x32, 0x5,0x62,0x31, 0x7,0x40,0x31,\n  0x7,0x40,0x32, 0x4,0x5f,0x78, 0x7,0x47,0x4c, 0x7,0x4e,0x25,\n  0x7,0x47,0x4d, 0x7,0x53,0x50, 0x4,0x6a,0x4d, 0x5,0x75,0x7b,\n  0x7,0x5b,0x64, 0x5,0x73,0x52, 0x7,0x5e,0x73, 0x5,0x77,0x65,\n  0x5,0x77,0x64, 0x7,0x60,0x76, 0x7,0x63,0x56, 0x5,0x21,0x72,\n  0x6,0x28,0x3d, 0x6,0x2c,0x41, 0x6,0x32,0x29, 0x6,0x38,0x67,\n  0xf,0x3c,0x34, 0x5,0x40,0x22, 0x4,0x4a,0x53, 0xf,0x4f,0x57,\n  0xf,0x4f,0x58, 0xf,0x5a,0x59, 0xf,0x55,0x41, 0xf,0x62,0x63,\n  0xf,0x6a,0x5a, 0x5,0x24,0x4f, 0x6,0x28,0x3e, 0x6,0x2c,0x45,\n  0x6,0x2c,0x44, 0x5,0x26,0x69, 0x6,0x38,0x68, 0x6,0x38,0x6a,\n  0x6,0x38,0x69, 0x6,0x40,0x7c, 0x6,0x40,0x7d, 0x5,0x40,0x23,\n  0x4,0x3e,0x26, 0x5,0x46,0x62, 0x5,0x46,0x63, 0x6,0x5e,0x23,\n  0x7,0x24,0x2e, 0x7,0x2f,0x27, 0x7,0x2f,0x28, 0x5,0x55,0x25,\n  0x7,0x47,0x4e, 0x5,0x6c,0x43, 0x5,0x79,0x30, 0x5,0x21,0x4a,\n  0x4,0x22,0x7e, 0xf,0x22,0x5a, 0xf,0x22,0x5b, 0x6,0x28,0x40,\n  0x6,0x28,0x3f, 0x4,0x24,0x4e, 0xf,0x24,0x55, 0xf,0x24,0x56,\n  0xf,0x24,0x57, 0xf,0x24,0x59, 0xf,0x24,0x5a, 0x5,0x26,0x6d,\n  0x5,0x26,0x6a, 0x5,0x26,0x6c, 0x5,0x26,0x6b, 0x6,0x2c,0x47,\n  0x6,0x2c,0x46, 0xf,0x27,0x5a, 0xf,0x27,0x5c, 0xf,0x27,0x5d,\n  0xf,0x27,0x5e, 0xf,0x27,0x5f, 0x5,0x26,0x43, 0x6,0x32,0x2c,\n  0x5,0x29,0x6e, 0x5,0x29,0x6f, 0x5,0x29,0x6d, 0x5,0x29,0x70,\n  0x5,0x29,0x71, 0x6,0x32,0x2d, 0x5,0x29,0x73, 0x6,0x32,0x2f,\n  0x6,0x38,0x6d, 0x6,0x32,0x2e, 0x5,0x29,0x74, 0x6,0x32,0x2b,\n  0x5,0x29,0x72, 0xf,0x2b,0x51, 0xf,0x2b,0x52, 0xf,0x2b,0x53,\n  0xf,0x2b,0x54, 0xf,0x2b,0x55, 0xf,0x2b,0x56, 0xf,0x2b,0x57,\n  0xf,0x2b,0x58, 0xf,0x2b,0x59, 0xf,0x2b,0x5a, 0xf,0x2b,0x5b,\n  0xf,0x2b,0x5c, 0xf,0x2b,0x5e, 0xf,0x2b,0x5d, 0x6,0x38,0x6f,\n  0x5,0x2e,0x41, 0x6,0x38,0x6e, 0x4,0x2d,0x69, 0x5,0x2e,0x43,\n  0x4,0x2d,0x68, 0x6,0x38,0x6c, 0x5,0x2e,0x42, 0xf,0x30,0x32,\n  0xf,0x30,0x33, 0xf,0x30,0x34, 0xf,0x30,0x35, 0xf,0x30,0x36,\n  0xf,0x30,0x37, 0xf,0x30,0x38, 0xf,0x30,0x39, 0x6,0x38,0x6b,\n  0x5,0x2e,0x40, 0x6,0x41,0x26, 0x4,0x32,0x56, 0x6,0x41,0x21,\n  0x5,0x33,0x31, 0x6,0x41,0x22, 0x6,0x41,0x23, 0x5,0x33,0x2e,\n  0x6,0x41,0x25, 0x5,0x33,0x32, 0x5,0x33,0x30, 0x5,0x33,0x2f,\n  0x6,0x40,0x7e, 0x6,0x41,0x24, 0xf,0x35,0x78, 0xf,0x35,0x79,\n  0xf,0x35,0x7a, 0xf,0x35,0x7b, 0xf,0x35,0x7c, 0x5,0x39,0x55,\n  0x4,0x38,0x4d, 0x5,0x39,0x56, 0x4,0x38,0x50, 0x6,0x4a,0x51,\n  0x6,0x4a,0x53, 0x5,0x39,0x59, 0x5,0x39,0x58, 0x5,0x39,0x5a,\n  0x6,0x4a,0x56, 0x6,0x4a,0x50, 0x6,0x4a,0x55, 0x5,0x39,0x57,\n  0x6,0x4a,0x52, 0xf,0x3c,0x3a, 0xf,0x3c,0x35, 0xf,0x3c,0x37,\n  0xf,0x3c,0x38, 0xf,0x3c,0x39, 0xf,0x3c,0x3b, 0xf,0x3c,0x3d,\n  0xf,0x3c,0x3f, 0xf,0x3c,0x40, 0x6,0x4a,0x54, 0xf,0x3c,0x36,\n  0x5,0x39,0x5c, 0x6,0x54,0x2e, 0x6,0x54,0x2c, 0x4,0x3e,0x2b,\n  0x6,0x54,0x27, 0x6,0x54,0x2b, 0x4,0x3e,0x2a, 0x6,0x54,0x28,\n  0x6,0x54,0x25, 0x6,0x54,0x29, 0x6,0x54,0x26, 0x6,0x54,0x2d,\n  0x6,0x54,0x2a, 0x6,0x54,0x2f, 0x5,0x40,0x24, 0xf,0x42,0x53,\n  0xf,0x42,0x55, 0xf,0x42,0x56, 0xf,0x42,0x57, 0x6,0x54,0x30,\n  0x6,0x5e,0x29, 0x5,0x46,0x66, 0x5,0x46,0x65, 0x6,0x5e,0x2a,\n  0x6,0x5e,0x2b, 0x6,0x5e,0x2d, 0x4,0x44,0x3d, 0x6,0x5e,0x24,\n  0x4,0x44,0x3e, 0x5,0x46,0x67, 0x4,0x44,0x3b, 0x6,0x5e,0x2e,\n  0x6,0x5e,0x2f, 0x6,0x5e,0x26, 0x6,0x5e,0x27, 0xf,0x48,0x7c,\n  0xf,0x48,0x7d, 0xf,0x48,0x7e, 0xf,0x49,0x21, 0x6,0x5e,0x28,\n  0x5,0x46,0x69, 0x6,0x5e,0x30, 0x6,0x5e,0x25, 0x6,0x5e,0x2c,\n  0x4,0x4a,0x56, 0x7,0x24,0x33, 0x7,0x24,0x37, 0x7,0x24,0x35,\n  0x4,0x4a,0x55, 0x4,0x4a,0x54, 0x5,0x4d,0x79, 0x7,0x24,0x34,\n  0x5,0x4d,0x77, 0x5,0x4d,0x78, 0x7,0x24,0x31, 0x7,0x24,0x32,\n  0x7,0x24,0x30, 0x7,0x24,0x2f, 0x7,0x24,0x36, 0x7,0x24,0x38,\n  0x7,0x2f,0x29, 0x5,0x55,0x27, 0x7,0x2f,0x2a, 0x4,0x50,0x70,\n  0x5,0x55,0x26, 0x4,0x50,0x73, 0x7,0x2f,0x2c, 0xf,0x55,0x42,\n  0xf,0x55,0x43, 0xf,0x55,0x44, 0xf,0x55,0x45, 0x7,0x2f,0x2b,\n  0x7,0x24,0x39, 0x7,0x38,0x6a, 0x4,0x56,0x55, 0x4,0x56,0x54,\n  0x7,0x38,0x69, 0x5,0x5b,0x76, 0x7,0x38,0x68, 0xf,0x5a,0x5a,\n  0xf,0x5a,0x5b, 0xf,0x5a,0x5c, 0x7,0x38,0x6c, 0x7,0x38,0x6b,\n  0x5,0x62,0x35, 0x5,0x62,0x34, 0x5,0x62,0x36, 0x7,0x40,0x37,\n  0x7,0x47,0x4f, 0x7,0x40,0x35, 0x5,0x62,0x37, 0x7,0x40,0x34,\n  0x7,0x40,0x36, 0xf,0x5f,0x31, 0x5,0x62,0x33, 0xf,0x5f,0x32,\n  0x7,0x47,0x52, 0x5,0x68,0x34, 0x7,0x47,0x50, 0x7,0x47,0x51,\n  0xf,0x65,0x41, 0x7,0x4e,0x26, 0x4,0x66,0x47, 0x5,0x70,0x39,\n  0x7,0x53,0x51, 0xf,0x67,0x67, 0x7,0x58,0x2b, 0x5,0x73,0x53,\n  0xf,0x69,0x52, 0x5,0x75,0x7c, 0x7,0x5b,0x65, 0x7,0x64,0x4a,\n  0x6,0x2c,0x48, 0x6,0x32,0x30, 0x5,0x29,0x75, 0x5,0x29,0x76,\n  0x6,0x33,0x4c, 0x6,0x41,0x27, 0xf,0x35,0x7d, 0x6,0x41,0x28,\n  0x6,0x54,0x31, 0x4,0x44,0x40, 0x7,0x2f,0x2d, 0x7,0x38,0x6d,\n  0x4,0x5b,0x51, 0xf,0x5a,0x5d, 0x6,0x25,0x2a, 0x6,0x25,0x29,\n  0xf,0x24,0x5c, 0x6,0x2c,0x4b, 0x6,0x2c,0x4a, 0x6,0x2c,0x49,\n  0x6,0x32,0x31, 0x6,0x32,0x32, 0xf,0x2b,0x5f, 0x5,0x29,0x77,\n  0x5,0x2e,0x44, 0xf,0x35,0x7e, 0x5,0x39,0x5d, 0xf,0x3c,0x41,\n  0x6,0x54,0x32, 0x7,0x24,0x3b, 0x7,0x24,0x3a, 0x7,0x40,0x38,\n  0x7,0x53,0x52, 0xf,0x21,0x67, 0x6,0x22,0x24, 0x6,0x25,0x2b,\n  0x5,0x21,0x73, 0x6,0x25,0x2c, 0xf,0x22,0x5e, 0xf,0x24,0x69,\n  0x4,0x23,0x23, 0x6,0x25,0x2d, 0x5,0x24,0x50, 0x6,0x25,0x2f,\n  0x6,0x25,0x31, 0x3,0x24,0x24, 0xf,0x22,0x5c, 0xf,0x24,0x5f,\n  0xf,0x24,0x60, 0x6,0x25,0x30, 0x6,0x2c,0x4d, 0x5,0x24,0x52,\n  0x6,0x28,0x42, 0x5,0x24,0x51, 0x5,0x24,0x53, 0x4,0x24,0x50,\n  0x6,0x28,0x46, 0x6,0x28,0x47, 0x6,0x2c,0x4c, 0x6,0x28,0x43,\n  0x6,0x28,0x41, 0x6,0x28,0x45, 0x6,0x28,0x48, 0xf,0x24,0x61,\n  0xf,0x24,0x5e, 0xf,0x24,0x62, 0xf,0x24,0x63, 0xf,0x24,0x64,\n  0xf,0x24,0x65, 0xf,0x24,0x66, 0xf,0x24,0x67, 0xf,0x27,0x63,\n  0xf,0x27,0x64, 0xf,0x27,0x65, 0x4,0x27,0x23, 0x5,0x26,0x6f,\n  0x6,0x32,0x33, 0x5,0x26,0x72, 0x5,0x26,0x73, 0x4,0x27,0x21,\n  0x6,0x2c,0x57, 0x4,0x27,0x25, 0x6,0x2c,0x50, 0x4,0x27,0x24,\n  0x6,0x2c,0x4e, 0x5,0x26,0x6e, 0x5,0x26,0x70, 0x6,0x2c,0x58,\n  0x5,0x26,0x71, 0x6,0x2c,0x5a, 0x6,0x32,0x34, 0x6,0x2c,0x56,\n  0x6,0x2c,0x5c, 0x4,0x26,0x7c, 0x6,0x2c,0x53, 0xf,0x27,0x60,\n  0xf,0x27,0x61, 0xf,0x27,0x62, 0xf,0x27,0x67, 0xf,0x27,0x68,\n  0xf,0x27,0x69, 0xf,0x27,0x6a, 0xf,0x27,0x6b, 0xf,0x27,0x6d,\n  0xf,0x2b,0x64, 0xf,0x2b,0x67, 0xf,0x2b,0x6c, 0x6,0x2c,0x52,\n  0x6,0x2c,0x54, 0x6,0x2c,0x55, 0x6,0x2c,0x59, 0x6,0x2c,0x4f,\n  0x5,0x29,0x78, 0x4,0x29,0x7c, 0x6,0x32,0x36, 0x5,0x2a,0x22,\n  0x6,0x32,0x3b, 0x6,0x32,0x3e, 0x5,0x29,0x79, 0x4,0x2a,0x22,\n  0x4,0x2d,0x71, 0x5,0x2a,0x21, 0x5,0x29,0x7e, 0x6,0x32,0x3a,\n  0x6,0x32,0x40, 0x5,0x29,0x7a, 0x6,0x32,0x41, 0x5,0x29,0x7d,\n  0x6,0x38,0x70, 0x6,0x32,0x3d, 0x6,0x32,0x3c, 0x4,0x2a,0x23,\n  0x4,0x29,0x7d, 0x6,0x32,0x3f, 0xf,0x2b,0x60, 0xf,0x2b,0x61,\n  0xf,0x2b,0x62, 0xf,0x2b,0x63, 0xf,0x2b,0x65, 0xf,0x2b,0x66,\n  0xf,0x2b,0x68, 0xf,0x2b,0x69, 0xf,0x2b,0x6a, 0xf,0x2b,0x6b,\n  0xf,0x2b,0x6d, 0xf,0x2b,0x6e, 0xf,0x30,0x3a, 0xf,0x30,0x3d,\n  0xf,0x30,0x44, 0x6,0x32,0x38, 0x4,0x2a,0x24, 0x6,0x32,0x35,\n  0x6,0x32,0x37, 0x5,0x2a,0x23, 0xf,0x30,0x57, 0x4,0x2d,0x6e,\n  0x5,0x2e,0x49, 0x6,0x39,0x30, 0x6,0x39,0x2e, 0x5,0x2e,0x48,\n  0x5,0x2e,0x47, 0x6,0x38,0x7c, 0x5,0x2e,0x4a, 0x6,0x38,0x71,\n  0x6,0x38,0x7b, 0x4,0x2d,0x6d, 0x4,0x2d,0x6f, 0x6,0x39,0x25,\n  0x6,0x38,0x76, 0x6,0x39,0x26, 0x6,0x39,0x2a, 0x6,0x38,0x77,\n  0x6,0x39,0x29, 0x6,0x38,0x7e, 0x6,0x39,0x28, 0x6,0x41,0x2a,\n  0x6,0x41,0x29, 0x4,0x32,0x66, 0x6,0x39,0x24, 0x6,0x39,0x2c,\n  0x5,0x2e,0x45, 0x6,0x39,0x23, 0x6,0x38,0x73, 0x6,0x39,0x2b,\n  0x6,0x38,0x78, 0x6,0x39,0x2f, 0x6,0x39,0x32, 0x6,0x41,0x46,\n  0xf,0x30,0x3b, 0xf,0x30,0x3e, 0xf,0x30,0x3f, 0xf,0x30,0x40,\n  0xf,0x30,0x41, 0xf,0x30,0x42, 0xf,0x30,0x43, 0xf,0x30,0x45,\n  0xf,0x30,0x46, 0xf,0x30,0x47, 0xf,0x30,0x48, 0xf,0x30,0x4a,\n  0xf,0x30,0x4b, 0xf,0x30,0x4c, 0xf,0x30,0x4d, 0xf,0x30,0x4e,\n  0xf,0x30,0x4f, 0xf,0x30,0x50, 0xf,0x30,0x51, 0xf,0x30,0x52,\n  0xf,0x30,0x53, 0xf,0x30,0x54, 0xf,0x30,0x55, 0xf,0x30,0x56,\n  0xf,0x30,0x58, 0xf,0x30,0x59, 0xf,0x30,0x5a, 0x6,0x38,0x79,\n  0x6,0x39,0x22, 0x6,0x39,0x31, 0x4,0x2d,0x72, 0x6,0x39,0x27,\n  0x6,0x38,0x7d, 0x6,0x38,0x75, 0x5,0x2e,0x46, 0xf,0x36,0x2d,\n  0x4,0x32,0x5d, 0x5,0x33,0x40, 0x4,0x32,0x5b, 0x4,0x32,0x6b,\n  0x6,0x41,0x34, 0x6,0x41,0x38, 0x6,0x41,0x3c, 0x4,0x32,0x6a,\n  0x6,0x41,0x43, 0x4,0x32,0x61, 0x6,0x41,0x36, 0x4,0x32,0x65,\n  0x6,0x41,0x35, 0x6,0x41,0x45, 0x4,0x32,0x69, 0x5,0x33,0x33,\n  0x6,0x41,0x31, 0x4,0x32,0x60, 0x4,0x32,0x67, 0x6,0x4a,0x64,\n  0x5,0x33,0x3f, 0x6,0x41,0x42, 0x5,0x33,0x3e, 0x6,0x41,0x3f,\n  0x4,0x32,0x59, 0x4,0x32,0x5f, 0x6,0x41,0x2c, 0x4,0x25,0x2f,\n  0x6,0x41,0x3b, 0x6,0x41,0x30, 0x6,0x4a,0x66, 0x5,0x33,0x38,\n  0x5,0x33,0x41, 0x6,0x4a,0x58, 0x6,0x4a,0x59, 0x6,0x41,0x3e,\n  0x6,0x41,0x44, 0x5,0x33,0x36, 0x4,0x32,0x62, 0x6,0x41,0x40,\n  0x5,0x33,0x3b, 0x6,0x41,0x2f, 0x6,0x41,0x32, 0x5,0x33,0x3a,\n  0x5,0x33,0x35, 0x4,0x32,0x6c, 0x4,0x32,0x6e, 0x5,0x33,0x37,\n  0x6,0x41,0x3d, 0xf,0x36,0x21, 0xf,0x36,0x22, 0xf,0x36,0x23,\n  0xf,0x36,0x25, 0xf,0x36,0x26, 0xf,0x36,0x27, 0xf,0x36,0x28,\n  0xf,0x36,0x2a, 0xf,0x36,0x2c, 0xf,0x36,0x2e, 0xf,0x36,0x2f,\n  0xf,0x36,0x30, 0xf,0x36,0x31, 0xf,0x36,0x32, 0xf,0x36,0x36,\n  0xf,0x36,0x37, 0xf,0x36,0x38, 0xf,0x36,0x39, 0xf,0x36,0x3a,\n  0xf,0x36,0x3b, 0xf,0x36,0x3c, 0xf,0x36,0x3d, 0xf,0x3c,0x42,\n  0xf,0x3c,0x4b, 0xf,0x3c,0x4d, 0xf,0x3c,0x57, 0xf,0x42,0x5f,\n  0x6,0x4a,0x57, 0x6,0x41,0x33, 0x6,0x41,0x37, 0x5,0x33,0x39,\n  0x6,0x41,0x3a, 0x6,0x41,0x39, 0x6,0x41,0x47, 0x6,0x41,0x2d,\n  0x6,0x41,0x2e, 0x5,0x33,0x34, 0x5,0x33,0x3c, 0x6,0x38,0x7a,\n  0x6,0x4a,0x62, 0x6,0x4a,0x70, 0x4,0x38,0x54, 0x5,0x39,0x63,\n  0x4,0x38,0x55, 0x6,0x4a,0x5d, 0x6,0x4a,0x5f, 0x5,0x39,0x67,\n  0x5,0x39,0x6a, 0x5,0x39,0x62, 0x6,0x54,0x48, 0x5,0x39,0x6c,\n  0x6,0x4a,0x5a, 0x4,0x38,0x53, 0x5,0x33,0x42, 0x4,0x38,0x58,\n  0x6,0x4a,0x6c, 0x6,0x4a,0x5c, 0x5,0x39,0x68, 0x6,0x4a,0x71,\n  0x6,0x54,0x35, 0x6,0x4a,0x67, 0x6,0x4a,0x68, 0x6,0x4a,0x6e,\n  0x5,0x39,0x60, 0x6,0x54,0x34, 0x6,0x4a,0x6f, 0x4,0x3e,0x2c,\n  0x5,0x39,0x5f, 0x5,0x39,0x66, 0x5,0x39,0x65, 0x5,0x39,0x64,\n  0x6,0x4a,0x6a, 0x5,0x39,0x61, 0x6,0x54,0x33, 0x6,0x4a,0x72,\n  0x5,0x39,0x6d, 0x6,0x4a,0x61, 0xf,0x3c,0x44, 0xf,0x3c,0x45,\n  0xf,0x3c,0x46, 0xf,0x3c,0x48, 0xf,0x3c,0x49, 0xf,0x3c,0x4a,\n  0xf,0x3c,0x4e, 0xf,0x3c,0x4f, 0xf,0x3c,0x50, 0xf,0x3c,0x51,\n  0xf,0x3c,0x52, 0xf,0x3c,0x53, 0xf,0x3c,0x54, 0xf,0x3c,0x55,\n  0xf,0x3c,0x56, 0xf,0x3c,0x58, 0xf,0x3c,0x59, 0xf,0x3c,0x5b,\n  0xf,0x3c,0x5c, 0x6,0x4a,0x69, 0x5,0x39,0x69, 0x6,0x4a,0x6b,\n  0x4,0x38,0x5d, 0x6,0x4a,0x5b, 0x6,0x4a,0x60, 0x6,0x4a,0x5e,\n  0x5,0x39,0x6b, 0xf,0x42,0x73, 0x6,0x54,0x41, 0x5,0x40,0x25,\n  0x4,0x3e,0x41, 0x6,0x54,0x38, 0x4,0x3e,0x34, 0x6,0x54,0x3b,\n  0x6,0x54,0x43, 0x4,0x3e,0x3b, 0x4,0x3e,0x43, 0x4,0x3e,0x3e,\n  0x4,0x3e,0x2e, 0x6,0x54,0x4a, 0x5,0x40,0x29, 0x5,0x40,0x26,\n  0x4,0x3e,0x40, 0x6,0x5e,0x31, 0x6,0x54,0x42, 0x4,0x3e,0x3a,\n  0x5,0x40,0x2f, 0x5,0x40,0x2d, 0x4,0x3e,0x31, 0x6,0x5e,0x32,\n  0x4,0x3e,0x42, 0x5,0x40,0x2c, 0x5,0x40,0x2e, 0x6,0x54,0x3e,\n  0x6,0x54,0x4c, 0x7,0x24,0x3c, 0x6,0x54,0x47, 0x4,0x44,0x4b,\n  0x6,0x54,0x3f, 0x6,0x54,0x46, 0x6,0x54,0x37, 0x6,0x54,0x36,\n  0x5,0x40,0x2b, 0x5,0x40,0x28, 0x4,0x3e,0x3d, 0x6,0x54,0x3c,\n  0x6,0x54,0x3d, 0x6,0x54,0x40, 0x6,0x54,0x45, 0xf,0x42,0x58,\n  0xf,0x42,0x59, 0xf,0x42,0x5a, 0xf,0x42,0x5b, 0xf,0x42,0x5c,\n  0xf,0x42,0x5d, 0xf,0x42,0x5e, 0xf,0x42,0x60, 0xf,0x42,0x61,\n  0xf,0x42,0x62, 0xf,0x42,0x65, 0xf,0x42,0x66, 0xf,0x42,0x67,\n  0xf,0x42,0x68, 0xf,0x42,0x69, 0xf,0x42,0x6a, 0xf,0x42,0x6c,\n  0xf,0x42,0x6d, 0xf,0x42,0x6e, 0xf,0x42,0x6f, 0xf,0x42,0x70,\n  0xf,0x42,0x71, 0xf,0x42,0x72, 0xf,0x42,0x75, 0xf,0x49,0x22,\n  0xf,0x49,0x3e, 0x5,0x40,0x2a, 0x6,0x54,0x44, 0x4,0x3e,0x35,\n  0x6,0x54,0x4d, 0x6,0x54,0x3a, 0x6,0x54,0x4b, 0xf,0x49,0x2f,\n  0xf,0x42,0x6b, 0xf,0x4f,0x6c, 0x6,0x54,0x39, 0x7,0x24,0x3d,\n  0x4,0x44,0x54, 0x4,0x44,0x47, 0x4,0x44,0x48, 0x4,0x44,0x4c,\n  0x5,0x46,0x6b, 0x4,0x44,0x4e, 0x5,0x46,0x6a, 0x5,0x46,0x74,\n  0x5,0x46,0x76, 0x4,0x44,0x45, 0x4,0x44,0x53, 0x6,0x5e,0x44,\n  0x5,0x46,0x6f, 0x6,0x5e,0x41, 0x6,0x5e,0x3a, 0x4,0x44,0x51,\n  0x4,0x44,0x50, 0x5,0x46,0x75, 0x5,0x46,0x72, 0x5,0x46,0x6d,\n  0x7,0x24,0x40, 0x7,0x24,0x3f, 0x5,0x46,0x77, 0x6,0x5e,0x45,\n  0x4,0x44,0x4f, 0x6,0x5e,0x39, 0x6,0x5e,0x42, 0x5,0x46,0x70,\n  0x5,0x46,0x71, 0x4,0x44,0x41, 0x6,0x5e,0x3d, 0x5,0x4d,0x7a,\n  0x7,0x24,0x3e, 0x6,0x5e,0x34, 0x5,0x46,0x6e, 0x6,0x5e,0x3f,\n  0x5,0x46,0x73, 0xf,0x49,0x23, 0xf,0x49,0x24, 0xf,0x49,0x25,\n  0xf,0x49,0x26, 0xf,0x49,0x27, 0xf,0x49,0x28, 0xf,0x49,0x29,\n  0xf,0x49,0x2b, 0xf,0x49,0x2c, 0xf,0x49,0x2d, 0xf,0x49,0x2e,\n  0xf,0x49,0x30, 0xf,0x49,0x31, 0xf,0x49,0x34, 0xf,0x49,0x36,\n  0xf,0x49,0x37, 0xf,0x49,0x38, 0xf,0x49,0x39, 0xf,0x49,0x3a,\n  0xf,0x49,0x3c, 0xf,0x49,0x3d, 0xf,0x49,0x41, 0xf,0x49,0x42,\n  0xf,0x49,0x43, 0xf,0x4f,0x6d, 0x7,0x22,0x68, 0x4,0x44,0x42,\n  0x6,0x5e,0x3c, 0x6,0x5e,0x43, 0x6,0x5e,0x35, 0x5,0x46,0x6c,\n  0x6,0x5e,0x33, 0x6,0x5e,0x37, 0x6,0x5e,0x38, 0xf,0x49,0x3b,\n  0x6,0x5e,0x36, 0xf,0x49,0x2a, 0x7,0x24,0x62, 0x7,0x24,0x52,\n  0x7,0x24,0x4d, 0x4,0x4a,0x60, 0x7,0x24,0x5a, 0x7,0x24,0x54,\n  0x7,0x24,0x4c, 0x4,0x4a,0x65, 0x4,0x4a,0x67, 0x5,0x4e,0x25,\n  0x7,0x24,0x63, 0x7,0x24,0x4e, 0x7,0x24,0x50, 0x7,0x24,0x56,\n  0x4,0x4a,0x5c, 0x7,0x24,0x57, 0x7,0x24,0x49, 0x5,0x4e,0x21,\n  0x7,0x24,0x65, 0x7,0x24,0x47, 0x7,0x24,0x44, 0x4,0x4a,0x66,\n  0x5,0x4d,0x7b, 0x5,0x4e,0x24, 0x7,0x24,0x64, 0x4,0x4a,0x5b,\n  0x7,0x24,0x5b, 0x4,0x4a,0x5a, 0x7,0x24,0x59, 0x5,0x4d,0x7e,\n  0x7,0x24,0x43, 0x7,0x24,0x67, 0x5,0x4e,0x23, 0x5,0x4d,0x7d,\n  0x7,0x24,0x53, 0x7,0x24,0x42, 0x7,0x3a,0x69, 0x7,0x24,0x45,\n  0x7,0x24,0x68, 0x5,0x4e,0x22, 0x7,0x24,0x41, 0x7,0x24,0x5e,\n  0x7,0x24,0x66, 0x5,0x4e,0x26, 0x5,0x4e,0x28, 0x5,0x4d,0x7c,\n  0x4,0x4a,0x5e, 0x7,0x24,0x5f, 0x7,0x24,0x4b, 0x7,0x24,0x51,\n  0x5,0x4e,0x27, 0x7,0x24,0x5c, 0xf,0x4f,0x59, 0xf,0x4f,0x5a,\n  0xf,0x4f,0x5b, 0xf,0x4f,0x5c, 0xf,0x4f,0x5d, 0xf,0x4f,0x5e,\n  0xf,0x4f,0x5f, 0xf,0x4f,0x62, 0xf,0x4f,0x63, 0xf,0x4f,0x64,\n  0xf,0x4f,0x65, 0xf,0x4f,0x66, 0xf,0x4f,0x67, 0xf,0x4f,0x68,\n  0xf,0x4f,0x6a, 0xf,0x4f,0x6b, 0xf,0x4f,0x6f, 0xf,0x4f,0x70,\n  0xf,0x4f,0x71, 0xf,0x4f,0x72, 0xf,0x4f,0x73, 0xf,0x4f,0x74,\n  0xf,0x4f,0x75, 0xf,0x4f,0x76, 0xf,0x4f,0x77, 0xf,0x4f,0x78,\n  0xf,0x4f,0x7b, 0xf,0x4f,0x7c, 0xf,0x55,0x51, 0x7,0x24,0x55,\n  0x7,0x24,0x60, 0x7,0x2f,0x30, 0x4,0x4a,0x63, 0x7,0x24,0x46,\n  0x7,0x24,0x5d, 0x7,0x24,0x48, 0x7,0x24,0x4a, 0xf,0x55,0x4a,\n  0xf,0x4f,0x7e, 0xf,0x49,0x40, 0x4,0x50,0x7c, 0x5,0x55,0x35,\n  0x5,0x55,0x34, 0x5,0x55,0x28, 0x5,0x55,0x29, 0x5,0x55,0x2b,\n  0x7,0x2f,0x33, 0x5,0x55,0x30, 0x7,0x2f,0x47, 0x7,0x2f,0x40,\n  0x7,0x2f,0x3a, 0x4,0x50,0x79, 0x7,0x2f,0x39, 0x4,0x50,0x7e,\n  0x5,0x55,0x33, 0x7,0x2f,0x3d, 0x7,0x2f,0x31, 0x7,0x2f,0x37,\n  0x7,0x2f,0x46, 0x7,0x2f,0x3b, 0x7,0x2f,0x38, 0x7,0x2f,0x43,\n  0x7,0x2f,0x36, 0x7,0x2f,0x32, 0x5,0x55,0x31, 0x5,0x55,0x2a,\n  0x5,0x5b,0x77, 0x7,0x2f,0x3c, 0x7,0x2f,0x49, 0x5,0x55,0x2c,\n  0x5,0x5b,0x79, 0x5,0x55,0x32, 0x7,0x2f,0x2f, 0x7,0x2f,0x34,\n  0x7,0x2f,0x3e, 0x7,0x2f,0x41, 0xf,0x55,0x46, 0xf,0x55,0x48,\n  0xf,0x55,0x49, 0xf,0x55,0x4b, 0xf,0x55,0x4c, 0xf,0x55,0x4f,\n  0xf,0x55,0x50, 0xf,0x55,0x52, 0xf,0x55,0x53, 0xf,0x55,0x54,\n  0xf,0x55,0x55, 0xf,0x55,0x57, 0xf,0x5a,0x6d, 0x5,0x55,0x2f,\n  0x7,0x2f,0x3f, 0x7,0x2f,0x45, 0x7,0x2f,0x48, 0x7,0x2f,0x4a,\n  0x7,0x2f,0x2e, 0x7,0x2f,0x44, 0x4,0x51,0x21, 0xf,0x4f,0x61,\n  0xf,0x5a,0x66, 0xf,0x5a,0x5f, 0x5,0x54,0x3a, 0x5,0x5b,0x7c,\n  0x4,0x56,0x5a, 0x4,0x56,0x5f, 0x5,0x5b,0x7a, 0x7,0x38,0x7a,\n  0x7,0x38,0x6e, 0x4,0x5b,0x52, 0x5,0x5b,0x7b, 0x5,0x5b,0x78,\n  0x7,0x38,0x70, 0x7,0x38,0x76, 0x7,0x38,0x6f, 0x7,0x38,0x79,\n  0x7,0x38,0x74, 0x7,0x38,0x73, 0x5,0x62,0x38, 0x7,0x38,0x75,\n  0x7,0x38,0x7b, 0x5,0x5b,0x7d, 0x7,0x38,0x77, 0x5,0x55,0x37,\n  0x3,0x55,0x3a, 0x7,0x38,0x78, 0xf,0x5a,0x60, 0xf,0x5a,0x61,\n  0xf,0x5a,0x62, 0xf,0x5a,0x63, 0xf,0x5a,0x64, 0xf,0x5a,0x65,\n  0xf,0x5a,0x67, 0xf,0x5a,0x69, 0xf,0x5a,0x6b, 0xf,0x5a,0x70,\n  0x7,0x38,0x72, 0x5,0x5b,0x7e, 0x7,0x38,0x7c, 0x7,0x38,0x71,\n  0xf,0x55,0x4e, 0xf,0x5a,0x6c, 0xf,0x5a,0x6f, 0xf,0x55,0x47,\n  0xf,0x55,0x4d, 0xf,0x5a,0x5e, 0x7,0x2f,0x35, 0x5,0x62,0x3f,\n  0x5,0x62,0x46, 0x5,0x62,0x45, 0x4,0x5b,0x5d, 0x5,0x62,0x3d,\n  0x5,0x62,0x39, 0x5,0x62,0x42, 0x7,0x40,0x40, 0x7,0x40,0x46,\n  0x4,0x5b,0x59, 0x5,0x62,0x4b, 0x5,0x62,0x44, 0x7,0x40,0x3c,\n  0x5,0x62,0x41, 0x5,0x62,0x4a, 0x4,0x5b,0x58, 0x5,0x62,0x43,\n  0x7,0x40,0x47, 0x5,0x62,0x3b, 0x7,0x40,0x41, 0x5,0x62,0x40,\n  0x7,0x40,0x48, 0x7,0x40,0x3a, 0x4,0x5b,0x5f, 0x4,0x5b,0x55,\n  0x7,0x40,0x45, 0x7,0x40,0x44, 0x7,0x40,0x3e, 0x5,0x62,0x3a,\n  0x4,0x5b,0x53, 0x5,0x62,0x3c, 0x5,0x62,0x3e, 0x5,0x62,0x49,\n  0x5,0x62,0x4c, 0x5,0x62,0x47, 0x7,0x40,0x3f, 0x4,0x5b,0x5c,\n  0x7,0x40,0x42, 0x7,0x47,0x5f, 0x5,0x62,0x4d, 0xf,0x5f,0x33,\n  0xf,0x5f,0x35, 0xf,0x5f,0x36, 0xf,0x5f,0x37, 0xf,0x5f,0x39,\n  0xf,0x5f,0x3a, 0xf,0x5f,0x3b, 0xf,0x5f,0x3c, 0xf,0x5f,0x3d,\n  0xf,0x5f,0x3e, 0xf,0x5f,0x3f, 0xf,0x5f,0x40, 0xf,0x5f,0x41,\n  0xf,0x5f,0x42, 0xf,0x5f,0x43, 0xf,0x62,0x64, 0xf,0x62,0x65,\n  0xf,0x62,0x6c, 0x7,0x47,0x5e, 0x7,0x40,0x3d, 0x7,0x40,0x39,\n  0x7,0x40,0x43, 0x7,0x40,0x3b, 0xf,0x5f,0x34, 0xf,0x5a,0x6a,\n  0xf,0x5a,0x6e, 0x5,0x62,0x48, 0x7,0x47,0x65, 0x7,0x47,0x5c,\n  0x7,0x47,0x62, 0x4,0x5f,0x7c, 0x4,0x5f,0x7a, 0x7,0x47,0x53,\n  0x5,0x68,0x36, 0x7,0x47,0x56, 0x7,0x47,0x54, 0x7,0x47,0x5b,\n  0x7,0x47,0x5a, 0x7,0x47,0x55, 0x5,0x68,0x35, 0x7,0x47,0x59,\n  0x7,0x47,0x5d, 0x5,0x6c,0x45, 0x7,0x47,0x61, 0xf,0x62,0x66,\n  0xf,0x62,0x67, 0xf,0x62,0x68, 0xf,0x62,0x69, 0xf,0x62,0x6a,\n  0xf,0x62,0x6d, 0xf,0x62,0x6e, 0xf,0x62,0x6f, 0xf,0x62,0x70,\n  0xf,0x62,0x71, 0x7,0x47,0x57, 0x7,0x47,0x60, 0x7,0x47,0x66,\n  0x7,0x47,0x64, 0x7,0x47,0x63, 0x7,0x47,0x58, 0x5,0x6c,0x47,\n  0x5,0x6c,0x4a, 0x5,0x6c,0x4b, 0x7,0x4e,0x2b, 0x4,0x63,0x59,\n  0x4,0x63,0x5d, 0x7,0x4e,0x2a, 0x7,0x4e,0x29, 0x5,0x6c,0x48,\n  0x4,0x63,0x5c, 0x7,0x4e,0x2e, 0x4,0x63,0x57, 0x4,0x63,0x58,\n  0x4,0x63,0x56, 0x7,0x4e,0x2d, 0x5,0x70,0x3b, 0x5,0x6c,0x49,\n  0x5,0x6c,0x4c, 0x7,0x4e,0x2f, 0xf,0x65,0x42, 0xf,0x65,0x43,\n  0xf,0x65,0x44, 0x7,0x4e,0x2c, 0x4,0x66,0x48, 0x5,0x70,0x40,\n  0x7,0x53,0x56, 0x5,0x70,0x3f, 0x5,0x70,0x3d, 0x4,0x66,0x4b,\n  0x7,0x53,0x54, 0x5,0x70,0x3c, 0x7,0x53,0x59, 0x7,0x53,0x53,\n  0x4,0x66,0x4d, 0x7,0x53,0x5f, 0x5,0x70,0x41, 0x7,0x53,0x55,\n  0x7,0x53,0x5a, 0xf,0x67,0x68, 0xf,0x67,0x69, 0xf,0x67,0x6a,\n  0xf,0x67,0x6b, 0xf,0x67,0x6d, 0xf,0x67,0x6e, 0xf,0x67,0x6f,\n  0x7,0x53,0x5b, 0x7,0x53,0x5c, 0x7,0x53,0x5d, 0x7,0x53,0x5e,\n  0x5,0x70,0x3a, 0xf,0x67,0x70, 0xf,0x69,0x55, 0x7,0x58,0x2e,\n  0x7,0x53,0x57, 0x7,0x58,0x2f, 0x5,0x73,0x54, 0x5,0x70,0x42,\n  0x7,0x58,0x2d, 0x5,0x73,0x55, 0x7,0x58,0x31, 0x4,0x68,0x72,\n  0x7,0x58,0x32, 0xf,0x69,0x53, 0xf,0x69,0x54, 0x7,0x58,0x33,\n  0x7,0x58,0x30, 0x7,0x58,0x2c, 0x5,0x76,0x21, 0x5,0x76,0x22,\n  0x7,0x5b,0x69, 0x7,0x5b,0x68, 0x5,0x75,0x7e, 0x7,0x5b,0x67,\n  0x5,0x75,0x7d, 0xf,0x6a,0x5b, 0xf,0x6a,0x5c, 0xf,0x6a,0x5d,\n  0x7,0x5b,0x6a, 0x7,0x5b,0x66, 0x7,0x5e,0x76, 0x5,0x77,0x67,\n  0x7,0x5e,0x77, 0x4,0x6c,0x71, 0x7,0x5e,0x74, 0x5,0x77,0x66,\n  0x7,0x5e,0x75, 0x4,0x6c,0x72, 0x7,0x60,0x79, 0x7,0x60,0x78,\n  0x7,0x60,0x77, 0xf,0x6c,0x2f, 0x7,0x62,0x39, 0x4,0x6d,0x58,\n  0x5,0x7a,0x2b, 0x5,0x7a,0x2a, 0x4,0x6d,0x59, 0x4,0x6d,0x74,\n  0x5,0x7a,0x69, 0x5,0x7a,0x6a, 0x7,0x63,0x57, 0x7,0x64,0x4b,\n  0x5,0x7b,0x41, 0xf,0x6d,0x26, 0x7,0x65,0x5c, 0x5,0x7c,0x3c,\n  0x6,0x23,0x2f, 0x6,0x25,0x33, 0x4,0x23,0x24, 0x4,0x23,0x25,\n  0x6,0x25,0x32, 0xf,0x22,0x5f, 0xf,0x22,0x60, 0xf,0x22,0x61,\n  0x6,0x25,0x34, 0x4,0x24,0x53, 0x4,0x24,0x54, 0x5,0x24,0x54,\n  0x6,0x28,0x4c, 0x5,0x24,0x55, 0x5,0x24,0x57, 0xf,0x24,0x6b,\n  0xf,0x24,0x6c, 0xf,0x24,0x6d, 0xf,0x24,0x70, 0xf,0x24,0x72,\n  0x6,0x28,0x4b, 0x5,0x26,0x74, 0x4,0x27,0x28, 0x5,0x26,0x75,\n  0xf,0x27,0x6f, 0xf,0x27,0x70, 0xf,0x27,0x71, 0xf,0x27,0x73,\n  0xf,0x27,0x74, 0xf,0x27,0x75, 0xf,0x27,0x76, 0xf,0x27,0x77,\n  0x6,0x2c,0x5f, 0xf,0x27,0x72, 0x6,0x2c,0x5e, 0x4,0x27,0x2a,\n  0x5,0x24,0x56, 0x5,0x2a,0x25, 0x6,0x32,0x4c, 0x5,0x2a,0x26,\n  0x6,0x32,0x44, 0x5,0x2a,0x27, 0x6,0x32,0x4b, 0x6,0x32,0x46,\n  0xf,0x2b,0x6f, 0xf,0x2b,0x70, 0xf,0x2b,0x71, 0xf,0x2b,0x72,\n  0xf,0x2b,0x73, 0xf,0x2b,0x74, 0xf,0x2b,0x75, 0xf,0x2b,0x76,\n  0xf,0x2b,0x77, 0xf,0x2b,0x78, 0xf,0x2b,0x79, 0xf,0x2b,0x7b,\n  0xf,0x2b,0x7c, 0xf,0x2b,0x7d, 0xf,0x2b,0x7e, 0xf,0x2c,0x21,\n  0xf,0x2c,0x23, 0x4,0x2a,0x29, 0x6,0x32,0x45, 0x6,0x32,0x43,\n  0x6,0x32,0x47, 0x6,0x39,0x3a, 0x5,0x2a,0x28, 0x6,0x32,0x4a,\n  0xf,0x2c,0x22, 0x6,0x32,0x49, 0x5,0x2e,0x4f, 0x5,0x2e,0x4e,\n  0x6,0x39,0x36, 0x6,0x39,0x39, 0xf,0x30,0x6a, 0x4,0x32,0x6f,\n  0x6,0x39,0x37, 0x4,0x2d,0x74, 0x6,0x39,0x34, 0x5,0x2e,0x4b,\n  0xf,0x30,0x5d, 0xf,0x30,0x5e, 0xf,0x30,0x5f, 0xf,0x30,0x60,\n  0xf,0x30,0x61, 0xf,0x30,0x62, 0xf,0x30,0x63, 0xf,0x30,0x64,\n  0xf,0x30,0x65, 0xf,0x30,0x66, 0xf,0x30,0x68, 0xf,0x30,0x69,\n  0xf,0x30,0x6b, 0xf,0x30,0x6c, 0xf,0x30,0x6e, 0xf,0x30,0x6f,\n  0xf,0x30,0x70, 0xf,0x30,0x71, 0xf,0x30,0x72, 0x5,0x2e,0x4c,\n  0x6,0x39,0x35, 0x6,0x39,0x3b, 0x6,0x39,0x3c, 0xf,0x30,0x67,\n  0xf,0x30,0x6d, 0x6,0x39,0x38, 0x5,0x2e,0x4d, 0x6,0x41,0x4b,\n  0x4,0x32,0x74, 0x5,0x33,0x44, 0x6,0x41,0x4f, 0x4,0x32,0x73,\n  0x4,0x32,0x75, 0x6,0x41,0x4e, 0x6,0x41,0x54, 0x6,0x41,0x51,\n  0x6,0x41,0x4d, 0x6,0x41,0x4c, 0x6,0x4a,0x73, 0x6,0x41,0x52,\n  0x6,0x41,0x50, 0x6,0x41,0x53, 0xf,0x36,0x24, 0xf,0x36,0x3e,\n  0xf,0x36,0x3f, 0xf,0x36,0x40, 0xf,0x36,0x41, 0xf,0x36,0x43,\n  0xf,0x36,0x44, 0xf,0x36,0x45, 0xf,0x36,0x46, 0xf,0x36,0x47,\n  0xf,0x36,0x49, 0xf,0x36,0x4a, 0xf,0x36,0x4c, 0xf,0x36,0x4d,\n  0xf,0x36,0x4e, 0xf,0x36,0x50, 0x6,0x41,0x49, 0x6,0x41,0x48,\n  0xf,0x36,0x4b, 0x5,0x33,0x43, 0x5,0x33,0x45, 0x6,0x41,0x55,\n  0x4,0x38,0x69, 0x6,0x4a,0x78, 0x6,0x41,0x4a, 0x5,0x39,0x71,\n  0x5,0x39,0x6f, 0x6,0x4a,0x7e, 0x6,0x4b,0x21, 0x5,0x39,0x6e,\n  0x6,0x4a,0x75, 0x4,0x38,0x66, 0x6,0x4a,0x7a, 0x6,0x4a,0x74,\n  0x6,0x4a,0x7d, 0x4,0x38,0x63, 0x5,0x39,0x70, 0x6,0x4a,0x77,\n  0xf,0x3c,0x5e, 0xf,0x3c,0x5f, 0xf,0x3c,0x60, 0xf,0x3c,0x61,\n  0xf,0x3c,0x62, 0xf,0x3c,0x63, 0xf,0x3c,0x64, 0xf,0x3c,0x66,\n  0xf,0x3c,0x67, 0xf,0x3c,0x68, 0xf,0x3c,0x69, 0xf,0x3c,0x6b,\n  0xf,0x3c,0x6c, 0xf,0x3c,0x6d, 0xf,0x3c,0x6e, 0xf,0x3c,0x6f,\n  0xf,0x3c,0x70, 0xf,0x3c,0x71, 0xf,0x3c,0x72, 0xf,0x3c,0x75,\n  0xf,0x3c,0x77, 0xf,0x3c,0x78, 0xf,0x3c,0x79, 0xf,0x3c,0x7a,\n  0xf,0x3c,0x7b, 0xf,0x3c,0x7c, 0xf,0x3d,0x21, 0x6,0x4a,0x79,\n  0x6,0x4a,0x7c, 0x4,0x38,0x67, 0x6,0x4a,0x76, 0x6,0x4a,0x7b,\n  0xf,0x3c,0x6a, 0x5,0x39,0x72, 0x5,0x40,0x34, 0x6,0x54,0x5a,\n  0x6,0x54,0x58, 0x5,0x40,0x30, 0x6,0x54,0x56, 0x6,0x54,0x5d,\n  0x4,0x3e,0x47, 0x6,0x54,0x57, 0x4,0x3e,0x44, 0x6,0x54,0x5b,\n  0x6,0x54,0x5e, 0x4,0x3e,0x45, 0x5,0x40,0x32, 0x6,0x54,0x53,\n  0x6,0x54,0x63, 0x6,0x54,0x5f, 0x6,0x54,0x64, 0x5,0x40,0x35,\n  0x6,0x54,0x5c, 0x6,0x54,0x62, 0xf,0x42,0x76, 0xf,0x42,0x79,\n  0xf,0x42,0x7b, 0xf,0x42,0x7c, 0xf,0x42,0x7d, 0xf,0x43,0x21,\n  0xf,0x43,0x22, 0xf,0x43,0x23, 0xf,0x43,0x25, 0xf,0x43,0x26,\n  0xf,0x43,0x27, 0xf,0x43,0x28, 0xf,0x43,0x29, 0xf,0x43,0x2a,\n  0xf,0x43,0x2b, 0xf,0x43,0x2d, 0xf,0x43,0x2e, 0xf,0x43,0x30,\n  0xf,0x43,0x33, 0xf,0x43,0x34, 0xf,0x43,0x35, 0xf,0x43,0x36,\n  0xf,0x43,0x37, 0xf,0x43,0x38, 0xf,0x43,0x39, 0xf,0x43,0x3a,\n  0xf,0x43,0x3b, 0xf,0x43,0x3d, 0xf,0x43,0x3e, 0x6,0x54,0x51,\n  0x6,0x54,0x52, 0x6,0x54,0x55, 0x6,0x54,0x66, 0x4,0x3e,0x4a,\n  0x6,0x54,0x61, 0x6,0x54,0x65, 0x6,0x5a,0x54, 0xf,0x43,0x2c,\n  0x5,0x40,0x33, 0x5,0x40,0x31, 0xf,0x49,0x54, 0x6,0x5e,0x51,\n  0x6,0x5e,0x50, 0x5,0x46,0x7e, 0x6,0x5e,0x4a, 0x5,0x47,0x22,\n  0x4,0x44,0x55, 0x5,0x46,0x7c, 0x5,0x46,0x7b, 0x5,0x46,0x7a,\n  0x7,0x24,0x70, 0x7,0x24,0x6a, 0x6,0x5e,0x46, 0x5,0x47,0x21,\n  0x6,0x5e,0x47, 0x6,0x5e,0x48, 0x5,0x46,0x79, 0x6,0x5e,0x4b,\n  0x6,0x5e,0x4f, 0xf,0x49,0x44, 0xf,0x49,0x45, 0xf,0x49,0x46,\n  0xf,0x49,0x47, 0xf,0x49,0x49, 0xf,0x49,0x4a, 0xf,0x49,0x4c,\n  0xf,0x49,0x4d, 0xf,0x49,0x4e, 0xf,0x49,0x4f, 0xf,0x49,0x50,\n  0xf,0x49,0x51, 0xf,0x49,0x52, 0xf,0x49,0x53, 0xf,0x49,0x55,\n  0xf,0x49,0x56, 0xf,0x49,0x57, 0xf,0x49,0x5a, 0xf,0x49,0x5b,\n  0xf,0x49,0x5d, 0xf,0x49,0x5e, 0xf,0x49,0x60, 0xf,0x49,0x62,\n  0xf,0x49,0x63, 0xf,0x49,0x64, 0x4,0x44,0x5d, 0x5,0x46,0x7d,\n  0x6,0x5e,0x4c, 0x6,0x5e,0x52, 0x6,0x5e,0x49, 0x6,0x5e,0x4d,\n  0xf,0x49,0x5c, 0x6,0x54,0x60, 0xf,0x42,0x7e, 0xf,0x42,0x7a,\n  0x4,0x4a,0x6b, 0x5,0x4e,0x2c, 0x7,0x24,0x74, 0x7,0x24,0x6d,\n  0x7,0x24,0x69, 0x5,0x4e,0x2a, 0x7,0x24,0x6c, 0x7,0x24,0x71,\n  0x7,0x24,0x72, 0x7,0x24,0x75, 0x7,0x24,0x6b, 0x5,0x4e,0x29,\n  0xf,0x4e,0x22, 0x5,0x4e,0x2b, 0x7,0x24,0x73, 0xf,0x50,0x23,\n  0xf,0x50,0x24, 0xf,0x50,0x26, 0xf,0x50,0x27, 0xf,0x50,0x28,\n  0xf,0x50,0x29, 0xf,0x50,0x2a, 0xf,0x50,0x2b, 0xf,0x50,0x2e,\n  0xf,0x50,0x2f, 0xf,0x50,0x31, 0xf,0x50,0x32, 0xf,0x50,0x33,\n  0xf,0x50,0x34, 0xf,0x50,0x35, 0xf,0x50,0x37, 0xf,0x50,0x38,\n  0xf,0x50,0x39, 0xf,0x50,0x3a, 0xf,0x50,0x3b, 0xf,0x50,0x3c,\n  0x7,0x24,0x6e, 0xf,0x50,0x2c, 0x7,0x2a,0x71, 0xf,0x50,0x2d,\n  0xf,0x50,0x30, 0xf,0x50,0x25, 0xf,0x50,0x22, 0x5,0x4e,0x2e,\n  0x5,0x4e,0x2d, 0x6,0x5e,0x4e, 0x4,0x51,0x2a, 0x7,0x2f,0x52,\n  0x7,0x2f,0x66, 0x7,0x2f,0x50, 0x7,0x2f,0x60, 0x7,0x2f,0x5e,\n  0x5,0x55,0x3b, 0x4,0x51,0x27, 0x7,0x2f,0x61, 0x7,0x2f,0x63,\n  0x7,0x2f,0x55, 0x7,0x24,0x6f, 0x4,0x51,0x28, 0x7,0x2f,0x56,\n  0x7,0x2f,0x64, 0x7,0x2f,0x65, 0x4,0x51,0x26, 0x7,0x2f,0x58,\n  0x7,0x2f,0x54, 0x4,0x51,0x29, 0x7,0x2f,0x67, 0x5,0x55,0x3a,\n  0x5,0x55,0x3c, 0x7,0x2f,0x62, 0x7,0x2f,0x59, 0x7,0x2f,0x5d,\n  0x7,0x2f,0x5a, 0x7,0x2f,0x4b, 0x7,0x2f,0x53, 0x7,0x2f,0x5c,\n  0xf,0x55,0x59, 0xf,0x55,0x5a, 0xf,0x55,0x5b, 0xf,0x55,0x5c,\n  0xf,0x55,0x5d, 0xf,0x55,0x5e, 0xf,0x55,0x5f, 0xf,0x55,0x60,\n  0xf,0x55,0x61, 0xf,0x55,0x62, 0xf,0x55,0x63, 0xf,0x55,0x66,\n  0xf,0x55,0x67, 0xf,0x55,0x68, 0xf,0x55,0x6a, 0xf,0x55,0x6b,\n  0xf,0x55,0x6d, 0xf,0x55,0x6e, 0xf,0x55,0x70, 0xf,0x55,0x71,\n  0xf,0x55,0x72, 0xf,0x55,0x65, 0x5,0x55,0x38, 0x7,0x2f,0x4d,\n  0x7,0x2f,0x4e, 0x7,0x2f,0x5b, 0x7,0x2f,0x5f, 0x7,0x31,0x7a,\n  0x7,0x2f,0x51, 0x7,0x2c,0x7b, 0xf,0x55,0x6f, 0x5,0x55,0x3d,\n  0x5,0x55,0x39, 0x7,0x2f,0x4c, 0x7,0x24,0x76, 0x7,0x2f,0x57,\n  0x7,0x39,0x23, 0x4,0x56,0x61, 0x7,0x39,0x25, 0x5,0x55,0x3e,\n  0x7,0x39,0x29, 0x7,0x39,0x28, 0x4,0x56,0x63, 0x7,0x2f,0x68,\n  0x5,0x5c,0x21, 0x7,0x38,0x7d, 0x5,0x5c,0x24, 0x5,0x5c,0x22,\n  0xf,0x5a,0x71, 0xf,0x5a,0x72, 0xf,0x5a,0x76, 0xf,0x5a,0x77,\n  0xf,0x5a,0x78, 0xf,0x5a,0x79, 0xf,0x5a,0x7a, 0xf,0x5a,0x7b,\n  0xf,0x5a,0x7c, 0xf,0x5a,0x7d, 0xf,0x5a,0x7e, 0xf,0x5b,0x21,\n  0xf,0x5b,0x22, 0xf,0x5b,0x23, 0x7,0x38,0x7e, 0x7,0x39,0x24,\n  0x7,0x39,0x22, 0x5,0x5c,0x23, 0x7,0x39,0x21, 0xf,0x55,0x69,\n  0x7,0x40,0x4f, 0x4,0x5b,0x62, 0x7,0x40,0x4e, 0x5,0x62,0x4e,\n  0x7,0x40,0x4b, 0x7,0x40,0x53, 0x7,0x40,0x51, 0x7,0x40,0x4c,\n  0x4,0x5b,0x63, 0x5,0x62,0x4f, 0x5,0x62,0x50, 0x4,0x5b,0x61,\n  0x7,0x40,0x54, 0x7,0x40,0x4a, 0x7,0x40,0x52, 0xf,0x5f,0x44,\n  0xf,0x5f,0x46, 0xf,0x5f,0x45, 0xf,0x5f,0x47, 0xf,0x5f,0x48,\n  0xf,0x5f,0x49, 0xf,0x5f,0x4a, 0xf,0x5f,0x4c, 0xf,0x5f,0x4d,\n  0x7,0x40,0x50, 0x7,0x42,0x22, 0x7,0x40,0x55, 0x7,0x40,0x4d,\n  0x7,0x40,0x49, 0x7,0x39,0x2a, 0xf,0x61,0x76, 0xf,0x5a,0x74,\n  0xf,0x5a,0x75, 0x7,0x47,0x6c, 0x5,0x68,0x37, 0x4,0x60,0x21,\n  0x7,0x47,0x6d, 0x4,0x60,0x22, 0x7,0x47,0x6a, 0xf,0x62,0x74,\n  0xf,0x62,0x75, 0xf,0x62,0x76, 0xf,0x62,0x77, 0x7,0x47,0x69,\n  0x7,0x47,0x67, 0x7,0x47,0x6b, 0xf,0x5f,0x4b, 0x7,0x47,0x68,\n  0xf,0x65,0x45, 0x5,0x6c,0x4f, 0x7,0x4e,0x30, 0x7,0x4e,0x33,\n  0x7,0x4e,0x3b, 0x5,0x6c,0x4e, 0x5,0x6c,0x4d, 0x5,0x6c,0x51,\n  0x4,0x60,0x23, 0x7,0x4e,0x32, 0x7,0x4e,0x38, 0x4,0x63,0x62,\n  0x4,0x63,0x60, 0x7,0x4e,0x3c, 0x7,0x4e,0x31, 0x7,0x4e,0x35,\n  0x7,0x4e,0x37, 0xf,0x65,0x48, 0x7,0x4e,0x34, 0xf,0x65,0x46,\n  0xf,0x65,0x47, 0xf,0x65,0x4a, 0xf,0x65,0x4b, 0xf,0x65,0x4c,\n  0xf,0x65,0x4d, 0xf,0x65,0x4e, 0x7,0x4e,0x39, 0x7,0x4e,0x36,\n  0x7,0x4e,0x3a, 0x5,0x6c,0x50, 0x7,0x53,0x64, 0x4,0x63,0x61,\n  0x7,0x53,0x66, 0x5,0x70,0x43, 0x4,0x66,0x4f, 0x7,0x53,0x67,\n  0x7,0x53,0x62, 0x7,0x53,0x63, 0x7,0x53,0x65, 0xf,0x67,0x71,\n  0xf,0x67,0x72, 0xf,0x67,0x73, 0xf,0x67,0x74, 0xf,0x67,0x75,\n  0x7,0x58,0x36, 0x5,0x73,0x56, 0x4,0x6a,0x4f, 0x7,0x58,0x37,\n  0x7,0x58,0x38, 0x7,0x58,0x34, 0xf,0x69,0x56, 0xf,0x69,0x57,\n  0xf,0x69,0x58, 0x7,0x58,0x35, 0x7,0x5b,0x24, 0x7,0x5b,0x6e,\n  0x7,0x5b,0x70, 0x7,0x5b,0x6d, 0x7,0x5c,0x44, 0x7,0x5b,0x6f,\n  0x7,0x5b,0x6c, 0x7,0x5b,0x6b, 0x5,0x76,0x23, 0xf,0x6a,0x60,\n  0x7,0x5e,0x78, 0xf,0x6a,0x5f, 0x5,0x77,0x68, 0x7,0x61,0x21,\n  0x7,0x60,0x7c, 0x7,0x60,0x7e, 0x7,0x61,0x38, 0x7,0x60,0x7b,\n  0x7,0x60,0x7d, 0x7,0x62,0x3a, 0x5,0x7a,0x6b, 0xf,0x6c,0x64,\n  0xf,0x6c,0x65, 0x7,0x64,0x4d, 0x7,0x64,0x4c, 0x7,0x64,0x4e,\n  0x7,0x65,0x37, 0x7,0x66,0x34, 0x5,0x21,0x4b, 0x6,0x23,0x30,\n  0x6,0x28,0x4d, 0x6,0x28,0x4e, 0x5,0x24,0x58, 0x6,0x2c,0x62,\n  0x6,0x2c,0x61, 0x6,0x2c,0x63, 0xf,0x27,0x78, 0xf,0x27,0x79,\n  0x6,0x32,0x4e, 0x5,0x2a,0x2b, 0x5,0x2a,0x29, 0x6,0x32,0x4f,\n  0x5,0x2a,0x2a, 0x6,0x32,0x51, 0xf,0x2c,0x24, 0xf,0x2c,0x25,\n  0xf,0x2c,0x26, 0x6,0x32,0x4d, 0x6,0x32,0x50, 0x5,0x2e,0x51,\n  0x5,0x2e,0x50, 0xf,0x30,0x73, 0x6,0x41,0x57, 0x6,0x41,0x56,\n  0x6,0x41,0x58, 0xf,0x36,0x51, 0x4,0x38,0x6a, 0x6,0x4b,0x22,\n  0x6,0x47,0x43, 0x6,0x4d,0x5d, 0x6,0x54,0x68, 0x6,0x54,0x69,\n  0x6,0x5e,0x53, 0x5,0x47,0x23, 0x6,0x5e,0x56, 0x6,0x5e,0x55,\n  0x6,0x5e,0x54, 0x7,0x24,0x7a, 0x5,0x4e,0x2f, 0x7,0x24,0x77,\n  0x7,0x24,0x79, 0x7,0x24,0x78, 0x7,0x2f,0x69, 0x7,0x2f,0x6a,\n  0x5,0x55,0x3f, 0x4,0x56,0x65, 0xf,0x5b,0x24, 0xf,0x5b,0x25,\n  0xf,0x5b,0x26, 0xf,0x55,0x73, 0x7,0x40,0x56, 0x5,0x68,0x38,\n  0xf,0x65,0x4f, 0xf,0x65,0x50, 0x7,0x4e,0x3d, 0x7,0x53,0x68,\n  0x7,0x5b,0x71, 0x7,0x5e,0x79, 0x7,0x61,0x22, 0xf,0x24,0x73,\n  0xf,0x24,0x74, 0x6,0x2c,0x64, 0x6,0x2c,0x65, 0x6,0x41,0x59,\n  0x6,0x41,0x5a, 0xf,0x3d,0x22, 0xf,0x3d,0x23, 0x6,0x54,0x6a,\n  0xf,0x49,0x65, 0x5,0x47,0x24, 0x5,0x55,0x40, 0xf,0x21,0x68,\n  0x6,0x2b,0x6b, 0x5,0x2a,0x2c, 0x4,0x2a,0x2b, 0x4,0x2d,0x77,\n  0xf,0x30,0x74, 0x5,0x31,0x6c, 0x6,0x4b,0x23, 0x6,0x54,0x6c,\n  0x6,0x54,0x6b, 0x5,0x55,0x41, 0x7,0x24,0x7b, 0x7,0x24,0x7c,\n  0x5,0x55,0x42, 0x6,0x22,0x25, 0x6,0x23,0x31, 0x6,0x25,0x35,\n  0x6,0x28,0x4f, 0x4,0x27,0x2d, 0x6,0x2c,0x67, 0x6,0x2c,0x66,\n  0x6,0x32,0x52, 0x4,0x2a,0x2d, 0x6,0x32,0x53, 0x6,0x32,0x54,\n  0x6,0x39,0x3e, 0x4,0x2d,0x78, 0xf,0x30,0x75, 0x6,0x39,0x3d,\n  0x6,0x41,0x5b, 0x6,0x41,0x5e, 0x6,0x41,0x5d, 0x4,0x32,0x78,\n  0x6,0x41,0x5c, 0xf,0x36,0x52, 0xf,0x36,0x53, 0x6,0x4b,0x28,\n  0x6,0x4b,0x24, 0x6,0x4b,0x26, 0x6,0x4b,0x27, 0x6,0x4b,0x29,\n  0x6,0x4b,0x25, 0x6,0x4d,0x58, 0x6,0x54,0x6d, 0x6,0x54,0x6e,\n  0xf,0x43,0x3f, 0x6,0x5e,0x58, 0x6,0x5e,0x59, 0xf,0x49,0x66,\n  0x7,0x24,0x7d, 0xf,0x50,0x3e, 0x7,0x24,0x7e, 0x5,0x55,0x43,\n  0x5,0x62,0x51, 0x4,0x51,0x2c, 0x7,0x2f,0x6b, 0x7,0x25,0x21,\n  0x5,0x55,0x44, 0x7,0x39,0x2b, 0x7,0x39,0x2c, 0x5,0x5c,0x25,\n  0x7,0x47,0x70, 0x5,0x6c,0x52, 0x7,0x58,0x39, 0x7,0x5b,0x72,\n  0x7,0x63,0x58, 0x5,0x7b,0x42, 0x7,0x64,0x4f, 0xf,0x21,0x69,\n  0x6,0x28,0x51, 0x5,0x24,0x59, 0x6,0x28,0x50, 0x4,0x27,0x2e,\n  0x6,0x2c,0x6b, 0x6,0x2c,0x6a, 0x6,0x2c,0x69, 0x6,0x2c,0x68,\n  0x6,0x32,0x56, 0x6,0x32,0x55, 0x5,0x2a,0x2d, 0x6,0x32,0x57,\n  0x5,0x2a,0x2e, 0x5,0x2e,0x52, 0x4,0x2d,0x79, 0x4,0x2d,0x7b,\n  0x6,0x39,0x41, 0x6,0x39,0x3f, 0x5,0x33,0x46, 0x5,0x33,0x47,\n  0x6,0x41,0x5f, 0x6,0x41,0x62, 0x6,0x41,0x60, 0x6,0x4b,0x2b,\n  0x4,0x38,0x6d, 0x6,0x4b,0x2e, 0x6,0x4b,0x2a, 0x6,0x4b,0x2c,\n  0x6,0x4b,0x2d, 0x5,0x39,0x73, 0x5,0x39,0x76, 0x5,0x39,0x74,\n  0x5,0x39,0x75, 0x4,0x38,0x6e, 0x5,0x40,0x38, 0x6,0x54,0x6f,\n  0x4,0x3e,0x4d, 0x5,0x40,0x36, 0x5,0x40,0x37, 0x6,0x54,0x70,\n  0xf,0x3d,0x24, 0x5,0x47,0x25, 0x6,0x5e,0x5b, 0x6,0x5e,0x5c,\n  0x6,0x5e,0x5a, 0xf,0x49,0x67, 0x5,0x4e,0x32, 0x7,0x25,0x25,\n  0x5,0x4e,0x31, 0x5,0x4e,0x30, 0x5,0x4e,0x33, 0x7,0x25,0x24,\n  0x7,0x25,0x22, 0x5,0x4e,0x34, 0x7,0x25,0x23, 0x5,0x55,0x46,\n  0x5,0x55,0x47, 0x5,0x55,0x48, 0x7,0x2f,0x6d, 0x5,0x55,0x45,\n  0x7,0x2f,0x6c, 0x5,0x5c,0x26, 0x4,0x56,0x66, 0xf,0x5b,0x27,\n  0xf,0x5b,0x28, 0x5,0x62,0x53, 0x5,0x62,0x52, 0x5,0x6c,0x53,\n  0x7,0x53,0x69, 0x5,0x23,0x68, 0x6,0x39,0x43, 0x6,0x39,0x42,\n  0x4,0x38,0x6f, 0x6,0x4b,0x2f, 0xf,0x3d,0x25, 0xf,0x3d,0x26,\n  0x6,0x54,0x71, 0x6,0x5e,0x5d, 0x5,0x21,0x75, 0xf,0x22,0x63,\n  0x6,0x25,0x36, 0xf,0x22,0x62, 0x6,0x28,0x53, 0xf,0x24,0x75,\n  0x6,0x28,0x52, 0x6,0x28,0x54, 0x5,0x26,0x79, 0x5,0x27,0x22,\n  0x5,0x26,0x78, 0x5,0x26,0x7b, 0x5,0x26,0x76, 0x5,0x26,0x7d,\n  0x6,0x2c,0x6e, 0x4,0x27,0x30, 0x5,0x27,0x21, 0x6,0x2c,0x6c,\n  0x5,0x26,0x7e, 0x5,0x27,0x23, 0x5,0x26,0x7c, 0x6,0x2c,0x6d,\n  0xf,0x27,0x7b, 0xf,0x27,0x7c, 0xf,0x27,0x7e, 0xf,0x28,0x21,\n  0x5,0x26,0x7a, 0x6,0x2c,0x6f, 0x6,0x2c,0x70, 0x5,0x2a,0x32,\n  0x5,0x2a,0x30, 0x5,0x2a,0x2f, 0x6,0x32,0x5f, 0x6,0x32,0x5c,\n  0x5,0x2a,0x33, 0x5,0x2a,0x31, 0x4,0x2a,0x30, 0x6,0x32,0x5a,\n  0x6,0x32,0x59, 0xf,0x2c,0x28, 0xf,0x2c,0x29, 0x6,0x32,0x5b,\n  0x6,0x32,0x5e, 0x6,0x32,0x58, 0x6,0x32,0x5d, 0x5,0x2a,0x34,\n  0xf,0x27,0x7d, 0x5,0x2e,0x58, 0x5,0x2e,0x54, 0x5,0x2e,0x56,\n  0x5,0x2e,0x57, 0x5,0x2e,0x55, 0x6,0x39,0x44, 0x5,0x2e,0x59,\n  0x4,0x32,0x7b, 0x6,0x41,0x67, 0x6,0x41,0x68, 0x5,0x33,0x49,\n  0x5,0x39,0x77, 0x4,0x32,0x7d, 0x4,0x32,0x7c, 0x5,0x33,0x4b,\n  0x5,0x33,0x4c, 0xf,0x36,0x54, 0xf,0x36,0x55, 0x6,0x41,0x65,\n  0x6,0x41,0x69, 0x6,0x41,0x64, 0x5,0x33,0x48, 0x4,0x38,0x71,\n  0x4,0x38,0x74, 0x5,0x39,0x7d, 0x6,0x4b,0x34, 0x5,0x39,0x79,\n  0x5,0x39,0x7b, 0x5,0x39,0x78, 0x6,0x4b,0x32, 0x6,0x4b,0x35,\n  0xf,0x3d,0x27, 0xf,0x3d,0x28, 0x6,0x4b,0x33, 0x6,0x4b,0x30,\n  0x6,0x4b,0x31, 0x5,0x39,0x7a, 0x5,0x39,0x7c, 0x5,0x33,0x4a,\n  0xf,0x3d,0x29, 0x6,0x4b,0x36, 0x5,0x47,0x2b, 0x5,0x40,0x3e,\n  0x5,0x40,0x3c, 0x4,0x3e,0x50, 0x6,0x5e,0x64, 0x6,0x54,0x73,\n  0x5,0x47,0x26, 0x6,0x54,0x72, 0x6,0x54,0x75, 0x6,0x54,0x74,\n  0xf,0x43,0x40, 0xf,0x43,0x41, 0x5,0x40,0x3d, 0x6,0x54,0x77,\n  0x5,0x40,0x3b, 0x4,0x44,0x61, 0x5,0x47,0x2d, 0x5,0x47,0x28,\n  0x5,0x47,0x2e, 0x5,0x47,0x2c, 0x6,0x5e,0x5f, 0x6,0x5e,0x63,\n  0x5,0x47,0x27, 0x5,0x47,0x2a, 0x6,0x5e,0x67, 0x6,0x5e,0x62,\n  0x6,0x5e,0x61, 0x5,0x40,0x3a, 0x6,0x5e,0x66, 0xf,0x49,0x68,\n  0xf,0x49,0x69, 0xf,0x49,0x6a, 0xf,0x49,0x6b, 0x5,0x47,0x2f,\n  0x5,0x47,0x29, 0x6,0x5e,0x60, 0x6,0x54,0x76, 0x6,0x5e,0x65,\n  0xf,0x49,0x6c, 0x5,0x47,0x30, 0x5,0x4e,0x36, 0x7,0x25,0x26,\n  0x4,0x4a,0x74, 0x5,0x4e,0x39, 0x5,0x4e,0x3a, 0x5,0x4e,0x38,\n  0x4,0x4a,0x70, 0x5,0x4e,0x35, 0xf,0x50,0x3f, 0x7,0x25,0x28,\n  0x7,0x25,0x27, 0x7,0x2f,0x70, 0x5,0x55,0x49, 0x5,0x55,0x4e,\n  0x7,0x2f,0x71, 0x5,0x55,0x4b, 0x5,0x55,0x4d, 0x5,0x55,0x4a,\n  0x5,0x55,0x4c, 0x7,0x2f,0x6f, 0x7,0x39,0x30, 0x7,0x39,0x2e,\n  0x5,0x5c,0x27, 0x4,0x56,0x68, 0x4,0x56,0x69, 0x7,0x2f,0x6e,\n  0x7,0x39,0x2f, 0x7,0x40,0x57, 0x7,0x40,0x58, 0x5,0x68,0x3a,\n  0x7,0x53,0x6a, 0x7,0x47,0x72, 0x7,0x47,0x73, 0x7,0x47,0x71,\n  0x5,0x68,0x39, 0x7,0x4e,0x3f, 0x5,0x6c,0x54, 0x5,0x6c,0x55,\n  0x5,0x70,0x45, 0x7,0x53,0x6c, 0x5,0x70,0x44, 0x5,0x70,0x46,\n  0x7,0x58,0x3a, 0x5,0x73,0x59, 0x7,0x5b,0x74, 0x5,0x73,0x58,\n  0x7,0x5b,0x75, 0x7,0x5b,0x73, 0x5,0x77,0x69, 0x7,0x61,0x23,\n  0xf,0x6c,0x31, 0x7,0x64,0x50, 0xf,0x21,0x3d, 0x6,0x23,0x32,\n  0x5,0x21,0x77, 0x5,0x21,0x78, 0x5,0x22,0x78, 0x5,0x22,0x7b,\n  0x5,0x22,0x77, 0x4,0x23,0x28, 0x5,0x22,0x7a, 0x6,0x25,0x37,\n  0x5,0x22,0x79, 0x5,0x24,0x5e, 0x5,0x24,0x5f, 0x4,0x24,0x5b,\n  0x4,0x27,0x37, 0x6,0x28,0x58, 0x4,0x24,0x5a, 0x5,0x24,0x5a,\n  0x6,0x28,0x5e, 0x5,0x24,0x5b, 0x6,0x28,0x5b, 0x5,0x27,0x2f,\n  0x6,0x2c,0x72, 0x4,0x24,0x57, 0x5,0x24,0x5d, 0x5,0x24,0x5c,\n  0x6,0x28,0x5a, 0x6,0x28,0x59, 0x6,0x2c,0x73, 0xf,0x24,0x77,\n  0x6,0x28,0x57, 0x6,0x28,0x5c, 0x6,0x28,0x5d, 0x6,0x28,0x56,\n  0x4,0x24,0x58, 0x6,0x2c,0x7a, 0x5,0x27,0x28, 0x6,0x2c,0x7b,\n  0x5,0x27,0x2c, 0x6,0x2c,0x79, 0x6,0x2c,0x7c, 0x5,0x27,0x27,\n  0x5,0x27,0x2a, 0x6,0x2c,0x78, 0x5,0x27,0x2d, 0x5,0x27,0x25,\n  0x5,0x27,0x29, 0x5,0x27,0x24, 0x6,0x2c,0x77, 0x4,0x27,0x38,\n  0x5,0x2a,0x36, 0x6,0x28,0x55, 0x6,0x32,0x60, 0x5,0x27,0x2b,\n  0x6,0x2c,0x76, 0xf,0x28,0x22, 0x6,0x2c,0x7d, 0x6,0x2c,0x74,\n  0x4,0x27,0x35, 0x5,0x2a,0x35, 0x5,0x2a,0x3e, 0x6,0x32,0x68,\n  0x5,0x2a,0x39, 0x6,0x39,0x4b, 0x5,0x2a,0x3d, 0x6,0x32,0x61,\n  0x6,0x39,0x4c, 0x6,0x41,0x6c, 0x5,0x2a,0x3c, 0x4,0x2a,0x31,\n  0x5,0x2a,0x3b, 0x6,0x32,0x64, 0x5,0x2a,0x3a, 0x6,0x32,0x66,\n  0x4,0x2a,0x33, 0x5,0x2a,0x40, 0x6,0x32,0x63, 0x5,0x27,0x26,\n  0x5,0x2a,0x37, 0x5,0x2a,0x38, 0xf,0x2c,0x2a, 0xf,0x2c,0x2c,\n  0xf,0x2c,0x2d, 0x6,0x32,0x65, 0xf,0x2c,0x2b, 0x5,0x2a,0x3f,\n  0x6,0x39,0x4e, 0x5,0x2e,0x5e, 0x4,0x33,0x21, 0x6,0x39,0x49,\n  0x6,0x39,0x4d, 0x4,0x2e,0x25, 0x5,0x2e,0x5b, 0x5,0x2e,0x60,\n  0x5,0x2e,0x5d, 0x4,0x2e,0x23, 0x6,0x39,0x45, 0x6,0x39,0x4a,\n  0xf,0x30,0x77, 0xf,0x30,0x78, 0x6,0x39,0x48, 0x5,0x2e,0x5a,\n  0x4,0x2e,0x24, 0x6,0x39,0x47, 0x6,0x39,0x4f, 0x5,0x2e,0x5f,\n  0x6,0x39,0x46, 0x5,0x33,0x4e, 0xf,0x30,0x76, 0x4,0x33,0x24,\n  0x6,0x41,0x6e, 0x5,0x33,0x55, 0x5,0x39,0x7e, 0x5,0x33,0x52,\n  0x6,0x41,0x70, 0x6,0x41,0x73, 0x5,0x33,0x4f, 0x6,0x41,0x6f,\n  0x6,0x4b,0x3b, 0x4,0x33,0x26, 0x5,0x33,0x53, 0x6,0x4b,0x38,\n  0x6,0x4b,0x37, 0x5,0x33,0x50, 0x6,0x4b,0x39, 0x6,0x41,0x71,\n  0x6,0x41,0x72, 0x6,0x41,0x74, 0x6,0x4b,0x3a, 0x5,0x3a,0x28,\n  0x6,0x54,0x7b, 0x5,0x3a,0x26, 0x5,0x40,0x3f, 0x4,0x38,0x75,\n  0x5,0x3a,0x22, 0x6,0x4b,0x44, 0x5,0x40,0x40, 0x5,0x3a,0x27,\n  0x4,0x38,0x76, 0x5,0x3a,0x25, 0x5,0x3a,0x24, 0x4,0x38,0x78,\n  0x6,0x4b,0x3f, 0x4,0x3e,0x51, 0x5,0x3a,0x21, 0x6,0x4b,0x3c,\n  0x6,0x4b,0x3e, 0x4,0x3e,0x57, 0xf,0x3d,0x2a, 0xf,0x3d,0x2b,\n  0x6,0x54,0x79, 0x6,0x52,0x72, 0x6,0x54,0x7a, 0x6,0x4b,0x40,\n  0x6,0x4b,0x41, 0x6,0x4b,0x45, 0x6,0x4b,0x3d, 0x5,0x3a,0x23,\n  0xf,0x43,0x43, 0x4,0x3e,0x56, 0x5,0x40,0x48, 0x6,0x55,0x22,\n  0x5,0x40,0x47, 0x4,0x3e,0x55, 0x6,0x55,0x27, 0x5,0x40,0x4b,\n  0x6,0x55,0x24, 0x6,0x54,0x7e, 0x6,0x54,0x7d, 0x6,0x55,0x26,\n  0x5,0x40,0x46, 0x5,0x40,0x44, 0x5,0x40,0x43, 0x6,0x55,0x21,\n  0x5,0x40,0x42, 0x6,0x55,0x28, 0x5,0x40,0x4a, 0x5,0x40,0x41,\n  0x4,0x3e,0x58, 0x5,0x40,0x49, 0x6,0x55,0x25, 0xf,0x43,0x45,\n  0xf,0x43,0x46, 0xf,0x49,0x70, 0xf,0x50,0x40, 0x5,0x40,0x45,\n  0x6,0x55,0x23, 0x5,0x40,0x4c, 0x6,0x5e,0x6d, 0x5,0x47,0x3a,\n  0x6,0x5e,0x69, 0x7,0x25,0x29, 0x5,0x47,0x37, 0x4,0x44,0x6b,\n  0x5,0x47,0x35, 0x5,0x47,0x33, 0x6,0x5e,0x6c, 0x5,0x47,0x3b,\n  0x5,0x47,0x36, 0x5,0x47,0x34, 0x6,0x5e,0x70, 0x4,0x44,0x6c,\n  0x5,0x47,0x31, 0xf,0x49,0x6d, 0x7,0x25,0x2a, 0xf,0x49,0x6f,\n  0x6,0x5e,0x6b, 0x6,0x5e,0x68, 0x6,0x5e,0x6a, 0x6,0x5e,0x6f,\n  0x4,0x4a,0x7d, 0x5,0x47,0x3d, 0x5,0x47,0x3c, 0x5,0x47,0x39,\n  0x5,0x47,0x38, 0x6,0x5e,0x71, 0x5,0x47,0x32, 0x7,0x25,0x31,\n  0x4,0x4a,0x78, 0x4,0x4a,0x79, 0x7,0x25,0x30, 0x5,0x4e,0x3c,\n  0x7,0x25,0x34, 0x7,0x2f,0x73, 0x5,0x4e,0x41, 0x7,0x25,0x2f,\n  0x7,0x25,0x2b, 0x5,0x4e,0x3e, 0x5,0x4e,0x45, 0x5,0x4e,0x3b,\n  0x5,0x4e,0x44, 0x5,0x4e,0x43, 0x5,0x4e,0x3d, 0x5,0x55,0x4f,\n  0x7,0x2f,0x72, 0x5,0x4e,0x3f, 0x5,0x4e,0x40, 0x5,0x4e,0x46,\n  0x7,0x25,0x2c, 0x7,0x25,0x2d, 0xf,0x55,0x75, 0x5,0x55,0x50,\n  0x7,0x25,0x2e, 0x7,0x25,0x33, 0xf,0x49,0x6e, 0x4,0x51,0x33,\n  0x5,0x4e,0x42, 0x5,0x55,0x57, 0x4,0x51,0x35, 0x5,0x55,0x55,\n  0x5,0x55,0x51, 0x5,0x55,0x52, 0x7,0x2f,0x79, 0x4,0x51,0x31,\n  0x7,0x2f,0x78, 0x7,0x2f,0x77, 0x5,0x5c,0x28, 0x4,0x51,0x36,\n  0x5,0x55,0x53, 0x5,0x55,0x56, 0x7,0x2f,0x75, 0x7,0x39,0x32,\n  0x4,0x56,0x6d, 0x7,0x39,0x31, 0x7,0x2f,0x76, 0x7,0x25,0x32,\n  0xf,0x55,0x77, 0x7,0x25,0x35, 0x5,0x55,0x54, 0x5,0x5c,0x2a,\n  0x7,0x39,0x33, 0x5,0x5c,0x29, 0x7,0x47,0x77, 0x7,0x39,0x35,\n  0x7,0x39,0x34, 0xf,0x5b,0x29, 0xf,0x5b,0x2a, 0xf,0x5b,0x2b,\n  0xf,0x5b,0x2c, 0x7,0x40,0x5d, 0x5,0x62,0x55, 0x5,0x62,0x54,\n  0x7,0x40,0x5a, 0x7,0x40,0x59, 0x7,0x40,0x5c, 0x4,0x5b,0x68,\n  0x7,0x40,0x5b, 0xf,0x5f,0x4e, 0xf,0x5f,0x4f, 0x5,0x62,0x56,\n  0x4,0x63,0x64, 0x7,0x47,0x78, 0x7,0x4e,0x40, 0x7,0x47,0x76,\n  0x7,0x47,0x74, 0x7,0x4e,0x41, 0x5,0x6c,0x56, 0x7,0x4e,0x42,\n  0x5,0x70,0x48, 0x7,0x53,0x6d, 0x5,0x70,0x47, 0x4,0x68,0x74,\n  0x5,0x70,0x49, 0x7,0x58,0x3b, 0x7,0x5b,0x76, 0x7,0x5b,0x78,\n  0x7,0x5b,0x77, 0x5,0x77,0x6a, 0x7,0x5e,0x7a, 0xf,0x6b,0x55,\n  0x7,0x61,0x24, 0x7,0x63,0x59, 0xf,0x28,0x23, 0x6,0x4b,0x46,\n  0x6,0x5e,0x72, 0x5,0x21,0x4c, 0x6,0x25,0x38, 0x6,0x23,0x33,\n  0x6,0x28,0x5f, 0x5,0x24,0x61, 0x4,0x24,0x5d, 0x4,0x24,0x5c,\n  0x6,0x28,0x61, 0x6,0x28,0x60, 0xf,0x24,0x79, 0x5,0x24,0x60,\n  0x5,0x27,0x30, 0x6,0x2d,0x25, 0x4,0x27,0x3c, 0x5,0x2a,0x41,\n  0xf,0x28,0x25, 0xf,0x28,0x26, 0xf,0x28,0x27, 0xf,0x28,0x28,\n  0xf,0x28,0x29, 0x6,0x2d,0x23, 0xf,0x2c,0x40, 0xf,0x28,0x24,\n  0x6,0x2d,0x22, 0xf,0x2c,0x3c, 0x6,0x32,0x69, 0x5,0x2a,0x45,\n  0x5,0x2a,0x42, 0x4,0x2a,0x36, 0x6,0x32,0x6b, 0x6,0x2f,0x69,\n  0xf,0x2c,0x2f, 0xf,0x2c,0x30, 0xf,0x2c,0x31, 0xf,0x2c,0x33,\n  0xf,0x2c,0x34, 0xf,0x2c,0x35, 0xf,0x2c,0x36, 0xf,0x2c,0x37,\n  0xf,0x2c,0x38, 0xf,0x2c,0x3a, 0xf,0x2c,0x3b, 0xf,0x2c,0x3d,\n  0x6,0x32,0x6a, 0x6,0x32,0x6c, 0xf,0x2c,0x3e, 0xf,0x2c,0x3f,\n  0xf,0x2c,0x2e, 0x5,0x2a,0x44, 0x5,0x2a,0x43, 0x6,0x39,0x53,\n  0x5,0x33,0x56, 0x5,0x2e,0x61, 0x4,0x2e,0x29, 0x6,0x39,0x51,\n  0x4,0x2e,0x28, 0x6,0x39,0x52, 0x6,0x39,0x54, 0xf,0x30,0x79,\n  0xf,0x30,0x7a, 0xf,0x30,0x7b, 0xf,0x30,0x7c, 0xf,0x30,0x7d,\n  0xf,0x30,0x7e, 0xf,0x31,0x21, 0xf,0x31,0x23, 0xf,0x31,0x24,\n  0xf,0x31,0x25, 0xf,0x31,0x26, 0x6,0x39,0x50, 0xf,0x36,0x63,\n  0x4,0x33,0x31, 0x6,0x39,0x55, 0x6,0x41,0x7a, 0x5,0x33,0x57,\n  0x6,0x41,0x7b, 0x4,0x33,0x32, 0x6,0x41,0x77, 0x6,0x41,0x78,\n  0x6,0x41,0x79, 0xf,0x31,0x22, 0xf,0x36,0x56, 0xf,0x36,0x58,\n  0xf,0x36,0x5c, 0xf,0x36,0x5f, 0xf,0x36,0x60, 0xf,0x36,0x61,\n  0xf,0x36,0x62, 0xf,0x36,0x64, 0xf,0x36,0x5d, 0x6,0x41,0x7c,\n  0xf,0x36,0x5b, 0xf,0x36,0x5a, 0xf,0x36,0x5e, 0x5,0x33,0x58,\n  0x6,0x41,0x76, 0xf,0x3d,0x3e, 0xf,0x3d,0x34, 0x6,0x4b,0x4b,\n  0x5,0x3a,0x2b, 0x5,0x3a,0x2a, 0x5,0x3a,0x2c, 0x6,0x55,0x29,\n  0x4,0x3e,0x5a, 0x5,0x40,0x4d, 0xf,0x3d,0x38, 0x4,0x38,0x7c,\n  0x6,0x4b,0x49, 0x6,0x4b,0x4c, 0xf,0x3d,0x2c, 0xf,0x3d,0x2d,\n  0xf,0x3d,0x2e, 0xf,0x3d,0x2f, 0xf,0x3d,0x30, 0xf,0x3d,0x32,\n  0xf,0x3d,0x35, 0xf,0x3d,0x36, 0xf,0x3d,0x37, 0xf,0x3d,0x39,\n  0xf,0x3d,0x3a, 0xf,0x3d,0x3f, 0xf,0x43,0x50, 0x6,0x4b,0x4e,\n  0x6,0x55,0x32, 0x6,0x4b,0x4d, 0xf,0x3d,0x40, 0x6,0x4b,0x48,\n  0x6,0x4b,0x4a, 0x6,0x55,0x2a, 0xf,0x3d,0x33, 0xf,0x3d,0x3d,\n  0xf,0x3d,0x31, 0x5,0x3a,0x29, 0x6,0x55,0x2b, 0x6,0x55,0x30,\n  0x4,0x3e,0x5b, 0x6,0x55,0x31, 0x6,0x55,0x2f, 0x6,0x55,0x2e,\n  0x5,0x47,0x3e, 0xf,0x43,0x47, 0xf,0x43,0x4a, 0xf,0x43,0x4c,\n  0xf,0x43,0x4d, 0xf,0x43,0x4e, 0xf,0x43,0x4f, 0xf,0x43,0x51,\n  0xf,0x43,0x52, 0xf,0x43,0x53, 0xf,0x43,0x54, 0xf,0x43,0x55,\n  0xf,0x43,0x57, 0xf,0x43,0x58, 0xf,0x43,0x5a, 0xf,0x43,0x5b,\n  0xf,0x43,0x5c, 0xf,0x43,0x5d, 0xf,0x43,0x5e, 0xf,0x43,0x5f,\n  0xf,0x43,0x60, 0xf,0x43,0x61, 0xf,0x43,0x62, 0xf,0x43,0x63,\n  0xf,0x43,0x65, 0x6,0x55,0x2c, 0x5,0x40,0x4f, 0x5,0x3a,0x2e,\n  0xf,0x43,0x4b, 0xf,0x43,0x48, 0x5,0x47,0x3f, 0x6,0x55,0x2d,\n  0xf,0x43,0x59, 0xf,0x49,0x7a, 0xf,0x49,0x7b, 0xf,0x4a,0x26,\n  0x7,0x25,0x38, 0x6,0x5e,0x74, 0x5,0x47,0x41, 0x7,0x25,0x36,\n  0x4,0x44,0x6d, 0x5,0x47,0x40, 0x6,0x5e,0x75, 0x6,0x5e,0x77,\n  0x6,0x5e,0x76, 0x6,0x5e,0x73, 0xf,0x49,0x71, 0xf,0x49,0x72,\n  0xf,0x49,0x73, 0xf,0x49,0x74, 0xf,0x49,0x75, 0xf,0x49,0x77,\n  0xf,0x49,0x78, 0xf,0x49,0x79, 0xf,0x49,0x7c, 0xf,0x49,0x7d,\n  0xf,0x49,0x7e, 0xf,0x4a,0x21, 0xf,0x4a,0x22, 0xf,0x4a,0x24,\n  0xf,0x4a,0x25, 0xf,0x4a,0x27, 0xf,0x4a,0x28, 0xf,0x4a,0x29,\n  0x5,0x47,0x42, 0x3,0x48,0x26, 0x7,0x25,0x39, 0xf,0x4a,0x23,\n  0x7,0x25,0x40, 0x4,0x4a,0x7e, 0x5,0x4e,0x47, 0x7,0x2f,0x7b,\n  0x7,0x25,0x3a, 0x7,0x2f,0x7a, 0x7,0x25,0x3c, 0x7,0x25,0x3f,\n  0x7,0x25,0x41, 0x7,0x25,0x42, 0xf,0x50,0x41, 0xf,0x50,0x42,\n  0xf,0x50,0x43, 0xf,0x50,0x44, 0xf,0x50,0x45, 0xf,0x50,0x46,\n  0xf,0x50,0x48, 0xf,0x50,0x49, 0xf,0x50,0x4a, 0xf,0x50,0x4b,\n  0xf,0x50,0x4c, 0x7,0x25,0x3d, 0x5,0x4e,0x48, 0x7,0x25,0x3b,\n  0x5,0x4e,0x49, 0xf,0x55,0x7c, 0xf,0x56,0x2e, 0xf,0x50,0x47,\n  0x7,0x30,0x22, 0x7,0x25,0x3e, 0x5,0x55,0x58, 0x5,0x55,0x5b,\n  0x5,0x55,0x59, 0x4,0x51,0x3b, 0x7,0x30,0x24, 0x7,0x2f,0x7d,\n  0x7,0x2f,0x7e, 0x7,0x2f,0x7c, 0x4,0x51,0x3c, 0x7,0x30,0x21,\n  0xf,0x55,0x78, 0xf,0x55,0x79, 0xf,0x55,0x7b, 0xf,0x55,0x7d,\n  0xf,0x56,0x23, 0xf,0x56,0x24, 0xf,0x56,0x25, 0xf,0x56,0x26,\n  0xf,0x56,0x27, 0xf,0x56,0x29, 0xf,0x56,0x2d, 0xf,0x56,0x2f,\n  0x7,0x30,0x25, 0x7,0x30,0x23, 0x7,0x39,0x36, 0xf,0x56,0x30,\n  0xf,0x56,0x21, 0xf,0x56,0x28, 0x5,0x55,0x5c, 0x5,0x55,0x5a,\n  0xf,0x56,0x2c, 0x7,0x39,0x3b, 0x7,0x39,0x3d, 0x5,0x5c,0x2d,\n  0x5,0x5c,0x2b, 0x7,0x40,0x5e, 0x7,0x39,0x39, 0x4,0x5b,0x6a,\n  0x4,0x56,0x6e, 0x4,0x56,0x70, 0x7,0x39,0x38, 0xf,0x5b,0x2e,\n  0xf,0x5b,0x2f, 0xf,0x5b,0x30, 0xf,0x5b,0x31, 0xf,0x5b,0x32,\n  0xf,0x5b,0x33, 0xf,0x5b,0x34, 0xf,0x5b,0x35, 0x5,0x5c,0x2c,\n  0x7,0x39,0x3a, 0x7,0x39,0x3c, 0x7,0x39,0x37, 0x7,0x40,0x5f,\n  0x5,0x68,0x3c, 0x4,0x5b,0x6b, 0x5,0x62,0x57, 0x4,0x60,0x26,\n  0x7,0x40,0x60, 0x4,0x60,0x28, 0xf,0x5f,0x51, 0xf,0x5f,0x53,\n  0xf,0x5f,0x54, 0xf,0x5f,0x55, 0xf,0x5f,0x57, 0xf,0x5f,0x59,\n  0xf,0x5f,0x5a, 0xf,0x5f,0x5b, 0xf,0x5f,0x5c, 0xf,0x5f,0x5f,\n  0x7,0x40,0x61, 0x7,0x40,0x62, 0xf,0x5f,0x50, 0xf,0x5f,0x52,\n  0xf,0x5f,0x58, 0xf,0x63,0x23, 0x7,0x47,0x7c, 0x7,0x47,0x7b,\n  0x5,0x68,0x3e, 0x7,0x47,0x7a, 0x7,0x4e,0x43, 0x5,0x68,0x3d,\n  0x7,0x47,0x79, 0xf,0x62,0x7c, 0xf,0x62,0x7e, 0xf,0x63,0x21,\n  0xf,0x63,0x22, 0x4,0x60,0x29, 0xf,0x62,0x79, 0xf,0x62,0x7a,\n  0xf,0x62,0x7d, 0x7,0x53,0x6f, 0x5,0x6c,0x57, 0x4,0x66,0x52,\n  0xf,0x65,0x52, 0xf,0x65,0x53, 0xf,0x65,0x54, 0xf,0x65,0x55,\n  0x7,0x4e,0x44, 0x7,0x53,0x6e, 0xf,0x5f,0x5e, 0x4,0x66,0x51,\n  0x7,0x55,0x7c, 0x4,0x66,0x53, 0x7,0x58,0x3c, 0xf,0x67,0x76,\n  0x7,0x5b,0x79, 0x4,0x6a,0x52, 0xf,0x69,0x59, 0xf,0x69,0x5a,\n  0x5,0x76,0x24, 0xf,0x6a,0x61, 0xf,0x6a,0x63, 0xf,0x6b,0x56,\n  0xf,0x6a,0x62, 0x5,0x79,0x31, 0x7,0x61,0x26, 0x7,0x61,0x25,\n  0xf,0x6c,0x32, 0x5,0x7a,0x2c, 0x4,0x6e,0x34, 0x6,0x2d,0x26,\n  0x5,0x2a,0x47, 0x5,0x2a,0x46, 0x6,0x32,0x6d, 0xf,0x2c,0x41,\n  0x6,0x32,0x6e, 0x6,0x39,0x56, 0x5,0x2e,0x63, 0x5,0x2e,0x64,\n  0x6,0x39,0x57, 0x6,0x39,0x58, 0x4,0x33,0x36, 0x5,0x33,0x59,\n  0x5,0x33,0x5a, 0xf,0x36,0x65, 0x5,0x3a,0x2f, 0x5,0x3a,0x30,\n  0x6,0x4b,0x4f, 0xf,0x3d,0x41, 0x6,0x4b,0x50, 0x4,0x3e,0x5c,\n  0x5,0x40,0x50, 0x5,0x40,0x51, 0xf,0x43,0x66, 0x7,0x25,0x45,\n  0x6,0x5e,0x78, 0x5,0x47,0x43, 0xf,0x4a,0x2a, 0x5,0x47,0x44,\n  0x7,0x25,0x44, 0x7,0x30,0x26, 0x4,0x51,0x3d, 0x5,0x4e,0x4a,\n  0xf,0x50,0x4d, 0x7,0x25,0x43, 0x4,0x51,0x3e, 0x7,0x39,0x3e,\n  0x5,0x62,0x58, 0xf,0x5f,0x60, 0x4,0x5b,0x6d, 0x4,0x66,0x54,\n  0x7,0x53,0x70, 0x5,0x70,0x4a, 0x5,0x76,0x25, 0x7,0x5b,0x7a,\n  0x7,0x5e,0x7b, 0x7,0x62,0x3b, 0x7,0x62,0x3c, 0x5,0x24,0x62,\n  0x5,0x27,0x31, 0x4,0x27,0x3d, 0x6,0x2d,0x27, 0x5,0x2a,0x48,\n  0x5,0x2a,0x49, 0x6,0x32,0x6f, 0x4,0x2a,0x3b, 0x4,0x2a,0x3e,\n  0x5,0x2e,0x65, 0x5,0x2e,0x67, 0x6,0x39,0x5c, 0x5,0x2e,0x66,\n  0xf,0x31,0x29, 0x6,0x39,0x5b, 0x6,0x39,0x59, 0x6,0x39,0x5a,\n  0x5,0x33,0x5d, 0x6,0x42,0x22, 0x6,0x41,0x7e, 0x6,0x42,0x24,\n  0x5,0x33,0x5e, 0x6,0x42,0x23, 0x5,0x33,0x5c, 0xf,0x36,0x66,\n  0xf,0x36,0x68, 0x4,0x39,0x22, 0x5,0x3a,0x31, 0x6,0x55,0x36,\n  0x4,0x39,0x27, 0x5,0x3a,0x34, 0x5,0x3a,0x33, 0x5,0x33,0x5f,\n  0x6,0x4b,0x52, 0x5,0x3a,0x32, 0x5,0x33,0x5b, 0x6,0x4b,0x51,\n  0x6,0x4b,0x53, 0x4,0x3e,0x64, 0x5,0x40,0x52, 0x6,0x55,0x37,\n  0x4,0x3e,0x5e, 0x5,0x40,0x53, 0x6,0x55,0x33, 0x6,0x55,0x35,\n  0x4,0x3e,0x5f, 0x6,0x55,0x38, 0xf,0x43,0x67, 0x6,0x55,0x34,\n  0x5,0x47,0x47, 0x6,0x5e,0x7c, 0x5,0x47,0x45, 0x6,0x5e,0x7a,\n  0x4,0x44,0x72, 0x6,0x5e,0x79, 0x6,0x5e,0x7b, 0x5,0x47,0x46,\n  0x4,0x4b,0x28, 0x7,0x25,0x4a, 0x5,0x4e,0x4c, 0x5,0x4e,0x4d,\n  0x5,0x4e,0x4e, 0x7,0x25,0x46, 0x7,0x25,0x47, 0x7,0x25,0x49,\n  0x7,0x30,0x27, 0x4,0x56,0x74, 0x7,0x30,0x28, 0x5,0x55,0x5f,\n  0x5,0x55,0x61, 0x4,0x51,0x40, 0x5,0x55,0x60, 0x5,0x55,0x5e,\n  0x4,0x56,0x76, 0x5,0x5c,0x2e, 0x4,0x56,0x77, 0x7,0x39,0x40,\n  0x7,0x39,0x3f, 0x5,0x4e,0x4b, 0x4,0x5b,0x70, 0x5,0x62,0x5b,\n  0x5,0x62,0x5a, 0x7,0x40,0x64, 0x5,0x62,0x59, 0x7,0x40,0x65,\n  0x5,0x68,0x3f, 0x7,0x4e,0x45, 0x7,0x53,0x71, 0x7,0x53,0x72,\n  0x4,0x66,0x56, 0x5,0x70,0x4b, 0x4,0x66,0x55, 0x7,0x53,0x73,\n  0x4,0x68,0x76, 0x7,0x58,0x3d, 0x5,0x73,0x5a, 0x5,0x76,0x28,\n  0x5,0x76,0x27, 0x7,0x5b,0x7b, 0x5,0x76,0x26, 0x7,0x5c,0x6b,\n  0x5,0x7a,0x6c, 0x7,0x65,0x38, 0x6,0x23,0x34, 0x6,0x2d,0x28,\n  0x5,0x27,0x33, 0x4,0x27,0x3e, 0xf,0x28,0x2b, 0x6,0x32,0x70,\n  0xf,0x2c,0x43, 0x5,0x40,0x54, 0x6,0x5e,0x7d, 0x7,0x30,0x2b,\n  0x7,0x30,0x29, 0x7,0x30,0x2a, 0x4,0x56,0x79, 0x7,0x40,0x66,\n  0x5,0x70,0x4c, 0x6,0x23,0x35, 0x6,0x25,0x39, 0x6,0x2d,0x29,\n  0x5,0x27,0x34, 0x6,0x2d,0x2a, 0xf,0x2c,0x44, 0xf,0x2c,0x45,\n  0x5,0x2a,0x4a, 0x4,0x2a,0x3f, 0x6,0x32,0x71, 0x6,0x34,0x79,\n  0x5,0x2e,0x69, 0x6,0x42,0x26, 0x5,0x33,0x60, 0x6,0x42,0x25,\n  0x6,0x42,0x27, 0xf,0x36,0x69, 0x6,0x55,0x39, 0x6,0x4b,0x54,\n  0xf,0x3d,0x43, 0xf,0x3d,0x42, 0x6,0x55,0x3b, 0xf,0x43,0x68,\n  0x6,0x55,0x3a, 0x6,0x5e,0x7e, 0x7,0x25,0x4b, 0xf,0x4a,0x2b,\n  0x4,0x56,0x7a, 0xf,0x5b,0x36, 0xf,0x63,0x26, 0x7,0x46,0x6e,\n  0xf,0x63,0x25, 0x7,0x53,0x74, 0x6,0x25,0x3a, 0xf,0x24,0x7a,\n  0x5,0x27,0x35, 0x6,0x2d,0x2e, 0x6,0x39,0x5d, 0x5,0x33,0x61,\n  0xf,0x4a,0x2c, 0xf,0x5f,0x61, 0x7,0x47,0x7d, 0xf,0x6c,0x33,\n  0x5,0x73,0x5b, 0x4,0x24,0x5f, 0xf,0x24,0x7c, 0xf,0x24,0x7b,\n  0x6,0x28,0x63, 0x4,0x27,0x42, 0x4,0x25,0x53, 0x4,0x27,0x3f,\n  0x5,0x27,0x36, 0x6,0x2d,0x31, 0x6,0x2d,0x30, 0x6,0x2d,0x33,\n  0xf,0x28,0x2c, 0xf,0x28,0x2d, 0x6,0x2d,0x2f, 0x4,0x2a,0x42,\n  0x5,0x2a,0x4d, 0x6,0x32,0x74, 0x5,0x2a,0x4c, 0x6,0x32,0x73,\n  0x5,0x2a,0x4b, 0x6,0x32,0x76, 0x6,0x32,0x7a, 0x6,0x32,0x77,\n  0x6,0x39,0x65, 0x5,0x2a,0x4e, 0x6,0x32,0x78, 0x6,0x32,0x75,\n  0x5,0x2e,0x6e, 0xf,0x2c,0x46, 0xf,0x2c,0x47, 0xf,0x2c,0x48,\n  0xf,0x2c,0x49, 0xf,0x2c,0x4b, 0xf,0x2c,0x4c, 0xf,0x2c,0x4d,\n  0xf,0x2c,0x4e, 0xf,0x2c,0x4f, 0x5,0x2a,0x4f, 0x5,0x2e,0x6a,\n  0x4,0x2e,0x2e, 0x5,0x2e,0x6b, 0x6,0x39,0x61, 0x6,0x39,0x60,\n  0x6,0x39,0x62, 0x6,0x39,0x5f, 0x6,0x39,0x63, 0xf,0x31,0x2a,\n  0xf,0x31,0x2b, 0xf,0x31,0x2c, 0xf,0x31,0x2e, 0x4,0x2e,0x30,\n  0xf,0x31,0x2d, 0x5,0x2e,0x6d, 0x5,0x2e,0x6c, 0x4,0x33,0x3e,\n  0x6,0x42,0x28, 0x5,0x33,0x63, 0x5,0x33,0x62, 0x4,0x33,0x3d,\n  0x6,0x42,0x2c, 0x6,0x42,0x2f, 0x6,0x42,0x2a, 0x6,0x42,0x2d,\n  0x6,0x42,0x2e, 0xf,0x36,0x6b, 0xf,0x36,0x6c, 0x6,0x42,0x2b,\n  0x6,0x42,0x29, 0x6,0x41,0x6b, 0x4,0x39,0x2b, 0x4,0x39,0x29,\n  0x4,0x39,0x2a, 0x6,0x4b,0x57, 0x6,0x4b,0x59, 0xf,0x36,0x6a,\n  0xf,0x3d,0x46, 0xf,0x3d,0x47, 0xf,0x3d,0x48, 0x6,0x4b,0x58,\n  0x4,0x39,0x2d, 0x6,0x4b,0x55, 0xf,0x3d,0x44, 0xf,0x3d,0x45,\n  0x6,0x55,0x40, 0x4,0x3e,0x6a, 0x4,0x3e,0x67, 0x6,0x55,0x3e,\n  0x6,0x55,0x3f, 0x4,0x3e,0x66, 0x5,0x40,0x56, 0x6,0x55,0x3c,\n  0x6,0x55,0x42, 0x5,0x40,0x55, 0x6,0x55,0x43, 0x6,0x55,0x44,\n  0x6,0x55,0x41, 0xf,0x43,0x69, 0xf,0x43,0x6a, 0x5,0x40,0x57,\n  0x6,0x55,0x3d, 0x6,0x5f,0x23, 0x4,0x44,0x7a, 0x5,0x47,0x4a,\n  0x6,0x5f,0x22, 0x6,0x5f,0x25, 0x6,0x5f,0x28, 0xf,0x4a,0x2d,\n  0x6,0x5f,0x26, 0x6,0x5f,0x24, 0x6,0x5f,0x27, 0x7,0x25,0x50,\n  0x4,0x4b,0x2c, 0x7,0x25,0x4c, 0x7,0x25,0x4e, 0x7,0x25,0x4d,\n  0x7,0x25,0x4f, 0x5,0x4e,0x4f, 0x7,0x25,0x51, 0xf,0x50,0x4f,\n  0x4,0x4b,0x2b, 0x4,0x51,0x45, 0x4,0x51,0x43, 0x4,0x51,0x46,\n  0x7,0x30,0x2c, 0x5,0x55,0x62, 0xf,0x56,0x32, 0x7,0x2c,0x3b,\n  0x7,0x39,0x41, 0x5,0x5c,0x33, 0x7,0x39,0x43, 0x5,0x5c,0x31,\n  0x4,0x56,0x7b, 0x7,0x39,0x42, 0x5,0x5c,0x34, 0xf,0x5b,0x37,\n  0x7,0x3c,0x76, 0x5,0x5c,0x30, 0x5,0x5c,0x32, 0xf,0x56,0x31,\n  0x4,0x5b,0x71, 0x7,0x47,0x7e, 0x5,0x68,0x41, 0x7,0x48,0x23,\n  0x7,0x4e,0x46, 0x7,0x48,0x21, 0x7,0x48,0x24, 0x4,0x60,0x2d,\n  0x7,0x48,0x22, 0x7,0x4e,0x48, 0x7,0x4e,0x47, 0x7,0x53,0x77,\n  0xf,0x67,0x77, 0x7,0x53,0x75, 0x7,0x53,0x76, 0xf,0x67,0x52,\n  0x7,0x58,0x3e, 0x4,0x68,0x77, 0x7,0x53,0x78, 0x7,0x5b,0x7d,\n  0xf,0x6a,0x64, 0x7,0x5b,0x7c, 0x7,0x5e,0x7c, 0x7,0x62,0x3e,\n  0x7,0x62,0x3d, 0x7,0x63,0x5a, 0x7,0x63,0x5c, 0x7,0x63,0x5b,\n  0x7,0x66,0x29, 0x7,0x66,0x35, 0x7,0x66,0x46, 0x6,0x23,0x36,\n  0x6,0x25,0x3b, 0xf,0x28,0x2e, 0x4,0x2e,0x32, 0x5,0x2a,0x50,\n  0x4,0x39,0x2e, 0x6,0x55,0x46, 0x6,0x55,0x45, 0x6,0x5f,0x29,\n  0x5,0x55,0x63, 0x7,0x30,0x2e, 0x7,0x25,0x52, 0x7,0x58,0x3f,\n  0x5,0x22,0x7c, 0x5,0x24,0x64, 0x5,0x24,0x65, 0x4,0x24,0x60,\n  0x6,0x28,0x66, 0x6,0x28,0x67, 0x6,0x28,0x65, 0x6,0x28,0x68,\n  0x4,0x27,0x45, 0x6,0x2d,0x35, 0x4,0x27,0x44, 0xf,0x28,0x2f,\n  0x5,0x27,0x38, 0x6,0x2d,0x36, 0x6,0x32,0x7d, 0x4,0x2a,0x4b,\n  0x6,0x32,0x7c, 0x6,0x32,0x7b, 0x5,0x2a,0x52, 0x5,0x2a,0x56,\n  0x4,0x2a,0x47, 0x4,0x2a,0x48, 0x5,0x2a,0x53, 0x4,0x2a,0x45,\n  0x5,0x2a,0x54, 0x5,0x2a,0x51, 0x5,0x2a,0x55, 0x6,0x33,0x24,\n  0xf,0x2c,0x50, 0x6,0x32,0x7e, 0xf,0x2c,0x51, 0x6,0x33,0x22,\n  0x6,0x33,0x23, 0x6,0x33,0x21, 0x6,0x39,0x69, 0x5,0x2e,0x6f,\n  0x5,0x2e,0x73, 0x6,0x39,0x6f, 0x5,0x2e,0x71, 0x6,0x39,0x70,\n  0x6,0x39,0x6a, 0x5,0x2e,0x76, 0x5,0x2e,0x72, 0x5,0x2e,0x75,\n  0x6,0x39,0x6d, 0x6,0x39,0x71, 0x6,0x39,0x66, 0x4,0x2e,0x3d,\n  0x5,0x2e,0x74, 0x6,0x39,0x68, 0x4,0x2e,0x3e, 0x5,0x2e,0x70,\n  0x6,0x39,0x6e, 0xf,0x31,0x2f, 0x6,0x39,0x67, 0x6,0x39,0x6c,\n  0x6,0x42,0x31, 0x6,0x42,0x37, 0x5,0x33,0x68, 0x6,0x42,0x35,\n  0x5,0x33,0x6b, 0x4,0x33,0x41, 0x5,0x33,0x6a, 0x5,0x33,0x66,\n  0x6,0x42,0x33, 0x4,0x33,0x44, 0x5,0x33,0x69, 0xf,0x36,0x6d,\n  0xf,0x36,0x6e, 0xf,0x36,0x6f, 0x6,0x42,0x36, 0x6,0x42,0x39,\n  0x6,0x42,0x34, 0x6,0x42,0x38, 0xf,0x36,0x70, 0x6,0x42,0x30,\n  0x5,0x33,0x67, 0x5,0x33,0x6c, 0x5,0x3a,0x36, 0x5,0x3a,0x3f,\n  0x6,0x4b,0x61, 0x5,0x3a,0x35, 0x6,0x4b,0x65, 0x5,0x3a,0x39,\n  0x5,0x3a,0x3a, 0x5,0x3a,0x3c, 0x5,0x3a,0x37, 0x6,0x4b,0x63,\n  0x6,0x4b,0x5f, 0x5,0x3a,0x40, 0x6,0x4b,0x62, 0x6,0x4b,0x5b,\n  0x6,0x4b,0x66, 0x5,0x3a,0x3e, 0x6,0x4b,0x5e, 0x4,0x39,0x39,\n  0x6,0x4b,0x5d, 0x6,0x4b,0x60, 0x6,0x4b,0x64, 0xf,0x3d,0x49,\n  0xf,0x3d,0x4a, 0x4,0x39,0x37, 0x6,0x4b,0x5c, 0x4,0x39,0x31,\n  0x5,0x3a,0x38, 0x6,0x55,0x4c, 0x4,0x3e,0x72, 0x4,0x3e,0x70,\n  0x4,0x3e,0x7b, 0x5,0x40,0x59, 0x4,0x3e,0x71, 0x4,0x3e,0x75,\n  0x4,0x44,0x7d, 0x4,0x3e,0x79, 0x6,0x55,0x49, 0x5,0x40,0x5a,\n  0x5,0x40,0x5c, 0x5,0x40,0x62, 0x4,0x3e,0x7c, 0x6,0x55,0x47,\n  0x5,0x40,0x61, 0x6,0x55,0x4d, 0x5,0x40,0x65, 0x5,0x40,0x63,\n  0x5,0x40,0x5b, 0x5,0x3a,0x3d, 0x5,0x40,0x5f, 0x5,0x40,0x5e,\n  0x6,0x55,0x4b, 0x6,0x55,0x4a, 0x4,0x3e,0x7d, 0xf,0x43,0x6b,\n  0xf,0x43,0x6c, 0x6,0x55,0x48, 0x6,0x55,0x4e, 0x5,0x40,0x58,\n  0x5,0x40,0x66, 0x5,0x40,0x5d, 0x5,0x47,0x58, 0x5,0x47,0x50,\n  0x4,0x45,0x25, 0x4,0x45,0x2b, 0x5,0x47,0x4b, 0x5,0x47,0x4f,\n  0x4,0x45,0x26, 0x6,0x5f,0x2f, 0x6,0x5f,0x2a, 0x4,0x45,0x2e,\n  0x4,0x45,0x2a, 0x6,0x5f,0x2b, 0x6,0x5f,0x34, 0x5,0x47,0x4d,\n  0x5,0x47,0x4e, 0x5,0x47,0x53, 0x4,0x45,0x2c, 0x6,0x5f,0x37,\n  0x6,0x5f,0x35, 0x5,0x47,0x5a, 0x6,0x5f,0x2e, 0x4,0x45,0x27,\n  0x4,0x45,0x22, 0x5,0x47,0x51, 0x5,0x47,0x52, 0x6,0x5f,0x33,\n  0x5,0x47,0x4c, 0x5,0x47,0x56, 0x6,0x5f,0x31, 0x6,0x5f,0x30,\n  0xf,0x4a,0x2e, 0x6,0x5f,0x38, 0x6,0x5f,0x2c, 0x4,0x45,0x2d,\n  0x6,0x5f,0x32, 0x6,0x5f,0x36, 0x5,0x47,0x55, 0x4,0x4b,0x3a,\n  0x4,0x4b,0x36, 0x4,0x4b,0x2d, 0x4,0x4b,0x39, 0x5,0x4e,0x53,\n  0x4,0x4b,0x34, 0x7,0x25,0x5d, 0x4,0x4b,0x32, 0x5,0x4e,0x55,\n  0x5,0x4e,0x57, 0x5,0x4e,0x54, 0x4,0x4b,0x31, 0x7,0x25,0x55,\n  0x4,0x4b,0x30, 0x5,0x4e,0x51, 0x5,0x4e,0x52, 0x7,0x25,0x53,\n  0x5,0x47,0x57, 0x5,0x4e,0x58, 0x7,0x25,0x54, 0x7,0x25,0x5b,\n  0x7,0x25,0x59, 0xf,0x50,0x50, 0xf,0x50,0x51, 0xf,0x50,0x52,\n  0xf,0x50,0x53, 0xf,0x50,0x54, 0x7,0x25,0x56, 0x7,0x25,0x5a,\n  0x7,0x25,0x5e, 0x5,0x4e,0x56, 0x5,0x4e,0x50, 0x4,0x51,0x4b,\n  0x5,0x55,0x65, 0x7,0x30,0x2f, 0x7,0x30,0x30, 0x5,0x55,0x6c,\n  0x5,0x55,0x6d, 0x4,0x51,0x4c, 0x4,0x51,0x47, 0x5,0x55,0x68,\n  0x7,0x30,0x35, 0x5,0x55,0x66, 0x5,0x55,0x67, 0x5,0x55,0x6b,\n  0x7,0x30,0x31, 0x7,0x30,0x37, 0x5,0x55,0x6e, 0xf,0x56,0x34,\n  0xf,0x56,0x35, 0x7,0x30,0x34, 0x7,0x30,0x33, 0x5,0x55,0x6a,\n  0x7,0x30,0x32, 0x7,0x30,0x38, 0x7,0x30,0x39, 0x5,0x55,0x64,\n  0x7,0x25,0x57, 0x4,0x56,0x7c, 0x5,0x5c,0x39, 0x5,0x55,0x70,\n  0x7,0x39,0x50, 0x4,0x51,0x51, 0x4,0x45,0x29, 0x4,0x56,0x7e,\n  0x7,0x39,0x47, 0x5,0x5c,0x35, 0x7,0x39,0x48, 0x5,0x5c,0x3c,\n  0x5,0x5c,0x3a, 0x5,0x5c,0x3d, 0x7,0x39,0x4f, 0x7,0x40,0x6a,\n  0x5,0x55,0x6f, 0x5,0x5c,0x37, 0x4,0x56,0x7d, 0x5,0x5c,0x38,\n  0x4,0x57,0x23, 0x7,0x39,0x49, 0x7,0x39,0x4d, 0x7,0x39,0x51,\n  0x7,0x39,0x4b, 0x7,0x39,0x46, 0x7,0x39,0x4c, 0xf,0x5b,0x38,\n  0x7,0x39,0x44, 0x7,0x39,0x45, 0x7,0x39,0x4e, 0x5,0x5c,0x3b,\n  0x5,0x62,0x5c, 0x5,0x5c,0x3e, 0x7,0x39,0x4a, 0x4,0x5b,0x78,\n  0x5,0x5c,0x40, 0x5,0x62,0x60, 0x7,0x40,0x68, 0x5,0x62,0x65,\n  0x7,0x40,0x69, 0x5,0x62,0x61, 0x5,0x62,0x64, 0x4,0x5b,0x76,\n  0x5,0x5c,0x3f, 0x5,0x62,0x5d, 0x5,0x62,0x62, 0x5,0x62,0x5e,\n  0x5,0x62,0x5f, 0x4,0x5b,0x7a, 0x7,0x40,0x6d, 0x5,0x62,0x63,\n  0x7,0x48,0x2b, 0x4,0x60,0x33, 0x7,0x48,0x27, 0x4,0x60,0x34,\n  0x5,0x68,0x44, 0x4,0x60,0x35, 0x7,0x48,0x26, 0x5,0x68,0x43,\n  0x5,0x68,0x42, 0x4,0x60,0x36, 0xf,0x63,0x27, 0x4,0x60,0x31,\n  0x7,0x48,0x28, 0x7,0x48,0x29, 0x7,0x48,0x25, 0x7,0x48,0x2a,\n  0x7,0x40,0x6c, 0x4,0x63,0x6a, 0x4,0x63,0x6b, 0x7,0x4e,0x49,\n  0x7,0x4e,0x4d, 0x7,0x4e,0x4c, 0x5,0x6c,0x58, 0x5,0x6c,0x59,\n  0x7,0x4e,0x4e, 0x7,0x4e,0x4b, 0x7,0x4e,0x4a, 0x5,0x70,0x51,\n  0x5,0x70,0x50, 0x5,0x70,0x4e, 0x4,0x66,0x57, 0x7,0x53,0x7a,\n  0x5,0x70,0x4f, 0x7,0x53,0x79, 0xf,0x67,0x78, 0x5,0x73,0x5f,\n  0x5,0x73,0x5e, 0x5,0x73,0x5d, 0x7,0x5c,0x22, 0x7,0x5b,0x7e,\n  0x4,0x6a,0x56, 0x7,0x5c,0x21, 0x5,0x76,0x29, 0x5,0x77,0x6b,\n  0x7,0x5e,0x7d, 0x7,0x5e,0x7e, 0x7,0x61,0x42, 0x7,0x61,0x27,\n  0x7,0x62,0x3f, 0x7,0x62,0x40, 0x7,0x62,0x41, 0x5,0x7a,0x6d,\n  0x7,0x64,0x51, 0x7,0x65,0x39, 0x4,0x24,0x63, 0x6,0x33,0x25,\n  0xf,0x2c,0x52, 0x6,0x39,0x73, 0x6,0x39,0x72, 0xf,0x31,0x30,\n  0x6,0x42,0x3a, 0xf,0x36,0x71, 0x6,0x4b,0x69, 0x6,0x4b,0x67,\n  0x5,0x3a,0x41, 0x6,0x4b,0x68, 0x7,0x25,0x5f, 0x4,0x51,0x53,\n  0x4,0x51,0x52, 0x7,0x30,0x3a, 0x6,0x25,0x3c, 0x6,0x25,0x3d,\n  0x5,0x24,0x66, 0x5,0x27,0x3a, 0x5,0x27,0x3b, 0x5,0x27,0x39,\n  0x5,0x27,0x3c, 0x4,0x2a,0x4d, 0x5,0x2a,0x59, 0x5,0x2a,0x58,\n  0x5,0x2a,0x57, 0x6,0x33,0x27, 0x6,0x33,0x28, 0x6,0x33,0x26,\n  0xf,0x2c,0x53, 0xf,0x2c,0x54, 0x6,0x33,0x29, 0x5,0x2a,0x5a,\n  0x6,0x39,0x74, 0x4,0x2e,0x42, 0x6,0x39,0x75, 0x6,0x42,0x3c,\n  0xf,0x31,0x31, 0xf,0x31,0x32, 0xf,0x31,0x33, 0xf,0x31,0x35,\n  0xf,0x31,0x36, 0xf,0x36,0x75, 0x4,0x33,0x46, 0x5,0x33,0x6e,\n  0x6,0x42,0x3b, 0xf,0x36,0x72, 0xf,0x36,0x73, 0xf,0x36,0x76,\n  0x6,0x4b,0x6b, 0x6,0x4b,0x6c, 0x6,0x4b,0x6a, 0xf,0x36,0x74,\n  0x5,0x40,0x68, 0x5,0x40,0x67, 0x6,0x55,0x50, 0x4,0x3e,0x7e,\n  0x6,0x55,0x4f, 0x5,0x40,0x69, 0xf,0x43,0x6d, 0x4,0x45,0x2f,\n  0x6,0x5f,0x39, 0x6,0x5f,0x3a, 0xf,0x4a,0x30, 0xf,0x4a,0x31,\n  0xf,0x4a,0x33, 0xf,0x4a,0x34, 0xf,0x4a,0x32, 0x4,0x4b,0x3c,\n  0x7,0x25,0x60, 0x7,0x25,0x61, 0x5,0x55,0x72, 0x7,0x30,0x3c,\n  0x5,0x55,0x71, 0x7,0x30,0x3b, 0x4,0x57,0x27, 0x4,0x57,0x28,\n  0x5,0x5c,0x42, 0x5,0x5c,0x44, 0x7,0x40,0x6e, 0x5,0x5c,0x41,\n  0x7,0x39,0x52, 0x5,0x62,0x66, 0x7,0x40,0x6f, 0x7,0x40,0x70,\n  0x5,0x68,0x45, 0x5,0x68,0x46, 0x5,0x68,0x47, 0x5,0x68,0x48,\n  0x7,0x48,0x2c, 0x7,0x4e,0x50, 0x7,0x4e,0x4f, 0x5,0x62,0x67,\n  0x7,0x58,0x40, 0x7,0x58,0x41, 0xf,0x67,0x79, 0x7,0x5c,0x23,\n  0x4,0x6b,0x73, 0x7,0x5f,0x21, 0x7,0x65,0x3a, 0x5,0x24,0x67,\n  0x5,0x24,0x68, 0x6,0x2d,0x39, 0x6,0x2d,0x37, 0x6,0x2d,0x38,\n  0x5,0x27,0x3d, 0x6,0x33,0x2b, 0x5,0x2a,0x5b, 0x4,0x2a,0x4f,\n  0x6,0x30,0x36, 0x6,0x33,0x2a, 0x5,0x2e,0x77, 0x5,0x2e,0x78,\n  0x6,0x39,0x76, 0x6,0x39,0x7a, 0x5,0x33,0x6f, 0x4,0x2e,0x44,\n  0x6,0x39,0x77, 0x6,0x39,0x78, 0x6,0x39,0x79, 0x4,0x33,0x49,\n  0x5,0x33,0x70, 0x6,0x42,0x3e, 0xf,0x36,0x79, 0x6,0x42,0x3d,\n  0x4,0x39,0x3c, 0x6,0x4b,0x6d, 0x5,0x3a,0x42, 0x6,0x4b,0x6f,\n  0x4,0x39,0x3b, 0xf,0x3d,0x4b, 0x6,0x4b,0x6e, 0xf,0x36,0x78,\n  0x5,0x40,0x6a, 0x5,0x40,0x6d, 0x5,0x40,0x6b, 0x5,0x40,0x6c,\n  0x5,0x40,0x6e, 0x6,0x55,0x53, 0xf,0x43,0x6e, 0x6,0x55,0x51,\n  0x4,0x3f,0x21, 0x4,0x45,0x31, 0x4,0x45,0x33, 0x6,0x5f,0x3e,\n  0xf,0x4a,0x35, 0x6,0x5f,0x3d, 0x5,0x47,0x5c, 0x6,0x5f,0x3f,\n  0x6,0x5f,0x3b, 0x6,0x5f,0x3c, 0x7,0x25,0x63, 0x5,0x4e,0x5a,\n  0x5,0x4e,0x5b, 0x5,0x4e,0x5c, 0x7,0x25,0x62, 0x5,0x55,0x76,\n  0x5,0x55,0x78, 0x5,0x55,0x74, 0x4,0x51,0x58, 0x5,0x55,0x77,\n  0x5,0x55,0x75, 0xf,0x56,0x36, 0x5,0x55,0x73, 0x7,0x30,0x3d,\n  0x7,0x30,0x3e, 0x7,0x39,0x53, 0x7,0x30,0x3f, 0x4,0x57,0x29,\n  0x5,0x62,0x68, 0x7,0x40,0x72, 0x7,0x40,0x73, 0x7,0x40,0x74,\n  0x7,0x40,0x71, 0x5,0x68,0x4a, 0x5,0x68,0x49, 0x7,0x48,0x2d,\n  0x4,0x63,0x6d, 0x5,0x6c,0x5b, 0x5,0x6c,0x5a, 0x7,0x4e,0x51,\n  0x7,0x53,0x7c, 0x4,0x66,0x5c, 0x7,0x58,0x42, 0x5,0x77,0x6c,\n  0x5,0x77,0x6d, 0x7,0x63,0x44, 0x7,0x65,0x58, 0x6,0x28,0x69,\n  0xf,0x24,0x7d, 0x4,0x27,0x49, 0x5,0x27,0x3e, 0x4,0x27,0x47,\n  0x6,0x2d,0x3b, 0x5,0x27,0x3f, 0x5,0x2a,0x5e, 0x5,0x2a,0x5c,\n  0x5,0x2a,0x5d, 0x6,0x33,0x2d, 0x6,0x33,0x2c, 0xf,0x2c,0x55,\n  0x5,0x2e,0x79, 0x6,0x3a,0x21, 0x6,0x3a,0x23, 0x4,0x2e,0x48,\n  0x5,0x2e,0x7a, 0x6,0x39,0x7e, 0x6,0x39,0x7b, 0x4,0x2e,0x4a,\n  0x6,0x3a,0x22, 0xf,0x31,0x37, 0xf,0x31,0x38, 0x6,0x3a,0x24,\n  0x6,0x39,0x7c, 0x6,0x39,0x7d, 0x4,0x33,0x4c, 0x5,0x33,0x72,\n  0x4,0x33,0x4a, 0x6,0x42,0x3f, 0xf,0x36,0x7a, 0xf,0x36,0x7b,\n  0xf,0x36,0x7c, 0xf,0x36,0x7d, 0xf,0x37,0x21, 0xf,0x37,0x22,\n  0x6,0x42,0x40, 0x6,0x42,0x41, 0x6,0x3a,0x25, 0x6,0x4b,0x74,\n  0x6,0x4b,0x70, 0x5,0x3a,0x43, 0x4,0x39,0x3d, 0x6,0x4b,0x72,\n  0x6,0x4b,0x73, 0xf,0x3d,0x4c, 0xf,0x3d,0x4d, 0x6,0x4b,0x71,\n  0x6,0x55,0x54, 0x6,0x55,0x56, 0x5,0x40,0x70, 0x6,0x55,0x58,\n  0x6,0x55,0x57, 0x6,0x55,0x55, 0xf,0x43,0x6f, 0xf,0x43,0x70,\n  0x6,0x5f,0x41, 0x6,0x5f,0x40, 0x6,0x5f,0x4b, 0xf,0x4a,0x36,\n  0x5,0x4e,0x5d, 0x7,0x25,0x64, 0x7,0x25,0x65, 0xf,0x50,0x55,\n  0xf,0x50,0x56, 0xf,0x50,0x57, 0xf,0x50,0x58, 0xf,0x50,0x59,\n  0xf,0x50,0x5a, 0x4,0x51,0x59, 0x7,0x30,0x44, 0x4,0x51,0x5b,\n  0x7,0x30,0x40, 0x7,0x30,0x45, 0x5,0x55,0x7a, 0x5,0x55,0x79,\n  0xf,0x56,0x37, 0xf,0x56,0x38, 0xf,0x56,0x39, 0xf,0x56,0x3a,\n  0xf,0x56,0x3b, 0x7,0x30,0x43, 0x7,0x30,0x41, 0x4,0x57,0x2b,\n  0x4,0x5c,0x23, 0x4,0x57,0x2a, 0x7,0x39,0x54, 0x5,0x5c,0x47,\n  0x7,0x40,0x75, 0x5,0x5c,0x46, 0xf,0x5b,0x3b, 0xf,0x5b,0x3c,\n  0x7,0x39,0x55, 0x7,0x39,0x56, 0x7,0x36,0x79, 0x5,0x5c,0x45,\n  0x7,0x30,0x42, 0x7,0x39,0x57, 0x4,0x5c,0x22, 0x4,0x5c,0x21,\n  0x7,0x40,0x76, 0x7,0x40,0x78, 0x7,0x40,0x77, 0xf,0x5f,0x62,\n  0x7,0x40,0x79, 0x7,0x48,0x2e, 0x5,0x68,0x4b, 0x7,0x48,0x2f,\n  0xf,0x63,0x28, 0xf,0x63,0x29, 0x5,0x6c,0x5d, 0x7,0x4e,0x53,\n  0x5,0x6c,0x5c, 0x7,0x4e,0x55, 0xf,0x65,0x56, 0x7,0x4e,0x52,\n  0x7,0x4e,0x54, 0xf,0x67,0x7b, 0x7,0x58,0x44, 0x5,0x73,0x60,\n  0x7,0x58,0x43, 0x7,0x58,0x45, 0xf,0x67,0x7a, 0x7,0x5f,0x22,\n  0x5,0x76,0x2a, 0x7,0x5f,0x23, 0x7,0x62,0x42, 0x5,0x22,0x7d,\n  0xf,0x22,0x67, 0x6,0x28,0x6a, 0x4,0x24,0x64, 0x5,0x24,0x6a,\n  0x4,0x24,0x66, 0x5,0x24,0x6b, 0x5,0x24,0x69, 0xf,0x24,0x7e,\n  0x4,0x27,0x50, 0x6,0x2d,0x3c, 0x5,0x27,0x41, 0x4,0x27,0x4b,\n  0x6,0x2d,0x40, 0x6,0x2d,0x42, 0x6,0x2d,0x3e, 0x5,0x27,0x42,\n  0x5,0x27,0x43, 0x6,0x2d,0x41, 0x6,0x2d,0x3f, 0x5,0x27,0x40,\n  0x6,0x2d,0x43, 0x6,0x2d,0x44, 0x6,0x33,0x39, 0x6,0x33,0x35,\n  0x6,0x33,0x2e, 0x6,0x33,0x32, 0x4,0x2a,0x5e, 0x6,0x33,0x36,\n  0x4,0x2a,0x5c, 0x6,0x33,0x3c, 0x5,0x2a,0x65, 0x6,0x33,0x33,\n  0x5,0x2a,0x69, 0x4,0x2a,0x5b, 0x6,0x33,0x2f, 0x6,0x33,0x3b,\n  0x5,0x2a,0x60, 0x5,0x2a,0x67, 0x5,0x2a,0x6b, 0x5,0x2a,0x61,\n  0x5,0x2a,0x6a, 0x5,0x2a,0x68, 0x5,0x2a,0x63, 0x5,0x2a,0x6c,\n  0x6,0x33,0x30, 0x5,0x2a,0x5f, 0x5,0x2a,0x66, 0x5,0x2a,0x62,\n  0x5,0x2a,0x64, 0xf,0x2c,0x56, 0xf,0x2c,0x58, 0x6,0x33,0x37,\n  0x6,0x33,0x3a, 0x6,0x33,0x34, 0x4,0x2e,0x50, 0x5,0x2f,0x24,\n  0x3,0x2e,0x5a, 0x4,0x2e,0x4c, 0x5,0x2e,0x7b, 0x6,0x3a,0x26,\n  0x4,0x2e,0x4e, 0x5,0x2f,0x22, 0x5,0x2e,0x7c, 0x6,0x3a,0x28,\n  0x4,0x2e,0x4b, 0x6,0x3a,0x29, 0x5,0x2f,0x23, 0x6,0x3a,0x2a,\n  0x4,0x2e,0x53, 0x6,0x3a,0x2c, 0x5,0x2e,0x7e, 0x5,0x2f,0x25,\n  0x6,0x3a,0x2b, 0xf,0x31,0x39, 0xf,0x31,0x3a, 0xf,0x31,0x3b,\n  0xf,0x31,0x3c, 0xf,0x31,0x3d, 0x6,0x3a,0x27, 0x5,0x2f,0x21,\n  0x5,0x2e,0x7d, 0x4,0x2e,0x54, 0x4,0x33,0x55, 0x6,0x42,0x53,\n  0x6,0x42,0x46, 0x6,0x42,0x4d, 0x5,0x33,0x74, 0x5,0x33,0x73,\n  0x5,0x33,0x7d, 0x4,0x33,0x54, 0x6,0x42,0x47, 0x6,0x42,0x44,\n  0x6,0x42,0x42, 0x5,0x33,0x7a, 0x5,0x33,0x7b, 0x5,0x33,0x75,\n  0x6,0x42,0x4a, 0x5,0x33,0x78, 0x6,0x42,0x54, 0x5,0x33,0x79,\n  0x6,0x42,0x43, 0x6,0x42,0x4f, 0x6,0x42,0x4b, 0x6,0x42,0x50,\n  0xf,0x37,0x25, 0x6,0x42,0x52, 0x6,0x42,0x4c, 0x6,0x42,0x49,\n  0x6,0x42,0x51, 0xf,0x37,0x26, 0x5,0x33,0x7e, 0x6,0x42,0x45,\n  0x6,0x42,0x4e, 0x5,0x33,0x77, 0x5,0x33,0x7c, 0x5,0x3a,0x49,\n  0x5,0x3a,0x4c, 0x6,0x4b,0x79, 0x6,0x4c,0x23, 0x4,0x33,0x53,\n  0x6,0x4b,0x78, 0x5,0x3a,0x4b, 0x6,0x4b,0x7d, 0x6,0x4c,0x21,\n  0x5,0x3a,0x46, 0x6,0x4c,0x26, 0x6,0x4b,0x77, 0x4,0x39,0x4f,\n  0x5,0x3a,0x4a, 0x5,0x3a,0x48, 0x5,0x3a,0x44, 0x4,0x39,0x4e,\n  0x5,0x40,0x71, 0x6,0x4c,0x25, 0x5,0x40,0x7e, 0x4,0x39,0x40,\n  0x6,0x4b,0x7e, 0x5,0x3a,0x4d, 0x6,0x4b,0x7b, 0x5,0x3a,0x4e,\n  0x6,0x4c,0x28, 0x5,0x3a,0x45, 0x5,0x3a,0x47, 0xf,0x3d,0x4f,\n  0xf,0x3d,0x50, 0xf,0x3d,0x51, 0x6,0x4b,0x7c, 0x6,0x4c,0x27,\n  0x6,0x4b,0x76, 0x6,0x4c,0x24, 0x6,0x4c,0x22, 0x4,0x39,0x44,\n  0x4,0x39,0x50, 0x5,0x3a,0x4f, 0x4,0x39,0x3e, 0x6,0x55,0x5b,\n  0x6,0x55,0x5e, 0x6,0x55,0x5a, 0x4,0x3f,0x2a, 0x5,0x40,0x78,\n  0x6,0x55,0x5c, 0x5,0x40,0x77, 0x6,0x55,0x5f, 0x5,0x40,0x75,\n  0x6,0x55,0x59, 0x4,0x3f,0x23, 0x4,0x3f,0x28, 0x4,0x3f,0x31,\n  0x4,0x3f,0x2e, 0x5,0x40,0x7a, 0x6,0x55,0x62, 0x5,0x40,0x76,\n  0x4,0x3f,0x2f, 0x4,0x3f,0x24, 0x6,0x55,0x64, 0x5,0x40,0x79,\n  0x5,0x40,0x72, 0x5,0x40,0x7c, 0x6,0x55,0x66, 0x6,0x55,0x5d,\n  0xf,0x43,0x71, 0xf,0x43,0x72, 0xf,0x43,0x73, 0x6,0x4b,0x75,\n  0x6,0x55,0x63, 0x6,0x53,0x35, 0x5,0x40,0x73, 0x5,0x40,0x7d,\n  0x5,0x40,0x74, 0x6,0x55,0x65, 0x5,0x47,0x60, 0x4,0x45,0x45,\n  0x6,0x5f,0x44, 0x4,0x45,0x3e, 0x5,0x47,0x63, 0x6,0x5f,0x48,\n  0x5,0x47,0x65, 0x5,0x47,0x66, 0x6,0x5f,0x49, 0x4,0x4b,0x4f,\n  0x6,0x5f,0x4e, 0x6,0x5f,0x46, 0x6,0x5f,0x4f, 0x7,0x25,0x6c,\n  0x6,0x5f,0x47, 0x5,0x47,0x67, 0x5,0x47,0x64, 0x6,0x5f,0x43,\n  0x6,0x5f,0x4a, 0x6,0x5f,0x45, 0x5,0x47,0x62, 0x6,0x5f,0x42,\n  0x5,0x47,0x5f, 0x5,0x47,0x5e, 0x5,0x47,0x5d, 0x7,0x25,0x66,\n  0xf,0x4a,0x37, 0xf,0x4a,0x38, 0xf,0x4a,0x39, 0xf,0x4a,0x3a,\n  0xf,0x4a,0x3b, 0xf,0x4a,0x3c, 0xf,0x4a,0x3d, 0x4,0x45,0x3a,\n  0x6,0x5f,0x4d, 0x6,0x5f,0x4c, 0x5,0x47,0x69, 0x4,0x45,0x3b,\n  0x4,0x4b,0x50, 0x4,0x4b,0x4c, 0x4,0x4b,0x3e, 0x5,0x4e,0x62,\n  0x5,0x4e,0x67, 0x4,0x4b,0x4e, 0x7,0x25,0x6b, 0x5,0x4e,0x6c,\n  0x5,0x4e,0x65, 0x4,0x4b,0x41, 0x7,0x25,0x70, 0x4,0x4b,0x40,\n  0x4,0x51,0x65, 0x7,0x30,0x4d, 0x5,0x4e,0x64, 0x5,0x56,0x21,\n  0x5,0x4e,0x66, 0x7,0x25,0x6d, 0x5,0x4e,0x6a, 0x7,0x25,0x72,\n  0x4,0x4b,0x49, 0x4,0x4b,0x4b, 0x4,0x4b,0x46, 0x5,0x4e,0x5f,\n  0x5,0x4e,0x6b, 0x7,0x25,0x67, 0x7,0x25,0x68, 0x7,0x25,0x6a,\n  0x4,0x4b,0x4a, 0x5,0x4e,0x63, 0x7,0x25,0x6e, 0x5,0x4e,0x5e,\n  0x5,0x4e,0x61, 0x5,0x55,0x7b, 0x5,0x4e,0x69, 0x5,0x4e,0x68,\n  0x7,0x25,0x69, 0xf,0x50,0x5b, 0xf,0x50,0x5c, 0xf,0x50,0x5d,\n  0x7,0x25,0x6f, 0x4,0x4b,0x48, 0x5,0x56,0x2a, 0x5,0x56,0x2b,\n  0x4,0x51,0x5e, 0x5,0x56,0x25, 0x5,0x56,0x23, 0x5,0x56,0x27,\n  0x5,0x55,0x7d, 0x4,0x51,0x63, 0x5,0x56,0x29, 0x5,0x55,0x7e,\n  0x5,0x56,0x26, 0x5,0x56,0x24, 0x4,0x51,0x62, 0x7,0x30,0x46,\n  0x7,0x30,0x4e, 0x7,0x30,0x4f, 0x7,0x30,0x4b, 0x7,0x30,0x47,\n  0x5,0x4e,0x6d, 0x4,0x51,0x67, 0x5,0x55,0x7c, 0x7,0x30,0x49,\n  0xf,0x56,0x3d, 0x7,0x30,0x51, 0x7,0x30,0x4c, 0x5,0x56,0x2c,\n  0x4,0x51,0x66, 0x5,0x47,0x68, 0x5,0x56,0x28, 0x4,0x5c,0x2b,\n  0x5,0x5c,0x48, 0x5,0x5c,0x4b, 0x4,0x57,0x35, 0x4,0x57,0x36,\n  0x7,0x30,0x52, 0x7,0x39,0x5e, 0x7,0x39,0x59, 0x5,0x5c,0x4a,\n  0x7,0x39,0x5a, 0x5,0x5c,0x4c, 0x7,0x39,0x64, 0x5,0x5c,0x49,\n  0x7,0x41,0x22, 0x7,0x39,0x5f, 0x7,0x39,0x60, 0x7,0x39,0x5d,\n  0x4,0x57,0x37, 0x7,0x39,0x63, 0x5,0x5c,0x4f, 0x7,0x30,0x48,\n  0x5,0x5c,0x4e, 0x7,0x39,0x61, 0x7,0x39,0x5c, 0x7,0x39,0x5b,\n  0xf,0x5b,0x3e, 0xf,0x5b,0x3f, 0xf,0x5b,0x40, 0x7,0x39,0x62,\n  0x7,0x39,0x58, 0x4,0x5c,0x28, 0x7,0x41,0x23, 0x7,0x40,0x7e,\n  0x5,0x62,0x6e, 0x4,0x5c,0x2c, 0x5,0x62,0x6b, 0x7,0x40,0x7b,\n  0x7,0x40,0x7c, 0x5,0x62,0x70, 0x4,0x5c,0x24, 0x5,0x62,0x6c,\n  0x5,0x62,0x6f, 0x5,0x62,0x71, 0x5,0x62,0x6a, 0xf,0x5f,0x63,\n  0xf,0x5f,0x64, 0x7,0x41,0x24, 0x7,0x41,0x25, 0x7,0x40,0x7d,\n  0x5,0x62,0x6d, 0x7,0x40,0x7a, 0x7,0x41,0x21, 0x5,0x68,0x4f,\n  0x5,0x68,0x4c, 0x5,0x68,0x51, 0x4,0x60,0x3e, 0x5,0x68,0x50,\n  0x4,0x60,0x3b, 0x5,0x68,0x54, 0x5,0x68,0x4e, 0x7,0x48,0x32,\n  0x4,0x60,0x3a, 0x7,0x48,0x34, 0x4,0x60,0x3c, 0x4,0x60,0x3d,\n  0x7,0x48,0x30, 0x5,0x68,0x4d, 0x7,0x48,0x31, 0x5,0x68,0x53,\n  0x5,0x68,0x52, 0xf,0x63,0x2a, 0x7,0x4b,0x5d, 0x7,0x48,0x35,\n  0x7,0x48,0x33, 0x5,0x6c,0x60, 0x5,0x6c,0x62, 0x5,0x6c,0x5e,\n  0x7,0x4e,0x58, 0x5,0x6c,0x61, 0x5,0x6c,0x63, 0x7,0x4e,0x57,\n  0xf,0x65,0x57, 0x4,0x63,0x72, 0x5,0x6c,0x5f, 0x4,0x63,0x73,\n  0x7,0x4e,0x56, 0x7,0x54,0x22, 0x5,0x70,0x52, 0x5,0x70,0x54,\n  0x5,0x70,0x53, 0x5,0x70,0x55, 0x7,0x53,0x7e, 0x7,0x54,0x23,\n  0x7,0x53,0x7d, 0x4,0x68,0x79, 0x5,0x73,0x63, 0x7,0x58,0x46,\n  0x5,0x73,0x61, 0x5,0x73,0x62, 0x7,0x58,0x47, 0x5,0x73,0x65,\n  0x4,0x6a,0x59, 0x7,0x54,0x21, 0x5,0x73,0x64, 0x7,0x59,0x33,\n  0x5,0x73,0x66, 0x5,0x76,0x2b, 0x7,0x5c,0x26, 0x4,0x6a,0x58,\n  0x7,0x5c,0x25, 0x7,0x5f,0x24, 0x4,0x6c,0x74, 0x7,0x62,0x43,\n  0x7,0x62,0x45, 0x7,0x62,0x44, 0xf,0x6c,0x66, 0x5,0x7b,0x43,\n  0x5,0x27,0x44, 0x4,0x2a,0x60, 0x4,0x2a,0x61, 0x4,0x2e,0x56,\n  0x5,0x2f,0x28, 0x5,0x2f,0x27, 0x6,0x3a,0x2f, 0x6,0x3a,0x30,\n  0x4,0x33,0x58, 0x5,0x34,0x22, 0xf,0x37,0x27, 0x5,0x3a,0x52,\n  0x4,0x39,0x51, 0x5,0x3a,0x53, 0x5,0x3a,0x51, 0x5,0x3a,0x55,\n  0x5,0x3a,0x50, 0x6,0x4c,0x29, 0x5,0x3a,0x54, 0x5,0x41,0x23,\n  0x5,0x41,0x22, 0x5,0x41,0x21, 0x6,0x5f,0x51, 0x6,0x5f,0x52,\n  0x4,0x45,0x47, 0x4,0x45,0x48, 0x5,0x47,0x6c, 0x5,0x47,0x6a,\n  0x5,0x47,0x6b, 0x4,0x45,0x49, 0x6,0x5f,0x50, 0x4,0x45,0x4b,\n  0xf,0x4d,0x3f, 0x5,0x4e,0x6e, 0x4,0x4b,0x52, 0x7,0x25,0x75,\n  0x5,0x4e,0x6f, 0x4,0x4b,0x51, 0x7,0x25,0x74, 0x4,0x4b,0x53,\n  0x4,0x51,0x69, 0x4,0x51,0x68, 0x4,0x51,0x6a, 0x5,0x56,0x2d,\n  0x5,0x62,0x75, 0x7,0x39,0x65, 0x5,0x5a,0x75, 0x5,0x5c,0x50,\n  0x5,0x62,0x74, 0x5,0x62,0x73, 0x5,0x62,0x72, 0x5,0x68,0x57,\n  0x5,0x68,0x56, 0x5,0x68,0x55, 0x5,0x68,0x58, 0x7,0x48,0x36,\n  0x7,0x48,0x37, 0x4,0x6a,0x5a, 0x7,0x66,0x3f, 0x7,0x66,0x49,\n  0x6,0x26,0x3f, 0x6,0x28,0x6b, 0x6,0x28,0x6c, 0x6,0x33,0x41,\n  0x6,0x33,0x3f, 0x6,0x33,0x40, 0x5,0x2a,0x6e, 0x5,0x2f,0x2a,\n  0x5,0x2f,0x2b, 0x6,0x3a,0x33, 0xf,0x31,0x3f, 0xf,0x31,0x40,\n  0x6,0x3a,0x31, 0x6,0x3a,0x32, 0x5,0x2f,0x29, 0x5,0x34,0x23,\n  0x5,0x34,0x24, 0x4,0x33,0x5c, 0x6,0x42,0x59, 0x6,0x42,0x57,\n  0x5,0x34,0x25, 0x6,0x42,0x55, 0x6,0x42,0x5b, 0x6,0x42,0x56,\n  0x6,0x42,0x5a, 0x6,0x42,0x58, 0x4,0x39,0x52, 0x6,0x4c,0x2c,\n  0xf,0x3d,0x52, 0x6,0x4c,0x2a, 0xf,0x3d,0x53, 0x5,0x41,0x24,\n  0x4,0x3f,0x32, 0x6,0x55,0x69, 0x4,0x3f,0x35, 0x4,0x3f,0x34,\n  0x6,0x55,0x67, 0x5,0x3a,0x56, 0x4,0x3f,0x36, 0xf,0x43,0x75,\n  0x6,0x55,0x68, 0x5,0x47,0x6d, 0x5,0x47,0x6e, 0x6,0x5f,0x53,\n  0x5,0x47,0x6f, 0x5,0x47,0x70, 0xf,0x4a,0x3e, 0x7,0x25,0x78,\n  0x4,0x4b,0x54, 0x7,0x25,0x76, 0x7,0x25,0x77, 0xf,0x50,0x61,\n  0x7,0x25,0x79, 0x7,0x30,0x54, 0x4,0x51,0x6b, 0xf,0x56,0x3f,\n  0x7,0x30,0x53, 0x5,0x5c,0x51, 0x5,0x5c,0x52, 0x7,0x39,0x66,\n  0x7,0x39,0x67, 0x5,0x73,0x67, 0x5,0x76,0x2c, 0x5,0x22,0x7e,\n  0x6,0x25,0x3e, 0x4,0x24,0x67, 0x6,0x28,0x6d, 0x5,0x24,0x6d,\n  0x5,0x24,0x6c, 0xf,0x25,0x21, 0xf,0x25,0x22, 0x5,0x27,0x45,\n  0x4,0x27,0x54, 0xf,0x28,0x30, 0xf,0x28,0x31, 0xf,0x28,0x32,\n  0xf,0x28,0x33, 0x6,0x2d,0x47, 0xf,0x28,0x35, 0x4,0x2a,0x65,\n  0x4,0x2a,0x63, 0x6,0x33,0x45, 0x5,0x2a,0x70, 0xf,0x2c,0x59,\n  0xf,0x2c,0x5a, 0xf,0x2c,0x5b, 0xf,0x2c,0x5d, 0xf,0x2c,0x5e,\n  0xf,0x2c,0x5f, 0xf,0x2c,0x61, 0xf,0x2c,0x63, 0x6,0x33,0x43,\n  0x6,0x33,0x44, 0xf,0x2c,0x64, 0xf,0x2c,0x60, 0x6,0x33,0x42,\n  0x5,0x2a,0x6f, 0x5,0x2a,0x71, 0x4,0x2e,0x60, 0x5,0x2f,0x33,\n  0x6,0x3a,0x34, 0x6,0x33,0x46, 0x6,0x3a,0x35, 0x5,0x2f,0x2f,\n  0x6,0x3a,0x39, 0x5,0x2f,0x2c, 0x5,0x2f,0x31, 0x5,0x2f,0x30,\n  0x4,0x2e,0x5b, 0x4,0x2e,0x5d, 0x5,0x2f,0x36, 0x5,0x2f,0x32,\n  0x5,0x2f,0x35, 0xf,0x31,0x3e, 0x4,0x2e,0x59, 0x5,0x2f,0x37,\n  0x6,0x3a,0x38, 0xf,0x31,0x42, 0xf,0x31,0x43, 0xf,0x31,0x45,\n  0xf,0x31,0x46, 0x4,0x2e,0x5a, 0x5,0x2f,0x2d, 0x6,0x3a,0x37,\n  0xf,0x31,0x48, 0xf,0x31,0x41, 0x5,0x34,0x26, 0x5,0x2f,0x2e,\n  0x6,0x3a,0x36, 0x5,0x34,0x2c, 0x5,0x34,0x28, 0x6,0x42,0x61,\n  0x6,0x42,0x5f, 0x5,0x34,0x31, 0x5,0x34,0x30, 0x5,0x34,0x2a,\n  0x6,0x42,0x60, 0x5,0x34,0x34, 0x5,0x34,0x32, 0x5,0x2f,0x38,\n  0x5,0x34,0x2e, 0x5,0x34,0x27, 0x5,0x34,0x29, 0x5,0x34,0x2d,\n  0xf,0x37,0x28, 0xf,0x37,0x29, 0xf,0x37,0x2a, 0xf,0x37,0x2b,\n  0xf,0x37,0x2e, 0xf,0x37,0x2f, 0xf,0x37,0x31, 0xf,0x37,0x32,\n  0xf,0x37,0x33, 0x6,0x42,0x5e, 0x6,0x42,0x5c, 0x6,0x4c,0x2e,\n  0xf,0x37,0x30, 0x5,0x34,0x2b, 0xf,0x37,0x2c, 0x6,0x42,0x62,\n  0x5,0x34,0x2f, 0x5,0x34,0x33, 0x6,0x42,0x5d, 0x5,0x3a,0x58,\n  0x5,0x3a,0x5e, 0x5,0x3a,0x57, 0x5,0x3a,0x5b, 0x4,0x39,0x56,\n  0x6,0x4c,0x35, 0x4,0x39,0x57, 0x4,0x39,0x55, 0x5,0x3a,0x5c,\n  0x5,0x3a,0x5d, 0x6,0x4c,0x31, 0x5,0x3a,0x5a, 0x5,0x3a,0x5f,\n  0xf,0x3d,0x54, 0xf,0x3d,0x55, 0xf,0x3d,0x56, 0xf,0x3d,0x57,\n  0x6,0x4c,0x34, 0x6,0x4c,0x30, 0x6,0x4c,0x32, 0x5,0x3a,0x61,\n  0x5,0x3a,0x60, 0x5,0x41,0x28, 0x6,0x55,0x71, 0x4,0x3f,0x37,\n  0x5,0x41,0x29, 0x6,0x55,0x6a, 0x6,0x55,0x6c, 0x5,0x41,0x25,\n  0x6,0x55,0x6e, 0x4,0x3f,0x41, 0x4,0x3f,0x43, 0x6,0x55,0x6f,\n  0x6,0x55,0x72, 0x5,0x41,0x26, 0x5,0x41,0x27, 0x6,0x55,0x6d,\n  0xf,0x43,0x77, 0xf,0x43,0x78, 0xf,0x43,0x79, 0xf,0x43,0x7a,\n  0xf,0x43,0x7b, 0xf,0x43,0x7c, 0xf,0x43,0x7d, 0xf,0x43,0x7e,\n  0xf,0x44,0x21, 0xf,0x44,0x22, 0xf,0x44,0x23, 0xf,0x44,0x24,\n  0xf,0x44,0x26, 0x6,0x55,0x70, 0x6,0x55,0x73, 0x6,0x5f,0x5b,\n  0x5,0x47,0x78, 0x6,0x5f,0x54, 0x7,0x25,0x7e, 0x5,0x47,0x7a,\n  0x6,0x5f,0x56, 0x4,0x45,0x52, 0x5,0x47,0x73, 0x5,0x47,0x72,\n  0x6,0x5f,0x57, 0x5,0x47,0x7b, 0x6,0x5f,0x59, 0x6,0x5f,0x5a,\n  0x5,0x47,0x75, 0x6,0x5f,0x55, 0x5,0x47,0x71, 0x5,0x47,0x7d,\n  0x6,0x5f,0x58, 0xf,0x4a,0x41, 0xf,0x4a,0x43, 0xf,0x4a,0x44,\n  0xf,0x4a,0x45, 0xf,0x4a,0x46, 0xf,0x4a,0x47, 0xf,0x4a,0x48,\n  0xf,0x4a,0x49, 0xf,0x4a,0x4b, 0xf,0x4a,0x4c, 0xf,0x4a,0x4d,\n  0xf,0x4a,0x4f, 0xf,0x4a,0x50, 0xf,0x4a,0x51, 0xf,0x4a,0x52,\n  0x4,0x45,0x54, 0xf,0x4a,0x40, 0x5,0x47,0x77, 0x5,0x47,0x7c,\n  0x5,0x47,0x79, 0x5,0x47,0x74, 0xf,0x50,0x64, 0x4,0x4b,0x5a,\n  0x5,0x4e,0x72, 0x5,0x4e,0x73, 0x7,0x26,0x21, 0x5,0x4e,0x70,\n  0x4,0x45,0x50, 0x7,0x26,0x25, 0x5,0x4e,0x75, 0x7,0x25,0x7d,\n  0xf,0x50,0x62, 0xf,0x50,0x63, 0xf,0x50,0x65, 0xf,0x50,0x66,\n  0xf,0x50,0x68, 0x7,0x26,0x22, 0x7,0x25,0x7a, 0x7,0x26,0x23,\n  0x5,0x4e,0x71, 0x5,0x4e,0x74, 0x7,0x25,0x7c, 0xf,0x4a,0x4a,\n  0x7,0x30,0x58, 0x5,0x56,0x31, 0x5,0x56,0x2e, 0x5,0x56,0x32,\n  0x7,0x30,0x55, 0x4,0x51,0x71, 0x4,0x51,0x73, 0x5,0x56,0x34,\n  0x4,0x51,0x72, 0x7,0x30,0x56, 0x7,0x30,0x5a, 0x4,0x51,0x6f,\n  0x7,0x30,0x57, 0xf,0x56,0x41, 0xf,0x56,0x42, 0xf,0x56,0x43,\n  0x5,0x56,0x30, 0xf,0x56,0x44, 0x5,0x56,0x2f, 0xf,0x56,0x45,\n  0xf,0x56,0x46, 0xf,0x56,0x47, 0xf,0x56,0x49, 0xf,0x56,0x4b,\n  0xf,0x56,0x4c, 0xf,0x56,0x4d, 0x5,0x5c,0x56, 0x7,0x39,0x68,\n  0x5,0x5c,0x54, 0x7,0x39,0x6f, 0x7,0x39,0x6a, 0x5,0x5c,0x53,\n  0x4,0x57,0x3a, 0x7,0x39,0x69, 0x5,0x5c,0x55, 0x4,0x57,0x3d,\n  0x7,0x39,0x6c, 0x4,0x57,0x3c, 0x5,0x56,0x35, 0x5,0x5c,0x58,\n  0x5,0x5c,0x57, 0x5,0x5c,0x59, 0xf,0x5b,0x41, 0xf,0x5b,0x42,\n  0xf,0x5b,0x43, 0xf,0x5b,0x44, 0xf,0x5b,0x45, 0xf,0x5b,0x46,\n  0xf,0x5b,0x47, 0xf,0x5b,0x48, 0xf,0x5b,0x49, 0x7,0x39,0x6b,\n  0x7,0x39,0x6e, 0xf,0x56,0x4a, 0x7,0x41,0x29, 0x5,0x62,0x76,\n  0x5,0x62,0x78, 0x7,0x41,0x26, 0x7,0x41,0x28, 0x5,0x62,0x77,\n  0x4,0x5c,0x30, 0x5,0x62,0x7a, 0x7,0x41,0x27, 0x5,0x62,0x79,\n  0x7,0x41,0x2a, 0xf,0x5f,0x65, 0xf,0x5f,0x66, 0xf,0x5f,0x67,\n  0xf,0x5f,0x68, 0xf,0x5f,0x69, 0x4,0x60,0x40, 0x5,0x68,0x5a,\n  0x5,0x68,0x59, 0xf,0x63,0x2b, 0xf,0x63,0x2c, 0xf,0x63,0x2d,\n  0xf,0x63,0x2e, 0x7,0x48,0x3a, 0x7,0x48,0x38, 0x7,0x48,0x39,\n  0xf,0x63,0x2f, 0x5,0x6c,0x65, 0x5,0x6c,0x66, 0x7,0x4e,0x59,\n  0x7,0x4e,0x5a, 0x5,0x6c,0x64, 0x5,0x6c,0x67, 0x4,0x60,0x41,\n  0x7,0x4e,0x5b, 0xf,0x65,0x5a, 0xf,0x65,0x5b, 0xf,0x65,0x5c,\n  0xf,0x65,0x5d, 0x7,0x4e,0x5d, 0x5,0x70,0x56, 0x5,0x70,0x57,\n  0xf,0x67,0x7d, 0x7,0x54,0x24, 0x4,0x66,0x62, 0xf,0x67,0x7c,\n  0x5,0x73,0x68, 0x7,0x58,0x48, 0x5,0x73,0x69, 0xf,0x69,0x5b,\n  0xf,0x69,0x5c, 0x7,0x58,0x49, 0x5,0x73,0x6a, 0x5,0x76,0x2e,\n  0x4,0x6a,0x5b, 0x5,0x76,0x2d, 0x5,0x76,0x2f, 0xf,0x6a,0x65,\n  0x7,0x5c,0x28, 0x7,0x5c,0x27, 0x7,0x5f,0x26, 0x7,0x5f,0x25,\n  0x7,0x5f,0x27, 0x7,0x62,0x46, 0x5,0x7a,0x2d, 0x5,0x7a,0x6e,\n  0x4,0x6d,0x75, 0x7,0x64,0x53, 0x7,0x65,0x3b, 0x5,0x7c,0x43,\n  0x6,0x22,0x27, 0x6,0x25,0x40, 0x6,0x28,0x6e, 0xf,0x22,0x68,\n  0x6,0x2d,0x48, 0xf,0x25,0x24, 0x6,0x33,0x47, 0x6,0x33,0x49,\n  0xf,0x28,0x36, 0xf,0x28,0x38, 0xf,0x28,0x39, 0xf,0x28,0x3a,\n  0xf,0x28,0x3b, 0xf,0x28,0x3d, 0xf,0x28,0x37, 0x6,0x31,0x5a,\n  0x5,0x2f,0x39, 0x6,0x3a,0x3a, 0x4,0x2e,0x63, 0x5,0x2f,0x3a,\n  0x6,0x3a,0x3b, 0x6,0x33,0x4b, 0xf,0x2c,0x65, 0xf,0x2c,0x66,\n  0xf,0x2c,0x67, 0xf,0x2c,0x68, 0xf,0x2c,0x69, 0xf,0x31,0x49,\n  0xf,0x31,0x4b, 0xf,0x31,0x4e, 0x6,0x3a,0x3e, 0x6,0x3a,0x3f,\n  0x6,0x3a,0x3d, 0x6,0x3a,0x40, 0x6,0x3a,0x3c, 0xf,0x2c,0x6a,\n  0x4,0x2a,0x68, 0x5,0x34,0x36, 0x6,0x3a,0x41, 0xf,0x31,0x4a,\n  0xf,0x31,0x4c, 0xf,0x31,0x4d, 0xf,0x31,0x4f, 0xf,0x31,0x50,\n  0xf,0x31,0x51, 0xf,0x31,0x52, 0xf,0x31,0x53, 0xf,0x31,0x54,\n  0xf,0x37,0x37, 0x6,0x42,0x63, 0x5,0x34,0x35, 0x6,0x4c,0x38,\n  0x5,0x3a,0x62, 0x6,0x4c,0x39, 0x6,0x4c,0x3a, 0x6,0x4c,0x3c,\n  0x5,0x3a,0x63, 0x6,0x4c,0x3d, 0x6,0x4c,0x3b, 0x6,0x4c,0x36,\n  0x6,0x4c,0x37, 0xf,0x37,0x34, 0xf,0x37,0x36, 0xf,0x37,0x38,\n  0xf,0x3d,0x5b, 0xf,0x37,0x35, 0x6,0x55,0x75, 0x5,0x41,0x2b,\n  0x5,0x41,0x2a, 0x5,0x41,0x2c, 0x6,0x4c,0x3f, 0x4,0x3f,0x48,\n  0xf,0x3d,0x58, 0xf,0x3d,0x59, 0xf,0x3d,0x5a, 0xf,0x3d,0x5c,\n  0xf,0x3d,0x5d, 0xf,0x3d,0x5e, 0xf,0x3d,0x5f, 0xf,0x3d,0x62,\n  0xf,0x3d,0x63, 0xf,0x3d,0x64, 0xf,0x44,0x28, 0xf,0x44,0x2a,\n  0xf,0x3d,0x61, 0x6,0x55,0x74, 0x5,0x48,0x23, 0x6,0x5f,0x5f,\n  0x6,0x5f,0x60, 0x4,0x45,0x56, 0x6,0x5f,0x63, 0x6,0x5f,0x61,\n  0xf,0x44,0x27, 0xf,0x44,0x29, 0xf,0x44,0x2b, 0xf,0x44,0x2c,\n  0xf,0x44,0x2d, 0xf,0x44,0x2e, 0xf,0x44,0x2f, 0xf,0x44,0x30,\n  0xf,0x44,0x31, 0xf,0x44,0x32, 0x6,0x5f,0x5d, 0x6,0x5f,0x62,\n  0x5,0x48,0x21, 0x6,0x5f,0x5e, 0x4,0x4b,0x5f, 0x7,0x26,0x26,\n  0x6,0x5f,0x5c, 0x6,0x5f,0x64, 0xf,0x4a,0x53, 0xf,0x4a,0x55,\n  0xf,0x4a,0x56, 0xf,0x4a,0x57, 0xf,0x4a,0x58, 0xf,0x4a,0x5a,\n  0x7,0x26,0x28, 0x5,0x56,0x38, 0x7,0x30,0x5c, 0x5,0x56,0x36,\n  0x7,0x30,0x5d, 0x4,0x51,0x77, 0x5,0x56,0x39, 0x5,0x56,0x37,\n  0x5,0x56,0x3a, 0x7,0x26,0x2a, 0x7,0x30,0x5b, 0xf,0x50,0x6a,\n  0xf,0x50,0x69, 0xf,0x56,0x51, 0x4,0x57,0x43, 0x5,0x5c,0x5a,\n  0x7,0x39,0x73, 0x4,0x57,0x44, 0x7,0x39,0x76, 0x7,0x39,0x74,\n  0x7,0x30,0x5e, 0xf,0x50,0x6b, 0xf,0x56,0x4e, 0xf,0x56,0x4f,\n  0xf,0x56,0x50, 0xf,0x56,0x52, 0x7,0x39,0x71, 0x7,0x39,0x75,\n  0x7,0x39,0x72, 0x7,0x39,0x70, 0xf,0x5b,0x4d, 0xf,0x5b,0x4f,\n  0x4,0x5c,0x34, 0x5,0x62,0x7b, 0x7,0x41,0x2c, 0xf,0x5b,0x4b,\n  0xf,0x5b,0x4c, 0xf,0x5b,0x4e, 0xf,0x5b,0x50, 0xf,0x5b,0x51,\n  0xf,0x5b,0x52, 0x7,0x41,0x2b, 0x4,0x5c,0x33, 0x5,0x68,0x5b,\n  0x7,0x48,0x3c, 0x7,0x48,0x3d, 0xf,0x5f,0x6a, 0xf,0x5f,0x6b,\n  0x5,0x6c,0x68, 0x4,0x63,0x77, 0xf,0x65,0x5e, 0x7,0x4e,0x5e,\n  0x7,0x54,0x26, 0x7,0x54,0x25, 0xf,0x65,0x5f, 0x4,0x68,0x7d,\n  0x7,0x58,0x4a, 0x7,0x58,0x4b, 0x7,0x5c,0x29, 0xf,0x69,0x5d,\n  0x7,0x5c,0x2a, 0x7,0x5c,0x2b, 0x5,0x77,0x6e, 0x7,0x5c,0x2c,\n  0x5,0x77,0x6f, 0xf,0x6a,0x67, 0x5,0x79,0x32, 0x7,0x62,0x49,\n  0x7,0x62,0x47, 0x7,0x63,0x5d, 0xf,0x6c,0x67, 0xf,0x22,0x69,\n  0x6,0x33,0x4d, 0x6,0x42,0x64, 0x4,0x39,0x5b, 0x6,0x4c,0x40,\n  0x6,0x55,0x76, 0x6,0x5f,0x65, 0x7,0x26,0x2c, 0x7,0x30,0x5f,\n  0x7,0x30,0x60, 0x7,0x41,0x2d, 0x5,0x73,0x6b, 0x7,0x61,0x28,\n  0x4,0x21,0x7e, 0x6,0x25,0x41, 0xf,0x22,0x6a, 0x6,0x28,0x6f,\n  0xf,0x25,0x25, 0x6,0x28,0x70, 0x4,0x27,0x55, 0x5,0x27,0x48,\n  0x4,0x27,0x57, 0x5,0x27,0x47, 0xf,0x28,0x3e, 0xf,0x28,0x3f,\n  0xf,0x28,0x40, 0xf,0x28,0x41, 0xf,0x28,0x42, 0x6,0x2d,0x4a,\n  0x6,0x33,0x51, 0x6,0x33,0x54, 0x5,0x2a,0x74, 0x5,0x2a,0x72,\n  0x4,0x2a,0x70, 0x5,0x2a,0x75, 0x6,0x33,0x56, 0x6,0x33,0x50,\n  0x6,0x33,0x52, 0x4,0x2a,0x6d, 0x6,0x33,0x4f, 0x5,0x2a,0x73,\n  0x6,0x33,0x57, 0xf,0x2c,0x6b, 0xf,0x2c,0x6c, 0xf,0x2c,0x6e,\n  0xf,0x2c,0x6f, 0xf,0x2c,0x70, 0x6,0x33,0x55, 0x6,0x33,0x53,\n  0x6,0x33,0x4e, 0x5,0x2f,0x3c, 0x5,0x2f,0x3b, 0x6,0x3a,0x45,\n  0x5,0x2f,0x3d, 0x6,0x3a,0x46, 0x5,0x2f,0x3e, 0x5,0x2a,0x76,\n  0x5,0x34,0x3c, 0x6,0x3a,0x47, 0xf,0x31,0x55, 0xf,0x31,0x56,\n  0x6,0x3a,0x42, 0x6,0x3a,0x44, 0x5,0x34,0x3a, 0x6,0x42,0x69,\n  0x5,0x34,0x3f, 0x4,0x33,0x68, 0x5,0x34,0x3d, 0x6,0x42,0x68,\n  0x5,0x34,0x37, 0xf,0x37,0x3a, 0xf,0x37,0x3c, 0xf,0x37,0x3d,\n  0xf,0x37,0x3e, 0x4,0x33,0x6c, 0x6,0x42,0x65, 0x6,0x42,0x6a,\n  0x4,0x39,0x5f, 0x5,0x3a,0x64, 0x4,0x39,0x60, 0x4,0x39,0x5c,\n  0x6,0x4c,0x41, 0x6,0x4c,0x42, 0x6,0x4c,0x45, 0x6,0x4c,0x47,\n  0x4,0x39,0x5d, 0x6,0x4c,0x44, 0x4,0x3f,0x51, 0xf,0x3d,0x65,\n  0xf,0x3d,0x67, 0xf,0x3d,0x69, 0x5,0x34,0x3e, 0xf,0x3d,0x66,\n  0x5,0x41,0x36, 0x5,0x41,0x2f, 0x6,0x55,0x79, 0x6,0x55,0x77,\n  0x6,0x55,0x7a, 0x5,0x41,0x30, 0x5,0x41,0x2d, 0x5,0x41,0x32,\n  0x5,0x41,0x34, 0x5,0x41,0x38, 0x5,0x41,0x33, 0x4,0x3f,0x4e,\n  0x6,0x56,0x21, 0x5,0x41,0x2e, 0x6,0x55,0x7b, 0x6,0x55,0x7e,\n  0x6,0x55,0x7c, 0xf,0x44,0x33, 0xf,0x44,0x34, 0xf,0x44,0x35,\n  0xf,0x44,0x36, 0xf,0x44,0x37, 0xf,0x44,0x38, 0xf,0x44,0x39,\n  0xf,0x44,0x3a, 0x6,0x55,0x78, 0x6,0x55,0x7d, 0x5,0x41,0x37,\n  0x5,0x41,0x35, 0x5,0x48,0x28, 0x6,0x5f,0x69, 0x5,0x45,0x2d,\n  0x5,0x48,0x2d, 0x6,0x5f,0x68, 0x6,0x5f,0x66, 0x6,0x5f,0x6a,\n  0x4,0x45,0x5c, 0x5,0x48,0x2e, 0x5,0x48,0x29, 0x6,0x5f,0x6e,\n  0x6,0x5f,0x6f, 0x5,0x48,0x2b, 0x5,0x48,0x27, 0x5,0x48,0x2c,\n  0x6,0x5f,0x70, 0x5,0x48,0x2a, 0x6,0x5f,0x67, 0xf,0x4a,0x60,\n  0xf,0x4a,0x5b, 0xf,0x4a,0x5c, 0xf,0x4a,0x5d, 0xf,0x4a,0x5e,\n  0xf,0x4a,0x5f, 0xf,0x4a,0x61, 0xf,0x4a,0x62, 0xf,0x4a,0x63,\n  0xf,0x4a,0x65, 0x6,0x5f,0x6d, 0x6,0x5f,0x6c, 0x5,0x4e,0x7b,\n  0x5,0x4e,0x78, 0x5,0x4e,0x7a, 0x7,0x26,0x33, 0x7,0x26,0x30,\n  0x5,0x4e,0x79, 0x4,0x4b,0x69, 0x7,0x26,0x34, 0x7,0x26,0x31,\n  0x7,0x26,0x38, 0x5,0x48,0x2f, 0x7,0x26,0x2f, 0x5,0x56,0x45,\n  0x5,0x4e,0x7c, 0x5,0x4e,0x7d, 0x4,0x4b,0x67, 0x4,0x4b,0x6a,\n  0x7,0x26,0x35, 0xf,0x50,0x6c, 0xf,0x50,0x6e, 0xf,0x50,0x6f,\n  0xf,0x50,0x70, 0xf,0x50,0x71, 0xf,0x50,0x72, 0x7,0x26,0x2e,\n  0x7,0x26,0x36, 0x7,0x26,0x37, 0x4,0x51,0x7b, 0x7,0x30,0x6d,\n  0x5,0x56,0x3d, 0x5,0x56,0x40, 0x7,0x30,0x69, 0x5,0x56,0x3c,\n  0x5,0x56,0x3f, 0x5,0x56,0x3e, 0x4,0x51,0x7e, 0x5,0x56,0x3b,\n  0x5,0x56,0x43, 0x7,0x30,0x63, 0x7,0x30,0x64, 0x5,0x56,0x42,\n  0x7,0x30,0x62, 0x5,0x56,0x46, 0x5,0x5c,0x5b, 0x5,0x56,0x47,\n  0x7,0x30,0x6b, 0x7,0x30,0x6a, 0x7,0x30,0x6c, 0x7,0x30,0x61,\n  0xf,0x56,0x54, 0xf,0x56,0x55, 0x7,0x30,0x65, 0x7,0x30,0x67,\n  0x7,0x30,0x68, 0x5,0x56,0x44, 0x5,0x56,0x41, 0x5,0x5c,0x5e,\n  0x5,0x5c,0x61, 0x5,0x5c,0x62, 0x5,0x5c,0x5f, 0x5,0x5c,0x5c,\n  0x5,0x5c,0x5d, 0x4,0x57,0x4a, 0x7,0x39,0x77, 0x5,0x5c,0x64,\n  0x4,0x57,0x46, 0x5,0x5c,0x60, 0x7,0x39,0x7a, 0xf,0x5b,0x54,\n  0xf,0x5b,0x55, 0xf,0x5b,0x56, 0xf,0x5b,0x57, 0xf,0x5b,0x58,\n  0xf,0x5b,0x5a, 0x7,0x39,0x78, 0xf,0x5b,0x53, 0x5,0x56,0x48,\n  0x7,0x39,0x79, 0x5,0x5c,0x63, 0xf,0x56,0x53, 0x5,0x62,0x7d,\n  0x5,0x63,0x26, 0x5,0x63,0x24, 0x5,0x63,0x21, 0x5,0x63,0x22,\n  0x5,0x63,0x25, 0x7,0x41,0x30, 0x5,0x62,0x7e, 0x7,0x41,0x2f,\n  0x5,0x63,0x23, 0xf,0x5f,0x6c, 0xf,0x5f,0x6d, 0xf,0x5f,0x6e,\n  0xf,0x5f,0x6f, 0xf,0x5f,0x70, 0xf,0x5f,0x71, 0xf,0x5f,0x72,\n  0x5,0x62,0x7c, 0x5,0x68,0x5e, 0x4,0x60,0x43, 0x5,0x68,0x5c,\n  0x4,0x60,0x44, 0x4,0x60,0x47, 0x7,0x48,0x3f, 0x4,0x60,0x46,\n  0x5,0x68,0x5d, 0x7,0x4e,0x62, 0x7,0x48,0x41, 0x7,0x48,0x3e,\n  0xf,0x63,0x30, 0x7,0x48,0x40, 0x5,0x6c,0x6b, 0x4,0x63,0x7a,\n  0x4,0x63,0x78, 0x5,0x6c,0x6a, 0x7,0x4e,0x60, 0x4,0x5c,0x38,\n  0x5,0x6c,0x69, 0x5,0x6c,0x6c, 0x7,0x4e,0x5f, 0x7,0x4e,0x61,\n  0xf,0x65,0x60, 0xf,0x65,0x61, 0xf,0x65,0x63, 0x7,0x4e,0x63,\n  0x5,0x6c,0x6d, 0x7,0x54,0x28, 0x7,0x54,0x27, 0x5,0x70,0x58,\n  0x7,0x54,0x29, 0x7,0x58,0x4d, 0x5,0x73,0x6c, 0x7,0x58,0x4e,\n  0x5,0x76,0x30, 0x5,0x76,0x31, 0x7,0x58,0x4f, 0x5,0x77,0x70,\n  0x7,0x5c,0x2d, 0x7,0x5c,0x2e, 0x7,0x5f,0x28, 0x7,0x5e,0x71,\n  0xf,0x6b,0x57, 0xf,0x6b,0x58, 0x4,0x6c,0x77, 0x5,0x79,0x33,\n  0xf,0x6c,0x34, 0x4,0x6c,0x78, 0x5,0x7a,0x2e, 0x5,0x7b,0x61,\n  0x5,0x7b,0x62, 0x6,0x23,0x37, 0x5,0x24,0x6f, 0x5,0x24,0x70,\n  0x4,0x27,0x59, 0x4,0x27,0x5a, 0x4,0x27,0x58, 0x6,0x2d,0x4d,\n  0x6,0x2d,0x4c, 0x6,0x2d,0x4f, 0x3,0x2a,0x45, 0x6,0x2d,0x4b,\n  0xf,0x28,0x43, 0x4,0x2a,0x74, 0x6,0x33,0x59, 0x6,0x33,0x5b,\n  0x6,0x33,0x58, 0x5,0x2a,0x77, 0x4,0x2a,0x73, 0x5,0x2a,0x79,\n  0x5,0x2a,0x78, 0x6,0x33,0x5a, 0x6,0x33,0x5c, 0x6,0x33,0x5d,\n  0x5,0x2a,0x7a, 0xf,0x2c,0x71, 0xf,0x2c,0x72, 0xf,0x2c,0x73,\n  0x5,0x2f,0x3f, 0x4,0x2e,0x66, 0x4,0x2e,0x6b, 0x4,0x2e,0x68,\n  0x5,0x2f,0x43, 0x5,0x2f,0x42, 0x5,0x2f,0x41, 0x6,0x3a,0x4c,\n  0x4,0x2e,0x69, 0x4,0x2e,0x6a, 0x4,0x2e,0x67, 0x6,0x3a,0x4a,\n  0x6,0x3a,0x48, 0x5,0x2f,0x40, 0x5,0x2f,0x44, 0xf,0x31,0x58,\n  0xf,0x31,0x59, 0xf,0x31,0x5a, 0x6,0x3a,0x4b, 0x6,0x3a,0x49,\n  0x5,0x34,0x44, 0x5,0x34,0x43, 0x6,0x42,0x6c, 0x6,0x42,0x6b,\n  0x6,0x42,0x6d, 0x5,0x34,0x41, 0x4,0x33,0x6e, 0x5,0x34,0x42,\n  0x5,0x34,0x40, 0x6,0x42,0x6e, 0xf,0x37,0x40, 0xf,0x37,0x41,\n  0xf,0x37,0x42, 0xf,0x37,0x43, 0xf,0x37,0x44, 0x5,0x3a,0x72,\n  0x4,0x39,0x66, 0x5,0x3a,0x74, 0x6,0x4c,0x4e, 0x6,0x4c,0x4a,\n  0x4,0x39,0x69, 0x6,0x4c,0x52, 0x5,0x3a,0x69, 0x5,0x3a,0x6f,\n  0x5,0x3a,0x71, 0x6,0x4c,0x50, 0x5,0x3a,0x67, 0x6,0x4c,0x51,\n  0x5,0x3a,0x68, 0x6,0x4c,0x4b, 0x5,0x3a,0x6a, 0x4,0x39,0x68,\n  0x5,0x3a,0x73, 0x6,0x4c,0x4c, 0x5,0x3a,0x70, 0x6,0x4c,0x49,\n  0x5,0x3a,0x66, 0x5,0x3a,0x6d, 0x6,0x4c,0x4f, 0x5,0x3a,0x6e,\n  0x5,0x3a,0x6b, 0x6,0x4c,0x4d, 0xf,0x3d,0x6b, 0x5,0x41,0x3a,\n  0x6,0x56,0x29, 0x5,0x41,0x3c, 0x5,0x41,0x3b, 0x5,0x41,0x3e,\n  0x6,0x56,0x22, 0x6,0x56,0x24, 0x5,0x3a,0x6c, 0x5,0x41,0x3d,\n  0x5,0x41,0x3f, 0x6,0x56,0x28, 0x6,0x56,0x2b, 0x5,0x41,0x40,\n  0x6,0x56,0x26, 0x6,0x56,0x25, 0xf,0x44,0x3b, 0xf,0x44,0x3d,\n  0xf,0x44,0x3e, 0xf,0x44,0x3f, 0xf,0x44,0x40, 0x6,0x56,0x23,\n  0x6,0x56,0x2a, 0x6,0x57,0x26, 0x4,0x45,0x61, 0x6,0x5f,0x77,\n  0x5,0x48,0x32, 0x6,0x5f,0x76, 0x6,0x5f,0x72, 0x6,0x5f,0x74,\n  0x6,0x5f,0x73, 0x5,0x48,0x31, 0x6,0x5f,0x79, 0xf,0x4a,0x66,\n  0x5,0x48,0x33, 0x6,0x5f,0x71, 0xf,0x44,0x3c, 0x7,0x26,0x3b,\n  0x5,0x4f,0x21, 0x5,0x4f,0x27, 0x5,0x4f,0x2a, 0x5,0x48,0x30,\n  0x7,0x26,0x3a, 0x5,0x4f,0x2b, 0x5,0x4f,0x26, 0x5,0x4f,0x22,\n  0x5,0x4f,0x2c, 0x5,0x4f,0x25, 0x7,0x26,0x39, 0x5,0x4e,0x7e,\n  0x5,0x4f,0x28, 0x5,0x4f,0x24, 0x5,0x4f,0x29, 0x7,0x27,0x2e,\n  0x4,0x4b,0x6d, 0x5,0x56,0x4f, 0x5,0x56,0x51, 0x4,0x52,0x23,\n  0x5,0x56,0x50, 0x4,0x52,0x26, 0x5,0x56,0x49, 0x4,0x52,0x28,\n  0x7,0x30,0x70, 0x5,0x56,0x4a, 0x5,0x56,0x4c, 0x5,0x56,0x4b,\n  0x5,0x56,0x53, 0x5,0x56,0x4d, 0x5,0x56,0x54, 0x7,0x30,0x6e,\n  0x5,0x56,0x4e, 0x5,0x5c,0x65, 0x5,0x56,0x55, 0xf,0x56,0x56,\n  0xf,0x56,0x57, 0xf,0x56,0x58, 0xf,0x56,0x59, 0xf,0x56,0x5a,\n  0x7,0x30,0x71, 0x5,0x5c,0x6a, 0x5,0x5c,0x67, 0x7,0x3a,0x21,\n  0x4,0x57,0x4e, 0x5,0x5c,0x69, 0x7,0x39,0x7c, 0x7,0x39,0x7d,\n  0x7,0x39,0x7b, 0x5,0x5c,0x66, 0x7,0x39,0x7e, 0x7,0x30,0x72,\n  0x5,0x5c,0x68, 0xf,0x5b,0x5b, 0x5,0x63,0x28, 0x5,0x63,0x27,\n  0xf,0x5f,0x74, 0x4,0x60,0x4a, 0x7,0x48,0x44, 0x7,0x48,0x43,\n  0x5,0x68,0x5f, 0x7,0x48,0x42, 0x7,0x4e,0x64, 0x7,0x4e,0x66,\n  0x5,0x68,0x60, 0x4,0x63,0x7b, 0x5,0x6c,0x6e, 0x7,0x54,0x2d,\n  0x7,0x4e,0x67, 0x7,0x4e,0x65, 0xf,0x65,0x64, 0x5,0x70,0x5b,\n  0x7,0x54,0x2b, 0x4,0x66,0x67, 0x4,0x66,0x66, 0x5,0x70,0x59,\n  0x7,0x54,0x2c, 0x5,0x70,0x5a, 0xf,0x68,0x21, 0xf,0x65,0x65,\n  0x5,0x76,0x32, 0x7,0x5c,0x2f, 0x5,0x77,0x71, 0x7,0x61,0x2a,\n  0xf,0x6b,0x59, 0x7,0x5f,0x29, 0x5,0x79,0x34, 0x7,0x62,0x4a,\n  0x5,0x7b,0x63, 0x6,0x28,0x72, 0x6,0x28,0x71, 0x5,0x27,0x49,\n  0x5,0x27,0x4a, 0x4,0x2a,0x75, 0xf,0x2c,0x74, 0xf,0x2c,0x78,\n  0x4,0x2e,0x6f, 0x5,0x2f,0x47, 0x5,0x2f,0x48, 0x4,0x2e,0x6c,\n  0x5,0x2f,0x46, 0x5,0x2f,0x45, 0x4,0x2e,0x6e, 0xf,0x31,0x5c,\n  0xf,0x31,0x5d, 0xf,0x31,0x5e, 0xf,0x31,0x5f, 0xf,0x31,0x61,\n  0xf,0x31,0x62, 0x6,0x3a,0x4d, 0x6,0x3a,0x4e, 0x6,0x42,0x72,\n  0x4,0x33,0x73, 0x6,0x42,0x71, 0x6,0x42,0x73, 0x6,0x42,0x70,\n  0x4,0x33,0x74, 0xf,0x37,0x45, 0xf,0x37,0x47, 0x5,0x34,0x47,\n  0xf,0x37,0x48, 0x4,0x39,0x6b, 0x6,0x4c,0x55, 0x5,0x3a,0x75,\n  0x5,0x3a,0x77, 0x5,0x3a,0x76, 0x5,0x3a,0x78, 0x6,0x4c,0x54,\n  0xf,0x3d,0x6d, 0xf,0x3d,0x6e, 0xf,0x3d,0x6f, 0xf,0x3d,0x70,\n  0x4,0x3f,0x56, 0x4,0x3f,0x58, 0x5,0x41,0x42, 0x4,0x3f,0x59,\n  0x6,0x56,0x2c, 0x5,0x41,0x41, 0x6,0x56,0x2d, 0x6,0x56,0x2e,\n  0xf,0x44,0x41, 0xf,0x44,0x42, 0xf,0x44,0x43, 0x5,0x41,0x43,\n  0x5,0x48,0x34, 0x6,0x5f,0x7a, 0x5,0x48,0x35, 0x4,0x45,0x62,\n  0xf,0x4a,0x67, 0xf,0x4a,0x68, 0xf,0x4a,0x6a, 0xf,0x4a,0x69,\n  0x7,0x26,0x3f, 0x4,0x4b,0x6e, 0x5,0x4f,0x2d, 0xf,0x50,0x73,\n  0xf,0x50,0x74, 0xf,0x50,0x75, 0x7,0x26,0x3d, 0xf,0x56,0x5c,\n  0xf,0x56,0x5b, 0x4,0x57,0x51, 0x7,0x30,0x74, 0x5,0x56,0x56,\n  0xf,0x5b,0x5c, 0x5,0x5c,0x6c, 0x5,0x5d,0x63, 0x7,0x3a,0x22,\n  0x5,0x5c,0x6b, 0x5,0x63,0x2a, 0x7,0x3a,0x23, 0xf,0x5f,0x75,\n  0x7,0x41,0x31, 0x5,0x63,0x29, 0x7,0x4e,0x68, 0x7,0x54,0x2e,\n  0xf,0x65,0x66, 0x7,0x48,0x45, 0x5,0x70,0x5c, 0xf,0x68,0x22,\n  0x7,0x58,0x50, 0xf,0x69,0x5e, 0xf,0x6a,0x68, 0x7,0x61,0x2b,\n  0xf,0x25,0x26, 0x5,0x27,0x4b, 0x6,0x2d,0x50, 0x5,0x27,0x4d,\n  0x5,0x27,0x4c, 0x5,0x2a,0x7c, 0x5,0x2a,0x7d, 0x5,0x2a,0x7b,\n  0x6,0x33,0x5f, 0x6,0x33,0x5e, 0x5,0x2a,0x7e, 0xf,0x2c,0x79,\n  0xf,0x2c,0x7a, 0xf,0x2c,0x7b, 0xf,0x2c,0x7c, 0xf,0x2c,0x7d,\n  0xf,0x29,0x24, 0x5,0x2f,0x4e, 0x5,0x2f,0x49, 0x4,0x2e,0x74,\n  0x5,0x2f,0x4a, 0x5,0x2f,0x4c, 0x5,0x2f,0x4d, 0x6,0x3a,0x50,\n  0x5,0x2f,0x51, 0x5,0x2f,0x4f, 0x5,0x2f,0x4b, 0x6,0x3a,0x4f,\n  0x6,0x3a,0x51, 0x5,0x2f,0x50, 0x5,0x2f,0x52, 0xf,0x31,0x63,\n  0xf,0x31,0x64, 0xf,0x31,0x65, 0xf,0x31,0x66, 0xf,0x31,0x67,\n  0xf,0x31,0x68, 0xf,0x31,0x69, 0xf,0x31,0x6a, 0x4,0x2e,0x76,\n  0x6,0x42,0x74, 0x6,0x42,0x7a, 0x5,0x34,0x4a, 0x4,0x33,0x79,\n  0x5,0x34,0x4d, 0x6,0x42,0x77, 0x5,0x34,0x4c, 0x6,0x42,0x7c,\n  0x4,0x33,0x75, 0x5,0x34,0x4e, 0x6,0x42,0x75, 0x5,0x2f,0x53,\n  0x5,0x34,0x49, 0x6,0x42,0x79, 0x6,0x42,0x7b, 0x5,0x34,0x50,\n  0x5,0x34,0x51, 0x6,0x42,0x78, 0xf,0x37,0x49, 0xf,0x37,0x4a,\n  0xf,0x37,0x4b, 0xf,0x37,0x4c, 0xf,0x37,0x4e, 0xf,0x37,0x4f,\n  0x5,0x3a,0x7c, 0x5,0x3b,0x22, 0x5,0x3a,0x7b, 0x5,0x3a,0x7e,\n  0x4,0x39,0x6c, 0x4,0x39,0x6e, 0x6,0x4c,0x5a, 0x5,0x34,0x4b,\n  0x4,0x39,0x73, 0x5,0x3b,0x21, 0x5,0x3a,0x7a, 0x4,0x39,0x79,\n  0x4,0x39,0x77, 0x4,0x39,0x70, 0x6,0x4c,0x5d, 0x4,0x39,0x78,\n  0x6,0x4c,0x57, 0x5,0x3b,0x25, 0x6,0x4c,0x59, 0x6,0x4c,0x5c,\n  0x5,0x34,0x4f, 0x5,0x3a,0x7d, 0xf,0x3d,0x71, 0xf,0x3d,0x72,\n  0xf,0x3d,0x73, 0xf,0x3d,0x74, 0xf,0x3d,0x75, 0xf,0x3d,0x76,\n  0xf,0x3d,0x78, 0xf,0x3d,0x79, 0xf,0x3d,0x7a, 0xf,0x3d,0x77,\n  0x5,0x3b,0x23, 0x5,0x41,0x54, 0x5,0x41,0x48, 0x5,0x41,0x4f,\n  0x4,0x3f,0x5c, 0x5,0x41,0x4d, 0x5,0x41,0x45, 0x4,0x3f,0x64,\n  0x4,0x3f,0x65, 0x5,0x41,0x50, 0x4,0x3f,0x5f, 0x5,0x3a,0x79,\n  0x6,0x56,0x30, 0x5,0x41,0x46, 0x5,0x41,0x55, 0x5,0x41,0x4b,\n  0x5,0x41,0x52, 0x5,0x41,0x44, 0x5,0x41,0x49, 0x5,0x41,0x4c,\n  0x6,0x56,0x34, 0x6,0x56,0x32, 0x6,0x56,0x37, 0x6,0x56,0x3a,\n  0x6,0x56,0x33, 0x6,0x56,0x36, 0x6,0x56,0x38, 0x6,0x5f,0x7b,\n  0x5,0x41,0x53, 0x5,0x41,0x51, 0x5,0x41,0x4e, 0x5,0x41,0x47,\n  0x6,0x56,0x31, 0x6,0x4c,0x58, 0x6,0x56,0x35, 0x6,0x56,0x39,\n  0xf,0x44,0x44, 0xf,0x44,0x46, 0xf,0x44,0x47, 0xf,0x44,0x48,\n  0xf,0x44,0x49, 0xf,0x44,0x4a, 0xf,0x44,0x4b, 0xf,0x44,0x4c,\n  0xf,0x44,0x4d, 0xf,0x44,0x4e, 0xf,0x44,0x4f, 0xf,0x44,0x50,\n  0x6,0x56,0x2f, 0xf,0x41,0x3e, 0x5,0x48,0x45, 0x5,0x41,0x56,\n  0x4,0x45,0x6c, 0x5,0x48,0x43, 0x6,0x60,0x27, 0x4,0x45,0x67,\n  0x6,0x5f,0x7c, 0x6,0x5f,0x7d, 0x5,0x48,0x3c, 0x5,0x48,0x3b,\n  0x5,0x48,0x42, 0x4,0x45,0x6f, 0x6,0x60,0x28, 0x5,0x48,0x40,\n  0x6,0x60,0x26, 0x5,0x48,0x38, 0x5,0x48,0x39, 0x6,0x60,0x25,\n  0x6,0x60,0x21, 0x5,0x48,0x3a, 0x5,0x48,0x41, 0x5,0x48,0x37,\n  0x5,0x48,0x3d, 0x6,0x60,0x22, 0x5,0x41,0x4a, 0x5,0x48,0x47,\n  0x6,0x5f,0x7e, 0x5,0x48,0x3e, 0x6,0x60,0x24, 0x5,0x48,0x3f,\n  0x4,0x45,0x71, 0x5,0x48,0x44, 0xf,0x4a,0x6b, 0xf,0x4a,0x6c,\n  0xf,0x4a,0x6d, 0xf,0x4a,0x6e, 0xf,0x4a,0x6f, 0xf,0x4a,0x70,\n  0xf,0x4a,0x73, 0xf,0x4a,0x74, 0xf,0x4a,0x75, 0xf,0x4a,0x76,\n  0xf,0x4a,0x77, 0xf,0x4a,0x78, 0xf,0x4a,0x79, 0xf,0x4a,0x7a,\n  0xf,0x4a,0x72, 0xf,0x4a,0x71, 0x5,0x4f,0x3a, 0x7,0x26,0x49,\n  0x7,0x26,0x4b, 0x5,0x4f,0x44, 0x4,0x4c,0x2f, 0x5,0x4f,0x33,\n  0x7,0x26,0x51, 0x7,0x26,0x4a, 0x5,0x4f,0x3e, 0x4,0x4b,0x71,\n  0x4,0x4b,0x6f, 0x5,0x4f,0x41, 0x5,0x4f,0x2f, 0x5,0x4f,0x34,\n  0x5,0x4f,0x43, 0x7,0x26,0x42, 0x5,0x4f,0x40, 0x5,0x4f,0x31,\n  0x4,0x52,0x40, 0x5,0x4f,0x39, 0x5,0x4f,0x42, 0x4,0x4b,0x72,\n  0x4,0x4c,0x29, 0x4,0x4c,0x23, 0x4,0x4b,0x7d, 0x5,0x4f,0x38,\n  0x5,0x4f,0x37, 0x5,0x4f,0x3c, 0x7,0x26,0x4e, 0x5,0x48,0x48,\n  0x5,0x4f,0x35, 0x7,0x26,0x50, 0x7,0x26,0x47, 0x7,0x26,0x44,\n  0x5,0x4f,0x3f, 0x7,0x26,0x40, 0x7,0x26,0x53, 0x4,0x4c,0x24,\n  0x7,0x26,0x4f, 0x4,0x4b,0x7c, 0x7,0x26,0x4c, 0x5,0x4f,0x3d,\n  0x7,0x26,0x45, 0x7,0x26,0x43, 0x5,0x4f,0x2e, 0x7,0x26,0x48,\n  0x7,0x26,0x46, 0x5,0x4f,0x46, 0xf,0x50,0x78, 0x7,0x26,0x52,\n  0xf,0x50,0x77, 0xf,0x50,0x7a, 0xf,0x50,0x7b, 0xf,0x50,0x7c,\n  0xf,0x50,0x7d, 0xf,0x50,0x7e, 0xf,0x51,0x22, 0xf,0x51,0x24,\n  0xf,0x51,0x29, 0xf,0x51,0x25, 0xf,0x51,0x26, 0xf,0x51,0x27,\n  0xf,0x51,0x2a, 0x5,0x56,0x64, 0x4,0x52,0x41, 0x4,0x52,0x3e,\n  0x5,0x56,0x58, 0x5,0x56,0x5e, 0x5,0x56,0x66, 0x7,0x31,0x2a,\n  0x5,0x56,0x5c, 0x4,0x52,0x2e, 0x5,0x56,0x5d, 0x4,0x52,0x2c,\n  0x5,0x56,0x68, 0x7,0x26,0x41, 0x7,0x31,0x25, 0x4,0x52,0x32,\n  0x5,0x56,0x67, 0x4,0x52,0x31, 0x7,0x31,0x29, 0x4,0x52,0x3c,\n  0x7,0x30,0x7e, 0x7,0x31,0x26, 0x4,0x52,0x30, 0x5,0x56,0x60,\n  0x7,0x30,0x7b, 0x4,0x52,0x3f, 0x5,0x56,0x5f, 0x5,0x56,0x59,\n  0x7,0x30,0x7a, 0x7,0x31,0x28, 0x4,0x52,0x2a, 0x5,0x56,0x57,\n  0x7,0x31,0x24, 0x4,0x52,0x35, 0x5,0x56,0x65, 0x7,0x30,0x7d,\n  0x5,0x56,0x62, 0x4,0x52,0x33, 0x7,0x31,0x2b, 0x7,0x30,0x75,\n  0x7,0x31,0x27, 0x5,0x4f,0x30, 0x5,0x56,0x63, 0x5,0x56,0x5a,\n  0x7,0x30,0x78, 0x7,0x31,0x23, 0x7,0x30,0x76, 0x5,0x56,0x61,\n  0xf,0x56,0x72, 0x5,0x56,0x5b, 0x7,0x30,0x7c, 0x7,0x30,0x77,\n  0x7,0x31,0x22, 0xf,0x56,0x5d, 0xf,0x56,0x5e, 0xf,0x56,0x60,\n  0xf,0x56,0x61, 0xf,0x56,0x62, 0xf,0x56,0x63, 0xf,0x56,0x64,\n  0xf,0x56,0x65, 0xf,0x56,0x66, 0xf,0x56,0x67, 0xf,0x56,0x68,\n  0xf,0x56,0x69, 0xf,0x56,0x6a, 0xf,0x56,0x6b, 0xf,0x56,0x6c,\n  0xf,0x56,0x6d, 0xf,0x56,0x6e, 0xf,0x56,0x6f, 0xf,0x56,0x70,\n  0xf,0x56,0x71, 0xf,0x56,0x73, 0x7,0x30,0x79, 0xf,0x50,0x79,\n  0x5,0x5d,0x24, 0x5,0x5d,0x21, 0x4,0x57,0x5d, 0x5,0x5c,0x75,\n  0x5,0x5d,0x2d, 0x5,0x5c,0x79, 0x4,0x57,0x5c, 0x4,0x57,0x63,\n  0x4,0x57,0x67, 0x7,0x3a,0x2c, 0x5,0x5d,0x2b, 0x4,0x57,0x60,\n  0x5,0x5d,0x22, 0x5,0x5c,0x70, 0x5,0x5d,0x23, 0x5,0x5c,0x72,\n  0x5,0x5d,0x31, 0x5,0x5c,0x7b, 0x5,0x5d,0x2a, 0x5,0x5c,0x77,\n  0x5,0x5d,0x34, 0x7,0x3a,0x24, 0x5,0x5c,0x76, 0x5,0x5c,0x7c,\n  0x5,0x5d,0x26, 0x4,0x57,0x64, 0x5,0x5d,0x27, 0x7,0x3a,0x29,\n  0x5,0x63,0x42, 0x5,0x5d,0x2c, 0x5,0x5c,0x7a, 0x7,0x3a,0x2f,\n  0x7,0x3a,0x28, 0x5,0x5c,0x6f, 0x5,0x5d,0x32, 0x5,0x5d,0x29,\n  0x5,0x5c,0x73, 0x7,0x3a,0x2b, 0x5,0x5d,0x2e, 0x5,0x5c,0x71,\n  0x5,0x5c,0x6e, 0x5,0x5d,0x28, 0x4,0x57,0x66, 0x4,0x5c,0x3c,\n  0x5,0x5d,0x33, 0x5,0x5c,0x78, 0x5,0x5d,0x2f, 0x5,0x5d,0x25,\n  0x7,0x31,0x21, 0x5,0x5c,0x74, 0x7,0x3a,0x27, 0x7,0x3a,0x26,\n  0x7,0x3a,0x25, 0x7,0x3a,0x2d, 0xf,0x5b,0x5d, 0xf,0x5b,0x5e,\n  0xf,0x5b,0x60, 0xf,0x5b,0x61, 0xf,0x5b,0x62, 0xf,0x5b,0x63,\n  0xf,0x5b,0x64, 0xf,0x5b,0x66, 0xf,0x5b,0x67, 0xf,0x5b,0x68,\n  0xf,0x5b,0x69, 0x7,0x3a,0x2a, 0x7,0x3a,0x2e, 0x4,0x57,0x68,\n  0xf,0x5b,0x65, 0x4,0x57,0x61, 0x5,0x63,0x4b, 0x5,0x63,0x47,\n  0x5,0x5d,0x35, 0x4,0x5c,0x52, 0x5,0x63,0x45, 0x5,0x63,0x38,\n  0x5,0x63,0x33, 0x4,0x5c,0x47, 0x5,0x63,0x4a, 0x5,0x63,0x40,\n  0x3,0x58,0x4f, 0x5,0x63,0x2e, 0x4,0x5c,0x4e, 0x4,0x5c,0x45,\n  0x5,0x63,0x43, 0x5,0x63,0x39, 0x5,0x63,0x4c, 0x4,0x5c,0x3d,\n  0x7,0x41,0x3b, 0x5,0x63,0x46, 0x5,0x63,0x30, 0x5,0x63,0x37,\n  0x4,0x5c,0x3e, 0x4,0x5c,0x3f, 0x5,0x63,0x48, 0x7,0x41,0x39,\n  0x5,0x63,0x35, 0x5,0x63,0x32, 0x5,0x63,0x3f, 0x7,0x41,0x35,\n  0x5,0x63,0x2c, 0x7,0x41,0x36, 0x4,0x5c,0x41, 0x7,0x41,0x33,\n  0x4,0x5c,0x53, 0x5,0x63,0x3e, 0x7,0x41,0x38, 0x5,0x63,0x3d,\n  0x7,0x41,0x3a, 0x7,0x41,0x3e, 0x7,0x41,0x34, 0x5,0x63,0x31,\n  0x4,0x5c,0x4d, 0x5,0x63,0x36, 0x5,0x63,0x3a, 0x5,0x63,0x44,\n  0x5,0x63,0x49, 0x5,0x63,0x3c, 0x5,0x63,0x2d, 0x7,0x41,0x42,\n  0x7,0x41,0x41, 0x5,0x63,0x3b, 0x5,0x63,0x2b, 0x5,0x63,0x2f,\n  0x7,0x41,0x32, 0x7,0x41,0x37, 0xf,0x5f,0x76, 0xf,0x5f,0x77,\n  0xf,0x5f,0x78, 0xf,0x5f,0x79, 0xf,0x5f,0x7a, 0xf,0x5f,0x7b,\n  0xf,0x5f,0x7c, 0xf,0x5f,0x7d, 0xf,0x5f,0x7e, 0xf,0x60,0x21,\n  0xf,0x60,0x23, 0xf,0x60,0x24, 0xf,0x60,0x25, 0x7,0x41,0x40,\n  0x7,0x41,0x3d, 0xf,0x5b,0x6a, 0xf,0x63,0x36, 0xf,0x63,0x37,\n  0xf,0x60,0x22, 0x5,0x68,0x6a, 0x5,0x68,0x6f, 0x7,0x48,0x4e,\n  0x4,0x60,0x59, 0x7,0x48,0x4c, 0x5,0x68,0x63, 0x4,0x60,0x54,\n  0x4,0x60,0x55, 0x4,0x60,0x51, 0x5,0x68,0x69, 0x4,0x60,0x4f,\n  0x4,0x60,0x50, 0x7,0x48,0x48, 0x4,0x60,0x52, 0x5,0x68,0x62,\n  0x4,0x60,0x58, 0x4,0x60,0x4d, 0x7,0x48,0x47, 0x5,0x68,0x6d,\n  0x5,0x68,0x68, 0x5,0x68,0x70, 0x5,0x68,0x6c, 0x5,0x68,0x6b,\n  0x5,0x68,0x65, 0x5,0x68,0x64, 0x5,0x68,0x67, 0x7,0x48,0x46,\n  0x7,0x48,0x4a, 0x5,0x68,0x61, 0x5,0x68,0x71, 0x7,0x48,0x49,\n  0xf,0x63,0x31, 0xf,0x63,0x33, 0xf,0x63,0x34, 0xf,0x63,0x35,\n  0xf,0x63,0x38, 0xf,0x63,0x39, 0xf,0x63,0x3a, 0xf,0x63,0x3b,\n  0xf,0x63,0x3c, 0x7,0x48,0x4b, 0x7,0x48,0x4d, 0x5,0x6c,0x7c,\n  0x5,0x6c,0x7b, 0x5,0x6c,0x76, 0x4,0x60,0x57, 0x5,0x6c,0x74,\n  0x7,0x4e,0x6c, 0x5,0x6c,0x7a, 0x4,0x63,0x7d, 0x7,0x4e,0x74,\n  0x4,0x64,0x22, 0x5,0x6c,0x78, 0x5,0x6c,0x73, 0x4,0x66,0x70,\n  0x7,0x4e,0x6a, 0x5,0x6c,0x6f, 0x5,0x6c,0x75, 0x5,0x6c,0x71,\n  0x7,0x4e,0x69, 0x7,0x4e,0x75, 0x5,0x6c,0x77, 0x7,0x4e,0x6d,\n  0x7,0x4e,0x6e, 0x5,0x6c,0x72, 0x7,0x4e,0x6f, 0x7,0x54,0x38,\n  0x7,0x4e,0x71, 0x7,0x4e,0x70, 0x7,0x4e,0x72, 0x7,0x4e,0x73,\n  0xf,0x65,0x68, 0xf,0x65,0x69, 0x7,0x4e,0x6b, 0x5,0x70,0x64,\n  0x5,0x70,0x68, 0x5,0x70,0x69, 0x4,0x66,0x71, 0x4,0x66,0x6b,\n  0x5,0x70,0x66, 0x5,0x70,0x6b, 0x7,0x54,0x2f, 0x5,0x70,0x5e,\n  0x5,0x70,0x63, 0x5,0x70,0x60, 0x4,0x64,0x21, 0x5,0x70,0x67,\n  0x5,0x70,0x5f, 0x5,0x6c,0x70, 0x7,0x54,0x35, 0x5,0x70,0x6a,\n  0x5,0x70,0x5d, 0x7,0x54,0x31, 0x5,0x70,0x65, 0x4,0x69,0x27,\n  0x5,0x70,0x6c, 0x7,0x54,0x36, 0x7,0x54,0x30, 0x7,0x54,0x34,\n  0xf,0x68,0x23, 0xf,0x68,0x24, 0xf,0x68,0x25, 0xf,0x68,0x26,\n  0xf,0x68,0x27, 0xf,0x68,0x28, 0xf,0x68,0x29, 0x7,0x54,0x33,\n  0x7,0x54,0x39, 0x7,0x54,0x32, 0x7,0x58,0x55, 0x4,0x69,0x24,\n  0x4,0x69,0x23, 0x5,0x73,0x70, 0x5,0x73,0x6e, 0x5,0x70,0x62,\n  0x5,0x73,0x71, 0x7,0x58,0x52, 0x5,0x70,0x6d, 0x7,0x58,0x51,\n  0x5,0x73,0x74, 0x4,0x69,0x25, 0x5,0x73,0x6d, 0x7,0x58,0x54,\n  0x7,0x54,0x37, 0x5,0x73,0x76, 0x5,0x73,0x73, 0x5,0x73,0x6f,\n  0x5,0x73,0x75, 0x5,0x73,0x72, 0x7,0x58,0x56, 0xf,0x69,0x5f,\n  0xf,0x69,0x60, 0xf,0x69,0x61, 0xf,0x69,0x62, 0x7,0x58,0x53,\n  0x7,0x59,0x34, 0x4,0x6a,0x5e, 0x5,0x76,0x33, 0x7,0x5c,0x31,\n  0x5,0x76,0x34, 0x4,0x6a,0x5f, 0x4,0x6a,0x60, 0x4,0x6a,0x62,\n  0x7,0x5c,0x30, 0x5,0x76,0x36, 0x7,0x5c,0x32, 0x5,0x76,0x35,\n  0x7,0x5c,0x36, 0x7,0x5c,0x35, 0xf,0x6a,0x69, 0x7,0x5c,0x33,\n  0x7,0x5c,0x37, 0x7,0x5c,0x34, 0x5,0x77,0x72, 0x7,0x5f,0x2b,\n  0x7,0x5f,0x2e, 0x5,0x77,0x74, 0x5,0x77,0x75, 0x7,0x5f,0x2d,\n  0x5,0x76,0x37, 0x7,0x5f,0x2c, 0x7,0x5f,0x2a, 0x5,0x77,0x73,\n  0x7,0x5f,0x31, 0x4,0x6b,0x77, 0xf,0x6b,0x5a, 0xf,0x6b,0x5b,\n  0xf,0x6b,0x5c, 0x7,0x5f,0x2f, 0x5,0x79,0x35, 0x7,0x61,0x2c,\n  0x7,0x61,0x2e, 0x7,0x61,0x31, 0x4,0x6c,0x79, 0x7,0x61,0x2f,\n  0x7,0x5f,0x30, 0x7,0x61,0x2d, 0x5,0x7a,0x31, 0x5,0x7a,0x2f,\n  0x5,0x7a,0x30, 0x7,0x61,0x30, 0xf,0x6c,0x4f, 0xf,0x6c,0x4d,\n  0x7,0x63,0x5e, 0x7,0x63,0x5f, 0xf,0x6c,0x68, 0x7,0x63,0x60,\n  0x5,0x7b,0x44, 0x5,0x7b,0x64, 0xf,0x6d,0x27, 0x7,0x64,0x54,\n  0x4,0x6e,0x4e, 0x5,0x7b,0x7c, 0x5,0x7c,0x2b, 0x5,0x24,0x71,\n  0xf,0x25,0x27, 0x5,0x27,0x4e, 0x6,0x2d,0x51, 0xf,0x28,0x45,\n  0x6,0x33,0x61, 0x5,0x2b,0x22, 0x6,0x33,0x60, 0x5,0x2b,0x23,\n  0xf,0x2c,0x7e, 0xf,0x2d,0x22, 0x6,0x3a,0x52, 0x5,0x2f,0x54,\n  0x6,0x3a,0x56, 0x5,0x2f,0x55, 0x6,0x3a,0x54, 0x5,0x2f,0x56,\n  0xf,0x31,0x6b, 0xf,0x31,0x6c, 0xf,0x31,0x6d, 0xf,0x31,0x6e,\n  0x6,0x3a,0x53, 0x6,0x3a,0x55, 0x4,0x33,0x7e, 0x5,0x34,0x55,\n  0x4,0x34,0x24, 0x5,0x34,0x54, 0x4,0x34,0x21, 0x5,0x34,0x58,\n  0x5,0x34,0x53, 0x5,0x34,0x56, 0x5,0x34,0x57, 0x4,0x34,0x23,\n  0x5,0x34,0x5a, 0x5,0x34,0x52, 0x6,0x42,0x7d, 0x6,0x4c,0x63,\n  0x6,0x43,0x21, 0xf,0x37,0x50, 0xf,0x37,0x51, 0x6,0x42,0x7e,\n  0xf,0x37,0x52, 0x5,0x3b,0x26, 0x4,0x39,0x7a, 0x6,0x4c,0x61,\n  0x6,0x4c,0x5e, 0x6,0x4c,0x65, 0x5,0x3b,0x28, 0x4,0x3a,0x21,\n  0x6,0x4c,0x64, 0x6,0x4c,0x5f, 0xf,0x3d,0x7c, 0xf,0x3d,0x7e,\n  0xf,0x3e,0x22, 0xf,0x3d,0x7b, 0x6,0x4c,0x62, 0x5,0x41,0x57,\n  0x4,0x3f,0x68, 0x6,0x56,0x3d, 0x5,0x41,0x59, 0x5,0x41,0x5a,\n  0x5,0x3b,0x27, 0x5,0x41,0x58, 0x6,0x56,0x3f, 0x6,0x56,0x3e,\n  0x4,0x39,0x7e, 0x5,0x41,0x5b, 0x5,0x41,0x5d, 0x5,0x41,0x5c,\n  0x6,0x56,0x41, 0xf,0x44,0x52, 0xf,0x44,0x53, 0xf,0x44,0x55,\n  0xf,0x44,0x56, 0x6,0x56,0x3b, 0xf,0x44,0x54, 0x6,0x56,0x40,\n  0xf,0x44,0x51, 0x6,0x60,0x2d, 0x5,0x48,0x4a, 0x6,0x60,0x2b,\n  0x6,0x60,0x2e, 0x5,0x48,0x4c, 0x4,0x45,0x73, 0x6,0x56,0x3c,\n  0x6,0x60,0x33, 0x6,0x60,0x32, 0x5,0x48,0x4b, 0x6,0x60,0x30,\n  0x5,0x48,0x49, 0x5,0x48,0x4d, 0xf,0x4a,0x7c, 0xf,0x4a,0x7d,\n  0xf,0x4a,0x7e, 0xf,0x4b,0x21, 0xf,0x4b,0x22, 0xf,0x4b,0x23,\n  0xf,0x4b,0x25, 0xf,0x4b,0x26, 0xf,0x4b,0x28, 0xf,0x4b,0x29,\n  0xf,0x4b,0x2a, 0xf,0x4b,0x2d, 0x6,0x60,0x2f, 0xf,0x4b,0x2c,\n  0x6,0x60,0x29, 0x6,0x60,0x2a, 0xf,0x4b,0x24, 0x7,0x26,0x58,\n  0x7,0x26,0x54, 0x4,0x4c,0x36, 0x5,0x4f,0x4b, 0x7,0x26,0x55,\n  0x7,0x26,0x59, 0x4,0x4c,0x33, 0x5,0x4f,0x4a, 0x5,0x4f,0x4c,\n  0x5,0x4f,0x50, 0x5,0x48,0x4e, 0x5,0x4f,0x4f, 0x5,0x4f,0x4d,\n  0x7,0x26,0x5b, 0x7,0x26,0x56, 0x5,0x4f,0x49, 0x4,0x4c,0x34,\n  0x5,0x4f,0x4e, 0x4,0x4c,0x32, 0x7,0x26,0x5a, 0x5,0x4f,0x48,\n  0x5,0x4f,0x47, 0xf,0x51,0x2b, 0xf,0x51,0x2c, 0xf,0x51,0x2d,\n  0xf,0x51,0x2f, 0x5,0x56,0x6e, 0x5,0x56,0x6c, 0x5,0x5d,0x3c,\n  0x4,0x52,0x43, 0x5,0x56,0x6b, 0x4,0x52,0x42, 0x7,0x31,0x2f,\n  0x7,0x31,0x30, 0x5,0x56,0x6f, 0x7,0x31,0x2c, 0x5,0x56,0x6a,\n  0x5,0x56,0x6d, 0x5,0x56,0x70, 0xf,0x56,0x74, 0xf,0x56,0x75,\n  0x7,0x31,0x2e, 0x5,0x5d,0x36, 0x5,0x5d,0x38, 0x7,0x3a,0x30,\n  0x5,0x5d,0x39, 0x5,0x5d,0x37, 0x5,0x5d,0x3a, 0x5,0x5d,0x3b,\n  0x7,0x3a,0x32, 0x7,0x3a,0x34, 0x7,0x3a,0x35, 0x7,0x3a,0x31,\n  0xf,0x5b,0x6b, 0xf,0x5b,0x6c, 0xf,0x5b,0x6d, 0xf,0x5b,0x6f,\n  0xf,0x5b,0x70, 0xf,0x5b,0x71, 0xf,0x5b,0x72, 0x4,0x57,0x6c,\n  0x5,0x63,0x52, 0x7,0x41,0x45, 0x4,0x5c,0x57, 0x5,0x63,0x53,\n  0x5,0x63,0x4f, 0x7,0x48,0x56, 0x5,0x63,0x51, 0x5,0x5d,0x3d,\n  0x7,0x41,0x46, 0x5,0x63,0x50, 0x7,0x4e,0x78, 0x5,0x63,0x4d,\n  0x7,0x41,0x43, 0xf,0x60,0x27, 0xf,0x60,0x28, 0xf,0x60,0x29,\n  0xf,0x5b,0x6e, 0x5,0x68,0x74, 0x7,0x48,0x4f, 0x7,0x48,0x50,\n  0x4,0x60,0x5e, 0x4,0x60,0x5c, 0x5,0x68,0x73, 0x5,0x70,0x6e,\n  0x7,0x48,0x52, 0x7,0x48,0x53, 0x7,0x41,0x48, 0x4,0x60,0x5f,\n  0x4,0x5c,0x58, 0x5,0x68,0x75, 0x7,0x41,0x47, 0x5,0x68,0x72,\n  0xf,0x63,0x3e, 0x7,0x48,0x51, 0x7,0x48,0x54, 0x7,0x48,0x55,\n  0xf,0x63,0x3f, 0x7,0x4e,0x77, 0x5,0x6c,0x7e, 0x7,0x4e,0x76,\n  0xf,0x65,0x6a, 0xf,0x65,0x6b, 0x4,0x66,0x73, 0x4,0x66,0x72,\n  0x5,0x70,0x6f, 0x7,0x54,0x3d, 0x7,0x54,0x3c, 0xf,0x68,0x2a,\n  0xf,0x68,0x2b, 0x7,0x54,0x3b, 0x5,0x73,0x77, 0x7,0x58,0x57,\n  0x5,0x73,0x78, 0x4,0x6a,0x63, 0x4,0x6a,0x64, 0x7,0x5c,0x38,\n  0xf,0x6a,0x6a, 0x5,0x76,0x38, 0x7,0x5c,0x39, 0x7,0x5f,0x32,\n  0x5,0x77,0x77, 0x5,0x77,0x76, 0x5,0x79,0x38, 0x7,0x61,0x33,\n  0x5,0x79,0x37, 0x5,0x79,0x36, 0x7,0x61,0x32, 0x7,0x62,0x4c,\n  0x4,0x6d,0x5d, 0x5,0x7a,0x32, 0x7,0x62,0x4b, 0x5,0x7a,0x33,\n  0x7,0x63,0x62, 0x7,0x63,0x61, 0x5,0x7b,0x7d, 0x7,0x66,0x36,\n  0x5,0x27,0x4f, 0x6,0x2d,0x52, 0x5,0x27,0x50, 0xf,0x28,0x47,\n  0xf,0x28,0x48, 0x5,0x27,0x51, 0x5,0x2b,0x26, 0x6,0x33,0x62,\n  0x6,0x33,0x65, 0x5,0x2b,0x24, 0x5,0x2b,0x25, 0x6,0x33,0x67,\n  0x6,0x33,0x63, 0x5,0x2b,0x27, 0xf,0x2d,0x23, 0x6,0x33,0x68,\n  0x6,0x3a,0x5b, 0x6,0x3a,0x57, 0x4,0x2e,0x79, 0x6,0x3a,0x63,\n  0x4,0x2e,0x7b, 0x6,0x3a,0x5d, 0x6,0x3a,0x5c, 0x6,0x3a,0x5f,\n  0x5,0x2f,0x5a, 0x4,0x2e,0x7a, 0x4,0x2f,0x24, 0x6,0x3a,0x64,\n  0x6,0x3a,0x59, 0x4,0x2f,0x23, 0x6,0x3a,0x5e, 0x4,0x2f,0x22,\n  0x6,0x3a,0x60, 0x6,0x3a,0x58, 0x5,0x2f,0x59, 0x6,0x3a,0x61,\n  0x5,0x2f,0x58, 0x5,0x2f,0x57, 0x6,0x3a,0x5a, 0xf,0x31,0x71,\n  0xf,0x31,0x72, 0xf,0x31,0x73, 0xf,0x31,0x74, 0xf,0x31,0x75,\n  0xf,0x31,0x76, 0xf,0x31,0x77, 0x4,0x2f,0x26, 0x6,0x3a,0x62,\n  0x5,0x34,0x5f, 0x5,0x34,0x5d, 0x4,0x34,0x32, 0x4,0x34,0x28,\n  0x4,0x34,0x2a, 0x6,0x43,0x28, 0x4,0x34,0x2f, 0x5,0x34,0x5e,\n  0x4,0x34,0x31, 0x6,0x43,0x29, 0x5,0x34,0x5b, 0x4,0x34,0x2c,\n  0x6,0x43,0x2b, 0x6,0x43,0x2a, 0x6,0x43,0x25, 0x6,0x43,0x23,\n  0x6,0x43,0x24, 0x5,0x34,0x5c, 0xf,0x37,0x58, 0xf,0x37,0x59,\n  0xf,0x37,0x5a, 0xf,0x37,0x5b, 0x6,0x43,0x27, 0x6,0x43,0x2c,\n  0xf,0x37,0x55, 0x5,0x3b,0x31, 0x5,0x3b,0x30, 0x5,0x3b,0x2e,\n  0x5,0x3b,0x32, 0x6,0x4c,0x6d, 0x4,0x3a,0x23, 0x6,0x4c,0x66,\n  0x6,0x4c,0x6c, 0x4,0x3a,0x22, 0x4,0x3a,0x24, 0x6,0x4c,0x6e,\n  0x6,0x43,0x26, 0x6,0x4c,0x67, 0x6,0x4c,0x70, 0x6,0x4c,0x68,\n  0x5,0x3b,0x2d, 0x6,0x4c,0x6a, 0x6,0x4c,0x69, 0x6,0x4c,0x6f,\n  0x5,0x3b,0x2a, 0x5,0x3b,0x29, 0x5,0x3b,0x2b, 0xf,0x3e,0x25,\n  0xf,0x3e,0x26, 0xf,0x3e,0x27, 0xf,0x3e,0x28, 0xf,0x3e,0x29,\n  0xf,0x3e,0x2a, 0xf,0x3e,0x2b, 0xf,0x3e,0x2c, 0xf,0x3e,0x2d,\n  0xf,0x3e,0x2e, 0x6,0x4c,0x6b, 0x5,0x3b,0x2f, 0x6,0x56,0x4b,\n  0x6,0x56,0x42, 0x5,0x41,0x5f, 0x5,0x41,0x5e, 0x4,0x3f,0x6c,\n  0x6,0x56,0x44, 0x4,0x3f,0x6d, 0x6,0x56,0x48, 0x6,0x56,0x45,\n  0x4,0x3f,0x69, 0x5,0x41,0x61, 0x5,0x41,0x60, 0x6,0x56,0x43,\n  0x6,0x56,0x49, 0x4,0x3a,0x25, 0x4,0x3f,0x6b, 0x6,0x56,0x46,\n  0x5,0x41,0x62, 0x6,0x56,0x4c, 0x6,0x56,0x4d, 0x4,0x3f,0x72,\n  0x6,0x56,0x4a, 0xf,0x44,0x57, 0xf,0x44,0x58, 0xf,0x44,0x59,\n  0xf,0x44,0x5a, 0xf,0x44,0x5b, 0xf,0x44,0x5c, 0xf,0x44,0x5d,\n  0xf,0x44,0x5e, 0xf,0x44,0x5f, 0xf,0x44,0x60, 0xf,0x44,0x61,\n  0xf,0x44,0x62, 0x6,0x56,0x47, 0x4,0x3f,0x70, 0x4,0x45,0x78,\n  0x5,0x48,0x50, 0x4,0x45,0x76, 0x5,0x48,0x52, 0x6,0x60,0x3f,\n  0x6,0x60,0x3e, 0x5,0x48,0x56, 0x4,0x45,0x7a, 0x5,0x48,0x55,\n  0x4,0x45,0x77, 0x6,0x60,0x39, 0x6,0x60,0x43, 0x6,0x60,0x42,\n  0x6,0x60,0x36, 0x4,0x45,0x7d, 0x5,0x48,0x4f, 0x5,0x41,0x63,\n  0x6,0x60,0x41, 0x5,0x48,0x51, 0x6,0x60,0x3c, 0x6,0x60,0x34,\n  0x5,0x48,0x53, 0x5,0x48,0x57, 0x6,0x60,0x40, 0x6,0x60,0x3b,\n  0x4,0x46,0x22, 0x6,0x60,0x38, 0xf,0x4b,0x2e, 0xf,0x4b,0x2f,\n  0xf,0x4b,0x30, 0xf,0x4b,0x31, 0xf,0x4b,0x32, 0xf,0x4b,0x33,\n  0xf,0x4b,0x34, 0xf,0x4b,0x35, 0xf,0x4b,0x36, 0xf,0x4b,0x37,\n  0x6,0x60,0x35, 0x6,0x60,0x37, 0x6,0x60,0x3d, 0x4,0x4c,0x38,\n  0x4,0x4c,0x43, 0x7,0x26,0x60, 0x4,0x4c,0x42, 0x4,0x4c,0x3b,\n  0x5,0x4f,0x5b, 0x5,0x4f,0x59, 0x4,0x52,0x48, 0x5,0x4f,0x58,\n  0x5,0x4f,0x5d, 0x5,0x4f,0x55, 0x4,0x4c,0x46, 0x5,0x4f,0x5a,\n  0x7,0x26,0x6c, 0x7,0x26,0x5e, 0x7,0x26,0x64, 0x5,0x4f,0x5c,\n  0x5,0x4f,0x52, 0x7,0x26,0x61, 0x7,0x26,0x66, 0x5,0x4f,0x57,\n  0x4,0x4c,0x41, 0x4,0x4c,0x39, 0x7,0x26,0x5d, 0x7,0x26,0x65,\n  0x7,0x26,0x5c, 0x7,0x26,0x67, 0x6,0x60,0x3a, 0x7,0x26,0x6d,\n  0x7,0x26,0x6b, 0x5,0x4f,0x51, 0x5,0x4f,0x56, 0x5,0x4f,0x5e,\n  0xf,0x51,0x30, 0xf,0x51,0x31, 0xf,0x51,0x32, 0xf,0x51,0x33,\n  0xf,0x51,0x34, 0xf,0x51,0x35, 0xf,0x51,0x38, 0xf,0x51,0x39,\n  0xf,0x51,0x3a, 0xf,0x51,0x3d, 0xf,0x51,0x3e, 0xf,0x51,0x3f,\n  0x7,0x26,0x62, 0x7,0x26,0x68, 0x7,0x26,0x5f, 0x7,0x26,0x63,\n  0x7,0x31,0x46, 0x4,0x52,0x46, 0x7,0x31,0x43, 0x7,0x31,0x44,\n  0x4,0x52,0x4a, 0x7,0x31,0x40, 0x7,0x31,0x3d, 0x5,0x56,0x74,\n  0x5,0x56,0x76, 0x7,0x31,0x31, 0x7,0x31,0x42, 0x7,0x31,0x32,\n  0x7,0x3a,0x36, 0x7,0x31,0x33, 0x7,0x31,0x36, 0x5,0x56,0x75,\n  0x5,0x56,0x77, 0x5,0x56,0x73, 0x5,0x5d,0x45, 0x4,0x52,0x45,\n  0x5,0x56,0x71, 0x5,0x56,0x72, 0x4,0x52,0x4b, 0x7,0x31,0x3a,\n  0x7,0x31,0x37, 0x7,0x31,0x38, 0x7,0x31,0x41, 0x4,0x52,0x4d,\n  0x7,0x31,0x35, 0x5,0x56,0x79, 0x7,0x31,0x34, 0x7,0x31,0x45,\n  0x7,0x31,0x3b, 0x5,0x56,0x78, 0x7,0x31,0x3f, 0x7,0x31,0x3e,\n  0x7,0x31,0x39, 0x7,0x31,0x3c, 0xf,0x56,0x76, 0xf,0x56,0x77,\n  0xf,0x56,0x78, 0xf,0x56,0x79, 0xf,0x56,0x7a, 0xf,0x56,0x7b,\n  0xf,0x56,0x7c, 0xf,0x56,0x7d, 0xf,0x56,0x7e, 0x7,0x3a,0x44,\n  0x7,0x3a,0x43, 0x5,0x5d,0x43, 0x5,0x5d,0x40, 0x4,0x57,0x71,\n  0x7,0x3a,0x37, 0x5,0x5d,0x41, 0x7,0x3a,0x42, 0x4,0x57,0x6f,\n  0x7,0x3a,0x3a, 0x5,0x5d,0x44, 0x5,0x5d,0x3e, 0x7,0x3a,0x3e,\n  0x7,0x3a,0x3b, 0x7,0x3a,0x3c, 0x7,0x3a,0x40, 0x5,0x5d,0x42,\n  0x7,0x3a,0x41, 0x7,0x3a,0x3d, 0x5,0x5d,0x47, 0xf,0x5b,0x73,\n  0xf,0x5b,0x74, 0xf,0x5b,0x75, 0xf,0x5b,0x77, 0xf,0x5b,0x78,\n  0xf,0x5b,0x79, 0xf,0x5b,0x7a, 0xf,0x5b,0x7b, 0xf,0x5b,0x7c,\n  0xf,0x5b,0x7d, 0xf,0x5b,0x7e, 0xf,0x5c,0x21, 0xf,0x5c,0x22,\n  0x7,0x3a,0x3f, 0x7,0x3a,0x38, 0x4,0x5c,0x64, 0x4,0x5c,0x5c,\n  0x7,0x41,0x4e, 0x4,0x5c,0x63, 0x4,0x5c,0x5d, 0x7,0x41,0x4d,\n  0x7,0x41,0x54, 0x4,0x5c,0x61, 0x4,0x57,0x70, 0x7,0x41,0x49,\n  0x5,0x63,0x55, 0x5,0x63,0x58, 0x5,0x63,0x57, 0x7,0x41,0x4b,\n  0x7,0x41,0x51, 0x5,0x63,0x56, 0x7,0x41,0x4a, 0x7,0x41,0x4f,\n  0x7,0x41,0x52, 0x7,0x41,0x4c, 0x7,0x41,0x57, 0x7,0x41,0x55,\n  0x7,0x41,0x50, 0x7,0x41,0x5b, 0x5,0x63,0x5a, 0x7,0x41,0x56,\n  0xf,0x60,0x2a, 0xf,0x60,0x2b, 0xf,0x60,0x2c, 0xf,0x60,0x2d,\n  0xf,0x60,0x2e, 0xf,0x60,0x2f, 0xf,0x60,0x30, 0xf,0x60,0x31,\n  0xf,0x60,0x32, 0x5,0x63,0x59, 0x7,0x41,0x5c, 0x7,0x41,0x5a,\n  0x7,0x41,0x58, 0x7,0x41,0x53, 0x4,0x60,0x64, 0x4,0x60,0x65,\n  0x7,0x48,0x5f, 0x4,0x60,0x69, 0x7,0x48,0x67, 0x5,0x68,0x76,\n  0x7,0x48,0x64, 0x4,0x60,0x67, 0x7,0x48,0x66, 0x4,0x60,0x6b,\n  0x5,0x68,0x79, 0x4,0x60,0x60, 0x5,0x68,0x7a, 0x7,0x48,0x61,\n  0x7,0x47,0x4b, 0x4,0x60,0x61, 0x7,0x48,0x5d, 0x5,0x68,0x77,\n  0x7,0x48,0x63, 0x7,0x48,0x5b, 0x7,0x48,0x62, 0x5,0x68,0x78,\n  0x7,0x48,0x59, 0x7,0x48,0x5a, 0x7,0x48,0x60, 0x7,0x48,0x5e,\n  0xf,0x63,0x40, 0xf,0x63,0x41, 0xf,0x63,0x43, 0xf,0x63,0x44,\n  0xf,0x63,0x45, 0x7,0x4a,0x73, 0x7,0x48,0x5c, 0x7,0x48,0x65,\n  0x4,0x60,0x6a, 0x7,0x4e,0x7d, 0x7,0x4e,0x7c, 0x5,0x6d,0x23,\n  0x5,0x6d,0x21, 0x4,0x64,0x25, 0x7,0x4e,0x7e, 0x7,0x4f,0x23,\n  0x7,0x4e,0x7b, 0x7,0x54,0x42, 0x7,0x48,0x58, 0x5,0x6d,0x24,\n  0x7,0x4f,0x24, 0x7,0x4f,0x26, 0x7,0x4e,0x7a, 0x4,0x66,0x79,\n  0x7,0x4f,0x22, 0x7,0x4e,0x79, 0x7,0x4f,0x25, 0xf,0x65,0x6c,\n  0xf,0x65,0x6d, 0xf,0x65,0x6e, 0xf,0x65,0x70, 0xf,0x65,0x71,\n  0x7,0x4f,0x21, 0x5,0x70,0x72, 0x4,0x66,0x75, 0x7,0x54,0x43,\n  0x5,0x70,0x73, 0x4,0x66,0x78, 0x4,0x66,0x76, 0x4,0x66,0x77,\n  0x7,0x58,0x5e, 0x7,0x4f,0x27, 0x7,0x54,0x3f, 0x7,0x54,0x3e,\n  0x7,0x54,0x41, 0xf,0x68,0x2c, 0xf,0x68,0x2d, 0xf,0x68,0x2e,\n  0xf,0x68,0x2f, 0x4,0x66,0x74, 0x7,0x54,0x40, 0x5,0x70,0x71,\n  0x7,0x54,0x44, 0x5,0x73,0x7b, 0x7,0x58,0x59, 0x5,0x73,0x7c,\n  0x5,0x73,0x79, 0x4,0x69,0x29, 0x5,0x76,0x3a, 0x7,0x58,0x5d,\n  0x5,0x73,0x7a, 0x7,0x58,0x5b, 0xf,0x69,0x63, 0xf,0x69,0x64,\n  0xf,0x69,0x65, 0xf,0x69,0x66, 0x7,0x58,0x5a, 0x7,0x58,0x5c,\n  0x4,0x69,0x4b, 0x4,0x6a,0x67, 0x7,0x58,0x5f, 0x7,0x5c,0x3a,\n  0x7,0x5c,0x3b, 0x4,0x6a,0x68, 0x4,0x6a,0x69, 0x4,0x6b,0x7a,\n  0x5,0x77,0x78, 0x7,0x5f,0x37, 0x7,0x5f,0x35, 0xf,0x6b,0x5d,\n  0x7,0x5f,0x36, 0x7,0x5f,0x38, 0x5,0x79,0x3a, 0x7,0x5f,0x34,\n  0x5,0x79,0x39, 0x7,0x61,0x34, 0x7,0x62,0x4f, 0x7,0x62,0x4e,\n  0x7,0x63,0x63, 0xf,0x6c,0x69, 0x7,0x63,0x65, 0x7,0x63,0x64,\n  0x7,0x64,0x55, 0x5,0x7b,0x65, 0xf,0x6d,0x30, 0x7,0x65,0x75,\n  0x6,0x25,0x42, 0x4,0x2a,0x78, 0x5,0x2b,0x28, 0x4,0x2f,0x28,\n  0x6,0x3a,0x66, 0x5,0x2f,0x5b, 0x5,0x34,0x61, 0x6,0x43,0x2d,\n  0x5,0x3b,0x34, 0x6,0x43,0x2f, 0x6,0x43,0x2e, 0x6,0x4c,0x74,\n  0x4,0x3a,0x29, 0x6,0x4c,0x73, 0x5,0x3b,0x33, 0xf,0x3e,0x2f,\n  0x6,0x56,0x50, 0x6,0x56,0x4f, 0x4,0x3f,0x74, 0x4,0x46,0x24,\n  0x6,0x60,0x45, 0x5,0x48,0x58, 0x6,0x60,0x44, 0x7,0x26,0x6e,\n  0xf,0x4b,0x39, 0xf,0x4b,0x3a, 0xf,0x4b,0x3b, 0x7,0x26,0x70,\n  0x4,0x4c,0x47, 0xf,0x51,0x40, 0xf,0x51,0x41, 0x7,0x26,0x6f,\n  0x5,0x56,0x7b, 0x5,0x56,0x7a, 0xf,0x57,0x22, 0xf,0x57,0x21,\n  0x5,0x5d,0x49, 0x7,0x3a,0x45, 0x5,0x5d,0x48, 0xf,0x5a,0x58,\n  0xf,0x5c,0x23, 0xf,0x5c,0x24, 0x7,0x41,0x5d, 0x7,0x41,0x5e,\n  0xf,0x60,0x33, 0x7,0x48,0x68, 0x4,0x60,0x6c, 0xf,0x63,0x46,\n  0x5,0x70,0x74, 0x4,0x64,0x27, 0x4,0x66,0x7a, 0x7,0x54,0x45,\n  0x4,0x6a,0x6a, 0x7,0x5c,0x3c, 0xf,0x6a,0x6b, 0x7,0x5f,0x3a,\n  0x7,0x5f,0x39, 0x5,0x7a,0x34, 0x7,0x66,0x2a, 0x6,0x22,0x29,\n  0x6,0x22,0x28, 0x4,0x24,0x6a, 0x6,0x25,0x44, 0x6,0x25,0x45,\n  0x6,0x28,0x73, 0xf,0x21,0x7c, 0x6,0x25,0x43, 0xf,0x25,0x28,\n  0xf,0x25,0x2a, 0x6,0x2d,0x53, 0x6,0x33,0x6a, 0x4,0x27,0x5d,\n  0x6,0x33,0x69, 0x6,0x2d,0x54, 0x4,0x27,0x5e, 0x6,0x28,0x74,\n  0x4,0x24,0x6b, 0x6,0x33,0x6b, 0x4,0x2a,0x7a, 0x4,0x2a,0x7c,\n  0xf,0x25,0x56, 0x5,0x2b,0x29, 0xf,0x28,0x49, 0x5,0x27,0x52,\n  0x6,0x3a,0x67, 0x6,0x3a,0x68, 0x6,0x3a,0x69, 0x5,0x2f,0x5f,\n  0x6,0x3a,0x6c, 0x6,0x3a,0x6a, 0x4,0x2f,0x2c, 0x4,0x2f,0x2b,\n  0x6,0x33,0x6e, 0x6,0x33,0x6c, 0x6,0x33,0x6f, 0x6,0x43,0x35,\n  0xf,0x29,0x39, 0x5,0x2f,0x5d, 0x6,0x43,0x30, 0x6,0x43,0x31,\n  0x6,0x43,0x32, 0x6,0x43,0x34, 0x6,0x43,0x36, 0xf,0x31,0x79,\n  0x6,0x33,0x6d, 0x6,0x36,0x7a, 0x5,0x2b,0x2a, 0x4,0x2a,0x7d,\n  0x6,0x43,0x33, 0x6,0x4c,0x77, 0x6,0x43,0x37, 0x6,0x3a,0x6d,\n  0x6,0x4c,0x76, 0x6,0x43,0x38, 0x5,0x2f,0x5e, 0x5,0x34,0x62,\n  0xf,0x37,0x5c, 0x6,0x4c,0x75, 0x5,0x3b,0x36, 0x5,0x3b,0x35,\n  0x4,0x3a,0x2c, 0x6,0x4c,0x78, 0xf,0x3e,0x30, 0x6,0x56,0x52,\n  0x5,0x41,0x67, 0x6,0x56,0x54, 0x6,0x4c,0x7a, 0x5,0x41,0x64,\n  0x5,0x41,0x66, 0x6,0x56,0x53, 0x6,0x56,0x55, 0x6,0x4c,0x79,\n  0x6,0x56,0x56, 0xf,0x3e,0x31, 0x6,0x56,0x51, 0xf,0x44,0x63,\n  0x6,0x60,0x46, 0x6,0x60,0x48, 0x6,0x60,0x49, 0x6,0x60,0x4a,\n  0x6,0x60,0x4b, 0x6,0x60,0x4c, 0x6,0x60,0x4d, 0x6,0x60,0x50,\n  0x5,0x48,0x5b, 0x7,0x26,0x75, 0x6,0x60,0x4e, 0x5,0x48,0x5a,\n  0x6,0x56,0x57, 0x5,0x48,0x59, 0x6,0x60,0x4f, 0x6,0x60,0x47,\n  0xf,0x4b,0x3c, 0x7,0x26,0x71, 0x7,0x26,0x72, 0x7,0x26,0x73,\n  0x7,0x26,0x74, 0x5,0x4f,0x62, 0x5,0x4f,0x5f, 0x6,0x60,0x52,\n  0x7,0x26,0x76, 0x5,0x4f,0x60, 0x5,0x4f,0x61, 0x6,0x60,0x51,\n  0xf,0x51,0x42, 0xf,0x51,0x43, 0x7,0x25,0x73, 0x7,0x31,0x47,\n  0x7,0x31,0x48, 0x7,0x31,0x4c, 0x7,0x31,0x49, 0x5,0x56,0x7c,\n  0x7,0x31,0x4b, 0x4,0x52,0x51, 0x7,0x3a,0x4e, 0x7,0x31,0x4a,\n  0x7,0x31,0x4d, 0x5,0x4f,0x63, 0x5,0x56,0x7d, 0x4,0x52,0x50,\n  0x7,0x26,0x77, 0x7,0x26,0x78, 0x7,0x3a,0x47, 0x7,0x3a,0x48,\n  0x7,0x3a,0x4b, 0x5,0x5d,0x4a, 0x7,0x31,0x4e, 0x4,0x57,0x74,\n  0x5,0x63,0x5b, 0x7,0x3a,0x4c, 0x7,0x3a,0x4d, 0xf,0x5c,0x25,\n  0xf,0x57,0x23, 0x7,0x41,0x5f, 0x7,0x41,0x60, 0x7,0x41,0x62,\n  0x7,0x41,0x64, 0x4,0x5c,0x67, 0x4,0x5c,0x66, 0x5,0x63,0x5c,\n  0x7,0x41,0x63, 0x7,0x48,0x69, 0x7,0x3a,0x4a, 0x5,0x63,0x5e,\n  0x5,0x68,0x7b, 0x7,0x48,0x6c, 0x4,0x60,0x6e, 0x7,0x48,0x6a,\n  0x7,0x48,0x6b, 0x7,0x4f,0x28, 0x7,0x4f,0x29, 0x7,0x4f,0x2a,\n  0x7,0x4f,0x2b, 0x5,0x6d,0x25, 0x5,0x6d,0x27, 0x7,0x4f,0x2c,\n  0x5,0x6d,0x26, 0x5,0x6d,0x28, 0x7,0x54,0x46, 0x7,0x4f,0x2d,\n  0x5,0x77,0x7a, 0x4,0x6b,0x7c, 0x7,0x5f,0x3b, 0x5,0x77,0x7b,\n  0x5,0x77,0x79, 0x7,0x61,0x35, 0x7,0x62,0x50, 0x7,0x63,0x66,\n  0x7,0x64,0x56, 0x7,0x65,0x3c, 0x4,0x24,0x6c, 0x4,0x23,0x2c,\n  0xf,0x21,0x60, 0x6,0x2d,0x56, 0x5,0x27,0x53, 0x6,0x2d,0x55,\n  0xf,0x2d,0x24, 0x6,0x33,0x71, 0x6,0x33,0x70, 0x4,0x2a,0x7e,\n  0xf,0x28,0x4b, 0x6,0x3a,0x6e, 0x6,0x3a,0x6f, 0x6,0x43,0x3b,\n  0x6,0x3a,0x73, 0x6,0x3a,0x72, 0x6,0x3a,0x71, 0x6,0x3a,0x70,\n  0x6,0x43,0x3a, 0xf,0x31,0x7a, 0xf,0x31,0x7b, 0x6,0x43,0x3d,\n  0x5,0x34,0x64, 0x4,0x3a,0x2e, 0x6,0x43,0x3e, 0x4,0x34,0x39,\n  0x5,0x34,0x65, 0xf,0x37,0x5d, 0x5,0x34,0x63, 0x6,0x43,0x39,\n  0xf,0x37,0x5e, 0xf,0x37,0x5f, 0x6,0x43,0x3f, 0x5,0x3b,0x39,\n  0x5,0x3b,0x37, 0x6,0x4c,0x7d, 0x4,0x3a,0x2f, 0x6,0x4d,0x21,\n  0x5,0x3b,0x38, 0x6,0x4c,0x7e, 0x6,0x4c,0x7c, 0x6,0x4d,0x22,\n  0x6,0x47,0x21, 0x6,0x56,0x5a, 0x5,0x41,0x68, 0x6,0x56,0x5b,\n  0x6,0x56,0x58, 0x5,0x41,0x69, 0x6,0x56,0x59, 0x6,0x56,0x5c,\n  0x5,0x41,0x6a, 0xf,0x3e,0x33, 0xf,0x3e,0x34, 0x5,0x48,0x5c,\n  0x6,0x60,0x53, 0x6,0x60,0x55, 0x5,0x48,0x5d, 0x6,0x60,0x54,\n  0x5,0x4f,0x64, 0x4,0x4c,0x4a, 0x7,0x26,0x7b, 0x7,0x26,0x7c,\n  0x4,0x4c,0x4b, 0x7,0x31,0x4f, 0x7,0x26,0x7a, 0x4,0x4c,0x48,\n  0x5,0x57,0x21, 0x5,0x56,0x7e, 0x4,0x52,0x52, 0xf,0x57,0x25,\n  0x7,0x31,0x50, 0x4,0x57,0x78, 0x4,0x57,0x76, 0x5,0x5d,0x4b,\n  0x7,0x3a,0x50, 0x7,0x3a,0x4f, 0x7,0x3a,0x52, 0xf,0x5c,0x26,\n  0x4,0x52,0x54, 0x7,0x3a,0x51, 0x5,0x63,0x5d, 0x4,0x5c,0x69,\n  0x5,0x63,0x5f, 0x7,0x41,0x69, 0x7,0x41,0x6a, 0x4,0x5c,0x6d,\n  0x7,0x41,0x67, 0x7,0x41,0x68, 0x7,0x41,0x66, 0xf,0x57,0x24,\n  0xf,0x60,0x34, 0xf,0x60,0x35, 0x4,0x5c,0x6c, 0x5,0x68,0x7c,\n  0x7,0x48,0x70, 0x5,0x76,0x3b, 0x7,0x48,0x6f, 0x7,0x4f,0x2e,\n  0x7,0x48,0x6e, 0x5,0x6d,0x29, 0x7,0x4f,0x2f, 0x7,0x4f,0x30,\n  0x7,0x4f,0x31, 0x7,0x4f,0x32, 0x7,0x41,0x65, 0x5,0x70,0x75,\n  0x7,0x54,0x47, 0x7,0x54,0x48, 0x5,0x73,0x7d, 0x7,0x58,0x60,\n  0x7,0x5c,0x3e, 0x7,0x5c,0x3d, 0x7,0x61,0x36, 0x7,0x63,0x67,\n  0x7,0x65,0x5e, 0x6,0x2d,0x57, 0x6,0x33,0x75, 0x6,0x33,0x72,\n  0x6,0x33,0x76, 0x5,0x2b,0x2b, 0x4,0x2b,0x22, 0x4,0x2b,0x21,\n  0x4,0x2b,0x24, 0x6,0x33,0x74, 0x4,0x2b,0x23, 0xf,0x2d,0x25,\n  0xf,0x2d,0x26, 0x6,0x33,0x73, 0x4,0x2f,0x33, 0x6,0x3a,0x76,\n  0x5,0x2f,0x61, 0x5,0x2f,0x63, 0x5,0x2f,0x60, 0x4,0x2f,0x31,\n  0x4,0x2f,0x36, 0x4,0x2f,0x35, 0x6,0x3a,0x75, 0x5,0x2f,0x62,\n  0x4,0x2f,0x34, 0x4,0x2f,0x32, 0x6,0x3a,0x77, 0xf,0x2f,0x63,\n  0xf,0x2f,0x64, 0x4,0x2f,0x37, 0xf,0x31,0x7c, 0x5,0x34,0x66,\n  0x6,0x43,0x41, 0x6,0x43,0x40, 0x6,0x43,0x42, 0x6,0x43,0x43,\n  0x6,0x43,0x44, 0x6,0x43,0x46, 0x6,0x43,0x47, 0x4,0x34,0x3f,\n  0x6,0x43,0x45, 0x5,0x3b,0x3b, 0x4,0x3a,0x32, 0x6,0x4d,0x26,\n  0x6,0x4d,0x27, 0x6,0x4d,0x2d, 0x5,0x3b,0x3d, 0x4,0x3a,0x36,\n  0x6,0x4d,0x2e, 0x6,0x4d,0x28, 0x6,0x4d,0x25, 0x6,0x4d,0x2f,\n  0x6,0x4d,0x30, 0x5,0x3b,0x3c, 0x6,0x4d,0x2a, 0x6,0x4d,0x2c,\n  0x6,0x4d,0x2b, 0xf,0x3e,0x35, 0xf,0x3e,0x36, 0x6,0x4d,0x29,\n  0x5,0x41,0x6e, 0x5,0x41,0x6b, 0x4,0x3f,0x79, 0x6,0x56,0x5d,\n  0x6,0x56,0x5e, 0x6,0x56,0x5f, 0x5,0x41,0x6d, 0x5,0x41,0x6c,\n  0xf,0x44,0x64, 0x6,0x4d,0x24, 0x5,0x48,0x65, 0x5,0x48,0x5e,\n  0x6,0x60,0x57, 0x5,0x48,0x5f, 0x5,0x48,0x63, 0x5,0x48,0x60,\n  0x5,0x48,0x64, 0x5,0x48,0x61, 0x5,0x48,0x62, 0x6,0x60,0x56,\n  0x5,0x48,0x66, 0xf,0x4b,0x3d, 0xf,0x4b,0x3e, 0xf,0x4b,0x3f,\n  0xf,0x4b,0x40, 0x5,0x4f,0x6a, 0x5,0x4f,0x6b, 0x7,0x26,0x7e,\n  0x5,0x4f,0x68, 0x4,0x4c,0x4c, 0x5,0x4f,0x6c, 0x5,0x4f,0x65,\n  0x7,0x26,0x7d, 0x5,0x4f,0x67, 0xf,0x51,0x46, 0x6,0x60,0x59,\n  0x5,0x4f,0x66, 0x7,0x27,0x24, 0x7,0x27,0x25, 0x7,0x27,0x21,\n  0x4,0x4c,0x4e, 0x7,0x27,0x22, 0x4,0x4c,0x4d, 0x7,0x27,0x23,\n  0xf,0x51,0x44, 0xf,0x51,0x45, 0x7,0x31,0x51, 0x7,0x31,0x53,\n  0x5,0x57,0x25, 0x7,0x31,0x56, 0x7,0x31,0x52, 0x7,0x31,0x54,\n  0x4,0x52,0x57, 0x5,0x57,0x23, 0x5,0x57,0x26, 0x5,0x57,0x24,\n  0x5,0x4f,0x69, 0x5,0x57,0x22, 0x7,0x31,0x55, 0x5,0x57,0x27,\n  0xf,0x57,0x26, 0x4,0x57,0x79, 0x7,0x3a,0x54, 0x5,0x5d,0x4c,\n  0x7,0x3a,0x55, 0x7,0x48,0x71, 0x5,0x5d,0x4d, 0x7,0x3a,0x53,\n  0xf,0x5c,0x27, 0xf,0x5c,0x28, 0x5,0x63,0x60, 0x4,0x5c,0x6e,\n  0x7,0x41,0x71, 0x5,0x5d,0x4e, 0x4,0x5c,0x6f, 0x7,0x41,0x6d,\n  0x7,0x41,0x6f, 0x7,0x41,0x6c, 0x7,0x41,0x70, 0x7,0x41,0x6e,\n  0xf,0x60,0x36, 0xf,0x60,0x37, 0x7,0x41,0x6b, 0x4,0x60,0x70,\n  0x5,0x68,0x7e, 0x5,0x68,0x7d, 0x7,0x48,0x72, 0x7,0x4f,0x35,\n  0x7,0x4f,0x36, 0xf,0x65,0x72, 0x7,0x4f,0x33, 0x4,0x66,0x7c,\n  0x7,0x54,0x49, 0x7,0x54,0x4b, 0x7,0x4f,0x34, 0x7,0x54,0x4a,\n  0x7,0x58,0x62, 0x7,0x58,0x63, 0x7,0x58,0x61, 0x6,0x25,0x46,\n  0x6,0x2d,0x58, 0x6,0x28,0x75, 0x4,0x27,0x5f, 0x4,0x27,0x60,\n  0x6,0x3a,0x78, 0x4,0x34,0x40, 0x5,0x2b,0x2c, 0xf,0x37,0x60,\n  0xf,0x37,0x61, 0x6,0x43,0x48, 0x6,0x4d,0x31, 0x7,0x27,0x26,\n  0x7,0x31,0x58, 0x7,0x31,0x57, 0xf,0x6b,0x5e, 0x6,0x2d,0x59,\n  0x6,0x2d,0x5a, 0x5,0x21,0x79, 0xf,0x28,0x4c, 0x4,0x2f,0x39,\n  0x5,0x34,0x67, 0x5,0x3b,0x3e, 0x5,0x41,0x6f, 0x6,0x60,0x5a,\n  0x7,0x27,0x27, 0x7,0x27,0x29, 0x5,0x48,0x67, 0x7,0x31,0x5a,\n  0x7,0x31,0x59, 0x7,0x3a,0x56, 0x5,0x23,0x21, 0x6,0x2d,0x5b,\n  0xf,0x28,0x4d, 0x6,0x33,0x77, 0xf,0x2d,0x27, 0x6,0x33,0x78,\n  0xf,0x31,0x7e, 0x5,0x34,0x68, 0xf,0x37,0x62, 0x6,0x43,0x49,\n  0x4,0x3a,0x37, 0x5,0x3b,0x41, 0x5,0x3b,0x40, 0x4,0x3f,0x7b,\n  0x6,0x56,0x60, 0x6,0x60,0x5c, 0x5,0x48,0x6c, 0x5,0x48,0x68,\n  0x5,0x48,0x6d, 0x5,0x48,0x6a, 0x5,0x48,0x69, 0x5,0x48,0x6b,\n  0x4,0x46,0x31, 0xf,0x44,0x65, 0x6,0x60,0x5b, 0x5,0x4f,0x6f,\n  0x5,0x4f,0x70, 0x5,0x4f,0x71, 0x5,0x4f,0x6d, 0x5,0x4f,0x6e,\n  0x7,0x27,0x2a, 0x5,0x57,0x29, 0x5,0x57,0x28, 0x4,0x52,0x58,\n  0x4,0x52,0x59, 0x7,0x31,0x5c, 0x7,0x31,0x5d, 0x7,0x31,0x5b,\n  0xf,0x51,0x47, 0x5,0x5d,0x4f, 0x4,0x57,0x7c, 0x7,0x3a,0x5a,\n  0x7,0x3a,0x57, 0x7,0x3a,0x58, 0xf,0x57,0x29, 0x5,0x63,0x61,\n  0x4,0x57,0x7e, 0x7,0x41,0x72, 0x7,0x3a,0x59, 0x7,0x48,0x75,\n  0x5,0x63,0x62, 0x7,0x41,0x74, 0x7,0x41,0x73, 0xf,0x5c,0x29,\n  0xf,0x5c,0x2a, 0x7,0x48,0x74, 0x5,0x69,0x21, 0x7,0x48,0x73,\n  0x4,0x66,0x7e, 0x7,0x54,0x4c, 0x4,0x6a,0x6c, 0x5,0x77,0x7c,\n  0x5,0x79,0x3b, 0x5,0x27,0x55, 0x5,0x27,0x54, 0x6,0x2d,0x5e,\n  0xf,0x28,0x4e, 0xf,0x28,0x4f, 0x6,0x2d,0x5d, 0x5,0x2b,0x2f,\n  0x5,0x2b,0x2d, 0x5,0x2b,0x2e, 0x4,0x2f,0x3c, 0x6,0x3a,0x7e,\n  0x4,0x2f,0x3b, 0x6,0x3a,0x7a, 0x5,0x2f,0x64, 0x6,0x3b,0x22,\n  0xf,0x32,0x21, 0xf,0x32,0x24, 0xf,0x32,0x26, 0xf,0x32,0x27,\n  0x6,0x3a,0x7b, 0xf,0x32,0x22, 0x6,0x3a,0x7d, 0x6,0x3a,0x7c,\n  0x6,0x3b,0x23, 0x6,0x3a,0x79, 0xf,0x32,0x25, 0x5,0x2f,0x65,\n  0x6,0x43,0x4b, 0x4,0x34,0x43, 0x4,0x34,0x42, 0x4,0x34,0x44,\n  0x6,0x43,0x4d, 0x5,0x34,0x69, 0x6,0x43,0x4f, 0x6,0x43,0x4e,\n  0x6,0x43,0x4c, 0x6,0x43,0x4a, 0xf,0x37,0x63, 0xf,0x37,0x64,\n  0xf,0x37,0x65, 0xf,0x37,0x66, 0x5,0x3b,0x42, 0x6,0x4d,0x33,\n  0x6,0x4d,0x34, 0x5,0x3b,0x43, 0x6,0x4d,0x35, 0xf,0x3e,0x37,\n  0xf,0x3e,0x38, 0xf,0x3e,0x39, 0xf,0x3e,0x3a, 0xf,0x3e,0x3c,\n  0xf,0x3e,0x3d, 0xf,0x3e,0x3e, 0xf,0x3e,0x3f, 0xf,0x3e,0x40,\n  0x6,0x4d,0x32, 0xf,0x3e,0x3b, 0x6,0x56,0x62, 0x6,0x56,0x66,\n  0x5,0x41,0x71, 0x5,0x41,0x72, 0x6,0x56,0x61, 0x6,0x56,0x6b,\n  0x6,0x56,0x69, 0x6,0x56,0x67, 0x5,0x41,0x73, 0x6,0x56,0x68,\n  0x6,0x56,0x64, 0x6,0x56,0x6a, 0x6,0x56,0x63, 0xf,0x44,0x66,\n  0xf,0x44,0x67, 0x6,0x56,0x65, 0x5,0x48,0x70, 0x5,0x48,0x71,\n  0x5,0x48,0x6e, 0x4,0x4c,0x50, 0x6,0x60,0x5e, 0x5,0x48,0x72,\n  0x5,0x48,0x6f, 0x5,0x48,0x73, 0xf,0x4b,0x41, 0xf,0x4b,0x42,\n  0xf,0x4b,0x43, 0xf,0x4b,0x44, 0xf,0x4b,0x45, 0xf,0x4b,0x46,\n  0xf,0x4b,0x47, 0xf,0x4b,0x48, 0xf,0x4b,0x4a, 0xf,0x4b,0x4b,\n  0xf,0x4b,0x4c, 0x6,0x60,0x5f, 0x5,0x4f,0x72, 0x7,0x27,0x2c,\n  0x5,0x4f,0x75, 0x7,0x27,0x2f, 0x5,0x4f,0x74, 0x5,0x4f,0x73,\n  0x4,0x4c,0x51, 0x5,0x4f,0x77, 0x7,0x27,0x2b, 0x7,0x27,0x30,\n  0x5,0x4f,0x76, 0xf,0x51,0x48, 0xf,0x51,0x49, 0xf,0x51,0x4a,\n  0xf,0x51,0x4b, 0xf,0x51,0x4c, 0xf,0x51,0x4d, 0xf,0x51,0x4e,\n  0xf,0x51,0x4f, 0x7,0x27,0x2d, 0x5,0x57,0x2c, 0x5,0x57,0x2f,\n  0x5,0x57,0x2b, 0x5,0x57,0x2d, 0x5,0x57,0x2e, 0x7,0x31,0x61,\n  0x7,0x31,0x5f, 0x7,0x31,0x5e, 0xf,0x57,0x2a, 0xf,0x57,0x2b,\n  0xf,0x57,0x2c, 0xf,0x57,0x2d, 0xf,0x57,0x2e, 0xf,0x57,0x2f,\n  0x7,0x31,0x60, 0x5,0x57,0x2a, 0x5,0x5d,0x50, 0x5,0x5d,0x51,\n  0x5,0x5d,0x52, 0x7,0x3a,0x5b, 0x4,0x58,0x25, 0x4,0x58,0x26,\n  0x5,0x5d,0x54, 0x5,0x5d,0x53, 0xf,0x5c,0x2c, 0x7,0x3a,0x5d,\n  0x7,0x3a,0x5c, 0x3,0x58,0x63, 0x7,0x41,0x77, 0x5,0x63,0x66,\n  0x5,0x63,0x63, 0x4,0x5c,0x72, 0x7,0x41,0x79, 0x5,0x5d,0x55,\n  0x7,0x41,0x78, 0x5,0x63,0x64, 0x5,0x63,0x65, 0x7,0x41,0x75,\n  0xf,0x60,0x38, 0xf,0x60,0x39, 0xf,0x60,0x3a, 0x7,0x41,0x76,\n  0xf,0x5c,0x2b, 0xf,0x63,0x47, 0x7,0x48,0x76, 0x5,0x69,0x22,\n  0x5,0x69,0x23, 0x7,0x48,0x78, 0x7,0x48,0x77, 0xf,0x63,0x48,\n  0xf,0x63,0x49, 0x7,0x4f,0x39, 0xf,0x65,0x73, 0xf,0x65,0x74,\n  0xf,0x65,0x75, 0x7,0x4f,0x38, 0x7,0x4f,0x37, 0x5,0x70,0x76,\n  0xf,0x68,0x30, 0xf,0x68,0x31, 0x7,0x54,0x4d, 0x7,0x54,0x4e,\n  0x5,0x73,0x7e, 0x7,0x58,0x64, 0x4,0x6a,0x6d, 0xf,0x6a,0x6c,\n  0xf,0x6b,0x5f, 0xf,0x6c,0x36, 0xf,0x6c,0x50, 0x5,0x21,0x7a,\n  0x6,0x2d,0x5f, 0x5,0x2b,0x30, 0x6,0x43,0x50, 0x6,0x4d,0x36,\n  0x6,0x48,0x6a, 0x6,0x56,0x6e, 0x6,0x60,0x62, 0x6,0x60,0x61,\n  0x7,0x27,0x31, 0xf,0x51,0x50, 0x7,0x31,0x62, 0x7,0x4f,0x3a,\n  0x5,0x23,0x25, 0x5,0x23,0x23, 0x6,0x2d,0x60, 0x6,0x2d,0x61,\n  0x6,0x25,0x48, 0xf,0x22,0x6c, 0xf,0x22,0x6d, 0x5,0x23,0x24,\n  0x5,0x23,0x22, 0x5,0x24,0x73, 0x5,0x24,0x72, 0x6,0x28,0x79,\n  0x6,0x28,0x78, 0x6,0x28,0x77, 0x6,0x28,0x76, 0x6,0x33,0x7b,\n  0x6,0x33,0x7a, 0x6,0x33,0x79, 0x5,0x27,0x5a, 0x5,0x27,0x5e,\n  0x6,0x2d,0x64, 0x4,0x2f,0x43, 0x6,0x2d,0x6d, 0x6,0x2d,0x6e,\n  0x6,0x2d,0x62, 0x5,0x27,0x5d, 0x6,0x2d,0x66, 0x5,0x27,0x59,\n  0x5,0x27,0x57, 0x6,0x2d,0x6b, 0x5,0x27,0x5b, 0x4,0x27,0x6b,\n  0x6,0x2d,0x68, 0x6,0x2d,0x6f, 0xf,0x28,0x50, 0xf,0x28,0x51,\n  0xf,0x28,0x53, 0xf,0x28,0x54, 0x6,0x2d,0x6c, 0x4,0x26,0x64,\n  0x6,0x2d,0x65, 0x6,0x2d,0x67, 0x5,0x27,0x5c, 0x6,0x2d,0x6a,\n  0x6,0x2d,0x63, 0x6,0x3b,0x27, 0x6,0x3b,0x25, 0x4,0x2f,0x3d,\n  0x5,0x27,0x56, 0x6,0x3b,0x26, 0x6,0x34,0x2d, 0x4,0x2b,0x2d,\n  0x5,0x2b,0x34, 0x6,0x34,0x28, 0x5,0x2b,0x31, 0x5,0x2b,0x38,\n  0x6,0x34,0x29, 0x4,0x2b,0x2e, 0x6,0x43,0x54, 0x6,0x34,0x27,\n  0x4,0x2b,0x2b, 0x6,0x34,0x2b, 0x4,0x2b,0x30, 0x6,0x34,0x25,\n  0x5,0x2b,0x36, 0x6,0x34,0x26, 0x5,0x2b,0x37, 0x5,0x2b,0x32,\n  0x4,0x2f,0x48, 0x5,0x2b,0x35, 0x6,0x33,0x7c, 0x6,0x34,0x21,\n  0x6,0x34,0x22, 0x6,0x34,0x24, 0xf,0x2d,0x2a, 0xf,0x2d,0x2f,\n  0xf,0x37,0x67, 0xf,0x37,0x68, 0x6,0x33,0x7e, 0x6,0x34,0x2f,\n  0x6,0x34,0x2c, 0x6,0x34,0x2a, 0x6,0x34,0x30, 0x6,0x34,0x2e,\n  0x6,0x43,0x53, 0x6,0x43,0x52, 0xf,0x2d,0x2b, 0x6,0x43,0x55,\n  0x6,0x43,0x56, 0x6,0x3b,0x30, 0x6,0x43,0x51, 0xf,0x2d,0x2d,\n  0x5,0x2f,0x67, 0x4,0x2f,0x3e, 0x4,0x34,0x45, 0x4,0x2f,0x45,\n  0x6,0x3b,0x32, 0x5,0x2f,0x6c, 0x4,0x2f,0x44, 0x6,0x3b,0x2e,\n  0x5,0x2f,0x6e, 0x6,0x3b,0x2a, 0x5,0x2f,0x70, 0x5,0x3b,0x44,\n  0x5,0x2f,0x6f, 0x6,0x3b,0x29, 0x5,0x2f,0x66, 0x6,0x3b,0x2b,\n  0x4,0x2f,0x40, 0x6,0x4d,0x3b, 0x5,0x2f,0x69, 0xf,0x2d,0x29,\n  0xf,0x32,0x28, 0xf,0x32,0x29, 0xf,0x32,0x2d, 0xf,0x3e,0x4c,\n  0x5,0x2f,0x68, 0x5,0x2e,0x24, 0x6,0x3b,0x2f, 0x6,0x3b,0x2d,\n  0x6,0x3b,0x2c, 0x6,0x3b,0x33, 0x6,0x4d,0x3a, 0x6,0x4d,0x38,\n  0x6,0x4d,0x39, 0x6,0x4d,0x37, 0x6,0x34,0x23, 0x5,0x2f,0x6b,\n  0x5,0x2f,0x71, 0x5,0x2f,0x6a, 0x5,0x34,0x74, 0x6,0x43,0x5b,\n  0x6,0x43,0x59, 0x5,0x34,0x6b, 0x4,0x34,0x4e, 0x5,0x34,0x6c,\n  0x4,0x2f,0x42, 0x5,0x34,0x71, 0x4,0x34,0x46, 0x4,0x34,0x55,\n  0x5,0x41,0x74, 0x4,0x34,0x54, 0x6,0x43,0x57, 0x5,0x34,0x6e,\n  0x6,0x43,0x5f, 0x4,0x34,0x49, 0x5,0x34,0x75, 0x5,0x34,0x76,\n  0x6,0x43,0x60, 0x6,0x43,0x5e, 0x4,0x34,0x4f, 0x5,0x34,0x72,\n  0x6,0x43,0x61, 0x6,0x43,0x62, 0xf,0x37,0x69, 0xf,0x37,0x6b,\n  0x6,0x43,0x5c, 0x6,0x43,0x5d, 0x6,0x56,0x6f, 0x6,0x56,0x70,\n  0x6,0x56,0x71, 0x5,0x34,0x73, 0x5,0x34,0x6f, 0x5,0x34,0x70,\n  0x6,0x4d,0x43, 0x5,0x3b,0x48, 0x6,0x4d,0x3d, 0x5,0x3b,0x45,\n  0x6,0x4d,0x4b, 0x6,0x4d,0x42, 0x4,0x3a,0x3c, 0x5,0x3b,0x4a,\n  0x6,0x4d,0x4f, 0x6,0x4d,0x3c, 0x6,0x60,0x65, 0x5,0x3b,0x47,\n  0x6,0x4d,0x50, 0x6,0x56,0x75, 0x4,0x3a,0x48, 0x5,0x3b,0x4c,\n  0x6,0x4d,0x55, 0x6,0x4d,0x4e, 0x6,0x4d,0x4c, 0x6,0x4d,0x53,\n  0x5,0x3b,0x46, 0x5,0x48,0x75, 0x6,0x4d,0x3e, 0x6,0x4d,0x47,\n  0x6,0x4d,0x4a, 0xf,0x3e,0x41, 0xf,0x3e,0x44, 0xf,0x3e,0x46,\n  0xf,0x3e,0x47, 0xf,0x3e,0x48, 0xf,0x3e,0x49, 0xf,0x3e,0x4a,\n  0xf,0x3e,0x4b, 0x6,0x4d,0x44, 0x6,0x4d,0x49, 0xf,0x3b,0x63,\n  0x6,0x4d,0x4d, 0x6,0x4d,0x41, 0x6,0x4d,0x52, 0x6,0x4d,0x3f,\n  0x6,0x4d,0x40, 0x6,0x60,0x63, 0x6,0x60,0x67, 0x6,0x60,0x64,\n  0xf,0x3e,0x45, 0x5,0x3b,0x49, 0x6,0x4d,0x46, 0x5,0x34,0x6d,\n  0x5,0x3b,0x4b, 0x5,0x3b,0x4e, 0x5,0x3b,0x4f, 0x6,0x4d,0x51,\n  0x5,0x3b,0x51, 0x6,0x4d,0x45, 0x6,0x60,0x68, 0x6,0x60,0x66,\n  0x5,0x41,0x7d, 0x4,0x40,0x21, 0x5,0x42,0x26, 0x5,0x42,0x21,\n  0x5,0x41,0x75, 0x5,0x41,0x79, 0x5,0x42,0x27, 0x6,0x56,0x7d,\n  0x4,0x3f,0x7e, 0x6,0x56,0x72, 0x4,0x3a,0x46, 0x5,0x42,0x22,\n  0x5,0x41,0x78, 0x6,0x56,0x77, 0x4,0x40,0x24, 0x6,0x56,0x79,\n  0x4,0x40,0x22, 0x6,0x57,0x21, 0x6,0x56,0x73, 0x5,0x42,0x29,\n  0x6,0x56,0x74, 0x6,0x56,0x78, 0x5,0x42,0x23, 0x6,0x56,0x7c,\n  0x5,0x41,0x7b, 0x5,0x41,0x7a, 0x5,0x42,0x25, 0x5,0x42,0x24,\n  0x6,0x56,0x7a, 0x5,0x41,0x76, 0x6,0x56,0x7e, 0xf,0x44,0x69,\n  0xf,0x44,0x6a, 0xf,0x44,0x6b, 0xf,0x44,0x6c, 0xf,0x44,0x6d,\n  0xf,0x44,0x6f, 0xf,0x44,0x71, 0x4,0x40,0x2b, 0x6,0x57,0x23,\n  0x6,0x57,0x22, 0xf,0x44,0x70, 0x7,0x27,0x32, 0x7,0x27,0x33,\n  0x6,0x56,0x7b, 0x5,0x41,0x7e, 0x5,0x41,0x7c, 0x4,0x46,0x44,\n  0x5,0x48,0x7b, 0x4,0x46,0x4c, 0x4,0x46,0x43, 0x5,0x49,0x23,\n  0x6,0x60,0x6a, 0x5,0x48,0x7a, 0x4,0x46,0x4a, 0x5,0x49,0x24,\n  0x5,0x49,0x21, 0x4,0x46,0x49, 0x5,0x48,0x77, 0x5,0x48,0x7d,\n  0x4,0x46,0x3a, 0x4,0x46,0x4b, 0x5,0x48,0x78, 0x6,0x60,0x71,\n  0x6,0x60,0x6c, 0x5,0x48,0x76, 0x6,0x60,0x6e, 0x5,0x48,0x79,\n  0x6,0x60,0x6d, 0x5,0x48,0x7c, 0x7,0x31,0x63, 0x5,0x49,0x22,\n  0x4,0x46,0x48, 0x6,0x60,0x6b, 0xf,0x4b,0x4d, 0xf,0x4b,0x4e,\n  0xf,0x4b,0x4f, 0xf,0x4b,0x51, 0xf,0x4b,0x52, 0xf,0x4b,0x55,\n  0xf,0x4b,0x53, 0x6,0x60,0x70, 0x6,0x5d,0x5c, 0x5,0x41,0x77,\n  0x5,0x48,0x7e, 0x4,0x4c,0x53, 0x5,0x4f,0x7b, 0x7,0x27,0x34,\n  0x4,0x4c,0x57, 0x7,0x27,0x3b, 0x5,0x4f,0x7a, 0x4,0x4c,0x59,\n  0x7,0x3a,0x60, 0x7,0x27,0x37, 0x5,0x4f,0x7c, 0x7,0x27,0x35,\n  0x4,0x4c,0x5a, 0x7,0x3a,0x5e, 0x5,0x4f,0x78, 0x7,0x27,0x38,\n  0xf,0x51,0x51, 0xf,0x51,0x52, 0xf,0x51,0x53, 0xf,0x51,0x54,\n  0x7,0x27,0x36, 0x7,0x27,0x39, 0x7,0x27,0x3a, 0x7,0x3a,0x5f,\n  0x6,0x60,0x69, 0x5,0x4f,0x79, 0xf,0x5c,0x35, 0x7,0x31,0x6c,\n  0x5,0x57,0x37, 0x5,0x57,0x32, 0x4,0x52,0x68, 0x4,0x52,0x5d,\n  0x5,0x57,0x31, 0x4,0x52,0x5f, 0x7,0x31,0x67, 0x7,0x31,0x6e,\n  0x5,0x57,0x35, 0x5,0x57,0x36, 0x4,0x52,0x65, 0x5,0x4f,0x7d,\n  0x5,0x57,0x34, 0x7,0x31,0x65, 0x7,0x31,0x6d, 0x5,0x57,0x39,\n  0x7,0x31,0x6a, 0x5,0x69,0x24, 0x4,0x52,0x60, 0x7,0x31,0x6f,\n  0xf,0x57,0x31, 0xf,0x57,0x33, 0xf,0x57,0x32, 0x7,0x27,0x3c,\n  0x7,0x31,0x68, 0x7,0x31,0x69, 0x7,0x31,0x64, 0x7,0x31,0x66,\n  0x7,0x31,0x6b, 0x7,0x41,0x7a, 0x7,0x48,0x79, 0x7,0x41,0x7b,\n  0x5,0x57,0x3a, 0x5,0x57,0x30, 0x5,0x57,0x3b, 0x5,0x57,0x38,\n  0x5,0x57,0x33, 0x7,0x42,0x21, 0x5,0x5d,0x5a, 0x5,0x5d,0x59,\n  0x7,0x3a,0x62, 0x4,0x58,0x2e, 0x4,0x58,0x2a, 0x4,0x58,0x29,\n  0x5,0x5d,0x58, 0x5,0x5d,0x56, 0x4,0x60,0x71, 0x7,0x48,0x7b,\n  0x5,0x5d,0x5e, 0x7,0x3a,0x65, 0xf,0x5c,0x2e, 0xf,0x5c,0x2f,\n  0xf,0x5c,0x31, 0xf,0x5c,0x32, 0xf,0x5c,0x33, 0xf,0x5c,0x34,\n  0xf,0x5c,0x36, 0xf,0x5c,0x30, 0x7,0x37,0x7e, 0x7,0x3a,0x63,\n  0x7,0x48,0x7a, 0x7,0x48,0x7d, 0x5,0x5d,0x5d, 0x7,0x3a,0x61,\n  0x5,0x5d,0x5c, 0x5,0x5d,0x57, 0x7,0x3a,0x64, 0x7,0x48,0x7e,\n  0x4,0x5c,0x75, 0x5,0x63,0x6a, 0x5,0x63,0x67, 0x5,0x63,0x69,\n  0x5,0x63,0x6c, 0x7,0x41,0x7c, 0x5,0x63,0x6e, 0x7,0x41,0x7e,\n  0x5,0x63,0x6b, 0x7,0x42,0x23, 0x5,0x63,0x68, 0x5,0x6d,0x2a,\n  0x5,0x63,0x6f, 0xf,0x60,0x3b, 0xf,0x60,0x3c, 0xf,0x60,0x3d,\n  0xf,0x60,0x40, 0xf,0x60,0x41, 0x7,0x41,0x7d, 0x7,0x42,0x6d,\n  0x4,0x5c,0x73, 0x4,0x60,0x72, 0x7,0x49,0x23, 0x7,0x49,0x29,\n  0x5,0x69,0x25, 0x5,0x69,0x26, 0x5,0x63,0x6d, 0x7,0x49,0x24,\n  0xf,0x63,0x4a, 0x7,0x49,0x28, 0x7,0x49,0x2a, 0xf,0x63,0x4c,\n  0xf,0x63,0x4d, 0x7,0x49,0x22, 0x7,0x49,0x26, 0x7,0x49,0x25,\n  0x7,0x49,0x27, 0x7,0x49,0x21, 0xf,0x63,0x4b, 0x7,0x49,0x2b,\n  0x7,0x4f,0x3d, 0x5,0x6d,0x2e, 0x5,0x6d,0x2d, 0x4,0x64,0x2b,\n  0x4,0x64,0x29, 0x5,0x6d,0x2b, 0xf,0x65,0x76, 0x7,0x4f,0x3c,\n  0x7,0x4f,0x3b, 0x4,0x67,0x26, 0x7,0x54,0x4f, 0x5,0x70,0x77,\n  0x7,0x5c,0x40, 0x7,0x55,0x3a, 0x7,0x5c,0x3f, 0x4,0x69,0x31,\n  0x4,0x69,0x2f, 0x7,0x58,0x65, 0xf,0x68,0x33, 0x7,0x5c,0x41,\n  0x5,0x76,0x3d, 0x7,0x5c,0x43, 0x7,0x5c,0x45, 0x7,0x5c,0x46,\n  0x5,0x76,0x3c, 0x7,0x5c,0x42, 0x4,0x6a,0x6e, 0x7,0x5c,0x47,\n  0x7,0x5c,0x48, 0x7,0x5f,0x3d, 0x5,0x77,0x7d, 0x7,0x5f,0x3e,\n  0x5,0x79,0x3c, 0x7,0x64,0x57, 0x5,0x7a,0x6f, 0x5,0x7b,0x45,\n  0x6,0x28,0x7c, 0x4,0x24,0x71, 0xf,0x2a,0x49, 0x6,0x3b,0x34,\n  0xf,0x32,0x2f, 0x6,0x4d,0x56, 0x6,0x4d,0x57, 0xf,0x4b,0x58,\n  0xf,0x4b,0x59, 0xf,0x51,0x56, 0x6,0x60,0x73, 0xf,0x5c,0x37,\n  0x7,0x42,0x25, 0xf,0x60,0x42, 0x5,0x70,0x79, 0xf,0x68,0x34,\n  0xf,0x69,0x67, 0x7,0x65,0x3d, 0x5,0x7c,0x2c, 0x6,0x25,0x4a,\n  0x6,0x28,0x7e, 0x4,0x24,0x72, 0x6,0x28,0x7d, 0x6,0x2d,0x70,\n  0x5,0x2b,0x3a, 0x6,0x34,0x32, 0xf,0x2d,0x30, 0x5,0x2f,0x72,\n  0x6,0x3b,0x36, 0x4,0x2f,0x49, 0xf,0x32,0x30, 0x6,0x3b,0x37,\n  0x6,0x3b,0x35, 0x6,0x43,0x66, 0x6,0x43,0x65, 0xf,0x37,0x6d,\n  0xf,0x37,0x6e, 0x6,0x4d,0x59, 0x6,0x4d,0x5a, 0x6,0x57,0x24,\n  0x5,0x49,0x25, 0xf,0x4b,0x5a, 0x4,0x4c,0x60, 0x4,0x4c,0x61,\n  0x5,0x4f,0x7e, 0xf,0x51,0x57, 0x7,0x27,0x3d, 0x4,0x52,0x69,\n  0x5,0x57,0x3c, 0x7,0x3a,0x66, 0x5,0x5d,0x60, 0x5,0x5d,0x5f,\n  0xf,0x5c,0x38, 0xf,0x60,0x43, 0x5,0x69,0x27, 0x4,0x60,0x75,\n  0x5,0x6d,0x31, 0xf,0x63,0x4e, 0x7,0x49,0x2c, 0x5,0x6d,0x2f,\n  0x5,0x6d,0x30, 0x7,0x62,0x51, 0x6,0x29,0x21, 0x6,0x2d,0x71,\n  0x6,0x2d,0x72, 0x6,0x3b,0x3a, 0xf,0x2d,0x31, 0x6,0x3b,0x38,\n  0x6,0x3b,0x39, 0x5,0x34,0x77, 0x4,0x34,0x56, 0x6,0x4d,0x5b,\n  0x5,0x42,0x2a, 0x5,0x49,0x26, 0xf,0x4b,0x5b, 0x5,0x50,0x21,\n  0x7,0x27,0x3e, 0xf,0x51,0x58, 0x5,0x50,0x22, 0x7,0x31,0x71,\n  0x4,0x52,0x6a, 0x5,0x57,0x3d, 0xf,0x57,0x34, 0x4,0x58,0x2f,\n  0x5,0x63,0x70, 0x5,0x63,0x71, 0x4,0x24,0x74, 0x6,0x25,0x4b,\n  0x6,0x23,0x64, 0x6,0x2d,0x73, 0x6,0x2d,0x74, 0xf,0x2d,0x32,\n  0x4,0x2f,0x4b, 0x6,0x34,0x33, 0x6,0x3b,0x3b, 0x6,0x3b,0x41,\n  0x6,0x3b,0x3d, 0x6,0x3b,0x3c, 0x4,0x2f,0x4c, 0x6,0x3b,0x3f,\n  0x6,0x3b,0x40, 0x6,0x43,0x69, 0x5,0x34,0x78, 0x6,0x3b,0x3e,\n  0x6,0x43,0x68, 0x6,0x43,0x6b, 0x6,0x43,0x6a, 0x5,0x3b,0x52,\n  0x6,0x4d,0x5c, 0x5,0x3b,0x53, 0x5,0x49,0x27, 0x6,0x57,0x28,\n  0x6,0x57,0x27, 0x6,0x57,0x25, 0x6,0x60,0x74, 0x6,0x60,0x7a,\n  0x6,0x60,0x75, 0x6,0x60,0x76, 0x5,0x50,0x23, 0x7,0x27,0x3f,\n  0x6,0x60,0x77, 0x6,0x60,0x7b, 0x6,0x60,0x78, 0x7,0x27,0x40,\n  0x7,0x27,0x41, 0x7,0x27,0x42, 0x6,0x60,0x79, 0x5,0x49,0x28,\n  0x5,0x50,0x24, 0x5,0x50,0x25, 0x7,0x27,0x43, 0x7,0x27,0x44,\n  0x7,0x31,0x72, 0x7,0x27,0x45, 0x7,0x27,0x46, 0xf,0x57,0x35,\n  0x7,0x31,0x74, 0x7,0x31,0x73, 0x5,0x5d,0x62, 0x7,0x31,0x77,\n  0x7,0x31,0x76, 0x7,0x31,0x75, 0x5,0x5d,0x61, 0x5,0x5d,0x64,\n  0x7,0x3a,0x67, 0x7,0x42,0x28, 0x7,0x42,0x27, 0x5,0x5d,0x65,\n  0x4,0x5c,0x77, 0x7,0x42,0x26, 0xf,0x60,0x44, 0xf,0x60,0x45,\n  0x7,0x49,0x2d, 0x5,0x63,0x73, 0x5,0x63,0x72, 0x7,0x49,0x2e,\n  0x7,0x4f,0x3f, 0x5,0x69,0x28, 0x5,0x6d,0x33, 0x5,0x6d,0x34,\n  0x5,0x6d,0x35, 0x7,0x4f,0x3e, 0x7,0x49,0x2f, 0xf,0x63,0x4f,\n  0x5,0x69,0x29, 0x7,0x4f,0x40, 0x7,0x4f,0x41, 0x5,0x70,0x7a,\n  0xf,0x65,0x78, 0xf,0x68,0x35, 0xf,0x68,0x37, 0x7,0x58,0x66,\n  0xf,0x68,0x36, 0x7,0x58,0x67, 0x7,0x5c,0x49, 0x5,0x77,0x7e,\n  0x7,0x61,0x37, 0x5,0x79,0x3d, 0x5,0x79,0x3f, 0x5,0x79,0x3e,\n  0xf,0x6c,0x6a, 0x7,0x65,0x3e, 0x7,0x65,0x3f, 0x7,0x66,0x53,\n  0x5,0x7c,0x50, 0xf,0x25,0x2b, 0x6,0x34,0x34, 0x4,0x2f,0x4e,\n  0x4,0x2f,0x4d, 0x6,0x3b,0x42, 0x6,0x3b,0x43, 0x6,0x3b,0x44,\n  0x5,0x2f,0x73, 0x5,0x2f,0x74, 0x6,0x43,0x6c, 0x6,0x43,0x6d,\n  0x6,0x41,0x7d, 0x6,0x4d,0x60, 0x6,0x4d,0x5f, 0x6,0x4d,0x61,\n  0xf,0x3e,0x50, 0x5,0x49,0x29, 0x4,0x46,0x4d, 0x5,0x45,0x53,\n  0x4,0x46,0x4e, 0x6,0x57,0x29, 0xf,0x4b,0x5c, 0x6,0x60,0x7c,\n  0x6,0x60,0x7e, 0x6,0x60,0x7d, 0x7,0x27,0x47, 0xf,0x51,0x59,\n  0x7,0x27,0x49, 0x7,0x27,0x48, 0x7,0x31,0x78, 0x5,0x57,0x3e,\n  0x7,0x31,0x79, 0x7,0x3a,0x68, 0xf,0x60,0x46, 0x5,0x63,0x74,\n  0x7,0x42,0x2a, 0x7,0x42,0x29, 0x5,0x6d,0x36, 0x5,0x70,0x7b,\n  0x7,0x5c,0x4a, 0x5,0x76,0x3e, 0x5,0x50,0x26, 0x5,0x50,0x27,\n  0xf,0x60,0x47, 0x7,0x4f,0x42, 0x7,0x5c,0x4b, 0x7,0x5f,0x3f,\n  0x7,0x61,0x39, 0x5,0x7a,0x70, 0x5,0x24,0x74, 0x4,0x27,0x71,\n  0x4,0x27,0x70, 0x6,0x2d,0x77, 0x6,0x2d,0x76, 0x6,0x2d,0x75,\n  0x5,0x27,0x5f, 0x4,0x2b,0x31, 0x4,0x2b,0x35, 0x4,0x2b,0x34,\n  0x6,0x34,0x35, 0x6,0x34,0x37, 0x6,0x34,0x36, 0x6,0x3b,0x4a,\n  0x5,0x2f,0x75, 0x6,0x3b,0x49, 0x6,0x3b,0x45, 0x5,0x2f,0x76,\n  0x4,0x2f,0x52, 0x4,0x2f,0x51, 0x6,0x3b,0x46, 0x6,0x3b,0x47,\n  0x6,0x3b,0x48, 0x5,0x34,0x7a, 0x4,0x34,0x59, 0x4,0x34,0x5b,\n  0x6,0x43,0x72, 0x5,0x34,0x7b, 0x6,0x43,0x6e, 0x6,0x43,0x6f,\n  0xf,0x37,0x71, 0x5,0x34,0x79, 0xf,0x37,0x70, 0xf,0x37,0x72,\n  0x5,0x3b,0x54, 0x6,0x4d,0x65, 0x6,0x4d,0x64, 0x4,0x34,0x5a,\n  0x4,0x3a,0x52, 0x4,0x3a,0x50, 0x4,0x3a,0x51, 0x4,0x3a,0x53,\n  0x6,0x4d,0x66, 0x5,0x42,0x2b, 0x6,0x57,0x2c, 0x5,0x42,0x2c,\n  0x6,0x57,0x2a, 0xf,0x44,0x72, 0x6,0x57,0x2b, 0x6,0x57,0x2d,\n  0x6,0x57,0x2e, 0x5,0x42,0x2e, 0x6,0x61,0x27, 0x5,0x49,0x2d,\n  0x5,0x49,0x2b, 0x4,0x46,0x52, 0x6,0x61,0x22, 0x6,0x61,0x26,\n  0xf,0x4b,0x5e, 0xf,0x4b,0x5f, 0xf,0x4b,0x5d, 0x6,0x61,0x23,\n  0x5,0x49,0x2a, 0x5,0x50,0x2f, 0x4,0x4c,0x67, 0x4,0x4c,0x66,\n  0x5,0x50,0x2e, 0x5,0x50,0x2b, 0x5,0x50,0x2c, 0x5,0x50,0x30,\n  0x5,0x50,0x28, 0x7,0x27,0x4f, 0x7,0x27,0x4d, 0x5,0x50,0x31,\n  0x7,0x27,0x4a, 0x7,0x27,0x4c, 0x7,0x27,0x4e, 0x7,0x27,0x4b,\n  0x5,0x50,0x2d, 0x5,0x50,0x29, 0x5,0x50,0x2a, 0x5,0x57,0x42,\n  0x5,0x57,0x3f, 0x5,0x57,0x43, 0x7,0x31,0x7c, 0x5,0x57,0x40,\n  0x7,0x32,0x21, 0x7,0x31,0x7d, 0x7,0x32,0x23, 0x5,0x57,0x41,\n  0x7,0x32,0x22, 0xf,0x57,0x36, 0x7,0x31,0x7e, 0x7,0x31,0x7b,\n  0x7,0x3a,0x6a, 0x4,0x58,0x31, 0x5,0x5d,0x6c, 0x5,0x5d,0x66,\n  0x5,0x5d,0x69, 0x5,0x5d,0x68, 0x5,0x5d,0x6a, 0x5,0x5d,0x6b,\n  0x4,0x5c,0x79, 0x5,0x63,0x7b, 0x7,0x42,0x2c, 0x5,0x63,0x75,\n  0x5,0x63,0x7a, 0x5,0x63,0x7d, 0x5,0x63,0x79, 0x4,0x5c,0x7a,\n  0x4,0x5c,0x7b, 0x5,0x63,0x76, 0x5,0x63,0x77, 0x5,0x63,0x7c,\n  0x4,0x5c,0x78, 0x7,0x42,0x2d, 0x7,0x42,0x2b, 0x5,0x63,0x78,\n  0x7,0x49,0x30, 0x5,0x69,0x2d, 0x5,0x69,0x2c, 0x5,0x69,0x2b,\n  0x5,0x69,0x2a, 0x7,0x49,0x31, 0xf,0x63,0x50, 0x7,0x49,0x32,\n  0x5,0x6d,0x37, 0x7,0x4f,0x43, 0x5,0x70,0x7d, 0x5,0x70,0x7c,\n  0x7,0x54,0x52, 0x5,0x74,0x21, 0x5,0x74,0x22, 0x4,0x69,0x32,\n  0x7,0x58,0x68, 0x7,0x54,0x50, 0x7,0x54,0x51, 0x4,0x6a,0x6f,\n  0x7,0x5c,0x4c, 0x7,0x61,0x3b, 0x7,0x61,0x3a, 0x7,0x62,0x52,\n  0x5,0x7a,0x71, 0x4,0x6e,0x4f, 0x6,0x34,0x38, 0xf,0x37,0x73,\n  0x5,0x3b,0x3f, 0xf,0x3e,0x51, 0xf,0x51,0x5a, 0xf,0x5c,0x39,\n  0x7,0x4f,0x44, 0x5,0x34,0x7c, 0x5,0x34,0x7d, 0x6,0x43,0x73,\n  0x5,0x34,0x7e, 0xf,0x3e,0x52, 0x6,0x57,0x2f, 0x6,0x57,0x30,\n  0x6,0x57,0x31, 0x6,0x61,0x29, 0xf,0x4b,0x60, 0x6,0x61,0x2a,\n  0x6,0x61,0x28, 0x7,0x27,0x51, 0x7,0x27,0x50, 0x7,0x27,0x52,\n  0xf,0x51,0x5b, 0xf,0x51,0x5c, 0xf,0x51,0x5d, 0x5,0x57,0x44,\n  0x5,0x57,0x45, 0x7,0x32,0x25, 0x7,0x32,0x24, 0x5,0x6d,0x39,\n  0x5,0x6d,0x38, 0x7,0x4f,0x45, 0xf,0x6c,0x37, 0x5,0x21,0x7b,\n  0x6,0x23,0x38, 0x4,0x23,0x2e, 0x6,0x25,0x50, 0x6,0x25,0x51,\n  0x6,0x2d,0x78, 0x6,0x25,0x4e, 0x5,0x23,0x26, 0x6,0x25,0x4d,\n  0xf,0x22,0x6f, 0xf,0x22,0x70, 0xf,0x22,0x6e, 0x6,0x25,0x4c,\n  0x4,0x24,0x77, 0x4,0x24,0x78, 0x4,0x24,0x7c, 0x6,0x29,0x22,\n  0x4,0x24,0x7a, 0x6,0x29,0x25, 0x6,0x29,0x23, 0x6,0x29,0x24,\n  0x6,0x29,0x26, 0xf,0x25,0x2c, 0xf,0x25,0x2d, 0xf,0x25,0x2e,\n  0xf,0x25,0x2f, 0xf,0x25,0x30, 0xf,0x25,0x31, 0x6,0x2d,0x7b,\n  0x4,0x27,0x7c, 0x4,0x27,0x77, 0x4,0x27,0x79, 0x5,0x27,0x62,\n  0x4,0x27,0x7d, 0x4,0x27,0x78, 0x4,0x27,0x75, 0x5,0x27,0x60,\n  0x6,0x2d,0x7c, 0x5,0x27,0x61, 0x4,0x27,0x74, 0x6,0x3b,0x4b,\n  0x6,0x27,0x4c, 0x6,0x2e,0x21, 0x5,0x27,0x64, 0x4,0x27,0x76,\n  0x6,0x2d,0x7a, 0x6,0x2d,0x7e, 0x6,0x3b,0x4d, 0x6,0x3b,0x4c,\n  0xf,0x28,0x57, 0xf,0x28,0x58, 0xf,0x28,0x59, 0xf,0x28,0x5a,\n  0xf,0x28,0x5b, 0xf,0x28,0x5d, 0xf,0x28,0x5e, 0xf,0x28,0x5f,\n  0xf,0x28,0x60, 0xf,0x28,0x61, 0xf,0x28,0x62, 0xf,0x28,0x64,\n  0x6,0x2d,0x79, 0x4,0x2b,0x3b, 0x4,0x2b,0x37, 0x4,0x2b,0x38,\n  0x4,0x2b,0x39, 0x5,0x2b,0x3f, 0x6,0x34,0x43, 0x6,0x34,0x3b,\n  0x4,0x2b,0x3c, 0x6,0x34,0x41, 0x6,0x34,0x3d, 0x5,0x2b,0x3d,\n  0x6,0x34,0x39, 0x6,0x34,0x40, 0x6,0x34,0x3e, 0x6,0x34,0x42,\n  0x6,0x34,0x45, 0x6,0x34,0x46, 0x5,0x2b,0x3b, 0x5,0x2b,0x3e,\n  0x5,0x2b,0x3c, 0xf,0x2d,0x33, 0xf,0x2d,0x35, 0xf,0x2d,0x37,\n  0xf,0x2d,0x38, 0xf,0x2d,0x39, 0xf,0x2d,0x3a, 0xf,0x2d,0x3b,\n  0xf,0x2d,0x3c, 0xf,0x2d,0x36, 0x6,0x33,0x3e, 0x6,0x34,0x3f,\n  0xf,0x2d,0x34, 0x6,0x2d,0x7d, 0x6,0x4d,0x68, 0xf,0x2a,0x52,\n  0x5,0x2f,0x7c, 0x4,0x2f,0x56, 0x4,0x2f,0x57, 0x4,0x2f,0x62,\n  0x5,0x2f,0x78, 0x5,0x2f,0x7a, 0x5,0x2f,0x7e, 0x4,0x2f,0x54,\n  0x5,0x2f,0x77, 0x5,0x30,0x23, 0x4,0x2f,0x5b, 0x5,0x30,0x27,\n  0x4,0x2f,0x58, 0x4,0x2f,0x65, 0x5,0x30,0x24, 0x4,0x2f,0x60,\n  0x6,0x3b,0x5e, 0x6,0x3b,0x5f, 0x5,0x30,0x25, 0x6,0x3b,0x61,\n  0x5,0x30,0x22, 0x4,0x2f,0x66, 0x6,0x3b,0x59, 0x6,0x3b,0x58,\n  0x6,0x4d,0x67, 0x6,0x44,0x22, 0x6,0x3b,0x55, 0x5,0x2f,0x7d,\n  0x6,0x3b,0x54, 0x6,0x3b,0x51, 0x6,0x3b,0x4f, 0x6,0x3b,0x5a,\n  0x6,0x3b,0x5c, 0x5,0x2f,0x7b, 0x6,0x3b,0x57, 0x5,0x30,0x26,\n  0x5,0x2f,0x79, 0x6,0x3b,0x53, 0x6,0x3b,0x5b, 0x6,0x3b,0x5d,\n  0x6,0x3b,0x62, 0xf,0x32,0x33, 0xf,0x32,0x35, 0xf,0x32,0x36,\n  0xf,0x32,0x37, 0xf,0x32,0x38, 0xf,0x32,0x39, 0xf,0x32,0x3b,\n  0xf,0x32,0x3c, 0xf,0x32,0x3d, 0xf,0x32,0x3f, 0xf,0x32,0x40,\n  0xf,0x32,0x42, 0xf,0x32,0x43, 0xf,0x32,0x44, 0xf,0x32,0x45,\n  0xf,0x32,0x47, 0xf,0x32,0x48, 0xf,0x32,0x49, 0xf,0x32,0x4a,\n  0xf,0x32,0x4b, 0x6,0x3b,0x50, 0xf,0x32,0x46, 0xf,0x32,0x4c,\n  0xf,0x32,0x3e, 0x5,0x35,0x2b, 0x5,0x35,0x2e, 0x5,0x35,0x27,\n  0x4,0x34,0x70, 0x5,0x35,0x2c, 0x4,0x34,0x61, 0x4,0x34,0x6e,\n  0x4,0x34,0x68, 0x6,0x44,0x32, 0x4,0x34,0x72, 0x4,0x34,0x75,\n  0x6,0x44,0x26, 0x6,0x43,0x7b, 0x6,0x44,0x23, 0x5,0x35,0x23,\n  0x6,0x43,0x79, 0x6,0x43,0x75, 0x4,0x34,0x60, 0x5,0x35,0x32,\n  0x6,0x43,0x74, 0x6,0x44,0x21, 0x6,0x44,0x38, 0x4,0x34,0x64,\n  0x6,0x44,0x36, 0x6,0x4e,0x3a, 0x6,0x44,0x34, 0x6,0x3b,0x60,\n  0x6,0x4d,0x78, 0x4,0x34,0x5f, 0x5,0x35,0x21, 0x4,0x34,0x6b,\n  0x6,0x43,0x77, 0x6,0x44,0x24, 0x5,0x35,0x30, 0x6,0x44,0x2f,\n  0x6,0x44,0x35, 0x6,0x44,0x2e, 0x6,0x44,0x29, 0x5,0x35,0x2f,\n  0x6,0x44,0x33, 0x6,0x43,0x78, 0x6,0x44,0x27, 0x5,0x35,0x31,\n  0x5,0x42,0x2f, 0x6,0x57,0x32, 0x6,0x57,0x33, 0x6,0x44,0x30,\n  0x6,0x44,0x31, 0x6,0x43,0x7e, 0x5,0x35,0x22, 0x5,0x35,0x33,\n  0x6,0x44,0x2a, 0x5,0x35,0x29, 0x5,0x35,0x2d, 0x5,0x35,0x26,\n  0x6,0x4e,0x37, 0x6,0x44,0x39, 0x6,0x44,0x3a, 0x6,0x43,0x7c,\n  0x6,0x43,0x7a, 0xf,0x37,0x74, 0xf,0x37,0x75, 0xf,0x37,0x76,\n  0xf,0x37,0x77, 0xf,0x37,0x79, 0xf,0x37,0x7b, 0xf,0x37,0x7c,\n  0xf,0x37,0x7d, 0xf,0x37,0x7e, 0xf,0x38,0x21, 0xf,0x38,0x22,\n  0xf,0x38,0x24, 0xf,0x38,0x25, 0xf,0x38,0x26, 0xf,0x38,0x27,\n  0xf,0x38,0x28, 0xf,0x38,0x29, 0xf,0x38,0x2a, 0xf,0x38,0x2b,\n  0xf,0x38,0x2c, 0xf,0x38,0x2d, 0xf,0x38,0x2e, 0xf,0x38,0x2f,\n  0xf,0x38,0x30, 0xf,0x38,0x31, 0xf,0x38,0x32, 0xf,0x38,0x33,\n  0xf,0x38,0x34, 0xf,0x38,0x35, 0x5,0x3b,0x5d, 0x6,0x43,0x7d,\n  0x5,0x35,0x28, 0x6,0x44,0x25, 0xf,0x37,0x7a, 0x6,0x44,0x2d,\n  0x6,0x44,0x37, 0xf,0x38,0x23, 0x5,0x35,0x25, 0x5,0x3b,0x55,\n  0x4,0x3a,0x55, 0x5,0x3b,0x69, 0x5,0x3b,0x6a, 0x5,0x3b,0x62,\n  0x5,0x3b,0x6c, 0x5,0x3b,0x6d, 0x5,0x3b,0x63, 0x4,0x3a,0x5d,\n  0x6,0x4d,0x7a, 0x6,0x4d,0x72, 0x6,0x4e,0x2b, 0x6,0x4d,0x70,\n  0x6,0x4d,0x6b, 0x5,0x3b,0x5f, 0x5,0x3b,0x67, 0x5,0x3b,0x68,\n  0x6,0x4d,0x7b, 0x6,0x4d,0x79, 0x5,0x3b,0x5e, 0x5,0x3b,0x6e,\n  0x5,0x3b,0x6b, 0x4,0x34,0x6a, 0x4,0x3a,0x57, 0x4,0x3a,0x5a,\n  0x4,0x3a,0x58, 0x4,0x3a,0x62, 0x5,0x3b,0x5a, 0x4,0x3a,0x54,\n  0x6,0x4d,0x69, 0x6,0x4e,0x35, 0x4,0x3a,0x63, 0x6,0x4d,0x6a,\n  0x5,0x3b,0x64, 0x6,0x4d,0x7c, 0x6,0x4e,0x36, 0x6,0x4d,0x7d,\n  0x6,0x4e,0x2f, 0x6,0x4e,0x30, 0x4,0x3a,0x6b, 0x6,0x4e,0x26,\n  0x4,0x3a,0x69, 0x6,0x4e,0x23, 0x5,0x3b,0x5c, 0x6,0x4e,0x28,\n  0x6,0x4d,0x75, 0x6,0x4e,0x2d, 0x6,0x4d,0x74, 0x6,0x4e,0x22,\n  0x6,0x4e,0x31, 0x6,0x4e,0x29, 0x5,0x3b,0x65, 0x6,0x61,0x32,\n  0x6,0x61,0x2d, 0x6,0x61,0x2e, 0x5,0x3b,0x57, 0x6,0x4e,0x24,\n  0x6,0x4d,0x6f, 0x6,0x4e,0x2e, 0x5,0x49,0x2e, 0x6,0x4d,0x73,\n  0x6,0x4e,0x2c, 0x6,0x4d,0x77, 0x6,0x4e,0x25, 0x6,0x4d,0x6d,\n  0x6,0x4e,0x2a, 0x4,0x3a,0x6a, 0x5,0x3b,0x60, 0x5,0x3b,0x5b,\n  0x6,0x4d,0x76, 0x6,0x4e,0x38, 0x6,0x61,0x2b, 0x5,0x3b,0x66,\n  0x6,0x61,0x2f, 0x5,0x3b,0x61, 0x6,0x4e,0x34, 0x6,0x61,0x31,\n  0x6,0x61,0x30, 0x6,0x4d,0x6c, 0x6,0x4d,0x7e, 0x6,0x4c,0x7b,\n  0x5,0x3b,0x58, 0x6,0x4d,0x6e, 0x6,0x4d,0x71, 0x6,0x4e,0x33,\n  0x6,0x4e,0x39, 0xf,0x3e,0x53, 0xf,0x3e,0x55, 0xf,0x3e,0x56,\n  0xf,0x3e,0x58, 0xf,0x3e,0x5a, 0xf,0x3e,0x5b, 0xf,0x3e,0x5c,\n  0xf,0x3e,0x5d, 0xf,0x3e,0x5e, 0xf,0x3e,0x5f, 0xf,0x3e,0x60,\n  0xf,0x3e,0x61, 0xf,0x3e,0x63, 0xf,0x3e,0x64, 0xf,0x3e,0x65,\n  0xf,0x3e,0x68, 0xf,0x3e,0x69, 0xf,0x3e,0x6a, 0xf,0x3e,0x6d,\n  0xf,0x3e,0x6f, 0xf,0x3e,0x70, 0xf,0x3e,0x71, 0xf,0x3e,0x72,\n  0xf,0x3e,0x74, 0xf,0x3e,0x75, 0xf,0x3e,0x76, 0xf,0x3e,0x77,\n  0xf,0x3e,0x78, 0xf,0x3e,0x79, 0xf,0x3e,0x7a, 0xf,0x3e,0x7b,\n  0xf,0x3e,0x7c, 0xf,0x3e,0x7d, 0xf,0x3e,0x7e, 0x6,0x61,0x2c,\n  0x5,0x3b,0x59, 0x6,0x4e,0x21, 0xf,0x3e,0x62, 0xf,0x3e,0x54,\n  0xf,0x3e,0x6e, 0xf,0x3e,0x73, 0x4,0x40,0x43, 0x6,0x57,0x34,\n  0x6,0x57,0x46, 0x5,0x42,0x4e, 0x6,0x57,0x3a, 0x6,0x57,0x3b,\n  0x5,0x42,0x34, 0x4,0x40,0x3d, 0x6,0x57,0x49, 0x6,0x57,0x5a,\n  0x4,0x40,0x40, 0x4,0x40,0x42, 0x5,0x42,0x45, 0x6,0x57,0x5e,\n  0x5,0x42,0x3a, 0x4,0x40,0x37, 0x4,0x40,0x34, 0x6,0x57,0x41,\n  0x6,0x57,0x63, 0x5,0x42,0x33, 0x6,0x57,0x51, 0x6,0x57,0x55,\n  0x5,0x42,0x43, 0x6,0x57,0x4a, 0x4,0x40,0x38, 0x4,0x40,0x3b,\n  0x5,0x42,0x36, 0x6,0x57,0x43, 0x4,0x40,0x3c, 0x4,0x40,0x45,\n  0x5,0x42,0x41, 0x4,0x40,0x4d, 0x5,0x42,0x4f, 0x4,0x40,0x3e,\n  0x5,0x42,0x46, 0x6,0x57,0x5d, 0x5,0x42,0x3f, 0x4,0x40,0x33,\n  0x4,0x40,0x31, 0x6,0x57,0x65, 0x4,0x40,0x3f, 0x6,0x57,0x42,\n  0x5,0x42,0x48, 0x5,0x42,0x42, 0x5,0x42,0x38, 0x5,0x42,0x3e,\n  0x6,0x57,0x38, 0x6,0x57,0x53, 0x6,0x57,0x4f, 0x6,0x57,0x40,\n  0x6,0x57,0x67, 0x5,0x42,0x3d, 0x6,0x57,0x39, 0x6,0x57,0x64,\n  0x6,0x57,0x37, 0x5,0x42,0x50, 0x6,0x57,0x4e, 0x6,0x57,0x45,\n  0x6,0x57,0x3c, 0x5,0x42,0x49, 0x5,0x42,0x4d, 0x5,0x42,0x3b,\n  0x5,0x42,0x47, 0x6,0x57,0x52, 0x6,0x57,0x60, 0x6,0x57,0x5c,\n  0x6,0x57,0x48, 0x6,0x57,0x56, 0x5,0x42,0x39, 0x4,0x40,0x39,\n  0x6,0x57,0x57, 0x5,0x42,0x30, 0x5,0x42,0x40, 0x5,0x42,0x32,\n  0x5,0x42,0x4a, 0x6,0x57,0x3f, 0x4,0x40,0x35, 0x4,0x40,0x4b,\n  0x6,0x57,0x4c, 0x5,0x42,0x35, 0x5,0x42,0x31, 0x6,0x57,0x47,\n  0x6,0x57,0x58, 0x7,0x27,0x53, 0x6,0x57,0x61, 0x5,0x42,0x3c,\n  0x6,0x57,0x44, 0x6,0x57,0x54, 0x6,0x57,0x36, 0x6,0x57,0x62,\n  0x6,0x57,0x66, 0x6,0x57,0x59, 0x4,0x40,0x4e, 0x5,0x42,0x44,\n  0x5,0x42,0x4b, 0x6,0x57,0x35, 0x6,0x57,0x3e, 0x6,0x57,0x4b,\n  0x6,0x57,0x4d, 0x6,0x57,0x5b, 0x6,0x57,0x5f, 0xf,0x44,0x73,\n  0xf,0x44,0x75, 0xf,0x44,0x76, 0xf,0x44,0x77, 0xf,0x44,0x78,\n  0xf,0x44,0x79, 0xf,0x44,0x7a, 0xf,0x44,0x7b, 0xf,0x44,0x7c,\n  0xf,0x44,0x7d, 0xf,0x44,0x7e, 0xf,0x45,0x21, 0xf,0x45,0x22,\n  0xf,0x45,0x23, 0xf,0x45,0x24, 0xf,0x45,0x25, 0xf,0x45,0x26,\n  0xf,0x45,0x27, 0xf,0x45,0x28, 0xf,0x45,0x29, 0xf,0x45,0x2a,\n  0xf,0x45,0x2b, 0xf,0x45,0x2c, 0xf,0x45,0x2e, 0xf,0x45,0x2f,\n  0xf,0x45,0x30, 0xf,0x45,0x31, 0x5,0x42,0x4c, 0x4,0x40,0x4a,\n  0x6,0x57,0x3d, 0x6,0x4e,0x32, 0xf,0x3e,0x57, 0x5,0x42,0x37,\n  0x4,0x46,0x66, 0x6,0x61,0x60, 0x5,0x49,0x45, 0x6,0x61,0x33,\n  0x6,0x61,0x43, 0x5,0x49,0x4b, 0x4,0x46,0x63, 0x6,0x61,0x56,\n  0x4,0x46,0x56, 0x6,0x61,0x45, 0x4,0x46,0x59, 0x6,0x61,0x3c,\n  0x5,0x49,0x41, 0x6,0x61,0x4a, 0x4,0x46,0x55, 0x6,0x61,0x52,\n  0x5,0x49,0x3d, 0x6,0x61,0x40, 0x6,0x61,0x59, 0x5,0x49,0x49,\n  0x5,0x49,0x46, 0x6,0x61,0x4c, 0x5,0x49,0x3a, 0x4,0x46,0x5a,\n  0x6,0x61,0x39, 0x6,0x61,0x55, 0x6,0x61,0x4d, 0x6,0x61,0x3f,\n  0x5,0x49,0x44, 0x5,0x49,0x39, 0x5,0x49,0x30, 0x4,0x46,0x62,\n  0x6,0x61,0x41, 0x4,0x46,0x5e, 0x6,0x61,0x36, 0x4,0x46,0x5d,\n  0x4,0x46,0x6b, 0x4,0x46,0x5b, 0x5,0x49,0x3f, 0x7,0x27,0x58,\n  0x6,0x61,0x37, 0x5,0x49,0x32, 0x5,0x49,0x37, 0x5,0x49,0x31,\n  0x5,0x49,0x48, 0x5,0x50,0x3b, 0x4,0x46,0x5f, 0x5,0x49,0x43,\n  0x6,0x61,0x38, 0x4,0x46,0x68, 0x6,0x61,0x50, 0x5,0x49,0x38,\n  0x6,0x61,0x57, 0x6,0x61,0x46, 0x6,0x61,0x3b, 0x5,0x49,0x40,\n  0x5,0x49,0x36, 0x7,0x32,0x27, 0x5,0x49,0x2f, 0x5,0x49,0x34,\n  0x6,0x61,0x47, 0x6,0x61,0x49, 0x6,0x61,0x4b, 0x6,0x61,0x4e,\n  0x6,0x61,0x5a, 0x6,0x61,0x5d, 0x6,0x61,0x5e, 0xf,0x4b,0x61,\n  0xf,0x4b,0x62, 0xf,0x4b,0x63, 0xf,0x4b,0x66, 0xf,0x4b,0x68,\n  0xf,0x4b,0x69, 0xf,0x4b,0x6a, 0xf,0x4b,0x6b, 0xf,0x4b,0x6c,\n  0xf,0x4b,0x6d, 0xf,0x4b,0x6e, 0xf,0x4b,0x6f, 0xf,0x4b,0x70,\n  0xf,0x4b,0x71, 0xf,0x4b,0x72, 0xf,0x4b,0x73, 0xf,0x4b,0x74,\n  0xf,0x4b,0x75, 0xf,0x4b,0x76, 0xf,0x4b,0x78, 0xf,0x4b,0x79,\n  0xf,0x4b,0x7a, 0xf,0x4b,0x7c, 0xf,0x4b,0x7d, 0xf,0x4b,0x7e,\n  0xf,0x4c,0x21, 0xf,0x4c,0x22, 0xf,0x4c,0x23, 0xf,0x4c,0x25,\n  0xf,0x4c,0x26, 0xf,0x4c,0x27, 0xf,0x4c,0x28, 0xf,0x4c,0x29,\n  0xf,0x4c,0x2a, 0x6,0x61,0x48, 0x5,0x49,0x42, 0x6,0x61,0x53,\n  0x6,0x61,0x51, 0x6,0x57,0x68, 0x5,0x49,0x4a, 0x6,0x61,0x5c,\n  0x6,0x61,0x5f, 0x6,0x61,0x5b, 0x6,0x61,0x3a, 0x6,0x61,0x35,\n  0x6,0x61,0x42, 0x6,0x61,0x3d, 0x6,0x57,0x50, 0xf,0x4b,0x64,\n  0xf,0x4b,0x67, 0x6,0x61,0x54, 0x4,0x46,0x6a, 0x4,0x46,0x54,\n  0x5,0x49,0x35, 0x5,0x49,0x4d, 0x7,0x32,0x26, 0x5,0x49,0x33,\n  0x6,0x61,0x61, 0x5,0x49,0x47, 0x5,0x49,0x4c, 0x5,0x57,0x46,\n  0xf,0x4b,0x7b, 0x5,0x49,0x3e, 0x7,0x27,0x6c, 0x4,0x4c,0x7e,\n  0x5,0x50,0x32, 0x4,0x4c,0x69, 0x4,0x4c,0x7c, 0x7,0x28,0x21,\n  0x5,0x50,0x35, 0x7,0x28,0x24, 0x7,0x27,0x77, 0x7,0x27,0x5c,\n  0x5,0x50,0x39, 0x7,0x27,0x69, 0x7,0x27,0x78, 0x7,0x27,0x79,\n  0x7,0x27,0x6a, 0x7,0x27,0x73, 0x5,0x50,0x3a, 0x7,0x27,0x6f,\n  0x4,0x4c,0x75, 0x5,0x50,0x3d, 0x5,0x50,0x42, 0x7,0x27,0x60,\n  0x7,0x28,0x22, 0x5,0x50,0x40, 0x5,0x50,0x3f, 0x5,0x57,0x47,\n  0x5,0x50,0x41, 0x5,0x50,0x4b, 0x7,0x27,0x6b, 0x7,0x27,0x76,\n  0x7,0x27,0x59, 0x7,0x27,0x72, 0x7,0x27,0x65, 0x5,0x50,0x48,\n  0x5,0x50,0x37, 0x4,0x4c,0x7b, 0x7,0x27,0x54, 0x7,0x27,0x5b,\n  0x7,0x27,0x64, 0x7,0x27,0x63, 0x7,0x27,0x67, 0x5,0x50,0x33,\n  0x7,0x27,0x66, 0x7,0x27,0x7d, 0x7,0x27,0x5e, 0x5,0x50,0x3e,\n  0x7,0x27,0x56, 0x5,0x50,0x34, 0x5,0x50,0x4a, 0x7,0x27,0x7c,\n  0x7,0x27,0x62, 0x7,0x27,0x5d, 0x7,0x27,0x6e, 0x4,0x4c,0x76,\n  0x5,0x50,0x49, 0x5,0x50,0x45, 0x7,0x27,0x74, 0x5,0x57,0x58,\n  0x4,0x4d,0x22, 0x5,0x50,0x43, 0x7,0x27,0x55, 0x7,0x27,0x5a,\n  0x7,0x27,0x5f, 0x7,0x27,0x70, 0x7,0x27,0x71, 0x7,0x28,0x23,\n  0xf,0x51,0x5e, 0xf,0x51,0x5f, 0xf,0x51,0x60, 0xf,0x51,0x62,\n  0xf,0x51,0x63, 0xf,0x51,0x66, 0xf,0x51,0x67, 0xf,0x51,0x68,\n  0xf,0x51,0x69, 0xf,0x51,0x6a, 0xf,0x51,0x6c, 0xf,0x51,0x6d,\n  0xf,0x51,0x6e, 0xf,0x51,0x6f, 0xf,0x51,0x70, 0xf,0x51,0x72,\n  0xf,0x51,0x75, 0xf,0x51,0x77, 0x4,0x4d,0x23, 0x7,0x27,0x7a,\n  0x5,0x50,0x44, 0x7,0x27,0x7e, 0x7,0x27,0x75, 0x7,0x27,0x68,\n  0xf,0x51,0x71, 0xf,0x51,0x61, 0xf,0x51,0x6b, 0x5,0x50,0x36,\n  0x7,0x27,0x57, 0x5,0x50,0x47, 0x5,0x50,0x3c, 0x6,0x61,0x34,\n  0x7,0x42,0x2e, 0xf,0x4c,0x24, 0x7,0x32,0x51, 0x4,0x53,0x2d,\n  0x7,0x32,0x32, 0x4,0x53,0x2a, 0x4,0x53,0x34, 0x7,0x32,0x53,\n  0x5,0x57,0x49, 0x4,0x53,0x2b, 0x5,0x57,0x5d, 0x7,0x32,0x43,\n  0x5,0x57,0x54, 0x4,0x52,0x71, 0x4,0x53,0x30, 0x5,0x57,0x51,\n  0x5,0x57,0x5b, 0x7,0x32,0x3c, 0x4,0x52,0x75, 0x5,0x57,0x5a,\n  0x5,0x57,0x4b, 0x5,0x57,0x5f, 0x7,0x32,0x33, 0x5,0x57,0x61,\n  0x4,0x53,0x2f, 0x7,0x32,0x28, 0x5,0x57,0x4d, 0x5,0x57,0x4f,\n  0x7,0x32,0x4c, 0x5,0x57,0x55, 0x5,0x57,0x62, 0x7,0x32,0x3d,\n  0x7,0x32,0x3b, 0x5,0x50,0x4c, 0x4,0x52,0x70, 0x5,0x57,0x48,\n  0x5,0x57,0x5e, 0x7,0x32,0x45, 0x7,0x32,0x4b, 0x7,0x32,0x41,\n  0x5,0x57,0x64, 0x5,0x57,0x60, 0x7,0x28,0x25, 0x7,0x27,0x7b,\n  0x7,0x32,0x52, 0x5,0x5d,0x7a, 0x4,0x53,0x26, 0x7,0x32,0x2e,\n  0x4,0x53,0x29, 0x7,0x32,0x36, 0x5,0x57,0x53, 0x4,0x53,0x28,\n  0x4,0x52,0x74, 0x5,0x50,0x38, 0x7,0x32,0x2f, 0x5,0x57,0x52,\n  0x7,0x32,0x38, 0x5,0x57,0x56, 0x5,0x57,0x4c, 0x7,0x32,0x2d,\n  0x7,0x32,0x57, 0x7,0x32,0x4e, 0x4,0x53,0x2e, 0x5,0x57,0x5c,\n  0x7,0x32,0x2a, 0x4,0x52,0x78, 0x7,0x32,0x39, 0x7,0x42,0x2f,\n  0x7,0x32,0x2b, 0x7,0x32,0x55, 0x4,0x53,0x32, 0x7,0x32,0x42,\n  0x7,0x32,0x35, 0x7,0x32,0x3f, 0xf,0x57,0x3e, 0xf,0x57,0x3f,\n  0xf,0x57,0x40, 0xf,0x57,0x41, 0x5,0x57,0x4a, 0x5,0x57,0x50,\n  0x5,0x57,0x57, 0x7,0x32,0x2c, 0x7,0x32,0x34, 0x7,0x32,0x37,\n  0x7,0x32,0x3e, 0x7,0x32,0x40, 0x7,0x32,0x47, 0x7,0x32,0x49,\n  0x7,0x32,0x4d, 0x7,0x32,0x4f, 0x7,0x32,0x54, 0x7,0x32,0x59,\n  0x7,0x32,0x5a, 0xf,0x57,0x37, 0xf,0x57,0x38, 0xf,0x57,0x39,\n  0xf,0x57,0x3a, 0xf,0x57,0x3b, 0xf,0x57,0x3c, 0xf,0x57,0x3d,\n  0xf,0x57,0x42, 0xf,0x57,0x43, 0xf,0x57,0x44, 0xf,0x57,0x49,\n  0xf,0x57,0x4c, 0xf,0x57,0x4d, 0xf,0x57,0x4e, 0xf,0x57,0x4f,\n  0xf,0x57,0x50, 0xf,0x57,0x51, 0xf,0x57,0x52, 0xf,0x57,0x53,\n  0xf,0x57,0x54, 0xf,0x57,0x56, 0xf,0x57,0x57, 0xf,0x57,0x58,\n  0xf,0x57,0x59, 0xf,0x57,0x5a, 0xf,0x57,0x5b, 0xf,0x57,0x5c,\n  0x7,0x32,0x31, 0xf,0x57,0x45, 0x4,0x52,0x7d, 0x7,0x32,0x3a,\n  0x7,0x32,0x58, 0x7,0x32,0x50, 0x5,0x57,0x65, 0x5,0x57,0x4e,\n  0x7,0x32,0x30, 0x7,0x32,0x29, 0x7,0x32,0x48, 0xf,0x57,0x4a,\n  0x7,0x32,0x56, 0x5,0x57,0x63, 0x5,0x57,0x59, 0x7,0x32,0x46,\n  0x7,0x3a,0x76, 0x4,0x58,0x3a, 0x4,0x58,0x3f, 0x7,0x3a,0x6e,\n  0x7,0x42,0x3b, 0x7,0x3a,0x78, 0x4,0x58,0x48, 0x4,0x58,0x49,\n  0x5,0x57,0x66, 0x5,0x5d,0x75, 0x5,0x5d,0x7d, 0x5,0x5d,0x73,\n  0x7,0x3b,0x2b, 0x7,0x3b,0x2f, 0x5,0x5d,0x6f, 0x4,0x58,0x4a,\n  0x4,0x58,0x37, 0x7,0x3a,0x7b, 0x4,0x58,0x45, 0x5,0x5e,0x21,\n  0x7,0x3a,0x7c, 0x7,0x3b,0x23, 0x7,0x3b,0x33, 0x5,0x5d,0x7e,\n  0x5,0x5e,0x25, 0x7,0x3b,0x31, 0x5,0x5e,0x22, 0x5,0x5d,0x6e,\n  0x5,0x5d,0x78, 0x7,0x3a,0x7e, 0x5,0x5d,0x7c, 0x7,0x3a,0x73,\n  0x7,0x3b,0x24, 0x7,0x3b,0x2a, 0x5,0x5d,0x7b, 0x4,0x58,0x4b,\n  0x5,0x5d,0x6d, 0x5,0x5e,0x23, 0x4,0x58,0x41, 0x7,0x3b,0x30,\n  0x5,0x5d,0x77, 0x4,0x58,0x46, 0x5,0x5d,0x71, 0x5,0x5e,0x24,\n  0x7,0x3b,0x25, 0x5,0x5d,0x76, 0x7,0x3a,0x70, 0x7,0x3a,0x75,\n  0x7,0x42,0x39, 0x7,0x3a,0x6b, 0x7,0x3a,0x6c, 0x7,0x3b,0x35,\n  0x7,0x3a,0x7d, 0x4,0x58,0x47, 0x7,0x3b,0x2e, 0x7,0x3a,0x72,\n  0x7,0x3a,0x77, 0x7,0x49,0x34, 0x7,0x3a,0x71, 0x7,0x3b,0x22,\n  0x7,0x3b,0x29, 0x7,0x32,0x4a, 0x7,0x3a,0x79, 0x7,0x3b,0x21,\n  0x7,0x3b,0x37, 0x5,0x5d,0x74, 0x5,0x50,0x4d, 0x4,0x58,0x43,\n  0x7,0x49,0x35, 0x5,0x5d,0x70, 0x5,0x5d,0x72, 0x7,0x3a,0x6d,\n  0x7,0x3b,0x27, 0x7,0x3b,0x28, 0x7,0x3b,0x2c, 0x7,0x3b,0x34,\n  0xf,0x5c,0x3a, 0xf,0x5c,0x3b, 0xf,0x5c,0x3c, 0xf,0x5c,0x3d,\n  0xf,0x5c,0x3e, 0xf,0x5c,0x40, 0xf,0x5c,0x41, 0xf,0x5c,0x42,\n  0xf,0x5c,0x43, 0xf,0x5c,0x44, 0xf,0x5c,0x45, 0xf,0x5c,0x46,\n  0xf,0x5c,0x47, 0xf,0x5c,0x49, 0xf,0x5c,0x4a, 0xf,0x5c,0x4b,\n  0xf,0x5c,0x4c, 0xf,0x5c,0x4f, 0xf,0x5c,0x50, 0x4,0x58,0x39,\n  0x7,0x3a,0x7a, 0x7,0x3b,0x2d, 0x7,0x3b,0x36, 0x7,0x3a,0x74,\n  0xf,0x5c,0x48, 0xf,0x5c,0x3f, 0xf,0x5c,0x4e, 0xf,0x57,0x55,\n  0xf,0x63,0x5b, 0x5,0x64,0x2c, 0x7,0x42,0x4b, 0x4,0x5d,0x24,\n  0x7,0x42,0x4c, 0x5,0x64,0x22, 0x4,0x5d,0x25, 0x5,0x5e,0x26,\n  0x5,0x64,0x2f, 0x7,0x42,0x48, 0x5,0x64,0x25, 0x5,0x63,0x7e,\n  0x7,0x42,0x30, 0x5,0x64,0x21, 0x5,0x64,0x29, 0x5,0x64,0x36,\n  0x5,0x64,0x39, 0x7,0x42,0x36, 0x5,0x64,0x33, 0x7,0x42,0x46,\n  0x4,0x5d,0x22, 0x5,0x5e,0x27, 0x5,0x64,0x38, 0x5,0x64,0x26,\n  0x5,0x64,0x30, 0x7,0x42,0x3d, 0x5,0x64,0x24, 0x5,0x64,0x2e,\n  0x7,0x42,0x4d, 0x4,0x5d,0x30, 0x5,0x64,0x31, 0x4,0x5d,0x2e,\n  0x4,0x5d,0x26, 0x4,0x5d,0x2a, 0x5,0x64,0x34, 0x5,0x64,0x32,\n  0x7,0x42,0x3e, 0x7,0x4f,0x46, 0x7,0x42,0x3a, 0x7,0x42,0x37,\n  0x4,0x5d,0x2f, 0x7,0x49,0x44, 0x5,0x64,0x2b, 0x7,0x42,0x33,\n  0x7,0x42,0x45, 0x7,0x42,0x49, 0x4,0x5d,0x2d, 0x7,0x3b,0x26,\n  0x7,0x42,0x32, 0x7,0x42,0x34, 0x7,0x42,0x35, 0x7,0x42,0x3f,\n  0x7,0x42,0x42, 0x7,0x42,0x44, 0x7,0x42,0x4a, 0x7,0x42,0x4e,\n  0x7,0x42,0x4f, 0xf,0x60,0x48, 0xf,0x60,0x49, 0xf,0x60,0x4a,\n  0xf,0x60,0x4b, 0xf,0x60,0x4c, 0xf,0x60,0x4f, 0xf,0x60,0x50,\n  0xf,0x60,0x51, 0xf,0x60,0x52, 0xf,0x60,0x53, 0xf,0x60,0x54,\n  0xf,0x60,0x55, 0xf,0x60,0x56, 0xf,0x60,0x57, 0xf,0x60,0x58,\n  0xf,0x60,0x59, 0xf,0x60,0x5a, 0xf,0x60,0x5b, 0xf,0x60,0x5c,\n  0xf,0x60,0x5e, 0xf,0x60,0x5f, 0x4,0x5d,0x27, 0x7,0x42,0x40,\n  0x5,0x64,0x27, 0x7,0x42,0x41, 0x7,0x49,0x33, 0x5,0x64,0x35,\n  0x5,0x64,0x2a, 0x4,0x5d,0x29, 0x7,0x42,0x47, 0x5,0x64,0x23,\n  0x5,0x64,0x28, 0x5,0x64,0x37, 0x7,0x42,0x43, 0x7,0x42,0x31,\n  0x5,0x69,0x3e, 0x5,0x69,0x2f, 0x7,0x4f,0x5d, 0x5,0x69,0x30,\n  0x5,0x69,0x3a, 0x5,0x69,0x36, 0x4,0x60,0x7d, 0x4,0x60,0x79,\n  0x5,0x69,0x3f, 0x5,0x69,0x37, 0x7,0x49,0x38, 0x7,0x49,0x45,\n  0x5,0x69,0x3b, 0x5,0x69,0x35, 0x4,0x60,0x7c, 0x5,0x69,0x2e,\n  0x5,0x6d,0x42, 0x7,0x49,0x43, 0x5,0x69,0x38, 0x7,0x49,0x46,\n  0x5,0x69,0x39, 0x7,0x49,0x41, 0x7,0x49,0x54, 0x7,0x49,0x51,\n  0x7,0x49,0x3c, 0x5,0x69,0x33, 0x5,0x69,0x3d, 0x7,0x49,0x4b,\n  0x7,0x49,0x4e, 0x7,0x49,0x3e, 0x7,0x49,0x3d, 0x7,0x49,0x42,\n  0x7,0x49,0x47, 0x7,0x4f,0x54, 0x7,0x49,0x4d, 0x7,0x49,0x39,\n  0x7,0x49,0x4c, 0x7,0x49,0x4a, 0x7,0x4f,0x47, 0x5,0x69,0x34,\n  0x5,0x69,0x32, 0x4,0x60,0x76, 0x5,0x69,0x3c, 0x7,0x49,0x49,\n  0x7,0x49,0x40, 0x7,0x49,0x3f, 0x7,0x49,0x36, 0x7,0x49,0x37,\n  0x7,0x49,0x3a, 0x7,0x49,0x48, 0x7,0x49,0x50, 0x7,0x49,0x52,\n  0xf,0x63,0x51, 0xf,0x63,0x52, 0xf,0x63,0x54, 0xf,0x63,0x55,\n  0xf,0x63,0x56, 0xf,0x63,0x57, 0xf,0x63,0x58, 0xf,0x63,0x59,\n  0xf,0x63,0x5a, 0xf,0x63,0x5c, 0xf,0x63,0x5d, 0xf,0x63,0x5e,\n  0xf,0x63,0x5f, 0xf,0x63,0x60, 0xf,0x63,0x61, 0xf,0x63,0x62,\n  0xf,0x63,0x63, 0xf,0x63,0x64, 0xf,0x63,0x65, 0xf,0x63,0x66,\n  0xf,0x63,0x67, 0xf,0x63,0x68, 0xf,0x63,0x69, 0x7,0x49,0x4f,\n  0x7,0x4f,0x5e, 0x7,0x4f,0x55, 0x7,0x4f,0x4e, 0x5,0x6d,0x40,\n  0x5,0x6d,0x47, 0x7,0x4f,0x61, 0x5,0x6d,0x41, 0x5,0x6d,0x44,\n  0x4,0x64,0x39, 0x7,0x4f,0x58, 0x5,0x6d,0x46, 0x4,0x64,0x35,\n  0x5,0x6d,0x3f, 0x5,0x70,0x7e, 0x7,0x4f,0x5f, 0x5,0x6d,0x3b,\n  0x7,0x4f,0x51, 0x7,0x4f,0x50, 0x7,0x4f,0x4c, 0x5,0x6d,0x3e,\n  0x5,0x6d,0x45, 0x7,0x4f,0x4d, 0x4,0x64,0x31, 0x7,0x4f,0x67,\n  0x5,0x6d,0x3c, 0x7,0x4f,0x4b, 0x7,0x4f,0x53, 0x7,0x4f,0x62,\n  0x7,0x4f,0x5b, 0x7,0x49,0x3b, 0x7,0x4f,0x65, 0x5,0x6d,0x43,\n  0x4,0x64,0x2e, 0x7,0x4f,0x59, 0x5,0x6d,0x3d, 0x7,0x4f,0x66,\n  0x7,0x4f,0x5a, 0x5,0x69,0x31, 0x7,0x54,0x67, 0x7,0x58,0x69,\n  0x7,0x4f,0x49, 0x5,0x6d,0x3a, 0x5,0x6d,0x48, 0x7,0x4f,0x52,\n  0x7,0x4f,0x56, 0x7,0x4f,0x57, 0x7,0x4f,0x5c, 0x7,0x4f,0x63,\n  0x7,0x4f,0x64, 0xf,0x65,0x79, 0xf,0x65,0x7a, 0xf,0x65,0x7b,\n  0xf,0x65,0x7c, 0xf,0x65,0x7d, 0xf,0x65,0x7e, 0xf,0x66,0x21,\n  0xf,0x66,0x22, 0xf,0x66,0x23, 0xf,0x66,0x24, 0xf,0x66,0x25,\n  0xf,0x66,0x26, 0xf,0x66,0x27, 0xf,0x66,0x28, 0xf,0x66,0x29,\n  0xf,0x66,0x2a, 0xf,0x66,0x2b, 0xf,0x66,0x2c, 0x7,0x4f,0x4a,\n  0x7,0x4f,0x48, 0x7,0x4f,0x60, 0x7,0x54,0x63, 0x4,0x69,0x35,\n  0x5,0x71,0x28, 0x7,0x54,0x66, 0x7,0x54,0x5f, 0x5,0x71,0x24,\n  0x4,0x67,0x2c, 0x4,0x67,0x2a, 0x7,0x54,0x59, 0x4,0x67,0x2e,\n  0x5,0x71,0x22, 0x7,0x54,0x64, 0x5,0x71,0x25, 0x7,0x54,0x65,\n  0x4,0x67,0x29, 0x5,0x6d,0x49, 0x5,0x71,0x27, 0x7,0x54,0x5b,\n  0x7,0x54,0x53, 0x5,0x71,0x26, 0x7,0x54,0x62, 0x7,0x54,0x57,\n  0x7,0x54,0x55, 0x7,0x54,0x60, 0x4,0x67,0x2d, 0x5,0x71,0x23,\n  0x5,0x71,0x29, 0x5,0x71,0x2a, 0x7,0x54,0x54, 0x7,0x54,0x5c,\n  0x7,0x4f,0x4f, 0x7,0x54,0x5a, 0x7,0x58,0x76, 0x5,0x71,0x21,\n  0x7,0x54,0x56, 0x7,0x54,0x5d, 0x7,0x54,0x61, 0xf,0x68,0x38,\n  0xf,0x68,0x3a, 0xf,0x68,0x3b, 0xf,0x68,0x3c, 0xf,0x68,0x3d,\n  0xf,0x68,0x3e, 0xf,0x68,0x3f, 0xf,0x68,0x41, 0xf,0x68,0x42,\n  0xf,0x68,0x43, 0xf,0x68,0x44, 0xf,0x68,0x40, 0x7,0x54,0x58,\n  0x5,0x74,0x24, 0x4,0x69,0x36, 0x5,0x74,0x25, 0x5,0x74,0x27,\n  0x5,0x74,0x28, 0x7,0x58,0x70, 0x5,0x74,0x29, 0x4,0x69,0x3b,\n  0x4,0x69,0x3a, 0x7,0x58,0x77, 0x7,0x58,0x75, 0x7,0x58,0x6d,\n  0x7,0x5c,0x53, 0x5,0x74,0x23, 0x5,0x74,0x26, 0x7,0x58,0x6f,\n  0x4,0x69,0x38, 0x4,0x69,0x39, 0x7,0x58,0x6e, 0x4,0x69,0x34,\n  0x7,0x58,0x73, 0x7,0x58,0x6b, 0x7,0x58,0x78, 0x7,0x58,0x6a,\n  0x7,0x58,0x6c, 0x7,0x58,0x71, 0x7,0x58,0x74, 0xf,0x69,0x68,\n  0xf,0x69,0x6b, 0xf,0x69,0x6c, 0x7,0x5c,0x4f, 0x7,0x5c,0x5a,\n  0x4,0x6a,0x75, 0x5,0x76,0x40, 0x4,0x6a,0x74, 0x5,0x76,0x3f,\n  0x4,0x6a,0x71, 0x4,0x6a,0x73, 0x4,0x6a,0x72, 0x4,0x6a,0x70,\n  0x5,0x76,0x43, 0x7,0x5c,0x51, 0x7,0x5c,0x5b, 0x5,0x76,0x42,\n  0x5,0x79,0x40, 0x7,0x5c,0x55, 0x5,0x76,0x44, 0x7,0x5c,0x57,\n  0x7,0x5c,0x58, 0x7,0x5c,0x4d, 0x7,0x5c,0x50, 0x5,0x76,0x41,\n  0x7,0x5c,0x56, 0x7,0x5c,0x54, 0x7,0x5c,0x52, 0x7,0x5c,0x59,\n  0xf,0x6a,0x6d, 0xf,0x6a,0x6e, 0xf,0x6a,0x6f, 0x7,0x5c,0x4e,\n  0xf,0x69,0x6a, 0x5,0x78,0x23, 0x5,0x78,0x22, 0x5,0x78,0x21,\n  0x7,0x5f,0x40, 0x5,0x78,0x24, 0x7,0x5f,0x42, 0x7,0x5f,0x46,\n  0x7,0x5f,0x43, 0x7,0x5f,0x44, 0x7,0x5f,0x49, 0x7,0x5f,0x41,\n  0x7,0x5f,0x47, 0x5,0x79,0x42, 0xf,0x6b,0x60, 0xf,0x6b,0x61,\n  0xf,0x6b,0x63, 0x7,0x5f,0x45, 0x7,0x5f,0x48, 0x5,0x79,0x43,\n  0x7,0x62,0x55, 0x5,0x79,0x41, 0x7,0x62,0x53, 0x7,0x61,0x3e,\n  0x7,0x61,0x3d, 0x7,0x61,0x3c, 0xf,0x6c,0x38, 0xf,0x6c,0x39,\n  0x7,0x61,0x3f, 0x5,0x7a,0x35, 0x5,0x7a,0x36, 0x7,0x62,0x59,\n  0x7,0x62,0x57, 0x7,0x62,0x56, 0x7,0x62,0x58, 0x7,0x62,0x54,\n  0xf,0x6c,0x51, 0x7,0x62,0x48, 0x4,0x6d,0x7a, 0x7,0x63,0x68,\n  0x5,0x7a,0x72, 0x4,0x6d,0x5f, 0x4,0x6d,0x7c, 0xf,0x6c,0x6b,\n  0xf,0x6c,0x6d, 0x5,0x7b,0x46, 0x4,0x6e,0x35, 0x7,0x64,0x58,\n  0x7,0x64,0x59, 0x5,0x7c,0x49, 0x7,0x65,0x40, 0x5,0x7b,0x66,\n  0x7,0x65,0x60, 0x7,0x65,0x76, 0x5,0x7c,0x4f, 0x5,0x7c,0x3d,\n  0x7,0x65,0x5f, 0xf,0x28,0x65, 0x4,0x2b,0x3f, 0x6,0x34,0x49,\n  0x6,0x34,0x48, 0xf,0x32,0x4e, 0x5,0x35,0x36, 0x5,0x35,0x34,\n  0x4,0x34,0x77, 0x4,0x34,0x76, 0x6,0x44,0x41, 0x4,0x34,0x78,\n  0x6,0x44,0x42, 0x6,0x44,0x40, 0x6,0x44,0x3f, 0x6,0x3b,0x63,\n  0x6,0x4e,0x3c, 0x5,0x3b,0x71, 0x6,0x4e,0x3d, 0xf,0x3f,0x22,\n  0xf,0x3f,0x23, 0xf,0x3f,0x24, 0x5,0x42,0x55, 0x5,0x42,0x51,\n  0x5,0x42,0x52, 0x6,0x57,0x6b, 0x6,0x57,0x6a, 0x6,0x57,0x69,\n  0x5,0x49,0x4f, 0x6,0x61,0x62, 0x6,0x61,0x66, 0x4,0x46,0x6f,\n  0x6,0x61,0x65, 0x6,0x61,0x67, 0x6,0x61,0x63, 0x6,0x61,0x64,\n  0x5,0x49,0x50, 0xf,0x4c,0x2b, 0xf,0x4c,0x2c, 0x4,0x46,0x6e,\n  0x7,0x28,0x29, 0x7,0x28,0x27, 0x7,0x32,0x5f, 0x5,0x50,0x4e,\n  0x7,0x28,0x26, 0x7,0x28,0x28, 0xf,0x51,0x79, 0x7,0x26,0x29,\n  0x5,0x57,0x6a, 0x5,0x57,0x6b, 0x5,0x57,0x68, 0x5,0x57,0x69,\n  0x4,0x53,0x35, 0x5,0x57,0x67, 0x7,0x32,0x60, 0x7,0x32,0x5c,\n  0x7,0x32,0x5d, 0x4,0x53,0x38, 0x4,0x53,0x37, 0x5,0x57,0x6d,\n  0x7,0x32,0x5e, 0xf,0x57,0x5d, 0xf,0x57,0x5e, 0xf,0x57,0x5f,\n  0x5,0x57,0x6c, 0x7,0x32,0x5b, 0x4,0x58,0x4c, 0x7,0x3b,0x39,\n  0xf,0x5c,0x51, 0xf,0x5c,0x52, 0xf,0x5c,0x53, 0x7,0x42,0x51,\n  0x5,0x64,0x3d, 0x4,0x5d,0x33, 0x7,0x42,0x50, 0x4,0x5d,0x31,\n  0x7,0x42,0x52, 0x5,0x64,0x3c, 0xf,0x60,0x60, 0x7,0x49,0x56,\n  0x7,0x49,0x55, 0x4,0x60,0x7e, 0x7,0x49,0x57, 0x7,0x4f,0x69,\n  0x5,0x6d,0x4a, 0x7,0x4f,0x6a, 0x7,0x4c,0x26, 0x5,0x71,0x2c,\n  0x7,0x4f,0x68, 0x5,0x71,0x2b, 0x5,0x70,0x4d, 0x7,0x54,0x6a,\n  0x7,0x54,0x69, 0x5,0x74,0x2a, 0x7,0x5c,0x24, 0x4,0x6e,0x38,\n  0x5,0x24,0x75, 0x6,0x29,0x29, 0x4,0x28,0x22, 0x6,0x2e,0x25,\n  0xf,0x28,0x66, 0xf,0x28,0x67, 0xf,0x28,0x69, 0xf,0x28,0x6a,\n  0x4,0x2b,0x43, 0x6,0x34,0x4b, 0x4,0x2b,0x40, 0x4,0x2b,0x42,\n  0x6,0x34,0x4a, 0x5,0x2b,0x40, 0x6,0x34,0x4d, 0x6,0x34,0x4c,\n  0x6,0x34,0x4e, 0xf,0x2d,0x3d, 0xf,0x2d,0x3f, 0xf,0x2d,0x42,\n  0xf,0x2d,0x43, 0xf,0x2d,0x44, 0xf,0x2d,0x41, 0x4,0x2b,0x41,\n  0x5,0x30,0x30, 0x6,0x3b,0x68, 0x5,0x30,0x2c, 0x5,0x30,0x33,\n  0x6,0x3b,0x67, 0x5,0x30,0x2d, 0x5,0x30,0x32, 0x6,0x3b,0x66,\n  0x4,0x2f,0x6c, 0x4,0x2f,0x6a, 0x4,0x2f,0x6e, 0x5,0x30,0x2e,\n  0x6,0x3b,0x70, 0x5,0x30,0x29, 0x6,0x3b,0x6b, 0x5,0x30,0x31,\n  0x5,0x30,0x28, 0x6,0x3b,0x6a, 0x5,0x30,0x2f, 0x5,0x30,0x34,\n  0x6,0x3b,0x6e, 0x6,0x3b,0x64, 0x5,0x30,0x2b, 0x6,0x3b,0x65,\n  0xf,0x32,0x4f, 0x6,0x3b,0x6c, 0x6,0x3b,0x6d, 0x5,0x30,0x2a,\n  0x6,0x3b,0x6f, 0x5,0x35,0x37, 0x4,0x34,0x7d, 0x6,0x44,0x45,\n  0x5,0x35,0x38, 0x5,0x35,0x39, 0x5,0x35,0x3a, 0x5,0x35,0x40,\n  0x4,0x35,0x22, 0xf,0x38,0x3d, 0x4,0x35,0x23, 0x6,0x44,0x4c,\n  0x5,0x35,0x3c, 0x4,0x35,0x21, 0x5,0x35,0x3d, 0x6,0x44,0x46,\n  0x5,0x35,0x41, 0x6,0x44,0x49, 0x4,0x35,0x24, 0x4,0x34,0x7e,\n  0x6,0x44,0x47, 0x6,0x44,0x4a, 0x6,0x44,0x44, 0x6,0x44,0x4b,\n  0x6,0x44,0x4d, 0xf,0x38,0x36, 0xf,0x38,0x37, 0xf,0x38,0x38,\n  0xf,0x38,0x39, 0xf,0x38,0x3b, 0xf,0x38,0x3c, 0xf,0x38,0x3e,\n  0xf,0x38,0x3f, 0xf,0x38,0x40, 0x5,0x35,0x3e, 0x6,0x44,0x4e,\n  0x4,0x35,0x25, 0x6,0x44,0x43, 0x5,0x35,0x3f, 0x5,0x35,0x3b,\n  0x5,0x3b,0x73, 0x6,0x4e,0x40, 0xf,0x3f,0x28, 0x4,0x3a,0x73,\n  0x6,0x4e,0x48, 0x5,0x3c,0x28, 0x5,0x3b,0x78, 0x5,0x3b,0x75,\n  0x5,0x3b,0x77, 0x5,0x3b,0x7a, 0x5,0x3c,0x23, 0x5,0x3b,0x7d,\n  0x6,0x4e,0x49, 0x6,0x4e,0x3e, 0x6,0x4e,0x43, 0x5,0x3b,0x76,\n  0x5,0x3c,0x27, 0x6,0x4e,0x42, 0x6,0x4e,0x4b, 0x6,0x4e,0x4a,\n  0x5,0x3b,0x7c, 0x6,0x4e,0x3f, 0x5,0x3b,0x79, 0x5,0x3c,0x21,\n  0x6,0x4e,0x4d, 0x6,0x4e,0x44, 0x6,0x4e,0x45, 0x6,0x57,0x6e,\n  0x5,0x3c,0x25, 0x5,0x3b,0x7e, 0x6,0x57,0x78, 0x5,0x3c,0x24,\n  0x6,0x4e,0x4c, 0x6,0x4e,0x47, 0x5,0x3c,0x22, 0x5,0x3b,0x72,\n  0x6,0x4e,0x41, 0xf,0x3f,0x25, 0xf,0x3f,0x26, 0xf,0x3f,0x27,\n  0xf,0x3f,0x29, 0x4,0x3a,0x77, 0x6,0x57,0x70, 0x6,0x57,0x6f,\n  0x4,0x40,0x5a, 0x4,0x40,0x5c, 0x6,0x57,0x74, 0x4,0x40,0x54,\n  0x5,0x42,0x58, 0x5,0x42,0x5b, 0x5,0x42,0x56, 0x4,0x40,0x51,\n  0x4,0x40,0x53, 0x5,0x42,0x5c, 0x5,0x42,0x5e, 0x5,0x42,0x5a,\n  0x5,0x42,0x57, 0x4,0x40,0x5e, 0x4,0x40,0x50, 0x6,0x57,0x72,\n  0x6,0x57,0x73, 0x6,0x57,0x6c, 0x6,0x57,0x6d, 0x6,0x61,0x68,\n  0x6,0x57,0x71, 0x6,0x57,0x75, 0x5,0x42,0x59, 0xf,0x45,0x32,\n  0xf,0x45,0x33, 0xf,0x45,0x34, 0xf,0x45,0x35, 0xf,0x45,0x36,\n  0xf,0x45,0x37, 0xf,0x45,0x38, 0xf,0x45,0x39, 0x6,0x57,0x76,\n  0x7,0x49,0x6b, 0x6,0x57,0x77, 0x6,0x57,0x79, 0x5,0x49,0x51,\n  0x5,0x49,0x56, 0x5,0x49,0x5b, 0x5,0x49,0x57, 0x5,0x49,0x5c,\n  0x4,0x47,0x21, 0x5,0x49,0x55, 0x4,0x46,0x7d, 0x6,0x62,0x23,\n  0x5,0x49,0x5f, 0x4,0x46,0x77, 0x5,0x49,0x59, 0x4,0x46,0x74,\n  0x6,0x61,0x76, 0x6,0x61,0x6a, 0x6,0x61,0x75, 0x4,0x47,0x22,\n  0x5,0x49,0x5e, 0x6,0x61,0x6b, 0x6,0x61,0x71, 0x5,0x49,0x54,\n  0x6,0x61,0x7c, 0x5,0x49,0x5d, 0x5,0x49,0x58, 0x6,0x61,0x7b,\n  0x6,0x62,0x21, 0x5,0x49,0x60, 0x6,0x61,0x74, 0x6,0x61,0x7d,\n  0x6,0x61,0x6d, 0x5,0x49,0x61, 0x5,0x49,0x62, 0x6,0x61,0x72,\n  0x6,0x62,0x22, 0x5,0x49,0x5a, 0x6,0x61,0x6c, 0x6,0x61,0x79,\n  0x6,0x61,0x7a, 0x6,0x61,0x70, 0x5,0x49,0x52, 0x6,0x61,0x6e,\n  0x5,0x49,0x53, 0x6,0x61,0x73, 0xf,0x4c,0x2d, 0xf,0x4c,0x2e,\n  0xf,0x4c,0x30, 0xf,0x4c,0x31, 0xf,0x4c,0x32, 0x6,0x61,0x78,\n  0x4,0x40,0x58, 0x6,0x61,0x7e, 0x6,0x61,0x6f, 0x4,0x4d,0x2d,\n  0x7,0x28,0x43, 0x5,0x50,0x53, 0x4,0x4d,0x2e, 0x4,0x4d,0x2b,\n  0x7,0x28,0x38, 0x4,0x4d,0x34, 0x5,0x50,0x5f, 0x7,0x28,0x37,\n  0x7,0x28,0x2c, 0x5,0x50,0x51, 0x7,0x28,0x2b, 0x7,0x28,0x35,\n  0x7,0x28,0x3f, 0x5,0x50,0x57, 0x4,0x4d,0x32, 0x4,0x4d,0x2a,\n  0x7,0x28,0x40, 0x7,0x28,0x34, 0x5,0x50,0x56, 0x7,0x28,0x3b,\n  0x7,0x28,0x31, 0x7,0x28,0x3e, 0x5,0x57,0x6e, 0x4,0x4d,0x2c,\n  0x4,0x4d,0x29, 0x5,0x50,0x5c, 0x5,0x50,0x5a, 0x5,0x50,0x50,\n  0x5,0x50,0x59, 0x5,0x50,0x58, 0x7,0x28,0x2a, 0x5,0x50,0x5b,\n  0x4,0x46,0x7a, 0x5,0x50,0x52, 0x5,0x50,0x5e, 0x5,0x50,0x5d,\n  0x4,0x4d,0x35, 0x7,0x28,0x46, 0x7,0x28,0x30, 0x7,0x28,0x2d,\n  0x7,0x28,0x44, 0x7,0x28,0x39, 0x7,0x28,0x45, 0x7,0x28,0x3c,\n  0x7,0x28,0x2f, 0x6,0x61,0x77, 0x7,0x28,0x36, 0x7,0x28,0x3d,\n  0x5,0x50,0x54, 0x4,0x4d,0x27, 0x5,0x50,0x4f, 0xf,0x51,0x7a,\n  0xf,0x51,0x7b, 0xf,0x51,0x7e, 0xf,0x52,0x21, 0xf,0x52,0x22,\n  0xf,0x52,0x23, 0xf,0x52,0x25, 0xf,0x52,0x28, 0xf,0x52,0x29,\n  0xf,0x52,0x2a, 0xf,0x52,0x2b, 0x7,0x28,0x33, 0x7,0x28,0x41,\n  0x7,0x28,0x3a, 0xf,0x52,0x27, 0x7,0x28,0x32, 0xf,0x4c,0x2f,\n  0x5,0x57,0x70, 0x4,0x53,0x45, 0x5,0x57,0x76, 0x5,0x57,0x75,\n  0x4,0x53,0x3a, 0x5,0x57,0x74, 0x5,0x57,0x71, 0x7,0x32,0x6e,\n  0x7,0x32,0x7d, 0x5,0x57,0x77, 0x4,0x53,0x48, 0x5,0x57,0x7b,\n  0x4,0x53,0x49, 0x4,0x53,0x40, 0x4,0x53,0x42, 0x5,0x57,0x7c,\n  0x7,0x32,0x6d, 0x4,0x53,0x3b, 0x7,0x32,0x67, 0x4,0x53,0x3f,\n  0x7,0x32,0x7c, 0x5,0x57,0x79, 0x5,0x57,0x6f, 0x5,0x58,0x21,\n  0x5,0x57,0x72, 0x7,0x3b,0x3a, 0x5,0x57,0x78, 0x7,0x32,0x69,\n  0x4,0x53,0x46, 0x5,0x57,0x7a, 0x7,0x32,0x70, 0x7,0x33,0x22,\n  0x5,0x57,0x73, 0x7,0x32,0x64, 0x5,0x57,0x7e, 0x7,0x32,0x74,\n  0x4,0x53,0x47, 0x5,0x50,0x60, 0x7,0x32,0x6b, 0x7,0x32,0x65,\n  0x5,0x57,0x7d, 0x7,0x32,0x76, 0x4,0x53,0x43, 0x7,0x32,0x7b,\n  0x7,0x33,0x24, 0x7,0x32,0x62, 0x7,0x32,0x77, 0x7,0x32,0x63,\n  0x7,0x32,0x78, 0x7,0x32,0x6f, 0x7,0x32,0x7e, 0x7,0x32,0x72,\n  0x7,0x32,0x68, 0x7,0x33,0x23, 0xf,0x57,0x60, 0xf,0x57,0x61,\n  0xf,0x57,0x63, 0xf,0x57,0x64, 0xf,0x57,0x65, 0xf,0x57,0x66,\n  0x7,0x32,0x79, 0x7,0x32,0x6a, 0x7,0x32,0x7a, 0x7,0x32,0x71,\n  0x7,0x32,0x66, 0x7,0x32,0x6c, 0x4,0x58,0x59, 0x5,0x5e,0x29,\n  0x5,0x5e,0x2c, 0x4,0x58,0x55, 0x7,0x3b,0x52, 0x7,0x3b,0x44,\n  0x4,0x58,0x60, 0x4,0x58,0x5c, 0x7,0x3b,0x48, 0x7,0x3b,0x42,\n  0x7,0x3b,0x55, 0x4,0x58,0x5e, 0x7,0x3b,0x46, 0x7,0x28,0x47,\n  0x4,0x58,0x50, 0x5,0x5e,0x31, 0x7,0x3b,0x50, 0x7,0x3b,0x3f,\n  0x4,0x58,0x5d, 0x7,0x3b,0x4f, 0x5,0x5e,0x2b, 0x5,0x5e,0x2f,\n  0x7,0x3b,0x53, 0x4,0x58,0x5a, 0x7,0x3b,0x47, 0x7,0x3b,0x41,\n  0x5,0x5e,0x33, 0x4,0x58,0x53, 0x7,0x3b,0x40, 0x4,0x58,0x51,\n  0x7,0x3b,0x3e, 0x7,0x3b,0x54, 0x5,0x5e,0x2a, 0x7,0x3b,0x3c,\n  0x7,0x3b,0x3b, 0x7,0x3b,0x49, 0x4,0x58,0x5b, 0x5,0x5e,0x2d,\n  0x5,0x5e,0x2e, 0x7,0x3b,0x45, 0xf,0x5c,0x54, 0xf,0x5c,0x55,\n  0xf,0x5c,0x56, 0xf,0x5c,0x57, 0xf,0x5c,0x58, 0xf,0x5c,0x59,\n  0xf,0x5c,0x5a, 0xf,0x5c,0x5c, 0x7,0x3b,0x43, 0x7,0x3b,0x4b,\n  0x7,0x3b,0x4e, 0x7,0x3b,0x51, 0x7,0x3b,0x3d, 0x5,0x5e,0x28,\n  0x7,0x3b,0x4a, 0x7,0x3b,0x4c, 0x5,0x5e,0x30, 0x4,0x5d,0x3d,\n  0x4,0x5d,0x37, 0x7,0x42,0x55, 0x7,0x42,0x61, 0x7,0x42,0x58,\n  0x7,0x42,0x68, 0x5,0x64,0x43, 0x5,0x64,0x44, 0x5,0x5e,0x34,\n  0x4,0x5d,0x38, 0x5,0x64,0x50, 0x7,0x42,0x59, 0x4,0x5d,0x36,\n  0x5,0x64,0x45, 0x4,0x5d,0x35, 0x4,0x5d,0x3a, 0x5,0x64,0x3f,\n  0x5,0x64,0x42, 0x5,0x64,0x4d, 0x4,0x5d,0x34, 0x5,0x64,0x4a,\n  0x7,0x42,0x56, 0x5,0x64,0x3e, 0x5,0x64,0x41, 0x5,0x64,0x4b,\n  0x7,0x42,0x57, 0x7,0x42,0x5c, 0x7,0x42,0x5b, 0x5,0x64,0x40,\n  0x7,0x42,0x6f, 0x7,0x42,0x6b, 0x5,0x64,0x4f, 0x7,0x42,0x6e,\n  0x5,0x64,0x49, 0x5,0x64,0x4c, 0x7,0x42,0x69, 0x5,0x64,0x46,\n  0x7,0x42,0x6c, 0x5,0x64,0x47, 0x7,0x42,0x65, 0x7,0x42,0x62,\n  0x7,0x42,0x5d, 0x7,0x42,0x63, 0x7,0x42,0x54, 0x7,0x42,0x5a,\n  0x7,0x42,0x53, 0x7,0x42,0x5e, 0x7,0x42,0x6a, 0x7,0x42,0x66,\n  0xf,0x60,0x62, 0xf,0x60,0x64, 0xf,0x60,0x65, 0xf,0x60,0x66,\n  0xf,0x60,0x68, 0xf,0x60,0x69, 0xf,0x60,0x6a, 0x7,0x42,0x64,\n  0x4,0x5d,0x3c, 0x7,0x42,0x67, 0xf,0x60,0x67, 0xf,0x60,0x61,\n  0x5,0x64,0x4e, 0x4,0x61,0x28, 0x7,0x49,0x6a, 0x7,0x49,0x59,\n  0x7,0x49,0x60, 0x7,0x49,0x6c, 0x7,0x49,0x5a, 0x7,0x49,0x69,\n  0x7,0x49,0x6d, 0x4,0x61,0x23, 0x5,0x69,0x42, 0x5,0x69,0x40,\n  0x7,0x49,0x62, 0x7,0x49,0x67, 0x7,0x49,0x65, 0x5,0x69,0x44,\n  0x7,0x49,0x5d, 0x7,0x49,0x68, 0x7,0x49,0x64, 0x7,0x49,0x66,\n  0x7,0x4f,0x6b, 0x7,0x49,0x61, 0x7,0x49,0x6e, 0x7,0x49,0x6f,\n  0x7,0x49,0x63, 0x5,0x69,0x45, 0x7,0x49,0x5c, 0x7,0x49,0x5f,\n  0x7,0x49,0x58, 0xf,0x63,0x6b, 0xf,0x63,0x6c, 0xf,0x63,0x6d,\n  0xf,0x63,0x6f, 0xf,0x63,0x70, 0xf,0x63,0x71, 0xf,0x63,0x72,\n  0xf,0x63,0x73, 0xf,0x63,0x74, 0xf,0x63,0x75, 0x7,0x49,0x5b,\n  0x4,0x61,0x22, 0x4,0x61,0x27, 0x7,0x49,0x5e, 0x7,0x42,0x70,\n  0x7,0x4f,0x75, 0x7,0x4f,0x7a, 0x5,0x6d,0x4d, 0x7,0x4f,0x6c,\n  0x4,0x64,0x42, 0x5,0x6d,0x4c, 0x5,0x6d,0x51, 0x7,0x4f,0x78,\n  0x7,0x4f,0x70, 0x5,0x6d,0x50, 0x7,0x4f,0x74, 0x5,0x6d,0x52,\n  0x5,0x6d,0x53, 0x7,0x4f,0x73, 0x5,0x6d,0x4e, 0x7,0x4f,0x72,\n  0x7,0x4f,0x77, 0x7,0x4f,0x71, 0x7,0x4f,0x6d, 0x5,0x6d,0x4f,\n  0x7,0x4f,0x6f, 0x7,0x54,0x77, 0x7,0x4f,0x6e, 0x7,0x4f,0x7b,\n  0xf,0x66,0x2d, 0xf,0x66,0x2e, 0xf,0x66,0x2f, 0xf,0x66,0x30,\n  0xf,0x66,0x31, 0x7,0x4f,0x76, 0x4,0x67,0x2f, 0x4,0x67,0x34,\n  0x7,0x54,0x6b, 0x7,0x54,0x70, 0x5,0x71,0x2f, 0x7,0x54,0x75,\n  0x7,0x54,0x6e, 0x7,0x54,0x71, 0x5,0x71,0x2e, 0x7,0x54,0x73,\n  0x5,0x71,0x2d, 0x5,0x71,0x30, 0x7,0x54,0x6c, 0x4,0x67,0x33,\n  0x7,0x54,0x6f, 0x4,0x67,0x35, 0x4,0x67,0x31, 0x7,0x54,0x72,\n  0x5,0x71,0x32, 0x7,0x54,0x78, 0x7,0x4f,0x79, 0x7,0x54,0x74,\n  0x4,0x67,0x32, 0x7,0x54,0x79, 0x5,0x71,0x31, 0x5,0x71,0x33,\n  0x7,0x54,0x76, 0xf,0x68,0x45, 0xf,0x68,0x46, 0xf,0x68,0x47,\n  0xf,0x68,0x48, 0xf,0x68,0x49, 0x7,0x54,0x6d, 0x5,0x74,0x2e,\n  0x4,0x69,0x3c, 0x5,0x74,0x2c, 0x5,0x74,0x2b, 0x7,0x59,0x23,\n  0x7,0x58,0x7c, 0x5,0x74,0x2d, 0x5,0x74,0x31, 0x5,0x74,0x30,\n  0x7,0x58,0x7a, 0x5,0x74,0x33, 0x5,0x74,0x35, 0x5,0x74,0x32,\n  0x7,0x58,0x79, 0x4,0x69,0x3d, 0x7,0x59,0x26, 0x7,0x59,0x28,\n  0x7,0x59,0x27, 0x7,0x58,0x7e, 0x7,0x59,0x21, 0x5,0x74,0x34,\n  0x5,0x74,0x36, 0x7,0x59,0x24, 0x7,0x59,0x29, 0x5,0x74,0x2f,\n  0x7,0x58,0x7d, 0x7,0x58,0x7b, 0xf,0x69,0x6d, 0xf,0x69,0x6e,\n  0x5,0x76,0x46, 0x4,0x6a,0x76, 0x4,0x6a,0x77, 0x7,0x5c,0x5d,\n  0x5,0x76,0x47, 0x4,0x6a,0x79, 0x7,0x5c,0x5f, 0x7,0x5c,0x5c,\n  0x5,0x76,0x48, 0x7,0x5c,0x62, 0x5,0x76,0x45, 0x7,0x5f,0x4a,\n  0x7,0x5c,0x60, 0x4,0x6a,0x7a, 0x7,0x5c,0x61, 0x5,0x76,0x4a,\n  0x7,0x59,0x22, 0x5,0x76,0x49, 0xf,0x6a,0x70, 0xf,0x6a,0x71,\n  0xf,0x6a,0x72, 0x5,0x78,0x2c, 0x7,0x5f,0x4b, 0x4,0x6b,0x7e,\n  0x5,0x78,0x2b, 0x5,0x78,0x29, 0x7,0x5f,0x4c, 0x5,0x78,0x26,\n  0x4,0x6c,0x22, 0x7,0x5f,0x4d, 0x5,0x78,0x2a, 0x5,0x78,0x28,\n  0x4,0x6c,0x24, 0x5,0x78,0x2d, 0x5,0x78,0x27, 0x5,0x79,0x44,\n  0x4,0x6c,0x7e, 0x5,0x79,0x48, 0x5,0x79,0x4a, 0x4,0x6c,0x21,\n  0x7,0x61,0x40, 0x5,0x79,0x46, 0x7,0x61,0x44, 0x7,0x61,0x43,\n  0x7,0x61,0x45, 0x5,0x79,0x47, 0x5,0x79,0x49, 0x7,0x61,0x41,\n  0x5,0x79,0x45, 0x7,0x62,0x5d, 0x7,0x62,0x5b, 0x7,0x62,0x5e,\n  0x7,0x62,0x5c, 0x7,0x62,0x5f, 0x7,0x63,0x6e, 0x7,0x63,0x6c,\n  0x5,0x7a,0x73, 0x7,0x63,0x6b, 0x7,0x63,0x6f, 0x7,0x62,0x5a,\n  0x7,0x63,0x69, 0x7,0x63,0x71, 0x7,0x63,0x6a, 0x7,0x63,0x70,\n  0x7,0x63,0x6d, 0x7,0x64,0x5c, 0x4,0x6e,0x3a, 0x7,0x64,0x5d,\n  0x5,0x7b,0x47, 0x5,0x7b,0x48, 0x7,0x64,0x5a, 0x7,0x64,0x5b,\n  0x5,0x7b,0x67, 0x7,0x65,0x41, 0x7,0x65,0x42, 0x5,0x7b,0x68,\n  0x4,0x6e,0x50, 0x7,0x65,0x62, 0x7,0x65,0x61, 0xf,0x6d,0x31,\n  0x7,0x66,0x2b, 0x5,0x27,0x65, 0x6,0x2e,0x27, 0x6,0x2e,0x26,\n  0x4,0x2b,0x44, 0x6,0x3b,0x72, 0x5,0x30,0x35, 0x6,0x3b,0x75,\n  0x6,0x3b,0x74, 0xf,0x38,0x41, 0x6,0x4e,0x4e, 0x6,0x4e,0x50,\n  0x5,0x42,0x5f, 0x6,0x57,0x7c, 0x6,0x57,0x7a, 0x6,0x57,0x7d,\n  0x6,0x57,0x7b, 0x5,0x49,0x65, 0x5,0x49,0x63, 0x5,0x49,0x64,\n  0x6,0x62,0x26, 0x6,0x62,0x24, 0x7,0x28,0x48, 0x5,0x50,0x61,\n  0x7,0x28,0x49, 0x7,0x28,0x4a, 0x6,0x62,0x25, 0x5,0x58,0x23,\n  0x5,0x58,0x24, 0x5,0x58,0x22, 0x7,0x33,0x25, 0x7,0x33,0x26,\n  0x5,0x5e,0x37, 0x5,0x5e,0x36, 0xf,0x5c,0x5d, 0x4,0x5d,0x3e,\n  0x4,0x5d,0x3f, 0x7,0x42,0x71, 0x7,0x42,0x73, 0x4,0x5d,0x40,\n  0x7,0x42,0x72, 0x5,0x69,0x46, 0x5,0x6d,0x54, 0x7,0x4f,0x7c,\n  0x7,0x54,0x7a, 0x7,0x59,0x2b, 0x7,0x59,0x2a, 0x7,0x5f,0x4e,\n  0x7,0x65,0x63, 0x4,0x28,0x23, 0x6,0x2e,0x28, 0x4,0x28,0x24,\n  0x6,0x34,0x4f, 0x6,0x34,0x50, 0x5,0x2b,0x41, 0xf,0x2d,0x45,\n  0x5,0x30,0x36, 0x6,0x3b,0x77, 0x6,0x3b,0x76, 0x5,0x30,0x37,\n  0x6,0x44,0x4f, 0x5,0x3c,0x29, 0x6,0x4e,0x53, 0x6,0x4e,0x52,\n  0xf,0x3f,0x2a, 0xf,0x3f,0x2b, 0x6,0x4e,0x51, 0x6,0x58,0x23,\n  0x6,0x58,0x21, 0x4,0x40,0x5f, 0x6,0x58,0x22, 0x6,0x57,0x7e,\n  0xf,0x45,0x3a, 0x4,0x47,0x24, 0x5,0x50,0x62, 0x6,0x62,0x27,\n  0x6,0x62,0x28, 0x4,0x58,0x61, 0x7,0x3b,0x56, 0xf,0x5c,0x5e,\n  0x4,0x5d,0x41, 0x7,0x42,0x74, 0x7,0x49,0x70, 0x7,0x54,0x7b,\n  0x7,0x5c,0x64, 0x5,0x27,0x66, 0x6,0x2e,0x29, 0x6,0x2e,0x2a,\n  0x6,0x2e,0x2b, 0x5,0x2b,0x43, 0x6,0x34,0x51, 0x4,0x2b,0x45,\n  0x4,0x2b,0x47, 0x5,0x2b,0x45, 0x6,0x34,0x53, 0x5,0x2b,0x44,\n  0xf,0x28,0x6b, 0x6,0x34,0x52, 0x5,0x2b,0x42, 0x5,0x2b,0x46,\n  0x6,0x3b,0x7d, 0x5,0x30,0x3c, 0x4,0x2f,0x71, 0x6,0x3c,0x21,\n  0x6,0x3c,0x25, 0x5,0x30,0x3f, 0x6,0x3c,0x26, 0x6,0x3c,0x27,\n  0x4,0x2f,0x70, 0x6,0x3b,0x79, 0x5,0x30,0x40, 0x6,0x3b,0x7b,\n  0x5,0x30,0x38, 0x6,0x3c,0x22, 0x6,0x3b,0x7c, 0x6,0x3c,0x23,\n  0x6,0x3b,0x7e, 0x5,0x30,0x3b, 0x6,0x3b,0x7a, 0x6,0x3b,0x78,\n  0x5,0x30,0x3a, 0xf,0x32,0x50, 0x6,0x3c,0x24, 0x6,0x3c,0x28,\n  0x6,0x3c,0x29, 0xf,0x2d,0x48, 0xf,0x2d,0x49, 0xf,0x32,0x52,\n  0x4,0x35,0x28, 0x5,0x3c,0x32, 0x4,0x35,0x2b, 0x4,0x3a,0x7c,\n  0x5,0x35,0x46, 0x4,0x35,0x29, 0x6,0x44,0x58, 0x5,0x35,0x47,\n  0x5,0x35,0x4a, 0x5,0x35,0x44, 0x5,0x35,0x45, 0x5,0x35,0x43,\n  0x6,0x44,0x59, 0x6,0x44,0x5a, 0x5,0x35,0x42, 0x6,0x44,0x53,\n  0x6,0x44,0x55, 0x6,0x44,0x54, 0x6,0x44,0x51, 0x6,0x44,0x50,\n  0x6,0x44,0x57, 0x6,0x44,0x52, 0xf,0x2d,0x46, 0xf,0x38,0x45,\n  0x5,0x35,0x48, 0x6,0x44,0x56, 0x5,0x35,0x49, 0x5,0x3c,0x31,\n  0x6,0x4e,0x5b, 0x6,0x4e,0x59, 0x5,0x3c,0x2e, 0x6,0x4e,0x57,\n  0x5,0x3c,0x2f, 0x5,0x3c,0x33, 0x4,0x3a,0x7e, 0x6,0x4e,0x58,\n  0x6,0x4e,0x54, 0x4,0x3a,0x7d, 0x6,0x4e,0x56, 0x5,0x3c,0x30,\n  0x5,0x3c,0x2d, 0x5,0x3c,0x2b, 0x5,0x42,0x64, 0x5,0x3c,0x2a,\n  0xf,0x38,0x44, 0xf,0x3f,0x2e, 0x6,0x4e,0x55, 0x6,0x4e,0x5a,\n  0x6,0x4e,0x5c, 0x5,0x3c,0x2c, 0xf,0x38,0x43, 0x5,0x42,0x6a,\n  0x5,0x42,0x62, 0x5,0x42,0x66, 0x4,0x40,0x65, 0x5,0x42,0x6b,\n  0x5,0x42,0x63, 0x5,0x42,0x67, 0x4,0x40,0x63, 0x5,0x42,0x65,\n  0x5,0x42,0x69, 0x6,0x58,0x2f, 0x4,0x40,0x64, 0x6,0x58,0x2a,\n  0x6,0x58,0x28, 0x6,0x58,0x30, 0x5,0x42,0x68, 0x5,0x42,0x60,\n  0x6,0x58,0x24, 0x6,0x58,0x27, 0x6,0x58,0x2d, 0xf,0x3f,0x2c,\n  0xf,0x3f,0x2d, 0xf,0x3f,0x2f, 0xf,0x3f,0x30, 0xf,0x45,0x3b,\n  0x6,0x58,0x26, 0x6,0x58,0x31, 0x6,0x58,0x25, 0x6,0x58,0x29,\n  0x5,0x42,0x61, 0xf,0x45,0x3e, 0x4,0x47,0x30, 0x4,0x47,0x2c,\n  0x6,0x62,0x2d, 0x6,0x62,0x33, 0x4,0x47,0x29, 0x5,0x49,0x66,\n  0x5,0x49,0x69, 0x4,0x47,0x28, 0x5,0x49,0x68, 0x5,0x3c,0x34,\n  0x6,0x62,0x34, 0x5,0x49,0x6a, 0x6,0x62,0x2b, 0x6,0x62,0x29,\n  0x6,0x62,0x2a, 0x6,0x62,0x32, 0x6,0x62,0x31, 0x5,0x49,0x67,\n  0x6,0x62,0x2f, 0x5,0x49,0x6b, 0x6,0x62,0x30, 0x6,0x62,0x2c,\n  0x4,0x47,0x33, 0x6,0x62,0x35, 0x6,0x62,0x2e, 0xf,0x4c,0x34,\n  0xf,0x4c,0x36, 0xf,0x4c,0x37, 0x4,0x47,0x2f, 0xf,0x45,0x3c,\n  0xf,0x45,0x3f, 0x5,0x50,0x66, 0x7,0x28,0x54, 0x4,0x4d,0x41,\n  0x5,0x50,0x69, 0x7,0x28,0x57, 0x4,0x47,0x32, 0x7,0x28,0x56,\n  0x5,0x50,0x65, 0x4,0x4d,0x38, 0x7,0x28,0x55, 0x7,0x33,0x28,\n  0x5,0x50,0x67, 0x7,0x28,0x5a, 0x7,0x28,0x4b, 0x4,0x4d,0x45,\n  0x4,0x4d,0x3b, 0x4,0x4d,0x3d, 0x7,0x28,0x53, 0x4,0x4d,0x44,\n  0x4,0x4d,0x43, 0x5,0x50,0x63, 0x7,0x28,0x58, 0x7,0x28,0x52,\n  0x7,0x28,0x4c, 0x5,0x50,0x64, 0x7,0x28,0x4f, 0x5,0x50,0x68,\n  0x7,0x28,0x51, 0x7,0x28,0x50, 0x7,0x28,0x4d, 0xf,0x4c,0x35,\n  0xf,0x52,0x2d, 0x7,0x28,0x4e, 0x7,0x28,0x59, 0x5,0x58,0x2c,\n  0x5,0x58,0x2b, 0x7,0x33,0x2b, 0x5,0x58,0x27, 0x5,0x58,0x2a,\n  0x7,0x33,0x27, 0x4,0x53,0x51, 0x7,0x33,0x29, 0x4,0x53,0x54,\n  0x7,0x3b,0x62, 0x5,0x58,0x29, 0x5,0x58,0x28, 0x7,0x33,0x2a,\n  0x4,0x53,0x4e, 0x7,0x33,0x2c, 0x7,0x33,0x2f, 0x4,0x53,0x4d,\n  0x5,0x58,0x25, 0x7,0x33,0x30, 0x5,0x58,0x26, 0x7,0x33,0x2e,\n  0xf,0x52,0x2c, 0x7,0x33,0x2d, 0x5,0x5e,0x3e, 0x5,0x5e,0x3f,\n  0x7,0x3b,0x57, 0x5,0x5e,0x3b, 0x7,0x3b,0x5d, 0x7,0x3b,0x64,\n  0x4,0x58,0x66, 0x5,0x5e,0x38, 0x5,0x5e,0x39, 0x5,0x5e,0x3d,\n  0x5,0x5e,0x3c, 0x7,0x3b,0x5f, 0x7,0x3b,0x5b, 0x7,0x3b,0x63,\n  0x7,0x42,0x7b, 0x7,0x3b,0x5c, 0x7,0x28,0x5b, 0x7,0x3b,0x5e,\n  0x7,0x3b,0x60, 0x5,0x5e,0x40, 0x7,0x3b,0x58, 0x7,0x3b,0x5a,\n  0x5,0x5e,0x3a, 0xf,0x57,0x67, 0xf,0x57,0x68, 0xf,0x57,0x69,\n  0xf,0x57,0x6a, 0x7,0x42,0x75, 0x4,0x5d,0x45, 0x7,0x42,0x7c,\n  0x7,0x42,0x7e, 0x5,0x64,0x5b, 0x5,0x64,0x57, 0x7,0x42,0x7d,\n  0x4,0x5d,0x4b, 0x5,0x64,0x54, 0x5,0x64,0x55, 0x5,0x64,0x5f,\n  0x4,0x5d,0x4d, 0x4,0x5d,0x42, 0x7,0x42,0x7a, 0x5,0x64,0x53,\n  0x4,0x5d,0x47, 0x4,0x5d,0x4c, 0x5,0x64,0x5d, 0x7,0x42,0x79,\n  0x7,0x42,0x77, 0x5,0x64,0x51, 0x4,0x5d,0x43, 0x5,0x5e,0x42,\n  0x5,0x64,0x52, 0x7,0x42,0x78, 0x7,0x43,0x23, 0x7,0x42,0x76,\n  0x5,0x64,0x59, 0x5,0x64,0x5a, 0x5,0x5e,0x41, 0x5,0x64,0x5c,\n  0x5,0x64,0x5e, 0x5,0x64,0x58, 0xf,0x5c,0x60, 0x7,0x49,0x76,\n  0x5,0x69,0x49, 0x5,0x69,0x4a, 0x4,0x61,0x29, 0x7,0x49,0x7b,\n  0x7,0x49,0x7c, 0x5,0x69,0x47, 0x5,0x69,0x48, 0x7,0x49,0x72,\n  0x7,0x49,0x73, 0x7,0x49,0x75, 0x7,0x49,0x79, 0x7,0x49,0x7a,\n  0x7,0x49,0x74, 0x7,0x49,0x78, 0x4,0x61,0x2b, 0x7,0x49,0x77,\n  0x7,0x43,0x21, 0xf,0x60,0x6b, 0xf,0x60,0x6c, 0xf,0x63,0x76,\n  0x7,0x4f,0x7d, 0x5,0x6d,0x58, 0x7,0x50,0x26, 0x5,0x6d,0x5b,\n  0x5,0x71,0x34, 0x5,0x6d,0x55, 0x4,0x64,0x45, 0x7,0x50,0x23,\n  0x5,0x6d,0x56, 0x7,0x50,0x22, 0x7,0x54,0x7c, 0x7,0x4f,0x7e,\n  0x5,0x6d,0x59, 0x7,0x49,0x71, 0x5,0x6d,0x5a, 0x5,0x6d,0x5c,\n  0x7,0x50,0x24, 0xf,0x66,0x34, 0x7,0x50,0x21, 0x5,0x6d,0x5d,\n  0x7,0x55,0x22, 0x7,0x55,0x24, 0x5,0x71,0x36, 0x4,0x67,0x36,\n  0x7,0x55,0x26, 0x7,0x55,0x25, 0x5,0x71,0x35, 0x7,0x54,0x7e,\n  0x7,0x55,0x21, 0x4,0x67,0x37, 0x7,0x55,0x23, 0x7,0x59,0x31,\n  0x7,0x54,0x7d, 0xf,0x66,0x33, 0x4,0x69,0x41, 0x7,0x59,0x2e,\n  0x4,0x69,0x40, 0x4,0x69,0x3f, 0x5,0x74,0x37, 0x7,0x59,0x2c,\n  0x7,0x59,0x2d, 0x7,0x59,0x30, 0x7,0x59,0x2f, 0x5,0x78,0x2e,\n  0xf,0x69,0x6f, 0x7,0x5f,0x51, 0x7,0x5f,0x50, 0x7,0x5f,0x4f,\n  0x5,0x79,0x4b, 0x7,0x61,0x48, 0x7,0x61,0x47, 0x7,0x61,0x46,\n  0x7,0x62,0x61, 0x5,0x7a,0x37, 0x7,0x62,0x62, 0x7,0x62,0x60,\n  0x7,0x64,0x5f, 0x7,0x63,0x73, 0x7,0x63,0x72, 0x7,0x64,0x5e,\n  0x5,0x7b,0x7e, 0x7,0x65,0x64, 0x7,0x66,0x2c, 0x5,0x7c,0x4b,\n  0x7,0x66,0x4d, 0x5,0x24,0x76, 0x6,0x2e,0x2c, 0x4,0x2b,0x48,\n  0x5,0x30,0x41, 0x4,0x2f,0x74, 0x6,0x3c,0x2a, 0x6,0x44,0x5b,\n  0xf,0x38,0x46, 0xf,0x3f,0x31, 0xf,0x3f,0x32, 0x6,0x58,0x32,\n  0x4,0x47,0x34, 0x6,0x62,0x36, 0x6,0x62,0x37, 0x6,0x62,0x38,\n  0xf,0x4c,0x38, 0xf,0x4c,0x39, 0x7,0x28,0x5c, 0xf,0x4c,0x3a,\n  0xf,0x52,0x30, 0x7,0x33,0x31, 0x7,0x33,0x32, 0xf,0x52,0x2f,\n  0x7,0x3b,0x65, 0xf,0x60,0x6d, 0xf,0x60,0x6e, 0x5,0x69,0x4b,\n  0x7,0x50,0x27, 0x7,0x55,0x27, 0x5,0x27,0x67, 0x6,0x2e,0x2d,\n  0x4,0x2f,0x77, 0x5,0x30,0x42, 0xf,0x32,0x53, 0x5,0x35,0x4d,\n  0x5,0x35,0x4e, 0x6,0x44,0x5c, 0x6,0x44,0x5d, 0x5,0x35,0x50,\n  0x5,0x35,0x4b, 0xf,0x38,0x47, 0xf,0x38,0x49, 0xf,0x38,0x4b,\n  0x4,0x35,0x32, 0x4,0x35,0x36, 0x5,0x35,0x4c, 0x5,0x35,0x4f,\n  0x6,0x4e,0x5f, 0x4,0x3b,0x25, 0x6,0x4e,0x62, 0x6,0x4e,0x61,\n  0x5,0x3c,0x36, 0x6,0x4e,0x5e, 0x4,0x3b,0x24, 0x6,0x4e,0x5d,\n  0x6,0x58,0x36, 0x5,0x42,0x6d, 0x5,0x42,0x6f, 0x5,0x42,0x6e,\n  0x6,0x58,0x33, 0x6,0x58,0x37, 0x5,0x42,0x70, 0xf,0x45,0x40,\n  0xf,0x45,0x41, 0xf,0x45,0x42, 0x6,0x58,0x35, 0x6,0x62,0x39,\n  0x5,0x49,0x71, 0x5,0x49,0x6e, 0x5,0x49,0x72, 0x4,0x47,0x37,\n  0x6,0x62,0x3a, 0xf,0x4c,0x3b, 0xf,0x4c,0x3c, 0x5,0x49,0x6f,\n  0x6,0x62,0x3b, 0x5,0x49,0x70, 0x4,0x4d,0x49, 0x7,0x28,0x5f,\n  0x5,0x50,0x6c, 0x4,0x4d,0x4b, 0x5,0x50,0x6b, 0x7,0x28,0x63,\n  0x5,0x50,0x6d, 0x6,0x58,0x34, 0x7,0x28,0x62, 0x5,0x50,0x6a,\n  0x5,0x50,0x6e, 0xf,0x52,0x31, 0x7,0x28,0x60, 0x7,0x28,0x5e,\n  0x7,0x28,0x5d, 0x7,0x28,0x61, 0x5,0x58,0x30, 0x5,0x58,0x2f,\n  0x5,0x58,0x2e, 0x4,0x53,0x57, 0x7,0x33,0x34, 0x5,0x58,0x34,\n  0x7,0x3b,0x67, 0x4,0x53,0x58, 0x4,0x53,0x5e, 0x4,0x53,0x5d,\n  0x5,0x58,0x31, 0x5,0x58,0x35, 0x7,0x33,0x33, 0x5,0x58,0x2d,\n  0x5,0x58,0x33, 0xf,0x57,0x6b, 0xf,0x57,0x6c, 0xf,0x57,0x6d,\n  0x7,0x3b,0x66, 0x5,0x64,0x60, 0x5,0x5e,0x45, 0x5,0x5e,0x44,\n  0x7,0x3b,0x6a, 0x7,0x3b,0x69, 0x7,0x3b,0x6b, 0x7,0x3b,0x68,\n  0xf,0x5c,0x61, 0xf,0x5c,0x62, 0x5,0x64,0x62, 0x4,0x5d,0x51,\n  0x4,0x5d,0x4f, 0x7,0x43,0x24, 0x5,0x64,0x61, 0xf,0x60,0x6f,\n  0xf,0x60,0x70, 0xf,0x60,0x71, 0x7,0x43,0x25, 0x7,0x49,0x7d,\n  0x7,0x49,0x7e, 0x5,0x6d,0x5f, 0x7,0x50,0x29, 0x7,0x50,0x28,\n  0xf,0x66,0x35, 0x5,0x6d,0x5e, 0xf,0x68,0x4b, 0xf,0x68,0x4c,\n  0x7,0x55,0x28, 0x4,0x69,0x43, 0x5,0x74,0x39, 0x4,0x69,0x42,\n  0xf,0x69,0x70, 0xf,0x69,0x71, 0x5,0x78,0x2f, 0x7,0x5f,0x53,\n  0xf,0x6b,0x64, 0x7,0x5f,0x52, 0x5,0x79,0x4d, 0x5,0x79,0x4c,\n  0x7,0x61,0x49, 0x4,0x6d,0x21, 0x5,0x7a,0x74, 0x4,0x6e,0x3b,\n  0x5,0x7c,0x44, 0x7,0x66,0x54, 0x6,0x2e,0x2e, 0x6,0x2e,0x2f,\n  0x6,0x34,0x54, 0x5,0x2b,0x48, 0x4,0x2f,0x78, 0x6,0x3c,0x2c,\n  0x4,0x2f,0x79, 0x6,0x3c,0x2b, 0x6,0x44,0x67, 0x4,0x35,0x3b,\n  0x5,0x35,0x53, 0x5,0x35,0x52, 0x6,0x44,0x5f, 0x6,0x44,0x63,\n  0x4,0x35,0x37, 0x6,0x44,0x64, 0x5,0x35,0x51, 0x6,0x44,0x60,\n  0xf,0x38,0x4d, 0xf,0x38,0x4e, 0xf,0x38,0x4f, 0x4,0x35,0x3c,\n  0x6,0x44,0x66, 0x6,0x44,0x5e, 0x6,0x44,0x62, 0x6,0x44,0x65,\n  0x6,0x44,0x61, 0x5,0x3c,0x37, 0x4,0x3b,0x26, 0x6,0x4e,0x64,\n  0x6,0x4e,0x67, 0x5,0x3c,0x38, 0x6,0x4e,0x63, 0x6,0x4e,0x66,\n  0x6,0x4e,0x69, 0x6,0x4e,0x65, 0x4,0x3b,0x27, 0x4,0x3b,0x28,\n  0x6,0x4e,0x68, 0xf,0x3f,0x33, 0x5,0x42,0x73, 0x5,0x42,0x71,\n  0x5,0x42,0x72, 0x6,0x58,0x38, 0x6,0x62,0x3e, 0x5,0x49,0x75,\n  0x4,0x47,0x39, 0x6,0x62,0x40, 0x5,0x49,0x73, 0x5,0x49,0x74,\n  0x6,0x62,0x3d, 0x6,0x62,0x41, 0x6,0x62,0x3c, 0x6,0x62,0x3f,\n  0x7,0x28,0x66, 0x5,0x50,0x75, 0x7,0x28,0x67, 0x5,0x50,0x74,\n  0x5,0x50,0x70, 0x5,0x50,0x6f, 0x4,0x4d,0x50, 0x4,0x4d,0x52,\n  0x4,0x4d,0x4d, 0x7,0x28,0x69, 0x4,0x4d,0x54, 0x5,0x50,0x72,\n  0x7,0x28,0x68, 0x7,0x28,0x6a, 0x5,0x50,0x71, 0x7,0x28,0x64,\n  0x7,0x28,0x65, 0x5,0x50,0x73, 0x7,0x33,0x38, 0x7,0x33,0x37,\n  0x4,0x53,0x5f, 0x5,0x58,0x36, 0x4,0x53,0x63, 0x5,0x58,0x39,\n  0x5,0x58,0x3b, 0x4,0x53,0x60, 0x7,0x33,0x36, 0x7,0x33,0x35,\n  0x5,0x58,0x37, 0x5,0x58,0x38, 0x5,0x58,0x3a, 0x7,0x33,0x39,\n  0x5,0x5e,0x46, 0x7,0x3b,0x6d, 0x7,0x3b,0x73, 0x7,0x3b,0x6c,\n  0x5,0x5e,0x4a, 0x5,0x5e,0x49, 0x7,0x3b,0x6e, 0x7,0x33,0x3a,\n  0x5,0x5e,0x48, 0x7,0x3b,0x6f, 0x7,0x3b,0x70, 0x7,0x3b,0x71,\n  0x4,0x58,0x6c, 0x7,0x3b,0x74, 0x7,0x3b,0x72, 0x5,0x5e,0x47,\n  0x7,0x43,0x27, 0x7,0x43,0x28, 0x4,0x5d,0x52, 0x7,0x43,0x26,\n  0x7,0x43,0x29, 0x4,0x61,0x35, 0x5,0x69,0x4c, 0x4,0x61,0x32,\n  0x4,0x61,0x33, 0x7,0x4a,0x21, 0x7,0x4a,0x22, 0x7,0x4a,0x23,\n  0x7,0x4a,0x24, 0x4,0x61,0x36, 0x7,0x50,0x2a, 0x5,0x71,0x37,\n  0x7,0x55,0x29, 0x5,0x74,0x3a, 0x4,0x69,0x44, 0x7,0x5c,0x65,\n  0x5,0x78,0x30, 0x7,0x62,0x63, 0x4,0x6d,0x60, 0x7,0x64,0x60,\n  0x7,0x64,0x61, 0x5,0x7b,0x69, 0x7,0x65,0x43, 0x5,0x23,0x27,\n  0x5,0x23,0x28, 0x6,0x2e,0x30, 0x6,0x3c,0x33, 0x4,0x30,0x21,\n  0x4,0x2f,0x7b, 0x4,0x2f,0x7a, 0x4,0x30,0x22, 0x5,0x30,0x43,\n  0x6,0x3c,0x30, 0x6,0x3c,0x31, 0x6,0x3c,0x2f, 0x6,0x3c,0x32,\n  0x6,0x3c,0x2e, 0x4,0x35,0x40, 0x6,0x44,0x6a, 0x6,0x44,0x73,\n  0x4,0x35,0x3e, 0x6,0x44,0x6f, 0x5,0x35,0x5c, 0x5,0x35,0x59,\n  0x6,0x44,0x71, 0x4,0x35,0x42, 0x5,0x35,0x54, 0x4,0x35,0x46,\n  0x6,0x44,0x79, 0x5,0x35,0x55, 0x6,0x44,0x77, 0x6,0x44,0x6b,\n  0x6,0x44,0x78, 0x5,0x35,0x58, 0x6,0x44,0x74, 0x6,0x44,0x75,\n  0x6,0x44,0x6e, 0x6,0x44,0x7a, 0xf,0x38,0x50, 0xf,0x38,0x51,\n  0xf,0x38,0x53, 0xf,0x38,0x54, 0xf,0x38,0x55, 0xf,0x38,0x56,\n  0x6,0x44,0x72, 0x6,0x44,0x69, 0x6,0x44,0x68, 0x6,0x44,0x76,\n  0x6,0x44,0x6c, 0x5,0x35,0x5a, 0x6,0x4e,0x74, 0x4,0x3b,0x32,\n  0x4,0x3b,0x2e, 0x5,0x3c,0x3b, 0x6,0x4e,0x6f, 0x6,0x4e,0x6e,\n  0x6,0x4e,0x71, 0x6,0x4e,0x6a, 0x4,0x3b,0x2d, 0x6,0x4e,0x78,\n  0x4,0x3b,0x38, 0x4,0x3b,0x39, 0x5,0x3c,0x3c, 0x6,0x4e,0x6d,\n  0x6,0x4e,0x76, 0x6,0x4e,0x70, 0x6,0x4e,0x77, 0x4,0x3b,0x37,\n  0x5,0x3c,0x39, 0x5,0x3c,0x3a, 0xf,0x3f,0x34, 0xf,0x3f,0x35,\n  0xf,0x3f,0x36, 0xf,0x3f,0x37, 0xf,0x3f,0x38, 0xf,0x3f,0x39,\n  0xf,0x3f,0x3a, 0xf,0x3f,0x3c, 0x6,0x4e,0x72, 0x6,0x4e,0x75,\n  0x6,0x4e,0x6c, 0x6,0x4e,0x79, 0x6,0x4e,0x73, 0x5,0x42,0x75,\n  0x4,0x40,0x68, 0x4,0x40,0x6a, 0x6,0x58,0x46, 0x5,0x42,0x76,\n  0x5,0x3c,0x3d, 0x5,0x42,0x79, 0x4,0x40,0x71, 0x4,0x40,0x70,\n  0x6,0x58,0x40, 0x6,0x58,0x4b, 0x6,0x58,0x3d, 0x6,0x58,0x49,\n  0x4,0x40,0x69, 0x4,0x40,0x6b, 0x5,0x42,0x7c, 0x5,0x42,0x74,\n  0x4,0x40,0x73, 0x6,0x58,0x43, 0x6,0x58,0x3c, 0x6,0x58,0x47,\n  0x6,0x58,0x42, 0x6,0x58,0x3f, 0x4,0x40,0x72, 0x5,0x42,0x7a,\n  0x6,0x58,0x48, 0x5,0x42,0x78, 0x5,0x42,0x77, 0x6,0x58,0x44,\n  0xf,0x45,0x43, 0xf,0x45,0x45, 0xf,0x45,0x46, 0x6,0x58,0x4a,\n  0x5,0x42,0x7b, 0x6,0x58,0x39, 0x6,0x58,0x3b, 0x4,0x40,0x6f,\n  0x6,0x58,0x3a, 0x6,0x58,0x45, 0x6,0x58,0x3e, 0x6,0x62,0x4e,\n  0x4,0x47,0x3f, 0x5,0x49,0x7a, 0x4,0x47,0x3b, 0x5,0x49,0x78,\n  0x5,0x49,0x7b, 0x4,0x47,0x3e, 0x4,0x47,0x48, 0x6,0x62,0x42,\n  0x6,0x62,0x4c, 0x4,0x47,0x41, 0x6,0x62,0x53, 0x4,0x47,0x44,\n  0x6,0x62,0x4f, 0x4,0x47,0x47, 0x6,0x62,0x46, 0x5,0x49,0x79,\n  0x6,0x62,0x51, 0x6,0x62,0x45, 0x4,0x47,0x49, 0x6,0x62,0x50,\n  0x6,0x62,0x44, 0x5,0x49,0x76, 0x5,0x49,0x77, 0xf,0x4c,0x3d,\n  0xf,0x4c,0x3e, 0xf,0x4c,0x3f, 0xf,0x4c,0x40, 0xf,0x4c,0x42,\n  0xf,0x4c,0x43, 0xf,0x4c,0x44, 0xf,0x4c,0x45, 0x6,0x62,0x48,\n  0x4,0x47,0x4b, 0x6,0x62,0x4a, 0x5,0x42,0x7d, 0x6,0x62,0x4b,\n  0x6,0x62,0x4d, 0x6,0x62,0x43, 0x6,0x62,0x52, 0x6,0x62,0x49,\n  0x7,0x29,0x21, 0x5,0x51,0x2a, 0x7,0x28,0x6b, 0x5,0x50,0x7a,\n  0x5,0x51,0x22, 0x7,0x28,0x71, 0x7,0x28,0x74, 0x7,0x29,0x22,\n  0x7,0x28,0x7c, 0x7,0x28,0x70, 0x5,0x51,0x27, 0x4,0x4d,0x57,\n  0x5,0x51,0x29, 0x5,0x51,0x23, 0x5,0x50,0x7b, 0x5,0x50,0x7e,\n  0x7,0x28,0x78, 0x5,0x51,0x24, 0x4,0x4d,0x5d, 0x5,0x51,0x26,\n  0x4,0x4d,0x62, 0x7,0x29,0x24, 0x7,0x28,0x77, 0x7,0x28,0x6f,\n  0x5,0x50,0x78, 0x5,0x50,0x7c, 0x7,0x28,0x7d, 0x7,0x28,0x6d,\n  0x5,0x51,0x25, 0x5,0x50,0x7d, 0x5,0x50,0x77, 0x5,0x50,0x79,\n  0x5,0x50,0x76, 0xf,0x52,0x32, 0xf,0x52,0x33, 0xf,0x52,0x34,\n  0xf,0x52,0x35, 0xf,0x52,0x37, 0xf,0x52,0x39, 0xf,0x52,0x3a,\n  0x7,0x28,0x76, 0x7,0x28,0x75, 0x7,0x28,0x6c, 0x7,0x28,0x72,\n  0xf,0x52,0x38, 0x5,0x51,0x21, 0x7,0x28,0x7b, 0x7,0x28,0x6e,\n  0x5,0x51,0x28, 0x7,0x29,0x23, 0x7,0x28,0x7e, 0x7,0x28,0x7a,\n  0x7,0x28,0x73, 0x7,0x33,0x46, 0x5,0x58,0x40, 0x4,0x53,0x71,\n  0x7,0x33,0x52, 0x4,0x53,0x68, 0x4,0x53,0x65, 0x4,0x53,0x6c,\n  0x7,0x33,0x49, 0x7,0x33,0x51, 0x7,0x33,0x43, 0x5,0x58,0x3d,\n  0x7,0x33,0x42, 0x5,0x58,0x3c, 0x7,0x33,0x3c, 0x4,0x53,0x70,\n  0x4,0x53,0x67, 0x7,0x33,0x45, 0x4,0x53,0x6f, 0x7,0x33,0x3d,\n  0x4,0x53,0x6e, 0x7,0x33,0x47, 0x7,0x33,0x4e, 0x4,0x53,0x66,\n  0x7,0x33,0x50, 0x7,0x33,0x3e, 0x4,0x53,0x69, 0x7,0x33,0x3b,\n  0x7,0x33,0x53, 0x7,0x33,0x40, 0x7,0x33,0x3f, 0x7,0x33,0x48,\n  0x7,0x33,0x4a, 0x5,0x58,0x3f, 0x7,0x33,0x4c, 0x4,0x53,0x6d,\n  0x7,0x33,0x44, 0x5,0x58,0x3e, 0xf,0x57,0x6e, 0xf,0x57,0x6f,\n  0xf,0x57,0x70, 0xf,0x57,0x71, 0xf,0x57,0x72, 0xf,0x57,0x73,\n  0xf,0x57,0x74, 0xf,0x57,0x75, 0xf,0x57,0x76, 0xf,0x57,0x77,\n  0xf,0x57,0x78, 0x7,0x33,0x54, 0x7,0x33,0x41, 0x7,0x33,0x4b,\n  0x4,0x58,0x6e, 0x5,0x5e,0x52, 0x5,0x5e,0x51, 0x7,0x3b,0x7d,\n  0x4,0x58,0x6f, 0x5,0x5e,0x54, 0x4,0x58,0x71, 0x7,0x3b,0x79,\n  0x4,0x58,0x6d, 0x5,0x5e,0x4d, 0x5,0x5e,0x53, 0x5,0x5e,0x4e,\n  0x7,0x3b,0x76, 0x7,0x3c,0x25, 0x4,0x58,0x72, 0x7,0x43,0x2a,\n  0x5,0x5e,0x4f, 0x7,0x3c,0x21, 0x7,0x3b,0x77, 0x5,0x5e,0x56,\n  0x7,0x3c,0x27, 0x7,0x3b,0x7c, 0x7,0x3b,0x78, 0x5,0x5e,0x50,\n  0x4,0x58,0x74, 0x7,0x3b,0x7b, 0x7,0x3b,0x7e, 0x7,0x3c,0x22,\n  0x7,0x3c,0x23, 0x4,0x58,0x73, 0x5,0x5e,0x4b, 0x7,0x3c,0x26,\n  0x5,0x5e,0x4c, 0x7,0x3c,0x24, 0x7,0x3b,0x75, 0xf,0x5c,0x63,\n  0xf,0x5c,0x64, 0xf,0x5c,0x65, 0xf,0x5c,0x66, 0xf,0x5c,0x67,\n  0xf,0x5c,0x68, 0xf,0x5c,0x69, 0xf,0x5c,0x6a, 0xf,0x5c,0x6b,\n  0x7,0x3c,0x28, 0x7,0x3c,0x29, 0x7,0x3b,0x7a, 0x4,0x5d,0x5e,\n  0x4,0x5d,0x56, 0x7,0x43,0x37, 0x4,0x5d,0x58, 0x7,0x43,0x35,\n  0x5,0x64,0x68, 0x7,0x43,0x3a, 0x7,0x43,0x2b, 0x4,0x5d,0x60,\n  0x5,0x64,0x66, 0x5,0x58,0x41, 0x4,0x5d,0x59, 0x5,0x64,0x67,\n  0x7,0x43,0x38, 0x7,0x43,0x32, 0x5,0x64,0x64, 0x4,0x5d,0x53,\n  0x7,0x43,0x3b, 0x4,0x5d,0x55, 0x5,0x64,0x65, 0x4,0x5d,0x5d,\n  0x7,0x43,0x39, 0x7,0x43,0x2f, 0x7,0x43,0x33, 0x7,0x4a,0x2a,\n  0x7,0x43,0x30, 0x4,0x5d,0x5c, 0x7,0x43,0x34, 0x7,0x43,0x31,\n  0x7,0x43,0x3c, 0x7,0x43,0x2c, 0x7,0x43,0x2d, 0xf,0x60,0x72,\n  0xf,0x60,0x75, 0x7,0x43,0x36, 0x4,0x5d,0x5f, 0x7,0x43,0x2e,\n  0x5,0x69,0x4d, 0x5,0x69,0x4f, 0x7,0x4a,0x2f, 0x4,0x61,0x3e,\n  0x7,0x4a,0x2c, 0x7,0x4a,0x2e, 0x4,0x61,0x43, 0x4,0x61,0x39,\n  0x5,0x69,0x50, 0x4,0x61,0x41, 0x7,0x4a,0x34, 0x4,0x61,0x42,\n  0x5,0x69,0x4e, 0x4,0x61,0x3f, 0x7,0x4a,0x26, 0x7,0x4a,0x29,\n  0x7,0x43,0x3d, 0x7,0x4a,0x28, 0x7,0x4a,0x35, 0x7,0x50,0x33,\n  0x7,0x4a,0x33, 0x4,0x61,0x3c, 0x5,0x6d,0x60, 0x7,0x4a,0x27,\n  0xf,0x63,0x78, 0xf,0x63,0x79, 0xf,0x63,0x7a, 0x4,0x61,0x44,\n  0x7,0x4a,0x2b, 0x7,0x50,0x35, 0x7,0x4a,0x30, 0x7,0x4a,0x31,\n  0x7,0x4a,0x2d, 0x7,0x4a,0x32, 0x4,0x61,0x38, 0xf,0x60,0x74,\n  0x4,0x64,0x4a, 0x4,0x64,0x4b, 0x5,0x6d,0x62, 0x5,0x6d,0x61,\n  0x7,0x50,0x2d, 0x5,0x6d,0x63, 0x7,0x50,0x2f, 0x4,0x64,0x49,\n  0x7,0x50,0x2b, 0x5,0x69,0x53, 0x7,0x50,0x32, 0x7,0x50,0x2e,\n  0x7,0x50,0x34, 0x7,0x50,0x36, 0x7,0x50,0x2c, 0x7,0x50,0x30,\n  0xf,0x66,0x36, 0xf,0x66,0x37, 0xf,0x66,0x38, 0xf,0x66,0x39,\n  0x7,0x50,0x38, 0x7,0x50,0x37, 0x7,0x50,0x39, 0x7,0x55,0x2a,\n  0x4,0x67,0x42, 0x7,0x55,0x34, 0x7,0x55,0x2d, 0x7,0x55,0x33,\n  0x4,0x67,0x38, 0x7,0x55,0x2e, 0x5,0x71,0x3d, 0x7,0x55,0x2c,\n  0x7,0x55,0x2f, 0x4,0x67,0x3c, 0x5,0x71,0x3a, 0x5,0x71,0x39,\n  0x4,0x67,0x43, 0x7,0x59,0x3b, 0x7,0x59,0x35, 0x4,0x67,0x3a,\n  0x5,0x71,0x3c, 0x5,0x71,0x3b, 0x7,0x55,0x31, 0x7,0x55,0x2b,\n  0x7,0x55,0x30, 0x5,0x71,0x38, 0x7,0x55,0x35, 0x5,0x74,0x3b,\n  0x5,0x74,0x3d, 0x5,0x74,0x40, 0x5,0x76,0x4b, 0x4,0x69,0x47,\n  0x7,0x59,0x39, 0x4,0x69,0x4a, 0x5,0x74,0x3f, 0x4,0x69,0x49,\n  0x5,0x74,0x3e, 0x7,0x59,0x37, 0x7,0x59,0x40, 0x7,0x55,0x36,\n  0x5,0x74,0x3c, 0x7,0x59,0x36, 0x7,0x59,0x3a, 0x7,0x59,0x3f,\n  0x4,0x69,0x46, 0x7,0x59,0x3e, 0xf,0x69,0x72, 0xf,0x69,0x73,\n  0xf,0x69,0x74, 0x7,0x59,0x3c, 0x7,0x59,0x3d, 0x4,0x6a,0x7d,\n  0x4,0x6a,0x7e, 0x7,0x5c,0x66, 0x5,0x76,0x4e, 0x5,0x76,0x4d,\n  0x5,0x78,0x31, 0x7,0x5c,0x68, 0x7,0x5c,0x69, 0x7,0x5c,0x6a,\n  0xf,0x6a,0x74, 0xf,0x6a,0x75, 0x7,0x5c,0x67, 0x7,0x59,0x42,\n  0x7,0x5f,0x57, 0x7,0x5f,0x58, 0x7,0x5f,0x55, 0x4,0x6c,0x27,\n  0x7,0x5f,0x56, 0x7,0x5f,0x5a, 0xf,0x6b,0x65, 0xf,0x6b,0x66,\n  0x7,0x5f,0x54, 0x7,0x5f,0x59, 0x7,0x5f,0x5b, 0x4,0x6d,0x23,\n  0x7,0x61,0x4b, 0x5,0x79,0x4e, 0x7,0x61,0x4c, 0xf,0x6c,0x3a,\n  0xf,0x6c,0x3b, 0x7,0x61,0x4a, 0x5,0x7a,0x75, 0x7,0x62,0x65,\n  0x7,0x62,0x64, 0x5,0x7a,0x39, 0x4,0x6d,0x7e, 0x7,0x63,0x74,\n  0x7,0x64,0x62, 0x4,0x6e,0x3c, 0x7,0x64,0x44, 0x7,0x65,0x44,\n  0x7,0x66,0x50, 0x5,0x24,0x77, 0x4,0x30,0x24, 0x5,0x30,0x44,\n  0x5,0x30,0x45, 0x4,0x35,0x48, 0x4,0x35,0x49, 0x4,0x35,0x47,\n  0x6,0x44,0x7b, 0x4,0x3b,0x3a, 0x5,0x42,0x7e, 0x5,0x43,0x21,\n  0x6,0x58,0x4c, 0x4,0x47,0x4d, 0x5,0x51,0x2c, 0x4,0x4d,0x63,\n  0x5,0x51,0x2d, 0x5,0x51,0x2b, 0x5,0x58,0x42, 0x7,0x33,0x56,\n  0x7,0x33,0x55, 0x7,0x3c,0x2a, 0x5,0x5e,0x57, 0x7,0x43,0x3e,\n  0x7,0x4a,0x36, 0x7,0x4a,0x39, 0x5,0x69,0x54, 0x7,0x4a,0x37,\n  0x5,0x69,0x55, 0x7,0x4a,0x38, 0x7,0x50,0x3a, 0x7,0x4a,0x3a,\n  0x5,0x71,0x3e, 0x5,0x7a,0x76, 0x7,0x65,0x77, 0x6,0x34,0x55,\n  0x6,0x3c,0x35, 0x6,0x3c,0x34, 0xf,0x38,0x57, 0x4,0x3b,0x3b,\n  0x5,0x3c,0x3e, 0x6,0x4e,0x7b, 0xf,0x3f,0x3d, 0x5,0x43,0x22,\n  0x4,0x40,0x75, 0x6,0x5b,0x5f, 0x4,0x47,0x50, 0x6,0x62,0x54,\n  0x4,0x47,0x51, 0x7,0x29,0x28, 0x7,0x29,0x27, 0x7,0x29,0x25,\n  0x5,0x51,0x2f, 0x5,0x51,0x2e, 0x7,0x29,0x26, 0xf,0x52,0x3b,\n  0x5,0x58,0x43, 0x4,0x53,0x74, 0x7,0x33,0x57, 0x5,0x58,0x44,\n  0x7,0x2c,0x56, 0x5,0x5e,0x5a, 0x7,0x3c,0x2d, 0x5,0x5e,0x58,\n  0x7,0x3c,0x2c, 0x5,0x5e,0x59, 0x7,0x3c,0x2b, 0x5,0x64,0x69,\n  0x4,0x5d,0x63, 0x7,0x43,0x40, 0x4,0x5d,0x62, 0x5,0x5e,0x5b,\n  0x7,0x4a,0x3c, 0x5,0x69,0x57, 0x7,0x4a,0x3d, 0x7,0x43,0x41,\n  0x7,0x43,0x42, 0x5,0x69,0x56, 0x5,0x6d,0x66, 0x5,0x6d,0x65,\n  0x5,0x6d,0x67, 0xf,0x66,0x3a, 0x5,0x6d,0x64, 0xf,0x63,0x7b,\n  0x5,0x71,0x3f, 0x5,0x74,0x41, 0xf,0x6a,0x76, 0xf,0x6a,0x77,\n  0x5,0x78,0x32, 0x5,0x79,0x4f, 0x5,0x7a,0x77, 0x7,0x65,0x45,\n  0x6,0x25,0x54, 0x5,0x23,0x29, 0x5,0x2b,0x4a, 0x5,0x30,0x48,\n  0x5,0x30,0x47, 0x6,0x3c,0x37, 0x6,0x3c,0x36, 0x6,0x44,0x7e,\n  0x6,0x44,0x7c, 0x5,0x35,0x61, 0x6,0x45,0x21, 0x6,0x44,0x7d,\n  0x4,0x3b,0x3c, 0x6,0x4e,0x7c, 0x4,0x3b,0x3d, 0x5,0x3c,0x40,\n  0x5,0x3c,0x3f, 0x6,0x4e,0x7e, 0x5,0x3c,0x41, 0x6,0x4f,0x23,\n  0x6,0x4e,0x7d, 0xf,0x32,0x55, 0x4,0x40,0x77, 0x5,0x43,0x25,\n  0x4,0x40,0x76, 0x6,0x58,0x4e, 0x6,0x58,0x4f, 0x5,0x43,0x27,\n  0x5,0x43,0x23, 0x5,0x43,0x26, 0x6,0x58,0x4d, 0x6,0x4f,0x22,\n  0x5,0x43,0x24, 0x5,0x43,0x28, 0x6,0x62,0x55, 0x6,0x62,0x56,\n  0x4,0x47,0x53, 0x4,0x47,0x52, 0x6,0x62,0x59, 0x5,0x49,0x7d,\n  0x5,0x49,0x7c, 0x6,0x62,0x5b, 0x6,0x62,0x5a, 0x6,0x62,0x57,\n  0x6,0x62,0x58, 0x5,0x51,0x32, 0x4,0x4d,0x66, 0x7,0x29,0x29,\n  0x7,0x29,0x2b, 0x5,0x51,0x31, 0x5,0x51,0x33, 0x7,0x29,0x2d,\n  0x7,0x29,0x2c, 0x5,0x49,0x7e, 0x5,0x51,0x30, 0x7,0x29,0x2a,\n  0x5,0x4a,0x21, 0x7,0x29,0x2e, 0xf,0x52,0x3c, 0x5,0x58,0x47,\n  0x5,0x58,0x48, 0x5,0x58,0x46, 0x7,0x33,0x59, 0x4,0x53,0x76,\n  0x7,0x33,0x5a, 0x7,0x33,0x5c, 0x7,0x33,0x5b, 0x5,0x58,0x45,\n  0x7,0x33,0x58, 0x5,0x5e,0x5d, 0x5,0x5e,0x5e, 0x5,0x5e,0x5f,\n  0x5,0x5e,0x5c, 0x7,0x3c,0x30, 0x7,0x3c,0x2e, 0x7,0x3c,0x2f,\n  0x4,0x5d,0x65, 0x5,0x64,0x6a, 0x5,0x64,0x6b, 0x7,0x43,0x43,\n  0x7,0x43,0x44, 0x7,0x43,0x45, 0x4,0x61,0x47, 0x5,0x69,0x58,\n  0x5,0x58,0x49, 0x7,0x4a,0x3e, 0x4,0x61,0x49, 0x5,0x6d,0x6b,\n  0x5,0x6d,0x68, 0x7,0x50,0x3b, 0x5,0x6d,0x6a, 0x5,0x6d,0x69,\n  0x4,0x67,0x46, 0x5,0x71,0x40, 0x7,0x55,0x37, 0x7,0x55,0x38,\n  0x7,0x59,0x43, 0x7,0x5c,0x6c, 0x7,0x59,0x44, 0x7,0x59,0x45,\n  0x7,0x5c,0x6d, 0x7,0x5c,0x6e, 0x5,0x74,0x42, 0x7,0x5f,0x5c,\n  0x7,0x61,0x4d, 0x7,0x5f,0x5d, 0x5,0x79,0x50, 0x5,0x7a,0x3a,\n  0x7,0x65,0x46, 0x7,0x66,0x43, 0xf,0x28,0x6c, 0x5,0x2b,0x4b,\n  0x6,0x3c,0x38, 0xf,0x32,0x56, 0x5,0x35,0x64, 0x5,0x35,0x63,\n  0x4,0x35,0x4f, 0x5,0x35,0x62, 0x4,0x35,0x4e, 0x6,0x45,0x25,\n  0x6,0x45,0x23, 0x6,0x4f,0x25, 0x5,0x3c,0x42, 0x5,0x3c,0x46,\n  0x5,0x3c,0x44, 0x5,0x3c,0x48, 0x5,0x3c,0x45, 0x6,0x4f,0x28,\n  0x6,0x4f,0x26, 0x5,0x3c,0x47, 0x5,0x3c,0x43, 0x6,0x4f,0x27,\n  0x6,0x4f,0x24, 0xf,0x3f,0x3e, 0x4,0x40,0x7c, 0x4,0x40,0x7d,\n  0x4,0x40,0x7a, 0x6,0x58,0x52, 0x5,0x43,0x2b, 0x6,0x58,0x51,\n  0x5,0x43,0x2a, 0x4,0x40,0x79, 0x4,0x40,0x7b, 0x6,0x58,0x53,\n  0xf,0x45,0x47, 0x5,0x43,0x29, 0x6,0x62,0x61, 0x6,0x62,0x5c,\n  0x5,0x4a,0x25, 0x5,0x4a,0x23, 0x5,0x4a,0x22, 0x6,0x62,0x5f,\n  0x5,0x4a,0x24, 0x6,0x62,0x5e, 0x6,0x62,0x60, 0xf,0x4c,0x48,\n  0x6,0x62,0x5d, 0x6,0x62,0x62, 0xf,0x4c,0x49, 0x5,0x51,0x35,\n  0x5,0x51,0x34, 0x4,0x4d,0x69, 0x5,0x51,0x37, 0x5,0x51,0x36,\n  0x5,0x51,0x38, 0x4,0x4d,0x6a, 0x7,0x29,0x2f, 0x7,0x29,0x30,\n  0x4,0x4d,0x6b, 0x7,0x29,0x31, 0x7,0x33,0x64, 0x5,0x58,0x4b,\n  0x7,0x33,0x5e, 0x7,0x33,0x60, 0x7,0x33,0x61, 0x4,0x53,0x78,\n  0x5,0x58,0x4a, 0x7,0x33,0x62, 0x5,0x58,0x4c, 0x7,0x33,0x5f,\n  0xf,0x57,0x7a, 0x7,0x33,0x5d, 0x7,0x33,0x63, 0x4,0x58,0x79,\n  0x5,0x5e,0x63, 0x7,0x3c,0x31, 0x5,0x5e,0x62, 0x4,0x58,0x78,\n  0x5,0x5e,0x60, 0x5,0x5e,0x64, 0x5,0x5e,0x61, 0xf,0x5c,0x6c,\n  0x7,0x43,0x46, 0x4,0x5d,0x67, 0x7,0x43,0x47, 0x4,0x5d,0x66,\n  0x5,0x64,0x6c, 0x7,0x4a,0x3f, 0x5,0x64,0x6d, 0x5,0x69,0x5b,\n  0x7,0x4a,0x40, 0x5,0x69,0x5a, 0x7,0x4a,0x43, 0x7,0x50,0x3d,\n  0x7,0x4a,0x42, 0x5,0x69,0x59, 0x5,0x6d,0x6d, 0x5,0x6d,0x6c,\n  0x7,0x50,0x3c, 0x5,0x71,0x42, 0x5,0x6d,0x6e, 0x5,0x71,0x41,\n  0x7,0x55,0x39, 0x7,0x59,0x46, 0x7,0x5c,0x70, 0x7,0x5c,0x6f,\n  0x5,0x7a,0x78, 0x5,0x2b,0x4c, 0x4,0x2b,0x4a, 0x6,0x34,0x56,\n  0xf,0x2d,0x4a, 0x4,0x30,0x26, 0x6,0x3c,0x39, 0x5,0x30,0x49,\n  0x5,0x30,0x4a, 0xf,0x32,0x57, 0xf,0x32,0x58, 0x6,0x3c,0x3a,\n  0x6,0x45,0x2a, 0x6,0x45,0x2c, 0x6,0x45,0x27, 0x6,0x45,0x28,\n  0x6,0x45,0x26, 0x6,0x45,0x2b, 0x5,0x35,0x65, 0xf,0x38,0x59,\n  0xf,0x38,0x5a, 0xf,0x38,0x5b, 0xf,0x38,0x5c, 0xf,0x38,0x5d,\n  0xf,0x38,0x5e, 0xf,0x38,0x5f, 0xf,0x38,0x60, 0x6,0x45,0x2d,\n  0x4,0x35,0x53, 0x6,0x45,0x29, 0x4,0x35,0x52, 0x6,0x4f,0x2b,\n  0x4,0x3b,0x40, 0x5,0x3c,0x49, 0x5,0x3c,0x4b, 0x6,0x4f,0x2e,\n  0x6,0x4f,0x2c, 0x6,0x4f,0x2d, 0x6,0x58,0x57, 0x5,0x3c,0x4a,\n  0xf,0x3f,0x3f, 0xf,0x3f,0x41, 0xf,0x3f,0x42, 0xf,0x3f,0x43,\n  0xf,0x3f,0x44, 0xf,0x3f,0x45, 0x6,0x4f,0x2f, 0x6,0x4f,0x2a,\n  0x5,0x3c,0x4d, 0x4,0x41,0x22, 0x6,0x58,0x54, 0x6,0x58,0x59,\n  0x6,0x58,0x56, 0x5,0x43,0x30, 0x5,0x43,0x2c, 0x6,0x58,0x5e,\n  0x6,0x58,0x55, 0x5,0x43,0x2f, 0x5,0x43,0x31, 0x5,0x43,0x32,\n  0x6,0x58,0x58, 0x6,0x58,0x60, 0x6,0x58,0x62, 0x5,0x43,0x33,\n  0x6,0x58,0x5f, 0xf,0x45,0x48, 0xf,0x45,0x49, 0xf,0x45,0x4a,\n  0xf,0x45,0x4b, 0xf,0x45,0x4c, 0xf,0x45,0x4d, 0xf,0x45,0x4e,\n  0x6,0x58,0x61, 0xf,0x3f,0x40, 0x6,0x58,0x5b, 0x5,0x43,0x2e,\n  0xf,0x46,0x34, 0x6,0x62,0x65, 0x4,0x47,0x55, 0x5,0x4a,0x26,\n  0x6,0x62,0x64, 0x6,0x62,0x66, 0x6,0x62,0x6c, 0x6,0x62,0x63,\n  0x6,0x62,0x69, 0x5,0x4a,0x27, 0x4,0x47,0x57, 0xf,0x4c,0x4d,\n  0xf,0x4c,0x4e, 0xf,0x4c,0x4f, 0xf,0x4c,0x51, 0xf,0x4c,0x50,\n  0xf,0x4c,0x4c, 0x6,0x62,0x6b, 0x6,0x58,0x5d, 0x7,0x29,0x33,\n  0x7,0x29,0x35, 0x5,0x4a,0x28, 0x4,0x4d,0x6f, 0x7,0x29,0x34,\n  0x5,0x51,0x3a, 0x4,0x4d,0x70, 0x5,0x51,0x3b, 0x7,0x29,0x39,\n  0x7,0x29,0x38, 0x7,0x29,0x32, 0xf,0x52,0x3d, 0xf,0x52,0x3e,\n  0xf,0x52,0x3f, 0x7,0x29,0x37, 0xf,0x4c,0x4b, 0x7,0x33,0x6a,\n  0x5,0x58,0x4e, 0x7,0x33,0x67, 0x7,0x33,0x66, 0x5,0x58,0x4f,\n  0x7,0x33,0x6b, 0x7,0x33,0x6e, 0x4,0x53,0x7c, 0x7,0x33,0x68,\n  0x5,0x58,0x4d, 0x6,0x62,0x68, 0xf,0x54,0x32, 0xf,0x57,0x7b,\n  0xf,0x57,0x7c, 0xf,0x57,0x7d, 0xf,0x57,0x7e, 0xf,0x58,0x21,\n  0xf,0x58,0x22, 0x7,0x33,0x6d, 0x7,0x33,0x6c, 0x7,0x33,0x65,\n  0x7,0x33,0x69, 0x5,0x58,0x50, 0x7,0x3c,0x32, 0x5,0x5e,0x65,\n  0x5,0x5b,0x2d, 0x5,0x5e,0x67, 0x5,0x58,0x52, 0x5,0x5e,0x66,\n  0x4,0x58,0x7b, 0x7,0x3c,0x38, 0x7,0x3c,0x34, 0x7,0x3c,0x36,\n  0x7,0x3c,0x37, 0x7,0x3c,0x35, 0xf,0x5c,0x6e, 0xf,0x5c,0x70,\n  0xf,0x5c,0x6f, 0x7,0x43,0x4b, 0x5,0x64,0x73, 0x7,0x43,0x4e,\n  0x5,0x64,0x6f, 0x7,0x43,0x49, 0x7,0x43,0x4a, 0x7,0x43,0x51,\n  0x5,0x64,0x71, 0x5,0x64,0x6e, 0x5,0x64,0x72, 0x7,0x43,0x4d,\n  0x7,0x43,0x4c, 0xf,0x60,0x76, 0xf,0x60,0x77, 0xf,0x60,0x78,\n  0xf,0x60,0x79, 0xf,0x60,0x7b, 0xf,0x60,0x7c, 0x7,0x43,0x48,\n  0x7,0x43,0x50, 0x5,0x64,0x70, 0x7,0x4a,0x47, 0x7,0x4a,0x4b,\n  0x5,0x69,0x5d, 0x5,0x64,0x74, 0x7,0x4a,0x4a, 0x7,0x43,0x4f,\n  0x5,0x69,0x5c, 0x4,0x61,0x4b, 0x7,0x4a,0x48, 0x5,0x69,0x5e,\n  0x7,0x4a,0x4d, 0x7,0x4a,0x4c, 0x5,0x69,0x60, 0x7,0x4a,0x44,\n  0x7,0x4a,0x49, 0x7,0x4a,0x46, 0xf,0x63,0x7c, 0xf,0x63,0x7d,\n  0xf,0x63,0x7e, 0xf,0x64,0x21, 0x7,0x4a,0x4e, 0x7,0x4a,0x45,\n  0x5,0x69,0x5f, 0x4,0x64,0x51, 0x5,0x6d,0x70, 0x4,0x64,0x50,\n  0x5,0x6d,0x6f, 0x7,0x50,0x3e, 0x7,0x50,0x40, 0xf,0x66,0x3b,\n  0xf,0x66,0x3c, 0xf,0x66,0x3d, 0xf,0x66,0x3e, 0xf,0x66,0x3f,\n  0x7,0x50,0x3f, 0x5,0x71,0x43, 0x4,0x67,0x47, 0x5,0x71,0x44,\n  0x5,0x71,0x45, 0xf,0x68,0x4e, 0xf,0x68,0x4f, 0x7,0x55,0x3b,\n  0x7,0x59,0x47, 0x5,0x74,0x45, 0x5,0x74,0x44, 0xf,0x69,0x76,\n  0xf,0x69,0x77, 0xf,0x69,0x78, 0x7,0x59,0x4a, 0x7,0x59,0x48,\n  0x7,0x59,0x49, 0xf,0x68,0x4d, 0x7,0x5c,0x71, 0x4,0x6b,0x22,\n  0x5,0x74,0x43, 0x7,0x5c,0x72, 0xf,0x6a,0x78, 0x7,0x5c,0x73,\n  0x7,0x5f,0x5e, 0x7,0x5f,0x60, 0x7,0x5f,0x5f, 0x7,0x62,0x66,\n  0x6,0x2e,0x31, 0x6,0x34,0x57, 0x6,0x34,0x58, 0x5,0x35,0x66,\n  0xf,0x38,0x61, 0x6,0x4f,0x30, 0x4,0x3b,0x44, 0x6,0x58,0x63,\n  0xf,0x45,0x4f, 0x5,0x4a,0x2a, 0xf,0x4c,0x52, 0x7,0x29,0x3a,\n  0x5,0x58,0x54, 0x5,0x58,0x53, 0xf,0x58,0x23, 0x7,0x33,0x6f,\n  0x5,0x5e,0x69, 0x5,0x5e,0x6a, 0x5,0x5e,0x68, 0xf,0x5c,0x71,\n  0x5,0x64,0x75, 0x7,0x43,0x53, 0x7,0x4a,0x50, 0x7,0x4a,0x4f,\n  0x5,0x71,0x46, 0x7,0x5c,0x74, 0x6,0x2e,0x32, 0x6,0x2e,0x33,\n  0x6,0x34,0x59, 0xf,0x2d,0x4b, 0xf,0x2d,0x4d, 0xf,0x2d,0x4e,\n  0xf,0x2d,0x4f, 0xf,0x2d,0x50, 0x4,0x2b,0x4b, 0x5,0x30,0x4d,\n  0x6,0x3c,0x3e, 0x6,0x3c,0x3d, 0x5,0x30,0x4e, 0x6,0x3c,0x3c,\n  0x4,0x30,0x29, 0xf,0x32,0x59, 0xf,0x32,0x5a, 0xf,0x32,0x5b,\n  0xf,0x32,0x5c, 0xf,0x32,0x5d, 0x5,0x35,0x6d, 0x6,0x45,0x30,\n  0x5,0x35,0x67, 0x4,0x35,0x57, 0x5,0x35,0x6a, 0x5,0x35,0x6f,\n  0x5,0x35,0x6e, 0x4,0x35,0x58, 0x6,0x45,0x2e, 0x6,0x45,0x2f,\n  0x5,0x35,0x6b, 0x5,0x35,0x68, 0xf,0x38,0x63, 0xf,0x38,0x64,\n  0xf,0x38,0x65, 0xf,0x38,0x66, 0xf,0x38,0x68, 0xf,0x38,0x69,\n  0xf,0x38,0x62, 0x5,0x35,0x6c, 0x5,0x35,0x69, 0xf,0x38,0x67,\n  0x5,0x3c,0x51, 0x5,0x3c,0x50, 0x5,0x3c,0x54, 0x5,0x3c,0x4f,\n  0x6,0x4f,0x34, 0x6,0x4f,0x31, 0x5,0x43,0x39, 0x5,0x3c,0x53,\n  0x5,0x3c,0x4e, 0x6,0x4f,0x33, 0x4,0x3b,0x46, 0x5,0x3c,0x55,\n  0x6,0x58,0x64, 0x6,0x4f,0x35, 0xf,0x3f,0x47, 0xf,0x3f,0x48,\n  0xf,0x3f,0x49, 0xf,0x3f,0x4a, 0xf,0x3f,0x4b, 0xf,0x3f,0x4c,\n  0xf,0x3f,0x4f, 0xf,0x3f,0x50, 0xf,0x3f,0x51, 0x6,0x4f,0x32,\n  0xf,0x3f,0x4e, 0x6,0x58,0x66, 0x5,0x43,0x36, 0x4,0x41,0x23,\n  0x6,0x58,0x68, 0x4,0x41,0x25, 0x5,0x43,0x3b, 0x5,0x43,0x35,\n  0x5,0x43,0x3d, 0x5,0x43,0x37, 0x4,0x41,0x24, 0x6,0x58,0x6a,\n  0x6,0x58,0x69, 0x5,0x43,0x3a, 0xf,0x45,0x50, 0xf,0x45,0x51,\n  0xf,0x45,0x52, 0xf,0x45,0x53, 0xf,0x45,0x54, 0xf,0x45,0x55,\n  0xf,0x45,0x56, 0xf,0x45,0x57, 0x6,0x58,0x65, 0x6,0x58,0x67,\n  0x6,0x62,0x6d, 0xf,0x3f,0x4d, 0x6,0x62,0x6e, 0x4,0x47,0x5c,\n  0x5,0x4a,0x2c, 0x5,0x4a,0x30, 0x6,0x62,0x72, 0x5,0x4a,0x2b,\n  0x5,0x4a,0x2e, 0x5,0x4a,0x31, 0x6,0x62,0x71, 0x6,0x62,0x6f,\n  0x5,0x4a,0x33, 0x4,0x47,0x5d, 0x5,0x4a,0x2f, 0x6,0x62,0x76,\n  0x5,0x4a,0x2d, 0x6,0x62,0x73, 0xf,0x4c,0x53, 0xf,0x4c,0x54,\n  0xf,0x4c,0x55, 0xf,0x4c,0x56, 0xf,0x4c,0x57, 0xf,0x4c,0x58,\n  0xf,0x4c,0x59, 0x6,0x62,0x70, 0x5,0x51,0x42, 0x5,0x51,0x3c,\n  0x4,0x4d,0x72, 0x5,0x51,0x3f, 0x5,0x51,0x3e, 0x5,0x51,0x3d,\n  0x5,0x51,0x40, 0x7,0x29,0x3f, 0x5,0x51,0x46, 0x5,0x51,0x43,\n  0x7,0x29,0x41, 0x5,0x51,0x41, 0x7,0x29,0x3c, 0x7,0x29,0x40,\n  0x7,0x29,0x3e, 0x6,0x62,0x74, 0x7,0x29,0x42, 0x7,0x33,0x72,\n  0x5,0x51,0x45, 0x5,0x51,0x44, 0xf,0x52,0x40, 0xf,0x52,0x41,\n  0x7,0x29,0x43, 0x7,0x29,0x3b, 0xf,0x58,0x2d, 0x4,0x54,0x23,\n  0x4,0x54,0x24, 0x4,0x54,0x28, 0x7,0x33,0x74, 0x5,0x58,0x59,\n  0x4,0x54,0x21, 0x4,0x54,0x22, 0x4,0x54,0x27, 0x7,0x33,0x75,\n  0x4,0x54,0x25, 0x7,0x33,0x71, 0x7,0x33,0x70, 0x5,0x58,0x58,\n  0x5,0x58,0x5a, 0x7,0x33,0x76, 0xf,0x58,0x24, 0xf,0x58,0x26,\n  0xf,0x58,0x27, 0xf,0x58,0x28, 0xf,0x58,0x29, 0xf,0x58,0x2a,\n  0xf,0x58,0x2b, 0xf,0x58,0x2c, 0xf,0x58,0x2e, 0x7,0x33,0x78,\n  0x7,0x33,0x77, 0x5,0x58,0x5b, 0x5,0x58,0x56, 0x5,0x58,0x57,\n  0x5,0x5e,0x6f, 0x5,0x5e,0x71, 0x4,0x59,0x22, 0x5,0x5e,0x70,\n  0x4,0x59,0x24, 0x4,0x59,0x21, 0x5,0x5e,0x72, 0x4,0x58,0x7e,\n  0x5,0x5e,0x6c, 0x4,0x59,0x23, 0x5,0x5e,0x6e, 0x5,0x5e,0x6b,\n  0x7,0x3c,0x3a, 0x5,0x5e,0x73, 0xf,0x58,0x25, 0xf,0x5c,0x72,\n  0xf,0x5c,0x73, 0xf,0x5c,0x74, 0xf,0x5c,0x75, 0xf,0x5c,0x76,\n  0x7,0x3c,0x39, 0x5,0x64,0x79, 0x5,0x64,0x7c, 0x4,0x5d,0x6b,\n  0x7,0x43,0x57, 0x7,0x43,0x56, 0x5,0x64,0x76, 0x5,0x64,0x7a,\n  0x5,0x64,0x78, 0x5,0x64,0x77, 0x5,0x64,0x7d, 0x5,0x64,0x7e,\n  0x7,0x43,0x5b, 0x7,0x43,0x5a, 0x5,0x64,0x7b, 0xf,0x60,0x7d,\n  0x7,0x43,0x58, 0x7,0x43,0x55, 0x7,0x43,0x59, 0x7,0x43,0x54,\n  0x5,0x58,0x5d, 0x5,0x69,0x62, 0x5,0x69,0x66, 0x5,0x69,0x68,\n  0x4,0x61,0x4e, 0x4,0x61,0x4c, 0x5,0x69,0x63, 0x5,0x69,0x67,\n  0x5,0x69,0x65, 0x5,0x69,0x61, 0x7,0x4a,0x52, 0x5,0x69,0x69,\n  0x5,0x69,0x64, 0xf,0x64,0x23, 0xf,0x64,0x24, 0xf,0x64,0x25,\n  0x7,0x4a,0x51, 0x7,0x4a,0x53, 0x4,0x64,0x52, 0x4,0x64,0x54,\n  0x4,0x64,0x58, 0x4,0x64,0x57, 0x5,0x6d,0x71, 0x7,0x50,0x41,\n  0x7,0x50,0x43, 0x5,0x6d,0x72, 0x7,0x50,0x42, 0xf,0x66,0x40,\n  0xf,0x66,0x41, 0xf,0x66,0x42, 0x4,0x67,0x49, 0x5,0x71,0x48,\n  0x5,0x71,0x49, 0x7,0x55,0x3f, 0x7,0x55,0x3d, 0x7,0x55,0x3c,\n  0x7,0x55,0x3e, 0x5,0x71,0x47, 0x5,0x74,0x46, 0x5,0x74,0x49,\n  0x4,0x69,0x4d, 0x5,0x74,0x48, 0x5,0x74,0x47, 0xf,0x69,0x79,\n  0x5,0x76,0x4f, 0x5,0x76,0x50, 0xf,0x6a,0x79, 0x7,0x59,0x4b,\n  0x7,0x5c,0x75, 0x7,0x5c,0x76, 0x5,0x78,0x33, 0x5,0x78,0x34,\n  0x5,0x78,0x35, 0x4,0x6d,0x26, 0x7,0x61,0x4e, 0x5,0x7a,0x79,\n  0x5,0x7b,0x49, 0x6,0x2e,0x35, 0x6,0x2e,0x34, 0x6,0x34,0x5b,\n  0x5,0x2b,0x4d, 0xf,0x2d,0x51, 0x6,0x34,0x5a, 0x6,0x3c,0x41,\n  0x4,0x30,0x2b, 0x6,0x3c,0x42, 0x6,0x3c,0x40, 0x5,0x30,0x50,\n  0x5,0x30,0x4f, 0x6,0x3c,0x3f, 0x6,0x3c,0x43, 0x4,0x35,0x5f,\n  0x6,0x45,0x33, 0x4,0x35,0x5a, 0x5,0x35,0x73, 0x6,0x45,0x37,\n  0x5,0x35,0x77, 0x6,0x45,0x3a, 0x5,0x35,0x71, 0x5,0x35,0x75,\n  0x6,0x45,0x3c, 0x6,0x45,0x3d, 0x5,0x35,0x74, 0x6,0x45,0x3b,\n  0x6,0x45,0x32, 0x6,0x45,0x36, 0xf,0x38,0x6a, 0x6,0x45,0x31,\n  0x6,0x45,0x35, 0x6,0x45,0x39, 0x5,0x35,0x76, 0x5,0x35,0x70,\n  0x6,0x45,0x34, 0x5,0x3c,0x60, 0x5,0x3c,0x57, 0x5,0x3c,0x58,\n  0x5,0x3c,0x5b, 0x6,0x4f,0x3b, 0x5,0x3c,0x56, 0x6,0x4f,0x38,\n  0x4,0x3b,0x4e, 0x5,0x3c,0x5d, 0x5,0x3c,0x59, 0x5,0x3c,0x61,\n  0x5,0x3c,0x5a, 0x6,0x4f,0x39, 0x6,0x58,0x79, 0x5,0x3c,0x62,\n  0xf,0x3f,0x54, 0x6,0x4f,0x37, 0xf,0x3f,0x52, 0x6,0x4f,0x3a,\n  0x5,0x3c,0x5e, 0x5,0x43,0x41, 0x5,0x43,0x3f, 0x6,0x58,0x71,\n  0x5,0x43,0x40, 0x5,0x43,0x42, 0x6,0x58,0x74, 0x6,0x58,0x70,\n  0x5,0x43,0x47, 0x5,0x43,0x45, 0x6,0x58,0x6e, 0x6,0x58,0x6d,\n  0x5,0x43,0x3e, 0x6,0x58,0x6f, 0x6,0x58,0x72, 0x6,0x58,0x76,\n  0x5,0x43,0x4a, 0x6,0x58,0x6c, 0x6,0x58,0x77, 0x5,0x43,0x43,\n  0x5,0x43,0x4c, 0x5,0x43,0x48, 0x6,0x58,0x73, 0x5,0x43,0x49,\n  0x5,0x43,0x46, 0x6,0x58,0x75, 0x5,0x4a,0x35, 0xf,0x45,0x59,\n  0x6,0x58,0x78, 0x6,0x58,0x6b, 0x6,0x63,0x22, 0x5,0x4a,0x43,\n  0x4,0x47,0x60, 0x5,0x4a,0x37, 0x5,0x4a,0x3f, 0x5,0x4a,0x36,\n  0x5,0x51,0x4e, 0x5,0x4a,0x3b, 0x6,0x62,0x77, 0x6,0x62,0x7b,\n  0x5,0x4a,0x42, 0x5,0x4a,0x3c, 0x5,0x4a,0x39, 0x5,0x4a,0x40,\n  0x5,0x4a,0x41, 0x5,0x4a,0x3d, 0x5,0x43,0x44, 0x5,0x4a,0x38,\n  0x5,0x4a,0x44, 0x6,0x62,0x7e, 0x5,0x4a,0x46, 0x6,0x62,0x79,\n  0x5,0x4a,0x47, 0xf,0x4c,0x5a, 0xf,0x4c,0x5b, 0x6,0x62,0x78,\n  0x6,0x62,0x7a, 0x6,0x62,0x7d, 0x6,0x63,0x21, 0x6,0x62,0x7c,\n  0x5,0x4a,0x3a, 0x7,0x29,0x46, 0x4,0x4d,0x7a, 0x5,0x51,0x4c,\n  0x5,0x51,0x47, 0x5,0x51,0x4a, 0x5,0x51,0x4f, 0x7,0x29,0x45,\n  0x7,0x29,0x49, 0x4,0x4d,0x7c, 0x7,0x29,0x4d, 0x4,0x4d,0x7b,\n  0x5,0x51,0x4b, 0x5,0x51,0x4d, 0x4,0x4e,0x24, 0x5,0x51,0x51,\n  0x5,0x51,0x52, 0x4,0x47,0x63, 0x7,0x29,0x4f, 0x5,0x51,0x49,\n  0x7,0x29,0x4b, 0xf,0x52,0x42, 0xf,0x52,0x43, 0xf,0x52,0x44,\n  0xf,0x52,0x45, 0x7,0x29,0x48, 0x7,0x29,0x4c, 0x7,0x29,0x47,\n  0x7,0x29,0x4a, 0x5,0x51,0x50, 0x5,0x51,0x54, 0x5,0x51,0x55,\n  0x5,0x4a,0x45, 0x7,0x34,0x21, 0x5,0x58,0x60, 0x5,0x4a,0x48,\n  0x5,0x58,0x69, 0x4,0x54,0x2a, 0x7,0x33,0x7a, 0x5,0x58,0x63,\n  0x7,0x33,0x7e, 0x7,0x34,0x23, 0x7,0x33,0x7c, 0x5,0x58,0x5f,\n  0x7,0x33,0x7b, 0x7,0x34,0x25, 0x5,0x51,0x53, 0x7,0x34,0x26,\n  0x5,0x58,0x67, 0x5,0x58,0x68, 0x5,0x58,0x5e, 0x5,0x58,0x61,\n  0x7,0x33,0x7d, 0x5,0x58,0x65, 0x5,0x58,0x64, 0x7,0x34,0x24,\n  0x4,0x54,0x2b, 0x5,0x58,0x66, 0x4,0x54,0x2c, 0xf,0x58,0x31,\n  0xf,0x58,0x32, 0x7,0x34,0x22, 0x5,0x5e,0x7a, 0x5,0x5e,0x7d,\n  0x5,0x5e,0x75, 0x7,0x3c,0x40, 0x5,0x5e,0x76, 0x5,0x5e,0x7c,\n  0x5,0x5e,0x78, 0x4,0x59,0x29, 0x7,0x3c,0x3e, 0x7,0x43,0x67,\n  0x7,0x3c,0x43, 0x5,0x5e,0x7e, 0x4,0x59,0x2e, 0x7,0x3c,0x3b,\n  0x7,0x3c,0x42, 0x7,0x3c,0x44, 0x5,0x5e,0x79, 0x4,0x59,0x27,\n  0x7,0x3c,0x41, 0x7,0x34,0x27, 0x7,0x3c,0x3f, 0x4,0x59,0x2f,\n  0xf,0x5c,0x77, 0x7,0x3c,0x3d, 0xf,0x5c,0x79, 0x5,0x5e,0x77,\n  0x5,0x5e,0x74, 0x7,0x43,0x62, 0x4,0x5d,0x70, 0x7,0x43,0x66,\n  0x4,0x5d,0x6f, 0x5,0x65,0x21, 0x5,0x65,0x22, 0x5,0x65,0x2d,\n  0x5,0x65,0x26, 0x4,0x5d,0x71, 0x5,0x65,0x2c, 0x5,0x65,0x28,\n  0x7,0x43,0x5f, 0x5,0x69,0x70, 0x7,0x43,0x65, 0x7,0x43,0x5c,\n  0x5,0x65,0x2e, 0x7,0x43,0x5e, 0x5,0x65,0x24, 0x7,0x43,0x61,\n  0x5,0x65,0x23, 0x5,0x65,0x29, 0x4,0x5f,0x33, 0x4,0x5d,0x76,\n  0x5,0x65,0x25, 0xf,0x60,0x7e, 0xf,0x61,0x21, 0xf,0x61,0x22,\n  0xf,0x61,0x23, 0xf,0x61,0x24, 0xf,0x61,0x25, 0x7,0x43,0x6b,\n  0x5,0x65,0x27, 0x7,0x43,0x60, 0x7,0x43,0x69, 0x7,0x43,0x68,\n  0x7,0x43,0x6a, 0x7,0x43,0x5d, 0x5,0x65,0x2b, 0x7,0x43,0x63,\n  0x7,0x3c,0x3c, 0x5,0x65,0x2f, 0x5,0x69,0x6a, 0x7,0x4a,0x65,\n  0x5,0x69,0x6f, 0x5,0x69,0x71, 0x7,0x4a,0x68, 0x5,0x69,0x74,\n  0x7,0x4a,0x5b, 0x5,0x65,0x2a, 0x5,0x69,0x6e, 0x7,0x4a,0x58,\n  0x5,0x69,0x6d, 0x5,0x69,0x72, 0x4,0x61,0x55, 0x7,0x4a,0x54,\n  0x4,0x5d,0x73, 0x7,0x4a,0x59, 0x7,0x43,0x64, 0x7,0x4a,0x5e,\n  0x5,0x69,0x73, 0x7,0x4a,0x5a, 0x7,0x4a,0x66, 0x7,0x4a,0x55,\n  0x7,0x4a,0x5c, 0x5,0x69,0x6b, 0x5,0x69,0x6c, 0x7,0x4a,0x61,\n  0x7,0x4a,0x62, 0x7,0x4a,0x63, 0x7,0x4a,0x5f, 0x5,0x69,0x76,\n  0x5,0x69,0x75, 0x7,0x4a,0x60, 0x7,0x4a,0x5d, 0x7,0x4a,0x67,\n  0x7,0x4a,0x56, 0x7,0x4a,0x64, 0x4,0x61,0x53, 0x4,0x64,0x59,\n  0x5,0x6d,0x7d, 0x5,0x6d,0x77, 0x7,0x50,0x44, 0x5,0x6d,0x7b,\n  0x5,0x6d,0x76, 0x5,0x6d,0x79, 0x7,0x50,0x48, 0x7,0x50,0x46,\n  0x4,0x64,0x5c, 0x5,0x6d,0x73, 0x4,0x64,0x5d, 0x7,0x50,0x47,\n  0x5,0x6d,0x78, 0x5,0x6d,0x75, 0x5,0x6d,0x74, 0x7,0x50,0x49,\n  0xf,0x66,0x43, 0xf,0x66,0x44, 0xf,0x66,0x45, 0xf,0x66,0x46,\n  0xf,0x66,0x47, 0x7,0x50,0x45, 0x7,0x50,0x4a, 0x7,0x50,0x4b,\n  0x5,0x6d,0x7c, 0x5,0x6d,0x7e, 0x5,0x6d,0x7a, 0x4,0x67,0x4e,\n  0x7,0x55,0x42, 0x4,0x67,0x4f, 0x5,0x71,0x4b, 0x7,0x55,0x41,\n  0x7,0x55,0x44, 0x4,0x67,0x4d, 0x4,0x67,0x4b, 0x5,0x71,0x4c,\n  0x7,0x55,0x43, 0x7,0x55,0x40, 0x5,0x71,0x4a, 0xf,0x68,0x51,\n  0xf,0x68,0x52, 0x5,0x74,0x4a, 0x7,0x55,0x45, 0x7,0x59,0x4c,\n  0x5,0x74,0x4d, 0x5,0x74,0x4f, 0x5,0x74,0x4e, 0x5,0x74,0x4c,\n  0x7,0x59,0x4d, 0x5,0x74,0x51, 0x7,0x59,0x4e, 0xf,0x69,0x7a,\n  0x7,0x59,0x4f, 0x5,0x74,0x50, 0x5,0x76,0x54, 0x5,0x76,0x52,\n  0x5,0x76,0x55, 0x7,0x5c,0x79, 0x7,0x5c,0x78, 0x5,0x76,0x53,\n  0x5,0x76,0x51, 0x4,0x6c,0x2b, 0x7,0x5f,0x61, 0x5,0x78,0x37,\n  0x5,0x78,0x36, 0x4,0x6c,0x2a, 0x5,0x78,0x38, 0x7,0x5f,0x62,\n  0x7,0x61,0x4f, 0x7,0x5f,0x63, 0x7,0x61,0x52, 0x4,0x6d,0x28,\n  0x7,0x61,0x54, 0x7,0x62,0x67, 0x7,0x61,0x53, 0x7,0x61,0x51,\n  0x7,0x61,0x50, 0xf,0x6b,0x67, 0x5,0x7a,0x3c, 0x5,0x7a,0x3b,\n  0x5,0x7a,0x3d, 0x7,0x63,0x76, 0x5,0x7b,0x4a, 0x7,0x64,0x63,\n  0x5,0x7b,0x6a, 0xf,0x6d,0x28, 0x7,0x65,0x65, 0xf,0x6d,0x33,\n  0x6,0x23,0x39, 0x6,0x23,0x3a, 0x6,0x25,0x55, 0x5,0x30,0x52,\n  0x6,0x3c,0x44, 0x5,0x30,0x51, 0x5,0x35,0x7a, 0x5,0x35,0x79,\n  0x5,0x35,0x78, 0x6,0x45,0x3e, 0x6,0x45,0x41, 0x6,0x45,0x40,\n  0x6,0x45,0x42, 0x6,0x45,0x3f, 0x6,0x45,0x43, 0x6,0x45,0x44,\n  0x4,0x35,0x60, 0xf,0x38,0x6b, 0x5,0x3c,0x65, 0x6,0x4f,0x3f,\n  0x5,0x3c,0x64, 0x6,0x4f,0x41, 0x6,0x4f,0x3e, 0x5,0x3c,0x66,\n  0xf,0x3f,0x55, 0xf,0x3f,0x56, 0xf,0x3f,0x57, 0xf,0x3f,0x58,\n  0x6,0x4f,0x3d, 0x6,0x4f,0x40, 0x6,0x58,0x7d, 0x5,0x43,0x4d,\n  0x6,0x58,0x7a, 0x6,0x58,0x7e, 0x6,0x59,0x21, 0xf,0x45,0x5a,\n  0xf,0x45,0x5b, 0xf,0x45,0x5c, 0x6,0x58,0x7b, 0x6,0x58,0x7c,\n  0x6,0x59,0x22, 0x5,0x4a,0x4a, 0x6,0x63,0x23, 0x6,0x63,0x24,\n  0x5,0x4a,0x49, 0x6,0x63,0x25, 0x6,0x63,0x26, 0xf,0x4c,0x5c,\n  0xf,0x4c,0x5d, 0xf,0x4c,0x5e, 0x7,0x29,0x51, 0x5,0x51,0x56,\n  0x4,0x4e,0x25, 0xf,0x52,0x46, 0xf,0x52,0x48, 0x7,0x29,0x50,\n  0x5,0x58,0x6a, 0x4,0x54,0x31, 0x5,0x58,0x6b, 0x7,0x34,0x28,\n  0x7,0x3c,0x46, 0xf,0x58,0x34, 0xf,0x58,0x36, 0x7,0x3c,0x48,\n  0x7,0x3c,0x47, 0x7,0x3c,0x45, 0x5,0x5f,0x21, 0xf,0x5c,0x7a,\n  0xf,0x5c,0x7b, 0x5,0x65,0x30, 0x7,0x43,0x6c, 0xf,0x61,0x26,\n  0xf,0x61,0x27, 0x7,0x4a,0x6c, 0x7,0x4a,0x6d, 0x7,0x4a,0x6a,\n  0xf,0x64,0x26, 0xf,0x64,0x27, 0x7,0x4a,0x6b, 0x7,0x4a,0x69,\n  0x4,0x64,0x5e, 0x7,0x50,0x4d, 0xf,0x66,0x48, 0xf,0x66,0x49,\n  0x7,0x50,0x4e, 0x7,0x55,0x46, 0x5,0x71,0x4d, 0x7,0x55,0x47,\n  0x7,0x55,0x48, 0x7,0x55,0x49, 0x7,0x59,0x50, 0xf,0x69,0x7c,\n  0x5,0x76,0x56, 0x5,0x79,0x51, 0x6,0x34,0x5c, 0x5,0x2b,0x4e,\n  0x6,0x34,0x5e, 0xf,0x2d,0x52, 0xf,0x2d,0x54, 0x6,0x3c,0x45,\n  0x5,0x30,0x54, 0x6,0x3c,0x47, 0xf,0x32,0x5f, 0xf,0x32,0x60,\n  0x6,0x3c,0x46, 0x5,0x30,0x53, 0xf,0x32,0x5e, 0x5,0x35,0x7b,\n  0x6,0x45,0x4e, 0x6,0x45,0x4d, 0x6,0x45,0x46, 0x4,0x35,0x64,\n  0x5,0x36,0x22, 0x5,0x36,0x21, 0x6,0x45,0x4a, 0x5,0x35,0x7d,\n  0x6,0x45,0x47, 0x6,0x45,0x4c, 0x6,0x45,0x4b, 0x5,0x35,0x7c,\n  0x5,0x35,0x7e, 0xf,0x38,0x6d, 0x6,0x45,0x48, 0x6,0x45,0x49,\n  0x4,0x35,0x65, 0x6,0x4f,0x46, 0x6,0x4f,0x47, 0x5,0x3c,0x70,\n  0x5,0x3c,0x6e, 0x6,0x4f,0x45, 0x6,0x4f,0x44, 0x6,0x4f,0x42,\n  0x5,0x36,0x23, 0x5,0x3c,0x6d, 0x5,0x3c,0x68, 0x5,0x3c,0x6b,\n  0x5,0x3c,0x6a, 0x6,0x4f,0x43, 0x5,0x3c,0x69, 0x5,0x3c,0x71,\n  0x5,0x3c,0x6c, 0x5,0x3c,0x6f, 0x6,0x59,0x23, 0x6,0x59,0x28,\n  0x5,0x43,0x53, 0x6,0x59,0x26, 0x6,0x59,0x29, 0x5,0x43,0x51,\n  0x4,0x41,0x2b, 0x5,0x43,0x52, 0x5,0x43,0x4f, 0x6,0x59,0x27,\n  0x5,0x43,0x4e, 0xf,0x45,0x5d, 0xf,0x45,0x5e, 0xf,0x45,0x5f,\n  0x6,0x59,0x25, 0x4,0x41,0x2d, 0x5,0x43,0x54, 0x6,0x63,0x2d,\n  0x6,0x63,0x2f, 0x5,0x4a,0x50, 0x4,0x47,0x68, 0x6,0x63,0x28,\n  0x6,0x63,0x2b, 0x5,0x4a,0x4d, 0x6,0x63,0x2c, 0x6,0x63,0x27,\n  0x6,0x63,0x30, 0x5,0x4a,0x4b, 0x5,0x4a,0x4e, 0x6,0x63,0x31,\n  0x6,0x63,0x2e, 0xf,0x4c,0x5f, 0xf,0x4c,0x60, 0xf,0x4c,0x61,\n  0xf,0x4c,0x63, 0x5,0x4a,0x4f, 0x5,0x4a,0x4c, 0x7,0x29,0x59,\n  0x6,0x63,0x2a, 0x5,0x51,0x60, 0x7,0x29,0x57, 0x7,0x29,0x5e,\n  0x7,0x29,0x62, 0x7,0x29,0x56, 0x5,0x51,0x59, 0x7,0x29,0x5a,\n  0x7,0x29,0x55, 0x7,0x29,0x5c, 0x5,0x51,0x58, 0x5,0x51,0x5b,\n  0x5,0x51,0x5e, 0x4,0x4e,0x2c, 0x6,0x63,0x29, 0x7,0x29,0x58,\n  0x7,0x29,0x5d, 0x7,0x29,0x5b, 0x5,0x51,0x5d, 0x5,0x51,0x5f,\n  0x7,0x29,0x52, 0x5,0x51,0x57, 0x7,0x29,0x54, 0x7,0x29,0x63,\n  0xf,0x52,0x49, 0xf,0x52,0x4a, 0xf,0x52,0x4b, 0xf,0x52,0x4c,\n  0x7,0x29,0x53, 0x7,0x29,0x5f, 0x7,0x29,0x60, 0x7,0x29,0x61,\n  0x5,0x51,0x5c, 0x5,0x51,0x5a, 0x7,0x34,0x29, 0x5,0x58,0x73,\n  0x7,0x34,0x2f, 0x5,0x58,0x74, 0x7,0x34,0x2d, 0x5,0x58,0x70,\n  0x7,0x34,0x2b, 0x7,0x34,0x34, 0x5,0x58,0x6e, 0x5,0x58,0x71,\n  0x5,0x58,0x6d, 0x7,0x34,0x35, 0x7,0x34,0x30, 0x7,0x34,0x36,\n  0x5,0x58,0x6c, 0x7,0x34,0x33, 0xf,0x58,0x37, 0xf,0x58,0x39,\n  0xf,0x58,0x3a, 0x7,0x34,0x2c, 0x7,0x34,0x2e, 0x7,0x34,0x2a,\n  0xf,0x58,0x38, 0x4,0x54,0x35, 0x5,0x58,0x6f, 0x7,0x3c,0x4a,\n  0x7,0x3c,0x52, 0x5,0x5f,0x25, 0x7,0x3c,0x4d, 0x7,0x3c,0x4c,\n  0x7,0x3c,0x4b, 0x7,0x3c,0x53, 0x4,0x59,0x33, 0x7,0x3c,0x50,\n  0x4,0x59,0x34, 0x7,0x3c,0x51, 0x5,0x5f,0x22, 0x5,0x5f,0x2b,\n  0x4,0x59,0x36, 0x5,0x5f,0x28, 0x5,0x5f,0x27, 0x7,0x3c,0x54,\n  0x5,0x5f,0x24, 0x5,0x5f,0x2a, 0x7,0x3c,0x49, 0xf,0x5c,0x7c,\n  0xf,0x5c,0x7d, 0x7,0x3c,0x4e, 0x7,0x3c,0x4f, 0x5,0x5f,0x26,\n  0x5,0x5f,0x23, 0x5,0x5f,0x29, 0x4,0x5d,0x79, 0x7,0x43,0x70,\n  0x4,0x5e,0x21, 0x5,0x65,0x32, 0x5,0x65,0x34, 0xf,0x61,0x28,\n  0xf,0x61,0x29, 0xf,0x61,0x2a, 0x7,0x43,0x6f, 0x7,0x43,0x72,\n  0x7,0x43,0x71, 0x7,0x43,0x6e, 0x7,0x43,0x6d, 0x5,0x65,0x31,\n  0x5,0x65,0x33, 0x5,0x69,0x78, 0x7,0x4a,0x6e, 0x7,0x4a,0x71,\n  0x7,0x4a,0x6f, 0x7,0x4a,0x70, 0x5,0x69,0x7a, 0x4,0x61,0x5a,\n  0x4,0x61,0x5b, 0x5,0x69,0x79, 0x5,0x69,0x77, 0x5,0x69,0x7b,\n  0x7,0x4a,0x72, 0xf,0x64,0x28, 0x7,0x4a,0x74, 0x4,0x64,0x62,\n  0x5,0x6e,0x25, 0x5,0x6e,0x23, 0x7,0x50,0x53, 0x5,0x6e,0x24,\n  0x5,0x6e,0x22, 0x7,0x50,0x51, 0x5,0x6e,0x21, 0xf,0x66,0x4a,\n  0x7,0x50,0x52, 0x7,0x50,0x50, 0x7,0x50,0x4f, 0x5,0x6e,0x26,\n  0x7,0x50,0x54, 0x4,0x67,0x53, 0x5,0x71,0x4e, 0x4,0x67,0x54,\n  0x7,0x55,0x4c, 0x7,0x55,0x4b, 0x7,0x55,0x4a, 0x7,0x59,0x56,\n  0x4,0x69,0x50, 0x7,0x59,0x52, 0x7,0x59,0x51, 0x4,0x69,0x51,\n  0x7,0x59,0x57, 0x7,0x59,0x53, 0x7,0x59,0x54, 0x7,0x59,0x55,\n  0x7,0x5c,0x7e, 0x7,0x5d,0x21, 0x5,0x76,0x57, 0x7,0x5c,0x7b,\n  0x7,0x5c,0x7a, 0x7,0x5c,0x7c, 0x7,0x5c,0x7d, 0x5,0x76,0x59,\n  0x5,0x76,0x58, 0x5,0x78,0x3c, 0x5,0x78,0x3b, 0x5,0x78,0x3a,\n  0x7,0x5f,0x67, 0x7,0x5f,0x65, 0x7,0x5f,0x64, 0x5,0x78,0x39,\n  0x7,0x5f,0x66, 0x5,0x79,0x53, 0x5,0x79,0x52, 0x5,0x7a,0x3e,\n  0x5,0x7a,0x3f, 0x7,0x62,0x68, 0x5,0x7a,0x7a, 0x7,0x64,0x64,\n  0x7,0x62,0x69, 0x7,0x63,0x77, 0x5,0x7b,0x6b, 0x7,0x65,0x66,\n  0x6,0x29,0x2b, 0x6,0x2e,0x36, 0x6,0x3c,0x48, 0x6,0x45,0x4f,\n  0x5,0x36,0x25, 0x5,0x36,0x24, 0x4,0x41,0x2e, 0x6,0x59,0x2a,\n  0xf,0x45,0x61, 0x5,0x4a,0x51, 0xf,0x4c,0x65, 0xf,0x4c,0x66,\n  0x5,0x4a,0x52, 0x7,0x29,0x64, 0x7,0x29,0x65, 0x7,0x29,0x66,\n  0x5,0x51,0x62, 0x7,0x34,0x37, 0x5,0x58,0x75, 0x7,0x34,0x38,\n  0xf,0x58,0x3b, 0x5,0x5f,0x2d, 0x5,0x5f,0x2c, 0xf,0x5c,0x7e,\n  0xf,0x5d,0x21, 0xf,0x5d,0x22, 0xf,0x5d,0x23, 0x5,0x5f,0x2e,\n  0x5,0x65,0x37, 0x5,0x65,0x36, 0x7,0x43,0x73, 0x7,0x4a,0x75,\n  0x4,0x61,0x5c, 0x7,0x4a,0x76, 0xf,0x66,0x4b, 0x7,0x50,0x55,\n  0xf,0x68,0x54, 0x7,0x59,0x58, 0x7,0x5f,0x68, 0x7,0x65,0x47,\n  0x7,0x65,0x67, 0x6,0x29,0x2c, 0x6,0x2e,0x37, 0x6,0x59,0x2d,\n  0x6,0x59,0x2c, 0x6,0x59,0x2b, 0xf,0x52,0x4d, 0x7,0x33,0x21,\n  0x4,0x61,0x5d, 0x7,0x55,0x4d, 0x6,0x25,0x59, 0x6,0x25,0x58,\n  0x6,0x25,0x57, 0x4,0x24,0x7e, 0x6,0x29,0x2d, 0x4,0x25,0x24,\n  0x6,0x3c,0x49, 0x6,0x29,0x2e, 0xf,0x25,0x33, 0xf,0x25,0x34,\n  0x6,0x3c,0x4a, 0x6,0x29,0x2f, 0x5,0x24,0x78, 0x6,0x3c,0x4b,\n  0x6,0x45,0x50, 0x5,0x27,0x6a, 0x5,0x27,0x6b, 0x5,0x27,0x70,\n  0x6,0x2e,0x38, 0x6,0x2e,0x3d, 0x5,0x27,0x6f, 0x4,0x28,0x25,\n  0x5,0x27,0x71, 0x5,0x27,0x6d, 0x4,0x28,0x28, 0x6,0x2e,0x3b,\n  0xf,0x28,0x6d, 0xf,0x28,0x6f, 0xf,0x28,0x70, 0xf,0x28,0x73,\n  0xf,0x28,0x74, 0xf,0x28,0x75, 0x6,0x2e,0x3a, 0x6,0x2e,0x3f,\n  0x5,0x27,0x6e, 0x5,0x27,0x68, 0x6,0x2e,0x3c, 0x5,0x27,0x6c,\n  0x6,0x2e,0x39, 0x6,0x2e,0x3e, 0x5,0x2b,0x4f, 0x5,0x2b,0x56,\n  0x5,0x2b,0x52, 0x6,0x34,0x5f, 0x5,0x2b,0x51, 0x6,0x34,0x62,\n  0x5,0x2b,0x55, 0x5,0x2b,0x53, 0x4,0x2b,0x4f, 0x4,0x2b,0x51,\n  0x5,0x2b,0x50, 0x6,0x34,0x64, 0x6,0x34,0x63, 0xf,0x2d,0x55,\n  0xf,0x2d,0x56, 0xf,0x2d,0x57, 0xf,0x2d,0x58, 0xf,0x2d,0x59,\n  0x4,0x2b,0x52, 0x6,0x34,0x65, 0x6,0x34,0x61, 0x6,0x4a,0x47,\n  0x5,0x2b,0x57, 0x5,0x2b,0x54, 0x6,0x3c,0x54, 0x6,0x3c,0x58,\n  0x5,0x30,0x5b, 0x6,0x3c,0x53, 0x5,0x30,0x56, 0x5,0x30,0x5a,\n  0x4,0x30,0x31, 0x5,0x30,0x57, 0x5,0x30,0x59, 0x6,0x3c,0x52,\n  0x6,0x3c,0x4c, 0x6,0x3c,0x56, 0x4,0x30,0x32, 0x6,0x3c,0x57,\n  0x6,0x3c,0x4d, 0x5,0x43,0x55, 0x6,0x3c,0x55, 0x5,0x30,0x58,\n  0x6,0x3c,0x50, 0x6,0x3c,0x4e, 0x5,0x30,0x5c, 0x5,0x36,0x27,\n  0x5,0x36,0x26, 0x6,0x3c,0x4f, 0x6,0x45,0x5b, 0x5,0x36,0x2c,\n  0x4,0x35,0x6a, 0x6,0x45,0x5c, 0x5,0x36,0x2b, 0x6,0x3c,0x51,\n  0x5,0x36,0x29, 0x6,0x45,0x57, 0x6,0x45,0x5a, 0xf,0x38,0x70,\n  0xf,0x38,0x71, 0xf,0x38,0x72, 0x6,0x45,0x56, 0x6,0x45,0x54,\n  0x6,0x45,0x55, 0x6,0x45,0x52, 0x6,0x45,0x5d, 0x6,0x45,0x58,\n  0x6,0x45,0x53, 0x5,0x36,0x2a, 0x4,0x35,0x67, 0x6,0x45,0x59,\n  0x5,0x36,0x2d, 0x5,0x36,0x28, 0xf,0x38,0x6f, 0x6,0x45,0x51,\n  0x5,0x3c,0x76, 0x5,0x3c,0x72, 0x5,0x3c,0x78, 0x5,0x3c,0x77,\n  0x4,0x3b,0x56, 0x6,0x4f,0x53, 0x4,0x3b,0x5a, 0x4,0x3b,0x58,\n  0x5,0x3c,0x79, 0x6,0x4f,0x52, 0x7,0x29,0x67, 0x6,0x4f,0x4d,\n  0x6,0x4f,0x4c, 0x6,0x4f,0x50, 0x6,0x4f,0x4f, 0x4,0x3b,0x5b,\n  0x6,0x4f,0x49, 0x6,0x4f,0x4b, 0xf,0x3f,0x62, 0x6,0x4f,0x51,\n  0x6,0x4f,0x54, 0x6,0x4f,0x55, 0x6,0x4f,0x4a, 0xf,0x3f,0x59,\n  0xf,0x3f,0x5a, 0xf,0x3f,0x5b, 0xf,0x3f,0x5c, 0xf,0x3f,0x5d,\n  0xf,0x3f,0x5f, 0xf,0x3f,0x60, 0xf,0x3f,0x61, 0x5,0x3c,0x75,\n  0x6,0x4f,0x4e, 0x5,0x3c,0x74, 0x5,0x3c,0x73, 0x4,0x3b,0x59,\n  0x6,0x4f,0x56, 0x6,0x59,0x40, 0x6,0x59,0x34, 0x6,0x59,0x3d,\n  0x6,0x59,0x30, 0x4,0x41,0x31, 0x4,0x41,0x30, 0x6,0x59,0x2e,\n  0x5,0x43,0x59, 0x6,0x59,0x31, 0x6,0x59,0x41, 0x6,0x59,0x3b,\n  0x6,0x59,0x3f, 0x6,0x59,0x37, 0x6,0x59,0x35, 0x6,0x59,0x43,\n  0x6,0x59,0x42, 0x5,0x3c,0x7a, 0x4,0x41,0x32, 0x6,0x59,0x33,\n  0x6,0x59,0x3e, 0xf,0x45,0x62, 0xf,0x45,0x63, 0xf,0x45,0x64,\n  0xf,0x45,0x65, 0xf,0x45,0x66, 0xf,0x45,0x67, 0xf,0x45,0x68,\n  0xf,0x45,0x69, 0xf,0x45,0x6a, 0xf,0x45,0x6b, 0xf,0x45,0x6c,\n  0x6,0x59,0x32, 0x6,0x59,0x36, 0x6,0x59,0x3c, 0x6,0x59,0x39,\n  0x6,0x59,0x38, 0x6,0x59,0x3a, 0x6,0x59,0x2f, 0x5,0x43,0x58,\n  0x5,0x43,0x57, 0x5,0x43,0x56, 0x6,0x63,0x35, 0x6,0x63,0x34,\n  0x6,0x63,0x37, 0x6,0x63,0x32, 0x6,0x63,0x3a, 0x5,0x4a,0x54,\n  0x6,0x63,0x36, 0x6,0x63,0x38, 0x6,0x63,0x3c, 0x5,0x4a,0x53,\n  0x5,0x4a,0x56, 0x6,0x63,0x33, 0x6,0x63,0x3b, 0x7,0x3c,0x55,\n  0xf,0x4c,0x69, 0xf,0x4c,0x6a, 0xf,0x4c,0x6c, 0xf,0x4c,0x6d,\n  0xf,0x4c,0x6e, 0xf,0x4c,0x6f, 0xf,0x4c,0x70, 0xf,0x4c,0x71,\n  0xf,0x4c,0x72, 0x6,0x63,0x39, 0x7,0x3c,0x56, 0x7,0x3c,0x57,\n  0x7,0x3c,0x58, 0x5,0x4a,0x55, 0x7,0x29,0x6e, 0x7,0x29,0x6c,\n  0x7,0x29,0x72, 0x7,0x29,0x69, 0x7,0x29,0x6b, 0x4,0x4e,0x2f,\n  0x5,0x51,0x64, 0x4,0x4e,0x30, 0x5,0x51,0x68, 0x5,0x51,0x65,\n  0x4,0x4e,0x34, 0x7,0x29,0x70, 0xf,0x52,0x4e, 0xf,0x52,0x4f,\n  0xf,0x52,0x50, 0xf,0x52,0x51, 0xf,0x52,0x52, 0x5,0x51,0x6d,\n  0x7,0x29,0x6a, 0x7,0x29,0x6f, 0x7,0x29,0x74, 0x7,0x29,0x75,\n  0x7,0x29,0x71, 0x7,0x29,0x73, 0x7,0x43,0x74, 0x7,0x29,0x68,\n  0x7,0x43,0x75, 0x7,0x29,0x6d, 0x5,0x51,0x69, 0x5,0x51,0x67,\n  0x5,0x51,0x6c, 0x5,0x51,0x66, 0x5,0x51,0x6a, 0x5,0x51,0x6b,\n  0x5,0x51,0x63, 0x7,0x34,0x46, 0x5,0x58,0x7c, 0x5,0x58,0x7b,\n  0x5,0x58,0x79, 0x7,0x34,0x41, 0x5,0x58,0x77, 0x7,0x34,0x45,\n  0x7,0x34,0x3e, 0x7,0x34,0x47, 0x4,0x54,0x36, 0x7,0x34,0x42,\n  0x7,0x34,0x44, 0x7,0x34,0x39, 0x7,0x34,0x4a, 0x7,0x4a,0x77,\n  0x7,0x34,0x3c, 0x7,0x34,0x40, 0x7,0x34,0x4c, 0xf,0x58,0x3c,\n  0xf,0x58,0x3d, 0xf,0x58,0x3e, 0x7,0x34,0x3d, 0xf,0x58,0x3f,\n  0x7,0x2c,0x5a, 0x7,0x34,0x48, 0x7,0x34,0x3b, 0x7,0x34,0x3a,\n  0x7,0x34,0x43, 0x7,0x34,0x4b, 0x5,0x58,0x78, 0x5,0x58,0x7d,\n  0x5,0x58,0x7a, 0x7,0x34,0x3f, 0x5,0x58,0x76, 0x5,0x5f,0x2f,\n  0x4,0x59,0x3a, 0x7,0x3c,0x60, 0x5,0x5f,0x33, 0x7,0x3c,0x5d,\n  0x5,0x5f,0x34, 0x7,0x3c,0x5b, 0x7,0x50,0x57, 0x7,0x34,0x49,\n  0x7,0x3c,0x62, 0x7,0x3c,0x5e, 0x5,0x5f,0x32, 0x5,0x5f,0x35,\n  0xf,0x5d,0x24, 0xf,0x5d,0x26, 0xf,0x5d,0x27, 0xf,0x5d,0x28,\n  0x7,0x3c,0x59, 0x7,0x3c,0x5c, 0x7,0x3c,0x5f, 0x7,0x3c,0x63,\n  0xf,0x5d,0x25, 0x5,0x5f,0x36, 0x5,0x5f,0x37, 0x5,0x5f,0x31,\n  0x5,0x5f,0x30, 0x7,0x3c,0x5a, 0x5,0x65,0x3d, 0x7,0x43,0x7c,\n  0x4,0x5e,0x22, 0x7,0x43,0x7a, 0x5,0x65,0x3a, 0x7,0x43,0x78,\n  0xf,0x61,0x2b, 0xf,0x61,0x2c, 0xf,0x61,0x2d, 0x7,0x44,0x21,\n  0x7,0x43,0x7e, 0x5,0x65,0x39, 0x7,0x43,0x7d, 0x7,0x43,0x76,\n  0x7,0x43,0x79, 0x5,0x65,0x3c, 0x5,0x65,0x3b, 0x5,0x65,0x38,\n  0x7,0x43,0x7b, 0x7,0x4b,0x21, 0x7,0x4b,0x22, 0x7,0x4a,0x7e,\n  0xf,0x64,0x2a, 0xf,0x64,0x2b, 0xf,0x64,0x2d, 0xf,0x64,0x2e,\n  0x7,0x4a,0x79, 0x7,0x4a,0x7a, 0x7,0x4a,0x7d, 0x7,0x4a,0x7b,\n  0x7,0x4a,0x7c, 0x7,0x4a,0x78, 0x5,0x6a,0x21, 0x5,0x69,0x7e,\n  0xf,0x64,0x2c, 0x7,0x50,0x5a, 0x5,0x6e,0x29, 0x7,0x50,0x59,\n  0x5,0x6e,0x27, 0xf,0x66,0x4c, 0x7,0x50,0x58, 0x5,0x6e,0x28,\n  0x7,0x5d,0x22, 0x4,0x67,0x55, 0x7,0x55,0x4f, 0x5,0x71,0x51,\n  0x7,0x55,0x50, 0x7,0x55,0x4e, 0xf,0x68,0x55, 0xf,0x68,0x56,\n  0xf,0x68,0x57, 0xf,0x68,0x58, 0x5,0x71,0x4f, 0x5,0x71,0x50,\n  0x5,0x69,0x7d, 0x7,0x55,0x51, 0x5,0x71,0x52, 0x5,0x74,0x52,\n  0x4,0x6b,0x25, 0x7,0x59,0x5b, 0x7,0x59,0x5a, 0x7,0x59,0x59,\n  0x7,0x5d,0x23, 0x7,0x5d,0x25, 0x7,0x5d,0x24, 0x7,0x62,0x6a,\n  0x7,0x5f,0x6a, 0x7,0x5f,0x69, 0x5,0x78,0x3d, 0x7,0x61,0x55,\n  0x7,0x62,0x6b, 0x7,0x65,0x68, 0x6,0x29,0x30, 0x5,0x21,0x7c,\n  0x5,0x23,0x2c, 0x5,0x23,0x2b, 0x5,0x23,0x2d, 0x5,0x23,0x2a,\n  0x4,0x23,0x31, 0x6,0x25,0x5a, 0x6,0x25,0x5c, 0x4,0x23,0x33,\n  0x4,0x25,0x27, 0x5,0x24,0x79, 0x4,0x25,0x26, 0x4,0x25,0x28,\n  0x4,0x25,0x25, 0x6,0x29,0x33, 0x4,0x25,0x2a, 0x5,0x24,0x7a,\n  0x4,0x35,0x71, 0x6,0x29,0x32, 0xf,0x25,0x35, 0xf,0x25,0x36,\n  0xf,0x25,0x37, 0xf,0x38,0x73, 0xf,0x38,0x75, 0x6,0x45,0x61,\n  0x6,0x45,0x5f, 0x6,0x45,0x60, 0x6,0x29,0x31, 0x4,0x25,0x29,\n  0x4,0x28,0x2e, 0x6,0x45,0x5e, 0x4,0x28,0x2a, 0x4,0x28,0x2d,\n  0x4,0x28,0x2c, 0x6,0x34,0x69, 0x4,0x28,0x2f, 0x5,0x27,0x72,\n  0x5,0x27,0x73, 0x6,0x4f,0x58, 0x6,0x2e,0x43, 0xf,0x28,0x76,\n  0xf,0x28,0x78, 0xf,0x28,0x79, 0xf,0x28,0x7c, 0x6,0x4f,0x5a,\n  0x6,0x2e,0x41, 0x6,0x2e,0x42, 0x6,0x2e,0x40, 0xf,0x28,0x77,\n  0xf,0x28,0x7b, 0x6,0x4f,0x57, 0x6,0x4f,0x59, 0x5,0x27,0x74,\n  0x5,0x2b,0x5a, 0x5,0x2b,0x59, 0x5,0x2b,0x58, 0x4,0x2b,0x57,\n  0x4,0x2b,0x55, 0x5,0x2b,0x5f, 0x4,0x41,0x33, 0x5,0x2b,0x5b,\n  0xf,0x2d,0x5a, 0xf,0x45,0x6e, 0x6,0x59,0x45, 0x6,0x59,0x44,\n  0x6,0x59,0x46, 0x6,0x34,0x6c, 0x6,0x34,0x66, 0x6,0x34,0x67,\n  0x6,0x34,0x68, 0x6,0x34,0x6b, 0x6,0x34,0x6a, 0x5,0x2b,0x5e,\n  0x5,0x2b,0x5c, 0x5,0x2b,0x5d, 0x5,0x30,0x61, 0x5,0x30,0x5d,\n  0x4,0x30,0x36, 0x6,0x3c,0x5b, 0x5,0x30,0x65, 0x5,0x30,0x66,\n  0x5,0x30,0x5e, 0x5,0x30,0x63, 0x5,0x30,0x5f, 0x4,0x30,0x35,\n  0x6,0x3c,0x5d, 0x4,0x30,0x37, 0x6,0x3c,0x5f, 0x6,0x63,0x3d,\n  0x6,0x63,0x3f, 0x6,0x63,0x40, 0x6,0x3c,0x5c, 0x6,0x3c,0x5e,\n  0x6,0x3c,0x5a, 0x5,0x30,0x62, 0x5,0x30,0x64, 0x5,0x30,0x60,\n  0x5,0x30,0x67, 0x6,0x63,0x3e, 0x6,0x3c,0x59, 0xf,0x32,0x62,\n  0xf,0x32,0x63, 0xf,0x32,0x64, 0x5,0x51,0x6e, 0x4,0x4e,0x36,\n  0x4,0x35,0x6f, 0x5,0x36,0x31, 0x5,0x36,0x30, 0x5,0x36,0x35,\n  0x5,0x36,0x2e, 0x5,0x36,0x32, 0x4,0x35,0x6d, 0x6,0x45,0x66,\n  0x5,0x36,0x34, 0x7,0x29,0x7a, 0x7,0x29,0x79, 0x6,0x45,0x68,\n  0xf,0x32,0x61, 0xf,0x38,0x76, 0xf,0x52,0x54, 0x7,0x29,0x76,\n  0x7,0x29,0x77, 0x7,0x29,0x7b, 0x7,0x29,0x78, 0x6,0x45,0x63,\n  0x6,0x45,0x65, 0x6,0x45,0x64, 0x6,0x45,0x62, 0xf,0x33,0x3c,\n  0x6,0x45,0x67, 0x5,0x36,0x2f, 0x5,0x36,0x33, 0x5,0x30,0x68,\n  0x4,0x3b,0x5f, 0x5,0x3d,0x23, 0x5,0x3c,0x7e, 0x5,0x3d,0x22,\n  0x4,0x3b,0x5d, 0x5,0x3d,0x24, 0x6,0x4f,0x64, 0x5,0x3d,0x21,\n  0x5,0x43,0x67, 0x5,0x3c,0x7d, 0x5,0x3c,0x7c, 0x6,0x4f,0x62,\n  0x6,0x4f,0x5b, 0x4,0x3b,0x5c, 0xf,0x3f,0x63, 0xf,0x3f,0x64,\n  0xf,0x3f,0x65, 0xf,0x58,0x41, 0x7,0x34,0x4e, 0x6,0x4f,0x5d,\n  0x6,0x4f,0x5c, 0x6,0x4f,0x5e, 0x6,0x4f,0x5f, 0x6,0x4f,0x60,\n  0x6,0x4f,0x61, 0xf,0x3f,0x66, 0x6,0x4f,0x63, 0x7,0x34,0x4d,\n  0x5,0x3c,0x7b, 0x7,0x3c,0x64, 0x5,0x43,0x5b, 0x5,0x43,0x60,\n  0x5,0x43,0x63, 0x5,0x43,0x5e, 0x5,0x43,0x5d, 0x4,0x41,0x35,\n  0x6,0x63,0x41, 0x5,0x43,0x5c, 0x5,0x43,0x62, 0x5,0x43,0x5f,\n  0x5,0x43,0x64, 0x5,0x43,0x66, 0x4,0x41,0x37, 0x5,0x43,0x65,\n  0x6,0x59,0x49, 0x5,0x43,0x5a, 0xf,0x45,0x6f, 0x6,0x59,0x48,\n  0x6,0x59,0x4b, 0x5,0x43,0x61, 0x4,0x47,0x6f, 0x5,0x4a,0x5d,\n  0x5,0x4a,0x5c, 0x5,0x4a,0x59, 0x5,0x4a,0x58, 0x5,0x4a,0x63,\n  0x5,0x4a,0x5f, 0x5,0x4a,0x5b, 0x6,0x63,0x46, 0x6,0x63,0x43,\n  0x6,0x63,0x42, 0x5,0x4a,0x61, 0x5,0x4a,0x62, 0x7,0x44,0x22,\n  0x7,0x44,0x24, 0x7,0x44,0x23, 0x7,0x44,0x25, 0x6,0x63,0x45,\n  0x5,0x4a,0x57, 0x4,0x47,0x72, 0x6,0x63,0x44, 0x5,0x65,0x3e,\n  0x5,0x4a,0x5a, 0x5,0x4a,0x5e, 0x5,0x4a,0x64, 0x4,0x4e,0x38,\n  0x7,0x4b,0x23, 0x5,0x51,0x72, 0x7,0x2a,0x21, 0x4,0x4e,0x37,\n  0x5,0x51,0x73, 0x4,0x4e,0x39, 0x5,0x59,0x28, 0x5,0x51,0x6f,\n  0x5,0x51,0x70, 0x7,0x29,0x7e, 0x7,0x2a,0x22, 0x4,0x4e,0x3a,\n  0xf,0x52,0x53, 0xf,0x52,0x55, 0xf,0x52,0x56, 0x7,0x4b,0x26,\n  0x7,0x4b,0x24, 0x7,0x2a,0x23, 0x7,0x2a,0x25, 0x7,0x2a,0x26,\n  0x7,0x2a,0x24, 0x7,0x29,0x7c, 0x7,0x29,0x7d, 0x5,0x51,0x74,\n  0x7,0x34,0x50, 0x5,0x51,0x71, 0x7,0x4b,0x25, 0x5,0x6e,0x2a,\n  0x5,0x59,0x25, 0x5,0x59,0x26, 0x7,0x50,0x5c, 0x4,0x54,0x38,\n  0x7,0x34,0x4f, 0x5,0x59,0x21, 0x5,0x59,0x24, 0x7,0x34,0x52,\n  0x5,0x59,0x22, 0x5,0x59,0x23, 0x4,0x54,0x39, 0x7,0x34,0x51,\n  0xf,0x58,0x40, 0x7,0x50,0x5d, 0x7,0x50,0x5b, 0x5,0x6e,0x2b,\n  0x7,0x3c,0x65, 0x7,0x3c,0x69, 0x5,0x5f,0x38, 0x4,0x59,0x3b,\n  0x5,0x5f,0x39, 0x7,0x55,0x52, 0x7,0x55,0x53, 0x7,0x55,0x54,\n  0x7,0x3c,0x67, 0x7,0x3c,0x6a, 0x7,0x3c,0x66, 0x5,0x5f,0x3b,\n  0x5,0x5f,0x3a, 0x7,0x55,0x55, 0x7,0x3c,0x68, 0x5,0x65,0x40,\n  0x7,0x44,0x26, 0x7,0x44,0x27, 0x5,0x65,0x41, 0x5,0x6a,0x25,\n  0x5,0x65,0x44, 0x7,0x44,0x29, 0x7,0x44,0x28, 0x5,0x65,0x42,\n  0x5,0x65,0x43, 0x7,0x59,0x5c, 0x5,0x65,0x3f, 0x7,0x44,0x2a,\n  0x7,0x4b,0x28, 0x7,0x44,0x2b, 0x5,0x6a,0x24, 0x7,0x4b,0x27,\n  0x5,0x6a,0x23, 0x7,0x4b,0x2a, 0x7,0x4b,0x29, 0x4,0x61,0x60,\n  0x5,0x59,0x27, 0x5,0x6a,0x22, 0x4,0x64,0x64, 0x5,0x6e,0x2c,\n  0x7,0x50,0x5f, 0x7,0x50,0x61, 0x7,0x50,0x5e, 0x7,0x50,0x60,\n  0x4,0x67,0x56, 0xf,0x68,0x59, 0x7,0x55,0x56, 0x7,0x55,0x57,\n  0x7,0x59,0x5d, 0x7,0x55,0x58, 0xf,0x68,0x5a, 0x7,0x5d,0x26,\n  0x7,0x5f,0x6b, 0x7,0x5f,0x6c, 0x5,0x7b,0x4b, 0x7,0x63,0x78,\n  0x4,0x30,0x39, 0xf,0x32,0x65, 0x6,0x3c,0x60, 0x5,0x36,0x38,\n  0x5,0x36,0x37, 0x6,0x45,0x72, 0x6,0x45,0x6e, 0x5,0x36,0x39,\n  0x4,0x35,0x76, 0x6,0x45,0x6c, 0x6,0x45,0x73, 0x6,0x45,0x69,\n  0x4,0x35,0x77, 0x5,0x36,0x3a, 0x6,0x45,0x70, 0x6,0x45,0x6f,\n  0x6,0x45,0x6a, 0x6,0x45,0x6b, 0xf,0x38,0x77, 0x6,0x45,0x71,\n  0x4,0x35,0x79, 0x6,0x45,0x6d, 0x6,0x45,0x74, 0x6,0x4f,0x6b,\n  0x5,0x3d,0x25, 0x5,0x3d,0x26, 0x4,0x3b,0x65, 0x6,0x4f,0x69,\n  0x5,0x43,0x6a, 0x4,0x3b,0x62, 0x4,0x3b,0x63, 0x6,0x4f,0x6a,\n  0x6,0x4f,0x66, 0x6,0x4f,0x65, 0x4,0x3b,0x61, 0x6,0x4f,0x67,\n  0x6,0x4f,0x68, 0xf,0x3f,0x68, 0xf,0x3f,0x69, 0xf,0x3f,0x6a,\n  0xf,0x3f,0x6b, 0x6,0x4f,0x6c, 0x5,0x43,0x69, 0x5,0x43,0x6c,\n  0x5,0x43,0x68, 0x6,0x59,0x4e, 0x6,0x59,0x4d, 0x5,0x43,0x6b,\n  0x6,0x63,0x4a, 0x5,0x4a,0x66, 0x5,0x4a,0x65, 0xf,0x4c,0x73,\n  0xf,0x4c,0x74, 0xf,0x4c,0x75, 0xf,0x4c,0x77, 0x6,0x63,0x49,\n  0x6,0x63,0x48, 0xf,0x4c,0x78, 0x6,0x63,0x47, 0x7,0x2a,0x28,\n  0x5,0x51,0x78, 0x7,0x2a,0x2c, 0x5,0x51,0x79, 0x5,0x51,0x75,\n  0x7,0x2a,0x30, 0x5,0x51,0x76, 0x7,0x2a,0x2f, 0x7,0x2a,0x2e,\n  0x7,0x2a,0x2d, 0x7,0x2a,0x29, 0x7,0x2a,0x27, 0x5,0x51,0x77,\n  0xf,0x4c,0x76, 0xf,0x52,0x58, 0xf,0x52,0x59, 0x7,0x2a,0x2a,\n  0x7,0x2a,0x2b, 0x7,0x2a,0x32, 0x7,0x2a,0x31, 0x7,0x34,0x56,\n  0x7,0x34,0x55, 0x5,0x59,0x29, 0x7,0x34,0x58, 0x5,0x59,0x2c,\n  0x7,0x34,0x5a, 0x4,0x54,0x41, 0x7,0x34,0x5f, 0x4,0x54,0x3e,\n  0x4,0x54,0x3f, 0x7,0x34,0x5e, 0x5,0x59,0x2a, 0x7,0x34,0x57,\n  0x7,0x34,0x5d, 0x7,0x34,0x5c, 0x5,0x59,0x2b, 0xf,0x58,0x42,\n  0xf,0x58,0x43, 0x7,0x34,0x59, 0x7,0x34,0x5b, 0x7,0x34,0x53,\n  0x7,0x34,0x60, 0x5,0x5f,0x41, 0x5,0x5f,0x3f, 0x5,0x5f,0x40,\n  0x5,0x5f,0x43, 0x4,0x59,0x40, 0x7,0x3c,0x6c, 0x5,0x5f,0x42,\n  0x4,0x59,0x3e, 0x7,0x3c,0x6e, 0x5,0x5f,0x3e, 0x7,0x3c,0x74,\n  0x5,0x5f,0x44, 0x7,0x3c,0x6d, 0x7,0x3c,0x73, 0xf,0x5d,0x2a,\n  0xf,0x5d,0x2b, 0xf,0x5d,0x2c, 0x7,0x3c,0x6f, 0x7,0x3c,0x71,\n  0x7,0x3c,0x72, 0x5,0x5f,0x3d, 0x5,0x65,0x46, 0x5,0x65,0x47,\n  0x5,0x65,0x49, 0x7,0x44,0x33, 0x7,0x44,0x2f, 0x4,0x5e,0x23,\n  0x7,0x44,0x2c, 0x5,0x65,0x48, 0x4,0x5e,0x26, 0x5,0x65,0x4a,\n  0x7,0x3c,0x75, 0x4,0x5e,0x25, 0x7,0x44,0x32, 0x5,0x65,0x4b,\n  0x7,0x44,0x35, 0x7,0x44,0x36, 0x7,0x44,0x2d, 0xf,0x61,0x2e,\n  0x7,0x44,0x31, 0x7,0x44,0x2e, 0x5,0x65,0x4c, 0x7,0x44,0x30,\n  0x7,0x4b,0x2f, 0x7,0x4b,0x2c, 0x5,0x6a,0x2e, 0x5,0x6a,0x2b,\n  0x5,0x6a,0x27, 0x5,0x6a,0x2a, 0x5,0x6a,0x29, 0x5,0x6a,0x2f,\n  0x5,0x6a,0x2c, 0x5,0x6a,0x28, 0x5,0x6a,0x2d, 0x7,0x4b,0x2d,\n  0x7,0x4b,0x2e, 0x7,0x4b,0x30, 0x7,0x4b,0x2b, 0x7,0x44,0x34,\n  0x5,0x6a,0x30, 0x5,0x6a,0x26, 0x7,0x50,0x62, 0x5,0x6e,0x31,\n  0x5,0x6e,0x2e, 0x5,0x6e,0x2f, 0x5,0x6e,0x2d, 0x5,0x6e,0x30,\n  0x7,0x50,0x63, 0x7,0x50,0x64, 0xf,0x66,0x4e, 0x7,0x50,0x65,\n  0x7,0x50,0x67, 0x7,0x50,0x66, 0x4,0x67,0x59, 0x4,0x67,0x57,\n  0x4,0x67,0x58, 0x5,0x71,0x53, 0x7,0x55,0x5a, 0xf,0x68,0x5b,\n  0x7,0x55,0x59, 0x7,0x59,0x5e, 0x7,0x59,0x5f, 0x7,0x59,0x62,\n  0x5,0x74,0x53, 0x7,0x59,0x61, 0x7,0x59,0x60, 0xf,0x69,0x7d,\n  0x7,0x5d,0x27, 0x7,0x5d,0x29, 0x5,0x76,0x5a, 0x7,0x5d,0x2b,\n  0x7,0x5d,0x2a, 0x5,0x76,0x5b, 0x7,0x5d,0x28, 0xf,0x6a,0x7a,\n  0x5,0x78,0x3f, 0x4,0x6c,0x2f, 0x7,0x5f,0x6d, 0x7,0x5f,0x6e,\n  0x5,0x78,0x3e, 0x7,0x62,0x6c, 0x5,0x7a,0x7b, 0x7,0x63,0x7a,\n  0x7,0x63,0x79, 0x7,0x64,0x66, 0x7,0x64,0x65, 0x7,0x65,0x78,\n  0x7,0x65,0x79, 0x6,0x34,0x6e, 0x5,0x3d,0x27, 0x5,0x36,0x3b,\n  0x6,0x63,0x4b, 0x6,0x63,0x4c, 0x5,0x51,0x7a, 0x7,0x2a,0x34,\n  0x7,0x2a,0x33, 0x5,0x59,0x2d, 0x7,0x34,0x61, 0x5,0x5f,0x45,\n  0xf,0x5d,0x2d, 0x7,0x44,0x37, 0xf,0x66,0x4f, 0xf,0x68,0x5c,\n  0x5,0x74,0x54, 0x5,0x36,0x3c, 0x6,0x3c,0x61, 0x6,0x45,0x75,\n  0x6,0x4f,0x6e, 0x5,0x3d,0x29, 0x5,0x3d,0x28, 0xf,0x45,0x70,\n  0x6,0x63,0x4d, 0x7,0x2a,0x35, 0x5,0x5f,0x46, 0xf,0x61,0x2f,\n  0x5,0x65,0x4d, 0xf,0x68,0x5d, 0x5,0x71,0x54, 0x7,0x55,0x5b,\n  0x6,0x3c,0x64, 0xf,0x32,0x66, 0x6,0x3c,0x62, 0x5,0x36,0x3d,\n  0x6,0x45,0x76, 0x6,0x45,0x77, 0xf,0x38,0x78, 0x6,0x4f,0x73,\n  0x6,0x4f,0x74, 0x6,0x4f,0x75, 0x6,0x4f,0x71, 0x6,0x4f,0x72,\n  0x6,0x4f,0x78, 0x6,0x4f,0x76, 0x6,0x4f,0x70, 0x6,0x4f,0x79,\n  0xf,0x3f,0x6c, 0xf,0x3f,0x6d, 0xf,0x3f,0x6e, 0xf,0x3f,0x6f,\n  0xf,0x3f,0x72, 0xf,0x3f,0x74, 0xf,0x3f,0x71, 0x6,0x4f,0x77,\n  0xf,0x3f,0x70, 0x4,0x41,0x47, 0x5,0x43,0x6e, 0x4,0x41,0x45,\n  0x4,0x41,0x44, 0x6,0x59,0x53, 0x6,0x59,0x4f, 0xf,0x45,0x71,\n  0xf,0x45,0x75, 0xf,0x45,0x76, 0xf,0x45,0x77, 0xf,0x45,0x78,\n  0x6,0x59,0x55, 0x6,0x59,0x51, 0x6,0x59,0x52, 0xf,0x45,0x79,\n  0x6,0x59,0x54, 0x6,0x59,0x50, 0xf,0x45,0x74, 0x5,0x4a,0x67,\n  0x5,0x4a,0x68, 0x6,0x63,0x52, 0x5,0x4a,0x69, 0xf,0x4c,0x68,\n  0xf,0x4c,0x79, 0xf,0x4c,0x7b, 0xf,0x4c,0x7c, 0xf,0x4c,0x7d,\n  0xf,0x4d,0x21, 0xf,0x4d,0x23, 0xf,0x4d,0x24, 0xf,0x4d,0x25,\n  0xf,0x4d,0x28, 0xf,0x4d,0x29, 0x6,0x63,0x4e, 0x4,0x47,0x7a,\n  0x6,0x63,0x50, 0x6,0x63,0x51, 0xf,0x4d,0x2a, 0x6,0x63,0x54,\n  0xf,0x4c,0x7a, 0x6,0x63,0x55, 0xf,0x4d,0x2b, 0xf,0x4d,0x26,\n  0xf,0x4c,0x7e, 0x7,0x2a,0x3a, 0x4,0x4e,0x42, 0x5,0x51,0x7e,\n  0x7,0x2a,0x41, 0x7,0x2a,0x3b, 0x7,0x2a,0x40, 0x7,0x2a,0x39,\n  0x5,0x51,0x7d, 0x7,0x2a,0x43, 0x7,0x2a,0x44, 0x7,0x2a,0x3d,\n  0x5,0x51,0x7b, 0x7,0x2a,0x37, 0xf,0x52,0x5b, 0xf,0x52,0x5d,\n  0xf,0x52,0x5f, 0xf,0x52,0x60, 0xf,0x52,0x63, 0xf,0x52,0x64,\n  0xf,0x52,0x65, 0xf,0x52,0x67, 0xf,0x52,0x68, 0xf,0x52,0x69,\n  0xf,0x52,0x6a, 0xf,0x52,0x6c, 0xf,0x52,0x6d, 0x7,0x2a,0x42,\n  0x7,0x2a,0x3c, 0x7,0x2a,0x3f, 0x7,0x2a,0x45, 0xf,0x52,0x5e,\n  0x7,0x2a,0x36, 0x5,0x51,0x7c, 0xf,0x52,0x62, 0xf,0x52,0x66,\n  0xf,0x52,0x5a, 0x5,0x59,0x34, 0x5,0x59,0x37, 0x5,0x59,0x32,\n  0x4,0x54,0x47, 0x5,0x59,0x2e, 0x5,0x59,0x30, 0x7,0x34,0x65,\n  0x7,0x34,0x64, 0x7,0x34,0x6b, 0x7,0x34,0x69, 0x7,0x34,0x67,\n  0x5,0x59,0x36, 0x4,0x54,0x44, 0x7,0x34,0x62, 0x7,0x34,0x6a,\n  0x7,0x34,0x68, 0x5,0x59,0x2f, 0x7,0x34,0x66, 0xf,0x52,0x5c,\n  0x5,0x59,0x33, 0xf,0x58,0x44, 0xf,0x58,0x46, 0xf,0x58,0x47,\n  0xf,0x58,0x49, 0xf,0x58,0x4a, 0xf,0x58,0x4b, 0xf,0x58,0x4d,\n  0xf,0x58,0x4e, 0xf,0x58,0x4f, 0xf,0x58,0x51, 0xf,0x58,0x53,\n  0xf,0x58,0x54, 0xf,0x58,0x56, 0xf,0x58,0x57, 0xf,0x58,0x5a,\n  0xf,0x58,0x5c, 0xf,0x58,0x5d, 0xf,0x58,0x5e, 0xf,0x58,0x60,\n  0xf,0x58,0x61, 0xf,0x58,0x63, 0xf,0x58,0x64, 0xf,0x58,0x50,\n  0xf,0x58,0x52, 0xf,0x58,0x5f, 0xf,0x58,0x45, 0xf,0x58,0x58,\n  0x5,0x59,0x38, 0x5,0x59,0x31, 0x5,0x5f,0x48, 0x5,0x5f,0x49,\n  0x7,0x3c,0x79, 0x4,0x59,0x43, 0x5,0x5f,0x4c, 0x5,0x5f,0x4b,\n  0x7,0x3c,0x7c, 0x5,0x59,0x35, 0x5,0x5f,0x47, 0x7,0x3c,0x7a,\n  0x5,0x5f,0x4a, 0x5,0x5f,0x4f, 0x7,0x3c,0x7e, 0x7,0x3d,0x24,\n  0x7,0x3d,0x21, 0x7,0x3d,0x25, 0xf,0x5d,0x2f, 0xf,0x5d,0x30,\n  0xf,0x5d,0x34, 0xf,0x5d,0x35, 0xf,0x5d,0x36, 0xf,0x5d,0x37,\n  0xf,0x5d,0x3a, 0xf,0x5d,0x3b, 0xf,0x5d,0x3c, 0xf,0x5d,0x3d,\n  0xf,0x5d,0x3f, 0xf,0x5d,0x40, 0xf,0x5d,0x42, 0xf,0x5d,0x43,\n  0xf,0x5d,0x44, 0xf,0x5d,0x45, 0xf,0x5d,0x46, 0xf,0x5d,0x47,\n  0xf,0x5d,0x48, 0xf,0x5d,0x49, 0xf,0x5d,0x4b, 0xf,0x5d,0x4e,\n  0xf,0x5d,0x4f, 0x7,0x3c,0x7d, 0x7,0x3d,0x22, 0x7,0x3c,0x78,\n  0x7,0x3d,0x23, 0x4,0x59,0x48, 0xf,0x5d,0x4a, 0xf,0x5d,0x38,\n  0xf,0x5d,0x33, 0xf,0x5d,0x31, 0x5,0x5f,0x4e, 0x5,0x5f,0x4d,\n  0xf,0x5d,0x2e, 0x5,0x65,0x51, 0x4,0x5e,0x2d, 0x4,0x5e,0x2e,\n  0x5,0x65,0x52, 0x4,0x5e,0x28, 0x4,0x5e,0x2a, 0x7,0x44,0x38,\n  0x5,0x65,0x50, 0x5,0x65,0x4e, 0x5,0x6a,0x31, 0x7,0x44,0x3a,\n  0x5,0x65,0x53, 0x4,0x5e,0x30, 0x7,0x44,0x40, 0x7,0x44,0x3f,\n  0x5,0x65,0x54, 0x5,0x65,0x55, 0x7,0x44,0x41, 0xf,0x61,0x31,\n  0xf,0x61,0x32, 0xf,0x61,0x34, 0xf,0x61,0x36, 0xf,0x61,0x37,\n  0xf,0x61,0x38, 0xf,0x61,0x3a, 0xf,0x61,0x3c, 0xf,0x61,0x3d,\n  0xf,0x61,0x3e, 0xf,0x61,0x40, 0xf,0x61,0x41, 0xf,0x61,0x42,\n  0xf,0x61,0x44, 0xf,0x61,0x45, 0xf,0x61,0x46, 0x7,0x44,0x3b,\n  0x7,0x44,0x3c, 0x7,0x44,0x3e, 0x7,0x44,0x3d, 0xf,0x61,0x30,\n  0xf,0x61,0x39, 0xf,0x61,0x35, 0xf,0x5f,0x5d, 0x4,0x61,0x6b,\n  0x7,0x4b,0x33, 0x7,0x4b,0x37, 0x5,0x6a,0x32, 0x7,0x4b,0x34,\n  0x5,0x6a,0x34, 0x7,0x4b,0x32, 0x7,0x4b,0x3a, 0x7,0x4b,0x36,\n  0x7,0x4b,0x39, 0x7,0x4b,0x3b, 0xf,0x64,0x31, 0xf,0x64,0x32,\n  0xf,0x64,0x33, 0xf,0x64,0x35, 0xf,0x64,0x36, 0xf,0x64,0x38,\n  0xf,0x64,0x39, 0xf,0x64,0x3a, 0xf,0x64,0x3b, 0xf,0x64,0x3c,\n  0xf,0x64,0x3d, 0xf,0x64,0x3f, 0xf,0x64,0x40, 0xf,0x64,0x41,\n  0xf,0x64,0x42, 0xf,0x64,0x43, 0xf,0x64,0x44, 0xf,0x64,0x45,\n  0x7,0x4b,0x3c, 0x7,0x4b,0x35, 0x7,0x4b,0x38, 0x4,0x61,0x6a,\n  0x7,0x4b,0x31, 0x5,0x65,0x56, 0xf,0x64,0x3e, 0x4,0x64,0x68,\n  0x7,0x50,0x6d, 0x7,0x50,0x6e, 0x5,0x6e,0x38, 0x7,0x50,0x72,\n  0x5,0x6e,0x33, 0x4,0x64,0x6a, 0x5,0x6e,0x36, 0x5,0x6e,0x32,\n  0x7,0x50,0x70, 0x7,0x50,0x68, 0x7,0x50,0x69, 0x5,0x6e,0x37,\n  0x4,0x64,0x6e, 0x7,0x50,0x71, 0x5,0x6e,0x34, 0xf,0x66,0x50,\n  0xf,0x66,0x51, 0xf,0x66,0x53, 0xf,0x66,0x54, 0xf,0x66,0x55,\n  0xf,0x66,0x56, 0xf,0x66,0x58, 0xf,0x66,0x59, 0xf,0x66,0x5a,\n  0xf,0x66,0x5b, 0xf,0x66,0x5d, 0xf,0x66,0x5f, 0xf,0x66,0x60,\n  0xf,0x66,0x61, 0xf,0x66,0x62, 0xf,0x66,0x63, 0xf,0x66,0x64,\n  0xf,0x66,0x66, 0xf,0x66,0x68, 0xf,0x66,0x6a, 0xf,0x66,0x6b,\n  0xf,0x66,0x6c, 0xf,0x66,0x6d, 0xf,0x66,0x6e, 0xf,0x66,0x6f,\n  0x7,0x50,0x6c, 0x7,0x50,0x6f, 0xf,0x66,0x52, 0xf,0x66,0x5c,\n  0xf,0x66,0x67, 0x7,0x50,0x6a, 0x7,0x55,0x62, 0x4,0x67,0x5e,\n  0x7,0x55,0x67, 0x7,0x55,0x61, 0x7,0x55,0x5c, 0x4,0x67,0x60,\n  0x4,0x67,0x5d, 0x7,0x55,0x60, 0x7,0x55,0x63, 0x7,0x55,0x69,\n  0x7,0x55,0x5e, 0xf,0x68,0x5e, 0xf,0x68,0x5f, 0xf,0x68,0x60,\n  0xf,0x68,0x61, 0xf,0x68,0x62, 0xf,0x68,0x63, 0xf,0x68,0x64,\n  0xf,0x68,0x65, 0xf,0x68,0x66, 0xf,0x68,0x67, 0xf,0x68,0x68,\n  0xf,0x68,0x69, 0xf,0x68,0x6b, 0xf,0x68,0x6c, 0xf,0x68,0x6d,\n  0xf,0x68,0x6e, 0xf,0x68,0x6f, 0x7,0x55,0x5f, 0x7,0x55,0x64,\n  0x7,0x55,0x65, 0x7,0x55,0x66, 0x7,0x55,0x5d, 0xf,0x68,0x6a,\n  0x5,0x74,0x57, 0x7,0x59,0x6b, 0x7,0x59,0x6a, 0x7,0x5d,0x30,\n  0x7,0x59,0x66, 0x7,0x59,0x64, 0xf,0x69,0x7e, 0xf,0x6a,0x21,\n  0xf,0x6a,0x22, 0xf,0x6a,0x23, 0xf,0x6a,0x24, 0xf,0x6a,0x25,\n  0xf,0x6a,0x26, 0xf,0x6a,0x27, 0xf,0x6a,0x28, 0xf,0x6a,0x29,\n  0xf,0x6a,0x2a, 0xf,0x6a,0x2b, 0x7,0x59,0x63, 0x7,0x59,0x65,\n  0x5,0x74,0x56, 0x5,0x76,0x5e, 0x4,0x6b,0x28, 0x5,0x76,0x5c,\n  0xf,0x6b,0x2f, 0x7,0x5d,0x2f, 0x7,0x5d,0x2d, 0x7,0x59,0x69,\n  0x7,0x5d,0x2c, 0xf,0x6a,0x7c, 0xf,0x6a,0x7d, 0xf,0x6b,0x23,\n  0xf,0x6b,0x24, 0xf,0x6b,0x25, 0xf,0x6b,0x26, 0xf,0x6b,0x29,\n  0xf,0x6b,0x2a, 0xf,0x6b,0x2b, 0xf,0x6b,0x2c, 0xf,0x6b,0x2d,\n  0xf,0x6b,0x2e, 0x7,0x5d,0x2e, 0x7,0x5d,0x31, 0xf,0x6b,0x21,\n  0xf,0x6a,0x7e, 0xf,0x6b,0x27, 0x5,0x78,0x40, 0x7,0x5f,0x70,\n  0x7,0x5f,0x71, 0x7,0x5f,0x72, 0x7,0x5f,0x6f, 0x7,0x5f,0x73,\n  0xf,0x6b,0x68, 0xf,0x6b,0x69, 0xf,0x6b,0x6a, 0xf,0x6b,0x6b,\n  0xf,0x6b,0x6c, 0x4,0x6d,0x63, 0x7,0x61,0x57, 0x7,0x61,0x58,\n  0xf,0x6b,0x6d, 0xf,0x6c,0x3c, 0xf,0x6c,0x3d, 0x7,0x61,0x56,\n  0x7,0x62,0x72, 0x7,0x62,0x6d, 0x7,0x62,0x6e, 0x7,0x62,0x74,\n  0x7,0x62,0x70, 0x7,0x62,0x6f, 0x5,0x7a,0x40, 0x7,0x62,0x73,\n  0x7,0x62,0x71, 0x7,0x62,0x75, 0xf,0x6c,0x52, 0xf,0x6c,0x53,\n  0xf,0x6c,0x54, 0xf,0x6c,0x55, 0xf,0x6c,0x56, 0xf,0x6c,0x57,\n  0xf,0x6c,0x58, 0xf,0x6c,0x40, 0x5,0x7a,0x41, 0x5,0x7a,0x7c,\n  0x7,0x63,0x7d, 0x7,0x63,0x7b, 0xf,0x6c,0x6f, 0x7,0x63,0x7c,\n  0xf,0x6d,0x23, 0x7,0x64,0x68, 0xf,0x6d,0x21, 0x7,0x64,0x67,\n  0x7,0x64,0x69, 0xf,0x6d,0x22, 0xf,0x6c,0x3e, 0x7,0x65,0x48,\n  0x7,0x65,0x49, 0xf,0x6d,0x29, 0x5,0x7c,0x21, 0xf,0x6d,0x35,\n  0xf,0x6d,0x38, 0xf,0x6d,0x39, 0x6,0x2e,0x44, 0x6,0x29,0x34,\n  0x5,0x2b,0x60, 0x5,0x36,0x3f, 0x6,0x45,0x7b, 0x5,0x36,0x3e,\n  0x5,0x36,0x40, 0x6,0x45,0x7a, 0xf,0x38,0x79, 0x6,0x45,0x79,\n  0x6,0x45,0x78, 0x5,0x3d,0x2a, 0x5,0x3d,0x2b, 0x4,0x3b,0x68,\n  0x6,0x4f,0x7a, 0x6,0x4f,0x7b, 0xf,0x3f,0x75, 0x6,0x59,0x59,\n  0x6,0x59,0x58, 0x4,0x41,0x4a, 0x6,0x59,0x56, 0x6,0x59,0x57,\n  0xf,0x45,0x7a, 0x5,0x43,0x70, 0x5,0x43,0x6f, 0x5,0x4a,0x6a,\n  0x4,0x47,0x7c, 0x6,0x63,0x56, 0x6,0x63,0x57, 0x5,0x4a,0x6b,\n  0x5,0x52,0x21, 0x5,0x52,0x23, 0x5,0x59,0x39, 0x5,0x52,0x22,\n  0x5,0x52,0x24, 0x5,0x52,0x25, 0xf,0x58,0x65, 0x5,0x59,0x3b,\n  0x7,0x34,0x6e, 0x5,0x59,0x3a, 0x7,0x3d,0x26, 0x7,0x34,0x6d,\n  0x7,0x34,0x70, 0x7,0x34,0x6c, 0x7,0x3d,0x29, 0x4,0x59,0x4a,\n  0x5,0x5f,0x50, 0x4,0x59,0x4b, 0x7,0x3d,0x2a, 0x7,0x3d,0x28,\n  0x7,0x3d,0x27, 0x7,0x44,0x43, 0x5,0x65,0x58, 0x7,0x44,0x42,\n  0x5,0x65,0x57, 0x5,0x6a,0x38, 0x5,0x6a,0x36, 0x5,0x6a,0x35,\n  0x5,0x6a,0x37, 0x5,0x6e,0x39, 0x7,0x50,0x73, 0x7,0x50,0x74,\n  0x4,0x67,0x64, 0x7,0x55,0x6a, 0x7,0x59,0x6d, 0x7,0x59,0x6e,\n  0x7,0x59,0x6c, 0x5,0x76,0x61, 0x5,0x76,0x60, 0x5,0x78,0x41,\n  0x7,0x5f,0x74, 0x7,0x62,0x76, 0x7,0x64,0x6a, 0x5,0x2b,0x61,\n  0x5,0x30,0x6a, 0x5,0x30,0x6b, 0x5,0x30,0x69, 0xf,0x32,0x67,\n  0x6,0x3c,0x66, 0x5,0x36,0x42, 0x5,0x36,0x41, 0xf,0x38,0x7a,\n  0xf,0x38,0x7b, 0x6,0x45,0x7c, 0x5,0x3d,0x33, 0x5,0x3d,0x31,\n  0x5,0x3d,0x2f, 0x4,0x3b,0x6a, 0x5,0x3d,0x30, 0x4,0x3b,0x6c,\n  0x3,0x3f,0x6d, 0x5,0x3d,0x2c, 0x5,0x3d,0x2d, 0x5,0x3d,0x2e,\n  0x6,0x4f,0x7e, 0x6,0x50,0x21, 0x5,0x3d,0x32, 0x6,0x4f,0x7c,\n  0xf,0x3f,0x78, 0xf,0x3f,0x79, 0xf,0x3f,0x7a, 0xf,0x3f,0x7b,\n  0xf,0x3f,0x7c, 0xf,0x3f,0x7d, 0xf,0x40,0x21, 0x6,0x4f,0x7d,\n  0x4,0x3b,0x69, 0x4,0x41,0x4c, 0x6,0x59,0x5e, 0x4,0x41,0x52,\n  0x4,0x41,0x4d, 0x4,0x41,0x4b, 0xf,0x45,0x7e, 0x6,0x59,0x5d,\n  0x5,0x43,0x74, 0x5,0x43,0x71, 0x5,0x43,0x73, 0x5,0x43,0x72,\n  0x6,0x59,0x5b, 0x4,0x41,0x51, 0x4,0x41,0x4f, 0x6,0x59,0x5c,\n  0x6,0x59,0x5a, 0xf,0x45,0x7d, 0xf,0x46,0x21, 0x5,0x4a,0x73,\n  0x5,0x4a,0x6f, 0x5,0x4a,0x71, 0x4,0x47,0x7e, 0x5,0x4a,0x6d,\n  0x4,0x48,0x21, 0x5,0x4a,0x74, 0x6,0x63,0x5a, 0x5,0x4a,0x70,\n  0x5,0x4a,0x75, 0x4,0x47,0x7d, 0x5,0x4a,0x72, 0x5,0x4a,0x76,\n  0x6,0x63,0x59, 0x6,0x63,0x5b, 0x6,0x63,0x5c, 0x5,0x4a,0x6c,\n  0x7,0x2a,0x48, 0x5,0x52,0x2d, 0x5,0x52,0x28, 0x7,0x2a,0x4d,\n  0x5,0x52,0x2a, 0x5,0x52,0x27, 0x7,0x2a,0x4e, 0x4,0x4e,0x49,\n  0x5,0x52,0x2c, 0x5,0x52,0x29, 0x7,0x2a,0x4c, 0xf,0x52,0x6e,\n  0xf,0x52,0x6f, 0xf,0x52,0x71, 0x7,0x2a,0x47, 0x7,0x2a,0x49,\n  0x7,0x2a,0x4a, 0x7,0x2a,0x4b, 0x5,0x52,0x26, 0x5,0x52,0x2b,\n  0x5,0x52,0x2e, 0xf,0x52,0x70, 0x4,0x54,0x50, 0x4,0x54,0x4d,\n  0x5,0x59,0x3d, 0x5,0x59,0x40, 0x7,0x34,0x72, 0x5,0x59,0x3c,\n  0x5,0x59,0x3e, 0x5,0x59,0x3f, 0x7,0x34,0x75, 0x7,0x34,0x77,\n  0x7,0x34,0x79, 0xf,0x58,0x66, 0xf,0x58,0x67, 0xf,0x58,0x68,\n  0x7,0x34,0x74, 0x7,0x34,0x78, 0x7,0x34,0x76, 0x4,0x54,0x4e,\n  0x4,0x59,0x53, 0x4,0x59,0x51, 0x5,0x5f,0x54, 0x7,0x3d,0x2b,\n  0x5,0x5f,0x51, 0x5,0x5f,0x53, 0x5,0x5f,0x55, 0x5,0x5f,0x52,\n  0x7,0x3d,0x2d, 0x4,0x59,0x50, 0x7,0x3d,0x2c, 0x4,0x59,0x4c,\n  0x7,0x3d,0x2e, 0xf,0x5d,0x50, 0x7,0x3d,0x2f, 0x7,0x3d,0x30,\n  0x7,0x3d,0x31, 0x5,0x65,0x5f, 0x5,0x65,0x5e, 0x5,0x65,0x5a,\n  0x4,0x5e,0x33, 0x7,0x44,0x44, 0x5,0x65,0x5b, 0x5,0x65,0x61,\n  0x5,0x65,0x60, 0x7,0x44,0x46, 0x5,0x65,0x5d, 0x5,0x65,0x59,\n  0x5,0x65,0x5c, 0xf,0x61,0x47, 0xf,0x61,0x48, 0xf,0x61,0x49,\n  0xf,0x61,0x4c, 0xf,0x61,0x4b, 0x7,0x44,0x45, 0x7,0x44,0x47,\n  0x5,0x6a,0x39, 0x7,0x4b,0x3e, 0x7,0x4b,0x3f, 0x4,0x61,0x6d,\n  0x5,0x6a,0x3a, 0x7,0x4b,0x3d, 0x4,0x61,0x6e, 0xf,0x64,0x46,\n  0xf,0x64,0x47, 0xf,0x64,0x48, 0xf,0x64,0x49, 0xf,0x64,0x4a,\n  0x4,0x64,0x70, 0x5,0x6e,0x3f, 0x5,0x6e,0x3a, 0x5,0x6e,0x3d,\n  0x5,0x6e,0x3c, 0x5,0x6e,0x3e, 0x5,0x6e,0x40, 0x4,0x64,0x72,\n  0x7,0x50,0x78, 0x5,0x6a,0x3b, 0x7,0x50,0x75, 0xf,0x66,0x70,\n  0xf,0x66,0x71, 0x7,0x50,0x76, 0x5,0x6e,0x3b, 0x7,0x50,0x77,\n  0x5,0x71,0x5a, 0x5,0x6e,0x41, 0x4,0x67,0x65, 0x5,0x71,0x59,\n  0x5,0x71,0x57, 0xf,0x68,0x70, 0xf,0x68,0x71, 0xf,0x68,0x73,\n  0xf,0x68,0x74, 0xf,0x68,0x75, 0x5,0x71,0x5c, 0x5,0x71,0x58,\n  0x5,0x74,0x58, 0x7,0x55,0x6b, 0xf,0x6a,0x2f, 0x7,0x59,0x6f,\n  0xf,0x6a,0x2c, 0xf,0x6a,0x2d, 0xf,0x6a,0x2e, 0xf,0x6a,0x30,\n  0xf,0x6a,0x31, 0xf,0x6b,0x30, 0xf,0x6b,0x31, 0xf,0x6b,0x32,\n  0x7,0x5d,0x32, 0x5,0x78,0x42, 0xf,0x6b,0x6e, 0xf,0x6b,0x6f,\n  0x7,0x5f,0x76, 0x7,0x5f,0x75, 0x5,0x79,0x54, 0x4,0x6d,0x29,\n  0x4,0x6d,0x2a, 0x7,0x61,0x59, 0x7,0x62,0x77, 0x7,0x62,0x78,\n  0x5,0x7a,0x7d, 0xf,0x6d,0x2a, 0x6,0x2e,0x45, 0x5,0x22,0x22,\n  0x5,0x21,0x7e, 0x4,0x22,0x23, 0x5,0x22,0x23, 0x4,0x22,0x22,\n  0x5,0x22,0x21, 0x5,0x23,0x2e, 0x4,0x23,0x34, 0x6,0x25,0x5d,\n  0x5,0x24,0x7d, 0x4,0x25,0x2c, 0x4,0x25,0x2d, 0x5,0x24,0x7e,\n  0x5,0x24,0x7c, 0xf,0x25,0x3a, 0xf,0x25,0x3b, 0xf,0x25,0x3c,\n  0xf,0x25,0x3d, 0xf,0x25,0x3e, 0xf,0x25,0x3f, 0x5,0x27,0x75,\n  0x6,0x2e,0x47, 0x5,0x27,0x76, 0x5,0x27,0x78, 0x5,0x27,0x79,\n  0x4,0x28,0x30, 0x5,0x27,0x77, 0x6,0x2e,0x46, 0x6,0x2e,0x48,\n  0xf,0x28,0x7d, 0xf,0x28,0x7e, 0x5,0x2b,0x62, 0x6,0x34,0x70,\n  0x6,0x34,0x73, 0x4,0x2b,0x5c, 0x5,0x2b,0x65, 0x6,0x34,0x71,\n  0x6,0x63,0x5d, 0x6,0x34,0x75, 0x6,0x34,0x76, 0x6,0x34,0x77,\n  0x6,0x34,0x72, 0x5,0x2b,0x63, 0x6,0x34,0x78, 0xf,0x2d,0x5b,\n  0xf,0x2d,0x5c, 0xf,0x2d,0x5d, 0x6,0x34,0x74, 0x6,0x34,0x6f,\n  0x6,0x3c,0x69, 0x5,0x30,0x6f, 0x5,0x2b,0x66, 0x6,0x3c,0x68,\n  0x5,0x30,0x6c, 0x5,0x30,0x6e, 0x6,0x3c,0x6e, 0x6,0x3c,0x6b,\n  0x6,0x3c,0x6f, 0x5,0x30,0x6d, 0x6,0x3c,0x6a, 0x6,0x3c,0x6d,\n  0x6,0x3c,0x6c, 0xf,0x32,0x68, 0xf,0x32,0x69, 0xf,0x32,0x6a,\n  0xf,0x32,0x6b, 0xf,0x32,0x6c, 0xf,0x32,0x6d, 0xf,0x32,0x6e,\n  0x5,0x36,0x43, 0x6,0x46,0x28, 0x6,0x46,0x21, 0x4,0x35,0x7e,\n  0x4,0x36,0x22, 0x4,0x36,0x21, 0x5,0x36,0x44, 0x6,0x46,0x23,\n  0x6,0x46,0x24, 0x6,0x46,0x2b, 0x6,0x46,0x2a, 0x6,0x63,0x5e,\n  0x6,0x46,0x26, 0x6,0x46,0x22, 0x6,0x46,0x29, 0x6,0x46,0x27,\n  0x7,0x34,0x7b, 0x6,0x46,0x25, 0xf,0x38,0x7c, 0xf,0x38,0x7d,\n  0xf,0x38,0x7e, 0xf,0x39,0x21, 0xf,0x39,0x22, 0xf,0x39,0x23,\n  0xf,0x39,0x24, 0xf,0x39,0x25, 0xf,0x39,0x26, 0xf,0x39,0x27,\n  0x5,0x3d,0x38, 0x5,0x3d,0x3d, 0x5,0x3d,0x39, 0x5,0x3d,0x3a,\n  0x5,0x3d,0x3c, 0x6,0x50,0x25, 0x6,0x50,0x23, 0x5,0x3d,0x34,\n  0x5,0x3d,0x35, 0x5,0x3d,0x37, 0x6,0x50,0x24, 0x6,0x50,0x29,\n  0x7,0x3d,0x34, 0x6,0x50,0x27, 0x5,0x3d,0x3b, 0x6,0x50,0x28,\n  0x6,0x50,0x26, 0xf,0x40,0x22, 0xf,0x40,0x23, 0x7,0x3d,0x32,\n  0x5,0x3d,0x36, 0x6,0x59,0x6a, 0x5,0x43,0x7b, 0x5,0x43,0x78,\n  0x6,0x59,0x62, 0x6,0x59,0x69, 0x6,0x59,0x67, 0x5,0x43,0x7c,\n  0x5,0x43,0x79, 0x5,0x43,0x77, 0x6,0x63,0x5f, 0x6,0x59,0x63,\n  0x6,0x59,0x65, 0x5,0x43,0x7d, 0x5,0x43,0x7a, 0x6,0x59,0x66,\n  0x7,0x44,0x49, 0x6,0x59,0x64, 0x7,0x44,0x48, 0x5,0x43,0x76,\n  0x6,0x59,0x5f, 0x6,0x59,0x6b, 0x6,0x59,0x60, 0x5,0x43,0x75,\n  0x6,0x59,0x61, 0xf,0x46,0x22, 0xf,0x46,0x23, 0xf,0x46,0x24,\n  0xf,0x46,0x25, 0xf,0x46,0x26, 0xf,0x46,0x27, 0xf,0x46,0x28,\n  0xf,0x46,0x29, 0x6,0x59,0x68, 0x6,0x59,0x6c, 0x7,0x3d,0x33,\n  0x6,0x63,0x64, 0x6,0x63,0x62, 0x6,0x63,0x66, 0x4,0x48,0x27,\n  0x4,0x48,0x26, 0x5,0x52,0x2f, 0x4,0x48,0x28, 0x4,0x48,0x29,\n  0x5,0x4a,0x78, 0x6,0x63,0x63, 0x6,0x63,0x60, 0x4,0x48,0x25,\n  0x5,0x4a,0x79, 0x5,0x4a,0x7a, 0x6,0x63,0x65, 0x6,0x63,0x67,\n  0x7,0x4b,0x41, 0xf,0x4d,0x2e, 0xf,0x4d,0x2f, 0xf,0x4d,0x30,\n  0xf,0x4d,0x31, 0xf,0x4d,0x32, 0xf,0x4d,0x33, 0x6,0x63,0x61,\n  0x5,0x4a,0x77, 0x5,0x52,0x36, 0x5,0x52,0x34, 0x5,0x52,0x35,\n  0x7,0x2a,0x55, 0x5,0x52,0x38, 0x5,0x52,0x32, 0x5,0x52,0x31,\n  0x7,0x2a,0x4f, 0x5,0x52,0x33, 0x5,0x52,0x37, 0x5,0x52,0x30,\n  0x7,0x50,0x7a, 0x7,0x2a,0x53, 0x7,0x2a,0x51, 0x7,0x2a,0x50,\n  0x7,0x2a,0x52, 0xf,0x52,0x72, 0xf,0x52,0x73, 0xf,0x52,0x74,\n  0xf,0x52,0x75, 0xf,0x52,0x76, 0xf,0x52,0x77, 0x7,0x2a,0x56,\n  0x5,0x59,0x41, 0x5,0x59,0x42, 0x4,0x54,0x54, 0x7,0x34,0x7c,\n  0x5,0x59,0x44, 0x5,0x59,0x43, 0x7,0x34,0x7e, 0x7,0x50,0x79,\n  0xf,0x58,0x69, 0xf,0x58,0x6a, 0xf,0x58,0x6b, 0xf,0x58,0x6c,\n  0x5,0x6a,0x3c, 0x7,0x34,0x7d, 0x5,0x5f,0x56, 0x5,0x5f,0x57,\n  0x7,0x3d,0x36, 0x7,0x3d,0x37, 0x7,0x3d,0x35, 0x5,0x74,0x59,\n  0xf,0x5d,0x51, 0xf,0x5d,0x52, 0xf,0x5d,0x53, 0xf,0x5d,0x54,\n  0x5,0x65,0x62, 0x7,0x44,0x4c, 0x4,0x5e,0x34, 0x7,0x44,0x4a,\n  0x7,0x44,0x4b, 0xf,0x61,0x4d, 0xf,0x61,0x4e, 0xf,0x61,0x4f,\n  0xf,0x61,0x50, 0x5,0x6a,0x3d, 0x7,0x4b,0x43, 0x7,0x55,0x6c,\n  0x7,0x4b,0x45, 0xf,0x64,0x4c, 0x5,0x78,0x43, 0x7,0x4b,0x42,\n  0x7,0x4b,0x44, 0x7,0x5f,0x77, 0xf,0x66,0x72, 0xf,0x66,0x73,\n  0x7,0x51,0x72, 0x5,0x71,0x5d, 0x7,0x55,0x6e, 0x7,0x55,0x6d,\n  0x7,0x62,0x79, 0x7,0x62,0x7a, 0x7,0x59,0x70, 0x7,0x5d,0x49,\n  0x7,0x5f,0x78, 0x5,0x7a,0x7e, 0x5,0x7b,0x21, 0x7,0x66,0x37,\n  0x7,0x66,0x28, 0x6,0x59,0x6d, 0x4,0x4e,0x4b, 0x7,0x2a,0x57,\n  0xf,0x52,0x79, 0xf,0x52,0x78, 0x5,0x59,0x45, 0x7,0x35,0x21,\n  0x4,0x59,0x56, 0x7,0x44,0x4d, 0x7,0x44,0x4e, 0x5,0x6a,0x3e,\n  0x7,0x50,0x7b, 0x6,0x3c,0x70, 0x6,0x3c,0x71, 0x6,0x3c,0x72,\n  0x6,0x46,0x2c, 0x5,0x36,0x45, 0x4,0x36,0x23, 0x6,0x46,0x2e,\n  0x6,0x46,0x2d, 0x6,0x46,0x30, 0x6,0x46,0x2f, 0x4,0x3b,0x70,\n  0x6,0x50,0x2c, 0x4,0x3b,0x6e, 0x6,0x50,0x2a, 0x6,0x59,0x73,\n  0x6,0x50,0x30, 0x6,0x50,0x2e, 0x6,0x50,0x2b, 0x4,0x3b,0x71,\n  0x4,0x3b,0x6f, 0x6,0x50,0x2f, 0x6,0x50,0x2d, 0x6,0x59,0x7b,\n  0x5,0x43,0x7e, 0x6,0x59,0x6e, 0x6,0x59,0x71, 0x6,0x59,0x77,\n  0x6,0x59,0x75, 0x6,0x59,0x7a, 0x6,0x59,0x72, 0x6,0x59,0x70,\n  0x6,0x59,0x74, 0x6,0x59,0x79, 0x6,0x59,0x78, 0x6,0x59,0x6f,\n  0x6,0x59,0x76, 0x6,0x63,0x74, 0x6,0x63,0x72, 0x5,0x4a,0x7b,\n  0x6,0x63,0x6b, 0x6,0x63,0x6c, 0x6,0x63,0x76, 0x6,0x63,0x68,\n  0x6,0x63,0x77, 0x6,0x63,0x70, 0x4,0x48,0x2a, 0x6,0x63,0x75,\n  0x6,0x63,0x6f, 0x5,0x4a,0x7c, 0x6,0x63,0x71, 0x6,0x63,0x69,\n  0x5,0x4a,0x7d, 0x4,0x48,0x2b, 0x6,0x63,0x6a, 0xf,0x4d,0x34,\n  0xf,0x4d,0x35, 0x6,0x63,0x73, 0x6,0x63,0x78, 0x6,0x63,0x6d,\n  0x7,0x2a,0x5d, 0x7,0x2a,0x5b, 0x7,0x2a,0x64, 0x7,0x2a,0x5f,\n  0x7,0x2a,0x5c, 0x5,0x52,0x3a, 0x7,0x2a,0x5e, 0x7,0x2a,0x66,\n  0x7,0x2a,0x62, 0x7,0x2a,0x60, 0x7,0x2a,0x61, 0x7,0x2a,0x63,\n  0x7,0x2a,0x5a, 0x7,0x2a,0x58, 0x5,0x52,0x39, 0x7,0x2a,0x65,\n  0x7,0x2a,0x67, 0x4,0x59,0x57, 0x4,0x54,0x55, 0x5,0x59,0x47,\n  0x7,0x35,0x29, 0x7,0x35,0x24, 0x7,0x35,0x2f, 0x7,0x35,0x22,\n  0x7,0x35,0x2d, 0x7,0x35,0x28, 0x7,0x35,0x25, 0x7,0x35,0x2c,\n  0x7,0x35,0x2a, 0x7,0x35,0x26, 0x5,0x59,0x46, 0x7,0x35,0x30,\n  0x4,0x54,0x56, 0x7,0x35,0x2b, 0x7,0x35,0x33, 0x7,0x35,0x27,\n  0x7,0x2a,0x59, 0x7,0x35,0x34, 0x7,0x35,0x31, 0x7,0x35,0x23,\n  0x7,0x35,0x32, 0xf,0x58,0x6d, 0x7,0x35,0x2e, 0xf,0x52,0x7a,\n  0x4,0x59,0x59, 0x7,0x3d,0x3d, 0x7,0x3d,0x3b, 0x7,0x3d,0x45,\n  0x7,0x3d,0x3c, 0x7,0x3d,0x3e, 0x7,0x3d,0x49, 0x7,0x3d,0x3a,\n  0x7,0x3d,0x42, 0x7,0x3d,0x39, 0x7,0x3d,0x38, 0x7,0x3d,0x3f,\n  0x5,0x5f,0x58, 0x7,0x3d,0x47, 0x7,0x3d,0x41, 0x7,0x3d,0x40,\n  0x7,0x3d,0x43, 0x7,0x3d,0x48, 0x7,0x35,0x36, 0xf,0x5d,0x55,\n  0xf,0x5d,0x57, 0x7,0x3d,0x44, 0x7,0x3d,0x46, 0x7,0x44,0x50,\n  0x7,0x44,0x56, 0x7,0x44,0x52, 0x7,0x44,0x53, 0x7,0x44,0x4f,\n  0x5,0x65,0x63, 0x7,0x44,0x57, 0x7,0x44,0x55, 0x5,0x65,0x64,\n  0x7,0x44,0x51, 0x7,0x44,0x54, 0x7,0x4b,0x4a, 0x7,0x4b,0x47,\n  0x7,0x4b,0x4b, 0x7,0x4b,0x48, 0x5,0x6a,0x3f, 0x7,0x4b,0x4e,\n  0x4,0x61,0x6f, 0x5,0x6a,0x40, 0x7,0x4b,0x46, 0x7,0x4b,0x4c,\n  0x7,0x4b,0x4d, 0x4,0x61,0x70, 0x7,0x4b,0x49, 0x7,0x4b,0x4f,\n  0x7,0x51,0x23, 0x7,0x51,0x27, 0x7,0x50,0x7d, 0x7,0x51,0x2a,\n  0x7,0x51,0x24, 0x7,0x51,0x2b, 0x7,0x51,0x28, 0x7,0x50,0x7c,\n  0x5,0x6e,0x42, 0x7,0x51,0x25, 0x7,0x51,0x26, 0x5,0x6e,0x43,\n  0x7,0x51,0x22, 0xf,0x66,0x74, 0x7,0x50,0x7e, 0x7,0x51,0x2c,\n  0x7,0x51,0x29, 0x7,0x55,0x74, 0x4,0x67,0x68, 0x7,0x55,0x72,\n  0x7,0x55,0x6f, 0x7,0x55,0x76, 0x7,0x55,0x70, 0x7,0x55,0x75,\n  0x7,0x55,0x73, 0x7,0x55,0x77, 0x7,0x51,0x21, 0xf,0x68,0x76,\n  0x7,0x55,0x71, 0x7,0x59,0x71, 0x7,0x59,0x72, 0x4,0x69,0x57,\n  0x7,0x59,0x75, 0x7,0x59,0x76, 0x7,0x59,0x74, 0xf,0x6a,0x32,\n  0x7,0x59,0x73, 0x7,0x5d,0x38, 0x7,0x5d,0x39, 0x7,0x5d,0x3a,\n  0x4,0x6b,0x2b, 0x7,0x5d,0x37, 0x7,0x5d,0x33, 0x7,0x5d,0x34,\n  0x7,0x5d,0x35, 0x7,0x5d,0x36, 0x7,0x5f,0x7c, 0x7,0x5f,0x7a,\n  0x7,0x5f,0x7b, 0x7,0x5f,0x79, 0x7,0x61,0x5a, 0xf,0x6c,0x41,\n  0x7,0x63,0x7e, 0x7,0x64,0x6b, 0x7,0x66,0x40, 0xf,0x2d,0x5e,\n  0x5,0x30,0x70, 0xf,0x32,0x70, 0x6,0x46,0x32, 0x6,0x46,0x33,\n  0x4,0x36,0x25, 0x6,0x46,0x31, 0xf,0x39,0x28, 0xf,0x39,0x29,\n  0x5,0x3d,0x40, 0x5,0x3d,0x3e, 0x5,0x3d,0x41, 0x5,0x3d,0x3f,\n  0x4,0x3b,0x73, 0x6,0x50,0x33, 0x4,0x3b,0x72, 0x6,0x50,0x32,\n  0xf,0x40,0x25, 0xf,0x40,0x27, 0xf,0x40,0x26, 0x4,0x41,0x58,\n  0x5,0x44,0x25, 0x5,0x44,0x22, 0x5,0x44,0x21, 0x5,0x44,0x24,\n  0x5,0x44,0x23, 0x6,0x59,0x7c, 0xf,0x46,0x2b, 0xf,0x46,0x2c,\n  0xf,0x46,0x2d, 0x5,0x44,0x26, 0x5,0x4b,0x22, 0x4,0x48,0x30,\n  0x5,0x4b,0x23, 0x5,0x4b,0x21, 0x5,0x4a,0x7e, 0x4,0x48,0x2c,\n  0x4,0x48,0x2f, 0x6,0x63,0x7d, 0x4,0x48,0x32, 0x6,0x63,0x7c,\n  0x6,0x63,0x7e, 0xf,0x4d,0x37, 0xf,0x4d,0x38, 0x6,0x63,0x7a,\n  0x6,0x63,0x79, 0x7,0x2a,0x6a, 0x7,0x2a,0x69, 0x5,0x52,0x45,\n  0x5,0x52,0x40, 0x5,0x52,0x41, 0x5,0x52,0x3f, 0x5,0x52,0x3e,\n  0x5,0x52,0x43, 0x5,0x52,0x3d, 0x4,0x54,0x57, 0x5,0x52,0x3c,\n  0x7,0x2a,0x6b, 0x7,0x2a,0x6c, 0xf,0x46,0x2a, 0xf,0x52,0x7b,\n  0xf,0x52,0x7c, 0xf,0x52,0x7d, 0xf,0x52,0x7e, 0xf,0x53,0x21,\n  0x7,0x2a,0x68, 0x5,0x52,0x44, 0x5,0x52,0x42, 0x5,0x5f,0x59,\n  0x7,0x35,0x3b, 0x4,0x54,0x5b, 0x5,0x59,0x4e, 0x5,0x59,0x4b,\n  0x4,0x54,0x5a, 0x7,0x35,0x38, 0x5,0x59,0x4d, 0x5,0x59,0x4a,\n  0x7,0x35,0x3a, 0x5,0x59,0x49, 0x7,0x35,0x39, 0x7,0x35,0x37,\n  0x5,0x59,0x48, 0x7,0x35,0x3c, 0xf,0x58,0x6e, 0xf,0x58,0x6f,\n  0xf,0x58,0x71, 0xf,0x58,0x72, 0xf,0x58,0x73, 0xf,0x58,0x74,\n  0xf,0x58,0x75, 0xf,0x58,0x70, 0xf,0x55,0x64, 0x5,0x59,0x4c,\n  0x4,0x59,0x5c, 0x4,0x59,0x5a, 0x4,0x59,0x5b, 0x5,0x5f,0x5a,\n  0x4,0x59,0x61, 0x5,0x5f,0x5c, 0x4,0x59,0x5e, 0x7,0x3d,0x4a,\n  0x5,0x65,0x68, 0x7,0x3d,0x4b, 0x7,0x3d,0x4d, 0x5,0x5f,0x5b,\n  0xf,0x5d,0x59, 0x7,0x3d,0x4c, 0x7,0x3d,0x4e, 0xf,0x5d,0x5a,\n  0x5,0x5f,0x5d, 0x5,0x65,0x6c, 0x5,0x65,0x6f, 0x7,0x44,0x5f,\n  0x7,0x44,0x63, 0x5,0x65,0x69, 0x7,0x44,0x5e, 0x5,0x65,0x66,\n  0x7,0x44,0x65, 0x7,0x44,0x62, 0x4,0x5e,0x37, 0x5,0x65,0x65,\n  0x5,0x65,0x67, 0x7,0x44,0x61, 0x7,0x44,0x5a, 0x7,0x44,0x5d,\n  0x5,0x65,0x6e, 0x7,0x44,0x5b, 0xf,0x61,0x51, 0x7,0x44,0x64,\n  0x7,0x44,0x59, 0x7,0x44,0x5c, 0x5,0x65,0x6b, 0x5,0x65,0x6d,\n  0xf,0x5d,0x58, 0x5,0x65,0x6a, 0x5,0x6a,0x47, 0x5,0x6a,0x41,\n  0x5,0x6a,0x45, 0x5,0x6a,0x42, 0x5,0x6a,0x43, 0x4,0x61,0x72,\n  0x5,0x6a,0x46, 0x5,0x6a,0x44, 0x5,0x6a,0x49, 0x4,0x61,0x71,\n  0x7,0x4b,0x50, 0x7,0x4b,0x55, 0x7,0x4b,0x51, 0x5,0x6a,0x48,\n  0x7,0x4b,0x53, 0xf,0x64,0x4e, 0x7,0x4b,0x57, 0x7,0x4b,0x56,\n  0x7,0x4b,0x54, 0x7,0x4b,0x52, 0x7,0x4b,0x58, 0x7,0x51,0x2e,\n  0x4,0x64,0x74, 0x7,0x51,0x36, 0x4,0x64,0x76, 0x5,0x6e,0x44,\n  0x4,0x67,0x6d, 0x4,0x64,0x78, 0x7,0x51,0x34, 0x7,0x51,0x33,\n  0x5,0x6e,0x45, 0x4,0x64,0x7a, 0x4,0x64,0x77, 0x4,0x64,0x79,\n  0x7,0x51,0x2f, 0x7,0x51,0x31, 0x7,0x51,0x32, 0xf,0x66,0x75,\n  0x7,0x51,0x35, 0x7,0x51,0x37, 0x7,0x51,0x30, 0x7,0x51,0x2d,\n  0x4,0x67,0x6a, 0x4,0x67,0x69, 0x7,0x55,0x78, 0x5,0x71,0x5e,\n  0x5,0x71,0x5f, 0x4,0x67,0x6b, 0x4,0x67,0x6c, 0x7,0x55,0x7a,\n  0x5,0x71,0x60, 0x5,0x71,0x61, 0x7,0x55,0x7d, 0x7,0x55,0x79,\n  0x7,0x55,0x7e, 0x7,0x55,0x7b, 0x5,0x74,0x5c, 0x5,0x74,0x5f,\n  0x4,0x69,0x59, 0x7,0x59,0x78, 0x5,0x74,0x5d, 0x7,0x59,0x79,\n  0x7,0x59,0x7a, 0x5,0x74,0x5a, 0x5,0x74,0x5e, 0x5,0x74,0x5b,\n  0x7,0x59,0x77, 0x5,0x76,0x62, 0x7,0x5d,0x3b, 0x7,0x5d,0x3c,\n  0xf,0x6b,0x33, 0x5,0x76,0x63, 0x5,0x78,0x44, 0x4,0x6c,0x32,\n  0x4,0x6c,0x31, 0x7,0x5f,0x7d, 0x7,0x5f,0x7e, 0x7,0x60,0x21,\n  0xf,0x6b,0x70, 0x4,0x6d,0x2c, 0x5,0x79,0x56, 0x4,0x6d,0x2b,\n  0x5,0x79,0x55, 0x7,0x61,0x5b, 0x5,0x79,0x57, 0x5,0x7a,0x44,\n  0x7,0x62,0x7b, 0x5,0x7a,0x43, 0x7,0x62,0x7c, 0xf,0x6c,0x59,\n  0x7,0x63,0x23, 0x5,0x7a,0x42, 0x7,0x64,0x6c, 0x4,0x6e,0x3e,\n  0x7,0x65,0x4b, 0x7,0x65,0x4a, 0x7,0x65,0x4c, 0x5,0x7b,0x6c,\n  0x7,0x66,0x2d, 0x7,0x66,0x4e, 0x7,0x66,0x51, 0x4,0x6e,0x5c,\n  0x4,0x36,0x26, 0x6,0x50,0x34, 0xf,0x46,0x2e, 0xf,0x46,0x2f,\n  0xf,0x46,0x30, 0x6,0x59,0x7d, 0x4,0x48,0x36, 0x7,0x2c,0x44,\n  0x7,0x35,0x3d, 0x5,0x5a,0x74, 0x7,0x44,0x66, 0xf,0x64,0x4f,\n  0x5,0x71,0x62, 0xf,0x6b,0x71, 0x6,0x3c,0x74, 0x6,0x2e,0x49,\n  0x6,0x3c,0x73, 0x4,0x36,0x27, 0x6,0x46,0x34, 0x4,0x36,0x29,\n  0xf,0x39,0x2d, 0x6,0x50,0x35, 0x5,0x3d,0x42, 0x4,0x3b,0x75,\n  0x6,0x50,0x37, 0x6,0x50,0x36, 0xf,0x40,0x28, 0xf,0x40,0x29,\n  0x6,0x5a,0x21, 0x6,0x59,0x7e, 0xf,0x4d,0x3b, 0x4,0x4e,0x4d,\n  0x7,0x2a,0x6e, 0x7,0x2a,0x6d, 0x7,0x35,0x3e, 0x7,0x51,0x38,\n  0x7,0x51,0x39, 0x6,0x50,0x39, 0x6,0x50,0x3a, 0x6,0x50,0x38,\n  0x4,0x41,0x59, 0x4,0x41,0x5b, 0x5,0x44,0x28, 0x5,0x44,0x27,\n  0x6,0x5a,0x23, 0x6,0x5a,0x22, 0x6,0x64,0x22, 0x5,0x4b,0x25,\n  0x4,0x48,0x39, 0x6,0x64,0x21, 0x5,0x4b,0x24, 0xf,0x4d,0x3c,\n  0x6,0x64,0x23, 0x4,0x4e,0x4e, 0x5,0x52,0x46, 0x5,0x52,0x48,\n  0x5,0x52,0x47, 0x7,0x2a,0x70, 0x7,0x2a,0x6f, 0xf,0x58,0x77,\n  0x5,0x59,0x50, 0x5,0x59,0x4f, 0x5,0x59,0x54, 0x5,0x59,0x51,\n  0x5,0x59,0x52, 0x5,0x59,0x53, 0xf,0x58,0x76, 0x7,0x35,0x3f,\n  0x7,0x3d,0x4f, 0x5,0x5f,0x5f, 0x5,0x5f,0x60, 0x5,0x5f,0x62,\n  0x5,0x5f,0x61, 0xf,0x5d,0x5b, 0x7,0x3d,0x51, 0x5,0x65,0x72,\n  0x7,0x44,0x67, 0x5,0x65,0x70, 0x5,0x65,0x71, 0x4,0x5e,0x39,\n  0x5,0x6a,0x4b, 0x5,0x6a,0x4a, 0x5,0x6e,0x47, 0x5,0x6e,0x46,\n  0x7,0x4d,0x50, 0x7,0x51,0x3a, 0x5,0x6c,0x46, 0x5,0x71,0x64,\n  0x7,0x56,0x22, 0x5,0x71,0x66, 0x5,0x71,0x65, 0xf,0x68,0x79,\n  0x7,0x56,0x21, 0x7,0x56,0x24, 0x7,0x56,0x23, 0x7,0x59,0x7b,\n  0x7,0x59,0x7c, 0x7,0x5d,0x3d, 0x5,0x76,0x64, 0xf,0x6b,0x34,\n  0x7,0x60,0x22, 0x5,0x7a,0x45, 0x7,0x64,0x21, 0x7,0x64,0x6e,\n  0x7,0x64,0x6d, 0xf,0x39,0x2e, 0x5,0x3d,0x43, 0x4,0x3b,0x78,\n  0x6,0x50,0x3b, 0x5,0x44,0x2c, 0x5,0x44,0x2b, 0x6,0x5a,0x26,\n  0x6,0x5a,0x29, 0x5,0x44,0x2a, 0x6,0x5a,0x27, 0x5,0x44,0x29,\n  0x6,0x5a,0x25, 0x6,0x5a,0x2b, 0x6,0x5a,0x2a, 0x4,0x41,0x5c,\n  0x4,0x41,0x5e, 0xf,0x46,0x31, 0x5,0x4b,0x27, 0x4,0x48,0x3c,\n  0x5,0x4b,0x26, 0x6,0x64,0x27, 0x6,0x64,0x25, 0x5,0x4b,0x28,\n  0x5,0x4b,0x29, 0x4,0x48,0x3e, 0x5,0x4b,0x2c, 0x5,0x4b,0x2a,\n  0x5,0x4b,0x2d, 0x5,0x4b,0x2b, 0x6,0x64,0x29, 0x4,0x48,0x3f,\n  0x6,0x64,0x28, 0x6,0x64,0x24, 0x6,0x64,0x26, 0x7,0x2a,0x73,\n  0x5,0x52,0x49, 0x7,0x2a,0x77, 0x7,0x2a,0x76, 0x4,0x4e,0x51,\n  0x7,0x2a,0x79, 0x5,0x52,0x4a, 0x4,0x4e,0x52, 0x7,0x2a,0x75,\n  0x4,0x4e,0x53, 0x5,0x52,0x4d, 0x4,0x4e,0x50, 0x5,0x52,0x4c,\n  0x5,0x52,0x4e, 0x7,0x2a,0x74, 0x5,0x52,0x4b, 0x7,0x2a,0x78,\n  0x7,0x2a,0x72, 0x7,0x35,0x44, 0x5,0x59,0x55, 0x5,0x59,0x58,\n  0x4,0x54,0x66, 0x4,0x54,0x5e, 0x4,0x54,0x65, 0x5,0x59,0x56,\n  0x5,0x59,0x57, 0x7,0x35,0x43, 0x7,0x35,0x47, 0x7,0x35,0x40,\n  0x7,0x35,0x41, 0x7,0x35,0x45, 0x7,0x35,0x46, 0x7,0x3d,0x58,\n  0x7,0x3d,0x5a, 0x5,0x5f,0x63, 0x5,0x5f,0x69, 0x4,0x59,0x66,\n  0x5,0x5f,0x65, 0x7,0x3d,0x53, 0x4,0x59,0x67, 0x7,0x35,0x42,\n  0x5,0x5f,0x6d, 0x7,0x3d,0x57, 0x4,0x59,0x65, 0x7,0x3d,0x59,\n  0x5,0x5f,0x67, 0x5,0x5f,0x6a, 0x7,0x3d,0x55, 0x5,0x5f,0x6b,\n  0x7,0x3d,0x5b, 0x7,0x35,0x48, 0x5,0x5f,0x68, 0x7,0x3d,0x54,\n  0x7,0x3d,0x5c, 0xf,0x5d,0x5c, 0x7,0x3d,0x52, 0x5,0x5f,0x6c,\n  0x5,0x5f,0x66, 0x4,0x5e,0x44, 0x5,0x65,0x7c, 0x5,0x65,0x74,\n  0x4,0x5e,0x3a, 0x5,0x65,0x76, 0x5,0x66,0x22, 0x7,0x44,0x6a,\n  0x7,0x44,0x68, 0x4,0x5e,0x3f, 0x5,0x65,0x77, 0x4,0x5e,0x40,\n  0x7,0x44,0x6d, 0x7,0x44,0x70, 0x5,0x66,0x21, 0x7,0x44,0x6f,\n  0x4,0x5e,0x3d, 0x5,0x66,0x23, 0x7,0x44,0x71, 0x7,0x44,0x72,\n  0x7,0x44,0x6e, 0xf,0x61,0x53, 0xf,0x61,0x54, 0x5,0x5f,0x64,\n  0x7,0x44,0x6c, 0x7,0x44,0x6b, 0x5,0x65,0x78, 0x5,0x66,0x24,\n  0x7,0x44,0x69, 0x5,0x65,0x75, 0x5,0x65,0x7a, 0x5,0x65,0x79,\n  0x5,0x65,0x7d, 0x4,0x61,0x7a, 0x5,0x6a,0x51, 0x5,0x6a,0x54,\n  0x5,0x6a,0x4f, 0x4,0x61,0x79, 0x5,0x6a,0x4d, 0x7,0x4b,0x5a,\n  0x5,0x6a,0x55, 0x7,0x4b,0x63, 0x5,0x6a,0x4e, 0x4,0x61,0x78,\n  0x7,0x4b,0x61, 0x4,0x61,0x76, 0x7,0x4b,0x5e, 0x4,0x61,0x75,\n  0x7,0x4b,0x62, 0x5,0x6a,0x50, 0x7,0x4b,0x60, 0xf,0x64,0x50,\n  0xf,0x64,0x52, 0xf,0x64,0x53, 0x7,0x4b,0x5b, 0x7,0x4b,0x5c,\n  0x5,0x6a,0x53, 0x5,0x6a,0x52, 0x7,0x4b,0x59, 0x5,0x6a,0x4c,\n  0x4,0x65,0x24, 0x5,0x6e,0x4e, 0x4,0x64,0x7d, 0x5,0x6e,0x4f,\n  0x5,0x6e,0x4a, 0x7,0x51,0x3b, 0x5,0x6e,0x48, 0x7,0x51,0x3d,\n  0x4,0x65,0x21, 0x5,0x6e,0x4c, 0x4,0x65,0x22, 0x4,0x65,0x25,\n  0x5,0x6e,0x4d, 0x7,0x51,0x41, 0x7,0x51,0x3c, 0xf,0x66,0x78,\n  0x7,0x51,0x3e, 0x7,0x51,0x43, 0x7,0x51,0x40, 0x5,0x6e,0x4b,\n  0x7,0x51,0x3f, 0x5,0x6e,0x50, 0x4,0x65,0x26, 0x7,0x51,0x42,\n  0x5,0x71,0x6d, 0x7,0x56,0x28, 0x4,0x67,0x6f, 0x7,0x56,0x2a,\n  0x7,0x56,0x2b, 0x5,0x71,0x6a, 0x5,0x71,0x6b, 0x5,0x71,0x6c,\n  0x5,0x71,0x67, 0x5,0x71,0x68, 0x7,0x56,0x29, 0xf,0x66,0x77,\n  0x5,0x74,0x60, 0x7,0x5a,0x26, 0x7,0x59,0x7d, 0x4,0x69,0x5d,\n  0x5,0x74,0x61, 0x7,0x5a,0x25, 0x7,0x5a,0x23, 0x7,0x59,0x7e,\n  0x7,0x5a,0x24, 0x5,0x74,0x63, 0x5,0x74,0x64, 0x7,0x5a,0x21,\n  0x7,0x5a,0x22, 0x5,0x74,0x65, 0x5,0x76,0x65, 0x5,0x76,0x68,\n  0x5,0x76,0x66, 0x7,0x5d,0x3e, 0x5,0x76,0x69, 0x5,0x76,0x67,\n  0x7,0x5d,0x41, 0x7,0x5d,0x3f, 0x7,0x5d,0x42, 0x7,0x5d,0x40,\n  0x5,0x78,0x46, 0x5,0x79,0x58, 0x7,0x60,0x23, 0x5,0x78,0x45,\n  0x5,0x78,0x47, 0x7,0x61,0x5e, 0x7,0x61,0x5c, 0x7,0x61,0x5d,\n  0x5,0x7a,0x46, 0x7,0x62,0x7e, 0x7,0x63,0x22, 0x5,0x79,0x59,\n  0x7,0x63,0x21, 0x7,0x62,0x7d, 0x5,0x7b,0x22, 0x7,0x64,0x70,\n  0x7,0x64,0x6f, 0x5,0x7b,0x4c, 0x7,0x65,0x69, 0x5,0x7c,0x35,\n  0x7,0x66,0x2e, 0x7,0x66,0x39, 0x7,0x66,0x38, 0x5,0x7c,0x4c,\n  0x5,0x3d,0x44, 0x4,0x41,0x60, 0x4,0x41,0x62, 0x6,0x5a,0x2c,\n  0x5,0x44,0x2d, 0x6,0x64,0x2b, 0x5,0x4b,0x2f, 0x5,0x4b,0x31,\n  0x5,0x4b,0x2e, 0x5,0x4b,0x30, 0x6,0x64,0x2a, 0xf,0x4d,0x3d,\n  0x5,0x4b,0x32, 0x4,0x4e,0x55, 0x5,0x52,0x50, 0x4,0x4e,0x54,\n  0x4,0x4e,0x56, 0x7,0x2a,0x7b, 0x7,0x2a,0x7a, 0x7,0x2a,0x7c,\n  0x7,0x2a,0x7d, 0x7,0x2a,0x7e, 0x5,0x52,0x4f, 0x5,0x52,0x51,\n  0x5,0x59,0x59, 0x7,0x35,0x49, 0x7,0x35,0x4a, 0x5,0x59,0x5c,\n  0x5,0x59,0x5d, 0x5,0x59,0x5b, 0x7,0x35,0x4b, 0x5,0x59,0x5a,\n  0x4,0x59,0x69, 0x7,0x3d,0x5e, 0x5,0x5f,0x6e, 0x7,0x3d,0x5f,\n  0x4,0x59,0x6c, 0x4,0x59,0x6a, 0x5,0x5f,0x6f, 0x5,0x5f,0x70,\n  0xf,0x5d,0x5d, 0x7,0x3d,0x5d, 0x7,0x3d,0x60, 0x7,0x44,0x76,\n  0x7,0x44,0x73, 0x4,0x5e,0x46, 0x7,0x44,0x74, 0x7,0x3d,0x61,\n  0x5,0x66,0x25, 0x7,0x44,0x78, 0x7,0x44,0x75, 0x7,0x4b,0x64,\n  0x7,0x4b,0x66, 0x7,0x4b,0x69, 0x7,0x4b,0x65, 0x7,0x4b,0x68,\n  0x7,0x4b,0x67, 0x7,0x51,0x44, 0x5,0x6a,0x56, 0x5,0x6a,0x57,\n  0x7,0x51,0x45, 0x7,0x51,0x46, 0x4,0x65,0x28, 0xf,0x66,0x79,\n  0x5,0x6e,0x52, 0x5,0x6e,0x51, 0x5,0x71,0x6e, 0x5,0x71,0x70,\n  0x5,0x71,0x72, 0x4,0x67,0x74, 0x7,0x56,0x2c, 0x5,0x71,0x6f,\n  0x5,0x71,0x71, 0x7,0x5a,0x27, 0x4,0x69,0x5f, 0x5,0x74,0x66,\n  0x7,0x5a,0x28, 0x7,0x5a,0x29, 0x5,0x74,0x67, 0x7,0x5d,0x43,\n  0x7,0x5d,0x46, 0x7,0x5d,0x45, 0x7,0x5d,0x44, 0x4,0x6c,0x35,\n  0x7,0x61,0x5f, 0x5,0x7a,0x47, 0x7,0x64,0x24, 0x7,0x64,0x22,\n  0x7,0x64,0x23, 0x5,0x7b,0x4d, 0x5,0x7b,0x6d, 0x5,0x7c,0x22,\n  0x5,0x44,0x2e, 0x6,0x5a,0x2d, 0x5,0x52,0x52, 0x7,0x35,0x4c,\n  0x4,0x59,0x6d, 0x7,0x3d,0x62, 0x7,0x4b,0x6c, 0x7,0x51,0x48,\n  0x4,0x65,0x2b, 0x5,0x71,0x73, 0x7,0x51,0x47, 0x7,0x56,0x2d,\n  0x7,0x5a,0x2a, 0x7,0x5d,0x48, 0x7,0x5d,0x47, 0x7,0x61,0x60,\n  0xf,0x40,0x2c, 0x5,0x44,0x30, 0x5,0x44,0x2f, 0x5,0x4b,0x33,\n  0x4,0x48,0x45, 0x5,0x4b,0x34, 0x5,0x52,0x5a, 0x7,0x2b,0x21,\n  0x5,0x52,0x54, 0x5,0x52,0x57, 0x7,0x2b,0x22, 0x5,0x52,0x55,\n  0x5,0x52,0x56, 0x5,0x52,0x59, 0x5,0x52,0x53, 0x4,0x54,0x6b,\n  0x5,0x52,0x58, 0xf,0x58,0x79, 0x5,0x59,0x5e, 0x7,0x35,0x4d,\n  0x7,0x3d,0x63, 0x5,0x5f,0x71, 0x5,0x5f,0x72, 0x5,0x66,0x26,\n  0x5,0x66,0x27, 0x5,0x66,0x28, 0x4,0x62,0x21, 0x5,0x6a,0x58,\n  0x5,0x6a,0x59, 0x7,0x51,0x49, 0x7,0x51,0x4a, 0x5,0x6e,0x54,\n  0x5,0x6e,0x53, 0x5,0x6e,0x55, 0x7,0x56,0x2e, 0x5,0x71,0x74,\n  0x5,0x66,0x29, 0x5,0x74,0x68, 0x5,0x74,0x69, 0x4,0x69,0x61,\n  0xf,0x6a,0x33, 0x7,0x5d,0x4a, 0x4,0x6c,0x36, 0x5,0x7b,0x23,\n  0x5,0x7c,0x3f, 0x6,0x34,0x7b, 0x6,0x46,0x35, 0x5,0x36,0x46,\n  0x5,0x3d,0x4a, 0x5,0x3d,0x48, 0x5,0x3d,0x49, 0x5,0x3d,0x46,\n  0x4,0x3b,0x7d, 0x5,0x3d,0x45, 0x4,0x3b,0x7c, 0x6,0x50,0x3c,\n  0x4,0x3b,0x7a, 0x4,0x41,0x6c, 0x5,0x44,0x3a, 0x4,0x41,0x6b,\n  0x5,0x44,0x31, 0x5,0x44,0x39, 0x6,0x5a,0x2f, 0x4,0x41,0x69,\n  0x5,0x4b,0x3b, 0x5,0x44,0x37, 0x4,0x41,0x66, 0x4,0x41,0x67,\n  0x4,0x41,0x6a, 0x6,0x5a,0x32, 0x5,0x44,0x36, 0x5,0x44,0x32,\n  0x6,0x5a,0x30, 0x6,0x5a,0x31, 0x6,0x5a,0x2e, 0xf,0x46,0x33,\n  0x5,0x44,0x33, 0x5,0x44,0x38, 0x5,0x4b,0x3d, 0x6,0x64,0x31,\n  0x6,0x64,0x32, 0x5,0x4b,0x37, 0x5,0x4b,0x44, 0x5,0x4b,0x38,\n  0x4,0x48,0x49, 0x4,0x48,0x48, 0x5,0x4b,0x3a, 0x5,0x4b,0x36,\n  0x4,0x48,0x4f, 0x5,0x4b,0x42, 0x5,0x4b,0x39, 0x7,0x2b,0x2b,\n  0x5,0x4b,0x43, 0x6,0x64,0x35, 0x6,0x64,0x33, 0x6,0x64,0x2e,\n  0x5,0x4b,0x3c, 0x5,0x4b,0x41, 0xf,0x4d,0x3e, 0x6,0x64,0x2d,\n  0x5,0x4b,0x40, 0x6,0x64,0x2c, 0x6,0x64,0x36, 0x5,0x4b,0x35,\n  0x6,0x64,0x2f, 0x6,0x64,0x34, 0x5,0x52,0x5d, 0x4,0x4e,0x5b,\n  0x7,0x2b,0x25, 0x7,0x2b,0x30, 0x5,0x52,0x5c, 0x5,0x52,0x5b,\n  0x4,0x4e,0x58, 0x7,0x2b,0x24, 0x7,0x2b,0x2a, 0x4,0x48,0x4a,\n  0x7,0x2b,0x2e, 0x5,0x52,0x5e, 0x4,0x4e,0x5e, 0x7,0x2b,0x2d,\n  0x7,0x2b,0x29, 0x7,0x35,0x4f, 0x7,0x2b,0x2c, 0xf,0x53,0x23,\n  0xf,0x53,0x24, 0x7,0x2b,0x27, 0x7,0x2b,0x28, 0x7,0x2b,0x2f,\n  0x7,0x2b,0x31, 0x7,0x2b,0x23, 0x7,0x2b,0x26, 0x5,0x52,0x5f,\n  0x4,0x54,0x6c, 0x5,0x59,0x61, 0x4,0x54,0x6e, 0x5,0x59,0x69,\n  0x7,0x35,0x58, 0x5,0x59,0x68, 0x5,0x59,0x66, 0x7,0x35,0x59,\n  0x7,0x35,0x57, 0x5,0x59,0x65, 0x5,0x59,0x63, 0x7,0x35,0x5b,\n  0x7,0x35,0x50, 0x5,0x59,0x6a, 0x5,0x59,0x62, 0x5,0x59,0x6b,\n  0x5,0x59,0x64, 0x5,0x59,0x67, 0x4,0x54,0x71, 0x7,0x35,0x4e,\n  0x5,0x59,0x60, 0x7,0x35,0x5a, 0x4,0x54,0x72, 0x7,0x35,0x56,\n  0x7,0x35,0x5c, 0xf,0x4d,0x40, 0xf,0x58,0x7a, 0xf,0x58,0x7c,\n  0xf,0x58,0x7d, 0xf,0x59,0x21, 0xf,0x59,0x22, 0xf,0x59,0x23,\n  0x7,0x35,0x52, 0x7,0x35,0x53, 0x7,0x35,0x54, 0x7,0x35,0x55,\n  0x5,0x59,0x6c, 0x5,0x59,0x5f, 0xf,0x58,0x7e, 0x5,0x59,0x6d,\n  0x4,0x59,0x75, 0x4,0x59,0x71, 0x4,0x59,0x6e, 0x7,0x3d,0x65,\n  0x5,0x5f,0x77, 0x4,0x59,0x79, 0x5,0x5f,0x78, 0x4,0x59,0x74,\n  0x5,0x5f,0x76, 0x5,0x5f,0x73, 0x5,0x5f,0x75, 0x4,0x59,0x6f,\n  0x5,0x5f,0x7b, 0x7,0x3d,0x6a, 0x4,0x59,0x72, 0x7,0x3d,0x6c,\n  0x5,0x5f,0x74, 0x7,0x3d,0x67, 0x4,0x59,0x78, 0x7,0x3d,0x6b,\n  0xf,0x5d,0x5e, 0xf,0x5d,0x5f, 0xf,0x5d,0x60, 0xf,0x5d,0x61,\n  0xf,0x5d,0x62, 0xf,0x5d,0x63, 0x7,0x3d,0x64, 0x7,0x3d,0x66,\n  0x5,0x5f,0x79, 0x5,0x5f,0x7a, 0x7,0x3d,0x68, 0x7,0x3d,0x6d,\n  0x5,0x66,0x2a, 0x4,0x5e,0x4a, 0x5,0x66,0x30, 0x5,0x66,0x2e,\n  0x4,0x62,0x24, 0x5,0x66,0x2d, 0x5,0x66,0x2b, 0x7,0x44,0x7b,\n  0x5,0x66,0x2c, 0x4,0x5e,0x48, 0x5,0x66,0x31, 0x5,0x66,0x2f,\n  0x7,0x44,0x7c, 0xf,0x61,0x55, 0xf,0x61,0x56, 0xf,0x61,0x57,\n  0xf,0x61,0x58, 0x7,0x44,0x79, 0x7,0x44,0x7a, 0x7,0x4b,0x76,\n  0x5,0x6a,0x5d, 0x7,0x4b,0x70, 0x7,0x4b,0x6d, 0x5,0x6a,0x5e,\n  0x4,0x62,0x2e, 0x7,0x4b,0x72, 0x5,0x6a,0x5c, 0x5,0x6e,0x56,\n  0x5,0x6a,0x5b, 0x5,0x6a,0x5a, 0x7,0x4b,0x74, 0x7,0x4b,0x6f,\n  0x4,0x62,0x2a, 0x7,0x4b,0x6e, 0x7,0x4b,0x75, 0x7,0x4b,0x71,\n  0xf,0x64,0x54, 0xf,0x64,0x55, 0x7,0x4b,0x77, 0x7,0x4b,0x73,\n  0x4,0x65,0x2e, 0x4,0x65,0x2d, 0x5,0x6e,0x5b, 0x5,0x6e,0x59,\n  0x7,0x51,0x4e, 0x5,0x6e,0x5a, 0x4,0x65,0x32, 0x7,0x51,0x4d,\n  0x4,0x65,0x33, 0x5,0x6e,0x58, 0x7,0x51,0x4b, 0x7,0x51,0x4f,\n  0xf,0x66,0x7a, 0x4,0x65,0x34, 0x7,0x51,0x50, 0x7,0x51,0x4c,\n  0x5,0x6e,0x57, 0x7,0x50,0x4c, 0x5,0x71,0x75, 0x5,0x71,0x76,\n  0x7,0x56,0x2f, 0x5,0x71,0x78, 0x7,0x56,0x38, 0x7,0x5a,0x31,\n  0x4,0x67,0x7a, 0x4,0x67,0x78, 0x7,0x56,0x33, 0x7,0x56,0x31,\n  0x7,0x56,0x36, 0x5,0x71,0x77, 0x5,0x71,0x79, 0x5,0x71,0x7a,\n  0x7,0x56,0x30, 0x7,0x56,0x34, 0xf,0x68,0x7a, 0xf,0x68,0x7b,\n  0xf,0x68,0x7c, 0x7,0x56,0x37, 0x7,0x56,0x35, 0x7,0x5a,0x30,\n  0x5,0x74,0x6c, 0x5,0x74,0x6b, 0x7,0x5a,0x2d, 0x7,0x5a,0x2f,\n  0x5,0x74,0x6a, 0xf,0x6a,0x34, 0x7,0x5a,0x2b, 0x7,0x5a,0x2e,\n  0x7,0x5a,0x2c, 0x7,0x5d,0x52, 0x7,0x5d,0x51, 0x7,0x5d,0x4f,\n  0x5,0x76,0x6c, 0x5,0x76,0x6d, 0x4,0x6b,0x2e, 0x5,0x76,0x6a,\n  0x7,0x5d,0x4d, 0x4,0x6b,0x2f, 0x7,0x5d,0x4e, 0xf,0x6b,0x35,\n  0x7,0x5d,0x50, 0x7,0x5d,0x4c, 0x7,0x5d,0x4b, 0x4,0x6c,0x38,\n  0x7,0x60,0x24, 0x5,0x76,0x6b, 0x4,0x6c,0x37, 0xf,0x6b,0x72,\n  0x7,0x60,0x25, 0x4,0x6d,0x2e, 0x5,0x79,0x5a, 0x5,0x7a,0x48,\n  0x7,0x63,0x24, 0x5,0x7a,0x49, 0x7,0x63,0x25, 0x7,0x63,0x26,\n  0x4,0x6e,0x23, 0x7,0x64,0x25, 0x7,0x65,0x4d, 0x6,0x46,0x36,\n  0x6,0x50,0x3f, 0x4,0x3c,0x21, 0x6,0x50,0x3d, 0x5,0x3d,0x4b,\n  0xf,0x40,0x2e, 0x6,0x50,0x3e, 0x5,0x44,0x3b, 0x5,0x44,0x40,\n  0x4,0x41,0x6f, 0x5,0x44,0x3d, 0x5,0x44,0x3e, 0x6,0x5a,0x34,\n  0x6,0x5a,0x36, 0x5,0x44,0x3c, 0x4,0x41,0x70, 0x6,0x5a,0x35,\n  0x6,0x53,0x33, 0x5,0x44,0x3f, 0x6,0x5a,0x37, 0x4,0x48,0x58,\n  0x5,0x4b,0x48, 0x4,0x48,0x55, 0x5,0x4b,0x47, 0x5,0x4b,0x46,\n  0x5,0x4b,0x45, 0x4,0x48,0x53, 0x6,0x64,0x37, 0x4,0x48,0x52,\n  0x6,0x64,0x3b, 0x6,0x64,0x39, 0x6,0x64,0x38, 0x4,0x4e,0x5f,\n  0x5,0x52,0x62, 0x4,0x4e,0x62, 0x7,0x2b,0x34, 0x7,0x2b,0x33,\n  0x7,0x2b,0x32, 0x5,0x52,0x61, 0x7,0x2b,0x35, 0xf,0x53,0x25,\n  0xf,0x53,0x26, 0x5,0x59,0x6f, 0x5,0x59,0x77, 0x5,0x59,0x70,\n  0x7,0x35,0x5d, 0x7,0x35,0x60, 0x5,0x59,0x6e, 0x5,0x59,0x73,\n  0x5,0x59,0x76, 0x7,0x35,0x5f, 0x7,0x35,0x61, 0x5,0x59,0x74,\n  0x5,0x59,0x75, 0x7,0x35,0x5e, 0xf,0x59,0x25, 0x5,0x59,0x72,\n  0x5,0x59,0x71, 0x7,0x3d,0x71, 0x4,0x5a,0x25, 0x5,0x60,0x25,\n  0x5,0x60,0x26, 0x4,0x59,0x7b, 0x5,0x5f,0x7c, 0x7,0x3d,0x70,\n  0x4,0x5a,0x24, 0x5,0x66,0x32, 0x5,0x60,0x22, 0x4,0x5a,0x23,\n  0x5,0x5f,0x7e, 0x5,0x60,0x21, 0x5,0x60,0x24, 0x5,0x5f,0x7d,\n  0x5,0x60,0x23, 0x7,0x3d,0x6e, 0xf,0x5d,0x64, 0xf,0x5d,0x65,\n  0x7,0x3d,0x72, 0x7,0x3d,0x6f, 0x4,0x5e,0x53, 0x7,0x45,0x22,\n  0x7,0x45,0x24, 0x5,0x66,0x37, 0x7,0x45,0x26, 0x5,0x66,0x34,\n  0x5,0x66,0x38, 0x4,0x5e,0x54, 0x5,0x66,0x3a, 0x4,0x62,0x31,\n  0x5,0x66,0x35, 0x7,0x45,0x25, 0x5,0x66,0x36, 0x5,0x66,0x39,\n  0x5,0x66,0x33, 0xf,0x61,0x59, 0x7,0x45,0x28, 0x7,0x45,0x23,\n  0x7,0x45,0x21, 0x7,0x45,0x27, 0x7,0x44,0x7d, 0x5,0x6a,0x5f,\n  0x4,0x62,0x33, 0x4,0x62,0x34, 0x4,0x62,0x35, 0x5,0x6a,0x60,\n  0x7,0x4b,0x79, 0xf,0x64,0x56, 0xf,0x64,0x57, 0x7,0x4b,0x78,\n  0x7,0x4b,0x7a, 0x7,0x4b,0x7b, 0x7,0x4b,0x7c, 0x5,0x6e,0x5e,\n  0x5,0x6e,0x61, 0x5,0x6e,0x60, 0x4,0x65,0x35, 0x5,0x6e,0x5c,\n  0x4,0x65,0x37, 0x5,0x6e,0x5f, 0xf,0x66,0x7b, 0x5,0x6e,0x62,\n  0x5,0x6e,0x5d, 0x4,0x65,0x38, 0x7,0x56,0x40, 0x4,0x67,0x7d,\n  0x4,0x68,0x21, 0x5,0x71,0x7b, 0x7,0x56,0x39, 0x5,0x71,0x7c,\n  0x7,0x56,0x3c, 0x7,0x56,0x3a, 0xf,0x68,0x7d, 0x7,0x56,0x3f,\n  0x7,0x56,0x41, 0x7,0x56,0x42, 0x7,0x56,0x3d, 0x7,0x56,0x3e,\n  0x7,0x56,0x3b, 0x7,0x5a,0x32, 0xf,0x6a,0x35, 0x7,0x5a,0x33,\n  0x7,0x5d,0x53, 0x5,0x78,0x49, 0x4,0x6c,0x3b, 0x7,0x60,0x26,\n  0x7,0x60,0x27, 0x5,0x79,0x5b, 0x7,0x61,0x61, 0x5,0x79,0x5c,\n  0x4,0x6d,0x2f, 0x4,0x6d,0x66, 0x5,0x7a,0x4a, 0x5,0x7b,0x24,\n  0x7,0x64,0x26, 0xf,0x6d,0x24, 0x5,0x7c,0x47, 0x7,0x66,0x55,\n  0x6,0x3c,0x75, 0x5,0x40,0x39, 0x7,0x2b,0x36, 0x7,0x4b,0x7d,\n  0x5,0x6a,0x61, 0x7,0x56,0x43, 0x4,0x69,0x64, 0x5,0x74,0x6d,\n  0x6,0x34,0x7c, 0x6,0x34,0x7d, 0x6,0x35,0x22, 0x6,0x34,0x7e,\n  0x5,0x30,0x71, 0x6,0x3c,0x76, 0x6,0x3c,0x78, 0x5,0x3d,0x4c,\n  0x5,0x36,0x4a, 0x5,0x36,0x47, 0x6,0x46,0x3a, 0x6,0x46,0x38,\n  0x5,0x36,0x49, 0x6,0x46,0x39, 0x6,0x46,0x3b, 0x6,0x50,0x40,\n  0x5,0x36,0x48, 0x6,0x50,0x41, 0x6,0x50,0x46, 0x4,0x3c,0x22,\n  0x5,0x3d,0x4d, 0x6,0x50,0x44, 0x6,0x50,0x45, 0x4,0x3c,0x26,\n  0x5,0x3d,0x4e, 0x6,0x5a,0x38, 0x5,0x3d,0x4f, 0x6,0x50,0x42,\n  0xf,0x40,0x2f, 0x6,0x50,0x43, 0x4,0x3c,0x23, 0x6,0x5a,0x42,\n  0x6,0x5a,0x39, 0x5,0x44,0x42, 0x5,0x44,0x44, 0x5,0x44,0x41,\n  0x5,0x44,0x47, 0x4,0x41,0x76, 0x5,0x44,0x43, 0x6,0x64,0x43,\n  0x5,0x44,0x45, 0x6,0x5a,0x3c, 0x6,0x5a,0x3b, 0x6,0x64,0x3d,\n  0x4,0x41,0x73, 0x6,0x5a,0x3a, 0x6,0x64,0x3e, 0x6,0x5a,0x3e,\n  0x5,0x44,0x48, 0x6,0x5a,0x41, 0x5,0x52,0x63, 0xf,0x46,0x37,\n  0x6,0x5a,0x40, 0x6,0x5a,0x3f, 0x6,0x64,0x3c, 0x4,0x41,0x78,\n  0x5,0x44,0x46, 0x6,0x64,0x3f, 0x7,0x2b,0x37, 0x6,0x64,0x44,\n  0x5,0x4b,0x4d, 0x5,0x4b,0x49, 0x6,0x64,0x45, 0x5,0x4b,0x4a,\n  0x4,0x48,0x5a, 0x6,0x64,0x42, 0x5,0x4b,0x4b, 0x7,0x2b,0x39,\n  0x6,0x64,0x41, 0xf,0x46,0x36, 0xf,0x53,0x28, 0x7,0x2b,0x3a,\n  0x4,0x4e,0x6b, 0x7,0x2b,0x40, 0x4,0x4e,0x6a, 0x5,0x52,0x69,\n  0x5,0x52,0x64, 0x5,0x59,0x79, 0x4,0x4e,0x68, 0x5,0x52,0x66,\n  0x5,0x52,0x6b, 0x5,0x52,0x68, 0x4,0x4e,0x6c, 0x5,0x52,0x6a,\n  0x7,0x2b,0x3c, 0x5,0x52,0x65, 0x7,0x2b,0x3b, 0x7,0x3d,0x73,\n  0x5,0x52,0x67, 0x7,0x2b,0x3e, 0x7,0x2b,0x3d, 0xf,0x53,0x27,\n  0x5,0x59,0x78, 0x7,0x2b,0x3f, 0x5,0x5a,0x23, 0x4,0x5a,0x26,\n  0x5,0x5a,0x24, 0x4,0x54,0x7b, 0x7,0x35,0x66, 0x7,0x35,0x6a,\n  0x5,0x60,0x27, 0x5,0x59,0x7b, 0x7,0x35,0x69, 0x5,0x59,0x7e,\n  0x7,0x35,0x67, 0x5,0x59,0x7c, 0x7,0x35,0x6f, 0x4,0x54,0x79,\n  0x7,0x35,0x6b, 0x7,0x35,0x70, 0x5,0x5a,0x25, 0x7,0x35,0x68,\n  0x7,0x35,0x63, 0x5,0x59,0x7a, 0x7,0x35,0x65, 0x7,0x35,0x64,\n  0x7,0x35,0x6c, 0x5,0x60,0x29, 0x7,0x35,0x6e, 0x7,0x3d,0x75,\n  0x7,0x35,0x62, 0x5,0x5a,0x22, 0x7,0x35,0x6d, 0x5,0x59,0x7d,\n  0xf,0x59,0x26, 0xf,0x59,0x27, 0xf,0x59,0x28, 0xf,0x59,0x29,\n  0x5,0x5a,0x21, 0x7,0x3d,0x74, 0x5,0x60,0x28, 0x5,0x60,0x34,\n  0x7,0x3d,0x77, 0x5,0x60,0x2d, 0x5,0x60,0x2f, 0x5,0x60,0x33,\n  0x5,0x60,0x2b, 0x7,0x3d,0x76, 0x5,0x60,0x32, 0x5,0x60,0x35,\n  0x4,0x5a,0x2b, 0x5,0x60,0x36, 0x7,0x3d,0x78, 0x7,0x3d,0x7d,\n  0x7,0x45,0x2a, 0x7,0x3d,0x7a, 0x5,0x60,0x2a, 0x7,0x45,0x2b,\n  0x7,0x3e,0x21, 0x5,0x60,0x2e, 0x7,0x3d,0x79, 0x7,0x3d,0x7e,\n  0xf,0x5d,0x66, 0xf,0x5d,0x67, 0x7,0x3d,0x7b, 0x5,0x60,0x30,\n  0x7,0x3d,0x7c, 0x7,0x45,0x2f, 0x5,0x66,0x3f, 0x5,0x66,0x3b,\n  0x4,0x5e,0x56, 0x4,0x5e,0x5c, 0x5,0x60,0x38, 0x4,0x5e,0x5d,\n  0x5,0x66,0x3d, 0x5,0x60,0x37, 0x5,0x66,0x3c, 0x7,0x45,0x2e,\n  0x7,0x45,0x2d, 0x7,0x4b,0x7e, 0x4,0x5e,0x5e, 0x5,0x66,0x3e,\n  0x7,0x4c,0x22, 0x7,0x51,0x54, 0x7,0x45,0x2c, 0x7,0x45,0x29,\n  0x7,0x45,0x31, 0xf,0x61,0x5a, 0xf,0x61,0x5b, 0x7,0x4c,0x25,\n  0x7,0x4c,0x21, 0x4,0x5e,0x55, 0x7,0x45,0x32, 0x7,0x45,0x30,\n  0x5,0x6a,0x64, 0x7,0x4c,0x23, 0x5,0x6a,0x62, 0x4,0x62,0x3b,\n  0x4,0x65,0x3d, 0x7,0x51,0x53, 0x5,0x6a,0x69, 0x5,0x6a,0x66,\n  0x5,0x6a,0x68, 0x5,0x6a,0x6a, 0x7,0x51,0x51, 0x4,0x62,0x37,\n  0x5,0x6a,0x67, 0x5,0x60,0x39, 0x5,0x6a,0x63, 0x7,0x51,0x52,\n  0x4,0x62,0x39, 0x7,0x51,0x58, 0x7,0x4c,0x24, 0x7,0x51,0x57,\n  0x4,0x62,0x3a, 0xf,0x64,0x58, 0xf,0x64,0x59, 0x5,0x6a,0x65,\n  0x7,0x51,0x56, 0x5,0x6a,0x6b, 0x4,0x65,0x3e, 0x7,0x51,0x55,\n  0x7,0x51,0x59, 0x7,0x51,0x5f, 0x7,0x56,0x44, 0x5,0x71,0x7d,\n  0x7,0x51,0x60, 0x5,0x6e,0x65, 0x4,0x65,0x3f, 0x5,0x71,0x7e,\n  0x5,0x6e,0x64, 0x7,0x51,0x5e, 0x7,0x51,0x62, 0x5,0x6e,0x63,\n  0x7,0x4c,0x27, 0x7,0x51,0x61, 0x7,0x51,0x5b, 0x7,0x51,0x5c,\n  0x7,0x51,0x5d, 0x7,0x56,0x45, 0x7,0x51,0x63, 0x7,0x51,0x5a,\n  0x5,0x72,0x28, 0x5,0x72,0x22, 0x7,0x56,0x46, 0x4,0x68,0x25,\n  0x5,0x72,0x24, 0x5,0x72,0x21, 0x7,0x56,0x47, 0x5,0x72,0x2b,\n  0x7,0x56,0x48, 0x5,0x72,0x2a, 0x5,0x72,0x23, 0x5,0x72,0x27,\n  0x5,0x72,0x25, 0x7,0x56,0x49, 0x5,0x72,0x26, 0x5,0x72,0x29,\n  0xf,0x68,0x7e, 0x4,0x69,0x66, 0x5,0x74,0x6e, 0x5,0x74,0x6f,\n  0x7,0x5a,0x37, 0x7,0x5d,0x54, 0x7,0x5a,0x36, 0x5,0x74,0x70,\n  0x7,0x5a,0x35, 0xf,0x6a,0x37, 0x7,0x5a,0x34, 0x5,0x76,0x6e,\n  0x7,0x5d,0x56, 0x5,0x76,0x6f, 0x5,0x76,0x70, 0x5,0x78,0x4a,\n  0x7,0x5d,0x55, 0x5,0x78,0x4b, 0x5,0x78,0x4c, 0x4,0x6c,0x3c,\n  0x7,0x60,0x28, 0x7,0x60,0x2a, 0x7,0x60,0x29, 0x5,0x79,0x5d,\n  0x7,0x64,0x27, 0x5,0x7b,0x25, 0x6,0x3c,0x79, 0x6,0x46,0x3c,\n  0x6,0x64,0x46, 0x7,0x2b,0x41, 0x6,0x64,0x48, 0x6,0x64,0x47,\n  0x5,0x52,0x6c, 0x4,0x55,0x24, 0x4,0x55,0x25, 0x7,0x3e,0x22,\n  0x7,0x3e,0x23, 0x7,0x35,0x71, 0x7,0x35,0x73, 0x7,0x35,0x72,\n  0x7,0x4c,0x29, 0x7,0x4c,0x28, 0x7,0x45,0x33, 0x7,0x4d,0x73,\n  0x7,0x51,0x64, 0x7,0x60,0x2b, 0x4,0x6e,0x26, 0xf,0x32,0x71,\n  0x4,0x41,0x7c, 0x6,0x5a,0x43, 0x5,0x47,0x54, 0x6,0x64,0x49,\n  0x6,0x64,0x4a, 0xf,0x4d,0x41, 0xf,0x53,0x29, 0x6,0x64,0x4b,\n  0x7,0x2b,0x42, 0xf,0x53,0x2a, 0xf,0x59,0x2a, 0x7,0x35,0x74,\n  0xf,0x5d,0x68, 0x7,0x3e,0x24, 0x7,0x45,0x36, 0x5,0x66,0x41,\n  0x5,0x66,0x40, 0x5,0x66,0x42, 0x7,0x45,0x35, 0x7,0x45,0x34,\n  0x5,0x6a,0x6c, 0x4,0x62,0x3d, 0x4,0x62,0x3e, 0x7,0x4c,0x2a,\n  0x7,0x51,0x65, 0xf,0x66,0x7c, 0x5,0x72,0x2c, 0xf,0x69,0x21,\n  0x7,0x56,0x4a, 0x7,0x5d,0x57, 0x5,0x7a,0x4b, 0x5,0x36,0x4b,\n  0x5,0x36,0x4c, 0x5,0x3d,0x50, 0x6,0x50,0x48, 0xf,0x40,0x31,\n  0x6,0x50,0x47, 0x5,0x44,0x49, 0x6,0x5a,0x45, 0x6,0x5a,0x44,\n  0x6,0x5a,0x47, 0x6,0x5a,0x46, 0x5,0x4b,0x51, 0x6,0x64,0x4d,\n  0x6,0x64,0x4e, 0x5,0x4b,0x50, 0x4,0x48,0x61, 0x6,0x64,0x4c,\n  0x6,0x64,0x52, 0x5,0x4b,0x4f, 0x7,0x2b,0x43, 0xf,0x4d,0x42,\n  0xf,0x4d,0x43, 0xf,0x4d,0x44, 0xf,0x4d,0x45, 0x7,0x2b,0x46,\n  0x6,0x64,0x4f, 0x6,0x64,0x51, 0x5,0x4b,0x52, 0x7,0x2b,0x4a,\n  0x5,0x52,0x72, 0x7,0x2b,0x4e, 0x7,0x2b,0x47, 0x5,0x5a,0x32,\n  0x5,0x52,0x74, 0x5,0x52,0x77, 0x5,0x52,0x6d, 0x5,0x52,0x70,\n  0x5,0x52,0x6e, 0x5,0x52,0x75, 0x7,0x2b,0x44, 0x5,0x52,0x76,\n  0x7,0x2b,0x48, 0x5,0x52,0x73, 0x7,0x2b,0x4b, 0x7,0x2b,0x49,\n  0x5,0x52,0x6f, 0x7,0x2b,0x45, 0x7,0x2b,0x4c, 0x5,0x52,0x71,\n  0xf,0x53,0x2b, 0xf,0x53,0x2c, 0xf,0x53,0x2d, 0x7,0x2b,0x4d,\n  0x7,0x35,0x7a, 0x4,0x55,0x2c, 0x7,0x35,0x79, 0x5,0x5a,0x2f,\n  0x4,0x55,0x2a, 0x4,0x55,0x27, 0x4,0x55,0x2b, 0x4,0x55,0x28,\n  0x7,0x35,0x75, 0x5,0x5a,0x29, 0x4,0x55,0x29, 0x5,0x5a,0x30,\n  0x5,0x5a,0x2d, 0x7,0x36,0x24, 0x5,0x5a,0x33, 0x5,0x5a,0x27,\n  0x5,0x5a,0x31, 0x5,0x5a,0x34, 0x5,0x5a,0x2b, 0x7,0x35,0x7c,\n  0x7,0x35,0x7b, 0x7,0x36,0x26, 0x7,0x36,0x21, 0x7,0x35,0x78,\n  0x7,0x36,0x23, 0x5,0x5a,0x2a, 0x7,0x36,0x22, 0xf,0x59,0x2c,\n  0x5,0x5a,0x28, 0x7,0x35,0x7d, 0x7,0x35,0x7e, 0x7,0x36,0x27,\n  0x7,0x36,0x25, 0xf,0x59,0x2b, 0x7,0x35,0x76, 0x7,0x35,0x77,\n  0x5,0x60,0x3a, 0x7,0x3e,0x2c, 0x5,0x60,0x3b, 0x7,0x3e,0x26,\n  0x4,0x5a,0x2f, 0x7,0x3e,0x27, 0x7,0x3e,0x25, 0x5,0x60,0x3c,\n  0x4,0x5a,0x2c, 0x7,0x3e,0x2a, 0x7,0x3e,0x2b, 0x5,0x4b,0x53,\n  0x7,0x3e,0x28, 0x5,0x60,0x3e, 0x5,0x60,0x3d, 0xf,0x5d,0x69,\n  0xf,0x5d,0x6a, 0x7,0x45,0x3c, 0x5,0x66,0x4c, 0x5,0x66,0x4b,\n  0x5,0x66,0x47, 0x4,0x5e,0x64, 0x5,0x66,0x49, 0x5,0x66,0x48,\n  0x4,0x5e,0x61, 0x5,0x66,0x45, 0x5,0x66,0x4e, 0x4,0x5e,0x6d,\n  0x4,0x5e,0x69, 0x4,0x5e,0x6a, 0x4,0x5e,0x66, 0x5,0x66,0x4f,\n  0x5,0x66,0x43, 0x4,0x5e,0x6c, 0x7,0x45,0x3b, 0x7,0x45,0x3a,\n  0x7,0x45,0x37, 0x5,0x66,0x4a, 0xf,0x61,0x5d, 0xf,0x61,0x5e,\n  0xf,0x61,0x60, 0x4,0x5e,0x6b, 0xf,0x61,0x5c, 0x7,0x45,0x38,\n  0x5,0x66,0x44, 0x7,0x45,0x39, 0x5,0x66,0x4d, 0x5,0x6a,0x6d,\n  0x5,0x6a,0x73, 0x5,0x6a,0x6f, 0x4,0x62,0x43, 0x7,0x4c,0x31,\n  0x5,0x66,0x50, 0x7,0x4c,0x2c, 0x5,0x66,0x46, 0x5,0x6a,0x71,\n  0x5,0x6a,0x70, 0x5,0x6a,0x74, 0x7,0x4c,0x2b, 0x5,0x6a,0x72,\n  0x5,0x6a,0x76, 0x4,0x62,0x42, 0x5,0x6a,0x77, 0x7,0x4c,0x32,\n  0x7,0x4c,0x34, 0x5,0x6a,0x75, 0x7,0x4c,0x33, 0x7,0x4c,0x2d,\n  0x7,0x4c,0x2e, 0x7,0x4c,0x2f, 0xf,0x64,0x5b, 0xf,0x64,0x5c,\n  0xf,0x64,0x5d, 0x7,0x4c,0x30, 0x3,0x57,0x36, 0x7,0x4c,0x35,\n  0x4,0x65,0x45, 0x7,0x51,0x6a, 0x7,0x51,0x69, 0x5,0x6e,0x6e,\n  0x5,0x6e,0x69, 0x5,0x6e,0x6b, 0x5,0x6e,0x68, 0x4,0x65,0x42,\n  0x5,0x6e,0x70, 0xf,0x66,0x7d, 0x4,0x65,0x43, 0x4,0x65,0x44,\n  0x4,0x65,0x48, 0x5,0x6e,0x71, 0x5,0x6e,0x72, 0x5,0x6e,0x67,\n  0x7,0x51,0x68, 0x4,0x68,0x26, 0x5,0x6e,0x6a, 0x5,0x6e,0x6f,\n  0x5,0x6e,0x6c, 0x7,0x51,0x6b, 0x7,0x51,0x6f, 0x7,0x51,0x70,\n  0x7,0x51,0x71, 0x7,0x51,0x6d, 0x7,0x51,0x6c, 0xf,0x66,0x7e,\n  0xf,0x67,0x21, 0x7,0x51,0x67, 0x7,0x51,0x6e, 0x7,0x52,0x27,\n  0x7,0x51,0x66, 0x5,0x72,0x2f, 0x5,0x72,0x2e, 0x5,0x72,0x31,\n  0x4,0x68,0x27, 0x5,0x72,0x32, 0x5,0x72,0x30, 0x4,0x68,0x2c,\n  0x7,0x56,0x4d, 0x7,0x56,0x4c, 0x7,0x56,0x4e, 0x7,0x56,0x4b,\n  0xf,0x69,0x22, 0x7,0x56,0x4f, 0x7,0x56,0x50, 0x5,0x74,0x78,\n  0x7,0x5a,0x3d, 0x5,0x72,0x34, 0x7,0x5a,0x41, 0x7,0x5a,0x38,\n  0x5,0x74,0x71, 0x7,0x5a,0x3b, 0x5,0x72,0x33, 0x5,0x74,0x74,\n  0x5,0x74,0x77, 0x5,0x74,0x73, 0x7,0x5a,0x40, 0x4,0x69,0x6c,\n  0x5,0x74,0x75, 0x7,0x5a,0x39, 0x7,0x5a,0x3a, 0x7,0x5a,0x3c,\n  0xf,0x6a,0x38, 0xf,0x6a,0x39, 0xf,0x6a,0x3a, 0x5,0x74,0x72,\n  0x5,0x74,0x79, 0x7,0x5a,0x3f, 0x7,0x5d,0x5f, 0x7,0x5d,0x5d,\n  0x5,0x76,0x71, 0x5,0x78,0x4e, 0x7,0x5d,0x5c, 0x7,0x5d,0x59,\n  0x5,0x76,0x72, 0x7,0x5d,0x5a, 0x7,0x5d,0x5e, 0x7,0x5d,0x5b,\n  0x7,0x5d,0x60, 0xf,0x6b,0x38, 0xf,0x6b,0x39, 0x7,0x5d,0x58,\n  0x5,0x78,0x4f, 0x7,0x60,0x31, 0x7,0x60,0x34, 0x5,0x78,0x4d,\n  0x7,0x60,0x33, 0x7,0x60,0x36, 0x7,0x60,0x35, 0x7,0x60,0x2f,\n  0x7,0x60,0x30, 0x7,0x60,0x2c, 0x7,0x60,0x32, 0x5,0x79,0x62,\n  0x7,0x61,0x63, 0x5,0x79,0x63, 0x5,0x79,0x5f, 0x4,0x6d,0x31,\n  0x5,0x79,0x60, 0x7,0x61,0x62, 0x5,0x79,0x5e, 0x5,0x79,0x61,\n  0x4,0x6d,0x32, 0x7,0x61,0x64, 0x5,0x7a,0x4c, 0x5,0x7a,0x4d,\n  0x4,0x6e,0x27, 0x7,0x64,0x29, 0x7,0x64,0x28, 0x4,0x6e,0x40,\n  0x7,0x64,0x72, 0x7,0x64,0x73, 0x7,0x64,0x71, 0x7,0x65,0x4e,\n  0x5,0x7c,0x23, 0x7,0x65,0x6a, 0x7,0x65,0x7a, 0x7,0x65,0x7b,\n  0x7,0x66,0x44, 0x5,0x3d,0x51, 0x4,0x3c,0x27, 0x6,0x5a,0x49,\n  0x6,0x5a,0x4a, 0x6,0x5a,0x48, 0x6,0x5a,0x4b, 0x4,0x48,0x63,\n  0x4,0x48,0x65, 0x5,0x4b,0x55, 0x6,0x64,0x58, 0x5,0x4b,0x54,\n  0x4,0x48,0x64, 0x6,0x64,0x56, 0x6,0x64,0x53, 0x6,0x64,0x54,\n  0x6,0x64,0x55, 0x6,0x64,0x57, 0x4,0x4e,0x72, 0x4,0x4e,0x71,\n  0x5,0x52,0x7a, 0x5,0x52,0x79, 0x7,0x2b,0x52, 0x7,0x36,0x2c,\n  0x5,0x52,0x78, 0x5,0x52,0x7b, 0x4,0x4e,0x77, 0x7,0x2b,0x50,\n  0x7,0x2b,0x54, 0x7,0x2b,0x51, 0x4,0x4e,0x78, 0x7,0x2b,0x53,\n  0x5,0x5a,0x36, 0x5,0x5a,0x35, 0x4,0x55,0x33, 0x7,0x36,0x2b,\n  0x7,0x2b,0x4f, 0x7,0x36,0x2a, 0x7,0x36,0x29, 0x7,0x3e,0x2e,\n  0x4,0x5a,0x34, 0x7,0x3e,0x32, 0x4,0x5a,0x32, 0x7,0x3e,0x33,\n  0x5,0x60,0x3f, 0x7,0x3e,0x31, 0x7,0x3e,0x2d, 0x7,0x3e,0x2f,\n  0x7,0x3e,0x30, 0x5,0x66,0x59, 0x7,0x45,0x3e, 0x4,0x5e,0x6f,\n  0x7,0x45,0x3d, 0x5,0x66,0x57, 0x7,0x45,0x3f, 0x5,0x66,0x52,\n  0x5,0x6a,0x78, 0x5,0x66,0x55, 0x5,0x66,0x53, 0x5,0x66,0x56,\n  0x5,0x66,0x58, 0x7,0x3e,0x34, 0x5,0x66,0x54, 0x7,0x4c,0x3b,\n  0x5,0x6a,0x7a, 0x5,0x6a,0x79, 0x7,0x4c,0x3a, 0x7,0x4c,0x37,\n  0x5,0x6a,0x7c, 0x5,0x6a,0x7d, 0x5,0x6a,0x7b, 0x7,0x4c,0x3d,\n  0x7,0x4c,0x3e, 0x7,0x4c,0x39, 0x7,0x4c,0x38, 0x7,0x4c,0x3c,\n  0x7,0x4c,0x36, 0x4,0x65,0x4a, 0x5,0x6e,0x75, 0x5,0x6e,0x74,\n  0x5,0x6e,0x73, 0x7,0x51,0x73, 0x7,0x51,0x74, 0x7,0x51,0x75,\n  0x4,0x68,0x2f, 0x5,0x72,0x36, 0x7,0x56,0x57, 0x4,0x68,0x2e,\n  0x5,0x72,0x35, 0x5,0x72,0x37, 0x7,0x56,0x53, 0x7,0x56,0x54,\n  0x5,0x72,0x38, 0x7,0x56,0x55, 0xf,0x69,0x23, 0x7,0x56,0x56,\n  0x7,0x56,0x52, 0x4,0x69,0x6d, 0x7,0x5a,0x42, 0x4,0x69,0x70,\n  0x7,0x5a,0x43, 0x4,0x69,0x6f, 0x7,0x5a,0x44, 0x7,0x5d,0x65,\n  0x7,0x5d,0x66, 0x5,0x76,0x73, 0x4,0x6b,0x36, 0x5,0x76,0x75,\n  0x4,0x6b,0x37, 0x7,0x5d,0x62, 0x5,0x76,0x74, 0x7,0x5d,0x67,\n  0x7,0x5d,0x61, 0x7,0x5d,0x63, 0x7,0x5d,0x64, 0x4,0x6c,0x3f,\n  0x5,0x78,0x50, 0x4,0x6d,0x34, 0x7,0x61,0x65, 0xf,0x6b,0x3a,\n  0x7,0x63,0x27, 0x5,0x7a,0x4e, 0x7,0x63,0x28, 0x7,0x64,0x2a,\n  0x7,0x64,0x74, 0x5,0x7b,0x6e, 0x4,0x42,0x23, 0x4,0x48,0x66,\n  0x5,0x46,0x64, 0x5,0x4b,0x56, 0x6,0x64,0x5a, 0xf,0x4d,0x46,\n  0xf,0x4d,0x47, 0xf,0x4d,0x48, 0x6,0x64,0x59, 0x7,0x2b,0x56,\n  0xf,0x53,0x2e, 0xf,0x53,0x2f, 0x7,0x36,0x2e, 0x7,0x36,0x2d,\n  0xf,0x59,0x2d, 0xf,0x59,0x2e, 0x4,0x5a,0x36, 0x5,0x60,0x40,\n  0xf,0x5d,0x6b, 0xf,0x5d,0x6c, 0x7,0x45,0x40, 0xf,0x61,0x61,\n  0xf,0x61,0x62, 0x7,0x4c,0x3f, 0xf,0x64,0x5f, 0x5,0x6e,0x76,\n  0xf,0x67,0x22, 0xf,0x67,0x23, 0xf,0x67,0x24, 0xf,0x67,0x25,\n  0x4,0x68,0x31, 0x7,0x56,0x58, 0x7,0x5a,0x45, 0x7,0x5d,0x68,\n  0x7,0x5d,0x69, 0x7,0x5d,0x6a, 0x7,0x60,0x37, 0xf,0x6b,0x73,\n  0x7,0x61,0x66, 0x7,0x61,0x67, 0x7,0x63,0x29, 0x7,0x64,0x2b,\n  0x4,0x6e,0x28, 0x7,0x65,0x7c, 0x6,0x50,0x49, 0x6,0x50,0x4a,\n  0x6,0x5a,0x4d, 0x6,0x5a,0x4c, 0xf,0x46,0x3a, 0xf,0x40,0x69,\n  0x4,0x48,0x68, 0x5,0x4b,0x58, 0x6,0x64,0x60, 0x6,0x64,0x5f,\n  0x6,0x64,0x5d, 0x6,0x64,0x61, 0x6,0x64,0x5b, 0x6,0x64,0x5c,\n  0x5,0x4b,0x57, 0x5,0x4b,0x5a, 0x5,0x52,0x7e, 0x7,0x2b,0x57,\n  0x7,0x2b,0x5a, 0x4,0x4e,0x7e, 0x7,0x2b,0x58, 0x5,0x53,0x24,\n  0x4,0x4f,0x22, 0x7,0x2b,0x5b, 0x5,0x53,0x23, 0x4,0x4e,0x7c,\n  0x4,0x4e,0x7d, 0x5,0x52,0x7c, 0x4,0x4e,0x7a, 0x5,0x52,0x7d,\n  0x5,0x53,0x22, 0x5,0x53,0x21, 0x7,0x2b,0x5c, 0x7,0x2b,0x59,\n  0xf,0x53,0x30, 0xf,0x53,0x31, 0xf,0x53,0x32, 0xf,0x53,0x33,\n  0x7,0x36,0x2f, 0x4,0x55,0x37, 0x7,0x36,0x31, 0x5,0x5a,0x3a,\n  0x7,0x36,0x30, 0x4,0x55,0x39, 0x4,0x55,0x34, 0x4,0x55,0x3b,\n  0x5,0x5a,0x37, 0x5,0x5a,0x39, 0x4,0x55,0x3a, 0x4,0x55,0x38,\n  0x7,0x36,0x33, 0x5,0x5a,0x38, 0xf,0x59,0x2f, 0xf,0x59,0x30,\n  0xf,0x59,0x31, 0xf,0x59,0x33, 0x7,0x36,0x32, 0x4,0x5a,0x3a,\n  0x4,0x5a,0x3c, 0x7,0x3e,0x3a, 0x5,0x60,0x41, 0x5,0x60,0x44,\n  0x5,0x60,0x42, 0x7,0x3e,0x38, 0x5,0x60,0x45, 0x5,0x60,0x46,\n  0x5,0x60,0x43, 0x7,0x3e,0x35, 0x4,0x5a,0x39, 0x7,0x3e,0x36,\n  0xf,0x5d,0x6d, 0xf,0x5d,0x6e, 0xf,0x5d,0x6f, 0x7,0x3e,0x37,\n  0x7,0x3e,0x39, 0x7,0x3e,0x3b, 0x7,0x45,0x42, 0x5,0x66,0x5e,\n  0x4,0x5e,0x71, 0x5,0x66,0x5c, 0x5,0x66,0x60, 0x5,0x66,0x5f,\n  0x7,0x45,0x44, 0x5,0x66,0x61, 0x7,0x4c,0x40, 0x7,0x45,0x43,\n  0x4,0x5e,0x72, 0x5,0x66,0x5a, 0x4,0x5e,0x78, 0x5,0x66,0x5b,\n  0xf,0x61,0x63, 0xf,0x61,0x65, 0x5,0x66,0x5d, 0x7,0x45,0x41,\n  0xf,0x61,0x64, 0x4,0x62,0x4d, 0x7,0x4c,0x43, 0x7,0x4c,0x47,\n  0x5,0x6a,0x7e, 0x5,0x6b,0x21, 0x5,0x6b,0x23, 0x4,0x62,0x50,\n  0x7,0x4c,0x48, 0x7,0x4c,0x46, 0x7,0x4c,0x41, 0x5,0x6b,0x24,\n  0x5,0x6b,0x22, 0x7,0x4c,0x45, 0x7,0x4c,0x42, 0x4,0x62,0x4b,\n  0x7,0x4c,0x44, 0xf,0x64,0x60, 0xf,0x64,0x61, 0xf,0x64,0x63,\n  0x5,0x6e,0x7c, 0x7,0x51,0x76, 0x5,0x6e,0x77, 0x5,0x6e,0x7b,\n  0x5,0x6e,0x7a, 0x5,0x6e,0x79, 0x4,0x65,0x50, 0x4,0x65,0x4c,\n  0x5,0x6e,0x7e, 0x5,0x6e,0x78, 0x4,0x65,0x4b, 0x7,0x51,0x77,\n  0x7,0x51,0x78, 0x7,0x51,0x7b, 0x7,0x51,0x7c, 0xf,0x67,0x26,\n  0xf,0x67,0x27, 0xf,0x67,0x28, 0x5,0x6e,0x7d, 0x5,0x72,0x3b,\n  0x5,0x72,0x3e, 0x5,0x72,0x3a, 0x7,0x56,0x59, 0x4,0x68,0x32,\n  0x4,0x68,0x34, 0x5,0x72,0x39, 0x4,0x68,0x33, 0x5,0x72,0x3d,\n  0x7,0x56,0x5a, 0x5,0x72,0x3c, 0x7,0x56,0x5e, 0xf,0x69,0x24,\n  0x7,0x56,0x5b, 0x7,0x56,0x5c, 0x5,0x75,0x21, 0x5,0x74,0x7c,\n  0x7,0x5a,0x46, 0x5,0x75,0x22, 0x5,0x74,0x7e, 0x5,0x74,0x7b,\n  0x5,0x75,0x25, 0x5,0x75,0x24, 0x5,0x75,0x23, 0x5,0x74,0x7d,\n  0x5,0x75,0x26, 0x7,0x56,0x5d, 0x4,0x69,0x73, 0x7,0x5a,0x47,\n  0x7,0x5a,0x48, 0xf,0x6a,0x3b, 0xf,0x6a,0x3c, 0x5,0x76,0x77,\n  0x4,0x6b,0x38, 0x4,0x6b,0x39, 0x5,0x76,0x76, 0x7,0x5d,0x6c,\n  0x7,0x5d,0x6d, 0x7,0x5d,0x6b, 0xf,0x6b,0x3b, 0x4,0x6c,0x40,\n  0x7,0x60,0x38, 0x5,0x78,0x51, 0x4,0x6c,0x44, 0x4,0x6c,0x42,\n  0x5,0x79,0x65, 0x7,0x61,0x68, 0x5,0x79,0x64, 0x4,0x6d,0x36,\n  0xf,0x6c,0x42, 0xf,0x6c,0x43, 0x7,0x61,0x69, 0x5,0x7a,0x4f,\n  0x7,0x63,0x2a, 0x7,0x63,0x2b, 0x7,0x64,0x2c, 0x4,0x6e,0x29,\n  0x5,0x7b,0x26, 0xf,0x6c,0x72, 0x7,0x64,0x77, 0x7,0x64,0x76,\n  0x5,0x7b,0x4e, 0x4,0x6e,0x54, 0x6,0x23,0x3d, 0x6,0x23,0x3c,\n  0x5,0x44,0x4b, 0x5,0x4b,0x5b, 0x5,0x4b,0x5c, 0x6,0x64,0x62,\n  0x7,0x2b,0x5d, 0x7,0x36,0x34, 0x7,0x3e,0x3c, 0x7,0x45,0x45,\n  0x4,0x5e,0x79, 0x7,0x51,0x7e, 0x7,0x56,0x5f, 0x5,0x72,0x40,\n  0x7,0x5a,0x49, 0x7,0x60,0x3a, 0x7,0x60,0x39, 0x5,0x78,0x53,\n  0x5,0x7b,0x4f, 0x7,0x2b,0x5e, 0x4,0x4f,0x23, 0x4,0x55,0x3c,\n  0x7,0x45,0x46, 0x7,0x52,0x21, 0x7,0x56,0x61, 0x7,0x56,0x60,\n  0x7,0x5a,0x4a, 0x7,0x5d,0x6e, 0xf,0x6c,0x73, 0x5,0x7b,0x50,\n  0x4,0x42,0x24, 0x6,0x5a,0x4e, 0x6,0x64,0x64, 0x6,0x64,0x63,\n  0x7,0x2b,0x5f, 0x7,0x36,0x38, 0x4,0x55,0x3e, 0x5,0x5a,0x3b,\n  0x7,0x36,0x36, 0x7,0x36,0x35, 0x4,0x55,0x3d, 0x7,0x36,0x37,\n  0x5,0x60,0x47, 0x7,0x3e,0x3d, 0x4,0x5e,0x7a, 0x7,0x45,0x48,\n  0x7,0x45,0x49, 0x7,0x45,0x47, 0x7,0x4c,0x49, 0x5,0x6b,0x25,\n  0x7,0x4c,0x4a, 0x4,0x65,0x51, 0x7,0x52,0x24, 0x7,0x52,0x23,\n  0x7,0x52,0x22, 0x7,0x52,0x25, 0x7,0x56,0x62, 0x4,0x68,0x35,\n  0x7,0x56,0x64, 0x5,0x72,0x42, 0x7,0x56,0x63, 0x7,0x56,0x65,\n  0x7,0x56,0x66, 0x5,0x75,0x27, 0x7,0x5a,0x4c, 0x7,0x5d,0x71,\n  0x7,0x5d,0x72, 0x5,0x76,0x78, 0x4,0x69,0x75, 0x4,0x6b,0x3a,\n  0x7,0x5d,0x70, 0x5,0x76,0x79, 0x7,0x5d,0x6f, 0x7,0x5d,0x73,\n  0x4,0x6c,0x46, 0x4,0x6c,0x45, 0x7,0x5d,0x74, 0x7,0x60,0x3b,\n  0x7,0x61,0x6b, 0x7,0x61,0x6c, 0x5,0x7a,0x50, 0x7,0x63,0x2c,\n  0x7,0x63,0x2d, 0x7,0x63,0x2e, 0x4,0x6e,0x2a, 0x7,0x64,0x2d,\n  0x7,0x64,0x79, 0x7,0x64,0x78, 0x7,0x64,0x7a, 0x7,0x65,0x4f,\n  0x5,0x7c,0x24, 0x4,0x6e,0x51, 0x5,0x7c,0x2d, 0x7,0x65,0x7d,\n  0x7,0x66,0x4a, 0x7,0x66,0x4b, 0x6,0x50,0x4b, 0x5,0x3d,0x53,\n  0x6,0x5a,0x52, 0x5,0x44,0x4e, 0x6,0x5a,0x51, 0x4,0x42,0x26,\n  0x5,0x44,0x4c, 0x6,0x5a,0x50, 0x5,0x44,0x4d, 0x4,0x42,0x25,\n  0x6,0x5a,0x4f, 0xf,0x39,0x30, 0xf,0x39,0x2f, 0x6,0x5a,0x53,\n  0x5,0x4b,0x5f, 0x5,0x4b,0x60, 0x5,0x4b,0x61, 0x5,0x4b,0x5e,\n  0x5,0x4b,0x5d, 0x5,0x4b,0x62, 0x6,0x64,0x68, 0x6,0x64,0x65,\n  0x6,0x64,0x69, 0xf,0x4d,0x49, 0xf,0x4d,0x4a, 0xf,0x4d,0x4b,\n  0x6,0x64,0x6b, 0x6,0x64,0x66, 0x6,0x64,0x6e, 0x6,0x64,0x6c,\n  0x6,0x64,0x6d, 0x6,0x64,0x6a, 0x6,0x64,0x67, 0x4,0x4f,0x27,\n  0x5,0x53,0x29, 0x7,0x2b,0x61, 0x7,0x2b,0x60, 0x5,0x53,0x28,\n  0x5,0x53,0x2b, 0x5,0x5a,0x41, 0x5,0x53,0x2a, 0x4,0x4f,0x26,\n  0x7,0x2b,0x63, 0x5,0x53,0x25, 0xf,0x53,0x34, 0xf,0x53,0x35,\n  0xf,0x53,0x36, 0x5,0x53,0x27, 0x7,0x2b,0x62, 0x5,0x53,0x26,\n  0x5,0x5a,0x3c, 0x7,0x36,0x3a, 0x5,0x5a,0x45, 0x5,0x5a,0x43,\n  0x7,0x36,0x39, 0x4,0x55,0x40, 0x5,0x5a,0x44, 0x7,0x36,0x3b,\n  0xf,0x59,0x34, 0x5,0x5a,0x3e, 0x5,0x5a,0x3d, 0x5,0x5a,0x3f,\n  0x5,0x5a,0x42, 0x7,0x36,0x3c, 0x5,0x5a,0x40, 0x4,0x5a,0x3d,\n  0x5,0x60,0x49, 0x5,0x60,0x4c, 0x5,0x60,0x50, 0x4,0x5a,0x3e,\n  0x7,0x3e,0x3e, 0x5,0x60,0x48, 0x5,0x60,0x4a, 0x5,0x60,0x4f,\n  0x5,0x60,0x4d, 0x7,0x3e,0x40, 0x7,0x3e,0x41, 0x7,0x3e,0x43,\n  0xf,0x5d,0x70, 0xf,0x5d,0x71, 0xf,0x5d,0x72, 0x5,0x60,0x4e,\n  0x7,0x3e,0x3f, 0x7,0x3e,0x42, 0x5,0x60,0x4b, 0x5,0x66,0x63,\n  0x7,0x45,0x4b, 0x4,0x5e,0x7b, 0x5,0x66,0x69, 0x7,0x45,0x4e,\n  0x5,0x66,0x67, 0x5,0x66,0x65, 0x7,0x45,0x4f, 0x7,0x45,0x4c,\n  0xf,0x61,0x67, 0x7,0x45,0x4a, 0x7,0x45,0x51, 0x5,0x66,0x62,\n  0x7,0x45,0x4d, 0x7,0x45,0x50, 0x5,0x66,0x66, 0x5,0x6b,0x26,\n  0x5,0x6b,0x29, 0x7,0x4c,0x4b, 0x5,0x6b,0x27, 0x7,0x4c,0x4c,\n  0x7,0x4c,0x4d, 0xf,0x64,0x64, 0xf,0x64,0x65, 0xf,0x64,0x66,\n  0xf,0x64,0x67, 0x5,0x66,0x64, 0x5,0x6b,0x28, 0x7,0x52,0x2b,\n  0x4,0x65,0x52, 0x7,0x52,0x2a, 0x5,0x6f,0x21, 0x7,0x52,0x29,\n  0x7,0x52,0x28, 0x5,0x6f,0x22, 0x7,0x52,0x26, 0xf,0x67,0x29,\n  0x5,0x72,0x44, 0x5,0x72,0x46, 0x5,0x72,0x48, 0x4,0x68,0x37,\n  0x7,0x56,0x67, 0x7,0x56,0x68, 0xf,0x69,0x25, 0x5,0x72,0x45,\n  0x5,0x72,0x43, 0x7,0x56,0x69, 0x5,0x72,0x47, 0x5,0x75,0x2a,\n  0x4,0x62,0x51, 0x7,0x5a,0x50, 0x4,0x69,0x78, 0x5,0x75,0x28,\n  0x7,0x5a,0x4e, 0x4,0x69,0x79, 0x5,0x75,0x2b, 0xf,0x6a,0x3d,\n  0x5,0x75,0x2c, 0x5,0x75,0x29, 0x4,0x69,0x7a, 0xf,0x67,0x2a,\n  0x7,0x5a,0x4d, 0x5,0x76,0x7b, 0x5,0x76,0x7a, 0xf,0x69,0x26,\n  0x5,0x78,0x54, 0x5,0x78,0x55, 0x4,0x6c,0x47, 0x7,0x60,0x3f,\n  0x7,0x60,0x3e, 0x7,0x60,0x40, 0x7,0x60,0x3d, 0x5,0x79,0x67,\n  0x5,0x79,0x66, 0xf,0x6c,0x44, 0x7,0x63,0x2f, 0x4,0x6e,0x2b,\n  0x7,0x64,0x2e, 0x7,0x64,0x2f, 0x4,0x6e,0x41, 0x5,0x7b,0x51,\n  0x5,0x7b,0x6f, 0x5,0x7c,0x25, 0x5,0x7c,0x40, 0x4,0x30,0x43,\n  0x4,0x42,0x2a, 0x4,0x42,0x27, 0x6,0x5a,0x55, 0x4,0x42,0x28,\n  0x6,0x5a,0x56, 0x5,0x44,0x4f, 0xf,0x46,0x3b, 0x6,0x64,0x6f,\n  0x5,0x4b,0x65, 0x4,0x48,0x6c, 0x5,0x4b,0x63, 0xf,0x4d,0x4c,\n  0xf,0x4d,0x4d, 0x5,0x4b,0x66, 0x4,0x4f,0x2f, 0x4,0x4f,0x33,\n  0x4,0x4f,0x31, 0x4,0x4f,0x2d, 0x7,0x2b,0x68, 0x5,0x53,0x31,\n  0x5,0x53,0x30, 0x7,0x2b,0x65, 0x7,0x2b,0x64, 0x5,0x53,0x2e,\n  0x4,0x4f,0x38, 0x5,0x53,0x33, 0x5,0x53,0x2c, 0x5,0x53,0x2d,\n  0x7,0x2b,0x6c, 0x7,0x2b,0x66, 0x4,0x4f,0x36, 0x5,0x53,0x32,\n  0xf,0x53,0x37, 0xf,0x53,0x3a, 0xf,0x53,0x3d, 0x7,0x2b,0x6b,\n  0x7,0x2b,0x67, 0x7,0x2b,0x69, 0x4,0x4f,0x2e, 0xf,0x53,0x39,\n  0x5,0x53,0x2f, 0x5,0x5a,0x48, 0x5,0x5a,0x46, 0x7,0x36,0x3d,\n  0x5,0x5a,0x49, 0x4,0x55,0x46, 0x4,0x5a,0x46, 0x5,0x5a,0x4e,\n  0x5,0x5a,0x4d, 0x4,0x55,0x49, 0x7,0x36,0x43, 0x7,0x36,0x3e,\n  0x7,0x36,0x41, 0x7,0x36,0x40, 0x5,0x5a,0x4c, 0x7,0x36,0x44,\n  0xf,0x59,0x36, 0xf,0x59,0x37, 0xf,0x59,0x39, 0xf,0x59,0x3a,\n  0x5,0x5a,0x4b, 0x7,0x36,0x42, 0xf,0x59,0x35, 0x5,0x5a,0x47,\n  0x7,0x36,0x3f, 0x5,0x60,0x56, 0x4,0x5a,0x48, 0x5,0x60,0x57,\n  0x5,0x60,0x54, 0x5,0x60,0x52, 0x4,0x5a,0x47, 0x7,0x3e,0x4b,\n  0x5,0x60,0x55, 0x7,0x3e,0x46, 0x7,0x3e,0x4d, 0x7,0x3e,0x45,\n  0x4,0x5a,0x4b, 0x7,0x3e,0x4c, 0x5,0x60,0x5a, 0x5,0x60,0x58,\n  0x7,0x3e,0x44, 0x4,0x5a,0x4a, 0xf,0x46,0x3c, 0xf,0x5d,0x73,\n  0xf,0x5d,0x74, 0xf,0x5d,0x75, 0xf,0x5d,0x77, 0xf,0x5d,0x79,\n  0x7,0x3e,0x48, 0x5,0x60,0x5b, 0x5,0x60,0x53, 0x7,0x3e,0x4a,\n  0x5,0x60,0x51, 0x5,0x60,0x59, 0x5,0x66,0x77, 0x5,0x66,0x74,\n  0x5,0x66,0x70, 0x5,0x66,0x6b, 0x7,0x45,0x53, 0x4,0x5f,0x28,\n  0x5,0x66,0x6d, 0x7,0x45,0x52, 0x5,0x66,0x6a, 0x5,0x66,0x71,\n  0x5,0x66,0x75, 0x5,0x66,0x72, 0x5,0x66,0x6f, 0x5,0x66,0x6c,\n  0x7,0x45,0x54, 0xf,0x61,0x68, 0xf,0x61,0x69, 0xf,0x61,0x6a,\n  0xf,0x61,0x6b, 0xf,0x61,0x6c, 0xf,0x61,0x6d, 0xf,0x61,0x6e,\n  0xf,0x61,0x6f, 0xf,0x61,0x71, 0xf,0x61,0x73, 0x7,0x45,0x55,\n  0x7,0x3e,0x47, 0x5,0x66,0x76, 0x5,0x66,0x73, 0x7,0x4c,0x5b,\n  0x7,0x4c,0x58, 0x4,0x62,0x5e, 0x7,0x4c,0x52, 0x5,0x6b,0x2d,\n  0x4,0x62,0x52, 0x5,0x6b,0x2f, 0x7,0x4c,0x4f, 0x7,0x4c,0x51,\n  0x4,0x62,0x5f, 0x5,0x66,0x78, 0x4,0x62,0x63, 0x5,0x6b,0x32,\n  0x4,0x62,0x5b, 0x7,0x4c,0x4e, 0x4,0x62,0x5a, 0x4,0x62,0x65,\n  0x7,0x4c,0x5a, 0x7,0x4c,0x53, 0x7,0x4c,0x59, 0x4,0x62,0x58,\n  0x7,0x4c,0x55, 0x5,0x6b,0x36, 0x5,0x6b,0x2e, 0x7,0x4c,0x50,\n  0x5,0x6b,0x34, 0xf,0x64,0x6e, 0xf,0x64,0x68, 0xf,0x64,0x6a,\n  0xf,0x64,0x6c, 0xf,0x64,0x6f, 0xf,0x64,0x70, 0xf,0x64,0x71,\n  0x5,0x6b,0x30, 0x7,0x4c,0x54, 0x7,0x4c,0x57, 0x4,0x62,0x53,\n  0x5,0x6b,0x37, 0x5,0x6b,0x2a, 0xf,0x64,0x69, 0x5,0x6b,0x2c,\n  0xf,0x61,0x70, 0x7,0x4c,0x56, 0x5,0x6f,0x27, 0x7,0x52,0x2e,\n  0x5,0x6f,0x26, 0x5,0x6b,0x38, 0x5,0x6f,0x29, 0x7,0x52,0x2c,\n  0x4,0x65,0x58, 0x5,0x6f,0x2b, 0x7,0x52,0x2f, 0x7,0x52,0x2d,\n  0x5,0x6f,0x28, 0x4,0x65,0x56, 0x5,0x6f,0x24, 0x7,0x52,0x32,\n  0x4,0x65,0x5e, 0x5,0x6f,0x25, 0x5,0x6f,0x23, 0x4,0x65,0x60,\n  0x7,0x52,0x30, 0x5,0x6f,0x2c, 0x7,0x52,0x34, 0xf,0x67,0x2b,\n  0xf,0x67,0x2c, 0xf,0x67,0x2d, 0xf,0x67,0x2f, 0xf,0x67,0x30,\n  0xf,0x67,0x31, 0xf,0x67,0x32, 0xf,0x67,0x2e, 0x5,0x6f,0x2a,\n  0xf,0x67,0x34, 0x5,0x72,0x4a, 0x4,0x68,0x3f, 0x5,0x72,0x4f,\n  0x5,0x72,0x53, 0x5,0x77,0x23, 0x5,0x72,0x49, 0x5,0x72,0x52,\n  0x4,0x68,0x38, 0x7,0x56,0x71, 0x5,0x72,0x4c, 0x7,0x56,0x72,\n  0x5,0x72,0x57, 0x7,0x56,0x6d, 0x5,0x72,0x54, 0x5,0x72,0x4d,\n  0x7,0x56,0x73, 0x7,0x56,0x75, 0x7,0x56,0x6a, 0x7,0x56,0x74,\n  0x5,0x72,0x56, 0x7,0x56,0x6e, 0x7,0x56,0x6f, 0xf,0x69,0x28,\n  0xf,0x69,0x29, 0xf,0x69,0x2b, 0xf,0x69,0x2c, 0xf,0x69,0x2d,\n  0xf,0x69,0x2e, 0xf,0x69,0x2f, 0xf,0x69,0x30, 0xf,0x69,0x31,\n  0xf,0x69,0x32, 0x7,0x56,0x6b, 0x7,0x56,0x6c, 0x5,0x72,0x55,\n  0x7,0x56,0x70, 0x5,0x72,0x50, 0x7,0x5a,0x54, 0x7,0x5a,0x52,\n  0x5,0x75,0x32, 0x4,0x6a,0x22, 0x5,0x75,0x2e, 0x5,0x75,0x2f,\n  0x7,0x5a,0x5a, 0x7,0x5a,0x57, 0x5,0x75,0x30, 0x7,0x5a,0x5c,\n  0x7,0x5a,0x59, 0x5,0x75,0x34, 0x7,0x5a,0x56, 0x7,0x5a,0x5b,\n  0x7,0x5a,0x53, 0x7,0x5a,0x55, 0x7,0x5a,0x51, 0x7,0x5a,0x5e,\n  0xf,0x6a,0x41, 0xf,0x6a,0x42, 0xf,0x6a,0x43, 0xf,0x6a,0x40,\n  0x7,0x5a,0x5f, 0x5,0x75,0x33, 0x7,0x5a,0x58, 0x7,0x5a,0x5d,\n  0x5,0x75,0x31, 0x5,0x76,0x7e, 0x7,0x5d,0x78, 0x5,0x77,0x22,\n  0x4,0x6b,0x3e, 0x4,0x6b,0x3f, 0x5,0x76,0x7c, 0x7,0x5d,0x77,\n  0x4,0x65,0x5c, 0x7,0x60,0x46, 0x7,0x5d,0x75, 0x7,0x5e,0x22,\n  0x7,0x5d,0x76, 0x5,0x76,0x7d, 0x7,0x5e,0x21, 0x7,0x5d,0x7c,\n  0x5,0x77,0x21, 0x7,0x5d,0x79, 0xf,0x6b,0x3d, 0xf,0x6b,0x3f,\n  0x7,0x5d,0x7a, 0x7,0x5d,0x7d, 0x7,0x5d,0x7e, 0x7,0x5d,0x7b,\n  0xf,0x6b,0x3c, 0x7,0x60,0x43, 0x5,0x78,0x5c, 0x5,0x78,0x60,\n  0x5,0x78,0x5a, 0x7,0x60,0x41, 0x4,0x6c,0x4f, 0x4,0x6c,0x4c,\n  0x5,0x78,0x59, 0x5,0x78,0x61, 0x4,0x6c,0x4b, 0x5,0x78,0x5f,\n  0x5,0x78,0x5e, 0x5,0x78,0x57, 0x7,0x60,0x4b, 0x7,0x60,0x47,\n  0x5,0x78,0x58, 0xf,0x6b,0x75, 0xf,0x6b,0x78, 0x7,0x60,0x48,\n  0x7,0x60,0x42, 0x7,0x60,0x44, 0x7,0x60,0x45, 0x5,0x78,0x5d,\n  0x7,0x60,0x4a, 0x7,0x60,0x49, 0x7,0x61,0x73, 0x5,0x79,0x68,\n  0x4,0x6d,0x38, 0x5,0x79,0x69, 0x7,0x61,0x6e, 0x7,0x60,0x7a,\n  0x7,0x61,0x71, 0x7,0x61,0x6f, 0x5,0x79,0x6b, 0x7,0x61,0x72,\n  0x7,0x61,0x70, 0xf,0x6c,0x45, 0xf,0x6c,0x46, 0x5,0x79,0x6a,\n  0x7,0x61,0x6d, 0x7,0x63,0x35, 0x7,0x63,0x30, 0x7,0x63,0x32,\n  0x7,0x63,0x33, 0x7,0x63,0x34, 0x5,0x7a,0x51, 0x5,0x7a,0x52,\n  0xf,0x6c,0x5a, 0xf,0x6c,0x5b, 0xf,0x6c,0x5c, 0xf,0x6c,0x5d,\n  0x7,0x63,0x31, 0x5,0x7b,0x28, 0x5,0x7b,0x27, 0x7,0x64,0x30,\n  0x5,0x7b,0x29, 0xf,0x6c,0x74, 0x7,0x64,0x31, 0x5,0x7b,0x2a,\n  0x7,0x64,0x32, 0x7,0x64,0x7e, 0x5,0x7b,0x53, 0x5,0x7b,0x52,\n  0x5,0x7b,0x55, 0x7,0x64,0x7c, 0x7,0x65,0x21, 0x7,0x64,0x7b,\n  0x5,0x7b,0x54, 0x7,0x64,0x7d, 0xf,0x6c,0x75, 0x5,0x7b,0x73,\n  0x5,0x7b,0x72, 0x5,0x7b,0x71, 0x5,0x7b,0x70, 0x7,0x65,0x50,\n  0x5,0x7c,0x26, 0xf,0x6d,0x2b, 0xf,0x6d,0x2c, 0x5,0x7c,0x27,\n  0x7,0x65,0x6b, 0x5,0x7c,0x2e, 0x5,0x7c,0x37, 0x7,0x66,0x2f,\n  0x5,0x7c,0x36, 0xf,0x53,0x3c, 0xf,0x5d,0x78, 0xf,0x6b,0x3e,\n  0x6,0x50,0x4c, 0xf,0x40,0x33, 0x6,0x50,0x4d, 0x4,0x42,0x2b,\n  0x6,0x5a,0x57, 0x5,0x44,0x51, 0x5,0x44,0x52, 0x6,0x5a,0x5c,\n  0x6,0x5a,0x58, 0x6,0x5a,0x59, 0x5,0x44,0x50, 0x6,0x5a,0x5a,\n  0x6,0x5a,0x5b, 0x6,0x64,0x70, 0x5,0x4b,0x6a, 0x6,0x64,0x71,\n  0x5,0x4b,0x69, 0x4,0x48,0x6e, 0x4,0x48,0x6f, 0x6,0x64,0x72,\n  0x6,0x64,0x73, 0x6,0x64,0x74, 0x4,0x48,0x70, 0x5,0x4b,0x68,\n  0xf,0x4d,0x4f, 0xf,0x4d,0x50, 0xf,0x4d,0x51, 0x5,0x4b,0x67,\n  0x4,0x4f,0x45, 0x7,0x2b,0x72, 0x7,0x2b,0x7d, 0x7,0x2b,0x6f,\n  0x7,0x2b,0x73, 0x7,0x2b,0x79, 0x5,0x53,0x37, 0x5,0x53,0x3b,\n  0x5,0x53,0x3d, 0x5,0x53,0x39, 0x7,0x2b,0x76, 0x7,0x2b,0x7c,\n  0x5,0x53,0x3f, 0x5,0x53,0x34, 0x4,0x4f,0x3d, 0x5,0x53,0x41,\n  0x5,0x53,0x3e, 0x5,0x53,0x35, 0x4,0x4f,0x3e, 0x5,0x53,0x42,\n  0x7,0x2b,0x7a, 0x4,0x4f,0x3c, 0x7,0x2b,0x75, 0x4,0x4f,0x43,\n  0x4,0x4f,0x3a, 0x5,0x53,0x43, 0x4,0x4f,0x46, 0x7,0x2b,0x70,\n  0x7,0x2b,0x7b, 0xf,0x53,0x40, 0x7,0x2b,0x6e, 0x7,0x2b,0x77,\n  0x7,0x2b,0x78, 0x5,0x53,0x36, 0x5,0x53,0x3a, 0x5,0x53,0x40,\n  0x7,0x2b,0x71, 0x7,0x2b,0x74, 0x5,0x53,0x3c, 0x7,0x36,0x4b,\n  0x5,0x5a,0x54, 0x5,0x5a,0x56, 0x5,0x5a,0x51, 0x5,0x5a,0x4f,\n  0x4,0x55,0x4c, 0x5,0x5a,0x53, 0x5,0x5a,0x59, 0x5,0x5a,0x52,\n  0x7,0x36,0x57, 0x7,0x36,0x52, 0x5,0x5a,0x57, 0x4,0x55,0x56,\n  0x7,0x36,0x54, 0x5,0x5a,0x58, 0x7,0x36,0x50, 0x5,0x5a,0x55,\n  0x7,0x36,0x53, 0x7,0x36,0x4c, 0x7,0x36,0x45, 0x7,0x36,0x4e,\n  0xf,0x59,0x3d, 0xf,0x59,0x3e, 0xf,0x59,0x3f, 0xf,0x59,0x40,\n  0x7,0x36,0x4d, 0x7,0x36,0x4f, 0x7,0x36,0x58, 0x7,0x36,0x56,\n  0x7,0x36,0x47, 0x7,0x36,0x48, 0x7,0x36,0x55, 0x4,0x55,0x53,\n  0x4,0x55,0x51, 0x6,0x50,0x4e, 0x7,0x36,0x49, 0x5,0x5a,0x50,\n  0x7,0x36,0x46, 0xf,0x56,0x33, 0x7,0x3e,0x51, 0x4,0x5a,0x4c,\n  0x5,0x60,0x5e, 0x5,0x60,0x69, 0x7,0x3e,0x54, 0x4,0x5a,0x53,\n  0x5,0x60,0x67, 0x7,0x3e,0x55, 0x5,0x60,0x5d, 0x5,0x60,0x61,\n  0x7,0x3e,0x4e, 0x5,0x60,0x64, 0x5,0x60,0x6b, 0x5,0x60,0x60,\n  0x5,0x60,0x62, 0x4,0x5a,0x54, 0x7,0x3e,0x57, 0x5,0x60,0x5c,\n  0x5,0x60,0x63, 0x4,0x5a,0x58, 0x7,0x3e,0x4f, 0x4,0x5a,0x5b,\n  0x5,0x60,0x6c, 0x7,0x3e,0x58, 0x7,0x3e,0x53, 0x5,0x60,0x68,\n  0x5,0x60,0x6a, 0xf,0x5d,0x7a, 0xf,0x5d,0x7b, 0xf,0x5d,0x7c,\n  0xf,0x5d,0x7d, 0xf,0x5e,0x21, 0xf,0x5e,0x22, 0xf,0x5e,0x23,\n  0xf,0x5e,0x25, 0x7,0x3e,0x50, 0x5,0x60,0x5f, 0x4,0x5a,0x5a,\n  0x7,0x3e,0x56, 0x5,0x60,0x65, 0x5,0x60,0x66, 0x7,0x3e,0x52,\n  0x4,0x5a,0x57, 0x7,0x45,0x5b, 0x5,0x60,0x6d, 0x7,0x45,0x5f,\n  0x5,0x66,0x7d, 0x5,0x67,0x25, 0x5,0x67,0x27, 0x4,0x5f,0x2e,\n  0x5,0x67,0x2a, 0x5,0x66,0x7a, 0x5,0x67,0x21, 0x5,0x66,0x7e,\n  0x5,0x66,0x7b, 0x7,0x45,0x5d, 0x7,0x45,0x58, 0x4,0x5f,0x2d,\n  0x7,0x45,0x5e, 0x5,0x66,0x7c, 0x5,0x67,0x2b, 0x4,0x5f,0x30,\n  0x7,0x45,0x67, 0x5,0x67,0x22, 0x7,0x45,0x64, 0x7,0x45,0x5c,\n  0x5,0x67,0x28, 0x7,0x45,0x61, 0x7,0x45,0x62, 0x7,0x45,0x66,\n  0x5,0x67,0x24, 0x7,0x45,0x59, 0x5,0x67,0x23, 0x7,0x45,0x68,\n  0x7,0x45,0x56, 0x7,0x45,0x60, 0xf,0x61,0x74, 0xf,0x61,0x75,\n  0x7,0x45,0x57, 0x5,0x67,0x29, 0x7,0x45,0x63, 0x5,0x6b,0x39,\n  0x7,0x4c,0x5d, 0x5,0x6b,0x3a, 0x7,0x4c,0x62, 0x5,0x6b,0x3e,\n  0x5,0x6b,0x4a, 0x5,0x6b,0x40, 0x7,0x4c,0x6a, 0x7,0x4c,0x64,\n  0x5,0x6b,0x3b, 0x7,0x4c,0x68, 0x7,0x4c,0x6b, 0x7,0x4c,0x63,\n  0x5,0x6b,0x4c, 0x5,0x6b,0x3d, 0x5,0x6b,0x4b, 0x4,0x62,0x6b,\n  0x5,0x6b,0x42, 0x5,0x6b,0x45, 0x7,0x4c,0x60, 0x7,0x4c,0x5e,\n  0x5,0x6b,0x48, 0x5,0x6b,0x44, 0x7,0x4c,0x5c, 0x7,0x4c,0x66,\n  0x7,0x4c,0x6c, 0x5,0x6b,0x41, 0x4,0x62,0x6d, 0x7,0x4c,0x69,\n  0x5,0x6b,0x46, 0xf,0x64,0x74, 0xf,0x64,0x76, 0xf,0x64,0x77,\n  0x7,0x4c,0x61, 0x5,0x6b,0x47, 0x7,0x4c,0x6f, 0x5,0x6b,0x49,\n  0x7,0x45,0x69, 0x7,0x4c,0x65, 0x7,0x4c,0x67, 0x7,0x4c,0x6d,\n  0x5,0x6b,0x43, 0x7,0x4c,0x6e, 0x7,0x4c,0x5f, 0x4,0x62,0x69,\n  0x5,0x6f,0x38, 0x5,0x6f,0x30, 0x7,0x52,0x3a, 0x4,0x65,0x65,\n  0x5,0x6f,0x3e, 0x7,0x52,0x43, 0x5,0x6f,0x32, 0x5,0x6f,0x42,\n  0x4,0x62,0x70, 0x7,0x52,0x36, 0x5,0x6f,0x2f, 0x4,0x65,0x63,\n  0x5,0x6f,0x31, 0x4,0x65,0x6e, 0x4,0x65,0x68, 0x5,0x6f,0x33,\n  0x5,0x6f,0x2d, 0x5,0x6f,0x37, 0x5,0x6f,0x44, 0x5,0x6f,0x39,\n  0x4,0x65,0x6d, 0x4,0x65,0x66, 0x5,0x6f,0x3a, 0x5,0x6f,0x3c,\n  0x5,0x6f,0x40, 0x4,0x65,0x67, 0x5,0x6f,0x2e, 0x5,0x6f,0x3b,\n  0x5,0x6f,0x36, 0x5,0x6f,0x3f, 0x7,0x52,0x3f, 0x7,0x52,0x3b,\n  0x7,0x52,0x40, 0x7,0x52,0x35, 0x7,0x52,0x37, 0x5,0x6f,0x3d,\n  0x5,0x6f,0x35, 0x5,0x6f,0x34, 0x5,0x6f,0x43, 0x7,0x52,0x38,\n  0xf,0x67,0x37, 0x7,0x52,0x3e, 0x7,0x52,0x3d, 0x7,0x52,0x39,\n  0x7,0x52,0x44, 0x7,0x52,0x41, 0x7,0x52,0x3c, 0xf,0x67,0x38,\n  0x5,0x6f,0x41, 0x7,0x45,0x5a, 0x5,0x72,0x5e, 0x7,0x56,0x79,\n  0x5,0x72,0x66, 0x7,0x56,0x7e, 0x5,0x72,0x5d, 0x5,0x72,0x60,\n  0x5,0x72,0x5b, 0x5,0x72,0x65, 0x5,0x72,0x64, 0x7,0x57,0x21,\n  0x7,0x56,0x7d, 0x7,0x56,0x7a, 0x5,0x72,0x68, 0x7,0x57,0x27,\n  0x7,0x57,0x26, 0x7,0x57,0x24, 0x5,0x72,0x5c, 0x5,0x72,0x61,\n  0x5,0x6f,0x45, 0x5,0x72,0x5a, 0x5,0x72,0x62, 0x7,0x57,0x22,\n  0x7,0x56,0x7c, 0x5,0x72,0x69, 0x5,0x72,0x6a, 0xf,0x69,0x34,\n  0x5,0x72,0x5f, 0x7,0x57,0x23, 0x7,0x56,0x77, 0x7,0x57,0x28,\n  0x7,0x56,0x76, 0x7,0x56,0x7b, 0xf,0x69,0x33, 0x5,0x72,0x58,\n  0x7,0x56,0x78, 0x5,0x72,0x59, 0xf,0x67,0x36, 0x5,0x75,0x42,\n  0x5,0x75,0x3d, 0x4,0x6a,0x24, 0x4,0x6a,0x2d, 0x5,0x75,0x3c,\n  0x4,0x6a,0x28, 0x5,0x75,0x43, 0x5,0x75,0x39, 0x5,0x6f,0x46,\n  0x5,0x75,0x44, 0x5,0x75,0x40, 0x5,0x75,0x3f, 0x4,0x6a,0x2b,\n  0x7,0x5a,0x62, 0x7,0x5a,0x6c, 0x7,0x5a,0x6a, 0x7,0x5a,0x70,\n  0x4,0x6a,0x2a, 0x7,0x5a,0x6b, 0x7,0x5a,0x6e, 0x5,0x75,0x3b,\n  0x4,0x6a,0x29, 0x7,0x5a,0x69, 0x5,0x75,0x37, 0x7,0x5a,0x68,\n  0x5,0x75,0x38, 0x5,0x75,0x46, 0x5,0x72,0x67, 0x7,0x5a,0x71,\n  0x5,0x75,0x41, 0x7,0x5a,0x6f, 0x7,0x5a,0x67, 0x7,0x57,0x25,\n  0xf,0x6a,0x44, 0xf,0x6a,0x45, 0xf,0x6a,0x46, 0xf,0x6a,0x47,\n  0xf,0x6a,0x48, 0x5,0x75,0x3e, 0x7,0x5a,0x66, 0x7,0x5a,0x64,\n  0x7,0x5a,0x61, 0x7,0x5a,0x63, 0x5,0x75,0x3a, 0x7,0x5e,0x2b,\n  0x7,0x5e,0x27, 0x7,0x5e,0x31, 0x5,0x77,0x33, 0x7,0x5e,0x2f,\n  0x5,0x77,0x2e, 0x5,0x77,0x29, 0x4,0x6b,0x43, 0x7,0x5e,0x32,\n  0x7,0x5e,0x36, 0x5,0x77,0x25, 0x5,0x77,0x30, 0x5,0x77,0x2a,\n  0x5,0x77,0x28, 0x5,0x77,0x2f, 0x7,0x5e,0x2c, 0x5,0x77,0x27,\n  0x5,0x77,0x26, 0x5,0x77,0x38, 0x5,0x77,0x2b, 0x4,0x6b,0x49,\n  0x4,0x6b,0x42, 0x7,0x5e,0x35, 0x5,0x77,0x31, 0x7,0x5e,0x30,\n  0x7,0x5e,0x33, 0x5,0x77,0x2d, 0x7,0x5a,0x65, 0x5,0x77,0x35,\n  0x7,0x5a,0x6d, 0x7,0x5e,0x34, 0x5,0x77,0x36, 0x7,0x5e,0x2d,\n  0xf,0x6b,0x40, 0x7,0x5e,0x24, 0x7,0x5e,0x26, 0x7,0x5e,0x2e,\n  0x7,0x5e,0x29, 0x7,0x5e,0x28, 0x5,0x77,0x32, 0x7,0x5e,0x2a,\n  0x7,0x5e,0x25, 0x4,0x6b,0x41, 0xf,0x6b,0x7a, 0x7,0x5e,0x37,\n  0x7,0x60,0x4d, 0x5,0x78,0x67, 0x5,0x78,0x69, 0x5,0x78,0x6d,\n  0x5,0x78,0x65, 0x5,0x77,0x37, 0x5,0x78,0x68, 0x7,0x60,0x4e,\n  0x5,0x78,0x6a, 0x5,0x78,0x6b, 0x7,0x60,0x4f, 0x7,0x60,0x50,\n  0x7,0x60,0x54, 0x5,0x78,0x6c, 0x7,0x60,0x53, 0x7,0x60,0x4c,\n  0x7,0x60,0x51, 0x5,0x78,0x63, 0x5,0x78,0x66, 0x5,0x78,0x62,\n  0xf,0x6b,0x79, 0x7,0x60,0x52, 0x4,0x6c,0x55, 0x5,0x78,0x64,\n  0x4,0x6c,0x53, 0x5,0x79,0x71, 0x5,0x79,0x6d, 0x5,0x79,0x70,\n  0x7,0x61,0x76, 0x4,0x6d,0x3b, 0x5,0x79,0x6e, 0x5,0x79,0x6c,\n  0x4,0x6d,0x3c, 0x7,0x61,0x74, 0x5,0x79,0x6f, 0x7,0x61,0x78,\n  0x7,0x61,0x75, 0x7,0x61,0x77, 0x4,0x6d,0x3e, 0x5,0x7a,0x58,\n  0x7,0x63,0x39, 0x5,0x7a,0x56, 0x4,0x6d,0x6b, 0x5,0x7a,0x5a,\n  0x5,0x7a,0x59, 0x5,0x7a,0x55, 0x5,0x7a,0x57, 0x4,0x6d,0x6a,\n  0x7,0x63,0x38, 0x5,0x7a,0x54, 0x7,0x63,0x3b, 0x5,0x7a,0x5b,\n  0x7,0x63,0x3d, 0xf,0x6c,0x5e, 0x7,0x63,0x3a, 0x7,0x63,0x36,\n  0x7,0x63,0x3c, 0x5,0x7b,0x2e, 0x7,0x64,0x34, 0x7,0x64,0x36,\n  0x5,0x7b,0x2f, 0x5,0x7b,0x2c, 0x5,0x7b,0x2b, 0x5,0x7b,0x31,\n  0x5,0x7b,0x30, 0x5,0x7b,0x2d, 0x7,0x64,0x37, 0xf,0x6c,0x76,\n  0x4,0x6e,0x2e, 0x7,0x64,0x33, 0x7,0x64,0x35, 0x5,0x7b,0x56,\n  0x7,0x65,0x22, 0x7,0x65,0x53, 0x7,0x65,0x24, 0x7,0x65,0x26,\n  0x7,0x65,0x23, 0x7,0x65,0x27, 0x5,0x7b,0x57, 0x7,0x65,0x25,\n  0x4,0x6e,0x42, 0x5,0x7b,0x74, 0x7,0x65,0x54, 0x7,0x65,0x55,\n  0x5,0x7b,0x75, 0x7,0x65,0x52, 0x7,0x65,0x56, 0x7,0x65,0x51,\n  0x7,0x65,0x6d, 0x7,0x65,0x6c, 0x5,0x7c,0x29, 0x5,0x7c,0x28,\n  0xf,0x6d,0x32, 0x5,0x7c,0x2f, 0x7,0x66,0x21, 0x7,0x65,0x7e,\n  0x5,0x7c,0x38, 0x7,0x66,0x30, 0x5,0x7c,0x39, 0x7,0x66,0x3a,\n  0x5,0x7c,0x41, 0xf,0x6d,0x37, 0x5,0x7c,0x48, 0x7,0x66,0x45,\n  0x4,0x48,0x71, 0x4,0x48,0x72, 0x5,0x53,0x44, 0x7,0x2c,0x22,\n  0x7,0x2c,0x21, 0x7,0x2b,0x7e, 0x5,0x5a,0x5a, 0x5,0x5a,0x5c,\n  0x7,0x36,0x5a, 0x7,0x36,0x5b, 0xf,0x59,0x41, 0x7,0x36,0x59,\n  0x5,0x67,0x2c, 0x7,0x3e,0x59, 0x4,0x62,0x71, 0x7,0x4c,0x70,\n  0x5,0x6b,0x4d, 0x7,0x4c,0x71, 0x7,0x52,0x46, 0x5,0x6f,0x48,\n  0x5,0x6f,0x49, 0x7,0x52,0x47, 0x5,0x6f,0x47, 0x7,0x52,0x49,\n  0x7,0x52,0x48, 0x4,0x68,0x45, 0x7,0x57,0x2b, 0x7,0x57,0x2a,\n  0x5,0x72,0x6b, 0x7,0x5a,0x73, 0x7,0x5a,0x72, 0x4,0x6b,0x4c,\n  0x7,0x5e,0x38, 0x7,0x5e,0x39, 0x5,0x77,0x39, 0x7,0x60,0x55,\n  0x4,0x6c,0x57, 0x5,0x79,0x72, 0x4,0x6d,0x3f, 0x7,0x63,0x3e,\n  0x5,0x7b,0x32, 0x6,0x5a,0x5d, 0xf,0x46,0x3d, 0x5,0x4b,0x6c,\n  0xf,0x4d,0x52, 0x7,0x2c,0x28, 0x5,0x53,0x45, 0x7,0x2c,0x27,\n  0x7,0x2c,0x26, 0x7,0x2c,0x24, 0x5,0x53,0x46, 0x7,0x2c,0x25,\n  0x5,0x53,0x47, 0x7,0x2c,0x29, 0x7,0x2c,0x23, 0x7,0x36,0x5d,\n  0x5,0x5a,0x5d, 0xf,0x59,0x42, 0xf,0x59,0x43, 0xf,0x59,0x44,\n  0x5,0x60,0x6f, 0x5,0x60,0x72, 0x5,0x60,0x70, 0x4,0x5a,0x5c,\n  0x5,0x60,0x73, 0x5,0x60,0x71, 0x7,0x3e,0x5b, 0x7,0x3e,0x5a,\n  0x7,0x3e,0x5e, 0x7,0x3e,0x5d, 0xf,0x5e,0x26, 0x5,0x60,0x6e,\n  0x7,0x45,0x6e, 0x5,0x67,0x31, 0x5,0x67,0x2e, 0x5,0x67,0x2d,\n  0x7,0x45,0x6b, 0x7,0x45,0x6d, 0x7,0x45,0x6a, 0x5,0x67,0x30,\n  0x7,0x45,0x6c, 0xf,0x61,0x78, 0xf,0x61,0x79, 0xf,0x61,0x7a,\n  0x5,0x67,0x2f, 0x5,0x6b,0x4f, 0x5,0x6b,0x4e, 0x5,0x6b,0x51,\n  0x4,0x62,0x73, 0x7,0x4c,0x73, 0x5,0x6b,0x50, 0x7,0x4c,0x72,\n  0x5,0x68,0x40, 0x7,0x52,0x4b, 0x4,0x62,0x74, 0x4,0x65,0x6f,\n  0x7,0x4c,0x74, 0xf,0x67,0x39, 0x7,0x52,0x4a, 0x7,0x52,0x4c,\n  0x5,0x6f,0x4a, 0x4,0x68,0x47, 0x7,0x57,0x2c, 0x7,0x57,0x2d,\n  0x4,0x68,0x46, 0xf,0x69,0x35, 0x5,0x75,0x47, 0x4,0x6a,0x2e,\n  0xf,0x6a,0x49, 0x5,0x77,0x3a, 0x5,0x77,0x3c, 0x5,0x77,0x3b,\n  0x7,0x5e,0x3a, 0x7,0x5e,0x3b, 0x7,0x60,0x56, 0x4,0x6c,0x58,\n  0x7,0x60,0x57, 0xf,0x6b,0x7b, 0x5,0x79,0x75, 0x5,0x79,0x74,\n  0x5,0x78,0x6e, 0x4,0x6d,0x40, 0x4,0x6d,0x6c, 0xf,0x6c,0x47,\n  0x7,0x65,0x28, 0x7,0x65,0x57, 0x5,0x7c,0x46, 0x7,0x66,0x47,\n  0x6,0x5a,0x5f, 0x6,0x5a,0x5e, 0x5,0x44,0x53, 0xf,0x46,0x3f,\n  0x4,0x48,0x75, 0x6,0x64,0x75, 0xf,0x4d,0x53, 0x5,0x53,0x4b,\n  0x5,0x53,0x4a, 0x4,0x4f,0x4f, 0x5,0x53,0x49, 0x5,0x53,0x48,\n  0x7,0x2c,0x2b, 0x7,0x2c,0x2f, 0x7,0x2c,0x2a, 0x4,0x4f,0x4e,\n  0x7,0x2c,0x2c, 0x5,0x53,0x4c, 0x7,0x2c,0x2e, 0x7,0x2c,0x2d,\n  0x7,0x36,0x61, 0x7,0x36,0x5f, 0x7,0x36,0x5e, 0x7,0x36,0x63,\n  0x4,0x55,0x5b, 0x7,0x36,0x62, 0x6,0x47,0x53, 0xf,0x59,0x45,\n  0x5,0x5a,0x5e, 0x7,0x36,0x60, 0x5,0x60,0x74, 0x5,0x60,0x75,\n  0x7,0x3e,0x60, 0x7,0x3e,0x61, 0xf,0x5e,0x28, 0x7,0x3e,0x62,\n  0x7,0x3e,0x5f, 0x7,0x45,0x70, 0x5,0x67,0x32, 0x7,0x45,0x72,\n  0x5,0x67,0x33, 0x5,0x67,0x35, 0x7,0x45,0x73, 0x5,0x67,0x34,\n  0xf,0x61,0x7b, 0x7,0x45,0x71, 0x7,0x45,0x6f, 0x4,0x62,0x7a,\n  0x4,0x62,0x78, 0x7,0x4c,0x79, 0x7,0x4c,0x7b, 0x7,0x4c,0x75,\n  0x5,0x6b,0x54, 0x5,0x6b,0x52, 0x7,0x4c,0x7a, 0x5,0x6b,0x55,\n  0x5,0x6b,0x53, 0x7,0x4c,0x78, 0x4,0x62,0x7b, 0x7,0x4c,0x77,\n  0x7,0x4c,0x76, 0x5,0x6f,0x4b, 0x7,0x52,0x53, 0x7,0x52,0x52,\n  0x5,0x6f,0x4c, 0x7,0x52,0x50, 0x4,0x65,0x70, 0x7,0x52,0x4f,\n  0x5,0x6f,0x4e, 0x5,0x6f,0x4d, 0x7,0x52,0x51, 0xf,0x67,0x3a,\n  0x7,0x52,0x4e, 0x7,0x52,0x4d, 0x5,0x72,0x6c, 0x7,0x57,0x2f,\n  0x5,0x72,0x6f, 0x7,0x57,0x30, 0x5,0x72,0x6e, 0x7,0x57,0x31,\n  0x7,0x57,0x2e, 0x5,0x72,0x6d, 0x5,0x75,0x4b, 0x5,0x75,0x4c,\n  0x7,0x5a,0x74, 0x5,0x75,0x49, 0x5,0x75,0x4e, 0x7,0x5a,0x7b,\n  0x7,0x5a,0x76, 0x7,0x5a,0x77, 0x7,0x5a,0x7c, 0x7,0x5a,0x79,\n  0x5,0x75,0x4a, 0x7,0x5a,0x75, 0x7,0x5a,0x78, 0x7,0x5a,0x7a,\n  0x5,0x77,0x3f, 0x4,0x6b,0x4f, 0x5,0x77,0x3e, 0x5,0x77,0x40,\n  0x5,0x77,0x3d, 0x5,0x78,0x6f, 0x5,0x78,0x71, 0x5,0x78,0x70,\n  0x7,0x60,0x59, 0x7,0x5e,0x3c, 0x4,0x6c,0x59, 0x7,0x60,0x58,\n  0x4,0x6d,0x6d, 0x7,0x63,0x3f, 0x7,0x64,0x39, 0x7,0x64,0x38,\n  0x5,0x7b,0x58, 0x7,0x65,0x29, 0x4,0x6e,0x52, 0x5,0x7c,0x30,\n  0xf,0x29,0x21, 0xf,0x46,0x3e, 0xf,0x53,0x42, 0xf,0x5e,0x27,\n  0x5,0x4b,0x70, 0x5,0x4b,0x6e, 0x5,0x4b,0x6f, 0x5,0x53,0x4e,\n  0x4,0x4f,0x50, 0x5,0x53,0x4d, 0x7,0x2c,0x30, 0x5,0x5a,0x61,\n  0x7,0x36,0x64, 0x5,0x5a,0x5f, 0x5,0x5a,0x60, 0xf,0x59,0x46,\n  0x5,0x60,0x78, 0x5,0x60,0x76, 0xf,0x5e,0x29, 0x5,0x60,0x77,\n  0x5,0x67,0x36, 0x7,0x4c,0x7c, 0x5,0x6b,0x56, 0x7,0x4c,0x7d,\n  0x4,0x65,0x73, 0x7,0x57,0x32, 0x5,0x72,0x70, 0x7,0x5a,0x7e,\n  0x4,0x6b,0x50, 0x7,0x5b,0x56, 0x7,0x5e,0x3d, 0x4,0x6b,0x51,\n  0x5,0x7c,0x31, 0xf,0x4d,0x54, 0x7,0x2c,0x32, 0x5,0x5a,0x62,\n  0x5,0x5a,0x64, 0x5,0x5a,0x63, 0x5,0x60,0x7a, 0x5,0x67,0x38,\n  0x5,0x60,0x79, 0x5,0x67,0x39, 0x5,0x67,0x37, 0x5,0x6b,0x57,\n  0x4,0x63,0x22, 0xf,0x64,0x79, 0x4,0x65,0x75, 0x4,0x65,0x74,\n  0x5,0x6f,0x50, 0x5,0x6f,0x4f, 0x4,0x65,0x77, 0x7,0x52,0x54,\n  0x7,0x52,0x55, 0x7,0x52,0x56, 0xf,0x67,0x3b, 0x7,0x52,0x57,\n  0x5,0x72,0x73, 0x5,0x72,0x72, 0x5,0x72,0x71, 0x7,0x57,0x33,\n  0x7,0x57,0x34, 0x5,0x75,0x4f, 0x4,0x6a,0x2f, 0x4,0x6a,0x30,\n  0x7,0x5b,0x23, 0x7,0x5b,0x22, 0x7,0x5b,0x21, 0x7,0x5e,0x3e,\n  0x5,0x78,0x72, 0x7,0x60,0x5a, 0x5,0x78,0x73, 0x7,0x61,0x79,\n  0x5,0x79,0x76, 0x7,0x66,0x27, 0x4,0x48,0x76, 0x5,0x53,0x4f,\n  0x4,0x4f,0x51, 0x7,0x36,0x68, 0x7,0x36,0x66, 0x5,0x5a,0x66,\n  0x5,0x5a,0x65, 0x5,0x5a,0x67, 0x5,0x60,0x7e, 0x7,0x3e,0x64,\n  0x5,0x60,0x7c, 0x7,0x3e,0x63, 0x5,0x60,0x7b, 0x4,0x5a,0x5e,\n  0x5,0x60,0x7d, 0x7,0x3e,0x65, 0x7,0x3e,0x66, 0x5,0x67,0x3b,\n  0x5,0x67,0x3a, 0x4,0x65,0x78, 0x5,0x6f,0x51, 0x5,0x6f,0x53,\n  0x5,0x72,0x74, 0x7,0x57,0x36, 0x7,0x57,0x35, 0xf,0x69,0x36,\n  0x5,0x75,0x50, 0x4,0x6b,0x54, 0x5,0x77,0x42, 0x5,0x77,0x41,\n  0x4,0x6b,0x53, 0x7,0x63,0x40, 0x7,0x61,0x7a, 0x4,0x6d,0x6e,\n  0x5,0x7b,0x5a, 0x7,0x65,0x2a, 0x5,0x7b,0x59, 0x6,0x64,0x76,\n  0x5,0x44,0x54, 0x6,0x64,0x78, 0x6,0x64,0x77, 0x7,0x2c,0x34,\n  0x4,0x4f,0x55, 0x4,0x4f,0x54, 0x5,0x53,0x50, 0x7,0x2c,0x35,\n  0x7,0x2c,0x36, 0x7,0x36,0x6a, 0x5,0x5a,0x6a, 0x5,0x5a,0x68,\n  0x5,0x5a,0x69, 0x7,0x36,0x69, 0x7,0x36,0x6b, 0x7,0x36,0x6c,\n  0x4,0x5a,0x60, 0x7,0x3e,0x68, 0x5,0x61,0x21, 0xf,0x5e,0x2a,\n  0x7,0x3e,0x67, 0x5,0x67,0x3e, 0x5,0x67,0x3c, 0x7,0x45,0x74,\n  0x5,0x6b,0x58, 0x5,0x61,0x22, 0x5,0x67,0x3f, 0x5,0x6b,0x5a,\n  0x5,0x6b,0x59, 0x5,0x6b,0x5b, 0x5,0x6b,0x5d, 0x5,0x6b,0x5c,\n  0x7,0x4d,0x21, 0x7,0x4c,0x7e, 0x5,0x6f,0x56, 0x5,0x6f,0x57,\n  0x7,0x52,0x5b, 0x5,0x6f,0x5b, 0x5,0x6f,0x59, 0x5,0x6f,0x55,\n  0x7,0x52,0x58, 0x4,0x65,0x7e, 0x4,0x65,0x7b, 0x7,0x52,0x5c,\n  0x5,0x6f,0x5a, 0x4,0x65,0x7a, 0x7,0x52,0x5a, 0xf,0x67,0x3c,\n  0x7,0x52,0x59, 0x7,0x57,0x38, 0x4,0x68,0x53, 0x4,0x68,0x51,\n  0x5,0x72,0x78, 0x4,0x68,0x50, 0x5,0x72,0x7b, 0x7,0x57,0x37,\n  0x5,0x72,0x75, 0x5,0x72,0x79, 0x5,0x72,0x77, 0x4,0x68,0x54,\n  0x5,0x72,0x76, 0x4,0x68,0x55, 0x4,0x6a,0x34, 0x7,0x57,0x39,\n  0x7,0x57,0x3a, 0x5,0x72,0x7a, 0x5,0x75,0x51, 0x4,0x6a,0x33,\n  0x4,0x6a,0x35, 0x7,0x5b,0x2a, 0x7,0x5b,0x27, 0x7,0x5b,0x26,\n  0x4,0x6a,0x32, 0x7,0x5b,0x29, 0x7,0x5b,0x28, 0x5,0x75,0x52,\n  0x7,0x5b,0x25, 0x5,0x77,0x47, 0x7,0x5e,0x41, 0x5,0x77,0x46,\n  0x5,0x77,0x44, 0x5,0x77,0x45, 0x5,0x77,0x43, 0x5,0x77,0x48,\n  0x7,0x5e,0x3f, 0x5,0x78,0x76, 0x5,0x78,0x77, 0x7,0x60,0x5d,\n  0x4,0x6c,0x5c, 0x4,0x6c,0x60, 0x5,0x78,0x75, 0x7,0x60,0x5c,\n  0x5,0x78,0x74, 0x4,0x6c,0x5f, 0x4,0x6c,0x5e, 0x4,0x6c,0x5d,\n  0x7,0x5e,0x40, 0x7,0x60,0x5b, 0x5,0x79,0x78, 0x5,0x79,0x79,\n  0x5,0x79,0x7a, 0x5,0x79,0x77, 0x4,0x6d,0x45, 0x7,0x61,0x7b,\n  0x7,0x61,0x7c, 0x4,0x6d,0x46, 0x5,0x7a,0x5c, 0x7,0x64,0x3a,\n  0x7,0x65,0x2b, 0x4,0x6e,0x30, 0x7,0x64,0x3b, 0x5,0x7b,0x33,\n  0x4,0x6e,0x2f, 0x5,0x7b,0x5b, 0x5,0x7b,0x5c, 0x7,0x65,0x2c,\n  0x4,0x6e,0x4a, 0x5,0x7b,0x76, 0x7,0x65,0x6e, 0x5,0x7c,0x4a,\n  0x7,0x66,0x52, 0x7,0x45,0x75, 0x4,0x66,0x22, 0x5,0x72,0x7c,\n  0x4,0x68,0x57, 0x5,0x77,0x49, 0x6,0x64,0x79, 0x7,0x2c,0x38,\n  0x7,0x2c,0x37, 0x5,0x61,0x24, 0x7,0x36,0x6d, 0x4,0x5a,0x61,\n  0x7,0x3e,0x69, 0x7,0x3e,0x6a, 0x7,0x45,0x78, 0x5,0x67,0x42,\n  0x7,0x45,0x79, 0x7,0x45,0x77, 0x7,0x45,0x76, 0x4,0x5f,0x41,\n  0x7,0x4d,0x24, 0x7,0x4d,0x25, 0x7,0x3e,0x6b, 0x7,0x4d,0x23,\n  0x7,0x52,0x5e, 0x7,0x52,0x5f, 0x7,0x52,0x5d, 0x5,0x72,0x7d,\n  0x7,0x57,0x3b, 0x4,0x6a,0x36, 0x7,0x5b,0x2c, 0x7,0x5b,0x31,\n  0x7,0x5b,0x32, 0x7,0x5b,0x2e, 0x7,0x5b,0x30, 0x7,0x5b,0x2d,\n  0x7,0x5b,0x2b, 0x7,0x5b,0x2f, 0x5,0x77,0x4a, 0x7,0x5e,0x42,\n  0x5,0x78,0x78, 0x5,0x79,0x7b, 0x5,0x7a,0x5d, 0x4,0x6d,0x47,\n  0x7,0x63,0x41, 0x5,0x7b,0x34, 0x7,0x63,0x42, 0x7,0x65,0x2d,\n  0x6,0x50,0x4f, 0x7,0x36,0x6e, 0x7,0x36,0x6f, 0x5,0x5a,0x6b,\n  0x7,0x46,0x4f, 0x7,0x65,0x2e, 0x5,0x5a,0x6c, 0x5,0x61,0x25,\n  0x7,0x3e,0x6d, 0x5,0x67,0x43, 0x7,0x45,0x7a, 0x5,0x67,0x44,\n  0xf,0x61,0x7d, 0x7,0x4d,0x27, 0x5,0x6b,0x60, 0x7,0x4d,0x26,\n  0x5,0x6b,0x5e, 0x5,0x6b,0x5f, 0x4,0x63,0x25, 0x4,0x66,0x23,\n  0x7,0x52,0x60, 0x4,0x6a,0x39, 0x4,0x68,0x58, 0x7,0x57,0x3c,\n  0x7,0x57,0x3d, 0x5,0x75,0x53, 0x7,0x5b,0x34, 0x7,0x5b,0x35,\n  0x5,0x75,0x55, 0x4,0x6a,0x38, 0x7,0x5b,0x33, 0x5,0x75,0x54,\n  0x7,0x5e,0x43, 0x7,0x60,0x5e, 0x5,0x78,0x79, 0x7,0x60,0x5f,\n  0x5,0x79,0x7c, 0x7,0x63,0x43, 0x5,0x7b,0x35, 0x5,0x7b,0x77,\n  0x7,0x2c,0x39, 0x5,0x5a,0x6d, 0x7,0x3e,0x6e, 0x5,0x5a,0x6e,\n  0x5,0x61,0x28, 0x5,0x61,0x2a, 0x5,0x61,0x2b, 0x5,0x61,0x29,\n  0x5,0x61,0x27, 0x7,0x3e,0x70, 0x5,0x61,0x26, 0x7,0x3e,0x6f,\n  0x5,0x61,0x2c, 0x4,0x5a,0x62, 0x7,0x45,0x7c, 0x7,0x4d,0x2c,\n  0x5,0x67,0x47, 0x5,0x67,0x48, 0x5,0x67,0x46, 0x5,0x67,0x45,\n  0x7,0x45,0x7b, 0x7,0x4d,0x2a, 0x5,0x6b,0x61, 0x5,0x6b,0x63,\n  0x5,0x6b,0x62, 0x7,0x4d,0x2d, 0x7,0x4d,0x2e, 0x7,0x4d,0x29,\n  0x7,0x52,0x62, 0x7,0x52,0x64, 0x7,0x52,0x63, 0x5,0x6f,0x5d,\n  0x5,0x6f,0x5e, 0x7,0x4d,0x2b, 0x7,0x52,0x65, 0x5,0x6f,0x5c,\n  0x7,0x52,0x61, 0x5,0x73,0x21, 0x5,0x72,0x7e, 0x7,0x57,0x3e,\n  0x5,0x75,0x57, 0x7,0x5b,0x36, 0x5,0x75,0x58, 0x5,0x75,0x59,\n  0x5,0x75,0x56, 0x4,0x6a,0x3a, 0x7,0x5e,0x44, 0x5,0x77,0x4b,\n  0x4,0x6b,0x59, 0x7,0x5e,0x48, 0x4,0x6b,0x57, 0x4,0x6b,0x5a,\n  0x7,0x5e,0x47, 0x7,0x5e,0x46, 0x7,0x5e,0x45, 0x5,0x78,0x7d,\n  0x4,0x6c,0x63, 0x5,0x78,0x7b, 0x5,0x78,0x7a, 0x7,0x60,0x60,\n  0x7,0x61,0x7e, 0x7,0x61,0x7d, 0x4,0x6d,0x49, 0x5,0x79,0x7d,\n  0x5,0x7b,0x36, 0x5,0x7b,0x79, 0x5,0x7b,0x78, 0x7,0x65,0x6f,\n  0x7,0x66,0x22, 0x4,0x4f,0x57, 0x7,0x36,0x70, 0x7,0x36,0x71,\n  0x7,0x3e,0x72, 0x7,0x3e,0x71, 0x5,0x67,0x49, 0x7,0x45,0x7e,\n  0x7,0x46,0x21, 0x7,0x45,0x7d, 0x5,0x6b,0x64, 0x5,0x6b,0x65,\n  0x7,0x52,0x66, 0x5,0x6f,0x5f, 0x5,0x6f,0x60, 0x7,0x52,0x68,\n  0x4,0x68,0x5b, 0x5,0x73,0x22, 0x7,0x57,0x3f, 0x7,0x57,0x40,\n  0x5,0x73,0x23, 0x5,0x73,0x24, 0x7,0x5b,0x37, 0x5,0x77,0x4c,\n  0x7,0x5e,0x49, 0x5,0x78,0x7c, 0xf,0x6b,0x7e, 0x7,0x60,0x61,\n  0x5,0x79,0x7e, 0x5,0x7a,0x21, 0x7,0x63,0x46, 0x5,0x7a,0x5e,\n  0x7,0x63,0x45, 0x7,0x64,0x3c, 0x4,0x6e,0x53, 0x5,0x7c,0x32,\n  0xf,0x40,0x34, 0x4,0x55,0x64, 0x4,0x5a,0x65, 0x7,0x46,0x22,\n  0x4,0x63,0x28, 0x7,0x4d,0x2f, 0x5,0x6d,0x57, 0x4,0x66,0x24,\n  0x4,0x6a,0x3b, 0xf,0x69,0x37, 0x5,0x7a,0x23, 0x5,0x7a,0x22,\n  0x7,0x62,0x21, 0x7,0x65,0x2f, 0x5,0x61,0x2e, 0x7,0x3e,0x73,\n  0x7,0x46,0x25, 0x4,0x5f,0x47, 0x7,0x46,0x24, 0x7,0x4d,0x30,\n  0x5,0x6b,0x66, 0x4,0x63,0x2a, 0x7,0x4d,0x31, 0x7,0x4d,0x34,\n  0x7,0x4d,0x32, 0x7,0x4d,0x33, 0x7,0x4d,0x35, 0x7,0x4d,0x36,\n  0x5,0x6b,0x67, 0x7,0x52,0x6b, 0x5,0x6f,0x63, 0x5,0x6f,0x62,\n  0x4,0x66,0x28, 0x7,0x52,0x69, 0x4,0x66,0x2a, 0x7,0x52,0x6d,\n  0x4,0x66,0x29, 0x7,0x52,0x6e, 0x7,0x52,0x6a, 0x4,0x48,0x78,\n  0x7,0x52,0x6c, 0x7,0x57,0x46, 0x5,0x73,0x2a, 0x5,0x73,0x27,\n  0x7,0x57,0x43, 0x7,0x57,0x42, 0x4,0x68,0x5e, 0x5,0x73,0x28,\n  0x4,0x68,0x5f, 0x4,0x68,0x5d, 0x7,0x57,0x44, 0x5,0x73,0x25,\n  0x5,0x73,0x2b, 0x7,0x57,0x45, 0x7,0x57,0x47, 0x5,0x73,0x29,\n  0x7,0x57,0x41, 0x5,0x73,0x26, 0x7,0x5b,0x38, 0x4,0x6a,0x3e,\n  0x5,0x75,0x5c, 0x5,0x75,0x5b, 0x5,0x75,0x5e, 0x7,0x5b,0x40,\n  0x7,0x5b,0x3f, 0x5,0x75,0x5f, 0x7,0x5b,0x3a, 0x5,0x75,0x60,\n  0x4,0x6a,0x3f, 0x7,0x5b,0x39, 0x5,0x75,0x5a, 0x7,0x5b,0x3b,\n  0x7,0x5b,0x3d, 0x7,0x5b,0x3e, 0x7,0x5b,0x3c, 0x5,0x75,0x5d,\n  0x5,0x77,0x4f, 0x5,0x77,0x4e, 0x4,0x6b,0x5e, 0x4,0x6b,0x62,\n  0x4,0x6b,0x63, 0x4,0x6b,0x5f, 0x4,0x6b,0x60, 0x5,0x77,0x50,\n  0x7,0x5e,0x4e, 0x7,0x5e,0x4c, 0x4,0x6b,0x5d, 0x7,0x5e,0x4a,\n  0x7,0x5e,0x4b, 0x7,0x5e,0x4f, 0x4,0x6b,0x64, 0x4,0x6c,0x67,\n  0x5,0x78,0x7e, 0x7,0x60,0x67, 0x4,0x6c,0x68, 0x7,0x60,0x65,\n  0x5,0x79,0x21, 0x7,0x62,0x23, 0x4,0x6c,0x65, 0x7,0x60,0x63,\n  0x7,0x60,0x66, 0x7,0x60,0x64, 0x7,0x60,0x62, 0x7,0x60,0x68,\n  0x5,0x79,0x22, 0x4,0x6d,0x4e, 0x4,0x6d,0x4a, 0x7,0x62,0x25,\n  0x5,0x7a,0x26, 0x4,0x6d,0x50, 0x4,0x6d,0x4d, 0x5,0x7a,0x24,\n  0x7,0x62,0x27, 0x4,0x6d,0x4f, 0x7,0x62,0x24, 0x7,0x62,0x26,\n  0x7,0x62,0x28, 0x7,0x62,0x29, 0x7,0x62,0x22, 0x5,0x7a,0x25,\n  0x7,0x63,0x48, 0x5,0x7a,0x60, 0x7,0x63,0x47, 0x5,0x7a,0x62,\n  0x5,0x7a,0x5f, 0x5,0x7a,0x61, 0x7,0x64,0x3e, 0x4,0x6e,0x32,\n  0x7,0x64,0x3d, 0x5,0x7b,0x37, 0x5,0x7b,0x39, 0x5,0x7b,0x38,\n  0x7,0x64,0x40, 0x7,0x64,0x41, 0x7,0x64,0x3f, 0x4,0x6e,0x46,\n  0x7,0x65,0x32, 0x5,0x7b,0x5d, 0x7,0x65,0x31, 0x7,0x65,0x30,\n  0x7,0x65,0x59, 0x7,0x65,0x71, 0x7,0x65,0x72, 0x5,0x7c,0x2a,\n  0x7,0x65,0x70, 0x7,0x65,0x73, 0x5,0x7c,0x33, 0x7,0x66,0x24,\n  0x7,0x66,0x23, 0x5,0x7c,0x3b, 0x7,0x66,0x32, 0x5,0x7c,0x3a,\n  0x7,0x66,0x31, 0x7,0x66,0x3d, 0x7,0x66,0x3c, 0x5,0x7c,0x45,\n  0x7,0x66,0x41, 0x7,0x66,0x48, 0x5,0x7c,0x4e, 0x5,0x7c,0x4d,\n  0x5,0x6b,0x68, 0x7,0x4d,0x37, 0x4,0x63,0x2c, 0x7,0x52,0x70,\n  0x7,0x52,0x6f, 0x7,0x4e,0x24, 0x5,0x6f,0x64, 0x7,0x57,0x48,\n  0xf,0x67,0x3d, 0x7,0x5b,0x42, 0x7,0x5b,0x41, 0x7,0x5b,0x43,\n  0x7,0x5b,0x44, 0x5,0x77,0x51, 0x5,0x7c,0x51, 0x7,0x36,0x72,\n  0x7,0x3e,0x74, 0x7,0x46,0x26, 0x7,0x57,0x49, 0x5,0x6f,0x65,\n  0x4,0x66,0x2b, 0x5,0x6f,0x67, 0x5,0x6f,0x66, 0x4,0x66,0x2c,\n  0x7,0x52,0x73, 0x7,0x52,0x71, 0xf,0x67,0x3e, 0x7,0x52,0x72,\n  0x5,0x73,0x2c, 0x5,0x73,0x2e, 0x7,0x57,0x4b, 0x5,0x73,0x2f,\n  0x5,0x6b,0x6a, 0x5,0x73,0x2d, 0x7,0x54,0x2a, 0x7,0x57,0x4a,\n  0x7,0x4d,0x39, 0x7,0x4d,0x38, 0x5,0x7b,0x5e, 0x7,0x61,0x29,\n  0x5,0x7b,0x3a, 0x5,0x77,0x52, 0x7,0x64,0x42, 0xf,0x6d,0x2d,\n  0x5,0x7c,0x42, 0xf,0x29,0x26, 0x5,0x73,0x30, 0x7,0x62,0x2b,\n  0x7,0x62,0x2a, 0x5,0x7a,0x64, 0x5,0x7a,0x63, 0x7,0x63,0x4a,\n  0x7,0x63,0x49, 0x5,0x7b,0x3b, 0x4,0x6e,0x47, 0x7,0x66,0x25,\n  0x4,0x6e,0x56, 0x7,0x66,0x4c, 0x6,0x29,0x36, 0x6,0x21,0x31,\n  0x6,0x21,0x21, 0x6,0x25,0x66, 0x6,0x25,0x72, 0x4,0x25,0x3d,\n  0x6,0x2e,0x61, 0xf,0x2d,0x68, 0x6,0x3d,0x35, 0x6,0x50,0x5b,\n  0x4,0x3c,0x30, 0x6,0x5a,0x72, 0xf,0x59,0x4d, 0x6,0x23,0x52,\n  0x3,0x24,0x52, 0x3,0x27,0x53, 0xf,0x67,0x40, 0x3,0x27,0x54,\n  0x6,0x3d,0x3c, 0x7,0x4d,0x3e, 0x6,0x21,0x50, 0x3,0x22,0x7b,\n  0x6,0x23,0x59, 0x3,0x21,0x4f, 0x6,0x35,0x44, 0x4,0x21,0x3f,\n  0x6,0x22,0x3c, 0x3,0x24,0x41, 0x7,0x36,0x7a, 0x5,0x21,0x29,\n  0x6,0x21,0x38, 0xf,0x23,0x37, 0x6,0x29,0x63, 0x6,0x2e,0x76,\n  0x6,0x46,0x67, 0x3,0x40,0x43, 0xf,0x22,0x29, 0x6,0x2f,0x25,\n  0x6,0x35,0x58, 0x4,0x36,0x4c, 0x4,0x21,0x2f, 0x6,0x22,0x46,\n  0x3,0x22,0x25, 0x6,0x22,0x49, 0x3,0x23,0x29, 0x6,0x2f,0x38,\n  0x6,0x46,0x74, 0x6,0x2a,0x23, 0x6,0x2f,0x3d, 0x6,0x3d,0x59,\n  0x6,0x3d,0x5a, 0x3,0x3a,0x26, 0xf,0x21,0x33, 0x3,0x24,0x29,\n  0x6,0x21,0x61, 0x6,0x26,0x43, 0x5,0x31,0x31, 0x6,0x22,0x5b,\n  0x5,0x21,0x60, 0x3,0x23,0x3c, 0x4,0x23,0x5c, 0x6,0x26,0x4e,\n  0x4,0x23,0x5b, 0x6,0x2a,0x3c, 0x3,0x30,0x23, 0x6,0x35,0x7e,\n  0x4,0x30,0x76, 0x6,0x3d,0x7c, 0x6,0x47,0x2a, 0x6,0x47,0x2c,\n  0x6,0x47,0x30, 0x6,0x47,0x31, 0x6,0x47,0x33, 0x4,0x3c,0x50,\n  0x6,0x5b,0x5b, 0x6,0x51,0x36, 0x6,0x5b,0x59, 0x7,0x21,0x60,\n  0x7,0x2c,0x65, 0x3,0x21,0x7c, 0x6,0x24,0x33, 0x6,0x36,0x35,\n  0x6,0x3e,0x2c, 0x6,0x3e,0x2b, 0x3,0x34,0x70, 0x4,0x36,0x76,\n  0x6,0x51,0x4a, 0x7,0x21,0x76, 0x7,0x46,0x3e, 0xf,0x23,0x5b,\n  0x6,0x51,0x57, 0x5,0x23,0x62, 0x6,0x24,0x3b, 0x6,0x51,0x5e,\n  0x6,0x47,0x56, 0x6,0x22,0x67, 0xf,0x2a,0x2b, 0x6,0x36,0x4c,\n  0x6,0x36,0x4d, 0xf,0x2e,0x6d, 0x6,0x3e,0x54, 0x6,0x3e,0x50,\n  0x6,0x47,0x61, 0x6,0x51,0x69, 0xf,0x47,0x46, 0x3,0x5a,0x33,\n  0x7,0x46,0x51, 0x6,0x24,0x48, 0x4,0x31,0x30, 0xf,0x41,0x2b,\n  0x6,0x5c,0x22, 0x3,0x5a,0x36, 0x7,0x60,0x6d, 0x6,0x27,0x21,\n  0x6,0x36,0x67, 0x6,0x24,0x4b, 0x4,0x21,0x34, 0x5,0x28,0x73,\n  0x6,0x47,0x7b, 0x4,0x21,0x35, 0xf,0x26,0x62, 0x3,0x2c,0x40,\n  0x6,0x30,0x4e, 0x6,0x48,0x2b, 0x6,0x48,0x35, 0x3,0x40,0x7e,\n  0x6,0x52,0x33, 0x6,0x5c,0x3d, 0x6,0x27,0x36, 0x6,0x5c,0x49,\n  0xf,0x21,0x5f, 0x6,0x48,0x37, 0x6,0x37,0x2c, 0x6,0x48,0x3c,\n  0x7,0x2d,0x53, 0x7,0x2d,0x55, 0x7,0x60,0x6e, 0x5,0x29,0x27,\n  0x6,0x3f,0x46, 0x6,0x3f,0x45, 0x3,0x35,0x5f, 0x6,0x52,0x40,\n  0x5,0x45,0x5d, 0x6,0x21,0x74, 0x6,0x27,0x4a, 0x6,0x2b,0x2f,\n  0x6,0x30,0x74, 0xf,0x2a,0x5d, 0x6,0x2b,0x39, 0x7,0x2d,0x63,\n  0x5,0x73,0x40, 0x3,0x2c,0x51, 0x6,0x3f,0x5e, 0x5,0x2d,0x48,\n  0x3,0x35,0x65, 0x6,0x27,0x5f, 0xf,0x24,0x33, 0x5,0x24,0x38,\n  0x6,0x31,0x36, 0x6,0x31,0x30, 0xf,0x2a,0x67, 0x4,0x29,0x4a,\n  0x6,0x48,0x7c, 0x6,0x48,0x78, 0x3,0x46,0x70, 0x6,0x52,0x6c,\n  0x6,0x52,0x66, 0x6,0x5d,0x26, 0x6,0x5d,0x24, 0x4,0x43,0x51,\n  0x7,0x2d,0x69, 0x7,0x2d,0x79, 0x7,0x22,0x7b, 0x3,0x54,0x60,\n  0x4,0x5b,0x2c, 0x7,0x47,0x28, 0x3,0x26,0x27, 0x6,0x40,0x23,\n  0x5,0x22,0x6e, 0x6,0x2b,0x63, 0x6,0x2b,0x60, 0x6,0x31,0x4f,\n  0xf,0x2b,0x2b, 0x6,0x37,0x71, 0x3,0x36,0x28, 0x6,0x40,0x36,\n  0x6,0x40,0x2b, 0x6,0x49,0x4a, 0x6,0x49,0x30, 0xf,0x41,0x5f,\n  0x7,0x23,0x30, 0x6,0x5d,0x38, 0x5,0x46,0x2c, 0x7,0x23,0x2d,\n  0xf,0x4f,0x25, 0x4,0x4a,0x27, 0x7,0x38,0x39, 0xf,0x5e,0x70,\n  0x4,0x2d,0x46, 0x6,0x49,0x57, 0xf,0x5a,0x36, 0x3,0x36,0x40,\n  0x6,0x38,0x36, 0xf,0x41,0x72, 0x6,0x53,0x3c, 0x5,0x46,0x41,\n  0xf,0x2b,0x38, 0x6,0x31,0x6d, 0x6,0x40,0x57, 0x6,0x49,0x78,\n  0x6,0x5d,0x5b, 0x6,0x2c,0x23, 0x5,0x26,0x4a, 0x4,0x32,0x3e,\n  0x6,0x40,0x58, 0x5,0x3f,0x66, 0x4,0x24,0x47, 0x6,0x28,0x2e,\n  0xf,0x24,0x51, 0x4,0x26,0x68, 0x3,0x2d,0x35, 0x6,0x38,0x4a,\n  0x3,0x31,0x5c, 0x4,0x2d,0x5c, 0x6,0x38,0x50, 0x5,0x32,0x7e,\n  0x3,0x3c,0x3a, 0x6,0x53,0x5e, 0x5,0x3f,0x71, 0x3,0x41,0x6e,\n  0x6,0x5d,0x68, 0x7,0x23,0x72, 0xf,0x54,0x74, 0x7,0x2e,0x6a,\n  0x4,0x5f,0x76, 0x7,0x58,0x23, 0x6,0x25,0x23, 0x6,0x4a,0x3f,\n  0x7,0x23,0x78, 0x7,0x5e,0x72, 0xf,0x48,0x79, 0x6,0x53,0x77,\n  0x4,0x2d,0x65, 0xf,0x35,0x74, 0x6,0x4a,0x4d, 0x6,0x2c,0x42,\n  0xf,0x48,0x7b, 0x6,0x25,0x2e, 0xf,0x24,0x5d, 0x6,0x2c,0x5b,\n  0x6,0x2c,0x51, 0x3,0x2d,0x52, 0x6,0x32,0x39, 0x6,0x32,0x42,\n  0x4,0x2a,0x25, 0x4,0x2d,0x70, 0x6,0x39,0x2d, 0x6,0x38,0x74,\n  0x6,0x39,0x21, 0xf,0x30,0x5b, 0x3,0x36,0x75, 0x6,0x4a,0x65,\n  0x6,0x4a,0x63, 0x4,0x3e,0x33, 0x6,0x54,0x49, 0x6,0x54,0x4f,\n  0xf,0x42,0x74, 0x6,0x5e,0x3e, 0x7,0x24,0x4f, 0x7,0x24,0x58,\n  0xf,0x4f,0x69, 0x7,0x2f,0x42, 0xf,0x55,0x56, 0x4,0x56,0x5d,\n  0x7,0x4e,0x28, 0x7,0x53,0x60, 0x7,0x53,0x58, 0x6,0x2c,0x60,\n  0x6,0x2c,0x5d, 0x6,0x32,0x48, 0x4,0x38,0x68, 0xf,0x43,0x2f,\n  0x6,0x54,0x59, 0xf,0x50,0x3d, 0xf,0x55,0x58, 0x5,0x7b,0x7b,\n  0x3,0x55,0x45, 0x6,0x41,0x61, 0x6,0x41,0x63, 0x6,0x41,0x6a,\n  0x6,0x5e,0x5e, 0x6,0x32,0x62, 0x6,0x4b,0x42, 0x7,0x47,0x75,\n  0x6,0x22,0x26, 0xf,0x24,0x78, 0x6,0x2d,0x24, 0xf,0x2c,0x39,\n  0xf,0x31,0x28, 0x6,0x4b,0x47, 0xf,0x43,0x64, 0x4,0x44,0x6e,\n  0x7,0x40,0x63, 0xf,0x63,0x24, 0x6,0x42,0x21, 0x3,0x3d,0x3f,\n  0x6,0x32,0x79, 0x4,0x2a,0x44, 0x5,0x33,0x65, 0x6,0x4b,0x56,\n  0x4,0x3e,0x6c, 0x6,0x42,0x32, 0xf,0x4a,0x2f, 0x7,0x53,0x7b,\n  0x6,0x2d,0x3a, 0x5,0x33,0x71, 0xf,0x56,0x3c, 0x6,0x2d,0x45,\n  0x6,0x2d,0x3d, 0x6,0x33,0x3d, 0x6,0x33,0x31, 0x5,0x2f,0x26,\n  0xf,0x2c,0x57, 0x6,0x3a,0x2d, 0x6,0x3a,0x2e, 0x6,0x42,0x48,\n  0x6,0x4b,0x7a, 0xf,0x50,0x5f, 0x7,0x30,0x4a, 0x6,0x25,0x3f,\n  0x6,0x2d,0x46, 0x3,0x43,0x33, 0x6,0x55,0x6b, 0x7,0x25,0x7b,\n  0x7,0x39,0x6d, 0xf,0x28,0x3c, 0x6,0x33,0x4a, 0xf,0x3d,0x60,\n  0x4,0x4b,0x60, 0x7,0x26,0x27, 0x6,0x3a,0x43, 0x6,0x42,0x67,\n  0x4,0x45,0x5f, 0x4,0x52,0x21, 0x7,0x30,0x66, 0x6,0x5f,0x75,\n  0x7,0x26,0x3e, 0x7,0x26,0x3c, 0x7,0x30,0x73, 0xf,0x4a,0x7b,\n  0x6,0x60,0x23, 0xf,0x51,0x23, 0x7,0x26,0x4d, 0x7,0x41,0x3c,\n  0x5,0x6c,0x7d, 0x7,0x31,0x2d, 0x7,0x3a,0x33, 0x4,0x5c,0x59,\n  0x7,0x41,0x44, 0x3,0x2e,0x56, 0x6,0x33,0x66, 0x3,0x48,0x6a,\n  0xf,0x51,0x37, 0x7,0x26,0x6a, 0x7,0x26,0x69, 0x4,0x64,0x26,\n  0x7,0x62,0x4d, 0x6,0x4c,0x72, 0x7,0x3a,0x46, 0xf,0x3e,0x32,\n  0x7,0x3a,0x49, 0x7,0x48,0x6d, 0x7,0x5f,0x3c, 0x6,0x4d,0x23,\n  0xf,0x57,0x27, 0x4,0x2b,0x26, 0x7,0x27,0x28, 0xf,0x57,0x28,\n  0x6,0x60,0x5d, 0x5,0x48,0x74, 0xf,0x5c,0x2d, 0x6,0x28,0x7b,\n  0x4,0x27,0x68, 0x6,0x2d,0x69, 0x3,0x33,0x50, 0x5,0x3b,0x50,\n  0x6,0x4d,0x48, 0xf,0x44,0x68, 0xf,0x4b,0x57, 0xf,0x4b,0x56,\n  0x4,0x4c,0x56, 0x4,0x58,0x2d, 0x4,0x34,0x57, 0x6,0x4d,0x5e,\n  0x3,0x44,0x25, 0x6,0x61,0x25, 0x3,0x27,0x2a, 0x6,0x25,0x52,\n  0x6,0x29,0x27, 0xf,0x28,0x5c, 0x6,0x29,0x28, 0x6,0x2e,0x22,\n  0x6,0x2e,0x23, 0x6,0x34,0x44, 0x6,0x2e,0x24, 0x6,0x3b,0x52,\n  0xf,0x32,0x3a, 0x4,0x34,0x73, 0x6,0x44,0x2b, 0x4,0x34,0x74,\n  0x6,0x43,0x76, 0x6,0x44,0x3b, 0x4,0x3a,0x66, 0x6,0x44,0x3e,\n  0x6,0x44,0x3c, 0x6,0x44,0x3d, 0x6,0x4e,0x3b, 0x6,0x61,0x3e,\n  0x6,0x61,0x4f, 0xf,0x51,0x64, 0x4,0x4c,0x79, 0x7,0x27,0x61,\n  0x7,0x27,0x6d, 0x7,0x32,0x44, 0xf,0x57,0x47, 0x7,0x3a,0x6f,\n  0xf,0x60,0x5d, 0x7,0x42,0x3c, 0x7,0x54,0x5e, 0x4,0x67,0x2b,\n  0x6,0x34,0x47, 0x4,0x40,0x4f, 0x7,0x3b,0x38, 0x3,0x5b,0x26,\n  0x6,0x3b,0x71, 0x4,0x3a,0x75, 0x6,0x4e,0x46, 0x4,0x46,0x7c,\n  0x4,0x4d,0x33, 0xf,0x52,0x24, 0x7,0x28,0x2e, 0xf,0x51,0x7d,\n  0x7,0x42,0x60, 0x7,0x42,0x5f, 0x3,0x5b,0x2d, 0x4,0x64,0x3f,\n  0x4,0x53,0x4c, 0x6,0x25,0x53, 0x5,0x30,0x3e, 0x6,0x58,0x2e,\n  0x6,0x58,0x2c, 0xf,0x45,0x3d, 0x7,0x3b,0x61, 0xf,0x38,0x4a,\n  0x5,0x7a,0x38, 0x6,0x3c,0x2d, 0x4,0x35,0x45, 0xf,0x3f,0x3b,\n  0x6,0x62,0x47, 0x7,0x33,0x4f, 0x7,0x59,0x41, 0x6,0x29,0x2a,\n  0x6,0x58,0x50, 0x6,0x58,0x5c, 0x3,0x60,0x7c, 0x6,0x3c,0x3b,\n  0x7,0x33,0x79, 0x7,0x33,0x73, 0xf,0x3f,0x53, 0x3,0x44,0x6d,\n  0x7,0x29,0x44, 0x6,0x34,0x5d, 0x4,0x30,0x2c, 0x7,0x34,0x31,\n  0x4,0x54,0x37, 0x7,0x3c,0x61, 0x6,0x25,0x5b, 0x4,0x35,0x72,\n  0x6,0x59,0x47, 0x6,0x59,0x4a, 0x7,0x3c,0x6b, 0xf,0x45,0x73,\n  0x6,0x63,0x53, 0x6,0x63,0x4f, 0x4,0x54,0x4a, 0xf,0x66,0x5e,\n  0x7,0x50,0x6b, 0xf,0x6c,0x3f, 0x6,0x63,0x58, 0x7,0x34,0x7a,\n  0x7,0x34,0x71, 0xf,0x61,0x4a, 0x6,0x50,0x22, 0x6,0x63,0x6e,\n  0x7,0x35,0x35, 0x3,0x56,0x78, 0x5,0x5f,0x5e, 0x7,0x3d,0x50,\n  0xf,0x58,0x78, 0x7,0x4b,0x5f, 0x4,0x65,0x2a, 0x7,0x4b,0x6b,\n  0x5,0x3d,0x47, 0x5,0x44,0x35, 0x6,0x5a,0x33, 0x6,0x64,0x30,\n  0x4,0x59,0x76, 0x6,0x64,0x3a, 0x6,0x3c,0x77, 0x6,0x5a,0x3d,\n  0x4,0x55,0x23, 0x4,0x5e,0x60, 0x6,0x64,0x50, 0x7,0x3e,0x29,\n  0x7,0x2b,0x55, 0xf,0x59,0x32, 0x7,0x51,0x7a, 0x7,0x5a,0x60,\n  0x4,0x5a,0x59, 0x7,0x45,0x65, 0x4,0x5f,0x37, 0x4,0x62,0x6e,\n  0x7,0x52,0x45, 0x5,0x75,0x36, 0x5,0x75,0x35, 0xf,0x6c,0x77,\n  0x7,0x3e,0x5c, 0x6,0x46,0x3e, 0x4,0x68,0x4f, 0x6,0x5a,0x60,\n  0x4,0x28,0x34, 0x3,0x5c,0x2f, 0x5,0x53,0x51, 0x7,0x4d,0x28,\n  0x4,0x48,0x77, 0x7,0x5e,0x4d,\n};\n\nstatic const Summary16 cns11643_inv_uni2indx_page00[16] = {\n  /* 0x0000 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0080 }, {    1, 0x0083 },\n  {    4, 0x0000 }, {    4, 0x0080 }, {    5, 0x0000 }, {    5, 0x0080 },\n};\nstatic const Summary16 cns11643_inv_uni2indx_page02[29] = {\n  /* 0x0200 */\n  {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 },\n  {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 },\n  {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 },\n  {    6, 0x0e80 }, {   10, 0x0200 }, {   11, 0x0000 }, {   11, 0x0000 },\n  /* 0x0300 */\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0xfffe }, {   26, 0x03fb }, {   35, 0xfffe },\n  {   50, 0x03fb },\n};\nstatic const Summary16 cns11643_inv_uni2indx_page20[44] = {\n  /* 0x2000 */\n  {   59, 0x0000 }, {   59, 0x3358 }, {   66, 0x0060 }, {   68, 0x4824 },\n  {   72, 0x0000 }, {   72, 0x0000 }, {   72, 0x0000 }, {   72, 0x0000 },\n  {   72, 0x0000 }, {   72, 0x0000 }, {   72, 0x1000 }, {   73, 0x0000 },\n  {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 },\n  /* 0x2100 */\n  {   73, 0x0228 }, {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 },\n  {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x03ff }, {   86, 0x03ff },\n  {   96, 0x0000 }, {   96, 0x03cf }, {  104, 0x0000 }, {  104, 0x0000 },\n  {  104, 0x0000 }, {  104, 0x0000 }, {  104, 0x0000 }, {  104, 0x0000 },\n  /* 0x2200 */\n  {  104, 0x0000 }, {  104, 0xc420 }, {  108, 0x4e01 }, {  113, 0x1030 },\n  {  116, 0x0000 }, {  116, 0x0004 }, {  117, 0x00c3 }, {  121, 0x0000 },\n  {  121, 0x0000 }, {  121, 0x0000 }, {  121, 0x0020 }, {  122, 0x8000 },\n};\nstatic const Summary16 cns11643_inv_uni2indx_page24[37] = {\n  /* 0x2400 */\n  {  123, 0xffff }, {  139, 0xffff }, {  155, 0x0002 }, {  156, 0x0000 },\n  {  156, 0x0000 }, {  156, 0x0000 }, {  156, 0x03ff }, {  166, 0x3ff0 },\n  {  176, 0x0000 }, {  176, 0x0000 }, {  176, 0x0000 }, {  176, 0x0000 },\n  {  176, 0x0000 }, {  176, 0x0000 }, {  176, 0x0000 }, {  176, 0x0000 },\n  /* 0x2500 */\n  {  176, 0x1005 }, {  179, 0x1111 }, {  183, 0x1010 }, {  185, 0x1010 },\n  {  187, 0x0000 }, {  187, 0x4001 }, {  189, 0xe402 }, {  194, 0x000f },\n  {  198, 0xfffe }, {  213, 0x0030 }, {  215, 0x0003 }, {  217, 0x300c },\n  {  221, 0xc8c0 }, {  226, 0x0000 }, {  226, 0x003c }, {  230, 0x0000 },\n  /* 0x2600 */\n  {  230, 0x0260 }, {  233, 0x0000 }, {  233, 0x0000 }, {  233, 0x0000 },\n  {  233, 0x0007 },\n};\nstatic const Summary16 cns11643_inv_uni2indx_page30[1787] = {\n  /* 0x3000 */\n  {  236, 0xff0f }, {  248, 0x6037 }, {  255, 0x03fe }, {  264, 0x0000 },\n  {  264, 0x0000 }, {  264, 0x0000 }, {  264, 0x0000 }, {  264, 0x0000 },\n  {  264, 0x0000 }, {  264, 0x0000 }, {  264, 0x0000 }, {  264, 0x0000 },\n  {  264, 0x0000 }, {  264, 0x0000 }, {  264, 0x0000 }, {  264, 0x0800 },\n  /* 0x3100 */\n  {  265, 0xffe0 }, {  276, 0xffff }, {  292, 0x03ff }, {  302, 0x0000 },\n  {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 },\n  {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 },\n  {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 },\n  /* 0x3200 */\n  {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 },\n  {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 },\n  {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0008 }, {  303, 0x0000 },\n  {  303, 0x0000 }, {  303, 0x0000 }, {  303, 0x0000 }, {  303, 0x0000 },\n  /* 0x3300 */\n  {  303, 0x0000 }, {  303, 0x0000 }, {  303, 0x0000 }, {  303, 0x0000 },\n  {  303, 0x0000 }, {  303, 0x0000 }, {  303, 0x0000 }, {  303, 0x0000 },\n  {  303, 0xc000 }, {  305, 0x7000 }, {  308, 0x0002 }, {  309, 0x0000 },\n  {  309, 0x4010 }, {  311, 0x0026 }, {  314, 0x0000 }, {  314, 0x0000 },\n  /* 0x3400 */\n  {  314, 0x1073 }, {  320, 0x1040 }, {  322, 0x7b12 }, {  330, 0x5f5f },\n  {  342, 0xfe3e }, {  354, 0xff8b }, {  366, 0xc0f8 }, {  373, 0xfefb },\n  {  387, 0x7fff }, {  402, 0xfefe }, {  416, 0xbff3 }, {  429, 0xfffd },\n  {  444, 0xdfbc }, {  456, 0xfdfb }, {  470, 0xf39f }, {  482, 0x7ffe },\n  /* 0x3500 */\n  {  496, 0xfcff }, {  510, 0x77af }, {  522, 0xf7ff }, {  537, 0xffff },\n  {  553, 0xffff }, {  569, 0xdff7 }, {  583, 0xfeff }, {  598, 0x1fef },\n  {  610, 0x81ff }, {  620, 0x81ff }, {  630, 0x0fff }, {  642, 0xfff0 },\n  {  654, 0x3fff }, {  668, 0x1ff9 }, {  679, 0x3ffc }, {  691, 0xf87f },\n  /* 0x3600 */\n  {  703, 0x3fe7 }, {  715, 0xfe7b }, {  728, 0xbfff }, {  743, 0x8fdf },\n  {  755, 0xefbf }, {  769, 0x7e2f }, {  780, 0xffbf }, {  795, 0x5fff },\n  {  809, 0xfebf }, {  823, 0xf5fd }, {  836, 0x7fff }, {  851, 0xffff },\n  {  867, 0xe63e }, {  877, 0x7fff }, {  892, 0xffe6 }, {  905, 0x7fff },\n  /* 0x3700 */\n  {  920, 0xfffe }, {  935, 0x7fef }, {  949, 0xdfff }, {  964, 0xffff },\n  {  980, 0xf5bf }, {  993, 0xfbff }, { 1008, 0xfefd }, { 1022, 0xfff7 },\n  { 1037, 0x9fff }, { 1051, 0x9fff }, { 1065, 0xbffe }, { 1079, 0xfeff },\n  { 1094, 0xffbb }, { 1108, 0xffdf }, { 1123, 0xbfe5 }, { 1135, 0xff7f },\n  /* 0x3800 */\n  { 1150, 0xfff7 }, { 1165, 0x3fff }, { 1179, 0xe7e7 }, { 1191, 0xfff6 },\n  { 1205, 0xdfff }, { 1220, 0xffff }, { 1236, 0xefed }, { 1249, 0xffff },\n  { 1265, 0xff7f }, { 1280, 0xffff }, { 1296, 0xd7eb }, { 1308, 0x7d7d },\n  { 1320, 0xfbff }, { 1335, 0xff1f }, { 1348, 0xb87d }, { 1358, 0xfce7 },\n  /* 0x3900 */\n  { 1370, 0xfffe }, { 1385, 0xfeff }, { 1400, 0xd7ff }, { 1414, 0xcfff },\n  { 1428, 0xffff }, { 1444, 0xfc7f }, { 1457, 0xfbff }, { 1472, 0xf7ff },\n  { 1487, 0xfeff }, { 1502, 0xfdff }, { 1517, 0xffff }, { 1533, 0xfff5 },\n  { 1547, 0x7fff }, { 1562, 0x47fc }, { 1572, 0xfffe }, { 1587, 0xfffe },\n  /* 0x3a00 */\n  { 1602, 0xffff }, { 1618, 0xfeff }, { 1633, 0xe7ff }, { 1647, 0xffff },\n  { 1663, 0x7ff9 }, { 1676, 0x7ffd }, { 1690, 0xbfff }, { 1705, 0xfeff },\n  { 1720, 0xfbb7 }, { 1733, 0xf46e }, { 1743, 0xfb7f }, { 1757, 0xdff3 },\n  { 1770, 0xec3f }, { 1781, 0xffbf }, { 1796, 0xdef3 }, { 1808, 0x3fff },\n  /* 0x3b00 */\n  { 1822, 0xfffe }, { 1837, 0x7fbd }, { 1850, 0xfeef }, { 1864, 0x9b7f },\n  { 1876, 0x1f9e }, { 1886, 0xff3e }, { 1899, 0xff07 }, { 1910, 0xff07 },\n  { 1921, 0xf9ff }, { 1935, 0xffff }, { 1951, 0xfffa }, { 1965, 0x97ff },\n  { 1978, 0xffff }, { 1994, 0xfff9 }, { 2008, 0xfc7f }, { 2021, 0xcfff },\n  /* 0x3c00 */\n  { 2035, 0xffff }, { 2051, 0xeff7 }, { 2065, 0xffff }, { 2081, 0xfeff },\n  { 2096, 0xffff }, { 2112, 0xdff4 }, { 2124, 0xbdff }, { 2138, 0xff7f },\n  { 2153, 0xffff }, { 2169, 0xfffe }, { 2184, 0xbdff }, { 2198, 0x7fff },\n  { 2213, 0xfdff }, { 2228, 0xffcf }, { 2242, 0x7ff0 }, { 2253, 0xfff8 },\n  /* 0x3d00 */\n  { 2266, 0xc7ff }, { 2279, 0x7fff }, { 2294, 0xffe3 }, { 2307, 0xf9ff },\n  { 2321, 0xfc7f }, { 2334, 0xe3ff }, { 2347, 0xffff }, { 2363, 0xefff },\n  { 2378, 0xf1f3 }, { 2389, 0xddfe }, { 2402, 0xfffb }, { 2417, 0xde3d },\n  { 2428, 0xefff }, { 2443, 0x8fff }, { 2456, 0xf97f }, { 2469, 0xdbf9 },\n  /* 0x3e00 */\n  { 2481, 0xff3f }, { 2495, 0xffff }, { 2511, 0xffff }, { 2527, 0x7fef },\n  { 2541, 0xfeff }, { 2556, 0xffff }, { 2572, 0xf8ff }, { 2585, 0xfffe },\n  { 2600, 0xdfbf }, { 2614, 0xfdff }, { 2629, 0x7ffb }, { 2643, 0xa7bf },\n  { 2655, 0x7f9f }, { 2668, 0xe6fe }, { 2680, 0xf98f }, { 2691, 0xffe7 },\n  /* 0x3f00 */\n  { 2705, 0xfef6 }, { 2718, 0xffff }, { 2734, 0xffff }, { 2750, 0xffff },\n  { 2766, 0x7fdf }, { 2780, 0xffef }, { 2795, 0xffff }, { 2811, 0xefb7 },\n  { 2824, 0xffff }, { 2840, 0xffff }, { 2856, 0xffff }, { 2872, 0xffc1 },\n  { 2883, 0xfffe }, { 2898, 0xffee }, { 2912, 0xfffe }, { 2927, 0xffff },\n  /* 0x4000 */\n  { 2943, 0xefff }, { 2958, 0xdfff }, { 2973, 0xff9f }, { 2987, 0xffff },\n  { 3003, 0xfffe }, { 3018, 0xffbf }, { 3033, 0xfbfd }, { 3047, 0xffff },\n  { 3063, 0xf7ff }, { 3078, 0xffff }, { 3094, 0xfeff }, { 3109, 0xffdf },\n  { 3124, 0xff87 }, { 3136, 0x7ffe }, { 3150, 0x7eff }, { 3164, 0xefff },\n  /* 0x4100 */\n  { 3179, 0xfbff }, { 3194, 0xbf3f }, { 3207, 0xfff7 }, { 3222, 0xfdcf },\n  { 3235, 0xfdff }, { 3250, 0x7fff }, { 3265, 0xf3ff }, { 3279, 0xffff },\n  { 3295, 0xef3f }, { 3308, 0xffff }, { 3324, 0xbfff }, { 3339, 0xffef },\n  { 3354, 0xfbef }, { 3368, 0xffff }, { 3384, 0xffff }, { 3400, 0x7fe7 },\n  /* 0x4200 */\n  { 3413, 0xffff }, { 3429, 0xffff }, { 3445, 0xfcff }, { 3459, 0xffff },\n  { 3475, 0xff7f }, { 3490, 0xffff }, { 3506, 0xffef }, { 3521, 0xffff },\n  { 3537, 0xefff }, { 3552, 0xffff }, { 3568, 0xfffb }, { 3583, 0xffff },\n  { 3599, 0xff1f }, { 3612, 0xdfff }, { 3627, 0xffff }, { 3643, 0xffff },\n  /* 0x4300 */\n  { 3659, 0xf7ff }, { 3674, 0xffff }, { 3690, 0xffff }, { 3706, 0x003f },\n  { 3712, 0xfffc }, { 3726, 0xffff }, { 3742, 0xfffe }, { 3757, 0xffff },\n  { 3773, 0xffff }, { 3789, 0xb7ff }, { 3803, 0xefdf }, { 3817, 0xffff },\n  { 3833, 0xffff }, { 3849, 0xdfff }, { 3864, 0x9fff }, { 3878, 0xffff },\n  /* 0x4400 */\n  { 3894, 0xffbf }, { 3909, 0xffff }, { 3925, 0xfbff }, { 3940, 0xffff },\n  { 3956, 0xffff }, { 3972, 0xffbf }, { 3987, 0xbdff }, { 4001, 0xbe7f },\n  { 4014, 0xff7f }, { 4029, 0xfdfd }, { 4043, 0x3fff }, { 4057, 0x3fff },\n  { 4071, 0xfffe }, { 4086, 0xff8f }, { 4099, 0xe4ff }, { 4111, 0xf7ff },\n  /* 0x4500 */\n  { 4126, 0xffff }, { 4142, 0xffff }, { 4158, 0xffff }, { 4174, 0xffff },\n  { 4190, 0xfffb }, { 4205, 0xfffe }, { 4220, 0xfff7 }, { 4235, 0xffbf },\n  { 4250, 0xffff }, { 4266, 0xffff }, { 4282, 0xefff }, { 4297, 0xbfff },\n  { 4312, 0xffff }, { 4328, 0xffbf }, { 4343, 0xdfff }, { 4358, 0xf7f7 },\n  /* 0x4600 */\n  { 4372, 0xffff }, { 4388, 0xb7ff }, { 4402, 0xffff }, { 4418, 0xfffb },\n  { 4433, 0xc3ff }, { 4445, 0xfff7 }, { 4460, 0xf7ff }, { 4475, 0xf7bf },\n  { 4489, 0xffff }, { 4505, 0xffdf }, { 4520, 0xefef }, { 4534, 0xffff },\n  { 4550, 0xffff }, { 4566, 0xfff7 }, { 4581, 0xffff }, { 4597, 0xffff },\n  /* 0x4700 */\n  { 4613, 0xffff }, { 4629, 0xffff }, { 4645, 0xfc07 }, { 4654, 0xfff7 },\n  { 4669, 0xffff }, { 4685, 0xf5ff }, { 4699, 0xffff }, { 4715, 0xefff },\n  { 4730, 0x0fff }, { 4742, 0xfffe }, { 4757, 0xffff }, { 4773, 0xfffb },\n  { 4788, 0xffff }, { 4804, 0xffff }, { 4820, 0xffff }, { 4836, 0xfffb },\n  /* 0x4800 */\n  { 4851, 0xefff }, { 4866, 0xffbf }, { 4881, 0xffff }, { 4897, 0xfbff },\n  { 4912, 0xffff }, { 4928, 0xffff }, { 4944, 0xffff }, { 4960, 0xf7fd },\n  { 4974, 0x7ff8 }, { 4986, 0xfe7f }, { 5000, 0xfff7 }, { 5015, 0xfbff },\n  { 5030, 0xfdff }, { 5045, 0xfffb }, { 5060, 0xffbf }, { 5075, 0xfff7 },\n  /* 0x4900 */\n  { 5090, 0xfffe }, { 5105, 0xffff }, { 5121, 0xfdf7 }, { 5135, 0xfffb },\n  { 5150, 0xff7f }, { 5165, 0xefff }, { 5180, 0xffff }, { 5196, 0x01ff },\n  { 5205, 0xff80 }, { 5214, 0xf7ff }, { 5229, 0xfdff }, { 5244, 0x3e3e },\n  { 5254, 0x7efe }, { 5267, 0xffff }, { 5283, 0xd5ff }, { 5296, 0xffff },\n  /* 0x4a00 */\n  { 5312, 0xffff }, { 5328, 0xfbff }, { 5343, 0xffff }, { 5359, 0xffff },\n  { 5375, 0xbfef }, { 5389, 0xffff }, { 5405, 0xffff }, { 5421, 0xffff },\n  { 5437, 0xffff }, { 5453, 0x7fff }, { 5468, 0xfbff }, { 5483, 0xffff },\n  { 5499, 0xffff }, { 5515, 0xffff }, { 5531, 0xffff }, { 5547, 0xffff },\n  /* 0x4b00 */\n  { 5563, 0xffff }, { 5579, 0xffff }, { 5595, 0xffff }, { 5611, 0xffff },\n  { 5627, 0x7fff }, { 5642, 0xefff }, { 5657, 0xfbff }, { 5672, 0xffff },\n  { 5688, 0xffff }, { 5704, 0xffff }, { 5720, 0xffff }, { 5736, 0xffff },\n  { 5752, 0xffc7 }, { 5765, 0xffff }, { 5781, 0xfdff }, { 5796, 0xf7ff },\n  /* 0x4c00 */\n  { 5811, 0xff7f }, { 5826, 0xffff }, { 5842, 0xbfff }, { 5857, 0xffb7 },\n  { 5871, 0xffff }, { 5887, 0xffff }, { 5903, 0xfbff }, { 5918, 0xffef },\n  { 5933, 0xff7f }, { 5948, 0x1eff }, { 5960, 0xffe0 }, { 5971, 0xffbf },\n  { 5986, 0xffff }, { 6002, 0xffff }, { 6018, 0xffff }, { 6034, 0xfdff },\n  /* 0x4d00 */\n  { 6049, 0xffff }, { 6065, 0xfc07 }, { 6074, 0xfeff }, { 6089, 0xffff },\n  { 6105, 0xffff }, { 6121, 0xffff }, { 6137, 0xffff }, { 6153, 0xffff },\n  { 6169, 0xffff }, { 6185, 0xffff }, { 6201, 0x9fff }, { 6215, 0x003b },\n  { 6220, 0x0000 }, { 6220, 0x0000 }, { 6220, 0x0000 }, { 6220, 0x0000 },\n  /* 0x4e00 */\n  { 6220, 0xffbf }, { 6235, 0xc3f7 }, { 6246, 0xef5f }, { 6259, 0xbb6f },\n  { 6271, 0xebef }, { 6284, 0xf7de }, { 6297, 0x070c }, { 6302, 0xc23a },\n  { 6309, 0xfbff }, { 6324, 0xfbfe }, { 6338, 0xf97f }, { 6351, 0x56df },\n  { 6362, 0xffff }, { 6378, 0xfff1 }, { 6391, 0xc3ff }, { 6403, 0xffff },\n  /* 0x4f00 */\n  { 6419, 0xffff }, { 6435, 0x3fff }, { 6449, 0xf304 }, { 6456, 0xffff },\n  { 6472, 0xffff }, { 6488, 0xffff }, { 6504, 0xffdf }, { 6519, 0xffff },\n  { 6535, 0xffff }, { 6551, 0xffff }, { 6567, 0xc80f }, { 6574, 0xffff },\n  { 6590, 0xffff }, { 6606, 0xffff }, { 6622, 0xd2bf }, { 6633, 0xffff },\n  /* 0x5000 */\n  { 6649, 0xffff }, { 6665, 0xffff }, { 6681, 0xffff }, { 6697, 0x93ff },\n  { 6709, 0xffff }, { 6725, 0xffff }, { 6741, 0xffff }, { 6757, 0x3fff },\n  { 6771, 0xffff }, { 6787, 0xffff }, { 6803, 0xfc4f }, { 6814, 0xffff },\n  { 6830, 0xffff }, { 6846, 0xffff }, { 6862, 0xffff }, { 6878, 0xfffb },\n  /* 0x5100 */\n  { 6893, 0xffff }, { 6909, 0xffff }, { 6925, 0xffff }, { 6941, 0xffff },\n  { 6957, 0xffff }, { 6973, 0xffff }, { 6989, 0x7fff }, { 7004, 0xd3ee },\n  { 7015, 0xfffd }, { 7030, 0xe3ff }, { 7043, 0x3f7f }, { 7056, 0xf7ff },\n  { 7071, 0xffff }, { 7087, 0xffff }, { 7103, 0x753f }, { 7114, 0x67ff },\n  /* 0x5200 */\n  { 7127, 0xdfff }, { 7142, 0xf1ff }, { 7155, 0xcfff }, { 7169, 0x7fff },\n  { 7184, 0xfffa }, { 7198, 0xfffc }, { 7212, 0xffff }, { 7228, 0xfffd },\n  { 7243, 0x7fff }, { 7258, 0xffff }, { 7274, 0xfff9 }, { 7288, 0xfffb },\n  { 7303, 0xf7ff }, { 7318, 0xfbff }, { 7333, 0xffff }, { 7349, 0xffff },\n  /* 0x5300 */\n  { 7365, 0xfffb }, { 7380, 0xffff }, { 7396, 0xbfbf }, { 7410, 0xffff },\n  { 7426, 0xffff }, { 7442, 0xffbf }, { 7457, 0xf7fb }, { 7471, 0xffff },\n  { 7487, 0xcfdd }, { 7499, 0xffdc }, { 7512, 0xfff3 }, { 7526, 0x6fff },\n  { 7540, 0xff3f }, { 7554, 0xfefd }, { 7568, 0xffff }, { 7584, 0xbfff },\n  /* 0x5400 */\n  { 7599, 0xffff }, { 7615, 0xff6f }, { 7629, 0xffff }, { 7645, 0xffff },\n  { 7661, 0xffff }, { 7677, 0xe413 }, { 7684, 0xffff }, { 7700, 0xffff },\n  { 7716, 0xffff }, { 7732, 0xd57f }, { 7744, 0xffff }, { 7760, 0xffff },\n  { 7776, 0xffff }, { 7792, 0x4441 }, { 7796, 0xffff }, { 7812, 0xffff },\n  /* 0x5500 */\n  { 7828, 0xffff }, { 7844, 0x0fff }, { 7856, 0xffc3 }, { 7868, 0xffff },\n  { 7884, 0xffff }, { 7900, 0xffff }, { 7916, 0x0d7f }, { 7926, 0xfcee },\n  { 7938, 0xffff }, { 7954, 0xffff }, { 7970, 0xffff }, { 7986, 0x8c7f },\n  { 7996, 0xffff }, { 8012, 0xffff }, { 8028, 0xc7ff }, { 8041, 0xffd7 },\n  /* 0x5600 */\n  { 8055, 0xffff }, { 8071, 0xfbff }, { 8086, 0xffc5 }, { 8098, 0xffff },\n  { 8114, 0xffff }, { 8130, 0xc7ff }, { 8143, 0xffff }, { 8159, 0xefff },\n  { 8174, 0xffff }, { 8190, 0xffff }, { 8206, 0xffe1 }, { 8218, 0xffff },\n  { 8234, 0xbfff }, { 8249, 0xff9f }, { 8263, 0xfffb }, { 8278, 0xbfcf },\n  /* 0x5700 */\n  { 8291, 0xffbf }, { 8306, 0xfdff }, { 8321, 0xffbf }, { 8336, 0xf87f },\n  { 8348, 0xffff }, { 8364, 0x8bff }, { 8376, 0xfffe }, { 8391, 0xffff },\n  { 8407, 0xfd8f }, { 8419, 0xffff }, { 8435, 0x5fff }, { 8449, 0xfff0 },\n  { 8461, 0xffff }, { 8477, 0xf8bf }, { 8489, 0xffff }, { 8505, 0xffff },\n  /* 0x5800 */\n  { 8521, 0xffff }, { 8537, 0xff9d }, { 8550, 0xffff }, { 8566, 0xffff },\n  { 8582, 0xffbd }, { 8596, 0xffff }, { 8612, 0xbfff }, { 8627, 0xfffe },\n  { 8642, 0xffff }, { 8658, 0xfdff }, { 8673, 0xffff }, { 8689, 0xfcbf },\n  { 8702, 0xe7ff }, { 8716, 0xff7f }, { 8731, 0xdbdf }, { 8744, 0xfebf },\n  /* 0x5900 */\n  { 8758, 0xff7f }, { 8773, 0xbfff }, { 8788, 0xffff }, { 8804, 0xf1ff },\n  { 8817, 0xfff9 }, { 8831, 0xffbf }, { 8846, 0xffff }, { 8862, 0xffff },\n  { 8878, 0xfe7f }, { 8892, 0xffff }, { 8908, 0xf1ff }, { 8921, 0xffff },\n  { 8937, 0xffff }, { 8953, 0xffff }, { 8969, 0xffff }, { 8985, 0xffff },\n  /* 0x5a00 */\n  { 9001, 0xfe1f }, { 9013, 0xffff }, { 9029, 0xffff }, { 9045, 0xffeb },\n  { 9059, 0xffff }, { 9075, 0xffff }, { 9091, 0xffff }, { 9107, 0xffaf },\n  { 9121, 0xffff }, { 9137, 0xffff }, { 9153, 0xdfff }, { 9168, 0xffff },\n  { 9184, 0xffff }, { 9200, 0xffeb }, { 9214, 0xffff }, { 9230, 0xfff9 },\n  /* 0x5b00 */\n  { 9244, 0xffff }, { 9260, 0xffff }, { 9276, 0xffff }, { 9292, 0xffbf },\n  { 9307, 0xffff }, { 9323, 0xbdff }, { 9337, 0xdfff }, { 9352, 0xffff },\n  { 9368, 0xffff }, { 9384, 0xfffd }, { 9399, 0xfbfc }, { 9412, 0xdfff },\n  { 9427, 0xfdff }, { 9442, 0xffff }, { 9458, 0xffff }, { 9474, 0xe7ff },\n  /* 0x5c00 */\n  { 9488, 0xfffb }, { 9503, 0xcfff }, { 9517, 0xbf3f }, { 9530, 0xffeb },\n  { 9544, 0xfff3 }, { 9558, 0xffff }, { 9574, 0xffbf }, { 9589, 0x7fbb },\n  { 9602, 0xfff3 }, { 9616, 0xf2bf }, { 9628, 0xffff }, { 9644, 0x0fff },\n  { 9656, 0xffc3 }, { 9668, 0xffff }, { 9684, 0xff66 }, { 9696, 0xffff },\n  /* 0x5d00 */\n  { 9712, 0xffc3 }, { 9724, 0xffff }, { 9740, 0xdfff }, { 9755, 0xffff },\n  { 9771, 0xffff }, { 9787, 0xcaff }, { 9799, 0xffff }, { 9815, 0xffbf },\n  { 9830, 0xffff }, { 9846, 0xffff }, { 9862, 0xffff }, { 9878, 0xffff },\n  { 9894, 0xffdf }, { 9909, 0xffff }, { 9925, 0x4bff }, { 9937, 0xefff },\n  /* 0x5e00 */\n  { 9952, 0x7fdf }, { 9966, 0xeffe }, { 9980, 0xff3f }, { 9994, 0xe7fd },\n  { 10007, 0xfdff }, { 10022, 0xffff }, { 10038, 0xffff }, { 10054, 0xffff },\n  { 10070, 0xffbf }, { 10085, 0x3fe5 }, { 10096, 0xffff }, { 10112, 0xefff },\n  { 10127, 0xffff }, { 10143, 0xffff }, { 10159, 0xffef }, { 10174, 0xffff },\n  /* 0x5f00 */\n  { 10190, 0xfdff }, { 10205, 0xffbf }, { 10220, 0xfbfe }, { 10234, 0xffff },\n  { 10250, 0xffdf }, { 10265, 0x7fff }, { 10280, 0xfeff }, { 10295, 0xf7ff },\n  { 10310, 0xffff }, { 10326, 0xffdf }, { 10341, 0xffff }, { 10357, 0xffff },\n  { 10373, 0xffbf }, { 10388, 0xffff }, { 10404, 0xffff }, { 10420, 0xffff },\n  /* 0x6000 */\n  { 10436, 0xff81 }, { 10446, 0xffff }, { 10462, 0xffff }, { 10478, 0x23ff },\n  { 10489, 0xffff }, { 10505, 0xffff }, { 10521, 0xffff }, { 10537, 0xd03f },\n  { 10546, 0xffff }, { 10562, 0xffff }, { 10578, 0x47ff }, { 10590, 0xffff },\n  { 10606, 0xffff }, { 10622, 0xffff }, { 10638, 0x47ff }, { 10650, 0xffff },\n  /* 0x6100 */\n  { 10666, 0xffff }, { 10682, 0xffff }, { 10698, 0xffaf }, { 10712, 0xffff },\n  { 10728, 0xffff }, { 10744, 0xfffd }, { 10759, 0xffff }, { 10775, 0xffff },\n  { 10791, 0xffff }, { 10807, 0xffff }, { 10823, 0xffff }, { 10839, 0xffff },\n  { 10855, 0xffff }, { 10871, 0xffe9 }, { 10884, 0xffff }, { 10900, 0xffef },\n  /* 0x6200 */\n  { 10915, 0xf7bf }, { 10929, 0xff7f }, { 10944, 0xffff }, { 10960, 0xffff },\n  { 10976, 0xffef }, { 10991, 0xff9f }, { 11005, 0xe1ff }, { 11017, 0xffff },\n  { 11033, 0xffff }, { 11049, 0x7fff }, { 11064, 0xfff8 }, { 11077, 0xffff },\n  { 11093, 0xffff }, { 11109, 0xffff }, { 11125, 0xfc13 }, { 11134, 0xffff },\n  /* 0x6300 */\n  { 11150, 0xffff }, { 11166, 0x8aff }, { 11177, 0xff0a }, { 11187, 0xffff },\n  { 11203, 0xffff }, { 11219, 0x3fff }, { 11233, 0xfff1 }, { 11246, 0xffff },\n  { 11262, 0xffff }, { 11278, 0xffff }, { 11294, 0xffff }, { 11310, 0xe447 },\n  { 11318, 0xffff }, { 11334, 0xffff }, { 11350, 0xffff }, { 11366, 0x47ff },\n  /* 0x6400 */\n  { 11378, 0xffc8 }, { 11389, 0xffff }, { 11405, 0xffff }, { 11421, 0xffff },\n  { 11437, 0xfacb }, { 11448, 0xffff }, { 11464, 0xffff }, { 11480, 0xffff },\n  { 11496, 0xffef }, { 11511, 0xffff }, { 11527, 0xffff }, { 11543, 0xfa5f },\n  { 11555, 0xffff }, { 11571, 0x9fff }, { 11585, 0xffff }, { 11601, 0xffff },\n  /* 0x6500 */\n  { 11617, 0xffff }, { 11633, 0xfffb }, { 11648, 0xffff }, { 11664, 0xffff },\n  { 11680, 0xffff }, { 11696, 0xf7ff }, { 11711, 0xfdff }, { 11726, 0x9fff },\n  { 11740, 0x7fbf }, { 11754, 0xfff7 }, { 11769, 0xfdff }, { 11784, 0xffff },\n  { 11800, 0xfffe }, { 11815, 0xffdf }, { 11830, 0xffff }, { 11846, 0xfe7f },\n  /* 0x6600 */\n  { 11860, 0xffff }, { 11876, 0xffff }, { 11892, 0xffff }, { 11908, 0x1fff },\n  { 11921, 0xffff }, { 11937, 0xff87 }, { 11949, 0xffff }, { 11965, 0xffff },\n  { 11981, 0xfff3 }, { 11995, 0xffff }, { 12011, 0xff7f }, { 12026, 0xffff },\n  { 12042, 0xffff }, { 12058, 0xffff }, { 12074, 0xffff }, { 12090, 0xd7ff },\n  /* 0x6700 */\n  { 12104, 0xffff }, { 12120, 0xffff }, { 12136, 0xfdff }, { 12151, 0xfffe },\n  { 12166, 0xfff5 }, { 12180, 0xffff }, { 12196, 0xfc67 }, { 12207, 0xffff },\n  { 12223, 0xffff }, { 12239, 0xffff }, { 12255, 0xd05e }, { 12263, 0xffff },\n  { 12279, 0xffff }, { 12295, 0xffff }, { 12311, 0xffff }, { 12327, 0xdfff },\n  /* 0x6800 */\n  { 12342, 0x0073 }, { 12347, 0xffff }, { 12363, 0xffff }, { 12379, 0xffff },\n  { 12395, 0xffff }, { 12411, 0x47ff }, { 12423, 0xf800 }, { 12428, 0xffff },\n  { 12444, 0xdfff }, { 12459, 0xffff }, { 12475, 0xffff }, { 12491, 0x23ff },\n  { 12502, 0xfffa }, { 12516, 0xffff }, { 12532, 0xffff }, { 12548, 0xffff },\n  /* 0x6900 */\n  { 12564, 0xffff }, { 12580, 0x59ff }, { 12592, 0xdea0 }, { 12600, 0xffff },\n  { 12616, 0xffff }, { 12632, 0xffff }, { 12648, 0xffff }, { 12664, 0xbfff },\n  { 12679, 0xf46d }, { 12689, 0xffff }, { 12705, 0xffff }, { 12721, 0xffff },\n  { 12737, 0xffff }, { 12753, 0x03ff }, { 12763, 0xfffe }, { 12778, 0xffff },\n  /* 0x6a00 */\n  { 12794, 0xffff }, { 12810, 0xffff }, { 12826, 0x3fff }, { 12840, 0xfffc },\n  { 12854, 0xffff }, { 12870, 0xffff }, { 12886, 0xffff }, { 12902, 0xe5c7 },\n  { 12912, 0xffff }, { 12928, 0xffff }, { 12944, 0xfdff }, { 12959, 0xffff },\n  { 12975, 0xfdff }, { 12990, 0xffff }, { 13006, 0xffef }, { 13021, 0xff7f },\n  /* 0x6b00 */\n  { 13036, 0xffdf }, { 13051, 0x7fff }, { 13066, 0xffff }, { 13082, 0xffff },\n  { 13098, 0xffff }, { 13114, 0xffff }, { 13130, 0xffff }, { 13146, 0xefff },\n  { 13161, 0xff7f }, { 13176, 0xfbf3 }, { 13189, 0xffff }, { 13205, 0xfffd },\n  { 13220, 0xfffb }, { 13235, 0x7ddf }, { 13248, 0xbfff }, { 13263, 0xffff },\n  /* 0x6c00 */\n  { 13279, 0xbf7f }, { 13293, 0xff7f }, { 13308, 0xfdfb }, { 13322, 0xdbdf },\n  { 13335, 0xfe7f }, { 13349, 0xffff }, { 13365, 0xffef }, { 13380, 0xffff },\n  { 13396, 0xffff }, { 13412, 0xffff }, { 13428, 0xfc0f }, { 13438, 0xffff },\n  { 13454, 0xffff }, { 13470, 0xffff }, { 13486, 0xffff }, { 13502, 0x823f },\n  /* 0x6d00 */\n  { 13510, 0xffff }, { 13526, 0xffff }, { 13542, 0xffff }, { 13558, 0xffff },\n  { 13574, 0x003f }, { 13580, 0xffc0 }, { 13590, 0xffff }, { 13606, 0xffff },\n  { 13622, 0xffff }, { 13638, 0x0fff }, { 13650, 0xfc20 }, { 13657, 0xffff },\n  { 13673, 0xffff }, { 13689, 0xffff }, { 13705, 0xffff }, { 13721, 0xffff },\n  /* 0x6e00 */\n  { 13737, 0x9fff }, { 13751, 0xffa4 }, { 13762, 0xffff }, { 13778, 0xffff },\n  { 13794, 0xffff }, { 13810, 0xffff }, { 13826, 0xffff }, { 13842, 0x7fff },\n  { 13857, 0xef55 }, { 13868, 0xffff }, { 13884, 0xffff }, { 13900, 0xffff },\n  { 13916, 0xffff }, { 13932, 0x3fff }, { 13946, 0xfb48 }, { 13955, 0xffff },\n  /* 0x6f00 */\n  { 13971, 0xffff }, { 13987, 0xffff }, { 14003, 0xffff }, { 14019, 0xffff },\n  { 14035, 0xd77f }, { 14048, 0xffff }, { 14064, 0xffff }, { 14080, 0xffff },\n  { 14096, 0xffff }, { 14112, 0xe7ff }, { 14126, 0xffff }, { 14142, 0xffff },\n  { 14158, 0xffff }, { 14174, 0xfff9 }, { 14188, 0xffff }, { 14204, 0xfdff },\n  /* 0x7000 */\n  { 14219, 0xffff }, { 14235, 0xffff }, { 14251, 0xffff }, { 14267, 0xffff },\n  { 14283, 0x3fff }, { 14297, 0xfffe }, { 14312, 0xdfff }, { 14327, 0xffff },\n  { 14343, 0xfffe }, { 14358, 0x8fff }, { 14371, 0xffff }, { 14387, 0xcfff },\n  { 14401, 0xfff1 }, { 14414, 0xffff }, { 14430, 0xc43f }, { 14439, 0xffff },\n  /* 0x7100 */\n  { 14455, 0xffff }, { 14471, 0xfe8f }, { 14483, 0xffff }, { 14499, 0xafff },\n  { 14513, 0xfffe }, { 14528, 0xffdf }, { 14543, 0xffff }, { 14559, 0xfff7 },\n  { 14574, 0xffff }, { 14590, 0xffff }, { 14606, 0xffff }, { 14622, 0xffff },\n  { 14638, 0xffff }, { 14654, 0xffff }, { 14670, 0xffff }, { 14686, 0xff3f },\n  /* 0x7200 */\n  { 14700, 0xffff }, { 14716, 0xffff }, { 14732, 0xffff }, { 14748, 0xff75 },\n  { 14761, 0xdfff }, { 14776, 0xefff }, { 14791, 0xffff }, { 14807, 0xffdf },\n  { 14822, 0xfbff }, { 14837, 0xffff }, { 14853, 0xfffe }, { 14868, 0xfe7f },\n  { 14882, 0xfeff }, { 14897, 0xbfff }, { 14912, 0x3fff }, { 14926, 0xfff8 },\n  /* 0x7300 */\n  { 14939, 0xfff7 }, { 14954, 0x7fff }, { 14969, 0xfffc }, { 14983, 0xfdff },\n  { 14998, 0xffff }, { 15014, 0xffff }, { 15030, 0xdfe7 }, { 15043, 0xffff },\n  { 15059, 0xffff }, { 15075, 0xf1ff }, { 15088, 0xbfff }, { 15103, 0xfffc },\n  { 15117, 0xffff }, { 15133, 0xfffd }, { 15148, 0xffff }, { 15164, 0xfff8 },\n  /* 0x7400 */\n  { 15177, 0x3fff }, { 15191, 0xfffc }, { 15205, 0xffff }, { 15221, 0xff7f },\n  { 15236, 0xffff }, { 15252, 0xffff }, { 15268, 0xffff }, { 15284, 0xff7f },\n  { 15299, 0xbfff }, { 15314, 0xffff }, { 15330, 0xffff }, { 15346, 0xffff },\n  { 15362, 0xffff }, { 15378, 0xfffb }, { 15393, 0xff7f }, { 15408, 0xeff8 },\n  /* 0x7500 */\n  { 15420, 0xffdf }, { 15435, 0xfdff }, { 15450, 0xffff }, { 15466, 0xefcf },\n  { 15479, 0xffdf }, { 15494, 0xfffb }, { 15509, 0xfdfe }, { 15523, 0xffe7 },\n  { 15537, 0xdffb }, { 15551, 0x7f3f }, { 15564, 0x0ffc }, { 15574, 0xffff },\n  { 15590, 0xfcff }, { 15604, 0xffbf }, { 15619, 0xf0ff }, { 15631, 0xffff },\n  /* 0x7600 */\n  { 15647, 0xff8f }, { 15660, 0xfe7f }, { 15674, 0xf3ff }, { 15688, 0x3fff },\n  { 15702, 0xdfff }, { 15717, 0x9fff }, { 15731, 0xf7b7 }, { 15744, 0xfbff },\n  { 15759, 0xffff }, { 15775, 0xfffd }, { 15790, 0xffff }, { 15806, 0xfff9 },\n  { 15820, 0x7fff }, { 15835, 0xfffc }, { 15849, 0xffff }, { 15865, 0xffff },\n  /* 0x7700 */\n  { 15881, 0xcfff }, { 15895, 0xffff }, { 15911, 0xefff }, { 15926, 0xffff },\n  { 15942, 0xffff }, { 15958, 0xfffc }, { 15972, 0xffff }, { 15988, 0xffff },\n  { 16004, 0xffbf }, { 16019, 0xfff3 }, { 16033, 0xffff }, { 16049, 0xffff },\n  { 16065, 0xf6ff }, { 16079, 0xffff }, { 16095, 0xf7ff }, { 16110, 0x7fff },\n  /* 0x7800 */\n  { 16125, 0xfffc }, { 16139, 0xeb3f }, { 16151, 0xffff }, { 16167, 0x21ff },\n  { 16177, 0xfffc }, { 16191, 0xf11f }, { 16201, 0xffff }, { 16217, 0xff43 },\n  { 16228, 0xffff }, { 16244, 0xf7ff }, { 16259, 0xffff }, { 16275, 0xff9f },\n  { 16289, 0xffff }, { 16305, 0xfd7f }, { 16319, 0xffff }, { 16335, 0xffdf },\n  /* 0x7900 */\n  { 16350, 0xfff7 }, { 16365, 0xffbf }, { 16380, 0xffff }, { 16396, 0xf7e7 },\n  { 16409, 0xbff7 }, { 16423, 0xffff }, { 16439, 0x7fff }, { 16454, 0xfeff },\n  { 16469, 0xffdf }, { 16484, 0xffff }, { 16500, 0xffff }, { 16516, 0xffff },\n  { 16532, 0xffff }, { 16548, 0xffff }, { 16564, 0x7fff }, { 16579, 0x9fef },\n  /* 0x7a00 */\n  { 16592, 0xffff }, { 16608, 0xffff }, { 16624, 0xffe7 }, { 16638, 0xffff },\n  { 16654, 0xfff7 }, { 16669, 0x9ff9 }, { 16681, 0xfff7 }, { 16696, 0xff7f },\n  { 16711, 0x9fff }, { 16725, 0xcfff }, { 16739, 0xdf9f }, { 16752, 0xffff },\n  { 16768, 0xfff7 }, { 16783, 0xbfbf }, { 16797, 0xffff }, { 16813, 0xffff },\n  /* 0x7b00 */\n  { 16829, 0xff73 }, { 16842, 0xffdf }, { 16857, 0xffff }, { 16873, 0xabff },\n  { 16886, 0xffff }, { 16902, 0xc3ff }, { 16914, 0xffff }, { 16930, 0x0bff },\n  { 16941, 0xfffe }, { 16956, 0xfbff }, { 16971, 0xf03f }, { 16981, 0xffff },\n  { 16997, 0x7fff }, { 17012, 0xfff1 }, { 17025, 0x3fff }, { 17039, 0xffff },\n  /* 0x7c00 */\n  { 17055, 0xffff }, { 17071, 0xff37 }, { 17084, 0xffff }, { 17100, 0xfffd },\n  { 17115, 0xfffd }, { 17130, 0xffff }, { 17146, 0xfffd }, { 17161, 0xffff },\n  { 17177, 0x7ffb }, { 17191, 0xfffe }, { 17206, 0xdbff }, { 17220, 0xffff },\n  { 17236, 0xffff }, { 17252, 0xfeff }, { 17267, 0xffff }, { 17283, 0xfdff },\n  /* 0x7d00 */\n  { 17298, 0xffff }, { 17314, 0xffff }, { 17330, 0xff3f }, { 17344, 0xffff },\n  { 17360, 0xffff }, { 17376, 0xffff }, { 17392, 0xffff }, { 17408, 0xff7f },\n  { 17423, 0xffff }, { 17439, 0xf3ff }, { 17453, 0xffff }, { 17469, 0xffff },\n  { 17485, 0xffff }, { 17501, 0xffcf }, { 17515, 0xffff }, { 17531, 0xffff },\n  /* 0x7e00 */\n  { 17547, 0xff9f }, { 17561, 0xffff }, { 17577, 0xfeff }, { 17592, 0xffff },\n  { 17608, 0xf3ff }, { 17622, 0xffff }, { 17638, 0xff7f }, { 17653, 0xffff },\n  { 17669, 0xfff7 }, { 17684, 0x7ffe }, { 17698, 0x0000 }, { 17698, 0x0000 },\n  { 17698, 0x0000 }, { 17698, 0x0000 }, { 17698, 0x0000 }, { 17698, 0x0000 },\n  /* 0x7f00 */\n  { 17698, 0x0000 }, { 17698, 0x0000 }, { 17698, 0x0000 }, { 17698, 0xffc0 },\n  { 17708, 0xfdfb }, { 17722, 0xfbb7 }, { 17735, 0xffff }, { 17751, 0xffef },\n  { 17766, 0xfffd }, { 17781, 0x7fff }, { 17796, 0xfbff }, { 17811, 0xffff },\n  { 17827, 0xffff }, { 17843, 0xf8ff }, { 17856, 0xffff }, { 17872, 0xffff },\n  /* 0x8000 */\n  { 17888, 0xffff }, { 17904, 0xffff }, { 17920, 0xff7b }, { 17934, 0xffff },\n  { 17950, 0xc7fb }, { 17962, 0xffef }, { 17977, 0xfdfb }, { 17991, 0xffff },\n  { 18007, 0xfff6 }, { 18021, 0xffff }, { 18037, 0xfffe }, { 18052, 0x0fff },\n  { 18064, 0xfffc }, { 18078, 0xffff }, { 18094, 0xe07f }, { 18104, 0xffff },\n  /* 0x8100 */\n  { 18120, 0x07ff }, { 18131, 0xfff0 }, { 18143, 0xffff }, { 18159, 0xfe13 },\n  { 18169, 0xffff }, { 18185, 0xf93f }, { 18197, 0xffff }, { 18213, 0xa7ff },\n  { 18226, 0xffff }, { 18242, 0xfffd }, { 18257, 0xffcf }, { 18271, 0xffbf },\n  { 18286, 0xffff }, { 18302, 0xeff7 }, { 18316, 0xffff }, { 18332, 0xffff },\n  /* 0x8200 */\n  { 18348, 0xffbf }, { 18363, 0xff7f }, { 18378, 0xbff7 }, { 18392, 0xb7fc },\n  { 18404, 0xdfff }, { 18419, 0xdfef }, { 18433, 0xfffe }, { 18448, 0xfbfe },\n  { 18462, 0xfefb }, { 18476, 0xff7f }, { 18491, 0xffff }, { 18507, 0xffff },\n  { 18523, 0x063f }, { 18531, 0xffff }, { 18547, 0xffff }, { 18563, 0xffff },\n  /* 0x8300 */\n  { 18579, 0x7fff }, { 18594, 0xffc5 }, { 18606, 0xffff }, { 18622, 0xffff },\n  { 18638, 0xffff }, { 18654, 0x01ff }, { 18663, 0x000c }, { 18665, 0xffff },\n  { 18681, 0xffff }, { 18697, 0xffff }, { 18713, 0xffff }, { 18729, 0xe281 },\n  { 18735, 0xffff }, { 18751, 0xffff }, { 18767, 0xffff }, { 18783, 0xffff },\n  /* 0x8400 */\n  { 18799, 0xffff }, { 18815, 0xc9ff }, { 18827, 0xfe0a }, { 18836, 0xffff },\n  { 18852, 0xffff }, { 18868, 0xffff }, { 18884, 0xffff }, { 18900, 0xffff },\n  { 18916, 0xe15f }, { 18926, 0xffff }, { 18942, 0xffff }, { 18958, 0xffff },\n  { 18974, 0xffff }, { 18990, 0x4dff }, { 19002, 0xff96 }, { 19014, 0xffff },\n  /* 0x8500 */\n  { 19030, 0xffff }, { 19046, 0xffff }, { 19062, 0xffff }, { 19078, 0xe93f },\n  { 19089, 0xffff }, { 19105, 0xffff }, { 19121, 0xffff }, { 19137, 0xffeb },\n  { 19151, 0xffff }, { 19167, 0xffff }, { 19183, 0x9fff }, { 19197, 0xffff },\n  { 19213, 0xffff }, { 19229, 0xfff7 }, { 19244, 0xffff }, { 19260, 0xffff },\n  /* 0x8600 */\n  { 19276, 0xffff }, { 19292, 0xffeb }, { 19306, 0xffff }, { 19322, 0xfffe },\n  { 19337, 0x7fef }, { 19351, 0xffff }, { 19367, 0xffff }, { 19383, 0x7fff },\n  { 19398, 0xfff0 }, { 19410, 0xffff }, { 19426, 0xe7ff }, { 19440, 0xffff },\n  { 19456, 0x9fff }, { 19470, 0xffff }, { 19486, 0x7fff }, { 19501, 0xffe0 },\n  /* 0x8700 */\n  { 19512, 0xffff }, { 19528, 0xff7f }, { 19543, 0xffff }, { 19559, 0xffff },\n  { 19575, 0xf4ff }, { 19588, 0xffff }, { 19604, 0xffff }, { 19620, 0x3fff },\n  { 19634, 0xfffe }, { 19649, 0xffff }, { 19665, 0xfe3f }, { 19678, 0xffff },\n  { 19694, 0x7fff }, { 19709, 0xfffe }, { 19724, 0xffff }, { 19740, 0xffff },\n  /* 0x8800 */\n  { 19756, 0xffff }, { 19772, 0xffff }, { 19788, 0xffff }, { 19804, 0xffff },\n  { 19820, 0xffff }, { 19836, 0xffef }, { 19851, 0xefcf }, { 19864, 0xffff },\n  { 19880, 0xff9f }, { 19894, 0xffff }, { 19910, 0x1fff }, { 19923, 0xfffe },\n  { 19938, 0xfe07 }, { 19948, 0xffff }, { 19964, 0xffc3 }, { 19976, 0xffff },\n  /* 0x8900 */\n  { 19992, 0xffef }, { 20007, 0xcfff }, { 20021, 0xffff }, { 20037, 0xffef },\n  { 20052, 0xff5f }, { 20066, 0xffdf }, { 20081, 0xfeff }, { 20096, 0xffff },\n  { 20112, 0xfffe }, { 20127, 0xffff }, { 20143, 0xffff }, { 20159, 0xffff },\n  { 20175, 0x0001 }, { 20176, 0xbffc }, { 20189, 0x7fff }, { 20204, 0xffff },\n  /* 0x8a00 */\n  { 20220, 0xfffd }, { 20235, 0xfbff }, { 20250, 0xffff }, { 20266, 0xfff7 },\n  { 20281, 0xffff }, { 20297, 0x7fff }, { 20312, 0xffff }, { 20328, 0xffff },\n  { 20344, 0xf9ff }, { 20358, 0xffff }, { 20374, 0xbfff }, { 20389, 0xffff },\n  { 20405, 0xffff }, { 20421, 0xfbff }, { 20436, 0xffff }, { 20452, 0xffff },\n  /* 0x8b00 */\n  { 20468, 0xffff }, { 20484, 0xffff }, { 20500, 0xfffd }, { 20515, 0xffff },\n  { 20531, 0xffff }, { 20547, 0xf7ff }, { 20562, 0xffff }, { 20578, 0xfffb },\n  { 20593, 0x7fff }, { 20608, 0xffff }, { 20624, 0x0000 }, { 20624, 0x0000 },\n  { 20624, 0x0000 }, { 20624, 0x0000 }, { 20624, 0x0000 }, { 20624, 0x0000 },\n  /* 0x8c00 */\n  { 20624, 0x0000 }, { 20624, 0x0000 }, { 20624, 0x0000 }, { 20624, 0xff80 },\n  { 20633, 0xffff }, { 20649, 0xffff }, { 20665, 0xbfff }, { 20680, 0xffff },\n  { 20696, 0xffff }, { 20712, 0xffff }, { 20728, 0xffff }, { 20744, 0xffff },\n  { 20760, 0xbfff }, { 20775, 0xffff }, { 20791, 0xffff }, { 20807, 0xffff },\n  /* 0x8d00 */\n  { 20823, 0xffff }, { 20839, 0x1fff }, { 20852, 0x0000 }, { 20852, 0x0000 },\n  { 20852, 0x0000 }, { 20852, 0x0000 }, { 20852, 0xfbf0 }, { 20863, 0xffdf },\n  { 20878, 0xffff }, { 20894, 0xffff }, { 20910, 0xffff }, { 20926, 0xfefd },\n  { 20940, 0xffef }, { 20955, 0xbfff }, { 20970, 0xffdf }, { 20985, 0xf41f },\n  /* 0x8e00 */\n  { 20995, 0xafff }, { 21009, 0xffff }, { 21025, 0x4fff }, { 21038, 0xffff },\n  { 21054, 0xffff }, { 21070, 0xfffb }, { 21085, 0xffff }, { 21101, 0x1fff },\n  { 21114, 0x7ffe }, { 21128, 0xe7ff }, { 21142, 0xffff }, { 21158, 0xf7df },\n  { 21172, 0xfedf }, { 21186, 0xffff }, { 21202, 0xfff3 }, { 21216, 0xffff },\n  /* 0x8f00 */\n  { 21232, 0xefff }, { 21247, 0xffff }, { 21263, 0xffff }, { 21279, 0xffff },\n  { 21295, 0xefff }, { 21310, 0xffff }, { 21326, 0x003f }, { 21332, 0x0000 },\n  { 21332, 0x0000 }, { 21332, 0xf800 }, { 21337, 0xf5ff }, { 21351, 0xdbff },\n  { 21365, 0xffff }, { 21381, 0x93ff }, { 21393, 0xffff }, { 21409, 0xfff3 },\n  /* 0x9000 */\n  { 21423, 0xfbff }, { 21438, 0xffff }, { 21454, 0xff3f }, { 21468, 0xfdff },\n  { 21483, 0xffff }, { 21499, 0xff3f }, { 21513, 0xffdf }, { 21528, 0xffff },\n  { 21544, 0xffff }, { 21560, 0xdfff }, { 21575, 0xefff }, { 21590, 0xf3ff },\n  { 21604, 0x7fff }, { 21619, 0xfff4 }, { 21632, 0xff3f }, { 21646, 0xfeff },\n  /* 0x9100 */\n  { 21661, 0xffff }, { 21677, 0xffff }, { 21693, 0xffff }, { 21709, 0xffff },\n  { 21725, 0xfffb }, { 21740, 0x97ff }, { 21753, 0xffbf }, { 21768, 0x1ffd },\n  { 21780, 0xffff }, { 21796, 0xff7f }, { 21811, 0xffef }, { 21826, 0xfeff },\n  { 21841, 0xfaff }, { 21855, 0xfffb }, { 21870, 0xfffd }, { 21885, 0xe3ff },\n  /* 0x9200 */\n  { 21898, 0xffff }, { 21914, 0xffff }, { 21930, 0xe8ff }, { 21942, 0xffff },\n  { 21958, 0xffff }, { 21974, 0xffff }, { 21990, 0xffff }, { 22006, 0xfffd },\n  { 22021, 0xffff }, { 22037, 0xffff }, { 22053, 0xffff }, { 22069, 0xffff },\n  { 22085, 0xffff }, { 22101, 0xffff }, { 22117, 0xffff }, { 22133, 0xffff },\n  /* 0x9300 */\n  { 22149, 0xffff }, { 22165, 0xffff }, { 22181, 0xffff }, { 22197, 0xbfff },\n  { 22212, 0xffed }, { 22226, 0xffff }, { 22242, 0xffff }, { 22258, 0xffff },\n  { 22274, 0xffff }, { 22290, 0xffff }, { 22306, 0xffff }, { 22322, 0xfbff },\n  { 22337, 0xffff }, { 22353, 0xffff }, { 22369, 0xffff }, { 22385, 0xfffe },\n  /* 0x9400 */\n  { 22400, 0xffff }, { 22416, 0xffff }, { 22432, 0xffbd }, { 22446, 0xffff },\n  { 22462, 0xfffd }, { 22477, 0xfff7 }, { 22492, 0xffff }, { 22508, 0xffff },\n  { 22524, 0x001f }, { 22529, 0x0000 }, { 22529, 0x0000 }, { 22529, 0x0000 },\n  { 22529, 0x0000 }, { 22529, 0x0000 }, { 22529, 0x0000 }, { 22529, 0x0000 },\n  /* 0x9500 */\n  { 22529, 0x0000 }, { 22529, 0x0000 }, { 22529, 0x0000 }, { 22529, 0x0000 },\n  { 22529, 0x0000 }, { 22529, 0x0000 }, { 22529, 0x0000 }, { 22529, 0x7f80 },\n  { 22537, 0xfbff }, { 22552, 0xffff }, { 22568, 0xfbff }, { 22583, 0xffff },\n  { 22599, 0x7fff }, { 22614, 0xffff }, { 22630, 0x00ff }, { 22638, 0x0020 },\n  /* 0x9600 */\n  { 22639, 0x0000 }, { 22639, 0x7000 }, { 22642, 0xffff }, { 22658, 0xff9f },\n  { 22672, 0xfc1f }, { 22683, 0xffff }, { 22699, 0xfc1f }, { 22710, 0xfbff },\n  { 22725, 0xffff }, { 22741, 0xfffe }, { 22756, 0xffff }, { 22772, 0xffff },\n  { 22788, 0xffff }, { 22804, 0xffff }, { 22820, 0xfffe }, { 22835, 0xbff7 },\n  /* 0x9700 */\n  { 22849, 0xfffd }, { 22864, 0xffff }, { 22880, 0xdfff }, { 22895, 0xffff },\n  { 22911, 0x2fff }, { 22924, 0xffe7 }, { 22938, 0xffdf }, { 22953, 0xfffd },\n  { 22968, 0xffbf }, { 22983, 0xfff8 }, { 22996, 0x7fff }, { 23011, 0xffff },\n  { 23027, 0xffff }, { 23043, 0xffff }, { 23059, 0xe03f }, { 23068, 0xffff },\n  /* 0x9800 */\n  { 23084, 0xffff }, { 23100, 0xffff }, { 23116, 0xefff }, { 23131, 0xffff },\n  { 23147, 0xffff }, { 23163, 0xffff }, { 23179, 0xffff }, { 23195, 0x001f },\n  { 23200, 0x0000 }, { 23200, 0x0000 }, { 23200, 0xfb00 }, { 23207, 0xffef },\n  { 23222, 0x3fdf }, { 23235, 0xb800 }, { 23239, 0xbefe }, { 23252, 0xffff },\n  /* 0x9900 */\n  { 23268, 0x5fff }, { 23282, 0xffff }, { 23298, 0xffff }, { 23314, 0xffff },\n  { 23330, 0xffff }, { 23346, 0xffff }, { 23362, 0x0003 }, { 23364, 0x0000 },\n  { 23364, 0x0000 }, { 23364, 0xffc0 }, { 23374, 0xffff }, { 23390, 0xffff },\n  { 23406, 0xffdf }, { 23421, 0xffff }, { 23437, 0xffff }, { 23453, 0xfffb },\n  /* 0x9a00 */\n  { 23468, 0xffff }, { 23484, 0xfff3 }, { 23498, 0xfeff }, { 23513, 0xffff },\n  { 23529, 0xffff }, { 23545, 0xffff }, { 23561, 0x0fff }, { 23573, 0x0000 },\n  { 23573, 0x0000 }, { 23573, 0x0000 }, { 23573, 0xff00 }, { 23581, 0xffff },\n  { 23597, 0xe7df }, { 23610, 0xffff }, { 23626, 0xffff }, { 23642, 0xffff },\n  /* 0x9b00 */\n  { 23658, 0xffff }, { 23674, 0xfff7 }, { 23689, 0xffff }, { 23705, 0xffbf },\n  { 23720, 0xff7f }, { 23735, 0xbfff }, { 23750, 0xffff }, { 23766, 0xfeff },\n  { 23781, 0xffff }, { 23797, 0xff7f }, { 23812, 0xffff }, { 23828, 0xffeb },\n  { 23842, 0xbfff }, { 23857, 0xfffc }, { 23871, 0xffff }, { 23887, 0xffd9 },\n  /* 0x9c00 */\n  { 23900, 0xffff }, { 23916, 0xf8ff }, { 23929, 0xffff }, { 23945, 0xfffe },\n  { 23960, 0xffff }, { 23976, 0xe3ff }, { 23989, 0xf1ff }, { 24002, 0x0ffe },\n  { 24013, 0x0000 }, { 24013, 0x0000 }, { 24013, 0x0000 }, { 24013, 0x0000 },\n  { 24013, 0x0000 }, { 24013, 0x0000 }, { 24013, 0xffe0 }, { 24024, 0xfffe },\n  /* 0x9d00 */\n  { 24039, 0xbfff }, { 24054, 0xffff }, { 24070, 0xe7ff }, { 24084, 0xffff },\n  { 24100, 0xfebf }, { 24114, 0xffff }, { 24130, 0xffdf }, { 24145, 0xffff },\n  { 24161, 0x1fff }, { 24174, 0xffff }, { 24190, 0xf7ff }, { 24205, 0xffff },\n  { 24221, 0xffbf }, { 24236, 0xffff }, { 24252, 0xffff }, { 24268, 0xffff },\n  /* 0x9e00 */\n  { 24284, 0xffff }, { 24300, 0x7fff }, { 24315, 0x0000 }, { 24315, 0x0000 },\n  { 24315, 0x0000 }, { 24315, 0x0000 }, { 24315, 0x0000 }, { 24315, 0xbee0 },\n  { 24324, 0xffff }, { 24340, 0xffff }, { 24356, 0xffff }, { 24372, 0xf8ff },\n  { 24385, 0xfdff }, { 24400, 0xffff }, { 24416, 0xf9fd }, { 24429, 0xffff },\n  /* 0x9f00 */\n  { 24445, 0xc7ff }, { 24458, 0xffff }, { 24474, 0xfffd }, { 24489, 0xffff },\n  { 24505, 0xffff }, { 24521, 0xfffd }, { 24536, 0xfffb }, { 24551, 0x7fff },\n  { 24566, 0xe000 }, { 24569, 0x73ff }, { 24582, 0x003f },\n};\nstatic const Summary16 cns11643_inv_uni2indx_pagefa[3] = {\n  /* 0xfa00 */\n  { 24588, 0x0000 }, { 24588, 0x0000 }, { 24588, 0x0100 },\n};\nstatic const Summary16 cns11643_inv_uni2indx_pagefe[31] = {\n  /* 0xfe00 */\n  { 24589, 0x0000 }, { 24589, 0x0000 }, { 24589, 0x0000 }, { 24589, 0xffe7 },\n  { 24603, 0x7e1f }, { 24614, 0xfef7 }, { 24628, 0x0f7f }, { 24639, 0x0000 },\n  { 24639, 0x0000 }, { 24639, 0x0000 }, { 24639, 0x0000 }, { 24639, 0x0000 },\n  { 24639, 0x0000 }, { 24639, 0x0000 }, { 24639, 0x0000 }, { 24639, 0x0000 },\n  /* 0xff00 */\n  { 24639, 0xff7a }, { 24652, 0xffff }, { 24668, 0xffff }, { 24684, 0x97ff },\n  { 24697, 0xfffe }, { 24712, 0x3fff }, { 24726, 0x0000 }, { 24726, 0x0000 },\n  { 24726, 0x0000 }, { 24726, 0x0000 }, { 24726, 0x0000 }, { 24726, 0x0000 },\n  { 24726, 0x0000 }, { 24726, 0x0000 }, { 24726, 0x0023 },\n};\nstatic const Summary16 cns11643_inv_uni2indx_page200[2670] = {\n  /* 0x20000 */\n  { 24729, 0x8bbd }, { 24739, 0x0715 }, { 24745, 0x722f }, { 24754, 0x0860 },\n  { 24757, 0x39ca }, { 24765, 0x08ec }, { 24771, 0xeaf6 }, { 24782, 0xe0d7 },\n  { 24791, 0xb1fc }, { 24801, 0x5fbc }, { 24812, 0xd33d }, { 24822, 0xf6ff },\n  { 24836, 0x8a5c }, { 24843, 0xc377 }, { 24853, 0x24f3 }, { 24861, 0x795f },\n  /* 0x20100 */\n  { 24872, 0xfff4 }, { 24885, 0xeefe }, { 24898, 0x751f }, { 24908, 0x03b7 },\n  { 24916, 0x9fb9 }, { 24927, 0xe3fa }, { 24938, 0xfebf }, { 24952, 0x4071 },\n  { 24957, 0xd6ff }, { 24970, 0x3004 }, { 24973, 0xb3f8 }, { 24983, 0x1ff5 },\n  { 24994, 0x8ffc }, { 25005, 0xff11 }, { 25015, 0x0fff }, { 25027, 0xc096 },\n  /* 0x20200 */\n  { 25033, 0xfffb }, { 25048, 0xffe3 }, { 25061, 0xf787 }, { 25072, 0xffff },\n  { 25088, 0xfff0 }, { 25100, 0x0977 }, { 25108, 0x7ffe }, { 25122, 0xffce },\n  { 25135, 0x1dff }, { 25147, 0x4056 }, { 25152, 0x7ffd }, { 25166, 0x4fff },\n  { 25179, 0xfffe }, { 25194, 0x287f }, { 25203, 0xffae }, { 25216, 0xffff },\n  /* 0x20300 */\n  { 25232, 0xfb81 }, { 25241, 0x119f }, { 25249, 0xfe03 }, { 25258, 0xdeff },\n  { 25272, 0xff11 }, { 25282, 0xc17f }, { 25292, 0xdf84 }, { 25301, 0x0fff },\n  { 25313, 0xfffc }, { 25327, 0x4fff }, { 25340, 0xd08e }, { 25347, 0xffcf },\n  { 25361, 0xf59f }, { 25373, 0x04d7 }, { 25380, 0xff9e }, { 25393, 0x0dd1 },\n  /* 0x20400 */\n  { 25400, 0x7f41 }, { 25409, 0x8de4 }, { 25417, 0xcdfe }, { 25429, 0xfc6f },\n  { 25441, 0xf037 }, { 25450, 0xbf8e }, { 25461, 0xefd0 }, { 25471, 0xeecc },\n  { 25481, 0x3d7b }, { 25492, 0xcff9 }, { 25504, 0x2f1f }, { 25514, 0xbf7f },\n  { 25528, 0xfb5c }, { 25539, 0xb9ac }, { 25548, 0xecb3 }, { 25558, 0x21db },\n  /* 0x20500 */\n  { 25566, 0xdfdf }, { 25580, 0xbfed }, { 25593, 0x8fa7 }, { 25603, 0x73fa },\n  { 25614, 0x6d5e }, { 25624, 0xed5f }, { 25636, 0xf3fd }, { 25649, 0x2eef },\n  { 25660, 0xb433 }, { 25668, 0xd6ff }, { 25681, 0x4acf }, { 25690, 0x3fd6 },\n  { 25701, 0x7fff }, { 25716, 0x7fbe }, { 25729, 0xf5e6 }, { 25740, 0xfcfe },\n  /* 0x20600 */\n  { 25753, 0x7ff1 }, { 25765, 0xf9de }, { 25777, 0xfabf }, { 25790, 0xf5ef },\n  { 25803, 0xbfc1 }, { 25813, 0xbf8f }, { 25825, 0xef87 }, { 25836, 0xefef },\n  { 25850, 0xe9c7 }, { 25860, 0xefc6 }, { 25871, 0xffea }, { 25884, 0xff9f },\n  { 25898, 0xe39f }, { 25909, 0x0fff }, { 25921, 0xffe1 }, { 25933, 0xfbf7 },\n  /* 0x20700 */\n  { 25947, 0x12c4 }, { 25952, 0xbfff }, { 25967, 0x016f }, { 25974, 0xffff },\n  { 25990, 0x3f3f }, { 26002, 0xef06 }, { 26011, 0xe7bf }, { 26024, 0xe002 },\n  { 26028, 0xffff }, { 26044, 0x311f }, { 26052, 0xfff0 }, { 26064, 0xf88f },\n  { 26074, 0xfffe }, { 26089, 0x9fff }, { 26103, 0xffc0 }, { 26113, 0xfc2b },\n  /* 0x20800 */\n  { 26123, 0xe9ff }, { 26136, 0xf88d }, { 26145, 0xdccf }, { 26156, 0xfbdf },\n  { 26170, 0x31de }, { 26179, 0xc3fe }, { 26190, 0xff47 }, { 26202, 0xfb37 },\n  { 26214, 0xcff7 }, { 26227, 0x03fc }, { 26235, 0xa1ff }, { 26246, 0x9fdf },\n  { 26259, 0xfffb }, { 26274, 0xf7de }, { 26287, 0xcfff }, { 26301, 0xffbb },\n  /* 0x20900 */\n  { 26315, 0xcfbb }, { 26327, 0xdfbf }, { 26341, 0xfd3f }, { 26354, 0xd77b },\n  { 26366, 0xde3f }, { 26378, 0x7e4f }, { 26389, 0xfe6e }, { 26401, 0x6dff },\n  { 26414, 0x31ed }, { 26423, 0xff7e }, { 26437, 0x3c7f }, { 26448, 0x70f3 },\n  { 26457, 0xc517 }, { 26465, 0xdf9b }, { 26477, 0xff7f }, { 26492, 0x3ffc },\n  /* 0x20a00 */\n  { 26504, 0xebef }, { 26517, 0xff5d }, { 26530, 0xf0ad }, { 26539, 0x2ff7 },\n  { 26551, 0xfc9f }, { 26563, 0xffc6 }, { 26575, 0xffdd }, { 26589, 0xff1f },\n  { 26602, 0xffd0 }, { 26613, 0xff7e }, { 26627, 0xec75 }, { 26637, 0xfe29 },\n  { 26647, 0x5387 }, { 26655, 0xc6bd }, { 26665, 0x1ff5 }, { 26676, 0x9e1b },\n  /* 0x20b00 */\n  { 26685, 0xc5f7 }, { 26696, 0xfd8b }, { 26707, 0xffee }, { 26721, 0xbffe },\n  { 26735, 0xfebf }, { 26749, 0xffff }, { 26765, 0xffeb }, { 26779, 0xd97f },\n  { 26791, 0xeffe }, { 26805, 0x7fff }, { 26820, 0xfdff }, { 26835, 0x0fbf },\n  { 26846, 0xff46 }, { 26857, 0x7fff }, { 26872, 0x59fa }, { 26882, 0x0068 },\n  /* 0x20c00 */\n  { 26885, 0xff30 }, { 26895, 0x7fff }, { 26910, 0xfffe }, { 26925, 0x8165 },\n  { 26931, 0x4001 }, { 26933, 0xffff }, { 26949, 0xfbff }, { 26964, 0xfe2f },\n  { 26976, 0xdbff }, { 26990, 0x0089 }, { 26993, 0xee00 }, { 26999, 0xffff },\n  { 27015, 0x7fff }, { 27030, 0xf800 }, { 27035, 0xcfff }, { 27049, 0x8f93 },\n  /* 0x20d00 */\n  { 27058, 0x0008 }, { 27059, 0x0000 }, { 27059, 0xffce }, { 27072, 0xffff },\n  { 27088, 0x040f }, { 27093, 0xfffe }, { 27108, 0x0427 }, { 27113, 0x02a5 },\n  { 27118, 0x0000 }, { 27118, 0x0000 }, { 27118, 0x7f80 }, { 27126, 0xfdbf },\n  { 27140, 0xffff }, { 27156, 0xfffe }, { 27171, 0xff80 }, { 27180, 0x79ff },\n  /* 0x20e00 */\n  { 27193, 0x3011 }, { 27197, 0x2040 }, { 27199, 0x6000 }, { 27201, 0x8fef },\n  { 27213, 0xffff }, { 27229, 0xdfff }, { 27244, 0x4fff }, { 27257, 0x8000 },\n  { 27258, 0xffff }, { 27274, 0x0008 }, { 27275, 0x0014 }, { 27277, 0x0000 },\n  { 27277, 0xf000 }, { 27281, 0xfff3 }, { 27295, 0xffff }, { 27311, 0xc043 },\n  /* 0x20f00 */\n  { 27316, 0xffff }, { 27332, 0x557f }, { 27343, 0x020c }, { 27346, 0x0000 },\n  { 27346, 0x0000 }, { 27346, 0x3000 }, { 27348, 0xfffd }, { 27363, 0xff7f },\n  { 27378, 0x1f7f }, { 27390, 0xffc0 }, { 27400, 0x84e3 }, { 27407, 0x0001 },\n  { 27408, 0xffe0 }, { 27419, 0xffff }, { 27435, 0x40ff }, { 27444, 0xfc00 },\n  /* 0x21000 */\n  { 27450, 0xffff }, { 27466, 0x000d }, { 27469, 0x0000 }, { 27469, 0xbe00 },\n  { 27475, 0xfbfe }, { 27489, 0x80ef }, { 27497, 0x3b3f }, { 27508, 0x0000 },\n  { 27508, 0x8c00 }, { 27511, 0xffff }, { 27527, 0x13ff }, { 27538, 0x7fc0 },\n  { 27547, 0x0000 }, { 27547, 0xa000 }, { 27549, 0xffff }, { 27565, 0x0084 },\n  /* 0x21100 */\n  { 27567, 0x077c }, { 27575, 0x7ffe }, { 27589, 0x0009 }, { 27591, 0x8ffe },\n  { 27603, 0x0003 }, { 27605, 0xf790 }, { 27614, 0x600a }, { 27618, 0xff47 },\n  { 27630, 0xce68 }, { 27638, 0x180f }, { 27644, 0x238f }, { 27652, 0xdffd },\n  { 27666, 0x7fda }, { 27678, 0x09ff }, { 27688, 0x041f }, { 27694, 0xf2ff },\n  /* 0x21200 */\n  { 27707, 0xfe9d }, { 27719, 0xbff2 }, { 27731, 0x743c }, { 27739, 0xd38a },\n  { 27747, 0x3416 }, { 27753, 0xaf04 }, { 27760, 0x10ff }, { 27769, 0x10ee },\n  { 27776, 0xffff }, { 27792, 0x5ff8 }, { 27803, 0x11fb }, { 27812, 0x7ff0 },\n  { 27823, 0xfff0 }, { 27835, 0x797f }, { 27847, 0xff89 }, { 27858, 0x01ff },\n  /* 0x21300 */\n  { 27867, 0xffc2 }, { 27878, 0x97ed }, { 27889, 0xfef0 }, { 27900, 0xfbdf },\n  { 27914, 0x87ff }, { 27926, 0x003a }, { 27930, 0xfff3 }, { 27944, 0xfcff },\n  { 27958, 0x40ff }, { 27967, 0x04e1 }, { 27972, 0xdf80 }, { 27980, 0xfffb },\n  { 27995, 0xffaf }, { 28009, 0x00bf }, { 28016, 0xee00 }, { 28022, 0x81ff },\n  /* 0x21400 */\n  { 28032, 0x47ff }, { 28044, 0xe83b }, { 28053, 0x2f7f }, { 28065, 0x5fff },\n  { 28079, 0x8784 }, { 28085, 0xdf16 }, { 28095, 0x395f }, { 28105, 0x07c0 },\n  { 28110, 0x7fc4 }, { 28120, 0xfe4d }, { 28131, 0x811b }, { 28137, 0x3fbf },\n  { 28150, 0x3600 }, { 28154, 0x0ebf }, { 28164, 0x1ed8 }, { 28172, 0xbf7f },\n  /* 0x21500 */\n  { 28186, 0x8f96 }, { 28195, 0xefa0 }, { 28204, 0xb1f7 }, { 28215, 0x7ee1 },\n  { 28225, 0x7c60 }, { 28232, 0xff6e }, { 28245, 0xdfdf }, { 28259, 0xffde },\n  { 28273, 0xad53 }, { 28282, 0xf7be }, { 28295, 0xfe3c }, { 28306, 0xe3dd },\n  { 28317, 0x114a }, { 28322, 0xf33c }, { 28332, 0xff6f }, { 28346, 0xff91 },\n  /* 0x21600 */\n  { 28357, 0xfa77 }, { 28369, 0xa7f5 }, { 28380, 0x0a7d }, { 28388, 0xbffd },\n  { 28402, 0xf792 }, { 28412, 0x35e1 }, { 28420, 0xff05 }, { 28430, 0xffc7 },\n  { 28443, 0x9fe3 }, { 28454, 0x59c3 }, { 28462, 0x8d39 }, { 28470, 0xff3f },\n  { 28484, 0x6ff8 }, { 28495, 0xffed }, { 28509, 0xfe27 }, { 28520, 0x7e9f },\n  /* 0x21700 */\n  { 28532, 0xffff }, { 28548, 0xbbfe }, { 28561, 0xffeb }, { 28575, 0xe17f },\n  { 28586, 0xb4ff }, { 28598, 0xff82 }, { 28608, 0x0fff }, { 28620, 0xffe4 },\n  { 28632, 0x5fff }, { 28646, 0xff1b }, { 28658, 0xffdf }, { 28673, 0xffc1 },\n  { 28684, 0x47ff }, { 28696, 0xfe72 }, { 28707, 0xffff }, { 28723, 0xe09f },\n  /* 0x21800 */\n  { 28732, 0x493f }, { 28741, 0xfebf }, { 28755, 0xf8f5 }, { 28766, 0x21ff },\n  { 28776, 0xbf2c }, { 28786, 0xbeff }, { 28800, 0xff21 }, { 28810, 0xf2ff },\n  { 28823, 0x2ffc }, { 28834, 0x3ffe }, { 28847, 0x7ff8 }, { 28859, 0xc1b6 },\n  { 28867, 0xfbef }, { 28881, 0xfc37 }, { 28892, 0xee12 }, { 28900, 0xf5bf },\n  /* 0x21900 */\n  { 28913, 0xb9c7 }, { 28923, 0x3fe4 }, { 28933, 0xdf7e }, { 28946, 0xd6d7 },\n  { 28957, 0xe7ef }, { 28970, 0x79ff }, { 28983, 0xff4e }, { 28995, 0x6ec7 },\n  { 29005, 0xdaf8 }, { 29015, 0xe5ae }, { 29025, 0xa23f }, { 29034, 0xf321 },\n  { 29042, 0xf9fc }, { 29054, 0xf7c2 }, { 29064, 0xfe0d }, { 29074, 0x0df3 },\n  /* 0x21a00 */\n  { 29083, 0xe7ff }, { 29097, 0xd01b }, { 29104, 0xfffd }, { 29119, 0xf853 },\n  { 29128, 0xc3ff }, { 29140, 0xca3f }, { 29150, 0xf7ff }, { 29165, 0xfc1f },\n  { 29176, 0xcf7f }, { 29189, 0x8dd9 }, { 29198, 0x7fbf }, { 29212, 0xf5d0 },\n  { 29221, 0x7fff }, { 29236, 0xfdfc }, { 29249, 0xf60d }, { 29258, 0xf88f },\n  /* 0x21b00 */\n  { 29268, 0xb4f9 }, { 29278, 0xaf5e }, { 29289, 0xd78d }, { 29299, 0xee1b },\n  { 29309, 0x7d66 }, { 29319, 0xe66f }, { 29330, 0x8f23 }, { 29338, 0xe238 },\n  { 29345, 0xc00f }, { 29351, 0xe221 }, { 29357, 0x00c2 }, { 29360, 0x8813 },\n  { 29365, 0xe67c }, { 29375, 0xfb55 }, { 29386, 0xf7ef }, { 29400, 0x1dfc },\n  /* 0x21c00 */\n  { 29410, 0x7e9c }, { 29420, 0x33f7 }, { 29431, 0xfe7d }, { 29444, 0xf5c1 },\n  { 29453, 0xf81f }, { 29463, 0x2fbf }, { 29475, 0x7dff }, { 29489, 0xfe97 },\n  { 29501, 0x5fff }, { 29515, 0xfffe }, { 29530, 0xf7cb }, { 29542, 0x4f7f },\n  { 29554, 0xa7f4 }, { 29564, 0xc1fb }, { 29574, 0x39c3 }, { 29582, 0xc196 },\n  /* 0x21d00 */\n  { 29589, 0xf977 }, { 29601, 0xfbee }, { 29614, 0xbbfa }, { 29626, 0x99ef },\n  { 29637, 0xcdc3 }, { 29646, 0x7ffa }, { 29659, 0x4fd8 }, { 29668, 0x560b },\n  { 29675, 0xfffc }, { 29689, 0xefff }, { 29704, 0xfe15 }, { 29714, 0xfb0b },\n  { 29724, 0x92ff }, { 29735, 0xffff }, { 29751, 0xe7ff }, { 29765, 0x81ff },\n  /* 0x21e00 */\n  { 29775, 0x5704 }, { 29781, 0xdfff }, { 29796, 0x17ff }, { 29808, 0xff60 },\n  { 29818, 0xac4f }, { 29827, 0x0014 }, { 29829, 0xffbc }, { 29842, 0x7fed },\n  { 29855, 0xfd40 }, { 29863, 0x2614 }, { 29868, 0xf812 }, { 29875, 0xfeff },\n  { 29890, 0x28ff }, { 29900, 0xffa2 }, { 29911, 0xf7ff }, { 29926, 0x43f7 },\n  /* 0x21f00 */\n  { 29936, 0x7c00 }, { 29941, 0x3fff }, { 29955, 0x87e0 }, { 29962, 0xf441 },\n  { 29969, 0x77ff }, { 29983, 0xfd39 }, { 29994, 0xf0fb }, { 30005, 0x2521 },\n  { 30010, 0x7fe5 }, { 30022, 0xff33 }, { 30034, 0xc2dc }, { 30042, 0x78c7 },\n  { 30051, 0x9fc2 }, { 30060, 0xb972 }, { 30069, 0xffaf }, { 30083, 0xeb8f },\n  /* 0x22000 */\n  { 30094, 0x47ff }, { 30106, 0xb31f }, { 30116, 0x821f }, { 30123, 0x8ad0 },\n  { 30129, 0x11ff }, { 30139, 0x9ffd }, { 30152, 0xf7fc }, { 30165, 0xfe3f },\n  { 30178, 0xadcf }, { 30189, 0xe5ff }, { 30202, 0xde6f }, { 30214, 0xfff6 },\n  { 30228, 0xf85f }, { 30239, 0xffff }, { 30255, 0xfd9b }, { 30267, 0x6fff },\n  /* 0x22100 */\n  { 30281, 0xfdf2 }, { 30293, 0xddf9 }, { 30305, 0x08ff }, { 30314, 0xf7ff },\n  { 30329, 0xee04 }, { 30336, 0xceff }, { 30349, 0xef4f }, { 30361, 0xfb67 },\n  { 30373, 0xefb8 }, { 30384, 0x9e0f }, { 30393, 0xd014 }, { 30398, 0xfbfe },\n  { 30412, 0xfcc3 }, { 30422, 0x7fd7 }, { 30435, 0xaff9 }, { 30447, 0xfffd },\n  /* 0x22200 */\n  { 30462, 0xffb7 }, { 30476, 0xfe87 }, { 30487, 0x313f }, { 30496, 0xfffc },\n  { 30510, 0xfd7f }, { 30524, 0xff61 }, { 30535, 0xffff }, { 30551, 0x9057 },\n  { 30558, 0x5eff }, { 30571, 0xfbfd }, { 30585, 0xf57f }, { 30598, 0x1fff },\n  { 30611, 0xf0fe }, { 30622, 0x35ff }, { 30634, 0xacfe }, { 30645, 0xf9e7 },\n  /* 0x22300 */\n  { 30657, 0xabdd }, { 30668, 0x7bfe }, { 30681, 0xbfed }, { 30694, 0xfd7a },\n  { 30706, 0xe47e }, { 30716, 0xfff5 }, { 30730, 0xd9dd }, { 30741, 0xcfcf },\n  { 30753, 0x74db }, { 30763, 0xb70f }, { 30773, 0x2ffd }, { 30785, 0xdfc7 },\n  { 30797, 0x03e3 }, { 30804, 0x07fc }, { 30813, 0xdfd0 }, { 30823, 0x7fff },\n  /* 0x22400 */\n  { 30838, 0xbdff }, { 30852, 0xe37c }, { 30862, 0xb3ff }, { 30875, 0xdfbd },\n  { 30888, 0x3fdf }, { 30901, 0x5fff }, { 30915, 0xaf5e }, { 30926, 0xe3ef },\n  { 30938, 0x979f }, { 30949, 0xfff3 }, { 30963, 0xfff7 }, { 30978, 0xebfd },\n  { 30991, 0x8ffd }, { 31003, 0xf1fd }, { 31015, 0xfe2d }, { 31026, 0x77ff },\n  /* 0x22500 */\n  { 31040, 0xffdf }, { 31055, 0xf503 }, { 31063, 0x2fff }, { 31076, 0xf9fb },\n  { 31089, 0xe189 }, { 31096, 0xffff }, { 31112, 0xfc9f }, { 31124, 0x5edb },\n  { 31135, 0xe71e }, { 31145, 0xff8f }, { 31158, 0x3efd }, { 31170, 0x2ffd },\n  { 31182, 0x7f8a }, { 31192, 0xf9bf }, { 31205, 0x5fff }, { 31219, 0x8e26 },\n  /* 0x22600 */\n  { 31226, 0xffff }, { 31242, 0x647f }, { 31252, 0x8dc9 }, { 31260, 0xfdff },\n  { 31275, 0x7fff }, { 31290, 0xffc0 }, { 31300, 0x414f }, { 31307, 0xffff },\n  { 31323, 0xffff }, { 31339, 0xfe83 }, { 31349, 0x807f }, { 31357, 0x0c01 },\n  { 31360, 0xfffe }, { 31375, 0xffff }, { 31391, 0x7fff }, { 31406, 0xff81 },\n  /* 0x22700 */\n  { 31416, 0xffff }, { 31432, 0x8ccf }, { 31441, 0xffb8 }, { 31453, 0xffff },\n  { 31469, 0xffff }, { 31485, 0xe0bf }, { 31495, 0x67ff }, { 31508, 0x2004 },\n  { 31510, 0xf682 }, { 31518, 0xf7ff }, { 31533, 0xffff }, { 31549, 0xffcf },\n  { 31563, 0x0c1f }, { 31570, 0x3000 }, { 31572, 0xdfdf }, { 31586, 0xffff },\n  /* 0x22800 */\n  { 31602, 0xfc01 }, { 31609, 0xd7ff }, { 31623, 0x5003 }, { 31627, 0xfffe },\n  { 31642, 0xcfff }, { 31656, 0x43ff }, { 31667, 0xfff6 }, { 31681, 0xe118 },\n  { 31687, 0xb000 }, { 31690, 0xfffe }, { 31705, 0x40ff }, { 31714, 0x00ff },\n  { 31722, 0xfe02 }, { 31730, 0xff7f }, { 31745, 0xff07 }, { 31756, 0xf8c5 },\n  /* 0x22900 */\n  { 31765, 0xdfff }, { 31780, 0x03ef }, { 31789, 0xfff0 }, { 31801, 0x7c7f },\n  { 31813, 0xfc1a }, { 31822, 0xfd9f }, { 31835, 0xfbf2 }, { 31847, 0xff07 },\n  { 31858, 0xcbe2 }, { 31867, 0xfe79 }, { 31879, 0xdfdf }, { 31893, 0x8fc0 },\n  { 31900, 0x7fcf }, { 31913, 0x997e }, { 31923, 0x1ff5 }, { 31934, 0xe7f8 },\n  /* 0x22a00 */\n  { 31945, 0x7ff0 }, { 31956, 0xce3f }, { 31967, 0xb67b }, { 31978, 0x7f94 },\n  { 31988, 0x69f2 }, { 31997, 0x236e }, { 32005, 0x7b65 }, { 32015, 0x007f },\n  { 32022, 0xfffc }, { 32036, 0xf0ff }, { 32048, 0x029f }, { 32055, 0xfdf0 },\n  { 32066, 0x7fc5 }, { 32077, 0x0010 }, { 32078, 0xfff4 }, { 32091, 0xffff },\n  /* 0x22b00 */\n  { 32107, 0xffc9 }, { 32119, 0x4fff }, { 32132, 0x9c04 }, { 32137, 0xffff },\n  { 32153, 0x7fff }, { 32168, 0xfffc }, { 32182, 0x055f }, { 32190, 0x0000 },\n  { 32190, 0xffde }, { 32204, 0xf7ff }, { 32219, 0xc19f }, { 32228, 0xffff },\n  { 32244, 0x115f }, { 32252, 0x0000 }, { 32252, 0xfe08 }, { 32260, 0xffff },\n  /* 0x22c00 */\n  { 32276, 0xffff }, { 32292, 0x1fff }, { 32305, 0xff00 }, { 32313, 0x7fff },\n  { 32328, 0x20ad }, { 32334, 0x8000 }, { 32335, 0xdfff }, { 32350, 0xdfdf },\n  { 32364, 0xffff }, { 32380, 0x0167 }, { 32386, 0x0002 }, { 32387, 0x7ff9 },\n  { 32400, 0xebff }, { 32414, 0x077f }, { 32424, 0xfffe }, { 32439, 0x5fff },\n  /* 0x22d00 */\n  { 32453, 0x0003 }, { 32455, 0x0000 }, { 32455, 0x7fff }, { 32470, 0xffff },\n  { 32486, 0xe51b }, { 32495, 0xffff }, { 32511, 0x0009 }, { 32513, 0x8000 },\n  { 32514, 0xffff }, { 32530, 0x3fff }, { 32544, 0xffc0 }, { 32554, 0x0023 },\n  { 32557, 0xfb80 }, { 32565, 0x3fff }, { 32579, 0x2ff0 }, { 32588, 0xffc0 },\n  /* 0x22e00 */\n  { 32598, 0xc3ff }, { 32610, 0x037f }, { 32619, 0xfff8 }, { 32632, 0xff9f },\n  { 32646, 0xa817 }, { 32653, 0x87fb }, { 32664, 0xf007 }, { 32671, 0x0ebf },\n  { 32681, 0x9ffc }, { 32693, 0xc763 }, { 32702, 0x77e7 }, { 32714, 0x47f7 },\n  { 32725, 0xe51e }, { 32734, 0x6cf3 }, { 32744, 0xf6e3 }, { 32755, 0x6ede },\n  /* 0x22f00 */\n  { 32766, 0xffe0 }, { 32777, 0xf133 }, { 32786, 0xf5af }, { 32798, 0xac40 },\n  { 32803, 0x8fff }, { 32816, 0xe9bf }, { 32828, 0xf7f3 }, { 32841, 0x84fd },\n  { 32850, 0xbbfd }, { 32863, 0xfe1d }, { 32874, 0xffb9 }, { 32887, 0x77fa },\n  { 32899, 0x6fc0 }, { 32907, 0xcbff }, { 32920, 0x7f3b }, { 32932, 0xe3fc },\n  /* 0x23000 */\n  { 32943, 0xde47 }, { 32953, 0x6577 }, { 32963, 0xfdff }, { 32978, 0x34fa },\n  { 32987, 0xddce }, { 32998, 0xf7a7 }, { 33010, 0x5abf }, { 33021, 0xbdfa },\n  { 33033, 0x9677 }, { 33043, 0xca3a }, { 33051, 0xedff }, { 33065, 0xbf66 },\n  { 33076, 0xbd4f }, { 33087, 0xfb5b }, { 33099, 0xffc6 }, { 33111, 0xfba8 },\n  /* 0x23100 */\n  { 33121, 0xdf17 }, { 33132, 0xe793 }, { 33142, 0x4dd7 }, { 33152, 0xdbf7 },\n  { 33165, 0x5fd7 }, { 33177, 0xfc4f }, { 33188, 0xffff }, { 33204, 0x7f9e },\n  { 33216, 0x0e7a }, { 33224, 0x7ffc }, { 33237, 0x0bc9 }, { 33244, 0xfffc },\n  { 33258, 0xf841 }, { 33265, 0x043f }, { 33272, 0xdffc }, { 33285, 0xfc4f },\n  /* 0x23200 */\n  { 33296, 0xa19f }, { 33305, 0x8000 }, { 33306, 0x47f3 }, { 33316, 0x7fe0 },\n  { 33326, 0x051f }, { 33333, 0x1ffe }, { 33345, 0x3ff8 }, { 33356, 0xfc01 },\n  { 33363, 0x805e }, { 33369, 0xee73 }, { 33380, 0xc1fb }, { 33390, 0x255f },\n  { 33399, 0xbf30 }, { 33408, 0xc1f9 }, { 33417, 0xfc28 }, { 33425, 0x85fc },\n  /* 0x23300 */\n  { 33434, 0xe1b8 }, { 33442, 0x93c8 }, { 33449, 0xbffc }, { 33462, 0x798f },\n  { 33472, 0x91d8 }, { 33479, 0xfb5e }, { 33491, 0x58ff }, { 33502, 0x17f8 },\n  { 33511, 0x3e36 }, { 33520, 0x9f9d }, { 33531, 0x723b }, { 33540, 0xbf7e },\n  { 33553, 0x0fef }, { 33564, 0xfff7 }, { 33579, 0xffa3 }, { 33591, 0x6b4f },\n  /* 0x23400 */\n  { 33601, 0xff8b }, { 33613, 0xff8f }, { 33626, 0x07ff }, { 33637, 0xffe1 },\n  { 33649, 0x801f }, { 33655, 0xfffe }, { 33670, 0xed3f }, { 33682, 0xe306 },\n  { 33689, 0x83ff }, { 33700, 0xffff }, { 33716, 0xbfff }, { 33731, 0x9fc0 },\n  { 33739, 0xffff }, { 33755, 0xffff }, { 33771, 0xff83 }, { 33782, 0xffff },\n  /* 0x23500 */\n  { 33798, 0xffff }, { 33814, 0x007e }, { 33820, 0xf800 }, { 33825, 0xfffe },\n  { 33840, 0x7fff }, { 33855, 0xfa0f }, { 33865, 0xffff }, { 33881, 0x9fff },\n  { 33895, 0x048f }, { 33901, 0x0029 }, { 33904, 0xff78 }, { 33916, 0xfff7 },\n  { 33931, 0x000e }, { 33934, 0xfff1 }, { 33947, 0xffff }, { 33963, 0x0db9 },\n  /* 0x23600 */\n  { 33971, 0xe8a1 }, { 33978, 0xfff7 }, { 33993, 0xffff }, { 34009, 0x880f },\n  { 34015, 0xfffe }, { 34030, 0x0a7f }, { 34039, 0x0010 }, { 34040, 0xf87f },\n  { 34052, 0xffff }, { 34068, 0xfff7 }, { 34083, 0x877f }, { 34094, 0xffff },\n  { 34110, 0xffff }, { 34126, 0x8543 }, { 34132, 0x5800 }, { 34135, 0xbfff },\n  /* 0x23700 */\n  { 34150, 0xe1ff }, { 34162, 0xffff }, { 34178, 0x91f8 }, { 34186, 0x9600 },\n  { 34190, 0xfffe }, { 34205, 0x7fff }, { 34220, 0xffa0 }, { 34230, 0x5aff },\n  { 34242, 0x1ac2 }, { 34248, 0xffff }, { 34264, 0xfff8 }, { 34277, 0x98e5 },\n  { 34285, 0xfff4 }, { 34298, 0xff07 }, { 34309, 0x910f }, { 34316, 0x7f7d },\n  /* 0x23800 */\n  { 34329, 0xdffe }, { 34343, 0xfe11 }, { 34352, 0x7fe3 }, { 34364, 0xffa0 },\n  { 34374, 0xf679 }, { 34385, 0x591f }, { 34394, 0x6fad }, { 34405, 0x1dde },\n  { 34415, 0xfeff }, { 34430, 0xff9f }, { 34444, 0xf7cf }, { 34457, 0xac3f },\n  { 34467, 0xff7f }, { 34482, 0xe3ef }, { 34494, 0x9bff }, { 34507, 0xffff },\n  /* 0x23900 */\n  { 34523, 0xffbf }, { 34538, 0x77b7 }, { 34550, 0x723f }, { 34560, 0xdef6 },\n  { 34572, 0xffbf }, { 34587, 0x3bff }, { 34600, 0x2fed }, { 34611, 0xff3c },\n  { 34623, 0x0fbe }, { 34633, 0xf7f0 }, { 34644, 0x81f6 }, { 34652, 0xbfe6 },\n  { 34664, 0xfeff }, { 34679, 0xe07f }, { 34689, 0xffff }, { 34705, 0xfbff },\n  /* 0x23a00 */\n  { 34720, 0xffeb }, { 34734, 0xffc7 }, { 34747, 0x837f }, { 34757, 0x2bfe },\n  { 34768, 0xfbf8 }, { 34780, 0xe3ff }, { 34793, 0xbf3f }, { 34806, 0xdcdf },\n  { 34818, 0xf96d }, { 34829, 0x9aff }, { 34841, 0xf6fb }, { 34854, 0xfbef },\n  { 34868, 0x30e3 }, { 34875, 0xc74f }, { 34885, 0xbbfe }, { 34898, 0xf711 },\n  /* 0x23b00 */\n  { 34907, 0xff7f }, { 34922, 0xdcff }, { 34935, 0xfffe }, { 34950, 0xff2f },\n  { 34963, 0xfeb7 }, { 34976, 0xf43f }, { 34987, 0x7fef }, { 35001, 0xfffe },\n  { 35016, 0xff07 }, { 35027, 0xffbf }, { 35042, 0xff98 }, { 35053, 0x3e1f },\n  { 35063, 0xffe4 }, { 35075, 0xbbee }, { 35087, 0xfff4 }, { 35100, 0xff87 },\n  /* 0x23c00 */\n  { 35112, 0x7e47 }, { 35122, 0xdc5f }, { 35133, 0x7d1f }, { 35144, 0xdbc6 },\n  { 35154, 0xdfb1 }, { 35165, 0xdf7f }, { 35179, 0xcc7b }, { 35189, 0x03f4 },\n  { 35196, 0xcbdf }, { 35208, 0xe03f }, { 35217, 0xffa3 }, { 35229, 0xfffd },\n  { 35244, 0xfc37 }, { 35255, 0x2fff }, { 35268, 0xfff8 }, { 35281, 0x00ff },\n  /* 0x23d00 */\n  { 35289, 0xfffe }, { 35304, 0xe077 }, { 35313, 0xffff }, { 35329, 0x5fff },\n  { 35343, 0xfffc }, { 35357, 0x7fff }, { 35372, 0x1354 }, { 35378, 0xff8a },\n  { 35389, 0xffff }, { 35405, 0xff7f }, { 35420, 0x007e }, { 35426, 0xc020 },\n  { 35429, 0xffff }, { 35445, 0xafff }, { 35459, 0x02d6 }, { 35465, 0xf860 },\n  /* 0x23e00 */\n  { 35472, 0xffff }, { 35488, 0xffff }, { 35504, 0x0003 }, { 35506, 0xfffc },\n  { 35520, 0x76df }, { 35532, 0xec00 }, { 35537, 0xffff }, { 35553, 0xfffe },\n  { 35568, 0xf003 }, { 35574, 0xffff }, { 35590, 0x97ff }, { 35603, 0x8057 },\n  { 35609, 0xb400 }, { 35613, 0xffff }, { 35629, 0xffff }, { 35645, 0x8007 },\n  /* 0x23f00 */\n  { 35649, 0xffff }, { 35665, 0xafff }, { 35679, 0x000f }, { 35683, 0x8820 },\n  { 35686, 0xdff8 }, { 35698, 0xffff }, { 35714, 0xffff }, { 35730, 0x2079 },\n  { 35736, 0xfff0 }, { 35748, 0xffff }, { 35764, 0x7f0f }, { 35775, 0x0081 },\n  { 35777, 0xffe2 }, { 35789, 0xffff }, { 35805, 0x001f }, { 35810, 0xfffe },\n  /* 0x24000 */\n  { 35825, 0x49f3 }, { 35834, 0x8002 }, { 35836, 0xffff }, { 35852, 0xc2ff },\n  { 35863, 0x37ff }, { 35876, 0xf481 }, { 35883, 0xfffe }, { 35898, 0xffff },\n  { 35914, 0xc4ff }, { 35925, 0xffff }, { 35941, 0x806e }, { 35947, 0xefff },\n  { 35962, 0xfc17 }, { 35972, 0x07bf }, { 35982, 0xbe08 }, { 35989, 0x7bf7 },\n  /* 0x24100 */\n  { 36002, 0xc2e0 }, { 36008, 0xfffb }, { 36023, 0x1f5f }, { 36034, 0x2ff8 },\n  { 36044, 0x7cee }, { 36055, 0x2f06 }, { 36062, 0x6f5f }, { 36074, 0xfb9f },\n  { 36087, 0xef7d }, { 36100, 0xe5f7 }, { 36112, 0xbfc0 }, { 36121, 0xf017 },\n  { 36129, 0xff83 }, { 36140, 0xafff }, { 36154, 0x8807 }, { 36159, 0xe0ff },\n  /* 0x24200 */\n  { 36170, 0xffff }, { 36186, 0x0967 }, { 36193, 0xffec }, { 36206, 0xfe07 },\n  { 36216, 0x07ff }, { 36227, 0xa202 }, { 36231, 0xfefe }, { 36245, 0xfe00 },\n  { 36252, 0xffff }, { 36268, 0x1bff }, { 36280, 0x8020 }, { 36282, 0xfff4 },\n  { 36295, 0xf8df }, { 36307, 0xffff }, { 36323, 0x97ff }, { 36336, 0x040b },\n  /* 0x24300 */\n  { 36340, 0xff8a }, { 36351, 0xf87f }, { 36363, 0xffff }, { 36379, 0x3f7f },\n  { 36392, 0xe100 }, { 36396, 0x3ff9 }, { 36408, 0xffc4 }, { 36419, 0xdfff },\n  { 36434, 0x1034 }, { 36438, 0xe5c0 }, { 36445, 0xffff }, { 36461, 0xc1bf },\n  { 36471, 0xffff }, { 36487, 0xefbf }, { 36501, 0xe201 }, { 36506, 0xfff1 },\n  /* 0x24400 */\n  { 36519, 0xfff1 }, { 36532, 0xc0a7 }, { 36539, 0xbfc4 }, { 36549, 0xff8f },\n  { 36562, 0xcc6f }, { 36572, 0xf0dd }, { 36582, 0x0185 }, { 36586, 0xf7ff },\n  { 36601, 0xff47 }, { 36613, 0x5089 }, { 36618, 0x58de }, { 36627, 0x7de8 },\n  { 36637, 0x873f }, { 36647, 0xf6f5 }, { 36659, 0xfde3 }, { 36671, 0x79de },\n  /* 0x24500 */\n  { 36682, 0xd4ff }, { 36694, 0x11bf }, { 36703, 0x57fd }, { 36715, 0x033f },\n  { 36723, 0xeb2d }, { 36733, 0xffeb }, { 36747, 0xefff }, { 36762, 0x7eff },\n  { 36776, 0xffee }, { 36790, 0x7ffb }, { 36804, 0xfffd }, { 36819, 0x7c9f },\n  { 36830, 0xffb7 }, { 36844, 0x1f82 }, { 36851, 0xffef }, { 36866, 0xbdfa },\n  /* 0x24600 */\n  { 36878, 0xf339 }, { 36888, 0xfff3 }, { 36902, 0xf8ff }, { 36915, 0xff1d },\n  { 36927, 0xb61d }, { 36936, 0xf9bf }, { 36949, 0x2dd7 }, { 36959, 0x0fbf },\n  { 36970, 0xff1c }, { 36981, 0x437f }, { 36991, 0xff01 }, { 37000, 0xff7f },\n  { 37015, 0xff04 }, { 37024, 0x8823 }, { 37029, 0x8afe }, { 37039, 0xee5f },\n  /* 0x24700 */\n  { 37051, 0xbbbd }, { 37063, 0x3ed7 }, { 37074, 0x895e }, { 37082, 0xffff },\n  { 37098, 0xb04f }, { 37106, 0xdfff }, { 37121, 0xd17b }, { 37131, 0xffff },\n  { 37147, 0x8177 }, { 37155, 0xfe80 }, { 37163, 0xb02f }, { 37171, 0xc305 },\n  { 37177, 0xfffb }, { 37192, 0xf6b7 }, { 37204, 0x3fff }, { 37218, 0x2d7c },\n  /* 0x24800 */\n  { 37227, 0xe480 }, { 37232, 0xf7ff }, { 37247, 0x1bf3 }, { 37257, 0xfe20 },\n  { 37265, 0x60ff }, { 37275, 0xf383 }, { 37284, 0x7fff }, { 37299, 0xbe7f },\n  { 37312, 0xfe28 }, { 37321, 0x77ff }, { 37335, 0x87cf }, { 37345, 0x0fff },\n  { 37357, 0x6f2b }, { 37367, 0xbb8f }, { 37378, 0xcfdd }, { 37390, 0x1fb5 },\n  /* 0x24900 */\n  { 37400, 0xf97c }, { 37411, 0xfd0f }, { 37422, 0x9d3f }, { 37433, 0x1fe6 },\n  { 37443, 0xfff8 }, { 37456, 0x1ff0 }, { 37465, 0x3ff0 }, { 37475, 0xfbf2 },\n  { 37487, 0x002b }, { 37491, 0xffff }, { 37507, 0xf977 }, { 37519, 0xf01f },\n  { 37528, 0xffff }, { 37544, 0xc2df }, { 37554, 0xfcfd }, { 37567, 0xfc05 },\n  /* 0x24a00 */\n  { 37575, 0xbfff }, { 37590, 0x3ff9 }, { 37602, 0xf800 }, { 37607, 0x7f3f },\n  { 37620, 0x0bff }, { 37631, 0xfffc }, { 37645, 0xfff8 }, { 37658, 0xf837 },\n  { 37668, 0xf8ff }, { 37681, 0xff81 }, { 37691, 0x7f7d }, { 37704, 0xf7f0 },\n  { 37715, 0x377f }, { 37727, 0x9df1 }, { 37737, 0xff78 }, { 37749, 0x7dff },\n  /* 0x24b00 */\n  { 37763, 0xfb9e }, { 37775, 0x3fc7 }, { 37786, 0xf75f }, { 37799, 0xdef1 },\n  { 37810, 0xf07f }, { 37821, 0xf9bf }, { 37834, 0x17ef }, { 37845, 0xfe19 },\n  { 37855, 0xefe1 }, { 37866, 0x3f59 }, { 37876, 0xefc6 }, { 37887, 0x3f2f },\n  { 37898, 0x7b8b }, { 37908, 0xeff9 }, { 37921, 0xdcdf }, { 37933, 0x729c },\n  /* 0x24c00 */\n  { 37941, 0x65f9 }, { 37951, 0xeaa3 }, { 37960, 0xff3f }, { 37974, 0xff7f },\n  { 37989, 0xf801 }, { 37995, 0xc7e5 }, { 38005, 0xfff8 }, { 38018, 0x704b },\n  { 38025, 0xe9f8 }, { 38035, 0x3fff }, { 38049, 0xf88b }, { 38058, 0xefe7 },\n  { 38071, 0xbf21 }, { 38080, 0x8dfc }, { 38090, 0xfe13 }, { 38100, 0xde4c },\n  /* 0x24d00 */\n  { 38109, 0x59bf }, { 38120, 0xf3ef }, { 38133, 0xcff3 }, { 38145, 0xff9f },\n  { 38159, 0x398f }, { 38168, 0xff92 }, { 38179, 0x2fff }, { 38192, 0xff80 },\n  { 38201, 0x1e7f }, { 38212, 0xfff8 }, { 38225, 0x3f3f }, { 38237, 0x00c0 },\n  { 38239, 0xffff }, { 38255, 0x7ffb }, { 38269, 0x0021 }, { 38271, 0xfb80 },\n  /* 0x24e00 */\n  { 38279, 0xffff }, { 38295, 0xe3fe }, { 38307, 0xfe15 }, { 38317, 0xffff },\n  { 38333, 0xa27c }, { 38341, 0xf800 }, { 38346, 0x9fff }, { 38360, 0x0a5b },\n  { 38367, 0xfff3 }, { 38381, 0x3fff }, { 38395, 0x03c2 }, { 38400, 0xff80 },\n  { 38409, 0x23ff }, { 38420, 0x7fe0 }, { 38430, 0xc12e }, { 38437, 0x07fe },\n  /* 0x24f00 */\n  { 38447, 0x38ff }, { 38458, 0xb7c7 }, { 38469, 0xbfbf }, { 38483, 0x7687 },\n  { 38492, 0x77ce }, { 38503, 0xef57 }, { 38515, 0x97f3 }, { 38526, 0xbe81 },\n  { 38534, 0xff08 }, { 38543, 0x7b20 }, { 38550, 0x3dff }, { 38563, 0x795c },\n  { 38572, 0xcfe9 }, { 38583, 0xbfe7 }, { 38596, 0x5fa7 }, { 38607, 0x86fc },\n  /* 0x25000 */\n  { 38616, 0xefde }, { 38629, 0xdff3 }, { 38642, 0xb97e }, { 38653, 0xb677 },\n  { 38664, 0xdbff }, { 38678, 0xdf7f }, { 38692, 0xfffb }, { 38707, 0x9fdb },\n  { 38719, 0xf5f9 }, { 38731, 0xdffb }, { 38745, 0x73f3 }, { 38756, 0xd7ee },\n  { 38768, 0x6fbf }, { 38781, 0x13fc }, { 38790, 0x1ff2 }, { 38800, 0x3ffc },\n  /* 0x25100 */\n  { 38812, 0xfffd }, { 38827, 0x7bff }, { 38841, 0x02b8 }, { 38846, 0xfffe },\n  { 38861, 0x7e13 }, { 38870, 0xff88 }, { 38880, 0x7fef }, { 38894, 0x324f },\n  { 38902, 0xfbe0 }, { 38912, 0xffff }, { 38928, 0x1c7f }, { 38938, 0x0069 },\n  { 38942, 0xfef8 }, { 38954, 0xff7f }, { 38969, 0x4f13 }, { 38977, 0xc030 },\n  /* 0x25200 */\n  { 38981, 0xffed }, { 38995, 0x1fff }, { 39008, 0x07fc }, { 39017, 0xf980 },\n  { 39024, 0xffff }, { 39040, 0xffff }, { 39056, 0x007c }, { 39061, 0xfff1 },\n  { 39074, 0x47f7 }, { 39085, 0x0021 }, { 39087, 0xfd80 }, { 39095, 0xffff },\n  { 39111, 0x271f }, { 39120, 0xfe01 }, { 39128, 0xbf3f }, { 39141, 0x8801 },\n  /* 0x25300 */\n  { 39144, 0xffff }, { 39160, 0xfcf1 }, { 39171, 0xe70e }, { 39180, 0xfc67 },\n  { 39191, 0x9e5f }, { 39202, 0xc6b8 }, { 39210, 0xffbf }, { 39225, 0xffef },\n  { 39240, 0xfefd }, { 39254, 0x17fd }, { 39265, 0x1ff2 }, { 39275, 0xff7f },\n  { 39290, 0xc207 }, { 39296, 0xf792 }, { 39306, 0x9c07 }, { 39313, 0x78ff },\n  /* 0x25400 */\n  { 39325, 0x001b }, { 39329, 0x7fea }, { 39341, 0x1e3f }, { 39351, 0x35fe },\n  { 39362, 0xfff3 }, { 39376, 0x7f9f }, { 39389, 0xd20c }, { 39395, 0xff7d },\n  { 39409, 0xbfd7 }, { 39422, 0x5054 }, { 39427, 0xff90 }, { 39437, 0x3e7f },\n  { 39449, 0xfcc3 }, { 39459, 0xfcff }, { 39473, 0x20ff }, { 39482, 0xfc02 },\n  /* 0x25500 */\n  { 39489, 0x07ff }, { 39500, 0xfffd }, { 39515, 0xff0d }, { 39526, 0x07ff },\n  { 39537, 0xfbe8 }, { 39548, 0xc5fb }, { 39559, 0x3fe3 }, { 39570, 0xffff },\n  { 39586, 0x9ffc }, { 39598, 0xff80 }, { 39607, 0xdc7f }, { 39619, 0xfa9b },\n  { 39630, 0x027f }, { 39638, 0xeb4c }, { 39647, 0xfc0e }, { 39656, 0xcd96 },\n  /* 0x25600 */\n  { 39665, 0x637a }, { 39674, 0x7e60 }, { 39682, 0x7850 }, { 39688, 0xff03 },\n  { 39698, 0xfe14 }, { 39707, 0x3ff0 }, { 39717, 0xf910 }, { 39724, 0x1f87 },\n  { 39733, 0xff08 }, { 39742, 0x17ff }, { 39754, 0x0fc0 }, { 39760, 0x03ff },\n  { 39770, 0xfdef }, { 39784, 0xff10 }, { 39793, 0xc01f }, { 39800, 0xbfbf },\n  /* 0x25700 */\n  { 39814, 0x9fbe }, { 39826, 0xccbe }, { 39836, 0x9ee9 }, { 39846, 0xff9f },\n  { 39860, 0xbdba }, { 39871, 0x7d7d }, { 39883, 0xfffc }, { 39897, 0xde78 },\n  { 39907, 0x037f }, { 39916, 0xff84 }, { 39926, 0x8207 }, { 39931, 0xfffe },\n  { 39946, 0xe0a0 }, { 39951, 0x5fff }, { 39965, 0x03fc }, { 39973, 0xed80 },\n  /* 0x25800 */\n  { 39980, 0xffff }, { 39996, 0x01ff }, { 40005, 0x0006 }, { 40007, 0xf6fe },\n  { 40020, 0x1feb }, { 40031, 0xbc10 }, { 40037, 0xffff }, { 40053, 0x0279 },\n  { 40059, 0xfd83 }, { 40069, 0x7f7e }, { 40082, 0x6080 }, { 40085, 0xbff3 },\n  { 40098, 0x003f }, { 40104, 0xd7c8 }, { 40113, 0xffe1 }, { 40125, 0x40bf },\n  /* 0x25900 */\n  { 40133, 0x5cef }, { 40144, 0xd7fe }, { 40157, 0x6f9c }, { 40167, 0xfff3 },\n  { 40181, 0xff8e }, { 40193, 0x4f9f }, { 40204, 0x7fff }, { 40219, 0xffc0 },\n  { 40229, 0xfdff }, { 40244, 0xf80b }, { 40252, 0xe7f7 }, { 40265, 0xff67 },\n  { 40278, 0x84e0 }, { 40283, 0xfffd }, { 40298, 0xf025 }, { 40305, 0xbfff },\n  /* 0x25a00 */\n  { 40320, 0xe40f }, { 40328, 0x05ff }, { 40338, 0x7c0e }, { 40346, 0xb9ff },\n  { 40359, 0xdd0f }, { 40369, 0x1bfd }, { 40380, 0x7fff }, { 40395, 0xdb7e },\n  { 40407, 0xffdf }, { 40422, 0x8f3f }, { 40433, 0xf7f3 }, { 40446, 0xf86f },\n  { 40457, 0xe708 }, { 40464, 0xff47 }, { 40476, 0xe1e7 }, { 40486, 0xfffb },\n  /* 0x25b00 */\n  { 40501, 0xf0bf }, { 40512, 0xeeff }, { 40526, 0xfc7e }, { 40538, 0xfbff },\n  { 40553, 0x0fff }, { 40565, 0xffff }, { 40581, 0xfdff }, { 40596, 0xff83 },\n  { 40607, 0xf03f }, { 40617, 0x7fff }, { 40632, 0xeffd }, { 40646, 0xffe0 },\n  { 40657, 0x0047 }, { 40661, 0xffff }, { 40677, 0xffff }, { 40693, 0xf7ff },\n  /* 0x25c00 */\n  { 40708, 0xfa64 }, { 40717, 0xffff }, { 40733, 0xffff }, { 40749, 0xffff },\n  { 40765, 0xf0f7 }, { 40776, 0xffff }, { 40792, 0x025f }, { 40799, 0xffe8 },\n  { 40811, 0xfff3 }, { 40825, 0xffe7 }, { 40839, 0xdfff }, { 40854, 0x3fff },\n  { 40868, 0xffc1 }, { 40879, 0xffff }, { 40895, 0xffff }, { 40911, 0x87ff },\n  /* 0x25d00 */\n  { 40923, 0xffff }, { 40939, 0xe018 }, { 40944, 0xffff }, { 40960, 0xeff7 },\n  { 40974, 0x7ff0 }, { 40985, 0xf009 }, { 40991, 0xffff }, { 41007, 0x2f7f },\n  { 41019, 0xfdc0 }, { 41028, 0xffff }, { 41044, 0x0ff8 }, { 41053, 0xfff0 },\n  { 41065, 0xf3ff }, { 41079, 0xfff3 }, { 41093, 0xff1f }, { 41106, 0xf1f7 },\n  /* 0x25e00 */\n  { 41118, 0xcfa9 }, { 41128, 0x13d3 }, { 41136, 0xbbee }, { 41148, 0x7ffb },\n  { 41162, 0xffee }, { 41176, 0xf467 }, { 41186, 0x29d7 }, { 41195, 0xfffc },\n  { 41209, 0x0bf0 }, { 41216, 0xff80 }, { 41225, 0xff9f }, { 41239, 0x115f },\n  { 41247, 0xfffe }, { 41262, 0x1e7f }, { 41273, 0xfff0 }, { 41285, 0x800f },\n  /* 0x25f00 */\n  { 41290, 0xf3ff }, { 41304, 0xff0f }, { 41316, 0x01f7 }, { 41324, 0xffe0 },\n  { 41335, 0x8eef }, { 41346, 0x6fe3 }, { 41357, 0xf0e8 }, { 41365, 0xffdf },\n  { 41380, 0xf7f7 }, { 41394, 0x7e5f }, { 41406, 0xffff }, { 41422, 0x0dfd },\n  { 41432, 0xfff8 }, { 41445, 0x93ef }, { 41456, 0xffc2 }, { 41467, 0xf7ff },\n  /* 0x26000 */\n  { 41482, 0x02ff }, { 41491, 0xfffc }, { 41505, 0xf0ff }, { 41517, 0x00ff },\n  { 41525, 0xff58 }, { 41536, 0x7fff }, { 41551, 0xfff2 }, { 41564, 0x0013 },\n  { 41567, 0xfbff }, { 41582, 0xffbf }, { 41597, 0xffc7 }, { 41610, 0x00b3 },\n  { 41615, 0xfffa }, { 41629, 0xfbff }, { 41644, 0x01fd }, { 41652, 0x07ff },\n  /* 0x26100 */\n  { 41663, 0xfe00 }, { 41670, 0x1fff }, { 41683, 0x7ffc }, { 41696, 0xf006 },\n  { 41702, 0xffff }, { 41718, 0xe03f }, { 41727, 0x15bf }, { 41737, 0xffe8 },\n  { 41749, 0xff7f }, { 41764, 0xf8ff }, { 41777, 0x9eff }, { 41790, 0xf87f },\n  { 41802, 0xdf3f }, { 41815, 0xdffa }, { 41828, 0x1faf }, { 41839, 0xffdf },\n  /* 0x26200 */\n  { 41854, 0x00eb }, { 41860, 0x0000 }, { 41860, 0xfbec }, { 41872, 0xdf7f },\n  { 41886, 0xdbb7 }, { 41898, 0xeeef }, { 41911, 0xfefd }, { 41925, 0xdbbc },\n  { 41936, 0xeb8f }, { 41947, 0xf3ff }, { 41961, 0xef9f }, { 41974, 0xf078 },\n  { 41982, 0x3ff4 }, { 41993, 0xffc7 }, { 42006, 0xf99f }, { 42018, 0xfbbf },\n  /* 0x26300 */\n  { 42032, 0xe66f }, { 42043, 0xfaff }, { 42057, 0x7f1f }, { 42069, 0xddfe },\n  { 42082, 0xfdcf }, { 42095, 0xfdf7 }, { 42109, 0xf7e6 }, { 42121, 0xfe05 },\n  { 42130, 0x2fe9 }, { 42140, 0x27f0 }, { 42148, 0x8afc }, { 42157, 0x9f9b },\n  { 42168, 0xffea }, { 42181, 0xf7e3 }, { 42193, 0xaf8f }, { 42204, 0x7ff5 },\n  /* 0x26400 */\n  { 42217, 0x7ffd }, { 42231, 0x5ffb }, { 42244, 0xf7fc }, { 42257, 0x7fef },\n  { 42271, 0xffd1 }, { 42283, 0xff3f }, { 42297, 0x1fff }, { 42310, 0xff7f },\n  { 42325, 0xfdf8 }, { 42337, 0xbe7f }, { 42350, 0xf77d }, { 42363, 0x7dce },\n  { 42374, 0xd01b }, { 42381, 0x67df }, { 42393, 0xff71 }, { 42405, 0x7fb3 },\n  /* 0x26500 */\n  { 42417, 0xfa7f }, { 42430, 0xfdbf }, { 42444, 0xbf7f }, { 42458, 0xf3af },\n  { 42470, 0xfdbf }, { 42484, 0x7dff }, { 42498, 0xffe7 }, { 42512, 0xffe6 },\n  { 42525, 0x7f3d }, { 42537, 0x1fff }, { 42550, 0x9ffc }, { 42562, 0xf27f },\n  { 42574, 0x27ff }, { 42586, 0x87ff }, { 42598, 0x9fff }, { 42612, 0x43fe },\n  /* 0x26600 */\n  { 42622, 0xefff }, { 42637, 0xe93f }, { 42648, 0xff0d }, { 42659, 0xedfc },\n  { 42671, 0x2fff }, { 42684, 0x99ff }, { 42696, 0xff87 }, { 42708, 0x9fff },\n  { 42722, 0x73ff }, { 42735, 0xff1e }, { 42747, 0x7fff }, { 42762, 0x2ffc },\n  { 42773, 0xc03e }, { 42780, 0xfffd }, { 42795, 0x7efb }, { 42808, 0x02d8 },\n  /* 0x26700 */\n  { 42813, 0xfddc }, { 42825, 0x9fff }, { 42839, 0x17ff }, { 42851, 0xee68 },\n  { 42860, 0x8002 }, { 42862, 0xffff }, { 42878, 0xffff }, { 42894, 0xfdff },\n  { 42909, 0x0ab3 }, { 42916, 0xfee0 }, { 42926, 0xbfff }, { 42941, 0x3fe7 },\n  { 42953, 0x0003 }, { 42955, 0xbb30 }, { 42963, 0xbeff }, { 42977, 0x0019 },\n  /* 0x26800 */\n  { 42980, 0xffff }, { 42996, 0xd6ff }, { 43009, 0x1b31 }, { 43016, 0xdf80 },\n  { 43024, 0xf1ef }, { 43036, 0x19bf }, { 43046, 0x3f00 }, { 43052, 0xfff7 },\n  { 43067, 0xf52f }, { 43078, 0x3ff3 }, { 43090, 0xbff0 }, { 43101, 0xbf00 },\n  { 43108, 0xbfe3 }, { 43120, 0xfc4f }, { 43131, 0x7a13 }, { 43139, 0xfffe },\n  /* 0x26900 */\n  { 43154, 0xf47d }, { 43165, 0xef75 }, { 43177, 0x1ffe }, { 43189, 0x9efc },\n  { 43200, 0xdff6 }, { 43213, 0xebbf }, { 43226, 0x6be7 }, { 43237, 0xfffc },\n  { 43251, 0xd7ff }, { 43265, 0xffeb }, { 43279, 0xfebf }, { 43293, 0xff7f },\n  { 43308, 0xd7f7 }, { 43321, 0xa4fb }, { 43331, 0x6dff }, { 43344, 0xdb7b },\n  /* 0x26a00 */\n  { 43356, 0xfffb }, { 43371, 0xb7fd }, { 43384, 0xf5df }, { 43397, 0xf4f7 },\n  { 43409, 0xff98 }, { 43420, 0xf318 }, { 43428, 0x1fff }, { 43441, 0x7ff6 },\n  { 43454, 0x6ff0 }, { 43464, 0x3ffe }, { 43477, 0xfeb0 }, { 43487, 0xe1c7 },\n  { 43496, 0xddff }, { 43510, 0x7eb7 }, { 43522, 0xbffd }, { 43536, 0xffdf },\n  /* 0x26b00 */\n  { 43551, 0xfbff }, { 43566, 0xfff9 }, { 43580, 0xfeff }, { 43595, 0xffbf },\n  { 43610, 0x0bff }, { 43621, 0x3ff0 }, { 43631, 0xfb04 }, { 43639, 0xffff },\n  { 43655, 0xffff }, { 43671, 0xff0f }, { 43683, 0xffff }, { 43699, 0xffa8 },\n  { 43710, 0xffff }, { 43726, 0xff7e }, { 43740, 0xff7f }, { 43755, 0xff1f },\n  /* 0x26c00 */\n  { 43768, 0xffff }, { 43784, 0x6bff }, { 43797, 0xfc82 }, { 43805, 0xffff },\n  { 43821, 0xffbf }, { 43836, 0xdfff }, { 43851, 0xffff }, { 43867, 0x1ffd },\n  { 43879, 0xfff8 }, { 43892, 0xffff }, { 43908, 0x97ff }, { 43921, 0x20c1 },\n  { 43925, 0xffff }, { 43941, 0xffff }, { 43957, 0x7fff }, { 43972, 0xffff },\n  /* 0x26d00 */\n  { 43988, 0xffa7 }, { 44001, 0xffff }, { 44017, 0xf801 }, { 44023, 0xffff },\n  { 44039, 0x7fff }, { 44054, 0xe007 }, { 44060, 0xfffe }, { 44075, 0xffff },\n  { 44091, 0xfff7 }, { 44106, 0x0fff }, { 44118, 0xff00 }, { 44126, 0xffff },\n  { 44142, 0xffff }, { 44158, 0xefbf }, { 44172, 0x040b }, { 44176, 0xbfff },\n  /* 0x26e00 */\n  { 44191, 0xffdf }, { 44206, 0xffff }, { 44222, 0xffdf }, { 44237, 0x07ff },\n  { 44248, 0xffc0 }, { 44258, 0xffff }, { 44274, 0x451e }, { 44281, 0xe084 },\n  { 44286, 0xffd7 }, { 44300, 0xffff }, { 44316, 0xffff }, { 44332, 0xffff },\n  { 44348, 0x3fff }, { 44362, 0xff00 }, { 44370, 0xffff }, { 44386, 0xffff },\n  /* 0x26f00 */\n  { 44402, 0xfcff }, { 44416, 0x0227 }, { 44421, 0xfe16 }, { 44431, 0xffff },\n  { 44447, 0xdfff }, { 44462, 0xffff }, { 44478, 0x5fff }, { 44492, 0xffe2 },\n  { 44504, 0xffff }, { 44520, 0x8895 }, { 44526, 0xf482 }, { 44533, 0xffff },\n  { 44549, 0xff7f }, { 44564, 0x03ff }, { 44574, 0xffff }, { 44590, 0xfe3f },\n  /* 0x27000 */\n  { 44603, 0x20f7 }, { 44611, 0x2ff0 }, { 44620, 0xffff }, { 44636, 0xffbf },\n  { 44651, 0xbfff }, { 44666, 0xfff2 }, { 44679, 0xffff }, { 44695, 0xf801 },\n  { 44701, 0xff7f }, { 44716, 0xffff }, { 44732, 0x03ba }, { 44739, 0xffff },\n  { 44755, 0xc3ff }, { 44767, 0xffff }, { 44783, 0xdfff }, { 44798, 0xfe01 },\n  /* 0x27100 */\n  { 44806, 0xeaff }, { 44819, 0xffff }, { 44835, 0x7f0f }, { 44846, 0xffc0 },\n  { 44856, 0xffff }, { 44872, 0xffdf }, { 44887, 0xc7c7 }, { 44897, 0x7ddf },\n  { 44910, 0xefea }, { 44922, 0x7fff }, { 44937, 0x1ff9 }, { 44948, 0xfc7e },\n  { 44960, 0x2ffe }, { 44972, 0xf1bf }, { 44984, 0x3fff }, { 44998, 0xf83e },\n  /* 0x27200 */\n  { 45008, 0x6bcb }, { 45018, 0xf5ef }, { 45031, 0xffb9 }, { 45044, 0xfff1 },\n  { 45057, 0xffff }, { 45073, 0xd9e3 }, { 45083, 0xffff }, { 45099, 0xf8f9 },\n  { 45110, 0xe1ef }, { 45121, 0xffff }, { 45137, 0xfbff }, { 45152, 0x9fc3 },\n  { 45162, 0xff00 }, { 45170, 0xfbff }, { 45185, 0xff83 }, { 45196, 0x0009 },\n  /* 0x27300 */\n  { 45198, 0xfffa }, { 45212, 0xbfff }, { 45227, 0x3fdf }, { 45240, 0xaff0 },\n  { 45250, 0x0000 }, { 45250, 0xfffe }, { 45265, 0xffff }, { 45281, 0xffff },\n  { 45297, 0xff1f }, { 45310, 0xc59f }, { 45320, 0xff7e }, { 45334, 0xffff },\n  { 45350, 0xffff }, { 45366, 0xf03f }, { 45376, 0x175f }, { 45386, 0xff00 },\n  /* 0x27400 */\n  { 45394, 0xfff7 }, { 45409, 0xffff }, { 45425, 0xeff8 }, { 45437, 0x007a },\n  { 45442, 0xfff1 }, { 45455, 0xf7ff }, { 45470, 0xffff }, { 45486, 0xff1f },\n  { 45499, 0xc15e }, { 45507, 0xfdff }, { 45522, 0x0ffe }, { 45533, 0xfffc },\n  { 45547, 0xdf00 }, { 45554, 0xffff }, { 45570, 0x18fe }, { 45579, 0xfffe },\n  /* 0x27500 */\n  { 45594, 0xc1df }, { 45604, 0xe13f }, { 45614, 0xddff }, { 45628, 0x24ff },\n  { 45638, 0xfffe }, { 45653, 0xf9f7 }, { 45666, 0xc1ff }, { 45677, 0xf7ff },\n  { 45692, 0xfdf5 }, { 45705, 0xfffe }, { 45720, 0xbf90 }, { 45729, 0x7ffc },\n  { 45742, 0xffdf }, { 45757, 0xfff7 }, { 45772, 0xffee }, { 45786, 0x8ffe },\n  /* 0x27600 */\n  { 45798, 0xef7f }, { 45812, 0xf64f }, { 45823, 0xffff }, { 45839, 0x7cf9 },\n  { 45850, 0xffff }, { 45866, 0xff07 }, { 45877, 0xffbf }, { 45892, 0xc2ac },\n  { 45899, 0xffff }, { 45915, 0x7fe7 }, { 45928, 0xfffa }, { 45942, 0xf7ff },\n  { 45957, 0xe009 }, { 45962, 0xffff }, { 45978, 0x1fff }, { 45991, 0xff0f },\n  /* 0x27700 */\n  { 46003, 0x2dff }, { 46015, 0xe026 }, { 46021, 0xfaff }, { 46035, 0xe187 },\n  { 46043, 0xbfff }, { 46058, 0x0fff }, { 46070, 0xfc0c }, { 46078, 0xffff },\n  { 46094, 0xf1c7 }, { 46104, 0xfafd }, { 46117, 0xffc6 }, { 46129, 0x3fef },\n  { 46142, 0xf78c }, { 46152, 0xcff7 }, { 46165, 0xefca }, { 46176, 0xff9e },\n  /* 0x27800 */\n  { 46189, 0xdadf }, { 46201, 0xffef }, { 46216, 0x6f0f }, { 46226, 0xf82f },\n  { 46236, 0xf979 }, { 46247, 0x29ef }, { 46257, 0xffff }, { 46273, 0xef8e },\n  { 46284, 0xe77f }, { 46297, 0x777c }, { 46308, 0xe9ff }, { 46321, 0xffbe },\n  { 46335, 0xe3ff }, { 46348, 0x5fff }, { 46362, 0xff2e }, { 46374, 0x7ff3 },\n  /* 0x27900 */\n  { 46387, 0xfbf8 }, { 46399, 0xf9ff }, { 46413, 0xdecf }, { 46425, 0xfcc6 },\n  { 46435, 0x3517 }, { 46443, 0x3fea }, { 46454, 0xef7e }, { 46467, 0xffbb },\n  { 46481, 0xbfc7 }, { 46493, 0xfe84 }, { 46502, 0xffff }, { 46518, 0x4cff },\n  { 46529, 0xff76 }, { 46542, 0xffff }, { 46558, 0x0df3 }, { 46567, 0xffff },\n  /* 0x27a00 */\n  { 46583, 0x8fff }, { 46596, 0x7e7f }, { 46609, 0xffd9 }, { 46622, 0xffff },\n  { 46638, 0xfefd }, { 46652, 0xff43 }, { 46663, 0xffff }, { 46679, 0xfffe },\n  { 46694, 0xffff }, { 46710, 0xffd7 }, { 46724, 0xffff }, { 46740, 0x86ff },\n  { 46751, 0x89ff }, { 46762, 0xfffd }, { 46777, 0xffff }, { 46793, 0xe565 },\n  /* 0x27b00 */\n  { 46802, 0xfffd }, { 46817, 0xbeef }, { 46830, 0xffbf }, { 46845, 0xf87f },\n  { 46857, 0xff7f }, { 46872, 0xff7f }, { 46887, 0xffbf }, { 46902, 0xff97 },\n  { 46915, 0xdfff }, { 46930, 0xef7f }, { 46944, 0xfb2c }, { 46954, 0x3def },\n  { 46966, 0xfe47 }, { 46977, 0x9f39 }, { 46987, 0xeeef }, { 47000, 0xff9b },\n  /* 0x27c00 */\n  { 47013, 0x3efb }, { 47025, 0x637f }, { 47036, 0xffab }, { 47049, 0xfff5 },\n  { 47063, 0xe7ff }, { 47077, 0xffff }, { 47093, 0xff3f }, { 47107, 0xd9ff },\n  { 47120, 0xffff }, { 47136, 0xfdbf }, { 47150, 0xf7ff }, { 47165, 0xc2ff },\n  { 47176, 0xffff }, { 47192, 0xfedf }, { 47206, 0xffe7 }, { 47220, 0x5fee },\n  /* 0x27d00 */\n  { 47232, 0xf0fe }, { 47243, 0xe7f1 }, { 47254, 0x3d7b }, { 47265, 0xffef },\n  { 47280, 0xffb7 }, { 47294, 0x37e3 }, { 47304, 0xfff9 }, { 47318, 0xe7f7 },\n  { 47331, 0x7fec }, { 47343, 0xff8f }, { 47356, 0x05ff }, { 47366, 0xdfff },\n  { 47381, 0xfe9f }, { 47394, 0xd6ff }, { 47407, 0xfbff }, { 47422, 0xf825 },\n  /* 0x27e00 */\n  { 47430, 0xffff }, { 47446, 0x47f2 }, { 47455, 0xe9ff }, { 47468, 0xf3fe },\n  { 47481, 0x43c9 }, { 47488, 0x7f00 }, { 47495, 0xf09b }, { 47504, 0x23fc },\n  { 47513, 0xffd0 }, { 47524, 0xefdd }, { 47537, 0xffff }, { 47553, 0xffec },\n  { 47566, 0xdfff }, { 47581, 0xbffe }, { 47595, 0xd8ff }, { 47607, 0xbf7f },\n  /* 0x27f00 */\n  { 47621, 0xc2ff }, { 47632, 0xffff }, { 47648, 0xffef }, { 47663, 0xffff },\n  { 47679, 0xfe76 }, { 47691, 0xffff }, { 47707, 0xbfff }, { 47722, 0xffd8 },\n  { 47734, 0xe93f }, { 47745, 0xffff }, { 47761, 0xff7f }, { 47776, 0x1f73 },\n  { 47786, 0x227f }, { 47795, 0xfffc }, { 47809, 0xc05d }, { 47816, 0xfffe },\n  /* 0x28000 */\n  { 47831, 0x0249 }, { 47835, 0xfff8 }, { 47848, 0x7fff }, { 47863, 0x00c2 },\n  { 47866, 0xffff }, { 47882, 0x5e3f }, { 47893, 0x000d }, { 47896, 0xffe8 },\n  { 47908, 0xf9ff }, { 47922, 0xf80a }, { 47929, 0xffff }, { 47945, 0x81ff },\n  { 47955, 0x0003 }, { 47957, 0xfffc }, { 47971, 0x51ff }, { 47982, 0x8008 },\n  /* 0x28100 */\n  { 47984, 0xffe9 }, { 47997, 0x0fff }, { 48009, 0x3ffe }, { 48022, 0x0000 },\n  { 48022, 0xdd60 }, { 48030, 0xffff }, { 48046, 0x07ff }, { 48057, 0x0076 },\n  { 48062, 0xffff }, { 48078, 0x1df3 }, { 48088, 0xfdc0 }, { 48097, 0x183f },\n  { 48105, 0x9dfe }, { 48117, 0x67d0 }, { 48125, 0xeff0 }, { 48136, 0x3c1f },\n  /* 0x28200 */\n  { 48145, 0xad38 }, { 48153, 0xff3b }, { 48166, 0xfe17 }, { 48177, 0xff37 },\n  { 48190, 0xff0d }, { 48201, 0x0bb1 }, { 48208, 0xc1fc }, { 48217, 0x9e0f },\n  { 48226, 0xe45b }, { 48235, 0x2bfd }, { 48246, 0x9e9f }, { 48257, 0xfffe },\n  { 48272, 0xd0d1 }, { 48279, 0x1fff }, { 48292, 0xffc0 }, { 48302, 0x1277 },\n  /* 0x28300 */\n  { 48310, 0xeffe }, { 48324, 0xbe40 }, { 48331, 0xffff }, { 48347, 0x79ff },\n  { 48360, 0xffef }, { 48375, 0x87df }, { 48386, 0xffa9 }, { 48398, 0x8bdf },\n  { 48409, 0x3fbf }, { 48422, 0x136f }, { 48431, 0xfff6 }, { 48445, 0x53ff },\n  { 48457, 0xcfe2 }, { 48467, 0xe37e }, { 48478, 0x9f5f }, { 48490, 0x677f },\n  /* 0x28400 */\n  { 48502, 0xb806 }, { 48508, 0xffb3 }, { 48521, 0xbf17 }, { 48532, 0x7a67 },\n  { 48542, 0xafff }, { 48556, 0x4f1f }, { 48566, 0xbfff }, { 48581, 0xf0bf },\n  { 48592, 0xfffb }, { 48607, 0x2cf8 }, { 48615, 0xfffd }, { 48630, 0xf00d },\n  { 48637, 0x6fbf }, { 48650, 0x2bfc }, { 48660, 0xfff0 }, { 48672, 0xefff },\n  /* 0x28500 */\n  { 48687, 0xc829 }, { 48693, 0xfeff }, { 48708, 0xffde }, { 48722, 0x0007 },\n  { 48725, 0xaffe }, { 48738, 0xfc5b }, { 48749, 0xc7ff }, { 48762, 0x317f },\n  { 48772, 0xffca }, { 48784, 0xe3f9 }, { 48795, 0xfc3b }, { 48806, 0xdffb },\n  { 48820, 0xf81f }, { 48830, 0xc3bd }, { 48840, 0xffee }, { 48854, 0x3fc3 },\n  /* 0x28600 */\n  { 48864, 0xf7bf }, { 48878, 0xfe0b }, { 48888, 0x7fcf }, { 48901, 0xb3e5 },\n  { 48911, 0xc7ff }, { 48924, 0xd7bf }, { 48937, 0xebd9 }, { 48948, 0x7fe7 },\n  { 48961, 0xaefc }, { 48972, 0xfffe }, { 48987, 0xfd25 }, { 48997, 0xbe7f },\n  { 49010, 0xffda }, { 49023, 0xde7f }, { 49036, 0xfffb }, { 49051, 0xf9fb },\n  /* 0x28700 */\n  { 49064, 0xfd6f }, { 49077, 0x9fff }, { 49091, 0xe5ff }, { 49104, 0xfffd },\n  { 49119, 0xfe9b }, { 49131, 0xe9bb }, { 49142, 0xfdef }, { 49156, 0xe1fb },\n  { 49167, 0xf2bf }, { 49179, 0xdffe }, { 49193, 0xcfc3 }, { 49203, 0xffeb },\n  { 49217, 0xe13f }, { 49227, 0xdff3 }, { 49240, 0xd9df }, { 49252, 0xfff7 },\n  /* 0x28800 */\n  { 49267, 0xfde7 }, { 49280, 0x79ff }, { 49293, 0x40f4 }, { 49299, 0x7fc0 },\n  { 49308, 0xf826 }, { 49316, 0x3dfb }, { 49328, 0xfe0d }, { 49338, 0x61ff },\n  { 49349, 0xfffb }, { 49364, 0x0e77 }, { 49373, 0xbfff }, { 49388, 0xe66f },\n  { 49399, 0x48ff }, { 49409, 0xbffb }, { 49423, 0xefcb }, { 49435, 0xffdf },\n  /* 0x28900 */\n  { 49450, 0xf7a7 }, { 49462, 0x6fef }, { 49475, 0x376f }, { 49486, 0xc7d0 },\n  { 49494, 0xfe1d }, { 49505, 0x03ff }, { 49515, 0xe7f4 }, { 49526, 0x4a6f },\n  { 49535, 0xfc74 }, { 49545, 0xf25f }, { 49556, 0xfd09 }, { 49565, 0xc19f },\n  { 49574, 0xfffe }, { 49589, 0x1a68 }, { 49595, 0xfff2 }, { 49608, 0xe07f },\n  /* 0x28a00 */\n  { 49618, 0x7fff }, { 49633, 0x20ff }, { 49642, 0xd220 }, { 49647, 0x7fff },\n  { 49662, 0xf000 }, { 49666, 0xf9ff }, { 49680, 0x121f }, { 49687, 0x1620 },\n  { 49691, 0xfffe }, { 49706, 0x80df }, { 49714, 0xffff }, { 49730, 0x30c1 },\n  { 49735, 0xd840 }, { 49740, 0x037f }, { 49749, 0xffc0 }, { 49759, 0x2bff },\n  /* 0x28b00 */\n  { 49771, 0xf038 }, { 49778, 0xafdf }, { 49791, 0xc7f8 }, { 49801, 0x7fff },\n  { 49816, 0x4290 }, { 49820, 0xffe9 }, { 49833, 0xef84 }, { 49842, 0x50ff },\n  { 49852, 0x8019 }, { 49856, 0xccbc }, { 49865, 0x89ff }, { 49876, 0xfb80 },\n  { 49884, 0xffd0 }, { 49895, 0xc697 }, { 49904, 0xe04f }, { 49912, 0x5c01 },\n  /* 0x28c00 */\n  { 49917, 0xfe23 }, { 49927, 0xf7f7 }, { 49941, 0xd315 }, { 49949, 0x394f },\n  { 49958, 0x0000 }, { 49958, 0xff80 }, { 49967, 0x0bf4 }, { 49975, 0x86f8 },\n  { 49983, 0x3fcf }, { 49995, 0xedb8 }, { 50005, 0xe3e7 }, { 50016, 0x5d5c },\n  { 50025, 0xde3f }, { 50037, 0xffeb }, { 50051, 0x3faf }, { 50063, 0xfffd },\n  /* 0x28d00 */\n  { 50078, 0xe037 }, { 50086, 0xa3ff }, { 50098, 0xff21 }, { 50108, 0x81eb },\n  { 50116, 0xbff3 }, { 50129, 0x10ff }, { 50138, 0xfff4 }, { 50151, 0x02ad },\n  { 50157, 0xffff }, { 50173, 0xf444 }, { 50180, 0xf0ff }, { 50192, 0x43df },\n  { 50202, 0x3efe }, { 50214, 0xfabc }, { 50225, 0x0dde }, { 50234, 0x198f },\n  /* 0x28e00 */\n  { 50242, 0x8000 }, { 50243, 0x7dff }, { 50257, 0xfa1f }, { 50268, 0x012f },\n  { 50274, 0xdffe }, { 50288, 0xff2b }, { 50300, 0xe08f }, { 50308, 0xffef },\n  { 50323, 0xfc7f }, { 50336, 0x800f }, { 50341, 0xffff }, { 50357, 0x8032 },\n  { 50361, 0xffff }, { 50377, 0xfd7f }, { 50391, 0x8543 }, { 50397, 0xffff },\n  /* 0x28f00 */\n  { 50413, 0xfd7f }, { 50427, 0xfbff }, { 50442, 0xfc41 }, { 50450, 0xe07b },\n  { 50459, 0xf0ff }, { 50471, 0xb3ff }, { 50484, 0x5def }, { 50496, 0xbf7e },\n  { 50509, 0xafef }, { 50522, 0x3ffe }, { 50535, 0xcfff }, { 50549, 0xfffc },\n  { 50563, 0xfb7f }, { 50577, 0x47ff }, { 50589, 0xffff }, { 50605, 0xe67f },\n  /* 0x29000 */\n  { 50617, 0xffff }, { 50633, 0xffbf }, { 50648, 0xfff3 }, { 50662, 0xfff3 },\n  { 50676, 0xffe7 }, { 50690, 0xfbff }, { 50705, 0x3b9f }, { 50716, 0x7fe5 },\n  { 50728, 0x37fc }, { 50739, 0x1dfc }, { 50749, 0x77fe }, { 50762, 0xffac },\n  { 50774, 0x17ef }, { 50785, 0x7fff }, { 50800, 0xafcb }, { 50811, 0xf7f0 },\n  /* 0x29100 */\n  { 50822, 0x221b }, { 50828, 0xffc0 }, { 50838, 0x6aff }, { 50850, 0xff80 },\n  { 50859, 0xceff }, { 50872, 0xe00d }, { 50878, 0x3fff }, { 50892, 0xf0c6 },\n  { 50900, 0x03ff }, { 50910, 0x8dfe }, { 50921, 0xea70 }, { 50929, 0xa5ef },\n  { 50940, 0x5f9f }, { 50952, 0xffbe }, { 50966, 0xffdb }, { 50980, 0xd7ef },\n  /* 0x29200 */\n  { 50993, 0xf7f8 }, { 51005, 0xbe4e }, { 51015, 0xf9ff }, { 51029, 0x7b7f },\n  { 51042, 0x7fbf }, { 51056, 0xee52 }, { 51065, 0x5ffe }, { 51078, 0xff00 },\n  { 51086, 0x0b3f }, { 51095, 0xffff }, { 51111, 0xfe60 }, { 51120, 0x938d },\n  { 51128, 0xffff }, { 51144, 0xe83f }, { 51154, 0xffff }, { 51170, 0xf77f },\n  /* 0x29300 */\n  { 51184, 0xfff9 }, { 51198, 0x2cff }, { 51209, 0xffc7 }, { 51222, 0xcecf },\n  { 51233, 0xceff }, { 51246, 0xfffe }, { 51261, 0xcff0 }, { 51271, 0xc3be },\n  { 51281, 0xffb7 }, { 51295, 0x7fbe }, { 51308, 0xfff2 }, { 51321, 0xffef },\n  { 51336, 0xcfeb }, { 51348, 0xcfff }, { 51362, 0xff7f }, { 51377, 0x0ff7 },\n  /* 0x29400 */\n  { 51388, 0xbebe }, { 51400, 0xdff8 }, { 51412, 0x7dff }, { 51426, 0xdef7 },\n  { 51439, 0x3fef }, { 51452, 0xffff }, { 51468, 0x5fff }, { 51482, 0x7fff },\n  { 51497, 0x9fff }, { 51511, 0xffff }, { 51527, 0xecd7 }, { 51538, 0xffff },\n  { 51554, 0x7f7f }, { 51568, 0xe37a }, { 51578, 0xffff }, { 51594, 0x7dff },\n  /* 0x29500 */\n  { 51608, 0xffff }, { 51624, 0xfe19 }, { 51634, 0xb3ff }, { 51647, 0xfff9 },\n  { 51661, 0xff65 }, { 51673, 0xefff }, { 51688, 0xfa7f }, { 51701, 0xd5fe },\n  { 51713, 0xfcdb }, { 51725, 0xbe09 }, { 51733, 0x53fe }, { 51744, 0x7ffd },\n  { 51758, 0x3ff2 }, { 51769, 0xeff8 }, { 51781, 0xff0f }, { 51793, 0x0dff },\n  /* 0x29600 */\n  { 51804, 0xffea }, { 51817, 0xf6ff }, { 51831, 0xe0ff }, { 51842, 0xffff },\n  { 51858, 0x477f }, { 51869, 0xfede }, { 51882, 0x0012 }, { 51884, 0x34d6 },\n  { 51892, 0xffff }, { 51908, 0x7fec }, { 51920, 0xff19 }, { 51931, 0xafff },\n  { 51945, 0xff63 }, { 51957, 0xe8cf }, { 51967, 0xffff }, { 51983, 0xfe0a },\n  /* 0x29700 */\n  { 51992, 0xffff }, { 52008, 0xfcfd }, { 52021, 0xb004 }, { 52025, 0xffff },\n  { 52041, 0x0267 }, { 52047, 0xef80 }, { 52055, 0x5bff }, { 52068, 0xf337 },\n  { 52079, 0xffff }, { 52095, 0xc6c3 }, { 52103, 0x7fff }, { 52118, 0xf4a4 },\n  { 52126, 0xbfff }, { 52141, 0x2bf8 }, { 52150, 0xe5f8 }, { 52160, 0x01d3 },\n  /* 0x29800 */\n  { 52166, 0x0000 }, { 52166, 0x1ee3 }, { 52175, 0x1c7c }, { 52183, 0xde85 },\n  { 52192, 0x77f7 }, { 52205, 0x6d3f }, { 52216, 0x67b2 }, { 52225, 0xffaf },\n  { 52239, 0xf35e }, { 52250, 0xffff }, { 52266, 0xe0eb }, { 52275, 0xffff },\n  { 52291, 0x77bf }, { 52304, 0xffe7 }, { 52318, 0xe19f }, { 52328, 0xffff },\n  /* 0x29900 */\n  { 52344, 0x82d3 }, { 52351, 0xffcd }, { 52364, 0x7fff }, { 52379, 0xe88b },\n  { 52387, 0xffff }, { 52403, 0x5ddf }, { 52415, 0xf814 }, { 52422, 0x0c1f },\n  { 52429, 0xffff }, { 52445, 0xdaf3 }, { 52456, 0x31ff }, { 52467, 0xffc8 },\n  { 52478, 0xcffd }, { 52491, 0x0f71 }, { 52499, 0x003f }, { 52505, 0x0000 },\n  /* 0x29a00 */\n  { 52505, 0x0000 }, { 52505, 0xf8e6 }, { 52515, 0xf0df }, { 52526, 0xe5ff },\n  { 52539, 0xfe4f }, { 52551, 0xffa8 }, { 52562, 0xe04f }, { 52570, 0x637f },\n  { 52581, 0xfe7f }, { 52595, 0x1fbf }, { 52607, 0x6fff }, { 52621, 0xdbcc },\n  { 52631, 0xde7f }, { 52644, 0xf7a3 }, { 52655, 0xffff }, { 52671, 0xb69b },\n  /* 0x29b00 */\n  { 52681, 0x8e1b }, { 52689, 0xffff }, { 52705, 0x03c7 }, { 52712, 0xbfff },\n  { 52727, 0xff8f }, { 52740, 0xe5ef }, { 52752, 0x6fff }, { 52766, 0xff80 },\n  { 52775, 0x3bff }, { 52788, 0xffc0 }, { 52798, 0xc3cf }, { 52808, 0x77ff },\n  { 52822, 0xfff8 }, { 52835, 0xf853 }, { 52844, 0x23f1 }, { 52852, 0x8d3f },\n  /* 0x29c00 */\n  { 52862, 0xfefe }, { 52876, 0xf2ff }, { 52889, 0xffff }, { 52905, 0xd2fe },\n  { 52916, 0xffbb }, { 52930, 0xbfdf }, { 52944, 0xbbff }, { 52958, 0xe7bf },\n  { 52971, 0xfdff }, { 52986, 0x7ff3 }, { 52999, 0xdfee }, { 53012, 0xfa49 },\n  { 53021, 0xfbf7 }, { 53035, 0xbf7f }, { 53049, 0xf7ff }, { 53064, 0xf7e7 },\n  /* 0x29d00 */\n  { 53077, 0xefc9 }, { 53088, 0xfb7f }, { 53102, 0xef5f }, { 53115, 0xaddf },\n  { 53127, 0xfdb7 }, { 53140, 0x0bfb }, { 53150, 0xffff }, { 53166, 0x13fb },\n  { 53176, 0x7fff }, { 53191, 0x4c7e }, { 53200, 0xfffd }, { 53215, 0xbfc3 },\n  { 53226, 0xf80c }, { 53233, 0xf7ff }, { 53248, 0x507f }, { 53257, 0xffb0 },\n  /* 0x29e00 */\n  { 53268, 0xffff }, { 53284, 0x9f85 }, { 53293, 0x21a5 }, { 53299, 0xd600 },\n  { 53304, 0xffff }, { 53320, 0x5fc7 }, { 53331, 0x0104 }, { 53333, 0xfffe },\n  { 53348, 0xe07f }, { 53358, 0x1e7f }, { 53369, 0xe800 }, { 53373, 0x7fff },\n  { 53388, 0x2fe0 }, { 53396, 0xff40 }, { 53405, 0x0dff }, { 53416, 0x0174 },\n  /* 0x29f00 */\n  { 53421, 0x7ffc }, { 53434, 0xf1c7 }, { 53444, 0x7fe3 }, { 53456, 0xf83e },\n  { 53466, 0xf11f }, { 53476, 0xfd2b }, { 53487, 0x7fcb }, { 53499, 0x00eb },\n  { 53505, 0xa201 }, { 53509, 0xfbff }, { 53524, 0x1eff }, { 53536, 0xffff },\n  { 53552, 0x9fff }, { 53566, 0xf8ff }, { 53579, 0x7fff }, { 53594, 0x11fe },\n  /* 0x2a000 */\n  { 53603, 0xbf83 }, { 53613, 0xeffe }, { 53627, 0x3fff }, { 53641, 0xb5ff },\n  { 53654, 0xff01 }, { 53663, 0xffff }, { 53679, 0x7fff }, { 53694, 0xfb85 },\n  { 53704, 0xffff }, { 53720, 0xefbb }, { 53733, 0x242a }, { 53738, 0xfff0 },\n  { 53750, 0xffff }, { 53766, 0x3dff }, { 53779, 0x86d5 }, { 53787, 0xfe48 },\n  /* 0x2a100 */\n  { 53796, 0xfeff }, { 53811, 0x599f }, { 53821, 0xfe09 }, { 53830, 0xfbff },\n  { 53845, 0x7fff }, { 53860, 0x947e }, { 53869, 0xc002 }, { 53872, 0xffff },\n  { 53888, 0x3fff }, { 53902, 0x24f2 }, { 53909, 0xff02 }, { 53918, 0xffff },\n  { 53934, 0x065e }, { 53941, 0x35fe }, { 53952, 0xf003 }, { 53958, 0x9fff },\n  /* 0x2a200 */\n  { 53972, 0x7efa }, { 53984, 0xff0d }, { 53995, 0xcff4 }, { 54006, 0xbfb7 },\n  { 54019, 0x0001 }, { 54020, 0xffc0 }, { 54030, 0xe3db }, { 54041, 0x95ef },\n  { 54052, 0xfbdf }, { 54066, 0x5bfb }, { 54078, 0xbde3 }, { 54089, 0xfffe },\n  { 54104, 0xebf8 }, { 54115, 0x7ff7 }, { 54129, 0xfcae }, { 54140, 0xfd9d },\n  /* 0x2a300 */\n  { 54152, 0x7fee }, { 54165, 0x3df7 }, { 54177, 0xf17d }, { 54188, 0xf91f },\n  { 54199, 0xfaff }, { 54213, 0xfd7f }, { 54227, 0xffff }, { 54243, 0xff7d },\n  { 54257, 0xe0df }, { 54267, 0xfcfd }, { 54280, 0xfdff }, { 54295, 0x6e7d },\n  { 54306, 0x7fde }, { 54319, 0x7f7a }, { 54331, 0xf1f2 }, { 54341, 0xffdf },\n  /* 0x2a400 */\n  { 54356, 0xff9d }, { 54369, 0xfbfe }, { 54383, 0x0df3 }, { 54392, 0x831c },\n  { 54398, 0x7f1f }, { 54410, 0x7ffc }, { 54423, 0xffea }, { 54436, 0xc09f },\n  { 54444, 0x993f }, { 54454, 0xff7f }, { 54469, 0xfe8f }, { 54481, 0xcf31 },\n  { 54490, 0xde5b }, { 54501, 0xfdff }, { 54516, 0xf3b6 }, { 54527, 0xfbff },\n  /* 0x2a500 */\n  { 54542, 0xed77 }, { 54554, 0x39f7 }, { 54565, 0xdffc }, { 54578, 0xfdeb },\n  { 54591, 0xff5f }, { 54605, 0xff9e }, { 54618, 0xff92 }, { 54629, 0xefe2 },\n  { 54640, 0xf9ef }, { 54653, 0x0dff }, { 54664, 0xc7fe }, { 54676, 0x78f9 },\n  { 54686, 0xfef6 }, { 54699, 0xff37 }, { 54712, 0xbfff }, { 54727, 0xffe4 },\n  /* 0x2a600 */\n  { 54739, 0xec33 }, { 54748, 0x99ff }, { 54760, 0x77f7 }, { 54773, 0xffd5 },\n  { 54786, 0xffcf }, { 54800, 0xffcf }, { 54814, 0x56f8 }, { 54823, 0xbbfd },\n  { 54836, 0x7b5f }, { 54848, 0xfbee }, { 54861, 0xf9e1 }, { 54871, 0xfffb },\n  { 54886, 0xef5f }, { 54899, 0x007f },\n};\nstatic const Summary16 cns11643_inv_uni2indx_page2f8[34] = {\n  /* 0x2f800 */\n  { 54906, 0xffff }, { 54922, 0xffff }, { 54938, 0xffff }, { 54954, 0xffff },\n  { 54970, 0xfffe }, { 54985, 0xffff }, { 55001, 0xffff }, { 55017, 0xffff },\n  { 55033, 0xffff }, { 55049, 0xffef }, { 55064, 0xffff }, { 55080, 0xffff },\n  { 55096, 0xdfff }, { 55111, 0xffff }, { 55127, 0xffff }, { 55143, 0xffff },\n  /* 0x2f900 */\n  { 55159, 0xffff }, { 55175, 0xffff }, { 55191, 0xffff }, { 55207, 0xffff },\n  { 55223, 0xffff }, { 55239, 0xffff }, { 55255, 0xffff }, { 55271, 0xffff },\n  { 55287, 0xffff }, { 55303, 0xffef }, { 55318, 0xffff }, { 55334, 0xfffb },\n  { 55349, 0xffff }, { 55365, 0xffef }, { 55380, 0xffff }, { 55396, 0xffff },\n  /* 0x2fa00 */\n  { 55412, 0xffff }, { 55428, 0x3fff },\n};\n\nstatic int\ncns11643_inv_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x0000 && wc < 0x0100)\n      summary = &cns11643_inv_uni2indx_page00[(wc>>4)];\n    else if (wc >= 0x0200 && wc < 0x03d0)\n      summary = &cns11643_inv_uni2indx_page02[(wc>>4)-0x020];\n    else if (wc >= 0x2000 && wc < 0x22c0)\n      summary = &cns11643_inv_uni2indx_page20[(wc>>4)-0x200];\n    else if (wc >= 0x2400 && wc < 0x2650)\n      summary = &cns11643_inv_uni2indx_page24[(wc>>4)-0x240];\n    else if (wc >= 0x3000 && wc < 0x9fb0)\n      summary = &cns11643_inv_uni2indx_page30[(wc>>4)-0x300];\n    else if (wc >= 0xfa00 && wc < 0xfa30)\n      summary = &cns11643_inv_uni2indx_pagefa[(wc>>4)-0xfa0];\n    else if (wc >= 0xfe00 && wc < 0xfff0)\n      summary = &cns11643_inv_uni2indx_pagefe[(wc>>4)-0xfe0];\n    else if (wc >= 0x20000 && wc < 0x2a6e0)\n      summary = &cns11643_inv_uni2indx_page200[(wc>>4)-0x2000];\n    else if (wc >= 0x2f800 && wc < 0x2fa20)\n      summary = &cns11643_inv_uni2indx_page2f8[(wc>>4)-0x2f80];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        used += summary->indx;\n        r[0] = cns11643_inv_2charset[3*used];\n        r[1] = cns11643_inv_2charset[3*used+1];\n        r[2] = cns11643_inv_2charset[3*used+2];\n        return 3;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/config.h",
    "content": "/* lib/config.h.  Generated from config.h.in by configure.  */\n/* Copyright (C) 1999-2003, 2005, 2007, 2010, 2012 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n\n/* Define to 1 to enable a few rarely used encodings. */\n/* #undef ENABLE_EXTRA */\n\n/* Define to 1 if the package shall run at any location in the filesystem. */\n/* #undef ENABLE_RELOCATABLE */\n\n/* Define to a type if <wchar.h> does not define. */\n/* #undef mbstate_t */\n\n/* Define if you have <iconv.h>, the iconv_t type, and the\n   iconv_open, iconv, iconv_close functions. */\n#define HAVE_ICONV 1\n/* Define as const if the declaration of iconv() needs const. */\n#define ICONV_CONST \n\n/* Define to 1 if you have the getc_unlocked() function. */\n#define HAVE_GETC_UNLOCKED 1\n\n/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */\n#define HAVE_LANGINFO_CODESET 1\n\n/* Define if you have the mbrtowc() function. */\n#define HAVE_MBRTOWC 1\n\n/* Define to 1 if you have the setlocale() function. */\n#define HAVE_SETLOCALE 1\n\n/* Define to 1 if you have the <stddef.h> header file. */\n/* #undef HAVE_STDDEF_H */\n\n/* Define to 1 if you have the <stdlib.h> header file. */\n#define HAVE_STDLIB_H 1\n\n/* Define to 1 if you have the <string.h> header file. */\n#define HAVE_STRING_H 1\n\n/* Define to 1 or 0, depending whether the compiler supports simple visibility\n   declarations. */\n#define HAVE_VISIBILITY 1\n\n/* Define if you have the wcrtomb() function. */\n#define HAVE_WCRTOMB 1\n\n/* Define to 1 if O_NOFOLLOW works. */\n#define HAVE_WORKING_O_NOFOLLOW 1\n\n/* Define if the machine's byte ordering is little endian. */\n#define WORDS_LITTLEENDIAN 1\n\n/* Define to the value of ${prefix}, as a string. */\n#define INSTALLPREFIX \"/usr/local\"\n\n/* Define to '__inline__' or '__inline' if that's what the C compiler\n   calls it, or to nothing if 'inline' is not supported under any name.  */\n#ifndef __cplusplus\n/* #undef inline */\n#endif\n\n/* Define to 'int' if <sys/types.h> does not define. */\n/* #undef mode_t */\n\n/* Define as a signed type of the same size as size_t. */\n/* #undef ssize_t */\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/config.h.in",
    "content": "/* Copyright (C) 1999-2003, 2005, 2007, 2010, 2012 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n\n/* Define to 1 to enable a few rarely used encodings. */\n#undef ENABLE_EXTRA\n\n/* Define to 1 if the package shall run at any location in the filesystem. */\n#undef ENABLE_RELOCATABLE\n\n/* Define to a type if <wchar.h> does not define. */\n#undef mbstate_t\n\n/* Define if you have <iconv.h>, the iconv_t type, and the\n   iconv_open, iconv, iconv_close functions. */\n#undef HAVE_ICONV\n/* Define as const if the declaration of iconv() needs const. */\n#define ICONV_CONST /* empty by default */\n\n/* Define to 1 if you have the getc_unlocked() function. */\n#undef HAVE_GETC_UNLOCKED\n\n/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */\n#undef HAVE_LANGINFO_CODESET\n\n/* Define if you have the mbrtowc() function. */\n#undef HAVE_MBRTOWC\n\n/* Define to 1 if you have the setlocale() function. */\n#undef HAVE_SETLOCALE\n\n/* Define to 1 if you have the <stddef.h> header file. */\n#undef HAVE_STDDEF_H\n\n/* Define to 1 if you have the <stdlib.h> header file. */\n#undef HAVE_STDLIB_H\n\n/* Define to 1 if you have the <string.h> header file. */\n#undef HAVE_STRING_H\n\n/* Define to 1 or 0, depending whether the compiler supports simple visibility\n   declarations. */\n#undef HAVE_VISIBILITY\n\n/* Define if you have the wcrtomb() function. */\n#undef HAVE_WCRTOMB\n\n/* Define to 1 if O_NOFOLLOW works. */\n#undef HAVE_WORKING_O_NOFOLLOW\n\n/* Define if the machine's byte ordering is little endian. */\n#undef WORDS_LITTLEENDIAN\n\n/* Define to the value of ${prefix}, as a string. */\n#undef INSTALLPREFIX\n\n/* Define to '__inline__' or '__inline' if that's what the C compiler\n   calls it, or to nothing if 'inline' is not supported under any name.  */\n#ifndef __cplusplus\n#undef inline\n#endif\n\n/* Define to 'int' if <sys/types.h> does not define. */\n#undef mode_t\n\n/* Define as a signed type of the same size as size_t. */\n#undef ssize_t\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/converters.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2004-2011, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/* This file defines all the converters. */\n\n\n/* Our own notion of wide character, as UCS-4, according to ISO-10646-1. */\ntypedef unsigned int ucs4_t;\n\n/* State used by a conversion. 0 denotes the initial state. */\ntypedef unsigned int state_t;\n\n/* iconv_t is an opaque type. This is the real iconv_t type. */\ntypedef struct conv_struct * conv_t;\n\n/*\n * Data type for conversion multibyte -> unicode\n */\nstruct mbtowc_funcs {\n  int (*xxx_mbtowc) (conv_t conv, ucs4_t *pwc, unsigned char const *s, size_t n);\n  /*\n   * int xxx_mbtowc (conv_t conv, ucs4_t *pwc, unsigned char const *s, size_t n)\n   * converts the byte sequence starting at s to a wide character. Up to n bytes\n   * are available at s. n is >= 1.\n   * Result is number of bytes consumed (if a wide character was read),\n   * or -1 if invalid, or -2 if n too small,\n   * or RET_SHIFT_ILSEQ(number of bytes consumed) if invalid input after a shift\n   * sequence was read,\n   * or RET_TOOFEW(number of bytes consumed) if only a shift sequence was read.\n   */\n  int (*xxx_flushwc) (conv_t conv, ucs4_t *pwc);\n  /*\n   * int xxx_flushwc (conv_t conv, ucs4_t *pwc)\n   * returns to the initial state and stores the pending wide character, if any.\n   * Result is 1 (if a wide character was read) or 0 if none was pending.\n   */\n};\n\n/* Return code if invalid input after a shift sequence of n bytes was read.\n   (xxx_mbtowc) */\n#define RET_SHIFT_ILSEQ(n)  (-1-2*(n))\n/* Return code if invalid. (xxx_mbtowc) */\n#define RET_ILSEQ           RET_SHIFT_ILSEQ(0)\n/* Return code if only a shift sequence of n bytes was read. (xxx_mbtowc) */\n#define RET_TOOFEW(n)       (-2-2*(n))\n/* Retrieve the n from the encoded RET_... value. */\n#define DECODE_SHIFT_ILSEQ(r)  ((unsigned int)(RET_SHIFT_ILSEQ(0) - (r)) / 2)\n#define DECODE_TOOFEW(r)       ((unsigned int)(RET_TOOFEW(0) - (r)) / 2)\n/* Maximum value of n that may be used as argument to RET_SHIFT_ILSEQ or RET_TOOFEW. */\n#define RET_COUNT_MAX       ((INT_MAX / 2) - 1)\n\n/*\n * Data type for conversion unicode -> multibyte\n */\nstruct wctomb_funcs {\n  int (*xxx_wctomb) (conv_t conv, unsigned char *r, ucs4_t wc, size_t n);\n  /*\n   * int xxx_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n   * converts the wide character wc to the character set xxx, and stores the\n   * result beginning at r. Up to n bytes may be written at r. n is >= 1.\n   * Result is number of bytes written, or -1 if invalid, or -2 if n too small.\n   */\n  int (*xxx_reset) (conv_t conv, unsigned char *r, size_t n);\n  /*\n   * int xxx_reset (conv_t conv, unsigned char *r, size_t n)\n   * stores a shift sequences returning to the initial state beginning at r.\n   * Up to n bytes may be written at r. n is >= 0.\n   * Result is number of bytes written, or -2 if n too small.\n   */\n};\n\n/* Return code if invalid. (xxx_wctomb) */\n#define RET_ILUNI      -1\n/* Return code if output buffer is too small. (xxx_wctomb, xxx_reset) */\n#define RET_TOOSMALL   -2\n\n/*\n * Contents of a conversion descriptor.\n */\nstruct conv_struct {\n  struct loop_funcs lfuncs;\n  /* Input (conversion multibyte -> unicode) */\n  int iindex;\n  struct mbtowc_funcs ifuncs;\n  state_t istate;\n  /* Output (conversion unicode -> multibyte) */\n  int oindex;\n  struct wctomb_funcs ofuncs;\n  int oflags;\n  state_t ostate;\n  /* Operation flags */\n  int transliterate;\n  int discard_ilseq;\n  #ifndef LIBICONV_PLUG\n  struct iconv_fallbacks fallbacks;\n  struct iconv_hooks hooks;\n  #endif\n};\n\n/*\n * Include all the converters.\n */\n\n#include \"ascii.h\"\n\n/* General multi-byte encodings */\n#include \"utf8.h\"\n#include \"ucs2.h\"\n#include \"ucs2be.h\"\n#include \"ucs2le.h\"\n#include \"ucs4.h\"\n#include \"ucs4be.h\"\n#include \"ucs4le.h\"\n#include \"utf16.h\"\n#include \"utf16be.h\"\n#include \"utf16le.h\"\n#include \"utf32.h\"\n#include \"utf32be.h\"\n#include \"utf32le.h\"\n#include \"utf7.h\"\n#include \"ucs2internal.h\"\n#include \"ucs2swapped.h\"\n#include \"ucs4internal.h\"\n#include \"ucs4swapped.h\"\n#include \"c99.h\"\n#include \"java.h\"\n\n/* 8-bit encodings */\n#include \"iso8859_1.h\"\n#include \"iso8859_2.h\"\n#include \"iso8859_3.h\"\n#include \"iso8859_4.h\"\n#include \"iso8859_5.h\"\n#include \"iso8859_6.h\"\n#include \"iso8859_7.h\"\n#include \"iso8859_8.h\"\n#include \"iso8859_9.h\"\n#include \"iso8859_10.h\"\n#include \"iso8859_11.h\"\n#include \"iso8859_13.h\"\n#include \"iso8859_14.h\"\n#include \"iso8859_15.h\"\n#include \"iso8859_16.h\"\n#include \"koi8_r.h\"\n#include \"koi8_u.h\"\n#include \"koi8_ru.h\"\n#include \"cp1250.h\"\n#include \"cp1251.h\"\n#include \"cp1252.h\"\n#include \"cp1253.h\"\n#include \"cp1254.h\"\n#include \"cp1255.h\"\n#include \"cp1256.h\"\n#include \"cp1257.h\"\n#include \"cp1258.h\"\n#include \"cp850.h\"\n#include \"cp862.h\"\n#include \"cp866.h\"\n#include \"cp1131.h\"\n#include \"mac_roman.h\"\n#include \"mac_centraleurope.h\"\n#include \"mac_iceland.h\"\n#include \"mac_croatian.h\"\n#include \"mac_romania.h\"\n#include \"mac_cyrillic.h\"\n#include \"mac_ukraine.h\"\n#include \"mac_greek.h\"\n#include \"mac_turkish.h\"\n#include \"mac_hebrew.h\"\n#include \"mac_arabic.h\"\n#include \"mac_thai.h\"\n#include \"hp_roman8.h\"\n#include \"nextstep.h\"\n#include \"armscii_8.h\"\n#include \"georgian_academy.h\"\n#include \"georgian_ps.h\"\n#include \"koi8_t.h\"\n#include \"pt154.h\"\n#include \"rk1048.h\"\n#include \"mulelao.h\"\n#include \"cp1133.h\"\n#include \"tis620.h\"\n#include \"cp874.h\"\n#include \"viscii.h\"\n#include \"tcvn.h\"\n\n/* CJK character sets [CCS = coded character set] [CJKV.INF chapter 3] */\n\ntypedef struct {\n  unsigned short indx; /* index into big table */\n  unsigned short used; /* bitmask of used entries */\n} Summary16;\n\n#include \"iso646_jp.h\"\n#include \"jisx0201.h\"\n#include \"jisx0208.h\"\n#include \"jisx0212.h\"\n\n#include \"iso646_cn.h\"\n#include \"gb2312.h\"\n#include \"isoir165.h\"\n/*#include \"gb12345.h\"*/\n#include \"gbk.h\"\n#include \"cns11643.h\"\n#include \"big5.h\"\n\n#include \"ksc5601.h\"\n#include \"johab_hangul.h\"\n\n/* CJK encodings [CES = character encoding scheme] [CJKV.INF chapter 4] */\n\n#include \"euc_jp.h\"\n#include \"sjis.h\"\n#include \"cp932.h\"\n#include \"iso2022_jp.h\"\n#include \"iso2022_jp1.h\"\n#include \"iso2022_jp2.h\"\n#include \"iso2022_jpms.h\"\n\n#include \"euc_cn.h\"\n#include \"ces_gbk.h\"\n#include \"cp936.h\"\n#include \"gb18030.h\"\n#include \"iso2022_cn.h\"\n#include \"iso2022_cnext.h\"\n#include \"hz.h\"\n#include \"euc_tw.h\"\n#include \"ces_big5.h\"\n#include \"cp950.h\"\n#include \"big5hkscs1999.h\"\n#include \"big5hkscs2001.h\"\n#include \"big5hkscs2004.h\"\n#include \"big5hkscs2008.h\"\n\n#include \"euc_kr.h\"\n#include \"cp949.h\"\n#include \"johab.h\"\n#include \"iso2022_kr.h\"\n\n/* Encodings used by system dependent locales. */\n\n#ifdef USE_AIX\n#include \"cp856.h\"\n#include \"cp922.h\"\n#include \"cp943.h\"\n#include \"cp1046.h\"\n#include \"cp1124.h\"\n#include \"cp1129.h\"\n#include \"cp1161.h\"\n#include \"cp1162.h\"\n#include \"cp1163.h\"\n#endif\n\n#ifdef USE_OSF1\n#include \"dec_kanji.h\"\n#include \"dec_hanyu.h\"\n#endif\n\n#ifdef USE_DOS\n#include \"cp437.h\"\n#include \"cp737.h\"\n#include \"cp775.h\"\n#include \"cp852.h\"\n#include \"cp853.h\"\n#include \"cp855.h\"\n#include \"cp857.h\"\n#include \"cp858.h\"\n#include \"cp860.h\"\n#include \"cp861.h\"\n#include \"cp863.h\"\n#include \"cp864.h\"\n#include \"cp865.h\"\n#include \"cp869.h\"\n#include \"cp1125.h\"\n#endif\n\n#ifdef USE_EXTRA\n#include \"euc_jisx0213.h\"\n#include \"shift_jisx0213.h\"\n#include \"iso2022_jp3.h\"\n#include \"big5_2003.h\"\n#include \"tds565.h\"\n#include \"atarist.h\"\n#include \"riscos1.h\"\n#endif\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1046.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1046\n */\n\nstatic const unsigned short cp1046_2uni[128] = {\n  /* 0x80 */\n  0xfe88, 0x00d7, 0x00f7, 0xf8f6, 0xf8f5, 0xf8f4, 0xf8f7, 0xfe71,\n  0x0088, 0x25a0, 0x2502, 0x2500, 0x2510, 0x250c, 0x2514, 0x2518,\n  /* 0x90 */\n  0xfe79, 0xfe7b, 0xfe7d, 0xfe7f, 0xfe77, 0xfe8a, 0xfef0, 0xfef3,\n  0xfef2, 0xfece, 0xfecf, 0xfed0, 0xfef6, 0xfef8, 0xfefa, 0xfefc,\n  /* 0xa0 */\n  0x00a0, 0xf8fa, 0xf8f9, 0xf8f8, 0x00a4, 0xf8fb, 0xfe8b, 0xfe91,\n  0xfe97, 0xfe9b, 0xfe9f, 0xfea3, 0x060c, 0x00ad, 0xfea7, 0xfeb3,\n  /* 0xb0 */\n  0x0660, 0x0661, 0x0662, 0x0663, 0x0664, 0x0665, 0x0666, 0x0667,\n  0x0668, 0x0669, 0xfeb7, 0x061b, 0xfebb, 0xfebf, 0xfeca, 0x061f,\n  /* 0xc0 */\n  0xfecb, 0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627,\n  0x0628, 0x0629, 0x062a, 0x062b, 0x062c, 0x062d, 0x062e, 0x062f,\n  /* 0xd0 */\n  0x0630, 0x0631, 0x0632, 0x0633, 0x0634, 0x0635, 0x0636, 0x0637,\n  0xfec7, 0x0639, 0x063a, 0xfecc, 0xfe82, 0xfe84, 0xfe8e, 0xfed3,\n  /* 0xe0 */\n  0x0640, 0x0641, 0x0642, 0x0643, 0x0644, 0x0645, 0x0646, 0x0647,\n  0x0648, 0x0649, 0x064a, 0x064b, 0x064c, 0x064d, 0x064e, 0x064f,\n  /* 0xf0 */\n  0x0650, 0x0651, 0x0652, 0xfed7, 0xfedb, 0xfedf, 0xf8fc, 0xfef5,\n  0xfef7, 0xfef9, 0xfefb, 0xfee3, 0xfee7, 0xfeec, 0xfee9, 0xfffd,\n};\n\nstatic int\ncp1046_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp1046_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp1046_page00[112] = {\n  0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xa0, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, /* 0xf0-0xf7 */\n};\nstatic const unsigned char cp1046_page06[104] = {\n  0x00, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0xbf, /* 0x18-0x1f */\n  0x00, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x20-0x27 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x28-0x2f */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0x30-0x37 */\n  0x00, 0xd9, 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x40-0x47 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x48-0x4f */\n  0xf0, 0xf1, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0x60-0x67 */\n  0xb8, 0xb9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n};\nstatic const unsigned char cp1046_page25[32] = {\n  0x8b, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x8c, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n};\nstatic const unsigned char cp1046_pagef8[16] = {\n  0x00, 0x00, 0x00, 0x00, 0x85, 0x84, 0x83, 0x86, /* 0xf0-0xf7 */\n  0xa3, 0xa2, 0xa1, 0xa5, 0xf6, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char cp1046_pagefe[144] = {\n  0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x94, /* 0x70-0x77 */\n  0x00, 0x90, 0x00, 0x91, 0x00, 0x92, 0x00, 0x93, /* 0x78-0x7f */\n  0x00, 0x00, 0xdc, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x80, 0x00, 0x95, 0xa6, 0x00, 0x00, 0xde, 0x00, /* 0x88-0x8f */\n  0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0xaa, /* 0x98-0x9f */\n  0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xae, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0xba, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xbc, 0x00, 0x00, 0x00, 0xbd, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, /* 0xc0-0xc7 */\n  0x00, 0x00, 0xbe, 0xc0, 0xdb, 0x00, 0x99, 0x9a, /* 0xc8-0xcf */\n  0x9b, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0xf3, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xf5, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0xfb, 0x00, 0x00, 0x00, 0xfc, /* 0xe0-0xe7 */\n  0x00, 0xfe, 0x00, 0x00, 0xfd, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x96, 0x00, 0x98, 0x97, 0x00, 0xf7, 0x9c, 0xf8, /* 0xf0-0xf7 */\n  0x9d, 0xf9, 0x9e, 0xfa, 0x9f, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\n\nstatic int\ncp1046_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x0088 && wc < 0x00f8)\n    c = cp1046_page00[wc-0x0088];\n  else if (wc >= 0x0608 && wc < 0x0670)\n    c = cp1046_page06[wc-0x0608];\n  else if (wc >= 0x2500 && wc < 0x2520)\n    c = cp1046_page25[wc-0x2500];\n  else if (wc == 0x25a0)\n    c = 0x89;\n  else if (wc >= 0xf8f0 && wc < 0xf900)\n    c = cp1046_pagef8[wc-0xf8f0];\n  else if (wc >= 0xfe70 && wc < 0xff00)\n    c = cp1046_pagefe[wc-0xfe70];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1124.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1124\n */\n\nstatic const unsigned short cp1124_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x0401, 0x0402, 0x0490, 0x0404, 0x0405, 0x0406, 0x0407,\n  0x0408, 0x0409, 0x040a, 0x040b, 0x040c, 0x00ad, 0x040e, 0x040f,\n  /* 0xb0 */\n  0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,\n  0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f,\n  /* 0xc0 */\n  0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,\n  0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f,\n  /* 0xd0 */\n  0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,\n  0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f,\n  /* 0xe0 */\n  0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,\n  0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f,\n  /* 0xf0 */\n  0x2116, 0x0451, 0x0452, 0x0491, 0x0454, 0x0455, 0x0456, 0x0457,\n  0x0458, 0x0459, 0x045a, 0x045b, 0x045c, 0x00a7, 0x045e, 0x045f,\n};\n\nstatic int\ncp1124_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp1124_2uni[c-0xa0];\n  return 1;\n}\n\nstatic const unsigned char cp1124_page00[16] = {\n  0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfd, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, /* 0xa8-0xaf */\n};\nstatic const unsigned char cp1124_page04[152] = {\n  0x00, 0xa1, 0xa2, 0x00, 0xa4, 0xa5, 0xa6, 0xa7, /* 0x00-0x07 */\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0x00, 0xae, 0xaf, /* 0x08-0x0f */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0x10-0x17 */\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, /* 0x18-0x1f */\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x20-0x27 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x28-0x2f */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0x30-0x37 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, /* 0x38-0x3f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x40-0x47 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x48-0x4f */\n  0x00, 0xf1, 0xf2, 0x00, 0xf4, 0xf5, 0xf6, 0xf7, /* 0x50-0x57 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0x00, 0xfe, 0xff, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xa3, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\n\nstatic int\ncp1124_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00b0)\n    c = cp1124_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x0498)\n    c = cp1124_page04[wc-0x0400];\n  else if (wc == 0x2116)\n    c = 0xf0;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1125.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1125\n */\n\nstatic const unsigned short cp1125_2uni[80] = {\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,\n  0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567,\n  /* 0xd0 */\n  0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b,\n  0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580,\n  /* 0xe0 */\n  0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,\n  0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f,\n  /* 0xf0 */\n  0x0401, 0x0451, 0x0490, 0x0491, 0x0404, 0x0454, 0x0406, 0x0456,\n  0x0407, 0x0457, 0x00b7, 0x221a, 0x2116, 0x00a4, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp1125_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else if (c < 0xb0)\n    *pwc = (ucs4_t) c + 0x0390;\n  else\n    *pwc = (ucs4_t) cp1125_2uni[c-0xb0];\n  return 1;\n}\n\nstatic const unsigned char cp1125_page00[24] = {\n  0xff, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, /* 0xb0-0xb7 */\n};\nstatic const unsigned char cp1125_page04[152] = {\n  0x00, 0xf0, 0x00, 0x00, 0xf4, 0x00, 0xf6, 0xf8, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /* 0x10-0x17 */\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* 0x18-0x1f */\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, /* 0x20-0x27 */\n  0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, /* 0x28-0x2f */\n  0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, /* 0x30-0x37 */\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, /* 0x38-0x3f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x40-0x47 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x48-0x4f */\n  0x00, 0xf1, 0x00, 0x00, 0xf5, 0x00, 0xf7, 0xf9, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xf2, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char cp1125_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0xd5, 0xd6, 0xc9, 0xb8, 0xb7, 0xbb, /* 0x50-0x57 */\n  0xd4, 0xd3, 0xc8, 0xbe, 0xbd, 0xbc, 0xc6, 0xc7, /* 0x58-0x5f */\n  0xcc, 0xb5, 0xb6, 0xb9, 0xd1, 0xd2, 0xcb, 0xcf, /* 0x60-0x67 */\n  0xd0, 0xca, 0xd8, 0xd7, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xde, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp1125_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00b8)\n    c = cp1125_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x0498)\n    c = cp1125_page04[wc-0x0400];\n  else if (wc == 0x2116)\n    c = 0xfc;\n  else if (wc == 0x221a)\n    c = 0xfb;\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp1125_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1129.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1129\n */\n\nstatic const unsigned short cp1129_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x00a1, 0x00a2, 0x00a3, 0x00a4, 0x00a5, 0x00a6, 0x00a7,\n  0x0153, 0x00a9, 0x00aa, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00af,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x0178, 0x00b5, 0x00b6, 0x00b7,\n  0x0152, 0x00b9, 0x00ba, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00bf,\n  /* 0xc0 */\n  0x00c0, 0x00c1, 0x00c2, 0x0102, 0x00c4, 0x00c5, 0x00c6, 0x00c7,\n  0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x0300, 0x00cd, 0x00ce, 0x00cf,\n  /* 0xd0 */\n  0x0110, 0x00d1, 0x0309, 0x00d3, 0x00d4, 0x01a0, 0x00d6, 0x00d7,\n  0x00d8, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x01af, 0x0303, 0x00df,\n  /* 0xe0 */\n  0x00e0, 0x00e1, 0x00e2, 0x0103, 0x00e4, 0x00e5, 0x00e6, 0x00e7,\n  0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x0301, 0x00ed, 0x00ee, 0x00ef,\n  /* 0xf0 */\n  0x0111, 0x00f1, 0x0323, 0x00f3, 0x00f4, 0x01a1, 0x00f6, 0x00f7,\n  0x00f8, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x01b0, 0x20ab, 0x00ff,\n};\n\nstatic int\ncp1129_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp1129_2uni[c-0xa0];\n  return 1;\n}\n\nstatic const unsigned char cp1129_page00[272] = {\n  0x00, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0xb2, 0xb3, 0x00, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0x00, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, /* 0xb8-0xbf */\n  0xc0, 0xc1, 0xc2, 0x00, 0xc4, 0xc5, 0xc6, 0xc7, /* 0xc0-0xc7 */\n  0xc8, 0xc9, 0xca, 0xcb, 0x00, 0xcd, 0xce, 0xcf, /* 0xc8-0xcf */\n  0x00, 0xd1, 0x00, 0xd3, 0xd4, 0x00, 0xd6, 0xd7, /* 0xd0-0xd7 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0x00, 0x00, 0xdf, /* 0xd8-0xdf */\n  0xe0, 0xe1, 0xe2, 0x00, 0xe4, 0xe5, 0xe6, 0xe7, /* 0xe0-0xe7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0x00, 0xed, 0xee, 0xef, /* 0xe8-0xef */\n  0x00, 0xf1, 0x00, 0xf3, 0xf4, 0x00, 0xf6, 0xf7, /* 0xf0-0xf7 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0x00, 0x00, 0xff, /* 0xf8-0xff */\n  /* 0x0100 */\n  0x00, 0x00, 0xc3, 0xe3, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xd0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0xb8, 0xa8, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xd5, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, /* 0xa8-0xaf */\n  0xfd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n};\nstatic const unsigned char cp1129_page03[40] = {\n  0xcc, 0xec, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0xf2, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\n\nstatic int\ncp1129_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a8) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a8 && wc < 0x01b8)\n    c = cp1129_page00[wc-0x00a8];\n  else if (wc >= 0x0300 && wc < 0x0328)\n    c = cp1129_page03[wc-0x0300];\n  else if (wc == 0x20ab)\n    c = 0xfe;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1131.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1131\n */\n\nstatic const unsigned short cp1131_2uni[128] = {\n  /* 0x80 */\n  0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,\n  0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f,\n  /* 0x90 */\n  0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,\n  0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f,\n  /* 0xa0 */\n  0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,\n  0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,\n  0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567,\n  /* 0xd0 */\n  0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b,\n  0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580,\n  /* 0xe0 */\n  0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,\n  0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f,\n  /* 0xf0 */\n  0x0401, 0x0451, 0x0404, 0x0454, 0x0407, 0x0457, 0x040e, 0x045e,\n  0x0406, 0x0456, 0x00b7, 0x00a4, 0x0490, 0x0491, 0x2219, 0x00a0,\n};\n\nstatic int\ncp1131_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp1131_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp1131_page00[24] = {\n  0xff, 0x00, 0x00, 0x00, 0xfb, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, /* 0xb0-0xb7 */\n};\nstatic const unsigned char cp1131_page04[152] = {\n  0x00, 0xf0, 0x00, 0x00, 0xf2, 0x00, 0xf8, 0xf4, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0x00, /* 0x08-0x0f */\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /* 0x10-0x17 */\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* 0x18-0x1f */\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, /* 0x20-0x27 */\n  0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, /* 0x28-0x2f */\n  0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, /* 0x30-0x37 */\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, /* 0x38-0x3f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x40-0x47 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x48-0x4f */\n  0x00, 0xf1, 0x00, 0x00, 0xf3, 0x00, 0xf9, 0xf5, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xfc, 0xfd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char cp1131_page25[152] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0xd5, 0xd6, 0xc9, 0xb8, 0xb7, 0xbb, /* 0x50-0x57 */\n  0xd4, 0xd3, 0xc8, 0xbe, 0xbd, 0xbc, 0xc6, 0xc7, /* 0x58-0x5f */\n  0xcc, 0xb5, 0xb6, 0xb9, 0xd1, 0xd2, 0xcb, 0xcf, /* 0x60-0x67 */\n  0xd0, 0xca, 0xd8, 0xd7, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xde, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\n\nstatic int\ncp1131_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00b8)\n    c = cp1131_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x0498)\n    c = cp1131_page04[wc-0x0400];\n  else if (wc == 0x2219)\n    c = 0xfe;\n  else if (wc >= 0x2500 && wc < 0x2598)\n    c = cp1131_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1133.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * IBM-CP1133\n */\n\nstatic const unsigned short cp1133_2uni_1[64] = {\n  /* 0xa0 */\n  0x00a0, 0x0e81, 0x0e82, 0x0e84, 0x0e87, 0x0e88, 0x0eaa, 0x0e8a,\n  0x0e8d, 0x0e94, 0x0e95, 0x0e96, 0x0e97, 0x0e99, 0x0e9a, 0x0e9b,\n  /* 0xb0 */\n  0x0e9c, 0x0e9d, 0x0e9e, 0x0e9f, 0x0ea1, 0x0ea2, 0x0ea3, 0x0ea5,\n  0x0ea7, 0x0eab, 0x0ead, 0x0eae, 0xfffd, 0xfffd, 0xfffd, 0x0eaf,\n  /* 0xc0 */\n  0x0eb0, 0x0eb2, 0x0eb3, 0x0eb4, 0x0eb5, 0x0eb6, 0x0eb7, 0x0eb8,\n  0x0eb9, 0x0ebc, 0x0eb1, 0x0ebb, 0x0ebd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xd0 */\n  0x0ec0, 0x0ec1, 0x0ec2, 0x0ec3, 0x0ec4, 0x0ec8, 0x0ec9, 0x0eca,\n  0x0ecb, 0x0ecc, 0x0ecd, 0x0ec6, 0xfffd, 0x0edc, 0x0edd, 0x20ad,\n};\nstatic const unsigned short cp1133_2uni_2[16] = {\n  /* 0xf0 */\n  0x0ed0, 0x0ed1, 0x0ed2, 0x0ed3, 0x0ed4, 0x0ed5, 0x0ed6, 0x0ed7,\n  0x0ed8, 0x0ed9, 0xfffd, 0xfffd, 0x00a2, 0x00ac, 0x00a6, 0xfffd,\n};\n\nstatic int\ncp1133_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else if (c < 0xe0) {\n    unsigned short wc = cp1133_2uni_1[c-0xa0];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  else if (c < 0xf0) {\n  }\n  else {\n    unsigned short wc = cp1133_2uni_2[c-0xf0];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp1133_page00[16] = {\n  0xa0, 0x00, 0xfc, 0x00, 0x00, 0x00, 0xfe, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n};\nstatic const unsigned char cp1133_page0e[96] = {\n  0x00, 0xa1, 0xa2, 0x00, 0xa3, 0x00, 0x00, 0xa4, /* 0x80-0x87 */\n  0xa5, 0x00, 0xa7, 0x00, 0x00, 0xa8, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x00, 0x00, 0xa9, 0xaa, 0xab, 0xac, /* 0x90-0x97 */\n  0x00, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, /* 0x98-0x9f */\n  0x00, 0xb4, 0xb5, 0xb6, 0x00, 0xb7, 0x00, 0xb8, /* 0xa0-0xa7 */\n  0x00, 0x00, 0xa6, 0xb9, 0x00, 0xba, 0xbb, 0xbf, /* 0xa8-0xaf */\n  0xc0, 0xca, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, /* 0xb0-0xb7 */\n  0xc7, 0xc8, 0x00, 0xcb, 0xc9, 0xcc, 0x00, 0x00, /* 0xb8-0xbf */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0x00, 0xdb, 0x00, /* 0xc0-0xc7 */\n  0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0x00, 0x00, /* 0xc8-0xcf */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0xd0-0xd7 */\n  0xf8, 0xf9, 0x00, 0x00, 0xdd, 0xde, 0x00, 0x00, /* 0xd8-0xdf */\n};\n\nstatic int\ncp1133_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00b0)\n    c = cp1133_page00[wc-0x00a0];\n  else if (wc >= 0x0e80 && wc < 0x0ee0)\n    c = cp1133_page0e[wc-0x0e80];\n  else if (wc == 0x20ad)\n    c = 0xdf;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1161.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1161\n */\n\nstatic const unsigned short cp1161_2uni[96] = {\n  /* 0xa0 */\n  0x0e48, 0x0e01, 0x0e02, 0x0e03, 0x0e04, 0x0e05, 0x0e06, 0x0e07,\n  0x0e08, 0x0e09, 0x0e0a, 0x0e0b, 0x0e0c, 0x0e0d, 0x0e0e, 0x0e0f,\n  /* 0xb0 */\n  0x0e10, 0x0e11, 0x0e12, 0x0e13, 0x0e14, 0x0e15, 0x0e16, 0x0e17,\n  0x0e18, 0x0e19, 0x0e1a, 0x0e1b, 0x0e1c, 0x0e1d, 0x0e1e, 0x0e1f,\n  /* 0xc0 */\n  0x0e20, 0x0e21, 0x0e22, 0x0e23, 0x0e24, 0x0e25, 0x0e26, 0x0e27,\n  0x0e28, 0x0e29, 0x0e2a, 0x0e2b, 0x0e2c, 0x0e2d, 0x0e2e, 0x0e2f,\n  /* 0xd0 */\n  0x0e30, 0x0e31, 0x0e32, 0x0e33, 0x0e34, 0x0e35, 0x0e36, 0x0e37,\n  0x0e38, 0x0e39, 0x0e3a, 0x0e49, 0x0e4a, 0x0e4b, 0x20ac, 0x0e3f,\n  /* 0xe0 */\n  0x0e40, 0x0e41, 0x0e42, 0x0e43, 0x0e44, 0x0e45, 0x0e46, 0x0e47,\n  0x0e48, 0x0e49, 0x0e4a, 0x0e4b, 0x0e4c, 0x0e4d, 0x0e4e, 0x0e4f,\n  /* 0xf0 */\n  0x0e50, 0x0e51, 0x0e52, 0x0e53, 0x0e54, 0x0e55, 0x0e56, 0x0e57,\n  0x0e58, 0x0e59, 0x0e5a, 0x0e5b, 0x00a2, 0x00ac, 0x00a6, 0x00a0,\n};\n\nstatic int\ncp1161_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else if (c < 0xa0) {\n  }\n  else {\n    *pwc = (ucs4_t) cp1161_2uni[c-0xa0];\n    return 1;\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp1161_page00[16] = {\n  0xff, 0x00, 0xfc, 0x00, 0x00, 0x00, 0xfe, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n};\n\nstatic int\ncp1161_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00b0)\n    c = cp1161_page00[wc-0x00a0];\n  else if (wc >= 0x0e48 && wc < 0x0e4c)\n    c = wc-0x0d60;\n  else if (wc >= 0x0e00 && wc < 0x0e60)\n    c = cp874_page0e[wc-0x0e00];\n  else if (wc == 0x20ac)\n    c = 0xde;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1162.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1162\n */\n\nstatic int\ncp1162_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp874_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n    if (c < 0xa0) {\n      *pwc = (ucs4_t) c;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\ncp1162_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x0080 && wc < 0x00a0 && cp874_2uni[wc-0x0080] == 0xfffd)\n    c = wc;\n  else if (wc == 0x00a0)\n    c = 0xa0;\n  else if (wc >= 0x0e00 && wc < 0x0e60)\n    c = cp874_page0e[wc-0x0e00];\n  else if (wc >= 0x2010 && wc < 0x2028)\n    c = cp874_page20[wc-0x2010];\n  else if (wc == 0x20ac)\n    c = 0x80;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1163.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1163\n */\n\nstatic int\ncp1163_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0)\n    *pwc = (ucs4_t) c;\n  else if (c == 0xa4)\n    *pwc = 0x20ac;\n  else\n    *pwc = (ucs4_t) cp1129_2uni[c-0xa0];\n  return 1;\n}\n\nstatic const unsigned char cp1163_page20[8] = {\n  0x00, 0x00, 0x00, 0xfe, 0xa4, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n};\n\nstatic int\ncp1163_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0 || (wc < 0x00a8 && wc != 0x00a4) || wc == 0x00d0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a8 && wc < 0x01b8)\n    c = cp1129_page00[wc-0x00a8];\n  else if (wc >= 0x0300 && wc < 0x0328)\n    c = cp1129_page03[wc-0x0300];\n  else if (wc == 0x203e)\n    c = 0xaf;\n  else if (wc >= 0x20a8 && wc < 0x20b0)\n    c = cp1163_page20[wc-0x20a8];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1250.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1250\n */\n\nstatic const unsigned short cp1250_2uni[128] = {\n  /* 0x80 */\n  0x20ac, 0xfffd, 0x201a, 0xfffd, 0x201e, 0x2026, 0x2020, 0x2021,\n  0xfffd, 0x2030, 0x0160, 0x2039, 0x015a, 0x0164, 0x017d, 0x0179,\n  /* 0x90 */\n  0xfffd, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0xfffd, 0x2122, 0x0161, 0x203a, 0x015b, 0x0165, 0x017e, 0x017a,\n  /* 0xa0 */\n  0x00a0, 0x02c7, 0x02d8, 0x0141, 0x00a4, 0x0104, 0x00a6, 0x00a7,\n  0x00a8, 0x00a9, 0x015e, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x017b,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x02db, 0x0142, 0x00b4, 0x00b5, 0x00b6, 0x00b7,\n  0x00b8, 0x0105, 0x015f, 0x00bb, 0x013d, 0x02dd, 0x013e, 0x017c,\n  /* 0xc0 */\n  0x0154, 0x00c1, 0x00c2, 0x0102, 0x00c4, 0x0139, 0x0106, 0x00c7,\n  0x010c, 0x00c9, 0x0118, 0x00cb, 0x011a, 0x00cd, 0x00ce, 0x010e,\n  /* 0xd0 */\n  0x0110, 0x0143, 0x0147, 0x00d3, 0x00d4, 0x0150, 0x00d6, 0x00d7,\n  0x0158, 0x016e, 0x00da, 0x0170, 0x00dc, 0x00dd, 0x0162, 0x00df,\n  /* 0xe0 */\n  0x0155, 0x00e1, 0x00e2, 0x0103, 0x00e4, 0x013a, 0x0107, 0x00e7,\n  0x010d, 0x00e9, 0x0119, 0x00eb, 0x011b, 0x00ed, 0x00ee, 0x010f,\n  /* 0xf0 */\n  0x0111, 0x0144, 0x0148, 0x00f3, 0x00f4, 0x0151, 0x00f6, 0x00f7,\n  0x0159, 0x016f, 0x00fa, 0x0171, 0x00fc, 0x00fd, 0x0163, 0x02d9,\n};\n\nstatic int\ncp1250_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp1250_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp1250_page00[224] = {\n  0xa0, 0x00, 0x00, 0x00, 0xa4, 0x00, 0xa6, 0xa7, /* 0xa0-0xa7 */\n  0xa8, 0xa9, 0x00, 0xab, 0xac, 0xad, 0xae, 0x00, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0x00, 0x00, 0xb4, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0xb8, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0xc1, 0xc2, 0x00, 0xc4, 0x00, 0x00, 0xc7, /* 0xc0-0xc7 */\n  0x00, 0xc9, 0x00, 0xcb, 0x00, 0xcd, 0xce, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0xd3, 0xd4, 0x00, 0xd6, 0xd7, /* 0xd0-0xd7 */\n  0x00, 0x00, 0xda, 0x00, 0xdc, 0xdd, 0x00, 0xdf, /* 0xd8-0xdf */\n  0x00, 0xe1, 0xe2, 0x00, 0xe4, 0x00, 0x00, 0xe7, /* 0xe0-0xe7 */\n  0x00, 0xe9, 0x00, 0xeb, 0x00, 0xed, 0xee, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0xf3, 0xf4, 0x00, 0xf6, 0xf7, /* 0xf0-0xf7 */\n  0x00, 0x00, 0xfa, 0x00, 0xfc, 0xfd, 0x00, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0x00, 0x00, 0xc3, 0xe3, 0xa5, 0xb9, 0xc6, 0xe6, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xc8, 0xe8, 0xcf, 0xef, /* 0x08-0x0f */\n  0xd0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xca, 0xea, 0xcc, 0xec, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0xc5, 0xe5, 0x00, 0x00, 0xbc, 0xbe, 0x00, /* 0x38-0x3f */\n  0x00, 0xa3, 0xb3, 0xd1, 0xf1, 0x00, 0x00, 0xd2, /* 0x40-0x47 */\n  0xf2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xd5, 0xf5, 0x00, 0x00, 0xc0, 0xe0, 0x00, 0x00, /* 0x50-0x57 */\n  0xd8, 0xf8, 0x8c, 0x9c, 0x00, 0x00, 0xaa, 0xba, /* 0x58-0x5f */\n  0x8a, 0x9a, 0xde, 0xfe, 0x8d, 0x9d, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0xf9, /* 0x68-0x6f */\n  0xdb, 0xfb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x8f, 0x9f, 0xaf, 0xbf, 0x8e, 0x9e, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char cp1250_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0xa2, 0xff, 0x00, 0xb2, 0x00, 0xbd, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char cp1250_page20[48] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\n\nstatic int\ncp1250_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0180)\n    c = cp1250_page00[wc-0x00a0];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = cp1250_page02[wc-0x02c0];\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = cp1250_page20[wc-0x2010];\n  else if (wc == 0x20ac)\n    c = 0x80;\n  else if (wc == 0x2122)\n    c = 0x99;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1251.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1251\n */\n\nstatic const unsigned short cp1251_2uni[128] = {\n  /* 0x80 */\n  0x0402, 0x0403, 0x201a, 0x0453, 0x201e, 0x2026, 0x2020, 0x2021,\n  0x20ac, 0x2030, 0x0409, 0x2039, 0x040a, 0x040c, 0x040b, 0x040f,\n  /* 0x90 */\n  0x0452, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0xfffd, 0x2122, 0x0459, 0x203a, 0x045a, 0x045c, 0x045b, 0x045f,\n  /* 0xa0 */\n  0x00a0, 0x040e, 0x045e, 0x0408, 0x00a4, 0x0490, 0x00a6, 0x00a7,\n  0x0401, 0x00a9, 0x0404, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x0407,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x0406, 0x0456, 0x0491, 0x00b5, 0x00b6, 0x00b7,\n  0x0451, 0x2116, 0x0454, 0x00bb, 0x0458, 0x0405, 0x0455, 0x0457,\n  /* 0xc0 */\n  0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,\n  0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f,\n  /* 0xd0 */\n  0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,\n  0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f,\n  /* 0xe0 */\n  0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,\n  0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f,\n  /* 0xf0 */\n  0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,\n  0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f,\n};\n\nstatic int\ncp1251_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp1251_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp1251_page00[32] = {\n  0xa0, 0x00, 0x00, 0x00, 0xa4, 0x00, 0xa6, 0xa7, /* 0xa0-0xa7 */\n  0x00, 0xa9, 0x00, 0xab, 0xac, 0xad, 0xae, 0x00, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0x00, 0x00, 0x00, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char cp1251_page04[152] = {\n  0x00, 0xa8, 0x80, 0x81, 0xaa, 0xbd, 0xb2, 0xaf, /* 0x00-0x07 */\n  0xa3, 0x8a, 0x8c, 0x8e, 0x8d, 0x00, 0xa1, 0x8f, /* 0x08-0x0f */\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x10-0x17 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x18-0x1f */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0x20-0x27 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, /* 0x28-0x2f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x30-0x37 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x38-0x3f */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0x40-0x47 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff, /* 0x48-0x4f */\n  0x00, 0xb8, 0x90, 0x83, 0xba, 0xbe, 0xb3, 0xbf, /* 0x50-0x57 */\n  0xbc, 0x9a, 0x9c, 0x9e, 0x9d, 0x00, 0xa2, 0x9f, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xa5, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char cp1251_page20[48] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\n\nstatic int\ncp1251_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = cp1251_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x0498)\n    c = cp1251_page04[wc-0x0400];\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = cp1251_page20[wc-0x2010];\n  else if (wc == 0x20ac)\n    c = 0x88;\n  else if (wc == 0x2116)\n    c = 0xb9;\n  else if (wc == 0x2122)\n    c = 0x99;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1252.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1252\n */\n\nstatic const unsigned short cp1252_2uni[32] = {\n  /* 0x80 */\n  0x20ac, 0xfffd, 0x201a, 0x0192, 0x201e, 0x2026, 0x2020, 0x2021,\n  0x02c6, 0x2030, 0x0160, 0x2039, 0x0152, 0xfffd, 0x017d, 0xfffd,\n  /* 0x90 */\n  0xfffd, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0x02dc, 0x2122, 0x0161, 0x203a, 0x0153, 0xfffd, 0x017e, 0x0178,\n};\n\nstatic int\ncp1252_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80 || c >= 0xa0) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp1252_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp1252_page01[72] = {\n  0x00, 0x00, 0x8c, 0x9c, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x8a, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x9f, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x9e, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char cp1252_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char cp1252_page20[48] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\n\nstatic int\ncp1252_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = wc;\n  else if (wc >= 0x0150 && wc < 0x0198)\n    c = cp1252_page01[wc-0x0150];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = cp1252_page02[wc-0x02c0];\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = cp1252_page20[wc-0x2010];\n  else if (wc == 0x20ac)\n    c = 0x80;\n  else if (wc == 0x2122)\n    c = 0x99;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1253.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1253\n */\n\nstatic const unsigned short cp1253_2uni[128] = {\n  /* 0x80 */\n  0x20ac, 0xfffd, 0x201a, 0x0192, 0x201e, 0x2026, 0x2020, 0x2021,\n  0xfffd, 0x2030, 0xfffd, 0x2039, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x90 */\n  0xfffd, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0xfffd, 0x2122, 0xfffd, 0x203a, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xa0 */\n  0x00a0, 0x0385, 0x0386, 0x00a3, 0x00a4, 0x00a5, 0x00a6, 0x00a7,\n  0x00a8, 0x00a9, 0xfffd, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x2015,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x0384, 0x00b5, 0x00b6, 0x00b7,\n  0x0388, 0x0389, 0x038a, 0x00bb, 0x038c, 0x00bd, 0x038e, 0x038f,\n  /* 0xc0 */\n  0x0390, 0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396, 0x0397,\n  0x0398, 0x0399, 0x039a, 0x039b, 0x039c, 0x039d, 0x039e, 0x039f,\n  /* 0xd0 */\n  0x03a0, 0x03a1, 0xfffd, 0x03a3, 0x03a4, 0x03a5, 0x03a6, 0x03a7,\n  0x03a8, 0x03a9, 0x03aa, 0x03ab, 0x03ac, 0x03ad, 0x03ae, 0x03af,\n  /* 0xe0 */\n  0x03b0, 0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7,\n  0x03b8, 0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf,\n  /* 0xf0 */\n  0x03c0, 0x03c1, 0x03c2, 0x03c3, 0x03c4, 0x03c5, 0x03c6, 0x03c7,\n  0x03c8, 0x03c9, 0x03ca, 0x03cb, 0x03cc, 0x03cd, 0x03ce, 0xfffd,\n};\n\nstatic int\ncp1253_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp1253_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp1253_page00[32] = {\n  0xa0, 0x00, 0x00, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, /* 0xa0-0xa7 */\n  0xa8, 0xa9, 0x00, 0xab, 0xac, 0xad, 0xae, 0x00, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0xb2, 0xb3, 0x00, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xbb, 0x00, 0xbd, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char cp1253_page03[80] = {\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0xa1, 0xa2, 0x00, /* 0x80-0x87 */\n  0xb8, 0xb9, 0xba, 0x00, 0xbc, 0x00, 0xbe, 0xbf, /* 0x88-0x8f */\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x90-0x97 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x98-0x9f */\n  0xd0, 0xd1, 0x00, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0xa0-0xa7 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, /* 0xa8-0xaf */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0xb0-0xb7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0xb8-0xbf */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0xc0-0xc7 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0x00, /* 0xc8-0xcf */\n};\nstatic const unsigned char cp1253_page20[48] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0xaf, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\n\nstatic int\ncp1253_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = cp1253_page00[wc-0x00a0];\n  else if (wc == 0x0192)\n    c = 0x83;\n  else if (wc >= 0x0380 && wc < 0x03d0)\n    c = cp1253_page03[wc-0x0380];\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = cp1253_page20[wc-0x2010];\n  else if (wc == 0x20ac)\n    c = 0x80;\n  else if (wc == 0x2122)\n    c = 0x99;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1254.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1254\n */\n\nstatic const unsigned short cp1254_2uni_1[32] = {\n  /* 0x80 */\n  0x20ac, 0xfffd, 0x201a, 0x0192, 0x201e, 0x2026, 0x2020, 0x2021,\n  0x02c6, 0x2030, 0x0160, 0x2039, 0x0152, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x90 */\n  0xfffd, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0x02dc, 0x2122, 0x0161, 0x203a, 0x0153, 0xfffd, 0xfffd, 0x0178,\n};\nstatic const unsigned short cp1254_2uni_2[16] = {\n  /* 0xd0 */\n  0x011e, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x00d7,\n  0x00d8, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x0130, 0x015e, 0x00df,\n};\nstatic const unsigned short cp1254_2uni_3[16] = {\n  /* 0xf0 */\n  0x011f, 0x00f1, 0x00f2, 0x00f3, 0x00f4, 0x00f5, 0x00f6, 0x00f7,\n  0x00f8, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x0131, 0x015f, 0x00ff,\n};\n\nstatic int\ncp1254_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else if (c < 0xa0) {\n    unsigned short wc = cp1254_2uni_1[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  else if (c < 0xd0) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else if (c < 0xe0) {\n    *pwc = (ucs4_t) cp1254_2uni_2[c-0xd0];\n    return 1;\n  }\n  else if (c < 0xf0) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    *pwc = (ucs4_t) cp1254_2uni_3[c-0xf0];\n    return 1;\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp1254_page00[48] = {\n  0x00, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0xd0-0xd7 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0x00, 0x00, 0xdf, /* 0xd8-0xdf */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0xe0-0xe7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0xe8-0xef */\n  0x00, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0xf0-0xf7 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0x00, 0x00, 0xff, /* 0xf8-0xff */\n};\nstatic const unsigned char cp1254_page01[128] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0xf0, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0xdd, 0xfd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x8c, 0x9c, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0xfe, /* 0x58-0x5f */\n  0x8a, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char cp1254_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char cp1254_page20[48] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\n\nstatic int\ncp1254_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00d0)\n    c = wc;\n  else if (wc >= 0x00d0 && wc < 0x0100)\n    c = cp1254_page00[wc-0x00d0];\n  else if (wc >= 0x0118 && wc < 0x0198)\n    c = cp1254_page01[wc-0x0118];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = cp1254_page02[wc-0x02c0];\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = cp1254_page20[wc-0x2010];\n  else if (wc == 0x20ac)\n    c = 0x80;\n  else if (wc == 0x2122)\n    c = 0x99;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1255.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2004, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1255\n */\n\n#include \"flushwc.h\"\n\n/* Combining characters used in Hebrew encoding CP1255. */\n\n/* Relevant combining characters:\n   0x05b4, 0x05b7, 0x05b8, 0x05b9, 0x05bc, 0x05bf, 0x05c1, 0x05c2. */\n\n/* Composition tables for each of the relevant combining characters. */\nstatic const struct { unsigned short base; unsigned short composed; } cp1255_comp_table_data[] = {\n#define cp1255_comp_table05b4_idx 0\n#define cp1255_comp_table05b4_len 1\n  { 0x05D9, 0xFB1D },\n#define cp1255_comp_table05b7_idx (cp1255_comp_table05b4_idx+cp1255_comp_table05b4_len)\n#define cp1255_comp_table05b7_len 2\n  { 0x05D0, 0xFB2E },\n  { 0x05F2, 0xFB1F },\n#define cp1255_comp_table05b8_idx (cp1255_comp_table05b7_idx+cp1255_comp_table05b7_len)\n#define cp1255_comp_table05b8_len 1\n  { 0x05D0, 0xFB2F },\n#define cp1255_comp_table05b9_idx (cp1255_comp_table05b8_idx+cp1255_comp_table05b8_len)\n#define cp1255_comp_table05b9_len 1\n  { 0x05D5, 0xFB4B },\n#define cp1255_comp_table05bc_idx (cp1255_comp_table05b9_idx+cp1255_comp_table05b9_len)\n#define cp1255_comp_table05bc_len 24\n  { 0x05D0, 0xFB30 },\n  { 0x05D1, 0xFB31 },\n  { 0x05D2, 0xFB32 },\n  { 0x05D3, 0xFB33 },\n  { 0x05D4, 0xFB34 },\n  { 0x05D5, 0xFB35 },\n  { 0x05D6, 0xFB36 },\n  { 0x05D8, 0xFB38 },\n  { 0x05D9, 0xFB39 },\n  { 0x05DA, 0xFB3A },\n  { 0x05DB, 0xFB3B },\n  { 0x05DC, 0xFB3C },\n  { 0x05DE, 0xFB3E },\n  { 0x05E0, 0xFB40 },\n  { 0x05E1, 0xFB41 },\n  { 0x05E3, 0xFB43 },\n  { 0x05E4, 0xFB44 },\n  { 0x05E6, 0xFB46 },\n  { 0x05E7, 0xFB47 },\n  { 0x05E8, 0xFB48 },\n  { 0x05E9, 0xFB49 },\n  { 0x05EA, 0xFB4A },\n  { 0xFB2A, 0xFB2C },\n  { 0xFB2B, 0xFB2D },\n#define cp1255_comp_table05bf_idx (cp1255_comp_table05bc_idx+cp1255_comp_table05bc_len)\n#define cp1255_comp_table05bf_len 3\n  { 0x05D1, 0xFB4C },\n  { 0x05DB, 0xFB4D },\n  { 0x05E4, 0xFB4E },\n#define cp1255_comp_table05c1_idx (cp1255_comp_table05bf_idx+cp1255_comp_table05bf_len)\n#define cp1255_comp_table05c1_len 2\n  { 0x05E9, 0xFB2A },\n  { 0xFB49, 0xFB2C },\n#define cp1255_comp_table05c2_idx (cp1255_comp_table05c1_idx+cp1255_comp_table05c1_len)\n#define cp1255_comp_table05c2_len 2\n  { 0x05E9, 0xFB2B },\n  { 0xFB49, 0xFB2D },\n};\nstatic const struct { unsigned int len; unsigned int idx; } cp1255_comp_table[] = {\n  { cp1255_comp_table05b4_len, cp1255_comp_table05b4_idx },\n  { cp1255_comp_table05b7_len, cp1255_comp_table05b7_idx },\n  { cp1255_comp_table05b8_len, cp1255_comp_table05b8_idx },\n  { cp1255_comp_table05b9_len, cp1255_comp_table05b9_idx },\n  { cp1255_comp_table05bc_len, cp1255_comp_table05bc_idx },\n  { cp1255_comp_table05bf_len, cp1255_comp_table05bf_idx },\n  { cp1255_comp_table05c1_len, cp1255_comp_table05c1_idx },\n  { cp1255_comp_table05c2_len, cp1255_comp_table05c2_idx },\n};\n\n/* Decomposition table for the relevant Unicode characters. */\nstruct cp1255_decomp { unsigned short composed; unsigned short base; int comb1 : 8; signed int comb2 : 8; };\nstatic const struct cp1255_decomp cp1255_decomp_table[] = {\n  { 0xFB1D, 0x05D9, 0, -1 },\n  { 0xFB1F, 0x05F2, 1, -1 },\n  { 0xFB2A, 0x05E9, 6, -1 },\n  { 0xFB2B, 0x05E9, 7, -1 },\n  { 0xFB2C, 0x05E9, 4, 6 },\n  { 0xFB2D, 0x05E9, 4, 7 },\n  { 0xFB2E, 0x05D0, 1, -1 },\n  { 0xFB2F, 0x05D0, 2, -1 },\n  { 0xFB30, 0x05D0, 4, -1 },\n  { 0xFB31, 0x05D1, 4, -1 },\n  { 0xFB32, 0x05D2, 4, -1 },\n  { 0xFB33, 0x05D3, 4, -1 },\n  { 0xFB34, 0x05D4, 4, -1 },\n  { 0xFB35, 0x05D5, 4, -1 },\n  { 0xFB36, 0x05D6, 4, -1 },\n  { 0xFB38, 0x05D8, 4, -1 },\n  { 0xFB39, 0x05D9, 4, -1 },\n  { 0xFB3A, 0x05DA, 4, -1 },\n  { 0xFB3B, 0x05DB, 4, -1 },\n  { 0xFB3C, 0x05DC, 4, -1 },\n  { 0xFB3E, 0x05DE, 4, -1 },\n  { 0xFB40, 0x05E0, 4, -1 },\n  { 0xFB41, 0x05E1, 4, -1 },\n  { 0xFB43, 0x05E3, 4, -1 },\n  { 0xFB44, 0x05E4, 4, -1 },\n  { 0xFB46, 0x05E6, 4, -1 },\n  { 0xFB47, 0x05E7, 4, -1 },\n  { 0xFB48, 0x05E8, 4, -1 },\n  { 0xFB49, 0x05E9, 4, -1 },\n  { 0xFB4A, 0x05EA, 4, -1 },\n  { 0xFB4B, 0x05D5, 3, -1 },\n  { 0xFB4C, 0x05D1, 5, -1 },\n  { 0xFB4D, 0x05DB, 5, -1 },\n  { 0xFB4E, 0x05E4, 5, -1 },\n};\n\nstatic const unsigned char cp1255_comb_table[] = {\n  0xc4, 0xc7, 0xc8, 0xc9, 0xcc, 0xcf, 0xd1, 0xd2,\n};\n\nstatic const unsigned short cp1255_2uni[128] = {\n  /* 0x80 */\n  0x20ac, 0xfffd, 0x201a, 0x0192, 0x201e, 0x2026, 0x2020, 0x2021,\n  0x02c6, 0x2030, 0xfffd, 0x2039, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x90 */\n  0xfffd, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0x02dc, 0x2122, 0xfffd, 0x203a, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xa0 */\n  0x00a0, 0x00a1, 0x00a2, 0x00a3, 0x20aa, 0x00a5, 0x00a6, 0x00a7,\n  0x00a8, 0x00a9, 0x00d7, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00af,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x00b4, 0x00b5, 0x00b6, 0x00b7,\n  0x00b8, 0x00b9, 0x00f7, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00bf,\n  /* 0xc0 */\n  0x05b0, 0x05b1, 0x05b2, 0x05b3, 0x05b4, 0x05b5, 0x05b6, 0x05b7,\n  0x05b8, 0x05b9, 0x05ba, 0x05bb, 0x05bc, 0x05bd, 0x05be, 0x05bf,\n  /* 0xd0 */\n  0x05c0, 0x05c1, 0x05c2, 0x05c3, 0x05f0, 0x05f1, 0x05f2, 0x05f3,\n  0x05f4, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xe0 */\n  0x05d0, 0x05d1, 0x05d2, 0x05d3, 0x05d4, 0x05d5, 0x05d6, 0x05d7,\n  0x05d8, 0x05d9, 0x05da, 0x05db, 0x05dc, 0x05dd, 0x05de, 0x05df,\n  /* 0xf0 */\n  0x05e0, 0x05e1, 0x05e2, 0x05e3, 0x05e4, 0x05e5, 0x05e6, 0x05e7,\n  0x05e8, 0x05e9, 0x05ea, 0xfffd, 0xfffd, 0x200e, 0x200f, 0xfffd,\n};\n\n/* In the CP1255 to Unicode direction, the state contains a buffered\n   character, or 0 if none. */\n\nstatic int\ncp1255_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  unsigned short wc;\n  unsigned short last_wc;\n  if (c < 0x80) {\n    wc = c;\n  } else {\n    wc = cp1255_2uni[c-0x80];\n    if (wc == 0xfffd)\n      return RET_ILSEQ;\n  }\n  last_wc = conv->istate;\n  if (last_wc) {\n    if (wc >= 0x05b0 && wc < 0x05c5) {\n      /* See whether last_wc and wc can be combined. */\n      unsigned int k;\n      unsigned int i1, i2;\n      switch (wc) {\n        case 0x05b4: k = 0; break;\n        case 0x05b7: k = 1; break;\n        case 0x05b8: k = 2; break;\n        case 0x05b9: k = 3; break;\n        case 0x05bc: k = 4; break;\n        case 0x05bf: k = 5; break;\n        case 0x05c1: k = 6; break;\n        case 0x05c2: k = 7; break;\n        default: goto not_combining;\n      }\n      i1 = cp1255_comp_table[k].idx;\n      i2 = i1 + cp1255_comp_table[k].len-1;\n      if (last_wc >= cp1255_comp_table_data[i1].base\n          && last_wc <= cp1255_comp_table_data[i2].base) {\n        unsigned int i;\n        for (;;) {\n          i = (i1+i2)>>1;\n          if (last_wc == cp1255_comp_table_data[i].base)\n            break;\n          if (last_wc < cp1255_comp_table_data[i].base) {\n            if (i1 == i)\n              goto not_combining;\n            i2 = i;\n          } else {\n            if (i1 != i)\n              i1 = i;\n            else {\n              i = i2;\n              if (last_wc == cp1255_comp_table_data[i].base)\n                break;\n              goto not_combining;\n            }\n          }\n        }\n        last_wc = cp1255_comp_table_data[i].composed;\n        if (last_wc == 0xfb2a || last_wc == 0xfb2b || last_wc == 0xfb49) {\n          /* Buffer the combined character. */\n          conv->istate = last_wc;\n          return RET_TOOFEW(1);\n        } else {\n          /* Output the combined character. */\n          conv->istate = 0;\n          *pwc = (ucs4_t) last_wc;\n          return 1;\n        }\n      }\n    }\n  not_combining:\n    /* Output the buffered character. */\n    conv->istate = 0;\n    *pwc = (ucs4_t) last_wc;\n    return 0; /* Don't advance the input pointer. */\n  }\n  if ((wc >= 0x05d0 && wc <= 0x05ea && ((0x07db5f7f >> (wc - 0x05d0)) & 1))\n      || wc == 0x05f2) {\n    /* wc is a possible match in cp1255_comp_table_data. Buffer it. */\n    conv->istate = wc;\n    return RET_TOOFEW(1);\n  } else {\n    /* Output wc immediately. */\n    *pwc = (ucs4_t) wc;\n    return 1;\n  }\n}\n\n#define cp1255_flushwc normal_flushwc\n\nstatic const unsigned char cp1255_page00[88] = {\n  0xa0, 0xa1, 0xa2, 0xa3, 0x00, 0xa5, 0xa6, 0xa7, /* 0xa0-0xa7 */\n  0xa8, 0xa9, 0x00, 0xab, 0xac, 0xad, 0xae, 0xaf, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0xb8, 0xb9, 0x00, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, /* 0xf0-0xf7 */\n};\nstatic const unsigned char cp1255_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char cp1255_page05[72] = {\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0xb0-0xb7 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0xb8-0xbf */\n  0xd0, 0xd1, 0xd2, 0xd3, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0xd0-0xd7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0xd8-0xdf */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0xe0-0xe7 */\n  0xf8, 0xf9, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0x00, 0x00, 0x00, /* 0xf0-0xf7 */\n};\nstatic const unsigned char cp1255_page20[56] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfd, 0xfe, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\n\nstatic int\ncp1255_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00f8)\n    c = cp1255_page00[wc-0x00a0];\n  else if (wc == 0x0192)\n    c = 0x83;\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = cp1255_page02[wc-0x02c0];\n  else if (wc >= 0x05b0 && wc < 0x05f8)\n    c = cp1255_page05[wc-0x05b0];\n  else if (wc >= 0x2008 && wc < 0x2040)\n    c = cp1255_page20[wc-0x2008];\n  else if (wc == 0x20aa)\n    c = 0xa4;\n  else if (wc == 0x20ac)\n    c = 0x80;\n  else if (wc == 0x2122)\n    c = 0x99;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  /* Try canonical decomposition. */\n  {\n    /* Binary search through cp1255_decomp_table. */\n    unsigned int i1 = 0;\n    unsigned int i2 = sizeof(cp1255_decomp_table)/sizeof(cp1255_decomp_table[0])-1;\n    if (wc >= cp1255_decomp_table[i1].composed\n        && wc <= cp1255_decomp_table[i2].composed) {\n      unsigned int i;\n      for (;;) {\n        /* Here i2 - i1 > 0. */\n        i = (i1+i2)>>1;\n        if (wc == cp1255_decomp_table[i].composed)\n          break;\n        if (wc < cp1255_decomp_table[i].composed) {\n          if (i1 == i)\n            return RET_ILUNI;\n          /* Here i1 < i < i2. */\n          i2 = i;\n        } else {\n          /* Here i1 <= i < i2. */\n          if (i1 != i)\n            i1 = i;\n          else {\n            /* Here i2 - i1 = 1. */\n            i = i2;\n            if (wc == cp1255_decomp_table[i].composed)\n              break;\n            else\n              return RET_ILUNI;\n          }\n        }\n      }\n      /* Found a canonical decomposition. */\n      wc = cp1255_decomp_table[i].base;\n      /* wc is one of 0x05d0..0x05d6, 0x05d8..0x05dc, 0x05de, 0x05e0..0x05e1,\n         0x05e3..0x05e4, 0x05e6..0x05ea, 0x05f2. */\n      c = cp1255_page05[wc-0x05b0];\n      if (cp1255_decomp_table[i].comb2 < 0) {\n        if (n < 2)\n          return RET_TOOSMALL;\n        r[0] = c;\n        r[1] = cp1255_comb_table[cp1255_decomp_table[i].comb1];\n        return 2;\n      } else {\n        if (n < 3)\n          return RET_TOOSMALL;\n        r[0] = c;\n        r[1] = cp1255_comb_table[cp1255_decomp_table[i].comb1];\n        r[2] = cp1255_comb_table[cp1255_decomp_table[i].comb2];\n        return 3;\n      }\n    }\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1256.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1256\n */\n\nstatic const unsigned short cp1256_2uni[128] = {\n  /* 0x80 */\n  0x20ac, 0x067e, 0x201a, 0x0192, 0x201e, 0x2026, 0x2020, 0x2021,\n  0x02c6, 0x2030, 0x0679, 0x2039, 0x0152, 0x0686, 0x0698, 0x0688,\n  /* 0x90 */\n  0x06af, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0x06a9, 0x2122, 0x0691, 0x203a, 0x0153, 0x200c, 0x200d, 0x06ba,\n  /* 0xa0 */\n  0x00a0, 0x060c, 0x00a2, 0x00a3, 0x00a4, 0x00a5, 0x00a6, 0x00a7,\n  0x00a8, 0x00a9, 0x06be, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00af,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x00b4, 0x00b5, 0x00b6, 0x00b7,\n  0x00b8, 0x00b9, 0x061b, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x061f,\n  /* 0xc0 */\n  0x06c1, 0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627,\n  0x0628, 0x0629, 0x062a, 0x062b, 0x062c, 0x062d, 0x062e, 0x062f,\n  /* 0xd0 */\n  0x0630, 0x0631, 0x0632, 0x0633, 0x0634, 0x0635, 0x0636, 0x00d7,\n  0x0637, 0x0638, 0x0639, 0x063a, 0x0640, 0x0641, 0x0642, 0x0643,\n  /* 0xe0 */\n  0x00e0, 0x0644, 0x00e2, 0x0645, 0x0646, 0x0647, 0x0648, 0x00e7,\n  0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x0649, 0x064a, 0x00ee, 0x00ef,\n  /* 0xf0 */\n  0x064b, 0x064c, 0x064d, 0x064e, 0x00f4, 0x064f, 0x0650, 0x00f7,\n  0x0651, 0x00f9, 0x0652, 0x00fb, 0x00fc, 0x200e, 0x200f, 0x06d2,\n};\n\nstatic int\ncp1256_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp1256_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp1256_page00[96] = {\n  0xa0, 0x00, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, /* 0xa0-0xa7 */\n  0xa8, 0xa9, 0x00, 0xab, 0xac, 0xad, 0xae, 0xaf, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0xb8, 0xb9, 0x00, 0xbb, 0xbc, 0xbd, 0xbe, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd7, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0xe0, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x00, 0xe7, /* 0xe0-0xe7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0x00, 0x00, 0xee, 0xef, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0xf7, /* 0xf0-0xf7 */\n  0x00, 0xf9, 0x00, 0xfb, 0xfc, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char cp1256_page01[72] = {\n  0x00, 0x00, 0x8c, 0x9c, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char cp1256_page06[208] = {\n  0x00, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00, 0xbf, /* 0x18-0x1f */\n  0x00, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x20-0x27 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x28-0x2f */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd8, /* 0x30-0x37 */\n  0xd9, 0xda, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0xdc, 0xdd, 0xde, 0xdf, 0xe1, 0xe3, 0xe4, 0xe5, /* 0x40-0x47 */\n  0xe6, 0xec, 0xed, 0xf0, 0xf1, 0xf2, 0xf3, 0xf5, /* 0x48-0x4f */\n  0xf6, 0xf8, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x81, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x00, /* 0x80-0x87 */\n  0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0xaa, 0x00, /* 0xb8-0xbf */\n  0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n};\nstatic const unsigned char cp1256_page20[56] = {\n  0x00, 0x00, 0x00, 0x00, 0x9d, 0x9e, 0xfd, 0xfe, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\n\nstatic int\ncp1256_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = cp1256_page00[wc-0x00a0];\n  else if (wc >= 0x0150 && wc < 0x0198)\n    c = cp1256_page01[wc-0x0150];\n  else if (wc == 0x02c6)\n    c = 0x88;\n  else if (wc >= 0x0608 && wc < 0x06d8)\n    c = cp1256_page06[wc-0x0608];\n  else if (wc >= 0x2008 && wc < 0x2040)\n    c = cp1256_page20[wc-0x2008];\n  else if (wc == 0x20ac)\n    c = 0x80;\n  else if (wc == 0x2122)\n    c = 0x99;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1257.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1257\n */\n\nstatic const unsigned short cp1257_2uni[128] = {\n  /* 0x80 */\n  0x20ac, 0xfffd, 0x201a, 0xfffd, 0x201e, 0x2026, 0x2020, 0x2021,\n  0xfffd, 0x2030, 0xfffd, 0x2039, 0xfffd, 0x00a8, 0x02c7, 0x00b8,\n  /* 0x90 */\n  0xfffd, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0xfffd, 0x2122, 0xfffd, 0x203a, 0xfffd, 0x00af, 0x02db, 0xfffd,\n  /* 0xa0 */\n  0x00a0, 0xfffd, 0x00a2, 0x00a3, 0x00a4, 0xfffd, 0x00a6, 0x00a7,\n  0x00d8, 0x00a9, 0x0156, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00c6,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x00b4, 0x00b5, 0x00b6, 0x00b7,\n  0x00f8, 0x00b9, 0x0157, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00e6,\n  /* 0xc0 */\n  0x0104, 0x012e, 0x0100, 0x0106, 0x00c4, 0x00c5, 0x0118, 0x0112,\n  0x010c, 0x00c9, 0x0179, 0x0116, 0x0122, 0x0136, 0x012a, 0x013b,\n  /* 0xd0 */\n  0x0160, 0x0143, 0x0145, 0x00d3, 0x014c, 0x00d5, 0x00d6, 0x00d7,\n  0x0172, 0x0141, 0x015a, 0x016a, 0x00dc, 0x017b, 0x017d, 0x00df,\n  /* 0xe0 */\n  0x0105, 0x012f, 0x0101, 0x0107, 0x00e4, 0x00e5, 0x0119, 0x0113,\n  0x010d, 0x00e9, 0x017a, 0x0117, 0x0123, 0x0137, 0x012b, 0x013c,\n  /* 0xf0 */\n  0x0161, 0x0144, 0x0146, 0x00f3, 0x014d, 0x00f5, 0x00f6, 0x00f7,\n  0x0173, 0x0142, 0x015b, 0x016b, 0x00fc, 0x017c, 0x017e, 0x02d9,\n};\n\nstatic int\ncp1257_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp1257_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp1257_page00[224] = {\n  0xa0, 0x00, 0xa2, 0xa3, 0xa4, 0x00, 0xa6, 0xa7, /* 0xa0-0xa7 */\n  0x8d, 0xa9, 0x00, 0xab, 0xac, 0xad, 0xae, 0x9d, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0x8f, 0xb9, 0x00, 0xbb, 0xbc, 0xbd, 0xbe, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0xc4, 0xc5, 0xaf, 0x00, /* 0xc0-0xc7 */\n  0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0xd3, 0x00, 0xd5, 0xd6, 0xd7, /* 0xd0-0xd7 */\n  0xa8, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0xdf, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0xe4, 0xe5, 0xbf, 0x00, /* 0xe0-0xe7 */\n  0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0xf3, 0x00, 0xf5, 0xf6, 0xf7, /* 0xf0-0xf7 */\n  0xb8, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0xc2, 0xe2, 0x00, 0x00, 0xc0, 0xe0, 0xc3, 0xe3, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xc8, 0xe8, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0xc7, 0xe7, 0x00, 0x00, 0xcb, 0xeb, /* 0x10-0x17 */\n  0xc6, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0xcc, 0xec, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0xce, 0xee, 0x00, 0x00, 0xc1, 0xe1, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0xed, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0xcf, 0xef, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0xd9, 0xf9, 0xd1, 0xf1, 0xd2, 0xf2, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0xd4, 0xf4, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xba, /* 0x50-0x57 */\n  0x00, 0x00, 0xda, 0xfa, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xd0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0xdb, 0xfb, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0xd8, 0xf8, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0xca, 0xea, 0xdd, 0xfd, 0xde, 0xfe, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char cp1257_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0xff, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char cp1257_page20[48] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\n\nstatic int\ncp1257_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0180)\n    c = cp1257_page00[wc-0x00a0];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = cp1257_page02[wc-0x02c0];\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = cp1257_page20[wc-0x2010];\n  else if (wc == 0x20ac)\n    c = 0x80;\n  else if (wc == 0x2122)\n    c = 0x99;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp1258.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2004, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP1258\n */\n\n#include \"flushwc.h\"\n#include \"vietcomb.h\"\n\nstatic const unsigned char cp1258_comb_table[] = {\n  0xcc, 0xec, 0xde, 0xd2, 0xf2,\n};\n\n/* The possible bases in viet_comp_table_data:\n   0x0041..0x0045, 0x0047..0x0049, 0x004B..0x0050, 0x0052..0x0057,\n   0x0059..0x005A, 0x0061..0x0065, 0x0067..0x0069, 0x006B..0x0070,\n   0x0072..0x0077, 0x0079..0x007A, 0x00A5, 0x00A8, 0x00C2, 0x00C5..0x00C7,\n   0x00CA, 0x00CF, 0x00D3..0x00D4, 0x00D6, 0x00D8, 0x00DA, 0x00DC, 0x00E2,\n   0x00E5..0x00E7, 0x00EA, 0x00EF, 0x00F3..0x00F4, 0x00F6, 0x00F8, 0x00FA,\n   0x00FC, 0x0102..0x0103, 0x01A0..0x01A1, 0x01AF..0x01B0. */\nstatic const unsigned int cp1258_comp_bases[] = {\n  0x06fdfbbe, 0x06fdfbbe, 0x00000000, 0x00000120, 0x155884e4, 0x155884e4,\n  0x0000000c, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00018003\n};\n\nstatic const unsigned short cp1258_2uni[128] = {\n  /* 0x80 */\n  0x20ac, 0xfffd, 0x201a, 0x0192, 0x201e, 0x2026, 0x2020, 0x2021,\n  0x02c6, 0x2030, 0xfffd, 0x2039, 0x0152, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x90 */\n  0xfffd, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0x02dc, 0x2122, 0xfffd, 0x203a, 0x0153, 0xfffd, 0xfffd, 0x0178,\n  /* 0xa0 */\n  0x00a0, 0x00a1, 0x00a2, 0x00a3, 0x00a4, 0x00a5, 0x00a6, 0x00a7,\n  0x00a8, 0x00a9, 0x00aa, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00af,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x00b4, 0x00b5, 0x00b6, 0x00b7,\n  0x00b8, 0x00b9, 0x00ba, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00bf,\n  /* 0xc0 */\n  0x00c0, 0x00c1, 0x00c2, 0x0102, 0x00c4, 0x00c5, 0x00c6, 0x00c7,\n  0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x0300, 0x00cd, 0x00ce, 0x00cf,\n  /* 0xd0 */\n  0x0110, 0x00d1, 0x0309, 0x00d3, 0x00d4, 0x01a0, 0x00d6, 0x00d7,\n  0x00d8, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x01af, 0x0303, 0x00df,\n  /* 0xe0 */\n  0x00e0, 0x00e1, 0x00e2, 0x0103, 0x00e4, 0x00e5, 0x00e6, 0x00e7,\n  0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x0301, 0x00ed, 0x00ee, 0x00ef,\n  /* 0xf0 */\n  0x0111, 0x00f1, 0x0323, 0x00f3, 0x00f4, 0x01a1, 0x00f6, 0x00f7,\n  0x00f8, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x01b0, 0x20ab, 0x00ff,\n};\n\n/* In the CP1258 to Unicode direction, the state contains a buffered\n   character, or 0 if none. */\n\nstatic int\ncp1258_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  unsigned short wc;\n  unsigned short last_wc;\n  if (c < 0x80) {\n    wc = c;\n  } else {\n    wc = cp1258_2uni[c-0x80];\n    if (wc == 0xfffd)\n      return RET_ILSEQ;\n  }\n  last_wc = conv->istate;\n  if (last_wc) {\n    if (wc >= 0x0300 && wc < 0x0340) {\n      /* See whether last_wc and wc can be combined. */\n      unsigned int k;\n      unsigned int i1, i2;\n      switch (wc) {\n        case 0x0300: k = 0; break;\n        case 0x0301: k = 1; break;\n        case 0x0303: k = 2; break;\n        case 0x0309: k = 3; break;\n        case 0x0323: k = 4; break;\n        default: abort();\n      }\n      i1 = viet_comp_table[k].idx;\n      i2 = i1 + viet_comp_table[k].len-1;\n      if (last_wc >= viet_comp_table_data[i1].base\n          && last_wc <= viet_comp_table_data[i2].base) {\n        unsigned int i;\n        for (;;) {\n          i = (i1+i2)>>1;\n          if (last_wc == viet_comp_table_data[i].base)\n            break;\n          if (last_wc < viet_comp_table_data[i].base) {\n            if (i1 == i)\n              goto not_combining;\n            i2 = i;\n          } else {\n            if (i1 != i)\n              i1 = i;\n            else {\n              i = i2;\n              if (last_wc == viet_comp_table_data[i].base)\n                break;\n              goto not_combining;\n            }\n          }\n        }\n        last_wc = viet_comp_table_data[i].composed;\n        /* Output the combined character. */\n        conv->istate = 0;\n        *pwc = (ucs4_t) last_wc;\n        return 1;\n      }\n    }\n  not_combining:\n    /* Output the buffered character. */\n    conv->istate = 0;\n    *pwc = (ucs4_t) last_wc;\n    return 0; /* Don't advance the input pointer. */\n  }\n  if (wc >= 0x0041 && wc <= 0x01b0\n      && ((cp1258_comp_bases[(wc - 0x0040) >> 5] >> (wc & 0x1f)) & 1)) {\n    /* wc is a possible match in viet_comp_table_data. Buffer it. */\n    conv->istate = wc;\n    return RET_TOOFEW(1);\n  } else {\n    /* Output wc immediately. */\n    *pwc = (ucs4_t) wc;\n    return 1;\n  }\n}\n\n#define cp1258_flushwc normal_flushwc\n\nstatic const unsigned char cp1258_page00[88] = {\n  0xc0, 0xc1, 0xc2, 0x00, 0xc4, 0xc5, 0xc6, 0xc7, /* 0xc0-0xc7 */\n  0xc8, 0xc9, 0xca, 0xcb, 0x00, 0xcd, 0xce, 0xcf, /* 0xc8-0xcf */\n  0x00, 0xd1, 0x00, 0xd3, 0xd4, 0x00, 0xd6, 0xd7, /* 0xd0-0xd7 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0x00, 0x00, 0xdf, /* 0xd8-0xdf */\n  0xe0, 0xe1, 0xe2, 0x00, 0xe4, 0xe5, 0xe6, 0xe7, /* 0xe0-0xe7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0x00, 0xed, 0xee, 0xef, /* 0xe8-0xef */\n  0x00, 0xf1, 0x00, 0xf3, 0xf4, 0x00, 0xf6, 0xf7, /* 0xf0-0xf7 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0x00, 0x00, 0xff, /* 0xf8-0xff */\n  /* 0x0100 */\n  0x00, 0x00, 0xc3, 0xe3, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xd0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n};\nstatic const unsigned char cp1258_page01[104] = {\n  0x00, 0x00, 0x8c, 0x9c, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xd5, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, /* 0xa8-0xaf */\n  0xfd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n};\nstatic const unsigned char cp1258_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char cp1258_page03[40] = {\n  0xcc, 0xec, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0xf2, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char cp1258_page20[48] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\n\nstatic int\ncp1258_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = wc;\n  else if (wc >= 0x00c0 && wc < 0x0118)\n    c = cp1258_page00[wc-0x00c0];\n  else if (wc >= 0x0150 && wc < 0x01b8)\n    c = cp1258_page01[wc-0x0150];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = cp1258_page02[wc-0x02c0];\n  else if (wc >= 0x0300 && wc < 0x0328)\n    c = cp1258_page03[wc-0x0300];\n  else if (wc >= 0x0340 && wc < 0x0342) /* deprecated Vietnamese tone marks */\n    c = cp1258_page03[wc-0x0340];\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = cp1258_page20[wc-0x2010];\n  else if (wc == 0x20ab)\n    c = 0xfe;\n  else if (wc == 0x20ac)\n    c = 0x80;\n  else if (wc == 0x2122)\n    c = 0x99;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  /* Try canonical decomposition. */\n  {\n    /* Binary search through viet_decomp_table. */\n    unsigned int i1 = 0;\n    unsigned int i2 = sizeof(viet_decomp_table)/sizeof(viet_decomp_table[0])-1;\n    if (wc >= viet_decomp_table[i1].composed\n        && wc <= viet_decomp_table[i2].composed) {\n      unsigned int i;\n      for (;;) {\n        /* Here i2 - i1 > 0. */\n        i = (i1+i2)>>1;\n        if (wc == viet_decomp_table[i].composed)\n          break;\n        if (wc < viet_decomp_table[i].composed) {\n          if (i1 == i)\n            return RET_ILUNI;\n          /* Here i1 < i < i2. */\n          i2 = i;\n        } else {\n          /* Here i1 <= i < i2. */\n          if (i1 != i)\n            i1 = i;\n          else {\n            /* Here i2 - i1 = 1. */\n            i = i2;\n            if (wc == viet_decomp_table[i].composed)\n              break;\n            else\n              return RET_ILUNI;\n          }\n        }\n      }\n      /* Found a canonical decomposition. */\n      wc = viet_decomp_table[i].base;\n      /* wc is one of 0x0020, 0x0041..0x005a, 0x0061..0x007a, 0x00a5, 0x00a8,\n         0x00c2, 0x00c5..0x00c7, 0x00ca, 0x00cf, 0x00d3, 0x00d4, 0x00d6,\n         0x00d8, 0x00da, 0x00dc, 0x00e2, 0x00e5..0x00e7, 0x00ea, 0x00ef,\n         0x00f3, 0x00f4, 0x00f6, 0x00f8, 0x00fc, 0x0102, 0x0103, 0x01a0,\n         0x01a1, 0x01af, 0x01b0. */\n      if (wc < 0x0100)\n        c = wc;\n      else if (wc < 0x0118)\n        c = cp1258_page00[wc-0x00c0];\n      else\n        c = cp1258_page01[wc-0x0150];\n      if (n < 2)\n        return RET_TOOSMALL;\n      r[0] = c;\n      r[1] = cp1258_comb_table[viet_decomp_table[i].comb1];\n      return 2;\n    }\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp437.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP437\n */\n\nstatic const unsigned short cp437_2uni[128] = {\n  /* 0x80 */\n  0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x00e0, 0x00e5, 0x00e7,\n  0x00ea, 0x00eb, 0x00e8, 0x00ef, 0x00ee, 0x00ec, 0x00c4, 0x00c5,\n  /* 0x90 */\n  0x00c9, 0x00e6, 0x00c6, 0x00f4, 0x00f6, 0x00f2, 0x00fb, 0x00f9,\n  0x00ff, 0x00d6, 0x00dc, 0x00a2, 0x00a3, 0x00a5, 0x20a7, 0x0192,\n  /* 0xa0 */\n  0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00f1, 0x00d1, 0x00aa, 0x00ba,\n  0x00bf, 0x2310, 0x00ac, 0x00bd, 0x00bc, 0x00a1, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,\n  0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567,\n  /* 0xd0 */\n  0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b,\n  0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580,\n  /* 0xe0 */\n  0x03b1, 0x00df, 0x0393, 0x03c0, 0x03a3, 0x03c3, 0x00b5, 0x03c4,\n  0x03a6, 0x0398, 0x03a9, 0x03b4, 0x221e, 0x03c6, 0x03b5, 0x2229,\n  /* 0xf0 */\n  0x2261, 0x00b1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00f7, 0x2248,\n  0x00b0, 0x2219, 0x00b7, 0x221a, 0x207f, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp437_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp437_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp437_page00[96] = {\n  0xff, 0xad, 0x9b, 0x9c, 0x00, 0x9d, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0xa6, 0xae, 0xaa, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0x00, 0x00, 0xe6, 0x00, 0xfa, /* 0xb0-0xb7 */\n  0x00, 0x00, 0xa7, 0xaf, 0xac, 0xab, 0x00, 0xa8, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x8e, 0x8f, 0x92, 0x80, /* 0xc0-0xc7 */\n  0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0xe1, /* 0xd8-0xdf */\n  0x85, 0xa0, 0x83, 0x00, 0x84, 0x86, 0x91, 0x87, /* 0xe0-0xe7 */\n  0x8a, 0x82, 0x88, 0x89, 0x8d, 0xa1, 0x8c, 0x8b, /* 0xe8-0xef */\n  0x00, 0xa4, 0x95, 0xa2, 0x93, 0x00, 0x94, 0xf6, /* 0xf0-0xf7 */\n  0x00, 0x97, 0xa3, 0x96, 0x81, 0x00, 0x00, 0x98, /* 0xf8-0xff */\n};\nstatic const unsigned char cp437_page03[56] = {\n  0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0xe8, 0x00, /* 0xa0-0xa7 */\n  0x00, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0xe0, 0x00, 0x00, 0xeb, 0xee, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0xe3, 0x00, 0x00, 0xe5, 0xe7, 0x00, 0xed, 0x00, /* 0xc0-0xc7 */\n};\nstatic const unsigned char cp437_page22[80] = {\n  0x00, 0xf9, 0xfb, 0x00, 0x00, 0x00, 0xec, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xf7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0xf0, 0x00, 0x00, 0xf3, 0xf2, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char cp437_page23[24] = {\n  0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0xf4, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char cp437_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0xd5, 0xd6, 0xc9, 0xb8, 0xb7, 0xbb, /* 0x50-0x57 */\n  0xd4, 0xd3, 0xc8, 0xbe, 0xbd, 0xbc, 0xc6, 0xc7, /* 0x58-0x5f */\n  0xcc, 0xb5, 0xb6, 0xb9, 0xd1, 0xd2, 0xcb, 0xcf, /* 0x60-0x67 */\n  0xd0, 0xca, 0xd8, 0xd7, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xde, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp437_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = cp437_page00[wc-0x00a0];\n  else if (wc == 0x0192)\n    c = 0x9f;\n  else if (wc >= 0x0390 && wc < 0x03c8)\n    c = cp437_page03[wc-0x0390];\n  else if (wc == 0x207f)\n    c = 0xfc;\n  else if (wc == 0x20a7)\n    c = 0x9e;\n  else if (wc >= 0x2218 && wc < 0x2268)\n    c = cp437_page22[wc-0x2218];\n  else if (wc >= 0x2310 && wc < 0x2328)\n    c = cp437_page23[wc-0x2310];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp437_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp50221_0208_ext.h",
    "content": "/*\n * Copyright (C) 1999-2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP50221 JISX0208 extensions\n */\n\nstatic const unsigned short cp50221_0208_ext_2uni[96] = {\n  /* 0x00 */\n  0xfffd, 0x2460, 0x2461, 0x2462, 0x2463, 0x2464, 0x2465, 0x2466,\n  0x2467, 0x2468, 0x2469, 0x246a, 0x246b, 0x246c, 0x246d, 0x246e,\n  /* 0x10 */\n  0x246f, 0x2470, 0x2471, 0x2472, 0x2473, 0x2160, 0x2161, 0x2162,\n  0x2163, 0x2164, 0x2165, 0x2166, 0x2167, 0x2168, 0x2169, 0xfffd,\n  /* 0x20 */\n  0x3349, 0x3314, 0x3322, 0x334d, 0x3318, 0x3327, 0x3303, 0x3336,\n  0x3351, 0x3357, 0x330d, 0x3326, 0x3323, 0x332b, 0x334a, 0x333b,\n  /* 0x30 */\n  0x339c, 0x339d, 0x339e, 0x338e, 0x338f, 0x33c4, 0x33a1, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x337b,\n  /* 0x40 */\n  0x301e, 0x301f, 0x2116, 0x33cd, 0x2121, 0x32a4, 0x32a5, 0x32a6,\n  0x32a7, 0x32a8, 0x3231, 0x3232, 0x3239, 0x337e, 0x337d, 0x337c,\n  /* 0x50 */\n  0xfffd, 0xfffd, 0xfffd, 0x222e, 0x2211, 0xfffd, 0xfffd, 0xfffd,\n  0x221f, 0x22bf, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n};\n\nstatic int\ncp50221_0208_ext_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x60) {\n    unsigned short wc = cp50221_0208_ext_2uni[c];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp50221_0208_ext_page21[96] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, /* 0x60-0x67 */\n  0x1d, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n};\nstatic const unsigned char cp50221_0208_ext_page22[32] = {\n  0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, /* 0x28-0x2f */\n};\nstatic const unsigned char cp50221_0208_ext_page24[24] = {\n  0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, /* 0x60-0x67 */\n  0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, /* 0x68-0x6f */\n  0x11, 0x12, 0x13, 0x14, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n};\nstatic const unsigned char cp50221_0208_ext_page30[8] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x40, 0x41, /* 0x18-0x1f */\n};\nstatic const unsigned char cp50221_0208_ext_page32[16] = {\n  0x00, 0x4a, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\nstatic const unsigned char cp50221_0208_ext_page32_1[16] = {\n  0x00, 0x00, 0x00, 0x00, 0x45, 0x46, 0x47, 0x48, /* 0xa0-0xa7 */\n  0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n};\nstatic const unsigned char cp50221_0208_ext_page33[208] = {\n  0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x22, 0x2c, 0x00, 0x00, 0x2b, 0x25, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x20, 0x2e, 0x00, 0x00, 0x23, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x29, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x3f, 0x4f, 0x4e, 0x4d, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x34, /* 0x88-0x8f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x30, 0x31, 0x32, 0x00, /* 0x98-0x9f */\n  0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, /* 0xc8-0xcf */\n};\n\nstatic int\ncp50221_0208_ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc >= 0x2110 && wc < 0x2170)\n    c = cp50221_0208_ext_page21[wc-0x2110];\n  else if (wc >= 0x2210 && wc < 0x2230)\n    c = cp50221_0208_ext_page22[wc-0x2210];\n  else if (wc == 0x22bf)\n    c = 0x59;\n  else if (wc >= 0x2460 && wc < 0x2478)\n    c = cp50221_0208_ext_page24[wc-0x2460];\n  else if (wc >= 0x3018 && wc < 0x3020)\n    c = cp50221_0208_ext_page30[wc-0x3018];\n  else if (wc >= 0x3230 && wc < 0x3240)\n    c = cp50221_0208_ext_page32[wc-0x3230];\n  else if (wc >= 0x32a0 && wc < 0x32b0)\n    c = cp50221_0208_ext_page32_1[wc-0x32a0];\n  else if (wc >= 0x3300 && wc < 0x33d0)\n    c = cp50221_0208_ext_page33[wc-0x3300];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp50221_0212_ext.h",
    "content": "/*\n * Copyright (C) 1999-2011, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP50221 JISX0212 extensions\n */\n\nstatic const unsigned short cp50221_0212_ext_2uni[112] = {\n  /* 0x00 */\n  0xfffd, 0x2170, 0x2171, 0x2172, 0x2173, 0x2174, 0x2175, 0x2176,\n  0x2177, 0x2178, 0x2179, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x10 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xff07, 0xff02, 0xfffd,\n  0xfffd, 0xfffd, 0x70bb, 0x4efc, 0x50f4, 0x51ec, 0x5307, 0x5324,\n  /* 0x20 */\n  0xfa0e, 0x548a, 0x5759, 0xfa0f, 0xfa10, 0x589e, 0x5bec, 0x5cf5,\n  0x5d53, 0xfa11, 0x5fb7, 0x6085, 0x6120, 0x654e, 0xfffd, 0x6665,\n  /* 0x30 */\n  0xfa12, 0xf929, 0x6801, 0xfa13, 0xfa14, 0x6a6b, 0x6ae2, 0x6df8,\n  0x6df2, 0x7028, 0xfa15, 0xfa16, 0x7501, 0x7682, 0x769e, 0xfa17,\n  /* 0x40 */\n  0x7930, 0xfa18, 0xfa19, 0xfa1a, 0xfa1b, 0x7ae7, 0xfa1c, 0xfa1d,\n  0x7da0, 0x7dd6, 0xfa1e, 0x8362, 0xfa1f, 0x85b0, 0xfa20, 0xfa21,\n  /* 0x50 */\n  0x8807, 0xfa22, 0x8b7f, 0x8cf4, 0x8d76, 0xfa23, 0xfa24, 0xfa25,\n  0x90de, 0xfa26, 0x9115, 0xfa27, 0xfa28, 0x9592, 0xf9dc, 0xfa29,\n  /* 0x60 */\n  0x973b, 0xfffd, 0x9751, 0xfa2a, 0xfa2b, 0xfa2c, 0x999e, 0x9ad9,\n  0x9b72, 0xfa2d, 0x9ed1, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n};\n\nstatic int\ncp50221_0212_ext_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x70) {\n    unsigned short wc = cp50221_0212_ext_2uni[c];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  else if (c == 0xa1) {\n    *pwc = 0x974d;\n    return 1;\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp50221_0212_ext_page21[16] = {\n  0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, /* 0x70-0x77 */\n  0x09, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char cp50221_0212_ext_page53[40] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char cp50221_0212_ext_page6d[16] = {\n  0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xf0-0xf7 */\n  0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char cp50221_0212_ext_page76[32] = {\n  0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, /* 0x98-0x9f */\n};\nstatic const unsigned char cp50221_0212_ext_page7d[56] = {\n  0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, /* 0xd0-0xd7 */\n};\nstatic const unsigned char cp50221_0212_ext_page97[32] = {\n  0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n};\nstatic const unsigned char cp50221_0212_ext_pagefa[40] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x23, /* 0x08-0x0f */\n  0x24, 0x29, 0x30, 0x33, 0x34, 0x3a, 0x3b, 0x3f, /* 0x10-0x17 */\n  0x41, 0x42, 0x43, 0x44, 0x46, 0x47, 0x4a, 0x4c, /* 0x18-0x1f */\n  0x4e, 0x4f, 0x51, 0x55, 0x56, 0x57, 0x59, 0x5b, /* 0x20-0x27 */\n  0x5c, 0x5f, 0x63, 0x64, 0x65, 0x69, 0x00, 0x00, /* 0x28-0x2f */\n};\nstatic const unsigned char cp50221_0212_ext_pageff[8] = {\n  0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x15, /* 0x00-0x07 */\n};\n\nstatic int\ncp50221_0212_ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc >= 0x2170 && wc < 0x2180)\n    c = cp50221_0212_ext_page21[wc-0x2170];\n  else if (wc == 0x4efc)\n    c = 0x1b;\n  else if (wc == 0x50f4)\n    c = 0x1c;\n  else if (wc == 0x51ec)\n    c = 0x1d;\n  else if (wc >= 0x5300 && wc < 0x5328)\n    c = cp50221_0212_ext_page53[wc-0x5300];\n  else if (wc == 0x548a)\n    c = 0x21;\n  else if (wc == 0x5759)\n    c = 0x22;\n  else if (wc == 0x589e)\n    c = 0x25;\n  else if (wc == 0x5bec)\n    c = 0x26;\n  else if (wc == 0x5cf5)\n    c = 0x27;\n  else if (wc == 0x5d53)\n    c = 0x28;\n  else if (wc == 0x5fb7)\n    c = 0x2a;\n  else if (wc == 0x6085)\n    c = 0x2b;\n  else if (wc == 0x6120)\n    c = 0x2c;\n  else if (wc == 0x654e)\n    c = 0x2d;\n  else if (wc == 0x6665)\n    c = 0x2f;\n  else if (wc == 0x6801)\n    c = 0x32;\n  else if (wc == 0x6a6b)\n    c = 0x35;\n  else if (wc == 0x6ae2)\n    c = 0x36;\n  else if (wc >= 0x6df0 && wc < 0x6e00)\n    c = cp50221_0212_ext_page6d[wc-0x6df0];\n  else if (wc == 0x7028)\n    c = 0x39;\n  else if (wc == 0x70bb)\n    c = 0x1a;\n  else if (wc == 0x7501)\n    c = 0x3c;\n  else if (wc >= 0x7680 && wc < 0x76a0)\n    c = cp50221_0212_ext_page76[wc-0x7680];\n  else if (wc == 0x7930)\n    c = 0x40;\n  else if (wc == 0x7ae7)\n    c = 0x45;\n  else if (wc >= 0x7da0 && wc < 0x7dd8)\n    c = cp50221_0212_ext_page7d[wc-0x7da0];\n  else if (wc == 0x8362)\n    c = 0x4b;\n  else if (wc == 0x85b0)\n    c = 0x4d;\n  else if (wc == 0x8807)\n    c = 0x50;\n  else if (wc == 0x8b7f)\n    c = 0x52;\n  else if (wc == 0x8cf4)\n    c = 0x53;\n  else if (wc == 0x8d76)\n    c = 0x54;\n  else if (wc == 0x90de)\n    c = 0x58;\n  else if (wc == 0x9115)\n    c = 0x5a;\n  else if (wc == 0x9592)\n    c = 0x5d;\n  else if (wc >= 0x9738 && wc < 0x9758)\n    c = cp50221_0212_ext_page97[wc-0x9738];\n  else if (wc == 0x999e)\n    c = 0x66;\n  else if (wc == 0x9ad9)\n    c = 0x67;\n  else if (wc == 0x9b72)\n    c = 0x68;\n  else if (wc == 0x9ed1)\n    c = 0x6a;\n  else if (wc == 0xf929)\n    c = 0x31;\n  else if (wc == 0xf9dc)\n    c = 0x5e;\n  else if (wc >= 0xfa08 && wc < 0xfa30)\n    c = cp50221_0212_ext_pagefa[wc-0xfa08];\n  else if (wc >= 0xff00 && wc < 0xff08)\n    c = cp50221_0212_ext_pageff[wc-0xff00];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp737.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP737\n */\n\nstatic const unsigned short cp737_2uni[128] = {\n  /* 0x80 */\n  0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396, 0x0397, 0x0398,\n  0x0399, 0x039a, 0x039b, 0x039c, 0x039d, 0x039e, 0x039f, 0x03a0,\n  /* 0x90 */\n  0x03a1, 0x03a3, 0x03a4, 0x03a5, 0x03a6, 0x03a7, 0x03a8, 0x03a9,\n  0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7, 0x03b8,\n  /* 0xa0 */\n  0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf, 0x03c0,\n  0x03c1, 0x03c3, 0x03c2, 0x03c4, 0x03c5, 0x03c6, 0x03c7, 0x03c8,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,\n  0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567,\n  /* 0xd0 */\n  0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b,\n  0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580,\n  /* 0xe0 */\n  0x03c9, 0x03ac, 0x03ad, 0x03ae, 0x03ca, 0x03af, 0x03cc, 0x03cd,\n  0x03cb, 0x03ce, 0x0386, 0x0388, 0x0389, 0x038a, 0x038c, 0x038e,\n  /* 0xf0 */\n  0x038f, 0x00b1, 0x2265, 0x2264, 0x03aa, 0x03ab, 0x00f7, 0x2248,\n  0x00b0, 0x2219, 0x00b7, 0x221a, 0x207f, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp737_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp737_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp737_page00[24] = {\n  0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0x00, 0x00, 0x00, 0x00, 0xfa, /* 0xb0-0xb7 */\n};\nstatic const unsigned char cp737_page03[80] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, /* 0x80-0x87 */\n  0xeb, 0xec, 0xed, 0x00, 0xee, 0x00, 0xef, 0xf0, /* 0x88-0x8f */\n  0x00, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, /* 0x90-0x97 */\n  0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, /* 0x98-0x9f */\n  0x8f, 0x90, 0x00, 0x91, 0x92, 0x93, 0x94, 0x95, /* 0xa0-0xa7 */\n  0x96, 0x97, 0xf4, 0xf5, 0xe1, 0xe2, 0xe3, 0xe5, /* 0xa8-0xaf */\n  0x00, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, /* 0xb0-0xb7 */\n  0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, /* 0xb8-0xbf */\n  0xa7, 0xa8, 0xaa, 0xa9, 0xab, 0xac, 0xad, 0xae, /* 0xc0-0xc7 */\n  0xaf, 0xe0, 0xe4, 0xe8, 0xe6, 0xe7, 0xe9, 0x00, /* 0xc8-0xcf */\n};\nstatic const unsigned char cp737_page22[80] = {\n  0x00, 0xf9, 0xfb, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xf7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0xf3, 0xf2, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char cp737_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0xd5, 0xd6, 0xc9, 0xb8, 0xb7, 0xbb, /* 0x50-0x57 */\n  0xd4, 0xd3, 0xc8, 0xbe, 0xbd, 0xbc, 0xc6, 0xc7, /* 0x58-0x5f */\n  0xcc, 0xb5, 0xb6, 0xb9, 0xd1, 0xd2, 0xcb, 0xcf, /* 0x60-0x67 */\n  0xd0, 0xca, 0xd8, 0xd7, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xde, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp737_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00b8)\n    c = cp737_page00[wc-0x00a0];\n  else if (wc == 0x00f7)\n    c = 0xf6;\n  else if (wc >= 0x0380 && wc < 0x03d0)\n    c = cp737_page03[wc-0x0380];\n  else if (wc == 0x207f)\n    c = 0xfc;\n  else if (wc >= 0x2218 && wc < 0x2268)\n    c = cp737_page22[wc-0x2218];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp737_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp775.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP775\n */\n\nstatic const unsigned short cp775_2uni[128] = {\n  /* 0x80 */\n  0x0106, 0x00fc, 0x00e9, 0x0101, 0x00e4, 0x0123, 0x00e5, 0x0107,\n  0x0142, 0x0113, 0x0156, 0x0157, 0x012b, 0x0179, 0x00c4, 0x00c5,\n  /* 0x90 */\n  0x00c9, 0x00e6, 0x00c6, 0x014d, 0x00f6, 0x0122, 0x00a2, 0x015a,\n  0x015b, 0x00d6, 0x00dc, 0x00f8, 0x00a3, 0x00d8, 0x00d7, 0x00a4,\n  /* 0xa0 */\n  0x0100, 0x012a, 0x00f3, 0x017b, 0x017c, 0x017a, 0x201d, 0x00a6,\n  0x00a9, 0x00ae, 0x00ac, 0x00bd, 0x00bc, 0x0141, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x0104, 0x010c, 0x0118,\n  0x0116, 0x2563, 0x2551, 0x2557, 0x255d, 0x012e, 0x0160, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x0172, 0x016a,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x017d,\n  /* 0xd0 */\n  0x0105, 0x010d, 0x0119, 0x0117, 0x012f, 0x0161, 0x0173, 0x016b,\n  0x017e, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580,\n  /* 0xe0 */\n  0x00d3, 0x00df, 0x014c, 0x0143, 0x00f5, 0x00d5, 0x00b5, 0x0144,\n  0x0136, 0x0137, 0x013b, 0x013c, 0x0146, 0x0112, 0x0145, 0x2019,\n  /* 0xf0 */\n  0x00ad, 0x00b1, 0x201c, 0x00be, 0x00b6, 0x00a7, 0x00f7, 0x201e,\n  0x00b0, 0x2219, 0x00b7, 0x00b9, 0x00b3, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp775_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp775_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp775_page00[224] = {\n  0xff, 0x00, 0x96, 0x9c, 0x9f, 0x00, 0xa7, 0xf5, /* 0xa0-0xa7 */\n  0x00, 0xa8, 0x00, 0xae, 0xaa, 0xf0, 0xa9, 0x00, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0xfc, 0x00, 0xe6, 0xf4, 0xfa, /* 0xb0-0xb7 */\n  0x00, 0xfb, 0x00, 0xaf, 0xac, 0xab, 0xf3, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x8e, 0x8f, 0x92, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0xe0, 0x00, 0xe5, 0x99, 0x9e, /* 0xd0-0xd7 */\n  0x9d, 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0xe1, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0x84, 0x86, 0x91, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0xa2, 0x00, 0xe4, 0x94, 0xf6, /* 0xf0-0xf7 */\n  0x9b, 0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0xa0, 0x83, 0x00, 0x00, 0xb5, 0xd0, 0x80, 0x87, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xb6, 0xd1, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0xed, 0x89, 0x00, 0x00, 0xb8, 0xd3, /* 0x10-0x17 */\n  0xb7, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x95, 0x85, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0xa1, 0x8c, 0x00, 0x00, 0xbd, 0xd4, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0xe9, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0xea, 0xeb, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0xad, 0x88, 0xe3, 0xe7, 0xee, 0xec, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0xe2, 0x93, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8a, 0x8b, /* 0x50-0x57 */\n  0x00, 0x00, 0x97, 0x98, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xbe, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0xc7, 0xd7, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0xc6, 0xd6, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x8d, 0xa5, 0xa3, 0xa4, 0xcf, 0xd8, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char cp775_page20[8] = {\n  0x00, 0xef, 0x00, 0x00, 0xf2, 0xa6, 0xf7, 0x00, /* 0x18-0x1f */\n};\nstatic const unsigned char cp775_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0x00, 0x00, 0xc9, 0x00, 0x00, 0xbb, /* 0x50-0x57 */\n  0x00, 0x00, 0xc8, 0x00, 0x00, 0xbc, 0x00, 0x00, /* 0x58-0x5f */\n  0xcc, 0x00, 0x00, 0xb9, 0x00, 0x00, 0xcb, 0x00, /* 0x60-0x67 */\n  0x00, 0xca, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xde, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp775_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0180)\n    c = cp775_page00[wc-0x00a0];\n  else if (wc >= 0x2018 && wc < 0x2020)\n    c = cp775_page20[wc-0x2018];\n  else if (wc == 0x2219)\n    c = 0xf9;\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp775_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp850.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP850\n */\n\nstatic const unsigned short cp850_2uni[128] = {\n  /* 0x80 */\n  0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x00e0, 0x00e5, 0x00e7,\n  0x00ea, 0x00eb, 0x00e8, 0x00ef, 0x00ee, 0x00ec, 0x00c4, 0x00c5,\n  /* 0x90 */\n  0x00c9, 0x00e6, 0x00c6, 0x00f4, 0x00f6, 0x00f2, 0x00fb, 0x00f9,\n  0x00ff, 0x00d6, 0x00dc, 0x00f8, 0x00a3, 0x00d8, 0x00d7, 0x0192,\n  /* 0xa0 */\n  0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00f1, 0x00d1, 0x00aa, 0x00ba,\n  0x00bf, 0x00ae, 0x00ac, 0x00bd, 0x00bc, 0x00a1, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00c1, 0x00c2, 0x00c0,\n  0x00a9, 0x2563, 0x2551, 0x2557, 0x255d, 0x00a2, 0x00a5, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x00e3, 0x00c3,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x00a4,\n  /* 0xd0 */\n  0x00f0, 0x00d0, 0x00ca, 0x00cb, 0x00c8, 0x0131, 0x00cd, 0x00ce,\n  0x00cf, 0x2518, 0x250c, 0x2588, 0x2584, 0x00a6, 0x00cc, 0x2580,\n  /* 0xe0 */\n  0x00d3, 0x00df, 0x00d4, 0x00d2, 0x00f5, 0x00d5, 0x00b5, 0x00fe,\n  0x00de, 0x00da, 0x00db, 0x00d9, 0x00fd, 0x00dd, 0x00af, 0x00b4,\n  /* 0xf0 */\n  0x00ad, 0x00b1, 0x2017, 0x00be, 0x00b6, 0x00a7, 0x00f7, 0x00b8,\n  0x00b0, 0x00a8, 0x00b7, 0x00b9, 0x00b3, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp850_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp850_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp850_page00[96] = {\n  0xff, 0xad, 0xbd, 0x9c, 0xcf, 0xbe, 0xdd, 0xf5, /* 0xa0-0xa7 */\n  0xf9, 0xb8, 0xa6, 0xae, 0xaa, 0xf0, 0xa9, 0xee, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0xfc, 0xef, 0xe6, 0xf4, 0xfa, /* 0xb0-0xb7 */\n  0xf7, 0xfb, 0xa7, 0xaf, 0xac, 0xab, 0xf3, 0xa8, /* 0xb8-0xbf */\n  0xb7, 0xb5, 0xb6, 0xc7, 0x8e, 0x8f, 0x92, 0x80, /* 0xc0-0xc7 */\n  0xd4, 0x90, 0xd2, 0xd3, 0xde, 0xd6, 0xd7, 0xd8, /* 0xc8-0xcf */\n  0xd1, 0xa5, 0xe3, 0xe0, 0xe2, 0xe5, 0x99, 0x9e, /* 0xd0-0xd7 */\n  0x9d, 0xeb, 0xe9, 0xea, 0x9a, 0xed, 0xe8, 0xe1, /* 0xd8-0xdf */\n  0x85, 0xa0, 0x83, 0xc6, 0x84, 0x86, 0x91, 0x87, /* 0xe0-0xe7 */\n  0x8a, 0x82, 0x88, 0x89, 0x8d, 0xa1, 0x8c, 0x8b, /* 0xe8-0xef */\n  0xd0, 0xa4, 0x95, 0xa2, 0x93, 0xe4, 0x94, 0xf6, /* 0xf0-0xf7 */\n  0x9b, 0x97, 0xa3, 0x96, 0x81, 0xec, 0xe7, 0x98, /* 0xf8-0xff */\n};\nstatic const unsigned char cp850_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0x00, 0x00, 0xc9, 0x00, 0x00, 0xbb, /* 0x50-0x57 */\n  0x00, 0x00, 0xc8, 0x00, 0x00, 0xbc, 0x00, 0x00, /* 0x58-0x5f */\n  0xcc, 0x00, 0x00, 0xb9, 0x00, 0x00, 0xcb, 0x00, /* 0x60-0x67 */\n  0x00, 0xca, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp850_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = cp850_page00[wc-0x00a0];\n  else if (wc == 0x0131)\n    c = 0xd5;\n  else if (wc == 0x0192)\n    c = 0x9f;\n  else if (wc == 0x2017)\n    c = 0xf2;\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp850_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp852.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP852\n */\n\nstatic const unsigned short cp852_2uni[128] = {\n  /* 0x80 */\n  0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x016f, 0x0107, 0x00e7,\n  0x0142, 0x00eb, 0x0150, 0x0151, 0x00ee, 0x0179, 0x00c4, 0x0106,\n  /* 0x90 */\n  0x00c9, 0x0139, 0x013a, 0x00f4, 0x00f6, 0x013d, 0x013e, 0x015a,\n  0x015b, 0x00d6, 0x00dc, 0x0164, 0x0165, 0x0141, 0x00d7, 0x010d,\n  /* 0xa0 */\n  0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x0104, 0x0105, 0x017d, 0x017e,\n  0x0118, 0x0119, 0x00ac, 0x017a, 0x010c, 0x015f, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00c1, 0x00c2, 0x011a,\n  0x015e, 0x2563, 0x2551, 0x2557, 0x255d, 0x017b, 0x017c, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x0102, 0x0103,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x00a4,\n  /* 0xd0 */\n  0x0111, 0x0110, 0x010e, 0x00cb, 0x010f, 0x0147, 0x00cd, 0x00ce,\n  0x011b, 0x2518, 0x250c, 0x2588, 0x2584, 0x0162, 0x016e, 0x2580,\n  /* 0xe0 */\n  0x00d3, 0x00df, 0x00d4, 0x0143, 0x0144, 0x0148, 0x0160, 0x0161,\n  0x0154, 0x00da, 0x0155, 0x0170, 0x00fd, 0x00dd, 0x0163, 0x00b4,\n  /* 0xf0 */\n  0x00ad, 0x02dd, 0x02db, 0x02c7, 0x02d8, 0x00a7, 0x00f7, 0x00b8,\n  0x00b0, 0x00a8, 0x02d9, 0x0171, 0x0158, 0x0159, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp852_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp852_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp852_page00[224] = {\n  0xff, 0x00, 0x00, 0x00, 0xcf, 0x00, 0x00, 0xf5, /* 0xa0-0xa7 */\n  0xf9, 0x00, 0x00, 0xae, 0xaa, 0xf0, 0x00, 0x00, /* 0xa8-0xaf */\n  0xf8, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0xf7, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0xb5, 0xb6, 0x00, 0x8e, 0x00, 0x00, 0x80, /* 0xc0-0xc7 */\n  0x00, 0x90, 0x00, 0xd3, 0x00, 0xd6, 0xd7, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0xe0, 0xe2, 0x00, 0x99, 0x9e, /* 0xd0-0xd7 */\n  0x00, 0x00, 0xe9, 0x00, 0x9a, 0xed, 0x00, 0xe1, /* 0xd8-0xdf */\n  0x00, 0xa0, 0x83, 0x00, 0x84, 0x00, 0x00, 0x87, /* 0xe0-0xe7 */\n  0x00, 0x82, 0x00, 0x89, 0x00, 0xa1, 0x8c, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0xa2, 0x93, 0x00, 0x94, 0xf6, /* 0xf0-0xf7 */\n  0x00, 0x00, 0xa3, 0x00, 0x81, 0xec, 0x00, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0x00, 0x00, 0xc6, 0xc7, 0xa4, 0xa5, 0x8f, 0x86, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xac, 0x9f, 0xd2, 0xd4, /* 0x08-0x0f */\n  0xd1, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xa8, 0xa9, 0xb7, 0xd8, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x91, 0x92, 0x00, 0x00, 0x95, 0x96, 0x00, /* 0x38-0x3f */\n  0x00, 0x9d, 0x88, 0xe3, 0xe4, 0x00, 0x00, 0xd5, /* 0x40-0x47 */\n  0xe5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x8a, 0x8b, 0x00, 0x00, 0xe8, 0xea, 0x00, 0x00, /* 0x50-0x57 */\n  0xfc, 0xfd, 0x97, 0x98, 0x00, 0x00, 0xb8, 0xad, /* 0x58-0x5f */\n  0xe6, 0xe7, 0xdd, 0xee, 0x9b, 0x9c, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x85, /* 0x68-0x6f */\n  0xeb, 0xfb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x8d, 0xab, 0xbd, 0xbe, 0xa6, 0xa7, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char cp852_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf3, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0xf4, 0xfa, 0x00, 0xf2, 0x00, 0xf1, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char cp852_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0x00, 0x00, 0xc9, 0x00, 0x00, 0xbb, /* 0x50-0x57 */\n  0x00, 0x00, 0xc8, 0x00, 0x00, 0xbc, 0x00, 0x00, /* 0x58-0x5f */\n  0xcc, 0x00, 0x00, 0xb9, 0x00, 0x00, 0xcb, 0x00, /* 0x60-0x67 */\n  0x00, 0xca, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp852_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0180)\n    c = cp852_page00[wc-0x00a0];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = cp852_page02[wc-0x02c0];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp852_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp853.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP853\n */\n\nstatic const unsigned short cp853_2uni[128] = {\n  /* 0x80 */\n  0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x00e0, 0x0109, 0x00e7,\n  0x00ea, 0x00eb, 0x00e8, 0x00ef, 0x00ee, 0x00ec, 0x00c4, 0x0108,\n  /* 0x90 */\n  0x00c9, 0x010b, 0x010a, 0x00f4, 0x00f6, 0x00f2, 0x00fb, 0x00f9,\n  0x0130, 0x00d6, 0x00dc, 0x011d, 0x00a3, 0x011c, 0x00d7, 0x0135,\n  /* 0xa0 */\n  0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00f1, 0x00d1, 0x011e, 0x011f,\n  0x0124, 0x0125, 0xfffd, 0x00bd, 0x0134, 0x015f, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00c1, 0x00c2, 0x00c0,\n  0x015e, 0x2563, 0x2551, 0x2557, 0x255d, 0x017b, 0x017c, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x015c, 0x015d,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x00a4,\n  /* 0xd0 */\n  0xfffd, 0xfffd, 0x00ca, 0x00cb, 0x00c8, 0x0131, 0x00cd, 0x00ce,\n  0x00cf, 0x2518, 0x250c, 0x2588, 0x2584, 0xfffd, 0x00cc, 0x2580,\n  /* 0xe0 */\n  0x00d3, 0x00df, 0x00d4, 0x00d2, 0x0120, 0x0121, 0x00b5, 0x0126,\n  0x0127, 0x00da, 0x00db, 0x00d9, 0x016c, 0x016d, 0xfffd, 0x00b4,\n  /* 0xf0 */\n  0x00ad, 0xfffd, 0x2113, 0x0149, 0x02d8, 0x00a7, 0x00f7, 0x00b8,\n  0x00b0, 0x00a8, 0x02d9, 0xfffd, 0x00b3, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp853_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp853_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp853_page00[96] = {\n  0xff, 0x00, 0x00, 0x9c, 0xcf, 0x00, 0x00, 0xf5, /* 0xa0-0xa7 */\n  0xf9, 0x00, 0x00, 0xae, 0x00, 0xf0, 0x00, 0x00, /* 0xa8-0xaf */\n  0xf8, 0x00, 0xfd, 0xfc, 0xef, 0xe6, 0x00, 0x00, /* 0xb0-0xb7 */\n  0xf7, 0x00, 0x00, 0xaf, 0x00, 0xab, 0x00, 0x00, /* 0xb8-0xbf */\n  0xb7, 0xb5, 0xb6, 0x00, 0x8e, 0x00, 0x00, 0x80, /* 0xc0-0xc7 */\n  0xd4, 0x90, 0xd2, 0xd3, 0xde, 0xd6, 0xd7, 0xd8, /* 0xc8-0xcf */\n  0x00, 0xa5, 0xe3, 0xe0, 0xe2, 0x00, 0x99, 0x9e, /* 0xd0-0xd7 */\n  0x00, 0xeb, 0xe9, 0xea, 0x9a, 0x00, 0x00, 0xe1, /* 0xd8-0xdf */\n  0x85, 0xa0, 0x83, 0x00, 0x84, 0x00, 0x00, 0x87, /* 0xe0-0xe7 */\n  0x8a, 0x82, 0x88, 0x89, 0x8d, 0xa1, 0x8c, 0x8b, /* 0xe8-0xef */\n  0x00, 0xa4, 0x95, 0xa2, 0x93, 0x00, 0x94, 0xf6, /* 0xf0-0xf7 */\n  0x00, 0x97, 0xa3, 0x96, 0x81, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char cp853_page01[120] = {\n  0x8f, 0x86, 0x92, 0x91, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x9d, 0x9b, 0xa6, 0xa7, /* 0x18-0x1f */\n  0xe4, 0xe5, 0x00, 0x00, 0xa8, 0xa9, 0xe7, 0xe8, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x98, 0xd5, 0x00, 0x00, 0xac, 0x9f, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0xc6, 0xc7, 0xb8, 0xad, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0xec, 0xed, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0xbd, 0xbe, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char cp853_page02[8] = {\n  0xf4, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char cp853_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0x00, 0x00, 0xc9, 0x00, 0x00, 0xbb, /* 0x50-0x57 */\n  0x00, 0x00, 0xc8, 0x00, 0x00, 0xbc, 0x00, 0x00, /* 0x58-0x5f */\n  0xcc, 0x00, 0x00, 0xb9, 0x00, 0x00, 0xcb, 0x00, /* 0x60-0x67 */\n  0x00, 0xca, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp853_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = cp853_page00[wc-0x00a0];\n  else if (wc >= 0x0108 && wc < 0x0180)\n    c = cp853_page01[wc-0x0108];\n  else if (wc >= 0x02d8 && wc < 0x02e0)\n    c = cp853_page02[wc-0x02d8];\n  else if (wc == 0x2113)\n    c = 0xf2;\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp853_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp855.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP855\n */\n\nstatic const unsigned short cp855_2uni[128] = {\n  /* 0x80 */\n  0x0452, 0x0402, 0x0453, 0x0403, 0x0451, 0x0401, 0x0454, 0x0404,\n  0x0455, 0x0405, 0x0456, 0x0406, 0x0457, 0x0407, 0x0458, 0x0408,\n  /* 0x90 */\n  0x0459, 0x0409, 0x045a, 0x040a, 0x045b, 0x040b, 0x045c, 0x040c,\n  0x045e, 0x040e, 0x045f, 0x040f, 0x044e, 0x042e, 0x044a, 0x042a,\n  /* 0xa0 */\n  0x0430, 0x0410, 0x0431, 0x0411, 0x0446, 0x0426, 0x0434, 0x0414,\n  0x0435, 0x0415, 0x0444, 0x0424, 0x0433, 0x0413, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x0445, 0x0425, 0x0438,\n  0x0418, 0x2563, 0x2551, 0x2557, 0x255d, 0x0439, 0x0419, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x043a, 0x041a,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x00a4,\n  /* 0xd0 */\n  0x043b, 0x041b, 0x043c, 0x041c, 0x043d, 0x041d, 0x043e, 0x041e,\n  0x043f, 0x2518, 0x250c, 0x2588, 0x2584, 0x041f, 0x044f, 0x2580,\n  /* 0xe0 */\n  0x042f, 0x0440, 0x0420, 0x0441, 0x0421, 0x0442, 0x0422, 0x0443,\n  0x0423, 0x0436, 0x0416, 0x0432, 0x0412, 0x044c, 0x042c, 0x2116,\n  /* 0xf0 */\n  0x00ad, 0x044b, 0x042b, 0x0437, 0x0417, 0x0448, 0x0428, 0x044d,\n  0x042d, 0x0449, 0x0429, 0x0447, 0x0427, 0x00a7, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp855_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp855_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp855_page00[32] = {\n  0xff, 0x00, 0x00, 0x00, 0xcf, 0x00, 0x00, 0xfd, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0xae, 0x00, 0xf0, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char cp855_page04[96] = {\n  0x00, 0x85, 0x81, 0x83, 0x87, 0x89, 0x8b, 0x8d, /* 0x00-0x07 */\n  0x8f, 0x91, 0x93, 0x95, 0x97, 0x00, 0x99, 0x9b, /* 0x08-0x0f */\n  0xa1, 0xa3, 0xec, 0xad, 0xa7, 0xa9, 0xea, 0xf4, /* 0x10-0x17 */\n  0xb8, 0xbe, 0xc7, 0xd1, 0xd3, 0xd5, 0xd7, 0xdd, /* 0x18-0x1f */\n  0xe2, 0xe4, 0xe6, 0xe8, 0xab, 0xb6, 0xa5, 0xfc, /* 0x20-0x27 */\n  0xf6, 0xfa, 0x9f, 0xf2, 0xee, 0xf8, 0x9d, 0xe0, /* 0x28-0x2f */\n  0xa0, 0xa2, 0xeb, 0xac, 0xa6, 0xa8, 0xe9, 0xf3, /* 0x30-0x37 */\n  0xb7, 0xbd, 0xc6, 0xd0, 0xd2, 0xd4, 0xd6, 0xd8, /* 0x38-0x3f */\n  0xe1, 0xe3, 0xe5, 0xe7, 0xaa, 0xb5, 0xa4, 0xfb, /* 0x40-0x47 */\n  0xf5, 0xf9, 0x9e, 0xf1, 0xed, 0xf7, 0x9c, 0xde, /* 0x48-0x4f */\n  0x00, 0x84, 0x80, 0x82, 0x86, 0x88, 0x8a, 0x8c, /* 0x50-0x57 */\n  0x8e, 0x90, 0x92, 0x94, 0x96, 0x00, 0x98, 0x9a, /* 0x58-0x5f */\n};\nstatic const unsigned char cp855_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0x00, 0x00, 0xc9, 0x00, 0x00, 0xbb, /* 0x50-0x57 */\n  0x00, 0x00, 0xc8, 0x00, 0x00, 0xbc, 0x00, 0x00, /* 0x58-0x5f */\n  0xcc, 0x00, 0x00, 0xb9, 0x00, 0x00, 0xcb, 0x00, /* 0x60-0x67 */\n  0x00, 0xca, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp855_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = cp855_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x0460)\n    c = cp855_page04[wc-0x0400];\n  else if (wc == 0x2116)\n    c = 0xef;\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp855_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp856.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP856\n */\n\nstatic const unsigned short cp856_2uni[128] = {\n  /* 0x80 */\n  0x05d0, 0x05d1, 0x05d2, 0x05d3, 0x05d4, 0x05d5, 0x05d6, 0x05d7,\n  0x05d8, 0x05d9, 0x05da, 0x05db, 0x05dc, 0x05dd, 0x05de, 0x05df,\n  /* 0x90 */\n  0x05e0, 0x05e1, 0x05e2, 0x05e3, 0x05e4, 0x05e5, 0x05e6, 0x05e7,\n  0x05e8, 0x05e9, 0x05ea, 0xfffd, 0x00a3, 0xfffd, 0x00d7, 0xfffd,\n  /* 0xa0 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x00ae, 0x00ac, 0x00bd, 0x00bc, 0xfffd, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0xfffd, 0xfffd, 0xfffd,\n  0x00a9, 0x2563, 0x2551, 0x2557, 0x255d, 0x00a2, 0x00a5, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0xfffd, 0xfffd,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x00a4,\n  /* 0xd0 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x2518, 0x250c, 0x2588, 0x2584, 0x00a6, 0xfffd, 0x2580,\n  /* 0xe0 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x00b5, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x00af, 0x00b4,\n  /* 0xf0 */\n  0x00ad, 0x00b1, 0x2017, 0x00be, 0x00b6, 0x00a7, 0x00f7, 0x00b8,\n  0x00b0, 0x00a8, 0x00b7, 0x00b9, 0x00b3, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp856_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp856_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp856_page00[88] = {\n  0xff, 0x00, 0xbd, 0x9c, 0xcf, 0xbe, 0xdd, 0xf5, /* 0xa0-0xa7 */\n  0xf9, 0xb8, 0x00, 0xae, 0xaa, 0xf0, 0xa9, 0xee, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0xfc, 0xef, 0xe6, 0xf4, 0xfa, /* 0xb0-0xb7 */\n  0xf7, 0xfb, 0x00, 0xaf, 0xac, 0xab, 0xf3, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, /* 0xf0-0xf7 */\n};\nstatic const unsigned char cp856_page05[32] = {\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /* 0xd0-0xd7 */\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* 0xd8-0xdf */\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, /* 0xe0-0xe7 */\n  0x98, 0x99, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n};\nstatic const unsigned char cp856_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0x00, 0x00, 0xc9, 0x00, 0x00, 0xbb, /* 0x50-0x57 */\n  0x00, 0x00, 0xc8, 0x00, 0x00, 0xbc, 0x00, 0x00, /* 0x58-0x5f */\n  0xcc, 0x00, 0x00, 0xb9, 0x00, 0x00, 0xcb, 0x00, /* 0x60-0x67 */\n  0x00, 0xca, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp856_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00f8)\n    c = cp856_page00[wc-0x00a0];\n  else if (wc >= 0x05d0 && wc < 0x05f0)\n    c = cp856_page05[wc-0x05d0];\n  else if (wc == 0x2017)\n    c = 0xf2;\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp856_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp857.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP857\n */\n\nstatic const unsigned short cp857_2uni[128] = {\n  /* 0x80 */\n  0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x00e0, 0x00e5, 0x00e7,\n  0x00ea, 0x00eb, 0x00e8, 0x00ef, 0x00ee, 0x0131, 0x00c4, 0x00c5,\n  /* 0x90 */\n  0x00c9, 0x00e6, 0x00c6, 0x00f4, 0x00f6, 0x00f2, 0x00fb, 0x00f9,\n  0x0130, 0x00d6, 0x00dc, 0x00f8, 0x00a3, 0x00d8, 0x015e, 0x015f,\n  /* 0xa0 */\n  0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00f1, 0x00d1, 0x011e, 0x011f,\n  0x00bf, 0x00ae, 0x00ac, 0x00bd, 0x00bc, 0x00a1, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00c1, 0x00c2, 0x00c0,\n  0x00a9, 0x2563, 0x2551, 0x2557, 0x255d, 0x00a2, 0x00a5, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x00e3, 0x00c3,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x00a4,\n  /* 0xd0 */\n  0x00ba, 0x00aa, 0x00ca, 0x00cb, 0x00c8, 0xfffd, 0x00cd, 0x00ce,\n  0x00cf, 0x2518, 0x250c, 0x2588, 0x2584, 0x00a6, 0x00cc, 0x2580,\n  /* 0xe0 */\n  0x00d3, 0x00df, 0x00d4, 0x00d2, 0x00f5, 0x00d5, 0x00b5, 0xfffd,\n  0x00d7, 0x00da, 0x00db, 0x00d9, 0x00ec, 0x00ff, 0x00af, 0x00b4,\n  /* 0xf0 */\n  0x00ad, 0x00b1, 0xfffd, 0x00be, 0x00b6, 0x00a7, 0x00f7, 0x00b8,\n  0x00b0, 0x00a8, 0x00b7, 0x00b9, 0x00b3, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp857_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp857_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp857_page00[96] = {\n  0xff, 0xad, 0xbd, 0x9c, 0xcf, 0xbe, 0xdd, 0xf5, /* 0xa0-0xa7 */\n  0xf9, 0xb8, 0xd1, 0xae, 0xaa, 0xf0, 0xa9, 0xee, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0xfc, 0xef, 0xe6, 0xf4, 0xfa, /* 0xb0-0xb7 */\n  0xf7, 0xfb, 0xd0, 0xaf, 0xac, 0xab, 0xf3, 0xa8, /* 0xb8-0xbf */\n  0xb7, 0xb5, 0xb6, 0xc7, 0x8e, 0x8f, 0x92, 0x80, /* 0xc0-0xc7 */\n  0xd4, 0x90, 0xd2, 0xd3, 0xde, 0xd6, 0xd7, 0xd8, /* 0xc8-0xcf */\n  0x00, 0xa5, 0xe3, 0xe0, 0xe2, 0xe5, 0x99, 0xe8, /* 0xd0-0xd7 */\n  0x9d, 0xeb, 0xe9, 0xea, 0x9a, 0x00, 0x00, 0xe1, /* 0xd8-0xdf */\n  0x85, 0xa0, 0x83, 0xc6, 0x84, 0x86, 0x91, 0x87, /* 0xe0-0xe7 */\n  0x8a, 0x82, 0x88, 0x89, 0xec, 0xa1, 0x8c, 0x8b, /* 0xe8-0xef */\n  0x00, 0xa4, 0x95, 0xa2, 0x93, 0xe4, 0x94, 0xf6, /* 0xf0-0xf7 */\n  0x9b, 0x97, 0xa3, 0x96, 0x81, 0x00, 0x00, 0xed, /* 0xf8-0xff */\n};\nstatic const unsigned char cp857_page01[72] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0xa7, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x98, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0x9f, /* 0x58-0x5f */\n};\nstatic const unsigned char cp857_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0x00, 0x00, 0xc9, 0x00, 0x00, 0xbb, /* 0x50-0x57 */\n  0x00, 0x00, 0xc8, 0x00, 0x00, 0xbc, 0x00, 0x00, /* 0x58-0x5f */\n  0xcc, 0x00, 0x00, 0xb9, 0x00, 0x00, 0xcb, 0x00, /* 0x60-0x67 */\n  0x00, 0xca, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp857_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = cp857_page00[wc-0x00a0];\n  else if (wc >= 0x0118 && wc < 0x0160)\n    c = cp857_page01[wc-0x0118];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp857_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp858.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP858\n */\n\nstatic int\ncp858_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else if (c == 0xd5)\n    *pwc = 0x20ac;\n  else\n    *pwc = (ucs4_t) cp850_2uni[c-0x80];\n  return 1;\n}\n\nstatic int\ncp858_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = cp850_page00[wc-0x00a0];\n  else if (wc == 0x0192)\n    c = 0x9f;\n  else if (wc == 0x2017)\n    c = 0xf2;\n  else if (wc == 0x20ac)\n    c = 0xd5;\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp850_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp860.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP860\n */\n\nstatic const unsigned short cp860_2uni[128] = {\n  /* 0x80 */\n  0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e3, 0x00e0, 0x00c1, 0x00e7,\n  0x00ea, 0x00ca, 0x00e8, 0x00cd, 0x00d4, 0x00ec, 0x00c3, 0x00c2,\n  /* 0x90 */\n  0x00c9, 0x00c0, 0x00c8, 0x00f4, 0x00f5, 0x00f2, 0x00da, 0x00f9,\n  0x00cc, 0x00d5, 0x00dc, 0x00a2, 0x00a3, 0x00d9, 0x20a7, 0x00d3,\n  /* 0xa0 */\n  0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00f1, 0x00d1, 0x00aa, 0x00ba,\n  0x00bf, 0x00d2, 0x00ac, 0x00bd, 0x00bc, 0x00a1, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,\n  0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567,\n  /* 0xd0 */\n  0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b,\n  0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580,\n  /* 0xe0 */\n  0x03b1, 0x00df, 0x0393, 0x03c0, 0x03a3, 0x03c3, 0x00b5, 0x03c4,\n  0x03a6, 0x0398, 0x03a9, 0x03b4, 0x221e, 0x03c6, 0x03b5, 0x2229,\n  /* 0xf0 */\n  0x2261, 0x00b1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00f7, 0x2248,\n  0x00b0, 0x2219, 0x00b7, 0x221a, 0x207f, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp860_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp860_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp860_page00[96] = {\n  0xff, 0xad, 0x9b, 0x9c, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0xa6, 0xae, 0xaa, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0x00, 0x00, 0xe6, 0x00, 0xfa, /* 0xb0-0xb7 */\n  0x00, 0x00, 0xa7, 0xaf, 0xac, 0xab, 0x00, 0xa8, /* 0xb8-0xbf */\n  0x91, 0x86, 0x8f, 0x8e, 0x00, 0x00, 0x00, 0x80, /* 0xc0-0xc7 */\n  0x92, 0x90, 0x89, 0x00, 0x98, 0x8b, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0xa5, 0xa9, 0x9f, 0x8c, 0x99, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x9d, 0x96, 0x00, 0x9a, 0x00, 0x00, 0xe1, /* 0xd8-0xdf */\n  0x85, 0xa0, 0x83, 0x84, 0x00, 0x00, 0x00, 0x87, /* 0xe0-0xe7 */\n  0x8a, 0x82, 0x88, 0x00, 0x8d, 0xa1, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0xa4, 0x95, 0xa2, 0x93, 0x94, 0x00, 0xf6, /* 0xf0-0xf7 */\n  0x00, 0x97, 0xa3, 0x00, 0x81, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char cp860_page03[56] = {\n  0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0xe8, 0x00, /* 0xa0-0xa7 */\n  0x00, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0xe0, 0x00, 0x00, 0xeb, 0xee, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0xe3, 0x00, 0x00, 0xe5, 0xe7, 0x00, 0xed, 0x00, /* 0xc0-0xc7 */\n};\nstatic const unsigned char cp860_page22[80] = {\n  0x00, 0xf9, 0xfb, 0x00, 0x00, 0x00, 0xec, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xf7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0xf0, 0x00, 0x00, 0xf3, 0xf2, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char cp860_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0xd5, 0xd6, 0xc9, 0xb8, 0xb7, 0xbb, /* 0x50-0x57 */\n  0xd4, 0xd3, 0xc8, 0xbe, 0xbd, 0xbc, 0xc6, 0xc7, /* 0x58-0x5f */\n  0xcc, 0xb5, 0xb6, 0xb9, 0xd1, 0xd2, 0xcb, 0xcf, /* 0x60-0x67 */\n  0xd0, 0xca, 0xd8, 0xd7, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xde, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp860_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = cp860_page00[wc-0x00a0];\n  else if (wc >= 0x0390 && wc < 0x03c8)\n    c = cp860_page03[wc-0x0390];\n  else if (wc == 0x207f)\n    c = 0xfc;\n  else if (wc == 0x20a7)\n    c = 0x9e;\n  else if (wc >= 0x2218 && wc < 0x2268)\n    c = cp860_page22[wc-0x2218];\n  else if (wc >= 0x2320 && wc < 0x2322)\n    c = wc-0x222c;\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp860_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp861.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP861\n */\n\nstatic const unsigned short cp861_2uni[128] = {\n  /* 0x80 */\n  0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x00e0, 0x00e5, 0x00e7,\n  0x00ea, 0x00eb, 0x00e8, 0x00d0, 0x00f0, 0x00de, 0x00c4, 0x00c5,\n  /* 0x90 */\n  0x00c9, 0x00e6, 0x00c6, 0x00f4, 0x00f6, 0x00fe, 0x00fb, 0x00dd,\n  0x00fd, 0x00d6, 0x00dc, 0x00f8, 0x00a3, 0x00d8, 0x20a7, 0x0192,\n  /* 0xa0 */\n  0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00c1, 0x00cd, 0x00d3, 0x00da,\n  0x00bf, 0x2310, 0x00ac, 0x00bd, 0x00bc, 0x00a1, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,\n  0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567,\n  /* 0xd0 */\n  0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b,\n  0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580,\n  /* 0xe0 */\n  0x03b1, 0x00df, 0x0393, 0x03c0, 0x03a3, 0x03c3, 0x00b5, 0x03c4,\n  0x03a6, 0x0398, 0x03a9, 0x03b4, 0x221e, 0x03c6, 0x03b5, 0x2229,\n  /* 0xf0 */\n  0x2261, 0x00b1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00f7, 0x2248,\n  0x00b0, 0x2219, 0x00b7, 0x221a, 0x207f, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp861_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp861_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp861_page00[96] = {\n  0xff, 0xad, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0xae, 0xaa, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0x00, 0x00, 0xe6, 0x00, 0xfa, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xaf, 0xac, 0xab, 0x00, 0xa8, /* 0xb8-0xbf */\n  0x00, 0xa4, 0x00, 0x00, 0x8e, 0x8f, 0x92, 0x80, /* 0xc0-0xc7 */\n  0x00, 0x90, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x00, /* 0xc8-0xcf */\n  0x8b, 0x00, 0x00, 0xa6, 0x00, 0x00, 0x99, 0x00, /* 0xd0-0xd7 */\n  0x9d, 0x00, 0xa7, 0x00, 0x9a, 0x97, 0x8d, 0xe1, /* 0xd8-0xdf */\n  0x85, 0xa0, 0x83, 0x00, 0x84, 0x86, 0x91, 0x87, /* 0xe0-0xe7 */\n  0x8a, 0x82, 0x88, 0x89, 0x00, 0xa1, 0x00, 0x00, /* 0xe8-0xef */\n  0x8c, 0x00, 0x00, 0xa2, 0x93, 0x00, 0x94, 0xf6, /* 0xf0-0xf7 */\n  0x9b, 0x00, 0xa3, 0x96, 0x81, 0x98, 0x95, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char cp861_page03[56] = {\n  0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0xe8, 0x00, /* 0xa0-0xa7 */\n  0x00, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0xe0, 0x00, 0x00, 0xeb, 0xee, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0xe3, 0x00, 0x00, 0xe5, 0xe7, 0x00, 0xed, 0x00, /* 0xc0-0xc7 */\n};\nstatic const unsigned char cp861_page22[80] = {\n  0x00, 0xf9, 0xfb, 0x00, 0x00, 0x00, 0xec, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xf7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0xf0, 0x00, 0x00, 0xf3, 0xf2, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char cp861_page23[24] = {\n  0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0xf4, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char cp861_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0xd5, 0xd6, 0xc9, 0xb8, 0xb7, 0xbb, /* 0x50-0x57 */\n  0xd4, 0xd3, 0xc8, 0xbe, 0xbd, 0xbc, 0xc6, 0xc7, /* 0x58-0x5f */\n  0xcc, 0xb5, 0xb6, 0xb9, 0xd1, 0xd2, 0xcb, 0xcf, /* 0x60-0x67 */\n  0xd0, 0xca, 0xd8, 0xd7, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xde, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp861_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = cp861_page00[wc-0x00a0];\n  else if (wc == 0x0192)\n    c = 0x9f;\n  else if (wc >= 0x0390 && wc < 0x03c8)\n    c = cp861_page03[wc-0x0390];\n  else if (wc == 0x207f)\n    c = 0xfc;\n  else if (wc == 0x20a7)\n    c = 0x9e;\n  else if (wc >= 0x2218 && wc < 0x2268)\n    c = cp861_page22[wc-0x2218];\n  else if (wc >= 0x2310 && wc < 0x2328)\n    c = cp861_page23[wc-0x2310];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp861_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp862.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP862\n */\n\nstatic const unsigned short cp862_2uni[128] = {\n  /* 0x80 */\n  0x05d0, 0x05d1, 0x05d2, 0x05d3, 0x05d4, 0x05d5, 0x05d6, 0x05d7,\n  0x05d8, 0x05d9, 0x05da, 0x05db, 0x05dc, 0x05dd, 0x05de, 0x05df,\n  /* 0x90 */\n  0x05e0, 0x05e1, 0x05e2, 0x05e3, 0x05e4, 0x05e5, 0x05e6, 0x05e7,\n  0x05e8, 0x05e9, 0x05ea, 0x00a2, 0x00a3, 0x00a5, 0x20a7, 0x0192,\n  /* 0xa0 */\n  0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00f1, 0x00d1, 0x00aa, 0x00ba,\n  0x00bf, 0x2310, 0x00ac, 0x00bd, 0x00bc, 0x00a1, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,\n  0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567,\n  /* 0xd0 */\n  0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b,\n  0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580,\n  /* 0xe0 */\n  0x03b1, 0x00df, 0x0393, 0x03c0, 0x03a3, 0x03c3, 0x00b5, 0x03c4,\n  0x03a6, 0x0398, 0x03a9, 0x03b4, 0x221e, 0x03c6, 0x03b5, 0x2229,\n  /* 0xf0 */\n  0x2261, 0x00b1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00f7, 0x2248,\n  0x00b0, 0x2219, 0x00b7, 0x221a, 0x207f, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp862_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp862_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp862_page00[96] = {\n  0xff, 0xad, 0x9b, 0x9c, 0x00, 0x9d, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0xa6, 0xae, 0xaa, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0x00, 0x00, 0xe6, 0x00, 0xfa, /* 0xb0-0xb7 */\n  0x00, 0x00, 0xa7, 0xaf, 0xac, 0xab, 0x00, 0xa8, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, /* 0xd8-0xdf */\n  0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0xa4, 0x00, 0xa2, 0x00, 0x00, 0x00, 0xf6, /* 0xf0-0xf7 */\n  0x00, 0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char cp862_page03[56] = {\n  0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0xe8, 0x00, /* 0xa0-0xa7 */\n  0x00, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0xe0, 0x00, 0x00, 0xeb, 0xee, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0xe3, 0x00, 0x00, 0xe5, 0xe7, 0x00, 0xed, 0x00, /* 0xc0-0xc7 */\n};\nstatic const unsigned char cp862_page22[80] = {\n  0x00, 0xf9, 0xfb, 0x00, 0x00, 0x00, 0xec, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xf7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0xf0, 0x00, 0x00, 0xf3, 0xf2, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char cp862_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0xd5, 0xd6, 0xc9, 0xb8, 0xb7, 0xbb, /* 0x50-0x57 */\n  0xd4, 0xd3, 0xc8, 0xbe, 0xbd, 0xbc, 0xc6, 0xc7, /* 0x58-0x5f */\n  0xcc, 0xb5, 0xb6, 0xb9, 0xd1, 0xd2, 0xcb, 0xcf, /* 0x60-0x67 */\n  0xd0, 0xca, 0xd8, 0xd7, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xde, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp862_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = cp862_page00[wc-0x00a0];\n  else if (wc == 0x0192)\n    c = 0x9f;\n  else if (wc >= 0x0390 && wc < 0x03c8)\n    c = cp862_page03[wc-0x0390];\n  else if (wc >= 0x05d0 && wc < 0x05eb)\n    c = wc-0x0550;\n  else if (wc == 0x207f)\n    c = 0xfc;\n  else if (wc == 0x20a7)\n    c = 0x9e;\n  else if (wc >= 0x2218 && wc < 0x2268)\n    c = cp862_page22[wc-0x2218];\n  else if (wc == 0x2310)\n    c = 0xa9;\n  else if (wc >= 0x2320 && wc < 0x2322)\n    c = wc-0x222c;\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp862_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp863.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP863\n */\n\nstatic const unsigned short cp863_2uni[128] = {\n  /* 0x80 */\n  0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00c2, 0x00e0, 0x00b6, 0x00e7,\n  0x00ea, 0x00eb, 0x00e8, 0x00ef, 0x00ee, 0x2017, 0x00c0, 0x00a7,\n  /* 0x90 */\n  0x00c9, 0x00c8, 0x00ca, 0x00f4, 0x00cb, 0x00cf, 0x00fb, 0x00f9,\n  0x00a4, 0x00d4, 0x00dc, 0x00a2, 0x00a3, 0x00d9, 0x00db, 0x0192,\n  /* 0xa0 */\n  0x00a6, 0x00b4, 0x00f3, 0x00fa, 0x00a8, 0x00b8, 0x00b3, 0x00af,\n  0x00ce, 0x2310, 0x00ac, 0x00bd, 0x00bc, 0x00be, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,\n  0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567,\n  /* 0xd0 */\n  0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b,\n  0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580,\n  /* 0xe0 */\n  0x03b1, 0x00df, 0x0393, 0x03c0, 0x03a3, 0x03c3, 0x00b5, 0x03c4,\n  0x03a6, 0x0398, 0x03a9, 0x03b4, 0x221e, 0x03c6, 0x03b5, 0x2229,\n  /* 0xf0 */\n  0x2261, 0x00b1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00f7, 0x2248,\n  0x00b0, 0x2219, 0x00b7, 0x221a, 0x207f, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp863_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp863_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp863_page00[96] = {\n  0xff, 0x00, 0x9b, 0x9c, 0x98, 0x00, 0xa0, 0x8f, /* 0xa0-0xa7 */\n  0xa4, 0x00, 0x00, 0xae, 0xaa, 0x00, 0x00, 0xa7, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0xa6, 0xa1, 0xe6, 0x86, 0xfa, /* 0xb0-0xb7 */\n  0xa5, 0x00, 0x00, 0xaf, 0xac, 0xab, 0xad, 0x00, /* 0xb8-0xbf */\n  0x8e, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x80, /* 0xc0-0xc7 */\n  0x91, 0x90, 0x92, 0x94, 0x00, 0x00, 0xa8, 0x95, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x9d, 0x00, 0x9e, 0x9a, 0x00, 0x00, 0xe1, /* 0xd8-0xdf */\n  0x85, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x87, /* 0xe0-0xe7 */\n  0x8a, 0x82, 0x88, 0x89, 0x00, 0x00, 0x8c, 0x8b, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0xa2, 0x93, 0x00, 0x00, 0xf6, /* 0xf0-0xf7 */\n  0x00, 0x97, 0xa3, 0x96, 0x81, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char cp863_page03[56] = {\n  0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0xe8, 0x00, /* 0xa0-0xa7 */\n  0x00, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0xe0, 0x00, 0x00, 0xeb, 0xee, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0xe3, 0x00, 0x00, 0xe5, 0xe7, 0x00, 0xed, 0x00, /* 0xc0-0xc7 */\n};\nstatic const unsigned char cp863_page22[80] = {\n  0x00, 0xf9, 0xfb, 0x00, 0x00, 0x00, 0xec, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xf7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0xf0, 0x00, 0x00, 0xf3, 0xf2, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char cp863_page23[24] = {\n  0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0xf4, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char cp863_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0xd5, 0xd6, 0xc9, 0xb8, 0xb7, 0xbb, /* 0x50-0x57 */\n  0xd4, 0xd3, 0xc8, 0xbe, 0xbd, 0xbc, 0xc6, 0xc7, /* 0x58-0x5f */\n  0xcc, 0xb5, 0xb6, 0xb9, 0xd1, 0xd2, 0xcb, 0xcf, /* 0x60-0x67 */\n  0xd0, 0xca, 0xd8, 0xd7, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xde, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp863_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = cp863_page00[wc-0x00a0];\n  else if (wc == 0x0192)\n    c = 0x9f;\n  else if (wc >= 0x0390 && wc < 0x03c8)\n    c = cp863_page03[wc-0x0390];\n  else if (wc == 0x2017)\n    c = 0x8d;\n  else if (wc == 0x207f)\n    c = 0xfc;\n  else if (wc >= 0x2218 && wc < 0x2268)\n    c = cp863_page22[wc-0x2218];\n  else if (wc >= 0x2310 && wc < 0x2328)\n    c = cp863_page23[wc-0x2310];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp863_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp864.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP864\n */\n\nstatic const unsigned short cp864_2uni_1[16] = {\n  /* 0x20 */\n  0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x066a, 0x0026, 0x0027,\n  0x0028, 0x0029, 0x002a, 0x002b, 0x002c, 0x002d, 0x002e, 0x002f,\n};\nstatic const unsigned short cp864_2uni_2[128] = {\n  /* 0x80 */\n  0x00b0, 0x00b7, 0x2219, 0x221a, 0x2592, 0x2500, 0x2502, 0x253c,\n  0x2524, 0x252c, 0x251c, 0x2534, 0x2510, 0x250c, 0x2514, 0x2518,\n  /* 0x90 */\n  0x03b2, 0x221e, 0x03c6, 0x00b1, 0x00bd, 0x00bc, 0x2248, 0x00ab,\n  0x00bb, 0xfef7, 0xfef8, 0xfffd, 0xfffd, 0xfefb, 0xfefc, 0xfffd,\n  /* 0xa0 */\n  0x00a0, 0x00ad, 0xfe82, 0x00a3, 0x00a4, 0xfe84, 0xfffd, 0xfffd,\n  0xfe8e, 0xfe8f, 0xfe95, 0xfe99, 0x060c, 0xfe9d, 0xfea1, 0xfea5,\n  /* 0xb0 */\n  0x0660, 0x0661, 0x0662, 0x0663, 0x0664, 0x0665, 0x0666, 0x0667,\n  0x0668, 0x0669, 0xfed1, 0x061b, 0xfeb1, 0xfeb5, 0xfeb9, 0x061f,\n  /* 0xc0 */\n  0x00a2, 0xfe80, 0xfe81, 0xfe83, 0xfe85, 0xfeca, 0xfe8b, 0xfe8d,\n  0xfe91, 0xfe93, 0xfe97, 0xfe9b, 0xfe9f, 0xfea3, 0xfea7, 0xfea9,\n  /* 0xd0 */\n  0xfeab, 0xfead, 0xfeaf, 0xfeb3, 0xfeb7, 0xfebb, 0xfebf, 0xfec1,\n  0xfec5, 0xfecb, 0xfecf, 0x00a6, 0x00ac, 0x00f7, 0x00d7, 0xfec9,\n  /* 0xe0 */\n  0x0640, 0xfed3, 0xfed7, 0xfedb, 0xfedf, 0xfee3, 0xfee7, 0xfeeb,\n  0xfeed, 0xfeef, 0xfef3, 0xfebd, 0xfecc, 0xfece, 0xfecd, 0xfee1,\n  /* 0xf0 */\n  0xfe7d, 0x0651, 0xfee5, 0xfee9, 0xfeec, 0xfef0, 0xfef2, 0xfed0,\n  0xfed5, 0xfef5, 0xfef6, 0xfedd, 0xfed9, 0xfef1, 0x25a0, 0xfffd,\n};\n\nstatic int\ncp864_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x20) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else if (c < 0x30) {\n    *pwc = (ucs4_t) cp864_2uni_1[c-0x20];\n    return 1;\n  }\n  else if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp864_2uni_2[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp864_page00[8] = {\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x00, 0x26, 0x27, /* 0x20-0x27 */\n};\nstatic const unsigned char cp864_page00_1[88] = {\n  0xa0, 0x00, 0xc0, 0xa3, 0xa4, 0x00, 0xdb, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x97, 0xdc, 0xa1, 0x00, 0x00, /* 0xa8-0xaf */\n  0x80, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x98, 0x95, 0x94, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, /* 0xf0-0xf7 */\n};\nstatic const unsigned char cp864_page06[104] = {\n  0x00, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0xbf, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0x60-0x67 */\n  0xb8, 0xb9, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n};\nstatic const unsigned char cp864_page22[56] = {\n  0x00, 0x82, 0x83, 0x00, 0x00, 0x00, 0x91, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n};\nstatic const unsigned char cp864_page25[64] = {\n  0x85, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x8c, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x8f, 0x00, 0x00, 0x00, 0x8a, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\nstatic const unsigned char cp864_pagefe[136] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, /* 0x78-0x7f */\n  0xc1, 0xc2, 0xa2, 0xc3, 0xa5, 0xc4, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0xc6, 0x00, 0xc7, 0xa8, 0xa9, /* 0x88-0x8f */\n  0x00, 0xc8, 0x00, 0xc9, 0x00, 0xaa, 0x00, 0xca, /* 0x90-0x97 */\n  0x00, 0xab, 0x00, 0xcb, 0x00, 0xad, 0x00, 0xcc, /* 0x98-0x9f */\n  0x00, 0xae, 0x00, 0xcd, 0x00, 0xaf, 0x00, 0xce, /* 0xa0-0xa7 */\n  0x00, 0xcf, 0x00, 0xd0, 0x00, 0xd1, 0x00, 0xd2, /* 0xa8-0xaf */\n  0x00, 0xbc, 0x00, 0xd3, 0x00, 0xbd, 0x00, 0xd4, /* 0xb0-0xb7 */\n  0x00, 0xbe, 0x00, 0xd5, 0x00, 0xeb, 0x00, 0xd6, /* 0xb8-0xbf */\n  0x00, 0xd7, 0x00, 0x00, 0x00, 0xd8, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0xdf, 0xc5, 0xd9, 0xec, 0xee, 0xed, 0xda, /* 0xc8-0xcf */\n  0xf7, 0xba, 0x00, 0xe1, 0x00, 0xf8, 0x00, 0xe2, /* 0xd0-0xd7 */\n  0x00, 0xfc, 0x00, 0xe3, 0x00, 0xfb, 0x00, 0xe4, /* 0xd8-0xdf */\n  0x00, 0xef, 0x00, 0xe5, 0x00, 0xf2, 0x00, 0xe6, /* 0xe0-0xe7 */\n  0x00, 0xf3, 0x00, 0xe7, 0xf4, 0xe8, 0x00, 0xe9, /* 0xe8-0xef */\n  0xf5, 0xfd, 0xf6, 0xea, 0x00, 0xf9, 0xfa, 0x99, /* 0xf0-0xf7 */\n  0x9a, 0x00, 0x00, 0x9d, 0x9e, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\n\nstatic int\ncp864_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0020) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x0020 && wc < 0x0028)\n    c = cp864_page00[wc-0x0020];\n  else if (wc >= 0x0028 && wc < 0x0080)\n    c = wc;\n  else if (wc >= 0x00a0 && wc < 0x00f8)\n    c = cp864_page00_1[wc-0x00a0];\n  else if (wc == 0x03b2)\n    c = 0x90;\n  else if (wc == 0x03c6)\n    c = 0x92;\n  else if (wc >= 0x0608 && wc < 0x0670)\n    c = cp864_page06[wc-0x0608];\n  else if (wc >= 0x2218 && wc < 0x2250)\n    c = cp864_page22[wc-0x2218];\n  else if (wc >= 0x2500 && wc < 0x2540)\n    c = cp864_page25[wc-0x2500];\n  else if (wc == 0x2592)\n    c = 0x84;\n  else if (wc == 0x25a0)\n    c = 0xfe;\n  else if (wc >= 0xfe78 && wc < 0xff00)\n    c = cp864_pagefe[wc-0xfe78];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp865.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP865\n */\n\nstatic const unsigned short cp865_2uni[128] = {\n  /* 0x80 */\n  0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x00e0, 0x00e5, 0x00e7,\n  0x00ea, 0x00eb, 0x00e8, 0x00ef, 0x00ee, 0x00ec, 0x00c4, 0x00c5,\n  /* 0x90 */\n  0x00c9, 0x00e6, 0x00c6, 0x00f4, 0x00f6, 0x00f2, 0x00fb, 0x00f9,\n  0x00ff, 0x00d6, 0x00dc, 0x00f8, 0x00a3, 0x00d8, 0x20a7, 0x0192,\n  /* 0xa0 */\n  0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00f1, 0x00d1, 0x00aa, 0x00ba,\n  0x00bf, 0x2310, 0x00ac, 0x00bd, 0x00bc, 0x00a1, 0x00ab, 0x00a4,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,\n  0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567,\n  /* 0xd0 */\n  0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b,\n  0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580,\n  /* 0xe0 */\n  0x03b1, 0x00df, 0x0393, 0x03c0, 0x03a3, 0x03c3, 0x00b5, 0x03c4,\n  0x03a6, 0x0398, 0x03a9, 0x03b4, 0x221e, 0x03c6, 0x03b5, 0x2229,\n  /* 0xf0 */\n  0x2261, 0x00b1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00f7, 0x2248,\n  0x00b0, 0x2219, 0x00b7, 0x221a, 0x207f, 0x00b2, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp865_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp865_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char cp865_page00[96] = {\n  0xff, 0xad, 0x00, 0x9c, 0xaf, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0xa6, 0xae, 0xaa, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0xfd, 0x00, 0x00, 0xe6, 0x00, 0xfa, /* 0xb0-0xb7 */\n  0x00, 0x00, 0xa7, 0x00, 0xac, 0xab, 0x00, 0xa8, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x8e, 0x8f, 0x92, 0x80, /* 0xc0-0xc7 */\n  0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, /* 0xd0-0xd7 */\n  0x9d, 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0xe1, /* 0xd8-0xdf */\n  0x85, 0xa0, 0x83, 0x00, 0x84, 0x86, 0x91, 0x87, /* 0xe0-0xe7 */\n  0x8a, 0x82, 0x88, 0x89, 0x8d, 0xa1, 0x8c, 0x8b, /* 0xe8-0xef */\n  0x00, 0xa4, 0x95, 0xa2, 0x93, 0x00, 0x94, 0xf6, /* 0xf0-0xf7 */\n  0x9b, 0x97, 0xa3, 0x96, 0x81, 0x00, 0x00, 0x98, /* 0xf8-0xff */\n};\nstatic const unsigned char cp865_page03[56] = {\n  0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0xe8, 0x00, /* 0xa0-0xa7 */\n  0x00, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0xe0, 0x00, 0x00, 0xeb, 0xee, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0xe3, 0x00, 0x00, 0xe5, 0xe7, 0x00, 0xed, 0x00, /* 0xc0-0xc7 */\n};\nstatic const unsigned char cp865_page22[80] = {\n  0x00, 0xf9, 0xfb, 0x00, 0x00, 0x00, 0xec, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xf7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0xf0, 0x00, 0x00, 0xf3, 0xf2, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char cp865_page23[24] = {\n  0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0xf4, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char cp865_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0xd5, 0xd6, 0xc9, 0xb8, 0xb7, 0xbb, /* 0x50-0x57 */\n  0xd4, 0xd3, 0xc8, 0xbe, 0xbd, 0xbc, 0xc6, 0xc7, /* 0x58-0x5f */\n  0xcc, 0xb5, 0xb6, 0xb9, 0xd1, 0xd2, 0xcb, 0xcf, /* 0x60-0x67 */\n  0xd0, 0xca, 0xd8, 0xd7, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xde, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp865_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = cp865_page00[wc-0x00a0];\n  else if (wc == 0x0192)\n    c = 0x9f;\n  else if (wc >= 0x0390 && wc < 0x03c8)\n    c = cp865_page03[wc-0x0390];\n  else if (wc == 0x207f)\n    c = 0xfc;\n  else if (wc == 0x20a7)\n    c = 0x9e;\n  else if (wc >= 0x2218 && wc < 0x2268)\n    c = cp865_page22[wc-0x2218];\n  else if (wc >= 0x2310 && wc < 0x2328)\n    c = cp865_page23[wc-0x2310];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp865_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp866.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP866\n */\n\nstatic const unsigned short cp866_2uni[80] = {\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,\n  0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567,\n  /* 0xd0 */\n  0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b,\n  0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580,\n  /* 0xe0 */\n  0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,\n  0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f,\n  /* 0xf0 */\n  0x0401, 0x0451, 0x0404, 0x0454, 0x0407, 0x0457, 0x040e, 0x045e,\n  0x00b0, 0x2219, 0x00b7, 0x221a, 0x2116, 0x00a4, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp866_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else if (c < 0xb0)\n    *pwc = (ucs4_t) c + 0x0390;\n  else\n    *pwc = (ucs4_t) cp866_2uni[c-0xb0];\n  return 1;\n}\n\nstatic const unsigned char cp866_page00[24] = {\n  0xff, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, /* 0xb0-0xb7 */\n};\nstatic const unsigned char cp866_page04[96] = {\n  0x00, 0xf0, 0x00, 0x00, 0xf2, 0x00, 0x00, 0xf4, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0x00, /* 0x08-0x0f */\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /* 0x10-0x17 */\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* 0x18-0x1f */\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, /* 0x20-0x27 */\n  0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, /* 0x28-0x2f */\n  0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, /* 0x30-0x37 */\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, /* 0x38-0x3f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x40-0x47 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x48-0x4f */\n  0x00, 0xf1, 0x00, 0x00, 0xf3, 0x00, 0x00, 0xf5, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x00, /* 0x58-0x5f */\n};\nstatic const unsigned char cp866_page22[8] = {\n  0x00, 0xf9, 0xfb, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n};\nstatic const unsigned char cp866_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0xd5, 0xd6, 0xc9, 0xb8, 0xb7, 0xbb, /* 0x50-0x57 */\n  0xd4, 0xd3, 0xc8, 0xbe, 0xbd, 0xbc, 0xc6, 0xc7, /* 0x58-0x5f */\n  0xcc, 0xb5, 0xb6, 0xb9, 0xd1, 0xd2, 0xcb, 0xcf, /* 0x60-0x67 */\n  0xd0, 0xca, 0xd8, 0xd7, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xde, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp866_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00b8)\n    c = cp866_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x0460)\n    c = cp866_page04[wc-0x0400];\n  else if (wc == 0x2116)\n    c = 0xfc;\n  else if (wc >= 0x2218 && wc < 0x2220)\n    c = cp866_page22[wc-0x2218];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp866_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp869.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP869\n */\n\nstatic const unsigned short cp869_2uni[128] = {\n  /* 0x80 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x0386, 0xfffd,\n  0x00b7, 0x00ac, 0x00a6, 0x2018, 0x2019, 0x0388, 0x2015, 0x0389,\n  /* 0x90 */\n  0x038a, 0x03aa, 0x038c, 0xfffd, 0xfffd, 0x038e, 0x03ab, 0x00a9,\n  0x038f, 0x00b2, 0x00b3, 0x03ac, 0x00a3, 0x03ad, 0x03ae, 0x03af,\n  /* 0xa0 */\n  0x03ca, 0x0390, 0x03cc, 0x03cd, 0x0391, 0x0392, 0x0393, 0x0394,\n  0x0395, 0x0396, 0x0397, 0x00bd, 0x0398, 0x0399, 0x00ab, 0x00bb,\n  /* 0xb0 */\n  0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x039a, 0x039b, 0x039c,\n  0x039d, 0x2563, 0x2551, 0x2557, 0x255d, 0x039e, 0x039f, 0x2510,\n  /* 0xc0 */\n  0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x03a0, 0x03a1,\n  0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x03a3,\n  /* 0xd0 */\n  0x03a4, 0x03a5, 0x03a6, 0x03a7, 0x03a8, 0x03a9, 0x03b1, 0x03b2,\n  0x03b3, 0x2518, 0x250c, 0x2588, 0x2584, 0x03b4, 0x03b5, 0x2580,\n  /* 0xe0 */\n  0x03b6, 0x03b7, 0x03b8, 0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd,\n  0x03be, 0x03bf, 0x03c0, 0x03c1, 0x03c3, 0x03c2, 0x03c4, 0x0384,\n  /* 0xf0 */\n  0x00ad, 0x00b1, 0x03c5, 0x03c6, 0x03c7, 0x00a7, 0x03c8, 0x0385,\n  0x00b0, 0x00a8, 0x03c9, 0x03cb, 0x03b0, 0x03ce, 0x25a0, 0x00a0,\n};\n\nstatic int\ncp869_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp869_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp869_page00[32] = {\n  0xff, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x8a, 0xf5, /* 0xa0-0xa7 */\n  0xf9, 0x97, 0x00, 0xae, 0x89, 0xf0, 0x00, 0x00, /* 0xa8-0xaf */\n  0xf8, 0xf1, 0x99, 0x9a, 0x00, 0x00, 0x00, 0x88, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xaf, 0x00, 0xab, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char cp869_page03[80] = {\n  0x00, 0x00, 0x00, 0x00, 0xef, 0xf7, 0x86, 0x00, /* 0x80-0x87 */\n  0x8d, 0x8f, 0x90, 0x00, 0x92, 0x00, 0x95, 0x98, /* 0x88-0x8f */\n  0xa1, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, /* 0x90-0x97 */\n  0xac, 0xad, 0xb5, 0xb6, 0xb7, 0xb8, 0xbd, 0xbe, /* 0x98-0x9f */\n  0xc6, 0xc7, 0x00, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, /* 0xa0-0xa7 */\n  0xd4, 0xd5, 0x91, 0x96, 0x9b, 0x9d, 0x9e, 0x9f, /* 0xa8-0xaf */\n  0xfc, 0xd6, 0xd7, 0xd8, 0xdd, 0xde, 0xe0, 0xe1, /* 0xb0-0xb7 */\n  0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, /* 0xb8-0xbf */\n  0xea, 0xeb, 0xed, 0xec, 0xee, 0xf2, 0xf3, 0xf4, /* 0xc0-0xc7 */\n  0xf6, 0xfa, 0xa0, 0xfb, 0xa2, 0xa3, 0xfd, 0x00, /* 0xc8-0xcf */\n};\nstatic const unsigned char cp869_page20[16] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, /* 0x10-0x17 */\n  0x8b, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n};\nstatic const unsigned char cp869_page25[168] = {\n  0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xcd, 0xba, 0x00, 0x00, 0xc9, 0x00, 0x00, 0xbb, /* 0x50-0x57 */\n  0x00, 0x00, 0xc8, 0x00, 0x00, 0xbc, 0x00, 0x00, /* 0x58-0x5f */\n  0xcc, 0x00, 0x00, 0xb9, 0x00, 0x00, 0xcb, 0x00, /* 0x60-0x67 */\n  0x00, 0xca, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\ncp869_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = cp869_page00[wc-0x00a0];\n  else if (wc >= 0x0380 && wc < 0x03d0)\n    c = cp869_page03[wc-0x0380];\n  else if (wc >= 0x2010 && wc < 0x2020)\n    c = cp869_page20[wc-0x2010];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = cp869_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp874.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP874\n */\n\nstatic const unsigned short cp874_2uni[128] = {\n  /* 0x80 */\n  0x20ac, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x2026, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x90 */\n  0xfffd, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xa0 */\n  0x00a0, 0x0e01, 0x0e02, 0x0e03, 0x0e04, 0x0e05, 0x0e06, 0x0e07,\n  0x0e08, 0x0e09, 0x0e0a, 0x0e0b, 0x0e0c, 0x0e0d, 0x0e0e, 0x0e0f,\n  /* 0xb0 */\n  0x0e10, 0x0e11, 0x0e12, 0x0e13, 0x0e14, 0x0e15, 0x0e16, 0x0e17,\n  0x0e18, 0x0e19, 0x0e1a, 0x0e1b, 0x0e1c, 0x0e1d, 0x0e1e, 0x0e1f,\n  /* 0xc0 */\n  0x0e20, 0x0e21, 0x0e22, 0x0e23, 0x0e24, 0x0e25, 0x0e26, 0x0e27,\n  0x0e28, 0x0e29, 0x0e2a, 0x0e2b, 0x0e2c, 0x0e2d, 0x0e2e, 0x0e2f,\n  /* 0xd0 */\n  0x0e30, 0x0e31, 0x0e32, 0x0e33, 0x0e34, 0x0e35, 0x0e36, 0x0e37,\n  0x0e38, 0x0e39, 0x0e3a, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x0e3f,\n  /* 0xe0 */\n  0x0e40, 0x0e41, 0x0e42, 0x0e43, 0x0e44, 0x0e45, 0x0e46, 0x0e47,\n  0x0e48, 0x0e49, 0x0e4a, 0x0e4b, 0x0e4c, 0x0e4d, 0x0e4e, 0x0e4f,\n  /* 0xf0 */\n  0x0e50, 0x0e51, 0x0e52, 0x0e53, 0x0e54, 0x0e55, 0x0e56, 0x0e57,\n  0x0e58, 0x0e59, 0x0e5a, 0x0e5b, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n};\n\nstatic int\ncp874_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = cp874_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char cp874_page0e[96] = {\n  0x00, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, /* 0x00-0x07 */\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, /* 0x08-0x0f */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0x10-0x17 */\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, /* 0x18-0x1f */\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x20-0x27 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x28-0x2f */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0x30-0x37 */\n  0xd8, 0xd9, 0xda, 0x00, 0x00, 0x00, 0x00, 0xdf, /* 0x38-0x3f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x40-0x47 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x48-0x4f */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0x50-0x57 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n};\nstatic const unsigned char cp874_page20[24] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x00, 0x00, 0x93, 0x94, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n};\n\nstatic int\ncp874_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc == 0x00a0)\n    c = 0xa0;\n  else if (wc >= 0x0e00 && wc < 0x0e60)\n    c = cp874_page0e[wc-0x0e00];\n  else if (wc >= 0x2010 && wc < 0x2028)\n    c = cp874_page20[wc-0x2010];\n  else if (wc == 0x20ac)\n    c = 0x80;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp922.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP922\n */\n\nstatic const unsigned short cp922_2uni_1[16] = {\n  /* 0xa0 */\n  0x00a0, 0x00a1, 0x00a2, 0x00a3, 0x00a4, 0x00a5, 0x00a6, 0x00a7,\n  0x00a8, 0x00a9, 0x00aa, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x203e,\n};\nstatic const unsigned short cp922_2uni_2[16] = {\n  /* 0xd0 */\n  0x0160, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x00d7,\n  0x00d8, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x00dd, 0x017d, 0x00df,\n};\nstatic const unsigned short cp922_2uni_3[16] = {\n  /* 0xf0 */\n  0x0161, 0x00f1, 0x00f2, 0x00f3, 0x00f4, 0x00f5, 0x00f6, 0x00f7,\n  0x00f8, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x00fd, 0x017e, 0x00ff,\n};\n\nstatic int\ncp922_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0)\n    *pwc = (ucs4_t) c;\n  else if (c < 0xb0)\n    *pwc = (ucs4_t) cp922_2uni_1[c-0xa0];\n  else if (c < 0xd0)\n    *pwc = (ucs4_t) c;\n  else if (c < 0xe0)\n    *pwc = (ucs4_t) cp922_2uni_2[c-0xd0];\n  else if (c < 0xf0)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) cp922_2uni_3[c-0xf0];\n  return 1;\n}\n\nstatic const unsigned char cp922_page00[88] = {\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0x00, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, /* 0xb8-0xbf */\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0xc0-0xc7 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0xc8-0xcf */\n  0x00, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0xd0-0xd7 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0x00, 0xdf, /* 0xd8-0xdf */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0xe0-0xe7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0xe8-0xef */\n  0x00, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0xf0-0xf7 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0x00, 0xff, /* 0xf8-0xff */\n};\nstatic const unsigned char cp922_page01[32] = {\n  0xd0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0xfe, 0x00, /* 0x78-0x7f */\n};\n\nstatic int\ncp922_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a8) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a8 && wc < 0x0100)\n    c = cp922_page00[wc-0x00a8];\n  else if (wc >= 0x0160 && wc < 0x0180)\n    c = cp922_page01[wc-0x0160];\n  else if (wc == 0x203e)\n    c = 0xaf;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp932.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2005, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP932\n */\n\n/*\n * Microsoft CP932 is a slightly extended version of SHIFT_JIS.\n * The differences between the EASTASIA/JIS/SHIFTJIS.TXT and the\n * VENDORS/MICSFT/WINDOWS/CP932.TXT tables found on ftp.unicode.org are\n * as follows:\n *\n * 1. CP932 uses ASCII, not JISX0201 Roman.\n *\n * 2. Some characters in the JISX0208 range are defined differently:\n *\n *     code   SHIFTJIS.TXT                   CP932.TXT\n *    0x815F  0x005C # REVERSE SOLIDUS       0xFF3C # FULLWIDTH REVERSE SOLIDUS\n *    0x8160  0x301C # WAVE DASH             0xFF5E # FULLWIDTH TILDE\n *    0x8161  0x2016 # DOUBLE VERTICAL LINE  0x2225 # PARALLEL TO\n *    0x817C  0x2212 # MINUS SIGN            0xFF0D # FULLWIDTH HYPHEN-MINUS\n *    0x8191  0x00A2 # CENT SIGN             0xFFE0 # FULLWIDTH CENT SIGN\n *    0x8192  0x00A3 # POUND SIGN            0xFFE1 # FULLWIDTH POUND SIGN\n *    0x81CA  0x00AC # NOT SIGN              0xFFE2 # FULLWIDTH NOT SIGN\n *\n *    We don't implement the latter 6 of these changes, only the first one.\n *    SHIFTJIS.TXT makes more sense. However, as a compromise with user\n *    expectation, we implement the middle 5 of these changes in the\n *    Unicode to CP932 direction. We don't implement the last one at all,\n *    because it would collide with the mapping of 0xFA54.\n *\n * 3. A few new rows. See cp932ext.h.\n *\n * Many variants of CP932 (in GNU libc, JDK, OSF/1, Windows-2000, ICU) also\n * add:\n *\n * 4. Private area mappings:\n *\n *              code                 Unicode\n *    0x{F0..F9}{40..7E,80..FC}  U+E000..U+E757\n *\n * We add them too because, although there are backward compatibility problems\n * when a character from a private area is moved to an official Unicode code\n * point, they are useful for some people in practice.\n */\n\n#include \"cp932ext.h\"\n\n/*\n   Conversion between SJIS codes (s1,s2) and JISX0208 codes (c1,c2):\n   Example. (s1,s2) = 0x8140, (c1,c2) = 0x2121.\n   0x81 <= s1 <= 0x9F || 0xE0 <= s1 <= 0xEA,\n   0x40 <= s2 <= 0x7E || 0x80 <= s2 <= 0xFC,\n   0x21 <= c1 <= 0x74, 0x21 <= c2 <= 0x7E.\n   Invariant:\n     94*2*(s1 < 0xE0 ? s1-0x81 : s1-0xC1) + (s2 < 0x80 ? s2-0x40 : s2-0x41)\n     = 94*(c1-0x21)+(c2-0x21)\n   Conversion (s1,s2) -> (c1,c2):\n     t1 := (s1 < 0xE0 ? s1-0x81 : s1-0xC1)\n     t2 := (s2 < 0x80 ? s2-0x40 : s2-0x41)\n     c1 := 2*t1 + (t2 < 0x5E ? 0 : 1) + 0x21\n     c2 := (t2 < 0x5E ? t2 : t2-0x5E) + 0x21\n   Conversion (c1,c2) -> (s1,s2):\n     t1 := (c1 - 0x21) >> 1\n     t2 := ((c1 - 0x21) & 1) * 0x5E + (c2 - 0x21)\n     s1 := (t1 < 0x1F ? t1+0x81 : t1+0xC1)\n     s2 := (t2 < 0x3F ? t2+0x40 : t2+0x41)\n */\n\nstatic int\ncp932_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  else if (c >= 0xa1 && c <= 0xdf)\n    return jisx0201_mbtowc(conv,pwc,s,n);\n  else {\n    unsigned char s1, s2;\n    s1 = c;\n    if ((s1 >= 0x81 && s1 <= 0x9f && s1 != 0x87) || (s1 >= 0xe0 && s1 <= 0xea)) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      s2 = s[1];\n      if ((s2 >= 0x40 && s2 <= 0x7e) || (s2 >= 0x80 && s2 <= 0xfc)) {\n        unsigned char t1 = (s1 < 0xe0 ? s1-0x81 : s1-0xc1);\n        unsigned char t2 = (s2 < 0x80 ? s2-0x40 : s2-0x41);\n        unsigned char buf[2];\n        buf[0] = 2*t1 + (t2 < 0x5e ? 0 : 1) + 0x21;\n        buf[1] = (t2 < 0x5e ? t2 : t2-0x5e) + 0x21;\n        return jisx0208_mbtowc(conv,pwc,buf,2);\n      }\n    } else if ((s1 == 0x87) || (s1 >= 0xed && s1 <= 0xee) || (s1 >= 0xfa)) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      return cp932ext_mbtowc(conv,pwc,s,2);\n    } else if (s1 >= 0xf0 && s1 <= 0xf9) {\n      /* User-defined range. See\n       * Ken Lunde's \"CJKV Information Processing\", table 4-66, p. 206. */\n      if (n < 2)\n        return RET_TOOFEW(0);\n      s2 = s[1];\n      if ((s2 >= 0x40 && s2 <= 0x7e) || (s2 >= 0x80 && s2 <= 0xfc)) {\n        *pwc = 0xe000 + 188*(s1 - 0xf0) + (s2 < 0x80 ? s2-0x40 : s2-0x41);\n        return 2;\n      }\n    }\n    return RET_ILSEQ;\n  }\n}\n\nstatic int\ncp932_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Try ASCII. */\n  ret = ascii_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    unsigned char c;\n    if (ret != 1) abort();\n    c = buf[0];\n    if (c < 0x80) {\n      r[0] = c;\n      return 1;\n    }\n  }\n\n  /* Try JIS X 0201-1976 Katakana. */\n  ret = jisx0201_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    unsigned char c;\n    if (ret != 1) abort();\n    c = buf[0];\n    if (c >= 0xa1 && c <= 0xdf) {\n      r[0] = c;\n      return 1;\n    }\n  }\n\n  /* Try JIS X 0208-1990. */\n  ret = jisx0208_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    unsigned char c1, c2;\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    c1 = buf[0];\n    c2 = buf[1];\n    if ((c1 >= 0x21 && c1 <= 0x74) && (c2 >= 0x21 && c2 <= 0x7e)) {\n      unsigned char t1 = (c1 - 0x21) >> 1;\n      unsigned char t2 = (((c1 - 0x21) & 1) ? 0x5e : 0) + (c2 - 0x21);\n      r[0] = (t1 < 0x1f ? t1+0x81 : t1+0xc1);\n      r[1] = (t2 < 0x3f ? t2+0x40 : t2+0x41);\n      return 2;\n    }\n  }\n\n  /* Try CP932 extensions. */\n  ret = cp932ext_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0];\n    r[1] = buf[1];\n    return 2;\n  }\n\n  /* User-defined range. See\n   * Ken Lunde's \"CJKV Information Processing\", table 4-66, p. 206. */\n  if (wc >= 0xe000 && wc < 0xe758) {\n    unsigned char c1, c2;\n    if (n < 2)\n      return RET_TOOSMALL;\n    c1 = (unsigned int) (wc - 0xe000) / 188;\n    c2 = (unsigned int) (wc - 0xe000) % 188;\n    r[0] = c1+0xf0;\n    r[1] = (c2 < 0x3f ? c2+0x40 : c2+0x41);\n    return 2;\n  }\n\n  /* Irreversible mappings.  */\n  if (wc == 0xff5e) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x81;\n    r[1] = 0x60;\n    return 2;\n  }\n  if (wc == 0x2225) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x81;\n    r[1] = 0x61;\n    return 2;\n  }\n  if (wc == 0xff0d) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x81;\n    r[1] = 0x7c;\n    return 2;\n  }\n  if (wc == 0xffe0) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x81;\n    r[1] = 0x91;\n    return 2;\n  }\n  if (wc == 0xffe1) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x81;\n    r[1] = 0x92;\n    return 2;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp932ext.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP932 extensions\n */\n\nstatic const unsigned short cp932ext_2uni_page87[92] = {\n  /* 0x87 */\n  0x2460, 0x2461, 0x2462, 0x2463, 0x2464, 0x2465, 0x2466, 0x2467,\n  0x2468, 0x2469, 0x246a, 0x246b, 0x246c, 0x246d, 0x246e, 0x246f,\n  0x2470, 0x2471, 0x2472, 0x2473, 0x2160, 0x2161, 0x2162, 0x2163,\n  0x2164, 0x2165, 0x2166, 0x2167, 0x2168, 0x2169, 0xfffd, 0x3349,\n  0x3314, 0x3322, 0x334d, 0x3318, 0x3327, 0x3303, 0x3336, 0x3351,\n  0x3357, 0x330d, 0x3326, 0x3323, 0x332b, 0x334a, 0x333b, 0x339c,\n  0x339d, 0x339e, 0x338e, 0x338f, 0x33c4, 0x33a1, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x337b, 0x301d,\n  0x301f, 0x2116, 0x33cd, 0x2121, 0x32a4, 0x32a5, 0x32a6, 0x32a7,\n  0x32a8, 0x3231, 0x3232, 0x3239, 0x337e, 0x337d, 0x337c, 0x2252,\n  0x2261, 0x222b, 0x222e, 0x2211, 0x221a, 0x22a5, 0x2220, 0x221f,\n  0x22bf, 0x2235, 0x2229, 0x222a,\n};\nstatic const unsigned short cp932ext_2uni_pageed[376] = {\n  /* 0xed */\n  0x7e8a, 0x891c, 0x9348, 0x9288, 0x84dc, 0x4fc9, 0x70bb, 0x6631,\n  0x68c8, 0x92f9, 0x66fb, 0x5f45, 0x4e28, 0x4ee1, 0x4efc, 0x4f00,\n  0x4f03, 0x4f39, 0x4f56, 0x4f92, 0x4f8a, 0x4f9a, 0x4f94, 0x4fcd,\n  0x5040, 0x5022, 0x4fff, 0x501e, 0x5046, 0x5070, 0x5042, 0x5094,\n  0x50f4, 0x50d8, 0x514a, 0x5164, 0x519d, 0x51be, 0x51ec, 0x5215,\n  0x529c, 0x52a6, 0x52c0, 0x52db, 0x5300, 0x5307, 0x5324, 0x5372,\n  0x5393, 0x53b2, 0x53dd, 0xfa0e, 0x549c, 0x548a, 0x54a9, 0x54ff,\n  0x5586, 0x5759, 0x5765, 0x57ac, 0x57c8, 0x57c7, 0xfa0f, 0xfa10,\n  0x589e, 0x58b2, 0x590b, 0x5953, 0x595b, 0x595d, 0x5963, 0x59a4,\n  0x59ba, 0x5b56, 0x5bc0, 0x752f, 0x5bd8, 0x5bec, 0x5c1e, 0x5ca6,\n  0x5cba, 0x5cf5, 0x5d27, 0x5d53, 0xfa11, 0x5d42, 0x5d6d, 0x5db8,\n  0x5db9, 0x5dd0, 0x5f21, 0x5f34, 0x5f67, 0x5fb7, 0x5fde, 0x605d,\n  0x6085, 0x608a, 0x60de, 0x60d5, 0x6120, 0x60f2, 0x6111, 0x6137,\n  0x6130, 0x6198, 0x6213, 0x62a6, 0x63f5, 0x6460, 0x649d, 0x64ce,\n  0x654e, 0x6600, 0x6615, 0x663b, 0x6609, 0x662e, 0x661e, 0x6624,\n  0x6665, 0x6657, 0x6659, 0xfa12, 0x6673, 0x6699, 0x66a0, 0x66b2,\n  0x66bf, 0x66fa, 0x670e, 0xf929, 0x6766, 0x67bb, 0x6852, 0x67c0,\n  0x6801, 0x6844, 0x68cf, 0xfa13, 0x6968, 0xfa14, 0x6998, 0x69e2,\n  0x6a30, 0x6a6b, 0x6a46, 0x6a73, 0x6a7e, 0x6ae2, 0x6ae4, 0x6bd6,\n  0x6c3f, 0x6c5c, 0x6c86, 0x6c6f, 0x6cda, 0x6d04, 0x6d87, 0x6d6f,\n  0x6d96, 0x6dac, 0x6dcf, 0x6df8, 0x6df2, 0x6dfc, 0x6e39, 0x6e5c,\n  0x6e27, 0x6e3c, 0x6ebf, 0x6f88, 0x6fb5, 0x6ff5, 0x7005, 0x7007,\n  0x7028, 0x7085, 0x70ab, 0x710f, 0x7104, 0x715c, 0x7146, 0x7147,\n  0xfa15, 0x71c1, 0x71fe, 0x72b1,\n  /* 0xee */\n  0x72be, 0x7324, 0xfa16, 0x7377, 0x73bd, 0x73c9, 0x73d6, 0x73e3,\n  0x73d2, 0x7407, 0x73f5, 0x7426, 0x742a, 0x7429, 0x742e, 0x7462,\n  0x7489, 0x749f, 0x7501, 0x756f, 0x7682, 0x769c, 0x769e, 0x769b,\n  0x76a6, 0xfa17, 0x7746, 0x52af, 0x7821, 0x784e, 0x7864, 0x787a,\n  0x7930, 0xfa18, 0xfa19, 0xfa1a, 0x7994, 0xfa1b, 0x799b, 0x7ad1,\n  0x7ae7, 0xfa1c, 0x7aeb, 0x7b9e, 0xfa1d, 0x7d48, 0x7d5c, 0x7db7,\n  0x7da0, 0x7dd6, 0x7e52, 0x7f47, 0x7fa1, 0xfa1e, 0x8301, 0x8362,\n  0x837f, 0x83c7, 0x83f6, 0x8448, 0x84b4, 0x8553, 0x8559, 0x856b,\n  0xfa1f, 0x85b0, 0xfa20, 0xfa21, 0x8807, 0x88f5, 0x8a12, 0x8a37,\n  0x8a79, 0x8aa7, 0x8abe, 0x8adf, 0xfa22, 0x8af6, 0x8b53, 0x8b7f,\n  0x8cf0, 0x8cf4, 0x8d12, 0x8d76, 0xfa23, 0x8ecf, 0xfa24, 0xfa25,\n  0x9067, 0x90de, 0xfa26, 0x9115, 0x9127, 0x91da, 0x91d7, 0x91de,\n  0x91ed, 0x91ee, 0x91e4, 0x91e5, 0x9206, 0x9210, 0x920a, 0x923a,\n  0x9240, 0x923c, 0x924e, 0x9259, 0x9251, 0x9239, 0x9267, 0x92a7,\n  0x9277, 0x9278, 0x92e7, 0x92d7, 0x92d9, 0x92d0, 0xfa27, 0x92d5,\n  0x92e0, 0x92d3, 0x9325, 0x9321, 0x92fb, 0xfa28, 0x931e, 0x92ff,\n  0x931d, 0x9302, 0x9370, 0x9357, 0x93a4, 0x93c6, 0x93de, 0x93f8,\n  0x9431, 0x9445, 0x9448, 0x9592, 0xf9dc, 0xfa29, 0x969d, 0x96af,\n  0x9733, 0x973b, 0x9743, 0x974d, 0x974f, 0x9751, 0x9755, 0x9857,\n  0x9865, 0xfa2a, 0xfa2b, 0x9927, 0xfa2c, 0x999e, 0x9a4e, 0x9ad9,\n  0x9adc, 0x9b75, 0x9b72, 0x9b8f, 0x9bb1, 0x9bbb, 0x9c00, 0x9d70,\n  0x9d6b, 0xfa2d, 0x9e19, 0x9ed1, 0xfffd, 0xfffd, 0x2170, 0x2171,\n  0x2172, 0x2173, 0x2174, 0x2175, 0x2176, 0x2177, 0x2178, 0x2179,\n  0xffe2, 0xffe4, 0xff07, 0xff02,\n};\nstatic const unsigned short cp932ext_2uni_pagefa[388] = {\n  /* 0xfa */\n  0x2170, 0x2171, 0x2172, 0x2173, 0x2174, 0x2175, 0x2176, 0x2177,\n  0x2178, 0x2179, 0x2160, 0x2161, 0x2162, 0x2163, 0x2164, 0x2165,\n  0x2166, 0x2167, 0x2168, 0x2169, 0xffe2, 0xffe4, 0xff07, 0xff02,\n  0x3231, 0x2116, 0x2121, 0x2235, 0x7e8a, 0x891c, 0x9348, 0x9288,\n  0x84dc, 0x4fc9, 0x70bb, 0x6631, 0x68c8, 0x92f9, 0x66fb, 0x5f45,\n  0x4e28, 0x4ee1, 0x4efc, 0x4f00, 0x4f03, 0x4f39, 0x4f56, 0x4f92,\n  0x4f8a, 0x4f9a, 0x4f94, 0x4fcd, 0x5040, 0x5022, 0x4fff, 0x501e,\n  0x5046, 0x5070, 0x5042, 0x5094, 0x50f4, 0x50d8, 0x514a, 0x5164,\n  0x519d, 0x51be, 0x51ec, 0x5215, 0x529c, 0x52a6, 0x52c0, 0x52db,\n  0x5300, 0x5307, 0x5324, 0x5372, 0x5393, 0x53b2, 0x53dd, 0xfa0e,\n  0x549c, 0x548a, 0x54a9, 0x54ff, 0x5586, 0x5759, 0x5765, 0x57ac,\n  0x57c8, 0x57c7, 0xfa0f, 0xfa10, 0x589e, 0x58b2, 0x590b, 0x5953,\n  0x595b, 0x595d, 0x5963, 0x59a4, 0x59ba, 0x5b56, 0x5bc0, 0x752f,\n  0x5bd8, 0x5bec, 0x5c1e, 0x5ca6, 0x5cba, 0x5cf5, 0x5d27, 0x5d53,\n  0xfa11, 0x5d42, 0x5d6d, 0x5db8, 0x5db9, 0x5dd0, 0x5f21, 0x5f34,\n  0x5f67, 0x5fb7, 0x5fde, 0x605d, 0x6085, 0x608a, 0x60de, 0x60d5,\n  0x6120, 0x60f2, 0x6111, 0x6137, 0x6130, 0x6198, 0x6213, 0x62a6,\n  0x63f5, 0x6460, 0x649d, 0x64ce, 0x654e, 0x6600, 0x6615, 0x663b,\n  0x6609, 0x662e, 0x661e, 0x6624, 0x6665, 0x6657, 0x6659, 0xfa12,\n  0x6673, 0x6699, 0x66a0, 0x66b2, 0x66bf, 0x66fa, 0x670e, 0xf929,\n  0x6766, 0x67bb, 0x6852, 0x67c0, 0x6801, 0x6844, 0x68cf, 0xfa13,\n  0x6968, 0xfa14, 0x6998, 0x69e2, 0x6a30, 0x6a6b, 0x6a46, 0x6a73,\n  0x6a7e, 0x6ae2, 0x6ae4, 0x6bd6, 0x6c3f, 0x6c5c, 0x6c86, 0x6c6f,\n  0x6cda, 0x6d04, 0x6d87, 0x6d6f,\n  /* 0xfb */\n  0x6d96, 0x6dac, 0x6dcf, 0x6df8, 0x6df2, 0x6dfc, 0x6e39, 0x6e5c,\n  0x6e27, 0x6e3c, 0x6ebf, 0x6f88, 0x6fb5, 0x6ff5, 0x7005, 0x7007,\n  0x7028, 0x7085, 0x70ab, 0x710f, 0x7104, 0x715c, 0x7146, 0x7147,\n  0xfa15, 0x71c1, 0x71fe, 0x72b1, 0x72be, 0x7324, 0xfa16, 0x7377,\n  0x73bd, 0x73c9, 0x73d6, 0x73e3, 0x73d2, 0x7407, 0x73f5, 0x7426,\n  0x742a, 0x7429, 0x742e, 0x7462, 0x7489, 0x749f, 0x7501, 0x756f,\n  0x7682, 0x769c, 0x769e, 0x769b, 0x76a6, 0xfa17, 0x7746, 0x52af,\n  0x7821, 0x784e, 0x7864, 0x787a, 0x7930, 0xfa18, 0xfa19, 0xfa1a,\n  0x7994, 0xfa1b, 0x799b, 0x7ad1, 0x7ae7, 0xfa1c, 0x7aeb, 0x7b9e,\n  0xfa1d, 0x7d48, 0x7d5c, 0x7db7, 0x7da0, 0x7dd6, 0x7e52, 0x7f47,\n  0x7fa1, 0xfa1e, 0x8301, 0x8362, 0x837f, 0x83c7, 0x83f6, 0x8448,\n  0x84b4, 0x8553, 0x8559, 0x856b, 0xfa1f, 0x85b0, 0xfa20, 0xfa21,\n  0x8807, 0x88f5, 0x8a12, 0x8a37, 0x8a79, 0x8aa7, 0x8abe, 0x8adf,\n  0xfa22, 0x8af6, 0x8b53, 0x8b7f, 0x8cf0, 0x8cf4, 0x8d12, 0x8d76,\n  0xfa23, 0x8ecf, 0xfa24, 0xfa25, 0x9067, 0x90de, 0xfa26, 0x9115,\n  0x9127, 0x91da, 0x91d7, 0x91de, 0x91ed, 0x91ee, 0x91e4, 0x91e5,\n  0x9206, 0x9210, 0x920a, 0x923a, 0x9240, 0x923c, 0x924e, 0x9259,\n  0x9251, 0x9239, 0x9267, 0x92a7, 0x9277, 0x9278, 0x92e7, 0x92d7,\n  0x92d9, 0x92d0, 0xfa27, 0x92d5, 0x92e0, 0x92d3, 0x9325, 0x9321,\n  0x92fb, 0xfa28, 0x931e, 0x92ff, 0x931d, 0x9302, 0x9370, 0x9357,\n  0x93a4, 0x93c6, 0x93de, 0x93f8, 0x9431, 0x9445, 0x9448, 0x9592,\n  0xf9dc, 0xfa29, 0x969d, 0x96af, 0x9733, 0x973b, 0x9743, 0x974d,\n  0x974f, 0x9751, 0x9755, 0x9857, 0x9865, 0xfa2a, 0xfa2b, 0x9927,\n  0xfa2c, 0x999e, 0x9a4e, 0x9ad9,\n  /* 0xfc */\n  0x9adc, 0x9b75, 0x9b72, 0x9b8f, 0x9bb1, 0x9bbb, 0x9c00, 0x9d70,\n  0x9d6b, 0xfa2d, 0x9e19, 0x9ed1,\n};\n\nstatic int\ncp932ext_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 == 0x87) || (c1 >= 0xed && c1 <= 0xee) || (c1 >= 0xfa && c1 <= 0xfc)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0x80 && c2 < 0xfd)) {\n        unsigned int i = 188 * (c1 - (c1 >= 0xe0 ? 0xc1 : 0x81)) + (c2 - (c2 >= 0x80 ? 0x41 : 0x40));\n        unsigned short wc = 0xfffd;\n        if (i < 8272) {\n          if (i < 1220)\n            wc = cp932ext_2uni_page87[i-1128];\n        } else if (i < 10716) {\n          if (i < 8648)\n            wc = cp932ext_2uni_pageed[i-8272];\n        } else {\n          if (i < 11104)\n            wc = cp932ext_2uni_pagefa[i-10716];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short cp932ext_2charset[457] = {\n  0xfa59, 0xfa5a, 0xfa4a, 0xfa4b, 0xfa4c, 0xfa4d, 0xfa4e, 0xfa4f,\n  0xfa50, 0xfa51, 0xfa52, 0xfa53, 0xfa40, 0xfa41, 0xfa42, 0xfa43,\n  0xfa44, 0xfa45, 0xfa46, 0xfa47, 0xfa48, 0xfa49, 0x8794, 0x8795,\n  0x8798, 0x8797, 0x879b, 0x879c, 0x8792, 0x8793, 0xfa5b, 0x8790,\n  0x8791, 0x8796, 0x8799, 0x8740, 0x8741, 0x8742, 0x8743, 0x8744,\n  0x8745, 0x8746, 0x8747, 0x8748, 0x8749, 0x874a, 0x874b, 0x874c,\n  0x874d, 0x874e, 0x874f, 0x8750, 0x8751, 0x8752, 0x8753, 0x8780,\n  0x8781, 0xfa58, 0x878b, 0x878c, 0x8785, 0x8786, 0x8787, 0x8788,\n  0x8789, 0x8765, 0x8769, 0x8760, 0x8763, 0x8761, 0x876b, 0x876a,\n  0x8764, 0x876c, 0x8766, 0x876e, 0x875f, 0x876d, 0x8762, 0x8767,\n  0x8768, 0x877e, 0x878f, 0x878e, 0x878d, 0x8772, 0x8773, 0x876f,\n  0x8770, 0x8771, 0x8775, 0x8774, 0x8783, 0xfa68, 0xfa69, 0xfa6a,\n  0xfa6b, 0xfa6c, 0xfa6d, 0xfa6e, 0xfa70, 0xfa6f, 0xfa72, 0xfa71,\n  0xfa61, 0xfa73, 0xfa76, 0xfa77, 0xfa75, 0xfa74, 0xfa7a, 0xfa78,\n  0xfa79, 0xfa7b, 0xfa7d, 0xfa7c, 0xfa7e, 0xfa80, 0xfa81, 0xfa82,\n  0xfa83, 0xfa84, 0xfa85, 0xfa86, 0xfb77, 0xfa87, 0xfa88, 0xfa89,\n  0xfa8a, 0xfa8b, 0xfa8c, 0xfa8d, 0xfa8e, 0xfa8f, 0xfa92, 0xfa91,\n  0xfa93, 0xfa94, 0xfa95, 0xfa96, 0xfa97, 0xfa98, 0xfa9a, 0xfa99,\n  0xfa9d, 0xfa9e, 0xfa9f, 0xfaa0, 0xfaa1, 0xfaa2, 0xfaa3, 0xfaa4,\n  0xfaa5, 0xfaa6, 0xfaa7, 0xfaa9, 0xfaaa, 0xfaab, 0xfaac, 0xfaad,\n  0xfaae, 0xfaaf, 0xfab2, 0xfab0, 0xfab3, 0xfab4, 0xfab5, 0xfab6,\n  0xfab7, 0xfab8, 0xfa67, 0xfab9, 0xfaba, 0xfabb, 0xfabc, 0xfabd,\n  0xfabe, 0xfac0, 0xfabf, 0xfac2, 0xfac3, 0xfac1, 0xfac5, 0xfac4,\n  0xfac6, 0xfac7, 0xfac8, 0xfac9, 0xfaca, 0xfacb, 0xfacc, 0xfacd,\n  0xface, 0xfad1, 0xfacf, 0xfad3, 0xfad4, 0xfad2, 0xfa63, 0xfad0,\n  0xfad6, 0xfad7, 0xfad5, 0xfad9, 0xfada, 0xfadb, 0xfadc, 0xfadd,\n  0xfade, 0xfa66, 0xfadf, 0xfae1, 0xfae2, 0xfae4, 0xfae5, 0xfae6,\n  0xfae3, 0xfa64, 0xfae7, 0xfae9, 0xfaeb, 0xfaec, 0xfaed, 0xfaef,\n  0xfaee, 0xfaf0, 0xfaf1, 0xfaf2, 0xfaf3, 0xfaf4, 0xfaf5, 0xfaf6,\n  0xfaf8, 0xfaf7, 0xfaf9, 0xfafa, 0xfafc, 0xfafb, 0xfb40, 0xfb41,\n  0xfb42, 0xfb44, 0xfb43, 0xfb45, 0xfb48, 0xfb46, 0xfb49, 0xfb47,\n  0xfb4a, 0xfb4b, 0xfb4c, 0xfb4d, 0xfb4e, 0xfb4f, 0xfb50, 0xfb51,\n  0xfb52, 0xfa62, 0xfb54, 0xfb53, 0xfb56, 0xfb57, 0xfb55, 0xfb59,\n  0xfb5a, 0xfb5b, 0xfb5c, 0xfb5d, 0xfb5f, 0xfb60, 0xfb61, 0xfb64,\n  0xfb62, 0xfb63, 0xfb66, 0xfb65, 0xfb67, 0xfb69, 0xfb68, 0xfb6a,\n  0xfb6b, 0xfb6c, 0xfb6d, 0xfb6e, 0xfaa8, 0xfb6f, 0xfb70, 0xfb73,\n  0xfb71, 0xfb72, 0xfb74, 0xfb76, 0xfb78, 0xfb79, 0xfb7a, 0xfb7b,\n  0xfb7c, 0xfb81, 0xfb83, 0xfb84, 0xfb85, 0xfb87, 0xfb88, 0xfb8a,\n  0xfb8b, 0xfb8d, 0xfb8c, 0xfb8e, 0xfb8f, 0xfa5c, 0xfb90, 0xfb91,\n  0xfb93, 0xfb94, 0xfb95, 0xfb96, 0xfb97, 0xfb98, 0xfb99, 0xfa60,\n  0xfb9a, 0xfb9b, 0xfb9c, 0xfb9e, 0xfba1, 0xfba2, 0xfa5d, 0xfba3,\n  0xfba4, 0xfba5, 0xfba6, 0xfba7, 0xfba8, 0xfbaa, 0xfbab, 0xfbac,\n  0xfbad, 0xfbae, 0xfbaf, 0xfbb0, 0xfbb2, 0xfbb5, 0xfbb6, 0xfbb8,\n  0xfbb9, 0xfbbb, 0xfbba, 0xfbbc, 0xfbbf, 0xfbc0, 0xfbbd, 0xfbbe,\n  0xfbc1, 0xfbc3, 0xfbc2, 0xfbca, 0xfbc4, 0xfbc6, 0xfbc5, 0xfbc7,\n  0xfbc9, 0xfbc8, 0xfbcb, 0xfbcd, 0xfbce, 0xfa5f, 0xfbcc, 0xfbd2,\n  0xfbd6, 0xfbd4, 0xfbd0, 0xfbd1, 0xfbd5, 0xfbcf, 0xfa65, 0xfbd9,\n  0xfbdc, 0xfbde, 0xfbdd, 0xfbdb, 0xfbd8, 0xfbd7, 0xfa5e, 0xfbe0,\n  0xfbdf, 0xfbe1, 0xfbe2, 0xfbe3, 0xfbe4, 0xfbe5, 0xfbe6, 0xfbe7,\n  0xfbe8, 0xfbeb, 0xfbec, 0xfbed, 0xfbee, 0xfbef, 0xfbf0, 0xfbf1,\n  0xfbf2, 0xfbf3, 0xfbf4, 0xfbf5, 0xfbf8, 0xfbfa, 0xfbfb, 0xfbfc,\n  0xfc40, 0xfc42, 0xfc41, 0xfc43, 0xfc44, 0xfc45, 0xfc46, 0xfc48,\n  0xfc47, 0xfc4a, 0xfc4b, 0xfae0, 0xfbe9, 0xfa90, 0xfa9b, 0xfa9c,\n  0xfab1, 0xfad8, 0xfae8, 0xfaea, 0xfb58, 0xfb5e, 0xfb75, 0xfb7d,\n  0xfb7e, 0xfb80, 0xfb82, 0xfb86, 0xfb89, 0xfb92, 0xfb9d, 0xfb9f,\n  0xfba0, 0xfba9, 0xfbb1, 0xfbb3, 0xfbb4, 0xfbb7, 0xfbd3, 0xfbda,\n  0xfbea, 0xfbf6, 0xfbf7, 0xfbf9, 0xfc49, 0xfa57, 0xfa56, 0xfa54,\n  0xfa55,\n};\n\nstatic const Summary16 cp932ext_uni2indx_page21[28] = {\n  /* 0x2100 */\n  {    0, 0x0000 }, {    0, 0x0040 }, {    1, 0x0002 }, {    2, 0x0000 },\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x03ff }, {   12, 0x03ff },\n  {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 },\n  {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 },\n  /* 0x2200 */\n  {   22, 0x0000 }, {   22, 0x8402 }, {   25, 0x4e01 }, {   30, 0x0020 },\n  {   31, 0x0000 }, {   31, 0x0004 }, {   32, 0x0002 }, {   33, 0x0000 },\n  {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0020 }, {   34, 0x8000 },\n};\nstatic const Summary16 cp932ext_uni2indx_page24[8] = {\n  /* 0x2400 */\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 },\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0xffff }, {   51, 0x000f },\n};\nstatic const Summary16 cp932ext_uni2indx_page30[2] = {\n  /* 0x3000 */\n  {   55, 0x0000 }, {   55, 0xa000 },\n};\nstatic const Summary16 cp932ext_uni2indx_page32[29] = {\n  /* 0x3200 */\n  {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0206 },\n  {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0000 },\n  {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x01f0 }, {   65, 0x0000 },\n  {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0000 },\n  /* 0x3300 */\n  {   65, 0x2008 }, {   67, 0x0110 }, {   69, 0x08cc }, {   74, 0x0840 },\n  {   76, 0x2600 }, {   79, 0x0082 }, {   81, 0x0000 }, {   81, 0x7800 },\n  {   85, 0xc000 }, {   87, 0x7000 }, {   90, 0x0002 }, {   91, 0x0000 },\n  {   91, 0x2010 },\n};\nstatic const Summary16 cp932ext_uni2indx_page4e[121] = {\n  /* 0x4e00 */\n  {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0100 }, {   94, 0x0000 },\n  {   94, 0x0000 }, {   94, 0x0000 }, {   94, 0x0000 }, {   94, 0x0000 },\n  {   94, 0x0000 }, {   94, 0x0000 }, {   94, 0x0000 }, {   94, 0x0000 },\n  {   94, 0x0000 }, {   94, 0x0000 }, {   94, 0x0002 }, {   95, 0x1000 },\n  /* 0x4f00 */\n  {   96, 0x0009 }, {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0200 },\n  {   99, 0x0000 }, {   99, 0x0040 }, {  100, 0x0000 }, {  100, 0x0000 },\n  {  100, 0x0400 }, {  101, 0x0414 }, {  104, 0x0000 }, {  104, 0x0000 },\n  {  104, 0x2200 }, {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x8000 },\n  /* 0x5000 */\n  {  107, 0x0000 }, {  107, 0x4000 }, {  108, 0x0004 }, {  109, 0x0000 },\n  {  109, 0x0045 }, {  112, 0x0000 }, {  112, 0x0000 }, {  112, 0x0001 },\n  {  113, 0x0000 }, {  113, 0x0010 }, {  114, 0x0000 }, {  114, 0x0000 },\n  {  114, 0x0000 }, {  114, 0x0100 }, {  115, 0x0000 }, {  115, 0x0010 },\n  /* 0x5100 */\n  {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0000 },\n  {  116, 0x0400 }, {  117, 0x0000 }, {  117, 0x0010 }, {  118, 0x0000 },\n  {  118, 0x0000 }, {  118, 0x2000 }, {  119, 0x0000 }, {  119, 0x4000 },\n  {  120, 0x0000 }, {  120, 0x0000 }, {  120, 0x1000 }, {  121, 0x0000 },\n  /* 0x5200 */\n  {  121, 0x0000 }, {  121, 0x0020 }, {  122, 0x0000 }, {  122, 0x0000 },\n  {  122, 0x0000 }, {  122, 0x0000 }, {  122, 0x0000 }, {  122, 0x0000 },\n  {  122, 0x0000 }, {  122, 0x1000 }, {  123, 0x8040 }, {  125, 0x0000 },\n  {  125, 0x0001 }, {  126, 0x0800 }, {  127, 0x0000 }, {  127, 0x0000 },\n  /* 0x5300 */\n  {  127, 0x0081 }, {  129, 0x0000 }, {  129, 0x0010 }, {  130, 0x0000 },\n  {  130, 0x0000 }, {  130, 0x0000 }, {  130, 0x0000 }, {  130, 0x0004 },\n  {  131, 0x0000 }, {  131, 0x0008 }, {  132, 0x0000 }, {  132, 0x0004 },\n  {  133, 0x0000 }, {  133, 0x2000 }, {  134, 0x0000 }, {  134, 0x0000 },\n  /* 0x5400 */\n  {  134, 0x0000 }, {  134, 0x0000 }, {  134, 0x0000 }, {  134, 0x0000 },\n  {  134, 0x0000 }, {  134, 0x0000 }, {  134, 0x0000 }, {  134, 0x0000 },\n  {  134, 0x0400 }, {  135, 0x1000 }, {  136, 0x0200 }, {  137, 0x0000 },\n  {  137, 0x0000 }, {  137, 0x0000 }, {  137, 0x0000 }, {  137, 0x8000 },\n  /* 0x5500 */\n  {  138, 0x0000 }, {  138, 0x0000 }, {  138, 0x0000 }, {  138, 0x0000 },\n  {  138, 0x0000 }, {  138, 0x0000 }, {  138, 0x0000 }, {  138, 0x0000 },\n  {  138, 0x0040 },\n};\nstatic const Summary16 cp932ext_uni2indx_page57[44] = {\n  /* 0x5700 */\n  {  139, 0x0000 }, {  139, 0x0000 }, {  139, 0x0000 }, {  139, 0x0000 },\n  {  139, 0x0000 }, {  139, 0x0200 }, {  140, 0x0020 }, {  141, 0x0000 },\n  {  141, 0x0000 }, {  141, 0x0000 }, {  141, 0x1000 }, {  142, 0x0000 },\n  {  142, 0x0180 }, {  144, 0x0000 }, {  144, 0x0000 }, {  144, 0x0000 },\n  /* 0x5800 */\n  {  144, 0x0000 }, {  144, 0x0000 }, {  144, 0x0000 }, {  144, 0x0000 },\n  {  144, 0x0000 }, {  144, 0x0000 }, {  144, 0x0000 }, {  144, 0x0000 },\n  {  144, 0x0000 }, {  144, 0x4000 }, {  145, 0x0000 }, {  145, 0x0004 },\n  {  146, 0x0000 }, {  146, 0x0000 }, {  146, 0x0000 }, {  146, 0x0000 },\n  /* 0x5900 */\n  {  146, 0x0800 }, {  147, 0x0000 }, {  147, 0x0000 }, {  147, 0x0000 },\n  {  147, 0x0000 }, {  147, 0x2808 }, {  150, 0x0008 }, {  151, 0x0000 },\n  {  151, 0x0000 }, {  151, 0x0000 }, {  151, 0x0010 }, {  152, 0x0400 },\n};\nstatic const Summary16 cp932ext_uni2indx_page5b[46] = {\n  /* 0x5b00 */\n  {  153, 0x0000 }, {  153, 0x0000 }, {  153, 0x0000 }, {  153, 0x0000 },\n  {  153, 0x0000 }, {  153, 0x0040 }, {  154, 0x0000 }, {  154, 0x0000 },\n  {  154, 0x0000 }, {  154, 0x0000 }, {  154, 0x0000 }, {  154, 0x0000 },\n  {  154, 0x0001 }, {  155, 0x0100 }, {  156, 0x1000 }, {  157, 0x0000 },\n  /* 0x5c00 */\n  {  157, 0x0000 }, {  157, 0x4000 }, {  158, 0x0000 }, {  158, 0x0000 },\n  {  158, 0x0000 }, {  158, 0x0000 }, {  158, 0x0000 }, {  158, 0x0000 },\n  {  158, 0x0000 }, {  158, 0x0000 }, {  158, 0x0040 }, {  159, 0x0400 },\n  {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0020 },\n  /* 0x5d00 */\n  {  161, 0x0000 }, {  161, 0x0000 }, {  161, 0x0080 }, {  162, 0x0000 },\n  {  162, 0x0004 }, {  163, 0x0008 }, {  164, 0x2000 }, {  165, 0x0000 },\n  {  165, 0x0000 }, {  165, 0x0000 }, {  165, 0x0000 }, {  165, 0x0300 },\n  {  167, 0x0000 }, {  167, 0x0001 },\n};\nstatic const Summary16 cp932ext_uni2indx_page5f[458] = {\n  /* 0x5f00 */\n  {  168, 0x0000 }, {  168, 0x0000 }, {  168, 0x0002 }, {  169, 0x0010 },\n  {  170, 0x0020 }, {  171, 0x0000 }, {  171, 0x0080 }, {  172, 0x0000 },\n  {  172, 0x0000 }, {  172, 0x0000 }, {  172, 0x0000 }, {  172, 0x0080 },\n  {  173, 0x0000 }, {  173, 0x4000 }, {  174, 0x0000 }, {  174, 0x0000 },\n  /* 0x6000 */\n  {  174, 0x0000 }, {  174, 0x0000 }, {  174, 0x0000 }, {  174, 0x0000 },\n  {  174, 0x0000 }, {  174, 0x2000 }, {  175, 0x0000 }, {  175, 0x0000 },\n  {  175, 0x0420 }, {  177, 0x0000 }, {  177, 0x0000 }, {  177, 0x0000 },\n  {  177, 0x0000 }, {  177, 0x4020 }, {  179, 0x0000 }, {  179, 0x0004 },\n  /* 0x6100 */\n  {  180, 0x0000 }, {  180, 0x0002 }, {  181, 0x0001 }, {  182, 0x0081 },\n  {  184, 0x0000 }, {  184, 0x0000 }, {  184, 0x0000 }, {  184, 0x0000 },\n  {  184, 0x0000 }, {  184, 0x0100 }, {  185, 0x0000 }, {  185, 0x0000 },\n  {  185, 0x0000 }, {  185, 0x0000 }, {  185, 0x0000 }, {  185, 0x0000 },\n  /* 0x6200 */\n  {  185, 0x0000 }, {  185, 0x0008 }, {  186, 0x0000 }, {  186, 0x0000 },\n  {  186, 0x0000 }, {  186, 0x0000 }, {  186, 0x0000 }, {  186, 0x0000 },\n  {  186, 0x0000 }, {  186, 0x0000 }, {  186, 0x0040 }, {  187, 0x0000 },\n  {  187, 0x0000 }, {  187, 0x0000 }, {  187, 0x0000 }, {  187, 0x0000 },\n  /* 0x6300 */\n  {  187, 0x0000 }, {  187, 0x0000 }, {  187, 0x0000 }, {  187, 0x0000 },\n  {  187, 0x0000 }, {  187, 0x0000 }, {  187, 0x0000 }, {  187, 0x0000 },\n  {  187, 0x0000 }, {  187, 0x0000 }, {  187, 0x0000 }, {  187, 0x0000 },\n  {  187, 0x0000 }, {  187, 0x0000 }, {  187, 0x0000 }, {  187, 0x0020 },\n  /* 0x6400 */\n  {  188, 0x0000 }, {  188, 0x0000 }, {  188, 0x0000 }, {  188, 0x0000 },\n  {  188, 0x0000 }, {  188, 0x0000 }, {  188, 0x0001 }, {  189, 0x0000 },\n  {  189, 0x0000 }, {  189, 0x2000 }, {  190, 0x0000 }, {  190, 0x0000 },\n  {  190, 0x4000 }, {  191, 0x0000 }, {  191, 0x0000 }, {  191, 0x0000 },\n  /* 0x6500 */\n  {  191, 0x0000 }, {  191, 0x0000 }, {  191, 0x0000 }, {  191, 0x0000 },\n  {  191, 0x4000 }, {  192, 0x0000 }, {  192, 0x0000 }, {  192, 0x0000 },\n  {  192, 0x0000 }, {  192, 0x0000 }, {  192, 0x0000 }, {  192, 0x0000 },\n  {  192, 0x0000 }, {  192, 0x0000 }, {  192, 0x0000 }, {  192, 0x0000 },\n  /* 0x6600 */\n  {  192, 0x0201 }, {  194, 0x4020 }, {  196, 0x4010 }, {  198, 0x0802 },\n  {  200, 0x0000 }, {  200, 0x0280 }, {  202, 0x0020 }, {  203, 0x0008 },\n  {  204, 0x0000 }, {  204, 0x0200 }, {  205, 0x0001 }, {  206, 0x8004 },\n  {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0c00 },\n  /* 0x6700 */\n  {  210, 0x4000 }, {  211, 0x0000 }, {  211, 0x0000 }, {  211, 0x0000 },\n  {  211, 0x0000 }, {  211, 0x0000 }, {  211, 0x0040 }, {  212, 0x0000 },\n  {  212, 0x0000 }, {  212, 0x0000 }, {  212, 0x0000 }, {  212, 0x0800 },\n  {  213, 0x0001 }, {  214, 0x0000 }, {  214, 0x0000 }, {  214, 0x0000 },\n  /* 0x6800 */\n  {  214, 0x0002 }, {  215, 0x0000 }, {  215, 0x0000 }, {  215, 0x0000 },\n  {  215, 0x0010 }, {  216, 0x0004 }, {  217, 0x0000 }, {  217, 0x0000 },\n  {  217, 0x0000 }, {  217, 0x0000 }, {  217, 0x0000 }, {  217, 0x0000 },\n  {  217, 0x8100 }, {  219, 0x0000 }, {  219, 0x0000 }, {  219, 0x0000 },\n  /* 0x6900 */\n  {  219, 0x0000 }, {  219, 0x0000 }, {  219, 0x0000 }, {  219, 0x0000 },\n  {  219, 0x0000 }, {  219, 0x0000 }, {  219, 0x0100 }, {  220, 0x0000 },\n  {  220, 0x0000 }, {  220, 0x0100 }, {  221, 0x0000 }, {  221, 0x0000 },\n  {  221, 0x0000 }, {  221, 0x0000 }, {  221, 0x0004 }, {  222, 0x0000 },\n  /* 0x6a00 */\n  {  222, 0x0000 }, {  222, 0x0000 }, {  222, 0x0000 }, {  222, 0x0001 },\n  {  223, 0x0040 }, {  224, 0x0000 }, {  224, 0x0800 }, {  225, 0x4008 },\n  {  227, 0x0000 }, {  227, 0x0000 }, {  227, 0x0000 }, {  227, 0x0000 },\n  {  227, 0x0000 }, {  227, 0x0000 }, {  227, 0x0014 }, {  229, 0x0000 },\n  /* 0x6b00 */\n  {  229, 0x0000 }, {  229, 0x0000 }, {  229, 0x0000 }, {  229, 0x0000 },\n  {  229, 0x0000 }, {  229, 0x0000 }, {  229, 0x0000 }, {  229, 0x0000 },\n  {  229, 0x0000 }, {  229, 0x0000 }, {  229, 0x0000 }, {  229, 0x0000 },\n  {  229, 0x0000 }, {  229, 0x0040 }, {  230, 0x0000 }, {  230, 0x0000 },\n  /* 0x6c00 */\n  {  230, 0x0000 }, {  230, 0x0000 }, {  230, 0x0000 }, {  230, 0x8000 },\n  {  231, 0x0000 }, {  231, 0x1000 }, {  232, 0x8000 }, {  233, 0x0000 },\n  {  233, 0x0040 }, {  234, 0x0000 }, {  234, 0x0000 }, {  234, 0x0000 },\n  {  234, 0x0000 }, {  234, 0x0400 }, {  235, 0x0000 }, {  235, 0x0000 },\n  /* 0x6d00 */\n  {  235, 0x0010 }, {  236, 0x0000 }, {  236, 0x0000 }, {  236, 0x0000 },\n  {  236, 0x0000 }, {  236, 0x0000 }, {  236, 0x8000 }, {  237, 0x0000 },\n  {  237, 0x0080 }, {  238, 0x0040 }, {  239, 0x1000 }, {  240, 0x0000 },\n  {  240, 0x8000 }, {  241, 0x0000 }, {  241, 0x0000 }, {  241, 0x1104 },\n  /* 0x6e00 */\n  {  244, 0x0000 }, {  244, 0x0000 }, {  244, 0x0080 }, {  245, 0x1200 },\n  {  247, 0x0000 }, {  247, 0x1000 }, {  248, 0x0000 }, {  248, 0x0000 },\n  {  248, 0x0000 }, {  248, 0x0000 }, {  248, 0x0000 }, {  248, 0x8000 },\n  {  249, 0x0000 }, {  249, 0x0000 }, {  249, 0x0000 }, {  249, 0x0000 },\n  /* 0x6f00 */\n  {  249, 0x0000 }, {  249, 0x0000 }, {  249, 0x0000 }, {  249, 0x0000 },\n  {  249, 0x0000 }, {  249, 0x0000 }, {  249, 0x0000 }, {  249, 0x0000 },\n  {  249, 0x0100 }, {  250, 0x0000 }, {  250, 0x0000 }, {  250, 0x0020 },\n  {  251, 0x0000 }, {  251, 0x0000 }, {  251, 0x0000 }, {  251, 0x0020 },\n  /* 0x7000 */\n  {  252, 0x00a0 }, {  254, 0x0000 }, {  254, 0x0100 }, {  255, 0x0000 },\n  {  255, 0x0000 }, {  255, 0x0000 }, {  255, 0x0000 }, {  255, 0x0000 },\n  {  255, 0x0020 }, {  256, 0x0000 }, {  256, 0x0800 }, {  257, 0x0800 },\n  {  258, 0x0000 }, {  258, 0x0000 }, {  258, 0x0000 }, {  258, 0x0000 },\n  /* 0x7100 */\n  {  258, 0x8010 }, {  260, 0x0000 }, {  260, 0x0000 }, {  260, 0x0000 },\n  {  260, 0x00c0 }, {  262, 0x1000 }, {  263, 0x0000 }, {  263, 0x0000 },\n  {  263, 0x0000 }, {  263, 0x0000 }, {  263, 0x0000 }, {  263, 0x0000 },\n  {  263, 0x0002 }, {  264, 0x0000 }, {  264, 0x0000 }, {  264, 0x4000 },\n  /* 0x7200 */\n  {  265, 0x0000 }, {  265, 0x0000 }, {  265, 0x0000 }, {  265, 0x0000 },\n  {  265, 0x0000 }, {  265, 0x0000 }, {  265, 0x0000 }, {  265, 0x0000 },\n  {  265, 0x0000 }, {  265, 0x0000 }, {  265, 0x0000 }, {  265, 0x4002 },\n  {  267, 0x0000 }, {  267, 0x0000 }, {  267, 0x0000 }, {  267, 0x0000 },\n  /* 0x7300 */\n  {  267, 0x0000 }, {  267, 0x0000 }, {  267, 0x0010 }, {  268, 0x0000 },\n  {  268, 0x0000 }, {  268, 0x0000 }, {  268, 0x0000 }, {  268, 0x0080 },\n  {  269, 0x0000 }, {  269, 0x0000 }, {  269, 0x0000 }, {  269, 0x2000 },\n  {  270, 0x0200 }, {  271, 0x0044 }, {  273, 0x0008 }, {  274, 0x0020 },\n  /* 0x7400 */\n  {  275, 0x0080 }, {  276, 0x0000 }, {  276, 0x4640 }, {  280, 0x0000 },\n  {  280, 0x0000 }, {  280, 0x0000 }, {  280, 0x0004 }, {  281, 0x0000 },\n  {  281, 0x0200 }, {  282, 0x8000 }, {  283, 0x0000 }, {  283, 0x0000 },\n  {  283, 0x0000 }, {  283, 0x0000 }, {  283, 0x0000 }, {  283, 0x0000 },\n  /* 0x7500 */\n  {  283, 0x0002 }, {  284, 0x0000 }, {  284, 0x8000 }, {  285, 0x0000 },\n  {  285, 0x0000 }, {  285, 0x0000 }, {  285, 0x8000 }, {  286, 0x0000 },\n  {  286, 0x0000 }, {  286, 0x0000 }, {  286, 0x0000 }, {  286, 0x0000 },\n  {  286, 0x0000 }, {  286, 0x0000 }, {  286, 0x0000 }, {  286, 0x0000 },\n  /* 0x7600 */\n  {  286, 0x0000 }, {  286, 0x0000 }, {  286, 0x0000 }, {  286, 0x0000 },\n  {  286, 0x0000 }, {  286, 0x0000 }, {  286, 0x0000 }, {  286, 0x0000 },\n  {  286, 0x0004 }, {  287, 0x5800 }, {  290, 0x0040 }, {  291, 0x0000 },\n  {  291, 0x0000 }, {  291, 0x0000 }, {  291, 0x0000 }, {  291, 0x0000 },\n  /* 0x7700 */\n  {  291, 0x0000 }, {  291, 0x0000 }, {  291, 0x0000 }, {  291, 0x0000 },\n  {  291, 0x0040 }, {  292, 0x0000 }, {  292, 0x0000 }, {  292, 0x0000 },\n  {  292, 0x0000 }, {  292, 0x0000 }, {  292, 0x0000 }, {  292, 0x0000 },\n  {  292, 0x0000 }, {  292, 0x0000 }, {  292, 0x0000 }, {  292, 0x0000 },\n  /* 0x7800 */\n  {  292, 0x0000 }, {  292, 0x0000 }, {  292, 0x0002 }, {  293, 0x0000 },\n  {  293, 0x4000 }, {  294, 0x0000 }, {  294, 0x0010 }, {  295, 0x0400 },\n  {  296, 0x0000 }, {  296, 0x0000 }, {  296, 0x0000 }, {  296, 0x0000 },\n  {  296, 0x0000 }, {  296, 0x0000 }, {  296, 0x0000 }, {  296, 0x0000 },\n  /* 0x7900 */\n  {  296, 0x0000 }, {  296, 0x0000 }, {  296, 0x0000 }, {  296, 0x0001 },\n  {  297, 0x0000 }, {  297, 0x0000 }, {  297, 0x0000 }, {  297, 0x0000 },\n  {  297, 0x0000 }, {  297, 0x0810 }, {  299, 0x0000 }, {  299, 0x0000 },\n  {  299, 0x0000 }, {  299, 0x0000 }, {  299, 0x0000 }, {  299, 0x0000 },\n  /* 0x7a00 */\n  {  299, 0x0000 }, {  299, 0x0000 }, {  299, 0x0000 }, {  299, 0x0000 },\n  {  299, 0x0000 }, {  299, 0x0000 }, {  299, 0x0000 }, {  299, 0x0000 },\n  {  299, 0x0000 }, {  299, 0x0000 }, {  299, 0x0000 }, {  299, 0x0000 },\n  {  299, 0x0000 }, {  299, 0x0002 }, {  300, 0x0880 }, {  302, 0x0000 },\n  /* 0x7b00 */\n  {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 },\n  {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0000 },\n  {  302, 0x0000 }, {  302, 0x4000 },\n};\nstatic const Summary16 cp932ext_uni2indx_page7d[43] = {\n  /* 0x7d00 */\n  {  303, 0x0000 }, {  303, 0x0000 }, {  303, 0x0000 }, {  303, 0x0000 },\n  {  303, 0x0100 }, {  304, 0x1000 }, {  305, 0x0000 }, {  305, 0x0000 },\n  {  305, 0x0000 }, {  305, 0x0000 }, {  305, 0x0001 }, {  306, 0x0080 },\n  {  307, 0x0000 }, {  307, 0x0040 }, {  308, 0x0000 }, {  308, 0x0000 },\n  /* 0x7e00 */\n  {  308, 0x0000 }, {  308, 0x0000 }, {  308, 0x0000 }, {  308, 0x0000 },\n  {  308, 0x0000 }, {  308, 0x0004 }, {  309, 0x0000 }, {  309, 0x0000 },\n  {  309, 0x0400 }, {  310, 0x0000 }, {  310, 0x0000 }, {  310, 0x0000 },\n  {  310, 0x0000 }, {  310, 0x0000 }, {  310, 0x0000 }, {  310, 0x0000 },\n  /* 0x7f00 */\n  {  310, 0x0000 }, {  310, 0x0000 }, {  310, 0x0000 }, {  310, 0x0000 },\n  {  310, 0x0080 }, {  311, 0x0000 }, {  311, 0x0000 }, {  311, 0x0000 },\n  {  311, 0x0000 }, {  311, 0x0000 }, {  311, 0x0002 },\n};\nstatic const Summary16 cp932ext_uni2indx_page83[44] = {\n  /* 0x8300 */\n  {  312, 0x0002 }, {  313, 0x0000 }, {  313, 0x0000 }, {  313, 0x0000 },\n  {  313, 0x0000 }, {  313, 0x0000 }, {  313, 0x0004 }, {  314, 0x8000 },\n  {  315, 0x0000 }, {  315, 0x0000 }, {  315, 0x0000 }, {  315, 0x0000 },\n  {  315, 0x0080 }, {  316, 0x0000 }, {  316, 0x0000 }, {  316, 0x0040 },\n  /* 0x8400 */\n  {  317, 0x0000 }, {  317, 0x0000 }, {  317, 0x0000 }, {  317, 0x0000 },\n  {  317, 0x0100 }, {  318, 0x0000 }, {  318, 0x0000 }, {  318, 0x0000 },\n  {  318, 0x0000 }, {  318, 0x0000 }, {  318, 0x0000 }, {  318, 0x0010 },\n  {  319, 0x0000 }, {  319, 0x1000 }, {  320, 0x0000 }, {  320, 0x0000 },\n  /* 0x8500 */\n  {  320, 0x0000 }, {  320, 0x0000 }, {  320, 0x0000 }, {  320, 0x0000 },\n  {  320, 0x0000 }, {  320, 0x0208 }, {  322, 0x0800 }, {  323, 0x0000 },\n  {  323, 0x0000 }, {  323, 0x0000 }, {  323, 0x0000 }, {  323, 0x0001 },\n};\nstatic const Summary16 cp932ext_uni2indx_page88[109] = {\n  /* 0x8800 */\n  {  324, 0x0080 }, {  325, 0x0000 }, {  325, 0x0000 }, {  325, 0x0000 },\n  {  325, 0x0000 }, {  325, 0x0000 }, {  325, 0x0000 }, {  325, 0x0000 },\n  {  325, 0x0000 }, {  325, 0x0000 }, {  325, 0x0000 }, {  325, 0x0000 },\n  {  325, 0x0000 }, {  325, 0x0000 }, {  325, 0x0000 }, {  325, 0x0020 },\n  /* 0x8900 */\n  {  326, 0x0000 }, {  326, 0x1000 }, {  327, 0x0000 }, {  327, 0x0000 },\n  {  327, 0x0000 }, {  327, 0x0000 }, {  327, 0x0000 }, {  327, 0x0000 },\n  {  327, 0x0000 }, {  327, 0x0000 }, {  327, 0x0000 }, {  327, 0x0000 },\n  {  327, 0x0000 }, {  327, 0x0000 }, {  327, 0x0000 }, {  327, 0x0000 },\n  /* 0x8a00 */\n  {  327, 0x0000 }, {  327, 0x0004 }, {  328, 0x0000 }, {  328, 0x0080 },\n  {  329, 0x0000 }, {  329, 0x0000 }, {  329, 0x0000 }, {  329, 0x0200 },\n  {  330, 0x0000 }, {  330, 0x0000 }, {  330, 0x0080 }, {  331, 0x4000 },\n  {  332, 0x0000 }, {  332, 0x8000 }, {  333, 0x0000 }, {  333, 0x0040 },\n  /* 0x8b00 */\n  {  334, 0x0000 }, {  334, 0x0000 }, {  334, 0x0000 }, {  334, 0x0000 },\n  {  334, 0x0000 }, {  334, 0x0008 }, {  335, 0x0000 }, {  335, 0x8000 },\n  {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0000 },\n  {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0000 },\n  /* 0x8c00 */\n  {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0000 },\n  {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0000 },\n  {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0000 },\n  {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0000 }, {  336, 0x0011 },\n  /* 0x8d00 */\n  {  338, 0x0000 }, {  338, 0x0004 }, {  339, 0x0000 }, {  339, 0x0000 },\n  {  339, 0x0000 }, {  339, 0x0000 }, {  339, 0x0000 }, {  339, 0x0040 },\n  {  340, 0x0000 }, {  340, 0x0000 }, {  340, 0x0000 }, {  340, 0x0000 },\n  {  340, 0x0000 }, {  340, 0x0000 }, {  340, 0x0000 }, {  340, 0x0000 },\n  /* 0x8e00 */\n  {  340, 0x0000 }, {  340, 0x0000 }, {  340, 0x0000 }, {  340, 0x0000 },\n  {  340, 0x0000 }, {  340, 0x0000 }, {  340, 0x0000 }, {  340, 0x0000 },\n  {  340, 0x0000 }, {  340, 0x0000 }, {  340, 0x0000 }, {  340, 0x0000 },\n  {  340, 0x8000 },\n};\nstatic const Summary16 cp932ext_uni2indx_page90[238] = {\n  /* 0x9000 */\n  {  341, 0x0000 }, {  341, 0x0000 }, {  341, 0x0000 }, {  341, 0x0000 },\n  {  341, 0x0000 }, {  341, 0x0000 }, {  341, 0x0080 }, {  342, 0x0000 },\n  {  342, 0x0000 }, {  342, 0x0000 }, {  342, 0x0000 }, {  342, 0x0000 },\n  {  342, 0x0000 }, {  342, 0x4000 }, {  343, 0x0000 }, {  343, 0x0000 },\n  /* 0x9100 */\n  {  343, 0x0000 }, {  343, 0x0020 }, {  344, 0x0080 }, {  345, 0x0000 },\n  {  345, 0x0000 }, {  345, 0x0000 }, {  345, 0x0000 }, {  345, 0x0000 },\n  {  345, 0x0000 }, {  345, 0x0000 }, {  345, 0x0000 }, {  345, 0x0000 },\n  {  345, 0x0000 }, {  345, 0x4480 }, {  348, 0x6030 }, {  352, 0x0000 },\n  /* 0x9200 */\n  {  352, 0x0440 }, {  354, 0x0001 }, {  355, 0x0000 }, {  355, 0x1600 },\n  {  358, 0x4001 }, {  360, 0x0202 }, {  362, 0x0080 }, {  363, 0x0180 },\n  {  365, 0x0100 }, {  366, 0x0000 }, {  366, 0x0080 }, {  367, 0x0000 },\n  {  367, 0x0000 }, {  367, 0x02a9 }, {  372, 0x0081 }, {  374, 0x8a00 },\n  /* 0x9300 */\n  {  377, 0x0004 }, {  378, 0x6000 }, {  380, 0x0022 }, {  382, 0x0000 },\n  {  382, 0x0100 }, {  383, 0x0080 }, {  384, 0x0000 }, {  384, 0x0001 },\n  {  385, 0x0000 }, {  385, 0x0000 }, {  385, 0x0010 }, {  386, 0x0000 },\n  {  386, 0x0040 }, {  387, 0x4000 }, {  388, 0x0000 }, {  388, 0x0100 },\n  /* 0x9400 */\n  {  389, 0x0000 }, {  389, 0x0000 }, {  389, 0x0000 }, {  389, 0x0002 },\n  {  390, 0x0120 }, {  392, 0x0000 }, {  392, 0x0000 }, {  392, 0x0000 },\n  {  392, 0x0000 }, {  392, 0x0000 }, {  392, 0x0000 }, {  392, 0x0000 },\n  {  392, 0x0000 }, {  392, 0x0000 }, {  392, 0x0000 }, {  392, 0x0000 },\n  /* 0x9500 */\n  {  392, 0x0000 }, {  392, 0x0000 }, {  392, 0x0000 }, {  392, 0x0000 },\n  {  392, 0x0000 }, {  392, 0x0000 }, {  392, 0x0000 }, {  392, 0x0000 },\n  {  392, 0x0000 }, {  392, 0x0004 }, {  393, 0x0000 }, {  393, 0x0000 },\n  {  393, 0x0000 }, {  393, 0x0000 }, {  393, 0x0000 }, {  393, 0x0000 },\n  /* 0x9600 */\n  {  393, 0x0000 }, {  393, 0x0000 }, {  393, 0x0000 }, {  393, 0x0000 },\n  {  393, 0x0000 }, {  393, 0x0000 }, {  393, 0x0000 }, {  393, 0x0000 },\n  {  393, 0x0000 }, {  393, 0x2000 }, {  394, 0x8000 }, {  395, 0x0000 },\n  {  395, 0x0000 }, {  395, 0x0000 }, {  395, 0x0000 }, {  395, 0x0000 },\n  /* 0x9700 */\n  {  395, 0x0000 }, {  395, 0x0000 }, {  395, 0x0000 }, {  395, 0x0808 },\n  {  397, 0xa008 }, {  400, 0x0022 }, {  402, 0x0000 }, {  402, 0x0000 },\n  {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 },\n  {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 },\n  /* 0x9800 */\n  {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 },\n  {  402, 0x0000 }, {  402, 0x0080 }, {  403, 0x0020 }, {  404, 0x0000 },\n  {  404, 0x0000 }, {  404, 0x0000 }, {  404, 0x0000 }, {  404, 0x0000 },\n  {  404, 0x0000 }, {  404, 0x0000 }, {  404, 0x0000 }, {  404, 0x0000 },\n  /* 0x9900 */\n  {  404, 0x0000 }, {  404, 0x0000 }, {  404, 0x0080 }, {  405, 0x0000 },\n  {  405, 0x0000 }, {  405, 0x0000 }, {  405, 0x0000 }, {  405, 0x0000 },\n  {  405, 0x0000 }, {  405, 0x4000 }, {  406, 0x0000 }, {  406, 0x0000 },\n  {  406, 0x0000 }, {  406, 0x0000 }, {  406, 0x0000 }, {  406, 0x0000 },\n  /* 0x9a00 */\n  {  406, 0x0000 }, {  406, 0x0000 }, {  406, 0x0000 }, {  406, 0x0000 },\n  {  406, 0x4000 }, {  407, 0x0000 }, {  407, 0x0000 }, {  407, 0x0000 },\n  {  407, 0x0000 }, {  407, 0x0000 }, {  407, 0x0000 }, {  407, 0x0000 },\n  {  407, 0x0000 }, {  407, 0x1200 }, {  409, 0x0000 }, {  409, 0x0000 },\n  /* 0x9b00 */\n  {  409, 0x0000 }, {  409, 0x0000 }, {  409, 0x0000 }, {  409, 0x0000 },\n  {  409, 0x0000 }, {  409, 0x0000 }, {  409, 0x0000 }, {  409, 0x0024 },\n  {  411, 0x8000 }, {  412, 0x0000 }, {  412, 0x0000 }, {  412, 0x0802 },\n  {  414, 0x0000 }, {  414, 0x0000 }, {  414, 0x0000 }, {  414, 0x0000 },\n  /* 0x9c00 */\n  {  414, 0x0001 }, {  415, 0x0000 }, {  415, 0x0000 }, {  415, 0x0000 },\n  {  415, 0x0000 }, {  415, 0x0000 }, {  415, 0x0000 }, {  415, 0x0000 },\n  {  415, 0x0000 }, {  415, 0x0000 }, {  415, 0x0000 }, {  415, 0x0000 },\n  {  415, 0x0000 }, {  415, 0x0000 }, {  415, 0x0000 }, {  415, 0x0000 },\n  /* 0x9d00 */\n  {  415, 0x0000 }, {  415, 0x0000 }, {  415, 0x0000 }, {  415, 0x0000 },\n  {  415, 0x0000 }, {  415, 0x0000 }, {  415, 0x0800 }, {  416, 0x0001 },\n  {  417, 0x0000 }, {  417, 0x0000 }, {  417, 0x0000 }, {  417, 0x0000 },\n  {  417, 0x0000 }, {  417, 0x0000 }, {  417, 0x0000 }, {  417, 0x0000 },\n  /* 0x9e00 */\n  {  417, 0x0000 }, {  417, 0x0200 }, {  418, 0x0000 }, {  418, 0x0000 },\n  {  418, 0x0000 }, {  418, 0x0000 }, {  418, 0x0000 }, {  418, 0x0000 },\n  {  418, 0x0000 }, {  418, 0x0000 }, {  418, 0x0000 }, {  418, 0x0000 },\n  {  418, 0x0000 }, {  418, 0x0002 },\n};\nstatic const Summary16 cp932ext_uni2indx_pagef9[19] = {\n  /* 0xf900 */\n  {  419, 0x0000 }, {  419, 0x0000 }, {  419, 0x0200 }, {  420, 0x0000 },\n  {  420, 0x0000 }, {  420, 0x0000 }, {  420, 0x0000 }, {  420, 0x0000 },\n  {  420, 0x0000 }, {  420, 0x0000 }, {  420, 0x0000 }, {  420, 0x0000 },\n  {  420, 0x0000 }, {  420, 0x1000 }, {  421, 0x0000 }, {  421, 0x0000 },\n  /* 0xfa00 */\n  {  421, 0xc000 }, {  423, 0xffff }, {  439, 0x3fff },\n};\nstatic const Summary16 cp932ext_uni2indx_pageff[15] = {\n  /* 0xff00 */\n  {  453, 0x0084 }, {  455, 0x0000 }, {  455, 0x0000 }, {  455, 0x0000 },\n  {  455, 0x0000 }, {  455, 0x0000 }, {  455, 0x0000 }, {  455, 0x0000 },\n  {  455, 0x0000 }, {  455, 0x0000 }, {  455, 0x0000 }, {  455, 0x0000 },\n  {  455, 0x0000 }, {  455, 0x0000 }, {  455, 0x0014 },\n};\n\nstatic int\ncp932ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x2100 && wc < 0x22c0)\n      summary = &cp932ext_uni2indx_page21[(wc>>4)-0x210];\n    else if (wc >= 0x2400 && wc < 0x2480)\n      summary = &cp932ext_uni2indx_page24[(wc>>4)-0x240];\n    else if (wc >= 0x3000 && wc < 0x3020)\n      summary = &cp932ext_uni2indx_page30[(wc>>4)-0x300];\n    else if (wc >= 0x3200 && wc < 0x33d0)\n      summary = &cp932ext_uni2indx_page32[(wc>>4)-0x320];\n    else if (wc >= 0x4e00 && wc < 0x5590)\n      summary = &cp932ext_uni2indx_page4e[(wc>>4)-0x4e0];\n    else if (wc >= 0x5700 && wc < 0x59c0)\n      summary = &cp932ext_uni2indx_page57[(wc>>4)-0x570];\n    else if (wc >= 0x5b00 && wc < 0x5de0)\n      summary = &cp932ext_uni2indx_page5b[(wc>>4)-0x5b0];\n    else if (wc >= 0x5f00 && wc < 0x7ba0)\n      summary = &cp932ext_uni2indx_page5f[(wc>>4)-0x5f0];\n    else if (wc >= 0x7d00 && wc < 0x7fb0)\n      summary = &cp932ext_uni2indx_page7d[(wc>>4)-0x7d0];\n    else if (wc >= 0x8300 && wc < 0x85c0)\n      summary = &cp932ext_uni2indx_page83[(wc>>4)-0x830];\n    else if (wc >= 0x8800 && wc < 0x8ed0)\n      summary = &cp932ext_uni2indx_page88[(wc>>4)-0x880];\n    else if (wc >= 0x9000 && wc < 0x9ee0)\n      summary = &cp932ext_uni2indx_page90[(wc>>4)-0x900];\n    else if (wc >= 0xf900 && wc < 0xfa30)\n      summary = &cp932ext_uni2indx_pagef9[(wc>>4)-0xf90];\n    else if (wc >= 0xff00 && wc < 0xfff0)\n      summary = &cp932ext_uni2indx_pageff[(wc>>4)-0xff0];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = cp932ext_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp936.h",
    "content": "/*\n * Copyright (C) 2005, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP936\n */\n\n/*\n * The IANA has CP936 as an alias of GBK. But GBK is an official Chinese\n * specification, whereas CP936 is de-facto maintained by Microsoft. And,\n * of course, Microsoft modified CP936 since 1999.\n *\n * The differences from GBK are:\n *\n * 1. A single character:\n *\n *    code   CP936.TXT\n *    0x80   0x20AC # EURO SIGN\n *\n * Some variants of CP936 (in JDK, Windows-2000, ICU) also add:\n *\n * 2. Private area mappings:\n *\n *              code                 Unicode\n *    0x{A1..A2}{40..7E,80..A0}  U+E4C6..U+E585\n *    0x{AA..AF,F8..FE}{A1..FE}  U+E000..U+E4C5\n *\n * We add them too because, although there are backward compatibility problems\n * when a character from a private area is moved to an official Unicode code\n * point, they are useful for some people in practice.\n */\n\nstatic int\ncp936_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  /* Try GBK first. */\n  {\n    int ret = ces_gbk_mbtowc(conv,pwc,s,n);\n    if (ret != RET_ILSEQ)\n      return ret;\n  }\n  /* Then handle the additional mappings. */\n  {\n    unsigned char c = *s;\n    if (c == 0x80) {\n      *pwc = 0x20ac;\n      return 1;\n    }\n    /* User-defined characters */\n    if (c >= 0xa1 && c <= 0xa2) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      {\n        unsigned char c2 = s[1];\n        if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0x80 && c2 < 0xa1)) {\n          *pwc = 0xe4c6 + 96 * (c - 0xa1) + (c2 - (c2 >= 0x80 ? 0x41 : 0x40));\n          return 2;\n        }\n      }\n    } else if ((c >= 0xaa && c < 0xb0) || (c >= 0xf8 && c < 0xff)) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      {\n        unsigned char c2 = s[1];\n        if (c2 >= 0xa1 && c2 < 0xff) {\n          *pwc = 0xe000 + 94 * (c - (c >= 0xf8 ? 0xf2 : 0xaa)) + (c2 - 0xa1);\n          return 2;\n        }\n      }\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\ncp936_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  /* Try GBK first. */\n  {\n    int ret = ces_gbk_wctomb(conv,r,wc,n);\n    if (ret != RET_ILUNI)\n      return ret;\n  }\n  /* Then handle the additional mappings. */\n  if (wc >= 0xe000 && wc < 0xe586) {\n    /* User-defined characters */\n    if (n < 2)\n      return RET_TOOFEW(0);\n    if (wc < 0xe4c6) {\n      unsigned int i = wc - 0xe000;\n      unsigned int c1 = i / 94;\n      unsigned int c2 = i % 94;\n      r[0] = c1 + (c1 < 6 ? 0xaa : 0xf2);\n      r[1] = c2 + 0xa1;\n      return 2;\n    } else {\n      unsigned int i = wc - 0xe4c6;\n      unsigned int c1 = i / 96;\n      unsigned int c2 = i % 96;\n      r[0] = c1 + 0xa1;\n      r[1] = c2 + (c2 < 0x3f ? 0x40 : 0x41);\n      return 2;\n    }\n  } else if (wc == 0x20ac) {\n    r[0] = 0x80;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp936ext.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP936 extensions\n */\n\nstatic const unsigned short cp936ext_2uni_pagea6[181-159] = {\n  /* 0xa6 */\n                                                          0xfe35,\n  0xfe36, 0xfe39, 0xfe3a, 0xfe3f, 0xfe40, 0xfe3d, 0xfe3e, 0xfe41,\n  0xfe42, 0xfe43, 0xfe44, 0xfffd, 0xfffd, 0xfe3b, 0xfe3c, 0xfe37,\n  0xfe38, 0xfe31, 0xfffd, 0xfe33, 0xfe34,\n};\nstatic const unsigned short cp936ext_2uni_pagea8[128-122] = {\n  /* 0xa8 */\n                  0x0251, 0xfffd, 0x0144, 0x0148, 0xfffd, 0x0261,\n};\n\nstatic int\ncp936ext_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 == 0xa6) || (c1 == 0xa8)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0x80 && c2 < 0xff)) {\n        unsigned int i = 190 * (c1 - 0x81) + (c2 - (c2 >= 0x80 ? 0x41 : 0x40));\n        unsigned short wc = 0xfffd;\n        if (i < 7410) {\n          if (i >= 7189 && i < 7211)\n            wc = cp936ext_2uni_pagea6[i-7189];\n        } else {\n          if (i >= 7532 && i < 7538)\n            wc = cp936ext_2uni_pagea8[i-7532];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short cp936ext_page01[16] = {\n  0x0000, 0x0000, 0x0000, 0x0000, 0xa8bd, 0x0000, 0x0000, 0x0000, /*0x40-0x47*/\n  0xa8be, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x48-0x4f*/\n};\nstatic const unsigned short cp936ext_page02[24] = {\n  0x0000, 0xa8bb, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x50-0x57*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x58-0x5f*/\n  0x0000, 0xa8c0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x60-0x67*/\n};\nstatic const unsigned short cp936ext_pagefe[24] = {\n  0x0000, 0xa6f2, 0x0000, 0xa6f4, 0xa6f5, 0xa6e0, 0xa6e1, 0xa6f0, /*0x30-0x37*/\n  0xa6f1, 0xa6e2, 0xa6e3, 0xa6ee, 0xa6ef, 0xa6e6, 0xa6e7, 0xa6e4, /*0x38-0x3f*/\n  0xa6e5, 0xa6e8, 0xa6e9, 0xa6ea, 0xa6eb, 0x0000, 0x0000, 0x0000, /*0x40-0x47*/\n};\n\nstatic int\ncp936ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    unsigned short c = 0;\n    if (wc >= 0x0140 && wc < 0x0150)\n      c = cp936ext_page01[wc-0x0140];\n    else if (wc >= 0x0250 && wc < 0x0268)\n      c = cp936ext_page02[wc-0x0250];\n    else if (wc >= 0xfe30 && wc < 0xfe48)\n      c = cp936ext_pagefe[wc-0xfe30];\n    if (c != 0) {\n      r[0] = (c >> 8); r[1] = (c & 0xff);\n      return 2;\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp943.h",
    "content": "/*\n * Copyright (C) 1999-2001 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * IBM CP943\n */\n\n/* This is essentially CP932, with many mappings missing in the AIX conversion\n   table. We just pretend it were the same as CP932. */\n\n#define cp943_mbtowc cp932_mbtowc\n#define cp943_wctomb cp932_wctomb\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp949.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2005, 2007, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP949 is EUC-KR, extended with UHC (Unified Hangul Code).\n *\n * Some variants of CP949 (in JDK, Windows-2000, ICU) also add:\n *\n * 2. Private area mappings:\n *\n *        code           Unicode\n *    0xC9{A1..FE}   U+E000..U+E05D\n *    0xFE{A1..FE}   U+E05E..U+E0BB\n *\n * We add them too because, although there are backward compatibility problems\n * when a character from a private area is moved to an official Unicode code\n * point, they are useful for some people in practice.\n */\n\n#include \"uhc_1.h\"\n#include \"uhc_2.h\"\n\nstatic int\ncp949_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  /* Code set 0 (ASCII) */\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  /* UHC part 1 */\n  if (c >= 0x81 && c <= 0xa0)\n    return uhc_1_mbtowc(conv,pwc,s,n);\n  if (c >= 0xa1 && c < 0xff) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if (c2 < 0xa1)\n        /* UHC part 2 */\n        return uhc_2_mbtowc(conv,pwc,s,n);\n      else if (c2 < 0xff && !(c == 0xa2 && c2 == 0xe8)) {\n        /* Code set 1 (KS C 5601-1992, now KS X 1001:1998) */\n        unsigned char buf[2];\n        int ret;\n        buf[0] = c-0x80; buf[1] = c2-0x80;\n        ret = ksc5601_mbtowc(conv,pwc,buf,2);\n        if (ret != RET_ILSEQ)\n          return ret;\n        /* User-defined characters */\n        if (c == 0xc9) {\n          *pwc = 0xe000 + (c2 - 0xa1);\n          return 2;\n        }\n        if (c == 0xfe) {\n          *pwc = 0xe05e + (c2 - 0xa1);\n          return 2;\n        }\n      }\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\ncp949_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Code set 0 (ASCII) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 1 (KS C 5601-1992, now KS X 1001:1998) */\n  if (wc != 0x327e) {\n    ret = ksc5601_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (n < 2)\n        return RET_TOOSMALL;\n      r[0] = buf[0]+0x80;\n      r[1] = buf[1]+0x80;\n      return 2;\n    }\n  }\n\n  /* UHC */\n  if (wc >= 0xac00 && wc < 0xd7a4) {\n    if (wc < 0xc8a5)\n      return uhc_1_wctomb(conv,r,wc,n);\n    else\n      return uhc_2_wctomb(conv,r,wc,n);\n  }\n\n  /* User-defined characters */\n  if (wc >= 0xe000 && wc < 0xe0bc) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    if (wc < 0xe05e) {\n      r[0] = 0xc9;\n      r[1] = wc - 0xe000 + 0xa1;\n    } else {\n      r[0] = 0xfe;\n      r[1] = wc - 0xe05e + 0xa1;\n    }\n    return 2;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp950.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2005, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP950\n */\n\n/*\n * Microsoft CP950 is a slightly extended and slightly modified version of\n * BIG5. The differences between the EASTASIA/OTHER/BIG5.TXT and\n * VENDORS/MICSFT/WINDOWS/CP950.TXT tables found on ftp.unicode.org are\n * as follows:\n *\n * 1. Some characters in the BIG5 range are defined differently:\n *\n *     code   BIG5.TXT                       CP950.TXT\n *    0xA145  0x2022 # BULLET                0x2027 # HYPHENATION POINT\n *    0xA14E  0xFF64 # HALFWIDTH IDEOGRAPHIC COMMA\n *                                           0xFE51 # SMALL IDEOGRAPHIC COMMA\n *    0xA15A    ---                          0x2574 # BOX DRAWINGS LIGHT LEFT\n *    0xA1C2  0x203E # OVERLINE              0x00AF # MACRON\n *    0xA1C3    ---                          0xFFE3 # FULLWIDTH MACRON\n *    0xA1C5    ---                          0x02CD # MODIFIER LETTER LOW MACRON\n *    0xA1E3  0x223C # TILDE OPERATOR        0xFF5E # FULLWIDTH TILDE\n *    0xA1F2  0x2641 # EARTH                 0x2295 # CIRCLED PLUS\n *    0xA1F3  0x2609 # SUN                   0x2299 # CIRCLED DOT OPERATOR\n *    0xA1FE    ---                          0xFF0F # FULLWIDTH SOLIDUS\n *    0xA240    ---                          0xFF3C # FULLWIDTH REVERSE SOLIDUS\n *    0xA241  0xFF0F # FULLWIDTH SOLIDUS     0x2215 # DIVISION SLASH\n *    0xA242  0xFF3C # FULLWIDTH REVERSE SOLIDUS\n *                                           0xFE68 # SMALL REVERSE SOLIDUS\n *    0xA244  0x00A5 # YEN SIGN              0xFFE5 # FULLWIDTH YEN SIGN\n *    0xA246  0x00A2 # CENT SIGN             0xFFE0 # FULLWIDTH CENT SIGN\n *    0xA247  0x00A3 # POUND SIGN            0xFFE1 # FULLWIDTH POUND SIGN\n *    0xA2CC    ---                          0x5341\n *    0xA2CE    ---                          0x5345\n *\n * 2. A small new row. See cp950ext.h.\n *\n * 3. CP950.TXT is lacking the range 0xC6A1..0xC7FC (Hiragana, Katakana,\n *    Cyrillic, circled digits, parenthesized digits).\n *\n *    We implement this omission, because said range is marked \"uncertain\"\n *    in the unicode.org BIG5 table.\n *\n * The table found on Microsoft's website furthermore adds:\n *\n * 4. A single character:\n *\n *     code   CP950.TXT\n *    0xA3E1  0x20AC # EURO SIGN\n *\n * Many variants of BIG5 or CP950 (in JDK, Solaris, OSF/1, Windows-2000, ICU,\n * as well as our BIG5-2003 converter) also add:\n *\n * 5. Private area mappings:\n *\n *              code                 Unicode\n *    0x{81..8D}{40..7E,A1..FE}  U+EEB8..U+F6B0\n *    0x{8E..A0}{40..7E,A1..FE}  U+E311..U+EEB7\n *    0x{FA..FE}{40..7E,A1..FE}  U+E000..U+E310\n *\n * We add them too because, although there are backward compatibility problems\n * when a character from a private area is moved to an official Unicode code\n * point, they are useful for some people in practice.\n */\n\nstatic const unsigned short cp950_2uni_pagea1[314] = {\n  /* 0xa1 */\n  0x3000, 0xff0c, 0x3001, 0x3002, 0xff0e, 0x2027, 0xff1b, 0xff1a,\n  0xff1f, 0xff01, 0xfe30, 0x2026, 0x2025, 0xfe50, 0xfe51, 0xfe52,\n  0x00b7, 0xfe54, 0xfe55, 0xfe56, 0xfe57, 0xff5c, 0x2013, 0xfe31,\n  0x2014, 0xfe33, 0x2574, 0xfe34, 0xfe4f, 0xff08, 0xff09, 0xfe35,\n  0xfe36, 0xff5b, 0xff5d, 0xfe37, 0xfe38, 0x3014, 0x3015, 0xfe39,\n  0xfe3a, 0x3010, 0x3011, 0xfe3b, 0xfe3c, 0x300a, 0x300b, 0xfe3d,\n  0xfe3e, 0x3008, 0x3009, 0xfe3f, 0xfe40, 0x300c, 0x300d, 0xfe41,\n  0xfe42, 0x300e, 0x300f, 0xfe43, 0xfe44, 0xfe59, 0xfe5a, 0xfe5b,\n  0xfe5c, 0xfe5d, 0xfe5e, 0x2018, 0x2019, 0x201c, 0x201d, 0x301d,\n  0x301e, 0x2035, 0x2032, 0xff03, 0xff06, 0xff0a, 0x203b, 0x00a7,\n  0x3003, 0x25cb, 0x25cf, 0x25b3, 0x25b2, 0x25ce, 0x2606, 0x2605,\n  0x25c7, 0x25c6, 0x25a1, 0x25a0, 0x25bd, 0x25bc, 0x32a3, 0x2105,\n  0x00af, 0xffe3, 0xff3f, 0x02cd, 0xfe49, 0xfe4a, 0xfe4d, 0xfe4e,\n  0xfe4b, 0xfe4c, 0xfe5f, 0xfe60, 0xfe61, 0xff0b, 0xff0d, 0x00d7,\n  0x00f7, 0x00b1, 0x221a, 0xff1c, 0xff1e, 0xff1d, 0x2266, 0x2267,\n  0x2260, 0x221e, 0x2252, 0x2261, 0xfe62, 0xfe63, 0xfe64, 0xfe65,\n  0xfe66, 0xff5e, 0x2229, 0x222a, 0x22a5, 0x2220, 0x221f, 0x22bf,\n  0x33d2, 0x33d1, 0x222b, 0x222e, 0x2235, 0x2234, 0x2640, 0x2642,\n  0x2295, 0x2299, 0x2191, 0x2193, 0x2190, 0x2192, 0x2196, 0x2197,\n  0x2199, 0x2198, 0x2225, 0x2223, 0xff0f,\n  /* 0xa2 */\n  0xff3c, 0x2215, 0xfe68, 0xff04, 0xffe5, 0x3012, 0xffe0, 0xffe1,\n  0xff05, 0xff20, 0x2103, 0x2109, 0xfe69, 0xfe6a, 0xfe6b, 0x33d5,\n  0x339c, 0x339d, 0x339e, 0x33ce, 0x33a1, 0x338e, 0x338f, 0x33c4,\n  0x00b0, 0x5159, 0x515b, 0x515e, 0x515d, 0x5161, 0x5163, 0x55e7,\n  0x74e9, 0x7cce, 0x2581, 0x2582, 0x2583, 0x2584, 0x2585, 0x2586,\n  0x2587, 0x2588, 0x258f, 0x258e, 0x258d, 0x258c, 0x258b, 0x258a,\n  0x2589, 0x253c, 0x2534, 0x252c, 0x2524, 0x251c, 0x2594, 0x2500,\n  0x2502, 0x2595, 0x250c, 0x2510, 0x2514, 0x2518, 0x256d, 0x256e,\n  0x2570, 0x256f, 0x2550, 0x255e, 0x256a, 0x2561, 0x25e2, 0x25e3,\n  0x25e5, 0x25e4, 0x2571, 0x2572, 0x2573, 0xff10, 0xff11, 0xff12,\n  0xff13, 0xff14, 0xff15, 0xff16, 0xff17, 0xff18, 0xff19, 0x2160,\n  0x2161, 0x2162, 0x2163, 0x2164, 0x2165, 0x2166, 0x2167, 0x2168,\n  0x2169, 0x3021, 0x3022, 0x3023, 0x3024, 0x3025, 0x3026, 0x3027,\n  0x3028, 0x3029, 0x5341, 0x5344, 0x5345, 0xff21, 0xff22, 0xff23,\n  0xff24, 0xff25, 0xff26, 0xff27, 0xff28, 0xff29, 0xff2a, 0xff2b,\n  0xff2c, 0xff2d, 0xff2e, 0xff2f, 0xff30, 0xff31, 0xff32, 0xff33,\n  0xff34, 0xff35, 0xff36, 0xff37, 0xff38, 0xff39, 0xff3a, 0xff41,\n  0xff42, 0xff43, 0xff44, 0xff45, 0xff46, 0xff47, 0xff48, 0xff49,\n  0xff4a, 0xff4b, 0xff4c, 0xff4d, 0xff4e, 0xff4f, 0xff50, 0xff51,\n  0xff52, 0xff53, 0xff54, 0xff55, 0xff56,\n};\n\n#include \"cp950ext.h\"\n\nstatic int\ncp950_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  /* Code set 0 (ASCII) */\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  /* Code set 1 (BIG5 extended) */\n  if (c >= 0x81 && c < 0xff) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n        if (c >= 0xa1) {\n          if (c < 0xa3) {\n            unsigned int i = 157 * (c - 0xa1) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n            unsigned short wc = cp950_2uni_pagea1[i];\n            if (wc != 0xfffd) {\n              *pwc = (ucs4_t) wc;\n              return 2;\n            }\n          }\n          if (!((c == 0xc6 && c2 >= 0xa1) || c == 0xc7)) {\n            int ret = big5_mbtowc(conv,pwc,s,2);\n            if (ret != RET_ILSEQ)\n              return ret;\n          }\n          if (c == 0xa3 && c2 == 0xe1) {\n            *pwc = 0x20ac;\n            return 2;\n          }\n          if (c >= 0xfa) {\n            /* User-defined characters */\n            *pwc = 0xe000 + 157 * (c - 0xfa) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n            return 2;\n          }\n        } else {\n          /* 0x81 <= c < 0xa1. */\n          /* User-defined characters */\n          *pwc = (c >= 0x8e ? 0xdb18 : 0xeeb8) + 157 * (c - 0x81)\n                 + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n          return 2;\n        }\n      }\n    }\n    if (c == 0xf9) {\n      int ret = cp950ext_mbtowc(conv,pwc,s,2);\n      if (ret != RET_ILSEQ)\n        return ret;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\ncp950_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Code set 0 (ASCII) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 1 (BIG5 extended) */\n  switch (wc >> 8) {\n    case 0x00:\n      if (wc == 0x00af) { buf[0] = 0xa1; buf[1] = 0xc2; ret = 2; break; }\n      if (wc == 0x00a2 || wc == 0x00a3 || wc == 0x00a4)\n        return RET_ILUNI;\n      break;\n    case 0x02:\n      if (wc == 0x02cd) { buf[0] = 0xa1; buf[1] = 0xc5; ret = 2; break; }\n      break;\n    case 0x20:\n      if (wc == 0x2027) { buf[0] = 0xa1; buf[1] = 0x45; ret = 2; break; }\n      if (wc == 0x20ac) { buf[0] = 0xa3; buf[1] = 0xe1; ret = 2; break; }\n      if (wc == 0x2022 || wc == 0x203e)\n        return RET_ILUNI;\n      break;\n    case 0x22:\n      if (wc == 0x2215) { buf[0] = 0xa2; buf[1] = 0x41; ret = 2; break; }\n      if (wc == 0x2295) { buf[0] = 0xa1; buf[1] = 0xf2; ret = 2; break; }\n      if (wc == 0x2299) { buf[0] = 0xa1; buf[1] = 0xf3; ret = 2; break; }\n      if (wc == 0x223c)\n        return RET_ILUNI;\n      break;\n    case 0x25:\n      if (wc == 0x2574) { buf[0] = 0xa1; buf[1] = 0x5a; ret = 2; break; }\n      break;\n    case 0x26:\n      if (wc == 0x2609 || wc == 0x2641)\n        return RET_ILUNI;\n      break;\n    case 0xe0: case 0xe1: case 0xe2: case 0xe3: case 0xe4: case 0xe5:\n    case 0xe6: case 0xe7: case 0xe8: case 0xe9: case 0xea: case 0xeb:\n    case 0xec: case 0xed: case 0xee: case 0xef: case 0xf0: case 0xf1:\n    case 0xf2: case 0xf3: case 0xf4: case 0xf5: case 0xf6:\n      {\n        /* User-defined characters */\n        unsigned int i = wc - 0xe000;\n        if (i < 5809) {\n          unsigned int c1 = i / 157;\n          unsigned int c2 = i % 157;\n          buf[0] = c1 + (c1 < 5 ? 0xfa : c1 < 24 ? 0x89 : 0x69);\n          buf[1] = c2 + (c2 < 0x3f ? 0x40 : 0x62);\n          ret = 2;\n          break;\n        }\n      }\n      break;\n    case 0xfe:\n      if (wc == 0xfe51) { buf[0] = 0xa1; buf[1] = 0x4e; ret = 2; break; }\n      if (wc == 0xfe68) { buf[0] = 0xa2; buf[1] = 0x42; ret = 2; break; }\n      break;\n    case 0xff:\n      if (wc == 0xff0f) { buf[0] = 0xa1; buf[1] = 0xfe; ret = 2; break; }\n      if (wc == 0xff3c) { buf[0] = 0xa2; buf[1] = 0x40; ret = 2; break; }\n      if (wc == 0xff5e) { buf[0] = 0xa1; buf[1] = 0xe3; ret = 2; break; }\n      if (wc == 0xffe0) { buf[0] = 0xa2; buf[1] = 0x46; ret = 2; break; }\n      if (wc == 0xffe1) { buf[0] = 0xa2; buf[1] = 0x47; ret = 2; break; }\n      if (wc == 0xffe3) { buf[0] = 0xa1; buf[1] = 0xc3; ret = 2; break; }\n      if (wc == 0xffe5) { buf[0] = 0xa2; buf[1] = 0x44; ret = 2; break; }\n      if (wc == 0xff64)\n        return RET_ILUNI;\n      break;\n  }\n  if (ret == RET_ILUNI)\n    ret = big5_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (!((buf[0] == 0xc6 && buf[1] >= 0xa1) || buf[0] == 0xc7)) {\n      if (n < 2)\n        return RET_TOOSMALL;\n      r[0] = buf[0];\n      r[1] = buf[1];\n      return 2;\n    }\n  }\n  ret = cp950ext_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0];\n    r[1] = buf[1];\n    return 2;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/cp950ext.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * CP950 extensions\n */\n\nstatic const unsigned short cp950ext_2uni_pagef9[157-116] = {\n  /* 0xf9 */\n                                  0x7881, 0x92b9, 0x88cf, 0x58bb,\n  0x6052, 0x7ca7, 0x5afa, 0x2554, 0x2566, 0x2557, 0x2560, 0x256c,\n  0x2563, 0x255a, 0x2569, 0x255d, 0x2552, 0x2564, 0x2555, 0x255e,\n  0x256a, 0x2561, 0x2558, 0x2567, 0x255b, 0x2553, 0x2565, 0x2556,\n  0x255f, 0x256b, 0x2562, 0x2559, 0x2568, 0x255c, 0x2551, 0x2550,\n  0x256d, 0x256e, 0x2570, 0x256f, 0x2593,\n};\n\nstatic int\ncp950ext_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 == 0xf9)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n        unsigned int i = 157 * (c1 - 0xa1) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n        unsigned short wc = 0xfffd;\n        {\n          if (i >= 13932 && i < 13973)\n            wc = cp950ext_2uni_pagef9[i-13932];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short cp950ext_2charset[41] = {\n  0xf9f9, 0xf9f8, 0xf9e6, 0xf9ef, 0xf9dd, 0xf9e8, 0xf9f1, 0xf9df,\n  0xf9ec, 0xf9f5, 0xf9e3, 0xf9ee, 0xf9f7, 0xf9e5, 0xf9e9, 0xf9f2,\n  0xf9e0, 0xf9eb, 0xf9f4, 0xf9e2, 0xf9e7, 0xf9f0, 0xf9de, 0xf9ed,\n  0xf9f6, 0xf9e4, 0xf9ea, 0xf9f3, 0xf9e1, 0xf9fa, 0xf9fb, 0xf9fd,\n  0xf9fc, 0xf9fe, 0xf9d9, 0xf9dc, 0xf9da, 0xf9d6, 0xf9db, 0xf9d8,\n  0xf9d7,\n};\n\nstatic const Summary16 cp950ext_uni2indx_page25[10] = {\n  /* 0x2500 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0xffff }, {   16, 0xffff }, {   32, 0x0001 },\n  {   33, 0x0000 }, {   33, 0x0008 },\n};\nstatic const Summary16 cp950ext_uni2indx_page58[12] = {\n  /* 0x5800 */\n  {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 },\n  {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 },\n  {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0800 },\n};\nstatic const Summary16 cp950ext_uni2indx_page5a[16] = {\n  /* 0x5a00 */\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 },\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 },\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 },\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0400 },\n};\nstatic const Summary16 cp950ext_uni2indx_page60[6] = {\n  /* 0x6000 */\n  {   36, 0x0000 }, {   36, 0x0000 }, {   36, 0x0000 }, {   36, 0x0000 },\n  {   36, 0x0000 }, {   36, 0x0004 },\n};\nstatic const Summary16 cp950ext_uni2indx_page78[9] = {\n  /* 0x7800 */\n  {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 },\n  {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 },\n  {   37, 0x0002 },\n};\nstatic const Summary16 cp950ext_uni2indx_page7c[11] = {\n  /* 0x7c00 */\n  {   38, 0x0000 }, {   38, 0x0000 }, {   38, 0x0000 }, {   38, 0x0000 },\n  {   38, 0x0000 }, {   38, 0x0000 }, {   38, 0x0000 }, {   38, 0x0000 },\n  {   38, 0x0000 }, {   38, 0x0000 }, {   38, 0x0080 },\n};\nstatic const Summary16 cp950ext_uni2indx_page88[13] = {\n  /* 0x8800 */\n  {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 },\n  {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 },\n  {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 },\n  {   39, 0x8000 },\n};\nstatic const Summary16 cp950ext_uni2indx_page92[12] = {\n  /* 0x9200 */\n  {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 },\n  {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 },\n  {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0200 },\n};\n\nstatic int\ncp950ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x2500 && wc < 0x25a0)\n      summary = &cp950ext_uni2indx_page25[(wc>>4)-0x250];\n    else if (wc >= 0x5800 && wc < 0x58c0)\n      summary = &cp950ext_uni2indx_page58[(wc>>4)-0x580];\n    else if (wc >= 0x5a00 && wc < 0x5b00)\n      summary = &cp950ext_uni2indx_page5a[(wc>>4)-0x5a0];\n    else if (wc >= 0x6000 && wc < 0x6060)\n      summary = &cp950ext_uni2indx_page60[(wc>>4)-0x600];\n    else if (wc >= 0x7800 && wc < 0x7890)\n      summary = &cp950ext_uni2indx_page78[(wc>>4)-0x780];\n    else if (wc >= 0x7c00 && wc < 0x7cb0)\n      summary = &cp950ext_uni2indx_page7c[(wc>>4)-0x7c0];\n    else if (wc >= 0x8800 && wc < 0x88d0)\n      summary = &cp950ext_uni2indx_page88[(wc>>4)-0x880];\n    else if (wc >= 0x9200 && wc < 0x92c0)\n      summary = &cp950ext_uni2indx_page92[(wc>>4)-0x920];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = cp950ext_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/dec_hanyu.h",
    "content": "/*\n * Copyright (C) 2001, 2005, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * DEC-HANYU\n */\n\nstatic int\ndec_hanyu_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  /* Code set 0 (ASCII) */\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  /* Code set 1 (CNS 11643-1992 Plane 1),\n     Code set 2 (CNS 11643-1992 Plane 2),\n     Code set 3 (CNS 11643-1992 Plane 3) */\n  if (c >= 0xa1 && c < 0xff) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if (c == 0xc2 && c2 == 0xcb) {\n        if (n < 4)\n          return RET_TOOFEW(0);\n        if (s[2] >= 0xa1 && s[2] < 0xff && s[3] >= 0xa1 && s[3] < 0xff) {\n          unsigned char buf[2];\n          int ret;\n          buf[0] = s[2]-0x80; buf[1] = s[3]-0x80;\n          ret = cns11643_3_mbtowc(conv,pwc,buf,2);\n          if (ret != RET_ILSEQ) {\n            if (ret != 2) abort();\n            return 4;\n          }\n        }\n      } else if (c2 >= 0xa1 && c2 < 0xff) {\n        if (c != 0xc2 || c2 < 0xc2) {\n          unsigned char buf[2];\n          buf[0] = c-0x80; buf[1] = c2-0x80;\n          return cns11643_1_mbtowc(conv,pwc,buf,2);\n        }\n      } else if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned char buf[2];\n        buf[0] = c-0x80; buf[1] = c2;\n        return cns11643_2_mbtowc(conv,pwc,buf,2);\n      }\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\ndec_hanyu_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[3];\n  int ret;\n\n  /* Code set 0 (ASCII) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  ret = cns11643_wctomb(conv,buf,wc,3);\n  if (ret != RET_ILUNI) {\n    if (ret != 3) abort();\n\n    /* Code set 1 (CNS 11643-1992 Plane 1) */\n    if (buf[0] == 1 && (buf[1] != 0x42 || buf[2] < 0x42)) {\n      if (n < 2)\n        return RET_TOOSMALL;\n      r[0] = buf[1]+0x80;\n      r[1] = buf[2]+0x80;\n      return 2;\n    }\n\n    /* Code set 2 (CNS 11643-1992 Plane 2) */\n    if (buf[0] == 2) {\n      if (n < 2)\n        return RET_TOOSMALL;\n      r[0] = buf[1]+0x80;\n      r[1] = buf[2];\n      return 2;\n    }\n\n    /* Code set 3 (CNS 11643-1992 Plane 3) */\n    if (buf[0] == 3) {\n      if (n < 4)\n        return RET_TOOSMALL;\n      r[0] = 0xc2;\n      r[1] = 0xcb;\n      r[2] = buf[1]+0x80;\n      r[3] = buf[2]+0x80;\n      return 4;\n    }\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/dec_kanji.h",
    "content": "/*\n * Copyright (C) 2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * DEC-KANJI\n */\n\nstatic int\ndec_kanji_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  /* Code set 0 (ASCII or JIS X 0201-1976 Roman) */\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  /* Code set 1 (JIS X 0208) */\n  if (c >= 0xa1 && c < 0xf5) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if (c2 >= 0xa1 && c2 < 0xff) {\n        unsigned char buf[2];\n        buf[0] = c-0x80; buf[1] = c2-0x80;\n        return jisx0208_mbtowc(conv,pwc,buf,2);\n      }\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\ndec_kanji_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Code set 0 (ASCII or JIS X 0201-1976 Roman) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 1 (JIS X 0208) */\n  ret = jisx0208_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0]+0x80;\n    r[1] = buf[1]+0x80;\n    return 2;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/encodings.def",
    "content": "/* Copyright (C) 1999-2011 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* The list of all system independent user-visible encodings. */\n\n/* By convention, an encoding named FOOBAR or FOO_BAR or FOO-BAR is defined\n   in a file named \"foobar.h\" through the functions foobar_mbtowc and\n   foobar_wctomb (and possibly foobar_reset). */\n\n/* DEFENCODING(( name, alias1, ..., ),\n               xxx,\n               { xxx_mbtowc, xxx_flushwc },\n               { xxx_wctomb, xxx_reset })\n   defines an encoding with the given name and aliases. (There is no\n   difference between a name and an alias. By convention, the name is chosen\n   as the preferred MIME name or the standard name.)\n   All names and aliases must be in ASCII. Case is not significant, but\n   for the \"cs*\" aliases mixed case is preferred, otherwise UPPERCASE is\n   preferred. For all names and aliases, note where it comes from.\n   xxx is the name as used in the C code (lowercase).\n */\n\n\nDEFENCODING(( \"US-ASCII\",               /* IANA */\n              \"ASCII\",                  /* IANA, JDK 1.1 */\n              \"ISO646-US\",              /* IANA */\n              \"ISO_646.IRV:1991\",       /* IANA */\n              \"ISO-IR-6\",               /* IANA */\n              \"ANSI_X3.4-1968\",         /* IANA */\n              \"ANSI_X3.4-1986\",         /* IANA */\n              \"CP367\",                  /* IANA */\n              \"IBM367\",                 /* IANA */\n              \"US\",                     /* IANA */\n              \"csASCII\",                /* IANA */\n            /*\"ISO646.1991-IRV\",           X11R6.4 */\n            ),\n            ascii,\n            { ascii_mbtowc, NULL },       { ascii_wctomb, NULL })\n#ifdef USE_SOLARIS_ALIASES\nDEFALIAS(     \"646\",                    /* Solaris */\n            ascii)\n#endif\n\n/* General multi-byte encodings */\n\nDEFENCODING(( \"UTF-8\",                  /* IANA, RFC 2279 */\n            /*\"UTF8\",                      JDK 1.1 */\n            /*\"CP65001\",                   Windows */\n            ),\n            utf8,\n            { utf8_mbtowc, NULL },        { utf8_wctomb, NULL })\n#ifdef USE_HPUX_ALIASES\nDEFALIAS(     \"UTF8\",                   /* HP-UX */\n            utf8)\n#endif\n\nDEFENCODING(( \"UCS-2\",                  /* glibc */\n              \"ISO-10646-UCS-2\",        /* IANA */\n              \"csUnicode\",              /* IANA */\n            ),\n            ucs2,\n            { ucs2_mbtowc, NULL },        { ucs2_wctomb, NULL })\n\nDEFENCODING(( \"UCS-2BE\",                /* glibc */\n              \"UNICODEBIG\",             /* glibc */\n              \"UNICODE-1-1\",            /* IANA */\n              \"csUnicode11\",            /* IANA */\n            /*\"CP1201\",                    Windows */\n            ),\n            ucs2be,\n            { ucs2be_mbtowc, NULL },      { ucs2be_wctomb, NULL })\n\nDEFENCODING(( \"UCS-2LE\",                /* glibc */\n              \"UNICODELITTLE\",          /* glibc */\n            /*\"CP1200\",                    Windows */\n            ),\n            ucs2le,\n            { ucs2le_mbtowc, NULL },      { ucs2le_wctomb, NULL })\n\nDEFENCODING(( \"UCS-4\",                  /* glibc */\n              \"ISO-10646-UCS-4\",        /* IANA */\n              \"csUCS4\",                 /* IANA */\n            ),\n            ucs4,\n            { ucs4_mbtowc, NULL },        { ucs4_wctomb, NULL })\n\nDEFENCODING(( \"UCS-4BE\",                /* glibc */\n            /*\"CP12001\",                   Windows */\n            ),\n            ucs4be,\n            { ucs4be_mbtowc, NULL },      { ucs4be_wctomb, NULL })\n\nDEFENCODING(( \"UCS-4LE\",                /* glibc */\n            /*\"CP12000\",                   Windows */\n            ),\n            ucs4le,\n            { ucs4le_mbtowc, NULL },      { ucs4le_wctomb, NULL })\n\nDEFENCODING(( \"UTF-16\",                 /* IANA, RFC 2781 */\n            ),\n            utf16,\n            { utf16_mbtowc, NULL },       { utf16_wctomb, NULL })\n\nDEFENCODING(( \"UTF-16BE\",               /* IANA, RFC 2781 */\n            ),\n            utf16be,\n            { utf16be_mbtowc, NULL },     { utf16be_wctomb, NULL })\n\nDEFENCODING(( \"UTF-16LE\",               /* IANA, RFC 2781 */\n            ),\n            utf16le,\n            { utf16le_mbtowc, NULL },     { utf16le_wctomb, NULL })\n\nDEFENCODING(( \"UTF-32\",                 /* IANA, Unicode 3.1 */\n            ),\n            utf32,\n            { utf32_mbtowc, NULL },       { utf32_wctomb, NULL })\n\nDEFENCODING(( \"UTF-32BE\",               /* IANA, Unicode 3.1 */\n            ),\n            utf32be,\n            { utf32be_mbtowc, NULL },     { utf32be_wctomb, NULL })\n\nDEFENCODING(( \"UTF-32LE\",               /* IANA, Unicode 3.1 */\n            ),\n            utf32le,\n            { utf32le_mbtowc, NULL },     { utf32le_wctomb, NULL })\n\nDEFENCODING(( \"UTF-7\",                  /* IANA, RFC 2152 */\n              \"UNICODE-1-1-UTF-7\",      /* IANA, RFC 1642 */\n              \"csUnicode11UTF7\",        /* IANA */\n            /*\"CP65000\",                   Windows */\n            ),\n            utf7,\n            { utf7_mbtowc, NULL },        { utf7_wctomb, utf7_reset })\n\nDEFENCODING(( \"UCS-2-INTERNAL\",         /* libiconv */\n            ),\n            ucs2internal,\n            { ucs2internal_mbtowc, NULL }, { ucs2internal_wctomb, NULL })\n\nDEFENCODING(( \"UCS-2-SWAPPED\",          /* libiconv */\n            ),\n            ucs2swapped,\n            { ucs2swapped_mbtowc, NULL }, { ucs2swapped_wctomb, NULL })\n\nDEFENCODING(( \"UCS-4-INTERNAL\",         /* libiconv */\n            ),\n            ucs4internal,\n            { ucs4internal_mbtowc, NULL },{ ucs4internal_wctomb, NULL })\n\nDEFENCODING(( \"UCS-4-SWAPPED\",          /* libiconv */\n            ),\n            ucs4swapped,\n            { ucs4swapped_mbtowc, NULL }, { ucs4swapped_wctomb, NULL })\n\nDEFENCODING(( \"C99\",\n            ),\n            c99,\n            { c99_mbtowc, NULL },         { c99_wctomb, NULL })\n\nDEFENCODING(( \"JAVA\",\n            ),\n            java,\n            { java_mbtowc, NULL },        { java_wctomb, NULL })\n\n/* Standard 8-bit encodings */\n\nDEFENCODING(( \"ISO-8859-1\",             /* IANA */\n              \"ISO_8859-1\",             /* IANA */\n              \"ISO_8859-1:1987\",        /* IANA */\n              \"ISO-IR-100\",             /* IANA */\n              \"CP819\",                  /* IANA */\n              \"IBM819\",                 /* IANA */\n              \"LATIN1\",                 /* IANA */\n              \"L1\",                     /* IANA */\n              \"csISOLatin1\",            /* IANA */\n              \"ISO8859-1\",              /* X11R6.4, glibc, FreeBSD, AIX, IRIX, OSF/1, Solaris */\n            /*\"ISO8859_1\",                 JDK 1.1 */\n            /*\"CP28591\",                   Windows */\n            ),\n            iso8859_1,\n            { iso8859_1_mbtowc, NULL },   { iso8859_1_wctomb, NULL })\n#ifdef USE_HPUX_ALIASES\nDEFALIAS(     \"ISO88591\",               /* HP-UX */\n            iso8859_1)\n#endif\n\nDEFENCODING(( \"ISO-8859-2\",             /* IANA */\n              \"ISO_8859-2\",             /* IANA */\n              \"ISO_8859-2:1987\",        /* IANA */\n              \"ISO-IR-101\",             /* IANA */\n              \"LATIN2\",                 /* IANA */\n              \"L2\",                     /* IANA */\n              \"csISOLatin2\",            /* IANA */\n              \"ISO8859-2\",              /* X11R6.4, glibc, FreeBSD, AIX, IRIX, OSF/1, Solaris */\n            /*\"ISO8859_2\",                 JDK 1.1 */\n            /*\"CP28592\",                   Windows */\n            ),\n            iso8859_2,\n            { iso8859_2_mbtowc, NULL },   { iso8859_2_wctomb, NULL })\n#ifdef USE_HPUX_ALIASES\nDEFALIAS(     \"ISO88592\",               /* HP-UX */\n            iso8859_2)\n#endif\n\nDEFENCODING(( \"ISO-8859-3\",             /* IANA */\n              \"ISO_8859-3\",             /* IANA */\n              \"ISO_8859-3:1988\",        /* IANA */\n              \"ISO-IR-109\",             /* IANA */\n              \"LATIN3\",                 /* IANA */\n              \"L3\",                     /* IANA */\n              \"csISOLatin3\",            /* IANA */\n              \"ISO8859-3\",              /* X11R6.4, glibc, FreeBSD, Solaris */\n            /*\"ISO8859_3\",                 JDK 1.1 */\n            /*\"CP28593\",                   Windows */\n            ),\n            iso8859_3,\n            { iso8859_3_mbtowc, NULL },   { iso8859_3_wctomb, NULL })\n\nDEFENCODING(( \"ISO-8859-4\",             /* IANA */\n              \"ISO_8859-4\",             /* IANA */\n              \"ISO_8859-4:1988\",        /* IANA */\n              \"ISO-IR-110\",             /* IANA */\n              \"LATIN4\",                 /* IANA */\n              \"L4\",                     /* IANA */\n              \"csISOLatin4\",            /* IANA */\n              \"ISO8859-4\",              /* X11R6.4, glibc, FreeBSD, OSF/1, Solaris */\n            /*\"ISO8859_4\",                 JDK 1.1 */\n            /*\"CP28594\",                   Windows */\n            ),\n            iso8859_4,\n            { iso8859_4_mbtowc, NULL },   { iso8859_4_wctomb, NULL })\n\nDEFENCODING(( \"ISO-8859-5\",             /* IANA */\n              \"ISO_8859-5\",             /* IANA */\n              \"ISO_8859-5:1988\",        /* IANA */\n              \"ISO-IR-144\",             /* IANA */\n              \"CYRILLIC\",               /* IANA */\n              \"csISOLatinCyrillic\",     /* IANA */\n              \"ISO8859-5\",              /* X11R6.4, glibc, FreeBSD, AIX, IRIX, OSF/1, Solaris */\n            /*\"ISO8859_5\",                 JDK 1.1 */\n            /*\"CP28595\",                   Windows */\n            ),\n            iso8859_5,\n            { iso8859_5_mbtowc, NULL },   { iso8859_5_wctomb, NULL })\n#ifdef USE_HPUX_ALIASES\nDEFALIAS(     \"ISO88595\",               /* HP-UX */\n            iso8859_5)\n#endif\n\nDEFENCODING(( \"ISO-8859-6\",             /* IANA */\n              \"ISO_8859-6\",             /* IANA */\n              \"ISO_8859-6:1987\",        /* IANA */\n              \"ISO-IR-127\",             /* IANA */\n              \"ECMA-114\",               /* IANA */\n              \"ASMO-708\",               /* IANA */\n              \"ARABIC\",                 /* IANA */\n              \"csISOLatinArabic\",       /* IANA */\n              \"ISO8859-6\",              /* X11R6.4, glibc, FreeBSD, AIX, Solaris */\n            /*\"ISO8859_6\",                 JDK 1.1 */\n            /*\"CP28596\",                   Windows */\n            ),\n            iso8859_6,\n            { iso8859_6_mbtowc, NULL },   { iso8859_6_wctomb, NULL })\n#ifdef USE_HPUX_ALIASES\nDEFALIAS(     \"ISO88596\",               /* HP-UX */\n            iso8859_6)\n#endif\n\nDEFENCODING(( \"ISO-8859-7\",             /* IANA, RFC 1947 */\n              \"ISO_8859-7\",             /* IANA */\n              \"ISO_8859-7:1987\",        /* IANA */\n              \"ISO_8859-7:2003\",\n              \"ISO-IR-126\",             /* IANA */\n              \"ECMA-118\",               /* IANA */\n              \"ELOT_928\",               /* IANA */\n              \"GREEK8\",                 /* IANA */\n              \"GREEK\",                  /* IANA */\n              \"csISOLatinGreek\",        /* IANA */\n              \"ISO8859-7\",              /* X11R6.4, glibc, FreeBSD, AIX, IRIX, OSF/1, Solaris */\n            /*\"ISO8859_7\",                 JDK 1.1 */\n            /*\"CP28597\",                   Windows */\n            ),\n            iso8859_7,\n            { iso8859_7_mbtowc, NULL },   { iso8859_7_wctomb, NULL })\n#ifdef USE_HPUX_ALIASES\nDEFALIAS(     \"ISO88597\",               /* HP-UX */\n            iso8859_7)\n#endif\n\nDEFENCODING(( \"ISO-8859-8\",             /* IANA */\n              \"ISO_8859-8\",             /* IANA */\n              \"ISO_8859-8:1988\",        /* IANA */\n              \"ISO-IR-138\",             /* IANA */\n              \"HEBREW\",                 /* IANA */\n              \"csISOLatinHebrew\",       /* IANA */\n              \"ISO8859-8\",              /* X11R6.4, glibc, FreeBSD, AIX, OSF/1, Solaris */\n            /*\"ISO8859_8\",                 JDK 1.1 */\n            /*\"CP28598\",                   Windows */\n            /*\"CP38598\",                   Windows */\n            ),\n            iso8859_8,\n            { iso8859_8_mbtowc, NULL },   { iso8859_8_wctomb, NULL })\n#ifdef USE_HPUX_ALIASES\nDEFALIAS(     \"ISO88598\",               /* HP-UX */\n            iso8859_8)\n#endif\n\nDEFENCODING(( \"ISO-8859-9\",             /* IANA */\n              \"ISO_8859-9\",             /* IANA */\n              \"ISO_8859-9:1989\",        /* IANA */\n              \"ISO-IR-148\",             /* IANA */\n              \"LATIN5\",                 /* IANA */\n              \"L5\",                     /* IANA */\n              \"csISOLatin5\",            /* IANA */\n              \"ISO8859-9\",              /* X11R6.4, glibc, FreeBSD, AIX, IRIX, OSF/1, Solaris */\n            /*\"ISO8859_9\",                 JDK 1.1 */\n            /*\"CP28599\",                   Windows */\n            ),\n            iso8859_9,\n            { iso8859_9_mbtowc, NULL },   { iso8859_9_wctomb, NULL })\n#ifdef USE_HPUX_ALIASES\nDEFALIAS(     \"ISO88599\",               /* HP-UX */\n            iso8859_9)\n#endif\n\nDEFENCODING(( \"ISO-8859-10\",            /* IANA */\n              \"ISO_8859-10\",\n              \"ISO_8859-10:1992\",       /* IANA */\n              \"ISO-IR-157\",             /* IANA */\n              \"LATIN6\",                 /* IANA */\n              \"L6\",                     /* IANA */\n              \"csISOLatin6\",            /* IANA */\n              \"ISO8859-10\",             /* X11R6.4, glibc, FreeBSD */\n            ),\n            iso8859_10,\n            { iso8859_10_mbtowc, NULL },  { iso8859_10_wctomb, NULL })\n\nDEFENCODING(( \"ISO-8859-11\",            /* glibc */\n              \"ISO_8859-11\",\n              \"ISO8859-11\",             /* X11R6.7, glibc */\n            ),\n            iso8859_11,\n            { iso8859_11_mbtowc, NULL },  { iso8859_11_wctomb, NULL })\n\nDEFENCODING(( \"ISO-8859-13\",            /* IANA, glibc */\n              \"ISO_8859-13\",\n              \"ISO-IR-179\",             /* glibc */\n              \"LATIN7\",                 /* glibc */\n              \"L7\",                     /* glibc */\n              \"ISO8859-13\",             /* glibc, FreeBSD */\n            /*\"CP28603\",                   Windows */\n            ),\n            iso8859_13,\n            { iso8859_13_mbtowc, NULL },  { iso8859_13_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-921\",                /* AIX */\n            iso8859_13)\n#endif\n\nDEFENCODING(( \"ISO-8859-14\",            /* IANA, glibc */\n              \"ISO_8859-14\",            /* IANA */\n              \"ISO_8859-14:1998\",       /* IANA, glibc */\n              \"ISO-IR-199\",             /* IANA */\n              \"LATIN8\",                 /* IANA, glibc */\n              \"L8\",                     /* IANA, glibc */\n              \"ISO-CELTIC\",             /* IANA */\n              \"ISO8859-14\",             /* glibc, FreeBSD */\n            ),\n            iso8859_14,\n            { iso8859_14_mbtowc, NULL },  { iso8859_14_wctomb, NULL })\n\nDEFENCODING(( \"ISO-8859-15\",            /* IANA, glibc */\n              \"ISO_8859-15\",            /* IANA */\n              \"ISO_8859-15:1998\",       /* glibc */\n              \"ISO-IR-203\",\n              \"LATIN-9\",                /* IANA */\n              \"ISO8859-15\",             /* glibc, FreeBSD, AIX, OSF/1, Solaris */\n            /*\"CP28605\",                   Windows */\n            ),\n            iso8859_15,\n            { iso8859_15_mbtowc, NULL },  { iso8859_15_wctomb, NULL })\n#ifdef USE_HPUX_ALIASES\nDEFALIAS(     \"ISO885915\",              /* HP-UX */\n            iso8859_15)\n#endif\n\nDEFENCODING(( \"ISO-8859-16\",            /* IANA */\n              \"ISO_8859-16\",            /* IANA */\n              \"ISO_8859-16:2001\",       /* IANA */\n              \"ISO-IR-226\",             /* IANA */\n              \"LATIN10\",                /* IANA */\n              \"L10\",                    /* IANA */\n              \"ISO8859-16\",             /* glibc, FreeBSD */\n            ),\n            iso8859_16,\n            { iso8859_16_mbtowc, NULL },  { iso8859_16_wctomb, NULL })\n\nDEFENCODING(( \"KOI8-R\",                 /* IANA, RFC 1489, X11R6.4, JDK 1.1 */\n              \"csKOI8R\",                /* IANA */\n            /*\"CP20866\",                   Windows */\n            ),\n            koi8_r,\n            { koi8_r_mbtowc, NULL },      { koi8_r_wctomb, NULL })\n\nDEFENCODING(( \"KOI8-U\",                 /* IANA, RFC 2319 */\n            ),\n            koi8_u,\n            { koi8_u_mbtowc, NULL },      { koi8_u_wctomb, NULL })\n\nDEFENCODING(( \"KOI8-RU\",\n            /*\"CP21866\",                   Windows */\n            ),\n            koi8_ru,\n            { koi8_ru_mbtowc, NULL },     { koi8_ru_wctomb, NULL })\n\n/* Windows 8-bit encodings */\n\nDEFENCODING(( \"CP1250\",                 /* JDK 1.1 */\n              \"WINDOWS-1250\",           /* IANA */\n              \"MS-EE\",\n            ),\n            cp1250,\n            { cp1250_mbtowc, NULL },      { cp1250_wctomb, NULL })\n\nDEFENCODING(( \"CP1251\",                 /* JDK 1.1 */\n              \"WINDOWS-1251\",           /* IANA */\n              \"MS-CYRL\",\n            ),\n            cp1251,\n            { cp1251_mbtowc, NULL },      { cp1251_wctomb, NULL })\n#ifdef USE_SOLARIS_ALIASES\nDEFALIAS(     \"ANSI-1251\",              /* Solaris */\n            cp1251)\n#endif\n\nDEFENCODING(( \"CP1252\",                 /* JDK 1.1 */\n              \"WINDOWS-1252\",           /* IANA */\n              \"MS-ANSI\",\n            ),\n            cp1252,\n            { cp1252_mbtowc, NULL },      { cp1252_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-1252\",               /* AIX */\n            cp1252)\n#endif\n\nDEFENCODING(( \"CP1253\",                 /* JDK 1.1 */\n              \"WINDOWS-1253\",           /* IANA */\n              \"MS-GREEK\",\n            ),\n            cp1253,\n            { cp1253_mbtowc, NULL },      { cp1253_wctomb, NULL })\n\nDEFENCODING(( \"CP1254\",                 /* JDK 1.1 */\n              \"WINDOWS-1254\",           /* IANA */\n              \"MS-TURK\",\n            ),\n            cp1254,\n            { cp1254_mbtowc, NULL },      { cp1254_wctomb, NULL })\n\nDEFENCODING(( \"CP1255\",                 /* JDK 1.1 */\n              \"WINDOWS-1255\",           /* IANA */\n              \"MS-HEBR\",\n            ),\n            cp1255,\n            { cp1255_mbtowc, cp1255_flushwc }, { cp1255_wctomb, NULL })\n\nDEFENCODING(( \"CP1256\",                 /* JDK 1.1 */\n              \"WINDOWS-1256\",           /* IANA */\n              \"MS-ARAB\",\n            ),\n            cp1256,\n            { cp1256_mbtowc, NULL },      { cp1256_wctomb, NULL })\n\nDEFENCODING(( \"CP1257\",                 /* JDK 1.1 */\n              \"WINDOWS-1257\",           /* IANA */\n              \"WINBALTRIM\",\n            ),\n            cp1257,\n            { cp1257_mbtowc, NULL },      { cp1257_wctomb, NULL })\n\nDEFENCODING(( \"CP1258\",                 /* JDK 1.1 */\n              \"WINDOWS-1258\",           /* IANA */\n            ),\n            cp1258,\n            { cp1258_mbtowc, cp1258_flushwc }, { cp1258_wctomb, NULL })\n\n/* DOS 8-bit encodings */\n\nDEFENCODING(( \"CP850\",                  /* IANA, JDK 1.1 */\n              \"IBM850\",                 /* IANA */\n              \"850\",                    /* IANA */\n              \"csPC850Multilingual\",    /* IANA */\n            ),\n            cp850,\n            { cp850_mbtowc, NULL },       { cp850_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-850\",                /* AIX */\n            cp850)\n#endif\n\nDEFENCODING(( \"CP862\",                  /* IANA, JDK 1.1 */\n              \"IBM862\",                 /* IANA */\n              \"862\",                    /* IANA */\n              \"csPC862LatinHebrew\",     /* IANA */\n            ),\n            cp862,\n            { cp862_mbtowc, NULL },       { cp862_wctomb, NULL })\n\nDEFENCODING(( \"CP866\",                  /* IANA, JDK 1.1 */\n              \"IBM866\",                 /* IANA */\n              \"866\",                    /* IANA */\n              \"csIBM866\",               /* IANA */\n            ),\n            cp866,\n            { cp866_mbtowc, NULL },       { cp866_wctomb, NULL })\n\nDEFENCODING(( \"CP1131\",                 /* FreeBSD, MacOS X */\n            ),\n            cp1131,\n            { cp1131_mbtowc, NULL },      { cp1131_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-1131\",               /* AIX */\n            cp1131)\n#endif\n\n/* Macintosh 8-bit encodings */\n\nDEFENCODING(( \"MacRoman\",               /* JDK 1.1 */\n              /* This is the best table for MACINTOSH. The ones */\n              /* in glibc and FreeBSD-iconv are bad quality. */\n              \"MACINTOSH\",              /* IANA */\n              \"MAC\",                    /* IANA */\n              \"csMacintosh\",            /* IANA */\n            /*\"CP10000\",                   Windows */\n            ),\n            mac_roman,\n            { mac_roman_mbtowc, NULL },   { mac_roman_wctomb, NULL })\n\nDEFENCODING(( \"MacCentralEurope\",       /* JDK 1.1 */\n            /*\"CP10029\",                   Windows */\n            ),\n            mac_centraleurope,\n            { mac_centraleurope_mbtowc, NULL }, { mac_centraleurope_wctomb, NULL })\n\nDEFENCODING(( \"MacIceland\",             /* JDK 1.1 */\n            /*\"CP10079\",                   Windows */\n            ),\n            mac_iceland,\n            { mac_iceland_mbtowc, NULL }, { mac_iceland_wctomb, NULL })\n\nDEFENCODING(( \"MacCroatian\",            /* JDK 1.1 */\n            /*\"CP10082\",                   Windows */\n            ),\n            mac_croatian,\n            { mac_croatian_mbtowc, NULL }, { mac_croatian_wctomb, NULL })\n\nDEFENCODING(( \"MacRomania\",             /* JDK 1.1 */\n            /*\"CP10010\",                   Windows */\n            ),\n            mac_romania,\n            { mac_romania_mbtowc, NULL }, { mac_romania_wctomb, NULL })\n\nDEFENCODING(( \"MacCyrillic\",            /* JDK 1.1 */\n            /*\"CP10007\",                   Windows */\n            ),\n            mac_cyrillic,\n            { mac_cyrillic_mbtowc, NULL }, { mac_cyrillic_wctomb, NULL })\n\nDEFENCODING(( \"MacUkraine\",             /* JDK 1.1 */\n            /*\"CP10017\",                   Windows */\n            ),\n            mac_ukraine,\n            { mac_ukraine_mbtowc, NULL }, { mac_ukraine_wctomb, NULL })\n\nDEFENCODING(( \"MacGreek\",               /* JDK 1.1 */\n            /*\"CP10006\",                   Windows */\n            ),\n            mac_greek,\n            { mac_greek_mbtowc, NULL },   { mac_greek_wctomb, NULL })\n\nDEFENCODING(( \"MacTurkish\",             /* JDK 1.1 */\n            /*\"CP10081\",                   Windows */\n            ),\n            mac_turkish,\n            { mac_turkish_mbtowc, NULL }, { mac_turkish_wctomb, NULL })\n\nDEFENCODING(( \"MacHebrew\",              /* JDK 1.1 */\n            /*\"CP10005\",                   Windows */\n            ),\n            mac_hebrew,\n            { mac_hebrew_mbtowc, NULL },  { mac_hebrew_wctomb, NULL })\n\nDEFENCODING(( \"MacArabic\",              /* JDK 1.1 */\n            /*\"CP10004\",                   Windows */\n            ),\n            mac_arabic,\n            { mac_arabic_mbtowc, NULL },  { mac_arabic_wctomb, NULL })\n\nDEFENCODING(( \"MacThai\",                /* JDK 1.1 */\n            /*\"CP10021\",                   Windows */\n            ),\n            mac_thai,\n            { mac_thai_mbtowc, NULL },    { mac_thai_wctomb, NULL })\n\n/* Other platform specific 8-bit encodings */\n\nDEFENCODING(( \"HP-ROMAN8\",              /* IANA, X11R6.4 */\n              \"ROMAN8\",                 /* IANA */\n              \"R8\",                     /* IANA */\n              \"csHPRoman8\",             /* IANA */\n            ),\n            hp_roman8,\n            { hp_roman8_mbtowc, NULL },   { hp_roman8_wctomb, NULL })\n\nDEFENCODING(( \"NEXTSTEP\",\n            ),\n            nextstep,\n            { nextstep_mbtowc, NULL },    { nextstep_wctomb, NULL })\n\n/* Regional 8-bit encodings used for a single language */\n\nDEFENCODING(( \"ARMSCII-8\",\n            ),\n            armscii_8,\n            { armscii_8_mbtowc, NULL },   { armscii_8_wctomb, NULL })\n\nDEFENCODING(( \"GEORGIAN-ACADEMY\",\n            ),\n            georgian_academy,\n            { georgian_academy_mbtowc, NULL }, { georgian_academy_wctomb, NULL })\n\nDEFENCODING(( \"GEORGIAN-PS\",\n            ),\n            georgian_ps,\n            { georgian_ps_mbtowc, NULL }, { georgian_ps_wctomb, NULL })\n\nDEFENCODING(( \"KOI8-T\",\n            ),\n            koi8_t,\n            { koi8_t_mbtowc, NULL },      { koi8_t_wctomb, NULL })\n\nDEFENCODING(( \"PT154\",                  /* IANA, glibc */\n              \"PTCP154\",                /* IANA */\n              \"CP154\",                  /* IANA */\n              \"CYRILLIC-ASIAN\",         /* IANA */\n              \"csPTCP154\",              /* IANA */\n            ),\n            pt154,\n            { pt154_mbtowc, NULL },       { pt154_wctomb, NULL })\n\nDEFENCODING(( \"RK1048\",                 /* IANA, glibc */\n              \"STRK1048-2002\",          /* IANA */\n              \"KZ-1048\",                /* IANA */\n              \"csKZ1048\",               /* IANA */\n            ),\n            rk1048,\n            { rk1048_mbtowc, NULL },      { rk1048_wctomb, NULL })\n\nDEFENCODING(( \"MULELAO-1\",\n            ),\n            mulelao,\n            { mulelao_mbtowc, NULL },     { mulelao_wctomb, NULL })\n\nDEFENCODING(( \"CP1133\",\n              \"IBM-CP1133\",\n            ),\n            cp1133,\n            { cp1133_mbtowc, NULL },      { cp1133_wctomb, NULL })\n\nDEFENCODING(( \"TIS-620\",                /* IANA */\n              \"TIS620\",                 /* glibc, HP-UX */\n              \"TIS620-0\",               /* glibc */\n              \"TIS620.2529-1\",          /* glibc */\n              \"TIS620.2533-0\",          /* glibc */\n              \"TIS620.2533-1\",\n              \"ISO-IR-166\",             /* glibc */\n            ),\n            tis620,\n            { tis620_mbtowc, NULL },      { tis620_wctomb, NULL })\n#ifdef USE_OSF1_ALIASES\nDEFALIAS(     \"TACTIS\",                 /* OSF/1 */\n            tis620)\n#endif\n#ifdef USE_SOLARIS_ALIASES\nDEFALIAS(     \"TIS620.2533\",            /* Solaris */\n            tis620)\n#endif\n\nDEFENCODING(( \"CP874\",                  /* JDK 1.1 */\n              \"WINDOWS-874\",\n            ),\n            cp874,\n            { cp874_mbtowc, NULL },       { cp874_wctomb, NULL })\n\nDEFENCODING(( \"VISCII\",                 /* IANA, RFC 1456 */\n              \"VISCII1.1-1\",\n              \"csVISCII\",               /* IANA */\n            ),\n            viscii,\n            { viscii_mbtowc, NULL },      { viscii_wctomb, NULL })\n\nDEFENCODING(( \"TCVN\",\n              \"TCVN-5712\",\n              \"TCVN5712-1\",\n              \"TCVN5712-1:1993\",\n            ),\n            tcvn,\n            { tcvn_mbtowc, tcvn_flushwc }, { tcvn_wctomb, NULL })\n\n/* CJK character sets (not documented) */\n\nDEFENCODING(( \"JIS_C6220-1969-RO\",      /* IANA */\n              \"ISO646-JP\",              /* IANA */\n              \"ISO-IR-14\",              /* IANA */\n              \"JP\",                     /* IANA */\n              \"csISO14JISC6220ro\",      /* IANA */\n            ),\n            iso646_jp,\n            { iso646_jp_mbtowc, NULL },   { iso646_jp_wctomb, NULL })\n\nDEFENCODING(( \"JIS_X0201\",              /* IANA */\n              \"JISX0201-1976\",\n              \"X0201\",                  /* IANA */\n              \"csHalfWidthKatakana\",    /* IANA */\n            /*\"JISX0201.1976-0\",           X11R6.4 */\n            /*\"JIS0201\",                   JDK 1.1 */\n            ),\n            jisx0201,\n            { jisx0201_mbtowc, NULL },    { jisx0201_wctomb, NULL })\n\nDEFENCODING(( \"JIS_X0208\",\n              \"JIS_X0208-1983\",         /* IANA */\n              \"JIS_X0208-1990\",\n              \"JIS0208\",\n              \"X0208\",                  /* IANA */\n              \"ISO-IR-87\",              /* IANA */\n              \"JIS_C6226-1983\",         /* IANA */\n              \"csISO87JISX0208\",        /* IANA */\n            /*\"JISX0208.1983-0\",           X11R6.4 */\n            /*\"JISX0208.1990-0\",           X11R6.4 */\n            /*\"JIS0208\",                   JDK 1.1 */\n            ),\n            jisx0208,\n            { jisx0208_mbtowc, NULL },    { jisx0208_wctomb, NULL })\n\nDEFENCODING(( \"JIS_X0212\",\n              \"JIS_X0212.1990-0\",\n              \"JIS_X0212-1990\",         /* IANA */\n              \"X0212\",                  /* IANA */\n              \"ISO-IR-159\",             /* IANA */\n              \"csISO159JISX02121990\",   /* IANA */\n            /*\"JISX0212.1990-0\",           X11R6.4 */\n            /*\"JIS0212\",                   JDK 1.1 */\n            ),\n            jisx0212,\n            { jisx0212_mbtowc, NULL },    { jisx0212_wctomb, NULL })\n\nDEFENCODING(( \"GB_1988-80\",             /* IANA */\n              \"ISO646-CN\",              /* IANA */\n              \"ISO-IR-57\",              /* IANA */\n              \"CN\",                     /* IANA */\n              \"csISO57GB1988\",          /* IANA */\n            ),\n            iso646_cn,\n            { iso646_cn_mbtowc, NULL },   { iso646_cn_wctomb, NULL })\n\nDEFENCODING(( \"GB_2312-80\",             /* IANA */\n              \"ISO-IR-58\",              /* IANA */\n              \"csISO58GB231280\",        /* IANA */\n              \"CHINESE\",                /* IANA */\n            /*\"GB2312.1980-0\",             X11R6.4 */\n            ),\n            gb2312,\n            { gb2312_mbtowc, NULL },      { gb2312_wctomb, NULL })\n\nDEFENCODING(( \"ISO-IR-165\",\n              \"CN-GB-ISOIR165\",         /* RFC 1922 */\n            ),\n            isoir165,\n            { isoir165_mbtowc, NULL },    { isoir165_wctomb, NULL })\n\nDEFENCODING(( \"KSC_5601\",               /* IANA */\n              \"KS_C_5601-1987\",         /* IANA */\n              \"KS_C_5601-1989\",         /* IANA */\n              \"ISO-IR-149\",             /* IANA */\n              \"csKSC56011987\",          /* IANA */\n              \"KOREAN\",                 /* IANA */\n            /*\"KSC5601.1987-0\",            X11R6.4 */\n            /*\"KSX1001:1992\",              Ken Lunde */\n            ),\n            ksc5601,\n            { ksc5601_mbtowc, NULL },     { ksc5601_wctomb, NULL })\n\n/* CJK encodings */\n\nDEFENCODING(( \"EUC-JP\",                 /* IANA */\n              \"EUCJP\",                  /* glibc, HP-UX, IRIX, OSF/1, Solaris */\n              \"Extended_UNIX_Code_Packed_Format_for_Japanese\", /* IANA */\n              \"csEUCPkdFmtJapanese\",    /* IANA */\n            /*\"EUC_JP\",                    JDK 1.1 */\n            /*\"CP51932\",                   Windows */\n            ),\n            euc_jp,\n            { euc_jp_mbtowc, NULL },      { euc_jp_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-EUCJP\",              /* AIX */\n            euc_jp)\n#endif\n#ifdef USE_OSF1_ALIASES\nDEFALIAS(     \"SDECKANJI\",              /* OSF/1 */\n            euc_jp)\n#endif\n\nDEFENCODING(( \"SHIFT_JIS\",              /* IANA */\n              \"SHIFT-JIS\",              /* glibc */\n              \"SJIS\",                   /* JDK 1.1, HP-UX, OSF/1 */\n              \"MS_KANJI\",               /* IANA */\n              \"csShiftJIS\",             /* IANA */\n            ),\n            sjis,\n            { sjis_mbtowc, NULL },        { sjis_wctomb, NULL })\n#ifdef USE_SOLARIS_ALIASES\nDEFALIAS(     \"PCK\",                    /* Solaris */\n            sjis)\n#endif\n\nDEFENCODING(( \"CP932\",                  /* glibc */\n            ),\n            cp932,\n            { cp932_mbtowc, NULL },       { cp932_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-932\",                /* AIX */\n            cp932)\n#endif\n\nDEFENCODING(( \"ISO-2022-JP\",            /* IANA, RFC 1468 */\n              \"csISO2022JP\",            /* IANA */\n            /*\"ISO2022JP\",                 JDK 1.1 */\n            ),\n            iso2022_jp,\n            { iso2022_jp_mbtowc, NULL },  { iso2022_jp_wctomb, iso2022_jp_reset })\n\nDEFENCODING(( \"ISO-2022-JP-1\",          /* RFC 2237 */\n            ),\n            iso2022_jp1,\n            { iso2022_jp1_mbtowc, NULL }, { iso2022_jp1_wctomb, iso2022_jp1_reset })\n\nDEFENCODING(( \"ISO-2022-JP-2\",          /* IANA, RFC 1554 */\n              \"csISO2022JP2\",           /* IANA */\n            ),\n            iso2022_jp2,\n            { iso2022_jp2_mbtowc, NULL }, { iso2022_jp2_wctomb, iso2022_jp2_reset })\n\nDEFENCODING(( \"ISO-2022-JP-MS\",\n              \"CP50221\",\n            /*\"ISO-2022-JP-ESC\",           Windows */\n            ),\n            iso2022_jpms,\n            { iso2022_jpms_mbtowc, NULL }, { iso2022_jpms_wctomb, iso2022_jpms_reset })\n\nDEFENCODING(( \"EUC-CN\",                 /* glibc */\n              \"EUCCN\",                  /* glibc, IRIX */\n              \"GB2312\",                 /* IANA */\n              \"CN-GB\",                  /* RFC 1922 */\n              \"csGB2312\",               /* IANA */\n            /*\"EUC_CN\",                    JDK 1.1 */\n            /*\"CP51936\",                   Windows */\n            ),\n            euc_cn,\n            { euc_cn_mbtowc, NULL },      { euc_cn_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-EUCCN\",              /* AIX */\n            euc_cn)\n#endif\n#ifdef USE_HPUX_ALIASES\nDEFALIAS(     \"HP15CN\",                 /* HP-UX */\n            euc_cn)\n#endif\n#ifdef USE_OSF1_ALIASES\nDEFALIAS(     \"DECHANZI\",               /* OSF/1 */\n            euc_cn)\n#endif\n\nDEFENCODING(( \"GBK\",                    /* IANA, JDK 1.1 */\n            ),\n            ces_gbk,\n            { ces_gbk_mbtowc, NULL },     { ces_gbk_wctomb, NULL })\n\nDEFENCODING(( \"CP936\",                  /* IANA */\n              \"MS936\",                  /* IANA */\n              \"WINDOWS-936\",            /* IANA */\n            ),\n            cp936,\n            { cp936_mbtowc, NULL },       { cp936_wctomb, NULL })\n\nDEFENCODING(( \"GB18030\",                /* IANA, glibc */\n            /*\"CP54936\",                   Windows */\n            ),\n            gb18030,\n            { gb18030_mbtowc, NULL },     { gb18030_wctomb, NULL })\n\nDEFENCODING(( \"ISO-2022-CN\",            /* IANA, RFC 1922 */\n              \"csISO2022CN\",\n            /*\"ISO2022CN\",                 JDK 1.1 */\n            ),\n            iso2022_cn,\n            { iso2022_cn_mbtowc, NULL },  { iso2022_cn_wctomb, iso2022_cn_reset })\n\nDEFENCODING(( \"ISO-2022-CN-EXT\",        /* IANA, RFC 1922 */\n            ),\n            iso2022_cn_ext,\n            { iso2022_cn_ext_mbtowc, NULL }, { iso2022_cn_ext_wctomb, iso2022_cn_ext_reset })\n\nDEFENCODING(( \"HZ\",                     /* RFC 1843 */\n              \"HZ-GB-2312\",             /* IANA, RFC 1842 */\n            /*\"CP52936\",                   Windows */\n            ),\n            hz,\n            { hz_mbtowc, NULL },          { hz_wctomb, hz_reset })\n\nDEFENCODING(( \"EUC-TW\",                 /* glibc */\n              \"EUCTW\",                  /* glibc, HP-UX, IRIX, OSF/1 */\n              \"csEUCTW\",\n            /*\"EUC_TW\",                    JDK 1.1 */\n            /*\"CP51950\",                   Windows */\n            ),\n            euc_tw,\n            { euc_tw_mbtowc, NULL },      { euc_tw_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-EUCTW\",              /* AIX */\n            euc_tw)\n#endif\n#ifdef USE_SOLARIS_ALIASES\nDEFALIAS(     \"CNS11643\",               /* Solaris */\n            euc_tw)\n#endif\n\nDEFENCODING(( \"BIG5\",                   /* IANA, JDK 1.1 */\n              \"BIG-5\",                  /* glibc */\n              \"BIG-FIVE\",               /* glibc */\n              \"BIGFIVE\",                /* glibc */\n              \"CN-BIG5\",                /* RFC 1922 */\n              \"csBig5\",                 /* IANA */\n            ),\n            ces_big5,\n            { ces_big5_mbtowc, NULL },    { ces_big5_wctomb, NULL })\n\nDEFENCODING(( \"CP950\",                  /* JDK 1.1 */\n            ),\n            cp950,\n            { cp950_mbtowc, NULL },       { cp950_wctomb, NULL })\n\nDEFENCODING(( \"BIG5-HKSCS:1999\",\n            ),\n            big5hkscs1999,\n            { big5hkscs1999_mbtowc, big5hkscs1999_flushwc }, { big5hkscs1999_wctomb, big5hkscs1999_reset })\n\nDEFENCODING(( \"BIG5-HKSCS:2001\",\n            ),\n            big5hkscs2001,\n            { big5hkscs2001_mbtowc, big5hkscs2001_flushwc }, { big5hkscs2001_wctomb, big5hkscs2001_reset })\n\nDEFENCODING(( \"BIG5-HKSCS:2004\",\n            ),\n            big5hkscs2004,\n            { big5hkscs2004_mbtowc, big5hkscs2004_flushwc }, { big5hkscs2004_wctomb, big5hkscs2004_reset })\n\nDEFENCODING(( \"BIG5-HKSCS\",             /* IANA */\n              \"BIG5HKSCS\",              /* glibc */\n              \"BIG5-HKSCS:2008\",\n            ),\n            big5hkscs2008,\n            { big5hkscs2008_mbtowc, big5hkscs2008_flushwc }, { big5hkscs2008_wctomb, big5hkscs2008_reset })\n\nDEFENCODING(( \"EUC-KR\",                 /* IANA, RFC 1557 */\n              \"EUCKR\",                  /* glibc, HP-UX, IRIX, OSF/1 */\n              \"csEUCKR\",                /* IANA */\n            /*\"EUC_KR\",                    JDK 1.1 */\n            /*\"CP51949\",                   Windows */\n            ),\n            euc_kr,\n            { euc_kr_mbtowc, NULL },      { euc_kr_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-EUCKR\",              /* AIX */\n            euc_kr)\n#endif\n#ifdef USE_OSF1_ALIASES\nDEFALIAS(     \"DECKOREAN\",              /* OSF/1 */\n            euc_kr)\n#endif\n#ifdef USE_SOLARIS_ALIASES\nDEFALIAS(     \"5601\",                   /* Solaris */\n            euc_kr)\n#endif\n\nDEFENCODING(( \"CP949\",                  /* JDK 1.1 */\n              \"UHC\",                    /* glibc */\n            ),\n            cp949,\n            { cp949_mbtowc, NULL },       { cp949_wctomb, NULL })\n#ifdef USE_OSF1_ALIASES\nDEFALIAS(     \"KSC5601\",                /* OSF/1 */\n            cp949)\n#endif\n\nDEFENCODING(( \"JOHAB\",                  /* glibc */\n              \"CP1361\",                 /* glibc */\n            ),\n            johab,\n            { johab_mbtowc, NULL },       { johab_wctomb, NULL })\n#ifdef USE_SOLARIS_ALIASES\nDEFALIAS(     \"KO_KR.JOHAP92\",          /* Solaris */\n            johab)\n#endif\n\nDEFENCODING(( \"ISO-2022-KR\",            /* IANA, RFC 1557 */\n              \"csISO2022KR\",            /* IANA */\n            /*\"ISO2022KR\",                 JDK 1.1 */\n            /*\"CP50225\",                   Windows */\n            ),\n            iso2022_kr,\n            { iso2022_kr_mbtowc, NULL },  { iso2022_kr_wctomb, iso2022_kr_reset })\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/encodings_aix.def",
    "content": "/* Copyright (C) 2000-2002, 2008 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Encodings used by system dependent locales on AIX. */\n\nDEFENCODING(( \"CP856\",\n            ),\n            cp856,\n            { cp856_mbtowc, NULL },       { cp856_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-856\",                /* AIX */\n            cp856)\n#endif\n\nDEFENCODING(( \"CP922\",\n            ),\n            cp922,\n            { cp922_mbtowc, NULL },       { cp922_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-922\",                /* AIX */\n            cp922)\n#endif\n\nDEFENCODING(( \"CP943\",\n            ),\n            cp943,\n            { cp943_mbtowc, NULL },       { cp943_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-943\",                /* AIX */\n            cp943)\n#endif\n\nDEFENCODING(( \"CP1046\",\n            ),\n            cp1046,\n            { cp1046_mbtowc, NULL },      { cp1046_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-1046\",               /* AIX */\n            cp1046)\n#endif\n\nDEFENCODING(( \"CP1124\",\n            ),\n            cp1124,\n            { cp1124_mbtowc, NULL },      { cp1124_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-1124\",               /* AIX */\n            cp1124)\n#endif\n\nDEFENCODING(( \"CP1129\",\n            ),\n            cp1129,\n            { cp1129_mbtowc, NULL },      { cp1129_wctomb, NULL })\n#ifdef USE_AIX_ALIASES\nDEFALIAS(     \"IBM-1129\",               /* AIX */\n            cp1129)\n#endif\n\nDEFENCODING(( \"CP1161\",\n              \"IBM1161\",                /* glibc */\n              \"IBM-1161\",               /* glibc */\n              \"csIBM1161\",              /* glibc */\n            ),\n            cp1161,\n            { cp1161_mbtowc, NULL },      { cp1161_wctomb, NULL })\n\nDEFENCODING(( \"CP1162\",\n              \"IBM1162\",                /* glibc */\n              \"IBM-1162\",               /* glibc */\n              \"csIBM1162\",              /* glibc */\n            ),\n            cp1162,\n            { cp1162_mbtowc, NULL },      { cp1162_wctomb, NULL })\n\nDEFENCODING(( \"CP1163\",\n              \"IBM1163\",                /* glibc */\n              \"IBM-1163\",               /* glibc */\n              \"csIBM1163\",              /* glibc */\n            ),\n            cp1163,\n            { cp1163_mbtowc, NULL },      { cp1163_wctomb, NULL })\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/encodings_dos.def",
    "content": "/* Copyright (C) 2001-2002 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Encodings used by system dependent locales on MSDOS. */\n\nDEFENCODING(( \"CP437\",                  /* IANA, JDK 1.1 */\n              \"IBM437\",                 /* IANA */\n              \"437\",                    /* IANA */\n              \"csPC8CodePage437\",       /* IANA */\n            ),\n            cp437,\n            { cp437_mbtowc, NULL },       { cp437_wctomb, NULL })\n\nDEFENCODING(( \"CP737\",                  /* JDK 1.1 */\n            ),\n            cp737,\n            { cp737_mbtowc, NULL },       { cp737_wctomb, NULL })\n\nDEFENCODING(( \"CP775\",                  /* IANA, JDK 1.1 */\n              \"IBM775\",                 /* IANA */\n              \"csPC775Baltic\",          /* IANA */\n            ),\n            cp775,\n            { cp775_mbtowc, NULL },       { cp775_wctomb, NULL })\n\nDEFENCODING(( \"CP852\",                  /* IANA, JDK 1.1 */\n              \"IBM852\",                 /* IANA */\n              \"852\",                    /* IANA */\n              \"csPCp852\",               /* IANA */\n            ),\n            cp852,\n            { cp852_mbtowc, NULL },       { cp852_wctomb, NULL })\n\nDEFENCODING(( \"CP853\",\n            ),\n            cp853,\n            { cp853_mbtowc, NULL },       { cp853_wctomb, NULL })\n\nDEFENCODING(( \"CP855\",                  /* IANA, JDK 1.1 */\n              \"IBM855\",                 /* IANA */\n              \"855\",                    /* IANA */\n              \"csIBM855\",               /* IANA */\n            ),\n            cp855,\n            { cp855_mbtowc, NULL },       { cp855_wctomb, NULL })\n\nDEFENCODING(( \"CP857\",                  /* IANA, JDK 1.1 */\n              \"IBM857\",                 /* IANA */\n              \"857\",                    /* IANA */\n              \"csIBM857\",               /* IANA */\n            ),\n            cp857,\n            { cp857_mbtowc, NULL },       { cp857_wctomb, NULL })\n\nDEFENCODING(( \"CP858\",                  /* JDK 1.1.7 */\n            ),\n            cp858,\n            { cp858_mbtowc, NULL },       { cp858_wctomb, NULL })\n\nDEFENCODING(( \"CP860\",                  /* IANA, JDK 1.1 */\n              \"IBM860\",                 /* IANA */\n              \"860\",                    /* IANA */\n              \"csIBM860\",               /* IANA */\n            ),\n            cp860,\n            { cp860_mbtowc, NULL },       { cp860_wctomb, NULL })\n\nDEFENCODING(( \"CP861\",                  /* IANA, JDK 1.1 */\n              \"IBM861\",                 /* IANA */\n              \"861\",                    /* IANA */\n              \"CP-IS\",                  /* IANA */\n              \"csIBM861\",               /* IANA */\n            ),\n            cp861,\n            { cp861_mbtowc, NULL },       { cp861_wctomb, NULL })\n\nDEFENCODING(( \"CP863\",                  /* IANA, JDK 1.1 */\n              \"IBM863\",                 /* IANA */\n              \"863\",                    /* IANA */\n              \"csIBM863\",               /* IANA */\n            ),\n            cp863,\n            { cp863_mbtowc, NULL },       { cp863_wctomb, NULL })\n\nDEFENCODING(( \"CP864\",                  /* IANA, JDK 1.1 */\n              \"IBM864\",                 /* IANA */\n              \"csIBM864\",               /* IANA */\n            ),\n            cp864,\n            { cp864_mbtowc, NULL },       { cp864_wctomb, NULL })\n\nDEFENCODING(( \"CP865\",                  /* IANA, JDK 1.1 */\n              \"IBM865\",                 /* IANA */\n              \"865\",                    /* IANA */\n              \"csIBM865\",               /* IANA */\n            ),\n            cp865,\n            { cp865_mbtowc, NULL },       { cp865_wctomb, NULL })\n\nDEFENCODING(( \"CP869\",                  /* IANA, JDK 1.1 */\n              \"IBM869\",                 /* IANA */\n              \"869\",                    /* IANA */\n              \"CP-GR\",                  /* IANA */\n              \"csIBM869\",               /* IANA */\n            ),\n            cp869,\n            { cp869_mbtowc, NULL },       { cp869_wctomb, NULL })\n\nDEFENCODING(( \"CP1125\",                 /* ICU */\n            ),\n            cp1125,\n            { cp1125_mbtowc, NULL },      { cp1125_wctomb, NULL })\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/encodings_extra.def",
    "content": "/* Copyright (C) 2002, 2005, 2008 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\nDEFENCODING(( \"EUC-JISX0213\",\n              \"EUC-JIS-2004\",           /* x0213.org */\n            ),\n            euc_jisx0213,\n            { euc_jisx0213_mbtowc, euc_jisx0213_flushwc }, { euc_jisx0213_wctomb, euc_jisx0213_reset })\n\nDEFENCODING(( \"SHIFT_JISX0213\",\n              \"SHIFT_JIS-2004\",         /* x0213.org */\n            ),\n            shift_jisx0213,\n            { shift_jisx0213_mbtowc, shift_jisx0213_flushwc }, { shift_jisx0213_wctomb, shift_jisx0213_reset })\n\nDEFENCODING(( \"ISO-2022-JP-3\",\n              \"ISO-2022-JP-2004\",       /* x0213.org */\n            ),\n            iso2022_jp3,\n            { iso2022_jp3_mbtowc, iso2022_jp3_flushwc }, { iso2022_jp3_wctomb, iso2022_jp3_reset })\n\nDEFENCODING(( \"BIG5-2003\",\n            ),\n            big5_2003,\n            { big5_2003_mbtowc, NULL },   { big5_2003_wctomb, NULL })\n\nDEFENCODING(( \"TDS565\",\n              \"ISO-IR-230\",\n            ),\n            tds565,\n            { tds565_mbtowc, NULL },      { tds565_wctomb, NULL })\n\nDEFENCODING(( \"ATARIST\",\n              \"ATARI\",\n            ),\n            atarist,\n            { atarist_mbtowc, NULL },     { atarist_wctomb, NULL })\n\nDEFENCODING(( \"RISCOS-LATIN1\",\n            ),\n            riscos1,\n            { riscos1_mbtowc, NULL },     { riscos1_wctomb, NULL })\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/encodings_local.def",
    "content": "/* Copyright (C) 2000-2001 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Names for locale dependent encodings. */\n\nDEFENCODING(( \"CHAR\",\n            ),\n            local_char,\n            { NULL, NULL },               { NULL, NULL })\n\nDEFENCODING(( \"WCHAR_T\",                /* glibc */\n            ),\n            local_wchar_t,\n            { NULL, NULL },               { NULL, NULL })\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/encodings_osf1.def",
    "content": "/* Copyright (C) 2001, 2008 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Encodings used by system dependent locales on OSF/1 a.k.a. Tru64. */\n\nDEFENCODING(( \"DEC-KANJI\",\n            ),\n            dec_kanji,\n            { dec_kanji_mbtowc, NULL },   { dec_kanji_wctomb, NULL })\n#ifdef USE_OSF1_ALIASES\nDEFALIAS(     \"DECKANJI\",               /* OSF/1 */\n            dec_kanji)\n#endif\n\nDEFENCODING(( \"DEC-HANYU\",\n            ),\n            dec_hanyu,\n            { dec_hanyu_mbtowc, NULL },   { dec_hanyu_wctomb, NULL })\n#ifdef USE_OSF1_ALIASES\nDEFALIAS(     \"DECHANYU\",               /* OSF/1 */\n            dec_hanyu)\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/euc_cn.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * EUC-CN\n */\n\nstatic int\neuc_cn_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  /* Code set 0 (ASCII or GB 1988-89) */\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  /* Code set 1 (GB 2312-1980) */\n  if (c >= 0xa1 && c < 0xff) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if (c2 >= 0xa1 && c2 < 0xff) {\n        unsigned char buf[2];\n        buf[0] = c-0x80; buf[1] = c2-0x80;\n        return gb2312_mbtowc(conv,pwc,buf,2);\n      } else\n        return RET_ILSEQ;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\neuc_cn_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Code set 0 (ASCII or GB 1988-89) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 1 (GB 2312-1980) */\n  ret = gb2312_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0]+0x80;\n    r[1] = buf[1]+0x80;\n    return 2;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/euc_jisx0213.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * EUC-JISX0213\n */\n\n/* The structure of EUC-JISX0213 is as follows:\n\n   0x00..0x7F: ASCII\n\n   0x8E{A1..FE}: JISX0201 Katakana, with prefix 0x8E, offset by +0x80.\n\n   0x8F{A1..FE}{A1..FE}: JISX0213 plane 2, with prefix 0x8F, offset by +0x8080.\n\n   0x{A1..FE}{A1..FE}: JISX0213 plane 1, offset by +0x8080.\n\n   Note that some JISX0213 characters are not contained in Unicode 3.2\n   and are therefore best represented as sequences of Unicode characters.\n*/\n\n#include \"jisx0213.h\"\n#include \"flushwc.h\"\n\nstatic int\neuc_jisx0213_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  ucs4_t last_wc = conv->istate;\n  if (last_wc) {\n    /* Output the buffered character. */\n    conv->istate = 0;\n    *pwc = last_wc;\n    return 0; /* Don't advance the input pointer. */\n  } else {\n    unsigned char c = *s;\n    if (c < 0x80) {\n      /* Plain ASCII character. */\n      *pwc = (ucs4_t) c;\n      return 1;\n    } else {\n      if ((c >= 0xa1 && c <= 0xfe) || c == 0x8e || c == 0x8f) {\n        /* Two or three byte character. */\n        if (n >= 2) {\n          unsigned char c2 = s[1];\n          if (c2 >= 0xa1 && c2 <= 0xfe) {\n            if (c == 0x8e) {\n              /* Half-width katakana. */\n              if (c2 <= 0xdf) {\n                *pwc = c2 + 0xfec0;\n                return 2;\n              }\n            } else {\n              ucs4_t wc;\n              if (c == 0x8f) {\n                /* JISX 0213 plane 2. */\n                if (n >= 3) {\n                  unsigned char c3 = s[2];\n                  wc = jisx0213_to_ucs4(0x200-0x80+c2,c3^0x80);\n                } else\n                  return RET_TOOFEW(0);\n              } else {\n                /* JISX 0213 plane 1. */\n                wc = jisx0213_to_ucs4(0x100-0x80+c,c2^0x80);\n              }\n              if (wc) {\n                if (wc < 0x80) {\n                  /* It's a combining character. */\n                  ucs4_t wc1 = jisx0213_to_ucs_combining[wc - 1][0];\n                  ucs4_t wc2 = jisx0213_to_ucs_combining[wc - 1][1];\n                  /* We cannot output two Unicode characters at once. So,\n                     output the first character and buffer the second one. */\n                  *pwc = wc1;\n                  conv->istate = wc2;\n                } else\n                  *pwc = wc;\n                return (c == 0x8f ? 3 : 2);\n              }\n            }\n          }\n        } else\n          return RET_TOOFEW(0);\n      }\n      return RET_ILSEQ;\n    }\n  }\n}\n\n#define euc_jisx0213_flushwc normal_flushwc\n\n/* Composition tables for each of the relevant combining characters.  */\nstatic const struct { unsigned short base; unsigned short composed; } euc_jisx0213_comp_table_data[] = {\n#define euc_jisx0213_comp_table02e5_idx 0\n#define euc_jisx0213_comp_table02e5_len 1\n  { 0xabe4, 0xabe5 }, /* 0x12B65 = 0x12B64 U+02E5 */\n#define euc_jisx0213_comp_table02e9_idx (euc_jisx0213_comp_table02e5_idx+euc_jisx0213_comp_table02e5_len)\n#define euc_jisx0213_comp_table02e9_len 1\n  { 0xabe0, 0xabe6 }, /* 0x12B66 = 0x12B60 U+02E9 */\n#define euc_jisx0213_comp_table0300_idx (euc_jisx0213_comp_table02e9_idx+euc_jisx0213_comp_table02e9_len)\n#define euc_jisx0213_comp_table0300_len 5\n  { 0xa9dc, 0xabc4 }, /* 0x12B44 = 0x1295C U+0300 */\n  { 0xabb8, 0xabc8 }, /* 0x12B48 = 0x12B38 U+0300 */\n  { 0xabb7, 0xabca }, /* 0x12B4A = 0x12B37 U+0300 */\n  { 0xabb0, 0xabcc }, /* 0x12B4C = 0x12B30 U+0300 */\n  { 0xabc3, 0xabce }, /* 0x12B4E = 0x12B43 U+0300 */\n#define euc_jisx0213_comp_table0301_idx (euc_jisx0213_comp_table0300_idx+euc_jisx0213_comp_table0300_len)\n#define euc_jisx0213_comp_table0301_len 4\n  { 0xabb8, 0xabc9 }, /* 0x12B49 = 0x12B38 U+0301 */\n  { 0xabb7, 0xabcb }, /* 0x12B4B = 0x12B37 U+0301 */\n  { 0xabb0, 0xabcd }, /* 0x12B4D = 0x12B30 U+0301 */\n  { 0xabc3, 0xabcf }, /* 0x12B4F = 0x12B43 U+0301 */\n#define euc_jisx0213_comp_table309a_idx (euc_jisx0213_comp_table0301_idx+euc_jisx0213_comp_table0301_len)\n#define euc_jisx0213_comp_table309a_len 14\n  { 0xa4ab, 0xa4f7 }, /* 0x12477 = 0x1242B U+309A */\n  { 0xa4ad, 0xa4f8 }, /* 0x12478 = 0x1242D U+309A */\n  { 0xa4af, 0xa4f9 }, /* 0x12479 = 0x1242F U+309A */\n  { 0xa4b1, 0xa4fa }, /* 0x1247A = 0x12431 U+309A */\n  { 0xa4b3, 0xa4fb }, /* 0x1247B = 0x12433 U+309A */\n  { 0xa5ab, 0xa5f7 }, /* 0x12577 = 0x1252B U+309A */\n  { 0xa5ad, 0xa5f8 }, /* 0x12578 = 0x1252D U+309A */\n  { 0xa5af, 0xa5f9 }, /* 0x12579 = 0x1252F U+309A */\n  { 0xa5b1, 0xa5fa }, /* 0x1257A = 0x12531 U+309A */\n  { 0xa5b3, 0xa5fb }, /* 0x1257B = 0x12533 U+309A */\n  { 0xa5bb, 0xa5fc }, /* 0x1257C = 0x1253B U+309A */\n  { 0xa5c4, 0xa5fd }, /* 0x1257D = 0x12544 U+309A */\n  { 0xa5c8, 0xa5fe }, /* 0x1257E = 0x12548 U+309A */\n  { 0xa6f5, 0xa6f8 }, /* 0x12678 = 0x12675 U+309A */\n};\n\nstatic int\neuc_jisx0213_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  int count = 0;\n  unsigned short lasttwo = conv->ostate;\n\n  if (lasttwo) {\n    /* Attempt to combine the last character with this one. */\n    unsigned int idx;\n    unsigned int len;\n\n    if (wc == 0x02e5)\n      idx = euc_jisx0213_comp_table02e5_idx,\n      len = euc_jisx0213_comp_table02e5_len;\n    else if (wc == 0x02e9)\n      idx = euc_jisx0213_comp_table02e9_idx,\n      len = euc_jisx0213_comp_table02e9_len;\n    else if (wc == 0x0300)\n      idx = euc_jisx0213_comp_table0300_idx,\n      len = euc_jisx0213_comp_table0300_len;\n    else if (wc == 0x0301)\n      idx = euc_jisx0213_comp_table0301_idx,\n      len = euc_jisx0213_comp_table0301_len;\n    else if (wc == 0x309a)\n      idx = euc_jisx0213_comp_table309a_idx,\n      len = euc_jisx0213_comp_table309a_len;\n    else\n      goto not_combining;\n\n    do\n      if (euc_jisx0213_comp_table_data[idx].base == lasttwo)\n        break;\n    while (++idx, --len > 0);\n\n    if (len > 0) {\n      /* Output the combined character. */\n      if (n >= 2) {\n        lasttwo = euc_jisx0213_comp_table_data[idx].composed;\n        r[0] = (lasttwo >> 8) & 0xff;\n        r[1] = lasttwo & 0xff;\n        conv->ostate = 0;\n        return 2;\n      } else\n        return RET_TOOSMALL;\n    }\n\n  not_combining:\n    /* Output the buffered character. */\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = (lasttwo >> 8) & 0xff;\n    r[1] = lasttwo & 0xff;\n    r += 2;\n    count = 2;\n  }\n\n  if (wc < 0x80) {\n    /* Plain ASCII character. */\n    if (n > count) {\n      r[0] = (unsigned char) wc;\n      conv->ostate = 0;\n      return count+1;\n    } else\n      return RET_TOOSMALL;\n  } else if (wc >= 0xff61 && wc <= 0xff9f) {\n    /* Half-width katakana. */\n    if (n >= count+2) {\n      r[0] = 0x8e;\n      r[1] = wc - 0xfec0;\n      conv->ostate = 0;\n      return count+2;\n    } else\n      return RET_TOOSMALL;\n  } else {\n    unsigned short jch = ucs4_to_jisx0213(wc);\n    if (jch != 0) {\n      if (jch & 0x0080) {\n        /* A possible match in comp_table_data. We have to buffer it. */\n        /* We know it's a JISX 0213 plane 1 character. */\n        if (jch & 0x8000) abort();\n        conv->ostate = jch | 0x8080;\n        return count+0;\n      }\n      if (jch & 0x8000) {\n        /* JISX 0213 plane 2. */\n        if (n >= count+3) {\n          r[0] = 0x8f;\n          r[1] = (jch >> 8) | 0x80;\n          r[2] = (jch & 0xff) | 0x80;\n          conv->ostate = 0;\n          return count+3;\n        } else\n          return RET_TOOSMALL;\n      } else {\n        /* JISX 0213 plane 1. */\n        if (n >= count+2) {\n          r[0] = (jch >> 8) | 0x80;\n          r[1] = (jch & 0xff) | 0x80;\n          conv->ostate = 0;\n          return count+2;\n        } else\n          return RET_TOOSMALL;\n      }\n    }\n    return RET_ILUNI;\n  }\n}\n\nstatic int\neuc_jisx0213_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t lasttwo = conv->ostate;\n\n  if (lasttwo) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = (lasttwo >> 8) & 0xff;\n    r[1] = lasttwo & 0xff;\n    /* conv->ostate = 0; will be done by the caller */\n    return 2;\n  } else\n    return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/euc_jp.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2005, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * EUC-JP\n */\n\nstatic int\neuc_jp_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  /* Code set 0 (ASCII or JIS X 0201-1976 Roman) */\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  /* Code set 1 (JIS X 0208) */\n  if (c >= 0xa1 && c < 0xff) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    if (c < 0xf5) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0xa1 && c2 < 0xff) {\n        unsigned char buf[2];\n        buf[0] = c-0x80; buf[1] = c2-0x80;\n        return jisx0208_mbtowc(conv,pwc,buf,2);\n      } else\n        return RET_ILSEQ;\n    } else {\n      /* User-defined range. See\n       * Ken Lunde's \"CJKV Information Processing\", table 4-66, p. 206. */\n      unsigned char c2 = s[1];\n      if (c2 >= 0xa1 && c2 < 0xff) {\n        *pwc = 0xe000 + 94*(c-0xf5) + (c2-0xa1);\n        return 2;\n      } else\n        return RET_ILSEQ;\n    }\n  }\n  /* Code set 2 (half-width katakana) */\n  if (c == 0x8e) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if (c2 >= 0xa1 && c2 < 0xe0) {\n        int ret = jisx0201_mbtowc(conv,pwc,s+1,n-1);\n        if (ret == RET_ILSEQ)\n          return RET_ILSEQ;\n        if (ret != 1) abort();\n        return 2;\n      } else\n        return RET_ILSEQ;\n    }\n  }\n  /* Code set 3 (JIS X 0212-1990) */\n  if (c == 0x8f) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if (c2 >= 0xa1 && c2 < 0xff) {\n        if (n < 3)\n          return RET_TOOFEW(0);\n        if (c2 < 0xf5) {\n          unsigned char c3 = s[2];\n          if (c3 >= 0xa1 && c3 < 0xff) {\n            unsigned char buf[2];\n            int ret;\n            buf[0] = c2-0x80; buf[1] = c3-0x80;\n            ret = jisx0212_mbtowc(conv,pwc,buf,2);\n            if (ret == RET_ILSEQ)\n              return RET_ILSEQ;\n            if (ret != 2) abort();\n            return 3;\n          } else\n            return RET_ILSEQ;\n        } else {\n          /* User-defined range. See\n           * Ken Lunde's \"CJKV Information Processing\", table 4-66, p. 206. */\n          unsigned char c3 = s[2];\n          if (c3 >= 0xa1 && c3 < 0xff) {\n            *pwc = 0xe3ac + 94*(c2-0xf5) + (c3-0xa1);\n            return 3;\n          } else\n            return RET_ILSEQ;\n        }\n      } else\n        return RET_ILSEQ;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\neuc_jp_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Code set 0 (ASCII or JIS X 0201-1976 Roman) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 1 (JIS X 0208) */\n  ret = jisx0208_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0]+0x80;\n    r[1] = buf[1]+0x80;\n    return 2;\n  }\n\n  /* Code set 2 (half-width katakana) */\n  ret = jisx0201_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI && buf[0] >= 0x80) {\n    if (ret != 1) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0x8e;\n    r[1] = buf[0];\n    return 2;\n  }\n\n  /* Code set 3 (JIS X 0212-1990) */\n  ret = jisx0212_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 3)\n      return RET_TOOSMALL;\n    r[0] = 0x8f;\n    r[1] = buf[0]+0x80;\n    r[2] = buf[1]+0x80;\n    return 3;\n  }\n\n  /* Extra compatibility with Shift_JIS.  */\n  if (wc == 0x00a5) {\n    r[0] = 0x5c;\n    return 1;\n  }\n  if (wc == 0x203e) {\n    r[0] = 0x7e;\n    return 1;\n  }\n\n  /* User-defined range. See\n   * Ken Lunde's \"CJKV Information Processing\", table 4-66, p. 206. */\n  if (wc >= 0xe000 && wc < 0xe758) {\n    if (wc < 0xe3ac) {\n      unsigned char c1, c2;\n      if (n < 2)\n        return RET_TOOSMALL;\n      c1 = (unsigned int) (wc - 0xe000) / 94;\n      c2 = (unsigned int) (wc - 0xe000) % 94;\n      r[0] = c1+0xf5;\n      r[1] = c2+0xa1;\n      return 2;\n    } else {\n      unsigned char c1, c2;\n      if (n < 3)\n        return RET_TOOSMALL;\n      c1 = (unsigned int) (wc - 0xe3ac) / 94;\n      c2 = (unsigned int) (wc - 0xe3ac) % 94;\n      r[0] = 0x8f;\n      r[1] = c1+0xf5;\n      r[2] = c2+0xa1;\n      return 3;\n    }\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/euc_kr.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2007, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * EUC-KR\n */\n\n/* Specification: RFC 1557 */\n\nstatic int\neuc_kr_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  /* Code set 0 (ASCII or KS C 5636-1993) */\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  /* Code set 1 (KS C 5601-1992, now KS X 1001:2002) */\n  if (c >= 0xa1 && c < 0xff) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if (c2 >= 0xa1 && c2 < 0xff) {\n        unsigned char buf[2];\n        buf[0] = c-0x80; buf[1] = c2-0x80;\n        return ksc5601_mbtowc(conv,pwc,buf,2);\n      } else\n        return RET_ILSEQ;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\neuc_kr_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Code set 0 (ASCII or KS C 5636-1993) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 1 (KS C 5601-1992, now KS X 1001:2002) */\n  ret = ksc5601_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0]+0x80;\n    r[1] = buf[1]+0x80;\n    return 2;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/euc_tw.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * EUC-TW\n */\n\nstatic int\neuc_tw_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  /* Code set 0 (ASCII) */\n  if (c < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n  /* Code set 1 (CNS 11643-1992 Plane 1) */\n  if (c >= 0xa1 && c < 0xff) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if (c2 >= 0xa1 && c2 < 0xff) {\n        unsigned char buf[2];\n        buf[0] = c-0x80; buf[1] = c2-0x80;\n        return cns11643_1_mbtowc(conv,pwc,buf,2);\n      } else\n        return RET_ILSEQ;\n    }\n  }\n  /* Code set 2 (CNS 11643-1992 Planes 1-16) */\n  if (c == 0x8e) {\n    if (n < 4)\n      return RET_TOOFEW(0);\n    {\n      unsigned char c2 = s[1];\n      if (c2 >= 0xa1 && c2 <= 0xb0) {\n        unsigned char c3 = s[2];\n        unsigned char c4 = s[3];\n        if (c3 >= 0xa1 && c3 < 0xff && c4 >= 0xa1 && c4 < 0xff) {\n          unsigned char buf[2];\n          int ret;\n          buf[0] = c3-0x80; buf[1] = c4-0x80;\n          switch (c2-0xa0) {\n            case 1: ret = cns11643_1_mbtowc(conv,pwc,buf,2); break;\n            case 2: ret = cns11643_2_mbtowc(conv,pwc,buf,2); break;\n            case 3: ret = cns11643_3_mbtowc(conv,pwc,buf,2); break;\n            case 4: ret = cns11643_4_mbtowc(conv,pwc,buf,2); break;\n            case 5: ret = cns11643_5_mbtowc(conv,pwc,buf,2); break;\n            case 6: ret = cns11643_6_mbtowc(conv,pwc,buf,2); break;\n            case 7: ret = cns11643_7_mbtowc(conv,pwc,buf,2); break;\n            case 15: ret = cns11643_15_mbtowc(conv,pwc,buf,2); break;\n            default: return RET_ILSEQ;\n          }\n          if (ret == RET_ILSEQ)\n            return RET_ILSEQ;\n          if (ret != 2) abort();\n          return 4;\n        }\n      }\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\neuc_tw_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[3];\n  int ret;\n\n  /* Code set 0 (ASCII) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  ret = cns11643_wctomb(conv,buf,wc,3);\n  if (ret != RET_ILUNI) {\n    if (ret != 3) abort();\n\n    /* Code set 1 (CNS 11643-1992 Plane 1) */\n    if (buf[0] == 1) {\n      if (n < 2)\n        return RET_TOOSMALL;\n      r[0] = buf[1]+0x80;\n      r[1] = buf[2]+0x80;\n      return 2;\n    }\n\n    /* Code set 2 (CNS 11643-1992 Planes 1-16) */\n    if (n < 4)\n      return RET_TOOSMALL;\n    r[0] = 0x8e;\n    r[1] = buf[0]+0xa0;\n    r[2] = buf[1]+0x80;\n    r[3] = buf[2]+0x80;\n    return 4;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/flags.h",
    "content": "/* Generated automatically by genflags. */\n\n/* Set if the encoding can encode\n   the acute and grave accents U+00B4 and U+0060. */\n#define HAVE_ACCENTS 1\n\n/* Set if the encoding can encode\n   the single quotation marks U+2018 and U+2019. */\n#define HAVE_QUOTATION_MARKS 2\n\n/* Set if the encoding can encode\n   the double-width Hangul letters (Jamo) U+3131 to U+3163. */\n#define HAVE_HANGUL_JAMO 4\n\n#define ei_ascii_oflags (0)\n#define ei_utf8_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_ucs2_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_ucs2be_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_ucs2le_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_ucs4_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_ucs4be_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_ucs4le_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_utf16_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_utf16be_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_utf16le_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_utf32_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_utf32be_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_utf32le_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_utf7_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_ucs2internal_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_ucs2swapped_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_ucs4internal_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_ucs4swapped_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_c99_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_java_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_iso8859_1_oflags (HAVE_ACCENTS)\n#define ei_iso8859_2_oflags (HAVE_ACCENTS)\n#define ei_iso8859_3_oflags (HAVE_ACCENTS)\n#define ei_iso8859_4_oflags (HAVE_ACCENTS)\n#define ei_iso8859_5_oflags (0)\n#define ei_iso8859_6_oflags (0)\n#define ei_iso8859_7_oflags (HAVE_QUOTATION_MARKS)\n#define ei_iso8859_8_oflags (HAVE_ACCENTS)\n#define ei_iso8859_9_oflags (HAVE_ACCENTS)\n#define ei_iso8859_10_oflags (0)\n#define ei_iso8859_11_oflags (0)\n#define ei_iso8859_13_oflags (0)\n#define ei_iso8859_14_oflags (0)\n#define ei_iso8859_15_oflags (0)\n#define ei_iso8859_16_oflags (0)\n#define ei_koi8_r_oflags (0)\n#define ei_koi8_u_oflags (0)\n#define ei_koi8_ru_oflags (0)\n#define ei_cp1250_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_cp1251_oflags (HAVE_QUOTATION_MARKS)\n#define ei_cp1252_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_cp1253_oflags (HAVE_QUOTATION_MARKS)\n#define ei_cp1254_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_cp1255_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_cp1256_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_cp1257_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_cp1258_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_cp850_oflags (HAVE_ACCENTS)\n#define ei_cp862_oflags (0)\n#define ei_cp866_oflags (0)\n#define ei_cp1131_oflags (0)\n#define ei_mac_roman_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_mac_centraleurope_oflags (HAVE_QUOTATION_MARKS)\n#define ei_mac_iceland_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_mac_croatian_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_mac_romania_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_mac_cyrillic_oflags (HAVE_QUOTATION_MARKS)\n#define ei_mac_ukraine_oflags (HAVE_QUOTATION_MARKS)\n#define ei_mac_greek_oflags (HAVE_QUOTATION_MARKS)\n#define ei_mac_turkish_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_mac_hebrew_oflags (HAVE_QUOTATION_MARKS)\n#define ei_mac_arabic_oflags (0)\n#define ei_mac_thai_oflags (HAVE_QUOTATION_MARKS)\n#define ei_hp_roman8_oflags (HAVE_ACCENTS)\n#define ei_nextstep_oflags (HAVE_ACCENTS)\n#define ei_armscii_8_oflags (0)\n#define ei_georgian_academy_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_georgian_ps_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_koi8_t_oflags (HAVE_QUOTATION_MARKS)\n#define ei_pt154_oflags (HAVE_QUOTATION_MARKS)\n#define ei_rk1048_oflags (HAVE_QUOTATION_MARKS)\n#define ei_mulelao_oflags (0)\n#define ei_cp1133_oflags (0)\n#define ei_tis620_oflags (0)\n#define ei_cp874_oflags (HAVE_QUOTATION_MARKS)\n#define ei_viscii_oflags (0)\n#define ei_tcvn_oflags (HAVE_ACCENTS)\n#define ei_iso646_jp_oflags (0)\n#define ei_jisx0201_oflags (0)\n#define ei_jisx0208_oflags (HAVE_QUOTATION_MARKS)\n#define ei_jisx0212_oflags (0)\n#define ei_iso646_cn_oflags (0)\n#define ei_gb2312_oflags (HAVE_QUOTATION_MARKS)\n#define ei_isoir165_oflags (HAVE_QUOTATION_MARKS)\n#define ei_ksc5601_oflags (HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_euc_jp_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_sjis_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_cp932_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_iso2022_jp_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_iso2022_jp1_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_iso2022_jp2_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_iso2022_jpms_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_euc_cn_oflags (HAVE_QUOTATION_MARKS)\n#define ei_ces_gbk_oflags (HAVE_QUOTATION_MARKS)\n#define ei_cp936_oflags (HAVE_QUOTATION_MARKS)\n#define ei_gb18030_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_iso2022_cn_oflags (HAVE_QUOTATION_MARKS)\n#define ei_iso2022_cn_ext_oflags (HAVE_QUOTATION_MARKS)\n#define ei_hz_oflags (HAVE_QUOTATION_MARKS)\n#define ei_euc_tw_oflags (HAVE_QUOTATION_MARKS)\n#define ei_ces_big5_oflags (HAVE_QUOTATION_MARKS)\n#define ei_cp950_oflags (HAVE_QUOTATION_MARKS)\n#define ei_big5hkscs1999_oflags (HAVE_QUOTATION_MARKS)\n#define ei_big5hkscs2001_oflags (HAVE_QUOTATION_MARKS)\n#define ei_big5hkscs2004_oflags (HAVE_QUOTATION_MARKS)\n#define ei_big5hkscs2008_oflags (HAVE_QUOTATION_MARKS)\n#define ei_euc_kr_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_cp949_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_johab_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_iso2022_kr_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS | HAVE_HANGUL_JAMO)\n#define ei_cp856_oflags (HAVE_ACCENTS)\n#define ei_cp922_oflags (HAVE_ACCENTS)\n#define ei_cp943_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_cp1046_oflags (0)\n#define ei_cp1124_oflags (0)\n#define ei_cp1129_oflags (0)\n#define ei_cp1161_oflags (0)\n#define ei_cp1162_oflags (HAVE_QUOTATION_MARKS)\n#define ei_cp1163_oflags (0)\n#define ei_dec_kanji_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_dec_hanyu_oflags (HAVE_QUOTATION_MARKS)\n#define ei_cp437_oflags (0)\n#define ei_cp737_oflags (0)\n#define ei_cp775_oflags (0)\n#define ei_cp852_oflags (HAVE_ACCENTS)\n#define ei_cp853_oflags (HAVE_ACCENTS)\n#define ei_cp855_oflags (0)\n#define ei_cp857_oflags (HAVE_ACCENTS)\n#define ei_cp858_oflags (HAVE_ACCENTS)\n#define ei_cp860_oflags (0)\n#define ei_cp861_oflags (0)\n#define ei_cp863_oflags (HAVE_ACCENTS)\n#define ei_cp864_oflags (0)\n#define ei_cp865_oflags (0)\n#define ei_cp869_oflags (HAVE_QUOTATION_MARKS)\n#define ei_cp1125_oflags (0)\n#define ei_euc_jisx0213_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_shift_jisx0213_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_iso2022_jp3_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n#define ei_big5_2003_oflags (HAVE_QUOTATION_MARKS)\n#define ei_tds565_oflags (0)\n#define ei_atarist_oflags (HAVE_ACCENTS)\n#define ei_riscos1_oflags (HAVE_ACCENTS | HAVE_QUOTATION_MARKS)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/flushwc.h",
    "content": "/*\n * Copyright (C) 2001 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n#ifndef _FLUSHWC_H\n#define _FLUSHWC_H\n\nstatic int\nnormal_flushwc (conv_t conv, ucs4_t *pwc)\n{\n  ucs4_t last_wc = conv->istate;\n  if (last_wc) {\n    /* Output the buffered character. */\n    conv->istate = 0;\n    *pwc = (ucs4_t) last_wc;\n    return 1;\n  } else\n    return 0;\n}\n\n#endif /* _FLUSHWC_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/gb12345.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GB/T 12345-1990\n */\n\n/*\n * GB/T 12345-1990 is a traditional chinese counterpart of GB 2312-1986.\n * According to the unicode.org tables:\n * 2146 characters have been changed to their traditional counterpart,\n * 103 characters have been added, no characters have been removed.\n * Therefore we use an auxiliary table, which contains only the changes.\n */\n\n#include \"gb12345ext.h\"\n\nstatic int\ngb12345_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  int ret;\n\n  /* The gb12345ext table overrides some entries in the gb2312 table. */\n  /* Try the GB12345 extensions -> Unicode table. */\n  ret = gb12345ext_mbtowc(conv,pwc,s,n);\n  if (ret != RET_ILSEQ)\n    return ret;\n  /* Try the GB2312 -> Unicode table. */\n  ret = gb2312_mbtowc(conv,pwc,s,n);\n  return ret;\n}\n\nstatic int\ngb12345_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  int ret;\n\n  /* The gb12345ext table overrides some entries in the gb2312 table. */\n  /* Try the Unicode -> GB12345 extensions table. */\n  ret = gb12345ext_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n  /* Try the Unicode -> GB2312 table, and check that the resulting GB2312\n     byte sequence is not overridden by the GB12345 extensions table. */\n  ret = gb2312_wctomb(conv,r,wc,n);\n  if (ret == 2 && gb12345ext_mbtowc(conv,&wc,r,2) == 2)\n    return RET_ILUNI;\n  else\n    return ret;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/gb12345ext.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GB/T 12345.1990-0 extensions\n */\n\nstatic const unsigned short gb12345ext_2uni_page21[12] = {\n  /* 0x21 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x2225,\n};\nstatic const unsigned short gb12345ext_2uni_page26[85] = {\n  /* 0x26 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfe35,\n  0xfe36, 0xfe39, 0xfe3a, 0xfe3f, 0xfe40, 0xfe3d, 0xfe3e, 0xfe41,\n  0xfe42, 0xfe43, 0xfe44, 0xfffd, 0xfffd, 0xfe3b, 0xfe3c, 0xfe37,\n  0xfe38, 0xfe31, 0xfffd, 0xfe33, 0xfe34,\n};\nstatic const unsigned short gb12345ext_2uni_page28[32] = {\n  /* 0x28 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x0251, 0x1e3f, 0x0144, 0x0148, 0x01f9, 0x0261,\n};\nstatic const unsigned short gb12345ext_2uni_page30[6871] = {\n  /* 0x30 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x769a,\n  0xfffd, 0x85f9, 0xfffd, 0xfffd, 0x7919, 0x611b, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x9aaf, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8956,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x58e9, 0xfffd, 0x7f77, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x64fa, 0xfffd, 0x6557, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x9812, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x8fa6, 0x7d46, 0xfffd, 0x5e6b, 0xfffd,\n  0xfffd, 0xfffd, 0x7d81, 0xfffd, 0xfffd, 0xfffd, 0x938a, 0xfffd,\n  0x8b17, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x31 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x98fd, 0x5bf6, 0xfffd, 0x5831,\n  0xfffd, 0xfffd, 0x9b91, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x8f29, 0xfffd, 0x8c9d, 0x92c7, 0xfffd, 0x72fd, 0x5099,\n  0x618a, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x7db3, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x7b46, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7562, 0x6583,\n  0xfffd, 0x5e63, 0xfffd, 0xfffd, 0x9589, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x908a, 0x7de8,\n  0x8cb6, 0xfffd, 0xfffd, 0x8b8a, 0xfffd, 0xfffd, 0x8faf, 0x8fae,\n  0xfffd, 0x6a19, 0xfffd, 0xfffd, 0xfffd, 0x9c49, 0xfffd, 0xfffd,\n  0x765f, 0xfffd, 0xfffd, 0x7015, 0x6ff1, 0x8cd3, 0x64ef, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9905, 0xfffd,\n  /* 0x32 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x64a5, 0x9262, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x9251, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x99c1, 0xfffd, 0xfffd, 0xfffd,\n  0x88dc, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8ca1, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x53c3, 0x8836, 0x6b98,\n  0x615a, 0x6158, 0x71e6, 0x84bc, 0x8259, 0x5009, 0x6ec4, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x53a0, 0xfffd, 0x5074,\n  0xfffd, 0x6e2c, 0x5c64, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8a6b, 0xfffd,\n  0xfffd, 0xfffd, 0x6519, 0x647b, 0x87ec, 0x995e, 0x8b92, 0x7e8f,\n  0x93df, 0x7523, 0x95e1, 0x986b, 0xfffd, 0xfffd,\n  /* 0x33 */\n  0x5834, 0x5617, 0xfffd, 0x9577, 0x511f, 0x8178, 0x5ee0, 0xfffd,\n  0x66a2, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9214, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8eca, 0xfffd, 0xfffd, 0xfffd,\n  0x5fb9, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5875, 0xfffd, 0xfffd,\n  0xfffd, 0x9673, 0xfffd, 0x896f, 0xfffd, 0x7a31, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x61f2, 0xfffd, 0x8aa0, 0xfffd,\n  0xfffd, 0x9a01, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x9072, 0xfffd, 0x99b3, 0xfffd, 0x9f52, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x71be, 0xfffd, 0x885d, 0x87f2, 0xfffd, 0x5bf5,\n  0xfffd, 0xfffd, 0x7587, 0x8e8a, 0xfffd, 0xfffd, 0x7c4c, 0xfffd,\n  0x7da2, 0xfffd, 0x919c, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x92e4, 0x96db, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x34 */\n  0x790e, 0x5132, 0xfffd, 0xfffd, 0x89f8, 0x8655, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x50b3, 0xfffd, 0xfffd, 0xfffd, 0x7621, 0xfffd,\n  0xfffd, 0xfffd, 0x95d6, 0x5275, 0xfffd, 0xfffd, 0xfffd, 0x9318,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7d14, 0xfffd,\n  0xfffd, 0x7dbd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8fad, 0xfffd,\n  0xfffd, 0x8a5e, 0xfffd, 0xfffd, 0x8cdc, 0xfffd, 0x8070, 0xfffd,\n  0xfffd, 0xfffd, 0x5f9e, 0x53e2, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x8ea5, 0xfffd, 0x7ac4, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x932f, 0xfffd, 0x9054, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5e36,\n  0xfffd, 0xfffd, 0x8cb8, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x35 */\n  0xfffd, 0xfffd, 0x64d4, 0xfffd, 0x55ae, 0x9132, 0x64a3, 0x81bd,\n  0xfffd, 0xfffd, 0xfffd, 0x619a, 0xfffd, 0x8a95, 0x5f48, 0xfffd,\n  0x7576, 0x64cb, 0x9ee8, 0x8569, 0x6a94, 0xfffd, 0x6417, 0xfffd,\n  0xfffd, 0x5cf6, 0x79b1, 0x5c0e, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x71c8, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x9127, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6575,\n  0xfffd, 0xfffd, 0x6ecc, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x905e, 0x7de0, 0x985b, 0xfffd,\n  0xfffd, 0xfffd, 0x9ede, 0xfffd, 0xfffd, 0x588a, 0x96fb, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6fb1, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x91e3, 0x8abf, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8adc, 0xfffd,\n  /* 0x36 */\n  0xfffd, 0xfffd, 0xfffd, 0x91d8, 0x9802, 0xfffd, 0x9320, 0xfffd,\n  0x8a02, 0xfffd, 0x6771, 0xfffd, 0xfffd, 0xfffd, 0x52d5, 0x68df,\n  0xfffd, 0xfffd, 0x51cd, 0xfffd, 0xfffd, 0xfffd, 0x9b25, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x72a2, 0x7368,\n  0x8b80, 0xfffd, 0xfffd, 0x8ced, 0xfffd, 0x934d, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x935b, 0xfffd, 0x65b7, 0x7dde,\n  0xfffd, 0xfffd, 0x968a, 0x5c0d, 0xfffd, 0x5678, 0xfffd, 0xfffd,\n  0x9813, 0xfffd, 0x920d, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x596a, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x58ae, 0xfffd, 0xfffd, 0x9d5d, 0xfffd, 0x984d, 0x8a1b, 0xfffd,\n  0x60e1, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9913, 0xfffd, 0xfffd,\n  0x5152, 0xfffd, 0x723e, 0x990c, 0xfffd, 0xfffd,\n  /* 0x37 */\n  0x8cb3, 0x767c, 0x7f70, 0xfffd, 0xfffd, 0xfffd, 0x95a5, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x792c, 0x91e9,\n  0xfffd, 0xfffd, 0x7169, 0xfffd, 0xfffd, 0x7bc4, 0x8ca9, 0xfffd,\n  0x98ef, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x8a2a, 0x7d21, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x98db, 0xfffd, 0xfffd, 0x8ab9, 0xfffd, 0xfffd, 0x5ee2, 0xfffd,\n  0x8cbb, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7d1b, 0x58b3,\n  0xfffd, 0xfffd, 0xfffd, 0x596e, 0xfffd, 0xfffd, 0x61a4, 0x7cde,\n  0x8c50, 0xfffd, 0x6953, 0xfffd, 0xfffd, 0x92d2, 0x98a8, 0x760b,\n  0xfffd, 0xfffd, 0x99ae, 0x7e2b, 0x8af7, 0xfffd, 0x9cf3, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x819a, 0xfffd, 0xfffd, 0xfffd, 0x8f3b,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x38 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x64ab, 0x8f14,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x8ce6, 0x5fa9, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x8ca0, 0xfffd, 0x8a03, 0xfffd, 0x5a66, 0x7e1b, 0xfffd,\n  0xfffd, 0xfffd, 0x8a72, 0xfffd, 0xfffd, 0x9223, 0x84cb, 0xfffd,\n  0x5e79, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8d95, 0xfffd,\n  0xfffd, 0xfffd, 0x8d1b, 0x5ca1, 0x525b, 0x92fc, 0xfffd, 0xfffd,\n  0x7db1, 0x5d17, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x93ac, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x64f1, 0xfffd, 0x9d3f, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x95a3, 0xfffd, 0x927b, 0x500b, 0xfffd, 0x7d66,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x39 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9f94,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x978f, 0xfffd, 0xfffd,\n  0x8ca2, 0xfffd, 0x920e, 0xfffd, 0x6e9d, 0xfffd, 0xfffd, 0xfffd,\n  0x69cb, 0x8cfc, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8831, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x9867, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x526e,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x95dc,\n  0xfffd, 0xfffd, 0x89c0, 0xfffd, 0x9928, 0xfffd, 0x6163, 0xfffd,\n  0x8cab, 0xfffd, 0x5ee3, 0xfffd, 0xfffd, 0x898f, 0xfffd, 0xfffd,\n  0x6b78, 0x9f9c, 0x95a8, 0x8ecc, 0xfffd, 0x8a6d, 0xfffd, 0xfffd,\n  0x6ac3, 0xfffd, 0x8cb4, 0x528a, 0x8f25, 0xfffd, 0xfffd, 0x934b,\n  0xfffd, 0x570b, 0xfffd, 0xfffd, 0x904e, 0xfffd,\n  /* 0x3a */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x99ed, 0xfffd,\n  0xfffd, 0xfffd, 0x97d3, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x6f22, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x865f, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x95a1, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9db4, 0x8cc0,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x8f5f, 0xfffd, 0xfffd, 0xfffd, 0x9d3b,\n  0xfffd, 0xfffd, 0xfffd, 0x7d05, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x5f8c, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x58fa,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x3b */\n  0xfffd, 0xfffd, 0xfffd, 0x8b77, 0xfffd, 0x6eec, 0xfffd, 0xfffd,\n  0x5629, 0x83ef, 0xfffd, 0xfffd, 0x756b, 0x5283, 0xfffd, 0x8a71,\n  0xfffd, 0xfffd, 0x61f7, 0xfffd, 0x58de, 0x6b61, 0x74b0, 0xfffd,\n  0x9084, 0x7de9, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x8b0a, 0xfffd, 0x63ee, 0x8f1d, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8cc4, 0x7a62,\n  0x6703, 0x71f4, 0x532f, 0x8af1, 0x8aa8, 0x7e6a, 0x8477, 0xfffd,\n  0xfffd, 0xfffd, 0x6e3e, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x7372, 0xfffd, 0xfffd, 0xfffd, 0x8ca8, 0x798d, 0x64ca, 0xfffd,\n  0xfffd, 0x6a5f, 0xfffd, 0xfffd, 0x7a4d, 0xfffd,\n  /* 0x3c */\n  0xfffd, 0x9951, 0xfffd, 0xfffd, 0x8b4f, 0x9dc4, 0xfffd, 0x7e3e,\n  0x7ddd, 0xfffd, 0x6975, 0xfffd, 0x8f2f, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7d1a, 0x64e0, 0x5e7e,\n  0xfffd, 0xfffd, 0x858a, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x5291, 0xfffd, 0x6fdf, 0xfffd, 0xfffd, 0x8a08, 0x8a18, 0xfffd,\n  0xfffd, 0x969b, 0xfffd, 0x7e7c, 0x7d00, 0xfffd, 0xfffd, 0x593e,\n  0xfffd, 0xfffd, 0xfffd, 0x83a2, 0x9830, 0x8cc8, 0xfffd, 0x9240,\n  0xfffd, 0xfffd, 0x50f9, 0xfffd, 0x99d5, 0xfffd, 0x6bb2, 0x76e3,\n  0x5805, 0xfffd, 0x7b8b, 0x9593, 0xfffd, 0xfffd, 0xfffd, 0x8271,\n  0xfffd, 0x7dd8, 0x7e6d, 0x6aa2, 0xfffd, 0xfffd, 0x9e7c, 0x63c0,\n  0x64bf, 0x7c21, 0x5109, 0xfffd, 0xfffd, 0x85a6, 0x6abb, 0x9452,\n  0x8e10, 0x8ce4, 0x898b, 0x9375, 0xfffd, 0xfffd,\n  /* 0x3d */\n  0xfffd, 0x8266, 0x528d, 0x991e, 0x6f38, 0x6ffa, 0x6f97, 0xfffd,\n  0xfffd, 0xfffd, 0x5c07, 0x6f3f, 0xfffd, 0xfffd, 0x8523, 0x69f3,\n  0x596c, 0x8b1b, 0xfffd, 0x91ac, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x81a0, 0xfffd, 0xfffd, 0x6f86, 0x9a55, 0x5b0c, 0xfffd,\n  0x652a, 0x9278, 0x77ef, 0x50e5, 0xfffd, 0xfffd, 0xfffd, 0x9903,\n  0x7e73, 0x7d5e, 0xfffd, 0xfffd, 0xfffd, 0x8f4e, 0x8f03, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x968e, 0xfffd,\n  0xfffd, 0x7bc0, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6f54,\n  0x7d50, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x8aa1, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x7dca, 0x9326, 0x50c5, 0x8b39, 0x9032,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x71fc, 0xfffd,\n  /* 0x3e */\n  0x76e1, 0x52c1, 0xfffd, 0xfffd, 0x8396, 0xfffd, 0xfffd, 0x9be8,\n  0xfffd, 0x9a5a, 0xfffd, 0xfffd, 0x7d93, 0xfffd, 0xfffd, 0xfffd,\n  0x9838, 0xfffd, 0xfffd, 0xfffd, 0x93e1, 0x5f91, 0x75d9, 0xfffd,\n  0xfffd, 0x7af6, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7cfe,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x820a, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x99d2, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x8209, 0xfffd, 0xfffd, 0xfffd, 0x64da, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x92f8, 0xfffd, 0xfffd, 0x61fc, 0xfffd, 0x5287, 0xfffd,\n  0x9d51, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7d79, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x89ba, 0xfffd, 0x8a23, 0x7d76,\n  0xfffd, 0xfffd, 0x921e, 0x8ecd, 0xfffd, 0xfffd,\n  /* 0x3f */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x99ff, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x958b, 0xfffd, 0xfffd, 0x51f1, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9846, 0xfffd, 0x6bbb, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8ab2, 0xfffd, 0xfffd,\n  0x58be, 0x61c7, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x6473, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x5eab, 0x8932, 0x8a87, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x584a, 0xfffd, 0x5108, 0xfffd, 0x5bec, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x7926, 0xfffd, 0x66e0, 0xfffd, 0x8667, 0xfffd,\n  0x5dcb, 0x7aba, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x40 */\n  0x994b, 0xfffd, 0x6f70, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x64f4, 0xfffd, 0x95ca, 0xfffd, 0xfffd, 0xfffd, 0x881f, 0x81d8,\n  0xfffd, 0xfffd, 0x840a, 0x4f86, 0x8cf4, 0x85cd, 0xfffd, 0x6b04,\n  0x6514, 0x7c43, 0x95cc, 0x862d, 0x703e, 0x8b95, 0x652c, 0x89bd,\n  0x61f6, 0x7e9c, 0x721b, 0x6feb, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x6488, 0x52de, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x6f87, 0xfffd, 0x6a02, 0xfffd, 0x9433,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x58d8, 0xfffd, 0xfffd, 0x985e,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x7c6c, 0xfffd, 0x96e2, 0x7055, 0xfffd, 0xfffd, 0x88cf, 0x9bc9,\n  0x79ae, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9e97, 0x53b2, 0x52f5,\n  0x792b, 0x6b77, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x41 */\n  0xfffd, 0xfffd, 0xfffd, 0x701d, 0x96b8, 0xfffd, 0xfffd, 0xfffd,\n  0x5006, 0x806f, 0x84ee, 0x9023, 0x942e, 0xfffd, 0x6190, 0x6f23,\n  0x7c3e, 0x6582, 0x81c9, 0x93c8, 0x6200, 0x7149, 0x7df4, 0x7ce7,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5169, 0x8f1b, 0xfffd, 0xfffd,\n  0xfffd, 0x8ad2, 0xfffd, 0xfffd, 0xfffd, 0x7642, 0xfffd, 0xfffd,\n  0x907c, 0xfffd, 0xfffd, 0xfffd, 0x9410, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x7375, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x81e8, 0x9130, 0x9c57, 0xfffd, 0xfffd, 0x8cc3, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x9f61, 0x9234, 0xfffd, 0xfffd, 0xfffd,\n  0x9748, 0xfffd, 0x5dba, 0x9818, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x993e, 0xfffd, 0x5289, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x9f8d, 0x807e, 0x56a8, 0x7c60, 0xfffd,\n  /* 0x42 */\n  0xfffd, 0x58df, 0x650f, 0x96b4, 0x6a13, 0x5a41, 0x645f, 0x7c0d,\n  0xfffd, 0xfffd, 0x8606, 0x76e7, 0x9871, 0x5eec, 0x7210, 0x64c4,\n  0x6ef7, 0x865c, 0x9b6f, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8cc2,\n  0xfffd, 0xfffd, 0xfffd, 0x9332, 0x9678, 0xfffd, 0x9a62, 0xfffd,\n  0x92c1, 0xfffd, 0xfffd, 0xfffd, 0x5c62, 0x7e37, 0x616e, 0xfffd,\n  0xfffd, 0xfffd, 0x6ffe, 0x7dd1, 0x5dd2, 0x6523, 0x5b7f, 0x7064,\n  0xfffd, 0x4e82, 0xfffd, 0xfffd, 0x6384, 0x8f2a, 0x502b, 0x4f96,\n  0x6dea, 0x7db8, 0x8ad6, 0x863f, 0xfffd, 0x7f85, 0x908f, 0x947c,\n  0x7c6e, 0x9a3e, 0xfffd, 0xfffd, 0xfffd, 0x99f1, 0x7d61, 0x5abd,\n  0xfffd, 0x746a, 0x78bc, 0x879e, 0x99ac, 0x99e1, 0xfffd, 0x55ce,\n  0xfffd, 0x8cb7, 0x9ea5, 0x8ce3, 0x9081, 0xfffd, 0x779e, 0x9945,\n  0x883b, 0x6eff, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x43 */\n  0x8b3e, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x9328, 0xfffd, 0xfffd, 0x925a, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x8cbf, 0x9ebd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9382, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9580, 0x60b6, 0x5011, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x9333, 0xfffd, 0x5922, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8b0e, 0x5f4c, 0xfffd, 0xfffd,\n  0x8993, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7dbf,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7dec, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5edf, 0xfffd, 0xfffd, 0x6ec5,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x61ab, 0x95a9, 0xfffd, 0xfffd,\n  0x9cf4, 0x9298, 0xfffd, 0xfffd, 0x8b2c, 0xfffd,\n  /* 0x44 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x8b00, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x755d, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9209, 0xfffd, 0xfffd,\n  0x7d0d, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x96e3, 0xfffd, 0x6493, 0x8166, 0x60f1, 0x9b27, 0xfffd, 0xfffd,\n  0x9912, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x64ec, 0xfffd, 0xfffd, 0x81a9, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x6506, 0xfffd, 0xfffd, 0xfffd, 0x91c0,\n  0x9ce5, 0xfffd, 0xfffd, 0x8076, 0xfffd, 0x5699, 0x9477, 0x93b3,\n  0xfffd, 0xfffd, 0x6ab8, 0x7370, 0xfffd, 0x5be7,\n  /* 0x45 */\n  0x64f0, 0x6fd8, 0xfffd, 0xfffd, 0x9215, 0x7d10, 0x81bf, 0x6fc3,\n  0x8fb2, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x7627, 0xfffd, 0xfffd, 0xfffd, 0x8afe, 0xfffd, 0x6b50, 0x9dd7,\n  0x6bc6, 0xfffd, 0x5614, 0xfffd, 0x6f1a, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x76e4, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x9f90, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x8ce0, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5674, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x9d6c, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x46 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9a19, 0x98c4, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x983b, 0x8ca7, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x860b, 0xfffd, 0xfffd, 0x6191, 0xfffd, 0x8a55,\n  0xfffd, 0xfffd, 0x6f51, 0x9817, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x64b2, 0x92ea, 0x50d5, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x6a38, 0xfffd, 0xfffd, 0xfffd, 0x8b5c, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x81cd, 0x9f4a, 0xfffd, 0xfffd, 0xfffd, 0x9a0e, 0xfffd,\n  0x8c48, 0xfffd, 0xfffd, 0x5553, 0xfffd, 0xfffd, 0xfffd, 0x6c23,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8a16, 0xfffd,\n  /* 0x47 */\n  0xfffd, 0xfffd, 0x727d, 0xfffd, 0x91fa, 0x925b, 0xfffd, 0x9077,\n  0x7c3d, 0xfffd, 0x8b19, 0xfffd, 0xfffd, 0x9322, 0x9257, 0xfffd,\n  0xfffd, 0xfffd, 0x6dfa, 0x8b74, 0x5879, 0xfffd, 0xfffd, 0xfffd,\n  0x69cd, 0x55c6, 0xfffd, 0xfffd, 0x58bb, 0x8594, 0xfffd, 0x6436,\n  0xfffd, 0x936c, 0xfffd, 0xfffd, 0x6a4b, 0xfffd, 0x55ac, 0x50d1,\n  0xfffd, 0xfffd, 0xfffd, 0x7ff9, 0xfffd, 0xfffd, 0x7ac5, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x7aca, 0x6b3d, 0xfffd, 0x89aa, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5be2, 0xfffd, 0xfffd,\n  0x8f15, 0x6c2b, 0x50be, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x9803, 0x8acb, 0x6176, 0x74ca, 0x7aae, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8da8, 0x5340,\n  0xfffd, 0xfffd, 0x8ec0, 0xfffd, 0x9a45, 0xfffd,\n  /* 0x48 */\n  0xfffd, 0xfffd, 0x9f72, 0xfffd, 0xfffd, 0xfffd, 0x9874, 0x6b0a,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x52f8,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9d72, 0xfffd, 0x78ba, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x8b93, 0x9952, 0x64fe, 0x7e5e, 0xfffd, 0x71b1,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x97cc, 0xfffd, 0x8a8d, 0xfffd,\n  0xfffd, 0x7d09, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x69ae, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7d68, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8edf, 0xfffd, 0xfffd, 0xfffd,\n  0x92ed, 0x958f, 0x6f64, 0xfffd, 0xfffd, 0xfffd, 0x7051, 0x85a9,\n  0xfffd, 0x9c13, 0xfffd, 0x8cfd, 0xfffd, 0xfffd,\n  /* 0x49 */\n  0x5098, 0xfffd, 0xfffd, 0xfffd, 0x55aa, 0xfffd, 0x9a37, 0x6383,\n  0xfffd, 0xfffd, 0xfffd, 0x6f80, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x6bba, 0xfffd, 0xfffd, 0x7d17, 0xfffd, 0xfffd, 0xfffd, 0x7be9,\n  0x66ec, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x9583, 0x965d, 0xfffd, 0x8d0d, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x7e55, 0xfffd, 0x50b7, 0xfffd, 0x8cde, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x71d2, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x7d39, 0xfffd, 0x8cd2, 0xfffd, 0xfffd,\n  0x6368, 0xfffd, 0x651d, 0xfffd, 0x61fe, 0xfffd, 0xfffd, 0x8a2d,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7d33,\n  0xfffd, 0xfffd, 0x5be9, 0x5b38, 0xfffd, 0x814e, 0xfffd, 0x6ef2,\n  0x8072, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7e69,\n  /* 0x4a */\n  0xfffd, 0xfffd, 0xfffd, 0x52dd, 0x8056, 0x5e2b, 0xfffd, 0x7345,\n  0xfffd, 0x6fd5, 0x8a69, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x6642, 0xfffd, 0xfffd, 0x8755, 0x5be6, 0x8b58, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x99db, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x52e2, 0xfffd, 0xfffd,\n  0xfffd, 0x9069, 0xfffd, 0xfffd, 0x91cb, 0x98fe, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x8996, 0x8a66, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x58fd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7378, 0xfffd, 0x6a1e,\n  0xfffd, 0xfffd, 0xfffd, 0x8f38, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x66f8, 0x8d16, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x5c6c, 0x8853, 0xfffd, 0x6a39, 0xfffd,\n  0xfffd, 0x7aea, 0xfffd, 0xfffd, 0x6578, 0xfffd,\n  /* 0x4b */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5e25, 0xfffd,\n  0xfffd, 0xfffd, 0x96d9, 0xfffd, 0x8ab0, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x9806, 0xfffd, 0x8aac, 0x78a9, 0xfffd, 0x720d,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7d72, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x98fc, 0xfffd,\n  0x9b06, 0x8073, 0x616b, 0x980c, 0xfffd, 0xfffd, 0x8a1f, 0x8aa6,\n  0xfffd, 0xfffd, 0x64fb, 0xfffd, 0x8607, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8a34, 0x8085,\n  0xfffd, 0xfffd, 0xfffd, 0x96d6, 0xfffd, 0x96a8, 0x7d8f, 0xfffd,\n  0xfffd, 0x6b72, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5b6b, 0x640d,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7e2e, 0x7463, 0xfffd, 0x9396,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x4c */\n  0x737a, 0x64bb, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x81fa,\n  0xfffd, 0xfffd, 0xfffd, 0x614b, 0xfffd, 0xfffd, 0x6524, 0x8caa,\n  0x7671, 0x7058, 0x58c7, 0xfffd, 0xfffd, 0xfffd, 0x8b5a, 0x8ac7,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5606, 0xfffd, 0x6e6f,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x71d9, 0xfffd, 0x6fe4, 0xfffd, 0x7e27,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8a0e, 0xfffd, 0xfffd,\n  0xfffd, 0x9a30, 0xfffd, 0x8b04, 0xfffd, 0xfffd, 0xfffd, 0x92bb,\n  0xfffd, 0x984c, 0xfffd, 0xfffd, 0x9ad4, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x689d, 0xfffd, 0xfffd, 0xfffd,\n  0x8cbc, 0x9435, 0xfffd, 0x5ef3, 0x807d, 0x70f4,\n  /* 0x4d */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9285, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x7d71, 0xfffd, 0xfffd, 0xfffd, 0x982d, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x5716, 0xfffd, 0xfffd, 0x5857, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5718, 0xfffd, 0x983d, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x9d15, 0xfffd, 0x99b1, 0x99dd, 0x6a62, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7aaa, 0xfffd, 0xfffd, 0x896a,\n  0xfffd, 0xfffd, 0xfffd, 0x5f4e, 0x7063, 0xfffd, 0x9811, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x842c, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7db2,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x4e */\n  0xfffd, 0xfffd, 0xfffd, 0x97cb, 0x9055, 0xfffd, 0x570d, 0xfffd,\n  0xfffd, 0x7232, 0x6ff0, 0x7dad, 0x8466, 0xfffd, 0xfffd, 0x5049,\n  0x50de, 0xfffd, 0x7def, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8b02, 0xfffd, 0xfffd, 0x885b,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x805e, 0x7d0b, 0xfffd, 0x7a69,\n  0xfffd, 0x554f, 0xfffd, 0xfffd, 0xfffd, 0x64be, 0x8778, 0x6e26,\n  0x7aa9, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x55da,\n  0x93a2, 0x70cf, 0xfffd, 0x8aa3, 0xfffd, 0x7121, 0x856a, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x5862, 0xfffd, 0x9727, 0xfffd, 0xfffd, 0xfffd,\n  0x52d9, 0xfffd, 0x8aa4, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x932b, 0x72a7,\n  /* 0x4f */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8972, 0xfffd, 0x7fd2,\n  0xfffd, 0xfffd, 0x9291, 0xfffd, 0xfffd, 0xfffd, 0x6232, 0x7d30,\n  0xfffd, 0x8766, 0xfffd, 0xfffd, 0x8f44, 0xfffd, 0x5cfd, 0x4fe0,\n  0x72f9, 0xfffd, 0xfffd, 0xfffd, 0x5687, 0xfffd, 0x9341, 0xfffd,\n  0xfffd, 0x9bae, 0x7e96, 0xfffd, 0x8ce2, 0x929c, 0xfffd, 0x9591,\n  0xfffd, 0xfffd, 0xfffd, 0x986f, 0x96aa, 0x73fe, 0x737b, 0x7e23,\n  0xfffd, 0x9921, 0xfffd, 0x61b2, 0xfffd, 0xfffd, 0x7dab, 0xfffd,\n  0xfffd, 0x9472, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9109, 0xfffd,\n  0xfffd, 0x8a73, 0xfffd, 0x97ff, 0xfffd, 0x9805, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x856d, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x56c2, 0x92b7, 0xfffd, 0xfffd, 0xfffd, 0x66c9,\n  /* 0x50 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x562f, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5354, 0x633e, 0xfffd, 0xfffd,\n  0xfffd, 0x8105, 0x8ae7, 0x5beb, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x7009, 0x8b1d, 0xfffd, 0xfffd, 0xfffd, 0x92c5, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x91c1, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x8208, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x92b9, 0xfffd, 0xfffd, 0x7d89, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x9808, 0xfffd, 0x8a31, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7dd2, 0x7e8c,\n  0x8ed2, 0xfffd, 0xfffd, 0x61f8, 0xfffd, 0xfffd,\n  /* 0x51 */\n  0x9078, 0x766c, 0xfffd, 0x7d62, 0xfffd, 0xfffd, 0x5b78, 0xfffd,\n  0xfffd, 0xfffd, 0x52db, 0xfffd, 0xfffd, 0xfffd, 0x8a62, 0x5c0b,\n  0x99b4, 0xfffd, 0xfffd, 0xfffd, 0x8a13, 0x8a0a, 0x905c, 0xfffd,\n  0x58d3, 0xfffd, 0x9d09, 0x9d28, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x555e, 0x4e9e, 0x8a1d,\n  0xfffd, 0xfffd, 0x95b9, 0xfffd, 0xfffd, 0x9e7d, 0x56b4, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9854, 0x95bb, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8277, 0xfffd, 0xfffd,\n  0x53ad, 0x786f, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8afa,\n  0x9a57, 0xfffd, 0xfffd, 0x9d26, 0xfffd, 0x694a, 0x63da, 0xfffd,\n  0x760d, 0xfffd, 0xfffd, 0x967d, 0xfffd, 0xfffd, 0x7662, 0x990a,\n  0x6a23, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x52 */\n  0xfffd, 0x582f, 0xfffd, 0xfffd, 0x8b21, 0xfffd, 0xfffd, 0xfffd,\n  0x85e5, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x723a, 0xfffd,\n  0xfffd, 0xfffd, 0x9801, 0xfffd, 0x696d, 0x8449, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x91ab, 0xfffd, 0x92a5, 0xfffd,\n  0xfffd, 0xfffd, 0x9824, 0xfffd, 0x907a, 0xfffd, 0x5100, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x87fb, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x85dd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x5104, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x61b6, 0x7fa9, 0xfffd, 0xfffd, 0x8a63,\n  0x8b70, 0x8abc, 0x8b6f, 0xfffd, 0xfffd, 0xfffd, 0x7e79, 0xfffd,\n  0x852d, 0xfffd, 0xfffd, 0xfffd, 0x9670, 0xfffd, 0xfffd, 0x9280,\n  0xfffd, 0xfffd, 0x98f2, 0xfffd, 0xfffd, 0x96b1,\n  /* 0x53 */\n  0xfffd, 0xfffd, 0x6afb, 0x5b30, 0x9df9, 0x61c9, 0x7e93, 0x7469,\n  0x87a2, 0x71df, 0x7192, 0x8805, 0xfffd, 0x8d0f, 0xfffd, 0xfffd,\n  0x7a4e, 0xfffd, 0xfffd, 0x55b2, 0x64c1, 0x50ad, 0xfffd, 0x7670,\n  0xfffd, 0xfffd, 0x8e34, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x512a, 0xfffd, 0x6182, 0xfffd,\n  0xfffd, 0x90f5, 0x923e, 0x7336, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8a98, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8f3f, 0x9918,\n  0xfffd, 0xfffd, 0x9b5a, 0xfffd, 0xfffd, 0x6f01, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x8207, 0x5dbc, 0xfffd, 0xfffd, 0x8a9e, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x9b31, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x7344, 0xfffd, 0x8b7d,\n  /* 0x54 */\n  0xfffd, 0xfffd, 0xfffd, 0x9810, 0xfffd, 0x99ad, 0x9d1b, 0x6df5,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8f45, 0x5712,\n  0x54e1, 0x5713, 0xfffd, 0xfffd, 0x7de3, 0x9060, 0xfffd, 0x9858,\n  0xfffd, 0xfffd, 0xfffd, 0x7d04, 0xfffd, 0x8e8d, 0x9470, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x95b2, 0xfffd, 0x96f2, 0x9116, 0xfffd,\n  0x9695, 0xfffd, 0x904b, 0x85f4, 0x9196, 0x6688, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x96dc, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8f09,\n  0xfffd, 0xfffd, 0xfffd, 0x6522, 0x66ab, 0x8d0a, 0x8d1c, 0x81df,\n  0xfffd, 0xfffd, 0xfffd, 0x947f, 0xfffd, 0x68d7, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7ac8, 0xfffd, 0x8cac,\n  0x64c7, 0x5247, 0x6fa4, 0x8cca, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x8d08, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8ecb,\n  /* 0x55 */\n  0x9358, 0x9598, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x8a50, 0xfffd, 0x9f4b, 0xfffd, 0xfffd, 0x50b5, 0xfffd, 0xfffd,\n  0x6c08, 0xfffd, 0xfffd, 0xfffd, 0x76de, 0x65ac, 0x8f3e, 0x5d84,\n  0xfffd, 0xfffd, 0x68e7, 0xfffd, 0x6230, 0xfffd, 0xfffd, 0x7dbb,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5f35, 0xfffd, 0x6f32, 0xfffd,\n  0xfffd, 0x5e33, 0x8cec, 0xfffd, 0x8139, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x8d99, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x87c4, 0x8f4d, 0xfffd, 0x937a,\n  0xfffd, 0x9019, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x8c9e, 0x91dd, 0x5075, 0xfffd, 0xfffd, 0x8a3a, 0xfffd,\n  0xfffd, 0x93ae, 0x9663, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x56 */\n  0x5e40, 0x7665, 0x912d, 0x8b49, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7e54, 0x8077,\n  0xfffd, 0xfffd, 0xfffd, 0x57f7, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x8879, 0xfffd, 0x7d19, 0xfffd, 0x646f, 0x64f2,\n  0xfffd, 0xfffd, 0xfffd, 0x5e5f, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x8cea, 0xfffd, 0xfffd, 0x6eef, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x9418, 0xfffd, 0x7d42, 0x7a2e, 0x816b, 0xfffd,\n  0xfffd, 0x8846, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8b05, 0xfffd,\n  0x8ef8, 0xfffd, 0xfffd, 0xfffd, 0x76ba, 0xfffd, 0x665d, 0x9a5f,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8af8, 0x8a85, 0xfffd,\n  0xfffd, 0x71ed, 0xfffd, 0xfffd, 0x77da, 0x56d1, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x8caf, 0x9444, 0x7bc9,\n  /* 0x57 */\n  0xfffd, 0xfffd, 0xfffd, 0x99d0, 0xfffd, 0xfffd, 0xfffd, 0x5c08,\n  0x78da, 0x8f49, 0xfffd, 0x8cfa, 0xfffd, 0x6a01, 0x838a, 0x88dd,\n  0x599d, 0xfffd, 0x58ef, 0x72c0, 0xfffd, 0x9310, 0xfffd, 0x8d05,\n  0x589c, 0x7db4, 0x8ac4, 0x6e96, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6fc1, 0xfffd,\n  0xfffd, 0x8cc7, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6f2c, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x7d9c, 0x7e3d, 0x7e31, 0x9112, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8a5b, 0xfffd,\n  0x7d44, 0x947d, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x58 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x55c7, 0xfffd, 0xfffd, 0x5399, 0xfffd,\n  0x53b4, 0xfffd, 0xfffd, 0x9768, 0x8d0b, 0xfffd, 0xfffd, 0x532d,\n  0x5331, 0xfffd, 0x8cfe, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x5244, 0xfffd, 0x528c, 0x5274, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x50b4, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5000, 0x5096, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x59 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5115, 0xfffd, 0x5102, 0xfffd,\n  0x5114, 0x513c, 0x5137, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x50e8, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x50c2, 0x513b, 0x5110, 0x513a,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x50c9, 0xfffd, 0xfffd, 0xfffd,\n  0x7cf4, 0xfffd, 0xfffd, 0x9ecc, 0xfffd, 0x56c5, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x9cec, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x893b, 0x81e0, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x5a */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8a01, 0x8a10, 0x8a0c, 0x8a15,\n  0x8b33, 0x8a4e, 0x8a25, 0x8a41, 0x8a36, 0x8a46, 0x8a54, 0x8a58,\n  0x8a52, 0x8a86, 0x8a84, 0x8a7f, 0x8a70, 0x8a7c, 0x8a75, 0x8a6c,\n  0x8a6e, 0x8acd, 0x8ae2, 0x8a61, 0x8a9a, 0x8aa5, 0x8a91, 0x8a92,\n  0x8acf, 0x8ad1, 0x8ac9, 0x8adb, 0x8ad7, 0x8ac2, 0x8ab6, 0x8af6,\n  0x8aeb, 0x8b14, 0x8b01, 0x8ae4, 0x8aed, 0x8afc, 0x8af3, 0x8ae6,\n  0x8aee, 0x8ade, 0x8b28, 0x8b9c, 0x8b16, 0x8b1a, 0x8b10, 0x8b2b,\n  0x8b2d, 0x8b56, 0x8b59, 0x8b4e, 0x8b9e, 0x8b6b, 0x8b96, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x9658, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x913a, 0xfffd,\n  0x9114, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9134,\n  /* 0x5b */\n  0xfffd, 0xfffd, 0x90df, 0xfffd, 0xfffd, 0x9136, 0xfffd, 0xfffd,\n  0x9106, 0x9148, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x82bb, 0xfffd, 0x52f1, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5df0, 0xfffd,\n  0x580a, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x58d9, 0xfffd, 0xfffd, 0x58e2, 0xfffd, 0xfffd,\n  0xfffd, 0x58e0, 0xfffd, 0x58da, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x57e1, 0xfffd, 0xfffd, 0x584f, 0xfffd, 0xfffd,\n  0x5816, 0xfffd, 0xfffd, 0xfffd, 0x5852, 0x581d, 0x5864, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x5c */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x858c, 0xfffd, 0xfffd, 0x8553, 0xfffd,\n  0xfffd, 0x85f6, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x83a7,\n  0x8407, 0x84ef, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x82e7, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8622, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8526,\n  0xfffd, 0xfffd, 0x584b, 0x7162, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x8558, 0x84fd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x854e, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8588, 0xfffd, 0xfffd,\n  0x85ba, 0xfffd, 0xfffd, 0xfffd, 0x7296, 0x6ece,\n  /* 0x5d */\n  0x8541, 0xfffd, 0x85ce, 0x8552, 0x84c0, 0x8452, 0x8464, 0xfffd,\n  0xfffd, 0x8494, 0x8435, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x859f, 0xfffd, 0xfffd, 0x8555, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x9daf, 0x8493, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x7e08, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x8546, 0xfffd, 0xfffd, 0x8562, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x851e, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x9a40, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x863a, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x93a3, 0x8577, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x861e, 0xfffd, 0x85fa,\n  /* 0x5e */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8604, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x85ea, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x861a, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5969, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5c37, 0xfffd,\n  0x636b, 0x6476, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x649f,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x6451, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x645c,\n  0xfffd, 0xfffd, 0xfffd, 0x64b3, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x6504, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x6516, 0xfffd, 0xfffd,\n  /* 0x5f */\n  0xfffd, 0x64f7, 0x64fc, 0xfffd, 0x651b, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x5630, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x5638, 0x56c8, 0xfffd, 0x56a6, 0xfffd,\n  0xfffd, 0x5504, 0x54bc, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x5680, 0xfffd, 0xfffd, 0xfffd, 0x565d,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5660, 0xfffd, 0xfffd, 0x5635,\n  0x55f6, 0xfffd, 0xfffd, 0x5666, 0xfffd, 0xfffd, 0xfffd, 0x5672,\n  0xfffd, 0x568c, 0xfffd, 0xfffd, 0xfffd, 0x5665, 0xfffd, 0xfffd,\n  0x561c, 0xfffd, 0x562e, 0xfffd, 0xfffd, 0xfffd, 0x55e9, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5616, 0xfffd, 0xfffd, 0xfffd,\n  0x56c0, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x60 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x560d, 0x56b3, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x56c1, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x566f,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8f61, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x56b6, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5695,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5707,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5e43,\n  0xfffd, 0xfffd, 0xfffd, 0x5e6c, 0x5e58, 0x5e57,\n  /* 0x61 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x5d87, 0xfffd, 0x5cf4, 0xfffd, 0xfffd, 0x5d50,\n  0xfffd, 0xfffd, 0xfffd, 0x5d2c, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x5da7, 0xfffd, 0x5da0, 0xfffd, 0xfffd, 0x5d97,\n  0x5d0d, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x5db8, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5d81,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x5dd4, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x540e, 0x5fa0, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7377, 0x7341, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x736a, 0xfffd, 0x733b,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x736b, 0xfffd,\n  /* 0x62 */\n  0xfffd, 0xfffd, 0xfffd, 0x7380, 0xfffd, 0xfffd, 0xfffd, 0x737c,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x98e0, 0x9933, 0x98e9, 0x993c, 0x98ea, 0x98eb,\n  0x98ed, 0x98f4, 0x9909, 0x9911, 0x4f59, 0x991b, 0x9937, 0x993f,\n  0x9943, 0x9948, 0x9949, 0x994a, 0x994c, 0x9962, 0xfffd, 0x5ee1,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x8ce1, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x61fa, 0x61ae, 0xfffd, 0x616a, 0xfffd, 0xfffd,\n  0x613e, 0x60b5, 0x6134, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x61cc,\n  0xfffd, 0x615f, 0x61e8, 0x60fb, 0x6137, 0xfffd,\n  /* 0x63 */\n  0xfffd, 0x60f2, 0xfffd, 0xfffd, 0x6173, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x611c, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x6192, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9582, 0x9586, 0x95c8, 0x958e,\n  0x9594, 0x958c, 0x95e5, 0x95ad, 0x95ab, 0x9b2e, 0x95ac, 0x95be,\n  0x95b6, 0x9b29, 0x95bf, 0x95bd, 0x95bc, 0x95c3, 0x95cb, 0x95d4,\n  0x95d0, 0x95d5, 0x95de, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x7043, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6f59, 0xfffd, 0xfffd, 0xfffd,\n  0x7027, 0x7018, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6ffc,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6d87,\n  /* 0x64 */\n  0xfffd, 0xfffd, 0xfffd, 0x6d79, 0x6e5e, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x6fae, 0xfffd, 0xfffd, 0xfffd, 0x700f, 0x6ef8,\n  0x6f6f, 0xfffd, 0xfffd, 0xfffd, 0x6df6, 0x6f7f, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x7006, 0xfffd, 0xfffd, 0x6fa0, 0xfffd, 0xfffd, 0xfffd,\n  0x700b, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x7067, 0xfffd, 0xfffd, 0x7044, 0xfffd, 0x7005, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x6f77, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x7020, 0x701f, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x7032, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7028,\n  /* 0x65 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x705d,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x9a2b, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9087, 0xfffd,\n  0x9015, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9090, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5c68,\n  0xfffd, 0x5f33, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x5af5, 0x5ad7, 0xfffd,\n  /* 0x66 */\n  0xfffd, 0xfffd, 0x5b00, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x5a6d, 0x5b08, 0xfffd, 0x5b4c, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x5aa7, 0x5afb, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5b0b, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x5b21,\n  0x5b2a, 0xfffd, 0xfffd, 0xfffd, 0x5b19, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x99d4,\n  0x99df, 0x99d9, 0x9a36, 0x9a5b, 0x99d1, 0x99d8, 0x9a4d, 0x9a4a,\n  0x99e2, 0x9a6a, 0x9a0f, 0x9a0d, 0x9a05, 0x9a42, 0x9a2d, 0x9a16,\n  0x9a41, 0x9a2e, 0x9a38, 0x9a43, 0x9a44, 0x9a4f, 0x9a65, 0x9a64,\n  0x7cf9, 0x7d06, 0x7d02, 0x7d07, 0x7d08, 0x7e8a,\n  /* 0x67 */\n  0x7d1c, 0x7d15, 0x7d13, 0x7d3a, 0x7d32, 0x7d31, 0x7e10, 0x7d3c,\n  0x7d40, 0x7d3f, 0x7d5d, 0x7d4e, 0x7d73, 0x7d86, 0x7d83, 0x7d88,\n  0x7dbe, 0x7dba, 0x7dcb, 0x7dd4, 0x7dc4, 0x7d9e, 0x7dac, 0x7db9,\n  0x7da3, 0x7db0, 0x7dc7, 0x7dd9, 0x7dd7, 0x7df9, 0x7df2, 0x7e62,\n  0x7de6, 0x7df6, 0x7df1, 0x7e0b, 0x7de1, 0x7e09, 0x7e1d, 0x7e1f,\n  0x7e1e, 0x7e2d, 0x7e0a, 0x7e11, 0x7e7d, 0x7e39, 0x7e35, 0x7e32,\n  0x7e46, 0x7e45, 0x7e88, 0x7e5a, 0x7e52, 0x7e6e, 0x7e7e, 0x7e70,\n  0x7e6f, 0x7e98, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x74a3, 0x744b, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x74cf, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x980a, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x74bd, 0x743f, 0x7489, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x68 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x74a6,\n  0xfffd, 0xfffd, 0xfffd, 0x74d4, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x74da, 0xfffd, 0x97d9,\n  0x97de, 0x97dc, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x69aa, 0x6aea,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6898, 0xfffd, 0x68d6, 0x6a05,\n  0x689f, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6adb, 0xfffd, 0x6af3,\n  0xfffd, 0xfffd, 0x6ae8, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6adf, 0xfffd, 0x6a89, 0xfffd,\n  0xfffd, 0x690f, 0x6a48, 0xfffd, 0x6968, 0xfffd, 0x69bf, 0xfffd,\n  0xfffd, 0xfffd, 0x6a3a, 0xfffd, 0x6a9c, 0xfffd, 0x6b12, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x6b1e, 0xfffd, 0xfffd, 0x6add, 0x69e7, 0xfffd,\n  /* 0x69 */\n  0x6b0f, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6b16, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x6aec, 0x6ada, 0xfffd, 0x6af8, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x6ab3, 0xfffd, 0x6ae7, 0xfffd, 0xfffd,\n  0x6aa3, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6ad3, 0xfffd, 0xfffd,\n  0xfffd, 0x6ade, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x6ba4, 0xfffd, 0x6b9e, 0x6bae, 0xfffd,\n  0x6bab, 0xfffd, 0x6baf, 0xfffd, 0x8ed4, 0x8edb, 0x8ef2, 0x8efb,\n  0x8f64, 0x8ef9, 0x8efc, 0x8eeb, 0x8ee4, 0x8f62, 0x8efa, 0x8efe,\n  0x8f0a, 0x8f07, 0x8f05, 0x8f12, 0x8f26, 0x8f1e,\n  /* 0x6a */\n  0x8f1f, 0x8f1c, 0x8f33, 0x8f46, 0x8f54, 0xfffd, 0x6214, 0x6227,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x750c, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x66c7, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x66c4, 0xfffd, 0xfffd, 0x6689, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x66d6, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x8cc1, 0x8cb0, 0x8cba, 0x8cbd, 0x8d04, 0x8cb2, 0x8cc5,\n  0x8d10, 0x8cd1, 0x8cda, 0x8cd5, 0x8ceb, 0x8ce7, 0x8cfb, 0x8998,\n  0x89ac, 0x89a1, 0x89bf, 0x89a6, 0x89af, 0x89b2, 0x89b7, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x6b */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6bff, 0xfffd,\n  0xfffd, 0x6c0c, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x6c2c, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x7258, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x6727, 0x8156, 0xfffd, 0x81da, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x811b, 0xfffd, 0xfffd,\n  0xfffd, 0x81be, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x8161, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x81cf, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x6c */\n  0xfffd, 0xfffd, 0x6b5f, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x98ae, 0x98af, 0x98b6, 0x98bc, 0x98c6, 0x98c8, 0xfffd, 0xfffd,\n  0x8f42, 0xfffd, 0xfffd, 0x9f4f, 0x6595, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x716c, 0x7152, 0xfffd,\n  0x7197, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x71c1, 0xfffd,\n  0xfffd, 0xfffd, 0x71dc, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x71fe, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x79b0, 0xfffd, 0xfffd, 0x798e, 0xfffd, 0xfffd, 0x79aa,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x6d */\n  0x61df, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x6164,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x61e3, 0x6207,\n  0xfffd, 0xfffd, 0xfffd, 0x6fa9, 0xfffd, 0x78ef, 0xfffd, 0x78ad,\n  0xfffd, 0x7868, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x78b8, 0xfffd,\n  0xfffd, 0x792a, 0x7931, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x7864, 0x78fd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x78e7, 0xfffd, 0xfffd, 0xfffd, 0x78e3, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9f95,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7798, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x775e, 0x77bc, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x6e */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x7f86, 0xfffd, 0xfffd, 0x7f88, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x91d2, 0x91d3, 0x91d4, 0x91d9, 0x91d7,\n  0x91d5, 0x91f7, 0x91e7, 0x91e4, 0x9346, 0x91f5, 0x91f9, 0x9208,\n  0x9226, 0x9245, 0x9211, 0x9210, 0x9201, 0x9227, 0x9204, 0x9225,\n  0x9200, 0x923a, 0x9266, 0x9237, 0x9233, 0x9255, 0x923d, 0x9238,\n  0x925e, 0x926c, 0x926d, 0x923f, 0x9460, 0x9230, 0x9249, 0x9248,\n  0x924d, 0x922e, 0x9239, 0x9438, 0x92ac, 0x92a0, 0x927a, 0x92aa,\n  0x92ee, 0x92cf, 0x9403, 0x92e3, 0x943a, 0x92b1, 0x92a6, 0x93a7,\n  0x9296, 0x92cc, 0x92a9, 0x93f5, 0x9293, 0x927f,\n  /* 0x6f */\n  0x93a9, 0x929a, 0x931a, 0x92ab, 0x9283, 0x940b, 0x92a8, 0x92a3,\n  0x9412, 0x9338, 0x92f1, 0x93d7, 0x92e5, 0x92f0, 0x92ef, 0x92e8,\n  0x92bc, 0x92dd, 0x92f6, 0x9426, 0x9427, 0x92c3, 0x92df, 0x92e6,\n  0x9312, 0x9306, 0x9369, 0x931b, 0x9340, 0x9301, 0x9315, 0x932e,\n  0x9343, 0x9307, 0x9308, 0x931f, 0x9319, 0x9365, 0x9347, 0x9376,\n  0x9354, 0x9364, 0x93aa, 0x9370, 0x9384, 0x93e4, 0x93d8, 0x9428,\n  0x9387, 0x93cc, 0x9398, 0x93b8, 0x93bf, 0x93a6, 0x93b0, 0x93b5,\n  0x944c, 0x93e2, 0x93dc, 0x93dd, 0x93cd, 0x93de, 0x93c3, 0x93c7,\n  0x93d1, 0x9414, 0x941d, 0x93f7, 0x9465, 0x9413, 0x946d, 0x9420,\n  0x9479, 0x93f9, 0x9419, 0x944a, 0x9432, 0x943f, 0x9454, 0x9463,\n  0x937e, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x70 */\n  0xfffd, 0xfffd, 0x7a61, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9ce9, 0x9cf6,\n  0x9d07, 0x9d06, 0x9d23, 0x9d87, 0x9e15, 0x9d1d, 0x9d1f, 0x9de5,\n  0x9d2f, 0x9dd9, 0x9d30, 0x9d42, 0x9e1e, 0x9d53, 0x9e1d, 0x9d60,\n  0x9d52, 0x9df3, 0x9d5c, 0x9d61, 0x9d93, 0x9d6a, 0x9d6f, 0x9d89,\n  0x9d98, 0x9d9a, 0x9dc0, 0x9da5, 0x9da9, 0x9dc2, 0x9dbc, 0x9e1a,\n  0x9dd3, 0x9dda, 0x9def, 0x9de6, 0x9df2, 0x9df8, 0x9e0c, 0x9dfa,\n  0x9e1b, 0xfffd, 0xfffd, 0x7664, 0x7658, 0xfffd, 0x7667, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x7602, 0xfffd, 0xfffd, 0x7646, 0xfffd, 0xfffd, 0x7647, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7649, 0xfffd,\n  0x761e, 0xfffd, 0xfffd, 0x763b, 0xfffd, 0xfffd,\n  /* 0x71 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x766d,\n  0xfffd, 0xfffd, 0x766e, 0xfffd, 0xfffd, 0x7669, 0xfffd, 0xfffd,\n  0xfffd, 0x7672, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x7ac7, 0xfffd, 0xfffd, 0xfffd, 0x7ab6,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x8960, 0xfffd, 0xfffd, 0xfffd, 0x8933, 0xfffd, 0x895d, 0x8947,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x8938, 0xfffd, 0x8964, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x76b8, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x802e, 0xfffd, 0xfffd, 0x802c, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8079, 0xfffd,\n  0x8075, 0xfffd, 0xfffd, 0x9807, 0x980e, 0x980f,\n  /* 0x72 */\n  0x9821, 0x981c, 0x6f41, 0x9826, 0x9837, 0x984e, 0x9853, 0x9873,\n  0x9862, 0x9859, 0x9865, 0x986c, 0x9870, 0xfffd, 0xfffd, 0xfffd,\n  0x87e3, 0x8806, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x8706, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x8823, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x87f6, 0xfffd, 0xfffd, 0x86fa, 0x87ef, 0xfffd, 0x8784, 0xfffd,\n  0xfffd, 0xfffd, 0x8810, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x87c8, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8811, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x87bb, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x87ce, 0xfffd,\n  /* 0x73 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7f4c, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7be4, 0xfffd, 0x7b67,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7c69, 0xfffd, 0xfffd,\n  0x7bf3, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7c00, 0x7bcb, 0xfffd, 0xfffd,\n  0xfffd, 0x7c5c, 0xfffd, 0x7c1e, 0xfffd, 0xfffd, 0x7c2b, 0xfffd,\n  0x7c23, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7c6a, 0xfffd,\n  /* 0x74 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7c5f, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8264, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x826b, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x88ca, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7fa5, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7cf2, 0x7cf6,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x7cdd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x7e36, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9ea9, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8db2, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x75 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x91c5, 0x91c3, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x9e7a, 0x8e89, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x8e4c, 0xfffd, 0xfffd, 0xfffd, 0x8e92,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8e7a, 0x8e55, 0xfffd,\n  0x8e9a, 0x8e8b, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x8e93, 0xfffd, 0xfffd, 0x8e91, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8ea1, 0x8e63, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8eaa, 0xfffd,\n  0xfffd, 0x8ea6, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x89f4, 0xfffd, 0xfffd,\n  /* 0x76 */\n  0xfffd, 0xfffd, 0x89f6, 0xfffd, 0xfffd, 0x975a, 0xfffd, 0x9742,\n  0xfffd, 0xfffd, 0x973d, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9744,\n  0xfffd, 0xfffd, 0x9f54, 0x9f5f, 0x9f59, 0x9f60, 0x9f5c, 0x9f66,\n  0x9f6c, 0x9f6a, 0x9f77, 0x9efd, 0x9eff, 0x9f09, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x8b8e, 0xfffd, 0x947e, 0xfffd,\n  0x93e8, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9b77, 0x9b74,\n  0x9b81, 0x9b83, 0x9b8e, 0x9c78, 0x7a4c, 0x9b92, 0x9c5f, 0x9b90,\n  0x9bad, 0x9b9a, 0x9baa, 0x9b9e, 0x9c6d, 0x9bab, 0x9b9d, 0x9c58,\n  0x9bc1, 0x9c7a, 0x9c31, 0x9c39, 0x9c23, 0x9c37, 0x9bc0, 0x9bca,\n  0x9bc7, 0x9bfd, 0x9bd6, 0x9bea, 0x9beb, 0x9be1, 0x9be4, 0x9be7,\n  0x9bdd, 0x9be2, 0x9bf0, 0x9bdb, 0x9bf4, 0x9bd4, 0x9c5d, 0x9c08,\n  0x9c10, 0x9c0d, 0x9c12, 0x9c09, 0x9bff, 0x9c20,\n  /* 0x77 */\n  0x9c32, 0x9c2d, 0x9c28, 0x9c25, 0x9c29, 0x9c33, 0x9c3e, 0x9c48,\n  0x9c3b, 0x9c35, 0x9c45, 0x9c56, 0x9c54, 0x9c52, 0x9c67, 0xfffd,\n  0xfffd, 0x97c3, 0x97bd, 0xfffd, 0x97c9, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9dbb, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x9acf, 0xfffd, 0x9ad6, 0x9ad5, 0xfffd, 0xfffd,\n  0xfffd, 0x9b58, 0x9b4e, 0xfffd, 0xfffd, 0xfffd, 0x9957, 0x995c,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x9b22, 0xfffd, 0xfffd,\n  0x4e48, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x9ef7, 0xfffd, 0xfffd, 0x9ef2, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x78 */\n  0x896c, 0x95c6, 0x9336, 0x5f46, 0x8514, 0x7e94, 0x5382, 0x51b2,\n  0x4e11, 0x9f63, 0x5679, 0x515a, 0x6dc0, 0x9f15, 0x6597, 0x5641,\n  0x9aee, 0x8303, 0x4e30, 0x8907, 0x5e72, 0x7a40, 0x98b3, 0x5e7f,\n  0x95a4, 0x9b0d, 0x5212, 0x8ff4, 0x5f59, 0x7a6b, 0x98e2, 0x51e0,\n  0x50a2, 0x4ef7, 0x8350, 0x8591, 0x5118, 0x636e, 0x6372, 0x524b,\n  0x5938, 0x774f, 0x8721, 0x814a, 0x7e8d, 0x91cc, 0x66c6, 0x5e18,\n  0x77ad, 0x9e75, 0x56c9, 0x9ef4, 0x6fdb, 0x61de, 0x77c7, 0x7030,\n  0x9eb5, 0x884a, 0x95e2, 0x82f9, 0x51ed, 0x6251, 0x4ec6, 0x6734,\n  0x97c6, 0x7c64, 0x7e34, 0x97a6, 0x9eaf, 0x786e, 0x820d, 0x672f,\n  0x677e, 0x56cc, 0x53f0, 0x98b1, 0x6aaf, 0x7f4e, 0x6d82, 0x7cf0,\n  0x4e07, 0x4fc2, 0x7e6b, 0x9e79, 0x56ae, 0x9b1a, 0x846f, 0x53f6,\n  0x90c1, 0x79a6, 0x7c72, 0x613f, 0x4e91, 0x9ad2,\n  /* 0x79 */\n  0x75c7, 0x96bb, 0x53ea, 0x7dfb, 0x88fd, 0x79cd, 0x7843, 0x7b51,\n  0x51c6,\n};\n\nstatic int\ngb12345ext_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 == 0x21) || (c1 == 0x26) || (c1 == 0x28) || (c1 >= 0x30 && c1 <= 0x79)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        unsigned short wc = 0xfffd;\n        if (i < 470) {\n          if (i < 12)\n            wc = gb12345ext_2uni_page21[i];\n        } else if (i < 658) {\n          if (i < 555)\n            wc = gb12345ext_2uni_page26[i-470];\n        } else if (i < 1410) {\n          if (i < 690)\n            wc = gb12345ext_2uni_page28[i-658];\n        } else {\n          if (i < 8281)\n            wc = gb12345ext_2uni_page30[i-1410];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short gb12345ext_2charset[2252] = {\n  0x283d, 0x283e, 0x283f, 0x283b, 0x2840, 0x283c, 0x212c, 0x7871,\n  0x7829, 0x7833, 0x7761, 0x4252, 0x787d, 0x5147, 0x785f, 0x7842,\n  0x6245, 0x4034, 0x4258, 0x7872, 0x4f40, 0x5876, 0x4129, 0x3256,\n  0x3876, 0x4347, 0x4257, 0x4e30, 0x3260, 0x556c, 0x5877, 0x4921,\n  0x3138, 0x7841, 0x5336, 0x342b, 0x5871, 0x552e, 0x494b, 0x4763,\n  0x594d, 0x3d76, 0x595d, 0x4748, 0x464d, 0x4e31, 0x3d44, 0x5947,\n  0x3c5b, 0x5247, 0x592f, 0x525a, 0x3f6b, 0x3c73, 0x594f, 0x5931,\n  0x592d, 0x7845, 0x3325, 0x5345, 0x3422, 0x5933, 0x5950, 0x594e,\n  0x5932, 0x3679, 0x782c, 0x413d, 0x7828, 0x7929, 0x3633, 0x7840,\n  0x785d, 0x3f2d, 0x783b, 0x5859, 0x5472, 0x7848, 0x3855, 0x3950,\n  0x585c, 0x3434, 0x3b2e, 0x3e67, 0x4175, 0x3974, 0x585b, 0x3d23,\n  0x3c41, 0x3e22, 0x362f, 0x4e71, 0x512b, 0x4a24, 0x404d, 0x4a46,\n  0x5b3d, 0x4078, 0x4830, 0x5850, 0x3b63, 0x5851, 0x4778, 0x502d,\n  0x7827, 0x5847, 0x325e, 0x5161, 0x4077, 0x5849, 0x324e, 0x3454,\n  0x7923, 0x786b, 0x7878, 0x6161, 0x5f43, 0x5431, 0x5f42, 0x4e4a,\n  0x4674, 0x5146, 0x4925, 0x4747, 0x3525, 0x5334, 0x473a, 0x5844,\n  0x4270, 0x4e58, 0x5f6f, 0x5f59, 0x4c3e, 0x6036, 0x453b, 0x5f75,\n  0x3322, 0x5f69, 0x3b29, 0x5f6b, 0x5025, 0x5f34, 0x5f58, 0x5f3c,\n  0x7830, 0x5f50, 0x5f55, 0x5f66, 0x5f5c, 0x6048, 0x5f60, 0x4567,\n  0x3656, 0x782b, 0x5f4c, 0x4f45, 0x5f62, 0x6060, 0x4476, 0x5f3f,\n  0x417c, 0x7875, 0x6037, 0x514f, 0x6053, 0x5f79, 0x603f, 0x4f79,\n  0x5966, 0x5f3d, 0x7853, 0x786a, 0x5676, 0x6070, 0x397a, 0x4e27,\n  0x5430, 0x5432, 0x4d3c, 0x4d45, 0x5b6b, 0x5634, 0x3c61, 0x5b51,\n  0x5b71, 0x5b76, 0x5222, 0x3128, 0x3321, 0x3f69, 0x5c63, 0x5b6e,\n  0x5b75, 0x4d3f, 0x4e6b, 0x5b77, 0x333e, 0x4735, 0x3566, 0x5739,\n  0x3669, 0x3758, 0x473d, 0x3f51, 0x4c33, 0x5139, 0x405d, 0x5b5b,\n  0x5b64, 0x3b35, 0x4222, 0x5b62, 0x5b5e, 0x3053, 0x5733, 0x3a78,\n  0x4a59, 0x434e, 0x7849, 0x3c50, 0x5e46, 0x3661, 0x3d31, 0x375c,\n  0x5731, 0x4226, 0x383e, 0x662b, 0x6634, 0x4268, 0x657d, 0x657c,\n  0x6635, 0x6623, 0x662c, 0x663f, 0x3d3f, 0x664d, 0x6648, 0x6649,\n  0x5324, 0x4974, 0x662e, 0x4b6f, 0x5127, 0x424f, 0x475e, 0x4a35,\n  0x447e, 0x4973, 0x5034, 0x3f6d, 0x3368, 0x3126, 0x3d2b, 0x5728,\n  0x5130, 0x3654, 0x353c, 0x5e4f, 0x4245, 0x3263, 0x6570, 0x4a74,\n  0x3854, 0x612d, 0x353a, 0x4f3f, 0x6141, 0x385a, 0x6134, 0x6130,\n  0x6150, 0x5538, 0x612b, 0x6140, 0x613d, 0x613b, 0x6149, 0x416b,\n  0x536c, 0x3f79, 0x424d, 0x615b, 0x5b4f, 0x7850, 0x4b27, 0x4a26,\n  0x554a, 0x3478, 0x5621, 0x6078, 0x607e, 0x607d, 0x5644, 0x3152,\n  0x306f, 0x607c, 0x7835, 0x3849, 0x3c38, 0x7838, 0x3f62, 0x436d,\n  0x3327, 0x6250, 0x374f, 0x3963, 0x422e, 0x4c7c, 0x6572, 0x5545,\n  0x7824, 0x352f, 0x4356, 0x4d64, 0x783d, 0x3a73, 0x3e36, 0x3453,\n  0x6162, 0x3834, 0x3339, 0x626a, 0x4346, 0x3671, 0x4455, 0x6322,\n  0x627c, 0x302e, 0x632b, 0x626b, 0x627d, 0x6269, 0x787c, 0x4c2c,\n  0x3252, 0x3251, 0x627a, 0x395f, 0x6d28, 0x6266, 0x4b4b, 0x4247,\n  0x6325, 0x476c, 0x5347, 0x3139, 0x412f, 0x463e, 0x6334, 0x352c,\n  0x375f, 0x4375, 0x6264, 0x4f5c, 0x5264, 0x3f52, 0x5326, 0x6278,\n  0x7856, 0x6d21, 0x6d2f, 0x627b, 0x334d, 0x4041, 0x3b33, 0x507c,\n  0x6263, 0x3e65, 0x4965, 0x4135, 0x6d30, 0x6a27, 0x6a28, 0x553d,\n  0x4f37, 0x785e, 0x502e, 0x4961, 0x5e51, 0x7846, 0x7847, 0x4928,\n  0x4255, 0x3c70, 0x516f, 0x3b53, 0x4b70, 0x3537, 0x4740, 0x5e62,\n  0x5e68, 0x4227, 0x563f, 0x3f59, 0x5e52, 0x3274, 0x404c, 0x4453,\n  0x5e58, 0x3527, 0x3226, 0x3827, 0x464b, 0x5e6c, 0x4c22, 0x4e4e,\n  0x3c71, 0x5335, 0x4230, 0x5471, 0x3b77, 0x3532, 0x3523, 0x3e5d,\n  0x3c37, 0x4462, 0x3177, 0x4521, 0x3869, 0x5640, 0x4029, 0x5f22,\n  0x305a, 0x4b53, 0x5f23, 0x4845, 0x5e73, 0x446c, 0x4223, 0x4039,\n  0x5e7c, 0x3273, 0x5f25, 0x4963, 0x545c, 0x424e, 0x4c2f, 0x3d41,\n  0x403f, 0x305c, 0x3550, 0x4a7d, 0x4132, 0x3150, 0x6c35, 0x782f,\n  0x5536, 0x364f, 0x4a31, 0x5667, 0x544e, 0x6a4d, 0x3329, 0x545d,\n  0x6a4a, 0x784f, 0x6a3c, 0x4f7e, 0x6a53, 0x3f75, 0x4939, 0x4a69,\n  0x3b61, 0x6b4a, 0x7868, 0x7860, 0x362b, 0x7869, 0x6845, 0x4c75,\n  0x6849, 0x6847, 0x5466, 0x3630, 0x553b, 0x6862, 0x516e, 0x3763,\n  0x6865, 0x5235, 0x3c2b, 0x683f, 0x4859, 0x6867, 0x3939, 0x4739,\n  0x687d, 0x3d30, 0x572e, 0x4056, 0x6848, 0x4225, 0x316a, 0x4a60,\n  0x5179, 0x4653, 0x4a77, 0x686b, 0x6863, 0x4745, 0x3b7a, 0x4d56,\n  0x685f, 0x3535, 0x686d, 0x3c6c, 0x6949, 0x786d, 0x6944, 0x447b,\n  0x3c77, 0x3971, 0x6956, 0x6935, 0x684e, 0x687c, 0x695a, 0x685d,\n  0x6946, 0x6853, 0x6840, 0x6934, 0x6850, 0x6937, 0x5323, 0x4038,\n  0x4828, 0x6921, 0x686f, 0x692d, 0x6879, 0x4755, 0x4537, 0x6c23,\n  0x3b36, 0x4b6a, 0x407a, 0x3969, 0x3250, 0x6966, 0x6964, 0x6969,\n  0x6967, 0x696b, 0x3c5f, 0x4931, 0x3f47, 0x4539, 0x6b27, 0x5531,\n  0x6b2a, 0x4678, 0x4762, 0x6b32, 0x6424, 0x786f, 0x637e, 0x782d,\n  0x4259, 0x5428, 0x6435, 0x4733, 0x4e50, 0x3262, 0x3b6b, 0x6425,\n  0x4c40, 0x573c, 0x3935, 0x3257, 0x4370, 0x3553, 0x5c7e, 0x3b26,\n  0x564d, 0x4978, 0x4231, 0x6430, 0x427a, 0x5366, 0x453d, 0x3a3a,\n  0x4130, 0x5755, 0x5547, 0x3d25, 0x3d2c, 0x7223, 0x4643, 0x3d60,\n  0x636d, 0x4873, 0x6431, 0x4023, 0x6464, 0x6436, 0x492c, 0x3d3d,\n  0x4054, 0x3d27, 0x6445, 0x5473, 0x6d34, 0x642b, 0x356d, 0x5747,\n  0x4528, 0x4a2a, 0x4522, 0x7855, 0x3c43, 0x4c4e, 0x4044, 0x4e2b,\n  0x3175, 0x3d26, 0x6378, 0x424b, 0x645e, 0x6442, 0x503a, 0x6449,\n  0x642f, 0x3174, 0x6372, 0x4124, 0x646c, 0x646b, 0x6371, 0x647e,\n  0x7858, 0x6472, 0x403d, 0x6363, 0x645c, 0x4877, 0x406c, 0x4c32,\n  0x6530, 0x4d65, 0x4250, 0x6459, 0x4e5a, 0x4c7e, 0x4e5e, 0x4136,\n  0x6c3f, 0x5c64, 0x3733, 0x6c3e, 0x532b, 0x6c41, 0x4848, 0x3363,\n  0x6c47, 0x3546, 0x4955, 0x4c4c, 0x6c4b, 0x532a, 0x3253, 0x5672,\n  0x3b62, 0x3d7d, 0x6c62, 0x4b38, 0x422f, 0x4043, 0x4e2a, 0x522f,\n  0x367b, 0x6b39, 0x4723, 0x5c7d, 0x363f, 0x4e7e, 0x5734, 0x4f41,\n  0x3137, 0x534c, 0x6178, 0x616f, 0x537c, 0x4a28, 0x3640, 0x6176,\n  0x617d, 0x447c, 0x3b71, 0x4154, 0x616e, 0x4a5e, 0x4c21, 0x4f57,\n  0x6228, 0x6224, 0x4f56, 0x6775, 0x6762, 0x4b76, 0x5328, 0x426a,\n  0x6776, 0x6761, 0x6828, 0x3b37, 0x6774, 0x476d, 0x6767, 0x682c,\n  0x6836, 0x6a31, 0x327a, 0x4436, 0x314f, 0x3b2d, 0x3531, 0x336b,\n  0x7921, 0x3e37, 0x7069, 0x3768, 0x5171, 0x7079, 0x342f, 0x4531,\n  0x707c, 0x4146, 0x706c, 0x706f, 0x7077, 0x705d, 0x3171, 0x5177,\n  0x705c, 0x5622, 0x705f, 0x712e, 0x5122, 0x7128, 0x712b, 0x5338,\n  0x4c31, 0x7132, 0x3722, 0x3028, 0x7164, 0x5665, 0x5535, 0x3e21,\n  0x3c60, 0x454c, 0x422c, 0x784a, 0x6d79, 0x6d6e, 0x4277, 0x7851,\n  0x6d7a, 0x7857, 0x5675, 0x3d43, 0x7927, 0x6d4c, 0x6d3a, 0x7866,\n  0x5162, 0x4b36, 0x6d38, 0x6d3f, 0x4837, 0x426b, 0x5729, 0x6d57,\n  0x6d53, 0x6d36, 0x6d4d, 0x3421, 0x302d, 0x3f73, 0x6d42, 0x4079,\n  0x372f, 0x6d43, 0x3b76, 0x6c75, 0x787a, 0x6c78, 0x4071, 0x6c72,\n  0x353b, 0x7926, 0x5656, 0x3346, 0x7836, 0x7655, 0x3b7d, 0x5331,\n  0x7023, 0x3b60, 0x4e48, 0x783e, 0x4e51, 0x4d5d, 0x476e, 0x7140,\n  0x3f7a, 0x345c, 0x474f, 0x713c, 0x546e, 0x4754, 0x4a7a, 0x3e3a,\n  0x314a, 0x7928, 0x7348, 0x3c63, 0x3d5a, 0x3736, 0x567e, 0x7366,\n  0x7346, 0x4938, 0x7359, 0x7365, 0x4228, 0x736c, 0x3c72, 0x7371,\n  0x736f, 0x4729, 0x4131, 0x403a, 0x336f, 0x736a, 0x7425, 0x417d,\n  0x7862, 0x7356, 0x737d, 0x4069, 0x4261, 0x787b, 0x7456, 0x3760,\n  0x4138, 0x7870, 0x744f, 0x5961, 0x7450, 0x6679, 0x3e40, 0x3c4d,\n  0x667b, 0x543c, 0x3a6c, 0x667a, 0x667c, 0x667d, 0x4852, 0x4e46,\n  0x4449, 0x4526, 0x6723, 0x343f, 0x6722, 0x4934, 0x563d, 0x3c36,\n  0x3757, 0x6721, 0x3744, 0x4f38, 0x6726, 0x6725, 0x4970, 0x495c,\n  0x6724, 0x6728, 0x672a, 0x6729, 0x5655, 0x5769, 0x306d, 0x672c,\n  0x3d61, 0x672b, 0x3d4a, 0x4267, 0x5124, 0x3878, 0x485e, 0x4d33,\n  0x4b3f, 0x672d, 0x3e78, 0x3e6e, 0x3073, 0x672f, 0x672e, 0x6730,\n  0x5065, 0x4b67, 0x3e2d, 0x575b, 0x6736, 0x3371, 0x6739, 0x4f5f,\n  0x6737, 0x4e2c, 0x673a, 0x3859, 0x4d78, 0x3141, 0x573a, 0x425a,\n  0x6738, 0x6732, 0x5540, 0x3442, 0x6731, 0x4360, 0x6735, 0x673b,\n  0x3d74, 0x6733, 0x424c, 0x5077, 0x6734, 0x673d, 0x3c6a, 0x673c,\n  0x3c29, 0x3650, 0x355e, 0x6745, 0x5435, 0x6741, 0x3160, 0x3b3a,\n  0x4365, 0x4e33, 0x6743, 0x673f, 0x4137, 0x6742, 0x673e, 0x7924,\n  0x5d53, 0x6746, 0x674b, 0x6744, 0x6727, 0x674c, 0x383f, 0x6747,\n  0x6749, 0x6748, 0x4f58, 0x4c50, 0x376c, 0x674a, 0x4b75, 0x575d,\n  0x6750, 0x7863, 0x674f, 0x746a, 0x4246, 0x674e, 0x575c, 0x3c28,\n  0x6752, 0x6751, 0x6755, 0x562f, 0x4949, 0x6754, 0x4846, 0x6740,\n  0x497e, 0x3b66, 0x7873, 0x3c6b, 0x6756, 0x6759, 0x6758, 0x3d49,\n  0x526f, 0x3c4c, 0x674d, 0x6757, 0x6753, 0x667e, 0x5078, 0x784d,\n  0x3278, 0x5327, 0x7826, 0x4f4b, 0x675a, 0x4042, 0x733f, 0x786e,\n  0x3723, 0x3055, 0x425e, 0x6e3c, 0x6e3f, 0x7447, 0x5265, 0x4f30,\n  0x474c, 0x716f, 0x716c, 0x4a25, 0x4e45, 0x412a, 0x344f, 0x4979,\n  0x4b4a, 0x7179, 0x4474, 0x5630, 0x7177, 0x4c7d, 0x417b, 0x4b60,\n  0x5032, 0x6b56, 0x554d, 0x784c, 0x4976, 0x6b4b, 0x6b61, 0x4454,\n  0x5657, 0x3326, 0x3774, 0x3d3a, 0x4465, 0x3528, 0x6b5a, 0x4527,\n  0x4133, 0x466a, 0x6b77, 0x4030, 0x6b4d, 0x5460, 0x5975, 0x4159,\n  0x4c28, 0x536b, 0x504b, 0x3e59, 0x3e49, 0x7867, 0x3255, 0x742f,\n  0x3d22, 0x7435, 0x3c68, 0x515e, 0x5b3b, 0x5c51, 0x785c, 0x7832,\n  0x7843, 0x572f, 0x3e25, 0x3c54, 0x5c48, 0x3b2a, 0x5c49, 0x4033,\n  0x4d72, 0x5d2b, 0x5236, 0x5d26, 0x5d27, 0x4e2d, 0x7877, 0x3b67,\n  0x5d3b, 0x5d2a, 0x3254, 0x5d25, 0x3847, 0x412b, 0x5c4a, 0x5c6a,\n  0x7825, 0x5d64, 0x3d2f, 0x5c60, 0x5271, 0x5d21, 0x5d5b, 0x5c71,\n  0x5d24, 0x5c3f, 0x5d35, 0x5c69, 0x5d5e, 0x3534, 0x4e5f, 0x4f74,\n  0x5d77, 0x5c76, 0x3c3b, 0x5c3c, 0x7844, 0x473e, 0x5d32, 0x3c76,\n  0x4878, 0x5c79, 0x4036, 0x5d23, 0x5255, 0x5229, 0x5e34, 0x544c,\n  0x5c42, 0x302a, 0x5d7e, 0x5e2d, 0x422b, 0x4b55, 0x463b, 0x5e3a,\n  0x5d7c, 0x5c57, 0x403c, 0x5d71, 0x425c, 0x3426, 0x4232, 0x3a45,\n  0x3f77, 0x724c, 0x7239, 0x784b, 0x4a34, 0x4f3a, 0x4e4f, 0x724f,\n  0x426c, 0x5329, 0x7277, 0x555d, 0x7265, 0x727d, 0x7231, 0x3275,\n  0x724d, 0x3366, 0x7249, 0x524f, 0x532c, 0x7232, 0x7253, 0x726e,\n  0x402f, 0x7243, 0x3946, 0x324f, 0x4279, 0x565a, 0x785a, 0x4a75,\n  0x4e40, 0x3365, 0x563b, 0x7441, 0x406f, 0x3239, 0x5730, 0x7925,\n  0x7834, 0x3f63, 0x714d, 0x715a, 0x5974, 0x7150, 0x3040, 0x714f,\n  0x7149, 0x715c, 0x4d60, 0x7821, 0x3344, 0x4f2e, 0x3c7b, 0x3966,\n  0x4359, 0x4a53, 0x6a68, 0x6a6a, 0x6a6c, 0x4757, 0x6a69, 0x6a6d,\n  0x6a6e, 0x6a6f, 0x3e75, 0x4040, 0x6a6b, 0x395b, 0x757c, 0x7623,\n  0x3425, 0x5a25, 0x3629, 0x383c, 0x3c46, 0x5136, 0x5a27, 0x4c56,\n  0x5a26, 0x5135, 0x5a28, 0x467d, 0x3c47, 0x366f, 0x5148, 0x4b4f,\n  0x3e77, 0x5a2b, 0x3743, 0x4968, 0x506d, 0x4b5f, 0x5a2d, 0x556f,\n  0x5a2c, 0x5a2e, 0x5a2a, 0x5529, 0x5a31, 0x5a2f, 0x4640, 0x5a30,\n  0x5767, 0x344a, 0x5a3c, 0x512f, 0x5268, 0x4a54, 0x4a2b, 0x326f,\n  0x5a38, 0x396e, 0x5a39, 0x5a35, 0x3b30, 0x3843, 0x4f6a, 0x5a37,\n  0x5a36, 0x5a34, 0x5a33, 0x566f, 0x5a32, 0x3f64, 0x484f, 0x5a3f,\n  0x5a40, 0x352e, 0x5355, 0x5a3d, 0x536f, 0x334f, 0x3d6b, 0x4e5c,\n  0x4e73, 0x5a3e, 0x4b50, 0x3b65, 0x4b35, 0x4b2d, 0x3f4e, 0x5a47,\n  0x374c, 0x526a, 0x3577, 0x5a46, 0x573b, 0x4c38, 0x5a43, 0x476b,\n  0x5a3a, 0x5a41, 0x5a42, 0x4142, 0x425b, 0x5a45, 0x5a44, 0x357d,\n  0x5a52, 0x5a3b, 0x5a4c, 0x5a50, 0x5033, 0x5a49, 0x5a4d, 0x5a51,\n  0x3b64, 0x5a4f, 0x5a48, 0x376d, 0x566e, 0x5168, 0x5a4e, 0x4535,\n  0x4431, 0x5a4b, 0x4e3d, 0x4c5c, 0x565f, 0x3b51, 0x4355, 0x5a57,\n  0x5a4a, 0x5a55, 0x3079, 0x472b, 0x5a56, 0x3d32, 0x503b, 0x5225,\n  0x5a53, 0x5a58, 0x437d, 0x5a59, 0x5a29, 0x3d77, 0x4321, 0x5624,\n  0x5a5c, 0x3c25, 0x5a5a, 0x4a36, 0x5a5b, 0x4c37, 0x4657, 0x5a5e,\n  0x526b, 0x5269, 0x4734, 0x3b24, 0x537e, 0x3641, 0x3164, 0x7645,\n  0x3277, 0x4843, 0x403e, 0x5a5f, 0x5a54, 0x5a5d, 0x4671, 0x3761,\n  0x3134, 0x556a, 0x383a, 0x3246, 0x3931, 0x4636, 0x3b75, 0x3737,\n  0x4c30, 0x3961, 0x5470, 0x567c, 0x6a5b, 0x6a5f, 0x3721, 0x3973,\n  0x3161, 0x4272, 0x347b, 0x6a5c, 0x3751, 0x4c79, 0x6a5d, 0x4333,\n  0x3a58, 0x6a5a, 0x4238, 0x415e, 0x3b5f, 0x6a60, 0x574a, 0x3c56,\n  0x5474, 0x6a62, 0x495e, 0x3176, 0x6a64, 0x6a63, 0x344d, 0x494d,\n  0x4562, 0x6259, 0x4f4d, 0x4274, 0x3c7a, 0x3833, 0x6a66, 0x564a,\n  0x6a65, 0x554b, 0x3644, 0x4035, 0x572c, 0x6a67, 0x393a, 0x487c,\n  0x5853, 0x6a5e, 0x5738, 0x5479, 0x545e, 0x584d, 0x4944, 0x532e,\n  0x6a61, 0x4a6a, 0x3853, 0x545f, 0x384f, 0x5554, 0x4777, 0x7475,\n  0x3c79, 0x533b, 0x7544, 0x754f, 0x7567, 0x754e, 0x753b, 0x336c,\n  0x7552, 0x543e, 0x755c, 0x7548, 0x7559, 0x7551, 0x7566, 0x345a,\n  0x7572, 0x756f, 0x477b, 0x3335, 0x547e, 0x396c, 0x3e7c, 0x5079,\n  0x696d, 0x696e, 0x486d, 0x6975, 0x6974, 0x696f, 0x5661, 0x6972,\n  0x6977, 0x6970, 0x6973, 0x6978, 0x3d4f, 0x697b, 0x697a, 0x5458,\n  0x6979, 0x697c, 0x3828, 0x4761, 0x413e, 0x6a22, 0x3b54, 0x697e,\n  0x6a21, 0x3975, 0x697d, 0x3132, 0x4256, 0x3c2d, 0x6a23, 0x4a64,\n  0x3778, 0x5537, 0x535f, 0x6c31, 0x4f3d, 0x542f, 0x6a24, 0x572a,\n  0x555e, 0x3d4e, 0x6a25, 0x3a64, 0x604e, 0x6976, 0x6971, 0x306c,\n  0x3447, 0x3168, 0x3167, 0x4529, 0x783c, 0x6549, 0x5562, 0x412c,\n  0x3d78, 0x544b, 0x397d, 0x346f, 0x4e25, 0x5137, 0x355d, 0x5436,\n  0x4a4a, 0x3359, 0x4728, 0x5121, 0x5245, 0x4149, 0x4275, 0x3b39,\n  0x6547, 0x315f, 0x425f, 0x654e, 0x7879, 0x5b23, 0x534a, 0x5b29,\n  0x4f67, 0x575e, 0x5a79, 0x5447, 0x354b, 0x5623, 0x415a, 0x3526,\n  0x5a7e, 0x5b26, 0x5a77, 0x5b2a, 0x544d, 0x3373, 0x523d, 0x3d34,\n  0x4470, 0x5046, 0x7527, 0x7526, 0x4a4d, 0x784e, 0x6e44, 0x6e45,\n  0x6e46, 0x6e49, 0x6e48, 0x3624, 0x6e47, 0x556b, 0x3576, 0x6e4c,\n  0x6e4b, 0x3730, 0x6e4e, 0x6e4a, 0x6e4f, 0x4725, 0x6e59, 0x6e55,\n  0x6e57, 0x6e50, 0x4446, 0x365b, 0x3933, 0x6e54, 0x6e53, 0x332e,\n  0x4525, 0x3e7b, 0x3846, 0x6e58, 0x6e51, 0x6e56, 0x6e6a, 0x6e66,\n  0x6e5d, 0x4165, 0x6e5c, 0x6e60, 0x6e6b, 0x6e5a, 0x6e5f, 0x534b,\n  0x6e64, 0x3c58, 0x6e52, 0x6e68, 0x6e67, 0x6e69, 0x322c, 0x6e5e,\n  0x472f, 0x432d, 0x4726, 0x6e61, 0x3227, 0x6e5b, 0x6e62, 0x6e63,\n  0x3d42, 0x6e6f, 0x3875, 0x6e7e, 0x5278, 0x6f25, 0x4d2d, 0x4f33,\n  0x6e7d, 0x6e79, 0x437a, 0x6f22, 0x4f4e, 0x6e6e, 0x6f28, 0x523f,\n  0x6e77, 0x6f27, 0x6e7b, 0x6e70, 0x6f24, 0x6e6d, 0x6e76, 0x4f7a,\n  0x5062, 0x4c60, 0x6f31, 0x4241, 0x6f36, 0x503f, 0x3135, 0x6e7a,\n  0x6e72, 0x3766, 0x6f32, 0x6f37, 0x6e74, 0x337a, 0x6f2d, 0x6f38,\n  0x6f30, 0x464c, 0x4871, 0x6e71, 0x6f2f, 0x6f2e, 0x6f2b, 0x6f33,\n  0x3e62, 0x3856, 0x6f3e, 0x6f3a, 0x6f42, 0x6f43, 0x5736, 0x6f39,\n  0x6f3f, 0x3438, 0x6f45, 0x6f23, 0x6f3c, 0x6f44, 0x3627, 0x472e,\n  0x3d75, 0x432a, 0x4e7d, 0x6f40, 0x346d, 0x423c, 0x434c, 0x7823,\n  0x6f2a, 0x6f3d, 0x4f47, 0x6f41, 0x6e4d, 0x6f47, 0x3978, 0x3646,\n  0x6f49, 0x5521, 0x364d, 0x6f4a, 0x6f46, 0x6f3b, 0x4742, 0x6f4c,\n  0x3c7c, 0x6f48, 0x5560, 0x6f71, 0x433e, 0x6f4d, 0x6f51, 0x3077,\n  0x4b78, 0x6f53, 0x4e59, 0x5d76, 0x6f56, 0x6e78, 0x6f21, 0x6f4b,\n  0x3864, 0x5572, 0x6f57, 0x4478, 0x6f58, 0x6f54, 0x6f55, 0x6f5f,\n  0x6f60, 0x4134, 0x6f52, 0x6f5d, 0x6f61, 0x6f2c, 0x6f4f, 0x6f5b,\n  0x6f5c, 0x6f5e, 0x3279, 0x3e35, 0x6f5a, 0x6f4e, 0x7649, 0x6e7c,\n  0x6f64, 0x6f6a, 0x6e73, 0x6f26, 0x414d, 0x6f29, 0x6f66, 0x6f62,\n  0x5653, 0x6f6b, 0x6f63, 0x6f68, 0x6f34, 0x6f35, 0x6f50, 0x412d,\n  0x6f6d, 0x4058, 0x4c7a, 0x6e6c, 0x6e75, 0x6f6e, 0x567d, 0x6f6c,\n  0x6f59, 0x3c78, 0x6f6f, 0x6e65, 0x6f70, 0x6f65, 0x6f67, 0x543f,\n  0x4f62, 0x4477, 0x6f69, 0x4260, 0x576a, 0x7647, 0x5464, 0x3324,\n  0x4345, 0x6345, 0x4941, 0x6346, 0x3155, 0x3f2a, 0x634a, 0x6348,\n  0x4872, 0x4f50, 0x3c64, 0x6349, 0x5522, 0x3a52, 0x3873, 0x7839,\n  0x3727, 0x396b, 0x4376, 0x634d, 0x634f, 0x634c, 0x5444, 0x6351,\n  0x514b, 0x5156, 0x6355, 0x6354, 0x6350, 0x6353, 0x6356, 0x7822,\n  0x6347, 0x402b, 0x6357, 0x403b, 0x6359, 0x6358, 0x635a, 0x3433,\n  0x3958, 0x635b, 0x327b, 0x785b, 0x634b, 0x5a6a, 0x4942, 0x5573,\n  0x5275, 0x3342, 0x423d, 0x5174, 0x3653, 0x3d57, 0x5449, 0x3c4a,\n  0x4b66, 0x4f55, 0x527e, 0x4224, 0x4125, 0x7922, 0x4b64, 0x4b2b,\n  0x337b, 0x5453, 0x406b, 0x4451, 0x5446, 0x3567, 0x4e6d, 0x762b,\n  0x7628, 0x7630, 0x4169, 0x7626, 0x584c, 0x392e, 0x7864, 0x7733,\n  0x7732, 0x7861, 0x7735, 0x4e24, 0x484d, 0x3a2b, 0x6838, 0x683a,\n  0x6839, 0x4f6c, 0x5233, 0x3625, 0x476a, 0x4f6e, 0x4b33, 0x717c,\n  0x506b, 0x676f, 0x4b4c, 0x717d, 0x717e, 0x5424, 0x4d67, 0x3064,\n  0x3659, 0x4644, 0x416c, 0x7222, 0x7221, 0x5243, 0x7224, 0x4d37,\n  0x3c55, 0x7225, 0x3e31, 0x4635, 0x4d47, 0x3f45, 0x4c62, 0x366e,\n  0x7226, 0x7227, 0x5155, 0x5438, 0x722a, 0x355f, 0x4060, 0x7229,\n  0x722b, 0x394b, 0x327c, 0x722c, 0x4f54, 0x722d, 0x422d, 0x7228,\n  0x4827, 0x3767, 0x6c29, 0x6c2a, 0x786c, 0x7837, 0x6c2b, 0x6c2c,\n  0x462e, 0x6c2d, 0x6c2e, 0x3749, 0x623b, 0x783f, 0x623d, 0x623f,\n  0x6240, 0x6241, 0x3739, 0x527b, 0x6242, 0x4b47, 0x3125, 0x4a4e,\n  0x3d48, 0x317d, 0x6243, 0x5178, 0x367c, 0x6244, 0x4459, 0x3676,\n  0x5360, 0x6246, 0x3d24, 0x4f5a, 0x395d, 0x623c, 0x6247, 0x623e,\n  0x4173, 0x6248, 0x6249, 0x4278, 0x624a, 0x624b, 0x624c, 0x4021,\n  0x624d, 0x3c22, 0x4844, 0x774f, 0x7750, 0x3276, 0x624e, 0x426d,\n  0x5426, 0x376b, 0x4d54, 0x335b, 0x5131, 0x3235, 0x5724, 0x6665,\n  0x3e54, 0x6660, 0x3c5d, 0x6666, 0x6662, 0x4a3b, 0x4d55, 0x6661,\n  0x426e, 0x6669, 0x3a27, 0x4266, 0x3f25, 0x3352, 0x666d, 0x666c,\n  0x466f, 0x666b, 0x6670, 0x462d, 0x6539, 0x666f, 0x6672, 0x4c5a,\n  0x6663, 0x4927, 0x6673, 0x4262, 0x5d6b, 0x6671, 0x666e, 0x6674,\n  0x6675, 0x477d, 0x6668, 0x6667, 0x6676, 0x3d3e, 0x5169, 0x3e2a,\n  0x6664, 0x5668, 0x423f, 0x6678, 0x6677, 0x666a, 0x3039, 0x7743,\n  0x787e, 0x4c65, 0x7746, 0x7745, 0x7831, 0x4b49, 0x783a, 0x7876,\n  0x775e, 0x3637, 0x4456, 0x6352, 0x634e, 0x5374, 0x774b, 0x774a,\n  0x5363, 0x4233, 0x7650, 0x764f, 0x7651, 0x7652, 0x7653, 0x7658,\n  0x312b, 0x7656, 0x765a, 0x765f, 0x765c, 0x765b, 0x765e, 0x7659,\n  0x4f4a, 0x7667, 0x7661, 0x7669, 0x4070, 0x7668, 0x7676, 0x766b,\n  0x7674, 0x7671, 0x766e, 0x7672, 0x766f, 0x7670, 0x3e28, 0x766c,\n  0x766d, 0x7673, 0x7675, 0x766a, 0x767d, 0x7678, 0x767c, 0x767a,\n  0x7679, 0x767b, 0x487a, 0x767e, 0x7665, 0x7724, 0x7723, 0x7725,\n  0x7722, 0x7663, 0x7721, 0x7726, 0x772a, 0x7666, 0x7664, 0x7729,\n  0x7727, 0x772b, 0x7728, 0x316e, 0x772e, 0x772d, 0x772c, 0x415b,\n  0x7660, 0x7677, 0x7657, 0x772f, 0x765d, 0x7654, 0x7662, 0x4471,\n  0x702f, 0x596c, 0x376f, 0x4379, 0x7030, 0x7032, 0x7031, 0x513b,\n  0x4d52, 0x5427, 0x7036, 0x7037, 0x7033, 0x516c, 0x513c, 0x7039,\n  0x703b, 0x3a68, 0x386b, 0x703c, 0x3e69, 0x7041, 0x703e, 0x7043,\n  0x366c, 0x7040, 0x7044, 0x7046, 0x4574, 0x7047, 0x4835, 0x7034,\n  0x7048, 0x7045, 0x7049, 0x704a, 0x704c, 0x704d, 0x5d3a, 0x3a57,\n  0x773d, 0x704f, 0x704b, 0x704e, 0x3c26, 0x7051, 0x4538, 0x703a,\n  0x7052, 0x7038, 0x7054, 0x7053, 0x7055, 0x7042, 0x7056, 0x5325,\n  0x7058, 0x7057, 0x7035, 0x7050, 0x7059, 0x703f, 0x703d, 0x7852,\n  0x7874, 0x753a, 0x3c6f, 0x514e, 0x4076, 0x4273, 0x746f, 0x7865,\n  0x7859, 0x4334, 0x5964, 0x3563, 0x3533, 0x7775, 0x7854, 0x7772,\n  0x763c, 0x763d, 0x763e, 0x782e, 0x466b, 0x552b, 0x6c34, 0x335d,\n  0x7633, 0x7635, 0x7637, 0x7634, 0x7636, 0x4164, 0x782a, 0x7638,\n  0x763a, 0x7639, 0x4823, 0x763b, 0x417a, 0x4553, 0x3928, 0x6d68,\n  0x396a, 0x2672, 0x2674, 0x2675, 0x2660, 0x2661, 0x2670, 0x2671,\n  0x2662, 0x2663, 0x266e, 0x266f, 0x2666, 0x2667, 0x2664, 0x2665,\n  0x2668, 0x2669, 0x266a, 0x266b,\n};\n\nstatic const Summary16 gb12345ext_uni2indx_page01[23] = {\n  /* 0x0100 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0110 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 },\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 },\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0200 },\n  /* 0x0200 */\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0002 }, {    4, 0x0002 },\n};\nstatic const Summary16 gb12345ext_uni2indx_page1e[4] = {\n  /* 0x1e00 */\n  {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x8000 },\n};\nstatic const Summary16 gb12345ext_uni2indx_page22[3] = {\n  /* 0x2200 */\n  {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0020 },\n};\nstatic const Summary16 gb12345ext_uni2indx_page4e[1306] = {\n  /* 0x4e00 */\n  {    7, 0x0080 }, {    8, 0x0002 }, {    9, 0x0000 }, {    9, 0x0001 },\n  {   10, 0x0100 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0004 }, {   12, 0x4002 }, {   14, 0x0000 }, {   14, 0x0000 },\n  {   14, 0x0040 }, {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0080 },\n  /* 0x4f00 */\n  {   16, 0x0000 }, {   16, 0x0000 }, {   16, 0x0000 }, {   16, 0x0000 },\n  {   16, 0x0000 }, {   16, 0x0200 }, {   17, 0x0000 }, {   17, 0x0000 },\n  {   17, 0x0040 }, {   18, 0x0040 }, {   19, 0x0000 }, {   19, 0x0000 },\n  {   19, 0x0004 }, {   20, 0x0000 }, {   20, 0x0001 }, {   21, 0x0000 },\n  /* 0x5000 */\n  {   21, 0x0a41 }, {   25, 0x0002 }, {   26, 0x0800 }, {   27, 0x0000 },\n  {   27, 0x0200 }, {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0030 },\n  {   30, 0x0000 }, {   30, 0x0340 }, {   33, 0x2004 }, {   35, 0x40b8 },\n  {   40, 0x0224 }, {   43, 0x4022 }, {   46, 0x0120 }, {   48, 0x0200 },\n  /* 0x5100 */\n  {   49, 0x0315 }, {   54, 0x8131 }, {   59, 0x0400 }, {   60, 0x1c84 },\n  {   65, 0x0000 }, {   65, 0x0404 }, {   67, 0x0200 }, {   68, 0x0000 },\n  {   68, 0x0000 }, {   68, 0x0000 }, {   68, 0x0000 }, {   68, 0x0004 },\n  {   69, 0x2040 }, {   71, 0x0000 }, {   71, 0x2001 }, {   73, 0x0002 },\n  /* 0x5200 */\n  {   74, 0x0000 }, {   74, 0x0004 }, {   75, 0x0000 }, {   75, 0x0000 },\n  {   75, 0x0890 }, {   78, 0x0800 }, {   79, 0x4000 }, {   80, 0x0030 },\n  {   82, 0x3688 }, {   88, 0x0002 }, {   89, 0x0000 }, {   89, 0x0000 },\n  {   89, 0x0002 }, {   90, 0x6a20 }, {   95, 0x0004 }, {   96, 0x0122 },\n  /* 0x5300 */\n  {   99, 0x0000 }, {   99, 0x0000 }, {   99, 0xa000 }, {  101, 0x0002 },\n  {  102, 0x0001 }, {  103, 0x0010 }, {  104, 0x0000 }, {  104, 0x0000 },\n  {  104, 0x0004 }, {  105, 0x0200 }, {  106, 0x2001 }, {  108, 0x0014 },\n  {  110, 0x0008 }, {  111, 0x0000 }, {  111, 0x0404 }, {  113, 0x0041 },\n  /* 0x5400 */\n  {  115, 0x4000 }, {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0000 },\n  {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0000 },\n  {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x1000 },\n  {  117, 0x0000 }, {  117, 0x0000 }, {  117, 0x0002 }, {  118, 0x0000 },\n  /* 0x5500 */\n  {  118, 0x0010 }, {  119, 0x0000 }, {  119, 0x0000 }, {  119, 0x0000 },\n  {  119, 0x8000 }, {  120, 0x4008 }, {  122, 0x0000 }, {  122, 0x0000 },\n  {  122, 0x0000 }, {  122, 0x0000 }, {  122, 0x5400 }, {  125, 0x0004 },\n  {  126, 0x40c0 }, {  129, 0x0400 }, {  130, 0x0200 }, {  131, 0x0040 },\n  /* 0x5600 */\n  {  132, 0x2040 }, {  134, 0x10d0 }, {  138, 0xc200 }, {  141, 0x0121 },\n  {  144, 0x0002 }, {  145, 0x2000 }, {  146, 0x8061 }, {  150, 0x0314 },\n  {  154, 0x1081 }, {  157, 0x0220 }, {  159, 0x4140 }, {  162, 0x0058 },\n  {  165, 0x1327 }, {  172, 0x0002 }, {  173, 0x0000 }, {  173, 0x0000 },\n  /* 0x5700 */\n  {  173, 0x2880 }, {  176, 0x014c }, {  180, 0x0000 }, {  180, 0x0000 },\n  {  180, 0x0000 }, {  180, 0x0000 }, {  180, 0x0000 }, {  180, 0x0000 },\n  {  180, 0x0000 }, {  180, 0x0000 }, {  180, 0x0000 }, {  180, 0x0000 },\n  {  180, 0x0000 }, {  180, 0x0000 }, {  180, 0x0002 }, {  181, 0x0080 },\n  /* 0x5800 */\n  {  182, 0x0420 }, {  184, 0x2040 }, {  186, 0x8000 }, {  187, 0x0012 },\n  {  189, 0x8c00 }, {  192, 0x0084 }, {  194, 0x0014 }, {  196, 0x0220 },\n  {  198, 0x0400 }, {  199, 0x1000 }, {  200, 0x4000 }, {  201, 0x4808 },\n  {  204, 0x0080 }, {  205, 0xc708 }, {  211, 0x8205 }, {  215, 0x2400 },\n  /* 0x5900 */\n  {  217, 0x0000 }, {  217, 0x0000 }, {  217, 0x0004 }, {  218, 0x4100 },\n  {  220, 0x0000 }, {  220, 0x0000 }, {  220, 0x5600 }, {  224, 0x0000 },\n  {  224, 0x0000 }, {  224, 0x2000 }, {  225, 0x0000 }, {  225, 0x0000 },\n  {  225, 0x0000 }, {  225, 0x0000 }, {  225, 0x0000 }, {  225, 0x0000 },\n  /* 0x5a00 */\n  {  225, 0x0000 }, {  225, 0x0000 }, {  225, 0x0000 }, {  225, 0x0000 },\n  {  225, 0x0002 }, {  226, 0x0000 }, {  226, 0x2040 }, {  228, 0x0000 },\n  {  228, 0x0000 }, {  228, 0x0000 }, {  228, 0x0080 }, {  229, 0x2000 },\n  {  230, 0x0000 }, {  230, 0x0080 }, {  231, 0x0000 }, {  231, 0x0820 },\n  /* 0x5b00 */\n  {  233, 0x1901 }, {  237, 0x0200 }, {  238, 0x0402 }, {  240, 0x0101 },\n  {  242, 0x1000 }, {  243, 0x0000 }, {  243, 0x0800 }, {  244, 0x8100 },\n  {  246, 0x0000 }, {  246, 0x0000 }, {  246, 0x0000 }, {  246, 0x0000 },\n  {  246, 0x0000 }, {  246, 0x0000 }, {  246, 0x1ac4 }, {  252, 0x0060 },\n  /* 0x5c00 */\n  {  254, 0x6980 }, {  259, 0x0000 }, {  259, 0x0000 }, {  259, 0x0080 },\n  {  260, 0x0000 }, {  260, 0x0000 }, {  260, 0x1114 }, {  264, 0x0000 },\n  {  264, 0x0000 }, {  264, 0x0000 }, {  264, 0x0002 }, {  265, 0x0000 },\n  {  265, 0x0000 }, {  265, 0x0000 }, {  265, 0x0000 }, {  265, 0x2050 },\n  /* 0x5d00 */\n  {  268, 0x2000 }, {  269, 0x0080 }, {  270, 0x1000 }, {  271, 0x0000 },\n  {  271, 0x0000 }, {  271, 0x0001 }, {  272, 0x0000 }, {  272, 0x0000 },\n  {  272, 0x0092 }, {  275, 0x0080 }, {  276, 0x0081 }, {  278, 0x1500 },\n  {  281, 0x0800 }, {  282, 0x0014 }, {  284, 0x0000 }, {  284, 0x0001 },\n  /* 0x5e00 */\n  {  285, 0x0000 }, {  285, 0x0100 }, {  286, 0x0820 }, {  288, 0x0048 },\n  {  290, 0x0009 }, {  292, 0x8180 }, {  295, 0x1808 }, {  298, 0xc204 },\n  {  302, 0x0000 }, {  302, 0x0000 }, {  302, 0x0800 }, {  303, 0x0000 },\n  {  303, 0x0000 }, {  303, 0x8000 }, {  304, 0x100f }, {  309, 0x0008 },\n  /* 0x5f00 */\n  {  310, 0x0000 }, {  310, 0x0000 }, {  310, 0x0000 }, {  310, 0x0028 },\n  {  312, 0x5140 }, {  316, 0x0200 }, {  317, 0x0000 }, {  317, 0x0000 },\n  {  317, 0x1000 }, {  318, 0x4002 }, {  320, 0x0201 }, {  322, 0x0200 },\n  {  323, 0x0000 }, {  323, 0x0000 }, {  323, 0x0000 }, {  323, 0x0000 },\n  /* 0x6000 */\n  {  323, 0x0000 }, {  323, 0x0000 }, {  323, 0x0000 }, {  323, 0x0000 },\n  {  323, 0x0000 }, {  323, 0x0000 }, {  323, 0x0000 }, {  323, 0x0000 },\n  {  323, 0x0000 }, {  323, 0x0000 }, {  323, 0x0000 }, {  323, 0x0060 },\n  {  325, 0x0000 }, {  325, 0x0000 }, {  325, 0x0002 }, {  326, 0x0806 },\n  /* 0x6100 */\n  {  329, 0x0000 }, {  329, 0x1800 }, {  331, 0x0000 }, {  331, 0xc090 },\n  {  335, 0x0800 }, {  336, 0x8500 }, {  339, 0x4c18 }, {  344, 0x0048 },\n  {  346, 0x0404 }, {  348, 0x0407 }, {  352, 0x4810 }, {  355, 0x0044 },\n  {  357, 0x1280 }, {  360, 0xc000 }, {  362, 0x0108 }, {  364, 0x55c4 },\n  /* 0x6200 */\n  {  371, 0x0081 }, {  373, 0x0010 }, {  374, 0x0080 }, {  375, 0x0005 },\n  {  377, 0x0000 }, {  377, 0x0002 }, {  378, 0x0000 }, {  378, 0x0000 },\n  {  378, 0x0000 }, {  378, 0x0000 }, {  378, 0x0000 }, {  378, 0x0000 },\n  {  378, 0x0000 }, {  378, 0x0000 }, {  378, 0x0000 }, {  378, 0x0000 },\n  /* 0x6300 */\n  {  378, 0x0000 }, {  378, 0x0000 }, {  378, 0x0000 }, {  378, 0x4000 },\n  {  379, 0x0000 }, {  379, 0x0000 }, {  379, 0x4900 }, {  382, 0x0004 },\n  {  383, 0x0018 }, {  385, 0x0000 }, {  385, 0x0000 }, {  385, 0x0000 },\n  {  385, 0x0001 }, {  386, 0x0400 }, {  387, 0x4000 }, {  388, 0x0000 },\n  /* 0x6400 */\n  {  388, 0x2000 }, {  389, 0x0080 }, {  390, 0x0000 }, {  390, 0x0040 },\n  {  391, 0x0000 }, {  391, 0x9002 }, {  394, 0x8000 }, {  395, 0x0848 },\n  {  398, 0x0100 }, {  399, 0x8008 }, {  401, 0x0828 }, {  404, 0xc80c },\n  {  409, 0x0c92 }, {  414, 0x0410 }, {  416, 0x9001 }, {  419, 0x5c97 },\n  /* 0x6500 */\n  {  428, 0x8050 }, {  431, 0x2a50 }, {  436, 0x141c }, {  441, 0x0000 },\n  {  441, 0x0000 }, {  441, 0x0080 }, {  442, 0x0000 }, {  442, 0x0120 },\n  {  444, 0x000c }, {  446, 0x00a0 }, {  448, 0x1000 }, {  449, 0x0080 },\n  {  450, 0x0000 }, {  450, 0x0000 }, {  450, 0x0000 }, {  450, 0x0000 },\n  /* 0x6600 */\n  {  450, 0x0000 }, {  450, 0x0000 }, {  450, 0x0000 }, {  450, 0x0000 },\n  {  450, 0x0004 }, {  451, 0x2000 }, {  452, 0x0000 }, {  452, 0x0000 },\n  {  452, 0x0300 }, {  454, 0x0000 }, {  454, 0x0804 }, {  456, 0x0000 },\n  {  456, 0x02d0 }, {  460, 0x0040 }, {  461, 0x1001 }, {  463, 0x0100 },\n  /* 0x6700 */\n  {  464, 0x0008 }, {  465, 0x0000 }, {  465, 0x8080 }, {  467, 0x0010 },\n  {  468, 0x0000 }, {  468, 0x0000 }, {  468, 0x0000 }, {  468, 0x4002 },\n  {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 },\n  {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 },\n  /* 0x6800 */\n  {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 },\n  {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 },\n  {  470, 0x0000 }, {  470, 0xa100 }, {  473, 0x0000 }, {  473, 0x0000 },\n  {  473, 0x0000 }, {  473, 0x80c0 }, {  476, 0x0080 }, {  477, 0x0000 },\n  /* 0x6900 */\n  {  477, 0x8000 }, {  478, 0x0000 }, {  478, 0x0000 }, {  478, 0x0000 },\n  {  478, 0x0400 }, {  479, 0x0008 }, {  480, 0x2100 }, {  482, 0x0020 },\n  {  483, 0x0000 }, {  483, 0x0000 }, {  483, 0x4400 }, {  485, 0x8000 },\n  {  486, 0x2800 }, {  488, 0x0000 }, {  488, 0x0080 }, {  489, 0x0008 },\n  /* 0x6a00 */\n  {  490, 0x0026 }, {  493, 0x4208 }, {  496, 0x0008 }, {  497, 0x0700 },\n  {  500, 0x0900 }, {  502, 0x8000 }, {  503, 0x0004 }, {  504, 0x0000 },\n  {  504, 0x0200 }, {  505, 0x1010 }, {  507, 0x800c }, {  510, 0x0908 },\n  {  513, 0x0008 }, {  514, 0xec08 }, {  520, 0x1580 }, {  524, 0x0908 },\n  /* 0x6b00 */\n  {  527, 0x8410 }, {  530, 0x4044 }, {  533, 0x0000 }, {  533, 0x2000 },\n  {  534, 0x0000 }, {  534, 0x8001 }, {  536, 0x0002 }, {  537, 0x0184 },\n  {  540, 0x0000 }, {  540, 0x4100 }, {  542, 0xc810 }, {  546, 0x0c04 },\n  {  549, 0x0040 }, {  550, 0x0000 }, {  550, 0x0000 }, {  550, 0x8000 },\n  /* 0x6c00 */\n  {  551, 0x1100 }, {  553, 0x0000 }, {  553, 0x1808 }, {  556, 0x0000 },\n  {  556, 0x0000 }, {  556, 0x0000 }, {  556, 0x0000 }, {  556, 0x0000 },\n  {  556, 0x0000 }, {  556, 0x0000 }, {  556, 0x0000 }, {  556, 0x0000 },\n  {  556, 0x0000 }, {  556, 0x0000 }, {  556, 0x0000 }, {  556, 0x0000 },\n  /* 0x6d00 */\n  {  556, 0x0000 }, {  556, 0x0000 }, {  556, 0x0000 }, {  556, 0x0000 },\n  {  556, 0x0000 }, {  556, 0x0000 }, {  556, 0x0000 }, {  556, 0x0200 },\n  {  557, 0x0084 }, {  559, 0x0000 }, {  559, 0x0000 }, {  559, 0x0000 },\n  {  559, 0x0001 }, {  560, 0x0000 }, {  560, 0x0400 }, {  561, 0x0460 },\n  /* 0x6e00 */\n  {  564, 0x0000 }, {  564, 0x0000 }, {  564, 0x1040 }, {  566, 0x4000 },\n  {  567, 0x0000 }, {  567, 0x4000 }, {  568, 0x8000 }, {  569, 0x0000 },\n  {  569, 0x0000 }, {  569, 0x2040 }, {  571, 0x0000 }, {  571, 0x0000 },\n  {  571, 0x5030 }, {  575, 0x0000 }, {  575, 0x9000 }, {  577, 0x8184 },\n  /* 0x6f00 */\n  {  581, 0x0002 }, {  582, 0x0400 }, {  583, 0x100c }, {  586, 0x8104 },\n  {  589, 0x0002 }, {  590, 0x0212 }, {  593, 0x8010 }, {  595, 0x8081 },\n  {  598, 0x00c1 }, {  601, 0x0080 }, {  602, 0x4211 }, {  606, 0x0002 },\n  {  607, 0x000a }, {  609, 0x8920 }, {  613, 0x0810 }, {  615, 0x5403 },\n  /* 0x7000 */\n  {  620, 0x8a60 }, {  625, 0xa120 }, {  629, 0x0181 }, {  632, 0x4005 },\n  {  635, 0x0018 }, {  637, 0x2122 }, {  641, 0x0098 }, {  644, 0x0000 },\n  {  644, 0x0000 }, {  644, 0x0000 }, {  644, 0x0000 }, {  644, 0x0000 },\n  {  644, 0x8000 }, {  645, 0x0000 }, {  645, 0x0000 }, {  645, 0x0010 },\n  /* 0x7100 */\n  {  646, 0x0000 }, {  646, 0x0000 }, {  646, 0x0002 }, {  647, 0x0000 },\n  {  647, 0x0200 }, {  648, 0x0004 }, {  649, 0x1204 }, {  652, 0x0000 },\n  {  652, 0x0000 }, {  652, 0x0084 }, {  654, 0x0000 }, {  654, 0x4002 },\n  {  656, 0x0102 }, {  658, 0x9204 }, {  662, 0x2040 }, {  664, 0x5010 },\n  /* 0x7200 */\n  {  667, 0x2000 }, {  668, 0x0801 }, {  670, 0x0000 }, {  670, 0x4404 },\n  {  673, 0x0000 }, {  673, 0x0100 }, {  674, 0x0000 }, {  674, 0x2000 },\n  {  675, 0x0000 }, {  675, 0x0040 }, {  676, 0x0084 }, {  678, 0x0000 },\n  {  678, 0x0001 }, {  679, 0x0000 }, {  679, 0x0000 }, {  679, 0x2200 },\n  /* 0x7300 */\n  {  681, 0x0000 }, {  681, 0x0000 }, {  681, 0x0000 }, {  681, 0x0840 },\n  {  683, 0x0032 }, {  686, 0x0000 }, {  686, 0x0d00 }, {  689, 0x1da5 },\n  {  697, 0x0001 }, {  698, 0x0000 }, {  698, 0x0000 }, {  698, 0x0000 },\n  {  698, 0x0000 }, {  698, 0x0000 }, {  698, 0x0000 }, {  698, 0x4000 },\n  /* 0x7400 */\n  {  699, 0x0000 }, {  699, 0x0000 }, {  699, 0x0000 }, {  699, 0x8000 },\n  {  700, 0x0800 }, {  701, 0x0000 }, {  701, 0x0608 }, {  704, 0x0000 },\n  {  704, 0x0200 }, {  705, 0x0000 }, {  705, 0x0048 }, {  707, 0x2001 },\n  {  709, 0x8400 }, {  711, 0x0410 }, {  713, 0x0000 }, {  713, 0x0000 },\n  /* 0x7500 */\n  {  713, 0x1000 }, {  714, 0x0000 }, {  714, 0x0008 }, {  715, 0x0000 },\n  {  715, 0x0000 }, {  715, 0x2000 }, {  716, 0x0804 }, {  718, 0x0040 },\n  {  719, 0x0080 }, {  720, 0x0000 }, {  720, 0x0000 }, {  720, 0x0000 },\n  {  720, 0x0080 }, {  721, 0x0200 }, {  722, 0x0000 }, {  722, 0x0000 },\n  /* 0x7600 */\n  {  722, 0x2804 }, {  725, 0x4000 }, {  726, 0x0082 }, {  728, 0x0800 },\n  {  729, 0x02c4 }, {  733, 0x8100 }, {  735, 0x72b4 }, {  743, 0x1007 },\n  {  747, 0x0000 }, {  747, 0x0400 }, {  748, 0x0000 }, {  748, 0x0500 },\n  {  750, 0x0000 }, {  750, 0x4000 }, {  751, 0x009a }, {  755, 0x0000 },\n  /* 0x7700 */\n  {  755, 0x0000 }, {  755, 0x0000 }, {  755, 0x0000 }, {  755, 0x0000 },\n  {  755, 0x8000 }, {  756, 0x4000 }, {  757, 0x0000 }, {  757, 0x0000 },\n  {  757, 0x0000 }, {  757, 0x4100 }, {  759, 0x2000 }, {  760, 0x1000 },\n  {  761, 0x0080 }, {  762, 0x0400 }, {  763, 0x8000 }, {  764, 0x0000 },\n  /* 0x7800 */\n  {  764, 0x0000 }, {  764, 0x0000 }, {  764, 0x0000 }, {  764, 0x0000 },\n  {  764, 0x0008 }, {  765, 0x0000 }, {  765, 0xc110 }, {  769, 0x0000 },\n  {  769, 0x0000 }, {  769, 0x0000 }, {  769, 0x2200 }, {  771, 0x1500 },\n  {  774, 0x0000 }, {  774, 0x0400 }, {  775, 0x8088 }, {  778, 0x2000 },\n  /* 0x7900 */\n  {  779, 0x4000 }, {  780, 0x0200 }, {  781, 0x1c40 }, {  785, 0x0002 },\n  {  786, 0x0000 }, {  786, 0x0000 }, {  786, 0x0000 }, {  786, 0x0000 },\n  {  786, 0x6000 }, {  788, 0x0000 }, {  788, 0x4440 }, {  791, 0x0003 },\n  {  793, 0x2000 }, {  794, 0x0000 }, {  794, 0x0000 }, {  794, 0x0000 },\n  /* 0x7a00 */\n  {  794, 0x0000 }, {  794, 0x0000 }, {  794, 0x4000 }, {  795, 0x0002 },\n  {  796, 0x7001 }, {  800, 0x0000 }, {  800, 0x0a06 }, {  804, 0x0000 },\n  {  804, 0x0000 }, {  804, 0x0000 }, {  804, 0x4600 }, {  807, 0x0440 },\n  {  809, 0x05b0 }, {  814, 0x0000 }, {  814, 0x0400 }, {  815, 0x0040 },\n  /* 0x7b00 */\n  {  816, 0x0000 }, {  816, 0x0000 }, {  816, 0x0000 }, {  816, 0x0000 },\n  {  816, 0x0040 }, {  817, 0x0002 }, {  818, 0x0080 }, {  819, 0x0000 },\n  {  819, 0x0800 }, {  820, 0x0000 }, {  820, 0x0000 }, {  820, 0x0000 },\n  {  820, 0x0a11 }, {  824, 0x0000 }, {  824, 0x0210 }, {  826, 0x0008 },\n  /* 0x7c00 */\n  {  827, 0x2001 }, {  829, 0x4000 }, {  830, 0x080a }, {  833, 0x6000 },\n  {  835, 0x1008 }, {  837, 0x9000 }, {  839, 0x5611 }, {  845, 0x0004 },\n  {  846, 0x0000 }, {  846, 0x0000 }, {  846, 0x0000 }, {  846, 0x0000 },\n  {  846, 0x0000 }, {  846, 0x6000 }, {  848, 0x0080 }, {  849, 0x4255 },\n  /* 0x7d00 */\n  {  855, 0x2bf5 }, {  865, 0x1eb9 }, {  874, 0x0002 }, {  875, 0x960f },\n  {  883, 0x4055 }, {  888, 0x6001 }, {  891, 0x0146 }, {  895, 0x024e },\n  {  900, 0x834a }, {  906, 0x5008 }, {  909, 0x380c }, {  914, 0xef1f },\n  {  926, 0x0c90 }, {  930, 0x6396 }, {  938, 0x934b }, {  946, 0x0a56 },\n  /* 0x7e00 */\n  {  952, 0x0f00 }, {  956, 0xe803 }, {  962, 0x6888 }, {  967, 0x62f6 },\n  {  976, 0x0060 }, {  978, 0x4434 }, {  983, 0xee04 }, {  990, 0x7209 },\n  {  996, 0xb500 }, { 1001, 0x1158 }, { 1006, 0x0000 }, { 1006, 0x0000 },\n  { 1006, 0x0000 }, { 1006, 0x0000 }, { 1006, 0x0000 }, { 1006, 0x0000 },\n  /* 0x7f00 */\n  { 1006, 0x0000 }, { 1006, 0x0000 }, { 1006, 0x0000 }, { 1006, 0x0000 },\n  { 1006, 0x5000 }, { 1008, 0x0000 }, { 1008, 0x0000 }, { 1008, 0x0081 },\n  { 1010, 0x0160 }, { 1013, 0x0000 }, { 1013, 0x0220 }, { 1015, 0x0000 },\n  { 1015, 0x0000 }, { 1015, 0x0004 }, { 1016, 0x0000 }, { 1016, 0x0200 },\n  /* 0x8000 */\n  { 1017, 0x0000 }, { 1017, 0x0000 }, { 1017, 0x5000 }, { 1019, 0x0000 },\n  { 1019, 0x0000 }, { 1019, 0x4040 }, { 1021, 0x8000 }, { 1022, 0x62ed },\n  { 1031, 0x0020 }, { 1032, 0x0000 }, { 1032, 0x0000 }, { 1032, 0x0000 },\n  { 1032, 0x0000 }, { 1032, 0x0000 }, { 1032, 0x0000 }, { 1032, 0x0000 },\n  /* 0x8100 */\n  { 1032, 0x0020 }, { 1033, 0x0800 }, { 1034, 0x0000 }, { 1034, 0x0200 },\n  { 1035, 0x4400 }, { 1037, 0x0040 }, { 1038, 0x0842 }, { 1041, 0x0100 },\n  { 1042, 0x0000 }, { 1042, 0x0400 }, { 1043, 0x0201 }, { 1045, 0xe000 },\n  { 1048, 0xa200 }, { 1051, 0x8500 }, { 1054, 0x0101 }, { 1056, 0x0400 },\n  /* 0x8200 */\n  { 1057, 0x2780 }, { 1062, 0x0000 }, { 1062, 0x0000 }, { 1062, 0x0000 },\n  { 1062, 0x0000 }, { 1062, 0x0200 }, { 1063, 0x0850 }, { 1066, 0x0082 },\n  { 1068, 0x0000 }, { 1068, 0x0000 }, { 1068, 0x0000 }, { 1068, 0x0800 },\n  { 1069, 0x0000 }, { 1069, 0x0000 }, { 1069, 0x0080 }, { 1070, 0x0200 },\n  /* 0x8300 */\n  { 1071, 0x0008 }, { 1072, 0x0000 }, { 1072, 0x0000 }, { 1072, 0x0000 },\n  { 1072, 0x0000 }, { 1072, 0x0001 }, { 1073, 0x0000 }, { 1073, 0x0000 },\n  { 1073, 0x0400 }, { 1074, 0x0040 }, { 1075, 0x0084 }, { 1077, 0x0000 },\n  { 1077, 0x0000 }, { 1077, 0x0000 }, { 1077, 0x8000 }, { 1078, 0x0000 },\n  /* 0x8400 */\n  { 1078, 0x0480 }, { 1080, 0x0000 }, { 1080, 0x1000 }, { 1081, 0x0020 },\n  { 1082, 0x0200 }, { 1083, 0x0004 }, { 1084, 0x8050 }, { 1087, 0x0080 },\n  { 1088, 0x0000 }, { 1088, 0x0018 }, { 1090, 0x0000 }, { 1090, 0x1000 },\n  { 1091, 0x0801 }, { 1093, 0x0000 }, { 1093, 0xc000 }, { 1095, 0x2000 },\n  /* 0x8500 */\n  { 1096, 0x0000 }, { 1096, 0x4010 }, { 1098, 0x2048 }, { 1101, 0x0000 },\n  { 1101, 0x4042 }, { 1104, 0x012c }, { 1108, 0x2604 }, { 1112, 0x0080 },\n  { 1113, 0x1500 }, { 1116, 0x8012 }, { 1119, 0x0240 }, { 1121, 0x0400 },\n  { 1122, 0x6000 }, { 1124, 0x2000 }, { 1125, 0x0420 }, { 1127, 0x0650 },\n  /* 0x8600 */\n  { 1131, 0x08d0 }, { 1135, 0x4400 }, { 1137, 0x2004 }, { 1139, 0x8400 },\n  { 1141, 0x0000 }, { 1141, 0x9020 }, { 1144, 0x0080 }, { 1145, 0x0000 },\n  { 1145, 0x0000 }, { 1145, 0x0000 }, { 1145, 0x0000 }, { 1145, 0x0000 },\n  { 1145, 0x0000 }, { 1145, 0x0000 }, { 1145, 0x0000 }, { 1145, 0x0400 },\n  /* 0x8700 */\n  { 1146, 0x0040 }, { 1147, 0x0000 }, { 1147, 0x0002 }, { 1148, 0x0000 },\n  { 1148, 0x0000 }, { 1148, 0x0020 }, { 1149, 0x0040 }, { 1150, 0x0100 },\n  { 1151, 0x0010 }, { 1152, 0x4000 }, { 1153, 0x0004 }, { 1154, 0x0800 },\n  { 1155, 0x4110 }, { 1158, 0x0000 }, { 1158, 0x9008 }, { 1161, 0x0844 },\n  /* 0x8800 */\n  { 1164, 0x0060 }, { 1166, 0x8003 }, { 1169, 0x0008 }, { 1170, 0x0842 },\n  { 1173, 0x0440 }, { 1175, 0x2808 }, { 1178, 0x0000 }, { 1178, 0x0200 },\n  { 1179, 0x0000 }, { 1179, 0x0000 }, { 1179, 0x0000 }, { 1179, 0x0000 },\n  { 1179, 0x8400 }, { 1181, 0x3000 }, { 1183, 0x0000 }, { 1183, 0x2000 },\n  /* 0x8900 */\n  { 1184, 0x0080 }, { 1185, 0x0000 }, { 1185, 0x0000 }, { 1185, 0x090c },\n  { 1189, 0x0080 }, { 1190, 0x2040 }, { 1192, 0x9411 }, { 1197, 0x0004 },\n  { 1198, 0x8800 }, { 1200, 0x0148 }, { 1203, 0x9442 }, { 1208, 0xa484 },\n  { 1213, 0x0001 }, { 1214, 0x0000 }, { 1214, 0x0000 }, { 1214, 0x0150 },\n  /* 0x8a00 */\n  { 1217, 0x550e }, { 1224, 0xa969 }, { 1232, 0x2428 }, { 1236, 0x0452 },\n  { 1240, 0x4042 }, { 1243, 0x4935 }, { 1250, 0x7a4e }, { 1259, 0x902f },\n  { 1266, 0x20f0 }, { 1271, 0x4526 }, { 1277, 0x117b }, { 1285, 0x9245 },\n  { 1291, 0xaa94 }, { 1298, 0x58c6 }, { 1305, 0x68d4 }, { 1312, 0x55ca },\n  /* 0x8b00 */\n  { 1320, 0x4437 }, { 1327, 0x2ed1 }, { 1335, 0x3902 }, { 1340, 0x4208 },\n  { 1343, 0xc200 }, { 1346, 0x1740 }, { 1351, 0x8800 }, { 1353, 0x2091 },\n  { 1357, 0x4401 }, { 1360, 0x506c }, { 1366, 0x0000 }, { 1366, 0x0000 },\n  { 1366, 0x0000 }, { 1366, 0x0000 }, { 1366, 0x0000 }, { 1366, 0x0000 },\n  /* 0x8c00 */\n  { 1366, 0x0000 }, { 1366, 0x0000 }, { 1366, 0x0000 }, { 1366, 0x0000 },\n  { 1366, 0x0100 }, { 1367, 0x0001 }, { 1368, 0x0000 }, { 1368, 0x0000 },\n  { 1368, 0x0000 }, { 1368, 0x6000 }, { 1370, 0x9f87 }, { 1380, 0xbddd },\n  { 1392, 0x05bf }, { 1401, 0x542e }, { 1408, 0x3cdf }, { 1419, 0x7c10 },\n  /* 0x8d00 */\n  { 1425, 0xad30 }, { 1432, 0x1841 }, { 1436, 0x0000 }, { 1436, 0x0000 },\n  { 1436, 0x0000 }, { 1436, 0x0000 }, { 1436, 0x0000 }, { 1436, 0x0000 },\n  { 1436, 0x0000 }, { 1436, 0x0220 }, { 1438, 0x0100 }, { 1439, 0x0004 },\n  { 1440, 0x0000 }, { 1440, 0x0000 }, { 1440, 0x0000 }, { 1440, 0x0000 },\n  /* 0x8e00 */\n  { 1440, 0x0000 }, { 1440, 0x0001 }, { 1441, 0x0000 }, { 1441, 0x0010 },\n  { 1442, 0x1000 }, { 1443, 0x0020 }, { 1444, 0x0008 }, { 1445, 0x0400 },\n  { 1446, 0x2e00 }, { 1450, 0x040e }, { 1454, 0x0462 }, { 1458, 0x0000 },\n  { 1458, 0x3c01 }, { 1463, 0x8814 }, { 1467, 0x0810 }, { 1469, 0x5f04 },\n  /* 0x8f00 */\n  { 1476, 0x06a8 }, { 1481, 0xf834 }, { 1489, 0x8660 }, { 1494, 0xc908 },\n  { 1499, 0x6274 }, { 1506, 0x8010 }, { 1508, 0x0016 }, { 1511, 0x0000 },\n  { 1511, 0x0000 }, { 1511, 0x0000 }, { 1511, 0xe040 }, { 1515, 0x0004 },\n  { 1516, 0x0000 }, { 1516, 0x0000 }, { 1516, 0x0000 }, { 1516, 0x0010 },\n  /* 0x9000 */\n  { 1517, 0x0000 }, { 1517, 0x0220 }, { 1519, 0x0008 }, { 1520, 0x0004 },\n  { 1521, 0x4800 }, { 1523, 0x5030 }, { 1527, 0x0201 }, { 1529, 0x1584 },\n  { 1534, 0x8492 }, { 1539, 0x0001 }, { 1540, 0x0000 }, { 1540, 0x0000 },\n  { 1540, 0x0002 }, { 1541, 0x8000 }, { 1542, 0x0000 }, { 1542, 0x0020 },\n  /* 0x9100 */\n  { 1543, 0x0240 }, { 1545, 0x0054 }, { 1548, 0x2080 }, { 1550, 0x0455 },\n  { 1555, 0x0100 }, { 1556, 0x0000 }, { 1556, 0x0000 }, { 1556, 0x0000 },\n  { 1556, 0x0000 }, { 1556, 0x1040 }, { 1558, 0x1800 }, { 1560, 0x0000 },\n  { 1560, 0x182b }, { 1566, 0x23bc }, { 1574, 0x0298 }, { 1578, 0x06a0 },\n  /* 0x9200 */\n  { 1582, 0x6313 }, { 1589, 0x4033 }, { 1594, 0x40e8 }, { 1599, 0xe799 },\n  { 1609, 0x2321 }, { 1614, 0x4ca2 }, { 1620, 0x3044 }, { 1624, 0x8d00 },\n  { 1628, 0x0029 }, { 1631, 0x154a }, { 1637, 0x1f69 }, { 1646, 0x1a82 },\n  { 1651, 0x90aa }, { 1657, 0xa004 }, { 1660, 0xe578 }, { 1669, 0x1143 },\n  /* 0x9300 */\n  { 1674, 0x01c2 }, { 1678, 0x8f25 }, { 1686, 0xc945 }, { 1693, 0x014c },\n  { 1697, 0x28cb }, { 1704, 0x0910 }, { 1707, 0x1230 }, { 1711, 0x4461 },\n  { 1716, 0x0494 }, { 1720, 0x0140 }, { 1722, 0x56cc }, { 1730, 0x8129 },\n  { 1735, 0x3188 }, { 1740, 0xf182 }, { 1747, 0x0116 }, { 1751, 0x02a0 },\n  /* 0x9400 */\n  { 1754, 0x0808 }, { 1756, 0x231d }, { 1763, 0x41c1 }, { 1768, 0x852c },\n  { 1774, 0x1410 }, { 1777, 0x0014 }, { 1779, 0x2029 }, { 1783, 0xf285 },\n  { 1791, 0x0000 }, { 1791, 0x0000 }, { 1791, 0x0000 }, { 1791, 0x0000 },\n  { 1791, 0x0000 }, { 1791, 0x0000 }, { 1791, 0x0000 }, { 1791, 0x0000 },\n  /* 0x9500 */\n  { 1791, 0x0000 }, { 1791, 0x0000 }, { 1791, 0x0000 }, { 1791, 0x0000 },\n  { 1791, 0x0000 }, { 1791, 0x0000 }, { 1791, 0x0000 }, { 1791, 0x0080 },\n  { 1792, 0xda4d }, { 1801, 0x011a }, { 1805, 0x3b3a }, { 1814, 0xfa44 },\n  { 1822, 0x1d48 }, { 1828, 0x5071 }, { 1834, 0x0026 }, { 1837, 0x0000 },\n  /* 0x9600 */\n  { 1837, 0x0000 }, { 1837, 0x0000 }, { 1837, 0x0000 }, { 1837, 0x0000 },\n  { 1837, 0x0000 }, { 1837, 0x2100 }, { 1839, 0x0008 }, { 1840, 0x2109 },\n  { 1844, 0x4400 }, { 1846, 0x0820 }, { 1848, 0x0500 }, { 1850, 0x0912 },\n  { 1854, 0x0000 }, { 1854, 0x1a40 }, { 1858, 0x000c }, { 1860, 0x0804 },\n  /* 0x9700 */\n  { 1862, 0x0000 }, { 1862, 0x0000 }, { 1862, 0x0080 }, { 1863, 0x2000 },\n  { 1864, 0x0114 }, { 1867, 0x0400 }, { 1868, 0x0100 }, { 1869, 0x0000 },\n  { 1869, 0x8000 }, { 1870, 0x0000 }, { 1870, 0x0040 }, { 1871, 0x2000 },\n  { 1872, 0x1a48 }, { 1877, 0x5208 }, { 1881, 0x0000 }, { 1881, 0x8000 },\n  /* 0x9800 */\n  { 1882, 0xd5ee }, { 1893, 0x118f }, { 1900, 0x2052 }, { 1904, 0x2981 },\n  { 1909, 0x7040 }, { 1913, 0x4b18 }, { 1919, 0x98a4 }, { 1925, 0x001b },\n  { 1929, 0x0000 }, { 1929, 0x0000 }, { 1929, 0xc100 }, { 1932, 0x104a },\n  { 1936, 0x0150 }, { 1939, 0x0800 }, { 1940, 0xae05 }, { 1947, 0x7014 },\n  /* 0x9900 */\n  { 1952, 0x1628 }, { 1957, 0x490e }, { 1963, 0x0102 }, { 1965, 0xd088 },\n  { 1970, 0x1f28 }, { 1977, 0x5086 }, { 1982, 0x0004 }, { 1983, 0x0000 },\n  { 1983, 0x0000 }, { 1983, 0x0000 }, { 1983, 0x7000 }, { 1986, 0x001a },\n  { 1989, 0x0002 }, { 1990, 0xab37 }, { 2000, 0x2006 }, { 2003, 0x8002 },\n  /* 0x9a00 */\n  { 2005, 0xe022 }, { 2010, 0x0240 }, { 2012, 0x6800 }, { 2015, 0x41c1 },\n  { 2020, 0xa43f }, { 2029, 0x8ca0 }, { 2034, 0x0434 }, { 2038, 0x0000 },\n  { 2038, 0x0000 }, { 2038, 0x0000 }, { 2038, 0x8000 }, { 2039, 0x0000 },\n  { 2039, 0x8000 }, { 2040, 0x0074 }, { 2044, 0x4000 }, { 2045, 0x0000 },\n  /* 0x9b00 */\n  { 2045, 0x2040 }, { 2047, 0x0400 }, { 2048, 0x42a4 }, { 2053, 0x0002 },\n  { 2054, 0x4000 }, { 2055, 0x0500 }, { 2057, 0x8000 }, { 2058, 0x0090 },\n  { 2060, 0x400a }, { 2063, 0x6407 }, { 2069, 0x6c00 }, { 2073, 0x0000 },\n  { 2073, 0x0683 }, { 2078, 0x2850 }, { 2082, 0x0d96 }, { 2089, 0xa011 },\n  /* 0x9c00 */\n  { 2093, 0x2300 }, { 2096, 0x000d }, { 2099, 0x2329 }, { 2105, 0x4aae },\n  { 2113, 0x0320 }, { 2116, 0xa1d4 }, { 2123, 0x2080 }, { 2125, 0x0500 },\n  { 2127, 0x0000 }, { 2127, 0x0000 }, { 2127, 0x0000 }, { 2127, 0x0000 },\n  { 2127, 0x0000 }, { 2127, 0x0000 }, { 2127, 0x1220 }, { 2130, 0x0058 },\n  /* 0x9d00 */\n  { 2133, 0x02c0 }, { 2136, 0xa820 }, { 2140, 0x8148 }, { 2144, 0x8801 },\n  { 2147, 0x0004 }, { 2148, 0x300e }, { 2153, 0x9403 }, { 2158, 0x0004 },\n  { 2159, 0x0280 }, { 2161, 0x0508 }, { 2164, 0x8220 }, { 2167, 0x1810 },\n  { 2170, 0x0015 }, { 2173, 0x0688 }, { 2177, 0x8060 }, { 2180, 0x070c },\n  /* 0x9e00 */\n  { 2185, 0x1000 }, { 2186, 0x6c20 }, { 2191, 0x0000 }, { 2191, 0x0000 },\n  { 2191, 0x0000 }, { 2191, 0x0000 }, { 2191, 0x0000 }, { 2191, 0x3620 },\n  { 2196, 0x0000 }, { 2196, 0x0080 }, { 2197, 0x8220 }, { 2200, 0x2020 },\n  { 2202, 0x1000 }, { 2203, 0x4000 }, { 2204, 0x0100 }, { 2205, 0xa094 },\n  /* 0x9f00 */\n  { 2210, 0x0200 }, { 2211, 0x0020 }, { 2212, 0x0000 }, { 2212, 0x0000 },\n  { 2212, 0x8c00 }, { 2215, 0x9214 }, { 2220, 0x144b }, { 2226, 0x0084 },\n  { 2228, 0x2000 }, { 2229, 0x1031 },\n};\nstatic const Summary16 gb12345ext_uni2indx_pagefe[5] = {\n  /* 0xfe00 */\n  { 2233, 0x0000 }, { 2233, 0x0000 }, { 2233, 0x0000 }, { 2233, 0xfffa },\n  { 2247, 0x001f },\n};\n\nstatic int\ngb12345ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x0100 && wc < 0x0270)\n      summary = &gb12345ext_uni2indx_page01[(wc>>4)-0x010];\n    else if (wc >= 0x1e00 && wc < 0x1e40)\n      summary = &gb12345ext_uni2indx_page1e[(wc>>4)-0x1e0];\n    else if (wc >= 0x2200 && wc < 0x2230)\n      summary = &gb12345ext_uni2indx_page22[(wc>>4)-0x220];\n    else if (wc >= 0x4e00 && wc < 0x9fa0)\n      summary = &gb12345ext_uni2indx_page4e[(wc>>4)-0x4e0];\n    else if (wc >= 0xfe00 && wc < 0xfe50)\n      summary = &gb12345ext_uni2indx_pagefe[(wc>>4)-0xfe0];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = gb12345ext_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/gb18030.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2005, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GB18030\n */\n\n/*\n * GB18030, as specified in the GB18030 standard, is an extension of GBK.\n *\n * In what follows, page numbers refer to the GB18030 standard (second\n * printing).\n *\n *\n * It consists of the following parts:\n *\n * One-byte range:\n *   ASCII        p. 2         0x{00..7F}\n *\n * Two-byte range:\n *   GBK part 1   p. 10..12    0x{A1..A9}{A1..FE}\n *   GBK part 2   p. 13..36    0x{B0..F7}{A1..FE}\n *   GBK part 3   p. 37..52    0x{81..A0}{40..7E,80..FE}\n *   GBK part 4   p. 53..81    0x{AA..FE}{40..7E,80..A0}\n *   GBK part 5   p. 82        0x{A8..A9}{40..7E,80..A0}\n *   UDA part 1   p. 83..84    0x{AA..AF}{A1..FE}              U+E000..U+E233\n *   UDA part 2   p. 85..87    0x{F8..FE}{A1..FE}              U+E234..U+E4C5\n *   UDA part 3   p. 88..90    0x{A1..A7}{40..7E,80..A0}       U+E4C6..U+E765\n *\n * Four-byte range:\n *   BMP rest     p. 94..283   0x{81..84}{30..39}{81..FE}{30..39}\n *                                                     rest of U+0080..U+FFFF\n *   Planes 1-16  p. 5         0x{90..FE}{30..39}{81..FE}{30..39}\n *                                                            U+10000..U+10FFFF\n *\n * To GBK part 1 were added:\n * 1. 0xA2E3, 0xA8BF.\n * 2. Characters mapped to the Unicode PUA\n *      0xA2AB..0xA2B0                      U+E766..U+E76B\n *      0xA2E4                              U+E76D\n *      0xA2EF..0xA2F0                      U+E76E..U+E76F\n *      0xA2FD..0xA2FE                      U+E770..U+E771\n *      0xA4F4..0xA4FE                      U+E772..U+E77C\n *      0xA5F7..0xA5FE                      U+E77D..U+E784\n *      0xA6B9..0xA6C0                      U+E785..U+E78C\n *      0xA6D9..0xA6DF [glyphs here!!]      U+E78D..U+E793\n *      0xA6EC..0xA6ED [glyphs here!!]      U+E794..U+E795\n *      0xA6F3         [glyphs here!!]      U+E796\n *      0xA6F6..0xA6FE                      U+E797..U+E79F\n *      0xA7C2..0xA7D0                      U+E7A0..U+E7AE\n *      0xA7F2..0xA7FE                      U+E7AF..U+E7BB\n *      0xA8BC         [glyphs here!!]      U+E7C7\n *      0xA8C1..0xA8C4                      U+E7C9..U+E7CC\n *      0xA8EA..0xA8FE                      U+E7CD..U+E7E1\n *      0xA9A1..0xA9A3                      U+E7FE..U+E800\n *      0xA9F0..0xA9FE                      U+E801..U+E80F\n *\n * To GBK part 2 were added:\n * 3. Characters mapped to the Unicode PUA\n *      0xD7FA..0xD7FE                      U+E810..0xE814\n *\n * To GBK part 3 nothing was added.\n *\n * To GBK part 4 were added:\n * 4. 0xFE{50,54..58,5A..60,62..65,68..6B,6E..75,77..7D,80..8F,92..9F}.\n * 5. Characters mapped to the Unicode PUA\n *      0xFE51..0xFE53 [glyphs here!!]      U+E816..U+E818\n *      0xFE59         [glyphs here!!]      U+E81E\n *      0xFE61         [glyphs here!!]      U+E826\n *      0xFE66..0xFE67 [glyphs here!!]      U+E82B..U+E82C\n *      0xFE6C..0xFE6D [glyphs here!!]      U+E831..U+E832\n *      0xFE76         [glyphs here!!]      U+E83B\n *      0xFE7E         [glyphs here!!]      U+E843\n *      0xFE90..0xFE91 [glyphs here!!]      U+E854..U+E855\n *      0xFEA0         [glyphs here!!]      U+E864\n *\n * To GBK part 5 were added:\n * 6. 0xA98A..0xA995.\n * 7. Characters mapped to the Unicode PUA\n *      0xA896..0xA8A0                      U+E7BC..U+E7C6\n *      0xA958                              U+E7E2\n *      0xA95B                              U+E7E3\n *      0xA95D..0xA95F                      U+E7E4..U+E7E6\n *      0xA997..0xA9A0                      U+E7F4..U+E7FD\n *\n * UDA part 1 contains the user-defined characters, mapped to the Unicode PUA\n * U+E000..U+E233 in ascending order.\n *\n * UDA part 2 contains the user-defined characters, mapped to the Unicode PUA\n * U+E234..U+E4C5 in ascending order.\n *\n * UDA part 3 contains the user-defined characters, mapped to the Unicode PUA\n * U+E4C6..U+E765 in ascending order.\n *\n * The four-byte range 0x{81..84}{30..39}{81..FE}{30..39}\n * contains the rest of the Unicode BMP in ascending order.\n *    Start: 0x81308130 = 0x0080\n *    End:   0x8431A439 = 0xFFFF\n *\n * The four-byte range 0x{90..E3}{30..39}{81..FE}{30..39}\n * contains the remaining 16 Unicode planes in Unicode order.\n *    Start: 0x90308130 = 0x010000\n *    End:   0xE3329A35 = 0x10FFFF\n *\n *\n * Unassigned Unicode characters are mapped. For example,\n *   U+173F = 0x8134BF35   (p. 120)\n *   U+2EFF = 0x81398B31   (p. 148)\n *   U+FFFE = 0x8431A438   (p. 283)\n *\n *\n * The Unicode PUA (U+E000..U+F8FF) is mapped as follows:\n *   p. 83..84    0x{AA..AF}{A1..FE}                  U+E000..U+E233\n *   p. 85..87    0x{F8..FE}{A1..FE}                  U+E234..U+E4C5\n *   p. 88..90    0x{A1..A7}{40..7E,80..A0}           U+E4C6..U+E765\n *   p. 10        0xA2AB..0xA2B0                      U+E766..U+E76B\n *   p. 255       0x8336C739                          U+E76C\n *   p. 10        0xA2E4                              U+E76D\n *   p. 10        0xA2EF..0xA2F0                      U+E76E..U+E76F\n *   p. 10        0xA2FD..0xA2FE                      U+E770..U+E771\n *   p. 11        0xA4F4..0xA4FE                      U+E772..U+E77C\n *   p. 11        0xA5F7..0xA5FE                      U+E77D..U+E784\n *   p. 11        0xA6B9..0xA6C0                      U+E785..U+E78C\n *   p. 11        0xA6D9..0xA6DF [glyphs here!!]      U+E78D..U+E793\n *   p. 11        0xA6EC..0xA6ED [glyphs here!!]      U+E794..U+E795\n *   p. 11        0xA6F3 [glyphs here!!]              U+E796\n *   p. 11        0xA6F6..0xA6FE                      U+E797..U+E79F\n *   p. 12        0xA7C2..0xA7D0                      U+E7A0..U+E7AE\n *   p. 12        0xA7F2..0xA7FE                      U+E7AF..U+E7BB\n *   p. 82        0xA896..0xA8A0                      U+E7BC..U+E7C6\n *   p. 12        0x8135F437                          U+E7C7\n *   p. 255       0x8336C830                          U+E7C8\n *   p. 12        0xA8C1..0xA8C4                      U+E7C9..U+E7CC\n *   p. 12        0xA8EA..0xA8FE                      U+E7CD..U+E7E1\n *   p. 82        0xA958                              U+E7E2\n *   p. 82        0xA95B                              U+E7E3\n *   p. 82        0xA95D..0xA95F                      U+E7E4..U+E7E6\n *   p. 255       0x8336C831..0x8336C933              U+E7E7..U+E7F3\n *   p. 82        0xA997..0xA9A0                      U+E7F4..U+E7FD\n *   p. 12        0xA9A1..0xA9A3                      U+E7FE..U+E800\n *   p. 12        0xA9F0..0xA9FE                      U+E801..U+E80F\n *   p. 26        0xD7FA..0xD7FE                      U+E810..0xE814\n *   p. 255       0x8336C934                          U+E815\n *   p. 81        0xFE51..0xFE53 [glyphs here!!]      U+E816..U+E818\n *   p. 255       0x8336C935..0x8336C939              U+E819..U+E81D\n *   p. 81        0xFE59 [glyphs here!!]              U+E81E\n *   p. 255       0x8336CA30..0x8336CA36              U+E81F..U+E825\n *   p. 81        0xFE61 [glyphs here!!]              U+E826\n *   p. 255       0x8336CA37..0x8336CB30              U+E827..U+E82A\n *   p. 81        0xFE66..0xFE67 [glyphs here!!]      U+E82B..U+E82C\n *   p. 255       0x8336CB31..0x8336CB34              U+E82D..U+E830\n *   p. 81        0xFE6C..0xFE6D [glyphs here!!]      U+E831..U+E832\n *   p. 255       0x8336CB35..0x8336CC32              U+E833..U+E83A\n *   p. 81        0xFE76 [glyphs here!!]              U+E83B\n *   p. 255       0x8336CC33..0x8336CC39              U+E83C..U+E842\n *   p. 81        0xFE7E [glyphs here!!]              U+E843\n *   p. 255       0x8336CD30..0x8336CE35              U+E844..U+E853\n *   p. 81        0xFE90..0xFE91 [glyphs here!!]      U+E854..U+E855\n *   p. 255       0x8336CE36..0x8336CF39              U+E856..U+E863\n *   p. 81        0xFEA0 [glyphs here!!]              U+E864\n *   p. 255..276  0x8336D030..0x84308130              U+E865..U+F8FF\n *\n *\n * The Unicode surrogate area (U+D800..U+DFFF) is not mapped. (p. 255)\n *\n */\n\n#include \"gb18030ext.h\"\n#include \"gb18030uni.h\"\n\nstatic int\ngb18030_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  int ret;\n\n  /* Code set 0 (ASCII) */\n  if (*s < 0x80)\n    return ascii_mbtowc(conv,pwc,s,n);\n\n  /* Code set 1 (GBK extended) */\n  ret = gbk_mbtowc(conv,pwc,s,n);\n  if (ret != RET_ILSEQ)\n    return ret;\n\n  ret = gb18030ext_mbtowc(conv,pwc,s,n);\n  if (ret != RET_ILSEQ)\n    return ret;\n\n  /* Code set 2 (remainder of Unicode U+0000..U+FFFF), including\n     User-defined characters, two-byte part of range U+E766..U+E864 */\n  ret = gb18030uni_mbtowc(conv,pwc,s,n);\n  if (ret != RET_ILSEQ)\n    return ret;\n  /* User-defined characters range U+E000..U+E765 */\n  {\n    unsigned char c1 = s[0];\n    if ((c1 >= 0xaa && c1 <= 0xaf) || (c1 >= 0xf8 && c1 <= 0xfe)) {\n      if (n >= 2) {\n        unsigned char c2 = s[1];\n        if (c2 >= 0xa1 && c2 <= 0xfe) {\n          *pwc = 0xe000 + 94 * (c1 >= 0xf8 ? c1 - 0xf2 : c1 - 0xaa) + (c2 - 0xa1);\n          return 2;\n        }\n      } else\n        return RET_TOOFEW(0);\n    } else if (c1 >= 0xa1 && c1 <= 0xa7) {\n      if (n >= 2) {\n        unsigned char c2 = s[1];\n        if (c2 >= 0x40 && c2 <= 0xa1 && c2 != 0x7f) {\n          *pwc = 0xe4c6 + 96 * (c1 - 0xa1) + c2 - (c2 >= 0x80 ? 0x41 : 0x40);\n          return 2;\n        }\n      } else\n        return RET_TOOFEW(0);\n    }\n  }\n\n  /* Code set 3 (Unicode U+10000..U+10FFFF) */\n  {\n    unsigned char c1 = s[0];\n    if (c1 >= 0x90 && c1 <= 0xe3) {\n      if (n >= 2) {\n        unsigned char c2 = s[1];\n        if (c2 >= 0x30 && c2 <= 0x39) {\n          if (n >= 3) {\n            unsigned char c3 = s[2];\n            if (c3 >= 0x81 && c3 <= 0xfe) {\n              if (n >= 4) {\n                unsigned char c4 = s[3];\n                if (c4 >= 0x30 && c4 <= 0x39) {\n                  unsigned int i = (((c1 - 0x90) * 10 + (c2 - 0x30)) * 126 + (c3 - 0x81)) * 10 + (c4 - 0x30);\n                  if (i >= 0 && i < 0x100000) {\n                    *pwc = (ucs4_t) (0x10000 + i);\n                    return 4;\n                  }\n                }\n                return RET_ILSEQ;\n              }\n              return RET_TOOFEW(0);\n            }\n            return RET_ILSEQ;\n          }\n          return RET_TOOFEW(0);\n        }\n        return RET_ILSEQ;\n      }\n      return RET_TOOFEW(0);\n    }\n    return RET_ILSEQ;\n  }\n}\n\nstatic const unsigned short gb18030_pua2charset[31*3] = {\n/* Unicode range   GB18030 range */\n  0xe766, 0xe76b,  0xa2ab, /*.. 0xa2b0, */\n  0xe76d, 0xe76d,  0xa2e4,\n  0xe76e, 0xe76f,  0xa2ef, /*.. 0xa2f0, */\n  0xe770, 0xe771,  0xa2fd, /*.. 0xa2fe, */\n  0xe772, 0xe77c,  0xa4f4, /*.. 0xa4fe, */\n  0xe77d, 0xe784,  0xa5f7, /*.. 0xa5fe, */\n  0xe785, 0xe78c,  0xa6b9, /*.. 0xa6c0, */\n  0xe78d, 0xe793,  0xa6d9, /*.. 0xa6df, */\n  0xe794, 0xe795,  0xa6ec, /*.. 0xa6ed, */\n  0xe796, 0xe796,  0xa6f3,\n  0xe797, 0xe79f,  0xa6f6, /*.. 0xa6fe, */\n  0xe7a0, 0xe7ae,  0xa7c2, /*.. 0xa7d0, */\n  0xe7af, 0xe7bb,  0xa7f2, /*.. 0xa7fe, */\n  0xe7bc, 0xe7c6,  0xa896, /*.. 0xa8a0, */\n  0xe7c9, 0xe7cc,  0xa8c1, /*.. 0xa8c4, */\n  0xe7cd, 0xe7e1,  0xa8ea, /*.. 0xa8fe, */\n  0xe7e2, 0xe7e2,  0xa958,\n  0xe7e3, 0xe7e3,  0xa95b,\n  0xe7e4, 0xe7e6,  0xa95d, /*.. 0xa95f, */\n  0xe7f4, 0xe800,  0xa997, /*.. 0xa9a3, */\n  0xe801, 0xe80f,  0xa9f0, /*.. 0xa9fe, */\n  0xe810, 0xe814,  0xd7fa, /*.. 0xd7fe, */\n  0xe816, 0xe818,  0xfe51, /*.. 0xfe53, */\n  0xe81e, 0xe81e,  0xfe59,\n  0xe826, 0xe826,  0xfe61,\n  0xe82b, 0xe82c,  0xfe66, /*.. 0xfe67, */\n  0xe831, 0xe832,  0xfe6c, /*.. 0xfe6d, */\n  0xe83b, 0xe83b,  0xfe76,\n  0xe843, 0xe843,  0xfe7e,\n  0xe854, 0xe855,  0xfe90, /*.. 0xfe91, */\n  0xe864, 0xe864,  0xfea0,\n};\n\nstatic int\ngb18030_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  int ret;\n\n  /* Code set 0 (ASCII) */\n  ret = ascii_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 1 (GBK extended) */\n  ret = gbk_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  ret = gb18030ext_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 2 (remainder of Unicode U+0000..U+FFFF) */\n  if (wc >= 0xe000 && wc <= 0xe864) {\n    if (n >= 2) {\n      if (wc < 0xe766) {\n        /* User-defined characters range U+E000..U+E765 */\n        if (wc < 0xe4c6) {\n          unsigned int i = wc - 0xe000;\n          r[1] = (i % 94) + 0xa1; i = i / 94;\n          r[0] = (i < 6 ? i + 0xaa : i + 0xf2);\n          return 2;\n        } else {\n          unsigned int i = wc - 0xe4c6;\n          r[0] = (i / 96) + 0xa1; i = i % 96;\n          r[1] = i + (i >= 0x3f ? 0x41 : 0x40);\n          return 2;\n        }\n      } else {\n        /* User-defined characters, two-byte part of range U+E766..U+E864 */\n        unsigned int k1 = 0;\n        unsigned int k2 = 31;\n        /* Invariant: We know that if wc occurs in Unicode interval in\n           gb18030_pua2charset, it does so at a k with  k1 <= k < k2. */\n        while (k1 < k2) {\n          unsigned int k = (k1 + k2) / 2;\n          if (wc < gb18030_pua2charset[k*3+0])\n            k2 = k;\n          else if (wc > gb18030_pua2charset[k*3+1])\n            k1 = k + 1;\n          else {\n            unsigned short c =\n              gb18030_pua2charset[k*3+2] + (wc - gb18030_pua2charset[k*3+0]);\n            r[0] = (c >> 8);\n            r[1] = (c & 0xff);\n            return 2;\n          }\n        }\n      }\n    } else\n      return RET_TOOSMALL;\n  }\n  ret = gb18030uni_wctomb(conv,r,wc,n);\n  if (ret != RET_ILUNI)\n    return ret;\n\n  /* Code set 3 (Unicode U+10000..U+10FFFF) */\n  if (n >= 4) {\n    if (wc >= 0x10000 && wc < 0x110000) {\n      unsigned int i = wc - 0x10000;\n      r[3] = (i % 10) + 0x30; i = i / 10;\n      r[2] = (i % 126) + 0x81; i = i / 126;\n      r[1] = (i % 10) + 0x30; i = i / 10;\n      r[0] = i + 0x90;\n      return 4;\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/gb18030ext.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2005, 2011, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GB18030 two-byte extension\n */\n\nstatic const unsigned short gb18030ext_2uni_pagea9[13] = {\n  /* 0xa9 */\n  0x303e, 0x2ff0, 0x2ff1, 0x2ff2, 0x2ff3, 0x2ff4, 0x2ff5, 0x2ff6,\n  0x2ff7, 0x2ff8, 0x2ff9, 0x2ffa, 0x2ffb,\n};\nstatic const unsigned int gb18030ext_2uni_pagefe[96] = {\n  /* 0xfe */\n   0xfffd,  0xfffd,  0xfffd,  0xfffd,  0xfffd,  0xfffd,  0xfffd,  0xfffd,\n   0xfffd,  0xfffd,  0xfffd,  0xfffd,  0xfffd,  0xfffd,  0xfffd,  0xfffd,\n   0x2e81, 0x20087, 0x20089, 0x200cc,  0x2e84,  0x3473,  0x3447,  0x2e88,\n   0x2e8b,  0x9fb4,  0x359e,  0x361a,  0x360e,  0x2e8c,  0x2e97,  0x396e,\n   0x3918,  0x9fb5,  0x39cf,  0x39df,  0x3a73,  0x39d0,  0x9fb6,  0x9fb7,\n   0x3b4e,  0x3c6e,  0x3ce0,  0x2ea7, 0x215d7,  0x9fb8,  0x2eaa,  0x4056,\n   0x415f,  0x2eae,  0x4337,  0x2eb3,  0x2eb6,  0x2eb7, 0x2298f,  0x43b1,\n   0x43ac,  0x2ebb,  0x43dd,  0x44d6,  0x4661,  0x464c,  0x9fb9,  0x4723,\n   0x4729,  0x477c,  0x478d,  0x2eca,  0x4947,  0x497a,  0x497d,  0x4982,\n   0x4983,  0x4985,  0x4986,  0x499f,  0x499b,  0x49b7,  0x49b6,  0x9fba,\n  0x241fe,  0x4ca3,  0x4c9f,  0x4ca0,  0x4ca1,  0x4c77,  0x4ca2,  0x4d13,\n   0x4d14,  0x4d15,  0x4d16,  0x4d17,  0x4d18,  0x4d19,  0x4dae,  0x9fbb,\n};\n\nstatic int\ngb18030ext_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 == 0xa2) || (c1 >= 0xa4 && c1 <= 0xa9) || (c1 == 0xd7) || (c1 == 0xfe)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0x80 && c2 < 0xff)) {\n        unsigned int i = 190 * (c1 - 0x81) + (c2 - (c2 >= 0x80 ? 0x41 : 0x40));\n        unsigned int wc = 0xfffd;\n        switch (c1) {\n          case 0xa2:\n            if (i >= 6376 && i <= 6381) /* 0xA2AB..0xA2B0 */\n              wc = 0xe766 + (i - 6376);\n            else if (i == 6432) /* 0xA2E3 */\n              wc = 0x20ac;\n            else if (i == 6433) /* 0xA2E4 */\n              wc = 0xe76d;\n            else if (i >= 6444 && i <= 6445) /* 0xA2EF..0xA2F0 */\n              wc = 0xe76e + (i - 6444);\n            else if (i >= 6458 && i <= 6459) /* 0xA2FD..0xA2FE */\n              wc = 0xe770 + (i - 6458);\n            break;\n          case 0xa4:\n            if (i >= 6829 && i <= 6839) /* 0xA4F4..0xA4FE */\n              wc = 0xe772 + (i - 6829);\n            break;\n          case 0xa5:\n            if (i >= 7022 && i <= 7029) /* 0xA5F7..0xA5FE */\n              wc = 0xe77d + (i - 7022);\n            break;\n          case 0xa6:\n            if (i >= 7150 && i <= 7157) /* 0xA6B9..0xA6C0 */\n              wc = 0xe785 + (i - 7150);\n            else if (i >= 7183 && i <= 7184) /* 0xA6DA..0xA6DB */\n              wc = 0xfe12 - (i - 7183);\n            else if (i >= 7182 && i <= 7190) /* 0xA6D9..0xA6DF */\n              wc = 0xfe10 + (i - 7182);\n            else if (i >= 7201 && i <= 7202) /* 0xA6EC..0xA6ED */\n              wc = 0xfe17 + (i - 7201);\n            else if (i == 7208) /* 0xA6F3 */\n              wc = 0xfe19;\n            else if (i >= 7211 && i <= 7219) /* 0xA6F6..0xA6FE */\n              wc = 0xe797 + (i - 7211);\n            break;\n          case 0xa7:\n            if (i >= 7349 && i <= 7363) /* 0xA7C2..0xA7D0 */\n              wc = 0xe7a0 + (i - 7349);\n            else if (i >= 7397 && i <= 7409) /* 0xA7F2..0xA7FE */\n              wc = 0xe7af + (i - 7397);\n            break;\n          case 0xa8:\n            if (i >= 7495 && i <= 7505) /* 0xA896..0xA8A0 */\n              wc = 0xe7bc + (i - 7495);\n            else if (i == 7533) /* 0xA8BC */\n              wc = 0x1e3f;\n            else if (i == 7536) /* 0xA8BF */\n              wc = 0x01f9;\n            else if (i >= 7538 && i <= 7541) /* 0xA8C1..0xA8C4 */\n              wc = 0xe7c9 + (i - 7538);\n            else if (i >= 7579 && i <= 7599) /* 0xA8EA..0xA8FE */\n              wc = 0xe7cd + (i - 7579);\n            break;\n          case 0xa9:\n            if (i == 7624) /* 0xA958 */\n              wc = 0xe7e2;\n            else if (i == 7627) /* 0xA95B */\n              wc = 0xe7e3;\n            else if (i >= 7629 && i <= 7631) /* 0xA95D..0xA95F */\n              wc = 0xe7e4 + (i - 7629);\n            else if (i >= 7672 && i < 7685) /* 0xA989..0xA995 */\n              wc = gb18030ext_2uni_pagea9[i-7672];\n            else if (i >= 7686 && i <= 7698) /* 0xA997..0xA9A3 */\n              wc = 0xe7f4 + (i - 7686);\n            else if (i >= 7775 && i <= 7789) /* 0xA9F0..0xA9FE */\n              wc = 0xe801 + (i - 7775);\n            break;\n          case 0xd7:\n            if (i >= 16525 && i <= 16529) /* 0xD7FA..0xD7FE */\n              wc = 0xe810 + (i - 16525);\n            break;\n          case 0xfe:\n            if (i < 23846)\n              wc = gb18030ext_2uni_pagefe[i-23750];\n            break;\n          default:\n            break;\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short gb18030ext_page2e[80] = {\n  0x0000, 0xfe50, 0x0000, 0x0000, 0xfe54, 0x0000, 0x0000, 0x0000, /*0x80-0x87*/\n  0xfe57, 0x0000, 0x0000, 0xfe58, 0xfe5d, 0x0000, 0x0000, 0x0000, /*0x88-0x8f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe5e, /*0x90-0x97*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x98-0x9f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe6b, /*0xa0-0xa7*/\n  0x0000, 0x0000, 0xfe6e, 0x0000, 0x0000, 0x0000, 0xfe71, 0x0000, /*0xa8-0xaf*/\n  0x0000, 0x0000, 0x0000, 0xfe73, 0x0000, 0x0000, 0xfe74, 0xfe75, /*0xb0-0xb7*/\n  0x0000, 0x0000, 0x0000, 0xfe79, 0x0000, 0x0000, 0x0000, 0x0000, /*0xb8-0xbf*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0xc0-0xc7*/\n  0x0000, 0x0000, 0xfe84, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0xc8-0xcf*/\n};\nstatic const unsigned short gb18030ext_page2f[16] = {\n  0xa98a, 0xa98b, 0xa98c, 0xa98d, 0xa98e, 0xa98f, 0xa990, 0xa991, /*0xf0-0xf7*/\n  0xa992, 0xa993, 0xa994, 0xa995, 0x0000, 0x0000, 0x0000, 0x0000, /*0xf8-0xff*/\n};\nstatic const unsigned short gb18030ext_page34[56] = {\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe56, /*0x40-0x47*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x48-0x4f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x50-0x57*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x58-0x5f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x60-0x67*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x68-0x6f*/\n  0x0000, 0x0000, 0x0000, 0xfe55, 0x0000, 0x0000, 0x0000, 0x0000, /*0x70-0x77*/\n};\nstatic const unsigned short gb18030ext_page36[24] = {\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe5c, 0x0000, /*0x08-0x0f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x10-0x17*/\n  0x0000, 0x0000, 0xfe5b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x18-0x1f*/\n};\nstatic const unsigned short gb18030ext_page39[24] = {\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe62, /*0xc8-0xcf*/\n  0xfe65, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0xd0-0xd7*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe63, /*0xd8-0xdf*/\n};\nstatic const unsigned short gb18030ext_page43[56] = {\n  0x0000, 0x0000, 0x0000, 0x0000, 0xfe78, 0x0000, 0x0000, 0x0000, /*0xa8-0xaf*/\n  0x0000, 0xfe77, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0xb0-0xb7*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0xb8-0xbf*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0xc0-0xc7*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0xc8-0xcf*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0xd0-0xd7*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe7a, 0x0000, 0x0000, /*0xd8-0xdf*/\n};\nstatic const unsigned short gb18030ext_page46[32] = {\n  0x0000, 0x0000, 0x0000, 0x0000, 0xfe7d, 0x0000, 0x0000, 0x0000, /*0x48-0x4f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x50-0x57*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x58-0x5f*/\n  0x0000, 0xfe7c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x60-0x67*/\n};\nstatic const unsigned short gb18030ext_page47_1[16] = {\n  0x0000, 0x0000, 0x0000, 0xfe80, 0x0000, 0x0000, 0x0000, 0x0000, /*0x20-0x27*/\n  0x0000, 0xfe81, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x28-0x2f*/\n};\nstatic const unsigned short gb18030ext_page47_2[24] = {\n  0x0000, 0x0000, 0x0000, 0x0000, 0xfe82, 0x0000, 0x0000, 0x0000, /*0x78-0x7f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x80-0x87*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe83, 0x0000, 0x0000, /*0x88-0x8f*/\n};\nstatic const unsigned short gb18030ext_page49[120] = {\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe85, /*0x40-0x47*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x48-0x4f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x50-0x57*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x58-0x5f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x60-0x67*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x68-0x6f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x70-0x77*/\n  0x0000, 0x0000, 0xfe86, 0x0000, 0x0000, 0xfe87, 0x0000, 0x0000, /*0x78-0x7f*/\n  0x0000, 0x0000, 0xfe88, 0xfe89, 0x0000, 0xfe8a, 0xfe8b, 0x0000, /*0x80-0x87*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x88-0x8f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x90-0x97*/\n  0x0000, 0x0000, 0x0000, 0xfe8d, 0x0000, 0x0000, 0x0000, 0xfe8c, /*0x98-0x9f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0xa0-0xa7*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0xa8-0xaf*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe8f, 0xfe8e, /*0xb0-0xb7*/\n};\nstatic const unsigned short gb18030ext_page4c[56] = {\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe96, /*0x70-0x77*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x78-0x7f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x80-0x87*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x88-0x8f*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x90-0x97*/\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xfe93, /*0x98-0x9f*/\n  0xfe94, 0xfe95, 0xfe97, 0xfe92, 0x0000, 0x0000, 0x0000, 0x0000, /*0xa0-0xa7*/\n};\nstatic const unsigned short gb18030ext_page4d[16] = {\n  0x0000, 0x0000, 0x0000, 0xfe98, 0xfe99, 0xfe9a, 0xfe9b, 0xfe9c, /*0x10-0x17*/\n  0xfe9d, 0xfe9e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x18-0x1f*/\n};\nstatic const unsigned short gb18030ext_page9f[16] = {\n  0x0000, 0x0000, 0x0000, 0x0000, 0xfe59, 0xfe61, 0xfe66, 0xfe67, /*0xb0-0xb7*/\n  0xfe6d, 0xfe7e, 0xfe90, 0xfea0, 0x0000, 0x0000, 0x0000, 0x0000, /*0xb8-0xbf*/\n};\nstatic const unsigned short gb18030ext_pagefe[16] = {\n  0xa6d9, 0xa6db, 0xa6da, 0xa6dc, 0xa6dd, 0xa6de, 0xa6df, 0xa6ec, /*0x10-0x17*/\n  0xa6ed, 0xa6f3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /*0x18-0x1f*/\n};\n\nstatic int\ngb18030ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    unsigned short c = 0;\n    if (wc == 0x01f9)\n      c = 0xa8bf;\n    else if (wc == 0x1e3f)\n      c = 0xa8bc;\n    else if (wc == 0x20ac)\n      c = 0xa2e3;\n    else if (wc >= 0x2e80 && wc < 0x2ed0)\n      c = gb18030ext_page2e[wc-0x2e80];\n    else if (wc >= 0x2ff0 && wc < 0x3000)\n      c = gb18030ext_page2f[wc-0x2ff0];\n    else if (wc == 0x303e)\n      c = 0xa989;\n    else if (wc >= 0x3440 && wc < 0x3478)\n      c = gb18030ext_page34[wc-0x3440];\n    else if (wc == 0x359e)\n      c = 0xfe5a;\n    else if (wc >= 0x3608 && wc < 0x3620)\n      c = gb18030ext_page36[wc-0x3608];\n    else if (wc == 0x3918)\n      c = 0xfe60;\n    else if (wc == 0x396e)\n      c = 0xfe5f;\n    else if (wc >= 0x39c8 && wc < 0x39e0)\n      c = gb18030ext_page39[wc-0x39c8];\n    else if (wc == 0x3a73)\n      c = 0xfe64;\n    else if (wc == 0x3b4e)\n      c = 0xfe68;\n    else if (wc == 0x3c6e)\n      c = 0xfe69;\n    else if (wc == 0x3ce0)\n      c = 0xfe6a;\n    else if (wc == 0x4056)\n      c = 0xfe6f;\n    else if (wc == 0x415f)\n      c = 0xfe70;\n    else if (wc == 0x4337)\n      c = 0xfe72;\n    else if (wc >= 0x43a8 && wc < 0x43e0)\n      c = gb18030ext_page43[wc-0x43a8];\n    else if (wc == 0x44d6)\n      c = 0xfe7b;\n    else if (wc >= 0x4648 && wc < 0x4668)\n      c = gb18030ext_page46[wc-0x4648];\n    else if (wc >= 0x4720 && wc < 0x4730)\n      c = gb18030ext_page47_1[wc-0x4720];\n    else if (wc >= 0x4778 && wc < 0x4790)\n      c = gb18030ext_page47_2[wc-0x4778];\n    else if (wc >= 0x4940 && wc < 0x49b8)\n      c = gb18030ext_page49[wc-0x4940];\n    else if (wc >= 0x4c70 && wc < 0x4ca8)\n      c = gb18030ext_page4c[wc-0x4c70];\n    else if (wc >= 0x4d10 && wc < 0x4d20)\n      c = gb18030ext_page4d[wc-0x4d10];\n    else if (wc == 0x4dae)\n      c = 0xfe9f;\n    else if (wc >= 0x9fb4 && wc < 0x9fbc)\n      c = gb18030ext_page9f[wc-0x9fb0];\n    else if (wc >= 0xfe10 && wc < 0xfe1a)\n      c = gb18030ext_pagefe[wc-0xfe10];\n    else if (wc == 0x20087)\n      c = 0xfe51;\n    else if (wc == 0x20089)\n      c = 0xfe52;\n    else if (wc == 0x200cc)\n      c = 0xfe53;\n    else if (wc == 0x215d7)\n      c = 0xfe6c;\n    else if (wc == 0x2298f)\n      c = 0xfe76;\n    else if (wc == 0x241fe)\n      c = 0xfe91;\n    if (c != 0) {\n      r[0] = (c >> 8); r[1] = (c & 0xff);\n      return 2;\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/gb18030uni.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2005, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GB18030 four-byte extension\n */\n\nstatic const unsigned short gb18030uni_charset2uni_ranges[412] = {\n  0x0000, 0x0023,  0x0024, 0x0025,  0x0026, 0x002c,  0x002d, 0x0031,\n  0x0032, 0x0050,  0x0051, 0x0058,  0x0059, 0x005e,  0x005f, 0x005f,\n  0x0060, 0x0063,  0x0064, 0x0066,  0x0067, 0x0067,  0x0068, 0x0068,\n  0x0069, 0x006c,  0x006d, 0x007d,  0x007e, 0x0084,  0x0085, 0x0093,\n  0x0094, 0x00ab,  0x00ac, 0x00ae,  0x00af, 0x00b2,  0x00b3, 0x00cf,\n  0x00d0, 0x0131,  0x0132, 0x0132,  0x0133, 0x0133,  0x0134, 0x0134,\n  0x0135, 0x0135,  0x0136, 0x0136,  0x0137, 0x0137,  0x0138, 0x0138,\n  0x0139, 0x0154,  0x0155, 0x01ab,  0x01ac, 0x01ba,  0x01bb, 0x021f,\n  0x0220, 0x0220,  0x0221, 0x022d,  0x022e, 0x02e4,  0x02e5, 0x02e5,\n  0x02e6, 0x02ec,  0x02ed, 0x02ed,  0x02ee, 0x0324,  0x0325, 0x0332,\n  0x0333, 0x0333,  0x0334, 0x1ef1,  0x1ef2, 0x1ef3,  0x1ef4, 0x1ef4,\n  0x1ef5, 0x1ef6,  0x1ef7, 0x1efd,  0x1efe, 0x1f06,  0x1f07, 0x1f07,\n  0x1f08, 0x1f08,  0x1f09, 0x1f0d,  0x1f0e, 0x1f7d,  0x1f7e, 0x1fd3,\n  0x1fd4, 0x1fd4,  0x1fd5, 0x1fd7,  0x1fd8, 0x1fe3,  0x1fe4, 0x1fed,\n  0x1fee, 0x202b,  0x202c, 0x202f,  0x2030, 0x2045,  0x2046, 0x2047,\n  0x2048, 0x20b5,  0x20b6, 0x20bb,  0x20bc, 0x20bc,  0x20bd, 0x20bf,\n  0x20c0, 0x20c3,  0x20c4, 0x20c5,  0x20c6, 0x20c7,  0x20c8, 0x20c8,\n  0x20c9, 0x20c9,  0x20ca, 0x20cb,  0x20cc, 0x20d0,  0x20d1, 0x20d5,\n  0x20d6, 0x20df,  0x20e0, 0x20e2,  0x20e3, 0x20e7,  0x20e8, 0x20f4,\n  0x20f5, 0x20f6,  0x20f7, 0x20fc,  0x20fd, 0x2121,  0x2122, 0x2124,\n  0x2125, 0x212f,  0x2130, 0x2148,  0x2149, 0x219a,  0x219b, 0x22e7,\n  0x22e8, 0x22f1,  0x22f2, 0x2355,  0x2356, 0x2359,  0x235a, 0x2366,\n  0x2367, 0x2369,  0x236a, 0x2373,  0x2374, 0x2383,  0x2384, 0x238b,\n  0x238c, 0x2393,  0x2394, 0x2396,  0x2397, 0x2398,  0x2399, 0x23aa,\n  0x23ab, 0x23c9,  0x23ca, 0x23cb,  0x23cc, 0x2401,  0x2402, 0x2402,\n  0x2403, 0x2c40,  0x2c41, 0x2c42,  0x2c43, 0x2c45,  0x2c46, 0x2c47,\n  0x2c48, 0x2c51,  0x2c52, 0x2c60,  0x2c61, 0x2c62,  0x2c63, 0x2c65,\n  0x2c66, 0x2c69,  0x2c6a, 0x2c6b,  0x2c6c, 0x2c6e,  0x2c6f, 0x2c7c,\n  0x2c7d, 0x2da1,  0x2da2, 0x2da5,  0x2da6, 0x2da6,  0x2da7, 0x2dab,\n  0x2dac, 0x2dad,  0x2dae, 0x2dc1,  0x2dc2, 0x2dc3,  0x2dc4, 0x2dca,\n  0x2dcb, 0x2dcc,  0x2dcd, 0x2dd1,  0x2dd2, 0x2dd7,  0x2dd8, 0x2ecd,\n  0x2ece, 0x2ed4,  0x2ed5, 0x2f45,  0x2f46, 0x302f,  0x3030, 0x303b,\n  0x303c, 0x303d,  0x303e, 0x305f,  0x3060, 0x3068,  0x3069, 0x306a,\n  0x306b, 0x306c,  0x306d, 0x30dd,  0x30de, 0x3108,  0x3109, 0x3232,\n  0x3233, 0x32a1,  0x32a2, 0x32ac,  0x32ad, 0x35a9,  0x35aa, 0x35fe,\n  0x35ff, 0x365e,  0x365f, 0x366c,  0x366d, 0x36ff,  0x3700, 0x37d9,\n  0x37da, 0x38f8,  0x38f9, 0x3969,  0x396a, 0x3cde,  0x3cdf, 0x3de6,\n  0x3de7, 0x3fbd,  0x3fbe, 0x4031,  0x4032, 0x4035,  0x4036, 0x4060,\n  0x4061, 0x4158,  0x4159, 0x42cd,  0x42ce, 0x42e1,  0x42e2, 0x43a2,\n  0x43a3, 0x43a7,  0x43a8, 0x43f9,  0x43fa, 0x4409,  0x440a, 0x45c2,\n  0x45c3, 0x45f4,  0x45f5, 0x45f6,  0x45f7, 0x45fa,  0x45fb, 0x45fb,\n  0x45fc, 0x460f,  0x4610, 0x4612,  0x4613, 0x4628,  0x4629, 0x48e7,\n  0x48e8, 0x490e,  0x490f, 0x497d,  0x497e, 0x4a11,  0x4a12, 0x4a62,\n  0x4a63, 0x82bc,\n                   0x82bd, 0x82bd,  0x82be, 0x82be,  0x82bf, 0x82cb,\n  0x82cc, 0x82cc,  0x82cd, 0x82d1,  0x82d2, 0x82d8,  0x82d9, 0x82dc,\n  0x82dd, 0x82e0,  0x82e1, 0x82e8,  0x82e9, 0x82ef,  0x82f0, 0x82ff,\n  0x8300, 0x830d,\n                   0x830e, 0x93d4,  0x93d5, 0x9420,  0x9421, 0x943b,\n  0x943c, 0x948c,  0x948d, 0x9495,  0x9496, 0x94af,  0x94b0, 0x94b0,\n  0x94b1, 0x94b1,  0x94b2, 0x94b4,  0x94b5, 0x94ba,  0x94bb, 0x94bb,\n  0x94bc, 0x94bd,  0x94be, 0x98c3,  0x98c4, 0x98c4,  0x98c5, 0x98c8,\n  0x98c9, 0x98c9,  0x98ca, 0x98ca,  0x98cb, 0x98cb,  0x98cc, 0x9960,\n  0x9961, 0x99e1,  0x99e2, 0x99fb\n};\n\nstatic const unsigned short gb18030uni_uni2charset_ranges[412] = {\n  0x0080, 0x00a3,  0x00a5, 0x00a6,  0x00a9, 0x00af,  0x00b2, 0x00b6,\n  0x00b8, 0x00d6,  0x00d8, 0x00df,  0x00e2, 0x00e7,  0x00eb, 0x00eb,\n  0x00ee, 0x00f1,  0x00f4, 0x00f6,  0x00f8, 0x00f8,  0x00fb, 0x00fb,\n  0x00fd, 0x0100,  0x0102, 0x0112,  0x0114, 0x011a,  0x011c, 0x012a,\n  0x012c, 0x0143,  0x0145, 0x0147,  0x0149, 0x014c,  0x014e, 0x016a,\n  0x016c, 0x01cd,  0x01cf, 0x01cf,  0x01d1, 0x01d1,  0x01d3, 0x01d3,\n  0x01d5, 0x01d5,  0x01d7, 0x01d7,  0x01d9, 0x01d9,  0x01db, 0x01db,\n  0x01dd, 0x01f8,  0x01fa, 0x0250,  0x0252, 0x0260,  0x0262, 0x02c6,\n  0x02c8, 0x02c8,  0x02cc, 0x02d8,  0x02da, 0x0390,  0x03a2, 0x03a2,\n  0x03aa, 0x03b0,  0x03c2, 0x03c2,  0x03ca, 0x0400,  0x0402, 0x040f,\n  0x0450, 0x0450,  0x0452, 0x200f,  0x2011, 0x2012,  0x2017, 0x2017,\n  0x201a, 0x201b,  0x201e, 0x2024,  0x2027, 0x202f,  0x2031, 0x2031,\n  0x2034, 0x2034,  0x2036, 0x203a,  0x203c, 0x20ab,  0x20ad, 0x2102,\n  0x2104, 0x2104,  0x2106, 0x2108,  0x210a, 0x2115,  0x2117, 0x2120,\n  0x2122, 0x215f,  0x216c, 0x216f,  0x217a, 0x218f,  0x2194, 0x2195,\n  0x219a, 0x2207,  0x2209, 0x220e,  0x2210, 0x2210,  0x2212, 0x2214,\n  0x2216, 0x2219,  0x221b, 0x221c,  0x2221, 0x2222,  0x2224, 0x2224,\n  0x2226, 0x2226,  0x222c, 0x222d,  0x222f, 0x2233,  0x2238, 0x223c,\n  0x223e, 0x2247,  0x2249, 0x224b,  0x224d, 0x2251,  0x2253, 0x225f,\n  0x2262, 0x2263,  0x2268, 0x226d,  0x2270, 0x2294,  0x2296, 0x2298,\n  0x229a, 0x22a4,  0x22a6, 0x22be,  0x22c0, 0x2311,  0x2313, 0x245f,\n  0x246a, 0x2473,  0x249c, 0x24ff,  0x254c, 0x254f,  0x2574, 0x2580,\n  0x2590, 0x2592,  0x2596, 0x259f,  0x25a2, 0x25b1,  0x25b4, 0x25bb,\n  0x25be, 0x25c5,  0x25c8, 0x25ca,  0x25cc, 0x25cd,  0x25d0, 0x25e1,\n  0x25e6, 0x2604,  0x2607, 0x2608,  0x260a, 0x263f,  0x2641, 0x2641,\n  0x2643, 0x2e80,  0x2e82, 0x2e83,  0x2e85, 0x2e87,  0x2e89, 0x2e8a,\n  0x2e8d, 0x2e96,  0x2e98, 0x2ea6,  0x2ea8, 0x2ea9,  0x2eab, 0x2ead,\n  0x2eaf, 0x2eb2,  0x2eb4, 0x2eb5,  0x2eb8, 0x2eba,  0x2ebc, 0x2ec9,\n  0x2ecb, 0x2fef,  0x2ffc, 0x2fff,  0x3004, 0x3004,  0x3018, 0x301c,\n  0x301f, 0x3020,  0x302a, 0x303d,  0x303f, 0x3040,  0x3094, 0x309a,\n  0x309f, 0x30a0,  0x30f7, 0x30fb,  0x30ff, 0x3104,  0x312a, 0x321f,\n  0x322a, 0x3230,  0x3232, 0x32a2,  0x32a4, 0x338d,  0x3390, 0x339b,\n  0x339f, 0x33a0,  0x33a2, 0x33c3,  0x33c5, 0x33cd,  0x33cf, 0x33d0,\n  0x33d3, 0x33d4,  0x33d6, 0x3446,  0x3448, 0x3472,  0x3474, 0x359d,\n  0x359f, 0x360d,  0x360f, 0x3619,  0x361b, 0x3917,  0x3919, 0x396d,\n  0x396f, 0x39ce,  0x39d1, 0x39de,  0x39e0, 0x3a72,  0x3a74, 0x3b4d,\n  0x3b4f, 0x3c6d,  0x3c6f, 0x3cdf,  0x3ce1, 0x4055,  0x4057, 0x415e,\n  0x4160, 0x4336,  0x4338, 0x43ab,  0x43ad, 0x43b0,  0x43b2, 0x43dc,\n  0x43de, 0x44d5,  0x44d7, 0x464b,  0x464d, 0x4660,  0x4662, 0x4722,\n  0x4724, 0x4728,  0x472a, 0x477b,  0x477d, 0x478c,  0x478e, 0x4946,\n  0x4948, 0x4979,  0x497b, 0x497c,  0x497e, 0x4981,  0x4984, 0x4984,\n  0x4987, 0x499a,  0x499c, 0x499e,  0x49a0, 0x49b5,  0x49b8, 0x4c76,\n  0x4c78, 0x4c9e,  0x4ca4, 0x4d12,  0x4d1a, 0x4dad,  0x4daf, 0x4dff,\n  0x9fa6, 0xd7ff,\n                   0xe76c, 0xe76c,  0xe7c8, 0xe7c8,  0xe7e7, 0xe7f3,\n  0xe815, 0xe815,  0xe819, 0xe81d,  0xe81f, 0xe825,  0xe827, 0xe82a,\n  0xe82d, 0xe830,  0xe833, 0xe83a,  0xe83c, 0xe842,  0xe844, 0xe853,\n  0xe856, 0xe863,\n                   0xe865, 0xf92b,  0xf92d, 0xf978,  0xf97a, 0xf994,\n  0xf996, 0xf9e6,  0xf9e8, 0xf9f0,  0xf9f2, 0xfa0b,  0xfa10, 0xfa10,\n  0xfa12, 0xfa12,  0xfa15, 0xfa17,  0xfa19, 0xfa1e,  0xfa22, 0xfa22,\n  0xfa25, 0xfa26,  0xfa2a, 0xfe2f,  0xfe32, 0xfe32,  0xfe45, 0xfe48,\n  0xfe53, 0xfe53,  0xfe58, 0xfe58,  0xfe67, 0xfe67,  0xfe6c, 0xff00,\n  0xff5f, 0xffdf,  0xffe6, 0xffff\n};\n\nstatic const unsigned short gb18030uni_ranges[206] = {\n    128,   129,   131,   133,   134,   135,   137,   140,\n    142,   144,   145,   147,   148,   149,   150,   151,\n    152,   153,   154,   155,   156,   157,   158,   159,\n    160,   161,   162,   163,   164,   165,   166,   167,\n    168,   171,   172,   189,   196,   213,   220,   221,\n    285,   286,   287,   291,   293,   295,   297,   298,\n    300,   301,   302,   303,   304,   305,   306,   307,\n    308,   320,   330,   334,   338,   339,   340,   341,\n    342,   343,   347,   348,   349,   354,   355,   359,\n    360,   361,   362,   363,   365,   369,   371,   372,\n    373,   374,   375,   376,   386,   426,   502,   538,\n    553,   556,   558,   560,   562,   564,   565,   567,\n    571,   573,   574,   575,   576,   577,   578,   579,\n    581,   582,   583,   584,   585,   586,   588,   589,\n    590,   602,   606,   625,   627,   636,   637,   720,\n    724,   810,   813,   850,   860,   861,   862,   864,\n    867,   868,   869,   870,   872,   873,   874,   875,\n    876,   877,   878,   879,   880,   882,   883,   884,\n    885,   886,   887,   888,   889,   890,   891,   892,\n    893,   894,   895,   896,   897,   898,   899,   900,\n    901,   902,   903,   905,   907,   908,   909,   911,\n    912,   917,   924,   925, 21827,\n                                     25775, 25866, 25896,\n  25929, 25932, 25933, 25934, 25936, 25938, 25939, 25940,\n  25942,\n         25943, 25944, 25945, 25946, 25947, 25948, 25952,\n  25953, 25955, 25956, 25959, 25961, 25964, 25966, 25984,\n  25994, 25998, 26012, 26016, 26110, 26116\n};\n\nstatic int\ngb18030uni_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if (c1 >= 0x81 && c1 <= 0x84) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x30 && c2 <= 0x39) {\n        if (n >= 3) {\n          unsigned char c3 = s[2];\n          if (c3 >= 0x81 && c3 <= 0xfe) {\n            if (n >= 4) {\n              unsigned char c4 = s[3];\n              if (c4 >= 0x30 && c4 <= 0x39) {\n                unsigned int i = (((c1 - 0x81) * 10 + (c2 - 0x30)) * 126 + (c3 - 0x81)) * 10 + (c4 - 0x30);\n                if (i >= 0 && i <= 39419) {\n                  if (i == 7457) {\n                    *pwc = 0xe7c7;\n                  } else {\n                    unsigned int k1 = 0;\n                    unsigned int k2 = 205;\n                    while (k1 < k2) {\n                      unsigned int k = (k1 + k2) / 2;\n                      if (i <= gb18030uni_charset2uni_ranges[2*k+1])\n                        k2 = k;\n                      else if (i >= gb18030uni_charset2uni_ranges[2*k+2])\n                        k1 = k + 1;\n                      else\n                        return RET_ILSEQ;\n                    }\n                    {\n                      unsigned int diff = gb18030uni_ranges[k1];\n                      *pwc = (ucs4_t) (i + diff);\n                    }\n                  }\n                  return 4;\n                }\n              }\n              return RET_ILSEQ;\n            }\n            return RET_TOOFEW(0);\n          }\n          return RET_ILSEQ;\n        }\n        return RET_TOOFEW(0);\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\ngb18030uni_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 4) {\n    unsigned int i = wc;\n    if (i >= 0x0080 && i <= 0xffff) {\n      if (i == 0xe7c7) {\n        i = 7457;\n      } else {\n        unsigned int k1 = 0;\n        unsigned int k2 = 205;\n        while (k1 < k2) {\n          unsigned int k = (k1 + k2) / 2;\n          if (i <= gb18030uni_uni2charset_ranges[2*k+1])\n            k2 = k;\n          else if (i >= gb18030uni_uni2charset_ranges[2*k+2])\n            k1 = k + 1;\n          else\n            return RET_ILUNI;\n        }\n        {\n          unsigned int diff = gb18030uni_ranges[k1];\n          i -= diff;\n        }\n      }\n      r[3] = (i % 10) + 0x30; i = i / 10;\n      r[2] = (i % 126) + 0x81; i = i / 126;\n      r[1] = (i % 10) + 0x30; i = i / 10;\n      r[0] = i + 0x81;\n      return 4;\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/gb2312.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GB2312.1980-0\n */\n\nstatic const unsigned short gb2312_2uni_page21[831] = {\n  /* 0x21 */\n  0x3000, 0x3001, 0x3002, 0x30fb, 0x02c9, 0x02c7, 0x00a8, 0x3003,\n  0x3005, 0x2015, 0xff5e, 0x2016, 0x2026, 0x2018, 0x2019, 0x201c,\n  0x201d, 0x3014, 0x3015, 0x3008, 0x3009, 0x300a, 0x300b, 0x300c,\n  0x300d, 0x300e, 0x300f, 0x3016, 0x3017, 0x3010, 0x3011, 0x00b1,\n  0x00d7, 0x00f7, 0x2236, 0x2227, 0x2228, 0x2211, 0x220f, 0x222a,\n  0x2229, 0x2208, 0x2237, 0x221a, 0x22a5, 0x2225, 0x2220, 0x2312,\n  0x2299, 0x222b, 0x222e, 0x2261, 0x224c, 0x2248, 0x223d, 0x221d,\n  0x2260, 0x226e, 0x226f, 0x2264, 0x2265, 0x221e, 0x2235, 0x2234,\n  0x2642, 0x2640, 0x00b0, 0x2032, 0x2033, 0x2103, 0xff04, 0x00a4,\n  0xffe0, 0xffe1, 0x2030, 0x00a7, 0x2116, 0x2606, 0x2605, 0x25cb,\n  0x25cf, 0x25ce, 0x25c7, 0x25c6, 0x25a1, 0x25a0, 0x25b3, 0x25b2,\n  0x203b, 0x2192, 0x2190, 0x2191, 0x2193, 0x3013,\n  /* 0x22 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x2488, 0x2489, 0x248a, 0x248b, 0x248c, 0x248d, 0x248e, 0x248f,\n  0x2490, 0x2491, 0x2492, 0x2493, 0x2494, 0x2495, 0x2496, 0x2497,\n  0x2498, 0x2499, 0x249a, 0x249b, 0x2474, 0x2475, 0x2476, 0x2477,\n  0x2478, 0x2479, 0x247a, 0x247b, 0x247c, 0x247d, 0x247e, 0x247f,\n  0x2480, 0x2481, 0x2482, 0x2483, 0x2484, 0x2485, 0x2486, 0x2487,\n  0x2460, 0x2461, 0x2462, 0x2463, 0x2464, 0x2465, 0x2466, 0x2467,\n  0x2468, 0x2469, 0xfffd, 0xfffd, 0x3220, 0x3221, 0x3222, 0x3223,\n  0x3224, 0x3225, 0x3226, 0x3227, 0x3228, 0x3229, 0xfffd, 0xfffd,\n  0x2160, 0x2161, 0x2162, 0x2163, 0x2164, 0x2165, 0x2166, 0x2167,\n  0x2168, 0x2169, 0x216a, 0x216b, 0xfffd, 0xfffd,\n  /* 0x23 */\n  0xff01, 0xff02, 0xff03, 0xffe5, 0xff05, 0xff06, 0xff07, 0xff08,\n  0xff09, 0xff0a, 0xff0b, 0xff0c, 0xff0d, 0xff0e, 0xff0f, 0xff10,\n  0xff11, 0xff12, 0xff13, 0xff14, 0xff15, 0xff16, 0xff17, 0xff18,\n  0xff19, 0xff1a, 0xff1b, 0xff1c, 0xff1d, 0xff1e, 0xff1f, 0xff20,\n  0xff21, 0xff22, 0xff23, 0xff24, 0xff25, 0xff26, 0xff27, 0xff28,\n  0xff29, 0xff2a, 0xff2b, 0xff2c, 0xff2d, 0xff2e, 0xff2f, 0xff30,\n  0xff31, 0xff32, 0xff33, 0xff34, 0xff35, 0xff36, 0xff37, 0xff38,\n  0xff39, 0xff3a, 0xff3b, 0xff3c, 0xff3d, 0xff3e, 0xff3f, 0xff40,\n  0xff41, 0xff42, 0xff43, 0xff44, 0xff45, 0xff46, 0xff47, 0xff48,\n  0xff49, 0xff4a, 0xff4b, 0xff4c, 0xff4d, 0xff4e, 0xff4f, 0xff50,\n  0xff51, 0xff52, 0xff53, 0xff54, 0xff55, 0xff56, 0xff57, 0xff58,\n  0xff59, 0xff5a, 0xff5b, 0xff5c, 0xff5d, 0xffe3,\n  /* 0x24 */\n  0x3041, 0x3042, 0x3043, 0x3044, 0x3045, 0x3046, 0x3047, 0x3048,\n  0x3049, 0x304a, 0x304b, 0x304c, 0x304d, 0x304e, 0x304f, 0x3050,\n  0x3051, 0x3052, 0x3053, 0x3054, 0x3055, 0x3056, 0x3057, 0x3058,\n  0x3059, 0x305a, 0x305b, 0x305c, 0x305d, 0x305e, 0x305f, 0x3060,\n  0x3061, 0x3062, 0x3063, 0x3064, 0x3065, 0x3066, 0x3067, 0x3068,\n  0x3069, 0x306a, 0x306b, 0x306c, 0x306d, 0x306e, 0x306f, 0x3070,\n  0x3071, 0x3072, 0x3073, 0x3074, 0x3075, 0x3076, 0x3077, 0x3078,\n  0x3079, 0x307a, 0x307b, 0x307c, 0x307d, 0x307e, 0x307f, 0x3080,\n  0x3081, 0x3082, 0x3083, 0x3084, 0x3085, 0x3086, 0x3087, 0x3088,\n  0x3089, 0x308a, 0x308b, 0x308c, 0x308d, 0x308e, 0x308f, 0x3090,\n  0x3091, 0x3092, 0x3093, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x25 */\n  0x30a1, 0x30a2, 0x30a3, 0x30a4, 0x30a5, 0x30a6, 0x30a7, 0x30a8,\n  0x30a9, 0x30aa, 0x30ab, 0x30ac, 0x30ad, 0x30ae, 0x30af, 0x30b0,\n  0x30b1, 0x30b2, 0x30b3, 0x30b4, 0x30b5, 0x30b6, 0x30b7, 0x30b8,\n  0x30b9, 0x30ba, 0x30bb, 0x30bc, 0x30bd, 0x30be, 0x30bf, 0x30c0,\n  0x30c1, 0x30c2, 0x30c3, 0x30c4, 0x30c5, 0x30c6, 0x30c7, 0x30c8,\n  0x30c9, 0x30ca, 0x30cb, 0x30cc, 0x30cd, 0x30ce, 0x30cf, 0x30d0,\n  0x30d1, 0x30d2, 0x30d3, 0x30d4, 0x30d5, 0x30d6, 0x30d7, 0x30d8,\n  0x30d9, 0x30da, 0x30db, 0x30dc, 0x30dd, 0x30de, 0x30df, 0x30e0,\n  0x30e1, 0x30e2, 0x30e3, 0x30e4, 0x30e5, 0x30e6, 0x30e7, 0x30e8,\n  0x30e9, 0x30ea, 0x30eb, 0x30ec, 0x30ed, 0x30ee, 0x30ef, 0x30f0,\n  0x30f1, 0x30f2, 0x30f3, 0x30f4, 0x30f5, 0x30f6, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x26 */\n  0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396, 0x0397, 0x0398,\n  0x0399, 0x039a, 0x039b, 0x039c, 0x039d, 0x039e, 0x039f, 0x03a0,\n  0x03a1, 0x03a3, 0x03a4, 0x03a5, 0x03a6, 0x03a7, 0x03a8, 0x03a9,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7, 0x03b8,\n  0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf, 0x03c0,\n  0x03c1, 0x03c3, 0x03c4, 0x03c5, 0x03c6, 0x03c7, 0x03c8, 0x03c9,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x27 */\n  0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0401, 0x0416,\n  0x0417, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e,\n  0x041f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426,\n  0x0427, 0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e,\n  0x042f, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0451, 0x0436,\n  0x0437, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e,\n  0x043f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446,\n  0x0447, 0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e,\n  0x044f, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x28 */\n  0x0101, 0x00e1, 0x01ce, 0x00e0, 0x0113, 0x00e9, 0x011b, 0x00e8,\n  0x012b, 0x00ed, 0x01d0, 0x00ec, 0x014d, 0x00f3, 0x01d2, 0x00f2,\n  0x016b, 0x00fa, 0x01d4, 0x00f9, 0x01d6, 0x01d8, 0x01da, 0x01dc,\n  0x00fc, 0x00ea, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x3105, 0x3106, 0x3107, 0x3108,\n  0x3109, 0x310a, 0x310b, 0x310c, 0x310d, 0x310e, 0x310f, 0x3110,\n  0x3111, 0x3112, 0x3113, 0x3114, 0x3115, 0x3116, 0x3117, 0x3118,\n  0x3119, 0x311a, 0x311b, 0x311c, 0x311d, 0x311e, 0x311f, 0x3120,\n  0x3121, 0x3122, 0x3123, 0x3124, 0x3125, 0x3126, 0x3127, 0x3128,\n  0x3129, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x29 */\n  0xfffd, 0xfffd, 0xfffd, 0x2500, 0x2501, 0x2502, 0x2503, 0x2504,\n  0x2505, 0x2506, 0x2507, 0x2508, 0x2509, 0x250a, 0x250b, 0x250c,\n  0x250d, 0x250e, 0x250f, 0x2510, 0x2511, 0x2512, 0x2513, 0x2514,\n  0x2515, 0x2516, 0x2517, 0x2518, 0x2519, 0x251a, 0x251b, 0x251c,\n  0x251d, 0x251e, 0x251f, 0x2520, 0x2521, 0x2522, 0x2523, 0x2524,\n  0x2525, 0x2526, 0x2527, 0x2528, 0x2529, 0x252a, 0x252b, 0x252c,\n  0x252d, 0x252e, 0x252f, 0x2530, 0x2531, 0x2532, 0x2533, 0x2534,\n  0x2535, 0x2536, 0x2537, 0x2538, 0x2539, 0x253a, 0x253b, 0x253c,\n  0x253d, 0x253e, 0x253f, 0x2540, 0x2541, 0x2542, 0x2543, 0x2544,\n  0x2545, 0x2546, 0x2547, 0x2548, 0x2549, 0x254a, 0x254b,\n};\nstatic const unsigned short gb2312_2uni_page30[6768] = {\n  /* 0x30 */\n  0x554a, 0x963f, 0x57c3, 0x6328, 0x54ce, 0x5509, 0x54c0, 0x7691,\n  0x764c, 0x853c, 0x77ee, 0x827e, 0x788d, 0x7231, 0x9698, 0x978d,\n  0x6c28, 0x5b89, 0x4ffa, 0x6309, 0x6697, 0x5cb8, 0x80fa, 0x6848,\n  0x80ae, 0x6602, 0x76ce, 0x51f9, 0x6556, 0x71ac, 0x7ff1, 0x8884,\n  0x50b2, 0x5965, 0x61ca, 0x6fb3, 0x82ad, 0x634c, 0x6252, 0x53ed,\n  0x5427, 0x7b06, 0x516b, 0x75a4, 0x5df4, 0x62d4, 0x8dcb, 0x9776,\n  0x628a, 0x8019, 0x575d, 0x9738, 0x7f62, 0x7238, 0x767d, 0x67cf,\n  0x767e, 0x6446, 0x4f70, 0x8d25, 0x62dc, 0x7a17, 0x6591, 0x73ed,\n  0x642c, 0x6273, 0x822c, 0x9881, 0x677f, 0x7248, 0x626e, 0x62cc,\n  0x4f34, 0x74e3, 0x534a, 0x529e, 0x7eca, 0x90a6, 0x5e2e, 0x6886,\n  0x699c, 0x8180, 0x7ed1, 0x68d2, 0x78c5, 0x868c, 0x9551, 0x508d,\n  0x8c24, 0x82de, 0x80de, 0x5305, 0x8912, 0x5265,\n  /* 0x31 */\n  0x8584, 0x96f9, 0x4fdd, 0x5821, 0x9971, 0x5b9d, 0x62b1, 0x62a5,\n  0x66b4, 0x8c79, 0x9c8d, 0x7206, 0x676f, 0x7891, 0x60b2, 0x5351,\n  0x5317, 0x8f88, 0x80cc, 0x8d1d, 0x94a1, 0x500d, 0x72c8, 0x5907,\n  0x60eb, 0x7119, 0x88ab, 0x5954, 0x82ef, 0x672c, 0x7b28, 0x5d29,\n  0x7ef7, 0x752d, 0x6cf5, 0x8e66, 0x8ff8, 0x903c, 0x9f3b, 0x6bd4,\n  0x9119, 0x7b14, 0x5f7c, 0x78a7, 0x84d6, 0x853d, 0x6bd5, 0x6bd9,\n  0x6bd6, 0x5e01, 0x5e87, 0x75f9, 0x95ed, 0x655d, 0x5f0a, 0x5fc5,\n  0x8f9f, 0x58c1, 0x81c2, 0x907f, 0x965b, 0x97ad, 0x8fb9, 0x7f16,\n  0x8d2c, 0x6241, 0x4fbf, 0x53d8, 0x535e, 0x8fa8, 0x8fa9, 0x8fab,\n  0x904d, 0x6807, 0x5f6a, 0x8198, 0x8868, 0x9cd6, 0x618b, 0x522b,\n  0x762a, 0x5f6c, 0x658c, 0x6fd2, 0x6ee8, 0x5bbe, 0x6448, 0x5175,\n  0x51b0, 0x67c4, 0x4e19, 0x79c9, 0x997c, 0x70b3,\n  /* 0x32 */\n  0x75c5, 0x5e76, 0x73bb, 0x83e0, 0x64ad, 0x62e8, 0x94b5, 0x6ce2,\n  0x535a, 0x52c3, 0x640f, 0x94c2, 0x7b94, 0x4f2f, 0x5e1b, 0x8236,\n  0x8116, 0x818a, 0x6e24, 0x6cca, 0x9a73, 0x6355, 0x535c, 0x54fa,\n  0x8865, 0x57e0, 0x4e0d, 0x5e03, 0x6b65, 0x7c3f, 0x90e8, 0x6016,\n  0x64e6, 0x731c, 0x88c1, 0x6750, 0x624d, 0x8d22, 0x776c, 0x8e29,\n  0x91c7, 0x5f69, 0x83dc, 0x8521, 0x9910, 0x53c2, 0x8695, 0x6b8b,\n  0x60ed, 0x60e8, 0x707f, 0x82cd, 0x8231, 0x4ed3, 0x6ca7, 0x85cf,\n  0x64cd, 0x7cd9, 0x69fd, 0x66f9, 0x8349, 0x5395, 0x7b56, 0x4fa7,\n  0x518c, 0x6d4b, 0x5c42, 0x8e6d, 0x63d2, 0x53c9, 0x832c, 0x8336,\n  0x67e5, 0x78b4, 0x643d, 0x5bdf, 0x5c94, 0x5dee, 0x8be7, 0x62c6,\n  0x67f4, 0x8c7a, 0x6400, 0x63ba, 0x8749, 0x998b, 0x8c17, 0x7f20,\n  0x94f2, 0x4ea7, 0x9610, 0x98a4, 0x660c, 0x7316,\n  /* 0x33 */\n  0x573a, 0x5c1d, 0x5e38, 0x957f, 0x507f, 0x80a0, 0x5382, 0x655e,\n  0x7545, 0x5531, 0x5021, 0x8d85, 0x6284, 0x949e, 0x671d, 0x5632,\n  0x6f6e, 0x5de2, 0x5435, 0x7092, 0x8f66, 0x626f, 0x64a4, 0x63a3,\n  0x5f7b, 0x6f88, 0x90f4, 0x81e3, 0x8fb0, 0x5c18, 0x6668, 0x5ff1,\n  0x6c89, 0x9648, 0x8d81, 0x886c, 0x6491, 0x79f0, 0x57ce, 0x6a59,\n  0x6210, 0x5448, 0x4e58, 0x7a0b, 0x60e9, 0x6f84, 0x8bda, 0x627f,\n  0x901e, 0x9a8b, 0x79e4, 0x5403, 0x75f4, 0x6301, 0x5319, 0x6c60,\n  0x8fdf, 0x5f1b, 0x9a70, 0x803b, 0x9f7f, 0x4f88, 0x5c3a, 0x8d64,\n  0x7fc5, 0x65a5, 0x70bd, 0x5145, 0x51b2, 0x866b, 0x5d07, 0x5ba0,\n  0x62bd, 0x916c, 0x7574, 0x8e0c, 0x7a20, 0x6101, 0x7b79, 0x4ec7,\n  0x7ef8, 0x7785, 0x4e11, 0x81ed, 0x521d, 0x51fa, 0x6a71, 0x53a8,\n  0x8e87, 0x9504, 0x96cf, 0x6ec1, 0x9664, 0x695a,\n  /* 0x34 */\n  0x7840, 0x50a8, 0x77d7, 0x6410, 0x89e6, 0x5904, 0x63e3, 0x5ddd,\n  0x7a7f, 0x693d, 0x4f20, 0x8239, 0x5598, 0x4e32, 0x75ae, 0x7a97,\n  0x5e62, 0x5e8a, 0x95ef, 0x521b, 0x5439, 0x708a, 0x6376, 0x9524,\n  0x5782, 0x6625, 0x693f, 0x9187, 0x5507, 0x6df3, 0x7eaf, 0x8822,\n  0x6233, 0x7ef0, 0x75b5, 0x8328, 0x78c1, 0x96cc, 0x8f9e, 0x6148,\n  0x74f7, 0x8bcd, 0x6b64, 0x523a, 0x8d50, 0x6b21, 0x806a, 0x8471,\n  0x56f1, 0x5306, 0x4ece, 0x4e1b, 0x51d1, 0x7c97, 0x918b, 0x7c07,\n  0x4fc3, 0x8e7f, 0x7be1, 0x7a9c, 0x6467, 0x5d14, 0x50ac, 0x8106,\n  0x7601, 0x7cb9, 0x6dec, 0x7fe0, 0x6751, 0x5b58, 0x5bf8, 0x78cb,\n  0x64ae, 0x6413, 0x63aa, 0x632b, 0x9519, 0x642d, 0x8fbe, 0x7b54,\n  0x7629, 0x6253, 0x5927, 0x5446, 0x6b79, 0x50a3, 0x6234, 0x5e26,\n  0x6b86, 0x4ee3, 0x8d37, 0x888b, 0x5f85, 0x902e,\n  /* 0x35 */\n  0x6020, 0x803d, 0x62c5, 0x4e39, 0x5355, 0x90f8, 0x63b8, 0x80c6,\n  0x65e6, 0x6c2e, 0x4f46, 0x60ee, 0x6de1, 0x8bde, 0x5f39, 0x86cb,\n  0x5f53, 0x6321, 0x515a, 0x8361, 0x6863, 0x5200, 0x6363, 0x8e48,\n  0x5012, 0x5c9b, 0x7977, 0x5bfc, 0x5230, 0x7a3b, 0x60bc, 0x9053,\n  0x76d7, 0x5fb7, 0x5f97, 0x7684, 0x8e6c, 0x706f, 0x767b, 0x7b49,\n  0x77aa, 0x51f3, 0x9093, 0x5824, 0x4f4e, 0x6ef4, 0x8fea, 0x654c,\n  0x7b1b, 0x72c4, 0x6da4, 0x7fdf, 0x5ae1, 0x62b5, 0x5e95, 0x5730,\n  0x8482, 0x7b2c, 0x5e1d, 0x5f1f, 0x9012, 0x7f14, 0x98a0, 0x6382,\n  0x6ec7, 0x7898, 0x70b9, 0x5178, 0x975b, 0x57ab, 0x7535, 0x4f43,\n  0x7538, 0x5e97, 0x60e6, 0x5960, 0x6dc0, 0x6bbf, 0x7889, 0x53fc,\n  0x96d5, 0x51cb, 0x5201, 0x6389, 0x540a, 0x9493, 0x8c03, 0x8dcc,\n  0x7239, 0x789f, 0x8776, 0x8fed, 0x8c0d, 0x53e0,\n  /* 0x36 */\n  0x4e01, 0x76ef, 0x53ee, 0x9489, 0x9876, 0x9f0e, 0x952d, 0x5b9a,\n  0x8ba2, 0x4e22, 0x4e1c, 0x51ac, 0x8463, 0x61c2, 0x52a8, 0x680b,\n  0x4f97, 0x606b, 0x51bb, 0x6d1e, 0x515c, 0x6296, 0x6597, 0x9661,\n  0x8c46, 0x9017, 0x75d8, 0x90fd, 0x7763, 0x6bd2, 0x728a, 0x72ec,\n  0x8bfb, 0x5835, 0x7779, 0x8d4c, 0x675c, 0x9540, 0x809a, 0x5ea6,\n  0x6e21, 0x5992, 0x7aef, 0x77ed, 0x953b, 0x6bb5, 0x65ad, 0x7f0e,\n  0x5806, 0x5151, 0x961f, 0x5bf9, 0x58a9, 0x5428, 0x8e72, 0x6566,\n  0x987f, 0x56e4, 0x949d, 0x76fe, 0x9041, 0x6387, 0x54c6, 0x591a,\n  0x593a, 0x579b, 0x8eb2, 0x6735, 0x8dfa, 0x8235, 0x5241, 0x60f0,\n  0x5815, 0x86fe, 0x5ce8, 0x9e45, 0x4fc4, 0x989d, 0x8bb9, 0x5a25,\n  0x6076, 0x5384, 0x627c, 0x904f, 0x9102, 0x997f, 0x6069, 0x800c,\n  0x513f, 0x8033, 0x5c14, 0x9975, 0x6d31, 0x4e8c,\n  /* 0x37 */\n  0x8d30, 0x53d1, 0x7f5a, 0x7b4f, 0x4f10, 0x4e4f, 0x9600, 0x6cd5,\n  0x73d0, 0x85e9, 0x5e06, 0x756a, 0x7ffb, 0x6a0a, 0x77fe, 0x9492,\n  0x7e41, 0x51e1, 0x70e6, 0x53cd, 0x8fd4, 0x8303, 0x8d29, 0x72af,\n  0x996d, 0x6cdb, 0x574a, 0x82b3, 0x65b9, 0x80aa, 0x623f, 0x9632,\n  0x59a8, 0x4eff, 0x8bbf, 0x7eba, 0x653e, 0x83f2, 0x975e, 0x5561,\n  0x98de, 0x80a5, 0x532a, 0x8bfd, 0x5420, 0x80ba, 0x5e9f, 0x6cb8,\n  0x8d39, 0x82ac, 0x915a, 0x5429, 0x6c1b, 0x5206, 0x7eb7, 0x575f,\n  0x711a, 0x6c7e, 0x7c89, 0x594b, 0x4efd, 0x5fff, 0x6124, 0x7caa,\n  0x4e30, 0x5c01, 0x67ab, 0x8702, 0x5cf0, 0x950b, 0x98ce, 0x75af,\n  0x70fd, 0x9022, 0x51af, 0x7f1d, 0x8bbd, 0x5949, 0x51e4, 0x4f5b,\n  0x5426, 0x592b, 0x6577, 0x80a4, 0x5b75, 0x6276, 0x62c2, 0x8f90,\n  0x5e45, 0x6c1f, 0x7b26, 0x4f0f, 0x4fd8, 0x670d,\n  /* 0x38 */\n  0x6d6e, 0x6daa, 0x798f, 0x88b1, 0x5f17, 0x752b, 0x629a, 0x8f85,\n  0x4fef, 0x91dc, 0x65a7, 0x812f, 0x8151, 0x5e9c, 0x8150, 0x8d74,\n  0x526f, 0x8986, 0x8d4b, 0x590d, 0x5085, 0x4ed8, 0x961c, 0x7236,\n  0x8179, 0x8d1f, 0x5bcc, 0x8ba3, 0x9644, 0x5987, 0x7f1a, 0x5490,\n  0x5676, 0x560e, 0x8be5, 0x6539, 0x6982, 0x9499, 0x76d6, 0x6e89,\n  0x5e72, 0x7518, 0x6746, 0x67d1, 0x7aff, 0x809d, 0x8d76, 0x611f,\n  0x79c6, 0x6562, 0x8d63, 0x5188, 0x521a, 0x94a2, 0x7f38, 0x809b,\n  0x7eb2, 0x5c97, 0x6e2f, 0x6760, 0x7bd9, 0x768b, 0x9ad8, 0x818f,\n  0x7f94, 0x7cd5, 0x641e, 0x9550, 0x7a3f, 0x544a, 0x54e5, 0x6b4c,\n  0x6401, 0x6208, 0x9e3d, 0x80f3, 0x7599, 0x5272, 0x9769, 0x845b,\n  0x683c, 0x86e4, 0x9601, 0x9694, 0x94ec, 0x4e2a, 0x5404, 0x7ed9,\n  0x6839, 0x8ddf, 0x8015, 0x66f4, 0x5e9a, 0x7fb9,\n  /* 0x39 */\n  0x57c2, 0x803f, 0x6897, 0x5de5, 0x653b, 0x529f, 0x606d, 0x9f9a,\n  0x4f9b, 0x8eac, 0x516c, 0x5bab, 0x5f13, 0x5de9, 0x6c5e, 0x62f1,\n  0x8d21, 0x5171, 0x94a9, 0x52fe, 0x6c9f, 0x82df, 0x72d7, 0x57a2,\n  0x6784, 0x8d2d, 0x591f, 0x8f9c, 0x83c7, 0x5495, 0x7b8d, 0x4f30,\n  0x6cbd, 0x5b64, 0x59d1, 0x9f13, 0x53e4, 0x86ca, 0x9aa8, 0x8c37,\n  0x80a1, 0x6545, 0x987e, 0x56fa, 0x96c7, 0x522e, 0x74dc, 0x5250,\n  0x5be1, 0x6302, 0x8902, 0x4e56, 0x62d0, 0x602a, 0x68fa, 0x5173,\n  0x5b98, 0x51a0, 0x89c2, 0x7ba1, 0x9986, 0x7f50, 0x60ef, 0x704c,\n  0x8d2f, 0x5149, 0x5e7f, 0x901b, 0x7470, 0x89c4, 0x572d, 0x7845,\n  0x5f52, 0x9f9f, 0x95fa, 0x8f68, 0x9b3c, 0x8be1, 0x7678, 0x6842,\n  0x67dc, 0x8dea, 0x8d35, 0x523d, 0x8f8a, 0x6eda, 0x68cd, 0x9505,\n  0x90ed, 0x56fd, 0x679c, 0x88f9, 0x8fc7, 0x54c8,\n  /* 0x3a */\n  0x9ab8, 0x5b69, 0x6d77, 0x6c26, 0x4ea5, 0x5bb3, 0x9a87, 0x9163,\n  0x61a8, 0x90af, 0x97e9, 0x542b, 0x6db5, 0x5bd2, 0x51fd, 0x558a,\n  0x7f55, 0x7ff0, 0x64bc, 0x634d, 0x65f1, 0x61be, 0x608d, 0x710a,\n  0x6c57, 0x6c49, 0x592f, 0x676d, 0x822a, 0x58d5, 0x568e, 0x8c6a,\n  0x6beb, 0x90dd, 0x597d, 0x8017, 0x53f7, 0x6d69, 0x5475, 0x559d,\n  0x8377, 0x83cf, 0x6838, 0x79be, 0x548c, 0x4f55, 0x5408, 0x76d2,\n  0x8c89, 0x9602, 0x6cb3, 0x6db8, 0x8d6b, 0x8910, 0x9e64, 0x8d3a,\n  0x563f, 0x9ed1, 0x75d5, 0x5f88, 0x72e0, 0x6068, 0x54fc, 0x4ea8,\n  0x6a2a, 0x8861, 0x6052, 0x8f70, 0x54c4, 0x70d8, 0x8679, 0x9e3f,\n  0x6d2a, 0x5b8f, 0x5f18, 0x7ea2, 0x5589, 0x4faf, 0x7334, 0x543c,\n  0x539a, 0x5019, 0x540e, 0x547c, 0x4e4e, 0x5ffd, 0x745a, 0x58f6,\n  0x846b, 0x80e1, 0x8774, 0x72d0, 0x7cca, 0x6e56,\n  /* 0x3b */\n  0x5f27, 0x864e, 0x552c, 0x62a4, 0x4e92, 0x6caa, 0x6237, 0x82b1,\n  0x54d7, 0x534e, 0x733e, 0x6ed1, 0x753b, 0x5212, 0x5316, 0x8bdd,\n  0x69d0, 0x5f8a, 0x6000, 0x6dee, 0x574f, 0x6b22, 0x73af, 0x6853,\n  0x8fd8, 0x7f13, 0x6362, 0x60a3, 0x5524, 0x75ea, 0x8c62, 0x7115,\n  0x6da3, 0x5ba6, 0x5e7b, 0x8352, 0x614c, 0x9ec4, 0x78fa, 0x8757,\n  0x7c27, 0x7687, 0x51f0, 0x60f6, 0x714c, 0x6643, 0x5e4c, 0x604d,\n  0x8c0e, 0x7070, 0x6325, 0x8f89, 0x5fbd, 0x6062, 0x86d4, 0x56de,\n  0x6bc1, 0x6094, 0x6167, 0x5349, 0x60e0, 0x6666, 0x8d3f, 0x79fd,\n  0x4f1a, 0x70e9, 0x6c47, 0x8bb3, 0x8bf2, 0x7ed8, 0x8364, 0x660f,\n  0x5a5a, 0x9b42, 0x6d51, 0x6df7, 0x8c41, 0x6d3b, 0x4f19, 0x706b,\n  0x83b7, 0x6216, 0x60d1, 0x970d, 0x8d27, 0x7978, 0x51fb, 0x573e,\n  0x57fa, 0x673a, 0x7578, 0x7a3d, 0x79ef, 0x7b95,\n  /* 0x3c */\n  0x808c, 0x9965, 0x8ff9, 0x6fc0, 0x8ba5, 0x9e21, 0x59ec, 0x7ee9,\n  0x7f09, 0x5409, 0x6781, 0x68d8, 0x8f91, 0x7c4d, 0x96c6, 0x53ca,\n  0x6025, 0x75be, 0x6c72, 0x5373, 0x5ac9, 0x7ea7, 0x6324, 0x51e0,\n  0x810a, 0x5df1, 0x84df, 0x6280, 0x5180, 0x5b63, 0x4f0e, 0x796d,\n  0x5242, 0x60b8, 0x6d4e, 0x5bc4, 0x5bc2, 0x8ba1, 0x8bb0, 0x65e2,\n  0x5fcc, 0x9645, 0x5993, 0x7ee7, 0x7eaa, 0x5609, 0x67b7, 0x5939,\n  0x4f73, 0x5bb6, 0x52a0, 0x835a, 0x988a, 0x8d3e, 0x7532, 0x94be,\n  0x5047, 0x7a3c, 0x4ef7, 0x67b6, 0x9a7e, 0x5ac1, 0x6b7c, 0x76d1,\n  0x575a, 0x5c16, 0x7b3a, 0x95f4, 0x714e, 0x517c, 0x80a9, 0x8270,\n  0x5978, 0x7f04, 0x8327, 0x68c0, 0x67ec, 0x78b1, 0x7877, 0x62e3,\n  0x6361, 0x7b80, 0x4fed, 0x526a, 0x51cf, 0x8350, 0x69db, 0x9274,\n  0x8df5, 0x8d31, 0x89c1, 0x952e, 0x7bad, 0x4ef6,\n  /* 0x3d */\n  0x5065, 0x8230, 0x5251, 0x996f, 0x6e10, 0x6e85, 0x6da7, 0x5efa,\n  0x50f5, 0x59dc, 0x5c06, 0x6d46, 0x6c5f, 0x7586, 0x848b, 0x6868,\n  0x5956, 0x8bb2, 0x5320, 0x9171, 0x964d, 0x8549, 0x6912, 0x7901,\n  0x7126, 0x80f6, 0x4ea4, 0x90ca, 0x6d47, 0x9a84, 0x5a07, 0x56bc,\n  0x6405, 0x94f0, 0x77eb, 0x4fa5, 0x811a, 0x72e1, 0x89d2, 0x997a,\n  0x7f34, 0x7ede, 0x527f, 0x6559, 0x9175, 0x8f7f, 0x8f83, 0x53eb,\n  0x7a96, 0x63ed, 0x63a5, 0x7686, 0x79f8, 0x8857, 0x9636, 0x622a,\n  0x52ab, 0x8282, 0x6854, 0x6770, 0x6377, 0x776b, 0x7aed, 0x6d01,\n  0x7ed3, 0x89e3, 0x59d0, 0x6212, 0x85c9, 0x82a5, 0x754c, 0x501f,\n  0x4ecb, 0x75a5, 0x8beb, 0x5c4a, 0x5dfe, 0x7b4b, 0x65a4, 0x91d1,\n  0x4eca, 0x6d25, 0x895f, 0x7d27, 0x9526, 0x4ec5, 0x8c28, 0x8fdb,\n  0x9773, 0x664b, 0x7981, 0x8fd1, 0x70ec, 0x6d78,\n  /* 0x3e */\n  0x5c3d, 0x52b2, 0x8346, 0x5162, 0x830e, 0x775b, 0x6676, 0x9cb8,\n  0x4eac, 0x60ca, 0x7cbe, 0x7cb3, 0x7ecf, 0x4e95, 0x8b66, 0x666f,\n  0x9888, 0x9759, 0x5883, 0x656c, 0x955c, 0x5f84, 0x75c9, 0x9756,\n  0x7adf, 0x7ade, 0x51c0, 0x70af, 0x7a98, 0x63ea, 0x7a76, 0x7ea0,\n  0x7396, 0x97ed, 0x4e45, 0x7078, 0x4e5d, 0x9152, 0x53a9, 0x6551,\n  0x65e7, 0x81fc, 0x8205, 0x548e, 0x5c31, 0x759a, 0x97a0, 0x62d8,\n  0x72d9, 0x75bd, 0x5c45, 0x9a79, 0x83ca, 0x5c40, 0x5480, 0x77e9,\n  0x4e3e, 0x6cae, 0x805a, 0x62d2, 0x636e, 0x5de8, 0x5177, 0x8ddd,\n  0x8e1e, 0x952f, 0x4ff1, 0x53e5, 0x60e7, 0x70ac, 0x5267, 0x6350,\n  0x9e43, 0x5a1f, 0x5026, 0x7737, 0x5377, 0x7ee2, 0x6485, 0x652b,\n  0x6289, 0x6398, 0x5014, 0x7235, 0x89c9, 0x51b3, 0x8bc0, 0x7edd,\n  0x5747, 0x83cc, 0x94a7, 0x519b, 0x541b, 0x5cfb,\n  /* 0x3f */\n  0x4fca, 0x7ae3, 0x6d5a, 0x90e1, 0x9a8f, 0x5580, 0x5496, 0x5361,\n  0x54af, 0x5f00, 0x63e9, 0x6977, 0x51ef, 0x6168, 0x520a, 0x582a,\n  0x52d8, 0x574e, 0x780d, 0x770b, 0x5eb7, 0x6177, 0x7ce0, 0x625b,\n  0x6297, 0x4ea2, 0x7095, 0x8003, 0x62f7, 0x70e4, 0x9760, 0x5777,\n  0x82db, 0x67ef, 0x68f5, 0x78d5, 0x9897, 0x79d1, 0x58f3, 0x54b3,\n  0x53ef, 0x6e34, 0x514b, 0x523b, 0x5ba2, 0x8bfe, 0x80af, 0x5543,\n  0x57a6, 0x6073, 0x5751, 0x542d, 0x7a7a, 0x6050, 0x5b54, 0x63a7,\n  0x62a0, 0x53e3, 0x6263, 0x5bc7, 0x67af, 0x54ed, 0x7a9f, 0x82e6,\n  0x9177, 0x5e93, 0x88e4, 0x5938, 0x57ae, 0x630e, 0x8de8, 0x80ef,\n  0x5757, 0x7b77, 0x4fa9, 0x5feb, 0x5bbd, 0x6b3e, 0x5321, 0x7b50,\n  0x72c2, 0x6846, 0x77ff, 0x7736, 0x65f7, 0x51b5, 0x4e8f, 0x76d4,\n  0x5cbf, 0x7aa5, 0x8475, 0x594e, 0x9b41, 0x5080,\n  /* 0x40 */\n  0x9988, 0x6127, 0x6e83, 0x5764, 0x6606, 0x6346, 0x56f0, 0x62ec,\n  0x6269, 0x5ed3, 0x9614, 0x5783, 0x62c9, 0x5587, 0x8721, 0x814a,\n  0x8fa3, 0x5566, 0x83b1, 0x6765, 0x8d56, 0x84dd, 0x5a6a, 0x680f,\n  0x62e6, 0x7bee, 0x9611, 0x5170, 0x6f9c, 0x8c30, 0x63fd, 0x89c8,\n  0x61d2, 0x7f06, 0x70c2, 0x6ee5, 0x7405, 0x6994, 0x72fc, 0x5eca,\n  0x90ce, 0x6717, 0x6d6a, 0x635e, 0x52b3, 0x7262, 0x8001, 0x4f6c,\n  0x59e5, 0x916a, 0x70d9, 0x6d9d, 0x52d2, 0x4e50, 0x96f7, 0x956d,\n  0x857e, 0x78ca, 0x7d2f, 0x5121, 0x5792, 0x64c2, 0x808b, 0x7c7b,\n  0x6cea, 0x68f1, 0x695e, 0x51b7, 0x5398, 0x68a8, 0x7281, 0x9ece,\n  0x7bf1, 0x72f8, 0x79bb, 0x6f13, 0x7406, 0x674e, 0x91cc, 0x9ca4,\n  0x793c, 0x8389, 0x8354, 0x540f, 0x6817, 0x4e3d, 0x5389, 0x52b1,\n  0x783e, 0x5386, 0x5229, 0x5088, 0x4f8b, 0x4fd0,\n  /* 0x41 */\n  0x75e2, 0x7acb, 0x7c92, 0x6ca5, 0x96b6, 0x529b, 0x7483, 0x54e9,\n  0x4fe9, 0x8054, 0x83b2, 0x8fde, 0x9570, 0x5ec9, 0x601c, 0x6d9f,\n  0x5e18, 0x655b, 0x8138, 0x94fe, 0x604b, 0x70bc, 0x7ec3, 0x7cae,\n  0x51c9, 0x6881, 0x7cb1, 0x826f, 0x4e24, 0x8f86, 0x91cf, 0x667e,\n  0x4eae, 0x8c05, 0x64a9, 0x804a, 0x50da, 0x7597, 0x71ce, 0x5be5,\n  0x8fbd, 0x6f66, 0x4e86, 0x6482, 0x9563, 0x5ed6, 0x6599, 0x5217,\n  0x88c2, 0x70c8, 0x52a3, 0x730e, 0x7433, 0x6797, 0x78f7, 0x9716,\n  0x4e34, 0x90bb, 0x9cde, 0x6dcb, 0x51db, 0x8d41, 0x541d, 0x62ce,\n  0x73b2, 0x83f1, 0x96f6, 0x9f84, 0x94c3, 0x4f36, 0x7f9a, 0x51cc,\n  0x7075, 0x9675, 0x5cad, 0x9886, 0x53e6, 0x4ee4, 0x6e9c, 0x7409,\n  0x69b4, 0x786b, 0x998f, 0x7559, 0x5218, 0x7624, 0x6d41, 0x67f3,\n  0x516d, 0x9f99, 0x804b, 0x5499, 0x7b3c, 0x7abf,\n  /* 0x42 */\n  0x9686, 0x5784, 0x62e2, 0x9647, 0x697c, 0x5a04, 0x6402, 0x7bd3,\n  0x6f0f, 0x964b, 0x82a6, 0x5362, 0x9885, 0x5e90, 0x7089, 0x63b3,\n  0x5364, 0x864f, 0x9c81, 0x9e93, 0x788c, 0x9732, 0x8def, 0x8d42,\n  0x9e7f, 0x6f5e, 0x7984, 0x5f55, 0x9646, 0x622e, 0x9a74, 0x5415,\n  0x94dd, 0x4fa3, 0x65c5, 0x5c65, 0x5c61, 0x7f15, 0x8651, 0x6c2f,\n  0x5f8b, 0x7387, 0x6ee4, 0x7eff, 0x5ce6, 0x631b, 0x5b6a, 0x6ee6,\n  0x5375, 0x4e71, 0x63a0, 0x7565, 0x62a1, 0x8f6e, 0x4f26, 0x4ed1,\n  0x6ca6, 0x7eb6, 0x8bba, 0x841d, 0x87ba, 0x7f57, 0x903b, 0x9523,\n  0x7ba9, 0x9aa1, 0x88f8, 0x843d, 0x6d1b, 0x9a86, 0x7edc, 0x5988,\n  0x9ebb, 0x739b, 0x7801, 0x8682, 0x9a6c, 0x9a82, 0x561b, 0x5417,\n  0x57cb, 0x4e70, 0x9ea6, 0x5356, 0x8fc8, 0x8109, 0x7792, 0x9992,\n  0x86ee, 0x6ee1, 0x8513, 0x66fc, 0x6162, 0x6f2b,\n  /* 0x43 */\n  0x8c29, 0x8292, 0x832b, 0x76f2, 0x6c13, 0x5fd9, 0x83bd, 0x732b,\n  0x8305, 0x951a, 0x6bdb, 0x77db, 0x94c6, 0x536f, 0x8302, 0x5192,\n  0x5e3d, 0x8c8c, 0x8d38, 0x4e48, 0x73ab, 0x679a, 0x6885, 0x9176,\n  0x9709, 0x7164, 0x6ca1, 0x7709, 0x5a92, 0x9541, 0x6bcf, 0x7f8e,\n  0x6627, 0x5bd0, 0x59b9, 0x5a9a, 0x95e8, 0x95f7, 0x4eec, 0x840c,\n  0x8499, 0x6aac, 0x76df, 0x9530, 0x731b, 0x68a6, 0x5b5f, 0x772f,\n  0x919a, 0x9761, 0x7cdc, 0x8ff7, 0x8c1c, 0x5f25, 0x7c73, 0x79d8,\n  0x89c5, 0x6ccc, 0x871c, 0x5bc6, 0x5e42, 0x68c9, 0x7720, 0x7ef5,\n  0x5195, 0x514d, 0x52c9, 0x5a29, 0x7f05, 0x9762, 0x82d7, 0x63cf,\n  0x7784, 0x85d0, 0x79d2, 0x6e3a, 0x5e99, 0x5999, 0x8511, 0x706d,\n  0x6c11, 0x62bf, 0x76bf, 0x654f, 0x60af, 0x95fd, 0x660e, 0x879f,\n  0x9e23, 0x94ed, 0x540d, 0x547d, 0x8c2c, 0x6478,\n  /* 0x44 */\n  0x6479, 0x8611, 0x6a21, 0x819c, 0x78e8, 0x6469, 0x9b54, 0x62b9,\n  0x672b, 0x83ab, 0x58a8, 0x9ed8, 0x6cab, 0x6f20, 0x5bde, 0x964c,\n  0x8c0b, 0x725f, 0x67d0, 0x62c7, 0x7261, 0x4ea9, 0x59c6, 0x6bcd,\n  0x5893, 0x66ae, 0x5e55, 0x52df, 0x6155, 0x6728, 0x76ee, 0x7766,\n  0x7267, 0x7a46, 0x62ff, 0x54ea, 0x5450, 0x94a0, 0x90a3, 0x5a1c,\n  0x7eb3, 0x6c16, 0x4e43, 0x5976, 0x8010, 0x5948, 0x5357, 0x7537,\n  0x96be, 0x56ca, 0x6320, 0x8111, 0x607c, 0x95f9, 0x6dd6, 0x5462,\n  0x9981, 0x5185, 0x5ae9, 0x80fd, 0x59ae, 0x9713, 0x502a, 0x6ce5,\n  0x5c3c, 0x62df, 0x4f60, 0x533f, 0x817b, 0x9006, 0x6eba, 0x852b,\n  0x62c8, 0x5e74, 0x78be, 0x64b5, 0x637b, 0x5ff5, 0x5a18, 0x917f,\n  0x9e1f, 0x5c3f, 0x634f, 0x8042, 0x5b7d, 0x556e, 0x954a, 0x954d,\n  0x6d85, 0x60a8, 0x67e0, 0x72de, 0x51dd, 0x5b81,\n  /* 0x45 */\n  0x62e7, 0x6cde, 0x725b, 0x626d, 0x94ae, 0x7ebd, 0x8113, 0x6d53,\n  0x519c, 0x5f04, 0x5974, 0x52aa, 0x6012, 0x5973, 0x6696, 0x8650,\n  0x759f, 0x632a, 0x61e6, 0x7cef, 0x8bfa, 0x54e6, 0x6b27, 0x9e25,\n  0x6bb4, 0x85d5, 0x5455, 0x5076, 0x6ca4, 0x556a, 0x8db4, 0x722c,\n  0x5e15, 0x6015, 0x7436, 0x62cd, 0x6392, 0x724c, 0x5f98, 0x6e43,\n  0x6d3e, 0x6500, 0x6f58, 0x76d8, 0x78d0, 0x76fc, 0x7554, 0x5224,\n  0x53db, 0x4e53, 0x5e9e, 0x65c1, 0x802a, 0x80d6, 0x629b, 0x5486,\n  0x5228, 0x70ae, 0x888d, 0x8dd1, 0x6ce1, 0x5478, 0x80da, 0x57f9,\n  0x88f4, 0x8d54, 0x966a, 0x914d, 0x4f69, 0x6c9b, 0x55b7, 0x76c6,\n  0x7830, 0x62a8, 0x70f9, 0x6f8e, 0x5f6d, 0x84ec, 0x68da, 0x787c,\n  0x7bf7, 0x81a8, 0x670b, 0x9e4f, 0x6367, 0x78b0, 0x576f, 0x7812,\n  0x9739, 0x6279, 0x62ab, 0x5288, 0x7435, 0x6bd7,\n  /* 0x46 */\n  0x5564, 0x813e, 0x75b2, 0x76ae, 0x5339, 0x75de, 0x50fb, 0x5c41,\n  0x8b6c, 0x7bc7, 0x504f, 0x7247, 0x9a97, 0x98d8, 0x6f02, 0x74e2,\n  0x7968, 0x6487, 0x77a5, 0x62fc, 0x9891, 0x8d2b, 0x54c1, 0x8058,\n  0x4e52, 0x576a, 0x82f9, 0x840d, 0x5e73, 0x51ed, 0x74f6, 0x8bc4,\n  0x5c4f, 0x5761, 0x6cfc, 0x9887, 0x5a46, 0x7834, 0x9b44, 0x8feb,\n  0x7c95, 0x5256, 0x6251, 0x94fa, 0x4ec6, 0x8386, 0x8461, 0x83e9,\n  0x84b2, 0x57d4, 0x6734, 0x5703, 0x666e, 0x6d66, 0x8c31, 0x66dd,\n  0x7011, 0x671f, 0x6b3a, 0x6816, 0x621a, 0x59bb, 0x4e03, 0x51c4,\n  0x6f06, 0x67d2, 0x6c8f, 0x5176, 0x68cb, 0x5947, 0x6b67, 0x7566,\n  0x5d0e, 0x8110, 0x9f50, 0x65d7, 0x7948, 0x7941, 0x9a91, 0x8d77,\n  0x5c82, 0x4e5e, 0x4f01, 0x542f, 0x5951, 0x780c, 0x5668, 0x6c14,\n  0x8fc4, 0x5f03, 0x6c7d, 0x6ce3, 0x8bab, 0x6390,\n  /* 0x47 */\n  0x6070, 0x6d3d, 0x7275, 0x6266, 0x948e, 0x94c5, 0x5343, 0x8fc1,\n  0x7b7e, 0x4edf, 0x8c26, 0x4e7e, 0x9ed4, 0x94b1, 0x94b3, 0x524d,\n  0x6f5c, 0x9063, 0x6d45, 0x8c34, 0x5811, 0x5d4c, 0x6b20, 0x6b49,\n  0x67aa, 0x545b, 0x8154, 0x7f8c, 0x5899, 0x8537, 0x5f3a, 0x62a2,\n  0x6a47, 0x9539, 0x6572, 0x6084, 0x6865, 0x77a7, 0x4e54, 0x4fa8,\n  0x5de7, 0x9798, 0x64ac, 0x7fd8, 0x5ced, 0x4fcf, 0x7a8d, 0x5207,\n  0x8304, 0x4e14, 0x602f, 0x7a83, 0x94a6, 0x4fb5, 0x4eb2, 0x79e6,\n  0x7434, 0x52e4, 0x82b9, 0x64d2, 0x79bd, 0x5bdd, 0x6c81, 0x9752,\n  0x8f7b, 0x6c22, 0x503e, 0x537f, 0x6e05, 0x64ce, 0x6674, 0x6c30,\n  0x60c5, 0x9877, 0x8bf7, 0x5e86, 0x743c, 0x7a77, 0x79cb, 0x4e18,\n  0x90b1, 0x7403, 0x6c42, 0x56da, 0x914b, 0x6cc5, 0x8d8b, 0x533a,\n  0x86c6, 0x66f2, 0x8eaf, 0x5c48, 0x9a71, 0x6e20,\n  /* 0x48 */\n  0x53d6, 0x5a36, 0x9f8b, 0x8da3, 0x53bb, 0x5708, 0x98a7, 0x6743,\n  0x919b, 0x6cc9, 0x5168, 0x75ca, 0x62f3, 0x72ac, 0x5238, 0x529d,\n  0x7f3a, 0x7094, 0x7638, 0x5374, 0x9e4a, 0x69b7, 0x786e, 0x96c0,\n  0x88d9, 0x7fa4, 0x7136, 0x71c3, 0x5189, 0x67d3, 0x74e4, 0x58e4,\n  0x6518, 0x56b7, 0x8ba9, 0x9976, 0x6270, 0x7ed5, 0x60f9, 0x70ed,\n  0x58ec, 0x4ec1, 0x4eba, 0x5fcd, 0x97e7, 0x4efb, 0x8ba4, 0x5203,\n  0x598a, 0x7eab, 0x6254, 0x4ecd, 0x65e5, 0x620e, 0x8338, 0x84c9,\n  0x8363, 0x878d, 0x7194, 0x6eb6, 0x5bb9, 0x7ed2, 0x5197, 0x63c9,\n  0x67d4, 0x8089, 0x8339, 0x8815, 0x5112, 0x5b7a, 0x5982, 0x8fb1,\n  0x4e73, 0x6c5d, 0x5165, 0x8925, 0x8f6f, 0x962e, 0x854a, 0x745e,\n  0x9510, 0x95f0, 0x6da6, 0x82e5, 0x5f31, 0x6492, 0x6d12, 0x8428,\n  0x816e, 0x9cc3, 0x585e, 0x8d5b, 0x4e09, 0x53c1,\n  /* 0x49 */\n  0x4f1e, 0x6563, 0x6851, 0x55d3, 0x4e27, 0x6414, 0x9a9a, 0x626b,\n  0x5ac2, 0x745f, 0x8272, 0x6da9, 0x68ee, 0x50e7, 0x838e, 0x7802,\n  0x6740, 0x5239, 0x6c99, 0x7eb1, 0x50bb, 0x5565, 0x715e, 0x7b5b,\n  0x6652, 0x73ca, 0x82eb, 0x6749, 0x5c71, 0x5220, 0x717d, 0x886b,\n  0x95ea, 0x9655, 0x64c5, 0x8d61, 0x81b3, 0x5584, 0x6c55, 0x6247,\n  0x7f2e, 0x5892, 0x4f24, 0x5546, 0x8d4f, 0x664c, 0x4e0a, 0x5c1a,\n  0x88f3, 0x68a2, 0x634e, 0x7a0d, 0x70e7, 0x828d, 0x52fa, 0x97f6,\n  0x5c11, 0x54e8, 0x90b5, 0x7ecd, 0x5962, 0x8d4a, 0x86c7, 0x820c,\n  0x820d, 0x8d66, 0x6444, 0x5c04, 0x6151, 0x6d89, 0x793e, 0x8bbe,\n  0x7837, 0x7533, 0x547b, 0x4f38, 0x8eab, 0x6df1, 0x5a20, 0x7ec5,\n  0x795e, 0x6c88, 0x5ba1, 0x5a76, 0x751a, 0x80be, 0x614e, 0x6e17,\n  0x58f0, 0x751f, 0x7525, 0x7272, 0x5347, 0x7ef3,\n  /* 0x4a */\n  0x7701, 0x76db, 0x5269, 0x80dc, 0x5723, 0x5e08, 0x5931, 0x72ee,\n  0x65bd, 0x6e7f, 0x8bd7, 0x5c38, 0x8671, 0x5341, 0x77f3, 0x62fe,\n  0x65f6, 0x4ec0, 0x98df, 0x8680, 0x5b9e, 0x8bc6, 0x53f2, 0x77e2,\n  0x4f7f, 0x5c4e, 0x9a76, 0x59cb, 0x5f0f, 0x793a, 0x58eb, 0x4e16,\n  0x67ff, 0x4e8b, 0x62ed, 0x8a93, 0x901d, 0x52bf, 0x662f, 0x55dc,\n  0x566c, 0x9002, 0x4ed5, 0x4f8d, 0x91ca, 0x9970, 0x6c0f, 0x5e02,\n  0x6043, 0x5ba4, 0x89c6, 0x8bd5, 0x6536, 0x624b, 0x9996, 0x5b88,\n  0x5bff, 0x6388, 0x552e, 0x53d7, 0x7626, 0x517d, 0x852c, 0x67a2,\n  0x68b3, 0x6b8a, 0x6292, 0x8f93, 0x53d4, 0x8212, 0x6dd1, 0x758f,\n  0x4e66, 0x8d4e, 0x5b70, 0x719f, 0x85af, 0x6691, 0x66d9, 0x7f72,\n  0x8700, 0x9ecd, 0x9f20, 0x5c5e, 0x672f, 0x8ff0, 0x6811, 0x675f,\n  0x620d, 0x7ad6, 0x5885, 0x5eb6, 0x6570, 0x6f31,\n  /* 0x4b */\n  0x6055, 0x5237, 0x800d, 0x6454, 0x8870, 0x7529, 0x5e05, 0x6813,\n  0x62f4, 0x971c, 0x53cc, 0x723d, 0x8c01, 0x6c34, 0x7761, 0x7a0e,\n  0x542e, 0x77ac, 0x987a, 0x821c, 0x8bf4, 0x7855, 0x6714, 0x70c1,\n  0x65af, 0x6495, 0x5636, 0x601d, 0x79c1, 0x53f8, 0x4e1d, 0x6b7b,\n  0x8086, 0x5bfa, 0x55e3, 0x56db, 0x4f3a, 0x4f3c, 0x9972, 0x5df3,\n  0x677e, 0x8038, 0x6002, 0x9882, 0x9001, 0x5b8b, 0x8bbc, 0x8bf5,\n  0x641c, 0x8258, 0x64de, 0x55fd, 0x82cf, 0x9165, 0x4fd7, 0x7d20,\n  0x901f, 0x7c9f, 0x50f3, 0x5851, 0x6eaf, 0x5bbf, 0x8bc9, 0x8083,\n  0x9178, 0x849c, 0x7b97, 0x867d, 0x968b, 0x968f, 0x7ee5, 0x9ad3,\n  0x788e, 0x5c81, 0x7a57, 0x9042, 0x96a7, 0x795f, 0x5b59, 0x635f,\n  0x7b0b, 0x84d1, 0x68ad, 0x5506, 0x7f29, 0x7410, 0x7d22, 0x9501,\n  0x6240, 0x584c, 0x4ed6, 0x5b83, 0x5979, 0x5854,\n  /* 0x4c */\n  0x736d, 0x631e, 0x8e4b, 0x8e0f, 0x80ce, 0x82d4, 0x62ac, 0x53f0,\n  0x6cf0, 0x915e, 0x592a, 0x6001, 0x6c70, 0x574d, 0x644a, 0x8d2a,\n  0x762b, 0x6ee9, 0x575b, 0x6a80, 0x75f0, 0x6f6d, 0x8c2d, 0x8c08,\n  0x5766, 0x6bef, 0x8892, 0x78b3, 0x63a2, 0x53f9, 0x70ad, 0x6c64,\n  0x5858, 0x642a, 0x5802, 0x68e0, 0x819b, 0x5510, 0x7cd6, 0x5018,\n  0x8eba, 0x6dcc, 0x8d9f, 0x70eb, 0x638f, 0x6d9b, 0x6ed4, 0x7ee6,\n  0x8404, 0x6843, 0x9003, 0x6dd8, 0x9676, 0x8ba8, 0x5957, 0x7279,\n  0x85e4, 0x817e, 0x75bc, 0x8a8a, 0x68af, 0x5254, 0x8e22, 0x9511,\n  0x63d0, 0x9898, 0x8e44, 0x557c, 0x4f53, 0x66ff, 0x568f, 0x60d5,\n  0x6d95, 0x5243, 0x5c49, 0x5929, 0x6dfb, 0x586b, 0x7530, 0x751c,\n  0x606c, 0x8214, 0x8146, 0x6311, 0x6761, 0x8fe2, 0x773a, 0x8df3,\n  0x8d34, 0x94c1, 0x5e16, 0x5385, 0x542c, 0x70c3,\n  /* 0x4d */\n  0x6c40, 0x5ef7, 0x505c, 0x4ead, 0x5ead, 0x633a, 0x8247, 0x901a,\n  0x6850, 0x916e, 0x77b3, 0x540c, 0x94dc, 0x5f64, 0x7ae5, 0x6876,\n  0x6345, 0x7b52, 0x7edf, 0x75db, 0x5077, 0x6295, 0x5934, 0x900f,\n  0x51f8, 0x79c3, 0x7a81, 0x56fe, 0x5f92, 0x9014, 0x6d82, 0x5c60,\n  0x571f, 0x5410, 0x5154, 0x6e4d, 0x56e2, 0x63a8, 0x9893, 0x817f,\n  0x8715, 0x892a, 0x9000, 0x541e, 0x5c6f, 0x81c0, 0x62d6, 0x6258,\n  0x8131, 0x9e35, 0x9640, 0x9a6e, 0x9a7c, 0x692d, 0x59a5, 0x62d3,\n  0x553e, 0x6316, 0x54c7, 0x86d9, 0x6d3c, 0x5a03, 0x74e6, 0x889c,\n  0x6b6a, 0x5916, 0x8c4c, 0x5f2f, 0x6e7e, 0x73a9, 0x987d, 0x4e38,\n  0x70f7, 0x5b8c, 0x7897, 0x633d, 0x665a, 0x7696, 0x60cb, 0x5b9b,\n  0x5a49, 0x4e07, 0x8155, 0x6c6a, 0x738b, 0x4ea1, 0x6789, 0x7f51,\n  0x5f80, 0x65fa, 0x671b, 0x5fd8, 0x5984, 0x5a01,\n  /* 0x4e */\n  0x5dcd, 0x5fae, 0x5371, 0x97e6, 0x8fdd, 0x6845, 0x56f4, 0x552f,\n  0x60df, 0x4e3a, 0x6f4d, 0x7ef4, 0x82c7, 0x840e, 0x59d4, 0x4f1f,\n  0x4f2a, 0x5c3e, 0x7eac, 0x672a, 0x851a, 0x5473, 0x754f, 0x80c3,\n  0x5582, 0x9b4f, 0x4f4d, 0x6e2d, 0x8c13, 0x5c09, 0x6170, 0x536b,\n  0x761f, 0x6e29, 0x868a, 0x6587, 0x95fb, 0x7eb9, 0x543b, 0x7a33,\n  0x7d0a, 0x95ee, 0x55e1, 0x7fc1, 0x74ee, 0x631d, 0x8717, 0x6da1,\n  0x7a9d, 0x6211, 0x65a1, 0x5367, 0x63e1, 0x6c83, 0x5deb, 0x545c,\n  0x94a8, 0x4e4c, 0x6c61, 0x8bec, 0x5c4b, 0x65e0, 0x829c, 0x68a7,\n  0x543e, 0x5434, 0x6bcb, 0x6b66, 0x4e94, 0x6342, 0x5348, 0x821e,\n  0x4f0d, 0x4fae, 0x575e, 0x620a, 0x96fe, 0x6664, 0x7269, 0x52ff,\n  0x52a1, 0x609f, 0x8bef, 0x6614, 0x7199, 0x6790, 0x897f, 0x7852,\n  0x77fd, 0x6670, 0x563b, 0x5438, 0x9521, 0x727a,\n  /* 0x4f */\n  0x7a00, 0x606f, 0x5e0c, 0x6089, 0x819d, 0x5915, 0x60dc, 0x7184,\n  0x70ef, 0x6eaa, 0x6c50, 0x7280, 0x6a84, 0x88ad, 0x5e2d, 0x4e60,\n  0x5ab3, 0x559c, 0x94e3, 0x6d17, 0x7cfb, 0x9699, 0x620f, 0x7ec6,\n  0x778e, 0x867e, 0x5323, 0x971e, 0x8f96, 0x6687, 0x5ce1, 0x4fa0,\n  0x72ed, 0x4e0b, 0x53a6, 0x590f, 0x5413, 0x6380, 0x9528, 0x5148,\n  0x4ed9, 0x9c9c, 0x7ea4, 0x54b8, 0x8d24, 0x8854, 0x8237, 0x95f2,\n  0x6d8e, 0x5f26, 0x5acc, 0x663e, 0x9669, 0x73b0, 0x732e, 0x53bf,\n  0x817a, 0x9985, 0x7fa1, 0x5baa, 0x9677, 0x9650, 0x7ebf, 0x76f8,\n  0x53a2, 0x9576, 0x9999, 0x7bb1, 0x8944, 0x6e58, 0x4e61, 0x7fd4,\n  0x7965, 0x8be6, 0x60f3, 0x54cd, 0x4eab, 0x9879, 0x5df7, 0x6a61,\n  0x50cf, 0x5411, 0x8c61, 0x8427, 0x785d, 0x9704, 0x524a, 0x54ee,\n  0x56a3, 0x9500, 0x6d88, 0x5bb5, 0x6dc6, 0x6653,\n  /* 0x50 */\n  0x5c0f, 0x5b5d, 0x6821, 0x8096, 0x5578, 0x7b11, 0x6548, 0x6954,\n  0x4e9b, 0x6b47, 0x874e, 0x978b, 0x534f, 0x631f, 0x643a, 0x90aa,\n  0x659c, 0x80c1, 0x8c10, 0x5199, 0x68b0, 0x5378, 0x87f9, 0x61c8,\n  0x6cc4, 0x6cfb, 0x8c22, 0x5c51, 0x85aa, 0x82af, 0x950c, 0x6b23,\n  0x8f9b, 0x65b0, 0x5ffb, 0x5fc3, 0x4fe1, 0x8845, 0x661f, 0x8165,\n  0x7329, 0x60fa, 0x5174, 0x5211, 0x578b, 0x5f62, 0x90a2, 0x884c,\n  0x9192, 0x5e78, 0x674f, 0x6027, 0x59d3, 0x5144, 0x51f6, 0x80f8,\n  0x5308, 0x6c79, 0x96c4, 0x718a, 0x4f11, 0x4fee, 0x7f9e, 0x673d,\n  0x55c5, 0x9508, 0x79c0, 0x8896, 0x7ee3, 0x589f, 0x620c, 0x9700,\n  0x865a, 0x5618, 0x987b, 0x5f90, 0x8bb8, 0x84c4, 0x9157, 0x53d9,\n  0x65ed, 0x5e8f, 0x755c, 0x6064, 0x7d6e, 0x5a7f, 0x7eea, 0x7eed,\n  0x8f69, 0x55a7, 0x5ba3, 0x60ac, 0x65cb, 0x7384,\n  /* 0x51 */\n  0x9009, 0x7663, 0x7729, 0x7eda, 0x9774, 0x859b, 0x5b66, 0x7a74,\n  0x96ea, 0x8840, 0x52cb, 0x718f, 0x5faa, 0x65ec, 0x8be2, 0x5bfb,\n  0x9a6f, 0x5de1, 0x6b89, 0x6c5b, 0x8bad, 0x8baf, 0x900a, 0x8fc5,\n  0x538b, 0x62bc, 0x9e26, 0x9e2d, 0x5440, 0x4e2b, 0x82bd, 0x7259,\n  0x869c, 0x5d16, 0x8859, 0x6daf, 0x96c5, 0x54d1, 0x4e9a, 0x8bb6,\n  0x7109, 0x54bd, 0x9609, 0x70df, 0x6df9, 0x76d0, 0x4e25, 0x7814,\n  0x8712, 0x5ca9, 0x5ef6, 0x8a00, 0x989c, 0x960e, 0x708e, 0x6cbf,\n  0x5944, 0x63a9, 0x773c, 0x884d, 0x6f14, 0x8273, 0x5830, 0x71d5,\n  0x538c, 0x781a, 0x96c1, 0x5501, 0x5f66, 0x7130, 0x5bb4, 0x8c1a,\n  0x9a8c, 0x6b83, 0x592e, 0x9e2f, 0x79e7, 0x6768, 0x626c, 0x4f6f,\n  0x75a1, 0x7f8a, 0x6d0b, 0x9633, 0x6c27, 0x4ef0, 0x75d2, 0x517b,\n  0x6837, 0x6f3e, 0x9080, 0x8170, 0x5996, 0x7476,\n  /* 0x52 */\n  0x6447, 0x5c27, 0x9065, 0x7a91, 0x8c23, 0x59da, 0x54ac, 0x8200,\n  0x836f, 0x8981, 0x8000, 0x6930, 0x564e, 0x8036, 0x7237, 0x91ce,\n  0x51b6, 0x4e5f, 0x9875, 0x6396, 0x4e1a, 0x53f6, 0x66f3, 0x814b,\n  0x591c, 0x6db2, 0x4e00, 0x58f9, 0x533b, 0x63d6, 0x94f1, 0x4f9d,\n  0x4f0a, 0x8863, 0x9890, 0x5937, 0x9057, 0x79fb, 0x4eea, 0x80f0,\n  0x7591, 0x6c82, 0x5b9c, 0x59e8, 0x5f5d, 0x6905, 0x8681, 0x501a,\n  0x5df2, 0x4e59, 0x77e3, 0x4ee5, 0x827a, 0x6291, 0x6613, 0x9091,\n  0x5c79, 0x4ebf, 0x5f79, 0x81c6, 0x9038, 0x8084, 0x75ab, 0x4ea6,\n  0x88d4, 0x610f, 0x6bc5, 0x5fc6, 0x4e49, 0x76ca, 0x6ea2, 0x8be3,\n  0x8bae, 0x8c0a, 0x8bd1, 0x5f02, 0x7ffc, 0x7fcc, 0x7ece, 0x8335,\n  0x836b, 0x56e0, 0x6bb7, 0x97f3, 0x9634, 0x59fb, 0x541f, 0x94f6,\n  0x6deb, 0x5bc5, 0x996e, 0x5c39, 0x5f15, 0x9690,\n  /* 0x53 */\n  0x5370, 0x82f1, 0x6a31, 0x5a74, 0x9e70, 0x5e94, 0x7f28, 0x83b9,\n  0x8424, 0x8425, 0x8367, 0x8747, 0x8fce, 0x8d62, 0x76c8, 0x5f71,\n  0x9896, 0x786c, 0x6620, 0x54df, 0x62e5, 0x4f63, 0x81c3, 0x75c8,\n  0x5eb8, 0x96cd, 0x8e0a, 0x86f9, 0x548f, 0x6cf3, 0x6d8c, 0x6c38,\n  0x607f, 0x52c7, 0x7528, 0x5e7d, 0x4f18, 0x60a0, 0x5fe7, 0x5c24,\n  0x7531, 0x90ae, 0x94c0, 0x72b9, 0x6cb9, 0x6e38, 0x9149, 0x6709,\n  0x53cb, 0x53f3, 0x4f51, 0x91c9, 0x8bf1, 0x53c8, 0x5e7c, 0x8fc2,\n  0x6de4, 0x4e8e, 0x76c2, 0x6986, 0x865e, 0x611a, 0x8206, 0x4f59,\n  0x4fde, 0x903e, 0x9c7c, 0x6109, 0x6e1d, 0x6e14, 0x9685, 0x4e88,\n  0x5a31, 0x96e8, 0x4e0e, 0x5c7f, 0x79b9, 0x5b87, 0x8bed, 0x7fbd,\n  0x7389, 0x57df, 0x828b, 0x90c1, 0x5401, 0x9047, 0x55bb, 0x5cea,\n  0x5fa1, 0x6108, 0x6b32, 0x72f1, 0x80b2, 0x8a89,\n  /* 0x54 */\n  0x6d74, 0x5bd3, 0x88d5, 0x9884, 0x8c6b, 0x9a6d, 0x9e33, 0x6e0a,\n  0x51a4, 0x5143, 0x57a3, 0x8881, 0x539f, 0x63f4, 0x8f95, 0x56ed,\n  0x5458, 0x5706, 0x733f, 0x6e90, 0x7f18, 0x8fdc, 0x82d1, 0x613f,\n  0x6028, 0x9662, 0x66f0, 0x7ea6, 0x8d8a, 0x8dc3, 0x94a5, 0x5cb3,\n  0x7ca4, 0x6708, 0x60a6, 0x9605, 0x8018, 0x4e91, 0x90e7, 0x5300,\n  0x9668, 0x5141, 0x8fd0, 0x8574, 0x915d, 0x6655, 0x97f5, 0x5b55,\n  0x531d, 0x7838, 0x6742, 0x683d, 0x54c9, 0x707e, 0x5bb0, 0x8f7d,\n  0x518d, 0x5728, 0x54b1, 0x6512, 0x6682, 0x8d5e, 0x8d43, 0x810f,\n  0x846c, 0x906d, 0x7cdf, 0x51ff, 0x85fb, 0x67a3, 0x65e9, 0x6fa1,\n  0x86a4, 0x8e81, 0x566a, 0x9020, 0x7682, 0x7076, 0x71e5, 0x8d23,\n  0x62e9, 0x5219, 0x6cfd, 0x8d3c, 0x600e, 0x589e, 0x618e, 0x66fe,\n  0x8d60, 0x624e, 0x55b3, 0x6e23, 0x672d, 0x8f67,\n  /* 0x55 */\n  0x94e1, 0x95f8, 0x7728, 0x6805, 0x69a8, 0x548b, 0x4e4d, 0x70b8,\n  0x8bc8, 0x6458, 0x658b, 0x5b85, 0x7a84, 0x503a, 0x5be8, 0x77bb,\n  0x6be1, 0x8a79, 0x7c98, 0x6cbe, 0x76cf, 0x65a9, 0x8f97, 0x5d2d,\n  0x5c55, 0x8638, 0x6808, 0x5360, 0x6218, 0x7ad9, 0x6e5b, 0x7efd,\n  0x6a1f, 0x7ae0, 0x5f70, 0x6f33, 0x5f20, 0x638c, 0x6da8, 0x6756,\n  0x4e08, 0x5e10, 0x8d26, 0x4ed7, 0x80c0, 0x7634, 0x969c, 0x62db,\n  0x662d, 0x627e, 0x6cbc, 0x8d75, 0x7167, 0x7f69, 0x5146, 0x8087,\n  0x53ec, 0x906e, 0x6298, 0x54f2, 0x86f0, 0x8f99, 0x8005, 0x9517,\n  0x8517, 0x8fd9, 0x6d59, 0x73cd, 0x659f, 0x771f, 0x7504, 0x7827,\n  0x81fb, 0x8d1e, 0x9488, 0x4fa6, 0x6795, 0x75b9, 0x8bca, 0x9707,\n  0x632f, 0x9547, 0x9635, 0x84b8, 0x6323, 0x7741, 0x5f81, 0x72f0,\n  0x4e89, 0x6014, 0x6574, 0x62ef, 0x6b63, 0x653f,\n  /* 0x56 */\n  0x5e27, 0x75c7, 0x90d1, 0x8bc1, 0x829d, 0x679d, 0x652f, 0x5431,\n  0x8718, 0x77e5, 0x80a2, 0x8102, 0x6c41, 0x4e4b, 0x7ec7, 0x804c,\n  0x76f4, 0x690d, 0x6b96, 0x6267, 0x503c, 0x4f84, 0x5740, 0x6307,\n  0x6b62, 0x8dbe, 0x53ea, 0x65e8, 0x7eb8, 0x5fd7, 0x631a, 0x63b7,\n  0x81f3, 0x81f4, 0x7f6e, 0x5e1c, 0x5cd9, 0x5236, 0x667a, 0x79e9,\n  0x7a1a, 0x8d28, 0x7099, 0x75d4, 0x6ede, 0x6cbb, 0x7a92, 0x4e2d,\n  0x76c5, 0x5fe0, 0x949f, 0x8877, 0x7ec8, 0x79cd, 0x80bf, 0x91cd,\n  0x4ef2, 0x4f17, 0x821f, 0x5468, 0x5dde, 0x6d32, 0x8bcc, 0x7ca5,\n  0x8f74, 0x8098, 0x5e1a, 0x5492, 0x76b1, 0x5b99, 0x663c, 0x9aa4,\n  0x73e0, 0x682a, 0x86db, 0x6731, 0x732a, 0x8bf8, 0x8bdb, 0x9010,\n  0x7af9, 0x70db, 0x716e, 0x62c4, 0x77a9, 0x5631, 0x4e3b, 0x8457,\n  0x67f1, 0x52a9, 0x86c0, 0x8d2e, 0x94f8, 0x7b51,\n  /* 0x57 */\n  0x4f4f, 0x6ce8, 0x795d, 0x9a7b, 0x6293, 0x722a, 0x62fd, 0x4e13,\n  0x7816, 0x8f6c, 0x64b0, 0x8d5a, 0x7bc6, 0x6869, 0x5e84, 0x88c5,\n  0x5986, 0x649e, 0x58ee, 0x72b6, 0x690e, 0x9525, 0x8ffd, 0x8d58,\n  0x5760, 0x7f00, 0x8c06, 0x51c6, 0x6349, 0x62d9, 0x5353, 0x684c,\n  0x7422, 0x8301, 0x914c, 0x5544, 0x7740, 0x707c, 0x6d4a, 0x5179,\n  0x54a8, 0x8d44, 0x59ff, 0x6ecb, 0x6dc4, 0x5b5c, 0x7d2b, 0x4ed4,\n  0x7c7d, 0x6ed3, 0x5b50, 0x81ea, 0x6e0d, 0x5b57, 0x9b03, 0x68d5,\n  0x8e2a, 0x5b97, 0x7efc, 0x603b, 0x7eb5, 0x90b9, 0x8d70, 0x594f,\n  0x63cd, 0x79df, 0x8db3, 0x5352, 0x65cf, 0x7956, 0x8bc5, 0x963b,\n  0x7ec4, 0x94bb, 0x7e82, 0x5634, 0x9189, 0x6700, 0x7f6a, 0x5c0a,\n  0x9075, 0x6628, 0x5de6, 0x4f50, 0x67de, 0x505a, 0x4f5c, 0x5750,\n  0x5ea7, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x58 */\n  0x4e8d, 0x4e0c, 0x5140, 0x4e10, 0x5eff, 0x5345, 0x4e15, 0x4e98,\n  0x4e1e, 0x9b32, 0x5b6c, 0x5669, 0x4e28, 0x79ba, 0x4e3f, 0x5315,\n  0x4e47, 0x592d, 0x723b, 0x536e, 0x6c10, 0x56df, 0x80e4, 0x9997,\n  0x6bd3, 0x777e, 0x9f17, 0x4e36, 0x4e9f, 0x9f10, 0x4e5c, 0x4e69,\n  0x4e93, 0x8288, 0x5b5b, 0x556c, 0x560f, 0x4ec4, 0x538d, 0x539d,\n  0x53a3, 0x53a5, 0x53ae, 0x9765, 0x8d5d, 0x531a, 0x53f5, 0x5326,\n  0x532e, 0x533e, 0x8d5c, 0x5366, 0x5363, 0x5202, 0x5208, 0x520e,\n  0x522d, 0x5233, 0x523f, 0x5240, 0x524c, 0x525e, 0x5261, 0x525c,\n  0x84af, 0x527d, 0x5282, 0x5281, 0x5290, 0x5293, 0x5182, 0x7f54,\n  0x4ebb, 0x4ec3, 0x4ec9, 0x4ec2, 0x4ee8, 0x4ee1, 0x4eeb, 0x4ede,\n  0x4f1b, 0x4ef3, 0x4f22, 0x4f64, 0x4ef5, 0x4f25, 0x4f27, 0x4f09,\n  0x4f2b, 0x4f5e, 0x4f67, 0x6538, 0x4f5a, 0x4f5d,\n  /* 0x59 */\n  0x4f5f, 0x4f57, 0x4f32, 0x4f3d, 0x4f76, 0x4f74, 0x4f91, 0x4f89,\n  0x4f83, 0x4f8f, 0x4f7e, 0x4f7b, 0x4faa, 0x4f7c, 0x4fac, 0x4f94,\n  0x4fe6, 0x4fe8, 0x4fea, 0x4fc5, 0x4fda, 0x4fe3, 0x4fdc, 0x4fd1,\n  0x4fdf, 0x4ff8, 0x5029, 0x504c, 0x4ff3, 0x502c, 0x500f, 0x502e,\n  0x502d, 0x4ffe, 0x501c, 0x500c, 0x5025, 0x5028, 0x507e, 0x5043,\n  0x5055, 0x5048, 0x504e, 0x506c, 0x507b, 0x50a5, 0x50a7, 0x50a9,\n  0x50ba, 0x50d6, 0x5106, 0x50ed, 0x50ec, 0x50e6, 0x50ee, 0x5107,\n  0x510b, 0x4edd, 0x6c3d, 0x4f58, 0x4f65, 0x4fce, 0x9fa0, 0x6c46,\n  0x7c74, 0x516e, 0x5dfd, 0x9ec9, 0x9998, 0x5181, 0x5914, 0x52f9,\n  0x530d, 0x8a07, 0x5310, 0x51eb, 0x5919, 0x5155, 0x4ea0, 0x5156,\n  0x4eb3, 0x886e, 0x88a4, 0x4eb5, 0x8114, 0x88d2, 0x7980, 0x5b34,\n  0x8803, 0x7fb8, 0x51ab, 0x51b1, 0x51bd, 0x51bc,\n  /* 0x5a */\n  0x51c7, 0x5196, 0x51a2, 0x51a5, 0x8ba0, 0x8ba6, 0x8ba7, 0x8baa,\n  0x8bb4, 0x8bb5, 0x8bb7, 0x8bc2, 0x8bc3, 0x8bcb, 0x8bcf, 0x8bce,\n  0x8bd2, 0x8bd3, 0x8bd4, 0x8bd6, 0x8bd8, 0x8bd9, 0x8bdc, 0x8bdf,\n  0x8be0, 0x8be4, 0x8be8, 0x8be9, 0x8bee, 0x8bf0, 0x8bf3, 0x8bf6,\n  0x8bf9, 0x8bfc, 0x8bff, 0x8c00, 0x8c02, 0x8c04, 0x8c07, 0x8c0c,\n  0x8c0f, 0x8c11, 0x8c12, 0x8c14, 0x8c15, 0x8c16, 0x8c19, 0x8c1b,\n  0x8c18, 0x8c1d, 0x8c1f, 0x8c20, 0x8c21, 0x8c25, 0x8c27, 0x8c2a,\n  0x8c2b, 0x8c2e, 0x8c2f, 0x8c32, 0x8c33, 0x8c35, 0x8c36, 0x5369,\n  0x537a, 0x961d, 0x9622, 0x9621, 0x9631, 0x962a, 0x963d, 0x963c,\n  0x9642, 0x9649, 0x9654, 0x965f, 0x9667, 0x966c, 0x9672, 0x9674,\n  0x9688, 0x968d, 0x9697, 0x96b0, 0x9097, 0x909b, 0x909d, 0x9099,\n  0x90ac, 0x90a1, 0x90b4, 0x90b3, 0x90b6, 0x90ba,\n  /* 0x5b */\n  0x90b8, 0x90b0, 0x90cf, 0x90c5, 0x90be, 0x90d0, 0x90c4, 0x90c7,\n  0x90d3, 0x90e6, 0x90e2, 0x90dc, 0x90d7, 0x90db, 0x90eb, 0x90ef,\n  0x90fe, 0x9104, 0x9122, 0x911e, 0x9123, 0x9131, 0x912f, 0x9139,\n  0x9143, 0x9146, 0x520d, 0x5942, 0x52a2, 0x52ac, 0x52ad, 0x52be,\n  0x54ff, 0x52d0, 0x52d6, 0x52f0, 0x53df, 0x71ee, 0x77cd, 0x5ef4,\n  0x51f5, 0x51fc, 0x9b2f, 0x53b6, 0x5f01, 0x755a, 0x5def, 0x574c,\n  0x57a9, 0x57a1, 0x587e, 0x58bc, 0x58c5, 0x58d1, 0x5729, 0x572c,\n  0x572a, 0x5733, 0x5739, 0x572e, 0x572f, 0x575c, 0x573b, 0x5742,\n  0x5769, 0x5785, 0x576b, 0x5786, 0x577c, 0x577b, 0x5768, 0x576d,\n  0x5776, 0x5773, 0x57ad, 0x57a4, 0x578c, 0x57b2, 0x57cf, 0x57a7,\n  0x57b4, 0x5793, 0x57a0, 0x57d5, 0x57d8, 0x57da, 0x57d9, 0x57d2,\n  0x57b8, 0x57f4, 0x57ef, 0x57f8, 0x57e4, 0x57dd,\n  /* 0x5c */\n  0x580b, 0x580d, 0x57fd, 0x57ed, 0x5800, 0x581e, 0x5819, 0x5844,\n  0x5820, 0x5865, 0x586c, 0x5881, 0x5889, 0x589a, 0x5880, 0x99a8,\n  0x9f19, 0x61ff, 0x8279, 0x827d, 0x827f, 0x828f, 0x828a, 0x82a8,\n  0x8284, 0x828e, 0x8291, 0x8297, 0x8299, 0x82ab, 0x82b8, 0x82be,\n  0x82b0, 0x82c8, 0x82ca, 0x82e3, 0x8298, 0x82b7, 0x82ae, 0x82cb,\n  0x82cc, 0x82c1, 0x82a9, 0x82b4, 0x82a1, 0x82aa, 0x829f, 0x82c4,\n  0x82ce, 0x82a4, 0x82e1, 0x8309, 0x82f7, 0x82e4, 0x830f, 0x8307,\n  0x82dc, 0x82f4, 0x82d2, 0x82d8, 0x830c, 0x82fb, 0x82d3, 0x8311,\n  0x831a, 0x8306, 0x8314, 0x8315, 0x82e0, 0x82d5, 0x831c, 0x8351,\n  0x835b, 0x835c, 0x8308, 0x8392, 0x833c, 0x8334, 0x8331, 0x839b,\n  0x835e, 0x832f, 0x834f, 0x8347, 0x8343, 0x835f, 0x8340, 0x8317,\n  0x8360, 0x832d, 0x833a, 0x8333, 0x8366, 0x8365,\n  /* 0x5d */\n  0x8368, 0x831b, 0x8369, 0x836c, 0x836a, 0x836d, 0x836e, 0x83b0,\n  0x8378, 0x83b3, 0x83b4, 0x83a0, 0x83aa, 0x8393, 0x839c, 0x8385,\n  0x837c, 0x83b6, 0x83a9, 0x837d, 0x83b8, 0x837b, 0x8398, 0x839e,\n  0x83a8, 0x83ba, 0x83bc, 0x83c1, 0x8401, 0x83e5, 0x83d8, 0x5807,\n  0x8418, 0x840b, 0x83dd, 0x83fd, 0x83d6, 0x841c, 0x8438, 0x8411,\n  0x8406, 0x83d4, 0x83df, 0x840f, 0x8403, 0x83f8, 0x83f9, 0x83ea,\n  0x83c5, 0x83c0, 0x8426, 0x83f0, 0x83e1, 0x845c, 0x8451, 0x845a,\n  0x8459, 0x8473, 0x8487, 0x8488, 0x847a, 0x8489, 0x8478, 0x843c,\n  0x8446, 0x8469, 0x8476, 0x848c, 0x848e, 0x8431, 0x846d, 0x84c1,\n  0x84cd, 0x84d0, 0x84e6, 0x84bd, 0x84d3, 0x84ca, 0x84bf, 0x84ba,\n  0x84e0, 0x84a1, 0x84b9, 0x84b4, 0x8497, 0x84e5, 0x84e3, 0x850c,\n  0x750d, 0x8538, 0x84f0, 0x8539, 0x851f, 0x853a,\n  /* 0x5e */\n  0x8556, 0x853b, 0x84ff, 0x84fc, 0x8559, 0x8548, 0x8568, 0x8564,\n  0x855e, 0x857a, 0x77a2, 0x8543, 0x8572, 0x857b, 0x85a4, 0x85a8,\n  0x8587, 0x858f, 0x8579, 0x85ae, 0x859c, 0x8585, 0x85b9, 0x85b7,\n  0x85b0, 0x85d3, 0x85c1, 0x85dc, 0x85ff, 0x8627, 0x8605, 0x8629,\n  0x8616, 0x863c, 0x5efe, 0x5f08, 0x593c, 0x5941, 0x8037, 0x5955,\n  0x595a, 0x5958, 0x530f, 0x5c22, 0x5c25, 0x5c2c, 0x5c34, 0x624c,\n  0x626a, 0x629f, 0x62bb, 0x62ca, 0x62da, 0x62d7, 0x62ee, 0x6322,\n  0x62f6, 0x6339, 0x634b, 0x6343, 0x63ad, 0x63f6, 0x6371, 0x637a,\n  0x638e, 0x63b4, 0x636d, 0x63ac, 0x638a, 0x6369, 0x63ae, 0x63bc,\n  0x63f2, 0x63f8, 0x63e0, 0x63ff, 0x63c4, 0x63de, 0x63ce, 0x6452,\n  0x63c6, 0x63be, 0x6445, 0x6441, 0x640b, 0x641b, 0x6420, 0x640c,\n  0x6426, 0x6421, 0x645e, 0x6484, 0x646d, 0x6496,\n  /* 0x5f */\n  0x647a, 0x64b7, 0x64b8, 0x6499, 0x64ba, 0x64c0, 0x64d0, 0x64d7,\n  0x64e4, 0x64e2, 0x6509, 0x6525, 0x652e, 0x5f0b, 0x5fd2, 0x7519,\n  0x5f11, 0x535f, 0x53f1, 0x53fd, 0x53e9, 0x53e8, 0x53fb, 0x5412,\n  0x5416, 0x5406, 0x544b, 0x5452, 0x5453, 0x5454, 0x5456, 0x5443,\n  0x5421, 0x5457, 0x5459, 0x5423, 0x5432, 0x5482, 0x5494, 0x5477,\n  0x5471, 0x5464, 0x549a, 0x549b, 0x5484, 0x5476, 0x5466, 0x549d,\n  0x54d0, 0x54ad, 0x54c2, 0x54b4, 0x54d2, 0x54a7, 0x54a6, 0x54d3,\n  0x54d4, 0x5472, 0x54a3, 0x54d5, 0x54bb, 0x54bf, 0x54cc, 0x54d9,\n  0x54da, 0x54dc, 0x54a9, 0x54aa, 0x54a4, 0x54dd, 0x54cf, 0x54de,\n  0x551b, 0x54e7, 0x5520, 0x54fd, 0x5514, 0x54f3, 0x5522, 0x5523,\n  0x550f, 0x5511, 0x5527, 0x552a, 0x5567, 0x558f, 0x55b5, 0x5549,\n  0x556d, 0x5541, 0x5555, 0x553f, 0x5550, 0x553c,\n  /* 0x60 */\n  0x5537, 0x5556, 0x5575, 0x5576, 0x5577, 0x5533, 0x5530, 0x555c,\n  0x558b, 0x55d2, 0x5583, 0x55b1, 0x55b9, 0x5588, 0x5581, 0x559f,\n  0x557e, 0x55d6, 0x5591, 0x557b, 0x55df, 0x55bd, 0x55be, 0x5594,\n  0x5599, 0x55ea, 0x55f7, 0x55c9, 0x561f, 0x55d1, 0x55eb, 0x55ec,\n  0x55d4, 0x55e6, 0x55dd, 0x55c4, 0x55ef, 0x55e5, 0x55f2, 0x55f3,\n  0x55cc, 0x55cd, 0x55e8, 0x55f5, 0x55e4, 0x8f94, 0x561e, 0x5608,\n  0x560c, 0x5601, 0x5624, 0x5623, 0x55fe, 0x5600, 0x5627, 0x562d,\n  0x5658, 0x5639, 0x5657, 0x562c, 0x564d, 0x5662, 0x5659, 0x565c,\n  0x564c, 0x5654, 0x5686, 0x5664, 0x5671, 0x566b, 0x567b, 0x567c,\n  0x5685, 0x5693, 0x56af, 0x56d4, 0x56d7, 0x56dd, 0x56e1, 0x56f5,\n  0x56eb, 0x56f9, 0x56ff, 0x5704, 0x570a, 0x5709, 0x571c, 0x5e0f,\n  0x5e19, 0x5e14, 0x5e11, 0x5e31, 0x5e3b, 0x5e3c,\n  /* 0x61 */\n  0x5e37, 0x5e44, 0x5e54, 0x5e5b, 0x5e5e, 0x5e61, 0x5c8c, 0x5c7a,\n  0x5c8d, 0x5c90, 0x5c96, 0x5c88, 0x5c98, 0x5c99, 0x5c91, 0x5c9a,\n  0x5c9c, 0x5cb5, 0x5ca2, 0x5cbd, 0x5cac, 0x5cab, 0x5cb1, 0x5ca3,\n  0x5cc1, 0x5cb7, 0x5cc4, 0x5cd2, 0x5ce4, 0x5ccb, 0x5ce5, 0x5d02,\n  0x5d03, 0x5d27, 0x5d26, 0x5d2e, 0x5d24, 0x5d1e, 0x5d06, 0x5d1b,\n  0x5d58, 0x5d3e, 0x5d34, 0x5d3d, 0x5d6c, 0x5d5b, 0x5d6f, 0x5d5d,\n  0x5d6b, 0x5d4b, 0x5d4a, 0x5d69, 0x5d74, 0x5d82, 0x5d99, 0x5d9d,\n  0x8c73, 0x5db7, 0x5dc5, 0x5f73, 0x5f77, 0x5f82, 0x5f87, 0x5f89,\n  0x5f8c, 0x5f95, 0x5f99, 0x5f9c, 0x5fa8, 0x5fad, 0x5fb5, 0x5fbc,\n  0x8862, 0x5f61, 0x72ad, 0x72b0, 0x72b4, 0x72b7, 0x72b8, 0x72c3,\n  0x72c1, 0x72ce, 0x72cd, 0x72d2, 0x72e8, 0x72ef, 0x72e9, 0x72f2,\n  0x72f4, 0x72f7, 0x7301, 0x72f3, 0x7303, 0x72fa,\n  /* 0x62 */\n  0x72fb, 0x7317, 0x7313, 0x7321, 0x730a, 0x731e, 0x731d, 0x7315,\n  0x7322, 0x7339, 0x7325, 0x732c, 0x7338, 0x7331, 0x7350, 0x734d,\n  0x7357, 0x7360, 0x736c, 0x736f, 0x737e, 0x821b, 0x5925, 0x98e7,\n  0x5924, 0x5902, 0x9963, 0x9967, 0x9968, 0x9969, 0x996a, 0x996b,\n  0x996c, 0x9974, 0x9977, 0x997d, 0x9980, 0x9984, 0x9987, 0x998a,\n  0x998d, 0x9990, 0x9991, 0x9993, 0x9994, 0x9995, 0x5e80, 0x5e91,\n  0x5e8b, 0x5e96, 0x5ea5, 0x5ea0, 0x5eb9, 0x5eb5, 0x5ebe, 0x5eb3,\n  0x8d53, 0x5ed2, 0x5ed1, 0x5edb, 0x5ee8, 0x5eea, 0x81ba, 0x5fc4,\n  0x5fc9, 0x5fd6, 0x5fcf, 0x6003, 0x5fee, 0x6004, 0x5fe1, 0x5fe4,\n  0x5ffe, 0x6005, 0x6006, 0x5fea, 0x5fed, 0x5ff8, 0x6019, 0x6035,\n  0x6026, 0x601b, 0x600f, 0x600d, 0x6029, 0x602b, 0x600a, 0x603f,\n  0x6021, 0x6078, 0x6079, 0x607b, 0x607a, 0x6042,\n  /* 0x63 */\n  0x606a, 0x607d, 0x6096, 0x609a, 0x60ad, 0x609d, 0x6083, 0x6092,\n  0x608c, 0x609b, 0x60ec, 0x60bb, 0x60b1, 0x60dd, 0x60d8, 0x60c6,\n  0x60da, 0x60b4, 0x6120, 0x6126, 0x6115, 0x6123, 0x60f4, 0x6100,\n  0x610e, 0x612b, 0x614a, 0x6175, 0x61ac, 0x6194, 0x61a7, 0x61b7,\n  0x61d4, 0x61f5, 0x5fdd, 0x96b3, 0x95e9, 0x95eb, 0x95f1, 0x95f3,\n  0x95f5, 0x95f6, 0x95fc, 0x95fe, 0x9603, 0x9604, 0x9606, 0x9608,\n  0x960a, 0x960b, 0x960c, 0x960d, 0x960f, 0x9612, 0x9615, 0x9616,\n  0x9617, 0x9619, 0x961a, 0x4e2c, 0x723f, 0x6215, 0x6c35, 0x6c54,\n  0x6c5c, 0x6c4a, 0x6ca3, 0x6c85, 0x6c90, 0x6c94, 0x6c8c, 0x6c68,\n  0x6c69, 0x6c74, 0x6c76, 0x6c86, 0x6ca9, 0x6cd0, 0x6cd4, 0x6cad,\n  0x6cf7, 0x6cf8, 0x6cf1, 0x6cd7, 0x6cb2, 0x6ce0, 0x6cd6, 0x6cfa,\n  0x6ceb, 0x6cee, 0x6cb1, 0x6cd3, 0x6cef, 0x6cfe,\n  /* 0x64 */\n  0x6d39, 0x6d27, 0x6d0c, 0x6d43, 0x6d48, 0x6d07, 0x6d04, 0x6d19,\n  0x6d0e, 0x6d2b, 0x6d4d, 0x6d2e, 0x6d35, 0x6d1a, 0x6d4f, 0x6d52,\n  0x6d54, 0x6d33, 0x6d91, 0x6d6f, 0x6d9e, 0x6da0, 0x6d5e, 0x6d93,\n  0x6d94, 0x6d5c, 0x6d60, 0x6d7c, 0x6d63, 0x6e1a, 0x6dc7, 0x6dc5,\n  0x6dde, 0x6e0e, 0x6dbf, 0x6de0, 0x6e11, 0x6de6, 0x6ddd, 0x6dd9,\n  0x6e16, 0x6dab, 0x6e0c, 0x6dae, 0x6e2b, 0x6e6e, 0x6e4e, 0x6e6b,\n  0x6eb2, 0x6e5f, 0x6e86, 0x6e53, 0x6e54, 0x6e32, 0x6e25, 0x6e44,\n  0x6edf, 0x6eb1, 0x6e98, 0x6ee0, 0x6f2d, 0x6ee2, 0x6ea5, 0x6ea7,\n  0x6ebd, 0x6ebb, 0x6eb7, 0x6ed7, 0x6eb4, 0x6ecf, 0x6e8f, 0x6ec2,\n  0x6e9f, 0x6f62, 0x6f46, 0x6f47, 0x6f24, 0x6f15, 0x6ef9, 0x6f2f,\n  0x6f36, 0x6f4b, 0x6f74, 0x6f2a, 0x6f09, 0x6f29, 0x6f89, 0x6f8d,\n  0x6f8c, 0x6f78, 0x6f72, 0x6f7c, 0x6f7a, 0x6fd1,\n  /* 0x65 */\n  0x6fc9, 0x6fa7, 0x6fb9, 0x6fb6, 0x6fc2, 0x6fe1, 0x6fee, 0x6fde,\n  0x6fe0, 0x6fef, 0x701a, 0x7023, 0x701b, 0x7039, 0x7035, 0x704f,\n  0x705e, 0x5b80, 0x5b84, 0x5b95, 0x5b93, 0x5ba5, 0x5bb8, 0x752f,\n  0x9a9e, 0x6434, 0x5be4, 0x5bee, 0x8930, 0x5bf0, 0x8e47, 0x8b07,\n  0x8fb6, 0x8fd3, 0x8fd5, 0x8fe5, 0x8fee, 0x8fe4, 0x8fe9, 0x8fe6,\n  0x8ff3, 0x8fe8, 0x9005, 0x9004, 0x900b, 0x9026, 0x9011, 0x900d,\n  0x9016, 0x9021, 0x9035, 0x9036, 0x902d, 0x902f, 0x9044, 0x9051,\n  0x9052, 0x9050, 0x9068, 0x9058, 0x9062, 0x905b, 0x66b9, 0x9074,\n  0x907d, 0x9082, 0x9088, 0x9083, 0x908b, 0x5f50, 0x5f57, 0x5f56,\n  0x5f58, 0x5c3b, 0x54ab, 0x5c50, 0x5c59, 0x5b71, 0x5c63, 0x5c66,\n  0x7fbc, 0x5f2a, 0x5f29, 0x5f2d, 0x8274, 0x5f3c, 0x9b3b, 0x5c6e,\n  0x5981, 0x5983, 0x598d, 0x59a9, 0x59aa, 0x59a3,\n  /* 0x66 */\n  0x5997, 0x59ca, 0x59ab, 0x599e, 0x59a4, 0x59d2, 0x59b2, 0x59af,\n  0x59d7, 0x59be, 0x5a05, 0x5a06, 0x59dd, 0x5a08, 0x59e3, 0x59d8,\n  0x59f9, 0x5a0c, 0x5a09, 0x5a32, 0x5a34, 0x5a11, 0x5a23, 0x5a13,\n  0x5a40, 0x5a67, 0x5a4a, 0x5a55, 0x5a3c, 0x5a62, 0x5a75, 0x80ec,\n  0x5aaa, 0x5a9b, 0x5a77, 0x5a7a, 0x5abe, 0x5aeb, 0x5ab2, 0x5ad2,\n  0x5ad4, 0x5ab8, 0x5ae0, 0x5ae3, 0x5af1, 0x5ad6, 0x5ae6, 0x5ad8,\n  0x5adc, 0x5b09, 0x5b17, 0x5b16, 0x5b32, 0x5b37, 0x5b40, 0x5c15,\n  0x5c1c, 0x5b5a, 0x5b65, 0x5b73, 0x5b51, 0x5b53, 0x5b62, 0x9a75,\n  0x9a77, 0x9a78, 0x9a7a, 0x9a7f, 0x9a7d, 0x9a80, 0x9a81, 0x9a85,\n  0x9a88, 0x9a8a, 0x9a90, 0x9a92, 0x9a93, 0x9a96, 0x9a98, 0x9a9b,\n  0x9a9c, 0x9a9d, 0x9a9f, 0x9aa0, 0x9aa2, 0x9aa3, 0x9aa5, 0x9aa7,\n  0x7e9f, 0x7ea1, 0x7ea3, 0x7ea5, 0x7ea8, 0x7ea9,\n  /* 0x67 */\n  0x7ead, 0x7eb0, 0x7ebe, 0x7ec0, 0x7ec1, 0x7ec2, 0x7ec9, 0x7ecb,\n  0x7ecc, 0x7ed0, 0x7ed4, 0x7ed7, 0x7edb, 0x7ee0, 0x7ee1, 0x7ee8,\n  0x7eeb, 0x7eee, 0x7eef, 0x7ef1, 0x7ef2, 0x7f0d, 0x7ef6, 0x7efa,\n  0x7efb, 0x7efe, 0x7f01, 0x7f02, 0x7f03, 0x7f07, 0x7f08, 0x7f0b,\n  0x7f0c, 0x7f0f, 0x7f11, 0x7f12, 0x7f17, 0x7f19, 0x7f1c, 0x7f1b,\n  0x7f1f, 0x7f21, 0x7f22, 0x7f23, 0x7f24, 0x7f25, 0x7f26, 0x7f27,\n  0x7f2a, 0x7f2b, 0x7f2c, 0x7f2d, 0x7f2f, 0x7f30, 0x7f31, 0x7f32,\n  0x7f33, 0x7f35, 0x5e7a, 0x757f, 0x5ddb, 0x753e, 0x9095, 0x738e,\n  0x7391, 0x73ae, 0x73a2, 0x739f, 0x73cf, 0x73c2, 0x73d1, 0x73b7,\n  0x73b3, 0x73c0, 0x73c9, 0x73c8, 0x73e5, 0x73d9, 0x987c, 0x740a,\n  0x73e9, 0x73e7, 0x73de, 0x73ba, 0x73f2, 0x740f, 0x742a, 0x745b,\n  0x7426, 0x7425, 0x7428, 0x7430, 0x742e, 0x742c,\n  /* 0x68 */\n  0x741b, 0x741a, 0x7441, 0x745c, 0x7457, 0x7455, 0x7459, 0x7477,\n  0x746d, 0x747e, 0x749c, 0x748e, 0x7480, 0x7481, 0x7487, 0x748b,\n  0x749e, 0x74a8, 0x74a9, 0x7490, 0x74a7, 0x74d2, 0x74ba, 0x97ea,\n  0x97eb, 0x97ec, 0x674c, 0x6753, 0x675e, 0x6748, 0x6769, 0x67a5,\n  0x6787, 0x676a, 0x6773, 0x6798, 0x67a7, 0x6775, 0x67a8, 0x679e,\n  0x67ad, 0x678b, 0x6777, 0x677c, 0x67f0, 0x6809, 0x67d8, 0x680a,\n  0x67e9, 0x67b0, 0x680c, 0x67d9, 0x67b5, 0x67da, 0x67b3, 0x67dd,\n  0x6800, 0x67c3, 0x67b8, 0x67e2, 0x680e, 0x67c1, 0x67fd, 0x6832,\n  0x6833, 0x6860, 0x6861, 0x684e, 0x6862, 0x6844, 0x6864, 0x6883,\n  0x681d, 0x6855, 0x6866, 0x6841, 0x6867, 0x6840, 0x683e, 0x684a,\n  0x6849, 0x6829, 0x68b5, 0x688f, 0x6874, 0x6877, 0x6893, 0x686b,\n  0x68c2, 0x696e, 0x68fc, 0x691f, 0x6920, 0x68f9,\n  /* 0x69 */\n  0x6924, 0x68f0, 0x690b, 0x6901, 0x6957, 0x68e3, 0x6910, 0x6971,\n  0x6939, 0x6960, 0x6942, 0x695d, 0x6984, 0x696b, 0x6980, 0x6998,\n  0x6978, 0x6934, 0x69cc, 0x6987, 0x6988, 0x69ce, 0x6989, 0x6966,\n  0x6963, 0x6979, 0x699b, 0x69a7, 0x69bb, 0x69ab, 0x69ad, 0x69d4,\n  0x69b1, 0x69c1, 0x69ca, 0x69df, 0x6995, 0x69e0, 0x698d, 0x69ff,\n  0x6a2f, 0x69ed, 0x6a17, 0x6a18, 0x6a65, 0x69f2, 0x6a44, 0x6a3e,\n  0x6aa0, 0x6a50, 0x6a5b, 0x6a35, 0x6a8e, 0x6a79, 0x6a3d, 0x6a28,\n  0x6a58, 0x6a7c, 0x6a91, 0x6a90, 0x6aa9, 0x6a97, 0x6aab, 0x7337,\n  0x7352, 0x6b81, 0x6b82, 0x6b87, 0x6b84, 0x6b92, 0x6b93, 0x6b8d,\n  0x6b9a, 0x6b9b, 0x6ba1, 0x6baa, 0x8f6b, 0x8f6d, 0x8f71, 0x8f72,\n  0x8f73, 0x8f75, 0x8f76, 0x8f78, 0x8f77, 0x8f79, 0x8f7a, 0x8f7c,\n  0x8f7e, 0x8f81, 0x8f82, 0x8f84, 0x8f87, 0x8f8b,\n  /* 0x6a */\n  0x8f8d, 0x8f8e, 0x8f8f, 0x8f98, 0x8f9a, 0x8ece, 0x620b, 0x6217,\n  0x621b, 0x621f, 0x6222, 0x6221, 0x6225, 0x6224, 0x622c, 0x81e7,\n  0x74ef, 0x74f4, 0x74ff, 0x750f, 0x7511, 0x7513, 0x6534, 0x65ee,\n  0x65ef, 0x65f0, 0x660a, 0x6619, 0x6772, 0x6603, 0x6615, 0x6600,\n  0x7085, 0x66f7, 0x661d, 0x6634, 0x6631, 0x6636, 0x6635, 0x8006,\n  0x665f, 0x6654, 0x6641, 0x664f, 0x6656, 0x6661, 0x6657, 0x6677,\n  0x6684, 0x668c, 0x66a7, 0x669d, 0x66be, 0x66db, 0x66dc, 0x66e6,\n  0x66e9, 0x8d32, 0x8d33, 0x8d36, 0x8d3b, 0x8d3d, 0x8d40, 0x8d45,\n  0x8d46, 0x8d48, 0x8d49, 0x8d47, 0x8d4d, 0x8d55, 0x8d59, 0x89c7,\n  0x89ca, 0x89cb, 0x89cc, 0x89ce, 0x89cf, 0x89d0, 0x89d1, 0x726e,\n  0x729f, 0x725d, 0x7266, 0x726f, 0x727e, 0x727f, 0x7284, 0x728b,\n  0x728d, 0x728f, 0x7292, 0x6308, 0x6332, 0x63b0,\n  /* 0x6b */\n  0x643f, 0x64d8, 0x8004, 0x6bea, 0x6bf3, 0x6bfd, 0x6bf5, 0x6bf9,\n  0x6c05, 0x6c07, 0x6c06, 0x6c0d, 0x6c15, 0x6c18, 0x6c19, 0x6c1a,\n  0x6c21, 0x6c29, 0x6c24, 0x6c2a, 0x6c32, 0x6535, 0x6555, 0x656b,\n  0x724d, 0x7252, 0x7256, 0x7230, 0x8662, 0x5216, 0x809f, 0x809c,\n  0x8093, 0x80bc, 0x670a, 0x80bd, 0x80b1, 0x80ab, 0x80ad, 0x80b4,\n  0x80b7, 0x80e7, 0x80e8, 0x80e9, 0x80ea, 0x80db, 0x80c2, 0x80c4,\n  0x80d9, 0x80cd, 0x80d7, 0x6710, 0x80dd, 0x80eb, 0x80f1, 0x80f4,\n  0x80ed, 0x810d, 0x810e, 0x80f2, 0x80fc, 0x6715, 0x8112, 0x8c5a,\n  0x8136, 0x811e, 0x812c, 0x8118, 0x8132, 0x8148, 0x814c, 0x8153,\n  0x8174, 0x8159, 0x815a, 0x8171, 0x8160, 0x8169, 0x817c, 0x817d,\n  0x816d, 0x8167, 0x584d, 0x5ab5, 0x8188, 0x8182, 0x8191, 0x6ed5,\n  0x81a3, 0x81aa, 0x81cc, 0x6726, 0x81ca, 0x81bb,\n  /* 0x6c */\n  0x81c1, 0x81a6, 0x6b24, 0x6b37, 0x6b39, 0x6b43, 0x6b46, 0x6b59,\n  0x98d1, 0x98d2, 0x98d3, 0x98d5, 0x98d9, 0x98da, 0x6bb3, 0x5f40,\n  0x6bc2, 0x89f3, 0x6590, 0x9f51, 0x6593, 0x65bc, 0x65c6, 0x65c4,\n  0x65c3, 0x65cc, 0x65ce, 0x65d2, 0x65d6, 0x7080, 0x709c, 0x7096,\n  0x709d, 0x70bb, 0x70c0, 0x70b7, 0x70ab, 0x70b1, 0x70e8, 0x70ca,\n  0x7110, 0x7113, 0x7116, 0x712f, 0x7131, 0x7173, 0x715c, 0x7168,\n  0x7145, 0x7172, 0x714a, 0x7178, 0x717a, 0x7198, 0x71b3, 0x71b5,\n  0x71a8, 0x71a0, 0x71e0, 0x71d4, 0x71e7, 0x71f9, 0x721d, 0x7228,\n  0x706c, 0x7118, 0x7166, 0x71b9, 0x623e, 0x623d, 0x6243, 0x6248,\n  0x6249, 0x793b, 0x7940, 0x7946, 0x7949, 0x795b, 0x795c, 0x7953,\n  0x795a, 0x7962, 0x7957, 0x7960, 0x796f, 0x7967, 0x797a, 0x7985,\n  0x798a, 0x799a, 0x79a7, 0x79b3, 0x5fd1, 0x5fd0,\n  /* 0x6d */\n  0x603c, 0x605d, 0x605a, 0x6067, 0x6041, 0x6059, 0x6063, 0x60ab,\n  0x6106, 0x610d, 0x615d, 0x61a9, 0x619d, 0x61cb, 0x61d1, 0x6206,\n  0x8080, 0x807f, 0x6c93, 0x6cf6, 0x6dfc, 0x77f6, 0x77f8, 0x7800,\n  0x7809, 0x7817, 0x7818, 0x7811, 0x65ab, 0x782d, 0x781c, 0x781d,\n  0x7839, 0x783a, 0x783b, 0x781f, 0x783c, 0x7825, 0x782c, 0x7823,\n  0x7829, 0x784e, 0x786d, 0x7856, 0x7857, 0x7826, 0x7850, 0x7847,\n  0x784c, 0x786a, 0x789b, 0x7893, 0x789a, 0x7887, 0x789c, 0x78a1,\n  0x78a3, 0x78b2, 0x78b9, 0x78a5, 0x78d4, 0x78d9, 0x78c9, 0x78ec,\n  0x78f2, 0x7905, 0x78f4, 0x7913, 0x7924, 0x791e, 0x7934, 0x9f9b,\n  0x9ef9, 0x9efb, 0x9efc, 0x76f1, 0x7704, 0x770d, 0x76f9, 0x7707,\n  0x7708, 0x771a, 0x7722, 0x7719, 0x772d, 0x7726, 0x7735, 0x7738,\n  0x7750, 0x7751, 0x7747, 0x7743, 0x775a, 0x7768,\n  /* 0x6e */\n  0x7762, 0x7765, 0x777f, 0x778d, 0x777d, 0x7780, 0x778c, 0x7791,\n  0x779f, 0x77a0, 0x77b0, 0x77b5, 0x77bd, 0x753a, 0x7540, 0x754e,\n  0x754b, 0x7548, 0x755b, 0x7572, 0x7579, 0x7583, 0x7f58, 0x7f61,\n  0x7f5f, 0x8a48, 0x7f68, 0x7f74, 0x7f71, 0x7f79, 0x7f81, 0x7f7e,\n  0x76cd, 0x76e5, 0x8832, 0x9485, 0x9486, 0x9487, 0x948b, 0x948a,\n  0x948c, 0x948d, 0x948f, 0x9490, 0x9494, 0x9497, 0x9495, 0x949a,\n  0x949b, 0x949c, 0x94a3, 0x94a4, 0x94ab, 0x94aa, 0x94ad, 0x94ac,\n  0x94af, 0x94b0, 0x94b2, 0x94b4, 0x94b6, 0x94b7, 0x94b8, 0x94b9,\n  0x94ba, 0x94bc, 0x94bd, 0x94bf, 0x94c4, 0x94c8, 0x94c9, 0x94ca,\n  0x94cb, 0x94cc, 0x94cd, 0x94ce, 0x94d0, 0x94d1, 0x94d2, 0x94d5,\n  0x94d6, 0x94d7, 0x94d9, 0x94d8, 0x94db, 0x94de, 0x94df, 0x94e0,\n  0x94e2, 0x94e4, 0x94e5, 0x94e7, 0x94e8, 0x94ea,\n  /* 0x6f */\n  0x94e9, 0x94eb, 0x94ee, 0x94ef, 0x94f3, 0x94f4, 0x94f5, 0x94f7,\n  0x94f9, 0x94fc, 0x94fd, 0x94ff, 0x9503, 0x9502, 0x9506, 0x9507,\n  0x9509, 0x950a, 0x950d, 0x950e, 0x950f, 0x9512, 0x9513, 0x9514,\n  0x9515, 0x9516, 0x9518, 0x951b, 0x951d, 0x951e, 0x951f, 0x9522,\n  0x952a, 0x952b, 0x9529, 0x952c, 0x9531, 0x9532, 0x9534, 0x9536,\n  0x9537, 0x9538, 0x953c, 0x953e, 0x953f, 0x9542, 0x9535, 0x9544,\n  0x9545, 0x9546, 0x9549, 0x954c, 0x954e, 0x954f, 0x9552, 0x9553,\n  0x9554, 0x9556, 0x9557, 0x9558, 0x9559, 0x955b, 0x955e, 0x955f,\n  0x955d, 0x9561, 0x9562, 0x9564, 0x9565, 0x9566, 0x9567, 0x9568,\n  0x9569, 0x956a, 0x956b, 0x956c, 0x956f, 0x9571, 0x9572, 0x9573,\n  0x953a, 0x77e7, 0x77ec, 0x96c9, 0x79d5, 0x79ed, 0x79e3, 0x79eb,\n  0x7a06, 0x5d47, 0x7a03, 0x7a02, 0x7a1e, 0x7a14,\n  /* 0x70 */\n  0x7a39, 0x7a37, 0x7a51, 0x9ecf, 0x99a5, 0x7a70, 0x7688, 0x768e,\n  0x7693, 0x7699, 0x76a4, 0x74de, 0x74e0, 0x752c, 0x9e20, 0x9e22,\n  0x9e28, 0x9e29, 0x9e2a, 0x9e2b, 0x9e2c, 0x9e32, 0x9e31, 0x9e36,\n  0x9e38, 0x9e37, 0x9e39, 0x9e3a, 0x9e3e, 0x9e41, 0x9e42, 0x9e44,\n  0x9e46, 0x9e47, 0x9e48, 0x9e49, 0x9e4b, 0x9e4c, 0x9e4e, 0x9e51,\n  0x9e55, 0x9e57, 0x9e5a, 0x9e5b, 0x9e5c, 0x9e5e, 0x9e63, 0x9e66,\n  0x9e67, 0x9e68, 0x9e69, 0x9e6a, 0x9e6b, 0x9e6c, 0x9e71, 0x9e6d,\n  0x9e73, 0x7592, 0x7594, 0x7596, 0x75a0, 0x759d, 0x75ac, 0x75a3,\n  0x75b3, 0x75b4, 0x75b8, 0x75c4, 0x75b1, 0x75b0, 0x75c3, 0x75c2,\n  0x75d6, 0x75cd, 0x75e3, 0x75e8, 0x75e6, 0x75e4, 0x75eb, 0x75e7,\n  0x7603, 0x75f1, 0x75fc, 0x75ff, 0x7610, 0x7600, 0x7605, 0x760c,\n  0x7617, 0x760a, 0x7625, 0x7618, 0x7615, 0x7619,\n  /* 0x71 */\n  0x761b, 0x763c, 0x7622, 0x7620, 0x7640, 0x762d, 0x7630, 0x763f,\n  0x7635, 0x7643, 0x763e, 0x7633, 0x764d, 0x765e, 0x7654, 0x765c,\n  0x7656, 0x766b, 0x766f, 0x7fca, 0x7ae6, 0x7a78, 0x7a79, 0x7a80,\n  0x7a86, 0x7a88, 0x7a95, 0x7aa6, 0x7aa0, 0x7aac, 0x7aa8, 0x7aad,\n  0x7ab3, 0x8864, 0x8869, 0x8872, 0x887d, 0x887f, 0x8882, 0x88a2,\n  0x88c6, 0x88b7, 0x88bc, 0x88c9, 0x88e2, 0x88ce, 0x88e3, 0x88e5,\n  0x88f1, 0x891a, 0x88fc, 0x88e8, 0x88fe, 0x88f0, 0x8921, 0x8919,\n  0x8913, 0x891b, 0x890a, 0x8934, 0x892b, 0x8936, 0x8941, 0x8966,\n  0x897b, 0x758b, 0x80e5, 0x76b2, 0x76b4, 0x77dc, 0x8012, 0x8014,\n  0x8016, 0x801c, 0x8020, 0x8022, 0x8025, 0x8026, 0x8027, 0x8029,\n  0x8028, 0x8031, 0x800b, 0x8035, 0x8043, 0x8046, 0x804d, 0x8052,\n  0x8069, 0x8071, 0x8983, 0x9878, 0x9880, 0x9883,\n  /* 0x72 */\n  0x9889, 0x988c, 0x988d, 0x988f, 0x9894, 0x989a, 0x989b, 0x989e,\n  0x989f, 0x98a1, 0x98a2, 0x98a5, 0x98a6, 0x864d, 0x8654, 0x866c,\n  0x866e, 0x867f, 0x867a, 0x867c, 0x867b, 0x86a8, 0x868d, 0x868b,\n  0x86ac, 0x869d, 0x86a7, 0x86a3, 0x86aa, 0x8693, 0x86a9, 0x86b6,\n  0x86c4, 0x86b5, 0x86ce, 0x86b0, 0x86ba, 0x86b1, 0x86af, 0x86c9,\n  0x86cf, 0x86b4, 0x86e9, 0x86f1, 0x86f2, 0x86ed, 0x86f3, 0x86d0,\n  0x8713, 0x86de, 0x86f4, 0x86df, 0x86d8, 0x86d1, 0x8703, 0x8707,\n  0x86f8, 0x8708, 0x870a, 0x870d, 0x8709, 0x8723, 0x873b, 0x871e,\n  0x8725, 0x872e, 0x871a, 0x873e, 0x8748, 0x8734, 0x8731, 0x8729,\n  0x8737, 0x873f, 0x8782, 0x8722, 0x877d, 0x877e, 0x877b, 0x8760,\n  0x8770, 0x874c, 0x876e, 0x878b, 0x8753, 0x8763, 0x877c, 0x8764,\n  0x8759, 0x8765, 0x8793, 0x87af, 0x87a8, 0x87d2,\n  /* 0x73 */\n  0x87c6, 0x8788, 0x8785, 0x87ad, 0x8797, 0x8783, 0x87ab, 0x87e5,\n  0x87ac, 0x87b5, 0x87b3, 0x87cb, 0x87d3, 0x87bd, 0x87d1, 0x87c0,\n  0x87ca, 0x87db, 0x87ea, 0x87e0, 0x87ee, 0x8816, 0x8813, 0x87fe,\n  0x880a, 0x881b, 0x8821, 0x8839, 0x883c, 0x7f36, 0x7f42, 0x7f44,\n  0x7f45, 0x8210, 0x7afa, 0x7afd, 0x7b08, 0x7b03, 0x7b04, 0x7b15,\n  0x7b0a, 0x7b2b, 0x7b0f, 0x7b47, 0x7b38, 0x7b2a, 0x7b19, 0x7b2e,\n  0x7b31, 0x7b20, 0x7b25, 0x7b24, 0x7b33, 0x7b3e, 0x7b1e, 0x7b58,\n  0x7b5a, 0x7b45, 0x7b75, 0x7b4c, 0x7b5d, 0x7b60, 0x7b6e, 0x7b7b,\n  0x7b62, 0x7b72, 0x7b71, 0x7b90, 0x7ba6, 0x7ba7, 0x7bb8, 0x7bac,\n  0x7b9d, 0x7ba8, 0x7b85, 0x7baa, 0x7b9c, 0x7ba2, 0x7bab, 0x7bb4,\n  0x7bd1, 0x7bc1, 0x7bcc, 0x7bdd, 0x7bda, 0x7be5, 0x7be6, 0x7bea,\n  0x7c0c, 0x7bfe, 0x7bfc, 0x7c0f, 0x7c16, 0x7c0b,\n  /* 0x74 */\n  0x7c1f, 0x7c2a, 0x7c26, 0x7c38, 0x7c41, 0x7c40, 0x81fe, 0x8201,\n  0x8202, 0x8204, 0x81ec, 0x8844, 0x8221, 0x8222, 0x8223, 0x822d,\n  0x822f, 0x8228, 0x822b, 0x8238, 0x823b, 0x8233, 0x8234, 0x823e,\n  0x8244, 0x8249, 0x824b, 0x824f, 0x825a, 0x825f, 0x8268, 0x887e,\n  0x8885, 0x8888, 0x88d8, 0x88df, 0x895e, 0x7f9d, 0x7f9f, 0x7fa7,\n  0x7faf, 0x7fb0, 0x7fb2, 0x7c7c, 0x6549, 0x7c91, 0x7c9d, 0x7c9c,\n  0x7c9e, 0x7ca2, 0x7cb2, 0x7cbc, 0x7cbd, 0x7cc1, 0x7cc7, 0x7ccc,\n  0x7ccd, 0x7cc8, 0x7cc5, 0x7cd7, 0x7ce8, 0x826e, 0x66a8, 0x7fbf,\n  0x7fce, 0x7fd5, 0x7fe5, 0x7fe1, 0x7fe6, 0x7fe9, 0x7fee, 0x7ff3,\n  0x7cf8, 0x7d77, 0x7da6, 0x7dae, 0x7e47, 0x7e9b, 0x9eb8, 0x9eb4,\n  0x8d73, 0x8d84, 0x8d94, 0x8d91, 0x8db1, 0x8d67, 0x8d6d, 0x8c47,\n  0x8c49, 0x914a, 0x9150, 0x914e, 0x914f, 0x9164,\n  /* 0x75 */\n  0x9162, 0x9161, 0x9170, 0x9169, 0x916f, 0x917d, 0x917e, 0x9172,\n  0x9174, 0x9179, 0x918c, 0x9185, 0x9190, 0x918d, 0x9191, 0x91a2,\n  0x91a3, 0x91aa, 0x91ad, 0x91ae, 0x91af, 0x91b5, 0x91b4, 0x91ba,\n  0x8c55, 0x9e7e, 0x8db8, 0x8deb, 0x8e05, 0x8e59, 0x8e69, 0x8db5,\n  0x8dbf, 0x8dbc, 0x8dba, 0x8dc4, 0x8dd6, 0x8dd7, 0x8dda, 0x8dde,\n  0x8dce, 0x8dcf, 0x8ddb, 0x8dc6, 0x8dec, 0x8df7, 0x8df8, 0x8de3,\n  0x8df9, 0x8dfb, 0x8de4, 0x8e09, 0x8dfd, 0x8e14, 0x8e1d, 0x8e1f,\n  0x8e2c, 0x8e2e, 0x8e23, 0x8e2f, 0x8e3a, 0x8e40, 0x8e39, 0x8e35,\n  0x8e3d, 0x8e31, 0x8e49, 0x8e41, 0x8e42, 0x8e51, 0x8e52, 0x8e4a,\n  0x8e70, 0x8e76, 0x8e7c, 0x8e6f, 0x8e74, 0x8e85, 0x8e8f, 0x8e94,\n  0x8e90, 0x8e9c, 0x8e9e, 0x8c78, 0x8c82, 0x8c8a, 0x8c85, 0x8c98,\n  0x8c94, 0x659b, 0x89d6, 0x89de, 0x89da, 0x89dc,\n  /* 0x76 */\n  0x89e5, 0x89eb, 0x89ef, 0x8a3e, 0x8b26, 0x9753, 0x96e9, 0x96f3,\n  0x96ef, 0x9706, 0x9701, 0x9708, 0x970f, 0x970e, 0x972a, 0x972d,\n  0x9730, 0x973e, 0x9f80, 0x9f83, 0x9f85, 0x9f86, 0x9f87, 0x9f88,\n  0x9f89, 0x9f8a, 0x9f8c, 0x9efe, 0x9f0b, 0x9f0d, 0x96b9, 0x96bc,\n  0x96bd, 0x96ce, 0x96d2, 0x77bf, 0x96e0, 0x928e, 0x92ae, 0x92c8,\n  0x933e, 0x936a, 0x93ca, 0x938f, 0x943e, 0x946b, 0x9c7f, 0x9c82,\n  0x9c85, 0x9c86, 0x9c87, 0x9c88, 0x7a23, 0x9c8b, 0x9c8e, 0x9c90,\n  0x9c91, 0x9c92, 0x9c94, 0x9c95, 0x9c9a, 0x9c9b, 0x9c9e, 0x9c9f,\n  0x9ca0, 0x9ca1, 0x9ca2, 0x9ca3, 0x9ca5, 0x9ca6, 0x9ca7, 0x9ca8,\n  0x9ca9, 0x9cab, 0x9cad, 0x9cae, 0x9cb0, 0x9cb1, 0x9cb2, 0x9cb3,\n  0x9cb4, 0x9cb5, 0x9cb6, 0x9cb7, 0x9cba, 0x9cbb, 0x9cbc, 0x9cbd,\n  0x9cc4, 0x9cc5, 0x9cc6, 0x9cc7, 0x9cca, 0x9ccb,\n  /* 0x77 */\n  0x9ccc, 0x9ccd, 0x9cce, 0x9ccf, 0x9cd0, 0x9cd3, 0x9cd4, 0x9cd5,\n  0x9cd7, 0x9cd8, 0x9cd9, 0x9cdc, 0x9cdd, 0x9cdf, 0x9ce2, 0x977c,\n  0x9785, 0x9791, 0x9792, 0x9794, 0x97af, 0x97ab, 0x97a3, 0x97b2,\n  0x97b4, 0x9ab1, 0x9ab0, 0x9ab7, 0x9e58, 0x9ab6, 0x9aba, 0x9abc,\n  0x9ac1, 0x9ac0, 0x9ac5, 0x9ac2, 0x9acb, 0x9acc, 0x9ad1, 0x9b45,\n  0x9b43, 0x9b47, 0x9b49, 0x9b48, 0x9b4d, 0x9b51, 0x98e8, 0x990d,\n  0x992e, 0x9955, 0x9954, 0x9adf, 0x9ae1, 0x9ae6, 0x9aef, 0x9aeb,\n  0x9afb, 0x9aed, 0x9af9, 0x9b08, 0x9b0f, 0x9b13, 0x9b1f, 0x9b23,\n  0x9ebd, 0x9ebe, 0x7e3b, 0x9e82, 0x9e87, 0x9e88, 0x9e8b, 0x9e92,\n  0x93d6, 0x9e9d, 0x9e9f, 0x9edb, 0x9edc, 0x9edd, 0x9ee0, 0x9edf,\n  0x9ee2, 0x9ee9, 0x9ee7, 0x9ee5, 0x9eea, 0x9eef, 0x9f22, 0x9f2c,\n  0x9f2f, 0x9f39, 0x9f37, 0x9f3d, 0x9f3e, 0x9f44,\n};\n\nstatic int\ngb2312_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x21 && c1 <= 0x29) || (c1 >= 0x30 && c1 <= 0x77)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        unsigned short wc = 0xfffd;\n        if (i < 1410) {\n          if (i < 831)\n            wc = gb2312_2uni_page21[i];\n        } else {\n          if (i < 8178)\n            wc = gb2312_2uni_page30[i-1410];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short gb2312_2charset[7445] = {\n  0x2168, 0x216c, 0x2127, 0x2163, 0x2140, 0x2141, 0x2824, 0x2822,\n  0x2828, 0x2826, 0x283a, 0x282c, 0x282a, 0x2830, 0x282e, 0x2142,\n  0x2834, 0x2832, 0x2839, 0x2821, 0x2825, 0x2827, 0x2829, 0x282d,\n  0x2831, 0x2823, 0x282b, 0x282f, 0x2833, 0x2835, 0x2836, 0x2837,\n  0x2838, 0x2126, 0x2125, 0x2621, 0x2622, 0x2623, 0x2624, 0x2625,\n  0x2626, 0x2627, 0x2628, 0x2629, 0x262a, 0x262b, 0x262c, 0x262d,\n  0x262e, 0x262f, 0x2630, 0x2631, 0x2632, 0x2633, 0x2634, 0x2635,\n  0x2636, 0x2637, 0x2638, 0x2641, 0x2642, 0x2643, 0x2644, 0x2645,\n  0x2646, 0x2647, 0x2648, 0x2649, 0x264a, 0x264b, 0x264c, 0x264d,\n  0x264e, 0x264f, 0x2650, 0x2651, 0x2652, 0x2653, 0x2654, 0x2655,\n  0x2656, 0x2657, 0x2658, 0x2727, 0x2721, 0x2722, 0x2723, 0x2724,\n  0x2725, 0x2726, 0x2728, 0x2729, 0x272a, 0x272b, 0x272c, 0x272d,\n  0x272e, 0x272f, 0x2730, 0x2731, 0x2732, 0x2733, 0x2734, 0x2735,\n  0x2736, 0x2737, 0x2738, 0x2739, 0x273a, 0x273b, 0x273c, 0x273d,\n  0x273e, 0x273f, 0x2740, 0x2741, 0x2751, 0x2752, 0x2753, 0x2754,\n  0x2755, 0x2756, 0x2758, 0x2759, 0x275a, 0x275b, 0x275c, 0x275d,\n  0x275e, 0x275f, 0x2760, 0x2761, 0x2762, 0x2763, 0x2764, 0x2765,\n  0x2766, 0x2767, 0x2768, 0x2769, 0x276a, 0x276b, 0x276c, 0x276d,\n  0x276e, 0x276f, 0x2770, 0x2771, 0x2757, 0x212a, 0x212c, 0x212e,\n  0x212f, 0x2130, 0x2131, 0x212d, 0x216b, 0x2164, 0x2165, 0x2179,\n  0x2166, 0x216d, 0x2271, 0x2272, 0x2273, 0x2274, 0x2275, 0x2276,\n  0x2277, 0x2278, 0x2279, 0x227a, 0x227b, 0x227c, 0x217b, 0x217c,\n  0x217a, 0x217d, 0x214a, 0x2147, 0x2146, 0x214c, 0x2158, 0x215e,\n  0x214f, 0x214e, 0x2144, 0x2145, 0x2149, 0x2148, 0x2152, 0x2153,\n  0x2160, 0x215f, 0x2143, 0x214b, 0x2157, 0x2156, 0x2155, 0x2159,\n  0x2154, 0x215c, 0x215d, 0x215a, 0x215b, 0x2151, 0x214d, 0x2150,\n  0x2259, 0x225a, 0x225b, 0x225c, 0x225d, 0x225e, 0x225f, 0x2260,\n  0x2261, 0x2262, 0x2245, 0x2246, 0x2247, 0x2248, 0x2249, 0x224a,\n  0x224b, 0x224c, 0x224d, 0x224e, 0x224f, 0x2250, 0x2251, 0x2252,\n  0x2253, 0x2254, 0x2255, 0x2256, 0x2257, 0x2258, 0x2231, 0x2232,\n  0x2233, 0x2234, 0x2235, 0x2236, 0x2237, 0x2238, 0x2239, 0x223a,\n  0x223b, 0x223c, 0x223d, 0x223e, 0x223f, 0x2240, 0x2241, 0x2242,\n  0x2243, 0x2244, 0x2924, 0x2925, 0x2926, 0x2927, 0x2928, 0x2929,\n  0x292a, 0x292b, 0x292c, 0x292d, 0x292e, 0x292f, 0x2930, 0x2931,\n  0x2932, 0x2933, 0x2934, 0x2935, 0x2936, 0x2937, 0x2938, 0x2939,\n  0x293a, 0x293b, 0x293c, 0x293d, 0x293e, 0x293f, 0x2940, 0x2941,\n  0x2942, 0x2943, 0x2944, 0x2945, 0x2946, 0x2947, 0x2948, 0x2949,\n  0x294a, 0x294b, 0x294c, 0x294d, 0x294e, 0x294f, 0x2950, 0x2951,\n  0x2952, 0x2953, 0x2954, 0x2955, 0x2956, 0x2957, 0x2958, 0x2959,\n  0x295a, 0x295b, 0x295c, 0x295d, 0x295e, 0x295f, 0x2960, 0x2961,\n  0x2962, 0x2963, 0x2964, 0x2965, 0x2966, 0x2967, 0x2968, 0x2969,\n  0x296a, 0x296b, 0x296c, 0x296d, 0x296e, 0x296f, 0x2176, 0x2175,\n  0x2178, 0x2177, 0x2174, 0x2173, 0x2170, 0x2172, 0x2171, 0x216f,\n  0x216e, 0x2162, 0x2161, 0x2121, 0x2122, 0x2123, 0x2128, 0x2129,\n  0x2134, 0x2135, 0x2136, 0x2137, 0x2138, 0x2139, 0x213a, 0x213b,\n  0x213e, 0x213f, 0x217e, 0x2132, 0x2133, 0x213c, 0x213d, 0x2421,\n  0x2422, 0x2423, 0x2424, 0x2425, 0x2426, 0x2427, 0x2428, 0x2429,\n  0x242a, 0x242b, 0x242c, 0x242d, 0x242e, 0x242f, 0x2430, 0x2431,\n  0x2432, 0x2433, 0x2434, 0x2435, 0x2436, 0x2437, 0x2438, 0x2439,\n  0x243a, 0x243b, 0x243c, 0x243d, 0x243e, 0x243f, 0x2440, 0x2441,\n  0x2442, 0x2443, 0x2444, 0x2445, 0x2446, 0x2447, 0x2448, 0x2449,\n  0x244a, 0x244b, 0x244c, 0x244d, 0x244e, 0x244f, 0x2450, 0x2451,\n  0x2452, 0x2453, 0x2454, 0x2455, 0x2456, 0x2457, 0x2458, 0x2459,\n  0x245a, 0x245b, 0x245c, 0x245d, 0x245e, 0x245f, 0x2460, 0x2461,\n  0x2462, 0x2463, 0x2464, 0x2465, 0x2466, 0x2467, 0x2468, 0x2469,\n  0x246a, 0x246b, 0x246c, 0x246d, 0x246e, 0x246f, 0x2470, 0x2471,\n  0x2472, 0x2473, 0x2521, 0x2522, 0x2523, 0x2524, 0x2525, 0x2526,\n  0x2527, 0x2528, 0x2529, 0x252a, 0x252b, 0x252c, 0x252d, 0x252e,\n  0x252f, 0x2530, 0x2531, 0x2532, 0x2533, 0x2534, 0x2535, 0x2536,\n  0x2537, 0x2538, 0x2539, 0x253a, 0x253b, 0x253c, 0x253d, 0x253e,\n  0x253f, 0x2540, 0x2541, 0x2542, 0x2543, 0x2544, 0x2545, 0x2546,\n  0x2547, 0x2548, 0x2549, 0x254a, 0x254b, 0x254c, 0x254d, 0x254e,\n  0x254f, 0x2550, 0x2551, 0x2552, 0x2553, 0x2554, 0x2555, 0x2556,\n  0x2557, 0x2558, 0x2559, 0x255a, 0x255b, 0x255c, 0x255d, 0x255e,\n  0x255f, 0x2560, 0x2561, 0x2562, 0x2563, 0x2564, 0x2565, 0x2566,\n  0x2567, 0x2568, 0x2569, 0x256a, 0x256b, 0x256c, 0x256d, 0x256e,\n  0x256f, 0x2570, 0x2571, 0x2572, 0x2573, 0x2574, 0x2575, 0x2576,\n  0x2124, 0x2845, 0x2846, 0x2847, 0x2848, 0x2849, 0x284a, 0x284b,\n  0x284c, 0x284d, 0x284e, 0x284f, 0x2850, 0x2851, 0x2852, 0x2853,\n  0x2854, 0x2855, 0x2856, 0x2857, 0x2858, 0x2859, 0x285a, 0x285b,\n  0x285c, 0x285d, 0x285e, 0x285f, 0x2860, 0x2861, 0x2862, 0x2863,\n  0x2864, 0x2865, 0x2866, 0x2867, 0x2868, 0x2869, 0x2265, 0x2266,\n  0x2267, 0x2268, 0x2269, 0x226a, 0x226b, 0x226c, 0x226d, 0x226e,\n  0x523b, 0x3621, 0x465f, 0x4d72, 0x5549, 0x487d, 0x494f, 0x4f42,\n  0x5822, 0x323b, 0x536b, 0x5824, 0x3373, 0x5728, 0x4752, 0x5827,\n  0x4a40, 0x4770, 0x317b, 0x5235, 0x3454, 0x362b, 0x4b3f, 0x5829,\n  0x362a, 0x413d, 0x514f, 0x4925, 0x582d, 0x3876, 0x513e, 0x635c,\n  0x5650, 0x3761, 0x342e, 0x4159, 0x583c, 0x4d68, 0x3524, 0x4e2a,\n  0x5677, 0x4076, 0x3e59, 0x582f, 0x444b, 0x3e43, 0x5831, 0x4334,\n  0x5265, 0x562e, 0x4e5a, 0x5527, 0x3a75, 0x3726, 0x4056, 0x4639,\n  0x4552, 0x4747, 0x3954, 0x334b, 0x5252, 0x583f, 0x3e45, 0x4672,\n  0x5232, 0x4f30, 0x4f67, 0x4a69, 0x5840, 0x4272, 0x4252, 0x4869,\n  0x472c, 0x414b, 0x5368, 0x5579, 0x4a42, 0x367e, 0x5821, 0x535a,\n  0x3f77, 0x5446, 0x3b25, 0x5841, 0x4e65, 0x3e2e, 0x5828, 0x5147,\n  0x5029, 0x583d, 0x596f, 0x4d76, 0x3f3a, 0x3d3b, 0x3a25, 0x5260,\n  0x327a, 0x3a60, 0x4436, 0x4f6d, 0x3e29, 0x4d24, 0x4141, 0x4757,\n  0x5971, 0x5974, 0x484b, 0x5869, 0x525a, 0x4a32, 0x484a, 0x586c,\n  0x586a, 0x5846, 0x3d76, 0x464d, 0x3370, 0x586b, 0x3d71, 0x3d69,\n  0x4854, 0x3453, 0x4258, 0x3256, 0x5750, 0x4a4b, 0x4b7b, 0x554c,\n  0x3836, 0x4f49, 0x595a, 0x5870, 0x472a, 0x586e, 0x347a, 0x416e,\n  0x5254, 0x586d, 0x5247, 0x586f, 0x4347, 0x5176, 0x5659, 0x5872,\n  0x5875, 0x3c7e, 0x3c5b, 0x484e, 0x375d, 0x3742, 0x4673, 0x5878,\n  0x5241, 0x4e69, 0x3c3f, 0x377c, 0x3725, 0x505d, 0x565a, 0x5345,\n  0x3b6f, 0x3b61, 0x5871, 0x4921, 0x4e30, 0x342b, 0x5873, 0x494b,\n  0x5876, 0x4257, 0x5877, 0x4e31, 0x5879, 0x322e, 0x3940, 0x5923,\n  0x3069, 0x4166, 0x496c, 0x4b45, 0x4b46, 0x5924, 0x3568, 0x352b,\n  0x4e3b, 0x354d, 0x5721, 0x5774, 0x5353, 0x4c65, 0x3a4e, 0x5922,\n  0x595c, 0x5360, 0x587d, 0x3770, 0x5777, 0x587e, 0x587a, 0x5921,\n  0x4463, 0x5336, 0x5874, 0x595d, 0x587b, 0x4565, 0x4050, 0x5170,\n  0x305b, 0x3c51, 0x5926, 0x5925, 0x592c, 0x592e, 0x592b, 0x4a39,\n  0x5929, 0x5636, 0x335e, 0x5928, 0x407d, 0x4a4c, 0x592a, 0x5927,\n  0x5930, 0x3631, 0x3929, 0x5240, 0x4f40, 0x4242, 0x3d44, 0x556c,\n  0x3260, 0x4748, 0x3f6b, 0x592d, 0x592f, 0x4e6a, 0x3a6e, 0x4756,\n  0x3163, 0x3459, 0x366d, 0x5934, 0x3f21, 0x595e, 0x474e, 0x407e,\n  0x5938, 0x4b57, 0x377d, 0x5935, 0x5937, 0x3123, 0x5361, 0x5939,\n  0x5045, 0x5936, 0x5931, 0x5932, 0x4129, 0x5933, 0x3c73, 0x505e,\n  0x3829, 0x3e63, 0x593d, 0x593a, 0x3033, 0x5942, 0x5944, 0x3136,\n  0x593f, 0x3539, 0x3e73, 0x4c48, 0x3a72, 0x5250, 0x5943, 0x3d68,\n  0x332b, 0x5945, 0x3e6b, 0x5946, 0x593b, 0x445f, 0x593e, 0x5941,\n  0x5940, 0x552e, 0x5635, 0x4763, 0x5948, 0x3c59, 0x594a, 0x593c,\n  0x594b, 0x462b, 0x5949, 0x5776, 0x4d23, 0x3d21, 0x594c, 0x453c,\n  0x4d35, 0x594d, 0x5947, 0x3325, 0x3f7e, 0x3835, 0x407c, 0x3078,\n  0x3476, 0x594e, 0x594f, 0x3422, 0x5950, 0x345f, 0x3041, 0x5951,\n  0x4935, 0x4f71, 0x5952, 0x4145, 0x5956, 0x492e, 0x5955, 0x5954,\n  0x5957, 0x4b5b, 0x3d29, 0x4627, 0x5953, 0x5958, 0x5959, 0x4865,\n  0x405c, 0x3679, 0x5823, 0x544a, 0x542a, 0x5056, 0x3364, 0x5557,\n  0x4f48, 0x3962, 0x3f4b, 0x4362, 0x3652, 0x4d43, 0x596e, 0x5970,\n  0x3533, 0x3635, 0x3e24, 0x486b, 0x482b, 0x304b, 0x392b, 0x4179,\n  0x5962, 0x403c, 0x3932, 0x3958, 0x504b, 0x3178, 0x4664, 0x3e5f,\n  0x3564, 0x5748, 0x5178, 0x3c66, 0x4a5e, 0x3c3d, 0x5966, 0x5867,\n  0x445a, 0x3854, 0x483d, 0x3261, 0x5459, 0x4330, 0x4361, 0x5a22,\n  0x485f, 0x5034, 0x3e7c, 0x4529, 0x395a, 0x5a23, 0x5429, 0x5a24,\n  0x597b, 0x362c, 0x376b, 0x3179, 0x597c, 0x3365, 0x3e76, 0x3f76,\n  0x5231, 0x4064, 0x3633, 0x597e, 0x597d, 0x3e3b, 0x4660, 0x573c,\n  0x5a21, 0x4139, 0x3572, 0x4168, 0x3c75, 0x3455, 0x415d, 0x447d,\n  0x3c38, 0x3732, 0x376f, 0x596c, 0x463e, 0x3f2d, 0x3b4b, 0x354a,\n  0x5b49, 0x5057, 0x4d39, 0x303c, 0x3376, 0x3b77, 0x5b4a, 0x3a2f,\n  0x5464, 0x3536, 0x3573, 0x5856, 0x4850, 0x3756, 0x4750, 0x5857,\n  0x3f2f, 0x5b3b, 0x5858, 0x504c, 0x3b2e, 0x6b3e, 0x4150, 0x4175,\n  0x5472, 0x3855, 0x3434, 0x3375, 0x493e, 0x4550, 0x4559, 0x407b,\n  0x3170, 0x5859, 0x394e, 0x353d, 0x585a, 0x5646, 0x4b22, 0x482f,\n  0x4932, 0x344c, 0x3f4c, 0x3974, 0x585b, 0x585c, 0x3667, 0x3c41,\n  0x4c6a, 0x4f77, 0x585d, 0x4730, 0x3950, 0x3d23, 0x4c5e, 0x464a,\n  0x5860, 0x585e, 0x585f, 0x307e, 0x3e67, 0x4a23, 0x3c74, 0x3831,\n  0x386e, 0x5862, 0x3d4b, 0x5864, 0x5863, 0x457c, 0x5865, 0x5866,\n  0x4126, 0x4830, 0x306c, 0x3926, 0x3c53, 0x4e71, 0x5b3d, 0x4153,\n  0x362f, 0x567a, 0x452c, 0x3d59, 0x5b3e, 0x5b3f, 0x4078, 0x3e22,\n  0x404d, 0x5b40, 0x4a46, 0x322a, 0x5342, 0x4363, 0x512b, 0x5b42,\n  0x4055, 0x5b43, 0x3f31, 0x443c, 0x475a, 0x5b44, 0x5968, 0x4957,\n  0x3934, 0x4e70, 0x5448, 0x307c, 0x3452, 0x5059, 0x5969, 0x5e4b,\n  0x596b, 0x5830, 0x3b2f, 0x3131, 0x3357, 0x584e, 0x5451, 0x3d33,\n  0x3f6f, 0x4f3b, 0x5850, 0x374b, 0x5851, 0x4625, 0x4778, 0x523d,\n  0x5852, 0x4464, 0x4a2e, 0x4727, 0x5826, 0x497d, 0x4e67, 0x3b5c,\n  0x306b, 0x3b2a, 0x502d, 0x3130, 0x5764, 0x573f, 0x3525, 0x4274,\n  0x444f, 0x3229, 0x3237, 0x3165, 0x5f32, 0x553c, 0x3f28, 0x422c,\n  0x5855, 0x4231, 0x5854, 0x4e54, 0x5a60, 0x4e40, 0x5834, 0x432e,\n  0x5321, 0x4e23, 0x3c34, 0x4834, 0x4251, 0x3e6d, 0x5036, 0x5a61,\n  0x4764, 0x3327, 0x3672, 0x4c7c, 0x407a, 0x4077, 0x5139, 0x5161,\n  0x5847, 0x325e, 0x4065, 0x3a71, 0x5848, 0x542d, 0x4f61, 0x5849,\n  0x584a, 0x4f43, 0x3378, 0x3e47, 0x584b, 0x5b4c, 0x4825, 0x4f58,\n  0x487e, 0x324e, 0x5356, 0x3266, 0x3c30, 0x5351, 0x4b2b, 0x3734,\n  0x3722, 0x4a65, 0x4821, 0x4a5c, 0x3164, 0x5070, 0x4551, 0x5b45,\n  0x357e, 0x3f5a, 0x3945, 0x3e64, 0x416d, 0x5f36, 0x5f35, 0x563b,\n  0x3d50, 0x5559, 0x3048, 0x3623, 0x3f49, 0x4c28, 0x5f33, 0x4a37,\n  0x5352, 0x584f, 0x5236, 0x3a45, 0x4b3e, 0x4c3e, 0x5f37, 0x3570,\n  0x5f34, 0x5375, 0x3354, 0x3877, 0x5f3a, 0x3a4f, 0x3c2a, 0x3575,\n  0x4d2c, 0x437b, 0x3a73, 0x4074, 0x4d42, 0x4f72, 0x5f38, 0x4f45,\n  0x4240, 0x5f39, 0x4270, 0x3e7d, 0x415f, 0x4d4c, 0x5277, 0x374d,\n  0x5f41, 0x5f44, 0x3771, 0x3049, 0x3656, 0x3754, 0x3a2c, 0x4c7d,\n  0x3f54, 0x4b31, 0x4674, 0x5628, 0x5f45, 0x4e62, 0x3333, 0x4e7c,\n  0x3435, 0x4e47, 0x3a70, 0x4e61, 0x513d, 0x5f40, 0x3474, 0x334a,\n  0x3866, 0x5f3b, 0x4445, 0x5f3c, 0x5f3d, 0x5f3e, 0x453b, 0x5f3f,\n  0x5f42, 0x5431, 0x5f43, 0x473a, 0x4e58, 0x4458, 0x5f4a, 0x5f4f,\n  0x565c, 0x5f49, 0x5f5a, 0x4e36, 0x3a47, 0x5f4e, 0x5f48, 0x455e,\n  0x496b, 0x3a74, 0x437c, 0x3e57, 0x5f46, 0x5f4d, 0x4558, 0x5526,\n  0x3a4d, 0x3e4c, 0x533d, 0x3840, 0x5664, 0x5f47, 0x393e, 0x3f27,\n  0x417c, 0x5f4b, 0x5f4c, 0x5f50, 0x5f5b, 0x5f65, 0x5f57, 0x5f56,\n  0x5749, 0x5f63, 0x5f64, 0x656b, 0x5227, 0x5f52, 0x3f29, 0x545b,\n  0x3f48, 0x5f54, 0x4f4c, 0x5f5d, 0x514a, 0x5f5e, 0x3027, 0x4637,\n  0x5f53, 0x3a65, 0x365f, 0x4d5b, 0x397e, 0x5455, 0x5f5f, 0x4f6c,\n  0x3025, 0x5f67, 0x5f51, 0x5146, 0x5f55, 0x5f58, 0x5f59, 0x5f5c,\n  0x3b29, 0x5f60, 0x5f61, 0x5f62, 0x5f66, 0x5f68, 0x5334, 0x3867,\n  0x4536, 0x5f6a, 0x495a, 0x4128, 0x4444, 0x3f5e, 0x4f78, 0x555c,\n  0x5f6e, 0x3238, 0x3a5f, 0x5f6c, 0x5b41, 0x5164, 0x4b74, 0x343d,\n  0x3026, 0x5f71, 0x4c46, 0x5f72, 0x5f6d, 0x5f69, 0x5f6b, 0x5f6f,\n  0x5f70, 0x3b3d, 0x5f73, 0x5f74, 0x3b23, 0x4a5b, 0x4e28, 0x6027,\n  0x332a, 0x6026, 0x6021, 0x5f7e, 0x4d59, 0x5f7c, 0x5f7a, 0x3f50,\n  0x5744, 0x494c, 0x5f78, 0x3021, 0x5f7d, 0x5f7b, 0x6022, 0x6028,\n  0x3748, 0x4621, 0x4936, 0x4032, 0x5f75, 0x453e, 0x5844, 0x5f79,\n  0x4476, 0x6023, 0x6024, 0x6025, 0x5025, 0x6034, 0x4c64, 0x6031,\n  0x3f26, 0x602f, 0x4e39, 0x602b, 0x4946, 0x402e, 0x602e, 0x3a6d,\n  0x3a30, 0x6029, 0x5f76, 0x6033, 0x6038, 0x342d, 0x6039, 0x4f32,\n  0x3a48, 0x6030, 0x507a, 0x602c, 0x547b, 0x5f77, 0x4567, 0x602d,\n  0x5377, 0x6036, 0x6037, 0x6044, 0x5061, 0x603c, 0x6049, 0x604a,\n  0x603e, 0x602a, 0x4924, 0x6041, 0x6032, 0x4a48, 0x6043, 0x6035,\n  0x4e4b, 0x4b43, 0x604d, 0x6046, 0x6042, 0x604b, 0x603a, 0x603f,\n  0x6040, 0x6045, 0x6047, 0x6048, 0x604c, 0x603b, 0x4b54, 0x6055,\n  0x6056, 0x6052, 0x6050, 0x3c4e, 0x6051, 0x3842, 0x5845, 0x506a,\n  0x426f, 0x604f, 0x603d, 0x6054, 0x6053, 0x6057, 0x605c, 0x6058,\n  0x5676, 0x3330, 0x576c, 0x4b3b, 0x605a, 0x4e7b, 0x3a59, 0x6061,\n  0x605d, 0x522d, 0x6062, 0x605b, 0x6059, 0x605f, 0x6060, 0x605e,\n  0x6064, 0x4677, 0x582c, 0x546b, 0x6066, 0x4a49, 0x6065, 0x3841,\n  0x6067, 0x6068, 0x6069, 0x6063, 0x3a3f, 0x4c67, 0x606a, 0x4f79,\n  0x606b, 0x4842, 0x3d40, 0x4452, 0x606c, 0x606d, 0x4774, 0x4b44,\n  0x606e, 0x3b58, 0x5836, 0x5272, 0x606f, 0x4d45, 0x365a, 0x6071,\n  0x5430, 0x4027, 0x3451, 0x4e27, 0x6070, 0x6072, 0x394c, 0x397a,\n  0x4d3c, 0x6073, 0x4654, 0x6074, 0x5432, 0x4826, 0x6076, 0x6075,\n  0x6077, 0x4d41, 0x4a25, 0x545a, 0x5b57, 0x5b59, 0x5b58, 0x3967,\n  0x5b5c, 0x5b5d, 0x3558, 0x5b5a, 0x5b5b, 0x3321, 0x5b5f, 0x3b78,\n  0x5637, 0x5b60, 0x3e79, 0x373b, 0x5b50, 0x4c2e, 0x3f32, 0x3b35,\n  0x5778, 0x3f53, 0x3f69, 0x3c61, 0x4c33, 0x5b5e, 0x3053, 0x4e6b,\n  0x3758, 0x5739, 0x4642, 0x4024, 0x4c39, 0x5b67, 0x5b61, 0x463a,\n  0x5b63, 0x5b68, 0x4577, 0x5b6a, 0x5b69, 0x3f40, 0x5b66, 0x5b65,\n  0x3439, 0x402c, 0x4222, 0x5b62, 0x5b64, 0x504d, 0x5b6d, 0x405d,\n  0x5b72, 0x3662, 0x5b73, 0x5b52, 0x3938, 0x542b, 0x5b6c, 0x3f51,\n  0x5b70, 0x5b51, 0x3566, 0x5b6b, 0x3f65, 0x5b6e, 0x5b71, 0x5b79,\n  0x3921, 0x3023, 0x4271, 0x3347, 0x5b6f, 0x5b78, 0x4652, 0x5b74,\n  0x5b75, 0x5b77, 0x5b76, 0x5b7e, 0x5372, 0x323a, 0x5b7d, 0x5c24,\n  0x5b7b, 0x5b7a, 0x5b7c, 0x4560, 0x3b79, 0x5c23, 0x5c25, 0x4c43,\n  0x3651, 0x5d40, 0x5c21, 0x5c22, 0x4735, 0x3669, 0x5c27, 0x5c26,\n  0x5c29, 0x3124, 0x354c, 0x3f30, 0x515f, 0x3642, 0x5c28, 0x4b7a,\n  0x6b73, 0x4b5c, 0x4b7e, 0x4c41, 0x487b, 0x5c2a, 0x4c6e, 0x5c2b,\n  0x5b53, 0x5c2f, 0x5c2c, 0x3e33, 0x4a7b, 0x5c2d, 0x494a, 0x4439,\n  0x473d, 0x5c2e, 0x5476, 0x5066, 0x442b, 0x3655, 0x5b54, 0x315a,\n  0x5b55, 0x5b56, 0x3a3e, 0x4840, 0x4a3f, 0x4849, 0x5733, 0x4979,\n  0x3f47, 0x3a78, 0x523c, 0x623a, 0x3426, 0x3138, 0x3834, 0x4f44,\n  0x5967, 0x4f26, 0x4d62, 0x596d, 0x3660, 0x5239, 0x393b, 0x6239,\n  0x6237, 0x3473, 0x4c6c, 0x4c2b, 0x3772, 0x5832, 0x516b, 0x3a3b,\n  0x4a27, 0x4d37, 0x5244, 0x3f64, 0x3c50, 0x3661, 0x5e45, 0x5e46,\n  0x5b3c, 0x5159, 0x4666, 0x444e, 0x376e, 0x375c, 0x3f7c, 0x5760,\n  0x4675, 0x313c, 0x5e48, 0x3d31, 0x4c57, 0x5e4a, 0x5e49, 0x356c,\n  0x495d, 0x3042, 0x452e, 0x452b, 0x444c, 0x3c69, 0x4b7d, 0x3a43,\n  0x6579, 0x4867, 0x657a, 0x4d7d, 0x5731, 0x383e, 0x4268, 0x4851,\n  0x657b, 0x364a, 0x3c4b, 0x517d, 0x6621, 0x436e, 0x6624, 0x657e,\n  0x6625, 0x4d57, 0x3741, 0x657c, 0x657d, 0x6623, 0x445d, 0x6628,\n  0x6627, 0x4343, 0x465e, 0x662a, 0x4437, 0x6622, 0x4a3c, 0x3d63,\n  0x3943, 0x6626, 0x5055, 0x4e2f, 0x6629, 0x6630, 0x5226, 0x3d2a,\n  0x662d, 0x662f, 0x4051, 0x524c, 0x3c27, 0x6631, 0x5276, 0x574b,\n  0x4d7e, 0x4d5e, 0x4226, 0x662b, 0x662c, 0x3d3f, 0x662e, 0x6633,\n  0x6632, 0x6636, 0x6638, 0x446f, 0x4448, 0x3e6a, 0x496f, 0x6637,\n  0x3670, 0x4364, 0x5369, 0x6634, 0x6635, 0x4822, 0x663d, 0x6639,\n  0x4645, 0x4d71, 0x663b, 0x663c, 0x3b69, 0x663e, 0x663a, 0x4037,\n  0x5324, 0x663f, 0x4974, 0x6643, 0x6644, 0x5076, 0x433d, 0x4344,\n  0x6642, 0x6641, 0x6647, 0x4f31, 0x6b74, 0x664a, 0x6645, 0x3c5e,\n  0x4929, 0x3c35, 0x4f53, 0x6648, 0x6649, 0x664e, 0x6650, 0x6651,\n  0x664b, 0x3555, 0x664c, 0x664f, 0x445b, 0x6646, 0x664d, 0x6652,\n  0x6654, 0x6653, 0x6655, 0x5978, 0x6656, 0x6657, 0x5753, 0x665d,\n  0x665e, 0x3f57, 0x5450, 0x5756, 0x3466, 0x4b6f, 0x665a, 0x5843,\n  0x574e, 0x5022, 0x434f, 0x665f, 0x3c3e, 0x3942, 0x665b, 0x5127,\n  0x3a22, 0x424f, 0x582b, 0x4a6b, 0x656e, 0x665c, 0x3775, 0x4866,\n  0x4475, 0x6532, 0x447e, 0x4b7c, 0x6533, 0x552c, 0x536e, 0x4a58,\n  0x3032, 0x4b4e, 0x4d6a, 0x3a6a, 0x6535, 0x6534, 0x575a, 0x3959,\n  0x5666, 0x3628, 0x4d70, 0x524b, 0x3126, 0x4a35, 0x3368, 0x4973,\n  0x3f4d, 0x507b, 0x4a52, 0x6536, 0x3b42, 0x4f5c, 0x392c, 0x5457,\n  0x3a26, 0x5167, 0x4f7c, 0x3c52, 0x6537, 0x485d, 0x3f6d, 0x3176,\n  0x4b5e, 0x3c45, 0x3c44, 0x527a, 0x435c, 0x3f5c, 0x383b, 0x4342,\n  0x3a2e, 0x5422, 0x475e, 0x442f, 0x326c, 0x3951, 0x653b, 0x4148,\n  0x552f, 0x653c, 0x653e, 0x3467, 0x3654, 0x4b42, 0x5130, 0x353c,\n  0x4a59, 0x3762, 0x4964, 0x3d2b, 0x4e3e, 0x5770, 0x5021, 0x4959,\n  0x367b, 0x6658, 0x3c62, 0x333e, 0x4950, 0x6659, 0x3322, 0x5e4c,\n  0x5348, 0x5e4d, 0x5222, 0x5e4e, 0x3e4d, 0x5e4f, 0x4a2c, 0x527c,\n  0x335f, 0x656a, 0x4461, 0x3e21, 0x4e32, 0x4472, 0x3e56, 0x4628,\n  0x3263, 0x3e53, 0x477c, 0x4c6b, 0x3d6c, 0x4e5d, 0x4a3a, 0x4641,\n  0x656c, 0x503c, 0x5539, 0x656d, 0x4a74, 0x4d40, 0x4245, 0x656f,\n  0x4244, 0x6570, 0x6578, 0x4d4d, 0x493d, 0x5259, 0x6128, 0x536c,\n  0x4b6a, 0x4671, 0x612c, 0x6127, 0x6129, 0x612a, 0x612f, 0x326d,\n  0x612b, 0x385a, 0x612d, 0x612e, 0x6130, 0x353a, 0x6131, 0x6133,\n  0x6138, 0x5152, 0x6136, 0x6135, 0x416b, 0x6137, 0x5440, 0x6132,\n  0x613a, 0x3036, 0x6134, 0x3f79, 0x6139, 0x613b, 0x613e, 0x613c,\n  0x5645, 0x4f3f, 0x613d, 0x613f, 0x424d, 0x366b, 0x5378, 0x474d,\n  0x3765, 0x3e7e, 0x6140, 0x6141, 0x6147, 0x3367, 0x4669, 0x345e,\n  0x5142, 0x6148, 0x6146, 0x6145, 0x6143, 0x6142, 0x3140, 0x5538,\n  0x6144, 0x614b, 0x614c, 0x614a, 0x6f7a, 0x6153, 0x6152, 0x4736,\n  0x6149, 0x614e, 0x6150, 0x6154, 0x6151, 0x614d, 0x614f, 0x6155,\n  0x6156, 0x6157, 0x6158, 0x615a, 0x615b, 0x4e21, 0x675d, 0x3428,\n  0x565d, 0x5132, 0x3332, 0x3924, 0x5773, 0x4749, 0x3e5e, 0x392e,\n  0x4e57, 0x326e, 0x5b4f, 0x3c3a, 0x5251, 0x4b48, 0x304d, 0x4f6f,\n  0x5963, 0x3d6d, 0x3152, 0x4a50, 0x323c, 0x4b27, 0x372b, 0x4a26,\n  0x4f23, 0x6078, 0x554a, 0x607b, 0x607a, 0x4541, 0x4c7b, 0x4131,\n  0x6079, 0x5663, 0x322f, 0x5644, 0x355b, 0x3478, 0x5621, 0x4f2f,\n  0x306f, 0x607c, 0x6121, 0x3323, 0x607d, 0x607e, 0x4331, 0x435d,\n  0x6122, 0x3779, 0x3b4f, 0x6123, 0x443b, 0x6124, 0x6125, 0x6126,\n  0x3431, 0x3849, 0x463d, 0x446a, 0x3222, 0x5052, 0x675b, 0x3b43,\n  0x5357, 0x5344, 0x3963, 0x624f, 0x572f, 0x476c, 0x3153, 0x3432,\n  0x6251, 0x5072, 0x422e, 0x6250, 0x3f62, 0x5326, 0x3557, 0x6252,\n  0x356a, 0x436d, 0x387d, 0x382e, 0x4553, 0x374f, 0x6254, 0x6253,\n  0x3648, 0x5779, 0x4d25, 0x6258, 0x6256, 0x4a7c, 0x3f35, 0x5339,\n  0x6255, 0x6257, 0x412e, 0x4048, 0x625b, 0x625a, 0x402a, 0x414e,\n  0x625c, 0x625d, 0x625e, 0x5b48, 0x5153, 0x4d22, 0x3d28, 0x5e43,\n  0x5825, 0x3f2a, 0x5b4d, 0x526c, 0x467a, 0x452a, 0x5e44, 0x3157,\n  0x5f2e, 0x4a3d, 0x5f31, 0x392d, 0x527d, 0x3825, 0x3a6b, 0x335a,\n  0x355c, 0x5545, 0x4356, 0x4f52, 0x3b21, 0x6573, 0x6572, 0x6574,\n  0x4d64, 0x4875, 0x352f, 0x473f, 0x6576, 0x6c30, 0x6566, 0x3969,\n  0x3531, 0x423c, 0x6568, 0x6567, 0x6569, 0x524d, 0x616a, 0x504e,\n  0x4d2e, 0x5165, 0x324a, 0x316b, 0x3172, 0x456d, 0x5543, 0x5330,\n  0x615c, 0x615d, 0x525b, 0x3339, 0x314b, 0x4d79, 0x5577, 0x615e,\n  0x3e36, 0x347d, 0x615f, 0x3a5c, 0x6160, 0x3b32, 0x4249, 0x6161,\n  0x506c, 0x4d3d, 0x6162, 0x3543, 0x4547, 0x6163, 0x6164, 0x5379,\n  0x6165, 0x512d, 0x6166, 0x4e22, 0x6167, 0x3542, 0x6168, 0x3b55,\n  0x5044, 0x6260, 0x3158, 0x5264, 0x6261, 0x3c49, 0x484c, 0x6263,\n  0x6c7e, 0x6c7d, 0x5f2f, 0x6262, 0x563e, 0x4d7c, 0x4326, 0x6343,\n  0x5652, 0x6267, 0x6268, 0x5347, 0x626c, 0x3f6c, 0x626d, 0x6265,\n  0x3340, 0x446e, 0x626e, 0x5043, 0x3a76, 0x6269, 0x375e, 0x3b33,\n  0x4c2c, 0x4b4b, 0x6264, 0x6266, 0x626a, 0x626b, 0x6277, 0x6274,\n  0x5475, 0x6273, 0x452d, 0x557a, 0x4542, 0x3240, 0x626f, 0x6272,\n  0x412f, 0x4b3c, 0x3521, 0x6279, 0x3c31, 0x6271, 0x5054, 0x5439,\n  0x6275, 0x3956, 0x6276, 0x4753, 0x6270, 0x575c, 0x6d21, 0x6278,\n  0x6d25, 0x627e, 0x4a51, 0x4135, 0x3b50, 0x3f56, 0x3a63, 0x4b21,\n  0x6d26, 0x6d23, 0x6d22, 0x3b56, 0x6d27, 0x5074, 0x6d24, 0x3a5e,\n  0x3677, 0x6321, 0x3632, 0x4c71, 0x3927, 0x4f22, 0x4721, 0x3f52,\n  0x3671, 0x627a, 0x627b, 0x627d, 0x627c, 0x4455, 0x6322, 0x5341,\n  0x6327, 0x4744, 0x4f24, 0x6329, 0x3a37, 0x6328, 0x3b5a, 0x6323,\n  0x6324, 0x632a, 0x6326, 0x4e72, 0x5346, 0x3b3c, 0x5443, 0x447a,\n  0x6d28, 0x507c, 0x6325, 0x4375, 0x632d, 0x312f, 0x6332, 0x3c42,\n  0x632c, 0x353f, 0x4769, 0x6330, 0x3e2a, 0x4d6f, 0x3b73, 0x4c68,\n  0x632f, 0x6331, 0x4f27, 0x632e, 0x4e29, 0x3b5d, 0x356b, 0x3e65,\n  0x3252, 0x334d, 0x3139, 0x632b, 0x3251, 0x352c, 0x395f, 0x3668,\n  0x4f6b, 0x6337, 0x3b4c, 0x4847, 0x504a, 0x6338, 0x336e, 0x6d29,\n  0x537a, 0x5364, 0x6d2a, 0x6339, 0x5262, 0x6335, 0x535e, 0x3850,\n  0x6333, 0x6336, 0x375f, 0x6334, 0x4022, 0x633a, 0x5438, 0x3448,\n  0x633b, 0x3b45, 0x4977, 0x4965, 0x443d, 0x6d2b, 0x427d, 0x3b5b,\n  0x3f2e, 0x4e3f, 0x633c, 0x3f36, 0x316f, 0x5477, 0x633e, 0x6d2d,\n  0x633f, 0x3a29, 0x6d2c, 0x633d, 0x6340, 0x3a36, 0x362e, 0x5038,\n  0x3043, 0x6d2e, 0x6d2f, 0x4041, 0x6341, 0x4533, 0x6342, 0x5c32,\n  0x6d30, 0x386a, 0x4e6c, 0x6a27, 0x5067, 0x4a79, 0x4856, 0x4f37,\n  0x3349, 0x4e52, 0x3d64, 0x635e, 0x3b72, 0x6a28, 0x553d, 0x465d,\n  0x6a29, 0x6a2a, 0x6a2c, 0x6a2b, 0x6a2e, 0x6a2d, 0x3d58, 0x6a2f,\n  0x423e, 0x3441, 0x3477, 0x3b27, 0x6c66, 0x6c65, 0x373f, 0x4b79,\n  0x3162, 0x6c67, 0x4948, 0x6c68, 0x6c69, 0x4a56, 0x5e50, 0x3245,\n  0x547a, 0x464b, 0x3047, 0x3472, 0x4853, 0x4d50, 0x3f38, 0x3f5b,\n  0x4724, 0x5634, 0x4029, 0x5e51, 0x4928, 0x516f, 0x4524, 0x3067,\n  0x3336, 0x4845, 0x3062, 0x3776, 0x457a, 0x3673, 0x5552, 0x3350,\n  0x3c3c, 0x332d, 0x3e71, 0x3051, 0x5256, 0x4a63, 0x5725, 0x4d36,\n  0x3636, 0x3f39, 0x555b, 0x3827, 0x4557, 0x5e52, 0x3f59, 0x4255,\n  0x4740, 0x3b24, 0x3128, 0x456a, 0x457b, 0x4c27, 0x3127, 0x3556,\n  0x4428, 0x5e53, 0x513a, 0x3369, 0x4372, 0x3777, 0x5674, 0x3523,\n  0x3270, 0x4434, 0x4469, 0x402d, 0x5e54, 0x3068, 0x4544, 0x4160,\n  0x3955, 0x3e5c, 0x4d58, 0x304e, 0x4d4f, 0x5e56, 0x3e50, 0x573e,\n  0x5e55, 0x5550, 0x305d, 0x4462, 0x4223, 0x3c70, 0x5335, 0x4039,\n  0x4521, 0x3226, 0x5471, 0x4028, 0x4a43, 0x5e57, 0x557c, 0x3930,\n  0x482d, 0x4b29, 0x5e59, 0x3f3d, 0x4634, 0x5727, 0x4a30, 0x4443,\n  0x3356, 0x3952, 0x5638, 0x6a7c, 0x3034, 0x3f66, 0x4c74, 0x4d5a,\n  0x563f, 0x424e, 0x4e4e, 0x4c22, 0x502e, 0x4453, 0x3532, 0x5e58,\n  0x5575, 0x3c37, 0x3b53, 0x3024, 0x4532, 0x346c, 0x5571, 0x6a7d,\n  0x5e5a, 0x4d26, 0x4d6c, 0x4e66, 0x5e5c, 0x4d31, 0x4026, 0x573d,\n  0x5e5b, 0x3046, 0x3a34, 0x4953, 0x4473, 0x3e68, 0x3236, 0x404c,\n  0x4b70, 0x3c71, 0x3b3b, 0x3537, 0x4575, 0x5e66, 0x5e63, 0x3e5d,\n  0x5e5f, 0x3437, 0x3d5d, 0x5e60, 0x446d, 0x4f46, 0x3560, 0x365e,\n  0x4a5a, 0x3574, 0x5e65, 0x5546, 0x5e61, 0x4c4d, 0x467e, 0x4545,\n  0x5234, 0x3e72, 0x4253, 0x4c3d, 0x3338, 0x3d53, 0x3f58, 0x4d46,\n  0x515a, 0x346b, 0x5e64, 0x5e5d, 0x5e67, 0x6a7e, 0x4230, 0x5e62,\n  0x5640, 0x3527, 0x3274, 0x5e68, 0x5e72, 0x5e6d, 0x5e71, 0x4860,\n  0x5761, 0x5e6f, 0x4368, 0x4c61, 0x3265, 0x523e, 0x5e6e, 0x5e6b,\n  0x4e55, 0x3427, 0x3f2b, 0x3e3e, 0x3d52, 0x5e69, 0x542e, 0x5e5e,\n  0x5e6a, 0x403f, 0x5e6c, 0x3273, 0x3869, 0x4227, 0x3d41, 0x5e75,\n  0x5e78, 0x322b, 0x3424, 0x346a, 0x4926, 0x5e76, 0x4b51, 0x3863,\n  0x5e77, 0x5e7a, 0x5e79, 0x4c42, 0x3061, 0x346e, 0x653a, 0x502f,\n  0x326b, 0x6b21, 0x5e74, 0x4963, 0x5e73, 0x305a, 0x5221, 0x3177,\n  0x4c2f, 0x5e70, 0x4b24, 0x552a, 0x5e7b, 0x345d, 0x4426, 0x5e7d,\n  0x437e, 0x4421, 0x5f21, 0x414c, 0x5e7c, 0x3e6f, 0x4632, 0x3345,\n  0x4876, 0x4b3a, 0x5e7e, 0x5f24, 0x5732, 0x3337, 0x4143, 0x474b,\n  0x3225, 0x3469, 0x572b, 0x446c, 0x5f22, 0x5f23, 0x5f25, 0x3a33,\n  0x5f26, 0x405e, 0x4943, 0x3259, 0x4766, 0x5f27, 0x475c, 0x5f28,\n  0x6b22, 0x4b53, 0x5f2a, 0x5f29, 0x3241, 0x454a, 0x5f2b, 0x545c,\n  0x4841, 0x5f2c, 0x3e70, 0x5f2d, 0x5627, 0x6a37, 0x6b36, 0x4a55,\n  0x587c, 0x3844, 0x3925, 0x3745, 0x557e, 0x394a, 0x5027, 0x744d,\n  0x3550, 0x4374, 0x3e48, 0x6b37, 0x303d, 0x3d4c, 0x4132, 0x3156,\n  0x3328, 0x3852, 0x4922, 0x3658, 0x6b38, 0x3e34, 0x4a7d, 0x4743,\n  0x557b, 0x3773, 0x4e44, 0x552b, 0x3173, 0x6c33, 0x305f, 0x6c35,\n  0x3637, 0x414f, 0x757a, 0x5031, 0x5565, 0x4e53, 0x3d6f, 0x3362,\n  0x382b, 0x5536, 0x6d3d, 0x364f, 0x4b39, 0x5042, 0x373d, 0x6c36,\n  0x4a29, 0x4554, 0x6c39, 0x6c38, 0x4243, 0x6c37, 0x507d, 0x6c3a,\n  0x6c3b, 0x5765, 0x6c3c, 0x6c3d, 0x466c, 0x4e5e, 0x3c48, 0x4855,\n  0x3529, 0x3e49, 0x563c, 0x5467, 0x512e, 0x5071, 0x6a38, 0x6a39,\n  0x6a3a, 0x3a35, 0x4a31, 0x3f75, 0x4d7a, 0x6a40, 0x303a, 0x6a3e,\n  0x4025, 0x6a3b, 0x327d, 0x4377, 0x3b68, 0x5257, 0x4e74, 0x6a3f,\n  0x6a3c, 0x6a43, 0x5047, 0x5333, 0x343a, 0x4341, 0x5772, 0x5551,\n  0x4a47, 0x6a45, 0x6a44, 0x6a47, 0x6a46, 0x5667, 0x4f54, 0x6a4b,\n  0x3b4e, 0x3d7a, 0x494e, 0x6a4c, 0x4939, 0x4f7e, 0x6a4a, 0x544e,\n  0x6a4d, 0x6a4f, 0x4d6d, 0x6a49, 0x6a4e, 0x4e6e, 0x3b5e, 0x333f,\n  0x4655, 0x3e30, 0x4e7a, 0x4767, 0x3e27, 0x6a50, 0x5647, 0x4140,\n  0x545d, 0x6a51, 0x4f3e, 0x6a52, 0x4a6e, 0x452f, 0x3035, 0x6a54,\n  0x6a53, 0x745f, 0x443a, 0x3129, 0x655f, 0x6a55, 0x4a6f, 0x6a56,\n  0x6a57, 0x4658, 0x6a58, 0x6a59, 0x543b, 0x477a, 0x5237, 0x387c,\n  0x6a42, 0x325c, 0x427c, 0x5478, 0x4c66, 0x576e, 0x5442, 0x5350,\n  0x6b43, 0x4573, 0x377e, 0x6b54, 0x4b37, 0x6b5e, 0x404a, 0x4d7b,\n  0x332f, 0x465a, 0x6b7c, 0x443e, 0x4e34, 0x4429, 0x313e, 0x547d,\n  0x4a75, 0x566c, 0x4653, 0x3664, 0x3b7a, 0x5060, 0x4931, 0x5453,\n  0x4828, 0x384b, 0x683e, 0x493c, 0x683b, 0x406e, 0x5053, 0x3244,\n  0x3465, 0x683c, 0x5548, 0x3645, 0x683d, 0x4a78, 0x385c, 0x4c75,\n  0x4034, 0x516e, 0x683f, 0x6842, 0x3a3c, 0x312d, 0x3d5c, 0x6a3d,\n  0x6843, 0x6846, 0x684b, 0x684c, 0x4b49, 0x3065, 0x3c2b, 0x3939,\n  0x6841, 0x4d77, 0x684a, 0x4e76, 0x556d, 0x4156, 0x6844, 0x4336,\n  0x397b, 0x5626, 0x6848, 0x4a60, 0x5466, 0x6840, 0x6845, 0x6847,\n  0x4739, 0x3763, 0x6849, 0x3f5d, 0x6852, 0x6857, 0x6855, 0x3c5c,\n  0x3c4f, 0x685b, 0x685e, 0x685a, 0x317a, 0x3058, 0x4433, 0x384c,\n  0x4662, 0x483e, 0x4861, 0x684f, 0x6854, 0x6856, 0x3971, 0x6858,\n  0x5775, 0x447b, 0x685c, 0x3269, 0x6851, 0x3c6d, 0x3f42, 0x684d,\n  0x5679, 0x4178, 0x3271, 0x685f, 0x4a41, 0x6859, 0x5524, 0x316a,\n  0x553b, 0x684e, 0x6850, 0x3630, 0x6853, 0x685d, 0x4038, 0x4a77,\n  0x4b28, 0x465c, 0x4075, 0x6869, 0x5023, 0x6872, 0x566a, 0x6860,\n  0x6861, 0x5179, 0x3a4b, 0x3879, 0x3871, 0x5454, 0x686f, 0x686e,\n  0x686c, 0x3970, 0x4c52, 0x6866, 0x4e26, 0x3f72, 0x3038, 0x6871,\n  0x6870, 0x5740, 0x6864, 0x4d29, 0x4923, 0x3b38, 0x3d5b, 0x686a,\n  0x6862, 0x6863, 0x6865, 0x3535, 0x6867, 0x4745, 0x686b, 0x686d,\n  0x3d30, 0x572e, 0x6878, 0x6875, 0x4d30, 0x6876, 0x413a, 0x6868,\n  0x4337, 0x3070, 0x6874, 0x6877, 0x3923, 0x4952, 0x434e, 0x4e60,\n  0x4066, 0x4b73, 0x4c5d, 0x5035, 0x4a61, 0x6873, 0x3c6c, 0x6879,\n  0x435e, 0x4665, 0x3977, 0x3074, 0x5758, 0x3c2c, 0x456f, 0x4c44,\n  0x6926, 0x492d, 0x6922, 0x4062, 0x3f43, 0x687e, 0x3957, 0x687b,\n  0x6924, 0x524e, 0x6923, 0x5632, 0x5735, 0x6927, 0x3d37, 0x687c,\n  0x687d, 0x6921, 0x4d56, 0x522c, 0x6932, 0x6929, 0x342a, 0x343b,\n  0x692b, 0x5028, 0x6925, 0x337e, 0x692c, 0x4063, 0x692a, 0x6939,\n  0x6938, 0x692e, 0x687a, 0x6928, 0x3f2c, 0x6931, 0x693a, 0x4225,\n  0x692f, 0x3845, 0x692d, 0x535c, 0x6934, 0x6935, 0x6937, 0x6947,\n  0x4046, 0x6945, 0x6930, 0x693b, 0x3071, 0x693c, 0x5525, 0x693e,\n  0x693f, 0x6941, 0x4171, 0x4836, 0x693d, 0x6942, 0x6943, 0x6933,\n  0x6936, 0x3b31, 0x6940, 0x3c77, 0x6944, 0x6946, 0x694a, 0x694e,\n  0x325b, 0x6948, 0x372e, 0x694b, 0x694c, 0x5541, 0x4423, 0x6958,\n  0x3a61, 0x6949, 0x5323, 0x6954, 0x6957, 0x6950, 0x694f, 0x4741,\n  0x6952, 0x6959, 0x3348, 0x6953, 0x4f70, 0x694d, 0x3377, 0x6956,\n  0x695a, 0x4c34, 0x4f2d, 0x6955, 0x695c, 0x695b, 0x695e, 0x6951,\n  0x695d, 0x695f, 0x434a, 0x4737, 0x344e, 0x3b36, 0x5040, 0x6c23,\n  0x4537, 0x537b, 0x6c24, 0x6c25, 0x465b, 0x3f6e, 0x6c26, 0x6c27,\n  0x502a, 0x4738, 0x3868, 0x6c28, 0x5639, 0x557d, 0x344b, 0x323d,\n  0x4e64, 0x4667, 0x4d61, 0x3475, 0x4b40, 0x3c5f, 0x6962, 0x6963,\n  0x516a, 0x6965, 0x3479, 0x6964, 0x5133, 0x4a62, 0x3250, 0x6968,\n  0x6966, 0x6967, 0x5633, 0x6969, 0x696a, 0x696b, 0x696c, 0x6c2f,\n  0x4539, 0x364e, 0x5273, 0x356e, 0x3b59, 0x6c31, 0x5263, 0x4e63,\n  0x4438, 0x433f, 0x363e, 0x5839, 0x3148, 0x314f, 0x3151, 0x457e,\n  0x3150, 0x432b, 0x5531, 0x6b24, 0x3a41, 0x4c3a, 0x6b25, 0x6b27,\n  0x6b28, 0x6b26, 0x6b29, 0x6b2b, 0x6b2a, 0x6b2c, 0x4a4f, 0x5835,\n  0x4371, 0x4325, 0x4678, 0x6b2d, 0x444a, 0x6b2e, 0x6b2f, 0x6b30,\n  0x3755, 0x377a, 0x6b31, 0x4762, 0x6b33, 0x3a24, 0x5175, 0x3031,\n  0x6b32, 0x6b34, 0x352a, 0x4248, 0x4768, 0x6b35, 0x4b2e, 0x635f,\n  0x5340, 0x595b, 0x4d21, 0x562d, 0x4773, 0x5960, 0x3b63, 0x3a3a,\n  0x6362, 0x4f2b, 0x6360, 0x4947, 0x3a39, 0x5134, 0x6361, 0x486a,\n  0x392f, 0x3d2d, 0x3358, 0x4e5b, 0x4c40, 0x6368, 0x6369, 0x4d74,\n  0x4c2d, 0x3c33, 0x636a, 0x636b, 0x505a, 0x467b, 0x375a, 0x475f,\n  0x524a, 0x4e56, 0x6364, 0x636c, 0x4972, 0x3341, 0x6367, 0x4663,\n  0x6365, 0x6d33, 0x6366, 0x4933, 0x4566, 0x3935, 0x433b, 0x6363,\n  0x453d, 0x4124, 0x4259, 0x3257, 0x636d, 0x3b26, 0x442d, 0x6370,\n  0x3e5a, 0x637b, 0x6375, 0x3a53, 0x3750, 0x534d, 0x564e, 0x5553,\n  0x3941, 0x5534, 0x5158, 0x5039, 0x4776, 0x482a, 0x3234, 0x435a,\n  0x636e, 0x637c, 0x636f, 0x3728, 0x6377, 0x6374, 0x373a, 0x4522,\n  0x6376, 0x455d, 0x3228, 0x467c, 0x4460, 0x5722, 0x4061, 0x6379,\n  0x637a, 0x637d, 0x4c29, 0x6373, 0x533e, 0x3143, 0x6d34, 0x6371,\n  0x6372, 0x6378, 0x503a, 0x4643, 0x5473, 0x637e, 0x3d60, 0x6427,\n  0x6426, 0x5173, 0x6423, 0x6429, 0x4877, 0x4f34, 0x6428, 0x642e,\n  0x4265, 0x3634, 0x3d72, 0x6422, 0x3a69, 0x642a, 0x642c, 0x367d,\n  0x565e, 0x6432, 0x642d, 0x6421, 0x3b6e, 0x4d5d, 0x4722, 0x4549,\n  0x4177, 0x6424, 0x4733, 0x3d2c, 0x3d3d, 0x6425, 0x5747, 0x3262,\n  0x642b, 0x3c43, 0x642f, 0x3b6b, 0x6430, 0x4528, 0x6431, 0x5563,\n  0x3f23, 0x643a, 0x6437, 0x643b, 0x643d, 0x4656, 0x3a46, 0x404b,\n  0x3821, 0x6434, 0x5421, 0x3a23, 0x3d7e, 0x643c, 0x4d3f, 0x4479,\n  0x4f7b, 0x4966, 0x533f, 0x4f51, 0x6433, 0x6438, 0x6439, 0x4c69,\n  0x4c4e, 0x4054, 0x6435, 0x4130, 0x6436, 0x4e50, 0x3b41, 0x3553,\n  0x4873, 0x3d27, 0x5547, 0x492c, 0x3822, 0x644a, 0x644c, 0x5144,\n  0x523a, 0x3a2d, 0x3a54, 0x6443, 0x356d, 0x574d, 0x6440, 0x4f7d,\n  0x643f, 0x415c, 0x4c4a, 0x4a67, 0x4457, 0x4c54, 0x6448, 0x6447,\n  0x6441, 0x6444, 0x352d, 0x5359, 0x6446, 0x5279, 0x3463, 0x3b34,\n  0x496e, 0x343e, 0x3b6c, 0x514d, 0x4c6d, 0x6d35, 0x4765, 0x5428,\n  0x644b, 0x5755, 0x6442, 0x3d25, 0x6445, 0x5366, 0x6449, 0x4978,\n  0x643e, 0x5365, 0x477e, 0x3649, 0x547c, 0x3233, 0x6457, 0x4e42,\n  0x644d, 0x4e3c, 0x385b, 0x6456, 0x3f4a, 0x534e, 0x436c, 0x4548,\n  0x6458, 0x4d44, 0x644f, 0x6454, 0x6455, 0x3a7e, 0x4f66, 0x553f,\n  0x6452, 0x6450, 0x644e, 0x4d65, 0x4a2a, 0x4023, 0x3d26, 0x6453,\n  0x3848, 0x6467, 0x5434, 0x645b, 0x416f, 0x6469, 0x5267, 0x645f,\n  0x6460, 0x4f2a, 0x4b5d, 0x645a, 0x6451, 0x6465, 0x485c, 0x6463,\n  0x4467, 0x6462, 0x6461, 0x337c, 0x6468, 0x3561, 0x574c, 0x6466,\n  0x3b2c, 0x5752, 0x4c4f, 0x6b78, 0x6464, 0x3976, 0x564d, 0x6459,\n  0x645c, 0x427a, 0x645e, 0x424b, 0x4044, 0x4250, 0x3175, 0x4c32,\n  0x354e, 0x646f, 0x462f, 0x4661, 0x6475, 0x4229, 0x406c, 0x515d,\n  0x646e, 0x442e, 0x646d, 0x6476, 0x6474, 0x427e, 0x645d, 0x6470,\n  0x4a7e, 0x5544, 0x6471, 0x517a, 0x646b, 0x646c, 0x6472, 0x4e2b,\n  0x454b, 0x4731, 0x423a, 0x646a, 0x414a, 0x4c36, 0x3331, 0x647b,\n  0x6473, 0x647a, 0x647d, 0x647c, 0x334e, 0x333a, 0x6477, 0x6479,\n  0x6478, 0x456c, 0x403d, 0x5468, 0x6522, 0x3044, 0x6524, 0x6523,\n  0x3c24, 0x6525, 0x6521, 0x647e, 0x3174, 0x6528, 0x6529, 0x6526,\n  0x6527, 0x652a, 0x4659, 0x652b, 0x652d, 0x652c, 0x652f, 0x652e,\n  0x3960, 0x6530, 0x6531, 0x3b70, 0x6c61, 0x4370, 0x3546, 0x3b52,\n  0x4169, 0x546e, 0x3e44, 0x5746, 0x5456, 0x3253, 0x6c3e, 0x6a41,\n  0x422f, 0x3436, 0x5157, 0x3334, 0x4832, 0x3f3b, 0x6c40, 0x564b,\n  0x6c3f, 0x6c41, 0x6c45, 0x3e66, 0x4c3f, 0x455a, 0x3e3c, 0x6c46,\n  0x317e, 0x6c44, 0x5528, 0x3563, 0x6c42, 0x4136, 0x3363, 0x6c43,\n  0x4b38, 0x4043, 0x4c7e, 0x4152, 0x6c48, 0x3a66, 0x4053, 0x5672,\n  0x514c, 0x3f3e, 0x3733, 0x4955, 0x6c47, 0x3b62, 0x4c4c, 0x3d7d,\n  0x4848, 0x4f29, 0x4d69, 0x456b, 0x3769, 0x5149, 0x3a38, 0x6c49,\n  0x6c4a, 0x3b40, 0x6c4b, 0x6c62, 0x313a, 0x3759, 0x3d39, 0x6c4c,\n  0x5166, 0x6c4d, 0x483b, 0x6c51, 0x6c53, 0x3b4d, 0x3c65, 0x6c4f,\n  0x4937, 0x433a, 0x6c63, 0x5555, 0x6c50, 0x5673, 0x6c52, 0x6c4e,\n  0x6c54, 0x6c55, 0x493f, 0x4f28, 0x505c, 0x512c, 0x485b, 0x6c56,\n  0x4e75, 0x4a6c, 0x6c5a, 0x6c59, 0x303e, 0x6c57, 0x6c58, 0x6c64,\n  0x483c, 0x4147, 0x6c5c, 0x5160, 0x6c5b, 0x546f, 0x6c5d, 0x5b46,\n  0x6c5e, 0x312c, 0x6c5f, 0x6c60, 0x5726, 0x4540, 0x6b3c, 0x302e,\n  0x3e74, 0x3838, 0x522f, 0x3056, 0x3579, 0x5833, 0x4b2c, 0x635d,\n  0x462c, 0x3066, 0x4546, 0x6b39, 0x6b3a, 0x6b3b, 0x5140, 0x4523,\n  0x6a72, 0x4432, 0x4435, 0x404e, 0x6a73, 0x4441, 0x4e6f, 0x6a70,\n  0x6a74, 0x497c, 0x4723, 0x4c58, 0x4e7e, 0x6a75, 0x6a76, 0x4f2c,\n  0x4067, 0x6a77, 0x363f, 0x6a78, 0x6a79, 0x6a7a, 0x6a7b, 0x6a71,\n  0x482e, 0x616b, 0x3738, 0x616c, 0x616d, 0x5734, 0x616e, 0x616f,\n  0x534c, 0x6171, 0x3f71, 0x6170, 0x3552, 0x3137, 0x6173, 0x6172,\n  0x3a7c, 0x6174, 0x3937, 0x3e51, 0x447c, 0x3a5d, 0x3d46, 0x6175,\n  0x6177, 0x3640, 0x4f41, 0x4a28, 0x6176, 0x5578, 0x537c, 0x6178,\n  0x617c, 0x6179, 0x617a, 0x406a, 0x617e, 0x6221, 0x4047, 0x617b,\n  0x617d, 0x6225, 0x4154, 0x6223, 0x6228, 0x327e, 0x6222, 0x434d,\n  0x3242, 0x6227, 0x6226, 0x6224, 0x6229, 0x622b, 0x5049, 0x566d,\n  0x4328, 0x622c, 0x4f57, 0x622e, 0x3a6f, 0x6960, 0x622d, 0x622a,\n  0x3b2b, 0x5433, 0x6230, 0x622f, 0x6961, 0x6231, 0x6232, 0x6233,\n  0x4c21, 0x6234, 0x6235, 0x507e, 0x424a, 0x5371, 0x4d75, 0x6760,\n  0x6761, 0x3e41, 0x426a, 0x6764, 0x6763, 0x4d66, 0x4335, 0x6762,\n  0x3b37, 0x4f56, 0x4161, 0x6769, 0x6768, 0x6774, 0x3223, 0x676a,\n  0x6766, 0x676c, 0x676b, 0x493a, 0x5564, 0x6765, 0x3729, 0x6767,\n  0x676e, 0x6773, 0x5669, 0x676d, 0x6772, 0x6771, 0x3060, 0x6775,\n  0x4772, 0x4045, 0x406d, 0x4170, 0x6770, 0x6776, 0x4b76, 0x6822,\n  0x6821, 0x5741, 0x677a, 0x6779, 0x677b, 0x6777, 0x677e, 0x677d,\n  0x677c, 0x4155, 0x4759, 0x457d, 0x4543, 0x476d, 0x6823, 0x6826,\n  0x6825, 0x6827, 0x3a77, 0x6778, 0x6824, 0x4870, 0x492a, 0x6829,\n  0x3965, 0x517e, 0x6828, 0x682a, 0x682d, 0x682e, 0x4127, 0x682f,\n  0x6830, 0x682c, 0x6834, 0x682b, 0x6831, 0x6835, 0x6832, 0x6833,\n  0x6837, 0x6836, 0x394f, 0x702c, 0x702d, 0x4630, 0x306a, 0x483f,\n  0x4d5f, 0x4e4d, 0x6a31, 0x6a32, 0x463f, 0x3449, 0x6a33, 0x5567,\n  0x5d79, 0x6a34, 0x6a35, 0x6a36, 0x384a, 0x5f30, 0x4975, 0x4c70,\n  0x497a, 0x497b, 0x5343, 0x4b26, 0x3826, 0x702e, 0x3142, 0x6538,\n  0x4c6f, 0x5349, 0x3c57, 0x496a, 0x3567, 0x4450, 0x3569, 0x6e2e,\n  0x3b2d, 0x675e, 0x6e2f, 0x3329, 0x6e32, 0x6e31, 0x3d67, 0x6e30,\n  0x4e37, 0x454f, 0x4174, 0x5b4e, 0x6e33, 0x5073, 0x4254, 0x4668,\n  0x372c, 0x6e34, 0x336b, 0x3b7b, 0x6e35, 0x675c, 0x6e36, 0x3d2e,\n  0x7162, 0x4a68, 0x5249, 0x705a, 0x705b, 0x705c, 0x4146, 0x386d,\n  0x3e4e, 0x705e, 0x4531, 0x705d, 0x5171, 0x7060, 0x304c, 0x3d6a,\n  0x525f, 0x705f, 0x342f, 0x3768, 0x7066, 0x7065, 0x4623, 0x7061,\n  0x7062, 0x3443, 0x7063, 0x556e, 0x4c5b, 0x3e52, 0x3c32, 0x7068,\n  0x7067, 0x7064, 0x3221, 0x5622, 0x5338, 0x3e37, 0x482c, 0x706a,\n  0x5177, 0x564c, 0x3a5b, 0x7069, 0x363b, 0x4d34, 0x4626, 0x4121,\n  0x706b, 0x706e, 0x706d, 0x7070, 0x706c, 0x3b3e, 0x706f, 0x4c35,\n  0x7072, 0x3355, 0x3154, 0x7073, 0x7074, 0x7076, 0x3461, 0x7071,\n  0x7077, 0x707a, 0x7078, 0x7075, 0x707d, 0x7079, 0x707c, 0x707e,\n  0x7121, 0x4e41, 0x7124, 0x7123, 0x4176, 0x707b, 0x4a5d, 0x3471,\n  0x3171, 0x4c31, 0x7126, 0x7127, 0x712c, 0x554e, 0x7129, 0x4833,\n  0x7122, 0x712b, 0x7128, 0x7125, 0x712a, 0x3029, 0x712d, 0x712f,\n  0x7131, 0x7130, 0x712e, 0x5122, 0x7132, 0x7133, 0x396f, 0x3547,\n  0x3057, 0x3059, 0x546d, 0x3544, 0x3d54, 0x3b4a, 0x7027, 0x385e,\n  0x7028, 0x3028, 0x7029, 0x4d6e, 0x702a, 0x702b, 0x4624, 0x5665,\n  0x7164, 0x7165, 0x4373, 0x535b, 0x5651, 0x4568, 0x532f, 0x5266,\n  0x6e41, 0x303b, 0x5535, 0x514e, 0x3c60, 0x3a50, 0x3f78, 0x3847,\n  0x3541, 0x454c, 0x4a22, 0x434b, 0x6e42, 0x443f, 0x3622, 0x6d6c,\n  0x4324, 0x5631, 0x4f60, 0x6d6f, 0x454e, 0x365c, 0x4a21, 0x6d6d,\n  0x6d70, 0x6d71, 0x433c, 0x3f34, 0x6d6e, 0x6d74, 0x6d72, 0x5566,\n  0x435f, 0x6d73, 0x6d76, 0x5523, 0x5123, 0x6d75, 0x4350, 0x6d77,\n  0x3f74, 0x3e6c, 0x6d78, 0x4c77, 0x515b, 0x5745, 0x5576, 0x6d7c,\n  0x6d7b, 0x6d79, 0x6d7a, 0x6d7d, 0x3e26, 0x4b2f, 0x6e21, 0x363d,\n  0x6e22, 0x4440, 0x6d7e, 0x3d5e, 0x3247, 0x3643, 0x6e25, 0x583a,\n  0x6e23, 0x6e26, 0x4369, 0x3372, 0x6e27, 0x6e24, 0x4f39, 0x6e28,\n  0x4277, 0x6e29, 0x6e2a, 0x5e2b, 0x4633, 0x4746, 0x5675, 0x3549,\n  0x4b32, 0x6e2b, 0x4d2b, 0x6e2c, 0x5530, 0x6e2d, 0x7644, 0x5b47,\n  0x3423, 0x432c, 0x7166, 0x4a38, 0x5253, 0x562a, 0x6f72, 0x3e58,\n  0x3d43, 0x6f73, 0x364c, 0x302b, 0x4a2f, 0x6d36, 0x6d37, 0x4e79,\n  0x372f, 0x3f73, 0x6d38, 0x426b, 0x4930, 0x6d39, 0x4676, 0x3f33,\n  0x6d3c, 0x4578, 0x5150, 0x5729, 0x6d3a, 0x6d3b, 0x5162, 0x6d3f,\n  0x6d40, 0x6d44, 0x6d48, 0x6d46, 0x6d4e, 0x5568, 0x6d49, 0x6d47,\n  0x6d3e, 0x4569, 0x4646, 0x4969, 0x5452, 0x6d41, 0x6d42, 0x6d43,\n  0x6d45, 0x4079, 0x3421, 0x3968, 0x6d50, 0x6d51, 0x6d4a, 0x6d4f,\n  0x4e78, 0x4b36, 0x6d4c, 0x6d4d, 0x4f75, 0x6d52, 0x4172, 0x5332,\n  0x6d4b, 0x4837, 0x3c6f, 0x4570, 0x6d56, 0x356f, 0x4235, 0x302d,\n  0x4b69, 0x312e, 0x6d54, 0x4d6b, 0x3562, 0x6d55, 0x6d53, 0x6d57,\n  0x357a, 0x6d58, 0x6d59, 0x6d5c, 0x314c, 0x4576, 0x3c6e, 0x6d5a,\n  0x4c3c, 0x326a, 0x6d5b, 0x446b, 0x3445, 0x3075, 0x6d5f, 0x405a,\n  0x3468, 0x454d, 0x6d5d, 0x3f44, 0x6d5e, 0x4425, 0x6d60, 0x6d61,\n  0x6d63, 0x4157, 0x3b47, 0x3d38, 0x6d62, 0x6d64, 0x6d66, 0x6d65,\n  0x6d67, 0x4a3e, 0x6c6a, 0x4071, 0x4967, 0x6c6b, 0x466e, 0x6c6c,\n  0x466d, 0x6c6d, 0x6c70, 0x5766, 0x6c73, 0x6c71, 0x6c6e, 0x6c6f,\n  0x5723, 0x4971, 0x4b6e, 0x6c74, 0x6c72, 0x4f69, 0x6c76, 0x4631,\n  0x3c40, 0x6c75, 0x353b, 0x3b76, 0x6c77, 0x5977, 0x3d7b, 0x423b,\n  0x6c78, 0x6c79, 0x3823, 0x6c7a, 0x6c7b, 0x6c7c, 0x536d, 0x582e,\n  0x406b, 0x475d, 0x3a4c, 0x5063, 0x4b3d, 0x4d3a, 0x3851, 0x317c,\n  0x476f, 0x5656, 0x3f46, 0x436b, 0x6f75, 0x4358, 0x5762, 0x6f77,\n  0x3353, 0x4758, 0x516d, 0x5648, 0x6f78, 0x6f76, 0x3b7d, 0x3346,\n  0x3d55, 0x5246, 0x3b60, 0x4f21, 0x6f7c, 0x6f7b, 0x6f79, 0x334c,\n  0x4954, 0x4b30, 0x6f7e, 0x305e, 0x5649, 0x6f7d, 0x336d, 0x7655,\n  0x4e48, 0x7022, 0x7021, 0x353e, 0x3c5a, 0x3b7c, 0x3865, 0x4442,\n  0x7023, 0x4b6b, 0x7026, 0x5128, 0x3e3f, 0x476e, 0x7136, 0x7137,\n  0x3f55, 0x3429, 0x7138, 0x4d3b, 0x4754, 0x552d, 0x7139, 0x713a,\n  0x474f, 0x5224, 0x564f, 0x713b, 0x3d51, 0x3430, 0x3e3d, 0x345c,\n  0x4e51, 0x3f5f, 0x713d, 0x3f7a, 0x713c, 0x713f, 0x713e, 0x7140,\n  0x7141, 0x417e, 0x4122, 0x4a7a, 0x553e, 0x3e3a, 0x3e39, 0x5542,\n  0x3f22, 0x4d2f, 0x7135, 0x3d5f, 0x364b, 0x5671, 0x7343, 0x7344,\n  0x384d, 0x7346, 0x7347, 0x304a, 0x7345, 0x7349, 0x4b71, 0x734b,\n  0x5026, 0x314a, 0x7348, 0x734f, 0x3551, 0x7357, 0x7352, 0x7354,\n  0x7353, 0x377b, 0x313f, 0x734e, 0x734a, 0x355a, 0x7350, 0x7351,\n  0x7355, 0x734d, 0x3c63, 0x417d, 0x7356, 0x735a, 0x734c, 0x3548,\n  0x3d6e, 0x735c, 0x3724, 0x3f70, 0x567e, 0x4d32, 0x3470, 0x325f,\n  0x7358, 0x7359, 0x4938, 0x735d, 0x735e, 0x7361, 0x735f, 0x7363,\n  0x7362, 0x735b, 0x3f6a, 0x336f, 0x7360, 0x4729, 0x3c72, 0x736b,\n  0x393f, 0x7364, 0x322d, 0x3b7e, 0x4b63, 0x736d, 0x7369, 0x395c,\n  0x736e, 0x7365, 0x7366, 0x736a, 0x4261, 0x736c, 0x736f, 0x7368,\n  0x3c7d, 0x4f64, 0x7370, 0x7367, 0x7372, 0x572d, 0x462a, 0x7373,\n  0x7371, 0x4228, 0x385d, 0x7375, 0x7374, 0x345b, 0x7376, 0x7377,\n  0x7378, 0x403a, 0x4069, 0x4571, 0x737b, 0x737a, 0x3458, 0x737e,\n  0x7379, 0x737c, 0x737d, 0x7421, 0x7423, 0x3b49, 0x7422, 0x7424,\n  0x323e, 0x7426, 0x7425, 0x3c2e, 0x4357, 0x5961, 0x4060, 0x744c,\n  0x5751, 0x375b, 0x744e, 0x4123, 0x4649, 0x3456, 0x5533, 0x7450,\n  0x744f, 0x7451, 0x4b5a, 0x7452, 0x5441, 0x5660, 0x3760, 0x4138,\n  0x413b, 0x7453, 0x3e2c, 0x3462, 0x7454, 0x7455, 0x3e2b, 0x7456,\n  0x745b, 0x7457, 0x745a, 0x3a7d, 0x7458, 0x7459, 0x3862, 0x4c47,\n  0x745c, 0x325a, 0x4353, 0x5463, 0x3f37, 0x745d, 0x4534, 0x7469,\n  0x4f35, 0x4e49, 0x4b58, 0x4b77, 0x3d74, 0x574f, 0x405b, 0x5075,\n  0x746a, 0x746b, 0x746c, 0x7763, 0x3731, 0x746d, 0x576b, 0x746e,\n  0x6679, 0x3e40, 0x667a, 0x3a6c, 0x667b, 0x4f4b, 0x667c, 0x543c,\n  0x3c36, 0x667d, 0x667e, 0x3c4d, 0x4852, 0x4e33, 0x6721, 0x343f,\n  0x6722, 0x4934, 0x3859, 0x4449, 0x575d, 0x425a, 0x3757, 0x563d,\n  0x4e46, 0x3744, 0x4526, 0x6723, 0x4f5f, 0x6724, 0x6725, 0x6726,\n  0x4137, 0x5769, 0x4970, 0x4f38, 0x562f, 0x5655, 0x6727, 0x306d,\n  0x6728, 0x6729, 0x495c, 0x526f, 0x3e2d, 0x672a, 0x3073, 0x485e,\n  0x3d61, 0x672b, 0x4846, 0x672c, 0x3b66, 0x3878, 0x5124, 0x672d,\n  0x4267, 0x3e78, 0x3d4a, 0x4d33, 0x672e, 0x672f, 0x3e6e, 0x5065,\n  0x4b67, 0x4c50, 0x3c4c, 0x6730, 0x3c28, 0x5077, 0x6731, 0x5078,\n  0x6732, 0x6733, 0x3442, 0x6734, 0x6735, 0x497e, 0x4e2c, 0x4360,\n  0x6737, 0x3141, 0x3371, 0x6738, 0x6739, 0x575b, 0x5540, 0x673a,\n  0x424c, 0x573a, 0x673b, 0x673c, 0x673d, 0x3c6a, 0x4365, 0x4042,\n  0x673e, 0x673f, 0x3c29, 0x6740, 0x6741, 0x6736, 0x3650, 0x6742,\n  0x6743, 0x6744, 0x3b3a, 0x355e, 0x4246, 0x3160, 0x6745, 0x5435,\n  0x6746, 0x383f, 0x6748, 0x6747, 0x376c, 0x6749, 0x3278, 0x674a,\n  0x674b, 0x674c, 0x674d, 0x674e, 0x674f, 0x6750, 0x5327, 0x4b75,\n  0x6751, 0x6752, 0x6753, 0x6754, 0x4949, 0x6755, 0x6756, 0x6757,\n  0x6758, 0x6759, 0x3d49, 0x675a, 0x733e, 0x3857, 0x4831, 0x733f,\n  0x7340, 0x7341, 0x395e, 0x4d78, 0x5868, 0x3a31, 0x425e, 0x6e37,\n  0x3723, 0x6e39, 0x6e38, 0x3055, 0x6e3b, 0x5556, 0x576f, 0x5643,\n  0x6e3d, 0x4a70, 0x6e3c, 0x6e3e, 0x6e40, 0x6e3f, 0x5172, 0x473c,\n  0x4340, 0x3861, 0x4167, 0x7446, 0x505f, 0x7447, 0x4f5b, 0x483a,\n  0x7448, 0x7449, 0x744a, 0x744b, 0x597a, 0x387e, 0x6571, 0x5370,\n  0x7460, 0x4e4c, 0x3361, 0x7134, 0x526e, 0x7461, 0x4f68, 0x7462,\n  0x474c, 0x3554, 0x3464, 0x7464, 0x7463, 0x7465, 0x7466, 0x7467,\n  0x3a32, 0x303f, 0x7468, 0x372d, 0x526d, 0x522b, 0x404f, 0x3f3c,\n  0x6b23, 0x555f, 0x6a48, 0x7173, 0x3678, 0x4b23, 0x444d, 0x7167,\n  0x7168, 0x387b, 0x7169, 0x3a44, 0x5445, 0x3052, 0x716a, 0x716b,\n  0x716c, 0x716d, 0x716e, 0x716f, 0x7171, 0x7170, 0x4555, 0x7172,\n  0x367a, 0x7174, 0x522e, 0x5e47, 0x4b4a, 0x335c, 0x3522, 0x3922,\n  0x4474, 0x7175, 0x7176, 0x4144, 0x417b, 0x5630, 0x7177, 0x7178,\n  0x412a, 0x4638, 0x3e5b, 0x7179, 0x344f, 0x717a, 0x6d32, 0x6d31,\n  0x4b60, 0x525e, 0x4b41, 0x5558, 0x4862, 0x405f, 0x3c21, 0x6b41,\n  0x5024, 0x5662, 0x3647, 0x3858, 0x6b40, 0x384e, 0x6b3f, 0x3326,\n  0x3949, 0x562b, 0x3774, 0x374a, 0x3c67, 0x373e, 0x6b46, 0x6b47,\n  0x3039, 0x3f4f, 0x6b45, 0x537d, 0x6b48, 0x6b49, 0x374e, 0x6b42,\n  0x6b44, 0x4976, 0x5657, 0x554d, 0x5032, 0x6b4f, 0x4e38, 0x6b50,\n  0x3528, 0x3133, 0x6b52, 0x4c25, 0x4556, 0x6b53, 0x6b51, 0x455f,\n  0x6b4e, 0x4a24, 0x6b55, 0x307b, 0x3a7a, 0x5837, 0x7163, 0x6b4a,\n  0x6b4b, 0x6b4c, 0x6b4d, 0x6b56, 0x6640, 0x6b59, 0x3f68, 0x5248,\n  0x6b57, 0x6b5c, 0x386c, 0x6b58, 0x3d3a, 0x5058, 0x3037, 0x6b5d,\n  0x445c, 0x562c, 0x3460, 0x4276, 0x3c39, 0x6b5a, 0x6b5b, 0x5460,\n  0x466a, 0x4454, 0x6b5f, 0x4527, 0x5975, 0x3231, 0x6b64, 0x3d45,\n  0x6b62, 0x6b63, 0x382c, 0x4d51, 0x6b65, 0x6b61, 0x4133, 0x4622,\n  0x4c73, 0x6b66, 0x4030, 0x5238, 0x6b67, 0x382f, 0x382d, 0x6b68,\n  0x473b, 0x4d73, 0x6b6a, 0x6b6b, 0x6b6d, 0x5048, 0x6b72, 0x6b6e,\n  0x6b71, 0x4879, 0x517c, 0x6b6c, 0x6b69, 0x3839, 0x4f59, 0x4465,\n  0x6b6f, 0x6b70, 0x4c5a, 0x4d48, 0x3072, 0x6b76, 0x6b75, 0x3232,\n  0x3860, 0x6b77, 0x316c, 0x4c45, 0x4424, 0x4f25, 0x6b79, 0x6c22,\n  0x4572, 0x6b7a, 0x4945, 0x625f, 0x6b7e, 0x4d4e, 0x6c21, 0x315b,\n  0x5337, 0x525c, 0x6b7d, 0x6b7b, 0x333c, 0x6a30, 0x5754, 0x742b,\n  0x3374, 0x5641, 0x5642, 0x5569, 0x3e4a, 0x7427, 0x5228, 0x7428,\n  0x7429, 0x742a, 0x3e4b, 0x535f, 0x4960, 0x4961, 0x7342, 0x4a66,\n  0x4c72, 0x6236, 0x4b34, 0x4e68, 0x565b, 0x742d, 0x742e, 0x742f,\n  0x7432, 0x3a3d, 0x7433, 0x3063, 0x7430, 0x7431, 0x3d22, 0x3255,\n  0x7436, 0x7437, 0x3666, 0x3230, 0x4f4f, 0x7434, 0x342c, 0x7435,\n  0x7438, 0x7439, 0x4d27, 0x743a, 0x743b, 0x743c, 0x4b52, 0x743d,\n  0x743e, 0x743f, 0x745e, 0x413c, 0x3c68, 0x492b, 0x515e, 0x6575,\n  0x5c33, 0x5255, 0x5c34, 0x302c, 0x5c35, 0x3d5a, 0x5c39, 0x5842,\n  0x5c37, 0x5373, 0x4956, 0x5c3a, 0x5c36, 0x5c3b, 0x4322, 0x5c3c,\n  0x5c45, 0x5c3d, 0x4e5f, 0x5625, 0x5c4f, 0x5c4d, 0x5c52, 0x3d66,\n  0x422b, 0x5c38, 0x5c4b, 0x5c4e, 0x5c3e, 0x3752, 0x3045, 0x5c47,\n  0x503e, 0x5c41, 0x3b28, 0x373c, 0x5c4c, 0x5c46, 0x5c3f, 0x475b,\n  0x513f, 0x5c40, 0x5c4a, 0x5c50, 0x4e2d, 0x5c42, 0x5c43, 0x5c48,\n  0x5c49, 0x3254, 0x5c51, 0x4b55, 0x5437, 0x5c5b, 0x5c5f, 0x4c26,\n  0x5c66, 0x4367, 0x5c5c, 0x3f41, 0x5c59, 0x307a, 0x3936, 0x5c65,\n  0x5c53, 0x5c44, 0x5c56, 0x4874, 0x3f60, 0x493b, 0x313d, 0x5322,\n  0x5c5a, 0x5c55, 0x463b, 0x5c5e, 0x5742, 0x432f, 0x3736, 0x4751,\n  0x4329, 0x5c62, 0x5c58, 0x5c6b, 0x5c54, 0x5c5d, 0x3e25, 0x5c57,\n  0x5c60, 0x5c63, 0x5c64, 0x5c78, 0x5c61, 0x5d22, 0x5c67, 0x3c6b,\n  0x3444, 0x4323, 0x3267, 0x5c7a, 0x5c72, 0x5c6f, 0x5c7c, 0x5c6e,\n  0x5270, 0x3268, 0x4857, 0x4863, 0x5c7b, 0x5c6d, 0x5c77, 0x5c75,\n  0x3e23, 0x5c74, 0x325d, 0x5c73, 0x3c76, 0x5c68, 0x3b44, 0x4073,\n  0x3c54, 0x5c69, 0x5c6a, 0x5c71, 0x5c76, 0x5c79, 0x3534, 0x4859,\n  0x3b67, 0x5c7e, 0x5c7d, 0x532b, 0x5d21, 0x5d23, 0x5d25, 0x5271,\n  0x5d24, 0x5d26, 0x5d27, 0x5229, 0x3a49, 0x5d29, 0x5d36, 0x5d31,\n  0x5d34, 0x5d30, 0x464e, 0x4072, 0x492f, 0x5c6c, 0x5d2e, 0x5d37,\n  0x5c70, 0x5d2f, 0x5d38, 0x5d2c, 0x5d39, 0x5d33, 0x5d2d, 0x442a,\n  0x5d28, 0x4033, 0x412b, 0x5d2a, 0x5d2b, 0x5d32, 0x3b71, 0x5d35,\n  0x5328, 0x5d3a, 0x5d3b, 0x4327, 0x5d52, 0x5d3c, 0x5d51, 0x393d,\n  0x3e55, 0x3e7a, 0x3a4a, 0x5d4a, 0x5d45, 0x5d3f, 0x324b, 0x5d43,\n  0x5d4b, 0x3224, 0x5d55, 0x5d3e, 0x4650, 0x5d50, 0x5d54, 0x4162,\n  0x3746, 0x5d4e, 0x5d4f, 0x5d44, 0x5d3d, 0x5d4d, 0x4c51, 0x5d49,\n  0x5d42, 0x4348, 0x463c, 0x4e2e, 0x5d4c, 0x5d48, 0x5d41, 0x5d46,\n  0x425c, 0x5329, 0x532a, 0x5d53, 0x4f74, 0x4878, 0x5d66, 0x5d47,\n  0x5d60, 0x4264, 0x5d61, 0x5d57, 0x5678, 0x5d59, 0x5d58, 0x3870,\n  0x5d56, 0x464f, 0x362d, 0x5d62, 0x3a79, 0x5461, 0x5d67, 0x3450,\n  0x5d5a, 0x3f7b, 0x5d63, 0x5d5f, 0x5d5d, 0x3559, 0x5d5b, 0x5d5c,\n  0x5d5e, 0x3d2f, 0x5d64, 0x5d65, 0x5d75, 0x4349, 0x4b62, 0x5d72,\n  0x5861, 0x4651, 0x5d74, 0x5574, 0x5d73, 0x5d70, 0x5d6c, 0x5d6f,\n  0x5d68, 0x506e, 0x4858, 0x5d6e, 0x5d69, 0x5d6a, 0x4b72, 0x5d6d,\n  0x314d, 0x4036, 0x3c3b, 0x5d71, 0x5d77, 0x5d76, 0x5d6b, 0x456e,\n  0x5d7b, 0x5e24, 0x5e23, 0x5d78, 0x436f, 0x427b, 0x5561, 0x4e35,\n  0x5d7d, 0x324c, 0x4468, 0x4a5f, 0x473e, 0x5d7a, 0x5d7c, 0x5d7e,\n  0x5e22, 0x302a, 0x314e, 0x5e2c, 0x5e26, 0x3d36, 0x486f, 0x5e21,\n  0x5e25, 0x5e29, 0x5e28, 0x5e27, 0x5e2d, 0x544c, 0x5e33, 0x5e2a,\n  0x5e2e, 0x4059, 0x3121, 0x5e36, 0x5e31, 0x5e32, 0x5126, 0x5e35,\n  0x5e2f, 0x5e30, 0x503d, 0x5e34, 0x4a6d, 0x5e39, 0x5e38, 0x5e37,\n  0x5e3b, 0x3d65, 0x3258, 0x436a, 0x5e3a, 0x453a, 0x5e3c, 0x4c59,\n  0x372a, 0x5465, 0x5e3d, 0x5e3f, 0x4422, 0x5e41, 0x5e3e, 0x5e40,\n  0x553a, 0x5e42, 0x722e, 0x3b22, 0x4232, 0x4530, 0x4247, 0x722f,\n  0x5069, 0x535d, 0x6b3d, 0x3366, 0x7230, 0x7231, 0x4a2d, 0x3a67,\n  0x7233, 0x7235, 0x7234, 0x4b64, 0x4f3a, 0x7232, 0x4a34, 0x524f,\n  0x426c, 0x4e43, 0x7238, 0x3076, 0x7237, 0x723e, 0x324f, 0x5141,\n  0x723a, 0x723c, 0x5469, 0x723b, 0x7236, 0x723f, 0x723d, 0x7239,\n  0x7247, 0x7244, 0x7246, 0x724a, 0x7242, 0x7240, 0x7245, 0x567b,\n  0x7241, 0x4779, 0x495f, 0x7248, 0x3946, 0x3530, 0x7243, 0x7249,\n  0x7250, 0x7256, 0x3b57, 0x7255, 0x4d5c, 0x566b, 0x7252, 0x7254,\n  0x3872, 0x724b, 0x724e, 0x4279, 0x555d, 0x724c, 0x724d, 0x724f,\n  0x7253, 0x7259, 0x533c, 0x366a, 0x4a71, 0x3764, 0x7257, 0x7258,\n  0x725a, 0x725d, 0x725b, 0x725c, 0x5151, 0x7251, 0x4d49, 0x4e4f,\n  0x5629, 0x7263, 0x435b, 0x7260, 0x402f, 0x726c, 0x725e, 0x7261,\n  0x7268, 0x7262, 0x7267, 0x7266, 0x7269, 0x725f, 0x7264, 0x726a,\n  0x532c, 0x7265, 0x3275, 0x7272, 0x502b, 0x7275, 0x3b48, 0x7279,\n  0x7270, 0x7276, 0x7278, 0x727a, 0x7273, 0x7271, 0x3a7b, 0x357b,\n  0x726f, 0x7277, 0x726d, 0x726e, 0x726b, 0x7326, 0x7323, 0x7322,\n  0x7274, 0x485a, 0x727b, 0x7325, 0x4378, 0x727d, 0x7327, 0x7329,\n  0x7324, 0x727c, 0x732b, 0x732a, 0x425d, 0x732e, 0x7330, 0x7321,\n  0x7331, 0x732c, 0x732f, 0x727e, 0x732d, 0x7332, 0x7334, 0x7328,\n  0x7333, 0x7335, 0x5037, 0x7338, 0x5979, 0x7339, 0x7337, 0x4864,\n  0x7336, 0x733a, 0x733b, 0x3440, 0x6e43, 0x733c, 0x733d, 0x512a,\n  0x742c, 0x5046, 0x5050, 0x515c, 0x4f4e, 0x3d56, 0x5143, 0x3a62,\n  0x6169, 0x5242, 0x7142, 0x3239, 0x316d, 0x7143, 0x4940, 0x3344,\n  0x5972, 0x4b25, 0x7144, 0x5654, 0x7145, 0x7440, 0x7146, 0x542c,\n  0x7147, 0x3040, 0x7441, 0x7442, 0x347c, 0x455b, 0x4c3b, 0x5064,\n  0x4d60, 0x7148, 0x5973, 0x313b, 0x4f2e, 0x3824, 0x714a, 0x714b,\n  0x3243, 0x4151, 0x5730, 0x7149, 0x714c, 0x714e, 0x5976, 0x5261,\n  0x5423, 0x7443, 0x4839, 0x7444, 0x714d, 0x714f, 0x3f63, 0x7150,\n  0x7154, 0x7156, 0x7151, 0x4951, 0x4561, 0x4263, 0x397c, 0x7153,\n  0x7155, 0x3953, 0x715b, 0x3a56, 0x307d, 0x7159, 0x7158, 0x7152,\n  0x715a, 0x7157, 0x486c, 0x4d4a, 0x715d, 0x653d, 0x715c, 0x715e,\n  0x715f, 0x4f65, 0x7445, 0x3d73, 0x7160, 0x7161, 0x4e77, 0x522a,\n  0x717b, 0x3832, 0x3c7b, 0x395b, 0x3966, 0x4359, 0x4a53, 0x6a68,\n  0x4040, 0x3e75, 0x6a69, 0x6a6a, 0x6a6b, 0x6a6c, 0x6a6d, 0x6a6e,\n  0x6a6f, 0x3d47, 0x757b, 0x757d, 0x757e, 0x757c, 0x3d62, 0x7621,\n  0x3425, 0x7622, 0x7623, 0x6c32, 0x5154, 0x596a, 0x7624, 0x6e3a,\n  0x5532, 0x537e, 0x4c5c, 0x4a44, 0x6540, 0x7625, 0x3e2f, 0x4629,\n  0x5a25, 0x3c46, 0x3629, 0x383c, 0x484f, 0x3c25, 0x5a26, 0x5a27,\n  0x4c56, 0x4843, 0x5a28, 0x467d, 0x5135, 0x5269, 0x5136, 0x3c47,\n  0x3d32, 0x3b64, 0x5a29, 0x5a2a, 0x5148, 0x5a2b, 0x506d, 0x366f,\n  0x425b, 0x4b4f, 0x376d, 0x4968, 0x3743, 0x3e77, 0x5624, 0x5a2c,\n  0x5a2d, 0x4640, 0x5767, 0x4a36, 0x5529, 0x4b5f, 0x556f, 0x5a2e,\n  0x565f, 0x344a, 0x5a30, 0x5a2f, 0x526b, 0x5a31, 0x5a32, 0x5a33,\n  0x4a54, 0x5a34, 0x4a2b, 0x5a35, 0x5a36, 0x334f, 0x566f, 0x5a37,\n  0x3b30, 0x352e, 0x5a38, 0x5a39, 0x396e, 0x512f, 0x5268, 0x5a3a,\n  0x3843, 0x4f6a, 0x326f, 0x5a3b, 0x5a3c, 0x3d6b, 0x4e5c, 0x536f,\n  0x5a3d, 0x4e73, 0x5a3e, 0x5355, 0x3b65, 0x5a3f, 0x4b35, 0x4b50,\n  0x5a40, 0x476b, 0x566e, 0x5a41, 0x4535, 0x3641, 0x5a42, 0x374c,\n  0x3f4e, 0x5a43, 0x5a44, 0x4b2d, 0x5a45, 0x3577, 0x5a46, 0x4142,\n  0x573b, 0x5a47, 0x4c38, 0x526a, 0x4431, 0x5a48, 0x357d, 0x3b51,\n  0x5a49, 0x5033, 0x5a4a, 0x5a4b, 0x4e3d, 0x5a4c, 0x5a4d, 0x5a4e,\n  0x3277, 0x5a51, 0x5a4f, 0x5168, 0x5a50, 0x4355, 0x5a52, 0x5a53,\n  0x5a54, 0x5a55, 0x503b, 0x5225, 0x3079, 0x5a56, 0x472b, 0x5a57,\n  0x3d77, 0x4321, 0x5a58, 0x5a59, 0x437d, 0x4c37, 0x5a5a, 0x5a5b,\n  0x403e, 0x4657, 0x5a5c, 0x5a5d, 0x4734, 0x5a5e, 0x5a5f, 0x3948,\n  0x3b6d, 0x3639, 0x7478, 0x7479, 0x4d63, 0x7539, 0x6b60, 0x4f73,\n  0x3b3f, 0x3a40, 0x5425, 0x6159, 0x7574, 0x312a, 0x3272, 0x7575,\n  0x7577, 0x3a51, 0x7576, 0x4332, 0x7579, 0x7578, 0x3134, 0x556a,\n  0x383a, 0x3931, 0x3246, 0x5470, 0x4f4d, 0x305c, 0x554b, 0x3b75,\n  0x564a, 0x3737, 0x4c30, 0x4636, 0x3161, 0x393a, 0x567c, 0x3961,\n  0x3721, 0x3c7a, 0x6a5a, 0x6a5b, 0x4c79, 0x3973, 0x6a5c, 0x347b,\n  0x4333, 0x3751, 0x3a58, 0x6a5d, 0x5474, 0x6a5e, 0x3c56, 0x3b5f,\n  0x6a5f, 0x415e, 0x4238, 0x545f, 0x574a, 0x6a60, 0x6a61, 0x6a64,\n  0x6a62, 0x6a63, 0x495e, 0x3833, 0x3644, 0x6a65, 0x4a6a, 0x494d,\n  0x344d, 0x6259, 0x4562, 0x6a66, 0x4035, 0x5738, 0x6a67, 0x572c,\n  0x487c, 0x5853, 0x584d, 0x545e, 0x5479, 0x4944, 0x532e, 0x3853,\n  0x3360, 0x4962, 0x7476, 0x3a55, 0x7477, 0x575f, 0x7471, 0x3830,\n  0x5554, 0x384f, 0x4670, 0x3343, 0x7472, 0x332c, 0x543d, 0x4777,\n  0x7474, 0x7473, 0x4c4b, 0x4824, 0x7475, 0x5763, 0x453f, 0x7540,\n  0x753b, 0x7543, 0x7542, 0x563a, 0x7541, 0x543e, 0x7544, 0x754c,\n  0x304f, 0x3578, 0x7549, 0x754a, 0x455c, 0x7545, 0x7546, 0x7547,\n  0x754b, 0x3e60, 0x7548, 0x387a, 0x7550, 0x7553, 0x3f67, 0x3972,\n  0x753c, 0x754d, 0x4237, 0x4c78, 0x3c79, 0x754e, 0x754f, 0x7551,\n  0x3665, 0x7552, 0x7555, 0x753d, 0x7554, 0x533b, 0x336c, 0x4c24,\n  0x7556, 0x7557, 0x3e61, 0x7558, 0x4c5f, 0x755b, 0x3248, 0x5759,\n  0x7559, 0x755a, 0x755c, 0x7562, 0x7560, 0x755f, 0x755d, 0x7561,\n  0x755e, 0x7564, 0x7565, 0x4c63, 0x653f, 0x3538, 0x7563, 0x7568,\n  0x4c23, 0x7566, 0x7567, 0x753e, 0x3144, 0x753f, 0x3545, 0x3264,\n  0x756c, 0x7569, 0x3657, 0x756d, 0x756a, 0x756b, 0x345a, 0x546a,\n  0x756e, 0x3379, 0x756f, 0x7571, 0x7570, 0x7572, 0x7573, 0x496d,\n  0x392a, 0x477b, 0x3663, 0x4c49, 0x6a26, 0x3335, 0x547e, 0x396c,\n  0x5079, 0x696d, 0x572a, 0x696e, 0x4256, 0x486d, 0x3a64, 0x696f,\n  0x6970, 0x6971, 0x5661, 0x6972, 0x6973, 0x6975, 0x6974, 0x6976,\n  0x6977, 0x4761, 0x6978, 0x5458, 0x6979, 0x3d4e, 0x697a, 0x697b,\n  0x3d4f, 0x697c, 0x3828, 0x413e, 0x697d, 0x3132, 0x3b54, 0x3975,\n  0x697e, 0x6a21, 0x6a22, 0x6a23, 0x3778, 0x3c2d, 0x4a64, 0x604e,\n  0x542f, 0x4f3d, 0x5537, 0x6a24, 0x555e, 0x6a25, 0x5041, 0x393c,\n  0x3447, 0x3159, 0x4031, 0x3166, 0x3167, 0x3168, 0x333d, 0x4868,\n  0x6541, 0x315f, 0x4149, 0x346f, 0x4728, 0x5358, 0x4679, 0x5138,\n  0x397d, 0x4275, 0x532d, 0x544b, 0x3d7c, 0x6542, 0x3735, 0x6543,\n  0x3b39, 0x5562, 0x3d78, 0x5436, 0x4e25, 0x412c, 0x3359, 0x4c76,\n  0x6546, 0x6544, 0x6548, 0x654a, 0x6547, 0x354f, 0x4648, 0x357c,\n  0x6545, 0x4a76, 0x6549, 0x4354, 0x3145, 0x3c23, 0x5737, 0x4d4b,\n  0x4b4d, 0x4a4a, 0x4c53, 0x654c, 0x654b, 0x4466, 0x5121, 0x5137,\n  0x654d, 0x6550, 0x4d38, 0x5670, 0x654f, 0x355d, 0x4d3e, 0x6551,\n  0x363a, 0x4d28, 0x3964, 0x4a45, 0x3351, 0x4b59, 0x546c, 0x6552,\n  0x376a, 0x654e, 0x6555, 0x347e, 0x6556, 0x6553, 0x6554, 0x525d,\n  0x425f, 0x3146, 0x5362, 0x365d, 0x4b6c, 0x6557, 0x5376, 0x3169,\n  0x3674, 0x655a, 0x6558, 0x6559, 0x3540, 0x5245, 0x655c, 0x655e,\n  0x655d, 0x4732, 0x5223, 0x655b, 0x5462, 0x555a, 0x6560, 0x5771,\n  0x6561, 0x315c, 0x517b, 0x6562, 0x6564, 0x6563, 0x6565, 0x5258,\n  0x354b, 0x675f, 0x5a75, 0x5a78, 0x5a76, 0x5a77, 0x5a7a, 0x504f,\n  0x4447, 0x306e, 0x5030, 0x5a79, 0x534a, 0x3a2a, 0x5b22, 0x4771,\n  0x5a7c, 0x5a7b, 0x495b, 0x5a7d, 0x5b21, 0x575e, 0x5a7e, 0x415a,\n  0x5b25, 0x5374, 0x5b27, 0x5b24, 0x5b28, 0x3d3c, 0x4049, 0x5b23,\n  0x5b26, 0x5623, 0x5b29, 0x5b2d, 0x5b2e, 0x5b2c, 0x3a42, 0x3f24,\n  0x5b2b, 0x5b2a, 0x5447, 0x323f, 0x5b2f, 0x3979, 0x5b30, 0x333b,\n  0x3526, 0x363c, 0x5b31, 0x3675, 0x5b32, 0x3149, 0x5b34, 0x5b33,\n  0x5b35, 0x5b37, 0x5b36, 0x5b38, 0x5b39, 0x5b3a, 0x534f, 0x747a,\n  0x4775, 0x5743, 0x4564, 0x747c, 0x747d, 0x747b, 0x3e46, 0x506f,\n  0x3753, 0x544d, 0x4c2a, 0x7522, 0x7521, 0x3a28, 0x747e, 0x4b56,\n  0x7524, 0x4052, 0x336a, 0x4d2a, 0x7525, 0x7523, 0x3d34, 0x7528,\n  0x7529, 0x3d4d, 0x4338, 0x3f61, 0x4b61, 0x752a, 0x7526, 0x7527,\n  0x4470, 0x752c, 0x343c, 0x576d, 0x3457, 0x752b, 0x752e, 0x752d,\n  0x752f, 0x5051, 0x4351, 0x4829, 0x7530, 0x7531, 0x7532, 0x7533,\n  0x7534, 0x7535, 0x7537, 0x7536, 0x7538, 0x3249, 0x5354, 0x4a4d,\n  0x406f, 0x5658, 0x5230, 0x413f, 0x3d70, 0x382a, 0x3c78, 0x7646,\n  0x7647, 0x7648, 0x7649, 0x764a, 0x764c, 0x764b, 0x7769, 0x764d,\n  0x764e, 0x6e44, 0x6e45, 0x6e46, 0x556b, 0x3624, 0x6e48, 0x6e47,\n  0x6e49, 0x6e4a, 0x4725, 0x6e4b, 0x6e4c, 0x3730, 0x3576, 0x6e4d,\n  0x6e4f, 0x6e4e, 0x3846, 0x6e50, 0x6e51, 0x6e52, 0x365b, 0x332e,\n  0x5653, 0x4446, 0x3135, 0x3856, 0x6e53, 0x6e54, 0x543f, 0x4755,\n  0x3e7b, 0x4e59, 0x3933, 0x6e56, 0x6e55, 0x6e58, 0x6e57, 0x4525,\n  0x6e59, 0x6e5a, 0x472e, 0x6e5b, 0x472f, 0x6e5c, 0x3227, 0x6e5d,\n  0x6e5e, 0x6e5f, 0x6e60, 0x6e61, 0x576a, 0x6e62, 0x6e63, 0x3c58,\n  0x6e64, 0x534b, 0x4c7a, 0x322c, 0x4165, 0x6e65, 0x4726, 0x432d,\n  0x6e66, 0x6e67, 0x6e68, 0x6e69, 0x6e6a, 0x6e6b, 0x6e6c, 0x6e6d,\n  0x6e6e, 0x6e6f, 0x6e70, 0x6e71, 0x6e72, 0x6e74, 0x6e73, 0x6e75,\n  0x4d2d, 0x4241, 0x6e76, 0x6e77, 0x6e78, 0x5521, 0x6e79, 0x4f33,\n  0x6e7a, 0x6e7b, 0x6e7c, 0x6e7d, 0x6f21, 0x6e7e, 0x6f22, 0x3875,\n  0x437a, 0x6f23, 0x6f24, 0x3d42, 0x523f, 0x3279, 0x6f25, 0x6f26,\n  0x6f27, 0x5278, 0x6f28, 0x567d, 0x6f29, 0x464c, 0x6f2a, 0x6f2b,\n  0x4134, 0x6f2c, 0x4f7a, 0x4b78, 0x6f2e, 0x6f2d, 0x337a, 0x3978,\n  0x6f2f, 0x6f30, 0x5062, 0x6f31, 0x6f32, 0x3766, 0x503f, 0x6f33,\n  0x6f34, 0x6f35, 0x4871, 0x4c60, 0x6f36, 0x6f37, 0x6f38, 0x6f39,\n  0x6f3a, 0x5560, 0x6f3b, 0x346d, 0x432a, 0x6f3c, 0x6f3d, 0x6f3e,\n  0x6f3f, 0x4e7d, 0x6f40, 0x4260, 0x3438, 0x5736, 0x3d75, 0x4f47,\n  0x6f43, 0x6f41, 0x6f42, 0x6f44, 0x3627, 0x3c7c, 0x3e62, 0x434c,\n  0x6f45, 0x6f46, 0x6f47, 0x6f4f, 0x6f48, 0x6f49, 0x6f4a, 0x4742,\n  0x6f71, 0x364d, 0x6f4b, 0x6f4c, 0x6f4d, 0x3646, 0x433e, 0x6f4e,\n  0x6f50, 0x6f51, 0x6f52, 0x5572, 0x6f53, 0x4477, 0x6f54, 0x4478,\n  0x6f55, 0x6f56, 0x3864, 0x3077, 0x6f57, 0x6f58, 0x6f59, 0x6f5a,\n  0x6f5b, 0x6f5c, 0x6f5d, 0x6f5e, 0x3e35, 0x6f61, 0x6f5f, 0x6f60,\n  0x6f62, 0x6f63, 0x414d, 0x6f64, 0x6f65, 0x6f66, 0x6f67, 0x6f68,\n  0x6f69, 0x6f6a, 0x6f6b, 0x6f6c, 0x4058, 0x6f6d, 0x412d, 0x6f6e,\n  0x6f6f, 0x6f70, 0x4f62, 0x3324, 0x4345, 0x6345, 0x4941, 0x6346,\n  0x3155, 0x4e4a, 0x3433, 0x4872, 0x6347, 0x4f50, 0x6348, 0x3c64,\n  0x6349, 0x634a, 0x4346, 0x5522, 0x4456, 0x396b, 0x4e45, 0x634b,\n  0x4376, 0x634c, 0x3727, 0x3873, 0x3a52, 0x634d, 0x634e, 0x5444,\n  0x634f, 0x6350, 0x514b, 0x6351, 0x6352, 0x6353, 0x6354, 0x5156,\n  0x6355, 0x327b, 0x403b, 0x6356, 0x402b, 0x6357, 0x6358, 0x6359,\n  0x635a, 0x635b, 0x3837, 0x5a62, 0x3653, 0x5a64, 0x5a63, 0x5a66,\n  0x486e, 0x5a65, 0x3740, 0x5174, 0x5275, 0x5573, 0x3d57, 0x5768,\n  0x5a68, 0x5a67, 0x3022, 0x4d53, 0x5a69, 0x383d, 0x3c4a, 0x423d,\n  0x4224, 0x3342, 0x5a6a, 0x422a, 0x4430, 0x3d35, 0x4f5e, 0x5a6b,\n  0x4942, 0x315d, 0x5a6c, 0x3638, 0x543a, 0x337d, 0x5a6d, 0x5449,\n  0x4f55, 0x4563, 0x5a6e, 0x5a6f, 0x5a70, 0x416a, 0x4c55, 0x4f5d,\n  0x5367, 0x4221, 0x5a71, 0x4b65, 0x5a72, 0x4b66, 0x527e, 0x3874,\n  0x5a73, 0x302f, 0x4f36, 0x554f, 0x4b6d, 0x5a74, 0x6344, 0x4125,\n  0x763f, 0x7640, 0x7641, 0x4451, 0x4838, 0x5163, 0x505b, 0x5145,\n  0x3c2f, 0x394d, 0x6f74, 0x3446, 0x533a, 0x7642, 0x337b, 0x7643,\n  0x3571, 0x7645, 0x536a, 0x7627, 0x5129, 0x7629, 0x7628, 0x4163,\n  0x4057, 0x3122, 0x4e6d, 0x5068, 0x762b, 0x4f76, 0x762a, 0x5570,\n  0x762c, 0x4339, 0x3b74, 0x762e, 0x762d, 0x445e, 0x4158, 0x4b2a,\n  0x4f3c, 0x762f, 0x7630, 0x7631, 0x4236, 0x3054, 0x4579, 0x7632,\n  0x4760, 0x7626, 0x3e38, 0x3e32, 0x3565, 0x3747, 0x3f3f, 0x4352,\n  0x4366, 0x584c, 0x386f, 0x3d79, 0x5125, 0x3050, 0x7730, 0x7731,\n  0x502c, 0x3030, 0x7732, 0x7733, 0x7734, 0x474a, 0x3e4f, 0x7737,\n  0x7736, 0x315e, 0x7735, 0x7738, 0x7739, 0x4e24, 0x484d, 0x3a2b,\n  0x6838, 0x6839, 0x683a, 0x3e42, 0x5274, 0x544f, 0x4958, 0x5233,\n  0x3625, 0x476a, 0x717c, 0x4f6e, 0x4b33, 0x506b, 0x676f, 0x4d67,\n  0x394b, 0x3659, 0x717d, 0x3064, 0x4b4c, 0x717e, 0x5424, 0x422d,\n  0x416c, 0x4644, 0x3e31, 0x7221, 0x3c55, 0x7222, 0x7223, 0x7224,\n  0x5243, 0x4635, 0x4d47, 0x7225, 0x5331, 0x3f45, 0x4c62, 0x7226,\n  0x7227, 0x5155, 0x366e, 0x7228, 0x7229, 0x355f, 0x722a, 0x722b,\n  0x327c, 0x722c, 0x722d, 0x4827, 0x3767, 0x6c29, 0x6c2a, 0x6c2b,\n  0x6c2c, 0x462e, 0x6c2d, 0x6c2e, 0x3749, 0x4a33, 0x6238, 0x774f,\n  0x7750, 0x324d, 0x7751, 0x7753, 0x7752, 0x623b, 0x3c22, 0x623c,\n  0x623d, 0x623e, 0x623f, 0x6240, 0x6241, 0x3739, 0x527b, 0x3d24,\n  0x4a4e, 0x3125, 0x4b47, 0x6242, 0x367c, 0x4844, 0x6243, 0x3d48,\n  0x317d, 0x6244, 0x3676, 0x6245, 0x4459, 0x6246, 0x4f5a, 0x395d,\n  0x6247, 0x4021, 0x6248, 0x3276, 0x6249, 0x4173, 0x624a, 0x624b,\n  0x4278, 0x624c, 0x624d, 0x624e, 0x4a57, 0x5838, 0x5965, 0x4f63,\n  0x7025, 0x5c30, 0x426d, 0x5426, 0x4d54, 0x5131, 0x335b, 0x477d,\n  0x3235, 0x423f, 0x6660, 0x4a3b, 0x6661, 0x6662, 0x3e54, 0x6663,\n  0x5724, 0x4d55, 0x6665, 0x3c5d, 0x6664, 0x6666, 0x6667, 0x426e,\n  0x3d3e, 0x6668, 0x4266, 0x3a27, 0x6669, 0x666a, 0x3352, 0x5169,\n  0x3f25, 0x666b, 0x466f, 0x666c, 0x666d, 0x666e, 0x462d, 0x666f,\n  0x4927, 0x6670, 0x6671, 0x6672, 0x6539, 0x6673, 0x6674, 0x4262,\n  0x6675, 0x6676, 0x5668, 0x6677, 0x6678, 0x3947, 0x773b, 0x773a,\n  0x773e, 0x773c, 0x3a21, 0x773f, 0x7740, 0x7742, 0x7741, 0x7744,\n  0x7743, 0x7745, 0x7746, 0x7747, 0x4b68, 0x385f, 0x7754, 0x7755,\n  0x7756, 0x7758, 0x775a, 0x7757, 0x775b, 0x7759, 0x5757, 0x775c,\n  0x775d, 0x775e, 0x775f, 0x7760, 0x5b4b, 0x582a, 0x6577, 0x396d,\n  0x3f7d, 0x3b6a, 0x7749, 0x4647, 0x7748, 0x774a, 0x774c, 0x774b,\n  0x774d, 0x4e3a, 0x774e, 0x4427, 0x5363, 0x764f, 0x4233, 0x7650,\n  0x7651, 0x7652, 0x7653, 0x7654, 0x7656, 0x312b, 0x7657, 0x7658,\n  0x7659, 0x765a, 0x765b, 0x765c, 0x765d, 0x765e, 0x4f4a, 0x765f,\n  0x7660, 0x7661, 0x7662, 0x7663, 0x7664, 0x4070, 0x7665, 0x7666,\n  0x7667, 0x7668, 0x7669, 0x766a, 0x766b, 0x766c, 0x766d, 0x766e,\n  0x766f, 0x7670, 0x7671, 0x7672, 0x7673, 0x7674, 0x3e28, 0x7675,\n  0x7676, 0x7677, 0x7678, 0x487a, 0x7679, 0x767a, 0x767b, 0x767c,\n  0x767d, 0x767e, 0x7721, 0x7722, 0x7723, 0x7724, 0x7725, 0x7726,\n  0x7727, 0x7728, 0x316e, 0x7729, 0x772a, 0x772b, 0x772c, 0x772d,\n  0x415b, 0x772e, 0x772f, 0x4471, 0x702f, 0x3c26, 0x7030, 0x4379,\n  0x4538, 0x513b, 0x7031, 0x7032, 0x7033, 0x7034, 0x7035, 0x513c,\n  0x516c, 0x7037, 0x7036, 0x5427, 0x4d52, 0x7038, 0x703a, 0x7039,\n  0x703b, 0x703c, 0x386b, 0x703d, 0x3a68, 0x703e, 0x703f, 0x3e69,\n  0x7040, 0x366c, 0x7041, 0x7042, 0x7043, 0x7044, 0x4835, 0x7045,\n  0x7046, 0x7047, 0x4574, 0x7048, 0x7049, 0x704a, 0x773d, 0x704b,\n  0x704c, 0x704d, 0x704e, 0x704f, 0x3a57, 0x7050, 0x7051, 0x7052,\n  0x7053, 0x7054, 0x7055, 0x7056, 0x7058, 0x5325, 0x7057, 0x7059,\n  0x753a, 0x4239, 0x7764, 0x7765, 0x7766, 0x7767, 0x7768, 0x4234,\n  0x776a, 0x776b, 0x4273, 0x7470, 0x746f, 0x4269, 0x7761, 0x7762,\n  0x3b46, 0x5964, 0x4a72, 0x4068, 0x7024, 0x3a5a, 0x472d, 0x442c,\n  0x776c, 0x776d, 0x776e, 0x7770, 0x776f, 0x7771, 0x7774, 0x7773,\n  0x7772, 0x7775, 0x7776, 0x6d69, 0x6d6a, 0x6d6b, 0x763c, 0x763d,\n  0x763e, 0x3626, 0x583e, 0x3944, 0x583b, 0x5c31, 0x4a73, 0x7777,\n  0x7778, 0x7779, 0x777b, 0x777a, 0x3147, 0x777c, 0x777d, 0x777e,\n  0x466b, 0x6c34, 0x335d, 0x7633, 0x7634, 0x4164, 0x7635, 0x7636,\n  0x7637, 0x7638, 0x7639, 0x763a, 0x4823, 0x763b, 0x417a, 0x3928,\n  0x6d68, 0x396a, 0x595f, 0x2321, 0x2322, 0x2323, 0x2167, 0x2325,\n  0x2326, 0x2327, 0x2328, 0x2329, 0x232a, 0x232b, 0x232c, 0x232d,\n  0x232e, 0x232f, 0x2330, 0x2331, 0x2332, 0x2333, 0x2334, 0x2335,\n  0x2336, 0x2337, 0x2338, 0x2339, 0x233a, 0x233b, 0x233c, 0x233d,\n  0x233e, 0x233f, 0x2340, 0x2341, 0x2342, 0x2343, 0x2344, 0x2345,\n  0x2346, 0x2347, 0x2348, 0x2349, 0x234a, 0x234b, 0x234c, 0x234d,\n  0x234e, 0x234f, 0x2350, 0x2351, 0x2352, 0x2353, 0x2354, 0x2355,\n  0x2356, 0x2357, 0x2358, 0x2359, 0x235a, 0x235b, 0x235c, 0x235d,\n  0x235e, 0x235f, 0x2360, 0x2361, 0x2362, 0x2363, 0x2364, 0x2365,\n  0x2366, 0x2367, 0x2368, 0x2369, 0x236a, 0x236b, 0x236c, 0x236d,\n  0x236e, 0x236f, 0x2370, 0x2371, 0x2372, 0x2373, 0x2374, 0x2375,\n  0x2376, 0x2377, 0x2378, 0x2379, 0x237a, 0x237b, 0x237c, 0x237d,\n  0x212b, 0x2169, 0x216a, 0x237e, 0x2324,\n};\n\nstatic const Summary16 gb2312_uni2indx_page00[70] = {\n  /* 0x0000 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0190 }, {    3, 0x0003 },\n  {    5, 0x0000 }, {    5, 0x0080 }, {    6, 0x3703 }, {   13, 0x168c },\n  /* 0x0100 */\n  {   19, 0x0002 }, {   20, 0x0808 }, {   22, 0x0800 }, {   23, 0x0000 },\n  {   23, 0x2000 }, {   24, 0x0000 }, {   24, 0x0800 }, {   25, 0x0000 },\n  {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 },\n  {   25, 0x4000 }, {   26, 0x1555 }, {   33, 0x0000 }, {   33, 0x0000 },\n  /* 0x0200 */\n  {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 },\n  {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 },\n  {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 },\n  {   33, 0x0280 }, {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 },\n  /* 0x0300 */\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 },\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 },\n  {   35, 0x0000 }, {   35, 0xfffe }, {   50, 0x03fb }, {   59, 0xfffe },\n  {   74, 0x03fb }, {   83, 0x0000 }, {   83, 0x0000 }, {   83, 0x0000 },\n  /* 0x0400 */\n  {   83, 0x0002 }, {   84, 0xffff }, {  100, 0xffff }, {  116, 0xffff },\n  {  132, 0xffff }, {  148, 0x0002 },\n};\nstatic const Summary16 gb2312_uni2indx_page20[101] = {\n  /* 0x2000 */\n  {  149, 0x0000 }, {  149, 0x3360 }, {  155, 0x0040 }, {  156, 0x080d },\n  {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 },\n  {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 },\n  {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 },\n  /* 0x2100 */\n  {  160, 0x0008 }, {  161, 0x0040 }, {  162, 0x0000 }, {  162, 0x0000 },\n  {  162, 0x0000 }, {  162, 0x0000 }, {  162, 0x0fff }, {  174, 0x0000 },\n  {  174, 0x0000 }, {  174, 0x000f }, {  178, 0x0000 }, {  178, 0x0000 },\n  {  178, 0x0000 }, {  178, 0x0000 }, {  178, 0x0000 }, {  178, 0x0000 },\n  /* 0x2200 */\n  {  178, 0x8100 }, {  180, 0x6402 }, {  184, 0x4fa1 }, {  192, 0x20f0 },\n  {  197, 0x1100 }, {  199, 0x0000 }, {  199, 0xc033 }, {  205, 0x0000 },\n  {  205, 0x0000 }, {  205, 0x0200 }, {  206, 0x0020 }, {  207, 0x0000 },\n  {  207, 0x0000 }, {  207, 0x0000 }, {  207, 0x0000 }, {  207, 0x0000 },\n  /* 0x2300 */\n  {  207, 0x0000 }, {  207, 0x0004 }, {  208, 0x0000 }, {  208, 0x0000 },\n  {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 },\n  {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 },\n  {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 },\n  /* 0x2400 */\n  {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 },\n  {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x03ff }, {  218, 0xfff0 },\n  {  230, 0xffff }, {  246, 0x0fff }, {  258, 0x0000 }, {  258, 0x0000 },\n  {  258, 0x0000 }, {  258, 0x0000 }, {  258, 0x0000 }, {  258, 0x0000 },\n  /* 0x2500 */\n  {  258, 0xffff }, {  274, 0xffff }, {  290, 0xffff }, {  306, 0xffff },\n  {  322, 0x0fff }, {  334, 0x0000 }, {  334, 0x0000 }, {  334, 0x0000 },\n  {  334, 0x0000 }, {  334, 0x0000 }, {  334, 0x0003 }, {  336, 0x000c },\n  {  338, 0xc8c0 }, {  343, 0x0000 }, {  343, 0x0000 }, {  343, 0x0000 },\n  /* 0x2600 */\n  {  343, 0x0060 }, {  345, 0x0000 }, {  345, 0x0000 }, {  345, 0x0000 },\n  {  345, 0x0005 },\n};\nstatic const Summary16 gb2312_uni2indx_page30[35] = {\n  /* 0x3000 */\n  {  347, 0xff2f }, {  360, 0x00fb }, {  367, 0x0000 }, {  367, 0x0000 },\n  {  367, 0xfffe }, {  382, 0xffff }, {  398, 0xffff }, {  414, 0xffff },\n  {  430, 0xffff }, {  446, 0x000f }, {  450, 0xfffe }, {  465, 0xffff },\n  {  481, 0xffff }, {  497, 0xffff }, {  513, 0xffff }, {  529, 0x087f },\n  /* 0x3100 */\n  {  537, 0xffe0 }, {  548, 0xffff }, {  564, 0x03ff }, {  574, 0x0000 },\n  {  574, 0x0000 }, {  574, 0x0000 }, {  574, 0x0000 }, {  574, 0x0000 },\n  {  574, 0x0000 }, {  574, 0x0000 }, {  574, 0x0000 }, {  574, 0x0000 },\n  {  574, 0x0000 }, {  574, 0x0000 }, {  574, 0x0000 }, {  574, 0x0000 },\n  /* 0x3200 */\n  {  574, 0x0000 }, {  574, 0x0000 }, {  574, 0x03ff },\n};\nstatic const Summary16 gb2312_uni2indx_page4e[1263] = {\n  /* 0x4e00 */\n  {  584, 0x7f8b }, {  595, 0x7f7b }, {  608, 0x3db4 }, {  617, 0xef55 },\n  {  628, 0xfba8 }, {  638, 0xf35d }, {  649, 0x0243 }, {  653, 0x400b },\n  {  657, 0xfb40 }, {  665, 0x8d3e }, {  674, 0x7bf7 }, {  687, 0x8c2c },\n  {  693, 0x6eff }, {  706, 0xe3fa }, {  717, 0x1d3a }, {  725, 0xa8ed },\n  /* 0x4f00 */\n  {  734, 0xe602 }, {  740, 0xcf83 }, {  749, 0x8cf5 }, {  758, 0x3555 },\n  {  766, 0xe048 }, {  771, 0xffab }, {  784, 0x92b9 }, {  792, 0xd859 },\n  {  800, 0xab18 }, {  807, 0x2892 }, {  812, 0xd7e9 }, {  823, 0x8020 },\n  {  825, 0xc438 }, {  831, 0xf583 }, {  840, 0xe74a }, {  849, 0x450a },\n  /* 0x5000 */\n  {  854, 0xb000 }, {  857, 0x9714 }, {  864, 0x7762 }, {  873, 0x5400 },\n  {  876, 0xd188 }, {  882, 0x1420 }, {  885, 0x1020 }, {  887, 0xc8c0 },\n  {  892, 0x2121 }, {  896, 0x0000 }, {  896, 0x13a8 }, {  902, 0x0c04 },\n  {  905, 0x8000 }, {  906, 0x0440 }, {  908, 0x70c0 }, {  913, 0x0828 },\n  /* 0x5100 */\n  {  916, 0x08c0 }, {  919, 0x0004 }, {  920, 0x0002 }, {  921, 0x8000 },\n  {  922, 0x2b7b }, {  932, 0x1472 }, {  938, 0x7924 }, {  945, 0x3bfb },\n  {  957, 0x3327 }, {  965, 0x1ae4 }, {  972, 0x9835 }, {  979, 0x38ef },\n  {  989, 0x9ad1 }, {  997, 0x2802 }, { 1000, 0xa813 }, { 1006, 0xbf69 },\n  /* 0x5200 */\n  { 1017, 0x65cf }, { 1027, 0x2fc6 }, { 1036, 0x6b11 }, { 1043, 0xafc9 },\n  { 1053, 0x340f }, { 1060, 0x5053 }, { 1066, 0x86a2 }, { 1072, 0xa004 },\n  { 1075, 0x0106 }, { 1078, 0xe809 }, { 1084, 0x3f0f }, { 1094, 0xc00e },\n  { 1099, 0x0a88 }, { 1103, 0x8145 }, { 1108, 0x0010 }, { 1109, 0xc601 },\n  /* 0x5300 */\n  { 1114, 0xa161 }, { 1120, 0x26e1 }, { 1127, 0x444b }, { 1133, 0xce00 },\n  { 1138, 0xc7aa }, { 1147, 0xd4ee }, { 1157, 0xcadf }, { 1168, 0x85bb },\n  { 1177, 0x3a74 }, { 1185, 0xa520 }, { 1190, 0x436c }, { 1197, 0x8840 },\n  { 1200, 0x3f06 }, { 1208, 0x8bd2 }, { 1216, 0xff79 }, { 1229, 0x3bef },\n  /* 0x5400 */\n  { 1241, 0xf75a }, { 1252, 0xe8ef }, { 1263, 0xfbcb }, { 1275, 0x5b36 },\n  { 1284, 0x0d49 }, { 1290, 0x1bfd }, { 1301, 0x0154 }, { 1305, 0x39ee },\n  { 1315, 0xd855 }, { 1323, 0x2e75 }, { 1332, 0xbfd8 }, { 1343, 0xa91a },\n  { 1350, 0xf3d7 }, { 1362, 0xf6bf }, { 1375, 0x67e0 }, { 1383, 0xb40c },\n  /* 0x5500 */\n  { 1389, 0x82c2 }, { 1394, 0x0813 }, { 1398, 0xd49d }, { 1407, 0xd08b },\n  { 1414, 0x065a }, { 1420, 0x1061 }, { 1424, 0x74f2 }, { 1433, 0x59e0 },\n  { 1440, 0x8f9f }, { 1451, 0xb312 }, { 1458, 0x0080 }, { 1459, 0x6aaa },\n  { 1467, 0x3230 }, { 1472, 0xb05e }, { 1480, 0x9d7a }, { 1490, 0x60ac },\n  /* 0x5600 */\n  { 1496, 0xd303 }, { 1503, 0xc900 }, { 1507, 0x3098 }, { 1512, 0x8a56 },\n  { 1519, 0x7000 }, { 1522, 0x1390 }, { 1527, 0x1f14 }, { 1534, 0x1842 },\n  { 1538, 0xc060 }, { 1542, 0x0008 }, { 1543, 0x8008 }, { 1545, 0x1080 },\n  { 1547, 0x0400 }, { 1548, 0xec90 }, { 1555, 0x2817 }, { 1561, 0xe633 },\n  /* 0x5700 */\n  { 1570, 0x0758 }, { 1576, 0x9000 }, { 1578, 0xf708 }, { 1586, 0x4e09 },\n  { 1592, 0xf485 }, { 1600, 0xfc83 }, { 1609, 0xaf53 }, { 1619, 0x18c8 },\n  { 1624, 0x187c }, { 1631, 0x080c }, { 1634, 0x6adf }, { 1645, 0x0114 },\n  { 1648, 0xc80c }, { 1653, 0xa734 }, { 1661, 0xa011 }, { 1665, 0x2710 },\n  /* 0x5800 */\n  { 1670, 0x28c5 }, { 1676, 0x4222 }, { 1680, 0x0413 }, { 1684, 0x0021 },\n  { 1686, 0x3010 }, { 1689, 0x4112 }, { 1693, 0x1820 }, { 1696, 0x4000 },\n  { 1697, 0x022b }, { 1702, 0xc60c }, { 1708, 0x0300 }, { 1710, 0x1000 },\n  { 1711, 0x0022 }, { 1713, 0x0022 }, { 1715, 0x5810 }, { 1719, 0x0249 },\n  /* 0x5900 */\n  { 1723, 0xa094 }, { 1728, 0x9670 }, { 1735, 0xeeb0 }, { 1744, 0x1792 },\n  { 1751, 0xcb96 }, { 1760, 0x05f2 }, { 1767, 0x0025 }, { 1770, 0x2358 },\n  { 1776, 0x25de }, { 1785, 0x42cc }, { 1791, 0xcf38 }, { 1800, 0x4a04 },\n  { 1804, 0x0c40 }, { 1807, 0x359f }, { 1817, 0x1128 }, { 1821, 0x8a00 },\n  /* 0x5a00 */\n  { 1824, 0x13fa }, { 1833, 0x910a }, { 1838, 0x0229 }, { 1842, 0x1056 },\n  { 1847, 0x0641 }, { 1851, 0x0420 }, { 1853, 0x0484 }, { 1856, 0x84f0 },\n  { 1862, 0x0000 }, { 1862, 0x0c04 }, { 1865, 0x0400 }, { 1866, 0x412c },\n  { 1871, 0x1206 }, { 1875, 0x1154 }, { 1880, 0x0a4b }, { 1886, 0x0002 },\n  /* 0x5b00 */\n  { 1887, 0x0200 }, { 1888, 0x00c0 }, { 1890, 0x0000 }, { 1890, 0x0094 },\n  { 1893, 0x0001 }, { 1894, 0xbfbb }, { 1907, 0x167c }, { 1915, 0x242b },\n  { 1921, 0x9bbb }, { 1932, 0x7fa8 }, { 1942, 0x0c7f }, { 1951, 0xe379 },\n  { 1961, 0x10f4 }, { 1967, 0xe00d }, { 1973, 0x4132 }, { 1978, 0x9f01 },\n  /* 0x5c00 */\n  { 1985, 0x8652 }, { 1991, 0x3572 }, { 1999, 0x10b4 }, { 2004, 0xff12 },\n  { 2014, 0xcf27 }, { 2024, 0x4223 }, { 2029, 0xc06b }, { 2036, 0x8602 },\n  { 2040, 0x3106 }, { 2045, 0x1fd3 }, { 2055, 0x3a0c }, { 2061, 0xa1aa },\n  { 2068, 0x0812 }, { 2071, 0x0204 }, { 2073, 0x2572 }, { 2080, 0x0801 },\n  /* 0x5d00 */\n  { 2082, 0x40cc }, { 2087, 0x4850 }, { 2091, 0x62d0 }, { 2097, 0x6010 },\n  { 2100, 0x1c80 }, { 2104, 0x2900 }, { 2107, 0x9a00 }, { 2111, 0x0010 },\n  { 2112, 0x0004 }, { 2113, 0x2200 }, { 2115, 0x0000 }, { 2115, 0x0080 },\n  { 2116, 0x2020 }, { 2118, 0x6800 }, { 2121, 0xcbe6 }, { 2131, 0x609e },\n  /* 0x5e00 */\n  { 2138, 0x916e }, { 2146, 0x3f73 }, { 2157, 0x60c0 }, { 2161, 0x3982 },\n  { 2167, 0x1034 }, { 2171, 0x4830 }, { 2175, 0x0006 }, { 2177, 0xbd5c },\n  { 2187, 0x8cd1 }, { 2194, 0xd6fb }, { 2206, 0x20e1 }, { 2211, 0x43e8 },\n  { 2218, 0x0600 }, { 2220, 0x084e }, { 2225, 0x0500 }, { 2227, 0xc4d0 },\n  /* 0x5f00 */\n  { 2233, 0x8d1f }, { 2242, 0x89aa }, { 2249, 0xa6e1 }, { 2257, 0x1602 },\n  { 2261, 0x0001 }, { 2262, 0x21ed }, { 2270, 0x3656 }, { 2278, 0x1a8b },\n  { 2285, 0x1fb7 }, { 2296, 0x13a5 }, { 2303, 0x6502 }, { 2308, 0x30a0 },\n  { 2312, 0xb278 }, { 2320, 0x23c7 }, { 2328, 0x6c93 }, { 2336, 0xe922 },\n  /* 0x6000 */\n  { 2343, 0xe47f }, { 2354, 0x3a74 }, { 2362, 0x8fe3 }, { 2372, 0x9820 },\n  { 2376, 0x280e }, { 2381, 0x2625 }, { 2387, 0xbf9c }, { 2398, 0xbf49 },\n  { 2408, 0x3218 }, { 2413, 0xac54 }, { 2420, 0xb949 }, { 2428, 0x1916 },\n  { 2434, 0x0c60 }, { 2438, 0xb522 }, { 2445, 0xfbc1 }, { 2455, 0x0659 },\n  /* 0x6100 */\n  { 2461, 0xe343 }, { 2469, 0x8420 }, { 2472, 0x08d9 }, { 2478, 0x8000 },\n  { 2479, 0x5500 }, { 2483, 0x2022 }, { 2486, 0x0184 }, { 2489, 0x00a1 },\n  { 2492, 0x4800 }, { 2494, 0x2010 }, { 2496, 0x1380 }, { 2500, 0x4080 },\n  { 2502, 0x0d04 }, { 2506, 0x0016 }, { 2509, 0x0040 }, { 2510, 0x8020 },\n  /* 0x6200 */\n  { 2512, 0xfd40 }, { 2520, 0x8de7 }, { 2530, 0x5436 }, { 2537, 0xe098 },\n  { 2543, 0x7b8b }, { 2553, 0x091e }, { 2559, 0xfec8 }, { 2569, 0xd249 },\n  { 2576, 0x0611 }, { 2580, 0x8dee }, { 2590, 0x1937 }, { 2598, 0xba22 },\n  { 2605, 0x77f4 }, { 2616, 0x9fdd }, { 2628, 0xf3ec }, { 2639, 0xf0da },\n  /* 0x6300 */\n  { 2648, 0x4386 }, { 2654, 0xec42 }, { 2661, 0x8d3f }, { 2671, 0x2604 },\n  { 2675, 0xfa6c }, { 2685, 0xc021 }, { 2689, 0x628e }, { 2696, 0x0cc2 },\n  { 2701, 0xd785 }, { 2710, 0x0145 }, { 2714, 0x77ad }, { 2725, 0x5599 },\n  { 2733, 0xe250 }, { 2739, 0x4045 }, { 2743, 0x260b }, { 2749, 0xa154 },\n  /* 0x6400 */\n  { 2755, 0x9827 }, { 2762, 0x5819 }, { 2768, 0x3443 }, { 2774, 0xa410 },\n  { 2778, 0x05f2 }, { 2785, 0x4114 }, { 2789, 0x2280 }, { 2792, 0x0700 },\n  { 2795, 0x00b4 }, { 2799, 0x4266 }, { 2805, 0x7210 }, { 2810, 0x15a1 },\n  { 2816, 0x6025 }, { 2821, 0x4185 }, { 2826, 0x0054 }, { 2829, 0x0000 },\n  /* 0x6500 */\n  { 2829, 0x0201 }, { 2831, 0x0104 }, { 2833, 0xc820 }, { 2837, 0xcb70 },\n  { 2845, 0x9320 }, { 2850, 0x6a62 }, { 2857, 0x184c }, { 2862, 0x0095 },\n  { 2866, 0x1880 }, { 2869, 0x9a8b }, { 2877, 0xaab2 }, { 2885, 0x3201 },\n  { 2889, 0xd87a }, { 2898, 0x00c4 }, { 2901, 0xf3e5 }, { 2912, 0x04c3 },\n  /* 0x6600 */\n  { 2917, 0xd44d }, { 2925, 0xa238 }, { 2931, 0xa1a1 }, { 2937, 0x5072 },\n  { 2943, 0x980a }, { 2948, 0x84fc }, { 2956, 0xc152 }, { 2962, 0x44d1 },\n  { 2968, 0x1094 }, { 2972, 0x20c2 }, { 2976, 0x4180 }, { 2979, 0x4210 },\n  { 2982, 0x0000 }, { 2982, 0x3a00 }, { 2986, 0x0240 }, { 2988, 0xd29d },\n  /* 0x6700 */\n  { 2997, 0x2f01 }, { 3003, 0xa8b1 }, { 3010, 0xbd40 }, { 3017, 0x2432 },\n  { 3022, 0xd34d }, { 3031, 0xd04b }, { 3038, 0xa723 }, { 3046, 0xd0ad },\n  { 3054, 0x0a92 }, { 3059, 0x75a1 }, { 3067, 0xadac }, { 3076, 0x01e9 },\n  { 3082, 0x801a }, { 3086, 0x771f }, { 3097, 0x9225 }, { 3103, 0xa01b },\n  /* 0x6800 */\n  { 3109, 0xdfa1 }, { 3119, 0x20ca }, { 3124, 0x0602 }, { 3127, 0x738c },\n  { 3135, 0x577f }, { 3147, 0x003b }, { 3152, 0x0bff }, { 3163, 0x00d0 },\n  { 3166, 0x806a }, { 3171, 0x0088 }, { 3173, 0xa1c4 }, { 3179, 0x0029 },\n  { 3182, 0x2a05 }, { 3187, 0x0524 }, { 3191, 0x4009 }, { 3194, 0x1623 },\n  /* 0x6900 */\n  { 3200, 0x6822 }, { 3205, 0x8005 }, { 3208, 0x2011 }, { 3211, 0xa211 },\n  { 3216, 0x0004 }, { 3217, 0x6490 }, { 3222, 0x4849 }, { 3227, 0x1382 },\n  { 3232, 0x23d5 }, { 3240, 0x1930 }, { 3245, 0x2980 }, { 3249, 0x0892 },\n  { 3253, 0x5402 }, { 3257, 0x8811 }, { 3261, 0x2001 }, { 3263, 0xa004 },\n  /* 0x6a00 */\n  { 3266, 0x0400 }, { 3267, 0x8180 }, { 3270, 0x8502 }, { 3274, 0x6022 },\n  { 3278, 0x0090 }, { 3280, 0x0b01 }, { 3284, 0x0022 }, { 3286, 0x1202 },\n  { 3289, 0x4011 }, { 3292, 0x0083 }, { 3295, 0x1a01 }, { 3299, 0x0000 },\n  { 3299, 0x0000 }, { 3299, 0x0000 }, { 3299, 0x0000 }, { 3299, 0x0000 },\n  /* 0x6b00 */\n  { 3299, 0x0000 }, { 3299, 0x0000 }, { 3299, 0x009f }, { 3305, 0x4684 },\n  { 3310, 0x12c8 }, { 3315, 0x0200 }, { 3316, 0x04fc }, { 3323, 0x1a00 },\n  { 3326, 0x2ede }, { 3336, 0x0c4c }, { 3341, 0x0402 }, { 3343, 0x80b8 },\n  { 3348, 0xa826 }, { 3354, 0x0afc }, { 3362, 0x8c02 }, { 3366, 0x2228 },\n  /* 0x6c00 */\n  { 3370, 0xa0e0 }, { 3375, 0x8f7b }, { 3386, 0xc7d6 }, { 3396, 0x2135 },\n  { 3402, 0x06c7 }, { 3409, 0xf8b1 }, { 3418, 0x0713 }, { 3424, 0x6255 },\n  { 3431, 0x936e }, { 3440, 0x8a19 }, { 3446, 0x6efa }, { 3457, 0xfb0e },\n  { 3467, 0x1630 }, { 3472, 0x48f9 }, { 3480, 0xcd2f }, { 3490, 0x7deb },\n  /* 0x6d00 */\n  { 3502, 0x5892 }, { 3508, 0x4e84 }, { 3514, 0x4ca0 }, { 3519, 0x7a2e },\n  { 3528, 0xedea }, { 3539, 0x561e }, { 3547, 0xc649 }, { 3554, 0x1190 },\n  { 3558, 0x5324 }, { 3564, 0xe83a }, { 3572, 0xcfdb }, { 3584, 0x8124 },\n  { 3588, 0x18f1 }, { 3595, 0x6342 }, { 3601, 0x5853 }, { 3608, 0x1a8a },\n  /* 0x6e00 */\n  { 3614, 0x7420 }, { 3619, 0x24d3 }, { 3626, 0xaa3b }, { 3635, 0x0514 },\n  { 3639, 0x6018 }, { 3643, 0x8958 }, { 3649, 0x4800 }, { 3651, 0xc000 },\n  { 3653, 0x8268 }, { 3658, 0x9101 }, { 3662, 0x84a4 }, { 3667, 0x2cd6 },\n  { 3675, 0x8886 }, { 3680, 0xc4ba }, { 3688, 0x0377 }, { 3696, 0x0210 },\n  /* 0x6f00 */\n  { 3698, 0x8244 }, { 3702, 0x0038 }, { 3705, 0xae11 }, { 3712, 0x404a },\n  { 3716, 0x28c0 }, { 3720, 0x5100 }, { 3723, 0x6044 }, { 3727, 0x1514 },\n  { 3732, 0x7310 }, { 3738, 0x1000 }, { 3739, 0x0082 }, { 3741, 0x0248 },\n  { 3744, 0x0205 }, { 3747, 0x4006 }, { 3750, 0xc003 }, { 3754, 0x0000 },\n  /* 0x7000 */\n  { 3754, 0x0000 }, { 3754, 0x0c02 }, { 3757, 0x0008 }, { 3758, 0x0220 },\n  { 3760, 0x9000 }, { 3762, 0x4000 }, { 3763, 0xb800 }, { 3767, 0xd161 },\n  { 3774, 0x4621 }, { 3779, 0x3274 }, { 3786, 0xf800 }, { 3791, 0x3b8a },\n  { 3799, 0x050f }, { 3805, 0x8b00 }, { 3809, 0xbbd0 }, { 3818, 0x2280 },\n  /* 0x7100 */\n  { 3821, 0x0600 }, { 3823, 0x0769 }, { 3830, 0x8040 }, { 3832, 0x0043 },\n  { 3835, 0x5420 }, { 3839, 0x5000 }, { 3841, 0x41d0 }, { 3846, 0x250c },\n  { 3851, 0x8410 }, { 3854, 0x8310 }, { 3858, 0x1101 }, { 3861, 0x0228 },\n  { 3864, 0x4008 }, { 3866, 0x0030 }, { 3868, 0x40a1 }, { 3872, 0x0200 },\n  /* 0x7200 */\n  { 3873, 0x0040 }, { 3874, 0x2000 }, { 3875, 0x1500 }, { 3878, 0xabe3 },\n  { 3888, 0x3180 }, { 3892, 0xaa44 }, { 3898, 0xc2c6 }, { 3905, 0xc624 },\n  { 3911, 0xac13 }, { 3918, 0x8004 }, { 3920, 0xb000 }, { 3923, 0x03d1 },\n  { 3929, 0x611e }, { 3936, 0x4285 }, { 3941, 0xf303 }, { 3949, 0x1d9f },\n  /* 0x7300 */\n  { 3959, 0x440a }, { 3963, 0x78e8 }, { 3971, 0x5e26 }, { 3979, 0xc392 },\n  { 3986, 0x2000 }, { 3987, 0x0085 }, { 3990, 0xb001 }, { 3994, 0x4000 },\n  { 3995, 0x4a90 }, { 4000, 0x8842 }, { 4004, 0xca04 }, { 4009, 0x0c8d },\n  { 4015, 0xa705 }, { 4022, 0x4203 }, { 4026, 0x22a1 }, { 4031, 0x0004 },\n  /* 0x7400 */\n  { 4032, 0x8668 }, { 4038, 0x0c01 }, { 4041, 0x5564 }, { 4048, 0x1079 },\n  { 4054, 0x0002 }, { 4055, 0xdea0 }, { 4063, 0x2000 }, { 4064, 0x40c1 },\n  { 4068, 0x488b }, { 4074, 0x5001 }, { 4077, 0x0380 }, { 4080, 0x0400 },\n  { 4081, 0x0000 }, { 4081, 0x5004 }, { 4084, 0xc05d }, { 4091, 0x80d0 },\n  /* 0x7500 */\n  { 4095, 0xa010 }, { 4098, 0x970a }, { 4105, 0xbb20 }, { 4112, 0x4daf },\n  { 4122, 0xd921 }, { 4129, 0x1e10 }, { 4134, 0x0460 }, { 4137, 0x8314 },\n  { 4142, 0x8848 }, { 4146, 0xa6d6 }, { 4155, 0xd83b }, { 4164, 0x733f },\n  { 4175, 0x27bc }, { 4184, 0x4974 }, { 4191, 0x0ddc }, { 4199, 0x9213 },\n  /* 0x7600 */\n  { 4205, 0x142b }, { 4211, 0x8ba1 }, { 4218, 0x2e75 }, { 4227, 0xd139 },\n  { 4235, 0x3009 }, { 4239, 0x5050 }, { 4243, 0x8808 }, { 4246, 0x6900 },\n  { 4250, 0x49d4 }, { 4257, 0x024a }, { 4261, 0x4010 }, { 4263, 0x8016 },\n  { 4267, 0xe564 }, { 4275, 0x89d7 }, { 4284, 0xc020 }, { 4287, 0x5316 },\n  /* 0x7700 */\n  { 4294, 0x2b92 }, { 4301, 0x8600 }, { 4304, 0xa345 }, { 4311, 0x15e0 },\n  { 4317, 0x008b }, { 4321, 0x0c03 }, { 4325, 0x196e }, { 4333, 0xe200 },\n  { 4337, 0x7031 }, { 4343, 0x8006 }, { 4346, 0x16a5 }, { 4353, 0xa829 },\n  { 4359, 0x2000 }, { 4360, 0x1880 }, { 4363, 0x7aac }, { 4372, 0xe148 },\n  /* 0x7800 */\n  { 4378, 0x3207 }, { 4384, 0xb5d6 }, { 4394, 0x32e8 }, { 4401, 0x5f91 },\n  { 4410, 0x50a1 }, { 4415, 0x20e5 }, { 4421, 0x7c00 }, { 4426, 0x1080 },\n  { 4428, 0x7280 }, { 4433, 0x9d8a }, { 4441, 0x00aa }, { 4445, 0x421f },\n  { 4452, 0x0e22 }, { 4457, 0x0231 }, { 4461, 0x1100 }, { 4463, 0x0494 },\n  /* 0x7900 */\n  { 4467, 0x0022 }, { 4469, 0x4008 }, { 4471, 0x0010 }, { 4472, 0x5c10 },\n  { 4477, 0x0343 }, { 4482, 0xfcc8 }, { 4491, 0xa1a5 }, { 4498, 0x0580 },\n  { 4501, 0x8433 }, { 4507, 0x0400 }, { 4508, 0x0080 }, { 4509, 0x6e08 },\n  { 4515, 0x2a4b }, { 4522, 0x8126 }, { 4527, 0xaad8 }, { 4535, 0x2901 },\n  /* 0x7a00 */\n  { 4539, 0x684d }, { 4546, 0x4490 }, { 4550, 0x0009 }, { 4552, 0xba88 },\n  { 4559, 0x0040 }, { 4560, 0x0082 }, { 4562, 0x0000 }, { 4562, 0x87d1 },\n  { 4570, 0x215b }, { 4577, 0xb1e6 }, { 4586, 0x3161 }, { 4592, 0x8008 },\n  { 4594, 0x0800 }, { 4595, 0xc240 }, { 4599, 0xa069 }, { 4605, 0xa600 },\n  /* 0x7b00 */\n  { 4609, 0x8d58 }, { 4616, 0x4a32 }, { 4622, 0x5d71 }, { 4631, 0x550a },\n  { 4637, 0x9aa0 }, { 4643, 0x2d57 }, { 4652, 0x4005 }, { 4655, 0x4aa6 },\n  { 4662, 0x2021 }, { 4665, 0x30b1 }, { 4671, 0x3fc6 }, { 4681, 0x0112 },\n  { 4684, 0x10c2 }, { 4688, 0x260a }, { 4693, 0x4462 }, { 4698, 0x5082 },\n  /* 0x7c00 */\n  { 4702, 0x9880 }, { 4706, 0x8040 }, { 4708, 0x04c0 }, { 4711, 0x8100 },\n  { 4713, 0x2003 }, { 4716, 0x0000 }, { 4716, 0x0000 }, { 4716, 0x3818 },\n  { 4721, 0x0200 }, { 4722, 0xf1a6 }, { 4731, 0x4434 }, { 4736, 0x720e },\n  { 4743, 0x35a2 }, { 4750, 0x92e0 }, { 4756, 0x8101 }, { 4759, 0x0900 },\n  /* 0x7d00 */\n  { 4761, 0x0400 }, { 4762, 0x0000 }, { 4762, 0x8885 }, { 4767, 0x0000 },\n  { 4767, 0x0000 }, { 4767, 0x0000 }, { 4767, 0x4000 }, { 4768, 0x0080 },\n  { 4769, 0x0000 }, { 4769, 0x0000 }, { 4769, 0x4040 }, { 4771, 0x0000 },\n  { 4771, 0x0000 }, { 4771, 0x0000 }, { 4771, 0x0000 }, { 4771, 0x0000 },\n  /* 0x7e00 */\n  { 4771, 0x0000 }, { 4771, 0x0000 }, { 4771, 0x0000 }, { 4771, 0x0800 },\n  { 4772, 0x0082 }, { 4774, 0x0000 }, { 4774, 0x0000 }, { 4774, 0x0000 },\n  { 4774, 0x0004 }, { 4775, 0x8800 }, { 4777, 0xbfff }, { 4792, 0xe7ef },\n  { 4805, 0xffff }, { 4821, 0xffbf }, { 4836, 0xefef }, { 4850, 0xfdff },\n  /* 0x7f00 */\n  { 4865, 0xfbff }, { 4880, 0xbffe }, { 4894, 0xffff }, { 4910, 0x057f },\n  { 4919, 0x0034 }, { 4922, 0x85b3 }, { 4930, 0x4706 }, { 4936, 0x4216 },\n  { 4941, 0x5402 }, { 4945, 0xe410 }, { 4950, 0x8092 }, { 4954, 0xb305 },\n  { 4961, 0x5422 }, { 4966, 0x8130 }, { 4970, 0x4263 }, { 4976, 0x180b },\n  /* 0x8000 */\n  { 4981, 0x387b }, { 4990, 0x13f5 }, { 4999, 0x07e5 }, { 5007, 0xa9ea },\n  { 5016, 0x3c4c }, { 5023, 0x0514 }, { 5027, 0x0600 }, { 5029, 0x8002 },\n  { 5031, 0x1ad9 }, { 5039, 0xbd48 }, { 5047, 0xee37 }, { 5058, 0xf496 },\n  { 5067, 0x705f }, { 5076, 0x7ec0 }, { 5084, 0xbfb2 }, { 5095, 0x355f },\n  /* 0x8100 */\n  { 5105, 0xe644 }, { 5112, 0x455f }, { 5121, 0x9000 }, { 5123, 0x4146 },\n  { 5128, 0x1d40 }, { 5133, 0x063b }, { 5140, 0x62a1 }, { 5146, 0xfe13 },\n  { 5156, 0x8505 }, { 5161, 0x3902 }, { 5166, 0x0548 }, { 5170, 0x0c08 },\n  { 5173, 0x144f }, { 5180, 0x0000 }, { 5180, 0x3488 }, { 5185, 0x5818 },\n  /* 0x8200 */\n  { 5190, 0x3077 }, { 5198, 0xd815 }, { 5205, 0xbd0e }, { 5214, 0x4bfb },\n  { 5225, 0x8a90 }, { 5230, 0x8500 }, { 5233, 0xc100 }, { 5236, 0xe61d },\n  { 5245, 0xed14 }, { 5253, 0xb386 }, { 5261, 0xff72 }, { 5273, 0x639b },\n  { 5282, 0xfd92 }, { 5292, 0xd9be }, { 5303, 0x887b }, { 5311, 0x0a92 },\n  /* 0x8300 */\n  { 5316, 0xd3fe }, { 5328, 0x1cb2 }, { 5335, 0xb980 }, { 5341, 0x177a },\n  { 5350, 0x82c9 }, { 5356, 0xdc17 }, { 5365, 0xfffb }, { 5380, 0x3980 },\n  { 5385, 0x4260 }, { 5389, 0x590c }, { 5395, 0x0f01 }, { 5400, 0x37df },\n  { 5412, 0x94a3 }, { 5419, 0xb150 }, { 5425, 0x0623 }, { 5430, 0x2307 },\n  /* 0x8400 */\n  { 5436, 0xf85a }, { 5445, 0x3102 }, { 5449, 0x01f0 }, { 5454, 0x3102 },\n  { 5458, 0x0040 }, { 5459, 0x1e82 }, { 5465, 0x3a0a }, { 5471, 0x056a },\n  { 5477, 0x5b84 }, { 5484, 0x1280 }, { 5487, 0x8002 }, { 5489, 0xa714 },\n  { 5496, 0x2612 }, { 5501, 0xa04b }, { 5507, 0x1069 }, { 5512, 0x9001 },\n  /* 0x8500 */\n  { 5515, 0x1000 }, { 5516, 0x848a }, { 5521, 0x1802 }, { 5524, 0x3f80 },\n  { 5531, 0x0708 }, { 5535, 0x4240 }, { 5538, 0x0110 }, { 5540, 0x4e14 },\n  { 5546, 0x80b0 }, { 5550, 0x1800 }, { 5552, 0xc510 }, { 5557, 0x0281 },\n  { 5560, 0x8202 }, { 5563, 0x1029 }, { 5567, 0x0210 }, { 5569, 0x8800 },\n  /* 0x8600 */\n  { 5571, 0x0020 }, { 5572, 0x0042 }, { 5574, 0x0280 }, { 5576, 0x1100 },\n  { 5578, 0xe000 }, { 5581, 0x4413 }, { 5586, 0x5804 }, { 5590, 0xfe02 },\n  { 5598, 0x3c07 }, { 5605, 0x3028 }, { 5609, 0x9798 }, { 5617, 0x0473 },\n  { 5623, 0xced1 }, { 5632, 0xcb13 }, { 5640, 0x6210 }, { 5644, 0x431f },\n  /* 0x8700 */\n  { 5652, 0x278d }, { 5660, 0x55ac }, { 5668, 0x422e }, { 5674, 0xc892 },\n  { 5680, 0x5380 }, { 5685, 0x0288 }, { 5688, 0x4039 }, { 5693, 0x7851 },\n  { 5700, 0x292c }, { 5706, 0x8088 }, { 5709, 0xb900 }, { 5714, 0x2428 },\n  { 5718, 0x0c41 }, { 5722, 0x080e }, { 5726, 0x4421 }, { 5730, 0x4200 },\n  /* 0x8800 */\n  { 5732, 0x0408 }, { 5734, 0x0868 }, { 5738, 0x0006 }, { 5740, 0x1204 },\n  { 5743, 0x3031 }, { 5748, 0x0290 }, { 5751, 0x5b3e }, { 5761, 0xe085 },\n  { 5767, 0x2936 }, { 5774, 0x1044 }, { 5777, 0x2814 }, { 5781, 0x1082 },\n  { 5784, 0x4266 }, { 5790, 0x8334 }, { 5796, 0x013c }, { 5801, 0x531b },\n  /* 0x8900 */\n  { 5809, 0x0404 }, { 5811, 0x0e0d }, { 5817, 0x0c22 }, { 5821, 0x0051 },\n  { 5824, 0x0012 }, { 5826, 0xc000 }, { 5828, 0x0040 }, { 5829, 0x8800 },\n  { 5831, 0x004a }, { 5834, 0x0000 }, { 5834, 0x0000 }, { 5834, 0x0000 },\n  { 5834, 0xdff6 }, { 5847, 0x5447 }, { 5854, 0x8868 }, { 5859, 0x0008 },\n  /* 0x8a00 */\n  { 5860, 0x0081 }, { 5862, 0x0000 }, { 5862, 0x0000 }, { 5862, 0x4000 },\n  { 5863, 0x0100 }, { 5864, 0x0000 }, { 5864, 0x0000 }, { 5864, 0x0200 },\n  { 5865, 0x0600 }, { 5867, 0x0008 }, { 5868, 0x0000 }, { 5868, 0x0000 },\n  { 5868, 0x0000 }, { 5868, 0x0000 }, { 5868, 0x0000 }, { 5868, 0x0000 },\n  /* 0x8b00 */\n  { 5868, 0x0080 }, { 5869, 0x0000 }, { 5869, 0x0040 }, { 5870, 0x0000 },\n  { 5870, 0x0000 }, { 5870, 0x0000 }, { 5870, 0x1040 }, { 5872, 0x0000 },\n  { 5872, 0x0000 }, { 5872, 0x0000 }, { 5872, 0xefff }, { 5887, 0xf7fd },\n  { 5901, 0xff7f }, { 5916, 0xfffe }, { 5931, 0xfbff }, { 5946, 0xffff },\n  /* 0x8c00 */\n  { 5962, 0xfdff }, { 5977, 0xbfff }, { 5992, 0xffff }, { 6008, 0x00ff },\n  { 6016, 0x12c2 }, { 6021, 0x0420 }, { 6023, 0x0c06 }, { 6027, 0x0708 },\n  { 6031, 0x1624 }, { 6036, 0x0110 }, { 6038, 0x0000 }, { 6038, 0x0000 },\n  { 6038, 0x0000 }, { 6038, 0x0000 }, { 6038, 0x0000 }, { 6038, 0x0000 },\n  /* 0x8d00 */\n  { 6038, 0x0000 }, { 6038, 0xe000 }, { 6041, 0xfffe }, { 6056, 0xffff },\n  { 6072, 0xffff }, { 6088, 0x7f79 }, { 6100, 0x28df }, { 6109, 0x00f9 },\n  { 6115, 0x0c32 }, { 6120, 0x8012 }, { 6123, 0x0008 }, { 6124, 0xd53a },\n  { 6133, 0xd858 }, { 6140, 0xecc2 }, { 6148, 0x9d18 }, { 6155, 0x2fa8 },\n  /* 0x8e00 */\n  { 6163, 0x9620 }, { 6168, 0xe010 }, { 6172, 0xd60c }, { 6179, 0x2622 },\n  { 6184, 0x0f97 }, { 6193, 0x0206 }, { 6196, 0xb240 }, { 6201, 0x9055 },\n  { 6207, 0x80a2 }, { 6211, 0x5011 }, { 6215, 0x9800 }, { 6218, 0x0404 },\n  { 6220, 0x4000 }, { 6221, 0x0000 }, { 6221, 0x0000 }, { 6221, 0x0000 },\n  /* 0x8f00 */\n  { 6221, 0x0000 }, { 6221, 0x0000 }, { 6221, 0x0000 }, { 6221, 0x0000 },\n  { 6221, 0x0000 }, { 6221, 0x0000 }, { 6221, 0xfbc0 }, { 6230, 0xffff },\n  { 6246, 0xeffe }, { 6260, 0xdffb }, { 6274, 0x0b08 }, { 6278, 0x6243 },\n  { 6284, 0x41b6 }, { 6291, 0xfb3b }, { 6303, 0x6f74 }, { 6313, 0x2389 },\n  /* 0x9000 */\n  { 6319, 0xae7f }, { 6331, 0xecd7 }, { 6342, 0xe047 }, { 6349, 0x5960 },\n  { 6355, 0xa096 }, { 6361, 0x098f }, { 6368, 0x612c }, { 6374, 0xa030 },\n  { 6378, 0x090d }, { 6383, 0x2aaa }, { 6390, 0xd44e }, { 6398, 0x4f7b },\n  { 6409, 0xc4b2 }, { 6416, 0x388b }, { 6423, 0xa9c6 }, { 6431, 0x6110 },\n  /* 0x9100 */\n  { 6435, 0x0014 }, { 6437, 0x4200 }, { 6439, 0x800c }, { 6442, 0x0202 },\n  { 6444, 0xfe48 }, { 6453, 0x6485 }, { 6459, 0xd63e }, { 6469, 0xe3f7 },\n  { 6481, 0x3aa0 }, { 6487, 0x0c07 }, { 6492, 0xe40c }, { 6498, 0x0430 },\n  { 6501, 0xf680 }, { 6508, 0x1002 }, { 6510, 0x0000 }, { 6510, 0x0000 },\n  /* 0x9200 */\n  { 6510, 0x0000 }, { 6510, 0x0000 }, { 6510, 0x0000 }, { 6510, 0x0000 },\n  { 6510, 0x0000 }, { 6510, 0x0000 }, { 6510, 0x0000 }, { 6510, 0x0010 },\n  { 6511, 0x4000 }, { 6512, 0x0000 }, { 6512, 0x4000 }, { 6513, 0x0000 },\n  { 6513, 0x0100 }, { 6514, 0x0000 }, { 6514, 0x0000 }, { 6514, 0x0000 },\n  /* 0x9300 */\n  { 6514, 0x0000 }, { 6514, 0x0000 }, { 6514, 0x0000 }, { 6514, 0x4000 },\n  { 6515, 0x0000 }, { 6515, 0x0000 }, { 6515, 0x0400 }, { 6516, 0x0000 },\n  { 6516, 0x8000 }, { 6517, 0x0000 }, { 6517, 0x0000 }, { 6517, 0x0000 },\n  { 6517, 0x0400 }, { 6518, 0x0040 }, { 6519, 0x0000 }, { 6519, 0x0000 },\n  /* 0x9400 */\n  { 6519, 0x0000 }, { 6519, 0x0000 }, { 6519, 0x0000 }, { 6519, 0x4000 },\n  { 6520, 0x0000 }, { 6520, 0x0000 }, { 6520, 0x0800 }, { 6521, 0x0000 },\n  { 6521, 0xffe0 }, { 6532, 0xfebd }, { 6545, 0xffff }, { 6561, 0xffff },\n  { 6577, 0x7f7f }, { 6591, 0xfbe7 }, { 6604, 0xffbf }, { 6619, 0xf7ff },\n  /* 0x9500 */\n  { 6634, 0xffff }, { 6650, 0xefff }, { 6665, 0xff7e }, { 6679, 0xdff7 },\n  { 6693, 0xf6f7 }, { 6706, 0xfbdf }, { 6720, 0xbffe }, { 6734, 0x804f },\n  { 6740, 0x0000 }, { 6740, 0x0000 }, { 6740, 0x0000 }, { 6740, 0x0000 },\n  { 6740, 0x0000 }, { 6740, 0x0000 }, { 6740, 0xef00 }, { 6747, 0x7fff },\n  /* 0x9600 */\n  { 6762, 0xff7f }, { 6777, 0xb6f7 }, { 6789, 0x4406 }, { 6793, 0xb87e },\n  { 6803, 0x3bf5 }, { 6814, 0x8831 }, { 6819, 0x1796 }, { 6827, 0x00f4 },\n  { 6832, 0xa960 }, { 6838, 0x1391 }, { 6844, 0x0080 }, { 6845, 0x7249 },\n  { 6852, 0xf2f3 }, { 6863, 0x0024 }, { 6865, 0x8701 }, { 6870, 0x42c8 },\n  /* 0x9700 */\n  { 6875, 0xe3d3 }, { 6885, 0x5048 }, { 6889, 0x2400 }, { 6891, 0x4305 },\n  { 6896, 0x0000 }, { 6896, 0x4a4c }, { 6902, 0x0227 }, { 6907, 0x1058 },\n  { 6911, 0x2820 }, { 6914, 0x0116 }, { 6918, 0xa809 }, { 6923, 0x0014 },\n  { 6925, 0x0000 }, { 6925, 0x0000 }, { 6925, 0x3ec0 }, { 6932, 0x0068 },\n  /* 0x9800 */\n  { 6935, 0x0000 }, { 6935, 0x0000 }, { 6935, 0x0000 }, { 6935, 0x0000 },\n  { 6935, 0x0000 }, { 6935, 0x0000 }, { 6935, 0x0000 }, { 6935, 0xffe0 },\n  { 6946, 0xb7ff }, { 6960, 0xfddb }, { 6973, 0x00f7 }, { 6980, 0x0000 },\n  { 6980, 0x4000 }, { 6981, 0xc72e }, { 6990, 0x0180 }, { 6992, 0x0000 },\n  /* 0x9900 */\n  { 6992, 0x2000 }, { 6993, 0x0001 }, { 6994, 0x4000 }, { 6995, 0x0000 },\n  { 6995, 0x0000 }, { 6995, 0x0030 }, { 6997, 0xffa8 }, { 7008, 0xb4f7 },\n  { 7019, 0xadf3 }, { 7030, 0x03ff }, { 7040, 0x0120 }, { 7042, 0x0000 },\n  { 7042, 0x0000 }, { 7042, 0x0000 }, { 7042, 0x0000 }, { 7042, 0x0000 },\n  /* 0x9a00 */\n  { 7042, 0x0000 }, { 7042, 0x0000 }, { 7042, 0x0000 }, { 7042, 0x0000 },\n  { 7042, 0x0000 }, { 7042, 0x0000 }, { 7042, 0xf000 }, { 7046, 0xfffb },\n  { 7061, 0x9df7 }, { 7073, 0xfdcf }, { 7086, 0x01bf }, { 7094, 0x15c3 },\n  { 7101, 0x1827 }, { 7107, 0x810a }, { 7111, 0xa842 }, { 7116, 0x0a00 },\n  /* 0x9b00 */\n  { 7118, 0x8108 }, { 7121, 0x8008 }, { 7123, 0x8008 }, { 7125, 0x1804 },\n  { 7128, 0xa3be }, { 7138, 0x0012 }, { 7140, 0x0000 }, { 7140, 0x0000 },\n  { 7140, 0x0000 }, { 7140, 0x0000 }, { 7140, 0x0000 }, { 7140, 0x0000 },\n  { 7140, 0x0000 }, { 7140, 0x0000 }, { 7140, 0x0000 }, { 7140, 0x0000 },\n  /* 0x9c00 */\n  { 7140, 0x0000 }, { 7140, 0x0000 }, { 7140, 0x0000 }, { 7140, 0x0000 },\n  { 7140, 0x0000 }, { 7140, 0x0000 }, { 7140, 0x0000 }, { 7140, 0x9000 },\n  { 7142, 0x69e6 }, { 7151, 0xdc37 }, { 7161, 0x6bff }, { 7174, 0x3dff },\n  { 7187, 0xfcf8 }, { 7198, 0xf3f9 }, { 7210, 0x0004 },\n};\nstatic const Summary16 gb2312_uni2indx_page9e[27] = {\n  /* 0x9e00 */\n  { 7211, 0x0000 }, { 7211, 0x8000 }, { 7212, 0xbf6f }, { 7225, 0xe7ee },\n  { 7237, 0xdffe }, { 7251, 0x5da2 }, { 7259, 0x3fd8 }, { 7269, 0xc00b },\n  { 7274, 0x0984 }, { 7278, 0xa00c }, { 7282, 0x0040 }, { 7283, 0x6910 },\n  { 7288, 0xe210 }, { 7293, 0xb912 }, { 7300, 0x86a5 }, { 7307, 0x5a00 },\n  /* 0x9f00 */\n  { 7311, 0x6800 }, { 7314, 0x0289 }, { 7318, 0x9005 }, { 7322, 0x6a80 },\n  { 7327, 0x0010 }, { 7328, 0x0003 }, { 7330, 0x0000 }, { 7330, 0x8000 },\n  { 7331, 0x1ff9 }, { 7342, 0x8e00 }, { 7346, 0x0001 },\n};\nstatic const Summary16 gb2312_uni2indx_pageff[15] = {\n  /* 0xff00 */\n  { 7347, 0xfffe }, { 7362, 0xffff }, { 7378, 0xffff }, { 7394, 0xffff },\n  { 7410, 0xffff }, { 7426, 0x7fff }, { 7441, 0x0000 }, { 7441, 0x0000 },\n  { 7441, 0x0000 }, { 7441, 0x0000 }, { 7441, 0x0000 }, { 7441, 0x0000 },\n  { 7441, 0x0000 }, { 7441, 0x0000 }, { 7441, 0x002b },\n};\n\nstatic int\ngb2312_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x0000 && wc < 0x0460)\n      summary = &gb2312_uni2indx_page00[(wc>>4)];\n    else if (wc >= 0x2000 && wc < 0x2650)\n      summary = &gb2312_uni2indx_page20[(wc>>4)-0x200];\n    else if (wc >= 0x3000 && wc < 0x3230)\n      summary = &gb2312_uni2indx_page30[(wc>>4)-0x300];\n    else if (wc >= 0x4e00 && wc < 0x9cf0)\n      summary = &gb2312_uni2indx_page4e[(wc>>4)-0x4e0];\n    else if (wc >= 0x9e00 && wc < 0x9fb0)\n      summary = &gb2312_uni2indx_page9e[(wc>>4)-0x9e0];\n    else if (wc >= 0xff00 && wc < 0xfff0)\n      summary = &gb2312_uni2indx_pageff[(wc>>4)-0xff0];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = gb2312_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/gbk.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2005, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GBK\n */\n\n/*\n * GBK, as described in Ken Lunde's book, is an extension of GB 2312-1980\n * (shifted by adding 0x8080 to the range 0xA1A1..0xFEFE, as used in EUC-CN).\n * It adds the following ranges:\n *\n * (part of GBK/1)  0xA2A1-0xA2AA  Small Roman numerals\n * GBK/3   0x{81-A0}{40-7E,80-FE}  6080 new characters, all in Unicode\n * GBK/4   0x{AA-FE}{40-7E,80-A0}  8160 new characters, 8080 in Unicode\n * GBK/5   0x{A8-A9}{40-7E,80-A0}  166 new characters, 153 in Unicode\n *\n * Furthermore, all four tables I have looked at\n *   - the CP936 table by Microsoft, found on ftp.unicode.org in 1999,\n *   - the GBK table by Sun, investigated on a Solaris 2.7 machine,\n *   - the GBK tables by CWEX, found in the Big5+ package,\n *   - the GB18030 standard (second printing),\n * agree in the following extensions. (Ken Lunde must have overlooked these\n * differences between GB2312 and GBK. Also, the CWEX tables have additional\n * differences.)\n *\n * 1. Some characters in the GB2312 range are defined differently:\n *\n *     code    GB2312                         GBK\n *    0xA1A4   0x30FB # KATAKANA MIDDLE DOT   0x00B7 # MIDDLE DOT\n *    0xA1AA   0x2015 # HORIZONTAL BAR        0x2014 # EM DASH\n *\n * 2. 19 characters added in the range 0xA6E0-0xA6F5.\n *\n * 3. 4 characters added in the range 0xA8BB-0xA8C0.\n *\n * CP936 as of 1999 was identical to GBK. However, since 1999, Microsoft has\n * added new mappings to CP936...\n */\n\n#include \"gbkext1.h\"\n#include \"gbkext2.h\"\n#include \"gbkext_inv.h\"\n#include \"cp936ext.h\"\n\nstatic int\ngbk_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n\n  if (c >= 0x81 && c < 0xff) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    if (c >= 0xa1 && c <= 0xf7) {\n      unsigned char c2 = s[1];\n      if (c == 0xa1) {\n        if (c2 == 0xa4) {\n          *pwc = 0x00b7;\n          return 2;\n        }\n        if (c2 == 0xaa) {\n          *pwc = 0x2014;\n          return 2;\n        }\n      }\n      if (c2 >= 0xa1 && c2 < 0xff) {\n        unsigned char buf[2];\n        int ret;\n        buf[0] = c-0x80; buf[1] = c2-0x80;\n        ret = gb2312_mbtowc(conv,pwc,buf,2);\n        if (ret != RET_ILSEQ)\n          return ret;\n        buf[0] = c; buf[1] = c2;\n        ret = cp936ext_mbtowc(conv,pwc,buf,2);\n        if (ret != RET_ILSEQ)\n          return ret;\n      }\n    }\n    if (c >= 0x81 && c <= 0xa0)\n      return gbkext1_mbtowc(conv,pwc,s,2);\n    if (c >= 0xa8 && c <= 0xfe)\n      return gbkext2_mbtowc(conv,pwc,s,2);\n    if (c == 0xa2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0xa1 && c2 <= 0xaa) {\n        *pwc = 0x2170+(c2-0xa1);\n        return 2;\n      }\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\ngbk_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  if (wc != 0x30fb && wc != 0x2015) {\n    ret = gb2312_wctomb(conv,buf,wc,2);\n    if (ret != RET_ILUNI) {\n      if (ret != 2) abort();\n      if (n < 2)\n        return RET_TOOSMALL;\n      r[0] = buf[0]+0x80;\n      r[1] = buf[1]+0x80;\n      return 2;\n    }\n  }\n  ret = gbkext_inv_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0];\n    r[1] = buf[1];\n    return 2;\n  }\n  if (wc >= 0x2170 && wc <= 0x2179) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0xa2;\n    r[1] = 0xa1 + (wc-0x2170);\n    return 2;\n  }\n  ret = cp936ext_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0];\n    r[1] = buf[1];\n    return 2;\n  }\n  if (wc == 0x00b7) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0xa1;\n    r[1] = 0xa4;\n    return 2;\n  }\n  if (wc == 0x2014) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = 0xa1;\n    r[1] = 0xaa;\n    return 2;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/gbkext1.h",
    "content": "/*\n * Copyright (C) 1999-2000, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GBK/3 extensions\n */\n\nstatic const unsigned short gbkext1_2uni_page81[6080] = {\n  /* 0x81 */\n  0x4e02, 0x4e04, 0x4e05, 0x4e06, 0x4e0f, 0x4e12, 0x4e17, 0x4e1f,\n  0x4e20, 0x4e21, 0x4e23, 0x4e26, 0x4e29, 0x4e2e, 0x4e2f, 0x4e31,\n  0x4e33, 0x4e35, 0x4e37, 0x4e3c, 0x4e40, 0x4e41, 0x4e42, 0x4e44,\n  0x4e46, 0x4e4a, 0x4e51, 0x4e55, 0x4e57, 0x4e5a, 0x4e5b, 0x4e62,\n  0x4e63, 0x4e64, 0x4e65, 0x4e67, 0x4e68, 0x4e6a, 0x4e6b, 0x4e6c,\n  0x4e6d, 0x4e6e, 0x4e6f, 0x4e72, 0x4e74, 0x4e75, 0x4e76, 0x4e77,\n  0x4e78, 0x4e79, 0x4e7a, 0x4e7b, 0x4e7c, 0x4e7d, 0x4e7f, 0x4e80,\n  0x4e81, 0x4e82, 0x4e83, 0x4e84, 0x4e85, 0x4e87, 0x4e8a, 0x4e90,\n  0x4e96, 0x4e97, 0x4e99, 0x4e9c, 0x4e9d, 0x4e9e, 0x4ea3, 0x4eaa,\n  0x4eaf, 0x4eb0, 0x4eb1, 0x4eb4, 0x4eb6, 0x4eb7, 0x4eb8, 0x4eb9,\n  0x4ebc, 0x4ebd, 0x4ebe, 0x4ec8, 0x4ecc, 0x4ecf, 0x4ed0, 0x4ed2,\n  0x4eda, 0x4edb, 0x4edc, 0x4ee0, 0x4ee2, 0x4ee6, 0x4ee7, 0x4ee9,\n  0x4eed, 0x4eee, 0x4eef, 0x4ef1, 0x4ef4, 0x4ef8, 0x4ef9, 0x4efa,\n  0x4efc, 0x4efe, 0x4f00, 0x4f02, 0x4f03, 0x4f04, 0x4f05, 0x4f06,\n  0x4f07, 0x4f08, 0x4f0b, 0x4f0c, 0x4f12, 0x4f13, 0x4f14, 0x4f15,\n  0x4f16, 0x4f1c, 0x4f1d, 0x4f21, 0x4f23, 0x4f28, 0x4f29, 0x4f2c,\n  0x4f2d, 0x4f2e, 0x4f31, 0x4f33, 0x4f35, 0x4f37, 0x4f39, 0x4f3b,\n  0x4f3e, 0x4f3f, 0x4f40, 0x4f41, 0x4f42, 0x4f44, 0x4f45, 0x4f47,\n  0x4f48, 0x4f49, 0x4f4a, 0x4f4b, 0x4f4c, 0x4f52, 0x4f54, 0x4f56,\n  0x4f61, 0x4f62, 0x4f66, 0x4f68, 0x4f6a, 0x4f6b, 0x4f6d, 0x4f6e,\n  0x4f71, 0x4f72, 0x4f75, 0x4f77, 0x4f78, 0x4f79, 0x4f7a, 0x4f7d,\n  0x4f80, 0x4f81, 0x4f82, 0x4f85, 0x4f86, 0x4f87, 0x4f8a, 0x4f8c,\n  0x4f8e, 0x4f90, 0x4f92, 0x4f93, 0x4f95, 0x4f96, 0x4f98, 0x4f99,\n  0x4f9a, 0x4f9c, 0x4f9e, 0x4f9f, 0x4fa1, 0x4fa2,\n  /* 0x82 */\n  0x4fa4, 0x4fab, 0x4fad, 0x4fb0, 0x4fb1, 0x4fb2, 0x4fb3, 0x4fb4,\n  0x4fb6, 0x4fb7, 0x4fb8, 0x4fb9, 0x4fba, 0x4fbb, 0x4fbc, 0x4fbd,\n  0x4fbe, 0x4fc0, 0x4fc1, 0x4fc2, 0x4fc6, 0x4fc7, 0x4fc8, 0x4fc9,\n  0x4fcb, 0x4fcc, 0x4fcd, 0x4fd2, 0x4fd3, 0x4fd4, 0x4fd5, 0x4fd6,\n  0x4fd9, 0x4fdb, 0x4fe0, 0x4fe2, 0x4fe4, 0x4fe5, 0x4fe7, 0x4feb,\n  0x4fec, 0x4ff0, 0x4ff2, 0x4ff4, 0x4ff5, 0x4ff6, 0x4ff7, 0x4ff9,\n  0x4ffb, 0x4ffc, 0x4ffd, 0x4fff, 0x5000, 0x5001, 0x5002, 0x5003,\n  0x5004, 0x5005, 0x5006, 0x5007, 0x5008, 0x5009, 0x500a, 0x500b,\n  0x500e, 0x5010, 0x5011, 0x5013, 0x5015, 0x5016, 0x5017, 0x501b,\n  0x501d, 0x501e, 0x5020, 0x5022, 0x5023, 0x5024, 0x5027, 0x502b,\n  0x502f, 0x5030, 0x5031, 0x5032, 0x5033, 0x5034, 0x5035, 0x5036,\n  0x5037, 0x5038, 0x5039, 0x503b, 0x503d, 0x503f, 0x5040, 0x5041,\n  0x5042, 0x5044, 0x5045, 0x5046, 0x5049, 0x504a, 0x504b, 0x504d,\n  0x5050, 0x5051, 0x5052, 0x5053, 0x5054, 0x5056, 0x5057, 0x5058,\n  0x5059, 0x505b, 0x505d, 0x505e, 0x505f, 0x5060, 0x5061, 0x5062,\n  0x5063, 0x5064, 0x5066, 0x5067, 0x5068, 0x5069, 0x506a, 0x506b,\n  0x506d, 0x506e, 0x506f, 0x5070, 0x5071, 0x5072, 0x5073, 0x5074,\n  0x5075, 0x5078, 0x5079, 0x507a, 0x507c, 0x507d, 0x5081, 0x5082,\n  0x5083, 0x5084, 0x5086, 0x5087, 0x5089, 0x508a, 0x508b, 0x508c,\n  0x508e, 0x508f, 0x5090, 0x5091, 0x5092, 0x5093, 0x5094, 0x5095,\n  0x5096, 0x5097, 0x5098, 0x5099, 0x509a, 0x509b, 0x509c, 0x509d,\n  0x509e, 0x509f, 0x50a0, 0x50a1, 0x50a2, 0x50a4, 0x50a6, 0x50aa,\n  0x50ab, 0x50ad, 0x50ae, 0x50af, 0x50b0, 0x50b1, 0x50b3, 0x50b4,\n  0x50b5, 0x50b6, 0x50b7, 0x50b8, 0x50b9, 0x50bc,\n  /* 0x83 */\n  0x50bd, 0x50be, 0x50bf, 0x50c0, 0x50c1, 0x50c2, 0x50c3, 0x50c4,\n  0x50c5, 0x50c6, 0x50c7, 0x50c8, 0x50c9, 0x50ca, 0x50cb, 0x50cc,\n  0x50cd, 0x50ce, 0x50d0, 0x50d1, 0x50d2, 0x50d3, 0x50d4, 0x50d5,\n  0x50d7, 0x50d8, 0x50d9, 0x50db, 0x50dc, 0x50dd, 0x50de, 0x50df,\n  0x50e0, 0x50e1, 0x50e2, 0x50e3, 0x50e4, 0x50e5, 0x50e8, 0x50e9,\n  0x50ea, 0x50eb, 0x50ef, 0x50f0, 0x50f1, 0x50f2, 0x50f4, 0x50f6,\n  0x50f7, 0x50f8, 0x50f9, 0x50fa, 0x50fc, 0x50fd, 0x50fe, 0x50ff,\n  0x5100, 0x5101, 0x5102, 0x5103, 0x5104, 0x5105, 0x5108, 0x5109,\n  0x510a, 0x510c, 0x510d, 0x510e, 0x510f, 0x5110, 0x5111, 0x5113,\n  0x5114, 0x5115, 0x5116, 0x5117, 0x5118, 0x5119, 0x511a, 0x511b,\n  0x511c, 0x511d, 0x511e, 0x511f, 0x5120, 0x5122, 0x5123, 0x5124,\n  0x5125, 0x5126, 0x5127, 0x5128, 0x5129, 0x512a, 0x512b, 0x512c,\n  0x512d, 0x512e, 0x512f, 0x5130, 0x5131, 0x5132, 0x5133, 0x5134,\n  0x5135, 0x5136, 0x5137, 0x5138, 0x5139, 0x513a, 0x513b, 0x513c,\n  0x513d, 0x513e, 0x5142, 0x5147, 0x514a, 0x514c, 0x514e, 0x514f,\n  0x5150, 0x5152, 0x5153, 0x5157, 0x5158, 0x5159, 0x515b, 0x515d,\n  0x515e, 0x515f, 0x5160, 0x5161, 0x5163, 0x5164, 0x5166, 0x5167,\n  0x5169, 0x516a, 0x516f, 0x5172, 0x517a, 0x517e, 0x517f, 0x5183,\n  0x5184, 0x5186, 0x5187, 0x518a, 0x518b, 0x518e, 0x518f, 0x5190,\n  0x5191, 0x5193, 0x5194, 0x5198, 0x519a, 0x519d, 0x519e, 0x519f,\n  0x51a1, 0x51a3, 0x51a6, 0x51a7, 0x51a8, 0x51a9, 0x51aa, 0x51ad,\n  0x51ae, 0x51b4, 0x51b8, 0x51b9, 0x51ba, 0x51be, 0x51bf, 0x51c1,\n  0x51c2, 0x51c3, 0x51c5, 0x51c8, 0x51ca, 0x51cd, 0x51ce, 0x51d0,\n  0x51d2, 0x51d3, 0x51d4, 0x51d5, 0x51d6, 0x51d7,\n  /* 0x84 */\n  0x51d8, 0x51d9, 0x51da, 0x51dc, 0x51de, 0x51df, 0x51e2, 0x51e3,\n  0x51e5, 0x51e6, 0x51e7, 0x51e8, 0x51e9, 0x51ea, 0x51ec, 0x51ee,\n  0x51f1, 0x51f2, 0x51f4, 0x51f7, 0x51fe, 0x5204, 0x5205, 0x5209,\n  0x520b, 0x520c, 0x520f, 0x5210, 0x5213, 0x5214, 0x5215, 0x521c,\n  0x521e, 0x521f, 0x5221, 0x5222, 0x5223, 0x5225, 0x5226, 0x5227,\n  0x522a, 0x522c, 0x522f, 0x5231, 0x5232, 0x5234, 0x5235, 0x523c,\n  0x523e, 0x5244, 0x5245, 0x5246, 0x5247, 0x5248, 0x5249, 0x524b,\n  0x524e, 0x524f, 0x5252, 0x5253, 0x5255, 0x5257, 0x5258, 0x5259,\n  0x525a, 0x525b, 0x525d, 0x525f, 0x5260, 0x5262, 0x5263, 0x5264,\n  0x5266, 0x5268, 0x526b, 0x526c, 0x526d, 0x526e, 0x5270, 0x5271,\n  0x5273, 0x5274, 0x5275, 0x5276, 0x5277, 0x5278, 0x5279, 0x527a,\n  0x527b, 0x527c, 0x527e, 0x5280, 0x5283, 0x5284, 0x5285, 0x5286,\n  0x5287, 0x5289, 0x528a, 0x528b, 0x528c, 0x528d, 0x528e, 0x528f,\n  0x5291, 0x5292, 0x5294, 0x5295, 0x5296, 0x5297, 0x5298, 0x5299,\n  0x529a, 0x529c, 0x52a4, 0x52a5, 0x52a6, 0x52a7, 0x52ae, 0x52af,\n  0x52b0, 0x52b4, 0x52b5, 0x52b6, 0x52b7, 0x52b8, 0x52b9, 0x52ba,\n  0x52bb, 0x52bc, 0x52bd, 0x52c0, 0x52c1, 0x52c2, 0x52c4, 0x52c5,\n  0x52c6, 0x52c8, 0x52ca, 0x52cc, 0x52cd, 0x52ce, 0x52cf, 0x52d1,\n  0x52d3, 0x52d4, 0x52d5, 0x52d7, 0x52d9, 0x52da, 0x52db, 0x52dc,\n  0x52dd, 0x52de, 0x52e0, 0x52e1, 0x52e2, 0x52e3, 0x52e5, 0x52e6,\n  0x52e7, 0x52e8, 0x52e9, 0x52ea, 0x52eb, 0x52ec, 0x52ed, 0x52ee,\n  0x52ef, 0x52f1, 0x52f2, 0x52f3, 0x52f4, 0x52f5, 0x52f6, 0x52f7,\n  0x52f8, 0x52fb, 0x52fc, 0x52fd, 0x5301, 0x5302, 0x5303, 0x5304,\n  0x5307, 0x5309, 0x530a, 0x530b, 0x530c, 0x530e,\n  /* 0x85 */\n  0x5311, 0x5312, 0x5313, 0x5314, 0x5318, 0x531b, 0x531c, 0x531e,\n  0x531f, 0x5322, 0x5324, 0x5325, 0x5327, 0x5328, 0x5329, 0x532b,\n  0x532c, 0x532d, 0x532f, 0x5330, 0x5331, 0x5332, 0x5333, 0x5334,\n  0x5335, 0x5336, 0x5337, 0x5338, 0x533c, 0x533d, 0x5340, 0x5342,\n  0x5344, 0x5346, 0x534b, 0x534c, 0x534d, 0x5350, 0x5354, 0x5358,\n  0x5359, 0x535b, 0x535d, 0x5365, 0x5368, 0x536a, 0x536c, 0x536d,\n  0x5372, 0x5376, 0x5379, 0x537b, 0x537c, 0x537d, 0x537e, 0x5380,\n  0x5381, 0x5383, 0x5387, 0x5388, 0x538a, 0x538e, 0x538f, 0x5390,\n  0x5391, 0x5392, 0x5393, 0x5394, 0x5396, 0x5397, 0x5399, 0x539b,\n  0x539c, 0x539e, 0x53a0, 0x53a1, 0x53a4, 0x53a7, 0x53aa, 0x53ab,\n  0x53ac, 0x53ad, 0x53af, 0x53b0, 0x53b1, 0x53b2, 0x53b3, 0x53b4,\n  0x53b5, 0x53b7, 0x53b8, 0x53b9, 0x53ba, 0x53bc, 0x53bd, 0x53be,\n  0x53c0, 0x53c3, 0x53c4, 0x53c5, 0x53c6, 0x53c7, 0x53ce, 0x53cf,\n  0x53d0, 0x53d2, 0x53d3, 0x53d5, 0x53da, 0x53dc, 0x53dd, 0x53de,\n  0x53e1, 0x53e2, 0x53e7, 0x53f4, 0x53fa, 0x53fe, 0x53ff, 0x5400,\n  0x5402, 0x5405, 0x5407, 0x540b, 0x5414, 0x5418, 0x5419, 0x541a,\n  0x541c, 0x5422, 0x5424, 0x5425, 0x542a, 0x5430, 0x5433, 0x5436,\n  0x5437, 0x543a, 0x543d, 0x543f, 0x5441, 0x5442, 0x5444, 0x5445,\n  0x5447, 0x5449, 0x544c, 0x544d, 0x544e, 0x544f, 0x5451, 0x545a,\n  0x545d, 0x545e, 0x545f, 0x5460, 0x5461, 0x5463, 0x5465, 0x5467,\n  0x5469, 0x546a, 0x546b, 0x546c, 0x546d, 0x546e, 0x546f, 0x5470,\n  0x5474, 0x5479, 0x547a, 0x547e, 0x547f, 0x5481, 0x5483, 0x5485,\n  0x5487, 0x5488, 0x5489, 0x548a, 0x548d, 0x5491, 0x5493, 0x5497,\n  0x5498, 0x549c, 0x549e, 0x549f, 0x54a0, 0x54a1,\n  /* 0x86 */\n  0x54a2, 0x54a5, 0x54ae, 0x54b0, 0x54b2, 0x54b5, 0x54b6, 0x54b7,\n  0x54b9, 0x54ba, 0x54bc, 0x54be, 0x54c3, 0x54c5, 0x54ca, 0x54cb,\n  0x54d6, 0x54d8, 0x54db, 0x54e0, 0x54e1, 0x54e2, 0x54e3, 0x54e4,\n  0x54eb, 0x54ec, 0x54ef, 0x54f0, 0x54f1, 0x54f4, 0x54f5, 0x54f6,\n  0x54f7, 0x54f8, 0x54f9, 0x54fb, 0x54fe, 0x5500, 0x5502, 0x5503,\n  0x5504, 0x5505, 0x5508, 0x550a, 0x550b, 0x550c, 0x550d, 0x550e,\n  0x5512, 0x5513, 0x5515, 0x5516, 0x5517, 0x5518, 0x5519, 0x551a,\n  0x551c, 0x551d, 0x551e, 0x551f, 0x5521, 0x5525, 0x5526, 0x5528,\n  0x5529, 0x552b, 0x552d, 0x5532, 0x5534, 0x5535, 0x5536, 0x5538,\n  0x5539, 0x553a, 0x553b, 0x553d, 0x5540, 0x5542, 0x5545, 0x5547,\n  0x5548, 0x554b, 0x554c, 0x554d, 0x554e, 0x554f, 0x5551, 0x5552,\n  0x5553, 0x5554, 0x5557, 0x5558, 0x5559, 0x555a, 0x555b, 0x555d,\n  0x555e, 0x555f, 0x5560, 0x5562, 0x5563, 0x5568, 0x5569, 0x556b,\n  0x556f, 0x5570, 0x5571, 0x5572, 0x5573, 0x5574, 0x5579, 0x557a,\n  0x557d, 0x557f, 0x5585, 0x5586, 0x558c, 0x558d, 0x558e, 0x5590,\n  0x5592, 0x5593, 0x5595, 0x5596, 0x5597, 0x559a, 0x559b, 0x559e,\n  0x55a0, 0x55a1, 0x55a2, 0x55a3, 0x55a4, 0x55a5, 0x55a6, 0x55a8,\n  0x55a9, 0x55aa, 0x55ab, 0x55ac, 0x55ad, 0x55ae, 0x55af, 0x55b0,\n  0x55b2, 0x55b4, 0x55b6, 0x55b8, 0x55ba, 0x55bc, 0x55bf, 0x55c0,\n  0x55c1, 0x55c2, 0x55c3, 0x55c6, 0x55c7, 0x55c8, 0x55ca, 0x55cb,\n  0x55ce, 0x55cf, 0x55d0, 0x55d5, 0x55d7, 0x55d8, 0x55d9, 0x55da,\n  0x55db, 0x55de, 0x55e0, 0x55e2, 0x55e7, 0x55e9, 0x55ed, 0x55ee,\n  0x55f0, 0x55f1, 0x55f4, 0x55f6, 0x55f8, 0x55f9, 0x55fa, 0x55fb,\n  0x55fc, 0x55ff, 0x5602, 0x5603, 0x5604, 0x5605,\n  /* 0x87 */\n  0x5606, 0x5607, 0x560a, 0x560b, 0x560d, 0x5610, 0x5611, 0x5612,\n  0x5613, 0x5614, 0x5615, 0x5616, 0x5617, 0x5619, 0x561a, 0x561c,\n  0x561d, 0x5620, 0x5621, 0x5622, 0x5625, 0x5626, 0x5628, 0x5629,\n  0x562a, 0x562b, 0x562e, 0x562f, 0x5630, 0x5633, 0x5635, 0x5637,\n  0x5638, 0x563a, 0x563c, 0x563d, 0x563e, 0x5640, 0x5641, 0x5642,\n  0x5643, 0x5644, 0x5645, 0x5646, 0x5647, 0x5648, 0x5649, 0x564a,\n  0x564b, 0x564f, 0x5650, 0x5651, 0x5652, 0x5653, 0x5655, 0x5656,\n  0x565a, 0x565b, 0x565d, 0x565e, 0x565f, 0x5660, 0x5661, 0x5663,\n  0x5665, 0x5666, 0x5667, 0x566d, 0x566e, 0x566f, 0x5670, 0x5672,\n  0x5673, 0x5674, 0x5675, 0x5677, 0x5678, 0x5679, 0x567a, 0x567d,\n  0x567e, 0x567f, 0x5680, 0x5681, 0x5682, 0x5683, 0x5684, 0x5687,\n  0x5688, 0x5689, 0x568a, 0x568b, 0x568c, 0x568d, 0x5690, 0x5691,\n  0x5692, 0x5694, 0x5695, 0x5696, 0x5697, 0x5698, 0x5699, 0x569a,\n  0x569b, 0x569c, 0x569d, 0x569e, 0x569f, 0x56a0, 0x56a1, 0x56a2,\n  0x56a4, 0x56a5, 0x56a6, 0x56a7, 0x56a8, 0x56a9, 0x56aa, 0x56ab,\n  0x56ac, 0x56ad, 0x56ae, 0x56b0, 0x56b1, 0x56b2, 0x56b3, 0x56b4,\n  0x56b5, 0x56b6, 0x56b8, 0x56b9, 0x56ba, 0x56bb, 0x56bd, 0x56be,\n  0x56bf, 0x56c0, 0x56c1, 0x56c2, 0x56c3, 0x56c4, 0x56c5, 0x56c6,\n  0x56c7, 0x56c8, 0x56c9, 0x56cb, 0x56cc, 0x56cd, 0x56ce, 0x56cf,\n  0x56d0, 0x56d1, 0x56d2, 0x56d3, 0x56d5, 0x56d6, 0x56d8, 0x56d9,\n  0x56dc, 0x56e3, 0x56e5, 0x56e6, 0x56e7, 0x56e8, 0x56e9, 0x56ea,\n  0x56ec, 0x56ee, 0x56ef, 0x56f2, 0x56f3, 0x56f6, 0x56f7, 0x56f8,\n  0x56fb, 0x56fc, 0x5700, 0x5701, 0x5702, 0x5705, 0x5707, 0x570b,\n  0x570c, 0x570d, 0x570e, 0x570f, 0x5710, 0x5711,\n  /* 0x88 */\n  0x5712, 0x5713, 0x5714, 0x5715, 0x5716, 0x5717, 0x5718, 0x5719,\n  0x571a, 0x571b, 0x571d, 0x571e, 0x5720, 0x5721, 0x5722, 0x5724,\n  0x5725, 0x5726, 0x5727, 0x572b, 0x5731, 0x5732, 0x5734, 0x5735,\n  0x5736, 0x5737, 0x5738, 0x573c, 0x573d, 0x573f, 0x5741, 0x5743,\n  0x5744, 0x5745, 0x5746, 0x5748, 0x5749, 0x574b, 0x5752, 0x5753,\n  0x5754, 0x5755, 0x5756, 0x5758, 0x5759, 0x5762, 0x5763, 0x5765,\n  0x5767, 0x576c, 0x576e, 0x5770, 0x5771, 0x5772, 0x5774, 0x5775,\n  0x5778, 0x5779, 0x577a, 0x577d, 0x577e, 0x577f, 0x5780, 0x5781,\n  0x5787, 0x5788, 0x5789, 0x578a, 0x578d, 0x578e, 0x578f, 0x5790,\n  0x5791, 0x5794, 0x5795, 0x5796, 0x5797, 0x5798, 0x5799, 0x579a,\n  0x579c, 0x579d, 0x579e, 0x579f, 0x57a5, 0x57a8, 0x57aa, 0x57ac,\n  0x57af, 0x57b0, 0x57b1, 0x57b3, 0x57b5, 0x57b6, 0x57b7, 0x57b9,\n  0x57ba, 0x57bb, 0x57bc, 0x57bd, 0x57be, 0x57bf, 0x57c0, 0x57c1,\n  0x57c4, 0x57c5, 0x57c6, 0x57c7, 0x57c8, 0x57c9, 0x57ca, 0x57cc,\n  0x57cd, 0x57d0, 0x57d1, 0x57d3, 0x57d6, 0x57d7, 0x57db, 0x57dc,\n  0x57de, 0x57e1, 0x57e2, 0x57e3, 0x57e5, 0x57e6, 0x57e7, 0x57e8,\n  0x57e9, 0x57ea, 0x57eb, 0x57ec, 0x57ee, 0x57f0, 0x57f1, 0x57f2,\n  0x57f3, 0x57f5, 0x57f6, 0x57f7, 0x57fb, 0x57fc, 0x57fe, 0x57ff,\n  0x5801, 0x5803, 0x5804, 0x5805, 0x5808, 0x5809, 0x580a, 0x580c,\n  0x580e, 0x580f, 0x5810, 0x5812, 0x5813, 0x5814, 0x5816, 0x5817,\n  0x5818, 0x581a, 0x581b, 0x581c, 0x581d, 0x581f, 0x5822, 0x5823,\n  0x5825, 0x5826, 0x5827, 0x5828, 0x5829, 0x582b, 0x582c, 0x582d,\n  0x582e, 0x582f, 0x5831, 0x5832, 0x5833, 0x5834, 0x5836, 0x5837,\n  0x5838, 0x5839, 0x583a, 0x583b, 0x583c, 0x583d,\n  /* 0x89 */\n  0x583e, 0x583f, 0x5840, 0x5841, 0x5842, 0x5843, 0x5845, 0x5846,\n  0x5847, 0x5848, 0x5849, 0x584a, 0x584b, 0x584e, 0x584f, 0x5850,\n  0x5852, 0x5853, 0x5855, 0x5856, 0x5857, 0x5859, 0x585a, 0x585b,\n  0x585c, 0x585d, 0x585f, 0x5860, 0x5861, 0x5862, 0x5863, 0x5864,\n  0x5866, 0x5867, 0x5868, 0x5869, 0x586a, 0x586d, 0x586e, 0x586f,\n  0x5870, 0x5871, 0x5872, 0x5873, 0x5874, 0x5875, 0x5876, 0x5877,\n  0x5878, 0x5879, 0x587a, 0x587b, 0x587c, 0x587d, 0x587f, 0x5882,\n  0x5884, 0x5886, 0x5887, 0x5888, 0x588a, 0x588b, 0x588c, 0x588d,\n  0x588e, 0x588f, 0x5890, 0x5891, 0x5894, 0x5895, 0x5896, 0x5897,\n  0x5898, 0x589b, 0x589c, 0x589d, 0x58a0, 0x58a1, 0x58a2, 0x58a3,\n  0x58a4, 0x58a5, 0x58a6, 0x58a7, 0x58aa, 0x58ab, 0x58ac, 0x58ad,\n  0x58ae, 0x58af, 0x58b0, 0x58b1, 0x58b2, 0x58b3, 0x58b4, 0x58b5,\n  0x58b6, 0x58b7, 0x58b8, 0x58b9, 0x58ba, 0x58bb, 0x58bd, 0x58be,\n  0x58bf, 0x58c0, 0x58c2, 0x58c3, 0x58c4, 0x58c6, 0x58c7, 0x58c8,\n  0x58c9, 0x58ca, 0x58cb, 0x58cc, 0x58cd, 0x58ce, 0x58cf, 0x58d0,\n  0x58d2, 0x58d3, 0x58d4, 0x58d6, 0x58d7, 0x58d8, 0x58d9, 0x58da,\n  0x58db, 0x58dc, 0x58dd, 0x58de, 0x58df, 0x58e0, 0x58e1, 0x58e2,\n  0x58e3, 0x58e5, 0x58e6, 0x58e7, 0x58e8, 0x58e9, 0x58ea, 0x58ed,\n  0x58ef, 0x58f1, 0x58f2, 0x58f4, 0x58f5, 0x58f7, 0x58f8, 0x58fa,\n  0x58fb, 0x58fc, 0x58fd, 0x58fe, 0x58ff, 0x5900, 0x5901, 0x5903,\n  0x5905, 0x5906, 0x5908, 0x5909, 0x590a, 0x590b, 0x590c, 0x590e,\n  0x5910, 0x5911, 0x5912, 0x5913, 0x5917, 0x5918, 0x591b, 0x591d,\n  0x591e, 0x5920, 0x5921, 0x5922, 0x5923, 0x5926, 0x5928, 0x592c,\n  0x5930, 0x5932, 0x5933, 0x5935, 0x5936, 0x593b,\n  /* 0x8a */\n  0x593d, 0x593e, 0x593f, 0x5940, 0x5943, 0x5945, 0x5946, 0x594a,\n  0x594c, 0x594d, 0x5950, 0x5952, 0x5953, 0x5959, 0x595b, 0x595c,\n  0x595d, 0x595e, 0x595f, 0x5961, 0x5963, 0x5964, 0x5966, 0x5967,\n  0x5968, 0x5969, 0x596a, 0x596b, 0x596c, 0x596d, 0x596e, 0x596f,\n  0x5970, 0x5971, 0x5972, 0x5975, 0x5977, 0x597a, 0x597b, 0x597c,\n  0x597e, 0x597f, 0x5980, 0x5985, 0x5989, 0x598b, 0x598c, 0x598e,\n  0x598f, 0x5990, 0x5991, 0x5994, 0x5995, 0x5998, 0x599a, 0x599b,\n  0x599c, 0x599d, 0x599f, 0x59a0, 0x59a1, 0x59a2, 0x59a6, 0x59a7,\n  0x59ac, 0x59ad, 0x59b0, 0x59b1, 0x59b3, 0x59b4, 0x59b5, 0x59b6,\n  0x59b7, 0x59b8, 0x59ba, 0x59bc, 0x59bd, 0x59bf, 0x59c0, 0x59c1,\n  0x59c2, 0x59c3, 0x59c4, 0x59c5, 0x59c7, 0x59c8, 0x59c9, 0x59cc,\n  0x59cd, 0x59ce, 0x59cf, 0x59d5, 0x59d6, 0x59d9, 0x59db, 0x59de,\n  0x59df, 0x59e0, 0x59e1, 0x59e2, 0x59e4, 0x59e6, 0x59e7, 0x59e9,\n  0x59ea, 0x59eb, 0x59ed, 0x59ee, 0x59ef, 0x59f0, 0x59f1, 0x59f2,\n  0x59f3, 0x59f4, 0x59f5, 0x59f6, 0x59f7, 0x59f8, 0x59fa, 0x59fc,\n  0x59fd, 0x59fe, 0x5a00, 0x5a02, 0x5a0a, 0x5a0b, 0x5a0d, 0x5a0e,\n  0x5a0f, 0x5a10, 0x5a12, 0x5a14, 0x5a15, 0x5a16, 0x5a17, 0x5a19,\n  0x5a1a, 0x5a1b, 0x5a1d, 0x5a1e, 0x5a21, 0x5a22, 0x5a24, 0x5a26,\n  0x5a27, 0x5a28, 0x5a2a, 0x5a2b, 0x5a2c, 0x5a2d, 0x5a2e, 0x5a2f,\n  0x5a30, 0x5a33, 0x5a35, 0x5a37, 0x5a38, 0x5a39, 0x5a3a, 0x5a3b,\n  0x5a3d, 0x5a3e, 0x5a3f, 0x5a41, 0x5a42, 0x5a43, 0x5a44, 0x5a45,\n  0x5a47, 0x5a48, 0x5a4b, 0x5a4c, 0x5a4d, 0x5a4e, 0x5a4f, 0x5a50,\n  0x5a51, 0x5a52, 0x5a53, 0x5a54, 0x5a56, 0x5a57, 0x5a58, 0x5a59,\n  0x5a5b, 0x5a5c, 0x5a5d, 0x5a5e, 0x5a5f, 0x5a60,\n  /* 0x8b */\n  0x5a61, 0x5a63, 0x5a64, 0x5a65, 0x5a66, 0x5a68, 0x5a69, 0x5a6b,\n  0x5a6c, 0x5a6d, 0x5a6e, 0x5a6f, 0x5a70, 0x5a71, 0x5a72, 0x5a73,\n  0x5a78, 0x5a79, 0x5a7b, 0x5a7c, 0x5a7d, 0x5a7e, 0x5a80, 0x5a81,\n  0x5a82, 0x5a83, 0x5a84, 0x5a85, 0x5a86, 0x5a87, 0x5a88, 0x5a89,\n  0x5a8a, 0x5a8b, 0x5a8c, 0x5a8d, 0x5a8e, 0x5a8f, 0x5a90, 0x5a91,\n  0x5a93, 0x5a94, 0x5a95, 0x5a96, 0x5a97, 0x5a98, 0x5a99, 0x5a9c,\n  0x5a9d, 0x5a9e, 0x5a9f, 0x5aa0, 0x5aa1, 0x5aa2, 0x5aa3, 0x5aa4,\n  0x5aa5, 0x5aa6, 0x5aa7, 0x5aa8, 0x5aa9, 0x5aab, 0x5aac, 0x5aad,\n  0x5aae, 0x5aaf, 0x5ab0, 0x5ab1, 0x5ab4, 0x5ab6, 0x5ab7, 0x5ab9,\n  0x5aba, 0x5abb, 0x5abc, 0x5abd, 0x5abf, 0x5ac0, 0x5ac3, 0x5ac4,\n  0x5ac5, 0x5ac6, 0x5ac7, 0x5ac8, 0x5aca, 0x5acb, 0x5acd, 0x5ace,\n  0x5acf, 0x5ad0, 0x5ad1, 0x5ad3, 0x5ad5, 0x5ad7, 0x5ad9, 0x5ada,\n  0x5adb, 0x5add, 0x5ade, 0x5adf, 0x5ae2, 0x5ae4, 0x5ae5, 0x5ae7,\n  0x5ae8, 0x5aea, 0x5aec, 0x5aed, 0x5aee, 0x5aef, 0x5af0, 0x5af2,\n  0x5af3, 0x5af4, 0x5af5, 0x5af6, 0x5af7, 0x5af8, 0x5af9, 0x5afa,\n  0x5afb, 0x5afc, 0x5afd, 0x5afe, 0x5aff, 0x5b00, 0x5b01, 0x5b02,\n  0x5b03, 0x5b04, 0x5b05, 0x5b06, 0x5b07, 0x5b08, 0x5b0a, 0x5b0b,\n  0x5b0c, 0x5b0d, 0x5b0e, 0x5b0f, 0x5b10, 0x5b11, 0x5b12, 0x5b13,\n  0x5b14, 0x5b15, 0x5b18, 0x5b19, 0x5b1a, 0x5b1b, 0x5b1c, 0x5b1d,\n  0x5b1e, 0x5b1f, 0x5b20, 0x5b21, 0x5b22, 0x5b23, 0x5b24, 0x5b25,\n  0x5b26, 0x5b27, 0x5b28, 0x5b29, 0x5b2a, 0x5b2b, 0x5b2c, 0x5b2d,\n  0x5b2e, 0x5b2f, 0x5b30, 0x5b31, 0x5b33, 0x5b35, 0x5b36, 0x5b38,\n  0x5b39, 0x5b3a, 0x5b3b, 0x5b3c, 0x5b3d, 0x5b3e, 0x5b3f, 0x5b41,\n  0x5b42, 0x5b43, 0x5b44, 0x5b45, 0x5b46, 0x5b47,\n  /* 0x8c */\n  0x5b48, 0x5b49, 0x5b4a, 0x5b4b, 0x5b4c, 0x5b4d, 0x5b4e, 0x5b4f,\n  0x5b52, 0x5b56, 0x5b5e, 0x5b60, 0x5b61, 0x5b67, 0x5b68, 0x5b6b,\n  0x5b6d, 0x5b6e, 0x5b6f, 0x5b72, 0x5b74, 0x5b76, 0x5b77, 0x5b78,\n  0x5b79, 0x5b7b, 0x5b7c, 0x5b7e, 0x5b7f, 0x5b82, 0x5b86, 0x5b8a,\n  0x5b8d, 0x5b8e, 0x5b90, 0x5b91, 0x5b92, 0x5b94, 0x5b96, 0x5b9f,\n  0x5ba7, 0x5ba8, 0x5ba9, 0x5bac, 0x5bad, 0x5bae, 0x5baf, 0x5bb1,\n  0x5bb2, 0x5bb7, 0x5bba, 0x5bbb, 0x5bbc, 0x5bc0, 0x5bc1, 0x5bc3,\n  0x5bc8, 0x5bc9, 0x5bca, 0x5bcb, 0x5bcd, 0x5bce, 0x5bcf, 0x5bd1,\n  0x5bd4, 0x5bd5, 0x5bd6, 0x5bd7, 0x5bd8, 0x5bd9, 0x5bda, 0x5bdb,\n  0x5bdc, 0x5be0, 0x5be2, 0x5be3, 0x5be6, 0x5be7, 0x5be9, 0x5bea,\n  0x5beb, 0x5bec, 0x5bed, 0x5bef, 0x5bf1, 0x5bf2, 0x5bf3, 0x5bf4,\n  0x5bf5, 0x5bf6, 0x5bf7, 0x5bfd, 0x5bfe, 0x5c00, 0x5c02, 0x5c03,\n  0x5c05, 0x5c07, 0x5c08, 0x5c0b, 0x5c0c, 0x5c0d, 0x5c0e, 0x5c10,\n  0x5c12, 0x5c13, 0x5c17, 0x5c19, 0x5c1b, 0x5c1e, 0x5c1f, 0x5c20,\n  0x5c21, 0x5c23, 0x5c26, 0x5c28, 0x5c29, 0x5c2a, 0x5c2b, 0x5c2d,\n  0x5c2e, 0x5c2f, 0x5c30, 0x5c32, 0x5c33, 0x5c35, 0x5c36, 0x5c37,\n  0x5c43, 0x5c44, 0x5c46, 0x5c47, 0x5c4c, 0x5c4d, 0x5c52, 0x5c53,\n  0x5c54, 0x5c56, 0x5c57, 0x5c58, 0x5c5a, 0x5c5b, 0x5c5c, 0x5c5d,\n  0x5c5f, 0x5c62, 0x5c64, 0x5c67, 0x5c68, 0x5c69, 0x5c6a, 0x5c6b,\n  0x5c6c, 0x5c6d, 0x5c70, 0x5c72, 0x5c73, 0x5c74, 0x5c75, 0x5c76,\n  0x5c77, 0x5c78, 0x5c7b, 0x5c7c, 0x5c7d, 0x5c7e, 0x5c80, 0x5c83,\n  0x5c84, 0x5c85, 0x5c86, 0x5c87, 0x5c89, 0x5c8a, 0x5c8b, 0x5c8e,\n  0x5c8f, 0x5c92, 0x5c93, 0x5c95, 0x5c9d, 0x5c9e, 0x5c9f, 0x5ca0,\n  0x5ca1, 0x5ca4, 0x5ca5, 0x5ca6, 0x5ca7, 0x5ca8,\n  /* 0x8d */\n  0x5caa, 0x5cae, 0x5caf, 0x5cb0, 0x5cb2, 0x5cb4, 0x5cb6, 0x5cb9,\n  0x5cba, 0x5cbb, 0x5cbc, 0x5cbe, 0x5cc0, 0x5cc2, 0x5cc3, 0x5cc5,\n  0x5cc6, 0x5cc7, 0x5cc8, 0x5cc9, 0x5cca, 0x5ccc, 0x5ccd, 0x5cce,\n  0x5ccf, 0x5cd0, 0x5cd1, 0x5cd3, 0x5cd4, 0x5cd5, 0x5cd6, 0x5cd7,\n  0x5cd8, 0x5cda, 0x5cdb, 0x5cdc, 0x5cdd, 0x5cde, 0x5cdf, 0x5ce0,\n  0x5ce2, 0x5ce3, 0x5ce7, 0x5ce9, 0x5ceb, 0x5cec, 0x5cee, 0x5cef,\n  0x5cf1, 0x5cf2, 0x5cf3, 0x5cf4, 0x5cf5, 0x5cf6, 0x5cf7, 0x5cf8,\n  0x5cf9, 0x5cfa, 0x5cfc, 0x5cfd, 0x5cfe, 0x5cff, 0x5d00, 0x5d01,\n  0x5d04, 0x5d05, 0x5d08, 0x5d09, 0x5d0a, 0x5d0b, 0x5d0c, 0x5d0d,\n  0x5d0f, 0x5d10, 0x5d11, 0x5d12, 0x5d13, 0x5d15, 0x5d17, 0x5d18,\n  0x5d19, 0x5d1a, 0x5d1c, 0x5d1d, 0x5d1f, 0x5d20, 0x5d21, 0x5d22,\n  0x5d23, 0x5d25, 0x5d28, 0x5d2a, 0x5d2b, 0x5d2c, 0x5d2f, 0x5d30,\n  0x5d31, 0x5d32, 0x5d33, 0x5d35, 0x5d36, 0x5d37, 0x5d38, 0x5d39,\n  0x5d3a, 0x5d3b, 0x5d3c, 0x5d3f, 0x5d40, 0x5d41, 0x5d42, 0x5d43,\n  0x5d44, 0x5d45, 0x5d46, 0x5d48, 0x5d49, 0x5d4d, 0x5d4e, 0x5d4f,\n  0x5d50, 0x5d51, 0x5d52, 0x5d53, 0x5d54, 0x5d55, 0x5d56, 0x5d57,\n  0x5d59, 0x5d5a, 0x5d5c, 0x5d5e, 0x5d5f, 0x5d60, 0x5d61, 0x5d62,\n  0x5d63, 0x5d64, 0x5d65, 0x5d66, 0x5d67, 0x5d68, 0x5d6a, 0x5d6d,\n  0x5d6e, 0x5d70, 0x5d71, 0x5d72, 0x5d73, 0x5d75, 0x5d76, 0x5d77,\n  0x5d78, 0x5d79, 0x5d7a, 0x5d7b, 0x5d7c, 0x5d7d, 0x5d7e, 0x5d7f,\n  0x5d80, 0x5d81, 0x5d83, 0x5d84, 0x5d85, 0x5d86, 0x5d87, 0x5d88,\n  0x5d89, 0x5d8a, 0x5d8b, 0x5d8c, 0x5d8d, 0x5d8e, 0x5d8f, 0x5d90,\n  0x5d91, 0x5d92, 0x5d93, 0x5d94, 0x5d95, 0x5d96, 0x5d97, 0x5d98,\n  0x5d9a, 0x5d9b, 0x5d9c, 0x5d9e, 0x5d9f, 0x5da0,\n  /* 0x8e */\n  0x5da1, 0x5da2, 0x5da3, 0x5da4, 0x5da5, 0x5da6, 0x5da7, 0x5da8,\n  0x5da9, 0x5daa, 0x5dab, 0x5dac, 0x5dad, 0x5dae, 0x5daf, 0x5db0,\n  0x5db1, 0x5db2, 0x5db3, 0x5db4, 0x5db5, 0x5db6, 0x5db8, 0x5db9,\n  0x5dba, 0x5dbb, 0x5dbc, 0x5dbd, 0x5dbe, 0x5dbf, 0x5dc0, 0x5dc1,\n  0x5dc2, 0x5dc3, 0x5dc4, 0x5dc6, 0x5dc7, 0x5dc8, 0x5dc9, 0x5dca,\n  0x5dcb, 0x5dcc, 0x5dce, 0x5dcf, 0x5dd0, 0x5dd1, 0x5dd2, 0x5dd3,\n  0x5dd4, 0x5dd5, 0x5dd6, 0x5dd7, 0x5dd8, 0x5dd9, 0x5dda, 0x5ddc,\n  0x5ddf, 0x5de0, 0x5de3, 0x5de4, 0x5dea, 0x5dec, 0x5ded, 0x5df0,\n  0x5df5, 0x5df6, 0x5df8, 0x5df9, 0x5dfa, 0x5dfb, 0x5dfc, 0x5dff,\n  0x5e00, 0x5e04, 0x5e07, 0x5e09, 0x5e0a, 0x5e0b, 0x5e0d, 0x5e0e,\n  0x5e12, 0x5e13, 0x5e17, 0x5e1e, 0x5e1f, 0x5e20, 0x5e21, 0x5e22,\n  0x5e23, 0x5e24, 0x5e25, 0x5e28, 0x5e29, 0x5e2a, 0x5e2b, 0x5e2c,\n  0x5e2f, 0x5e30, 0x5e32, 0x5e33, 0x5e34, 0x5e35, 0x5e36, 0x5e39,\n  0x5e3a, 0x5e3e, 0x5e3f, 0x5e40, 0x5e41, 0x5e43, 0x5e46, 0x5e47,\n  0x5e48, 0x5e49, 0x5e4a, 0x5e4b, 0x5e4d, 0x5e4e, 0x5e4f, 0x5e50,\n  0x5e51, 0x5e52, 0x5e53, 0x5e56, 0x5e57, 0x5e58, 0x5e59, 0x5e5a,\n  0x5e5c, 0x5e5d, 0x5e5f, 0x5e60, 0x5e63, 0x5e64, 0x5e65, 0x5e66,\n  0x5e67, 0x5e68, 0x5e69, 0x5e6a, 0x5e6b, 0x5e6c, 0x5e6d, 0x5e6e,\n  0x5e6f, 0x5e70, 0x5e71, 0x5e75, 0x5e77, 0x5e79, 0x5e7e, 0x5e81,\n  0x5e82, 0x5e83, 0x5e85, 0x5e88, 0x5e89, 0x5e8c, 0x5e8d, 0x5e8e,\n  0x5e92, 0x5e98, 0x5e9b, 0x5e9d, 0x5ea1, 0x5ea2, 0x5ea3, 0x5ea4,\n  0x5ea8, 0x5ea9, 0x5eaa, 0x5eab, 0x5eac, 0x5eae, 0x5eaf, 0x5eb0,\n  0x5eb1, 0x5eb2, 0x5eb4, 0x5eba, 0x5ebb, 0x5ebc, 0x5ebd, 0x5ebf,\n  0x5ec0, 0x5ec1, 0x5ec2, 0x5ec3, 0x5ec4, 0x5ec5,\n  /* 0x8f */\n  0x5ec6, 0x5ec7, 0x5ec8, 0x5ecb, 0x5ecc, 0x5ecd, 0x5ece, 0x5ecf,\n  0x5ed0, 0x5ed4, 0x5ed5, 0x5ed7, 0x5ed8, 0x5ed9, 0x5eda, 0x5edc,\n  0x5edd, 0x5ede, 0x5edf, 0x5ee0, 0x5ee1, 0x5ee2, 0x5ee3, 0x5ee4,\n  0x5ee5, 0x5ee6, 0x5ee7, 0x5ee9, 0x5eeb, 0x5eec, 0x5eed, 0x5eee,\n  0x5eef, 0x5ef0, 0x5ef1, 0x5ef2, 0x5ef3, 0x5ef5, 0x5ef8, 0x5ef9,\n  0x5efb, 0x5efc, 0x5efd, 0x5f05, 0x5f06, 0x5f07, 0x5f09, 0x5f0c,\n  0x5f0d, 0x5f0e, 0x5f10, 0x5f12, 0x5f14, 0x5f16, 0x5f19, 0x5f1a,\n  0x5f1c, 0x5f1d, 0x5f1e, 0x5f21, 0x5f22, 0x5f23, 0x5f24, 0x5f28,\n  0x5f2b, 0x5f2c, 0x5f2e, 0x5f30, 0x5f32, 0x5f33, 0x5f34, 0x5f35,\n  0x5f36, 0x5f37, 0x5f38, 0x5f3b, 0x5f3d, 0x5f3e, 0x5f3f, 0x5f41,\n  0x5f42, 0x5f43, 0x5f44, 0x5f45, 0x5f46, 0x5f47, 0x5f48, 0x5f49,\n  0x5f4a, 0x5f4b, 0x5f4c, 0x5f4d, 0x5f4e, 0x5f4f, 0x5f51, 0x5f54,\n  0x5f59, 0x5f5a, 0x5f5b, 0x5f5c, 0x5f5e, 0x5f5f, 0x5f60, 0x5f63,\n  0x5f65, 0x5f67, 0x5f68, 0x5f6b, 0x5f6e, 0x5f6f, 0x5f72, 0x5f74,\n  0x5f75, 0x5f76, 0x5f78, 0x5f7a, 0x5f7d, 0x5f7e, 0x5f7f, 0x5f83,\n  0x5f86, 0x5f8d, 0x5f8e, 0x5f8f, 0x5f91, 0x5f93, 0x5f94, 0x5f96,\n  0x5f9a, 0x5f9b, 0x5f9d, 0x5f9e, 0x5f9f, 0x5fa0, 0x5fa2, 0x5fa3,\n  0x5fa4, 0x5fa5, 0x5fa6, 0x5fa7, 0x5fa9, 0x5fab, 0x5fac, 0x5faf,\n  0x5fb0, 0x5fb1, 0x5fb2, 0x5fb3, 0x5fb4, 0x5fb6, 0x5fb8, 0x5fb9,\n  0x5fba, 0x5fbb, 0x5fbe, 0x5fbf, 0x5fc0, 0x5fc1, 0x5fc2, 0x5fc7,\n  0x5fc8, 0x5fca, 0x5fcb, 0x5fce, 0x5fd3, 0x5fd4, 0x5fd5, 0x5fda,\n  0x5fdb, 0x5fdc, 0x5fde, 0x5fdf, 0x5fe2, 0x5fe3, 0x5fe5, 0x5fe6,\n  0x5fe8, 0x5fe9, 0x5fec, 0x5fef, 0x5ff0, 0x5ff2, 0x5ff3, 0x5ff4,\n  0x5ff6, 0x5ff7, 0x5ff9, 0x5ffa, 0x5ffc, 0x6007,\n  /* 0x90 */\n  0x6008, 0x6009, 0x600b, 0x600c, 0x6010, 0x6011, 0x6013, 0x6017,\n  0x6018, 0x601a, 0x601e, 0x601f, 0x6022, 0x6023, 0x6024, 0x602c,\n  0x602d, 0x602e, 0x6030, 0x6031, 0x6032, 0x6033, 0x6034, 0x6036,\n  0x6037, 0x6038, 0x6039, 0x603a, 0x603d, 0x603e, 0x6040, 0x6044,\n  0x6045, 0x6046, 0x6047, 0x6048, 0x6049, 0x604a, 0x604c, 0x604e,\n  0x604f, 0x6051, 0x6053, 0x6054, 0x6056, 0x6057, 0x6058, 0x605b,\n  0x605c, 0x605e, 0x605f, 0x6060, 0x6061, 0x6065, 0x6066, 0x606e,\n  0x6071, 0x6072, 0x6074, 0x6075, 0x6077, 0x607e, 0x6080, 0x6081,\n  0x6082, 0x6085, 0x6086, 0x6087, 0x6088, 0x608a, 0x608b, 0x608e,\n  0x608f, 0x6090, 0x6091, 0x6093, 0x6095, 0x6097, 0x6098, 0x6099,\n  0x609c, 0x609e, 0x60a1, 0x60a2, 0x60a4, 0x60a5, 0x60a7, 0x60a9,\n  0x60aa, 0x60ae, 0x60b0, 0x60b3, 0x60b5, 0x60b6, 0x60b7, 0x60b9,\n  0x60ba, 0x60bd, 0x60be, 0x60bf, 0x60c0, 0x60c1, 0x60c2, 0x60c3,\n  0x60c4, 0x60c7, 0x60c8, 0x60c9, 0x60cc, 0x60cd, 0x60ce, 0x60cf,\n  0x60d0, 0x60d2, 0x60d3, 0x60d4, 0x60d6, 0x60d7, 0x60d9, 0x60db,\n  0x60de, 0x60e1, 0x60e2, 0x60e3, 0x60e4, 0x60e5, 0x60ea, 0x60f1,\n  0x60f2, 0x60f5, 0x60f7, 0x60f8, 0x60fb, 0x60fc, 0x60fd, 0x60fe,\n  0x60ff, 0x6102, 0x6103, 0x6104, 0x6105, 0x6107, 0x610a, 0x610b,\n  0x610c, 0x6110, 0x6111, 0x6112, 0x6113, 0x6114, 0x6116, 0x6117,\n  0x6118, 0x6119, 0x611b, 0x611c, 0x611d, 0x611e, 0x6121, 0x6122,\n  0x6125, 0x6128, 0x6129, 0x612a, 0x612c, 0x612d, 0x612e, 0x612f,\n  0x6130, 0x6131, 0x6132, 0x6133, 0x6134, 0x6135, 0x6136, 0x6137,\n  0x6138, 0x6139, 0x613a, 0x613b, 0x613c, 0x613d, 0x613e, 0x6140,\n  0x6141, 0x6142, 0x6143, 0x6144, 0x6145, 0x6146,\n  /* 0x91 */\n  0x6147, 0x6149, 0x614b, 0x614d, 0x614f, 0x6150, 0x6152, 0x6153,\n  0x6154, 0x6156, 0x6157, 0x6158, 0x6159, 0x615a, 0x615b, 0x615c,\n  0x615e, 0x615f, 0x6160, 0x6161, 0x6163, 0x6164, 0x6165, 0x6166,\n  0x6169, 0x616a, 0x616b, 0x616c, 0x616d, 0x616e, 0x616f, 0x6171,\n  0x6172, 0x6173, 0x6174, 0x6176, 0x6178, 0x6179, 0x617a, 0x617b,\n  0x617c, 0x617d, 0x617e, 0x617f, 0x6180, 0x6181, 0x6182, 0x6183,\n  0x6184, 0x6185, 0x6186, 0x6187, 0x6188, 0x6189, 0x618a, 0x618c,\n  0x618d, 0x618f, 0x6190, 0x6191, 0x6192, 0x6193, 0x6195, 0x6196,\n  0x6197, 0x6198, 0x6199, 0x619a, 0x619b, 0x619c, 0x619e, 0x619f,\n  0x61a0, 0x61a1, 0x61a2, 0x61a3, 0x61a4, 0x61a5, 0x61a6, 0x61aa,\n  0x61ab, 0x61ad, 0x61ae, 0x61af, 0x61b0, 0x61b1, 0x61b2, 0x61b3,\n  0x61b4, 0x61b5, 0x61b6, 0x61b8, 0x61b9, 0x61ba, 0x61bb, 0x61bc,\n  0x61bd, 0x61bf, 0x61c0, 0x61c1, 0x61c3, 0x61c4, 0x61c5, 0x61c6,\n  0x61c7, 0x61c9, 0x61cc, 0x61cd, 0x61ce, 0x61cf, 0x61d0, 0x61d3,\n  0x61d5, 0x61d6, 0x61d7, 0x61d8, 0x61d9, 0x61da, 0x61db, 0x61dc,\n  0x61dd, 0x61de, 0x61df, 0x61e0, 0x61e1, 0x61e2, 0x61e3, 0x61e4,\n  0x61e5, 0x61e7, 0x61e8, 0x61e9, 0x61ea, 0x61eb, 0x61ec, 0x61ed,\n  0x61ee, 0x61ef, 0x61f0, 0x61f1, 0x61f2, 0x61f3, 0x61f4, 0x61f6,\n  0x61f7, 0x61f8, 0x61f9, 0x61fa, 0x61fb, 0x61fc, 0x61fd, 0x61fe,\n  0x6200, 0x6201, 0x6202, 0x6203, 0x6204, 0x6205, 0x6207, 0x6209,\n  0x6213, 0x6214, 0x6219, 0x621c, 0x621d, 0x621e, 0x6220, 0x6223,\n  0x6226, 0x6227, 0x6228, 0x6229, 0x622b, 0x622d, 0x622f, 0x6230,\n  0x6231, 0x6232, 0x6235, 0x6236, 0x6238, 0x6239, 0x623a, 0x623b,\n  0x623c, 0x6242, 0x6244, 0x6245, 0x6246, 0x624a,\n  /* 0x92 */\n  0x624f, 0x6250, 0x6255, 0x6256, 0x6257, 0x6259, 0x625a, 0x625c,\n  0x625d, 0x625e, 0x625f, 0x6260, 0x6261, 0x6262, 0x6264, 0x6265,\n  0x6268, 0x6271, 0x6272, 0x6274, 0x6275, 0x6277, 0x6278, 0x627a,\n  0x627b, 0x627d, 0x6281, 0x6282, 0x6283, 0x6285, 0x6286, 0x6287,\n  0x6288, 0x628b, 0x628c, 0x628d, 0x628e, 0x628f, 0x6290, 0x6294,\n  0x6299, 0x629c, 0x629d, 0x629e, 0x62a3, 0x62a6, 0x62a7, 0x62a9,\n  0x62aa, 0x62ad, 0x62ae, 0x62af, 0x62b0, 0x62b2, 0x62b3, 0x62b4,\n  0x62b6, 0x62b7, 0x62b8, 0x62ba, 0x62be, 0x62c0, 0x62c1, 0x62c3,\n  0x62cb, 0x62cf, 0x62d1, 0x62d5, 0x62dd, 0x62de, 0x62e0, 0x62e1,\n  0x62e4, 0x62ea, 0x62eb, 0x62f0, 0x62f2, 0x62f5, 0x62f8, 0x62f9,\n  0x62fa, 0x62fb, 0x6300, 0x6303, 0x6304, 0x6305, 0x6306, 0x630a,\n  0x630b, 0x630c, 0x630d, 0x630f, 0x6310, 0x6312, 0x6313, 0x6314,\n  0x6315, 0x6317, 0x6318, 0x6319, 0x631c, 0x6326, 0x6327, 0x6329,\n  0x632c, 0x632d, 0x632e, 0x6330, 0x6331, 0x6333, 0x6334, 0x6335,\n  0x6336, 0x6337, 0x6338, 0x633b, 0x633c, 0x633e, 0x633f, 0x6340,\n  0x6341, 0x6344, 0x6347, 0x6348, 0x634a, 0x6351, 0x6352, 0x6353,\n  0x6354, 0x6356, 0x6357, 0x6358, 0x6359, 0x635a, 0x635b, 0x635c,\n  0x635d, 0x6360, 0x6364, 0x6365, 0x6366, 0x6368, 0x636a, 0x636b,\n  0x636c, 0x636f, 0x6370, 0x6372, 0x6373, 0x6374, 0x6375, 0x6378,\n  0x6379, 0x637c, 0x637d, 0x637e, 0x637f, 0x6381, 0x6383, 0x6384,\n  0x6385, 0x6386, 0x638b, 0x638d, 0x6391, 0x6393, 0x6394, 0x6395,\n  0x6397, 0x6399, 0x639a, 0x639b, 0x639c, 0x639d, 0x639e, 0x639f,\n  0x63a1, 0x63a4, 0x63a6, 0x63ab, 0x63af, 0x63b1, 0x63b2, 0x63b5,\n  0x63b6, 0x63b9, 0x63bb, 0x63bd, 0x63bf, 0x63c0,\n  /* 0x93 */\n  0x63c1, 0x63c2, 0x63c3, 0x63c5, 0x63c7, 0x63c8, 0x63ca, 0x63cb,\n  0x63cc, 0x63d1, 0x63d3, 0x63d4, 0x63d5, 0x63d7, 0x63d8, 0x63d9,\n  0x63da, 0x63db, 0x63dc, 0x63dd, 0x63df, 0x63e2, 0x63e4, 0x63e5,\n  0x63e6, 0x63e7, 0x63e8, 0x63eb, 0x63ec, 0x63ee, 0x63ef, 0x63f0,\n  0x63f1, 0x63f3, 0x63f5, 0x63f7, 0x63f9, 0x63fa, 0x63fb, 0x63fc,\n  0x63fe, 0x6403, 0x6404, 0x6406, 0x6407, 0x6408, 0x6409, 0x640a,\n  0x640d, 0x640e, 0x6411, 0x6412, 0x6415, 0x6416, 0x6417, 0x6418,\n  0x6419, 0x641a, 0x641d, 0x641f, 0x6422, 0x6423, 0x6424, 0x6425,\n  0x6427, 0x6428, 0x6429, 0x642b, 0x642e, 0x642f, 0x6430, 0x6431,\n  0x6432, 0x6433, 0x6435, 0x6436, 0x6437, 0x6438, 0x6439, 0x643b,\n  0x643c, 0x643e, 0x6440, 0x6442, 0x6443, 0x6449, 0x644b, 0x644c,\n  0x644d, 0x644e, 0x644f, 0x6450, 0x6451, 0x6453, 0x6455, 0x6456,\n  0x6457, 0x6459, 0x645a, 0x645b, 0x645c, 0x645d, 0x645f, 0x6460,\n  0x6461, 0x6462, 0x6463, 0x6464, 0x6465, 0x6466, 0x6468, 0x646a,\n  0x646b, 0x646c, 0x646e, 0x646f, 0x6470, 0x6471, 0x6472, 0x6473,\n  0x6474, 0x6475, 0x6476, 0x6477, 0x647b, 0x647c, 0x647d, 0x647e,\n  0x647f, 0x6480, 0x6481, 0x6483, 0x6486, 0x6488, 0x6489, 0x648a,\n  0x648b, 0x648c, 0x648d, 0x648e, 0x648f, 0x6490, 0x6493, 0x6494,\n  0x6497, 0x6498, 0x649a, 0x649b, 0x649c, 0x649d, 0x649f, 0x64a0,\n  0x64a1, 0x64a2, 0x64a3, 0x64a5, 0x64a6, 0x64a7, 0x64a8, 0x64aa,\n  0x64ab, 0x64af, 0x64b1, 0x64b2, 0x64b3, 0x64b4, 0x64b6, 0x64b9,\n  0x64bb, 0x64bd, 0x64be, 0x64bf, 0x64c1, 0x64c3, 0x64c4, 0x64c6,\n  0x64c7, 0x64c8, 0x64c9, 0x64ca, 0x64cb, 0x64cc, 0x64cf, 0x64d1,\n  0x64d3, 0x64d4, 0x64d5, 0x64d6, 0x64d9, 0x64da,\n  /* 0x94 */\n  0x64db, 0x64dc, 0x64dd, 0x64df, 0x64e0, 0x64e1, 0x64e3, 0x64e5,\n  0x64e7, 0x64e8, 0x64e9, 0x64ea, 0x64eb, 0x64ec, 0x64ed, 0x64ee,\n  0x64ef, 0x64f0, 0x64f1, 0x64f2, 0x64f3, 0x64f4, 0x64f5, 0x64f6,\n  0x64f7, 0x64f8, 0x64f9, 0x64fa, 0x64fb, 0x64fc, 0x64fd, 0x64fe,\n  0x64ff, 0x6501, 0x6502, 0x6503, 0x6504, 0x6505, 0x6506, 0x6507,\n  0x6508, 0x650a, 0x650b, 0x650c, 0x650d, 0x650e, 0x650f, 0x6510,\n  0x6511, 0x6513, 0x6514, 0x6515, 0x6516, 0x6517, 0x6519, 0x651a,\n  0x651b, 0x651c, 0x651d, 0x651e, 0x651f, 0x6520, 0x6521, 0x6522,\n  0x6523, 0x6524, 0x6526, 0x6527, 0x6528, 0x6529, 0x652a, 0x652c,\n  0x652d, 0x6530, 0x6531, 0x6532, 0x6533, 0x6537, 0x653a, 0x653c,\n  0x653d, 0x6540, 0x6541, 0x6542, 0x6543, 0x6544, 0x6546, 0x6547,\n  0x654a, 0x654b, 0x654d, 0x654e, 0x6550, 0x6552, 0x6553, 0x6554,\n  0x6557, 0x6558, 0x655a, 0x655c, 0x655f, 0x6560, 0x6561, 0x6564,\n  0x6565, 0x6567, 0x6568, 0x6569, 0x656a, 0x656d, 0x656e, 0x656f,\n  0x6571, 0x6573, 0x6575, 0x6576, 0x6578, 0x6579, 0x657a, 0x657b,\n  0x657c, 0x657d, 0x657e, 0x657f, 0x6580, 0x6581, 0x6582, 0x6583,\n  0x6584, 0x6585, 0x6586, 0x6588, 0x6589, 0x658a, 0x658d, 0x658e,\n  0x658f, 0x6592, 0x6594, 0x6595, 0x6596, 0x6598, 0x659a, 0x659d,\n  0x659e, 0x65a0, 0x65a2, 0x65a3, 0x65a6, 0x65a8, 0x65aa, 0x65ac,\n  0x65ae, 0x65b1, 0x65b2, 0x65b3, 0x65b4, 0x65b5, 0x65b6, 0x65b7,\n  0x65b8, 0x65ba, 0x65bb, 0x65be, 0x65bf, 0x65c0, 0x65c2, 0x65c7,\n  0x65c8, 0x65c9, 0x65ca, 0x65cd, 0x65d0, 0x65d1, 0x65d3, 0x65d4,\n  0x65d5, 0x65d8, 0x65d9, 0x65da, 0x65db, 0x65dc, 0x65dd, 0x65de,\n  0x65df, 0x65e1, 0x65e3, 0x65e4, 0x65ea, 0x65eb,\n  /* 0x95 */\n  0x65f2, 0x65f3, 0x65f4, 0x65f5, 0x65f8, 0x65f9, 0x65fb, 0x65fc,\n  0x65fd, 0x65fe, 0x65ff, 0x6601, 0x6604, 0x6605, 0x6607, 0x6608,\n  0x6609, 0x660b, 0x660d, 0x6610, 0x6611, 0x6612, 0x6616, 0x6617,\n  0x6618, 0x661a, 0x661b, 0x661c, 0x661e, 0x6621, 0x6622, 0x6623,\n  0x6624, 0x6626, 0x6629, 0x662a, 0x662b, 0x662c, 0x662e, 0x6630,\n  0x6632, 0x6633, 0x6637, 0x6638, 0x6639, 0x663a, 0x663b, 0x663d,\n  0x663f, 0x6640, 0x6642, 0x6644, 0x6645, 0x6646, 0x6647, 0x6648,\n  0x6649, 0x664a, 0x664d, 0x664e, 0x6650, 0x6651, 0x6658, 0x6659,\n  0x665b, 0x665c, 0x665d, 0x665e, 0x6660, 0x6662, 0x6663, 0x6665,\n  0x6667, 0x6669, 0x666a, 0x666b, 0x666c, 0x666d, 0x6671, 0x6672,\n  0x6673, 0x6675, 0x6678, 0x6679, 0x667b, 0x667c, 0x667d, 0x667f,\n  0x6680, 0x6681, 0x6683, 0x6685, 0x6686, 0x6688, 0x6689, 0x668a,\n  0x668b, 0x668d, 0x668e, 0x668f, 0x6690, 0x6692, 0x6693, 0x6694,\n  0x6695, 0x6698, 0x6699, 0x669a, 0x669b, 0x669c, 0x669e, 0x669f,\n  0x66a0, 0x66a1, 0x66a2, 0x66a3, 0x66a4, 0x66a5, 0x66a6, 0x66a9,\n  0x66aa, 0x66ab, 0x66ac, 0x66ad, 0x66af, 0x66b0, 0x66b1, 0x66b2,\n  0x66b3, 0x66b5, 0x66b6, 0x66b7, 0x66b8, 0x66ba, 0x66bb, 0x66bc,\n  0x66bd, 0x66bf, 0x66c0, 0x66c1, 0x66c2, 0x66c3, 0x66c4, 0x66c5,\n  0x66c6, 0x66c7, 0x66c8, 0x66c9, 0x66ca, 0x66cb, 0x66cc, 0x66cd,\n  0x66ce, 0x66cf, 0x66d0, 0x66d1, 0x66d2, 0x66d3, 0x66d4, 0x66d5,\n  0x66d6, 0x66d7, 0x66d8, 0x66da, 0x66de, 0x66df, 0x66e0, 0x66e1,\n  0x66e2, 0x66e3, 0x66e4, 0x66e5, 0x66e7, 0x66e8, 0x66ea, 0x66eb,\n  0x66ec, 0x66ed, 0x66ee, 0x66ef, 0x66f1, 0x66f5, 0x66f6, 0x66f8,\n  0x66fa, 0x66fb, 0x66fd, 0x6701, 0x6702, 0x6703,\n  /* 0x96 */\n  0x6704, 0x6705, 0x6706, 0x6707, 0x670c, 0x670e, 0x670f, 0x6711,\n  0x6712, 0x6713, 0x6716, 0x6718, 0x6719, 0x671a, 0x671c, 0x671e,\n  0x6720, 0x6721, 0x6722, 0x6723, 0x6724, 0x6725, 0x6727, 0x6729,\n  0x672e, 0x6730, 0x6732, 0x6733, 0x6736, 0x6737, 0x6738, 0x6739,\n  0x673b, 0x673c, 0x673e, 0x673f, 0x6741, 0x6744, 0x6745, 0x6747,\n  0x674a, 0x674b, 0x674d, 0x6752, 0x6754, 0x6755, 0x6757, 0x6758,\n  0x6759, 0x675a, 0x675b, 0x675d, 0x6762, 0x6763, 0x6764, 0x6766,\n  0x6767, 0x676b, 0x676c, 0x676e, 0x6771, 0x6774, 0x6776, 0x6778,\n  0x6779, 0x677a, 0x677b, 0x677d, 0x6780, 0x6782, 0x6783, 0x6785,\n  0x6786, 0x6788, 0x678a, 0x678c, 0x678d, 0x678e, 0x678f, 0x6791,\n  0x6792, 0x6793, 0x6794, 0x6796, 0x6799, 0x679b, 0x679f, 0x67a0,\n  0x67a1, 0x67a4, 0x67a6, 0x67a9, 0x67ac, 0x67ae, 0x67b1, 0x67b2,\n  0x67b4, 0x67b9, 0x67ba, 0x67bb, 0x67bc, 0x67bd, 0x67be, 0x67bf,\n  0x67c0, 0x67c2, 0x67c5, 0x67c6, 0x67c7, 0x67c8, 0x67c9, 0x67ca,\n  0x67cb, 0x67cc, 0x67cd, 0x67ce, 0x67d5, 0x67d6, 0x67d7, 0x67db,\n  0x67df, 0x67e1, 0x67e3, 0x67e4, 0x67e6, 0x67e7, 0x67e8, 0x67ea,\n  0x67eb, 0x67ed, 0x67ee, 0x67f2, 0x67f5, 0x67f6, 0x67f7, 0x67f8,\n  0x67f9, 0x67fa, 0x67fb, 0x67fc, 0x67fe, 0x6801, 0x6802, 0x6803,\n  0x6804, 0x6806, 0x680d, 0x6810, 0x6812, 0x6814, 0x6815, 0x6818,\n  0x6819, 0x681a, 0x681b, 0x681c, 0x681e, 0x681f, 0x6820, 0x6822,\n  0x6823, 0x6824, 0x6825, 0x6826, 0x6827, 0x6828, 0x682b, 0x682c,\n  0x682d, 0x682e, 0x682f, 0x6830, 0x6831, 0x6834, 0x6835, 0x6836,\n  0x683a, 0x683b, 0x683f, 0x6847, 0x684b, 0x684d, 0x684f, 0x6852,\n  0x6856, 0x6857, 0x6858, 0x6859, 0x685a, 0x685b,\n  /* 0x97 */\n  0x685c, 0x685d, 0x685e, 0x685f, 0x686a, 0x686c, 0x686d, 0x686e,\n  0x686f, 0x6870, 0x6871, 0x6872, 0x6873, 0x6875, 0x6878, 0x6879,\n  0x687a, 0x687b, 0x687c, 0x687d, 0x687e, 0x687f, 0x6880, 0x6882,\n  0x6884, 0x6887, 0x6888, 0x6889, 0x688a, 0x688b, 0x688c, 0x688d,\n  0x688e, 0x6890, 0x6891, 0x6892, 0x6894, 0x6895, 0x6896, 0x6898,\n  0x6899, 0x689a, 0x689b, 0x689c, 0x689d, 0x689e, 0x689f, 0x68a0,\n  0x68a1, 0x68a3, 0x68a4, 0x68a5, 0x68a9, 0x68aa, 0x68ab, 0x68ac,\n  0x68ae, 0x68b1, 0x68b2, 0x68b4, 0x68b6, 0x68b7, 0x68b8, 0x68b9,\n  0x68ba, 0x68bb, 0x68bc, 0x68bd, 0x68be, 0x68bf, 0x68c1, 0x68c3,\n  0x68c4, 0x68c5, 0x68c6, 0x68c7, 0x68c8, 0x68ca, 0x68cc, 0x68ce,\n  0x68cf, 0x68d0, 0x68d1, 0x68d3, 0x68d4, 0x68d6, 0x68d7, 0x68d9,\n  0x68db, 0x68dc, 0x68dd, 0x68de, 0x68df, 0x68e1, 0x68e2, 0x68e4,\n  0x68e5, 0x68e6, 0x68e7, 0x68e8, 0x68e9, 0x68ea, 0x68eb, 0x68ec,\n  0x68ed, 0x68ef, 0x68f2, 0x68f3, 0x68f4, 0x68f6, 0x68f7, 0x68f8,\n  0x68fb, 0x68fd, 0x68fe, 0x68ff, 0x6900, 0x6902, 0x6903, 0x6904,\n  0x6906, 0x6907, 0x6908, 0x6909, 0x690a, 0x690c, 0x690f, 0x6911,\n  0x6913, 0x6914, 0x6915, 0x6916, 0x6917, 0x6918, 0x6919, 0x691a,\n  0x691b, 0x691c, 0x691d, 0x691e, 0x6921, 0x6922, 0x6923, 0x6925,\n  0x6926, 0x6927, 0x6928, 0x6929, 0x692a, 0x692b, 0x692c, 0x692e,\n  0x692f, 0x6931, 0x6932, 0x6933, 0x6935, 0x6936, 0x6937, 0x6938,\n  0x693a, 0x693b, 0x693c, 0x693e, 0x6940, 0x6941, 0x6943, 0x6944,\n  0x6945, 0x6946, 0x6947, 0x6948, 0x6949, 0x694a, 0x694b, 0x694c,\n  0x694d, 0x694e, 0x694f, 0x6950, 0x6951, 0x6952, 0x6953, 0x6955,\n  0x6956, 0x6958, 0x6959, 0x695b, 0x695c, 0x695f,\n  /* 0x98 */\n  0x6961, 0x6962, 0x6964, 0x6965, 0x6967, 0x6968, 0x6969, 0x696a,\n  0x696c, 0x696d, 0x696f, 0x6970, 0x6972, 0x6973, 0x6974, 0x6975,\n  0x6976, 0x697a, 0x697b, 0x697d, 0x697e, 0x697f, 0x6981, 0x6983,\n  0x6985, 0x698a, 0x698b, 0x698c, 0x698e, 0x698f, 0x6990, 0x6991,\n  0x6992, 0x6993, 0x6996, 0x6997, 0x6999, 0x699a, 0x699d, 0x699e,\n  0x699f, 0x69a0, 0x69a1, 0x69a2, 0x69a3, 0x69a4, 0x69a5, 0x69a6,\n  0x69a9, 0x69aa, 0x69ac, 0x69ae, 0x69af, 0x69b0, 0x69b2, 0x69b3,\n  0x69b5, 0x69b6, 0x69b8, 0x69b9, 0x69ba, 0x69bc, 0x69bd, 0x69be,\n  0x69bf, 0x69c0, 0x69c2, 0x69c3, 0x69c4, 0x69c5, 0x69c6, 0x69c7,\n  0x69c8, 0x69c9, 0x69cb, 0x69cd, 0x69cf, 0x69d1, 0x69d2, 0x69d3,\n  0x69d5, 0x69d6, 0x69d7, 0x69d8, 0x69d9, 0x69da, 0x69dc, 0x69dd,\n  0x69de, 0x69e1, 0x69e2, 0x69e3, 0x69e4, 0x69e5, 0x69e6, 0x69e7,\n  0x69e8, 0x69e9, 0x69ea, 0x69eb, 0x69ec, 0x69ee, 0x69ef, 0x69f0,\n  0x69f1, 0x69f3, 0x69f4, 0x69f5, 0x69f6, 0x69f7, 0x69f8, 0x69f9,\n  0x69fa, 0x69fb, 0x69fc, 0x69fe, 0x6a00, 0x6a01, 0x6a02, 0x6a03,\n  0x6a04, 0x6a05, 0x6a06, 0x6a07, 0x6a08, 0x6a09, 0x6a0b, 0x6a0c,\n  0x6a0d, 0x6a0e, 0x6a0f, 0x6a10, 0x6a11, 0x6a12, 0x6a13, 0x6a14,\n  0x6a15, 0x6a16, 0x6a19, 0x6a1a, 0x6a1b, 0x6a1c, 0x6a1d, 0x6a1e,\n  0x6a20, 0x6a22, 0x6a23, 0x6a24, 0x6a25, 0x6a26, 0x6a27, 0x6a29,\n  0x6a2b, 0x6a2c, 0x6a2d, 0x6a2e, 0x6a30, 0x6a32, 0x6a33, 0x6a34,\n  0x6a36, 0x6a37, 0x6a38, 0x6a39, 0x6a3a, 0x6a3b, 0x6a3c, 0x6a3f,\n  0x6a40, 0x6a41, 0x6a42, 0x6a43, 0x6a45, 0x6a46, 0x6a48, 0x6a49,\n  0x6a4a, 0x6a4b, 0x6a4c, 0x6a4d, 0x6a4e, 0x6a4f, 0x6a51, 0x6a52,\n  0x6a53, 0x6a54, 0x6a55, 0x6a56, 0x6a57, 0x6a5a,\n  /* 0x99 */\n  0x6a5c, 0x6a5d, 0x6a5e, 0x6a5f, 0x6a60, 0x6a62, 0x6a63, 0x6a64,\n  0x6a66, 0x6a67, 0x6a68, 0x6a69, 0x6a6a, 0x6a6b, 0x6a6c, 0x6a6d,\n  0x6a6e, 0x6a6f, 0x6a70, 0x6a72, 0x6a73, 0x6a74, 0x6a75, 0x6a76,\n  0x6a77, 0x6a78, 0x6a7a, 0x6a7b, 0x6a7d, 0x6a7e, 0x6a7f, 0x6a81,\n  0x6a82, 0x6a83, 0x6a85, 0x6a86, 0x6a87, 0x6a88, 0x6a89, 0x6a8a,\n  0x6a8b, 0x6a8c, 0x6a8d, 0x6a8f, 0x6a92, 0x6a93, 0x6a94, 0x6a95,\n  0x6a96, 0x6a98, 0x6a99, 0x6a9a, 0x6a9b, 0x6a9c, 0x6a9d, 0x6a9e,\n  0x6a9f, 0x6aa1, 0x6aa2, 0x6aa3, 0x6aa4, 0x6aa5, 0x6aa6, 0x6aa7,\n  0x6aa8, 0x6aaa, 0x6aad, 0x6aae, 0x6aaf, 0x6ab0, 0x6ab1, 0x6ab2,\n  0x6ab3, 0x6ab4, 0x6ab5, 0x6ab6, 0x6ab7, 0x6ab8, 0x6ab9, 0x6aba,\n  0x6abb, 0x6abc, 0x6abd, 0x6abe, 0x6abf, 0x6ac0, 0x6ac1, 0x6ac2,\n  0x6ac3, 0x6ac4, 0x6ac5, 0x6ac6, 0x6ac7, 0x6ac8, 0x6ac9, 0x6aca,\n  0x6acb, 0x6acc, 0x6acd, 0x6ace, 0x6acf, 0x6ad0, 0x6ad1, 0x6ad2,\n  0x6ad3, 0x6ad4, 0x6ad5, 0x6ad6, 0x6ad7, 0x6ad8, 0x6ad9, 0x6ada,\n  0x6adb, 0x6adc, 0x6add, 0x6ade, 0x6adf, 0x6ae0, 0x6ae1, 0x6ae2,\n  0x6ae3, 0x6ae4, 0x6ae5, 0x6ae6, 0x6ae7, 0x6ae8, 0x6ae9, 0x6aea,\n  0x6aeb, 0x6aec, 0x6aed, 0x6aee, 0x6aef, 0x6af0, 0x6af1, 0x6af2,\n  0x6af3, 0x6af4, 0x6af5, 0x6af6, 0x6af7, 0x6af8, 0x6af9, 0x6afa,\n  0x6afb, 0x6afc, 0x6afd, 0x6afe, 0x6aff, 0x6b00, 0x6b01, 0x6b02,\n  0x6b03, 0x6b04, 0x6b05, 0x6b06, 0x6b07, 0x6b08, 0x6b09, 0x6b0a,\n  0x6b0b, 0x6b0c, 0x6b0d, 0x6b0e, 0x6b0f, 0x6b10, 0x6b11, 0x6b12,\n  0x6b13, 0x6b14, 0x6b15, 0x6b16, 0x6b17, 0x6b18, 0x6b19, 0x6b1a,\n  0x6b1b, 0x6b1c, 0x6b1d, 0x6b1e, 0x6b1f, 0x6b25, 0x6b26, 0x6b28,\n  0x6b29, 0x6b2a, 0x6b2b, 0x6b2c, 0x6b2d, 0x6b2e,\n  /* 0x9a */\n  0x6b2f, 0x6b30, 0x6b31, 0x6b33, 0x6b34, 0x6b35, 0x6b36, 0x6b38,\n  0x6b3b, 0x6b3c, 0x6b3d, 0x6b3f, 0x6b40, 0x6b41, 0x6b42, 0x6b44,\n  0x6b45, 0x6b48, 0x6b4a, 0x6b4b, 0x6b4d, 0x6b4e, 0x6b4f, 0x6b50,\n  0x6b51, 0x6b52, 0x6b53, 0x6b54, 0x6b55, 0x6b56, 0x6b57, 0x6b58,\n  0x6b5a, 0x6b5b, 0x6b5c, 0x6b5d, 0x6b5e, 0x6b5f, 0x6b60, 0x6b61,\n  0x6b68, 0x6b69, 0x6b6b, 0x6b6c, 0x6b6d, 0x6b6e, 0x6b6f, 0x6b70,\n  0x6b71, 0x6b72, 0x6b73, 0x6b74, 0x6b75, 0x6b76, 0x6b77, 0x6b78,\n  0x6b7a, 0x6b7d, 0x6b7e, 0x6b7f, 0x6b80, 0x6b85, 0x6b88, 0x6b8c,\n  0x6b8e, 0x6b8f, 0x6b90, 0x6b91, 0x6b94, 0x6b95, 0x6b97, 0x6b98,\n  0x6b99, 0x6b9c, 0x6b9d, 0x6b9e, 0x6b9f, 0x6ba0, 0x6ba2, 0x6ba3,\n  0x6ba4, 0x6ba5, 0x6ba6, 0x6ba7, 0x6ba8, 0x6ba9, 0x6bab, 0x6bac,\n  0x6bad, 0x6bae, 0x6baf, 0x6bb0, 0x6bb1, 0x6bb2, 0x6bb6, 0x6bb8,\n  0x6bb9, 0x6bba, 0x6bbb, 0x6bbc, 0x6bbd, 0x6bbe, 0x6bc0, 0x6bc3,\n  0x6bc4, 0x6bc6, 0x6bc7, 0x6bc8, 0x6bc9, 0x6bca, 0x6bcc, 0x6bce,\n  0x6bd0, 0x6bd1, 0x6bd8, 0x6bda, 0x6bdc, 0x6bdd, 0x6bde, 0x6bdf,\n  0x6be0, 0x6be2, 0x6be3, 0x6be4, 0x6be5, 0x6be6, 0x6be7, 0x6be8,\n  0x6be9, 0x6bec, 0x6bed, 0x6bee, 0x6bf0, 0x6bf1, 0x6bf2, 0x6bf4,\n  0x6bf6, 0x6bf7, 0x6bf8, 0x6bfa, 0x6bfb, 0x6bfc, 0x6bfe, 0x6bff,\n  0x6c00, 0x6c01, 0x6c02, 0x6c03, 0x6c04, 0x6c08, 0x6c09, 0x6c0a,\n  0x6c0b, 0x6c0c, 0x6c0e, 0x6c12, 0x6c17, 0x6c1c, 0x6c1d, 0x6c1e,\n  0x6c20, 0x6c23, 0x6c25, 0x6c2b, 0x6c2c, 0x6c2d, 0x6c31, 0x6c33,\n  0x6c36, 0x6c37, 0x6c39, 0x6c3a, 0x6c3b, 0x6c3c, 0x6c3e, 0x6c3f,\n  0x6c43, 0x6c44, 0x6c45, 0x6c48, 0x6c4b, 0x6c4c, 0x6c4d, 0x6c4e,\n  0x6c4f, 0x6c51, 0x6c52, 0x6c53, 0x6c56, 0x6c58,\n  /* 0x9b */\n  0x6c59, 0x6c5a, 0x6c62, 0x6c63, 0x6c65, 0x6c66, 0x6c67, 0x6c6b,\n  0x6c6c, 0x6c6d, 0x6c6e, 0x6c6f, 0x6c71, 0x6c73, 0x6c75, 0x6c77,\n  0x6c78, 0x6c7a, 0x6c7b, 0x6c7c, 0x6c7f, 0x6c80, 0x6c84, 0x6c87,\n  0x6c8a, 0x6c8b, 0x6c8d, 0x6c8e, 0x6c91, 0x6c92, 0x6c95, 0x6c96,\n  0x6c97, 0x6c98, 0x6c9a, 0x6c9c, 0x6c9d, 0x6c9e, 0x6ca0, 0x6ca2,\n  0x6ca8, 0x6cac, 0x6caf, 0x6cb0, 0x6cb4, 0x6cb5, 0x6cb6, 0x6cb7,\n  0x6cba, 0x6cc0, 0x6cc1, 0x6cc2, 0x6cc3, 0x6cc6, 0x6cc7, 0x6cc8,\n  0x6ccb, 0x6ccd, 0x6cce, 0x6ccf, 0x6cd1, 0x6cd2, 0x6cd8, 0x6cd9,\n  0x6cda, 0x6cdc, 0x6cdd, 0x6cdf, 0x6ce4, 0x6ce6, 0x6ce7, 0x6ce9,\n  0x6cec, 0x6ced, 0x6cf2, 0x6cf4, 0x6cf9, 0x6cff, 0x6d00, 0x6d02,\n  0x6d03, 0x6d05, 0x6d06, 0x6d08, 0x6d09, 0x6d0a, 0x6d0d, 0x6d0f,\n  0x6d10, 0x6d11, 0x6d13, 0x6d14, 0x6d15, 0x6d16, 0x6d18, 0x6d1c,\n  0x6d1d, 0x6d1f, 0x6d20, 0x6d21, 0x6d22, 0x6d23, 0x6d24, 0x6d26,\n  0x6d28, 0x6d29, 0x6d2c, 0x6d2d, 0x6d2f, 0x6d30, 0x6d34, 0x6d36,\n  0x6d37, 0x6d38, 0x6d3a, 0x6d3f, 0x6d40, 0x6d42, 0x6d44, 0x6d49,\n  0x6d4c, 0x6d50, 0x6d55, 0x6d56, 0x6d57, 0x6d58, 0x6d5b, 0x6d5d,\n  0x6d5f, 0x6d61, 0x6d62, 0x6d64, 0x6d65, 0x6d67, 0x6d68, 0x6d6b,\n  0x6d6c, 0x6d6d, 0x6d70, 0x6d71, 0x6d72, 0x6d73, 0x6d75, 0x6d76,\n  0x6d79, 0x6d7a, 0x6d7b, 0x6d7d, 0x6d7e, 0x6d7f, 0x6d80, 0x6d81,\n  0x6d83, 0x6d84, 0x6d86, 0x6d87, 0x6d8a, 0x6d8b, 0x6d8d, 0x6d8f,\n  0x6d90, 0x6d92, 0x6d96, 0x6d97, 0x6d98, 0x6d99, 0x6d9a, 0x6d9c,\n  0x6da2, 0x6da5, 0x6dac, 0x6dad, 0x6db0, 0x6db1, 0x6db3, 0x6db4,\n  0x6db6, 0x6db7, 0x6db9, 0x6dba, 0x6dbb, 0x6dbc, 0x6dbd, 0x6dbe,\n  0x6dc1, 0x6dc2, 0x6dc3, 0x6dc8, 0x6dc9, 0x6dca,\n  /* 0x9c */\n  0x6dcd, 0x6dce, 0x6dcf, 0x6dd0, 0x6dd2, 0x6dd3, 0x6dd4, 0x6dd5,\n  0x6dd7, 0x6dda, 0x6ddb, 0x6ddc, 0x6ddf, 0x6de2, 0x6de3, 0x6de5,\n  0x6de7, 0x6de8, 0x6de9, 0x6dea, 0x6ded, 0x6def, 0x6df0, 0x6df2,\n  0x6df4, 0x6df5, 0x6df6, 0x6df8, 0x6dfa, 0x6dfd, 0x6dfe, 0x6dff,\n  0x6e00, 0x6e01, 0x6e02, 0x6e03, 0x6e04, 0x6e06, 0x6e07, 0x6e08,\n  0x6e09, 0x6e0b, 0x6e0f, 0x6e12, 0x6e13, 0x6e15, 0x6e18, 0x6e19,\n  0x6e1b, 0x6e1c, 0x6e1e, 0x6e1f, 0x6e22, 0x6e26, 0x6e27, 0x6e28,\n  0x6e2a, 0x6e2c, 0x6e2e, 0x6e30, 0x6e31, 0x6e33, 0x6e35, 0x6e36,\n  0x6e37, 0x6e39, 0x6e3b, 0x6e3c, 0x6e3d, 0x6e3e, 0x6e3f, 0x6e40,\n  0x6e41, 0x6e42, 0x6e45, 0x6e46, 0x6e47, 0x6e48, 0x6e49, 0x6e4a,\n  0x6e4b, 0x6e4c, 0x6e4f, 0x6e50, 0x6e51, 0x6e52, 0x6e55, 0x6e57,\n  0x6e59, 0x6e5a, 0x6e5c, 0x6e5d, 0x6e5e, 0x6e60, 0x6e61, 0x6e62,\n  0x6e63, 0x6e64, 0x6e65, 0x6e66, 0x6e67, 0x6e68, 0x6e69, 0x6e6a,\n  0x6e6c, 0x6e6d, 0x6e6f, 0x6e70, 0x6e71, 0x6e72, 0x6e73, 0x6e74,\n  0x6e75, 0x6e76, 0x6e77, 0x6e78, 0x6e79, 0x6e7a, 0x6e7b, 0x6e7c,\n  0x6e7d, 0x6e80, 0x6e81, 0x6e82, 0x6e84, 0x6e87, 0x6e88, 0x6e8a,\n  0x6e8b, 0x6e8c, 0x6e8d, 0x6e8e, 0x6e91, 0x6e92, 0x6e93, 0x6e94,\n  0x6e95, 0x6e96, 0x6e97, 0x6e99, 0x6e9a, 0x6e9b, 0x6e9d, 0x6e9e,\n  0x6ea0, 0x6ea1, 0x6ea3, 0x6ea4, 0x6ea6, 0x6ea8, 0x6ea9, 0x6eab,\n  0x6eac, 0x6ead, 0x6eae, 0x6eb0, 0x6eb3, 0x6eb5, 0x6eb8, 0x6eb9,\n  0x6ebc, 0x6ebe, 0x6ebf, 0x6ec0, 0x6ec3, 0x6ec4, 0x6ec5, 0x6ec6,\n  0x6ec8, 0x6ec9, 0x6eca, 0x6ecc, 0x6ecd, 0x6ece, 0x6ed0, 0x6ed2,\n  0x6ed6, 0x6ed8, 0x6ed9, 0x6edb, 0x6edc, 0x6edd, 0x6ee3, 0x6ee7,\n  0x6eea, 0x6eeb, 0x6eec, 0x6eed, 0x6eee, 0x6eef,\n  /* 0x9d */\n  0x6ef0, 0x6ef1, 0x6ef2, 0x6ef3, 0x6ef5, 0x6ef6, 0x6ef7, 0x6ef8,\n  0x6efa, 0x6efb, 0x6efc, 0x6efd, 0x6efe, 0x6eff, 0x6f00, 0x6f01,\n  0x6f03, 0x6f04, 0x6f05, 0x6f07, 0x6f08, 0x6f0a, 0x6f0b, 0x6f0c,\n  0x6f0d, 0x6f0e, 0x6f10, 0x6f11, 0x6f12, 0x6f16, 0x6f17, 0x6f18,\n  0x6f19, 0x6f1a, 0x6f1b, 0x6f1c, 0x6f1d, 0x6f1e, 0x6f1f, 0x6f21,\n  0x6f22, 0x6f23, 0x6f25, 0x6f26, 0x6f27, 0x6f28, 0x6f2c, 0x6f2e,\n  0x6f30, 0x6f32, 0x6f34, 0x6f35, 0x6f37, 0x6f38, 0x6f39, 0x6f3a,\n  0x6f3b, 0x6f3c, 0x6f3d, 0x6f3f, 0x6f40, 0x6f41, 0x6f42, 0x6f43,\n  0x6f44, 0x6f45, 0x6f48, 0x6f49, 0x6f4a, 0x6f4c, 0x6f4e, 0x6f4f,\n  0x6f50, 0x6f51, 0x6f52, 0x6f53, 0x6f54, 0x6f55, 0x6f56, 0x6f57,\n  0x6f59, 0x6f5a, 0x6f5b, 0x6f5d, 0x6f5f, 0x6f60, 0x6f61, 0x6f63,\n  0x6f64, 0x6f65, 0x6f67, 0x6f68, 0x6f69, 0x6f6a, 0x6f6b, 0x6f6c,\n  0x6f6f, 0x6f70, 0x6f71, 0x6f73, 0x6f75, 0x6f76, 0x6f77, 0x6f79,\n  0x6f7b, 0x6f7d, 0x6f7e, 0x6f7f, 0x6f80, 0x6f81, 0x6f82, 0x6f83,\n  0x6f85, 0x6f86, 0x6f87, 0x6f8a, 0x6f8b, 0x6f8f, 0x6f90, 0x6f91,\n  0x6f92, 0x6f93, 0x6f94, 0x6f95, 0x6f96, 0x6f97, 0x6f98, 0x6f99,\n  0x6f9a, 0x6f9b, 0x6f9d, 0x6f9e, 0x6f9f, 0x6fa0, 0x6fa2, 0x6fa3,\n  0x6fa4, 0x6fa5, 0x6fa6, 0x6fa8, 0x6fa9, 0x6faa, 0x6fab, 0x6fac,\n  0x6fad, 0x6fae, 0x6faf, 0x6fb0, 0x6fb1, 0x6fb2, 0x6fb4, 0x6fb5,\n  0x6fb7, 0x6fb8, 0x6fba, 0x6fbb, 0x6fbc, 0x6fbd, 0x6fbe, 0x6fbf,\n  0x6fc1, 0x6fc3, 0x6fc4, 0x6fc5, 0x6fc6, 0x6fc7, 0x6fc8, 0x6fca,\n  0x6fcb, 0x6fcc, 0x6fcd, 0x6fce, 0x6fcf, 0x6fd0, 0x6fd3, 0x6fd4,\n  0x6fd5, 0x6fd6, 0x6fd7, 0x6fd8, 0x6fd9, 0x6fda, 0x6fdb, 0x6fdc,\n  0x6fdd, 0x6fdf, 0x6fe2, 0x6fe3, 0x6fe4, 0x6fe5,\n  /* 0x9e */\n  0x6fe6, 0x6fe7, 0x6fe8, 0x6fe9, 0x6fea, 0x6feb, 0x6fec, 0x6fed,\n  0x6ff0, 0x6ff1, 0x6ff2, 0x6ff3, 0x6ff4, 0x6ff5, 0x6ff6, 0x6ff7,\n  0x6ff8, 0x6ff9, 0x6ffa, 0x6ffb, 0x6ffc, 0x6ffd, 0x6ffe, 0x6fff,\n  0x7000, 0x7001, 0x7002, 0x7003, 0x7004, 0x7005, 0x7006, 0x7007,\n  0x7008, 0x7009, 0x700a, 0x700b, 0x700c, 0x700d, 0x700e, 0x700f,\n  0x7010, 0x7012, 0x7013, 0x7014, 0x7015, 0x7016, 0x7017, 0x7018,\n  0x7019, 0x701c, 0x701d, 0x701e, 0x701f, 0x7020, 0x7021, 0x7022,\n  0x7024, 0x7025, 0x7026, 0x7027, 0x7028, 0x7029, 0x702a, 0x702b,\n  0x702c, 0x702d, 0x702e, 0x702f, 0x7030, 0x7031, 0x7032, 0x7033,\n  0x7034, 0x7036, 0x7037, 0x7038, 0x703a, 0x703b, 0x703c, 0x703d,\n  0x703e, 0x703f, 0x7040, 0x7041, 0x7042, 0x7043, 0x7044, 0x7045,\n  0x7046, 0x7047, 0x7048, 0x7049, 0x704a, 0x704b, 0x704d, 0x704e,\n  0x7050, 0x7051, 0x7052, 0x7053, 0x7054, 0x7055, 0x7056, 0x7057,\n  0x7058, 0x7059, 0x705a, 0x705b, 0x705c, 0x705d, 0x705f, 0x7060,\n  0x7061, 0x7062, 0x7063, 0x7064, 0x7065, 0x7066, 0x7067, 0x7068,\n  0x7069, 0x706a, 0x706e, 0x7071, 0x7072, 0x7073, 0x7074, 0x7077,\n  0x7079, 0x707a, 0x707b, 0x707d, 0x7081, 0x7082, 0x7083, 0x7084,\n  0x7086, 0x7087, 0x7088, 0x708b, 0x708c, 0x708d, 0x708f, 0x7090,\n  0x7091, 0x7093, 0x7097, 0x7098, 0x709a, 0x709b, 0x709e, 0x709f,\n  0x70a0, 0x70a1, 0x70a2, 0x70a3, 0x70a4, 0x70a5, 0x70a6, 0x70a7,\n  0x70a8, 0x70a9, 0x70aa, 0x70b0, 0x70b2, 0x70b4, 0x70b5, 0x70b6,\n  0x70ba, 0x70be, 0x70bf, 0x70c4, 0x70c5, 0x70c6, 0x70c7, 0x70c9,\n  0x70cb, 0x70cc, 0x70cd, 0x70ce, 0x70cf, 0x70d0, 0x70d1, 0x70d2,\n  0x70d3, 0x70d4, 0x70d5, 0x70d6, 0x70d7, 0x70da,\n  /* 0x9f */\n  0x70dc, 0x70dd, 0x70de, 0x70e0, 0x70e1, 0x70e2, 0x70e3, 0x70e5,\n  0x70ea, 0x70ee, 0x70f0, 0x70f1, 0x70f2, 0x70f3, 0x70f4, 0x70f5,\n  0x70f6, 0x70f8, 0x70fa, 0x70fb, 0x70fc, 0x70fe, 0x70ff, 0x7100,\n  0x7101, 0x7102, 0x7103, 0x7104, 0x7105, 0x7106, 0x7107, 0x7108,\n  0x710b, 0x710c, 0x710d, 0x710e, 0x710f, 0x7111, 0x7112, 0x7114,\n  0x7117, 0x711b, 0x711c, 0x711d, 0x711e, 0x711f, 0x7120, 0x7121,\n  0x7122, 0x7123, 0x7124, 0x7125, 0x7127, 0x7128, 0x7129, 0x712a,\n  0x712b, 0x712c, 0x712d, 0x712e, 0x7132, 0x7133, 0x7134, 0x7135,\n  0x7137, 0x7138, 0x7139, 0x713a, 0x713b, 0x713c, 0x713d, 0x713e,\n  0x713f, 0x7140, 0x7141, 0x7142, 0x7143, 0x7144, 0x7146, 0x7147,\n  0x7148, 0x7149, 0x714b, 0x714d, 0x714f, 0x7150, 0x7151, 0x7152,\n  0x7153, 0x7154, 0x7155, 0x7156, 0x7157, 0x7158, 0x7159, 0x715a,\n  0x715b, 0x715d, 0x715f, 0x7160, 0x7161, 0x7162, 0x7163, 0x7165,\n  0x7169, 0x716a, 0x716b, 0x716c, 0x716d, 0x716f, 0x7170, 0x7171,\n  0x7174, 0x7175, 0x7176, 0x7177, 0x7179, 0x717b, 0x717c, 0x717e,\n  0x717f, 0x7180, 0x7181, 0x7182, 0x7183, 0x7185, 0x7186, 0x7187,\n  0x7188, 0x7189, 0x718b, 0x718c, 0x718d, 0x718e, 0x7190, 0x7191,\n  0x7192, 0x7193, 0x7195, 0x7196, 0x7197, 0x719a, 0x719b, 0x719c,\n  0x719d, 0x719e, 0x71a1, 0x71a2, 0x71a3, 0x71a4, 0x71a5, 0x71a6,\n  0x71a7, 0x71a9, 0x71aa, 0x71ab, 0x71ad, 0x71ae, 0x71af, 0x71b0,\n  0x71b1, 0x71b2, 0x71b4, 0x71b6, 0x71b7, 0x71b8, 0x71ba, 0x71bb,\n  0x71bc, 0x71bd, 0x71be, 0x71bf, 0x71c0, 0x71c1, 0x71c2, 0x71c4,\n  0x71c5, 0x71c6, 0x71c7, 0x71c8, 0x71c9, 0x71ca, 0x71cb, 0x71cc,\n  0x71cd, 0x71cf, 0x71d0, 0x71d1, 0x71d2, 0x71d3,\n  /* 0xa0 */\n  0x71d6, 0x71d7, 0x71d8, 0x71d9, 0x71da, 0x71db, 0x71dc, 0x71dd,\n  0x71de, 0x71df, 0x71e1, 0x71e2, 0x71e3, 0x71e4, 0x71e6, 0x71e8,\n  0x71e9, 0x71ea, 0x71eb, 0x71ec, 0x71ed, 0x71ef, 0x71f0, 0x71f1,\n  0x71f2, 0x71f3, 0x71f4, 0x71f5, 0x71f6, 0x71f7, 0x71f8, 0x71fa,\n  0x71fb, 0x71fc, 0x71fd, 0x71fe, 0x71ff, 0x7200, 0x7201, 0x7202,\n  0x7203, 0x7204, 0x7205, 0x7207, 0x7208, 0x7209, 0x720a, 0x720b,\n  0x720c, 0x720d, 0x720e, 0x720f, 0x7210, 0x7211, 0x7212, 0x7213,\n  0x7214, 0x7215, 0x7216, 0x7217, 0x7218, 0x7219, 0x721a, 0x721b,\n  0x721c, 0x721e, 0x721f, 0x7220, 0x7221, 0x7222, 0x7223, 0x7224,\n  0x7225, 0x7226, 0x7227, 0x7229, 0x722b, 0x722d, 0x722e, 0x722f,\n  0x7232, 0x7233, 0x7234, 0x723a, 0x723c, 0x723e, 0x7240, 0x7241,\n  0x7242, 0x7243, 0x7244, 0x7245, 0x7246, 0x7249, 0x724a, 0x724b,\n  0x724e, 0x724f, 0x7250, 0x7251, 0x7253, 0x7254, 0x7255, 0x7257,\n  0x7258, 0x725a, 0x725c, 0x725e, 0x7260, 0x7263, 0x7264, 0x7265,\n  0x7268, 0x726a, 0x726b, 0x726c, 0x726d, 0x7270, 0x7271, 0x7273,\n  0x7274, 0x7276, 0x7277, 0x7278, 0x727b, 0x727c, 0x727d, 0x7282,\n  0x7283, 0x7285, 0x7286, 0x7287, 0x7288, 0x7289, 0x728c, 0x728e,\n  0x7290, 0x7291, 0x7293, 0x7294, 0x7295, 0x7296, 0x7297, 0x7298,\n  0x7299, 0x729a, 0x729b, 0x729c, 0x729d, 0x729e, 0x72a0, 0x72a1,\n  0x72a2, 0x72a3, 0x72a4, 0x72a5, 0x72a6, 0x72a7, 0x72a8, 0x72a9,\n  0x72aa, 0x72ab, 0x72ae, 0x72b1, 0x72b2, 0x72b3, 0x72b5, 0x72ba,\n  0x72bb, 0x72bc, 0x72bd, 0x72be, 0x72bf, 0x72c0, 0x72c5, 0x72c6,\n  0x72c7, 0x72c9, 0x72ca, 0x72cb, 0x72cc, 0x72cf, 0x72d1, 0x72d3,\n  0x72d4, 0x72d5, 0x72d6, 0x72d8, 0x72da, 0x72db,\n};\n\nstatic int\ngbkext1_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x81 && c1 <= 0xa0)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0x80 && c2 < 0xff)) {\n        unsigned int i = 190 * (c1 - 0x81) + (c2 - (c2 >= 0x80 ? 0x41 : 0x40));\n        unsigned short wc = 0xfffd;\n        {\n          if (i < 6080)\n            wc = gbkext1_2uni_page81[i];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/gbkext2.h",
    "content": "/*\n * Copyright (C) 1999-2000, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GBK/4 and GBK/5 extensions\n */\n\nstatic const unsigned short gbkext2_2uni_pagea8[8272] = {\n  /* 0xa8 */\n  0x02ca, 0x02cb, 0x02d9, 0x2013, 0x2015, 0x2025, 0x2035, 0x2105,\n  0x2109, 0x2196, 0x2197, 0x2198, 0x2199, 0x2215, 0x221f, 0x2223,\n  0x2252, 0x2266, 0x2267, 0x22bf, 0x2550, 0x2551, 0x2552, 0x2553,\n  0x2554, 0x2555, 0x2556, 0x2557, 0x2558, 0x2559, 0x255a, 0x255b,\n  0x255c, 0x255d, 0x255e, 0x255f, 0x2560, 0x2561, 0x2562, 0x2563,\n  0x2564, 0x2565, 0x2566, 0x2567, 0x2568, 0x2569, 0x256a, 0x256b,\n  0x256c, 0x256d, 0x256e, 0x256f, 0x2570, 0x2571, 0x2572, 0x2573,\n  0x2581, 0x2582, 0x2583, 0x2584, 0x2585, 0x2586, 0x2587, 0x2588,\n  0x2589, 0x258a, 0x258b, 0x258c, 0x258d, 0x258e, 0x258f, 0x2593,\n  0x2594, 0x2595, 0x25bc, 0x25bd, 0x25e2, 0x25e3, 0x25e4, 0x25e5,\n  0x2609, 0x2295, 0x3012, 0x301d, 0x301e, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xa9 */\n  0x3021, 0x3022, 0x3023, 0x3024, 0x3025, 0x3026, 0x3027, 0x3028,\n  0x3029, 0x32a3, 0x338e, 0x338f, 0x339c, 0x339d, 0x339e, 0x33a1,\n  0x33c4, 0x33ce, 0x33d1, 0x33d2, 0x33d5, 0xfe30, 0xffe2, 0xffe4,\n  0xfffd, 0x2121, 0x3231, 0xfffd, 0x2010, 0xfffd, 0xfffd, 0xfffd,\n  0x30fc, 0x309b, 0x309c, 0x30fd, 0x30fe, 0x3006, 0x309d, 0x309e,\n  0xfe49, 0xfe4a, 0xfe4b, 0xfe4c, 0xfe4d, 0xfe4e, 0xfe4f, 0xfe50,\n  0xfe51, 0xfe52, 0xfe54, 0xfe55, 0xfe56, 0xfe57, 0xfe59, 0xfe5a,\n  0xfe5b, 0xfe5c, 0xfe5d, 0xfe5e, 0xfe5f, 0xfe60, 0xfe61, 0xfe62,\n  0xfe63, 0xfe64, 0xfe65, 0xfe66, 0xfe68, 0xfe69, 0xfe6a, 0xfe6b,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x3007, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xaa */\n  0x72dc, 0x72dd, 0x72df, 0x72e2, 0x72e3, 0x72e4, 0x72e5, 0x72e6,\n  0x72e7, 0x72ea, 0x72eb, 0x72f5, 0x72f6, 0x72f9, 0x72fd, 0x72fe,\n  0x72ff, 0x7300, 0x7302, 0x7304, 0x7305, 0x7306, 0x7307, 0x7308,\n  0x7309, 0x730b, 0x730c, 0x730d, 0x730f, 0x7310, 0x7311, 0x7312,\n  0x7314, 0x7318, 0x7319, 0x731a, 0x731f, 0x7320, 0x7323, 0x7324,\n  0x7326, 0x7327, 0x7328, 0x732d, 0x732f, 0x7330, 0x7332, 0x7333,\n  0x7335, 0x7336, 0x733a, 0x733b, 0x733c, 0x733d, 0x7340, 0x7341,\n  0x7342, 0x7343, 0x7344, 0x7345, 0x7346, 0x7347, 0x7348, 0x7349,\n  0x734a, 0x734b, 0x734c, 0x734e, 0x734f, 0x7351, 0x7353, 0x7354,\n  0x7355, 0x7356, 0x7358, 0x7359, 0x735a, 0x735b, 0x735c, 0x735d,\n  0x735e, 0x735f, 0x7361, 0x7362, 0x7363, 0x7364, 0x7365, 0x7366,\n  0x7367, 0x7368, 0x7369, 0x736a, 0x736b, 0x736e, 0x7370, 0x7371,\n  /* 0xab */\n  0x7372, 0x7373, 0x7374, 0x7375, 0x7376, 0x7377, 0x7378, 0x7379,\n  0x737a, 0x737b, 0x737c, 0x737d, 0x737f, 0x7380, 0x7381, 0x7382,\n  0x7383, 0x7385, 0x7386, 0x7388, 0x738a, 0x738c, 0x738d, 0x738f,\n  0x7390, 0x7392, 0x7393, 0x7394, 0x7395, 0x7397, 0x7398, 0x7399,\n  0x739a, 0x739c, 0x739d, 0x739e, 0x73a0, 0x73a1, 0x73a3, 0x73a4,\n  0x73a5, 0x73a6, 0x73a7, 0x73a8, 0x73aa, 0x73ac, 0x73ad, 0x73b1,\n  0x73b4, 0x73b5, 0x73b6, 0x73b8, 0x73b9, 0x73bc, 0x73bd, 0x73be,\n  0x73bf, 0x73c1, 0x73c3, 0x73c4, 0x73c5, 0x73c6, 0x73c7, 0x73cb,\n  0x73cc, 0x73ce, 0x73d2, 0x73d3, 0x73d4, 0x73d5, 0x73d6, 0x73d7,\n  0x73d8, 0x73da, 0x73db, 0x73dc, 0x73dd, 0x73df, 0x73e1, 0x73e2,\n  0x73e3, 0x73e4, 0x73e6, 0x73e8, 0x73ea, 0x73eb, 0x73ec, 0x73ee,\n  0x73ef, 0x73f0, 0x73f1, 0x73f3, 0x73f4, 0x73f5, 0x73f6, 0x73f7,\n  /* 0xac */\n  0x73f8, 0x73f9, 0x73fa, 0x73fb, 0x73fc, 0x73fd, 0x73fe, 0x73ff,\n  0x7400, 0x7401, 0x7402, 0x7404, 0x7407, 0x7408, 0x740b, 0x740c,\n  0x740d, 0x740e, 0x7411, 0x7412, 0x7413, 0x7414, 0x7415, 0x7416,\n  0x7417, 0x7418, 0x7419, 0x741c, 0x741d, 0x741e, 0x741f, 0x7420,\n  0x7421, 0x7423, 0x7424, 0x7427, 0x7429, 0x742b, 0x742d, 0x742f,\n  0x7431, 0x7432, 0x7437, 0x7438, 0x7439, 0x743a, 0x743b, 0x743d,\n  0x743e, 0x743f, 0x7440, 0x7442, 0x7443, 0x7444, 0x7445, 0x7446,\n  0x7447, 0x7448, 0x7449, 0x744a, 0x744b, 0x744c, 0x744d, 0x744e,\n  0x744f, 0x7450, 0x7451, 0x7452, 0x7453, 0x7454, 0x7456, 0x7458,\n  0x745d, 0x7460, 0x7461, 0x7462, 0x7463, 0x7464, 0x7465, 0x7466,\n  0x7467, 0x7468, 0x7469, 0x746a, 0x746b, 0x746c, 0x746e, 0x746f,\n  0x7471, 0x7472, 0x7473, 0x7474, 0x7475, 0x7478, 0x7479, 0x747a,\n  /* 0xad */\n  0x747b, 0x747c, 0x747d, 0x747f, 0x7482, 0x7484, 0x7485, 0x7486,\n  0x7488, 0x7489, 0x748a, 0x748c, 0x748d, 0x748f, 0x7491, 0x7492,\n  0x7493, 0x7494, 0x7495, 0x7496, 0x7497, 0x7498, 0x7499, 0x749a,\n  0x749b, 0x749d, 0x749f, 0x74a0, 0x74a1, 0x74a2, 0x74a3, 0x74a4,\n  0x74a5, 0x74a6, 0x74aa, 0x74ab, 0x74ac, 0x74ad, 0x74ae, 0x74af,\n  0x74b0, 0x74b1, 0x74b2, 0x74b3, 0x74b4, 0x74b5, 0x74b6, 0x74b7,\n  0x74b8, 0x74b9, 0x74bb, 0x74bc, 0x74bd, 0x74be, 0x74bf, 0x74c0,\n  0x74c1, 0x74c2, 0x74c3, 0x74c4, 0x74c5, 0x74c6, 0x74c7, 0x74c8,\n  0x74c9, 0x74ca, 0x74cb, 0x74cc, 0x74cd, 0x74ce, 0x74cf, 0x74d0,\n  0x74d1, 0x74d3, 0x74d4, 0x74d5, 0x74d6, 0x74d7, 0x74d8, 0x74d9,\n  0x74da, 0x74db, 0x74dd, 0x74df, 0x74e1, 0x74e5, 0x74e7, 0x74e8,\n  0x74e9, 0x74ea, 0x74eb, 0x74ec, 0x74ed, 0x74f0, 0x74f1, 0x74f2,\n  /* 0xae */\n  0x74f3, 0x74f5, 0x74f8, 0x74f9, 0x74fa, 0x74fb, 0x74fc, 0x74fd,\n  0x74fe, 0x7500, 0x7501, 0x7502, 0x7503, 0x7505, 0x7506, 0x7507,\n  0x7508, 0x7509, 0x750a, 0x750b, 0x750c, 0x750e, 0x7510, 0x7512,\n  0x7514, 0x7515, 0x7516, 0x7517, 0x751b, 0x751d, 0x751e, 0x7520,\n  0x7521, 0x7522, 0x7523, 0x7524, 0x7526, 0x7527, 0x752a, 0x752e,\n  0x7534, 0x7536, 0x7539, 0x753c, 0x753d, 0x753f, 0x7541, 0x7542,\n  0x7543, 0x7544, 0x7546, 0x7547, 0x7549, 0x754a, 0x754d, 0x7550,\n  0x7551, 0x7552, 0x7553, 0x7555, 0x7556, 0x7557, 0x7558, 0x755d,\n  0x755e, 0x755f, 0x7560, 0x7561, 0x7562, 0x7563, 0x7564, 0x7567,\n  0x7568, 0x7569, 0x756b, 0x756c, 0x756d, 0x756e, 0x756f, 0x7570,\n  0x7571, 0x7573, 0x7575, 0x7576, 0x7577, 0x757a, 0x757b, 0x757c,\n  0x757d, 0x757e, 0x7580, 0x7581, 0x7582, 0x7584, 0x7585, 0x7587,\n  /* 0xaf */\n  0x7588, 0x7589, 0x758a, 0x758c, 0x758d, 0x758e, 0x7590, 0x7593,\n  0x7595, 0x7598, 0x759b, 0x759c, 0x759e, 0x75a2, 0x75a6, 0x75a7,\n  0x75a8, 0x75a9, 0x75aa, 0x75ad, 0x75b6, 0x75b7, 0x75ba, 0x75bb,\n  0x75bf, 0x75c0, 0x75c1, 0x75c6, 0x75cb, 0x75cc, 0x75ce, 0x75cf,\n  0x75d0, 0x75d1, 0x75d3, 0x75d7, 0x75d9, 0x75da, 0x75dc, 0x75dd,\n  0x75df, 0x75e0, 0x75e1, 0x75e5, 0x75e9, 0x75ec, 0x75ed, 0x75ee,\n  0x75ef, 0x75f2, 0x75f3, 0x75f5, 0x75f6, 0x75f7, 0x75f8, 0x75fa,\n  0x75fb, 0x75fd, 0x75fe, 0x7602, 0x7604, 0x7606, 0x7607, 0x7608,\n  0x7609, 0x760b, 0x760d, 0x760e, 0x760f, 0x7611, 0x7612, 0x7613,\n  0x7614, 0x7616, 0x761a, 0x761c, 0x761d, 0x761e, 0x7621, 0x7623,\n  0x7627, 0x7628, 0x762c, 0x762e, 0x762f, 0x7631, 0x7632, 0x7636,\n  0x7637, 0x7639, 0x763a, 0x763b, 0x763d, 0x7641, 0x7642, 0x7644,\n  /* 0xb0 */\n  0x7645, 0x7646, 0x7647, 0x7648, 0x7649, 0x764a, 0x764b, 0x764e,\n  0x764f, 0x7650, 0x7651, 0x7652, 0x7653, 0x7655, 0x7657, 0x7658,\n  0x7659, 0x765a, 0x765b, 0x765d, 0x765f, 0x7660, 0x7661, 0x7662,\n  0x7664, 0x7665, 0x7666, 0x7667, 0x7668, 0x7669, 0x766a, 0x766c,\n  0x766d, 0x766e, 0x7670, 0x7671, 0x7672, 0x7673, 0x7674, 0x7675,\n  0x7676, 0x7677, 0x7679, 0x767a, 0x767c, 0x767f, 0x7680, 0x7681,\n  0x7683, 0x7685, 0x7689, 0x768a, 0x768c, 0x768d, 0x768f, 0x7690,\n  0x7692, 0x7694, 0x7695, 0x7697, 0x7698, 0x769a, 0x769b, 0x769c,\n  0x769d, 0x769e, 0x769f, 0x76a0, 0x76a1, 0x76a2, 0x76a3, 0x76a5,\n  0x76a6, 0x76a7, 0x76a8, 0x76a9, 0x76aa, 0x76ab, 0x76ac, 0x76ad,\n  0x76af, 0x76b0, 0x76b3, 0x76b5, 0x76b6, 0x76b7, 0x76b8, 0x76b9,\n  0x76ba, 0x76bb, 0x76bc, 0x76bd, 0x76be, 0x76c0, 0x76c1, 0x76c3,\n  /* 0xb1 */\n  0x76c4, 0x76c7, 0x76c9, 0x76cb, 0x76cc, 0x76d3, 0x76d5, 0x76d9,\n  0x76da, 0x76dc, 0x76dd, 0x76de, 0x76e0, 0x76e1, 0x76e2, 0x76e3,\n  0x76e4, 0x76e6, 0x76e7, 0x76e8, 0x76e9, 0x76ea, 0x76eb, 0x76ec,\n  0x76ed, 0x76f0, 0x76f3, 0x76f5, 0x76f6, 0x76f7, 0x76fa, 0x76fb,\n  0x76fd, 0x76ff, 0x7700, 0x7702, 0x7703, 0x7705, 0x7706, 0x770a,\n  0x770c, 0x770e, 0x770f, 0x7710, 0x7711, 0x7712, 0x7713, 0x7714,\n  0x7715, 0x7716, 0x7717, 0x7718, 0x771b, 0x771c, 0x771d, 0x771e,\n  0x7721, 0x7723, 0x7724, 0x7725, 0x7727, 0x772a, 0x772b, 0x772c,\n  0x772e, 0x7730, 0x7731, 0x7732, 0x7733, 0x7734, 0x7739, 0x773b,\n  0x773d, 0x773e, 0x773f, 0x7742, 0x7744, 0x7745, 0x7746, 0x7748,\n  0x7749, 0x774a, 0x774b, 0x774c, 0x774d, 0x774e, 0x774f, 0x7752,\n  0x7753, 0x7754, 0x7755, 0x7756, 0x7757, 0x7758, 0x7759, 0x775c,\n  /* 0xb2 */\n  0x775d, 0x775e, 0x775f, 0x7760, 0x7764, 0x7767, 0x7769, 0x776a,\n  0x776d, 0x776e, 0x776f, 0x7770, 0x7771, 0x7772, 0x7773, 0x7774,\n  0x7775, 0x7776, 0x7777, 0x7778, 0x777a, 0x777b, 0x777c, 0x7781,\n  0x7782, 0x7783, 0x7786, 0x7787, 0x7788, 0x7789, 0x778a, 0x778b,\n  0x778f, 0x7790, 0x7793, 0x7794, 0x7795, 0x7796, 0x7797, 0x7798,\n  0x7799, 0x779a, 0x779b, 0x779c, 0x779d, 0x779e, 0x77a1, 0x77a3,\n  0x77a4, 0x77a6, 0x77a8, 0x77ab, 0x77ad, 0x77ae, 0x77af, 0x77b1,\n  0x77b2, 0x77b4, 0x77b6, 0x77b7, 0x77b8, 0x77b9, 0x77ba, 0x77bc,\n  0x77be, 0x77c0, 0x77c1, 0x77c2, 0x77c3, 0x77c4, 0x77c5, 0x77c6,\n  0x77c7, 0x77c8, 0x77c9, 0x77ca, 0x77cb, 0x77cc, 0x77ce, 0x77cf,\n  0x77d0, 0x77d1, 0x77d2, 0x77d3, 0x77d4, 0x77d5, 0x77d6, 0x77d8,\n  0x77d9, 0x77da, 0x77dd, 0x77de, 0x77df, 0x77e0, 0x77e1, 0x77e4,\n  /* 0xb3 */\n  0x77e6, 0x77e8, 0x77ea, 0x77ef, 0x77f0, 0x77f1, 0x77f2, 0x77f4,\n  0x77f5, 0x77f7, 0x77f9, 0x77fa, 0x77fb, 0x77fc, 0x7803, 0x7804,\n  0x7805, 0x7806, 0x7807, 0x7808, 0x780a, 0x780b, 0x780e, 0x780f,\n  0x7810, 0x7813, 0x7815, 0x7819, 0x781b, 0x781e, 0x7820, 0x7821,\n  0x7822, 0x7824, 0x7828, 0x782a, 0x782b, 0x782e, 0x782f, 0x7831,\n  0x7832, 0x7833, 0x7835, 0x7836, 0x783d, 0x783f, 0x7841, 0x7842,\n  0x7843, 0x7844, 0x7846, 0x7848, 0x7849, 0x784a, 0x784b, 0x784d,\n  0x784f, 0x7851, 0x7853, 0x7854, 0x7858, 0x7859, 0x785a, 0x785b,\n  0x785c, 0x785e, 0x785f, 0x7860, 0x7861, 0x7862, 0x7863, 0x7864,\n  0x7865, 0x7866, 0x7867, 0x7868, 0x7869, 0x786f, 0x7870, 0x7871,\n  0x7872, 0x7873, 0x7874, 0x7875, 0x7876, 0x7878, 0x7879, 0x787a,\n  0x787b, 0x787d, 0x787e, 0x787f, 0x7880, 0x7881, 0x7882, 0x7883,\n  /* 0xb4 */\n  0x7884, 0x7885, 0x7886, 0x7888, 0x788a, 0x788b, 0x788f, 0x7890,\n  0x7892, 0x7894, 0x7895, 0x7896, 0x7899, 0x789d, 0x789e, 0x78a0,\n  0x78a2, 0x78a4, 0x78a6, 0x78a8, 0x78a9, 0x78aa, 0x78ab, 0x78ac,\n  0x78ad, 0x78ae, 0x78af, 0x78b5, 0x78b6, 0x78b7, 0x78b8, 0x78ba,\n  0x78bb, 0x78bc, 0x78bd, 0x78bf, 0x78c0, 0x78c2, 0x78c3, 0x78c4,\n  0x78c6, 0x78c7, 0x78c8, 0x78cc, 0x78cd, 0x78ce, 0x78cf, 0x78d1,\n  0x78d2, 0x78d3, 0x78d6, 0x78d7, 0x78d8, 0x78da, 0x78db, 0x78dc,\n  0x78dd, 0x78de, 0x78df, 0x78e0, 0x78e1, 0x78e2, 0x78e3, 0x78e4,\n  0x78e5, 0x78e6, 0x78e7, 0x78e9, 0x78ea, 0x78eb, 0x78ed, 0x78ee,\n  0x78ef, 0x78f0, 0x78f1, 0x78f3, 0x78f5, 0x78f6, 0x78f8, 0x78f9,\n  0x78fb, 0x78fc, 0x78fd, 0x78fe, 0x78ff, 0x7900, 0x7902, 0x7903,\n  0x7904, 0x7906, 0x7907, 0x7908, 0x7909, 0x790a, 0x790b, 0x790c,\n  /* 0xb5 */\n  0x790d, 0x790e, 0x790f, 0x7910, 0x7911, 0x7912, 0x7914, 0x7915,\n  0x7916, 0x7917, 0x7918, 0x7919, 0x791a, 0x791b, 0x791c, 0x791d,\n  0x791f, 0x7920, 0x7921, 0x7922, 0x7923, 0x7925, 0x7926, 0x7927,\n  0x7928, 0x7929, 0x792a, 0x792b, 0x792c, 0x792d, 0x792e, 0x792f,\n  0x7930, 0x7931, 0x7932, 0x7933, 0x7935, 0x7936, 0x7937, 0x7938,\n  0x7939, 0x793d, 0x793f, 0x7942, 0x7943, 0x7944, 0x7945, 0x7947,\n  0x794a, 0x794b, 0x794c, 0x794d, 0x794e, 0x794f, 0x7950, 0x7951,\n  0x7952, 0x7954, 0x7955, 0x7958, 0x7959, 0x7961, 0x7963, 0x7964,\n  0x7966, 0x7969, 0x796a, 0x796b, 0x796c, 0x796e, 0x7970, 0x7971,\n  0x7972, 0x7973, 0x7974, 0x7975, 0x7976, 0x7979, 0x797b, 0x797c,\n  0x797d, 0x797e, 0x797f, 0x7982, 0x7983, 0x7986, 0x7987, 0x7988,\n  0x7989, 0x798b, 0x798c, 0x798d, 0x798e, 0x7990, 0x7991, 0x7992,\n  /* 0xb6 */\n  0x7993, 0x7994, 0x7995, 0x7996, 0x7997, 0x7998, 0x7999, 0x799b,\n  0x799c, 0x799d, 0x799e, 0x799f, 0x79a0, 0x79a1, 0x79a2, 0x79a3,\n  0x79a4, 0x79a5, 0x79a6, 0x79a8, 0x79a9, 0x79aa, 0x79ab, 0x79ac,\n  0x79ad, 0x79ae, 0x79af, 0x79b0, 0x79b1, 0x79b2, 0x79b4, 0x79b5,\n  0x79b6, 0x79b7, 0x79b8, 0x79bc, 0x79bf, 0x79c2, 0x79c4, 0x79c5,\n  0x79c7, 0x79c8, 0x79ca, 0x79cc, 0x79ce, 0x79cf, 0x79d0, 0x79d3,\n  0x79d4, 0x79d6, 0x79d7, 0x79d9, 0x79da, 0x79db, 0x79dc, 0x79dd,\n  0x79de, 0x79e0, 0x79e1, 0x79e2, 0x79e5, 0x79e8, 0x79ea, 0x79ec,\n  0x79ee, 0x79f1, 0x79f2, 0x79f3, 0x79f4, 0x79f5, 0x79f6, 0x79f7,\n  0x79f9, 0x79fa, 0x79fc, 0x79fe, 0x79ff, 0x7a01, 0x7a04, 0x7a05,\n  0x7a07, 0x7a08, 0x7a09, 0x7a0a, 0x7a0c, 0x7a0f, 0x7a10, 0x7a11,\n  0x7a12, 0x7a13, 0x7a15, 0x7a16, 0x7a18, 0x7a19, 0x7a1b, 0x7a1c,\n  /* 0xb7 */\n  0x7a1d, 0x7a1f, 0x7a21, 0x7a22, 0x7a24, 0x7a25, 0x7a26, 0x7a27,\n  0x7a28, 0x7a29, 0x7a2a, 0x7a2b, 0x7a2c, 0x7a2d, 0x7a2e, 0x7a2f,\n  0x7a30, 0x7a31, 0x7a32, 0x7a34, 0x7a35, 0x7a36, 0x7a38, 0x7a3a,\n  0x7a3e, 0x7a40, 0x7a41, 0x7a42, 0x7a43, 0x7a44, 0x7a45, 0x7a47,\n  0x7a48, 0x7a49, 0x7a4a, 0x7a4b, 0x7a4c, 0x7a4d, 0x7a4e, 0x7a4f,\n  0x7a50, 0x7a52, 0x7a53, 0x7a54, 0x7a55, 0x7a56, 0x7a58, 0x7a59,\n  0x7a5a, 0x7a5b, 0x7a5c, 0x7a5d, 0x7a5e, 0x7a5f, 0x7a60, 0x7a61,\n  0x7a62, 0x7a63, 0x7a64, 0x7a65, 0x7a66, 0x7a67, 0x7a68, 0x7a69,\n  0x7a6a, 0x7a6b, 0x7a6c, 0x7a6d, 0x7a6e, 0x7a6f, 0x7a71, 0x7a72,\n  0x7a73, 0x7a75, 0x7a7b, 0x7a7c, 0x7a7d, 0x7a7e, 0x7a82, 0x7a85,\n  0x7a87, 0x7a89, 0x7a8a, 0x7a8b, 0x7a8c, 0x7a8e, 0x7a8f, 0x7a90,\n  0x7a93, 0x7a94, 0x7a99, 0x7a9a, 0x7a9b, 0x7a9e, 0x7aa1, 0x7aa2,\n  /* 0xb8 */\n  0x7aa3, 0x7aa4, 0x7aa7, 0x7aa9, 0x7aaa, 0x7aab, 0x7aae, 0x7aaf,\n  0x7ab0, 0x7ab1, 0x7ab2, 0x7ab4, 0x7ab5, 0x7ab6, 0x7ab7, 0x7ab8,\n  0x7ab9, 0x7aba, 0x7abb, 0x7abc, 0x7abd, 0x7abe, 0x7ac0, 0x7ac1,\n  0x7ac2, 0x7ac3, 0x7ac4, 0x7ac5, 0x7ac6, 0x7ac7, 0x7ac8, 0x7ac9,\n  0x7aca, 0x7acc, 0x7acd, 0x7ace, 0x7acf, 0x7ad0, 0x7ad1, 0x7ad2,\n  0x7ad3, 0x7ad4, 0x7ad5, 0x7ad7, 0x7ad8, 0x7ada, 0x7adb, 0x7adc,\n  0x7add, 0x7ae1, 0x7ae2, 0x7ae4, 0x7ae7, 0x7ae8, 0x7ae9, 0x7aea,\n  0x7aeb, 0x7aec, 0x7aee, 0x7af0, 0x7af1, 0x7af2, 0x7af3, 0x7af4,\n  0x7af5, 0x7af6, 0x7af7, 0x7af8, 0x7afb, 0x7afc, 0x7afe, 0x7b00,\n  0x7b01, 0x7b02, 0x7b05, 0x7b07, 0x7b09, 0x7b0c, 0x7b0d, 0x7b0e,\n  0x7b10, 0x7b12, 0x7b13, 0x7b16, 0x7b17, 0x7b18, 0x7b1a, 0x7b1c,\n  0x7b1d, 0x7b1f, 0x7b21, 0x7b22, 0x7b23, 0x7b27, 0x7b29, 0x7b2d,\n  /* 0xb9 */\n  0x7b2f, 0x7b30, 0x7b32, 0x7b34, 0x7b35, 0x7b36, 0x7b37, 0x7b39,\n  0x7b3b, 0x7b3d, 0x7b3f, 0x7b40, 0x7b41, 0x7b42, 0x7b43, 0x7b44,\n  0x7b46, 0x7b48, 0x7b4a, 0x7b4d, 0x7b4e, 0x7b53, 0x7b55, 0x7b57,\n  0x7b59, 0x7b5c, 0x7b5e, 0x7b5f, 0x7b61, 0x7b63, 0x7b64, 0x7b65,\n  0x7b66, 0x7b67, 0x7b68, 0x7b69, 0x7b6a, 0x7b6b, 0x7b6c, 0x7b6d,\n  0x7b6f, 0x7b70, 0x7b73, 0x7b74, 0x7b76, 0x7b78, 0x7b7a, 0x7b7c,\n  0x7b7d, 0x7b7f, 0x7b81, 0x7b82, 0x7b83, 0x7b84, 0x7b86, 0x7b87,\n  0x7b88, 0x7b89, 0x7b8a, 0x7b8b, 0x7b8c, 0x7b8e, 0x7b8f, 0x7b91,\n  0x7b92, 0x7b93, 0x7b96, 0x7b98, 0x7b99, 0x7b9a, 0x7b9b, 0x7b9e,\n  0x7b9f, 0x7ba0, 0x7ba3, 0x7ba4, 0x7ba5, 0x7bae, 0x7baf, 0x7bb0,\n  0x7bb2, 0x7bb3, 0x7bb5, 0x7bb6, 0x7bb7, 0x7bb9, 0x7bba, 0x7bbb,\n  0x7bbc, 0x7bbd, 0x7bbe, 0x7bbf, 0x7bc0, 0x7bc2, 0x7bc3, 0x7bc4,\n  /* 0xba */\n  0x7bc5, 0x7bc8, 0x7bc9, 0x7bca, 0x7bcb, 0x7bcd, 0x7bce, 0x7bcf,\n  0x7bd0, 0x7bd2, 0x7bd4, 0x7bd5, 0x7bd6, 0x7bd7, 0x7bd8, 0x7bdb,\n  0x7bdc, 0x7bde, 0x7bdf, 0x7be0, 0x7be2, 0x7be3, 0x7be4, 0x7be7,\n  0x7be8, 0x7be9, 0x7beb, 0x7bec, 0x7bed, 0x7bef, 0x7bf0, 0x7bf2,\n  0x7bf3, 0x7bf4, 0x7bf5, 0x7bf6, 0x7bf8, 0x7bf9, 0x7bfa, 0x7bfb,\n  0x7bfd, 0x7bff, 0x7c00, 0x7c01, 0x7c02, 0x7c03, 0x7c04, 0x7c05,\n  0x7c06, 0x7c08, 0x7c09, 0x7c0a, 0x7c0d, 0x7c0e, 0x7c10, 0x7c11,\n  0x7c12, 0x7c13, 0x7c14, 0x7c15, 0x7c17, 0x7c18, 0x7c19, 0x7c1a,\n  0x7c1b, 0x7c1c, 0x7c1d, 0x7c1e, 0x7c20, 0x7c21, 0x7c22, 0x7c23,\n  0x7c24, 0x7c25, 0x7c28, 0x7c29, 0x7c2b, 0x7c2c, 0x7c2d, 0x7c2e,\n  0x7c2f, 0x7c30, 0x7c31, 0x7c32, 0x7c33, 0x7c34, 0x7c35, 0x7c36,\n  0x7c37, 0x7c39, 0x7c3a, 0x7c3b, 0x7c3c, 0x7c3d, 0x7c3e, 0x7c42,\n  /* 0xbb */\n  0x7c43, 0x7c44, 0x7c45, 0x7c46, 0x7c47, 0x7c48, 0x7c49, 0x7c4a,\n  0x7c4b, 0x7c4c, 0x7c4e, 0x7c4f, 0x7c50, 0x7c51, 0x7c52, 0x7c53,\n  0x7c54, 0x7c55, 0x7c56, 0x7c57, 0x7c58, 0x7c59, 0x7c5a, 0x7c5b,\n  0x7c5c, 0x7c5d, 0x7c5e, 0x7c5f, 0x7c60, 0x7c61, 0x7c62, 0x7c63,\n  0x7c64, 0x7c65, 0x7c66, 0x7c67, 0x7c68, 0x7c69, 0x7c6a, 0x7c6b,\n  0x7c6c, 0x7c6d, 0x7c6e, 0x7c6f, 0x7c70, 0x7c71, 0x7c72, 0x7c75,\n  0x7c76, 0x7c77, 0x7c78, 0x7c79, 0x7c7a, 0x7c7e, 0x7c7f, 0x7c80,\n  0x7c81, 0x7c82, 0x7c83, 0x7c84, 0x7c85, 0x7c86, 0x7c87, 0x7c88,\n  0x7c8a, 0x7c8b, 0x7c8c, 0x7c8d, 0x7c8e, 0x7c8f, 0x7c90, 0x7c93,\n  0x7c94, 0x7c96, 0x7c99, 0x7c9a, 0x7c9b, 0x7ca0, 0x7ca1, 0x7ca3,\n  0x7ca6, 0x7ca7, 0x7ca8, 0x7ca9, 0x7cab, 0x7cac, 0x7cad, 0x7caf,\n  0x7cb0, 0x7cb4, 0x7cb5, 0x7cb6, 0x7cb7, 0x7cb8, 0x7cba, 0x7cbb,\n  /* 0xbc */\n  0x7cbf, 0x7cc0, 0x7cc2, 0x7cc3, 0x7cc4, 0x7cc6, 0x7cc9, 0x7ccb,\n  0x7cce, 0x7ccf, 0x7cd0, 0x7cd1, 0x7cd2, 0x7cd3, 0x7cd4, 0x7cd8,\n  0x7cda, 0x7cdb, 0x7cdd, 0x7cde, 0x7ce1, 0x7ce2, 0x7ce3, 0x7ce4,\n  0x7ce5, 0x7ce6, 0x7ce7, 0x7ce9, 0x7cea, 0x7ceb, 0x7cec, 0x7ced,\n  0x7cee, 0x7cf0, 0x7cf1, 0x7cf2, 0x7cf3, 0x7cf4, 0x7cf5, 0x7cf6,\n  0x7cf7, 0x7cf9, 0x7cfa, 0x7cfc, 0x7cfd, 0x7cfe, 0x7cff, 0x7d00,\n  0x7d01, 0x7d02, 0x7d03, 0x7d04, 0x7d05, 0x7d06, 0x7d07, 0x7d08,\n  0x7d09, 0x7d0b, 0x7d0c, 0x7d0d, 0x7d0e, 0x7d0f, 0x7d10, 0x7d11,\n  0x7d12, 0x7d13, 0x7d14, 0x7d15, 0x7d16, 0x7d17, 0x7d18, 0x7d19,\n  0x7d1a, 0x7d1b, 0x7d1c, 0x7d1d, 0x7d1e, 0x7d1f, 0x7d21, 0x7d23,\n  0x7d24, 0x7d25, 0x7d26, 0x7d28, 0x7d29, 0x7d2a, 0x7d2c, 0x7d2d,\n  0x7d2e, 0x7d30, 0x7d31, 0x7d32, 0x7d33, 0x7d34, 0x7d35, 0x7d36,\n  /* 0xbd */\n  0x7d37, 0x7d38, 0x7d39, 0x7d3a, 0x7d3b, 0x7d3c, 0x7d3d, 0x7d3e,\n  0x7d3f, 0x7d40, 0x7d41, 0x7d42, 0x7d43, 0x7d44, 0x7d45, 0x7d46,\n  0x7d47, 0x7d48, 0x7d49, 0x7d4a, 0x7d4b, 0x7d4c, 0x7d4d, 0x7d4e,\n  0x7d4f, 0x7d50, 0x7d51, 0x7d52, 0x7d53, 0x7d54, 0x7d55, 0x7d56,\n  0x7d57, 0x7d58, 0x7d59, 0x7d5a, 0x7d5b, 0x7d5c, 0x7d5d, 0x7d5e,\n  0x7d5f, 0x7d60, 0x7d61, 0x7d62, 0x7d63, 0x7d64, 0x7d65, 0x7d66,\n  0x7d67, 0x7d68, 0x7d69, 0x7d6a, 0x7d6b, 0x7d6c, 0x7d6d, 0x7d6f,\n  0x7d70, 0x7d71, 0x7d72, 0x7d73, 0x7d74, 0x7d75, 0x7d76, 0x7d78,\n  0x7d79, 0x7d7a, 0x7d7b, 0x7d7c, 0x7d7d, 0x7d7e, 0x7d7f, 0x7d80,\n  0x7d81, 0x7d82, 0x7d83, 0x7d84, 0x7d85, 0x7d86, 0x7d87, 0x7d88,\n  0x7d89, 0x7d8a, 0x7d8b, 0x7d8c, 0x7d8d, 0x7d8e, 0x7d8f, 0x7d90,\n  0x7d91, 0x7d92, 0x7d93, 0x7d94, 0x7d95, 0x7d96, 0x7d97, 0x7d98,\n  /* 0xbe */\n  0x7d99, 0x7d9a, 0x7d9b, 0x7d9c, 0x7d9d, 0x7d9e, 0x7d9f, 0x7da0,\n  0x7da1, 0x7da2, 0x7da3, 0x7da4, 0x7da5, 0x7da7, 0x7da8, 0x7da9,\n  0x7daa, 0x7dab, 0x7dac, 0x7dad, 0x7daf, 0x7db0, 0x7db1, 0x7db2,\n  0x7db3, 0x7db4, 0x7db5, 0x7db6, 0x7db7, 0x7db8, 0x7db9, 0x7dba,\n  0x7dbb, 0x7dbc, 0x7dbd, 0x7dbe, 0x7dbf, 0x7dc0, 0x7dc1, 0x7dc2,\n  0x7dc3, 0x7dc4, 0x7dc5, 0x7dc6, 0x7dc7, 0x7dc8, 0x7dc9, 0x7dca,\n  0x7dcb, 0x7dcc, 0x7dcd, 0x7dce, 0x7dcf, 0x7dd0, 0x7dd1, 0x7dd2,\n  0x7dd3, 0x7dd4, 0x7dd5, 0x7dd6, 0x7dd7, 0x7dd8, 0x7dd9, 0x7dda,\n  0x7ddb, 0x7ddc, 0x7ddd, 0x7dde, 0x7ddf, 0x7de0, 0x7de1, 0x7de2,\n  0x7de3, 0x7de4, 0x7de5, 0x7de6, 0x7de7, 0x7de8, 0x7de9, 0x7dea,\n  0x7deb, 0x7dec, 0x7ded, 0x7dee, 0x7def, 0x7df0, 0x7df1, 0x7df2,\n  0x7df3, 0x7df4, 0x7df5, 0x7df6, 0x7df7, 0x7df8, 0x7df9, 0x7dfa,\n  /* 0xbf */\n  0x7dfb, 0x7dfc, 0x7dfd, 0x7dfe, 0x7dff, 0x7e00, 0x7e01, 0x7e02,\n  0x7e03, 0x7e04, 0x7e05, 0x7e06, 0x7e07, 0x7e08, 0x7e09, 0x7e0a,\n  0x7e0b, 0x7e0c, 0x7e0d, 0x7e0e, 0x7e0f, 0x7e10, 0x7e11, 0x7e12,\n  0x7e13, 0x7e14, 0x7e15, 0x7e16, 0x7e17, 0x7e18, 0x7e19, 0x7e1a,\n  0x7e1b, 0x7e1c, 0x7e1d, 0x7e1e, 0x7e1f, 0x7e20, 0x7e21, 0x7e22,\n  0x7e23, 0x7e24, 0x7e25, 0x7e26, 0x7e27, 0x7e28, 0x7e29, 0x7e2a,\n  0x7e2b, 0x7e2c, 0x7e2d, 0x7e2e, 0x7e2f, 0x7e30, 0x7e31, 0x7e32,\n  0x7e33, 0x7e34, 0x7e35, 0x7e36, 0x7e37, 0x7e38, 0x7e39, 0x7e3a,\n  0x7e3c, 0x7e3d, 0x7e3e, 0x7e3f, 0x7e40, 0x7e42, 0x7e43, 0x7e44,\n  0x7e45, 0x7e46, 0x7e48, 0x7e49, 0x7e4a, 0x7e4b, 0x7e4c, 0x7e4d,\n  0x7e4e, 0x7e4f, 0x7e50, 0x7e51, 0x7e52, 0x7e53, 0x7e54, 0x7e55,\n  0x7e56, 0x7e57, 0x7e58, 0x7e59, 0x7e5a, 0x7e5b, 0x7e5c, 0x7e5d,\n  /* 0xc0 */\n  0x7e5e, 0x7e5f, 0x7e60, 0x7e61, 0x7e62, 0x7e63, 0x7e64, 0x7e65,\n  0x7e66, 0x7e67, 0x7e68, 0x7e69, 0x7e6a, 0x7e6b, 0x7e6c, 0x7e6d,\n  0x7e6e, 0x7e6f, 0x7e70, 0x7e71, 0x7e72, 0x7e73, 0x7e74, 0x7e75,\n  0x7e76, 0x7e77, 0x7e78, 0x7e79, 0x7e7a, 0x7e7b, 0x7e7c, 0x7e7d,\n  0x7e7e, 0x7e7f, 0x7e80, 0x7e81, 0x7e83, 0x7e84, 0x7e85, 0x7e86,\n  0x7e87, 0x7e88, 0x7e89, 0x7e8a, 0x7e8b, 0x7e8c, 0x7e8d, 0x7e8e,\n  0x7e8f, 0x7e90, 0x7e91, 0x7e92, 0x7e93, 0x7e94, 0x7e95, 0x7e96,\n  0x7e97, 0x7e98, 0x7e99, 0x7e9a, 0x7e9c, 0x7e9d, 0x7e9e, 0x7eae,\n  0x7eb4, 0x7ebb, 0x7ebc, 0x7ed6, 0x7ee4, 0x7eec, 0x7ef9, 0x7f0a,\n  0x7f10, 0x7f1e, 0x7f37, 0x7f39, 0x7f3b, 0x7f3c, 0x7f3d, 0x7f3e,\n  0x7f3f, 0x7f40, 0x7f41, 0x7f43, 0x7f46, 0x7f47, 0x7f48, 0x7f49,\n  0x7f4a, 0x7f4b, 0x7f4c, 0x7f4d, 0x7f4e, 0x7f4f, 0x7f52, 0x7f53,\n  /* 0xc1 */\n  0x7f56, 0x7f59, 0x7f5b, 0x7f5c, 0x7f5d, 0x7f5e, 0x7f60, 0x7f63,\n  0x7f64, 0x7f65, 0x7f66, 0x7f67, 0x7f6b, 0x7f6c, 0x7f6d, 0x7f6f,\n  0x7f70, 0x7f73, 0x7f75, 0x7f76, 0x7f77, 0x7f78, 0x7f7a, 0x7f7b,\n  0x7f7c, 0x7f7d, 0x7f7f, 0x7f80, 0x7f82, 0x7f83, 0x7f84, 0x7f85,\n  0x7f86, 0x7f87, 0x7f88, 0x7f89, 0x7f8b, 0x7f8d, 0x7f8f, 0x7f90,\n  0x7f91, 0x7f92, 0x7f93, 0x7f95, 0x7f96, 0x7f97, 0x7f98, 0x7f99,\n  0x7f9b, 0x7f9c, 0x7fa0, 0x7fa2, 0x7fa3, 0x7fa5, 0x7fa6, 0x7fa8,\n  0x7fa9, 0x7faa, 0x7fab, 0x7fac, 0x7fad, 0x7fae, 0x7fb1, 0x7fb3,\n  0x7fb4, 0x7fb5, 0x7fb6, 0x7fb7, 0x7fba, 0x7fbb, 0x7fbe, 0x7fc0,\n  0x7fc2, 0x7fc3, 0x7fc4, 0x7fc6, 0x7fc7, 0x7fc8, 0x7fc9, 0x7fcb,\n  0x7fcd, 0x7fcf, 0x7fd0, 0x7fd1, 0x7fd2, 0x7fd3, 0x7fd6, 0x7fd7,\n  0x7fd9, 0x7fda, 0x7fdb, 0x7fdc, 0x7fdd, 0x7fde, 0x7fe2, 0x7fe3,\n  /* 0xc2 */\n  0x7fe4, 0x7fe7, 0x7fe8, 0x7fea, 0x7feb, 0x7fec, 0x7fed, 0x7fef,\n  0x7ff2, 0x7ff4, 0x7ff5, 0x7ff6, 0x7ff7, 0x7ff8, 0x7ff9, 0x7ffa,\n  0x7ffd, 0x7ffe, 0x7fff, 0x8002, 0x8007, 0x8008, 0x8009, 0x800a,\n  0x800e, 0x800f, 0x8011, 0x8013, 0x801a, 0x801b, 0x801d, 0x801e,\n  0x801f, 0x8021, 0x8023, 0x8024, 0x802b, 0x802c, 0x802d, 0x802e,\n  0x802f, 0x8030, 0x8032, 0x8034, 0x8039, 0x803a, 0x803c, 0x803e,\n  0x8040, 0x8041, 0x8044, 0x8045, 0x8047, 0x8048, 0x8049, 0x804e,\n  0x804f, 0x8050, 0x8051, 0x8053, 0x8055, 0x8056, 0x8057, 0x8059,\n  0x805b, 0x805c, 0x805d, 0x805e, 0x805f, 0x8060, 0x8061, 0x8062,\n  0x8063, 0x8064, 0x8065, 0x8066, 0x8067, 0x8068, 0x806b, 0x806c,\n  0x806d, 0x806e, 0x806f, 0x8070, 0x8072, 0x8073, 0x8074, 0x8075,\n  0x8076, 0x8077, 0x8078, 0x8079, 0x807a, 0x807b, 0x807c, 0x807d,\n  /* 0xc3 */\n  0x807e, 0x8081, 0x8082, 0x8085, 0x8088, 0x808a, 0x808d, 0x808e,\n  0x808f, 0x8090, 0x8091, 0x8092, 0x8094, 0x8095, 0x8097, 0x8099,\n  0x809e, 0x80a3, 0x80a6, 0x80a7, 0x80a8, 0x80ac, 0x80b0, 0x80b3,\n  0x80b5, 0x80b6, 0x80b8, 0x80b9, 0x80bb, 0x80c5, 0x80c7, 0x80c8,\n  0x80c9, 0x80ca, 0x80cb, 0x80cf, 0x80d0, 0x80d1, 0x80d2, 0x80d3,\n  0x80d4, 0x80d5, 0x80d8, 0x80df, 0x80e0, 0x80e2, 0x80e3, 0x80e6,\n  0x80ee, 0x80f5, 0x80f7, 0x80f9, 0x80fb, 0x80fe, 0x80ff, 0x8100,\n  0x8101, 0x8103, 0x8104, 0x8105, 0x8107, 0x8108, 0x810b, 0x810c,\n  0x8115, 0x8117, 0x8119, 0x811b, 0x811c, 0x811d, 0x811f, 0x8120,\n  0x8121, 0x8122, 0x8123, 0x8124, 0x8125, 0x8126, 0x8127, 0x8128,\n  0x8129, 0x812a, 0x812b, 0x812d, 0x812e, 0x8130, 0x8133, 0x8134,\n  0x8135, 0x8137, 0x8139, 0x813a, 0x813b, 0x813c, 0x813d, 0x813f,\n  /* 0xc4 */\n  0x8140, 0x8141, 0x8142, 0x8143, 0x8144, 0x8145, 0x8147, 0x8149,\n  0x814d, 0x814e, 0x814f, 0x8152, 0x8156, 0x8157, 0x8158, 0x815b,\n  0x815c, 0x815d, 0x815e, 0x815f, 0x8161, 0x8162, 0x8163, 0x8164,\n  0x8166, 0x8168, 0x816a, 0x816b, 0x816c, 0x816f, 0x8172, 0x8173,\n  0x8175, 0x8176, 0x8177, 0x8178, 0x8181, 0x8183, 0x8184, 0x8185,\n  0x8186, 0x8187, 0x8189, 0x818b, 0x818c, 0x818d, 0x818e, 0x8190,\n  0x8192, 0x8193, 0x8194, 0x8195, 0x8196, 0x8197, 0x8199, 0x819a,\n  0x819e, 0x819f, 0x81a0, 0x81a1, 0x81a2, 0x81a4, 0x81a5, 0x81a7,\n  0x81a9, 0x81ab, 0x81ac, 0x81ad, 0x81ae, 0x81af, 0x81b0, 0x81b1,\n  0x81b2, 0x81b4, 0x81b5, 0x81b6, 0x81b7, 0x81b8, 0x81b9, 0x81bc,\n  0x81bd, 0x81be, 0x81bf, 0x81c4, 0x81c5, 0x81c7, 0x81c8, 0x81c9,\n  0x81cb, 0x81cd, 0x81ce, 0x81cf, 0x81d0, 0x81d1, 0x81d2, 0x81d3,\n  /* 0xc5 */\n  0x81d4, 0x81d5, 0x81d6, 0x81d7, 0x81d8, 0x81d9, 0x81da, 0x81db,\n  0x81dc, 0x81dd, 0x81de, 0x81df, 0x81e0, 0x81e1, 0x81e2, 0x81e4,\n  0x81e5, 0x81e6, 0x81e8, 0x81e9, 0x81eb, 0x81ee, 0x81ef, 0x81f0,\n  0x81f1, 0x81f2, 0x81f5, 0x81f6, 0x81f7, 0x81f8, 0x81f9, 0x81fa,\n  0x81fd, 0x81ff, 0x8203, 0x8207, 0x8208, 0x8209, 0x820a, 0x820b,\n  0x820e, 0x820f, 0x8211, 0x8213, 0x8215, 0x8216, 0x8217, 0x8218,\n  0x8219, 0x821a, 0x821d, 0x8220, 0x8224, 0x8225, 0x8226, 0x8227,\n  0x8229, 0x822e, 0x8232, 0x823a, 0x823c, 0x823d, 0x823f, 0x8240,\n  0x8241, 0x8242, 0x8243, 0x8245, 0x8246, 0x8248, 0x824a, 0x824c,\n  0x824d, 0x824e, 0x8250, 0x8251, 0x8252, 0x8253, 0x8254, 0x8255,\n  0x8256, 0x8257, 0x8259, 0x825b, 0x825c, 0x825d, 0x825e, 0x8260,\n  0x8261, 0x8262, 0x8263, 0x8264, 0x8265, 0x8266, 0x8267, 0x8269,\n  /* 0xc6 */\n  0x826a, 0x826b, 0x826c, 0x826d, 0x8271, 0x8275, 0x8276, 0x8277,\n  0x8278, 0x827b, 0x827c, 0x8280, 0x8281, 0x8283, 0x8285, 0x8286,\n  0x8287, 0x8289, 0x828c, 0x8290, 0x8293, 0x8294, 0x8295, 0x8296,\n  0x829a, 0x829b, 0x829e, 0x82a0, 0x82a2, 0x82a3, 0x82a7, 0x82b2,\n  0x82b5, 0x82b6, 0x82ba, 0x82bb, 0x82bc, 0x82bf, 0x82c0, 0x82c2,\n  0x82c3, 0x82c5, 0x82c6, 0x82c9, 0x82d0, 0x82d6, 0x82d9, 0x82da,\n  0x82dd, 0x82e2, 0x82e7, 0x82e8, 0x82e9, 0x82ea, 0x82ec, 0x82ed,\n  0x82ee, 0x82f0, 0x82f2, 0x82f3, 0x82f5, 0x82f6, 0x82f8, 0x82fa,\n  0x82fc, 0x82fd, 0x82fe, 0x82ff, 0x8300, 0x830a, 0x830b, 0x830d,\n  0x8310, 0x8312, 0x8313, 0x8316, 0x8318, 0x8319, 0x831d, 0x831e,\n  0x831f, 0x8320, 0x8321, 0x8322, 0x8323, 0x8324, 0x8325, 0x8326,\n  0x8329, 0x832a, 0x832e, 0x8330, 0x8332, 0x8337, 0x833b, 0x833d,\n  /* 0xc7 */\n  0x833e, 0x833f, 0x8341, 0x8342, 0x8344, 0x8345, 0x8348, 0x834a,\n  0x834b, 0x834c, 0x834d, 0x834e, 0x8353, 0x8355, 0x8356, 0x8357,\n  0x8358, 0x8359, 0x835d, 0x8362, 0x8370, 0x8371, 0x8372, 0x8373,\n  0x8374, 0x8375, 0x8376, 0x8379, 0x837a, 0x837e, 0x837f, 0x8380,\n  0x8381, 0x8382, 0x8383, 0x8384, 0x8387, 0x8388, 0x838a, 0x838b,\n  0x838c, 0x838d, 0x838f, 0x8390, 0x8391, 0x8394, 0x8395, 0x8396,\n  0x8397, 0x8399, 0x839a, 0x839d, 0x839f, 0x83a1, 0x83a2, 0x83a3,\n  0x83a4, 0x83a5, 0x83a6, 0x83a7, 0x83ac, 0x83ad, 0x83ae, 0x83af,\n  0x83b5, 0x83bb, 0x83be, 0x83bf, 0x83c2, 0x83c3, 0x83c4, 0x83c6,\n  0x83c8, 0x83c9, 0x83cb, 0x83cd, 0x83ce, 0x83d0, 0x83d1, 0x83d2,\n  0x83d3, 0x83d5, 0x83d7, 0x83d9, 0x83da, 0x83db, 0x83de, 0x83e2,\n  0x83e3, 0x83e4, 0x83e6, 0x83e7, 0x83e8, 0x83eb, 0x83ec, 0x83ed,\n  /* 0xc8 */\n  0x83ee, 0x83ef, 0x83f3, 0x83f4, 0x83f5, 0x83f6, 0x83f7, 0x83fa,\n  0x83fb, 0x83fc, 0x83fe, 0x83ff, 0x8400, 0x8402, 0x8405, 0x8407,\n  0x8408, 0x8409, 0x840a, 0x8410, 0x8412, 0x8413, 0x8414, 0x8415,\n  0x8416, 0x8417, 0x8419, 0x841a, 0x841b, 0x841e, 0x841f, 0x8420,\n  0x8421, 0x8422, 0x8423, 0x8429, 0x842a, 0x842b, 0x842c, 0x842d,\n  0x842e, 0x842f, 0x8430, 0x8432, 0x8433, 0x8434, 0x8435, 0x8436,\n  0x8437, 0x8439, 0x843a, 0x843b, 0x843e, 0x843f, 0x8440, 0x8441,\n  0x8442, 0x8443, 0x8444, 0x8445, 0x8447, 0x8448, 0x8449, 0x844a,\n  0x844b, 0x844c, 0x844d, 0x844e, 0x844f, 0x8450, 0x8452, 0x8453,\n  0x8454, 0x8455, 0x8456, 0x8458, 0x845d, 0x845e, 0x845f, 0x8460,\n  0x8462, 0x8464, 0x8465, 0x8466, 0x8467, 0x8468, 0x846a, 0x846e,\n  0x846f, 0x8470, 0x8472, 0x8474, 0x8477, 0x8479, 0x847b, 0x847c,\n  /* 0xc9 */\n  0x847d, 0x847e, 0x847f, 0x8480, 0x8481, 0x8483, 0x8484, 0x8485,\n  0x8486, 0x848a, 0x848d, 0x848f, 0x8490, 0x8491, 0x8492, 0x8493,\n  0x8494, 0x8495, 0x8496, 0x8498, 0x849a, 0x849b, 0x849d, 0x849e,\n  0x849f, 0x84a0, 0x84a2, 0x84a3, 0x84a4, 0x84a5, 0x84a6, 0x84a7,\n  0x84a8, 0x84a9, 0x84aa, 0x84ab, 0x84ac, 0x84ad, 0x84ae, 0x84b0,\n  0x84b1, 0x84b3, 0x84b5, 0x84b6, 0x84b7, 0x84bb, 0x84bc, 0x84be,\n  0x84c0, 0x84c2, 0x84c3, 0x84c5, 0x84c6, 0x84c7, 0x84c8, 0x84cb,\n  0x84cc, 0x84ce, 0x84cf, 0x84d2, 0x84d4, 0x84d5, 0x84d7, 0x84d8,\n  0x84d9, 0x84da, 0x84db, 0x84dc, 0x84de, 0x84e1, 0x84e2, 0x84e4,\n  0x84e7, 0x84e8, 0x84e9, 0x84ea, 0x84eb, 0x84ed, 0x84ee, 0x84ef,\n  0x84f1, 0x84f2, 0x84f3, 0x84f4, 0x84f5, 0x84f6, 0x84f7, 0x84f8,\n  0x84f9, 0x84fa, 0x84fb, 0x84fd, 0x84fe, 0x8500, 0x8501, 0x8502,\n  /* 0xca */\n  0x8503, 0x8504, 0x8505, 0x8506, 0x8507, 0x8508, 0x8509, 0x850a,\n  0x850b, 0x850d, 0x850e, 0x850f, 0x8510, 0x8512, 0x8514, 0x8515,\n  0x8516, 0x8518, 0x8519, 0x851b, 0x851c, 0x851d, 0x851e, 0x8520,\n  0x8522, 0x8523, 0x8524, 0x8525, 0x8526, 0x8527, 0x8528, 0x8529,\n  0x852a, 0x852d, 0x852e, 0x852f, 0x8530, 0x8531, 0x8532, 0x8533,\n  0x8534, 0x8535, 0x8536, 0x853e, 0x853f, 0x8540, 0x8541, 0x8542,\n  0x8544, 0x8545, 0x8546, 0x8547, 0x854b, 0x854c, 0x854d, 0x854e,\n  0x854f, 0x8550, 0x8551, 0x8552, 0x8553, 0x8554, 0x8555, 0x8557,\n  0x8558, 0x855a, 0x855b, 0x855c, 0x855d, 0x855f, 0x8560, 0x8561,\n  0x8562, 0x8563, 0x8565, 0x8566, 0x8567, 0x8569, 0x856a, 0x856b,\n  0x856c, 0x856d, 0x856e, 0x856f, 0x8570, 0x8571, 0x8573, 0x8575,\n  0x8576, 0x8577, 0x8578, 0x857c, 0x857d, 0x857f, 0x8580, 0x8581,\n  /* 0xcb */\n  0x8582, 0x8583, 0x8586, 0x8588, 0x8589, 0x858a, 0x858b, 0x858c,\n  0x858d, 0x858e, 0x8590, 0x8591, 0x8592, 0x8593, 0x8594, 0x8595,\n  0x8596, 0x8597, 0x8598, 0x8599, 0x859a, 0x859d, 0x859e, 0x859f,\n  0x85a0, 0x85a1, 0x85a2, 0x85a3, 0x85a5, 0x85a6, 0x85a7, 0x85a9,\n  0x85ab, 0x85ac, 0x85ad, 0x85b1, 0x85b2, 0x85b3, 0x85b4, 0x85b5,\n  0x85b6, 0x85b8, 0x85ba, 0x85bb, 0x85bc, 0x85bd, 0x85be, 0x85bf,\n  0x85c0, 0x85c2, 0x85c3, 0x85c4, 0x85c5, 0x85c6, 0x85c7, 0x85c8,\n  0x85ca, 0x85cb, 0x85cc, 0x85cd, 0x85ce, 0x85d1, 0x85d2, 0x85d4,\n  0x85d6, 0x85d7, 0x85d8, 0x85d9, 0x85da, 0x85db, 0x85dd, 0x85de,\n  0x85df, 0x85e0, 0x85e1, 0x85e2, 0x85e3, 0x85e5, 0x85e6, 0x85e7,\n  0x85e8, 0x85ea, 0x85eb, 0x85ec, 0x85ed, 0x85ee, 0x85ef, 0x85f0,\n  0x85f1, 0x85f2, 0x85f3, 0x85f4, 0x85f5, 0x85f6, 0x85f7, 0x85f8,\n  /* 0xcc */\n  0x85f9, 0x85fa, 0x85fc, 0x85fd, 0x85fe, 0x8600, 0x8601, 0x8602,\n  0x8603, 0x8604, 0x8606, 0x8607, 0x8608, 0x8609, 0x860a, 0x860b,\n  0x860c, 0x860d, 0x860e, 0x860f, 0x8610, 0x8612, 0x8613, 0x8614,\n  0x8615, 0x8617, 0x8618, 0x8619, 0x861a, 0x861b, 0x861c, 0x861d,\n  0x861e, 0x861f, 0x8620, 0x8621, 0x8622, 0x8623, 0x8624, 0x8625,\n  0x8626, 0x8628, 0x862a, 0x862b, 0x862c, 0x862d, 0x862e, 0x862f,\n  0x8630, 0x8631, 0x8632, 0x8633, 0x8634, 0x8635, 0x8636, 0x8637,\n  0x8639, 0x863a, 0x863b, 0x863d, 0x863e, 0x863f, 0x8640, 0x8641,\n  0x8642, 0x8643, 0x8644, 0x8645, 0x8646, 0x8647, 0x8648, 0x8649,\n  0x864a, 0x864b, 0x864c, 0x8652, 0x8653, 0x8655, 0x8656, 0x8657,\n  0x8658, 0x8659, 0x865b, 0x865c, 0x865d, 0x865f, 0x8660, 0x8661,\n  0x8663, 0x8664, 0x8665, 0x8666, 0x8667, 0x8668, 0x8669, 0x866a,\n  /* 0xcd */\n  0x866d, 0x866f, 0x8670, 0x8672, 0x8673, 0x8674, 0x8675, 0x8676,\n  0x8677, 0x8678, 0x8683, 0x8684, 0x8685, 0x8686, 0x8687, 0x8688,\n  0x8689, 0x868e, 0x868f, 0x8690, 0x8691, 0x8692, 0x8694, 0x8696,\n  0x8697, 0x8698, 0x8699, 0x869a, 0x869b, 0x869e, 0x869f, 0x86a0,\n  0x86a1, 0x86a2, 0x86a5, 0x86a6, 0x86ab, 0x86ad, 0x86ae, 0x86b2,\n  0x86b3, 0x86b7, 0x86b8, 0x86b9, 0x86bb, 0x86bc, 0x86bd, 0x86be,\n  0x86bf, 0x86c1, 0x86c2, 0x86c3, 0x86c5, 0x86c8, 0x86cc, 0x86cd,\n  0x86d2, 0x86d3, 0x86d5, 0x86d6, 0x86d7, 0x86da, 0x86dc, 0x86dd,\n  0x86e0, 0x86e1, 0x86e2, 0x86e3, 0x86e5, 0x86e6, 0x86e7, 0x86e8,\n  0x86ea, 0x86eb, 0x86ec, 0x86ef, 0x86f5, 0x86f6, 0x86f7, 0x86fa,\n  0x86fb, 0x86fc, 0x86fd, 0x86ff, 0x8701, 0x8704, 0x8705, 0x8706,\n  0x870b, 0x870c, 0x870e, 0x870f, 0x8710, 0x8711, 0x8714, 0x8716,\n  /* 0xce */\n  0x8719, 0x871b, 0x871d, 0x871f, 0x8720, 0x8724, 0x8726, 0x8727,\n  0x8728, 0x872a, 0x872b, 0x872c, 0x872d, 0x872f, 0x8730, 0x8732,\n  0x8733, 0x8735, 0x8736, 0x8738, 0x8739, 0x873a, 0x873c, 0x873d,\n  0x8740, 0x8741, 0x8742, 0x8743, 0x8744, 0x8745, 0x8746, 0x874a,\n  0x874b, 0x874d, 0x874f, 0x8750, 0x8751, 0x8752, 0x8754, 0x8755,\n  0x8756, 0x8758, 0x875a, 0x875b, 0x875c, 0x875d, 0x875e, 0x875f,\n  0x8761, 0x8762, 0x8766, 0x8767, 0x8768, 0x8769, 0x876a, 0x876b,\n  0x876c, 0x876d, 0x876f, 0x8771, 0x8772, 0x8773, 0x8775, 0x8777,\n  0x8778, 0x8779, 0x877a, 0x877f, 0x8780, 0x8781, 0x8784, 0x8786,\n  0x8787, 0x8789, 0x878a, 0x878c, 0x878e, 0x878f, 0x8790, 0x8791,\n  0x8792, 0x8794, 0x8795, 0x8796, 0x8798, 0x8799, 0x879a, 0x879b,\n  0x879c, 0x879d, 0x879e, 0x87a0, 0x87a1, 0x87a2, 0x87a3, 0x87a4,\n  /* 0xcf */\n  0x87a5, 0x87a6, 0x87a7, 0x87a9, 0x87aa, 0x87ae, 0x87b0, 0x87b1,\n  0x87b2, 0x87b4, 0x87b6, 0x87b7, 0x87b8, 0x87b9, 0x87bb, 0x87bc,\n  0x87be, 0x87bf, 0x87c1, 0x87c2, 0x87c3, 0x87c4, 0x87c5, 0x87c7,\n  0x87c8, 0x87c9, 0x87cc, 0x87cd, 0x87ce, 0x87cf, 0x87d0, 0x87d4,\n  0x87d5, 0x87d6, 0x87d7, 0x87d8, 0x87d9, 0x87da, 0x87dc, 0x87dd,\n  0x87de, 0x87df, 0x87e1, 0x87e2, 0x87e3, 0x87e4, 0x87e6, 0x87e7,\n  0x87e8, 0x87e9, 0x87eb, 0x87ec, 0x87ed, 0x87ef, 0x87f0, 0x87f1,\n  0x87f2, 0x87f3, 0x87f4, 0x87f5, 0x87f6, 0x87f7, 0x87f8, 0x87fa,\n  0x87fb, 0x87fc, 0x87fd, 0x87ff, 0x8800, 0x8801, 0x8802, 0x8804,\n  0x8805, 0x8806, 0x8807, 0x8808, 0x8809, 0x880b, 0x880c, 0x880d,\n  0x880e, 0x880f, 0x8810, 0x8811, 0x8812, 0x8814, 0x8817, 0x8818,\n  0x8819, 0x881a, 0x881c, 0x881d, 0x881e, 0x881f, 0x8820, 0x8823,\n  /* 0xd0 */\n  0x8824, 0x8825, 0x8826, 0x8827, 0x8828, 0x8829, 0x882a, 0x882b,\n  0x882c, 0x882d, 0x882e, 0x882f, 0x8830, 0x8831, 0x8833, 0x8834,\n  0x8835, 0x8836, 0x8837, 0x8838, 0x883a, 0x883b, 0x883d, 0x883e,\n  0x883f, 0x8841, 0x8842, 0x8843, 0x8846, 0x8847, 0x8848, 0x8849,\n  0x884a, 0x884b, 0x884e, 0x884f, 0x8850, 0x8851, 0x8852, 0x8853,\n  0x8855, 0x8856, 0x8858, 0x885a, 0x885b, 0x885c, 0x885d, 0x885e,\n  0x885f, 0x8860, 0x8866, 0x8867, 0x886a, 0x886d, 0x886f, 0x8871,\n  0x8873, 0x8874, 0x8875, 0x8876, 0x8878, 0x8879, 0x887a, 0x887b,\n  0x887c, 0x8880, 0x8883, 0x8886, 0x8887, 0x8889, 0x888a, 0x888c,\n  0x888e, 0x888f, 0x8890, 0x8891, 0x8893, 0x8894, 0x8895, 0x8897,\n  0x8898, 0x8899, 0x889a, 0x889b, 0x889d, 0x889e, 0x889f, 0x88a0,\n  0x88a1, 0x88a3, 0x88a5, 0x88a6, 0x88a7, 0x88a8, 0x88a9, 0x88aa,\n  /* 0xd1 */\n  0x88ac, 0x88ae, 0x88af, 0x88b0, 0x88b2, 0x88b3, 0x88b4, 0x88b5,\n  0x88b6, 0x88b8, 0x88b9, 0x88ba, 0x88bb, 0x88bd, 0x88be, 0x88bf,\n  0x88c0, 0x88c3, 0x88c4, 0x88c7, 0x88c8, 0x88ca, 0x88cb, 0x88cc,\n  0x88cd, 0x88cf, 0x88d0, 0x88d1, 0x88d3, 0x88d6, 0x88d7, 0x88da,\n  0x88db, 0x88dc, 0x88dd, 0x88de, 0x88e0, 0x88e1, 0x88e6, 0x88e7,\n  0x88e9, 0x88ea, 0x88eb, 0x88ec, 0x88ed, 0x88ee, 0x88ef, 0x88f2,\n  0x88f5, 0x88f6, 0x88f7, 0x88fa, 0x88fb, 0x88fd, 0x88ff, 0x8900,\n  0x8901, 0x8903, 0x8904, 0x8905, 0x8906, 0x8907, 0x8908, 0x8909,\n  0x890b, 0x890c, 0x890d, 0x890e, 0x890f, 0x8911, 0x8914, 0x8915,\n  0x8916, 0x8917, 0x8918, 0x891c, 0x891d, 0x891e, 0x891f, 0x8920,\n  0x8922, 0x8923, 0x8924, 0x8926, 0x8927, 0x8928, 0x8929, 0x892c,\n  0x892d, 0x892e, 0x892f, 0x8931, 0x8932, 0x8933, 0x8935, 0x8937,\n  /* 0xd2 */\n  0x8938, 0x8939, 0x893a, 0x893b, 0x893c, 0x893d, 0x893e, 0x893f,\n  0x8940, 0x8942, 0x8943, 0x8945, 0x8946, 0x8947, 0x8948, 0x8949,\n  0x894a, 0x894b, 0x894c, 0x894d, 0x894e, 0x894f, 0x8950, 0x8951,\n  0x8952, 0x8953, 0x8954, 0x8955, 0x8956, 0x8957, 0x8958, 0x8959,\n  0x895a, 0x895b, 0x895c, 0x895d, 0x8960, 0x8961, 0x8962, 0x8963,\n  0x8964, 0x8965, 0x8967, 0x8968, 0x8969, 0x896a, 0x896b, 0x896c,\n  0x896d, 0x896e, 0x896f, 0x8970, 0x8971, 0x8972, 0x8973, 0x8974,\n  0x8975, 0x8976, 0x8977, 0x8978, 0x8979, 0x897a, 0x897c, 0x897d,\n  0x897e, 0x8980, 0x8982, 0x8984, 0x8985, 0x8987, 0x8988, 0x8989,\n  0x898a, 0x898b, 0x898c, 0x898d, 0x898e, 0x898f, 0x8990, 0x8991,\n  0x8992, 0x8993, 0x8994, 0x8995, 0x8996, 0x8997, 0x8998, 0x8999,\n  0x899a, 0x899b, 0x899c, 0x899d, 0x899e, 0x899f, 0x89a0, 0x89a1,\n  /* 0xd3 */\n  0x89a2, 0x89a3, 0x89a4, 0x89a5, 0x89a6, 0x89a7, 0x89a8, 0x89a9,\n  0x89aa, 0x89ab, 0x89ac, 0x89ad, 0x89ae, 0x89af, 0x89b0, 0x89b1,\n  0x89b2, 0x89b3, 0x89b4, 0x89b5, 0x89b6, 0x89b7, 0x89b8, 0x89b9,\n  0x89ba, 0x89bb, 0x89bc, 0x89bd, 0x89be, 0x89bf, 0x89c0, 0x89c3,\n  0x89cd, 0x89d3, 0x89d4, 0x89d5, 0x89d7, 0x89d8, 0x89d9, 0x89db,\n  0x89dd, 0x89df, 0x89e0, 0x89e1, 0x89e2, 0x89e4, 0x89e7, 0x89e8,\n  0x89e9, 0x89ea, 0x89ec, 0x89ed, 0x89ee, 0x89f0, 0x89f1, 0x89f2,\n  0x89f4, 0x89f5, 0x89f6, 0x89f7, 0x89f8, 0x89f9, 0x89fa, 0x89fb,\n  0x89fc, 0x89fd, 0x89fe, 0x89ff, 0x8a01, 0x8a02, 0x8a03, 0x8a04,\n  0x8a05, 0x8a06, 0x8a08, 0x8a09, 0x8a0a, 0x8a0b, 0x8a0c, 0x8a0d,\n  0x8a0e, 0x8a0f, 0x8a10, 0x8a11, 0x8a12, 0x8a13, 0x8a14, 0x8a15,\n  0x8a16, 0x8a17, 0x8a18, 0x8a19, 0x8a1a, 0x8a1b, 0x8a1c, 0x8a1d,\n  /* 0xd4 */\n  0x8a1e, 0x8a1f, 0x8a20, 0x8a21, 0x8a22, 0x8a23, 0x8a24, 0x8a25,\n  0x8a26, 0x8a27, 0x8a28, 0x8a29, 0x8a2a, 0x8a2b, 0x8a2c, 0x8a2d,\n  0x8a2e, 0x8a2f, 0x8a30, 0x8a31, 0x8a32, 0x8a33, 0x8a34, 0x8a35,\n  0x8a36, 0x8a37, 0x8a38, 0x8a39, 0x8a3a, 0x8a3b, 0x8a3c, 0x8a3d,\n  0x8a3f, 0x8a40, 0x8a41, 0x8a42, 0x8a43, 0x8a44, 0x8a45, 0x8a46,\n  0x8a47, 0x8a49, 0x8a4a, 0x8a4b, 0x8a4c, 0x8a4d, 0x8a4e, 0x8a4f,\n  0x8a50, 0x8a51, 0x8a52, 0x8a53, 0x8a54, 0x8a55, 0x8a56, 0x8a57,\n  0x8a58, 0x8a59, 0x8a5a, 0x8a5b, 0x8a5c, 0x8a5d, 0x8a5e, 0x8a5f,\n  0x8a60, 0x8a61, 0x8a62, 0x8a63, 0x8a64, 0x8a65, 0x8a66, 0x8a67,\n  0x8a68, 0x8a69, 0x8a6a, 0x8a6b, 0x8a6c, 0x8a6d, 0x8a6e, 0x8a6f,\n  0x8a70, 0x8a71, 0x8a72, 0x8a73, 0x8a74, 0x8a75, 0x8a76, 0x8a77,\n  0x8a78, 0x8a7a, 0x8a7b, 0x8a7c, 0x8a7d, 0x8a7e, 0x8a7f, 0x8a80,\n  /* 0xd5 */\n  0x8a81, 0x8a82, 0x8a83, 0x8a84, 0x8a85, 0x8a86, 0x8a87, 0x8a88,\n  0x8a8b, 0x8a8c, 0x8a8d, 0x8a8e, 0x8a8f, 0x8a90, 0x8a91, 0x8a92,\n  0x8a94, 0x8a95, 0x8a96, 0x8a97, 0x8a98, 0x8a99, 0x8a9a, 0x8a9b,\n  0x8a9c, 0x8a9d, 0x8a9e, 0x8a9f, 0x8aa0, 0x8aa1, 0x8aa2, 0x8aa3,\n  0x8aa4, 0x8aa5, 0x8aa6, 0x8aa7, 0x8aa8, 0x8aa9, 0x8aaa, 0x8aab,\n  0x8aac, 0x8aad, 0x8aae, 0x8aaf, 0x8ab0, 0x8ab1, 0x8ab2, 0x8ab3,\n  0x8ab4, 0x8ab5, 0x8ab6, 0x8ab7, 0x8ab8, 0x8ab9, 0x8aba, 0x8abb,\n  0x8abc, 0x8abd, 0x8abe, 0x8abf, 0x8ac0, 0x8ac1, 0x8ac2, 0x8ac3,\n  0x8ac4, 0x8ac5, 0x8ac6, 0x8ac7, 0x8ac8, 0x8ac9, 0x8aca, 0x8acb,\n  0x8acc, 0x8acd, 0x8ace, 0x8acf, 0x8ad0, 0x8ad1, 0x8ad2, 0x8ad3,\n  0x8ad4, 0x8ad5, 0x8ad6, 0x8ad7, 0x8ad8, 0x8ad9, 0x8ada, 0x8adb,\n  0x8adc, 0x8add, 0x8ade, 0x8adf, 0x8ae0, 0x8ae1, 0x8ae2, 0x8ae3,\n  /* 0xd6 */\n  0x8ae4, 0x8ae5, 0x8ae6, 0x8ae7, 0x8ae8, 0x8ae9, 0x8aea, 0x8aeb,\n  0x8aec, 0x8aed, 0x8aee, 0x8aef, 0x8af0, 0x8af1, 0x8af2, 0x8af3,\n  0x8af4, 0x8af5, 0x8af6, 0x8af7, 0x8af8, 0x8af9, 0x8afa, 0x8afb,\n  0x8afc, 0x8afd, 0x8afe, 0x8aff, 0x8b00, 0x8b01, 0x8b02, 0x8b03,\n  0x8b04, 0x8b05, 0x8b06, 0x8b08, 0x8b09, 0x8b0a, 0x8b0b, 0x8b0c,\n  0x8b0d, 0x8b0e, 0x8b0f, 0x8b10, 0x8b11, 0x8b12, 0x8b13, 0x8b14,\n  0x8b15, 0x8b16, 0x8b17, 0x8b18, 0x8b19, 0x8b1a, 0x8b1b, 0x8b1c,\n  0x8b1d, 0x8b1e, 0x8b1f, 0x8b20, 0x8b21, 0x8b22, 0x8b23, 0x8b24,\n  0x8b25, 0x8b27, 0x8b28, 0x8b29, 0x8b2a, 0x8b2b, 0x8b2c, 0x8b2d,\n  0x8b2e, 0x8b2f, 0x8b30, 0x8b31, 0x8b32, 0x8b33, 0x8b34, 0x8b35,\n  0x8b36, 0x8b37, 0x8b38, 0x8b39, 0x8b3a, 0x8b3b, 0x8b3c, 0x8b3d,\n  0x8b3e, 0x8b3f, 0x8b40, 0x8b41, 0x8b42, 0x8b43, 0x8b44, 0x8b45,\n  /* 0xd7 */\n  0x8b46, 0x8b47, 0x8b48, 0x8b49, 0x8b4a, 0x8b4b, 0x8b4c, 0x8b4d,\n  0x8b4e, 0x8b4f, 0x8b50, 0x8b51, 0x8b52, 0x8b53, 0x8b54, 0x8b55,\n  0x8b56, 0x8b57, 0x8b58, 0x8b59, 0x8b5a, 0x8b5b, 0x8b5c, 0x8b5d,\n  0x8b5e, 0x8b5f, 0x8b60, 0x8b61, 0x8b62, 0x8b63, 0x8b64, 0x8b65,\n  0x8b67, 0x8b68, 0x8b69, 0x8b6a, 0x8b6b, 0x8b6d, 0x8b6e, 0x8b6f,\n  0x8b70, 0x8b71, 0x8b72, 0x8b73, 0x8b74, 0x8b75, 0x8b76, 0x8b77,\n  0x8b78, 0x8b79, 0x8b7a, 0x8b7b, 0x8b7c, 0x8b7d, 0x8b7e, 0x8b7f,\n  0x8b80, 0x8b81, 0x8b82, 0x8b83, 0x8b84, 0x8b85, 0x8b86, 0x8b87,\n  0x8b88, 0x8b89, 0x8b8a, 0x8b8b, 0x8b8c, 0x8b8d, 0x8b8e, 0x8b8f,\n  0x8b90, 0x8b91, 0x8b92, 0x8b93, 0x8b94, 0x8b95, 0x8b96, 0x8b97,\n  0x8b98, 0x8b99, 0x8b9a, 0x8b9b, 0x8b9c, 0x8b9d, 0x8b9e, 0x8b9f,\n  0x8bac, 0x8bb1, 0x8bbb, 0x8bc7, 0x8bd0, 0x8bea, 0x8c09, 0x8c1e,\n  /* 0xd8 */\n  0x8c38, 0x8c39, 0x8c3a, 0x8c3b, 0x8c3c, 0x8c3d, 0x8c3e, 0x8c3f,\n  0x8c40, 0x8c42, 0x8c43, 0x8c44, 0x8c45, 0x8c48, 0x8c4a, 0x8c4b,\n  0x8c4d, 0x8c4e, 0x8c4f, 0x8c50, 0x8c51, 0x8c52, 0x8c53, 0x8c54,\n  0x8c56, 0x8c57, 0x8c58, 0x8c59, 0x8c5b, 0x8c5c, 0x8c5d, 0x8c5e,\n  0x8c5f, 0x8c60, 0x8c63, 0x8c64, 0x8c65, 0x8c66, 0x8c67, 0x8c68,\n  0x8c69, 0x8c6c, 0x8c6d, 0x8c6e, 0x8c6f, 0x8c70, 0x8c71, 0x8c72,\n  0x8c74, 0x8c75, 0x8c76, 0x8c77, 0x8c7b, 0x8c7c, 0x8c7d, 0x8c7e,\n  0x8c7f, 0x8c80, 0x8c81, 0x8c83, 0x8c84, 0x8c86, 0x8c87, 0x8c88,\n  0x8c8b, 0x8c8d, 0x8c8e, 0x8c8f, 0x8c90, 0x8c91, 0x8c92, 0x8c93,\n  0x8c95, 0x8c96, 0x8c97, 0x8c99, 0x8c9a, 0x8c9b, 0x8c9c, 0x8c9d,\n  0x8c9e, 0x8c9f, 0x8ca0, 0x8ca1, 0x8ca2, 0x8ca3, 0x8ca4, 0x8ca5,\n  0x8ca6, 0x8ca7, 0x8ca8, 0x8ca9, 0x8caa, 0x8cab, 0x8cac, 0x8cad,\n  /* 0xd9 */\n  0x8cae, 0x8caf, 0x8cb0, 0x8cb1, 0x8cb2, 0x8cb3, 0x8cb4, 0x8cb5,\n  0x8cb6, 0x8cb7, 0x8cb8, 0x8cb9, 0x8cba, 0x8cbb, 0x8cbc, 0x8cbd,\n  0x8cbe, 0x8cbf, 0x8cc0, 0x8cc1, 0x8cc2, 0x8cc3, 0x8cc4, 0x8cc5,\n  0x8cc6, 0x8cc7, 0x8cc8, 0x8cc9, 0x8cca, 0x8ccb, 0x8ccc, 0x8ccd,\n  0x8cce, 0x8ccf, 0x8cd0, 0x8cd1, 0x8cd2, 0x8cd3, 0x8cd4, 0x8cd5,\n  0x8cd6, 0x8cd7, 0x8cd8, 0x8cd9, 0x8cda, 0x8cdb, 0x8cdc, 0x8cdd,\n  0x8cde, 0x8cdf, 0x8ce0, 0x8ce1, 0x8ce2, 0x8ce3, 0x8ce4, 0x8ce5,\n  0x8ce6, 0x8ce7, 0x8ce8, 0x8ce9, 0x8cea, 0x8ceb, 0x8cec, 0x8ced,\n  0x8cee, 0x8cef, 0x8cf0, 0x8cf1, 0x8cf2, 0x8cf3, 0x8cf4, 0x8cf5,\n  0x8cf6, 0x8cf7, 0x8cf8, 0x8cf9, 0x8cfa, 0x8cfb, 0x8cfc, 0x8cfd,\n  0x8cfe, 0x8cff, 0x8d00, 0x8d01, 0x8d02, 0x8d03, 0x8d04, 0x8d05,\n  0x8d06, 0x8d07, 0x8d08, 0x8d09, 0x8d0a, 0x8d0b, 0x8d0c, 0x8d0d,\n  /* 0xda */\n  0x8d0e, 0x8d0f, 0x8d10, 0x8d11, 0x8d12, 0x8d13, 0x8d14, 0x8d15,\n  0x8d16, 0x8d17, 0x8d18, 0x8d19, 0x8d1a, 0x8d1b, 0x8d1c, 0x8d20,\n  0x8d51, 0x8d52, 0x8d57, 0x8d5f, 0x8d65, 0x8d68, 0x8d69, 0x8d6a,\n  0x8d6c, 0x8d6e, 0x8d6f, 0x8d71, 0x8d72, 0x8d78, 0x8d79, 0x8d7a,\n  0x8d7b, 0x8d7c, 0x8d7d, 0x8d7e, 0x8d7f, 0x8d80, 0x8d82, 0x8d83,\n  0x8d86, 0x8d87, 0x8d88, 0x8d89, 0x8d8c, 0x8d8d, 0x8d8e, 0x8d8f,\n  0x8d90, 0x8d92, 0x8d93, 0x8d95, 0x8d96, 0x8d97, 0x8d98, 0x8d99,\n  0x8d9a, 0x8d9b, 0x8d9c, 0x8d9d, 0x8d9e, 0x8da0, 0x8da1, 0x8da2,\n  0x8da4, 0x8da5, 0x8da6, 0x8da7, 0x8da8, 0x8da9, 0x8daa, 0x8dab,\n  0x8dac, 0x8dad, 0x8dae, 0x8daf, 0x8db0, 0x8db2, 0x8db6, 0x8db7,\n  0x8db9, 0x8dbb, 0x8dbd, 0x8dc0, 0x8dc1, 0x8dc2, 0x8dc5, 0x8dc7,\n  0x8dc8, 0x8dc9, 0x8dca, 0x8dcd, 0x8dd0, 0x8dd2, 0x8dd3, 0x8dd4,\n  /* 0xdb */\n  0x8dd5, 0x8dd8, 0x8dd9, 0x8ddc, 0x8de0, 0x8de1, 0x8de2, 0x8de5,\n  0x8de6, 0x8de7, 0x8de9, 0x8ded, 0x8dee, 0x8df0, 0x8df1, 0x8df2,\n  0x8df4, 0x8df6, 0x8dfc, 0x8dfe, 0x8dff, 0x8e00, 0x8e01, 0x8e02,\n  0x8e03, 0x8e04, 0x8e06, 0x8e07, 0x8e08, 0x8e0b, 0x8e0d, 0x8e0e,\n  0x8e10, 0x8e11, 0x8e12, 0x8e13, 0x8e15, 0x8e16, 0x8e17, 0x8e18,\n  0x8e19, 0x8e1a, 0x8e1b, 0x8e1c, 0x8e20, 0x8e21, 0x8e24, 0x8e25,\n  0x8e26, 0x8e27, 0x8e28, 0x8e2b, 0x8e2d, 0x8e30, 0x8e32, 0x8e33,\n  0x8e34, 0x8e36, 0x8e37, 0x8e38, 0x8e3b, 0x8e3c, 0x8e3e, 0x8e3f,\n  0x8e43, 0x8e45, 0x8e46, 0x8e4c, 0x8e4d, 0x8e4e, 0x8e4f, 0x8e50,\n  0x8e53, 0x8e54, 0x8e55, 0x8e56, 0x8e57, 0x8e58, 0x8e5a, 0x8e5b,\n  0x8e5c, 0x8e5d, 0x8e5e, 0x8e5f, 0x8e60, 0x8e61, 0x8e62, 0x8e63,\n  0x8e64, 0x8e65, 0x8e67, 0x8e68, 0x8e6a, 0x8e6b, 0x8e6e, 0x8e71,\n  /* 0xdc */\n  0x8e73, 0x8e75, 0x8e77, 0x8e78, 0x8e79, 0x8e7a, 0x8e7b, 0x8e7d,\n  0x8e7e, 0x8e80, 0x8e82, 0x8e83, 0x8e84, 0x8e86, 0x8e88, 0x8e89,\n  0x8e8a, 0x8e8b, 0x8e8c, 0x8e8d, 0x8e8e, 0x8e91, 0x8e92, 0x8e93,\n  0x8e95, 0x8e96, 0x8e97, 0x8e98, 0x8e99, 0x8e9a, 0x8e9b, 0x8e9d,\n  0x8e9f, 0x8ea0, 0x8ea1, 0x8ea2, 0x8ea3, 0x8ea4, 0x8ea5, 0x8ea6,\n  0x8ea7, 0x8ea8, 0x8ea9, 0x8eaa, 0x8ead, 0x8eae, 0x8eb0, 0x8eb1,\n  0x8eb3, 0x8eb4, 0x8eb5, 0x8eb6, 0x8eb7, 0x8eb8, 0x8eb9, 0x8ebb,\n  0x8ebc, 0x8ebd, 0x8ebe, 0x8ebf, 0x8ec0, 0x8ec1, 0x8ec2, 0x8ec3,\n  0x8ec4, 0x8ec5, 0x8ec6, 0x8ec7, 0x8ec8, 0x8ec9, 0x8eca, 0x8ecb,\n  0x8ecc, 0x8ecd, 0x8ecf, 0x8ed0, 0x8ed1, 0x8ed2, 0x8ed3, 0x8ed4,\n  0x8ed5, 0x8ed6, 0x8ed7, 0x8ed8, 0x8ed9, 0x8eda, 0x8edb, 0x8edc,\n  0x8edd, 0x8ede, 0x8edf, 0x8ee0, 0x8ee1, 0x8ee2, 0x8ee3, 0x8ee4,\n  /* 0xdd */\n  0x8ee5, 0x8ee6, 0x8ee7, 0x8ee8, 0x8ee9, 0x8eea, 0x8eeb, 0x8eec,\n  0x8eed, 0x8eee, 0x8eef, 0x8ef0, 0x8ef1, 0x8ef2, 0x8ef3, 0x8ef4,\n  0x8ef5, 0x8ef6, 0x8ef7, 0x8ef8, 0x8ef9, 0x8efa, 0x8efb, 0x8efc,\n  0x8efd, 0x8efe, 0x8eff, 0x8f00, 0x8f01, 0x8f02, 0x8f03, 0x8f04,\n  0x8f05, 0x8f06, 0x8f07, 0x8f08, 0x8f09, 0x8f0a, 0x8f0b, 0x8f0c,\n  0x8f0d, 0x8f0e, 0x8f0f, 0x8f10, 0x8f11, 0x8f12, 0x8f13, 0x8f14,\n  0x8f15, 0x8f16, 0x8f17, 0x8f18, 0x8f19, 0x8f1a, 0x8f1b, 0x8f1c,\n  0x8f1d, 0x8f1e, 0x8f1f, 0x8f20, 0x8f21, 0x8f22, 0x8f23, 0x8f24,\n  0x8f25, 0x8f26, 0x8f27, 0x8f28, 0x8f29, 0x8f2a, 0x8f2b, 0x8f2c,\n  0x8f2d, 0x8f2e, 0x8f2f, 0x8f30, 0x8f31, 0x8f32, 0x8f33, 0x8f34,\n  0x8f35, 0x8f36, 0x8f37, 0x8f38, 0x8f39, 0x8f3a, 0x8f3b, 0x8f3c,\n  0x8f3d, 0x8f3e, 0x8f3f, 0x8f40, 0x8f41, 0x8f42, 0x8f43, 0x8f44,\n  /* 0xde */\n  0x8f45, 0x8f46, 0x8f47, 0x8f48, 0x8f49, 0x8f4a, 0x8f4b, 0x8f4c,\n  0x8f4d, 0x8f4e, 0x8f4f, 0x8f50, 0x8f51, 0x8f52, 0x8f53, 0x8f54,\n  0x8f55, 0x8f56, 0x8f57, 0x8f58, 0x8f59, 0x8f5a, 0x8f5b, 0x8f5c,\n  0x8f5d, 0x8f5e, 0x8f5f, 0x8f60, 0x8f61, 0x8f62, 0x8f63, 0x8f64,\n  0x8f65, 0x8f6a, 0x8f80, 0x8f8c, 0x8f92, 0x8f9d, 0x8fa0, 0x8fa1,\n  0x8fa2, 0x8fa4, 0x8fa5, 0x8fa6, 0x8fa7, 0x8faa, 0x8fac, 0x8fad,\n  0x8fae, 0x8faf, 0x8fb2, 0x8fb3, 0x8fb4, 0x8fb5, 0x8fb7, 0x8fb8,\n  0x8fba, 0x8fbb, 0x8fbc, 0x8fbf, 0x8fc0, 0x8fc3, 0x8fc6, 0x8fc9,\n  0x8fca, 0x8fcb, 0x8fcc, 0x8fcd, 0x8fcf, 0x8fd2, 0x8fd6, 0x8fd7,\n  0x8fda, 0x8fe0, 0x8fe1, 0x8fe3, 0x8fe7, 0x8fec, 0x8fef, 0x8ff1,\n  0x8ff2, 0x8ff4, 0x8ff5, 0x8ff6, 0x8ffa, 0x8ffb, 0x8ffc, 0x8ffe,\n  0x8fff, 0x9007, 0x9008, 0x900c, 0x900e, 0x9013, 0x9015, 0x9018,\n  /* 0xdf */\n  0x9019, 0x901c, 0x9023, 0x9024, 0x9025, 0x9027, 0x9028, 0x9029,\n  0x902a, 0x902b, 0x902c, 0x9030, 0x9031, 0x9032, 0x9033, 0x9034,\n  0x9037, 0x9039, 0x903a, 0x903d, 0x903f, 0x9040, 0x9043, 0x9045,\n  0x9046, 0x9048, 0x9049, 0x904a, 0x904b, 0x904c, 0x904e, 0x9054,\n  0x9055, 0x9056, 0x9059, 0x905a, 0x905c, 0x905d, 0x905e, 0x905f,\n  0x9060, 0x9061, 0x9064, 0x9066, 0x9067, 0x9069, 0x906a, 0x906b,\n  0x906c, 0x906f, 0x9070, 0x9071, 0x9072, 0x9073, 0x9076, 0x9077,\n  0x9078, 0x9079, 0x907a, 0x907b, 0x907c, 0x907e, 0x9081, 0x9084,\n  0x9085, 0x9086, 0x9087, 0x9089, 0x908a, 0x908c, 0x908d, 0x908e,\n  0x908f, 0x9090, 0x9092, 0x9094, 0x9096, 0x9098, 0x909a, 0x909c,\n  0x909e, 0x909f, 0x90a0, 0x90a4, 0x90a5, 0x90a7, 0x90a8, 0x90a9,\n  0x90ab, 0x90ad, 0x90b2, 0x90b7, 0x90bc, 0x90bd, 0x90bf, 0x90c0,\n  /* 0xe0 */\n  0x90c2, 0x90c3, 0x90c6, 0x90c8, 0x90c9, 0x90cb, 0x90cc, 0x90cd,\n  0x90d2, 0x90d4, 0x90d5, 0x90d6, 0x90d8, 0x90d9, 0x90da, 0x90de,\n  0x90df, 0x90e0, 0x90e3, 0x90e4, 0x90e5, 0x90e9, 0x90ea, 0x90ec,\n  0x90ee, 0x90f0, 0x90f1, 0x90f2, 0x90f3, 0x90f5, 0x90f6, 0x90f7,\n  0x90f9, 0x90fa, 0x90fb, 0x90fc, 0x90ff, 0x9100, 0x9101, 0x9103,\n  0x9105, 0x9106, 0x9107, 0x9108, 0x9109, 0x910a, 0x910b, 0x910c,\n  0x910d, 0x910e, 0x910f, 0x9110, 0x9111, 0x9112, 0x9113, 0x9114,\n  0x9115, 0x9116, 0x9117, 0x9118, 0x911a, 0x911b, 0x911c, 0x911d,\n  0x911f, 0x9120, 0x9121, 0x9124, 0x9125, 0x9126, 0x9127, 0x9128,\n  0x9129, 0x912a, 0x912b, 0x912c, 0x912d, 0x912e, 0x9130, 0x9132,\n  0x9133, 0x9134, 0x9135, 0x9136, 0x9137, 0x9138, 0x913a, 0x913b,\n  0x913c, 0x913d, 0x913e, 0x913f, 0x9140, 0x9141, 0x9142, 0x9144,\n  /* 0xe1 */\n  0x9145, 0x9147, 0x9148, 0x9151, 0x9153, 0x9154, 0x9155, 0x9156,\n  0x9158, 0x9159, 0x915b, 0x915c, 0x915f, 0x9160, 0x9166, 0x9167,\n  0x9168, 0x916b, 0x916d, 0x9173, 0x917a, 0x917b, 0x917c, 0x9180,\n  0x9181, 0x9182, 0x9183, 0x9184, 0x9186, 0x9188, 0x918a, 0x918e,\n  0x918f, 0x9193, 0x9194, 0x9195, 0x9196, 0x9197, 0x9198, 0x9199,\n  0x919c, 0x919d, 0x919e, 0x919f, 0x91a0, 0x91a1, 0x91a4, 0x91a5,\n  0x91a6, 0x91a7, 0x91a8, 0x91a9, 0x91ab, 0x91ac, 0x91b0, 0x91b1,\n  0x91b2, 0x91b3, 0x91b6, 0x91b7, 0x91b8, 0x91b9, 0x91bb, 0x91bc,\n  0x91bd, 0x91be, 0x91bf, 0x91c0, 0x91c1, 0x91c2, 0x91c3, 0x91c4,\n  0x91c5, 0x91c6, 0x91c8, 0x91cb, 0x91d0, 0x91d2, 0x91d3, 0x91d4,\n  0x91d5, 0x91d6, 0x91d7, 0x91d8, 0x91d9, 0x91da, 0x91db, 0x91dd,\n  0x91de, 0x91df, 0x91e0, 0x91e1, 0x91e2, 0x91e3, 0x91e4, 0x91e5,\n  /* 0xe2 */\n  0x91e6, 0x91e7, 0x91e8, 0x91e9, 0x91ea, 0x91eb, 0x91ec, 0x91ed,\n  0x91ee, 0x91ef, 0x91f0, 0x91f1, 0x91f2, 0x91f3, 0x91f4, 0x91f5,\n  0x91f6, 0x91f7, 0x91f8, 0x91f9, 0x91fa, 0x91fb, 0x91fc, 0x91fd,\n  0x91fe, 0x91ff, 0x9200, 0x9201, 0x9202, 0x9203, 0x9204, 0x9205,\n  0x9206, 0x9207, 0x9208, 0x9209, 0x920a, 0x920b, 0x920c, 0x920d,\n  0x920e, 0x920f, 0x9210, 0x9211, 0x9212, 0x9213, 0x9214, 0x9215,\n  0x9216, 0x9217, 0x9218, 0x9219, 0x921a, 0x921b, 0x921c, 0x921d,\n  0x921e, 0x921f, 0x9220, 0x9221, 0x9222, 0x9223, 0x9224, 0x9225,\n  0x9226, 0x9227, 0x9228, 0x9229, 0x922a, 0x922b, 0x922c, 0x922d,\n  0x922e, 0x922f, 0x9230, 0x9231, 0x9232, 0x9233, 0x9234, 0x9235,\n  0x9236, 0x9237, 0x9238, 0x9239, 0x923a, 0x923b, 0x923c, 0x923d,\n  0x923e, 0x923f, 0x9240, 0x9241, 0x9242, 0x9243, 0x9244, 0x9245,\n  /* 0xe3 */\n  0x9246, 0x9247, 0x9248, 0x9249, 0x924a, 0x924b, 0x924c, 0x924d,\n  0x924e, 0x924f, 0x9250, 0x9251, 0x9252, 0x9253, 0x9254, 0x9255,\n  0x9256, 0x9257, 0x9258, 0x9259, 0x925a, 0x925b, 0x925c, 0x925d,\n  0x925e, 0x925f, 0x9260, 0x9261, 0x9262, 0x9263, 0x9264, 0x9265,\n  0x9266, 0x9267, 0x9268, 0x9269, 0x926a, 0x926b, 0x926c, 0x926d,\n  0x926e, 0x926f, 0x9270, 0x9271, 0x9272, 0x9273, 0x9275, 0x9276,\n  0x9277, 0x9278, 0x9279, 0x927a, 0x927b, 0x927c, 0x927d, 0x927e,\n  0x927f, 0x9280, 0x9281, 0x9282, 0x9283, 0x9284, 0x9285, 0x9286,\n  0x9287, 0x9288, 0x9289, 0x928a, 0x928b, 0x928c, 0x928d, 0x928f,\n  0x9290, 0x9291, 0x9292, 0x9293, 0x9294, 0x9295, 0x9296, 0x9297,\n  0x9298, 0x9299, 0x929a, 0x929b, 0x929c, 0x929d, 0x929e, 0x929f,\n  0x92a0, 0x92a1, 0x92a2, 0x92a3, 0x92a4, 0x92a5, 0x92a6, 0x92a7,\n  /* 0xe4 */\n  0x92a8, 0x92a9, 0x92aa, 0x92ab, 0x92ac, 0x92ad, 0x92af, 0x92b0,\n  0x92b1, 0x92b2, 0x92b3, 0x92b4, 0x92b5, 0x92b6, 0x92b7, 0x92b8,\n  0x92b9, 0x92ba, 0x92bb, 0x92bc, 0x92bd, 0x92be, 0x92bf, 0x92c0,\n  0x92c1, 0x92c2, 0x92c3, 0x92c4, 0x92c5, 0x92c6, 0x92c7, 0x92c9,\n  0x92ca, 0x92cb, 0x92cc, 0x92cd, 0x92ce, 0x92cf, 0x92d0, 0x92d1,\n  0x92d2, 0x92d3, 0x92d4, 0x92d5, 0x92d6, 0x92d7, 0x92d8, 0x92d9,\n  0x92da, 0x92db, 0x92dc, 0x92dd, 0x92de, 0x92df, 0x92e0, 0x92e1,\n  0x92e2, 0x92e3, 0x92e4, 0x92e5, 0x92e6, 0x92e7, 0x92e8, 0x92e9,\n  0x92ea, 0x92eb, 0x92ec, 0x92ed, 0x92ee, 0x92ef, 0x92f0, 0x92f1,\n  0x92f2, 0x92f3, 0x92f4, 0x92f5, 0x92f6, 0x92f7, 0x92f8, 0x92f9,\n  0x92fa, 0x92fb, 0x92fc, 0x92fd, 0x92fe, 0x92ff, 0x9300, 0x9301,\n  0x9302, 0x9303, 0x9304, 0x9305, 0x9306, 0x9307, 0x9308, 0x9309,\n  /* 0xe5 */\n  0x930a, 0x930b, 0x930c, 0x930d, 0x930e, 0x930f, 0x9310, 0x9311,\n  0x9312, 0x9313, 0x9314, 0x9315, 0x9316, 0x9317, 0x9318, 0x9319,\n  0x931a, 0x931b, 0x931c, 0x931d, 0x931e, 0x931f, 0x9320, 0x9321,\n  0x9322, 0x9323, 0x9324, 0x9325, 0x9326, 0x9327, 0x9328, 0x9329,\n  0x932a, 0x932b, 0x932c, 0x932d, 0x932e, 0x932f, 0x9330, 0x9331,\n  0x9332, 0x9333, 0x9334, 0x9335, 0x9336, 0x9337, 0x9338, 0x9339,\n  0x933a, 0x933b, 0x933c, 0x933d, 0x933f, 0x9340, 0x9341, 0x9342,\n  0x9343, 0x9344, 0x9345, 0x9346, 0x9347, 0x9348, 0x9349, 0x934a,\n  0x934b, 0x934c, 0x934d, 0x934e, 0x934f, 0x9350, 0x9351, 0x9352,\n  0x9353, 0x9354, 0x9355, 0x9356, 0x9357, 0x9358, 0x9359, 0x935a,\n  0x935b, 0x935c, 0x935d, 0x935e, 0x935f, 0x9360, 0x9361, 0x9362,\n  0x9363, 0x9364, 0x9365, 0x9366, 0x9367, 0x9368, 0x9369, 0x936b,\n  /* 0xe6 */\n  0x936c, 0x936d, 0x936e, 0x936f, 0x9370, 0x9371, 0x9372, 0x9373,\n  0x9374, 0x9375, 0x9376, 0x9377, 0x9378, 0x9379, 0x937a, 0x937b,\n  0x937c, 0x937d, 0x937e, 0x937f, 0x9380, 0x9381, 0x9382, 0x9383,\n  0x9384, 0x9385, 0x9386, 0x9387, 0x9388, 0x9389, 0x938a, 0x938b,\n  0x938c, 0x938d, 0x938e, 0x9390, 0x9391, 0x9392, 0x9393, 0x9394,\n  0x9395, 0x9396, 0x9397, 0x9398, 0x9399, 0x939a, 0x939b, 0x939c,\n  0x939d, 0x939e, 0x939f, 0x93a0, 0x93a1, 0x93a2, 0x93a3, 0x93a4,\n  0x93a5, 0x93a6, 0x93a7, 0x93a8, 0x93a9, 0x93aa, 0x93ab, 0x93ac,\n  0x93ad, 0x93ae, 0x93af, 0x93b0, 0x93b1, 0x93b2, 0x93b3, 0x93b4,\n  0x93b5, 0x93b6, 0x93b7, 0x93b8, 0x93b9, 0x93ba, 0x93bb, 0x93bc,\n  0x93bd, 0x93be, 0x93bf, 0x93c0, 0x93c1, 0x93c2, 0x93c3, 0x93c4,\n  0x93c5, 0x93c6, 0x93c7, 0x93c8, 0x93c9, 0x93cb, 0x93cc, 0x93cd,\n  /* 0xe7 */\n  0x93ce, 0x93cf, 0x93d0, 0x93d1, 0x93d2, 0x93d3, 0x93d4, 0x93d5,\n  0x93d7, 0x93d8, 0x93d9, 0x93da, 0x93db, 0x93dc, 0x93dd, 0x93de,\n  0x93df, 0x93e0, 0x93e1, 0x93e2, 0x93e3, 0x93e4, 0x93e5, 0x93e6,\n  0x93e7, 0x93e8, 0x93e9, 0x93ea, 0x93eb, 0x93ec, 0x93ed, 0x93ee,\n  0x93ef, 0x93f0, 0x93f1, 0x93f2, 0x93f3, 0x93f4, 0x93f5, 0x93f6,\n  0x93f7, 0x93f8, 0x93f9, 0x93fa, 0x93fb, 0x93fc, 0x93fd, 0x93fe,\n  0x93ff, 0x9400, 0x9401, 0x9402, 0x9403, 0x9404, 0x9405, 0x9406,\n  0x9407, 0x9408, 0x9409, 0x940a, 0x940b, 0x940c, 0x940d, 0x940e,\n  0x940f, 0x9410, 0x9411, 0x9412, 0x9413, 0x9414, 0x9415, 0x9416,\n  0x9417, 0x9418, 0x9419, 0x941a, 0x941b, 0x941c, 0x941d, 0x941e,\n  0x941f, 0x9420, 0x9421, 0x9422, 0x9423, 0x9424, 0x9425, 0x9426,\n  0x9427, 0x9428, 0x9429, 0x942a, 0x942b, 0x942c, 0x942d, 0x942e,\n  /* 0xe8 */\n  0x942f, 0x9430, 0x9431, 0x9432, 0x9433, 0x9434, 0x9435, 0x9436,\n  0x9437, 0x9438, 0x9439, 0x943a, 0x943b, 0x943c, 0x943d, 0x943f,\n  0x9440, 0x9441, 0x9442, 0x9443, 0x9444, 0x9445, 0x9446, 0x9447,\n  0x9448, 0x9449, 0x944a, 0x944b, 0x944c, 0x944d, 0x944e, 0x944f,\n  0x9450, 0x9451, 0x9452, 0x9453, 0x9454, 0x9455, 0x9456, 0x9457,\n  0x9458, 0x9459, 0x945a, 0x945b, 0x945c, 0x945d, 0x945e, 0x945f,\n  0x9460, 0x9461, 0x9462, 0x9463, 0x9464, 0x9465, 0x9466, 0x9467,\n  0x9468, 0x9469, 0x946a, 0x946c, 0x946d, 0x946e, 0x946f, 0x9470,\n  0x9471, 0x9472, 0x9473, 0x9474, 0x9475, 0x9476, 0x9477, 0x9478,\n  0x9479, 0x947a, 0x947b, 0x947c, 0x947d, 0x947e, 0x947f, 0x9480,\n  0x9481, 0x9482, 0x9483, 0x9484, 0x9491, 0x9496, 0x9498, 0x94c7,\n  0x94cf, 0x94d3, 0x94d4, 0x94da, 0x94e6, 0x94fb, 0x951c, 0x9520,\n  /* 0xe9 */\n  0x9527, 0x9533, 0x953d, 0x9543, 0x9548, 0x954b, 0x9555, 0x955a,\n  0x9560, 0x956e, 0x9574, 0x9575, 0x9577, 0x9578, 0x9579, 0x957a,\n  0x957b, 0x957c, 0x957d, 0x957e, 0x9580, 0x9581, 0x9582, 0x9583,\n  0x9584, 0x9585, 0x9586, 0x9587, 0x9588, 0x9589, 0x958a, 0x958b,\n  0x958c, 0x958d, 0x958e, 0x958f, 0x9590, 0x9591, 0x9592, 0x9593,\n  0x9594, 0x9595, 0x9596, 0x9597, 0x9598, 0x9599, 0x959a, 0x959b,\n  0x959c, 0x959d, 0x959e, 0x959f, 0x95a0, 0x95a1, 0x95a2, 0x95a3,\n  0x95a4, 0x95a5, 0x95a6, 0x95a7, 0x95a8, 0x95a9, 0x95aa, 0x95ab,\n  0x95ac, 0x95ad, 0x95ae, 0x95af, 0x95b0, 0x95b1, 0x95b2, 0x95b3,\n  0x95b4, 0x95b5, 0x95b6, 0x95b7, 0x95b8, 0x95b9, 0x95ba, 0x95bb,\n  0x95bc, 0x95bd, 0x95be, 0x95bf, 0x95c0, 0x95c1, 0x95c2, 0x95c3,\n  0x95c4, 0x95c5, 0x95c6, 0x95c7, 0x95c8, 0x95c9, 0x95ca, 0x95cb,\n  /* 0xea */\n  0x95cc, 0x95cd, 0x95ce, 0x95cf, 0x95d0, 0x95d1, 0x95d2, 0x95d3,\n  0x95d4, 0x95d5, 0x95d6, 0x95d7, 0x95d8, 0x95d9, 0x95da, 0x95db,\n  0x95dc, 0x95dd, 0x95de, 0x95df, 0x95e0, 0x95e1, 0x95e2, 0x95e3,\n  0x95e4, 0x95e5, 0x95e6, 0x95e7, 0x95ec, 0x95ff, 0x9607, 0x9613,\n  0x9618, 0x961b, 0x961e, 0x9620, 0x9623, 0x9624, 0x9625, 0x9626,\n  0x9627, 0x9628, 0x9629, 0x962b, 0x962c, 0x962d, 0x962f, 0x9630,\n  0x9637, 0x9638, 0x9639, 0x963a, 0x963e, 0x9641, 0x9643, 0x964a,\n  0x964e, 0x964f, 0x9651, 0x9652, 0x9653, 0x9656, 0x9657, 0x9658,\n  0x9659, 0x965a, 0x965c, 0x965d, 0x965e, 0x9660, 0x9663, 0x9665,\n  0x9666, 0x966b, 0x966d, 0x966e, 0x966f, 0x9670, 0x9671, 0x9673,\n  0x9678, 0x9679, 0x967a, 0x967b, 0x967c, 0x967d, 0x967e, 0x967f,\n  0x9680, 0x9681, 0x9682, 0x9683, 0x9684, 0x9687, 0x9689, 0x968a,\n  /* 0xeb */\n  0x968c, 0x968e, 0x9691, 0x9692, 0x9693, 0x9695, 0x9696, 0x969a,\n  0x969b, 0x969d, 0x969e, 0x969f, 0x96a0, 0x96a1, 0x96a2, 0x96a3,\n  0x96a4, 0x96a5, 0x96a6, 0x96a8, 0x96a9, 0x96aa, 0x96ab, 0x96ac,\n  0x96ad, 0x96ae, 0x96af, 0x96b1, 0x96b2, 0x96b4, 0x96b5, 0x96b7,\n  0x96b8, 0x96ba, 0x96bb, 0x96bf, 0x96c2, 0x96c3, 0x96c8, 0x96ca,\n  0x96cb, 0x96d0, 0x96d1, 0x96d3, 0x96d4, 0x96d6, 0x96d7, 0x96d8,\n  0x96d9, 0x96da, 0x96db, 0x96dc, 0x96dd, 0x96de, 0x96df, 0x96e1,\n  0x96e2, 0x96e3, 0x96e4, 0x96e5, 0x96e6, 0x96e7, 0x96eb, 0x96ec,\n  0x96ed, 0x96ee, 0x96f0, 0x96f1, 0x96f2, 0x96f4, 0x96f5, 0x96f8,\n  0x96fa, 0x96fb, 0x96fc, 0x96fd, 0x96ff, 0x9702, 0x9703, 0x9705,\n  0x970a, 0x970b, 0x970c, 0x9710, 0x9711, 0x9712, 0x9714, 0x9715,\n  0x9717, 0x9718, 0x9719, 0x971a, 0x971b, 0x971d, 0x971f, 0x9720,\n  /* 0xec */\n  0x9721, 0x9722, 0x9723, 0x9724, 0x9725, 0x9726, 0x9727, 0x9728,\n  0x9729, 0x972b, 0x972c, 0x972e, 0x972f, 0x9731, 0x9733, 0x9734,\n  0x9735, 0x9736, 0x9737, 0x973a, 0x973b, 0x973c, 0x973d, 0x973f,\n  0x9740, 0x9741, 0x9742, 0x9743, 0x9744, 0x9745, 0x9746, 0x9747,\n  0x9748, 0x9749, 0x974a, 0x974b, 0x974c, 0x974d, 0x974e, 0x974f,\n  0x9750, 0x9751, 0x9754, 0x9755, 0x9757, 0x9758, 0x975a, 0x975c,\n  0x975d, 0x975f, 0x9763, 0x9764, 0x9766, 0x9767, 0x9768, 0x976a,\n  0x976b, 0x976c, 0x976d, 0x976e, 0x976f, 0x9770, 0x9771, 0x9772,\n  0x9775, 0x9777, 0x9778, 0x9779, 0x977a, 0x977b, 0x977d, 0x977e,\n  0x977f, 0x9780, 0x9781, 0x9782, 0x9783, 0x9784, 0x9786, 0x9787,\n  0x9788, 0x9789, 0x978a, 0x978c, 0x978e, 0x978f, 0x9790, 0x9793,\n  0x9795, 0x9796, 0x9797, 0x9799, 0x979a, 0x979b, 0x979c, 0x979d,\n  /* 0xed */\n  0x979e, 0x979f, 0x97a1, 0x97a2, 0x97a4, 0x97a5, 0x97a6, 0x97a7,\n  0x97a8, 0x97a9, 0x97aa, 0x97ac, 0x97ae, 0x97b0, 0x97b1, 0x97b3,\n  0x97b5, 0x97b6, 0x97b7, 0x97b8, 0x97b9, 0x97ba, 0x97bb, 0x97bc,\n  0x97bd, 0x97be, 0x97bf, 0x97c0, 0x97c1, 0x97c2, 0x97c3, 0x97c4,\n  0x97c5, 0x97c6, 0x97c7, 0x97c8, 0x97c9, 0x97ca, 0x97cb, 0x97cc,\n  0x97cd, 0x97ce, 0x97cf, 0x97d0, 0x97d1, 0x97d2, 0x97d3, 0x97d4,\n  0x97d5, 0x97d6, 0x97d7, 0x97d8, 0x97d9, 0x97da, 0x97db, 0x97dc,\n  0x97dd, 0x97de, 0x97df, 0x97e0, 0x97e1, 0x97e2, 0x97e3, 0x97e4,\n  0x97e5, 0x97e8, 0x97ee, 0x97ef, 0x97f0, 0x97f1, 0x97f2, 0x97f4,\n  0x97f7, 0x97f8, 0x97f9, 0x97fa, 0x97fb, 0x97fc, 0x97fd, 0x97fe,\n  0x97ff, 0x9800, 0x9801, 0x9802, 0x9803, 0x9804, 0x9805, 0x9806,\n  0x9807, 0x9808, 0x9809, 0x980a, 0x980b, 0x980c, 0x980d, 0x980e,\n  /* 0xee */\n  0x980f, 0x9810, 0x9811, 0x9812, 0x9813, 0x9814, 0x9815, 0x9816,\n  0x9817, 0x9818, 0x9819, 0x981a, 0x981b, 0x981c, 0x981d, 0x981e,\n  0x981f, 0x9820, 0x9821, 0x9822, 0x9823, 0x9824, 0x9825, 0x9826,\n  0x9827, 0x9828, 0x9829, 0x982a, 0x982b, 0x982c, 0x982d, 0x982e,\n  0x982f, 0x9830, 0x9831, 0x9832, 0x9833, 0x9834, 0x9835, 0x9836,\n  0x9837, 0x9838, 0x9839, 0x983a, 0x983b, 0x983c, 0x983d, 0x983e,\n  0x983f, 0x9840, 0x9841, 0x9842, 0x9843, 0x9844, 0x9845, 0x9846,\n  0x9847, 0x9848, 0x9849, 0x984a, 0x984b, 0x984c, 0x984d, 0x984e,\n  0x984f, 0x9850, 0x9851, 0x9852, 0x9853, 0x9854, 0x9855, 0x9856,\n  0x9857, 0x9858, 0x9859, 0x985a, 0x985b, 0x985c, 0x985d, 0x985e,\n  0x985f, 0x9860, 0x9861, 0x9862, 0x9863, 0x9864, 0x9865, 0x9866,\n  0x9867, 0x9868, 0x9869, 0x986a, 0x986b, 0x986c, 0x986d, 0x986e,\n  /* 0xef */\n  0x986f, 0x9870, 0x9871, 0x9872, 0x9873, 0x9874, 0x988b, 0x988e,\n  0x9892, 0x9895, 0x9899, 0x98a3, 0x98a8, 0x98a9, 0x98aa, 0x98ab,\n  0x98ac, 0x98ad, 0x98ae, 0x98af, 0x98b0, 0x98b1, 0x98b2, 0x98b3,\n  0x98b4, 0x98b5, 0x98b6, 0x98b7, 0x98b8, 0x98b9, 0x98ba, 0x98bb,\n  0x98bc, 0x98bd, 0x98be, 0x98bf, 0x98c0, 0x98c1, 0x98c2, 0x98c3,\n  0x98c4, 0x98c5, 0x98c6, 0x98c7, 0x98c8, 0x98c9, 0x98ca, 0x98cb,\n  0x98cc, 0x98cd, 0x98cf, 0x98d0, 0x98d4, 0x98d6, 0x98d7, 0x98db,\n  0x98dc, 0x98dd, 0x98e0, 0x98e1, 0x98e2, 0x98e3, 0x98e4, 0x98e5,\n  0x98e6, 0x98e9, 0x98ea, 0x98eb, 0x98ec, 0x98ed, 0x98ee, 0x98ef,\n  0x98f0, 0x98f1, 0x98f2, 0x98f3, 0x98f4, 0x98f5, 0x98f6, 0x98f7,\n  0x98f8, 0x98f9, 0x98fa, 0x98fb, 0x98fc, 0x98fd, 0x98fe, 0x98ff,\n  0x9900, 0x9901, 0x9902, 0x9903, 0x9904, 0x9905, 0x9906, 0x9907,\n  /* 0xf0 */\n  0x9908, 0x9909, 0x990a, 0x990b, 0x990c, 0x990e, 0x990f, 0x9911,\n  0x9912, 0x9913, 0x9914, 0x9915, 0x9916, 0x9917, 0x9918, 0x9919,\n  0x991a, 0x991b, 0x991c, 0x991d, 0x991e, 0x991f, 0x9920, 0x9921,\n  0x9922, 0x9923, 0x9924, 0x9925, 0x9926, 0x9927, 0x9928, 0x9929,\n  0x992a, 0x992b, 0x992c, 0x992d, 0x992f, 0x9930, 0x9931, 0x9932,\n  0x9933, 0x9934, 0x9935, 0x9936, 0x9937, 0x9938, 0x9939, 0x993a,\n  0x993b, 0x993c, 0x993d, 0x993e, 0x993f, 0x9940, 0x9941, 0x9942,\n  0x9943, 0x9944, 0x9945, 0x9946, 0x9947, 0x9948, 0x9949, 0x994a,\n  0x994b, 0x994c, 0x994d, 0x994e, 0x994f, 0x9950, 0x9951, 0x9952,\n  0x9953, 0x9956, 0x9957, 0x9958, 0x9959, 0x995a, 0x995b, 0x995c,\n  0x995d, 0x995e, 0x995f, 0x9960, 0x9961, 0x9962, 0x9964, 0x9966,\n  0x9973, 0x9978, 0x9979, 0x997b, 0x997e, 0x9982, 0x9983, 0x9989,\n  /* 0xf1 */\n  0x998c, 0x998e, 0x999a, 0x999b, 0x999c, 0x999d, 0x999e, 0x999f,\n  0x99a0, 0x99a1, 0x99a2, 0x99a3, 0x99a4, 0x99a6, 0x99a7, 0x99a9,\n  0x99aa, 0x99ab, 0x99ac, 0x99ad, 0x99ae, 0x99af, 0x99b0, 0x99b1,\n  0x99b2, 0x99b3, 0x99b4, 0x99b5, 0x99b6, 0x99b7, 0x99b8, 0x99b9,\n  0x99ba, 0x99bb, 0x99bc, 0x99bd, 0x99be, 0x99bf, 0x99c0, 0x99c1,\n  0x99c2, 0x99c3, 0x99c4, 0x99c5, 0x99c6, 0x99c7, 0x99c8, 0x99c9,\n  0x99ca, 0x99cb, 0x99cc, 0x99cd, 0x99ce, 0x99cf, 0x99d0, 0x99d1,\n  0x99d2, 0x99d3, 0x99d4, 0x99d5, 0x99d6, 0x99d7, 0x99d8, 0x99d9,\n  0x99da, 0x99db, 0x99dc, 0x99dd, 0x99de, 0x99df, 0x99e0, 0x99e1,\n  0x99e2, 0x99e3, 0x99e4, 0x99e5, 0x99e6, 0x99e7, 0x99e8, 0x99e9,\n  0x99ea, 0x99eb, 0x99ec, 0x99ed, 0x99ee, 0x99ef, 0x99f0, 0x99f1,\n  0x99f2, 0x99f3, 0x99f4, 0x99f5, 0x99f6, 0x99f7, 0x99f8, 0x99f9,\n  /* 0xf2 */\n  0x99fa, 0x99fb, 0x99fc, 0x99fd, 0x99fe, 0x99ff, 0x9a00, 0x9a01,\n  0x9a02, 0x9a03, 0x9a04, 0x9a05, 0x9a06, 0x9a07, 0x9a08, 0x9a09,\n  0x9a0a, 0x9a0b, 0x9a0c, 0x9a0d, 0x9a0e, 0x9a0f, 0x9a10, 0x9a11,\n  0x9a12, 0x9a13, 0x9a14, 0x9a15, 0x9a16, 0x9a17, 0x9a18, 0x9a19,\n  0x9a1a, 0x9a1b, 0x9a1c, 0x9a1d, 0x9a1e, 0x9a1f, 0x9a20, 0x9a21,\n  0x9a22, 0x9a23, 0x9a24, 0x9a25, 0x9a26, 0x9a27, 0x9a28, 0x9a29,\n  0x9a2a, 0x9a2b, 0x9a2c, 0x9a2d, 0x9a2e, 0x9a2f, 0x9a30, 0x9a31,\n  0x9a32, 0x9a33, 0x9a34, 0x9a35, 0x9a36, 0x9a37, 0x9a38, 0x9a39,\n  0x9a3a, 0x9a3b, 0x9a3c, 0x9a3d, 0x9a3e, 0x9a3f, 0x9a40, 0x9a41,\n  0x9a42, 0x9a43, 0x9a44, 0x9a45, 0x9a46, 0x9a47, 0x9a48, 0x9a49,\n  0x9a4a, 0x9a4b, 0x9a4c, 0x9a4d, 0x9a4e, 0x9a4f, 0x9a50, 0x9a51,\n  0x9a52, 0x9a53, 0x9a54, 0x9a55, 0x9a56, 0x9a57, 0x9a58, 0x9a59,\n  /* 0xf3 */\n  0x9a5a, 0x9a5b, 0x9a5c, 0x9a5d, 0x9a5e, 0x9a5f, 0x9a60, 0x9a61,\n  0x9a62, 0x9a63, 0x9a64, 0x9a65, 0x9a66, 0x9a67, 0x9a68, 0x9a69,\n  0x9a6a, 0x9a6b, 0x9a72, 0x9a83, 0x9a89, 0x9a8d, 0x9a8e, 0x9a94,\n  0x9a95, 0x9a99, 0x9aa6, 0x9aa9, 0x9aaa, 0x9aab, 0x9aac, 0x9aad,\n  0x9aae, 0x9aaf, 0x9ab2, 0x9ab3, 0x9ab4, 0x9ab5, 0x9ab9, 0x9abb,\n  0x9abd, 0x9abe, 0x9abf, 0x9ac3, 0x9ac4, 0x9ac6, 0x9ac7, 0x9ac8,\n  0x9ac9, 0x9aca, 0x9acd, 0x9ace, 0x9acf, 0x9ad0, 0x9ad2, 0x9ad4,\n  0x9ad5, 0x9ad6, 0x9ad7, 0x9ad9, 0x9ada, 0x9adb, 0x9adc, 0x9add,\n  0x9ade, 0x9ae0, 0x9ae2, 0x9ae3, 0x9ae4, 0x9ae5, 0x9ae7, 0x9ae8,\n  0x9ae9, 0x9aea, 0x9aec, 0x9aee, 0x9af0, 0x9af1, 0x9af2, 0x9af3,\n  0x9af4, 0x9af5, 0x9af6, 0x9af7, 0x9af8, 0x9afa, 0x9afc, 0x9afd,\n  0x9afe, 0x9aff, 0x9b00, 0x9b01, 0x9b02, 0x9b04, 0x9b05, 0x9b06,\n  /* 0xf4 */\n  0x9b07, 0x9b09, 0x9b0a, 0x9b0b, 0x9b0c, 0x9b0d, 0x9b0e, 0x9b10,\n  0x9b11, 0x9b12, 0x9b14, 0x9b15, 0x9b16, 0x9b17, 0x9b18, 0x9b19,\n  0x9b1a, 0x9b1b, 0x9b1c, 0x9b1d, 0x9b1e, 0x9b20, 0x9b21, 0x9b22,\n  0x9b24, 0x9b25, 0x9b26, 0x9b27, 0x9b28, 0x9b29, 0x9b2a, 0x9b2b,\n  0x9b2c, 0x9b2d, 0x9b2e, 0x9b30, 0x9b31, 0x9b33, 0x9b34, 0x9b35,\n  0x9b36, 0x9b37, 0x9b38, 0x9b39, 0x9b3a, 0x9b3d, 0x9b3e, 0x9b3f,\n  0x9b40, 0x9b46, 0x9b4a, 0x9b4b, 0x9b4c, 0x9b4e, 0x9b50, 0x9b52,\n  0x9b53, 0x9b55, 0x9b56, 0x9b57, 0x9b58, 0x9b59, 0x9b5a, 0x9b5b,\n  0x9b5c, 0x9b5d, 0x9b5e, 0x9b5f, 0x9b60, 0x9b61, 0x9b62, 0x9b63,\n  0x9b64, 0x9b65, 0x9b66, 0x9b67, 0x9b68, 0x9b69, 0x9b6a, 0x9b6b,\n  0x9b6c, 0x9b6d, 0x9b6e, 0x9b6f, 0x9b70, 0x9b71, 0x9b72, 0x9b73,\n  0x9b74, 0x9b75, 0x9b76, 0x9b77, 0x9b78, 0x9b79, 0x9b7a, 0x9b7b,\n  /* 0xf5 */\n  0x9b7c, 0x9b7d, 0x9b7e, 0x9b7f, 0x9b80, 0x9b81, 0x9b82, 0x9b83,\n  0x9b84, 0x9b85, 0x9b86, 0x9b87, 0x9b88, 0x9b89, 0x9b8a, 0x9b8b,\n  0x9b8c, 0x9b8d, 0x9b8e, 0x9b8f, 0x9b90, 0x9b91, 0x9b92, 0x9b93,\n  0x9b94, 0x9b95, 0x9b96, 0x9b97, 0x9b98, 0x9b99, 0x9b9a, 0x9b9b,\n  0x9b9c, 0x9b9d, 0x9b9e, 0x9b9f, 0x9ba0, 0x9ba1, 0x9ba2, 0x9ba3,\n  0x9ba4, 0x9ba5, 0x9ba6, 0x9ba7, 0x9ba8, 0x9ba9, 0x9baa, 0x9bab,\n  0x9bac, 0x9bad, 0x9bae, 0x9baf, 0x9bb0, 0x9bb1, 0x9bb2, 0x9bb3,\n  0x9bb4, 0x9bb5, 0x9bb6, 0x9bb7, 0x9bb8, 0x9bb9, 0x9bba, 0x9bbb,\n  0x9bbc, 0x9bbd, 0x9bbe, 0x9bbf, 0x9bc0, 0x9bc1, 0x9bc2, 0x9bc3,\n  0x9bc4, 0x9bc5, 0x9bc6, 0x9bc7, 0x9bc8, 0x9bc9, 0x9bca, 0x9bcb,\n  0x9bcc, 0x9bcd, 0x9bce, 0x9bcf, 0x9bd0, 0x9bd1, 0x9bd2, 0x9bd3,\n  0x9bd4, 0x9bd5, 0x9bd6, 0x9bd7, 0x9bd8, 0x9bd9, 0x9bda, 0x9bdb,\n  /* 0xf6 */\n  0x9bdc, 0x9bdd, 0x9bde, 0x9bdf, 0x9be0, 0x9be1, 0x9be2, 0x9be3,\n  0x9be4, 0x9be5, 0x9be6, 0x9be7, 0x9be8, 0x9be9, 0x9bea, 0x9beb,\n  0x9bec, 0x9bed, 0x9bee, 0x9bef, 0x9bf0, 0x9bf1, 0x9bf2, 0x9bf3,\n  0x9bf4, 0x9bf5, 0x9bf6, 0x9bf7, 0x9bf8, 0x9bf9, 0x9bfa, 0x9bfb,\n  0x9bfc, 0x9bfd, 0x9bfe, 0x9bff, 0x9c00, 0x9c01, 0x9c02, 0x9c03,\n  0x9c04, 0x9c05, 0x9c06, 0x9c07, 0x9c08, 0x9c09, 0x9c0a, 0x9c0b,\n  0x9c0c, 0x9c0d, 0x9c0e, 0x9c0f, 0x9c10, 0x9c11, 0x9c12, 0x9c13,\n  0x9c14, 0x9c15, 0x9c16, 0x9c17, 0x9c18, 0x9c19, 0x9c1a, 0x9c1b,\n  0x9c1c, 0x9c1d, 0x9c1e, 0x9c1f, 0x9c20, 0x9c21, 0x9c22, 0x9c23,\n  0x9c24, 0x9c25, 0x9c26, 0x9c27, 0x9c28, 0x9c29, 0x9c2a, 0x9c2b,\n  0x9c2c, 0x9c2d, 0x9c2e, 0x9c2f, 0x9c30, 0x9c31, 0x9c32, 0x9c33,\n  0x9c34, 0x9c35, 0x9c36, 0x9c37, 0x9c38, 0x9c39, 0x9c3a, 0x9c3b,\n  /* 0xf7 */\n  0x9c3c, 0x9c3d, 0x9c3e, 0x9c3f, 0x9c40, 0x9c41, 0x9c42, 0x9c43,\n  0x9c44, 0x9c45, 0x9c46, 0x9c47, 0x9c48, 0x9c49, 0x9c4a, 0x9c4b,\n  0x9c4c, 0x9c4d, 0x9c4e, 0x9c4f, 0x9c50, 0x9c51, 0x9c52, 0x9c53,\n  0x9c54, 0x9c55, 0x9c56, 0x9c57, 0x9c58, 0x9c59, 0x9c5a, 0x9c5b,\n  0x9c5c, 0x9c5d, 0x9c5e, 0x9c5f, 0x9c60, 0x9c61, 0x9c62, 0x9c63,\n  0x9c64, 0x9c65, 0x9c66, 0x9c67, 0x9c68, 0x9c69, 0x9c6a, 0x9c6b,\n  0x9c6c, 0x9c6d, 0x9c6e, 0x9c6f, 0x9c70, 0x9c71, 0x9c72, 0x9c73,\n  0x9c74, 0x9c75, 0x9c76, 0x9c77, 0x9c78, 0x9c79, 0x9c7a, 0x9c7b,\n  0x9c7d, 0x9c7e, 0x9c80, 0x9c83, 0x9c84, 0x9c89, 0x9c8a, 0x9c8c,\n  0x9c8f, 0x9c93, 0x9c96, 0x9c97, 0x9c98, 0x9c99, 0x9c9d, 0x9caa,\n  0x9cac, 0x9caf, 0x9cb9, 0x9cbe, 0x9cbf, 0x9cc0, 0x9cc1, 0x9cc2,\n  0x9cc8, 0x9cc9, 0x9cd1, 0x9cd2, 0x9cda, 0x9cdb, 0x9ce0, 0x9ce1,\n  /* 0xf8 */\n  0x9ce3, 0x9ce4, 0x9ce5, 0x9ce6, 0x9ce7, 0x9ce8, 0x9ce9, 0x9cea,\n  0x9ceb, 0x9cec, 0x9ced, 0x9cee, 0x9cef, 0x9cf0, 0x9cf1, 0x9cf2,\n  0x9cf3, 0x9cf4, 0x9cf5, 0x9cf6, 0x9cf7, 0x9cf8, 0x9cf9, 0x9cfa,\n  0x9cfb, 0x9cfc, 0x9cfd, 0x9cfe, 0x9cff, 0x9d00, 0x9d01, 0x9d02,\n  0x9d03, 0x9d04, 0x9d05, 0x9d06, 0x9d07, 0x9d08, 0x9d09, 0x9d0a,\n  0x9d0b, 0x9d0c, 0x9d0d, 0x9d0e, 0x9d0f, 0x9d10, 0x9d11, 0x9d12,\n  0x9d13, 0x9d14, 0x9d15, 0x9d16, 0x9d17, 0x9d18, 0x9d19, 0x9d1a,\n  0x9d1b, 0x9d1c, 0x9d1d, 0x9d1e, 0x9d1f, 0x9d20, 0x9d21, 0x9d22,\n  0x9d23, 0x9d24, 0x9d25, 0x9d26, 0x9d27, 0x9d28, 0x9d29, 0x9d2a,\n  0x9d2b, 0x9d2c, 0x9d2d, 0x9d2e, 0x9d2f, 0x9d30, 0x9d31, 0x9d32,\n  0x9d33, 0x9d34, 0x9d35, 0x9d36, 0x9d37, 0x9d38, 0x9d39, 0x9d3a,\n  0x9d3b, 0x9d3c, 0x9d3d, 0x9d3e, 0x9d3f, 0x9d40, 0x9d41, 0x9d42,\n  /* 0xf9 */\n  0x9d43, 0x9d44, 0x9d45, 0x9d46, 0x9d47, 0x9d48, 0x9d49, 0x9d4a,\n  0x9d4b, 0x9d4c, 0x9d4d, 0x9d4e, 0x9d4f, 0x9d50, 0x9d51, 0x9d52,\n  0x9d53, 0x9d54, 0x9d55, 0x9d56, 0x9d57, 0x9d58, 0x9d59, 0x9d5a,\n  0x9d5b, 0x9d5c, 0x9d5d, 0x9d5e, 0x9d5f, 0x9d60, 0x9d61, 0x9d62,\n  0x9d63, 0x9d64, 0x9d65, 0x9d66, 0x9d67, 0x9d68, 0x9d69, 0x9d6a,\n  0x9d6b, 0x9d6c, 0x9d6d, 0x9d6e, 0x9d6f, 0x9d70, 0x9d71, 0x9d72,\n  0x9d73, 0x9d74, 0x9d75, 0x9d76, 0x9d77, 0x9d78, 0x9d79, 0x9d7a,\n  0x9d7b, 0x9d7c, 0x9d7d, 0x9d7e, 0x9d7f, 0x9d80, 0x9d81, 0x9d82,\n  0x9d83, 0x9d84, 0x9d85, 0x9d86, 0x9d87, 0x9d88, 0x9d89, 0x9d8a,\n  0x9d8b, 0x9d8c, 0x9d8d, 0x9d8e, 0x9d8f, 0x9d90, 0x9d91, 0x9d92,\n  0x9d93, 0x9d94, 0x9d95, 0x9d96, 0x9d97, 0x9d98, 0x9d99, 0x9d9a,\n  0x9d9b, 0x9d9c, 0x9d9d, 0x9d9e, 0x9d9f, 0x9da0, 0x9da1, 0x9da2,\n  /* 0xfa */\n  0x9da3, 0x9da4, 0x9da5, 0x9da6, 0x9da7, 0x9da8, 0x9da9, 0x9daa,\n  0x9dab, 0x9dac, 0x9dad, 0x9dae, 0x9daf, 0x9db0, 0x9db1, 0x9db2,\n  0x9db3, 0x9db4, 0x9db5, 0x9db6, 0x9db7, 0x9db8, 0x9db9, 0x9dba,\n  0x9dbb, 0x9dbc, 0x9dbd, 0x9dbe, 0x9dbf, 0x9dc0, 0x9dc1, 0x9dc2,\n  0x9dc3, 0x9dc4, 0x9dc5, 0x9dc6, 0x9dc7, 0x9dc8, 0x9dc9, 0x9dca,\n  0x9dcb, 0x9dcc, 0x9dcd, 0x9dce, 0x9dcf, 0x9dd0, 0x9dd1, 0x9dd2,\n  0x9dd3, 0x9dd4, 0x9dd5, 0x9dd6, 0x9dd7, 0x9dd8, 0x9dd9, 0x9dda,\n  0x9ddb, 0x9ddc, 0x9ddd, 0x9dde, 0x9ddf, 0x9de0, 0x9de1, 0x9de2,\n  0x9de3, 0x9de4, 0x9de5, 0x9de6, 0x9de7, 0x9de8, 0x9de9, 0x9dea,\n  0x9deb, 0x9dec, 0x9ded, 0x9dee, 0x9def, 0x9df0, 0x9df1, 0x9df2,\n  0x9df3, 0x9df4, 0x9df5, 0x9df6, 0x9df7, 0x9df8, 0x9df9, 0x9dfa,\n  0x9dfb, 0x9dfc, 0x9dfd, 0x9dfe, 0x9dff, 0x9e00, 0x9e01, 0x9e02,\n  /* 0xfb */\n  0x9e03, 0x9e04, 0x9e05, 0x9e06, 0x9e07, 0x9e08, 0x9e09, 0x9e0a,\n  0x9e0b, 0x9e0c, 0x9e0d, 0x9e0e, 0x9e0f, 0x9e10, 0x9e11, 0x9e12,\n  0x9e13, 0x9e14, 0x9e15, 0x9e16, 0x9e17, 0x9e18, 0x9e19, 0x9e1a,\n  0x9e1b, 0x9e1c, 0x9e1d, 0x9e1e, 0x9e24, 0x9e27, 0x9e2e, 0x9e30,\n  0x9e34, 0x9e3b, 0x9e3c, 0x9e40, 0x9e4d, 0x9e50, 0x9e52, 0x9e53,\n  0x9e54, 0x9e56, 0x9e59, 0x9e5d, 0x9e5f, 0x9e60, 0x9e61, 0x9e62,\n  0x9e65, 0x9e6e, 0x9e6f, 0x9e72, 0x9e74, 0x9e75, 0x9e76, 0x9e77,\n  0x9e78, 0x9e79, 0x9e7a, 0x9e7b, 0x9e7c, 0x9e7d, 0x9e80, 0x9e81,\n  0x9e83, 0x9e84, 0x9e85, 0x9e86, 0x9e89, 0x9e8a, 0x9e8c, 0x9e8d,\n  0x9e8e, 0x9e8f, 0x9e90, 0x9e91, 0x9e94, 0x9e95, 0x9e96, 0x9e97,\n  0x9e98, 0x9e99, 0x9e9a, 0x9e9b, 0x9e9c, 0x9e9e, 0x9ea0, 0x9ea1,\n  0x9ea2, 0x9ea3, 0x9ea4, 0x9ea5, 0x9ea7, 0x9ea8, 0x9ea9, 0x9eaa,\n  /* 0xfc */\n  0x9eab, 0x9eac, 0x9ead, 0x9eae, 0x9eaf, 0x9eb0, 0x9eb1, 0x9eb2,\n  0x9eb3, 0x9eb5, 0x9eb6, 0x9eb7, 0x9eb9, 0x9eba, 0x9ebc, 0x9ebf,\n  0x9ec0, 0x9ec1, 0x9ec2, 0x9ec3, 0x9ec5, 0x9ec6, 0x9ec7, 0x9ec8,\n  0x9eca, 0x9ecb, 0x9ecc, 0x9ed0, 0x9ed2, 0x9ed3, 0x9ed5, 0x9ed6,\n  0x9ed7, 0x9ed9, 0x9eda, 0x9ede, 0x9ee1, 0x9ee3, 0x9ee4, 0x9ee6,\n  0x9ee8, 0x9eeb, 0x9eec, 0x9eed, 0x9eee, 0x9ef0, 0x9ef1, 0x9ef2,\n  0x9ef3, 0x9ef4, 0x9ef5, 0x9ef6, 0x9ef7, 0x9ef8, 0x9efa, 0x9efd,\n  0x9eff, 0x9f00, 0x9f01, 0x9f02, 0x9f03, 0x9f04, 0x9f05, 0x9f06,\n  0x9f07, 0x9f08, 0x9f09, 0x9f0a, 0x9f0c, 0x9f0f, 0x9f11, 0x9f12,\n  0x9f14, 0x9f15, 0x9f16, 0x9f18, 0x9f1a, 0x9f1b, 0x9f1c, 0x9f1d,\n  0x9f1e, 0x9f1f, 0x9f21, 0x9f23, 0x9f24, 0x9f25, 0x9f26, 0x9f27,\n  0x9f28, 0x9f29, 0x9f2a, 0x9f2b, 0x9f2d, 0x9f2e, 0x9f30, 0x9f31,\n  /* 0xfd */\n  0x9f32, 0x9f33, 0x9f34, 0x9f35, 0x9f36, 0x9f38, 0x9f3a, 0x9f3c,\n  0x9f3f, 0x9f40, 0x9f41, 0x9f42, 0x9f43, 0x9f45, 0x9f46, 0x9f47,\n  0x9f48, 0x9f49, 0x9f4a, 0x9f4b, 0x9f4c, 0x9f4d, 0x9f4e, 0x9f4f,\n  0x9f52, 0x9f53, 0x9f54, 0x9f55, 0x9f56, 0x9f57, 0x9f58, 0x9f59,\n  0x9f5a, 0x9f5b, 0x9f5c, 0x9f5d, 0x9f5e, 0x9f5f, 0x9f60, 0x9f61,\n  0x9f62, 0x9f63, 0x9f64, 0x9f65, 0x9f66, 0x9f67, 0x9f68, 0x9f69,\n  0x9f6a, 0x9f6b, 0x9f6c, 0x9f6d, 0x9f6e, 0x9f6f, 0x9f70, 0x9f71,\n  0x9f72, 0x9f73, 0x9f74, 0x9f75, 0x9f76, 0x9f77, 0x9f78, 0x9f79,\n  0x9f7a, 0x9f7b, 0x9f7c, 0x9f7d, 0x9f7e, 0x9f81, 0x9f82, 0x9f8d,\n  0x9f8e, 0x9f8f, 0x9f90, 0x9f91, 0x9f92, 0x9f93, 0x9f94, 0x9f95,\n  0x9f96, 0x9f97, 0x9f98, 0x9f9c, 0x9f9d, 0x9f9e, 0x9fa1, 0x9fa2,\n  0x9fa3, 0x9fa4, 0x9fa5, 0xf92c, 0xf979, 0xf995, 0xf9e7, 0xf9f1,\n  /* 0xfe */\n  0xfa0c, 0xfa0d, 0xfa0e, 0xfa0f, 0xfa11, 0xfa13, 0xfa14, 0xfa18,\n  0xfa1f, 0xfa20, 0xfa21, 0xfa23, 0xfa24, 0xfa27, 0xfa28, 0xfa29,\n};\n\nstatic int\ngbkext2_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0xa8 && c1 <= 0xfe)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0x80 && c2 < 0xa1)) {\n        unsigned int i = 96 * (c1 - 0x81) + (c2 - (c2 >= 0x80 ? 0x41 : 0x40));\n        unsigned short wc = 0xfffd;\n        {\n          if (i < 12016)\n            wc = gbkext2_2uni_pagea8[i-3744];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/gbkext_inv.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GBK extensions\n */\n\nstatic const unsigned short gbkext_inv_2charset[14313] = {\n  0xa840, 0xa841, 0xa842, 0xa95c, 0xa843, 0xa844, 0xa845, 0xa846,\n  0xa847, 0xa848, 0xa959, 0xa849, 0xa84a, 0xa84b, 0xa84c, 0xa84d,\n  0xa84e, 0xa84f, 0xa850, 0xa851, 0xa852, 0xa892, 0xa853, 0xa854,\n  0xa855, 0xa856, 0xa857, 0xa858, 0xa859, 0xa85a, 0xa85b, 0xa85c,\n  0xa85d, 0xa85e, 0xa85f, 0xa860, 0xa861, 0xa862, 0xa863, 0xa864,\n  0xa865, 0xa866, 0xa867, 0xa868, 0xa869, 0xa86a, 0xa86b, 0xa86c,\n  0xa86d, 0xa86e, 0xa86f, 0xa870, 0xa871, 0xa872, 0xa873, 0xa874,\n  0xa875, 0xa876, 0xa877, 0xa878, 0xa879, 0xa87a, 0xa87b, 0xa87c,\n  0xa87d, 0xa87e, 0xa880, 0xa881, 0xa882, 0xa883, 0xa884, 0xa885,\n  0xa886, 0xa887, 0xa888, 0xa889, 0xa88a, 0xa88b, 0xa88c, 0xa88d,\n  0xa88e, 0xa88f, 0xa890, 0xa891, 0xa965, 0xa996, 0xa893, 0xa894,\n  0xa895, 0xa940, 0xa941, 0xa942, 0xa943, 0xa944, 0xa945, 0xa946,\n  0xa947, 0xa948, 0xa961, 0xa962, 0xa966, 0xa967, 0xa960, 0xa963,\n  0xa964, 0xa95a, 0xa949, 0xa94a, 0xa94b, 0xa94c, 0xa94d, 0xa94e,\n  0xa94f, 0xa950, 0xa951, 0xa952, 0xa953, 0xa954, 0x8140, 0x8141,\n  0x8142, 0x8143, 0x8144, 0x8145, 0x8146, 0x8147, 0x8148, 0x8149,\n  0x814a, 0x814b, 0x814c, 0x814d, 0x814e, 0x814f, 0x8150, 0x8151,\n  0x8152, 0x8153, 0x8154, 0x8155, 0x8156, 0x8157, 0x8158, 0x8159,\n  0x815a, 0x815b, 0x815c, 0x815d, 0x815e, 0x815f, 0x8160, 0x8161,\n  0x8162, 0x8163, 0x8164, 0x8165, 0x8166, 0x8167, 0x8168, 0x8169,\n  0x816a, 0x816b, 0x816c, 0x816d, 0x816e, 0x816f, 0x8170, 0x8171,\n  0x8172, 0x8173, 0x8174, 0x8175, 0x8176, 0x8177, 0x8178, 0x8179,\n  0x817a, 0x817b, 0x817c, 0x817d, 0x817e, 0x8180, 0x8181, 0x8182,\n  0x8183, 0x8184, 0x8185, 0x8186, 0x8187, 0x8188, 0x8189, 0x818a,\n  0x818b, 0x818c, 0x818d, 0x818e, 0x818f, 0x8190, 0x8191, 0x8192,\n  0x8193, 0x8194, 0x8195, 0x8196, 0x8197, 0x8198, 0x8199, 0x819a,\n  0x819b, 0x819c, 0x819d, 0x819e, 0x819f, 0x81a0, 0x81a1, 0x81a2,\n  0x81a3, 0x81a4, 0x81a5, 0x81a6, 0x81a7, 0x81a8, 0x81a9, 0x81aa,\n  0x81ab, 0x81ac, 0x81ad, 0x81ae, 0x81af, 0x81b0, 0x81b1, 0x81b2,\n  0x81b3, 0x81b4, 0x81b5, 0x81b6, 0x81b7, 0x81b8, 0x81b9, 0x81ba,\n  0x81bb, 0x81bc, 0x81bd, 0x81be, 0x81bf, 0x81c0, 0x81c1, 0x81c2,\n  0x81c3, 0x81c4, 0x81c5, 0x81c6, 0x81c7, 0x81c8, 0x81c9, 0x81ca,\n  0x81cb, 0x81cc, 0x81cd, 0x81ce, 0x81cf, 0x81d0, 0x81d1, 0x81d2,\n  0x81d3, 0x81d4, 0x81d5, 0x81d6, 0x81d7, 0x81d8, 0x81d9, 0x81da,\n  0x81db, 0x81dc, 0x81dd, 0x81de, 0x81df, 0x81e0, 0x81e1, 0x81e2,\n  0x81e3, 0x81e4, 0x81e5, 0x81e6, 0x81e7, 0x81e8, 0x81e9, 0x81ea,\n  0x81eb, 0x81ec, 0x81ed, 0x81ee, 0x81ef, 0x81f0, 0x81f1, 0x81f2,\n  0x81f3, 0x81f4, 0x81f5, 0x81f6, 0x81f7, 0x81f8, 0x81f9, 0x81fa,\n  0x81fb, 0x81fc, 0x81fd, 0x81fe, 0x8240, 0x8241, 0x8242, 0x8243,\n  0x8244, 0x8245, 0x8246, 0x8247, 0x8248, 0x8249, 0x824a, 0x824b,\n  0x824c, 0x824d, 0x824e, 0x824f, 0x8250, 0x8251, 0x8252, 0x8253,\n  0x8254, 0x8255, 0x8256, 0x8257, 0x8258, 0x8259, 0x825a, 0x825b,\n  0x825c, 0x825d, 0x825e, 0x825f, 0x8260, 0x8261, 0x8262, 0x8263,\n  0x8264, 0x8265, 0x8266, 0x8267, 0x8268, 0x8269, 0x826a, 0x826b,\n  0x826c, 0x826d, 0x826e, 0x826f, 0x8270, 0x8271, 0x8272, 0x8273,\n  0x8274, 0x8275, 0x8276, 0x8277, 0x8278, 0x8279, 0x827a, 0x827b,\n  0x827c, 0x827d, 0x827e, 0x8280, 0x8281, 0x8282, 0x8283, 0x8284,\n  0x8285, 0x8286, 0x8287, 0x8288, 0x8289, 0x828a, 0x828b, 0x828c,\n  0x828d, 0x828e, 0x828f, 0x8290, 0x8291, 0x8292, 0x8293, 0x8294,\n  0x8295, 0x8296, 0x8297, 0x8298, 0x8299, 0x829a, 0x829b, 0x829c,\n  0x829d, 0x829e, 0x829f, 0x82a0, 0x82a1, 0x82a2, 0x82a3, 0x82a4,\n  0x82a5, 0x82a6, 0x82a7, 0x82a8, 0x82a9, 0x82aa, 0x82ab, 0x82ac,\n  0x82ad, 0x82ae, 0x82af, 0x82b0, 0x82b1, 0x82b2, 0x82b3, 0x82b4,\n  0x82b5, 0x82b6, 0x82b7, 0x82b8, 0x82b9, 0x82ba, 0x82bb, 0x82bc,\n  0x82bd, 0x82be, 0x82bf, 0x82c0, 0x82c1, 0x82c2, 0x82c3, 0x82c4,\n  0x82c5, 0x82c6, 0x82c7, 0x82c8, 0x82c9, 0x82ca, 0x82cb, 0x82cc,\n  0x82cd, 0x82ce, 0x82cf, 0x82d0, 0x82d1, 0x82d2, 0x82d3, 0x82d4,\n  0x82d5, 0x82d6, 0x82d7, 0x82d8, 0x82d9, 0x82da, 0x82db, 0x82dc,\n  0x82dd, 0x82de, 0x82df, 0x82e0, 0x82e1, 0x82e2, 0x82e3, 0x82e4,\n  0x82e5, 0x82e6, 0x82e7, 0x82e8, 0x82e9, 0x82ea, 0x82eb, 0x82ec,\n  0x82ed, 0x82ee, 0x82ef, 0x82f0, 0x82f1, 0x82f2, 0x82f3, 0x82f4,\n  0x82f5, 0x82f6, 0x82f7, 0x82f8, 0x82f9, 0x82fa, 0x82fb, 0x82fc,\n  0x82fd, 0x82fe, 0x8340, 0x8341, 0x8342, 0x8343, 0x8344, 0x8345,\n  0x8346, 0x8347, 0x8348, 0x8349, 0x834a, 0x834b, 0x834c, 0x834d,\n  0x834e, 0x834f, 0x8350, 0x8351, 0x8352, 0x8353, 0x8354, 0x8355,\n  0x8356, 0x8357, 0x8358, 0x8359, 0x835a, 0x835b, 0x835c, 0x835d,\n  0x835e, 0x835f, 0x8360, 0x8361, 0x8362, 0x8363, 0x8364, 0x8365,\n  0x8366, 0x8367, 0x8368, 0x8369, 0x836a, 0x836b, 0x836c, 0x836d,\n  0x836e, 0x836f, 0x8370, 0x8371, 0x8372, 0x8373, 0x8374, 0x8375,\n  0x8376, 0x8377, 0x8378, 0x8379, 0x837a, 0x837b, 0x837c, 0x837d,\n  0x837e, 0x8380, 0x8381, 0x8382, 0x8383, 0x8384, 0x8385, 0x8386,\n  0x8387, 0x8388, 0x8389, 0x838a, 0x838b, 0x838c, 0x838d, 0x838e,\n  0x838f, 0x8390, 0x8391, 0x8392, 0x8393, 0x8394, 0x8395, 0x8396,\n  0x8397, 0x8398, 0x8399, 0x839a, 0x839b, 0x839c, 0x839d, 0x839e,\n  0x839f, 0x83a0, 0x83a1, 0x83a2, 0x83a3, 0x83a4, 0x83a5, 0x83a6,\n  0x83a7, 0x83a8, 0x83a9, 0x83aa, 0x83ab, 0x83ac, 0x83ad, 0x83ae,\n  0x83af, 0x83b0, 0x83b1, 0x83b2, 0x83b3, 0x83b4, 0x83b5, 0x83b6,\n  0x83b7, 0x83b8, 0x83b9, 0x83ba, 0x83bb, 0x83bc, 0x83bd, 0x83be,\n  0x83bf, 0x83c0, 0x83c1, 0x83c2, 0x83c3, 0x83c4, 0x83c5, 0x83c6,\n  0x83c7, 0x83c8, 0x83c9, 0x83ca, 0x83cb, 0x83cc, 0x83cd, 0x83ce,\n  0x83cf, 0x83d0, 0x83d1, 0x83d2, 0x83d3, 0x83d4, 0x83d5, 0x83d6,\n  0x83d7, 0x83d8, 0x83d9, 0x83da, 0x83db, 0x83dc, 0x83dd, 0x83de,\n  0x83df, 0x83e0, 0x83e1, 0x83e2, 0x83e3, 0x83e4, 0x83e5, 0x83e6,\n  0x83e7, 0x83e8, 0x83e9, 0x83ea, 0x83eb, 0x83ec, 0x83ed, 0x83ee,\n  0x83ef, 0x83f0, 0x83f1, 0x83f2, 0x83f3, 0x83f4, 0x83f5, 0x83f6,\n  0x83f7, 0x83f8, 0x83f9, 0x83fa, 0x83fb, 0x83fc, 0x83fd, 0x83fe,\n  0x8440, 0x8441, 0x8442, 0x8443, 0x8444, 0x8445, 0x8446, 0x8447,\n  0x8448, 0x8449, 0x844a, 0x844b, 0x844c, 0x844d, 0x844e, 0x844f,\n  0x8450, 0x8451, 0x8452, 0x8453, 0x8454, 0x8455, 0x8456, 0x8457,\n  0x8458, 0x8459, 0x845a, 0x845b, 0x845c, 0x845d, 0x845e, 0x845f,\n  0x8460, 0x8461, 0x8462, 0x8463, 0x8464, 0x8465, 0x8466, 0x8467,\n  0x8468, 0x8469, 0x846a, 0x846b, 0x846c, 0x846d, 0x846e, 0x846f,\n  0x8470, 0x8471, 0x8472, 0x8473, 0x8474, 0x8475, 0x8476, 0x8477,\n  0x8478, 0x8479, 0x847a, 0x847b, 0x847c, 0x847d, 0x847e, 0x8480,\n  0x8481, 0x8482, 0x8483, 0x8484, 0x8485, 0x8486, 0x8487, 0x8488,\n  0x8489, 0x848a, 0x848b, 0x848c, 0x848d, 0x848e, 0x848f, 0x8490,\n  0x8491, 0x8492, 0x8493, 0x8494, 0x8495, 0x8496, 0x8497, 0x8498,\n  0x8499, 0x849a, 0x849b, 0x849c, 0x849d, 0x849e, 0x849f, 0x84a0,\n  0x84a1, 0x84a2, 0x84a3, 0x84a4, 0x84a5, 0x84a6, 0x84a7, 0x84a8,\n  0x84a9, 0x84aa, 0x84ab, 0x84ac, 0x84ad, 0x84ae, 0x84af, 0x84b0,\n  0x84b1, 0x84b2, 0x84b3, 0x84b4, 0x84b5, 0x84b6, 0x84b7, 0x84b8,\n  0x84b9, 0x84ba, 0x84bb, 0x84bc, 0x84bd, 0x84be, 0x84bf, 0x84c0,\n  0x84c1, 0x84c2, 0x84c3, 0x84c4, 0x84c5, 0x84c6, 0x84c7, 0x84c8,\n  0x84c9, 0x84ca, 0x84cb, 0x84cc, 0x84cd, 0x84ce, 0x84cf, 0x84d0,\n  0x84d1, 0x84d2, 0x84d3, 0x84d4, 0x84d5, 0x84d6, 0x84d7, 0x84d8,\n  0x84d9, 0x84da, 0x84db, 0x84dc, 0x84dd, 0x84de, 0x84df, 0x84e0,\n  0x84e1, 0x84e2, 0x84e3, 0x84e4, 0x84e5, 0x84e6, 0x84e7, 0x84e8,\n  0x84e9, 0x84ea, 0x84eb, 0x84ec, 0x84ed, 0x84ee, 0x84ef, 0x84f0,\n  0x84f1, 0x84f2, 0x84f3, 0x84f4, 0x84f5, 0x84f6, 0x84f7, 0x84f8,\n  0x84f9, 0x84fa, 0x84fb, 0x84fc, 0x84fd, 0x84fe, 0x8540, 0x8541,\n  0x8542, 0x8543, 0x8544, 0x8545, 0x8546, 0x8547, 0x8548, 0x8549,\n  0x854a, 0x854b, 0x854c, 0x854d, 0x854e, 0x854f, 0x8550, 0x8551,\n  0x8552, 0x8553, 0x8554, 0x8555, 0x8556, 0x8557, 0x8558, 0x8559,\n  0x855a, 0x855b, 0x855c, 0x855d, 0x855e, 0x855f, 0x8560, 0x8561,\n  0x8562, 0x8563, 0x8564, 0x8565, 0x8566, 0x8567, 0x8568, 0x8569,\n  0x856a, 0x856b, 0x856c, 0x856d, 0x856e, 0x856f, 0x8570, 0x8571,\n  0x8572, 0x8573, 0x8574, 0x8575, 0x8576, 0x8577, 0x8578, 0x8579,\n  0x857a, 0x857b, 0x857c, 0x857d, 0x857e, 0x8580, 0x8581, 0x8582,\n  0x8583, 0x8584, 0x8585, 0x8586, 0x8587, 0x8588, 0x8589, 0x858a,\n  0x858b, 0x858c, 0x858d, 0x858e, 0x858f, 0x8590, 0x8591, 0x8592,\n  0x8593, 0x8594, 0x8595, 0x8596, 0x8597, 0x8598, 0x8599, 0x859a,\n  0x859b, 0x859c, 0x859d, 0x859e, 0x859f, 0x85a0, 0x85a1, 0x85a2,\n  0x85a3, 0x85a4, 0x85a5, 0x85a6, 0x85a7, 0x85a8, 0x85a9, 0x85aa,\n  0x85ab, 0x85ac, 0x85ad, 0x85ae, 0x85af, 0x85b0, 0x85b1, 0x85b2,\n  0x85b3, 0x85b4, 0x85b5, 0x85b6, 0x85b7, 0x85b8, 0x85b9, 0x85ba,\n  0x85bb, 0x85bc, 0x85bd, 0x85be, 0x85bf, 0x85c0, 0x85c1, 0x85c2,\n  0x85c3, 0x85c4, 0x85c5, 0x85c6, 0x85c7, 0x85c8, 0x85c9, 0x85ca,\n  0x85cb, 0x85cc, 0x85cd, 0x85ce, 0x85cf, 0x85d0, 0x85d1, 0x85d2,\n  0x85d3, 0x85d4, 0x85d5, 0x85d6, 0x85d7, 0x85d8, 0x85d9, 0x85da,\n  0x85db, 0x85dc, 0x85dd, 0x85de, 0x85df, 0x85e0, 0x85e1, 0x85e2,\n  0x85e3, 0x85e4, 0x85e5, 0x85e6, 0x85e7, 0x85e8, 0x85e9, 0x85ea,\n  0x85eb, 0x85ec, 0x85ed, 0x85ee, 0x85ef, 0x85f0, 0x85f1, 0x85f2,\n  0x85f3, 0x85f4, 0x85f5, 0x85f6, 0x85f7, 0x85f8, 0x85f9, 0x85fa,\n  0x85fb, 0x85fc, 0x85fd, 0x85fe, 0x8640, 0x8641, 0x8642, 0x8643,\n  0x8644, 0x8645, 0x8646, 0x8647, 0x8648, 0x8649, 0x864a, 0x864b,\n  0x864c, 0x864d, 0x864e, 0x864f, 0x8650, 0x8651, 0x8652, 0x8653,\n  0x8654, 0x8655, 0x8656, 0x8657, 0x8658, 0x8659, 0x865a, 0x865b,\n  0x865c, 0x865d, 0x865e, 0x865f, 0x8660, 0x8661, 0x8662, 0x8663,\n  0x8664, 0x8665, 0x8666, 0x8667, 0x8668, 0x8669, 0x866a, 0x866b,\n  0x866c, 0x866d, 0x866e, 0x866f, 0x8670, 0x8671, 0x8672, 0x8673,\n  0x8674, 0x8675, 0x8676, 0x8677, 0x8678, 0x8679, 0x867a, 0x867b,\n  0x867c, 0x867d, 0x867e, 0x8680, 0x8681, 0x8682, 0x8683, 0x8684,\n  0x8685, 0x8686, 0x8687, 0x8688, 0x8689, 0x868a, 0x868b, 0x868c,\n  0x868d, 0x868e, 0x868f, 0x8690, 0x8691, 0x8692, 0x8693, 0x8694,\n  0x8695, 0x8696, 0x8697, 0x8698, 0x8699, 0x869a, 0x869b, 0x869c,\n  0x869d, 0x869e, 0x869f, 0x86a0, 0x86a1, 0x86a2, 0x86a3, 0x86a4,\n  0x86a5, 0x86a6, 0x86a7, 0x86a8, 0x86a9, 0x86aa, 0x86ab, 0x86ac,\n  0x86ad, 0x86ae, 0x86af, 0x86b0, 0x86b1, 0x86b2, 0x86b3, 0x86b4,\n  0x86b5, 0x86b6, 0x86b7, 0x86b8, 0x86b9, 0x86ba, 0x86bb, 0x86bc,\n  0x86bd, 0x86be, 0x86bf, 0x86c0, 0x86c1, 0x86c2, 0x86c3, 0x86c4,\n  0x86c5, 0x86c6, 0x86c7, 0x86c8, 0x86c9, 0x86ca, 0x86cb, 0x86cc,\n  0x86cd, 0x86ce, 0x86cf, 0x86d0, 0x86d1, 0x86d2, 0x86d3, 0x86d4,\n  0x86d5, 0x86d6, 0x86d7, 0x86d8, 0x86d9, 0x86da, 0x86db, 0x86dc,\n  0x86dd, 0x86de, 0x86df, 0x86e0, 0x86e1, 0x86e2, 0x86e3, 0x86e4,\n  0x86e5, 0x86e6, 0x86e7, 0x86e8, 0x86e9, 0x86ea, 0x86eb, 0x86ec,\n  0x86ed, 0x86ee, 0x86ef, 0x86f0, 0x86f1, 0x86f2, 0x86f3, 0x86f4,\n  0x86f5, 0x86f6, 0x86f7, 0x86f8, 0x86f9, 0x86fa, 0x86fb, 0x86fc,\n  0x86fd, 0x86fe, 0x8740, 0x8741, 0x8742, 0x8743, 0x8744, 0x8745,\n  0x8746, 0x8747, 0x8748, 0x8749, 0x874a, 0x874b, 0x874c, 0x874d,\n  0x874e, 0x874f, 0x8750, 0x8751, 0x8752, 0x8753, 0x8754, 0x8755,\n  0x8756, 0x8757, 0x8758, 0x8759, 0x875a, 0x875b, 0x875c, 0x875d,\n  0x875e, 0x875f, 0x8760, 0x8761, 0x8762, 0x8763, 0x8764, 0x8765,\n  0x8766, 0x8767, 0x8768, 0x8769, 0x876a, 0x876b, 0x876c, 0x876d,\n  0x876e, 0x876f, 0x8770, 0x8771, 0x8772, 0x8773, 0x8774, 0x8775,\n  0x8776, 0x8777, 0x8778, 0x8779, 0x877a, 0x877b, 0x877c, 0x877d,\n  0x877e, 0x8780, 0x8781, 0x8782, 0x8783, 0x8784, 0x8785, 0x8786,\n  0x8787, 0x8788, 0x8789, 0x878a, 0x878b, 0x878c, 0x878d, 0x878e,\n  0x878f, 0x8790, 0x8791, 0x8792, 0x8793, 0x8794, 0x8795, 0x8796,\n  0x8797, 0x8798, 0x8799, 0x879a, 0x879b, 0x879c, 0x879d, 0x879e,\n  0x879f, 0x87a0, 0x87a1, 0x87a2, 0x87a3, 0x87a4, 0x87a5, 0x87a6,\n  0x87a7, 0x87a8, 0x87a9, 0x87aa, 0x87ab, 0x87ac, 0x87ad, 0x87ae,\n  0x87af, 0x87b0, 0x87b1, 0x87b2, 0x87b3, 0x87b4, 0x87b5, 0x87b6,\n  0x87b7, 0x87b8, 0x87b9, 0x87ba, 0x87bb, 0x87bc, 0x87bd, 0x87be,\n  0x87bf, 0x87c0, 0x87c1, 0x87c2, 0x87c3, 0x87c4, 0x87c5, 0x87c6,\n  0x87c7, 0x87c8, 0x87c9, 0x87ca, 0x87cb, 0x87cc, 0x87cd, 0x87ce,\n  0x87cf, 0x87d0, 0x87d1, 0x87d2, 0x87d3, 0x87d4, 0x87d5, 0x87d6,\n  0x87d7, 0x87d8, 0x87d9, 0x87da, 0x87db, 0x87dc, 0x87dd, 0x87de,\n  0x87df, 0x87e0, 0x87e1, 0x87e2, 0x87e3, 0x87e4, 0x87e5, 0x87e6,\n  0x87e7, 0x87e8, 0x87e9, 0x87ea, 0x87eb, 0x87ec, 0x87ed, 0x87ee,\n  0x87ef, 0x87f0, 0x87f1, 0x87f2, 0x87f3, 0x87f4, 0x87f5, 0x87f6,\n  0x87f7, 0x87f8, 0x87f9, 0x87fa, 0x87fb, 0x87fc, 0x87fd, 0x87fe,\n  0x8840, 0x8841, 0x8842, 0x8843, 0x8844, 0x8845, 0x8846, 0x8847,\n  0x8848, 0x8849, 0x884a, 0x884b, 0x884c, 0x884d, 0x884e, 0x884f,\n  0x8850, 0x8851, 0x8852, 0x8853, 0x8854, 0x8855, 0x8856, 0x8857,\n  0x8858, 0x8859, 0x885a, 0x885b, 0x885c, 0x885d, 0x885e, 0x885f,\n  0x8860, 0x8861, 0x8862, 0x8863, 0x8864, 0x8865, 0x8866, 0x8867,\n  0x8868, 0x8869, 0x886a, 0x886b, 0x886c, 0x886d, 0x886e, 0x886f,\n  0x8870, 0x8871, 0x8872, 0x8873, 0x8874, 0x8875, 0x8876, 0x8877,\n  0x8878, 0x8879, 0x887a, 0x887b, 0x887c, 0x887d, 0x887e, 0x8880,\n  0x8881, 0x8882, 0x8883, 0x8884, 0x8885, 0x8886, 0x8887, 0x8888,\n  0x8889, 0x888a, 0x888b, 0x888c, 0x888d, 0x888e, 0x888f, 0x8890,\n  0x8891, 0x8892, 0x8893, 0x8894, 0x8895, 0x8896, 0x8897, 0x8898,\n  0x8899, 0x889a, 0x889b, 0x889c, 0x889d, 0x889e, 0x889f, 0x88a0,\n  0x88a1, 0x88a2, 0x88a3, 0x88a4, 0x88a5, 0x88a6, 0x88a7, 0x88a8,\n  0x88a9, 0x88aa, 0x88ab, 0x88ac, 0x88ad, 0x88ae, 0x88af, 0x88b0,\n  0x88b1, 0x88b2, 0x88b3, 0x88b4, 0x88b5, 0x88b6, 0x88b7, 0x88b8,\n  0x88b9, 0x88ba, 0x88bb, 0x88bc, 0x88bd, 0x88be, 0x88bf, 0x88c0,\n  0x88c1, 0x88c2, 0x88c3, 0x88c4, 0x88c5, 0x88c6, 0x88c7, 0x88c8,\n  0x88c9, 0x88ca, 0x88cb, 0x88cc, 0x88cd, 0x88ce, 0x88cf, 0x88d0,\n  0x88d1, 0x88d2, 0x88d3, 0x88d4, 0x88d5, 0x88d6, 0x88d7, 0x88d8,\n  0x88d9, 0x88da, 0x88db, 0x88dc, 0x88dd, 0x88de, 0x88df, 0x88e0,\n  0x88e1, 0x88e2, 0x88e3, 0x88e4, 0x88e5, 0x88e6, 0x88e7, 0x88e8,\n  0x88e9, 0x88ea, 0x88eb, 0x88ec, 0x88ed, 0x88ee, 0x88ef, 0x88f0,\n  0x88f1, 0x88f2, 0x88f3, 0x88f4, 0x88f5, 0x88f6, 0x88f7, 0x88f8,\n  0x88f9, 0x88fa, 0x88fb, 0x88fc, 0x88fd, 0x88fe, 0x8940, 0x8941,\n  0x8942, 0x8943, 0x8944, 0x8945, 0x8946, 0x8947, 0x8948, 0x8949,\n  0x894a, 0x894b, 0x894c, 0x894d, 0x894e, 0x894f, 0x8950, 0x8951,\n  0x8952, 0x8953, 0x8954, 0x8955, 0x8956, 0x8957, 0x8958, 0x8959,\n  0x895a, 0x895b, 0x895c, 0x895d, 0x895e, 0x895f, 0x8960, 0x8961,\n  0x8962, 0x8963, 0x8964, 0x8965, 0x8966, 0x8967, 0x8968, 0x8969,\n  0x896a, 0x896b, 0x896c, 0x896d, 0x896e, 0x896f, 0x8970, 0x8971,\n  0x8972, 0x8973, 0x8974, 0x8975, 0x8976, 0x8977, 0x8978, 0x8979,\n  0x897a, 0x897b, 0x897c, 0x897d, 0x897e, 0x8980, 0x8981, 0x8982,\n  0x8983, 0x8984, 0x8985, 0x8986, 0x8987, 0x8988, 0x8989, 0x898a,\n  0x898b, 0x898c, 0x898d, 0x898e, 0x898f, 0x8990, 0x8991, 0x8992,\n  0x8993, 0x8994, 0x8995, 0x8996, 0x8997, 0x8998, 0x8999, 0x899a,\n  0x899b, 0x899c, 0x899d, 0x899e, 0x899f, 0x89a0, 0x89a1, 0x89a2,\n  0x89a3, 0x89a4, 0x89a5, 0x89a6, 0x89a7, 0x89a8, 0x89a9, 0x89aa,\n  0x89ab, 0x89ac, 0x89ad, 0x89ae, 0x89af, 0x89b0, 0x89b1, 0x89b2,\n  0x89b3, 0x89b4, 0x89b5, 0x89b6, 0x89b7, 0x89b8, 0x89b9, 0x89ba,\n  0x89bb, 0x89bc, 0x89bd, 0x89be, 0x89bf, 0x89c0, 0x89c1, 0x89c2,\n  0x89c3, 0x89c4, 0x89c5, 0x89c6, 0x89c7, 0x89c8, 0x89c9, 0x89ca,\n  0x89cb, 0x89cc, 0x89cd, 0x89ce, 0x89cf, 0x89d0, 0x89d1, 0x89d2,\n  0x89d3, 0x89d4, 0x89d5, 0x89d6, 0x89d7, 0x89d8, 0x89d9, 0x89da,\n  0x89db, 0x89dc, 0x89dd, 0x89de, 0x89df, 0x89e0, 0x89e1, 0x89e2,\n  0x89e3, 0x89e4, 0x89e5, 0x89e6, 0x89e7, 0x89e8, 0x89e9, 0x89ea,\n  0x89eb, 0x89ec, 0x89ed, 0x89ee, 0x89ef, 0x89f0, 0x89f1, 0x89f2,\n  0x89f3, 0x89f4, 0x89f5, 0x89f6, 0x89f7, 0x89f8, 0x89f9, 0x89fa,\n  0x89fb, 0x89fc, 0x89fd, 0x89fe, 0x8a40, 0x8a41, 0x8a42, 0x8a43,\n  0x8a44, 0x8a45, 0x8a46, 0x8a47, 0x8a48, 0x8a49, 0x8a4a, 0x8a4b,\n  0x8a4c, 0x8a4d, 0x8a4e, 0x8a4f, 0x8a50, 0x8a51, 0x8a52, 0x8a53,\n  0x8a54, 0x8a55, 0x8a56, 0x8a57, 0x8a58, 0x8a59, 0x8a5a, 0x8a5b,\n  0x8a5c, 0x8a5d, 0x8a5e, 0x8a5f, 0x8a60, 0x8a61, 0x8a62, 0x8a63,\n  0x8a64, 0x8a65, 0x8a66, 0x8a67, 0x8a68, 0x8a69, 0x8a6a, 0x8a6b,\n  0x8a6c, 0x8a6d, 0x8a6e, 0x8a6f, 0x8a70, 0x8a71, 0x8a72, 0x8a73,\n  0x8a74, 0x8a75, 0x8a76, 0x8a77, 0x8a78, 0x8a79, 0x8a7a, 0x8a7b,\n  0x8a7c, 0x8a7d, 0x8a7e, 0x8a80, 0x8a81, 0x8a82, 0x8a83, 0x8a84,\n  0x8a85, 0x8a86, 0x8a87, 0x8a88, 0x8a89, 0x8a8a, 0x8a8b, 0x8a8c,\n  0x8a8d, 0x8a8e, 0x8a8f, 0x8a90, 0x8a91, 0x8a92, 0x8a93, 0x8a94,\n  0x8a95, 0x8a96, 0x8a97, 0x8a98, 0x8a99, 0x8a9a, 0x8a9b, 0x8a9c,\n  0x8a9d, 0x8a9e, 0x8a9f, 0x8aa0, 0x8aa1, 0x8aa2, 0x8aa3, 0x8aa4,\n  0x8aa5, 0x8aa6, 0x8aa7, 0x8aa8, 0x8aa9, 0x8aaa, 0x8aab, 0x8aac,\n  0x8aad, 0x8aae, 0x8aaf, 0x8ab0, 0x8ab1, 0x8ab2, 0x8ab3, 0x8ab4,\n  0x8ab5, 0x8ab6, 0x8ab7, 0x8ab8, 0x8ab9, 0x8aba, 0x8abb, 0x8abc,\n  0x8abd, 0x8abe, 0x8abf, 0x8ac0, 0x8ac1, 0x8ac2, 0x8ac3, 0x8ac4,\n  0x8ac5, 0x8ac6, 0x8ac7, 0x8ac8, 0x8ac9, 0x8aca, 0x8acb, 0x8acc,\n  0x8acd, 0x8ace, 0x8acf, 0x8ad0, 0x8ad1, 0x8ad2, 0x8ad3, 0x8ad4,\n  0x8ad5, 0x8ad6, 0x8ad7, 0x8ad8, 0x8ad9, 0x8ada, 0x8adb, 0x8adc,\n  0x8add, 0x8ade, 0x8adf, 0x8ae0, 0x8ae1, 0x8ae2, 0x8ae3, 0x8ae4,\n  0x8ae5, 0x8ae6, 0x8ae7, 0x8ae8, 0x8ae9, 0x8aea, 0x8aeb, 0x8aec,\n  0x8aed, 0x8aee, 0x8aef, 0x8af0, 0x8af1, 0x8af2, 0x8af3, 0x8af4,\n  0x8af5, 0x8af6, 0x8af7, 0x8af8, 0x8af9, 0x8afa, 0x8afb, 0x8afc,\n  0x8afd, 0x8afe, 0x8b40, 0x8b41, 0x8b42, 0x8b43, 0x8b44, 0x8b45,\n  0x8b46, 0x8b47, 0x8b48, 0x8b49, 0x8b4a, 0x8b4b, 0x8b4c, 0x8b4d,\n  0x8b4e, 0x8b4f, 0x8b50, 0x8b51, 0x8b52, 0x8b53, 0x8b54, 0x8b55,\n  0x8b56, 0x8b57, 0x8b58, 0x8b59, 0x8b5a, 0x8b5b, 0x8b5c, 0x8b5d,\n  0x8b5e, 0x8b5f, 0x8b60, 0x8b61, 0x8b62, 0x8b63, 0x8b64, 0x8b65,\n  0x8b66, 0x8b67, 0x8b68, 0x8b69, 0x8b6a, 0x8b6b, 0x8b6c, 0x8b6d,\n  0x8b6e, 0x8b6f, 0x8b70, 0x8b71, 0x8b72, 0x8b73, 0x8b74, 0x8b75,\n  0x8b76, 0x8b77, 0x8b78, 0x8b79, 0x8b7a, 0x8b7b, 0x8b7c, 0x8b7d,\n  0x8b7e, 0x8b80, 0x8b81, 0x8b82, 0x8b83, 0x8b84, 0x8b85, 0x8b86,\n  0x8b87, 0x8b88, 0x8b89, 0x8b8a, 0x8b8b, 0x8b8c, 0x8b8d, 0x8b8e,\n  0x8b8f, 0x8b90, 0x8b91, 0x8b92, 0x8b93, 0x8b94, 0x8b95, 0x8b96,\n  0x8b97, 0x8b98, 0x8b99, 0x8b9a, 0x8b9b, 0x8b9c, 0x8b9d, 0x8b9e,\n  0x8b9f, 0x8ba0, 0x8ba1, 0x8ba2, 0x8ba3, 0x8ba4, 0x8ba5, 0x8ba6,\n  0x8ba7, 0x8ba8, 0x8ba9, 0x8baa, 0x8bab, 0x8bac, 0x8bad, 0x8bae,\n  0x8baf, 0x8bb0, 0x8bb1, 0x8bb2, 0x8bb3, 0x8bb4, 0x8bb5, 0x8bb6,\n  0x8bb7, 0x8bb8, 0x8bb9, 0x8bba, 0x8bbb, 0x8bbc, 0x8bbd, 0x8bbe,\n  0x8bbf, 0x8bc0, 0x8bc1, 0x8bc2, 0x8bc3, 0x8bc4, 0x8bc5, 0x8bc6,\n  0x8bc7, 0x8bc8, 0x8bc9, 0x8bca, 0x8bcb, 0x8bcc, 0x8bcd, 0x8bce,\n  0x8bcf, 0x8bd0, 0x8bd1, 0x8bd2, 0x8bd3, 0x8bd4, 0x8bd5, 0x8bd6,\n  0x8bd7, 0x8bd8, 0x8bd9, 0x8bda, 0x8bdb, 0x8bdc, 0x8bdd, 0x8bde,\n  0x8bdf, 0x8be0, 0x8be1, 0x8be2, 0x8be3, 0x8be4, 0x8be5, 0x8be6,\n  0x8be7, 0x8be8, 0x8be9, 0x8bea, 0x8beb, 0x8bec, 0x8bed, 0x8bee,\n  0x8bef, 0x8bf0, 0x8bf1, 0x8bf2, 0x8bf3, 0x8bf4, 0x8bf5, 0x8bf6,\n  0x8bf7, 0x8bf8, 0x8bf9, 0x8bfa, 0x8bfb, 0x8bfc, 0x8bfd, 0x8bfe,\n  0x8c40, 0x8c41, 0x8c42, 0x8c43, 0x8c44, 0x8c45, 0x8c46, 0x8c47,\n  0x8c48, 0x8c49, 0x8c4a, 0x8c4b, 0x8c4c, 0x8c4d, 0x8c4e, 0x8c4f,\n  0x8c50, 0x8c51, 0x8c52, 0x8c53, 0x8c54, 0x8c55, 0x8c56, 0x8c57,\n  0x8c58, 0x8c59, 0x8c5a, 0x8c5b, 0x8c5c, 0x8c5d, 0x8c5e, 0x8c5f,\n  0x8c60, 0x8c61, 0x8c62, 0x8c63, 0x8c64, 0x8c65, 0x8c66, 0x8c67,\n  0x8c68, 0x8c69, 0x8c6a, 0x8c6b, 0x8c6c, 0x8c6d, 0x8c6e, 0x8c6f,\n  0x8c70, 0x8c71, 0x8c72, 0x8c73, 0x8c74, 0x8c75, 0x8c76, 0x8c77,\n  0x8c78, 0x8c79, 0x8c7a, 0x8c7b, 0x8c7c, 0x8c7d, 0x8c7e, 0x8c80,\n  0x8c81, 0x8c82, 0x8c83, 0x8c84, 0x8c85, 0x8c86, 0x8c87, 0x8c88,\n  0x8c89, 0x8c8a, 0x8c8b, 0x8c8c, 0x8c8d, 0x8c8e, 0x8c8f, 0x8c90,\n  0x8c91, 0x8c92, 0x8c93, 0x8c94, 0x8c95, 0x8c96, 0x8c97, 0x8c98,\n  0x8c99, 0x8c9a, 0x8c9b, 0x8c9c, 0x8c9d, 0x8c9e, 0x8c9f, 0x8ca0,\n  0x8ca1, 0x8ca2, 0x8ca3, 0x8ca4, 0x8ca5, 0x8ca6, 0x8ca7, 0x8ca8,\n  0x8ca9, 0x8caa, 0x8cab, 0x8cac, 0x8cad, 0x8cae, 0x8caf, 0x8cb0,\n  0x8cb1, 0x8cb2, 0x8cb3, 0x8cb4, 0x8cb5, 0x8cb6, 0x8cb7, 0x8cb8,\n  0x8cb9, 0x8cba, 0x8cbb, 0x8cbc, 0x8cbd, 0x8cbe, 0x8cbf, 0x8cc0,\n  0x8cc1, 0x8cc2, 0x8cc3, 0x8cc4, 0x8cc5, 0x8cc6, 0x8cc7, 0x8cc8,\n  0x8cc9, 0x8cca, 0x8ccb, 0x8ccc, 0x8ccd, 0x8cce, 0x8ccf, 0x8cd0,\n  0x8cd1, 0x8cd2, 0x8cd3, 0x8cd4, 0x8cd5, 0x8cd6, 0x8cd7, 0x8cd8,\n  0x8cd9, 0x8cda, 0x8cdb, 0x8cdc, 0x8cdd, 0x8cde, 0x8cdf, 0x8ce0,\n  0x8ce1, 0x8ce2, 0x8ce3, 0x8ce4, 0x8ce5, 0x8ce6, 0x8ce7, 0x8ce8,\n  0x8ce9, 0x8cea, 0x8ceb, 0x8cec, 0x8ced, 0x8cee, 0x8cef, 0x8cf0,\n  0x8cf1, 0x8cf2, 0x8cf3, 0x8cf4, 0x8cf5, 0x8cf6, 0x8cf7, 0x8cf8,\n  0x8cf9, 0x8cfa, 0x8cfb, 0x8cfc, 0x8cfd, 0x8cfe, 0x8d40, 0x8d41,\n  0x8d42, 0x8d43, 0x8d44, 0x8d45, 0x8d46, 0x8d47, 0x8d48, 0x8d49,\n  0x8d4a, 0x8d4b, 0x8d4c, 0x8d4d, 0x8d4e, 0x8d4f, 0x8d50, 0x8d51,\n  0x8d52, 0x8d53, 0x8d54, 0x8d55, 0x8d56, 0x8d57, 0x8d58, 0x8d59,\n  0x8d5a, 0x8d5b, 0x8d5c, 0x8d5d, 0x8d5e, 0x8d5f, 0x8d60, 0x8d61,\n  0x8d62, 0x8d63, 0x8d64, 0x8d65, 0x8d66, 0x8d67, 0x8d68, 0x8d69,\n  0x8d6a, 0x8d6b, 0x8d6c, 0x8d6d, 0x8d6e, 0x8d6f, 0x8d70, 0x8d71,\n  0x8d72, 0x8d73, 0x8d74, 0x8d75, 0x8d76, 0x8d77, 0x8d78, 0x8d79,\n  0x8d7a, 0x8d7b, 0x8d7c, 0x8d7d, 0x8d7e, 0x8d80, 0x8d81, 0x8d82,\n  0x8d83, 0x8d84, 0x8d85, 0x8d86, 0x8d87, 0x8d88, 0x8d89, 0x8d8a,\n  0x8d8b, 0x8d8c, 0x8d8d, 0x8d8e, 0x8d8f, 0x8d90, 0x8d91, 0x8d92,\n  0x8d93, 0x8d94, 0x8d95, 0x8d96, 0x8d97, 0x8d98, 0x8d99, 0x8d9a,\n  0x8d9b, 0x8d9c, 0x8d9d, 0x8d9e, 0x8d9f, 0x8da0, 0x8da1, 0x8da2,\n  0x8da3, 0x8da4, 0x8da5, 0x8da6, 0x8da7, 0x8da8, 0x8da9, 0x8daa,\n  0x8dab, 0x8dac, 0x8dad, 0x8dae, 0x8daf, 0x8db0, 0x8db1, 0x8db2,\n  0x8db3, 0x8db4, 0x8db5, 0x8db6, 0x8db7, 0x8db8, 0x8db9, 0x8dba,\n  0x8dbb, 0x8dbc, 0x8dbd, 0x8dbe, 0x8dbf, 0x8dc0, 0x8dc1, 0x8dc2,\n  0x8dc3, 0x8dc4, 0x8dc5, 0x8dc6, 0x8dc7, 0x8dc8, 0x8dc9, 0x8dca,\n  0x8dcb, 0x8dcc, 0x8dcd, 0x8dce, 0x8dcf, 0x8dd0, 0x8dd1, 0x8dd2,\n  0x8dd3, 0x8dd4, 0x8dd5, 0x8dd6, 0x8dd7, 0x8dd8, 0x8dd9, 0x8dda,\n  0x8ddb, 0x8ddc, 0x8ddd, 0x8dde, 0x8ddf, 0x8de0, 0x8de1, 0x8de2,\n  0x8de3, 0x8de4, 0x8de5, 0x8de6, 0x8de7, 0x8de8, 0x8de9, 0x8dea,\n  0x8deb, 0x8dec, 0x8ded, 0x8dee, 0x8def, 0x8df0, 0x8df1, 0x8df2,\n  0x8df3, 0x8df4, 0x8df5, 0x8df6, 0x8df7, 0x8df8, 0x8df9, 0x8dfa,\n  0x8dfb, 0x8dfc, 0x8dfd, 0x8dfe, 0x8e40, 0x8e41, 0x8e42, 0x8e43,\n  0x8e44, 0x8e45, 0x8e46, 0x8e47, 0x8e48, 0x8e49, 0x8e4a, 0x8e4b,\n  0x8e4c, 0x8e4d, 0x8e4e, 0x8e4f, 0x8e50, 0x8e51, 0x8e52, 0x8e53,\n  0x8e54, 0x8e55, 0x8e56, 0x8e57, 0x8e58, 0x8e59, 0x8e5a, 0x8e5b,\n  0x8e5c, 0x8e5d, 0x8e5e, 0x8e5f, 0x8e60, 0x8e61, 0x8e62, 0x8e63,\n  0x8e64, 0x8e65, 0x8e66, 0x8e67, 0x8e68, 0x8e69, 0x8e6a, 0x8e6b,\n  0x8e6c, 0x8e6d, 0x8e6e, 0x8e6f, 0x8e70, 0x8e71, 0x8e72, 0x8e73,\n  0x8e74, 0x8e75, 0x8e76, 0x8e77, 0x8e78, 0x8e79, 0x8e7a, 0x8e7b,\n  0x8e7c, 0x8e7d, 0x8e7e, 0x8e80, 0x8e81, 0x8e82, 0x8e83, 0x8e84,\n  0x8e85, 0x8e86, 0x8e87, 0x8e88, 0x8e89, 0x8e8a, 0x8e8b, 0x8e8c,\n  0x8e8d, 0x8e8e, 0x8e8f, 0x8e90, 0x8e91, 0x8e92, 0x8e93, 0x8e94,\n  0x8e95, 0x8e96, 0x8e97, 0x8e98, 0x8e99, 0x8e9a, 0x8e9b, 0x8e9c,\n  0x8e9d, 0x8e9e, 0x8e9f, 0x8ea0, 0x8ea1, 0x8ea2, 0x8ea3, 0x8ea4,\n  0x8ea5, 0x8ea6, 0x8ea7, 0x8ea8, 0x8ea9, 0x8eaa, 0x8eab, 0x8eac,\n  0x8ead, 0x8eae, 0x8eaf, 0x8eb0, 0x8eb1, 0x8eb2, 0x8eb3, 0x8eb4,\n  0x8eb5, 0x8eb6, 0x8eb7, 0x8eb8, 0x8eb9, 0x8eba, 0x8ebb, 0x8ebc,\n  0x8ebd, 0x8ebe, 0x8ebf, 0x8ec0, 0x8ec1, 0x8ec2, 0x8ec3, 0x8ec4,\n  0x8ec5, 0x8ec6, 0x8ec7, 0x8ec8, 0x8ec9, 0x8eca, 0x8ecb, 0x8ecc,\n  0x8ecd, 0x8ece, 0x8ecf, 0x8ed0, 0x8ed1, 0x8ed2, 0x8ed3, 0x8ed4,\n  0x8ed5, 0x8ed6, 0x8ed7, 0x8ed8, 0x8ed9, 0x8eda, 0x8edb, 0x8edc,\n  0x8edd, 0x8ede, 0x8edf, 0x8ee0, 0x8ee1, 0x8ee2, 0x8ee3, 0x8ee4,\n  0x8ee5, 0x8ee6, 0x8ee7, 0x8ee8, 0x8ee9, 0x8eea, 0x8eeb, 0x8eec,\n  0x8eed, 0x8eee, 0x8eef, 0x8ef0, 0x8ef1, 0x8ef2, 0x8ef3, 0x8ef4,\n  0x8ef5, 0x8ef6, 0x8ef7, 0x8ef8, 0x8ef9, 0x8efa, 0x8efb, 0x8efc,\n  0x8efd, 0x8efe, 0x8f40, 0x8f41, 0x8f42, 0x8f43, 0x8f44, 0x8f45,\n  0x8f46, 0x8f47, 0x8f48, 0x8f49, 0x8f4a, 0x8f4b, 0x8f4c, 0x8f4d,\n  0x8f4e, 0x8f4f, 0x8f50, 0x8f51, 0x8f52, 0x8f53, 0x8f54, 0x8f55,\n  0x8f56, 0x8f57, 0x8f58, 0x8f59, 0x8f5a, 0x8f5b, 0x8f5c, 0x8f5d,\n  0x8f5e, 0x8f5f, 0x8f60, 0x8f61, 0x8f62, 0x8f63, 0x8f64, 0x8f65,\n  0x8f66, 0x8f67, 0x8f68, 0x8f69, 0x8f6a, 0x8f6b, 0x8f6c, 0x8f6d,\n  0x8f6e, 0x8f6f, 0x8f70, 0x8f71, 0x8f72, 0x8f73, 0x8f74, 0x8f75,\n  0x8f76, 0x8f77, 0x8f78, 0x8f79, 0x8f7a, 0x8f7b, 0x8f7c, 0x8f7d,\n  0x8f7e, 0x8f80, 0x8f81, 0x8f82, 0x8f83, 0x8f84, 0x8f85, 0x8f86,\n  0x8f87, 0x8f88, 0x8f89, 0x8f8a, 0x8f8b, 0x8f8c, 0x8f8d, 0x8f8e,\n  0x8f8f, 0x8f90, 0x8f91, 0x8f92, 0x8f93, 0x8f94, 0x8f95, 0x8f96,\n  0x8f97, 0x8f98, 0x8f99, 0x8f9a, 0x8f9b, 0x8f9c, 0x8f9d, 0x8f9e,\n  0x8f9f, 0x8fa0, 0x8fa1, 0x8fa2, 0x8fa3, 0x8fa4, 0x8fa5, 0x8fa6,\n  0x8fa7, 0x8fa8, 0x8fa9, 0x8faa, 0x8fab, 0x8fac, 0x8fad, 0x8fae,\n  0x8faf, 0x8fb0, 0x8fb1, 0x8fb2, 0x8fb3, 0x8fb4, 0x8fb5, 0x8fb6,\n  0x8fb7, 0x8fb8, 0x8fb9, 0x8fba, 0x8fbb, 0x8fbc, 0x8fbd, 0x8fbe,\n  0x8fbf, 0x8fc0, 0x8fc1, 0x8fc2, 0x8fc3, 0x8fc4, 0x8fc5, 0x8fc6,\n  0x8fc7, 0x8fc8, 0x8fc9, 0x8fca, 0x8fcb, 0x8fcc, 0x8fcd, 0x8fce,\n  0x8fcf, 0x8fd0, 0x8fd1, 0x8fd2, 0x8fd3, 0x8fd4, 0x8fd5, 0x8fd6,\n  0x8fd7, 0x8fd8, 0x8fd9, 0x8fda, 0x8fdb, 0x8fdc, 0x8fdd, 0x8fde,\n  0x8fdf, 0x8fe0, 0x8fe1, 0x8fe2, 0x8fe3, 0x8fe4, 0x8fe5, 0x8fe6,\n  0x8fe7, 0x8fe8, 0x8fe9, 0x8fea, 0x8feb, 0x8fec, 0x8fed, 0x8fee,\n  0x8fef, 0x8ff0, 0x8ff1, 0x8ff2, 0x8ff3, 0x8ff4, 0x8ff5, 0x8ff6,\n  0x8ff7, 0x8ff8, 0x8ff9, 0x8ffa, 0x8ffb, 0x8ffc, 0x8ffd, 0x8ffe,\n  0x9040, 0x9041, 0x9042, 0x9043, 0x9044, 0x9045, 0x9046, 0x9047,\n  0x9048, 0x9049, 0x904a, 0x904b, 0x904c, 0x904d, 0x904e, 0x904f,\n  0x9050, 0x9051, 0x9052, 0x9053, 0x9054, 0x9055, 0x9056, 0x9057,\n  0x9058, 0x9059, 0x905a, 0x905b, 0x905c, 0x905d, 0x905e, 0x905f,\n  0x9060, 0x9061, 0x9062, 0x9063, 0x9064, 0x9065, 0x9066, 0x9067,\n  0x9068, 0x9069, 0x906a, 0x906b, 0x906c, 0x906d, 0x906e, 0x906f,\n  0x9070, 0x9071, 0x9072, 0x9073, 0x9074, 0x9075, 0x9076, 0x9077,\n  0x9078, 0x9079, 0x907a, 0x907b, 0x907c, 0x907d, 0x907e, 0x9080,\n  0x9081, 0x9082, 0x9083, 0x9084, 0x9085, 0x9086, 0x9087, 0x9088,\n  0x9089, 0x908a, 0x908b, 0x908c, 0x908d, 0x908e, 0x908f, 0x9090,\n  0x9091, 0x9092, 0x9093, 0x9094, 0x9095, 0x9096, 0x9097, 0x9098,\n  0x9099, 0x909a, 0x909b, 0x909c, 0x909d, 0x909e, 0x909f, 0x90a0,\n  0x90a1, 0x90a2, 0x90a3, 0x90a4, 0x90a5, 0x90a6, 0x90a7, 0x90a8,\n  0x90a9, 0x90aa, 0x90ab, 0x90ac, 0x90ad, 0x90ae, 0x90af, 0x90b0,\n  0x90b1, 0x90b2, 0x90b3, 0x90b4, 0x90b5, 0x90b6, 0x90b7, 0x90b8,\n  0x90b9, 0x90ba, 0x90bb, 0x90bc, 0x90bd, 0x90be, 0x90bf, 0x90c0,\n  0x90c1, 0x90c2, 0x90c3, 0x90c4, 0x90c5, 0x90c6, 0x90c7, 0x90c8,\n  0x90c9, 0x90ca, 0x90cb, 0x90cc, 0x90cd, 0x90ce, 0x90cf, 0x90d0,\n  0x90d1, 0x90d2, 0x90d3, 0x90d4, 0x90d5, 0x90d6, 0x90d7, 0x90d8,\n  0x90d9, 0x90da, 0x90db, 0x90dc, 0x90dd, 0x90de, 0x90df, 0x90e0,\n  0x90e1, 0x90e2, 0x90e3, 0x90e4, 0x90e5, 0x90e6, 0x90e7, 0x90e8,\n  0x90e9, 0x90ea, 0x90eb, 0x90ec, 0x90ed, 0x90ee, 0x90ef, 0x90f0,\n  0x90f1, 0x90f2, 0x90f3, 0x90f4, 0x90f5, 0x90f6, 0x90f7, 0x90f8,\n  0x90f9, 0x90fa, 0x90fb, 0x90fc, 0x90fd, 0x90fe, 0x9140, 0x9141,\n  0x9142, 0x9143, 0x9144, 0x9145, 0x9146, 0x9147, 0x9148, 0x9149,\n  0x914a, 0x914b, 0x914c, 0x914d, 0x914e, 0x914f, 0x9150, 0x9151,\n  0x9152, 0x9153, 0x9154, 0x9155, 0x9156, 0x9157, 0x9158, 0x9159,\n  0x915a, 0x915b, 0x915c, 0x915d, 0x915e, 0x915f, 0x9160, 0x9161,\n  0x9162, 0x9163, 0x9164, 0x9165, 0x9166, 0x9167, 0x9168, 0x9169,\n  0x916a, 0x916b, 0x916c, 0x916d, 0x916e, 0x916f, 0x9170, 0x9171,\n  0x9172, 0x9173, 0x9174, 0x9175, 0x9176, 0x9177, 0x9178, 0x9179,\n  0x917a, 0x917b, 0x917c, 0x917d, 0x917e, 0x9180, 0x9181, 0x9182,\n  0x9183, 0x9184, 0x9185, 0x9186, 0x9187, 0x9188, 0x9189, 0x918a,\n  0x918b, 0x918c, 0x918d, 0x918e, 0x918f, 0x9190, 0x9191, 0x9192,\n  0x9193, 0x9194, 0x9195, 0x9196, 0x9197, 0x9198, 0x9199, 0x919a,\n  0x919b, 0x919c, 0x919d, 0x919e, 0x919f, 0x91a0, 0x91a1, 0x91a2,\n  0x91a3, 0x91a4, 0x91a5, 0x91a6, 0x91a7, 0x91a8, 0x91a9, 0x91aa,\n  0x91ab, 0x91ac, 0x91ad, 0x91ae, 0x91af, 0x91b0, 0x91b1, 0x91b2,\n  0x91b3, 0x91b4, 0x91b5, 0x91b6, 0x91b7, 0x91b8, 0x91b9, 0x91ba,\n  0x91bb, 0x91bc, 0x91bd, 0x91be, 0x91bf, 0x91c0, 0x91c1, 0x91c2,\n  0x91c3, 0x91c4, 0x91c5, 0x91c6, 0x91c7, 0x91c8, 0x91c9, 0x91ca,\n  0x91cb, 0x91cc, 0x91cd, 0x91ce, 0x91cf, 0x91d0, 0x91d1, 0x91d2,\n  0x91d3, 0x91d4, 0x91d5, 0x91d6, 0x91d7, 0x91d8, 0x91d9, 0x91da,\n  0x91db, 0x91dc, 0x91dd, 0x91de, 0x91df, 0x91e0, 0x91e1, 0x91e2,\n  0x91e3, 0x91e4, 0x91e5, 0x91e6, 0x91e7, 0x91e8, 0x91e9, 0x91ea,\n  0x91eb, 0x91ec, 0x91ed, 0x91ee, 0x91ef, 0x91f0, 0x91f1, 0x91f2,\n  0x91f3, 0x91f4, 0x91f5, 0x91f6, 0x91f7, 0x91f8, 0x91f9, 0x91fa,\n  0x91fb, 0x91fc, 0x91fd, 0x91fe, 0x9240, 0x9241, 0x9242, 0x9243,\n  0x9244, 0x9245, 0x9246, 0x9247, 0x9248, 0x9249, 0x924a, 0x924b,\n  0x924c, 0x924d, 0x924e, 0x924f, 0x9250, 0x9251, 0x9252, 0x9253,\n  0x9254, 0x9255, 0x9256, 0x9257, 0x9258, 0x9259, 0x925a, 0x925b,\n  0x925c, 0x925d, 0x925e, 0x925f, 0x9260, 0x9261, 0x9262, 0x9263,\n  0x9264, 0x9265, 0x9266, 0x9267, 0x9268, 0x9269, 0x926a, 0x926b,\n  0x926c, 0x926d, 0x926e, 0x926f, 0x9270, 0x9271, 0x9272, 0x9273,\n  0x9274, 0x9275, 0x9276, 0x9277, 0x9278, 0x9279, 0x927a, 0x927b,\n  0x927c, 0x927d, 0x927e, 0x9280, 0x9281, 0x9282, 0x9283, 0x9284,\n  0x9285, 0x9286, 0x9287, 0x9288, 0x9289, 0x928a, 0x928b, 0x928c,\n  0x928d, 0x928e, 0x928f, 0x9290, 0x9291, 0x9292, 0x9293, 0x9294,\n  0x9295, 0x9296, 0x9297, 0x9298, 0x9299, 0x929a, 0x929b, 0x929c,\n  0x929d, 0x929e, 0x929f, 0x92a0, 0x92a1, 0x92a2, 0x92a3, 0x92a4,\n  0x92a5, 0x92a6, 0x92a7, 0x92a8, 0x92a9, 0x92aa, 0x92ab, 0x92ac,\n  0x92ad, 0x92ae, 0x92af, 0x92b0, 0x92b1, 0x92b2, 0x92b3, 0x92b4,\n  0x92b5, 0x92b6, 0x92b7, 0x92b8, 0x92b9, 0x92ba, 0x92bb, 0x92bc,\n  0x92bd, 0x92be, 0x92bf, 0x92c0, 0x92c1, 0x92c2, 0x92c3, 0x92c4,\n  0x92c5, 0x92c6, 0x92c7, 0x92c8, 0x92c9, 0x92ca, 0x92cb, 0x92cc,\n  0x92cd, 0x92ce, 0x92cf, 0x92d0, 0x92d1, 0x92d2, 0x92d3, 0x92d4,\n  0x92d5, 0x92d6, 0x92d7, 0x92d8, 0x92d9, 0x92da, 0x92db, 0x92dc,\n  0x92dd, 0x92de, 0x92df, 0x92e0, 0x92e1, 0x92e2, 0x92e3, 0x92e4,\n  0x92e5, 0x92e6, 0x92e7, 0x92e8, 0x92e9, 0x92ea, 0x92eb, 0x92ec,\n  0x92ed, 0x92ee, 0x92ef, 0x92f0, 0x92f1, 0x92f2, 0x92f3, 0x92f4,\n  0x92f5, 0x92f6, 0x92f7, 0x92f8, 0x92f9, 0x92fa, 0x92fb, 0x92fc,\n  0x92fd, 0x92fe, 0x9340, 0x9341, 0x9342, 0x9343, 0x9344, 0x9345,\n  0x9346, 0x9347, 0x9348, 0x9349, 0x934a, 0x934b, 0x934c, 0x934d,\n  0x934e, 0x934f, 0x9350, 0x9351, 0x9352, 0x9353, 0x9354, 0x9355,\n  0x9356, 0x9357, 0x9358, 0x9359, 0x935a, 0x935b, 0x935c, 0x935d,\n  0x935e, 0x935f, 0x9360, 0x9361, 0x9362, 0x9363, 0x9364, 0x9365,\n  0x9366, 0x9367, 0x9368, 0x9369, 0x936a, 0x936b, 0x936c, 0x936d,\n  0x936e, 0x936f, 0x9370, 0x9371, 0x9372, 0x9373, 0x9374, 0x9375,\n  0x9376, 0x9377, 0x9378, 0x9379, 0x937a, 0x937b, 0x937c, 0x937d,\n  0x937e, 0x9380, 0x9381, 0x9382, 0x9383, 0x9384, 0x9385, 0x9386,\n  0x9387, 0x9388, 0x9389, 0x938a, 0x938b, 0x938c, 0x938d, 0x938e,\n  0x938f, 0x9390, 0x9391, 0x9392, 0x9393, 0x9394, 0x9395, 0x9396,\n  0x9397, 0x9398, 0x9399, 0x939a, 0x939b, 0x939c, 0x939d, 0x939e,\n  0x939f, 0x93a0, 0x93a1, 0x93a2, 0x93a3, 0x93a4, 0x93a5, 0x93a6,\n  0x93a7, 0x93a8, 0x93a9, 0x93aa, 0x93ab, 0x93ac, 0x93ad, 0x93ae,\n  0x93af, 0x93b0, 0x93b1, 0x93b2, 0x93b3, 0x93b4, 0x93b5, 0x93b6,\n  0x93b7, 0x93b8, 0x93b9, 0x93ba, 0x93bb, 0x93bc, 0x93bd, 0x93be,\n  0x93bf, 0x93c0, 0x93c1, 0x93c2, 0x93c3, 0x93c4, 0x93c5, 0x93c6,\n  0x93c7, 0x93c8, 0x93c9, 0x93ca, 0x93cb, 0x93cc, 0x93cd, 0x93ce,\n  0x93cf, 0x93d0, 0x93d1, 0x93d2, 0x93d3, 0x93d4, 0x93d5, 0x93d6,\n  0x93d7, 0x93d8, 0x93d9, 0x93da, 0x93db, 0x93dc, 0x93dd, 0x93de,\n  0x93df, 0x93e0, 0x93e1, 0x93e2, 0x93e3, 0x93e4, 0x93e5, 0x93e6,\n  0x93e7, 0x93e8, 0x93e9, 0x93ea, 0x93eb, 0x93ec, 0x93ed, 0x93ee,\n  0x93ef, 0x93f0, 0x93f1, 0x93f2, 0x93f3, 0x93f4, 0x93f5, 0x93f6,\n  0x93f7, 0x93f8, 0x93f9, 0x93fa, 0x93fb, 0x93fc, 0x93fd, 0x93fe,\n  0x9440, 0x9441, 0x9442, 0x9443, 0x9444, 0x9445, 0x9446, 0x9447,\n  0x9448, 0x9449, 0x944a, 0x944b, 0x944c, 0x944d, 0x944e, 0x944f,\n  0x9450, 0x9451, 0x9452, 0x9453, 0x9454, 0x9455, 0x9456, 0x9457,\n  0x9458, 0x9459, 0x945a, 0x945b, 0x945c, 0x945d, 0x945e, 0x945f,\n  0x9460, 0x9461, 0x9462, 0x9463, 0x9464, 0x9465, 0x9466, 0x9467,\n  0x9468, 0x9469, 0x946a, 0x946b, 0x946c, 0x946d, 0x946e, 0x946f,\n  0x9470, 0x9471, 0x9472, 0x9473, 0x9474, 0x9475, 0x9476, 0x9477,\n  0x9478, 0x9479, 0x947a, 0x947b, 0x947c, 0x947d, 0x947e, 0x9480,\n  0x9481, 0x9482, 0x9483, 0x9484, 0x9485, 0x9486, 0x9487, 0x9488,\n  0x9489, 0x948a, 0x948b, 0x948c, 0x948d, 0x948e, 0x948f, 0x9490,\n  0x9491, 0x9492, 0x9493, 0x9494, 0x9495, 0x9496, 0x9497, 0x9498,\n  0x9499, 0x949a, 0x949b, 0x949c, 0x949d, 0x949e, 0x949f, 0x94a0,\n  0x94a1, 0x94a2, 0x94a3, 0x94a4, 0x94a5, 0x94a6, 0x94a7, 0x94a8,\n  0x94a9, 0x94aa, 0x94ab, 0x94ac, 0x94ad, 0x94ae, 0x94af, 0x94b0,\n  0x94b1, 0x94b2, 0x94b3, 0x94b4, 0x94b5, 0x94b6, 0x94b7, 0x94b8,\n  0x94b9, 0x94ba, 0x94bb, 0x94bc, 0x94bd, 0x94be, 0x94bf, 0x94c0,\n  0x94c1, 0x94c2, 0x94c3, 0x94c4, 0x94c5, 0x94c6, 0x94c7, 0x94c8,\n  0x94c9, 0x94ca, 0x94cb, 0x94cc, 0x94cd, 0x94ce, 0x94cf, 0x94d0,\n  0x94d1, 0x94d2, 0x94d3, 0x94d4, 0x94d5, 0x94d6, 0x94d7, 0x94d8,\n  0x94d9, 0x94da, 0x94db, 0x94dc, 0x94dd, 0x94de, 0x94df, 0x94e0,\n  0x94e1, 0x94e2, 0x94e3, 0x94e4, 0x94e5, 0x94e6, 0x94e7, 0x94e8,\n  0x94e9, 0x94ea, 0x94eb, 0x94ec, 0x94ed, 0x94ee, 0x94ef, 0x94f0,\n  0x94f1, 0x94f2, 0x94f3, 0x94f4, 0x94f5, 0x94f6, 0x94f7, 0x94f8,\n  0x94f9, 0x94fa, 0x94fb, 0x94fc, 0x94fd, 0x94fe, 0x9540, 0x9541,\n  0x9542, 0x9543, 0x9544, 0x9545, 0x9546, 0x9547, 0x9548, 0x9549,\n  0x954a, 0x954b, 0x954c, 0x954d, 0x954e, 0x954f, 0x9550, 0x9551,\n  0x9552, 0x9553, 0x9554, 0x9555, 0x9556, 0x9557, 0x9558, 0x9559,\n  0x955a, 0x955b, 0x955c, 0x955d, 0x955e, 0x955f, 0x9560, 0x9561,\n  0x9562, 0x9563, 0x9564, 0x9565, 0x9566, 0x9567, 0x9568, 0x9569,\n  0x956a, 0x956b, 0x956c, 0x956d, 0x956e, 0x956f, 0x9570, 0x9571,\n  0x9572, 0x9573, 0x9574, 0x9575, 0x9576, 0x9577, 0x9578, 0x9579,\n  0x957a, 0x957b, 0x957c, 0x957d, 0x957e, 0x9580, 0x9581, 0x9582,\n  0x9583, 0x9584, 0x9585, 0x9586, 0x9587, 0x9588, 0x9589, 0x958a,\n  0x958b, 0x958c, 0x958d, 0x958e, 0x958f, 0x9590, 0x9591, 0x9592,\n  0x9593, 0x9594, 0x9595, 0x9596, 0x9597, 0x9598, 0x9599, 0x959a,\n  0x959b, 0x959c, 0x959d, 0x959e, 0x959f, 0x95a0, 0x95a1, 0x95a2,\n  0x95a3, 0x95a4, 0x95a5, 0x95a6, 0x95a7, 0x95a8, 0x95a9, 0x95aa,\n  0x95ab, 0x95ac, 0x95ad, 0x95ae, 0x95af, 0x95b0, 0x95b1, 0x95b2,\n  0x95b3, 0x95b4, 0x95b5, 0x95b6, 0x95b7, 0x95b8, 0x95b9, 0x95ba,\n  0x95bb, 0x95bc, 0x95bd, 0x95be, 0x95bf, 0x95c0, 0x95c1, 0x95c2,\n  0x95c3, 0x95c4, 0x95c5, 0x95c6, 0x95c7, 0x95c8, 0x95c9, 0x95ca,\n  0x95cb, 0x95cc, 0x95cd, 0x95ce, 0x95cf, 0x95d0, 0x95d1, 0x95d2,\n  0x95d3, 0x95d4, 0x95d5, 0x95d6, 0x95d7, 0x95d8, 0x95d9, 0x95da,\n  0x95db, 0x95dc, 0x95dd, 0x95de, 0x95df, 0x95e0, 0x95e1, 0x95e2,\n  0x95e3, 0x95e4, 0x95e5, 0x95e6, 0x95e7, 0x95e8, 0x95e9, 0x95ea,\n  0x95eb, 0x95ec, 0x95ed, 0x95ee, 0x95ef, 0x95f0, 0x95f1, 0x95f2,\n  0x95f3, 0x95f4, 0x95f5, 0x95f6, 0x95f7, 0x95f8, 0x95f9, 0x95fa,\n  0x95fb, 0x95fc, 0x95fd, 0x95fe, 0x9640, 0x9641, 0x9642, 0x9643,\n  0x9644, 0x9645, 0x9646, 0x9647, 0x9648, 0x9649, 0x964a, 0x964b,\n  0x964c, 0x964d, 0x964e, 0x964f, 0x9650, 0x9651, 0x9652, 0x9653,\n  0x9654, 0x9655, 0x9656, 0x9657, 0x9658, 0x9659, 0x965a, 0x965b,\n  0x965c, 0x965d, 0x965e, 0x965f, 0x9660, 0x9661, 0x9662, 0x9663,\n  0x9664, 0x9665, 0x9666, 0x9667, 0x9668, 0x9669, 0x966a, 0x966b,\n  0x966c, 0x966d, 0x966e, 0x966f, 0x9670, 0x9671, 0x9672, 0x9673,\n  0x9674, 0x9675, 0x9676, 0x9677, 0x9678, 0x9679, 0x967a, 0x967b,\n  0x967c, 0x967d, 0x967e, 0x9680, 0x9681, 0x9682, 0x9683, 0x9684,\n  0x9685, 0x9686, 0x9687, 0x9688, 0x9689, 0x968a, 0x968b, 0x968c,\n  0x968d, 0x968e, 0x968f, 0x9690, 0x9691, 0x9692, 0x9693, 0x9694,\n  0x9695, 0x9696, 0x9697, 0x9698, 0x9699, 0x969a, 0x969b, 0x969c,\n  0x969d, 0x969e, 0x969f, 0x96a0, 0x96a1, 0x96a2, 0x96a3, 0x96a4,\n  0x96a5, 0x96a6, 0x96a7, 0x96a8, 0x96a9, 0x96aa, 0x96ab, 0x96ac,\n  0x96ad, 0x96ae, 0x96af, 0x96b0, 0x96b1, 0x96b2, 0x96b3, 0x96b4,\n  0x96b5, 0x96b6, 0x96b7, 0x96b8, 0x96b9, 0x96ba, 0x96bb, 0x96bc,\n  0x96bd, 0x96be, 0x96bf, 0x96c0, 0x96c1, 0x96c2, 0x96c3, 0x96c4,\n  0x96c5, 0x96c6, 0x96c7, 0x96c8, 0x96c9, 0x96ca, 0x96cb, 0x96cc,\n  0x96cd, 0x96ce, 0x96cf, 0x96d0, 0x96d1, 0x96d2, 0x96d3, 0x96d4,\n  0x96d5, 0x96d6, 0x96d7, 0x96d8, 0x96d9, 0x96da, 0x96db, 0x96dc,\n  0x96dd, 0x96de, 0x96df, 0x96e0, 0x96e1, 0x96e2, 0x96e3, 0x96e4,\n  0x96e5, 0x96e6, 0x96e7, 0x96e8, 0x96e9, 0x96ea, 0x96eb, 0x96ec,\n  0x96ed, 0x96ee, 0x96ef, 0x96f0, 0x96f1, 0x96f2, 0x96f3, 0x96f4,\n  0x96f5, 0x96f6, 0x96f7, 0x96f8, 0x96f9, 0x96fa, 0x96fb, 0x96fc,\n  0x96fd, 0x96fe, 0x9740, 0x9741, 0x9742, 0x9743, 0x9744, 0x9745,\n  0x9746, 0x9747, 0x9748, 0x9749, 0x974a, 0x974b, 0x974c, 0x974d,\n  0x974e, 0x974f, 0x9750, 0x9751, 0x9752, 0x9753, 0x9754, 0x9755,\n  0x9756, 0x9757, 0x9758, 0x9759, 0x975a, 0x975b, 0x975c, 0x975d,\n  0x975e, 0x975f, 0x9760, 0x9761, 0x9762, 0x9763, 0x9764, 0x9765,\n  0x9766, 0x9767, 0x9768, 0x9769, 0x976a, 0x976b, 0x976c, 0x976d,\n  0x976e, 0x976f, 0x9770, 0x9771, 0x9772, 0x9773, 0x9774, 0x9775,\n  0x9776, 0x9777, 0x9778, 0x9779, 0x977a, 0x977b, 0x977c, 0x977d,\n  0x977e, 0x9780, 0x9781, 0x9782, 0x9783, 0x9784, 0x9785, 0x9786,\n  0x9787, 0x9788, 0x9789, 0x978a, 0x978b, 0x978c, 0x978d, 0x978e,\n  0x978f, 0x9790, 0x9791, 0x9792, 0x9793, 0x9794, 0x9795, 0x9796,\n  0x9797, 0x9798, 0x9799, 0x979a, 0x979b, 0x979c, 0x979d, 0x979e,\n  0x979f, 0x97a0, 0x97a1, 0x97a2, 0x97a3, 0x97a4, 0x97a5, 0x97a6,\n  0x97a7, 0x97a8, 0x97a9, 0x97aa, 0x97ab, 0x97ac, 0x97ad, 0x97ae,\n  0x97af, 0x97b0, 0x97b1, 0x97b2, 0x97b3, 0x97b4, 0x97b5, 0x97b6,\n  0x97b7, 0x97b8, 0x97b9, 0x97ba, 0x97bb, 0x97bc, 0x97bd, 0x97be,\n  0x97bf, 0x97c0, 0x97c1, 0x97c2, 0x97c3, 0x97c4, 0x97c5, 0x97c6,\n  0x97c7, 0x97c8, 0x97c9, 0x97ca, 0x97cb, 0x97cc, 0x97cd, 0x97ce,\n  0x97cf, 0x97d0, 0x97d1, 0x97d2, 0x97d3, 0x97d4, 0x97d5, 0x97d6,\n  0x97d7, 0x97d8, 0x97d9, 0x97da, 0x97db, 0x97dc, 0x97dd, 0x97de,\n  0x97df, 0x97e0, 0x97e1, 0x97e2, 0x97e3, 0x97e4, 0x97e5, 0x97e6,\n  0x97e7, 0x97e8, 0x97e9, 0x97ea, 0x97eb, 0x97ec, 0x97ed, 0x97ee,\n  0x97ef, 0x97f0, 0x97f1, 0x97f2, 0x97f3, 0x97f4, 0x97f5, 0x97f6,\n  0x97f7, 0x97f8, 0x97f9, 0x97fa, 0x97fb, 0x97fc, 0x97fd, 0x97fe,\n  0x9840, 0x9841, 0x9842, 0x9843, 0x9844, 0x9845, 0x9846, 0x9847,\n  0x9848, 0x9849, 0x984a, 0x984b, 0x984c, 0x984d, 0x984e, 0x984f,\n  0x9850, 0x9851, 0x9852, 0x9853, 0x9854, 0x9855, 0x9856, 0x9857,\n  0x9858, 0x9859, 0x985a, 0x985b, 0x985c, 0x985d, 0x985e, 0x985f,\n  0x9860, 0x9861, 0x9862, 0x9863, 0x9864, 0x9865, 0x9866, 0x9867,\n  0x9868, 0x9869, 0x986a, 0x986b, 0x986c, 0x986d, 0x986e, 0x986f,\n  0x9870, 0x9871, 0x9872, 0x9873, 0x9874, 0x9875, 0x9876, 0x9877,\n  0x9878, 0x9879, 0x987a, 0x987b, 0x987c, 0x987d, 0x987e, 0x9880,\n  0x9881, 0x9882, 0x9883, 0x9884, 0x9885, 0x9886, 0x9887, 0x9888,\n  0x9889, 0x988a, 0x988b, 0x988c, 0x988d, 0x988e, 0x988f, 0x9890,\n  0x9891, 0x9892, 0x9893, 0x9894, 0x9895, 0x9896, 0x9897, 0x9898,\n  0x9899, 0x989a, 0x989b, 0x989c, 0x989d, 0x989e, 0x989f, 0x98a0,\n  0x98a1, 0x98a2, 0x98a3, 0x98a4, 0x98a5, 0x98a6, 0x98a7, 0x98a8,\n  0x98a9, 0x98aa, 0x98ab, 0x98ac, 0x98ad, 0x98ae, 0x98af, 0x98b0,\n  0x98b1, 0x98b2, 0x98b3, 0x98b4, 0x98b5, 0x98b6, 0x98b7, 0x98b8,\n  0x98b9, 0x98ba, 0x98bb, 0x98bc, 0x98bd, 0x98be, 0x98bf, 0x98c0,\n  0x98c1, 0x98c2, 0x98c3, 0x98c4, 0x98c5, 0x98c6, 0x98c7, 0x98c8,\n  0x98c9, 0x98ca, 0x98cb, 0x98cc, 0x98cd, 0x98ce, 0x98cf, 0x98d0,\n  0x98d1, 0x98d2, 0x98d3, 0x98d4, 0x98d5, 0x98d6, 0x98d7, 0x98d8,\n  0x98d9, 0x98da, 0x98db, 0x98dc, 0x98dd, 0x98de, 0x98df, 0x98e0,\n  0x98e1, 0x98e2, 0x98e3, 0x98e4, 0x98e5, 0x98e6, 0x98e7, 0x98e8,\n  0x98e9, 0x98ea, 0x98eb, 0x98ec, 0x98ed, 0x98ee, 0x98ef, 0x98f0,\n  0x98f1, 0x98f2, 0x98f3, 0x98f4, 0x98f5, 0x98f6, 0x98f7, 0x98f8,\n  0x98f9, 0x98fa, 0x98fb, 0x98fc, 0x98fd, 0x98fe, 0x9940, 0x9941,\n  0x9942, 0x9943, 0x9944, 0x9945, 0x9946, 0x9947, 0x9948, 0x9949,\n  0x994a, 0x994b, 0x994c, 0x994d, 0x994e, 0x994f, 0x9950, 0x9951,\n  0x9952, 0x9953, 0x9954, 0x9955, 0x9956, 0x9957, 0x9958, 0x9959,\n  0x995a, 0x995b, 0x995c, 0x995d, 0x995e, 0x995f, 0x9960, 0x9961,\n  0x9962, 0x9963, 0x9964, 0x9965, 0x9966, 0x9967, 0x9968, 0x9969,\n  0x996a, 0x996b, 0x996c, 0x996d, 0x996e, 0x996f, 0x9970, 0x9971,\n  0x9972, 0x9973, 0x9974, 0x9975, 0x9976, 0x9977, 0x9978, 0x9979,\n  0x997a, 0x997b, 0x997c, 0x997d, 0x997e, 0x9980, 0x9981, 0x9982,\n  0x9983, 0x9984, 0x9985, 0x9986, 0x9987, 0x9988, 0x9989, 0x998a,\n  0x998b, 0x998c, 0x998d, 0x998e, 0x998f, 0x9990, 0x9991, 0x9992,\n  0x9993, 0x9994, 0x9995, 0x9996, 0x9997, 0x9998, 0x9999, 0x999a,\n  0x999b, 0x999c, 0x999d, 0x999e, 0x999f, 0x99a0, 0x99a1, 0x99a2,\n  0x99a3, 0x99a4, 0x99a5, 0x99a6, 0x99a7, 0x99a8, 0x99a9, 0x99aa,\n  0x99ab, 0x99ac, 0x99ad, 0x99ae, 0x99af, 0x99b0, 0x99b1, 0x99b2,\n  0x99b3, 0x99b4, 0x99b5, 0x99b6, 0x99b7, 0x99b8, 0x99b9, 0x99ba,\n  0x99bb, 0x99bc, 0x99bd, 0x99be, 0x99bf, 0x99c0, 0x99c1, 0x99c2,\n  0x99c3, 0x99c4, 0x99c5, 0x99c6, 0x99c7, 0x99c8, 0x99c9, 0x99ca,\n  0x99cb, 0x99cc, 0x99cd, 0x99ce, 0x99cf, 0x99d0, 0x99d1, 0x99d2,\n  0x99d3, 0x99d4, 0x99d5, 0x99d6, 0x99d7, 0x99d8, 0x99d9, 0x99da,\n  0x99db, 0x99dc, 0x99dd, 0x99de, 0x99df, 0x99e0, 0x99e1, 0x99e2,\n  0x99e3, 0x99e4, 0x99e5, 0x99e6, 0x99e7, 0x99e8, 0x99e9, 0x99ea,\n  0x99eb, 0x99ec, 0x99ed, 0x99ee, 0x99ef, 0x99f0, 0x99f1, 0x99f2,\n  0x99f3, 0x99f4, 0x99f5, 0x99f6, 0x99f7, 0x99f8, 0x99f9, 0x99fa,\n  0x99fb, 0x99fc, 0x99fd, 0x99fe, 0x9a40, 0x9a41, 0x9a42, 0x9a43,\n  0x9a44, 0x9a45, 0x9a46, 0x9a47, 0x9a48, 0x9a49, 0x9a4a, 0x9a4b,\n  0x9a4c, 0x9a4d, 0x9a4e, 0x9a4f, 0x9a50, 0x9a51, 0x9a52, 0x9a53,\n  0x9a54, 0x9a55, 0x9a56, 0x9a57, 0x9a58, 0x9a59, 0x9a5a, 0x9a5b,\n  0x9a5c, 0x9a5d, 0x9a5e, 0x9a5f, 0x9a60, 0x9a61, 0x9a62, 0x9a63,\n  0x9a64, 0x9a65, 0x9a66, 0x9a67, 0x9a68, 0x9a69, 0x9a6a, 0x9a6b,\n  0x9a6c, 0x9a6d, 0x9a6e, 0x9a6f, 0x9a70, 0x9a71, 0x9a72, 0x9a73,\n  0x9a74, 0x9a75, 0x9a76, 0x9a77, 0x9a78, 0x9a79, 0x9a7a, 0x9a7b,\n  0x9a7c, 0x9a7d, 0x9a7e, 0x9a80, 0x9a81, 0x9a82, 0x9a83, 0x9a84,\n  0x9a85, 0x9a86, 0x9a87, 0x9a88, 0x9a89, 0x9a8a, 0x9a8b, 0x9a8c,\n  0x9a8d, 0x9a8e, 0x9a8f, 0x9a90, 0x9a91, 0x9a92, 0x9a93, 0x9a94,\n  0x9a95, 0x9a96, 0x9a97, 0x9a98, 0x9a99, 0x9a9a, 0x9a9b, 0x9a9c,\n  0x9a9d, 0x9a9e, 0x9a9f, 0x9aa0, 0x9aa1, 0x9aa2, 0x9aa3, 0x9aa4,\n  0x9aa5, 0x9aa6, 0x9aa7, 0x9aa8, 0x9aa9, 0x9aaa, 0x9aab, 0x9aac,\n  0x9aad, 0x9aae, 0x9aaf, 0x9ab0, 0x9ab1, 0x9ab2, 0x9ab3, 0x9ab4,\n  0x9ab5, 0x9ab6, 0x9ab7, 0x9ab8, 0x9ab9, 0x9aba, 0x9abb, 0x9abc,\n  0x9abd, 0x9abe, 0x9abf, 0x9ac0, 0x9ac1, 0x9ac2, 0x9ac3, 0x9ac4,\n  0x9ac5, 0x9ac6, 0x9ac7, 0x9ac8, 0x9ac9, 0x9aca, 0x9acb, 0x9acc,\n  0x9acd, 0x9ace, 0x9acf, 0x9ad0, 0x9ad1, 0x9ad2, 0x9ad3, 0x9ad4,\n  0x9ad5, 0x9ad6, 0x9ad7, 0x9ad8, 0x9ad9, 0x9ada, 0x9adb, 0x9adc,\n  0x9add, 0x9ade, 0x9adf, 0x9ae0, 0x9ae1, 0x9ae2, 0x9ae3, 0x9ae4,\n  0x9ae5, 0x9ae6, 0x9ae7, 0x9ae8, 0x9ae9, 0x9aea, 0x9aeb, 0x9aec,\n  0x9aed, 0x9aee, 0x9aef, 0x9af0, 0x9af1, 0x9af2, 0x9af3, 0x9af4,\n  0x9af5, 0x9af6, 0x9af7, 0x9af8, 0x9af9, 0x9afa, 0x9afb, 0x9afc,\n  0x9afd, 0x9afe, 0x9b40, 0x9b41, 0x9b42, 0x9b43, 0x9b44, 0x9b45,\n  0x9b46, 0x9b47, 0x9b48, 0x9b49, 0x9b4a, 0x9b4b, 0x9b4c, 0x9b4d,\n  0x9b4e, 0x9b4f, 0x9b50, 0x9b51, 0x9b52, 0x9b53, 0x9b54, 0x9b55,\n  0x9b56, 0x9b57, 0x9b58, 0x9b59, 0x9b5a, 0x9b5b, 0x9b5c, 0x9b5d,\n  0x9b5e, 0x9b5f, 0x9b60, 0x9b61, 0x9b62, 0x9b63, 0x9b64, 0x9b65,\n  0x9b66, 0x9b67, 0x9b68, 0x9b69, 0x9b6a, 0x9b6b, 0x9b6c, 0x9b6d,\n  0x9b6e, 0x9b6f, 0x9b70, 0x9b71, 0x9b72, 0x9b73, 0x9b74, 0x9b75,\n  0x9b76, 0x9b77, 0x9b78, 0x9b79, 0x9b7a, 0x9b7b, 0x9b7c, 0x9b7d,\n  0x9b7e, 0x9b80, 0x9b81, 0x9b82, 0x9b83, 0x9b84, 0x9b85, 0x9b86,\n  0x9b87, 0x9b88, 0x9b89, 0x9b8a, 0x9b8b, 0x9b8c, 0x9b8d, 0x9b8e,\n  0x9b8f, 0x9b90, 0x9b91, 0x9b92, 0x9b93, 0x9b94, 0x9b95, 0x9b96,\n  0x9b97, 0x9b98, 0x9b99, 0x9b9a, 0x9b9b, 0x9b9c, 0x9b9d, 0x9b9e,\n  0x9b9f, 0x9ba0, 0x9ba1, 0x9ba2, 0x9ba3, 0x9ba4, 0x9ba5, 0x9ba6,\n  0x9ba7, 0x9ba8, 0x9ba9, 0x9baa, 0x9bab, 0x9bac, 0x9bad, 0x9bae,\n  0x9baf, 0x9bb0, 0x9bb1, 0x9bb2, 0x9bb3, 0x9bb4, 0x9bb5, 0x9bb6,\n  0x9bb7, 0x9bb8, 0x9bb9, 0x9bba, 0x9bbb, 0x9bbc, 0x9bbd, 0x9bbe,\n  0x9bbf, 0x9bc0, 0x9bc1, 0x9bc2, 0x9bc3, 0x9bc4, 0x9bc5, 0x9bc6,\n  0x9bc7, 0x9bc8, 0x9bc9, 0x9bca, 0x9bcb, 0x9bcc, 0x9bcd, 0x9bce,\n  0x9bcf, 0x9bd0, 0x9bd1, 0x9bd2, 0x9bd3, 0x9bd4, 0x9bd5, 0x9bd6,\n  0x9bd7, 0x9bd8, 0x9bd9, 0x9bda, 0x9bdb, 0x9bdc, 0x9bdd, 0x9bde,\n  0x9bdf, 0x9be0, 0x9be1, 0x9be2, 0x9be3, 0x9be4, 0x9be5, 0x9be6,\n  0x9be7, 0x9be8, 0x9be9, 0x9bea, 0x9beb, 0x9bec, 0x9bed, 0x9bee,\n  0x9bef, 0x9bf0, 0x9bf1, 0x9bf2, 0x9bf3, 0x9bf4, 0x9bf5, 0x9bf6,\n  0x9bf7, 0x9bf8, 0x9bf9, 0x9bfa, 0x9bfb, 0x9bfc, 0x9bfd, 0x9bfe,\n  0x9c40, 0x9c41, 0x9c42, 0x9c43, 0x9c44, 0x9c45, 0x9c46, 0x9c47,\n  0x9c48, 0x9c49, 0x9c4a, 0x9c4b, 0x9c4c, 0x9c4d, 0x9c4e, 0x9c4f,\n  0x9c50, 0x9c51, 0x9c52, 0x9c53, 0x9c54, 0x9c55, 0x9c56, 0x9c57,\n  0x9c58, 0x9c59, 0x9c5a, 0x9c5b, 0x9c5c, 0x9c5d, 0x9c5e, 0x9c5f,\n  0x9c60, 0x9c61, 0x9c62, 0x9c63, 0x9c64, 0x9c65, 0x9c66, 0x9c67,\n  0x9c68, 0x9c69, 0x9c6a, 0x9c6b, 0x9c6c, 0x9c6d, 0x9c6e, 0x9c6f,\n  0x9c70, 0x9c71, 0x9c72, 0x9c73, 0x9c74, 0x9c75, 0x9c76, 0x9c77,\n  0x9c78, 0x9c79, 0x9c7a, 0x9c7b, 0x9c7c, 0x9c7d, 0x9c7e, 0x9c80,\n  0x9c81, 0x9c82, 0x9c83, 0x9c84, 0x9c85, 0x9c86, 0x9c87, 0x9c88,\n  0x9c89, 0x9c8a, 0x9c8b, 0x9c8c, 0x9c8d, 0x9c8e, 0x9c8f, 0x9c90,\n  0x9c91, 0x9c92, 0x9c93, 0x9c94, 0x9c95, 0x9c96, 0x9c97, 0x9c98,\n  0x9c99, 0x9c9a, 0x9c9b, 0x9c9c, 0x9c9d, 0x9c9e, 0x9c9f, 0x9ca0,\n  0x9ca1, 0x9ca2, 0x9ca3, 0x9ca4, 0x9ca5, 0x9ca6, 0x9ca7, 0x9ca8,\n  0x9ca9, 0x9caa, 0x9cab, 0x9cac, 0x9cad, 0x9cae, 0x9caf, 0x9cb0,\n  0x9cb1, 0x9cb2, 0x9cb3, 0x9cb4, 0x9cb5, 0x9cb6, 0x9cb7, 0x9cb8,\n  0x9cb9, 0x9cba, 0x9cbb, 0x9cbc, 0x9cbd, 0x9cbe, 0x9cbf, 0x9cc0,\n  0x9cc1, 0x9cc2, 0x9cc3, 0x9cc4, 0x9cc5, 0x9cc6, 0x9cc7, 0x9cc8,\n  0x9cc9, 0x9cca, 0x9ccb, 0x9ccc, 0x9ccd, 0x9cce, 0x9ccf, 0x9cd0,\n  0x9cd1, 0x9cd2, 0x9cd3, 0x9cd4, 0x9cd5, 0x9cd6, 0x9cd7, 0x9cd8,\n  0x9cd9, 0x9cda, 0x9cdb, 0x9cdc, 0x9cdd, 0x9cde, 0x9cdf, 0x9ce0,\n  0x9ce1, 0x9ce2, 0x9ce3, 0x9ce4, 0x9ce5, 0x9ce6, 0x9ce7, 0x9ce8,\n  0x9ce9, 0x9cea, 0x9ceb, 0x9cec, 0x9ced, 0x9cee, 0x9cef, 0x9cf0,\n  0x9cf1, 0x9cf2, 0x9cf3, 0x9cf4, 0x9cf5, 0x9cf6, 0x9cf7, 0x9cf8,\n  0x9cf9, 0x9cfa, 0x9cfb, 0x9cfc, 0x9cfd, 0x9cfe, 0x9d40, 0x9d41,\n  0x9d42, 0x9d43, 0x9d44, 0x9d45, 0x9d46, 0x9d47, 0x9d48, 0x9d49,\n  0x9d4a, 0x9d4b, 0x9d4c, 0x9d4d, 0x9d4e, 0x9d4f, 0x9d50, 0x9d51,\n  0x9d52, 0x9d53, 0x9d54, 0x9d55, 0x9d56, 0x9d57, 0x9d58, 0x9d59,\n  0x9d5a, 0x9d5b, 0x9d5c, 0x9d5d, 0x9d5e, 0x9d5f, 0x9d60, 0x9d61,\n  0x9d62, 0x9d63, 0x9d64, 0x9d65, 0x9d66, 0x9d67, 0x9d68, 0x9d69,\n  0x9d6a, 0x9d6b, 0x9d6c, 0x9d6d, 0x9d6e, 0x9d6f, 0x9d70, 0x9d71,\n  0x9d72, 0x9d73, 0x9d74, 0x9d75, 0x9d76, 0x9d77, 0x9d78, 0x9d79,\n  0x9d7a, 0x9d7b, 0x9d7c, 0x9d7d, 0x9d7e, 0x9d80, 0x9d81, 0x9d82,\n  0x9d83, 0x9d84, 0x9d85, 0x9d86, 0x9d87, 0x9d88, 0x9d89, 0x9d8a,\n  0x9d8b, 0x9d8c, 0x9d8d, 0x9d8e, 0x9d8f, 0x9d90, 0x9d91, 0x9d92,\n  0x9d93, 0x9d94, 0x9d95, 0x9d96, 0x9d97, 0x9d98, 0x9d99, 0x9d9a,\n  0x9d9b, 0x9d9c, 0x9d9d, 0x9d9e, 0x9d9f, 0x9da0, 0x9da1, 0x9da2,\n  0x9da3, 0x9da4, 0x9da5, 0x9da6, 0x9da7, 0x9da8, 0x9da9, 0x9daa,\n  0x9dab, 0x9dac, 0x9dad, 0x9dae, 0x9daf, 0x9db0, 0x9db1, 0x9db2,\n  0x9db3, 0x9db4, 0x9db5, 0x9db6, 0x9db7, 0x9db8, 0x9db9, 0x9dba,\n  0x9dbb, 0x9dbc, 0x9dbd, 0x9dbe, 0x9dbf, 0x9dc0, 0x9dc1, 0x9dc2,\n  0x9dc3, 0x9dc4, 0x9dc5, 0x9dc6, 0x9dc7, 0x9dc8, 0x9dc9, 0x9dca,\n  0x9dcb, 0x9dcc, 0x9dcd, 0x9dce, 0x9dcf, 0x9dd0, 0x9dd1, 0x9dd2,\n  0x9dd3, 0x9dd4, 0x9dd5, 0x9dd6, 0x9dd7, 0x9dd8, 0x9dd9, 0x9dda,\n  0x9ddb, 0x9ddc, 0x9ddd, 0x9dde, 0x9ddf, 0x9de0, 0x9de1, 0x9de2,\n  0x9de3, 0x9de4, 0x9de5, 0x9de6, 0x9de7, 0x9de8, 0x9de9, 0x9dea,\n  0x9deb, 0x9dec, 0x9ded, 0x9dee, 0x9def, 0x9df0, 0x9df1, 0x9df2,\n  0x9df3, 0x9df4, 0x9df5, 0x9df6, 0x9df7, 0x9df8, 0x9df9, 0x9dfa,\n  0x9dfb, 0x9dfc, 0x9dfd, 0x9dfe, 0x9e40, 0x9e41, 0x9e42, 0x9e43,\n  0x9e44, 0x9e45, 0x9e46, 0x9e47, 0x9e48, 0x9e49, 0x9e4a, 0x9e4b,\n  0x9e4c, 0x9e4d, 0x9e4e, 0x9e4f, 0x9e50, 0x9e51, 0x9e52, 0x9e53,\n  0x9e54, 0x9e55, 0x9e56, 0x9e57, 0x9e58, 0x9e59, 0x9e5a, 0x9e5b,\n  0x9e5c, 0x9e5d, 0x9e5e, 0x9e5f, 0x9e60, 0x9e61, 0x9e62, 0x9e63,\n  0x9e64, 0x9e65, 0x9e66, 0x9e67, 0x9e68, 0x9e69, 0x9e6a, 0x9e6b,\n  0x9e6c, 0x9e6d, 0x9e6e, 0x9e6f, 0x9e70, 0x9e71, 0x9e72, 0x9e73,\n  0x9e74, 0x9e75, 0x9e76, 0x9e77, 0x9e78, 0x9e79, 0x9e7a, 0x9e7b,\n  0x9e7c, 0x9e7d, 0x9e7e, 0x9e80, 0x9e81, 0x9e82, 0x9e83, 0x9e84,\n  0x9e85, 0x9e86, 0x9e87, 0x9e88, 0x9e89, 0x9e8a, 0x9e8b, 0x9e8c,\n  0x9e8d, 0x9e8e, 0x9e8f, 0x9e90, 0x9e91, 0x9e92, 0x9e93, 0x9e94,\n  0x9e95, 0x9e96, 0x9e97, 0x9e98, 0x9e99, 0x9e9a, 0x9e9b, 0x9e9c,\n  0x9e9d, 0x9e9e, 0x9e9f, 0x9ea0, 0x9ea1, 0x9ea2, 0x9ea3, 0x9ea4,\n  0x9ea5, 0x9ea6, 0x9ea7, 0x9ea8, 0x9ea9, 0x9eaa, 0x9eab, 0x9eac,\n  0x9ead, 0x9eae, 0x9eaf, 0x9eb0, 0x9eb1, 0x9eb2, 0x9eb3, 0x9eb4,\n  0x9eb5, 0x9eb6, 0x9eb7, 0x9eb8, 0x9eb9, 0x9eba, 0x9ebb, 0x9ebc,\n  0x9ebd, 0x9ebe, 0x9ebf, 0x9ec0, 0x9ec1, 0x9ec2, 0x9ec3, 0x9ec4,\n  0x9ec5, 0x9ec6, 0x9ec7, 0x9ec8, 0x9ec9, 0x9eca, 0x9ecb, 0x9ecc,\n  0x9ecd, 0x9ece, 0x9ecf, 0x9ed0, 0x9ed1, 0x9ed2, 0x9ed3, 0x9ed4,\n  0x9ed5, 0x9ed6, 0x9ed7, 0x9ed8, 0x9ed9, 0x9eda, 0x9edb, 0x9edc,\n  0x9edd, 0x9ede, 0x9edf, 0x9ee0, 0x9ee1, 0x9ee2, 0x9ee3, 0x9ee4,\n  0x9ee5, 0x9ee6, 0x9ee7, 0x9ee8, 0x9ee9, 0x9eea, 0x9eeb, 0x9eec,\n  0x9eed, 0x9eee, 0x9eef, 0x9ef0, 0x9ef1, 0x9ef2, 0x9ef3, 0x9ef4,\n  0x9ef5, 0x9ef6, 0x9ef7, 0x9ef8, 0x9ef9, 0x9efa, 0x9efb, 0x9efc,\n  0x9efd, 0x9efe, 0x9f40, 0x9f41, 0x9f42, 0x9f43, 0x9f44, 0x9f45,\n  0x9f46, 0x9f47, 0x9f48, 0x9f49, 0x9f4a, 0x9f4b, 0x9f4c, 0x9f4d,\n  0x9f4e, 0x9f4f, 0x9f50, 0x9f51, 0x9f52, 0x9f53, 0x9f54, 0x9f55,\n  0x9f56, 0x9f57, 0x9f58, 0x9f59, 0x9f5a, 0x9f5b, 0x9f5c, 0x9f5d,\n  0x9f5e, 0x9f5f, 0x9f60, 0x9f61, 0x9f62, 0x9f63, 0x9f64, 0x9f65,\n  0x9f66, 0x9f67, 0x9f68, 0x9f69, 0x9f6a, 0x9f6b, 0x9f6c, 0x9f6d,\n  0x9f6e, 0x9f6f, 0x9f70, 0x9f71, 0x9f72, 0x9f73, 0x9f74, 0x9f75,\n  0x9f76, 0x9f77, 0x9f78, 0x9f79, 0x9f7a, 0x9f7b, 0x9f7c, 0x9f7d,\n  0x9f7e, 0x9f80, 0x9f81, 0x9f82, 0x9f83, 0x9f84, 0x9f85, 0x9f86,\n  0x9f87, 0x9f88, 0x9f89, 0x9f8a, 0x9f8b, 0x9f8c, 0x9f8d, 0x9f8e,\n  0x9f8f, 0x9f90, 0x9f91, 0x9f92, 0x9f93, 0x9f94, 0x9f95, 0x9f96,\n  0x9f97, 0x9f98, 0x9f99, 0x9f9a, 0x9f9b, 0x9f9c, 0x9f9d, 0x9f9e,\n  0x9f9f, 0x9fa0, 0x9fa1, 0x9fa2, 0x9fa3, 0x9fa4, 0x9fa5, 0x9fa6,\n  0x9fa7, 0x9fa8, 0x9fa9, 0x9faa, 0x9fab, 0x9fac, 0x9fad, 0x9fae,\n  0x9faf, 0x9fb0, 0x9fb1, 0x9fb2, 0x9fb3, 0x9fb4, 0x9fb5, 0x9fb6,\n  0x9fb7, 0x9fb8, 0x9fb9, 0x9fba, 0x9fbb, 0x9fbc, 0x9fbd, 0x9fbe,\n  0x9fbf, 0x9fc0, 0x9fc1, 0x9fc2, 0x9fc3, 0x9fc4, 0x9fc5, 0x9fc6,\n  0x9fc7, 0x9fc8, 0x9fc9, 0x9fca, 0x9fcb, 0x9fcc, 0x9fcd, 0x9fce,\n  0x9fcf, 0x9fd0, 0x9fd1, 0x9fd2, 0x9fd3, 0x9fd4, 0x9fd5, 0x9fd6,\n  0x9fd7, 0x9fd8, 0x9fd9, 0x9fda, 0x9fdb, 0x9fdc, 0x9fdd, 0x9fde,\n  0x9fdf, 0x9fe0, 0x9fe1, 0x9fe2, 0x9fe3, 0x9fe4, 0x9fe5, 0x9fe6,\n  0x9fe7, 0x9fe8, 0x9fe9, 0x9fea, 0x9feb, 0x9fec, 0x9fed, 0x9fee,\n  0x9fef, 0x9ff0, 0x9ff1, 0x9ff2, 0x9ff3, 0x9ff4, 0x9ff5, 0x9ff6,\n  0x9ff7, 0x9ff8, 0x9ff9, 0x9ffa, 0x9ffb, 0x9ffc, 0x9ffd, 0x9ffe,\n  0xa040, 0xa041, 0xa042, 0xa043, 0xa044, 0xa045, 0xa046, 0xa047,\n  0xa048, 0xa049, 0xa04a, 0xa04b, 0xa04c, 0xa04d, 0xa04e, 0xa04f,\n  0xa050, 0xa051, 0xa052, 0xa053, 0xa054, 0xa055, 0xa056, 0xa057,\n  0xa058, 0xa059, 0xa05a, 0xa05b, 0xa05c, 0xa05d, 0xa05e, 0xa05f,\n  0xa060, 0xa061, 0xa062, 0xa063, 0xa064, 0xa065, 0xa066, 0xa067,\n  0xa068, 0xa069, 0xa06a, 0xa06b, 0xa06c, 0xa06d, 0xa06e, 0xa06f,\n  0xa070, 0xa071, 0xa072, 0xa073, 0xa074, 0xa075, 0xa076, 0xa077,\n  0xa078, 0xa079, 0xa07a, 0xa07b, 0xa07c, 0xa07d, 0xa07e, 0xa080,\n  0xa081, 0xa082, 0xa083, 0xa084, 0xa085, 0xa086, 0xa087, 0xa088,\n  0xa089, 0xa08a, 0xa08b, 0xa08c, 0xa08d, 0xa08e, 0xa08f, 0xa090,\n  0xa091, 0xa092, 0xa093, 0xa094, 0xa095, 0xa096, 0xa097, 0xa098,\n  0xa099, 0xa09a, 0xa09b, 0xa09c, 0xa09d, 0xa09e, 0xa09f, 0xa0a0,\n  0xa0a1, 0xa0a2, 0xa0a3, 0xa0a4, 0xa0a5, 0xa0a6, 0xa0a7, 0xa0a8,\n  0xa0a9, 0xa0aa, 0xa0ab, 0xa0ac, 0xa0ad, 0xa0ae, 0xa0af, 0xa0b0,\n  0xa0b1, 0xa0b2, 0xa0b3, 0xa0b4, 0xa0b5, 0xa0b6, 0xa0b7, 0xa0b8,\n  0xa0b9, 0xa0ba, 0xa0bb, 0xa0bc, 0xa0bd, 0xa0be, 0xa0bf, 0xa0c0,\n  0xa0c1, 0xa0c2, 0xa0c3, 0xa0c4, 0xa0c5, 0xa0c6, 0xa0c7, 0xa0c8,\n  0xa0c9, 0xa0ca, 0xa0cb, 0xa0cc, 0xa0cd, 0xa0ce, 0xa0cf, 0xa0d0,\n  0xa0d1, 0xa0d2, 0xa0d3, 0xa0d4, 0xa0d5, 0xa0d6, 0xa0d7, 0xa0d8,\n  0xa0d9, 0xa0da, 0xa0db, 0xa0dc, 0xa0dd, 0xa0de, 0xa0df, 0xa0e0,\n  0xa0e1, 0xa0e2, 0xa0e3, 0xa0e4, 0xa0e5, 0xa0e6, 0xa0e7, 0xa0e8,\n  0xa0e9, 0xa0ea, 0xa0eb, 0xa0ec, 0xa0ed, 0xa0ee, 0xa0ef, 0xa0f0,\n  0xa0f1, 0xa0f2, 0xa0f3, 0xa0f4, 0xa0f5, 0xa0f6, 0xa0f7, 0xa0f8,\n  0xa0f9, 0xa0fa, 0xa0fb, 0xa0fc, 0xa0fd, 0xa0fe, 0xaa40, 0xaa41,\n  0xaa42, 0xaa43, 0xaa44, 0xaa45, 0xaa46, 0xaa47, 0xaa48, 0xaa49,\n  0xaa4a, 0xaa4b, 0xaa4c, 0xaa4d, 0xaa4e, 0xaa4f, 0xaa50, 0xaa51,\n  0xaa52, 0xaa53, 0xaa54, 0xaa55, 0xaa56, 0xaa57, 0xaa58, 0xaa59,\n  0xaa5a, 0xaa5b, 0xaa5c, 0xaa5d, 0xaa5e, 0xaa5f, 0xaa60, 0xaa61,\n  0xaa62, 0xaa63, 0xaa64, 0xaa65, 0xaa66, 0xaa67, 0xaa68, 0xaa69,\n  0xaa6a, 0xaa6b, 0xaa6c, 0xaa6d, 0xaa6e, 0xaa6f, 0xaa70, 0xaa71,\n  0xaa72, 0xaa73, 0xaa74, 0xaa75, 0xaa76, 0xaa77, 0xaa78, 0xaa79,\n  0xaa7a, 0xaa7b, 0xaa7c, 0xaa7d, 0xaa7e, 0xaa80, 0xaa81, 0xaa82,\n  0xaa83, 0xaa84, 0xaa85, 0xaa86, 0xaa87, 0xaa88, 0xaa89, 0xaa8a,\n  0xaa8b, 0xaa8c, 0xaa8d, 0xaa8e, 0xaa8f, 0xaa90, 0xaa91, 0xaa92,\n  0xaa93, 0xaa94, 0xaa95, 0xaa96, 0xaa97, 0xaa98, 0xaa99, 0xaa9a,\n  0xaa9b, 0xaa9c, 0xaa9d, 0xaa9e, 0xaa9f, 0xaaa0, 0xab40, 0xab41,\n  0xab42, 0xab43, 0xab44, 0xab45, 0xab46, 0xab47, 0xab48, 0xab49,\n  0xab4a, 0xab4b, 0xab4c, 0xab4d, 0xab4e, 0xab4f, 0xab50, 0xab51,\n  0xab52, 0xab53, 0xab54, 0xab55, 0xab56, 0xab57, 0xab58, 0xab59,\n  0xab5a, 0xab5b, 0xab5c, 0xab5d, 0xab5e, 0xab5f, 0xab60, 0xab61,\n  0xab62, 0xab63, 0xab64, 0xab65, 0xab66, 0xab67, 0xab68, 0xab69,\n  0xab6a, 0xab6b, 0xab6c, 0xab6d, 0xab6e, 0xab6f, 0xab70, 0xab71,\n  0xab72, 0xab73, 0xab74, 0xab75, 0xab76, 0xab77, 0xab78, 0xab79,\n  0xab7a, 0xab7b, 0xab7c, 0xab7d, 0xab7e, 0xab80, 0xab81, 0xab82,\n  0xab83, 0xab84, 0xab85, 0xab86, 0xab87, 0xab88, 0xab89, 0xab8a,\n  0xab8b, 0xab8c, 0xab8d, 0xab8e, 0xab8f, 0xab90, 0xab91, 0xab92,\n  0xab93, 0xab94, 0xab95, 0xab96, 0xab97, 0xab98, 0xab99, 0xab9a,\n  0xab9b, 0xab9c, 0xab9d, 0xab9e, 0xab9f, 0xaba0, 0xac40, 0xac41,\n  0xac42, 0xac43, 0xac44, 0xac45, 0xac46, 0xac47, 0xac48, 0xac49,\n  0xac4a, 0xac4b, 0xac4c, 0xac4d, 0xac4e, 0xac4f, 0xac50, 0xac51,\n  0xac52, 0xac53, 0xac54, 0xac55, 0xac56, 0xac57, 0xac58, 0xac59,\n  0xac5a, 0xac5b, 0xac5c, 0xac5d, 0xac5e, 0xac5f, 0xac60, 0xac61,\n  0xac62, 0xac63, 0xac64, 0xac65, 0xac66, 0xac67, 0xac68, 0xac69,\n  0xac6a, 0xac6b, 0xac6c, 0xac6d, 0xac6e, 0xac6f, 0xac70, 0xac71,\n  0xac72, 0xac73, 0xac74, 0xac75, 0xac76, 0xac77, 0xac78, 0xac79,\n  0xac7a, 0xac7b, 0xac7c, 0xac7d, 0xac7e, 0xac80, 0xac81, 0xac82,\n  0xac83, 0xac84, 0xac85, 0xac86, 0xac87, 0xac88, 0xac89, 0xac8a,\n  0xac8b, 0xac8c, 0xac8d, 0xac8e, 0xac8f, 0xac90, 0xac91, 0xac92,\n  0xac93, 0xac94, 0xac95, 0xac96, 0xac97, 0xac98, 0xac99, 0xac9a,\n  0xac9b, 0xac9c, 0xac9d, 0xac9e, 0xac9f, 0xaca0, 0xad40, 0xad41,\n  0xad42, 0xad43, 0xad44, 0xad45, 0xad46, 0xad47, 0xad48, 0xad49,\n  0xad4a, 0xad4b, 0xad4c, 0xad4d, 0xad4e, 0xad4f, 0xad50, 0xad51,\n  0xad52, 0xad53, 0xad54, 0xad55, 0xad56, 0xad57, 0xad58, 0xad59,\n  0xad5a, 0xad5b, 0xad5c, 0xad5d, 0xad5e, 0xad5f, 0xad60, 0xad61,\n  0xad62, 0xad63, 0xad64, 0xad65, 0xad66, 0xad67, 0xad68, 0xad69,\n  0xad6a, 0xad6b, 0xad6c, 0xad6d, 0xad6e, 0xad6f, 0xad70, 0xad71,\n  0xad72, 0xad73, 0xad74, 0xad75, 0xad76, 0xad77, 0xad78, 0xad79,\n  0xad7a, 0xad7b, 0xad7c, 0xad7d, 0xad7e, 0xad80, 0xad81, 0xad82,\n  0xad83, 0xad84, 0xad85, 0xad86, 0xad87, 0xad88, 0xad89, 0xad8a,\n  0xad8b, 0xad8c, 0xad8d, 0xad8e, 0xad8f, 0xad90, 0xad91, 0xad92,\n  0xad93, 0xad94, 0xad95, 0xad96, 0xad97, 0xad98, 0xad99, 0xad9a,\n  0xad9b, 0xad9c, 0xad9d, 0xad9e, 0xad9f, 0xada0, 0xae40, 0xae41,\n  0xae42, 0xae43, 0xae44, 0xae45, 0xae46, 0xae47, 0xae48, 0xae49,\n  0xae4a, 0xae4b, 0xae4c, 0xae4d, 0xae4e, 0xae4f, 0xae50, 0xae51,\n  0xae52, 0xae53, 0xae54, 0xae55, 0xae56, 0xae57, 0xae58, 0xae59,\n  0xae5a, 0xae5b, 0xae5c, 0xae5d, 0xae5e, 0xae5f, 0xae60, 0xae61,\n  0xae62, 0xae63, 0xae64, 0xae65, 0xae66, 0xae67, 0xae68, 0xae69,\n  0xae6a, 0xae6b, 0xae6c, 0xae6d, 0xae6e, 0xae6f, 0xae70, 0xae71,\n  0xae72, 0xae73, 0xae74, 0xae75, 0xae76, 0xae77, 0xae78, 0xae79,\n  0xae7a, 0xae7b, 0xae7c, 0xae7d, 0xae7e, 0xae80, 0xae81, 0xae82,\n  0xae83, 0xae84, 0xae85, 0xae86, 0xae87, 0xae88, 0xae89, 0xae8a,\n  0xae8b, 0xae8c, 0xae8d, 0xae8e, 0xae8f, 0xae90, 0xae91, 0xae92,\n  0xae93, 0xae94, 0xae95, 0xae96, 0xae97, 0xae98, 0xae99, 0xae9a,\n  0xae9b, 0xae9c, 0xae9d, 0xae9e, 0xae9f, 0xaea0, 0xaf40, 0xaf41,\n  0xaf42, 0xaf43, 0xaf44, 0xaf45, 0xaf46, 0xaf47, 0xaf48, 0xaf49,\n  0xaf4a, 0xaf4b, 0xaf4c, 0xaf4d, 0xaf4e, 0xaf4f, 0xaf50, 0xaf51,\n  0xaf52, 0xaf53, 0xaf54, 0xaf55, 0xaf56, 0xaf57, 0xaf58, 0xaf59,\n  0xaf5a, 0xaf5b, 0xaf5c, 0xaf5d, 0xaf5e, 0xaf5f, 0xaf60, 0xaf61,\n  0xaf62, 0xaf63, 0xaf64, 0xaf65, 0xaf66, 0xaf67, 0xaf68, 0xaf69,\n  0xaf6a, 0xaf6b, 0xaf6c, 0xaf6d, 0xaf6e, 0xaf6f, 0xaf70, 0xaf71,\n  0xaf72, 0xaf73, 0xaf74, 0xaf75, 0xaf76, 0xaf77, 0xaf78, 0xaf79,\n  0xaf7a, 0xaf7b, 0xaf7c, 0xaf7d, 0xaf7e, 0xaf80, 0xaf81, 0xaf82,\n  0xaf83, 0xaf84, 0xaf85, 0xaf86, 0xaf87, 0xaf88, 0xaf89, 0xaf8a,\n  0xaf8b, 0xaf8c, 0xaf8d, 0xaf8e, 0xaf8f, 0xaf90, 0xaf91, 0xaf92,\n  0xaf93, 0xaf94, 0xaf95, 0xaf96, 0xaf97, 0xaf98, 0xaf99, 0xaf9a,\n  0xaf9b, 0xaf9c, 0xaf9d, 0xaf9e, 0xaf9f, 0xafa0, 0xb040, 0xb041,\n  0xb042, 0xb043, 0xb044, 0xb045, 0xb046, 0xb047, 0xb048, 0xb049,\n  0xb04a, 0xb04b, 0xb04c, 0xb04d, 0xb04e, 0xb04f, 0xb050, 0xb051,\n  0xb052, 0xb053, 0xb054, 0xb055, 0xb056, 0xb057, 0xb058, 0xb059,\n  0xb05a, 0xb05b, 0xb05c, 0xb05d, 0xb05e, 0xb05f, 0xb060, 0xb061,\n  0xb062, 0xb063, 0xb064, 0xb065, 0xb066, 0xb067, 0xb068, 0xb069,\n  0xb06a, 0xb06b, 0xb06c, 0xb06d, 0xb06e, 0xb06f, 0xb070, 0xb071,\n  0xb072, 0xb073, 0xb074, 0xb075, 0xb076, 0xb077, 0xb078, 0xb079,\n  0xb07a, 0xb07b, 0xb07c, 0xb07d, 0xb07e, 0xb080, 0xb081, 0xb082,\n  0xb083, 0xb084, 0xb085, 0xb086, 0xb087, 0xb088, 0xb089, 0xb08a,\n  0xb08b, 0xb08c, 0xb08d, 0xb08e, 0xb08f, 0xb090, 0xb091, 0xb092,\n  0xb093, 0xb094, 0xb095, 0xb096, 0xb097, 0xb098, 0xb099, 0xb09a,\n  0xb09b, 0xb09c, 0xb09d, 0xb09e, 0xb09f, 0xb0a0, 0xb140, 0xb141,\n  0xb142, 0xb143, 0xb144, 0xb145, 0xb146, 0xb147, 0xb148, 0xb149,\n  0xb14a, 0xb14b, 0xb14c, 0xb14d, 0xb14e, 0xb14f, 0xb150, 0xb151,\n  0xb152, 0xb153, 0xb154, 0xb155, 0xb156, 0xb157, 0xb158, 0xb159,\n  0xb15a, 0xb15b, 0xb15c, 0xb15d, 0xb15e, 0xb15f, 0xb160, 0xb161,\n  0xb162, 0xb163, 0xb164, 0xb165, 0xb166, 0xb167, 0xb168, 0xb169,\n  0xb16a, 0xb16b, 0xb16c, 0xb16d, 0xb16e, 0xb16f, 0xb170, 0xb171,\n  0xb172, 0xb173, 0xb174, 0xb175, 0xb176, 0xb177, 0xb178, 0xb179,\n  0xb17a, 0xb17b, 0xb17c, 0xb17d, 0xb17e, 0xb180, 0xb181, 0xb182,\n  0xb183, 0xb184, 0xb185, 0xb186, 0xb187, 0xb188, 0xb189, 0xb18a,\n  0xb18b, 0xb18c, 0xb18d, 0xb18e, 0xb18f, 0xb190, 0xb191, 0xb192,\n  0xb193, 0xb194, 0xb195, 0xb196, 0xb197, 0xb198, 0xb199, 0xb19a,\n  0xb19b, 0xb19c, 0xb19d, 0xb19e, 0xb19f, 0xb1a0, 0xb240, 0xb241,\n  0xb242, 0xb243, 0xb244, 0xb245, 0xb246, 0xb247, 0xb248, 0xb249,\n  0xb24a, 0xb24b, 0xb24c, 0xb24d, 0xb24e, 0xb24f, 0xb250, 0xb251,\n  0xb252, 0xb253, 0xb254, 0xb255, 0xb256, 0xb257, 0xb258, 0xb259,\n  0xb25a, 0xb25b, 0xb25c, 0xb25d, 0xb25e, 0xb25f, 0xb260, 0xb261,\n  0xb262, 0xb263, 0xb264, 0xb265, 0xb266, 0xb267, 0xb268, 0xb269,\n  0xb26a, 0xb26b, 0xb26c, 0xb26d, 0xb26e, 0xb26f, 0xb270, 0xb271,\n  0xb272, 0xb273, 0xb274, 0xb275, 0xb276, 0xb277, 0xb278, 0xb279,\n  0xb27a, 0xb27b, 0xb27c, 0xb27d, 0xb27e, 0xb280, 0xb281, 0xb282,\n  0xb283, 0xb284, 0xb285, 0xb286, 0xb287, 0xb288, 0xb289, 0xb28a,\n  0xb28b, 0xb28c, 0xb28d, 0xb28e, 0xb28f, 0xb290, 0xb291, 0xb292,\n  0xb293, 0xb294, 0xb295, 0xb296, 0xb297, 0xb298, 0xb299, 0xb29a,\n  0xb29b, 0xb29c, 0xb29d, 0xb29e, 0xb29f, 0xb2a0, 0xb340, 0xb341,\n  0xb342, 0xb343, 0xb344, 0xb345, 0xb346, 0xb347, 0xb348, 0xb349,\n  0xb34a, 0xb34b, 0xb34c, 0xb34d, 0xb34e, 0xb34f, 0xb350, 0xb351,\n  0xb352, 0xb353, 0xb354, 0xb355, 0xb356, 0xb357, 0xb358, 0xb359,\n  0xb35a, 0xb35b, 0xb35c, 0xb35d, 0xb35e, 0xb35f, 0xb360, 0xb361,\n  0xb362, 0xb363, 0xb364, 0xb365, 0xb366, 0xb367, 0xb368, 0xb369,\n  0xb36a, 0xb36b, 0xb36c, 0xb36d, 0xb36e, 0xb36f, 0xb370, 0xb371,\n  0xb372, 0xb373, 0xb374, 0xb375, 0xb376, 0xb377, 0xb378, 0xb379,\n  0xb37a, 0xb37b, 0xb37c, 0xb37d, 0xb37e, 0xb380, 0xb381, 0xb382,\n  0xb383, 0xb384, 0xb385, 0xb386, 0xb387, 0xb388, 0xb389, 0xb38a,\n  0xb38b, 0xb38c, 0xb38d, 0xb38e, 0xb38f, 0xb390, 0xb391, 0xb392,\n  0xb393, 0xb394, 0xb395, 0xb396, 0xb397, 0xb398, 0xb399, 0xb39a,\n  0xb39b, 0xb39c, 0xb39d, 0xb39e, 0xb39f, 0xb3a0, 0xb440, 0xb441,\n  0xb442, 0xb443, 0xb444, 0xb445, 0xb446, 0xb447, 0xb448, 0xb449,\n  0xb44a, 0xb44b, 0xb44c, 0xb44d, 0xb44e, 0xb44f, 0xb450, 0xb451,\n  0xb452, 0xb453, 0xb454, 0xb455, 0xb456, 0xb457, 0xb458, 0xb459,\n  0xb45a, 0xb45b, 0xb45c, 0xb45d, 0xb45e, 0xb45f, 0xb460, 0xb461,\n  0xb462, 0xb463, 0xb464, 0xb465, 0xb466, 0xb467, 0xb468, 0xb469,\n  0xb46a, 0xb46b, 0xb46c, 0xb46d, 0xb46e, 0xb46f, 0xb470, 0xb471,\n  0xb472, 0xb473, 0xb474, 0xb475, 0xb476, 0xb477, 0xb478, 0xb479,\n  0xb47a, 0xb47b, 0xb47c, 0xb47d, 0xb47e, 0xb480, 0xb481, 0xb482,\n  0xb483, 0xb484, 0xb485, 0xb486, 0xb487, 0xb488, 0xb489, 0xb48a,\n  0xb48b, 0xb48c, 0xb48d, 0xb48e, 0xb48f, 0xb490, 0xb491, 0xb492,\n  0xb493, 0xb494, 0xb495, 0xb496, 0xb497, 0xb498, 0xb499, 0xb49a,\n  0xb49b, 0xb49c, 0xb49d, 0xb49e, 0xb49f, 0xb4a0, 0xb540, 0xb541,\n  0xb542, 0xb543, 0xb544, 0xb545, 0xb546, 0xb547, 0xb548, 0xb549,\n  0xb54a, 0xb54b, 0xb54c, 0xb54d, 0xb54e, 0xb54f, 0xb550, 0xb551,\n  0xb552, 0xb553, 0xb554, 0xb555, 0xb556, 0xb557, 0xb558, 0xb559,\n  0xb55a, 0xb55b, 0xb55c, 0xb55d, 0xb55e, 0xb55f, 0xb560, 0xb561,\n  0xb562, 0xb563, 0xb564, 0xb565, 0xb566, 0xb567, 0xb568, 0xb569,\n  0xb56a, 0xb56b, 0xb56c, 0xb56d, 0xb56e, 0xb56f, 0xb570, 0xb571,\n  0xb572, 0xb573, 0xb574, 0xb575, 0xb576, 0xb577, 0xb578, 0xb579,\n  0xb57a, 0xb57b, 0xb57c, 0xb57d, 0xb57e, 0xb580, 0xb581, 0xb582,\n  0xb583, 0xb584, 0xb585, 0xb586, 0xb587, 0xb588, 0xb589, 0xb58a,\n  0xb58b, 0xb58c, 0xb58d, 0xb58e, 0xb58f, 0xb590, 0xb591, 0xb592,\n  0xb593, 0xb594, 0xb595, 0xb596, 0xb597, 0xb598, 0xb599, 0xb59a,\n  0xb59b, 0xb59c, 0xb59d, 0xb59e, 0xb59f, 0xb5a0, 0xb640, 0xb641,\n  0xb642, 0xb643, 0xb644, 0xb645, 0xb646, 0xb647, 0xb648, 0xb649,\n  0xb64a, 0xb64b, 0xb64c, 0xb64d, 0xb64e, 0xb64f, 0xb650, 0xb651,\n  0xb652, 0xb653, 0xb654, 0xb655, 0xb656, 0xb657, 0xb658, 0xb659,\n  0xb65a, 0xb65b, 0xb65c, 0xb65d, 0xb65e, 0xb65f, 0xb660, 0xb661,\n  0xb662, 0xb663, 0xb664, 0xb665, 0xb666, 0xb667, 0xb668, 0xb669,\n  0xb66a, 0xb66b, 0xb66c, 0xb66d, 0xb66e, 0xb66f, 0xb670, 0xb671,\n  0xb672, 0xb673, 0xb674, 0xb675, 0xb676, 0xb677, 0xb678, 0xb679,\n  0xb67a, 0xb67b, 0xb67c, 0xb67d, 0xb67e, 0xb680, 0xb681, 0xb682,\n  0xb683, 0xb684, 0xb685, 0xb686, 0xb687, 0xb688, 0xb689, 0xb68a,\n  0xb68b, 0xb68c, 0xb68d, 0xb68e, 0xb68f, 0xb690, 0xb691, 0xb692,\n  0xb693, 0xb694, 0xb695, 0xb696, 0xb697, 0xb698, 0xb699, 0xb69a,\n  0xb69b, 0xb69c, 0xb69d, 0xb69e, 0xb69f, 0xb6a0, 0xb740, 0xb741,\n  0xb742, 0xb743, 0xb744, 0xb745, 0xb746, 0xb747, 0xb748, 0xb749,\n  0xb74a, 0xb74b, 0xb74c, 0xb74d, 0xb74e, 0xb74f, 0xb750, 0xb751,\n  0xb752, 0xb753, 0xb754, 0xb755, 0xb756, 0xb757, 0xb758, 0xb759,\n  0xb75a, 0xb75b, 0xb75c, 0xb75d, 0xb75e, 0xb75f, 0xb760, 0xb761,\n  0xb762, 0xb763, 0xb764, 0xb765, 0xb766, 0xb767, 0xb768, 0xb769,\n  0xb76a, 0xb76b, 0xb76c, 0xb76d, 0xb76e, 0xb76f, 0xb770, 0xb771,\n  0xb772, 0xb773, 0xb774, 0xb775, 0xb776, 0xb777, 0xb778, 0xb779,\n  0xb77a, 0xb77b, 0xb77c, 0xb77d, 0xb77e, 0xb780, 0xb781, 0xb782,\n  0xb783, 0xb784, 0xb785, 0xb786, 0xb787, 0xb788, 0xb789, 0xb78a,\n  0xb78b, 0xb78c, 0xb78d, 0xb78e, 0xb78f, 0xb790, 0xb791, 0xb792,\n  0xb793, 0xb794, 0xb795, 0xb796, 0xb797, 0xb798, 0xb799, 0xb79a,\n  0xb79b, 0xb79c, 0xb79d, 0xb79e, 0xb79f, 0xb7a0, 0xb840, 0xb841,\n  0xb842, 0xb843, 0xb844, 0xb845, 0xb846, 0xb847, 0xb848, 0xb849,\n  0xb84a, 0xb84b, 0xb84c, 0xb84d, 0xb84e, 0xb84f, 0xb850, 0xb851,\n  0xb852, 0xb853, 0xb854, 0xb855, 0xb856, 0xb857, 0xb858, 0xb859,\n  0xb85a, 0xb85b, 0xb85c, 0xb85d, 0xb85e, 0xb85f, 0xb860, 0xb861,\n  0xb862, 0xb863, 0xb864, 0xb865, 0xb866, 0xb867, 0xb868, 0xb869,\n  0xb86a, 0xb86b, 0xb86c, 0xb86d, 0xb86e, 0xb86f, 0xb870, 0xb871,\n  0xb872, 0xb873, 0xb874, 0xb875, 0xb876, 0xb877, 0xb878, 0xb879,\n  0xb87a, 0xb87b, 0xb87c, 0xb87d, 0xb87e, 0xb880, 0xb881, 0xb882,\n  0xb883, 0xb884, 0xb885, 0xb886, 0xb887, 0xb888, 0xb889, 0xb88a,\n  0xb88b, 0xb88c, 0xb88d, 0xb88e, 0xb88f, 0xb890, 0xb891, 0xb892,\n  0xb893, 0xb894, 0xb895, 0xb896, 0xb897, 0xb898, 0xb899, 0xb89a,\n  0xb89b, 0xb89c, 0xb89d, 0xb89e, 0xb89f, 0xb8a0, 0xb940, 0xb941,\n  0xb942, 0xb943, 0xb944, 0xb945, 0xb946, 0xb947, 0xb948, 0xb949,\n  0xb94a, 0xb94b, 0xb94c, 0xb94d, 0xb94e, 0xb94f, 0xb950, 0xb951,\n  0xb952, 0xb953, 0xb954, 0xb955, 0xb956, 0xb957, 0xb958, 0xb959,\n  0xb95a, 0xb95b, 0xb95c, 0xb95d, 0xb95e, 0xb95f, 0xb960, 0xb961,\n  0xb962, 0xb963, 0xb964, 0xb965, 0xb966, 0xb967, 0xb968, 0xb969,\n  0xb96a, 0xb96b, 0xb96c, 0xb96d, 0xb96e, 0xb96f, 0xb970, 0xb971,\n  0xb972, 0xb973, 0xb974, 0xb975, 0xb976, 0xb977, 0xb978, 0xb979,\n  0xb97a, 0xb97b, 0xb97c, 0xb97d, 0xb97e, 0xb980, 0xb981, 0xb982,\n  0xb983, 0xb984, 0xb985, 0xb986, 0xb987, 0xb988, 0xb989, 0xb98a,\n  0xb98b, 0xb98c, 0xb98d, 0xb98e, 0xb98f, 0xb990, 0xb991, 0xb992,\n  0xb993, 0xb994, 0xb995, 0xb996, 0xb997, 0xb998, 0xb999, 0xb99a,\n  0xb99b, 0xb99c, 0xb99d, 0xb99e, 0xb99f, 0xb9a0, 0xba40, 0xba41,\n  0xba42, 0xba43, 0xba44, 0xba45, 0xba46, 0xba47, 0xba48, 0xba49,\n  0xba4a, 0xba4b, 0xba4c, 0xba4d, 0xba4e, 0xba4f, 0xba50, 0xba51,\n  0xba52, 0xba53, 0xba54, 0xba55, 0xba56, 0xba57, 0xba58, 0xba59,\n  0xba5a, 0xba5b, 0xba5c, 0xba5d, 0xba5e, 0xba5f, 0xba60, 0xba61,\n  0xba62, 0xba63, 0xba64, 0xba65, 0xba66, 0xba67, 0xba68, 0xba69,\n  0xba6a, 0xba6b, 0xba6c, 0xba6d, 0xba6e, 0xba6f, 0xba70, 0xba71,\n  0xba72, 0xba73, 0xba74, 0xba75, 0xba76, 0xba77, 0xba78, 0xba79,\n  0xba7a, 0xba7b, 0xba7c, 0xba7d, 0xba7e, 0xba80, 0xba81, 0xba82,\n  0xba83, 0xba84, 0xba85, 0xba86, 0xba87, 0xba88, 0xba89, 0xba8a,\n  0xba8b, 0xba8c, 0xba8d, 0xba8e, 0xba8f, 0xba90, 0xba91, 0xba92,\n  0xba93, 0xba94, 0xba95, 0xba96, 0xba97, 0xba98, 0xba99, 0xba9a,\n  0xba9b, 0xba9c, 0xba9d, 0xba9e, 0xba9f, 0xbaa0, 0xbb40, 0xbb41,\n  0xbb42, 0xbb43, 0xbb44, 0xbb45, 0xbb46, 0xbb47, 0xbb48, 0xbb49,\n  0xbb4a, 0xbb4b, 0xbb4c, 0xbb4d, 0xbb4e, 0xbb4f, 0xbb50, 0xbb51,\n  0xbb52, 0xbb53, 0xbb54, 0xbb55, 0xbb56, 0xbb57, 0xbb58, 0xbb59,\n  0xbb5a, 0xbb5b, 0xbb5c, 0xbb5d, 0xbb5e, 0xbb5f, 0xbb60, 0xbb61,\n  0xbb62, 0xbb63, 0xbb64, 0xbb65, 0xbb66, 0xbb67, 0xbb68, 0xbb69,\n  0xbb6a, 0xbb6b, 0xbb6c, 0xbb6d, 0xbb6e, 0xbb6f, 0xbb70, 0xbb71,\n  0xbb72, 0xbb73, 0xbb74, 0xbb75, 0xbb76, 0xbb77, 0xbb78, 0xbb79,\n  0xbb7a, 0xbb7b, 0xbb7c, 0xbb7d, 0xbb7e, 0xbb80, 0xbb81, 0xbb82,\n  0xbb83, 0xbb84, 0xbb85, 0xbb86, 0xbb87, 0xbb88, 0xbb89, 0xbb8a,\n  0xbb8b, 0xbb8c, 0xbb8d, 0xbb8e, 0xbb8f, 0xbb90, 0xbb91, 0xbb92,\n  0xbb93, 0xbb94, 0xbb95, 0xbb96, 0xbb97, 0xbb98, 0xbb99, 0xbb9a,\n  0xbb9b, 0xbb9c, 0xbb9d, 0xbb9e, 0xbb9f, 0xbba0, 0xbc40, 0xbc41,\n  0xbc42, 0xbc43, 0xbc44, 0xbc45, 0xbc46, 0xbc47, 0xbc48, 0xbc49,\n  0xbc4a, 0xbc4b, 0xbc4c, 0xbc4d, 0xbc4e, 0xbc4f, 0xbc50, 0xbc51,\n  0xbc52, 0xbc53, 0xbc54, 0xbc55, 0xbc56, 0xbc57, 0xbc58, 0xbc59,\n  0xbc5a, 0xbc5b, 0xbc5c, 0xbc5d, 0xbc5e, 0xbc5f, 0xbc60, 0xbc61,\n  0xbc62, 0xbc63, 0xbc64, 0xbc65, 0xbc66, 0xbc67, 0xbc68, 0xbc69,\n  0xbc6a, 0xbc6b, 0xbc6c, 0xbc6d, 0xbc6e, 0xbc6f, 0xbc70, 0xbc71,\n  0xbc72, 0xbc73, 0xbc74, 0xbc75, 0xbc76, 0xbc77, 0xbc78, 0xbc79,\n  0xbc7a, 0xbc7b, 0xbc7c, 0xbc7d, 0xbc7e, 0xbc80, 0xbc81, 0xbc82,\n  0xbc83, 0xbc84, 0xbc85, 0xbc86, 0xbc87, 0xbc88, 0xbc89, 0xbc8a,\n  0xbc8b, 0xbc8c, 0xbc8d, 0xbc8e, 0xbc8f, 0xbc90, 0xbc91, 0xbc92,\n  0xbc93, 0xbc94, 0xbc95, 0xbc96, 0xbc97, 0xbc98, 0xbc99, 0xbc9a,\n  0xbc9b, 0xbc9c, 0xbc9d, 0xbc9e, 0xbc9f, 0xbca0, 0xbd40, 0xbd41,\n  0xbd42, 0xbd43, 0xbd44, 0xbd45, 0xbd46, 0xbd47, 0xbd48, 0xbd49,\n  0xbd4a, 0xbd4b, 0xbd4c, 0xbd4d, 0xbd4e, 0xbd4f, 0xbd50, 0xbd51,\n  0xbd52, 0xbd53, 0xbd54, 0xbd55, 0xbd56, 0xbd57, 0xbd58, 0xbd59,\n  0xbd5a, 0xbd5b, 0xbd5c, 0xbd5d, 0xbd5e, 0xbd5f, 0xbd60, 0xbd61,\n  0xbd62, 0xbd63, 0xbd64, 0xbd65, 0xbd66, 0xbd67, 0xbd68, 0xbd69,\n  0xbd6a, 0xbd6b, 0xbd6c, 0xbd6d, 0xbd6e, 0xbd6f, 0xbd70, 0xbd71,\n  0xbd72, 0xbd73, 0xbd74, 0xbd75, 0xbd76, 0xbd77, 0xbd78, 0xbd79,\n  0xbd7a, 0xbd7b, 0xbd7c, 0xbd7d, 0xbd7e, 0xbd80, 0xbd81, 0xbd82,\n  0xbd83, 0xbd84, 0xbd85, 0xbd86, 0xbd87, 0xbd88, 0xbd89, 0xbd8a,\n  0xbd8b, 0xbd8c, 0xbd8d, 0xbd8e, 0xbd8f, 0xbd90, 0xbd91, 0xbd92,\n  0xbd93, 0xbd94, 0xbd95, 0xbd96, 0xbd97, 0xbd98, 0xbd99, 0xbd9a,\n  0xbd9b, 0xbd9c, 0xbd9d, 0xbd9e, 0xbd9f, 0xbda0, 0xbe40, 0xbe41,\n  0xbe42, 0xbe43, 0xbe44, 0xbe45, 0xbe46, 0xbe47, 0xbe48, 0xbe49,\n  0xbe4a, 0xbe4b, 0xbe4c, 0xbe4d, 0xbe4e, 0xbe4f, 0xbe50, 0xbe51,\n  0xbe52, 0xbe53, 0xbe54, 0xbe55, 0xbe56, 0xbe57, 0xbe58, 0xbe59,\n  0xbe5a, 0xbe5b, 0xbe5c, 0xbe5d, 0xbe5e, 0xbe5f, 0xbe60, 0xbe61,\n  0xbe62, 0xbe63, 0xbe64, 0xbe65, 0xbe66, 0xbe67, 0xbe68, 0xbe69,\n  0xbe6a, 0xbe6b, 0xbe6c, 0xbe6d, 0xbe6e, 0xbe6f, 0xbe70, 0xbe71,\n  0xbe72, 0xbe73, 0xbe74, 0xbe75, 0xbe76, 0xbe77, 0xbe78, 0xbe79,\n  0xbe7a, 0xbe7b, 0xbe7c, 0xbe7d, 0xbe7e, 0xbe80, 0xbe81, 0xbe82,\n  0xbe83, 0xbe84, 0xbe85, 0xbe86, 0xbe87, 0xbe88, 0xbe89, 0xbe8a,\n  0xbe8b, 0xbe8c, 0xbe8d, 0xbe8e, 0xbe8f, 0xbe90, 0xbe91, 0xbe92,\n  0xbe93, 0xbe94, 0xbe95, 0xbe96, 0xbe97, 0xbe98, 0xbe99, 0xbe9a,\n  0xbe9b, 0xbe9c, 0xbe9d, 0xbe9e, 0xbe9f, 0xbea0, 0xbf40, 0xbf41,\n  0xbf42, 0xbf43, 0xbf44, 0xbf45, 0xbf46, 0xbf47, 0xbf48, 0xbf49,\n  0xbf4a, 0xbf4b, 0xbf4c, 0xbf4d, 0xbf4e, 0xbf4f, 0xbf50, 0xbf51,\n  0xbf52, 0xbf53, 0xbf54, 0xbf55, 0xbf56, 0xbf57, 0xbf58, 0xbf59,\n  0xbf5a, 0xbf5b, 0xbf5c, 0xbf5d, 0xbf5e, 0xbf5f, 0xbf60, 0xbf61,\n  0xbf62, 0xbf63, 0xbf64, 0xbf65, 0xbf66, 0xbf67, 0xbf68, 0xbf69,\n  0xbf6a, 0xbf6b, 0xbf6c, 0xbf6d, 0xbf6e, 0xbf6f, 0xbf70, 0xbf71,\n  0xbf72, 0xbf73, 0xbf74, 0xbf75, 0xbf76, 0xbf77, 0xbf78, 0xbf79,\n  0xbf7a, 0xbf7b, 0xbf7c, 0xbf7d, 0xbf7e, 0xbf80, 0xbf81, 0xbf82,\n  0xbf83, 0xbf84, 0xbf85, 0xbf86, 0xbf87, 0xbf88, 0xbf89, 0xbf8a,\n  0xbf8b, 0xbf8c, 0xbf8d, 0xbf8e, 0xbf8f, 0xbf90, 0xbf91, 0xbf92,\n  0xbf93, 0xbf94, 0xbf95, 0xbf96, 0xbf97, 0xbf98, 0xbf99, 0xbf9a,\n  0xbf9b, 0xbf9c, 0xbf9d, 0xbf9e, 0xbf9f, 0xbfa0, 0xc040, 0xc041,\n  0xc042, 0xc043, 0xc044, 0xc045, 0xc046, 0xc047, 0xc048, 0xc049,\n  0xc04a, 0xc04b, 0xc04c, 0xc04d, 0xc04e, 0xc04f, 0xc050, 0xc051,\n  0xc052, 0xc053, 0xc054, 0xc055, 0xc056, 0xc057, 0xc058, 0xc059,\n  0xc05a, 0xc05b, 0xc05c, 0xc05d, 0xc05e, 0xc05f, 0xc060, 0xc061,\n  0xc062, 0xc063, 0xc064, 0xc065, 0xc066, 0xc067, 0xc068, 0xc069,\n  0xc06a, 0xc06b, 0xc06c, 0xc06d, 0xc06e, 0xc06f, 0xc070, 0xc071,\n  0xc072, 0xc073, 0xc074, 0xc075, 0xc076, 0xc077, 0xc078, 0xc079,\n  0xc07a, 0xc07b, 0xc07c, 0xc07d, 0xc07e, 0xc080, 0xc081, 0xc082,\n  0xc083, 0xc084, 0xc085, 0xc086, 0xc087, 0xc088, 0xc089, 0xc08a,\n  0xc08b, 0xc08c, 0xc08d, 0xc08e, 0xc08f, 0xc090, 0xc091, 0xc092,\n  0xc093, 0xc094, 0xc095, 0xc096, 0xc097, 0xc098, 0xc099, 0xc09a,\n  0xc09b, 0xc09c, 0xc09d, 0xc09e, 0xc09f, 0xc0a0, 0xc140, 0xc141,\n  0xc142, 0xc143, 0xc144, 0xc145, 0xc146, 0xc147, 0xc148, 0xc149,\n  0xc14a, 0xc14b, 0xc14c, 0xc14d, 0xc14e, 0xc14f, 0xc150, 0xc151,\n  0xc152, 0xc153, 0xc154, 0xc155, 0xc156, 0xc157, 0xc158, 0xc159,\n  0xc15a, 0xc15b, 0xc15c, 0xc15d, 0xc15e, 0xc15f, 0xc160, 0xc161,\n  0xc162, 0xc163, 0xc164, 0xc165, 0xc166, 0xc167, 0xc168, 0xc169,\n  0xc16a, 0xc16b, 0xc16c, 0xc16d, 0xc16e, 0xc16f, 0xc170, 0xc171,\n  0xc172, 0xc173, 0xc174, 0xc175, 0xc176, 0xc177, 0xc178, 0xc179,\n  0xc17a, 0xc17b, 0xc17c, 0xc17d, 0xc17e, 0xc180, 0xc181, 0xc182,\n  0xc183, 0xc184, 0xc185, 0xc186, 0xc187, 0xc188, 0xc189, 0xc18a,\n  0xc18b, 0xc18c, 0xc18d, 0xc18e, 0xc18f, 0xc190, 0xc191, 0xc192,\n  0xc193, 0xc194, 0xc195, 0xc196, 0xc197, 0xc198, 0xc199, 0xc19a,\n  0xc19b, 0xc19c, 0xc19d, 0xc19e, 0xc19f, 0xc1a0, 0xc240, 0xc241,\n  0xc242, 0xc243, 0xc244, 0xc245, 0xc246, 0xc247, 0xc248, 0xc249,\n  0xc24a, 0xc24b, 0xc24c, 0xc24d, 0xc24e, 0xc24f, 0xc250, 0xc251,\n  0xc252, 0xc253, 0xc254, 0xc255, 0xc256, 0xc257, 0xc258, 0xc259,\n  0xc25a, 0xc25b, 0xc25c, 0xc25d, 0xc25e, 0xc25f, 0xc260, 0xc261,\n  0xc262, 0xc263, 0xc264, 0xc265, 0xc266, 0xc267, 0xc268, 0xc269,\n  0xc26a, 0xc26b, 0xc26c, 0xc26d, 0xc26e, 0xc26f, 0xc270, 0xc271,\n  0xc272, 0xc273, 0xc274, 0xc275, 0xc276, 0xc277, 0xc278, 0xc279,\n  0xc27a, 0xc27b, 0xc27c, 0xc27d, 0xc27e, 0xc280, 0xc281, 0xc282,\n  0xc283, 0xc284, 0xc285, 0xc286, 0xc287, 0xc288, 0xc289, 0xc28a,\n  0xc28b, 0xc28c, 0xc28d, 0xc28e, 0xc28f, 0xc290, 0xc291, 0xc292,\n  0xc293, 0xc294, 0xc295, 0xc296, 0xc297, 0xc298, 0xc299, 0xc29a,\n  0xc29b, 0xc29c, 0xc29d, 0xc29e, 0xc29f, 0xc2a0, 0xc340, 0xc341,\n  0xc342, 0xc343, 0xc344, 0xc345, 0xc346, 0xc347, 0xc348, 0xc349,\n  0xc34a, 0xc34b, 0xc34c, 0xc34d, 0xc34e, 0xc34f, 0xc350, 0xc351,\n  0xc352, 0xc353, 0xc354, 0xc355, 0xc356, 0xc357, 0xc358, 0xc359,\n  0xc35a, 0xc35b, 0xc35c, 0xc35d, 0xc35e, 0xc35f, 0xc360, 0xc361,\n  0xc362, 0xc363, 0xc364, 0xc365, 0xc366, 0xc367, 0xc368, 0xc369,\n  0xc36a, 0xc36b, 0xc36c, 0xc36d, 0xc36e, 0xc36f, 0xc370, 0xc371,\n  0xc372, 0xc373, 0xc374, 0xc375, 0xc376, 0xc377, 0xc378, 0xc379,\n  0xc37a, 0xc37b, 0xc37c, 0xc37d, 0xc37e, 0xc380, 0xc381, 0xc382,\n  0xc383, 0xc384, 0xc385, 0xc386, 0xc387, 0xc388, 0xc389, 0xc38a,\n  0xc38b, 0xc38c, 0xc38d, 0xc38e, 0xc38f, 0xc390, 0xc391, 0xc392,\n  0xc393, 0xc394, 0xc395, 0xc396, 0xc397, 0xc398, 0xc399, 0xc39a,\n  0xc39b, 0xc39c, 0xc39d, 0xc39e, 0xc39f, 0xc3a0, 0xc440, 0xc441,\n  0xc442, 0xc443, 0xc444, 0xc445, 0xc446, 0xc447, 0xc448, 0xc449,\n  0xc44a, 0xc44b, 0xc44c, 0xc44d, 0xc44e, 0xc44f, 0xc450, 0xc451,\n  0xc452, 0xc453, 0xc454, 0xc455, 0xc456, 0xc457, 0xc458, 0xc459,\n  0xc45a, 0xc45b, 0xc45c, 0xc45d, 0xc45e, 0xc45f, 0xc460, 0xc461,\n  0xc462, 0xc463, 0xc464, 0xc465, 0xc466, 0xc467, 0xc468, 0xc469,\n  0xc46a, 0xc46b, 0xc46c, 0xc46d, 0xc46e, 0xc46f, 0xc470, 0xc471,\n  0xc472, 0xc473, 0xc474, 0xc475, 0xc476, 0xc477, 0xc478, 0xc479,\n  0xc47a, 0xc47b, 0xc47c, 0xc47d, 0xc47e, 0xc480, 0xc481, 0xc482,\n  0xc483, 0xc484, 0xc485, 0xc486, 0xc487, 0xc488, 0xc489, 0xc48a,\n  0xc48b, 0xc48c, 0xc48d, 0xc48e, 0xc48f, 0xc490, 0xc491, 0xc492,\n  0xc493, 0xc494, 0xc495, 0xc496, 0xc497, 0xc498, 0xc499, 0xc49a,\n  0xc49b, 0xc49c, 0xc49d, 0xc49e, 0xc49f, 0xc4a0, 0xc540, 0xc541,\n  0xc542, 0xc543, 0xc544, 0xc545, 0xc546, 0xc547, 0xc548, 0xc549,\n  0xc54a, 0xc54b, 0xc54c, 0xc54d, 0xc54e, 0xc54f, 0xc550, 0xc551,\n  0xc552, 0xc553, 0xc554, 0xc555, 0xc556, 0xc557, 0xc558, 0xc559,\n  0xc55a, 0xc55b, 0xc55c, 0xc55d, 0xc55e, 0xc55f, 0xc560, 0xc561,\n  0xc562, 0xc563, 0xc564, 0xc565, 0xc566, 0xc567, 0xc568, 0xc569,\n  0xc56a, 0xc56b, 0xc56c, 0xc56d, 0xc56e, 0xc56f, 0xc570, 0xc571,\n  0xc572, 0xc573, 0xc574, 0xc575, 0xc576, 0xc577, 0xc578, 0xc579,\n  0xc57a, 0xc57b, 0xc57c, 0xc57d, 0xc57e, 0xc580, 0xc581, 0xc582,\n  0xc583, 0xc584, 0xc585, 0xc586, 0xc587, 0xc588, 0xc589, 0xc58a,\n  0xc58b, 0xc58c, 0xc58d, 0xc58e, 0xc58f, 0xc590, 0xc591, 0xc592,\n  0xc593, 0xc594, 0xc595, 0xc596, 0xc597, 0xc598, 0xc599, 0xc59a,\n  0xc59b, 0xc59c, 0xc59d, 0xc59e, 0xc59f, 0xc5a0, 0xc640, 0xc641,\n  0xc642, 0xc643, 0xc644, 0xc645, 0xc646, 0xc647, 0xc648, 0xc649,\n  0xc64a, 0xc64b, 0xc64c, 0xc64d, 0xc64e, 0xc64f, 0xc650, 0xc651,\n  0xc652, 0xc653, 0xc654, 0xc655, 0xc656, 0xc657, 0xc658, 0xc659,\n  0xc65a, 0xc65b, 0xc65c, 0xc65d, 0xc65e, 0xc65f, 0xc660, 0xc661,\n  0xc662, 0xc663, 0xc664, 0xc665, 0xc666, 0xc667, 0xc668, 0xc669,\n  0xc66a, 0xc66b, 0xc66c, 0xc66d, 0xc66e, 0xc66f, 0xc670, 0xc671,\n  0xc672, 0xc673, 0xc674, 0xc675, 0xc676, 0xc677, 0xc678, 0xc679,\n  0xc67a, 0xc67b, 0xc67c, 0xc67d, 0xc67e, 0xc680, 0xc681, 0xc682,\n  0xc683, 0xc684, 0xc685, 0xc686, 0xc687, 0xc688, 0xc689, 0xc68a,\n  0xc68b, 0xc68c, 0xc68d, 0xc68e, 0xc68f, 0xc690, 0xc691, 0xc692,\n  0xc693, 0xc694, 0xc695, 0xc696, 0xc697, 0xc698, 0xc699, 0xc69a,\n  0xc69b, 0xc69c, 0xc69d, 0xc69e, 0xc69f, 0xc6a0, 0xc740, 0xc741,\n  0xc742, 0xc743, 0xc744, 0xc745, 0xc746, 0xc747, 0xc748, 0xc749,\n  0xc74a, 0xc74b, 0xc74c, 0xc74d, 0xc74e, 0xc74f, 0xc750, 0xc751,\n  0xc752, 0xc753, 0xc754, 0xc755, 0xc756, 0xc757, 0xc758, 0xc759,\n  0xc75a, 0xc75b, 0xc75c, 0xc75d, 0xc75e, 0xc75f, 0xc760, 0xc761,\n  0xc762, 0xc763, 0xc764, 0xc765, 0xc766, 0xc767, 0xc768, 0xc769,\n  0xc76a, 0xc76b, 0xc76c, 0xc76d, 0xc76e, 0xc76f, 0xc770, 0xc771,\n  0xc772, 0xc773, 0xc774, 0xc775, 0xc776, 0xc777, 0xc778, 0xc779,\n  0xc77a, 0xc77b, 0xc77c, 0xc77d, 0xc77e, 0xc780, 0xc781, 0xc782,\n  0xc783, 0xc784, 0xc785, 0xc786, 0xc787, 0xc788, 0xc789, 0xc78a,\n  0xc78b, 0xc78c, 0xc78d, 0xc78e, 0xc78f, 0xc790, 0xc791, 0xc792,\n  0xc793, 0xc794, 0xc795, 0xc796, 0xc797, 0xc798, 0xc799, 0xc79a,\n  0xc79b, 0xc79c, 0xc79d, 0xc79e, 0xc79f, 0xc7a0, 0xc840, 0xc841,\n  0xc842, 0xc843, 0xc844, 0xc845, 0xc846, 0xc847, 0xc848, 0xc849,\n  0xc84a, 0xc84b, 0xc84c, 0xc84d, 0xc84e, 0xc84f, 0xc850, 0xc851,\n  0xc852, 0xc853, 0xc854, 0xc855, 0xc856, 0xc857, 0xc858, 0xc859,\n  0xc85a, 0xc85b, 0xc85c, 0xc85d, 0xc85e, 0xc85f, 0xc860, 0xc861,\n  0xc862, 0xc863, 0xc864, 0xc865, 0xc866, 0xc867, 0xc868, 0xc869,\n  0xc86a, 0xc86b, 0xc86c, 0xc86d, 0xc86e, 0xc86f, 0xc870, 0xc871,\n  0xc872, 0xc873, 0xc874, 0xc875, 0xc876, 0xc877, 0xc878, 0xc879,\n  0xc87a, 0xc87b, 0xc87c, 0xc87d, 0xc87e, 0xc880, 0xc881, 0xc882,\n  0xc883, 0xc884, 0xc885, 0xc886, 0xc887, 0xc888, 0xc889, 0xc88a,\n  0xc88b, 0xc88c, 0xc88d, 0xc88e, 0xc88f, 0xc890, 0xc891, 0xc892,\n  0xc893, 0xc894, 0xc895, 0xc896, 0xc897, 0xc898, 0xc899, 0xc89a,\n  0xc89b, 0xc89c, 0xc89d, 0xc89e, 0xc89f, 0xc8a0, 0xc940, 0xc941,\n  0xc942, 0xc943, 0xc944, 0xc945, 0xc946, 0xc947, 0xc948, 0xc949,\n  0xc94a, 0xc94b, 0xc94c, 0xc94d, 0xc94e, 0xc94f, 0xc950, 0xc951,\n  0xc952, 0xc953, 0xc954, 0xc955, 0xc956, 0xc957, 0xc958, 0xc959,\n  0xc95a, 0xc95b, 0xc95c, 0xc95d, 0xc95e, 0xc95f, 0xc960, 0xc961,\n  0xc962, 0xc963, 0xc964, 0xc965, 0xc966, 0xc967, 0xc968, 0xc969,\n  0xc96a, 0xc96b, 0xc96c, 0xc96d, 0xc96e, 0xc96f, 0xc970, 0xc971,\n  0xc972, 0xc973, 0xc974, 0xc975, 0xc976, 0xc977, 0xc978, 0xc979,\n  0xc97a, 0xc97b, 0xc97c, 0xc97d, 0xc97e, 0xc980, 0xc981, 0xc982,\n  0xc983, 0xc984, 0xc985, 0xc986, 0xc987, 0xc988, 0xc989, 0xc98a,\n  0xc98b, 0xc98c, 0xc98d, 0xc98e, 0xc98f, 0xc990, 0xc991, 0xc992,\n  0xc993, 0xc994, 0xc995, 0xc996, 0xc997, 0xc998, 0xc999, 0xc99a,\n  0xc99b, 0xc99c, 0xc99d, 0xc99e, 0xc99f, 0xc9a0, 0xca40, 0xca41,\n  0xca42, 0xca43, 0xca44, 0xca45, 0xca46, 0xca47, 0xca48, 0xca49,\n  0xca4a, 0xca4b, 0xca4c, 0xca4d, 0xca4e, 0xca4f, 0xca50, 0xca51,\n  0xca52, 0xca53, 0xca54, 0xca55, 0xca56, 0xca57, 0xca58, 0xca59,\n  0xca5a, 0xca5b, 0xca5c, 0xca5d, 0xca5e, 0xca5f, 0xca60, 0xca61,\n  0xca62, 0xca63, 0xca64, 0xca65, 0xca66, 0xca67, 0xca68, 0xca69,\n  0xca6a, 0xca6b, 0xca6c, 0xca6d, 0xca6e, 0xca6f, 0xca70, 0xca71,\n  0xca72, 0xca73, 0xca74, 0xca75, 0xca76, 0xca77, 0xca78, 0xca79,\n  0xca7a, 0xca7b, 0xca7c, 0xca7d, 0xca7e, 0xca80, 0xca81, 0xca82,\n  0xca83, 0xca84, 0xca85, 0xca86, 0xca87, 0xca88, 0xca89, 0xca8a,\n  0xca8b, 0xca8c, 0xca8d, 0xca8e, 0xca8f, 0xca90, 0xca91, 0xca92,\n  0xca93, 0xca94, 0xca95, 0xca96, 0xca97, 0xca98, 0xca99, 0xca9a,\n  0xca9b, 0xca9c, 0xca9d, 0xca9e, 0xca9f, 0xcaa0, 0xcb40, 0xcb41,\n  0xcb42, 0xcb43, 0xcb44, 0xcb45, 0xcb46, 0xcb47, 0xcb48, 0xcb49,\n  0xcb4a, 0xcb4b, 0xcb4c, 0xcb4d, 0xcb4e, 0xcb4f, 0xcb50, 0xcb51,\n  0xcb52, 0xcb53, 0xcb54, 0xcb55, 0xcb56, 0xcb57, 0xcb58, 0xcb59,\n  0xcb5a, 0xcb5b, 0xcb5c, 0xcb5d, 0xcb5e, 0xcb5f, 0xcb60, 0xcb61,\n  0xcb62, 0xcb63, 0xcb64, 0xcb65, 0xcb66, 0xcb67, 0xcb68, 0xcb69,\n  0xcb6a, 0xcb6b, 0xcb6c, 0xcb6d, 0xcb6e, 0xcb6f, 0xcb70, 0xcb71,\n  0xcb72, 0xcb73, 0xcb74, 0xcb75, 0xcb76, 0xcb77, 0xcb78, 0xcb79,\n  0xcb7a, 0xcb7b, 0xcb7c, 0xcb7d, 0xcb7e, 0xcb80, 0xcb81, 0xcb82,\n  0xcb83, 0xcb84, 0xcb85, 0xcb86, 0xcb87, 0xcb88, 0xcb89, 0xcb8a,\n  0xcb8b, 0xcb8c, 0xcb8d, 0xcb8e, 0xcb8f, 0xcb90, 0xcb91, 0xcb92,\n  0xcb93, 0xcb94, 0xcb95, 0xcb96, 0xcb97, 0xcb98, 0xcb99, 0xcb9a,\n  0xcb9b, 0xcb9c, 0xcb9d, 0xcb9e, 0xcb9f, 0xcba0, 0xcc40, 0xcc41,\n  0xcc42, 0xcc43, 0xcc44, 0xcc45, 0xcc46, 0xcc47, 0xcc48, 0xcc49,\n  0xcc4a, 0xcc4b, 0xcc4c, 0xcc4d, 0xcc4e, 0xcc4f, 0xcc50, 0xcc51,\n  0xcc52, 0xcc53, 0xcc54, 0xcc55, 0xcc56, 0xcc57, 0xcc58, 0xcc59,\n  0xcc5a, 0xcc5b, 0xcc5c, 0xcc5d, 0xcc5e, 0xcc5f, 0xcc60, 0xcc61,\n  0xcc62, 0xcc63, 0xcc64, 0xcc65, 0xcc66, 0xcc67, 0xcc68, 0xcc69,\n  0xcc6a, 0xcc6b, 0xcc6c, 0xcc6d, 0xcc6e, 0xcc6f, 0xcc70, 0xcc71,\n  0xcc72, 0xcc73, 0xcc74, 0xcc75, 0xcc76, 0xcc77, 0xcc78, 0xcc79,\n  0xcc7a, 0xcc7b, 0xcc7c, 0xcc7d, 0xcc7e, 0xcc80, 0xcc81, 0xcc82,\n  0xcc83, 0xcc84, 0xcc85, 0xcc86, 0xcc87, 0xcc88, 0xcc89, 0xcc8a,\n  0xcc8b, 0xcc8c, 0xcc8d, 0xcc8e, 0xcc8f, 0xcc90, 0xcc91, 0xcc92,\n  0xcc93, 0xcc94, 0xcc95, 0xcc96, 0xcc97, 0xcc98, 0xcc99, 0xcc9a,\n  0xcc9b, 0xcc9c, 0xcc9d, 0xcc9e, 0xcc9f, 0xcca0, 0xcd40, 0xcd41,\n  0xcd42, 0xcd43, 0xcd44, 0xcd45, 0xcd46, 0xcd47, 0xcd48, 0xcd49,\n  0xcd4a, 0xcd4b, 0xcd4c, 0xcd4d, 0xcd4e, 0xcd4f, 0xcd50, 0xcd51,\n  0xcd52, 0xcd53, 0xcd54, 0xcd55, 0xcd56, 0xcd57, 0xcd58, 0xcd59,\n  0xcd5a, 0xcd5b, 0xcd5c, 0xcd5d, 0xcd5e, 0xcd5f, 0xcd60, 0xcd61,\n  0xcd62, 0xcd63, 0xcd64, 0xcd65, 0xcd66, 0xcd67, 0xcd68, 0xcd69,\n  0xcd6a, 0xcd6b, 0xcd6c, 0xcd6d, 0xcd6e, 0xcd6f, 0xcd70, 0xcd71,\n  0xcd72, 0xcd73, 0xcd74, 0xcd75, 0xcd76, 0xcd77, 0xcd78, 0xcd79,\n  0xcd7a, 0xcd7b, 0xcd7c, 0xcd7d, 0xcd7e, 0xcd80, 0xcd81, 0xcd82,\n  0xcd83, 0xcd84, 0xcd85, 0xcd86, 0xcd87, 0xcd88, 0xcd89, 0xcd8a,\n  0xcd8b, 0xcd8c, 0xcd8d, 0xcd8e, 0xcd8f, 0xcd90, 0xcd91, 0xcd92,\n  0xcd93, 0xcd94, 0xcd95, 0xcd96, 0xcd97, 0xcd98, 0xcd99, 0xcd9a,\n  0xcd9b, 0xcd9c, 0xcd9d, 0xcd9e, 0xcd9f, 0xcda0, 0xce40, 0xce41,\n  0xce42, 0xce43, 0xce44, 0xce45, 0xce46, 0xce47, 0xce48, 0xce49,\n  0xce4a, 0xce4b, 0xce4c, 0xce4d, 0xce4e, 0xce4f, 0xce50, 0xce51,\n  0xce52, 0xce53, 0xce54, 0xce55, 0xce56, 0xce57, 0xce58, 0xce59,\n  0xce5a, 0xce5b, 0xce5c, 0xce5d, 0xce5e, 0xce5f, 0xce60, 0xce61,\n  0xce62, 0xce63, 0xce64, 0xce65, 0xce66, 0xce67, 0xce68, 0xce69,\n  0xce6a, 0xce6b, 0xce6c, 0xce6d, 0xce6e, 0xce6f, 0xce70, 0xce71,\n  0xce72, 0xce73, 0xce74, 0xce75, 0xce76, 0xce77, 0xce78, 0xce79,\n  0xce7a, 0xce7b, 0xce7c, 0xce7d, 0xce7e, 0xce80, 0xce81, 0xce82,\n  0xce83, 0xce84, 0xce85, 0xce86, 0xce87, 0xce88, 0xce89, 0xce8a,\n  0xce8b, 0xce8c, 0xce8d, 0xce8e, 0xce8f, 0xce90, 0xce91, 0xce92,\n  0xce93, 0xce94, 0xce95, 0xce96, 0xce97, 0xce98, 0xce99, 0xce9a,\n  0xce9b, 0xce9c, 0xce9d, 0xce9e, 0xce9f, 0xcea0, 0xcf40, 0xcf41,\n  0xcf42, 0xcf43, 0xcf44, 0xcf45, 0xcf46, 0xcf47, 0xcf48, 0xcf49,\n  0xcf4a, 0xcf4b, 0xcf4c, 0xcf4d, 0xcf4e, 0xcf4f, 0xcf50, 0xcf51,\n  0xcf52, 0xcf53, 0xcf54, 0xcf55, 0xcf56, 0xcf57, 0xcf58, 0xcf59,\n  0xcf5a, 0xcf5b, 0xcf5c, 0xcf5d, 0xcf5e, 0xcf5f, 0xcf60, 0xcf61,\n  0xcf62, 0xcf63, 0xcf64, 0xcf65, 0xcf66, 0xcf67, 0xcf68, 0xcf69,\n  0xcf6a, 0xcf6b, 0xcf6c, 0xcf6d, 0xcf6e, 0xcf6f, 0xcf70, 0xcf71,\n  0xcf72, 0xcf73, 0xcf74, 0xcf75, 0xcf76, 0xcf77, 0xcf78, 0xcf79,\n  0xcf7a, 0xcf7b, 0xcf7c, 0xcf7d, 0xcf7e, 0xcf80, 0xcf81, 0xcf82,\n  0xcf83, 0xcf84, 0xcf85, 0xcf86, 0xcf87, 0xcf88, 0xcf89, 0xcf8a,\n  0xcf8b, 0xcf8c, 0xcf8d, 0xcf8e, 0xcf8f, 0xcf90, 0xcf91, 0xcf92,\n  0xcf93, 0xcf94, 0xcf95, 0xcf96, 0xcf97, 0xcf98, 0xcf99, 0xcf9a,\n  0xcf9b, 0xcf9c, 0xcf9d, 0xcf9e, 0xcf9f, 0xcfa0, 0xd040, 0xd041,\n  0xd042, 0xd043, 0xd044, 0xd045, 0xd046, 0xd047, 0xd048, 0xd049,\n  0xd04a, 0xd04b, 0xd04c, 0xd04d, 0xd04e, 0xd04f, 0xd050, 0xd051,\n  0xd052, 0xd053, 0xd054, 0xd055, 0xd056, 0xd057, 0xd058, 0xd059,\n  0xd05a, 0xd05b, 0xd05c, 0xd05d, 0xd05e, 0xd05f, 0xd060, 0xd061,\n  0xd062, 0xd063, 0xd064, 0xd065, 0xd066, 0xd067, 0xd068, 0xd069,\n  0xd06a, 0xd06b, 0xd06c, 0xd06d, 0xd06e, 0xd06f, 0xd070, 0xd071,\n  0xd072, 0xd073, 0xd074, 0xd075, 0xd076, 0xd077, 0xd078, 0xd079,\n  0xd07a, 0xd07b, 0xd07c, 0xd07d, 0xd07e, 0xd080, 0xd081, 0xd082,\n  0xd083, 0xd084, 0xd085, 0xd086, 0xd087, 0xd088, 0xd089, 0xd08a,\n  0xd08b, 0xd08c, 0xd08d, 0xd08e, 0xd08f, 0xd090, 0xd091, 0xd092,\n  0xd093, 0xd094, 0xd095, 0xd096, 0xd097, 0xd098, 0xd099, 0xd09a,\n  0xd09b, 0xd09c, 0xd09d, 0xd09e, 0xd09f, 0xd0a0, 0xd140, 0xd141,\n  0xd142, 0xd143, 0xd144, 0xd145, 0xd146, 0xd147, 0xd148, 0xd149,\n  0xd14a, 0xd14b, 0xd14c, 0xd14d, 0xd14e, 0xd14f, 0xd150, 0xd151,\n  0xd152, 0xd153, 0xd154, 0xd155, 0xd156, 0xd157, 0xd158, 0xd159,\n  0xd15a, 0xd15b, 0xd15c, 0xd15d, 0xd15e, 0xd15f, 0xd160, 0xd161,\n  0xd162, 0xd163, 0xd164, 0xd165, 0xd166, 0xd167, 0xd168, 0xd169,\n  0xd16a, 0xd16b, 0xd16c, 0xd16d, 0xd16e, 0xd16f, 0xd170, 0xd171,\n  0xd172, 0xd173, 0xd174, 0xd175, 0xd176, 0xd177, 0xd178, 0xd179,\n  0xd17a, 0xd17b, 0xd17c, 0xd17d, 0xd17e, 0xd180, 0xd181, 0xd182,\n  0xd183, 0xd184, 0xd185, 0xd186, 0xd187, 0xd188, 0xd189, 0xd18a,\n  0xd18b, 0xd18c, 0xd18d, 0xd18e, 0xd18f, 0xd190, 0xd191, 0xd192,\n  0xd193, 0xd194, 0xd195, 0xd196, 0xd197, 0xd198, 0xd199, 0xd19a,\n  0xd19b, 0xd19c, 0xd19d, 0xd19e, 0xd19f, 0xd1a0, 0xd240, 0xd241,\n  0xd242, 0xd243, 0xd244, 0xd245, 0xd246, 0xd247, 0xd248, 0xd249,\n  0xd24a, 0xd24b, 0xd24c, 0xd24d, 0xd24e, 0xd24f, 0xd250, 0xd251,\n  0xd252, 0xd253, 0xd254, 0xd255, 0xd256, 0xd257, 0xd258, 0xd259,\n  0xd25a, 0xd25b, 0xd25c, 0xd25d, 0xd25e, 0xd25f, 0xd260, 0xd261,\n  0xd262, 0xd263, 0xd264, 0xd265, 0xd266, 0xd267, 0xd268, 0xd269,\n  0xd26a, 0xd26b, 0xd26c, 0xd26d, 0xd26e, 0xd26f, 0xd270, 0xd271,\n  0xd272, 0xd273, 0xd274, 0xd275, 0xd276, 0xd277, 0xd278, 0xd279,\n  0xd27a, 0xd27b, 0xd27c, 0xd27d, 0xd27e, 0xd280, 0xd281, 0xd282,\n  0xd283, 0xd284, 0xd285, 0xd286, 0xd287, 0xd288, 0xd289, 0xd28a,\n  0xd28b, 0xd28c, 0xd28d, 0xd28e, 0xd28f, 0xd290, 0xd291, 0xd292,\n  0xd293, 0xd294, 0xd295, 0xd296, 0xd297, 0xd298, 0xd299, 0xd29a,\n  0xd29b, 0xd29c, 0xd29d, 0xd29e, 0xd29f, 0xd2a0, 0xd340, 0xd341,\n  0xd342, 0xd343, 0xd344, 0xd345, 0xd346, 0xd347, 0xd348, 0xd349,\n  0xd34a, 0xd34b, 0xd34c, 0xd34d, 0xd34e, 0xd34f, 0xd350, 0xd351,\n  0xd352, 0xd353, 0xd354, 0xd355, 0xd356, 0xd357, 0xd358, 0xd359,\n  0xd35a, 0xd35b, 0xd35c, 0xd35d, 0xd35e, 0xd35f, 0xd360, 0xd361,\n  0xd362, 0xd363, 0xd364, 0xd365, 0xd366, 0xd367, 0xd368, 0xd369,\n  0xd36a, 0xd36b, 0xd36c, 0xd36d, 0xd36e, 0xd36f, 0xd370, 0xd371,\n  0xd372, 0xd373, 0xd374, 0xd375, 0xd376, 0xd377, 0xd378, 0xd379,\n  0xd37a, 0xd37b, 0xd37c, 0xd37d, 0xd37e, 0xd380, 0xd381, 0xd382,\n  0xd383, 0xd384, 0xd385, 0xd386, 0xd387, 0xd388, 0xd389, 0xd38a,\n  0xd38b, 0xd38c, 0xd38d, 0xd38e, 0xd38f, 0xd390, 0xd391, 0xd392,\n  0xd393, 0xd394, 0xd395, 0xd396, 0xd397, 0xd398, 0xd399, 0xd39a,\n  0xd39b, 0xd39c, 0xd39d, 0xd39e, 0xd39f, 0xd3a0, 0xd440, 0xd441,\n  0xd442, 0xd443, 0xd444, 0xd445, 0xd446, 0xd447, 0xd448, 0xd449,\n  0xd44a, 0xd44b, 0xd44c, 0xd44d, 0xd44e, 0xd44f, 0xd450, 0xd451,\n  0xd452, 0xd453, 0xd454, 0xd455, 0xd456, 0xd457, 0xd458, 0xd459,\n  0xd45a, 0xd45b, 0xd45c, 0xd45d, 0xd45e, 0xd45f, 0xd460, 0xd461,\n  0xd462, 0xd463, 0xd464, 0xd465, 0xd466, 0xd467, 0xd468, 0xd469,\n  0xd46a, 0xd46b, 0xd46c, 0xd46d, 0xd46e, 0xd46f, 0xd470, 0xd471,\n  0xd472, 0xd473, 0xd474, 0xd475, 0xd476, 0xd477, 0xd478, 0xd479,\n  0xd47a, 0xd47b, 0xd47c, 0xd47d, 0xd47e, 0xd480, 0xd481, 0xd482,\n  0xd483, 0xd484, 0xd485, 0xd486, 0xd487, 0xd488, 0xd489, 0xd48a,\n  0xd48b, 0xd48c, 0xd48d, 0xd48e, 0xd48f, 0xd490, 0xd491, 0xd492,\n  0xd493, 0xd494, 0xd495, 0xd496, 0xd497, 0xd498, 0xd499, 0xd49a,\n  0xd49b, 0xd49c, 0xd49d, 0xd49e, 0xd49f, 0xd4a0, 0xd540, 0xd541,\n  0xd542, 0xd543, 0xd544, 0xd545, 0xd546, 0xd547, 0xd548, 0xd549,\n  0xd54a, 0xd54b, 0xd54c, 0xd54d, 0xd54e, 0xd54f, 0xd550, 0xd551,\n  0xd552, 0xd553, 0xd554, 0xd555, 0xd556, 0xd557, 0xd558, 0xd559,\n  0xd55a, 0xd55b, 0xd55c, 0xd55d, 0xd55e, 0xd55f, 0xd560, 0xd561,\n  0xd562, 0xd563, 0xd564, 0xd565, 0xd566, 0xd567, 0xd568, 0xd569,\n  0xd56a, 0xd56b, 0xd56c, 0xd56d, 0xd56e, 0xd56f, 0xd570, 0xd571,\n  0xd572, 0xd573, 0xd574, 0xd575, 0xd576, 0xd577, 0xd578, 0xd579,\n  0xd57a, 0xd57b, 0xd57c, 0xd57d, 0xd57e, 0xd580, 0xd581, 0xd582,\n  0xd583, 0xd584, 0xd585, 0xd586, 0xd587, 0xd588, 0xd589, 0xd58a,\n  0xd58b, 0xd58c, 0xd58d, 0xd58e, 0xd58f, 0xd590, 0xd591, 0xd592,\n  0xd593, 0xd594, 0xd595, 0xd596, 0xd597, 0xd598, 0xd599, 0xd59a,\n  0xd59b, 0xd59c, 0xd59d, 0xd59e, 0xd59f, 0xd5a0, 0xd640, 0xd641,\n  0xd642, 0xd643, 0xd644, 0xd645, 0xd646, 0xd647, 0xd648, 0xd649,\n  0xd64a, 0xd64b, 0xd64c, 0xd64d, 0xd64e, 0xd64f, 0xd650, 0xd651,\n  0xd652, 0xd653, 0xd654, 0xd655, 0xd656, 0xd657, 0xd658, 0xd659,\n  0xd65a, 0xd65b, 0xd65c, 0xd65d, 0xd65e, 0xd65f, 0xd660, 0xd661,\n  0xd662, 0xd663, 0xd664, 0xd665, 0xd666, 0xd667, 0xd668, 0xd669,\n  0xd66a, 0xd66b, 0xd66c, 0xd66d, 0xd66e, 0xd66f, 0xd670, 0xd671,\n  0xd672, 0xd673, 0xd674, 0xd675, 0xd676, 0xd677, 0xd678, 0xd679,\n  0xd67a, 0xd67b, 0xd67c, 0xd67d, 0xd67e, 0xd680, 0xd681, 0xd682,\n  0xd683, 0xd684, 0xd685, 0xd686, 0xd687, 0xd688, 0xd689, 0xd68a,\n  0xd68b, 0xd68c, 0xd68d, 0xd68e, 0xd68f, 0xd690, 0xd691, 0xd692,\n  0xd693, 0xd694, 0xd695, 0xd696, 0xd697, 0xd698, 0xd699, 0xd69a,\n  0xd69b, 0xd69c, 0xd69d, 0xd69e, 0xd69f, 0xd6a0, 0xd740, 0xd741,\n  0xd742, 0xd743, 0xd744, 0xd745, 0xd746, 0xd747, 0xd748, 0xd749,\n  0xd74a, 0xd74b, 0xd74c, 0xd74d, 0xd74e, 0xd74f, 0xd750, 0xd751,\n  0xd752, 0xd753, 0xd754, 0xd755, 0xd756, 0xd757, 0xd758, 0xd759,\n  0xd75a, 0xd75b, 0xd75c, 0xd75d, 0xd75e, 0xd75f, 0xd760, 0xd761,\n  0xd762, 0xd763, 0xd764, 0xd765, 0xd766, 0xd767, 0xd768, 0xd769,\n  0xd76a, 0xd76b, 0xd76c, 0xd76d, 0xd76e, 0xd76f, 0xd770, 0xd771,\n  0xd772, 0xd773, 0xd774, 0xd775, 0xd776, 0xd777, 0xd778, 0xd779,\n  0xd77a, 0xd77b, 0xd77c, 0xd77d, 0xd77e, 0xd780, 0xd781, 0xd782,\n  0xd783, 0xd784, 0xd785, 0xd786, 0xd787, 0xd788, 0xd789, 0xd78a,\n  0xd78b, 0xd78c, 0xd78d, 0xd78e, 0xd78f, 0xd790, 0xd791, 0xd792,\n  0xd793, 0xd794, 0xd795, 0xd796, 0xd797, 0xd798, 0xd799, 0xd79a,\n  0xd79b, 0xd79c, 0xd79d, 0xd79e, 0xd79f, 0xd7a0, 0xd840, 0xd841,\n  0xd842, 0xd843, 0xd844, 0xd845, 0xd846, 0xd847, 0xd848, 0xd849,\n  0xd84a, 0xd84b, 0xd84c, 0xd84d, 0xd84e, 0xd84f, 0xd850, 0xd851,\n  0xd852, 0xd853, 0xd854, 0xd855, 0xd856, 0xd857, 0xd858, 0xd859,\n  0xd85a, 0xd85b, 0xd85c, 0xd85d, 0xd85e, 0xd85f, 0xd860, 0xd861,\n  0xd862, 0xd863, 0xd864, 0xd865, 0xd866, 0xd867, 0xd868, 0xd869,\n  0xd86a, 0xd86b, 0xd86c, 0xd86d, 0xd86e, 0xd86f, 0xd870, 0xd871,\n  0xd872, 0xd873, 0xd874, 0xd875, 0xd876, 0xd877, 0xd878, 0xd879,\n  0xd87a, 0xd87b, 0xd87c, 0xd87d, 0xd87e, 0xd880, 0xd881, 0xd882,\n  0xd883, 0xd884, 0xd885, 0xd886, 0xd887, 0xd888, 0xd889, 0xd88a,\n  0xd88b, 0xd88c, 0xd88d, 0xd88e, 0xd88f, 0xd890, 0xd891, 0xd892,\n  0xd893, 0xd894, 0xd895, 0xd896, 0xd897, 0xd898, 0xd899, 0xd89a,\n  0xd89b, 0xd89c, 0xd89d, 0xd89e, 0xd89f, 0xd8a0, 0xd940, 0xd941,\n  0xd942, 0xd943, 0xd944, 0xd945, 0xd946, 0xd947, 0xd948, 0xd949,\n  0xd94a, 0xd94b, 0xd94c, 0xd94d, 0xd94e, 0xd94f, 0xd950, 0xd951,\n  0xd952, 0xd953, 0xd954, 0xd955, 0xd956, 0xd957, 0xd958, 0xd959,\n  0xd95a, 0xd95b, 0xd95c, 0xd95d, 0xd95e, 0xd95f, 0xd960, 0xd961,\n  0xd962, 0xd963, 0xd964, 0xd965, 0xd966, 0xd967, 0xd968, 0xd969,\n  0xd96a, 0xd96b, 0xd96c, 0xd96d, 0xd96e, 0xd96f, 0xd970, 0xd971,\n  0xd972, 0xd973, 0xd974, 0xd975, 0xd976, 0xd977, 0xd978, 0xd979,\n  0xd97a, 0xd97b, 0xd97c, 0xd97d, 0xd97e, 0xd980, 0xd981, 0xd982,\n  0xd983, 0xd984, 0xd985, 0xd986, 0xd987, 0xd988, 0xd989, 0xd98a,\n  0xd98b, 0xd98c, 0xd98d, 0xd98e, 0xd98f, 0xd990, 0xd991, 0xd992,\n  0xd993, 0xd994, 0xd995, 0xd996, 0xd997, 0xd998, 0xd999, 0xd99a,\n  0xd99b, 0xd99c, 0xd99d, 0xd99e, 0xd99f, 0xd9a0, 0xda40, 0xda41,\n  0xda42, 0xda43, 0xda44, 0xda45, 0xda46, 0xda47, 0xda48, 0xda49,\n  0xda4a, 0xda4b, 0xda4c, 0xda4d, 0xda4e, 0xda4f, 0xda50, 0xda51,\n  0xda52, 0xda53, 0xda54, 0xda55, 0xda56, 0xda57, 0xda58, 0xda59,\n  0xda5a, 0xda5b, 0xda5c, 0xda5d, 0xda5e, 0xda5f, 0xda60, 0xda61,\n  0xda62, 0xda63, 0xda64, 0xda65, 0xda66, 0xda67, 0xda68, 0xda69,\n  0xda6a, 0xda6b, 0xda6c, 0xda6d, 0xda6e, 0xda6f, 0xda70, 0xda71,\n  0xda72, 0xda73, 0xda74, 0xda75, 0xda76, 0xda77, 0xda78, 0xda79,\n  0xda7a, 0xda7b, 0xda7c, 0xda7d, 0xda7e, 0xda80, 0xda81, 0xda82,\n  0xda83, 0xda84, 0xda85, 0xda86, 0xda87, 0xda88, 0xda89, 0xda8a,\n  0xda8b, 0xda8c, 0xda8d, 0xda8e, 0xda8f, 0xda90, 0xda91, 0xda92,\n  0xda93, 0xda94, 0xda95, 0xda96, 0xda97, 0xda98, 0xda99, 0xda9a,\n  0xda9b, 0xda9c, 0xda9d, 0xda9e, 0xda9f, 0xdaa0, 0xdb40, 0xdb41,\n  0xdb42, 0xdb43, 0xdb44, 0xdb45, 0xdb46, 0xdb47, 0xdb48, 0xdb49,\n  0xdb4a, 0xdb4b, 0xdb4c, 0xdb4d, 0xdb4e, 0xdb4f, 0xdb50, 0xdb51,\n  0xdb52, 0xdb53, 0xdb54, 0xdb55, 0xdb56, 0xdb57, 0xdb58, 0xdb59,\n  0xdb5a, 0xdb5b, 0xdb5c, 0xdb5d, 0xdb5e, 0xdb5f, 0xdb60, 0xdb61,\n  0xdb62, 0xdb63, 0xdb64, 0xdb65, 0xdb66, 0xdb67, 0xdb68, 0xdb69,\n  0xdb6a, 0xdb6b, 0xdb6c, 0xdb6d, 0xdb6e, 0xdb6f, 0xdb70, 0xdb71,\n  0xdb72, 0xdb73, 0xdb74, 0xdb75, 0xdb76, 0xdb77, 0xdb78, 0xdb79,\n  0xdb7a, 0xdb7b, 0xdb7c, 0xdb7d, 0xdb7e, 0xdb80, 0xdb81, 0xdb82,\n  0xdb83, 0xdb84, 0xdb85, 0xdb86, 0xdb87, 0xdb88, 0xdb89, 0xdb8a,\n  0xdb8b, 0xdb8c, 0xdb8d, 0xdb8e, 0xdb8f, 0xdb90, 0xdb91, 0xdb92,\n  0xdb93, 0xdb94, 0xdb95, 0xdb96, 0xdb97, 0xdb98, 0xdb99, 0xdb9a,\n  0xdb9b, 0xdb9c, 0xdb9d, 0xdb9e, 0xdb9f, 0xdba0, 0xdc40, 0xdc41,\n  0xdc42, 0xdc43, 0xdc44, 0xdc45, 0xdc46, 0xdc47, 0xdc48, 0xdc49,\n  0xdc4a, 0xdc4b, 0xdc4c, 0xdc4d, 0xdc4e, 0xdc4f, 0xdc50, 0xdc51,\n  0xdc52, 0xdc53, 0xdc54, 0xdc55, 0xdc56, 0xdc57, 0xdc58, 0xdc59,\n  0xdc5a, 0xdc5b, 0xdc5c, 0xdc5d, 0xdc5e, 0xdc5f, 0xdc60, 0xdc61,\n  0xdc62, 0xdc63, 0xdc64, 0xdc65, 0xdc66, 0xdc67, 0xdc68, 0xdc69,\n  0xdc6a, 0xdc6b, 0xdc6c, 0xdc6d, 0xdc6e, 0xdc6f, 0xdc70, 0xdc71,\n  0xdc72, 0xdc73, 0xdc74, 0xdc75, 0xdc76, 0xdc77, 0xdc78, 0xdc79,\n  0xdc7a, 0xdc7b, 0xdc7c, 0xdc7d, 0xdc7e, 0xdc80, 0xdc81, 0xdc82,\n  0xdc83, 0xdc84, 0xdc85, 0xdc86, 0xdc87, 0xdc88, 0xdc89, 0xdc8a,\n  0xdc8b, 0xdc8c, 0xdc8d, 0xdc8e, 0xdc8f, 0xdc90, 0xdc91, 0xdc92,\n  0xdc93, 0xdc94, 0xdc95, 0xdc96, 0xdc97, 0xdc98, 0xdc99, 0xdc9a,\n  0xdc9b, 0xdc9c, 0xdc9d, 0xdc9e, 0xdc9f, 0xdca0, 0xdd40, 0xdd41,\n  0xdd42, 0xdd43, 0xdd44, 0xdd45, 0xdd46, 0xdd47, 0xdd48, 0xdd49,\n  0xdd4a, 0xdd4b, 0xdd4c, 0xdd4d, 0xdd4e, 0xdd4f, 0xdd50, 0xdd51,\n  0xdd52, 0xdd53, 0xdd54, 0xdd55, 0xdd56, 0xdd57, 0xdd58, 0xdd59,\n  0xdd5a, 0xdd5b, 0xdd5c, 0xdd5d, 0xdd5e, 0xdd5f, 0xdd60, 0xdd61,\n  0xdd62, 0xdd63, 0xdd64, 0xdd65, 0xdd66, 0xdd67, 0xdd68, 0xdd69,\n  0xdd6a, 0xdd6b, 0xdd6c, 0xdd6d, 0xdd6e, 0xdd6f, 0xdd70, 0xdd71,\n  0xdd72, 0xdd73, 0xdd74, 0xdd75, 0xdd76, 0xdd77, 0xdd78, 0xdd79,\n  0xdd7a, 0xdd7b, 0xdd7c, 0xdd7d, 0xdd7e, 0xdd80, 0xdd81, 0xdd82,\n  0xdd83, 0xdd84, 0xdd85, 0xdd86, 0xdd87, 0xdd88, 0xdd89, 0xdd8a,\n  0xdd8b, 0xdd8c, 0xdd8d, 0xdd8e, 0xdd8f, 0xdd90, 0xdd91, 0xdd92,\n  0xdd93, 0xdd94, 0xdd95, 0xdd96, 0xdd97, 0xdd98, 0xdd99, 0xdd9a,\n  0xdd9b, 0xdd9c, 0xdd9d, 0xdd9e, 0xdd9f, 0xdda0, 0xde40, 0xde41,\n  0xde42, 0xde43, 0xde44, 0xde45, 0xde46, 0xde47, 0xde48, 0xde49,\n  0xde4a, 0xde4b, 0xde4c, 0xde4d, 0xde4e, 0xde4f, 0xde50, 0xde51,\n  0xde52, 0xde53, 0xde54, 0xde55, 0xde56, 0xde57, 0xde58, 0xde59,\n  0xde5a, 0xde5b, 0xde5c, 0xde5d, 0xde5e, 0xde5f, 0xde60, 0xde61,\n  0xde62, 0xde63, 0xde64, 0xde65, 0xde66, 0xde67, 0xde68, 0xde69,\n  0xde6a, 0xde6b, 0xde6c, 0xde6d, 0xde6e, 0xde6f, 0xde70, 0xde71,\n  0xde72, 0xde73, 0xde74, 0xde75, 0xde76, 0xde77, 0xde78, 0xde79,\n  0xde7a, 0xde7b, 0xde7c, 0xde7d, 0xde7e, 0xde80, 0xde81, 0xde82,\n  0xde83, 0xde84, 0xde85, 0xde86, 0xde87, 0xde88, 0xde89, 0xde8a,\n  0xde8b, 0xde8c, 0xde8d, 0xde8e, 0xde8f, 0xde90, 0xde91, 0xde92,\n  0xde93, 0xde94, 0xde95, 0xde96, 0xde97, 0xde98, 0xde99, 0xde9a,\n  0xde9b, 0xde9c, 0xde9d, 0xde9e, 0xde9f, 0xdea0, 0xdf40, 0xdf41,\n  0xdf42, 0xdf43, 0xdf44, 0xdf45, 0xdf46, 0xdf47, 0xdf48, 0xdf49,\n  0xdf4a, 0xdf4b, 0xdf4c, 0xdf4d, 0xdf4e, 0xdf4f, 0xdf50, 0xdf51,\n  0xdf52, 0xdf53, 0xdf54, 0xdf55, 0xdf56, 0xdf57, 0xdf58, 0xdf59,\n  0xdf5a, 0xdf5b, 0xdf5c, 0xdf5d, 0xdf5e, 0xdf5f, 0xdf60, 0xdf61,\n  0xdf62, 0xdf63, 0xdf64, 0xdf65, 0xdf66, 0xdf67, 0xdf68, 0xdf69,\n  0xdf6a, 0xdf6b, 0xdf6c, 0xdf6d, 0xdf6e, 0xdf6f, 0xdf70, 0xdf71,\n  0xdf72, 0xdf73, 0xdf74, 0xdf75, 0xdf76, 0xdf77, 0xdf78, 0xdf79,\n  0xdf7a, 0xdf7b, 0xdf7c, 0xdf7d, 0xdf7e, 0xdf80, 0xdf81, 0xdf82,\n  0xdf83, 0xdf84, 0xdf85, 0xdf86, 0xdf87, 0xdf88, 0xdf89, 0xdf8a,\n  0xdf8b, 0xdf8c, 0xdf8d, 0xdf8e, 0xdf8f, 0xdf90, 0xdf91, 0xdf92,\n  0xdf93, 0xdf94, 0xdf95, 0xdf96, 0xdf97, 0xdf98, 0xdf99, 0xdf9a,\n  0xdf9b, 0xdf9c, 0xdf9d, 0xdf9e, 0xdf9f, 0xdfa0, 0xe040, 0xe041,\n  0xe042, 0xe043, 0xe044, 0xe045, 0xe046, 0xe047, 0xe048, 0xe049,\n  0xe04a, 0xe04b, 0xe04c, 0xe04d, 0xe04e, 0xe04f, 0xe050, 0xe051,\n  0xe052, 0xe053, 0xe054, 0xe055, 0xe056, 0xe057, 0xe058, 0xe059,\n  0xe05a, 0xe05b, 0xe05c, 0xe05d, 0xe05e, 0xe05f, 0xe060, 0xe061,\n  0xe062, 0xe063, 0xe064, 0xe065, 0xe066, 0xe067, 0xe068, 0xe069,\n  0xe06a, 0xe06b, 0xe06c, 0xe06d, 0xe06e, 0xe06f, 0xe070, 0xe071,\n  0xe072, 0xe073, 0xe074, 0xe075, 0xe076, 0xe077, 0xe078, 0xe079,\n  0xe07a, 0xe07b, 0xe07c, 0xe07d, 0xe07e, 0xe080, 0xe081, 0xe082,\n  0xe083, 0xe084, 0xe085, 0xe086, 0xe087, 0xe088, 0xe089, 0xe08a,\n  0xe08b, 0xe08c, 0xe08d, 0xe08e, 0xe08f, 0xe090, 0xe091, 0xe092,\n  0xe093, 0xe094, 0xe095, 0xe096, 0xe097, 0xe098, 0xe099, 0xe09a,\n  0xe09b, 0xe09c, 0xe09d, 0xe09e, 0xe09f, 0xe0a0, 0xe140, 0xe141,\n  0xe142, 0xe143, 0xe144, 0xe145, 0xe146, 0xe147, 0xe148, 0xe149,\n  0xe14a, 0xe14b, 0xe14c, 0xe14d, 0xe14e, 0xe14f, 0xe150, 0xe151,\n  0xe152, 0xe153, 0xe154, 0xe155, 0xe156, 0xe157, 0xe158, 0xe159,\n  0xe15a, 0xe15b, 0xe15c, 0xe15d, 0xe15e, 0xe15f, 0xe160, 0xe161,\n  0xe162, 0xe163, 0xe164, 0xe165, 0xe166, 0xe167, 0xe168, 0xe169,\n  0xe16a, 0xe16b, 0xe16c, 0xe16d, 0xe16e, 0xe16f, 0xe170, 0xe171,\n  0xe172, 0xe173, 0xe174, 0xe175, 0xe176, 0xe177, 0xe178, 0xe179,\n  0xe17a, 0xe17b, 0xe17c, 0xe17d, 0xe17e, 0xe180, 0xe181, 0xe182,\n  0xe183, 0xe184, 0xe185, 0xe186, 0xe187, 0xe188, 0xe189, 0xe18a,\n  0xe18b, 0xe18c, 0xe18d, 0xe18e, 0xe18f, 0xe190, 0xe191, 0xe192,\n  0xe193, 0xe194, 0xe195, 0xe196, 0xe197, 0xe198, 0xe199, 0xe19a,\n  0xe19b, 0xe19c, 0xe19d, 0xe19e, 0xe19f, 0xe1a0, 0xe240, 0xe241,\n  0xe242, 0xe243, 0xe244, 0xe245, 0xe246, 0xe247, 0xe248, 0xe249,\n  0xe24a, 0xe24b, 0xe24c, 0xe24d, 0xe24e, 0xe24f, 0xe250, 0xe251,\n  0xe252, 0xe253, 0xe254, 0xe255, 0xe256, 0xe257, 0xe258, 0xe259,\n  0xe25a, 0xe25b, 0xe25c, 0xe25d, 0xe25e, 0xe25f, 0xe260, 0xe261,\n  0xe262, 0xe263, 0xe264, 0xe265, 0xe266, 0xe267, 0xe268, 0xe269,\n  0xe26a, 0xe26b, 0xe26c, 0xe26d, 0xe26e, 0xe26f, 0xe270, 0xe271,\n  0xe272, 0xe273, 0xe274, 0xe275, 0xe276, 0xe277, 0xe278, 0xe279,\n  0xe27a, 0xe27b, 0xe27c, 0xe27d, 0xe27e, 0xe280, 0xe281, 0xe282,\n  0xe283, 0xe284, 0xe285, 0xe286, 0xe287, 0xe288, 0xe289, 0xe28a,\n  0xe28b, 0xe28c, 0xe28d, 0xe28e, 0xe28f, 0xe290, 0xe291, 0xe292,\n  0xe293, 0xe294, 0xe295, 0xe296, 0xe297, 0xe298, 0xe299, 0xe29a,\n  0xe29b, 0xe29c, 0xe29d, 0xe29e, 0xe29f, 0xe2a0, 0xe340, 0xe341,\n  0xe342, 0xe343, 0xe344, 0xe345, 0xe346, 0xe347, 0xe348, 0xe349,\n  0xe34a, 0xe34b, 0xe34c, 0xe34d, 0xe34e, 0xe34f, 0xe350, 0xe351,\n  0xe352, 0xe353, 0xe354, 0xe355, 0xe356, 0xe357, 0xe358, 0xe359,\n  0xe35a, 0xe35b, 0xe35c, 0xe35d, 0xe35e, 0xe35f, 0xe360, 0xe361,\n  0xe362, 0xe363, 0xe364, 0xe365, 0xe366, 0xe367, 0xe368, 0xe369,\n  0xe36a, 0xe36b, 0xe36c, 0xe36d, 0xe36e, 0xe36f, 0xe370, 0xe371,\n  0xe372, 0xe373, 0xe374, 0xe375, 0xe376, 0xe377, 0xe378, 0xe379,\n  0xe37a, 0xe37b, 0xe37c, 0xe37d, 0xe37e, 0xe380, 0xe381, 0xe382,\n  0xe383, 0xe384, 0xe385, 0xe386, 0xe387, 0xe388, 0xe389, 0xe38a,\n  0xe38b, 0xe38c, 0xe38d, 0xe38e, 0xe38f, 0xe390, 0xe391, 0xe392,\n  0xe393, 0xe394, 0xe395, 0xe396, 0xe397, 0xe398, 0xe399, 0xe39a,\n  0xe39b, 0xe39c, 0xe39d, 0xe39e, 0xe39f, 0xe3a0, 0xe440, 0xe441,\n  0xe442, 0xe443, 0xe444, 0xe445, 0xe446, 0xe447, 0xe448, 0xe449,\n  0xe44a, 0xe44b, 0xe44c, 0xe44d, 0xe44e, 0xe44f, 0xe450, 0xe451,\n  0xe452, 0xe453, 0xe454, 0xe455, 0xe456, 0xe457, 0xe458, 0xe459,\n  0xe45a, 0xe45b, 0xe45c, 0xe45d, 0xe45e, 0xe45f, 0xe460, 0xe461,\n  0xe462, 0xe463, 0xe464, 0xe465, 0xe466, 0xe467, 0xe468, 0xe469,\n  0xe46a, 0xe46b, 0xe46c, 0xe46d, 0xe46e, 0xe46f, 0xe470, 0xe471,\n  0xe472, 0xe473, 0xe474, 0xe475, 0xe476, 0xe477, 0xe478, 0xe479,\n  0xe47a, 0xe47b, 0xe47c, 0xe47d, 0xe47e, 0xe480, 0xe481, 0xe482,\n  0xe483, 0xe484, 0xe485, 0xe486, 0xe487, 0xe488, 0xe489, 0xe48a,\n  0xe48b, 0xe48c, 0xe48d, 0xe48e, 0xe48f, 0xe490, 0xe491, 0xe492,\n  0xe493, 0xe494, 0xe495, 0xe496, 0xe497, 0xe498, 0xe499, 0xe49a,\n  0xe49b, 0xe49c, 0xe49d, 0xe49e, 0xe49f, 0xe4a0, 0xe540, 0xe541,\n  0xe542, 0xe543, 0xe544, 0xe545, 0xe546, 0xe547, 0xe548, 0xe549,\n  0xe54a, 0xe54b, 0xe54c, 0xe54d, 0xe54e, 0xe54f, 0xe550, 0xe551,\n  0xe552, 0xe553, 0xe554, 0xe555, 0xe556, 0xe557, 0xe558, 0xe559,\n  0xe55a, 0xe55b, 0xe55c, 0xe55d, 0xe55e, 0xe55f, 0xe560, 0xe561,\n  0xe562, 0xe563, 0xe564, 0xe565, 0xe566, 0xe567, 0xe568, 0xe569,\n  0xe56a, 0xe56b, 0xe56c, 0xe56d, 0xe56e, 0xe56f, 0xe570, 0xe571,\n  0xe572, 0xe573, 0xe574, 0xe575, 0xe576, 0xe577, 0xe578, 0xe579,\n  0xe57a, 0xe57b, 0xe57c, 0xe57d, 0xe57e, 0xe580, 0xe581, 0xe582,\n  0xe583, 0xe584, 0xe585, 0xe586, 0xe587, 0xe588, 0xe589, 0xe58a,\n  0xe58b, 0xe58c, 0xe58d, 0xe58e, 0xe58f, 0xe590, 0xe591, 0xe592,\n  0xe593, 0xe594, 0xe595, 0xe596, 0xe597, 0xe598, 0xe599, 0xe59a,\n  0xe59b, 0xe59c, 0xe59d, 0xe59e, 0xe59f, 0xe5a0, 0xe640, 0xe641,\n  0xe642, 0xe643, 0xe644, 0xe645, 0xe646, 0xe647, 0xe648, 0xe649,\n  0xe64a, 0xe64b, 0xe64c, 0xe64d, 0xe64e, 0xe64f, 0xe650, 0xe651,\n  0xe652, 0xe653, 0xe654, 0xe655, 0xe656, 0xe657, 0xe658, 0xe659,\n  0xe65a, 0xe65b, 0xe65c, 0xe65d, 0xe65e, 0xe65f, 0xe660, 0xe661,\n  0xe662, 0xe663, 0xe664, 0xe665, 0xe666, 0xe667, 0xe668, 0xe669,\n  0xe66a, 0xe66b, 0xe66c, 0xe66d, 0xe66e, 0xe66f, 0xe670, 0xe671,\n  0xe672, 0xe673, 0xe674, 0xe675, 0xe676, 0xe677, 0xe678, 0xe679,\n  0xe67a, 0xe67b, 0xe67c, 0xe67d, 0xe67e, 0xe680, 0xe681, 0xe682,\n  0xe683, 0xe684, 0xe685, 0xe686, 0xe687, 0xe688, 0xe689, 0xe68a,\n  0xe68b, 0xe68c, 0xe68d, 0xe68e, 0xe68f, 0xe690, 0xe691, 0xe692,\n  0xe693, 0xe694, 0xe695, 0xe696, 0xe697, 0xe698, 0xe699, 0xe69a,\n  0xe69b, 0xe69c, 0xe69d, 0xe69e, 0xe69f, 0xe6a0, 0xe740, 0xe741,\n  0xe742, 0xe743, 0xe744, 0xe745, 0xe746, 0xe747, 0xe748, 0xe749,\n  0xe74a, 0xe74b, 0xe74c, 0xe74d, 0xe74e, 0xe74f, 0xe750, 0xe751,\n  0xe752, 0xe753, 0xe754, 0xe755, 0xe756, 0xe757, 0xe758, 0xe759,\n  0xe75a, 0xe75b, 0xe75c, 0xe75d, 0xe75e, 0xe75f, 0xe760, 0xe761,\n  0xe762, 0xe763, 0xe764, 0xe765, 0xe766, 0xe767, 0xe768, 0xe769,\n  0xe76a, 0xe76b, 0xe76c, 0xe76d, 0xe76e, 0xe76f, 0xe770, 0xe771,\n  0xe772, 0xe773, 0xe774, 0xe775, 0xe776, 0xe777, 0xe778, 0xe779,\n  0xe77a, 0xe77b, 0xe77c, 0xe77d, 0xe77e, 0xe780, 0xe781, 0xe782,\n  0xe783, 0xe784, 0xe785, 0xe786, 0xe787, 0xe788, 0xe789, 0xe78a,\n  0xe78b, 0xe78c, 0xe78d, 0xe78e, 0xe78f, 0xe790, 0xe791, 0xe792,\n  0xe793, 0xe794, 0xe795, 0xe796, 0xe797, 0xe798, 0xe799, 0xe79a,\n  0xe79b, 0xe79c, 0xe79d, 0xe79e, 0xe79f, 0xe7a0, 0xe840, 0xe841,\n  0xe842, 0xe843, 0xe844, 0xe845, 0xe846, 0xe847, 0xe848, 0xe849,\n  0xe84a, 0xe84b, 0xe84c, 0xe84d, 0xe84e, 0xe84f, 0xe850, 0xe851,\n  0xe852, 0xe853, 0xe854, 0xe855, 0xe856, 0xe857, 0xe858, 0xe859,\n  0xe85a, 0xe85b, 0xe85c, 0xe85d, 0xe85e, 0xe85f, 0xe860, 0xe861,\n  0xe862, 0xe863, 0xe864, 0xe865, 0xe866, 0xe867, 0xe868, 0xe869,\n  0xe86a, 0xe86b, 0xe86c, 0xe86d, 0xe86e, 0xe86f, 0xe870, 0xe871,\n  0xe872, 0xe873, 0xe874, 0xe875, 0xe876, 0xe877, 0xe878, 0xe879,\n  0xe87a, 0xe87b, 0xe87c, 0xe87d, 0xe87e, 0xe880, 0xe881, 0xe882,\n  0xe883, 0xe884, 0xe885, 0xe886, 0xe887, 0xe888, 0xe889, 0xe88a,\n  0xe88b, 0xe88c, 0xe88d, 0xe88e, 0xe88f, 0xe890, 0xe891, 0xe892,\n  0xe893, 0xe894, 0xe895, 0xe896, 0xe897, 0xe898, 0xe899, 0xe89a,\n  0xe89b, 0xe89c, 0xe89d, 0xe89e, 0xe89f, 0xe8a0, 0xe940, 0xe941,\n  0xe942, 0xe943, 0xe944, 0xe945, 0xe946, 0xe947, 0xe948, 0xe949,\n  0xe94a, 0xe94b, 0xe94c, 0xe94d, 0xe94e, 0xe94f, 0xe950, 0xe951,\n  0xe952, 0xe953, 0xe954, 0xe955, 0xe956, 0xe957, 0xe958, 0xe959,\n  0xe95a, 0xe95b, 0xe95c, 0xe95d, 0xe95e, 0xe95f, 0xe960, 0xe961,\n  0xe962, 0xe963, 0xe964, 0xe965, 0xe966, 0xe967, 0xe968, 0xe969,\n  0xe96a, 0xe96b, 0xe96c, 0xe96d, 0xe96e, 0xe96f, 0xe970, 0xe971,\n  0xe972, 0xe973, 0xe974, 0xe975, 0xe976, 0xe977, 0xe978, 0xe979,\n  0xe97a, 0xe97b, 0xe97c, 0xe97d, 0xe97e, 0xe980, 0xe981, 0xe982,\n  0xe983, 0xe984, 0xe985, 0xe986, 0xe987, 0xe988, 0xe989, 0xe98a,\n  0xe98b, 0xe98c, 0xe98d, 0xe98e, 0xe98f, 0xe990, 0xe991, 0xe992,\n  0xe993, 0xe994, 0xe995, 0xe996, 0xe997, 0xe998, 0xe999, 0xe99a,\n  0xe99b, 0xe99c, 0xe99d, 0xe99e, 0xe99f, 0xe9a0, 0xea40, 0xea41,\n  0xea42, 0xea43, 0xea44, 0xea45, 0xea46, 0xea47, 0xea48, 0xea49,\n  0xea4a, 0xea4b, 0xea4c, 0xea4d, 0xea4e, 0xea4f, 0xea50, 0xea51,\n  0xea52, 0xea53, 0xea54, 0xea55, 0xea56, 0xea57, 0xea58, 0xea59,\n  0xea5a, 0xea5b, 0xea5c, 0xea5d, 0xea5e, 0xea5f, 0xea60, 0xea61,\n  0xea62, 0xea63, 0xea64, 0xea65, 0xea66, 0xea67, 0xea68, 0xea69,\n  0xea6a, 0xea6b, 0xea6c, 0xea6d, 0xea6e, 0xea6f, 0xea70, 0xea71,\n  0xea72, 0xea73, 0xea74, 0xea75, 0xea76, 0xea77, 0xea78, 0xea79,\n  0xea7a, 0xea7b, 0xea7c, 0xea7d, 0xea7e, 0xea80, 0xea81, 0xea82,\n  0xea83, 0xea84, 0xea85, 0xea86, 0xea87, 0xea88, 0xea89, 0xea8a,\n  0xea8b, 0xea8c, 0xea8d, 0xea8e, 0xea8f, 0xea90, 0xea91, 0xea92,\n  0xea93, 0xea94, 0xea95, 0xea96, 0xea97, 0xea98, 0xea99, 0xea9a,\n  0xea9b, 0xea9c, 0xea9d, 0xea9e, 0xea9f, 0xeaa0, 0xeb40, 0xeb41,\n  0xeb42, 0xeb43, 0xeb44, 0xeb45, 0xeb46, 0xeb47, 0xeb48, 0xeb49,\n  0xeb4a, 0xeb4b, 0xeb4c, 0xeb4d, 0xeb4e, 0xeb4f, 0xeb50, 0xeb51,\n  0xeb52, 0xeb53, 0xeb54, 0xeb55, 0xeb56, 0xeb57, 0xeb58, 0xeb59,\n  0xeb5a, 0xeb5b, 0xeb5c, 0xeb5d, 0xeb5e, 0xeb5f, 0xeb60, 0xeb61,\n  0xeb62, 0xeb63, 0xeb64, 0xeb65, 0xeb66, 0xeb67, 0xeb68, 0xeb69,\n  0xeb6a, 0xeb6b, 0xeb6c, 0xeb6d, 0xeb6e, 0xeb6f, 0xeb70, 0xeb71,\n  0xeb72, 0xeb73, 0xeb74, 0xeb75, 0xeb76, 0xeb77, 0xeb78, 0xeb79,\n  0xeb7a, 0xeb7b, 0xeb7c, 0xeb7d, 0xeb7e, 0xeb80, 0xeb81, 0xeb82,\n  0xeb83, 0xeb84, 0xeb85, 0xeb86, 0xeb87, 0xeb88, 0xeb89, 0xeb8a,\n  0xeb8b, 0xeb8c, 0xeb8d, 0xeb8e, 0xeb8f, 0xeb90, 0xeb91, 0xeb92,\n  0xeb93, 0xeb94, 0xeb95, 0xeb96, 0xeb97, 0xeb98, 0xeb99, 0xeb9a,\n  0xeb9b, 0xeb9c, 0xeb9d, 0xeb9e, 0xeb9f, 0xeba0, 0xec40, 0xec41,\n  0xec42, 0xec43, 0xec44, 0xec45, 0xec46, 0xec47, 0xec48, 0xec49,\n  0xec4a, 0xec4b, 0xec4c, 0xec4d, 0xec4e, 0xec4f, 0xec50, 0xec51,\n  0xec52, 0xec53, 0xec54, 0xec55, 0xec56, 0xec57, 0xec58, 0xec59,\n  0xec5a, 0xec5b, 0xec5c, 0xec5d, 0xec5e, 0xec5f, 0xec60, 0xec61,\n  0xec62, 0xec63, 0xec64, 0xec65, 0xec66, 0xec67, 0xec68, 0xec69,\n  0xec6a, 0xec6b, 0xec6c, 0xec6d, 0xec6e, 0xec6f, 0xec70, 0xec71,\n  0xec72, 0xec73, 0xec74, 0xec75, 0xec76, 0xec77, 0xec78, 0xec79,\n  0xec7a, 0xec7b, 0xec7c, 0xec7d, 0xec7e, 0xec80, 0xec81, 0xec82,\n  0xec83, 0xec84, 0xec85, 0xec86, 0xec87, 0xec88, 0xec89, 0xec8a,\n  0xec8b, 0xec8c, 0xec8d, 0xec8e, 0xec8f, 0xec90, 0xec91, 0xec92,\n  0xec93, 0xec94, 0xec95, 0xec96, 0xec97, 0xec98, 0xec99, 0xec9a,\n  0xec9b, 0xec9c, 0xec9d, 0xec9e, 0xec9f, 0xeca0, 0xed40, 0xed41,\n  0xed42, 0xed43, 0xed44, 0xed45, 0xed46, 0xed47, 0xed48, 0xed49,\n  0xed4a, 0xed4b, 0xed4c, 0xed4d, 0xed4e, 0xed4f, 0xed50, 0xed51,\n  0xed52, 0xed53, 0xed54, 0xed55, 0xed56, 0xed57, 0xed58, 0xed59,\n  0xed5a, 0xed5b, 0xed5c, 0xed5d, 0xed5e, 0xed5f, 0xed60, 0xed61,\n  0xed62, 0xed63, 0xed64, 0xed65, 0xed66, 0xed67, 0xed68, 0xed69,\n  0xed6a, 0xed6b, 0xed6c, 0xed6d, 0xed6e, 0xed6f, 0xed70, 0xed71,\n  0xed72, 0xed73, 0xed74, 0xed75, 0xed76, 0xed77, 0xed78, 0xed79,\n  0xed7a, 0xed7b, 0xed7c, 0xed7d, 0xed7e, 0xed80, 0xed81, 0xed82,\n  0xed83, 0xed84, 0xed85, 0xed86, 0xed87, 0xed88, 0xed89, 0xed8a,\n  0xed8b, 0xed8c, 0xed8d, 0xed8e, 0xed8f, 0xed90, 0xed91, 0xed92,\n  0xed93, 0xed94, 0xed95, 0xed96, 0xed97, 0xed98, 0xed99, 0xed9a,\n  0xed9b, 0xed9c, 0xed9d, 0xed9e, 0xed9f, 0xeda0, 0xee40, 0xee41,\n  0xee42, 0xee43, 0xee44, 0xee45, 0xee46, 0xee47, 0xee48, 0xee49,\n  0xee4a, 0xee4b, 0xee4c, 0xee4d, 0xee4e, 0xee4f, 0xee50, 0xee51,\n  0xee52, 0xee53, 0xee54, 0xee55, 0xee56, 0xee57, 0xee58, 0xee59,\n  0xee5a, 0xee5b, 0xee5c, 0xee5d, 0xee5e, 0xee5f, 0xee60, 0xee61,\n  0xee62, 0xee63, 0xee64, 0xee65, 0xee66, 0xee67, 0xee68, 0xee69,\n  0xee6a, 0xee6b, 0xee6c, 0xee6d, 0xee6e, 0xee6f, 0xee70, 0xee71,\n  0xee72, 0xee73, 0xee74, 0xee75, 0xee76, 0xee77, 0xee78, 0xee79,\n  0xee7a, 0xee7b, 0xee7c, 0xee7d, 0xee7e, 0xee80, 0xee81, 0xee82,\n  0xee83, 0xee84, 0xee85, 0xee86, 0xee87, 0xee88, 0xee89, 0xee8a,\n  0xee8b, 0xee8c, 0xee8d, 0xee8e, 0xee8f, 0xee90, 0xee91, 0xee92,\n  0xee93, 0xee94, 0xee95, 0xee96, 0xee97, 0xee98, 0xee99, 0xee9a,\n  0xee9b, 0xee9c, 0xee9d, 0xee9e, 0xee9f, 0xeea0, 0xef40, 0xef41,\n  0xef42, 0xef43, 0xef44, 0xef45, 0xef46, 0xef47, 0xef48, 0xef49,\n  0xef4a, 0xef4b, 0xef4c, 0xef4d, 0xef4e, 0xef4f, 0xef50, 0xef51,\n  0xef52, 0xef53, 0xef54, 0xef55, 0xef56, 0xef57, 0xef58, 0xef59,\n  0xef5a, 0xef5b, 0xef5c, 0xef5d, 0xef5e, 0xef5f, 0xef60, 0xef61,\n  0xef62, 0xef63, 0xef64, 0xef65, 0xef66, 0xef67, 0xef68, 0xef69,\n  0xef6a, 0xef6b, 0xef6c, 0xef6d, 0xef6e, 0xef6f, 0xef70, 0xef71,\n  0xef72, 0xef73, 0xef74, 0xef75, 0xef76, 0xef77, 0xef78, 0xef79,\n  0xef7a, 0xef7b, 0xef7c, 0xef7d, 0xef7e, 0xef80, 0xef81, 0xef82,\n  0xef83, 0xef84, 0xef85, 0xef86, 0xef87, 0xef88, 0xef89, 0xef8a,\n  0xef8b, 0xef8c, 0xef8d, 0xef8e, 0xef8f, 0xef90, 0xef91, 0xef92,\n  0xef93, 0xef94, 0xef95, 0xef96, 0xef97, 0xef98, 0xef99, 0xef9a,\n  0xef9b, 0xef9c, 0xef9d, 0xef9e, 0xef9f, 0xefa0, 0xf040, 0xf041,\n  0xf042, 0xf043, 0xf044, 0xf045, 0xf046, 0xf047, 0xf048, 0xf049,\n  0xf04a, 0xf04b, 0xf04c, 0xf04d, 0xf04e, 0xf04f, 0xf050, 0xf051,\n  0xf052, 0xf053, 0xf054, 0xf055, 0xf056, 0xf057, 0xf058, 0xf059,\n  0xf05a, 0xf05b, 0xf05c, 0xf05d, 0xf05e, 0xf05f, 0xf060, 0xf061,\n  0xf062, 0xf063, 0xf064, 0xf065, 0xf066, 0xf067, 0xf068, 0xf069,\n  0xf06a, 0xf06b, 0xf06c, 0xf06d, 0xf06e, 0xf06f, 0xf070, 0xf071,\n  0xf072, 0xf073, 0xf074, 0xf075, 0xf076, 0xf077, 0xf078, 0xf079,\n  0xf07a, 0xf07b, 0xf07c, 0xf07d, 0xf07e, 0xf080, 0xf081, 0xf082,\n  0xf083, 0xf084, 0xf085, 0xf086, 0xf087, 0xf088, 0xf089, 0xf08a,\n  0xf08b, 0xf08c, 0xf08d, 0xf08e, 0xf08f, 0xf090, 0xf091, 0xf092,\n  0xf093, 0xf094, 0xf095, 0xf096, 0xf097, 0xf098, 0xf099, 0xf09a,\n  0xf09b, 0xf09c, 0xf09d, 0xf09e, 0xf09f, 0xf0a0, 0xf140, 0xf141,\n  0xf142, 0xf143, 0xf144, 0xf145, 0xf146, 0xf147, 0xf148, 0xf149,\n  0xf14a, 0xf14b, 0xf14c, 0xf14d, 0xf14e, 0xf14f, 0xf150, 0xf151,\n  0xf152, 0xf153, 0xf154, 0xf155, 0xf156, 0xf157, 0xf158, 0xf159,\n  0xf15a, 0xf15b, 0xf15c, 0xf15d, 0xf15e, 0xf15f, 0xf160, 0xf161,\n  0xf162, 0xf163, 0xf164, 0xf165, 0xf166, 0xf167, 0xf168, 0xf169,\n  0xf16a, 0xf16b, 0xf16c, 0xf16d, 0xf16e, 0xf16f, 0xf170, 0xf171,\n  0xf172, 0xf173, 0xf174, 0xf175, 0xf176, 0xf177, 0xf178, 0xf179,\n  0xf17a, 0xf17b, 0xf17c, 0xf17d, 0xf17e, 0xf180, 0xf181, 0xf182,\n  0xf183, 0xf184, 0xf185, 0xf186, 0xf187, 0xf188, 0xf189, 0xf18a,\n  0xf18b, 0xf18c, 0xf18d, 0xf18e, 0xf18f, 0xf190, 0xf191, 0xf192,\n  0xf193, 0xf194, 0xf195, 0xf196, 0xf197, 0xf198, 0xf199, 0xf19a,\n  0xf19b, 0xf19c, 0xf19d, 0xf19e, 0xf19f, 0xf1a0, 0xf240, 0xf241,\n  0xf242, 0xf243, 0xf244, 0xf245, 0xf246, 0xf247, 0xf248, 0xf249,\n  0xf24a, 0xf24b, 0xf24c, 0xf24d, 0xf24e, 0xf24f, 0xf250, 0xf251,\n  0xf252, 0xf253, 0xf254, 0xf255, 0xf256, 0xf257, 0xf258, 0xf259,\n  0xf25a, 0xf25b, 0xf25c, 0xf25d, 0xf25e, 0xf25f, 0xf260, 0xf261,\n  0xf262, 0xf263, 0xf264, 0xf265, 0xf266, 0xf267, 0xf268, 0xf269,\n  0xf26a, 0xf26b, 0xf26c, 0xf26d, 0xf26e, 0xf26f, 0xf270, 0xf271,\n  0xf272, 0xf273, 0xf274, 0xf275, 0xf276, 0xf277, 0xf278, 0xf279,\n  0xf27a, 0xf27b, 0xf27c, 0xf27d, 0xf27e, 0xf280, 0xf281, 0xf282,\n  0xf283, 0xf284, 0xf285, 0xf286, 0xf287, 0xf288, 0xf289, 0xf28a,\n  0xf28b, 0xf28c, 0xf28d, 0xf28e, 0xf28f, 0xf290, 0xf291, 0xf292,\n  0xf293, 0xf294, 0xf295, 0xf296, 0xf297, 0xf298, 0xf299, 0xf29a,\n  0xf29b, 0xf29c, 0xf29d, 0xf29e, 0xf29f, 0xf2a0, 0xf340, 0xf341,\n  0xf342, 0xf343, 0xf344, 0xf345, 0xf346, 0xf347, 0xf348, 0xf349,\n  0xf34a, 0xf34b, 0xf34c, 0xf34d, 0xf34e, 0xf34f, 0xf350, 0xf351,\n  0xf352, 0xf353, 0xf354, 0xf355, 0xf356, 0xf357, 0xf358, 0xf359,\n  0xf35a, 0xf35b, 0xf35c, 0xf35d, 0xf35e, 0xf35f, 0xf360, 0xf361,\n  0xf362, 0xf363, 0xf364, 0xf365, 0xf366, 0xf367, 0xf368, 0xf369,\n  0xf36a, 0xf36b, 0xf36c, 0xf36d, 0xf36e, 0xf36f, 0xf370, 0xf371,\n  0xf372, 0xf373, 0xf374, 0xf375, 0xf376, 0xf377, 0xf378, 0xf379,\n  0xf37a, 0xf37b, 0xf37c, 0xf37d, 0xf37e, 0xf380, 0xf381, 0xf382,\n  0xf383, 0xf384, 0xf385, 0xf386, 0xf387, 0xf388, 0xf389, 0xf38a,\n  0xf38b, 0xf38c, 0xf38d, 0xf38e, 0xf38f, 0xf390, 0xf391, 0xf392,\n  0xf393, 0xf394, 0xf395, 0xf396, 0xf397, 0xf398, 0xf399, 0xf39a,\n  0xf39b, 0xf39c, 0xf39d, 0xf39e, 0xf39f, 0xf3a0, 0xf440, 0xf441,\n  0xf442, 0xf443, 0xf444, 0xf445, 0xf446, 0xf447, 0xf448, 0xf449,\n  0xf44a, 0xf44b, 0xf44c, 0xf44d, 0xf44e, 0xf44f, 0xf450, 0xf451,\n  0xf452, 0xf453, 0xf454, 0xf455, 0xf456, 0xf457, 0xf458, 0xf459,\n  0xf45a, 0xf45b, 0xf45c, 0xf45d, 0xf45e, 0xf45f, 0xf460, 0xf461,\n  0xf462, 0xf463, 0xf464, 0xf465, 0xf466, 0xf467, 0xf468, 0xf469,\n  0xf46a, 0xf46b, 0xf46c, 0xf46d, 0xf46e, 0xf46f, 0xf470, 0xf471,\n  0xf472, 0xf473, 0xf474, 0xf475, 0xf476, 0xf477, 0xf478, 0xf479,\n  0xf47a, 0xf47b, 0xf47c, 0xf47d, 0xf47e, 0xf480, 0xf481, 0xf482,\n  0xf483, 0xf484, 0xf485, 0xf486, 0xf487, 0xf488, 0xf489, 0xf48a,\n  0xf48b, 0xf48c, 0xf48d, 0xf48e, 0xf48f, 0xf490, 0xf491, 0xf492,\n  0xf493, 0xf494, 0xf495, 0xf496, 0xf497, 0xf498, 0xf499, 0xf49a,\n  0xf49b, 0xf49c, 0xf49d, 0xf49e, 0xf49f, 0xf4a0, 0xf540, 0xf541,\n  0xf542, 0xf543, 0xf544, 0xf545, 0xf546, 0xf547, 0xf548, 0xf549,\n  0xf54a, 0xf54b, 0xf54c, 0xf54d, 0xf54e, 0xf54f, 0xf550, 0xf551,\n  0xf552, 0xf553, 0xf554, 0xf555, 0xf556, 0xf557, 0xf558, 0xf559,\n  0xf55a, 0xf55b, 0xf55c, 0xf55d, 0xf55e, 0xf55f, 0xf560, 0xf561,\n  0xf562, 0xf563, 0xf564, 0xf565, 0xf566, 0xf567, 0xf568, 0xf569,\n  0xf56a, 0xf56b, 0xf56c, 0xf56d, 0xf56e, 0xf56f, 0xf570, 0xf571,\n  0xf572, 0xf573, 0xf574, 0xf575, 0xf576, 0xf577, 0xf578, 0xf579,\n  0xf57a, 0xf57b, 0xf57c, 0xf57d, 0xf57e, 0xf580, 0xf581, 0xf582,\n  0xf583, 0xf584, 0xf585, 0xf586, 0xf587, 0xf588, 0xf589, 0xf58a,\n  0xf58b, 0xf58c, 0xf58d, 0xf58e, 0xf58f, 0xf590, 0xf591, 0xf592,\n  0xf593, 0xf594, 0xf595, 0xf596, 0xf597, 0xf598, 0xf599, 0xf59a,\n  0xf59b, 0xf59c, 0xf59d, 0xf59e, 0xf59f, 0xf5a0, 0xf640, 0xf641,\n  0xf642, 0xf643, 0xf644, 0xf645, 0xf646, 0xf647, 0xf648, 0xf649,\n  0xf64a, 0xf64b, 0xf64c, 0xf64d, 0xf64e, 0xf64f, 0xf650, 0xf651,\n  0xf652, 0xf653, 0xf654, 0xf655, 0xf656, 0xf657, 0xf658, 0xf659,\n  0xf65a, 0xf65b, 0xf65c, 0xf65d, 0xf65e, 0xf65f, 0xf660, 0xf661,\n  0xf662, 0xf663, 0xf664, 0xf665, 0xf666, 0xf667, 0xf668, 0xf669,\n  0xf66a, 0xf66b, 0xf66c, 0xf66d, 0xf66e, 0xf66f, 0xf670, 0xf671,\n  0xf672, 0xf673, 0xf674, 0xf675, 0xf676, 0xf677, 0xf678, 0xf679,\n  0xf67a, 0xf67b, 0xf67c, 0xf67d, 0xf67e, 0xf680, 0xf681, 0xf682,\n  0xf683, 0xf684, 0xf685, 0xf686, 0xf687, 0xf688, 0xf689, 0xf68a,\n  0xf68b, 0xf68c, 0xf68d, 0xf68e, 0xf68f, 0xf690, 0xf691, 0xf692,\n  0xf693, 0xf694, 0xf695, 0xf696, 0xf697, 0xf698, 0xf699, 0xf69a,\n  0xf69b, 0xf69c, 0xf69d, 0xf69e, 0xf69f, 0xf6a0, 0xf740, 0xf741,\n  0xf742, 0xf743, 0xf744, 0xf745, 0xf746, 0xf747, 0xf748, 0xf749,\n  0xf74a, 0xf74b, 0xf74c, 0xf74d, 0xf74e, 0xf74f, 0xf750, 0xf751,\n  0xf752, 0xf753, 0xf754, 0xf755, 0xf756, 0xf757, 0xf758, 0xf759,\n  0xf75a, 0xf75b, 0xf75c, 0xf75d, 0xf75e, 0xf75f, 0xf760, 0xf761,\n  0xf762, 0xf763, 0xf764, 0xf765, 0xf766, 0xf767, 0xf768, 0xf769,\n  0xf76a, 0xf76b, 0xf76c, 0xf76d, 0xf76e, 0xf76f, 0xf770, 0xf771,\n  0xf772, 0xf773, 0xf774, 0xf775, 0xf776, 0xf777, 0xf778, 0xf779,\n  0xf77a, 0xf77b, 0xf77c, 0xf77d, 0xf77e, 0xf780, 0xf781, 0xf782,\n  0xf783, 0xf784, 0xf785, 0xf786, 0xf787, 0xf788, 0xf789, 0xf78a,\n  0xf78b, 0xf78c, 0xf78d, 0xf78e, 0xf78f, 0xf790, 0xf791, 0xf792,\n  0xf793, 0xf794, 0xf795, 0xf796, 0xf797, 0xf798, 0xf799, 0xf79a,\n  0xf79b, 0xf79c, 0xf79d, 0xf79e, 0xf79f, 0xf7a0, 0xf840, 0xf841,\n  0xf842, 0xf843, 0xf844, 0xf845, 0xf846, 0xf847, 0xf848, 0xf849,\n  0xf84a, 0xf84b, 0xf84c, 0xf84d, 0xf84e, 0xf84f, 0xf850, 0xf851,\n  0xf852, 0xf853, 0xf854, 0xf855, 0xf856, 0xf857, 0xf858, 0xf859,\n  0xf85a, 0xf85b, 0xf85c, 0xf85d, 0xf85e, 0xf85f, 0xf860, 0xf861,\n  0xf862, 0xf863, 0xf864, 0xf865, 0xf866, 0xf867, 0xf868, 0xf869,\n  0xf86a, 0xf86b, 0xf86c, 0xf86d, 0xf86e, 0xf86f, 0xf870, 0xf871,\n  0xf872, 0xf873, 0xf874, 0xf875, 0xf876, 0xf877, 0xf878, 0xf879,\n  0xf87a, 0xf87b, 0xf87c, 0xf87d, 0xf87e, 0xf880, 0xf881, 0xf882,\n  0xf883, 0xf884, 0xf885, 0xf886, 0xf887, 0xf888, 0xf889, 0xf88a,\n  0xf88b, 0xf88c, 0xf88d, 0xf88e, 0xf88f, 0xf890, 0xf891, 0xf892,\n  0xf893, 0xf894, 0xf895, 0xf896, 0xf897, 0xf898, 0xf899, 0xf89a,\n  0xf89b, 0xf89c, 0xf89d, 0xf89e, 0xf89f, 0xf8a0, 0xf940, 0xf941,\n  0xf942, 0xf943, 0xf944, 0xf945, 0xf946, 0xf947, 0xf948, 0xf949,\n  0xf94a, 0xf94b, 0xf94c, 0xf94d, 0xf94e, 0xf94f, 0xf950, 0xf951,\n  0xf952, 0xf953, 0xf954, 0xf955, 0xf956, 0xf957, 0xf958, 0xf959,\n  0xf95a, 0xf95b, 0xf95c, 0xf95d, 0xf95e, 0xf95f, 0xf960, 0xf961,\n  0xf962, 0xf963, 0xf964, 0xf965, 0xf966, 0xf967, 0xf968, 0xf969,\n  0xf96a, 0xf96b, 0xf96c, 0xf96d, 0xf96e, 0xf96f, 0xf970, 0xf971,\n  0xf972, 0xf973, 0xf974, 0xf975, 0xf976, 0xf977, 0xf978, 0xf979,\n  0xf97a, 0xf97b, 0xf97c, 0xf97d, 0xf97e, 0xf980, 0xf981, 0xf982,\n  0xf983, 0xf984, 0xf985, 0xf986, 0xf987, 0xf988, 0xf989, 0xf98a,\n  0xf98b, 0xf98c, 0xf98d, 0xf98e, 0xf98f, 0xf990, 0xf991, 0xf992,\n  0xf993, 0xf994, 0xf995, 0xf996, 0xf997, 0xf998, 0xf999, 0xf99a,\n  0xf99b, 0xf99c, 0xf99d, 0xf99e, 0xf99f, 0xf9a0, 0xfa40, 0xfa41,\n  0xfa42, 0xfa43, 0xfa44, 0xfa45, 0xfa46, 0xfa47, 0xfa48, 0xfa49,\n  0xfa4a, 0xfa4b, 0xfa4c, 0xfa4d, 0xfa4e, 0xfa4f, 0xfa50, 0xfa51,\n  0xfa52, 0xfa53, 0xfa54, 0xfa55, 0xfa56, 0xfa57, 0xfa58, 0xfa59,\n  0xfa5a, 0xfa5b, 0xfa5c, 0xfa5d, 0xfa5e, 0xfa5f, 0xfa60, 0xfa61,\n  0xfa62, 0xfa63, 0xfa64, 0xfa65, 0xfa66, 0xfa67, 0xfa68, 0xfa69,\n  0xfa6a, 0xfa6b, 0xfa6c, 0xfa6d, 0xfa6e, 0xfa6f, 0xfa70, 0xfa71,\n  0xfa72, 0xfa73, 0xfa74, 0xfa75, 0xfa76, 0xfa77, 0xfa78, 0xfa79,\n  0xfa7a, 0xfa7b, 0xfa7c, 0xfa7d, 0xfa7e, 0xfa80, 0xfa81, 0xfa82,\n  0xfa83, 0xfa84, 0xfa85, 0xfa86, 0xfa87, 0xfa88, 0xfa89, 0xfa8a,\n  0xfa8b, 0xfa8c, 0xfa8d, 0xfa8e, 0xfa8f, 0xfa90, 0xfa91, 0xfa92,\n  0xfa93, 0xfa94, 0xfa95, 0xfa96, 0xfa97, 0xfa98, 0xfa99, 0xfa9a,\n  0xfa9b, 0xfa9c, 0xfa9d, 0xfa9e, 0xfa9f, 0xfaa0, 0xfb40, 0xfb41,\n  0xfb42, 0xfb43, 0xfb44, 0xfb45, 0xfb46, 0xfb47, 0xfb48, 0xfb49,\n  0xfb4a, 0xfb4b, 0xfb4c, 0xfb4d, 0xfb4e, 0xfb4f, 0xfb50, 0xfb51,\n  0xfb52, 0xfb53, 0xfb54, 0xfb55, 0xfb56, 0xfb57, 0xfb58, 0xfb59,\n  0xfb5a, 0xfb5b, 0xfb5c, 0xfb5d, 0xfb5e, 0xfb5f, 0xfb60, 0xfb61,\n  0xfb62, 0xfb63, 0xfb64, 0xfb65, 0xfb66, 0xfb67, 0xfb68, 0xfb69,\n  0xfb6a, 0xfb6b, 0xfb6c, 0xfb6d, 0xfb6e, 0xfb6f, 0xfb70, 0xfb71,\n  0xfb72, 0xfb73, 0xfb74, 0xfb75, 0xfb76, 0xfb77, 0xfb78, 0xfb79,\n  0xfb7a, 0xfb7b, 0xfb7c, 0xfb7d, 0xfb7e, 0xfb80, 0xfb81, 0xfb82,\n  0xfb83, 0xfb84, 0xfb85, 0xfb86, 0xfb87, 0xfb88, 0xfb89, 0xfb8a,\n  0xfb8b, 0xfb8c, 0xfb8d, 0xfb8e, 0xfb8f, 0xfb90, 0xfb91, 0xfb92,\n  0xfb93, 0xfb94, 0xfb95, 0xfb96, 0xfb97, 0xfb98, 0xfb99, 0xfb9a,\n  0xfb9b, 0xfb9c, 0xfb9d, 0xfb9e, 0xfb9f, 0xfba0, 0xfc40, 0xfc41,\n  0xfc42, 0xfc43, 0xfc44, 0xfc45, 0xfc46, 0xfc47, 0xfc48, 0xfc49,\n  0xfc4a, 0xfc4b, 0xfc4c, 0xfc4d, 0xfc4e, 0xfc4f, 0xfc50, 0xfc51,\n  0xfc52, 0xfc53, 0xfc54, 0xfc55, 0xfc56, 0xfc57, 0xfc58, 0xfc59,\n  0xfc5a, 0xfc5b, 0xfc5c, 0xfc5d, 0xfc5e, 0xfc5f, 0xfc60, 0xfc61,\n  0xfc62, 0xfc63, 0xfc64, 0xfc65, 0xfc66, 0xfc67, 0xfc68, 0xfc69,\n  0xfc6a, 0xfc6b, 0xfc6c, 0xfc6d, 0xfc6e, 0xfc6f, 0xfc70, 0xfc71,\n  0xfc72, 0xfc73, 0xfc74, 0xfc75, 0xfc76, 0xfc77, 0xfc78, 0xfc79,\n  0xfc7a, 0xfc7b, 0xfc7c, 0xfc7d, 0xfc7e, 0xfc80, 0xfc81, 0xfc82,\n  0xfc83, 0xfc84, 0xfc85, 0xfc86, 0xfc87, 0xfc88, 0xfc89, 0xfc8a,\n  0xfc8b, 0xfc8c, 0xfc8d, 0xfc8e, 0xfc8f, 0xfc90, 0xfc91, 0xfc92,\n  0xfc93, 0xfc94, 0xfc95, 0xfc96, 0xfc97, 0xfc98, 0xfc99, 0xfc9a,\n  0xfc9b, 0xfc9c, 0xfc9d, 0xfc9e, 0xfc9f, 0xfca0, 0xfd40, 0xfd41,\n  0xfd42, 0xfd43, 0xfd44, 0xfd45, 0xfd46, 0xfd47, 0xfd48, 0xfd49,\n  0xfd4a, 0xfd4b, 0xfd4c, 0xfd4d, 0xfd4e, 0xfd4f, 0xfd50, 0xfd51,\n  0xfd52, 0xfd53, 0xfd54, 0xfd55, 0xfd56, 0xfd57, 0xfd58, 0xfd59,\n  0xfd5a, 0xfd5b, 0xfd5c, 0xfd5d, 0xfd5e, 0xfd5f, 0xfd60, 0xfd61,\n  0xfd62, 0xfd63, 0xfd64, 0xfd65, 0xfd66, 0xfd67, 0xfd68, 0xfd69,\n  0xfd6a, 0xfd6b, 0xfd6c, 0xfd6d, 0xfd6e, 0xfd6f, 0xfd70, 0xfd71,\n  0xfd72, 0xfd73, 0xfd74, 0xfd75, 0xfd76, 0xfd77, 0xfd78, 0xfd79,\n  0xfd7a, 0xfd7b, 0xfd7c, 0xfd7d, 0xfd7e, 0xfd80, 0xfd81, 0xfd82,\n  0xfd83, 0xfd84, 0xfd85, 0xfd86, 0xfd87, 0xfd88, 0xfd89, 0xfd8a,\n  0xfd8b, 0xfd8c, 0xfd8d, 0xfd8e, 0xfd8f, 0xfd90, 0xfd91, 0xfd92,\n  0xfd93, 0xfd94, 0xfd95, 0xfd96, 0xfd97, 0xfd98, 0xfd99, 0xfd9a,\n  0xfd9b, 0xfd9c, 0xfd9d, 0xfd9e, 0xfd9f, 0xfda0, 0xfe40, 0xfe41,\n  0xfe42, 0xfe43, 0xfe44, 0xfe45, 0xfe46, 0xfe47, 0xfe48, 0xfe49,\n  0xfe4a, 0xfe4b, 0xfe4c, 0xfe4d, 0xfe4e, 0xfe4f, 0xa955, 0xa968,\n  0xa969, 0xa96a, 0xa96b, 0xa96c, 0xa96d, 0xa96e, 0xa96f, 0xa970,\n  0xa971, 0xa972, 0xa973, 0xa974, 0xa975, 0xa976, 0xa977, 0xa978,\n  0xa979, 0xa97a, 0xa97b, 0xa97c, 0xa97d, 0xa97e, 0xa980, 0xa981,\n  0xa982, 0xa983, 0xa984, 0xa985, 0xa986, 0xa987, 0xa988, 0xa956,\n  0xa957,\n};\n\nstatic const Summary16 gbkext_inv_uni2indx_page02[14] = {\n  /* 0x0200 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0c00 }, {    2, 0x0200 },\n};\nstatic const Summary16 gbkext_inv_uni2indx_page20[44] = {\n  /* 0x2000 */\n  {    3, 0x0000 }, {    3, 0x0029 }, {    6, 0x0020 }, {    7, 0x0020 },\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 },\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 },\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 },\n  /* 0x2100 */\n  {    8, 0x0220 }, {   10, 0x0000 }, {   10, 0x0002 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0x03c0 }, {   15, 0x0000 }, {   15, 0x0000 },\n  {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0000 },\n  /* 0x2200 */\n  {   15, 0x0000 }, {   15, 0x8020 }, {   17, 0x0008 }, {   18, 0x0000 },\n  {   18, 0x0000 }, {   18, 0x0004 }, {   19, 0x00c0 }, {   21, 0x0000 },\n  {   21, 0x0000 }, {   21, 0x0020 }, {   22, 0x0000 }, {   22, 0x8000 },\n};\nstatic const Summary16 gbkext_inv_uni2indx_page25[17] = {\n  /* 0x2500 */\n  {   23, 0x0000 }, {   23, 0x0000 }, {   23, 0x0000 }, {   23, 0x0000 },\n  {   23, 0x0000 }, {   23, 0xffff }, {   39, 0xffff }, {   55, 0x000f },\n  {   59, 0xfffe }, {   74, 0x0038 }, {   77, 0x0000 }, {   77, 0x3000 },\n  {   79, 0x0000 }, {   79, 0x0000 }, {   79, 0x003c }, {   83, 0x0000 },\n  /* 0x2600 */\n  {   83, 0x0200 },\n};\nstatic const Summary16 gbkext_inv_uni2indx_page30[16] = {\n  /* 0x3000 */\n  {   84, 0x00c0 }, {   86, 0x6004 }, {   89, 0x03fe }, {   98, 0x0000 },\n  {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0000 },\n  {   98, 0x0000 }, {   98, 0x7800 }, {  102, 0x0000 }, {  102, 0x0000 },\n  {  102, 0x0000 }, {  102, 0x0000 }, {  102, 0x0000 }, {  102, 0x7000 },\n};\nstatic const Summary16 gbkext_inv_uni2indx_page32[30] = {\n  /* 0x3200 */\n  {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0002 },\n  {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x0000 },\n  {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x0008 }, {  107, 0x0000 },\n  {  107, 0x0000 }, {  107, 0x0000 }, {  107, 0x0000 }, {  107, 0x0000 },\n  /* 0x3300 */\n  {  107, 0x0000 }, {  107, 0x0000 }, {  107, 0x0000 }, {  107, 0x0000 },\n  {  107, 0x0000 }, {  107, 0x0000 }, {  107, 0x0000 }, {  107, 0x0000 },\n  {  107, 0xc000 }, {  109, 0x7000 }, {  112, 0x0002 }, {  113, 0x0000 },\n  {  113, 0x4010 }, {  115, 0x0026 },\n};\nstatic const Summary16 gbkext_inv_uni2indx_page4e[1307] = {\n  /* 0x4e00 */\n  {  118, 0x8074 }, {  123, 0x8084 }, {  126, 0xc24b }, {  133, 0x10aa },\n  {  138, 0x0457 }, {  144, 0x0ca2 }, {  149, 0xfdbc }, {  161, 0xbff4 },\n  {  173, 0x04bf }, {  181, 0x72c1 }, {  188, 0x8408 }, {  191, 0x73d3 },\n  {  201, 0x9100 }, {  204, 0x1c05 }, {  209, 0xe2c5 }, {  217, 0x5712 },\n  /* 0x4f00 */\n  {  224, 0x19fd }, {  234, 0x307c }, {  241, 0x730a }, {  248, 0xcaaa },\n  {  256, 0x1fb7 }, {  267, 0x0054 }, {  270, 0x6d46 }, {  278, 0x27a6 },\n  {  286, 0x54e7 }, {  295, 0xd76d }, {  306, 0x2816 }, {  311, 0x7fdf },\n  {  325, 0x3bc7 }, {  335, 0x0a7c }, {  342, 0x18b5 }, {  349, 0xbaf5 },\n  /* 0x5000 */\n  {  360, 0x4fff }, {  373, 0x68eb }, {  382, 0x889d }, {  389, 0xabff },\n  {  402, 0x2e77 }, {  412, 0xebdf }, {  425, 0xefdf }, {  439, 0x373f },\n  {  450, 0xdede }, {  462, 0xffff }, {  478, 0xec57 }, {  488, 0xf3fb },\n  {  501, 0x7fff }, {  516, 0xfbbf }, {  530, 0x8f3f }, {  541, 0xf7d7 },\n  /* 0x5100 */\n  {  554, 0xf73f }, {  567, 0xfffb }, {  582, 0xfffd }, {  597, 0x7fff },\n  {  612, 0xd484 }, {  618, 0xeb8d }, {  628, 0x86db }, {  637, 0xc404 },\n  {  641, 0xccd8 }, {  649, 0xe51b }, {  658, 0x67ca }, {  667, 0xc710 },\n  {  673, 0x652e }, {  681, 0xd7fd }, {  694, 0x57ec }, {  704, 0x4096 },\n  /* 0x5200 */\n  {  709, 0x9a30 }, {  715, 0xd039 }, {  722, 0x94ee }, {  731, 0x5036 },\n  {  737, 0xcbf0 }, {  746, 0xafac }, {  756, 0x795d }, {  766, 0x5ffb },\n  {  779, 0xfef9 }, {  792, 0x17f6 }, {  802, 0xc0f0 }, {  808, 0x3ff1 },\n  {  819, 0xf577 }, {  831, 0x7eba }, {  842, 0xffef }, {  857, 0x39fe },\n  /* 0x5300 */\n  {  868, 0x5e9e }, {  878, 0xd91e }, {  887, 0xbbb4 }, {  897, 0x31ff },\n  {  908, 0x3855 }, {  915, 0x2b11 }, {  921, 0x3520 }, {  926, 0x7a44 },\n  {  933, 0xc58b }, {  941, 0x5adf }, {  952, 0xbc93 }, {  961, 0x77bf },\n  {  974, 0xc0f9 }, {  982, 0x742d }, {  990, 0x0086 }, {  993, 0xc410 },\n  /* 0x5400 */\n  {  997, 0x08a5 }, { 1002, 0x1710 }, { 1007, 0x0434 }, { 1011, 0xa4c9 },\n  { 1018, 0xf2b6 }, { 1028, 0xe402 }, { 1033, 0xfeab }, { 1045, 0xc611 },\n  { 1051, 0x27aa }, { 1059, 0xd18a }, { 1066, 0x4027 }, { 1071, 0x56e5 },\n  { 1080, 0x0c28 }, { 1084, 0x0940 }, { 1087, 0x981f }, { 1095, 0x4bf3 },\n  /* 0x5500 */\n  { 1105, 0x7d3d }, { 1116, 0xf7ec }, { 1128, 0x2b62 }, { 1135, 0x2f74 },\n  { 1144, 0xf9a5 }, { 1154, 0xef9e }, { 1166, 0x8b0d }, { 1173, 0xa61f },\n  { 1182, 0x7060 }, { 1187, 0x4ced }, { 1196, 0xff7f }, { 1211, 0x9555 },\n  { 1219, 0xcdcf }, { 1230, 0x4fa1 }, { 1238, 0x6285 }, { 1244, 0x9f53 },\n  /* 0x5600 */\n  { 1254, 0x2cfc }, { 1263, 0x36ff }, { 1275, 0xcf67 }, { 1286, 0x75a9 },\n  { 1295, 0x8fff }, { 1308, 0xec6f }, { 1319, 0xe0eb }, { 1328, 0xe7bd },\n  { 1340, 0x3f9f }, { 1352, 0xfff7 }, { 1367, 0x7ff7 }, { 1381, 0xef7f },\n  { 1395, 0xfbff }, { 1410, 0x136f }, { 1419, 0xd7e8 }, { 1429, 0x19cc },\n  /* 0x5700 */\n  { 1436, 0xf8a7 }, { 1446, 0x6fff }, { 1460, 0x08f7 }, { 1468, 0xb1f6 },\n  { 1478, 0x0b7a }, { 1486, 0x037c }, { 1493, 0x50ac }, { 1499, 0xe737 },\n  { 1510, 0xe783 }, { 1519, 0xf7f3 }, { 1532, 0x9520 }, { 1537, 0xfeeb },\n  { 1550, 0x37f3 }, { 1561, 0x58cb }, { 1569, 0x5fee }, { 1581, 0xd8ef },\n  /* 0x5800 */\n  { 1592, 0xd73a }, { 1602, 0xbddd }, { 1614, 0xfbec }, { 1626, 0xffde },\n  { 1640, 0xcfef }, { 1653, 0xbeed }, { 1665, 0xe7df }, { 1678, 0xbfff },\n  { 1693, 0xfdd4 }, { 1704, 0x39f3 }, { 1714, 0xfcff }, { 1728, 0xefff },\n  { 1743, 0xffdd }, { 1757, 0xffdd }, { 1771, 0xa7ef }, { 1783, 0xfdb6 },\n  /* 0x5900 */\n  { 1795, 0x5f6b }, { 1806, 0x698f }, { 1815, 0x114f }, { 1822, 0xe86d },\n  { 1831, 0x3469 }, { 1838, 0xfa0d }, { 1847, 0xffda }, { 1860, 0xdca7 },\n  { 1870, 0xda21 }, { 1877, 0xbd33 }, { 1887, 0x30c7 }, { 1894, 0xb5fb },\n  { 1906, 0xf3bf }, { 1919, 0xca60 }, { 1925, 0xeed7 }, { 1937, 0x75ff },\n  /* 0x5a00 */\n  { 1950, 0xec05 }, { 1957, 0x6ef5 }, { 1968, 0xfdd6 }, { 1980, 0xefa9 },\n  { 1991, 0xf9be }, { 2003, 0xfbdf }, { 2017, 0xfb7b }, { 2030, 0x7b0f },\n  { 2040, 0xffff }, { 2056, 0xf3fb }, { 2069, 0xfbff }, { 2084, 0xbed3 },\n  { 2095, 0xedf9 }, { 2107, 0xeeab }, { 2118, 0xf5b4 }, { 2128, 0xfffd },\n  /* 0x5b00 */\n  { 2143, 0xfdff }, { 2158, 0xff3f }, { 2172, 0xffff }, { 2188, 0xff6b },\n  { 2201, 0xfffe }, { 2216, 0x4044 }, { 2219, 0xe983 }, { 2227, 0xdbd4 },\n  { 2237, 0x6444 }, { 2242, 0x8057 }, { 2248, 0xf380 }, { 2255, 0x1c86 },\n  { 2261, 0xef0b }, { 2271, 0x1ff2 }, { 2281, 0xbecd }, { 2292, 0x60fe },\n  /* 0x5c00 */\n  { 2301, 0x79ad }, { 2311, 0xca8d }, { 2319, 0xef4b }, { 2330, 0x00ed },\n  { 2336, 0x30d8 }, { 2342, 0xbddc }, { 2353, 0x3f94 }, { 2362, 0x79fd },\n  { 2374, 0xcef9 }, { 2385, 0xe02c }, { 2391, 0xc5f3 }, { 2401, 0x5e55 },\n  { 2410, 0xf7ed }, { 2423, 0xfdfb }, { 2437, 0xda8d }, { 2446, 0xf7fe },\n  /* 0x5d00 */\n  { 2460, 0xbf33 }, { 2471, 0xb7af }, { 2483, 0x9d2f }, { 2493, 0x9fef },\n  { 2506, 0xe37f }, { 2518, 0xd6ff }, { 2531, 0x65ff }, { 2543, 0xffef },\n  { 2558, 0xfffb }, { 2573, 0xddff }, { 2587, 0xffff }, { 2603, 0xff7f },\n  { 2618, 0xdfdf }, { 2632, 0x97ff }, { 2645, 0x3419 }, { 2651, 0x9f61 },\n  /* 0x5e00 */\n  { 2660, 0x6e91 }, { 2668, 0xc08c }, { 2673, 0x9f3f }, { 2685, 0xc67d },\n  { 2695, 0xefcb }, { 2707, 0xb7cf }, { 2719, 0xfff9 }, { 2733, 0x42a3 },\n  { 2739, 0x732e }, { 2748, 0x2904 }, { 2752, 0xdf1e }, { 2763, 0xbc17 },\n  { 2772, 0xf9ff }, { 2786, 0xf7b1 }, { 2797, 0xfaff }, { 2811, 0x3b2f },\n  /* 0x5f00 */\n  { 2821, 0x72e0 }, { 2828, 0x7655 }, { 2837, 0x591e }, { 2845, 0xe9fd },\n  { 2857, 0xfffe }, { 2872, 0xde12 }, { 2880, 0xc9a9 }, { 2888, 0xe574 },\n  { 2897, 0xe048 }, { 2902, 0xec5a }, { 2911, 0x9afd }, { 2922, 0xcf5f },\n  { 2934, 0x4d87 }, { 2942, 0xdc38 }, { 2950, 0x936c }, { 2958, 0x16dd },\n  /* 0x6000 */\n  { 2967, 0x1b80 }, { 2972, 0xc58b }, { 2980, 0x701c }, { 2986, 0x67df },\n  { 2998, 0xd7f1 }, { 3009, 0xd9da }, { 3019, 0x4063 }, { 3024, 0x40b6 },\n  { 3030, 0xcde7 }, { 3041, 0x53ab }, { 3050, 0x46b6 }, { 3058, 0xe6e9 },\n  { 3068, 0xf39f }, { 3080, 0x4add }, { 3089, 0x043e }, { 3095, 0xf9a6 },\n  /* 0x6100 */\n  { 3105, 0x1cbc }, { 3113, 0x7bdf }, { 3126, 0xf726 }, { 3136, 0x7fff },\n  { 3151, 0xaaff }, { 3163, 0xdfdd }, { 3176, 0xfe7b }, { 3189, 0xff5e },\n  { 3202, 0xb7ff }, { 3216, 0xdfef }, { 3230, 0xec7f }, { 3242, 0xbf7f },\n  { 3256, 0xf2fb }, { 3268, 0xffe9 }, { 3281, 0xffbf }, { 3296, 0x7fdf },\n  /* 0x6200 */\n  { 3310, 0x02bf }, { 3318, 0x7218 }, { 3324, 0xabc9 }, { 3333, 0x1f67 },\n  { 3343, 0x8474 }, { 3349, 0xf6e1 }, { 3359, 0x0137 }, { 3365, 0x2db6 },\n  { 3374, 0xf9ee }, { 3386, 0x7211 }, { 3392, 0xe6c8 }, { 3400, 0x45dd },\n  { 3409, 0x880b }, { 3414, 0x6022 }, { 3418, 0x0c13 }, { 3423, 0x0f25 },\n  /* 0x6300 */\n  { 3430, 0xbc79 }, { 3440, 0x13bd }, { 3449, 0x72c0 }, { 3455, 0xd9fb },\n  { 3467, 0x0593 }, { 3473, 0x3fde }, { 3485, 0x9d71 }, { 3494, 0xf33d },\n  { 3505, 0x287a }, { 3512, 0xfeba }, { 3524, 0x8852 }, { 3529, 0xaa66 },\n  { 3537, 0x1daf }, { 3547, 0xbfba }, { 3559, 0xd9f4 }, { 3569, 0x5eab },\n  /* 0x6400 */\n  { 3579, 0x67d8 }, { 3588, 0xa7e6 }, { 3598, 0xcbbc }, { 3608, 0x5bef },\n  { 3620, 0xfa0d }, { 3629, 0xbeeb }, { 3641, 0xdd7f }, { 3654, 0xf8ff },\n  { 3667, 0xff4b }, { 3679, 0xbd99 }, { 3689, 0x8def }, { 3700, 0xea5e },\n  { 3710, 0x9fda }, { 3721, 0xbe7a }, { 3732, 0xffab }, { 3745, 0xffff },\n  /* 0x6500 */\n  { 3761, 0xfdfe }, { 3775, 0xfefb }, { 3789, 0x37df }, { 3801, 0x348f },\n  { 3809, 0x6cdf }, { 3820, 0x959d }, { 3829, 0xe7b3 }, { 3840, 0xff6a },\n  { 3852, 0xe77f }, { 3865, 0x6574 }, { 3873, 0x554d }, { 3881, 0xcdfe },\n  { 3893, 0x2785 }, { 3900, 0xff3b }, { 3913, 0x0c1a }, { 3918, 0xfb3c },\n  /* 0x6600 */\n  { 3929, 0x2bb2 }, { 3937, 0x5dc7 }, { 3947, 0x5e5e }, { 3957, 0xaf8d },\n  { 3967, 0x67f5 }, { 3978, 0x7b03 }, { 3986, 0x3ead }, { 3996, 0xbb2e },\n  { 4006, 0xef6b }, { 4018, 0xdf3d }, { 4030, 0xbe7f }, { 4043, 0xbdef },\n  { 4056, 0xffff }, { 4072, 0xc5ff }, { 4084, 0xfdbf }, { 4098, 0x2d62 },\n  /* 0x6700 */\n  { 4105, 0xd0fe }, { 4115, 0x574e }, { 4124, 0x42bf }, { 4133, 0xdbcd },\n  { 4144, 0x2cb2 }, { 4151, 0x2fb4 }, { 4160, 0x58dc }, { 4168, 0x2f52 },\n  { 4176, 0xf56d }, { 4187, 0x8a5e }, { 4195, 0x5253 }, { 4202, 0xfe16 },\n  { 4212, 0x7fe5 }, { 4224, 0x88e0 }, { 4229, 0x6dda }, { 4239, 0x5fe4 },\n  /* 0x6800 */\n  { 4249, 0x205e }, { 4255, 0xdf35 }, { 4266, 0xf9fd }, { 4279, 0x8c73 },\n  { 4287, 0xa880 }, { 4291, 0xffc4 }, { 4302, 0xf400 }, { 4307, 0xff2f },\n  { 4320, 0x7f95 }, { 4331, 0xff77 }, { 4345, 0x5e3b }, { 4355, 0xffd6 },\n  { 4368, 0xd5fa }, { 4379, 0xfadb }, { 4391, 0xbff6 }, { 4404, 0xe9dc },\n  /* 0x6900 */\n  { 4414, 0x97dd }, { 4425, 0x7ffa }, { 4438, 0xdfee }, { 4451, 0x5dee },\n  { 4462, 0xfffb }, { 4477, 0x9b6f }, { 4488, 0xb7b6 }, { 4499, 0xec7d },\n  { 4510, 0xdc2a }, { 4518, 0xe6cf }, { 4529, 0xd67f }, { 4541, 0xf76d },\n  { 4553, 0xabfd }, { 4565, 0x77ee }, { 4577, 0xdffe }, { 4591, 0x5ffb },\n  /* 0x6a00 */\n  { 4604, 0xfbff }, { 4619, 0x7e7f }, { 4632, 0x7afd }, { 4644, 0x9fdd },\n  { 4656, 0xff6f }, { 4670, 0xf4fe }, { 4682, 0xffdd }, { 4696, 0xedfd },\n  { 4709, 0xbfee }, { 4722, 0xff7c }, { 4735, 0xe5fe }, { 4747, 0xffff },\n  { 4763, 0xffff }, { 4779, 0xffff }, { 4795, 0xffff }, { 4811, 0xffff },\n  /* 0x6b00 */\n  { 4827, 0xffff }, { 4843, 0xffff }, { 4859, 0xff60 }, { 4869, 0xb97b },\n  { 4880, 0xed37 }, { 4891, 0xfdff }, { 4906, 0xfb03 }, { 4915, 0xe5ff },\n  { 4928, 0xd121 }, { 4934, 0xf3b3 }, { 4945, 0xfbfd }, { 4959, 0x7f47 },\n  { 4970, 0x57d9 }, { 4980, 0xf503 }, { 4988, 0x73fd }, { 5000, 0xddd7 },\n  /* 0x6c00 */\n  { 5012, 0x5f1f }, { 5023, 0x7084 }, { 5028, 0x3829 }, { 5034, 0xdeca },\n  { 5044, 0xf938 }, { 5053, 0x074e }, { 5060, 0xf8ec }, { 5070, 0x9daa },\n  { 5079, 0x6c91 }, { 5086, 0x75e6 }, { 5096, 0x9105 }, { 5101, 0x04f1 },\n  { 5107, 0xe9cf }, { 5118, 0xb706 }, { 5126, 0x32d0 }, { 5132, 0x8214 },\n  /* 0x6d00 */\n  { 5136, 0xa76d }, { 5146, 0xb17b }, { 5156, 0xb35f }, { 5167, 0x85d1 },\n  { 5174, 0x1215 }, { 5179, 0xa9e1 }, { 5187, 0x39b6 }, { 5196, 0xee6f },\n  { 5208, 0xacdb }, { 5218, 0x17c5 }, { 5226, 0x3024 }, { 5230, 0x7edb },\n  { 5242, 0xe70e }, { 5251, 0x9cbd }, { 5261, 0xa7ac }, { 5270, 0xe575 },\n  /* 0x6e00 */\n  { 5280, 0x8bdf }, { 5291, 0xdb2c }, { 5300, 0x55c4 }, { 5307, 0xfaeb },\n  { 5319, 0x9fe7 }, { 5331, 0x76a7 }, { 5341, 0xb7ff }, { 5355, 0x3fff },\n  { 5369, 0x7d97 }, { 5380, 0x6efe }, { 5392, 0x7b5b }, { 5403, 0xd329 },\n  { 5411, 0x7779 }, { 5422, 0x3b45 }, { 5430, 0xfc88 }, { 5438, 0xfdef },\n  /* 0x6f00 */\n  { 5452, 0x7dbb }, { 5464, 0xffc7 }, { 5477, 0x51ee }, { 5486, 0xbfb5 },\n  { 5498, 0xd73f }, { 5510, 0xaeff }, { 5523, 0x9fbb }, { 5535, 0xeaeb },\n  { 5546, 0x8cef }, { 5556, 0xefff }, { 5571, 0xff7d }, { 5585, 0xfdb7 },\n  { 5598, 0xfdfa }, { 5611, 0xbff9 }, { 5624, 0x3ffc }, { 5636, 0xffff },\n  /* 0x7000 */\n  { 5652, 0xffff }, { 5668, 0xf3fd }, { 5681, 0xfff7 }, { 5696, 0xfddf },\n  { 5710, 0x6fff }, { 5724, 0xbfff }, { 5739, 0x47ff }, { 5751, 0x2e9e },\n  { 5760, 0xb9de }, { 5771, 0xcd8b }, { 5780, 0x07ff }, { 5791, 0xc475 },\n  { 5799, 0xfaf0 }, { 5809, 0x74ff }, { 5821, 0x442f }, { 5828, 0xdd7f },\n  /* 0x7100 */\n  { 5841, 0xf9ff }, { 5855, 0xf896 }, { 5864, 0x7fbf }, { 5878, 0xffbc },\n  { 5891, 0xabdf }, { 5903, 0xafff }, { 5917, 0xbe2f }, { 5928, 0xdaf3 },\n  { 5939, 0x7bef }, { 5952, 0x7cef }, { 5964, 0xeefe }, { 5977, 0xfdd7 },\n  { 5990, 0xbff7 }, { 6004, 0xffcf }, { 6018, 0xbf5e }, { 6030, 0xfdff },\n  /* 0x7200 */\n  { 6045, 0xffbf }, { 6060, 0xdfff }, { 6075, 0xeaff }, { 6088, 0x541c },\n  { 6094, 0xce7f }, { 6106, 0x55bb }, { 6116, 0x3d39 }, { 6125, 0x39db },\n  { 6135, 0x53ec }, { 6144, 0x7ffb }, { 6158, 0x4fff }, { 6171, 0xfc2e },\n  { 6181, 0x9ee1 }, { 6190, 0xbd7a }, { 6201, 0x0cfc }, { 6209, 0xe260 },\n  /* 0x7300 */\n  { 6215, 0xbbf5 }, { 6227, 0x8717 }, { 6235, 0xa1d9 }, { 6243, 0x3c6d },\n  { 6252, 0xdfff }, { 6267, 0xff7a }, { 6280, 0x4ffe }, { 6292, 0xbfff },\n  { 6307, 0xb56f }, { 6318, 0x77bd }, { 6330, 0x35fb }, { 6341, 0xf372 },\n  { 6351, 0x58fa }, { 6360, 0xbdfc }, { 6372, 0xdd5e }, { 6383, 0xfffb },\n  /* 0x7400 */\n  { 6398, 0x7997 }, { 6408, 0xf3fe }, { 6421, 0xaa9b }, { 6430, 0xef86 },\n  { 6440, 0xfffd }, { 6455, 0x215f }, { 6463, 0xdfff }, { 6478, 0xbf3e },\n  { 6490, 0xb774 }, { 6500, 0xaffe }, { 6513, 0xfc7f }, { 6526, 0xfbff },\n  { 6541, 0xffff }, { 6557, 0xaffb }, { 6570, 0x3fa2 }, { 6579, 0x7f2f },\n  /* 0x7500 */\n  { 6591, 0x5fef }, { 6604, 0x68f5 }, { 6613, 0x44df }, { 6622, 0xb250 },\n  { 6628, 0x26de }, { 6637, 0xe1ef }, { 6648, 0xfb9f }, { 6661, 0x7ceb },\n  { 6672, 0x77b7 }, { 6684, 0x5929 }, { 6691, 0x27c4 }, { 6698, 0x8cc0 },\n  { 6703, 0xd843 }, { 6710, 0xb68b }, { 6719, 0xf223 }, { 6727, 0x6dec },\n  /* 0x7600 */\n  { 6737, 0xebd4 }, { 6747, 0x745e }, { 6756, 0xd18a }, { 6763, 0x2ec6 },\n  { 6771, 0xcff6 }, { 6783, 0xafaf }, { 6795, 0x77f7 }, { 6808, 0x96ff },\n  { 6820, 0xb62b }, { 6829, 0xfdb5 }, { 6841, 0xbfef }, { 6855, 0x7fe9 },\n  { 6867, 0x1a9b }, { 6875, 0x7628 }, { 6882, 0x3fdf }, { 6895, 0xace9 },\n  /* 0x7700 */\n  { 6904, 0xd46d }, { 6913, 0x79ff }, { 6926, 0x5cba }, { 6935, 0xea1f },\n  { 6945, 0xff74 }, { 6957, 0xf3fc }, { 6969, 0xe691 }, { 6977, 0x1dff },\n  { 6989, 0x8fce }, { 6999, 0x7ff9 }, { 7012, 0xe95a }, { 7021, 0x57d6 },\n  { 7031, 0xdfff }, { 7046, 0xe77f }, { 7059, 0x8553 }, { 7066, 0x1eb7 },\n  /* 0x7800 */\n  { 7076, 0xcdf8 }, { 7086, 0x4a29 }, { 7092, 0xcd17 }, { 7101, 0xa06e },\n  { 7108, 0xaf5e }, { 7119, 0xdf1a }, { 7129, 0x83ff }, { 7140, 0xef7f },\n  { 7154, 0x8d7f }, { 7165, 0x6275 }, { 7173, 0xff55 }, { 7185, 0xbde0 },\n  { 7194, 0xf1dd }, { 7205, 0xfdce }, { 7217, 0xeeff }, { 7231, 0xfb6b },\n  /* 0x7900 */\n  { 7243, 0xffdd }, { 7257, 0xbff7 }, { 7271, 0xffef }, { 7286, 0xa3ef },\n  { 7297, 0xfcbc }, { 7308, 0x0337 }, { 7315, 0x5e5a }, { 7324, 0xfa7f },\n  { 7337, 0x7bcc }, { 7347, 0xfbff }, { 7362, 0xff7f }, { 7377, 0x91f7 },\n  { 7387, 0xd5b4 }, { 7396, 0x7ed9 }, { 7407, 0x5527 }, { 7415, 0xd6fe },\n  /* 0x7a00 */\n  { 7427, 0x97b2 }, { 7436, 0xbb6f }, { 7448, 0xfff6 }, { 7462, 0x4577 },\n  { 7471, 0xffbf }, { 7486, 0xff7d }, { 7500, 0xffff }, { 7516, 0x782e },\n  { 7524, 0xdea4 }, { 7533, 0x4e19 }, { 7540, 0xce9e }, { 7550, 0x7ff7 },\n  { 7564, 0xf7ff }, { 7579, 0x3dbf }, { 7591, 0x5f96 }, { 7601, 0x59ff },\n  /* 0x7b00 */\n  { 7613, 0x72a7 }, { 7622, 0xb5cd }, { 7632, 0xa28e }, { 7639, 0xaaf5 },\n  { 7649, 0x655f }, { 7659, 0xd2a8 }, { 7666, 0xbffa }, { 7679, 0xb559 },\n  { 7688, 0xdfde }, { 7701, 0xcf4e }, { 7711, 0xc039 }, { 7717, 0xfeed },\n  { 7730, 0xef3d }, { 7742, 0xd9f5 }, { 7753, 0xbb9d }, { 7764, 0xaf7d },\n  /* 0x7c00 */\n  { 7776, 0x677f }, { 7788, 0x7fbf }, { 7802, 0xfb3f }, { 7815, 0x7eff },\n  { 7829, 0xdffc }, { 7842, 0xffff }, { 7858, 0xffff }, { 7874, 0xc7e7 },\n  { 7885, 0xfdff }, { 7900, 0x0e59 }, { 7907, 0xbbcb }, { 7918, 0x8df1 },\n  { 7927, 0xca5d }, { 7936, 0x6d1f }, { 7946, 0x7efe }, { 7959, 0xf6ff },\n  /* 0x7d00 */\n  { 7973, 0xfbff }, { 7988, 0xffff }, { 8004, 0x777a }, { 8015, 0xffff },\n  { 8031, 0xffff }, { 8047, 0xffff }, { 8063, 0xbfff }, { 8078, 0xff7f },\n  { 8093, 0xffff }, { 8109, 0xffff }, { 8125, 0xbfbf }, { 8139, 0xffff },\n  { 8155, 0xffff }, { 8171, 0xffff }, { 8187, 0xffff }, { 8203, 0xffff },\n  /* 0x7e00 */\n  { 8219, 0xffff }, { 8235, 0xffff }, { 8251, 0xffff }, { 8267, 0xf7ff },\n  { 8282, 0xff7d }, { 8296, 0xffff }, { 8312, 0xffff }, { 8328, 0xffff },\n  { 8344, 0xfffb }, { 8359, 0x77ff }, { 8373, 0x4000 }, { 8374, 0x1810 },\n  { 8377, 0x0000 }, { 8377, 0x0040 }, { 8378, 0x1010 }, { 8380, 0x0200 },\n  /* 0x7f00 */\n  { 8381, 0x0400 }, { 8382, 0x4001 }, { 8384, 0x0000 }, { 8384, 0xfa80 },\n  { 8391, 0xffcb }, { 8404, 0x7a4c }, { 8412, 0xb8f9 }, { 8422, 0xbde9 },\n  { 8433, 0xabfd }, { 8445, 0x1bef }, { 8456, 0x7f6d }, { 8468, 0x4cfa },\n  { 8477, 0xabdd }, { 8488, 0x7ecf }, { 8500, 0xbd9c }, { 8510, 0xe7f4 },\n  /* 0x8000 */\n  { 8521, 0xc784 }, { 8528, 0xec0a }, { 8535, 0xf81a }, { 8543, 0x5615 },\n  { 8550, 0xc3b3 }, { 8559, 0xfaeb }, { 8571, 0xf9ff }, { 8585, 0x7ffd },\n  { 8599, 0xe526 }, { 8607, 0x42b7 }, { 8615, 0x11c8 }, { 8620, 0x0b69 },\n  { 8627, 0x8fa0 }, { 8634, 0x813f }, { 8642, 0x404d }, { 8647, 0xcaa0 },\n  /* 0x8100 */\n  { 8653, 0x19bb }, { 8662, 0xbaa0 }, { 8669, 0x6fff }, { 8683, 0xbeb9 },\n  { 8694, 0xe2bf }, { 8705, 0xf9c4 }, { 8714, 0x9d5e }, { 8724, 0x01ec },\n  { 8730, 0x7afa }, { 8741, 0xc6fd }, { 8752, 0xfab7 }, { 8764, 0xf3f7 },\n  { 8777, 0xebb0 }, { 8786, 0xffff }, { 8802, 0xcb77 }, { 8813, 0xa7e7 },\n  /* 0x8200 */\n  { 8824, 0xcf88 }, { 8832, 0x27ea }, { 8841, 0x42f1 }, { 8848, 0xb404 },\n  { 8853, 0x756f }, { 8864, 0x7aff }, { 8877, 0x3eff }, { 8890, 0x19e2 },\n  { 8897, 0x12eb }, { 8905, 0x4c79 }, { 8913, 0x008d }, { 8917, 0x9c64 },\n  { 8924, 0x026d }, { 8930, 0x2641 }, { 8935, 0x7784 }, { 8943, 0xf56d },\n  /* 0x8300 */\n  { 8954, 0x2c01 }, { 8958, 0xe34d }, { 8967, 0x467f }, { 8977, 0xe885 },\n  { 8984, 0x7d36 }, { 8994, 0x23e8 }, { 9001, 0x0004 }, { 9002, 0xc67f },\n  { 9013, 0xbd9f }, { 9025, 0xa6f3 }, { 9035, 0xf0fe }, { 9046, 0xc820 },\n  { 9050, 0x6b5c }, { 9059, 0x4eaf }, { 9069, 0xf9dc }, { 9080, 0xdcf8 },\n  /* 0x8400 */\n  { 9090, 0x07a5 }, { 9097, 0xcefd }, { 9109, 0xfe0f }, { 9120, 0xcefd },\n  { 9132, 0xffbf }, { 9147, 0xe17d }, { 9157, 0xc5f5 }, { 9167, 0xfa95 },\n  { 9177, 0xa47b }, { 9186, 0xed7f }, { 9199, 0x7ffd }, { 9213, 0x58eb },\n  { 9222, 0xd9ed }, { 9233, 0x5fb4 }, { 9243, 0xef96 }, { 9254, 0x6ffe },\n  /* 0x8500 */\n  { 9267, 0xefff }, { 9282, 0x7b75 }, { 9293, 0xe7fd }, { 9306, 0xc07f },\n  { 9315, 0xf8f7 }, { 9327, 0xbdbf }, { 9340, 0xfeef }, { 9354, 0xb1eb },\n  { 9364, 0x7f4f }, { 9376, 0xe7ff }, { 9390, 0x3aef }, { 9401, 0xfd7e },\n  { 9414, 0x7dfd }, { 9427, 0xefd6 }, { 9439, 0xfdef }, { 9453, 0x77ff },\n  /* 0x8600 */\n  { 9467, 0xffdf }, { 9482, 0xffbd }, { 9496, 0xfd7f }, { 9510, 0xeeff },\n  { 9524, 0x1fff }, { 9537, 0xbbec }, { 9548, 0xa7fb }, { 9560, 0x01fd },\n  { 9568, 0xc3f8 }, { 9577, 0xcfd7 }, { 9589, 0x6867 }, { 9597, 0xfb8c },\n  { 9607, 0x312e }, { 9614, 0x34ec }, { 9622, 0x9def }, { 9634, 0xbce0 },\n  /* 0x8700 */\n  { 9642, 0xd872 }, { 9650, 0xaa53 }, { 9658, 0xbdd1 }, { 9668, 0x376d },\n  { 9678, 0xac7f }, { 9689, 0xfd77 }, { 9702, 0xbfc6 }, { 9713, 0x87ae },\n  { 9722, 0xd6d3 }, { 9732, 0x7f77 }, { 9745, 0x46ff }, { 9756, 0xdbd7 },\n  { 9768, 0xf3be }, { 9780, 0xf7f1 }, { 9792, 0xbbde }, { 9804, 0xbdff },\n  /* 0x8800 */\n  { 9818, 0xfbf7 }, { 9832, 0xf797 }, { 9844, 0xfff9 }, { 9858, 0xedfb },\n  { 9871, 0xcfce }, { 9882, 0xfd6f }, { 9895, 0xa4c1 }, { 9901, 0x1f7a },\n  { 9911, 0xd6c9 }, { 9920, 0xefbb }, { 9933, 0xd7eb }, { 9945, 0xef7d },\n  { 9958, 0xbd99 }, { 9968, 0x7ccb }, { 9978, 0xfec3 }, { 9989, 0xace4 },\n  /* 0x8900 */\n  { 9997, 0xfbfb }, { 10011, 0xf1f2 }, { 10021, 0xf3dd }, { 10033, 0xffae },\n  { 10046, 0xffed }, { 10060, 0x3fff }, { 10074, 0xffbf }, { 10089, 0x77ff },\n  { 10103, 0xffb5 }, { 10116, 0xffff }, { 10132, 0xffff }, { 10148, 0xffff },\n  { 10164, 0x2009 }, { 10167, 0xabb8 }, { 10176, 0x7797 }, { 10187, 0xfff7 },\n  /* 0x8a00 */\n  { 10202, 0xff7e }, { 10216, 0xffff }, { 10232, 0xffff }, { 10248, 0xbfff },\n  { 10263, 0xfeff }, { 10278, 0xffff }, { 10294, 0xffff }, { 10310, 0xfdff },\n  { 10325, 0xf9ff }, { 10339, 0xfff7 }, { 10354, 0xffff }, { 10370, 0xffff },\n  { 10386, 0xffff }, { 10402, 0xffff }, { 10418, 0xffff }, { 10434, 0xffff },\n  /* 0x8b00 */\n  { 10450, 0xff7f }, { 10465, 0xffff }, { 10481, 0xffbf }, { 10496, 0xffff },\n  { 10512, 0xffff }, { 10528, 0xffff }, { 10544, 0xefbf }, { 10558, 0xffff },\n  { 10574, 0xffff }, { 10590, 0xffff }, { 10606, 0x1000 }, { 10607, 0x0802 },\n  { 10609, 0x0080 }, { 10610, 0x0001 }, { 10611, 0x0400 }, { 10612, 0x0000 },\n  /* 0x8c00 */\n  { 10612, 0x0200 }, { 10613, 0x4000 }, { 10614, 0x0000 }, { 10614, 0xff00 },\n  { 10622, 0xed3d }, { 10633, 0xfbdf }, { 10647, 0xf3f9 }, { 10659, 0xf8f7 },\n  { 10671, 0xe9db }, { 10682, 0xfeef }, { 10696, 0xffff }, { 10712, 0xffff },\n  { 10728, 0xffff }, { 10744, 0xffff }, { 10760, 0xffff }, { 10776, 0xffff },\n  /* 0x8d00 */\n  { 10792, 0xffff }, { 10808, 0x1fff }, { 10821, 0x0001 }, { 10822, 0x0000 },\n  { 10822, 0x0000 }, { 10822, 0x8086 }, { 10826, 0xd720 }, { 10833, 0xff06 },\n  { 10843, 0xf3cd }, { 10854, 0x7fed }, { 10867, 0xfff7 }, { 10882, 0x2ac5 },\n  { 10889, 0x27a7 }, { 10898, 0x133d }, { 10906, 0x62e7 }, { 10915, 0xd057 },\n  /* 0x8e00 */\n  { 10923, 0x69df }, { 10934, 0x1fef }, { 10946, 0x29f3 }, { 10955, 0xd9dd },\n  { 10966, 0xf068 }, { 10973, 0xfdf9 }, { 10986, 0x4dbf }, { 10997, 0x6faa },\n  { 11007, 0x7f5d }, { 11019, 0xafee }, { 11031, 0x67ff }, { 11044, 0xfbfb },\n  { 11058, 0xbfff }, { 11073, 0xffff }, { 11089, 0xffff }, { 11105, 0xffff },\n  /* 0x8f00 */\n  { 11121, 0xffff }, { 11137, 0xffff }, { 11153, 0xffff }, { 11169, 0xffff },\n  { 11185, 0xffff }, { 11201, 0xffff }, { 11217, 0x043f }, { 11224, 0x0000 },\n  { 11224, 0x1001 }, { 11226, 0x2004 }, { 11228, 0xf4f7 }, { 11240, 0x9dbc },\n  { 11250, 0xbe49 }, { 11259, 0x04c4 }, { 11263, 0x908b }, { 11269, 0xdc76 },\n  /* 0x9000 */\n  { 11279, 0x5180 }, { 11283, 0x1328 }, { 11288, 0x1fb8 }, { 11297, 0xa69f },\n  { 11307, 0x5f69 }, { 11317, 0xf670 }, { 11326, 0x9ed3 }, { 11336, 0x5fcf },\n  { 11348, 0xf6f2 }, { 11359, 0xd555 }, { 11368, 0x2bb1 }, { 11376, 0xb084 },\n  { 11381, 0x3b4d }, { 11390, 0xc774 }, { 11399, 0x5639 }, { 11407, 0x9eef },\n  /* 0x9100 */\n  { 11419, 0xffeb }, { 11433, 0xbdff }, { 11447, 0x7ff3 }, { 11460, 0xfdfd },\n  { 11474, 0x01b7 }, { 11481, 0x9b7a }, { 11491, 0x29c1 }, { 11497, 0x1c08 },\n  { 11501, 0xc55f }, { 11511, 0xf3f8 }, { 11522, 0x1bf3 }, { 11532, 0xfbcf },\n  { 11545, 0x097f }, { 11554, 0xeffd }, { 11568, 0xffff }, { 11584, 0xffff },\n  /* 0x9200 */\n  { 11600, 0xffff }, { 11616, 0xffff }, { 11632, 0xffff }, { 11648, 0xffff },\n  { 11664, 0xffff }, { 11680, 0xffff }, { 11696, 0xffff }, { 11712, 0xffef },\n  { 11727, 0xbfff }, { 11742, 0xffff }, { 11758, 0xbfff }, { 11773, 0xffff },\n  { 11789, 0xfeff }, { 11804, 0xffff }, { 11820, 0xffff }, { 11836, 0xffff },\n  /* 0x9300 */\n  { 11852, 0xffff }, { 11868, 0xffff }, { 11884, 0xffff }, { 11900, 0xbfff },\n  { 11915, 0xffff }, { 11931, 0xffff }, { 11947, 0xfbff }, { 11962, 0xffff },\n  { 11978, 0x7fff }, { 11993, 0xffff }, { 12009, 0xffff }, { 12025, 0xffff },\n  { 12041, 0xfbff }, { 12056, 0xffbf }, { 12071, 0xffff }, { 12087, 0xffff },\n  /* 0x9400 */\n  { 12103, 0xffff }, { 12119, 0xffff }, { 12135, 0xffff }, { 12151, 0xbfff },\n  { 12166, 0xffff }, { 12182, 0xffff }, { 12198, 0xf7ff }, { 12213, 0xffff },\n  { 12229, 0x001f }, { 12234, 0x0142 }, { 12237, 0x0000 }, { 12237, 0x0000 },\n  { 12237, 0x8080 }, { 12239, 0x0418 }, { 12242, 0x0040 }, { 12243, 0x0800 },\n  /* 0x9500 */\n  { 12244, 0x0000 }, { 12244, 0x1000 }, { 12245, 0x0081 }, { 12247, 0x2008 },\n  { 12249, 0x0908 }, { 12252, 0x0420 }, { 12254, 0x4001 }, { 12256, 0x7fb0 },\n  { 12266, 0xffff }, { 12282, 0xffff }, { 12298, 0xffff }, { 12314, 0xffff },\n  { 12330, 0xffff }, { 12346, 0xffff }, { 12362, 0x10ff }, { 12371, 0x8000 },\n  /* 0x9600 */\n  { 12372, 0x0080 }, { 12373, 0x4908 }, { 12377, 0xbbf9 }, { 12389, 0x4781 },\n  { 12395, 0xc40a }, { 12400, 0x77ce }, { 12411, 0xe869 }, { 12419, 0xff0b },\n  { 12430, 0x569f }, { 12440, 0xec6e }, { 12450, 0xff7f }, { 12465, 0x8db6 },\n  { 12474, 0x0d0c }, { 12479, 0xffdb }, { 12493, 0x78fe }, { 12504, 0xbd37 },\n  /* 0x9700 */\n  { 12515, 0x1c2c }, { 12521, 0xafb7 }, { 12533, 0xdbff }, { 12547, 0xbcfa },\n  { 12558, 0xffff }, { 12574, 0xb5b3 }, { 12584, 0xfdd8 }, { 12595, 0xefa7 },\n  { 12607, 0xd7df }, { 12620, 0xfee9 }, { 12632, 0x57f6 }, { 12643, 0xffeb },\n  { 12657, 0xffff }, { 12673, 0xffff }, { 12689, 0xc13f }, { 12698, 0xff97 },\n  /* 0x9800 */\n  { 12711, 0xffff }, { 12727, 0xffff }, { 12743, 0xffff }, { 12759, 0xffff },\n  { 12775, 0xffff }, { 12791, 0xffff }, { 12807, 0xffff }, { 12823, 0x001f },\n  { 12828, 0x4800 }, { 12830, 0x0224 }, { 12833, 0xff08 }, { 12842, 0xffff },\n  { 12858, 0xbfff }, { 12873, 0x38d1 }, { 12880, 0xfe7f }, { 12894, 0xffff },\n  /* 0x9900 */\n  { 12910, 0xdfff }, { 12925, 0xfffe }, { 12940, 0xbfff }, { 12955, 0xffff },\n  { 12971, 0xffff }, { 12987, 0xffcf }, { 13001, 0x0057 }, { 13006, 0x4b08 },\n  { 13011, 0x520c }, { 13016, 0xfc00 }, { 13022, 0xfedf }, { 13036, 0xffff },\n  { 13052, 0xffff }, { 13068, 0xffff }, { 13084, 0xffff }, { 13100, 0xffff },\n  /* 0x9a00 */\n  { 13116, 0xffff }, { 13132, 0xffff }, { 13148, 0xffff }, { 13164, 0xffff },\n  { 13180, 0xffff }, { 13196, 0xffff }, { 13212, 0x0fff }, { 13224, 0x0004 },\n  { 13225, 0x6208 }, { 13229, 0x0230 }, { 13232, 0xfe40 }, { 13240, 0xea3c },\n  { 13249, 0xe7d8 }, { 13259, 0x7ef5 }, { 13271, 0x57bd }, { 13282, 0xf5ff },\n  /* 0x9b00 */\n  { 13296, 0x7ef7 }, { 13309, 0x7ff7 }, { 13323, 0x7ff7 }, { 13337, 0xe7fb },\n  { 13350, 0x5c41 }, { 13356, 0xffed }, { 13370, 0xffff }, { 13386, 0xffff },\n  { 13402, 0xffff }, { 13418, 0xffff }, { 13434, 0xffff }, { 13450, 0xffff },\n  { 13466, 0xffff }, { 13482, 0xffff }, { 13498, 0xffff }, { 13514, 0xffff },\n  /* 0x9c00 */\n  { 13530, 0xffff }, { 13546, 0xffff }, { 13562, 0xffff }, { 13578, 0xffff },\n  { 13594, 0xffff }, { 13610, 0xffff }, { 13626, 0xffff }, { 13642, 0x6fff },\n  { 13656, 0x9619 }, { 13663, 0x23c8 }, { 13669, 0x9400 }, { 13672, 0xc200 },\n  { 13675, 0x0307 }, { 13680, 0x0c06 }, { 13684, 0xfffb }, { 13699, 0xffff },\n  /* 0x9d00 */\n  { 13715, 0xffff }, { 13731, 0xffff }, { 13747, 0xffff }, { 13763, 0xffff },\n  { 13779, 0xffff }, { 13795, 0xffff }, { 13811, 0xffff }, { 13827, 0xffff },\n  { 13843, 0xffff }, { 13859, 0xffff }, { 13875, 0xffff }, { 13891, 0xffff },\n  { 13907, 0xffff }, { 13923, 0xffff }, { 13939, 0xffff }, { 13955, 0xffff },\n  /* 0x9e00 */\n  { 13971, 0xffff }, { 13987, 0x7fff }, { 14002, 0x4090 }, { 14005, 0x1811 },\n  { 14009, 0x2001 }, { 14011, 0xa25d }, { 14019, 0xc027 }, { 14025, 0x3ff4 },\n  { 14036, 0xf67b }, { 14048, 0x5ff3 }, { 14060, 0xffbf }, { 14075, 0x96ef },\n  { 14086, 0x1def }, { 14097, 0x46ed }, { 14106, 0x795a }, { 14115, 0xa5ff },\n  /* 0x9f00 */\n  { 14127, 0x97ff }, { 14140, 0xfd76 }, { 14152, 0x6ffa }, { 14164, 0x957f },\n  { 14175, 0xffef }, { 14190, 0xfffc }, { 14204, 0xffff }, { 14220, 0x7fff },\n  { 14235, 0xe006 }, { 14240, 0x71ff }, { 14252, 0x003e },\n};\nstatic const Summary16 gbkext_inv_uni2indx_pagef9[19] = {\n  /* 0xf900 */\n  { 14257, 0x0000 }, { 14257, 0x0000 }, { 14257, 0x1000 }, { 14258, 0x0000 },\n  { 14258, 0x0000 }, { 14258, 0x0000 }, { 14258, 0x0000 }, { 14258, 0x0200 },\n  { 14259, 0x0000 }, { 14259, 0x0020 }, { 14260, 0x0000 }, { 14260, 0x0000 },\n  { 14260, 0x0000 }, { 14260, 0x0000 }, { 14260, 0x0080 }, { 14261, 0x0002 },\n  /* 0xfa00 */\n  { 14262, 0xf000 }, { 14266, 0x811a }, { 14271, 0x039b },\n};\nstatic const Summary16 gbkext_inv_uni2indx_pagefe[31] = {\n  /* 0xfe00 */\n  { 14278, 0x0000 }, { 14278, 0x0000 }, { 14278, 0x0000 }, { 14278, 0x0001 },\n  { 14279, 0xfe00 }, { 14286, 0xfef7 }, { 14300, 0x0f7f }, { 14311, 0x0000 },\n  { 14311, 0x0000 }, { 14311, 0x0000 }, { 14311, 0x0000 }, { 14311, 0x0000 },\n  { 14311, 0x0000 }, { 14311, 0x0000 }, { 14311, 0x0000 }, { 14311, 0x0000 },\n  /* 0xff00 */\n  { 14311, 0x0000 }, { 14311, 0x0000 }, { 14311, 0x0000 }, { 14311, 0x0000 },\n  { 14311, 0x0000 }, { 14311, 0x0000 }, { 14311, 0x0000 }, { 14311, 0x0000 },\n  { 14311, 0x0000 }, { 14311, 0x0000 }, { 14311, 0x0000 }, { 14311, 0x0000 },\n  { 14311, 0x0000 }, { 14311, 0x0000 }, { 14311, 0x0014 },\n};\n\nstatic int\ngbkext_inv_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x0200 && wc < 0x02e0)\n      summary = &gbkext_inv_uni2indx_page02[(wc>>4)-0x020];\n    else if (wc >= 0x2000 && wc < 0x22c0)\n      summary = &gbkext_inv_uni2indx_page20[(wc>>4)-0x200];\n    else if (wc >= 0x2500 && wc < 0x2610)\n      summary = &gbkext_inv_uni2indx_page25[(wc>>4)-0x250];\n    else if (wc >= 0x3000 && wc < 0x3100)\n      summary = &gbkext_inv_uni2indx_page30[(wc>>4)-0x300];\n    else if (wc >= 0x3200 && wc < 0x33e0)\n      summary = &gbkext_inv_uni2indx_page32[(wc>>4)-0x320];\n    else if (wc >= 0x4e00 && wc < 0x9fb0)\n      summary = &gbkext_inv_uni2indx_page4e[(wc>>4)-0x4e0];\n    else if (wc >= 0xf900 && wc < 0xfa30)\n      summary = &gbkext_inv_uni2indx_pagef9[(wc>>4)-0xf90];\n    else if (wc >= 0xfe00 && wc < 0xfff0)\n      summary = &gbkext_inv_uni2indx_pagefe[(wc>>4)-0xfe0];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = gbkext_inv_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/genaliases.c",
    "content": "/* Copyright (C) 1999-2001, 2003, 2005, 2008, 2012 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Creates the aliases.gperf table. */\n\n#include <stdio.h>\n#include <stdlib.h>\n\nstatic void emit_alias (FILE* out1, const char* alias, const char* c_name)\n{\n  /* Output alias in upper case. */\n  const char* s = alias;\n  for (; *s; s++) {\n    unsigned char c = * (unsigned char *) s;\n    if (c >= 0x80)\n      exit(1);\n    if (c >= 'a' && c <= 'z')\n      c -= 'a'-'A';\n    putc(c, out1);\n  }\n  fprintf(out1,\", ei_%s\\n\", c_name);\n}\n\nstatic void emit_encoding (FILE* out1, FILE* out2, const char* const* names, size_t n, const char* c_name)\n{\n  fprintf(out2,\"grep 'sizeof(\\\"\");\n  /* Output *names in upper case. */\n  {\n    const char* s = *names;\n    for (; *s; s++) {\n      unsigned char c = * (unsigned char *) s;\n      if (c >= 0x80)\n        exit(1);\n      if (c >= 'a' && c <= 'z')\n        c -= 'a'-'A';\n      putc(c, out2);\n    }\n  }\n  fprintf(out2,\"\\\")' tmp.h | sed -e 's|^.*\\\\(stringpool_str[0-9]*\\\\).*$|  (int)(long)\\\\&((struct stringpool_t *)0)->\\\\1,|'\\n\");\n  for (; n > 0; names++, n--)\n    emit_alias(out1, *names, c_name);\n}\n\nint main (int argc, char* argv[])\n{\n  char* aliases_file_name;\n  char* canonical_sh_file_name;\n  char* canonical_local_sh_file_name;\n  FILE* aliases_file;\n  FILE* canonical_sh_file;\n\n  if (argc != 4) {\n    fprintf(stderr, \"Usage: genaliases aliases.gperf canonical.sh canonical_local.sh\\n\");\n    exit(1);\n  }\n\n  aliases_file_name = argv[1];\n  canonical_sh_file_name = argv[2];\n  canonical_local_sh_file_name = argv[3];\n\n  aliases_file = fopen(aliases_file_name, \"w\");\n  if (aliases_file == NULL) {\n    fprintf(stderr, \"Could not open '%s' for writing\\n\", aliases_file_name);\n    exit(1);\n  }\n\n  fprintf(aliases_file, \"struct alias { int name; unsigned int encoding_index; };\\n\");\n  fprintf(aliases_file, \"%%struct-type\\n\");\n  fprintf(aliases_file, \"%%language=ANSI-C\\n\");\n  fprintf(aliases_file, \"%%define hash-function-name aliases_hash\\n\");\n  fprintf(aliases_file, \"%%define lookup-function-name aliases_lookup\\n\");\n  fprintf(aliases_file, \"%%7bit\\n\");\n  fprintf(aliases_file, \"%%readonly-tables\\n\");\n  fprintf(aliases_file, \"%%global-table\\n\");\n  fprintf(aliases_file, \"%%define word-array-name aliases\\n\");\n  fprintf(aliases_file, \"%%pic\\n\");\n  fprintf(aliases_file, \"%%%%\\n\");\n\n#define DEFENCODING(xxx_names,xxx,xxx_ifuncs1,xxx_ifuncs2,xxx_ofuncs1,xxx_ofuncs2) \\\n  {                                                           \\\n    static const char* const names[] = BRACIFY xxx_names;     \\\n    emit_encoding(aliases_file,canonical_sh_file,names,sizeof(names)/sizeof(names[0]),#xxx); \\\n  }\n#define BRACIFY(...) { __VA_ARGS__ }\n#define DEFALIAS(xxx_alias,xxx) emit_alias(aliases_file,xxx_alias,#xxx);\n\n  canonical_sh_file = fopen(canonical_sh_file_name, \"w\");\n  if (canonical_sh_file == NULL) {\n    fprintf(stderr, \"Could not open '%s' for writing\\n\", canonical_sh_file_name);\n    exit(1);\n  }\n#include \"encodings.def\"\n  if (ferror(canonical_sh_file) || fclose(canonical_sh_file))\n    exit(1);\n\n  canonical_sh_file = fopen(canonical_local_sh_file_name, \"w\");\n  if (canonical_sh_file == NULL) {\n    fprintf(stderr, \"Could not open '%s' for writing\\n\", canonical_local_sh_file_name);\n    exit(1);\n  }\n#include \"encodings_local.def\"\n  if (ferror(canonical_sh_file) || fclose(canonical_sh_file))\n    exit(1);\n\n#undef DEFALIAS\n#undef BRACIFY\n#undef DEFENCODING\n\n  if (ferror(aliases_file) || fclose(aliases_file))\n    exit(1);\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/genaliases2.c",
    "content": "/* Copyright (C) 1999-2003, 2005, 2008, 2012 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Creates the aliases2.h table. */\n\n#include <stdio.h>\n#include <stdlib.h>\n\nstatic unsigned int counter = 0;\n\nstatic void emit_alias (FILE* out1, const char* tag, const char* alias, const char* c_name)\n{\n  fprintf(out1,\"  S(%s_%u, \\\"\",tag,counter);\n  /* Output alias in upper case. */\n  {\n    const char* s = alias;\n    for (; *s; s++) {\n      unsigned char c = * (unsigned char *) s;\n      if (c >= 0x80)\n        exit(1);\n      if (c >= 'a' && c <= 'z')\n        c -= 'a'-'A';\n      putc(c, out1);\n    }\n  }\n  fprintf(out1,\"\\\", ei_%s )\\n\", c_name);\n  counter++;\n}\n\nstatic void emit_encoding (FILE* out1, FILE* out2, const char* tag, const char* const* names, size_t n, const char* c_name)\n{\n  fprintf(out2,\"  (int)(long)&((struct stringpool2_t *)0)->stringpool_%s_%u,\\n\",tag,counter);\n  for (; n > 0; names++, n--)\n    emit_alias(out1, tag, *names, c_name);\n}\n\nint main (int argc, char* argv[])\n{\n  const char* tag;\n  char* aliases_file_name;\n  char* canonical_file_name;\n  FILE* aliases_file;\n  FILE* canonical_file;\n\n  if (argc != 4) {\n    fprintf(stderr, \"Usage: genaliases2 tag aliases.h canonical.h\\n\");\n    exit(1);\n  }\n\n  tag = argv[1];\n  aliases_file_name = argv[2];\n  canonical_file_name = argv[3];\n\n  aliases_file = fopen(aliases_file_name, \"w\");\n  if (aliases_file == NULL) {\n    fprintf(stderr, \"Could not open '%s' for writing\\n\", aliases_file_name);\n    exit(1);\n  }\n\n  canonical_file = fopen(canonical_file_name, \"w\");\n  if (canonical_file == NULL) {\n    fprintf(stderr, \"Could not open '%s' for writing\\n\", canonical_file_name);\n    exit(1);\n  }\n\n#define DEFENCODING(xxx_names,xxx,xxx_ifuncs1,xxx_ifuncs2,xxx_ofuncs1,xxx_ofuncs2) \\\n  {                                                           \\\n    static const char* const names[] = BRACIFY xxx_names;     \\\n    emit_encoding(aliases_file,canonical_file,tag,names,sizeof(names)/sizeof(names[0]),#xxx); \\\n  }\n#define BRACIFY(...) { __VA_ARGS__ }\n#define DEFALIAS(xxx_alias,xxx) emit_alias(aliases_file,tag,xxx_alias,#xxx);\n#ifdef USE_AIX\n#include \"encodings_aix.def\"\n#endif\n#ifdef USE_OSF1\n#include \"encodings_osf1.def\"\n#endif\n#ifdef USE_DOS\n#include \"encodings_dos.def\"\n#endif\n#ifdef USE_EXTRA\n#include \"encodings_extra.def\"\n#endif\n#undef DEFALIAS\n#undef BRACIFY\n#undef DEFENCODING\n  if (ferror(aliases_file) || fclose(aliases_file))\n    exit(1);\n  if (ferror(canonical_file) || fclose(canonical_file))\n    exit(1);\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/genflags.c",
    "content": "/* Copyright (C) 2000-2002, 2005-2006, 2008-2009, 2016 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Creates the flags.h include file. */\n\n#include <limits.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n\n/* Avoid lots of warnings from \"gcc -Wall\". */\n#if (__GNUC__ == 4 && __GNUC_MINOR__ >= 2) || __GNUC__ > 4\n# pragma GCC diagnostic ignored \"-Wunused-function\"\n#endif\n\n/* Consider all encodings, including the system dependent ones. */\n#define USE_AIX\n#define USE_OSF1\n#define USE_DOS\n#define USE_EXTRA\n\nstruct loop_funcs {};\nstruct iconv_fallbacks {};\nstruct iconv_hooks {};\n#include \"converters.h\"\n\nstatic void emit_encoding (struct wctomb_funcs * ofuncs, const char* c_name)\n{\n  /* Prepare a converter struct. */\n  struct conv_struct conv;\n  memset(&conv,'\\0',sizeof(conv));\n  conv.ofuncs = *ofuncs;\n\n  {\n    /* See whether the encoding can encode the accents and quotation marks. */\n    ucs4_t probe[6] = { 0x0060, 0x00b4, 0x2018, 0x2019, 0x3131, 0x3163, };\n    int res[6];\n    int i;\n    for (i = 0; i < 6; i++) {\n      unsigned char buf[10];\n      memset(&conv.ostate,'\\0',sizeof(state_t));\n      res[i] = (conv.ofuncs.xxx_wctomb(&conv,buf,probe[i],sizeof(buf)) != RET_ILUNI);\n    }\n    printf(\"#define ei_%s_oflags (\",c_name);\n    {\n      int first = 1;\n      if (res[0] && res[1]) {\n        printf(\"HAVE_ACCENTS\");\n        first = 0;\n      }\n      if (res[2] && res[3]) {\n        if (!first) printf(\" | \");\n        printf(\"HAVE_QUOTATION_MARKS\");\n        first = 0;\n      }\n      if (res[4] && res[5]) {\n        if (!first) printf(\" | \");\n        printf(\"HAVE_HANGUL_JAMO\");\n        first = 0;\n      }\n      if (first) printf(\"0\");\n    }\n    printf(\")\\n\");\n  }\n}\n\nint main ()\n{\n  int bitmask = 1;\n  printf(\"/* Generated automatically by genflags. */\\n\");\n  printf(\"\\n\");\n  printf(\"/* Set if the encoding can encode\\n\");\n  printf(\"   the acute and grave accents U+00B4 and U+0060. */\\n\");\n  printf(\"#define HAVE_ACCENTS %d\\n\",bitmask);\n  printf(\"\\n\");\n  bitmask = bitmask << 1;\n  printf(\"/* Set if the encoding can encode\\n\");\n  printf(\"   the single quotation marks U+2018 and U+2019. */\\n\");\n  printf(\"#define HAVE_QUOTATION_MARKS %d\\n\",bitmask);\n  printf(\"\\n\");\n  bitmask = bitmask << 1;\n  printf(\"/* Set if the encoding can encode\\n\");\n  printf(\"   the double-width Hangul letters (Jamo) U+3131 to U+3163. */\\n\");\n  printf(\"#define HAVE_HANGUL_JAMO %d\\n\",bitmask);\n  printf(\"\\n\");\n\n#define DEFENCODING(xxx_names,xxx,xxx_ifuncs1,xxx_ifuncs2,xxx_ofuncs1,xxx_ofuncs2) \\\n  {                                                       \\\n    struct wctomb_funcs ofuncs = xxx_ofuncs1,xxx_ofuncs2; \\\n    emit_encoding(&ofuncs,#xxx);                          \\\n  }\n#define DEFALIAS(xxx_alias,xxx) /* nothing */\n/* Consider all encodings, including the system dependent ones. */\n#include \"encodings.def\"\n#include \"encodings_aix.def\"\n#include \"encodings_osf1.def\"\n#include \"encodings_dos.def\"\n#include \"encodings_extra.def\"\n#undef DEFALIAS\n#undef DEFENCODING\n\n  if (ferror(stdout) || fclose(stdout))\n    exit(1);\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/gentranslit.c",
    "content": "/* Copyright (C) 1999-2003, 2005, 2011-2012, 2016 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/*\n * Generates a table of small strings, used for transliteration, from a table\n * containing lines of the form\n *   Unicode <tab> utf-8 replacement <tab> # comment\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <stdbool.h>\n\nint main (int argc, char *argv[])\n{\n  unsigned int *data;\n  int *uni2index;\n  int index;\n\n  if (argc != 1)\n    exit(1);\n\n  data = malloc(0x100000 * sizeof(*data));\n  uni2index = malloc(0x110000 * sizeof(*uni2index));\n  if (data == NULL || uni2index == NULL) {\n    fprintf(stderr, \"out of memory\\n\");\n    exit(1);\n  }\n\n  printf(\"/*\\n\");\n  printf(\" * Copyright (C) 1999-2003 Free Software Foundation, Inc.\\n\");\n  printf(\" * This file is part of the GNU LIBICONV Library.\\n\");\n  printf(\" *\\n\");\n  printf(\" * The GNU LIBICONV Library is free software; you can redistribute it\\n\");\n  printf(\" * and/or modify it under the terms of the GNU Library General Public\\n\");\n  printf(\" * License as published by the Free Software Foundation; either version 2\\n\");\n  printf(\" * of the License, or (at your option) any later version.\\n\");\n  printf(\" *\\n\");\n  printf(\" * The GNU LIBICONV Library is distributed in the hope that it will be\\n\");\n  printf(\" * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\\n\");\n  printf(\" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\\n\");\n  printf(\" * Library General Public License for more details.\\n\");\n  printf(\" *\\n\");\n  printf(\" * You should have received a copy of the GNU Library General Public\\n\");\n  printf(\" * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\\n\");\n  printf(\" * If not, see <http://www.gnu.org/licenses/>.\\n\");\n  printf(\" */\\n\");\n  printf(\"\\n\");\n  printf(\"/*\\n\");\n  printf(\" * Transliteration table\\n\");\n  printf(\" */\\n\");\n  printf(\"\\n\");\n  {\n    int c;\n    int j;\n    for (j = 0; j < 0x110000; j++)\n      uni2index[j] = -1;\n    index = 0;\n    for (;;) {\n      c = getc(stdin);\n      if (c == EOF)\n        break;\n      if (c == '#') {\n        do { c = getc(stdin); } while (!(c == EOF || c == '\\n'));\n        continue;\n      }\n      ungetc(c,stdin);\n      if (scanf(\"%x\",&j) != 1)\n        exit(1);\n      c = getc(stdin);\n      if (c != '\\t')\n        exit(1);\n      for (;;) {\n        c = getc(stdin);\n        if (c == EOF || c == '\\n')\n          exit(1);\n        if (c == '\\t')\n          break;\n        if (uni2index[j] < 0) {\n          uni2index[j] = index;\n          data[index++] = 0;\n        }\n        if (c >= 0x80) {\n          /* Finish reading an UTF-8 character. */\n          if (c < 0xc0)\n            exit(1);\n          else {\n            unsigned int i = (c < 0xe0 ? 2 : c < 0xf0 ? 3 : c < 0xf8 ? 4 : c < 0xfc ? 5 : 6);\n            c &= (1 << (8-i)) - 1;\n            while (--i > 0) {\n              int cc = getc(stdin);\n              if (!(cc >= 0x80 && cc < 0xc0))\n                exit(1);\n              c <<= 6; c |= (cc & 0x3f);\n            }\n          }\n        }\n        data[index++] = (unsigned int) c;\n      }\n      if (uni2index[j] >= 0)\n        data[uni2index[j]] = index - uni2index[j] - 1;\n      do { c = getc(stdin); } while (!(c == EOF || c == '\\n'));\n    }\n  }\n  printf(\"static const unsigned int translit_data[%d] = {\",index);\n  {\n    int i;\n    for (i = 0; i < index; i++) {\n      if (data[i] < 32)\n        printf(\"\\n %3d,\",data[i]);\n      else if (data[i] == '\\'')\n        printf(\"'\\\\'',\");\n      else if (data[i] == '\\\\')\n        printf(\"'\\\\\\\\',\");\n      else if (data[i] < 127)\n        printf(\" '%c',\",data[i]);\n      else if (data[i] < 256)\n        printf(\"0x%02X,\",data[i]);\n      else\n        printf(\"0x%04X,\",data[i]);\n    }\n    printf(\"\\n};\\n\");\n  }\n  printf(\"\\n\");\n  {\n    int line[0x22000];\n    int tableno;\n    struct { int minline; int maxline; int usecount; const char* suffix; } tables[0x2000];\n    int i, j, p, j1, j2, t;\n\n    for (j1 = 0; j1 < 0x22000; j1++) {\n      bool all_invalid = true;\n      for (j2 = 0; j2 < 8; j2++) {\n        j = 8*j1+j2;\n        if (uni2index[j] >= 0)\n          all_invalid = false;\n      }\n      if (all_invalid)\n        line[j1] = -1;\n      else\n        line[j1] = 0;\n    }\n    tableno = 0;\n    for (j1 = 0; j1 < 0x22000; j1++) {\n      if (line[j1] >= 0) {\n        if (tableno > 0\n            && ((j1 > 0 && line[j1-1] == tableno-1)\n                || ((tables[tableno-1].maxline >> 5) == (j1 >> 5)\n                    && j1 - tables[tableno-1].maxline <= 8))) {\n          line[j1] = tableno-1;\n          tables[tableno-1].maxline = j1;\n        } else {\n          tableno++;\n          line[j1] = tableno-1;\n          tables[tableno-1].minline = tables[tableno-1].maxline = j1;\n        }\n      }\n    }\n    for (t = 0; t < tableno; t++) {\n      tables[t].usecount = 0;\n      j1 = 8*tables[t].minline;\n      j2 = 8*(tables[t].maxline+1);\n      for (j = j1; j < j2; j++)\n        if (uni2index[j] >= 0)\n          tables[t].usecount++;\n    }\n    for (t = 0, p = -1, i = 0; t < tableno; t++) {\n      if (tables[t].usecount > 1) {\n        char* s;\n        if (p == tables[t].minline >> 5) {\n          s = (char*) malloc(4+1+2+1);\n          sprintf(s, \"%02x_%d\", p, ++i);\n        } else {\n          p = tables[t].minline >> 5;\n          s = (char*) malloc(4+1);\n          sprintf(s, \"%02x\", p);\n        }\n        tables[t].suffix = s;\n      } else\n        tables[t].suffix = NULL;\n    }\n    {\n      p = -1;\n      for (t = 0; t < tableno; t++)\n        if (tables[t].usecount > 1) {\n          p = 0;\n          printf(\"static const short translit_page%s[%d] = {\\n\", tables[t].suffix, 8*(tables[t].maxline-tables[t].minline+1));\n          for (j1 = tables[t].minline; j1 <= tables[t].maxline; j1++) {\n            if ((j1 % 0x20) == 0 && j1 > tables[t].minline)\n              printf(\"  /* 0x%04x */\\n\", 8*j1);\n            printf(\" \");\n            for (j2 = 0; j2 < 8; j2++) {\n              j = 8*j1+j2;\n              printf(\" %4d,\", uni2index[j]);\n            }\n            printf(\" /* 0x%02x-0x%02x */\\n\", 8*(j1 % 0x20), 8*(j1 % 0x20)+7);\n          }\n          printf(\"};\\n\");\n        }\n      if (p >= 0)\n        printf(\"\\n\");\n    }\n    printf(\"#define translit_index(wc) \\\\\\n  (\");\n    for (j1 = 0; j1 < 0x22000;) {\n      t = line[j1];\n      for (j2 = j1; j2 < 0x22000 && line[j2] == t; j2++);\n      if (t >= 0) {\n        if (j1 != tables[t].minline) abort();\n        if (j2 > tables[t].maxline+1) abort();\n        j2 = tables[t].maxline+1;\n      }\n      if (t == -1) {\n      } else {\n        if (t >= 0 && tables[t].usecount == 0) abort();\n        if (t >= 0 && tables[t].usecount == 1) {\n          if (j2 != j1+1) abort();\n          for (j = 8*j1; j < 8*j2; j++)\n            if (uni2index[j] >= 0) {\n              printf(\"wc == 0x%04x ? %d\", j, uni2index[j]);\n              break;\n            }\n        } else {\n          if (j1 == 0) {\n            printf(\"wc < 0x%04x\", 8*j2);\n          } else {\n            printf(\"wc >= 0x%04x && wc < 0x%04x\", 8*j1, 8*j2);\n          }\n          printf(\" ? translit_page%s[wc\", tables[t].suffix);\n          if (tables[t].minline > 0)\n            printf(\"-0x%04x\", 8*j1);\n          printf(\"]\");\n        }\n        printf(\" : \\\\\\n   \");\n      }\n      j1 = j2;\n    }\n    printf(\"-1)\\n\");\n  }\n\n  if (ferror(stdout) || fclose(stdout))\n    exit(1);\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/georgian_academy.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GEORGIAN-ACADEMY\n */\n\nstatic const unsigned short georgian_academy_2uni[32] = {\n  /* 0x80 */\n  0x0080, 0x0081, 0x201a, 0x0192, 0x201e, 0x2026, 0x2020, 0x2021,\n  0x02c6, 0x2030, 0x0160, 0x2039, 0x0152, 0x008d, 0x008e, 0x008f,\n  /* 0x90 */\n  0x0090, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0x02dc, 0x2122, 0x0161, 0x203a, 0x0153, 0x009d, 0x009e, 0x0178,\n};\n\nstatic int\ngeorgian_academy_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c >= 0x80 && c < 0xa0)\n    *pwc = (ucs4_t) georgian_academy_2uni[c-0x80];\n  else if (c >= 0xc0 && c < 0xe7)\n    *pwc = (ucs4_t) c + 0x1010;\n  else\n    *pwc = (ucs4_t) c;\n  return 1;\n}\n\nstatic const unsigned char georgian_academy_page00[32] = {\n  0x80, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x8e, 0x8f, /* 0x88-0x8f */\n  0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x9d, 0x9e, 0x00, /* 0x98-0x9f */\n};\nstatic const unsigned char georgian_academy_page01[72] = {\n  0x00, 0x00, 0x8c, 0x9c, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x8a, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char georgian_academy_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char georgian_academy_page20[48] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\n\nstatic int\ngeorgian_academy_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x0080 && wc < 0x00a0)\n    c = georgian_academy_page00[wc-0x0080];\n  else if ((wc >= 0x00a0 && wc < 0x00c0) || (wc >= 0x00e7 && wc < 0x0100))\n    c = wc;\n  else if (wc >= 0x0150 && wc < 0x0198)\n    c = georgian_academy_page01[wc-0x0150];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = georgian_academy_page02[wc-0x02c0];\n  else if (wc >= 0x10d0 && wc < 0x10f7)\n    c = wc-0x1010;\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = georgian_academy_page20[wc-0x2010];\n  else if (wc == 0x2122)\n    c = 0x99;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/georgian_ps.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * GEORGIAN-PS\n */\n\nstatic const unsigned short georgian_ps_2uni_1[32] = {\n  /* 0x80 */\n  0x0080, 0x0081, 0x201a, 0x0192, 0x201e, 0x2026, 0x2020, 0x2021,\n  0x02c6, 0x2030, 0x0160, 0x2039, 0x0152, 0x008d, 0x008e, 0x008f,\n  /* 0x90 */\n  0x0090, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0x02dc, 0x2122, 0x0161, 0x203a, 0x0153, 0x009d, 0x009e, 0x0178,\n};\nstatic const unsigned short georgian_ps_2uni_2[39] = {\n  /* 0xc0 */\n  0x10d0, 0x10d1, 0x10d2, 0x10d3, 0x10d4, 0x10d5, 0x10d6, 0x10f1,\n  0x10d7, 0x10d8, 0x10d9, 0x10da, 0x10db, 0x10dc, 0x10f2, 0x10dd,\n  /* 0xd0 */\n  0x10de, 0x10df, 0x10e0, 0x10e1, 0x10e2, 0x10f3, 0x10e3, 0x10e4,\n  0x10e5, 0x10e6, 0x10e7, 0x10e8, 0x10e9, 0x10ea, 0x10eb, 0x10ec,\n  /* 0xe0 */\n  0x10ed, 0x10ee, 0x10f4, 0x10ef, 0x10f0, 0x10f5,\n};\n\nstatic int\ngeorgian_ps_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c >= 0x80 && c < 0xa0)\n    *pwc = (ucs4_t) georgian_ps_2uni_1[c-0x80];\n  else if (c >= 0xc0 && c < 0xe6)\n    *pwc = (ucs4_t) georgian_ps_2uni_2[c-0xc0];\n  else\n    *pwc = (ucs4_t) c;\n  return 1;\n}\n\nstatic const unsigned char georgian_ps_page00[32] = {\n  0x80, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x8e, 0x8f, /* 0x88-0x8f */\n  0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x9d, 0x9e, 0x00, /* 0x98-0x9f */\n};\nstatic const unsigned char georgian_ps_page01[72] = {\n  0x00, 0x00, 0x8c, 0x9c, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x8a, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char georgian_ps_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char georgian_ps_page10[40] = {\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc8, /* 0xd0-0xd7 */\n  0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xcf, 0xd0, 0xd1, /* 0xd8-0xdf */\n  0xd2, 0xd3, 0xd4, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, /* 0xe0-0xe7 */\n  0xdb, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe3, /* 0xe8-0xef */\n  0xe4, 0xc7, 0xce, 0xd5, 0xe2, 0xe5, 0x00, 0x00, /* 0xf0-0xf7 */\n};\nstatic const unsigned char georgian_ps_page20[48] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\n\nstatic int\ngeorgian_ps_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x0080 && wc < 0x00a0)\n    c = georgian_ps_page00[wc-0x0080];\n  else if ((wc >= 0x00a0 && wc < 0x00c0) || (wc >= 0x00e6 && wc < 0x0100))\n    c = wc;\n  else if (wc >= 0x0150 && wc < 0x0198)\n    c = georgian_ps_page01[wc-0x0150];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = georgian_ps_page02[wc-0x02c0];\n  else if (wc >= 0x10d0 && wc < 0x10f8)\n    c = georgian_ps_page10[wc-0x10d0];\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = georgian_ps_page20[wc-0x2010];\n  else if (wc == 0x2122)\n    c = 0x99;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/hkscs1999.h",
    "content": "/*\n * Copyright (C) 1999-2006, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * HKSCS:1999\n */\n\nstatic const unsigned short hkscs1999_2uni_page88[627] = {\n  /* 0x88 */\n  0x06c0, 0x06c1, 0x06c2, 0x06c3, 0x06c4, 0x720c, 0x06c5, 0x71d1,\n  0x71cd, 0x06c6, 0x06c7, 0x71cb, 0x8c68, 0x06c8, 0x71ca, 0x06c9,\n  0x06ca, 0x06cb, 0x06cc, 0x720e, 0x06cd, 0x06ce, 0x0080, 0x0041,\n  0x010d, 0x0040, 0x0092, 0x0049, 0x009a, 0x0048, 0x00cc, 0x0053,\n  0x0111, 0x0052, 0x70fd, 0x02be, 0x70fd, 0x02c0, 0x004a, 0x0081,\n  0x0061, 0x010e, 0x0060, 0x0151, 0x0093, 0x0069, 0x009b, 0x0068,\n  0x00ab, 0x006d, 0x0110, 0x006c, 0x00cd, 0x0073, 0x0112, 0x0072,\n  0x00eb, 0x007a, 0x0114, 0x0079, 0x0116, 0x0118, 0x011a, 0x011c,\n  0x007c, 0x70fd, 0x02bf, 0x70fd, 0x02c1, 0x006a, 0x0161, 0x041a,\n  0x041b, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  /* 0x89 */\n  0xf029, 0x8005, 0x70fd, 0x374a, 0x70fd, 0x70fd, 0x207d, 0x40dd,\n  0x6dce, 0x62df, 0x70fd, 0x70fd, 0xd275, 0x36d1, 0x215a, 0x2168,\n  0x21e8, 0x2396, 0x23b4, 0x23dc, 0x2424, 0x24e1, 0x24e8, 0x257b,\n  0x258e, 0x2611, 0x2618, 0x2922, 0x2b30, 0x2b44, 0x2b47, 0x2b72,\n  0x2b74, 0x2da6, 0x2dde, 0x2ddf, 0x2eda, 0x30c6, 0x327b, 0x37c9,\n  0x3a3e, 0x3a44, 0x3aa5, 0x3f8e, 0x42bc, 0x4735, 0x50a4, 0x50ac,\n  0x50ba, 0x50c7, 0x50cf, 0x50df, 0x5106, 0x5137, 0x547a, 0x54cf,\n  0x556f, 0x5b46, 0x5d3e, 0x5d62, 0x60a6, 0x60a7, 0x60ae, 0x4611,\n  0x4efc, 0x4fcd, 0x3b86, 0x4cc9, 0x2467, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x628c, 0x4ab8, 0x625e, 0x52bc, 0x70fd, 0x5e4b, 0x52f6,\n  0x78e7, 0x70fd, 0x70fd, 0x529f, 0x6f47, 0x1f8d, 0x6e49, 0x6e8c,\n  0x1efe, 0xebb6, 0xcd4e, 0x6e8a, 0xee73, 0x0901, 0x70fd, 0x409a,\n  0x543e, 0x4719, 0x70fd, 0x1c11, 0x6b6c, 0x6b8f, 0x7019, 0x4b87,\n  0xdcac, 0x8a8a, 0x7650, 0x9526, 0x2064, 0x20c1, 0x20c0, 0x20c7,\n  0x20ff, 0x212b, 0x2177, 0x078c, 0x21fd, 0x1148, 0x2243, 0x22c8,\n  0x07bd, 0x07d3, 0x07e5, 0x23c6, 0x2b45, 0x241b, 0x243c, 0x2445,\n  0x20c9, 0x24b9, 0x24d0, 0x2567, 0x0907, 0x25e9, 0x0891, 0x25f0,\n  0x0893, 0x2602, 0x2663, 0x08ad, 0x08b2, 0x09c1, 0x26d3, 0x26e3,\n  0x26f4, 0x26f9, 0x2710, 0x272f, 0x2758, 0x2763, 0x2768, 0x08d8,\n  0x277f, 0x08e5, 0x08ff, 0x2817, 0x0905,\n  /* 0x8a */\n  0xd784, 0x2765, 0x70fd, 0x7b02, 0x7bd5, 0xb42b, 0x27d0, 0x96c6,\n  0x0d2c, 0x7401, 0x5f86, 0xb138, 0xe665, 0x1353, 0xd97e, 0x497a,\n  0x9638, 0x0d74, 0x1ad5, 0xda1d, 0xc7b2, 0xb16a, 0x371d, 0x7c3c,\n  0x7e74, 0x7b95, 0x7fb4, 0x36cd, 0x5fbe, 0x7d56, 0x7acb, 0x7e24,\n  0x96a9, 0xdad6, 0xaa13, 0x70fd, 0x7c06, 0xe9cd, 0xd9a9, 0x1af4,\n  0xb227, 0x96c2, 0x6bb2, 0x0da7, 0xe6f4, 0x12ed, 0x0846, 0xb587,\n  0xe754, 0xd3c8, 0x9744, 0x6dee, 0x6915, 0x70fd, 0x16d9, 0xbfe5,\n  0x36f4, 0x2723, 0x974c, 0x95ca, 0x7f37, 0x0d3b, 0x7f2f, 0xc49a,\n  0xc4d6, 0xd4a0, 0x372a, 0xb392, 0x7b03, 0x5fa8, 0x8de1, 0xe14c,\n  0x7731, 0x70fd, 0x1b0b, 0x7269, 0x12fa, 0x2ab3, 0x978d, 0x70fd,\n  0xaac8, 0x75bc, 0xbfd7, 0x7e0c, 0x7c56, 0x27b9, 0x13bb, 0x16ba,\n  0x70fd, 0x1d74, 0x94e6, 0x7f5d, 0x53aa, 0x69f5, 0x7c5c, 0x35b9,\n  0x0d3e, 0x9275, 0x5f00, 0x28e1, 0x36bc, 0x1143, 0x70fd, 0xf101,\n  0x7cc9, 0x950f, 0x96c9, 0x70fd, 0x7f88, 0xa142, 0x0cd2, 0x0d46,\n  0xdb1b, 0x08b8, 0xbdc9, 0x8d07, 0x2892, 0x7df1, 0x96b2, 0xe720,\n  0x07fc, 0x3e7d, 0xb1bb, 0x70fd, 0x70fd, 0xd0f4, 0x988b, 0x8e48,\n  0xf15b, 0xe24d, 0x7d3a, 0x7af4, 0xc5dc, 0x5193, 0x7f8f, 0x9303,\n  0x9439, 0x093b, 0xb4a3, 0x7d4c, 0x7e4d, 0x7d6a, 0x1293, 0x7df0,\n  0x7c07, 0x800f, 0x7d0c, 0x70fd, 0x7d6b, 0x7a69, 0x7c08, 0x7f80,\n  0x7ffd, 0x12f9, 0x9196, 0x3672, 0x7e6d,\n  /* 0x8b */\n  0x9d34, 0xd1b9, 0x95ce, 0x7c3e, 0x7c3f, 0x9651, 0x9655, 0x0d58,\n  0x7d58, 0x7f87, 0x7dee, 0xf132, 0xc890, 0xe252, 0xe2d9, 0xe24a,\n  0x66aa, 0x270c, 0x54c4, 0x27f9, 0x70fd, 0xec83, 0x6d26, 0x6bb6,\n  0xd29e, 0x97ee, 0x4340, 0x536d, 0x52ec, 0x2e5c, 0xc3b2, 0x5334,\n  0x0ad7, 0x259f, 0xd97d, 0x62b6, 0x7dba, 0x7ccf, 0x7d37, 0x7dbb,\n  0x091d, 0xb16b, 0x0949, 0x7b96, 0x28ef, 0x92b5, 0x7f89, 0x7cd0,\n  0x7d38, 0x7f38, 0x8008, 0xda87, 0x8315, 0x7d39, 0xb1d0, 0x97a4,\n  0x2c94, 0x7edd, 0x7ede, 0x7fb5, 0x7fb6, 0x29dc, 0x7cd1, 0xd214,\n  0xdb4d, 0x7e75, 0x7d3b, 0xb47e, 0x0a43, 0x7e76, 0x8040, 0xb598,\n  0xefbd, 0xae5a, 0x867a, 0xa6b7, 0xdafc, 0x2ad9, 0x24a8, 0x095a,\n  0xb8bd, 0x4db2, 0x2da8, 0x1b00, 0x1dec, 0x6fa7, 0x1ce7, 0x6d1f,\n  0x6c8d, 0xbb74, 0x9abd, 0x283b, 0x0932, 0x28c9, 0x2068, 0x2b42,\n  0x8901, 0xf238, 0x6851, 0x7186, 0x209b, 0x20fb, 0x087e, 0x2e63,\n  0x3191, 0x3204, 0x0c3a, 0x348c, 0x3775, 0x3dba, 0x3e75, 0x3e7a,\n  0x426c, 0x442b, 0x206c, 0x44ad, 0xad69, 0x5152, 0x4b3b, 0x4ef9,\n  0x5153, 0xc12a, 0x0801, 0x70fd, 0xc1cb, 0x5202, 0x5280, 0xc412,\n  0xc711, 0x259d, 0x59e4, 0x5b41, 0xd3b2, 0x5d20, 0x5e5d, 0x6585,\n  0x6678, 0x667f, 0x66e8, 0xe30f, 0x68e6, 0x6975, 0x69ce, 0x69de,\n  0x6a63, 0xe790, 0x6d7c, 0x6e9f, 0x6f44, 0x3daf, 0x7047, 0x2077,\n  0x7187, 0x671d, 0x3477, 0x65a2,\n};\nstatic const unsigned short hkscs1999_2uni_page8d[3140] = {\n  /* 0x8d */\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x2f7e, 0x2f88, 0x2f96, 0x10fc, 0x0b4f, 0x2fe4, 0x2ff9, 0x0b60,\n  0x0b78, 0x3082, 0x30fd, 0x3165, 0x31c3, 0x0c48, 0x0c54, 0x0c7f,\n  0x0c8d, 0x3317, 0x337d, 0x2f25, 0x0cc9, 0x33f7, 0x33f9, 0x340f,\n  0x0cf8, 0x346c, 0x34d0, 0x3525, 0x3558, 0x0d38, 0x28f1, 0x0d43,\n  0x3622, 0x363b, 0x3647, 0x369a, 0x0d8b, 0x3700, 0x2f55, 0x2861,\n  0x701f, 0x0dd7, 0x37c6, 0x0dfd, 0x383f, 0x3893, 0x0e32, 0x38d2,\n  0x0e62, 0x3956, 0x0e82, 0x39e4, 0x3a40, 0x0e98, 0x3a8a, 0x3ac4,\n  0x0eb2, 0x0eb1, 0x0ebb, 0x3b49, 0x3b83, 0x445c, 0x3ba4, 0x3bdf,\n  0x3bc5, 0x0efc, 0x3c16, 0x0f1d, 0x3ca5, 0x3cb4, 0x3cb1, 0x3cc2,\n  0x0f2c, 0x3cd9, 0x0f32, 0x3ceb, 0x3cf5, 0x3d14, 0x3d36, 0x3dc1,\n  0x3e01, 0x3e2a, 0x3eb5, 0x3eea, 0x0fcb, 0x3f42, 0x3f46, 0x3f66,\n  0x3fc1, 0x0fef, 0x3fe4, 0x3ff1, 0x4015, 0x4018, 0x4029, 0x4086,\n  0xdfc0, 0x40bb, 0x40e2, 0x40da, 0x6fff, 0x40e8, 0x40e9, 0x4124,\n  0x4134, 0x1046, 0xa481, 0x4181, 0x41be, 0x106a, 0x1075, 0x43b7,\n  0x2ed9, 0x108a, 0x422c, 0x1091, 0x4250, 0x4254, 0x426f, 0x427f,\n  0x4289, 0x73e5, 0x16c1, 0x0931, 0x7d98,\n  /* 0x8e */\n  0xa417, 0x29fe, 0xcc13, 0x433e, 0xb920, 0x098e, 0x3be2, 0xe1e9,\n  0x2db4, 0x4c49, 0xb9a1, 0xe659, 0x4c65, 0x4c7d, 0xba6c, 0x4cbb,\n  0x4cb0, 0x4cc2, 0x4cc3, 0x43d1, 0xc30d, 0x14ca, 0x4cda, 0x4cdd,\n  0x4cea, 0x14ef, 0x26f2, 0xbc01, 0x4d0b, 0x4d55, 0x4d29, 0xb5ce,\n  0xbcfe, 0x4da2, 0x4d6f, 0x559c, 0xbbb4, 0xc9bf, 0x4dd0, 0x5621,\n  0x4d92, 0x70fd, 0xbd20, 0x10ad, 0xbc65, 0x5692, 0x4dfa, 0x70fd,\n  0x4e35, 0xbcc1, 0x4e44, 0x4e83, 0xad02, 0x4ea6, 0x38bd, 0xaab8,\n  0x4ec9, 0x4ec7, 0x4ee6, 0x4e74, 0x4ef3, 0x4ef5, 0x70fd, 0x5067,\n  0x181d, 0xcb84, 0x4f5d, 0xcc16, 0x468d, 0x4f89, 0x4fab, 0x4335,\n  0x4fb3, 0x70fd, 0xa597, 0xbf69, 0x4fe4, 0x1013, 0x4ff5, 0x8639,\n  0x4fe5, 0xdbed, 0x70fd, 0xc021, 0xc05a, 0x506e, 0x5092, 0x162b,\n  0x656c, 0x5027, 0x5140, 0x5141, 0x5147, 0x4b36, 0xc150, 0x6ae1,\n  0x5197, 0xc1d1, 0x51a3, 0x84a1, 0x7168, 0x185c, 0xa066, 0x1803,\n  0xdbba, 0x51fa, 0xc309, 0x70fd, 0x5208, 0x521d, 0x70fd, 0x522f,\n  0xedc7, 0xca03, 0x523b, 0x523c, 0x5261, 0x9214, 0x1c89, 0xc426,\n  0xa363, 0xc4a8, 0x3965, 0x52a7, 0xe048, 0x5307, 0x531a, 0x2af0,\n  0x91f6, 0x3ebf, 0xc318, 0xb2f8, 0x3727, 0x834a, 0x5418, 0x869e,\n  0x3c93, 0xaee5, 0xaf15, 0x177a, 0x5429, 0x7a0d, 0xc812, 0xa2fe,\n  0x2239, 0x83bd, 0x56e2, 0x5562, 0xc84a, 0xae27, 0x9e30, 0x85b3,\n  0xa378, 0x54aa, 0x3b5b, 0xf2d4, 0x14db,\n  /* 0x8f */\n  0x574b, 0x54d0, 0x551a, 0x7cd6, 0x85f4, 0x0a01, 0x9afd, 0x9e5a,\n  0x547b, 0x54e2, 0x5518, 0xa3cb, 0xcae3, 0xc845, 0xc8d7, 0x9ece,\n  0x10bf, 0x551d, 0x282c, 0x5585, 0x180b, 0xcae5, 0x55ac, 0x70fd,\n  0x55d3, 0x07be, 0xcc14, 0x3c97, 0x575a, 0x07d6, 0xcb82, 0x98ef,\n  0x5658, 0xbbe4, 0x5671, 0x10d3, 0x17e4, 0x3ce7, 0x564a, 0xa275,\n  0x4b58, 0x70fd, 0xc8d6, 0xcbb7, 0xcb83, 0x56de, 0x70fd, 0x5591,\n  0x17a0, 0x5693, 0x56e4, 0xbc91, 0x1540, 0xbcc0, 0x1843, 0x5734,\n  0x2d32, 0xcbd9, 0x1827, 0x5773, 0x1816, 0x39ff, 0x57d6, 0xdde5,\n  0xddfb, 0x5781, 0xcdc8, 0x57c2, 0x8402, 0xce0d, 0xf2f2, 0x186a,\n  0x57e8, 0x0988, 0x86e2, 0x2637, 0xcfda, 0x583e, 0x58f1, 0xee38,\n  0x596e, 0x9627, 0x5931, 0x595a, 0x598f, 0x28a1, 0x582c, 0x3a96,\n  0x190f, 0x59c5, 0x59c6, 0xd160, 0xa339, 0xd164, 0x59de, 0x5a1c,\n  0x195b, 0x5a34, 0x5a35, 0x3601, 0x5a45, 0x4977, 0xd24f, 0x5b07,\n  0x5b0a, 0x70fd, 0x70fd, 0x5b27, 0x5b3c, 0xe025, 0x5b67, 0xd424,\n  0xd5bd, 0x5c1c, 0x4993, 0x62fe, 0x5c10, 0xd559, 0x4ce9, 0xd63a,\n  0xa4cf, 0x1a13, 0xd638, 0x437c, 0x5c8c, 0x5c9f, 0xb630, 0xb6e5,\n  0x5cbf, 0x5ccc, 0x5ccd, 0x5c29, 0xaefa, 0x5d10, 0x5d1b, 0x5c2f,\n  0x851f, 0x1915, 0x59cf, 0x5ddb, 0xd754, 0xd78f, 0xf314, 0x0a65,\n  0xd753, 0x5e16, 0xd798, 0xd7bd, 0x5e52, 0x5e43, 0x8750, 0x5e1b,\n  0x425c, 0x5e51, 0xb089, 0x11d0, 0x70fd,\n  /* 0x90 */\n  0x5ee9, 0xd8c2, 0x7ed4, 0xae0a, 0x0ebc, 0xda7c, 0xce4c, 0x4ce7,\n  0x5fed, 0x5ff6, 0x6003, 0x63d4, 0x6059, 0x606d, 0xdbe5, 0xdc52,\n  0x60e5, 0x6403, 0xef9f, 0x7950, 0x60f3, 0x1c2a, 0xdfde, 0xdd3d,\n  0xa33b, 0x3138, 0x9be2, 0x6139, 0xed94, 0xde3c, 0xdd01, 0x8ee5,\n  0x0cc0, 0xcc17, 0x6177, 0xdd3c, 0xd5be, 0x61a1, 0xdd6c, 0xddcb,\n  0x61e8, 0xde93, 0x6204, 0xde66, 0x61ee, 0x70fd, 0x6267, 0x0e30,\n  0x62a9, 0x62c4, 0x4eac, 0xdf33, 0x8b09, 0x630e, 0x3edf, 0x6341,\n  0x6362, 0xb739, 0x70fd, 0xe0c6, 0xa25b, 0xe10c, 0xb75b, 0x7bf1,\n  0x642c, 0x646b, 0xe0e1, 0xe1eb, 0x428f, 0x2d03, 0xe0e2, 0xe0e5,\n  0x1c65, 0x6344, 0xe1ec, 0xe239, 0xe1ff, 0x6473, 0x655b, 0x5ffc,\n  0x6685, 0x66a6, 0x6526, 0x66a0, 0x41f6, 0x15b9, 0x917a, 0xde58,\n  0x813c, 0xa3ae, 0x1cdf, 0x3e5c, 0x677b, 0x6796, 0x146c, 0x67a3,\n  0xcc15, 0x341a, 0x67b6, 0x4af5, 0xe0e0, 0x67bd, 0x260c, 0x1ca1,\n  0xc9f8, 0x7334, 0xc290, 0xe46f, 0xe4a5, 0xaf51, 0x8755, 0x9c8a,\n  0x6831, 0x5802, 0x6836, 0x1d0f, 0x183d, 0x1885, 0xaf69, 0x4275,\n  0x2d81, 0x681b, 0x70fd, 0xe595, 0x6857, 0x2d8a, 0xe5ab, 0x685f,\n  0x6525, 0x2310, 0x9a37, 0x9a3c, 0x6889, 0x689f, 0x68b1, 0x68be,\n  0x68c0, 0x68d2, 0x68e0, 0xb66c, 0x68ee, 0x461c, 0xe5f3, 0x70fd,\n  0x68f5, 0xe5dd, 0xd47a, 0x1d91, 0x6934, 0x6933, 0x694b, 0x6966,\n  0x0e4e, 0xceb5, 0x1051, 0x76b0, 0xa69c,\n  /* 0x91 */\n  0xb886, 0x69ca, 0x69b7, 0x69c8, 0x69c7, 0x1dbf, 0xca67, 0x8513,\n  0x27f0, 0x69e1, 0x69e6, 0x69ec, 0x6478, 0x6a39, 0xaea9, 0x1e32,\n  0xe7d7, 0xe885, 0x6af5, 0x6b0c, 0x6b3b, 0x6b10, 0x6b58, 0xb8a5,\n  0x0a04, 0xe471, 0xea55, 0x6be0, 0x6be2, 0xea05, 0x6bf4, 0x1ece,\n  0x6c14, 0x6c2d, 0xddc0, 0x2274, 0x6c34, 0xc768, 0x0c03, 0x99fd,\n  0x6c50, 0x6c40, 0xeafe, 0x2c85, 0x86a3, 0x6c8e, 0xa78b, 0x6d02,\n  0x6cff, 0x6d0c, 0xec28, 0x6e54, 0xed37, 0xeed2, 0xeeeb, 0xee21,\n  0xee63, 0xef1f, 0x6dfe, 0x6e03, 0xee74, 0x6e8e, 0x3ac8, 0x6e44,\n  0x8d9b, 0xeed3, 0xef60, 0x877b, 0xef73, 0x6db9, 0xedf9, 0xefb4,\n  0x6f10, 0x6f15, 0x6f1e, 0x6f22, 0x1ff4, 0x6f2a, 0x6f2f, 0xa8a4,\n  0x6f41, 0x0ea0, 0x0d25, 0x101d, 0x2172, 0x0afe, 0xe22b, 0x6f82,\n  0x6f88, 0x1e56, 0x6524, 0xcae2, 0x6f97, 0x70fd, 0x6fb9, 0x28df,\n  0x28ca, 0x6fc5, 0x6ab8, 0xe44b, 0x68f2, 0x567f, 0x6fe2, 0x6fe9,\n  0x4cdc, 0x700e, 0x4416, 0x1e7e, 0xadf5, 0xae3b, 0x4377, 0xae78,\n  0xa888, 0xaed1, 0x459e, 0xe1da, 0x873a, 0x4b9f, 0xdf7e, 0xe336,\n  0x6469, 0x64f3, 0xe044, 0x63ec, 0x6481, 0x64cb, 0xdf6c, 0xa9f9,\n  0x4417, 0x11eb, 0x4972, 0x4c43, 0x42d0, 0xa9b3, 0xa938, 0x437e,\n  0x862f, 0x42a3, 0x86fe, 0x9e99, 0x11c7, 0x86c5, 0xb62f, 0x8638,\n  0x0a62, 0x853b, 0x8679, 0x0a21, 0x85b4, 0x8711, 0xbecb, 0x0a63,\n  0x8500, 0x299b, 0xaea5, 0x82be, 0x8168,\n  /* 0x92 */\n  0x8286, 0x8376, 0x5703, 0x9fa6, 0x70fd, 0x5655, 0xae14, 0xcea5,\n  0xa3b1, 0xb6dc, 0xa43b, 0xcd92, 0x17f4, 0x9fee, 0xe91d, 0xcc66,\n  0x3a39, 0x0a73, 0x0f55, 0x10e7, 0x2aac, 0x8762, 0x3a50, 0x1357,\n  0xa03f, 0xa621, 0xa5cb, 0xa64f, 0xc961, 0x270b, 0x28de, 0xc471,\n  0x28d2, 0x7e9f, 0x7a68, 0x7ccd, 0x64c6, 0xe113, 0x649c, 0x2138,\n  0x236b, 0x0b59, 0xa976, 0x20fc, 0x7525, 0x743f, 0x218b, 0x21ca,\n  0xb7d1, 0x2ca8, 0x726b, 0x748b, 0x0cd9, 0x73ca, 0x74d4, 0x0775,\n  0x2169, 0x7380, 0xe3b3, 0x7335, 0x5c5a, 0x72cc, 0x20d8, 0x230d,\n  0x234d, 0x21e2, 0x2143, 0xae8e, 0xa3ca, 0x2182, 0x226e, 0x22ac,\n  0x22c1, 0x220c, 0x2225, 0x2298, 0x233c, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x4076, 0x9e95, 0xa3b9, 0xa3ff, 0x3fb2, 0x86c4, 0xa3c9,\n  0x23e8, 0x2403, 0x7660, 0x17dd, 0x7563, 0x7552, 0x7551, 0x5eba,\n  0xe09c, 0x770e, 0x2499, 0x24e4, 0x77f3, 0x2521, 0x70fd, 0x197a,\n  0x438c, 0xa8cc, 0x7ae0, 0xae2c, 0x7fa4, 0x3c11, 0x7cdd, 0x70fd,\n  0x11de, 0x4699, 0x4614, 0x4656, 0x4598, 0x1e4e, 0xaf3c, 0xa5cd,\n  0x2610, 0x08c4, 0x440f, 0xa609, 0x27f4, 0x7405, 0x270d, 0x7a86,\n  0x295d, 0x635d, 0x67f4, 0x6466, 0x2a1d, 0x29cd, 0x29bf, 0x097e,\n  0x2b0b, 0x2cd9, 0xe046, 0x853a, 0x85af, 0x8550, 0x2c6c, 0x2bf8,\n  0x638f, 0x2cbe, 0x2d0f, 0x2c52, 0xba06, 0x8833, 0x86a1, 0xa7d5,\n  0x0a35, 0x3f45, 0x4643, 0x2c61, 0xbe03,\n  /* 0x93 */\n  0x2cc1, 0xe1d7, 0x74d3, 0x64e0, 0x468c, 0x81c3, 0x4305, 0x1c72,\n  0x6508, 0xdffb, 0x64bd, 0x0ae0, 0x2e5e, 0x2ede, 0x309e, 0x3088,\n  0x87d6, 0x87bc, 0xa1ee, 0x310d, 0x2d8f, 0x8743, 0x8744, 0x0a41,\n  0x86e0, 0x0a1d, 0x853e, 0x0a13, 0x532a, 0xe047, 0x8a7a, 0x9db2,\n  0xdfa8, 0x314c, 0x314e, 0x8767, 0x85eb, 0x2cab, 0x857b, 0x2d84,\n  0x57d4, 0xd17d, 0x59e0, 0x32be, 0x9360, 0x912b, 0x321b, 0x11b8,\n  0x90ef, 0x90fe, 0xe448, 0xccb3, 0x3400, 0x713e, 0x7146, 0x911b,\n  0x33d9, 0x33d8, 0x32b5, 0x969b, 0x9707, 0xabd4, 0xe50d, 0x36b1,\n  0xab65, 0x95aa, 0x0d69, 0x9562, 0x9d90, 0xe86a, 0x9878, 0x3577,\n  0xf09b, 0x36f6, 0x3571, 0x3611, 0xae63, 0x9767, 0x34e4, 0x96a1,\n  0x367b, 0x37ab, 0x3bb2, 0x0f34, 0x9a0e, 0x9c2d, 0xae09, 0x9c2b,\n  0x274d, 0x9c60, 0x8719, 0xe5ff, 0x390e, 0x9c09, 0x9b33, 0x0e20,\n  0x1490, 0xb704, 0xe122, 0xb70f, 0x853c, 0xb6db, 0xb625, 0x4aee,\n  0x9a83, 0x866a, 0x9bb4, 0x07a4, 0x9b8f, 0x9b02, 0xa809, 0x38ce,\n  0xca64, 0x38ab, 0x1e53, 0x3870, 0xd370, 0x8aab, 0x38a3, 0x9c52,\n  0x9c61, 0x385e, 0xb972, 0x0c11, 0xa13a, 0xa0bc, 0x0ed9, 0xa0a2,\n  0x9d3e, 0x46d0, 0x0ed6, 0x39cf, 0xab2a, 0x3af6, 0x3a5e, 0x0f04,\n  0x3cfe, 0x0ba3, 0xa0d5, 0xa9c7, 0x3c73, 0x3c92, 0x3d09, 0x3d45,\n  0x8752, 0x3751, 0x3ad8, 0x3c8c, 0x0f17, 0x3cba, 0x3d97, 0xa500,\n  0xa25a, 0x64a0, 0x63f2, 0xe1ea, 0xe0cb,\n  /* 0x94 */\n  0x6389, 0xd8de, 0xdfdc, 0x6567, 0x3fe5, 0x410b, 0xae6c, 0x70fd,\n  0xa4bf, 0x108f, 0x4004, 0xa57c, 0x2c7d, 0x400a, 0x2a87, 0x3f64,\n  0x4a42, 0x433b, 0xa85a, 0xa7b6, 0x42f1, 0x4450, 0x4487, 0x4494,\n  0xac4f, 0xac25, 0x23b9, 0xaf24, 0x766b, 0x467a, 0xa438, 0x9f5f,\n  0xaeca, 0xad97, 0xbf21, 0x1206, 0x11b1, 0xaf5f, 0xe223, 0xa475,\n  0x32e7, 0x11f3, 0x46cc, 0x463c, 0x6487, 0x4637, 0x179f, 0xcb2a,\n  0x1851, 0x4783, 0x1263, 0xb099, 0xb0c6, 0x1258, 0x4755, 0x4873,\n  0xf0c6, 0x0e59, 0x4668, 0xe0cc, 0xae2b, 0xae0e, 0x0e3b, 0x10cd,\n  0xaece, 0x11ff, 0xae45, 0xad73, 0x62fa, 0x2972, 0x6442, 0xe0e3,\n  0x86a4, 0x231f, 0xb4e1, 0xb4a7, 0x4978, 0x9bb2, 0x490e, 0x490f,\n  0x497b, 0xab97, 0xa081, 0x0d9e, 0xad70, 0x4638, 0x469b, 0x11bf,\n  0xaf3a, 0xaf47, 0x13c8, 0xaf16, 0xc0ae, 0x6407, 0xb701, 0x4a1e,\n  0x4a8d, 0x4a88, 0x4ad2, 0x45d0, 0x4b59, 0xd281, 0xb863, 0x140e,\n  0x70fd, 0x5696, 0x4ba5, 0x3c6d, 0xa43a, 0x4c3a, 0x4bf4, 0x146e,\n  0x8526, 0x1432, 0x6335, 0x4bf1, 0x7c0c, 0xae0c, 0x7359, 0xa33a,\n  0x85ae, 0x08d7, 0x27ab, 0x08b0, 0x09ea, 0x7294, 0x7acd, 0x4ce2,\n  0x2c99, 0x91f5, 0xbaef, 0xbadc, 0x2c4d, 0x731b, 0x4af0, 0x2c6a,\n  0xbbc6, 0x4cfe, 0x14f9, 0x4e5d, 0x4e6d, 0x1511, 0xbbb3, 0xbe3c,\n  0xbe26, 0x4ecd, 0xae79, 0x85f0, 0x4e8e, 0x4e7c, 0x4eae, 0x3cf2,\n  0x4fdc, 0x5007, 0x4fd3, 0x514e, 0xc121,\n  /* 0x95 */\n  0xc05c, 0xd648, 0x4f97, 0xbe02, 0x156a, 0xc8b5, 0x7856, 0x3a16,\n  0x714e, 0x9ecf, 0x2a04, 0xc292, 0xc278, 0xade2, 0x51dd, 0x4d27,\n  0x77ac, 0xbb29, 0xbd43, 0x4d0c, 0xbd8e, 0x6ae6, 0x5805, 0x6b63,\n  0x3c5c, 0x9d7f, 0x0d22, 0xae77, 0xc3ed, 0x6b1f, 0xc3e0, 0x5680,\n  0xce67, 0xca11, 0x17ea, 0x5337, 0x1702, 0x52c6, 0x5309, 0x5342,\n  0xc574, 0x69c3, 0xc802, 0x5462, 0x5465, 0xc811, 0x5653, 0xcae7,\n  0x57d0, 0xcf1b, 0x2cc6, 0x147f, 0x8680, 0x2d6b, 0x86e1, 0x2d24,\n  0x8718, 0x5860, 0xf2fc, 0xa30f, 0x59ad, 0xd022, 0x2c42, 0x59ee,\n  0x2185, 0x5a07, 0x5a3f, 0x5a66, 0x5ae5, 0x5acd, 0xb803, 0x5ad4,\n  0xd2c5, 0xd2c4, 0xe1f5, 0xe1d9, 0xe19c, 0xdff9, 0x11ad, 0x56a3,\n  0x19f5, 0x19cf, 0x0b32, 0x5bbd, 0x5b9c, 0xe608, 0x318d, 0x632b,\n  0xa7c4, 0x3814, 0x4329, 0x42c4, 0x8685, 0x6ded, 0x5ddf, 0x5e29,\n  0xd7dc, 0x2bda, 0x49c3, 0x2c30, 0x166e, 0x0a14, 0x5f6a, 0x5fe7,\n  0xb009, 0x6070, 0x608a, 0x15f4, 0x3e98, 0x41bb, 0x8ee1, 0x1b9b,\n  0x4179, 0x408b, 0x861a, 0x6ce9, 0x09f5, 0xadaf, 0x61fb, 0x70fd,\n  0x27b1, 0x1c06, 0x62bb, 0x6504, 0xe04b, 0x1362, 0xe0fc, 0x6527,\n  0xe21d, 0xe23b, 0x56e5, 0x5bab, 0x6699, 0x66a7, 0x6697, 0x6696,\n  0xe2b4, 0x4645, 0x11c2, 0xad7f, 0xaec2, 0xa92a, 0x11e7, 0x9ba5,\n  0x678f, 0xe3e7, 0xe366, 0xe365, 0x11cc, 0xae6d, 0xaef8, 0xa52e,\n  0x4612, 0x466b, 0x11fc, 0x6841, 0xe470,\n  /* 0x96 */\n  0x3a87, 0x1d1d, 0xe453, 0xb91f, 0x70fd, 0x6468, 0xdf89, 0xe226,\n  0xe12f, 0xc23e, 0x63ba, 0x2d51, 0x5ce9, 0x1c3c, 0x45f9, 0xa75b,\n  0x689b, 0x6871, 0x6a38, 0x7de6, 0x3001, 0xe1c5, 0xaf32, 0x691f,\n  0xe65a, 0x63f6, 0xe6d7, 0x62e5, 0x17c0, 0xe150, 0xaee7, 0xe164,\n  0x69dc, 0xe045, 0x1200, 0x632a, 0x1c25, 0x5614, 0x6a3b, 0x6a4d,\n  0xd606, 0x10fd, 0x6a9b, 0x1e2f, 0x6aaa, 0x6b5c, 0xe165, 0xb988,\n  0x3ccf, 0x6b21, 0x2d3e, 0x6b2f, 0xe871, 0x1e50, 0xe8c8, 0x6abc,\n  0x1e7d, 0x1e57, 0x647d, 0x2ab2, 0x81c2, 0x2a62, 0xae38, 0x83a8,\n  0x4a44, 0x921f, 0xa338, 0x3b05, 0x107d, 0x6558, 0x0c67, 0x3390,\n  0x9281, 0x946b, 0x3347, 0x6d4f, 0x6d53, 0x6d7b, 0x6d35, 0x6d10,\n  0x6c7f, 0x6ccf, 0xebed, 0x6c9f, 0xef35, 0xee3e, 0x6da1, 0x1f6e,\n  0xa644, 0x6e98, 0x1f70, 0x6d8c, 0xeef4, 0xee2d, 0xee33, 0xe8af,\n  0x6e25, 0x56bd, 0xcb52, 0xcd1f, 0xc8c2, 0x57bc, 0x1833, 0xcae4,\n  0xcbc4, 0xcb30, 0x5620, 0x57ae, 0xcb40, 0xa0d7, 0xbfa4, 0x4be2,\n  0x9e9c, 0x9f40, 0x1c2d, 0xae5e, 0x1062, 0x64db, 0x63be, 0x6448,\n  0x737f, 0x4ab9, 0x6377, 0x654d, 0x2224, 0x0780, 0x61a4, 0xb6dd,\n  0x4a3d, 0x4a54, 0x4ab6, 0x4a4b, 0x8597, 0x9b49, 0xadc1, 0x09da,\n  0x21b2, 0x41da, 0x41d9, 0x70fd, 0x421e, 0x2654, 0xa6f5, 0x29fb,\n  0x2b33, 0x29ca, 0x6d96, 0x2a17, 0x4334, 0x07ef, 0xa6ec, 0x43eb,\n  0xc980, 0xb2d7, 0x70fd, 0x85f5, 0xe049,\n  /* 0x97 */\n  0x334c, 0x2d0e, 0x2c4b, 0x15bc, 0xa9c8, 0x0a6c, 0x1e3b, 0xdffc,\n  0x64bb, 0x64b8, 0x8716, 0x7ddd, 0x5672, 0xca00, 0x82d3, 0xa83a,\n  0x9626, 0xa901, 0x2bd4, 0xa337, 0xc501, 0x4fa8, 0xc05b, 0xbfe4,\n  0xae39, 0xae0b, 0xdffa, 0x63e5, 0x45e2, 0x11e9, 0x46b4, 0xe163,\n  0x86df, 0x11e1, 0xaf33, 0x3d18, 0x45f3, 0x45fb, 0x11d6, 0xaebe,\n  0xaf14, 0x8619, 0xaee6, 0x7467, 0x82e4, 0xae65, 0x4648, 0xad96,\n  0x42a5, 0xadf6, 0x6384, 0x45e6, 0x645f, 0x75be, 0x6431, 0xe0ce,\n  0xe016, 0x6486, 0xe1e7, 0xb755, 0x1c35, 0xe082, 0x436b, 0xadc3,\n  0x7bbf, 0x28e4, 0x769a, 0x7aab, 0x7b78, 0x2742, 0x4bc4, 0x863a,\n  0x4ffe, 0x8502, 0xaed0, 0x8692, 0x182e, 0x6501, 0x0a4a, 0xe0c0,\n  0xae2d, 0x2bf0, 0x86ff, 0x86c3, 0xd084, 0x2ce1, 0x0a22, 0xa2db,\n  0x09f0, 0x635f, 0x2cb9, 0xe081, 0x86a2, 0x6474, 0x0fcd, 0x79b4,\n  0x1d56, 0x0cca, 0x2334, 0x1069, 0x104c, 0x825c, 0x4375, 0x15fb,\n  0xda98, 0x400f, 0xe4a4, 0x17eb, 0x3f97, 0xd80f, 0x4267, 0x3eef,\n  0x0fd6, 0xa52d, 0xa3ad, 0x4002, 0x410c, 0x106f, 0x74b5, 0x4751,\n  0x09fc, 0x0808, 0x1980, 0x11da, 0x1b71, 0x2c04, 0x636e, 0x1c3e,\n  0x6081, 0xe21c, 0xc900, 0x2a52, 0x2a08, 0x0a16, 0x8312, 0x42fe,\n  0xa8a2, 0xaef1, 0x9963, 0x8170, 0x8f3d, 0x3af9, 0x3ba7, 0x8258,\n  0x9de5, 0xd6b4, 0x9fdf, 0xe083, 0xa0d6, 0x9d3a, 0xb05f, 0x3c5a,\n  0x9fad, 0xc9f7, 0x563e, 0x17df, 0x17ce,\n  /* 0x98 */\n  0xca66, 0xca91, 0xc9c2, 0xcd1e, 0x4117, 0xce49, 0x553d, 0x857a,\n  0x55ed, 0xc9c0, 0xcd93, 0x861b, 0x2bc9, 0x2cc2, 0x85f3, 0x2ca1,\n  0x2cb1, 0x8745, 0xa73c, 0x0a6d, 0x2c2f, 0x857c, 0x0a07, 0x438e,\n  0x6490, 0x38da, 0xa7e5, 0x2cae, 0x2c6b, 0xa7d3, 0x3c6b, 0xa439,\n  0xd276, 0xa99b, 0xa80a, 0x431d, 0xa799, 0xdfe1, 0x21f0, 0xca68,\n  0x2f02, 0xaa0e, 0xd80d, 0xa8fd, 0x3c4c, 0xa796, 0x81c4, 0x42a6,\n  0x4333, 0xa929, 0x10a5, 0x3f1f, 0xf1e5, 0xaecf, 0x5065, 0x2c2b,\n  0x2f6f, 0x10f3, 0x319c, 0xaedd, 0x861f, 0x4fa4, 0x5626, 0x26c5,\n  0xa1fa, 0x9c80, 0x72d4, 0x29be, 0x7815, 0x7699, 0x12e5, 0x8c1e,\n  0xefb6, 0x4203, 0xe51b, 0x2fb0, 0x458f, 0x4ed3, 0xe059, 0xe5e0,\n  0x2208, 0x51e7, 0x44cd, 0x4510, 0xd5f4, 0x4538, 0x4539, 0xb876,\n  0x4541, 0x4548, 0x11a9, 0xd618, 0x61ac, 0x43f5, 0xad72, 0x45e1,\n  0x53f6, 0x11ca, 0x490c, 0x11d1, 0x3ee2, 0x293d, 0x4619, 0x461e,\n  0x461f, 0x11e2, 0x11f0, 0x11f4, 0x11fa, 0x46d3, 0x120e, 0x1253,\n  0x4742, 0x476d, 0x4772, 0x478d, 0x127c, 0x47c8, 0x47dc, 0x12c0,\n  0x484d, 0x12d7, 0x4874, 0x12dc, 0x487a, 0xb29c, 0x4388, 0x2863,\n  0x5b00, 0x2aa9, 0x131d, 0x4943, 0x1339, 0x39a1, 0x1345, 0x091b,\n  0x4998, 0x136a, 0x136f, 0x2e9e, 0x49be, 0x49cb, 0x2b32, 0x4a18,\n  0x42b9, 0x4a1c, 0x13a8, 0x4a39, 0x4a47, 0x4a51, 0x4a66, 0x5648,\n  0xb6b5, 0x4b33, 0x3a43, 0x4b32, 0x1403,\n  /* 0x99 */\n  0x1409, 0x4b91, 0x4b99, 0x60fb, 0x4c06, 0x60fc, 0x1467, 0x4c91,\n  0x14b2, 0x4cbc, 0x5479, 0x14c4, 0x4ccf, 0x4cdb, 0x14cf, 0x2061,\n  0x4d62, 0x4d6c, 0x4d7b, 0x4e12, 0x4e1b, 0x1560, 0x157a, 0x4e7b,\n  0x4e9c, 0x158c, 0x4eb8, 0x1594, 0x4eed, 0x60d3, 0x42c0, 0x7b8f,\n  0x4fcf, 0x4fd4, 0x4fd0, 0x4ffd, 0x51ae, 0x51b4, 0x449f, 0x1697,\n  0x5220, 0x5225, 0x4d39, 0x522e, 0x5231, 0x5254, 0x10cc, 0x29f4,\n  0x42a0, 0x52b7, 0x52e9, 0x16ed, 0x530c, 0x452a, 0x530e, 0x5312,\n  0x4760, 0x5314, 0x1701, 0x0e79, 0x5356, 0x5359, 0x535a, 0x1713,\n  0x2a7a, 0x537c, 0x5384, 0x1725, 0x5393, 0x172d, 0x53a5, 0x2a2f,\n  0x53c1, 0x53e4, 0x5454, 0x178f, 0x54a6, 0x5476, 0x54ca, 0x54d8,\n  0x54ff, 0x17b0, 0x5557, 0x6769, 0x3bca, 0x5605, 0x42f5, 0x5664,\n  0x3323, 0x5688, 0x1804, 0x56be, 0x56e1, 0x56f8, 0x5710, 0x5738,\n  0x5752, 0x183b, 0x576f, 0x5770, 0x57a0, 0x1877, 0x5832, 0x5852,\n  0x5872, 0x58af, 0x6745, 0x590b, 0x1906, 0x1917, 0x5a2e, 0x5a7f,\n  0x5aa4, 0x5ac7, 0x5b11, 0xd467, 0x5ba9, 0x5bb8, 0x5c14, 0x5c34,\n  0x5d91, 0x5e14, 0x5e32, 0x5e5c, 0x1a98, 0x2a9f, 0x5f03, 0x1aed,\n  0x212e, 0x5f7a, 0x2818, 0x2994, 0x5fb1, 0x2835, 0x5ff0, 0x1b37,\n  0x600e, 0x6022, 0x6024, 0x602d, 0x6032, 0x60f7, 0x6101, 0x610a,\n  0x610c, 0x6173, 0x6ac4, 0x1bad, 0x69e0, 0x6313, 0x1c1e, 0x6328,\n  0x6358, 0x636b, 0x63b1, 0x63ae, 0x63bf,\n  /* 0x9a */\n  0x63e3, 0x63eb, 0x63f3, 0x63f4, 0x63fd, 0x6443, 0x6484, 0x64ad,\n  0x1c45, 0x1c51, 0x6f3f, 0x6517, 0x2541, 0x651d, 0x652d, 0x653e,\n  0x1c6a, 0x6554, 0x6579, 0x662d, 0x66a2, 0x1ca7, 0x66f4, 0x6733,\n  0x1ce5, 0x39e0, 0x1d24, 0x6840, 0x1d35, 0x68b2, 0x68c2, 0x2894,\n  0x1da4, 0x3328, 0x69b9, 0x1dd9, 0x69f1, 0x2a84, 0x6a0e, 0x6a19,\n  0x23f4, 0x6a1c, 0x6a37, 0x6a42, 0x6a5d, 0x6a62, 0x1e30, 0x6ac5,\n  0x1e5d, 0x6b3c, 0x6c0f, 0x4c83, 0x6c69, 0x6c81, 0x6cdd, 0x6cf1,\n  0x6cf4, 0x1f2d, 0x6d20, 0x0aaf, 0x8902, 0x6dc9, 0x6d3a, 0x6f7e,\n  0x2890, 0x6e13, 0x6e3d, 0x6e40, 0x6e7c, 0x65f6, 0x60f6, 0x6efb,\n  0x6f2c, 0x6f31, 0x6f3d, 0x6f46, 0x65dc, 0x6f62, 0x6f71, 0x6f78,\n  0x4cc8, 0x6fc4, 0x7194, 0x7377, 0x7460, 0x3b5a, 0x65c3, 0x2bec,\n  0x7597, 0x2a80, 0x65c1, 0x0af9, 0x7655, 0x7695, 0x76f6, 0x84fa,\n  0x2997, 0x4373, 0x79c2, 0x79cd, 0x7a7f, 0x26aa, 0xf1fb, 0x7a8b,\n  0x26de, 0x7abb, 0x7afb, 0x7b13, 0x7b25, 0x7b3c, 0x3327, 0x7b4d,\n  0x28ba, 0x7b75, 0x7b9d, 0x7bad, 0x7c2f, 0x7c72, 0x7c88, 0x3b95,\n  0x6d2f, 0x5925, 0x7cc4, 0x7cce, 0x7d97, 0x7e50, 0x7ded, 0x7d33,\n  0x2e60, 0x7e7c, 0x304b, 0x7f1c, 0x7f0f, 0x7f36, 0x395e, 0x7f3b,\n  0x7f48, 0x7f56, 0x0987, 0x7f7f, 0x7f93, 0x7fef, 0x7ffb, 0x25a4,\n  0x56ad, 0x81a3, 0x8235, 0x81f6, 0x5d01, 0x83f7, 0x8459, 0x8603,\n  0x8607, 0x20b8, 0x42bb, 0x866d, 0x87aa,\n  /* 0x9b */\n  0x886d, 0x8885, 0x896a, 0x89b0, 0x89ec, 0x8b48, 0x3503, 0x8b55,\n  0x8b95, 0x4398, 0x3a95, 0x8c85, 0x3c29, 0x0a08, 0x8ebc, 0x8f57,\n  0x8f7a, 0x922a, 0x9371, 0x944f, 0x54fd, 0x9467, 0x9493, 0x9515,\n  0x5b25, 0x9528, 0x60e0, 0x954e, 0x68b8, 0x957f, 0x6947, 0x6bbd,\n  0x964c, 0x70fd, 0x9688, 0x96b7, 0xbbe8, 0x9708, 0x9712, 0x97b7,\n  0x9795, 0x9842, 0x9934, 0x994c, 0x99b3, 0x99e6, 0x9c9f, 0x9d1e,\n  0x31f1, 0x3888, 0x38ff, 0xd579, 0x9e67, 0x9ef3, 0x70fd, 0xae3a,\n  0x70fd, 0x9f1a, 0xa016, 0x70fd, 0x7406, 0x2af5, 0x394e, 0x3b58,\n  0xa1a7, 0xd1d7, 0xbf22, 0xa391, 0xa3f9, 0xd17e, 0x8cda, 0x1bd0,\n  0x1d78, 0xa659, 0xe09a, 0xa82e, 0xa84d, 0xa57b, 0xa874, 0xa8d6,\n  0xaec5, 0x764a, 0x2412, 0x7691, 0x2bdf, 0x8b28, 0x0efe, 0xa2bf,\n  0xa944, 0xaa16, 0x29c8, 0xab74, 0x0cdb, 0xac2f, 0xdda8, 0xe949,\n  0x0aa2, 0x8e03, 0x5cde, 0xe14e, 0x70fd, 0xacd2, 0xad7b, 0xae95,\n  0x4409, 0xaf40, 0x7b38, 0x2ba5, 0xb225, 0xb2c6, 0x7779, 0x601a,\n  0xb36c, 0x24cf, 0x297f, 0x4371, 0xb559, 0xb619, 0xa48a, 0xaf27,\n  0x27fc, 0xb646, 0xb66e, 0xc892, 0x70fd, 0x07b3, 0xb6bf, 0xd1b2,\n  0xb6de, 0x1a18, 0xb6e2, 0xb6e6, 0xb907, 0xadbf, 0xb95d, 0x22a6,\n  0x083b, 0x9d0c, 0x70fd, 0xb9c3, 0x1a7c, 0xdf48, 0xbaee, 0xbb89,\n  0xbc06, 0x8a50, 0x29e1, 0x4351, 0x70fd, 0xc002, 0xd6d2, 0x6196,\n  0xc0b2, 0xb2da, 0x5ce2, 0xc282, 0xc2ca,\n  /* 0x9c */\n  0x2f9b, 0xc937, 0x70fd, 0xc304, 0x875c, 0x5c6a, 0xae76, 0xc308,\n  0xa52f, 0xc352, 0x1e80, 0xc3ff, 0xc475, 0x921b, 0x6565, 0xb921,\n  0x33d5, 0x2c67, 0xf28d, 0x70fd, 0x28f9, 0xaa61, 0xc4bc, 0x20aa,\n  0xadb4, 0x6756, 0x3fcf, 0xc9fd, 0x0958, 0x5af7, 0xc559, 0xc62e,\n  0xc291, 0xc61e, 0x70fd, 0xc687, 0x4d42, 0xe480, 0x7911, 0xc6e6,\n  0x70fd, 0xc6f9, 0x4c45, 0x70fd, 0xc7ba, 0x6b26, 0xc7ed, 0x099f,\n  0xc2e9, 0x7121, 0x4b83, 0xc7f4, 0xc89b, 0x2f6c, 0x9e19, 0x70fd,\n  0xc8dd, 0x19d0, 0xc9e4, 0x473b, 0x59e5, 0xcaee, 0x2af6, 0x0a5c,\n  0x90cd, 0xcd8b, 0xcecd, 0x0f94, 0xcf40, 0xcf45, 0x6381, 0x8dba,\n  0xcf4b, 0x6430, 0xcfa6, 0xae50, 0x3e79, 0x659f, 0xd050, 0x7db8,\n  0x59a7, 0x5a75, 0x9426, 0xdcb3, 0x85f1, 0x40b8, 0xaeaa, 0x8660,\n  0x0ce4, 0x09f9, 0x70fd, 0x70fd, 0x183f, 0x38f6, 0xeaad, 0xe824,\n  0x5ac3, 0xd30c, 0xd358, 0x2916, 0x13df, 0x844a, 0x0ce1, 0xa02f,\n  0xd9a8, 0x8285, 0x43ad, 0x5566, 0xd4dd, 0xe568, 0x70fd, 0x1f77,\n  0xcdef, 0xdfab, 0xd4fd, 0xd50a, 0xd60b, 0xd766, 0xa6ba, 0x4d43,\n  0x4b7e, 0xd8c9, 0x41b5, 0xefdf, 0x3c43, 0xdb98, 0x25e2, 0xcb47,\n  0x64bf, 0x3a76, 0x685d, 0xda2f, 0xd8e3, 0xc775, 0x82ad, 0x9baf,\n  0xd908, 0x2fc5, 0xe230, 0xd943, 0x2955, 0x6923, 0xdf49, 0x2feb,\n  0xae08, 0x37fe, 0x3c15, 0x2612, 0xaf25, 0xa4c1, 0x0f51, 0x3976,\n  0xd950, 0xd9b4, 0xd9ee, 0x8c21, 0xda0f,\n  /* 0x9d */\n  0xda49, 0xda6f, 0xda9a, 0xdb86, 0xdbaf, 0xdc0a, 0x090a, 0xdca8,\n  0xde2a, 0x1bfa, 0x3626, 0xdf56, 0x4a08, 0x6355, 0xdfb8, 0x16f2,\n  0xdfe7, 0x16df, 0xdfe8, 0xe146, 0xe1d4, 0x2c38, 0xe209, 0x70fd,\n  0xe405, 0xe4ac, 0x70fd, 0xe4d0, 0xe4fc, 0x10f7, 0xe51e, 0xaf4a,\n  0x6110, 0x448f, 0x28cb, 0xe667, 0xe6e9, 0xe6b0, 0xe6b8, 0xe732,\n  0xe851, 0xe8c9, 0xe8ea, 0xe943, 0xe9a8, 0xea0e, 0xeb1a, 0xeb5b,\n  0x509f, 0xecb8, 0xece3, 0x1f64, 0x6647, 0xef93, 0x43a2, 0xefff,\n  0x2011, 0x6152, 0xf0cb, 0x201c, 0x7b5c, 0x60fe, 0x2801, 0x60fa,\n  0x8ff0, 0x60f9, 0xaf13, 0x1809, 0x507f, 0x4156, 0x3cf1, 0x212a,\n  0x0824, 0xe12c, 0xd39d, 0x0a7a, 0x5fc0, 0x8635, 0xd8e4, 0xe16c,\n  0xe199, 0xd53e, 0xc46f, 0x10eb, 0xd1d5, 0xa277, 0xb7b5, 0xba16,\n  0x20da, 0xbe01, 0xc118, 0x28ff, 0x7d2d, 0x5f4e, 0x2dad, 0xa3c8,\n  0xb05e, 0x361e, 0x70fd, 0x8636, 0x86bb, 0x3770, 0x286d, 0xbc4a,\n  0x265a, 0xb5d1, 0x10c6, 0xeb58, 0x1f3d, 0x2862, 0x285e, 0x5149,\n  0xbe58, 0x2bb5, 0xa2c0, 0x58f0, 0x205c, 0x7eaa, 0x7c09, 0x9fba,\n  0x5317, 0x6dde, 0x5e58, 0x483b, 0x6d45, 0x484e, 0x49b9, 0x6445,\n  0x2672, 0x5348, 0x54f7, 0x2865, 0x5332, 0x5618, 0x52bd, 0x282a,\n  0x4b62, 0x2883, 0x2656, 0x7d5d, 0x090e, 0x2845, 0x2831, 0x3931,\n  0xdb62, 0x096d, 0x4734, 0x2830, 0x27fa, 0x26d7, 0x27b2, 0x7b01,\n  0x7b56, 0x3110, 0xb448, 0x7d36, 0x9662,\n  /* 0x9e */\n  0x7d62, 0x6f2b, 0x4f5a, 0x281e, 0x7f35, 0x34dd, 0x686d, 0x26d4,\n  0x5e0d, 0x43f6, 0x6276, 0x363c, 0x35f9, 0x363e, 0x27a9, 0x9583,\n  0x6d72, 0x98b3, 0x23da, 0x081f, 0x7c67, 0x23e7, 0x268d, 0x275e,\n  0x2753, 0x4866, 0x5f6d, 0xc64a, 0x47b1, 0x52b6, 0x5984, 0x5906,\n  0x5a47, 0x53b6, 0x561c, 0x7f81, 0x17ec, 0x4504, 0xac06, 0x2dd0,\n  0x550b, 0xc653, 0x28bb, 0x91f4, 0xd72f, 0xa6e3, 0xd773, 0xcc10,\n  0xcf76, 0x6270, 0x8099, 0x6308, 0xa2bc, 0xf1a9, 0x7d6c, 0x7db9,\n  0x4466, 0x89e2, 0x1a4e, 0xb302, 0xd8b9, 0x7eab, 0x13fa, 0x6d5d,\n  0x375f, 0x97a0, 0x1bf3, 0xaca0, 0xeb3c, 0x7eac, 0x7cca, 0x70fd,\n  0xd123, 0x7ead, 0x70fd, 0xbf88, 0x8047, 0x43a3, 0x508e, 0x6dd0,\n  0x205a, 0x2044, 0x08b7, 0x2d4d, 0x3ef2, 0x25a7, 0x09ec, 0x0d1c,\n  0x25bd, 0x09e5, 0xab18, 0x2ada, 0xafae, 0x542d, 0x268b, 0x29ea,\n  0xbad5, 0x78b9, 0x70fd, 0x0d92, 0x8fa5, 0x4574, 0xec6c, 0x1fc9,\n  0x6ced, 0xa2be, 0xecf0, 0x1f1b, 0xb2e9, 0xe69e, 0xed5e, 0x565c,\n  0xa336, 0xcf72, 0xc573, 0xa020, 0x356e, 0x4f25, 0xa437, 0xa3ac,\n  0x0d6a, 0x6148, 0x250c, 0x1174, 0x09ba, 0x18e9, 0x754e, 0x4840,\n  0x2d30, 0x7d76, 0x4a7a, 0xd86e, 0x2ae7, 0x13bf, 0x28bc, 0x6c8b,\n  0x2fb4, 0x4854, 0xf074, 0x6f05, 0x1fa1, 0x70fd, 0x0b3b, 0x3359,\n  0x9a5a, 0xa932, 0x70fd, 0x289d, 0x8169, 0x29e7, 0xade3, 0xebc6,\n  0x2474, 0xcdee, 0x08ed, 0x70fd, 0x6dfc,\n  /* 0x9f */\n  0x4e56, 0x6c39, 0x2a1e, 0x85ac, 0x2e93, 0x3713, 0xe650, 0xc1b5,\n  0xcea4, 0x586d, 0x7be8, 0xca62, 0xaf62, 0x7c31, 0x70fd, 0x243e,\n  0x8b8f, 0x2fce, 0x6803, 0x8a91, 0x6f01, 0x618c, 0x4d1f, 0x6c02,\n  0x2f11, 0x4da3, 0x34a8, 0x3575, 0x6bff, 0x4dcf, 0x6c2a, 0x4e7e,\n  0x70fd, 0x4e42, 0x4e86, 0x6d15, 0x4dfc, 0x6c09, 0x70fd, 0x6d1b,\n  0xadbe, 0x6fda, 0x27b3, 0x2e03, 0x223d, 0x6f18, 0x2232, 0x24a0,\n  0x1106, 0x2511, 0x29a7, 0x2296, 0x2bf7, 0x3052, 0x68c8, 0x6e2b,\n  0x609c, 0x26a9, 0x68b4, 0x6a40, 0x68ba, 0x256c, 0x3370, 0x3b6c,\n  0x261a, 0x6d0a, 0x6d82, 0x1efb, 0x6741, 0x3bc0, 0x22e6, 0x4746,\n  0x85ad, 0x6ada, 0x24b3, 0x70fd, 0x6259, 0x6781, 0x625c, 0x70fd,\n  0x6251, 0xe397, 0x35bf, 0xca63, 0x3d0a, 0x2851, 0x628e, 0x477a,\n  0x34c5, 0x74bc, 0x454f, 0x4e70, 0xbc21, 0xa2bd, 0x70fd, 0xad99,\n  0x48d6, 0x6c9d, 0x206a, 0x7b94, 0x55be, 0x59c2, 0x70fd, 0x2e8a,\n  0x3c00, 0x70fd, 0x29ba, 0x245f, 0x3035, 0x210e, 0x3e71, 0x72b2,\n  0x2179, 0x26dc, 0x271a, 0x24da, 0x5ec2, 0x093e, 0x70fd, 0x0933,\n  0x70fd, 0x3d92, 0x627c, 0x7025, 0x6c97, 0x692e, 0x69b4, 0x6bba,\n  0x6f28, 0x6f04, 0x437a, 0x4d14, 0x70fd, 0x3e3a, 0x5998, 0x5178,\n  0x70fd, 0x2860, 0xf14a, 0x5fb7, 0x6fd3, 0x70fd, 0x5f14, 0x5f8f,\n  0x6e9c, 0x5f41, 0x34c2, 0xdbfd, 0x5f68, 0x5fb5, 0x4cd3, 0xaef7,\n  0x4c3e, 0x4ad8, 0x3f2a, 0x5be7, 0x4807,\n  /* 0xa0 */\n  0xe05a, 0x6fa6, 0x3f0e, 0x5956, 0x47c3, 0xefb2, 0x4a53, 0xf200,\n  0x5e4c, 0x44e2, 0x4571, 0x5cad, 0x4502, 0x46f1, 0x5e2b, 0xaf3b,\n  0x57ef, 0x31fa, 0x5a20, 0x17b7, 0x70fd, 0x867b, 0xcb45, 0x70fd,\n  0x5bfe, 0x905b, 0x70fd, 0x333d, 0x4867, 0x6bd7, 0x6dc4, 0x646e,\n  0x6c8f, 0x5975, 0x70fd, 0x70fd, 0x5e37, 0x452c, 0x6821, 0x6cb0,\n  0x0916, 0x44b2, 0x1ec7, 0x4e51, 0x6a4a, 0xc059, 0x3399, 0x1ec4,\n  0x6f16, 0x33bd, 0x70fd, 0x299f, 0x33af, 0x34e6, 0x3479, 0x70fd,\n  0x0d9c, 0x3422, 0x25ea, 0x9d35, 0x35a4, 0x3a42, 0x0912, 0x2f97,\n  0xe1c2, 0x611a, 0xe339, 0x70fd, 0x2319, 0x8a06, 0x4b06, 0x2572,\n  0x6738, 0x7dfb, 0x1365, 0x70fd, 0x49fe, 0x70fd, 0x4ec2, 0xbe9a,\n  0x4eda, 0x4c2d, 0x5266, 0x5263, 0x4f4d, 0x4705, 0x46f2, 0x5b14,\n  0x541a, 0x394c, 0x5262, 0xd086, 0x525b, 0x46f0, 0x5303, 0x4924,\n  0x5b09, 0xc58c, 0x4753, 0xcc11, 0x5929, 0x594e, 0x53c8, 0x590c,\n  0x5bc9, 0x5ded, 0x5cc3, 0x492b, 0x46f8, 0x56da, 0x0975, 0x3bf2,\n  0x5ee6, 0x70fd, 0x5b29, 0x70fd, 0x3ff9, 0x5941, 0xa551, 0x46e7,\n  0x10db, 0x4376, 0x32e4, 0x33dc, 0x0fd1, 0x70fd, 0x32b7, 0x70fd,\n  0x5171, 0xe12d, 0x70fd, 0x3329, 0x1e3e, 0x2460, 0x0f58, 0xa287,\n  0xbe57, 0xd1d6, 0xb6b1, 0x8784, 0x81be, 0xe883, 0xcb1c, 0xcded,\n  0x2f01, 0xc0ad, 0xe00f, 0x9f77, 0x71ee, 0xc606, 0xb24e, 0x1862,\n  0x2d5f, 0xc1cc, 0x6fd0, 0x6f26, 0xc12b,\n};\nstatic const unsigned short hkscs1999_2uni_pagec6[471] = {\n  /* 0xc6 */\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x0460,\n  0x0461, 0x0462, 0x0463, 0x0464, 0x0465, 0x0466, 0x0467, 0x0468,\n  0x0469, 0x0474, 0x0475, 0x0476, 0x0477, 0x0478, 0x0479, 0x047a,\n  0x047b, 0x047c, 0x047d, 0x0370, 0x0371, 0x0372, 0x0373, 0x0374,\n  0x0375, 0x0376, 0x0377, 0x0378, 0x0379, 0x2076, 0x207f, 0x20c5,\n  0x20e0, 0x23c2, 0x23d6, 0x23eb, 0x2539, 0x2578, 0x25a9, 0x25f6,\n  0x2b4a, 0x2dc0, 0x301b, 0x05b3, 0x30bf, 0x70fd, 0x3190, 0x31a1,\n  0x3774, 0x70fd, 0x4792, 0x70fd, 0x60f5, 0x70fd, 0x0028, 0x01c6,\n  0x06bd, 0x06be, 0x065d, 0x065e, 0x70fd, 0x70fd, 0x05c5, 0x05c6,\n  0x05c7, 0x06bc, 0x70bb, 0x70bd, 0x04fd, 0x0601, 0x0602, 0x0603,\n  0x0604, 0x0605, 0x0606, 0x0607, 0x0608, 0x0609, 0x060a, 0x060b,\n  0x060c, 0x060d, 0x060e, 0x060f, 0x0610, 0x0611, 0x0612, 0x0613,\n  0x0614, 0x0615, 0x0616, 0x0617, 0x0618,\n  /* 0xc7 */\n  0x0619, 0x061a, 0x061b, 0x061c, 0x061d, 0x061e, 0x061f, 0x0620,\n  0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627, 0x0628,\n  0x0629, 0x062a, 0x062b, 0x062c, 0x062d, 0x062e, 0x062f, 0x0630,\n  0x0631, 0x0632, 0x0633, 0x0634, 0x0635, 0x0636, 0x0637, 0x0638,\n  0x0639, 0x063a, 0x063b, 0x063c, 0x063d, 0x063e, 0x063f, 0x0640,\n  0x0641, 0x0642, 0x0643, 0x0644, 0x0645, 0x0646, 0x0647, 0x0648,\n  0x0649, 0x064a, 0x064b, 0x064c, 0x064d, 0x064e, 0x064f, 0x0650,\n  0x0651, 0x0652, 0x0653, 0x0661, 0x0662, 0x0663, 0x0664, 0x0665,\n  0x0666, 0x0667, 0x0668, 0x0669, 0x066a, 0x066b, 0x066c, 0x066d,\n  0x066e, 0x066f, 0x0670, 0x0671, 0x0672, 0x0673, 0x0674, 0x0675,\n  0x0676, 0x0677, 0x0678, 0x0679, 0x067a, 0x067b, 0x067c, 0x067d,\n  0x067e, 0x067f, 0x0680, 0x0681, 0x0682, 0x0683, 0x0684, 0x0685,\n  0x0686, 0x0687, 0x0688, 0x0689, 0x068a, 0x068b, 0x068c, 0x068d,\n  0x068e, 0x068f, 0x0690, 0x0691, 0x0692, 0x0693, 0x0694, 0x0695,\n  0x0696, 0x0697, 0x0698, 0x0699, 0x069a, 0x069b, 0x069c, 0x069d,\n  0x069e, 0x069f, 0x06a0, 0x06a1, 0x06a2, 0x06a3, 0x06a4, 0x06a5,\n  0x06a6, 0x06a7, 0x06a8, 0x06a9, 0x06aa, 0x06ab, 0x06ac, 0x06ad,\n  0x06ae, 0x06af, 0x06b0, 0x06b1, 0x06b2, 0x06b3, 0x06b4, 0x06b5,\n  0x06b6, 0x0210, 0x0211, 0x0212, 0x0213, 0x0214, 0x0215, 0x0201,\n  0x0216, 0x0217, 0x0218, 0x0219, 0x021a,\n  /* 0xc8 */\n  0x021b, 0x021c, 0x021d, 0x021e, 0x021f, 0x0220, 0x0221, 0x0222,\n  0x0223, 0x0224, 0x0225, 0x0226, 0x0227, 0x0228, 0x0229, 0x022a,\n  0x022b, 0x022c, 0x022d, 0x022e, 0x022f, 0x0230, 0x0231, 0x0232,\n  0x0233, 0x0234, 0x0235, 0x0251, 0x0236, 0x0237, 0x0238, 0x0239,\n  0x023a, 0x023b, 0x023c, 0x023d, 0x023e, 0x023f, 0x0240, 0x0241,\n  0x0242, 0x0243, 0x0244, 0x0245, 0x0246, 0x0247, 0x0248, 0x0249,\n  0x024a, 0x024b, 0x024c, 0x024d, 0x024e, 0x024f, 0x03e7, 0x03b8,\n  0x03b9, 0x06cf, 0x71cc, 0x209a, 0x718a, 0x2442, 0x1791, 0x7030,\n  0x23c8, 0x7031, 0xd187, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70e2, 0x70e4, 0x7087, 0x7082, 0x0731,\n  0x0316, 0x0321, 0x065b, 0x065c, 0x0500, 0x0504, 0x0506, 0x0507,\n  0x0508, 0x050a, 0x050c, 0x050d, 0x0515, 0x051c, 0x051d, 0x0525,\n  0x0527, 0x052a, 0x052c, 0x052e, 0x0536, 0x053c, 0x053e, 0x0546,\n  0x054a, 0x054c, 0x054d, 0x054f, 0x0556, 0x0557, 0x055e, 0x0563,\n  0x70fd, 0x70fd, 0x70fd, 0x0183, 0x0150, 0x015b, 0x0154, 0x0175,\n  0x00d3, 0x0078, 0x00cb, 0x018a, 0x016a,\n};\nstatic const unsigned short hkscs1999_2uni_pagef9[942] = {\n  /* 0xf9 */\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x70fd,\n  0x70fd, 0x70fd, 0x70fd, 0x70fd, 0x4a81, 0x63b9, 0x5a4f, 0x2afb,\n  0x3292, 0x4ea7, 0x2d3a, 0x0494, 0x04a6, 0x0497, 0x04a0, 0x04ac,\n  0x04a3, 0x049a, 0x04a9, 0x049d, 0x0492, 0x04a4, 0x0495, 0x049e,\n  0x04aa, 0x04a1, 0x0498, 0x04a7, 0x049b, 0x0493, 0x04a5, 0x0496,\n  0x049f, 0x04ab, 0x04a2, 0x0499, 0x04a8, 0x049c, 0x0491, 0x0490,\n  0x04ad, 0x04ae, 0x04b0, 0x04af, 0x70ed,\n  /* 0xfa */\n  0x75c7, 0x63db, 0x765f, 0xa505, 0x574c, 0x15b5, 0x45ef, 0x23f5,\n  0x0989, 0xadc2, 0xdfe4, 0x6444, 0x881b, 0x54ee, 0xa288, 0x4a3c,\n  0x3984, 0x351f, 0xadb3, 0xdfaa, 0x7360, 0xc8f3, 0x81c5, 0x21eb,\n  0x902d, 0x2248, 0xca69, 0xd584, 0x9f00, 0xaf31, 0x9053, 0x70fd,\n  0x743e, 0x31e4, 0x7440, 0x7407, 0x40db, 0x74df, 0x70fd, 0x2341,\n  0x07ba, 0x234e, 0x696c, 0x0a83, 0x5616, 0xae24, 0x7547, 0x23a0,\n  0x9cf4, 0x23aa, 0x7abf, 0x8d3c, 0x73a5, 0x9070, 0x760e, 0x9bb3,\n  0x87c3, 0x2dc2, 0x58fd, 0x7633, 0xa259, 0x23f2, 0x23f8, 0x6db4,\n  0x2409, 0x240f, 0x2411, 0x0fdc, 0x2413, 0xaf26, 0x23f3, 0x2422,\n  0x2582, 0x242d, 0x55cd, 0x3b7e, 0xa02d, 0x31bb, 0x244b, 0x2466,\n  0x247c, 0x24f5, 0x2497, 0x24d4, 0x24f9, 0x2505, 0x4e15, 0x5742,\n  0x2520, 0x57cd, 0xc853, 0x70fd, 0xe0de, 0x2789, 0x40d9, 0xa4c0,\n  0x7894, 0xa52c, 0x2573, 0x70fd, 0x7aa2, 0x3f0b, 0x8566, 0x3a5b,\n  0x45d5, 0x328a, 0x11aa, 0x0c0c, 0x8528, 0x43dd, 0x17a2, 0x25ad,\n  0x25b4, 0xde2b, 0x25be, 0x70fd, 0x8416, 0x8453, 0x49e6, 0x25d3,\n  0xe09b, 0x25e0, 0x25eb, 0x25ee, 0x45a7, 0xb8f2, 0x1259, 0x459c,\n  0x2601, 0x2605, 0x3e89, 0x2089, 0x2a3e, 0x2619, 0x0deb, 0x7a4f,\n  0x2620, 0xa52b, 0x97a3, 0x2636, 0x7b37, 0x2653, 0x4279, 0x276b,\n  0x3897, 0x3f9b, 0x26ad, 0xc893, 0x7c34, 0x279d, 0x26cf, 0x26e4,\n  0x1aa6, 0x854d, 0x7d9d, 0x10b4, 0x7c0d,\n  /* 0xfb */\n  0xdfbc, 0x9198, 0x2787, 0x1fad, 0x266f, 0x4617, 0x27c6, 0x27e9,\n  0x70fd, 0x8717, 0xa57a, 0x1852, 0xa975, 0x38f3, 0x7f74, 0x2877,\n  0x390d, 0x9c0a, 0x38e4, 0x38ed, 0x288d, 0x288f, 0x4af1, 0x2931,\n  0x6887, 0x263e, 0x2940, 0x292f, 0x292d, 0xe166, 0x0963, 0x810f,\n  0x2986, 0xa6e5, 0x3eae, 0x428b, 0x2982, 0x09f1, 0xc9be, 0x2a26,\n  0x82d6, 0x2a43, 0x8314, 0xa8a3, 0x2a66, 0xaff5, 0x2a9c, 0x2aea,\n  0x08a1, 0x2b20, 0x2b1c, 0x80fc, 0x2b3b, 0x2e3f, 0x2983, 0xee90,\n  0xa7b8, 0x64d3, 0x08e1, 0x2b5f, 0x3ae6, 0x0a03, 0x4059, 0x847e,\n  0x2c64, 0x2793, 0x84d2, 0x5705, 0x2c09, 0x7c0e, 0xc9c1, 0xca6a,\n  0x861c, 0x2c19, 0x863b, 0x85f2, 0xcae6, 0x3fb1, 0x8668, 0x8515,\n  0x2c39, 0xcb85, 0x2ceb, 0x2ca3, 0x0a26, 0xae29, 0x70fd, 0x0a48,\n  0x2cd6, 0x4665, 0x2d13, 0xcce1, 0x9094, 0x1085, 0x8751, 0x0a72,\n  0x84f8, 0x30c3, 0x2510, 0x2db6, 0x37c8, 0x2dbc, 0xd50e, 0x1304,\n  0x1b5d, 0x72c4, 0x2e15, 0x33a0, 0x8874, 0xba8c, 0x7625, 0x2e33,\n  0x2ddd, 0x1fd0, 0x2e45, 0x88c4, 0x2e53, 0x45ce, 0x2e54, 0x89e5,\n  0xc868, 0x2e89, 0x1bdd, 0x2ec5, 0x2f29, 0x2f2f, 0x2fcb, 0x8ab9,\n  0x8af7, 0x2f50, 0x2f58, 0x2f86, 0x8b24, 0x2efa, 0x3017, 0x54fc,\n  0x0b6d, 0xad81, 0x8c89, 0x8db3, 0x5487, 0x0b76, 0x0f02, 0x306e,\n  0x3cca, 0x70fd, 0x30ba, 0xa9fc, 0x7b93, 0x25e6, 0x20f7, 0x70fd,\n  0x25e8, 0x85b1, 0x3049, 0x3134, 0xdcc2,\n  /* 0xfc */\n  0x3139, 0x313b, 0x0be0, 0x313c, 0x3a7e, 0x651b, 0x314d, 0x7281,\n  0xf254, 0x0e1e, 0x1bae, 0x81fa, 0x317a, 0xc648, 0x8f50, 0x70fd,\n  0x8fb1, 0x31a3, 0x68bd, 0xcbae, 0x31b2, 0x6440, 0xe036, 0x31e7,\n  0x2ff6, 0x105f, 0xb510, 0x8bea, 0xce38, 0x9168, 0x62d6, 0x735e,\n  0xe029, 0x3271, 0x38c5, 0x86b7, 0x0ca3, 0x10c7, 0x0979, 0x29d0,\n  0x92b4, 0x4b71, 0x1140, 0x32de, 0x70fd, 0x32f3, 0xae02, 0xae0f,\n  0xd553, 0x46a4, 0x2321, 0x2ce0, 0x33a4, 0x5624, 0x3382, 0xf266,\n  0xcc12, 0x33c1, 0x2434, 0x76d6, 0x33c7, 0x2dea, 0xa4f7, 0x935f,\n  0x3413, 0xe19d, 0xe8dd, 0x3410, 0x0c72, 0x9480, 0x93c1, 0x3263,\n  0x339c, 0x375e, 0x35cb, 0x7218, 0x3505, 0x85b0, 0x3515, 0x980d,\n  0x35ac, 0xae5f, 0x0d57, 0x3678, 0x3638, 0x824e, 0x863c, 0x70fd,\n  0x418a, 0x9836, 0x6914, 0xa5cc, 0xb89d, 0x3721, 0x3725, 0x657b,\n  0x0da6, 0x367a, 0x0d97, 0x378d, 0x4116, 0xaea8, 0xaea3, 0x37c5,\n  0x37ad, 0x379f, 0x99fe, 0x37f5, 0xadc0, 0x1df7, 0x3811, 0x13d8,\n  0x8669, 0x3820, 0x3823, 0x321f, 0x9d40, 0x3858, 0x9b77, 0x9b78,\n  0x3884, 0x9b24, 0x9b25, 0x388b, 0x7d35, 0x38a7, 0xb4a6, 0x38b3,\n  0x70fd, 0x8afd, 0x9bb1, 0xddb4, 0x9b48, 0xb5d3, 0x49c5, 0x93f7,\n  0x6aa4, 0x3942, 0xa8dc, 0xaea1, 0x0e6b, 0x3c3a, 0xa0c2, 0x70fd,\n  0x39a7, 0x39a2, 0xa70d, 0xe4ad, 0x3a17, 0x17e9, 0x3a62, 0x4050,\n  0x633c, 0x3a41, 0x9d26, 0xcae0, 0x3a9d,\n  /* 0xfd */\n  0x9daf, 0x3c21, 0x3c4b, 0xe0df, 0x3bb3, 0x3b03, 0x9ecd, 0x3b41,\n  0x3b40, 0x1032, 0x0d41, 0x9f3c, 0x0ec0, 0x39ec, 0x3ba1, 0xe04a,\n  0x15fc, 0x3b76, 0x3bd8, 0x0ee1, 0x7489, 0x5563, 0x22d0, 0x3c39,\n  0x9f59, 0x8d6a, 0x3c85, 0xa003, 0x3cdd, 0x0f33, 0x39f1, 0x3d08,\n  0xe55c, 0x0f4d, 0x3d5d, 0x7863, 0x331e, 0x3d75, 0x3db4, 0x92cd,\n  0x40b5, 0xa1db, 0x7475, 0x8798, 0x0a80, 0x2661, 0xa21a, 0x3e21,\n  0xa43c, 0x3e1c, 0x3e77, 0x8fcb, 0xad71, 0xc891, 0x3e9a, 0x5426,\n  0x3eb9, 0xa33c, 0x17c5, 0xa33d, 0xa6e4, 0xad8c, 0xad80, 0xa289,\n  0x0a25, 0x0feb, 0x7bf2, 0x6c83, 0x9b79, 0x8fd1, 0x518f, 0x3a77,\n  0xca65, 0xcae1, 0xcb2b, 0x3fd6, 0x3f9c, 0x407c, 0x4104, 0xadff,\n  0xa5c5, 0xcbb2, 0x5733, 0xccb4, 0x2407, 0x70fd, 0x70fd, 0x562e,\n  0xe121, 0x70fd, 0xa3af, 0x4653, 0xa4c2, 0x4bcc, 0x404f, 0x2cd1,\n  0x99cb, 0x41f8, 0x0a4d, 0x419d, 0xa3b0, 0x40fa, 0x8357, 0xa57d,\n  0x1855, 0x64f0, 0x4144, 0x415c, 0x104e, 0x4174, 0xe530, 0x103b,\n  0x419f, 0xa684, 0x41d3, 0xa5d1, 0xa695, 0xa579, 0xa530, 0xa4f4,\n  0xa67f, 0x241f, 0xa696, 0xa697, 0xa680, 0xc0dd, 0x424b, 0x427e,\n  0x42a7, 0x4281, 0x42cc, 0x42d5, 0x42d6, 0x42df, 0x1404, 0x10e8,\n  0x43b4, 0x4396, 0xa7b7, 0x432b, 0x4345, 0x2cc8, 0x434a, 0x70fd,\n  0x2edc, 0xa8a5, 0x434f, 0x6462, 0xa801, 0x432c, 0xa99a, 0xaea7,\n  0xaea2, 0x43ba, 0xe1e8, 0x42bd, 0x440e,\n  /* 0xfe */\n  0x6542, 0x4415, 0x2b51, 0x6543, 0x4424, 0x6441, 0xb785, 0x442e,\n  0x4440, 0xadf4, 0x3afd, 0x4455, 0x4457, 0x1155, 0x99c4, 0x3a4d,\n  0x413d, 0x4482, 0x70fd, 0x452b, 0xace3, 0xdeeb, 0x1bed, 0xdec4,\n  0x4528, 0x452e, 0x45cf, 0x45aa, 0x7afa, 0xc7ee, 0x45c9, 0x4649,\n  0xa722, 0x8527, 0xaea4, 0x3863, 0x0a05, 0xae37, 0xae0d, 0xae7b,\n  0x45f7, 0x4615, 0x3b43, 0xaea6, 0x4639, 0x7643, 0x11d7, 0x70fd,\n  0x93ad, 0x4660, 0xe3b2, 0x4647, 0x45e4, 0x4676, 0x55b9, 0x466c,\n  0x0a70, 0x4674, 0x64f1, 0x3c6c, 0x4682, 0x1c53, 0xaf0c, 0xa69f,\n  0xaef9, 0xe18f, 0x2d86, 0xe203, 0x86de, 0x46c8, 0x87c8, 0x470e,\n  0x70fd, 0x471e, 0xe3d9, 0x888b, 0x2e17, 0xe3ac, 0x6485, 0x474d,\n  0x474a, 0x4767, 0x476e, 0xb2c2, 0x1204, 0xb0d3, 0x478e, 0x465d,\n  0x479e, 0x47b4, 0x4802, 0x482c, 0x4851, 0x484f, 0x486f, 0x4876,\n  0xc275, 0x4890, 0x53ef, 0x0b38, 0xc6d1, 0xc6ce, 0x48a1, 0x48a5,\n  0x48b7, 0x48cc, 0xccdf, 0x5662, 0xb3dd, 0xb47d, 0x8adc, 0x491e,\n  0x4926, 0x4940, 0x36ef, 0xb4e0, 0x4958, 0x9c2c, 0x49af, 0xdf64,\n  0xdf68, 0x8501, 0x49f4, 0x70fd, 0x8236, 0xae92, 0x3b0a, 0x4aaf,\n  0x4ac7, 0x4ad3, 0x67a5, 0x4b2e, 0xb760, 0x4ad7, 0x4b34, 0x4ab1,\n  0xd18c, 0x60f8, 0x5a04, 0xe12b, 0xbfc3, 0x911c, 0x4b86, 0x5a80,\n  0x3b42, 0x4b80, 0xb957, 0x4b9d, 0xd639, 0x4b3c, 0x4ba9, 0x402a,\n  0xce66, 0x11a8, 0x4bc6, 0xe4cd, 0x4bd4,\n};\n\nstatic const ucs4_t hkscs1999_2uni_upages[973] = {\n  0x00080, 0x000c0, 0x00100, 0x00140, 0x001c0, 0x00240, 0x00280, 0x002c0,\n  0x00400, 0x00440, 0x01e80, 0x01ec0, 0x02100, 0x02140, 0x02180, 0x021c0,\n  0x023c0, 0x02440, 0x02540, 0x02700, 0x02e80, 0x02ec0, 0x02f00, 0x03000,\n  0x03040, 0x03080, 0x030c0, 0x031c0, 0x03200, 0x03400, 0x03440, 0x03480,\n  0x034c0, 0x03500, 0x03540, 0x03580, 0x035c0, 0x03600, 0x03640, 0x03680,\n  0x036c0, 0x03700, 0x03740, 0x03780, 0x037c0, 0x03800, 0x03840, 0x03880,\n  0x038c0, 0x03900, 0x03940, 0x03980, 0x039c0, 0x03a00, 0x03a40, 0x03a80,\n  0x03ac0, 0x03b00, 0x03b40, 0x03b80, 0x03bc0, 0x03c00, 0x03c40, 0x03cc0,\n  0x03d00, 0x03d40, 0x03d80, 0x03dc0, 0x03e00, 0x03e40, 0x03e80, 0x03ec0,\n  0x03f00, 0x03f40, 0x03f80, 0x03fc0, 0x04000, 0x04040, 0x04080, 0x040c0,\n  0x04100, 0x04140, 0x04180, 0x041c0, 0x04200, 0x04240, 0x04280, 0x042c0,\n  0x04300, 0x04340, 0x04380, 0x043c0, 0x04400, 0x04440, 0x04480, 0x044c0,\n  0x04500, 0x04540, 0x04580, 0x045c0, 0x04600, 0x04640, 0x04680, 0x046c0,\n  0x04700, 0x04740, 0x04780, 0x047c0, 0x04800, 0x04840, 0x04880, 0x048c0,\n  0x04900, 0x04940, 0x04980, 0x049c0, 0x04a00, 0x04a80, 0x04ac0, 0x04b00,\n  0x04b40, 0x04b80, 0x04bc0, 0x04c00, 0x04c40, 0x04c80, 0x04cc0, 0x04d00,\n  0x04d80, 0x04e00, 0x04e40, 0x04e80, 0x04ec0, 0x04f00, 0x04f40, 0x04f80,\n  0x04fc0, 0x05000, 0x05040, 0x05080, 0x050c0, 0x05100, 0x05140, 0x05180,\n  0x051c0, 0x05200, 0x05240, 0x05280, 0x052c0, 0x05300, 0x05340, 0x05380,\n  0x053c0, 0x05400, 0x05440, 0x05480, 0x054c0, 0x05500, 0x05540, 0x05580,\n  0x055c0, 0x05600, 0x05640, 0x05680, 0x056c0, 0x05700, 0x05740, 0x05780,\n  0x057c0, 0x05800, 0x05840, 0x05880, 0x058c0, 0x05900, 0x05940, 0x05980,\n  0x059c0, 0x05a00, 0x05a40, 0x05a80, 0x05ac0, 0x05b00, 0x05b40, 0x05b80,\n  0x05bc0, 0x05c00, 0x05c40, 0x05c80, 0x05cc0, 0x05d00, 0x05d40, 0x05d80,\n  0x05dc0, 0x05e00, 0x05e40, 0x05e80, 0x05ec0, 0x05f00, 0x05f40, 0x05f80,\n  0x05fc0, 0x06000, 0x06040, 0x06080, 0x060c0, 0x06100, 0x06140, 0x06180,\n  0x061c0, 0x06200, 0x06240, 0x06280, 0x062c0, 0x06300, 0x06340, 0x06380,\n  0x063c0, 0x06400, 0x06440, 0x06480, 0x064c0, 0x06500, 0x06540, 0x06580,\n  0x065c0, 0x06600, 0x06640, 0x06680, 0x066c0, 0x06700, 0x06740, 0x06780,\n  0x067c0, 0x06800, 0x06840, 0x06880, 0x068c0, 0x06900, 0x06940, 0x06980,\n  0x069c0, 0x06a00, 0x06a40, 0x06a80, 0x06ac0, 0x06b00, 0x06b40, 0x06b80,\n  0x06bc0, 0x06c00, 0x06c40, 0x06c80, 0x06cc0, 0x06d00, 0x06d40, 0x06d80,\n  0x06e00, 0x06e40, 0x06e80, 0x06ec0, 0x06f00, 0x06f40, 0x06f80, 0x06fc0,\n  0x07000, 0x07040, 0x07080, 0x070c0, 0x07100, 0x07140, 0x07180, 0x071c0,\n  0x07200, 0x07240, 0x07280, 0x072c0, 0x07300, 0x07340, 0x07380, 0x073c0,\n  0x07400, 0x07440, 0x07480, 0x074c0, 0x07500, 0x07540, 0x07580, 0x075c0,\n  0x07600, 0x07640, 0x07680, 0x076c0, 0x07700, 0x07740, 0x07780, 0x077c0,\n  0x07800, 0x07840, 0x07880, 0x078c0, 0x07900, 0x07940, 0x07980, 0x079c0,\n  0x07a00, 0x07a40, 0x07a80, 0x07ac0, 0x07b00, 0x07b40, 0x07b80, 0x07bc0,\n  0x07c00, 0x07c40, 0x07c80, 0x07cc0, 0x07d00, 0x07d40, 0x07d80, 0x07dc0,\n  0x07e00, 0x07e40, 0x07e80, 0x07ec0, 0x07f00, 0x07f40, 0x07f80, 0x07fc0,\n  0x08000, 0x08040, 0x08080, 0x080c0, 0x08100, 0x08140, 0x08180, 0x081c0,\n  0x08200, 0x08240, 0x08280, 0x082c0, 0x08300, 0x08340, 0x08380, 0x083c0,\n  0x08400, 0x08440, 0x08480, 0x084c0, 0x08500, 0x08540, 0x085c0, 0x08600,\n  0x08640, 0x08680, 0x086c0, 0x08740, 0x08780, 0x087c0, 0x08800, 0x08840,\n  0x08880, 0x088c0, 0x08900, 0x08940, 0x08980, 0x089c0, 0x08a00, 0x08a40,\n  0x08a80, 0x08ac0, 0x08b00, 0x08b40, 0x08b80, 0x08bc0, 0x08c40, 0x08c80,\n  0x08cc0, 0x08d00, 0x08d40, 0x08d80, 0x08dc0, 0x08e00, 0x08e40, 0x08e80,\n  0x08ec0, 0x08f00, 0x08f40, 0x08f80, 0x08fc0, 0x09000, 0x09040, 0x09080,\n  0x090c0, 0x09140, 0x09180, 0x091c0, 0x09200, 0x09240, 0x09280, 0x092c0,\n  0x09300, 0x09340, 0x09380, 0x093c0, 0x09400, 0x09440, 0x09480, 0x094c0,\n  0x09500, 0x09540, 0x09580, 0x095c0, 0x09600, 0x09640, 0x09680, 0x096c0,\n  0x09700, 0x09740, 0x09780, 0x097c0, 0x09800, 0x09840, 0x09880, 0x098c0,\n  0x09900, 0x09940, 0x09980, 0x099c0, 0x09a00, 0x09a40, 0x09a80, 0x09ac0,\n  0x09b00, 0x09b40, 0x09b80, 0x09bc0, 0x09c00, 0x09c40, 0x09d00, 0x09d40,\n  0x09d80, 0x09dc0, 0x09e00, 0x09e40, 0x09e80, 0x09ec0, 0x09f00, 0x09f40,\n  0x09f80, 0x0f900, 0x0ff00, 0x0ffc0, 0x20000, 0x20040, 0x20080, 0x200c0,\n  0x20100, 0x20180, 0x201c0, 0x20200, 0x20240, 0x20280, 0x202c0, 0x20300,\n  0x20340, 0x20380, 0x203c0, 0x20400, 0x20440, 0x20480, 0x204c0, 0x20540,\n  0x20580, 0x205c0, 0x20600, 0x20640, 0x20700, 0x20740, 0x20800, 0x20840,\n  0x208c0, 0x20900, 0x20940, 0x209c0, 0x20a00, 0x20a40, 0x20a80, 0x20ac0,\n  0x20b00, 0x20b80, 0x20bc0, 0x20c00, 0x20c40, 0x20c80, 0x20cc0, 0x20d00,\n  0x20d40, 0x20d80, 0x20dc0, 0x20e00, 0x20e40, 0x20e80, 0x20ec0, 0x20f00,\n  0x20f40, 0x20f80, 0x20fc0, 0x21000, 0x21040, 0x21080, 0x210c0, 0x21100,\n  0x21140, 0x21180, 0x211c0, 0x21200, 0x21240, 0x21280, 0x212c0, 0x21300,\n  0x21340, 0x21380, 0x213c0, 0x21400, 0x21440, 0x21480, 0x214c0, 0x21540,\n  0x21580, 0x21600, 0x21640, 0x21680, 0x216c0, 0x21700, 0x21740, 0x21780,\n  0x217c0, 0x21800, 0x21840, 0x21880, 0x218c0, 0x21900, 0x21940, 0x21980,\n  0x219c0, 0x21a00, 0x21a40, 0x21b40, 0x21bc0, 0x21c00, 0x21c40, 0x21c80,\n  0x21d40, 0x21d80, 0x21dc0, 0x21e00, 0x21e80, 0x21ec0, 0x21f00, 0x21f40,\n  0x21f80, 0x21fc0, 0x22040, 0x22080, 0x220c0, 0x22100, 0x22140, 0x22180,\n  0x221c0, 0x22200, 0x22240, 0x22300, 0x22380, 0x223c0, 0x22440, 0x22480,\n  0x224c0, 0x22500, 0x22540, 0x22580, 0x22600, 0x22640, 0x22680, 0x226c0,\n  0x22700, 0x22740, 0x22780, 0x227c0, 0x22800, 0x22840, 0x22880, 0x228c0,\n  0x22900, 0x22940, 0x22980, 0x22a40, 0x22ac0, 0x22b00, 0x22b40, 0x22bc0,\n  0x22c00, 0x22c40, 0x22c80, 0x22cc0, 0x22d00, 0x22d40, 0x22d80, 0x22dc0,\n  0x22e00, 0x22e40, 0x22e80, 0x22ec0, 0x22f40, 0x22fc0, 0x23000, 0x23040,\n  0x23080, 0x230c0, 0x23100, 0x23140, 0x23180, 0x231c0, 0x23200, 0x23240,\n  0x23280, 0x232c0, 0x23300, 0x23380, 0x233c0, 0x23400, 0x23440, 0x234c0,\n  0x23500, 0x23540, 0x23580, 0x235c0, 0x23600, 0x23640, 0x23680, 0x236c0,\n  0x23700, 0x23740, 0x23780, 0x237c0, 0x23800, 0x239c0, 0x23a80, 0x23ac0,\n  0x23b40, 0x23c80, 0x23cc0, 0x23d40, 0x23d80, 0x23dc0, 0x23e00, 0x23e80,\n  0x23ec0, 0x23f00, 0x23f40, 0x23f80, 0x23fc0, 0x24000, 0x24040, 0x24080,\n  0x240c0, 0x24100, 0x24140, 0x24180, 0x241c0, 0x24200, 0x24240, 0x24280,\n  0x242c0, 0x24300, 0x24340, 0x24380, 0x243c0, 0x24400, 0x24440, 0x24480,\n  0x244c0, 0x24500, 0x24540, 0x245c0, 0x24600, 0x24640, 0x24680, 0x246c0,\n  0x24700, 0x24780, 0x247c0, 0x24800, 0x24880, 0x248c0, 0x24900, 0x24940,\n  0x24980, 0x249c0, 0x24a00, 0x24a40, 0x24a80, 0x24ac0, 0x24b40, 0x24bc0,\n  0x24c00, 0x24c80, 0x24cc0, 0x24d00, 0x24d80, 0x24dc0, 0x24e00, 0x24e40,\n  0x24e80, 0x24f00, 0x24f40, 0x24f80, 0x24fc0, 0x25000, 0x25040, 0x25080,\n  0x25100, 0x25140, 0x251c0, 0x25200, 0x25240, 0x25280, 0x252c0, 0x25300,\n  0x25400, 0x25440, 0x25500, 0x25540, 0x25580, 0x255c0, 0x25600, 0x25640,\n  0x25680, 0x256c0, 0x25700, 0x25740, 0x257c0, 0x25840, 0x258c0, 0x25900,\n  0x25940, 0x25980, 0x259c0, 0x25a80, 0x25ac0, 0x25b40, 0x25b80, 0x25bc0,\n  0x25c00, 0x25c40, 0x25c80, 0x25cc0, 0x25d00, 0x25d40, 0x25e00, 0x25e40,\n  0x25e80, 0x25ec0, 0x25f00, 0x25f40, 0x25fc0, 0x26000, 0x26040, 0x26080,\n  0x26100, 0x26140, 0x26180, 0x261c0, 0x26240, 0x262c0, 0x26300, 0x26340,\n  0x26380, 0x263c0, 0x26400, 0x26440, 0x26480, 0x26500, 0x26540, 0x26580,\n  0x26600, 0x26680, 0x266c0, 0x26700, 0x26740, 0x26780, 0x267c0, 0x26800,\n  0x26840, 0x26880, 0x268c0, 0x26900, 0x26940, 0x26980, 0x269c0, 0x26a00,\n  0x26a40, 0x26b00, 0x26b40, 0x26b80, 0x26bc0, 0x26c00, 0x26c40, 0x26c80,\n  0x26cc0, 0x26d00, 0x26d40, 0x26d80, 0x26dc0, 0x26e00, 0x26e40, 0x26e80,\n  0x26ec0, 0x26f00, 0x26f40, 0x26f80, 0x26fc0, 0x27000, 0x27040, 0x27080,\n  0x270c0, 0x27100, 0x27140, 0x271c0, 0x27200, 0x27280, 0x272c0, 0x27380,\n  0x27400, 0x27440, 0x27480, 0x27540, 0x27580, 0x275c0, 0x27600, 0x27640,\n  0x27680, 0x27700, 0x27740, 0x27780, 0x277c0, 0x27840, 0x27880, 0x278c0,\n  0x27900, 0x27940, 0x27980, 0x279c0, 0x27a00, 0x27a40, 0x27a80, 0x27ac0,\n  0x27b00, 0x27b40, 0x27bc0, 0x27c00, 0x27d00, 0x27d40, 0x27d80, 0x27dc0,\n  0x27e40, 0x27f00, 0x27fc0, 0x28000, 0x28040, 0x28080, 0x280c0, 0x28100,\n  0x28140, 0x28180, 0x28200, 0x28240, 0x28280, 0x282c0, 0x28300, 0x28340,\n  0x28380, 0x28400, 0x28440, 0x28480, 0x28500, 0x28540, 0x285c0, 0x28600,\n  0x28680, 0x286c0, 0x28700, 0x28800, 0x28900, 0x28940, 0x28980, 0x289c0,\n  0x28a00, 0x28a40, 0x28a80, 0x28ac0, 0x28b00, 0x28b40, 0x28b80, 0x28bc0,\n  0x28c00, 0x28cc0, 0x28d00, 0x28d80, 0x28e00, 0x28e40, 0x28e80, 0x28ec0,\n  0x28fc0, 0x29080, 0x290c0, 0x29100, 0x29140, 0x29180, 0x291c0, 0x29400,\n  0x29440, 0x294c0, 0x29580, 0x295c0, 0x29700, 0x297c0, 0x29800, 0x29840,\n  0x29880, 0x298c0, 0x29900, 0x29940, 0x29980, 0x299c0, 0x29a00, 0x29a40,\n  0x29b00, 0x29bc0, 0x29c80, 0x29d00, 0x29d40, 0x29d80, 0x29dc0, 0x29e00,\n  0x29e40, 0x29e80, 0x29ec0, 0x29f00, 0x29f80, 0x29fc0, 0x2a000, 0x2a080,\n  0x2a0c0, 0x2a100, 0x2a140, 0x2a180, 0x2a1c0, 0x2a200, 0x2a280, 0x2a2c0,\n  0x2a380, 0x2a400, 0x2a440, 0x2a5c0, 0x2a600, 0x2a640, 0x2a680, 0x2f800,\n  0x2f840, 0x2f880, 0x2f8c0, 0x2f980, 0x2f9c0,\n};\n\nstatic int\nhkscs1999_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x88 && c1 <= 0x8b) || (c1 >= 0x8d && c1 <= 0xa0) || (c1 >= 0xc6 && c1 <= 0xc8) || (c1 >= 0xf9 && c1 <= 0xfe)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n        unsigned int i = 157 * (c1 - 0x80) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n        ucs4_t wc = 0xfffd;\n        unsigned short swc;\n        if (i < 2041) {\n          if (i < 1883)\n            swc = hkscs1999_2uni_page88[i-1256],\n            wc = hkscs1999_2uni_upages[swc>>6] | (swc & 0x3f);\n        } else if (i < 10990) {\n          if (i < 5181)\n            swc = hkscs1999_2uni_page8d[i-2041],\n            wc = hkscs1999_2uni_upages[swc>>6] | (swc & 0x3f);\n        } else if (i < 18997) {\n          if (i < 11461)\n            swc = hkscs1999_2uni_pagec6[i-10990],\n            wc = hkscs1999_2uni_upages[swc>>6] | (swc & 0x3f);\n        } else {\n          if (i < 19939)\n            swc = hkscs1999_2uni_pagef9[i-18997],\n            wc = hkscs1999_2uni_upages[swc>>6] | (swc & 0x3f);\n        }\n        if (wc != 0xfffd) {\n          *pwc = wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short hkscs1999_2charset[4698] = {\n  0xc6d8, 0x8859, 0x8857, 0x885d, 0x885b, 0x8866, 0x8861, 0x885f,\n  0x886a, 0x8868, 0x886f, 0x886d, 0x88a7, 0x8873, 0x8871, 0x8877,\n  0x8875, 0xc8fb, 0x887b, 0x8879, 0x88a2, 0x8856, 0x8867, 0x885a,\n  0x886c, 0x885c, 0x886e, 0x8870, 0xc8fc, 0x885e, 0x8874, 0xc8fa,\n  0x8878, 0x8858, 0x8869, 0x8872, 0x8860, 0x8876, 0x887a, 0x887c,\n  0x887d, 0x887e, 0x88a1, 0xc8f6, 0x886b, 0xc8f8, 0xc8f7, 0x88a8,\n  0xc8fe, 0xc8f9, 0xc8f5, 0xc8fd, 0xc6d9, 0xc7f9, 0xc7f3, 0xc7f4,\n  0xc7f5, 0xc7f6, 0xc7f7, 0xc7f8, 0xc7fa, 0xc7fb, 0xc7fc, 0xc7fd,\n  0xc7fe, 0xc840, 0xc841, 0xc842, 0xc843, 0xc844, 0xc845, 0xc846,\n  0xc847, 0xc848, 0xc849, 0xc84a, 0xc84b, 0xc84c, 0xc84d, 0xc84e,\n  0xc84f, 0xc850, 0xc851, 0xc852, 0xc853, 0xc854, 0xc855, 0xc856,\n  0xc857, 0xc858, 0xc859, 0xc85a, 0xc85c, 0xc85d, 0xc85e, 0xc85f,\n  0xc860, 0xc861, 0xc862, 0xc863, 0xc864, 0xc865, 0xc866, 0xc867,\n  0xc868, 0xc869, 0xc86a, 0xc86b, 0xc86c, 0xc86d, 0xc86e, 0xc86f,\n  0xc870, 0xc871, 0xc872, 0xc873, 0xc874, 0xc875, 0xc85b, 0x8863,\n  0x88a4, 0x8865, 0x88a6, 0xc8d2, 0xc8d3, 0xc6b5, 0xc6b6, 0xc6b7,\n  0xc6b8, 0xc6b9, 0xc6ba, 0xc6bb, 0xc6bc, 0xc6bd, 0xc6be, 0xc877,\n  0xc878, 0xc876, 0x88a9, 0x88aa, 0xc6a1, 0xc6a2, 0xc6a3, 0xc6a4,\n  0xc6a5, 0xc6a6, 0xc6a7, 0xc6a8, 0xc6a9, 0xc6aa, 0xc6ab, 0xc6ac,\n  0xc6ad, 0xc6ae, 0xc6af, 0xc6b0, 0xc6b1, 0xc6b2, 0xc6b3, 0xc6b4,\n  0xf9f9, 0xf9f8, 0xf9e6, 0xf9ef, 0xf9dd, 0xf9e8, 0xf9f1, 0xf9df,\n  0xf9ec, 0xf9f5, 0xf9e3, 0xf9ee, 0xf9f7, 0xf9e5, 0xf9e9, 0xf9f2,\n  0xf9e0, 0xf9eb, 0xf9f4, 0xf9e2, 0xf9e7, 0xf9f0, 0xf9de, 0xf9ed,\n  0xf9f6, 0xf9e4, 0xf9ea, 0xf9f3, 0xf9e1, 0xf9fa, 0xf9fb, 0xf9fd,\n  0xf9fc, 0xc6e6, 0xc8d6, 0xc8d7, 0xc8d8, 0xc8d9, 0xc8da, 0xc8db,\n  0xc8dc, 0xc8dd, 0xc8de, 0xc8df, 0xc8e0, 0xc8e1, 0xc8e2, 0xc8e3,\n  0xc8e4, 0xc8e5, 0xc8e6, 0xc8e7, 0xc8e8, 0xc8e9, 0xc8ea, 0xc8eb,\n  0xc8ec, 0xc8ed, 0xc8ee, 0xc8ef, 0xc8f0, 0xc8f1, 0xc6cd, 0xc6e0,\n  0xc6e1, 0xc6e2, 0xc6e7, 0xc6e8, 0xc6e9, 0xc6ea, 0xc6eb, 0xc6ec,\n  0xc6ed, 0xc6ee, 0xc6ef, 0xc6f0, 0xc6f1, 0xc6f2, 0xc6f3, 0xc6f4,\n  0xc6f5, 0xc6f6, 0xc6f7, 0xc6f8, 0xc6f9, 0xc6fa, 0xc6fb, 0xc6fc,\n  0xc6fd, 0xc6fe, 0xc740, 0xc741, 0xc742, 0xc743, 0xc744, 0xc745,\n  0xc746, 0xc747, 0xc748, 0xc749, 0xc74a, 0xc74b, 0xc74c, 0xc74d,\n  0xc74e, 0xc74f, 0xc750, 0xc751, 0xc752, 0xc753, 0xc754, 0xc755,\n  0xc756, 0xc757, 0xc758, 0xc759, 0xc75a, 0xc75b, 0xc75c, 0xc75d,\n  0xc75e, 0xc75f, 0xc760, 0xc761, 0xc762, 0xc763, 0xc764, 0xc765,\n  0xc766, 0xc767, 0xc768, 0xc769, 0xc76a, 0xc76b, 0xc76c, 0xc76d,\n  0xc76e, 0xc76f, 0xc770, 0xc771, 0xc772, 0xc773, 0xc774, 0xc775,\n  0xc776, 0xc777, 0xc778, 0xc779, 0xc77a, 0xc8d4, 0xc8d5, 0xc6dc,\n  0xc6dd, 0xc77b, 0xc77c, 0xc77d, 0xc77e, 0xc7a1, 0xc7a2, 0xc7a3,\n  0xc7a4, 0xc7a5, 0xc7a6, 0xc7a7, 0xc7a8, 0xc7a9, 0xc7aa, 0xc7ab,\n  0xc7ac, 0xc7ad, 0xc7ae, 0xc7af, 0xc7b0, 0xc7b1, 0xc7b2, 0xc7b3,\n  0xc7b4, 0xc7b5, 0xc7b6, 0xc7b7, 0xc7b8, 0xc7b9, 0xc7ba, 0xc7bb,\n  0xc7bc, 0xc7bd, 0xc7be, 0xc7bf, 0xc7c0, 0xc7c1, 0xc7c2, 0xc7c3,\n  0xc7c4, 0xc7c5, 0xc7c6, 0xc7c7, 0xc7c8, 0xc7c9, 0xc7ca, 0xc7cb,\n  0xc7cc, 0xc7cd, 0xc7ce, 0xc7cf, 0xc7d0, 0xc7d1, 0xc7d2, 0xc7d3,\n  0xc7d4, 0xc7d5, 0xc7d6, 0xc7d7, 0xc7d8, 0xc7d9, 0xc7da, 0xc7db,\n  0xc7dc, 0xc7dd, 0xc7de, 0xc7df, 0xc7e0, 0xc7e1, 0xc7e2, 0xc7e3,\n  0xc7e4, 0xc7e5, 0xc7e6, 0xc7e7, 0xc7e8, 0xc7e9, 0xc7ea, 0xc7eb,\n  0xc7ec, 0xc7ed, 0xc7ee, 0xc7ef, 0xc7f0, 0xc7f1, 0xc7f2, 0xc6e3,\n  0xc6da, 0xc6db, 0x8840, 0x8841, 0x8842, 0x8843, 0x8844, 0x8846,\n  0x8849, 0x884a, 0x884d, 0x884f, 0x8850, 0x8851, 0x8852, 0x8854,\n  0x8855, 0xc879, 0xc8d1, 0x9277, 0x96df, 0x89d5, 0x93cd, 0x9bdf,\n  0xfa68, 0x89da, 0x8f59, 0x89db, 0x8f5d, 0x89dc, 0x96f7, 0x8ada,\n  0x8bdc, 0x97db, 0x9e53, 0x9daa, 0x9bea, 0x8a6e, 0x8bc8, 0x89e8,\n  0x89ea, 0xfb70, 0x89ed, 0x94dd, 0x89ee, 0x9eb4, 0x8ad3, 0x92db,\n  0x94db, 0x89f9, 0xfb7a, 0x89fb, 0x9efc, 0x89fc, 0x89bf, 0x89fe,\n  0x89e6, 0x9d46, 0x9dee, 0xa07e, 0xa068, 0x98e9, 0x8b68, 0x8dfd,\n  0x8bbe, 0x9fd9, 0x8aeb, 0x9fd7, 0x8b6a, 0x9c5c, 0x8bb1, 0xfb5e,\n  0x9df3, 0xa0d0, 0xfc66, 0x92e9, 0x9aec, 0x8fab, 0xfa48, 0x8e45,\n  0x9c6f, 0x9ede, 0x89ef, 0x96e9, 0x9ebb, 0x94de, 0x9eb8, 0x97ba,\n  0xfb65, 0x95d6, 0x9cbb, 0x97da, 0x8f45, 0xfb7d, 0x9158, 0xfe64,\n  0x9856, 0x9b4d, 0x935b, 0x95c7, 0x97e7, 0x9359, 0x91f5, 0x97b8,\n  0xfda2, 0xfbb6, 0x92fa, 0x9357, 0x8ba6, 0xfbb9, 0x97b0, 0xfdc4,\n  0x9ca1, 0x91f2, 0x91f9, 0x8ff1, 0x9745, 0x9853, 0xfe78, 0xfbc1,\n  0x9251, 0x9dad, 0xfd6c, 0xfa6b, 0x9bc2, 0x9a7b, 0x8b60, 0x934b,\n  0x9abd, 0x91b7, 0x95b4, 0xfec5, 0x9ef0, 0x8d64, 0x9269, 0x8d67,\n  0xfbea, 0xfbef, 0x8d68, 0x93eb, 0xfc42, 0x9166, 0xfacd, 0x93dd,\n  0x8bcc, 0x8d6d, 0x8d6e, 0x96a8, 0xfca6, 0x8d6f, 0x8d70, 0xfc64,\n  0x9060, 0x8d74, 0x97c3, 0x8ad0, 0x9274, 0x9bbe, 0x9cc8, 0x9cba,\n  0x8d78, 0x9eb9, 0x955a, 0x91b4, 0x8a48, 0x8d7d, 0x8a7d, 0x8ac2,\n  0xfd4a, 0x8da1, 0x8ad1, 0xfcb4, 0x8b47, 0x93a4, 0x9eda, 0x8a51,\n  0x8da6, 0x9ec5, 0xfcc4, 0xa078, 0x94b5, 0xfcc2, 0x8a6b, 0x8dab,\n  0xfae8, 0x8dad, 0xfc49, 0x93c1, 0x906f, 0x8db0, 0x947e, 0x90fa,\n  0x9479, 0x8db2, 0xfcee, 0x997b, 0x8db4, 0x8db7, 0x91b3, 0x8dbb,\n  0x8dba, 0x8dbc, 0x9044, 0xfd4c, 0x93e4, 0x93e0, 0xfd53, 0x8dc3,\n  0x9bb8, 0xfbf0, 0x93e9, 0x93f6, 0x8dc5, 0x8dca, 0x8dcc, 0xfd5d,\n  0x93b5, 0xfd61, 0x9cf8, 0x9252, 0xa0e8, 0x9ca5, 0x8dd6, 0x97c0,\n  0xa0de, 0x97d2, 0xfaa5, 0xfda3, 0x8ddb, 0x8eaf, 0x91b5, 0xfd49,\n  0xfdd1, 0x8deb, 0x97c6, 0xfdce, 0x90fc, 0xfc59, 0x96d6, 0x97c5,\n  0x8def, 0x97d7, 0x8df0, 0x96a6, 0xfbbf, 0x8df3, 0x9449, 0x8df5,\n  0x9872, 0x8e6b, 0xfafd, 0x8f50, 0x9dcc, 0xfc65, 0x996e, 0x94a1,\n  0x8f63, 0xa0da, 0x9253, 0xfde9, 0x9db5, 0x9879, 0x9d5d, 0x8d63,\n  0x9669, 0x9f70, 0xfc6a, 0x8ac7, 0x89d7, 0xfe4d, 0x9edd, 0xfefb,\n  0x98bc, 0xfacc, 0x95b0, 0x9464, 0x936f, 0x94b9, 0x95ec, 0x91ee,\n  0x98c3, 0x95f6, 0x8ffd, 0x98c5, 0x9766, 0xfe6e, 0x97dd, 0x92d2,\n  0x9761, 0x98cb, 0x95f0, 0x975d, 0x91e3, 0x98cc, 0x9469, 0x98cd,\n  0x98ce, 0x95fc, 0x94a3, 0x9662, 0xfeb6, 0x9463, 0x98d0, 0x98d1,\n  0x9475, 0xfae0, 0x9472, 0x98d6, 0x8af0, 0x98d9, 0x98db, 0x98dd,\n  0x98a8, 0x8a6d, 0x8afb, 0x8aae, 0xfbc9, 0x98e4, 0x98e6, 0x98e8,\n  0x8a4d, 0x9257, 0x95df, 0xa0ac, 0x98eb, 0x98ec, 0x98f4, 0x8ab8,\n  0x9ee7, 0x94bc, 0xfcd1, 0x9cc6, 0x9e7e, 0x98fe, 0xfde8, 0x9940,\n  0x94c9, 0x94d3, 0x9946, 0x90c0, 0x94d1, 0x9573, 0x93c2, 0x9948,\n  0x994b, 0x8e55, 0x994e, 0x8efe, 0x8e59, 0x94ec, 0x94ef, 0x8f74,\n  0x9955, 0x9544, 0x9956, 0x9959, 0x995b, 0xfa45, 0x90b7, 0x9743,\n  0x95cd, 0x97c9, 0xfd50, 0x8eb9, 0x95c6, 0x9967, 0x8ab9, 0x8dfc,\n  0x8a76, 0x9d51, 0x9973, 0x9d4f, 0x997a, 0x9564, 0x99a1, 0x99a5,\n  0x99a7, 0x8eed, 0x99ad, 0xc87e, 0x946e, 0x8f70, 0xfad0, 0x99b3,\n  0xa053, 0x965c, 0xfd7a, 0x97fe, 0x92bd, 0x97fd, 0x8f64, 0xfcf7,\n  0x9562, 0x97cd, 0x9e64, 0x924c, 0x8ec9, 0x99bc, 0x9da5, 0x8f54,\n  0x8f7c, 0x8ea2, 0x8f7a, 0x97ae, 0x96c8, 0x99c3, 0x90d6, 0x9cbe,\n  0x8f76, 0x9470, 0xfb4b, 0xfdca, 0x8ec7, 0xa0f9, 0x8fa9, 0x99c7,\n  0x90d7, 0x9edf, 0x99ce, 0x8fba, 0x8feb, 0x99cf, 0x8fc2, 0x92c9,\n  0x97dc, 0x95b3, 0x9c79, 0x95b2, 0x8fdb, 0x9be3, 0x9e7a, 0x9bee,\n  0x99de, 0xfafa, 0x8a52, 0x99e1, 0x8a67, 0x8bb5, 0x8aac, 0x99e9,\n  0xfbca, 0x97de, 0x95d1, 0x99f5, 0xfc4a, 0x9ba9, 0xfbdc, 0xfe56,\n  0x9ea4, 0x9d49, 0x95db, 0x89c5, 0x99f8, 0x9664, 0x9055, 0x96d4,\n  0x977c, 0x964d, 0x97e1, 0x9a48, 0x9a49, 0xfe7d, 0x90aa, 0x9a50,\n  0x9347, 0x8ed8, 0x90c9, 0x9a55, 0x90bc, 0x9a58, 0x8bb8, 0x90d5,\n  0x9641, 0x9a5a, 0x9a5c, 0x97c2, 0x8abb, 0x9baa, 0x90f5, 0x9a60,\n  0x9145, 0x9a63, 0x8bb6, 0xfccf, 0x966b, 0x9a6e, 0x914f, 0x9746,\n  0xa0e6, 0x92d7, 0x9675, 0x93d4, 0x91bb, 0x9679, 0x9a70, 0x9678,\n  0x91cd, 0x9c4a, 0xa06f, 0xa06a, 0x915f, 0x9fa5, 0x89ba, 0x9ecd,\n  0x9a79, 0x9dce, 0x9d73, 0x96b9, 0x96bc, 0x9cd1, 0x89b7, 0x9eee,\n  0xfb43, 0x9ec9, 0xfbd3, 0x91ae, 0x9d78, 0x9d7b, 0x9eb3, 0x9eb2,\n  0x9dd6, 0x994f, 0x89ce, 0x8bc0, 0x9fc4, 0x8bd4, 0xc6bf, 0x8bf9,\n  0x8946, 0xc6c0, 0xfae5, 0xc87b, 0x8bc6, 0x9c57, 0x9afb, 0x89d0,\n  0x89cf, 0xc6c1, 0x89d1, 0x89e2, 0x927e, 0x9dba, 0xc6c2, 0xfbf8,\n  0x8bc7, 0x926b, 0x89d2, 0x9fcf, 0x9da9, 0x89d3, 0x99e2, 0x9267,\n  0x92a4, 0x894e, 0x894f, 0x9278, 0x91b6, 0x89d4, 0x9fd2, 0x92a7,\n  0x95a2, 0x926e, 0x96ea, 0x926f, 0x92a3, 0x8950, 0xfa57, 0x9866,\n  0x89d6, 0x98b2, 0x92ab, 0x96de, 0x92ac, 0x9f6e, 0x8ef2, 0x9f6c,\n  0x89d8, 0xfa59, 0x92a8, 0x9163, 0x9f73, 0x92ad, 0x9be9, 0x92a9,\n  0x92aa, 0x89d9, 0xfd56, 0x9fa8, 0x92a1, 0x90e3, 0xa0a6, 0x94ab,\n  0xfc72, 0x97c4, 0x92ae, 0xfa67, 0x92a2, 0xfa69, 0x9268, 0x8951,\n  0xfa6f, 0xfa71, 0x8952, 0x945a, 0xc6c3, 0x89dd, 0xc8a2, 0xc6c4,\n  0x9e52, 0x8953, 0x9e55, 0x92ba, 0xc6c5, 0xfa7d, 0xfaa8, 0x9a68,\n  0xfa47, 0xfa7e, 0x92bb, 0xfdb6, 0xfaa2, 0xfaa3, 0xfaa4, 0x9bb4,\n  0xfaa6, 0x89df, 0xfddb, 0xfaa9, 0x8954, 0xfaab, 0xfc7a, 0x89e0,\n  0x9f4f, 0xc87d, 0x89e1, 0xfab0, 0x9fcd, 0xa0e7, 0xfab1, 0x89a6,\n  0x9efa, 0xfab2, 0xfab4, 0x92c4, 0x9f6f, 0x8bb0, 0x9fac, 0x89e3,\n  0x9bd3, 0x89e4, 0xfab5, 0x9fd5, 0x8955, 0x92c5, 0x8956, 0xfab3,\n  0xfab6, 0xfab7, 0x9edc, 0xfbc4, 0x9f71, 0xfaba, 0x92c7, 0xc6c6,\n  0x9a4c, 0x89e5, 0x9f7d, 0xa0a9, 0xfac4, 0xc6c7, 0x8957, 0xfaaa,\n  0x8958, 0x8be3, 0x8b61, 0x9af1, 0x9eb7, 0xc6c8, 0xfad1, 0xfad2,\n  0x9eba, 0xfad4, 0xfad9, 0xfadb, 0x9ce0, 0xfbf7, 0xfbfa, 0x89e7,\n  0xa07a, 0xfadc, 0xfadd, 0x89e9, 0xc6c9, 0xfae2, 0x89eb, 0xfae3,\n  0x90c8, 0x92da, 0x8959, 0x9cf5, 0x895a, 0xfae7, 0x9fa2, 0xfaea,\n  0xfaed, 0x8fad, 0xfb59, 0xfaef, 0x96ef, 0x9dec, 0x9dca, 0xfd6d,\n  0x89ec, 0xfb44, 0x9de2, 0x9ec0, 0x9e56, 0x9f79, 0x9ac7, 0xfaf4,\n  0x98a1, 0xfaf8, 0x89f0, 0x9e47, 0x9df7, 0x9fd3, 0x9aca, 0x89f1,\n  0xfaf9, 0x8e5a, 0x89f2, 0x89f3, 0x925d, 0x8b51, 0x92e0, 0x89f4,\n  0x9fd4, 0x8a79, 0x89f5, 0x97a7, 0x93ba, 0x9e58, 0x89f6, 0x9e57,\n  0x89f7, 0x8a41, 0x89f8, 0xfaf1, 0x89fa, 0xfb42, 0xfabf, 0xfba3,\n  0xfaf7, 0x9e4e, 0x94dc, 0x95da, 0x9df8, 0x9f6a, 0x8ab7, 0xfb46,\n  0x8a46, 0xfb47, 0x9148, 0x92de, 0x8b53, 0x9df6, 0x9bda, 0x9d7e,\n  0x89fd, 0x99e4, 0x9e43, 0x9de9, 0x8f52, 0x9df5, 0x9df0, 0x99e7,\n  0x8bbd, 0x9def, 0x9fb7, 0x9dd0, 0x9feb, 0x8da9, 0x9dcf, 0x98e1,\n  0x9de5, 0x9dc8, 0xfb4f, 0x9deb, 0xfb54, 0xfb55, 0x9aa2, 0x8ad6,\n  0x9a5f, 0x9ef5, 0x8fb7, 0x9ad2, 0x9e6a, 0x9ee8, 0x8bbf, 0x91c2,\n  0x9d62, 0x9260, 0x925e, 0x91c1, 0x8ac5, 0x97a3, 0x8b6c, 0x8d7e,\n  0x9c54, 0x9dbd, 0x9cc5, 0x895b, 0xfb5c, 0xfb5b, 0xfb57, 0x98c7,\n  0xfb5a, 0x9cee, 0x92e2, 0x94a7, 0x9bd4, 0xfb64, 0xfb76, 0xfb60,\n  0x99e5, 0x9ac2, 0x91fb, 0xa073, 0x9f72, 0x9fcc, 0x98a5, 0x92e8,\n  0x9bbc, 0x96f3, 0x92e7, 0xfc67, 0x8b7d, 0x9bf4, 0x9ef7, 0x9ec1,\n  0x996f, 0x96f1, 0x8e41, 0x954a, 0x97e6, 0x96f5, 0x92e6, 0x9f42,\n  0xfb67, 0x99a9, 0xfae6, 0xfb69, 0x97e5, 0x967d, 0xfb6c, 0x99a2,\n  0x9abb, 0x9a65, 0x944e, 0xfb6e, 0x99df, 0x98e3, 0x9254, 0x967b,\n  0x8aaf, 0x8baf, 0x9ebd, 0x9ee6, 0xfb6f, 0x8ee1, 0x9b7d, 0x9c7e,\n  0xf9d9, 0x92ea, 0xfb72, 0xfb71, 0x895c, 0x98f0, 0x96f2, 0xfb74,\n  0x8bc1, 0x895d, 0x89de, 0x895e, 0xc6ca, 0xfe42, 0xfb7b, 0x895f,\n  0x8960, 0x9bcd, 0x9dd3, 0x984c, 0x9752, 0x95c3, 0x9bb6, 0x9ab9,\n  0x97b3, 0x9f74, 0x92f1, 0x97df, 0xfba6, 0xfbab, 0x9877, 0x9854,\n  0x95c5, 0x9d55, 0xfbb2, 0x957e, 0x9742, 0x94e6, 0x92f5, 0x92fd,\n  0xfba2, 0x9c51, 0x94e9, 0x985c, 0x92f0, 0x944c, 0x916b, 0x8b78,\n  0x94e2, 0x984f, 0xfbb5, 0x9271, 0x9365, 0x985b, 0x9850, 0x97bc,\n  0x92f3, 0x9340, 0x984d, 0x9572, 0xfdef, 0xfdc1, 0xfbba, 0x92eb,\n  0xfc73, 0x97b7, 0xfbb4, 0x90a7, 0x9741, 0x92f4, 0xfbbc, 0x9577,\n  0x9ee2, 0x8f78, 0xf9dc, 0x9672, 0x9eb5, 0x964b, 0xa0fa, 0x9575,\n  0x90da, 0x9367, 0xfea4, 0x90df, 0x9354, 0x8961, 0x8bb4, 0x9dc0,\n  0x8e48, 0xfbc5, 0xfbc7, 0xc6cb, 0xfa79, 0x9e67, 0xfbd2, 0x8962,\n  0x8963, 0xfc7d, 0x9f6b, 0xfbcc, 0xfeae, 0xfbd1, 0xfb75, 0xfbd4,\n  0xfbd6, 0xfbd8, 0x8b5d, 0x934c, 0x9ae2, 0x8bc9, 0xfbdb, 0x9fc9,\n  0x9f44, 0x98ed, 0xfbdd, 0x8df2, 0x8964, 0xfdf2, 0x934d, 0xfbe7,\n  0xa0f2, 0x9868, 0x9f58, 0x8d73, 0xfbde, 0xfbdf, 0xfbe3, 0x8da8,\n  0xfbe4, 0x9c75, 0x9878, 0x8d60, 0xfbe5, 0x8d61, 0x8d62, 0xa0a1,\n  0x9c40, 0x98ad, 0x9eea, 0x9ceb, 0xfbe0, 0x9f51, 0x8d65, 0x9cf1,\n  0xfc58, 0x8d66, 0x9654, 0xfbe8, 0xc6cc, 0x9fce, 0xfbfc, 0x9ae4,\n  0x9f75, 0xfbf1, 0x8d69, 0x934f, 0x934e, 0xfbf4, 0xc6ce, 0xfbc3,\n  0x8965, 0x8d6a, 0x9353, 0x9dfb, 0xfbfd, 0x9059, 0xfc40, 0xfc41,\n  0xfc43, 0x9361, 0xfc46, 0x9362, 0x8d6b, 0xfc4c, 0x95b8, 0xc6d0,\n  0x8bca, 0x987a, 0xc6d1, 0xfc51, 0xfc54, 0xfaaf, 0x8d6c, 0xfa61,\n  0xfc57, 0x9b70, 0xa051, 0x8bcb, 0x936e, 0xfcd5, 0xfca9, 0xfc61,\n  0x8966, 0xfacb, 0xf9da, 0x937a, 0xa0e0, 0x936b, 0xfc6b, 0xa0dc,\n  0x9468, 0xfc6d, 0x8d71, 0xfd64, 0x99ba, 0x9ad0, 0x9a61, 0xa0e5,\n  0xa05b, 0x96ac, 0x9740, 0x9ef1, 0x9f7e, 0x8d72, 0xfc76, 0x96a9,\n  0xa06e, 0xfcaa, 0xfbcd, 0xfc74, 0xa074, 0xa071, 0xfc79, 0xfc7c,\n  0x9c50, 0x9379, 0x9378, 0xa0dd, 0x8d75, 0x8d76, 0x9374, 0x8d77,\n  0xfca5, 0xfca2, 0x90c3, 0xa079, 0x8d79, 0x8bfc, 0xa076, 0x8bcd,\n  0x9f5a, 0x9ff4, 0x9fba, 0x8d7a, 0x9e45, 0x93b0, 0xa075, 0x9b46,\n  0xfcae, 0xfcb0, 0xfa51, 0x8d7b, 0x8d7c, 0x9ed6, 0x93ac, 0x9f5b,\n  0x93a9, 0xa07c, 0xfcb2, 0x8ac1, 0x9fb4, 0xfcac, 0x9e4c, 0x8fc5,\n  0x93ad, 0x9dc3, 0x8da2, 0x9d4a, 0xfcb6, 0x8da3, 0x9e4b, 0x9e4d,\n  0x8da4, 0x8afd, 0xfcb5, 0xfcc3, 0x93b2, 0x8da5, 0x93a1, 0x8ac6,\n  0x8a5b, 0x894d, 0xfed4, 0x8a78, 0x93ab, 0x8da7, 0x9f45, 0x8a56,\n  0xfcbf, 0xfcc0, 0x8ee6, 0x8aa4, 0x8943, 0x93f3, 0xfcab, 0x9ea2,\n  0x9dc7, 0xc6d2, 0x8bce, 0xfcc5, 0xfccb, 0x93b3, 0xfcca, 0xfcc9,\n  0x8dac, 0xfbc6, 0x8967, 0xfccd, 0x9cf3, 0xfcd0, 0x95bb, 0xfcd3,\n  0xfcd4, 0x8dae, 0xfcd7, 0x93db, 0xfe63, 0x93d5, 0xfcda, 0x9b71,\n  0xfcdd, 0x8daf, 0xfaf2, 0x93d8, 0xfcdf, 0x93d3, 0xfce1, 0x8e76,\n  0xfc62, 0x93d1, 0x8db1, 0x9859, 0xfb52, 0xfb53, 0xfb4d, 0x9cbf,\n  0x9b72, 0xfb50, 0x93be, 0x9df1, 0xfceb, 0xa0bb, 0x9b7e, 0x8db3,\n  0x9ae8, 0x8edc, 0x9cf9, 0xfa50, 0x98e7, 0xfcf3, 0xfcf2, 0x93e5,\n  0x9a59, 0x8db5, 0xfd4d, 0xfd5e, 0x8f7d, 0x9547, 0xfcf6, 0x9250,\n  0x8968, 0x8db6, 0xfcfb, 0xa07d, 0x98fc, 0x8969, 0xfe4f, 0x9256,\n  0xfac9, 0x93e8, 0xfcf8, 0x9ce3, 0xfda9, 0xfc44, 0x9640, 0x8db8,\n  0x9b4a, 0x8fb9, 0xfcfe, 0x896a, 0x8db9, 0x917e, 0x93f4, 0xfb7c,\n  0x93e7, 0x97ef, 0xfe4a, 0xfd45, 0x96a5, 0xfee0, 0xfd48, 0xfd47,\n  0xfef2, 0xfe6a, 0x8dbd, 0x9ba1, 0x9ab7, 0x8efc, 0x9fa1, 0xfd51,\n  0xfaad, 0x8dbe, 0x89a4, 0x9ad9, 0xfd4e, 0x8dc0, 0x97f0, 0x93b4,\n  0xfd44, 0x9fa7, 0x8dc2, 0x99b6, 0xfd52, 0x8dc1, 0x8e46, 0xa0d1,\n  0x9fca, 0x92cf, 0x9cf4, 0x8dc4, 0xfd41, 0x9b4c, 0xfd57, 0xfcef,\n  0x9cde, 0xfd42, 0x986c, 0x97f9, 0x9558, 0x985e, 0xfe7b, 0x94cd,\n  0x93ee, 0xfd5a, 0x93f5, 0x93ef, 0x8eea, 0x8f5b, 0x8dc6, 0x8dc8,\n  0x8dc7, 0x93f7, 0x8dc9, 0xfbf2, 0x9670, 0x8dcb, 0xfd5c, 0x8f65,\n  0x8dcd, 0x9da8, 0x94f9, 0x8dce, 0x93ea, 0xfd5f, 0x93f0, 0x9fb6,\n  0x8dcf, 0x9763, 0x8dd0, 0x93f1, 0xfd62, 0xfd65, 0x9fdb, 0x93f8,\n  0x8bf7, 0xfd66, 0x8bcf, 0x8dd1, 0x8dd2, 0xfd71, 0xfd6f, 0x8dd3,\n  0x9fe7, 0x90bd, 0x9fd0, 0x8bd0, 0xfd72, 0x9cae, 0x8bd1, 0x8adb,\n  0xfae4, 0x95ce, 0xfd76, 0xfb62, 0x8dd4, 0xfd78, 0x8ee3, 0x9076,\n  0x98c6, 0x8dd5, 0x97d1, 0x9eb6, 0xfac7, 0xa042, 0x9873, 0x9ffc,\n  0x8dd7, 0x92fb, 0x8dd8, 0x944f, 0x8dd9, 0x896b, 0x97ce, 0xfaf3,\n  0xfdae, 0xfbaf, 0x92b7, 0x8dda, 0x9c5a, 0xfdad, 0x8ddc, 0x9444,\n  0x8ddd, 0xa0d6, 0x97d5, 0x944a, 0x944d, 0x97cb, 0x8dde, 0x8ddf,\n  0x8de0, 0xfef9, 0xfdc0, 0xfcf9, 0xfb7e, 0x92b3, 0xfdaf, 0x8de1,\n  0x95d3, 0x89c1, 0xfd68, 0x9cb7, 0x8de3, 0xfac0, 0x8de5, 0xfa64,\n  0x8947, 0x8de4, 0x8de7, 0x8de8, 0xfdc7, 0xfdb0, 0x9445, 0x97d6,\n  0xfcc6, 0x9844, 0x8de9, 0x8dea, 0xfe50, 0xfdcc, 0x9da7, 0xfdcd,\n  0xfdcf, 0x95d2, 0x8ded, 0xfcba, 0xfdc5, 0xfdd2, 0x9cdc, 0x95cf,\n  0x8dee, 0xfdd4, 0x96ec, 0x96eb, 0x90b6, 0xfdc3, 0x98ab, 0x96ee,\n  0x8df4, 0xfde0, 0x8df6, 0x8df7, 0x8ffa, 0x97d0, 0x8bd2, 0x8df8,\n  0x90d9, 0xfaf0, 0xfde1, 0x8df9, 0xfde3, 0x8dfa, 0xfb63, 0x90a6,\n  0x9970, 0x91eb, 0x9770, 0x986f, 0xfde2, 0x98f2, 0x9afc, 0x896c,\n  0xfdfd, 0x995e, 0x95bd, 0xfde4, 0x91e6, 0xfde5, 0xfde6, 0xfde7,\n  0x9454, 0x99b8, 0x97e9, 0x9346, 0x9863, 0x95bc, 0xfded, 0xfdf7,\n  0x9870, 0x96f6, 0x8ea9, 0x9451, 0x8e43, 0x8b5a, 0xfdee, 0xfdf0,\n  0xfdf4, 0x9bf5, 0x977e, 0x9bd5, 0x9ac3, 0x97c8, 0xa0db, 0x91d0,\n  0x9fe4, 0x8fdd, 0x91e9, 0x98e0, 0x92ca, 0x9857, 0xfdeb, 0x9b49,\n  0x9d76, 0x9eaf, 0x9ccc, 0xfdea, 0x8df1, 0xfdfb, 0x8e53, 0xfacf,\n  0x96f9, 0x98bf, 0x9e49, 0x9bca, 0xfdfe, 0x92dc, 0xfe41, 0x91cc,\n  0x91e2, 0xfe44, 0x8bd3, 0xfe47, 0xfe48, 0x9455, 0xfe4b, 0xfe4c,\n  0x8dbf, 0x9e78, 0xfe51, 0x9456, 0x9d61, 0x9457, 0x9966, 0x8bd5,\n  0xa069, 0x98b4, 0xa049, 0xa04c, 0x9e65, 0x98b5, 0xfe58, 0x9975,\n  0xfe53, 0xa065, 0xfe59, 0x98b7, 0x98b8, 0x98ba, 0x98bb, 0x9fbc,\n  0xa04a, 0x9ec7, 0x98ae, 0x92d6, 0xfae1, 0x91d4, 0xfade, 0xfe5b,\n  0xfe5e, 0xfbd7, 0xfe5a, 0x94c5, 0xfaca, 0x98c1, 0x975c, 0xfe74,\n  0x9773, 0xfa46, 0x9764, 0xfe68, 0x964e, 0x9765, 0x89a1, 0x95fa,\n  0x92d4, 0xfe69, 0xfb45, 0x98c8, 0x90ef, 0x98c9, 0x98ca, 0x946d,\n  0x94b7, 0xfe6c, 0x946b, 0x92fc, 0x95eb, 0xfe73, 0x976e, 0xfe5f,\n  0xfdbd, 0x92d5, 0xfeb9, 0xfe71, 0xfbbb, 0x947a, 0x95fb, 0xfe77,\n  0xfe79, 0xfe75, 0x945d, 0xfe7c, 0x9344, 0x8ea6, 0x92d3, 0x94b8,\n  0xfc71, 0x975e, 0xfea7, 0x946a, 0x93e3, 0x98cf, 0xa0d9, 0xa0bf,\n  0xa04d, 0xa0b8, 0xa0ce, 0xa0b7, 0xfea9, 0x89c3, 0xfeab, 0x9df4,\n  0x896d, 0x9c7b, 0x98d2, 0x9fa9, 0xfeb2, 0xfeb1, 0x97d9, 0xa0c4,\n  0x9476, 0x9978, 0xfeb3, 0x98d3, 0xfeb4, 0x98d4, 0x9fb9, 0x9471,\n  0x98d5, 0xfeb8, 0xc6d4, 0xfeba, 0x9e5c, 0xfebb, 0xa044, 0x98d7,\n  0x98d8, 0xfebc, 0x9ffe, 0xfebd, 0x9ddd, 0x9ee1, 0x98da, 0x9ddf,\n  0xfebf, 0xfebe, 0x9eeb, 0x9e59, 0xa05c, 0xfec0, 0x9477, 0x98dc,\n  0xfec1, 0x98de, 0xfec3, 0xfec8, 0xfec9, 0xfeca, 0xfecb, 0x9fc2,\n  0x98c4, 0x94b0, 0x94b1, 0xfed1, 0xa0c1, 0xfed2, 0xa0cd, 0xfed3,\n  0x98e5, 0xfed6, 0x91e4, 0x8fc7, 0x94ae, 0x8a4f, 0x94b2, 0x8fd4,\n  0x98ea, 0xfed8, 0x9de0, 0x98ee, 0x95c4, 0xfce8, 0x98ef, 0xfad8,\n  0xfedc, 0xa0ae, 0x9d4c, 0x98f1, 0x98f3, 0x94c1, 0x98f5, 0xfa4f,\n  0x96e2, 0x9450, 0x96a2, 0x98f6, 0x96e5, 0x98f7, 0xa046, 0x96e3,\n  0x98f8, 0x9ee4, 0xf9d6, 0x94c3, 0x94c2, 0xfee1, 0xfee9, 0x96e4,\n  0x89ac, 0x96db, 0xfee2, 0x94c4, 0xfee3, 0xfee7, 0x9ffb, 0x93c9,\n  0x94e8, 0xfb56, 0x90c5, 0xa0a8, 0xfee5, 0x98fd, 0x98fb, 0xfee8,\n  0x8ebf, 0x8bd8, 0xfef7, 0x8f68, 0x94c6, 0x9dea, 0xfc69, 0x9cda,\n  0xfef3, 0x9c72, 0xfef0, 0x89c9, 0x9941, 0x9942, 0xfef5, 0x91d7,\n  0x94cc, 0xfef8, 0x97a8, 0xfefc, 0xfdbf, 0xfefe, 0x96d1, 0x94d5,\n  0x94d0, 0x9944, 0xa0b3, 0x94cf, 0x9ffa, 0x91e5, 0x9c6a, 0x8e49,\n  0x8e4c, 0x8e4d, 0x9a73, 0x9947, 0x8e50, 0x8e4f, 0x9949, 0x8e51,\n  0x8e52, 0x9ab2, 0x89a5, 0x994c, 0x9ff8, 0x8e56, 0x994d, 0x91ca,\n  0x8e57, 0x94e1, 0x9047, 0x8fd8, 0x8e58, 0x94eb, 0x8e5c, 0x9553,\n  0x9fe5, 0x9f56, 0x954f, 0x8e5e, 0x996a, 0x9c64, 0x9cd9, 0x8e5d,\n  0x9950, 0x9951, 0x8e62, 0x9952, 0x8e68, 0x8e61, 0x9f59, 0x8bb3,\n  0x9f5d, 0x8e66, 0x8e6e, 0x9f64, 0x9953, 0xfab8, 0x9954, 0x8e70,\n  0x9f61, 0x8e72, 0xa06b, 0x9f40, 0x94ed, 0x94ee, 0x9fbd, 0x8e7b,\n  0x9957, 0x94f7, 0x9f5f, 0x8e73, 0x9f62, 0x94f6, 0x9958, 0x8e75,\n  0xf9db, 0x9072, 0x94f8, 0x995a, 0xa0b0, 0x8e79, 0x8e78, 0x94f3,\n  0x98af, 0xa0b2, 0x8e7a, 0x995c, 0x8e7c, 0x8e7d, 0x8bd9, 0x89a2,\n  0x9ed7, 0xa0b6, 0x9e42, 0x8ea4, 0x8ea7, 0x9542, 0x987d, 0x9755,\n  0x8ea8, 0x8eaa, 0x89a3, 0x9960, 0x9962, 0x94fc, 0x9961, 0x94fa,\n  0x8eae, 0x8eb2, 0x8eb0, 0x9963, 0x97aa, 0x94fb, 0x8ebb, 0x9876,\n  0x8ea1, 0x8eb7, 0x9da6, 0x9eb0, 0x8eb8, 0x9d70, 0x896e, 0x896f,\n  0x8970, 0x8971, 0x8972, 0x8973, 0x8974, 0x8975, 0x8ebc, 0x8ebd,\n  0x8ebe, 0x9dd1, 0x94fd, 0x8bd7, 0x8bda, 0xa0e2, 0x9fe9, 0xfda8,\n  0x8ae7, 0x8ec2, 0x8ec4, 0x9964, 0x9965, 0x954e, 0x98b3, 0x8ecb,\n  0x8bdf, 0x8ece, 0x8ecf, 0x9968, 0x9969, 0x996b, 0x8ed1, 0x996c,\n  0x8ed4, 0x8ed5, 0x996d, 0xa0be, 0x8ed6, 0xa0bc, 0xa0b5, 0xa0b4,\n  0x8be0, 0x89b5, 0x8edd, 0x9e5d, 0x9971, 0x89ae, 0x9de8, 0x9565,\n  0x9972, 0x8b5c, 0x89b1, 0xa0c0, 0x8edf, 0x9566, 0x9974, 0x9976,\n  0x9977, 0x9979, 0x9dda, 0x8ee0, 0x935c, 0x9de6, 0x8b5f, 0x9563,\n  0x9567, 0x9de3, 0x997c, 0x997d, 0x997e, 0x8b5b, 0x99a3, 0x99a4,\n  0x99a6, 0x99a8, 0x8abe, 0x9e61, 0x99aa, 0xa0c8, 0x99ab, 0xfec4,\n  0x98c2, 0x8ee8, 0xa0ba, 0xfd77, 0x8eee, 0x9ebf, 0x89c2, 0x99ac,\n  0x956b, 0x956c, 0x99af, 0x994a, 0x8976, 0x8f48, 0xfbee, 0x99ae,\n  0x8efb, 0x8b52, 0x99b0, 0x8977, 0x8f41, 0x99b1, 0x8f49, 0xfa4d,\n  0x9de4, 0xfbe9, 0x9b54, 0x99b2, 0x9e68, 0x8f4a, 0x8f42, 0x8f51,\n  0x9846, 0x99b4, 0x8ef5, 0xfd55, 0x9ccd, 0x8978, 0x8f53, 0x8f6f,\n  0x8e63, 0x8f56, 0xfe76, 0x9fc6, 0xfaac, 0x8f58, 0x9848, 0x99b7,\n  0x9665, 0xfa6c, 0x9de7, 0x9e62, 0x96cc, 0x8e67, 0xfc75, 0x987e,\n  0xfdb9, 0x97fc, 0x98f9, 0x8f66, 0x956e, 0x9245, 0x8f60, 0x9ed1,\n  0xfecd, 0x99b9, 0x8f62, 0x974c, 0x91c7, 0x955f, 0x99bb, 0x8e6d,\n  0x8f71, 0x94cb, 0x95b1, 0x9af2, 0x96c3, 0x99bd, 0xa0cf, 0x8f6d,\n  0x99be, 0x8ef4, 0x8f72, 0x95e4, 0x99bf, 0x9242, 0xfba5, 0x99c0,\n  0xfdb4, 0x8f77, 0x99c1, 0xfab9, 0x8f40, 0xfa44, 0x99c2, 0x8f5c,\n  0x99c4, 0x99c5, 0x8f7b, 0x8fa3, 0x99c6, 0x96cd, 0x96c7, 0x8fa5,\n  0xfabb, 0x9570, 0x9368, 0x8f7e, 0x8faa, 0xa050, 0x90d3, 0x9556,\n  0x8fb8, 0x99c8, 0x8faf, 0x99c9, 0x9579, 0x9f49, 0x99ca, 0x99cb,\n  0x9dd5, 0x8fb0, 0xfa7a, 0x9e5f, 0x99cd, 0xa0c9, 0x9adb, 0xa0c6,\n  0x8fb4, 0xa0d7, 0xa0c7, 0xa043, 0x8fb5, 0x8fb2, 0xa061, 0x9e5e,\n  0x8fb6, 0x9fe8, 0x9cb2, 0x957c, 0x9fc7, 0x8fbb, 0x8fbc, 0x8fec,\n  0x8fc0, 0x936a, 0x8be4, 0x9c7c, 0x95a1, 0xfeec, 0x95a3, 0x8fc1,\n  0xa052, 0x99d0, 0x8fc3, 0x8fc4, 0x95a4, 0x8fc6, 0x9e60, 0xf9d8,\n  0x95a5, 0x9cb3, 0x99d1, 0xfef1, 0x99d2, 0x9cc2, 0x99d3, 0x95a7,\n  0x95a9, 0x95a6, 0x9c5d, 0x98e2, 0x8fc9, 0xa0c2, 0x8fca, 0x99d4,\n  0xa0b9, 0x9b58, 0x8fcd, 0xa0d4, 0x8fce, 0x8be5, 0x8979, 0x8fd0,\n  0x95b6, 0x99d6, 0x95e5, 0x99d7, 0x95b5, 0xa0ca, 0x9ffd, 0xa058,\n  0x8fd6, 0x99d8, 0x8fd3, 0x8fe5, 0x8fe9, 0x99d9, 0x927c, 0x9c45,\n  0x8fde, 0x8fdf, 0xa04b, 0x8fe2, 0xa0cc, 0x8fe3, 0x8fe4, 0x9bc4,\n  0x9bfc, 0x964c, 0x9af6, 0x8fe7, 0x8fe8, 0x8be7, 0x897a, 0x897b,\n  0x99da, 0x8fed, 0x95c0, 0xa0cb, 0x9e48, 0x99db, 0x8ff3, 0x8ff9,\n  0x95c1, 0xa04e, 0x99dc, 0xa064, 0x8ff7, 0x89b0, 0xa048, 0x8ffb,\n  0x8ff6, 0x9ddc, 0x99dd, 0x8be8, 0x92c1, 0x9fd6, 0xa0d2, 0x9040,\n  0x8ac4, 0x99e0, 0x9ff0, 0x9ff3, 0x9dbf, 0x9ff6, 0x95c8, 0x9e5a,\n  0x99e3, 0x8a4a, 0x9ff1, 0x8aa7, 0x99e6, 0x9ff7, 0x9fed, 0x8a5c,\n  0x9dae, 0x95c9, 0x9048, 0x99e8, 0x9049, 0x90b1, 0x904a, 0x99ea,\n  0x9bd1, 0x99eb, 0x99ec, 0x99ed, 0x99ee, 0x904c, 0x904d, 0x95cb,\n  0x97e2, 0x95cc, 0x9f78, 0x897c, 0x897d, 0x897e, 0x995d, 0x9b5a,\n  0x9050, 0x9054, 0xc6d6, 0x9aa8, 0x99ef, 0xfeeb, 0x9da3, 0x9da1,\n  0x9943, 0x9945, 0x9d7d, 0x99f0, 0x99f1, 0x99f2, 0x9d60, 0xa0a3,\n  0x905b, 0x9edb, 0x9d79, 0x99f3, 0x9062, 0x9f55, 0x9bf9, 0x9065,\n  0x96e0, 0x98be, 0x9068, 0x906c, 0x95d8, 0x906a, 0x9fb2, 0x9fae,\n  0x9fb0, 0x89ad, 0x906e, 0x9e71, 0x9e4a, 0x9fdc, 0x89ab, 0x9fb8,\n  0x9070, 0x8b63, 0x95dc, 0x9071, 0xfc5e, 0x8949, 0x965b, 0x94a6,\n  0x8fd5, 0x9e73, 0x9075, 0x99f7, 0x99f9, 0x9663, 0x95b9, 0x94d4,\n  0xfcfa, 0x9077, 0x90ab, 0x9d4d, 0x99fa, 0x92e3, 0x97bb, 0x9078,\n  0x99fb, 0x97e0, 0x96dc, 0x9ca8, 0x9772, 0x9440, 0x92f2, 0x99fd,\n  0x99fc, 0xf9d7, 0x964a, 0x96d8, 0x99fe, 0x904b, 0xfa41, 0x9a40,\n  0x975b, 0x9a41, 0x91dd, 0x93fc, 0x9a42, 0x9a43, 0x9659, 0x9a44,\n  0x9051, 0x94bf, 0x90a2, 0x9cab, 0x9776, 0xfc55, 0xfe45, 0x94a8,\n  0x9a45, 0xfa4b, 0x9de1, 0x96d9, 0x9774, 0xfdf5, 0x92e5, 0x9645,\n  0x91da, 0x90a3, 0xa05f, 0x90af, 0x97bf, 0x914c, 0x967a, 0x91de,\n  0x9a46, 0xfeb0, 0x9779, 0x946c, 0x9858, 0x9266, 0x93fb, 0x9a47,\n  0x9749, 0x9748, 0x934a, 0x9ce2, 0x9264, 0x91df, 0xfb79, 0x96d7,\n  0x9343, 0xfdcb, 0xfe7a, 0x91db, 0x97af, 0x95dd, 0x9348, 0x9a4b,\n  0xfc45, 0x9a4d, 0x91bc, 0x90e2, 0x90b4, 0x95e1, 0x9a4e, 0x9a4f,\n  0xfe40, 0xfe43, 0x96dd, 0x9a51, 0x96a7, 0x90b0, 0x9c4e, 0x9443,\n  0x8eba, 0x9a52, 0xfcc1, 0x8be9, 0x9caf, 0x8bfd, 0x9abc, 0x9ab8,\n  0x9aae, 0x9aa7, 0x9a53, 0x9d74, 0x8bea, 0x8beb, 0x90b2, 0x95e9,\n  0x95e8, 0x95e6, 0x90b5, 0x9a54, 0x90b3, 0x95e7, 0x8b50, 0x8bec,\n  0x9a56, 0x8bfb, 0x9a57, 0xa0aa, 0x9fa6, 0x99cc, 0x9c59, 0x99b5,\n  0x90be, 0x9faf, 0x95f2, 0x90bf, 0x90c1, 0xfee4, 0x90c4, 0x90c7,\n  0x92e4, 0x9f52, 0x90db, 0xa066, 0x90d2, 0x90d4, 0x9a5b, 0x95fd,\n  0x8bc4, 0x90de, 0x9ce4, 0x90e1, 0x9e46, 0x9651, 0xfb58, 0x90e6,\n  0x9650, 0x90e7, 0x90e8, 0x9a5d, 0x9f7a, 0x9b5c, 0x9f7c, 0xfc52,\n  0x90e9, 0x90ea, 0x9a5e, 0x9f76, 0x90eb, 0x90ec, 0x8bee, 0x90ee,\n  0x91c6, 0x90f2, 0xfcbc, 0x8a74, 0x9657, 0x9cef, 0x9fdf, 0x90f7,\n  0x90f6, 0x9b5e, 0x90f8, 0x90f9, 0xfa6a, 0x8bef, 0x9fe0, 0x9142,\n  0x9a62, 0x9569, 0x9144, 0x9143, 0x9141, 0x8bf0, 0x9660, 0x8bf1,\n  0x99f6, 0x9149, 0x914a, 0x914b, 0x9a64, 0x8abf, 0x9a66, 0x9a67,\n  0x9a69, 0x9a6a, 0x9652, 0x914d, 0x9666, 0x9f7b, 0x9a6b, 0xa06c,\n  0x9667, 0x9a6c, 0x9a6d, 0x8bf2, 0x966a, 0xfcea, 0x966c, 0x91c4,\n  0x9677, 0x99f4, 0x9a6f, 0x9fab, 0x8ec1, 0x9555, 0x9152, 0x9153,\n  0x9155, 0x955d, 0x9671, 0x9c6d, 0x9673, 0x9154, 0x9a71, 0x9156,\n  0x966d, 0x9557, 0x89c6, 0x89c7, 0x8a6a, 0x8b57, 0x9fe1, 0x9b5f,\n  0xa05d, 0x915b, 0x915c, 0x915e, 0x9f5c, 0x9f57, 0x9f65, 0x9a72,\n  0x9160, 0x9f5e, 0x9161, 0x9164, 0x9f41, 0x9169, 0x9168, 0x9a74,\n  0x96b2, 0x9a75, 0xfda5, 0x9ee9, 0x8bba, 0x916d, 0xa060, 0x9fde,\n  0x9fc3, 0x96b5, 0xa067, 0x96b3, 0x9a76, 0x95d5, 0x9eca, 0x9a77,\n  0x9a78, 0x9170, 0x916f, 0x9fa3, 0x9171, 0x96b1, 0x9f63, 0x9f67,\n  0x8bb9, 0x9a7a, 0x8b56, 0x9ada, 0x96b0, 0x9a7e, 0x9dde, 0x96ad,\n  0x96ae, 0x9ea1, 0x9e50, 0x96af, 0x8bf4, 0x9fa4, 0x96bd, 0x96f4,\n  0x96b8, 0xfaa1, 0x91a7, 0xa05e, 0x9a7d, 0x8948, 0x9eb1, 0x9ddb,\n  0x95bf, 0x8a73, 0x9efe, 0x917a, 0x917b, 0x9aa3, 0x96c2, 0x9f77,\n  0x9aa4, 0x9aa5, 0x91a1, 0x89b8, 0x9173, 0x9aa6, 0x89bd, 0x89b9,\n  0x917d, 0x96bb, 0x9ff2, 0x8bf5, 0x9aa9, 0x9f54, 0x9fe3, 0x9eed,\n  0x91aa, 0x91ab, 0xa070, 0x9f6d, 0x91ac, 0x91ad, 0xa0fd, 0x9fe2,\n  0x91af, 0x9e41, 0x9aaa, 0x91b0, 0x9aab, 0x9aac, 0x9a4a, 0x91b2,\n  0x8bf6, 0x9aad, 0x89b6, 0x9aaf, 0x9ab0, 0x9ab1, 0x9aa1, 0x91b9,\n  0x91ba, 0x91be, 0xa041, 0x8bb7, 0x91c0, 0x9ab3, 0x91c3, 0xa0fc,\n  0x9fee, 0x9f69, 0x91c8, 0x91c9, 0x8de6, 0x91cb, 0x89c8, 0x8daa,\n  0x9fdd, 0xc8a1, 0xc8a3, 0x8bf8, 0xc8d0, 0xc8cf, 0xc6e4, 0xc6e5,\n  0xc8cd, 0xc8ce, 0xf9fe, 0x9c71, 0x9375, 0x9376, 0x9548, 0x8ec6,\n  0x8bc5, 0x8bfa, 0xc87c, 0x9ab4, 0x884e, 0x884b, 0xc87a, 0x8848,\n  0x8847, 0xa0f6, 0x8845, 0x8853, 0xfcad, 0x8aad, 0x9272, 0xfc47,\n  0x94df, 0x9fd1, 0xfbcb, 0x927d, 0x98a4, 0x94e7, 0x90cb, 0x927b,\n  0x94d8, 0xfc5f, 0xfa54, 0x9ab5, 0x96da, 0x9279, 0xfa74, 0x9275,\n  0x8dfb, 0x8a49, 0x92df, 0x9b7c, 0xfa63, 0xfa60, 0x926d, 0xfa62,\n  0x9ab6, 0x976b, 0xfd6a, 0xfd54, 0x9273, 0x97d8, 0x9fbb, 0x9342,\n  0x9276, 0xfa65, 0x926c, 0xfa6e, 0x9ee0, 0x92c0, 0x92bf, 0x92be,\n  0x9aba, 0x8ab3, 0x9775, 0xfa40, 0xfa76, 0xfbd0, 0xfa7b, 0xfe6d,\n  0x9bb3, 0x89cc, 0x9abe, 0xfa42, 0x92bc, 0x945c, 0x9bb5, 0x9abf,\n  0x98a7, 0x97a4, 0x90fd, 0xfc7b, 0x9ac0, 0x92c3, 0x8aaa, 0x9bd0,\n  0x9550, 0x92c6, 0x98a6, 0x9546, 0xfd63, 0xfac2, 0x9ec3, 0x89b2,\n  0x9c66, 0x9053, 0x97c1, 0x9ac4, 0x9ac5, 0x8eef, 0xfae9, 0x9262,\n  0x8af7, 0x9ac6, 0x92e1, 0x9ac9, 0xfac6, 0x97a5, 0x9acb, 0xfa72,\n  0x8a5e, 0x94e0, 0x92cc, 0x8ae5, 0xfe5c, 0x9acc, 0x9df9, 0x8a43,\n  0x8aa6, 0x9acd, 0x9ace, 0xfaee, 0x9bcc, 0x9acf, 0x9ad1, 0x9dfa,\n  0x9d7c, 0x9ad3, 0x97a6, 0x995f, 0xfbf6, 0x9fc5, 0x8a59, 0x8b6b,\n  0x9ad4, 0x9ad5, 0x97a2, 0x8a44, 0x9f4a, 0x90a1, 0xfda4, 0x8a64,\n  0x8af2, 0x8af8, 0x9dd8, 0x94d6, 0xfafe, 0xfba7, 0x9ad6, 0x9f4d,\n  0xfaf6, 0x8a57, 0x8b43, 0x8b44, 0x8ab6, 0x8ac0, 0x9e54, 0x9ad7,\n  0x9ad8, 0x9adc, 0x8aca, 0x9ea8, 0x9263, 0x9add, 0x8b65, 0x8b6f,\n  0x8b7e, 0x8f43, 0x92d0, 0x8af4, 0x9dbe, 0x9ae1, 0xfcde, 0x9dfd,\n  0x8b66, 0x8b70, 0x8b75, 0x8ae4, 0x8ba4, 0x8aed, 0x8a5d, 0x8b48,\n  0x9ded, 0x9e40, 0x8aef, 0x8af6, 0x9e76, 0x9ee3, 0x9ade, 0x8dfe,\n  0xfafc, 0x9cb1, 0x9e77, 0x8b64, 0x8b67, 0x974b, 0x9653, 0x9ae0,\n  0x8b4a, 0x8af1, 0x8ad7, 0xa0ab, 0x8ab5, 0x8a5f, 0x8aee, 0x9adf,\n  0x8afe, 0x8a58, 0x8ba3, 0x8ba7, 0x9ae3, 0x9261, 0x9dd7, 0x9e7d,\n  0x9ea7, 0x9eab, 0x9042, 0x8b79, 0x8b7a, 0x9ae6, 0x9ae5, 0x8a7e,\n  0x9e44, 0x9ae7, 0x8a7c, 0x8b71, 0x9ae9, 0x9aea, 0x9aeb, 0x8abd,\n  0xfb4e, 0x9aed, 0x8af9, 0x9e63, 0x8b49, 0x8ace, 0x8b6e, 0x8ae8,\n  0x9aee, 0x92ce, 0x8a5a, 0x8b7b, 0x8b7c, 0x9aef, 0x9af0, 0x8afa,\n  0x8941, 0x8b72, 0x8af3, 0x8ba8, 0x9eae, 0x9e72, 0xfb73, 0xfb5f,\n  0x90ba, 0x91fe, 0x9ef6, 0x97ed, 0x9af3, 0xa0ee, 0x967c, 0x9345,\n  0x986e, 0xfa56, 0x9af5, 0xfc4b, 0x9af4, 0xfede, 0xfcb7, 0x97f1,\n  0x97c7, 0x9ccb, 0x9240, 0x9ce8, 0x91fd, 0x974e, 0xfb68, 0x976c,\n  0x97e8, 0xfb6a, 0x8b74, 0x8ee7, 0xfdc8, 0x9241, 0x96a1, 0x8ef3,\n  0x9af7, 0x8fa6, 0xfad6, 0x9cc7, 0xfad7, 0x9af8, 0xfba1, 0x8ec5,\n  0xfba4, 0xfbc2, 0x9ac1, 0x91fa, 0xfedb, 0x97ab, 0x9147, 0xfbb1,\n  0x8fea, 0x94d2, 0xfe61, 0xface, 0x92ed, 0x91f3, 0x93c6, 0x935a,\n  0xfafb, 0x92ef, 0xfac8, 0x9847, 0x9366, 0x9855, 0x96e6, 0x9f43,\n  0x9faa, 0x94da, 0x92ee, 0xfcaf, 0xfbfb, 0x8ef9, 0x91f6, 0x9364,\n  0x94f5, 0x9cb6, 0xfbad, 0x984e, 0x8f44, 0x96fd, 0x9af9, 0x9afa,\n  0x9769, 0x95d4, 0x984b, 0xfbaa, 0x987c, 0x91ea, 0x9daf, 0x9dc5,\n  0x91f1, 0x8eb1, 0x97a9, 0xfbac, 0xfcb8, 0x9cb9, 0xfbb0, 0xfcd2,\n  0x93cb, 0x9afd, 0x91f4, 0x8bac, 0xa055, 0x9574, 0x95be, 0x97ad,\n  0x8ee9, 0x92f8, 0x97be, 0x916c, 0x94aa, 0xfc63, 0x9dc6, 0x97b5,\n  0x92b8, 0x91ef, 0xfea6, 0x9760, 0x9358, 0x9576, 0x8fac, 0x91ec,\n  0x97b4, 0x91f7, 0x974a, 0xfb49, 0x9578, 0x93bc, 0x91d6, 0x9355,\n  0x9356, 0x9851, 0x8ff8, 0xfbc0, 0x93f2, 0x90d0, 0x9c44, 0x9255,\n  0x9363, 0x91a5, 0xa0ed, 0xfd6b, 0x9afe, 0x9351, 0xfa78, 0xfea8,\n  0x9350, 0xfa4c, 0x92f7, 0x9b40, 0xfbce, 0x9b41, 0xfead, 0xfbd5,\n  0x8bc2, 0x9a7c, 0x9b42, 0x9b43, 0x9e79, 0xfbd9, 0x9b44, 0xa0a7,\n  0x9bf3, 0x935e, 0x89cb, 0x9f53, 0x93d7, 0xfbe1, 0xfed0, 0xfbe2,\n  0xfce3, 0x9074, 0xfbe6, 0x9bb7, 0x9b45, 0x9b47, 0x9f50, 0x9b48,\n  0xfc5b, 0x98a9, 0x9cfd, 0x884c, 0x9b4b, 0xfbec, 0x9ba8, 0x8ad5,\n  0xfa73, 0xfd59, 0x91a2, 0xfbed, 0x9ca9, 0x8aa8, 0x9bc3, 0x8ae1,\n  0x9b4e, 0x95d0, 0x905f, 0x97ee, 0xfc4e, 0x9b4f, 0x9b50, 0x9ec6,\n  0xfc50, 0xfd73, 0xfda7, 0x9da2, 0xfa58, 0xfa5e, 0xa059, 0xfa75,\n  0xfbbe, 0x9ca2, 0x9370, 0x9371, 0x9377, 0xfeef, 0x936d, 0xfc5d,\n  0x90b8, 0x8afc, 0xfb41, 0x9e6b, 0x94e3, 0x8ee2, 0x8ed7, 0x9c4d,\n  0x96a3, 0x9b51, 0x8ac3, 0x96aa, 0xfc68, 0x8b6d, 0xfd67, 0x8ae9,\n  0xfca1, 0x936c, 0x9b52, 0xfe70, 0xfca8, 0xfce9, 0x9cb4, 0x8aea,\n  0x9b53, 0x9b55, 0x96ab, 0xfca7, 0x9b56, 0x8abc, 0x8acb, 0x9b57,\n  0x89cd, 0x9b59, 0x9b5b, 0x93a5, 0x9b5d, 0x9e4f, 0x93a3, 0x8a7b,\n  0x8b42, 0x9750, 0x8fb3, 0x8a50, 0x9b60, 0x8b45, 0x8b46, 0x9dfe,\n  0x9b62, 0x937b, 0x93b1, 0x8a60, 0x8ad8, 0x9b63, 0x8a69, 0x8a47,\n  0x8acc, 0x937c, 0x9b65, 0x9b66, 0x8a72, 0x8a7a, 0x93af, 0x8ab0,\n  0x9b68, 0x9ea3, 0xfaec, 0x8b77, 0x9b67, 0x8b59, 0xfcb1, 0xfcbb,\n  0x9b69, 0x93a8, 0x8ae0, 0x9e51, 0x8f5f, 0x9b6a, 0x9b6b, 0x97ec,\n  0x9b6c, 0xfe4e, 0xfdc2, 0x9b6d, 0x9167, 0xfccc, 0x93b6, 0x90e4,\n  0x90e5, 0x9ef2, 0x93ca, 0x8bbc, 0x8f46, 0x93cf, 0xfcdb, 0xfcdc,\n  0x93c0, 0xfce6, 0x96e7, 0xfcd8, 0xfcd9, 0xfda6, 0x93ce, 0x95f1,\n  0x9ce9, 0xfce4, 0x94af, 0xfa77, 0x93cc, 0x905a, 0x93bf, 0xfb51,\n  0x93b9, 0xfed7, 0x93b7, 0x93d9, 0x93bb, 0x93da, 0x98a3, 0x90d1,\n  0x9b6e, 0xfa70, 0x9beb, 0x9b6f, 0xfcfc, 0x8b40, 0xa07b, 0x97f7,\n  0x93e2, 0xfcd6, 0x9559, 0x93a6, 0xfd40, 0x935f, 0x97f2, 0x9c76,\n  0x8ef8, 0x8f47, 0x9b74, 0x92b4, 0x91ed, 0x96d2, 0xfd46, 0x8f4f,\n  0x9549, 0x9b75, 0xfa5c, 0x9b79, 0xfd4b, 0x96d3, 0xfd58, 0x945f,\n  0xa0f5, 0x9243, 0x97fa, 0x9dd9, 0x97f4, 0x924d, 0xfd5b, 0x9b7a,\n  0x9ed5, 0xfaae, 0x9cc9, 0x9258, 0x8ec8, 0x94b4, 0x93e1, 0x93df,\n  0xfcf0, 0x93ec, 0x97f6, 0x96cf, 0x93de, 0x8acf, 0x9ba2, 0xfd69,\n  0x9352, 0x98a2, 0xfd6e, 0xfa7c, 0x93fa, 0x907c, 0x8f67, 0x9db7,\n  0xa0e9, 0xfa4e, 0xfda1, 0x9e74, 0x9fbf, 0x9ecb, 0x9bb9, 0x9dd4,\n  0x97b9, 0x8ef1, 0x957b, 0x9ed2, 0x9753, 0x96a4, 0x8fbe, 0x94d9,\n  0x9058, 0xfd79, 0xfd7b, 0x8eda, 0x8efa, 0x9ba5, 0x9ed9, 0x97d4,\n  0x90bb, 0xfdbc, 0xfdc6, 0x9248, 0x92b5, 0x9dc1, 0x92b9, 0x92a6,\n  0x8f4b, 0x9ba6, 0x92b6, 0x8e40, 0x9ed8, 0x945e, 0x985f, 0x94ce,\n  0x924a, 0xfd70, 0x9467, 0x8dec, 0x9bd8, 0x9448, 0xfac1, 0x9cf7,\n  0xfdbe, 0x8fda, 0xfdd9, 0xfc7e, 0x93f9, 0xfa43, 0xfaeb, 0xfac3,\n  0x97d3, 0x95f9, 0x9c48, 0xfdd8, 0xa0d8, 0xfdd7, 0xfb4a, 0x9baf,\n  0x944b, 0xfdc9, 0x8eac, 0xfdb2, 0x925a, 0xfcbd, 0x92d9, 0xfdd5,\n  0x92dd, 0x9259, 0x96ba, 0x925b, 0x9bab, 0xfdda, 0xfdde, 0xfdd3,\n  0xfdd6, 0xfddc, 0xfddd, 0x90fe, 0xfea1, 0x8bad, 0x9cd8, 0x9e6d,\n  0xfd7c, 0xfb61, 0x96f8, 0x96f0, 0xfcf4, 0xfe60, 0x9852, 0x964f,\n  0x916e, 0x986d, 0x9864, 0x9453, 0xfdec, 0xfb78, 0x95ba, 0x985d,\n  0x92f9, 0x985a, 0xfdf6, 0x93d0, 0x9862, 0x9bad, 0x974f, 0x9bae,\n  0x9452, 0x9bb0, 0x91d2, 0x97ea, 0xfb6b, 0x91b1, 0xfdf3, 0x92cb,\n  0x9bb1, 0xfcec, 0x986b, 0x9751, 0x9871, 0x95ef, 0x9ef3, 0x91e8,\n  0x9bba, 0xfb4c, 0x926a, 0xfdf8, 0x9861, 0x91e7, 0x93ed, 0x9744,\n  0x91e1, 0xfbf5, 0x9869, 0x8a62, 0x9bbb, 0x9c55, 0x8e77, 0x8ab2,\n  0x9ebc, 0x93e6, 0x93a2, 0x9bbd, 0x94b3, 0x937d, 0x9e66, 0x9459,\n  0x9bbf, 0x9458, 0x9ea5, 0x9bc7, 0xfe54, 0x8e74, 0x8bd6, 0x94b6,\n  0xfd74, 0x98c0, 0x94a5, 0x9bc8, 0x95ed, 0xfd7e, 0xfbeb, 0xfd7d,\n  0x976f, 0x9461, 0x9fc1, 0x95d7, 0xfa52, 0x9c58, 0x9f68, 0x9be7,\n  0xfcce, 0x96e8, 0xfa49, 0x97a1, 0x954d, 0x9ef8, 0xfe49, 0x91ce,\n  0x9771, 0xfdb1, 0xfc6e, 0x9cf2, 0x93b8, 0x9043, 0x9759, 0x94d7,\n  0xfe66, 0x947d, 0xfc6f, 0x9246, 0xfa6d, 0x8ef7, 0xfbb7, 0x947c,\n  0x92cd, 0x97b2, 0xfe65, 0x967e, 0x9758, 0x9b77, 0x91cf, 0x94a4,\n  0x9cad, 0x8bab, 0x96d5, 0xfcb3, 0x93ae, 0x976d, 0x9446, 0x95f7,\n  0x9c46, 0x955b, 0x91d1, 0x94f4, 0xfe67, 0x92a5, 0xfedf, 0x9bc9,\n  0xfced, 0xfdfa, 0xfcc8, 0xfe62, 0x91fc, 0xfe6b, 0xfdf9, 0xfcc7,\n  0x914e, 0x9cb8, 0x9767, 0x95ee, 0x9bb2, 0x9460, 0x94a2, 0x9875,\n  0x97ac, 0x91d3, 0x987b, 0x8eeb, 0x976a, 0x965e, 0x97eb, 0x9ff9,\n  0x95f8, 0xfea2, 0x8fe6, 0xfe7e, 0x9da4, 0x9768, 0x8eec, 0x94bd,\n  0x945b, 0x9cf6, 0xfaa7, 0x9bd9, 0xfa5d, 0x9656, 0x9762, 0x94ba,\n  0xa04f, 0x92d8, 0x9bcb, 0x94bb, 0x9d5f, 0x90cf, 0x9465, 0x9f4c,\n  0x90d8, 0x9ebe, 0xfb6d, 0x95ca, 0x9dc2, 0x97f8, 0x8ffc, 0x9473,\n  0x9474, 0xfeb7, 0x8a4b, 0x8a55, 0x8b69, 0x8adc, 0x8b76, 0x9bce,\n  0x8a68, 0xa0f8, 0x98df, 0xfeb5, 0x9bcf, 0x96fb, 0x9bfb, 0x9ece,\n  0x8ee5, 0x9e7b, 0x9bd2, 0x8aa5, 0xfece, 0x8a45, 0x9dfc, 0xfecf,\n  0x8ba5, 0x8aec, 0xfce0, 0x94ad, 0xfed5, 0x94ac, 0xfc5a, 0x9bd6,\n  0x8a6f, 0x8ba9, 0x8e5f, 0x9dcb, 0xfce7, 0x9bd7, 0x93c8, 0x91f0,\n  0x8fe0, 0x9bdb, 0x90ed, 0x9bdc, 0xa0ec, 0x98fa, 0x9be0, 0x93c7,\n  0x9249, 0x96e1, 0x9be2, 0x9be4, 0x8fe1, 0x9be5, 0x94c0, 0x93c3,\n  0x93c5, 0x9079, 0x977b, 0x907e, 0xfee6, 0xfe46, 0x9db8, 0x9270,\n  0x95a8, 0x94c8, 0x98b9, 0x9140, 0xfcbe, 0x9157, 0x8bb2, 0xfadf,\n  0x9be6, 0x9643, 0x8e44, 0x9c4f, 0xfef4, 0x9be8, 0x93dc, 0x966f,\n  0x8e4a, 0x9bed, 0x92f6, 0x9db9, 0x8e4e, 0xfbcf, 0x9ec2, 0x94e5,\n  0x9bf0, 0x94e4, 0x9551, 0x8bbb, 0x9bf1, 0x94f0, 0x8e64, 0x94ea,\n  0x8f61, 0x9b64, 0x8e5b, 0x9bf2, 0x9fbe, 0x9dc9, 0x8e6c, 0x8f73,\n  0x8f75, 0x8e71, 0x8e60, 0x8e6a, 0x9552, 0x9554, 0x8ad4, 0x9dbb,\n  0x9543, 0x92fe, 0x94f2, 0x94f1, 0xa0ea, 0x9dd2, 0xa0b1, 0x91f8,\n  0x9462, 0x9ba4, 0x8ead, 0x9ead, 0x96d0, 0xfeee, 0x8ab4, 0x9757,\n  0x8a77, 0x9bf7, 0x8eb5, 0xa06d, 0x8eb6, 0x9756, 0x9540, 0xa0f3,\n  0x94be, 0x9bfa, 0xfddf, 0x9dbc, 0x94fe, 0x8bdb, 0xa0fe, 0x8ec0,\n  0x9f47, 0x8bde, 0xa0fb, 0x8ec3, 0x9649, 0xfec2, 0x954c, 0x9bfd,\n  0x90cc, 0x9c60, 0x954b, 0x9bfe, 0x9c70, 0x9c43, 0x9c47, 0x8ecc,\n  0x8e54, 0x8ee4, 0x9c49, 0x8b5e, 0x955e, 0x955c, 0x9c4b, 0x8be1,\n  0x8ed9, 0x9db4, 0x925f, 0x9c4c, 0x8aa1, 0x8edb, 0x9c56, 0x8aa2,\n  0x9754, 0x9c5e, 0x9ed4, 0x9568, 0xa0c3, 0x8ae6, 0xa0f7, 0x9c61,\n  0x9c5f, 0xfc4d, 0x9e5b, 0x9e69, 0x9c63, 0xfec7, 0xfec6, 0x9c67,\n  0x9c69, 0x8be2, 0x9165, 0x9ce7, 0x8a54, 0x9c6c, 0x9c6e, 0xfe5d,\n  0x9c73, 0x956a, 0x956d, 0x8ef0, 0x8f4d, 0x8ef6, 0xfabc, 0xfbda,\n  0x8b4c, 0xfd75, 0x9bdd, 0xfaf5, 0x9c74, 0x9545, 0x96c6, 0x8f6a,\n  0x8f4e, 0x9c78, 0xfa55, 0x97e4, 0x9c41, 0x925c, 0x96fa, 0xfb66,\n  0x8e65, 0x9849, 0xfba8, 0x9842, 0x9c7a, 0x97fb, 0x90ca, 0x9c5b,\n  0x974d, 0x8ed3, 0x9561, 0x9f4b, 0x9fb5, 0x93d2, 0xfdaa, 0x9840,\n  0x9146, 0x9867, 0xfa5a, 0xfba9, 0x9841, 0xfcfd, 0xfdab, 0x91bd,\n  0x8f4c, 0x96c9, 0x8f55, 0xfbae, 0x956f, 0x9c7d, 0xa0f0, 0x946f,\n  0xfdac, 0x96cb, 0x96ce, 0xa056, 0x9ce1, 0x96c4, 0x8f5e, 0x8f6c,\n  0x8ea3, 0xfbb3, 0xfc53, 0xfdb3, 0x8f6b, 0x96ca, 0x8f79, 0x9e6f,\n  0xa0c5, 0xfc78, 0x8e42, 0x8f5a, 0x90c2, 0x8ea5, 0x9061, 0x924f,\n  0x9373, 0xfdb5, 0xfecc, 0xfbbd, 0x9843, 0x96c5, 0x89bc, 0x9ca3,\n  0x924b, 0x984a, 0x8fa4, 0xa0f1, 0x9efb, 0x9cd2, 0x8fa7, 0xfc5c,\n  0x9845, 0x9046, 0xfefa, 0x9560, 0x9f48, 0x9247, 0x90fb, 0x9ca4,\n  0x9571, 0x9ca6, 0x9ca7, 0x9caa, 0x9ed3, 0x9e70, 0x9cac, 0x8fae,\n  0x957d, 0x9cb0, 0x97b6, 0xa0bd, 0x8adf, 0x9eaa, 0x8fbd, 0x8fbf,\n  0x9369, 0x9ba7, 0xc8a4, 0xfeea, 0x9be1, 0x8b41, 0x9db6, 0xa0eb,\n  0x9ba3, 0x8ba1, 0x8fc8, 0x894c, 0x9860, 0x94c7, 0x8b58, 0x95ab,\n  0x95aa, 0x9cc3, 0x9cc4, 0x93d6, 0x9dac, 0x8be6, 0x8a71, 0x8fd1,\n  0x99d5, 0x90f4, 0x8aa3, 0x9cce, 0x9cd4, 0x9cd5, 0xfbc8, 0x9db3,\n  0xfc70, 0x8fd7, 0x9b73, 0xfa5b, 0x8fd2, 0x9064, 0x98b6, 0x9668,\n  0x9cd6, 0x98bd, 0x8fdc, 0xfef6, 0x8fd9, 0x9541, 0x97f3, 0x9bf8,\n  0x9e6c, 0x8ff2, 0x8fee, 0x9cd7, 0x9e6e, 0x8a40, 0x8fef, 0x8ff4,\n  0x8ff5, 0x95c2, 0x986a, 0x97cf, 0x9ee5, 0x9e7c, 0x9041, 0x9cdb,\n  0x9441, 0x9ce6, 0x9db0, 0x9cea, 0x9ced, 0x9cfa, 0x8b62, 0x8a4e,\n  0x9cca, 0x8a66, 0x9cfb, 0x9cfc, 0x9cfe, 0x8a53, 0x9ce5, 0x9d40,\n  0x9d41, 0x9045, 0x8b73, 0x97ca, 0x9d42, 0x8a61, 0x8bae, 0x8ad2,\n  0x8ba2, 0x9df2, 0x9d43, 0x9cdf, 0x9d44, 0x8eca, 0x904e, 0x8eb3,\n  0x9ff5, 0x9d45, 0x904f, 0x9d47, 0x89ca, 0x9cb5, 0xfbfe, 0x905e,\n  0x9063, 0x9057, 0x9066, 0x9bc0, 0xfce5, 0x9162, 0x9067, 0x8fa1,\n  0x8fa2, 0x9d48, 0xfad3, 0x905d, 0x90b9, 0x906b, 0x9069, 0xfe57,\n  0xfe55, 0x9073, 0x9bef, 0x9cf0, 0x9d4b, 0xfed9, 0xfeda, 0x91e0,\n  0x91d8, 0x9646, 0x9360, 0xfa53, 0x9cd3, 0x9d4e, 0xfb40, 0x8de2,\n  0x9442, 0x9056, 0x9865, 0xfa4a, 0x9d50, 0x9d52, 0x95af, 0x975a,\n  0x9349, 0x9747, 0xa0f4, 0x9778, 0x8fcf, 0xfc60, 0xfc56, 0x91dc,\n  0x9661, 0x92ec, 0x935d, 0x8ede, 0x96fe, 0xfd4f, 0x95de, 0x98b0,\n  0xa040, 0x97bd, 0x977d, 0x97f5, 0x9bac, 0xfada, 0x92c2, 0x97b1,\n  0x907b, 0x93fe, 0x947b, 0x9777, 0xfabe, 0xfd43, 0x90c6, 0x90a4,\n  0x90a8, 0x94a9, 0x90a9, 0x95e0, 0x907d, 0x9265, 0xfdba, 0x93c4,\n  0xfeed, 0x9dab, 0xa0e3, 0x9648, 0x9d53, 0x8aa9, 0x9bc5, 0x965d,\n  0x975f, 0x965f, 0x966e, 0xfb5d, 0x9db1, 0xfea3, 0x9db2, 0x95ae,\n  0xfca3, 0xa0a2, 0x9655, 0x9d54, 0x9341, 0x95ad, 0x91d5, 0x977a,\n  0xfdfc, 0x8e47, 0x93fd, 0x90a5, 0x90ac, 0x95ac, 0x90ae, 0xfea5,\n  0x9d56, 0x97e3, 0x95e2, 0x9466, 0x9647, 0x91b8, 0x9cec, 0x90ad,\n  0x95e3, 0x8b4f, 0x8ae3, 0x8b4d, 0x95ea, 0x8b4e, 0x8bed, 0x91d9,\n  0xa0a4, 0x95f5, 0x95f4, 0x9fb3, 0xfeaf, 0xfe72, 0x927a, 0xfeac,\n  0x95f3, 0x9d58, 0x9372, 0x91c5, 0x9642, 0x90cd, 0x95fe, 0x9159,\n  0x9c65, 0x97cc, 0x90ce, 0x9d59, 0xfcf5, 0xfefd, 0x9d5b, 0x9d5c,\n  0x937e, 0x98ac, 0x9d5e, 0xfdd0, 0xfd60, 0x9ccf, 0x90dd, 0x90e0,\n  0x90f3, 0x98b1, 0x90f0, 0x93bd, 0x95b7, 0x9f46, 0x8e4b, 0x9658,\n  0x8a4c, 0x9d63, 0x9ecf, 0x9d65, 0x9d66, 0x965a, 0x9d64, 0x8a6c,\n  0x8ad9, 0x9d67, 0x8a70, 0x8bf3, 0x9150, 0x9cc1, 0x9d68, 0x93a7,\n  0x9674, 0xa0ef, 0x9151, 0x96c1, 0x9676, 0x9d69, 0xfca4, 0x9d6a,\n  0x924e, 0x9d6b, 0x9bc1, 0x9d6c, 0x8a65, 0x915d, 0x9d6d, 0x915a,\n  0x9cc0, 0x916a, 0x9d6e, 0x9ea6, 0x9dcd, 0x9d6f, 0x89bb, 0x9ef9,\n  0x96b4, 0x9172, 0x9ec8, 0x8b55, 0x9d71, 0x9d72, 0x9ecc, 0x9174,\n  0x9ed0, 0x905c, 0x8ed2, 0x91a8, 0x9177, 0x96bf, 0x96c0, 0x8fb1,\n  0x96b7, 0x9178, 0x89be, 0x917c, 0xfb77, 0x9175, 0x91a3, 0x9176,\n  0x96be, 0x9179, 0x96b6, 0x91a4, 0x91a6, 0x9d75, 0x9052, 0xa045,\n  0x91a9, 0x98aa, 0x8baa, 0x9cdd, 0x9d77, 0x8940, 0x9eec, 0x93aa,\n  0x9478, 0x9d7a, 0x8ac9, 0x8b4b, 0x9fec, 0x8ae2, 0x9e75, 0x9874,\n  0x9ac8, 0xa047, 0x8bc3, 0xfc48, 0xfc77, 0x9c52, 0x8efd, 0x8fa8,\n  0x957a, 0x8ff0,\n};\n\nstatic const Summary16 hkscs1999_uni2indx_page00[45] = {\n  /* 0x0000 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0100 }, {    1, 0x0000 },\n  {    1, 0x0703 }, {    6, 0x000c }, {    8, 0x3703 }, {   15, 0x170c },\n  /* 0x0100 */\n  {   21, 0x0003 }, {   23, 0x0c0c }, {   27, 0x0800 }, {   28, 0x0000 },\n  {   28, 0x3800 }, {   31, 0x0008 }, {   32, 0x0800 }, {   33, 0x0000 },\n  {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 },\n  {   33, 0x6000 }, {   35, 0x1557 }, {   43, 0x0000 }, {   43, 0x0000 },\n  /* 0x0200 */\n  {   43, 0x0000 }, {   43, 0x0000 }, {   43, 0x0000 }, {   43, 0x0000 },\n  {   43, 0x0000 }, {   43, 0x0813 }, {   47, 0x0402 }, {   49, 0x0020 },\n  {   50, 0x0408 }, {   52, 0x0000 }, {   52, 0x0000 }, {   52, 0x0000 },\n  {   52, 0x0040 },\n};\nstatic const Summary16 hkscs1999_uni2indx_page04[6] = {\n  /* 0x0400 */\n  {   53, 0x0002 }, {   54, 0xffff }, {   70, 0xffff }, {   86, 0xffff },\n  {  102, 0xffff }, {  118, 0x0002 },\n};\nstatic const Summary16 hkscs1999_uni2indx_page1e[13] = {\n  /* 0x1e00 */\n  {  119, 0x0000 }, {  119, 0x0000 }, {  119, 0x0000 }, {  119, 0x0000 },\n  {  119, 0x0000 }, {  119, 0x0000 }, {  119, 0x0000 }, {  119, 0x0000 },\n  {  119, 0x0000 }, {  119, 0x0000 }, {  119, 0x0000 }, {  119, 0xc000 },\n  {  121, 0x0003 },\n};\nstatic const Summary16 hkscs1999_uni2indx_page21[15] = {\n  /* 0x2100 */\n  {  123, 0x0000 }, {  123, 0x0040 }, {  124, 0x0002 }, {  125, 0x0000 },\n  {  125, 0x0000 }, {  125, 0x0000 }, {  125, 0x0000 }, {  125, 0x03ff },\n  {  135, 0x0000 }, {  135, 0x0000 }, {  135, 0x0000 }, {  135, 0x0300 },\n  {  137, 0x0000 }, {  137, 0x0000 }, {  137, 0x0080 },\n};\nstatic const Summary16 hkscs1999_uni2indx_page23[40] = {\n  /* 0x2300 */\n  {  138, 0x0000 }, {  138, 0x0000 }, {  138, 0x0000 }, {  138, 0x0000 },\n  {  138, 0x0000 }, {  138, 0x0000 }, {  138, 0x0000 }, {  138, 0x0000 },\n  {  138, 0x0000 }, {  138, 0x0000 }, {  138, 0x0000 }, {  138, 0x0000 },\n  {  138, 0x0000 }, {  138, 0x0c00 }, {  140, 0x0000 }, {  140, 0x0000 },\n  /* 0x2400 */\n  {  140, 0x0000 }, {  140, 0x0000 }, {  140, 0x0000 }, {  140, 0x0000 },\n  {  140, 0x0000 }, {  140, 0x0000 }, {  140, 0x03ff }, {  150, 0x3ff0 },\n  {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 },\n  {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 },\n  /* 0x2500 */\n  {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 }, {  160, 0x0000 },\n  {  160, 0x0000 }, {  160, 0xffff }, {  176, 0xffff }, {  192, 0x0001 },\n};\nstatic const Summary16 hkscs1999_uni2indx_page27[4] = {\n  /* 0x2700 */\n  {  193, 0x0000 }, {  193, 0x0000 }, {  193, 0x0000 }, {  193, 0x2000 },\n};\nstatic const Summary16 hkscs1999_uni2indx_page2e[68] = {\n  /* 0x2e00 */\n  {  194, 0x0000 }, {  194, 0x0000 }, {  194, 0x0000 }, {  194, 0x0000 },\n  {  194, 0x0000 }, {  194, 0x0000 }, {  194, 0x0000 }, {  194, 0x0000 },\n  {  194, 0x35d1 }, {  202, 0x3020 }, {  205, 0x54a0 }, {  210, 0x5040 },\n  {  213, 0xb440 }, {  218, 0x40c0 }, {  221, 0x0008 }, {  222, 0x0000 },\n  /* 0x2f00 */\n  {  222, 0x0000 }, {  222, 0x0000 }, {  222, 0x0000 }, {  222, 0x0008 },\n  {  223, 0x0000 }, {  223, 0x0000 }, {  223, 0x0000 }, {  223, 0x0000 },\n  {  223, 0x0000 }, {  223, 0x0000 }, {  223, 0x0000 }, {  223, 0x0000 },\n  {  223, 0x0000 }, {  223, 0x0000 }, {  223, 0x0000 }, {  223, 0x0000 },\n  /* 0x3000 */\n  {  223, 0x00e0 }, {  226, 0x0000 }, {  226, 0x0000 }, {  226, 0x0000 },\n  {  226, 0xfffe }, {  241, 0xffff }, {  257, 0xffff }, {  273, 0xffff },\n  {  289, 0xffff }, {  305, 0x780f }, {  313, 0xfffe }, {  328, 0xffff },\n  {  344, 0xffff }, {  360, 0xffff }, {  376, 0xffff }, {  392, 0x707f },\n  /* 0x3100 */\n  {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 },\n  {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 },\n  {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 }, {  402, 0x0000 },\n  {  402, 0xffff }, {  418, 0x0000 }, {  418, 0x0000 }, {  418, 0x0000 },\n  /* 0x3200 */\n  {  418, 0x0000 }, {  418, 0x0000 }, {  418, 0x0000 }, {  418, 0x0002 },\n};\nstatic const Summary16 hkscs1999_uni2indx_page34[1724] = {\n  /* 0x3400 */\n  {  419, 0x0000 }, {  419, 0x0000 }, {  419, 0x0000 }, {  419, 0x0020 },\n  {  420, 0x1001 }, {  422, 0x0000 }, {  422, 0x0010 }, {  423, 0x6408 },\n  {  427, 0x0000 }, {  427, 0x0048 }, {  429, 0x8020 }, {  431, 0x1000 },\n  {  432, 0x0102 }, {  434, 0x8000 }, {  435, 0x0010 }, {  436, 0x0800 },\n  /* 0x3500 */\n  {  437, 0x0040 }, {  438, 0x0000 }, {  438, 0x0000 }, {  438, 0x4000 },\n  {  439, 0x0000 }, {  439, 0x000a }, {  441, 0x2002 }, {  443, 0x0185 },\n  {  447, 0x0010 }, {  448, 0x0180 }, {  450, 0x2022 }, {  453, 0x8000 },\n  {  454, 0x44a2 }, {  459, 0x2844 }, {  463, 0x0000 }, {  463, 0x480e },\n  /* 0x3600 */\n  {  468, 0x0200 }, {  469, 0x0500 }, {  471, 0x2008 }, {  473, 0x4220 },\n  {  476, 0x4380 }, {  480, 0x8000 }, {  481, 0x0000 }, {  481, 0x0400 },\n  {  482, 0x0002 }, {  483, 0x0400 }, {  484, 0x1420 }, {  487, 0x1223 },\n  {  492, 0x01ba }, {  498, 0x2058 }, {  502, 0x0066 }, {  506, 0x0020 },\n  /* 0x3700 */\n  {  507, 0x250a }, {  512, 0x1000 }, {  513, 0x302c }, {  518, 0x040d },\n  {  522, 0x0009 }, {  524, 0x0000 }, {  524, 0x8004 }, {  526, 0x0000 },\n  {  526, 0x0000 }, {  526, 0x0080 }, {  527, 0x0001 }, {  528, 0x4200 },\n  {  530, 0x0000 }, {  530, 0x0000 }, {  530, 0x0000 }, {  530, 0x0904 },\n  /* 0x3800 */\n  {  533, 0x8000 }, {  534, 0x0200 }, {  535, 0x2001 }, {  537, 0x0140 },\n  {  539, 0x0000 }, {  539, 0x0000 }, {  539, 0x0008 }, {  540, 0x0000 },\n  {  540, 0x0000 }, {  540, 0x0000 }, {  540, 0x0001 }, {  541, 0x0000 },\n  {  541, 0x1008 }, {  543, 0x0002 }, {  544, 0x0000 }, {  544, 0x0400 },\n  /* 0x3900 */\n  {  545, 0x0100 }, {  546, 0x0010 }, {  547, 0x0080 }, {  548, 0x8004 },\n  {  550, 0x2000 }, {  551, 0x0000 }, {  551, 0x0008 }, {  552, 0x0000 },\n  {  552, 0x0601 }, {  555, 0x0a04 }, {  558, 0x0012 }, {  560, 0x0100 },\n  {  561, 0x0000 }, {  561, 0x1000 }, {  562, 0x1024 }, {  565, 0x4900 },\n  /* 0x3a00 */\n  {  568, 0x004a }, {  571, 0x0180 }, {  573, 0x0600 }, {  575, 0x0010 },\n  {  576, 0x0800 }, {  577, 0x5084 }, {  581, 0x00c0 }, {  583, 0x0000 },\n  {  583, 0x0000 }, {  583, 0x0080 }, {  584, 0x0800 }, {  585, 0x2000 },\n  {  586, 0x0000 }, {  586, 0x4000 }, {  587, 0x0001 }, {  588, 0x0805 },\n  /* 0x3b00 */\n  {  591, 0x4000 }, {  592, 0x0200 }, {  593, 0x0804 }, {  595, 0x0200 },\n  {  596, 0x0004 }, {  597, 0x0100 }, {  598, 0x0001 }, {  599, 0x1806 },\n  {  603, 0x0001 }, {  604, 0x0240 }, {  606, 0x0002 }, {  607, 0x5000 },\n  {  609, 0x0014 }, {  611, 0x2080 }, {  613, 0x1000 }, {  614, 0x001c },\n  /* 0x3c00 */\n  {  617, 0x2000 }, {  618, 0x0122 }, {  621, 0x0000 }, {  621, 0x0000 },\n  {  621, 0x0000 }, {  621, 0x0010 }, {  622, 0x0000 }, {  622, 0x0000 },\n  {  622, 0x0000 }, {  622, 0x0000 }, {  622, 0x0000 }, {  622, 0x0000 },\n  {  622, 0x2800 }, {  624, 0x1042 }, {  627, 0x8800 }, {  629, 0x0000 },\n  /* 0x3d00 */\n  {  629, 0x0000 }, {  629, 0x2008 }, {  631, 0x0000 }, {  631, 0x0804 },\n  {  633, 0x5040 }, {  636, 0x8002 }, {  638, 0x8604 }, {  642, 0x2020 },\n  {  644, 0x8420 }, {  647, 0x0002 }, {  648, 0x2020 }, {  650, 0x8010 },\n  {  652, 0x30c0 }, {  656, 0x0808 }, {  658, 0x0980 }, {  661, 0x3088 },\n  /* 0x3e00 */\n  {  665, 0x0040 }, {  666, 0x0000 }, {  666, 0x0000 }, {  666, 0x0000 },\n  {  666, 0x0109 }, {  669, 0x0020 }, {  670, 0x0000 }, {  670, 0x0010 },\n  {  671, 0x0000 }, {  671, 0x0000 }, {  671, 0x2700 }, {  675, 0x8102 },\n  {  678, 0x1484 }, {  682, 0x44c3 }, {  688, 0x0a86 }, {  693, 0x9419 },\n  /* 0x3f00 */\n  {  699, 0x4051 }, {  703, 0x0000 }, {  703, 0x0000 }, {  703, 0x0000 },\n  {  703, 0x0000 }, {  703, 0x0308 }, {  706, 0x0008 }, {  707, 0x1000 },\n  {  708, 0x0000 }, {  708, 0x0008 }, {  709, 0x0000 }, {  709, 0x0000 },\n  {  709, 0x0001 }, {  710, 0x1080 }, {  712, 0x2020 }, {  714, 0x0600 },\n  /* 0x4000 */\n  {  716, 0x0010 }, {  717, 0x2000 }, {  718, 0x0000 }, {  718, 0x0200 },\n  {  719, 0x0020 }, {  720, 0x0088 }, {  722, 0x8424 }, {  726, 0x0000 },\n  {  726, 0x0000 }, {  726, 0x0000 }, {  726, 0x0100 }, {  727, 0x8800 },\n  {  729, 0x0100 }, {  730, 0x8100 }, {  732, 0x0000 }, {  732, 0x0400 },\n  /* 0x4100 */\n  {  733, 0x4218 }, {  737, 0x0000 }, {  737, 0x0000 }, {  737, 0x0004 },\n  {  738, 0x0000 }, {  738, 0x0000 }, {  738, 0x5080 }, {  741, 0x8000 },\n  {  742, 0x0000 }, {  742, 0x0001 }, {  743, 0x0000 }, {  743, 0x0004 },\n  {  744, 0x8410 }, {  747, 0x0800 }, {  748, 0x8000 }, {  749, 0x0200 },\n  /* 0x4200 */\n  {  750, 0x0000 }, {  750, 0x0002 }, {  751, 0x0000 }, {  751, 0x0000 },\n  {  751, 0x0001 }, {  752, 0x0000 }, {  752, 0x0401 }, {  754, 0x0400 },\n  {  755, 0x1000 }, {  756, 0x0010 }, {  757, 0x0000 }, {  757, 0x1220 },\n  {  760, 0x0000 }, {  760, 0x0000 }, {  760, 0x0000 }, {  760, 0x1810 },\n  /* 0x4300 */\n  {  763, 0x0000 }, {  763, 0x0000 }, {  763, 0x0800 }, {  764, 0x0000 },\n  {  764, 0x0000 }, {  764, 0x0000 }, {  764, 0x4000 }, {  765, 0x0000 },\n  {  765, 0x0000 }, {  765, 0x0080 }, {  766, 0x0000 }, {  766, 0x0400 },\n  {  767, 0x0002 }, {  768, 0x8200 }, {  770, 0x2000 }, {  771, 0x0004 },\n  /* 0x4400 */\n  {  772, 0x0006 }, {  774, 0x0008 }, {  775, 0x2020 }, {  777, 0x0000 },\n  {  777, 0x0000 }, {  777, 0x0000 }, {  777, 0x0000 }, {  777, 0x0400 },\n  {  778, 0x8000 }, {  779, 0x8002 }, {  781, 0x0005 }, {  783, 0x0081 },\n  {  785, 0x4021 }, {  788, 0xa000 }, {  790, 0x1e10 }, {  795, 0x0010 },\n  /* 0x4500 */\n  {  796, 0x0a18 }, {  800, 0x2040 }, {  802, 0x4080 }, {  804, 0xa808 },\n  {  808, 0x0008 }, {  809, 0x1026 }, {  813, 0x0404 }, {  815, 0x0080 },\n  {  816, 0x0020 }, {  817, 0x0000 }, {  817, 0x0000 }, {  817, 0x0000 },\n  {  817, 0x0000 }, {  817, 0x0000 }, {  817, 0x0200 }, {  818, 0x0000 },\n  /* 0x4600 */\n  {  818, 0x8040 }, {  820, 0x00a0 }, {  822, 0x0000 }, {  822, 0x0000 },\n  {  822, 0x0000 }, {  822, 0x0800 }, {  823, 0x0000 }, {  823, 0x0400 },\n  {  824, 0x0001 }, {  825, 0x0000 }, {  825, 0x0000 }, {  825, 0x0000 },\n  {  825, 0x8000 }, {  826, 0x0001 }, {  827, 0x0000 }, {  827, 0x0020 },\n  /* 0x4700 */\n  {  828, 0x0000 }, {  828, 0x0108 }, {  830, 0x0000 }, {  830, 0x0000 },\n  {  830, 0x4000 }, {  831, 0x0000 }, {  831, 0x0000 }, {  831, 0x1000 },\n  {  832, 0x0000 }, {  832, 0x0100 }, {  833, 0x0040 }, {  834, 0x0000 },\n  {  834, 0x0000 }, {  834, 0x0020 }, {  835, 0x2000 }, {  836, 0x0010 },\n  /* 0x4800 */\n  {  837, 0x0801 }, {  839, 0x0000 }, {  839, 0x0000 }, {  839, 0x0080 },\n  {  840, 0x0000 }, {  840, 0x2000 }, {  841, 0x0000 }, {  841, 0x0002 },\n  {  842, 0x0000 }, {  842, 0x0800 }, {  843, 0x6000 }, {  845, 0x0000 },\n  {  845, 0x0000 }, {  845, 0x2001 }, {  847, 0x2000 }, {  848, 0x0408 },\n  /* 0x4900 */\n  {  850, 0x0040 }, {  851, 0x4002 }, {  853, 0x2420 }, {  856, 0x5020 },\n  {  859, 0x0020 }, {  860, 0x000a }, {  862, 0x0420 }, {  864, 0x0004 },\n  {  865, 0x0200 }, {  866, 0x0000 }, {  866, 0x0082 }, {  868, 0x0000 },\n  {  868, 0x0000 }, {  868, 0x8000 }, {  869, 0x00a0 }, {  871, 0x0000 },\n  /* 0x4a00 */\n  {  871, 0x8000 }, {  872, 0x2000 }, {  873, 0x0010 }, {  874, 0x0020 },\n  {  875, 0x0000 }, {  875, 0x0000 }, {  875, 0x0000 }, {  875, 0x0000 },\n  {  875, 0x0000 }, {  875, 0x0040 }, {  876, 0x0000 }, {  876, 0x0110 },\n  {  878, 0x0000 }, {  878, 0x0002 }, {  879, 0x0010 }, {  880, 0x8000 },\n  /* 0x4b00 */\n  {  881, 0x0000 }, {  881, 0x0200 }, {  882, 0x1000 }, {  883, 0x0080 },\n  {  884, 0x0000 }, {  884, 0x0000 }, {  884, 0x8000 }, {  885, 0x4805 },\n  {  889, 0x4000 }, {  890, 0x20c9 }, {  895, 0x0000 }, {  895, 0x6000 },\n  {  897, 0x0001 }, {  898, 0x0000 }, {  898, 0x0000 }, {  898, 0x0000 },\n  /* 0x4c00 */\n  {  898, 0x4090 }, {  901, 0x0000 }, {  901, 0x0000 }, {  901, 0x4800 },\n  {  903, 0x0000 }, {  903, 0x0800 }, {  904, 0x2000 }, {  905, 0x2000 },\n  {  906, 0x0000 }, {  906, 0x0000 }, {  906, 0x4010 }, {  908, 0x0081 },\n  {  910, 0x2000 }, {  911, 0x0000 }, {  911, 0x2002 }, {  913, 0x0000 },\n  /* 0x4d00 */\n  {  913, 0x0200 }, {  914, 0x0001 }, {  915, 0x0000 }, {  915, 0x0010 },\n  {  916, 0x0000 }, {  916, 0x0000 }, {  916, 0x0000 }, {  916, 0x0000 },\n  {  916, 0x0000 }, {  916, 0x1002 }, {  918, 0x0000 }, {  918, 0x0000 },\n  {  918, 0x0000 }, {  918, 0x0000 }, {  918, 0x0000 }, {  918, 0x0000 },\n  /* 0x4e00 */\n  {  918, 0x0010 }, {  919, 0x1400 }, {  921, 0x1512 }, {  926, 0xa0c0 },\n  {  930, 0x0200 }, {  931, 0x0c00 }, {  933, 0x0400 }, {  934, 0x0100 },\n  {  935, 0x02a3 }, {  940, 0x0500 }, {  942, 0x0001 }, {  943, 0x9880 },\n  {  947, 0x4000 }, {  948, 0x0000 }, {  948, 0x4c00 }, {  951, 0x0100 },\n  /* 0x4f00 */\n  {  952, 0x0008 }, {  953, 0x0400 }, {  954, 0x0300 }, {  956, 0x0284 },\n  {  959, 0x0824 }, {  962, 0x0000 }, {  962, 0x0000 }, {  962, 0x0004 },\n  {  963, 0x0400 }, {  964, 0x0000 }, {  964, 0x0904 }, {  967, 0x2001 },\n  {  969, 0x1100 }, {  971, 0x0000 }, {  971, 0x0030 }, {  973, 0x2204 },\n  /* 0x5000 */\n  {  976, 0x0108 }, {  978, 0x0000 }, {  978, 0x4000 }, {  979, 0x0010 },\n  {  980, 0x0000 }, {  980, 0x0140 }, {  982, 0x1040 }, {  984, 0x0000 },\n  {  984, 0x0102 }, {  986, 0x0001 }, {  987, 0x0040 }, {  988, 0x0000 },\n  {  988, 0x2000 }, {  989, 0x8201 }, {  992, 0x0002 }, {  993, 0x1010 },\n  /* 0x5100 */\n  {  995, 0x6002 }, {  998, 0x0000 }, {  998, 0x0800 }, {  999, 0x0000 },\n  {  999, 0x0000 }, {  999, 0x0040 }, { 1000, 0x0401 }, { 1002, 0x0210 },\n  { 1004, 0x0144 }, { 1007, 0x1440 }, { 1010, 0x0980 }, { 1013, 0x013c },\n  { 1018, 0x8288 }, { 1022, 0x880e }, { 1027, 0x2014 }, { 1030, 0x5010 },\n  /* 0x5200 */\n  { 1033, 0x0824 }, { 1036, 0x8000 }, { 1037, 0x00c1 }, { 1040, 0x1010 },\n  { 1042, 0x0000 }, { 1042, 0x0280 }, { 1044, 0x0101 }, { 1046, 0x0208 },\n  { 1048, 0x8000 }, { 1049, 0x0411 }, { 1052, 0x0112 }, { 1055, 0x0220 },\n  { 1057, 0x1020 }, { 1059, 0x0003 }, { 1061, 0x0003 }, { 1063, 0x0200 },\n  /* 0x5300 */\n  { 1064, 0x0002 }, { 1065, 0x0000 }, { 1065, 0x1080 }, { 1067, 0x090c },\n  { 1071, 0x4004 }, { 1073, 0xa000 }, { 1075, 0x2290 }, { 1079, 0x6010 },\n  { 1082, 0x0000 }, { 1082, 0x0008 }, { 1083, 0x4f45 }, { 1091, 0x0041 },\n  { 1093, 0x1026 }, { 1097, 0x0707 }, { 1103, 0x0001 }, { 1104, 0x40c0 },\n  /* 0x5400 */\n  { 1107, 0x0000 }, { 1107, 0x0458 }, { 1111, 0x800a }, { 1114, 0x0004 },\n  { 1115, 0x2800 }, { 1117, 0x0000 }, { 1117, 0x2600 }, { 1120, 0x0000 },\n  { 1120, 0x8020 }, { 1122, 0x5098 }, { 1127, 0x0018 }, { 1129, 0x0214 },\n  { 1132, 0x3800 }, { 1135, 0x0401 }, { 1137, 0x8008 }, { 1139, 0x0000 },\n  /* 0x5500 */\n  { 1139, 0x2004 }, { 1141, 0x4108 }, { 1144, 0x0928 }, { 1148, 0x8000 },\n  { 1149, 0x0280 }, { 1151, 0x2008 }, { 1153, 0x0a00 }, { 1155, 0x020e },\n  { 1159, 0x0040 }, { 1160, 0x0001 }, { 1161, 0x0200 }, { 1162, 0x1611 },\n  { 1167, 0x0002 }, { 1168, 0x4180 }, { 1171, 0x1400 }, { 1173, 0x0823 },\n  /* 0x5600 */\n  { 1177, 0x0020 }, { 1178, 0x4002 }, { 1180, 0x202f }, { 1186, 0x0080 },\n  { 1187, 0xa008 }, { 1190, 0x2015 }, { 1194, 0x0002 }, { 1195, 0x1c00 },\n  { 1198, 0x0e00 }, { 1201, 0xc004 }, { 1204, 0x8012 }, { 1207, 0x8202 },\n  { 1210, 0x0000 }, { 1210, 0x0040 }, { 1211, 0xa004 }, { 1214, 0x2002 },\n  /* 0x5700 */\n  { 1216, 0x0001 }, { 1217, 0x2020 }, { 1219, 0x0000 }, { 1219, 0x8004 },\n  { 1221, 0x004c }, { 1224, 0x8890 }, { 1228, 0x0080 }, { 1229, 0xc400 },\n  { 1232, 0x2500 }, { 1235, 0x1001 }, { 1237, 0x0482 }, { 1240, 0x4810 },\n  { 1243, 0x0110 }, { 1245, 0x6080 }, { 1248, 0x8040 }, { 1250, 0x4000 },\n  /* 0x5800 */\n  { 1251, 0x0008 }, { 1252, 0x0004 }, { 1253, 0x0044 }, { 1255, 0x0400 },\n  { 1256, 0x0091 }, { 1259, 0x9000 }, { 1261, 0x1200 }, { 1263, 0x000c },\n  { 1265, 0x0000 }, { 1265, 0x0600 }, { 1267, 0x0480 }, { 1269, 0x0861 },\n  { 1273, 0x0800 }, { 1274, 0x1000 }, { 1275, 0x0001 }, { 1276, 0x080d },\n  /* 0x5900 */\n  { 1280, 0x04b4 }, { 1285, 0x8002 }, { 1287, 0x0000 }, { 1287, 0x0014 },\n  { 1289, 0x0000 }, { 1289, 0x0000 }, { 1289, 0x0020 }, { 1290, 0x0020 },\n  { 1291, 0x0200 }, { 1292, 0x8410 }, { 1295, 0x1000 }, { 1296, 0x0181 },\n  { 1299, 0x0210 }, { 1301, 0x0200 }, { 1302, 0x8800 }, { 1304, 0x0301 },\n  /* 0x5a00 */\n  { 1307, 0x2804 }, { 1310, 0x0004 }, { 1311, 0x1c92 }, { 1317, 0x2000 },\n  { 1318, 0x0020 }, { 1319, 0x0210 }, { 1321, 0x490a }, { 1326, 0x4202 },\n  { 1329, 0x0146 }, { 1333, 0x0242 }, { 1336, 0x0803 }, { 1339, 0x0000 },\n  { 1339, 0xc008 }, { 1342, 0x0008 }, { 1343, 0x0010 }, { 1344, 0x4405 },\n  /* 0x5b00 */\n  { 1348, 0x2000 }, { 1349, 0x8002 }, { 1351, 0x0800 }, { 1352, 0x0000 },\n  { 1352, 0x8452 }, { 1357, 0x0000 }, { 1357, 0x2140 }, { 1360, 0x1050 },\n  { 1363, 0x0005 }, { 1365, 0xe001 }, { 1369, 0x0400 }, { 1370, 0x0000 },\n  { 1370, 0x0008 }, { 1371, 0x00a0 }, { 1373, 0x0000 }, { 1373, 0x8008 },\n  /* 0x5c00 */\n  { 1375, 0x0020 }, { 1376, 0x5018 }, { 1380, 0x0009 }, { 1382, 0x0000 },\n  { 1382, 0x0600 }, { 1384, 0x4008 }, { 1386, 0x0000 }, { 1386, 0x0000 },\n  { 1386, 0x0020 }, { 1387, 0x5600 }, { 1391, 0x0000 }, { 1391, 0x0400 },\n  { 1392, 0x0006 }, { 1394, 0x0002 }, { 1395, 0x8220 }, { 1398, 0x0000 },\n  /* 0x5d00 */\n  { 1398, 0x0000 }, { 1398, 0x0121 }, { 1401, 0x9000 }, { 1403, 0x4000 },\n  { 1404, 0x0140 }, { 1406, 0x08c0 }, { 1409, 0x0000 }, { 1409, 0x0011 },\n  { 1411, 0x4820 }, { 1414, 0x0000 }, { 1414, 0x0810 }, { 1416, 0x0240 },\n  { 1418, 0x0002 }, { 1419, 0x0880 }, { 1421, 0x0000 }, { 1421, 0x0020 },\n  /* 0x5e00 */\n  { 1422, 0x0a00 }, { 1424, 0x0004 }, { 1425, 0x4000 }, { 1426, 0x0000 },\n  { 1426, 0x0104 }, { 1428, 0x4000 }, { 1429, 0x0000 }, { 1429, 0x8400 },\n  { 1431, 0x0048 }, { 1433, 0x0000 }, { 1433, 0x0000 }, { 1433, 0x2000 },\n  { 1434, 0x2000 }, { 1435, 0x0001 }, { 1436, 0x0000 }, { 1436, 0x1b10 },\n  /* 0x5f00 */\n  { 1441, 0x7000 }, { 1444, 0x0000 }, { 1444, 0x0020 }, { 1445, 0x0400 },\n  { 1446, 0x2000 }, { 1447, 0x1003 }, { 1450, 0x000a }, { 1452, 0x0804 },\n  { 1454, 0x0008 }, { 1455, 0x0000 }, { 1455, 0x0090 }, { 1457, 0x0402 },\n  { 1459, 0x0010 }, { 1460, 0x8800 }, { 1462, 0x0000 }, { 1462, 0x0000 },\n  /* 0x6000 */\n  { 1462, 0x0000 }, { 1462, 0x0000 }, { 1462, 0x0008 }, { 1463, 0x0802 },\n  { 1465, 0x0400 }, { 1466, 0x0004 }, { 1467, 0x0000 }, { 1467, 0x40a0 },\n  { 1470, 0x0000 }, { 1470, 0x4000 }, { 1471, 0x0090 }, { 1473, 0x0008 },\n  { 1474, 0x0000 }, { 1474, 0x4080 }, { 1476, 0x0388 }, { 1480, 0x2000 },\n  /* 0x6100 */\n  { 1481, 0x1080 }, { 1483, 0x0200 }, { 1484, 0x0000 }, { 1484, 0x2001 },\n  { 1486, 0x0004 }, { 1487, 0x1201 }, { 1490, 0x8011 }, { 1493, 0x2000 },\n  { 1494, 0x0082 }, { 1496, 0x1320 }, { 1500, 0x0000 }, { 1500, 0x0280 },\n  { 1502, 0x8001 }, { 1504, 0x0409 }, { 1507, 0x0004 }, { 1508, 0x0000 },\n  /* 0x6200 */\n  { 1508, 0x0000 }, { 1508, 0x0000 }, { 1508, 0x1000 }, { 1509, 0x0280 },\n  { 1511, 0x1000 }, { 1512, 0x0000 }, { 1512, 0x0100 }, { 1513, 0x0000 },\n  { 1513, 0x0024 }, { 1515, 0x2001 }, { 1517, 0x0050 }, { 1519, 0x0000 },\n  { 1519, 0x0028 }, { 1521, 0x8020 }, { 1523, 0x0020 }, { 1524, 0x0000 },\n  /* 0x6300 */\n  { 1524, 0x0000 }, { 1524, 0x0100 }, { 1525, 0x4000 }, { 1526, 0x00a2 },\n  { 1529, 0x0000 }, { 1529, 0x0000 }, { 1529, 0x1010 }, { 1531, 0x8200 },\n  { 1533, 0x0800 }, { 1534, 0x0000 }, { 1534, 0x0000 }, { 1534, 0x0200 },\n  { 1535, 0x0002 }, { 1536, 0x4002 }, { 1538, 0x0044 }, { 1540, 0x5900 },\n  /* 0x6400 */\n  { 1544, 0x0080 }, { 1545, 0x0000 }, { 1545, 0x0000 }, { 1545, 0x0d04 },\n  { 1549, 0x0000 }, { 1549, 0x0400 }, { 1550, 0x0000 }, { 1550, 0x1002 },\n  { 1552, 0x2000 }, { 1553, 0x0002 }, { 1554, 0x8000 }, { 1555, 0x0050 },\n  { 1557, 0x0001 }, { 1558, 0x2008 }, { 1560, 0x04a2 }, { 1564, 0x0000 },\n  /* 0x6500 */\n  { 1564, 0x0400 }, { 1565, 0xc002 }, { 1568, 0x0000 }, { 1568, 0x0031 },\n  { 1571, 0x2000 }, { 1572, 0x8000 }, { 1573, 0x2800 }, { 1575, 0x0000 },\n  { 1575, 0x0360 }, { 1579, 0x0000 }, { 1579, 0x0000 }, { 1579, 0x4020 },\n  { 1581, 0x0000 }, { 1581, 0x0012 }, { 1583, 0x0009 }, { 1585, 0x8000 },\n  /* 0x6600 */\n  { 1586, 0x0000 }, { 1586, 0x4100 }, { 1588, 0x0008 }, { 1589, 0x0001 },\n  { 1590, 0x0910 }, { 1593, 0x0088 }, { 1595, 0x0888 }, { 1598, 0x2008 },\n  { 1600, 0x4020 }, { 1602, 0x0404 }, { 1604, 0x2010 }, { 1606, 0x8048 },\n  { 1609, 0x6000 }, { 1611, 0x0000 }, { 1611, 0x0000 }, { 1611, 0x0002 },\n  /* 0x6700 */\n  { 1612, 0x5004 }, { 1615, 0x4040 }, { 1617, 0x0020 }, { 1618, 0x0040 },\n  { 1619, 0x0010 }, { 1620, 0x0000 }, { 1620, 0x0086 }, { 1623, 0x0000 },\n  { 1623, 0x8000 }, { 1624, 0x0000 }, { 1624, 0x1011 }, { 1627, 0x8002 },\n  { 1629, 0x0000 }, { 1629, 0x00c0 }, { 1631, 0x0000 }, { 1631, 0x4200 },\n  /* 0x6800 */\n  { 1633, 0x201f }, { 1639, 0x4801 }, { 1642, 0x0004 }, { 1643, 0x40c0 },\n  { 1646, 0x0480 }, { 1648, 0x2060 }, { 1651, 0x0020 }, { 1652, 0x0000 },\n  { 1652, 0x0110 }, { 1654, 0x0100 }, { 1655, 0x0040 }, { 1656, 0x2240 },\n  { 1659, 0x0428 }, { 1662, 0x0000 }, { 1662, 0x0000 }, { 1662, 0x0000 },\n  /* 0x6900 */\n  { 1662, 0x020f }, { 1667, 0x0d00 }, { 1670, 0x1000 }, { 1671, 0x4040 },\n  { 1673, 0x0048 }, { 1675, 0x0020 }, { 1676, 0x0092 }, { 1679, 0x000c },\n  { 1681, 0x0421 }, { 1684, 0x8100 }, { 1686, 0x0004 }, { 1687, 0x0004 },\n  { 1688, 0x0001 }, { 1689, 0x0062 }, { 1692, 0x0202 }, { 1694, 0x0600 },\n  /* 0x6a00 */\n  { 1696, 0x1808 }, { 1699, 0x1400 }, { 1701, 0x3800 }, { 1704, 0x0008 },\n  { 1705, 0x1020 }, { 1707, 0x008c }, { 1710, 0x0020 }, { 1711, 0x0412 },\n  { 1714, 0x8404 }, { 1717, 0x2200 }, { 1719, 0x0880 }, { 1721, 0x4026 },\n  { 1725, 0x0700 }, { 1728, 0x0110 }, { 1730, 0x0000 }, { 1730, 0x0040 },\n  /* 0x6b00 */\n  { 1731, 0x0020 }, { 1732, 0x2000 }, { 1733, 0x0000 }, { 1733, 0x0020 },\n  { 1734, 0x0000 }, { 1734, 0x0084 }, { 1736, 0x8000 }, { 1737, 0x0410 },\n  { 1739, 0x0002 }, { 1740, 0x0000 }, { 1740, 0x0000 }, { 1740, 0x0000 },\n  { 1740, 0x0002 }, { 1741, 0x1000 }, { 1742, 0x0402 }, { 1744, 0x0400 },\n  /* 0x6c00 */\n  { 1745, 0x0000 }, { 1745, 0x1000 }, { 1746, 0x0000 }, { 1746, 0x26a2 },\n  { 1752, 0x0200 }, { 1753, 0x0500 }, { 1755, 0x4000 }, { 1756, 0x8220 },\n  { 1759, 0x0000 }, { 1759, 0x8000 }, { 1760, 0x8404 }, { 1763, 0x0004 },\n  { 1764, 0x4800 }, { 1766, 0x8000 }, { 1767, 0x0400 }, { 1768, 0x0000 },\n  /* 0x6d00 */\n  { 1768, 0x0064 }, { 1771, 0x0000 }, { 1771, 0x0050 }, { 1773, 0x0000 },\n  { 1773, 0x4000 }, { 1774, 0x1880 }, { 1777, 0x0000 }, { 1777, 0x0006 },\n  { 1779, 0x8002 }, { 1781, 0x0040 }, { 1782, 0x0030 }, { 1784, 0x0202 },\n  { 1786, 0x0000 }, { 1786, 0x0000 }, { 1786, 0x0000 }, { 1786, 0x0000 },\n  /* 0x6e00 */\n  { 1786, 0x8414 }, { 1790, 0x0120 }, { 1792, 0x0600 }, { 1794, 0x0000 },\n  { 1794, 0x8000 }, { 1795, 0x0201 }, { 1797, 0x0000 }, { 1797, 0x1040 },\n  { 1799, 0x0840 }, { 1801, 0x0400 }, { 1802, 0x0000 }, { 1802, 0x0920 },\n  { 1805, 0x0000 }, { 1805, 0x2e00 }, { 1809, 0x0304 }, { 1812, 0x0400 },\n  /* 0x6f00 */\n  { 1813, 0x1810 }, { 1816, 0x00c0 }, { 1818, 0x0010 }, { 1819, 0x2010 },\n  { 1821, 0x0010 }, { 1822, 0x1040 }, { 1824, 0x0000 }, { 1824, 0x0210 },\n  { 1826, 0x0402 }, { 1828, 0xa000 }, { 1830, 0x0000 }, { 1830, 0x4820 },\n  { 1833, 0x0000 }, { 1833, 0x0608 }, { 1836, 0x0000 }, { 1836, 0x0140 },\n  /* 0x7000 */\n  { 1838, 0x0008 }, { 1839, 0x4000 }, { 1840, 0x1000 }, { 1841, 0x0000 },\n  { 1841, 0x0800 }, { 1842, 0x1011 }, { 1845, 0x9080 }, { 1848, 0xc220 },\n  { 1852, 0x8a02 }, { 1856, 0x0000 }, { 1856, 0x00e9 }, { 1861, 0x3a00 },\n  { 1865, 0x1011 }, { 1868, 0x8061 }, { 1872, 0x0000 }, { 1872, 0x4022 },\n  /* 0x7100 */\n  { 1875, 0x0020 }, { 1876, 0x2000 }, { 1877, 0x1a00 }, { 1880, 0x4838 },\n  { 1885, 0x8421 }, { 1889, 0x0002 }, { 1890, 0x0800 }, { 1891, 0x54ea },\n  { 1899, 0x5100 }, { 1902, 0x0140 }, { 1904, 0x200c }, { 1907, 0x0490 },\n  { 1910, 0x0000 }, { 1910, 0x2002 }, { 1912, 0x0800 }, { 1913, 0x0060 },\n  /* 0x7200 */\n  { 1915, 0xc200 }, { 1918, 0x00e0 }, { 1921, 0x4810 }, { 1924, 0x0000 },\n  { 1924, 0x0001 }, { 1925, 0x10a1 }, { 1929, 0x0040 }, { 1930, 0x0000 },\n  { 1930, 0x8084 }, { 1933, 0x8010 }, { 1935, 0x2000 }, { 1936, 0x0004 },\n  { 1937, 0x2000 }, { 1938, 0x0000 }, { 1938, 0x0004 }, { 1939, 0x0000 },\n  /* 0x7300 */\n  { 1939, 0x0014 }, { 1941, 0x0001 }, { 1942, 0x5d00 }, { 1947, 0x0300 },\n  { 1949, 0x8102 }, { 1952, 0x0000 }, { 1952, 0x0000 }, { 1952, 0x0012 },\n  { 1954, 0x8000 }, { 1955, 0x5100 }, { 1958, 0x0480 }, { 1960, 0x0000 },\n  { 1960, 0xc200 }, { 1963, 0x0021 }, { 1965, 0x8056 }, { 1970, 0x0a88 },\n  /* 0x7400 */\n  { 1974, 0x0000 }, { 1974, 0xd2b6 }, { 1983, 0x0000 }, { 1983, 0x1380 },\n  { 1987, 0x03a8 }, { 1992, 0x2048 }, { 1995, 0x1921 }, { 2000, 0x0450 },\n  { 2003, 0x3004 }, { 2006, 0x0a00 }, { 2008, 0x0010 }, { 2009, 0x0010 },\n  { 2010, 0x1100 }, { 2012, 0x0009 }, { 2014, 0x0080 }, { 2015, 0x0107 },\n  /* 0x7500 */\n  { 2019, 0x4020 }, { 2021, 0x4200 }, { 2023, 0x0000 }, { 2023, 0x0830 },\n  { 2026, 0x2444 }, { 2030, 0x002a }, { 2033, 0x6081 }, { 2037, 0x0404 },\n  { 2039, 0x6008 }, { 2042, 0x4004 }, { 2044, 0x0000 }, { 2044, 0x0012 },\n  { 2046, 0x0108 }, { 2048, 0x1000 }, { 2049, 0x0000 }, { 2049, 0x0000 },\n  /* 0x7600 */\n  { 2049, 0x0084 }, { 2051, 0x0000 }, { 2051, 0x1000 }, { 2052, 0x0800 },\n  { 2053, 0xe001 }, { 2057, 0x0012 }, { 2059, 0x80c0 }, { 2062, 0x0458 },\n  { 2066, 0x0000 }, { 2066, 0x0001 }, { 2067, 0x0022 }, { 2069, 0x0080 },\n  { 2070, 0x1000 }, { 2071, 0x0040 }, { 2072, 0x0000 }, { 2072, 0x0000 },\n  /* 0x7700 */\n  { 2072, 0xd000 }, { 2075, 0x4000 }, { 2076, 0x0850 }, { 2079, 0x0000 },\n  { 2079, 0x0009 }, { 2081, 0x0100 }, { 2082, 0x0000 }, { 2082, 0x0d84 },\n  { 2087, 0x0000 }, { 2087, 0x0108 }, { 2089, 0x8000 }, { 2090, 0x4200 },\n  { 2092, 0x0828 }, { 2095, 0x0000 }, { 2095, 0x0040 }, { 2096, 0x4010 },\n  /* 0x7800 */\n  { 2098, 0x0100 }, { 2099, 0x5100 }, { 2102, 0x0000 }, { 2102, 0x3200 },\n  { 2105, 0x0894 }, { 2109, 0x001a }, { 2112, 0x0040 }, { 2113, 0x0400 },\n  { 2114, 0x2102 }, { 2117, 0x0000 }, { 2117, 0x8000 }, { 2118, 0x0342 },\n  { 2122, 0x0080 }, { 2123, 0x018c }, { 2127, 0x4000 }, { 2128, 0x0023 },\n  /* 0x7900 */\n  { 2131, 0x0040 }, { 2132, 0x0000 }, { 2132, 0x4000 }, { 2133, 0x185c },\n  { 2139, 0x0000 }, { 2139, 0x0300 }, { 2141, 0x0004 }, { 2142, 0x4002 },\n  { 2144, 0x00c9 }, { 2148, 0xa202 }, { 2152, 0x0220 }, { 2154, 0x0000 },\n  { 2154, 0x1050 }, { 2157, 0x0010 }, { 2158, 0x0004 }, { 2159, 0x0012 },\n  /* 0x7a00 */\n  { 2161, 0x0040 }, { 2162, 0x0000 }, { 2162, 0x2000 }, { 2163, 0x4400 },\n  { 2165, 0x0228 }, { 2168, 0x0000 }, { 2168, 0x0020 }, { 2169, 0x2000 },\n  { 2170, 0x0008 }, { 2171, 0x0002 }, { 2172, 0x0000 }, { 2172, 0x1801 },\n  { 2175, 0x830c }, { 2180, 0x3c08 }, { 2185, 0x0684 }, { 2189, 0x4000 },\n  /* 0x7b00 */\n  { 2190, 0x1800 }, { 2192, 0x8010 }, { 2194, 0x0280 }, { 2196, 0x0200 },\n  { 2197, 0x000c }, { 2199, 0x0020 }, { 2200, 0x9004 }, { 2203, 0x0800 },\n  { 2204, 0x0000 }, { 2204, 0x0004 }, { 2205, 0x000c }, { 2207, 0x0004 },\n  { 2208, 0x8000 }, { 2209, 0x0001 }, { 2210, 0x0000 }, { 2210, 0x1400 },\n  /* 0x7c00 */\n  { 2212, 0x0000 }, { 2212, 0x0824 }, { 2215, 0x0000 }, { 2215, 0x0020 },\n  { 2216, 0x0014 }, { 2218, 0x2042 }, { 2221, 0x2000 }, { 2222, 0x5811 },\n  { 2227, 0x4048 }, { 2230, 0x1000 }, { 2231, 0x50c0 }, { 2235, 0x0100 },\n  { 2236, 0x2284 }, { 2240, 0x0408 }, { 2242, 0x2040 }, { 2244, 0x1228 },\n  /* 0x7d00 */\n  { 2248, 0x0000 }, { 2248, 0x0000 }, { 2248, 0x0020 }, { 2249, 0x0000 },\n  { 2249, 0x2000 }, { 2250, 0x2400 }, { 2252, 0x0000 }, { 2252, 0x0000 },\n  { 2252, 0x0200 }, { 2253, 0x0080 }, { 2254, 0x0910 }, { 2257, 0x0008 },\n  { 2258, 0xa000 }, { 2260, 0x1019 }, { 2264, 0x0030 }, { 2266, 0x6020 },\n  /* 0x7e00 */\n  { 2269, 0x0080 }, { 2270, 0x0000 }, { 2270, 0x0080 }, { 2271, 0x0000 },\n  { 2271, 0x0000 }, { 2271, 0x0000 }, { 2271, 0x40a0 }, { 2274, 0x8000 },\n  { 2275, 0x4000 }, { 2276, 0x8004 }, { 2278, 0x1010 }, { 2280, 0x0400 },\n  { 2281, 0x8080 }, { 2283, 0x8000 }, { 2284, 0x0000 }, { 2284, 0x0000 },\n  /* 0x7f00 */\n  { 2284, 0x0040 }, { 2285, 0x0000 }, { 2285, 0x0000 }, { 2285, 0x0080 },\n  { 2286, 0x4283 }, { 2291, 0x000c }, { 2293, 0x0000 }, { 2293, 0x0102 },\n  { 2295, 0x8000 }, { 2296, 0x0088 }, { 2298, 0x4008 }, { 2300, 0x0010 },\n  { 2301, 0x0000 }, { 2301, 0x2000 }, { 2302, 0x0080 }, { 2303, 0x0400 },\n  /* 0x8000 */\n  { 2304, 0x0104 }, { 2306, 0x2000 }, { 2307, 0xc021 }, { 2311, 0x1802 },\n  { 2314, 0x0000 }, { 2314, 0x0810 }, { 2316, 0x004e }, { 2320, 0x0000 },\n  { 2320, 0x0001 }, { 2321, 0x8000 }, { 2322, 0x0080 }, { 2323, 0x30c0 },\n  { 2327, 0x0040 }, { 2328, 0x0000 }, { 2328, 0x1200 }, { 2330, 0x0040 },\n  /* 0x8100 */\n  { 2331, 0x5288 }, { 2336, 0x0494 }, { 2340, 0x0400 }, { 2341, 0x0094 },\n  { 2344, 0x0104 }, { 2346, 0x0640 }, { 2349, 0x2000 }, { 2350, 0x1000 },\n  { 2351, 0x0010 }, { 2352, 0x0008 }, { 2353, 0x0420 }, { 2355, 0x0040 },\n  { 2356, 0x0102 }, { 2358, 0x0000 }, { 2358, 0x8010 }, { 2360, 0x0040 },\n  /* 0x8200 */\n  { 2361, 0x0000 }, { 2361, 0x0500 }, { 2363, 0x2240 }, { 2366, 0x4000 },\n  { 2367, 0x0000 }, { 2367, 0x0010 }, { 2368, 0x0024 }, { 2370, 0x0e40 },\n  { 2374, 0x0080 }, { 2375, 0x0000 }, { 2375, 0x0440 }, { 2377, 0x0000 },\n  { 2377, 0x8410 }, { 2380, 0x0101 }, { 2382, 0x4004 }, { 2384, 0xb080 },\n  /* 0x8300 */\n  { 2388, 0x0800 }, { 2389, 0x2500 }, { 2392, 0x0000 }, { 2392, 0x2000 },\n  { 2393, 0x0000 }, { 2393, 0x0080 }, { 2394, 0x804c }, { 2398, 0x0000 },\n  { 2398, 0x0020 }, { 2399, 0x1002 }, { 2401, 0x1000 }, { 2402, 0x4200 },\n  { 2404, 0x2000 }, { 2405, 0x0008 }, { 2406, 0x2000 }, { 2407, 0x0000 },\n  /* 0x8400 */\n  { 2407, 0x0020 }, { 2408, 0x1150 }, { 2412, 0x4053 }, { 2417, 0x4000 },\n  { 2418, 0x0500 }, { 2420, 0x1128 }, { 2424, 0x0014 }, { 2426, 0x8006 },\n  { 2429, 0x0101 }, { 2431, 0x004c }, { 2434, 0x2008 }, { 2436, 0x6000 },\n  { 2438, 0x0000 }, { 2438, 0x4400 }, { 2440, 0x0036 }, { 2444, 0x0100 },\n  /* 0x8500 */\n  { 2445, 0x0028 }, { 2447, 0x0001 }, { 2448, 0x0000 }, { 2448, 0x0118 },\n  { 2451, 0x1804 }, { 2454, 0x0404 }, { 2456, 0x8000 }, { 2457, 0x0009 },\n  { 2459, 0x0000 }, { 2459, 0x0000 }, { 2459, 0x0000 }, { 2459, 0x0000 },\n  { 2459, 0x0002 }, { 2460, 0x0000 }, { 2460, 0x4001 }, { 2462, 0x1000 },\n  /* 0x8600 */\n  { 2463, 0x2004 }, { 2465, 0x0051 }, { 2468, 0x8100 }, { 2470, 0x0000 },\n  { 2470, 0x0024 }, { 2472, 0x0000 }, { 2472, 0x1000 }, { 2473, 0x4004 },\n  { 2475, 0x0000 }, { 2475, 0x0004 }, { 2476, 0x2001 }, { 2478, 0x0004 },\n  { 2479, 0x0000 }, { 2479, 0x0000 }, { 2479, 0x8000 }, { 2480, 0x0000 },\n  /* 0x8700 */\n  { 2480, 0x0000 }, { 2480, 0x0000 }, { 2480, 0x0000 }, { 2480, 0x0000 },\n  { 2480, 0x0000 }, { 2480, 0x0000 }, { 2480, 0x0000 }, { 2480, 0x2003 },\n  { 2483, 0x1840 }, { 2486, 0x0000 }, { 2486, 0x0220 }, { 2488, 0x0002 },\n  { 2489, 0x4002 }, { 2491, 0x0440 }, { 2493, 0x4000 }, { 2494, 0x0020 },\n  /* 0x8800 */\n  { 2495, 0x8010 }, { 2497, 0x0100 }, { 2498, 0x2080 }, { 2500, 0x0000 },\n  { 2500, 0x8064 }, { 2504, 0x4000 }, { 2505, 0x4031 }, { 2509, 0x0000 },\n  { 2509, 0x0090 }, { 2511, 0x1000 }, { 2512, 0x4001 }, { 2514, 0x8030 },\n  { 2517, 0x80a0 }, { 2520, 0x0000 }, { 2520, 0x0040 }, { 2521, 0x8020 },\n  /* 0x8900 */\n  { 2523, 0x0001 }, { 2524, 0x0000 }, { 2524, 0x0010 }, { 2525, 0x0000 },\n  { 2525, 0x2088 }, { 2528, 0x0010 }, { 2529, 0x0020 }, { 2530, 0x0080 },\n  { 2531, 0x0681 }, { 2535, 0x0012 }, { 2537, 0x02a0 }, { 2540, 0x1000 },\n  { 2541, 0x0042 }, { 2543, 0x0000 }, { 2543, 0x0080 }, { 2544, 0x0000 },\n  /* 0x8a00 */\n  { 2544, 0x0000 }, { 2544, 0x1000 }, { 2545, 0x0a00 }, { 2547, 0x2100 },\n  { 2549, 0x0200 }, { 2550, 0x0000 }, { 2550, 0x0080 }, { 2551, 0x4000 },\n  { 2552, 0x0000 }, { 2552, 0x1011 }, { 2555, 0x8200 }, { 2557, 0x0010 },\n  { 2558, 0x0000 }, { 2558, 0x0400 }, { 2559, 0x0400 }, { 2560, 0x0000 },\n  /* 0x8b00 */\n  { 2560, 0x1000 }, { 2561, 0x8000 }, { 2562, 0x2000 }, { 2563, 0x8000 },\n  { 2564, 0x3008 }, { 2567, 0x4000 }, { 2568, 0x0204 }, { 2570, 0x0000 },\n  { 2570, 0x0002 }, { 2571, 0x0801 }, { 2573, 0x0001 }, { 2574, 0x4000 },\n  { 2575, 0x0000 }, { 2575, 0x0000 }, { 2575, 0x0004 }, { 2576, 0x0000 },\n  /* 0x8c00 */\n  { 2576, 0x0000 }, { 2576, 0x0000 }, { 2576, 0x0000 }, { 2576, 0x0000 },\n  { 2576, 0x0000 }, { 2576, 0x0002 }, { 2577, 0x0000 }, { 2577, 0x0000 },\n  { 2577, 0x0000 }, { 2577, 0x8800 }, { 2579, 0x2000 }, { 2580, 0x0000 },\n  { 2580, 0x2000 }, { 2581, 0x0850 }, { 2584, 0x0a00 }, { 2586, 0x0084 },\n  /* 0x8d00 */\n  { 2588, 0x1808 }, { 2591, 0x3106 }, { 2596, 0x0000 }, { 2596, 0x0000 },\n  { 2596, 0x0000 }, { 2596, 0x0000 }, { 2596, 0x0000 }, { 2596, 0x0400 },\n  { 2597, 0x0004 }, { 2598, 0x0000 }, { 2598, 0x0240 }, { 2600, 0x0000 },\n  { 2600, 0x0009 }, { 2602, 0x0010 }, { 2603, 0x0000 }, { 2603, 0x0000 },\n  /* 0x8e00 */\n  { 2603, 0x4002 }, { 2605, 0x0000 }, { 2605, 0x2500 }, { 2608, 0x0400 },\n  { 2609, 0x8040 }, { 2611, 0x0000 }, { 2611, 0x0100 }, { 2612, 0x40a2 },\n  { 2616, 0x0001 }, { 2617, 0x0000 }, { 2617, 0x2080 }, { 2619, 0x1041 },\n  { 2622, 0x4008 }, { 2624, 0x0400 }, { 2625, 0x2014 }, { 2628, 0x0004 },\n  /* 0x8f00 */\n  { 2629, 0x0000 }, { 2629, 0x0200 }, { 2630, 0x2000 }, { 2631, 0x0001 },\n  { 2632, 0x0402 }, { 2634, 0x1000 }, { 2635, 0x40c0 }, { 2638, 0x0000 },\n  { 2638, 0x0000 }, { 2638, 0x0008 }, { 2639, 0x0021 }, { 2641, 0x5fe8 },\n  { 2651, 0x1402 }, { 2654, 0x0401 }, { 2656, 0x0000 }, { 2656, 0x0200 },\n  /* 0x9000 */\n  { 2657, 0x0100 }, { 2658, 0x0004 }, { 2659, 0x0000 }, { 2659, 0x0088 },\n  { 2661, 0x1000 }, { 2662, 0x0040 }, { 2663, 0x1012 }, { 2666, 0x0000 },\n  { 2666, 0x0000 }, { 2666, 0x0000 }, { 2666, 0x4100 }, { 2668, 0x0800 },\n  { 2669, 0x0010 }, { 2670, 0x0000 }, { 2670, 0x0000 }, { 2670, 0x0000 },\n  /* 0x9100 */\n  { 2670, 0x0000 }, { 2670, 0x0000 }, { 2670, 0x0000 }, { 2670, 0x0000 },\n  { 2670, 0x0000 }, { 2670, 0x5202 }, { 2674, 0x0080 }, { 2675, 0x1041 },\n  { 2678, 0x5000 }, { 2680, 0x0000 }, { 2680, 0x0200 }, { 2681, 0x0840 },\n  { 2683, 0x0010 }, { 2684, 0x8040 }, { 2686, 0x0020 }, { 2687, 0x4400 },\n  /* 0x9200 */\n  { 2689, 0x4100 }, { 2691, 0x0008 }, { 2692, 0x0d00 }, { 2695, 0x1020 },\n  { 2697, 0x0012 }, { 2699, 0xa120 }, { 2703, 0x4804 }, { 2706, 0x0080 },\n  { 2707, 0x8212 }, { 2711, 0x0000 }, { 2711, 0x4000 }, { 2712, 0xc602 },\n  { 2717, 0x0000 }, { 2717, 0x0810 }, { 2719, 0x1828 }, { 2723, 0x205c },\n  /* 0x9300 */\n  { 2728, 0x0088 }, { 2730, 0x0000 }, { 2730, 0x1000 }, { 2731, 0x0003 },\n  { 2733, 0x013f }, { 2740, 0x8000 }, { 2741, 0x4b44 }, { 2747, 0x2118 },\n  { 2751, 0x00f2 }, { 2756, 0x1001 }, { 2758, 0x2001 }, { 2760, 0xa900 },\n  { 2764, 0x0840 }, { 2766, 0x0808 }, { 2768, 0x0001 }, { 2769, 0x000b },\n  /* 0x9400 */\n  { 2772, 0x0112 }, { 2775, 0x2880 }, { 2778, 0x20f0 }, { 2783, 0x4000 },\n  { 2784, 0x200c }, { 2787, 0x0910 }, { 2790, 0x10a0 }, { 2793, 0x0a00 },\n  { 2795, 0x0020 }, { 2796, 0x8000 }, { 2797, 0x0004 }, { 2798, 0x0000 },\n  { 2798, 0x000a }, { 2800, 0x1000 }, { 2801, 0x0000 }, { 2801, 0x0040 },\n  /* 0x9500 */\n  { 2802, 0x0000 }, { 2802, 0x0000 }, { 2802, 0x2000 }, { 2803, 0x0000 },\n  { 2803, 0x0080 }, { 2804, 0x0000 }, { 2804, 0x0000 }, { 2804, 0x8100 },\n  { 2806, 0x0020 }, { 2807, 0x02c0 }, { 2810, 0x04c5 }, { 2815, 0x0000 },\n  { 2815, 0x0000 }, { 2815, 0x0000 }, { 2815, 0x0100 }, { 2816, 0x0010 },\n  /* 0x9600 */\n  { 2817, 0x0000 }, { 2817, 0x2000 }, { 2818, 0x0000 }, { 2818, 0x0108 },\n  { 2820, 0x0022 }, { 2822, 0x0040 }, { 2823, 0x0200 }, { 2824, 0x0800 },\n  { 2825, 0x8002 }, { 2827, 0x0040 }, { 2828, 0x0028 }, { 2830, 0x2040 },\n  { 2832, 0x0000 }, { 2832, 0x0000 }, { 2832, 0x0000 }, { 2832, 0x0010 },\n  /* 0x9700 */\n  { 2833, 0x0008 }, { 2834, 0x0800 }, { 2835, 0x0002 }, { 2836, 0x0042 },\n  { 2838, 0x0003 }, { 2840, 0xa082 }, { 2844, 0x2000 }, { 2845, 0x0002 },\n  { 2846, 0x0280 }, { 2848, 0x8800 }, { 2850, 0x0000 }, { 2850, 0x6516 },\n  { 2857, 0x0105 }, { 2860, 0x0004 }, { 2861, 0x4041 }, { 2864, 0x0024 },\n  /* 0x9800 */\n  { 2866, 0x0000 }, { 2866, 0x8030 }, { 2869, 0x4008 }, { 2871, 0x0018 },\n  { 2873, 0x0880 }, { 2875, 0x0000 }, { 2875, 0x1040 }, { 2877, 0x0020 },\n  { 2878, 0x0000 }, { 2878, 0x0000 }, { 2878, 0x0000 }, { 2878, 0x0290 },\n  { 2881, 0x4588 }, { 2886, 0x5000 }, { 2888, 0x1043 }, { 2892, 0x0022 },\n  /* 0x9900 */\n  { 2894, 0x4000 }, { 2895, 0x1200 }, { 2897, 0x0000 }, { 2897, 0x0b80 },\n  { 2901, 0x2405 }, { 2905, 0x2000 }, { 2906, 0x000c }, { 2908, 0x0000 },\n  { 2908, 0x0000 }, { 2908, 0x0800 }, { 2909, 0x0410 }, { 2911, 0x1100 },\n  { 2913, 0x0030 }, { 2915, 0x0400 }, { 2916, 0x0042 }, { 2918, 0x0020 },\n  /* 0x9a00 */\n  { 2919, 0x1000 }, { 2920, 0x8001 }, { 2922, 0x8042 }, { 2925, 0x1800 },\n  { 2927, 0x0000 }, { 2927, 0x1100 }, { 2929, 0x1008 }, { 2931, 0x0000 },\n  { 2931, 0x8000 }, { 2932, 0x0000 }, { 2932, 0x0000 }, { 2932, 0x2444 },\n  { 2936, 0x0000 }, { 2936, 0x0080 }, { 2937, 0x0005 }, { 2939, 0x8010 },\n  /* 0x9b00 */\n  { 2941, 0x8204 }, { 2944, 0x0010 }, { 2945, 0x2400 }, { 2947, 0x0210 },\n  { 2949, 0x0001 }, { 2950, 0x0001 }, { 2951, 0x0200 }, { 2952, 0x8000 },\n  { 2953, 0xe80a }, { 2959, 0xa080 }, { 2962, 0x0000 }, { 2962, 0x0001 },\n  { 2963, 0x8000 }, { 2964, 0x2000 }, { 2965, 0x2200 }, { 2967, 0x8012 },\n  /* 0x9c00 */\n  { 2970, 0x1404 }, { 2973, 0x8821 }, { 2977, 0x8041 }, { 2980, 0x0420 },\n  { 2982, 0x8020 }, { 2984, 0x2008 }, { 2986, 0x0000 }, { 2986, 0x1804 },\n  { 2989, 0x0000 }, { 2989, 0x0000 }, { 2989, 0x0000 }, { 2989, 0x0000 },\n  { 2989, 0x0000 }, { 2989, 0x0000 }, { 2989, 0x0000 }, { 2989, 0x0000 },\n  /* 0x9d00 */\n  { 2989, 0x1004 }, { 2991, 0x0040 }, { 2992, 0x0002 }, { 2993, 0x0210 },\n  { 2995, 0x4210 }, { 2998, 0x4001 }, { 3000, 0x6000 }, { 3002, 0x5000 },\n  { 3004, 0x0008 }, { 3005, 0x0008 }, { 3006, 0x0820 }, { 3008, 0x2000 },\n  { 3009, 0x0211 }, { 3012, 0x0010 }, { 3013, 0x0000 }, { 3013, 0x1000 },\n  /* 0x9e00 */\n  { 3014, 0x5400 }, { 3017, 0x9100 }, { 3020, 0x0000 }, { 3020, 0x0000 },\n  { 3020, 0x0000 }, { 3020, 0x0000 }, { 3020, 0x0000 }, { 3020, 0x0800 },\n  { 3021, 0x0032 }, { 3024, 0x4161 }, { 3029, 0x9d44 }, { 3036, 0xa002 },\n  { 3039, 0x00d2 }, { 3043, 0x0000 }, { 3043, 0x0004 }, { 3044, 0x4102 },\n  /* 0x9f00 */\n  { 3047, 0x0104 }, { 3049, 0x0080 }, { 3050, 0x00c0 }, { 3052, 0x0200 },\n  { 3053, 0x0030 }, { 3055, 0x0409 }, { 3058, 0x0204 }, { 3060, 0x8000 },\n  { 3061, 0x4000 }, { 3062, 0x8200 }, { 3064, 0x0020 }, { 3065, 0x0003 },\n};\nstatic const Summary16 hkscs1999_uni2indx_pagef9[1] = {\n  /* 0xf900 */\n  { 3067, 0x0080 },\n};\nstatic const Summary16 hkscs1999_uni2indx_pageff[15] = {\n  /* 0xff00 */\n  { 3068, 0x0084 }, { 3070, 0x0000 }, { 3070, 0x0000 }, { 3070, 0x2800 },\n  { 3072, 0x0000 }, { 3072, 0x0000 }, { 3072, 0x0000 }, { 3072, 0x0000 },\n  { 3072, 0x0000 }, { 3072, 0x0000 }, { 3072, 0x0000 }, { 3072, 0x0000 },\n  { 3072, 0x0000 }, { 3072, 0x0000 }, { 3072, 0x2014 },\n};\nstatic const Summary16 hkscs1999_uni2indx_page200[2335] = {\n  /* 0x20000 */\n  { 3075, 0x0000 }, { 3075, 0x0000 }, { 3075, 0x0002 }, { 3076, 0x4000 },\n  { 3077, 0x4040 }, { 3079, 0x0000 }, { 3079, 0x0100 }, { 3080, 0x0000 },\n  { 3080, 0x04c0 }, { 3083, 0x0010 }, { 3084, 0x0000 }, { 3084, 0x0000 },\n  { 3084, 0x3c00 }, { 3088, 0x0002 }, { 3089, 0x4000 }, { 3090, 0x0000 },\n  /* 0x20100 */\n  { 3090, 0x5000 }, { 3092, 0x0100 }, { 3093, 0x0000 }, { 3093, 0x0000 },\n  { 3093, 0x0000 }, { 3093, 0x0000 }, { 3093, 0x0000 }, { 3093, 0x0000 },\n  { 3093, 0x0000 }, { 3093, 0x0000 }, { 3093, 0x0a00 }, { 3095, 0x0000 },\n  { 3095, 0x0002 }, { 3096, 0x0010 }, { 3097, 0x0000 }, { 3097, 0x0004 },\n  /* 0x20200 */\n  { 3098, 0x1010 }, { 3100, 0x0010 }, { 3101, 0x0000 }, { 3101, 0x0000 },\n  { 3101, 0x0000 }, { 3101, 0x0800 }, { 3102, 0x0000 }, { 3102, 0x0030 },\n  { 3104, 0x0000 }, { 3104, 0x4200 }, { 3106, 0x0001 }, { 3107, 0x8080 },\n  { 3109, 0x0001 }, { 3110, 0x0000 }, { 3110, 0x0020 }, { 3111, 0x0000 },\n  /* 0x20300 */\n  { 3111, 0x0400 }, { 3112, 0x0000 }, { 3112, 0x0020 }, { 3113, 0x0000 },\n  { 3113, 0x00e2 }, { 3117, 0x0000 }, { 3117, 0x0000 }, { 3117, 0xc000 },\n  { 3119, 0x0001 }, { 3120, 0x0000 }, { 3120, 0x0081 }, { 3122, 0x0020 },\n  { 3123, 0x0a00 }, { 3125, 0x0000 }, { 3125, 0x0000 }, { 3125, 0x1020 },\n  /* 0x20400 */\n  { 3127, 0x0000 }, { 3127, 0x8018 }, { 3130, 0x0000 }, { 3130, 0x0000 },\n  { 3130, 0x0000 }, { 3130, 0x0000 }, { 3130, 0x0020 }, { 3131, 0x0000 },\n  { 3131, 0x4080 }, { 3133, 0x0006 }, { 3135, 0x0008 }, { 3136, 0x0000 },\n  { 3136, 0x0000 }, { 3136, 0x0080 }, { 3137, 0x0000 }, { 3137, 0x5000 },\n  /* 0x20500 */\n  { 3139, 0x0000 }, { 3139, 0x0000 }, { 3139, 0x0000 }, { 3139, 0x0000 },\n  { 3139, 0x0080 }, { 3140, 0x0000 }, { 3140, 0x0000 }, { 3140, 0x0000 },\n  { 3140, 0x4000 }, { 3141, 0x0000 }, { 3141, 0x0020 }, { 3142, 0x0008 },\n  { 3143, 0x0408 }, { 3145, 0x8021 }, { 3148, 0x0801 }, { 3150, 0x0000 },\n  /* 0x20600 */\n  { 3150, 0x0000 }, { 3150, 0x0622 }, { 3154, 0x0000 }, { 3154, 0x0001 },\n  { 3155, 0x0000 }, { 3155, 0x0040 }, { 3156, 0x0000 }, { 3156, 0x0040 },\n  { 3157, 0x0000 }, { 3157, 0x0000 }, { 3157, 0x0000 }, { 3157, 0x0000 },\n  { 3157, 0x0000 }, { 3157, 0x0000 }, { 3157, 0x0000 }, { 3157, 0x0000 },\n  /* 0x20700 */\n  { 3157, 0x4000 }, { 3158, 0x0000 }, { 3158, 0x0000 }, { 3158, 0x0002 },\n  { 3159, 0x0000 }, { 3159, 0x0000 }, { 3159, 0x0000 }, { 3159, 0x0200 },\n  { 3160, 0x0000 }, { 3160, 0x0000 }, { 3160, 0x0000 }, { 3160, 0x0000 },\n  { 3160, 0x0000 }, { 3160, 0x0000 }, { 3160, 0x0000 }, { 3160, 0x0000 },\n  /* 0x20800 */\n  { 3160, 0x0000 }, { 3160, 0x0000 }, { 3160, 0x1000 }, { 3161, 0x0000 },\n  { 3161, 0x0000 }, { 3161, 0x0000 }, { 3161, 0x0000 }, { 3161, 0x0008 },\n  { 3162, 0x0000 }, { 3162, 0x0000 }, { 3162, 0x0000 }, { 3162, 0x0000 },\n  { 3162, 0x0000 }, { 3162, 0x0020 }, { 3163, 0x0000 }, { 3163, 0x0000 },\n  /* 0x20900 */\n  { 3163, 0x0000 }, { 3163, 0x0040 }, { 3164, 0x0008 }, { 3165, 0x0000 },\n  { 3165, 0x0000 }, { 3165, 0x0010 }, { 3166, 0x0000 }, { 3166, 0x0200 },\n  { 3167, 0x0000 }, { 3167, 0x0000 }, { 3167, 0x0000 }, { 3167, 0x0000 },\n  { 3167, 0x0000 }, { 3167, 0x0000 }, { 3167, 0x0080 }, { 3168, 0x0000 },\n  /* 0x20a00 */\n  { 3168, 0x0000 }, { 3168, 0x0002 }, { 3169, 0x0000 }, { 3169, 0x0000 },\n  { 3169, 0x0000 }, { 3169, 0x0001 }, { 3170, 0x0000 }, { 3170, 0x0000 },\n  { 3170, 0x0000 }, { 3170, 0x0000 }, { 3170, 0x0000 }, { 3170, 0x0010 },\n  { 3171, 0x2004 }, { 3173, 0x0000 }, { 3173, 0x0000 }, { 3173, 0x0000 },\n  /* 0x20b00 */\n  { 3173, 0x2000 }, { 3174, 0x0000 }, { 3174, 0x0000 }, { 3174, 0x0000 },\n  { 3174, 0x0000 }, { 3174, 0x0000 }, { 3174, 0x0000 }, { 3174, 0x0000 },\n  { 3174, 0x8000 }, { 3175, 0x0000 }, { 3175, 0x0300 }, { 3177, 0x8000 },\n  { 3178, 0x0840 }, { 3180, 0x0000 }, { 3180, 0x0804 }, { 3182, 0x8800 },\n  /* 0x20c00 */\n  { 3184, 0x2800 }, { 3186, 0x0000 }, { 3186, 0x0001 }, { 3187, 0x0c10 },\n  { 3190, 0x000e }, { 3193, 0x0008 }, { 3194, 0x0020 }, { 3195, 0x1180 },\n  { 3198, 0x2000 }, { 3199, 0x1040 }, { 3201, 0x0000 }, { 3201, 0x0120 },\n  { 3203, 0x8000 }, { 3204, 0x2078 }, { 3209, 0x2000 }, { 3210, 0x8000 },\n  /* 0x20d00 */\n  { 3211, 0x0000 }, { 3211, 0x0020 }, { 3212, 0x0100 }, { 3213, 0x0006 },\n  { 3215, 0x73c0 }, { 3222, 0x0000 }, { 3222, 0x8000 }, { 3223, 0xd012 },\n  { 3228, 0x0000 }, { 3228, 0x1040 }, { 3230, 0x0080 }, { 3231, 0x0004 },\n  { 3232, 0x0100 }, { 3233, 0x0000 }, { 3233, 0x0000 }, { 3233, 0x0000 },\n  /* 0x20e00 */\n  { 3233, 0xe610 }, { 3239, 0x2043 }, { 3243, 0x0000 }, { 3243, 0x0000 },\n  { 3243, 0x1000 }, { 3244, 0x0000 }, { 3244, 0x2000 }, { 3245, 0x0fe8 },\n  { 3253, 0x1000 }, { 3254, 0x2140 }, { 3257, 0x1c04 }, { 3261, 0x0040 },\n  { 3262, 0x0000 }, { 3262, 0x2180 }, { 3265, 0x0000 }, { 3265, 0x0f00 },\n  /* 0x20f00 */\n  { 3269, 0x0000 }, { 3269, 0x2000 }, { 3270, 0x6040 }, { 3273, 0x0803 },\n  { 3276, 0x1000 }, { 3277, 0x0000 }, { 3277, 0x0010 }, { 3278, 0x0000 },\n  { 3278, 0x2000 }, { 3279, 0x0001 }, { 3280, 0x2000 }, { 3281, 0x1070 },\n  { 3285, 0x0000 }, { 3285, 0x8000 }, { 3286, 0x3c00 }, { 3290, 0x0000 },\n  /* 0x21000 */\n  { 3290, 0x0000 }, { 3290, 0x6010 }, { 3293, 0x0000 }, { 3293, 0x0000 },\n  { 3293, 0x8000 }, { 3294, 0x1000 }, { 3295, 0x8000 }, { 3296, 0x09e0 },\n  { 3301, 0x0100 }, { 3302, 0x2040 }, { 3304, 0x0000 }, { 3304, 0x8010 },\n  { 3306, 0x8383 }, { 3312, 0x0008 }, { 3313, 0x0010 }, { 3314, 0x0070 },\n  /* 0x21100 */\n  { 3317, 0x0000 }, { 3317, 0x0000 }, { 3317, 0x8000 }, { 3318, 0x2800 },\n  { 3320, 0x8120 }, { 3323, 0x0000 }, { 3323, 0x0000 }, { 3323, 0x0000 },\n  { 3323, 0x0081 }, { 3325, 0x0000 }, { 3325, 0x0000 }, { 3325, 0x0000 },\n  { 3325, 0x0000 }, { 3325, 0x0200 }, { 3326, 0x0000 }, { 3326, 0x0000 },\n  /* 0x21200 */\n  { 3326, 0x0000 }, { 3326, 0x0000 }, { 3326, 0x0000 }, { 3326, 0x1000 },\n  { 3327, 0x8000 }, { 3328, 0x0000 }, { 3328, 0x0000 }, { 3328, 0x1000 },\n  { 3329, 0x0000 }, { 3329, 0x0000 }, { 3329, 0x0300 }, { 3331, 0x0001 },\n  { 3332, 0x0000 }, { 3332, 0x0000 }, { 3332, 0x0008 }, { 3333, 0x4000 },\n  /* 0x21300 */\n  { 3334, 0x003c }, { 3338, 0x0000 }, { 3338, 0x0000 }, { 3338, 0x0440 },\n  { 3340, 0x0000 }, { 3340, 0x0000 }, { 3340, 0x0000 }, { 3340, 0x0060 },\n  { 3342, 0x4000 }, { 3343, 0x1100 }, { 3345, 0x0000 }, { 3345, 0x0000 },\n  { 3345, 0x0060 }, { 3347, 0x0000 }, { 3347, 0x2000 }, { 3348, 0x4000 },\n  /* 0x21400 */\n  { 3349, 0x0000 }, { 3349, 0x0048 }, { 3351, 0x0010 }, { 3352, 0x0000 },\n  { 3352, 0x0000 }, { 3352, 0x0034 }, { 3355, 0x0000 }, { 3355, 0x0000 },\n  { 3355, 0x0400 }, { 3356, 0x0080 }, { 3357, 0x0000 }, { 3357, 0x0040 },\n  { 3358, 0x0000 }, { 3358, 0x0000 }, { 3358, 0x0100 }, { 3359, 0x2000 },\n  /* 0x21500 */\n  { 3360, 0x0000 }, { 3360, 0x0000 }, { 3360, 0x0000 }, { 3360, 0x0000 },\n  { 3360, 0x0000 }, { 3360, 0x0000 }, { 3360, 0x0000 }, { 3360, 0x0080 },\n  { 3361, 0x0004 }, { 3362, 0x0040 }, { 3363, 0x0000 }, { 3363, 0x0000 },\n  { 3363, 0x0000 }, { 3363, 0x0000 }, { 3363, 0x0000 }, { 3363, 0x0000 },\n  /* 0x21600 */\n  { 3363, 0x0400 }, { 3364, 0x0208 }, { 3366, 0x0000 }, { 3366, 0x4000 },\n  { 3367, 0x0000 }, { 3367, 0x0000 }, { 3367, 0x0002 }, { 3368, 0x0000 },\n  { 3368, 0x0000 }, { 3368, 0x0004 }, { 3369, 0x0000 }, { 3369, 0x0500 },\n  { 3371, 0x0007 }, { 3374, 0x8028 }, { 3377, 0x01c0 }, { 3380, 0x5c00 },\n  /* 0x21700 */\n  { 3384, 0x2000 }, { 3385, 0x0001 }, { 3386, 0x0040 }, { 3387, 0x1c00 },\n  { 3390, 0x0000 }, { 3390, 0x0080 }, { 3391, 0xf000 }, { 3395, 0x001b },\n  { 3399, 0x0000 }, { 3399, 0x0000 }, { 3399, 0x0800 }, { 3400, 0x003f },\n  { 3406, 0x0088 }, { 3408, 0x9e00 }, { 3413, 0x8000 }, { 3414, 0x1f60 },\n  /* 0x21800 */\n  { 3421, 0x0000 }, { 3421, 0x0000 }, { 3421, 0x2701 }, { 3426, 0x0e00 },\n  { 3429, 0x0021 }, { 3431, 0x4004 }, { 3433, 0x001e }, { 3437, 0x0880 },\n  { 3439, 0x0038 }, { 3442, 0xc000 }, { 3444, 0x0007 }, { 3447, 0xc000 },\n  { 3449, 0x0000 }, { 3449, 0x03c2 }, { 3454, 0x0000 }, { 3454, 0x0400 },\n  /* 0x21900 */\n  { 3455, 0x0038 }, { 3458, 0x1027 }, { 3463, 0x0084 }, { 3465, 0x0800 },\n  { 3466, 0x0010 }, { 3467, 0x0100 }, { 3468, 0x0400 }, { 3469, 0x1000 },\n  { 3470, 0x0108 }, { 3472, 0x0040 }, { 3473, 0x0000 }, { 3473, 0x0000 },\n  { 3473, 0x0000 }, { 3473, 0x0800 }, { 3474, 0x0000 }, { 3474, 0x0008 },\n  /* 0x21a00 */\n  { 3475, 0x0000 }, { 3475, 0x0000 }, { 3475, 0x2000 }, { 3476, 0x0010 },\n  { 3477, 0x0820 }, { 3479, 0x0000 }, { 3479, 0x0000 }, { 3479, 0x0000 },\n  { 3479, 0x0000 }, { 3479, 0x0000 }, { 3479, 0x0000 }, { 3479, 0x0000 },\n  { 3479, 0x0000 }, { 3479, 0x0000 }, { 3479, 0x0000 }, { 3479, 0x0000 },\n  /* 0x21b00 */\n  { 3479, 0x0000 }, { 3479, 0x0000 }, { 3479, 0x0000 }, { 3479, 0x0000 },\n  { 3479, 0x0010 }, { 3480, 0x0000 }, { 3480, 0x0000 }, { 3480, 0x0000 },\n  { 3480, 0x0000 }, { 3480, 0x0000 }, { 3480, 0x0000 }, { 3480, 0x0000 },\n  { 3480, 0x0006 }, { 3482, 0x0000 }, { 3482, 0x0000 }, { 3482, 0x0000 },\n  /* 0x21c00 */\n  { 3482, 0x0000 }, { 3482, 0x0000 }, { 3482, 0x0400 }, { 3483, 0x0000 },\n  { 3483, 0x0000 }, { 3483, 0x0000 }, { 3483, 0x0000 }, { 3483, 0x0001 },\n  { 3484, 0x0000 }, { 3484, 0x0000 }, { 3484, 0x1024 }, { 3487, 0x0000 },\n  { 3487, 0x0000 }, { 3487, 0x0000 }, { 3487, 0x0000 }, { 3487, 0x0000 },\n  /* 0x21d00 */\n  { 3487, 0x0000 }, { 3487, 0x0000 }, { 3487, 0x0000 }, { 3487, 0x0000 },\n  { 3487, 0x0040 }, { 3488, 0x0000 }, { 3488, 0x0000 }, { 3488, 0x0000 },\n  { 3488, 0x0000 }, { 3488, 0x0001 }, { 3489, 0x0000 }, { 3489, 0x0400 },\n  { 3490, 0x0400 }, { 3491, 0x0002 }, { 3492, 0x0800 }, { 3493, 0x0200 },\n  /* 0x21e00 */\n  { 3494, 0x0000 }, { 3494, 0x1000 }, { 3495, 0x0000 }, { 3495, 0x2080 },\n  { 3497, 0x0000 }, { 3497, 0x0000 }, { 3497, 0x0000 }, { 3497, 0x0000 },\n  { 3497, 0x0200 }, { 3498, 0x0000 }, { 3498, 0x0110 }, { 3500, 0x0000 },\n  { 3500, 0x0100 }, { 3501, 0x0020 }, { 3502, 0x0000 }, { 3502, 0x0000 },\n  /* 0x21f00 */\n  { 3502, 0x8000 }, { 3503, 0x0020 }, { 3504, 0x0000 }, { 3504, 0x0000 },\n  { 3504, 0x0000 }, { 3504, 0x0000 }, { 3504, 0x0400 }, { 3505, 0x0000 },\n  { 3505, 0x0000 }, { 3505, 0x4000 }, { 3506, 0x0002 }, { 3507, 0x0000 },\n  { 3507, 0x0000 }, { 3507, 0x0000 }, { 3507, 0x0100 }, { 3508, 0x0000 },\n  /* 0x22000 */\n  { 3508, 0x0000 }, { 3508, 0x0000 }, { 3508, 0x0000 }, { 3508, 0x0000 },\n  { 3508, 0x0220 }, { 3510, 0x0000 }, { 3510, 0x0000 }, { 3510, 0x0000 },\n  { 3510, 0x0000 }, { 3510, 0x0400 }, { 3511, 0x0000 }, { 3511, 0x0000 },\n  { 3511, 0x0080 }, { 3512, 0x0000 }, { 3512, 0x0000 }, { 3512, 0x1000 },\n  /* 0x22100 */\n  { 3513, 0x0000 }, { 3513, 0x0000 }, { 3513, 0x0400 }, { 3514, 0x0000 },\n  { 3514, 0x0000 }, { 3514, 0x0800 }, { 3515, 0x0000 }, { 3515, 0x0408 },\n  { 3517, 0x0000 }, { 3517, 0x0000 }, { 3517, 0x0002 }, { 3518, 0x0000 },\n  { 3518, 0x0008 }, { 3519, 0x0000 }, { 3519, 0x0000 }, { 3519, 0x0000 },\n  /* 0x22200 */\n  { 3519, 0x0100 }, { 3520, 0x0000 }, { 3520, 0x0000 }, { 3520, 0x0000 },\n  { 3520, 0x0000 }, { 3520, 0x0000 }, { 3520, 0x0000 }, { 3520, 0x1000 },\n  { 3521, 0x0000 }, { 3521, 0x0000 }, { 3521, 0x0000 }, { 3521, 0x0000 },\n  { 3521, 0x0000 }, { 3521, 0x0000 }, { 3521, 0x0000 }, { 3521, 0x0000 },\n  /* 0x22300 */\n  { 3521, 0x0000 }, { 3521, 0x0000 }, { 3521, 0x0022 }, { 3523, 0x0000 },\n  { 3523, 0x0000 }, { 3523, 0x0000 }, { 3523, 0x0000 }, { 3523, 0x0000 },\n  { 3523, 0x0000 }, { 3523, 0x0000 }, { 3523, 0x0000 }, { 3523, 0x2000 },\n  { 3524, 0x0000 }, { 3524, 0x0081 }, { 3526, 0x0000 }, { 3526, 0x0400 },\n  /* 0x22400 */\n  { 3527, 0x0000 }, { 3527, 0x0000 }, { 3527, 0x0000 }, { 3527, 0x0000 },\n  { 3527, 0x0000 }, { 3527, 0x0000 }, { 3527, 0x0020 }, { 3528, 0x0002 },\n  { 3529, 0x0800 }, { 3530, 0x0002 }, { 3531, 0x0000 }, { 3531, 0x0001 },\n  { 3532, 0x0000 }, { 3532, 0x0000 }, { 3532, 0x2000 }, { 3533, 0x0000 },\n  /* 0x22500 */\n  { 3533, 0x0000 }, { 3533, 0x0808 }, { 3535, 0x0000 }, { 3535, 0x0001 },\n  { 3536, 0x0000 }, { 3536, 0x0010 }, { 3537, 0x0000 }, { 3537, 0x0000 },\n  { 3537, 0x2000 }, { 3538, 0x0000 }, { 3538, 0x8000 }, { 3539, 0x4000 },\n  { 3540, 0x0000 }, { 3540, 0x0000 }, { 3540, 0x0000 }, { 3540, 0x0000 },\n  /* 0x22600 */\n  { 3540, 0x0000 }, { 3540, 0x1800 }, { 3542, 0x0800 }, { 3543, 0x0000 },\n  { 3543, 0x0000 }, { 3543, 0x0000 }, { 3543, 0x0100 }, { 3544, 0x0400 },\n  { 3545, 0x0000 }, { 3545, 0x0140 }, { 3547, 0x0000 }, { 3547, 0x0000 },\n  { 3547, 0x0000 }, { 3547, 0x0000 }, { 3547, 0x0000 }, { 3547, 0x0070 },\n  /* 0x22700 */\n  { 3550, 0x0000 }, { 3550, 0x8810 }, { 3553, 0x0400 }, { 3554, 0x0000 },\n  { 3554, 0x0000 }, { 3554, 0x0000 }, { 3554, 0x0000 }, { 3554, 0x0020 },\n  { 3555, 0x0002 }, { 3556, 0x0000 }, { 3556, 0x0000 }, { 3556, 0x0030 },\n  { 3558, 0x2000 }, { 3559, 0x0000 }, { 3559, 0x0000 }, { 3559, 0x0000 },\n  /* 0x22800 */\n  { 3559, 0x0008 }, { 3560, 0x0000 }, { 3560, 0x0000 }, { 3560, 0x0000 },\n  { 3560, 0x0000 }, { 3560, 0x8000 }, { 3561, 0x0001 }, { 3562, 0x0002 },\n  { 3563, 0x0000 }, { 3563, 0x0000 }, { 3563, 0x2000 }, { 3564, 0x0000 },\n  { 3564, 0x0002 }, { 3565, 0x0000 }, { 3565, 0x0000 }, { 3565, 0x0080 },\n  /* 0x22900 */\n  { 3566, 0x0000 }, { 3566, 0x0000 }, { 3566, 0x0040 }, { 3567, 0x0200 },\n  { 3568, 0x8000 }, { 3569, 0x0000 }, { 3569, 0x0880 }, { 3571, 0x0000 },\n  { 3571, 0x0001 }, { 3572, 0x0008 }, { 3573, 0x0000 }, { 3573, 0x0000 },\n  { 3573, 0x0000 }, { 3573, 0x0000 }, { 3573, 0x0000 }, { 3573, 0x0000 },\n  /* 0x22a00 */\n  { 3573, 0x0000 }, { 3573, 0x0000 }, { 3573, 0x0000 }, { 3573, 0x0000 },\n  { 3573, 0x0000 }, { 3573, 0x0000 }, { 3573, 0x0040 }, { 3574, 0x0000 },\n  { 3574, 0x0000 }, { 3574, 0x0000 }, { 3574, 0x0000 }, { 3574, 0x0000 },\n  { 3574, 0x8000 }, { 3575, 0x0020 }, { 3576, 0x0140 }, { 3578, 0x0000 },\n  /* 0x22b00 */\n  { 3578, 0x4000 }, { 3579, 0x0000 }, { 3579, 0x0004 }, { 3580, 0x8000 },\n  { 3581, 0x0008 }, { 3582, 0x0000 }, { 3582, 0x0400 }, { 3583, 0x0000 },\n  { 3583, 0x0000 }, { 3583, 0x0000 }, { 3583, 0x0000 }, { 3583, 0x0000 },\n  { 3583, 0x4400 }, { 3585, 0x0000 }, { 3585, 0x0000 }, { 3585, 0x0000 },\n  /* 0x22c00 */\n  { 3585, 0x0000 }, { 3585, 0x0000 }, { 3585, 0x00c0 }, { 3587, 0x0100 },\n  { 3588, 0x1000 }, { 3589, 0x0022 }, { 3591, 0x0004 }, { 3592, 0x0000 },\n  { 3592, 0x0100 }, { 3593, 0x0800 }, { 3594, 0x0202 }, { 3596, 0x0084 },\n  { 3598, 0x0244 }, { 3601, 0x0000 }, { 3601, 0x0000 }, { 3601, 0x0000 },\n  /* 0x22d00 */\n  { 3601, 0x0180 }, { 3603, 0x0004 }, { 3604, 0x0000 }, { 3604, 0x0000 },\n  { 3604, 0x1010 }, { 3606, 0x0000 }, { 3606, 0x0080 }, { 3607, 0x0000 },\n  { 3607, 0x2000 }, { 3608, 0x0020 }, { 3609, 0x0019 }, { 3612, 0x0080 },\n  { 3613, 0x0000 }, { 3613, 0x0000 }, { 3613, 0x4000 }, { 3614, 0x0000 },\n  /* 0x22e00 */\n  { 3614, 0x2000 }, { 3615, 0x0000 }, { 3615, 0x0000 }, { 3615, 0x0040 },\n  { 3616, 0x0004 }, { 3617, 0x0000 }, { 3617, 0x0000 }, { 3617, 0x0100 },\n  { 3618, 0x0800 }, { 3619, 0x0000 }, { 3619, 0x0000 }, { 3619, 0x0008 },\n  { 3620, 0x0000 }, { 3620, 0x0000 }, { 3620, 0x8000 }, { 3621, 0x0000 },\n  /* 0x22f00 */\n  { 3621, 0x0000 }, { 3621, 0x0000 }, { 3621, 0x0000 }, { 3621, 0x0000 },\n  { 3621, 0x0000 }, { 3621, 0x0000 }, { 3621, 0x0000 }, { 3621, 0x0010 },\n  { 3622, 0x0000 }, { 3622, 0x0000 }, { 3622, 0x0000 }, { 3622, 0x0000 },\n  { 3622, 0x1000 }, { 3623, 0x0000 }, { 3623, 0x0008 }, { 3624, 0x0000 },\n  /* 0x23000 */\n  { 3624, 0x0000 }, { 3624, 0x0000 }, { 3624, 0x0000 }, { 3624, 0x0008 },\n  { 3625, 0x0810 }, { 3627, 0x0000 }, { 3627, 0x0040 }, { 3628, 0x6000 },\n  { 3630, 0x4000 }, { 3631, 0x0000 }, { 3631, 0x0000 }, { 3631, 0x1080 },\n  { 3633, 0x0000 }, { 3633, 0x0400 }, { 3634, 0x0000 }, { 3634, 0x0000 },\n  /* 0x23100 */\n  { 3634, 0x0008 }, { 3635, 0x0000 }, { 3635, 0x0000 }, { 3635, 0x2000 },\n  { 3636, 0x0000 }, { 3636, 0x0000 }, { 3636, 0x0000 }, { 3636, 0x2000 },\n  { 3637, 0x0004 }, { 3638, 0x0000 }, { 3638, 0x0030 }, { 3640, 0x0008 },\n  { 3641, 0x0300 }, { 3643, 0x0000 }, { 3643, 0x0000 }, { 3643, 0x0380 },\n  /* 0x23200 */\n  { 3646, 0x8000 }, { 3647, 0x0000 }, { 3647, 0x8020 }, { 3649, 0x001e },\n  { 3653, 0x0000 }, { 3653, 0x0000 }, { 3653, 0x0004 }, { 3654, 0x0000 },\n  { 3654, 0x0600 }, { 3656, 0x0000 }, { 3656, 0x3800 }, { 3659, 0x0000 },\n  { 3659, 0x0000 }, { 3659, 0x0004 }, { 3660, 0x0003 }, { 3662, 0x0000 },\n  /* 0x23300 */\n  { 3662, 0x0401 }, { 3664, 0x8000 }, { 3665, 0x0000 }, { 3665, 0x0000 },\n  { 3665, 0x0000 }, { 3665, 0x0000 }, { 3665, 0x0000 }, { 3665, 0x0000 },\n  { 3665, 0x0000 }, { 3665, 0x0000 }, { 3665, 0x0000 }, { 3665, 0x0010 },\n  { 3666, 0x1000 }, { 3667, 0x4000 }, { 3668, 0x0040 }, { 3669, 0x4430 },\n  /* 0x23400 */\n  { 3673, 0x0001 }, { 3674, 0x0000 }, { 3674, 0x0000 }, { 3674, 0x8000 },\n  { 3675, 0x0000 }, { 3675, 0x0001 }, { 3676, 0x8000 }, { 3677, 0x0004 },\n  { 3678, 0x0000 }, { 3678, 0x0000 }, { 3678, 0x0000 }, { 3678, 0x0000 },\n  { 3678, 0x0000 }, { 3678, 0x0000 }, { 3678, 0x0020 }, { 3679, 0x0000 },\n  /* 0x23500 */\n  { 3679, 0x0000 }, { 3679, 0x0200 }, { 3680, 0x0000 }, { 3680, 0x0001 },\n  { 3681, 0x0000 }, { 3681, 0x0400 }, { 3682, 0x0080 }, { 3683, 0x0000 },\n  { 3683, 0x0000 }, { 3683, 0x1220 }, { 3686, 0x0000 }, { 3686, 0x0000 },\n  { 3686, 0xe000 }, { 3689, 0x0000 }, { 3689, 0x0000 }, { 3689, 0x0008 },\n  /* 0x23600 */\n  { 3690, 0x0001 }, { 3691, 0x0400 }, { 3692, 0x0000 }, { 3692, 0x1000 },\n  { 3693, 0x0001 }, { 3694, 0x8200 }, { 3696, 0x0000 }, { 3696, 0x0080 },\n  { 3697, 0x0000 }, { 3697, 0x0000 }, { 3697, 0x2040 }, { 3699, 0x0400 },\n  { 3700, 0x0000 }, { 3700, 0x8000 }, { 3701, 0x4000 }, { 3702, 0x0000 },\n  /* 0x23700 */\n  { 3702, 0x0008 }, { 3703, 0x0040 }, { 3704, 0xa001 }, { 3707, 0x8000 },\n  { 3708, 0x0000 }, { 3708, 0x0000 }, { 3708, 0x0040 }, { 3709, 0x0000 },\n  { 3709, 0x0002 }, { 3710, 0x0000 }, { 3710, 0x0004 }, { 3711, 0x1000 },\n  { 3712, 0x0004 }, { 3713, 0x00e0 }, { 3716, 0x0000 }, { 3716, 0x0000 },\n  /* 0x23800 */\n  { 3716, 0x0000 }, { 3716, 0x0000 }, { 3716, 0x0000 }, { 3716, 0x0400 },\n  { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 },\n  { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 },\n  { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 },\n  /* 0x23900 */\n  { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 },\n  { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 },\n  { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 }, { 3717, 0x0000 },\n  { 3717, 0x0004 }, { 3718, 0x0000 }, { 3718, 0x0000 }, { 3718, 0x0000 },\n  /* 0x23a00 */\n  { 3718, 0x0000 }, { 3718, 0x0000 }, { 3718, 0x0000 }, { 3718, 0x0000 },\n  { 3718, 0x0000 }, { 3718, 0x0000 }, { 3718, 0x0000 }, { 3718, 0x0000 },\n  { 3718, 0x0000 }, { 3718, 0x0000 }, { 3718, 0x0080 }, { 3719, 0x0000 },\n  { 3719, 0x0000 }, { 3719, 0x0800 }, { 3720, 0x4000 }, { 3721, 0x0400 },\n  /* 0x23b00 */\n  { 3722, 0x0000 }, { 3722, 0x0000 }, { 3722, 0x0000 }, { 3722, 0x0000 },\n  { 3722, 0x0000 }, { 3722, 0x0400 }, { 3723, 0x0000 }, { 3723, 0x0000 },\n  { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0x0000 },\n  { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0x0000 },\n  /* 0x23c00 */\n  { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0x0000 },\n  { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0x0000 },\n  { 3723, 0x0000 }, { 3723, 0x0e00 }, { 3726, 0x0000 }, { 3726, 0x00a0 },\n  { 3728, 0x0380 }, { 3731, 0x0000 }, { 3731, 0x0000 }, { 3731, 0xf000 },\n  /* 0x23d00 */\n  { 3735, 0x0000 }, { 3735, 0x0000 }, { 3735, 0x0000 }, { 3735, 0x0000 },\n  { 3735, 0x0001 }, { 3736, 0x0800 }, { 3737, 0x0000 }, { 3737, 0x4000 },\n  { 3738, 0x8000 }, { 3739, 0x0000 }, { 3739, 0x0000 }, { 3739, 0x3fc0 },\n  { 3747, 0x0000 }, { 3747, 0x0000 }, { 3747, 0x0008 }, { 3748, 0x0100 },\n  /* 0x23e00 */\n  { 3749, 0x0000 }, { 3749, 0x0002 }, { 3750, 0xf000 }, { 3754, 0x0203 },\n  { 3757, 0x0000 }, { 3757, 0x0000 }, { 3757, 0x0000 }, { 3757, 0x0000 },\n  { 3757, 0x0f00 }, { 3761, 0x0000 }, { 3761, 0x0000 }, { 3761, 0x8200 },\n  { 3763, 0x0000 }, { 3763, 0x0080 }, { 3764, 0x0000 }, { 3764, 0x1f80 },\n  /* 0x23f00 */\n  { 3770, 0x0000 }, { 3770, 0x0000 }, { 3770, 0x0000 }, { 3770, 0x0020 },\n  { 3771, 0x0402 }, { 3773, 0x0000 }, { 3773, 0x0000 }, { 3773, 0x8000 },\n  { 3774, 0x8007 }, { 3778, 0x0000 }, { 3778, 0x0000 }, { 3778, 0x0090 },\n  { 3780, 0x0021 }, { 3782, 0x0000 }, { 3782, 0xf800 }, { 3787, 0x0001 },\n  /* 0x24000 */\n  { 3788, 0x0000 }, { 3788, 0x0002 }, { 3789, 0x0000 }, { 3789, 0x3e00 },\n  { 3794, 0x0000 }, { 3794, 0x0080 }, { 3795, 0x0000 }, { 3795, 0x0000 },\n  { 3795, 0x3820 }, { 3799, 0x0002 }, { 3800, 0x0000 }, { 3800, 0x0000 },\n  { 3800, 0x0200 }, { 3801, 0x0000 }, { 3801, 0x0002 }, { 3802, 0x0000 },\n  /* 0x24100 */\n  { 3802, 0x8010 }, { 3804, 0x0200 }, { 3805, 0x0000 }, { 3805, 0x8000 },\n  { 3806, 0x0011 }, { 3808, 0x90e0 }, { 3813, 0x0000 }, { 3813, 0x0480 },\n  { 3815, 0x0000 }, { 3815, 0x0000 }, { 3815, 0x1038 }, { 3819, 0x0020 },\n  { 3820, 0x2000 }, { 3821, 0x0000 }, { 3821, 0x0004 }, { 3822, 0x1000 },\n  /* 0x24200 */\n  { 3823, 0x0000 }, { 3823, 0x0800 }, { 3824, 0x0000 }, { 3824, 0x0000 },\n  { 3824, 0x0800 }, { 3825, 0x0240 }, { 3827, 0x0000 }, { 3827, 0x01c0 },\n  { 3830, 0x0010 }, { 3831, 0x0028 }, { 3833, 0x0020 }, { 3834, 0x0000 },\n  { 3834, 0x0602 }, { 3837, 0x0000 }, { 3837, 0x4000 }, { 3838, 0x0400 },\n  /* 0x24300 */\n  { 3839, 0x2000 }, { 3840, 0x0400 }, { 3841, 0x0000 }, { 3841, 0x0010 },\n  { 3842, 0x0100 }, { 3843, 0x0000 }, { 3843, 0x003c }, { 3847, 0x0000 },\n  { 3847, 0x1000 }, { 3848, 0x1040 }, { 3850, 0x0000 }, { 3850, 0x2000 },\n  { 3851, 0x0002 }, { 3852, 0x0000 }, { 3852, 0x0600 }, { 3854, 0x0104 },\n  /* 0x24400 */\n  { 3856, 0x0010 }, { 3857, 0x0000 }, { 3857, 0x0000 }, { 3857, 0x0060 },\n  { 3859, 0x0000 }, { 3859, 0x0c00 }, { 3861, 0x0000 }, { 3861, 0x0008 },\n  { 3862, 0x0180 }, { 3864, 0x0000 }, { 3864, 0x0000 }, { 3864, 0x1200 },\n  { 3866, 0x4000 }, { 3867, 0x0048 }, { 3869, 0x0000 }, { 3869, 0x0000 },\n  /* 0x24500 */\n  { 3869, 0x0000 }, { 3869, 0x0000 }, { 3869, 0x0002 }, { 3870, 0x0000 },\n  { 3870, 0x0000 }, { 3870, 0x0000 }, { 3870, 0x0000 }, { 3870, 0x0100 },\n  { 3871, 0x0000 }, { 3871, 0x0000 }, { 3871, 0x0000 }, { 3871, 0x0000 },\n  { 3871, 0x0100 }, { 3872, 0x0000 }, { 3872, 0x0000 }, { 3872, 0x0000 },\n  /* 0x24600 */\n  { 3872, 0x0000 }, { 3872, 0x0100 }, { 3873, 0x0400 }, { 3874, 0x0000 },\n  { 3874, 0x0000 }, { 3874, 0x0000 }, { 3874, 0x0020 }, { 3875, 0x0010 },\n  { 3876, 0x0000 }, { 3876, 0x0080 }, { 3877, 0x0000 }, { 3877, 0x0000 },\n  { 3877, 0x0000 }, { 3877, 0x0010 }, { 3878, 0x0000 }, { 3878, 0x0000 },\n  /* 0x24700 */\n  { 3878, 0x0040 }, { 3879, 0x0000 }, { 3879, 0x8020 }, { 3881, 0x0000 },\n  { 3881, 0x0000 }, { 3881, 0x0000 }, { 3881, 0x0000 }, { 3881, 0x0000 },\n  { 3881, 0x8000 }, { 3882, 0x0000 }, { 3882, 0x0000 }, { 3882, 0x0000 },\n  { 3882, 0x0000 }, { 3882, 0x0000 }, { 3882, 0x0001 }, { 3883, 0x0000 },\n  /* 0x24800 */\n  { 3883, 0x0000 }, { 3883, 0x0004 }, { 3884, 0x0008 }, { 3885, 0x0000 },\n  { 3885, 0x0000 }, { 3885, 0x0000 }, { 3885, 0x0000 }, { 3885, 0x0000 },\n  { 3885, 0x0004 }, { 3886, 0x0000 }, { 3886, 0x0000 }, { 3886, 0x0000 },\n  { 3886, 0x0000 }, { 3886, 0x0000 }, { 3886, 0x0200 }, { 3887, 0x880f },\n  /* 0x24900 */\n  { 3893, 0x1003 }, { 3896, 0x02c0 }, { 3899, 0x8000 }, { 3900, 0xc018 },\n  { 3904, 0x000f }, { 3908, 0x0000 }, { 3908, 0x000c }, { 3910, 0x8070 },\n  { 3914, 0xff04 }, { 3923, 0x0010 }, { 3924, 0x3a90 }, { 3930, 0x0f80 },\n  { 3935, 0x0020 }, { 3936, 0xc401 }, { 3940, 0x3028 }, { 3944, 0x0bc0 },\n  /* 0x24a00 */\n  { 3949, 0x4000 }, { 3950, 0x0024 }, { 3952, 0x07fe }, { 3962, 0x4000 },\n  { 3963, 0xc424 }, { 3968, 0x2003 }, { 3971, 0x00e0 }, { 3974, 0x0782 },\n  { 3979, 0x1000 }, { 3980, 0x0078 }, { 3984, 0x00f0 }, { 3988, 0x1c0e },\n  { 3994, 0x0481 }, { 3997, 0x8002 }, { 3999, 0x0204 }, { 4001, 0x0000 },\n  /* 0x24b00 */\n  { 4001, 0x0000 }, { 4001, 0x0000 }, { 4001, 0x0000 }, { 4001, 0x0000 },\n  { 4001, 0x0000 }, { 4001, 0x0000 }, { 4001, 0x4000 }, { 4002, 0x0000 },\n  { 4002, 0x0000 }, { 4002, 0x0000 }, { 4002, 0x0000 }, { 4002, 0x0000 },\n  { 4002, 0x0000 }, { 4002, 0x0000 }, { 4002, 0x0000 }, { 4002, 0x0020 },\n  /* 0x24c00 */\n  { 4003, 0x0200 }, { 4004, 0x0000 }, { 4004, 0x0000 }, { 4004, 0x0000 },\n  { 4004, 0x0000 }, { 4004, 0x0000 }, { 4004, 0x0000 }, { 4004, 0x0000 },\n  { 4004, 0x0000 }, { 4004, 0xc000 }, { 4006, 0x0000 }, { 4006, 0x0000 },\n  { 4006, 0x0200 }, { 4007, 0x0200 }, { 4008, 0x0000 }, { 4008, 0x0000 },\n  /* 0x24d00 */\n  { 4008, 0x0040 }, { 4009, 0x0008 }, { 4010, 0x0000 }, { 4010, 0x0000 },\n  { 4010, 0x0000 }, { 4010, 0x0000 }, { 4010, 0x0000 }, { 4010, 0x0000 },\n  { 4010, 0x0000 }, { 4010, 0x0000 }, { 4010, 0x0000 }, { 4010, 0x0100 },\n  { 4011, 0x0000 }, { 4011, 0x0000 }, { 4011, 0x0c00 }, { 4013, 0x0000 },\n  /* 0x24e00 */\n  { 4013, 0x0000 }, { 4013, 0x0000 }, { 4013, 0x0000 }, { 4013, 0x0800 },\n  { 4014, 0x0000 }, { 4014, 0x0001 }, { 4015, 0x0000 }, { 4015, 0x0000 },\n  { 4015, 0x0000 }, { 4015, 0x0000 }, { 4015, 0x00a0 }, { 4017, 0x0000 },\n  { 4017, 0x0000 }, { 4017, 0x0000 }, { 4017, 0x0000 }, { 4017, 0x0000 },\n  /* 0x24f00 */\n  { 4017, 0x4000 }, { 4018, 0x0000 }, { 4018, 0x0000 }, { 4018, 0x0000 },\n  { 4018, 0x0000 }, { 4018, 0x1000 }, { 4019, 0x0000 }, { 4019, 0x0000 },\n  { 4019, 0x0044 }, { 4021, 0x0480 }, { 4023, 0x0200 }, { 4024, 0x0100 },\n  { 4025, 0x0004 }, { 4026, 0x0000 }, { 4026, 0x0000 }, { 4026, 0x0000 },\n  /* 0x25000 */\n  { 4026, 0x0000 }, { 4026, 0x0000 }, { 4026, 0x1000 }, { 4027, 0x0000 },\n  { 4027, 0x0000 }, { 4027, 0x0004 }, { 4028, 0x0000 }, { 4028, 0x0000 },\n  { 4028, 0x0000 }, { 4028, 0x2000 }, { 4029, 0x0000 }, { 4029, 0x0000 },\n  { 4029, 0x0000 }, { 4029, 0x0000 }, { 4029, 0x0000 }, { 4029, 0x0000 },\n  /* 0x25100 */\n  { 4029, 0x0000 }, { 4029, 0x0000 }, { 4029, 0x0800 }, { 4030, 0x0000 },\n  { 4030, 0x0100 }, { 4031, 0x0000 }, { 4031, 0x0000 }, { 4031, 0x6000 },\n  { 4033, 0x0000 }, { 4033, 0x0000 }, { 4033, 0x0000 }, { 4033, 0x0000 },\n  { 4033, 0x0000 }, { 4033, 0x0000 }, { 4033, 0x00c8 }, { 4036, 0x0000 },\n  /* 0x25200 */\n  { 4036, 0x0000 }, { 4036, 0x0000 }, { 4036, 0x0003 }, { 4038, 0x0000 },\n  { 4038, 0x0000 }, { 4038, 0x0001 }, { 4039, 0x0000 }, { 4039, 0x0000 },\n  { 4039, 0x0000 }, { 4039, 0x0200 }, { 4040, 0x0000 }, { 4040, 0x0000 },\n  { 4040, 0x0080 }, { 4041, 0x0100 }, { 4042, 0x0000 }, { 4042, 0x0000 },\n  /* 0x25300 */\n  { 4042, 0x4000 }, { 4043, 0x000a }, { 4045, 0x0000 }, { 4045, 0x0000 },\n  { 4045, 0x0000 }, { 4045, 0x0000 }, { 4045, 0x0000 }, { 4045, 0x0000 },\n  { 4045, 0x0000 }, { 4045, 0x0000 }, { 4045, 0x0000 }, { 4045, 0x0000 },\n  { 4045, 0x0000 }, { 4045, 0x0000 }, { 4045, 0x0000 }, { 4045, 0x0000 },\n  /* 0x25400 */\n  { 4045, 0x0000 }, { 4045, 0x0200 }, { 4046, 0x8020 }, { 4048, 0x0001 },\n  { 4049, 0x0040 }, { 4050, 0x0000 }, { 4050, 0x5000 }, { 4052, 0x0000 },\n  { 4052, 0x0000 }, { 4052, 0x0000 }, { 4052, 0x0000 }, { 4052, 0x0000 },\n  { 4052, 0x0000 }, { 4052, 0x0000 }, { 4052, 0x0000 }, { 4052, 0x0000 },\n  /* 0x25500 */\n  { 4052, 0x0000 }, { 4052, 0x0000 }, { 4052, 0x0000 }, { 4052, 0x8022 },\n  { 4055, 0x0000 }, { 4055, 0x7800 }, { 4059, 0x0064 }, { 4062, 0x0000 },\n  { 4062, 0x8012 }, { 4065, 0x0000 }, { 4065, 0x0000 }, { 4065, 0x0200 },\n  { 4066, 0x0000 }, { 4066, 0x0820 }, { 4068, 0x0001 }, { 4069, 0x0000 },\n  /* 0x25600 */\n  { 4069, 0x0020 }, { 4070, 0x0000 }, { 4070, 0x0000 }, { 4070, 0x0020 },\n  { 4071, 0x0000 }, { 4071, 0x0002 }, { 4072, 0x0000 }, { 4072, 0x0000 },\n  { 4072, 0x0008 }, { 4073, 0x0000 }, { 4073, 0x0000 }, { 4073, 0x0000 },\n  { 4073, 0x0000 }, { 4073, 0x0000 }, { 4073, 0x0008 }, { 4074, 0x0040 },\n  /* 0x25700 */\n  { 4075, 0x0040 }, { 4076, 0x2000 }, { 4077, 0x0020 }, { 4078, 0x2000 },\n  { 4079, 0x0000 }, { 4079, 0x0000 }, { 4079, 0x0000 }, { 4079, 0x0004 },\n  { 4080, 0x0000 }, { 4080, 0x0000 }, { 4080, 0x0000 }, { 4080, 0x0000 },\n  { 4080, 0x0080 }, { 4081, 0x8000 }, { 4082, 0x0003 }, { 4084, 0x0000 },\n  /* 0x25800 */\n  { 4084, 0x0000 }, { 4084, 0x0000 }, { 4084, 0x0000 }, { 4084, 0x0000 },\n  { 4084, 0x0000 }, { 4084, 0x2080 }, { 4086, 0x0000 }, { 4086, 0x0004 },\n  { 4087, 0x0000 }, { 4087, 0x0000 }, { 4087, 0x0000 }, { 4087, 0x0000 },\n  { 4087, 0x0100 }, { 4088, 0x0000 }, { 4088, 0x0002 }, { 4089, 0x0000 },\n  /* 0x25900 */\n  { 4089, 0x0008 }, { 4090, 0x0000 }, { 4090, 0x0000 }, { 4090, 0x0000 },\n  { 4090, 0x0040 }, { 4091, 0x0040 }, { 4092, 0x0000 }, { 4092, 0x0000 },\n  { 4092, 0x0000 }, { 4092, 0x0000 }, { 4092, 0x1000 }, { 4093, 0x0000 },\n  { 4093, 0x1000 }, { 4094, 0x0000 }, { 4094, 0x0000 }, { 4094, 0x0000 },\n  /* 0x25a00 */\n  { 4094, 0x0000 }, { 4094, 0x0000 }, { 4094, 0x0000 }, { 4094, 0x0000 },\n  { 4094, 0x0000 }, { 4094, 0x0000 }, { 4094, 0x0000 }, { 4094, 0x0000 },\n  { 4094, 0x0000 }, { 4094, 0x1020 }, { 4096, 0xc000 }, { 4098, 0x0000 },\n  { 4098, 0x0000 }, { 4098, 0x0000 }, { 4098, 0x0200 }, { 4099, 0x0000 },\n  /* 0x25b00 */\n  { 4099, 0x0000 }, { 4099, 0x0000 }, { 4099, 0x0000 }, { 4099, 0x0000 },\n  { 4099, 0x0000 }, { 4099, 0x0000 }, { 4099, 0x0000 }, { 4099, 0x0010 },\n  { 4100, 0x0200 }, { 4101, 0x0000 }, { 4101, 0x0000 }, { 4101, 0x0018 },\n  { 4103, 0x0040 }, { 4104, 0x0000 }, { 4104, 0x0110 }, { 4106, 0x0000 },\n  /* 0x25c00 */\n  { 4106, 0x0042 }, { 4108, 0x0000 }, { 4108, 0x0002 }, { 4109, 0x0000 },\n  { 4109, 0x0400 }, { 4110, 0x0000 }, { 4110, 0x0020 }, { 4111, 0x0000 },\n  { 4111, 0x0000 }, { 4111, 0x0002 }, { 4112, 0x0000 }, { 4112, 0x0000 },\n  { 4112, 0x0003 }, { 4114, 0x0000 }, { 4114, 0x0000 }, { 4114, 0x4000 },\n  /* 0x25d00 */\n  { 4115, 0x0000 }, { 4115, 0x0000 }, { 4115, 0x0001 }, { 4116, 0x0000 },\n  { 4116, 0x0008 }, { 4117, 0x0000 }, { 4117, 0x0000 }, { 4117, 0x0000 },\n  { 4117, 0x0000 }, { 4117, 0x0000 }, { 4117, 0x0000 }, { 4117, 0x0000 },\n  { 4117, 0x0000 }, { 4117, 0x0000 }, { 4117, 0x0000 }, { 4117, 0x0000 },\n  /* 0x25e00 */\n  { 4117, 0x4000 }, { 4118, 0x0000 }, { 4118, 0x0000 }, { 4118, 0x0000 },\n  { 4118, 0x0200 }, { 4119, 0x0000 }, { 4119, 0x0000 }, { 4119, 0x0000 },\n  { 4119, 0x000e }, { 4122, 0x0000 }, { 4122, 0x0040 }, { 4123, 0x1000 },\n  { 4124, 0x0000 }, { 4124, 0x0180 }, { 4126, 0x0000 }, { 4126, 0x0000 },\n  /* 0x25f00 */\n  { 4126, 0x0000 }, { 4126, 0x0400 }, { 4127, 0x0000 }, { 4127, 0x0000 },\n  { 4127, 0x0800 }, { 4128, 0x0000 }, { 4128, 0x0000 }, { 4128, 0x0000 },\n  { 4128, 0x0000 }, { 4128, 0x0000 }, { 4128, 0x0000 }, { 4128, 0x0000 },\n  { 4128, 0x0000 }, { 4128, 0x0000 }, { 4128, 0x0006 }, { 4130, 0x0000 },\n  /* 0x26000 */\n  { 4130, 0x0000 }, { 4130, 0x0000 }, { 4130, 0x0200 }, { 4131, 0x0000 },\n  { 4131, 0x0100 }, { 4132, 0x0000 }, { 4132, 0x0010 }, { 4133, 0x0000 },\n  { 4133, 0x0008 }, { 4134, 0x0080 }, { 4135, 0x0030 }, { 4137, 0x0000 },\n  { 4137, 0x0000 }, { 4137, 0x0000 }, { 4137, 0x0000 }, { 4137, 0x0000 },\n  /* 0x26100 */\n  { 4137, 0x0004 }, { 4138, 0x0000 }, { 4138, 0x0002 }, { 4139, 0x0000 },\n  { 4139, 0x0000 }, { 4139, 0x1e00 }, { 4143, 0x0000 }, { 4143, 0x0000 },\n  { 4143, 0x0000 }, { 4143, 0x0000 }, { 4143, 0x6000 }, { 4145, 0x0004 },\n  { 4146, 0x0000 }, { 4146, 0x2000 }, { 4147, 0x0000 }, { 4147, 0x0000 },\n  /* 0x26200 */\n  { 4147, 0x0000 }, { 4147, 0x0000 }, { 4147, 0x0000 }, { 4147, 0x0000 },\n  { 4147, 0x0000 }, { 4147, 0x0100 }, { 4148, 0x0c02 }, { 4151, 0x0000 },\n  { 4151, 0x0000 }, { 4151, 0x0000 }, { 4151, 0x0000 }, { 4151, 0x0000 },\n  { 4151, 0x0000 }, { 4151, 0x0001 }, { 4152, 0x0000 }, { 4152, 0x0000 },\n  /* 0x26300 */\n  { 4152, 0x0000 }, { 4152, 0x0000 }, { 4152, 0x0000 }, { 4152, 0x0020 },\n  { 4153, 0x1800 }, { 4155, 0x0002 }, { 4156, 0x0000 }, { 4156, 0x0000 },\n  { 4156, 0x0000 }, { 4156, 0x0000 }, { 4156, 0x0000 }, { 4156, 0x4000 },\n  { 4157, 0x0000 }, { 4157, 0x0000 }, { 4157, 0x0000 }, { 4157, 0x0120 },\n  /* 0x26400 */\n  { 4159, 0x0004 }, { 4160, 0x0007 }, { 4163, 0x0000 }, { 4163, 0x0000 },\n  { 4163, 0x0400 }, { 4164, 0x0000 }, { 4164, 0x0200 }, { 4165, 0x0000 },\n  { 4165, 0x2310 }, { 4169, 0x0100 }, { 4170, 0x0000 }, { 4170, 0x0000 },\n  { 4170, 0x0000 }, { 4170, 0x0000 }, { 4170, 0x0000 }, { 4170, 0x0000 },\n  /* 0x26500 */\n  { 4170, 0x0000 }, { 4170, 0x0004 }, { 4171, 0x0000 }, { 4171, 0x0000 },\n  { 4171, 0x0000 }, { 4171, 0x0000 }, { 4171, 0x0000 }, { 4171, 0x0004 },\n  { 4172, 0x0000 }, { 4172, 0x0000 }, { 4172, 0x2001 }, { 4174, 0x8000 },\n  { 4175, 0x0000 }, { 4175, 0x0000 }, { 4175, 0x0000 }, { 4175, 0x0000 },\n  /* 0x26600 */\n  { 4175, 0x0000 }, { 4175, 0x0004 }, { 4176, 0x0040 }, { 4177, 0x0000 },\n  { 4177, 0x0000 }, { 4177, 0x0000 }, { 4177, 0x0000 }, { 4177, 0x0000 },\n  { 4177, 0x0000 }, { 4177, 0x0000 }, { 4177, 0x8000 }, { 4178, 0x0022 },\n  { 4180, 0x0000 }, { 4180, 0x0400 }, { 4181, 0x0100 }, { 4182, 0x1000 },\n  /* 0x26700 */\n  { 4183, 0x0000 }, { 4183, 0x0040 }, { 4184, 0x0000 }, { 4184, 0x0000 },\n  { 4184, 0x0002 }, { 4185, 0x0000 }, { 4185, 0x0000 }, { 4185, 0x0000 },\n  { 4185, 0x0000 }, { 4185, 0x0200 }, { 4186, 0x0000 }, { 4186, 0x0018 },\n  { 4188, 0x1000 }, { 4189, 0x0000 }, { 4189, 0x0000 }, { 4189, 0x0000 },\n  /* 0x26800 */\n  { 4189, 0x0000 }, { 4189, 0x1000 }, { 4190, 0x0000 }, { 4190, 0x0000 },\n  { 4190, 0x0040 }, { 4191, 0x4000 }, { 4192, 0x4000 }, { 4193, 0x0000 },\n  { 4193, 0x0500 }, { 4195, 0x0008 }, { 4196, 0x0000 }, { 4196, 0x0000 },\n  { 4196, 0x0080 }, { 4197, 0x0000 }, { 4197, 0x0000 }, { 4197, 0x0000 },\n  /* 0x26900 */\n  { 4197, 0x4000 }, { 4198, 0x0002 }, { 4199, 0x0040 }, { 4200, 0x0200 },\n  { 4201, 0x0000 }, { 4201, 0x0002 }, { 4202, 0x0000 }, { 4202, 0x0000 },\n  { 4202, 0x0000 }, { 4202, 0x0000 }, { 4202, 0x0100 }, { 4203, 0x0020 },\n  { 4204, 0x0000 }, { 4204, 0x0000 }, { 4204, 0x0000 }, { 4204, 0x0404 },\n  /* 0x26a00 */\n  { 4206, 0x0000 }, { 4206, 0x0000 }, { 4206, 0x6000 }, { 4208, 0x0010 },\n  { 4209, 0x0004 }, { 4210, 0x0006 }, { 4212, 0x0000 }, { 4212, 0x0000 },\n  { 4212, 0x0000 }, { 4212, 0x0000 }, { 4212, 0x0000 }, { 4212, 0x0000 },\n  { 4212, 0x0000 }, { 4212, 0x0000 }, { 4212, 0x0000 }, { 4212, 0x0000 },\n  /* 0x26b00 */\n  { 4212, 0x0420 }, { 4214, 0x0008 }, { 4215, 0x0100 }, { 4216, 0x0000 },\n  { 4216, 0x0000 }, { 4216, 0x080f }, { 4221, 0x0000 }, { 4221, 0x0020 },\n  { 4222, 0x0004 }, { 4223, 0x20c0 }, { 4226, 0x0000 }, { 4226, 0x0008 },\n  { 4227, 0x0001 }, { 4228, 0x0000 }, { 4228, 0x0000 }, { 4228, 0x0080 },\n  /* 0x26c00 */\n  { 4229, 0x0000 }, { 4229, 0x0000 }, { 4229, 0x0002 }, { 4230, 0x0000 },\n  { 4230, 0x0001 }, { 4231, 0x0000 }, { 4231, 0x0000 }, { 4231, 0xc000 },\n  { 4233, 0x0007 }, { 4236, 0x0000 }, { 4236, 0x0010 }, { 4237, 0x2180 },\n  { 4240, 0x0009 }, { 4242, 0x0002 }, { 4243, 0x0000 }, { 4243, 0x0000 },\n  /* 0x26d00 */\n  { 4243, 0x0000 }, { 4243, 0x0000 }, { 4243, 0x07fc }, { 4252, 0x0000 },\n  { 4252, 0x0000 }, { 4252, 0x0002 }, { 4253, 0x0000 }, { 4253, 0x0000 },\n  { 4253, 0x0000 }, { 4253, 0x0000 }, { 4253, 0x40ff }, { 4262, 0x0000 },\n  { 4262, 0x0000 }, { 4262, 0x1000 }, { 4263, 0x0c00 }, { 4265, 0x0001 },\n  /* 0x26e00 */\n  { 4266, 0x00a1 }, { 4269, 0x0004 }, { 4270, 0x0000 }, { 4270, 0x0000 },\n  { 4270, 0x003c }, { 4274, 0x0000 }, { 4274, 0x4000 }, { 4275, 0x0084 },\n  { 4277, 0x0010 }, { 4278, 0x0200 }, { 4279, 0x0000 }, { 4279, 0x0000 },\n  { 4279, 0x0000 }, { 4279, 0x00ff }, { 4287, 0x0000 }, { 4287, 0x0000 },\n  /* 0x26f00 */\n  { 4287, 0x0000 }, { 4287, 0x0000 }, { 4287, 0x0040 }, { 4288, 0x0000 },\n  { 4288, 0x0000 }, { 4288, 0x0000 }, { 4288, 0x0000 }, { 4288, 0x0018 },\n  { 4290, 0x0000 }, { 4290, 0x8000 }, { 4291, 0x0002 }, { 4292, 0x0000 },\n  { 4292, 0x0000 }, { 4292, 0xc000 }, { 4294, 0x0000 }, { 4294, 0x0000 },\n  /* 0x27000 */\n  { 4294, 0x4000 }, { 4295, 0x0000 }, { 4295, 0x0000 }, { 4295, 0x0000 },\n  { 4295, 0x0800 }, { 4296, 0x000c }, { 4298, 0x0000 }, { 4298, 0x0000 },\n  { 4298, 0x0100 }, { 4299, 0x0000 }, { 4299, 0xe000 }, { 4302, 0x0000 },\n  { 4302, 0x2000 }, { 4303, 0x0000 }, { 4303, 0x0000 }, { 4303, 0x0100 },\n  /* 0x27100 */\n  { 4304, 0x1200 }, { 4306, 0x0000 }, { 4306, 0x00c0 }, { 4308, 0x0000 },\n  { 4308, 0x0000 }, { 4308, 0x0000 }, { 4308, 0x0030 }, { 4310, 0x0020 },\n  { 4311, 0x0000 }, { 4311, 0x0000 }, { 4311, 0x0000 }, { 4311, 0x0000 },\n  { 4311, 0x2000 }, { 4312, 0x0000 }, { 4312, 0x0000 }, { 4312, 0x0000 },\n  /* 0x27200 */\n  { 4312, 0x0000 }, { 4312, 0x0800 }, { 4313, 0x0000 }, { 4313, 0x0000 },\n  { 4313, 0x0000 }, { 4313, 0x0000 }, { 4313, 0x0000 }, { 4313, 0x0000 },\n  { 4313, 0x0821 }, { 4316, 0x0000 }, { 4316, 0x0000 }, { 4316, 0x0044 },\n  { 4318, 0x0000 }, { 4318, 0x0000 }, { 4318, 0x0040 }, { 4319, 0x0000 },\n  /* 0x27300 */\n  { 4319, 0x0000 }, { 4319, 0x0000 }, { 4319, 0x0000 }, { 4319, 0x0000 },\n  { 4319, 0x0000 }, { 4319, 0x0000 }, { 4319, 0x0000 }, { 4319, 0x0000 },\n  { 4319, 0x0000 }, { 4319, 0x0400 }, { 4320, 0x0000 }, { 4320, 0x0000 },\n  { 4320, 0x0000 }, { 4320, 0x0000 }, { 4320, 0x0000 }, { 4320, 0x0000 },\n  /* 0x27400 */\n  { 4320, 0x0000 }, { 4320, 0x0000 }, { 4320, 0x0004 }, { 4321, 0x0000 },\n  { 4321, 0x0000 }, { 4321, 0x0001 }, { 4322, 0x0000 }, { 4322, 0x0000 },\n  { 4322, 0x0050 }, { 4324, 0x0000 }, { 4324, 0x0000 }, { 4324, 0x0000 },\n  { 4324, 0x0000 }, { 4324, 0x0000 }, { 4324, 0x0000 }, { 4324, 0x0000 },\n  /* 0x27500 */\n  { 4324, 0x0000 }, { 4324, 0x0000 }, { 4324, 0x0000 }, { 4324, 0x0000 },\n  { 4324, 0x0000 }, { 4324, 0x0000 }, { 4324, 0x0000 }, { 4324, 0x0010 },\n  { 4325, 0x0000 }, { 4325, 0x0000 }, { 4325, 0x0008 }, { 4326, 0x0000 },\n  { 4326, 0x0000 }, { 4326, 0x0000 }, { 4326, 0x0011 }, { 4328, 0x6000 },\n  /* 0x27600 */\n  { 4330, 0x1080 }, { 4332, 0x0000 }, { 4332, 0x0000 }, { 4332, 0x0204 },\n  { 4334, 0x0000 }, { 4334, 0x00e0 }, { 4337, 0x0000 }, { 4337, 0x0000 },\n  { 4337, 0x0000 }, { 4337, 0x0010 }, { 4338, 0x0000 }, { 4338, 0x0000 },\n  { 4338, 0x0000 }, { 4338, 0x0000 }, { 4338, 0x0000 }, { 4338, 0x0000 },\n  /* 0x27700 */\n  { 4338, 0x8000 }, { 4339, 0x0000 }, { 4339, 0x0000 }, { 4339, 0x0060 },\n  { 4341, 0x0002 }, { 4342, 0x4000 }, { 4343, 0x0000 }, { 4343, 0x0000 },\n  { 4343, 0x0030 }, { 4345, 0x0000 }, { 4345, 0x0000 }, { 4345, 0x0000 },\n  { 4345, 0x1000 }, { 4346, 0x0000 }, { 4346, 0x0000 }, { 4346, 0x0000 },\n  /* 0x27800 */\n  { 4346, 0x0000 }, { 4346, 0x0000 }, { 4346, 0x0000 }, { 4346, 0x0000 },\n  { 4346, 0x0000 }, { 4346, 0x0100 }, { 4347, 0x0000 }, { 4347, 0x0001 },\n  { 4348, 0x0000 }, { 4348, 0x2000 }, { 4349, 0x0000 }, { 4349, 0x0004 },\n  { 4350, 0x0100 }, { 4351, 0x0000 }, { 4351, 0x0000 }, { 4351, 0x0000 },\n  /* 0x27900 */\n  { 4351, 0x0000 }, { 4351, 0x0000 }, { 4351, 0x0010 }, { 4352, 0x0000 },\n  { 4352, 0x0000 }, { 4352, 0x0000 }, { 4352, 0x0080 }, { 4353, 0x0400 },\n  { 4354, 0x0000 }, { 4354, 0x0000 }, { 4354, 0x0001 }, { 4355, 0x0000 },\n  { 4355, 0x0000 }, { 4355, 0x2000 }, { 4356, 0x0000 }, { 4356, 0x2000 },\n  /* 0x27a00 */\n  { 4357, 0x4400 }, { 4359, 0x0000 }, { 4359, 0x0000 }, { 4359, 0x4000 },\n  { 4360, 0x0000 }, { 4360, 0x0208 }, { 4362, 0x0000 }, { 4362, 0x0200 },\n  { 4363, 0x0010 }, { 4364, 0x0000 }, { 4364, 0x0000 }, { 4364, 0x6000 },\n  { 4366, 0x0000 }, { 4366, 0x0000 }, { 4366, 0x0000 }, { 4366, 0x0010 },\n  /* 0x27b00 */\n  { 4367, 0x0840 }, { 4369, 0x0100 }, { 4370, 0x0000 }, { 4370, 0x0700 },\n  { 4373, 0x0100 }, { 4374, 0x0000 }, { 4374, 0x0000 }, { 4374, 0x0000 },\n  { 4374, 0x0000 }, { 4374, 0x0000 }, { 4374, 0x0000 }, { 4374, 0x0000 },\n  { 4374, 0x0000 }, { 4374, 0x0000 }, { 4374, 0x0000 }, { 4374, 0x0010 },\n  /* 0x27c00 */\n  { 4375, 0x0000 }, { 4375, 0x0004 }, { 4376, 0x0000 }, { 4376, 0x0000 },\n  { 4376, 0x0000 }, { 4376, 0x0000 }, { 4376, 0x0000 }, { 4376, 0x0000 },\n  { 4376, 0x0000 }, { 4376, 0x0000 }, { 4376, 0x0000 }, { 4376, 0x0000 },\n  { 4376, 0x0000 }, { 4376, 0x0000 }, { 4376, 0x0000 }, { 4376, 0x0000 },\n  /* 0x27d00 */\n  { 4376, 0x0000 }, { 4376, 0x0000 }, { 4376, 0x8000 }, { 4377, 0x0000 },\n  { 4377, 0x0000 }, { 4377, 0x0018 }, { 4379, 0x0040 }, { 4380, 0x0008 },\n  { 4381, 0x8010 }, { 4383, 0x0100 }, { 4384, 0x0000 }, { 4384, 0x2000 },\n  { 4385, 0x0000 }, { 4385, 0x1000 }, { 4386, 0x0000 }, { 4386, 0x0000 },\n  /* 0x27e00 */\n  { 4386, 0x0000 }, { 4386, 0x0000 }, { 4386, 0x0000 }, { 4386, 0x0000 },\n  { 4386, 0xa000 }, { 4388, 0x0000 }, { 4388, 0x0000 }, { 4388, 0x0000 },\n  { 4388, 0x0000 }, { 4388, 0x0000 }, { 4388, 0x0000 }, { 4388, 0x0000 },\n  { 4388, 0x0000 }, { 4388, 0x0000 }, { 4388, 0x0000 }, { 4388, 0x0000 },\n  /* 0x27f00 */\n  { 4388, 0x0000 }, { 4388, 0x0000 }, { 4388, 0x4000 }, { 4389, 0x0000 },\n  { 4389, 0x0000 }, { 4389, 0x0000 }, { 4389, 0x0000 }, { 4389, 0x0000 },\n  { 4389, 0x0000 }, { 4389, 0x0000 }, { 4389, 0x0000 }, { 4389, 0x0000 },\n  { 4389, 0x0000 }, { 4389, 0x0000 }, { 4389, 0x0000 }, { 4389, 0x0200 },\n  /* 0x28000 */\n  { 4390, 0x0204 }, { 4392, 0x4000 }, { 4393, 0x0018 }, { 4395, 0x0000 },\n  { 4395, 0x0100 }, { 4396, 0x0000 }, { 4396, 0x0000 }, { 4396, 0x0000 },\n  { 4396, 0x0008 }, { 4397, 0x0001 }, { 4398, 0x0000 }, { 4398, 0x6000 },\n  { 4400, 0x0000 }, { 4400, 0x0000 }, { 4400, 0x0300 }, { 4402, 0x0010 },\n  /* 0x28100 */\n  { 4403, 0x0000 }, { 4403, 0x0000 }, { 4403, 0x4000 }, { 4404, 0x0000 },\n  { 4404, 0x8000 }, { 4405, 0x2000 }, { 4406, 0x8000 }, { 4407, 0x0000 },\n  { 4407, 0x0200 }, { 4408, 0x0000 }, { 4408, 0x8000 }, { 4409, 0x1000 },\n  { 4410, 0x0000 }, { 4410, 0x0000 }, { 4410, 0x0000 }, { 4410, 0x0000 },\n  /* 0x28200 */\n  { 4410, 0x0080 }, { 4411, 0x0500 }, { 4413, 0x0000 }, { 4413, 0x0000 },\n  { 4413, 0x0000 }, { 4413, 0x0040 }, { 4414, 0x0000 }, { 4414, 0x1000 },\n  { 4415, 0x0000 }, { 4415, 0x0800 }, { 4416, 0x0000 }, { 4416, 0x0000 },\n  { 4416, 0x2000 }, { 4417, 0x0000 }, { 4417, 0x0004 }, { 4418, 0x0000 },\n  /* 0x28300 */\n  { 4418, 0x0040 }, { 4419, 0x0100 }, { 4420, 0x8000 }, { 4421, 0x0400 },\n  { 4422, 0x0000 }, { 4422, 0x0000 }, { 4422, 0x2020 }, { 4424, 0x2000 },\n  { 4425, 0x0400 }, { 4426, 0x0000 }, { 4426, 0x0000 }, { 4426, 0x0000 },\n  { 4426, 0x0000 }, { 4426, 0x0000 }, { 4426, 0x0000 }, { 4426, 0x0000 },\n  /* 0x28400 */\n  { 4426, 0x0000 }, { 4426, 0x0004 }, { 4427, 0x0000 }, { 4427, 0x0000 },\n  { 4427, 0x0000 }, { 4427, 0x0000 }, { 4427, 0x1100 }, { 4429, 0x0008 },\n  { 4430, 0x0004 }, { 4431, 0x0000 }, { 4431, 0x0000 }, { 4431, 0x0000 },\n  { 4431, 0x0000 }, { 4431, 0x0000 }, { 4431, 0x0000 }, { 4431, 0x0000 },\n  /* 0x28500 */\n  { 4431, 0x0002 }, { 4432, 0x0000 }, { 4432, 0x0000 }, { 4432, 0x3000 },\n  { 4434, 0x0000 }, { 4434, 0x0000 }, { 4434, 0x1000 }, { 4435, 0x0000 },\n  { 4435, 0x0000 }, { 4435, 0x0000 }, { 4435, 0x0000 }, { 4435, 0x0000 },\n  { 4435, 0x0000 }, { 4435, 0x0000 }, { 4435, 0x0100 }, { 4436, 0x0010 },\n  /* 0x28600 */\n  { 4437, 0x0801 }, { 4439, 0x0000 }, { 4439, 0x0020 }, { 4440, 0x0800 },\n  { 4441, 0x0000 }, { 4441, 0x0000 }, { 4441, 0x0000 }, { 4441, 0x0000 },\n  { 4441, 0x0000 }, { 4441, 0x0000 }, { 4441, 0x0c00 }, { 4443, 0x1000 },\n  { 4444, 0x0000 }, { 4444, 0x0100 }, { 4445, 0x0040 }, { 4446, 0x0000 },\n  /* 0x28700 */\n  { 4446, 0x0000 }, { 4446, 0x0008 }, { 4447, 0x0000 }, { 4447, 0x0000 },\n  { 4447, 0x0000 }, { 4447, 0x0000 }, { 4447, 0x0000 }, { 4447, 0x0000 },\n  { 4447, 0x0000 }, { 4447, 0x0000 }, { 4447, 0x0000 }, { 4447, 0x0000 },\n  { 4447, 0x0000 }, { 4447, 0x0000 }, { 4447, 0x0000 }, { 4447, 0x0000 },\n  /* 0x28800 */\n  { 4447, 0x0010 }, { 4448, 0x0000 }, { 4448, 0x0800 }, { 4449, 0x0000 },\n  { 4449, 0x0000 }, { 4449, 0x0000 }, { 4449, 0x0000 }, { 4449, 0x0000 },\n  { 4449, 0x0000 }, { 4449, 0x0000 }, { 4449, 0x0000 }, { 4449, 0x0000 },\n  { 4449, 0x0000 }, { 4449, 0x0000 }, { 4449, 0x0000 }, { 4449, 0x0000 },\n  /* 0x28900 */\n  { 4449, 0x0000 }, { 4449, 0x0000 }, { 4449, 0x0000 }, { 4449, 0x0008 },\n  { 4450, 0x0300 }, { 4452, 0x0040 }, { 4453, 0x1110 }, { 4456, 0x4000 },\n  { 4457, 0x0200 }, { 4458, 0x0000 }, { 4458, 0x0d00 }, { 4461, 0x1100 },\n  { 4463, 0x0001 }, { 4464, 0x5000 }, { 4466, 0x0192 }, { 4470, 0x1e00 },\n  /* 0x28a00 */\n  { 4474, 0x8000 }, { 4475, 0x0040 }, { 4476, 0x0220 }, { 4478, 0x0040 },\n  { 4479, 0x0ff0 }, { 4487, 0x0600 }, { 4489, 0x0000 }, { 4489, 0x0000 },\n  { 4489, 0x000e }, { 4492, 0x1c00 }, { 4495, 0x0000 }, { 4495, 0x0000 },\n  { 4495, 0x5841 }, { 4500, 0xc000 }, { 4502, 0x002f }, { 4507, 0x1000 },\n  /* 0x28b00 */\n  { 4508, 0x1000 }, { 4509, 0x0008 }, { 4510, 0xb806 }, { 4516, 0x0000 },\n  { 4516, 0x5040 }, { 4519, 0x0001 }, { 4520, 0x1078 }, { 4525, 0x0000 },\n  { 4525, 0x8000 }, { 4526, 0x3200 }, { 4529, 0x0000 }, { 4529, 0x0000 },\n  { 4529, 0x0024 }, { 4531, 0x0690 }, { 4535, 0x1f80 }, { 4541, 0x8020 },\n  /* 0x28c00 */\n  { 4543, 0x0208 }, { 4545, 0x3000 }, { 4547, 0x0848 }, { 4550, 0x0a01 },\n  { 4553, 0x0000 }, { 4553, 0x0000 }, { 4553, 0x0000 }, { 4553, 0x0000 },\n  { 4553, 0x0000 }, { 4553, 0x0000 }, { 4553, 0x0000 }, { 4553, 0x0000 },\n  { 4553, 0x2400 }, { 4555, 0x0004 }, { 4556, 0x0000 }, { 4556, 0x0000 },\n  /* 0x28d00 */\n  { 4556, 0x0000 }, { 4556, 0x0000 }, { 4556, 0x0000 }, { 4556, 0x0010 },\n  { 4557, 0x0000 }, { 4557, 0x0000 }, { 4557, 0x0000 }, { 4557, 0x0000 },\n  { 4557, 0x0000 }, { 4557, 0x0200 }, { 4558, 0x0000 }, { 4558, 0x0000 },\n  { 4558, 0x0000 }, { 4558, 0x0000 }, { 4558, 0x0000 }, { 4558, 0x0000 },\n  /* 0x28e00 */\n  { 4558, 0x8000 }, { 4559, 0x0000 }, { 4559, 0x0000 }, { 4559, 0x0240 },\n  { 4561, 0x0000 }, { 4561, 0x0000 }, { 4561, 0x0060 }, { 4563, 0x0000 },\n  { 4563, 0x0000 }, { 4563, 0x0080 }, { 4564, 0x1000 }, { 4565, 0x000c },\n  { 4567, 0x0000 }, { 4567, 0x0200 }, { 4568, 0x0080 }, { 4569, 0x0000 },\n  /* 0x28f00 */\n  { 4569, 0x0000 }, { 4569, 0x0000 }, { 4569, 0x0000 }, { 4569, 0x0000 },\n  { 4569, 0x0000 }, { 4569, 0x0000 }, { 4569, 0x0000 }, { 4569, 0x0000 },\n  { 4569, 0x0000 }, { 4569, 0x0000 }, { 4569, 0x0000 }, { 4569, 0x0000 },\n  { 4569, 0x0020 }, { 4570, 0x0000 }, { 4570, 0x0000 }, { 4570, 0x0000 },\n  /* 0x29000 */\n  { 4570, 0x0000 }, { 4570, 0x0000 }, { 4570, 0x0000 }, { 4570, 0x0000 },\n  { 4570, 0x0000 }, { 4570, 0x0000 }, { 4570, 0x0000 }, { 4570, 0x0000 },\n  { 4570, 0x0900 }, { 4572, 0x0008 }, { 4573, 0x8000 }, { 4574, 0x0003 },\n  { 4576, 0x0001 }, { 4577, 0x0000 }, { 4577, 0x3030 }, { 4581, 0x0000 },\n  /* 0x29100 */\n  { 4581, 0x2000 }, { 4582, 0x0001 }, { 4583, 0x0000 }, { 4583, 0x1000 },\n  { 4584, 0x2000 }, { 4585, 0x4800 }, { 4587, 0x0000 }, { 4587, 0x0001 },\n  { 4588, 0x0000 }, { 4588, 0x1000 }, { 4589, 0x0100 }, { 4590, 0x0000 },\n  { 4590, 0x0000 }, { 4590, 0x0020 }, { 4591, 0x0800 },\n};\nstatic const Summary16 hkscs1999_uni2indx_page294[32] = {\n  /* 0x29400 */\n  { 4592, 0x0000 }, { 4592, 0x2000 }, { 4593, 0x0001 }, { 4594, 0x8008 },\n  { 4596, 0x0100 }, { 4597, 0x0000 }, { 4597, 0x0000 }, { 4597, 0x0000 },\n  { 4597, 0x0000 }, { 4597, 0x0000 }, { 4597, 0x0000 }, { 4597, 0x0000 },\n  { 4597, 0x0000 }, { 4597, 0x0601 }, { 4600, 0x00a0 }, { 4602, 0x0000 },\n  /* 0x29500 */\n  { 4602, 0x0000 }, { 4602, 0x0000 }, { 4602, 0x0000 }, { 4602, 0x0000 },\n  { 4602, 0x0000 }, { 4602, 0x0000 }, { 4602, 0x0000 }, { 4602, 0x0000 },\n  { 4602, 0x0000 }, { 4602, 0x4000 }, { 4603, 0x0000 }, { 4603, 0x0101 },\n  { 4605, 0x0000 }, { 4605, 0x0080 }, { 4606, 0x0200 }, { 4607, 0x0010 },\n};\nstatic const Summary16 hkscs1999_uni2indx_page297[251] = {\n  /* 0x29700 */\n  { 4608, 0x0000 }, { 4608, 0x0000 }, { 4608, 0x0001 }, { 4609, 0x0004 },\n  { 4610, 0x0000 }, { 4610, 0x0000 }, { 4610, 0x0000 }, { 4610, 0x0000 },\n  { 4610, 0x0000 }, { 4610, 0x0000 }, { 4610, 0x0000 }, { 4610, 0x0000 },\n  { 4610, 0x0000 }, { 4610, 0x0010 }, { 4611, 0x0000 }, { 4611, 0x0000 },\n  /* 0x29800 */\n  { 4611, 0x0000 }, { 4611, 0x0001 }, { 4612, 0x0000 }, { 4612, 0x0000 },\n  { 4612, 0x0000 }, { 4612, 0x0080 }, { 4613, 0x0000 }, { 4613, 0x0000 },\n  { 4613, 0x0000 }, { 4613, 0x0000 }, { 4613, 0x0010 }, { 4614, 0x0000 },\n  { 4614, 0x0000 }, { 4614, 0x0002 }, { 4615, 0x0400 }, { 4616, 0x0002 },\n  /* 0x29900 */\n  { 4617, 0x0028 }, { 4619, 0x0000 }, { 4619, 0x8000 }, { 4620, 0x0000 },\n  { 4620, 0x0300 }, { 4622, 0x2000 }, { 4623, 0x0400 }, { 4624, 0x0000 },\n  { 4624, 0x0000 }, { 4624, 0x2000 }, { 4625, 0x0000 }, { 4625, 0x0000 },\n  { 4625, 0x0208 }, { 4627, 0x0000 }, { 4627, 0x0000 }, { 4627, 0x0000 },\n  /* 0x29a00 */\n  { 4627, 0x0000 }, { 4627, 0x0000 }, { 4627, 0x0100 }, { 4628, 0x0000 },\n  { 4628, 0x2000 }, { 4629, 0x0000 }, { 4629, 0x0000 }, { 4629, 0x0000 },\n  { 4629, 0x0000 }, { 4629, 0x0000 }, { 4629, 0x0000 }, { 4629, 0x0000 },\n  { 4629, 0x0000 }, { 4629, 0x0000 }, { 4629, 0x0000 }, { 4629, 0x0000 },\n  /* 0x29b00 */\n  { 4629, 0x4020 }, { 4631, 0x0000 }, { 4631, 0x0000 }, { 4631, 0x0000 },\n  { 4631, 0x0000 }, { 4631, 0x0000 }, { 4631, 0x0000 }, { 4631, 0x0000 },\n  { 4631, 0x0000 }, { 4631, 0x0000 }, { 4631, 0x0000 }, { 4631, 0x0000 },\n  { 4631, 0x0000 }, { 4631, 0x0020 }, { 4632, 0x0000 }, { 4632, 0x0000 },\n  /* 0x29c00 */\n  { 4632, 0x0000 }, { 4632, 0x0000 }, { 4632, 0x0000 }, { 4632, 0x0000 },\n  { 4632, 0x0000 }, { 4632, 0x0000 }, { 4632, 0x0000 }, { 4632, 0x0000 },\n  { 4632, 0x0000 }, { 4632, 0x0000 }, { 4632, 0x2000 }, { 4633, 0x0000 },\n  { 4633, 0x0000 }, { 4633, 0x0000 }, { 4633, 0x0000 }, { 4633, 0x0000 },\n  /* 0x29d00 */\n  { 4633, 0x0000 }, { 4633, 0x0000 }, { 4633, 0x0000 }, { 4633, 0x4000 },\n  { 4634, 0x0000 }, { 4634, 0x0400 }, { 4635, 0x0000 }, { 4635, 0x1000 },\n  { 4636, 0x0000 }, { 4636, 0x0900 }, { 4638, 0x0000 }, { 4638, 0x0000 },\n  { 4638, 0x0000 }, { 4638, 0x0000 }, { 4638, 0x0000 }, { 4638, 0x0040 },\n  /* 0x29e00 */\n  { 4639, 0x0040 }, { 4640, 0x0000 }, { 4640, 0x2000 }, { 4641, 0x0000 },\n  { 4641, 0x0000 }, { 4641, 0x0000 }, { 4641, 0x0100 }, { 4642, 0x0000 },\n  { 4642, 0x0000 }, { 4642, 0x0000 }, { 4642, 0x1000 }, { 4643, 0x0000 },\n  { 4643, 0x0008 }, { 4644, 0x0000 }, { 4644, 0x0000 }, { 4644, 0x0100 },\n  /* 0x29f00 */\n  { 4645, 0x0000 }, { 4645, 0x0000 }, { 4645, 0x0008 }, { 4646, 0x0001 },\n  { 4647, 0x0000 }, { 4647, 0x0000 }, { 4647, 0x0000 }, { 4647, 0x0000 },\n  { 4647, 0x0000 }, { 4647, 0x0000 }, { 4647, 0x0000 }, { 4647, 0x0080 },\n  { 4648, 0x0000 }, { 4648, 0x4000 }, { 4649, 0x0000 }, { 4649, 0x0000 },\n  /* 0x2a000 */\n  { 4649, 0x0000 }, { 4649, 0x0010 }, { 4650, 0x0000 }, { 4650, 0x0000 },\n  { 4650, 0x0000 }, { 4650, 0x0000 }, { 4650, 0x0000 }, { 4650, 0x0000 },\n  { 4650, 0x0080 }, { 4651, 0x0000 }, { 4651, 0x0000 }, { 4651, 0x0200 },\n  { 4652, 0x0000 }, { 4652, 0x0000 }, { 4652, 0x2002 }, { 4654, 0x4108 },\n  /* 0x2a100 */\n  { 4657, 0x0000 }, { 4657, 0x0000 }, { 4657, 0x0008 }, { 4658, 0x0018 },\n  { 4660, 0x0000 }, { 4660, 0x0001 }, { 4661, 0x0000 }, { 4661, 0x0000 },\n  { 4661, 0x0000 }, { 4661, 0x000c }, { 4663, 0x0800 }, { 4664, 0x0010 },\n  { 4665, 0x0000 }, { 4665, 0x8000 }, { 4666, 0x0000 }, { 4666, 0x0020 },\n  /* 0x2a200 */\n  { 4667, 0x0000 }, { 4667, 0x0000 }, { 4667, 0x0001 }, { 4668, 0x0008 },\n  { 4669, 0x0000 }, { 4669, 0x0000 }, { 4669, 0x0000 }, { 4669, 0x0000 },\n  { 4669, 0x0000 }, { 4669, 0x8008 }, { 4671, 0x0000 }, { 4671, 0x2054 },\n  { 4675, 0x0000 }, { 4675, 0x8000 }, { 4676, 0x0000 }, { 4676, 0x8000 },\n  /* 0x2a300 */\n  { 4677, 0x0000 }, { 4677, 0x0000 }, { 4677, 0x0000 }, { 4677, 0x0000 },\n  { 4677, 0x0000 }, { 4677, 0x0000 }, { 4677, 0x0000 }, { 4677, 0x0000 },\n  { 4677, 0x0000 }, { 4677, 0x0000 }, { 4677, 0x0200 }, { 4678, 0x0000 },\n  { 4678, 0x0000 }, { 4678, 0x0000 }, { 4678, 0x0000 }, { 4678, 0x0000 },\n  /* 0x2a400 */\n  { 4678, 0x0000 }, { 4678, 0x0000 }, { 4678, 0x0000 }, { 4678, 0x0010 },\n  { 4679, 0x0000 }, { 4679, 0x0800 }, { 4680, 0x0000 }, { 4680, 0x0000 },\n  { 4680, 0x0000 }, { 4680, 0x0000 }, { 4680, 0x0000 }, { 4680, 0x0000 },\n  { 4680, 0x0000 }, { 4680, 0x0000 }, { 4680, 0x0000 }, { 4680, 0x0000 },\n  /* 0x2a500 */\n  { 4680, 0x0000 }, { 4680, 0x0000 }, { 4680, 0x0000 }, { 4680, 0x0000 },\n  { 4680, 0x0000 }, { 4680, 0x0000 }, { 4680, 0x0000 }, { 4680, 0x0000 },\n  { 4680, 0x0000 }, { 4680, 0x0000 }, { 4680, 0x0000 }, { 4680, 0x0000 },\n  { 4680, 0x0840 }, { 4682, 0x0000 }, { 4682, 0x0000 }, { 4682, 0x0000 },\n  /* 0x2a600 */\n  { 4682, 0x0002 }, { 4683, 0x0000 }, { 4683, 0x0000 }, { 4683, 0x0004 },\n  { 4684, 0x0400 }, { 4685, 0x0800 }, { 4686, 0x0000 }, { 4686, 0x0000 },\n  { 4686, 0x0000 }, { 4686, 0x0000 }, { 4686, 0x0200 },\n};\nstatic const Summary16 hkscs1999_uni2indx_page2f8[30] = {\n  /* 0x2f800 */\n  { 4687, 0x0000 }, { 4687, 0x0000 }, { 4687, 0x0020 }, { 4688, 0x0800 },\n  { 4689, 0x0001 }, { 4690, 0x0000 }, { 4690, 0x0000 }, { 4690, 0x0100 },\n  { 4691, 0x0000 }, { 4691, 0x0010 }, { 4692, 0x0040 }, { 4693, 0x0000 },\n  { 4693, 0x2000 }, { 4694, 0x0000 }, { 4694, 0x0000 }, { 4694, 0x0000 },\n  /* 0x2f900 */\n  { 4694, 0x0000 }, { 4694, 0x0000 }, { 4694, 0x0000 }, { 4694, 0x0000 },\n  { 4694, 0x0000 }, { 4694, 0x0000 }, { 4694, 0x0000 }, { 4694, 0x0000 },\n  { 4694, 0x0000 }, { 4694, 0x0010 }, { 4695, 0x0000 }, { 4695, 0x1004 },\n  { 4697, 0x0000 }, { 4697, 0x0010 },\n};\n\nstatic int\nhkscs1999_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x0000 && wc < 0x02d0)\n      summary = &hkscs1999_uni2indx_page00[(wc>>4)];\n    else if (wc >= 0x0400 && wc < 0x0460)\n      summary = &hkscs1999_uni2indx_page04[(wc>>4)-0x040];\n    else if (wc >= 0x1e00 && wc < 0x1ed0)\n      summary = &hkscs1999_uni2indx_page1e[(wc>>4)-0x1e0];\n    else if (wc >= 0x2100 && wc < 0x21f0)\n      summary = &hkscs1999_uni2indx_page21[(wc>>4)-0x210];\n    else if (wc >= 0x2300 && wc < 0x2580)\n      summary = &hkscs1999_uni2indx_page23[(wc>>4)-0x230];\n    else if (wc >= 0x2700 && wc < 0x2740)\n      summary = &hkscs1999_uni2indx_page27[(wc>>4)-0x270];\n    else if (wc >= 0x2e00 && wc < 0x3240)\n      summary = &hkscs1999_uni2indx_page2e[(wc>>4)-0x2e0];\n    else if (wc >= 0x3400 && wc < 0x9fc0)\n      summary = &hkscs1999_uni2indx_page34[(wc>>4)-0x340];\n    else if (wc >= 0xf900 && wc < 0xf910)\n      summary = &hkscs1999_uni2indx_pagef9[(wc>>4)-0xf90];\n    else if (wc >= 0xff00 && wc < 0xfff0)\n      summary = &hkscs1999_uni2indx_pageff[(wc>>4)-0xff0];\n    else if (wc >= 0x20000 && wc < 0x291f0)\n      summary = &hkscs1999_uni2indx_page200[(wc>>4)-0x2000];\n    else if (wc >= 0x29400 && wc < 0x29600)\n      summary = &hkscs1999_uni2indx_page294[(wc>>4)-0x2940];\n    else if (wc >= 0x29700 && wc < 0x2a6b0)\n      summary = &hkscs1999_uni2indx_page297[(wc>>4)-0x2970];\n    else if (wc >= 0x2f800 && wc < 0x2f9e0)\n      summary = &hkscs1999_uni2indx_page2f8[(wc>>4)-0x2f80];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = hkscs1999_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/hkscs2001.h",
    "content": "/*\n * Copyright (C) 1999-2006, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * HKSCS:2001\n */\n\nstatic const unsigned short hkscs2001_2uni_page8c[123] = {\n  /* 0x8c */\n  0x0a3b, 0x1cfe, 0x5273, 0x37a6, 0x02c9, 0x2d8f, 0x414e, 0x1d77,\n  0x12f5, 0x0620, 0x45cd, 0x0059, 0x4830, 0x1622, 0x4f32, 0x30a7,\n  0x31f6, 0x1e91, 0x1819, 0x20ba, 0x3e81, 0x5307, 0x018b, 0x3a80,\n  0x0610, 0x24e4, 0x2102, 0x0bae, 0x4d0f, 0x0409, 0x1a63, 0x54ba,\n  0x0523, 0x2c0f, 0x38fd, 0x252a, 0x5147, 0x4fea, 0x3455, 0x1d4d,\n  0x0c24, 0x3c7e, 0x33f4, 0x22d9, 0x4ee3, 0x37a7, 0x23dd, 0x08a3,\n  0x09f0, 0x0abc, 0x082f, 0x0917, 0x37a8, 0x0d34, 0x288b, 0x0f92,\n  0x0fd0, 0x3bb6, 0x1492, 0x1499, 0x15c2, 0x3d12, 0x178b, 0x3ff9,\n  0x1919, 0x1a43, 0x4063, 0x1bff, 0x38fd, 0x1f00, 0x4205, 0x208c,\n  0x03db, 0x4413, 0x1115, 0x21b9, 0x2e83, 0x47a4, 0x4695, 0x2593,\n  0x26ec, 0x27c3, 0x296c, 0x2af8, 0x2b97, 0x37a9, 0x2d90, 0x37aa,\n  0x2fb9, 0x37ab, 0x30cf, 0x2b5f, 0x36e0, 0x3221, 0x37ac, 0x50b9,\n  0x393f, 0x0471, 0x05a2, 0x101a, 0x38fd, 0x38fd, 0x38fd, 0x3568,\n  0x186b, 0x0576, 0x0e3d, 0x38fd, 0x2bd6, 0x437b, 0x2abf, 0x4c0d,\n  0x0781, 0x4a74, 0x137b, 0x4915, 0x4bbe, 0x37ad, 0x37ae, 0x1196,\n  0x37af, 0x38fd, 0x295b,\n};\n\nstatic const ucs4_t hkscs2001_2uni_upages[85] = {\n  0x03500, 0x03c00, 0x03d00, 0x03e00, 0x04000, 0x04200, 0x04b00, 0x04c00,\n  0x04e00, 0x04f00, 0x05000, 0x05100, 0x05300, 0x05400, 0x05700, 0x05800,\n  0x05a00, 0x05b00, 0x05c00, 0x05d00, 0x05e00, 0x05f00, 0x06100, 0x06500,\n  0x06700, 0x06900, 0x06a00, 0x06c00, 0x06d00, 0x07000, 0x07100, 0x07200,\n  0x07300, 0x07400, 0x07600, 0x07700, 0x07800, 0x07a00, 0x07b00, 0x07c00,\n  0x07d00, 0x07e00, 0x08200, 0x08500, 0x08600, 0x08800, 0x08b00, 0x08e00,\n  0x08f00, 0x09100, 0x09200, 0x09300, 0x09700, 0x09800, 0x09900, 0x09f00,\n  0x0ff00, 0x21400, 0x21900, 0x21d00, 0x22000, 0x22700, 0x23200, 0x23300,\n  0x23c00, 0x24100, 0x24500, 0x24900, 0x24a00, 0x25100, 0x25600, 0x25c00,\n  0x25d00, 0x26b00, 0x26d00, 0x26f00, 0x27100, 0x28700, 0x28900, 0x28a00,\n  0x28d00, 0x29900, 0x29c00, 0x2a100, 0x2a200,\n};\n\nstatic int\nhkscs2001_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 == 0x8c)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n        unsigned int i = 157 * (c1 - 0x80) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n        ucs4_t wc = 0xfffd;\n        unsigned short swc;\n        {\n          if (i < 2007)\n            swc = hkscs2001_2uni_page8c[i-1884],\n            wc = hkscs2001_2uni_upages[swc>>8] | (swc & 0xff);\n        }\n        if (wc != 0xfffd) {\n          *pwc = wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short hkscs2001_2charset[116] = {\n  0x8c4b, 0x8c56, 0x8c44, 0x8caa, 0x8c5d, 0x8cc3, 0x8c60, 0x8ccb,\n  0x8cc4, 0x8c58, 0x8c49, 0x8cd2, 0x8c72, 0x8c6f, 0x8c73, 0x8c70,\n  0x8c40, 0x8c71, 0x8c5b, 0x8c68, 0x8c75, 0x8ccc, 0x8c77, 0x8c78,\n  0x8cc5, 0x8cac, 0x8cd9, 0x8c48, 0x8cd4, 0x8c7a, 0x8c7b, 0x8c7c,\n  0x8c4d, 0x8c7e, 0x8c52, 0x8cca, 0x8ca2, 0x8ca3, 0x8c5e, 0x8ca5,\n  0x8c41, 0x8c67, 0x8c47, 0x8c51, 0x8ca7, 0x8ca9, 0x8c53, 0x8c5a,\n  0x8cad, 0x8c6b, 0x8c6e, 0x8c59, 0x8c63, 0x8cb1, 0x8cb2, 0x8cb3,\n  0x8c76, 0x8cdc, 0x8cb4, 0x8cd0, 0x8cb5, 0x8cbd, 0x8cb6, 0x8cce,\n  0x8c61, 0x8c45, 0x8cb8, 0x8cae, 0x8cba, 0x8c4f, 0x8cbc, 0x8c50,\n  0x8cbf, 0x8c6a, 0x8c66, 0x8cc9, 0x8cbe, 0x8c43, 0x8c6d, 0x8c74,\n  0x8cb7, 0x8cb9, 0x8cbb, 0x8cc0, 0x8cd7, 0x8cd8, 0x8cda, 0x8cc2,\n  0x8c57, 0x8c79, 0x8c69, 0x8c7d, 0x8c54, 0x8ca1, 0x8ca4, 0x8c46,\n  0x8ca8, 0x8ccf, 0x8cab, 0x8c4a, 0x8cb0, 0x8caf, 0x8c4c, 0x8cd5,\n  0x8cd3, 0x8cd6, 0x8cd1, 0x8c5c, 0x8c6c, 0x8c4e, 0x8c65, 0x8cc1,\n  0x8c64, 0x8c42, 0x8c55, 0x8c5f,\n};\n\nstatic const Summary16 hkscs2001_uni2indx_page35[6] = {\n  /* 0x3500 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0200 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page3c[46] = {\n  /* 0x3c00 */\n  {    1, 0x0000 }, {    1, 0x0000 }, {    1, 0x0000 }, {    1, 0x0000 },\n  {    1, 0x0000 }, {    1, 0x0000 }, {    1, 0x0000 }, {    1, 0x0000 },\n  {    1, 0x0800 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 },\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 },\n  /* 0x3d00 */\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 },\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 },\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 },\n  {    2, 0x0200 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  /* 0x3e00 */\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0800 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page40[8] = {\n  /* 0x4000 */\n  {    4, 0x0200 }, {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0000 },\n  {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0002 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page42[11] = {\n  /* 0x4200 */\n  {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0008 }, {    7, 0x0000 },\n  {    7, 0x0000 }, {    7, 0x0000 }, {    7, 0x0000 }, {    7, 0x0040 },\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0004 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page4b[25] = {\n  /* 0x4b00 */\n  {    9, 0x0000 }, {    9, 0x0001 }, {   10, 0x0001 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  /* 0x4c00 */\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0002 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page4e[59] = {\n  /* 0x4e00 */\n  {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x8000 }, {   13, 0x0000 },\n  {   13, 0x0000 }, {   13, 0x0000 }, {   13, 0x0000 }, {   13, 0x0000 },\n  {   13, 0x0000 }, {   13, 0x0000 }, {   13, 0x0008 }, {   14, 0x0000 },\n  {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 },\n  /* 0x4f00 */\n  {   14, 0x0000 }, {   14, 0x0080 }, {   15, 0x0000 }, {   15, 0x0000 },\n  {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0000 },\n  {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0000 },\n  {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0001 },\n  /* 0x5000 */\n  {   16, 0x0000 }, {   16, 0x0000 }, {   16, 0x0000 }, {   16, 0x0800 },\n  {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 },\n  {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x1000 },\n  {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 },\n  /* 0x5100 */\n  {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 },\n  {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 },\n  {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x4000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page53[20] = {\n  /* 0x5300 */\n  {   19, 0x0000 }, {   19, 0x0000 }, {   19, 0x0010 }, {   20, 0x0000 },\n  {   20, 0x0000 }, {   20, 0x0000 }, {   20, 0x0000 }, {   20, 0x0000 },\n  {   20, 0x0000 }, {   20, 0x0000 }, {   20, 0x0000 }, {   20, 0x0000 },\n  {   20, 0x0000 }, {   20, 0x0000 }, {   20, 0x0000 }, {   20, 0x0000 },\n  /* 0x5400 */\n  {   20, 0x0000 }, {   20, 0x0000 }, {   20, 0x0000 }, {   20, 0x0010 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page57[30] = {\n  /* 0x5700 */\n  {   21, 0x0000 }, {   21, 0x0000 }, {   21, 0x0000 }, {   21, 0x2000 },\n  {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 },\n  {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 },\n  {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 },\n  /* 0x5800 */\n  {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 },\n  {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 },\n  {   22, 0x0000 }, {   22, 0x0004 }, {   23, 0x0000 }, {   23, 0x0000 },\n  {   23, 0x0000 }, {   23, 0x0001 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page5a[93] = {\n  /* 0x5a00 */\n  {   24, 0x0000 }, {   24, 0x0400 }, {   25, 0x0000 }, {   25, 0x0000 },\n  {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 },\n  {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 },\n  {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 },\n  /* 0x5b00 */\n  {   25, 0x0000 }, {   25, 0x0020 }, {   26, 0x0000 }, {   26, 0x0000 },\n  {   26, 0x0000 }, {   26, 0x0000 }, {   26, 0x0000 }, {   26, 0x0000 },\n  {   26, 0x0000 }, {   26, 0x0040 }, {   27, 0x0000 }, {   27, 0x0000 },\n  {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0000 },\n  /* 0x5c00 */\n  {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0000 },\n  {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0000 },\n  {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0000 },\n  {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0020 },\n  /* 0x5d00 */\n  {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 },\n  {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0800 },\n  {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 },\n  {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 },\n  /* 0x5e00 */\n  {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 },\n  {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 },\n  {   29, 0x0000 }, {   29, 0x0204 }, {   31, 0x0000 }, {   31, 0x0000 },\n  {   31, 0x0000 }, {   31, 0x0000 }, {   31, 0x0000 }, {   31, 0x0000 },\n  /* 0x5f00 */\n  {   31, 0x0000 }, {   31, 0x0000 }, {   31, 0x0000 }, {   31, 0x0000 },\n  {   31, 0x0000 }, {   31, 0x0000 }, {   31, 0x0000 }, {   31, 0x0000 },\n  {   31, 0x0000 }, {   31, 0x0000 }, {   31, 0x0000 }, {   31, 0x0000 },\n  {   31, 0x0004 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page61[3] = {\n  /* 0x6100 */\n  {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0004 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page65[9] = {\n  /* 0x6500 */\n  {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 },\n  {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 },\n  {   33, 0x0800 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page67[7] = {\n  /* 0x6700 */\n  {   34, 0x0000 }, {   34, 0x0200 }, {   35, 0x0000 }, {   35, 0x0000 },\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0800 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page69[23] = {\n  /* 0x6900 */\n  {   36, 0x0000 }, {   36, 0x0200 }, {   37, 0x0000 }, {   37, 0x0000 },\n  {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 },\n  {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 },\n  {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 },\n  /* 0x6a00 */\n  {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 },\n  {   37, 0x0008 }, {   38, 0x0000 }, {   38, 0x0008 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page6c[32] = {\n  /* 0x6c00 */\n  {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 },\n  {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 },\n  {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 },\n  {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x8000 },\n  /* 0x6d00 */\n  {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 },\n  {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 },\n  {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 },\n  {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x4000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page70[76] = {\n  /* 0x7000 */\n  {   41, 0x0000 }, {   41, 0x0000 }, {   41, 0x0000 }, {   41, 0x0000 },\n  {   41, 0x2000 }, {   42, 0x0000 }, {   42, 0x0000 }, {   42, 0x0080 },\n  {   43, 0x0000 }, {   43, 0x0000 }, {   43, 0x0000 }, {   43, 0x0000 },\n  {   43, 0x0000 }, {   43, 0x0000 }, {   43, 0x0000 }, {   43, 0x0000 },\n  /* 0x7100 */\n  {   43, 0x0000 }, {   43, 0x0000 }, {   43, 0x0000 }, {   43, 0x0000 },\n  {   43, 0x0000 }, {   43, 0x0000 }, {   43, 0x0000 }, {   43, 0x0000 },\n  {   43, 0x0000 }, {   43, 0x0002 }, {   44, 0x0000 }, {   44, 0x0000 },\n  {   44, 0x0000 }, {   44, 0x0000 }, {   44, 0x0000 }, {   44, 0x0000 },\n  /* 0x7200 */\n  {   44, 0x0001 }, {   45, 0x0000 }, {   45, 0x0000 }, {   45, 0x0000 },\n  {   45, 0x0000 }, {   45, 0x0000 }, {   45, 0x0000 }, {   45, 0x0000 },\n  {   45, 0x0000 }, {   45, 0x0000 }, {   45, 0x0000 }, {   45, 0x0000 },\n  {   45, 0x0000 }, {   45, 0x0000 }, {   45, 0x0000 }, {   45, 0x0000 },\n  /* 0x7300 */\n  {   45, 0x0000 }, {   45, 0x0000 }, {   45, 0x0000 }, {   45, 0x0000 },\n  {   45, 0x0000 }, {   45, 0x0000 }, {   45, 0x0000 }, {   45, 0x0000 },\n  {   45, 0x1000 }, {   46, 0x0000 }, {   46, 0x0000 }, {   46, 0x0400 },\n  {   47, 0x0000 }, {   47, 0x0000 }, {   47, 0x0000 }, {   47, 0x0000 },\n  /* 0x7400 */\n  {   47, 0x0004 }, {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x0000 },\n  {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x0000 },\n  {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x0200 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page76[47] = {\n  /* 0x7600 */\n  {   49, 0x0000 }, {   49, 0x0000 }, {   49, 0x0000 }, {   49, 0x0000 },\n  {   49, 0x0000 }, {   49, 0x0000 }, {   49, 0x0000 }, {   49, 0x0000 },\n  {   49, 0x0000 }, {   49, 0x0000 }, {   49, 0x0000 }, {   49, 0x0000 },\n  {   49, 0x0000 }, {   49, 0x0200 }, {   50, 0x0000 }, {   50, 0x0000 },\n  /* 0x7700 */\n  {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 },\n  {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 },\n  {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 },\n  {   50, 0x0000 }, {   50, 0x2000 }, {   51, 0x0000 }, {   51, 0x0000 },\n  /* 0x7800 */\n  {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0000 },\n  {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0000 },\n  {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0000 },\n  {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0010 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page7a[71] = {\n  /* 0x7a00 */\n  {   52, 0x0000 }, {   52, 0x0000 }, {   52, 0x0400 }, {   53, 0x0000 },\n  {   53, 0x0000 }, {   53, 0x0000 }, {   53, 0x0000 }, {   53, 0x0000 },\n  {   53, 0x0000 }, {   53, 0x0008 }, {   54, 0x0000 }, {   54, 0x0000 },\n  {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 },\n  /* 0x7b00 */\n  {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 },\n  {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 },\n  {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 },\n  {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x1000 }, {   55, 0x0000 },\n  /* 0x7c00 */\n  {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 },\n  {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 },\n  {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 },\n  {   55, 0x0008 }, {   56, 0x0000 }, {   56, 0x0000 }, {   56, 0x0000 },\n  /* 0x7d00 */\n  {   56, 0x0000 }, {   56, 0x0000 }, {   56, 0x0000 }, {   56, 0x0000 },\n  {   56, 0x0000 }, {   56, 0x0000 }, {   56, 0x0000 }, {   56, 0x0000 },\n  {   56, 0x0800 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 },\n  {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 },\n  /* 0x7e00 */\n  {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 },\n  {   57, 0x0000 }, {   57, 0x0800 }, {   58, 0x1000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page82[16] = {\n  /* 0x8200 */\n  {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0000 },\n  {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0000 },\n  {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x8000 },\n  {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0100 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page85[17] = {\n  /* 0x8500 */\n  {   61, 0x0000 }, {   61, 0x0000 }, {   61, 0x0000 }, {   61, 0x0000 },\n  {   61, 0x0000 }, {   61, 0x8000 }, {   62, 0x0000 }, {   62, 0x0000 },\n  {   62, 0x0000 }, {   62, 0x0080 }, {   63, 0x0000 }, {   63, 0x0000 },\n  {   63, 0x0000 }, {   63, 0x0040 }, {   64, 0x0000 }, {   64, 0x0000 },\n  /* 0x8600 */\n  {   64, 0x8000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page88[10] = {\n  /* 0x8800 */\n  {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0000 },\n  {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0000 },\n  {   65, 0x8000 }, {   66, 0x0001 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page8b[9] = {\n  /* 0x8b00 */\n  {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 },\n  {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 },\n  {   67, 0x0008 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page8e[29] = {\n  /* 0x8e00 */\n  {   68, 0x0000 }, {   68, 0x0000 }, {   68, 0x0000 }, {   68, 0x0000 },\n  {   68, 0x0000 }, {   68, 0x0000 }, {   68, 0x0000 }, {   68, 0x0000 },\n  {   68, 0x0000 }, {   68, 0x0000 }, {   68, 0x0000 }, {   68, 0x0200 },\n  {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 },\n  /* 0x8f00 */\n  {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 },\n  {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 },\n  {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0080 }, {   70, 0x0000 },\n  {   70, 0x8000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page91[48] = {\n  /* 0x9100 */\n  {   71, 0x0000 }, {   71, 0x0000 }, {   71, 0x0000 }, {   71, 0x0000 },\n  {   71, 0x0000 }, {   71, 0x0000 }, {   71, 0x0000 }, {   71, 0x0000 },\n  {   71, 0x0000 }, {   71, 0x0000 }, {   71, 0x0000 }, {   71, 0x0000 },\n  {   71, 0x0000 }, {   71, 0x0000 }, {   71, 0x0000 }, {   71, 0x0040 },\n  /* 0x9200 */\n  {   72, 0x0000 }, {   72, 0x0000 }, {   72, 0x0002 }, {   73, 0x0000 },\n  {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 },\n  {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 },\n  {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 },\n  /* 0x9300 */\n  {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 },\n  {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 },\n  {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 },\n  {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0010 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page97[47] = {\n  /* 0x9700 */\n  {   74, 0x0000 }, {   74, 0x0000 }, {   74, 0x0000 }, {   74, 0x0000 },\n  {   74, 0x0000 }, {   74, 0x0020 }, {   75, 0x0000 }, {   75, 0x0000 },\n  {   75, 0x0000 }, {   75, 0x0000 }, {   75, 0x0000 }, {   75, 0x0000 },\n  {   75, 0x0000 }, {   75, 0x0000 }, {   75, 0x0000 }, {   75, 0x0000 },\n  /* 0x9800 */\n  {   75, 0x0000 }, {   75, 0x0000 }, {   75, 0x0000 }, {   75, 0x0000 },\n  {   75, 0x0000 }, {   75, 0x0000 }, {   75, 0x0100 }, {   76, 0x0000 },\n  {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 },\n  {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 },\n  /* 0x9900 */\n  {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 },\n  {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 },\n  {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 },\n  {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0001 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page9f[11] = {\n  /* 0x9f00 */\n  {   77, 0x0000 }, {   77, 0x0000 }, {   77, 0x0000 }, {   77, 0x0000 },\n  {   77, 0x0000 }, {   77, 0x0000 }, {   77, 0x0000 }, {   77, 0x0000 },\n  {   77, 0x0000 }, {   77, 0x0000 }, {   77, 0xffc0 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page214[4] = {\n  /* 0x21400 */\n  {   87, 0x0000 }, {   87, 0x0000 }, {   87, 0x0000 }, {   87, 0x8000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page219[9] = {\n  /* 0x21900 */\n  {   88, 0x0000 }, {   88, 0x0000 }, {   88, 0x0000 }, {   88, 0x0000 },\n  {   88, 0x0000 }, {   88, 0x0000 }, {   88, 0x0000 }, {   88, 0x0000 },\n  {   88, 0x0001 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page21d[12] = {\n  /* 0x21d00 */\n  {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0000 },\n  {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0000 },\n  {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0040 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page220[8] = {\n  /* 0x22000 */\n  {   90, 0x0000 }, {   90, 0x0000 }, {   90, 0x0000 }, {   90, 0x0000 },\n  {   90, 0x0000 }, {   90, 0x0000 }, {   90, 0x0000 }, {   90, 0x4000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page227[2] = {\n  /* 0x22700 */\n  {   91, 0x0000 }, {   91, 0x0004 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page232[32] = {\n  /* 0x23200 */\n  {   92, 0x0000 }, {   92, 0x0000 }, {   92, 0x0000 }, {   92, 0x0000 },\n  {   92, 0x0000 }, {   92, 0x0000 }, {   92, 0x0000 }, {   92, 0x0000 },\n  {   92, 0x0002 }, {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 },\n  {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 },\n  /* 0x23300 */\n  {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 },\n  {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 },\n  {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 },\n  {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0200 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page23c[7] = {\n  /* 0x23c00 */\n  {   94, 0x0000 }, {   94, 0x0000 }, {   94, 0x0000 }, {   94, 0x0000 },\n  {   94, 0x0000 }, {   94, 0x0000 }, {   94, 0x0008 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page241[5] = {\n  /* 0x24100 */\n  {   95, 0x0000 }, {   95, 0x0000 }, {   95, 0x0000 }, {   95, 0x0000 },\n  {   95, 0x4000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page245[1] = {\n  /* 0x24500 */\n  {   96, 0x0020 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page249[18] = {\n  /* 0x24900 */\n  {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 },\n  {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0800 },\n  {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0000 },\n  {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0000 },\n  /* 0x24a00 */\n  {   98, 0x0000 }, {   98, 0x0008 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page251[13] = {\n  /* 0x25100 */\n  {   99, 0x0000 }, {   99, 0x0000 }, {   99, 0x0000 }, {   99, 0x0000 },\n  {   99, 0x0000 }, {   99, 0x0000 }, {   99, 0x0000 }, {   99, 0x0000 },\n  {   99, 0x0000 }, {   99, 0x0000 }, {   99, 0x0000 }, {   99, 0x0000 },\n  {   99, 0x2000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page256[10] = {\n  /* 0x25600 */\n  {  100, 0x0000 }, {  100, 0x0000 }, {  100, 0x0000 }, {  100, 0x0000 },\n  {  100, 0x0000 }, {  100, 0x0000 }, {  100, 0x0000 }, {  100, 0x0000 },\n  {  100, 0x0000 }, {  100, 0x0020 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page25c[20] = {\n  /* 0x25c00 */\n  {  101, 0x0000 }, {  101, 0x0000 }, {  101, 0x0000 }, {  101, 0x0000 },\n  {  101, 0x0000 }, {  101, 0x0000 }, {  101, 0x0000 }, {  101, 0x0000 },\n  {  101, 0x0000 }, {  101, 0x0000 }, {  101, 0x0010 }, {  102, 0x0000 },\n  {  102, 0x0000 }, {  102, 0x0000 }, {  102, 0x0000 }, {  102, 0x0000 },\n  /* 0x25d00 */\n  {  102, 0x0000 }, {  102, 0x0000 }, {  102, 0x0000 }, {  102, 0x0001 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page26b[2] = {\n  /* 0x26b00 */\n  {  103, 0x0000 }, {  103, 0x0020 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page26d[8] = {\n  /* 0x26d00 */\n  {  104, 0x0000 }, {  104, 0x0000 }, {  104, 0x0000 }, {  104, 0x0000 },\n  {  104, 0x0000 }, {  104, 0x0000 }, {  104, 0x0000 }, {  104, 0x0010 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page26f[12] = {\n  /* 0x26f00 */\n  {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0000 },\n  {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0000 },\n  {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x4000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page271[1] = {\n  /* 0x27100 */\n  {  106, 0x2000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page287[1] = {\n  /* 0x28700 */\n  {  107, 0x8000 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page289[31] = {\n  /* 0x28900 */\n  {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 },\n  {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 },\n  {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 },\n  {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0008 }, {  109, 0x0000 },\n  /* 0x28a00 */\n  {  109, 0x0000 }, {  109, 0x0000 }, {  109, 0x0000 }, {  109, 0x0004 },\n  {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x0000 },\n  {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x0000 },\n  {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x0400 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page28d[12] = {\n  /* 0x28d00 */\n  {  111, 0x0000 }, {  111, 0x0000 }, {  111, 0x0000 }, {  111, 0x0000 },\n  {  111, 0x0000 }, {  111, 0x0000 }, {  111, 0x0000 }, {  111, 0x0000 },\n  {  111, 0x0000 }, {  111, 0x0000 }, {  111, 0x0000 }, {  111, 0x0200 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page299[5] = {\n  /* 0x29900 */\n  {  112, 0x0000 }, {  112, 0x0000 }, {  112, 0x0000 }, {  112, 0x0000 },\n  {  112, 0x0080 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page29c[8] = {\n  /* 0x29c00 */\n  {  113, 0x0000 }, {  113, 0x0000 }, {  113, 0x0000 }, {  113, 0x0000 },\n  {  113, 0x0000 }, {  113, 0x0000 }, {  113, 0x0000 }, {  113, 0x0008 },\n};\nstatic const Summary16 hkscs2001_uni2indx_page2a1[28] = {\n  /* 0x2a100 */\n  {  114, 0x0080 }, {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 },\n  {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 },\n  {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 },\n  {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 },\n  /* 0x2a200 */\n  {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 },\n  {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 },\n  {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0400 },\n};\n\nstatic int\nhkscs2001_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc < 0x9f00) {\n      if (wc < 0x6900) {\n        if (wc >= 0x3500 && wc < 0x3560)\n          summary = &hkscs2001_uni2indx_page35[(wc>>4)-0x350];\n        else if (wc >= 0x3c00 && wc < 0x3ee0)\n          summary = &hkscs2001_uni2indx_page3c[(wc>>4)-0x3c0];\n        else if (wc >= 0x4000 && wc < 0x4080)\n          summary = &hkscs2001_uni2indx_page40[(wc>>4)-0x400];\n        else if (wc >= 0x4200 && wc < 0x42b0)\n          summary = &hkscs2001_uni2indx_page42[(wc>>4)-0x420];\n        else if (wc >= 0x4b00 && wc < 0x4c90)\n          summary = &hkscs2001_uni2indx_page4b[(wc>>4)-0x4b0];\n        else if (wc >= 0x4e00 && wc < 0x51b0)\n          summary = &hkscs2001_uni2indx_page4e[(wc>>4)-0x4e0];\n        else if (wc >= 0x5300 && wc < 0x5440)\n          summary = &hkscs2001_uni2indx_page53[(wc>>4)-0x530];\n        else if (wc >= 0x5700 && wc < 0x58e0)\n          summary = &hkscs2001_uni2indx_page57[(wc>>4)-0x570];\n        else if (wc >= 0x5a00 && wc < 0x5fd0)\n          summary = &hkscs2001_uni2indx_page5a[(wc>>4)-0x5a0];\n        else if (wc >= 0x6100 && wc < 0x6130)\n          summary = &hkscs2001_uni2indx_page61[(wc>>4)-0x610];\n        else if (wc >= 0x6500 && wc < 0x6590)\n          summary = &hkscs2001_uni2indx_page65[(wc>>4)-0x650];\n        else if (wc >= 0x6700 && wc < 0x6770)\n          summary = &hkscs2001_uni2indx_page67[(wc>>4)-0x670];\n      } else {\n        if (wc >= 0x6900 && wc < 0x6a70)\n          summary = &hkscs2001_uni2indx_page69[(wc>>4)-0x690];\n        else if (wc >= 0x6c00 && wc < 0x6e00)\n          summary = &hkscs2001_uni2indx_page6c[(wc>>4)-0x6c0];\n        else if (wc >= 0x7000 && wc < 0x74c0)\n          summary = &hkscs2001_uni2indx_page70[(wc>>4)-0x700];\n        else if (wc >= 0x7600 && wc < 0x78f0)\n          summary = &hkscs2001_uni2indx_page76[(wc>>4)-0x760];\n        else if (wc >= 0x7a00 && wc < 0x7e70)\n          summary = &hkscs2001_uni2indx_page7a[(wc>>4)-0x7a0];\n        else if (wc >= 0x8200 && wc < 0x8300)\n          summary = &hkscs2001_uni2indx_page82[(wc>>4)-0x820];\n        else if (wc >= 0x8500 && wc < 0x8610)\n          summary = &hkscs2001_uni2indx_page85[(wc>>4)-0x850];\n        else if (wc >= 0x8800 && wc < 0x88a0)\n          summary = &hkscs2001_uni2indx_page88[(wc>>4)-0x880];\n        else if (wc >= 0x8b00 && wc < 0x8b90)\n          summary = &hkscs2001_uni2indx_page8b[(wc>>4)-0x8b0];\n        else if (wc >= 0x8e00 && wc < 0x8fd0)\n          summary = &hkscs2001_uni2indx_page8e[(wc>>4)-0x8e0];\n        else if (wc >= 0x9100 && wc < 0x9400)\n          summary = &hkscs2001_uni2indx_page91[(wc>>4)-0x910];\n        else if (wc >= 0x9700 && wc < 0x99f0)\n          summary = &hkscs2001_uni2indx_page97[(wc>>4)-0x970];\n      }\n    } else {\n      if (wc < 0x25600) {\n        if (wc >= 0x9f00 && wc < 0x9fb0)\n          summary = &hkscs2001_uni2indx_page9f[(wc>>4)-0x9f0];\n        else if (wc >= 0x21400 && wc < 0x21440)\n          summary = &hkscs2001_uni2indx_page214[(wc>>4)-0x2140];\n        else if (wc >= 0x21900 && wc < 0x21990)\n          summary = &hkscs2001_uni2indx_page219[(wc>>4)-0x2190];\n        else if (wc >= 0x21d00 && wc < 0x21dc0)\n          summary = &hkscs2001_uni2indx_page21d[(wc>>4)-0x21d0];\n        else if (wc >= 0x22000 && wc < 0x22080)\n          summary = &hkscs2001_uni2indx_page220[(wc>>4)-0x2200];\n        else if (wc >= 0x22700 && wc < 0x22720)\n          summary = &hkscs2001_uni2indx_page227[(wc>>4)-0x2270];\n        else if (wc >= 0x23200 && wc < 0x23400)\n          summary = &hkscs2001_uni2indx_page232[(wc>>4)-0x2320];\n        else if (wc >= 0x23c00 && wc < 0x23c70)\n          summary = &hkscs2001_uni2indx_page23c[(wc>>4)-0x23c0];\n        else if (wc >= 0x24100 && wc < 0x24150)\n          summary = &hkscs2001_uni2indx_page241[(wc>>4)-0x2410];\n        else if (wc >= 0x24500 && wc < 0x24510)\n          summary = &hkscs2001_uni2indx_page245[(wc>>4)-0x2450];\n        else if (wc >= 0x24900 && wc < 0x24a20)\n          summary = &hkscs2001_uni2indx_page249[(wc>>4)-0x2490];\n        else if (wc >= 0x25100 && wc < 0x251d0)\n          summary = &hkscs2001_uni2indx_page251[(wc>>4)-0x2510];\n      } else {\n        if (wc >= 0x25600 && wc < 0x256a0)\n          summary = &hkscs2001_uni2indx_page256[(wc>>4)-0x2560];\n        else if (wc >= 0x25c00 && wc < 0x25d40)\n          summary = &hkscs2001_uni2indx_page25c[(wc>>4)-0x25c0];\n        else if (wc >= 0x26b00 && wc < 0x26b20)\n          summary = &hkscs2001_uni2indx_page26b[(wc>>4)-0x26b0];\n        else if (wc >= 0x26d00 && wc < 0x26d80)\n          summary = &hkscs2001_uni2indx_page26d[(wc>>4)-0x26d0];\n        else if (wc >= 0x26f00 && wc < 0x26fc0)\n          summary = &hkscs2001_uni2indx_page26f[(wc>>4)-0x26f0];\n        else if (wc >= 0x27100 && wc < 0x27110)\n          summary = &hkscs2001_uni2indx_page271[(wc>>4)-0x2710];\n        else if (wc >= 0x28700 && wc < 0x28710)\n          summary = &hkscs2001_uni2indx_page287[(wc>>4)-0x2870];\n        else if (wc >= 0x28900 && wc < 0x28af0)\n          summary = &hkscs2001_uni2indx_page289[(wc>>4)-0x2890];\n        else if (wc >= 0x28d00 && wc < 0x28dc0)\n          summary = &hkscs2001_uni2indx_page28d[(wc>>4)-0x28d0];\n        else if (wc >= 0x29900 && wc < 0x29950)\n          summary = &hkscs2001_uni2indx_page299[(wc>>4)-0x2990];\n        else if (wc >= 0x29c00 && wc < 0x29c80)\n          summary = &hkscs2001_uni2indx_page29c[(wc>>4)-0x29c0];\n        else if (wc >= 0x2a100 && wc < 0x2a2c0)\n          summary = &hkscs2001_uni2indx_page2a1[(wc>>4)-0x2a10];\n      }\n    }\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = hkscs2001_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/hkscs2004.h",
    "content": "/*\n * Copyright (C) 1999-2006, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * HKSCS:2004\n */\n\nstatic const unsigned short hkscs2004_2uni_page87[58] = {\n  /* 0x87 */\n  0x0af0, 0x1032, 0x0d03, 0x0ca6, 0x0c78, 0x4167, 0x1177, 0x0cb3,\n  0x44b1, 0x10e2, 0x44c5, 0x0595, 0x0e36, 0x0e44, 0x1047, 0x1040,\n  0x39bf, 0x3417, 0x4252, 0x3f8b, 0x40d2, 0x1057, 0x4d51, 0x0e4f,\n  0x0cda, 0x1085, 0x446c, 0x1107, 0x0fa4, 0x0da1, 0x3d23, 0x1e25,\n  0x3c54, 0x2d63, 0x3606, 0x3761, 0x1a4d, 0x13fb, 0x28fd, 0x2195,\n  0x141d, 0x47b9, 0x06f4, 0x2534, 0x43ef, 0x16db, 0x2e5e, 0x15a4,\n  0x0125, 0x4bb0, 0x15d1, 0x16b7, 0x17fc, 0x1b6e, 0x2393, 0x4a45,\n  0x1f61, 0x1f9d,\n};\nstatic const unsigned short hkscs2004_2uni_page8c[189] = {\n  /* 0x8c */\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x2b6f, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd, 0x28fd,\n  0x28fd, 0x1ae7, 0x28fd, 0x1c57, 0x20ca, 0x0688, 0x0bc3, 0x3256,\n  0x3196, 0x0a9a, 0x0c36, 0x28fd, 0x17d5, 0x351a, 0x24f9, 0x1778,\n  0x0612, 0x3351, 0x1878, 0x27b2, 0x1d57, 0x0c58, 0x38ec, 0x2f23,\n  0x1077, 0x0478, 0x004a, 0x29a4, 0x3e41, 0x24cc, 0x12b4, 0x2a39,\n  0x14bf, 0x226c, 0x2656, 0x49fa, 0x193b,\n  /* 0x8d */\n  0x2c9f, 0x28fd, 0x30c1, 0x466d, 0x0902, 0x0dbb, 0x4879, 0x0707,\n  0x27b3, 0x4cb5, 0x08f8, 0x02d6, 0x0df7, 0x3e46, 0x097c, 0x45b2,\n  0x42ff, 0x0c6d, 0x03d4, 0x3b9a, 0x0c61, 0x0c1b, 0x1189, 0x107b,\n  0x1176, 0x0cea, 0x07c8, 0x3a0f, 0x0161, 0x0bde, 0x0bbd, 0x09ed,\n};\n\nstatic const ucs4_t hkscs2004_2uni_upages[78] = {\n  0x03400, 0x03600, 0x03700, 0x03800, 0x03900, 0x03b00, 0x03d00, 0x03f00,\n  0x04000, 0x04100, 0x04300, 0x04400, 0x04500, 0x04600, 0x04700, 0x04a00,\n  0x04c00, 0x04d00, 0x04f00, 0x05600, 0x05900, 0x05a00, 0x05b00, 0x05c00,\n  0x05d00, 0x05f00, 0x06600, 0x06700, 0x06e00, 0x07100, 0x07200, 0x07400,\n  0x07900, 0x07d00, 0x08100, 0x08500, 0x08a00, 0x09700, 0x09800, 0x09f00,\n  0x0ff00, 0x20100, 0x20200, 0x20a00, 0x20b00, 0x21a00, 0x21d00, 0x21e00,\n  0x22100, 0x22700, 0x23200, 0x23500, 0x23600, 0x23b00, 0x23e00, 0x23f00,\n  0x24000, 0x24200, 0x24b00, 0x25400, 0x25a00, 0x26b00, 0x26c00, 0x26e00,\n  0x27000, 0x27200, 0x27300, 0x27b00, 0x27c00, 0x28600, 0x28900, 0x28b00,\n  0x29000, 0x29800, 0x29900, 0x29e00, 0x2a100, 0x2a300,\n};\n\nstatic int\nhkscs2004_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 == 0x87) || (c1 >= 0x8c && c1 <= 0x8d)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n        unsigned int i = 157 * (c1 - 0x80) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n        ucs4_t wc = 0xfffd;\n        unsigned short swc;\n        if (i < 1884) {\n          if (i < 1157)\n            swc = hkscs2004_2uni_page87[i-1099],\n            wc = hkscs2004_2uni_upages[swc>>8] | (swc & 0xff);\n        } else {\n          if (i < 2073)\n            swc = hkscs2004_2uni_page8c[i-1884],\n            wc = hkscs2004_2uni_upages[swc>>8] | (swc & 0xff);\n        }\n        if (wc != 0xfffd) {\n          *pwc = wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short hkscs2004_2charset[123] = {\n  0x8cf4, 0x8770, 0x8d5c, 0x8d4b, 0x8d52, 0x8cf3, 0x874b, 0x8cea,\n  0x8cdf, 0x876a, 0x8d47, 0x8d5a, 0x8d4a, 0x8d44, 0x8d4e, 0x8d5f,\n  0x8ce3, 0x8740, 0x8d5e, 0x8ce0, 0x8d5d, 0x8d55, 0x8ce4, 0x8cef,\n  0x8d54, 0x8d51, 0x8744, 0x8743, 0x8747, 0x8758, 0x8d59, 0x8742,\n  0x875d, 0x8d45, 0x8d4c, 0x874c, 0x874d, 0x8757, 0x875c, 0x8741,\n  0x874f, 0x874e, 0x8755, 0x8cf2, 0x8d57, 0x8759, 0x8749, 0x875b,\n  0x8d58, 0x8746, 0x8d56, 0x8cf8, 0x8765, 0x8768, 0x8cfa, 0x876f,\n  0x8772, 0x8773, 0x876d, 0x8ce9, 0x8ce6, 0x8774, 0x8cec, 0x8cfe,\n  0x8764, 0x8cdb, 0x8775, 0x8cdd, 0x8cee, 0x875f, 0x8778, 0x8779,\n  0x8cde, 0x8767, 0x8cfb, 0x8776, 0x8cf7, 0x8ce8, 0x876b, 0x8cfc,\n  0x8ced, 0x8d48, 0x8cf5, 0x8cf9, 0x8c62, 0x8d40, 0x8761, 0x876e,\n  0x8cf1, 0x8d42, 0x8ce2, 0x8ce1, 0x8ceb, 0x8751, 0x8ce7, 0x8762,\n  0x8763, 0x8cf0, 0x8750, 0x8d5b, 0x8d53, 0x8760, 0x875e, 0x8cf6,\n  0x8d4d, 0x8753, 0x8754, 0x8745, 0x8752, 0x8d50, 0x876c, 0x875a,\n  0x8748, 0x874a, 0x8d4f, 0x8d43, 0x8769, 0x8d46, 0x8cfd, 0x8777,\n  0x8771, 0x8d49, 0x8756,\n};\n\nstatic const Summary16 hkscs2004_uni2indx_page34[5] = {\n  /* 0x3400 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0400 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page36[56] = {\n  /* 0x3600 */\n  {    1, 0x0000 }, {    1, 0x0000 }, {    1, 0x0020 }, {    2, 0x0000 },\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0002 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  /* 0x3700 */\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0040 }, {    4, 0x0000 }, {    4, 0x0000 },\n  /* 0x3800 */\n  {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0000 },\n  {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0000 },\n  {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0000 },\n  {    4, 0x0000 }, {    4, 0x0010 }, {    5, 0x0000 }, {    5, 0x0000 },\n  /* 0x3900 */\n  {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0000 },\n  {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0100 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page3b[10] = {\n  /* 0x3b00 */\n  {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 },\n  {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 },\n  {    6, 0x0000 }, {    6, 0x0020 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page3d[16] = {\n  /* 0x3d00 */\n  {    7, 0x0000 }, {    7, 0x0004 }, {    8, 0x0000 }, {    8, 0x0000 },\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 },\n  {    8, 0x0100 }, {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 },\n  {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0010 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page3f[47] = {\n  /* 0x3f00 */\n  {   10, 0x0080 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0100 }, {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x0000 },\n  /* 0x4000 */\n  {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x0000 },\n  {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x0000 },\n  {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x0000 },\n  {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x0100 },\n  /* 0x4100 */\n  {   13, 0x0004 }, {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 },\n  {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x1000 },\n  {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0000 },\n  {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x2000 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page43[69] = {\n  /* 0x4300 */\n  {   16, 0x0000 }, {   16, 0x0000 }, {   16, 0x0000 }, {   16, 0x0000 },\n  {   16, 0x0000 }, {   16, 0x0000 }, {   16, 0x0000 }, {   16, 0x0000 },\n  {   16, 0x0000 }, {   16, 0x0400 }, {   17, 0x0000 }, {   17, 0x0000 },\n  {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0001 },\n  /* 0x4400 */\n  {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 },\n  {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 },\n  {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x2000 },\n  {   19, 0x0008 }, {   20, 0x4000 }, {   21, 0x0000 }, {   21, 0x0000 },\n  /* 0x4500 */\n  {   21, 0x0000 }, {   21, 0x0800 }, {   22, 0x0000 }, {   22, 0x0040 },\n  {   23, 0x0000 }, {   23, 0x0100 }, {   24, 0x2002 }, {   26, 0x0100 },\n  {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0040 }, {   28, 0x0008 },\n  {   29, 0x0000 }, {   29, 0x0400 }, {   30, 0x0400 }, {   31, 0x0000 },\n  /* 0x4600 */\n  {   31, 0x0008 }, {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 },\n  {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 },\n  {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0002 }, {   33, 0x0800 },\n  {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0080 },\n  /* 0x4700 */\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0040 },\n  {   36, 0x8010 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page4a[11] = {\n  /* 0x4a00 */\n  {   38, 0x0000 }, {   38, 0x0000 }, {   38, 0x0000 }, {   38, 0x0000 },\n  {   38, 0x0000 }, {   38, 0x0000 }, {   38, 0x0000 }, {   38, 0x0000 },\n  {   38, 0x0000 }, {   38, 0x0000 }, {   38, 0x0010 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page4c[25] = {\n  /* 0x4c00 */\n  {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x0004 },\n  {   40, 0x0081 }, {   42, 0x0080 }, {   43, 0x0000 }, {   43, 0x0880 },\n  {   45, 0x0020 }, {   46, 0x0000 }, {   46, 0x0000 }, {   46, 0x0000 },\n  {   46, 0x0000 }, {   46, 0x0000 }, {   46, 0x0004 }, {   47, 0x0000 },\n  /* 0x4d00 */\n  {   47, 0x0080 }, {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x0000 },\n  {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x00c0 },\n  {   50, 0x0200 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page4f[12] = {\n  /* 0x4f00 */\n  {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0000 },\n  {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0000 },\n  {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0000 }, {   51, 0x0010 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page56[16] = {\n  /* 0x5600 */\n  {   52, 0x0000 }, {   52, 0x0000 }, {   52, 0x0000 }, {   52, 0x0000 },\n  {   52, 0x0000 }, {   52, 0x0000 }, {   52, 0x0000 }, {   52, 0x0000 },\n  {   52, 0x0000 }, {   52, 0x0000 }, {   52, 0x0000 }, {   52, 0x0000 },\n  {   52, 0x0000 }, {   52, 0x0000 }, {   52, 0x0000 }, {   52, 0x0800 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page59[72] = {\n  /* 0x5900 */\n  {   53, 0x0000 }, {   53, 0x2000 }, {   54, 0x0000 }, {   54, 0x0000 },\n  {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 },\n  {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x8000 },\n  {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 },\n  /* 0x5a00 */\n  {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 },\n  {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 },\n  {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0010 }, {   56, 0x0000 },\n  {   56, 0x0000 }, {   56, 0x0002 }, {   57, 0x0000 }, {   57, 0x0000 },\n  /* 0x5b00 */\n  {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 },\n  {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 },\n  {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0080 },\n  {   58, 0x0000 }, {   58, 0x0800 }, {   59, 0x0000 }, {   59, 0x0000 },\n  /* 0x5c00 */\n  {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0000 },\n  {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0100 },\n  {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0000 },\n  {   60, 0x0000 }, {   60, 0x0020 }, {   61, 0x0000 }, {   61, 0x1000 },\n  /* 0x5d00 */\n  {   62, 0x0000 }, {   62, 0x0000 }, {   62, 0x0000 }, {   62, 0x0000 },\n  {   62, 0x0000 }, {   62, 0x0000 }, {   62, 0x0000 }, {   62, 0x0100 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page5f[4] = {\n  /* 0x5f00 */\n  {   63, 0x0000 }, {   63, 0x0000 }, {   63, 0x0000 }, {   63, 0x0800 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page66[23] = {\n  /* 0x6600 */\n  {   64, 0x0000 }, {   64, 0x0000 }, {   64, 0x0000 }, {   64, 0x0000 },\n  {   64, 0x2000 }, {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0000 },\n  {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0000 },\n  {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0080 }, {   66, 0x0000 },\n  /* 0x6700 */\n  {   66, 0x0000 }, {   66, 0x0000 }, {   66, 0x0000 }, {   66, 0x0000 },\n  {   66, 0x0000 }, {   66, 0x0000 }, {   66, 0x4000 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page6e[6] = {\n  /* 0x6e00 */\n  {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 },\n  {   67, 0x0000 }, {   67, 0x0080 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page71[19] = {\n  /* 0x7100 */\n  {   68, 0x0000 }, {   68, 0x0000 }, {   68, 0x0000 }, {   68, 0x0000 },\n  {   68, 0x0000 }, {   68, 0x0080 }, {   69, 0x0000 }, {   69, 0x0000 },\n  {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 },\n  {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 },\n  /* 0x7200 */\n  {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0020 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page74[10] = {\n  /* 0x7400 */\n  {   70, 0x0000 }, {   70, 0x0000 }, {   70, 0x0000 }, {   70, 0x0000 },\n  {   70, 0x0000 }, {   70, 0x0000 }, {   70, 0x0002 }, {   71, 0x0000 },\n  {   71, 0x0000 }, {   71, 0x2000 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page79[13] = {\n  /* 0x7900 */\n  {   72, 0x0000 }, {   72, 0x0000 }, {   72, 0x0000 }, {   72, 0x0000 },\n  {   72, 0x0000 }, {   72, 0x0000 }, {   72, 0x0000 }, {   72, 0x0000 },\n  {   72, 0x0000 }, {   72, 0x0000 }, {   72, 0x0000 }, {   72, 0x0000 },\n  {   72, 0x0400 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page7d[10] = {\n  /* 0x7d00 */\n  {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 },\n  {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 }, {   73, 0x0000 },\n  {   73, 0x0000 }, {   73, 0x0020 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page81[7] = {\n  /* 0x8100 */\n  {   74, 0x0000 }, {   74, 0x0000 }, {   74, 0x0000 }, {   74, 0x0000 },\n  {   74, 0x0000 }, {   74, 0x0000 }, {   74, 0x1000 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page85[10] = {\n  /* 0x8500 */\n  {   75, 0x0000 }, {   75, 0x0000 }, {   75, 0x0000 }, {   75, 0x0000 },\n  {   75, 0x0000 }, {   75, 0x0000 }, {   75, 0x0000 }, {   75, 0x0000 },\n  {   75, 0x0000 }, {   75, 0x0008 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page8a[16] = {\n  /* 0x8a00 */\n  {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 },\n  {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 },\n  {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 }, {   76, 0x0000 },\n  {   76, 0x1000 }, {   77, 0x0000 }, {   77, 0x0000 }, {   77, 0x0200 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page97[22] = {\n  /* 0x9700 */\n  {   78, 0x0000 }, {   78, 0x0000 }, {   78, 0x0000 }, {   78, 0x0010 },\n  {   79, 0x0000 }, {   79, 0x0000 }, {   79, 0x0000 }, {   79, 0x0000 },\n  {   79, 0x0000 }, {   79, 0x0000 }, {   79, 0x0000 }, {   79, 0x0000 },\n  {   79, 0x0000 }, {   79, 0x0000 }, {   79, 0x0000 }, {   79, 0x0000 },\n  /* 0x9800 */\n  {   79, 0x0000 }, {   79, 0x0000 }, {   79, 0x0000 }, {   79, 0x0000 },\n  {   79, 0x0000 }, {   79, 0x0040 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page9f[12] = {\n  /* 0x9f00 */\n  {   80, 0x0000 }, {   80, 0x0000 }, {   80, 0x0000 }, {   80, 0x0000 },\n  {   80, 0x0000 }, {   80, 0x0000 }, {   80, 0x0000 }, {   80, 0x0000 },\n  {   80, 0x0000 }, {   80, 0x0000 }, {   80, 0x0000 }, {   80, 0x000c },\n};\nstatic const Summary16 hkscs2004_uni2indx_page201[20] = {\n  /* 0x20100 */\n  {   82, 0x0000 }, {   82, 0x0000 }, {   82, 0x0000 }, {   82, 0x0000 },\n  {   82, 0x0000 }, {   82, 0x0000 }, {   82, 0x0000 }, {   82, 0x0000 },\n  {   82, 0x0000 }, {   82, 0x0000 }, {   82, 0x0010 }, {   83, 0x0000 },\n  {   83, 0x0000 }, {   83, 0x0000 }, {   83, 0x0000 }, {   83, 0x0000 },\n  /* 0x20200 */\n  {   83, 0x0000 }, {   83, 0x0000 }, {   83, 0x0000 }, {   83, 0x0200 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page20a[26] = {\n  /* 0x20a00 */\n  {   84, 0x0000 }, {   84, 0x0000 }, {   84, 0x0000 }, {   84, 0x0000 },\n  {   84, 0x0000 }, {   84, 0x0000 }, {   84, 0x8000 }, {   85, 0x0000 },\n  {   85, 0x0000 }, {   85, 0x0000 }, {   85, 0x0000 }, {   85, 0x0000 },\n  {   85, 0x0000 }, {   85, 0x0000 }, {   85, 0x0000 }, {   85, 0x0000 },\n  /* 0x20b00 */\n  {   85, 0x0000 }, {   85, 0x0000 }, {   85, 0x0000 }, {   85, 0x0000 },\n  {   85, 0x0000 }, {   85, 0x0000 }, {   85, 0x0000 }, {   85, 0x0000 },\n  {   85, 0x0000 }, {   85, 0x8000 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page21a[7] = {\n  /* 0x21a00 */\n  {   86, 0x0000 }, {   86, 0x0000 }, {   86, 0x0000 }, {   86, 0x0000 },\n  {   86, 0x0000 }, {   86, 0x0000 }, {   86, 0x0008 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page21d[19] = {\n  /* 0x21d00 */\n  {   87, 0x0000 }, {   87, 0x0000 }, {   87, 0x0000 }, {   87, 0x0000 },\n  {   87, 0x0000 }, {   87, 0x4000 }, {   88, 0x0000 }, {   88, 0x0000 },\n  {   88, 0x0000 }, {   88, 0x0000 }, {   88, 0x0000 }, {   88, 0x0000 },\n  {   88, 0x0000 }, {   88, 0x0000 }, {   88, 0x0000 }, {   88, 0x0000 },\n  /* 0x21e00 */\n  {   88, 0x0000 }, {   88, 0x0000 }, {   88, 0x0008 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page221[13] = {\n  /* 0x22100 */\n  {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0000 },\n  {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0000 },\n  {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0000 }, {   89, 0x0000 },\n  {   89, 0x0002 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page227[10] = {\n  /* 0x22700 */\n  {   90, 0x0000 }, {   90, 0x0000 }, {   90, 0x0000 }, {   90, 0x0000 },\n  {   90, 0x0000 }, {   90, 0x0000 }, {   90, 0x0000 }, {   90, 0x0000 },\n  {   90, 0x0000 }, {   90, 0x0040 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page232[6] = {\n  /* 0x23200 */\n  {   91, 0x0000 }, {   91, 0x0000 }, {   91, 0x0000 }, {   91, 0x0000 },\n  {   91, 0x0000 }, {   91, 0x0040 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page235[18] = {\n  /* 0x23500 */\n  {   92, 0x0000 }, {   92, 0x0000 }, {   92, 0x0000 }, {   92, 0x0000 },\n  {   92, 0x0000 }, {   92, 0x0002 }, {   93, 0x0000 }, {   93, 0x0000 },\n  {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 },\n  {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 }, {   93, 0x0000 },\n  /* 0x23600 */\n  {   93, 0x0000 }, {   93, 0x0080 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page23b[2] = {\n  /* 0x23b00 */\n  {   94, 0x0000 }, {   94, 0x0400 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page23e[47] = {\n  /* 0x23e00 */\n  {   95, 0x0040 }, {   96, 0x0000 }, {   96, 0x0000 }, {   96, 0x0000 },\n  {   96, 0x0000 }, {   96, 0x0000 }, {   96, 0x0000 }, {   96, 0x0000 },\n  {   96, 0x0000 }, {   96, 0x0000 }, {   96, 0x0000 }, {   96, 0x0000 },\n  {   96, 0x0000 }, {   96, 0x0000 }, {   96, 0x0000 }, {   96, 0x0000 },\n  /* 0x23f00 */\n  {   96, 0x0000 }, {   96, 0x0000 }, {   96, 0x0000 }, {   96, 0x0000 },\n  {   96, 0x0000 }, {   96, 0x0000 }, {   96, 0x0002 }, {   97, 0x0000 },\n  {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 },\n  {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 },\n  /* 0x24000 */\n  {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 },\n  {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 },\n  {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x0000 },\n  {   97, 0x0000 }, {   97, 0x0000 }, {   97, 0x1000 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page242[12] = {\n  /* 0x24200 */\n  {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0000 },\n  {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0000 },\n  {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x0000 }, {   98, 0x8000 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page24b[1] = {\n  /* 0x24b00 */\n  {   99, 0x8000 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page254[10] = {\n  /* 0x25400 */\n  {  100, 0x0000 }, {  100, 0x0000 }, {  100, 0x0000 }, {  100, 0x0000 },\n  {  100, 0x0000 }, {  100, 0x0000 }, {  100, 0x0000 }, {  100, 0x0000 },\n  {  100, 0x0000 }, {  100, 0x0400 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page25a[6] = {\n  /* 0x25a00 */\n  {  101, 0x0000 }, {  101, 0x0000 }, {  101, 0x0000 }, {  101, 0x0000 },\n  {  101, 0x0000 }, {  101, 0x0010 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page26b[21] = {\n  /* 0x26b00 */\n  {  102, 0x0000 }, {  102, 0x0000 }, {  102, 0x0008 }, {  103, 0x0000 },\n  {  103, 0x0000 }, {  103, 0x0000 }, {  103, 0x0000 }, {  103, 0x0000 },\n  {  103, 0x0000 }, {  103, 0x0000 }, {  103, 0x0000 }, {  103, 0x0000 },\n  {  103, 0x0000 }, {  103, 0x0000 }, {  103, 0x0000 }, {  103, 0x0000 },\n  /* 0x26c00 */\n  {  103, 0x0000 }, {  103, 0x0000 }, {  103, 0x0000 }, {  103, 0x0000 },\n  {  103, 0x0042 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page26e[9] = {\n  /* 0x26e00 */\n  {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0000 },\n  {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0000 },\n  {  105, 0x0800 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page270[14] = {\n  /* 0x27000 */\n  {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x0000 },\n  {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x0000 },\n  {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x0000 },\n  {  106, 0x0000 }, {  106, 0x0004 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page272[32] = {\n  /* 0x27200 */\n  {  107, 0x0000 }, {  107, 0x0000 }, {  107, 0x0000 }, {  107, 0x0000 },\n  {  107, 0x0000 }, {  107, 0x0000 }, {  107, 0x0080 }, {  108, 0x0000 },\n  {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 },\n  {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 },\n  /* 0x27300 */\n  {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 }, {  108, 0x0000 },\n  {  108, 0x0000 }, {  108, 0x0004 }, {  109, 0x0000 }, {  109, 0x0000 },\n  {  109, 0x0000 }, {  109, 0x0000 }, {  109, 0x0000 }, {  109, 0x0000 },\n  {  109, 0x0000 }, {  109, 0x0000 }, {  109, 0x0000 }, {  109, 0x8000 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page27b[29] = {\n  /* 0x27b00 */\n  {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x0000 },\n  {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x0000 },\n  {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x0000 },\n  {  110, 0x0000 }, {  110, 0x0000 }, {  110, 0x8000 }, {  111, 0x0000 },\n  /* 0x27c00 */\n  {  111, 0x0000 }, {  111, 0x0000 }, {  111, 0x0000 }, {  111, 0x0000 },\n  {  111, 0x0000 }, {  111, 0x0000 }, {  111, 0x1000 }, {  112, 0x0000 },\n  {  112, 0x0000 }, {  112, 0x0000 }, {  112, 0x0000 }, {  112, 0x0002 },\n  {  113, 0x0020 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page286[12] = {\n  /* 0x28600 */\n  {  114, 0x0000 }, {  114, 0x0000 }, {  114, 0x0000 }, {  114, 0x0000 },\n  {  114, 0x0000 }, {  114, 0x0000 }, {  114, 0x0000 }, {  114, 0x0000 },\n  {  114, 0x0000 }, {  114, 0x0000 }, {  114, 0x0000 }, {  114, 0x0004 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page289[7] = {\n  /* 0x28900 */\n  {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x0000 },\n  {  115, 0x0000 }, {  115, 0x0000 }, {  115, 0x2000 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page28b[12] = {\n  /* 0x28b00 */\n  {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0000 },\n  {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0000 },\n  {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0200 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page290[8] = {\n  /* 0x29000 */\n  {  117, 0x0000 }, {  117, 0x0000 }, {  117, 0x0000 }, {  117, 0x0000 },\n  {  117, 0x0000 }, {  117, 0x0000 }, {  117, 0x0000 }, {  117, 0x0200 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page298[21] = {\n  /* 0x29800 */\n  {  118, 0x0000 }, {  118, 0x0000 }, {  118, 0x0000 }, {  118, 0x0000 },\n  {  118, 0x0000 }, {  118, 0x0000 }, {  118, 0x0000 }, {  118, 0x0000 },\n  {  118, 0x0000 }, {  118, 0x0000 }, {  118, 0x0000 }, {  118, 0x0000 },\n  {  118, 0x0000 }, {  118, 0x0000 }, {  118, 0x0000 }, {  118, 0x0400 },\n  /* 0x29900 */\n  {  119, 0x0000 }, {  119, 0x0000 }, {  119, 0x0000 }, {  119, 0x0000 },\n  {  119, 0x0020 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page29e[12] = {\n  /* 0x29e00 */\n  {  120, 0x0000 }, {  120, 0x0000 }, {  120, 0x0000 }, {  120, 0x0000 },\n  {  120, 0x0000 }, {  120, 0x0000 }, {  120, 0x0000 }, {  120, 0x0000 },\n  {  120, 0x0000 }, {  120, 0x0000 }, {  120, 0x0000 }, {  120, 0x0001 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page2a1[12] = {\n  /* 0x2a100 */\n  {  121, 0x0000 }, {  121, 0x0000 }, {  121, 0x0000 }, {  121, 0x0000 },\n  {  121, 0x0000 }, {  121, 0x0000 }, {  121, 0x0000 }, {  121, 0x0000 },\n  {  121, 0x0000 }, {  121, 0x0000 }, {  121, 0x0000 }, {  121, 0x0020 },\n};\nstatic const Summary16 hkscs2004_uni2indx_page2a3[6] = {\n  /* 0x2a300 */\n  {  122, 0x0000 }, {  122, 0x0000 }, {  122, 0x0000 }, {  122, 0x0000 },\n  {  122, 0x0000 }, {  122, 0x0002 },\n};\n\nstatic int\nhkscs2004_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc < 0x21a00) {\n      if (wc < 0x6e00) {\n        if (wc >= 0x3400 && wc < 0x3450)\n          summary = &hkscs2004_uni2indx_page34[(wc>>4)-0x340];\n        else if (wc >= 0x3600 && wc < 0x3980)\n          summary = &hkscs2004_uni2indx_page36[(wc>>4)-0x360];\n        else if (wc >= 0x3b00 && wc < 0x3ba0)\n          summary = &hkscs2004_uni2indx_page3b[(wc>>4)-0x3b0];\n        else if (wc >= 0x3d00 && wc < 0x3e00)\n          summary = &hkscs2004_uni2indx_page3d[(wc>>4)-0x3d0];\n        else if (wc >= 0x3f00 && wc < 0x41f0)\n          summary = &hkscs2004_uni2indx_page3f[(wc>>4)-0x3f0];\n        else if (wc >= 0x4300 && wc < 0x4750)\n          summary = &hkscs2004_uni2indx_page43[(wc>>4)-0x430];\n        else if (wc >= 0x4a00 && wc < 0x4ab0)\n          summary = &hkscs2004_uni2indx_page4a[(wc>>4)-0x4a0];\n        else if (wc >= 0x4c00 && wc < 0x4d90)\n          summary = &hkscs2004_uni2indx_page4c[(wc>>4)-0x4c0];\n        else if (wc >= 0x4f00 && wc < 0x4fc0)\n          summary = &hkscs2004_uni2indx_page4f[(wc>>4)-0x4f0];\n        else if (wc >= 0x5600 && wc < 0x5700)\n          summary = &hkscs2004_uni2indx_page56[(wc>>4)-0x560];\n        else if (wc >= 0x5900 && wc < 0x5d80)\n          summary = &hkscs2004_uni2indx_page59[(wc>>4)-0x590];\n        else if (wc >= 0x5f00 && wc < 0x5f40)\n          summary = &hkscs2004_uni2indx_page5f[(wc>>4)-0x5f0];\n        else if (wc >= 0x6600 && wc < 0x6770)\n          summary = &hkscs2004_uni2indx_page66[(wc>>4)-0x660];\n      } else {\n        if (wc >= 0x6e00 && wc < 0x6e60)\n          summary = &hkscs2004_uni2indx_page6e[(wc>>4)-0x6e0];\n        else if (wc >= 0x7100 && wc < 0x7230)\n          summary = &hkscs2004_uni2indx_page71[(wc>>4)-0x710];\n        else if (wc >= 0x7400 && wc < 0x74a0)\n          summary = &hkscs2004_uni2indx_page74[(wc>>4)-0x740];\n        else if (wc >= 0x7900 && wc < 0x79d0)\n          summary = &hkscs2004_uni2indx_page79[(wc>>4)-0x790];\n        else if (wc >= 0x7d00 && wc < 0x7da0)\n          summary = &hkscs2004_uni2indx_page7d[(wc>>4)-0x7d0];\n        else if (wc >= 0x8100 && wc < 0x8170)\n          summary = &hkscs2004_uni2indx_page81[(wc>>4)-0x810];\n        else if (wc >= 0x8500 && wc < 0x85a0)\n          summary = &hkscs2004_uni2indx_page85[(wc>>4)-0x850];\n        else if (wc >= 0x8a00 && wc < 0x8b00)\n          summary = &hkscs2004_uni2indx_page8a[(wc>>4)-0x8a0];\n        else if (wc >= 0x9700 && wc < 0x9860)\n          summary = &hkscs2004_uni2indx_page97[(wc>>4)-0x970];\n        else if (wc >= 0x9f00 && wc < 0x9fc0)\n          summary = &hkscs2004_uni2indx_page9f[(wc>>4)-0x9f0];\n        else if (wc >= 0x20100 && wc < 0x20240)\n          summary = &hkscs2004_uni2indx_page201[(wc>>4)-0x2010];\n        else if (wc >= 0x20a00 && wc < 0x20ba0)\n          summary = &hkscs2004_uni2indx_page20a[(wc>>4)-0x20a0];\n      }\n    } else {\n      if (wc < 0x26b00) {\n        if (wc >= 0x21a00 && wc < 0x21a70)\n          summary = &hkscs2004_uni2indx_page21a[(wc>>4)-0x21a0];\n        else if (wc >= 0x21d00 && wc < 0x21e30)\n          summary = &hkscs2004_uni2indx_page21d[(wc>>4)-0x21d0];\n        else if (wc >= 0x22100 && wc < 0x221d0)\n          summary = &hkscs2004_uni2indx_page221[(wc>>4)-0x2210];\n        else if (wc >= 0x22700 && wc < 0x227a0)\n          summary = &hkscs2004_uni2indx_page227[(wc>>4)-0x2270];\n        else if (wc >= 0x23200 && wc < 0x23260)\n          summary = &hkscs2004_uni2indx_page232[(wc>>4)-0x2320];\n        else if (wc >= 0x23500 && wc < 0x23620)\n          summary = &hkscs2004_uni2indx_page235[(wc>>4)-0x2350];\n        else if (wc >= 0x23b00 && wc < 0x23b20)\n          summary = &hkscs2004_uni2indx_page23b[(wc>>4)-0x23b0];\n        else if (wc >= 0x23e00 && wc < 0x240f0)\n          summary = &hkscs2004_uni2indx_page23e[(wc>>4)-0x23e0];\n        else if (wc >= 0x24200 && wc < 0x242c0)\n          summary = &hkscs2004_uni2indx_page242[(wc>>4)-0x2420];\n        else if (wc >= 0x24b00 && wc < 0x24b10)\n          summary = &hkscs2004_uni2indx_page24b[(wc>>4)-0x24b0];\n        else if (wc >= 0x25400 && wc < 0x254a0)\n          summary = &hkscs2004_uni2indx_page254[(wc>>4)-0x2540];\n        else if (wc >= 0x25a00 && wc < 0x25a60)\n          summary = &hkscs2004_uni2indx_page25a[(wc>>4)-0x25a0];\n      } else {\n        if (wc >= 0x26b00 && wc < 0x26c50)\n          summary = &hkscs2004_uni2indx_page26b[(wc>>4)-0x26b0];\n        else if (wc >= 0x26e00 && wc < 0x26e90)\n          summary = &hkscs2004_uni2indx_page26e[(wc>>4)-0x26e0];\n        else if (wc >= 0x27000 && wc < 0x270e0)\n          summary = &hkscs2004_uni2indx_page270[(wc>>4)-0x2700];\n        else if (wc >= 0x27200 && wc < 0x27400)\n          summary = &hkscs2004_uni2indx_page272[(wc>>4)-0x2720];\n        else if (wc >= 0x27b00 && wc < 0x27cd0)\n          summary = &hkscs2004_uni2indx_page27b[(wc>>4)-0x27b0];\n        else if (wc >= 0x28600 && wc < 0x286c0)\n          summary = &hkscs2004_uni2indx_page286[(wc>>4)-0x2860];\n        else if (wc >= 0x28900 && wc < 0x28970)\n          summary = &hkscs2004_uni2indx_page289[(wc>>4)-0x2890];\n        else if (wc >= 0x28b00 && wc < 0x28bc0)\n          summary = &hkscs2004_uni2indx_page28b[(wc>>4)-0x28b0];\n        else if (wc >= 0x29000 && wc < 0x29080)\n          summary = &hkscs2004_uni2indx_page290[(wc>>4)-0x2900];\n        else if (wc >= 0x29800 && wc < 0x29950)\n          summary = &hkscs2004_uni2indx_page298[(wc>>4)-0x2980];\n        else if (wc >= 0x29e00 && wc < 0x29ec0)\n          summary = &hkscs2004_uni2indx_page29e[(wc>>4)-0x29e0];\n        else if (wc >= 0x2a100 && wc < 0x2a1c0)\n          summary = &hkscs2004_uni2indx_page2a1[(wc>>4)-0x2a10];\n        else if (wc >= 0x2a300 && wc < 0x2a360)\n          summary = &hkscs2004_uni2indx_page2a3[(wc>>4)-0x2a30];\n      }\n    }\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = hkscs2004_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/hkscs2008.h",
    "content": "/*\n * Copyright (C) 1999-2010, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * HKSCS:2008\n */\n\nstatic const unsigned short hkscs2008_2uni_page87[126] = {\n  /* 0x87 */\n  0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd,\n  0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd,\n  0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd,\n  0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd,\n  0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd,\n  0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd,\n  0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd, 0x22fd,\n  0x22fd, 0x22fd, 0x0175, 0x2453, 0x299e, 0x2d21, 0x03ec, 0x2bde,\n  0x02f5, 0x16fc, 0x2197, 0x2a61, 0x300d, 0x26ea, 0x238a, 0x275e,\n  0x060a, 0x1884, 0x2196, 0x1f2f, 0x0930, 0x1a13, 0x0d96, 0x204a,\n  0x1e18, 0x15d0, 0x1632, 0x0f60, 0x1129, 0x1b9d, 0x144c, 0x17c5,\n  0x1082, 0x162c, 0x0a4f, 0x1d46, 0x00e6, 0x13c4, 0x2cb9, 0x14c6,\n  0x21c7, 0x0cb3, 0x092f, 0x0b4c, 0x0531, 0x298e, 0x0d18, 0x1672,\n  0x2f65, 0x1c8f, 0x08ae, 0x2e88, 0x0581, 0x2c99, 0x17ae, 0x25bc,\n  0x21c8, 0x25c1, 0x25c9, 0x25cc, 0x21c9, 0x1904, 0x28bb, 0x04b4,\n  0x21ca, 0x07e1, 0x31ff, 0x0ec1, 0x126e, 0x21cb,\n};\n\nstatic const ucs4_t hkscs2008_2uni_upages[50] = {\n  0x03400, 0x03800, 0x03a00, 0x03e00, 0x04000, 0x04100, 0x04300, 0x04400,\n  0x04600, 0x04900, 0x05200, 0x05400, 0x05700, 0x05800, 0x06200, 0x06600,\n  0x06700, 0x06a00, 0x07000, 0x07300, 0x07400, 0x07900, 0x07a00, 0x07b00,\n  0x08400, 0x08500, 0x08600, 0x08800, 0x08b00, 0x09000, 0x09200, 0x09400,\n  0x09700, 0x09f00, 0x0ff00, 0x20a00, 0x21d00, 0x22400, 0x23100, 0x23200,\n  0x23500, 0x23600, 0x24100, 0x25800, 0x25d00, 0x26000, 0x26e00, 0x27b00,\n  0x28900, 0x2ad00,\n};\n\nstatic int\nhkscs2008_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 == 0x87)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {\n        unsigned int i = 157 * (c1 - 0x80) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));\n        ucs4_t wc = 0xfffd;\n        unsigned short swc;\n        {\n          if (i < 1225)\n            swc = hkscs2008_2uni_page87[i-1099],\n            wc = hkscs2008_2uni_upages[swc>>8] | (swc & 0xff);\n        }\n        if (wc != 0xfffd) {\n          *pwc = wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short hkscs2008_2charset[68] = {\n  0x87be, 0x877a, 0x87a2, 0x877e, 0x87d9, 0x87c6, 0x87ce, 0x87aa,\n  0x87db, 0x87cc, 0x87c4, 0x87ae, 0x87bc, 0x87c5, 0x87c3, 0x87c8,\n  0x87b0, 0x87dd, 0x87b5, 0x87ba, 0x87b6, 0x87de, 0x87bf, 0x87b8,\n  0x87c1, 0x87b3, 0x87bb, 0x87b4, 0x87c9, 0x87a3, 0x87d0, 0x87b9,\n  0x87ab, 0x87d7, 0x87af, 0x87b7, 0x87cb, 0x87bd, 0x87b2, 0x87ad,\n  0x87b1, 0x87ac, 0x87a4, 0x87c2, 0x87d2, 0x87d6, 0x87da, 0x87df,\n  0x87a8, 0x877b, 0x87d1, 0x87d3, 0x87d4, 0x87d5, 0x87a7, 0x87a9,\n  0x87d8, 0x87c7, 0x877c, 0x87a5, 0x87a1, 0x87cf, 0x87c0, 0x877d,\n  0x87cd, 0x87ca, 0x87a6, 0x87dc,\n};\n\nstatic const Summary16 hkscs2008_uni2indx_page34[15] = {\n  /* 0x3400 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0040 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page38[8] = {\n  /* 0x3800 */\n  {    1, 0x0000 }, {    1, 0x0000 }, {    1, 0x0000 }, {    1, 0x0000 },\n  {    1, 0x0000 }, {    1, 0x0000 }, {    1, 0x0000 }, {    1, 0x0020 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page3a[16] = {\n  /* 0x3a00 */\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 },\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 },\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 },\n  {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0000 }, {    2, 0x0020 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page3e[15] = {\n  /* 0x3e00 */\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x0000 },\n  {    3, 0x0000 }, {    3, 0x0000 }, {    3, 0x1000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page40[25] = {\n  /* 0x4000 */\n  {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0000 },\n  {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0000 },\n  {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0000 }, {    4, 0x0010 },\n  {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0000 },\n  /* 0x4100 */\n  {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0000 }, {    5, 0x0002 },\n  {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 }, {    6, 0x0000 },\n  {    6, 0x0002 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page43[31] = {\n  /* 0x4300 */\n  {    7, 0x0400 }, {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 },\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 },\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 },\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 },\n  /* 0x4400 */\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 },\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 },\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0000 },\n  {    8, 0x0000 }, {    8, 0x0000 }, {    8, 0x0002 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page46[11] = {\n  /* 0x4600 */\n  {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 },\n  {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x0000 },\n  {    9, 0x0000 }, {    9, 0x0000 }, {    9, 0x4000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page49[4] = {\n  /* 0x4900 */\n  {   10, 0x0000 }, {   10, 0x0000 }, {   10, 0x8000 }, {   11, 0x0001 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page52[5] = {\n  /* 0x5200 */\n  {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x0000 }, {   12, 0x0000 },\n  {   12, 0x8000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page54[5] = {\n  /* 0x5400 */\n  {   13, 0x0000 }, {   13, 0x0000 }, {   13, 0x0000 }, {   13, 0x0000 },\n  {   13, 0x1000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page57[26] = {\n  /* 0x5700 */\n  {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 },\n  {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 },\n  {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0000 }, {   14, 0x0008 },\n  {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0000 }, {   15, 0x0000 },\n  /* 0x5800 */\n  {   15, 0x0000 }, {   15, 0x0100 }, {   16, 0x0000 }, {   16, 0x0000 },\n  {   16, 0x0000 }, {   16, 0x0000 }, {   16, 0x0000 }, {   16, 0x0000 },\n  {   16, 0x0000 }, {   16, 0x0040 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page62[13] = {\n  /* 0x6200 */\n  {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 },\n  {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 },\n  {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 },\n  {   17, 0x0002 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page66[25] = {\n  /* 0x6600 */\n  {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0000 },\n  {   18, 0x0000 }, {   18, 0x0000 }, {   18, 0x0001 }, {   19, 0x0000 },\n  {   19, 0x0000 }, {   19, 0x0000 }, {   19, 0x0000 }, {   19, 0x0000 },\n  {   19, 0x0000 }, {   19, 0x0000 }, {   19, 0x0000 }, {   19, 0x0000 },\n  /* 0x6700 */\n  {   19, 0x0000 }, {   19, 0x0000 }, {   19, 0x0000 }, {   19, 0x0000 },\n  {   19, 0x0000 }, {   19, 0x0000 }, {   19, 0x0000 }, {   19, 0x0000 },\n  {   19, 0x0004 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page6a[3] = {\n  /* 0x6a00 */\n  {   20, 0x0000 }, {   20, 0x0000 }, {   20, 0x0200 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page70[7] = {\n  /* 0x7000 */\n  {   21, 0x0000 }, {   21, 0x0000 }, {   21, 0x0000 }, {   21, 0x0000 },\n  {   21, 0x0000 }, {   21, 0x0000 }, {   21, 0x4000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page73[29] = {\n  /* 0x7300 */\n  {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 },\n  {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 },\n  {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 }, {   22, 0x0000 },\n  {   22, 0x0010 }, {   23, 0x0000 }, {   23, 0x0000 }, {   23, 0x0000 },\n  /* 0x7400 */\n  {   23, 0x0000 }, {   23, 0x0000 }, {   23, 0x0000 }, {   23, 0x0000 },\n  {   23, 0x1000 }, {   24, 0x0000 }, {   24, 0x0000 }, {   24, 0x0000 },\n  {   24, 0x0000 }, {   24, 0x0000 }, {   24, 0x0000 }, {   24, 0x0000 },\n  {   24, 0x0040 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page79[45] = {\n  /* 0x7900 */\n  {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 },\n  {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 },\n  {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 },\n  {   25, 0x0000 }, {   25, 0x0001 }, {   26, 0x0000 }, {   26, 0x0000 },\n  /* 0x7a00 */\n  {   26, 0x0000 }, {   26, 0x0000 }, {   26, 0x1000 }, {   27, 0x0004 },\n  {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0004 },\n  {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 },\n  {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x1000 },\n  /* 0x7b00 */\n  {   30, 0x0000 }, {   30, 0x0000 }, {   30, 0x0000 }, {   30, 0x0000 },\n  {   30, 0x0000 }, {   30, 0x0000 }, {   30, 0x0000 }, {   30, 0x0000 },\n  {   30, 0x0000 }, {   30, 0x0000 }, {   30, 0x4000 }, {   31, 0x0000 },\n  {   31, 0x0020 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page84[34] = {\n  /* 0x8400 */\n  {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 },\n  {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 },\n  {   32, 0x0010 }, {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 },\n  {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 }, {   33, 0x0000 },\n  /* 0x8500 */\n  {   33, 0x0010 }, {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 },\n  {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 },\n  {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 },\n  {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 }, {   34, 0x0000 },\n  /* 0x8600 */\n  {   34, 0x0000 }, {   34, 0x0008 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page88[10] = {\n  /* 0x8800 */\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 },\n  {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 }, {   35, 0x0000 },\n  {   35, 0x0000 }, {   35, 0x2000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page8b[9] = {\n  /* 0x8b00 */\n  {   36, 0x0000 }, {   36, 0x0000 }, {   36, 0x0000 }, {   36, 0x0000 },\n  {   36, 0x0000 }, {   36, 0x0000 }, {   36, 0x0000 }, {   36, 0x0000 },\n  {   36, 0x8000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page90[5] = {\n  /* 0x9000 */\n  {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 }, {   37, 0x0000 },\n  {   37, 0x0040 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page92[2] = {\n  /* 0x9200 */\n  {   38, 0x0000 }, {   38, 0x0100 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page94[3] = {\n  /* 0x9400 */\n  {   39, 0x0000 }, {   39, 0x0000 }, {   39, 0x8000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page97[5] = {\n  /* 0x9700 */\n  {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 }, {   40, 0x0000 },\n  {   40, 0x0400 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page9f[13] = {\n  /* 0x9f00 */\n  {   41, 0x0000 }, {   41, 0x0000 }, {   41, 0x0000 }, {   41, 0x0000 },\n  {   41, 0x0000 }, {   41, 0x0000 }, {   41, 0x0000 }, {   41, 0x0000 },\n  {   41, 0x0000 }, {   41, 0x00c0 }, {   43, 0x0000 }, {   43, 0x0000 },\n  {   43, 0x0f80 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page20a[9] = {\n  /* 0x20a00 */\n  {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x0000 },\n  {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x0000 }, {   48, 0x0000 },\n  {   48, 0x0400 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page21d[6] = {\n  /* 0x21d00 */\n  {   49, 0x0000 }, {   49, 0x0000 }, {   49, 0x0000 }, {   49, 0x0000 },\n  {   49, 0x0000 }, {   49, 0x0008 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page224[13] = {\n  /* 0x22400 */\n  {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 },\n  {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 },\n  {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x1000 },\n  {   51, 0x1202 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page231[22] = {\n  /* 0x23100 */\n  {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 },\n  {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 },\n  {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0000 },\n  {   54, 0x0000 }, {   54, 0x0000 }, {   54, 0x0400 }, {   55, 0x0000 },\n  /* 0x23200 */\n  {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 }, {   55, 0x0000 },\n  {   55, 0x0000 }, {   55, 0x4000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page235[26] = {\n  /* 0x23500 */\n  {   56, 0x0000 }, {   56, 0x0000 }, {   56, 0x0000 }, {   56, 0x0000 },\n  {   56, 0x0000 }, {   56, 0x0000 }, {   56, 0x0000 }, {   56, 0x0000 },\n  {   56, 0x0000 }, {   56, 0x0000 }, {   56, 0x0000 }, {   56, 0x0800 },\n  {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 },\n  /* 0x23600 */\n  {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 },\n  {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 },\n  {   57, 0x4000 }, {   58, 0x4000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page241[7] = {\n  /* 0x24100 */\n  {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0000 },\n  {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0002 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page258[14] = {\n  /* 0x25800 */\n  {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0000 },\n  {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0000 },\n  {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0000 }, {   60, 0x0000 },\n  {   60, 0x0000 }, {   60, 0x4000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page25d[12] = {\n  /* 0x25d00 */\n  {   61, 0x0000 }, {   61, 0x0000 }, {   61, 0x0000 }, {   61, 0x0000 },\n  {   61, 0x0000 }, {   61, 0x0000 }, {   61, 0x0000 }, {   61, 0x0000 },\n  {   61, 0x0000 }, {   61, 0x0200 }, {   62, 0x0000 }, {   62, 0x0200 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page260[3] = {\n  /* 0x26000 */\n  {   63, 0x0000 }, {   63, 0x0000 }, {   63, 0x0002 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page26e[9] = {\n  /* 0x26e00 */\n  {   64, 0x0000 }, {   64, 0x0000 }, {   64, 0x0000 }, {   64, 0x0000 },\n  {   64, 0x0000 }, {   64, 0x0000 }, {   64, 0x0000 }, {   64, 0x0000 },\n  {   64, 0x0100 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page27b[7] = {\n  /* 0x27b00 */\n  {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0000 },\n  {   65, 0x0000 }, {   65, 0x0000 }, {   65, 0x0020 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page289[1] = {\n  /* 0x28900 */\n  {   66, 0x2000 },\n};\nstatic const Summary16 hkscs2008_uni2indx_page2ad[16] = {\n  /* 0x2ad00 */\n  {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 },\n  {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 },\n  {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 },\n  {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x0000 }, {   67, 0x8000 },\n};\n\nstatic int\nhkscs2008_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x3400 && wc < 0x34f0)\n      summary = &hkscs2008_uni2indx_page34[(wc>>4)-0x340];\n    else if (wc >= 0x3800 && wc < 0x3880)\n      summary = &hkscs2008_uni2indx_page38[(wc>>4)-0x380];\n    else if (wc >= 0x3a00 && wc < 0x3b00)\n      summary = &hkscs2008_uni2indx_page3a[(wc>>4)-0x3a0];\n    else if (wc >= 0x3e00 && wc < 0x3ef0)\n      summary = &hkscs2008_uni2indx_page3e[(wc>>4)-0x3e0];\n    else if (wc >= 0x4000 && wc < 0x4190)\n      summary = &hkscs2008_uni2indx_page40[(wc>>4)-0x400];\n    else if (wc >= 0x4300 && wc < 0x44f0)\n      summary = &hkscs2008_uni2indx_page43[(wc>>4)-0x430];\n    else if (wc >= 0x4600 && wc < 0x46b0)\n      summary = &hkscs2008_uni2indx_page46[(wc>>4)-0x460];\n    else if (wc >= 0x4900 && wc < 0x4940)\n      summary = &hkscs2008_uni2indx_page49[(wc>>4)-0x490];\n    else if (wc >= 0x5200 && wc < 0x5250)\n      summary = &hkscs2008_uni2indx_page52[(wc>>4)-0x520];\n    else if (wc >= 0x5400 && wc < 0x5450)\n      summary = &hkscs2008_uni2indx_page54[(wc>>4)-0x540];\n    else if (wc >= 0x5700 && wc < 0x58a0)\n      summary = &hkscs2008_uni2indx_page57[(wc>>4)-0x570];\n    else if (wc >= 0x6200 && wc < 0x62d0)\n      summary = &hkscs2008_uni2indx_page62[(wc>>4)-0x620];\n    else if (wc >= 0x6600 && wc < 0x6790)\n      summary = &hkscs2008_uni2indx_page66[(wc>>4)-0x660];\n    else if (wc >= 0x6a00 && wc < 0x6a30)\n      summary = &hkscs2008_uni2indx_page6a[(wc>>4)-0x6a0];\n    else if (wc >= 0x7000 && wc < 0x7070)\n      summary = &hkscs2008_uni2indx_page70[(wc>>4)-0x700];\n    else if (wc >= 0x7300 && wc < 0x74d0)\n      summary = &hkscs2008_uni2indx_page73[(wc>>4)-0x730];\n    else if (wc >= 0x7900 && wc < 0x7bd0)\n      summary = &hkscs2008_uni2indx_page79[(wc>>4)-0x790];\n    else if (wc >= 0x8400 && wc < 0x8620)\n      summary = &hkscs2008_uni2indx_page84[(wc>>4)-0x840];\n    else if (wc >= 0x8800 && wc < 0x88a0)\n      summary = &hkscs2008_uni2indx_page88[(wc>>4)-0x880];\n    else if (wc >= 0x8b00 && wc < 0x8b90)\n      summary = &hkscs2008_uni2indx_page8b[(wc>>4)-0x8b0];\n    else if (wc >= 0x9000 && wc < 0x9050)\n      summary = &hkscs2008_uni2indx_page90[(wc>>4)-0x900];\n    else if (wc >= 0x9200 && wc < 0x9220)\n      summary = &hkscs2008_uni2indx_page92[(wc>>4)-0x920];\n    else if (wc >= 0x9400 && wc < 0x9430)\n      summary = &hkscs2008_uni2indx_page94[(wc>>4)-0x940];\n    else if (wc >= 0x9700 && wc < 0x9750)\n      summary = &hkscs2008_uni2indx_page97[(wc>>4)-0x970];\n    else if (wc >= 0x9f00 && wc < 0x9fd0)\n      summary = &hkscs2008_uni2indx_page9f[(wc>>4)-0x9f0];\n    else if (wc >= 0x20a00 && wc < 0x20a90)\n      summary = &hkscs2008_uni2indx_page20a[(wc>>4)-0x20a0];\n    else if (wc >= 0x21d00 && wc < 0x21d60)\n      summary = &hkscs2008_uni2indx_page21d[(wc>>4)-0x21d0];\n    else if (wc >= 0x22400 && wc < 0x224d0)\n      summary = &hkscs2008_uni2indx_page224[(wc>>4)-0x2240];\n    else if (wc >= 0x23100 && wc < 0x23260)\n      summary = &hkscs2008_uni2indx_page231[(wc>>4)-0x2310];\n    else if (wc >= 0x23500 && wc < 0x236a0)\n      summary = &hkscs2008_uni2indx_page235[(wc>>4)-0x2350];\n    else if (wc >= 0x24100 && wc < 0x24170)\n      summary = &hkscs2008_uni2indx_page241[(wc>>4)-0x2410];\n    else if (wc >= 0x25800 && wc < 0x258e0)\n      summary = &hkscs2008_uni2indx_page258[(wc>>4)-0x2580];\n    else if (wc >= 0x25d00 && wc < 0x25dc0)\n      summary = &hkscs2008_uni2indx_page25d[(wc>>4)-0x25d0];\n    else if (wc >= 0x26000 && wc < 0x26030)\n      summary = &hkscs2008_uni2indx_page260[(wc>>4)-0x2600];\n    else if (wc >= 0x26e00 && wc < 0x26e90)\n      summary = &hkscs2008_uni2indx_page26e[(wc>>4)-0x26e0];\n    else if (wc >= 0x27b00 && wc < 0x27b70)\n      summary = &hkscs2008_uni2indx_page27b[(wc>>4)-0x27b0];\n    else if (wc >= 0x28900 && wc < 0x28910)\n      summary = &hkscs2008_uni2indx_page289[(wc>>4)-0x2890];\n    else if (wc >= 0x2ad00 && wc < 0x2ae00)\n      summary = &hkscs2008_uni2indx_page2ad[(wc>>4)-0x2ad0];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = hkscs2008_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/hp_roman8.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * HP-ROMAN8\n */\n\nstatic const unsigned short hp_roman8_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x00c0, 0x00c2, 0x00c8, 0x00ca, 0x00cb, 0x00ce, 0x00cf,\n  0x00b4, 0x02cb, 0x02c6, 0x00a8, 0x02dc, 0x00d9, 0x00db, 0x20a4,\n  /* 0xb0 */\n  0x00af, 0x00dd, 0x00fd, 0x00b0, 0x00c7, 0x00e7, 0x00d1, 0x00f1,\n  0x00a1, 0x00bf, 0x00a4, 0x00a3, 0x00a5, 0x00a7, 0x0192, 0x00a2,\n  /* 0xc0 */\n  0x00e2, 0x00ea, 0x00f4, 0x00fb, 0x00e1, 0x00e9, 0x00f3, 0x00fa,\n  0x00e0, 0x00e8, 0x00f2, 0x00f9, 0x00e4, 0x00eb, 0x00f6, 0x00fc,\n  /* 0xd0 */\n  0x00c5, 0x00ee, 0x00d8, 0x00c6, 0x00e5, 0x00ed, 0x00f8, 0x00e6,\n  0x00c4, 0x00ec, 0x00d6, 0x00dc, 0x00c9, 0x00ef, 0x00df, 0x00d4,\n  /* 0xe0 */\n  0x00c1, 0x00c3, 0x00e3, 0x00d0, 0x00f0, 0x00cd, 0x00cc, 0x00d3,\n  0x00d2, 0x00d5, 0x00f5, 0x0160, 0x0161, 0x00da, 0x0178, 0x00ff,\n  /* 0xf0 */\n  0x00de, 0x00fe, 0x00b7, 0x00b5, 0x00b6, 0x00be, 0x2014, 0x00bc,\n  0x00bd, 0x00aa, 0x00ba, 0x00ab, 0x25a0, 0x00bb, 0x00b1, 0xfffd,\n};\n\nstatic int\nhp_roman8_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = hp_roman8_2uni[c-0xa0];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char hp_roman8_page00[96] = {\n  0xa0, 0xb8, 0xbf, 0xbb, 0xba, 0xbc, 0x00, 0xbd, /* 0xa0-0xa7 */\n  0xab, 0x00, 0xf9, 0xfb, 0x00, 0x00, 0x00, 0xb0, /* 0xa8-0xaf */\n  0xb3, 0xfe, 0x00, 0x00, 0xa8, 0xf3, 0xf4, 0xf2, /* 0xb0-0xb7 */\n  0x00, 0x00, 0xfa, 0xfd, 0xf7, 0xf8, 0xf5, 0xb9, /* 0xb8-0xbf */\n  0xa1, 0xe0, 0xa2, 0xe1, 0xd8, 0xd0, 0xd3, 0xb4, /* 0xc0-0xc7 */\n  0xa3, 0xdc, 0xa4, 0xa5, 0xe6, 0xe5, 0xa6, 0xa7, /* 0xc8-0xcf */\n  0xe3, 0xb6, 0xe8, 0xe7, 0xdf, 0xe9, 0xda, 0x00, /* 0xd0-0xd7 */\n  0xd2, 0xad, 0xed, 0xae, 0xdb, 0xb1, 0xf0, 0xde, /* 0xd8-0xdf */\n  0xc8, 0xc4, 0xc0, 0xe2, 0xcc, 0xd4, 0xd7, 0xb5, /* 0xe0-0xe7 */\n  0xc9, 0xc5, 0xc1, 0xcd, 0xd9, 0xd5, 0xd1, 0xdd, /* 0xe8-0xef */\n  0xe4, 0xb7, 0xca, 0xc6, 0xc2, 0xea, 0xce, 0x00, /* 0xf0-0xf7 */\n  0xd6, 0xcb, 0xc7, 0xc3, 0xcf, 0xb2, 0xf1, 0xef, /* 0xf8-0xff */\n};\nstatic const unsigned char hp_roman8_page01[56] = {\n  0xeb, 0xec, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char hp_roman8_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\n\nstatic int\nhp_roman8_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = hp_roman8_page00[wc-0x00a0];\n  else if (wc >= 0x0160 && wc < 0x0198)\n    c = hp_roman8_page01[wc-0x0160];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = hp_roman8_page02[wc-0x02c0];\n  else if (wc == 0x2014)\n    c = 0xf6;\n  else if (wc == 0x20a4)\n    c = 0xaf;\n  else if (wc == 0x25a0)\n    c = 0xfc;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/hz.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * HZ\n */\n\n/* Specification: RFC 1842, RFC 1843 */\n\n/*\n * The state is 1 in GB mode, 0 in ASCII mode.\n */\n\nstatic int\nhz_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  unsigned int count = 0;\n  unsigned char c;\n  for (;;) {\n    c = *s;\n    if (c == '~') {\n      if (n < count+2)\n        goto none;\n      c = s[1];\n      if (state == 0) {\n        if (c == '~') {\n          *pwc = (ucs4_t) '~';\n          conv->istate = state;\n          return count+2;\n        }\n        if (c == '{') {\n          state = 1;\n          s += 2; count += 2;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (c == '\\n') {\n          s += 2; count += 2;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n      } else {\n        if (c == '}') {\n          state = 0;\n          s += 2; count += 2;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n      }\n      goto ilseq;\n    }\n    break;\n  }\n  if (state == 0) {\n    *pwc = (ucs4_t) c;\n    conv->istate = state;\n    return count+1;\n  } else {\n    int ret;\n    if (n < count+2)\n      goto none;\n    ret = gb2312_mbtowc(conv,pwc,s,2);\n    if (ret == RET_ILSEQ)\n      goto ilseq;\n    if (ret != 2) abort();\n    conv->istate = state;\n    return count+2;\n  }\n\nnone:\n  conv->istate = state;\n  return RET_TOOFEW(count);\n\nilseq:\n  conv->istate = state;\n  return RET_SHIFT_ILSEQ(count);\n}\n\nstatic int\nhz_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  state_t state = conv->ostate;\n  unsigned char buf[2];\n  int ret;\n\n  /* Code set 0 (ASCII or GB 1988-89) */\n  ret = ascii_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      int count = (state ? 3 : 1);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state) {\n        r[0] = '~';\n        r[1] = '}';\n        r += 2;\n        state = 0;\n      }\n      r[0] = buf[0];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Code set 1 (GB 2312-1980) */\n  ret = gb2312_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (buf[0] < 0x80 && buf[1] < 0x80) {\n      int count = (state ? 2 : 4);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (!state) {\n        r[0] = '~';\n        r[1] = '{';\n        r += 2;\n        state = 1;\n      }\n      r[0] = buf[0];\n      r[1] = buf[1];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  return RET_ILUNI;\n}\n\nstatic int\nhz_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t state = conv->ostate;\n  if (state) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = '~';\n    r[1] = '}';\n    /* conv->ostate = 0; will be done by the caller */\n    return 2;\n  } else\n    return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iconv.c",
    "content": "/*\n * Copyright (C) 1999-2008, 2011, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n#include <iconv.h>\n\n#include <limits.h>\n#include <stdlib.h>\n#include <string.h>\n#include \"config.h\"\n#include \"localcharset.h\"\n\n#ifdef __CYGWIN__\n#include <cygwin/version.h>\n#endif\n\n#if ENABLE_EXTRA\n/*\n * Consider all system dependent encodings, for any system,\n * and the extra encodings.\n */\n#define USE_AIX\n#define USE_OSF1\n#define USE_DOS\n#define USE_EXTRA\n#else\n/*\n * Consider those system dependent encodings that are needed for the\n * current system.\n */\n#ifdef _AIX\n#define USE_AIX\n#endif\n#if defined(__osf__) || defined(VMS)\n#define USE_OSF1\n#endif\n#if defined(__DJGPP__) || (defined(_WIN32) && (defined(_MSC_VER) || defined(__MINGW32__)))\n#define USE_DOS\n#endif\n#endif\n\n/*\n * Data type for general conversion loop.\n */\nstruct loop_funcs {\n  size_t (*loop_convert) (iconv_t icd,\n                          const char* * inbuf, size_t *inbytesleft,\n                          char* * outbuf, size_t *outbytesleft);\n  size_t (*loop_reset) (iconv_t icd,\n                        char* * outbuf, size_t *outbytesleft);\n};\n\n/*\n * Converters.\n */\n#include \"converters.h\"\n\n/*\n * Transliteration tables.\n */\n#include \"cjk_variants.h\"\n#include \"translit.h\"\n\n/*\n * Table of all supported encodings.\n */\nstruct encoding {\n  struct mbtowc_funcs ifuncs; /* conversion multibyte -> unicode */\n  struct wctomb_funcs ofuncs; /* conversion unicode -> multibyte */\n  int oflags;                 /* flags for unicode -> multibyte conversion */\n};\n#define DEFALIAS(xxx_alias,xxx) /* nothing */\nenum {\n#define DEFENCODING(xxx_names,xxx,xxx_ifuncs1,xxx_ifuncs2,xxx_ofuncs1,xxx_ofuncs2) \\\n  ei_##xxx ,\n#include \"encodings.def\"\n#ifdef USE_AIX\n# include \"encodings_aix.def\"\n#endif\n#ifdef USE_OSF1\n# include \"encodings_osf1.def\"\n#endif\n#ifdef USE_DOS\n# include \"encodings_dos.def\"\n#endif\n#ifdef USE_EXTRA\n# include \"encodings_extra.def\"\n#endif\n#include \"encodings_local.def\"\n#undef DEFENCODING\nei_for_broken_compilers_that_dont_like_trailing_commas\n};\n#include \"flags.h\"\nstatic struct encoding const all_encodings[] = {\n#define DEFENCODING(xxx_names,xxx,xxx_ifuncs1,xxx_ifuncs2,xxx_ofuncs1,xxx_ofuncs2) \\\n  { xxx_ifuncs1,xxx_ifuncs2, xxx_ofuncs1,xxx_ofuncs2, ei_##xxx##_oflags },\n#include \"encodings.def\"\n#ifdef USE_AIX\n# include \"encodings_aix.def\"\n#endif\n#ifdef USE_OSF1\n# include \"encodings_osf1.def\"\n#endif\n#ifdef USE_DOS\n# include \"encodings_dos.def\"\n#endif\n#ifdef USE_EXTRA\n# include \"encodings_extra.def\"\n#endif\n#undef DEFENCODING\n#define DEFENCODING(xxx_names,xxx,xxx_ifuncs1,xxx_ifuncs2,xxx_ofuncs1,xxx_ofuncs2) \\\n  { xxx_ifuncs1,xxx_ifuncs2, xxx_ofuncs1,xxx_ofuncs2, 0 },\n#include \"encodings_local.def\"\n#undef DEFENCODING\n};\n#undef DEFALIAS\n\n/*\n * Conversion loops.\n */\n#include \"loops.h\"\n\n/*\n * Alias lookup function.\n * Defines\n *   struct alias { int name; unsigned int encoding_index; };\n *   const struct alias * aliases_lookup (const char *str, unsigned int len);\n *   #define MAX_WORD_LENGTH ...\n */\n#if defined _AIX\n# include \"aliases_sysaix.h\"\n#elif defined hpux || defined __hpux\n# include \"aliases_syshpux.h\"\n#elif defined __osf__\n# include \"aliases_sysosf1.h\"\n#elif defined __sun\n# include \"aliases_syssolaris.h\"\n#else\n# include \"aliases.h\"\n#endif\n\n/*\n * System dependent alias lookup function.\n * Defines\n *   const struct alias * aliases2_lookup (const char *str);\n */\n#if defined(USE_AIX) || defined(USE_OSF1) || defined(USE_DOS) || defined(USE_EXTRA) /* || ... */\nstruct stringpool2_t {\n#define S(tag,name,encoding_index) char stringpool_##tag[sizeof(name)];\n#include \"aliases2.h\"\n#undef S\n};\nstatic const struct stringpool2_t stringpool2_contents = {\n#define S(tag,name,encoding_index) name,\n#include \"aliases2.h\"\n#undef S\n};\n#define stringpool2 ((const char *) &stringpool2_contents)\nstatic const struct alias sysdep_aliases[] = {\n#define S(tag,name,encoding_index) { (int)(long)&((struct stringpool2_t *)0)->stringpool_##tag, encoding_index },\n#include \"aliases2.h\"\n#undef S\n};\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic const struct alias *\naliases2_lookup (register const char *str)\n{\n  const struct alias * ptr;\n  unsigned int count;\n  for (ptr = sysdep_aliases, count = sizeof(sysdep_aliases)/sizeof(sysdep_aliases[0]); count > 0; ptr++, count--)\n    if (!strcmp(str, stringpool2 + ptr->name))\n      return ptr;\n  return NULL;\n}\n#else\n#define aliases2_lookup(str)  NULL\n#define stringpool2  NULL\n#endif\n\n#if 0\n/* Like !strcasecmp, except that the both strings can be assumed to be ASCII\n   and the first string can be assumed to be in uppercase. */\nstatic int strequal (const char* str1, const char* str2)\n{\n  unsigned char c1;\n  unsigned char c2;\n  for (;;) {\n    c1 = * (unsigned char *) str1++;\n    c2 = * (unsigned char *) str2++;\n    if (c1 == 0)\n      break;\n    if (c2 >= 'a' && c2 <= 'z')\n      c2 -= 'a'-'A';\n    if (c1 != c2)\n      break;\n  }\n  return (c1 == c2);\n}\n#endif\n\niconv_t iconv_open (const char* tocode, const char* fromcode)\n{\n  struct conv_struct * cd;\n  unsigned int from_index;\n  int from_wchar;\n  unsigned int to_index;\n  int to_wchar;\n  int transliterate;\n  int discard_ilseq;\n\n#include \"iconv_open1.h\"\n\n  cd = (struct conv_struct *) malloc(from_wchar != to_wchar\n                                     ? sizeof(struct wchar_conv_struct)\n                                     : sizeof(struct conv_struct));\n  if (cd == NULL) {\n    errno = ENOMEM;\n    return (iconv_t)(-1);\n  }\n\n#include \"iconv_open2.h\"\n\n  return (iconv_t)cd;\ninvalid:\n  errno = EINVAL;\n  return (iconv_t)(-1);\n}\n\nsize_t iconv (iconv_t icd,\n              ICONV_CONST char* * inbuf, size_t *inbytesleft,\n              char* * outbuf, size_t *outbytesleft)\n{\n  conv_t cd = (conv_t) icd;\n  if (inbuf == NULL || *inbuf == NULL)\n    return cd->lfuncs.loop_reset(icd,outbuf,outbytesleft);\n  else\n    return cd->lfuncs.loop_convert(icd,\n                                   (const char* *)inbuf,inbytesleft,\n                                   outbuf,outbytesleft);\n}\n\nint iconv_close (iconv_t icd)\n{\n  conv_t cd = (conv_t) icd;\n  free(cd);\n  return 0;\n}\n\n#ifndef LIBICONV_PLUG\n\n/*\n * Verify that a 'struct conv_struct' and a 'struct wchar_conv_struct' each\n * fit in an iconv_allocation_t.\n * If this verification fails, iconv_allocation_t must be made larger and\n * the major version in LIBICONV_VERSION_INFO must be bumped.\n * Currently 'struct conv_struct' has 21 integer/pointer fields, and\n * 'struct wchar_conv_struct' additionally has an 'mbstate_t' field.\n */\ntypedef int verify_size_1[2 * (sizeof (struct conv_struct) <= sizeof (iconv_allocation_t)) - 1];\ntypedef int verify_size_2[2 * (sizeof (struct wchar_conv_struct) <= sizeof (iconv_allocation_t)) - 1];\n\nint iconv_open_into (const char* tocode, const char* fromcode,\n                     iconv_allocation_t* resultp)\n{\n  struct conv_struct * cd;\n  unsigned int from_index;\n  int from_wchar;\n  unsigned int to_index;\n  int to_wchar;\n  int transliterate;\n  int discard_ilseq;\n\n#include \"iconv_open1.h\"\n\n  cd = (struct conv_struct *) resultp;\n\n#include \"iconv_open2.h\"\n\n  return 0;\ninvalid:\n  errno = EINVAL;\n  return -1;\n}\n\nint iconvctl (iconv_t icd, int request, void* argument)\n{\n  conv_t cd = (conv_t) icd;\n  switch (request) {\n    case ICONV_TRIVIALP:\n      *(int *)argument =\n        ((cd->lfuncs.loop_convert == unicode_loop_convert\n          && cd->iindex == cd->oindex)\n         || cd->lfuncs.loop_convert == wchar_id_loop_convert\n         ? 1 : 0);\n      return 0;\n    case ICONV_GET_TRANSLITERATE:\n      *(int *)argument = cd->transliterate;\n      return 0;\n    case ICONV_SET_TRANSLITERATE:\n      cd->transliterate = (*(const int *)argument ? 1 : 0);\n      return 0;\n    case ICONV_GET_DISCARD_ILSEQ:\n      *(int *)argument = cd->discard_ilseq;\n      return 0;\n    case ICONV_SET_DISCARD_ILSEQ:\n      cd->discard_ilseq = (*(const int *)argument ? 1 : 0);\n      return 0;\n    case ICONV_SET_HOOKS:\n      if (argument != NULL) {\n        cd->hooks = *(const struct iconv_hooks *)argument;\n      } else {\n        cd->hooks.uc_hook = NULL;\n        cd->hooks.wc_hook = NULL;\n        cd->hooks.data = NULL;\n      }\n      return 0;\n    case ICONV_SET_FALLBACKS:\n      if (argument != NULL) {\n        cd->fallbacks = *(const struct iconv_fallbacks *)argument;\n      } else {\n        cd->fallbacks.mb_to_uc_fallback = NULL;\n        cd->fallbacks.uc_to_mb_fallback = NULL;\n        cd->fallbacks.mb_to_wc_fallback = NULL;\n        cd->fallbacks.wc_to_mb_fallback = NULL;\n        cd->fallbacks.data = NULL;\n      }\n      return 0;\n    default:\n      errno = EINVAL;\n      return -1;\n  }\n}\n\n/* An alias after its name has been converted from 'int' to 'const char*'. */\nstruct nalias { const char* name; unsigned int encoding_index; };\n\nstatic int compare_by_index (const void * arg1, const void * arg2)\n{\n  const struct nalias * alias1 = (const struct nalias *) arg1;\n  const struct nalias * alias2 = (const struct nalias *) arg2;\n  return (int)alias1->encoding_index - (int)alias2->encoding_index;\n}\n\nstatic int compare_by_name (const void * arg1, const void * arg2)\n{\n  const char * name1 = *(const char **)arg1;\n  const char * name2 = *(const char **)arg2;\n  /* Compare alphabetically, but put \"CS\" names at the end. */\n  int sign = strcmp(name1,name2);\n  if (sign != 0) {\n    sign = ((name1[0]=='C' && name1[1]=='S') - (name2[0]=='C' && name2[1]=='S'))\n           * 4 + (sign >= 0 ? 1 : -1);\n  }\n  return sign;\n}\n\nvoid iconvlist (int (*do_one) (unsigned int namescount,\n                               const char * const * names,\n                               void* data),\n                void* data)\n{\n#define aliascount1  sizeof(aliases)/sizeof(aliases[0])\n#ifndef aliases2_lookup\n#define aliascount2  sizeof(sysdep_aliases)/sizeof(sysdep_aliases[0])\n#else\n#define aliascount2  0\n#endif\n#define aliascount  (aliascount1+aliascount2)\n  struct nalias aliasbuf[aliascount];\n  const char * namesbuf[aliascount];\n  size_t num_aliases;\n  {\n    /* Put all existing aliases into a buffer. */\n    size_t i;\n    size_t j;\n    j = 0;\n    for (i = 0; i < aliascount1; i++) {\n      const struct alias * p = &aliases[i];\n      if (p->name >= 0\n          && p->encoding_index != ei_local_char\n          && p->encoding_index != ei_local_wchar_t) {\n        aliasbuf[j].name = stringpool + p->name;\n        aliasbuf[j].encoding_index = p->encoding_index;\n        j++;\n      }\n    }\n#ifndef aliases2_lookup\n    for (i = 0; i < aliascount2; i++) {\n      aliasbuf[j].name = stringpool2 + sysdep_aliases[i].name;\n      aliasbuf[j].encoding_index = sysdep_aliases[i].encoding_index;\n      j++;\n    }\n#endif\n    num_aliases = j;\n  }\n  /* Sort by encoding_index. */\n  if (num_aliases > 1)\n    qsort(aliasbuf, num_aliases, sizeof(struct nalias), compare_by_index);\n  {\n    /* Process all aliases with the same encoding_index together. */\n    size_t j;\n    j = 0;\n    while (j < num_aliases) {\n      unsigned int ei = aliasbuf[j].encoding_index;\n      size_t i = 0;\n      do\n        namesbuf[i++] = aliasbuf[j++].name;\n      while (j < num_aliases && aliasbuf[j].encoding_index == ei);\n      if (i > 1)\n        qsort(namesbuf, i, sizeof(const char *), compare_by_name);\n      /* Call the callback. */\n      if (do_one(i,namesbuf,data))\n        break;\n    }\n  }\n#undef aliascount\n#undef aliascount2\n#undef aliascount1\n}\n\n/*\n * Table of canonical names of encodings.\n * Instead of strings, it contains offsets into stringpool and stringpool2.\n */\nstatic const unsigned short all_canonical[] = {\n#if defined _AIX\n# include \"canonical_sysaix.h\"\n#elif defined hpux || defined __hpux\n# include \"canonical_syshpux.h\"\n#elif defined __osf__\n# include \"canonical_sysosf1.h\"\n#elif defined __sun\n# include \"canonical_syssolaris.h\"\n#else\n# include \"canonical.h\"\n#endif\n#ifdef USE_AIX\n# if defined _AIX\n#  include \"canonical_aix_sysaix.h\"\n# else\n#  include \"canonical_aix.h\"\n# endif\n#endif\n#ifdef USE_OSF1\n# if defined __osf__\n#  include \"canonical_osf1_sysosf1.h\"\n# else\n#  include \"canonical_osf1.h\"\n# endif\n#endif\n#ifdef USE_DOS\n# include \"canonical_dos.h\"\n#endif\n#ifdef USE_EXTRA\n# include \"canonical_extra.h\"\n#endif\n#if defined _AIX\n# include \"canonical_local_sysaix.h\"\n#elif defined hpux || defined __hpux\n# include \"canonical_local_syshpux.h\"\n#elif defined __osf__\n# include \"canonical_local_sysosf1.h\"\n#elif defined __sun\n# include \"canonical_local_syssolaris.h\"\n#else\n# include \"canonical_local.h\"\n#endif\n};\n\nconst char * iconv_canonicalize (const char * name)\n{\n  const char* code;\n  char buf[MAX_WORD_LENGTH+10+1];\n  const char* cp;\n  char* bp;\n  const struct alias * ap;\n  unsigned int count;\n  unsigned int index;\n  const char* pool;\n\n  /* Before calling aliases_lookup, convert the input string to upper case,\n   * and check whether it's entirely ASCII (we call gperf with option \"-7\"\n   * to achieve a smaller table) and non-empty. If it's not entirely ASCII,\n   * or if it's too long, it is not a valid encoding name.\n   */\n  for (code = name;;) {\n    /* Search code in the table. */\n    for (cp = code, bp = buf, count = MAX_WORD_LENGTH+10+1; ; cp++, bp++) {\n      unsigned char c = * (unsigned char *) cp;\n      if (c >= 0x80)\n        goto invalid;\n      if (c >= 'a' && c <= 'z')\n        c -= 'a'-'A';\n      *bp = c;\n      if (c == '\\0')\n        break;\n      if (--count == 0)\n        goto invalid;\n    }\n    for (;;) {\n      if (bp-buf >= 10 && memcmp(bp-10,\"//TRANSLIT\",10)==0) {\n        bp -= 10;\n        *bp = '\\0';\n        continue;\n      }\n      if (bp-buf >= 8 && memcmp(bp-8,\"//IGNORE\",8)==0) {\n        bp -= 8;\n        *bp = '\\0';\n        continue;\n      }\n      break;\n    }\n    if (buf[0] == '\\0') {\n      code = locale_charset();\n      /* Avoid an endless loop that could occur when using an older version\n         of localcharset.c. */\n      if (code[0] == '\\0')\n        goto invalid;\n      continue;\n    }\n    pool = stringpool;\n    ap = aliases_lookup(buf,bp-buf);\n    if (ap == NULL) {\n      pool = stringpool2;\n      ap = aliases2_lookup(buf);\n      if (ap == NULL)\n        goto invalid;\n    }\n    if (ap->encoding_index == ei_local_char) {\n      code = locale_charset();\n      /* Avoid an endless loop that could occur when using an older version\n         of localcharset.c. */\n      if (code[0] == '\\0')\n        goto invalid;\n      continue;\n    }\n    if (ap->encoding_index == ei_local_wchar_t) {\n      /* On systems which define __STDC_ISO_10646__, wchar_t is Unicode.\n         This is also the case on native Woe32 systems and Cygwin >= 1.7, where\n         we know that it is UTF-16.  */\n#if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || (defined __CYGWIN__ && CYGWIN_VERSION_DLL_MAJOR >= 1007)\n      if (sizeof(wchar_t) == 4) {\n        index = ei_ucs4internal;\n        break;\n      }\n      if (sizeof(wchar_t) == 2) {\n# if WORDS_LITTLEENDIAN\n        index = ei_utf16le;\n# else\n        index = ei_utf16be;\n# endif\n        break;\n      }\n#elif __STDC_ISO_10646__\n      if (sizeof(wchar_t) == 4) {\n        index = ei_ucs4internal;\n        break;\n      }\n      if (sizeof(wchar_t) == 2) {\n        index = ei_ucs2internal;\n        break;\n      }\n      if (sizeof(wchar_t) == 1) {\n        index = ei_iso8859_1;\n        break;\n      }\n#endif\n    }\n    index = ap->encoding_index;\n    break;\n  }\n  return all_canonical[index] + pool;\n invalid:\n  return name;\n}\n\nint _libiconv_version = _LIBICONV_VERSION;\n\n#if defined __FreeBSD__ && !defined __gnu_freebsd__\n/* GNU libiconv is the native FreeBSD iconv implementation since 2002.\n   It wants to define the symbols 'iconv_open', 'iconv', 'iconv_close'.  */\n#define strong_alias(name, aliasname) _strong_alias(name, aliasname)\n#define _strong_alias(name, aliasname) \\\n  extern __typeof (name) aliasname __attribute__ ((alias (#name)));\n#undef iconv_open\n#undef iconv\n#undef iconv_close\nstrong_alias (libiconv_open, iconv_open)\nstrong_alias (libiconv, iconv)\nstrong_alias (libiconv_close, iconv_close)\n#endif\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iconv.lo",
    "content": "# iconv.lo - a libtool object file\n# Generated by libtool (GNU libtool) 2.4.6\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# Name of the PIC object.\npic_object='.libs/iconv.o'\n\n# Name of the non-PIC object\nnon_pic_object=none\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iconv_open1.h",
    "content": "/*\n * Copyright (C) 1999-2008, 2011 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/* Part 1 of iconv_open.\n   Input: const char* tocode, const char* fromcode.\n   Output:\n     unsigned int from_index;\n     int from_wchar;\n     unsigned int to_index;\n     int to_wchar;\n     int transliterate;\n     int discard_ilseq;\n   Jumps to 'invalid' in case of errror.\n */\n{\n  char buf[MAX_WORD_LENGTH+10+1];\n  const char* cp;\n  char* bp;\n  const struct alias * ap;\n  unsigned int count;\n\n  transliterate = 0;\n  discard_ilseq = 0;\n\n  /* Before calling aliases_lookup, convert the input string to upper case,\n   * and check whether it's entirely ASCII (we call gperf with option \"-7\"\n   * to achieve a smaller table) and non-empty. If it's not entirely ASCII,\n   * or if it's too long, it is not a valid encoding name.\n   */\n  for (to_wchar = 0;;) {\n    /* Search tocode in the table. */\n    for (cp = tocode, bp = buf, count = MAX_WORD_LENGTH+10+1; ; cp++, bp++) {\n      unsigned char c = * (unsigned char *) cp;\n      if (c >= 0x80)\n        goto invalid;\n      if (c >= 'a' && c <= 'z')\n        c -= 'a'-'A';\n      *bp = c;\n      if (c == '\\0')\n        break;\n      if (--count == 0)\n        goto invalid;\n    }\n    for (;;) {\n      if (bp-buf >= 10 && memcmp(bp-10,\"//TRANSLIT\",10)==0) {\n        bp -= 10;\n        *bp = '\\0';\n        transliterate = 1;\n        continue;\n      }\n      if (bp-buf >= 8 && memcmp(bp-8,\"//IGNORE\",8)==0) {\n        bp -= 8;\n        *bp = '\\0';\n        discard_ilseq = 1;\n        continue;\n      }\n      break;\n    }\n    if (buf[0] == '\\0') {\n      tocode = locale_charset();\n      /* Avoid an endless loop that could occur when using an older version\n         of localcharset.c. */\n      if (tocode[0] == '\\0')\n        goto invalid;\n      continue;\n    }\n    ap = aliases_lookup(buf,bp-buf);\n    if (ap == NULL) {\n      ap = aliases2_lookup(buf);\n      if (ap == NULL)\n        goto invalid;\n    }\n    if (ap->encoding_index == ei_local_char) {\n      tocode = locale_charset();\n      /* Avoid an endless loop that could occur when using an older version\n         of localcharset.c. */\n      if (tocode[0] == '\\0')\n        goto invalid;\n      continue;\n    }\n    if (ap->encoding_index == ei_local_wchar_t) {\n      /* On systems which define __STDC_ISO_10646__, wchar_t is Unicode.\n         This is also the case on native Woe32 systems and Cygwin >= 1.7, where\n         we know that it is UTF-16.  */\n#if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || (defined __CYGWIN__ && CYGWIN_VERSION_DLL_MAJOR >= 1007)\n      if (sizeof(wchar_t) == 4) {\n        to_index = ei_ucs4internal;\n        break;\n      }\n      if (sizeof(wchar_t) == 2) {\n# if WORDS_LITTLEENDIAN\n        to_index = ei_utf16le;\n# else\n        to_index = ei_utf16be;\n# endif\n        break;\n      }\n#elif __STDC_ISO_10646__\n      if (sizeof(wchar_t) == 4) {\n        to_index = ei_ucs4internal;\n        break;\n      }\n      if (sizeof(wchar_t) == 2) {\n        to_index = ei_ucs2internal;\n        break;\n      }\n      if (sizeof(wchar_t) == 1) {\n        to_index = ei_iso8859_1;\n        break;\n      }\n#endif\n#if HAVE_MBRTOWC\n      to_wchar = 1;\n      tocode = locale_charset();\n      continue;\n#endif\n      goto invalid;\n    }\n    to_index = ap->encoding_index;\n    break;\n  }\n  for (from_wchar = 0;;) {\n    /* Search fromcode in the table. */\n    for (cp = fromcode, bp = buf, count = MAX_WORD_LENGTH+10+1; ; cp++, bp++) {\n      unsigned char c = * (unsigned char *) cp;\n      if (c >= 0x80)\n        goto invalid;\n      if (c >= 'a' && c <= 'z')\n        c -= 'a'-'A';\n      *bp = c;\n      if (c == '\\0')\n        break;\n      if (--count == 0)\n        goto invalid;\n    }\n    for (;;) {\n      if (bp-buf >= 10 && memcmp(bp-10,\"//TRANSLIT\",10)==0) {\n        bp -= 10;\n        *bp = '\\0';\n        continue;\n      }\n      if (bp-buf >= 8 && memcmp(bp-8,\"//IGNORE\",8)==0) {\n        bp -= 8;\n        *bp = '\\0';\n        continue;\n      }\n      break;\n    }\n    if (buf[0] == '\\0') {\n      fromcode = locale_charset();\n      /* Avoid an endless loop that could occur when using an older version\n         of localcharset.c. */\n      if (fromcode[0] == '\\0')\n        goto invalid;\n      continue;\n    }\n    ap = aliases_lookup(buf,bp-buf);\n    if (ap == NULL) {\n      ap = aliases2_lookup(buf);\n      if (ap == NULL)\n        goto invalid;\n    }\n    if (ap->encoding_index == ei_local_char) {\n      fromcode = locale_charset();\n      /* Avoid an endless loop that could occur when using an older version\n         of localcharset.c. */\n      if (fromcode[0] == '\\0')\n        goto invalid;\n      continue;\n    }\n    if (ap->encoding_index == ei_local_wchar_t) {\n      /* On systems which define __STDC_ISO_10646__, wchar_t is Unicode.\n         This is also the case on native Woe32 systems and Cygwin >= 1.7, where\n         we know that it is UTF-16.  */\n#if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || (defined __CYGWIN__ && CYGWIN_VERSION_DLL_MAJOR >= 1007)\n      if (sizeof(wchar_t) == 4) {\n        from_index = ei_ucs4internal;\n        break;\n      }\n      if (sizeof(wchar_t) == 2) {\n# if WORDS_LITTLEENDIAN\n        from_index = ei_utf16le;\n# else\n        from_index = ei_utf16be;\n# endif\n        break;\n      }\n#elif __STDC_ISO_10646__\n      if (sizeof(wchar_t) == 4) {\n        from_index = ei_ucs4internal;\n        break;\n      }\n      if (sizeof(wchar_t) == 2) {\n        from_index = ei_ucs2internal;\n        break;\n      }\n      if (sizeof(wchar_t) == 1) {\n        from_index = ei_iso8859_1;\n        break;\n      }\n#endif\n#if HAVE_WCRTOMB\n      from_wchar = 1;\n      fromcode = locale_charset();\n      continue;\n#endif\n      goto invalid;\n    }\n    from_index = ap->encoding_index;\n    break;\n  }\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iconv_open2.h",
    "content": "/*\n * Copyright (C) 1999-2009 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/* Part 2 of iconv_open.\n   Input:\n     struct conv_struct * cd;\n     unsigned int from_index;\n     int from_wchar;\n     unsigned int to_index;\n     int to_wchar;\n     int transliterate;\n     int discard_ilseq;\n   Output: none.\n   Side effects: Fills cd.\n */\n\n  cd->iindex = from_index;\n  cd->ifuncs = all_encodings[from_index].ifuncs;\n  cd->oindex = to_index;\n  cd->ofuncs = all_encodings[to_index].ofuncs;\n  cd->oflags = all_encodings[to_index].oflags;\n  /* Initialize the loop functions. */\n#if HAVE_MBRTOWC\n  if (to_wchar) {\n#if HAVE_WCRTOMB\n    if (from_wchar) {\n      cd->lfuncs.loop_convert = wchar_id_loop_convert;\n      cd->lfuncs.loop_reset = wchar_id_loop_reset;\n    } else\n#endif\n    {\n      cd->lfuncs.loop_convert = wchar_to_loop_convert;\n      cd->lfuncs.loop_reset = wchar_to_loop_reset;\n    }\n  } else\n#endif\n  {\n#if HAVE_WCRTOMB\n    if (from_wchar) {\n      cd->lfuncs.loop_convert = wchar_from_loop_convert;\n      cd->lfuncs.loop_reset = wchar_from_loop_reset;\n    } else\n#endif\n    {\n      cd->lfuncs.loop_convert = unicode_loop_convert;\n      cd->lfuncs.loop_reset = unicode_loop_reset;\n    }\n  }\n  /* Initialize the states. */\n  memset(&cd->istate,'\\0',sizeof(state_t));\n  memset(&cd->ostate,'\\0',sizeof(state_t));\n  /* Initialize the operation flags. */\n  cd->transliterate = transliterate;\n  cd->discard_ilseq = discard_ilseq;\n  #ifndef LIBICONV_PLUG\n  cd->fallbacks.mb_to_uc_fallback = NULL;\n  cd->fallbacks.uc_to_mb_fallback = NULL;\n  cd->fallbacks.mb_to_wc_fallback = NULL;\n  cd->fallbacks.wc_to_mb_fallback = NULL;\n  cd->fallbacks.data = NULL;\n  cd->hooks.uc_hook = NULL;\n  cd->hooks.wc_hook = NULL;\n  cd->hooks.data = NULL;\n  #endif\n  /* Initialize additional fields. */\n  if (from_wchar != to_wchar) {\n    struct wchar_conv_struct * wcd = (struct wchar_conv_struct *) cd;\n#if HAVE_WCRTOMB || HAVE_MBRTOWC\n    memset(&wcd->state,'\\0',sizeof(mbstate_t));\n#endif\n  }\n  /* Done. */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso2022_cn.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-2022-CN\n */\n\n/* Specification: RFC 1922 */\n\n#define ESC 0x1b\n#define SO  0x0e\n#define SI  0x0f\n\n/*\n * The state is composed of one of the following values\n */\n#define STATE_ASCII          0\n#define STATE_TWOBYTE        1\n/*\n * and one of the following values, << 8\n */\n#define STATE2_NONE                   0\n#define STATE2_DESIGNATED_GB2312      1\n#define STATE2_DESIGNATED_CNS11643_1  2\n/*\n * and one of the following values, << 16\n */\n#define STATE3_NONE                   0\n#define STATE3_DESIGNATED_CNS11643_2  1\n\n#define SPLIT_STATE \\\n  unsigned int state1 = state & 0xff, state2 = (state >> 8) & 0xff, state3 = state >> 16\n#define COMBINE_STATE \\\n  state = (state3 << 16) | (state2 << 8) | state1\n\nstatic int\niso2022_cn_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  SPLIT_STATE;\n  int count = 0;\n  unsigned char c;\n  for (;;) {\n    c = *s;\n    if (c == ESC) {\n      if (n < count+4)\n        goto none;\n      if (s[1] == '$') {\n        if (s[2] == ')') {\n          if (s[3] == 'A') {\n            state2 = STATE2_DESIGNATED_GB2312;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          if (s[3] == 'G') {\n            state2 = STATE2_DESIGNATED_CNS11643_1;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n        }\n        if (s[2] == '*') {\n          if (s[3] == 'H') {\n            state3 = STATE3_DESIGNATED_CNS11643_2;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n        }\n      }\n      if (s[1] == 'N') {\n        switch (state3) {\n          case STATE3_NONE:\n            goto ilseq;\n          case STATE3_DESIGNATED_CNS11643_2:\n            if (s[2] < 0x80 && s[3] < 0x80) {\n              int ret = cns11643_2_mbtowc(conv,pwc,s+2,2);\n              if (ret == RET_ILSEQ)\n                goto ilseq;\n              if (ret != 2) abort();\n              COMBINE_STATE;\n              conv->istate = state;\n              return count+4;\n            } else\n              goto ilseq;\n          default: abort();\n        }\n      }\n      goto ilseq;\n    }\n    if (c == SO) {\n      if (state2 != STATE2_DESIGNATED_GB2312 && state2 != STATE2_DESIGNATED_CNS11643_1)\n        goto ilseq;\n      state1 = STATE_TWOBYTE;\n      s++; count++;\n      if (n < count+1)\n        goto none;\n      continue;\n    }\n    if (c == SI) {\n      state1 = STATE_ASCII;\n      s++; count++;\n      if (n < count+1)\n        goto none;\n      continue;\n    }\n    break;\n  }\n  switch (state1) {\n    case STATE_ASCII:\n      if (c < 0x80) {\n        int ret = ascii_mbtowc(conv,pwc,s,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        if (*pwc == 0x000a || *pwc == 0x000d) {\n          state2 = STATE2_NONE; state3 = STATE3_NONE;\n        }\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_TWOBYTE:\n      if (n < count+2)\n        goto none;\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret;\n        switch (state2) {\n          case STATE2_NONE:\n            goto ilseq;\n          case STATE2_DESIGNATED_GB2312:\n            ret = gb2312_mbtowc(conv,pwc,s,2); break;\n          case STATE2_DESIGNATED_CNS11643_1:\n            ret = cns11643_1_mbtowc(conv,pwc,s,2); break;\n          default: abort();\n        }\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    default: abort();\n  }\n\nnone:\n  COMBINE_STATE;\n  conv->istate = state;\n  return RET_TOOFEW(count);\n\nilseq:\n  COMBINE_STATE;\n  conv->istate = state;\n  return RET_SHIFT_ILSEQ(count);\n}\n\nstatic int\niso2022_cn_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  state_t state = conv->ostate;\n  SPLIT_STATE;\n  unsigned char buf[3];\n  int ret;\n\n  /* There is no need to handle Unicode 3.1 tag characters and to look for\n     \"zh-CN\" or \"zh-TW\" tags, because GB2312 and CNS11643 are disjoint. */\n\n  /* Try ASCII. */\n  ret = ascii_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      int count = (state1 == STATE_ASCII ? 1 : 2);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state1 != STATE_ASCII) {\n        r[0] = SI;\n        r += 1;\n        state1 = STATE_ASCII;\n      }\n      r[0] = buf[0];\n      if (wc == 0x000a || wc == 0x000d) {\n        state2 = STATE2_NONE; state3 = STATE3_NONE;\n      }\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try GB 2312-1980. */\n  ret = gb2312_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (buf[0] < 0x80 && buf[1] < 0x80) {\n      int count = (state2 == STATE2_DESIGNATED_GB2312 ? 0 : 4) + (state1 == STATE_TWOBYTE ? 0 : 1) + 2;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state2 != STATE2_DESIGNATED_GB2312) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = ')';\n        r[3] = 'A';\n        r += 4;\n        state2 = STATE2_DESIGNATED_GB2312;\n      }\n      if (state1 != STATE_TWOBYTE) {\n        r[0] = SO;\n        r += 1;\n        state1 = STATE_TWOBYTE;\n      }\n      r[0] = buf[0];\n      r[1] = buf[1];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  ret = cns11643_wctomb(conv,buf,wc,3);\n  if (ret != RET_ILUNI) {\n    if (ret != 3) abort();\n\n    /* Try CNS 11643-1992 Plane 1. */\n    if (buf[0] == 1 && buf[1] < 0x80 && buf[2] < 0x80) {\n      int count = (state2 == STATE2_DESIGNATED_CNS11643_1 ? 0 : 4) + (state1 == STATE_TWOBYTE ? 0 : 1) + 2;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state2 != STATE2_DESIGNATED_CNS11643_1) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = ')';\n        r[3] = 'G';\n        r += 4;\n        state2 = STATE2_DESIGNATED_CNS11643_1;\n      }\n      if (state1 != STATE_TWOBYTE) {\n        r[0] = SO;\n        r += 1;\n        state1 = STATE_TWOBYTE;\n      }\n      r[0] = buf[1];\n      r[1] = buf[2];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n\n    /* Try CNS 11643-1992 Plane 2. */\n    if (buf[0] == 2 && buf[1] < 0x80 && buf[2] < 0x80) {\n      int count = (state3 == STATE3_DESIGNATED_CNS11643_2 ? 0 : 4) + 4;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state3 != STATE3_DESIGNATED_CNS11643_2) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '*';\n        r[3] = 'H';\n        r += 4;\n        state3 = STATE3_DESIGNATED_CNS11643_2;\n      }\n      r[0] = ESC;\n      r[1] = 'N';\n      r[2] = buf[1];\n      r[3] = buf[2];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  return RET_ILUNI;\n}\n\nstatic int\niso2022_cn_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t state = conv->ostate;\n  SPLIT_STATE;\n  (void)state2;\n  (void)state3;\n  if (state1 != STATE_ASCII) {\n    if (n < 1)\n      return RET_TOOSMALL;\n    r[0] = SI;\n    /* conv->ostate = 0; will be done by the caller */\n    return 1;\n  } else\n    return 0;\n}\n\n#undef COMBINE_STATE\n#undef SPLIT_STATE\n#undef STATE3_DESIGNATED_CNS11643_2\n#undef STATE3_NONE\n#undef STATE2_DESIGNATED_CNS11643_1\n#undef STATE2_DESIGNATED_GB2312\n#undef STATE2_NONE\n#undef STATE_TWOBYTE\n#undef STATE_ASCII\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso2022_cnext.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-2022-CN-EXT\n */\n\n/* Specification: RFC 1922 */\n\n#define ESC 0x1b\n#define SO  0x0e\n#define SI  0x0f\n\n/*\n * The state is composed of one of the following values\n */\n#define STATE_ASCII          0\n#define STATE_TWOBYTE        1\n/*\n * and one of the following values, << 8\n */\n#define STATE2_NONE                   0\n#define STATE2_DESIGNATED_GB2312      1\n#define STATE2_DESIGNATED_CNS11643_1  2\n#define STATE2_DESIGNATED_ISO_IR_165  3\n/*\n * and one of the following values, << 16\n */\n#define STATE3_NONE                   0\n#define STATE3_DESIGNATED_CNS11643_2  1\n/*\n * and one of the following values, << 24\n */\n#define STATE4_NONE                   0\n#define STATE4_DESIGNATED_CNS11643_3  1\n#define STATE4_DESIGNATED_CNS11643_4  2\n#define STATE4_DESIGNATED_CNS11643_5  3\n#define STATE4_DESIGNATED_CNS11643_6  4\n#define STATE4_DESIGNATED_CNS11643_7  5\n\n#define SPLIT_STATE \\\n  unsigned int state1 = state & 0xff, state2 = (state >> 8) & 0xff, state3 = (state >> 16) & 0xff, state4 = state >> 24\n#define COMBINE_STATE \\\n  state = (state4 << 24) | (state3 << 16) | (state2 << 8) | state1\n\nstatic int\niso2022_cn_ext_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  SPLIT_STATE;\n  int count = 0;\n  unsigned char c;\n  for (;;) {\n    c = *s;\n    if (c == ESC) {\n      if (n < count+4)\n        goto none;\n      if (s[1] == '$') {\n        if (s[2] == ')') {\n          if (s[3] == 'A') {\n            state2 = STATE2_DESIGNATED_GB2312;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          if (s[3] == 'G') {\n            state2 = STATE2_DESIGNATED_CNS11643_1;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          if (s[3] == 'E') {\n            state2 = STATE2_DESIGNATED_ISO_IR_165;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n        }\n        if (s[2] == '*') {\n          if (s[3] == 'H') {\n            state3 = STATE3_DESIGNATED_CNS11643_2;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n        }\n        if (s[2] == '+') {\n          if (s[3] == 'I') {\n            state4 = STATE4_DESIGNATED_CNS11643_3;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          if (s[3] == 'J') {\n            state4 = STATE4_DESIGNATED_CNS11643_4;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          if (s[3] == 'K') {\n            state4 = STATE4_DESIGNATED_CNS11643_5;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          if (s[3] == 'L') {\n            state4 = STATE4_DESIGNATED_CNS11643_6;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          if (s[3] == 'M') {\n            state4 = STATE4_DESIGNATED_CNS11643_7;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n        }\n      }\n      if (s[1] == 'N') {\n        switch (state3) {\n          case STATE3_NONE:\n            goto ilseq;\n          case STATE3_DESIGNATED_CNS11643_2:\n            if (s[2] < 0x80 && s[3] < 0x80) {\n              int ret = cns11643_2_mbtowc(conv,pwc,s+2,2);\n              if (ret == RET_ILSEQ)\n                goto ilseq;\n              if (ret != 2) abort();\n              COMBINE_STATE;\n              conv->istate = state;\n              return count+4;\n            } else\n              goto ilseq;\n          default: abort();\n        }\n      }\n      if (s[1] == 'O') {\n        switch (state4) {\n          case STATE4_NONE:\n            goto ilseq;\n          case STATE4_DESIGNATED_CNS11643_3:\n            if (s[2] < 0x80 && s[3] < 0x80) {\n              int ret = cns11643_3_mbtowc(conv,pwc,s+2,2);\n              if (ret == RET_ILSEQ)\n                goto ilseq;\n              if (ret != 2) abort();\n              COMBINE_STATE;\n              conv->istate = state;\n              return count+4;\n            } else\n              goto ilseq;\n          case STATE4_DESIGNATED_CNS11643_4:\n            if (s[2] < 0x80 && s[3] < 0x80) {\n              int ret = cns11643_4_mbtowc(conv,pwc,s+2,2);\n              if (ret == RET_ILSEQ)\n                goto ilseq;\n              if (ret != 2) abort();\n              COMBINE_STATE;\n              conv->istate = state;\n              return count+4;\n            } else\n              goto ilseq;\n          case STATE4_DESIGNATED_CNS11643_5:\n            if (s[2] < 0x80 && s[3] < 0x80) {\n              int ret = cns11643_5_mbtowc(conv,pwc,s+2,2);\n              if (ret == RET_ILSEQ)\n                goto ilseq;\n              if (ret != 2) abort();\n              COMBINE_STATE;\n              conv->istate = state;\n              return count+4;\n            } else\n              goto ilseq;\n          case STATE4_DESIGNATED_CNS11643_6:\n            if (s[2] < 0x80 && s[3] < 0x80) {\n              int ret = cns11643_6_mbtowc(conv,pwc,s+2,2);\n              if (ret == RET_ILSEQ)\n                goto ilseq;\n              if (ret != 2) abort();\n              COMBINE_STATE;\n              conv->istate = state;\n              return count+4;\n            } else\n              goto ilseq;\n          case STATE4_DESIGNATED_CNS11643_7:\n            if (s[2] < 0x80 && s[3] < 0x80) {\n              int ret = cns11643_7_mbtowc(conv,pwc,s+2,2);\n              if (ret == RET_ILSEQ)\n                goto ilseq;\n              if (ret != 2) abort();\n              COMBINE_STATE;\n              conv->istate = state;\n              return count+4;\n            } else\n              goto ilseq;\n          default: abort();\n        }\n      }\n      goto ilseq;\n    }\n    if (c == SO) {\n      if (state2 != STATE2_DESIGNATED_GB2312 && state2 != STATE2_DESIGNATED_CNS11643_1 && state2 != STATE2_DESIGNATED_ISO_IR_165)\n        goto ilseq;\n      state1 = STATE_TWOBYTE;\n      s++; count++;\n      if (n < count+1)\n        goto none;\n      continue;\n    }\n    if (c == SI) {\n      state1 = STATE_ASCII;\n      s++; count++;\n      if (n < count+1)\n        goto none;\n      continue;\n    }\n    break;\n  }\n  switch (state1) {\n    case STATE_ASCII:\n      if (c < 0x80) {\n        int ret = ascii_mbtowc(conv,pwc,s,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        if (*pwc == 0x000a || *pwc == 0x000d) {\n          state2 = STATE2_NONE; state3 = STATE3_NONE; state4 = STATE3_NONE;\n        }\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_TWOBYTE:\n      if (n < count+2)\n        goto none;\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret;\n        switch (state2) {\n          case STATE2_NONE:\n            goto ilseq;\n          case STATE2_DESIGNATED_GB2312:\n            ret = gb2312_mbtowc(conv,pwc,s,2); break;\n          case STATE2_DESIGNATED_CNS11643_1:\n            ret = cns11643_1_mbtowc(conv,pwc,s,2); break;\n          case STATE2_DESIGNATED_ISO_IR_165:\n            ret = isoir165_mbtowc(conv,pwc,s,2); break;\n          default: abort();\n        }\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    default: abort();\n  }\n\nnone:\n  COMBINE_STATE;\n  conv->istate = state;\n  return RET_TOOFEW(count);\n\nilseq:\n  COMBINE_STATE;\n  conv->istate = state;\n  return RET_SHIFT_ILSEQ(count);\n}\n\nstatic int\niso2022_cn_ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  state_t state = conv->ostate;\n  SPLIT_STATE;\n  unsigned char buf[3];\n  int ret;\n\n  /* There is no need to handle Unicode 3.1 tag characters and to look for\n     \"zh-CN\" or \"zh-TW\" tags, because GB2312 and CNS11643 are disjoint. */\n\n  /* Try ASCII. */\n  ret = ascii_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      int count = (state1 == STATE_ASCII ? 1 : 2);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state1 != STATE_ASCII) {\n        r[0] = SI;\n        r += 1;\n        state1 = STATE_ASCII;\n      }\n      r[0] = buf[0];\n      if (wc == 0x000a || wc == 0x000d) {\n        state2 = STATE2_NONE; state3 = STATE3_NONE; state4 = STATE3_NONE;\n      }\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try GB 2312-1980. */\n  ret = gb2312_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (buf[0] < 0x80 && buf[1] < 0x80) {\n      int count = (state2 == STATE2_DESIGNATED_GB2312 ? 0 : 4) + (state1 == STATE_TWOBYTE ? 0 : 1) + 2;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state2 != STATE2_DESIGNATED_GB2312) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = ')';\n        r[3] = 'A';\n        r += 4;\n        state2 = STATE2_DESIGNATED_GB2312;\n      }\n      if (state1 != STATE_TWOBYTE) {\n        r[0] = SO;\n        r += 1;\n        state1 = STATE_TWOBYTE;\n      }\n      r[0] = buf[0];\n      r[1] = buf[1];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  ret = cns11643_wctomb(conv,buf,wc,3);\n  if (ret != RET_ILUNI) {\n    if (ret != 3) abort();\n\n    /* Try CNS 11643-1992 Plane 1. */\n    if (buf[0] == 1 && buf[1] < 0x80 && buf[2] < 0x80) {\n      int count = (state2 == STATE2_DESIGNATED_CNS11643_1 ? 0 : 4) + (state1 == STATE_TWOBYTE ? 0 : 1) + 2;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state2 != STATE2_DESIGNATED_CNS11643_1) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = ')';\n        r[3] = 'G';\n        r += 4;\n        state2 = STATE2_DESIGNATED_CNS11643_1;\n      }\n      if (state1 != STATE_TWOBYTE) {\n        r[0] = SO;\n        r += 1;\n        state1 = STATE_TWOBYTE;\n      }\n      r[0] = buf[1];\n      r[1] = buf[2];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n\n    /* Try CNS 11643-1992 Plane 2. */\n    if (buf[0] == 2 && buf[1] < 0x80 && buf[2] < 0x80) {\n      int count = (state3 == STATE3_DESIGNATED_CNS11643_2 ? 0 : 4) + 4;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state3 != STATE3_DESIGNATED_CNS11643_2) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '*';\n        r[3] = 'H';\n        r += 4;\n        state3 = STATE3_DESIGNATED_CNS11643_2;\n      }\n      r[0] = ESC;\n      r[1] = 'N';\n      r[2] = buf[1];\n      r[3] = buf[2];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n\n    /* Try CNS 11643-1992 Plane 3. */\n    if (buf[0] == 3 && buf[1] < 0x80 && buf[2] < 0x80) {\n      int count = (state4 == STATE4_DESIGNATED_CNS11643_3 ? 0 : 4) + 4;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state4 != STATE4_DESIGNATED_CNS11643_3) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '+';\n        r[3] = 'I';\n        r += 4;\n        state4 = STATE4_DESIGNATED_CNS11643_3;\n      }\n      r[0] = ESC;\n      r[1] = 'O';\n      r[2] = buf[1];\n      r[3] = buf[2];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n\n    /* Try CNS 11643-1992 Plane 4. */\n    if (buf[0] == 4 && buf[1] < 0x80 && buf[2] < 0x80) {\n      int count = (state4 == STATE4_DESIGNATED_CNS11643_4 ? 0 : 4) + 4;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state4 != STATE4_DESIGNATED_CNS11643_4) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '+';\n        r[3] = 'J';\n        r += 4;\n        state4 = STATE4_DESIGNATED_CNS11643_4;\n      }\n      r[0] = ESC;\n      r[1] = 'O';\n      r[2] = buf[1];\n      r[3] = buf[2];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n\n    /* Try CNS 11643-1992 Plane 5. */\n    if (buf[0] == 5 && buf[1] < 0x80 && buf[2] < 0x80) {\n      int count = (state4 == STATE4_DESIGNATED_CNS11643_5 ? 0 : 4) + 4;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state4 != STATE4_DESIGNATED_CNS11643_5) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '+';\n        r[3] = 'K';\n        r += 4;\n        state4 = STATE4_DESIGNATED_CNS11643_5;\n      }\n      r[0] = ESC;\n      r[1] = 'O';\n      r[2] = buf[1];\n      r[3] = buf[2];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n\n    /* Try CNS 11643-1992 Plane 6. */\n    if (buf[0] == 6 && buf[1] < 0x80 && buf[2] < 0x80) {\n      int count = (state4 == STATE4_DESIGNATED_CNS11643_6 ? 0 : 4) + 4;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state4 != STATE4_DESIGNATED_CNS11643_6) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '+';\n        r[3] = 'L';\n        r += 4;\n        state4 = STATE4_DESIGNATED_CNS11643_6;\n      }\n      r[0] = ESC;\n      r[1] = 'O';\n      r[2] = buf[1];\n      r[3] = buf[2];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n\n    /* Try CNS 11643-1992 Plane 7. */\n    if (buf[0] == 7 && buf[1] < 0x80 && buf[2] < 0x80) {\n      int count = (state4 == STATE4_DESIGNATED_CNS11643_7 ? 0 : 4) + 4;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state4 != STATE4_DESIGNATED_CNS11643_7) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '+';\n        r[3] = 'M';\n        r += 4;\n        state4 = STATE4_DESIGNATED_CNS11643_7;\n      }\n      r[0] = ESC;\n      r[1] = 'O';\n      r[2] = buf[1];\n      r[3] = buf[2];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n\n  }\n\n  /* Try ISO-IR-165. */\n  ret = isoir165_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (buf[0] < 0x80 && buf[1] < 0x80) {\n      int count = (state2 == STATE2_DESIGNATED_ISO_IR_165 ? 0 : 4) + (state1 == STATE_TWOBYTE ? 0 : 1) + 2;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state2 != STATE2_DESIGNATED_ISO_IR_165) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = ')';\n        r[3] = 'E';\n        r += 4;\n        state2 = STATE2_DESIGNATED_ISO_IR_165;\n      }\n      if (state1 != STATE_TWOBYTE) {\n        r[0] = SO;\n        r += 1;\n        state1 = STATE_TWOBYTE;\n      }\n      r[0] = buf[0];\n      r[1] = buf[1];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  return RET_ILUNI;\n}\n\nstatic int\niso2022_cn_ext_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t state = conv->ostate;\n  SPLIT_STATE;\n  (void)state2;\n  (void)state3;\n  (void)state4;\n  if (state1 != STATE_ASCII) {\n    if (n < 1)\n      return RET_TOOSMALL;\n    r[0] = SI;\n    /* conv->ostate = 0; will be done by the caller */\n    return 1;\n  } else\n    return 0;\n}\n\n#undef COMBINE_STATE\n#undef SPLIT_STATE\n#undef STATE4_DESIGNATED_CNS11643_7\n#undef STATE4_DESIGNATED_CNS11643_6\n#undef STATE4_DESIGNATED_CNS11643_5\n#undef STATE4_DESIGNATED_CNS11643_4\n#undef STATE4_DESIGNATED_CNS11643_3\n#undef STATE4_NONE\n#undef STATE3_DESIGNATED_CNS11643_2\n#undef STATE3_NONE\n#undef STATE2_DESIGNATED_ISO_IR_165\n#undef STATE2_DESIGNATED_CNS11643_1\n#undef STATE2_DESIGNATED_GB2312\n#undef STATE2_NONE\n#undef STATE_TWOBYTE\n#undef STATE_ASCII\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso2022_jp.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-2022-JP\n */\n\n/* Specification: RFC 1468 */\n\n#define ESC 0x1b\n\n/*\n * The state can be one of the following values.\n */\n#define STATE_ASCII          0\n#define STATE_JISX0201ROMAN  1\n#define STATE_JISX0208       2\n\nstatic int\niso2022_jp_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  int count = 0;\n  unsigned char c;\n  for (;;) {\n    c = *s;\n    if (c == ESC) {\n      if (n < count+3)\n        goto none;\n      if (s[1] == '(') {\n        if (s[2] == 'B') {\n          state = STATE_ASCII;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (s[2] == 'J') {\n          state = STATE_JISX0201ROMAN;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        goto ilseq;\n      }\n      if (s[1] == '$') {\n        if (s[2] == '@' || s[2] == 'B') {\n          /* We don't distinguish JIS X 0208-1978 and JIS X 0208-1983. */\n          state = STATE_JISX0208;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        goto ilseq;\n      }\n      goto ilseq;\n    }\n    break;\n  }\n  switch (state) {\n    case STATE_ASCII:\n      if (c < 0x80) {\n        int ret = ascii_mbtowc(conv,pwc,s,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_JISX0201ROMAN:\n      if (c < 0x80) {\n        int ret = jisx0201_mbtowc(conv,pwc,s,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_JISX0208:\n      if (n < count+2)\n        goto none;\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret = jisx0208_mbtowc(conv,pwc,s,2);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    default: abort();\n  }\n\nnone:\n  conv->istate = state;\n  return RET_TOOFEW(count);\n\nilseq:\n  conv->istate = state;\n  return RET_SHIFT_ILSEQ(count);\n}\n\nstatic int\niso2022_jp_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  state_t state = conv->ostate;\n  unsigned char buf[2];\n  int ret;\n\n  /* Try ASCII. */\n  ret = ascii_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      int count = (state == STATE_ASCII ? 1 : 4);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_ASCII) {\n        r[0] = ESC;\n        r[1] = '(';\n        r[2] = 'B';\n        r += 3;\n        state = STATE_ASCII;\n      }\n      r[0] = buf[0];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try JIS X 0201-1976 Roman. */\n  ret = jisx0201_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      int count = (state == STATE_JISX0201ROMAN ? 1 : 4);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_JISX0201ROMAN) {\n        r[0] = ESC;\n        r[1] = '(';\n        r[2] = 'J';\n        r += 3;\n        state = STATE_JISX0201ROMAN;\n      }\n      r[0] = buf[0];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try JIS X 0208-1990 in place of JIS X 0208-1978 and JIS X 0208-1983. */\n  ret = jisx0208_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (buf[0] < 0x80 && buf[1] < 0x80) {\n      int count = (state == STATE_JISX0208 ? 2 : 5);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_JISX0208) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = 'B';\n        r += 3;\n        state = STATE_JISX0208;\n      }\n      r[0] = buf[0];\n      r[1] = buf[1];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  return RET_ILUNI;\n}\n\nstatic int\niso2022_jp_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t state = conv->ostate;\n  if (state != STATE_ASCII) {\n    if (n < 3)\n      return RET_TOOSMALL;\n    r[0] = ESC;\n    r[1] = '(';\n    r[2] = 'B';\n    /* conv->ostate = 0; will be done by the caller */\n    return 3;\n  } else\n    return 0;\n}\n\n#undef STATE_JISX0208\n#undef STATE_JISX0201ROMAN\n#undef STATE_ASCII\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso2022_jp1.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-2022-JP-1\n */\n\n/* Specification: RFC 2237 */\n\n#define ESC 0x1b\n\n/*\n * The state can be one of the following values.\n */\n#define STATE_ASCII          0\n#define STATE_JISX0201ROMAN  1\n#define STATE_JISX0208       2\n#define STATE_JISX0212       3\n\nstatic int\niso2022_jp1_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  int count = 0;\n  unsigned char c;\n  for (;;) {\n    c = *s;\n    if (c == ESC) {\n      if (n < count+3)\n        goto none;\n      if (s[1] == '(') {\n        if (s[2] == 'B') {\n          state = STATE_ASCII;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (s[2] == 'J') {\n          state = STATE_JISX0201ROMAN;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        goto ilseq;\n      }\n      if (s[1] == '$') {\n        if (s[2] == '@' || s[2] == 'B') {\n          /* We don't distinguish JIS X 0208-1978 and JIS X 0208-1983. */\n          state = STATE_JISX0208;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (s[2] == '(') {\n          if (n < count+4)\n            goto none;\n          if (s[3] == 'D') {\n            state = STATE_JISX0212;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n        }\n        goto ilseq;\n      }\n      goto ilseq;\n    }\n    break;\n  }\n  switch (state) {\n    case STATE_ASCII:\n      if (c < 0x80) {\n        int ret = ascii_mbtowc(conv,pwc,s,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_JISX0201ROMAN:\n      if (c < 0x80) {\n        int ret = jisx0201_mbtowc(conv,pwc,s,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_JISX0208:\n      if (n < count+2)\n        goto none;\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret = jisx0208_mbtowc(conv,pwc,s,2);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    case STATE_JISX0212:\n      if (n < count+2)\n        goto none;\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret = jisx0212_mbtowc(conv,pwc,s,2);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    default: abort();\n  }\n\nnone:\n  conv->istate = state;\n  return RET_TOOFEW(count);\n\nilseq:\n  conv->istate = state;\n  return RET_SHIFT_ILSEQ(count);\n}\n\nstatic int\niso2022_jp1_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  state_t state = conv->ostate;\n  unsigned char buf[2];\n  int ret;\n\n  /* Try ASCII. */\n  ret = ascii_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      int count = (state == STATE_ASCII ? 1 : 4);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_ASCII) {\n        r[0] = ESC;\n        r[1] = '(';\n        r[2] = 'B';\n        r += 3;\n        state = STATE_ASCII;\n      }\n      r[0] = buf[0];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try JIS X 0201-1976 Roman. */\n  ret = jisx0201_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      int count = (state == STATE_JISX0201ROMAN ? 1 : 4);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_JISX0201ROMAN) {\n        r[0] = ESC;\n        r[1] = '(';\n        r[2] = 'J';\n        r += 3;\n        state = STATE_JISX0201ROMAN;\n      }\n      r[0] = buf[0];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try JIS X 0208-1990 in place of JIS X 0208-1978 and JIS X 0208-1983. */\n  ret = jisx0208_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (buf[0] < 0x80 && buf[1] < 0x80) {\n      int count = (state == STATE_JISX0208 ? 2 : 5);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_JISX0208) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = 'B';\n        r += 3;\n        state = STATE_JISX0208;\n      }\n      r[0] = buf[0];\n      r[1] = buf[1];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try JIS X 0212-1990. */\n  ret = jisx0212_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (buf[0] < 0x80 && buf[1] < 0x80) {\n      int count = (state == STATE_JISX0212 ? 2 : 6);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_JISX0212) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '(';\n        r[3] = 'D';\n        r += 4;\n        state = STATE_JISX0212;\n      }\n      r[0] = buf[0];\n      r[1] = buf[1];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  return RET_ILUNI;\n}\n\nstatic int\niso2022_jp1_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t state = conv->ostate;\n  if (state != STATE_ASCII) {\n    if (n < 3)\n      return RET_TOOSMALL;\n    r[0] = ESC;\n    r[1] = '(';\n    r[2] = 'B';\n    /* conv->ostate = 0; will be done by the caller */\n    return 3;\n  } else\n    return 0;\n}\n\n#undef STATE_JISX0212\n#undef STATE_JISX0208\n#undef STATE_JISX0201ROMAN\n#undef STATE_ASCII\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso2022_jp2.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-2022-JP-2\n */\n\n/* Specification: RFC 1554 */\n/* ESC '(' 'I' for JISX0201 Katakana is an extension not found in RFC 1554 or\n   CJK.INF, but implemented in glibc-2.1 and qt-2.0. */\n\n#define ESC 0x1b\n\n/*\n * The state is composed of one of the following values\n */\n#define STATE_ASCII             0\n#define STATE_JISX0201ROMAN     1\n#define STATE_JISX0201KATAKANA  2\n#define STATE_JISX0208          3\n#define STATE_JISX0212          4\n#define STATE_GB2312            5\n#define STATE_KSC5601           6\n/*\n * and one of the following values, << 8\n */\n#define STATE_G2_NONE           0\n#define STATE_G2_ISO8859_1      1\n#define STATE_G2_ISO8859_7      2\n\n#define SPLIT_STATE \\\n  unsigned int state1 = state & 0xff, state2 = state >> 8\n#define COMBINE_STATE \\\n  state = (state2 << 8) | state1\n\nstatic int\niso2022_jp2_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  SPLIT_STATE;\n  int count = 0;\n  unsigned char c;\n  for (;;) {\n    c = *s;\n    if (c == ESC) {\n      if (n < count+3)\n        goto none;\n      if (s[1] == '(') {\n        if (s[2] == 'B') {\n          state1 = STATE_ASCII;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (s[2] == 'J') {\n          state1 = STATE_JISX0201ROMAN;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (s[2] == 'I') {\n          state1 = STATE_JISX0201KATAKANA;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        goto ilseq;\n      }\n      if (s[1] == '$') {\n        if (s[2] == '@' || s[2] == 'B') {\n          /* We don't distinguish JIS X 0208-1978 and JIS X 0208-1983. */\n          state1 = STATE_JISX0208;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (s[2] == 'A') {\n          state1 = STATE_GB2312;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (s[2] == '(') {\n          if (n < count+4)\n            goto none;\n          if (s[3] == 'D') {\n            state1 = STATE_JISX0212;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          if (s[3] == 'C') {\n            state1 = STATE_KSC5601;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          goto ilseq;\n        }\n        goto ilseq;\n      }\n      if (s[1] == '.') {\n        if (n < count+3)\n          goto none;\n        if (s[2] == 'A') {\n          state2 = STATE_G2_ISO8859_1;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (s[2] == 'F') {\n          state2 = STATE_G2_ISO8859_7;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        goto ilseq;\n      }\n      if (s[1] == 'N') {\n        switch (state2) {\n          case STATE_G2_NONE:\n            goto ilseq;\n          case STATE_G2_ISO8859_1:\n            if (s[2] < 0x80) {\n              unsigned char buf = s[2]+0x80;\n              int ret = iso8859_1_mbtowc(conv,pwc,&buf,1);\n              if (ret == RET_ILSEQ)\n                goto ilseq;\n              if (ret != 1) abort();\n              COMBINE_STATE;\n              conv->istate = state;\n              return count+3;\n            } else\n              goto ilseq;\n          case STATE_G2_ISO8859_7:\n            if (s[2] < 0x80) {\n              unsigned char buf = s[2]+0x80;\n              int ret = iso8859_7_mbtowc(conv,pwc,&buf,1);\n              if (ret == RET_ILSEQ)\n                goto ilseq;\n              if (ret != 1) abort();\n              COMBINE_STATE;\n              conv->istate = state;\n              return count+3;\n            } else\n              goto ilseq;\n          default: abort();\n        }\n      }\n      goto ilseq;\n    }\n    break;\n  }\n  switch (state1) {\n    case STATE_ASCII:\n      if (c < 0x80) {\n        int ret = ascii_mbtowc(conv,pwc,s,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        if (*pwc == 0x000a || *pwc == 0x000d)\n          state2 = STATE_G2_NONE;\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_JISX0201ROMAN:\n      if (c < 0x80) {\n        int ret = jisx0201_mbtowc(conv,pwc,s,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        if (*pwc == 0x000a || *pwc == 0x000d)\n          state2 = STATE_G2_NONE;\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_JISX0201KATAKANA:\n      if (c < 0x80) {\n        unsigned char buf = c+0x80;\n        int ret = jisx0201_mbtowc(conv,pwc,&buf,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_JISX0208:\n      if (n < count+2)\n        goto none;\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret = jisx0208_mbtowc(conv,pwc,s,2);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    case STATE_JISX0212:\n      if (n < count+2)\n        goto none;\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret = jisx0212_mbtowc(conv,pwc,s,2);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    case STATE_GB2312:\n      if (n < count+2)\n        goto none;\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret = gb2312_mbtowc(conv,pwc,s,2);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    case STATE_KSC5601:\n      if (n < count+2)\n        goto none;\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret = ksc5601_mbtowc(conv,pwc,s,2);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    default: abort();\n  }\n\nnone:\n  COMBINE_STATE;\n  conv->istate = state;\n  return RET_TOOFEW(count);\n\nilseq:\n  COMBINE_STATE;\n  conv->istate = state;\n  return RET_SHIFT_ILSEQ(count);\n}\n\n#undef COMBINE_STATE\n#undef SPLIT_STATE\n\n/*\n * The state can also contain one of the following values, << 16.\n * Values >= STATE_TAG_LANGUAGE are temporary tag parsing states.\n */\n#define STATE_TAG_NONE          0\n#define STATE_TAG_LANGUAGE      4\n#define STATE_TAG_LANGUAGE_j    5\n#define STATE_TAG_LANGUAGE_ja   1\n#define STATE_TAG_LANGUAGE_k    6\n#define STATE_TAG_LANGUAGE_ko   2\n#define STATE_TAG_LANGUAGE_z    7\n#define STATE_TAG_LANGUAGE_zh   3\n\n#define SPLIT_STATE \\\n  unsigned int state1 = state & 0xff, state2 = (state >> 8) & 0xff, state3 = state >> 16\n#define COMBINE_STATE \\\n  state = (state3 << 16) | (state2 << 8) | state1\n\nstatic int\niso2022_jp2_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  state_t state = conv->ostate;\n  SPLIT_STATE;\n  unsigned char buf[2];\n  int ret;\n  /* This defines the conversion preferences depending on the current\n     langauge tag. */\n  enum conversion { none = 0, european, japanese, chinese, korean, other };\n  static const unsigned int conversion_lists[STATE_TAG_LANGUAGE] = {\n    /* STATE_TAG_NONE */\n    japanese + (european << 3) + (chinese << 6) + (korean << 9) + (other << 12),\n    /* STATE_TAG_LANGUAGE_ja */\n    japanese + (european << 3) + (chinese << 6) + (korean << 9) + (other << 12),\n    /* STATE_TAG_LANGUAGE_ko */\n    korean + (european << 3) + (japanese << 6) + (chinese << 9) + (other << 12),\n    /* STATE_TAG_LANGUAGE_zh */\n    chinese + (european << 3) + (japanese << 6) + (korean << 9) + (other << 12)\n  };\n  unsigned int conversion_list;\n\n  /* Handle Unicode tag characters (range U+E0000..U+E007F). */\n  if ((wc >> 7) == (0xe0000 >> 7)) {\n    char c = wc & 0x7f;\n    if (c >= 'A' && c <= 'Z')\n      c += 'a'-'A';\n    switch (c) {\n      case 0x01:\n        state3 = STATE_TAG_LANGUAGE;\n        COMBINE_STATE;\n        conv->ostate = state;\n        return 0;\n      case 'j':\n        if (state3 == STATE_TAG_LANGUAGE) {\n          state3 = STATE_TAG_LANGUAGE_j;\n          COMBINE_STATE;\n          conv->ostate = state;\n          return 0;\n        }\n        break;\n      case 'a':\n        if (state3 == STATE_TAG_LANGUAGE_j) {\n          state3 = STATE_TAG_LANGUAGE_ja;\n          COMBINE_STATE;\n          conv->ostate = state;\n          return 0;\n        }\n        break;\n      case 'k':\n        if (state3 == STATE_TAG_LANGUAGE) {\n          state3 = STATE_TAG_LANGUAGE_k;\n          COMBINE_STATE;\n          conv->ostate = state;\n          return 0;\n        }\n        break;\n      case 'o':\n        if (state3 == STATE_TAG_LANGUAGE_k) {\n          state3 = STATE_TAG_LANGUAGE_ko;\n          COMBINE_STATE;\n          conv->ostate = state;\n          return 0;\n        }\n        break;\n      case 'z':\n        if (state3 == STATE_TAG_LANGUAGE) {\n          state3 = STATE_TAG_LANGUAGE_z;\n          COMBINE_STATE;\n          conv->ostate = state;\n          return 0;\n        }\n        break;\n      case 'h':\n        if (state3 == STATE_TAG_LANGUAGE_z) {\n          state3 = STATE_TAG_LANGUAGE_zh;\n          COMBINE_STATE;\n          conv->ostate = state;\n          return 0;\n        }\n        break;\n      case 0x7f:\n        state3 = STATE_TAG_NONE;\n        COMBINE_STATE;\n        conv->ostate = state;\n        return 0;\n      default:\n        break;\n    }\n    /* Other tag characters reset the tag parsing state or are ignored. */\n    if (state3 >= STATE_TAG_LANGUAGE)\n      state3 = STATE_TAG_NONE;\n    COMBINE_STATE;\n    conv->ostate = state;\n    return 0;\n  }\n  if (state3 >= STATE_TAG_LANGUAGE)\n    state3 = STATE_TAG_NONE;\n\n  /* Try ASCII. */\n  ret = ascii_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      int count = (state1 == STATE_ASCII ? 1 : 4);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state1 != STATE_ASCII) {\n        r[0] = ESC;\n        r[1] = '(';\n        r[2] = 'B';\n        r += 3;\n        state1 = STATE_ASCII;\n      }\n      r[0] = buf[0];\n      if (wc == 0x000a || wc == 0x000d)\n        state2 = STATE_G2_NONE;\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  conversion_list = conversion_lists[state3];\n\n  do {\n    switch (conversion_list & ((1 << 3) - 1)) {\n\n      case european:\n\n        /* Try ISO-8859-1. */\n        ret = iso8859_1_wctomb(conv,buf,wc,1);\n        if (ret != RET_ILUNI) {\n          if (ret != 1) abort();\n          if (buf[0] >= 0x80) {\n            int count = (state2 == STATE_G2_ISO8859_1 ? 3 : 6);\n            if (n < count)\n              return RET_TOOSMALL;\n            if (state2 != STATE_G2_ISO8859_1) {\n              r[0] = ESC;\n              r[1] = '.';\n              r[2] = 'A';\n              r += 3;\n              state2 = STATE_G2_ISO8859_1;\n            }\n            r[0] = ESC;\n            r[1] = 'N';\n            r[2] = buf[0]-0x80;\n            COMBINE_STATE;\n            conv->ostate = state;\n            return count;\n          }\n        }\n\n        /* Try ISO-8859-7. */\n        ret = iso8859_7_wctomb(conv,buf,wc,1);\n        if (ret != RET_ILUNI) {\n          if (ret != 1) abort();\n          if (buf[0] >= 0x80) {\n            int count = (state2 == STATE_G2_ISO8859_7 ? 3 : 6);\n            if (n < count)\n              return RET_TOOSMALL;\n            if (state2 != STATE_G2_ISO8859_7) {\n              r[0] = ESC;\n              r[1] = '.';\n              r[2] = 'F';\n              r += 3;\n              state2 = STATE_G2_ISO8859_7;\n            }\n            r[0] = ESC;\n            r[1] = 'N';\n            r[2] = buf[0]-0x80;\n            COMBINE_STATE;\n            conv->ostate = state;\n            return count;\n          }\n        }\n\n        break;\n\n      case japanese:\n\n        /* Try JIS X 0201-1976 Roman. */\n        ret = jisx0201_wctomb(conv,buf,wc,1);\n        if (ret != RET_ILUNI) {\n          if (ret != 1) abort();\n          if (buf[0] < 0x80) {\n            int count = (state1 == STATE_JISX0201ROMAN ? 1 : 4);\n            if (n < count)\n              return RET_TOOSMALL;\n            if (state1 != STATE_JISX0201ROMAN) {\n              r[0] = ESC;\n              r[1] = '(';\n              r[2] = 'J';\n              r += 3;\n              state1 = STATE_JISX0201ROMAN;\n            }\n            r[0] = buf[0];\n            if (wc == 0x000a || wc == 0x000d)\n              state2 = STATE_G2_NONE;\n            COMBINE_STATE;\n            conv->ostate = state;\n            return count;\n          }\n        }\n\n        /* Try JIS X 0208-1990 in place of JIS X 0208-1978 and\n           JIS X 0208-1983. */\n        ret = jisx0208_wctomb(conv,buf,wc,2);\n        if (ret != RET_ILUNI) {\n          if (ret != 2) abort();\n          if (buf[0] < 0x80 && buf[1] < 0x80) {\n            int count = (state1 == STATE_JISX0208 ? 2 : 5);\n            if (n < count)\n              return RET_TOOSMALL;\n            if (state1 != STATE_JISX0208) {\n              r[0] = ESC;\n              r[1] = '$';\n              r[2] = 'B';\n              r += 3;\n              state1 = STATE_JISX0208;\n            }\n            r[0] = buf[0];\n            r[1] = buf[1];\n            COMBINE_STATE;\n            conv->ostate = state;\n            return count;\n          }\n        }\n\n        /* Try JIS X 0212-1990. */\n        ret = jisx0212_wctomb(conv,buf,wc,2);\n        if (ret != RET_ILUNI) {\n          if (ret != 2) abort();\n          if (buf[0] < 0x80 && buf[1] < 0x80) {\n            int count = (state1 == STATE_JISX0212 ? 2 : 6);\n            if (n < count)\n              return RET_TOOSMALL;\n            if (state1 != STATE_JISX0212) {\n              r[0] = ESC;\n              r[1] = '$';\n              r[2] = '(';\n              r[3] = 'D';\n              r += 4;\n              state1 = STATE_JISX0212;\n            }\n            r[0] = buf[0];\n            r[1] = buf[1];\n            COMBINE_STATE;\n            conv->ostate = state;\n            return count;\n          }\n        }\n\n        break;\n\n      case chinese:\n\n        /* Try GB 2312-1980. */\n        ret = gb2312_wctomb(conv,buf,wc,2);\n        if (ret != RET_ILUNI) {\n          if (ret != 2) abort();\n          if (buf[0] < 0x80 && buf[1] < 0x80) {\n            int count = (state1 == STATE_GB2312 ? 2 : 5);\n            if (n < count)\n              return RET_TOOSMALL;\n            if (state1 != STATE_GB2312) {\n              r[0] = ESC;\n              r[1] = '$';\n              r[2] = 'A';\n              r += 3;\n              state1 = STATE_GB2312;\n            }\n            r[0] = buf[0];\n            r[1] = buf[1];\n            COMBINE_STATE;\n            conv->ostate = state;\n            return count;\n          }\n        }\n\n        break;\n\n      case korean:\n\n        /* Try KS C 5601-1992. */\n        ret = ksc5601_wctomb(conv,buf,wc,2);\n        if (ret != RET_ILUNI) {\n          if (ret != 2) abort();\n          if (buf[0] < 0x80 && buf[1] < 0x80) {\n            int count = (state1 == STATE_KSC5601 ? 2 : 6);\n            if (n < count)\n              return RET_TOOSMALL;\n            if (state1 != STATE_KSC5601) {\n              r[0] = ESC;\n              r[1] = '$';\n              r[2] = '(';\n              r[3] = 'C';\n              r += 4;\n              state1 = STATE_KSC5601;\n            }\n            r[0] = buf[0];\n            r[1] = buf[1];\n            COMBINE_STATE;\n            conv->ostate = state;\n            return count;\n          }\n        }\n\n        break;\n\n      case other:\n\n        /* Try JIS X 0201-1976 Kana. This is not officially part of\n           ISO-2022-JP-2, according to RFC 1554. Therefore we try this\n           only after all other attempts. */\n        ret = jisx0201_wctomb(conv,buf,wc,1);\n        if (ret != RET_ILUNI) {\n          if (ret != 1) abort();\n          if (buf[0] >= 0x80) {\n            int count = (state1 == STATE_JISX0201KATAKANA ? 1 : 4);\n            if (n < count)\n              return RET_TOOSMALL;\n            if (state1 != STATE_JISX0201KATAKANA) {\n              r[0] = ESC;\n              r[1] = '(';\n              r[2] = 'I';\n              r += 3;\n              state1 = STATE_JISX0201KATAKANA;\n            }\n            r[0] = buf[0]-0x80;\n            COMBINE_STATE;\n            conv->ostate = state;\n            return count;\n          }\n        }\n\n        break;\n\n      default:\n        abort();\n    }\n\n    conversion_list = conversion_list >> 3;\n  } while (conversion_list != 0);\n\n  return RET_ILUNI;\n}\n\nstatic int\niso2022_jp2_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t state = conv->ostate;\n  SPLIT_STATE;\n  (void)state2;\n  (void)state3;\n  if (state1 != STATE_ASCII) {\n    if (n < 3)\n      return RET_TOOSMALL;\n    r[0] = ESC;\n    r[1] = '(';\n    r[2] = 'B';\n    /* conv->ostate = 0; will be done by the caller */\n    return 3;\n  } else\n    return 0;\n}\n\n#undef COMBINE_STATE\n#undef SPLIT_STATE\n#undef STATE_TAG_LANGUAGE_zh\n#undef STATE_TAG_LANGUAGE_z\n#undef STATE_TAG_LANGUAGE_ko\n#undef STATE_TAG_LANGUAGE_k\n#undef STATE_TAG_LANGUAGE_ja\n#undef STATE_TAG_LANGUAGE_j\n#undef STATE_TAG_LANGUAGE\n#undef STATE_TAG_NONE\n#undef STATE_G2_ISO8859_7\n#undef STATE_G2_ISO8859_1\n#undef STATE_G2_NONE\n#undef STATE_KSC5601\n#undef STATE_GB2312\n#undef STATE_JISX0212\n#undef STATE_JISX0208\n#undef STATE_JISX0201KATAKANA\n#undef STATE_JISX0201ROMAN\n#undef STATE_ASCII\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso2022_jp3.h",
    "content": "/*\n * Copyright (C) 1999-2004, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-2022-JP-3\n */\n\n#include \"jisx0213.h\"\n\n#define ESC 0x1b\n\n/*\n * The state is composed of one of the following values\n */\n#define STATE_ASCII             0  /* Esc ( B */\n#define STATE_JISX0201ROMAN     1  /* Esc ( J */\n#define STATE_JISX0201KATAKANA  2  /* Esc ( I */\n#define STATE_JISX0208          3  /* Esc $ @ or Esc $ B */\n#define STATE_JISX02131         4  /* Esc $ ( O or Esc $ ( Q*/\n#define STATE_JISX02132         5  /* Esc $ ( P */\n\n/*\n * In the ISO-2022-JP-3 to UCS-4 direction, the state also holds the last\n * character to be output, shifted by 3 bits.\n */\n\nstatic int\niso2022_jp3_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  ucs4_t last_wc = conv->istate >> 3;\n  if (last_wc) {\n    /* Output the buffered character. */\n    conv->istate &= 7;\n    *pwc = last_wc;\n    return 0; /* Don't advance the input pointer. */\n  } else {\n    state_t state = conv->istate;\n    int count = 0;\n    unsigned char c;\n    for (;;) {\n      c = *s;\n      if (c == ESC) {\n        if (n < count+3)\n          goto none;\n        if (s[1] == '(') {\n          if (s[2] == 'B') {\n            state = STATE_ASCII;\n            s += 3; count += 3;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          if (s[2] == 'J') {\n            state = STATE_JISX0201ROMAN;\n            s += 3; count += 3;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          if (s[2] == 'I') {\n            state = STATE_JISX0201KATAKANA;\n            s += 3; count += 3;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          goto ilseq;\n        }\n        if (s[1] == '$') {\n          if (s[2] == '@' || s[2] == 'B') {\n            /* We don't distinguish JIS X 0208-1978 and JIS X 0208-1983. */\n            state = STATE_JISX0208;\n            s += 3; count += 3;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n          if (s[2] == '(') {\n            if (n < count+4)\n              goto none;\n            if (s[3] == 'O' || s[3] == 'Q') {\n              state = STATE_JISX02131;\n              s += 4; count += 4;\n              if (n < count+1)\n                goto none;\n              continue;\n            }\n            if (s[3] == 'P') {\n              state = STATE_JISX02132;\n              s += 4; count += 4;\n              if (n < count+1)\n                goto none;\n              continue;\n            }\n          }\n          goto ilseq;\n        }\n        goto ilseq;\n      }\n      break;\n    }\n    switch (state) {\n      case STATE_ASCII:\n        if (c < 0x80) {\n          int ret = ascii_mbtowc(conv,pwc,s,1);\n          if (ret == RET_ILSEQ)\n            goto ilseq;\n          if (ret != 1) abort();\n          conv->istate = state;\n          return count+1;\n        } else\n          goto ilseq;\n      case STATE_JISX0201ROMAN:\n        if (c < 0x80) {\n          int ret = jisx0201_mbtowc(conv,pwc,s,1);\n          if (ret == RET_ILSEQ)\n            goto ilseq;\n          if (ret != 1) abort();\n          conv->istate = state;\n          return count+1;\n        } else\n          goto ilseq;\n      case STATE_JISX0201KATAKANA:\n        if (c < 0x80) {\n          unsigned char buf = c+0x80;\n          int ret = jisx0201_mbtowc(conv,pwc,&buf,1);\n          if (ret == RET_ILSEQ)\n            goto ilseq;\n          if (ret != 1) abort();\n          conv->istate = state;\n          return count+1;\n        } else\n          goto ilseq;\n      case STATE_JISX0208:\n        if (n < count+2)\n          goto none;\n        if (s[0] < 0x80 && s[1] < 0x80) {\n          int ret = jisx0208_mbtowc(conv,pwc,s,2);\n          if (ret == RET_ILSEQ)\n            goto ilseq;\n          if (ret != 2) abort();\n          conv->istate = state;\n          return count+2;\n        } else\n          goto ilseq;\n      case STATE_JISX02131:\n      case STATE_JISX02132:\n        if (n < count+2)\n          goto none;\n        if (s[0] < 0x80 && s[1] < 0x80) {\n          ucs4_t wc = jisx0213_to_ucs4(((state-STATE_JISX02131+1)<<8)+s[0],s[1]);\n          if (wc) {\n            if (wc < 0x80) {\n              /* It's a combining character. */\n              ucs4_t wc1 = jisx0213_to_ucs_combining[wc - 1][0];\n              ucs4_t wc2 = jisx0213_to_ucs_combining[wc - 1][1];\n              /* We cannot output two Unicode characters at once. So,\n                 output the first character and buffer the second one. */\n              *pwc = wc1;\n              conv->istate = (wc2 << 3) | state;\n            } else {\n              *pwc = wc;\n              conv->istate = state;\n            }\n            return count+2;\n          }\n        }\n        goto ilseq;\n      default: abort();\n    }\n  none:\n    conv->istate = state;\n    return RET_TOOFEW(count);\n\n  ilseq:\n    conv->istate = state;\n    return RET_SHIFT_ILSEQ(count);\n  }\n}\n\nstatic int\niso2022_jp3_flushwc (conv_t conv, ucs4_t *pwc)\n{\n  ucs4_t last_wc = conv->istate >> 3;\n  if (last_wc) {\n    /* Output the buffered character. */\n    conv->istate &= 7;\n    *pwc = last_wc;\n    return 1;\n  } else\n    return 0;\n}\n\n/*\n * In the UCS-4 to ISO-2022-JP-3 direction, the state also holds the last two\n * bytes to be output, shifted by 3 bits, and the STATE_xxxxx value that was\n * effective before this buffered character, shifted by 19 bits.\n */\n\n/* Composition tables for each of the relevant combining characters.  */\nstatic const struct { unsigned short base; unsigned short composed; } iso2022_jp3_comp_table_data[] = {\n#define iso2022_jp3_comp_table02e5_idx 0\n#define iso2022_jp3_comp_table02e5_len 1\n  { 0x2b64, 0x2b65 }, /* 0x12B65 = 0x12B64 U+02E5 */\n#define iso2022_jp3_comp_table02e9_idx (iso2022_jp3_comp_table02e5_idx+iso2022_jp3_comp_table02e5_len)\n#define iso2022_jp3_comp_table02e9_len 1\n  { 0x2b60, 0x2b66 }, /* 0x12B66 = 0x12B60 U+02E9 */\n#define iso2022_jp3_comp_table0300_idx (iso2022_jp3_comp_table02e9_idx+iso2022_jp3_comp_table02e9_len)\n#define iso2022_jp3_comp_table0300_len 5\n  { 0x295c, 0x2b44 }, /* 0x12B44 = 0x1295C U+0300 */\n  { 0x2b38, 0x2b48 }, /* 0x12B48 = 0x12B38 U+0300 */\n  { 0x2b37, 0x2b4a }, /* 0x12B4A = 0x12B37 U+0300 */\n  { 0x2b30, 0x2b4c }, /* 0x12B4C = 0x12B30 U+0300 */\n  { 0x2b43, 0x2b4e }, /* 0x12B4E = 0x12B43 U+0300 */\n#define iso2022_jp3_comp_table0301_idx (iso2022_jp3_comp_table0300_idx+iso2022_jp3_comp_table0300_len)\n#define iso2022_jp3_comp_table0301_len 4\n  { 0x2b38, 0x2b49 }, /* 0x12B49 = 0x12B38 U+0301 */\n  { 0x2b37, 0x2b4b }, /* 0x12B4B = 0x12B37 U+0301 */\n  { 0x2b30, 0x2b4d }, /* 0x12B4D = 0x12B30 U+0301 */\n  { 0x2b43, 0x2b4f }, /* 0x12B4F = 0x12B43 U+0301 */\n#define iso2022_jp3_comp_table309a_idx (iso2022_jp3_comp_table0301_idx+iso2022_jp3_comp_table0301_len)\n#define iso2022_jp3_comp_table309a_len 14\n  { 0x242b, 0x2477 }, /* 0x12477 = 0x1242B U+309A */\n  { 0x242d, 0x2478 }, /* 0x12478 = 0x1242D U+309A */\n  { 0x242f, 0x2479 }, /* 0x12479 = 0x1242F U+309A */\n  { 0x2431, 0x247a }, /* 0x1247A = 0x12431 U+309A */\n  { 0x2433, 0x247b }, /* 0x1247B = 0x12433 U+309A */\n  { 0x252b, 0x2577 }, /* 0x12577 = 0x1252B U+309A */\n  { 0x252d, 0x2578 }, /* 0x12578 = 0x1252D U+309A */\n  { 0x252f, 0x2579 }, /* 0x12579 = 0x1252F U+309A */\n  { 0x2531, 0x257a }, /* 0x1257A = 0x12531 U+309A */\n  { 0x2533, 0x257b }, /* 0x1257B = 0x12533 U+309A */\n  { 0x253b, 0x257c }, /* 0x1257C = 0x1253B U+309A */\n  { 0x2544, 0x257d }, /* 0x1257D = 0x12544 U+309A */\n  { 0x2548, 0x257e }, /* 0x1257E = 0x12548 U+309A */\n  { 0x2675, 0x2678 }, /* 0x12678 = 0x12675 U+309A */\n};\n\n#define SPLIT_STATE \\\n  unsigned short lasttwo = state >> 3; state_t prevstate = state >> 19; state &= 7\n#define COMBINE_STATE \\\n  state |= (prevstate << 19) | (lasttwo << 3)\n#define COMBINE_STATE_NO_LASTTWO \\\n  /* assume lasttwo == 0, then prevstate is ignored */\n\nstatic int\niso2022_jp3_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  int count = 0;\n  unsigned char buf[2];\n  unsigned short jch;\n  int ret;\n  state_t state = conv->ostate;\n  SPLIT_STATE;\n\n  if (lasttwo) {\n    /* Attempt to combine the last character with this one. */\n    unsigned int idx;\n    unsigned int len;\n\n    if (wc == 0x02e5)\n      idx = iso2022_jp3_comp_table02e5_idx,\n      len = iso2022_jp3_comp_table02e5_len;\n    else if (wc == 0x02e9)\n      idx = iso2022_jp3_comp_table02e9_idx,\n      len = iso2022_jp3_comp_table02e9_len;\n    else if (wc == 0x0300)\n      idx = iso2022_jp3_comp_table0300_idx,\n      len = iso2022_jp3_comp_table0300_len;\n    else if (wc == 0x0301)\n      idx = iso2022_jp3_comp_table0301_idx,\n      len = iso2022_jp3_comp_table0301_len;\n    else if (wc == 0x309a)\n      idx = iso2022_jp3_comp_table309a_idx,\n      len = iso2022_jp3_comp_table309a_len;\n    else\n      goto not_combining;\n\n    do\n      if (iso2022_jp3_comp_table_data[idx].base == lasttwo)\n        break;\n    while (++idx, --len > 0);\n\n    if (len > 0) {\n      /* Output the combined character. */\n      /* We know the combined character is in JISX0213 plane 1, but\n         the buffered character may have been in JISX0208 or in\n         JISX0213 plane 1. */\n      count = (state != STATE_JISX02131 ? 4 : 0) + 2;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_JISX02131) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '(';\n        r[3] = 'Q';\n        r += 4;\n        state = STATE_JISX02131;\n      }\n      lasttwo = iso2022_jp3_comp_table_data[idx].composed;\n      r[0] = (lasttwo >> 8) & 0xff;\n      r[1] = lasttwo & 0xff;\n      COMBINE_STATE_NO_LASTTWO;\n      conv->ostate = state;\n      return count;\n    }\n\n  not_combining:\n    /* Output the buffered character. */\n    /* We know it is in JISX0208 or in JISX0213 plane 1. */\n    count = (prevstate != state ? 3 : 0) + 2;\n    if (n < count)\n      return RET_TOOSMALL;\n    if (prevstate != state) {\n      if (state != STATE_JISX0208) abort();\n      r[0] = ESC;\n      r[1] = '$';\n      r[2] = 'B';\n      r += 3;\n    }\n    r[0] = (lasttwo >> 8) & 0xff;\n    r[1] = lasttwo & 0xff;\n    r += 2;\n  }\n\n  /* Try ASCII. */\n  ret = ascii_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      count += (state == STATE_ASCII ? 1 : 4);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_ASCII) {\n        r[0] = ESC;\n        r[1] = '(';\n        r[2] = 'B';\n        r += 3;\n        state = STATE_ASCII;\n      }\n      r[0] = buf[0];\n      COMBINE_STATE_NO_LASTTWO;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try JIS X 0201-1976 Roman. */\n  ret = jisx0201_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      count += (state == STATE_JISX0201ROMAN ? 1 : 4);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_JISX0201ROMAN) {\n        r[0] = ESC;\n        r[1] = '(';\n        r[2] = 'J';\n        r += 3;\n        state = STATE_JISX0201ROMAN;\n      }\n      r[0] = buf[0];\n      COMBINE_STATE_NO_LASTTWO;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  jch = ucs4_to_jisx0213(wc);\n\n  /* Try JIS X 0208-1990 in place of JIS X 0208-1978 and JIS X 0208-1983. */\n  ret = jisx0208_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (buf[0] < 0x80 && buf[1] < 0x80) {\n      if (jch & 0x0080) {\n        /* A possible match in comp_table_data. Buffer it. */\n        prevstate = state;\n        lasttwo = jch & 0x7f7f;\n        state = STATE_JISX0208;\n        COMBINE_STATE;\n        conv->ostate = state;\n        return count;\n      } else {\n        count += (state == STATE_JISX0208 ? 2 : 5);\n        if (n < count)\n          return RET_TOOSMALL;\n        if (state != STATE_JISX0208) {\n          r[0] = ESC;\n          r[1] = '$';\n          r[2] = 'B';\n          r += 3;\n          state = STATE_JISX0208;\n        }\n        r[0] = buf[0];\n        r[1] = buf[1];\n        COMBINE_STATE_NO_LASTTWO;\n        conv->ostate = state;\n        return count;\n      }\n    }\n  }\n\n  /* Try JISX 0213 plane 1 and JISX 0213 plane 2. */\n  if (jch != 0) {\n    if (jch & 0x8000) {\n      /* JISX 0213 plane 2. */\n      if (state != STATE_JISX02132) {\n        count += 4;\n        if (n < count)\n          return RET_TOOSMALL;\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '(';\n        r[3] = 'P';\n        r += 4;\n        state = STATE_JISX02132;\n      }\n    } else {\n      /* JISX 0213 plane 1. */\n      if (state != STATE_JISX02131) {\n        count += 4;\n        if (n < count)\n          return RET_TOOSMALL;\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '(';\n        r[3] = 'Q';\n        r += 4;\n        state = STATE_JISX02131;\n      }\n    }\n    if (jch & 0x0080) {\n      /* A possible match in comp_table_data. We have to buffer it. */\n      /* We know it's a JISX 0213 plane 1 character. */\n      if (jch & 0x8000) abort();\n      prevstate = state;\n      lasttwo = jch & 0x7f7f;\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n    count += 2;\n    if (n < count)\n      return RET_TOOSMALL;\n    r[0] = (jch >> 8) & 0x7f;\n    r[1] = jch & 0x7f;\n    COMBINE_STATE_NO_LASTTWO;\n    conv->ostate = state;\n    return count;\n  }\n\n  /* Try JIS X 0201-1976 Katakana. This is not officially part of\n     ISO-2022-JP-3. Therefore we try it after all other attempts. */\n  ret = jisx0201_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] >= 0x80) {\n      count += (state == STATE_JISX0201KATAKANA ? 1 : 4);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_JISX0201KATAKANA) {\n        r[0] = ESC;\n        r[1] = '(';\n        r[2] = 'I';\n        r += 3;\n        state = STATE_JISX0201KATAKANA;\n      }\n      r[0] = buf[0]-0x80;\n      COMBINE_STATE_NO_LASTTWO;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  return RET_ILUNI;\n}\n\nstatic int\niso2022_jp3_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t state = conv->ostate;\n  SPLIT_STATE;\n  {\n    int count =\n      (lasttwo ? (prevstate != state ? 3 : 0) + 2 : 0)\n      + (state != STATE_ASCII ? 3 : 0);\n    if (n < count)\n      return RET_TOOSMALL;\n    if (lasttwo) {\n      if (prevstate != state) {\n        if (state != STATE_JISX0208) abort();\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = 'B';\n        r += 3;\n      }\n      r[0] = (lasttwo >> 8) & 0xff;\n      r[1] = lasttwo & 0xff;\n      r += 2;\n    }\n    if (state != STATE_ASCII) {\n      r[0] = ESC;\n      r[1] = '(';\n      r[2] = 'B';\n    }\n    /* conv->ostate = 0; will be done by the caller */\n    return count;\n  }\n}\n\n#undef COMBINE_STATE_NO_LASTTWO\n#undef COMBINE_STATE\n#undef SPLIT_STATE\n#undef STATE_JISX02132\n#undef STATE_JISX02131\n#undef STATE_JISX0208\n#undef STATE_JISX0201KATAKANA\n#undef STATE_JISX0201ROMAN\n#undef STATE_ASCII\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso2022_jpms.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2011-2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-2022-JP-MS\n * alias CP50221\n *\n * This is an extension of ISO-2022-JP-1 with larger character sets.\n * It uses ESC $ B and ESC $ ( D to denote *extensions* of JIS X 0208 and\n * JIS X 0212, respectively.  This violates the principles of ISO 2022,\n * where\n *   1. character sets to be used by ISO 2022 have to be registered at the\n *      ISO IR registry <http://www.itscj.ipsj.or.jp/ISO-IR/>,\n *   2. different character sets are designated by different escape\n *      sequences.\n * It's a typical instance of the \"embrace and extend\" strategy by Microsoft\n * <http://en.wikipedia.org/wiki/Embrace,_extend_and_extinguish>.\n */\n\n/*\n * Windows has three encodings CP50220, CP50221, CP50222.\n * The common parts are:\n *   - US-ASCII (0x00..0x7F)\n *   - JIS X 0208 extended by\n *       - one row (0x2D),\n *       - a private use area (rows 0x75..0x7E = U+E000..U+E3AB),\n *     enabled with ESC $ B, disabled with ESC ( B.\n *   - JIS X 0212 extended by\n *       - two rows (0x73..0x74),\n *       - a private use area (rows 0x75..0x7E = U+E3AC..U+E757),\n *     enabled with ESC $ ( D, disabled with ESC ( B.\n * They differ in the handling of JIS X 0201 characters (halfwidth Katakana)\n * in the conversion direction Unicode -> CP5022x:\n *   * CP50220 maps the halfwidth Katakana to fullwidth Katakana characters.\n *   * CP50221 contains the JIS X 0201 halfwidth Katakana characters,\n *     enabled with ESC ( I, disabled with ESC ( B.\n *   * CP50222 contains the JIS X 0201 halfwidth Katakana characters,\n *     enabled with ESC ( J 0x0E, disabled with ESC ( B.\n * In the conversion direction CP5022x -> Unicode, all three operate the same:\n *   - ESC ( I is supported and understood.\n *   - ESC ( J 0x0E is not accepted.  (Tested on Windows XP SP3.)\n * Conclusion:\n *   - CP50222 should not be used, because the multibyte sequence that it\n *     produces cannot be parsed by either of the three encodings.\n *   - CP50221 is preferrable to CP50220, because it can faithfully represent\n *     the halfwidth Katakana characters.\n * We therefore implement CP50221.  As an extension, in the mbtowc conversion\n * direction, we support also ESC ( J 0x0E, just in case.\n */\n\n#include \"cp50221_0208_ext.h\"\n#include \"cp50221_0212_ext.h\"\n\n#define ESC 0x1b\n#define SO  0x0e\n#define SI  0x0f\n\n/*\n * The state can be one of the following values.\n */\n#define STATE_ASCII             0  /* Esc ( B */\n#define STATE_JISX0201ROMAN     1  /* Esc ( J */ /* only in mbtowc direction */\n#define STATE_JISX0201KATAKANA  2  /* Esc ( I */\n#define STATE_JISX0208MS        3  /* Esc $ @ or Esc $ B */\n#define STATE_JISX0212MS        4  /* Esc $ ( D */\n\nstatic int\niso2022_jpms_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  int count = 0;\n  unsigned char c;\n  for (;;) {\n    c = *s;\n    if (c == ESC) {\n      if (n < count+3)\n        goto none;\n      if (s[1] == '(') {\n        if (s[2] == 'B') {\n          state = STATE_ASCII;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (s[2] == 'I') {\n          state = STATE_JISX0201KATAKANA;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (s[2] == 'J') {\n          state = STATE_JISX0201ROMAN;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        goto ilseq;\n      }\n      if (s[1] == '$') {\n        if (s[2] == '@' || s[2] == 'B') {\n          /* We don't distinguish JIS X 0208-1978 and JIS X 0208-1983. */\n          state = STATE_JISX0208MS;\n          s += 3; count += 3;\n          if (n < count+1)\n            goto none;\n          continue;\n        }\n        if (s[2] == '(') {\n          if (n < count+4)\n            goto none;\n          if (s[3] == 'D') {\n            state = STATE_JISX0212MS;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n        }\n        goto ilseq;\n      }\n      goto ilseq;\n    }\n    if (c == SO) {\n      if (state == STATE_JISX0201ROMAN)\n        state = STATE_JISX0201KATAKANA;\n      s += 1; count += 1;\n      if (n < count+1)\n        goto none;\n      continue;\n    }\n    if (c == SI) {\n      if (state == STATE_JISX0201KATAKANA)\n        state = STATE_JISX0201ROMAN;\n      s += 1; count += 1;\n      if (n < count+1)\n        goto none;\n      continue;\n    }\n    break;\n  }\n  switch (state) {\n    case STATE_ASCII:\n      if (c < 0x80) {\n        int ret = ascii_mbtowc(conv,pwc,s,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_JISX0201ROMAN:\n      if (c < 0x80) {\n        int ret = jisx0201_mbtowc(conv,pwc,s,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_JISX0201KATAKANA:\n      if (c < 0x80) {\n        unsigned char buf = c+0x80;\n        int ret = jisx0201_mbtowc(conv,pwc,&buf,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_JISX0208MS:\n      if (n < count+2)\n        goto none;\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret;\n        if (s[0] < 0x75) {\n          if (s[0] == 0x2d) {\n            /* Extension of JIS X 0208.  */\n            if (s[1] >= 0x21 && s[1] <= 0x79) {\n              unsigned char i = (s[1] - 0x21) + 1;\n              ret = cp50221_0208_ext_mbtowc(conv,pwc,&i,1);\n              if (ret == 1)\n                ret = 2;\n            } else\n              ret = RET_ILSEQ;\n          } else {\n            /* JIS X 0208.  */\n            ret = jisx0208_mbtowc(conv,pwc,s,2);\n          }\n        } else {\n          /* Extension of JIS X 0208.\n             0x{75..7E}{21..8E} maps to U+E000..U+E3AB.\n             But some rows maps to characters present in CP932.  */\n          if (s[0] <= 0x7e && (s[1] >= 0x21 && s[1] <= 0x7e)) {\n            unsigned short wc = 0xfffd;\n            if (s[0] >= 0x79 && s[0] <= 0x7c)\n              wc = cp932ext_2uni_pageed[(s[0] - 0x79) * 94 + (s[1] - 0x21)];\n            if (wc == 0xfffd)\n              wc = (s[0] - 0x75) * 94 + (s[1] - 0x21) + 0xe000;\n            *pwc = wc;\n            ret = 2;\n          } else\n            ret = RET_ILSEQ;\n        }\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    case STATE_JISX0212MS:\n      if (n < count+2)\n        goto none;\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret;\n        if (s[0] < 0x73) {\n          /* JIS X 0212.  */\n          ret = jisx0212_mbtowc(conv,pwc,s,2);\n        } else {\n          if (s[0] < 0x75) {\n            /* Extension of JIS X 0212.  */\n            if (s[1] >= 0x21 && s[1] <= 0x7e) {\n              unsigned char i = (s[0] - 0x73) * 94 + (s[1] - 0x21) + 1;\n              ret = cp50221_0212_ext_mbtowc(conv,pwc,&i,1);\n              if (ret == 1)\n                ret = 2;\n            } else\n              ret = RET_ILSEQ;\n          } else {\n            /* Extension of JIS X 0208.\n               0x{75..7E}{21..8E} maps to U+E3AC..U+E757.  */\n            if (s[0] <= 0x7e && (s[1] >= 0x21 && s[1] <= 0x7e)) {\n              *pwc = (s[0] - 0x75) * 94 + (s[1] - 0x21) + 0xe3ac;\n              ret = 2;\n            } else\n              ret = RET_ILSEQ;\n          }\n        }\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    default: abort();\n  }\n\nnone:\n  conv->istate = state;\n  return RET_TOOFEW(count);\n\nilseq:\n  conv->istate = state;\n  return RET_SHIFT_ILSEQ(count);\n}\n\nstatic int\niso2022_jpms_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  state_t state = conv->ostate;\n  unsigned char buf[2];\n  int ret;\n\n  /* Try ASCII. */\n  ret = ascii_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      int count = (state == STATE_ASCII ? 1 : 4);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_ASCII) {\n        r[0] = ESC;\n        r[1] = '(';\n        r[2] = 'B';\n        r += 3;\n        state = STATE_ASCII;\n      }\n      r[0] = buf[0];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try JIS X 0201-1976 Katakana. */\n  ret = jisx0201_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] >= 0x80) {\n      int count = (state == STATE_JISX0201KATAKANA ? 1 : 4);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_JISX0201KATAKANA) {\n        r[0] = ESC;\n        r[1] = '(';\n        r[2] = 'I';\n        r += 3;\n        state = STATE_JISX0201KATAKANA;\n      }\n      r[0] = buf[0]-0x80;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try JIS X 0208-1990, in place of JIS X 0208-1978 and JIS X 0208-1983,\n     and the extensions mentioned above.  */\n  if (wc >= 0xe000 && wc < 0xe3ac) {\n    unsigned short i = wc - 0xe000;\n    buf[0] = (i / 94) + 0x75;\n    buf[1] = (i % 94) + 0x21;\n    ret = 2;\n  } else {\n    ret = jisx0208_wctomb(conv,buf,wc,2);\n    if (ret == RET_ILUNI) {\n      /* Extension of JIS X 0208.  */\n      unsigned char i;\n      ret = cp50221_0208_ext_wctomb(conv,&i,wc,1);\n      if (ret == 1) {\n        buf[0] = 0x2d;\n        buf[1] = i-1 + 0x21;\n        ret = 2;\n      } else if (wc == 0x663B) {\n        buf[0] = 0x7a;\n        buf[1] = 0x36;\n        ret = 2;\n      } else if (wc == 0xffe2) {\n        buf[0] = 0x7c;\n        buf[1] = 0x7b;\n        ret = 2;\n      } else if (wc == 0xffe4) {\n        buf[0] = 0x7c;\n        buf[1] = 0x7c;\n        ret = 2;\n      }\n    }\n  }\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (buf[0] < 0x80 && buf[1] < 0x80) {\n      int count = (state == STATE_JISX0208MS ? 2 : 5);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_JISX0208MS) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = 'B';\n        r += 3;\n        state = STATE_JISX0208MS;\n      }\n      r[0] = buf[0];\n      r[1] = buf[1];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try JIS X 0212-1990 and the extensions mentioned above. */\n  if (wc >= 0xe3ac && wc < 0xe758) {\n    unsigned short i = wc - 0xe3ac;\n    buf[0] = (i / 94) + 0x75;\n    buf[1] = (i % 94) + 0x21;\n    ret = 2;\n  } else {\n    ret = jisx0212_wctomb(conv,buf,wc,2);\n    if (ret == RET_ILUNI) {\n      /* Extension of JIS X 0212.  */\n      unsigned char i;\n      ret = cp50221_0212_ext_wctomb(conv,&i,wc,1);\n      if (ret == 1) {\n        i -= 1;\n        buf[0] = (i / 94) + 0x73;\n        buf[1] = (i % 94) + 0x21;\n        ret = 2;\n      }\n    }\n  }\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (buf[0] < 0x80 && buf[1] < 0x80) {\n      int count = (state == STATE_JISX0212MS ? 2 : 6);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state != STATE_JISX0212MS) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = '(';\n        r[3] = 'D';\n        r += 4;\n        state = STATE_JISX0212MS;\n      }\n      r[0] = buf[0];\n      r[1] = buf[1];\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  return RET_ILUNI;\n}\n\nstatic int\niso2022_jpms_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t state = conv->ostate;\n  if (state != STATE_ASCII) {\n    if (n < 3)\n      return RET_TOOSMALL;\n    r[0] = ESC;\n    r[1] = '(';\n    r[2] = 'B';\n    /* conv->ostate = 0; will be done by the caller */\n    return 3;\n  } else\n    return 0;\n}\n\n#undef STATE_JISX0212MS\n#undef STATE_JISX0208MS\n#undef STATE_JISX0201KATAKANA\n#undef STATE_JISX0201ROMAN\n#undef STATE_ASCII\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso2022_kr.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-2022-KR\n */\n\n/* Specification: RFC 1557 */\n\n/* Note: CJK.INF says the SO designator needs to appear only once at the\n   beginning of a text, but to decrease the risk of ambiguities, when\n   producing ISO-2022-KR, we repeat the designator in every line containing\n   SO characters. RFC 1557 does not mandate this. */\n\n#define ESC 0x1b\n#define SO  0x0e\n#define SI  0x0f\n\n/*\n * The state is composed of one of the following values\n */\n#define STATE_ASCII          0\n#define STATE_TWOBYTE        1\n/*\n * and one of the following values, << 8\n */\n#define STATE2_NONE                0\n#define STATE2_DESIGNATED_KSC5601  1\n\n#define SPLIT_STATE \\\n  unsigned int state1 = state & 0xff, state2 = state >> 8\n#define COMBINE_STATE \\\n  state = (state2 << 8) | state1\n\nstatic int\niso2022_kr_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  SPLIT_STATE;\n  int count = 0;\n  unsigned char c;\n  for (;;) {\n    c = *s;\n    if (c == ESC) {\n      if (n < count+4)\n        goto none;\n      if (s[1] == '$') {\n        if (s[2] == ')') {\n          if (s[3] == 'C') {\n            state2 = STATE2_DESIGNATED_KSC5601;\n            s += 4; count += 4;\n            if (n < count+1)\n              goto none;\n            continue;\n          }\n        }\n      }\n      goto ilseq;\n    }\n    if (c == SO) {\n      if (state2 != STATE2_DESIGNATED_KSC5601)\n        goto ilseq;\n      state1 = STATE_TWOBYTE;\n      s++; count++;\n      if (n < count+1)\n        goto none;\n      continue;\n    }\n    if (c == SI) {\n      state1 = STATE_ASCII;\n      s++; count++;\n      if (n < count+1)\n        goto none;\n      continue;\n    }\n    break;\n  }\n  switch (state1) {\n    case STATE_ASCII:\n      if (c < 0x80) {\n        int ret = ascii_mbtowc(conv,pwc,s,1);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 1) abort();\n#if 0 /* Accept ISO-2022-KR according to CJK.INF. */\n        if (*pwc == 0x000a || *pwc == 0x000d)\n          state2 = STATE2_NONE;\n#endif\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+1;\n      } else\n        goto ilseq;\n    case STATE_TWOBYTE:\n      if (n < count+2)\n        goto none;\n      if (state2 != STATE2_DESIGNATED_KSC5601) abort();\n      if (s[0] < 0x80 && s[1] < 0x80) {\n        int ret = ksc5601_mbtowc(conv,pwc,s,2);\n        if (ret == RET_ILSEQ)\n          goto ilseq;\n        if (ret != 2) abort();\n        COMBINE_STATE;\n        conv->istate = state;\n        return count+2;\n      } else\n        goto ilseq;\n    default: abort();\n  }\n\nnone:\n  COMBINE_STATE;\n  conv->istate = state;\n  return RET_TOOFEW(count);\n\nilseq:\n  COMBINE_STATE;\n  conv->istate = state;\n  return RET_SHIFT_ILSEQ(count);\n}\n\nstatic int\niso2022_kr_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  state_t state = conv->ostate;\n  SPLIT_STATE;\n  unsigned char buf[2];\n  int ret;\n\n  /* Try ASCII. */\n  ret = ascii_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] < 0x80) {\n      int count = (state1 == STATE_ASCII ? 1 : 2);\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state1 != STATE_ASCII) {\n        r[0] = SI;\n        r += 1;\n        state1 = STATE_ASCII;\n      }\n      r[0] = buf[0];\n      if (wc == 0x000a || wc == 0x000d)\n        state2 = STATE2_NONE;\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  /* Try KS C 5601-1992. */\n  ret = ksc5601_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (buf[0] < 0x80 && buf[1] < 0x80) {\n      int count = (state2 == STATE2_DESIGNATED_KSC5601 ? 0 : 4) + (state1 == STATE_TWOBYTE ? 0 : 1) + 2;\n      if (n < count)\n        return RET_TOOSMALL;\n      if (state2 != STATE2_DESIGNATED_KSC5601) {\n        r[0] = ESC;\n        r[1] = '$';\n        r[2] = ')';\n        r[3] = 'C';\n        r += 4;\n        state2 = STATE2_DESIGNATED_KSC5601;\n      }\n      if (state1 != STATE_TWOBYTE) {\n        r[0] = SO;\n        r += 1;\n        state1 = STATE_TWOBYTE;\n      }\n      r[0] = buf[0];\n      r[1] = buf[1];\n      COMBINE_STATE;\n      conv->ostate = state;\n      return count;\n    }\n  }\n\n  return RET_ILUNI;\n}\n\nstatic int\niso2022_kr_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t state = conv->ostate;\n  SPLIT_STATE;\n  (void)state2;\n  if (state1 != STATE_ASCII) {\n    if (n < 1)\n      return RET_TOOSMALL;\n    r[0] = SI;\n    /* conv->ostate = 0; will be done by the caller */\n    return 1;\n  } else\n    return 0;\n}\n\n#undef COMBINE_STATE\n#undef SPLIT_STATE\n#undef STATE2_DESIGNATED_KSC5601\n#undef STATE2_NONE\n#undef STATE_TWOBYTE\n#undef STATE_ASCII\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso646_cn.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO646-CN\n * also known as GB_1988-80\n */\n\nstatic int\niso646_cn_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    if (c == 0x24)\n      *pwc = (ucs4_t) 0x00a5;\n    else if (c == 0x7e)\n      *pwc = (ucs4_t) 0x203e;\n    else\n      *pwc = (ucs4_t) c;\n    return 1;\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\niso646_cn_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x0080 && !(wc == 0x0024 || wc == 0x007e)) {\n    *r = wc;\n    return 1;\n  }\n  if (wc == 0x00a5) {\n    *r = 0x24;\n    return 1;\n  }\n  if (wc == 0x203e) {\n    *r = 0x7e;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso646_jp.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO646-JP\n * also known as JIS_C6220-1969-RO\n */\n\n/* This is the lower half of JIS_X0201. */\n\nstatic int\niso646_jp_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    if (c == 0x5c)\n      *pwc = (ucs4_t) 0x00a5;\n    else if (c == 0x7e)\n      *pwc = (ucs4_t) 0x203e;\n    else\n      *pwc = (ucs4_t) c;\n    return 1;\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\niso646_jp_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x0080 && !(wc == 0x005c || wc == 0x007e)) {\n    *r = wc;\n    return 1;\n  }\n  if (wc == 0x00a5) {\n    *r = 0x5c;\n    return 1;\n  }\n  if (wc == 0x203e) {\n    *r = 0x7e;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_1.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-1\n */\n\nstatic int\niso8859_1_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  *pwc = (ucs4_t) c;\n  return 1;\n}\n\nstatic int\niso8859_1_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x0100) {\n    *r = wc;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_10.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-10\n */\n\nstatic const unsigned short iso8859_10_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x0104, 0x0112, 0x0122, 0x012a, 0x0128, 0x0136, 0x00a7,\n  0x013b, 0x0110, 0x0160, 0x0166, 0x017d, 0x00ad, 0x016a, 0x014a,\n  /* 0xb0 */\n  0x00b0, 0x0105, 0x0113, 0x0123, 0x012b, 0x0129, 0x0137, 0x00b7,\n  0x013c, 0x0111, 0x0161, 0x0167, 0x017e, 0x2015, 0x016b, 0x014b,\n  /* 0xc0 */\n  0x0100, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c6, 0x012e,\n  0x010c, 0x00c9, 0x0118, 0x00cb, 0x0116, 0x00cd, 0x00ce, 0x00cf,\n  /* 0xd0 */\n  0x00d0, 0x0145, 0x014c, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x0168,\n  0x00d8, 0x0172, 0x00da, 0x00db, 0x00dc, 0x00dd, 0x00de, 0x00df,\n  /* 0xe0 */\n  0x0101, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x012f,\n  0x010d, 0x00e9, 0x0119, 0x00eb, 0x0117, 0x00ed, 0x00ee, 0x00ef,\n  /* 0xf0 */\n  0x00f0, 0x0146, 0x014d, 0x00f3, 0x00f4, 0x00f5, 0x00f6, 0x0169,\n  0x00f8, 0x0173, 0x00fa, 0x00fb, 0x00fc, 0x00fd, 0x00fe, 0x0138,\n};\n\nstatic int\niso8859_10_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) iso8859_10_2uni[c-0xa0];\n  return 1;\n}\n\nstatic const unsigned char iso8859_10_page00[224] = {\n  0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa7, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, /* 0xa8-0xaf */\n  0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0x00, /* 0xc0-0xc7 */\n  0x00, 0xc9, 0x00, 0xcb, 0x00, 0xcd, 0xce, 0xcf, /* 0xc8-0xcf */\n  0xd0, 0x00, 0x00, 0xd3, 0xd4, 0xd5, 0xd6, 0x00, /* 0xd0-0xd7 */\n  0xd8, 0x00, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, /* 0xd8-0xdf */\n  0x00, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0x00, /* 0xe0-0xe7 */\n  0x00, 0xe9, 0x00, 0xeb, 0x00, 0xed, 0xee, 0xef, /* 0xe8-0xef */\n  0xf0, 0x00, 0x00, 0xf3, 0xf4, 0xf5, 0xf6, 0x00, /* 0xf0-0xf7 */\n  0xf8, 0x00, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0xc0, 0xe0, 0x00, 0x00, 0xa1, 0xb1, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xc8, 0xe8, 0x00, 0x00, /* 0x08-0x0f */\n  0xa9, 0xb9, 0xa2, 0xb2, 0x00, 0x00, 0xcc, 0xec, /* 0x10-0x17 */\n  0xca, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0xa3, 0xb3, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0xa5, 0xb5, 0xa4, 0xb4, 0x00, 0x00, 0xc7, 0xe7, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0xb6, /* 0x30-0x37 */\n  0xff, 0x00, 0x00, 0xa8, 0xb8, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xd1, 0xf1, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0xaf, 0xbf, 0xd2, 0xf2, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xaa, 0xba, 0x00, 0x00, 0x00, 0x00, 0xab, 0xbb, /* 0x60-0x67 */\n  0xd7, 0xf7, 0xae, 0xbe, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0xd9, 0xf9, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0xbc, 0x00, /* 0x78-0x7f */\n};\n\nstatic int\niso8859_10_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0180)\n    c = iso8859_10_page00[wc-0x00a0];\n  else if (wc == 0x2015)\n    c = 0xbd;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_11.h",
    "content": "/*\n * Copyright (C) 1999-2004, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-11\n */\n\nstatic int\niso8859_11_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa1) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else if (c <= 0xfb && !(c >= 0xdb && c <= 0xde)) {\n    *pwc = (ucs4_t) (c + 0x0d60);\n    return 1;\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\niso8859_11_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x00a1) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x0e01 && wc <= 0x0e5b && !(wc >= 0x0e3b && wc <= 0x0e3e)) {\n    *r = wc-0x0d60;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_13.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-13\n */\n\nstatic const unsigned short iso8859_13_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x201d, 0x00a2, 0x00a3, 0x00a4, 0x201e, 0x00a6, 0x00a7,\n  0x00d8, 0x00a9, 0x0156, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00c6,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x201c, 0x00b5, 0x00b6, 0x00b7,\n  0x00f8, 0x00b9, 0x0157, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00e6,\n  /* 0xc0 */\n  0x0104, 0x012e, 0x0100, 0x0106, 0x00c4, 0x00c5, 0x0118, 0x0112,\n  0x010c, 0x00c9, 0x0179, 0x0116, 0x0122, 0x0136, 0x012a, 0x013b,\n  /* 0xd0 */\n  0x0160, 0x0143, 0x0145, 0x00d3, 0x014c, 0x00d5, 0x00d6, 0x00d7,\n  0x0172, 0x0141, 0x015a, 0x016a, 0x00dc, 0x017b, 0x017d, 0x00df,\n  /* 0xe0 */\n  0x0105, 0x012f, 0x0101, 0x0107, 0x00e4, 0x00e5, 0x0119, 0x0113,\n  0x010d, 0x00e9, 0x017a, 0x0117, 0x0123, 0x0137, 0x012b, 0x013c,\n  /* 0xf0 */\n  0x0161, 0x0144, 0x0146, 0x00f3, 0x014d, 0x00f5, 0x00f6, 0x00f7,\n  0x0173, 0x0142, 0x015b, 0x016b, 0x00fc, 0x017c, 0x017e, 0x2019,\n};\n\nstatic int\niso8859_13_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) iso8859_13_2uni[c-0xa0];\n  return 1;\n}\n\nstatic const unsigned char iso8859_13_page00[224] = {\n  0xa0, 0x00, 0xa2, 0xa3, 0xa4, 0x00, 0xa6, 0xa7, /* 0xa0-0xa7 */\n  0x00, 0xa9, 0x00, 0xab, 0xac, 0xad, 0xae, 0x00, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0xb2, 0xb3, 0x00, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0x00, 0xb9, 0x00, 0xbb, 0xbc, 0xbd, 0xbe, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0xc4, 0xc5, 0xaf, 0x00, /* 0xc0-0xc7 */\n  0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0xd3, 0x00, 0xd5, 0xd6, 0xd7, /* 0xd0-0xd7 */\n  0xa8, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0xdf, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0xe4, 0xe5, 0xbf, 0x00, /* 0xe0-0xe7 */\n  0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0xf3, 0x00, 0xf5, 0xf6, 0xf7, /* 0xf0-0xf7 */\n  0xb8, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0xc2, 0xe2, 0x00, 0x00, 0xc0, 0xe0, 0xc3, 0xe3, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xc8, 0xe8, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0xc7, 0xe7, 0x00, 0x00, 0xcb, 0xeb, /* 0x10-0x17 */\n  0xc6, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0xcc, 0xec, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0xce, 0xee, 0x00, 0x00, 0xc1, 0xe1, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0xed, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0xcf, 0xef, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0xd9, 0xf9, 0xd1, 0xf1, 0xd2, 0xf2, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0xd4, 0xf4, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xba, /* 0x50-0x57 */\n  0x00, 0x00, 0xda, 0xfa, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xd0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0xdb, 0xfb, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0xd8, 0xf8, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0xca, 0xea, 0xdd, 0xfd, 0xde, 0xfe, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char iso8859_13_page20[8] = {\n  0x00, 0xff, 0x00, 0x00, 0xb4, 0xa1, 0xa5, 0x00, /* 0x18-0x1f */\n};\n\nstatic int\niso8859_13_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0180)\n    c = iso8859_13_page00[wc-0x00a0];\n  else if (wc >= 0x2018 && wc < 0x2020)\n    c = iso8859_13_page20[wc-0x2018];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_14.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-14\n */\n\nstatic const unsigned short iso8859_14_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x1e02, 0x1e03, 0x00a3, 0x010a, 0x010b, 0x1e0a, 0x00a7,\n  0x1e80, 0x00a9, 0x1e82, 0x1e0b, 0x1ef2, 0x00ad, 0x00ae, 0x0178,\n  /* 0xb0 */\n  0x1e1e, 0x1e1f, 0x0120, 0x0121, 0x1e40, 0x1e41, 0x00b6, 0x1e56,\n  0x1e81, 0x1e57, 0x1e83, 0x1e60, 0x1ef3, 0x1e84, 0x1e85, 0x1e61,\n  /* 0xc0 */\n  0x00c0, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c6, 0x00c7,\n  0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf,\n  /* 0xd0 */\n  0x0174, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x1e6a,\n  0x00d8, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x00dd, 0x0176, 0x00df,\n  /* 0xe0 */\n  0x00e0, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x00e7,\n  0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef,\n  /* 0xf0 */\n  0x0175, 0x00f1, 0x00f2, 0x00f3, 0x00f4, 0x00f5, 0x00f6, 0x1e6b,\n  0x00f8, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x00fd, 0x0177, 0x00ff,\n};\n\nstatic int\niso8859_14_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c >= 0xa0)\n    *pwc = (ucs4_t) iso8859_14_2uni[c-0xa0];\n  else\n    *pwc = (ucs4_t) c;\n  return 1;\n}\n\nstatic const unsigned char iso8859_14_page00[96] = {\n  0xa0, 0x00, 0x00, 0xa3, 0x00, 0x00, 0x00, 0xa7, /* 0xa0-0xa7 */\n  0x00, 0xa9, 0x00, 0x00, 0x00, 0xad, 0xae, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0xc0-0xc7 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0xc8-0xcf */\n  0x00, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0x00, /* 0xd0-0xd7 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0x00, 0xdf, /* 0xd8-0xdf */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0xe0-0xe7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0xe8-0xef */\n  0x00, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0x00, /* 0xf0-0xf7 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0x00, 0xff, /* 0xf8-0xff */\n};\nstatic const unsigned char iso8859_14_page01_0[32] = {\n  0x00, 0x00, 0xa4, 0xa5, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0xb2, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char iso8859_14_page01_1[16] = {\n  0x00, 0x00, 0x00, 0x00, 0xd0, 0xf0, 0xde, 0xfe, /* 0x70-0x77 */\n  0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char iso8859_14_page1e_0[136] = {\n  0x00, 0x00, 0xa1, 0xa2, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0xa6, 0xab, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xb1, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0xb4, 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0xb9, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xbb, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0xd7, 0xf7, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0xa8, 0xb8, 0xaa, 0xba, 0xbd, 0xbe, 0x00, 0x00, /* 0x80-0x87 */\n};\nstatic const unsigned char iso8859_14_page1e_1[8] = {\n  0x00, 0x00, 0xac, 0xbc, 0x00, 0x00, 0x00, 0x00, /* 0xf0-0xf7 */\n};\n\nstatic int\niso8859_14_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = iso8859_14_page00[wc-0x00a0];\n  else if (wc >= 0x0108 && wc < 0x0128)\n    c = iso8859_14_page01_0[wc-0x0108];\n  else if (wc >= 0x0170 && wc < 0x0180)\n    c = iso8859_14_page01_1[wc-0x0170];\n  else if (wc >= 0x1e00 && wc < 0x1e88)\n    c = iso8859_14_page1e_0[wc-0x1e00];\n  else if (wc >= 0x1ef0 && wc < 0x1ef8)\n    c = iso8859_14_page1e_1[wc-0x1ef0];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_15.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-15\n */\n\nstatic const unsigned short iso8859_15_2uni[32] = {\n  /* 0xa0 */\n  0x00a0, 0x00a1, 0x00a2, 0x00a3, 0x20ac, 0x00a5, 0x0160, 0x00a7,\n  0x0161, 0x00a9, 0x00aa, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00af,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x017d, 0x00b5, 0x00b6, 0x00b7,\n  0x017e, 0x00b9, 0x00ba, 0x00bb, 0x0152, 0x0153, 0x0178, 0x00bf,\n};\n\nstatic int\niso8859_15_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c >= 0xa0 && c < 0xc0)\n    *pwc = (ucs4_t) iso8859_15_2uni[c-0xa0];\n  else\n    *pwc = (ucs4_t) c;\n  return 1;\n}\n\nstatic const unsigned char iso8859_15_page00[32] = {\n  0xa0, 0xa1, 0xa2, 0xa3, 0x00, 0xa5, 0x00, 0xa7, /* 0xa0-0xa7 */\n  0x00, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0xb2, 0xb3, 0x00, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0x00, 0xb9, 0xba, 0xbb, 0x00, 0x00, 0x00, 0xbf, /* 0xb8-0xbf */\n};\nstatic const unsigned char iso8859_15_page01[48] = {\n  0x00, 0x00, 0xbc, 0xbd, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xa6, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0xbe, 0x00, 0x00, 0x00, 0x00, 0xb4, 0xb8, 0x00, /* 0x78-0x7f */\n};\n\nstatic int\niso8859_15_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = iso8859_15_page00[wc-0x00a0];\n  else if (wc >= 0x00c0 && wc < 0x0100)\n    c = wc;\n  else if (wc >= 0x0150 && wc < 0x0180)\n    c = iso8859_15_page01[wc-0x0150];\n  else if (wc == 0x20ac)\n    c = 0xa4;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_16.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-16\n */\n\nstatic const unsigned short iso8859_16_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x0104, 0x0105, 0x0141, 0x20ac, 0x201e, 0x0160, 0x00a7,\n  0x0161, 0x00a9, 0x0218, 0x00ab, 0x0179, 0x00ad, 0x017a, 0x017b,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x010c, 0x0142, 0x017d, 0x201d, 0x00b6, 0x00b7,\n  0x017e, 0x010d, 0x0219, 0x00bb, 0x0152, 0x0153, 0x0178, 0x017c,\n  /* 0xc0 */\n  0x00c0, 0x00c1, 0x00c2, 0x0102, 0x00c4, 0x0106, 0x00c6, 0x00c7,\n  0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf,\n  /* 0xd0 */\n  0x0110, 0x0143, 0x00d2, 0x00d3, 0x00d4, 0x0150, 0x00d6, 0x015a,\n  0x0170, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x0118, 0x021a, 0x00df,\n  /* 0xe0 */\n  0x00e0, 0x00e1, 0x00e2, 0x0103, 0x00e4, 0x0107, 0x00e6, 0x00e7,\n  0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef,\n  /* 0xf0 */\n  0x0111, 0x0144, 0x00f2, 0x00f3, 0x00f4, 0x0151, 0x00f6, 0x015b,\n  0x0171, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x0119, 0x021b, 0x00ff,\n};\n\nstatic int\niso8859_16_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) iso8859_16_2uni[c-0xa0];\n  return 1;\n}\n\nstatic const unsigned char iso8859_16_page00[224] = {\n  0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa7, /* 0xa0-0xa7 */\n  0x00, 0xa9, 0x00, 0xab, 0x00, 0xad, 0x00, 0x00, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0x00, 0x00, 0x00, 0x00, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0xc0, 0xc1, 0xc2, 0x00, 0xc4, 0x00, 0xc6, 0xc7, /* 0xc0-0xc7 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0xc8-0xcf */\n  0x00, 0x00, 0xd2, 0xd3, 0xd4, 0x00, 0xd6, 0x00, /* 0xd0-0xd7 */\n  0x00, 0xd9, 0xda, 0xdb, 0xdc, 0x00, 0x00, 0xdf, /* 0xd8-0xdf */\n  0xe0, 0xe1, 0xe2, 0x00, 0xe4, 0x00, 0xe6, 0xe7, /* 0xe0-0xe7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0xe8-0xef */\n  0x00, 0x00, 0xf2, 0xf3, 0xf4, 0x00, 0xf6, 0x00, /* 0xf0-0xf7 */\n  0x00, 0xf9, 0xfa, 0xfb, 0xfc, 0x00, 0x00, 0xff, /* 0xf8-0xff */\n  /* 0x0100 */\n  0x00, 0x00, 0xc3, 0xe3, 0xa1, 0xa2, 0xc5, 0xe5, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xb2, 0xb9, 0x00, 0x00, /* 0x08-0x0f */\n  0xd0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xdd, 0xfd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0xa3, 0xb3, 0xd1, 0xf1, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xd5, 0xf5, 0xbc, 0xbd, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0xd7, 0xf7, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xa6, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0xd8, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0xbe, 0xac, 0xae, 0xaf, 0xbf, 0xb4, 0xb8, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char iso8859_16_page02[8] = {\n  0xaa, 0xba, 0xde, 0xfe, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n};\nstatic const unsigned char iso8859_16_page20[8] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xb5, 0xa5, 0x00, /* 0x18-0x1f */\n};\n\nstatic int\niso8859_16_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0180)\n    c = iso8859_16_page00[wc-0x00a0];\n  else if (wc >= 0x0218 && wc < 0x0220)\n    c = iso8859_16_page02[wc-0x0218];\n  else if (wc >= 0x2018 && wc < 0x2020)\n    c = iso8859_16_page20[wc-0x2018];\n  else if (wc == 0x20ac)\n    c = 0xa4;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_2.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-2\n */\n\nstatic const unsigned short iso8859_2_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x0104, 0x02d8, 0x0141, 0x00a4, 0x013d, 0x015a, 0x00a7,\n  0x00a8, 0x0160, 0x015e, 0x0164, 0x0179, 0x00ad, 0x017d, 0x017b,\n  /* 0xb0 */\n  0x00b0, 0x0105, 0x02db, 0x0142, 0x00b4, 0x013e, 0x015b, 0x02c7,\n  0x00b8, 0x0161, 0x015f, 0x0165, 0x017a, 0x02dd, 0x017e, 0x017c,\n  /* 0xc0 */\n  0x0154, 0x00c1, 0x00c2, 0x0102, 0x00c4, 0x0139, 0x0106, 0x00c7,\n  0x010c, 0x00c9, 0x0118, 0x00cb, 0x011a, 0x00cd, 0x00ce, 0x010e,\n  /* 0xd0 */\n  0x0110, 0x0143, 0x0147, 0x00d3, 0x00d4, 0x0150, 0x00d6, 0x00d7,\n  0x0158, 0x016e, 0x00da, 0x0170, 0x00dc, 0x00dd, 0x0162, 0x00df,\n  /* 0xe0 */\n  0x0155, 0x00e1, 0x00e2, 0x0103, 0x00e4, 0x013a, 0x0107, 0x00e7,\n  0x010d, 0x00e9, 0x0119, 0x00eb, 0x011b, 0x00ed, 0x00ee, 0x010f,\n  /* 0xf0 */\n  0x0111, 0x0144, 0x0148, 0x00f3, 0x00f4, 0x0151, 0x00f6, 0x00f7,\n  0x0159, 0x016f, 0x00fa, 0x0171, 0x00fc, 0x00fd, 0x0163, 0x02d9,\n};\n\nstatic int\niso8859_2_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) iso8859_2_2uni[c-0xa0];\n  return 1;\n}\n\nstatic const unsigned char iso8859_2_page00[224] = {\n  0xa0, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0xa7, /* 0xa0-0xa7 */\n  0xa8, 0x00, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, /* 0xa8-0xaf */\n  0xb0, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0xc1, 0xc2, 0x00, 0xc4, 0x00, 0x00, 0xc7, /* 0xc0-0xc7 */\n  0x00, 0xc9, 0x00, 0xcb, 0x00, 0xcd, 0xce, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0xd3, 0xd4, 0x00, 0xd6, 0xd7, /* 0xd0-0xd7 */\n  0x00, 0x00, 0xda, 0x00, 0xdc, 0xdd, 0x00, 0xdf, /* 0xd8-0xdf */\n  0x00, 0xe1, 0xe2, 0x00, 0xe4, 0x00, 0x00, 0xe7, /* 0xe0-0xe7 */\n  0x00, 0xe9, 0x00, 0xeb, 0x00, 0xed, 0xee, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0xf3, 0xf4, 0x00, 0xf6, 0xf7, /* 0xf0-0xf7 */\n  0x00, 0x00, 0xfa, 0x00, 0xfc, 0xfd, 0x00, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0x00, 0x00, 0xc3, 0xe3, 0xa1, 0xb1, 0xc6, 0xe6, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xc8, 0xe8, 0xcf, 0xef, /* 0x08-0x0f */\n  0xd0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xca, 0xea, 0xcc, 0xec, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0xc5, 0xe5, 0x00, 0x00, 0xa5, 0xb5, 0x00, /* 0x38-0x3f */\n  0x00, 0xa3, 0xb3, 0xd1, 0xf1, 0x00, 0x00, 0xd2, /* 0x40-0x47 */\n  0xf2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xd5, 0xf5, 0x00, 0x00, 0xc0, 0xe0, 0x00, 0x00, /* 0x50-0x57 */\n  0xd8, 0xf8, 0xa6, 0xb6, 0x00, 0x00, 0xaa, 0xba, /* 0x58-0x5f */\n  0xa9, 0xb9, 0xde, 0xfe, 0xab, 0xbb, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0xf9, /* 0x68-0x6f */\n  0xdb, 0xfb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0xac, 0xbc, 0xaf, 0xbf, 0xae, 0xbe, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char iso8859_2_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0xa2, 0xff, 0x00, 0xb2, 0x00, 0xbd, 0x00, 0x00, /* 0xd8-0xdf */\n};\n\nstatic int\niso8859_2_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0180)\n    c = iso8859_2_page00[wc-0x00a0];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = iso8859_2_page02[wc-0x02c0];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_3.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-3\n */\n\nstatic const unsigned short iso8859_3_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x0126, 0x02d8, 0x00a3, 0x00a4, 0xfffd, 0x0124, 0x00a7,\n  0x00a8, 0x0130, 0x015e, 0x011e, 0x0134, 0x00ad, 0xfffd, 0x017b,\n  /* 0xb0 */\n  0x00b0, 0x0127, 0x00b2, 0x00b3, 0x00b4, 0x00b5, 0x0125, 0x00b7,\n  0x00b8, 0x0131, 0x015f, 0x011f, 0x0135, 0x00bd, 0xfffd, 0x017c,\n  /* 0xc0 */\n  0x00c0, 0x00c1, 0x00c2, 0xfffd, 0x00c4, 0x010a, 0x0108, 0x00c7,\n  0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf,\n  /* 0xd0 */\n  0xfffd, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x0120, 0x00d6, 0x00d7,\n  0x011c, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x016c, 0x015c, 0x00df,\n  /* 0xe0 */\n  0x00e0, 0x00e1, 0x00e2, 0xfffd, 0x00e4, 0x010b, 0x0109, 0x00e7,\n  0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef,\n  /* 0xf0 */\n  0xfffd, 0x00f1, 0x00f2, 0x00f3, 0x00f4, 0x0121, 0x00f6, 0x00f7,\n  0x011d, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x016d, 0x015d, 0x02d9,\n};\n\nstatic int\niso8859_3_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = iso8859_3_2uni[c-0xa0];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char iso8859_3_page00[96] = {\n  0xa0, 0x00, 0x00, 0xa3, 0xa4, 0x00, 0x00, 0xa7, /* 0xa0-0xa7 */\n  0xa8, 0x00, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, /* 0xa8-0xaf */\n  0xb0, 0x00, 0xb2, 0xb3, 0xb4, 0xb5, 0x00, 0xb7, /* 0xb0-0xb7 */\n  0xb8, 0x00, 0x00, 0x00, 0x00, 0xbd, 0x00, 0x00, /* 0xb8-0xbf */\n  0xc0, 0xc1, 0xc2, 0x00, 0xc4, 0x00, 0x00, 0xc7, /* 0xc0-0xc7 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0xc8-0xcf */\n  0x00, 0xd1, 0xd2, 0xd3, 0xd4, 0x00, 0xd6, 0xd7, /* 0xd0-0xd7 */\n  0x00, 0xd9, 0xda, 0xdb, 0xdc, 0x00, 0x00, 0xdf, /* 0xd8-0xdf */\n  0xe0, 0xe1, 0xe2, 0x00, 0xe4, 0x00, 0x00, 0xe7, /* 0xe0-0xe7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0xe8-0xef */\n  0x00, 0xf1, 0xf2, 0xf3, 0xf4, 0x00, 0xf6, 0xf7, /* 0xf0-0xf7 */\n  0x00, 0xf9, 0xfa, 0xfb, 0xfc, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char iso8859_3_page01[120] = {\n  0xc6, 0xe6, 0xc5, 0xe5, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0xd8, 0xf8, 0xab, 0xbb, /* 0x18-0x1f */\n  0xd5, 0xf5, 0x00, 0x00, 0xa6, 0xb6, 0xa1, 0xb1, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0xa9, 0xb9, 0x00, 0x00, 0xac, 0xbc, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0xde, 0xfe, 0xaa, 0xba, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0xdd, 0xfd, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0xaf, 0xbf, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char iso8859_3_page02[8] = {\n  0xa2, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\n\nstatic int\niso8859_3_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = iso8859_3_page00[wc-0x00a0];\n  else if (wc >= 0x0108 && wc < 0x0180)\n    c = iso8859_3_page01[wc-0x0108];\n  else if (wc >= 0x02d8 && wc < 0x02e0)\n    c = iso8859_3_page02[wc-0x02d8];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_4.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-4\n */\n\nstatic const unsigned short iso8859_4_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x0104, 0x0138, 0x0156, 0x00a4, 0x0128, 0x013b, 0x00a7,\n  0x00a8, 0x0160, 0x0112, 0x0122, 0x0166, 0x00ad, 0x017d, 0x00af,\n  /* 0xb0 */\n  0x00b0, 0x0105, 0x02db, 0x0157, 0x00b4, 0x0129, 0x013c, 0x02c7,\n  0x00b8, 0x0161, 0x0113, 0x0123, 0x0167, 0x014a, 0x017e, 0x014b,\n  /* 0xc0 */\n  0x0100, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c6, 0x012e,\n  0x010c, 0x00c9, 0x0118, 0x00cb, 0x0116, 0x00cd, 0x00ce, 0x012a,\n  /* 0xd0 */\n  0x0110, 0x0145, 0x014c, 0x0136, 0x00d4, 0x00d5, 0x00d6, 0x00d7,\n  0x00d8, 0x0172, 0x00da, 0x00db, 0x00dc, 0x0168, 0x016a, 0x00df,\n  /* 0xe0 */\n  0x0101, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x012f,\n  0x010d, 0x00e9, 0x0119, 0x00eb, 0x0117, 0x00ed, 0x00ee, 0x012b,\n  /* 0xf0 */\n  0x0111, 0x0146, 0x014d, 0x0137, 0x00f4, 0x00f5, 0x00f6, 0x00f7,\n  0x00f8, 0x0173, 0x00fa, 0x00fb, 0x00fc, 0x0169, 0x016b, 0x02d9,\n};\n\nstatic int\niso8859_4_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) iso8859_4_2uni[c-0xa0];\n  return 1;\n}\n\nstatic const unsigned char iso8859_4_page00[224] = {\n  0xa0, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0xa7, /* 0xa0-0xa7 */\n  0xa8, 0x00, 0x00, 0x00, 0x00, 0xad, 0x00, 0xaf, /* 0xa8-0xaf */\n  0xb0, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0x00, /* 0xc0-0xc7 */\n  0x00, 0xc9, 0x00, 0xcb, 0x00, 0xcd, 0xce, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0xd4, 0xd5, 0xd6, 0xd7, /* 0xd0-0xd7 */\n  0xd8, 0x00, 0xda, 0xdb, 0xdc, 0x00, 0x00, 0xdf, /* 0xd8-0xdf */\n  0x00, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0x00, /* 0xe0-0xe7 */\n  0x00, 0xe9, 0x00, 0xeb, 0x00, 0xed, 0xee, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0xf4, 0xf5, 0xf6, 0xf7, /* 0xf0-0xf7 */\n  0xf8, 0x00, 0xfa, 0xfb, 0xfc, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0xc0, 0xe0, 0x00, 0x00, 0xa1, 0xb1, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xc8, 0xe8, 0x00, 0x00, /* 0x08-0x0f */\n  0xd0, 0xf0, 0xaa, 0xba, 0x00, 0x00, 0xcc, 0xec, /* 0x10-0x17 */\n  0xca, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0xab, 0xbb, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0xa5, 0xb5, 0xcf, 0xef, 0x00, 0x00, 0xc7, 0xe7, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0xf3, /* 0x30-0x37 */\n  0xa2, 0x00, 0x00, 0xa6, 0xb6, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xd1, 0xf1, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0xbd, 0xbf, 0xd2, 0xf2, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa3, 0xb3, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xa9, 0xb9, 0x00, 0x00, 0x00, 0x00, 0xac, 0xbc, /* 0x60-0x67 */\n  0xdd, 0xfd, 0xde, 0xfe, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0xd9, 0xf9, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0xbe, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char iso8859_4_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0xff, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\n\nstatic int\niso8859_4_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0180)\n    c = iso8859_4_page00[wc-0x00a0];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = iso8859_4_page02[wc-0x02c0];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_5.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-5\n */\n\nstatic const unsigned short iso8859_5_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x0401, 0x0402, 0x0403, 0x0404, 0x0405, 0x0406, 0x0407,\n  0x0408, 0x0409, 0x040a, 0x040b, 0x040c, 0x00ad, 0x040e, 0x040f,\n  /* 0xb0 */\n  0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,\n  0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f,\n  /* 0xc0 */\n  0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,\n  0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f,\n  /* 0xd0 */\n  0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,\n  0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f,\n  /* 0xe0 */\n  0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,\n  0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f,\n  /* 0xf0 */\n  0x2116, 0x0451, 0x0452, 0x0453, 0x0454, 0x0455, 0x0456, 0x0457,\n  0x0458, 0x0459, 0x045a, 0x045b, 0x045c, 0x00a7, 0x045e, 0x045f,\n};\n\nstatic int\niso8859_5_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) iso8859_5_2uni[c-0xa0];\n  return 1;\n}\n\nstatic const unsigned char iso8859_5_page00[16] = {\n  0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfd, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, /* 0xa8-0xaf */\n};\nstatic const unsigned char iso8859_5_page04[96] = {\n  0x00, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, /* 0x00-0x07 */\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0x00, 0xae, 0xaf, /* 0x08-0x0f */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0x10-0x17 */\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, /* 0x18-0x1f */\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x20-0x27 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x28-0x2f */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0x30-0x37 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, /* 0x38-0x3f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x40-0x47 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x48-0x4f */\n  0x00, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0x50-0x57 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0x00, 0xfe, 0xff, /* 0x58-0x5f */\n};\n\nstatic int\niso8859_5_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00b0)\n    c = iso8859_5_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x0460)\n    c = iso8859_5_page04[wc-0x0400];\n  else if (wc == 0x2116)\n    c = 0xf0;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_6.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-6\n */\n\nstatic const unsigned short iso8859_6_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0xfffd, 0xfffd, 0xfffd, 0x00a4, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x060c, 0x00ad, 0xfffd, 0xfffd,\n  /* 0xb0 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x061b, 0xfffd, 0xfffd, 0xfffd, 0x061f,\n  /* 0xc0 */\n  0xfffd, 0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627,\n  0x0628, 0x0629, 0x062a, 0x062b, 0x062c, 0x062d, 0x062e, 0x062f,\n  /* 0xd0 */\n  0x0630, 0x0631, 0x0632, 0x0633, 0x0634, 0x0635, 0x0636, 0x0637,\n  0x0638, 0x0639, 0x063a, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xe0 */\n  0x0640, 0x0641, 0x0642, 0x0643, 0x0644, 0x0645, 0x0646, 0x0647,\n  0x0648, 0x0649, 0x064a, 0x064b, 0x064c, 0x064d, 0x064e, 0x064f,\n  /* 0xf0 */\n  0x0650, 0x0651, 0x0652, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n};\n\nstatic int\niso8859_6_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = iso8859_6_2uni[c-0xa0];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char iso8859_6_page00[16] = {\n  0xa0, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, /* 0xa8-0xaf */\n};\nstatic const unsigned char iso8859_6_page06[80] = {\n  0x00, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0xbf, /* 0x18-0x1f */\n  0x00, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x20-0x27 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x28-0x2f */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0x30-0x37 */\n  0xd8, 0xd9, 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x40-0x47 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x48-0x4f */\n  0xf0, 0xf1, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n};\n\nstatic int\niso8859_6_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00b0)\n    c = iso8859_6_page00[wc-0x00a0];\n  else if (wc >= 0x0608 && wc < 0x0658)\n    c = iso8859_6_page06[wc-0x0608];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_7.h",
    "content": "/*\n * Copyright (C) 1999-2004, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-7\n */\n\nstatic const unsigned short iso8859_7_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x2018, 0x2019, 0x00a3, 0x20ac, 0x20af, 0x00a6, 0x00a7,\n  0x00a8, 0x00a9, 0x037a, 0x00ab, 0x00ac, 0x00ad, 0xfffd, 0x2015,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x0384, 0x0385, 0x0386, 0x00b7,\n  0x0388, 0x0389, 0x038a, 0x00bb, 0x038c, 0x00bd, 0x038e, 0x038f,\n  /* 0xc0 */\n  0x0390, 0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396, 0x0397,\n  0x0398, 0x0399, 0x039a, 0x039b, 0x039c, 0x039d, 0x039e, 0x039f,\n  /* 0xd0 */\n  0x03a0, 0x03a1, 0xfffd, 0x03a3, 0x03a4, 0x03a5, 0x03a6, 0x03a7,\n  0x03a8, 0x03a9, 0x03aa, 0x03ab, 0x03ac, 0x03ad, 0x03ae, 0x03af,\n  /* 0xe0 */\n  0x03b0, 0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7,\n  0x03b8, 0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf,\n  /* 0xf0 */\n  0x03c0, 0x03c1, 0x03c2, 0x03c3, 0x03c4, 0x03c5, 0x03c6, 0x03c7,\n  0x03c8, 0x03c9, 0x03ca, 0x03cb, 0x03cc, 0x03cd, 0x03ce, 0xfffd,\n};\n\nstatic int\niso8859_7_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = iso8859_7_2uni[c-0xa0];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char iso8859_7_page00[32] = {\n  0xa0, 0x00, 0x00, 0xa3, 0x00, 0x00, 0xa6, 0xa7, /* 0xa0-0xa7 */\n  0xa8, 0xa9, 0x00, 0xab, 0xac, 0xad, 0x00, 0x00, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0xb2, 0xb3, 0x00, 0x00, 0x00, 0xb7, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xbb, 0x00, 0xbd, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char iso8859_7_page03[88] = {\n  0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0xb5, 0xb6, 0x00, /* 0x80-0x87 */\n  0xb8, 0xb9, 0xba, 0x00, 0xbc, 0x00, 0xbe, 0xbf, /* 0x88-0x8f */\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x90-0x97 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x98-0x9f */\n  0xd0, 0xd1, 0x00, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0xa0-0xa7 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, /* 0xa8-0xaf */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0xb0-0xb7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0xb8-0xbf */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0xc0-0xc7 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0x00, /* 0xc8-0xcf */\n};\nstatic const unsigned char iso8859_7_page20[16] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, /* 0x10-0x17 */\n  0xa1, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n};\n\nstatic int\niso8859_7_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = iso8859_7_page00[wc-0x00a0];\n  else if (wc >= 0x0378 && wc < 0x03d0)\n    c = iso8859_7_page03[wc-0x0378];\n  else if (wc >= 0x2010 && wc < 0x2020)\n    c = iso8859_7_page20[wc-0x2010];\n  else if (wc == 0x20ac)\n    c = 0xa4;\n  else if (wc == 0x20af)\n    c = 0xa5;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_8.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-8\n */\n\nstatic const unsigned short iso8859_8_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0xfffd, 0x00a2, 0x00a3, 0x00a4, 0x00a5, 0x00a6, 0x00a7,\n  0x00a8, 0x00a9, 0x00d7, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00af,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x00b4, 0x00b5, 0x00b6, 0x00b7,\n  0x00b8, 0x00b9, 0x00f7, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0xfffd,\n  /* 0xc0 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xd0 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x2017,\n  /* 0xe0 */\n  0x05d0, 0x05d1, 0x05d2, 0x05d3, 0x05d4, 0x05d5, 0x05d6, 0x05d7,\n  0x05d8, 0x05d9, 0x05da, 0x05db, 0x05dc, 0x05dd, 0x05de, 0x05df,\n  /* 0xf0 */\n  0x05e0, 0x05e1, 0x05e2, 0x05e3, 0x05e4, 0x05e5, 0x05e6, 0x05e7,\n  0x05e8, 0x05e9, 0x05ea, 0xfffd, 0xfffd, 0x200e, 0x200f, 0xfffd,\n};\n\nstatic int\niso8859_8_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c >= 0xa0) {\n    unsigned short wc = iso8859_8_2uni[c-0xa0];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  else {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char iso8859_8_page00[88] = {\n  0xa0, 0x00, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, /* 0xa0-0xa7 */\n  0xa8, 0xa9, 0x00, 0xab, 0xac, 0xad, 0xae, 0xaf, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0xb8, 0xb9, 0x00, 0xbb, 0xbc, 0xbd, 0xbe, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, /* 0xf0-0xf7 */\n};\nstatic const unsigned char iso8859_8_page05[32] = {\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0xd0-0xd7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0xd8-0xdf */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0xe0-0xe7 */\n  0xf8, 0xf9, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n};\nstatic const unsigned char iso8859_8_page20[16] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfd, 0xfe, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, /* 0x10-0x17 */\n};\n\nstatic int\niso8859_8_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00f8)\n    c = iso8859_8_page00[wc-0x00a0];\n  else if (wc >= 0x05d0 && wc < 0x05f0)\n    c = iso8859_8_page05[wc-0x05d0];\n  else if (wc >= 0x2008 && wc < 0x2018)\n    c = iso8859_8_page20[wc-0x2008];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/iso8859_9.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-8859-9\n */\n\nstatic const unsigned short iso8859_9_2uni[48] = {\n  /* 0xd0 */\n  0x011e, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x00d7,\n  0x00d8, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x0130, 0x015e, 0x00df,\n  /* 0xe0 */\n  0x00e0, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x00e7,\n  0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef,\n  /* 0xf0 */\n  0x011f, 0x00f1, 0x00f2, 0x00f3, 0x00f4, 0x00f5, 0x00f6, 0x00f7,\n  0x00f8, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x0131, 0x015f, 0x00ff,\n};\n\nstatic int\niso8859_9_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c >= 0xd0)\n    *pwc = (ucs4_t) iso8859_9_2uni[c-0xd0];\n  else\n    *pwc = (ucs4_t) c;\n  return 1;\n}\n\nstatic const unsigned char iso8859_9_page00[48] = {\n  0x00, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0xd0-0xd7 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0x00, 0x00, 0xdf, /* 0xd8-0xdf */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0xe0-0xe7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0xe8-0xef */\n  0x00, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0xf0-0xf7 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0x00, 0x00, 0xff, /* 0xf8-0xff */\n};\nstatic const unsigned char iso8859_9_page01[72] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0xf0, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0xdd, 0xfd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0xfe, /* 0x58-0x5f */\n};\n\nstatic int\niso8859_9_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00d0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00d0 && wc < 0x0100)\n    c = iso8859_9_page00[wc-0x00d0];\n  else if (wc >= 0x0118 && wc < 0x0160)\n    c = iso8859_9_page01[wc-0x0118];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/isoir165.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2005, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-IR-165\n */\n\n/*\n * ISO-IR-165 is an extension of GB 2312, consisting of:\n * 1. GB 6345.1-86 corrections:\n *    Two corrections to GB 2312, at 0x2367 and 0x6F71.\n * 2. GB 6345.1-86 additions:\n *    - 6 new full-width pinyin characters in row 0x28.\n *    - ISO646-CN in row 0x2A.\n *    - 32 half-width pinyin characters in row 0x2B.\n * 3. GB 8565.2-88 additions:\n *    - 50 characters in row 0x2D.\n *    - 92 characters in row 0x2E.\n *    - 93 characters in row 0x2F.\n *    - 470 characters in rows 0x7A-0x7E.\n * 4. ISO-IR-165 additions:\n *    - 22 characters in row 0x26.\n *    - 94 characters in row 0x2C.\n *    - 44 new characters in row 0x2D.\n *    - 1 new character in row 0x2F.\n *\n * The conversion table was created from the following sources:\n * Ad 1. The 0x2367 correction is already integrated in the unicode.org\n *       GB2312.TXT table. The 0x6F71 mapping is the same in the unicode.org\n *       GB2312.TXT and UNIHAN.TXT table and in Koichi Yasuoka's Uni2GB table,\n *       so we assume it's correct.\n * The unicode.org UNIHAN.TXT table about GB 8565 is not usable: it has\n * extraneous code points at rows 0x28, 0x2C, 0x2D. Note also that it does\n * not list the 69 non-hanzi in row 0x2F. Moreover, it has the characters\n * 0x2F7A-0x2F7D shifted down by one to 0x2F79-0x2F7C.\n * Therefore we take the GB8565 and ISO-IR-165 data from Koichi Yasuoka's\n * Uni2GB table.\n * Ad 1. Yasuoka maps 0x2367 to U+0261 (small script g) and 0x2840 to U+FF47\n *       (full-width small normal g). While coherent with ISO-IR's 165.pdf,\n *       this disagrees with Ken Lunde's book: He says that ISO-IR-165\n *       includes the GB6345 correction, i.e. maps 0x2367 to U+FF47 or U+0067\n *       and _not_ to U+0261 (small script g).\n *       To overcome the confusion, we just map both 0x2367 and 0x2840 to\n *       U+FF47.\n * Ad 2. Row 0x28: Add a mapping from 0x283F to U+01F9.\n *       Row 0x2A: Mapping is well-known, also present in Koichi Yasuoka's\n *                 table.\n *       Row 0x2B: Typed in by hand from appendix E in Ken Lunde's book.\n *       When converting from Unicode to ISO-IR-165, prefer the half-width\n *       range 0x2B{21..40} to the full-width range 0x28{21..40}.\n * Ad 3. Rows 0x2D, 0x2E: Both Koichi Yasuoka's Uni2GB table and the UNIHAN.TXT\n *                 data for GB 8565 agree here.\n *       Row 0x2F: Taken from Koichi Yasuoka's Uni2GB table.\n *       Rows 0x7A-0x7E: Koichi Yasuoka's Uni2GB table and the UNIHAN.TXT\n *                 data for GB 8565 agree here mostly. Differences:\n *                 0x7C38 -> U+6F26 or U+527A ? We choose U+6F26.\n *                 0x7C5A -> U+7A40 or U+6996 ? We choose U+6996.\n * Ad 4. Row 0x26: Mapping unknown.\n *       Rows 0x2C, 0x2D: Both Koichi Yasuoka's Uni2GB table and the UNIHAN.TXT\n *                 data for GB 8565 (!) agree here.\n *       Row 0x2F: Taken from Koichi Yasuoka's Uni2GB table.\n */\n\n#include \"isoir165ext.h\"\n\nstatic int\nisoir165_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  int ret;\n\n  /* Map full-width pinyin (row 0x28) like half-width pinyin (row 0x2B). */\n  if (s[0] == 0x28) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 <= 0x40) {\n        unsigned char buf[2];\n        buf[0] = 0x2b;\n        buf[1] = c2;\n        ret = isoir165ext_mbtowc(conv,pwc,buf,2);\n        if (ret != RET_ILSEQ)\n          return ret;\n      }\n    }\n  }\n  /* Try the GB2312 -> Unicode table. */\n  ret = gb2312_mbtowc(conv,pwc,s,n);\n  if (ret != RET_ILSEQ)\n    return ret;\n  /* Row 0x2A is GB_1988-80. */\n  if (s[0] == 0x2a) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        ret = iso646_cn_mbtowc(conv,pwc,s+1,1);\n        if (ret != 1) abort();\n        return 2;\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  /* Try the ISO-IR-165 extensions -> Unicode table. */\n  ret = isoir165ext_mbtowc(conv,pwc,s,n);\n  return ret;\n}\n\nstatic int\nisoir165_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Try the Unicode -> GB2312 table. */\n  ret = gb2312_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (!(buf[0] == 0x28 && buf[1] >= 0x21 && buf[1] <= 0x40)) {\n      if (n >= 2) {\n        r[0] = buf[0];\n        r[1] = buf[1];\n        return 2;\n      }\n      return RET_TOOSMALL;\n    }\n  }\n  /* Row 0x2A is GB_1988-80. */\n  ret = iso646_cn_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    if (ret != 1) abort();\n    if (buf[0] >= 0x21 && buf[0] < 0x7f) {\n      if (n >= 2) {\n        r[0] = 0x2a;\n        r[1] = buf[0];\n        return 2;\n      }\n      return RET_TOOSMALL;\n    }\n  }\n  /* Try the Unicode -> ISO-IR-165 extensions table. */\n  ret = isoir165ext_wctomb(conv,r,wc,n);\n  return ret;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/isoir165ext.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * ISO-IR-165 extensions\n */\n\nstatic const unsigned short isoir165ext_2uni_page2b[470] = {\n  /* 0x2b */\n  0x1fb1, 0x03ac, 0x1fb0, 0x1f70, 0x0113, 0x00e9, 0x011b, 0x00e8,\n  0x012b, 0x00ed, 0x01d0, 0x00ec, 0x014d, 0x00f3, 0x01d2, 0x00f2,\n  0x016b, 0x00fa, 0x01d4, 0x00f9, 0x01d6, 0x01d8, 0x01da, 0x01dc,\n  0x00fc, 0x00ea, 0x03b1, 0x1e3f, 0x0144, 0x0148, 0x01f9, 0xff47,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x2c */\n  0x53be, 0x4eb8, 0x4f3e, 0x501e, 0x50c7, 0x9118, 0x6c98, 0x6cdc,\n  0x6cc3, 0x6e5d, 0x6ea6, 0x6eeb, 0x6fa5, 0x6165, 0x5ea4, 0x9618,\n  0x5848, 0x8453, 0x7cf5, 0x5f07, 0x6294, 0x647d, 0x725a, 0x5574,\n  0x55a4, 0x5640, 0x5684, 0x5d1f, 0x72c9, 0x998c, 0x59de, 0x59fd,\n  0x5a5e, 0x7ebb, 0x7ee4, 0x7ef9, 0x9a99, 0x71cf, 0x6245, 0x624a,\n  0x797c, 0x739a, 0x742b, 0x7488, 0x74aa, 0x74d8, 0x6767, 0x6ab5,\n  0x71ca, 0x6ba3, 0x8f80, 0x8f92, 0x8d5f, 0x9b36, 0x72a8, 0x87a3,\n  0x8152, 0x6b38, 0x98d0, 0x8897, 0x88af, 0x8955, 0x770a, 0x94da,\n  0x955a, 0x9560, 0x9e24, 0x9e40, 0x9e50, 0x9e5d, 0x9e60, 0x870e,\n  0x7b5c, 0x7fd9, 0x7fef, 0x7e44, 0x8e45, 0x8e36, 0x8e62, 0x8e5c,\n  0x9778, 0x9b46, 0x9f2b, 0x9f41, 0x7526, 0x4e26, 0x8bac, 0x8129,\n  0x5091, 0x50cd, 0x52b9, 0x89d4, 0x5557, 0x94c7,\n  /* 0x2d */\n  0x9496, 0x9498, 0x94cf, 0x94d3, 0x94d4, 0x94e6, 0x9533, 0x951c,\n  0x9520, 0x9527, 0x953d, 0x9543, 0x956e, 0x9574, 0x9c80, 0x9c84,\n  0x9c8a, 0x9c93, 0x9c96, 0x9c97, 0x9c98, 0x9c99, 0x9cbf, 0x9cc0,\n  0x9cc1, 0x9cd2, 0x9cdb, 0x9ce0, 0x9ce3, 0x9770, 0x977a, 0x97a1,\n  0x97ae, 0x97a8, 0x9964, 0x9966, 0x9978, 0x9979, 0x997b, 0x997e,\n  0x9982, 0x9983, 0x998e, 0x9b10, 0x9b18, 0x65a2, 0x9e80, 0x911c,\n  0x9e91, 0x9f12, 0x52f3, 0x6c96, 0x6d44, 0x6e1b, 0x6e67, 0x6f82,\n  0x6fec, 0x60ae, 0x5ec8, 0x8ffa, 0x577f, 0x5586, 0x849e, 0x8460,\n  0x5c05, 0x5e0b, 0x5d11, 0x5d19, 0x5dd6, 0x59b3, 0x5aae, 0x9a94,\n  0x658f, 0x709e, 0x7551, 0x71ff, 0x691d, 0x6a11, 0x68bf, 0x6607,\n  0x668e, 0x6673, 0x6c25, 0x7652, 0x778b, 0x76ea, 0x9895, 0x8780,\n  0x882d, 0x7b87, 0x7c50, 0x8ead, 0x9575, 0x65c2,\n  /* 0x2e */\n  0x5390, 0x79b8, 0x4f15, 0x4f21, 0x4f3b, 0x4fa2, 0x50a4, 0x5092,\n  0x530a, 0x51c3, 0x51a8, 0x8d20, 0x5787, 0x579a, 0x5795, 0x57eb,\n  0x585d, 0x585a, 0x5871, 0x5895, 0x5c30, 0x5f0c, 0x5f0d, 0x5f0e,\n  0x5c72, 0x5cc7, 0x5fac, 0x5f68, 0x5f5f, 0x5a12, 0x5a65, 0x5a84,\n  0x5ac4, 0x7394, 0x73ea, 0x73ee, 0x7437, 0x7415, 0x7454, 0x6799,\n  0x686c, 0x68f8, 0x69fe, 0x72e2, 0x6667, 0x8d52, 0x89c3, 0x89cd,\n  0x6427, 0x6477, 0x6c1d, 0x813f, 0x6b54, 0x98d6, 0x707a, 0x70f1,\n  0x7120, 0x6153, 0x6c87, 0x6dad, 0x6e81, 0x6eb5, 0x6f94, 0x6f9b,\n  0x793d, 0x794e, 0x7806, 0x7859, 0x7894, 0x78dc, 0x7903, 0x7a16,\n  0x7a5e, 0x75e0, 0x7adc, 0x7676, 0x9892, 0x7bf2, 0x7c30, 0x7c5d,\n  0x9c9d, 0x7cac, 0x8278, 0x83d1, 0x84ea, 0x7fc0, 0x7f1e, 0x8e21,\n  0x8e53, 0x9754, 0x9f0c, 0x94fb, 0xfffd, 0xfffd,\n  /* 0x2f */\n  0x32c0, 0x32c1, 0x32c2, 0x32c3, 0x32c4, 0x32c5, 0x32c6, 0x32c7,\n  0x32c8, 0x32c9, 0x32ca, 0x32cb, 0x33e0, 0x33e1, 0x33e2, 0x33e3,\n  0x33e4, 0x33e5, 0x33e6, 0x33e7, 0x33e8, 0x33e9, 0x33ea, 0x33eb,\n  0x33ec, 0x33ed, 0x33ee, 0x33ef, 0x33f0, 0x33f1, 0x33f2, 0x33f3,\n  0x33f4, 0x33f5, 0x33f6, 0x33f7, 0x33f8, 0x33f9, 0x33fa, 0x33fb,\n  0x33fc, 0x33fd, 0x33fe, 0x3358, 0x3359, 0x335a, 0x335b, 0x335c,\n  0x335d, 0x335e, 0x335f, 0x3360, 0x3361, 0x3362, 0x3363, 0x3364,\n  0x3365, 0x3366, 0x3367, 0x3368, 0x3369, 0x336a, 0x336b, 0x336c,\n  0x336d, 0x336e, 0x336f, 0x3370, 0x3037, 0x90a8, 0x965e, 0x5842,\n  0x5803, 0x6c3e, 0x6d29, 0x6ee7, 0x8534, 0x84c6, 0x633c, 0x5d05,\n  0x7f10, 0x7eec, 0x7287, 0x712e, 0x8218, 0x8216, 0x756c, 0x75f3,\n  0x9b25, 0x8980, 0x7ca6, 0x4e85, 0x5570, 0x91c6,\n};\nstatic const unsigned short isoir165ext_2uni_page7a[470] = {\n  /* 0x7a */\n  0x4e0f, 0x673f, 0x4e42, 0x752a, 0x592c, 0x9ee1, 0x8652, 0x531c,\n  0x5187, 0x518f, 0x50f0, 0x4f0b, 0x4f23, 0x4f03, 0x4f61, 0x4f7a,\n  0x4f6b, 0x4feb, 0x4ff5, 0x5034, 0x5022, 0x4ff6, 0x5072, 0x4eb6,\n  0x51ae, 0x5910, 0x6bda, 0x522c, 0x5232, 0x4fb4, 0x5298, 0x52bb,\n  0x52bc, 0x52cd, 0x52da, 0x52f7, 0x53c6, 0x53c7, 0x5770, 0x576c,\n  0x57b1, 0x579f, 0x579e, 0x57be, 0x57cc, 0x580e, 0x580c, 0x57f5,\n  0x5809, 0x583c, 0x5843, 0x5845, 0x5846, 0x583d, 0x5853, 0x5888,\n  0x5884, 0x58f8, 0x56ad, 0x5940, 0x5953, 0x596d, 0x5c2a, 0x54a5,\n  0x551d, 0x5536, 0x556f, 0x554d, 0x569a, 0x569c, 0x56f7, 0x5710,\n  0x5719, 0x5e17, 0x5e21, 0x5e28, 0x5e6a, 0x5c74, 0x5c7c, 0x5ca8,\n  0x5c9e, 0x5cc3, 0x5cd3, 0x5ce3, 0x5ce7, 0x5cff, 0x5d04, 0x5d00,\n  0x5d1a, 0x5d0c, 0x5d4e, 0x5d5a, 0x5d85, 0x5d93,\n  /* 0x7b */\n  0x5d92, 0x5dc2, 0x5dc9, 0x8852, 0x5faf, 0x5906, 0x65a8, 0x7241,\n  0x7242, 0x5ebc, 0x5ecb, 0x95ec, 0x95ff, 0x8a1a, 0x9607, 0x9613,\n  0x961b, 0x5bac, 0x5ba7, 0x5c5d, 0x5f22, 0x59ee, 0x5a7c, 0x5a96,\n  0x5a73, 0x5a9e, 0x5aad, 0x5ada, 0x5aea, 0x5b1b, 0x5b56, 0x9a72,\n  0x9a83, 0x9a89, 0x9a8d, 0x9a8e, 0x9a95, 0x9aa6, 0x7395, 0x7399,\n  0x73a0, 0x73b1, 0x73a5, 0x73a6, 0x73d6, 0x73f0, 0x73fd, 0x73e3,\n  0x7424, 0x740e, 0x7407, 0x73f6, 0x73fa, 0x7432, 0x742f, 0x7444,\n  0x7442, 0x7471, 0x7478, 0x7462, 0x7486, 0x749f, 0x74a0, 0x7498,\n  0x74b2, 0x97e8, 0x6745, 0x679f, 0x677b, 0x67c8, 0x67ee, 0x684b,\n  0x68a0, 0x6812, 0x681f, 0x686a, 0x68bc, 0x68fb, 0x686f, 0x68b1,\n  0x68c1, 0x68eb, 0x6913, 0x68d1, 0x6911, 0x68d3, 0x68ec, 0x692b,\n  0x68e8, 0x69be, 0x6969, 0x6940, 0x696f, 0x695f,\n  /* 0x7c */\n  0x6962, 0x6935, 0x6959, 0x69bc, 0x69c5, 0x69da, 0x69dc, 0x6a0b,\n  0x69e5, 0x6a66, 0x6a96, 0x6ab4, 0x72dd, 0x5cf1, 0x7314, 0x733a,\n  0x6b95, 0x5f67, 0x80fe, 0x74fb, 0x7503, 0x655c, 0x6569, 0x6f26,\n  0x65f8, 0x65fb, 0x6609, 0x663d, 0x6662, 0x665e, 0x666c, 0x668d,\n  0x668b, 0x8d51, 0x8d57, 0x7263, 0x7277, 0x63b1, 0x6261, 0x6260,\n  0x6283, 0x62e4, 0x62c3, 0x631c, 0x6326, 0x63af, 0x63fe, 0x6422,\n  0x6412, 0x64ed, 0x6713, 0x6718, 0x8158, 0x81d1, 0x98cf, 0x98d4,\n  0x98d7, 0x6996, 0x7098, 0x70dc, 0x70fa, 0x710c, 0x711c, 0x71cb,\n  0x721f, 0x70dd, 0x659d, 0x6246, 0x6017, 0x60c7, 0x60d3, 0x60b0,\n  0x60d9, 0x6114, 0x6c3f, 0x6c67, 0x6c84, 0x6c9a, 0x6c6d, 0x6ca8,\n  0x6cc6, 0x6cb5, 0x6d49, 0x6d38, 0x6d11, 0x6d3a, 0x6d28, 0x6d50,\n  0x6d34, 0x6d55, 0x6d61, 0x6da2, 0x6d65, 0x6d5b,\n  /* 0x7d */\n  0x6d64, 0x6db4, 0x6e9a, 0x6e5c, 0x6e72, 0x6ea0, 0x6e87, 0x6e8e,\n  0x6ec9, 0x6ec3, 0x6f37, 0x6ed8, 0x6eea, 0x6f56, 0x6f75, 0x6f5f,\n  0x6fb4, 0x6fbc, 0x7014, 0x700d, 0x700c, 0x703c, 0x7943, 0x7947,\n  0x794a, 0x7950, 0x7972, 0x7998, 0x79a0, 0x79a4, 0x77fc, 0x77fb,\n  0x7822, 0x7820, 0x7841, 0x785a, 0x7875, 0x78b6, 0x78e1, 0x7933,\n  0x8a5f, 0x76fb, 0x771b, 0x772c, 0x7786, 0x77ab, 0x77ad, 0x7564,\n  0x756f, 0x6983, 0x7f7d, 0x76dd, 0x76e6, 0x76ec, 0x7521, 0x79fe,\n  0x7a44, 0x767f, 0x769e, 0x9e27, 0x9e2e, 0x9e30, 0x9e34, 0x9e4d,\n  0x9e52, 0x9e53, 0x9e54, 0x9e56, 0x9e59, 0x9e61, 0x9e62, 0x9e65,\n  0x9e6f, 0x9e74, 0x75a2, 0x7604, 0x7608, 0x761d, 0x7ad1, 0x7a85,\n  0x7a8e, 0x7aa3, 0x7ab8, 0x7abe, 0x77de, 0x8030, 0x988b, 0x988e,\n  0x9899, 0x98a3, 0x8683, 0x8705, 0x8758, 0x87cf,\n  /* 0x7e */\n  0x87e2, 0x880b, 0x80d4, 0x7f4d, 0x7b4a, 0x7b4e, 0x7b7f, 0x7b93,\n  0x7bef, 0x7c09, 0x7bf0, 0x7c15, 0x7c03, 0x7c20, 0x823a, 0x8886,\n  0x88aa, 0x88c0, 0x88c8, 0x8926, 0x8976, 0x7f91, 0x8283, 0x82bc,\n  0x82a7, 0x8313, 0x82fe, 0x8300, 0x835d, 0x8345, 0x8344, 0x831d,\n  0x83a6, 0x8399, 0x83fe, 0x841a, 0x83fc, 0x8429, 0x8439, 0x84a8,\n  0x84cf, 0x849f, 0x84c2, 0x84f7, 0x8570, 0x85b3, 0x85a2, 0x96d8,\n  0x85b8, 0x85e0, 0x7fda, 0x7eae, 0x7eb4, 0x7ebc, 0x7ed6, 0x7f0a,\n  0x5b43, 0x8d6a, 0x5245, 0x8c68, 0x8c6e, 0x8c6d, 0x8e16, 0x8e26,\n  0x8e27, 0x8e50, 0x9098, 0x90a0, 0x90bd, 0x90c8, 0x90c3, 0x90da,\n  0x90ff, 0x911a, 0x910c, 0x9120, 0x9142, 0x8fb5, 0x90e4, 0x8c86,\n  0x89f1, 0x8bb1, 0x8bbb, 0x8bc7, 0x8bea, 0x8c09, 0x8c1e, 0x9702,\n  0x68d0, 0x7306, 0x9f81, 0x9f82, 0x92c6, 0x9491,\n};\n\nstatic int\nisoir165ext_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x2b && c1 <= 0x2f) || (c1 >= 0x7a && c1 <= 0x7e)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        unsigned short wc = 0xfffd;\n        if (i < 8366) {\n          if (i < 1410)\n            wc = isoir165ext_2uni_page2b[i-940];\n        } else {\n          if (i < 8836)\n            wc = isoir165ext_2uni_page7a[i-8366];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short isoir165ext_2charset[876] = {\n  0x2b28, 0x2b26, 0x2b3a, 0x2b2c, 0x2b2a, 0x2b30, 0x2b2e, 0x2b34,\n  0x2b32, 0x2b39, 0x2b25, 0x2b27, 0x2b29, 0x2b3d, 0x2b3e, 0x2b2d,\n  0x2b31, 0x2b2b, 0x2b2f, 0x2b33, 0x2b35, 0x2b36, 0x2b37, 0x2b38,\n  0x2b3f, 0x2b22, 0x2b3b, 0x2b3c, 0x2b24, 0x2b23, 0x2b21, 0x2f65,\n  0x2f21, 0x2f22, 0x2f23, 0x2f24, 0x2f25, 0x2f26, 0x2f27, 0x2f28,\n  0x2f29, 0x2f2a, 0x2f2b, 0x2f2c, 0x2f4c, 0x2f4d, 0x2f4e, 0x2f4f,\n  0x2f50, 0x2f51, 0x2f52, 0x2f53, 0x2f54, 0x2f55, 0x2f56, 0x2f57,\n  0x2f58, 0x2f59, 0x2f5a, 0x2f5b, 0x2f5c, 0x2f5d, 0x2f5e, 0x2f5f,\n  0x2f60, 0x2f61, 0x2f62, 0x2f63, 0x2f64, 0x2f2d, 0x2f2e, 0x2f2f,\n  0x2f30, 0x2f31, 0x2f32, 0x2f33, 0x2f34, 0x2f35, 0x2f36, 0x2f37,\n  0x2f38, 0x2f39, 0x2f3a, 0x2f3b, 0x2f3c, 0x2f3d, 0x2f3e, 0x2f3f,\n  0x2f40, 0x2f41, 0x2f42, 0x2f43, 0x2f44, 0x2f45, 0x2f46, 0x2f47,\n  0x2f48, 0x2f49, 0x2f4a, 0x2f4b, 0x7a21, 0x2c76, 0x7a23, 0x2f7c,\n  0x7a38, 0x2c22, 0x7a2e, 0x7a2c, 0x2e23, 0x2e24, 0x7a2d, 0x2e25,\n  0x2c23, 0x7a2f, 0x7a31, 0x7a30, 0x2e26, 0x7a3e, 0x7a32, 0x7a33,\n  0x7a36, 0x2c24, 0x7a35, 0x7a34, 0x7a37, 0x2c79, 0x2e28, 0x2e27,\n  0x2c25, 0x2c7a, 0x7a2b, 0x7a29, 0x7a2a, 0x2e2b, 0x7a39, 0x2e2a,\n  0x7a3c, 0x7a3d, 0x7e5b, 0x7a3f, 0x2c7b, 0x7a40, 0x7a41, 0x7a42,\n  0x7a43, 0x2d53, 0x7a44, 0x2e29, 0x7a28, 0x2e21, 0x2c21, 0x7a45,\n  0x7a46, 0x7a60, 0x7a61, 0x7a62, 0x7a64, 0x2c7d, 0x7a63, 0x2f7d,\n  0x2c38, 0x2d5e, 0x2c39, 0x2c3a, 0x2c3b, 0x7a65, 0x7a66, 0x7a5b,\n  0x7a67, 0x7a68, 0x7a69, 0x7a48, 0x7a47, 0x2d5d, 0x2e2d, 0x2e2f,\n  0x2e2e, 0x7a4b, 0x7a4a, 0x7a49, 0x7a4c, 0x7a4d, 0x2e30, 0x7a50,\n  0x2f69, 0x7a51, 0x7a4f, 0x7a4e, 0x7a52, 0x7a56, 0x2f68, 0x7a53,\n  0x7a54, 0x7a55, 0x2c31, 0x7a57, 0x2e32, 0x2e31, 0x2e33, 0x7a59,\n  0x7a58, 0x2e34, 0x7a5a, 0x7b26, 0x7a3a, 0x7a25, 0x7a5c, 0x7a5d,\n  0x7a5e, 0x2d66, 0x2c3f, 0x7b36, 0x2c40, 0x2e3e, 0x2c41, 0x2e3f,\n  0x7b39, 0x7b37, 0x2e40, 0x7b38, 0x7b3a, 0x7b3b, 0x2d67, 0x2e41,\n  0x7b3c, 0x7b3d, 0x7b3e, 0x7e59, 0x7b3f, 0x7b33, 0x7b32, 0x2d61,\n  0x7a5f, 0x2e35, 0x7b34, 0x2e39, 0x7a6e, 0x7a6f, 0x7a71, 0x7a70,\n  0x7a72, 0x2e3a, 0x7a73, 0x7a74, 0x7a75, 0x7c2e, 0x7a76, 0x7a78,\n  0x7a77, 0x2f70, 0x7a7a, 0x2d63, 0x2d64, 0x7a79, 0x2c3c, 0x7a7b,\n  0x7a7c, 0x7a7d, 0x7b21, 0x7a7e, 0x7b22, 0x7b23, 0x2d65, 0x2d62,\n  0x7a6a, 0x7a6b, 0x7a6c, 0x7a6d, 0x2c2f, 0x7b2a, 0x2d5b, 0x7b2b,\n  0x2c34, 0x2e36, 0x2e37, 0x2e38, 0x7b35, 0x2e3d, 0x7c32, 0x2e3c,\n  0x2e3b, 0x7b25, 0x7c65, 0x2d5a, 0x7c68, 0x7c66, 0x7c67, 0x7c69,\n  0x7c6a, 0x2e5a, 0x2c2e, 0x2c47, 0x7c64, 0x2c48, 0x7c48, 0x7c47,\n  0x7c49, 0x2c35, 0x7c4b, 0x7c4a, 0x7c4c, 0x7c4d, 0x2f6f, 0x7c4e,\n  0x7c46, 0x7c4f, 0x7c51, 0x7c50, 0x2e51, 0x2e52, 0x2c36, 0x7c52,\n  0x7c36, 0x7c37, 0x2d69, 0x7c63, 0x2d4e, 0x7b27, 0x2d7e, 0x7c39,\n  0x7c3a, 0x2d70, 0x7c3b, 0x7c3c, 0x7c3e, 0x7c3d, 0x2e4d, 0x7c3f,\n  0x2d72, 0x7c41, 0x7c40, 0x2d71, 0x7c53, 0x7c54, 0x7a22, 0x7b63,\n  0x2c4f, 0x7b65, 0x2e48, 0x7b64, 0x7b66, 0x7b67, 0x7b6a, 0x7b6b,\n  0x7b68, 0x7b6c, 0x2e49, 0x7b6f, 0x7b69, 0x7b70, 0x7b6d, 0x2d6f,\n  0x7b71, 0x7e79, 0x7b74, 0x7b76, 0x7b79, 0x7b72, 0x7b77, 0x2e4a,\n  0x7b6e, 0x7b75, 0x7b73, 0x2d6d, 0x7b78, 0x7c22, 0x7b7c, 0x7c23,\n  0x7b7e, 0x7c21, 0x7b7b, 0x7b7d, 0x7d52, 0x7c5a, 0x7c24, 0x7b7a,\n  0x7c25, 0x7c26, 0x7c27, 0x7c29, 0x2e4b, 0x7c28, 0x2d6e, 0x7c2a,\n  0x7c2b, 0x7c2c, 0x2c50, 0x2c5a, 0x2e55, 0x7c31, 0x2c52, 0x7a3b,\n  0x2e53, 0x2d73, 0x2f6a, 0x7c6b, 0x7c6c, 0x7c6f, 0x7c6d, 0x2e5b,\n  0x2d54, 0x2c27, 0x7c6e, 0x7c70, 0x7c72, 0x2c29, 0x7c71, 0x2c28,\n  0x7c75, 0x7c77, 0x2f6b, 0x7c79, 0x7c74, 0x7c76, 0x2d55, 0x7c73,\n  0x7c78, 0x7c7a, 0x7c7e, 0x7c7b, 0x7d21, 0x7c7d, 0x7c7c, 0x2e5c,\n  0x7d22, 0x2d56, 0x7d24, 0x2c2a, 0x2d57, 0x7d25, 0x2e5d, 0x7d27,\n  0x7d28, 0x7d23, 0x7d26, 0x2c2b, 0x2e5e, 0x7d2a, 0x7d29, 0x7d2c,\n  0x2f6c, 0x7d2d, 0x2c2c, 0x7c38, 0x7d2b, 0x7d2e, 0x7d30, 0x7d2f,\n  0x2d58, 0x2e5f, 0x2e60, 0x2c2d, 0x7d31, 0x7d32, 0x2d59, 0x7d35,\n  0x7d34, 0x7d33, 0x7d36, 0x2e57, 0x7c5b, 0x2d6a, 0x7c5c, 0x7c62,\n  0x2e58, 0x7c5d, 0x7c5e, 0x7c5f, 0x2e59, 0x2f74, 0x2c51, 0x7c60,\n  0x2c46, 0x2d6c, 0x7c61, 0x7b28, 0x7b29, 0x2c37, 0x7c44, 0x7c45,\n  0x2f73, 0x2c57, 0x2c3d, 0x7c2d, 0x2e4c, 0x7e7a, 0x7c2f, 0x7c30,\n  0x2e42, 0x7b47, 0x7b48, 0x2c4a, 0x7b49, 0x7b4b, 0x7b4c, 0x7b4a,\n  0x7b4d, 0x7b50, 0x2e43, 0x2e44, 0x7b4e, 0x7b54, 0x7b55, 0x7b4f,\n  0x7b53, 0x7b52, 0x2e46, 0x7b51, 0x2c4b, 0x7b57, 0x7b56, 0x2e45,\n  0x7b59, 0x7b58, 0x2e47, 0x7b5c, 0x7b5a, 0x7b5b, 0x7b5d, 0x2c4c,\n  0x7b60, 0x7b5e, 0x7b5f, 0x2c4d, 0x7b61, 0x2c4e, 0x7c34, 0x7c35,\n  0x7d57, 0x2c75, 0x7a24, 0x2d6b, 0x7d50, 0x2f77, 0x7d51, 0x7d6b,\n  0x2e6a, 0x2f78, 0x7d6c, 0x7d6d, 0x7d6e, 0x2d74, 0x2e6c, 0x7d5a,\n  0x7d5b, 0x7d54, 0x7d55, 0x2d76, 0x7d56, 0x7d4a, 0x2c5f, 0x7d4b,\n  0x7d4c, 0x7d4d, 0x2d75, 0x7d4e, 0x7d4f, 0x7d75, 0x7d40, 0x7d3f,\n  0x2e63, 0x7d42, 0x7d41, 0x7d43, 0x2e64, 0x7d44, 0x7d45, 0x2e65,\n  0x7d46, 0x2e66, 0x7d47, 0x2e67, 0x7d48, 0x2e61, 0x7d37, 0x7d38,\n  0x7d39, 0x2e62, 0x7d3a, 0x7d3b, 0x2c49, 0x7d3c, 0x7d3d, 0x7d3e,\n  0x2e22, 0x7d58, 0x2e68, 0x7d59, 0x2e69, 0x7d70, 0x7d71, 0x7d72,\n  0x7d73, 0x7d74, 0x7d6f, 0x2e6b, 0x7e25, 0x7e26, 0x2c69, 0x7e27,\n  0x2d7a, 0x7e28, 0x7e29, 0x7e2b, 0x2e6e, 0x7e2d, 0x7e2a, 0x7e2c,\n  0x7e2e, 0x2e6f, 0x2d7b, 0x2e70, 0x2f7b, 0x2e72, 0x2c33, 0x2c6c,\n  0x7e54, 0x7e55, 0x2c42, 0x7e56, 0x7e57, 0x2c43, 0x2f72, 0x2c44,\n  0x7e58, 0x2f71, 0x2e77, 0x7e24, 0x7d53, 0x7e36, 0x2e76, 0x2c6a,\n  0x7e53, 0x2c6b, 0x7d76, 0x7e23, 0x7c33, 0x2c78, 0x2e54, 0x2c59,\n  0x7c55, 0x7c56, 0x2f76, 0x2f75, 0x7e2f, 0x2e73, 0x7e37, 0x7e39,\n  0x7e38, 0x7e3b, 0x7e3c, 0x7e3a, 0x7e40, 0x7e3f, 0x7e3e, 0x7e3d,\n  0x7e42, 0x7e41, 0x2e74, 0x7e45, 0x7e43, 0x7e44, 0x7e46, 0x7e47,\n  0x2c32, 0x2d60, 0x2d5f, 0x7e4a, 0x7e48, 0x7e4b, 0x2f6e, 0x7e49,\n  0x2e75, 0x7e4c, 0x2f6d, 0x7e4d, 0x7e4f, 0x7e4e, 0x7e51, 0x7e52,\n  0x7a27, 0x7d7b, 0x7d7c, 0x2c68, 0x7d7d, 0x2d78, 0x2c58, 0x7d7e,\n  0x7e21, 0x7e22, 0x2d79, 0x7b24, 0x7e30, 0x2c5c, 0x7e31, 0x2c5d,\n  0x7e32, 0x7e33, 0x7e34, 0x2c5e, 0x7e35, 0x2f7a, 0x2e4f, 0x2e50,\n  0x2c7c, 0x7e71, 0x7b2e, 0x7d49, 0x2c77, 0x7e72, 0x7e73, 0x7e74,\n  0x7e75, 0x7e76, 0x7e77, 0x7e5c, 0x7e5e, 0x7e5d, 0x7e70, 0x2e2c,\n  0x7c42, 0x2e4e, 0x7c43, 0x2c55, 0x7e5a, 0x7e5f, 0x2e78, 0x7e60,\n  0x7e61, 0x2c6e, 0x2c6d, 0x7e62, 0x2e79, 0x2c70, 0x2c6f, 0x2d7c,\n  0x2c53, 0x2c54, 0x7e6e, 0x2d5c, 0x7e63, 0x7e64, 0x2f66, 0x7e65,\n  0x7e67, 0x7e66, 0x7e68, 0x7e6f, 0x7e69, 0x7e6b, 0x2c26, 0x7e6a,\n  0x2d50, 0x7e6c, 0x7e6d, 0x2f7e, 0x7e7d, 0x7e7e, 0x2d21, 0x2d22,\n  0x2c7e, 0x2d23, 0x2d24, 0x2d25, 0x2c60, 0x2d26, 0x2e7c, 0x2d28,\n  0x2d29, 0x2d2a, 0x2d27, 0x2d2b, 0x2d2c, 0x2c61, 0x2c62, 0x2d2d,\n  0x2d2e, 0x2d7d, 0x7b2c, 0x7b2d, 0x7b2f, 0x7b30, 0x2c30, 0x7b31,\n  0x2f67, 0x7e50, 0x7e78, 0x2e7a, 0x2d3e, 0x2c71, 0x2d3f, 0x2d40,\n  0x2d42, 0x2d41, 0x7b62, 0x7d77, 0x7d78, 0x2e6d, 0x2d77, 0x7d79,\n  0x7d7a, 0x7c57, 0x2c5b, 0x7c58, 0x2e56, 0x7c59, 0x2d43, 0x2d44,\n  0x2d45, 0x2d46, 0x2d47, 0x2d48, 0x2d49, 0x2d4a, 0x2c3e, 0x2d4b,\n  0x7b40, 0x7b41, 0x7b42, 0x7b43, 0x7b44, 0x2d68, 0x7b45, 0x2c45,\n  0x7b46, 0x2d4c, 0x2d4d, 0x2f79, 0x2c56, 0x2c72, 0x2d2f, 0x2d30,\n  0x2d31, 0x2d32, 0x2d33, 0x2d34, 0x2d35, 0x2d36, 0x2e71, 0x2d37,\n  0x2d38, 0x2d39, 0x2d3a, 0x2d3b, 0x2d3c, 0x2d3d, 0x2c63, 0x7d5c,\n  0x7d5d, 0x7d5e, 0x7d5f, 0x2c64, 0x7d60, 0x2c65, 0x7d61, 0x7d62,\n  0x7d63, 0x7d64, 0x7d65, 0x2c66, 0x2c67, 0x7d66, 0x7d67, 0x7d68,\n  0x7d69, 0x7d6a, 0x2d4f, 0x2d51, 0x7a26, 0x2e7b, 0x2d52, 0x2c73,\n  0x2c74, 0x7e7b, 0x7e7c, 0x2b40,\n};\n\nstatic const Summary16 isoir165ext_uni2indx_page00[32] = {\n  /* 0x0000 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x3700 }, {    5, 0x160c },\n  /* 0x0100 */\n  {   10, 0x0000 }, {   10, 0x0808 }, {   12, 0x0800 }, {   13, 0x0000 },\n  {   13, 0x2110 }, {   16, 0x0000 }, {   16, 0x0800 }, {   17, 0x0000 },\n  {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 }, {   17, 0x0000 },\n  {   17, 0x0000 }, {   17, 0x1555 }, {   24, 0x0000 }, {   24, 0x0200 },\n};\nstatic const Summary16 isoir165ext_uni2indx_page03[12] = {\n  /* 0x0300 */\n  {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 },\n  {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x0000 },\n  {   25, 0x0000 }, {   25, 0x0000 }, {   25, 0x1000 }, {   26, 0x0002 },\n};\nstatic const Summary16 isoir165ext_uni2indx_page1e[28] = {\n  /* 0x1e00 */\n  {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x0000 }, {   27, 0x8000 },\n  {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 },\n  {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 },\n  {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 },\n  /* 0x1f00 */\n  {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 },\n  {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0000 }, {   28, 0x0001 },\n  {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0000 }, {   29, 0x0003 },\n};\nstatic const Summary16 isoir165ext_uni2indx_page30[4] = {\n  /* 0x3000 */\n  {   31, 0x0000 }, {   31, 0x0000 }, {   31, 0x0000 }, {   31, 0x0080 },\n};\nstatic const Summary16 isoir165ext_uni2indx_page32[32] = {\n  /* 0x3200 */\n  {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 },\n  {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 },\n  {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 }, {   32, 0x0000 },\n  {   32, 0x0fff }, {   44, 0x0000 }, {   44, 0x0000 }, {   44, 0x0000 },\n  /* 0x3300 */\n  {   44, 0x0000 }, {   44, 0x0000 }, {   44, 0x0000 }, {   44, 0x0000 },\n  {   44, 0x0000 }, {   44, 0xff00 }, {   52, 0xffff }, {   68, 0x0001 },\n  {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0x0000 },\n  {   69, 0x0000 }, {   69, 0x0000 }, {   69, 0xffff }, {   85, 0x7fff },\n};\nstatic const Summary16 isoir165ext_uni2indx_page4e[752] = {\n  /* 0x4e00 */\n  {  100, 0x8000 }, {  101, 0x0000 }, {  101, 0x0040 }, {  102, 0x0000 },\n  {  102, 0x0004 }, {  103, 0x0000 }, {  103, 0x0000 }, {  103, 0x0000 },\n  {  103, 0x0020 }, {  104, 0x0000 }, {  104, 0x0000 }, {  104, 0x0140 },\n  {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x0000 }, {  106, 0x0000 },\n  /* 0x4f00 */\n  {  106, 0x0808 }, {  108, 0x0020 }, {  109, 0x000a }, {  111, 0x4800 },\n  {  113, 0x0000 }, {  113, 0x0000 }, {  113, 0x0802 }, {  115, 0x0400 },\n  {  116, 0x0000 }, {  116, 0x0000 }, {  116, 0x0004 }, {  117, 0x0010 },\n  {  118, 0x0000 }, {  118, 0x0000 }, {  118, 0x0800 }, {  119, 0x0060 },\n  /* 0x5000 */\n  {  121, 0x0000 }, {  121, 0x4000 }, {  122, 0x0004 }, {  123, 0x0010 },\n  {  124, 0x0000 }, {  124, 0x0000 }, {  124, 0x0000 }, {  124, 0x0004 },\n  {  125, 0x0000 }, {  125, 0x0006 }, {  127, 0x0010 }, {  128, 0x0000 },\n  {  128, 0x2080 }, {  130, 0x0000 }, {  130, 0x0000 }, {  130, 0x0001 },\n  /* 0x5100 */\n  {  131, 0x0000 }, {  131, 0x0000 }, {  131, 0x0000 }, {  131, 0x0000 },\n  {  131, 0x0000 }, {  131, 0x0000 }, {  131, 0x0000 }, {  131, 0x0000 },\n  {  131, 0x8080 }, {  133, 0x0000 }, {  133, 0x4100 }, {  135, 0x0000 },\n  {  135, 0x0008 }, {  136, 0x0000 }, {  136, 0x0000 }, {  136, 0x0000 },\n  /* 0x5200 */\n  {  136, 0x0000 }, {  136, 0x0000 }, {  136, 0x1000 }, {  137, 0x0004 },\n  {  138, 0x0020 }, {  139, 0x0000 }, {  139, 0x0000 }, {  139, 0x0000 },\n  {  139, 0x0000 }, {  139, 0x0100 }, {  140, 0x0000 }, {  140, 0x1a00 },\n  {  143, 0x2000 }, {  144, 0x0400 }, {  145, 0x0000 }, {  145, 0x0088 },\n  /* 0x5300 */\n  {  147, 0x0400 }, {  148, 0x1000 }, {  149, 0x0000 }, {  149, 0x0000 },\n  {  149, 0x0000 }, {  149, 0x0000 }, {  149, 0x0000 }, {  149, 0x0000 },\n  {  149, 0x0000 }, {  149, 0x0001 }, {  150, 0x0000 }, {  150, 0x4000 },\n  {  151, 0x00c0 }, {  153, 0x0000 }, {  153, 0x0000 }, {  153, 0x0000 },\n  /* 0x5400 */\n  {  153, 0x0000 }, {  153, 0x0000 }, {  153, 0x0000 }, {  153, 0x0000 },\n  {  153, 0x0000 }, {  153, 0x0000 }, {  153, 0x0000 }, {  153, 0x0000 },\n  {  153, 0x0000 }, {  153, 0x0000 }, {  153, 0x0020 }, {  154, 0x0000 },\n  {  154, 0x0000 }, {  154, 0x0000 }, {  154, 0x0000 }, {  154, 0x0000 },\n  /* 0x5500 */\n  {  154, 0x0000 }, {  154, 0x2000 }, {  155, 0x0000 }, {  155, 0x0040 },\n  {  156, 0x2000 }, {  157, 0x0080 }, {  158, 0x8000 }, {  159, 0x0011 },\n  {  161, 0x0040 }, {  162, 0x0000 }, {  162, 0x0010 }, {  163, 0x0000 },\n  {  163, 0x0000 }, {  163, 0x0000 }, {  163, 0x0000 }, {  163, 0x0000 },\n  /* 0x5600 */\n  {  163, 0x0000 }, {  163, 0x0000 }, {  163, 0x0000 }, {  163, 0x0000 },\n  {  163, 0x0001 }, {  164, 0x0000 }, {  164, 0x0000 }, {  164, 0x0000 },\n  {  164, 0x0010 }, {  165, 0x1400 }, {  167, 0x2000 }, {  168, 0x0000 },\n  {  168, 0x0000 }, {  168, 0x0000 }, {  168, 0x0000 }, {  168, 0x0080 },\n  /* 0x5700 */\n  {  169, 0x0000 }, {  169, 0x0201 }, {  171, 0x0000 }, {  171, 0x0000 },\n  {  171, 0x0000 }, {  171, 0x0000 }, {  171, 0x1000 }, {  172, 0x8001 },\n  {  174, 0x0080 }, {  175, 0xc420 }, {  179, 0x0000 }, {  179, 0x4002 },\n  {  181, 0x1000 }, {  182, 0x0000 }, {  182, 0x0800 }, {  183, 0x0020 },\n  /* 0x5800 */\n  {  184, 0x5208 }, {  188, 0x0000 }, {  188, 0x0000 }, {  188, 0x3000 },\n  {  190, 0x016c }, {  195, 0x2408 }, {  198, 0x0000 }, {  198, 0x0002 },\n  {  199, 0x0110 }, {  201, 0x0020 }, {  202, 0x0000 }, {  202, 0x0000 },\n  {  202, 0x0000 }, {  202, 0x0000 }, {  202, 0x0000 }, {  202, 0x0100 },\n  /* 0x5900 */\n  {  203, 0x0040 }, {  204, 0x0001 }, {  205, 0x1000 }, {  206, 0x0000 },\n  {  206, 0x0001 }, {  207, 0x0008 }, {  208, 0x2000 }, {  209, 0x0000 },\n  {  209, 0x0000 }, {  209, 0x0000 }, {  209, 0x0000 }, {  209, 0x0008 },\n  {  210, 0x0000 }, {  210, 0x4000 }, {  211, 0x4000 }, {  212, 0x2000 },\n  /* 0x5a00 */\n  {  213, 0x0000 }, {  213, 0x0004 }, {  214, 0x0000 }, {  214, 0x0000 },\n  {  214, 0x0000 }, {  214, 0x4000 }, {  215, 0x0020 }, {  216, 0x1008 },\n  {  218, 0x0010 }, {  219, 0x4040 }, {  221, 0x6000 }, {  223, 0x0000 },\n  {  223, 0x0010 }, {  224, 0x0400 }, {  225, 0x0400 }, {  226, 0x0000 },\n  /* 0x5b00 */\n  {  226, 0x0000 }, {  226, 0x0800 }, {  227, 0x0000 }, {  227, 0x0000 },\n  {  227, 0x0008 }, {  228, 0x0040 }, {  229, 0x0000 }, {  229, 0x0000 },\n  {  229, 0x0000 }, {  229, 0x0000 }, {  229, 0x1080 }, {  231, 0x0000 },\n  {  231, 0x0000 }, {  231, 0x0000 }, {  231, 0x0000 }, {  231, 0x0000 },\n  /* 0x5c00 */\n  {  231, 0x0020 }, {  232, 0x0000 }, {  232, 0x0400 }, {  233, 0x0001 },\n  {  234, 0x0000 }, {  234, 0x2000 }, {  235, 0x0000 }, {  235, 0x1014 },\n  {  238, 0x0000 }, {  238, 0x4000 }, {  239, 0x0100 }, {  240, 0x0000 },\n  {  240, 0x0088 }, {  242, 0x0008 }, {  243, 0x0088 }, {  245, 0x8002 },\n  /* 0x5d00 */\n  {  247, 0x1031 }, {  251, 0x8602 }, {  255, 0x0000 }, {  255, 0x0000 },\n  {  255, 0x4000 }, {  256, 0x0400 }, {  257, 0x0000 }, {  257, 0x0000 },\n  {  257, 0x0020 }, {  258, 0x000c }, {  260, 0x0000 }, {  260, 0x0000 },\n  {  260, 0x0204 }, {  262, 0x0040 }, {  263, 0x0000 }, {  263, 0x0000 },\n  /* 0x5e00 */\n  {  263, 0x0800 }, {  264, 0x0080 }, {  265, 0x0102 }, {  267, 0x0000 },\n  {  267, 0x0000 }, {  267, 0x0000 }, {  267, 0x0400 }, {  268, 0x0000 },\n  {  268, 0x0000 }, {  268, 0x0000 }, {  268, 0x0010 }, {  269, 0x1000 },\n  {  270, 0x0900 }, {  272, 0x0000 }, {  272, 0x0000 }, {  272, 0x0000 },\n  /* 0x5f00 */\n  {  272, 0x7080 }, {  276, 0x0000 }, {  276, 0x0004 }, {  277, 0x0000 },\n  {  277, 0x0000 }, {  277, 0x8000 }, {  278, 0x0180 }, {  280, 0x0000 },\n  {  280, 0x0000 }, {  280, 0x0000 }, {  280, 0x9000 }, {  282, 0x0000 },\n  {  282, 0x0000 }, {  282, 0x0000 }, {  282, 0x0000 }, {  282, 0x0000 },\n  /* 0x6000 */\n  {  282, 0x0000 }, {  282, 0x0080 }, {  283, 0x0000 }, {  283, 0x0000 },\n  {  283, 0x0000 }, {  283, 0x0000 }, {  283, 0x0000 }, {  283, 0x0000 },\n  {  283, 0x0000 }, {  283, 0x0000 }, {  283, 0x4000 }, {  284, 0x0001 },\n  {  285, 0x0080 }, {  286, 0x0208 }, {  288, 0x0000 }, {  288, 0x0000 },\n  /* 0x6100 */\n  {  288, 0x0000 }, {  288, 0x0010 }, {  289, 0x0000 }, {  289, 0x0000 },\n  {  289, 0x0000 }, {  289, 0x0008 }, {  290, 0x0020 }, {  291, 0x0000 },\n  {  291, 0x0000 }, {  291, 0x0000 }, {  291, 0x0000 }, {  291, 0x0000 },\n  {  291, 0x0000 }, {  291, 0x0000 }, {  291, 0x0000 }, {  291, 0x0000 },\n  /* 0x6200 */\n  {  291, 0x0000 }, {  291, 0x0000 }, {  291, 0x0000 }, {  291, 0x0000 },\n  {  291, 0x0460 }, {  294, 0x0000 }, {  294, 0x0003 }, {  296, 0x0000 },\n  {  296, 0x0008 }, {  297, 0x0010 }, {  298, 0x0000 }, {  298, 0x0000 },\n  {  298, 0x0008 }, {  299, 0x0000 }, {  299, 0x0010 }, {  300, 0x0000 },\n  /* 0x6300 */\n  {  300, 0x0000 }, {  300, 0x1000 }, {  301, 0x0040 }, {  302, 0x1000 },\n  {  303, 0x0000 }, {  303, 0x0000 }, {  303, 0x0000 }, {  303, 0x0000 },\n  {  303, 0x0000 }, {  303, 0x0000 }, {  303, 0x8000 }, {  304, 0x0002 },\n  {  305, 0x0000 }, {  305, 0x0000 }, {  305, 0x0000 }, {  305, 0x4000 },\n  /* 0x6400 */\n  {  306, 0x0000 }, {  306, 0x0004 }, {  307, 0x0084 }, {  309, 0x0000 },\n  {  309, 0x0000 }, {  309, 0x0000 }, {  309, 0x0000 }, {  309, 0x2080 },\n  {  311, 0x0000 }, {  311, 0x0000 }, {  311, 0x0000 }, {  311, 0x0000 },\n  {  311, 0x0000 }, {  311, 0x0000 }, {  311, 0x2000 }, {  312, 0x0000 },\n  /* 0x6500 */\n  {  312, 0x0000 }, {  312, 0x0000 }, {  312, 0x0000 }, {  312, 0x0000 },\n  {  312, 0x0000 }, {  312, 0x1000 }, {  313, 0x0200 }, {  314, 0x0000 },\n  {  314, 0x8000 }, {  315, 0x2000 }, {  316, 0x0104 }, {  318, 0x0000 },\n  {  318, 0x0004 }, {  319, 0x0000 }, {  319, 0x0000 }, {  319, 0x0900 },\n  /* 0x6600 */\n  {  321, 0x0280 }, {  323, 0x0000 }, {  323, 0x0000 }, {  323, 0x2000 },\n  {  324, 0x0000 }, {  324, 0x4000 }, {  325, 0x1084 }, {  328, 0x0008 },\n  {  329, 0x6800 }, {  332, 0x0000 }, {  332, 0x0000 }, {  332, 0x0000 },\n  {  332, 0x0000 }, {  332, 0x0000 }, {  332, 0x0000 }, {  332, 0x0000 },\n  /* 0x6700 */\n  {  332, 0x0000 }, {  332, 0x0108 }, {  334, 0x0000 }, {  334, 0x8000 },\n  {  335, 0x0020 }, {  336, 0x0000 }, {  336, 0x0080 }, {  337, 0x0800 },\n  {  338, 0x0000 }, {  338, 0x8200 }, {  340, 0x0000 }, {  340, 0x0000 },\n  {  340, 0x0100 }, {  341, 0x0000 }, {  341, 0x4000 }, {  342, 0x0000 },\n  /* 0x6800 */\n  {  342, 0x0000 }, {  342, 0x8004 }, {  344, 0x0000 }, {  344, 0x0000 },\n  {  344, 0x0800 }, {  345, 0x0000 }, {  345, 0x9400 }, {  348, 0x0000 },\n  {  348, 0x0000 }, {  348, 0x0000 }, {  348, 0x0001 }, {  349, 0x9002 },\n  {  352, 0x0002 }, {  353, 0x000b }, {  356, 0x1900 }, {  359, 0x0900 },\n  /* 0x6900 */\n  {  361, 0x0000 }, {  361, 0x200a }, {  364, 0x0800 }, {  365, 0x0020 },\n  {  366, 0x0001 }, {  367, 0x8200 }, {  369, 0x8204 }, {  372, 0x0000 },\n  {  372, 0x0008 }, {  373, 0x0040 }, {  374, 0x0000 }, {  374, 0x5000 },\n  {  376, 0x0020 }, {  377, 0x1400 }, {  379, 0x0020 }, {  380, 0x4000 },\n  /* 0x6a00 */\n  {  381, 0x0800 }, {  382, 0x0002 }, {  383, 0x0000 }, {  383, 0x0000 },\n  {  383, 0x0000 }, {  383, 0x0000 }, {  383, 0x0040 }, {  384, 0x0000 },\n  {  384, 0x0000 }, {  384, 0x0040 }, {  385, 0x0000 }, {  385, 0x0030 },\n  {  387, 0x0000 }, {  387, 0x0000 }, {  387, 0x0000 }, {  387, 0x0000 },\n  /* 0x6b00 */\n  {  387, 0x0000 }, {  387, 0x0000 }, {  387, 0x0000 }, {  387, 0x0100 },\n  {  388, 0x0000 }, {  388, 0x0010 }, {  389, 0x0000 }, {  389, 0x0000 },\n  {  389, 0x0000 }, {  389, 0x0020 }, {  390, 0x0008 }, {  391, 0x0000 },\n  {  391, 0x0000 }, {  391, 0x0400 }, {  392, 0x0000 }, {  392, 0x0000 },\n  /* 0x6c00 */\n  {  392, 0x0000 }, {  392, 0x2000 }, {  393, 0x0020 }, {  394, 0xc000 },\n  {  396, 0x0000 }, {  396, 0x0000 }, {  396, 0x2080 }, {  398, 0x0000 },\n  {  398, 0x0090 }, {  400, 0x0540 }, {  403, 0x0100 }, {  404, 0x0020 },\n  {  405, 0x0048 }, {  407, 0x1000 }, {  408, 0x0000 }, {  408, 0x0000 },\n  /* 0x6d00 */\n  {  408, 0x0000 }, {  408, 0x0002 }, {  409, 0x0300 }, {  411, 0x0510 },\n  {  414, 0x0210 }, {  416, 0x0821 }, {  419, 0x0032 }, {  422, 0x0000 },\n  {  422, 0x0000 }, {  422, 0x0000 }, {  422, 0x2004 }, {  424, 0x0010 },\n  {  425, 0x0000 }, {  425, 0x0000 }, {  425, 0x0000 }, {  425, 0x0000 },\n  /* 0x6e00 */\n  {  425, 0x0000 }, {  425, 0x0800 }, {  426, 0x0000 }, {  426, 0x0000 },\n  {  426, 0x0000 }, {  426, 0x3000 }, {  428, 0x0080 }, {  429, 0x0004 },\n  {  430, 0x4082 }, {  433, 0x0400 }, {  434, 0x0041 }, {  436, 0x0020 },\n  {  437, 0x0208 }, {  439, 0x0100 }, {  440, 0x0c80 }, {  443, 0x0000 },\n  /* 0x6f00 */\n  {  443, 0x0000 }, {  443, 0x0000 }, {  443, 0x0040 }, {  444, 0x0080 },\n  {  445, 0x0000 }, {  445, 0x8040 }, {  447, 0x0000 }, {  447, 0x0020 },\n  {  448, 0x0004 }, {  449, 0x0810 }, {  451, 0x0020 }, {  452, 0x1010 },\n  {  454, 0x0000 }, {  454, 0x0000 }, {  454, 0x1000 }, {  455, 0x0000 },\n  /* 0x7000 */\n  {  455, 0x3000 }, {  457, 0x0010 }, {  458, 0x0000 }, {  458, 0x1000 },\n  {  459, 0x0000 }, {  459, 0x0000 }, {  459, 0x0000 }, {  459, 0x0400 },\n  {  460, 0x0000 }, {  460, 0x4100 }, {  462, 0x0000 }, {  462, 0x0000 },\n  {  462, 0x0000 }, {  462, 0x3000 }, {  464, 0x0000 }, {  464, 0x0402 },\n  /* 0x7100 */\n  {  466, 0x1000 }, {  467, 0x1000 }, {  468, 0x4001 }, {  470, 0x0000 },\n  {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 },\n  {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 }, {  470, 0x0000 },\n  {  470, 0x8c00 }, {  473, 0x0000 }, {  473, 0x0000 }, {  473, 0x8000 },\n  /* 0x7200 */\n  {  474, 0x0000 }, {  474, 0x8000 }, {  475, 0x0000 }, {  475, 0x0000 },\n  {  475, 0x0006 }, {  477, 0x0400 }, {  478, 0x0008 }, {  479, 0x0080 },\n  {  480, 0x0080 }, {  481, 0x0000 }, {  481, 0x0100 }, {  482, 0x0000 },\n  {  482, 0x0200 }, {  483, 0x2000 }, {  484, 0x0004 }, {  485, 0x0000 },\n  /* 0x7300 */\n  {  485, 0x0040 }, {  486, 0x0010 }, {  487, 0x0000 }, {  487, 0x0400 },\n  {  488, 0x0000 }, {  488, 0x0000 }, {  488, 0x0000 }, {  488, 0x0000 },\n  {  488, 0x0000 }, {  488, 0x0630 }, {  492, 0x0061 }, {  495, 0x0002 },\n  {  496, 0x0000 }, {  496, 0x0040 }, {  497, 0x4408 }, {  500, 0x2441 },\n  /* 0x7400 */\n  {  504, 0x4080 }, {  506, 0x0020 }, {  507, 0x8810 }, {  510, 0x0084 },\n  {  512, 0x0014 }, {  514, 0x0010 }, {  515, 0x0004 }, {  516, 0x0102 },\n  {  518, 0x0140 }, {  520, 0x8100 }, {  522, 0x0401 }, {  524, 0x0004 },\n  {  525, 0x0000 }, {  525, 0x0100 }, {  526, 0x0000 }, {  526, 0x0800 },\n  /* 0x7500 */\n  {  527, 0x0008 }, {  528, 0x0000 }, {  528, 0x0442 }, {  531, 0x0000 },\n  {  531, 0x0000 }, {  531, 0x0002 }, {  532, 0x9010 }, {  535, 0x0000 },\n  {  535, 0x0000 }, {  535, 0x0000 }, {  535, 0x0004 }, {  536, 0x0000 },\n  {  536, 0x0000 }, {  536, 0x0000 }, {  536, 0x0001 }, {  537, 0x0008 },\n  /* 0x7600 */\n  {  538, 0x0110 }, {  540, 0x2000 }, {  541, 0x0000 }, {  541, 0x0000 },\n  {  541, 0x0000 }, {  541, 0x0004 }, {  542, 0x0000 }, {  542, 0x8040 },\n  {  544, 0x0000 }, {  544, 0x4000 }, {  545, 0x0000 }, {  545, 0x0000 },\n  {  545, 0x0000 }, {  545, 0x2000 }, {  546, 0x1440 }, {  549, 0x0800 },\n  /* 0x7700 */\n  {  550, 0x0400 }, {  551, 0x0800 }, {  552, 0x1000 }, {  553, 0x0000 },\n  {  553, 0x0000 }, {  553, 0x0000 }, {  553, 0x0000 }, {  553, 0x0000 },\n  {  553, 0x0840 }, {  555, 0x0000 }, {  555, 0x2800 }, {  557, 0x0000 },\n  {  557, 0x0000 }, {  557, 0x4000 }, {  558, 0x0000 }, {  558, 0x1800 },\n  /* 0x7800 */\n  {  560, 0x0040 }, {  561, 0x0000 }, {  561, 0x0005 }, {  563, 0x0000 },\n  {  563, 0x0002 }, {  564, 0x0600 }, {  566, 0x0000 }, {  566, 0x0020 },\n  {  567, 0x0000 }, {  567, 0x0010 }, {  568, 0x0000 }, {  568, 0x0040 },\n  {  569, 0x0000 }, {  569, 0x1000 }, {  570, 0x0002 }, {  571, 0x0000 },\n  /* 0x7900 */\n  {  571, 0x0008 }, {  572, 0x0000 }, {  572, 0x0000 }, {  572, 0x2008 },\n  {  574, 0x4488 }, {  578, 0x0001 }, {  579, 0x0000 }, {  579, 0x1004 },\n  {  581, 0x0000 }, {  581, 0x0100 }, {  582, 0x0011 }, {  584, 0x0100 },\n  {  585, 0x0000 }, {  585, 0x0000 }, {  585, 0x0000 }, {  585, 0x4000 },\n  /* 0x7a00 */\n  {  586, 0x0000 }, {  586, 0x0040 }, {  587, 0x0000 }, {  587, 0x0000 },\n  {  587, 0x0010 }, {  588, 0x4000 }, {  589, 0x0000 }, {  589, 0x0000 },\n  {  589, 0x4020 }, {  591, 0x0000 }, {  591, 0x0008 }, {  592, 0x4100 },\n  {  594, 0x0000 }, {  594, 0x1002 }, {  596, 0x0000 }, {  596, 0x0000 },\n  /* 0x7b00 */\n  {  596, 0x0000 }, {  596, 0x0000 }, {  596, 0x0000 }, {  596, 0x0000 },\n  {  596, 0x4400 }, {  598, 0x1000 }, {  599, 0x0000 }, {  599, 0x8000 },\n  {  600, 0x0080 }, {  601, 0x0008 }, {  602, 0x0000 }, {  602, 0x0000 },\n  {  602, 0x0000 }, {  602, 0x0000 }, {  602, 0x8000 }, {  603, 0x0005 },\n  /* 0x7c00 */\n  {  605, 0x0208 }, {  607, 0x0020 }, {  608, 0x0001 }, {  609, 0x0001 },\n  {  610, 0x0000 }, {  610, 0x2001 }, {  612, 0x0000 }, {  612, 0x0000 },\n  {  612, 0x0000 }, {  612, 0x0000 }, {  612, 0x1040 }, {  614, 0x0000 },\n  {  614, 0x0000 }, {  614, 0x0000 }, {  614, 0x0000 }, {  614, 0x0020 },\n};\nstatic const Summary16 isoir165ext_uni2indx_page7e[333] = {\n  /* 0x7e00 */\n  {  615, 0x0000 }, {  615, 0x0000 }, {  615, 0x0000 }, {  615, 0x0000 },\n  {  615, 0x0010 }, {  616, 0x0000 }, {  616, 0x0000 }, {  616, 0x0000 },\n  {  616, 0x0000 }, {  616, 0x0000 }, {  616, 0x4000 }, {  617, 0x1810 },\n  {  620, 0x0000 }, {  620, 0x0040 }, {  621, 0x1010 }, {  623, 0x0200 },\n  /* 0x7f00 */\n  {  624, 0x0400 }, {  625, 0x4001 }, {  627, 0x0000 }, {  627, 0x0000 },\n  {  627, 0x2000 }, {  628, 0x0000 }, {  628, 0x0000 }, {  628, 0x2000 },\n  {  629, 0x0000 }, {  629, 0x0002 }, {  630, 0x0000 }, {  630, 0x0000 },\n  {  630, 0x0001 }, {  631, 0x0600 }, {  633, 0x8000 }, {  634, 0x0000 },\n  /* 0x8000 */\n  {  634, 0x0000 }, {  634, 0x0000 }, {  634, 0x0000 }, {  634, 0x0001 },\n  {  635, 0x0000 }, {  635, 0x0000 }, {  635, 0x0000 }, {  635, 0x0000 },\n  {  635, 0x0000 }, {  635, 0x0000 }, {  635, 0x0000 }, {  635, 0x0000 },\n  {  635, 0x0000 }, {  635, 0x0010 }, {  636, 0x0000 }, {  636, 0x4000 },\n  /* 0x8100 */\n  {  637, 0x0000 }, {  637, 0x0000 }, {  637, 0x0200 }, {  638, 0x8000 },\n  {  639, 0x0000 }, {  639, 0x0104 }, {  641, 0x0000 }, {  641, 0x0000 },\n  {  641, 0x0000 }, {  641, 0x0000 }, {  641, 0x0000 }, {  641, 0x0000 },\n  {  641, 0x0000 }, {  641, 0x0002 }, {  642, 0x0000 }, {  642, 0x0000 },\n  /* 0x8200 */\n  {  642, 0x0000 }, {  642, 0x0140 }, {  644, 0x0000 }, {  644, 0x0400 },\n  {  645, 0x0000 }, {  645, 0x0000 }, {  645, 0x0000 }, {  645, 0x0100 },\n  {  646, 0x0008 }, {  647, 0x0000 }, {  647, 0x0080 }, {  648, 0x1000 },\n  {  649, 0x0000 }, {  649, 0x0000 }, {  649, 0x0000 }, {  649, 0x4000 },\n  /* 0x8300 */\n  {  650, 0x0001 }, {  651, 0x2008 }, {  653, 0x0000 }, {  653, 0x0000 },\n  {  653, 0x0030 }, {  655, 0x2000 }, {  656, 0x0000 }, {  656, 0x0000 },\n  {  656, 0x0000 }, {  656, 0x0200 }, {  657, 0x0040 }, {  658, 0x0000 },\n  {  658, 0x0000 }, {  658, 0x0002 }, {  659, 0x0000 }, {  659, 0x5000 },\n  /* 0x8400 */\n  {  661, 0x0000 }, {  661, 0x0400 }, {  662, 0x0200 }, {  663, 0x0200 },\n  {  664, 0x0000 }, {  664, 0x0008 }, {  665, 0x0001 }, {  666, 0x0000 },\n  {  666, 0x0000 }, {  666, 0xc000 }, {  668, 0x0100 }, {  669, 0x0000 },\n  {  669, 0x8044 }, {  672, 0x0000 }, {  672, 0x0400 }, {  673, 0x0080 },\n  /* 0x8500 */\n  {  674, 0x0000 }, {  674, 0x0000 }, {  674, 0x0000 }, {  674, 0x0010 },\n  {  675, 0x0000 }, {  675, 0x0000 }, {  675, 0x0000 }, {  675, 0x0001 },\n  {  676, 0x0000 }, {  676, 0x0000 }, {  676, 0x0004 }, {  677, 0x0108 },\n  {  679, 0x0000 }, {  679, 0x0000 }, {  679, 0x0001 }, {  680, 0x0000 },\n  /* 0x8600 */\n  {  680, 0x0000 }, {  680, 0x0000 }, {  680, 0x0000 }, {  680, 0x0000 },\n  {  680, 0x0000 }, {  680, 0x0004 }, {  681, 0x0000 }, {  681, 0x0000 },\n  {  681, 0x0008 }, {  682, 0x0000 }, {  682, 0x0000 }, {  682, 0x0000 },\n  {  682, 0x0000 }, {  682, 0x0000 }, {  682, 0x0000 }, {  682, 0x0000 },\n  /* 0x8700 */\n  {  682, 0x4020 }, {  684, 0x0000 }, {  684, 0x0000 }, {  684, 0x0000 },\n  {  684, 0x0000 }, {  684, 0x0100 }, {  685, 0x0000 }, {  685, 0x0000 },\n  {  685, 0x0001 }, {  686, 0x0000 }, {  686, 0x0008 }, {  687, 0x0000 },\n  {  687, 0x8000 }, {  688, 0x0000 }, {  688, 0x0004 }, {  689, 0x0000 },\n  /* 0x8800 */\n  {  689, 0x0800 }, {  690, 0x0000 }, {  690, 0x2000 }, {  691, 0x0000 },\n  {  691, 0x0000 }, {  691, 0x0004 }, {  692, 0x0000 }, {  692, 0x0000 },\n  {  692, 0x0040 }, {  693, 0x0080 }, {  694, 0x8400 }, {  696, 0x0000 },\n  {  696, 0x0101 }, {  698, 0x0000 }, {  698, 0x0000 }, {  698, 0x0000 },\n  /* 0x8900 */\n  {  698, 0x0000 }, {  698, 0x0000 }, {  698, 0x0040 }, {  699, 0x0000 },\n  {  699, 0x0000 }, {  699, 0x0020 }, {  700, 0x0000 }, {  700, 0x0040 },\n  {  701, 0x0001 }, {  702, 0x0000 }, {  702, 0x0000 }, {  702, 0x0000 },\n  {  702, 0x2008 }, {  704, 0x0010 }, {  705, 0x0000 }, {  705, 0x0002 },\n  /* 0x8a00 */\n  {  706, 0x0000 }, {  706, 0x0400 }, {  707, 0x0000 }, {  707, 0x0000 },\n  {  707, 0x0000 }, {  707, 0x8000 }, {  708, 0x0000 }, {  708, 0x0000 },\n  {  708, 0x0000 }, {  708, 0x0000 }, {  708, 0x0000 }, {  708, 0x0000 },\n  {  708, 0x0000 }, {  708, 0x0000 }, {  708, 0x0000 }, {  708, 0x0000 },\n  /* 0x8b00 */\n  {  708, 0x0000 }, {  708, 0x0000 }, {  708, 0x0000 }, {  708, 0x0000 },\n  {  708, 0x0000 }, {  708, 0x0000 }, {  708, 0x0000 }, {  708, 0x0000 },\n  {  708, 0x0000 }, {  708, 0x0000 }, {  708, 0x1000 }, {  709, 0x0802 },\n  {  711, 0x0080 }, {  712, 0x0000 }, {  712, 0x0400 }, {  713, 0x0000 },\n  /* 0x8c00 */\n  {  713, 0x0200 }, {  714, 0x4000 }, {  715, 0x0000 }, {  715, 0x0000 },\n  {  715, 0x0000 }, {  715, 0x0000 }, {  715, 0x6100 }, {  718, 0x0000 },\n  {  718, 0x0040 }, {  719, 0x0000 }, {  719, 0x0000 }, {  719, 0x0000 },\n  {  719, 0x0000 }, {  719, 0x0000 }, {  719, 0x0000 }, {  719, 0x0000 },\n  /* 0x8d00 */\n  {  719, 0x0000 }, {  719, 0x0000 }, {  719, 0x0001 }, {  720, 0x0000 },\n  {  720, 0x0000 }, {  720, 0x8086 }, {  724, 0x0400 }, {  725, 0x0000 },\n  {  725, 0x0000 }, {  725, 0x0000 }, {  725, 0x0000 }, {  725, 0x0000 },\n  {  725, 0x0000 }, {  725, 0x0000 }, {  725, 0x0000 }, {  725, 0x0000 },\n  /* 0x8e00 */\n  {  725, 0x0000 }, {  725, 0x0040 }, {  726, 0x00c2 }, {  729, 0x0040 },\n  {  730, 0x0020 }, {  731, 0x1009 }, {  734, 0x0004 }, {  735, 0x0000 },\n  {  735, 0x0000 }, {  735, 0x0000 }, {  735, 0x2000 }, {  736, 0x0000 },\n  {  736, 0x0000 }, {  736, 0x0000 }, {  736, 0x0000 }, {  736, 0x0000 },\n  /* 0x8f00 */\n  {  736, 0x0000 }, {  736, 0x0000 }, {  736, 0x0000 }, {  736, 0x0000 },\n  {  736, 0x0000 }, {  736, 0x0000 }, {  736, 0x0000 }, {  736, 0x0000 },\n  {  736, 0x0001 }, {  737, 0x0004 }, {  738, 0x0000 }, {  738, 0x0020 },\n  {  739, 0x0000 }, {  739, 0x0000 }, {  739, 0x0000 }, {  739, 0x0400 },\n  /* 0x9000 */\n  {  740, 0x0000 }, {  740, 0x0000 }, {  740, 0x0000 }, {  740, 0x0000 },\n  {  740, 0x0000 }, {  740, 0x0000 }, {  740, 0x0000 }, {  740, 0x0000 },\n  {  740, 0x0000 }, {  740, 0x0100 }, {  741, 0x0101 }, {  743, 0x2000 },\n  {  744, 0x0108 }, {  746, 0x0400 }, {  747, 0x0010 }, {  748, 0x8000 },\n  /* 0x9100 */\n  {  749, 0x1000 }, {  750, 0x1500 }, {  753, 0x0001 }, {  754, 0x0000 },\n  {  754, 0x0004 }, {  755, 0x0000 }, {  755, 0x0000 }, {  755, 0x0000 },\n  {  755, 0x0000 }, {  755, 0x0000 }, {  755, 0x0000 }, {  755, 0x0000 },\n  {  755, 0x0040 }, {  756, 0x0000 }, {  756, 0x0000 }, {  756, 0x0000 },\n  /* 0x9200 */\n  {  756, 0x0000 }, {  756, 0x0000 }, {  756, 0x0000 }, {  756, 0x0000 },\n  {  756, 0x0000 }, {  756, 0x0000 }, {  756, 0x0000 }, {  756, 0x0000 },\n  {  756, 0x0000 }, {  756, 0x0000 }, {  756, 0x0000 }, {  756, 0x0000 },\n  {  756, 0x0040 },\n};\nstatic const Summary16 isoir165ext_uni2indx_page94[143] = {\n  /* 0x9400 */\n  {  757, 0x0000 }, {  757, 0x0000 }, {  757, 0x0000 }, {  757, 0x0000 },\n  {  757, 0x0000 }, {  757, 0x0000 }, {  757, 0x0000 }, {  757, 0x0000 },\n  {  757, 0x0000 }, {  757, 0x0142 }, {  760, 0x0000 }, {  760, 0x0000 },\n  {  760, 0x8080 }, {  762, 0x0418 }, {  765, 0x0040 }, {  766, 0x0800 },\n  /* 0x9500 */\n  {  767, 0x0000 }, {  767, 0x1000 }, {  768, 0x0081 }, {  770, 0x2008 },\n  {  772, 0x0008 }, {  773, 0x0400 }, {  774, 0x4001 }, {  776, 0x0030 },\n  {  778, 0x0000 }, {  778, 0x0000 }, {  778, 0x0000 }, {  778, 0x0000 },\n  {  778, 0x0000 }, {  778, 0x0000 }, {  778, 0x1000 }, {  779, 0x8000 },\n  /* 0x9600 */\n  {  780, 0x0080 }, {  781, 0x0908 }, {  784, 0x0000 }, {  784, 0x0000 },\n  {  784, 0x0000 }, {  784, 0x4000 }, {  785, 0x0000 }, {  785, 0x0000 },\n  {  785, 0x0000 }, {  785, 0x0000 }, {  785, 0x0000 }, {  785, 0x0000 },\n  {  785, 0x0000 }, {  785, 0x0100 }, {  786, 0x0000 }, {  786, 0x0000 },\n  /* 0x9700 */\n  {  786, 0x0004 }, {  787, 0x0000 }, {  787, 0x0000 }, {  787, 0x0000 },\n  {  787, 0x0000 }, {  787, 0x0010 }, {  788, 0x0000 }, {  788, 0x0501 },\n  {  791, 0x0000 }, {  791, 0x0000 }, {  791, 0x4102 }, {  794, 0x0000 },\n  {  794, 0x0000 }, {  794, 0x0000 }, {  794, 0x0100 }, {  795, 0x0000 },\n  /* 0x9800 */\n  {  795, 0x0000 }, {  795, 0x0000 }, {  795, 0x0000 }, {  795, 0x0000 },\n  {  795, 0x0000 }, {  795, 0x0000 }, {  795, 0x0000 }, {  795, 0x0000 },\n  {  795, 0x4800 }, {  797, 0x0224 }, {  800, 0x0008 }, {  801, 0x0000 },\n  {  801, 0x8000 }, {  802, 0x00d1 }, {  806, 0x0000 }, {  806, 0x0000 },\n  /* 0x9900 */\n  {  806, 0x0000 }, {  806, 0x0000 }, {  806, 0x0000 }, {  806, 0x0000 },\n  {  806, 0x0000 }, {  806, 0x0000 }, {  806, 0x0050 }, {  808, 0x4b00 },\n  {  812, 0x500c }, {  816, 0x0000 }, {  816, 0x0000 }, {  816, 0x0000 },\n  {  816, 0x0000 }, {  816, 0x0000 }, {  816, 0x0000 }, {  816, 0x0000 },\n  /* 0x9a00 */\n  {  816, 0x0000 }, {  816, 0x0000 }, {  816, 0x0000 }, {  816, 0x0000 },\n  {  816, 0x0000 }, {  816, 0x0000 }, {  816, 0x0000 }, {  816, 0x0004 },\n  {  817, 0x6208 }, {  821, 0x0230 }, {  824, 0x0040 }, {  825, 0x0000 },\n  {  825, 0x0000 }, {  825, 0x0000 }, {  825, 0x0000 }, {  825, 0x0000 },\n  /* 0x9b00 */\n  {  825, 0x0000 }, {  825, 0x0101 }, {  827, 0x0020 }, {  828, 0x0040 },\n  {  829, 0x0040 }, {  830, 0x0000 }, {  830, 0x0000 }, {  830, 0x0000 },\n  {  830, 0x0000 }, {  830, 0x0000 }, {  830, 0x0000 }, {  830, 0x0000 },\n  {  830, 0x0000 }, {  830, 0x0000 }, {  830, 0x0000 }, {  830, 0x0000 },\n  /* 0x9c00 */\n  {  830, 0x0000 }, {  830, 0x0000 }, {  830, 0x0000 }, {  830, 0x0000 },\n  {  830, 0x0000 }, {  830, 0x0000 }, {  830, 0x0000 }, {  830, 0x0000 },\n  {  830, 0x0411 }, {  833, 0x23c8 }, {  839, 0x0000 }, {  839, 0x8000 },\n  {  840, 0x0003 }, {  842, 0x0804 }, {  844, 0x0009 },\n};\nstatic const Summary16 isoir165ext_uni2indx_page9e[25] = {\n  /* 0x9e00 */\n  {  846, 0x0000 }, {  846, 0x0000 }, {  846, 0x4090 }, {  849, 0x0011 },\n  {  851, 0x2001 }, {  853, 0x225d }, {  860, 0x8027 }, {  865, 0x0010 },\n  {  866, 0x0001 }, {  867, 0x0002 }, {  868, 0x0000 }, {  868, 0x0000 },\n  {  868, 0x0000 }, {  868, 0x0000 }, {  868, 0x0002 }, {  869, 0x0000 },\n  /* 0x9f00 */\n  {  869, 0x1000 }, {  870, 0x0004 }, {  871, 0x0800 }, {  872, 0x0000 },\n  {  872, 0x0002 }, {  873, 0x0000 }, {  873, 0x0000 }, {  873, 0x0000 },\n  {  873, 0x0006 },\n};\nstatic const Summary16 isoir165ext_uni2indx_pageff[5] = {\n  /* 0xff00 */\n  {  875, 0x0000 }, {  875, 0x0000 }, {  875, 0x0000 }, {  875, 0x0000 },\n  {  875, 0x0080 },\n};\n\nstatic int\nisoir165ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x0000 && wc < 0x0200)\n      summary = &isoir165ext_uni2indx_page00[(wc>>4)];\n    else if (wc >= 0x0300 && wc < 0x03c0)\n      summary = &isoir165ext_uni2indx_page03[(wc>>4)-0x030];\n    else if (wc >= 0x1e00 && wc < 0x1fc0)\n      summary = &isoir165ext_uni2indx_page1e[(wc>>4)-0x1e0];\n    else if (wc >= 0x3000 && wc < 0x3040)\n      summary = &isoir165ext_uni2indx_page30[(wc>>4)-0x300];\n    else if (wc >= 0x3200 && wc < 0x3400)\n      summary = &isoir165ext_uni2indx_page32[(wc>>4)-0x320];\n    else if (wc >= 0x4e00 && wc < 0x7d00)\n      summary = &isoir165ext_uni2indx_page4e[(wc>>4)-0x4e0];\n    else if (wc >= 0x7e00 && wc < 0x92d0)\n      summary = &isoir165ext_uni2indx_page7e[(wc>>4)-0x7e0];\n    else if (wc >= 0x9400 && wc < 0x9cf0)\n      summary = &isoir165ext_uni2indx_page94[(wc>>4)-0x940];\n    else if (wc >= 0x9e00 && wc < 0x9f90)\n      summary = &isoir165ext_uni2indx_page9e[(wc>>4)-0x9e0];\n    else if (wc >= 0xff00 && wc < 0xff50)\n      summary = &isoir165ext_uni2indx_pageff[(wc>>4)-0xff0];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = isoir165ext_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/java.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * JAVA\n * This is ISO 8859-1 with \\uXXXX escape sequences, denoting Unicode BMP\n * characters. Consecutive pairs of \\uXXXX escape sequences in the surrogate\n * range, as in UTF-16, denote Unicode characters outside the BMP.\n */\n\nstatic int\njava_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c;\n  ucs4_t wc, wc2;\n  int i;\n\n  c = s[0];\n  if (c != '\\\\') {\n    *pwc = c;\n    return 1;\n  }\n  if (n < 2)\n    return RET_TOOFEW(0);\n  if (s[1] != 'u')\n    goto simply_backslash;\n  wc = 0;\n  for (i = 2; i < 6; i++) {\n    if (n <= i)\n      return RET_TOOFEW(0);\n    c = s[i];\n    if (c >= '0' && c <= '9')\n      c -= '0';\n    else if (c >= 'A' && c <= 'Z')\n      c -= 'A'-10;\n    else if (c >= 'a' && c <= 'z')\n      c -= 'a'-10;\n    else\n      goto simply_backslash;\n    wc |= (ucs4_t) c << (4 * (5-i));\n  }\n  if (!(wc >= 0xd800 && wc < 0xe000)) {\n    *pwc = wc;\n    return 6;\n  }\n  if (wc >= 0xdc00)\n    goto simply_backslash;\n  if (n < 7)\n    return RET_TOOFEW(0);\n  if (s[6] != '\\\\')\n    goto simply_backslash;\n  if (n < 8)\n    return RET_TOOFEW(0);\n  if (s[7] != 'u')\n    goto simply_backslash;\n  wc2 = 0;\n  for (i = 8; i < 12; i++) {\n    if (n <= i)\n      return RET_TOOFEW(0);\n    c = s[i];\n    if (c >= '0' && c <= '9')\n      c -= '0';\n    else if (c >= 'A' && c <= 'Z')\n      c -= 'A'-10;\n    else if (c >= 'a' && c <= 'z')\n      c -= 'a'-10;\n    else\n      goto simply_backslash;\n    wc2 |= (ucs4_t) c << (4 * (11-i));\n  }\n  if (!(wc2 >= 0xdc00 && wc2 < 0xe000))\n    goto simply_backslash;\n  *pwc = 0x10000 + ((wc - 0xd800) << 10) + (wc2 - 0xdc00);\n  return 12;\nsimply_backslash:\n  *pwc = '\\\\';\n  return 1;\n}\n\nstatic int\njava_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x80) {\n    *r = wc;\n    return 1;\n  } else if (wc < 0x10000) {\n    if (n >= 6) {\n      unsigned int i;\n      r[0] = '\\\\';\n      r[1] = 'u';\n      i = (wc >> 12) & 0x0f; r[2] = (i < 10 ? '0'+i : 'a'-10+i);\n      i = (wc >> 8) & 0x0f;  r[3] = (i < 10 ? '0'+i : 'a'-10+i);\n      i = (wc >> 4) & 0x0f;  r[4] = (i < 10 ? '0'+i : 'a'-10+i);\n      i = wc & 0x0f;         r[5] = (i < 10 ? '0'+i : 'a'-10+i);\n      return 6;\n    } else\n      return RET_TOOSMALL;\n  } else if (wc < 0x110000) {\n    if (n >= 12) {\n      ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10);\n      ucs4_t wc2 = 0xdc00 + ((wc - 0x10000) & 0x3ff);\n      unsigned int i;\n      r[0] = '\\\\';\n      r[1] = 'u';\n      i = (wc1 >> 12) & 0x0f; r[2] = (i < 10 ? '0'+i : 'a'-10+i);\n      i = (wc1 >> 8) & 0x0f;  r[3] = (i < 10 ? '0'+i : 'a'-10+i);\n      i = (wc1 >> 4) & 0x0f;  r[4] = (i < 10 ? '0'+i : 'a'-10+i);\n      i = wc1 & 0x0f;         r[5] = (i < 10 ? '0'+i : 'a'-10+i);\n      r[6] = '\\\\';\n      r[7] = 'u';\n      i = (wc2 >> 12) & 0x0f; r[8] = (i < 10 ? '0'+i : 'a'-10+i);\n      i = (wc2 >> 8) & 0x0f;  r[9] = (i < 10 ? '0'+i : 'a'-10+i);\n      i = (wc2 >> 4) & 0x0f; r[10] = (i < 10 ? '0'+i : 'a'-10+i);\n      i = wc2 & 0x0f;        r[11] = (i < 10 ? '0'+i : 'a'-10+i);\n      return 12;\n    } else\n      return RET_TOOSMALL;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/jisx0201.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * JISX0201.1976-0\n */\n\nstatic int\njisx0201_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    if (c == 0x5c)\n      *pwc = (ucs4_t) 0x00a5;\n    else if (c == 0x7e)\n      *pwc = (ucs4_t) 0x203e;\n    else\n      *pwc = (ucs4_t) c;\n    return 1;\n  } else {\n    if (c >= 0xa1 && c < 0xe0) {\n      *pwc = (ucs4_t) c + 0xfec0;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\njisx0201_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x0080 && !(wc == 0x005c || wc == 0x007e)) {\n    *r = wc;\n    return 1;\n  }\n  if (wc == 0x00a5) {\n    *r = 0x5c;\n    return 1;\n  }\n  if (wc == 0x203e) {\n    *r = 0x7e;\n    return 1;\n  }\n  if (wc >= 0xff61 && wc < 0xffa0) {\n    *r = wc - 0xfec0;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/jisx0208.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * JISX0208.1990-0\n */\n\nstatic const unsigned short jisx0208_2uni_page21[690] = {\n  /* 0x21 */\n  0x3000, 0x3001, 0x3002, 0xff0c, 0xff0e, 0x30fb, 0xff1a, 0xff1b,\n  0xff1f, 0xff01, 0x309b, 0x309c, 0x00b4, 0xff40, 0x00a8, 0xff3e,\n  0xffe3, 0xff3f, 0x30fd, 0x30fe, 0x309d, 0x309e, 0x3003, 0x4edd,\n  0x3005, 0x3006, 0x3007, 0x30fc, 0x2015, 0x2010, 0xff0f, 0xff3c,\n  0x301c, 0x2016, 0xff5c, 0x2026, 0x2025, 0x2018, 0x2019, 0x201c,\n  0x201d, 0xff08, 0xff09, 0x3014, 0x3015, 0xff3b, 0xff3d, 0xff5b,\n  0xff5d, 0x3008, 0x3009, 0x300a, 0x300b, 0x300c, 0x300d, 0x300e,\n  0x300f, 0x3010, 0x3011, 0xff0b, 0x2212, 0x00b1, 0x00d7, 0x00f7,\n  0xff1d, 0x2260, 0xff1c, 0xff1e, 0x2266, 0x2267, 0x221e, 0x2234,\n  0x2642, 0x2640, 0x00b0, 0x2032, 0x2033, 0x2103, 0xffe5, 0xff04,\n  0x00a2, 0x00a3, 0xff05, 0xff03, 0xff06, 0xff0a, 0xff20, 0x00a7,\n  0x2606, 0x2605, 0x25cb, 0x25cf, 0x25ce, 0x25c7,\n  /* 0x22 */\n  0x25c6, 0x25a1, 0x25a0, 0x25b3, 0x25b2, 0x25bd, 0x25bc, 0x203b,\n  0x3012, 0x2192, 0x2190, 0x2191, 0x2193, 0x3013, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x2208, 0x220b, 0x2286, 0x2287, 0x2282, 0x2283, 0x222a,\n  0x2229, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x2227, 0x2228, 0x00ac, 0x21d2, 0x21d4, 0x2200, 0x2203,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0x2220, 0x22a5, 0x2312, 0x2202, 0x2207,\n  0x2261, 0x2252, 0x226a, 0x226b, 0x221a, 0x223d, 0x221d, 0x2235,\n  0x222b, 0x222c, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x212b, 0x2030, 0x266f, 0x266d, 0x266a, 0x2020, 0x2021,\n  0x00b6, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x25ef,\n  /* 0x23 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xff10,\n  0xff11, 0xff12, 0xff13, 0xff14, 0xff15, 0xff16, 0xff17, 0xff18,\n  0xff19, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xff21, 0xff22, 0xff23, 0xff24, 0xff25, 0xff26, 0xff27, 0xff28,\n  0xff29, 0xff2a, 0xff2b, 0xff2c, 0xff2d, 0xff2e, 0xff2f, 0xff30,\n  0xff31, 0xff32, 0xff33, 0xff34, 0xff35, 0xff36, 0xff37, 0xff38,\n  0xff39, 0xff3a, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xff41, 0xff42, 0xff43, 0xff44, 0xff45, 0xff46, 0xff47, 0xff48,\n  0xff49, 0xff4a, 0xff4b, 0xff4c, 0xff4d, 0xff4e, 0xff4f, 0xff50,\n  0xff51, 0xff52, 0xff53, 0xff54, 0xff55, 0xff56, 0xff57, 0xff58,\n  0xff59, 0xff5a, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x24 */\n  0x3041, 0x3042, 0x3043, 0x3044, 0x3045, 0x3046, 0x3047, 0x3048,\n  0x3049, 0x304a, 0x304b, 0x304c, 0x304d, 0x304e, 0x304f, 0x3050,\n  0x3051, 0x3052, 0x3053, 0x3054, 0x3055, 0x3056, 0x3057, 0x3058,\n  0x3059, 0x305a, 0x305b, 0x305c, 0x305d, 0x305e, 0x305f, 0x3060,\n  0x3061, 0x3062, 0x3063, 0x3064, 0x3065, 0x3066, 0x3067, 0x3068,\n  0x3069, 0x306a, 0x306b, 0x306c, 0x306d, 0x306e, 0x306f, 0x3070,\n  0x3071, 0x3072, 0x3073, 0x3074, 0x3075, 0x3076, 0x3077, 0x3078,\n  0x3079, 0x307a, 0x307b, 0x307c, 0x307d, 0x307e, 0x307f, 0x3080,\n  0x3081, 0x3082, 0x3083, 0x3084, 0x3085, 0x3086, 0x3087, 0x3088,\n  0x3089, 0x308a, 0x308b, 0x308c, 0x308d, 0x308e, 0x308f, 0x3090,\n  0x3091, 0x3092, 0x3093, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x25 */\n  0x30a1, 0x30a2, 0x30a3, 0x30a4, 0x30a5, 0x30a6, 0x30a7, 0x30a8,\n  0x30a9, 0x30aa, 0x30ab, 0x30ac, 0x30ad, 0x30ae, 0x30af, 0x30b0,\n  0x30b1, 0x30b2, 0x30b3, 0x30b4, 0x30b5, 0x30b6, 0x30b7, 0x30b8,\n  0x30b9, 0x30ba, 0x30bb, 0x30bc, 0x30bd, 0x30be, 0x30bf, 0x30c0,\n  0x30c1, 0x30c2, 0x30c3, 0x30c4, 0x30c5, 0x30c6, 0x30c7, 0x30c8,\n  0x30c9, 0x30ca, 0x30cb, 0x30cc, 0x30cd, 0x30ce, 0x30cf, 0x30d0,\n  0x30d1, 0x30d2, 0x30d3, 0x30d4, 0x30d5, 0x30d6, 0x30d7, 0x30d8,\n  0x30d9, 0x30da, 0x30db, 0x30dc, 0x30dd, 0x30de, 0x30df, 0x30e0,\n  0x30e1, 0x30e2, 0x30e3, 0x30e4, 0x30e5, 0x30e6, 0x30e7, 0x30e8,\n  0x30e9, 0x30ea, 0x30eb, 0x30ec, 0x30ed, 0x30ee, 0x30ef, 0x30f0,\n  0x30f1, 0x30f2, 0x30f3, 0x30f4, 0x30f5, 0x30f6, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x26 */\n  0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396, 0x0397, 0x0398,\n  0x0399, 0x039a, 0x039b, 0x039c, 0x039d, 0x039e, 0x039f, 0x03a0,\n  0x03a1, 0x03a3, 0x03a4, 0x03a5, 0x03a6, 0x03a7, 0x03a8, 0x03a9,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7, 0x03b8,\n  0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf, 0x03c0,\n  0x03c1, 0x03c3, 0x03c4, 0x03c5, 0x03c6, 0x03c7, 0x03c8, 0x03c9,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x27 */\n  0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0401, 0x0416,\n  0x0417, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e,\n  0x041f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426,\n  0x0427, 0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e,\n  0x042f, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0451, 0x0436,\n  0x0437, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e,\n  0x043f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446,\n  0x0447, 0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e,\n  0x044f, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x28 */\n  0x2500, 0x2502, 0x250c, 0x2510, 0x2518, 0x2514, 0x251c, 0x252c,\n  0x2524, 0x2534, 0x253c, 0x2501, 0x2503, 0x250f, 0x2513, 0x251b,\n  0x2517, 0x2523, 0x2533, 0x252b, 0x253b, 0x254b, 0x2520, 0x252f,\n  0x2528, 0x2537, 0x253f, 0x251d, 0x2530, 0x2525, 0x2538, 0x2542,\n};\nstatic const unsigned short jisx0208_2uni_page30[6398] = {\n  /* 0x30 */\n  0x4e9c, 0x5516, 0x5a03, 0x963f, 0x54c0, 0x611b, 0x6328, 0x59f6,\n  0x9022, 0x8475, 0x831c, 0x7a50, 0x60aa, 0x63e1, 0x6e25, 0x65ed,\n  0x8466, 0x82a6, 0x9bf5, 0x6893, 0x5727, 0x65a1, 0x6271, 0x5b9b,\n  0x59d0, 0x867b, 0x98f4, 0x7d62, 0x7dbe, 0x9b8e, 0x6216, 0x7c9f,\n  0x88b7, 0x5b89, 0x5eb5, 0x6309, 0x6697, 0x6848, 0x95c7, 0x978d,\n  0x674f, 0x4ee5, 0x4f0a, 0x4f4d, 0x4f9d, 0x5049, 0x56f2, 0x5937,\n  0x59d4, 0x5a01, 0x5c09, 0x60df, 0x610f, 0x6170, 0x6613, 0x6905,\n  0x70ba, 0x754f, 0x7570, 0x79fb, 0x7dad, 0x7def, 0x80c3, 0x840e,\n  0x8863, 0x8b02, 0x9055, 0x907a, 0x533b, 0x4e95, 0x4ea5, 0x57df,\n  0x80b2, 0x90c1, 0x78ef, 0x4e00, 0x58f1, 0x6ea2, 0x9038, 0x7a32,\n  0x8328, 0x828b, 0x9c2f, 0x5141, 0x5370, 0x54bd, 0x54e1, 0x56e0,\n  0x59fb, 0x5f15, 0x98f2, 0x6deb, 0x80e4, 0x852d,\n  /* 0x31 */\n  0x9662, 0x9670, 0x96a0, 0x97fb, 0x540b, 0x53f3, 0x5b87, 0x70cf,\n  0x7fbd, 0x8fc2, 0x96e8, 0x536f, 0x9d5c, 0x7aba, 0x4e11, 0x7893,\n  0x81fc, 0x6e26, 0x5618, 0x5504, 0x6b1d, 0x851a, 0x9c3b, 0x59e5,\n  0x53a9, 0x6d66, 0x74dc, 0x958f, 0x5642, 0x4e91, 0x904b, 0x96f2,\n  0x834f, 0x990c, 0x53e1, 0x55b6, 0x5b30, 0x5f71, 0x6620, 0x66f3,\n  0x6804, 0x6c38, 0x6cf3, 0x6d29, 0x745b, 0x76c8, 0x7a4e, 0x9834,\n  0x82f1, 0x885b, 0x8a60, 0x92ed, 0x6db2, 0x75ab, 0x76ca, 0x99c5,\n  0x60a6, 0x8b01, 0x8d8a, 0x95b2, 0x698e, 0x53ad, 0x5186, 0x5712,\n  0x5830, 0x5944, 0x5bb4, 0x5ef6, 0x6028, 0x63a9, 0x63f4, 0x6cbf,\n  0x6f14, 0x708e, 0x7114, 0x7159, 0x71d5, 0x733f, 0x7e01, 0x8276,\n  0x82d1, 0x8597, 0x9060, 0x925b, 0x9d1b, 0x5869, 0x65bc, 0x6c5a,\n  0x7525, 0x51f9, 0x592e, 0x5965, 0x5f80, 0x5fdc,\n  /* 0x32 */\n  0x62bc, 0x65fa, 0x6a2a, 0x6b27, 0x6bb4, 0x738b, 0x7fc1, 0x8956,\n  0x9d2c, 0x9d0e, 0x9ec4, 0x5ca1, 0x6c96, 0x837b, 0x5104, 0x5c4b,\n  0x61b6, 0x81c6, 0x6876, 0x7261, 0x4e59, 0x4ffa, 0x5378, 0x6069,\n  0x6e29, 0x7a4f, 0x97f3, 0x4e0b, 0x5316, 0x4eee, 0x4f55, 0x4f3d,\n  0x4fa1, 0x4f73, 0x52a0, 0x53ef, 0x5609, 0x590f, 0x5ac1, 0x5bb6,\n  0x5be1, 0x79d1, 0x6687, 0x679c, 0x67b6, 0x6b4c, 0x6cb3, 0x706b,\n  0x73c2, 0x798d, 0x79be, 0x7a3c, 0x7b87, 0x82b1, 0x82db, 0x8304,\n  0x8377, 0x83ef, 0x83d3, 0x8766, 0x8ab2, 0x5629, 0x8ca8, 0x8fe6,\n  0x904e, 0x971e, 0x868a, 0x4fc4, 0x5ce8, 0x6211, 0x7259, 0x753b,\n  0x81e5, 0x82bd, 0x86fe, 0x8cc0, 0x96c5, 0x9913, 0x99d5, 0x4ecb,\n  0x4f1a, 0x89e3, 0x56de, 0x584a, 0x58ca, 0x5efb, 0x5feb, 0x602a,\n  0x6094, 0x6062, 0x61d0, 0x6212, 0x62d0, 0x6539,\n  /* 0x33 */\n  0x9b41, 0x6666, 0x68b0, 0x6d77, 0x7070, 0x754c, 0x7686, 0x7d75,\n  0x82a5, 0x87f9, 0x958b, 0x968e, 0x8c9d, 0x51f1, 0x52be, 0x5916,\n  0x54b3, 0x5bb3, 0x5d16, 0x6168, 0x6982, 0x6daf, 0x788d, 0x84cb,\n  0x8857, 0x8a72, 0x93a7, 0x9ab8, 0x6d6c, 0x99a8, 0x86d9, 0x57a3,\n  0x67ff, 0x86ce, 0x920e, 0x5283, 0x5687, 0x5404, 0x5ed3, 0x62e1,\n  0x64b9, 0x683c, 0x6838, 0x6bbb, 0x7372, 0x78ba, 0x7a6b, 0x899a,\n  0x89d2, 0x8d6b, 0x8f03, 0x90ed, 0x95a3, 0x9694, 0x9769, 0x5b66,\n  0x5cb3, 0x697d, 0x984d, 0x984e, 0x639b, 0x7b20, 0x6a2b, 0x6a7f,\n  0x68b6, 0x9c0d, 0x6f5f, 0x5272, 0x559d, 0x6070, 0x62ec, 0x6d3b,\n  0x6e07, 0x6ed1, 0x845b, 0x8910, 0x8f44, 0x4e14, 0x9c39, 0x53f6,\n  0x691b, 0x6a3a, 0x9784, 0x682a, 0x515c, 0x7ac3, 0x84b2, 0x91dc,\n  0x938c, 0x565b, 0x9d28, 0x6822, 0x8305, 0x8431,\n  /* 0x34 */\n  0x7ca5, 0x5208, 0x82c5, 0x74e6, 0x4e7e, 0x4f83, 0x51a0, 0x5bd2,\n  0x520a, 0x52d8, 0x52e7, 0x5dfb, 0x559a, 0x582a, 0x59e6, 0x5b8c,\n  0x5b98, 0x5bdb, 0x5e72, 0x5e79, 0x60a3, 0x611f, 0x6163, 0x61be,\n  0x63db, 0x6562, 0x67d1, 0x6853, 0x68fa, 0x6b3e, 0x6b53, 0x6c57,\n  0x6f22, 0x6f97, 0x6f45, 0x74b0, 0x7518, 0x76e3, 0x770b, 0x7aff,\n  0x7ba1, 0x7c21, 0x7de9, 0x7f36, 0x7ff0, 0x809d, 0x8266, 0x839e,\n  0x89b3, 0x8acc, 0x8cab, 0x9084, 0x9451, 0x9593, 0x9591, 0x95a2,\n  0x9665, 0x97d3, 0x9928, 0x8218, 0x4e38, 0x542b, 0x5cb8, 0x5dcc,\n  0x73a9, 0x764c, 0x773c, 0x5ca9, 0x7feb, 0x8d0b, 0x96c1, 0x9811,\n  0x9854, 0x9858, 0x4f01, 0x4f0e, 0x5371, 0x559c, 0x5668, 0x57fa,\n  0x5947, 0x5b09, 0x5bc4, 0x5c90, 0x5e0c, 0x5e7e, 0x5fcc, 0x63ee,\n  0x673a, 0x65d7, 0x65e2, 0x671f, 0x68cb, 0x68c4,\n  /* 0x35 */\n  0x6a5f, 0x5e30, 0x6bc5, 0x6c17, 0x6c7d, 0x757f, 0x7948, 0x5b63,\n  0x7a00, 0x7d00, 0x5fbd, 0x898f, 0x8a18, 0x8cb4, 0x8d77, 0x8ecc,\n  0x8f1d, 0x98e2, 0x9a0e, 0x9b3c, 0x4e80, 0x507d, 0x5100, 0x5993,\n  0x5b9c, 0x622f, 0x6280, 0x64ec, 0x6b3a, 0x72a0, 0x7591, 0x7947,\n  0x7fa9, 0x87fb, 0x8abc, 0x8b70, 0x63ac, 0x83ca, 0x97a0, 0x5409,\n  0x5403, 0x55ab, 0x6854, 0x6a58, 0x8a70, 0x7827, 0x6775, 0x9ecd,\n  0x5374, 0x5ba2, 0x811a, 0x8650, 0x9006, 0x4e18, 0x4e45, 0x4ec7,\n  0x4f11, 0x53ca, 0x5438, 0x5bae, 0x5f13, 0x6025, 0x6551, 0x673d,\n  0x6c42, 0x6c72, 0x6ce3, 0x7078, 0x7403, 0x7a76, 0x7aae, 0x7b08,\n  0x7d1a, 0x7cfe, 0x7d66, 0x65e7, 0x725b, 0x53bb, 0x5c45, 0x5de8,\n  0x62d2, 0x62e0, 0x6319, 0x6e20, 0x865a, 0x8a31, 0x8ddd, 0x92f8,\n  0x6f01, 0x79a6, 0x9b5a, 0x4ea8, 0x4eab, 0x4eac,\n  /* 0x36 */\n  0x4f9b, 0x4fa0, 0x50d1, 0x5147, 0x7af6, 0x5171, 0x51f6, 0x5354,\n  0x5321, 0x537f, 0x53eb, 0x55ac, 0x5883, 0x5ce1, 0x5f37, 0x5f4a,\n  0x602f, 0x6050, 0x606d, 0x631f, 0x6559, 0x6a4b, 0x6cc1, 0x72c2,\n  0x72ed, 0x77ef, 0x80f8, 0x8105, 0x8208, 0x854e, 0x90f7, 0x93e1,\n  0x97ff, 0x9957, 0x9a5a, 0x4ef0, 0x51dd, 0x5c2d, 0x6681, 0x696d,\n  0x5c40, 0x66f2, 0x6975, 0x7389, 0x6850, 0x7c81, 0x50c5, 0x52e4,\n  0x5747, 0x5dfe, 0x9326, 0x65a4, 0x6b23, 0x6b3d, 0x7434, 0x7981,\n  0x79bd, 0x7b4b, 0x7dca, 0x82b9, 0x83cc, 0x887f, 0x895f, 0x8b39,\n  0x8fd1, 0x91d1, 0x541f, 0x9280, 0x4e5d, 0x5036, 0x53e5, 0x533a,\n  0x72d7, 0x7396, 0x77e9, 0x82e6, 0x8eaf, 0x99c6, 0x99c8, 0x99d2,\n  0x5177, 0x611a, 0x865e, 0x55b0, 0x7a7a, 0x5076, 0x5bd3, 0x9047,\n  0x9685, 0x4e32, 0x6adb, 0x91e7, 0x5c51, 0x5c48,\n  /* 0x37 */\n  0x6398, 0x7a9f, 0x6c93, 0x9774, 0x8f61, 0x7aaa, 0x718a, 0x9688,\n  0x7c82, 0x6817, 0x7e70, 0x6851, 0x936c, 0x52f2, 0x541b, 0x85ab,\n  0x8a13, 0x7fa4, 0x8ecd, 0x90e1, 0x5366, 0x8888, 0x7941, 0x4fc2,\n  0x50be, 0x5211, 0x5144, 0x5553, 0x572d, 0x73ea, 0x578b, 0x5951,\n  0x5f62, 0x5f84, 0x6075, 0x6176, 0x6167, 0x61a9, 0x63b2, 0x643a,\n  0x656c, 0x666f, 0x6842, 0x6e13, 0x7566, 0x7a3d, 0x7cfb, 0x7d4c,\n  0x7d99, 0x7e4b, 0x7f6b, 0x830e, 0x834a, 0x86cd, 0x8a08, 0x8a63,\n  0x8b66, 0x8efd, 0x981a, 0x9d8f, 0x82b8, 0x8fce, 0x9be8, 0x5287,\n  0x621f, 0x6483, 0x6fc0, 0x9699, 0x6841, 0x5091, 0x6b20, 0x6c7a,\n  0x6f54, 0x7a74, 0x7d50, 0x8840, 0x8a23, 0x6708, 0x4ef6, 0x5039,\n  0x5026, 0x5065, 0x517c, 0x5238, 0x5263, 0x55a7, 0x570f, 0x5805,\n  0x5acc, 0x5efa, 0x61b2, 0x61f8, 0x62f3, 0x6372,\n  /* 0x38 */\n  0x691c, 0x6a29, 0x727d, 0x72ac, 0x732e, 0x7814, 0x786f, 0x7d79,\n  0x770c, 0x80a9, 0x898b, 0x8b19, 0x8ce2, 0x8ed2, 0x9063, 0x9375,\n  0x967a, 0x9855, 0x9a13, 0x9e78, 0x5143, 0x539f, 0x53b3, 0x5e7b,\n  0x5f26, 0x6e1b, 0x6e90, 0x7384, 0x73fe, 0x7d43, 0x8237, 0x8a00,\n  0x8afa, 0x9650, 0x4e4e, 0x500b, 0x53e4, 0x547c, 0x56fa, 0x59d1,\n  0x5b64, 0x5df1, 0x5eab, 0x5f27, 0x6238, 0x6545, 0x67af, 0x6e56,\n  0x72d0, 0x7cca, 0x88b4, 0x80a1, 0x80e1, 0x83f0, 0x864e, 0x8a87,\n  0x8de8, 0x9237, 0x96c7, 0x9867, 0x9f13, 0x4e94, 0x4e92, 0x4f0d,\n  0x5348, 0x5449, 0x543e, 0x5a2f, 0x5f8c, 0x5fa1, 0x609f, 0x68a7,\n  0x6a8e, 0x745a, 0x7881, 0x8a9e, 0x8aa4, 0x8b77, 0x9190, 0x4e5e,\n  0x9bc9, 0x4ea4, 0x4f7c, 0x4faf, 0x5019, 0x5016, 0x5149, 0x516c,\n  0x529f, 0x52b9, 0x52fe, 0x539a, 0x53e3, 0x5411,\n  /* 0x39 */\n  0x540e, 0x5589, 0x5751, 0x57a2, 0x597d, 0x5b54, 0x5b5d, 0x5b8f,\n  0x5de5, 0x5de7, 0x5df7, 0x5e78, 0x5e83, 0x5e9a, 0x5eb7, 0x5f18,\n  0x6052, 0x614c, 0x6297, 0x62d8, 0x63a7, 0x653b, 0x6602, 0x6643,\n  0x66f4, 0x676d, 0x6821, 0x6897, 0x69cb, 0x6c5f, 0x6d2a, 0x6d69,\n  0x6e2f, 0x6e9d, 0x7532, 0x7687, 0x786c, 0x7a3f, 0x7ce0, 0x7d05,\n  0x7d18, 0x7d5e, 0x7db1, 0x8015, 0x8003, 0x80af, 0x80b1, 0x8154,\n  0x818f, 0x822a, 0x8352, 0x884c, 0x8861, 0x8b1b, 0x8ca2, 0x8cfc,\n  0x90ca, 0x9175, 0x9271, 0x783f, 0x92fc, 0x95a4, 0x964d, 0x9805,\n  0x9999, 0x9ad8, 0x9d3b, 0x525b, 0x52ab, 0x53f7, 0x5408, 0x58d5,\n  0x62f7, 0x6fe0, 0x8c6a, 0x8f5f, 0x9eb9, 0x514b, 0x523b, 0x544a,\n  0x56fd, 0x7a40, 0x9177, 0x9d60, 0x9ed2, 0x7344, 0x6f09, 0x8170,\n  0x7511, 0x5ffd, 0x60da, 0x9aa8, 0x72db, 0x8fbc,\n  /* 0x3a */\n  0x6b64, 0x9803, 0x4eca, 0x56f0, 0x5764, 0x58be, 0x5a5a, 0x6068,\n  0x61c7, 0x660f, 0x6606, 0x6839, 0x68b1, 0x6df7, 0x75d5, 0x7d3a,\n  0x826e, 0x9b42, 0x4e9b, 0x4f50, 0x53c9, 0x5506, 0x5d6f, 0x5de6,\n  0x5dee, 0x67fb, 0x6c99, 0x7473, 0x7802, 0x8a50, 0x9396, 0x88df,\n  0x5750, 0x5ea7, 0x632b, 0x50b5, 0x50ac, 0x518d, 0x6700, 0x54c9,\n  0x585e, 0x59bb, 0x5bb0, 0x5f69, 0x624d, 0x63a1, 0x683d, 0x6b73,\n  0x6e08, 0x707d, 0x91c7, 0x7280, 0x7815, 0x7826, 0x796d, 0x658e,\n  0x7d30, 0x83dc, 0x88c1, 0x8f09, 0x969b, 0x5264, 0x5728, 0x6750,\n  0x7f6a, 0x8ca1, 0x51b4, 0x5742, 0x962a, 0x583a, 0x698a, 0x80b4,\n  0x54b2, 0x5d0e, 0x57fc, 0x7895, 0x9dfa, 0x4f5c, 0x524a, 0x548b,\n  0x643e, 0x6628, 0x6714, 0x67f5, 0x7a84, 0x7b56, 0x7d22, 0x932f,\n  0x685c, 0x9bad, 0x7b39, 0x5319, 0x518a, 0x5237,\n  /* 0x3b */\n  0x5bdf, 0x62f6, 0x64ae, 0x64e6, 0x672d, 0x6bba, 0x85a9, 0x96d1,\n  0x7690, 0x9bd6, 0x634c, 0x9306, 0x9bab, 0x76bf, 0x6652, 0x4e09,\n  0x5098, 0x53c2, 0x5c71, 0x60e8, 0x6492, 0x6563, 0x685f, 0x71e6,\n  0x73ca, 0x7523, 0x7b97, 0x7e82, 0x8695, 0x8b83, 0x8cdb, 0x9178,\n  0x9910, 0x65ac, 0x66ab, 0x6b8b, 0x4ed5, 0x4ed4, 0x4f3a, 0x4f7f,\n  0x523a, 0x53f8, 0x53f2, 0x55e3, 0x56db, 0x58eb, 0x59cb, 0x59c9,\n  0x59ff, 0x5b50, 0x5c4d, 0x5e02, 0x5e2b, 0x5fd7, 0x601d, 0x6307,\n  0x652f, 0x5b5c, 0x65af, 0x65bd, 0x65e8, 0x679d, 0x6b62, 0x6b7b,\n  0x6c0f, 0x7345, 0x7949, 0x79c1, 0x7cf8, 0x7d19, 0x7d2b, 0x80a2,\n  0x8102, 0x81f3, 0x8996, 0x8a5e, 0x8a69, 0x8a66, 0x8a8c, 0x8aee,\n  0x8cc7, 0x8cdc, 0x96cc, 0x98fc, 0x6b6f, 0x4e8b, 0x4f3c, 0x4f8d,\n  0x5150, 0x5b57, 0x5bfa, 0x6148, 0x6301, 0x6642,\n  /* 0x3c */\n  0x6b21, 0x6ecb, 0x6cbb, 0x723e, 0x74bd, 0x75d4, 0x78c1, 0x793a,\n  0x800c, 0x8033, 0x81ea, 0x8494, 0x8f9e, 0x6c50, 0x9e7f, 0x5f0f,\n  0x8b58, 0x9d2b, 0x7afa, 0x8ef8, 0x5b8d, 0x96eb, 0x4e03, 0x53f1,\n  0x57f7, 0x5931, 0x5ac9, 0x5ba4, 0x6089, 0x6e7f, 0x6f06, 0x75be,\n  0x8cea, 0x5b9f, 0x8500, 0x7be0, 0x5072, 0x67f4, 0x829d, 0x5c61,\n  0x854a, 0x7e1e, 0x820e, 0x5199, 0x5c04, 0x6368, 0x8d66, 0x659c,\n  0x716e, 0x793e, 0x7d17, 0x8005, 0x8b1d, 0x8eca, 0x906e, 0x86c7,\n  0x90aa, 0x501f, 0x52fa, 0x5c3a, 0x6753, 0x707c, 0x7235, 0x914c,\n  0x91c8, 0x932b, 0x82e5, 0x5bc2, 0x5f31, 0x60f9, 0x4e3b, 0x53d6,\n  0x5b88, 0x624b, 0x6731, 0x6b8a, 0x72e9, 0x73e0, 0x7a2e, 0x816b,\n  0x8da3, 0x9152, 0x9996, 0x5112, 0x53d7, 0x546a, 0x5bff, 0x6388,\n  0x6a39, 0x7dac, 0x9700, 0x56da, 0x53ce, 0x5468,\n  /* 0x3d */\n  0x5b97, 0x5c31, 0x5dde, 0x4fee, 0x6101, 0x62fe, 0x6d32, 0x79c0,\n  0x79cb, 0x7d42, 0x7e4d, 0x7fd2, 0x81ed, 0x821f, 0x8490, 0x8846,\n  0x8972, 0x8b90, 0x8e74, 0x8f2f, 0x9031, 0x914b, 0x916c, 0x96c6,\n  0x919c, 0x4ec0, 0x4f4f, 0x5145, 0x5341, 0x5f93, 0x620e, 0x67d4,\n  0x6c41, 0x6e0b, 0x7363, 0x7e26, 0x91cd, 0x9283, 0x53d4, 0x5919,\n  0x5bbf, 0x6dd1, 0x795d, 0x7e2e, 0x7c9b, 0x587e, 0x719f, 0x51fa,\n  0x8853, 0x8ff0, 0x4fca, 0x5cfb, 0x6625, 0x77ac, 0x7ae3, 0x821c,\n  0x99ff, 0x51c6, 0x5faa, 0x65ec, 0x696f, 0x6b89, 0x6df3, 0x6e96,\n  0x6f64, 0x76fe, 0x7d14, 0x5de1, 0x9075, 0x9187, 0x9806, 0x51e6,\n  0x521d, 0x6240, 0x6691, 0x66d9, 0x6e1a, 0x5eb6, 0x7dd2, 0x7f72,\n  0x66f8, 0x85af, 0x85f7, 0x8af8, 0x52a9, 0x53d9, 0x5973, 0x5e8f,\n  0x5f90, 0x6055, 0x92e4, 0x9664, 0x50b7, 0x511f,\n  /* 0x3e */\n  0x52dd, 0x5320, 0x5347, 0x53ec, 0x54e8, 0x5546, 0x5531, 0x5617,\n  0x5968, 0x59be, 0x5a3c, 0x5bb5, 0x5c06, 0x5c0f, 0x5c11, 0x5c1a,\n  0x5e84, 0x5e8a, 0x5ee0, 0x5f70, 0x627f, 0x6284, 0x62db, 0x638c,\n  0x6377, 0x6607, 0x660c, 0x662d, 0x6676, 0x677e, 0x68a2, 0x6a1f,\n  0x6a35, 0x6cbc, 0x6d88, 0x6e09, 0x6e58, 0x713c, 0x7126, 0x7167,\n  0x75c7, 0x7701, 0x785d, 0x7901, 0x7965, 0x79f0, 0x7ae0, 0x7b11,\n  0x7ca7, 0x7d39, 0x8096, 0x83d6, 0x848b, 0x8549, 0x885d, 0x88f3,\n  0x8a1f, 0x8a3c, 0x8a54, 0x8a73, 0x8c61, 0x8cde, 0x91a4, 0x9266,\n  0x937e, 0x9418, 0x969c, 0x9798, 0x4e0a, 0x4e08, 0x4e1e, 0x4e57,\n  0x5197, 0x5270, 0x57ce, 0x5834, 0x58cc, 0x5b22, 0x5e38, 0x60c5,\n  0x64fe, 0x6761, 0x6756, 0x6d44, 0x72b6, 0x7573, 0x7a63, 0x84b8,\n  0x8b72, 0x91b8, 0x9320, 0x5631, 0x57f4, 0x98fe,\n  /* 0x3f */\n  0x62ed, 0x690d, 0x6b96, 0x71ed, 0x7e54, 0x8077, 0x8272, 0x89e6,\n  0x98df, 0x8755, 0x8fb1, 0x5c3b, 0x4f38, 0x4fe1, 0x4fb5, 0x5507,\n  0x5a20, 0x5bdd, 0x5be9, 0x5fc3, 0x614e, 0x632f, 0x65b0, 0x664b,\n  0x68ee, 0x699b, 0x6d78, 0x6df1, 0x7533, 0x75b9, 0x771f, 0x795e,\n  0x79e6, 0x7d33, 0x81e3, 0x82af, 0x85aa, 0x89aa, 0x8a3a, 0x8eab,\n  0x8f9b, 0x9032, 0x91dd, 0x9707, 0x4eba, 0x4ec1, 0x5203, 0x5875,\n  0x58ec, 0x5c0b, 0x751a, 0x5c3d, 0x814e, 0x8a0a, 0x8fc5, 0x9663,\n  0x976d, 0x7b25, 0x8acf, 0x9808, 0x9162, 0x56f3, 0x53a8, 0x9017,\n  0x5439, 0x5782, 0x5e25, 0x63a8, 0x6c34, 0x708a, 0x7761, 0x7c8b,\n  0x7fe0, 0x8870, 0x9042, 0x9154, 0x9310, 0x9318, 0x968f, 0x745e,\n  0x9ac4, 0x5d07, 0x5d69, 0x6570, 0x67a2, 0x8da8, 0x96db, 0x636e,\n  0x6749, 0x6919, 0x83c5, 0x9817, 0x96c0, 0x88fe,\n  /* 0x40 */\n  0x6f84, 0x647a, 0x5bf8, 0x4e16, 0x702c, 0x755d, 0x662f, 0x51c4,\n  0x5236, 0x52e2, 0x59d3, 0x5f81, 0x6027, 0x6210, 0x653f, 0x6574,\n  0x661f, 0x6674, 0x68f2, 0x6816, 0x6b63, 0x6e05, 0x7272, 0x751f,\n  0x76db, 0x7cbe, 0x8056, 0x58f0, 0x88fd, 0x897f, 0x8aa0, 0x8a93,\n  0x8acb, 0x901d, 0x9192, 0x9752, 0x9759, 0x6589, 0x7a0e, 0x8106,\n  0x96bb, 0x5e2d, 0x60dc, 0x621a, 0x65a5, 0x6614, 0x6790, 0x77f3,\n  0x7a4d, 0x7c4d, 0x7e3e, 0x810a, 0x8cac, 0x8d64, 0x8de1, 0x8e5f,\n  0x78a9, 0x5207, 0x62d9, 0x63a5, 0x6442, 0x6298, 0x8a2d, 0x7a83,\n  0x7bc0, 0x8aac, 0x96ea, 0x7d76, 0x820c, 0x8749, 0x4ed9, 0x5148,\n  0x5343, 0x5360, 0x5ba3, 0x5c02, 0x5c16, 0x5ddd, 0x6226, 0x6247,\n  0x64b0, 0x6813, 0x6834, 0x6cc9, 0x6d45, 0x6d17, 0x67d3, 0x6f5c,\n  0x714e, 0x717d, 0x65cb, 0x7a7f, 0x7bad, 0x7dda,\n  /* 0x41 */\n  0x7e4a, 0x7fa8, 0x817a, 0x821b, 0x8239, 0x85a6, 0x8a6e, 0x8cce,\n  0x8df5, 0x9078, 0x9077, 0x92ad, 0x9291, 0x9583, 0x9bae, 0x524d,\n  0x5584, 0x6f38, 0x7136, 0x5168, 0x7985, 0x7e55, 0x81b3, 0x7cce,\n  0x564c, 0x5851, 0x5ca8, 0x63aa, 0x66fe, 0x66fd, 0x695a, 0x72d9,\n  0x758f, 0x758e, 0x790e, 0x7956, 0x79df, 0x7c97, 0x7d20, 0x7d44,\n  0x8607, 0x8a34, 0x963b, 0x9061, 0x9f20, 0x50e7, 0x5275, 0x53cc,\n  0x53e2, 0x5009, 0x55aa, 0x58ee, 0x594f, 0x723d, 0x5b8b, 0x5c64,\n  0x531d, 0x60e3, 0x60f3, 0x635c, 0x6383, 0x633f, 0x63bb, 0x64cd,\n  0x65e9, 0x66f9, 0x5de3, 0x69cd, 0x69fd, 0x6f15, 0x71e5, 0x4e89,\n  0x75e9, 0x76f8, 0x7a93, 0x7cdf, 0x7dcf, 0x7d9c, 0x8061, 0x8349,\n  0x8358, 0x846c, 0x84bc, 0x85fb, 0x88c5, 0x8d70, 0x9001, 0x906d,\n  0x9397, 0x971c, 0x9a12, 0x50cf, 0x5897, 0x618e,\n  /* 0x42 */\n  0x81d3, 0x8535, 0x8d08, 0x9020, 0x4fc3, 0x5074, 0x5247, 0x5373,\n  0x606f, 0x6349, 0x675f, 0x6e2c, 0x8db3, 0x901f, 0x4fd7, 0x5c5e,\n  0x8cca, 0x65cf, 0x7d9a, 0x5352, 0x8896, 0x5176, 0x63c3, 0x5b58,\n  0x5b6b, 0x5c0a, 0x640d, 0x6751, 0x905c, 0x4ed6, 0x591a, 0x592a,\n  0x6c70, 0x8a51, 0x553e, 0x5815, 0x59a5, 0x60f0, 0x6253, 0x67c1,\n  0x8235, 0x6955, 0x9640, 0x99c4, 0x9a28, 0x4f53, 0x5806, 0x5bfe,\n  0x8010, 0x5cb1, 0x5e2f, 0x5f85, 0x6020, 0x614b, 0x6234, 0x66ff,\n  0x6cf0, 0x6ede, 0x80ce, 0x817f, 0x82d4, 0x888b, 0x8cb8, 0x9000,\n  0x902e, 0x968a, 0x9edb, 0x9bdb, 0x4ee3, 0x53f0, 0x5927, 0x7b2c,\n  0x918d, 0x984c, 0x9df9, 0x6edd, 0x7027, 0x5353, 0x5544, 0x5b85,\n  0x6258, 0x629e, 0x62d3, 0x6ca2, 0x6fef, 0x7422, 0x8a17, 0x9438,\n  0x6fc1, 0x8afe, 0x8338, 0x51e7, 0x86f8, 0x53ea,\n  /* 0x43 */\n  0x53e9, 0x4f46, 0x9054, 0x8fb0, 0x596a, 0x8131, 0x5dfd, 0x7aea,\n  0x8fbf, 0x68da, 0x8c37, 0x72f8, 0x9c48, 0x6a3d, 0x8ab0, 0x4e39,\n  0x5358, 0x5606, 0x5766, 0x62c5, 0x63a2, 0x65e6, 0x6b4e, 0x6de1,\n  0x6e5b, 0x70ad, 0x77ed, 0x7aef, 0x7baa, 0x7dbb, 0x803d, 0x80c6,\n  0x86cb, 0x8a95, 0x935b, 0x56e3, 0x58c7, 0x5f3e, 0x65ad, 0x6696,\n  0x6a80, 0x6bb5, 0x7537, 0x8ac7, 0x5024, 0x77e5, 0x5730, 0x5f1b,\n  0x6065, 0x667a, 0x6c60, 0x75f4, 0x7a1a, 0x7f6e, 0x81f4, 0x8718,\n  0x9045, 0x99b3, 0x7bc9, 0x755c, 0x7af9, 0x7b51, 0x84c4, 0x9010,\n  0x79e9, 0x7a92, 0x8336, 0x5ae1, 0x7740, 0x4e2d, 0x4ef2, 0x5b99,\n  0x5fe0, 0x62bd, 0x663c, 0x67f1, 0x6ce8, 0x866b, 0x8877, 0x8a3b,\n  0x914e, 0x92f3, 0x99d0, 0x6a17, 0x7026, 0x732a, 0x82e7, 0x8457,\n  0x8caf, 0x4e01, 0x5146, 0x51cb, 0x558b, 0x5bf5,\n  /* 0x44 */\n  0x5e16, 0x5e33, 0x5e81, 0x5f14, 0x5f35, 0x5f6b, 0x5fb4, 0x61f2,\n  0x6311, 0x66a2, 0x671d, 0x6f6e, 0x7252, 0x753a, 0x773a, 0x8074,\n  0x8139, 0x8178, 0x8776, 0x8abf, 0x8adc, 0x8d85, 0x8df3, 0x929a,\n  0x9577, 0x9802, 0x9ce5, 0x52c5, 0x6357, 0x76f4, 0x6715, 0x6c88,\n  0x73cd, 0x8cc3, 0x93ae, 0x9673, 0x6d25, 0x589c, 0x690e, 0x69cc,\n  0x8ffd, 0x939a, 0x75db, 0x901a, 0x585a, 0x6802, 0x63b4, 0x69fb,\n  0x4f43, 0x6f2c, 0x67d8, 0x8fbb, 0x8526, 0x7db4, 0x9354, 0x693f,\n  0x6f70, 0x576a, 0x58f7, 0x5b2c, 0x7d2c, 0x722a, 0x540a, 0x91e3,\n  0x9db4, 0x4ead, 0x4f4e, 0x505c, 0x5075, 0x5243, 0x8c9e, 0x5448,\n  0x5824, 0x5b9a, 0x5e1d, 0x5e95, 0x5ead, 0x5ef7, 0x5f1f, 0x608c,\n  0x62b5, 0x633a, 0x63d0, 0x68af, 0x6c40, 0x7887, 0x798e, 0x7a0b,\n  0x7de0, 0x8247, 0x8a02, 0x8ae6, 0x8e44, 0x9013,\n  /* 0x45 */\n  0x90b8, 0x912d, 0x91d8, 0x9f0e, 0x6ce5, 0x6458, 0x64e2, 0x6575,\n  0x6ef4, 0x7684, 0x7b1b, 0x9069, 0x93d1, 0x6eba, 0x54f2, 0x5fb9,\n  0x64a4, 0x8f4d, 0x8fed, 0x9244, 0x5178, 0x586b, 0x5929, 0x5c55,\n  0x5e97, 0x6dfb, 0x7e8f, 0x751c, 0x8cbc, 0x8ee2, 0x985b, 0x70b9,\n  0x4f1d, 0x6bbf, 0x6fb1, 0x7530, 0x96fb, 0x514e, 0x5410, 0x5835,\n  0x5857, 0x59ac, 0x5c60, 0x5f92, 0x6597, 0x675c, 0x6e21, 0x767b,\n  0x83df, 0x8ced, 0x9014, 0x90fd, 0x934d, 0x7825, 0x783a, 0x52aa,\n  0x5ea6, 0x571f, 0x5974, 0x6012, 0x5012, 0x515a, 0x51ac, 0x51cd,\n  0x5200, 0x5510, 0x5854, 0x5858, 0x5957, 0x5b95, 0x5cf6, 0x5d8b,\n  0x60bc, 0x6295, 0x642d, 0x6771, 0x6843, 0x68bc, 0x68df, 0x76d7,\n  0x6dd8, 0x6e6f, 0x6d9b, 0x706f, 0x71c8, 0x5f53, 0x75d8, 0x7977,\n  0x7b49, 0x7b54, 0x7b52, 0x7cd6, 0x7d71, 0x5230,\n  /* 0x46 */\n  0x8463, 0x8569, 0x85e4, 0x8a0e, 0x8b04, 0x8c46, 0x8e0f, 0x9003,\n  0x900f, 0x9419, 0x9676, 0x982d, 0x9a30, 0x95d8, 0x50cd, 0x52d5,\n  0x540c, 0x5802, 0x5c0e, 0x61a7, 0x649e, 0x6d1e, 0x77b3, 0x7ae5,\n  0x80f4, 0x8404, 0x9053, 0x9285, 0x5ce0, 0x9d07, 0x533f, 0x5f97,\n  0x5fb3, 0x6d9c, 0x7279, 0x7763, 0x79bf, 0x7be4, 0x6bd2, 0x72ec,\n  0x8aad, 0x6803, 0x6a61, 0x51f8, 0x7a81, 0x6934, 0x5c4a, 0x9cf6,\n  0x82eb, 0x5bc5, 0x9149, 0x701e, 0x5678, 0x5c6f, 0x60c7, 0x6566,\n  0x6c8c, 0x8c5a, 0x9041, 0x9813, 0x5451, 0x66c7, 0x920d, 0x5948,\n  0x90a3, 0x5185, 0x4e4d, 0x51ea, 0x8599, 0x8b0e, 0x7058, 0x637a,\n  0x934b, 0x6962, 0x99b4, 0x7e04, 0x7577, 0x5357, 0x6960, 0x8edf,\n  0x96e3, 0x6c5d, 0x4e8c, 0x5c3c, 0x5f10, 0x8fe9, 0x5302, 0x8cd1,\n  0x8089, 0x8679, 0x5eff, 0x65e5, 0x4e73, 0x5165,\n  /* 0x47 */\n  0x5982, 0x5c3f, 0x97ee, 0x4efb, 0x598a, 0x5fcd, 0x8a8d, 0x6fe1,\n  0x79b0, 0x7962, 0x5be7, 0x8471, 0x732b, 0x71b1, 0x5e74, 0x5ff5,\n  0x637b, 0x649a, 0x71c3, 0x7c98, 0x4e43, 0x5efc, 0x4e4b, 0x57dc,\n  0x56a2, 0x60a9, 0x6fc3, 0x7d0d, 0x80fd, 0x8133, 0x81bf, 0x8fb2,\n  0x8997, 0x86a4, 0x5df4, 0x628a, 0x64ad, 0x8987, 0x6777, 0x6ce2,\n  0x6d3e, 0x7436, 0x7834, 0x5a46, 0x7f75, 0x82ad, 0x99ac, 0x4ff3,\n  0x5ec3, 0x62dd, 0x6392, 0x6557, 0x676f, 0x76c3, 0x724c, 0x80cc,\n  0x80ba, 0x8f29, 0x914d, 0x500d, 0x57f9, 0x5a92, 0x6885, 0x6973,\n  0x7164, 0x72fd, 0x8cb7, 0x58f2, 0x8ce0, 0x966a, 0x9019, 0x877f,\n  0x79e4, 0x77e7, 0x8429, 0x4f2f, 0x5265, 0x535a, 0x62cd, 0x67cf,\n  0x6cca, 0x767d, 0x7b94, 0x7c95, 0x8236, 0x8584, 0x8feb, 0x66dd,\n  0x6f20, 0x7206, 0x7e1b, 0x83ab, 0x99c1, 0x9ea6,\n  /* 0x48 */\n  0x51fd, 0x7bb1, 0x7872, 0x7bb8, 0x8087, 0x7b48, 0x6ae8, 0x5e61,\n  0x808c, 0x7551, 0x7560, 0x516b, 0x9262, 0x6e8c, 0x767a, 0x9197,\n  0x9aea, 0x4f10, 0x7f70, 0x629c, 0x7b4f, 0x95a5, 0x9ce9, 0x567a,\n  0x5859, 0x86e4, 0x96bc, 0x4f34, 0x5224, 0x534a, 0x53cd, 0x53db,\n  0x5e06, 0x642c, 0x6591, 0x677f, 0x6c3e, 0x6c4e, 0x7248, 0x72af,\n  0x73ed, 0x7554, 0x7e41, 0x822c, 0x85e9, 0x8ca9, 0x7bc4, 0x91c6,\n  0x7169, 0x9812, 0x98ef, 0x633d, 0x6669, 0x756a, 0x76e4, 0x78d0,\n  0x8543, 0x86ee, 0x532a, 0x5351, 0x5426, 0x5983, 0x5e87, 0x5f7c,\n  0x60b2, 0x6249, 0x6279, 0x62ab, 0x6590, 0x6bd4, 0x6ccc, 0x75b2,\n  0x76ae, 0x7891, 0x79d8, 0x7dcb, 0x7f77, 0x80a5, 0x88ab, 0x8ab9,\n  0x8cbb, 0x907f, 0x975e, 0x98db, 0x6a0b, 0x7c38, 0x5099, 0x5c3e,\n  0x5fae, 0x6787, 0x6bd8, 0x7435, 0x7709, 0x7f8e,\n  /* 0x49 */\n  0x9f3b, 0x67ca, 0x7a17, 0x5339, 0x758b, 0x9aed, 0x5f66, 0x819d,\n  0x83f1, 0x8098, 0x5f3c, 0x5fc5, 0x7562, 0x7b46, 0x903c, 0x6867,\n  0x59eb, 0x5a9b, 0x7d10, 0x767e, 0x8b2c, 0x4ff5, 0x5f6a, 0x6a19,\n  0x6c37, 0x6f02, 0x74e2, 0x7968, 0x8868, 0x8a55, 0x8c79, 0x5edf,\n  0x63cf, 0x75c5, 0x79d2, 0x82d7, 0x9328, 0x92f2, 0x849c, 0x86ed,\n  0x9c2d, 0x54c1, 0x5f6c, 0x658c, 0x6d5c, 0x7015, 0x8ca7, 0x8cd3,\n  0x983b, 0x654f, 0x74f6, 0x4e0d, 0x4ed8, 0x57e0, 0x592b, 0x5a66,\n  0x5bcc, 0x51a8, 0x5e03, 0x5e9c, 0x6016, 0x6276, 0x6577, 0x65a7,\n  0x666e, 0x6d6e, 0x7236, 0x7b26, 0x8150, 0x819a, 0x8299, 0x8b5c,\n  0x8ca0, 0x8ce6, 0x8d74, 0x961c, 0x9644, 0x4fae, 0x64ab, 0x6b66,\n  0x821e, 0x8461, 0x856a, 0x90e8, 0x5c01, 0x6953, 0x98a8, 0x847a,\n  0x8557, 0x4f0f, 0x526f, 0x5fa9, 0x5e45, 0x670d,\n  /* 0x4a */\n  0x798f, 0x8179, 0x8907, 0x8986, 0x6df5, 0x5f17, 0x6255, 0x6cb8,\n  0x4ecf, 0x7269, 0x9b92, 0x5206, 0x543b, 0x5674, 0x58b3, 0x61a4,\n  0x626e, 0x711a, 0x596e, 0x7c89, 0x7cde, 0x7d1b, 0x96f0, 0x6587,\n  0x805e, 0x4e19, 0x4f75, 0x5175, 0x5840, 0x5e63, 0x5e73, 0x5f0a,\n  0x67c4, 0x4e26, 0x853d, 0x9589, 0x965b, 0x7c73, 0x9801, 0x50fb,\n  0x58c1, 0x7656, 0x78a7, 0x5225, 0x77a5, 0x8511, 0x7b86, 0x504f,\n  0x5909, 0x7247, 0x7bc7, 0x7de8, 0x8fba, 0x8fd4, 0x904d, 0x4fbf,\n  0x52c9, 0x5a29, 0x5f01, 0x97ad, 0x4fdd, 0x8217, 0x92ea, 0x5703,\n  0x6355, 0x6b69, 0x752b, 0x88dc, 0x8f14, 0x7a42, 0x52df, 0x5893,\n  0x6155, 0x620a, 0x66ae, 0x6bcd, 0x7c3f, 0x83e9, 0x5023, 0x4ff8,\n  0x5305, 0x5446, 0x5831, 0x5949, 0x5b9d, 0x5cf0, 0x5cef, 0x5d29,\n  0x5e96, 0x62b1, 0x6367, 0x653e, 0x65b9, 0x670b,\n  /* 0x4b */\n  0x6cd5, 0x6ce1, 0x70f9, 0x7832, 0x7e2b, 0x80de, 0x82b3, 0x840c,\n  0x84ec, 0x8702, 0x8912, 0x8a2a, 0x8c4a, 0x90a6, 0x92d2, 0x98fd,\n  0x9cf3, 0x9d6c, 0x4e4f, 0x4ea1, 0x508d, 0x5256, 0x574a, 0x59a8,\n  0x5e3d, 0x5fd8, 0x5fd9, 0x623f, 0x66b4, 0x671b, 0x67d0, 0x68d2,\n  0x5192, 0x7d21, 0x80aa, 0x81a8, 0x8b00, 0x8c8c, 0x8cbf, 0x927e,\n  0x9632, 0x5420, 0x982c, 0x5317, 0x50d5, 0x535c, 0x58a8, 0x64b2,\n  0x6734, 0x7267, 0x7766, 0x7a46, 0x91e6, 0x52c3, 0x6ca1, 0x6b86,\n  0x5800, 0x5e4c, 0x5954, 0x672c, 0x7ffb, 0x51e1, 0x76c6, 0x6469,\n  0x78e8, 0x9b54, 0x9ebb, 0x57cb, 0x59b9, 0x6627, 0x679a, 0x6bce,\n  0x54e9, 0x69d9, 0x5e55, 0x819c, 0x6795, 0x9baa, 0x67fe, 0x9c52,\n  0x685d, 0x4ea6, 0x4fe3, 0x53c8, 0x62b9, 0x672b, 0x6cab, 0x8fc4,\n  0x4fad, 0x7e6d, 0x9ebf, 0x4e07, 0x6162, 0x6e80,\n  /* 0x4c */\n  0x6f2b, 0x8513, 0x5473, 0x672a, 0x9b45, 0x5df3, 0x7b95, 0x5cac,\n  0x5bc6, 0x871c, 0x6e4a, 0x84d1, 0x7a14, 0x8108, 0x5999, 0x7c8d,\n  0x6c11, 0x7720, 0x52d9, 0x5922, 0x7121, 0x725f, 0x77db, 0x9727,\n  0x9d61, 0x690b, 0x5a7f, 0x5a18, 0x51a5, 0x540d, 0x547d, 0x660e,\n  0x76df, 0x8ff7, 0x9298, 0x9cf4, 0x59ea, 0x725d, 0x6ec5, 0x514d,\n  0x68c9, 0x7dbf, 0x7dec, 0x9762, 0x9eba, 0x6478, 0x6a21, 0x8302,\n  0x5984, 0x5b5f, 0x6bdb, 0x731b, 0x76f2, 0x7db2, 0x8017, 0x8499,\n  0x5132, 0x6728, 0x9ed9, 0x76ee, 0x6762, 0x52ff, 0x9905, 0x5c24,\n  0x623b, 0x7c7e, 0x8cb0, 0x554f, 0x60b6, 0x7d0b, 0x9580, 0x5301,\n  0x4e5f, 0x51b6, 0x591c, 0x723a, 0x8036, 0x91ce, 0x5f25, 0x77e2,\n  0x5384, 0x5f79, 0x7d04, 0x85ac, 0x8a33, 0x8e8d, 0x9756, 0x67f3,\n  0x85ae, 0x9453, 0x6109, 0x6108, 0x6cb9, 0x7652,\n  /* 0x4d */\n  0x8aed, 0x8f38, 0x552f, 0x4f51, 0x512a, 0x52c7, 0x53cb, 0x5ba5,\n  0x5e7d, 0x60a0, 0x6182, 0x63d6, 0x6709, 0x67da, 0x6e67, 0x6d8c,\n  0x7336, 0x7337, 0x7531, 0x7950, 0x88d5, 0x8a98, 0x904a, 0x9091,\n  0x90f5, 0x96c4, 0x878d, 0x5915, 0x4e88, 0x4f59, 0x4e0e, 0x8a89,\n  0x8f3f, 0x9810, 0x50ad, 0x5e7c, 0x5996, 0x5bb9, 0x5eb8, 0x63da,\n  0x63fa, 0x64c1, 0x66dc, 0x694a, 0x69d8, 0x6d0b, 0x6eb6, 0x7194,\n  0x7528, 0x7aaf, 0x7f8a, 0x8000, 0x8449, 0x84c9, 0x8981, 0x8b21,\n  0x8e0a, 0x9065, 0x967d, 0x990a, 0x617e, 0x6291, 0x6b32, 0x6c83,\n  0x6d74, 0x7fcc, 0x7ffc, 0x6dc0, 0x7f85, 0x87ba, 0x88f8, 0x6765,\n  0x83b1, 0x983c, 0x96f7, 0x6d1b, 0x7d61, 0x843d, 0x916a, 0x4e71,\n  0x5375, 0x5d50, 0x6b04, 0x6feb, 0x85cd, 0x862d, 0x89a7, 0x5229,\n  0x540f, 0x5c65, 0x674e, 0x68a8, 0x7406, 0x7483,\n  /* 0x4e */\n  0x75e2, 0x88cf, 0x88e1, 0x91cc, 0x96e2, 0x9678, 0x5f8b, 0x7387,\n  0x7acb, 0x844e, 0x63a0, 0x7565, 0x5289, 0x6d41, 0x6e9c, 0x7409,\n  0x7559, 0x786b, 0x7c92, 0x9686, 0x7adc, 0x9f8d, 0x4fb6, 0x616e,\n  0x65c5, 0x865c, 0x4e86, 0x4eae, 0x50da, 0x4e21, 0x51cc, 0x5bee,\n  0x6599, 0x6881, 0x6dbc, 0x731f, 0x7642, 0x77ad, 0x7a1c, 0x7ce7,\n  0x826f, 0x8ad2, 0x907c, 0x91cf, 0x9675, 0x9818, 0x529b, 0x7dd1,\n  0x502b, 0x5398, 0x6797, 0x6dcb, 0x71d0, 0x7433, 0x81e8, 0x8f2a,\n  0x96a3, 0x9c57, 0x9e9f, 0x7460, 0x5841, 0x6d99, 0x7d2f, 0x985e,\n  0x4ee4, 0x4f36, 0x4f8b, 0x51b7, 0x52b1, 0x5dba, 0x601c, 0x73b2,\n  0x793c, 0x82d3, 0x9234, 0x96b7, 0x96f6, 0x970a, 0x9e97, 0x9f62,\n  0x66a6, 0x6b74, 0x5217, 0x52a3, 0x70c8, 0x88c2, 0x5ec9, 0x604b,\n  0x6190, 0x6f23, 0x7149, 0x7c3e, 0x7df4, 0x806f,\n  /* 0x4f */\n  0x84ee, 0x9023, 0x932c, 0x5442, 0x9b6f, 0x6ad3, 0x7089, 0x8cc2,\n  0x8def, 0x9732, 0x52b4, 0x5a41, 0x5eca, 0x5f04, 0x6717, 0x697c,\n  0x6994, 0x6d6a, 0x6f0f, 0x7262, 0x72fc, 0x7bed, 0x8001, 0x807e,\n  0x874b, 0x90ce, 0x516d, 0x9e93, 0x7984, 0x808b, 0x9332, 0x8ad6,\n  0x502d, 0x548c, 0x8a71, 0x6b6a, 0x8cc4, 0x8107, 0x60d1, 0x67a0,\n  0x9df2, 0x4e99, 0x4e98, 0x9c10, 0x8a6b, 0x85c1, 0x8568, 0x6900,\n  0x6e7e, 0x7897, 0x8155, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x50 */\n  0x5f0c, 0x4e10, 0x4e15, 0x4e2a, 0x4e31, 0x4e36, 0x4e3c, 0x4e3f,\n  0x4e42, 0x4e56, 0x4e58, 0x4e82, 0x4e85, 0x8c6b, 0x4e8a, 0x8212,\n  0x5f0d, 0x4e8e, 0x4e9e, 0x4e9f, 0x4ea0, 0x4ea2, 0x4eb0, 0x4eb3,\n  0x4eb6, 0x4ece, 0x4ecd, 0x4ec4, 0x4ec6, 0x4ec2, 0x4ed7, 0x4ede,\n  0x4eed, 0x4edf, 0x4ef7, 0x4f09, 0x4f5a, 0x4f30, 0x4f5b, 0x4f5d,\n  0x4f57, 0x4f47, 0x4f76, 0x4f88, 0x4f8f, 0x4f98, 0x4f7b, 0x4f69,\n  0x4f70, 0x4f91, 0x4f6f, 0x4f86, 0x4f96, 0x5118, 0x4fd4, 0x4fdf,\n  0x4fce, 0x4fd8, 0x4fdb, 0x4fd1, 0x4fda, 0x4fd0, 0x4fe4, 0x4fe5,\n  0x501a, 0x5028, 0x5014, 0x502a, 0x5025, 0x5005, 0x4f1c, 0x4ff6,\n  0x5021, 0x5029, 0x502c, 0x4ffe, 0x4fef, 0x5011, 0x5006, 0x5043,\n  0x5047, 0x6703, 0x5055, 0x5050, 0x5048, 0x505a, 0x5056, 0x506c,\n  0x5078, 0x5080, 0x509a, 0x5085, 0x50b4, 0x50b2,\n  /* 0x51 */\n  0x50c9, 0x50ca, 0x50b3, 0x50c2, 0x50d6, 0x50de, 0x50e5, 0x50ed,\n  0x50e3, 0x50ee, 0x50f9, 0x50f5, 0x5109, 0x5101, 0x5102, 0x5116,\n  0x5115, 0x5114, 0x511a, 0x5121, 0x513a, 0x5137, 0x513c, 0x513b,\n  0x513f, 0x5140, 0x5152, 0x514c, 0x5154, 0x5162, 0x7af8, 0x5169,\n  0x516a, 0x516e, 0x5180, 0x5182, 0x56d8, 0x518c, 0x5189, 0x518f,\n  0x5191, 0x5193, 0x5195, 0x5196, 0x51a4, 0x51a6, 0x51a2, 0x51a9,\n  0x51aa, 0x51ab, 0x51b3, 0x51b1, 0x51b2, 0x51b0, 0x51b5, 0x51bd,\n  0x51c5, 0x51c9, 0x51db, 0x51e0, 0x8655, 0x51e9, 0x51ed, 0x51f0,\n  0x51f5, 0x51fe, 0x5204, 0x520b, 0x5214, 0x520e, 0x5227, 0x522a,\n  0x522e, 0x5233, 0x5239, 0x524f, 0x5244, 0x524b, 0x524c, 0x525e,\n  0x5254, 0x526a, 0x5274, 0x5269, 0x5273, 0x527f, 0x527d, 0x528d,\n  0x5294, 0x5292, 0x5271, 0x5288, 0x5291, 0x8fa8,\n  /* 0x52 */\n  0x8fa7, 0x52ac, 0x52ad, 0x52bc, 0x52b5, 0x52c1, 0x52cd, 0x52d7,\n  0x52de, 0x52e3, 0x52e6, 0x98ed, 0x52e0, 0x52f3, 0x52f5, 0x52f8,\n  0x52f9, 0x5306, 0x5308, 0x7538, 0x530d, 0x5310, 0x530f, 0x5315,\n  0x531a, 0x5323, 0x532f, 0x5331, 0x5333, 0x5338, 0x5340, 0x5346,\n  0x5345, 0x4e17, 0x5349, 0x534d, 0x51d6, 0x535e, 0x5369, 0x536e,\n  0x5918, 0x537b, 0x5377, 0x5382, 0x5396, 0x53a0, 0x53a6, 0x53a5,\n  0x53ae, 0x53b0, 0x53b6, 0x53c3, 0x7c12, 0x96d9, 0x53df, 0x66fc,\n  0x71ee, 0x53ee, 0x53e8, 0x53ed, 0x53fa, 0x5401, 0x543d, 0x5440,\n  0x542c, 0x542d, 0x543c, 0x542e, 0x5436, 0x5429, 0x541d, 0x544e,\n  0x548f, 0x5475, 0x548e, 0x545f, 0x5471, 0x5477, 0x5470, 0x5492,\n  0x547b, 0x5480, 0x5476, 0x5484, 0x5490, 0x5486, 0x54c7, 0x54a2,\n  0x54b8, 0x54a5, 0x54ac, 0x54c4, 0x54c8, 0x54a8,\n  /* 0x53 */\n  0x54ab, 0x54c2, 0x54a4, 0x54be, 0x54bc, 0x54d8, 0x54e5, 0x54e6,\n  0x550f, 0x5514, 0x54fd, 0x54ee, 0x54ed, 0x54fa, 0x54e2, 0x5539,\n  0x5540, 0x5563, 0x554c, 0x552e, 0x555c, 0x5545, 0x5556, 0x5557,\n  0x5538, 0x5533, 0x555d, 0x5599, 0x5580, 0x54af, 0x558a, 0x559f,\n  0x557b, 0x557e, 0x5598, 0x559e, 0x55ae, 0x557c, 0x5583, 0x55a9,\n  0x5587, 0x55a8, 0x55da, 0x55c5, 0x55df, 0x55c4, 0x55dc, 0x55e4,\n  0x55d4, 0x5614, 0x55f7, 0x5616, 0x55fe, 0x55fd, 0x561b, 0x55f9,\n  0x564e, 0x5650, 0x71df, 0x5634, 0x5636, 0x5632, 0x5638, 0x566b,\n  0x5664, 0x562f, 0x566c, 0x566a, 0x5686, 0x5680, 0x568a, 0x56a0,\n  0x5694, 0x568f, 0x56a5, 0x56ae, 0x56b6, 0x56b4, 0x56c2, 0x56bc,\n  0x56c1, 0x56c3, 0x56c0, 0x56c8, 0x56ce, 0x56d1, 0x56d3, 0x56d7,\n  0x56ee, 0x56f9, 0x5700, 0x56ff, 0x5704, 0x5709,\n  /* 0x54 */\n  0x5708, 0x570b, 0x570d, 0x5713, 0x5718, 0x5716, 0x55c7, 0x571c,\n  0x5726, 0x5737, 0x5738, 0x574e, 0x573b, 0x5740, 0x574f, 0x5769,\n  0x57c0, 0x5788, 0x5761, 0x577f, 0x5789, 0x5793, 0x57a0, 0x57b3,\n  0x57a4, 0x57aa, 0x57b0, 0x57c3, 0x57c6, 0x57d4, 0x57d2, 0x57d3,\n  0x580a, 0x57d6, 0x57e3, 0x580b, 0x5819, 0x581d, 0x5872, 0x5821,\n  0x5862, 0x584b, 0x5870, 0x6bc0, 0x5852, 0x583d, 0x5879, 0x5885,\n  0x58b9, 0x589f, 0x58ab, 0x58ba, 0x58de, 0x58bb, 0x58b8, 0x58ae,\n  0x58c5, 0x58d3, 0x58d1, 0x58d7, 0x58d9, 0x58d8, 0x58e5, 0x58dc,\n  0x58e4, 0x58df, 0x58ef, 0x58fa, 0x58f9, 0x58fb, 0x58fc, 0x58fd,\n  0x5902, 0x590a, 0x5910, 0x591b, 0x68a6, 0x5925, 0x592c, 0x592d,\n  0x5932, 0x5938, 0x593e, 0x7ad2, 0x5955, 0x5950, 0x594e, 0x595a,\n  0x5958, 0x5962, 0x5960, 0x5967, 0x596c, 0x5969,\n  /* 0x55 */\n  0x5978, 0x5981, 0x599d, 0x4f5e, 0x4fab, 0x59a3, 0x59b2, 0x59c6,\n  0x59e8, 0x59dc, 0x598d, 0x59d9, 0x59da, 0x5a25, 0x5a1f, 0x5a11,\n  0x5a1c, 0x5a09, 0x5a1a, 0x5a40, 0x5a6c, 0x5a49, 0x5a35, 0x5a36,\n  0x5a62, 0x5a6a, 0x5a9a, 0x5abc, 0x5abe, 0x5acb, 0x5ac2, 0x5abd,\n  0x5ae3, 0x5ad7, 0x5ae6, 0x5ae9, 0x5ad6, 0x5afa, 0x5afb, 0x5b0c,\n  0x5b0b, 0x5b16, 0x5b32, 0x5ad0, 0x5b2a, 0x5b36, 0x5b3e, 0x5b43,\n  0x5b45, 0x5b40, 0x5b51, 0x5b55, 0x5b5a, 0x5b5b, 0x5b65, 0x5b69,\n  0x5b70, 0x5b73, 0x5b75, 0x5b78, 0x6588, 0x5b7a, 0x5b80, 0x5b83,\n  0x5ba6, 0x5bb8, 0x5bc3, 0x5bc7, 0x5bc9, 0x5bd4, 0x5bd0, 0x5be4,\n  0x5be6, 0x5be2, 0x5bde, 0x5be5, 0x5beb, 0x5bf0, 0x5bf6, 0x5bf3,\n  0x5c05, 0x5c07, 0x5c08, 0x5c0d, 0x5c13, 0x5c20, 0x5c22, 0x5c28,\n  0x5c38, 0x5c39, 0x5c41, 0x5c46, 0x5c4e, 0x5c53,\n  /* 0x56 */\n  0x5c50, 0x5c4f, 0x5b71, 0x5c6c, 0x5c6e, 0x4e62, 0x5c76, 0x5c79,\n  0x5c8c, 0x5c91, 0x5c94, 0x599b, 0x5cab, 0x5cbb, 0x5cb6, 0x5cbc,\n  0x5cb7, 0x5cc5, 0x5cbe, 0x5cc7, 0x5cd9, 0x5ce9, 0x5cfd, 0x5cfa,\n  0x5ced, 0x5d8c, 0x5cea, 0x5d0b, 0x5d15, 0x5d17, 0x5d5c, 0x5d1f,\n  0x5d1b, 0x5d11, 0x5d14, 0x5d22, 0x5d1a, 0x5d19, 0x5d18, 0x5d4c,\n  0x5d52, 0x5d4e, 0x5d4b, 0x5d6c, 0x5d73, 0x5d76, 0x5d87, 0x5d84,\n  0x5d82, 0x5da2, 0x5d9d, 0x5dac, 0x5dae, 0x5dbd, 0x5d90, 0x5db7,\n  0x5dbc, 0x5dc9, 0x5dcd, 0x5dd3, 0x5dd2, 0x5dd6, 0x5ddb, 0x5deb,\n  0x5df2, 0x5df5, 0x5e0b, 0x5e1a, 0x5e19, 0x5e11, 0x5e1b, 0x5e36,\n  0x5e37, 0x5e44, 0x5e43, 0x5e40, 0x5e4e, 0x5e57, 0x5e54, 0x5e5f,\n  0x5e62, 0x5e64, 0x5e47, 0x5e75, 0x5e76, 0x5e7a, 0x9ebc, 0x5e7f,\n  0x5ea0, 0x5ec1, 0x5ec2, 0x5ec8, 0x5ed0, 0x5ecf,\n  /* 0x57 */\n  0x5ed6, 0x5ee3, 0x5edd, 0x5eda, 0x5edb, 0x5ee2, 0x5ee1, 0x5ee8,\n  0x5ee9, 0x5eec, 0x5ef1, 0x5ef3, 0x5ef0, 0x5ef4, 0x5ef8, 0x5efe,\n  0x5f03, 0x5f09, 0x5f5d, 0x5f5c, 0x5f0b, 0x5f11, 0x5f16, 0x5f29,\n  0x5f2d, 0x5f38, 0x5f41, 0x5f48, 0x5f4c, 0x5f4e, 0x5f2f, 0x5f51,\n  0x5f56, 0x5f57, 0x5f59, 0x5f61, 0x5f6d, 0x5f73, 0x5f77, 0x5f83,\n  0x5f82, 0x5f7f, 0x5f8a, 0x5f88, 0x5f91, 0x5f87, 0x5f9e, 0x5f99,\n  0x5f98, 0x5fa0, 0x5fa8, 0x5fad, 0x5fbc, 0x5fd6, 0x5ffb, 0x5fe4,\n  0x5ff8, 0x5ff1, 0x5fdd, 0x60b3, 0x5fff, 0x6021, 0x6060, 0x6019,\n  0x6010, 0x6029, 0x600e, 0x6031, 0x601b, 0x6015, 0x602b, 0x6026,\n  0x600f, 0x603a, 0x605a, 0x6041, 0x606a, 0x6077, 0x605f, 0x604a,\n  0x6046, 0x604d, 0x6063, 0x6043, 0x6064, 0x6042, 0x606c, 0x606b,\n  0x6059, 0x6081, 0x608d, 0x60e7, 0x6083, 0x609a,\n  /* 0x58 */\n  0x6084, 0x609b, 0x6096, 0x6097, 0x6092, 0x60a7, 0x608b, 0x60e1,\n  0x60b8, 0x60e0, 0x60d3, 0x60b4, 0x5ff0, 0x60bd, 0x60c6, 0x60b5,\n  0x60d8, 0x614d, 0x6115, 0x6106, 0x60f6, 0x60f7, 0x6100, 0x60f4,\n  0x60fa, 0x6103, 0x6121, 0x60fb, 0x60f1, 0x610d, 0x610e, 0x6147,\n  0x613e, 0x6128, 0x6127, 0x614a, 0x613f, 0x613c, 0x612c, 0x6134,\n  0x613d, 0x6142, 0x6144, 0x6173, 0x6177, 0x6158, 0x6159, 0x615a,\n  0x616b, 0x6174, 0x616f, 0x6165, 0x6171, 0x615f, 0x615d, 0x6153,\n  0x6175, 0x6199, 0x6196, 0x6187, 0x61ac, 0x6194, 0x619a, 0x618a,\n  0x6191, 0x61ab, 0x61ae, 0x61cc, 0x61ca, 0x61c9, 0x61f7, 0x61c8,\n  0x61c3, 0x61c6, 0x61ba, 0x61cb, 0x7f79, 0x61cd, 0x61e6, 0x61e3,\n  0x61f6, 0x61fa, 0x61f4, 0x61ff, 0x61fd, 0x61fc, 0x61fe, 0x6200,\n  0x6208, 0x6209, 0x620d, 0x620c, 0x6214, 0x621b,\n  /* 0x59 */\n  0x621e, 0x6221, 0x622a, 0x622e, 0x6230, 0x6232, 0x6233, 0x6241,\n  0x624e, 0x625e, 0x6263, 0x625b, 0x6260, 0x6268, 0x627c, 0x6282,\n  0x6289, 0x627e, 0x6292, 0x6293, 0x6296, 0x62d4, 0x6283, 0x6294,\n  0x62d7, 0x62d1, 0x62bb, 0x62cf, 0x62ff, 0x62c6, 0x64d4, 0x62c8,\n  0x62dc, 0x62cc, 0x62ca, 0x62c2, 0x62c7, 0x629b, 0x62c9, 0x630c,\n  0x62ee, 0x62f1, 0x6327, 0x6302, 0x6308, 0x62ef, 0x62f5, 0x6350,\n  0x633e, 0x634d, 0x641c, 0x634f, 0x6396, 0x638e, 0x6380, 0x63ab,\n  0x6376, 0x63a3, 0x638f, 0x6389, 0x639f, 0x63b5, 0x636b, 0x6369,\n  0x63be, 0x63e9, 0x63c0, 0x63c6, 0x63e3, 0x63c9, 0x63d2, 0x63f6,\n  0x63c4, 0x6416, 0x6434, 0x6406, 0x6413, 0x6426, 0x6436, 0x651d,\n  0x6417, 0x6428, 0x640f, 0x6467, 0x646f, 0x6476, 0x644e, 0x652a,\n  0x6495, 0x6493, 0x64a5, 0x64a9, 0x6488, 0x64bc,\n  /* 0x5a */\n  0x64da, 0x64d2, 0x64c5, 0x64c7, 0x64bb, 0x64d8, 0x64c2, 0x64f1,\n  0x64e7, 0x8209, 0x64e0, 0x64e1, 0x62ac, 0x64e3, 0x64ef, 0x652c,\n  0x64f6, 0x64f4, 0x64f2, 0x64fa, 0x6500, 0x64fd, 0x6518, 0x651c,\n  0x6505, 0x6524, 0x6523, 0x652b, 0x6534, 0x6535, 0x6537, 0x6536,\n  0x6538, 0x754b, 0x6548, 0x6556, 0x6555, 0x654d, 0x6558, 0x655e,\n  0x655d, 0x6572, 0x6578, 0x6582, 0x6583, 0x8b8a, 0x659b, 0x659f,\n  0x65ab, 0x65b7, 0x65c3, 0x65c6, 0x65c1, 0x65c4, 0x65cc, 0x65d2,\n  0x65db, 0x65d9, 0x65e0, 0x65e1, 0x65f1, 0x6772, 0x660a, 0x6603,\n  0x65fb, 0x6773, 0x6635, 0x6636, 0x6634, 0x661c, 0x664f, 0x6644,\n  0x6649, 0x6641, 0x665e, 0x665d, 0x6664, 0x6667, 0x6668, 0x665f,\n  0x6662, 0x6670, 0x6683, 0x6688, 0x668e, 0x6689, 0x6684, 0x6698,\n  0x669d, 0x66c1, 0x66b9, 0x66c9, 0x66be, 0x66bc,\n  /* 0x5b */\n  0x66c4, 0x66b8, 0x66d6, 0x66da, 0x66e0, 0x663f, 0x66e6, 0x66e9,\n  0x66f0, 0x66f5, 0x66f7, 0x670f, 0x6716, 0x671e, 0x6726, 0x6727,\n  0x9738, 0x672e, 0x673f, 0x6736, 0x6741, 0x6738, 0x6737, 0x6746,\n  0x675e, 0x6760, 0x6759, 0x6763, 0x6764, 0x6789, 0x6770, 0x67a9,\n  0x677c, 0x676a, 0x678c, 0x678b, 0x67a6, 0x67a1, 0x6785, 0x67b7,\n  0x67ef, 0x67b4, 0x67ec, 0x67b3, 0x67e9, 0x67b8, 0x67e4, 0x67de,\n  0x67dd, 0x67e2, 0x67ee, 0x67b9, 0x67ce, 0x67c6, 0x67e7, 0x6a9c,\n  0x681e, 0x6846, 0x6829, 0x6840, 0x684d, 0x6832, 0x684e, 0x68b3,\n  0x682b, 0x6859, 0x6863, 0x6877, 0x687f, 0x689f, 0x688f, 0x68ad,\n  0x6894, 0x689d, 0x689b, 0x6883, 0x6aae, 0x68b9, 0x6874, 0x68b5,\n  0x68a0, 0x68ba, 0x690f, 0x688d, 0x687e, 0x6901, 0x68ca, 0x6908,\n  0x68d8, 0x6922, 0x6926, 0x68e1, 0x690c, 0x68cd,\n  /* 0x5c */\n  0x68d4, 0x68e7, 0x68d5, 0x6936, 0x6912, 0x6904, 0x68d7, 0x68e3,\n  0x6925, 0x68f9, 0x68e0, 0x68ef, 0x6928, 0x692a, 0x691a, 0x6923,\n  0x6921, 0x68c6, 0x6979, 0x6977, 0x695c, 0x6978, 0x696b, 0x6954,\n  0x697e, 0x696e, 0x6939, 0x6974, 0x693d, 0x6959, 0x6930, 0x6961,\n  0x695e, 0x695d, 0x6981, 0x696a, 0x69b2, 0x69ae, 0x69d0, 0x69bf,\n  0x69c1, 0x69d3, 0x69be, 0x69ce, 0x5be8, 0x69ca, 0x69dd, 0x69bb,\n  0x69c3, 0x69a7, 0x6a2e, 0x6991, 0x69a0, 0x699c, 0x6995, 0x69b4,\n  0x69de, 0x69e8, 0x6a02, 0x6a1b, 0x69ff, 0x6b0a, 0x69f9, 0x69f2,\n  0x69e7, 0x6a05, 0x69b1, 0x6a1e, 0x69ed, 0x6a14, 0x69eb, 0x6a0a,\n  0x6a12, 0x6ac1, 0x6a23, 0x6a13, 0x6a44, 0x6a0c, 0x6a72, 0x6a36,\n  0x6a78, 0x6a47, 0x6a62, 0x6a59, 0x6a66, 0x6a48, 0x6a38, 0x6a22,\n  0x6a90, 0x6a8d, 0x6aa0, 0x6a84, 0x6aa2, 0x6aa3,\n  /* 0x5d */\n  0x6a97, 0x8617, 0x6abb, 0x6ac3, 0x6ac2, 0x6ab8, 0x6ab3, 0x6aac,\n  0x6ade, 0x6ad1, 0x6adf, 0x6aaa, 0x6ada, 0x6aea, 0x6afb, 0x6b05,\n  0x8616, 0x6afa, 0x6b12, 0x6b16, 0x9b31, 0x6b1f, 0x6b38, 0x6b37,\n  0x76dc, 0x6b39, 0x98ee, 0x6b47, 0x6b43, 0x6b49, 0x6b50, 0x6b59,\n  0x6b54, 0x6b5b, 0x6b5f, 0x6b61, 0x6b78, 0x6b79, 0x6b7f, 0x6b80,\n  0x6b84, 0x6b83, 0x6b8d, 0x6b98, 0x6b95, 0x6b9e, 0x6ba4, 0x6baa,\n  0x6bab, 0x6baf, 0x6bb2, 0x6bb1, 0x6bb3, 0x6bb7, 0x6bbc, 0x6bc6,\n  0x6bcb, 0x6bd3, 0x6bdf, 0x6bec, 0x6beb, 0x6bf3, 0x6bef, 0x9ebe,\n  0x6c08, 0x6c13, 0x6c14, 0x6c1b, 0x6c24, 0x6c23, 0x6c5e, 0x6c55,\n  0x6c62, 0x6c6a, 0x6c82, 0x6c8d, 0x6c9a, 0x6c81, 0x6c9b, 0x6c7e,\n  0x6c68, 0x6c73, 0x6c92, 0x6c90, 0x6cc4, 0x6cf1, 0x6cd3, 0x6cbd,\n  0x6cd7, 0x6cc5, 0x6cdd, 0x6cae, 0x6cb1, 0x6cbe,\n  /* 0x5e */\n  0x6cba, 0x6cdb, 0x6cef, 0x6cd9, 0x6cea, 0x6d1f, 0x884d, 0x6d36,\n  0x6d2b, 0x6d3d, 0x6d38, 0x6d19, 0x6d35, 0x6d33, 0x6d12, 0x6d0c,\n  0x6d63, 0x6d93, 0x6d64, 0x6d5a, 0x6d79, 0x6d59, 0x6d8e, 0x6d95,\n  0x6fe4, 0x6d85, 0x6df9, 0x6e15, 0x6e0a, 0x6db5, 0x6dc7, 0x6de6,\n  0x6db8, 0x6dc6, 0x6dec, 0x6dde, 0x6dcc, 0x6de8, 0x6dd2, 0x6dc5,\n  0x6dfa, 0x6dd9, 0x6de4, 0x6dd5, 0x6dea, 0x6dee, 0x6e2d, 0x6e6e,\n  0x6e2e, 0x6e19, 0x6e72, 0x6e5f, 0x6e3e, 0x6e23, 0x6e6b, 0x6e2b,\n  0x6e76, 0x6e4d, 0x6e1f, 0x6e43, 0x6e3a, 0x6e4e, 0x6e24, 0x6eff,\n  0x6e1d, 0x6e38, 0x6e82, 0x6eaa, 0x6e98, 0x6ec9, 0x6eb7, 0x6ed3,\n  0x6ebd, 0x6eaf, 0x6ec4, 0x6eb2, 0x6ed4, 0x6ed5, 0x6e8f, 0x6ea5,\n  0x6ec2, 0x6e9f, 0x6f41, 0x6f11, 0x704c, 0x6eec, 0x6ef8, 0x6efe,\n  0x6f3f, 0x6ef2, 0x6f31, 0x6eef, 0x6f32, 0x6ecc,\n  /* 0x5f */\n  0x6f3e, 0x6f13, 0x6ef7, 0x6f86, 0x6f7a, 0x6f78, 0x6f81, 0x6f80,\n  0x6f6f, 0x6f5b, 0x6ff3, 0x6f6d, 0x6f82, 0x6f7c, 0x6f58, 0x6f8e,\n  0x6f91, 0x6fc2, 0x6f66, 0x6fb3, 0x6fa3, 0x6fa1, 0x6fa4, 0x6fb9,\n  0x6fc6, 0x6faa, 0x6fdf, 0x6fd5, 0x6fec, 0x6fd4, 0x6fd8, 0x6ff1,\n  0x6fee, 0x6fdb, 0x7009, 0x700b, 0x6ffa, 0x7011, 0x7001, 0x700f,\n  0x6ffe, 0x701b, 0x701a, 0x6f74, 0x701d, 0x7018, 0x701f, 0x7030,\n  0x703e, 0x7032, 0x7051, 0x7063, 0x7099, 0x7092, 0x70af, 0x70f1,\n  0x70ac, 0x70b8, 0x70b3, 0x70ae, 0x70df, 0x70cb, 0x70dd, 0x70d9,\n  0x7109, 0x70fd, 0x711c, 0x7119, 0x7165, 0x7155, 0x7188, 0x7166,\n  0x7162, 0x714c, 0x7156, 0x716c, 0x718f, 0x71fb, 0x7184, 0x7195,\n  0x71a8, 0x71ac, 0x71d7, 0x71b9, 0x71be, 0x71d2, 0x71c9, 0x71d4,\n  0x71ce, 0x71e0, 0x71ec, 0x71e7, 0x71f5, 0x71fc,\n  /* 0x60 */\n  0x71f9, 0x71ff, 0x720d, 0x7210, 0x721b, 0x7228, 0x722d, 0x722c,\n  0x7230, 0x7232, 0x723b, 0x723c, 0x723f, 0x7240, 0x7246, 0x724b,\n  0x7258, 0x7274, 0x727e, 0x7282, 0x7281, 0x7287, 0x7292, 0x7296,\n  0x72a2, 0x72a7, 0x72b9, 0x72b2, 0x72c3, 0x72c6, 0x72c4, 0x72ce,\n  0x72d2, 0x72e2, 0x72e0, 0x72e1, 0x72f9, 0x72f7, 0x500f, 0x7317,\n  0x730a, 0x731c, 0x7316, 0x731d, 0x7334, 0x732f, 0x7329, 0x7325,\n  0x733e, 0x734e, 0x734f, 0x9ed8, 0x7357, 0x736a, 0x7368, 0x7370,\n  0x7378, 0x7375, 0x737b, 0x737a, 0x73c8, 0x73b3, 0x73ce, 0x73bb,\n  0x73c0, 0x73e5, 0x73ee, 0x73de, 0x74a2, 0x7405, 0x746f, 0x7425,\n  0x73f8, 0x7432, 0x743a, 0x7455, 0x743f, 0x745f, 0x7459, 0x7441,\n  0x745c, 0x7469, 0x7470, 0x7463, 0x746a, 0x7476, 0x747e, 0x748b,\n  0x749e, 0x74a7, 0x74ca, 0x74cf, 0x74d4, 0x73f1,\n  /* 0x61 */\n  0x74e0, 0x74e3, 0x74e7, 0x74e9, 0x74ee, 0x74f2, 0x74f0, 0x74f1,\n  0x74f8, 0x74f7, 0x7504, 0x7503, 0x7505, 0x750c, 0x750e, 0x750d,\n  0x7515, 0x7513, 0x751e, 0x7526, 0x752c, 0x753c, 0x7544, 0x754d,\n  0x754a, 0x7549, 0x755b, 0x7546, 0x755a, 0x7569, 0x7564, 0x7567,\n  0x756b, 0x756d, 0x7578, 0x7576, 0x7586, 0x7587, 0x7574, 0x758a,\n  0x7589, 0x7582, 0x7594, 0x759a, 0x759d, 0x75a5, 0x75a3, 0x75c2,\n  0x75b3, 0x75c3, 0x75b5, 0x75bd, 0x75b8, 0x75bc, 0x75b1, 0x75cd,\n  0x75ca, 0x75d2, 0x75d9, 0x75e3, 0x75de, 0x75fe, 0x75ff, 0x75fc,\n  0x7601, 0x75f0, 0x75fa, 0x75f2, 0x75f3, 0x760b, 0x760d, 0x7609,\n  0x761f, 0x7627, 0x7620, 0x7621, 0x7622, 0x7624, 0x7634, 0x7630,\n  0x763b, 0x7647, 0x7648, 0x7646, 0x765c, 0x7658, 0x7661, 0x7662,\n  0x7668, 0x7669, 0x766a, 0x7667, 0x766c, 0x7670,\n  /* 0x62 */\n  0x7672, 0x7676, 0x7678, 0x767c, 0x7680, 0x7683, 0x7688, 0x768b,\n  0x768e, 0x7696, 0x7693, 0x7699, 0x769a, 0x76b0, 0x76b4, 0x76b8,\n  0x76b9, 0x76ba, 0x76c2, 0x76cd, 0x76d6, 0x76d2, 0x76de, 0x76e1,\n  0x76e5, 0x76e7, 0x76ea, 0x862f, 0x76fb, 0x7708, 0x7707, 0x7704,\n  0x7729, 0x7724, 0x771e, 0x7725, 0x7726, 0x771b, 0x7737, 0x7738,\n  0x7747, 0x775a, 0x7768, 0x776b, 0x775b, 0x7765, 0x777f, 0x777e,\n  0x7779, 0x778e, 0x778b, 0x7791, 0x77a0, 0x779e, 0x77b0, 0x77b6,\n  0x77b9, 0x77bf, 0x77bc, 0x77bd, 0x77bb, 0x77c7, 0x77cd, 0x77d7,\n  0x77da, 0x77dc, 0x77e3, 0x77ee, 0x77fc, 0x780c, 0x7812, 0x7926,\n  0x7820, 0x792a, 0x7845, 0x788e, 0x7874, 0x7886, 0x787c, 0x789a,\n  0x788c, 0x78a3, 0x78b5, 0x78aa, 0x78af, 0x78d1, 0x78c6, 0x78cb,\n  0x78d4, 0x78be, 0x78bc, 0x78c5, 0x78ca, 0x78ec,\n  /* 0x63 */\n  0x78e7, 0x78da, 0x78fd, 0x78f4, 0x7907, 0x7912, 0x7911, 0x7919,\n  0x792c, 0x792b, 0x7940, 0x7960, 0x7957, 0x795f, 0x795a, 0x7955,\n  0x7953, 0x797a, 0x797f, 0x798a, 0x799d, 0x79a7, 0x9f4b, 0x79aa,\n  0x79ae, 0x79b3, 0x79b9, 0x79ba, 0x79c9, 0x79d5, 0x79e7, 0x79ec,\n  0x79e1, 0x79e3, 0x7a08, 0x7a0d, 0x7a18, 0x7a19, 0x7a20, 0x7a1f,\n  0x7980, 0x7a31, 0x7a3b, 0x7a3e, 0x7a37, 0x7a43, 0x7a57, 0x7a49,\n  0x7a61, 0x7a62, 0x7a69, 0x9f9d, 0x7a70, 0x7a79, 0x7a7d, 0x7a88,\n  0x7a97, 0x7a95, 0x7a98, 0x7a96, 0x7aa9, 0x7ac8, 0x7ab0, 0x7ab6,\n  0x7ac5, 0x7ac4, 0x7abf, 0x9083, 0x7ac7, 0x7aca, 0x7acd, 0x7acf,\n  0x7ad5, 0x7ad3, 0x7ad9, 0x7ada, 0x7add, 0x7ae1, 0x7ae2, 0x7ae6,\n  0x7aed, 0x7af0, 0x7b02, 0x7b0f, 0x7b0a, 0x7b06, 0x7b33, 0x7b18,\n  0x7b19, 0x7b1e, 0x7b35, 0x7b28, 0x7b36, 0x7b50,\n  /* 0x64 */\n  0x7b7a, 0x7b04, 0x7b4d, 0x7b0b, 0x7b4c, 0x7b45, 0x7b75, 0x7b65,\n  0x7b74, 0x7b67, 0x7b70, 0x7b71, 0x7b6c, 0x7b6e, 0x7b9d, 0x7b98,\n  0x7b9f, 0x7b8d, 0x7b9c, 0x7b9a, 0x7b8b, 0x7b92, 0x7b8f, 0x7b5d,\n  0x7b99, 0x7bcb, 0x7bc1, 0x7bcc, 0x7bcf, 0x7bb4, 0x7bc6, 0x7bdd,\n  0x7be9, 0x7c11, 0x7c14, 0x7be6, 0x7be5, 0x7c60, 0x7c00, 0x7c07,\n  0x7c13, 0x7bf3, 0x7bf7, 0x7c17, 0x7c0d, 0x7bf6, 0x7c23, 0x7c27,\n  0x7c2a, 0x7c1f, 0x7c37, 0x7c2b, 0x7c3d, 0x7c4c, 0x7c43, 0x7c54,\n  0x7c4f, 0x7c40, 0x7c50, 0x7c58, 0x7c5f, 0x7c64, 0x7c56, 0x7c65,\n  0x7c6c, 0x7c75, 0x7c83, 0x7c90, 0x7ca4, 0x7cad, 0x7ca2, 0x7cab,\n  0x7ca1, 0x7ca8, 0x7cb3, 0x7cb2, 0x7cb1, 0x7cae, 0x7cb9, 0x7cbd,\n  0x7cc0, 0x7cc5, 0x7cc2, 0x7cd8, 0x7cd2, 0x7cdc, 0x7ce2, 0x9b3b,\n  0x7cef, 0x7cf2, 0x7cf4, 0x7cf6, 0x7cfa, 0x7d06,\n  /* 0x65 */\n  0x7d02, 0x7d1c, 0x7d15, 0x7d0a, 0x7d45, 0x7d4b, 0x7d2e, 0x7d32,\n  0x7d3f, 0x7d35, 0x7d46, 0x7d73, 0x7d56, 0x7d4e, 0x7d72, 0x7d68,\n  0x7d6e, 0x7d4f, 0x7d63, 0x7d93, 0x7d89, 0x7d5b, 0x7d8f, 0x7d7d,\n  0x7d9b, 0x7dba, 0x7dae, 0x7da3, 0x7db5, 0x7dc7, 0x7dbd, 0x7dab,\n  0x7e3d, 0x7da2, 0x7daf, 0x7ddc, 0x7db8, 0x7d9f, 0x7db0, 0x7dd8,\n  0x7ddd, 0x7de4, 0x7dde, 0x7dfb, 0x7df2, 0x7de1, 0x7e05, 0x7e0a,\n  0x7e23, 0x7e21, 0x7e12, 0x7e31, 0x7e1f, 0x7e09, 0x7e0b, 0x7e22,\n  0x7e46, 0x7e66, 0x7e3b, 0x7e35, 0x7e39, 0x7e43, 0x7e37, 0x7e32,\n  0x7e3a, 0x7e67, 0x7e5d, 0x7e56, 0x7e5e, 0x7e59, 0x7e5a, 0x7e79,\n  0x7e6a, 0x7e69, 0x7e7c, 0x7e7b, 0x7e83, 0x7dd5, 0x7e7d, 0x8fae,\n  0x7e7f, 0x7e88, 0x7e89, 0x7e8c, 0x7e92, 0x7e90, 0x7e93, 0x7e94,\n  0x7e96, 0x7e8e, 0x7e9b, 0x7e9c, 0x7f38, 0x7f3a,\n  /* 0x66 */\n  0x7f45, 0x7f4c, 0x7f4d, 0x7f4e, 0x7f50, 0x7f51, 0x7f55, 0x7f54,\n  0x7f58, 0x7f5f, 0x7f60, 0x7f68, 0x7f69, 0x7f67, 0x7f78, 0x7f82,\n  0x7f86, 0x7f83, 0x7f88, 0x7f87, 0x7f8c, 0x7f94, 0x7f9e, 0x7f9d,\n  0x7f9a, 0x7fa3, 0x7faf, 0x7fb2, 0x7fb9, 0x7fae, 0x7fb6, 0x7fb8,\n  0x8b71, 0x7fc5, 0x7fc6, 0x7fca, 0x7fd5, 0x7fd4, 0x7fe1, 0x7fe6,\n  0x7fe9, 0x7ff3, 0x7ff9, 0x98dc, 0x8006, 0x8004, 0x800b, 0x8012,\n  0x8018, 0x8019, 0x801c, 0x8021, 0x8028, 0x803f, 0x803b, 0x804a,\n  0x8046, 0x8052, 0x8058, 0x805a, 0x805f, 0x8062, 0x8068, 0x8073,\n  0x8072, 0x8070, 0x8076, 0x8079, 0x807d, 0x807f, 0x8084, 0x8086,\n  0x8085, 0x809b, 0x8093, 0x809a, 0x80ad, 0x5190, 0x80ac, 0x80db,\n  0x80e5, 0x80d9, 0x80dd, 0x80c4, 0x80da, 0x80d6, 0x8109, 0x80ef,\n  0x80f1, 0x811b, 0x8129, 0x8123, 0x812f, 0x814b,\n  /* 0x67 */\n  0x968b, 0x8146, 0x813e, 0x8153, 0x8151, 0x80fc, 0x8171, 0x816e,\n  0x8165, 0x8166, 0x8174, 0x8183, 0x8188, 0x818a, 0x8180, 0x8182,\n  0x81a0, 0x8195, 0x81a4, 0x81a3, 0x815f, 0x8193, 0x81a9, 0x81b0,\n  0x81b5, 0x81be, 0x81b8, 0x81bd, 0x81c0, 0x81c2, 0x81ba, 0x81c9,\n  0x81cd, 0x81d1, 0x81d9, 0x81d8, 0x81c8, 0x81da, 0x81df, 0x81e0,\n  0x81e7, 0x81fa, 0x81fb, 0x81fe, 0x8201, 0x8202, 0x8205, 0x8207,\n  0x820a, 0x820d, 0x8210, 0x8216, 0x8229, 0x822b, 0x8238, 0x8233,\n  0x8240, 0x8259, 0x8258, 0x825d, 0x825a, 0x825f, 0x8264, 0x8262,\n  0x8268, 0x826a, 0x826b, 0x822e, 0x8271, 0x8277, 0x8278, 0x827e,\n  0x828d, 0x8292, 0x82ab, 0x829f, 0x82bb, 0x82ac, 0x82e1, 0x82e3,\n  0x82df, 0x82d2, 0x82f4, 0x82f3, 0x82fa, 0x8393, 0x8303, 0x82fb,\n  0x82f9, 0x82de, 0x8306, 0x82dc, 0x8309, 0x82d9,\n  /* 0x68 */\n  0x8335, 0x8334, 0x8316, 0x8332, 0x8331, 0x8340, 0x8339, 0x8350,\n  0x8345, 0x832f, 0x832b, 0x8317, 0x8318, 0x8385, 0x839a, 0x83aa,\n  0x839f, 0x83a2, 0x8396, 0x8323, 0x838e, 0x8387, 0x838a, 0x837c,\n  0x83b5, 0x8373, 0x8375, 0x83a0, 0x8389, 0x83a8, 0x83f4, 0x8413,\n  0x83eb, 0x83ce, 0x83fd, 0x8403, 0x83d8, 0x840b, 0x83c1, 0x83f7,\n  0x8407, 0x83e0, 0x83f2, 0x840d, 0x8422, 0x8420, 0x83bd, 0x8438,\n  0x8506, 0x83fb, 0x846d, 0x842a, 0x843c, 0x855a, 0x8484, 0x8477,\n  0x846b, 0x84ad, 0x846e, 0x8482, 0x8469, 0x8446, 0x842c, 0x846f,\n  0x8479, 0x8435, 0x84ca, 0x8462, 0x84b9, 0x84bf, 0x849f, 0x84d9,\n  0x84cd, 0x84bb, 0x84da, 0x84d0, 0x84c1, 0x84c6, 0x84d6, 0x84a1,\n  0x8521, 0x84ff, 0x84f4, 0x8517, 0x8518, 0x852c, 0x851f, 0x8515,\n  0x8514, 0x84fc, 0x8540, 0x8563, 0x8558, 0x8548,\n  /* 0x69 */\n  0x8541, 0x8602, 0x854b, 0x8555, 0x8580, 0x85a4, 0x8588, 0x8591,\n  0x858a, 0x85a8, 0x856d, 0x8594, 0x859b, 0x85ea, 0x8587, 0x859c,\n  0x8577, 0x857e, 0x8590, 0x85c9, 0x85ba, 0x85cf, 0x85b9, 0x85d0,\n  0x85d5, 0x85dd, 0x85e5, 0x85dc, 0x85f9, 0x860a, 0x8613, 0x860b,\n  0x85fe, 0x85fa, 0x8606, 0x8622, 0x861a, 0x8630, 0x863f, 0x864d,\n  0x4e55, 0x8654, 0x865f, 0x8667, 0x8671, 0x8693, 0x86a3, 0x86a9,\n  0x86aa, 0x868b, 0x868c, 0x86b6, 0x86af, 0x86c4, 0x86c6, 0x86b0,\n  0x86c9, 0x8823, 0x86ab, 0x86d4, 0x86de, 0x86e9, 0x86ec, 0x86df,\n  0x86db, 0x86ef, 0x8712, 0x8706, 0x8708, 0x8700, 0x8703, 0x86fb,\n  0x8711, 0x8709, 0x870d, 0x86f9, 0x870a, 0x8734, 0x873f, 0x8737,\n  0x873b, 0x8725, 0x8729, 0x871a, 0x8760, 0x875f, 0x8778, 0x874c,\n  0x874e, 0x8774, 0x8757, 0x8768, 0x876e, 0x8759,\n  /* 0x6a */\n  0x8753, 0x8763, 0x876a, 0x8805, 0x87a2, 0x879f, 0x8782, 0x87af,\n  0x87cb, 0x87bd, 0x87c0, 0x87d0, 0x96d6, 0x87ab, 0x87c4, 0x87b3,\n  0x87c7, 0x87c6, 0x87bb, 0x87ef, 0x87f2, 0x87e0, 0x880f, 0x880d,\n  0x87fe, 0x87f6, 0x87f7, 0x880e, 0x87d2, 0x8811, 0x8816, 0x8815,\n  0x8822, 0x8821, 0x8831, 0x8836, 0x8839, 0x8827, 0x883b, 0x8844,\n  0x8842, 0x8852, 0x8859, 0x885e, 0x8862, 0x886b, 0x8881, 0x887e,\n  0x889e, 0x8875, 0x887d, 0x88b5, 0x8872, 0x8882, 0x8897, 0x8892,\n  0x88ae, 0x8899, 0x88a2, 0x888d, 0x88a4, 0x88b0, 0x88bf, 0x88b1,\n  0x88c3, 0x88c4, 0x88d4, 0x88d8, 0x88d9, 0x88dd, 0x88f9, 0x8902,\n  0x88fc, 0x88f4, 0x88e8, 0x88f2, 0x8904, 0x890c, 0x890a, 0x8913,\n  0x8943, 0x891e, 0x8925, 0x892a, 0x892b, 0x8941, 0x8944, 0x893b,\n  0x8936, 0x8938, 0x894c, 0x891d, 0x8960, 0x895e,\n  /* 0x6b */\n  0x8966, 0x8964, 0x896d, 0x896a, 0x896f, 0x8974, 0x8977, 0x897e,\n  0x8983, 0x8988, 0x898a, 0x8993, 0x8998, 0x89a1, 0x89a9, 0x89a6,\n  0x89ac, 0x89af, 0x89b2, 0x89ba, 0x89bd, 0x89bf, 0x89c0, 0x89da,\n  0x89dc, 0x89dd, 0x89e7, 0x89f4, 0x89f8, 0x8a03, 0x8a16, 0x8a10,\n  0x8a0c, 0x8a1b, 0x8a1d, 0x8a25, 0x8a36, 0x8a41, 0x8a5b, 0x8a52,\n  0x8a46, 0x8a48, 0x8a7c, 0x8a6d, 0x8a6c, 0x8a62, 0x8a85, 0x8a82,\n  0x8a84, 0x8aa8, 0x8aa1, 0x8a91, 0x8aa5, 0x8aa6, 0x8a9a, 0x8aa3,\n  0x8ac4, 0x8acd, 0x8ac2, 0x8ada, 0x8aeb, 0x8af3, 0x8ae7, 0x8ae4,\n  0x8af1, 0x8b14, 0x8ae0, 0x8ae2, 0x8af7, 0x8ade, 0x8adb, 0x8b0c,\n  0x8b07, 0x8b1a, 0x8ae1, 0x8b16, 0x8b10, 0x8b17, 0x8b20, 0x8b33,\n  0x97ab, 0x8b26, 0x8b2b, 0x8b3e, 0x8b28, 0x8b41, 0x8b4c, 0x8b4f,\n  0x8b4e, 0x8b49, 0x8b56, 0x8b5b, 0x8b5a, 0x8b6b,\n  /* 0x6c */\n  0x8b5f, 0x8b6c, 0x8b6f, 0x8b74, 0x8b7d, 0x8b80, 0x8b8c, 0x8b8e,\n  0x8b92, 0x8b93, 0x8b96, 0x8b99, 0x8b9a, 0x8c3a, 0x8c41, 0x8c3f,\n  0x8c48, 0x8c4c, 0x8c4e, 0x8c50, 0x8c55, 0x8c62, 0x8c6c, 0x8c78,\n  0x8c7a, 0x8c82, 0x8c89, 0x8c85, 0x8c8a, 0x8c8d, 0x8c8e, 0x8c94,\n  0x8c7c, 0x8c98, 0x621d, 0x8cad, 0x8caa, 0x8cbd, 0x8cb2, 0x8cb3,\n  0x8cae, 0x8cb6, 0x8cc8, 0x8cc1, 0x8ce4, 0x8ce3, 0x8cda, 0x8cfd,\n  0x8cfa, 0x8cfb, 0x8d04, 0x8d05, 0x8d0a, 0x8d07, 0x8d0f, 0x8d0d,\n  0x8d10, 0x9f4e, 0x8d13, 0x8ccd, 0x8d14, 0x8d16, 0x8d67, 0x8d6d,\n  0x8d71, 0x8d73, 0x8d81, 0x8d99, 0x8dc2, 0x8dbe, 0x8dba, 0x8dcf,\n  0x8dda, 0x8dd6, 0x8dcc, 0x8ddb, 0x8dcb, 0x8dea, 0x8deb, 0x8ddf,\n  0x8de3, 0x8dfc, 0x8e08, 0x8e09, 0x8dff, 0x8e1d, 0x8e1e, 0x8e10,\n  0x8e1f, 0x8e42, 0x8e35, 0x8e30, 0x8e34, 0x8e4a,\n  /* 0x6d */\n  0x8e47, 0x8e49, 0x8e4c, 0x8e50, 0x8e48, 0x8e59, 0x8e64, 0x8e60,\n  0x8e2a, 0x8e63, 0x8e55, 0x8e76, 0x8e72, 0x8e7c, 0x8e81, 0x8e87,\n  0x8e85, 0x8e84, 0x8e8b, 0x8e8a, 0x8e93, 0x8e91, 0x8e94, 0x8e99,\n  0x8eaa, 0x8ea1, 0x8eac, 0x8eb0, 0x8ec6, 0x8eb1, 0x8ebe, 0x8ec5,\n  0x8ec8, 0x8ecb, 0x8edb, 0x8ee3, 0x8efc, 0x8efb, 0x8eeb, 0x8efe,\n  0x8f0a, 0x8f05, 0x8f15, 0x8f12, 0x8f19, 0x8f13, 0x8f1c, 0x8f1f,\n  0x8f1b, 0x8f0c, 0x8f26, 0x8f33, 0x8f3b, 0x8f39, 0x8f45, 0x8f42,\n  0x8f3e, 0x8f4c, 0x8f49, 0x8f46, 0x8f4e, 0x8f57, 0x8f5c, 0x8f62,\n  0x8f63, 0x8f64, 0x8f9c, 0x8f9f, 0x8fa3, 0x8fad, 0x8faf, 0x8fb7,\n  0x8fda, 0x8fe5, 0x8fe2, 0x8fea, 0x8fef, 0x9087, 0x8ff4, 0x9005,\n  0x8ff9, 0x8ffa, 0x9011, 0x9015, 0x9021, 0x900d, 0x901e, 0x9016,\n  0x900b, 0x9027, 0x9036, 0x9035, 0x9039, 0x8ff8,\n  /* 0x6e */\n  0x904f, 0x9050, 0x9051, 0x9052, 0x900e, 0x9049, 0x903e, 0x9056,\n  0x9058, 0x905e, 0x9068, 0x906f, 0x9076, 0x96a8, 0x9072, 0x9082,\n  0x907d, 0x9081, 0x9080, 0x908a, 0x9089, 0x908f, 0x90a8, 0x90af,\n  0x90b1, 0x90b5, 0x90e2, 0x90e4, 0x6248, 0x90db, 0x9102, 0x9112,\n  0x9119, 0x9132, 0x9130, 0x914a, 0x9156, 0x9158, 0x9163, 0x9165,\n  0x9169, 0x9173, 0x9172, 0x918b, 0x9189, 0x9182, 0x91a2, 0x91ab,\n  0x91af, 0x91aa, 0x91b5, 0x91b4, 0x91ba, 0x91c0, 0x91c1, 0x91c9,\n  0x91cb, 0x91d0, 0x91d6, 0x91df, 0x91e1, 0x91db, 0x91fc, 0x91f5,\n  0x91f6, 0x921e, 0x91ff, 0x9214, 0x922c, 0x9215, 0x9211, 0x925e,\n  0x9257, 0x9245, 0x9249, 0x9264, 0x9248, 0x9295, 0x923f, 0x924b,\n  0x9250, 0x929c, 0x9296, 0x9293, 0x929b, 0x925a, 0x92cf, 0x92b9,\n  0x92b7, 0x92e9, 0x930f, 0x92fa, 0x9344, 0x932e,\n  /* 0x6f */\n  0x9319, 0x9322, 0x931a, 0x9323, 0x933a, 0x9335, 0x933b, 0x935c,\n  0x9360, 0x937c, 0x936e, 0x9356, 0x93b0, 0x93ac, 0x93ad, 0x9394,\n  0x93b9, 0x93d6, 0x93d7, 0x93e8, 0x93e5, 0x93d8, 0x93c3, 0x93dd,\n  0x93d0, 0x93c8, 0x93e4, 0x941a, 0x9414, 0x9413, 0x9403, 0x9407,\n  0x9410, 0x9436, 0x942b, 0x9435, 0x9421, 0x943a, 0x9441, 0x9452,\n  0x9444, 0x945b, 0x9460, 0x9462, 0x945e, 0x946a, 0x9229, 0x9470,\n  0x9475, 0x9477, 0x947d, 0x945a, 0x947c, 0x947e, 0x9481, 0x947f,\n  0x9582, 0x9587, 0x958a, 0x9594, 0x9596, 0x9598, 0x9599, 0x95a0,\n  0x95a8, 0x95a7, 0x95ad, 0x95bc, 0x95bb, 0x95b9, 0x95be, 0x95ca,\n  0x6ff6, 0x95c3, 0x95cd, 0x95cc, 0x95d5, 0x95d4, 0x95d6, 0x95dc,\n  0x95e1, 0x95e5, 0x95e2, 0x9621, 0x9628, 0x962e, 0x962f, 0x9642,\n  0x964c, 0x964f, 0x964b, 0x9677, 0x965c, 0x965e,\n  /* 0x70 */\n  0x965d, 0x965f, 0x9666, 0x9672, 0x966c, 0x968d, 0x9698, 0x9695,\n  0x9697, 0x96aa, 0x96a7, 0x96b1, 0x96b2, 0x96b0, 0x96b4, 0x96b6,\n  0x96b8, 0x96b9, 0x96ce, 0x96cb, 0x96c9, 0x96cd, 0x894d, 0x96dc,\n  0x970d, 0x96d5, 0x96f9, 0x9704, 0x9706, 0x9708, 0x9713, 0x970e,\n  0x9711, 0x970f, 0x9716, 0x9719, 0x9724, 0x972a, 0x9730, 0x9739,\n  0x973d, 0x973e, 0x9744, 0x9746, 0x9748, 0x9742, 0x9749, 0x975c,\n  0x9760, 0x9764, 0x9766, 0x9768, 0x52d2, 0x976b, 0x9771, 0x9779,\n  0x9785, 0x977c, 0x9781, 0x977a, 0x9786, 0x978b, 0x978f, 0x9790,\n  0x979c, 0x97a8, 0x97a6, 0x97a3, 0x97b3, 0x97b4, 0x97c3, 0x97c6,\n  0x97c8, 0x97cb, 0x97dc, 0x97ed, 0x9f4f, 0x97f2, 0x7adf, 0x97f6,\n  0x97f5, 0x980f, 0x980c, 0x9838, 0x9824, 0x9821, 0x9837, 0x983d,\n  0x9846, 0x984f, 0x984b, 0x986b, 0x986f, 0x9870,\n  /* 0x71 */\n  0x9871, 0x9874, 0x9873, 0x98aa, 0x98af, 0x98b1, 0x98b6, 0x98c4,\n  0x98c3, 0x98c6, 0x98e9, 0x98eb, 0x9903, 0x9909, 0x9912, 0x9914,\n  0x9918, 0x9921, 0x991d, 0x991e, 0x9924, 0x9920, 0x992c, 0x992e,\n  0x993d, 0x993e, 0x9942, 0x9949, 0x9945, 0x9950, 0x994b, 0x9951,\n  0x9952, 0x994c, 0x9955, 0x9997, 0x9998, 0x99a5, 0x99ad, 0x99ae,\n  0x99bc, 0x99df, 0x99db, 0x99dd, 0x99d8, 0x99d1, 0x99ed, 0x99ee,\n  0x99f1, 0x99f2, 0x99fb, 0x99f8, 0x9a01, 0x9a0f, 0x9a05, 0x99e2,\n  0x9a19, 0x9a2b, 0x9a37, 0x9a45, 0x9a42, 0x9a40, 0x9a43, 0x9a3e,\n  0x9a55, 0x9a4d, 0x9a5b, 0x9a57, 0x9a5f, 0x9a62, 0x9a65, 0x9a64,\n  0x9a69, 0x9a6b, 0x9a6a, 0x9aad, 0x9ab0, 0x9abc, 0x9ac0, 0x9acf,\n  0x9ad1, 0x9ad3, 0x9ad4, 0x9ade, 0x9adf, 0x9ae2, 0x9ae3, 0x9ae6,\n  0x9aef, 0x9aeb, 0x9aee, 0x9af4, 0x9af1, 0x9af7,\n  /* 0x72 */\n  0x9afb, 0x9b06, 0x9b18, 0x9b1a, 0x9b1f, 0x9b22, 0x9b23, 0x9b25,\n  0x9b27, 0x9b28, 0x9b29, 0x9b2a, 0x9b2e, 0x9b2f, 0x9b32, 0x9b44,\n  0x9b43, 0x9b4f, 0x9b4d, 0x9b4e, 0x9b51, 0x9b58, 0x9b74, 0x9b93,\n  0x9b83, 0x9b91, 0x9b96, 0x9b97, 0x9b9f, 0x9ba0, 0x9ba8, 0x9bb4,\n  0x9bc0, 0x9bca, 0x9bb9, 0x9bc6, 0x9bcf, 0x9bd1, 0x9bd2, 0x9be3,\n  0x9be2, 0x9be4, 0x9bd4, 0x9be1, 0x9c3a, 0x9bf2, 0x9bf1, 0x9bf0,\n  0x9c15, 0x9c14, 0x9c09, 0x9c13, 0x9c0c, 0x9c06, 0x9c08, 0x9c12,\n  0x9c0a, 0x9c04, 0x9c2e, 0x9c1b, 0x9c25, 0x9c24, 0x9c21, 0x9c30,\n  0x9c47, 0x9c32, 0x9c46, 0x9c3e, 0x9c5a, 0x9c60, 0x9c67, 0x9c76,\n  0x9c78, 0x9ce7, 0x9cec, 0x9cf0, 0x9d09, 0x9d08, 0x9ceb, 0x9d03,\n  0x9d06, 0x9d2a, 0x9d26, 0x9daf, 0x9d23, 0x9d1f, 0x9d44, 0x9d15,\n  0x9d12, 0x9d41, 0x9d3f, 0x9d3e, 0x9d46, 0x9d48,\n  /* 0x73 */\n  0x9d5d, 0x9d5e, 0x9d64, 0x9d51, 0x9d50, 0x9d59, 0x9d72, 0x9d89,\n  0x9d87, 0x9dab, 0x9d6f, 0x9d7a, 0x9d9a, 0x9da4, 0x9da9, 0x9db2,\n  0x9dc4, 0x9dc1, 0x9dbb, 0x9db8, 0x9dba, 0x9dc6, 0x9dcf, 0x9dc2,\n  0x9dd9, 0x9dd3, 0x9df8, 0x9de6, 0x9ded, 0x9def, 0x9dfd, 0x9e1a,\n  0x9e1b, 0x9e1e, 0x9e75, 0x9e79, 0x9e7d, 0x9e81, 0x9e88, 0x9e8b,\n  0x9e8c, 0x9e92, 0x9e95, 0x9e91, 0x9e9d, 0x9ea5, 0x9ea9, 0x9eb8,\n  0x9eaa, 0x9ead, 0x9761, 0x9ecc, 0x9ece, 0x9ecf, 0x9ed0, 0x9ed4,\n  0x9edc, 0x9ede, 0x9edd, 0x9ee0, 0x9ee5, 0x9ee8, 0x9eef, 0x9ef4,\n  0x9ef6, 0x9ef7, 0x9ef9, 0x9efb, 0x9efc, 0x9efd, 0x9f07, 0x9f08,\n  0x76b7, 0x9f15, 0x9f21, 0x9f2c, 0x9f3e, 0x9f4a, 0x9f52, 0x9f54,\n  0x9f63, 0x9f5f, 0x9f60, 0x9f61, 0x9f66, 0x9f67, 0x9f6c, 0x9f6a,\n  0x9f77, 0x9f72, 0x9f76, 0x9f95, 0x9f9c, 0x9fa0,\n  /* 0x74 */\n  0x582f, 0x69c7, 0x9059, 0x7464, 0x51dc, 0x7199,\n};\n\nstatic int\njisx0208_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x21 && c1 <= 0x28) || (c1 >= 0x30 && c1 <= 0x74)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        unsigned short wc = 0xfffd;\n        if (i < 1410) {\n          if (i < 690)\n            wc = jisx0208_2uni_page21[i];\n        } else {\n          if (i < 7808)\n            wc = jisx0208_2uni_page30[i-1410];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short jisx0208_2charset[6879] = {\n  0x2171, 0x2172, 0x2178, 0x212f, 0x224c, 0x216b, 0x215e, 0x212d,\n  0x2279, 0x215f, 0x2160, 0x2621, 0x2622, 0x2623, 0x2624, 0x2625,\n  0x2626, 0x2627, 0x2628, 0x2629, 0x262a, 0x262b, 0x262c, 0x262d,\n  0x262e, 0x262f, 0x2630, 0x2631, 0x2632, 0x2633, 0x2634, 0x2635,\n  0x2636, 0x2637, 0x2638, 0x2641, 0x2642, 0x2643, 0x2644, 0x2645,\n  0x2646, 0x2647, 0x2648, 0x2649, 0x264a, 0x264b, 0x264c, 0x264d,\n  0x264e, 0x264f, 0x2650, 0x2651, 0x2652, 0x2653, 0x2654, 0x2655,\n  0x2656, 0x2657, 0x2658, 0x2727, 0x2721, 0x2722, 0x2723, 0x2724,\n  0x2725, 0x2726, 0x2728, 0x2729, 0x272a, 0x272b, 0x272c, 0x272d,\n  0x272e, 0x272f, 0x2730, 0x2731, 0x2732, 0x2733, 0x2734, 0x2735,\n  0x2736, 0x2737, 0x2738, 0x2739, 0x273a, 0x273b, 0x273c, 0x273d,\n  0x273e, 0x273f, 0x2740, 0x2741, 0x2751, 0x2752, 0x2753, 0x2754,\n  0x2755, 0x2756, 0x2758, 0x2759, 0x275a, 0x275b, 0x275c, 0x275d,\n  0x275e, 0x275f, 0x2760, 0x2761, 0x2762, 0x2763, 0x2764, 0x2765,\n  0x2766, 0x2767, 0x2768, 0x2769, 0x276a, 0x276b, 0x276c, 0x276d,\n  0x276e, 0x276f, 0x2770, 0x2771, 0x2757, 0x213e, 0x213d, 0x2142,\n  0x2146, 0x2147, 0x2148, 0x2149, 0x2277, 0x2278, 0x2145, 0x2144,\n  0x2273, 0x216c, 0x216d, 0x2228, 0x216e, 0x2272, 0x222b, 0x222c,\n  0x222a, 0x222d, 0x224d, 0x224e, 0x224f, 0x225f, 0x2250, 0x2260,\n  0x223a, 0x223b, 0x215d, 0x2265, 0x2267, 0x2167, 0x225c, 0x224a,\n  0x224b, 0x2241, 0x2240, 0x2269, 0x226a, 0x2168, 0x2268, 0x2266,\n  0x2262, 0x2162, 0x2261, 0x2165, 0x2166, 0x2263, 0x2264, 0x223e,\n  0x223f, 0x223c, 0x223d, 0x225d, 0x225e, 0x2821, 0x282c, 0x2822,\n  0x282d, 0x2823, 0x282e, 0x2824, 0x282f, 0x2826, 0x2831, 0x2825,\n  0x2830, 0x2827, 0x283c, 0x2837, 0x2832, 0x2829, 0x283e, 0x2839,\n  0x2834, 0x2828, 0x2838, 0x283d, 0x2833, 0x282a, 0x283a, 0x283f,\n  0x2835, 0x282b, 0x283b, 0x2840, 0x2836, 0x2223, 0x2222, 0x2225,\n  0x2224, 0x2227, 0x2226, 0x2221, 0x217e, 0x217b, 0x217d, 0x217c,\n  0x227e, 0x217a, 0x2179, 0x216a, 0x2169, 0x2276, 0x2275, 0x2274,\n  0x2121, 0x2122, 0x2123, 0x2137, 0x2139, 0x213a, 0x213b, 0x2152,\n  0x2153, 0x2154, 0x2155, 0x2156, 0x2157, 0x2158, 0x2159, 0x215a,\n  0x215b, 0x2229, 0x222e, 0x214c, 0x214d, 0x2141, 0x2421, 0x2422,\n  0x2423, 0x2424, 0x2425, 0x2426, 0x2427, 0x2428, 0x2429, 0x242a,\n  0x242b, 0x242c, 0x242d, 0x242e, 0x242f, 0x2430, 0x2431, 0x2432,\n  0x2433, 0x2434, 0x2435, 0x2436, 0x2437, 0x2438, 0x2439, 0x243a,\n  0x243b, 0x243c, 0x243d, 0x243e, 0x243f, 0x2440, 0x2441, 0x2442,\n  0x2443, 0x2444, 0x2445, 0x2446, 0x2447, 0x2448, 0x2449, 0x244a,\n  0x244b, 0x244c, 0x244d, 0x244e, 0x244f, 0x2450, 0x2451, 0x2452,\n  0x2453, 0x2454, 0x2455, 0x2456, 0x2457, 0x2458, 0x2459, 0x245a,\n  0x245b, 0x245c, 0x245d, 0x245e, 0x245f, 0x2460, 0x2461, 0x2462,\n  0x2463, 0x2464, 0x2465, 0x2466, 0x2467, 0x2468, 0x2469, 0x246a,\n  0x246b, 0x246c, 0x246d, 0x246e, 0x246f, 0x2470, 0x2471, 0x2472,\n  0x2473, 0x212b, 0x212c, 0x2135, 0x2136, 0x2521, 0x2522, 0x2523,\n  0x2524, 0x2525, 0x2526, 0x2527, 0x2528, 0x2529, 0x252a, 0x252b,\n  0x252c, 0x252d, 0x252e, 0x252f, 0x2530, 0x2531, 0x2532, 0x2533,\n  0x2534, 0x2535, 0x2536, 0x2537, 0x2538, 0x2539, 0x253a, 0x253b,\n  0x253c, 0x253d, 0x253e, 0x253f, 0x2540, 0x2541, 0x2542, 0x2543,\n  0x2544, 0x2545, 0x2546, 0x2547, 0x2548, 0x2549, 0x254a, 0x254b,\n  0x254c, 0x254d, 0x254e, 0x254f, 0x2550, 0x2551, 0x2552, 0x2553,\n  0x2554, 0x2555, 0x2556, 0x2557, 0x2558, 0x2559, 0x255a, 0x255b,\n  0x255c, 0x255d, 0x255e, 0x255f, 0x2560, 0x2561, 0x2562, 0x2563,\n  0x2564, 0x2565, 0x2566, 0x2567, 0x2568, 0x2569, 0x256a, 0x256b,\n  0x256c, 0x256d, 0x256e, 0x256f, 0x2570, 0x2571, 0x2572, 0x2573,\n  0x2574, 0x2575, 0x2576, 0x2126, 0x213c, 0x2133, 0x2134, 0x306c,\n  0x437a, 0x3c37, 0x4b7c, 0x3e66, 0x3b30, 0x3e65, 0x323c, 0x4954,\n  0x4d3f, 0x5022, 0x312f, 0x336e, 0x5023, 0x4024, 0x5242, 0x3556,\n  0x4a3a, 0x3e67, 0x4e3e, 0x4a42, 0x5024, 0x4366, 0x5025, 0x367a,\n  0x5026, 0x345d, 0x4330, 0x3c67, 0x5027, 0x5028, 0x5029, 0x4735,\n  0x3557, 0x4737, 0x4663, 0x3843, 0x4b33, 0x6949, 0x502a, 0x3e68,\n  0x502b, 0x3235, 0x3665, 0x3870, 0x4c69, 0x5626, 0x4d70, 0x467d,\n  0x3425, 0x3535, 0x502c, 0x502d, 0x4e3b, 0x4d3d, 0x4168, 0x502f,\n  0x3b76, 0x4673, 0x5032, 0x313e, 0x385f, 0x385e, 0x3066, 0x4f4b,\n  0x4f4a, 0x3a33, 0x3021, 0x5033, 0x5034, 0x5035, 0x4b34, 0x5036,\n  0x3872, 0x3067, 0x4b72, 0x357c, 0x357d, 0x357e, 0x4462, 0x4e3c,\n  0x5037, 0x5038, 0x5039, 0x3f4d, 0x3d3a, 0x3f4e, 0x503e, 0x503c,\n  0x503d, 0x3558, 0x3a23, 0x3270, 0x503b, 0x503a, 0x4a29, 0x3b46,\n  0x3b45, 0x423e, 0x503f, 0x4955, 0x4067, 0x2138, 0x5040, 0x5042,\n  0x4265, 0x4e61, 0x304a, 0x5041, 0x323e, 0x3644, 0x4367, 0x376f,\n  0x5043, 0x4724, 0x346b, 0x5044, 0x304b, 0x3860, 0x346c, 0x497a,\n  0x4832, 0x3559, 0x3271, 0x5067, 0x4541, 0x476c, 0x5046, 0x483c,\n  0x4e62, 0x3f2d, 0x3b47, 0x3b77, 0x3240, 0x4451, 0x4322, 0x504a,\n  0x304c, 0x4463, 0x3d3b, 0x3a34, 0x4d24, 0x424e, 0x323f, 0x5049,\n  0x4d3e, 0x5045, 0x5047, 0x3a6e, 0x5048, 0x5524, 0x5050, 0x5053,\n  0x5051, 0x3242, 0x4a3b, 0x504b, 0x504f, 0x3873, 0x3b48, 0x3426,\n  0x5054, 0x504c, 0x4e63, 0x3b78, 0x504d, 0x5052, 0x5055, 0x504e,\n  0x3621, 0x304d, 0x3622, 0x3241, 0x5525, 0x4b79, 0x496e, 0x3874,\n  0x3f2f, 0x4e37, 0x4a58, 0x3738, 0x4225, 0x3264, 0x3d53, 0x5059,\n  0x505e, 0x505c, 0x5057, 0x422f, 0x505a, 0x505d, 0x505b, 0x4a5d,\n  0x5058, 0x3f2e, 0x4b73, 0x505f, 0x5060, 0x3d24, 0x506d, 0x4750,\n  0x4936, 0x5068, 0x4a70, 0x3236, 0x506c, 0x5066, 0x506f, 0x4152,\n  0x3844, 0x475c, 0x6047, 0x506e, 0x455d, 0x5063, 0x3876, 0x3875,\n  0x5061, 0x3c5a, 0x5069, 0x4a6f, 0x434d, 0x5065, 0x3771, 0x5062,\n  0x506a, 0x5064, 0x4e51, 0x506b, 0x4f41, 0x3666, 0x3770, 0x5070,\n  0x5071, 0x5075, 0x304e, 0x4a50, 0x5074, 0x5073, 0x5077, 0x5076,\n  0x4464, 0x3772, 0x5078, 0x3c45, 0x4226, 0x4465, 0x3676, 0x5079,\n  0x3536, 0x507a, 0x507c, 0x4b35, 0x3766, 0x3b31, 0x4877, 0x507b,\n  0x3a45, 0x4d43, 0x507e, 0x5123, 0x507d, 0x3a44, 0x3d7d, 0x3739,\n  0x5124, 0x364f, 0x5121, 0x5122, 0x462f, 0x417c, 0x3623, 0x4b4d,\n  0x5125, 0x4e3d, 0x5126, 0x5129, 0x5127, 0x414e, 0x5128, 0x512a,\n  0x512c, 0x512b, 0x4a48, 0x3537, 0x512e, 0x512f, 0x322f, 0x512d,\n  0x3c74, 0x5132, 0x5131, 0x5130, 0x5056, 0x5133, 0x3d7e, 0x5134,\n  0x4d25, 0x4c59, 0x5136, 0x5135, 0x5138, 0x5137, 0x5139, 0x513a,\n  0x3074, 0x3835, 0x373b, 0x3d3c, 0x437b, 0x3624, 0x4068, 0x3877,\n  0x396e, 0x513c, 0x4c48, 0x4546, 0x3b79, 0x513b, 0x513d, 0x455e,\n  0x3375, 0x513e, 0x467e, 0x4134, 0x5140, 0x5141, 0x482c, 0x3878,\n  0x4f3b, 0x5142, 0x3626, 0x4a3c, 0x4236, 0x3671, 0x4535, 0x3773,\n  0x5143, 0x5144, 0x4662, 0x315f, 0x5147, 0x3a7d, 0x5146, 0x3a46,\n  0x5148, 0x666e, 0x5149, 0x4b41, 0x514a, 0x514b, 0x514c, 0x3e69,\n  0x3c4c, 0x3427, 0x514f, 0x514d, 0x4c3d, 0x514e, 0x495a, 0x5150,\n  0x5151, 0x5152, 0x455f, 0x5156, 0x5154, 0x5155, 0x5153, 0x3a63,\n  0x5157, 0x4c6a, 0x4e64, 0x5158, 0x4028, 0x5159, 0x3d5a, 0x515a,\n  0x437c, 0x4e3f, 0x4560, 0x5245, 0x515b, 0x7425, 0x3645, 0x515c,\n  0x4b5e, 0x3d68, 0x427c, 0x515e, 0x4664, 0x515f, 0x5160, 0x332e,\n  0x5161, 0x3627, 0x464c, 0x317a, 0x3d50, 0x4821, 0x5162, 0x4561,\n  0x3f4f, 0x5163, 0x4a2c, 0x405a, 0x3422, 0x3429, 0x5164, 0x5166,\n  0x373a, 0x5165, 0x4e73, 0x3d69, 0x483d, 0x4a4c, 0x5167, 0x4d78,\n  0x5168, 0x5169, 0x457e, 0x516a, 0x4029, 0x3a7e, 0x3774, 0x516b,\n  0x3b49, 0x396f, 0x4466, 0x516d, 0x4227, 0x3a6f, 0x516e, 0x516f,\n  0x4130, 0x516c, 0x5171, 0x4b36, 0x3964, 0x5170, 0x3775, 0x3a5e,\n  0x476d, 0x5174, 0x5172, 0x497b, 0x3e6a, 0x517b, 0x3364, 0x5175,\n  0x5173, 0x414f, 0x5177, 0x5176, 0x3344, 0x3760, 0x517c, 0x4e2d,\n  0x5178, 0x517d, 0x517a, 0x5179, 0x4e4f, 0x3879, 0x3243, 0x4e74,\n  0x3d75, 0x4558, 0x3965, 0x5222, 0x5223, 0x4e65, 0x4f2b, 0x5225,\n  0x387a, 0x5224, 0x332f, 0x5226, 0x4b56, 0x443c, 0x4d26, 0x4a59,\n  0x5227, 0x7055, 0x4630, 0x5228, 0x342a, 0x4c33, 0x3e21, 0x5229,\n  0x4a67, 0x522d, 0x402a, 0x522a, 0x3650, 0x522b, 0x342b, 0x372e,\n  0x522e, 0x522f, 0x5230, 0x5231, 0x3c5b, 0x387b, 0x4c5e, 0x4c68,\n  0x4677, 0x4a71, 0x5232, 0x5233, 0x5235, 0x5237, 0x5236, 0x5238,\n  0x323d, 0x4b4c, 0x3a7c, 0x5239, 0x4159, 0x3e22, 0x3629, 0x523a,\n  0x485b, 0x523b, 0x523c, 0x523d, 0x523e, 0x4924, 0x3668, 0x3065,\n  0x463f, 0x523f, 0x3d3d, 0x4069, 0x5241, 0x5240, 0x3e23, 0x3861,\n  0x5243, 0x483e, 0x5244, 0x485c, 0x4234, 0x426e, 0x3628, 0x466e,\n  0x4331, 0x476e, 0x4b4e, 0x5246, 0x406a, 0x3735, 0x5247, 0x5248,\n  0x312c, 0x3075, 0x346d, 0x4228, 0x3551, 0x4d71, 0x524b, 0x3237,\n  0x524a, 0x362a, 0x524c, 0x4c71, 0x524d, 0x4e52, 0x387c, 0x3836,\n  0x524e, 0x5250, 0x524f, 0x3f5f, 0x3139, 0x315e, 0x5251, 0x5252,\n  0x3837, 0x5253, 0x356e, 0x3b32, 0x5254, 0x4b74, 0x3a35, 0x355a,\n  0x4d27, 0x4150, 0x483f, 0x3c7d, 0x3d47, 0x3c68, 0x3c75, 0x3d76,\n  0x4840, 0x5257, 0x3143, 0x4151, 0x387d, 0x3845, 0x3667, 0x525b,\n  0x4321, 0x427e, 0x362b, 0x3e24, 0x525c, 0x525a, 0x3244, 0x4266,\n  0x3c38, 0x3b4b, 0x3126, 0x3370, 0x3966, 0x3b4a, 0x525d, 0x525e,\n  0x3549, 0x3346, 0x3967, 0x3548, 0x445f, 0x3125, 0x4631, 0x4c3e,\n  0x3921, 0x4d79, 0x4547, 0x387e, 0x372f, 0x5267, 0x3663, 0x4b4a,\n  0x485d, 0x5266, 0x345e, 0x5261, 0x5262, 0x5264, 0x5265, 0x355b,\n  0x3f61, 0x4a2d, 0x5263, 0x525f, 0x3863, 0x5260, 0x4f24, 0x4a72,\n  0x4468, 0x3862, 0x3970, 0x5268, 0x465d, 0x526c, 0x3c7e, 0x3c76,\n  0x526f, 0x526d, 0x4c23, 0x526a, 0x5273, 0x526e, 0x5271, 0x3846,\n  0x4c3f, 0x5272, 0x5274, 0x5276, 0x3a70, 0x4f42, 0x526b, 0x5269,\n  0x5275, 0x5270, 0x5278, 0x5323, 0x527a, 0x527e, 0x5321, 0x527b,\n  0x533e, 0x3a69, 0x3331, 0x5279, 0x5325, 0x3076, 0x5324, 0x3025,\n  0x494a, 0x5322, 0x527c, 0x5277, 0x527d, 0x3a48, 0x5326, 0x3077,\n  0x532f, 0x5327, 0x5328, 0x3e25, 0x4b69, 0x532d, 0x532c, 0x452f,\n  0x532e, 0x532b, 0x3134, 0x3a36, 0x3f30, 0x5329, 0x4562, 0x532a,\n  0x3022, 0x5334, 0x4d23, 0x3e27, 0x533a, 0x5339, 0x5330, 0x4243,\n  0x5331, 0x426f, 0x5336, 0x3e26, 0x5333, 0x4c64, 0x373c, 0x5337,\n  0x5338, 0x5335, 0x533b, 0x5332, 0x5341, 0x5346, 0x5342, 0x533d,\n  0x5347, 0x4131, 0x5349, 0x3922, 0x533f, 0x437d, 0x5343, 0x533c,\n  0x342d, 0x346e, 0x3365, 0x5344, 0x5340, 0x3776, 0x534a, 0x5348,\n  0x4153, 0x354a, 0x362c, 0x5345, 0x3674, 0x3144, 0x534e, 0x534c,\n  0x5427, 0x5351, 0x534b, 0x534f, 0x534d, 0x3b4c, 0x5350, 0x5353,\n  0x5358, 0x5356, 0x5355, 0x4332, 0x3245, 0x5352, 0x5354, 0x3e28,\n  0x3133, 0x5357, 0x325e, 0x5362, 0x3e7c, 0x535e, 0x535c, 0x535d,\n  0x535f, 0x313d, 0x4139, 0x5359, 0x535a, 0x337a, 0x5361, 0x346f,\n  0x5364, 0x5360, 0x5363, 0x4a2e, 0x4655, 0x4838, 0x5366, 0x5365,\n  0x3345, 0x5367, 0x536a, 0x5369, 0x5368, 0x4739, 0x536b, 0x536c,\n  0x536e, 0x536d, 0x5370, 0x5373, 0x5371, 0x536f, 0x5372, 0x5374,\n  0x5375, 0x5376, 0x5377, 0x5378, 0x5145, 0x3c7c, 0x3b4d, 0x3273,\n  0x3078, 0x4344, 0x5379, 0x3a24, 0x304f, 0x3f5e, 0x537a, 0x3847,\n  0x3971, 0x537c, 0x537b, 0x4a60, 0x537d, 0x5421, 0x537e, 0x5422,\n  0x5423, 0x3777, 0x3160, 0x5424, 0x5426, 0x5425, 0x5428, 0x455a,\n  0x5429, 0x3035, 0x3a5f, 0x373d, 0x434f, 0x542a, 0x542b, 0x542d,\n  0x542e, 0x3a64, 0x3651, 0x4b37, 0x542c, 0x542f, 0x3a41, 0x3923,\n  0x5433, 0x3a25, 0x4333, 0x5430, 0x445a, 0x5434, 0x3f62, 0x5432,\n  0x5435, 0x373f, 0x5436, 0x5437, 0x3924, 0x3340, 0x5439, 0x543a,\n  0x543b, 0x5438, 0x5431, 0x543c, 0x543d, 0x4b64, 0x3e6b, 0x543f,\n  0x5440, 0x543e, 0x5442, 0x4738, 0x3068, 0x4956, 0x5443, 0x3e7d,\n  0x3c39, 0x475d, 0x3470, 0x3a6b, 0x4b59, 0x4632, 0x3778, 0x424f,\n  0x5441, 0x5444, 0x4244, 0x5445, 0x5446, 0x5448, 0x4469, 0x342e,\n  0x7421, 0x3161, 0x4a73, 0x3e6c, 0x4548, 0x3a66, 0x544e, 0x4a3d,\n  0x4e5d, 0x3274, 0x544a, 0x413a, 0x544d, 0x4563, 0x4549, 0x4564,\n  0x4839, 0x444d, 0x3a49, 0x5449, 0x3176, 0x4536, 0x544b, 0x5447,\n  0x3f50, 0x544f, 0x3d4e, 0x362d, 0x5450, 0x4a68, 0x417d, 0x4446,\n  0x5452, 0x4b4f, 0x5453, 0x5458, 0x4a2f, 0x5457, 0x5451, 0x5454,\n  0x5456, 0x3a26, 0x4a49, 0x5459, 0x4345, 0x3275, 0x3e6d, 0x545b,\n  0x545a, 0x3968, 0x545c, 0x545e, 0x545d, 0x5460, 0x5455, 0x5462,\n  0x5461, 0x545f, 0x3b4e, 0x3f51, 0x4154, 0x5463, 0x403c, 0x306d,\n  0x4764, 0x445b, 0x5465, 0x5464, 0x5466, 0x5467, 0x5468, 0x5469,\n  0x4a51, 0x546a, 0x3246, 0x546b, 0x4d3c, 0x3330, 0x5249, 0x3d48,\n  0x423f, 0x546c, 0x4c6b, 0x4c34, 0x546e, 0x4267, 0x4537, 0x4240,\n  0x4957, 0x546f, 0x5470, 0x317b, 0x3c3a, 0x5471, 0x3050, 0x5472,\n  0x5473, 0x3162, 0x3471, 0x4660, 0x4a74, 0x5477, 0x4155, 0x5476,\n  0x3740, 0x4b5b, 0x5475, 0x4565, 0x5479, 0x5478, 0x547b, 0x547a,\n  0x317c, 0x547c, 0x3e29, 0x547e, 0x4325, 0x547d, 0x4a33, 0x3d77,\n  0x455b, 0x5521, 0x3925, 0x5522, 0x4721, 0x485e, 0x4c51, 0x4725,\n  0x552b, 0x3538, 0x4d45, 0x4c2f, 0x562c, 0x5523, 0x5526, 0x4245,\n  0x4b38, 0x454a, 0x5527, 0x4b65, 0x3a4a, 0x3e2a, 0x5528, 0x3b50,\n  0x3b4f, 0x3039, 0x3848, 0x402b, 0x3051, 0x552c, 0x552d, 0x552a,\n  0x3138, 0x342f, 0x5529, 0x4c45, 0x4931, 0x3028, 0x3079, 0x3b51,\n  0x3052, 0x3023, 0x5532, 0x5530, 0x4c3c, 0x5533, 0x5531, 0x552f,\n  0x3f31, 0x552e, 0x4a5a, 0x3864, 0x5537, 0x5538, 0x3e2b, 0x5534,\n  0x4f2c, 0x474c, 0x5536, 0x3a27, 0x5539, 0x4958, 0x553a, 0x5535,\n  0x4c3b, 0x475e, 0x553b, 0x4932, 0x553c, 0x5540, 0x553d, 0x3247,\n  0x553f, 0x3c3b, 0x553e, 0x3779, 0x554c, 0x5545, 0x5542, 0x4364,\n  0x5541, 0x5543, 0x5544, 0x5546, 0x5547, 0x3472, 0x5549, 0x5548,\n  0x554a, 0x3e6e, 0x554d, 0x445c, 0x3145, 0x554b, 0x554e, 0x554f,\n  0x5552, 0x5550, 0x5551, 0x3b52, 0x5553, 0x3926, 0x5554, 0x3b7a,\n  0x4238, 0x5555, 0x5556, 0x3b5a, 0x3927, 0x4c52, 0x3528, 0x3849,\n  0x5557, 0x3358, 0x5558, 0x4239, 0x5559, 0x5623, 0x555a, 0x555b,\n  0x555c, 0x555e, 0x555f, 0x5560, 0x4270, 0x3127, 0x3c69, 0x3042,\n  0x4157, 0x3430, 0x3c35, 0x3928, 0x4566, 0x3d21, 0x3431, 0x4368,\n  0x446a, 0x3038, 0x3539, 0x4a75, 0x3c42, 0x3552, 0x406b, 0x3c3c,\n  0x4d28, 0x5561, 0x355c, 0x3a4b, 0x3332, 0x3163, 0x3e2c, 0x3248,\n  0x5562, 0x4d46, 0x3d49, 0x3c64, 0x5563, 0x3473, 0x4652, 0x4c29,\n  0x5564, 0x5565, 0x4959, 0x5567, 0x3428, 0x3677, 0x5566, 0x3432,\n  0x3f32, 0x556b, 0x3b21, 0x3249, 0x556a, 0x5568, 0x556c, 0x5569,\n  0x472b, 0x5c4d, 0x3f33, 0x556d, 0x4e40, 0x556e, 0x5570, 0x437e,\n  0x556f, 0x4023, 0x3b7b, 0x4250, 0x3c77, 0x4975, 0x406c, 0x3c4d,\n  0x5571, 0x3e2d, 0x5572, 0x5573, 0x3053, 0x423a, 0x3f52, 0x5574,\n  0x4633, 0x3e2e, 0x3e2f, 0x5575, 0x406d, 0x3e30, 0x5576, 0x5577,\n  0x4c60, 0x5578, 0x3646, 0x3d22, 0x5579, 0x557a, 0x3c5c, 0x3f2c,\n  0x4674, 0x3f54, 0x4878, 0x4722, 0x3649, 0x557b, 0x356f, 0x557c,\n  0x367e, 0x464f, 0x3230, 0x3b53, 0x557d, 0x5622, 0x5621, 0x367d,\n  0x557e, 0x4538, 0x4230, 0x454b, 0x3c48, 0x4158, 0x4d7a, 0x5624,\n  0x5625, 0x4656, 0x3b33, 0x5627, 0x5628, 0x5629, 0x3474, 0x562a,\n  0x562b, 0x322c, 0x413b, 0x3464, 0x562d, 0x4c28, 0x4252, 0x3359,\n  0x562f, 0x5631, 0x345f, 0x562e, 0x5630, 0x5633, 0x5632, 0x5634,\n  0x5635, 0x463d, 0x362e, 0x3265, 0x5636, 0x563b, 0x5639, 0x4a77,\n  0x4a76, 0x4567, 0x5638, 0x3d54, 0x5637, 0x3f72, 0x563c, 0x3a6a,\n  0x5642, 0x5643, 0x563d, 0x3333, 0x563e, 0x5647, 0x5646, 0x5645,\n  0x5641, 0x5640, 0x5644, 0x4a78, 0x564b, 0x5648, 0x564a, 0x4d72,\n  0x5649, 0x563f, 0x3f73, 0x564c, 0x3a37, 0x564d, 0x564e, 0x5651,\n  0x5650, 0x564f, 0x4568, 0x563a, 0x5657, 0x5653, 0x5652, 0x5654,\n  0x5655, 0x5658, 0x4e66, 0x5659, 0x5656, 0x565a, 0x3460, 0x565b,\n  0x565d, 0x565c, 0x565e, 0x565f, 0x406e, 0x3d23, 0x3d64, 0x4163,\n  0x3929, 0x3a38, 0x392a, 0x3570, 0x5660, 0x3a39, 0x384a, 0x5661,\n  0x4c26, 0x4743, 0x5662, 0x392b, 0x342c, 0x4327, 0x3652, 0x3b54,\n  0x495b, 0x4841, 0x5663, 0x3475, 0x5666, 0x4421, 0x5665, 0x5664,\n  0x5667, 0x446b, 0x3f63, 0x3b55, 0x404a, 0x4253, 0x3522, 0x4422,\n  0x5668, 0x5669, 0x3e6f, 0x4b39, 0x566c, 0x566b, 0x566a, 0x497d,\n  0x5673, 0x4b5a, 0x566d, 0x566f, 0x4b6b, 0x566e, 0x5670, 0x4828,\n  0x5671, 0x4a3e, 0x5672, 0x3433, 0x4a3f, 0x472f, 0x5674, 0x5675,\n  0x392c, 0x3434, 0x5676, 0x3838, 0x4d44, 0x4d29, 0x3476, 0x5678,\n  0x4423, 0x392d, 0x3e31, 0x485f, 0x3e32, 0x3d78, 0x446c, 0x4a79,\n  0x4539, 0x392e, 0x495c, 0x5679, 0x4559, 0x3a42, 0x384b, 0x446d,\n  0x3043, 0x3d6e, 0x392f, 0x4d47, 0x567a, 0x567b, 0x4751, 0x567c,\n  0x4e77, 0x4f2d, 0x567e, 0x567d, 0x3347, 0x5721, 0x5724, 0x5725,\n  0x5723, 0x4940, 0x3e33, 0x5727, 0x5726, 0x5722, 0x5728, 0x5729,\n  0x572a, 0x572d, 0x572b, 0x572c, 0x572e, 0x3164, 0x446e, 0x572f,\n  0x377a, 0x3276, 0x4736, 0x5730, 0x467b, 0x4a5b, 0x5731, 0x4f2e,\n  0x5732, 0x4a40, 0x5735, 0x5021, 0x5031, 0x3c30, 0x4675, 0x5736,\n  0x355d, 0x4424, 0x307a, 0x5737, 0x4a26, 0x3930, 0x4350, 0x446f,\n  0x4c6f, 0x3839, 0x384c, 0x5738, 0x5739, 0x573f, 0x3c65, 0x4425,\n  0x362f, 0x573a, 0x492b, 0x4346, 0x573b, 0x573c, 0x3630, 0x573d,\n  0x573e, 0x5740, 0x4576, 0x5741, 0x5742, 0x5743, 0x5734, 0x5733,\n  0x5744, 0x3741, 0x4927, 0x3a4c, 0x4937, 0x4426, 0x494b, 0x5745,\n  0x3e34, 0x3146, 0x5746, 0x5747, 0x4c72, 0x4860, 0x574a, 0x317d,\n  0x402c, 0x5749, 0x5748, 0x3742, 0x4254, 0x574e, 0x574c, 0x574b,\n  0x4e27, 0x3865, 0x3d79, 0x574d, 0x454c, 0x3d3e, 0x4640, 0x5751,\n  0x5750, 0x574f, 0x5752, 0x3866, 0x5753, 0x497c, 0x3d5b, 0x5754,\n  0x4879, 0x4641, 0x4427, 0x4530, 0x5755, 0x352b, 0x3f34, 0x492c,\n  0x3477, 0x4726, 0x5756, 0x3b56, 0x4b3a, 0x4b3b, 0x317e, 0x575b,\n  0x4369, 0x5758, 0x3277, 0x582d, 0x575a, 0x4730, 0x5759, 0x5757,\n  0x397a, 0x575d, 0x5763, 0x5769, 0x5761, 0x455c, 0x5766, 0x495d,\n  0x5760, 0x5765, 0x4e67, 0x3b57, 0x4255, 0x575e, 0x355e, 0x5768,\n  0x402d, 0x3165, 0x5762, 0x3278, 0x5767, 0x3631, 0x5764, 0x576a,\n  0x576c, 0x5776, 0x5774, 0x5771, 0x5770, 0x4e78, 0x5772, 0x3632,\n  0x3931, 0x3d7a, 0x5779, 0x576b, 0x576f, 0x575f, 0x327a, 0x5773,\n  0x5775, 0x4351, 0x3a28, 0x3238, 0x576d, 0x5778, 0x5777, 0x3633,\n  0x4229, 0x3366, 0x3743, 0x576e, 0x577a, 0x577d, 0x5821, 0x3c3d,\n  0x5827, 0x4470, 0x577b, 0x5825, 0x3279, 0x5823, 0x5824, 0x577e,\n  0x5822, 0x3867, 0x4d2a, 0x3435, 0x3159, 0x5826, 0x473a, 0x302d,\n  0x4861, 0x575c, 0x582c, 0x5830, 0x4c65, 0x5829, 0x4569, 0x582e,\n  0x3e70, 0x582f, 0x4657, 0x4f47, 0x582b, 0x5831, 0x397b, 0x404b,\n  0x3054, 0x582a, 0x5828, 0x415a, 0x577c, 0x3b34, 0x4246, 0x583d,\n  0x415b, 0x5838, 0x5835, 0x5836, 0x3c66, 0x5839, 0x583c, 0x5837,\n  0x3d25, 0x583a, 0x5834, 0x4c7c, 0x4c7b, 0x583e, 0x583f, 0x3055,\n  0x5833, 0x3672, 0x3026, 0x3436, 0x583b, 0x5843, 0x5842, 0x5847,\n  0x5848, 0x5846, 0x5849, 0x5841, 0x5845, 0x584a, 0x584b, 0x5840,\n  0x3b7c, 0x5844, 0x4256, 0x3932, 0x5832, 0x3f35, 0x5858, 0x4a69,\n  0x584e, 0x584f, 0x5850, 0x5857, 0x5856, 0x4b7d, 0x3437, 0x5854,\n  0x3745, 0x3334, 0x5851, 0x4e38, 0x5853, 0x3056, 0x5855, 0x584c,\n  0x5852, 0x5859, 0x3744, 0x584d, 0x4d5d, 0x4d2b, 0x585c, 0x5860,\n  0x417e, 0x4e79, 0x5861, 0x585e, 0x585b, 0x585a, 0x585f, 0x4a30,\n  0x4634, 0x3746, 0x5862, 0x585d, 0x5863, 0x377b, 0x3231, 0x586b,\n  0x3438, 0x5869, 0x586a, 0x3a29, 0x5868, 0x5866, 0x5865, 0x586c,\n  0x5864, 0x586e, 0x327b, 0x5870, 0x586f, 0x4428, 0x5873, 0x5871,\n  0x5867, 0x377c, 0x5872, 0x5876, 0x5875, 0x5877, 0x5874, 0x5878,\n  0x5879, 0x587a, 0x4a6a, 0x587c, 0x587b, 0x3d3f, 0x402e, 0x3266,\n  0x327c, 0x587d, 0x303f, 0x404c, 0x587e, 0x6c43, 0x5921, 0x3761,\n  0x5922, 0x406f, 0x5923, 0x5924, 0x353a, 0x5925, 0x5926, 0x5927,\n  0x4257, 0x384d, 0x4c61, 0x4b3c, 0x3d6a, 0x5928, 0x4070, 0x6e3d,\n  0x4862, 0x3c6a, 0x3a4d, 0x5929, 0x4247, 0x4a27, 0x4271, 0x592c,\n  0x592a, 0x592d, 0x592b, 0x592e, 0x4a31, 0x3037, 0x495e, 0x4863,\n  0x592f, 0x5932, 0x3e35, 0x353b, 0x5930, 0x5937, 0x3e36, 0x5931,\n  0x4744, 0x4d5e, 0x5933, 0x5934, 0x5938, 0x456a, 0x5935, 0x3933,\n  0x405e, 0x5946, 0x4834, 0x4272, 0x4864, 0x5a2d, 0x4a7a, 0x4471,\n  0x4b75, 0x593b, 0x3221, 0x436a, 0x5944, 0x4334, 0x593e, 0x5945,\n  0x5940, 0x5947, 0x5943, 0x5942, 0x476f, 0x593c, 0x327d, 0x593a,\n  0x3571, 0x4273, 0x5936, 0x5939, 0x3934, 0x405b, 0x3e37, 0x5941,\n  0x4752, 0x3572, 0x3348, 0x3367, 0x3f21, 0x5949, 0x594e, 0x594a,\n  0x377d, 0x594f, 0x3b22, 0x3969, 0x3d26, 0x593d, 0x3b7d, 0x594c,\n  0x3b58, 0x594d, 0x3044, 0x5948, 0x4429, 0x3573, 0x3634, 0x594b,\n  0x3027, 0x3a43, 0x3f36, 0x4472, 0x4854, 0x5951, 0x415e, 0x422a,\n  0x3b2b, 0x5952, 0x5954, 0x5950, 0x4a61, 0x443d, 0x415c, 0x4a7b,\n  0x3c4e, 0x5960, 0x595f, 0x3f78, 0x377e, 0x5959, 0x3e39, 0x4668,\n  0x4731, 0x5957, 0x415d, 0x3c78, 0x595c, 0x3e38, 0x5956, 0x595b,\n  0x4753, 0x5955, 0x3721, 0x335d, 0x595d, 0x4e2b, 0x3a4e, 0x4335,\n  0x595a, 0x405c, 0x3935, 0x3f64, 0x3166, 0x413c, 0x5958, 0x3545,\n  0x3747, 0x444f, 0x595e, 0x415f, 0x5961, 0x5963, 0x4237, 0x5969,\n  0x5964, 0x5966, 0x4941, 0x4473, 0x5967, 0x4d2c, 0x4d48, 0x3439,\n  0x302e, 0x5965, 0x5962, 0x3478, 0x3167, 0x5968, 0x4d49, 0x596c,\n  0x423b, 0x5973, 0x596d, 0x596a, 0x5971, 0x5953, 0x596e, 0x5972,\n  0x4842, 0x456b, 0x596b, 0x596f, 0x3748, 0x3a71, 0x405d, 0x5977,\n  0x4526, 0x5974, 0x4b60, 0x5975, 0x5976, 0x4c4e, 0x4022, 0x3762,\n  0x597d, 0x3b35, 0x597a, 0x5979, 0x4732, 0x4635, 0x4531, 0x597b,\n  0x597c, 0x496f, 0x4745, 0x3b23, 0x4071, 0x4b50, 0x3349, 0x5a25,\n  0x597e, 0x4d4a, 0x5a27, 0x5a23, 0x5a24, 0x4160, 0x5a22, 0x593f,\n  0x5a26, 0x5a21, 0x5a2b, 0x5a2c, 0x4527, 0x5a2e, 0x3b24, 0x5a29,\n  0x353c, 0x5a2f, 0x5a28, 0x5a33, 0x5a32, 0x5a31, 0x5a34, 0x5a36,\n  0x3e71, 0x5a35, 0x5a39, 0x5a37, 0x5a38, 0x5970, 0x5a3b, 0x5a3a,\n  0x5978, 0x5a3c, 0x5a30, 0x3b59, 0x5a3d, 0x5a3e, 0x5a40, 0x5a3f,\n  0x5a41, 0x327e, 0x3936, 0x4a7c, 0x402f, 0x384e, 0x5a43, 0x5a46,\n  0x4952, 0x355f, 0x5a45, 0x5a44, 0x4754, 0x5a47, 0x3635, 0x5a49,\n  0x5a48, 0x343a, 0x3b36, 0x4658, 0x3749, 0x3f74, 0x5a4a, 0x4030,\n  0x4528, 0x495f, 0x5a4b, 0x5a4c, 0x5a4d, 0x4a38, 0x555d, 0x4046,\n  0x494c, 0x3a58, 0x4865, 0x4843, 0x454d, 0x4e41, 0x5a4f, 0x3c50,\n  0x5a50, 0x3036, 0x3654, 0x404d, 0x4960, 0x5a51, 0x3b42, 0x4347,\n  0x3b5b, 0x3f37, 0x5a52, 0x4a7d, 0x3177, 0x3b5c, 0x5a55, 0x5a53,\n  0x5a56, 0x4e39, 0x5a54, 0x407b, 0x5a57, 0x4232, 0x5a58, 0x347a,\n  0x5a5a, 0x5a59, 0x5a5b, 0x5a5c, 0x347b, 0x467c, 0x4336, 0x356c,\n  0x3b5d, 0x4161, 0x3d5c, 0x3030, 0x5a5d, 0x3222, 0x5a61, 0x3937,\n  0x5a60, 0x3a2b, 0x3e3a, 0x5a5f, 0x3e3b, 0x4c40, 0x3a2a, 0x3057,\n  0x404e, 0x5a66, 0x4031, 0x3147, 0x3d55, 0x4b66, 0x3a72, 0x3e3c,\n  0x4027, 0x5a65, 0x5a63, 0x5a64, 0x436b, 0x5b26, 0x5a6a, 0x3b7e,\n  0x3938, 0x5a68, 0x5a69, 0x3f38, 0x5a67, 0x3b2f, 0x5a6c, 0x5a6b,\n  0x5a70, 0x5a71, 0x5a6d, 0x3322, 0x5a6e, 0x5a6f, 0x4855, 0x4961,\n  0x374a, 0x5a72, 0x4032, 0x3e3d, 0x4352, 0x3647, 0x5a73, 0x5a77,\n  0x324b, 0x5a74, 0x5a76, 0x5a75, 0x3d6b, 0x4348, 0x3045, 0x5a78,\n  0x5a79, 0x442a, 0x4e71, 0x3b43, 0x4a6b, 0x4b3d, 0x5b22, 0x5a7b,\n  0x5a7e, 0x5a7d, 0x5a7a, 0x5b21, 0x465e, 0x5a7c, 0x5b23, 0x3d6c,\n  0x5b24, 0x4d4b, 0x4778, 0x5b25, 0x5b27, 0x5b28, 0x5b29, 0x364a,\n  0x3148, 0x3939, 0x5b2a, 0x5b2b, 0x3d71, 0x4162, 0x5258, 0x413e,\n  0x413d, 0x4258, 0x3a47, 0x5072, 0x376e, 0x4d2d, 0x4a7e, 0x497e,\n  0x5b2c, 0x3a73, 0x443f, 0x5b2d, 0x4f2f, 0x4b3e, 0x442b, 0x5b2e,\n  0x347c, 0x5b2f, 0x5b30, 0x4c5a, 0x4c24, 0x4b76, 0x4b5c, 0x3b25,\n  0x5b32, 0x3c6b, 0x4b51, 0x5b34, 0x5b37, 0x5b36, 0x3479, 0x3560,\n  0x5b33, 0x5b35, 0x5b38, 0x3f79, 0x4d7b, 0x3049, 0x3a60, 0x423c,\n  0x3c5d, 0x3e73, 0x5b3b, 0x454e, 0x5b39, 0x422b, 0x5b3a, 0x3e72,\n  0x4c5d, 0x5b3c, 0x5b3d, 0x4d68, 0x5b42, 0x393a, 0x4755, 0x5b3f,\n  0x456c, 0x5a5e, 0x5a62, 0x354f, 0x4747, 0x5b41, 0x3e3e, 0x4844,\n  0x5b47, 0x487a, 0x5b3e, 0x5b44, 0x5b43, 0x404f, 0x4b6d, 0x4e53,\n  0x4b67, 0x324c, 0x3b5e, 0x4f48, 0x5b46, 0x3f75, 0x5b45, 0x5b40,\n  0x384f, 0x5b4c, 0x5b4a, 0x324d, 0x5b48, 0x5b4e, 0x5b54, 0x4248,\n  0x4a41, 0x5b56, 0x4922, 0x5b55, 0x4770, 0x4b3f, 0x343b, 0x4077,\n  0x3d40, 0x4453, 0x4d2e, 0x5b51, 0x5b50, 0x5b52, 0x5b4f, 0x5b57,\n  0x5b4d, 0x5b4b, 0x5b53, 0x5b49, 0x436c, 0x4c78, 0x3c46, 0x3a74,\n  0x3a3a, 0x4b6f, 0x3341, 0x444e, 0x464a, 0x3149, 0x4072, 0x4034,\n  0x372a, 0x5b59, 0x393b, 0x337c, 0x5b5b, 0x3374, 0x5b61, 0x5b5e,\n  0x4073, 0x334b, 0x3a2c, 0x334a, 0x3a4f, 0x5b5c, 0x3765, 0x374b,\n  0x456d, 0x5b5a, 0x3046, 0x5b5d, 0x5b5f, 0x364d, 0x372c, 0x343c,\n  0x354b, 0x5b62, 0x3a79, 0x4b71, 0x3b37, 0x5b63, 0x4930, 0x5b6f,\n  0x3233, 0x5b64, 0x5b75, 0x5b65, 0x4e42, 0x5b6c, 0x475f, 0x5b74,\n  0x5b67, 0x3034, 0x5b69, 0x393c, 0x5b6b, 0x5b6a, 0x5b66, 0x5b71,\n  0x3e3f, 0x546d, 0x3868, 0x4d7c, 0x5b68, 0x4474, 0x3323, 0x3a2d,\n  0x5b60, 0x5b70, 0x3361, 0x5b6e, 0x5b72, 0x456e, 0x347e, 0x5c32,\n  0x4c49, 0x5b77, 0x347d, 0x5b7e, 0x4b40, 0x5c21, 0x5c23, 0x5c27,\n  0x5b79, 0x432a, 0x456f, 0x5c2b, 0x5b7c, 0x5c28, 0x5c22, 0x3f39,\n  0x5c2c, 0x4033, 0x5c2a, 0x343d, 0x4f50, 0x5b76, 0x5c26, 0x3058,\n  0x5b78, 0x4c3a, 0x5b7d, 0x3f22, 0x4447, 0x5b73, 0x5c25, 0x3f7a,\n  0x5c2f, 0x3371, 0x3821, 0x5c31, 0x5b7a, 0x5c30, 0x5c29, 0x5b7b,\n  0x5c2d, 0x5c2e, 0x5c3f, 0x464e, 0x5c24, 0x5c3b, 0x5c3d, 0x4458,\n  0x4d4c, 0x4976, 0x5c38, 0x424a, 0x5c3e, 0x413f, 0x5c35, 0x5c42,\n  0x5c41, 0x466f, 0x5c40, 0x466a, 0x5c44, 0x5c37, 0x3648, 0x5c3a,\n  0x3d5d, 0x4760, 0x5c3c, 0x364b, 0x5c34, 0x5c36, 0x5c33, 0x4f30,\n  0x335a, 0x5c39, 0x5c43, 0x3335, 0x3a67, 0x315d, 0x5c54, 0x4f31,\n  0x5c57, 0x3f3a, 0x5c56, 0x5c55, 0x5c52, 0x5c46, 0x5c63, 0x5c45,\n  0x5c58, 0x5c50, 0x5c4b, 0x5c48, 0x5c49, 0x5c51, 0x7422, 0x5c4e,\n  0x393d, 0x4448, 0x4164, 0x5c4c, 0x5c47, 0x5c4a, 0x4d4d, 0x4b6a,\n  0x5c4f, 0x5c59, 0x5c61, 0x5c5a, 0x5c67, 0x5c65, 0x5c60, 0x5c5f,\n  0x4450, 0x4165, 0x5c5d, 0x5c5b, 0x5c62, 0x5c68, 0x4875, 0x5c6e,\n  0x5c69, 0x5c6c, 0x5c66, 0x4374, 0x4938, 0x5c5c, 0x5c64, 0x3e40,\n  0x4c4f, 0x5c78, 0x5c6b, 0x3822, 0x3223, 0x335f, 0x5c53, 0x3e41,\n  0x5c70, 0x5c77, 0x3c79, 0x3372, 0x432e, 0x5c6d, 0x5c72, 0x5c76,\n  0x3636, 0x354c, 0x5c74, 0x3521, 0x464b, 0x5c73, 0x5c75, 0x5c6f,\n  0x5c71, 0x3360, 0x4349, 0x5c7c, 0x5c7a, 0x3869, 0x5c79, 0x5d21,\n  0x5b58, 0x5c7b, 0x5c7d, 0x5c7e, 0x5d2c, 0x5d28, 0x5b6d, 0x5d27,\n  0x5d26, 0x5d23, 0x5c6a, 0x5d25, 0x5d24, 0x5d2a, 0x4f26, 0x5d2d,\n  0x367b, 0x5d29, 0x5d2b, 0x4827, 0x5d2e, 0x5d32, 0x5d2f, 0x4d73,\n  0x5d30, 0x5c5e, 0x5d33, 0x5d34, 0x3135, 0x5d36, 0x3767, 0x3c21,\n  0x3655, 0x3224, 0x4d5f, 0x5d38, 0x5d37, 0x5d3a, 0x353d, 0x3656,\n  0x343e, 0x5d3d, 0x5d3c, 0x5d3e, 0x324e, 0x4337, 0x5d3f, 0x343f,\n  0x5d41, 0x5d40, 0x5d42, 0x5d43, 0x5d44, 0x3b5f, 0x4035, 0x3a21,\n  0x4970, 0x4a62, 0x4f44, 0x3b75, 0x3a50, 0x4e72, 0x5d45, 0x5d46,\n  0x3b60, 0x5d47, 0x5d48, 0x5d4a, 0x5d49, 0x4b58, 0x3d5e, 0x3c6c,\n  0x3b44, 0x5d4b, 0x5d4d, 0x3f23, 0x5d4c, 0x5d4e, 0x5d4f, 0x5d50,\n  0x5d51, 0x5d52, 0x5d54, 0x5d53, 0x5d55, 0x3225, 0x434a, 0x5d56,\n  0x3b26, 0x334c, 0x5d57, 0x4542, 0x544c, 0x3523, 0x5d58, 0x5d59,\n  0x4a6c, 0x4b68, 0x4647, 0x5d5a, 0x4866, 0x487b, 0x4c53, 0x5d5b,\n  0x5d5d, 0x5d5c, 0x5d5f, 0x5d5e, 0x5d61, 0x3b61, 0x4c31, 0x5d62,\n  0x5d63, 0x3524, 0x5d64, 0x5d66, 0x5d65, 0x3f65, 0x4939, 0x314a,\n  0x4845, 0x4475, 0x3d41, 0x3561, 0x4846, 0x3c2e, 0x5d68, 0x3440,\n  0x3178, 0x4672, 0x5d67, 0x393e, 0x4353, 0x5d69, 0x5d71, 0x5d6a,\n  0x4241, 0x3562, 0x5d72, 0x3768, 0x3525, 0x5d70, 0x5d6e, 0x5d6b,\n  0x4d60, 0x4440, 0x4659, 0x5d6c, 0x5d74, 0x5d73, 0x3723, 0x322d,\n  0x3a3b, 0x5d6d, 0x5d6f, 0x4b57, 0x4274, 0x4b77, 0x5d7c, 0x5d7d,\n  0x324f, 0x4a28, 0x4c7d, 0x5e21, 0x3c23, 0x3e42, 0x5d78, 0x5d7e,\n  0x3168, 0x3637, 0x5d75, 0x5d7a, 0x4074, 0x4771, 0x4867, 0x5d77,\n  0x4b21, 0x5d79, 0x5e24, 0x5e22, 0x5d7b, 0x4b22, 0x4748, 0x3563,\n  0x4525, 0x436d, 0x5e25, 0x5e23, 0x4259, 0x5d76, 0x314b, 0x4d4e,\n  0x5e30, 0x5e2f, 0x4076, 0x5e2c, 0x4d6c, 0x4636, 0x5e26, 0x4445,\n  0x314c, 0x393f, 0x5e29, 0x3d27, 0x5e2e, 0x5e2d, 0x5e28, 0x5e2b,\n  0x3368, 0x5e2a, 0x4749, 0x4e2e, 0x3e74, 0x4075, 0x5e36, 0x5e34,\n  0x494d, 0x5e31, 0x5e33, 0x313a, 0x3940, 0x4f32, 0x333d, 0x4962,\n  0x4d61, 0x3324, 0x3f3b, 0x5e35, 0x5e3a, 0x3e43, 0x4d30, 0x5e37,\n  0x5e32, 0x5e38, 0x4e5e, 0x4573, 0x4642, 0x3336, 0x3155, 0x5e3e,\n  0x5e41, 0x4e43, 0x4d64, 0x5e48, 0x5e42, 0x5e3f, 0x4e54, 0x5e45,\n  0x3d4a, 0x5e47, 0x5e4c, 0x4571, 0x5e4a, 0x5e44, 0x4338, 0x5e4b,\n  0x5e40, 0x5e46, 0x5e4d, 0x307c, 0x5e43, 0x5e4e, 0x3f3c, 0x3d5f,\n  0x4a25, 0x3a2e, 0x5e3b, 0x5e49, 0x453a, 0x4036, 0x3369, 0x3a51,\n  0x3e44, 0x5e3d, 0x3d42, 0x374c, 0x5e3c, 0x5e52, 0x3d6d, 0x383a,\n  0x5e61, 0x5e5b, 0x3574, 0x454f, 0x5e56, 0x5e5f, 0x302f, 0x3132,\n  0x3239, 0x5e58, 0x422c, 0x5e4f, 0x5e51, 0x3941, 0x5e62, 0x5e5d,\n  0x5e55, 0x5e5c, 0x4c2b, 0x5e5a, 0x5e5e, 0x3850, 0x3e45, 0x4339,\n  0x5e54, 0x4d2f, 0x5e57, 0x5e50, 0x4572, 0x5e53, 0x5e59, 0x4f51,\n  0x3c3e, 0x4b7e, 0x5e63, 0x482e, 0x5e6f, 0x383b, 0x3d60, 0x5e65,\n  0x4e2f, 0x3942, 0x5e72, 0x306e, 0x5e70, 0x5e64, 0x5e6a, 0x5e6c,\n  0x4d4f, 0x5e67, 0x452e, 0x5e69, 0x5e71, 0x5e6b, 0x4c47, 0x5e66,\n  0x3c22, 0x5e7e, 0x336a, 0x5e68, 0x5e6d, 0x5e6e, 0x426c, 0x425a,\n  0x5e76, 0x5e7c, 0x5e7a, 0x4529, 0x5f23, 0x5e77, 0x5e78, 0x5e60,\n  0x3579, 0x493a, 0x3c3f, 0x3977, 0x4f33, 0x5e74, 0x5f22, 0x3169,\n  0x4166, 0x4779, 0x3441, 0x4e7a, 0x4c21, 0x4452, 0x5e7b, 0x5e7d,\n  0x4132, 0x5f21, 0x5e79, 0x5e73, 0x3443, 0x3769, 0x5f2f, 0x5f2a,\n  0x4078, 0x3363, 0x3d61, 0x5f33, 0x5f2c, 0x442c, 0x5f29, 0x4459,\n  0x5f4c, 0x5f26, 0x5f25, 0x5f2e, 0x5f28, 0x5f27, 0x5f2d, 0x4021,\n  0x5f24, 0x5f30, 0x5f31, 0x3442, 0x5f36, 0x5f35, 0x5f37, 0x5f3a,\n  0x4543, 0x5f34, 0x5f38, 0x3763, 0x4279, 0x5f32, 0x473b, 0x5f39,\n  0x5f3e, 0x5f3c, 0x5f3f, 0x5f42, 0x5f3b, 0x396a, 0x4728, 0x5e39,\n  0x4d74, 0x5f3d, 0x5f41, 0x4275, 0x5f40, 0x5f2b, 0x6f69, 0x5f45,\n  0x5f49, 0x5f47, 0x5f43, 0x5f44, 0x5f48, 0x5f46, 0x494e, 0x5f4e,\n  0x5f4b, 0x5f4a, 0x5f4d, 0x4654, 0x5f4f, 0x4375, 0x426d, 0x4025,\n  0x5f50, 0x5f52, 0x5f51, 0x5e75, 0x5f53, 0x4667, 0x5f54, 0x3250,\n  0x4574, 0x3325, 0x3564, 0x3c5e, 0x3a52, 0x4f27, 0x3f66, 0x316a,\n  0x5f56, 0x5f55, 0x5f59, 0x433a, 0x5f5c, 0x5f57, 0x5f5b, 0x5f5a,\n  0x4540, 0x3059, 0x4e75, 0x5f5e, 0x3128, 0x5f60, 0x5f5f, 0x5f5d,\n  0x5f58, 0x4b23, 0x5f62, 0x5f61, 0x316b, 0x5f64, 0x4a32, 0x5f63,\n  0x4c35, 0x3e47, 0x4133, 0x3e46, 0x4e7b, 0x5f6a, 0x4079, 0x5f66,\n  0x5f6b, 0x316c, 0x5f69, 0x4761, 0x5f65, 0x5f68, 0x3e48, 0x4851,\n  0x5f6c, 0x3c51, 0x407a, 0x5f6f, 0x5f67, 0x3727, 0x5f6d, 0x4d50,\n  0x5f70, 0x7426, 0x3d4f, 0x5f71, 0x5f72, 0x472e, 0x5f74, 0x5f75,\n  0x4733, 0x4575, 0x5f77, 0x5f79, 0x4e55, 0x5f76, 0x5f78, 0x316d,\n  0x5f73, 0x535b, 0x5f7a, 0x4167, 0x3b38, 0x5f7c, 0x5f7b, 0x3f24,\n  0x5259, 0x5f7d, 0x6021, 0x5f6e, 0x5f7e, 0x6022, 0x477a, 0x6023,\n  0x6024, 0x6025, 0x6026, 0x445e, 0x6028, 0x6027, 0x6029, 0x602a,\n  0x3c5f, 0x4963, 0x4c6c, 0x602b, 0x602c, 0x4156, 0x3c24, 0x602d,\n  0x602e, 0x602f, 0x4a52, 0x4847, 0x6030, 0x4757, 0x442d, 0x6031,\n  0x3267, 0x356d, 0x4c46, 0x4c36, 0x3234, 0x4f34, 0x4b52, 0x4a2a,\n  0x4037, 0x6032, 0x4643, 0x3823, 0x6033, 0x3a54, 0x6035, 0x6034,\n  0x6036, 0x6037, 0x6038, 0x353e, 0x6039, 0x603a, 0x3824, 0x4848,\n  0x603c, 0x3e75, 0x603b, 0x3638, 0x603d, 0x603f, 0x603e, 0x6040,\n  0x3851, 0x6041, 0x3669, 0x4140, 0x397d, 0x6043, 0x6044, 0x6042,\n  0x3c6d, 0x4648, 0x3639, 0x6046, 0x432c, 0x6045, 0x4f35, 0x4762,\n  0x6049, 0x604b, 0x6048, 0x4c54, 0x604a, 0x604c, 0x4e44, 0x6050,\n  0x604f, 0x4376, 0x472d, 0x3825, 0x604e, 0x604d, 0x4d31, 0x4d32,\n  0x6051, 0x316e, 0x3976, 0x3b62, 0x6052, 0x6053, 0x6055, 0x3d43,\n  0x6057, 0x6056, 0x6058, 0x334d, 0x605a, 0x6059, 0x605c, 0x605b,\n  0x383c, 0x4e28, 0x364c, 0x3226, 0x366a, 0x3461, 0x4e68, 0x605e,\n  0x6060, 0x6061, 0x3251, 0x605d, 0x3b39, 0x4441, 0x605f, 0x6064,\n  0x3c6e, 0x6062, 0x373e, 0x4849, 0x6063, 0x607e, 0x6069, 0x383d,\n  0x3565, 0x6066, 0x4d7d, 0x4e30, 0x4276, 0x6068, 0x606a, 0x4e56,\n  0x3657, 0x487c, 0x474a, 0x606b, 0x606d, 0x6070, 0x606c, 0x606f,\n  0x386a, 0x314d, 0x6071, 0x3f70, 0x606e, 0x4e5c, 0x6074, 0x7424,\n  0x6072, 0x6075, 0x6067, 0x6073, 0x3a3c, 0x6076, 0x6077, 0x4d7e,\n  0x6078, 0x6079, 0x6065, 0x607a, 0x3444, 0x3c25, 0x607b, 0x607c,\n  0x607d, 0x313b, 0x6121, 0x493b, 0x6122, 0x3424, 0x6123, 0x6124,\n  0x6125, 0x6127, 0x6128, 0x6126, 0x4953, 0x612a, 0x6129, 0x612c,\n  0x612b, 0x612d, 0x612e, 0x6130, 0x612f, 0x3979, 0x6132, 0x6131,\n  0x3445, 0x3f53, 0x453c, 0x6133, 0x4038, 0x3b3a, 0x3179, 0x6134,\n  0x4d51, 0x4a63, 0x6135, 0x4544, 0x4d33, 0x3943, 0x3f3d, 0x434b,\n  0x5234, 0x442e, 0x3268, 0x6136, 0x6137, 0x613c, 0x613a, 0x6139,\n  0x5a42, 0x3326, 0x6138, 0x305a, 0x482a, 0x484a, 0x4e31, 0x613d,\n  0x613b, 0x435c, 0x4026, 0x482b, 0x492d, 0x613f, 0x4e2c, 0x374d,\n  0x6140, 0x613e, 0x4856, 0x6141, 0x6142, 0x305b, 0x3e76, 0x6147,\n  0x6144, 0x466d, 0x6143, 0x3526, 0x614a, 0x6145, 0x6146, 0x6149,\n  0x6148, 0x4925, 0x4142, 0x4141, 0x353f, 0x614b, 0x614c, 0x614d,\n  0x614f, 0x614e, 0x3156, 0x6157, 0x4868, 0x6151, 0x6153, 0x6155,\n  0x3f3e, 0x6156, 0x6154, 0x3c40, 0x6150, 0x6152, 0x4942, 0x3e49,\n  0x6159, 0x6158, 0x615a, 0x3c26, 0x3a2f, 0x4577, 0x615b, 0x444b,\n  0x615d, 0x4e21, 0x615c, 0x4169, 0x6162, 0x6164, 0x6165, 0x4354,\n  0x6163, 0x6160, 0x615e, 0x615f, 0x6161, 0x6168, 0x6166, 0x6167,\n  0x6169, 0x616b, 0x616c, 0x616d, 0x616e, 0x616a, 0x6170, 0x616f,\n  0x6171, 0x4e45, 0x6174, 0x6172, 0x6173, 0x3462, 0x4c7e, 0x4a4a,\n  0x6176, 0x6175, 0x6177, 0x6178, 0x617c, 0x6179, 0x617a, 0x617b,\n  0x617d, 0x617e, 0x6221, 0x6222, 0x6223, 0x482f, 0x4550, 0x6224,\n  0x4772, 0x4934, 0x6225, 0x6226, 0x452a, 0x3327, 0x3944, 0x6227,\n  0x6228, 0x6229, 0x3b29, 0x622b, 0x622a, 0x622c, 0x622d, 0x4869,\n  0x622e, 0x622f, 0x7369, 0x6230, 0x6231, 0x6232, 0x3b2e, 0x6233,\n  0x4756, 0x4b5f, 0x314e, 0x3157, 0x6234, 0x6236, 0x6235, 0x4570,\n  0x4039, 0x5d39, 0x6237, 0x4c41, 0x6238, 0x3446, 0x4857, 0x6239,\n  0x623a, 0x623b, 0x4c5c, 0x4c55, 0x443e, 0x416a, 0x623d, 0x3d62,\n  0x3e4a, 0x6240, 0x623f, 0x623e, 0x487d, 0x3447, 0x3829, 0x6246,\n  0x6243, 0x3f3f, 0x4c32, 0x6242, 0x6244, 0x6245, 0x6241, 0x6247,\n  0x6248, 0x442f, 0x3463, 0x4365, 0x6249, 0x624a, 0x624d, 0x3f67,\n  0x4644, 0x624e, 0x4b53, 0x624b, 0x624c, 0x6251, 0x6250, 0x624f,\n  0x6253, 0x6252, 0x6254, 0x6256, 0x6255, 0x4a4d, 0x3d56, 0x4e46,\n  0x6257, 0x4637, 0x6258, 0x6259, 0x625d, 0x625b, 0x625c, 0x625a,\n  0x625e, 0x625f, 0x6260, 0x6261, 0x4c37, 0x6262, 0x4c70, 0x6263,\n  0x434e, 0x476a, 0x366b, 0x433b, 0x6264, 0x363a, 0x4050, 0x6265,\n  0x3a3d, 0x6266, 0x6267, 0x3826, 0x3a55, 0x6269, 0x4556, 0x3a56,\n  0x354e, 0x4b24, 0x474b, 0x4557, 0x395c, 0x626b, 0x3e4b, 0x4e32,\n  0x3945, 0x3827, 0x4823, 0x626d, 0x626f, 0x386b, 0x626e, 0x4476,\n  0x6271, 0x3337, 0x626c, 0x486a, 0x3130, 0x3a6c, 0x4f52, 0x6270,\n  0x6272, 0x4a4b, 0x4059, 0x6274, 0x6275, 0x6273, 0x334e, 0x627b,\n  0x627a, 0x3c27, 0x627c, 0x6277, 0x627d, 0x6278, 0x4858, 0x6276,\n  0x6279, 0x6322, 0x6321, 0x4b61, 0x627e, 0x306b, 0x6324, 0x6323,\n  0x3e4c, 0x6325, 0x4143, 0x6327, 0x6326, 0x6328, 0x6268, 0x626a,\n  0x632a, 0x6329, 0x3c28, 0x4e69, 0x3c52, 0x632b, 0x3737, 0x3540,\n  0x3527, 0x3b63, 0x4d34, 0x6331, 0x6330, 0x4144, 0x632d, 0x632f,\n  0x3d4b, 0x3f40, 0x632e, 0x632c, 0x472a, 0x3e4d, 0x493c, 0x3a57,\n  0x4578, 0x6332, 0x6333, 0x6349, 0x3658, 0x4f3d, 0x4135, 0x6334,\n  0x3252, 0x4477, 0x4a21, 0x6335, 0x357a, 0x6336, 0x6338, 0x6339,\n  0x4729, 0x633a, 0x633b, 0x633c, 0x3659, 0x3253, 0x4645, 0x3d28,\n  0x3b64, 0x633d, 0x3d29, 0x324a, 0x4943, 0x633e, 0x486b, 0x4145,\n  0x6341, 0x6342, 0x4769, 0x3f41, 0x633f, 0x4361, 0x6340, 0x3e4e,\n  0x305c, 0x3529, 0x6343, 0x4478, 0x6344, 0x4047, 0x4c2d, 0x4923,\n  0x6345, 0x6346, 0x4355, 0x4e47, 0x6348, 0x6347, 0x3c6f, 0x634a,\n  0x3070, 0x634d, 0x634b, 0x3254, 0x374e, 0x634c, 0x3946, 0x3972,\n  0x4a66, 0x634e, 0x4b54, 0x6350, 0x4051, 0x314f, 0x323a, 0x302c,\n  0x634f, 0x6351, 0x6352, 0x3e77, 0x6353, 0x334f, 0x6355, 0x376a,\n  0x3566, 0x6356, 0x3675, 0x6357, 0x407c, 0x464d, 0x4060, 0x3a75,\n  0x6358, 0x4362, 0x416b, 0x635a, 0x635c, 0x6359, 0x635b, 0x3722,\n  0x635d, 0x3726, 0x3567, 0x4d52, 0x635f, 0x6360, 0x312e, 0x6363,\n  0x3376, 0x6362, 0x6361, 0x6365, 0x635e, 0x6366, 0x4e29, 0x6367,\n  0x6368, 0x5474, 0x636a, 0x6369, 0x636b, 0x636c, 0x4e35, 0x636d,\n  0x706f, 0x3e4f, 0x636e, 0x636f, 0x3d57, 0x4638, 0x6370, 0x4328,\n  0x6371, 0x433c, 0x6372, 0x3625, 0x513f, 0x435d, 0x3c33, 0x3448,\n  0x6373, 0x6422, 0x6376, 0x3568, 0x6375, 0x6424, 0x6374, 0x3e50,\n  0x6378, 0x6379, 0x452b, 0x637a, 0x335e, 0x3f5a, 0x4964, 0x637c,\n  0x4268, 0x6377, 0x637b, 0x637d, 0x3a7b, 0x6426, 0x492e, 0x4826,\n  0x4579, 0x365a, 0x6425, 0x6423, 0x4835, 0x637e, 0x435e, 0x457b,\n  0x457a, 0x3a76, 0x6438, 0x6428, 0x642a, 0x642d, 0x642e, 0x642b,\n  0x642c, 0x6429, 0x6427, 0x6421, 0x4a4f, 0x3255, 0x6435, 0x6432,\n  0x6437, 0x6436, 0x4773, 0x4c27, 0x3b3b, 0x6430, 0x6439, 0x6434,\n  0x6433, 0x642f, 0x6431, 0x3449, 0x433d, 0x407d, 0x4822, 0x643e,\n  0x4824, 0x4061, 0x643b, 0x484f, 0x643f, 0x4a53, 0x435b, 0x643a,\n  0x643c, 0x643d, 0x6440, 0x3c44, 0x4646, 0x6445, 0x6444, 0x6441,\n  0x4f36, 0x644a, 0x644e, 0x644b, 0x6447, 0x6448, 0x644d, 0x6442,\n  0x5255, 0x6449, 0x6443, 0x644c, 0x6452, 0x344a, 0x644f, 0x6450,\n  0x6451, 0x6454, 0x6453, 0x4876, 0x6455, 0x4e7c, 0x4a6d, 0x645a,\n  0x6457, 0x6456, 0x4052, 0x6459, 0x645b, 0x6458, 0x645f, 0x645c,\n  0x645d, 0x6446, 0x645e, 0x6460, 0x6461, 0x4a46, 0x6462, 0x4c62,\n  0x364e, 0x3729, 0x6463, 0x4a34, 0x3f68, 0x4c30, 0x6464, 0x4e33,\n  0x4774, 0x4146, 0x4734, 0x3d4d, 0x3040, 0x6469, 0x6467, 0x6465,\n  0x3421, 0x3e51, 0x646a, 0x6468, 0x6466, 0x646e, 0x646d, 0x646c,\n  0x646b, 0x646f, 0x6470, 0x403a, 0x6471, 0x6473, 0x6472, 0x3852,\n  0x4138, 0x6475, 0x457c, 0x6474, 0x6476, 0x4a35, 0x416c, 0x3947,\n  0x6477, 0x4e48, 0x6479, 0x647a, 0x647b, 0x647c, 0x3b65, 0x647d,\n  0x374f, 0x356a, 0x352a, 0x6521, 0x4c73, 0x3948, 0x647e, 0x6524,\n  0x4c66, 0x473c, 0x4933, 0x3d63, 0x6523, 0x3c53, 0x3949, 0x3b66,\n  0x3569, 0x4a36, 0x6522, 0x4147, 0x4b42, 0x3a77, 0x3b67, 0x445d,\n  0x6527, 0x4e5f, 0x3a59, 0x6528, 0x3f42, 0x652a, 0x3e52, 0x3a30,\n  0x6529, 0x3d2a, 0x383e, 0x4148, 0x6525, 0x652b, 0x6526, 0x3750,\n  0x652e, 0x6532, 0x376b, 0x652d, 0x6536, 0x394a, 0x4d6d, 0x303c,\n  0x6533, 0x356b, 0x6530, 0x6531, 0x457d, 0x652f, 0x652c, 0x3328,\n  0x4064, 0x3828, 0x6538, 0x6535, 0x6537, 0x6534, 0x3751, 0x4233,\n  0x6539, 0x416e, 0x6546, 0x6542, 0x653c, 0x6540, 0x3c7a, 0x305d,\n  0x653b, 0x6543, 0x6547, 0x394b, 0x4c56, 0x4456, 0x653d, 0x6545,\n  0x653a, 0x433e, 0x653f, 0x303d, 0x4c4a, 0x653e, 0x365b, 0x486c,\n  0x416d, 0x4e50, 0x3d6f, 0x656e, 0x6548, 0x407e, 0x6544, 0x6549,\n  0x654b, 0x4479, 0x654e, 0x654a, 0x4a54, 0x344b, 0x4c4b, 0x305e,\n  0x654d, 0x4e7d, 0x654c, 0x316f, 0x466c, 0x654f, 0x6556, 0x6550,\n  0x6557, 0x6553, 0x477b, 0x3c4a, 0x6555, 0x6552, 0x6558, 0x6551,\n  0x3d44, 0x4b25, 0x3d4c, 0x6554, 0x6560, 0x655c, 0x655f, 0x655d,\n  0x6561, 0x655b, 0x6541, 0x4053, 0x484b, 0x655e, 0x6559, 0x4121,\n  0x3752, 0x3d2b, 0x3f25, 0x4136, 0x6564, 0x6566, 0x6567, 0x6563,\n  0x6565, 0x655a, 0x6562, 0x656a, 0x6569, 0x4b7a, 0x372b, 0x6568,\n  0x656c, 0x656b, 0x656f, 0x6571, 0x3b3c, 0x656d, 0x6572, 0x6573,\n  0x6574, 0x657a, 0x453b, 0x6576, 0x6575, 0x6577, 0x6578, 0x6579,\n  0x657b, 0x657c, 0x344c, 0x657d, 0x657e, 0x6621, 0x6622, 0x6623,\n  0x6624, 0x6625, 0x6626, 0x6628, 0x6627, 0x6629, 0x662a, 0x662b,\n  0x662e, 0x662c, 0x662d, 0x3a61, 0x3753, 0x4356, 0x4833, 0x3d70,\n  0x474d, 0x486d, 0x662f, 0x586d, 0x6630, 0x6632, 0x4d65, 0x6631,\n  0x6634, 0x6633, 0x4d53, 0x6635, 0x487e, 0x6636, 0x6639, 0x6638,\n  0x6637, 0x663a, 0x3732, 0x4122, 0x3541, 0x663e, 0x663b, 0x663c,\n  0x663f, 0x6640, 0x663d, 0x3129, 0x3227, 0x6642, 0x6643, 0x6644,\n  0x4d62, 0x3d2c, 0x6646, 0x6645, 0x3f69, 0x6647, 0x6648, 0x6649,\n  0x3465, 0x344d, 0x664a, 0x664b, 0x4b5d, 0x4d63, 0x4d54, 0x4f37,\n  0x394d, 0x664e, 0x3c54, 0x664d, 0x664f, 0x3c29, 0x4251, 0x6650,\n  0x394c, 0x4c57, 0x6651, 0x6652, 0x6653, 0x6654, 0x6655, 0x3c2a,\n  0x4c6d, 0x6657, 0x433f, 0x6656, 0x6659, 0x6658, 0x665a, 0x403b,\n  0x665b, 0x665c, 0x4a39, 0x665d, 0x416f, 0x665e, 0x665f, 0x4e7e,\n  0x6662, 0x6661, 0x6660, 0x4430, 0x6663, 0x3f26, 0x6664, 0x6665,\n  0x4f38, 0x6666, 0x6667, 0x6669, 0x6668, 0x4825, 0x4679, 0x4f3e,\n  0x4829, 0x666b, 0x3e53, 0x492a, 0x666c, 0x666a, 0x344e, 0x3854,\n  0x3b68, 0x486e, 0x382a, 0x4b43, 0x666f, 0x666d, 0x394e, 0x394f,\n  0x3069, 0x3a68, 0x4759, 0x305f, 0x6674, 0x4340, 0x4758, 0x425b,\n  0x6676, 0x6672, 0x6675, 0x6670, 0x6673, 0x4b26, 0x3855, 0x307d,\n  0x6671, 0x6678, 0x6679, 0x4639, 0x363b, 0x6726, 0x473d, 0x3b69,\n  0x363c, 0x4048, 0x4f46, 0x4c2e, 0x6677, 0x4054, 0x3553, 0x667a,\n  0x667c, 0x667b, 0x667d, 0x4326, 0x473e, 0x4431, 0x6723, 0x6722,\n  0x667e, 0x3f55, 0x4965, 0x6725, 0x6724, 0x3950, 0x4f53, 0x6735,\n  0x6729, 0x672a, 0x3c70, 0x6728, 0x3978, 0x6727, 0x672b, 0x4432,\n  0x4a22, 0x4123, 0x425c, 0x672f, 0x6730, 0x672c, 0x672d, 0x672e,\n  0x3951, 0x6736, 0x6732, 0x4966, 0x4b6c, 0x4928, 0x6731, 0x6734,\n  0x6733, 0x4b44, 0x6737, 0x6738, 0x4137, 0x6739, 0x673b, 0x673f,\n  0x673c, 0x673a, 0x473f, 0x673d, 0x673e, 0x3232, 0x6745, 0x6740,\n  0x6741, 0x6742, 0x4221, 0x6744, 0x6743, 0x6746, 0x6747, 0x6748,\n  0x3f43, 0x3269, 0x6749, 0x4e57, 0x3c2b, 0x3d2d, 0x3b6a, 0x4357,\n  0x674a, 0x674b, 0x3131, 0x674c, 0x674d, 0x674e, 0x674f, 0x6750,\n  0x363d, 0x5a2a, 0x6751, 0x4065, 0x6752, 0x3c4b, 0x6753, 0x5030,\n  0x6754, 0x4a5e, 0x345c, 0x4124, 0x3d58, 0x4971, 0x3d2e, 0x6755,\n  0x3952, 0x6756, 0x484c, 0x6764, 0x6758, 0x4249, 0x4775, 0x383f,\n  0x6757, 0x4125, 0x6759, 0x447a, 0x675b, 0x675a, 0x675d, 0x675c,\n  0x675e, 0x6760, 0x675f, 0x344f, 0x6761, 0x6762, 0x6763, 0x3a31,\n  0x4e49, 0x6765, 0x3f27, 0x3170, 0x6766, 0x6767, 0x6768, 0x3072,\n  0x6769, 0x676a, 0x4967, 0x3c47, 0x676c, 0x3329, 0x3032, 0x676b,\n  0x676e, 0x474e, 0x3f44, 0x3256, 0x4b27, 0x375d, 0x365c, 0x676d,\n  0x326a, 0x3423, 0x3171, 0x6772, 0x4e6a, 0x425d, 0x4944, 0x677e,\n  0x3257, 0x677c, 0x677a, 0x6771, 0x676f, 0x6770, 0x3c63, 0x366c,\n  0x4377, 0x4651, 0x3151, 0x6774, 0x6773, 0x6779, 0x6775, 0x6778,\n  0x4c50, 0x6777, 0x3258, 0x337d, 0x677b, 0x677d, 0x3754, 0x6823,\n  0x682c, 0x682d, 0x302b, 0x6834, 0x3071, 0x682b, 0x682a, 0x6825,\n  0x6824, 0x6822, 0x6821, 0x4363, 0x427b, 0x6827, 0x6826, 0x6829,\n  0x4170, 0x3755, 0x3141, 0x6828, 0x3953, 0x4171, 0x683a, 0x683b,\n  0x3259, 0x322e, 0x6838, 0x682e, 0x6836, 0x683d, 0x6837, 0x6835,\n  0x6776, 0x6833, 0x682f, 0x3450, 0x6831, 0x683c, 0x6832, 0x683e,\n  0x6830, 0x477c, 0x4d69, 0x6839, 0x684f, 0x6847, 0x3f7b, 0x3546,\n  0x365d, 0x6842, 0x325b, 0x3e54, 0x6845, 0x3a5a, 0x4551, 0x684a,\n  0x4a6e, 0x6841, 0x325a, 0x3856, 0x4929, 0x684b, 0x683f, 0x6848,\n  0x6852, 0x6843, 0x6844, 0x463a, 0x6849, 0x6846, 0x4b28, 0x684c,\n  0x3060, 0x6840, 0x684e, 0x684d, 0x476b, 0x6854, 0x685f, 0x337e,\n  0x6862, 0x6850, 0x6855, 0x4d6e, 0x685e, 0x4d55, 0x4e2a, 0x4378,\n  0x336b, 0x4972, 0x6864, 0x4621, 0x3031, 0x685d, 0x6859, 0x4172,\n  0x6853, 0x685b, 0x6860, 0x472c, 0x302a, 0x6858, 0x6861, 0x4978,\n  0x685c, 0x6857, 0x3e55, 0x3d2f, 0x3c2c, 0x4c58, 0x4947, 0x6867,\n  0x6870, 0x685a, 0x3377, 0x3e78, 0x6865, 0x686a, 0x4173, 0x6866,\n  0x686d, 0x435f, 0x686e, 0x4d56, 0x6863, 0x3338, 0x6869, 0x686c,\n  0x4c2c, 0x686f, 0x6868, 0x686b, 0x4b29, 0x4f21, 0x6873, 0x687a,\n  0x6872, 0x3c43, 0x6851, 0x4a4e, 0x4c22, 0x6879, 0x6878, 0x6874,\n  0x6875, 0x3136, 0x6877, 0x6871, 0x4455, 0x6876, 0x307e, 0x4222,\n  0x4a43, 0x687b, 0x6921, 0x4859, 0x687e, 0x3e56, 0x3c49, 0x6923,\n  0x363e, 0x6924, 0x4979, 0x687d, 0x6856, 0x687c, 0x4f4f, 0x4622,\n  0x4973, 0x692b, 0x6931, 0x6932, 0x6925, 0x4776, 0x692f, 0x6927,\n  0x6929, 0x6933, 0x6928, 0x692c, 0x3172, 0x4665, 0x692d, 0x6930,\n  0x6926, 0x4126, 0x692a, 0x3b27, 0x3f45, 0x3730, 0x4c74, 0x4c79,\n  0x3d72, 0x6937, 0x6935, 0x4f4e, 0x6934, 0x4d75, 0x6936, 0x6938,\n  0x6939, 0x693c, 0x693a, 0x4623, 0x693b, 0x484d, 0x692e, 0x3d73,\n  0x693d, 0x6942, 0x4174, 0x6941, 0x6922, 0x6943, 0x4149, 0x693e,\n  0x6940, 0x693f, 0x5d31, 0x5d22, 0x6945, 0x6944, 0x4d76, 0x623c,\n  0x6946, 0x6947, 0x6948, 0x3857, 0x3554, 0x694a, 0x515d, 0x3575,\n  0x4e3a, 0x3673, 0x694b, 0x694c, 0x436e, 0x694d, 0x467a, 0x303a,\n  0x3263, 0x6952, 0x6953, 0x694e, 0x3b3d, 0x694f, 0x4742, 0x6950,\n  0x6951, 0x695b, 0x6955, 0x6958, 0x6954, 0x6956, 0x6957, 0x3c58,\n  0x6959, 0x4341, 0x3756, 0x3342, 0x695c, 0x333f, 0x6961, 0x695d,\n  0x6960, 0x483a, 0x695e, 0x695f, 0x4948, 0x485a, 0x6962, 0x427d,\n  0x696c, 0x6968, 0x326b, 0x6966, 0x4b2a, 0x6967, 0x6964, 0x6965,\n  0x696a, 0x696d, 0x696b, 0x6969, 0x6963, 0x4358, 0x6974, 0x4c2a,\n  0x6972, 0x6973, 0x696e, 0x6970, 0x6971, 0x696f, 0x4066, 0x4f39,\n  0x6978, 0x6979, 0x6a21, 0x3f2a, 0x697b, 0x697e, 0x6976, 0x6975,\n  0x6a22, 0x325c, 0x697c, 0x6a23, 0x697d, 0x697a, 0x4433, 0x6977,\n  0x4768, 0x6a27, 0x4d3b, 0x6a26, 0x6a25, 0x6a2e, 0x6a28, 0x6a30,\n  0x4d66, 0x6a33, 0x6a2a, 0x6a2b, 0x6a2f, 0x6a32, 0x6a31, 0x6a29,\n  0x6a2c, 0x6a3d, 0x6a36, 0x6a34, 0x6a35, 0x6a3a, 0x6a3b, 0x332a,\n  0x3542, 0x6a39, 0x6a24, 0x6a38, 0x6a3c, 0x6a37, 0x6a3e, 0x6a40,\n  0x6a3f, 0x6a42, 0x6a41, 0x695a, 0x6a46, 0x6a43, 0x6a44, 0x6a45,\n  0x6a47, 0x376c, 0x6a49, 0x6a48, 0x3d30, 0x3954, 0x5e27, 0x6a4a,\n  0x3d51, 0x3339, 0x6a4b, 0x3152, 0x3e57, 0x6a4c, 0x3955, 0x6a4d,\n  0x3061, 0x493d, 0x6a4e, 0x3f6a, 0x6a55, 0x6a52, 0x436f, 0x6a53,\n  0x6a50, 0x365e, 0x6a4f, 0x6a56, 0x3736, 0x425e, 0x6a5c, 0x6a58,\n  0x4235, 0x6a57, 0x6a5a, 0x6a51, 0x6a5b, 0x6a5d, 0x486f, 0x6a59,\n  0x6a5e, 0x6a60, 0x3853, 0x6a54, 0x3041, 0x6a5f, 0x3a5b, 0x4e76,\n  0x6a61, 0x6a62, 0x4175, 0x4e22, 0x6a63, 0x4d35, 0x6a64, 0x6a65,\n  0x4a64, 0x6a66, 0x3a40, 0x4e23, 0x6a6b, 0x6a6c, 0x3e58, 0x6a6a,\n  0x4d67, 0x6a67, 0x6a69, 0x403d, 0x3f7e, 0x6a68, 0x6a6d, 0x4a23,\n  0x6a6f, 0x6a6e, 0x336c, 0x4b2b, 0x6a70, 0x6a7c, 0x6a72, 0x6a73,\n  0x6a74, 0x6a75, 0x6a79, 0x6a7a, 0x6a78, 0x6a76, 0x6a71, 0x6a77,\n  0x6a7b, 0x7037, 0x3228, 0x6a7e, 0x365f, 0x6a7d, 0x6b22, 0x6b21,\n  0x6b24, 0x6b23, 0x6b25, 0x3d31, 0x6b26, 0x6b27, 0x6b28, 0x403e,\n  0x4d57, 0x6b29, 0x4a24, 0x4746, 0x6b2a, 0x6b2b, 0x382b, 0x352c,\n  0x6b2c, 0x3b6b, 0x4741, 0x6b2d, 0x3350, 0x6b2e, 0x6b30, 0x4d77,\n  0x6b2f, 0x3f46, 0x6b31, 0x6b32, 0x6b33, 0x3451, 0x6b34, 0x6b35,\n  0x6b36, 0x6b37, 0x3351, 0x6b38, 0x6b39, 0x6b3a, 0x3272, 0x3f28,\n  0x6b3b, 0x6b3c, 0x6b3d, 0x3840, 0x447b, 0x6b3e, 0x3757, 0x3f56,\n  0x6b41, 0x4624, 0x6b40, 0x3731, 0x6b3f, 0x4277, 0x352d, 0x6b42,\n  0x6b43, 0x3e59, 0x376d, 0x6b44, 0x4b2c, 0x405f, 0x3576, 0x4c75,\n  0x414a, 0x6b45, 0x3f47, 0x4370, 0x3e5a, 0x6b46, 0x6b49, 0x6b4a,\n  0x3a3e, 0x4242, 0x6b48, 0x3e5b, 0x493e, 0x6b47, 0x3b6c, 0x3153,\n  0x6b4e, 0x3758, 0x3b6e, 0x3b6d, 0x4f4d, 0x6b4d, 0x6b4c, 0x4127,\n  0x354d, 0x4f43, 0x333a, 0x3e5c, 0x6b4b, 0x6b50, 0x6b51, 0x6b4f,\n  0x3858, 0x4d40, 0x3b6f, 0x4727, 0x6b54, 0x4040, 0x4342, 0x4d36,\n  0x6b57, 0x386c, 0x403f, 0x6b53, 0x6b58, 0x386d, 0x6b55, 0x6b56,\n  0x6b52, 0x4062, 0x4649, 0x432f, 0x325d, 0x4870, 0x3543, 0x4434,\n  0x6b5b, 0x6b59, 0x434c, 0x4041, 0x3452, 0x6b5a, 0x3f5b, 0x4e4a,\n  0x4f40, 0x6b5c, 0x6b67, 0x4435, 0x6b66, 0x6b63, 0x6b6b, 0x6b64,\n  0x6b60, 0x447c, 0x6b5f, 0x6b5d, 0x4d21, 0x3b70, 0x6b61, 0x6b5e,\n  0x6b65, 0x3d74, 0x3841, 0x427a, 0x4b45, 0x315a, 0x3062, 0x4625,\n  0x6b69, 0x6b68, 0x4666, 0x6b6d, 0x6b62, 0x6b6c, 0x6b6e, 0x382c,\n  0x6b6a, 0x3956, 0x3c55, 0x6b6f, 0x4d58, 0x6b72, 0x6b75, 0x6b73,\n  0x4935, 0x6b70, 0x3660, 0x6b74, 0x6b76, 0x6b7a, 0x6b77, 0x6b79,\n  0x6b78, 0x6b7b, 0x3c31, 0x6b7d, 0x6b7c, 0x4968, 0x6c21, 0x3759,\n  0x6b7e, 0x6c22, 0x6c23, 0x3544, 0x6641, 0x3e79, 0x6c24, 0x386e,\n  0x6c25, 0x6c26, 0x3b3e, 0x5a4e, 0x6c27, 0x6c28, 0x3d32, 0x6c29,\n  0x6c2a, 0x6c2b, 0x6c2c, 0x6c2d, 0x432b, 0x6c2e, 0x6c30, 0x6c2f,\n  0x4626, 0x6c31, 0x4b2d, 0x6c32, 0x6c33, 0x6c34, 0x6c35, 0x465a,\n  0x3e5d, 0x6c36, 0x396b, 0x502e, 0x6c37, 0x6c38, 0x493f, 0x6c39,\n  0x6c41, 0x6c3a, 0x6c3c, 0x6c3b, 0x6c3d, 0x4b46, 0x6c3e, 0x6c3f,\n  0x6c40, 0x6c42, 0x332d, 0x4467, 0x4969, 0x3a62, 0x3957, 0x494f,\n  0x325f, 0x484e, 0x6c45, 0x3453, 0x4055, 0x6c44, 0x6c49, 0x4379,\n  0x4c63, 0x6c47, 0x6c48, 0x352e, 0x6c4a, 0x4763, 0x425f, 0x4871,\n  0x453d, 0x6c46, 0x4b47, 0x326c, 0x6c4c, 0x4f28, 0x4442, 0x4f45,\n  0x3b71, 0x6c4b, 0x4231, 0x6c5c, 0x4128, 0x4678, 0x4950, 0x6c4f,\n  0x3b3f, 0x3b72, 0x3e5e, 0x4765, 0x382d, 0x6c4e, 0x6c4d, 0x496a,\n  0x3c41, 0x4552, 0x6c51, 0x6c52, 0x3958, 0x6c50, 0x6c53, 0x6c54,\n  0x6c56, 0x4223, 0x6c55, 0x3466, 0x6c58, 0x6c57, 0x6c59, 0x6c5b,\n  0x6c5d, 0x6c5e, 0x4056, 0x3c4f, 0x6c5f, 0x3352, 0x6c60, 0x4176,\n  0x6c61, 0x6c62, 0x496b, 0x352f, 0x6c63, 0x4436, 0x315b, 0x6c64,\n  0x3c71, 0x3f76, 0x422d, 0x6c67, 0x6c66, 0x6c65, 0x6c6d, 0x6c6b,\n  0x6c68, 0x6c6a, 0x6c69, 0x6c6c, 0x3577, 0x6c70, 0x4057, 0x6c71,\n  0x3859, 0x6c6e, 0x6c6f, 0x4f29, 0x4437, 0x4129, 0x6c72, 0x6c75,\n  0x6c73, 0x6c74, 0x4d59, 0x4627, 0x6c78, 0x6c76, 0x6c77, 0x6c79,\n  0x6d29, 0x6c7c, 0x6c7d, 0x6c7b, 0x6c7a, 0x447d, 0x6d21, 0x6d25,\n  0x6d22, 0x6c7e, 0x6d23, 0x6d24, 0x6d2b, 0x6d26, 0x4058, 0x6d28,\n  0x6d2a, 0x6d27, 0x6d2d, 0x3d33, 0x6d2c, 0x6d2e, 0x6d2f, 0x6d32,\n  0x6d31, 0x6d30, 0x6d34, 0x6d33, 0x4c76, 0x6d36, 0x6d35, 0x6d37,\n  0x6d38, 0x6d3a, 0x6d39, 0x3f48, 0x6d3b, 0x366d, 0x6d3c, 0x6d3e,\n  0x6d3f, 0x6d40, 0x6d3d, 0x6d41, 0x3c56, 0x6d42, 0x3530, 0x3733,\n  0x382e, 0x6d43, 0x4670, 0x453e, 0x6d44, 0x6d47, 0x3c34, 0x6d46,\n  0x6d45, 0x375a, 0x6d48, 0x3353, 0x6d4a, 0x3a5c, 0x6d49, 0x6d52,\n  0x6d4c, 0x6d4e, 0x4a65, 0x6d4b, 0x6d4d, 0x6d51, 0x6d4f, 0x3531,\n  0x6d50, 0x6d53, 0x475a, 0x4e58, 0x3d34, 0x6d54, 0x4d22, 0x6d56,\n  0x6d55, 0x6d59, 0x4d41, 0x6d58, 0x336d, 0x6d57, 0x6d5c, 0x6d5b,\n  0x6d5a, 0x4532, 0x6d5d, 0x6d5e, 0x6d5f, 0x396c, 0x3725, 0x6d60,\n  0x6d61, 0x6d62, 0x3f49, 0x6d63, 0x3c2d, 0x6d64, 0x6d65, 0x5221,\n  0x517e, 0x6d66, 0x6570, 0x6d67, 0x4324, 0x3f2b, 0x4740, 0x6d68,\n  0x4a55, 0x4454, 0x397e, 0x4329, 0x312a, 0x4b78, 0x3f57, 0x375e,\n  0x3661, 0x4a56, 0x6d69, 0x6d6b, 0x6d6a, 0x3260, 0x4676, 0x6d6c,\n  0x4777, 0x4533, 0x6d6d, 0x3d52, 0x6d6f, 0x4c42, 0x6d7e, 0x6d71,\n  0x6d72, 0x4449, 0x4260, 0x4177, 0x4628, 0x6d70, 0x3555, 0x6d79,\n  0x6d76, 0x6e25, 0x4629, 0x4360, 0x6d73, 0x447e, 0x4553, 0x6d74,\n  0x6d78, 0x3f60, 0x4767, 0x444c, 0x4042, 0x6d77, 0x422e, 0x4224,\n  0x6d75, 0x3029, 0x4f22, 0x6d7a, 0x4261, 0x3d35, 0x3f4a, 0x6d7c,\n  0x6d7b, 0x306f, 0x6d7d, 0x492f, 0x6e27, 0x465b, 0x3f6b, 0x4359,\n  0x3678, 0x6e26, 0x4d37, 0x313f, 0x4a57, 0x3261, 0x6e21, 0x6e22,\n  0x6e23, 0x6e24, 0x463b, 0x4323, 0x3063, 0x6e28, 0x6e29, 0x7423,\n  0x423d, 0x6e2a, 0x3173, 0x414c, 0x382f, 0x4d5a, 0x6e2b, 0x452c,\n  0x4178, 0x3c57, 0x6e2c, 0x6e2f, 0x3d65, 0x6e2d, 0x412b, 0x412a,\n  0x3064, 0x4e4b, 0x6e31, 0x4872, 0x6e33, 0x6e32, 0x6e30, 0x6364,\n  0x3454, 0x6d6e, 0x6e35, 0x6e34, 0x6e36, 0x4d38, 0x4661, 0x4b2e,\n  0x6e37, 0x3c59, 0x6e38, 0x6e39, 0x6e3a, 0x4521, 0x306a, 0x3959,\n  0x4f3a, 0x6e3e, 0x3734, 0x6e3b, 0x6e3c, 0x4974, 0x3354, 0x4d39,\n  0x363f, 0x4554, 0x6e3f, 0x6e40, 0x6e41, 0x4522, 0x6e43, 0x6e42,\n  0x4653, 0x6e44, 0x3d36, 0x3c60, 0x475b, 0x4371, 0x3c72, 0x3f6c,\n  0x6e45, 0x6e46, 0x3f5d, 0x6e47, 0x6e48, 0x6e49, 0x4d6f, 0x3d37,\n  0x6e4b, 0x6e4a, 0x395a, 0x3973, 0x3b40, 0x6e4e, 0x3d66, 0x6e4d,\n  0x6e4c, 0x4269, 0x386f, 0x4043, 0x4830, 0x3d39, 0x6e4f, 0x3e5f,\n  0x6e52, 0x6e50, 0x6e51, 0x6e54, 0x6e53, 0x3e7a, 0x6e55, 0x6e56,\n  0x6e57, 0x4850, 0x3a53, 0x3c61, 0x6e58, 0x6e59, 0x4e24, 0x3d45,\n  0x4c6e, 0x4e4c, 0x6e5a, 0x3662, 0x6e5b, 0x4523, 0x6e5e, 0x3378,\n  0x3f4b, 0x6e5c, 0x6e5d, 0x4460, 0x4b55, 0x367c, 0x6e60, 0x6e61,\n  0x6e5f, 0x6e63, 0x465f, 0x3343, 0x6e67, 0x6e64, 0x6e66, 0x6e62,\n  0x6f4f, 0x6e65, 0x4e6b, 0x385a, 0x6e6f, 0x4534, 0x6e6a, 0x6e6d,\n  0x6e6b, 0x6e70, 0x6e71, 0x6e69, 0x6e76, 0x3174, 0x6e68, 0x482d,\n  0x6e6c, 0x3e60, 0x395b, 0x4b48, 0x3664, 0x3d46, 0x463c, 0x412d,\n  0x6e74, 0x6e6e, 0x6e73, 0x4c43, 0x4438, 0x6e75, 0x6e72, 0x412c,\n  0x6e79, 0x6e78, 0x6e77, 0x4b2f, 0x3d7b, 0x6e7a, 0x4a5f, 0x3154,\n  0x4946, 0x4372, 0x3578, 0x6e7c, 0x395d, 0x3b2c, 0x6e7b, 0x3f6d,\n  0x3f6e, 0x6f21, 0x6f23, 0x3e7b, 0x6f22, 0x6f24, 0x3653, 0x4945,\n  0x3c62, 0x4f23, 0x6e7e, 0x3a78, 0x4f3f, 0x6f26, 0x6f25, 0x6f27,\n  0x6e7d, 0x4669, 0x4555, 0x4457, 0x6f2c, 0x4343, 0x6f28, 0x6f29,\n  0x372d, 0x6f2b, 0x3830, 0x6f2a, 0x3e61, 0x3379, 0x6f30, 0x3a3f,\n  0x4179, 0x444a, 0x333b, 0x6f2e, 0x6f2f, 0x4443, 0x6f2d, 0x6f31,\n  0x6f37, 0x6f3a, 0x6f39, 0x452d, 0x6f32, 0x6f33, 0x6f36, 0x6f38,\n  0x3640, 0x6f3b, 0x6f35, 0x6f34, 0x6f3f, 0x6f40, 0x6f41, 0x6f3e,\n  0x6f3d, 0x3e62, 0x462a, 0x6f3c, 0x6f45, 0x6f43, 0x6f44, 0x6f42,\n  0x4278, 0x6f46, 0x6f47, 0x6f49, 0x3455, 0x6f48, 0x4c7a, 0x6f54,\n  0x6f4a, 0x6f4d, 0x6f4b, 0x6f4c, 0x6f4e, 0x6f50, 0x6f51, 0x6f52,\n  0x6f55, 0x6f53, 0x6f56, 0x6f58, 0x6f57, 0x4439, 0x4c67, 0x6f59,\n  0x412e, 0x6f5a, 0x4a44, 0x6f5b, 0x332b, 0x313c, 0x3457, 0x3456,\n  0x6f5c, 0x6f5d, 0x6f5e, 0x6f5f, 0x6f60, 0x3458, 0x3355, 0x395e,\n  0x4836, 0x6f62, 0x6f61, 0x6f63, 0x315c, 0x6f66, 0x6f65, 0x6f64,\n  0x6f67, 0x6f6a, 0x3047, 0x6f68, 0x6f6c, 0x6f6b, 0x6f6e, 0x6f6d,\n  0x6f6f, 0x462e, 0x6f70, 0x6f71, 0x6f73, 0x6f72, 0x496c, 0x6f74,\n  0x6f75, 0x3a65, 0x6f76, 0x6f77, 0x4b49, 0x414b, 0x3024, 0x424b,\n  0x6f78, 0x496d, 0x6f7b, 0x6f79, 0x395f, 0x6f7a, 0x3842, 0x4a45,\n  0x6f7d, 0x7021, 0x6f7e, 0x7022, 0x3121, 0x3f58, 0x3d7c, 0x3459,\n  0x7023, 0x4766, 0x7025, 0x3122, 0x7024, 0x4444, 0x4e4d, 0x462b,\n  0x6f7c, 0x4e26, 0x3831, 0x4d5b, 0x3679, 0x4e34, 0x3728, 0x4262,\n  0x6721, 0x7026, 0x332c, 0x3f6f, 0x3356, 0x7028, 0x7029, 0x7027,\n  0x3764, 0x3a5d, 0x3e63, 0x3123, 0x4e59, 0x702b, 0x6e2e, 0x702a,\n  0x702e, 0x702c, 0x702d, 0x702f, 0x7030, 0x4e6c, 0x7031, 0x7032,\n  0x4049, 0x483b, 0x3f7d, 0x3467, 0x4d3a, 0x326d, 0x3d38, 0x385b,\n  0x7035, 0x7034, 0x3b73, 0x7036, 0x7033, 0x3b28, 0x703a, 0x6a2d,\n  0x5256, 0x3f77, 0x7038, 0x4e25, 0x4671, 0x312b, 0x4063, 0x3c36,\n  0x4a37, 0x3140, 0x4e6d, 0x4d6b, 0x703b, 0x4545, 0x3c7b, 0x703c,\n  0x703d, 0x3f4c, 0x703e, 0x4e6e, 0x7039, 0x7040, 0x7042, 0x7041,\n  0x703f, 0x7043, 0x7044, 0x417a, 0x3262, 0x7045, 0x4c38, 0x7046,\n  0x7047, 0x4f2a, 0x5b31, 0x7048, 0x7049, 0x704a, 0x704e, 0x704b,\n  0x704c, 0x704d, 0x704f, 0x4044, 0x4c77, 0x4045, 0x7050, 0x4873,\n  0x7051, 0x7353, 0x4c4c, 0x7052, 0x7053, 0x7054, 0x3357, 0x7056,\n  0x3f59, 0x7057, 0x3724, 0x7058, 0x705c, 0x705a, 0x705b, 0x3373,\n  0x7059, 0x705d, 0x705e, 0x3048, 0x705f, 0x7060, 0x3e64, 0x7061,\n  0x3547, 0x7064, 0x7063, 0x7062, 0x6b71, 0x4a5c, 0x7065, 0x7066,\n  0x7067, 0x7068, 0x7069, 0x706a, 0x345a, 0x706b, 0x706c, 0x4723,\n  0x706e, 0x323b, 0x7071, 0x7070, 0x3124, 0x3641, 0x4a47, 0x443a,\n  0x3a22, 0x3960, 0x3d67, 0x3f5c, 0x7073, 0x7072, 0x4d42, 0x3468,\n  0x4852, 0x465c, 0x3f7c, 0x4e4e, 0x375b, 0x7076, 0x7075, 0x4b4b,\n  0x462c, 0x3150, 0x7077, 0x7074, 0x4951, 0x4d6a, 0x7078, 0x7079,\n  0x707b, 0x426a, 0x335b, 0x335c, 0x707a, 0x3469, 0x3832, 0x346a,\n  0x453f, 0x4e60, 0x385c, 0x707c, 0x707d, 0x707e, 0x7121, 0x7123,\n  0x7122, 0x4977, 0x7124, 0x7125, 0x7126, 0x7127, 0x7129, 0x7128,\n  0x712a, 0x4874, 0x664c, 0x3f29, 0x3532, 0x712b, 0x712c, 0x522c,\n  0x5d3b, 0x4853, 0x307b, 0x303b, 0x3b74, 0x4b30, 0x3e7e, 0x712d,\n  0x4c5f, 0x712e, 0x4d5c, 0x3142, 0x3b41, 0x712f, 0x326e, 0x7130,\n  0x7131, 0x7133, 0x7134, 0x7136, 0x7132, 0x7135, 0x345b, 0x7137,\n  0x7138, 0x7139, 0x713a, 0x713b, 0x713d, 0x713c, 0x713f, 0x7142,\n  0x713e, 0x7140, 0x7141, 0x7143, 0x3642, 0x3c73, 0x7144, 0x7145,\n  0x3961, 0x7146, 0x333e, 0x474f, 0x7147, 0x7148, 0x435a, 0x466b,\n  0x7149, 0x477d, 0x424c, 0x3158, 0x366e, 0x366f, 0x4373, 0x714e,\n  0x3670, 0x326f, 0x714d, 0x714b, 0x714c, 0x714a, 0x7158, 0x714f,\n  0x7150, 0x7151, 0x7152, 0x7154, 0x7153, 0x3d59, 0x7155, 0x7157,\n  0x3533, 0x7156, 0x417b, 0x3833, 0x7159, 0x424d, 0x715a, 0x462d,\n  0x715b, 0x7160, 0x715e, 0x715d, 0x715f, 0x715c, 0x7162, 0x7161,\n  0x7164, 0x3643, 0x7163, 0x7165, 0x7166, 0x7168, 0x7167, 0x7169,\n  0x716b, 0x716a, 0x397c, 0x716c, 0x716d, 0x333c, 0x716e, 0x716f,\n  0x3f71, 0x7170, 0x7171, 0x7172, 0x7173, 0x3962, 0x7174, 0x7175,\n  0x7176, 0x7177, 0x7178, 0x4831, 0x717a, 0x4926, 0x717b, 0x7179,\n  0x717d, 0x717c, 0x717e, 0x7221, 0x7222, 0x7223, 0x7224, 0x7225,\n  0x7226, 0x7227, 0x7228, 0x7229, 0x722a, 0x722b, 0x722c, 0x722d,\n  0x722e, 0x5d35, 0x722f, 0x6478, 0x3534, 0x3321, 0x3a32, 0x7231,\n  0x7230, 0x4c25, 0x7233, 0x7234, 0x7232, 0x7235, 0x4b62, 0x7236,\n  0x357b, 0x4f25, 0x7237, 0x7239, 0x303e, 0x723a, 0x4a2b, 0x7238,\n  0x723b, 0x723c, 0x723d, 0x723e, 0x723f, 0x4b6e, 0x3b2d, 0x3a7a,\n  0x412f, 0x7240, 0x7243, 0x7241, 0x7244, 0x3871, 0x7242, 0x7245,\n  0x7246, 0x7247, 0x724b, 0x3b2a, 0x4264, 0x724c, 0x7249, 0x7248,\n  0x724a, 0x375f, 0x7250, 0x724f, 0x724e, 0x3033, 0x725a, 0x7256,\n  0x7257, 0x7253, 0x7259, 0x7255, 0x3362, 0x4f4c, 0x7258, 0x7254,\n  0x7252, 0x7251, 0x725c, 0x725f, 0x725e, 0x725d, 0x4949, 0x725b,\n  0x3073, 0x7260, 0x7262, 0x336f, 0x724d, 0x3137, 0x7264, 0x7263,\n  0x7261, 0x432d, 0x4b70, 0x4e5a, 0x7265, 0x7266, 0x7267, 0x7268,\n  0x7269, 0x443b, 0x726a, 0x4837, 0x726f, 0x726b, 0x726c, 0x4b31,\n  0x4c44, 0x4650, 0x7270, 0x7271, 0x463e, 0x726e, 0x726d, 0x322a,\n  0x7279, 0x7278, 0x3175, 0x7276, 0x7275, 0x7273, 0x337b, 0x7272,\n  0x3c32, 0x3229, 0x3963, 0x727c, 0x727b, 0x727a, 0x7277, 0x727d,\n  0x727e, 0x7325, 0x7324, 0x7326, 0x312d, 0x7321, 0x7322, 0x3974,\n  0x4c39, 0x7323, 0x4b32, 0x732b, 0x7327, 0x732c, 0x7329, 0x7328,\n  0x375c, 0x732d, 0x732e, 0x732f, 0x732a, 0x7274, 0x7330, 0x4461,\n  0x7334, 0x7335, 0x7333, 0x7332, 0x7338, 0x7331, 0x7336, 0x7337,\n  0x733a, 0x7339, 0x733c, 0x733d, 0x733e, 0x4f49, 0x733b, 0x426b,\n  0x3a6d, 0x733f, 0x7340, 0x7341, 0x7342, 0x7343, 0x3834, 0x7344,\n  0x7345, 0x3c2f, 0x7346, 0x7347, 0x7348, 0x7349, 0x734c, 0x734a,\n  0x4f3c, 0x734b, 0x4e6f, 0x734d, 0x4e5b, 0x734e, 0x477e, 0x734f,\n  0x7351, 0x7352, 0x7350, 0x396d, 0x4c4d, 0x4b63, 0x5677, 0x5d60,\n  0x4b7b, 0x322b, 0x7354, 0x3550, 0x7355, 0x7356, 0x7357, 0x3975,\n  0x7358, 0x6054, 0x4c5b, 0x4263, 0x7359, 0x735b, 0x735a, 0x735c,\n  0x735d, 0x735e, 0x735f, 0x7360, 0x7361, 0x7362, 0x7363, 0x7364,\n  0x7365, 0x7366, 0x7367, 0x7368, 0x4524, 0x385d, 0x736a, 0x414d,\n  0x736b, 0x736c, 0x4921, 0x736d, 0x736e, 0x6337, 0x6c5a, 0x706d,\n  0x736f, 0x7370, 0x7372, 0x7373, 0x7374, 0x4e70, 0x7371, 0x7375,\n  0x7376, 0x7378, 0x7377, 0x737a, 0x737b, 0x7379, 0x4e36, 0x737c,\n  0x737d, 0x6354, 0x737e, 0x212a, 0x2174, 0x2170, 0x2173, 0x2175,\n  0x214a, 0x214b, 0x2176, 0x215c, 0x2124, 0x2125, 0x213f, 0x2330,\n  0x2331, 0x2332, 0x2333, 0x2334, 0x2335, 0x2336, 0x2337, 0x2338,\n  0x2339, 0x2127, 0x2128, 0x2163, 0x2161, 0x2164, 0x2129, 0x2177,\n  0x2341, 0x2342, 0x2343, 0x2344, 0x2345, 0x2346, 0x2347, 0x2348,\n  0x2349, 0x234a, 0x234b, 0x234c, 0x234d, 0x234e, 0x234f, 0x2350,\n  0x2351, 0x2352, 0x2353, 0x2354, 0x2355, 0x2356, 0x2357, 0x2358,\n  0x2359, 0x235a, 0x214e, 0x2140, 0x214f, 0x2130, 0x2132, 0x212e,\n  0x2361, 0x2362, 0x2363, 0x2364, 0x2365, 0x2366, 0x2367, 0x2368,\n  0x2369, 0x236a, 0x236b, 0x236c, 0x236d, 0x236e, 0x236f, 0x2370,\n  0x2371, 0x2372, 0x2373, 0x2374, 0x2375, 0x2376, 0x2377, 0x2378,\n  0x2379, 0x237a, 0x2150, 0x2143, 0x2151, 0x2131, 0x216f,\n};\n\nstatic const Summary16 jisx0208_uni2indx_page00[16] = {\n  /* 0x0000 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x118c }, {    5, 0x0053 },\n  {    9, 0x0000 }, {    9, 0x0080 }, {   10, 0x0000 }, {   10, 0x0080 },\n};\nstatic const Summary16 jisx0208_uni2indx_page03[22] = {\n  /* 0x0300 */\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 }, {   11, 0x0000 },\n  {   11, 0x0000 }, {   11, 0xfffe }, {   26, 0x03fb }, {   35, 0xfffe },\n  {   50, 0x03fb }, {   59, 0x0000 }, {   59, 0x0000 }, {   59, 0x0000 },\n  /* 0x0400 */\n  {   59, 0x0002 }, {   60, 0xffff }, {   76, 0xffff }, {   92, 0xffff },\n  {  108, 0xffff }, {  124, 0x0002 },\n};\nstatic const Summary16 jisx0208_uni2indx_page20[50] = {\n  /* 0x2000 */\n  {  125, 0x0000 }, {  125, 0x3361 }, {  132, 0x0063 }, {  136, 0x080d },\n  {  140, 0x0000 }, {  140, 0x0000 }, {  140, 0x0000 }, {  140, 0x0000 },\n  {  140, 0x0000 }, {  140, 0x0000 }, {  140, 0x0000 }, {  140, 0x0000 },\n  {  140, 0x0000 }, {  140, 0x0000 }, {  140, 0x0000 }, {  140, 0x0000 },\n  /* 0x2100 */\n  {  140, 0x0008 }, {  141, 0x0000 }, {  141, 0x0800 }, {  142, 0x0000 },\n  {  142, 0x0000 }, {  142, 0x0000 }, {  142, 0x0000 }, {  142, 0x0000 },\n  {  142, 0x0000 }, {  142, 0x000f }, {  146, 0x0000 }, {  146, 0x0000 },\n  {  146, 0x0000 }, {  146, 0x0014 }, {  148, 0x0000 }, {  148, 0x0000 },\n  /* 0x2200 */\n  {  148, 0x098d }, {  154, 0x6404 }, {  158, 0x1f81 }, {  165, 0x2030 },\n  {  168, 0x0000 }, {  168, 0x0004 }, {  169, 0x0cc3 }, {  175, 0x0000 },\n  {  175, 0x00cc }, {  179, 0x0000 }, {  179, 0x0020 }, {  180, 0x0000 },\n  {  180, 0x0000 }, {  180, 0x0000 }, {  180, 0x0000 }, {  180, 0x0000 },\n  /* 0x2300 */\n  {  180, 0x0000 }, {  180, 0x0004 },\n};\nstatic const Summary16 jisx0208_uni2indx_page25[23] = {\n  /* 0x2500 */\n  {  181, 0x900f }, {  187, 0x3999 }, {  195, 0x9939 }, {  203, 0x9999 },\n  {  211, 0x0804 }, {  213, 0x0000 }, {  213, 0x0000 }, {  213, 0x0000 },\n  {  213, 0x0000 }, {  213, 0x0000 }, {  213, 0x0003 }, {  215, 0x300c },\n  {  219, 0xc8c0 }, {  224, 0x0000 }, {  224, 0x8000 }, {  225, 0x0000 },\n  /* 0x2600 */\n  {  225, 0x0060 }, {  227, 0x0000 }, {  227, 0x0000 }, {  227, 0x0000 },\n  {  227, 0x0005 }, {  229, 0x0000 }, {  229, 0xa400 },\n};\nstatic const Summary16 jisx0208_uni2indx_page30[16] = {\n  /* 0x3000 */\n  {  232, 0xffef }, {  247, 0x103f }, {  254, 0x0000 }, {  254, 0x0000 },\n  {  254, 0xfffe }, {  269, 0xffff }, {  285, 0xffff }, {  301, 0xffff },\n  {  317, 0xffff }, {  333, 0x780f }, {  341, 0xfffe }, {  356, 0xffff },\n  {  372, 0xffff }, {  388, 0xffff }, {  404, 0xffff }, {  420, 0x787f },\n};\nstatic const Summary16 jisx0208_uni2indx_page4e[1307] = {\n  /* 0x4e00 */\n  {  431, 0x6f8b }, {  441, 0x43f3 }, {  450, 0x2442 }, {  454, 0x9b46 },\n  {  462, 0xe82c }, {  469, 0xe3e0 }, {  477, 0x0004 }, {  478, 0x400a },\n  {  481, 0x5f65 }, {  491, 0xdb36 }, {  501, 0x7977 }, {  512, 0x0449 },\n  {  516, 0xecd7 }, {  527, 0xe3f0 }, {  536, 0x6038 }, {  541, 0x08c5 },\n  /* 0x4f00 */\n  {  546, 0xe602 }, {  552, 0x3403 }, {  557, 0x8000 }, {  558, 0x3551 },\n  {  565, 0xe0c8 }, {  571, 0x7eab }, {  582, 0x8200 }, {  584, 0x9869 },\n  {  591, 0xa948 }, {  597, 0x2942 }, {  602, 0xe803 }, {  608, 0x8060 },\n  {  611, 0x441c }, {  616, 0xad93 }, {  625, 0xc03a }, {  631, 0x4568 },\n  /* 0x5000 */\n  {  637, 0xaa60 }, {  643, 0x8656 }, {  650, 0x3f7a }, {  661, 0x0240 },\n  {  663, 0x8388 }, {  668, 0x1461 }, {  673, 0x1020 }, {  675, 0x2174 },\n  {  681, 0x2021 }, {  684, 0x0702 }, {  688, 0x3000 }, {  690, 0x40bc },\n  {  696, 0xa624 }, {  702, 0x4462 }, {  707, 0x60a8 }, {  712, 0x0a20 },\n  /* 0x5100 */\n  {  715, 0x0217 }, {  720, 0x8574 }, {  727, 0x0402 }, {  729, 0x9c84 },\n  {  735, 0x7bfb }, {  748, 0x1415 }, {  753, 0x7f24 }, {  762, 0x11e2 },\n  {  768, 0xb665 }, {  777, 0x02ef }, {  785, 0x1f75 }, {  795, 0x20ff },\n  {  804, 0x3a70 }, {  811, 0x3840 }, {  815, 0x26c3 }, {  822, 0x6763 },\n  /* 0x5200 */\n  {  831, 0x4dd9 }, {  840, 0x2092 }, {  844, 0x46b0 }, {  850, 0x0fc9 },\n  {  858, 0xbc98 }, {  866, 0x4850 }, {  870, 0x8638 }, {  876, 0xa03f },\n  {  884, 0x2388 }, {  889, 0x8816 }, {  894, 0x3e09 }, {  901, 0x5232 },\n  {  907, 0x22aa }, {  913, 0xe3a4 }, {  921, 0x00dd }, {  927, 0xc72c },\n  /* 0x5300 */\n  {  935, 0xa166 }, {  942, 0x26e1 }, {  949, 0x840b }, {  954, 0x8f0a },\n  {  961, 0x27eb }, {  971, 0x559e }, {  980, 0xc241 }, {  985, 0x89bb },\n  {  994, 0x0014 }, {  996, 0x8540 }, { 1000, 0x6361 }, { 1007, 0x0849 },\n  { 1011, 0x7f0c }, { 1020, 0x8ad0 }, { 1026, 0xff3e }, { 1039, 0x05cf },\n  /* 0x5400 */\n  { 1047, 0xff1a }, { 1058, 0xa803 }, { 1063, 0x7a41 }, { 1070, 0x7b40 },\n  { 1077, 0x4745 }, { 1084, 0x8002 }, { 1086, 0x0500 }, { 1088, 0x38eb },\n  { 1097, 0xd851 }, { 1104, 0x0005 }, { 1106, 0x9934 }, { 1113, 0x710c },\n  { 1119, 0x0397 }, { 1126, 0x0100 }, { 1127, 0x6366 }, { 1135, 0x2404 },\n  /* 0x5500 */\n  { 1138, 0x80d0 }, { 1142, 0x0051 }, { 1145, 0xc000 }, { 1147, 0x430a },\n  { 1152, 0x9071 }, { 1158, 0x30c8 }, { 1163, 0x0008 }, { 1164, 0x5800 },\n  { 1167, 0x0e99 }, { 1174, 0xf700 }, { 1181, 0x5f80 }, { 1188, 0x0041 },\n  { 1190, 0x00b0 }, { 1193, 0x9410 }, { 1197, 0x0018 }, { 1199, 0x6280 },\n  /* 0x5600 */\n  { 1203, 0x0240 }, { 1205, 0x09d0 }, { 1210, 0x8200 }, { 1212, 0x0156 },\n  { 1217, 0x5004 }, { 1220, 0x0801 }, { 1222, 0x1d10 }, { 1227, 0x0510 },\n  { 1230, 0x84c1 }, { 1235, 0x0010 }, { 1236, 0x4025 }, { 1240, 0x1050 },\n  { 1243, 0x410f }, { 1249, 0x4d8a }, { 1256, 0x4009 }, { 1259, 0xa60d },\n  /* 0x5700 */\n  { 1266, 0xab19 }, { 1274, 0x914c }, { 1280, 0x21c0 }, { 1284, 0x0981 },\n  { 1288, 0xc485 }, { 1294, 0x0003 }, { 1296, 0x0652 }, { 1301, 0x8000 },\n  { 1302, 0x0b04 }, { 1306, 0x0008 }, { 1307, 0x041d }, { 1312, 0x0009 },\n  { 1314, 0x4849 }, { 1319, 0x905c }, { 1325, 0x0009 }, { 1327, 0x1690 },\n  /* 0x5800 */\n  { 1332, 0x0c65 }, { 1338, 0x2220 }, { 1341, 0x8412 }, { 1345, 0x2433 },\n  { 1351, 0x0c03 }, { 1355, 0x4796 }, { 1363, 0x0a04 }, { 1366, 0x4225 },\n  { 1371, 0x0028 }, { 1373, 0x9088 }, { 1377, 0x4900 }, { 1380, 0x4f08 },\n  { 1386, 0x14a2 }, { 1391, 0xd3aa }, { 1400, 0xd830 }, { 1406, 0x3e87 },\n  /* 0x5900 */\n  { 1415, 0x8604 }, { 1419, 0x1f61 }, { 1427, 0x7ea4 }, { 1436, 0x4186 },\n  { 1441, 0xc390 }, { 1447, 0x05b3 }, { 1454, 0x57a5 }, { 1463, 0x2118 },\n  { 1467, 0x241e }, { 1473, 0x2a48 }, { 1478, 0x1128 }, { 1482, 0x4a04 },\n  { 1486, 0x0a40 }, { 1489, 0x161b }, { 1496, 0x0d60 }, { 1501, 0x8840 },\n  /* 0x5a00 */\n  { 1504, 0x020a }, { 1507, 0x9502 }, { 1512, 0x8221 }, { 1516, 0x1060 },\n  { 1519, 0x0243 }, { 1523, 0x0400 }, { 1524, 0x1444 }, { 1528, 0x8000 },\n  { 1529, 0x0000 }, { 1529, 0x0c04 }, { 1532, 0x0000 }, { 1532, 0x7000 },\n  { 1535, 0x1a06 }, { 1540, 0x00c1 }, { 1543, 0x024a }, { 1547, 0x0c00 },\n  /* 0x5b00 */\n  { 1549, 0x1a00 }, { 1552, 0x0040 }, { 1553, 0x1404 }, { 1556, 0x4045 },\n  { 1560, 0x0029 }, { 1563, 0xbdb3 }, { 1574, 0x0a78 }, { 1580, 0x052b },\n  { 1586, 0xbba9 }, { 1596, 0xbfa0 }, { 1605, 0x407c }, { 1611, 0x8379 },\n  { 1619, 0x12fc }, { 1627, 0xe81d }, { 1635, 0x4bf6 }, { 1645, 0xc569 },\n  /* 0x5c00 */\n  { 1653, 0xeff6 }, { 1666, 0x044a }, { 1670, 0x2115 }, { 1675, 0xff02 },\n  { 1684, 0xed63 }, { 1694, 0x402b }, { 1699, 0xd033 }, { 1706, 0x0242 },\n  { 1709, 0x1000 }, { 1710, 0x0013 }, { 1713, 0x1b02 }, { 1718, 0x59ca },\n  { 1726, 0x00a0 }, { 1728, 0x0200 }, { 1729, 0xa703 }, { 1736, 0x2c41 },\n  /* 0x5d00 */\n  { 1741, 0x4880 }, { 1744, 0x8ff2 }, { 1754, 0x0204 }, { 1756, 0x0000 },\n  { 1756, 0x5800 }, { 1759, 0x1005 }, { 1762, 0x9200 }, { 1765, 0x0048 },\n  { 1767, 0x1894 }, { 1772, 0x2001 }, { 1774, 0x5004 }, { 1777, 0x3480 },\n  { 1781, 0x3200 }, { 1784, 0x684c }, { 1790, 0x49ea }, { 1798, 0x68be },\n  /* 0x5e00 */\n  { 1807, 0x184c }, { 1812, 0x2e42 }, { 1818, 0xa820 }, { 1822, 0x21c9 },\n  { 1828, 0x50b9 }, { 1835, 0x80b0 }, { 1839, 0x001e }, { 1843, 0xff7c },\n  { 1856, 0x849a }, { 1862, 0x14e0 }, { 1867, 0x28c1 }, { 1872, 0x01e0 },\n  { 1876, 0x870e }, { 1883, 0xac49 }, { 1890, 0x130f }, { 1897, 0xdddb },\n  /* 0x5f00 */\n  { 1909, 0xbe1a }, { 1918, 0x89fb }, { 1928, 0xa2e0 }, { 1934, 0x51a2 },\n  { 1940, 0x5502 }, { 1945, 0x32ca }, { 1952, 0x3e46 }, { 1960, 0x928b },\n  { 1967, 0x1dbf }, { 1978, 0x438f }, { 1986, 0x6703 }, { 1993, 0x3218 },\n  { 1998, 0x3028 }, { 2002, 0x33c0 }, { 2008, 0x0811 }, { 2011, 0xa923 },\n  /* 0x6000 */\n  { 2018, 0xc000 }, { 2020, 0x3a65 }, { 2028, 0x8fe3 }, { 2038, 0x0402 },\n  { 2040, 0x2c4e }, { 2047, 0x8625 }, { 2053, 0xbf3d }, { 2065, 0x00a1 },\n  { 2068, 0x3a1a }, { 2075, 0x8cd4 }, { 2082, 0x06c9 }, { 2088, 0x317c },\n  { 2096, 0x00e0 }, { 2099, 0x950a }, { 2105, 0x018b }, { 2110, 0x0edb },\n  /* 0x6100 */\n  { 2119, 0xe34b }, { 2128, 0x8c20 }, { 2132, 0x1182 }, { 2136, 0xf010 },\n  { 2141, 0x7d94 }, { 2150, 0xa728 }, { 2157, 0xc9ac }, { 2165, 0x40fb },\n  { 2173, 0x4484 }, { 2177, 0x0653 }, { 2183, 0x5a90 }, { 2189, 0x4444 },\n  { 2193, 0x3fc8 }, { 2202, 0x0001 }, { 2203, 0x0048 }, { 2205, 0xf5d4 },\n  /* 0x6200 */\n  { 2215, 0x7701 }, { 2222, 0xec57 }, { 2232, 0xc442 }, { 2237, 0x891d },\n  { 2244, 0x6b83 }, { 2252, 0x4928 }, { 2257, 0x4109 }, { 2261, 0xd242 },\n  { 2267, 0x061d }, { 2273, 0x59fe }, { 2284, 0x1800 }, { 2286, 0x3a22 },\n  { 2292, 0xb7e4 }, { 2302, 0x3b9f }, { 2313, 0xf003 }, { 2319, 0xc0ea },\n  /* 0x6300 */\n  { 2326, 0x1386 }, { 2332, 0x8202 }, { 2335, 0x8980 }, { 2339, 0xe400 },\n  { 2343, 0xb200 }, { 2347, 0x10a1 }, { 2351, 0x4b80 }, { 2356, 0x0cc4 },\n  { 2361, 0xd309 }, { 2368, 0x8944 }, { 2373, 0x1faf }, { 2384, 0x4834 },\n  { 2389, 0x8259 }, { 2395, 0x0c45 }, { 2400, 0x420a }, { 2404, 0x0450 },\n  /* 0x6400 */\n  { 2407, 0xa040 }, { 2410, 0x10c8 }, { 2414, 0x3140 }, { 2418, 0x4450 },\n  { 2422, 0x4004 }, { 2424, 0x0100 }, { 2425, 0x8280 }, { 2428, 0x0540 },\n  { 2431, 0x0108 }, { 2433, 0x442c }, { 2438, 0x6a30 }, { 2444, 0x1a05 },\n  { 2449, 0x20a6 }, { 2454, 0x0514 }, { 2458, 0x90cf }, { 2466, 0x6456 },\n  /* 0x6500 */\n  { 2473, 0x0021 }, { 2475, 0x3100 }, { 2478, 0x9c18 }, { 2484, 0xcbf0 },\n  { 2493, 0xa120 }, { 2497, 0x63e2 }, { 2505, 0x104c }, { 2509, 0x01b5 },\n  { 2515, 0x538c }, { 2522, 0x9a83 }, { 2529, 0xb8b2 }, { 2537, 0x3281 },\n  { 2542, 0x987a }, { 2550, 0x0a84 }, { 2554, 0x33e7 }, { 2564, 0x0c02 },\n  /* 0x6600 */\n  { 2567, 0xd4cc }, { 2575, 0x9018 }, { 2579, 0xa1a1 }, { 2585, 0x9070 },\n  { 2590, 0x8a1e }, { 2597, 0xe004 }, { 2601, 0xc3d4 }, { 2609, 0x0451 },\n  { 2613, 0x439a }, { 2620, 0x21c2 }, { 2625, 0x4844 }, { 2629, 0x5310 },\n  { 2634, 0x0292 }, { 2638, 0x3640 }, { 2643, 0x0241 }, { 2646, 0xf3bd },\n  /* 0x6700 */\n  { 2658, 0xab09 }, { 2665, 0xe8f0 }, { 2673, 0x7dc0 }, { 2681, 0xa5d2 },\n  { 2689, 0xc242 }, { 2694, 0xd24b }, { 2702, 0xa43f }, { 2711, 0xd0af },\n  { 2720, 0x1aa0 }, { 2725, 0x34a1 }, { 2731, 0x8247 }, { 2737, 0x03d8 },\n  { 2743, 0xc452 }, { 2749, 0x651b }, { 2757, 0xd294 }, { 2764, 0xc83a },\n  /* 0x6800 */\n  { 2771, 0x001c }, { 2774, 0x40c8 }, { 2778, 0x0e06 }, { 2783, 0x3314 },\n  { 2789, 0x614f }, { 2797, 0xb21b }, { 2805, 0x0088 }, { 2807, 0xc0d0 },\n  { 2812, 0xa02a }, { 2817, 0xa898 }, { 2823, 0xa1c5 }, { 2830, 0x166b },\n  { 2838, 0x2e50 }, { 2844, 0x85b4 }, { 2851, 0xc08b }, { 2857, 0x0604 },\n  /* 0x6900 */\n  { 2860, 0xf933 }, { 2870, 0x1e04 }, { 2875, 0x056e }, { 2882, 0xa251 },\n  { 2888, 0x0400 }, { 2889, 0x7638 }, { 2897, 0xec07 }, { 2905, 0x73b8 },\n  { 2914, 0x4406 }, { 2918, 0x1832 }, { 2923, 0x4081 }, { 2926, 0xc816 },\n  { 2932, 0x7c8a }, { 2940, 0x6309 }, { 2946, 0x2980 }, { 2950, 0xaa04 },\n  /* 0x6a00 */\n  { 2955, 0x1c24 }, { 2960, 0xca9c }, { 2968, 0x4e0e }, { 2975, 0x2760 },\n  { 2981, 0x0990 }, { 2985, 0x8300 }, { 2988, 0x0046 }, { 2991, 0x8104 },\n  { 2994, 0x6011 }, { 2998, 0x1081 }, { 3001, 0x540d }, { 3007, 0x0908 },\n  { 3010, 0x000e }, { 3013, 0xcc0a }, { 3019, 0x0500 }, { 3021, 0x0c00 },\n  /* 0x6b00 */\n  { 3023, 0x0430 }, { 3026, 0xa044 }, { 3030, 0x008b }, { 3034, 0x6784 },\n  { 3041, 0x5288 }, { 3046, 0x8a19 }, { 3052, 0x865e }, { 3060, 0x8b18 },\n  { 3066, 0x2e59 }, { 3074, 0x4160 }, { 3078, 0x8c10 }, { 3082, 0x9cbe },\n  { 3092, 0x6861 }, { 3098, 0x891c }, { 3104, 0x9800 }, { 3107, 0x0008 },\n  /* 0x6c00 */\n  { 3108, 0x8100 }, { 3110, 0x089a }, { 3115, 0x0018 }, { 3117, 0x4190 },\n  { 3121, 0x4007 }, { 3125, 0xe4a1 }, { 3132, 0x0505 }, { 3136, 0x640d },\n  { 3142, 0x310e }, { 3148, 0x0e4d }, { 3155, 0x4806 }, { 3159, 0xff0a },\n  { 3169, 0x1632 }, { 3175, 0x2aa8 }, { 3181, 0x852e }, { 3188, 0x000b },\n  /* 0x6d00 */\n  { 3191, 0x1800 }, { 3193, 0xca84 }, { 3199, 0x0e20 }, { 3203, 0x696c },\n  { 3211, 0x0032 }, { 3214, 0x1600 }, { 3217, 0x5658 }, { 3224, 0x0390 },\n  { 3228, 0x5120 }, { 3232, 0x1a28 }, { 3237, 0x8000 }, { 3238, 0x1124 },\n  { 3242, 0x18e1 }, { 3248, 0x4326 }, { 3254, 0x5d52 }, { 3262, 0x0eaa },\n  /* 0x6e00 */\n  { 3269, 0x0fa0 }, { 3275, 0xae28 }, { 3282, 0xfa7b }, { 3294, 0x4500 },\n  { 3297, 0x6408 }, { 3301, 0x8940 }, { 3305, 0xc880 }, { 3309, 0xc044 },\n  { 3313, 0x9005 }, { 3317, 0xb141 }, { 3323, 0x8424 }, { 3327, 0x24c4 },\n  { 3332, 0x1a34 }, { 3338, 0x603a }, { 3344, 0x9000 }, { 3346, 0xc194 },\n  /* 0x6f00 */\n  { 3352, 0x8246 }, { 3357, 0x003a }, { 3361, 0x180d }, { 3366, 0xc106 },\n  { 3371, 0x0022 }, { 3373, 0x9910 }, { 3378, 0xe050 }, { 3383, 0x1511 },\n  { 3388, 0x4057 }, { 3394, 0x0082 }, { 3396, 0x041a }, { 3400, 0x020a },\n  { 3403, 0x004f }, { 3408, 0x8930 }, { 3413, 0xd813 }, { 3420, 0x444a },\n  /* 0x7000 */\n  { 3425, 0x8a02 }, { 3429, 0xed22 }, { 3437, 0x10c0 }, { 3440, 0x4005 },\n  { 3443, 0x1000 }, { 3444, 0x0102 }, { 3446, 0x8808 }, { 3449, 0x3101 },\n  { 3453, 0x4600 }, { 3456, 0x0204 }, { 3458, 0xf000 }, { 3462, 0x0708 },\n  { 3466, 0x8900 }, { 3469, 0xa200 }, { 3472, 0x0000 }, { 3472, 0x2202 },\n  /* 0x7100 */\n  { 3475, 0x0200 }, { 3476, 0x1610 }, { 3480, 0x0042 }, { 3482, 0x1040 },\n  { 3484, 0x5200 }, { 3487, 0x0260 }, { 3490, 0x52f4 }, { 3498, 0x2000 },\n  { 3499, 0x8510 }, { 3503, 0x8230 }, { 3507, 0x1100 }, { 3509, 0x4202 },\n  { 3512, 0x4308 }, { 3516, 0x80b5 }, { 3522, 0x70e1 }, { 3529, 0x9a20 },\n  /* 0x7200 */\n  { 3534, 0x2040 }, { 3536, 0x0801 }, { 3538, 0x3500 }, { 3542, 0xfc65 },\n  { 3552, 0x19c1 }, { 3558, 0xab04 }, { 3564, 0x0286 }, { 3568, 0x6214 },\n  { 3573, 0x0087 }, { 3577, 0x0044 }, { 3579, 0x9085 }, { 3584, 0x0244 },\n  { 3587, 0x405c }, { 3592, 0x0a85 }, { 3597, 0x3207 }, { 3603, 0x3380 },\n  /* 0x7300 */\n  { 3608, 0x0400 }, { 3609, 0xb8c0 }, { 3615, 0xce20 }, { 3621, 0xc0d0 },\n  { 3626, 0xc030 }, { 3630, 0x0080 }, { 3631, 0x0508 }, { 3634, 0x0d25 },\n  { 3640, 0x0a90 }, { 3644, 0x0040 }, { 3645, 0x0200 }, { 3646, 0x080c },\n  { 3649, 0x6505 }, { 3655, 0x4000 }, { 3656, 0x6421 }, { 3661, 0x4102 },\n  /* 0x7400 */\n  { 3664, 0x0268 }, { 3668, 0x0000 }, { 3668, 0x0024 }, { 3670, 0x847c },\n  { 3677, 0x0002 }, { 3678, 0xde20 }, { 3685, 0x8619 }, { 3691, 0x4049 },\n  { 3695, 0x0808 }, { 3697, 0x4000 }, { 3698, 0x0084 }, { 3700, 0x2001 },\n  { 3702, 0x8400 }, { 3704, 0x1010 }, { 3706, 0x42cd }, { 3713, 0x01c7 },\n  /* 0x7500 */\n  { 3719, 0x7038 }, { 3725, 0xd52a }, { 3733, 0x1968 }, { 3739, 0x1d8f },\n  { 3748, 0xbe50 }, { 3756, 0x3e12 }, { 3763, 0x2ef5 }, { 3773, 0x81d9 },\n  { 3780, 0xcec4 }, { 3788, 0x2412 }, { 3792, 0x0828 }, { 3795, 0x732e },\n  { 3804, 0x24ac }, { 3810, 0x4b34 }, { 3817, 0x020c }, { 3820, 0xd41d },\n  /* 0x7600 */\n  { 3828, 0x2a02 }, { 3832, 0x8000 }, { 3833, 0x0097 }, { 3838, 0x0811 },\n  { 3841, 0x11c4 }, { 3846, 0x1144 }, { 3850, 0x1786 }, { 3857, 0x7d45 },\n  { 3866, 0x49d9 }, { 3874, 0x0649 }, { 3879, 0x4000 }, { 3880, 0x8791 },\n  { 3887, 0x254c }, { 3893, 0xd8c4 }, { 3900, 0x44ba }, { 3907, 0x4914 },\n  /* 0x7700 */\n  { 3912, 0x1b92 }, { 3919, 0xc800 }, { 3922, 0x0271 }, { 3927, 0x1580 },\n  { 3931, 0x0081 }, { 3933, 0x0c00 }, { 3935, 0x096a }, { 3941, 0xc200 },\n  { 3944, 0x4800 }, { 3946, 0x4002 }, { 3948, 0x3021 }, { 3952, 0xba49 },\n  { 3960, 0x2080 }, { 3962, 0x1c80 }, { 3966, 0xe2ac }, { 3974, 0x1008 },\n  /* 0x7800 */\n  { 3976, 0x1004 }, { 3978, 0x0034 }, { 3981, 0x00e1 }, { 3985, 0x8414 },\n  { 3989, 0x0020 }, { 3990, 0x2000 }, { 3991, 0x9800 }, { 3994, 0x1014 },\n  { 3997, 0x70c2 }, { 4003, 0x04aa }, { 4008, 0x8688 }, { 4013, 0x5420 },\n  { 4017, 0x0c62 }, { 4022, 0x0413 }, { 4026, 0x9180 }, { 4030, 0x2010 },\n  /* 0x7900 */\n  { 4032, 0x4082 }, { 4035, 0x0206 }, { 4038, 0x1c40 }, { 4042, 0x5400 },\n  { 4045, 0x0383 }, { 4050, 0xe4e9 }, { 4059, 0x2125 }, { 4064, 0x8480 },\n  { 4067, 0xe433 }, { 4075, 0x2000 }, { 4076, 0x44c0 }, { 4080, 0xe609 },\n  { 4087, 0x0a03 }, { 4091, 0x8126 }, { 4096, 0x12da }, { 4103, 0x0801 },\n  /* 0x7a00 */\n  { 4105, 0x6901 }, { 4110, 0x9790 }, { 4117, 0x4001 }, { 4119, 0xf886 },\n  { 4127, 0xe24d }, { 4135, 0x0081 }, { 4137, 0x0a0e }, { 4142, 0xa651 },\n  { 4149, 0x011a }, { 4153, 0x81ec }, { 4160, 0xc600 }, { 4164, 0x8441 },\n  { 4168, 0xadb8 }, { 4177, 0xb62c }, { 4185, 0xa46f }, { 4194, 0x8741 },\n  /* 0x7b00 */\n  { 4200, 0x8d54 }, { 4207, 0x4b02 }, { 4212, 0x1161 }, { 4217, 0x0268 },\n  { 4221, 0xbb60 }, { 4229, 0x2057 }, { 4235, 0x50a0 }, { 4239, 0x0433 },\n  { 4244, 0xa8c0 }, { 4249, 0xb7b4 }, { 4259, 0x2402 }, { 4262, 0x0112 },\n  { 4265, 0x9ad3 }, { 4274, 0x2000 }, { 4275, 0x2271 }, { 4281, 0x00c8 },\n  /* 0x7c00 */\n  { 4284, 0x2081 }, { 4287, 0x809e }, { 4293, 0x0c8a }, { 4298, 0xe180 },\n  { 4303, 0xb009 }, { 4308, 0x8151 }, { 4313, 0x1031 }, { 4317, 0x4028 },\n  { 4320, 0x2a0e }, { 4326, 0x89a5 }, { 4333, 0x69b6 }, { 4342, 0x620e },\n  { 4348, 0x4425 }, { 4353, 0xd144 }, { 4359, 0x8085 }, { 4363, 0x4d54 },\n  /* 0x7d00 */\n  { 4370, 0x2c75 }, { 4378, 0x1fb1 }, { 4387, 0xd807 }, { 4394, 0x862d },\n  { 4401, 0xd87c }, { 4410, 0x4841 }, { 4414, 0x414e }, { 4420, 0x226e },\n  { 4427, 0x8200 }, { 4429, 0x9e08 }, { 4435, 0xf80c }, { 4442, 0xed37 },\n  { 4453, 0x8c80 }, { 4457, 0x7526 }, { 4465, 0x9313 }, { 4472, 0x0814 },\n  /* 0x7e00 */\n  { 4475, 0x0e32 }, { 4481, 0xc804 }, { 4485, 0x484e }, { 4491, 0x6ea6 },\n  { 4500, 0x2c4a }, { 4506, 0x6670 }, { 4513, 0x26c0 }, { 4518, 0xba01 },\n  { 4524, 0xd30c }, { 4531, 0x185d }, { 4538, 0x0000 }, { 4538, 0x0000 },\n  { 4538, 0x0000 }, { 4538, 0x0000 }, { 4538, 0x0000 }, { 4538, 0x0000 },\n  /* 0x7f00 */\n  { 4538, 0x0000 }, { 4538, 0x0000 }, { 4538, 0x0000 }, { 4538, 0x0540 },\n  { 4541, 0x7020 }, { 4545, 0x8133 }, { 4551, 0x4f81 }, { 4558, 0x03a5 },\n  { 4564, 0x55ec }, { 4573, 0x6410 }, { 4577, 0xc318 }, { 4583, 0x2344 },\n  { 4588, 0x1462 }, { 4593, 0x0034 }, { 4596, 0x0a43 }, { 4601, 0x1a09 },\n  /* 0x8000 */\n  { 4606, 0x187b }, { 4614, 0x13a5 }, { 4621, 0x0102 }, { 4623, 0xa848 },\n  { 4628, 0x0440 }, { 4630, 0xc544 }, { 4636, 0x8106 }, { 4640, 0xe2dd },\n  { 4650, 0x1af0 }, { 4657, 0x2d48 }, { 4663, 0xb626 }, { 4671, 0x0416 },\n  { 4675, 0x5058 }, { 4680, 0x6e40 }, { 4686, 0x8032 }, { 4690, 0x3112 },\n  /* 0x8100 */\n  { 4695, 0x07e4 }, { 4702, 0x0c00 }, { 4704, 0x8208 }, { 4707, 0x420a },\n  { 4711, 0x4840 }, { 4714, 0x803b }, { 4720, 0x4860 }, { 4724, 0x8713 },\n  { 4731, 0x850d }, { 4737, 0x3428 }, { 4742, 0x0319 }, { 4747, 0xe529 },\n  { 4755, 0x2345 }, { 4761, 0x870a }, { 4767, 0x25a9 }, { 4774, 0x5c18 },\n  /* 0x8200 */\n  { 4780, 0x77a6 }, { 4790, 0xd9c5 }, { 4799, 0x5e00 }, { 4804, 0x03e8 },\n  { 4810, 0x0081 }, { 4812, 0xa700 }, { 4817, 0xcd54 }, { 4825, 0x41c6 },\n  { 4831, 0x2800 }, { 4833, 0xa204 }, { 4837, 0xb860 }, { 4843, 0x2b0a },\n  { 4849, 0x0020 }, { 4850, 0xda9e }, { 4860, 0x08ea }, { 4866, 0x0e1a },\n  /* 0x8300 */\n  { 4872, 0x427c }, { 4879, 0x11c0 }, { 4883, 0x8908 }, { 4887, 0x0376 },\n  { 4894, 0x8621 }, { 4899, 0x0105 }, { 4902, 0x0000 }, { 4902, 0x18a8 },\n  { 4907, 0x46a0 }, { 4912, 0xc448 }, { 4917, 0x0d05 }, { 4922, 0x2022 },\n  { 4925, 0x5422 }, { 4930, 0x9148 }, { 4935, 0x8a01 }, { 4939, 0x2897 },\n  /* 0x8400 */\n  { 4946, 0x7898 }, { 4953, 0x0008 }, { 4954, 0x1605 }, { 4959, 0x3122 },\n  { 4964, 0x4240 }, { 4967, 0x0880 }, { 4969, 0xfa4e }, { 4979, 0x06a2 },\n  { 4984, 0x0814 }, { 4987, 0x9211 }, { 4992, 0x2002 }, { 4994, 0x9b04 },\n  { 5000, 0x2e52 }, { 5007, 0x0643 }, { 5012, 0x5000 }, { 5014, 0x9010 },\n  /* 0x8500 */\n  { 5017, 0x0041 }, { 5019, 0x85ba }, { 5027, 0x3042 }, { 5031, 0x2020 },\n  { 5033, 0x4f0b }, { 5041, 0x05a0 }, { 5045, 0x2708 }, { 5050, 0x4080 },\n  { 5052, 0x0591 }, { 5057, 0x1a93 }, { 5064, 0xdf50 }, { 5073, 0x0600 },\n  { 5075, 0xa202 }, { 5079, 0x3021 }, { 5083, 0x0630 }, { 5087, 0x4e80 },\n  /* 0x8600 */\n  { 5092, 0x0cc4 }, { 5097, 0x04c8 }, { 5101, 0xa004 }, { 5104, 0x8001 },\n  { 5106, 0x6000 }, { 5108, 0xd431 }, { 5115, 0x0880 }, { 5117, 0x0a02 },\n  { 5120, 0x1c00 }, { 5123, 0x0028 }, { 5125, 0x8e18 }, { 5131, 0x0041 },\n  { 5133, 0x6ad0 }, { 5140, 0xca10 }, { 5145, 0xf210 }, { 5151, 0x4b00 },\n  /* 0x8700 */\n  { 5155, 0x274d }, { 5163, 0x1506 }, { 5168, 0x0220 }, { 5170, 0x8890 },\n  { 5174, 0x5a00 }, { 5178, 0x82a8 }, { 5183, 0x4549 }, { 5189, 0x8150 },\n  { 5193, 0x2004 }, { 5195, 0x8000 }, { 5196, 0x8804 }, { 5199, 0x2c08 },\n  { 5203, 0x08d1 }, { 5208, 0x0005 }, { 5210, 0x8001 }, { 5212, 0x4ac4 },\n  /* 0x8800 */\n  { 5218, 0xe020 }, { 5222, 0x0062 }, { 5225, 0x008e }, { 5229, 0x0a42 },\n  { 5233, 0x3055 }, { 5239, 0x6a8c }, { 5246, 0x090e }, { 5251, 0xe0a5 },\n  { 5258, 0x2906 }, { 5263, 0x42c4 }, { 5268, 0x4814 }, { 5272, 0x80b3 },\n  { 5278, 0x803e }, { 5284, 0xb330 }, { 5291, 0x0102 }, { 5293, 0x731c },\n  /* 0x8900 */\n  { 5301, 0x1494 }, { 5306, 0x600d }, { 5311, 0x0c20 }, { 5314, 0x0940 },\n  { 5317, 0x301a }, { 5322, 0xc040 }, { 5325, 0xa451 }, { 5331, 0xc094 },\n  { 5336, 0x8dca }, { 5344, 0x05c8 }, { 5349, 0x96c2 }, { 5356, 0xa40c },\n  { 5361, 0x0001 }, { 5362, 0x3404 }, { 5366, 0x00c8 }, { 5369, 0x0110 },\n  /* 0x8a00 */\n  { 5371, 0x550d }, { 5378, 0xa9c9 }, { 5386, 0x2428 }, { 5390, 0x1c5a },\n  { 5397, 0x0142 }, { 5400, 0x4837 }, { 5407, 0x7a4d }, { 5416, 0x100f },\n  { 5421, 0x32b4 }, { 5428, 0x452a }, { 5434, 0x317b }, { 5443, 0x9205 },\n  { 5448, 0xb894 }, { 5455, 0x5c44 }, { 5461, 0x68d7 }, { 5470, 0x458a },\n  /* 0x8b00 */\n  { 5476, 0x5097 }, { 5483, 0x2ed1 }, { 5491, 0x1943 }, { 5497, 0x4208 },\n  { 5500, 0xd202 }, { 5505, 0x9d40 }, { 5511, 0x9840 }, { 5515, 0x2097 },\n  { 5521, 0x5409 }, { 5526, 0x064d }, { 5532, 0x0000 }, { 5532, 0x0000 },\n  { 5532, 0x0000 }, { 5532, 0x0000 }, { 5532, 0x0000 }, { 5532, 0x0000 },\n  /* 0x8c00 */\n  { 5532, 0x0000 }, { 5532, 0x0000 }, { 5532, 0x0000 }, { 5532, 0x8480 },\n  { 5535, 0x5542 }, { 5541, 0x0421 }, { 5544, 0x1c06 }, { 5549, 0x1700 },\n  { 5553, 0x7624 }, { 5560, 0x6110 }, { 5564, 0xff87 }, { 5576, 0xb9dd },\n  { 5587, 0x659f }, { 5597, 0x5c0a }, { 5603, 0x245d }, { 5610, 0x3c00 },\n  /* 0x8d00 */\n  { 5614, 0xadb0 }, { 5622, 0x0059 }, { 5626, 0x0000 }, { 5626, 0x0000 },\n  { 5626, 0x0000 }, { 5626, 0x0000 }, { 5626, 0x28d0 }, { 5631, 0x009b },\n  { 5636, 0x0422 }, { 5639, 0x0200 }, { 5640, 0x0108 }, { 5642, 0x4408 },\n  { 5645, 0x9804 }, { 5649, 0xac40 }, { 5654, 0x8d0a }, { 5660, 0x9028 },\n  /* 0x8e00 */\n  { 5664, 0x8700 }, { 5668, 0xe001 }, { 5672, 0x0400 }, { 5673, 0x0031 },\n  { 5676, 0x1794 }, { 5683, 0x8221 }, { 5687, 0x0019 }, { 5690, 0x1054 },\n  { 5694, 0x2cb2 }, { 5701, 0x021a }, { 5705, 0x9c02 }, { 5710, 0x4003 },\n  { 5713, 0x3d60 }, { 5720, 0x8804 }, { 5723, 0x080c }, { 5726, 0x7900 },\n  /* 0x8f00 */\n  { 5731, 0x1628 }, { 5736, 0xba3c }, { 5745, 0x8640 }, { 5749, 0xcb08 },\n  { 5755, 0x7274 }, { 5763, 0x9080 }, { 5766, 0x001e }, { 5770, 0x0000 },\n  { 5770, 0x0000 }, { 5770, 0xd800 }, { 5774, 0xe188 }, { 5780, 0x9c87 },\n  { 5788, 0x4034 }, { 5792, 0x0412 }, { 5795, 0xae64 }, { 5803, 0x2791 },\n  /* 0x9000 */\n  { 5810, 0xe86b }, { 5819, 0xe6fb }, { 5831, 0x408f }, { 5837, 0x5366 },\n  { 5845, 0xeea6 }, { 5855, 0x537f }, { 5866, 0xe32b }, { 5875, 0xb5e4 },\n  { 5884, 0x869f }, { 5893, 0x0002 }, { 5894, 0x8548 }, { 5899, 0x0122 },\n  { 5902, 0x4402 }, { 5905, 0x0800 }, { 5906, 0x2116 }, { 5911, 0x20a0 },\n  /* 0x9100 */\n  { 5914, 0x0004 }, { 5915, 0x0204 }, { 5917, 0x2000 }, { 5918, 0x0005 },\n  { 5920, 0x7e00 }, { 5926, 0x0154 }, { 5930, 0x162c }, { 5936, 0x01ac },\n  { 5941, 0x2a84 }, { 5946, 0x1085 }, { 5950, 0x8c14 }, { 5955, 0x0530 },\n  { 5959, 0xfbc3 }, { 5970, 0xb943 }, { 5978, 0x00ca }, { 5982, 0x9060 },\n  /* 0x9200 */\n  { 5986, 0x6000 }, { 5988, 0x4032 }, { 5992, 0x1200 }, { 5994, 0x8090 },\n  { 5997, 0x0b30 }, { 6002, 0x4c81 }, { 6007, 0x0054 }, { 6010, 0x4002 },\n  { 6012, 0x0029 }, { 6015, 0x1d6a }, { 6023, 0x2000 }, { 6024, 0x0280 },\n  { 6026, 0x8000 }, { 6027, 0x0004 }, { 6028, 0x2610 }, { 6032, 0x150c },\n  /* 0x9300 */\n  { 6037, 0x8040 }, { 6039, 0x0701 }, { 6043, 0xd94d }, { 6052, 0x0c24 },\n  { 6056, 0x2810 }, { 6059, 0x1850 }, { 6063, 0x5001 }, { 6066, 0x5020 },\n  { 6069, 0x1000 }, { 6070, 0x04d0 }, { 6074, 0x7080 }, { 6078, 0x0201 },\n  { 6080, 0x0108 }, { 6082, 0x21c3 }, { 6088, 0x0132 }, { 6092, 0x0000 },\n  /* 0x9400 */\n  { 6092, 0x0088 }, { 6094, 0x0719 }, { 6100, 0x0802 }, { 6102, 0x0560 },\n  { 6106, 0x0012 }, { 6108, 0x4c0e }, { 6114, 0x0405 }, { 6117, 0xf0a1 },\n  { 6124, 0x0002 }, { 6125, 0x0000 }, { 6125, 0x0000 }, { 6125, 0x0000 },\n  { 6125, 0x0000 }, { 6125, 0x0000 }, { 6125, 0x0000 }, { 6125, 0x0000 },\n  /* 0x9500 */\n  { 6125, 0x0000 }, { 6125, 0x0000 }, { 6125, 0x0000 }, { 6125, 0x0000 },\n  { 6125, 0x0000 }, { 6125, 0x0000 }, { 6125, 0x0000 }, { 6125, 0x0080 },\n  { 6126, 0x8e8d }, { 6134, 0x035a }, { 6140, 0x21bd }, { 6148, 0x5a04 },\n  { 6153, 0x3488 }, { 6158, 0x1170 }, { 6163, 0x0026 }, { 6166, 0x0000 },\n  /* 0x9600 */\n  { 6166, 0x0000 }, { 6166, 0x1000 }, { 6167, 0xc502 }, { 6172, 0x8804 },\n  { 6175, 0xb815 }, { 6182, 0xf801 }, { 6188, 0x147c }, { 6195, 0x25ed },\n  { 6204, 0xed60 }, { 6212, 0x1bb0 }, { 6219, 0x0589 }, { 6224, 0x1bd7 },\n  { 6234, 0x7af3 }, { 6245, 0x1a62 }, { 6251, 0x0d0c }, { 6256, 0x0ac5 },\n  /* 0x9700 */\n  { 6262, 0xe5d1 }, { 6271, 0x524a }, { 6277, 0x0490 }, { 6280, 0x6305 },\n  { 6286, 0x0354 }, { 6291, 0x5244 }, { 6296, 0x2b57 }, { 6305, 0x1612 },\n  { 6310, 0xa872 }, { 6317, 0x1101 }, { 6320, 0x2949 }, { 6326, 0x0018 },\n  { 6328, 0x0948 }, { 6332, 0x1008 }, { 6334, 0x6000 }, { 6336, 0x886c },\n  /* 0x9800 */\n  { 6342, 0x916e }, { 6350, 0x058f }, { 6357, 0x3012 }, { 6361, 0x3990 },\n  { 6367, 0xf840 }, { 6373, 0x4930 }, { 6378, 0x8880 }, { 6381, 0x001b },\n  { 6385, 0x0000 }, { 6385, 0x0000 }, { 6385, 0x8500 }, { 6388, 0x0042 },\n  { 6390, 0x0058 }, { 6393, 0x9800 }, { 6396, 0xea04 }, { 6402, 0x7014 },\n  /* 0x9900 */\n  { 6407, 0x1628 }, { 6412, 0x611d }, { 6419, 0x5113 }, { 6425, 0x6000 },\n  { 6427, 0x1a24 }, { 6432, 0x00a7 }, { 6437, 0x0000 }, { 6437, 0x0000 },\n  { 6437, 0x0000 }, { 6437, 0x03c0 }, { 6441, 0x7120 }, { 6446, 0x1018 },\n  { 6449, 0x0172 }, { 6454, 0xa927 }, { 6462, 0x6004 }, { 6465, 0x8906 },\n  /* 0x9a00 */\n  { 6470, 0xc022 }, { 6474, 0x020c }, { 6477, 0x0900 }, { 6479, 0x4081 },\n  { 6482, 0x202d }, { 6487, 0x8ca0 }, { 6492, 0x0e34 }, { 6498, 0x0000 },\n  { 6498, 0x0000 }, { 6498, 0x0000 }, { 6498, 0x2100 }, { 6500, 0x1101 },\n  { 6503, 0x8011 }, { 6506, 0xc11a }, { 6512, 0xec4c }, { 6520, 0x0892 },\n  /* 0x9b00 */\n  { 6524, 0x0040 }, { 6525, 0x8500 }, { 6528, 0xc7ac }, { 6537, 0x1806 },\n  { 6541, 0xe03e }, { 6549, 0x0512 }, { 6553, 0x8000 }, { 6554, 0x0010 },\n  { 6555, 0x4008 }, { 6557, 0x80ce }, { 6563, 0x6d01 }, { 6569, 0x0210 },\n  { 6571, 0x8641 }, { 6576, 0x0856 }, { 6581, 0x011e }, { 6586, 0x0027 },\n  /* 0x9c00 */\n  { 6590, 0x3750 }, { 6597, 0x083d }, { 6603, 0xe032 }, { 6609, 0x4e05 },\n  { 6615, 0x01c0 }, { 6618, 0x0484 }, { 6621, 0x0081 }, { 6623, 0x0140 },\n  { 6625, 0x0000 }, { 6625, 0x0000 }, { 6625, 0x0000 }, { 6625, 0x0000 },\n  { 6625, 0x0000 }, { 6625, 0x0000 }, { 6625, 0x1aa0 }, { 6630, 0x0059 },\n  /* 0x9d00 */\n  { 6634, 0x43c8 }, { 6640, 0x8824 }, { 6644, 0x1d48 }, { 6650, 0xc800 },\n  { 6653, 0x0152 }, { 6657, 0x7203 }, { 6663, 0x9013 }, { 6668, 0x0404 },\n  { 6670, 0x8280 }, { 6673, 0x0400 }, { 6674, 0x8a10 }, { 6678, 0x0d14 },\n  { 6683, 0x8056 }, { 6688, 0x0208 }, { 6690, 0xa040 }, { 6693, 0x2704 },\n  /* 0x9e00 */\n  { 6698, 0x0000 }, { 6698, 0x4c00 }, { 6701, 0x0000 }, { 6701, 0x0000 },\n  { 6701, 0x0000 }, { 6701, 0x0000 }, { 6701, 0x0000 }, { 6701, 0xa320 },\n  { 6706, 0x1902 }, { 6710, 0xa0ae }, { 6717, 0x2660 }, { 6722, 0xdf00 },\n  { 6729, 0xf010 }, { 6734, 0x7b15 }, { 6743, 0x8121 }, { 6747, 0x3ad0 },\n  /* 0x9f00 */\n  { 6754, 0x4180 }, { 6757, 0x0028 }, { 6759, 0x1003 }, { 6762, 0x4800 },\n  { 6764, 0xcc00 }, { 6768, 0x8014 }, { 6771, 0x14cf }, { 6779, 0x00c4 },\n  { 6782, 0x2000 }, { 6783, 0x3020 }, { 6786, 0x0001 },\n};\nstatic const Summary16 jisx0208_uni2indx_pageff[15] = {\n  /* 0xff00 */\n  { 6787, 0xdf7a }, { 6799, 0xffff }, { 6815, 0xffff }, { 6831, 0xffff },\n  { 6847, 0xffff }, { 6863, 0x3fff }, { 6877, 0x0000 }, { 6877, 0x0000 },\n  { 6877, 0x0000 }, { 6877, 0x0000 }, { 6877, 0x0000 }, { 6877, 0x0000 },\n  { 6877, 0x0000 }, { 6877, 0x0000 }, { 6877, 0x0028 },\n};\n\nstatic int\njisx0208_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x0000 && wc < 0x0100)\n      summary = &jisx0208_uni2indx_page00[(wc>>4)];\n    else if (wc >= 0x0300 && wc < 0x0460)\n      summary = &jisx0208_uni2indx_page03[(wc>>4)-0x030];\n    else if (wc >= 0x2000 && wc < 0x2320)\n      summary = &jisx0208_uni2indx_page20[(wc>>4)-0x200];\n    else if (wc >= 0x2500 && wc < 0x2670)\n      summary = &jisx0208_uni2indx_page25[(wc>>4)-0x250];\n    else if (wc >= 0x3000 && wc < 0x3100)\n      summary = &jisx0208_uni2indx_page30[(wc>>4)-0x300];\n    else if (wc >= 0x4e00 && wc < 0x9fb0)\n      summary = &jisx0208_uni2indx_page4e[(wc>>4)-0x4e0];\n    else if (wc >= 0xff00 && wc < 0xfff0)\n      summary = &jisx0208_uni2indx_pageff[(wc>>4)-0xff0];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = jisx0208_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/jisx0212.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * JISX0212.1990-0\n */\n\nstatic const unsigned short jisx0212_2uni_page22[81] = {\n  /* 0x22 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x02d8, 0x02c7,\n  0x00b8, 0x02d9, 0x02dd, 0x00af, 0x02db, 0x02da, 0xff5e, 0x0384,\n  0x0385, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x00a1, 0x00a6, 0x00bf, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0x00ba, 0x00aa, 0x00a9, 0x00ae, 0x2122, 0x00a4,\n  0x2116,\n};\nstatic const unsigned short jisx0212_2uni_page26[188] = {\n  /* 0x26 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x0386, 0x0388, 0x0389, 0x038a, 0x03aa, 0xfffd, 0x038c, 0xfffd,\n  0x038e, 0x03ab, 0xfffd, 0x038f, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x03ac, 0x03ad, 0x03ae, 0x03af, 0x03ca, 0x0390, 0x03cc, 0x03c2,\n  0x03cd, 0x03cb, 0x03b0, 0x03ce, 0xfffd, 0xfffd,\n  /* 0x27 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x0402, 0x0403, 0x0404, 0x0405, 0x0406, 0x0407, 0x0408,\n  0x0409, 0x040a, 0x040b, 0x040c, 0x040e, 0x040f, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0x0452, 0x0453, 0x0454, 0x0455, 0x0456, 0x0457, 0x0458,\n  0x0459, 0x045a, 0x045b, 0x045c, 0x045e, 0x045f,\n};\nstatic const unsigned short jisx0212_2uni_page29[275] = {\n  /* 0x29 */\n  0x00c6, 0x0110, 0xfffd, 0x0126, 0xfffd, 0x0132, 0xfffd, 0x0141,\n  0x013f, 0xfffd, 0x014a, 0x00d8, 0x0152, 0xfffd, 0x0166, 0x00de,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x00e6, 0x0111, 0x00f0, 0x0127, 0x0131, 0x0133, 0x0138, 0x0142,\n  0x0140, 0x0149, 0x014b, 0x00f8, 0x0153, 0x00df, 0x0167, 0x00fe,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x2a */\n  0x00c1, 0x00c0, 0x00c4, 0x00c2, 0x0102, 0x01cd, 0x0100, 0x0104,\n  0x00c5, 0x00c3, 0x0106, 0x0108, 0x010c, 0x00c7, 0x010a, 0x010e,\n  0x00c9, 0x00c8, 0x00cb, 0x00ca, 0x011a, 0x0116, 0x0112, 0x0118,\n  0xfffd, 0x011c, 0x011e, 0x0122, 0x0120, 0x0124, 0x00cd, 0x00cc,\n  0x00cf, 0x00ce, 0x01cf, 0x0130, 0x012a, 0x012e, 0x0128, 0x0134,\n  0x0136, 0x0139, 0x013d, 0x013b, 0x0143, 0x0147, 0x0145, 0x00d1,\n  0x00d3, 0x00d2, 0x00d6, 0x00d4, 0x01d1, 0x0150, 0x014c, 0x00d5,\n  0x0154, 0x0158, 0x0156, 0x015a, 0x015c, 0x0160, 0x015e, 0x0164,\n  0x0162, 0x00da, 0x00d9, 0x00dc, 0x00db, 0x016c, 0x01d3, 0x0170,\n  0x016a, 0x0172, 0x016e, 0x0168, 0x01d7, 0x01db, 0x01d9, 0x01d5,\n  0x0174, 0x00dd, 0x0178, 0x0176, 0x0179, 0x017d, 0x017b, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x2b */\n  0x00e1, 0x00e0, 0x00e4, 0x00e2, 0x0103, 0x01ce, 0x0101, 0x0105,\n  0x00e5, 0x00e3, 0x0107, 0x0109, 0x010d, 0x00e7, 0x010b, 0x010f,\n  0x00e9, 0x00e8, 0x00eb, 0x00ea, 0x011b, 0x0117, 0x0113, 0x0119,\n  0x01f5, 0x011d, 0x011f, 0xfffd, 0x0121, 0x0125, 0x00ed, 0x00ec,\n  0x00ef, 0x00ee, 0x01d0, 0xfffd, 0x012b, 0x012f, 0x0129, 0x0135,\n  0x0137, 0x013a, 0x013e, 0x013c, 0x0144, 0x0148, 0x0146, 0x00f1,\n  0x00f3, 0x00f2, 0x00f6, 0x00f4, 0x01d2, 0x0151, 0x014d, 0x00f5,\n  0x0155, 0x0159, 0x0157, 0x015b, 0x015d, 0x0161, 0x015f, 0x0165,\n  0x0163, 0x00fa, 0x00f9, 0x00fc, 0x00fb, 0x016d, 0x01d4, 0x0171,\n  0x016b, 0x0173, 0x016f, 0x0169, 0x01d8, 0x01dc, 0x01da, 0x01d6,\n  0x0175, 0x00fd, 0x00ff, 0x0177, 0x017a, 0x017e, 0x017c,\n};\nstatic const unsigned short jisx0212_2uni_page30[5801] = {\n  /* 0x30 */\n  0x4e02, 0x4e04, 0x4e05, 0x4e0c, 0x4e12, 0x4e1f, 0x4e23, 0x4e24,\n  0x4e28, 0x4e2b, 0x4e2e, 0x4e2f, 0x4e30, 0x4e35, 0x4e40, 0x4e41,\n  0x4e44, 0x4e47, 0x4e51, 0x4e5a, 0x4e5c, 0x4e63, 0x4e68, 0x4e69,\n  0x4e74, 0x4e75, 0x4e79, 0x4e7f, 0x4e8d, 0x4e96, 0x4e97, 0x4e9d,\n  0x4eaf, 0x4eb9, 0x4ec3, 0x4ed0, 0x4eda, 0x4edb, 0x4ee0, 0x4ee1,\n  0x4ee2, 0x4ee8, 0x4eef, 0x4ef1, 0x4ef3, 0x4ef5, 0x4efd, 0x4efe,\n  0x4eff, 0x4f00, 0x4f02, 0x4f03, 0x4f08, 0x4f0b, 0x4f0c, 0x4f12,\n  0x4f15, 0x4f16, 0x4f17, 0x4f19, 0x4f2e, 0x4f31, 0x4f60, 0x4f33,\n  0x4f35, 0x4f37, 0x4f39, 0x4f3b, 0x4f3e, 0x4f40, 0x4f42, 0x4f48,\n  0x4f49, 0x4f4b, 0x4f4c, 0x4f52, 0x4f54, 0x4f56, 0x4f58, 0x4f5f,\n  0x4f63, 0x4f6a, 0x4f6c, 0x4f6e, 0x4f71, 0x4f77, 0x4f78, 0x4f79,\n  0x4f7a, 0x4f7d, 0x4f7e, 0x4f81, 0x4f82, 0x4f84,\n  /* 0x31 */\n  0x4f85, 0x4f89, 0x4f8a, 0x4f8c, 0x4f8e, 0x4f90, 0x4f92, 0x4f93,\n  0x4f94, 0x4f97, 0x4f99, 0x4f9a, 0x4f9e, 0x4f9f, 0x4fb2, 0x4fb7,\n  0x4fb9, 0x4fbb, 0x4fbc, 0x4fbd, 0x4fbe, 0x4fc0, 0x4fc1, 0x4fc5,\n  0x4fc6, 0x4fc8, 0x4fc9, 0x4fcb, 0x4fcc, 0x4fcd, 0x4fcf, 0x4fd2,\n  0x4fdc, 0x4fe0, 0x4fe2, 0x4ff0, 0x4ff2, 0x4ffc, 0x4ffd, 0x4fff,\n  0x5000, 0x5001, 0x5004, 0x5007, 0x500a, 0x500c, 0x500e, 0x5010,\n  0x5013, 0x5017, 0x5018, 0x501b, 0x501c, 0x501d, 0x501e, 0x5022,\n  0x5027, 0x502e, 0x5030, 0x5032, 0x5033, 0x5035, 0x5040, 0x5041,\n  0x5042, 0x5045, 0x5046, 0x504a, 0x504c, 0x504e, 0x5051, 0x5052,\n  0x5053, 0x5057, 0x5059, 0x505f, 0x5060, 0x5062, 0x5063, 0x5066,\n  0x5067, 0x506a, 0x506d, 0x5070, 0x5071, 0x503b, 0x5081, 0x5083,\n  0x5084, 0x5086, 0x508a, 0x508e, 0x508f, 0x5090,\n  /* 0x32 */\n  0x5092, 0x5093, 0x5094, 0x5096, 0x509b, 0x509c, 0x509e, 0x509f,\n  0x50a0, 0x50a1, 0x50a2, 0x50aa, 0x50af, 0x50b0, 0x50b9, 0x50ba,\n  0x50bd, 0x50c0, 0x50c3, 0x50c4, 0x50c7, 0x50cc, 0x50ce, 0x50d0,\n  0x50d3, 0x50d4, 0x50d8, 0x50dc, 0x50dd, 0x50df, 0x50e2, 0x50e4,\n  0x50e6, 0x50e8, 0x50e9, 0x50ef, 0x50f1, 0x50f6, 0x50fa, 0x50fe,\n  0x5103, 0x5106, 0x5107, 0x5108, 0x510b, 0x510c, 0x510d, 0x510e,\n  0x50f2, 0x5110, 0x5117, 0x5119, 0x511b, 0x511c, 0x511d, 0x511e,\n  0x5123, 0x5127, 0x5128, 0x512c, 0x512d, 0x512f, 0x5131, 0x5133,\n  0x5134, 0x5135, 0x5138, 0x5139, 0x5142, 0x514a, 0x514f, 0x5153,\n  0x5155, 0x5157, 0x5158, 0x515f, 0x5164, 0x5166, 0x517e, 0x5183,\n  0x5184, 0x518b, 0x518e, 0x5198, 0x519d, 0x51a1, 0x51a3, 0x51ad,\n  0x51b8, 0x51ba, 0x51bc, 0x51be, 0x51bf, 0x51c2,\n  /* 0x33 */\n  0x51c8, 0x51cf, 0x51d1, 0x51d2, 0x51d3, 0x51d5, 0x51d8, 0x51de,\n  0x51e2, 0x51e5, 0x51ee, 0x51f2, 0x51f3, 0x51f4, 0x51f7, 0x5201,\n  0x5202, 0x5205, 0x5212, 0x5213, 0x5215, 0x5216, 0x5218, 0x5222,\n  0x5228, 0x5231, 0x5232, 0x5235, 0x523c, 0x5245, 0x5249, 0x5255,\n  0x5257, 0x5258, 0x525a, 0x525c, 0x525f, 0x5260, 0x5261, 0x5266,\n  0x526e, 0x5277, 0x5278, 0x5279, 0x5280, 0x5282, 0x5285, 0x528a,\n  0x528c, 0x5293, 0x5295, 0x5296, 0x5297, 0x5298, 0x529a, 0x529c,\n  0x52a4, 0x52a5, 0x52a6, 0x52a7, 0x52af, 0x52b0, 0x52b6, 0x52b7,\n  0x52b8, 0x52ba, 0x52bb, 0x52bd, 0x52c0, 0x52c4, 0x52c6, 0x52c8,\n  0x52cc, 0x52cf, 0x52d1, 0x52d4, 0x52d6, 0x52db, 0x52dc, 0x52e1,\n  0x52e5, 0x52e8, 0x52e9, 0x52ea, 0x52ec, 0x52f0, 0x52f1, 0x52f4,\n  0x52f6, 0x52f7, 0x5300, 0x5303, 0x530a, 0x530b,\n  /* 0x34 */\n  0x530c, 0x5311, 0x5313, 0x5318, 0x531b, 0x531c, 0x531e, 0x531f,\n  0x5325, 0x5327, 0x5328, 0x5329, 0x532b, 0x532c, 0x532d, 0x5330,\n  0x5332, 0x5335, 0x533c, 0x533d, 0x533e, 0x5342, 0x534c, 0x534b,\n  0x5359, 0x535b, 0x5361, 0x5363, 0x5365, 0x536c, 0x536d, 0x5372,\n  0x5379, 0x537e, 0x5383, 0x5387, 0x5388, 0x538e, 0x5393, 0x5394,\n  0x5399, 0x539d, 0x53a1, 0x53a4, 0x53aa, 0x53ab, 0x53af, 0x53b2,\n  0x53b4, 0x53b5, 0x53b7, 0x53b8, 0x53ba, 0x53bd, 0x53c0, 0x53c5,\n  0x53cf, 0x53d2, 0x53d3, 0x53d5, 0x53da, 0x53dd, 0x53de, 0x53e0,\n  0x53e6, 0x53e7, 0x53f5, 0x5402, 0x5413, 0x541a, 0x5421, 0x5427,\n  0x5428, 0x542a, 0x542f, 0x5431, 0x5434, 0x5435, 0x5443, 0x5444,\n  0x5447, 0x544d, 0x544f, 0x545e, 0x5462, 0x5464, 0x5466, 0x5467,\n  0x5469, 0x546b, 0x546d, 0x546e, 0x5474, 0x547f,\n  /* 0x35 */\n  0x5481, 0x5483, 0x5485, 0x5488, 0x5489, 0x548d, 0x5491, 0x5495,\n  0x5496, 0x549c, 0x549f, 0x54a1, 0x54a6, 0x54a7, 0x54a9, 0x54aa,\n  0x54ad, 0x54ae, 0x54b1, 0x54b7, 0x54b9, 0x54ba, 0x54bb, 0x54bf,\n  0x54c6, 0x54ca, 0x54cd, 0x54ce, 0x54e0, 0x54ea, 0x54ec, 0x54ef,\n  0x54f6, 0x54fc, 0x54fe, 0x54ff, 0x5500, 0x5501, 0x5505, 0x5508,\n  0x5509, 0x550c, 0x550d, 0x550e, 0x5515, 0x552a, 0x552b, 0x5532,\n  0x5535, 0x5536, 0x553b, 0x553c, 0x553d, 0x5541, 0x5547, 0x5549,\n  0x554a, 0x554d, 0x5550, 0x5551, 0x5558, 0x555a, 0x555b, 0x555e,\n  0x5560, 0x5561, 0x5564, 0x5566, 0x557f, 0x5581, 0x5582, 0x5586,\n  0x5588, 0x558e, 0x558f, 0x5591, 0x5592, 0x5593, 0x5594, 0x5597,\n  0x55a3, 0x55a4, 0x55ad, 0x55b2, 0x55bf, 0x55c1, 0x55c3, 0x55c6,\n  0x55c9, 0x55cb, 0x55cc, 0x55ce, 0x55d1, 0x55d2,\n  /* 0x36 */\n  0x55d3, 0x55d7, 0x55d8, 0x55db, 0x55de, 0x55e2, 0x55e9, 0x55f6,\n  0x55ff, 0x5605, 0x5608, 0x560a, 0x560d, 0x560e, 0x560f, 0x5610,\n  0x5611, 0x5612, 0x5619, 0x562c, 0x5630, 0x5633, 0x5635, 0x5637,\n  0x5639, 0x563b, 0x563c, 0x563d, 0x563f, 0x5640, 0x5641, 0x5643,\n  0x5644, 0x5646, 0x5649, 0x564b, 0x564d, 0x564f, 0x5654, 0x565e,\n  0x5660, 0x5661, 0x5662, 0x5663, 0x5666, 0x5669, 0x566d, 0x566f,\n  0x5671, 0x5672, 0x5675, 0x5684, 0x5685, 0x5688, 0x568b, 0x568c,\n  0x5695, 0x5699, 0x569a, 0x569d, 0x569e, 0x569f, 0x56a6, 0x56a7,\n  0x56a8, 0x56a9, 0x56ab, 0x56ac, 0x56ad, 0x56b1, 0x56b3, 0x56b7,\n  0x56be, 0x56c5, 0x56c9, 0x56ca, 0x56cb, 0x56cf, 0x56d0, 0x56cc,\n  0x56cd, 0x56d9, 0x56dc, 0x56dd, 0x56df, 0x56e1, 0x56e4, 0x56e5,\n  0x56e6, 0x56e7, 0x56e8, 0x56f1, 0x56eb, 0x56ed,\n  /* 0x37 */\n  0x56f6, 0x56f7, 0x5701, 0x5702, 0x5707, 0x570a, 0x570c, 0x5711,\n  0x5715, 0x571a, 0x571b, 0x571d, 0x5720, 0x5722, 0x5723, 0x5724,\n  0x5725, 0x5729, 0x572a, 0x572c, 0x572e, 0x572f, 0x5733, 0x5734,\n  0x573d, 0x573e, 0x573f, 0x5745, 0x5746, 0x574c, 0x574d, 0x5752,\n  0x5762, 0x5765, 0x5767, 0x5768, 0x576b, 0x576d, 0x576e, 0x576f,\n  0x5770, 0x5771, 0x5773, 0x5774, 0x5775, 0x5777, 0x5779, 0x577a,\n  0x577b, 0x577c, 0x577e, 0x5781, 0x5783, 0x578c, 0x5794, 0x5797,\n  0x5799, 0x579a, 0x579c, 0x579d, 0x579e, 0x579f, 0x57a1, 0x5795,\n  0x57a7, 0x57a8, 0x57a9, 0x57ac, 0x57b8, 0x57bd, 0x57c7, 0x57c8,\n  0x57cc, 0x57cf, 0x57d5, 0x57dd, 0x57de, 0x57e4, 0x57e6, 0x57e7,\n  0x57e9, 0x57ed, 0x57f0, 0x57f5, 0x57f6, 0x57f8, 0x57fd, 0x57fe,\n  0x57ff, 0x5803, 0x5804, 0x5808, 0x5809, 0x57e1,\n  /* 0x38 */\n  0x580c, 0x580d, 0x581b, 0x581e, 0x581f, 0x5820, 0x5826, 0x5827,\n  0x582d, 0x5832, 0x5839, 0x583f, 0x5849, 0x584c, 0x584d, 0x584f,\n  0x5850, 0x5855, 0x585f, 0x5861, 0x5864, 0x5867, 0x5868, 0x5878,\n  0x587c, 0x587f, 0x5880, 0x5881, 0x5887, 0x5888, 0x5889, 0x588a,\n  0x588c, 0x588d, 0x588f, 0x5890, 0x5894, 0x5896, 0x589d, 0x58a0,\n  0x58a1, 0x58a2, 0x58a6, 0x58a9, 0x58b1, 0x58b2, 0x58c4, 0x58bc,\n  0x58c2, 0x58c8, 0x58cd, 0x58ce, 0x58d0, 0x58d2, 0x58d4, 0x58d6,\n  0x58da, 0x58dd, 0x58e1, 0x58e2, 0x58e9, 0x58f3, 0x5905, 0x5906,\n  0x590b, 0x590c, 0x5912, 0x5913, 0x5914, 0x8641, 0x591d, 0x5921,\n  0x5923, 0x5924, 0x5928, 0x592f, 0x5930, 0x5933, 0x5935, 0x5936,\n  0x593f, 0x5943, 0x5946, 0x5952, 0x5953, 0x5959, 0x595b, 0x595d,\n  0x595e, 0x595f, 0x5961, 0x5963, 0x596b, 0x596d,\n  /* 0x39 */\n  0x596f, 0x5972, 0x5975, 0x5976, 0x5979, 0x597b, 0x597c, 0x598b,\n  0x598c, 0x598e, 0x5992, 0x5995, 0x5997, 0x599f, 0x59a4, 0x59a7,\n  0x59ad, 0x59ae, 0x59af, 0x59b0, 0x59b3, 0x59b7, 0x59ba, 0x59bc,\n  0x59c1, 0x59c3, 0x59c4, 0x59c8, 0x59ca, 0x59cd, 0x59d2, 0x59dd,\n  0x59de, 0x59df, 0x59e3, 0x59e4, 0x59e7, 0x59ee, 0x59ef, 0x59f1,\n  0x59f2, 0x59f4, 0x59f7, 0x5a00, 0x5a04, 0x5a0c, 0x5a0d, 0x5a0e,\n  0x5a12, 0x5a13, 0x5a1e, 0x5a23, 0x5a24, 0x5a27, 0x5a28, 0x5a2a,\n  0x5a2d, 0x5a30, 0x5a44, 0x5a45, 0x5a47, 0x5a48, 0x5a4c, 0x5a50,\n  0x5a55, 0x5a5e, 0x5a63, 0x5a65, 0x5a67, 0x5a6d, 0x5a77, 0x5a7a,\n  0x5a7b, 0x5a7e, 0x5a8b, 0x5a90, 0x5a93, 0x5a96, 0x5a99, 0x5a9c,\n  0x5a9e, 0x5a9f, 0x5aa0, 0x5aa2, 0x5aa7, 0x5aac, 0x5ab1, 0x5ab2,\n  0x5ab3, 0x5ab5, 0x5ab8, 0x5aba, 0x5abb, 0x5abf,\n  /* 0x3a */\n  0x5ac4, 0x5ac6, 0x5ac8, 0x5acf, 0x5ada, 0x5adc, 0x5ae0, 0x5ae5,\n  0x5aea, 0x5aee, 0x5af5, 0x5af6, 0x5afd, 0x5b00, 0x5b01, 0x5b08,\n  0x5b17, 0x5b34, 0x5b19, 0x5b1b, 0x5b1d, 0x5b21, 0x5b25, 0x5b2d,\n  0x5b38, 0x5b41, 0x5b4b, 0x5b4c, 0x5b52, 0x5b56, 0x5b5e, 0x5b68,\n  0x5b6e, 0x5b6f, 0x5b7c, 0x5b7d, 0x5b7e, 0x5b7f, 0x5b81, 0x5b84,\n  0x5b86, 0x5b8a, 0x5b8e, 0x5b90, 0x5b91, 0x5b93, 0x5b94, 0x5b96,\n  0x5ba8, 0x5ba9, 0x5bac, 0x5bad, 0x5baf, 0x5bb1, 0x5bb2, 0x5bb7,\n  0x5bba, 0x5bbc, 0x5bc0, 0x5bc1, 0x5bcd, 0x5bcf, 0x5bd6, 0x5bd7,\n  0x5bd8, 0x5bd9, 0x5bda, 0x5be0, 0x5bef, 0x5bf1, 0x5bf4, 0x5bfd,\n  0x5c0c, 0x5c17, 0x5c1e, 0x5c1f, 0x5c23, 0x5c26, 0x5c29, 0x5c2b,\n  0x5c2c, 0x5c2e, 0x5c30, 0x5c32, 0x5c35, 0x5c36, 0x5c59, 0x5c5a,\n  0x5c5c, 0x5c62, 0x5c63, 0x5c67, 0x5c68, 0x5c69,\n  /* 0x3b */\n  0x5c6d, 0x5c70, 0x5c74, 0x5c75, 0x5c7a, 0x5c7b, 0x5c7c, 0x5c7d,\n  0x5c87, 0x5c88, 0x5c8a, 0x5c8f, 0x5c92, 0x5c9d, 0x5c9f, 0x5ca0,\n  0x5ca2, 0x5ca3, 0x5ca6, 0x5caa, 0x5cb2, 0x5cb4, 0x5cb5, 0x5cba,\n  0x5cc9, 0x5ccb, 0x5cd2, 0x5cdd, 0x5cd7, 0x5cee, 0x5cf1, 0x5cf2,\n  0x5cf4, 0x5d01, 0x5d06, 0x5d0d, 0x5d12, 0x5d2b, 0x5d23, 0x5d24,\n  0x5d26, 0x5d27, 0x5d31, 0x5d34, 0x5d39, 0x5d3d, 0x5d3f, 0x5d42,\n  0x5d43, 0x5d46, 0x5d48, 0x5d55, 0x5d51, 0x5d59, 0x5d4a, 0x5d5f,\n  0x5d60, 0x5d61, 0x5d62, 0x5d64, 0x5d6a, 0x5d6d, 0x5d70, 0x5d79,\n  0x5d7a, 0x5d7e, 0x5d7f, 0x5d81, 0x5d83, 0x5d88, 0x5d8a, 0x5d92,\n  0x5d93, 0x5d94, 0x5d95, 0x5d99, 0x5d9b, 0x5d9f, 0x5da0, 0x5da7,\n  0x5dab, 0x5db0, 0x5db4, 0x5db8, 0x5db9, 0x5dc3, 0x5dc7, 0x5dcb,\n  0x5dd0, 0x5dce, 0x5dd8, 0x5dd9, 0x5de0, 0x5de4,\n  /* 0x3c */\n  0x5de9, 0x5df8, 0x5df9, 0x5e00, 0x5e07, 0x5e0d, 0x5e12, 0x5e14,\n  0x5e15, 0x5e18, 0x5e1f, 0x5e20, 0x5e2e, 0x5e28, 0x5e32, 0x5e35,\n  0x5e3e, 0x5e4b, 0x5e50, 0x5e49, 0x5e51, 0x5e56, 0x5e58, 0x5e5b,\n  0x5e5c, 0x5e5e, 0x5e68, 0x5e6a, 0x5e6b, 0x5e6c, 0x5e6d, 0x5e6e,\n  0x5e70, 0x5e80, 0x5e8b, 0x5e8e, 0x5ea2, 0x5ea4, 0x5ea5, 0x5ea8,\n  0x5eaa, 0x5eac, 0x5eb1, 0x5eb3, 0x5ebd, 0x5ebe, 0x5ebf, 0x5ec6,\n  0x5ecc, 0x5ecb, 0x5ece, 0x5ed1, 0x5ed2, 0x5ed4, 0x5ed5, 0x5edc,\n  0x5ede, 0x5ee5, 0x5eeb, 0x5f02, 0x5f06, 0x5f07, 0x5f08, 0x5f0e,\n  0x5f19, 0x5f1c, 0x5f1d, 0x5f21, 0x5f22, 0x5f23, 0x5f24, 0x5f28,\n  0x5f2b, 0x5f2c, 0x5f2e, 0x5f30, 0x5f34, 0x5f36, 0x5f3b, 0x5f3d,\n  0x5f3f, 0x5f40, 0x5f44, 0x5f45, 0x5f47, 0x5f4d, 0x5f50, 0x5f54,\n  0x5f58, 0x5f5b, 0x5f60, 0x5f63, 0x5f64, 0x5f67,\n  /* 0x3d */\n  0x5f6f, 0x5f72, 0x5f74, 0x5f75, 0x5f78, 0x5f7a, 0x5f7d, 0x5f7e,\n  0x5f89, 0x5f8d, 0x5f8f, 0x5f96, 0x5f9c, 0x5f9d, 0x5fa2, 0x5fa7,\n  0x5fab, 0x5fa4, 0x5fac, 0x5faf, 0x5fb0, 0x5fb1, 0x5fb8, 0x5fc4,\n  0x5fc7, 0x5fc8, 0x5fc9, 0x5fcb, 0x5fd0, 0x5fd1, 0x5fd2, 0x5fd3,\n  0x5fd4, 0x5fde, 0x5fe1, 0x5fe2, 0x5fe8, 0x5fe9, 0x5fea, 0x5fec,\n  0x5fed, 0x5fee, 0x5fef, 0x5ff2, 0x5ff3, 0x5ff6, 0x5ffa, 0x5ffc,\n  0x6007, 0x600a, 0x600d, 0x6013, 0x6014, 0x6017, 0x6018, 0x601a,\n  0x601f, 0x6024, 0x602d, 0x6033, 0x6035, 0x6040, 0x6047, 0x6048,\n  0x6049, 0x604c, 0x6051, 0x6054, 0x6056, 0x6057, 0x605d, 0x6061,\n  0x6067, 0x6071, 0x607e, 0x607f, 0x6082, 0x6086, 0x6088, 0x608a,\n  0x608e, 0x6091, 0x6093, 0x6095, 0x6098, 0x609d, 0x609e, 0x60a2,\n  0x60a4, 0x60a5, 0x60a8, 0x60b0, 0x60b1, 0x60b7,\n  /* 0x3e */\n  0x60bb, 0x60be, 0x60c2, 0x60c4, 0x60c8, 0x60c9, 0x60ca, 0x60cb,\n  0x60ce, 0x60cf, 0x60d4, 0x60d5, 0x60d9, 0x60db, 0x60dd, 0x60de,\n  0x60e2, 0x60e5, 0x60f2, 0x60f5, 0x60f8, 0x60fc, 0x60fd, 0x6102,\n  0x6107, 0x610a, 0x610c, 0x6110, 0x6111, 0x6112, 0x6113, 0x6114,\n  0x6116, 0x6117, 0x6119, 0x611c, 0x611e, 0x6122, 0x612a, 0x612b,\n  0x6130, 0x6131, 0x6135, 0x6136, 0x6137, 0x6139, 0x6141, 0x6145,\n  0x6146, 0x6149, 0x615e, 0x6160, 0x616c, 0x6172, 0x6178, 0x617b,\n  0x617c, 0x617f, 0x6180, 0x6181, 0x6183, 0x6184, 0x618b, 0x618d,\n  0x6192, 0x6193, 0x6197, 0x6198, 0x619c, 0x619d, 0x619f, 0x61a0,\n  0x61a5, 0x61a8, 0x61aa, 0x61ad, 0x61b8, 0x61b9, 0x61bc, 0x61c0,\n  0x61c1, 0x61c2, 0x61ce, 0x61cf, 0x61d5, 0x61dc, 0x61dd, 0x61de,\n  0x61df, 0x61e1, 0x61e2, 0x61e7, 0x61e9, 0x61e5,\n  /* 0x3f */\n  0x61ec, 0x61ed, 0x61ef, 0x6201, 0x6203, 0x6204, 0x6207, 0x6213,\n  0x6215, 0x621c, 0x6220, 0x6222, 0x6223, 0x6227, 0x6229, 0x622b,\n  0x6239, 0x623d, 0x6242, 0x6243, 0x6244, 0x6246, 0x624c, 0x6250,\n  0x6251, 0x6252, 0x6254, 0x6256, 0x625a, 0x625c, 0x6264, 0x626d,\n  0x626f, 0x6273, 0x627a, 0x627d, 0x628d, 0x628e, 0x628f, 0x6290,\n  0x62a6, 0x62a8, 0x62b3, 0x62b6, 0x62b7, 0x62ba, 0x62be, 0x62bf,\n  0x62c4, 0x62ce, 0x62d5, 0x62d6, 0x62da, 0x62ea, 0x62f2, 0x62f4,\n  0x62fc, 0x62fd, 0x6303, 0x6304, 0x630a, 0x630b, 0x630d, 0x6310,\n  0x6313, 0x6316, 0x6318, 0x6329, 0x632a, 0x632d, 0x6335, 0x6336,\n  0x6339, 0x633c, 0x6341, 0x6342, 0x6343, 0x6344, 0x6346, 0x634a,\n  0x634b, 0x634e, 0x6352, 0x6353, 0x6354, 0x6358, 0x635b, 0x6365,\n  0x6366, 0x636c, 0x636d, 0x6371, 0x6374, 0x6375,\n  /* 0x40 */\n  0x6378, 0x637c, 0x637d, 0x637f, 0x6382, 0x6384, 0x6387, 0x638a,\n  0x6390, 0x6394, 0x6395, 0x6399, 0x639a, 0x639e, 0x63a4, 0x63a6,\n  0x63ad, 0x63ae, 0x63af, 0x63bd, 0x63c1, 0x63c5, 0x63c8, 0x63ce,\n  0x63d1, 0x63d3, 0x63d4, 0x63d5, 0x63dc, 0x63e0, 0x63e5, 0x63ea,\n  0x63ec, 0x63f2, 0x63f3, 0x63f5, 0x63f8, 0x63f9, 0x6409, 0x640a,\n  0x6410, 0x6412, 0x6414, 0x6418, 0x641e, 0x6420, 0x6422, 0x6424,\n  0x6425, 0x6429, 0x642a, 0x642f, 0x6430, 0x6435, 0x643d, 0x643f,\n  0x644b, 0x644f, 0x6451, 0x6452, 0x6453, 0x6454, 0x645a, 0x645b,\n  0x645c, 0x645d, 0x645f, 0x6460, 0x6461, 0x6463, 0x646d, 0x6473,\n  0x6474, 0x647b, 0x647d, 0x6485, 0x6487, 0x648f, 0x6490, 0x6491,\n  0x6498, 0x6499, 0x649b, 0x649d, 0x649f, 0x64a1, 0x64a3, 0x64a6,\n  0x64a8, 0x64ac, 0x64b3, 0x64bd, 0x64be, 0x64bf,\n  /* 0x41 */\n  0x64c4, 0x64c9, 0x64ca, 0x64cb, 0x64cc, 0x64ce, 0x64d0, 0x64d1,\n  0x64d5, 0x64d7, 0x64e4, 0x64e5, 0x64e9, 0x64ea, 0x64ed, 0x64f0,\n  0x64f5, 0x64f7, 0x64fb, 0x64ff, 0x6501, 0x6504, 0x6508, 0x6509,\n  0x650a, 0x650f, 0x6513, 0x6514, 0x6516, 0x6519, 0x651b, 0x651e,\n  0x651f, 0x6522, 0x6526, 0x6529, 0x652e, 0x6531, 0x653a, 0x653c,\n  0x653d, 0x6543, 0x6547, 0x6549, 0x6550, 0x6552, 0x6554, 0x655f,\n  0x6560, 0x6567, 0x656b, 0x657a, 0x657d, 0x6581, 0x6585, 0x658a,\n  0x6592, 0x6595, 0x6598, 0x659d, 0x65a0, 0x65a3, 0x65a6, 0x65ae,\n  0x65b2, 0x65b3, 0x65b4, 0x65bf, 0x65c2, 0x65c8, 0x65c9, 0x65ce,\n  0x65d0, 0x65d4, 0x65d6, 0x65d8, 0x65df, 0x65f0, 0x65f2, 0x65f4,\n  0x65f5, 0x65f9, 0x65fe, 0x65ff, 0x6600, 0x6604, 0x6608, 0x6609,\n  0x660d, 0x6611, 0x6612, 0x6615, 0x6616, 0x661d,\n  /* 0x42 */\n  0x661e, 0x6621, 0x6622, 0x6623, 0x6624, 0x6626, 0x6629, 0x662a,\n  0x662b, 0x662c, 0x662e, 0x6630, 0x6631, 0x6633, 0x6639, 0x6637,\n  0x6640, 0x6645, 0x6646, 0x664a, 0x664c, 0x6651, 0x664e, 0x6657,\n  0x6658, 0x6659, 0x665b, 0x665c, 0x6660, 0x6661, 0x66fb, 0x666a,\n  0x666b, 0x666c, 0x667e, 0x6673, 0x6675, 0x667f, 0x6677, 0x6678,\n  0x6679, 0x667b, 0x6680, 0x667c, 0x668b, 0x668c, 0x668d, 0x6690,\n  0x6692, 0x6699, 0x669a, 0x669b, 0x669c, 0x669f, 0x66a0, 0x66a4,\n  0x66ad, 0x66b1, 0x66b2, 0x66b5, 0x66bb, 0x66bf, 0x66c0, 0x66c2,\n  0x66c3, 0x66c8, 0x66cc, 0x66ce, 0x66cf, 0x66d4, 0x66db, 0x66df,\n  0x66e8, 0x66eb, 0x66ec, 0x66ee, 0x66fa, 0x6705, 0x6707, 0x670e,\n  0x6713, 0x6719, 0x671c, 0x6720, 0x6722, 0x6733, 0x673e, 0x6745,\n  0x6747, 0x6748, 0x674c, 0x6754, 0x6755, 0x675d,\n  /* 0x43 */\n  0x6766, 0x676c, 0x676e, 0x6774, 0x6776, 0x677b, 0x6781, 0x6784,\n  0x678e, 0x678f, 0x6791, 0x6793, 0x6796, 0x6798, 0x6799, 0x679b,\n  0x67b0, 0x67b1, 0x67b2, 0x67b5, 0x67bb, 0x67bc, 0x67bd, 0x67f9,\n  0x67c0, 0x67c2, 0x67c3, 0x67c5, 0x67c8, 0x67c9, 0x67d2, 0x67d7,\n  0x67d9, 0x67dc, 0x67e1, 0x67e6, 0x67f0, 0x67f2, 0x67f6, 0x67f7,\n  0x6852, 0x6814, 0x6819, 0x681d, 0x681f, 0x6828, 0x6827, 0x682c,\n  0x682d, 0x682f, 0x6830, 0x6831, 0x6833, 0x683b, 0x683f, 0x6844,\n  0x6845, 0x684a, 0x684c, 0x6855, 0x6857, 0x6858, 0x685b, 0x686b,\n  0x686e, 0x686f, 0x6870, 0x6871, 0x6872, 0x6875, 0x6879, 0x687a,\n  0x687b, 0x687c, 0x6882, 0x6884, 0x6886, 0x6888, 0x6896, 0x6898,\n  0x689a, 0x689c, 0x68a1, 0x68a3, 0x68a5, 0x68a9, 0x68aa, 0x68ae,\n  0x68b2, 0x68bb, 0x68c5, 0x68c8, 0x68cc, 0x68cf,\n  /* 0x44 */\n  0x68d0, 0x68d1, 0x68d3, 0x68d6, 0x68d9, 0x68dc, 0x68dd, 0x68e5,\n  0x68e8, 0x68ea, 0x68eb, 0x68ec, 0x68ed, 0x68f0, 0x68f1, 0x68f5,\n  0x68f6, 0x68fb, 0x68fc, 0x68fd, 0x6906, 0x6909, 0x690a, 0x6910,\n  0x6911, 0x6913, 0x6916, 0x6917, 0x6931, 0x6933, 0x6935, 0x6938,\n  0x693b, 0x6942, 0x6945, 0x6949, 0x694e, 0x6957, 0x695b, 0x6963,\n  0x6964, 0x6965, 0x6966, 0x6968, 0x6969, 0x696c, 0x6970, 0x6971,\n  0x6972, 0x697a, 0x697b, 0x697f, 0x6980, 0x698d, 0x6992, 0x6996,\n  0x6998, 0x69a1, 0x69a5, 0x69a6, 0x69a8, 0x69ab, 0x69ad, 0x69af,\n  0x69b7, 0x69b8, 0x69ba, 0x69bc, 0x69c5, 0x69c8, 0x69d1, 0x69d6,\n  0x69d7, 0x69e2, 0x69e5, 0x69ee, 0x69ef, 0x69f1, 0x69f3, 0x69f5,\n  0x69fe, 0x6a00, 0x6a01, 0x6a03, 0x6a0f, 0x6a11, 0x6a15, 0x6a1a,\n  0x6a1d, 0x6a20, 0x6a24, 0x6a28, 0x6a30, 0x6a32,\n  /* 0x45 */\n  0x6a34, 0x6a37, 0x6a3b, 0x6a3e, 0x6a3f, 0x6a45, 0x6a46, 0x6a49,\n  0x6a4a, 0x6a4e, 0x6a50, 0x6a51, 0x6a52, 0x6a55, 0x6a56, 0x6a5b,\n  0x6a64, 0x6a67, 0x6a6a, 0x6a71, 0x6a73, 0x6a7e, 0x6a81, 0x6a83,\n  0x6a86, 0x6a87, 0x6a89, 0x6a8b, 0x6a91, 0x6a9b, 0x6a9d, 0x6a9e,\n  0x6a9f, 0x6aa5, 0x6aab, 0x6aaf, 0x6ab0, 0x6ab1, 0x6ab4, 0x6abd,\n  0x6abe, 0x6abf, 0x6ac6, 0x6ac9, 0x6ac8, 0x6acc, 0x6ad0, 0x6ad4,\n  0x6ad5, 0x6ad6, 0x6adc, 0x6add, 0x6ae4, 0x6ae7, 0x6aec, 0x6af0,\n  0x6af1, 0x6af2, 0x6afc, 0x6afd, 0x6b02, 0x6b03, 0x6b06, 0x6b07,\n  0x6b09, 0x6b0f, 0x6b10, 0x6b11, 0x6b17, 0x6b1b, 0x6b1e, 0x6b24,\n  0x6b28, 0x6b2b, 0x6b2c, 0x6b2f, 0x6b35, 0x6b36, 0x6b3b, 0x6b3f,\n  0x6b46, 0x6b4a, 0x6b4d, 0x6b52, 0x6b56, 0x6b58, 0x6b5d, 0x6b60,\n  0x6b67, 0x6b6b, 0x6b6e, 0x6b70, 0x6b75, 0x6b7d,\n  /* 0x46 */\n  0x6b7e, 0x6b82, 0x6b85, 0x6b97, 0x6b9b, 0x6b9f, 0x6ba0, 0x6ba2,\n  0x6ba3, 0x6ba8, 0x6ba9, 0x6bac, 0x6bad, 0x6bae, 0x6bb0, 0x6bb8,\n  0x6bb9, 0x6bbd, 0x6bbe, 0x6bc3, 0x6bc4, 0x6bc9, 0x6bcc, 0x6bd6,\n  0x6bda, 0x6be1, 0x6be3, 0x6be6, 0x6be7, 0x6bee, 0x6bf1, 0x6bf7,\n  0x6bf9, 0x6bff, 0x6c02, 0x6c04, 0x6c05, 0x6c09, 0x6c0d, 0x6c0e,\n  0x6c10, 0x6c12, 0x6c19, 0x6c1f, 0x6c26, 0x6c27, 0x6c28, 0x6c2c,\n  0x6c2e, 0x6c33, 0x6c35, 0x6c36, 0x6c3a, 0x6c3b, 0x6c3f, 0x6c4a,\n  0x6c4b, 0x6c4d, 0x6c4f, 0x6c52, 0x6c54, 0x6c59, 0x6c5b, 0x6c5c,\n  0x6c6b, 0x6c6d, 0x6c6f, 0x6c74, 0x6c76, 0x6c78, 0x6c79, 0x6c7b,\n  0x6c85, 0x6c86, 0x6c87, 0x6c89, 0x6c94, 0x6c95, 0x6c97, 0x6c98,\n  0x6c9c, 0x6c9f, 0x6cb0, 0x6cb2, 0x6cb4, 0x6cc2, 0x6cc6, 0x6ccd,\n  0x6ccf, 0x6cd0, 0x6cd1, 0x6cd2, 0x6cd4, 0x6cd6,\n  /* 0x47 */\n  0x6cda, 0x6cdc, 0x6ce0, 0x6ce7, 0x6ce9, 0x6ceb, 0x6cec, 0x6cee,\n  0x6cf2, 0x6cf4, 0x6d04, 0x6d07, 0x6d0a, 0x6d0e, 0x6d0f, 0x6d11,\n  0x6d13, 0x6d1a, 0x6d26, 0x6d27, 0x6d28, 0x6c67, 0x6d2e, 0x6d2f,\n  0x6d31, 0x6d39, 0x6d3c, 0x6d3f, 0x6d57, 0x6d5e, 0x6d5f, 0x6d61,\n  0x6d65, 0x6d67, 0x6d6f, 0x6d70, 0x6d7c, 0x6d82, 0x6d87, 0x6d91,\n  0x6d92, 0x6d94, 0x6d96, 0x6d97, 0x6d98, 0x6daa, 0x6dac, 0x6db4,\n  0x6db7, 0x6db9, 0x6dbd, 0x6dbf, 0x6dc4, 0x6dc8, 0x6dca, 0x6dce,\n  0x6dcf, 0x6dd6, 0x6ddb, 0x6ddd, 0x6ddf, 0x6de0, 0x6de2, 0x6de5,\n  0x6de9, 0x6def, 0x6df0, 0x6df4, 0x6df6, 0x6dfc, 0x6e00, 0x6e04,\n  0x6e1e, 0x6e22, 0x6e27, 0x6e32, 0x6e36, 0x6e39, 0x6e3b, 0x6e3c,\n  0x6e44, 0x6e45, 0x6e48, 0x6e49, 0x6e4b, 0x6e4f, 0x6e51, 0x6e52,\n  0x6e53, 0x6e54, 0x6e57, 0x6e5c, 0x6e5d, 0x6e5e,\n  /* 0x48 */\n  0x6e62, 0x6e63, 0x6e68, 0x6e73, 0x6e7b, 0x6e7d, 0x6e8d, 0x6e93,\n  0x6e99, 0x6ea0, 0x6ea7, 0x6ead, 0x6eae, 0x6eb1, 0x6eb3, 0x6ebb,\n  0x6ebf, 0x6ec0, 0x6ec1, 0x6ec3, 0x6ec7, 0x6ec8, 0x6eca, 0x6ecd,\n  0x6ece, 0x6ecf, 0x6eeb, 0x6eed, 0x6eee, 0x6ef9, 0x6efb, 0x6efd,\n  0x6f04, 0x6f08, 0x6f0a, 0x6f0c, 0x6f0d, 0x6f16, 0x6f18, 0x6f1a,\n  0x6f1b, 0x6f26, 0x6f29, 0x6f2a, 0x6f2f, 0x6f30, 0x6f33, 0x6f36,\n  0x6f3b, 0x6f3c, 0x6f2d, 0x6f4f, 0x6f51, 0x6f52, 0x6f53, 0x6f57,\n  0x6f59, 0x6f5a, 0x6f5d, 0x6f5e, 0x6f61, 0x6f62, 0x6f68, 0x6f6c,\n  0x6f7d, 0x6f7e, 0x6f83, 0x6f87, 0x6f88, 0x6f8b, 0x6f8c, 0x6f8d,\n  0x6f90, 0x6f92, 0x6f93, 0x6f94, 0x6f96, 0x6f9a, 0x6f9f, 0x6fa0,\n  0x6fa5, 0x6fa6, 0x6fa7, 0x6fa8, 0x6fae, 0x6faf, 0x6fb0, 0x6fb5,\n  0x6fb6, 0x6fbc, 0x6fc5, 0x6fc7, 0x6fc8, 0x6fca,\n  /* 0x49 */\n  0x6fda, 0x6fde, 0x6fe8, 0x6fe9, 0x6ff0, 0x6ff5, 0x6ff9, 0x6ffc,\n  0x6ffd, 0x7000, 0x7005, 0x7006, 0x7007, 0x700d, 0x7017, 0x7020,\n  0x7023, 0x702f, 0x7034, 0x7037, 0x7039, 0x703c, 0x7043, 0x7044,\n  0x7048, 0x7049, 0x704a, 0x704b, 0x7054, 0x7055, 0x705d, 0x705e,\n  0x704e, 0x7064, 0x7065, 0x706c, 0x706e, 0x7075, 0x7076, 0x707e,\n  0x7081, 0x7085, 0x7086, 0x7094, 0x7095, 0x7096, 0x7097, 0x7098,\n  0x709b, 0x70a4, 0x70ab, 0x70b0, 0x70b1, 0x70b4, 0x70b7, 0x70ca,\n  0x70d1, 0x70d3, 0x70d4, 0x70d5, 0x70d6, 0x70d8, 0x70dc, 0x70e4,\n  0x70fa, 0x7103, 0x7104, 0x7105, 0x7106, 0x7107, 0x710b, 0x710c,\n  0x710f, 0x711e, 0x7120, 0x712b, 0x712d, 0x712f, 0x7130, 0x7131,\n  0x7138, 0x7141, 0x7145, 0x7146, 0x7147, 0x714a, 0x714b, 0x7150,\n  0x7152, 0x7157, 0x715a, 0x715c, 0x715e, 0x7160,\n  /* 0x4a */\n  0x7168, 0x7179, 0x7180, 0x7185, 0x7187, 0x718c, 0x7192, 0x719a,\n  0x719b, 0x71a0, 0x71a2, 0x71af, 0x71b0, 0x71b2, 0x71b3, 0x71ba,\n  0x71bf, 0x71c0, 0x71c1, 0x71c4, 0x71cb, 0x71cc, 0x71d3, 0x71d6,\n  0x71d9, 0x71da, 0x71dc, 0x71f8, 0x71fe, 0x7200, 0x7207, 0x7208,\n  0x7209, 0x7213, 0x7217, 0x721a, 0x721d, 0x721f, 0x7224, 0x722b,\n  0x722f, 0x7234, 0x7238, 0x7239, 0x7241, 0x7242, 0x7243, 0x7245,\n  0x724e, 0x724f, 0x7250, 0x7253, 0x7255, 0x7256, 0x725a, 0x725c,\n  0x725e, 0x7260, 0x7263, 0x7268, 0x726b, 0x726e, 0x726f, 0x7271,\n  0x7277, 0x7278, 0x727b, 0x727c, 0x727f, 0x7284, 0x7289, 0x728d,\n  0x728e, 0x7293, 0x729b, 0x72a8, 0x72ad, 0x72ae, 0x72b1, 0x72b4,\n  0x72be, 0x72c1, 0x72c7, 0x72c9, 0x72cc, 0x72d5, 0x72d6, 0x72d8,\n  0x72df, 0x72e5, 0x72f3, 0x72f4, 0x72fa, 0x72fb,\n  /* 0x4b */\n  0x72fe, 0x7302, 0x7304, 0x7305, 0x7307, 0x730b, 0x730d, 0x7312,\n  0x7313, 0x7318, 0x7319, 0x731e, 0x7322, 0x7324, 0x7327, 0x7328,\n  0x732c, 0x7331, 0x7332, 0x7335, 0x733a, 0x733b, 0x733d, 0x7343,\n  0x734d, 0x7350, 0x7352, 0x7356, 0x7358, 0x735d, 0x735e, 0x735f,\n  0x7360, 0x7366, 0x7367, 0x7369, 0x736b, 0x736c, 0x736e, 0x736f,\n  0x7371, 0x7377, 0x7379, 0x737c, 0x7380, 0x7381, 0x7383, 0x7385,\n  0x7386, 0x738e, 0x7390, 0x7393, 0x7395, 0x7397, 0x7398, 0x739c,\n  0x739e, 0x739f, 0x73a0, 0x73a2, 0x73a5, 0x73a6, 0x73aa, 0x73ab,\n  0x73ad, 0x73b5, 0x73b7, 0x73b9, 0x73bc, 0x73bd, 0x73bf, 0x73c5,\n  0x73c6, 0x73c9, 0x73cb, 0x73cc, 0x73cf, 0x73d2, 0x73d3, 0x73d6,\n  0x73d9, 0x73dd, 0x73e1, 0x73e3, 0x73e6, 0x73e7, 0x73e9, 0x73f4,\n  0x73f5, 0x73f7, 0x73f9, 0x73fa, 0x73fb, 0x73fd,\n  /* 0x4c */\n  0x73ff, 0x7400, 0x7401, 0x7404, 0x7407, 0x740a, 0x7411, 0x741a,\n  0x741b, 0x7424, 0x7426, 0x7428, 0x7429, 0x742a, 0x742b, 0x742c,\n  0x742d, 0x742e, 0x742f, 0x7430, 0x7431, 0x7439, 0x7440, 0x7443,\n  0x7444, 0x7446, 0x7447, 0x744b, 0x744d, 0x7451, 0x7452, 0x7457,\n  0x745d, 0x7462, 0x7466, 0x7467, 0x7468, 0x746b, 0x746d, 0x746e,\n  0x7471, 0x7472, 0x7480, 0x7481, 0x7485, 0x7486, 0x7487, 0x7489,\n  0x748f, 0x7490, 0x7491, 0x7492, 0x7498, 0x7499, 0x749a, 0x749c,\n  0x749f, 0x74a0, 0x74a1, 0x74a3, 0x74a6, 0x74a8, 0x74a9, 0x74aa,\n  0x74ab, 0x74ae, 0x74af, 0x74b1, 0x74b2, 0x74b5, 0x74b9, 0x74bb,\n  0x74bf, 0x74c8, 0x74c9, 0x74cc, 0x74d0, 0x74d3, 0x74d8, 0x74da,\n  0x74db, 0x74de, 0x74df, 0x74e4, 0x74e8, 0x74ea, 0x74eb, 0x74ef,\n  0x74f4, 0x74fa, 0x74fb, 0x74fc, 0x74ff, 0x7506,\n  /* 0x4d */\n  0x7512, 0x7516, 0x7517, 0x7520, 0x7521, 0x7524, 0x7527, 0x7529,\n  0x752a, 0x752f, 0x7536, 0x7539, 0x753d, 0x753e, 0x753f, 0x7540,\n  0x7543, 0x7547, 0x7548, 0x754e, 0x7550, 0x7552, 0x7557, 0x755e,\n  0x755f, 0x7561, 0x756f, 0x7571, 0x7579, 0x757a, 0x757b, 0x757c,\n  0x757d, 0x757e, 0x7581, 0x7585, 0x7590, 0x7592, 0x7593, 0x7595,\n  0x7599, 0x759c, 0x75a2, 0x75a4, 0x75b4, 0x75ba, 0x75bf, 0x75c0,\n  0x75c1, 0x75c4, 0x75c6, 0x75cc, 0x75ce, 0x75cf, 0x75d7, 0x75dc,\n  0x75df, 0x75e0, 0x75e1, 0x75e4, 0x75e7, 0x75ec, 0x75ee, 0x75ef,\n  0x75f1, 0x75f9, 0x7600, 0x7602, 0x7603, 0x7604, 0x7607, 0x7608,\n  0x760a, 0x760c, 0x760f, 0x7612, 0x7613, 0x7615, 0x7616, 0x7619,\n  0x761b, 0x761c, 0x761d, 0x761e, 0x7623, 0x7625, 0x7626, 0x7629,\n  0x762d, 0x7632, 0x7633, 0x7635, 0x7638, 0x7639,\n  /* 0x4e */\n  0x763a, 0x763c, 0x764a, 0x7640, 0x7641, 0x7643, 0x7644, 0x7645,\n  0x7649, 0x764b, 0x7655, 0x7659, 0x765f, 0x7664, 0x7665, 0x766d,\n  0x766e, 0x766f, 0x7671, 0x7674, 0x7681, 0x7685, 0x768c, 0x768d,\n  0x7695, 0x769b, 0x769c, 0x769d, 0x769f, 0x76a0, 0x76a2, 0x76a3,\n  0x76a4, 0x76a5, 0x76a6, 0x76a7, 0x76a8, 0x76aa, 0x76ad, 0x76bd,\n  0x76c1, 0x76c5, 0x76c9, 0x76cb, 0x76cc, 0x76ce, 0x76d4, 0x76d9,\n  0x76e0, 0x76e6, 0x76e8, 0x76ec, 0x76f0, 0x76f1, 0x76f6, 0x76f9,\n  0x76fc, 0x7700, 0x7706, 0x770a, 0x770e, 0x7712, 0x7714, 0x7715,\n  0x7717, 0x7719, 0x771a, 0x771c, 0x7722, 0x7728, 0x772d, 0x772e,\n  0x772f, 0x7734, 0x7735, 0x7736, 0x7739, 0x773d, 0x773e, 0x7742,\n  0x7745, 0x7746, 0x774a, 0x774d, 0x774e, 0x774f, 0x7752, 0x7756,\n  0x7757, 0x775c, 0x775e, 0x775f, 0x7760, 0x7762,\n  /* 0x4f */\n  0x7764, 0x7767, 0x776a, 0x776c, 0x7770, 0x7772, 0x7773, 0x7774,\n  0x777a, 0x777d, 0x7780, 0x7784, 0x778c, 0x778d, 0x7794, 0x7795,\n  0x7796, 0x779a, 0x779f, 0x77a2, 0x77a7, 0x77aa, 0x77ae, 0x77af,\n  0x77b1, 0x77b5, 0x77be, 0x77c3, 0x77c9, 0x77d1, 0x77d2, 0x77d5,\n  0x77d9, 0x77de, 0x77df, 0x77e0, 0x77e4, 0x77e6, 0x77ea, 0x77ec,\n  0x77f0, 0x77f1, 0x77f4, 0x77f8, 0x77fb, 0x7805, 0x7806, 0x7809,\n  0x780d, 0x780e, 0x7811, 0x781d, 0x7821, 0x7822, 0x7823, 0x782d,\n  0x782e, 0x7830, 0x7835, 0x7837, 0x7843, 0x7844, 0x7847, 0x7848,\n  0x784c, 0x784e, 0x7852, 0x785c, 0x785e, 0x7860, 0x7861, 0x7863,\n  0x7864, 0x7868, 0x786a, 0x786e, 0x787a, 0x787e, 0x788a, 0x788f,\n  0x7894, 0x7898, 0x78a1, 0x789d, 0x789e, 0x789f, 0x78a4, 0x78a8,\n  0x78ac, 0x78ad, 0x78b0, 0x78b1, 0x78b2, 0x78b3,\n  /* 0x50 */\n  0x78bb, 0x78bd, 0x78bf, 0x78c7, 0x78c8, 0x78c9, 0x78cc, 0x78ce,\n  0x78d2, 0x78d3, 0x78d5, 0x78d6, 0x78e4, 0x78db, 0x78df, 0x78e0,\n  0x78e1, 0x78e6, 0x78ea, 0x78f2, 0x78f3, 0x7900, 0x78f6, 0x78f7,\n  0x78fa, 0x78fb, 0x78ff, 0x7906, 0x790c, 0x7910, 0x791a, 0x791c,\n  0x791e, 0x791f, 0x7920, 0x7925, 0x7927, 0x7929, 0x792d, 0x7931,\n  0x7934, 0x7935, 0x793b, 0x793d, 0x793f, 0x7944, 0x7945, 0x7946,\n  0x794a, 0x794b, 0x794f, 0x7951, 0x7954, 0x7958, 0x795b, 0x795c,\n  0x7967, 0x7969, 0x796b, 0x7972, 0x7979, 0x797b, 0x797c, 0x797e,\n  0x798b, 0x798c, 0x7991, 0x7993, 0x7994, 0x7995, 0x7996, 0x7998,\n  0x799b, 0x799c, 0x79a1, 0x79a8, 0x79a9, 0x79ab, 0x79af, 0x79b1,\n  0x79b4, 0x79b8, 0x79bb, 0x79c2, 0x79c4, 0x79c7, 0x79c8, 0x79ca,\n  0x79cf, 0x79d4, 0x79d6, 0x79da, 0x79dd, 0x79de,\n  /* 0x51 */\n  0x79e0, 0x79e2, 0x79e5, 0x79ea, 0x79eb, 0x79ed, 0x79f1, 0x79f8,\n  0x79fc, 0x7a02, 0x7a03, 0x7a07, 0x7a09, 0x7a0a, 0x7a0c, 0x7a11,\n  0x7a15, 0x7a1b, 0x7a1e, 0x7a21, 0x7a27, 0x7a2b, 0x7a2d, 0x7a2f,\n  0x7a30, 0x7a34, 0x7a35, 0x7a38, 0x7a39, 0x7a3a, 0x7a44, 0x7a45,\n  0x7a47, 0x7a48, 0x7a4c, 0x7a55, 0x7a56, 0x7a59, 0x7a5c, 0x7a5d,\n  0x7a5f, 0x7a60, 0x7a65, 0x7a67, 0x7a6a, 0x7a6d, 0x7a75, 0x7a78,\n  0x7a7e, 0x7a80, 0x7a82, 0x7a85, 0x7a86, 0x7a8a, 0x7a8b, 0x7a90,\n  0x7a91, 0x7a94, 0x7a9e, 0x7aa0, 0x7aa3, 0x7aac, 0x7ab3, 0x7ab5,\n  0x7ab9, 0x7abb, 0x7abc, 0x7ac6, 0x7ac9, 0x7acc, 0x7ace, 0x7ad1,\n  0x7adb, 0x7ae8, 0x7ae9, 0x7aeb, 0x7aec, 0x7af1, 0x7af4, 0x7afb,\n  0x7afd, 0x7afe, 0x7b07, 0x7b14, 0x7b1f, 0x7b23, 0x7b27, 0x7b29,\n  0x7b2a, 0x7b2b, 0x7b2d, 0x7b2e, 0x7b2f, 0x7b30,\n  /* 0x52 */\n  0x7b31, 0x7b34, 0x7b3d, 0x7b3f, 0x7b40, 0x7b41, 0x7b47, 0x7b4e,\n  0x7b55, 0x7b60, 0x7b64, 0x7b66, 0x7b69, 0x7b6a, 0x7b6d, 0x7b6f,\n  0x7b72, 0x7b73, 0x7b77, 0x7b84, 0x7b89, 0x7b8e, 0x7b90, 0x7b91,\n  0x7b96, 0x7b9b, 0x7b9e, 0x7ba0, 0x7ba5, 0x7bac, 0x7baf, 0x7bb0,\n  0x7bb2, 0x7bb5, 0x7bb6, 0x7bba, 0x7bbb, 0x7bbc, 0x7bbd, 0x7bc2,\n  0x7bc5, 0x7bc8, 0x7bca, 0x7bd4, 0x7bd6, 0x7bd7, 0x7bd9, 0x7bda,\n  0x7bdb, 0x7be8, 0x7bea, 0x7bf2, 0x7bf4, 0x7bf5, 0x7bf8, 0x7bf9,\n  0x7bfa, 0x7bfc, 0x7bfe, 0x7c01, 0x7c02, 0x7c03, 0x7c04, 0x7c06,\n  0x7c09, 0x7c0b, 0x7c0c, 0x7c0e, 0x7c0f, 0x7c19, 0x7c1b, 0x7c20,\n  0x7c25, 0x7c26, 0x7c28, 0x7c2c, 0x7c31, 0x7c33, 0x7c34, 0x7c36,\n  0x7c39, 0x7c3a, 0x7c46, 0x7c4a, 0x7c55, 0x7c51, 0x7c52, 0x7c53,\n  0x7c59, 0x7c5a, 0x7c5b, 0x7c5c, 0x7c5d, 0x7c5e,\n  /* 0x53 */\n  0x7c61, 0x7c63, 0x7c67, 0x7c69, 0x7c6d, 0x7c6e, 0x7c70, 0x7c72,\n  0x7c79, 0x7c7c, 0x7c7d, 0x7c86, 0x7c87, 0x7c8f, 0x7c94, 0x7c9e,\n  0x7ca0, 0x7ca6, 0x7cb0, 0x7cb6, 0x7cb7, 0x7cba, 0x7cbb, 0x7cbc,\n  0x7cbf, 0x7cc4, 0x7cc7, 0x7cc8, 0x7cc9, 0x7ccd, 0x7ccf, 0x7cd3,\n  0x7cd4, 0x7cd5, 0x7cd7, 0x7cd9, 0x7cda, 0x7cdd, 0x7ce6, 0x7ce9,\n  0x7ceb, 0x7cf5, 0x7d03, 0x7d07, 0x7d08, 0x7d09, 0x7d0f, 0x7d11,\n  0x7d12, 0x7d13, 0x7d16, 0x7d1d, 0x7d1e, 0x7d23, 0x7d26, 0x7d2a,\n  0x7d2d, 0x7d31, 0x7d3c, 0x7d3d, 0x7d3e, 0x7d40, 0x7d41, 0x7d47,\n  0x7d48, 0x7d4d, 0x7d51, 0x7d53, 0x7d57, 0x7d59, 0x7d5a, 0x7d5c,\n  0x7d5d, 0x7d65, 0x7d67, 0x7d6a, 0x7d70, 0x7d78, 0x7d7a, 0x7d7b,\n  0x7d7f, 0x7d81, 0x7d82, 0x7d83, 0x7d85, 0x7d86, 0x7d88, 0x7d8b,\n  0x7d8c, 0x7d8d, 0x7d91, 0x7d96, 0x7d97, 0x7d9d,\n  /* 0x54 */\n  0x7d9e, 0x7da6, 0x7da7, 0x7daa, 0x7db3, 0x7db6, 0x7db7, 0x7db9,\n  0x7dc2, 0x7dc3, 0x7dc4, 0x7dc5, 0x7dc6, 0x7dcc, 0x7dcd, 0x7dce,\n  0x7dd7, 0x7dd9, 0x7e00, 0x7de2, 0x7de5, 0x7de6, 0x7dea, 0x7deb,\n  0x7ded, 0x7df1, 0x7df5, 0x7df6, 0x7df9, 0x7dfa, 0x7e08, 0x7e10,\n  0x7e11, 0x7e15, 0x7e17, 0x7e1c, 0x7e1d, 0x7e20, 0x7e27, 0x7e28,\n  0x7e2c, 0x7e2d, 0x7e2f, 0x7e33, 0x7e36, 0x7e3f, 0x7e44, 0x7e45,\n  0x7e47, 0x7e4e, 0x7e50, 0x7e52, 0x7e58, 0x7e5f, 0x7e61, 0x7e62,\n  0x7e65, 0x7e6b, 0x7e6e, 0x7e6f, 0x7e73, 0x7e78, 0x7e7e, 0x7e81,\n  0x7e86, 0x7e87, 0x7e8a, 0x7e8d, 0x7e91, 0x7e95, 0x7e98, 0x7e9a,\n  0x7e9d, 0x7e9e, 0x7f3c, 0x7f3b, 0x7f3d, 0x7f3e, 0x7f3f, 0x7f43,\n  0x7f44, 0x7f47, 0x7f4f, 0x7f52, 0x7f53, 0x7f5b, 0x7f5c, 0x7f5d,\n  0x7f61, 0x7f63, 0x7f64, 0x7f65, 0x7f66, 0x7f6d,\n  /* 0x55 */\n  0x7f71, 0x7f7d, 0x7f7e, 0x7f7f, 0x7f80, 0x7f8b, 0x7f8d, 0x7f8f,\n  0x7f90, 0x7f91, 0x7f96, 0x7f97, 0x7f9c, 0x7fa1, 0x7fa2, 0x7fa6,\n  0x7faa, 0x7fad, 0x7fb4, 0x7fbc, 0x7fbf, 0x7fc0, 0x7fc3, 0x7fc8,\n  0x7fce, 0x7fcf, 0x7fdb, 0x7fdf, 0x7fe3, 0x7fe5, 0x7fe8, 0x7fec,\n  0x7fee, 0x7fef, 0x7ff2, 0x7ffa, 0x7ffd, 0x7ffe, 0x7fff, 0x8007,\n  0x8008, 0x800a, 0x800d, 0x800e, 0x800f, 0x8011, 0x8013, 0x8014,\n  0x8016, 0x801d, 0x801e, 0x801f, 0x8020, 0x8024, 0x8026, 0x802c,\n  0x802e, 0x8030, 0x8034, 0x8035, 0x8037, 0x8039, 0x803a, 0x803c,\n  0x803e, 0x8040, 0x8044, 0x8060, 0x8064, 0x8066, 0x806d, 0x8071,\n  0x8075, 0x8081, 0x8088, 0x808e, 0x809c, 0x809e, 0x80a6, 0x80a7,\n  0x80ab, 0x80b8, 0x80b9, 0x80c8, 0x80cd, 0x80cf, 0x80d2, 0x80d4,\n  0x80d5, 0x80d7, 0x80d8, 0x80e0, 0x80ed, 0x80ee,\n  /* 0x56 */\n  0x80f0, 0x80f2, 0x80f3, 0x80f6, 0x80f9, 0x80fa, 0x80fe, 0x8103,\n  0x810b, 0x8116, 0x8117, 0x8118, 0x811c, 0x811e, 0x8120, 0x8124,\n  0x8127, 0x812c, 0x8130, 0x8135, 0x813a, 0x813c, 0x8145, 0x8147,\n  0x814a, 0x814c, 0x8152, 0x8157, 0x8160, 0x8161, 0x8167, 0x8168,\n  0x8169, 0x816d, 0x816f, 0x8177, 0x8181, 0x8190, 0x8184, 0x8185,\n  0x8186, 0x818b, 0x818e, 0x8196, 0x8198, 0x819b, 0x819e, 0x81a2,\n  0x81ae, 0x81b2, 0x81b4, 0x81bb, 0x81cb, 0x81c3, 0x81c5, 0x81ca,\n  0x81ce, 0x81cf, 0x81d5, 0x81d7, 0x81db, 0x81dd, 0x81de, 0x81e1,\n  0x81e4, 0x81eb, 0x81ec, 0x81f0, 0x81f1, 0x81f2, 0x81f5, 0x81f6,\n  0x81f8, 0x81f9, 0x81fd, 0x81ff, 0x8200, 0x8203, 0x820f, 0x8213,\n  0x8214, 0x8219, 0x821a, 0x821d, 0x8221, 0x8222, 0x8228, 0x8232,\n  0x8234, 0x823a, 0x8243, 0x8244, 0x8245, 0x8246,\n  /* 0x57 */\n  0x824b, 0x824e, 0x824f, 0x8251, 0x8256, 0x825c, 0x8260, 0x8263,\n  0x8267, 0x826d, 0x8274, 0x827b, 0x827d, 0x827f, 0x8280, 0x8281,\n  0x8283, 0x8284, 0x8287, 0x8289, 0x828a, 0x828e, 0x8291, 0x8294,\n  0x8296, 0x8298, 0x829a, 0x829b, 0x82a0, 0x82a1, 0x82a3, 0x82a4,\n  0x82a7, 0x82a8, 0x82a9, 0x82aa, 0x82ae, 0x82b0, 0x82b2, 0x82b4,\n  0x82b7, 0x82ba, 0x82bc, 0x82be, 0x82bf, 0x82c6, 0x82d0, 0x82d5,\n  0x82da, 0x82e0, 0x82e2, 0x82e4, 0x82e8, 0x82ea, 0x82ed, 0x82ef,\n  0x82f6, 0x82f7, 0x82fd, 0x82fe, 0x8300, 0x8301, 0x8307, 0x8308,\n  0x830a, 0x830b, 0x8354, 0x831b, 0x831d, 0x831e, 0x831f, 0x8321,\n  0x8322, 0x832c, 0x832d, 0x832e, 0x8330, 0x8333, 0x8337, 0x833a,\n  0x833c, 0x833d, 0x8342, 0x8343, 0x8344, 0x8347, 0x834d, 0x834e,\n  0x8351, 0x8355, 0x8356, 0x8357, 0x8370, 0x8378,\n  /* 0x58 */\n  0x837d, 0x837f, 0x8380, 0x8382, 0x8384, 0x8386, 0x838d, 0x8392,\n  0x8394, 0x8395, 0x8398, 0x8399, 0x839b, 0x839c, 0x839d, 0x83a6,\n  0x83a7, 0x83a9, 0x83ac, 0x83be, 0x83bf, 0x83c0, 0x83c7, 0x83c9,\n  0x83cf, 0x83d0, 0x83d1, 0x83d4, 0x83dd, 0x8353, 0x83e8, 0x83ea,\n  0x83f6, 0x83f8, 0x83f9, 0x83fc, 0x8401, 0x8406, 0x840a, 0x840f,\n  0x8411, 0x8415, 0x8419, 0x83ad, 0x842f, 0x8439, 0x8445, 0x8447,\n  0x8448, 0x844a, 0x844d, 0x844f, 0x8451, 0x8452, 0x8456, 0x8458,\n  0x8459, 0x845a, 0x845c, 0x8460, 0x8464, 0x8465, 0x8467, 0x846a,\n  0x8470, 0x8473, 0x8474, 0x8476, 0x8478, 0x847c, 0x847d, 0x8481,\n  0x8485, 0x8492, 0x8493, 0x8495, 0x849e, 0x84a6, 0x84a8, 0x84a9,\n  0x84aa, 0x84af, 0x84b1, 0x84b4, 0x84ba, 0x84bd, 0x84be, 0x84c0,\n  0x84c2, 0x84c7, 0x84c8, 0x84cc, 0x84cf, 0x84d3,\n  /* 0x59 */\n  0x84dc, 0x84e7, 0x84ea, 0x84ef, 0x84f0, 0x84f1, 0x84f2, 0x84f7,\n  0x8532, 0x84fa, 0x84fb, 0x84fd, 0x8502, 0x8503, 0x8507, 0x850c,\n  0x850e, 0x8510, 0x851c, 0x851e, 0x8522, 0x8523, 0x8524, 0x8525,\n  0x8527, 0x852a, 0x852b, 0x852f, 0x8533, 0x8534, 0x8536, 0x853f,\n  0x8546, 0x854f, 0x8550, 0x8551, 0x8552, 0x8553, 0x8556, 0x8559,\n  0x855c, 0x855d, 0x855e, 0x855f, 0x8560, 0x8561, 0x8562, 0x8564,\n  0x856b, 0x856f, 0x8579, 0x857a, 0x857b, 0x857d, 0x857f, 0x8581,\n  0x8585, 0x8586, 0x8589, 0x858b, 0x858c, 0x858f, 0x8593, 0x8598,\n  0x859d, 0x859f, 0x85a0, 0x85a2, 0x85a5, 0x85a7, 0x85b4, 0x85b6,\n  0x85b7, 0x85b8, 0x85bc, 0x85bd, 0x85be, 0x85bf, 0x85c2, 0x85c7,\n  0x85ca, 0x85cb, 0x85ce, 0x85ad, 0x85d8, 0x85da, 0x85df, 0x85e0,\n  0x85e6, 0x85e8, 0x85ed, 0x85f3, 0x85f6, 0x85fc,\n  /* 0x5a */\n  0x85ff, 0x8600, 0x8604, 0x8605, 0x860d, 0x860e, 0x8610, 0x8611,\n  0x8612, 0x8618, 0x8619, 0x861b, 0x861e, 0x8621, 0x8627, 0x8629,\n  0x8636, 0x8638, 0x863a, 0x863c, 0x863d, 0x8640, 0x8642, 0x8646,\n  0x8652, 0x8653, 0x8656, 0x8657, 0x8658, 0x8659, 0x865d, 0x8660,\n  0x8661, 0x8662, 0x8663, 0x8664, 0x8669, 0x866c, 0x866f, 0x8675,\n  0x8676, 0x8677, 0x867a, 0x868d, 0x8691, 0x8696, 0x8698, 0x869a,\n  0x869c, 0x86a1, 0x86a6, 0x86a7, 0x86a8, 0x86ad, 0x86b1, 0x86b3,\n  0x86b4, 0x86b5, 0x86b7, 0x86b8, 0x86b9, 0x86bf, 0x86c0, 0x86c1,\n  0x86c3, 0x86c5, 0x86d1, 0x86d2, 0x86d5, 0x86d7, 0x86da, 0x86dc,\n  0x86e0, 0x86e3, 0x86e5, 0x86e7, 0x8688, 0x86fa, 0x86fc, 0x86fd,\n  0x8704, 0x8705, 0x8707, 0x870b, 0x870e, 0x870f, 0x8710, 0x8713,\n  0x8714, 0x8719, 0x871e, 0x871f, 0x8721, 0x8723,\n  /* 0x5b */\n  0x8728, 0x872e, 0x872f, 0x8731, 0x8732, 0x8739, 0x873a, 0x873c,\n  0x873d, 0x873e, 0x8740, 0x8743, 0x8745, 0x874d, 0x8758, 0x875d,\n  0x8761, 0x8764, 0x8765, 0x876f, 0x8771, 0x8772, 0x877b, 0x8783,\n  0x8784, 0x8785, 0x8786, 0x8787, 0x8788, 0x8789, 0x878b, 0x878c,\n  0x8790, 0x8793, 0x8795, 0x8797, 0x8798, 0x8799, 0x879e, 0x87a0,\n  0x87a3, 0x87a7, 0x87ac, 0x87ad, 0x87ae, 0x87b1, 0x87b5, 0x87be,\n  0x87bf, 0x87c1, 0x87c8, 0x87c9, 0x87ca, 0x87ce, 0x87d5, 0x87d6,\n  0x87d9, 0x87da, 0x87dc, 0x87df, 0x87e2, 0x87e3, 0x87e4, 0x87ea,\n  0x87eb, 0x87ed, 0x87f1, 0x87f3, 0x87f8, 0x87fa, 0x87ff, 0x8801,\n  0x8803, 0x8806, 0x8809, 0x880a, 0x880b, 0x8810, 0x8819, 0x8812,\n  0x8813, 0x8814, 0x8818, 0x881a, 0x881b, 0x881c, 0x881e, 0x881f,\n  0x8828, 0x882d, 0x882e, 0x8830, 0x8832, 0x8835,\n  /* 0x5c */\n  0x883a, 0x883c, 0x8841, 0x8843, 0x8845, 0x8848, 0x8849, 0x884a,\n  0x884b, 0x884e, 0x8851, 0x8855, 0x8856, 0x8858, 0x885a, 0x885c,\n  0x885f, 0x8860, 0x8864, 0x8869, 0x8871, 0x8879, 0x887b, 0x8880,\n  0x8898, 0x889a, 0x889b, 0x889c, 0x889f, 0x88a0, 0x88a8, 0x88aa,\n  0x88ba, 0x88bd, 0x88be, 0x88c0, 0x88ca, 0x88cb, 0x88cc, 0x88cd,\n  0x88ce, 0x88d1, 0x88d2, 0x88d3, 0x88db, 0x88de, 0x88e7, 0x88ef,\n  0x88f0, 0x88f1, 0x88f5, 0x88f7, 0x8901, 0x8906, 0x890d, 0x890e,\n  0x890f, 0x8915, 0x8916, 0x8918, 0x8919, 0x891a, 0x891c, 0x8920,\n  0x8926, 0x8927, 0x8928, 0x8930, 0x8931, 0x8932, 0x8935, 0x8939,\n  0x893a, 0x893e, 0x8940, 0x8942, 0x8945, 0x8946, 0x8949, 0x894f,\n  0x8952, 0x8957, 0x895a, 0x895b, 0x895c, 0x8961, 0x8962, 0x8963,\n  0x896b, 0x896e, 0x8970, 0x8973, 0x8975, 0x897a,\n  /* 0x5d */\n  0x897b, 0x897c, 0x897d, 0x8989, 0x898d, 0x8990, 0x8994, 0x8995,\n  0x899b, 0x899c, 0x899f, 0x89a0, 0x89a5, 0x89b0, 0x89b4, 0x89b5,\n  0x89b6, 0x89b7, 0x89bc, 0x89d4, 0x89d5, 0x89d6, 0x89d7, 0x89d8,\n  0x89e5, 0x89e9, 0x89eb, 0x89ed, 0x89f1, 0x89f3, 0x89f6, 0x89f9,\n  0x89fd, 0x89ff, 0x8a04, 0x8a05, 0x8a07, 0x8a0f, 0x8a11, 0x8a12,\n  0x8a14, 0x8a15, 0x8a1e, 0x8a20, 0x8a22, 0x8a24, 0x8a26, 0x8a2b,\n  0x8a2c, 0x8a2f, 0x8a35, 0x8a37, 0x8a3d, 0x8a3e, 0x8a40, 0x8a43,\n  0x8a45, 0x8a47, 0x8a49, 0x8a4d, 0x8a4e, 0x8a53, 0x8a56, 0x8a57,\n  0x8a58, 0x8a5c, 0x8a5d, 0x8a61, 0x8a65, 0x8a67, 0x8a75, 0x8a76,\n  0x8a77, 0x8a79, 0x8a7a, 0x8a7b, 0x8a7e, 0x8a7f, 0x8a80, 0x8a83,\n  0x8a86, 0x8a8b, 0x8a8f, 0x8a90, 0x8a92, 0x8a96, 0x8a97, 0x8a99,\n  0x8a9f, 0x8aa7, 0x8aa9, 0x8aae, 0x8aaf, 0x8ab3,\n  /* 0x5e */\n  0x8ab6, 0x8ab7, 0x8abb, 0x8abe, 0x8ac3, 0x8ac6, 0x8ac8, 0x8ac9,\n  0x8aca, 0x8ad1, 0x8ad3, 0x8ad4, 0x8ad5, 0x8ad7, 0x8add, 0x8adf,\n  0x8aec, 0x8af0, 0x8af4, 0x8af5, 0x8af6, 0x8afc, 0x8aff, 0x8b05,\n  0x8b06, 0x8b0b, 0x8b11, 0x8b1c, 0x8b1e, 0x8b1f, 0x8b0a, 0x8b2d,\n  0x8b30, 0x8b37, 0x8b3c, 0x8b42, 0x8b43, 0x8b44, 0x8b45, 0x8b46,\n  0x8b48, 0x8b52, 0x8b53, 0x8b54, 0x8b59, 0x8b4d, 0x8b5e, 0x8b63,\n  0x8b6d, 0x8b76, 0x8b78, 0x8b79, 0x8b7c, 0x8b7e, 0x8b81, 0x8b84,\n  0x8b85, 0x8b8b, 0x8b8d, 0x8b8f, 0x8b94, 0x8b95, 0x8b9c, 0x8b9e,\n  0x8b9f, 0x8c38, 0x8c39, 0x8c3d, 0x8c3e, 0x8c45, 0x8c47, 0x8c49,\n  0x8c4b, 0x8c4f, 0x8c51, 0x8c53, 0x8c54, 0x8c57, 0x8c58, 0x8c5b,\n  0x8c5d, 0x8c59, 0x8c63, 0x8c64, 0x8c66, 0x8c68, 0x8c69, 0x8c6d,\n  0x8c73, 0x8c75, 0x8c76, 0x8c7b, 0x8c7e, 0x8c86,\n  /* 0x5f */\n  0x8c87, 0x8c8b, 0x8c90, 0x8c92, 0x8c93, 0x8c99, 0x8c9b, 0x8c9c,\n  0x8ca4, 0x8cb9, 0x8cba, 0x8cc5, 0x8cc6, 0x8cc9, 0x8ccb, 0x8ccf,\n  0x8cd6, 0x8cd5, 0x8cd9, 0x8cdd, 0x8ce1, 0x8ce8, 0x8cec, 0x8cef,\n  0x8cf0, 0x8cf2, 0x8cf5, 0x8cf7, 0x8cf8, 0x8cfe, 0x8cff, 0x8d01,\n  0x8d03, 0x8d09, 0x8d12, 0x8d17, 0x8d1b, 0x8d65, 0x8d69, 0x8d6c,\n  0x8d6e, 0x8d7f, 0x8d82, 0x8d84, 0x8d88, 0x8d8d, 0x8d90, 0x8d91,\n  0x8d95, 0x8d9e, 0x8d9f, 0x8da0, 0x8da6, 0x8dab, 0x8dac, 0x8daf,\n  0x8db2, 0x8db5, 0x8db7, 0x8db9, 0x8dbb, 0x8dc0, 0x8dc5, 0x8dc6,\n  0x8dc7, 0x8dc8, 0x8dca, 0x8dce, 0x8dd1, 0x8dd4, 0x8dd5, 0x8dd7,\n  0x8dd9, 0x8de4, 0x8de5, 0x8de7, 0x8dec, 0x8df0, 0x8dbc, 0x8df1,\n  0x8df2, 0x8df4, 0x8dfd, 0x8e01, 0x8e04, 0x8e05, 0x8e06, 0x8e0b,\n  0x8e11, 0x8e14, 0x8e16, 0x8e20, 0x8e21, 0x8e22,\n  /* 0x60 */\n  0x8e23, 0x8e26, 0x8e27, 0x8e31, 0x8e33, 0x8e36, 0x8e37, 0x8e38,\n  0x8e39, 0x8e3d, 0x8e40, 0x8e41, 0x8e4b, 0x8e4d, 0x8e4e, 0x8e4f,\n  0x8e54, 0x8e5b, 0x8e5c, 0x8e5d, 0x8e5e, 0x8e61, 0x8e62, 0x8e69,\n  0x8e6c, 0x8e6d, 0x8e6f, 0x8e70, 0x8e71, 0x8e79, 0x8e7a, 0x8e7b,\n  0x8e82, 0x8e83, 0x8e89, 0x8e90, 0x8e92, 0x8e95, 0x8e9a, 0x8e9b,\n  0x8e9d, 0x8e9e, 0x8ea2, 0x8ea7, 0x8ea9, 0x8ead, 0x8eae, 0x8eb3,\n  0x8eb5, 0x8eba, 0x8ebb, 0x8ec0, 0x8ec1, 0x8ec3, 0x8ec4, 0x8ec7,\n  0x8ecf, 0x8ed1, 0x8ed4, 0x8edc, 0x8ee8, 0x8eee, 0x8ef0, 0x8ef1,\n  0x8ef7, 0x8ef9, 0x8efa, 0x8eed, 0x8f00, 0x8f02, 0x8f07, 0x8f08,\n  0x8f0f, 0x8f10, 0x8f16, 0x8f17, 0x8f18, 0x8f1e, 0x8f20, 0x8f21,\n  0x8f23, 0x8f25, 0x8f27, 0x8f28, 0x8f2c, 0x8f2d, 0x8f2e, 0x8f34,\n  0x8f35, 0x8f36, 0x8f37, 0x8f3a, 0x8f40, 0x8f41,\n  /* 0x61 */\n  0x8f43, 0x8f47, 0x8f4f, 0x8f51, 0x8f52, 0x8f53, 0x8f54, 0x8f55,\n  0x8f58, 0x8f5d, 0x8f5e, 0x8f65, 0x8f9d, 0x8fa0, 0x8fa1, 0x8fa4,\n  0x8fa5, 0x8fa6, 0x8fb5, 0x8fb6, 0x8fb8, 0x8fbe, 0x8fc0, 0x8fc1,\n  0x8fc6, 0x8fca, 0x8fcb, 0x8fcd, 0x8fd0, 0x8fd2, 0x8fd3, 0x8fd5,\n  0x8fe0, 0x8fe3, 0x8fe4, 0x8fe8, 0x8fee, 0x8ff1, 0x8ff5, 0x8ff6,\n  0x8ffb, 0x8ffe, 0x9002, 0x9004, 0x9008, 0x900c, 0x9018, 0x901b,\n  0x9028, 0x9029, 0x902f, 0x902a, 0x902c, 0x902d, 0x9033, 0x9034,\n  0x9037, 0x903f, 0x9043, 0x9044, 0x904c, 0x905b, 0x905d, 0x9062,\n  0x9066, 0x9067, 0x906c, 0x9070, 0x9074, 0x9079, 0x9085, 0x9088,\n  0x908b, 0x908c, 0x908e, 0x9090, 0x9095, 0x9097, 0x9098, 0x9099,\n  0x909b, 0x90a0, 0x90a1, 0x90a2, 0x90a5, 0x90b0, 0x90b2, 0x90b3,\n  0x90b4, 0x90b6, 0x90bd, 0x90cc, 0x90be, 0x90c3,\n  /* 0x62 */\n  0x90c4, 0x90c5, 0x90c7, 0x90c8, 0x90d5, 0x90d7, 0x90d8, 0x90d9,\n  0x90dc, 0x90dd, 0x90df, 0x90e5, 0x90d2, 0x90f6, 0x90eb, 0x90ef,\n  0x90f0, 0x90f4, 0x90fe, 0x90ff, 0x9100, 0x9104, 0x9105, 0x9106,\n  0x9108, 0x910d, 0x9110, 0x9114, 0x9116, 0x9117, 0x9118, 0x911a,\n  0x911c, 0x911e, 0x9120, 0x9125, 0x9122, 0x9123, 0x9127, 0x9129,\n  0x912e, 0x912f, 0x9131, 0x9134, 0x9136, 0x9137, 0x9139, 0x913a,\n  0x913c, 0x913d, 0x9143, 0x9147, 0x9148, 0x914f, 0x9153, 0x9157,\n  0x9159, 0x915a, 0x915b, 0x9161, 0x9164, 0x9167, 0x916d, 0x9174,\n  0x9179, 0x917a, 0x917b, 0x9181, 0x9183, 0x9185, 0x9186, 0x918a,\n  0x918e, 0x9191, 0x9193, 0x9194, 0x9195, 0x9198, 0x919e, 0x91a1,\n  0x91a6, 0x91a8, 0x91ac, 0x91ad, 0x91ae, 0x91b0, 0x91b1, 0x91b2,\n  0x91b3, 0x91b6, 0x91bb, 0x91bc, 0x91bd, 0x91bf,\n  /* 0x63 */\n  0x91c2, 0x91c3, 0x91c5, 0x91d3, 0x91d4, 0x91d7, 0x91d9, 0x91da,\n  0x91de, 0x91e4, 0x91e5, 0x91e9, 0x91ea, 0x91ec, 0x91ed, 0x91ee,\n  0x91ef, 0x91f0, 0x91f1, 0x91f7, 0x91f9, 0x91fb, 0x91fd, 0x9200,\n  0x9201, 0x9204, 0x9205, 0x9206, 0x9207, 0x9209, 0x920a, 0x920c,\n  0x9210, 0x9212, 0x9213, 0x9216, 0x9218, 0x921c, 0x921d, 0x9223,\n  0x9224, 0x9225, 0x9226, 0x9228, 0x922e, 0x922f, 0x9230, 0x9233,\n  0x9235, 0x9236, 0x9238, 0x9239, 0x923a, 0x923c, 0x923e, 0x9240,\n  0x9242, 0x9243, 0x9246, 0x9247, 0x924a, 0x924d, 0x924e, 0x924f,\n  0x9251, 0x9258, 0x9259, 0x925c, 0x925d, 0x9260, 0x9261, 0x9265,\n  0x9267, 0x9268, 0x9269, 0x926e, 0x926f, 0x9270, 0x9275, 0x9276,\n  0x9277, 0x9278, 0x9279, 0x927b, 0x927c, 0x927d, 0x927f, 0x9288,\n  0x9289, 0x928a, 0x928d, 0x928e, 0x9292, 0x9297,\n  /* 0x64 */\n  0x9299, 0x929f, 0x92a0, 0x92a4, 0x92a5, 0x92a7, 0x92a8, 0x92ab,\n  0x92af, 0x92b2, 0x92b6, 0x92b8, 0x92ba, 0x92bb, 0x92bc, 0x92bd,\n  0x92bf, 0x92c0, 0x92c1, 0x92c2, 0x92c3, 0x92c5, 0x92c6, 0x92c7,\n  0x92c8, 0x92cb, 0x92cc, 0x92cd, 0x92ce, 0x92d0, 0x92d3, 0x92d5,\n  0x92d7, 0x92d8, 0x92d9, 0x92dc, 0x92dd, 0x92df, 0x92e0, 0x92e1,\n  0x92e3, 0x92e5, 0x92e7, 0x92e8, 0x92ec, 0x92ee, 0x92f0, 0x92f9,\n  0x92fb, 0x92ff, 0x9300, 0x9302, 0x9308, 0x930d, 0x9311, 0x9314,\n  0x9315, 0x931c, 0x931d, 0x931e, 0x931f, 0x9321, 0x9324, 0x9325,\n  0x9327, 0x9329, 0x932a, 0x9333, 0x9334, 0x9336, 0x9337, 0x9347,\n  0x9348, 0x9349, 0x9350, 0x9351, 0x9352, 0x9355, 0x9357, 0x9358,\n  0x935a, 0x935e, 0x9364, 0x9365, 0x9367, 0x9369, 0x936a, 0x936d,\n  0x936f, 0x9370, 0x9371, 0x9373, 0x9374, 0x9376,\n  /* 0x65 */\n  0x937a, 0x937d, 0x937f, 0x9380, 0x9381, 0x9382, 0x9388, 0x938a,\n  0x938b, 0x938d, 0x938f, 0x9392, 0x9395, 0x9398, 0x939b, 0x939e,\n  0x93a1, 0x93a3, 0x93a4, 0x93a6, 0x93a8, 0x93ab, 0x93b4, 0x93b5,\n  0x93b6, 0x93ba, 0x93a9, 0x93c1, 0x93c4, 0x93c5, 0x93c6, 0x93c7,\n  0x93c9, 0x93ca, 0x93cb, 0x93cc, 0x93cd, 0x93d3, 0x93d9, 0x93dc,\n  0x93de, 0x93df, 0x93e2, 0x93e6, 0x93e7, 0x93f9, 0x93f7, 0x93f8,\n  0x93fa, 0x93fb, 0x93fd, 0x9401, 0x9402, 0x9404, 0x9408, 0x9409,\n  0x940d, 0x940e, 0x940f, 0x9415, 0x9416, 0x9417, 0x941f, 0x942e,\n  0x942f, 0x9431, 0x9432, 0x9433, 0x9434, 0x943b, 0x943f, 0x943d,\n  0x9443, 0x9445, 0x9448, 0x944a, 0x944c, 0x9455, 0x9459, 0x945c,\n  0x945f, 0x9461, 0x9463, 0x9468, 0x946b, 0x946d, 0x946e, 0x946f,\n  0x9471, 0x9472, 0x9484, 0x9483, 0x9578, 0x9579,\n  /* 0x66 */\n  0x957e, 0x9584, 0x9588, 0x958c, 0x958d, 0x958e, 0x959d, 0x959e,\n  0x959f, 0x95a1, 0x95a6, 0x95a9, 0x95ab, 0x95ac, 0x95b4, 0x95b6,\n  0x95ba, 0x95bd, 0x95bf, 0x95c6, 0x95c8, 0x95c9, 0x95cb, 0x95d0,\n  0x95d1, 0x95d2, 0x95d3, 0x95d9, 0x95da, 0x95dd, 0x95de, 0x95df,\n  0x95e0, 0x95e4, 0x95e6, 0x961d, 0x961e, 0x9622, 0x9624, 0x9625,\n  0x9626, 0x962c, 0x9631, 0x9633, 0x9637, 0x9638, 0x9639, 0x963a,\n  0x963c, 0x963d, 0x9641, 0x9652, 0x9654, 0x9656, 0x9657, 0x9658,\n  0x9661, 0x966e, 0x9674, 0x967b, 0x967c, 0x967e, 0x967f, 0x9681,\n  0x9682, 0x9683, 0x9684, 0x9689, 0x9691, 0x9696, 0x969a, 0x969d,\n  0x969f, 0x96a4, 0x96a5, 0x96a6, 0x96a9, 0x96ae, 0x96af, 0x96b3,\n  0x96ba, 0x96ca, 0x96d2, 0x5db2, 0x96d8, 0x96da, 0x96dd, 0x96de,\n  0x96df, 0x96e9, 0x96ef, 0x96f1, 0x96fa, 0x9702,\n  /* 0x67 */\n  0x9703, 0x9705, 0x9709, 0x971a, 0x971b, 0x971d, 0x9721, 0x9722,\n  0x9723, 0x9728, 0x9731, 0x9733, 0x9741, 0x9743, 0x974a, 0x974e,\n  0x974f, 0x9755, 0x9757, 0x9758, 0x975a, 0x975b, 0x9763, 0x9767,\n  0x976a, 0x976e, 0x9773, 0x9776, 0x9777, 0x9778, 0x977b, 0x977d,\n  0x977f, 0x9780, 0x9789, 0x9795, 0x9796, 0x9797, 0x9799, 0x979a,\n  0x979e, 0x979f, 0x97a2, 0x97ac, 0x97ae, 0x97b1, 0x97b2, 0x97b5,\n  0x97b6, 0x97b8, 0x97b9, 0x97ba, 0x97bc, 0x97be, 0x97bf, 0x97c1,\n  0x97c4, 0x97c5, 0x97c7, 0x97c9, 0x97ca, 0x97cc, 0x97cd, 0x97ce,\n  0x97d0, 0x97d1, 0x97d4, 0x97d7, 0x97d8, 0x97d9, 0x97dd, 0x97de,\n  0x97e0, 0x97db, 0x97e1, 0x97e4, 0x97ef, 0x97f1, 0x97f4, 0x97f7,\n  0x97f8, 0x97fa, 0x9807, 0x980a, 0x9819, 0x980d, 0x980e, 0x9814,\n  0x9816, 0x981c, 0x981e, 0x9820, 0x9823, 0x9826,\n  /* 0x68 */\n  0x982b, 0x982e, 0x982f, 0x9830, 0x9832, 0x9833, 0x9835, 0x9825,\n  0x983e, 0x9844, 0x9847, 0x984a, 0x9851, 0x9852, 0x9853, 0x9856,\n  0x9857, 0x9859, 0x985a, 0x9862, 0x9863, 0x9865, 0x9866, 0x986a,\n  0x986c, 0x98ab, 0x98ad, 0x98ae, 0x98b0, 0x98b4, 0x98b7, 0x98b8,\n  0x98ba, 0x98bb, 0x98bf, 0x98c2, 0x98c5, 0x98c8, 0x98cc, 0x98e1,\n  0x98e3, 0x98e5, 0x98e6, 0x98e7, 0x98ea, 0x98f3, 0x98f6, 0x9902,\n  0x9907, 0x9908, 0x9911, 0x9915, 0x9916, 0x9917, 0x991a, 0x991b,\n  0x991c, 0x991f, 0x9922, 0x9926, 0x9927, 0x992b, 0x9931, 0x9932,\n  0x9933, 0x9934, 0x9935, 0x9939, 0x993a, 0x993b, 0x993c, 0x9940,\n  0x9941, 0x9946, 0x9947, 0x9948, 0x994d, 0x994e, 0x9954, 0x9958,\n  0x9959, 0x995b, 0x995c, 0x995e, 0x995f, 0x9960, 0x999b, 0x999d,\n  0x999f, 0x99a6, 0x99b0, 0x99b1, 0x99b2, 0x99b5,\n  /* 0x69 */\n  0x99b9, 0x99ba, 0x99bd, 0x99bf, 0x99c3, 0x99c9, 0x99d3, 0x99d4,\n  0x99d9, 0x99da, 0x99dc, 0x99de, 0x99e7, 0x99ea, 0x99eb, 0x99ec,\n  0x99f0, 0x99f4, 0x99f5, 0x99f9, 0x99fd, 0x99fe, 0x9a02, 0x9a03,\n  0x9a04, 0x9a0b, 0x9a0c, 0x9a10, 0x9a11, 0x9a16, 0x9a1e, 0x9a20,\n  0x9a22, 0x9a23, 0x9a24, 0x9a27, 0x9a2d, 0x9a2e, 0x9a33, 0x9a35,\n  0x9a36, 0x9a38, 0x9a47, 0x9a41, 0x9a44, 0x9a4a, 0x9a4b, 0x9a4c,\n  0x9a4e, 0x9a51, 0x9a54, 0x9a56, 0x9a5d, 0x9aaa, 0x9aac, 0x9aae,\n  0x9aaf, 0x9ab2, 0x9ab4, 0x9ab5, 0x9ab6, 0x9ab9, 0x9abb, 0x9abe,\n  0x9abf, 0x9ac1, 0x9ac3, 0x9ac6, 0x9ac8, 0x9ace, 0x9ad0, 0x9ad2,\n  0x9ad5, 0x9ad6, 0x9ad7, 0x9adb, 0x9adc, 0x9ae0, 0x9ae4, 0x9ae5,\n  0x9ae7, 0x9ae9, 0x9aec, 0x9af2, 0x9af3, 0x9af5, 0x9af9, 0x9afa,\n  0x9afd, 0x9aff, 0x9b00, 0x9b01, 0x9b02, 0x9b03,\n  /* 0x6a */\n  0x9b04, 0x9b05, 0x9b08, 0x9b09, 0x9b0b, 0x9b0c, 0x9b0d, 0x9b0e,\n  0x9b10, 0x9b12, 0x9b16, 0x9b19, 0x9b1b, 0x9b1c, 0x9b20, 0x9b26,\n  0x9b2b, 0x9b2d, 0x9b33, 0x9b34, 0x9b35, 0x9b37, 0x9b39, 0x9b3a,\n  0x9b3d, 0x9b48, 0x9b4b, 0x9b4c, 0x9b55, 0x9b56, 0x9b57, 0x9b5b,\n  0x9b5e, 0x9b61, 0x9b63, 0x9b65, 0x9b66, 0x9b68, 0x9b6a, 0x9b6b,\n  0x9b6c, 0x9b6d, 0x9b6e, 0x9b73, 0x9b75, 0x9b77, 0x9b78, 0x9b79,\n  0x9b7f, 0x9b80, 0x9b84, 0x9b85, 0x9b86, 0x9b87, 0x9b89, 0x9b8a,\n  0x9b8b, 0x9b8d, 0x9b8f, 0x9b90, 0x9b94, 0x9b9a, 0x9b9d, 0x9b9e,\n  0x9ba6, 0x9ba7, 0x9ba9, 0x9bac, 0x9bb0, 0x9bb1, 0x9bb2, 0x9bb7,\n  0x9bb8, 0x9bbb, 0x9bbc, 0x9bbe, 0x9bbf, 0x9bc1, 0x9bc7, 0x9bc8,\n  0x9bce, 0x9bd0, 0x9bd7, 0x9bd8, 0x9bdd, 0x9bdf, 0x9be5, 0x9be7,\n  0x9bea, 0x9beb, 0x9bef, 0x9bf3, 0x9bf7, 0x9bf8,\n  /* 0x6b */\n  0x9bf9, 0x9bfa, 0x9bfd, 0x9bff, 0x9c00, 0x9c02, 0x9c0b, 0x9c0f,\n  0x9c11, 0x9c16, 0x9c18, 0x9c19, 0x9c1a, 0x9c1c, 0x9c1e, 0x9c22,\n  0x9c23, 0x9c26, 0x9c27, 0x9c28, 0x9c29, 0x9c2a, 0x9c31, 0x9c35,\n  0x9c36, 0x9c37, 0x9c3d, 0x9c41, 0x9c43, 0x9c44, 0x9c45, 0x9c49,\n  0x9c4a, 0x9c4e, 0x9c4f, 0x9c50, 0x9c53, 0x9c54, 0x9c56, 0x9c58,\n  0x9c5b, 0x9c5d, 0x9c5e, 0x9c5f, 0x9c63, 0x9c69, 0x9c6a, 0x9c5c,\n  0x9c6b, 0x9c68, 0x9c6e, 0x9c70, 0x9c72, 0x9c75, 0x9c77, 0x9c7b,\n  0x9ce6, 0x9cf2, 0x9cf7, 0x9cf9, 0x9d0b, 0x9d02, 0x9d11, 0x9d17,\n  0x9d18, 0x9d1c, 0x9d1d, 0x9d1e, 0x9d2f, 0x9d30, 0x9d32, 0x9d33,\n  0x9d34, 0x9d3a, 0x9d3c, 0x9d45, 0x9d3d, 0x9d42, 0x9d43, 0x9d47,\n  0x9d4a, 0x9d53, 0x9d54, 0x9d5f, 0x9d63, 0x9d62, 0x9d65, 0x9d69,\n  0x9d6a, 0x9d6b, 0x9d70, 0x9d76, 0x9d77, 0x9d7b,\n  /* 0x6c */\n  0x9d7c, 0x9d7e, 0x9d83, 0x9d84, 0x9d86, 0x9d8a, 0x9d8d, 0x9d8e,\n  0x9d92, 0x9d93, 0x9d95, 0x9d96, 0x9d97, 0x9d98, 0x9da1, 0x9daa,\n  0x9dac, 0x9dae, 0x9db1, 0x9db5, 0x9db9, 0x9dbc, 0x9dbf, 0x9dc3,\n  0x9dc7, 0x9dc9, 0x9dca, 0x9dd4, 0x9dd5, 0x9dd6, 0x9dd7, 0x9dda,\n  0x9dde, 0x9ddf, 0x9de0, 0x9de5, 0x9de7, 0x9de9, 0x9deb, 0x9dee,\n  0x9df0, 0x9df3, 0x9df4, 0x9dfe, 0x9e0a, 0x9e02, 0x9e07, 0x9e0e,\n  0x9e10, 0x9e11, 0x9e12, 0x9e15, 0x9e16, 0x9e19, 0x9e1c, 0x9e1d,\n  0x9e7a, 0x9e7b, 0x9e7c, 0x9e80, 0x9e82, 0x9e83, 0x9e84, 0x9e85,\n  0x9e87, 0x9e8e, 0x9e8f, 0x9e96, 0x9e98, 0x9e9b, 0x9e9e, 0x9ea4,\n  0x9ea8, 0x9eac, 0x9eae, 0x9eaf, 0x9eb0, 0x9eb3, 0x9eb4, 0x9eb5,\n  0x9ec6, 0x9ec8, 0x9ecb, 0x9ed5, 0x9edf, 0x9ee4, 0x9ee7, 0x9eec,\n  0x9eed, 0x9eee, 0x9ef0, 0x9ef1, 0x9ef2, 0x9ef5,\n  /* 0x6d */\n  0x9ef8, 0x9eff, 0x9f02, 0x9f03, 0x9f09, 0x9f0f, 0x9f10, 0x9f11,\n  0x9f12, 0x9f14, 0x9f16, 0x9f17, 0x9f19, 0x9f1a, 0x9f1b, 0x9f1f,\n  0x9f22, 0x9f26, 0x9f2a, 0x9f2b, 0x9f2f, 0x9f31, 0x9f32, 0x9f34,\n  0x9f37, 0x9f39, 0x9f3a, 0x9f3c, 0x9f3d, 0x9f3f, 0x9f41, 0x9f43,\n  0x9f44, 0x9f45, 0x9f46, 0x9f47, 0x9f53, 0x9f55, 0x9f56, 0x9f57,\n  0x9f58, 0x9f5a, 0x9f5d, 0x9f5e, 0x9f68, 0x9f69, 0x9f6d, 0x9f6e,\n  0x9f6f, 0x9f70, 0x9f71, 0x9f73, 0x9f75, 0x9f7a, 0x9f7d, 0x9f8f,\n  0x9f90, 0x9f91, 0x9f92, 0x9f94, 0x9f96, 0x9f97, 0x9f9e, 0x9fa1,\n  0x9fa2, 0x9fa3, 0x9fa5,\n};\n\nstatic int\njisx0212_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 == 0x22) || (c1 >= 0x26 && c1 <= 0x27) || (c1 >= 0x29 && c1 <= 0x2b) || (c1 >= 0x30 && c1 <= 0x6d)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        unsigned short wc = 0xfffd;\n        if (i < 470) {\n          if (i < 175)\n            wc = jisx0212_2uni_page22[i-94];\n        } else if (i < 752) {\n          if (i < 658)\n            wc = jisx0212_2uni_page26[i-470];\n        } else if (i < 1410) {\n          if (i < 1027)\n            wc = jisx0212_2uni_page29[i-752];\n        } else {\n          if (i < 7211)\n            wc = jisx0212_2uni_page30[i-1410];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short jisx0212_2charset[6067] = {\n  0x2242, 0x2270, 0x2243, 0x226d, 0x226c, 0x226e, 0x2234, 0x2231,\n  0x226b, 0x2244, 0x2a22, 0x2a21, 0x2a24, 0x2a2a, 0x2a23, 0x2a29,\n  0x2921, 0x2a2e, 0x2a32, 0x2a31, 0x2a34, 0x2a33, 0x2a40, 0x2a3f,\n  0x2a42, 0x2a41, 0x2a50, 0x2a52, 0x2a51, 0x2a54, 0x2a58, 0x2a53,\n  0x292c, 0x2a63, 0x2a62, 0x2a65, 0x2a64, 0x2a72, 0x2930, 0x294e,\n  0x2b22, 0x2b21, 0x2b24, 0x2b2a, 0x2b23, 0x2b29, 0x2941, 0x2b2e,\n  0x2b32, 0x2b31, 0x2b34, 0x2b33, 0x2b40, 0x2b3f, 0x2b42, 0x2b41,\n  0x2943, 0x2b50, 0x2b52, 0x2b51, 0x2b54, 0x2b58, 0x2b53, 0x294c,\n  0x2b63, 0x2b62, 0x2b65, 0x2b64, 0x2b72, 0x2950, 0x2b73, 0x2a27,\n  0x2b27, 0x2a25, 0x2b25, 0x2a28, 0x2b28, 0x2a2b, 0x2b2b, 0x2a2c,\n  0x2b2c, 0x2a2f, 0x2b2f, 0x2a2d, 0x2b2d, 0x2a30, 0x2b30, 0x2922,\n  0x2942, 0x2a37, 0x2b37, 0x2a36, 0x2b36, 0x2a38, 0x2b38, 0x2a35,\n  0x2b35, 0x2a3a, 0x2b3a, 0x2a3b, 0x2b3b, 0x2a3d, 0x2b3d, 0x2a3c,\n  0x2a3e, 0x2b3e, 0x2924, 0x2944, 0x2a47, 0x2b47, 0x2a45, 0x2b45,\n  0x2a46, 0x2b46, 0x2a44, 0x2945, 0x2926, 0x2946, 0x2a48, 0x2b48,\n  0x2a49, 0x2b49, 0x2947, 0x2a4a, 0x2b4a, 0x2a4c, 0x2b4c, 0x2a4b,\n  0x2b4b, 0x2929, 0x2949, 0x2928, 0x2948, 0x2a4d, 0x2b4d, 0x2a4f,\n  0x2b4f, 0x2a4e, 0x2b4e, 0x294a, 0x292b, 0x294b, 0x2a57, 0x2b57,\n  0x2a56, 0x2b56, 0x292d, 0x294d, 0x2a59, 0x2b59, 0x2a5b, 0x2b5b,\n  0x2a5a, 0x2b5a, 0x2a5c, 0x2b5c, 0x2a5d, 0x2b5d, 0x2a5f, 0x2b5f,\n  0x2a5e, 0x2b5e, 0x2a61, 0x2b61, 0x2a60, 0x2b60, 0x292f, 0x294f,\n  0x2a6c, 0x2b6c, 0x2a69, 0x2b69, 0x2a66, 0x2b66, 0x2a6b, 0x2b6b,\n  0x2a68, 0x2b68, 0x2a6a, 0x2b6a, 0x2a71, 0x2b71, 0x2a74, 0x2b74,\n  0x2a73, 0x2a75, 0x2b75, 0x2a77, 0x2b77, 0x2a76, 0x2b76, 0x2a26,\n  0x2b26, 0x2a43, 0x2b43, 0x2a55, 0x2b55, 0x2a67, 0x2b67, 0x2a70,\n  0x2b70, 0x2a6d, 0x2b6d, 0x2a6f, 0x2b6f, 0x2a6e, 0x2b6e, 0x2b39,\n  0x2230, 0x222f, 0x2232, 0x2236, 0x2235, 0x2233, 0x2238, 0x2239,\n  0x2661, 0x2662, 0x2663, 0x2664, 0x2667, 0x2669, 0x266c, 0x2676,\n  0x2665, 0x266a, 0x2671, 0x2672, 0x2673, 0x2674, 0x267b, 0x2678,\n  0x2675, 0x267a, 0x2677, 0x2679, 0x267c, 0x2742, 0x2743, 0x2744,\n  0x2745, 0x2746, 0x2747, 0x2748, 0x2749, 0x274a, 0x274b, 0x274c,\n  0x274d, 0x274e, 0x2772, 0x2773, 0x2774, 0x2775, 0x2776, 0x2777,\n  0x2778, 0x2779, 0x277a, 0x277b, 0x277c, 0x277d, 0x277e, 0x2271,\n  0x226f, 0x3021, 0x3022, 0x3023, 0x3024, 0x3025, 0x3026, 0x3027,\n  0x3028, 0x3029, 0x302a, 0x302b, 0x302c, 0x302d, 0x302e, 0x302f,\n  0x3030, 0x3031, 0x3032, 0x3033, 0x3034, 0x3035, 0x3036, 0x3037,\n  0x3038, 0x3039, 0x303a, 0x303b, 0x303c, 0x303d, 0x303e, 0x303f,\n  0x3040, 0x3041, 0x3042, 0x3043, 0x3044, 0x3045, 0x3046, 0x3047,\n  0x3048, 0x3049, 0x304a, 0x304b, 0x304c, 0x304d, 0x304e, 0x304f,\n  0x3050, 0x3051, 0x3052, 0x3053, 0x3054, 0x3055, 0x3056, 0x3057,\n  0x3058, 0x3059, 0x305a, 0x305b, 0x305c, 0x305d, 0x305e, 0x3060,\n  0x3061, 0x3062, 0x3063, 0x3064, 0x3065, 0x3066, 0x3067, 0x3068,\n  0x3069, 0x306a, 0x306b, 0x306c, 0x306d, 0x306e, 0x306f, 0x3070,\n  0x305f, 0x3071, 0x3072, 0x3073, 0x3074, 0x3075, 0x3076, 0x3077,\n  0x3078, 0x3079, 0x307a, 0x307b, 0x307c, 0x307d, 0x307e, 0x3121,\n  0x3122, 0x3123, 0x3124, 0x3125, 0x3126, 0x3127, 0x3128, 0x3129,\n  0x312a, 0x312b, 0x312c, 0x312d, 0x312e, 0x312f, 0x3130, 0x3131,\n  0x3132, 0x3133, 0x3134, 0x3135, 0x3136, 0x3137, 0x3138, 0x3139,\n  0x313a, 0x313b, 0x313c, 0x313d, 0x313e, 0x313f, 0x3140, 0x3141,\n  0x3142, 0x3143, 0x3144, 0x3145, 0x3146, 0x3147, 0x3148, 0x3149,\n  0x314a, 0x314b, 0x314c, 0x314d, 0x314e, 0x314f, 0x3150, 0x3151,\n  0x3152, 0x3153, 0x3154, 0x3155, 0x3156, 0x3157, 0x3158, 0x3159,\n  0x315a, 0x315b, 0x315c, 0x315d, 0x315e, 0x3176, 0x315f, 0x3160,\n  0x3161, 0x3162, 0x3163, 0x3164, 0x3165, 0x3166, 0x3167, 0x3168,\n  0x3169, 0x316a, 0x316b, 0x316c, 0x316d, 0x316e, 0x316f, 0x3170,\n  0x3171, 0x3172, 0x3173, 0x3174, 0x3175, 0x3177, 0x3178, 0x3179,\n  0x317a, 0x317b, 0x317c, 0x317d, 0x317e, 0x3221, 0x3222, 0x3223,\n  0x3224, 0x3225, 0x3226, 0x3227, 0x3228, 0x3229, 0x322a, 0x322b,\n  0x322c, 0x322d, 0x322e, 0x322f, 0x3230, 0x3231, 0x3232, 0x3233,\n  0x3234, 0x3235, 0x3236, 0x3237, 0x3238, 0x3239, 0x323a, 0x323b,\n  0x323c, 0x323d, 0x323e, 0x323f, 0x3240, 0x3241, 0x3242, 0x3243,\n  0x3244, 0x3245, 0x3251, 0x3246, 0x3247, 0x3248, 0x3249, 0x324a,\n  0x324b, 0x324c, 0x324d, 0x324e, 0x324f, 0x3250, 0x3252, 0x3253,\n  0x3254, 0x3255, 0x3256, 0x3257, 0x3258, 0x3259, 0x325a, 0x325b,\n  0x325c, 0x325d, 0x325e, 0x325f, 0x3260, 0x3261, 0x3262, 0x3263,\n  0x3264, 0x3265, 0x3266, 0x3267, 0x3268, 0x3269, 0x326a, 0x326b,\n  0x326c, 0x326d, 0x326e, 0x326f, 0x3270, 0x3271, 0x3272, 0x3273,\n  0x3274, 0x3275, 0x3276, 0x3277, 0x3278, 0x3279, 0x327a, 0x327b,\n  0x327c, 0x327d, 0x327e, 0x3321, 0x3322, 0x3323, 0x3324, 0x3325,\n  0x3326, 0x3327, 0x3328, 0x3329, 0x332a, 0x332b, 0x332c, 0x332d,\n  0x332e, 0x332f, 0x3330, 0x3331, 0x3332, 0x3333, 0x3334, 0x3335,\n  0x3336, 0x3337, 0x3338, 0x3339, 0x333a, 0x333b, 0x333c, 0x333d,\n  0x333e, 0x333f, 0x3340, 0x3341, 0x3342, 0x3343, 0x3344, 0x3345,\n  0x3346, 0x3347, 0x3348, 0x3349, 0x334a, 0x334b, 0x334c, 0x334d,\n  0x334e, 0x334f, 0x3350, 0x3351, 0x3352, 0x3353, 0x3354, 0x3355,\n  0x3356, 0x3357, 0x3358, 0x3359, 0x335a, 0x335b, 0x335c, 0x335d,\n  0x335e, 0x335f, 0x3360, 0x3361, 0x3362, 0x3363, 0x3364, 0x3365,\n  0x3366, 0x3367, 0x3368, 0x3369, 0x336a, 0x336b, 0x336c, 0x336d,\n  0x336e, 0x336f, 0x3370, 0x3371, 0x3372, 0x3373, 0x3374, 0x3375,\n  0x3376, 0x3377, 0x3378, 0x3379, 0x337a, 0x337b, 0x337c, 0x337d,\n  0x337e, 0x3421, 0x3422, 0x3423, 0x3424, 0x3425, 0x3426, 0x3427,\n  0x3428, 0x3429, 0x342a, 0x342b, 0x342c, 0x342d, 0x342e, 0x342f,\n  0x3430, 0x3431, 0x3432, 0x3433, 0x3434, 0x3435, 0x3436, 0x3438,\n  0x3437, 0x3439, 0x343a, 0x343b, 0x343c, 0x343d, 0x343e, 0x343f,\n  0x3440, 0x3441, 0x3442, 0x3443, 0x3444, 0x3445, 0x3446, 0x3447,\n  0x3448, 0x3449, 0x344a, 0x344b, 0x344c, 0x344d, 0x344e, 0x344f,\n  0x3450, 0x3451, 0x3452, 0x3453, 0x3454, 0x3455, 0x3456, 0x3457,\n  0x3458, 0x3459, 0x345a, 0x345b, 0x345c, 0x345d, 0x345e, 0x345f,\n  0x3460, 0x3461, 0x3462, 0x3463, 0x3464, 0x3465, 0x3466, 0x3467,\n  0x3468, 0x3469, 0x346a, 0x346b, 0x346c, 0x346d, 0x346e, 0x346f,\n  0x3470, 0x3471, 0x3472, 0x3473, 0x3474, 0x3475, 0x3476, 0x3477,\n  0x3478, 0x3479, 0x347a, 0x347b, 0x347c, 0x347d, 0x347e, 0x3521,\n  0x3522, 0x3523, 0x3524, 0x3525, 0x3526, 0x3527, 0x3528, 0x3529,\n  0x352a, 0x352b, 0x352c, 0x352d, 0x352e, 0x352f, 0x3530, 0x3531,\n  0x3532, 0x3533, 0x3534, 0x3535, 0x3536, 0x3537, 0x3538, 0x3539,\n  0x353a, 0x353b, 0x353c, 0x353d, 0x353e, 0x353f, 0x3540, 0x3541,\n  0x3542, 0x3543, 0x3544, 0x3545, 0x3546, 0x3547, 0x3548, 0x3549,\n  0x354a, 0x354b, 0x354c, 0x354d, 0x354e, 0x354f, 0x3550, 0x3551,\n  0x3552, 0x3553, 0x3554, 0x3555, 0x3556, 0x3557, 0x3558, 0x3559,\n  0x355a, 0x355b, 0x355c, 0x355d, 0x355e, 0x355f, 0x3560, 0x3561,\n  0x3562, 0x3563, 0x3564, 0x3565, 0x3566, 0x3567, 0x3568, 0x3569,\n  0x356a, 0x356b, 0x356c, 0x356d, 0x356e, 0x356f, 0x3570, 0x3571,\n  0x3572, 0x3573, 0x3574, 0x3575, 0x3576, 0x3577, 0x3578, 0x3579,\n  0x357a, 0x357b, 0x357c, 0x357d, 0x357e, 0x3621, 0x3622, 0x3623,\n  0x3624, 0x3625, 0x3626, 0x3627, 0x3628, 0x3629, 0x362a, 0x362b,\n  0x362c, 0x362d, 0x362e, 0x362f, 0x3630, 0x3631, 0x3632, 0x3633,\n  0x3634, 0x3635, 0x3636, 0x3637, 0x3638, 0x3639, 0x363a, 0x363b,\n  0x363c, 0x363d, 0x363e, 0x363f, 0x3640, 0x3641, 0x3642, 0x3643,\n  0x3644, 0x3645, 0x3646, 0x3647, 0x3648, 0x3649, 0x364a, 0x364b,\n  0x364c, 0x364d, 0x364e, 0x364f, 0x3650, 0x3651, 0x3652, 0x3653,\n  0x3654, 0x3655, 0x3656, 0x3657, 0x3658, 0x3659, 0x365a, 0x365b,\n  0x365c, 0x365d, 0x365e, 0x365f, 0x3660, 0x3661, 0x3662, 0x3663,\n  0x3664, 0x3665, 0x3666, 0x3667, 0x3668, 0x3669, 0x366a, 0x366b,\n  0x366c, 0x366d, 0x3670, 0x3671, 0x366e, 0x366f, 0x3672, 0x3673,\n  0x3674, 0x3675, 0x3676, 0x3677, 0x3678, 0x3679, 0x367a, 0x367b,\n  0x367d, 0x367e, 0x367c, 0x3721, 0x3722, 0x3723, 0x3724, 0x3725,\n  0x3726, 0x3727, 0x3728, 0x3729, 0x372a, 0x372b, 0x372c, 0x372d,\n  0x372e, 0x372f, 0x3730, 0x3731, 0x3732, 0x3733, 0x3734, 0x3735,\n  0x3736, 0x3737, 0x3738, 0x3739, 0x373a, 0x373b, 0x373c, 0x373d,\n  0x373e, 0x373f, 0x3740, 0x3741, 0x3742, 0x3743, 0x3744, 0x3745,\n  0x3746, 0x3747, 0x3748, 0x3749, 0x374a, 0x374b, 0x374c, 0x374d,\n  0x374e, 0x374f, 0x3750, 0x3751, 0x3752, 0x3753, 0x3754, 0x3755,\n  0x3756, 0x3757, 0x3760, 0x3758, 0x3759, 0x375a, 0x375b, 0x375c,\n  0x375d, 0x375e, 0x375f, 0x3761, 0x3762, 0x3763, 0x3764, 0x3765,\n  0x3766, 0x3767, 0x3768, 0x3769, 0x376a, 0x376b, 0x376c, 0x376d,\n  0x377e, 0x376e, 0x376f, 0x3770, 0x3771, 0x3772, 0x3773, 0x3774,\n  0x3775, 0x3776, 0x3777, 0x3778, 0x3779, 0x377a, 0x377b, 0x377c,\n  0x377d, 0x3821, 0x3822, 0x3823, 0x3824, 0x3825, 0x3826, 0x3827,\n  0x3828, 0x3829, 0x382a, 0x382b, 0x382c, 0x382d, 0x382e, 0x382f,\n  0x3830, 0x3831, 0x3832, 0x3833, 0x3834, 0x3835, 0x3836, 0x3837,\n  0x3838, 0x3839, 0x383a, 0x383b, 0x383c, 0x383d, 0x383e, 0x383f,\n  0x3840, 0x3841, 0x3842, 0x3843, 0x3844, 0x3845, 0x3846, 0x3847,\n  0x3848, 0x3849, 0x384a, 0x384b, 0x384c, 0x384d, 0x384e, 0x3850,\n  0x3851, 0x384f, 0x3852, 0x3853, 0x3854, 0x3855, 0x3856, 0x3857,\n  0x3858, 0x3859, 0x385a, 0x385b, 0x385c, 0x385d, 0x385e, 0x385f,\n  0x3860, 0x3861, 0x3862, 0x3863, 0x3864, 0x3865, 0x3867, 0x3868,\n  0x3869, 0x386a, 0x386b, 0x386c, 0x386d, 0x386e, 0x386f, 0x3870,\n  0x3871, 0x3872, 0x3873, 0x3874, 0x3875, 0x3876, 0x3877, 0x3878,\n  0x3879, 0x387a, 0x387b, 0x387c, 0x387d, 0x387e, 0x3921, 0x3922,\n  0x3923, 0x3924, 0x3925, 0x3926, 0x3927, 0x3928, 0x3929, 0x392a,\n  0x392b, 0x392c, 0x392d, 0x392e, 0x392f, 0x3930, 0x3931, 0x3932,\n  0x3933, 0x3934, 0x3935, 0x3936, 0x3937, 0x3938, 0x3939, 0x393a,\n  0x393b, 0x393c, 0x393d, 0x393e, 0x393f, 0x3940, 0x3941, 0x3942,\n  0x3943, 0x3944, 0x3945, 0x3946, 0x3947, 0x3948, 0x3949, 0x394a,\n  0x394b, 0x394c, 0x394d, 0x394e, 0x394f, 0x3950, 0x3951, 0x3952,\n  0x3953, 0x3954, 0x3955, 0x3956, 0x3957, 0x3958, 0x3959, 0x395a,\n  0x395b, 0x395c, 0x395d, 0x395e, 0x395f, 0x3960, 0x3961, 0x3962,\n  0x3963, 0x3964, 0x3965, 0x3966, 0x3967, 0x3968, 0x3969, 0x396a,\n  0x396b, 0x396c, 0x396d, 0x396e, 0x396f, 0x3970, 0x3971, 0x3972,\n  0x3973, 0x3974, 0x3975, 0x3976, 0x3977, 0x3978, 0x3979, 0x397a,\n  0x397b, 0x397c, 0x397d, 0x397e, 0x3a21, 0x3a22, 0x3a23, 0x3a24,\n  0x3a25, 0x3a26, 0x3a27, 0x3a28, 0x3a29, 0x3a2a, 0x3a2b, 0x3a2c,\n  0x3a2d, 0x3a2e, 0x3a2f, 0x3a30, 0x3a31, 0x3a33, 0x3a34, 0x3a35,\n  0x3a36, 0x3a37, 0x3a38, 0x3a32, 0x3a39, 0x3a3a, 0x3a3b, 0x3a3c,\n  0x3a3d, 0x3a3e, 0x3a3f, 0x3a40, 0x3a41, 0x3a42, 0x3a43, 0x3a44,\n  0x3a45, 0x3a46, 0x3a47, 0x3a48, 0x3a49, 0x3a4a, 0x3a4b, 0x3a4c,\n  0x3a4d, 0x3a4e, 0x3a4f, 0x3a50, 0x3a51, 0x3a52, 0x3a53, 0x3a54,\n  0x3a55, 0x3a56, 0x3a57, 0x3a58, 0x3a59, 0x3a5a, 0x3a5b, 0x3a5c,\n  0x3a5d, 0x3a5e, 0x3a5f, 0x3a60, 0x3a61, 0x3a62, 0x3a63, 0x3a64,\n  0x3a65, 0x3a66, 0x3a67, 0x3a68, 0x3a69, 0x3a6a, 0x3a6b, 0x3a6c,\n  0x3a6d, 0x3a6e, 0x3a6f, 0x3a70, 0x3a71, 0x3a72, 0x3a73, 0x3a74,\n  0x3a75, 0x3a76, 0x3a77, 0x3a78, 0x3a79, 0x3a7a, 0x3a7b, 0x3a7c,\n  0x3a7d, 0x3a7e, 0x3b21, 0x3b22, 0x3b23, 0x3b24, 0x3b25, 0x3b26,\n  0x3b27, 0x3b28, 0x3b29, 0x3b2a, 0x3b2b, 0x3b2c, 0x3b2d, 0x3b2e,\n  0x3b2f, 0x3b30, 0x3b31, 0x3b32, 0x3b33, 0x3b34, 0x3b35, 0x3b36,\n  0x3b37, 0x3b38, 0x3b39, 0x3b3a, 0x3b3b, 0x3b3d, 0x3b3c, 0x3b3e,\n  0x3b3f, 0x3b40, 0x3b41, 0x3b42, 0x3b43, 0x3b44, 0x3b45, 0x3b47,\n  0x3b48, 0x3b49, 0x3b4a, 0x3b46, 0x3b4b, 0x3b4c, 0x3b4d, 0x3b4e,\n  0x3b4f, 0x3b50, 0x3b51, 0x3b52, 0x3b53, 0x3b57, 0x3b55, 0x3b54,\n  0x3b56, 0x3b58, 0x3b59, 0x3b5a, 0x3b5b, 0x3b5c, 0x3b5d, 0x3b5e,\n  0x3b5f, 0x3b60, 0x3b61, 0x3b62, 0x3b63, 0x3b64, 0x3b65, 0x3b66,\n  0x3b67, 0x3b68, 0x3b69, 0x3b6a, 0x3b6b, 0x3b6c, 0x3b6d, 0x3b6e,\n  0x3b6f, 0x3b70, 0x3b71, 0x3b72, 0x6674, 0x3b73, 0x3b74, 0x3b75,\n  0x3b76, 0x3b77, 0x3b78, 0x3b7a, 0x3b79, 0x3b7b, 0x3b7c, 0x3b7d,\n  0x3b7e, 0x3c21, 0x3c22, 0x3c23, 0x3c24, 0x3c25, 0x3c26, 0x3c27,\n  0x3c28, 0x3c29, 0x3c2a, 0x3c2b, 0x3c2c, 0x3c2e, 0x3c2d, 0x3c2f,\n  0x3c30, 0x3c31, 0x3c34, 0x3c32, 0x3c33, 0x3c35, 0x3c36, 0x3c37,\n  0x3c38, 0x3c39, 0x3c3a, 0x3c3b, 0x3c3c, 0x3c3d, 0x3c3e, 0x3c3f,\n  0x3c40, 0x3c41, 0x3c42, 0x3c43, 0x3c44, 0x3c45, 0x3c46, 0x3c47,\n  0x3c48, 0x3c49, 0x3c4a, 0x3c4b, 0x3c4c, 0x3c4d, 0x3c4e, 0x3c4f,\n  0x3c50, 0x3c52, 0x3c51, 0x3c53, 0x3c54, 0x3c55, 0x3c56, 0x3c57,\n  0x3c58, 0x3c59, 0x3c5a, 0x3c5b, 0x3c5c, 0x3c5d, 0x3c5e, 0x3c5f,\n  0x3c60, 0x3c61, 0x3c62, 0x3c63, 0x3c64, 0x3c65, 0x3c66, 0x3c67,\n  0x3c68, 0x3c69, 0x3c6a, 0x3c6b, 0x3c6c, 0x3c6d, 0x3c6e, 0x3c6f,\n  0x3c70, 0x3c71, 0x3c72, 0x3c73, 0x3c74, 0x3c75, 0x3c76, 0x3c77,\n  0x3c78, 0x3c79, 0x3c7a, 0x3c7b, 0x3c7c, 0x3c7d, 0x3c7e, 0x3d21,\n  0x3d22, 0x3d23, 0x3d24, 0x3d25, 0x3d26, 0x3d27, 0x3d28, 0x3d29,\n  0x3d2a, 0x3d2b, 0x3d2c, 0x3d2d, 0x3d2e, 0x3d2f, 0x3d32, 0x3d30,\n  0x3d31, 0x3d33, 0x3d34, 0x3d35, 0x3d36, 0x3d37, 0x3d38, 0x3d39,\n  0x3d3a, 0x3d3b, 0x3d3c, 0x3d3d, 0x3d3e, 0x3d3f, 0x3d40, 0x3d41,\n  0x3d42, 0x3d43, 0x3d44, 0x3d45, 0x3d46, 0x3d47, 0x3d48, 0x3d49,\n  0x3d4a, 0x3d4b, 0x3d4c, 0x3d4d, 0x3d4e, 0x3d4f, 0x3d50, 0x3d51,\n  0x3d52, 0x3d53, 0x3d54, 0x3d55, 0x3d56, 0x3d57, 0x3d58, 0x3d59,\n  0x3d5a, 0x3d5b, 0x3d5c, 0x3d5d, 0x3d5e, 0x3d5f, 0x3d60, 0x3d61,\n  0x3d62, 0x3d63, 0x3d64, 0x3d65, 0x3d66, 0x3d67, 0x3d68, 0x3d69,\n  0x3d6a, 0x3d6b, 0x3d6c, 0x3d6d, 0x3d6e, 0x3d6f, 0x3d70, 0x3d71,\n  0x3d72, 0x3d73, 0x3d74, 0x3d75, 0x3d76, 0x3d77, 0x3d78, 0x3d79,\n  0x3d7a, 0x3d7b, 0x3d7c, 0x3d7d, 0x3d7e, 0x3e21, 0x3e22, 0x3e23,\n  0x3e24, 0x3e25, 0x3e26, 0x3e27, 0x3e28, 0x3e29, 0x3e2a, 0x3e2b,\n  0x3e2c, 0x3e2d, 0x3e2e, 0x3e2f, 0x3e30, 0x3e31, 0x3e32, 0x3e33,\n  0x3e34, 0x3e35, 0x3e36, 0x3e37, 0x3e38, 0x3e39, 0x3e3a, 0x3e3b,\n  0x3e3c, 0x3e3d, 0x3e3e, 0x3e3f, 0x3e40, 0x3e41, 0x3e42, 0x3e43,\n  0x3e44, 0x3e45, 0x3e46, 0x3e47, 0x3e48, 0x3e49, 0x3e4a, 0x3e4b,\n  0x3e4c, 0x3e4d, 0x3e4e, 0x3e4f, 0x3e50, 0x3e51, 0x3e52, 0x3e53,\n  0x3e54, 0x3e55, 0x3e56, 0x3e57, 0x3e58, 0x3e59, 0x3e5a, 0x3e5b,\n  0x3e5c, 0x3e5d, 0x3e5e, 0x3e5f, 0x3e60, 0x3e61, 0x3e62, 0x3e63,\n  0x3e64, 0x3e65, 0x3e66, 0x3e67, 0x3e68, 0x3e69, 0x3e6a, 0x3e6b,\n  0x3e6c, 0x3e6d, 0x3e6e, 0x3e6f, 0x3e70, 0x3e71, 0x3e72, 0x3e73,\n  0x3e74, 0x3e75, 0x3e76, 0x3e77, 0x3e78, 0x3e79, 0x3e7a, 0x3e7b,\n  0x3e7e, 0x3e7c, 0x3e7d, 0x3f21, 0x3f22, 0x3f23, 0x3f24, 0x3f25,\n  0x3f26, 0x3f27, 0x3f28, 0x3f29, 0x3f2a, 0x3f2b, 0x3f2c, 0x3f2d,\n  0x3f2e, 0x3f2f, 0x3f30, 0x3f31, 0x3f32, 0x3f33, 0x3f34, 0x3f35,\n  0x3f36, 0x3f37, 0x3f38, 0x3f39, 0x3f3a, 0x3f3b, 0x3f3c, 0x3f3d,\n  0x3f3e, 0x3f3f, 0x3f40, 0x3f41, 0x3f42, 0x3f43, 0x3f44, 0x3f45,\n  0x3f46, 0x3f47, 0x3f48, 0x3f49, 0x3f4a, 0x3f4b, 0x3f4c, 0x3f4d,\n  0x3f4e, 0x3f4f, 0x3f50, 0x3f51, 0x3f52, 0x3f53, 0x3f54, 0x3f55,\n  0x3f56, 0x3f57, 0x3f58, 0x3f59, 0x3f5a, 0x3f5b, 0x3f5c, 0x3f5d,\n  0x3f5e, 0x3f5f, 0x3f60, 0x3f61, 0x3f62, 0x3f63, 0x3f64, 0x3f65,\n  0x3f66, 0x3f67, 0x3f68, 0x3f69, 0x3f6a, 0x3f6b, 0x3f6c, 0x3f6d,\n  0x3f6e, 0x3f6f, 0x3f70, 0x3f71, 0x3f72, 0x3f73, 0x3f74, 0x3f75,\n  0x3f76, 0x3f77, 0x3f78, 0x3f79, 0x3f7a, 0x3f7b, 0x3f7c, 0x3f7d,\n  0x3f7e, 0x4021, 0x4022, 0x4023, 0x4024, 0x4025, 0x4026, 0x4027,\n  0x4028, 0x4029, 0x402a, 0x402b, 0x402c, 0x402d, 0x402e, 0x402f,\n  0x4030, 0x4031, 0x4032, 0x4033, 0x4034, 0x4035, 0x4036, 0x4037,\n  0x4038, 0x4039, 0x403a, 0x403b, 0x403c, 0x403d, 0x403e, 0x403f,\n  0x4040, 0x4041, 0x4042, 0x4043, 0x4044, 0x4045, 0x4046, 0x4047,\n  0x4048, 0x4049, 0x404a, 0x404b, 0x404c, 0x404d, 0x404e, 0x404f,\n  0x4050, 0x4051, 0x4052, 0x4053, 0x4054, 0x4055, 0x4056, 0x4057,\n  0x4058, 0x4059, 0x405a, 0x405b, 0x405c, 0x405d, 0x405e, 0x405f,\n  0x4060, 0x4061, 0x4062, 0x4063, 0x4064, 0x4065, 0x4066, 0x4067,\n  0x4068, 0x4069, 0x406a, 0x406b, 0x406c, 0x406d, 0x406e, 0x406f,\n  0x4070, 0x4071, 0x4072, 0x4073, 0x4074, 0x4075, 0x4076, 0x4077,\n  0x4078, 0x4079, 0x407a, 0x407b, 0x407c, 0x407d, 0x407e, 0x4121,\n  0x4122, 0x4123, 0x4124, 0x4125, 0x4126, 0x4127, 0x4128, 0x4129,\n  0x412a, 0x412b, 0x412c, 0x412d, 0x412e, 0x412f, 0x4130, 0x4131,\n  0x4132, 0x4133, 0x4134, 0x4135, 0x4136, 0x4137, 0x4138, 0x4139,\n  0x413a, 0x413b, 0x413c, 0x413d, 0x413e, 0x413f, 0x4140, 0x4141,\n  0x4142, 0x4143, 0x4144, 0x4145, 0x4146, 0x4147, 0x4148, 0x4149,\n  0x414a, 0x414b, 0x414c, 0x414d, 0x414e, 0x414f, 0x4150, 0x4151,\n  0x4152, 0x4153, 0x4154, 0x4155, 0x4156, 0x4157, 0x4158, 0x4159,\n  0x415a, 0x415b, 0x415c, 0x415d, 0x415e, 0x415f, 0x4160, 0x4161,\n  0x4162, 0x4163, 0x4164, 0x4165, 0x4166, 0x4167, 0x4168, 0x4169,\n  0x416a, 0x416b, 0x416c, 0x416d, 0x416e, 0x416f, 0x4170, 0x4171,\n  0x4172, 0x4173, 0x4174, 0x4175, 0x4176, 0x4177, 0x4178, 0x4179,\n  0x417a, 0x417b, 0x417c, 0x417d, 0x417e, 0x4221, 0x4222, 0x4223,\n  0x4224, 0x4225, 0x4226, 0x4227, 0x4228, 0x4229, 0x422a, 0x422b,\n  0x422c, 0x422d, 0x422e, 0x4230, 0x422f, 0x4231, 0x4232, 0x4233,\n  0x4234, 0x4235, 0x4237, 0x4236, 0x4238, 0x4239, 0x423a, 0x423b,\n  0x423c, 0x423d, 0x423e, 0x4240, 0x4241, 0x4242, 0x4244, 0x4245,\n  0x4247, 0x4248, 0x4249, 0x424a, 0x424c, 0x4243, 0x4246, 0x424b,\n  0x424d, 0x424e, 0x424f, 0x4250, 0x4251, 0x4252, 0x4253, 0x4254,\n  0x4255, 0x4256, 0x4257, 0x4258, 0x4259, 0x425a, 0x425b, 0x425c,\n  0x425d, 0x425e, 0x425f, 0x4260, 0x4261, 0x4262, 0x4263, 0x4264,\n  0x4265, 0x4266, 0x4267, 0x4268, 0x4269, 0x426a, 0x426b, 0x426c,\n  0x426d, 0x423f, 0x426e, 0x426f, 0x4270, 0x4271, 0x4272, 0x4273,\n  0x4274, 0x4275, 0x4276, 0x4277, 0x4278, 0x4279, 0x427a, 0x427b,\n  0x427c, 0x427d, 0x427e, 0x4321, 0x4322, 0x4323, 0x4324, 0x4325,\n  0x4326, 0x4327, 0x4328, 0x4329, 0x432a, 0x432b, 0x432c, 0x432d,\n  0x432e, 0x432f, 0x4330, 0x4331, 0x4332, 0x4333, 0x4334, 0x4335,\n  0x4336, 0x4337, 0x4339, 0x433a, 0x433b, 0x433c, 0x433d, 0x433e,\n  0x433f, 0x4340, 0x4341, 0x4342, 0x4343, 0x4344, 0x4345, 0x4346,\n  0x4347, 0x4348, 0x4338, 0x434a, 0x434b, 0x434c, 0x434d, 0x434f,\n  0x434e, 0x4350, 0x4351, 0x4352, 0x4353, 0x4354, 0x4355, 0x4356,\n  0x4357, 0x4358, 0x4359, 0x435a, 0x435b, 0x4349, 0x435c, 0x435d,\n  0x435e, 0x435f, 0x4360, 0x4361, 0x4362, 0x4363, 0x4364, 0x4365,\n  0x4366, 0x4367, 0x4368, 0x4369, 0x436a, 0x436b, 0x436c, 0x436d,\n  0x436e, 0x436f, 0x4370, 0x4371, 0x4372, 0x4373, 0x4374, 0x4375,\n  0x4376, 0x4377, 0x4378, 0x4379, 0x437a, 0x437b, 0x437c, 0x437d,\n  0x437e, 0x4421, 0x4422, 0x4423, 0x4424, 0x4425, 0x4426, 0x4427,\n  0x4428, 0x4429, 0x442a, 0x442b, 0x442c, 0x442d, 0x442e, 0x442f,\n  0x4430, 0x4431, 0x4432, 0x4433, 0x4434, 0x4435, 0x4436, 0x4437,\n  0x4438, 0x4439, 0x443a, 0x443b, 0x443c, 0x443d, 0x443e, 0x443f,\n  0x4440, 0x4441, 0x4442, 0x4443, 0x4444, 0x4445, 0x4446, 0x4447,\n  0x4448, 0x4449, 0x444a, 0x444b, 0x444c, 0x444d, 0x444e, 0x444f,\n  0x4450, 0x4451, 0x4452, 0x4453, 0x4454, 0x4455, 0x4456, 0x4457,\n  0x4458, 0x4459, 0x445a, 0x445b, 0x445c, 0x445d, 0x445e, 0x445f,\n  0x4460, 0x4461, 0x4462, 0x4463, 0x4464, 0x4465, 0x4466, 0x4467,\n  0x4468, 0x4469, 0x446a, 0x446b, 0x446c, 0x446d, 0x446e, 0x446f,\n  0x4470, 0x4471, 0x4472, 0x4473, 0x4474, 0x4475, 0x4476, 0x4477,\n  0x4478, 0x4479, 0x447a, 0x447b, 0x447c, 0x447d, 0x447e, 0x4521,\n  0x4522, 0x4523, 0x4524, 0x4525, 0x4526, 0x4527, 0x4528, 0x4529,\n  0x452a, 0x452b, 0x452c, 0x452d, 0x452e, 0x452f, 0x4530, 0x4531,\n  0x4532, 0x4533, 0x4534, 0x4535, 0x4536, 0x4537, 0x4538, 0x4539,\n  0x453a, 0x453b, 0x453c, 0x453d, 0x453e, 0x453f, 0x4540, 0x4541,\n  0x4542, 0x4543, 0x4544, 0x4545, 0x4546, 0x4547, 0x4548, 0x4549,\n  0x454a, 0x454b, 0x454d, 0x454c, 0x454e, 0x454f, 0x4550, 0x4551,\n  0x4552, 0x4553, 0x4554, 0x4555, 0x4556, 0x4557, 0x4558, 0x4559,\n  0x455a, 0x455b, 0x455c, 0x455d, 0x455e, 0x455f, 0x4560, 0x4561,\n  0x4562, 0x4563, 0x4564, 0x4565, 0x4566, 0x4567, 0x4568, 0x4569,\n  0x456a, 0x456b, 0x456c, 0x456d, 0x456e, 0x456f, 0x4570, 0x4571,\n  0x4572, 0x4573, 0x4574, 0x4575, 0x4576, 0x4577, 0x4578, 0x4579,\n  0x457a, 0x457b, 0x457c, 0x457d, 0x457e, 0x4621, 0x4622, 0x4623,\n  0x4624, 0x4625, 0x4626, 0x4627, 0x4628, 0x4629, 0x462a, 0x462b,\n  0x462c, 0x462d, 0x462e, 0x462f, 0x4630, 0x4631, 0x4632, 0x4633,\n  0x4634, 0x4635, 0x4636, 0x4637, 0x4638, 0x4639, 0x463a, 0x463b,\n  0x463c, 0x463d, 0x463e, 0x463f, 0x4640, 0x4641, 0x4642, 0x4643,\n  0x4644, 0x4645, 0x4646, 0x4647, 0x4648, 0x4649, 0x464a, 0x464b,\n  0x464c, 0x464d, 0x464e, 0x464f, 0x4650, 0x4651, 0x4652, 0x4653,\n  0x4654, 0x4655, 0x4656, 0x4657, 0x4658, 0x4659, 0x465a, 0x465b,\n  0x465c, 0x465d, 0x465e, 0x465f, 0x4660, 0x4736, 0x4661, 0x4662,\n  0x4663, 0x4664, 0x4665, 0x4666, 0x4667, 0x4668, 0x4669, 0x466a,\n  0x466b, 0x466c, 0x466d, 0x466e, 0x466f, 0x4670, 0x4671, 0x4672,\n  0x4673, 0x4674, 0x4675, 0x4676, 0x4677, 0x4678, 0x4679, 0x467a,\n  0x467b, 0x467c, 0x467d, 0x467e, 0x4721, 0x4722, 0x4723, 0x4724,\n  0x4725, 0x4726, 0x4727, 0x4728, 0x4729, 0x472a, 0x472b, 0x472c,\n  0x472d, 0x472e, 0x472f, 0x4730, 0x4731, 0x4732, 0x4733, 0x4734,\n  0x4735, 0x4737, 0x4738, 0x4739, 0x473a, 0x473b, 0x473c, 0x473d,\n  0x473e, 0x473f, 0x4740, 0x4741, 0x4742, 0x4743, 0x4744, 0x4745,\n  0x4746, 0x4747, 0x4748, 0x4749, 0x474a, 0x474b, 0x474c, 0x474d,\n  0x474e, 0x474f, 0x4750, 0x4751, 0x4752, 0x4753, 0x4754, 0x4755,\n  0x4756, 0x4757, 0x4758, 0x4759, 0x475a, 0x475b, 0x475c, 0x475d,\n  0x475e, 0x475f, 0x4760, 0x4761, 0x4762, 0x4763, 0x4764, 0x4765,\n  0x4766, 0x4767, 0x4768, 0x4769, 0x476a, 0x476b, 0x476c, 0x476d,\n  0x476e, 0x476f, 0x4770, 0x4771, 0x4772, 0x4773, 0x4774, 0x4775,\n  0x4776, 0x4777, 0x4778, 0x4779, 0x477a, 0x477b, 0x477c, 0x477d,\n  0x477e, 0x4821, 0x4822, 0x4823, 0x4824, 0x4825, 0x4826, 0x4827,\n  0x4828, 0x4829, 0x482a, 0x482b, 0x482c, 0x482d, 0x482e, 0x482f,\n  0x4830, 0x4831, 0x4832, 0x4833, 0x4834, 0x4835, 0x4836, 0x4837,\n  0x4838, 0x4839, 0x483a, 0x483b, 0x483c, 0x483d, 0x483e, 0x483f,\n  0x4840, 0x4841, 0x4842, 0x4843, 0x4844, 0x4845, 0x4846, 0x4847,\n  0x4848, 0x4849, 0x484a, 0x484b, 0x484c, 0x4853, 0x484d, 0x484e,\n  0x484f, 0x4850, 0x4851, 0x4852, 0x4854, 0x4855, 0x4856, 0x4857,\n  0x4858, 0x4859, 0x485a, 0x485b, 0x485c, 0x485d, 0x485e, 0x485f,\n  0x4860, 0x4861, 0x4862, 0x4863, 0x4864, 0x4865, 0x4866, 0x4867,\n  0x4868, 0x4869, 0x486a, 0x486b, 0x486c, 0x486d, 0x486e, 0x486f,\n  0x4870, 0x4871, 0x4872, 0x4873, 0x4874, 0x4875, 0x4876, 0x4877,\n  0x4878, 0x4879, 0x487a, 0x487b, 0x487c, 0x487d, 0x487e, 0x4921,\n  0x4922, 0x4923, 0x4924, 0x4925, 0x4926, 0x4927, 0x4928, 0x4929,\n  0x492a, 0x492b, 0x492c, 0x492d, 0x492e, 0x492f, 0x4930, 0x4931,\n  0x4932, 0x4933, 0x4934, 0x4935, 0x4936, 0x4937, 0x4938, 0x4939,\n  0x493a, 0x493b, 0x493c, 0x4941, 0x493d, 0x493e, 0x493f, 0x4940,\n  0x4942, 0x4943, 0x4944, 0x4945, 0x4946, 0x4947, 0x4948, 0x4949,\n  0x494a, 0x494b, 0x494c, 0x494d, 0x494e, 0x494f, 0x4950, 0x4951,\n  0x4952, 0x4953, 0x4954, 0x4955, 0x4956, 0x4957, 0x4958, 0x4959,\n  0x495a, 0x495b, 0x495c, 0x495d, 0x495e, 0x495f, 0x4960, 0x4961,\n  0x4962, 0x4963, 0x4964, 0x4965, 0x4966, 0x4967, 0x4968, 0x4969,\n  0x496a, 0x496b, 0x496c, 0x496d, 0x496e, 0x496f, 0x4970, 0x4971,\n  0x4972, 0x4973, 0x4974, 0x4975, 0x4976, 0x4977, 0x4978, 0x4979,\n  0x497a, 0x497b, 0x497c, 0x497d, 0x497e, 0x4a21, 0x4a22, 0x4a23,\n  0x4a24, 0x4a25, 0x4a26, 0x4a27, 0x4a28, 0x4a29, 0x4a2a, 0x4a2b,\n  0x4a2c, 0x4a2d, 0x4a2e, 0x4a2f, 0x4a30, 0x4a31, 0x4a32, 0x4a33,\n  0x4a34, 0x4a35, 0x4a36, 0x4a37, 0x4a38, 0x4a39, 0x4a3a, 0x4a3b,\n  0x4a3c, 0x4a3d, 0x4a3e, 0x4a3f, 0x4a40, 0x4a41, 0x4a42, 0x4a43,\n  0x4a44, 0x4a45, 0x4a46, 0x4a47, 0x4a48, 0x4a49, 0x4a4a, 0x4a4b,\n  0x4a4c, 0x4a4d, 0x4a4e, 0x4a4f, 0x4a50, 0x4a51, 0x4a52, 0x4a53,\n  0x4a54, 0x4a55, 0x4a56, 0x4a57, 0x4a58, 0x4a59, 0x4a5a, 0x4a5b,\n  0x4a5c, 0x4a5d, 0x4a5e, 0x4a5f, 0x4a60, 0x4a61, 0x4a62, 0x4a63,\n  0x4a64, 0x4a65, 0x4a66, 0x4a67, 0x4a68, 0x4a69, 0x4a6a, 0x4a6b,\n  0x4a6c, 0x4a6d, 0x4a6e, 0x4a6f, 0x4a70, 0x4a71, 0x4a72, 0x4a73,\n  0x4a74, 0x4a75, 0x4a76, 0x4a77, 0x4a78, 0x4a79, 0x4a7a, 0x4a7b,\n  0x4a7c, 0x4a7d, 0x4a7e, 0x4b21, 0x4b22, 0x4b23, 0x4b24, 0x4b25,\n  0x4b26, 0x4b27, 0x4b28, 0x4b29, 0x4b2a, 0x4b2b, 0x4b2c, 0x4b2d,\n  0x4b2e, 0x4b2f, 0x4b30, 0x4b31, 0x4b32, 0x4b33, 0x4b34, 0x4b35,\n  0x4b36, 0x4b37, 0x4b38, 0x4b39, 0x4b3a, 0x4b3b, 0x4b3c, 0x4b3d,\n  0x4b3e, 0x4b3f, 0x4b40, 0x4b41, 0x4b42, 0x4b43, 0x4b44, 0x4b45,\n  0x4b46, 0x4b47, 0x4b48, 0x4b49, 0x4b4a, 0x4b4b, 0x4b4c, 0x4b4d,\n  0x4b4e, 0x4b4f, 0x4b50, 0x4b51, 0x4b52, 0x4b53, 0x4b54, 0x4b55,\n  0x4b56, 0x4b57, 0x4b58, 0x4b59, 0x4b5a, 0x4b5b, 0x4b5c, 0x4b5d,\n  0x4b5e, 0x4b5f, 0x4b60, 0x4b61, 0x4b62, 0x4b63, 0x4b64, 0x4b65,\n  0x4b66, 0x4b67, 0x4b68, 0x4b69, 0x4b6a, 0x4b6b, 0x4b6c, 0x4b6d,\n  0x4b6e, 0x4b6f, 0x4b70, 0x4b71, 0x4b72, 0x4b73, 0x4b74, 0x4b75,\n  0x4b76, 0x4b77, 0x4b78, 0x4b79, 0x4b7a, 0x4b7b, 0x4b7c, 0x4b7d,\n  0x4b7e, 0x4c21, 0x4c22, 0x4c23, 0x4c24, 0x4c25, 0x4c26, 0x4c27,\n  0x4c28, 0x4c29, 0x4c2a, 0x4c2b, 0x4c2c, 0x4c2d, 0x4c2e, 0x4c2f,\n  0x4c30, 0x4c31, 0x4c32, 0x4c33, 0x4c34, 0x4c35, 0x4c36, 0x4c37,\n  0x4c38, 0x4c39, 0x4c3a, 0x4c3b, 0x4c3c, 0x4c3d, 0x4c3e, 0x4c3f,\n  0x4c40, 0x4c41, 0x4c42, 0x4c43, 0x4c44, 0x4c45, 0x4c46, 0x4c47,\n  0x4c48, 0x4c49, 0x4c4a, 0x4c4b, 0x4c4c, 0x4c4d, 0x4c4e, 0x4c4f,\n  0x4c50, 0x4c51, 0x4c52, 0x4c53, 0x4c54, 0x4c55, 0x4c56, 0x4c57,\n  0x4c58, 0x4c59, 0x4c5a, 0x4c5b, 0x4c5c, 0x4c5d, 0x4c5e, 0x4c5f,\n  0x4c60, 0x4c61, 0x4c62, 0x4c63, 0x4c64, 0x4c65, 0x4c66, 0x4c67,\n  0x4c68, 0x4c69, 0x4c6a, 0x4c6b, 0x4c6c, 0x4c6d, 0x4c6e, 0x4c6f,\n  0x4c70, 0x4c71, 0x4c72, 0x4c73, 0x4c74, 0x4c75, 0x4c76, 0x4c77,\n  0x4c78, 0x4c79, 0x4c7a, 0x4c7b, 0x4c7c, 0x4c7d, 0x4c7e, 0x4d21,\n  0x4d22, 0x4d23, 0x4d24, 0x4d25, 0x4d26, 0x4d27, 0x4d28, 0x4d29,\n  0x4d2a, 0x4d2b, 0x4d2c, 0x4d2d, 0x4d2e, 0x4d2f, 0x4d30, 0x4d31,\n  0x4d32, 0x4d33, 0x4d34, 0x4d35, 0x4d36, 0x4d37, 0x4d38, 0x4d39,\n  0x4d3a, 0x4d3b, 0x4d3c, 0x4d3d, 0x4d3e, 0x4d3f, 0x4d40, 0x4d41,\n  0x4d42, 0x4d43, 0x4d44, 0x4d45, 0x4d46, 0x4d47, 0x4d48, 0x4d49,\n  0x4d4a, 0x4d4b, 0x4d4c, 0x4d4d, 0x4d4e, 0x4d4f, 0x4d50, 0x4d51,\n  0x4d52, 0x4d53, 0x4d54, 0x4d55, 0x4d56, 0x4d57, 0x4d58, 0x4d59,\n  0x4d5a, 0x4d5b, 0x4d5c, 0x4d5d, 0x4d5e, 0x4d5f, 0x4d60, 0x4d61,\n  0x4d62, 0x4d63, 0x4d64, 0x4d65, 0x4d66, 0x4d67, 0x4d68, 0x4d69,\n  0x4d6a, 0x4d6b, 0x4d6c, 0x4d6d, 0x4d6e, 0x4d6f, 0x4d70, 0x4d71,\n  0x4d72, 0x4d73, 0x4d74, 0x4d75, 0x4d76, 0x4d77, 0x4d78, 0x4d79,\n  0x4d7a, 0x4d7b, 0x4d7c, 0x4d7d, 0x4d7e, 0x4e21, 0x4e22, 0x4e24,\n  0x4e25, 0x4e26, 0x4e27, 0x4e28, 0x4e29, 0x4e23, 0x4e2a, 0x4e2b,\n  0x4e2c, 0x4e2d, 0x4e2e, 0x4e2f, 0x4e30, 0x4e31, 0x4e32, 0x4e33,\n  0x4e34, 0x4e35, 0x4e36, 0x4e37, 0x4e38, 0x4e39, 0x4e3a, 0x4e3b,\n  0x4e3c, 0x4e3d, 0x4e3e, 0x4e3f, 0x4e40, 0x4e41, 0x4e42, 0x4e43,\n  0x4e44, 0x4e45, 0x4e46, 0x4e47, 0x4e48, 0x4e49, 0x4e4a, 0x4e4b,\n  0x4e4c, 0x4e4d, 0x4e4e, 0x4e4f, 0x4e50, 0x4e51, 0x4e52, 0x4e53,\n  0x4e54, 0x4e55, 0x4e56, 0x4e57, 0x4e58, 0x4e59, 0x4e5a, 0x4e5b,\n  0x4e5c, 0x4e5d, 0x4e5e, 0x4e5f, 0x4e60, 0x4e61, 0x4e62, 0x4e63,\n  0x4e64, 0x4e65, 0x4e66, 0x4e67, 0x4e68, 0x4e69, 0x4e6a, 0x4e6b,\n  0x4e6c, 0x4e6d, 0x4e6e, 0x4e6f, 0x4e70, 0x4e71, 0x4e72, 0x4e73,\n  0x4e74, 0x4e75, 0x4e76, 0x4e77, 0x4e78, 0x4e79, 0x4e7a, 0x4e7b,\n  0x4e7c, 0x4e7d, 0x4e7e, 0x4f21, 0x4f22, 0x4f23, 0x4f24, 0x4f25,\n  0x4f26, 0x4f27, 0x4f28, 0x4f29, 0x4f2a, 0x4f2b, 0x4f2c, 0x4f2d,\n  0x4f2e, 0x4f2f, 0x4f30, 0x4f31, 0x4f32, 0x4f33, 0x4f34, 0x4f35,\n  0x4f36, 0x4f37, 0x4f38, 0x4f39, 0x4f3a, 0x4f3b, 0x4f3c, 0x4f3d,\n  0x4f3e, 0x4f3f, 0x4f40, 0x4f41, 0x4f42, 0x4f43, 0x4f44, 0x4f45,\n  0x4f46, 0x4f47, 0x4f48, 0x4f49, 0x4f4a, 0x4f4b, 0x4f4c, 0x4f4d,\n  0x4f4e, 0x4f4f, 0x4f50, 0x4f51, 0x4f52, 0x4f53, 0x4f54, 0x4f55,\n  0x4f56, 0x4f57, 0x4f58, 0x4f59, 0x4f5a, 0x4f5b, 0x4f5c, 0x4f5d,\n  0x4f5e, 0x4f5f, 0x4f60, 0x4f61, 0x4f62, 0x4f63, 0x4f64, 0x4f65,\n  0x4f66, 0x4f67, 0x4f68, 0x4f69, 0x4f6a, 0x4f6b, 0x4f6c, 0x4f6d,\n  0x4f6e, 0x4f6f, 0x4f70, 0x4f71, 0x4f72, 0x4f74, 0x4f75, 0x4f76,\n  0x4f73, 0x4f77, 0x4f78, 0x4f79, 0x4f7a, 0x4f7b, 0x4f7c, 0x4f7d,\n  0x4f7e, 0x5021, 0x5022, 0x5023, 0x5024, 0x5025, 0x5026, 0x5027,\n  0x5028, 0x5029, 0x502a, 0x502b, 0x502c, 0x502e, 0x502f, 0x5030,\n  0x5031, 0x502d, 0x5032, 0x5033, 0x5034, 0x5035, 0x5037, 0x5038,\n  0x5039, 0x503a, 0x503b, 0x5036, 0x503c, 0x503d, 0x503e, 0x503f,\n  0x5040, 0x5041, 0x5042, 0x5043, 0x5044, 0x5045, 0x5046, 0x5047,\n  0x5048, 0x5049, 0x504a, 0x504b, 0x504c, 0x504d, 0x504e, 0x504f,\n  0x5050, 0x5051, 0x5052, 0x5053, 0x5054, 0x5055, 0x5056, 0x5057,\n  0x5058, 0x5059, 0x505a, 0x505b, 0x505c, 0x505d, 0x505e, 0x505f,\n  0x5060, 0x5061, 0x5062, 0x5063, 0x5064, 0x5065, 0x5066, 0x5067,\n  0x5068, 0x5069, 0x506a, 0x506b, 0x506c, 0x506d, 0x506e, 0x506f,\n  0x5070, 0x5071, 0x5072, 0x5073, 0x5074, 0x5075, 0x5076, 0x5077,\n  0x5078, 0x5079, 0x507a, 0x507b, 0x507c, 0x507d, 0x507e, 0x5121,\n  0x5122, 0x5123, 0x5124, 0x5125, 0x5126, 0x5127, 0x5128, 0x5129,\n  0x512a, 0x512b, 0x512c, 0x512d, 0x512e, 0x512f, 0x5130, 0x5131,\n  0x5132, 0x5133, 0x5134, 0x5135, 0x5136, 0x5137, 0x5138, 0x5139,\n  0x513a, 0x513b, 0x513c, 0x513d, 0x513e, 0x513f, 0x5140, 0x5141,\n  0x5142, 0x5143, 0x5144, 0x5145, 0x5146, 0x5147, 0x5148, 0x5149,\n  0x514a, 0x514b, 0x514c, 0x514d, 0x514e, 0x514f, 0x5150, 0x5151,\n  0x5152, 0x5153, 0x5154, 0x5155, 0x5156, 0x5157, 0x5158, 0x5159,\n  0x515a, 0x515b, 0x515c, 0x515d, 0x515e, 0x515f, 0x5160, 0x5161,\n  0x5162, 0x5163, 0x5164, 0x5165, 0x5166, 0x5167, 0x5168, 0x5169,\n  0x516a, 0x516b, 0x516c, 0x516d, 0x516e, 0x516f, 0x5170, 0x5171,\n  0x5172, 0x5173, 0x5174, 0x5175, 0x5176, 0x5177, 0x5178, 0x5179,\n  0x517a, 0x517b, 0x517c, 0x517d, 0x517e, 0x5221, 0x5222, 0x5223,\n  0x5224, 0x5225, 0x5226, 0x5227, 0x5228, 0x5229, 0x522a, 0x522b,\n  0x522c, 0x522d, 0x522e, 0x522f, 0x5230, 0x5231, 0x5232, 0x5233,\n  0x5234, 0x5235, 0x5236, 0x5237, 0x5238, 0x5239, 0x523a, 0x523b,\n  0x523c, 0x523d, 0x523e, 0x523f, 0x5240, 0x5241, 0x5242, 0x5243,\n  0x5244, 0x5245, 0x5246, 0x5247, 0x5248, 0x5249, 0x524a, 0x524b,\n  0x524c, 0x524d, 0x524e, 0x524f, 0x5250, 0x5251, 0x5252, 0x5253,\n  0x5254, 0x5255, 0x5256, 0x5257, 0x5258, 0x5259, 0x525a, 0x525b,\n  0x525c, 0x525d, 0x525e, 0x525f, 0x5260, 0x5261, 0x5262, 0x5263,\n  0x5264, 0x5265, 0x5266, 0x5267, 0x5268, 0x5269, 0x526a, 0x526b,\n  0x526c, 0x526d, 0x526e, 0x526f, 0x5270, 0x5271, 0x5272, 0x5273,\n  0x5274, 0x5276, 0x5277, 0x5278, 0x5275, 0x5279, 0x527a, 0x527b,\n  0x527c, 0x527d, 0x527e, 0x5321, 0x5322, 0x5323, 0x5324, 0x5325,\n  0x5326, 0x5327, 0x5328, 0x5329, 0x532a, 0x532b, 0x532c, 0x532d,\n  0x532e, 0x532f, 0x5330, 0x5331, 0x5332, 0x5333, 0x5334, 0x5335,\n  0x5336, 0x5337, 0x5338, 0x5339, 0x533a, 0x533b, 0x533c, 0x533d,\n  0x533e, 0x533f, 0x5340, 0x5341, 0x5342, 0x5343, 0x5344, 0x5345,\n  0x5346, 0x5347, 0x5348, 0x5349, 0x534a, 0x534b, 0x534c, 0x534d,\n  0x534e, 0x534f, 0x5350, 0x5351, 0x5352, 0x5353, 0x5354, 0x5355,\n  0x5356, 0x5357, 0x5358, 0x5359, 0x535a, 0x535b, 0x535c, 0x535d,\n  0x535e, 0x535f, 0x5360, 0x5361, 0x5362, 0x5363, 0x5364, 0x5365,\n  0x5366, 0x5367, 0x5368, 0x5369, 0x536a, 0x536b, 0x536c, 0x536d,\n  0x536e, 0x536f, 0x5370, 0x5371, 0x5372, 0x5373, 0x5374, 0x5375,\n  0x5376, 0x5377, 0x5378, 0x5379, 0x537a, 0x537b, 0x537c, 0x537d,\n  0x537e, 0x5421, 0x5422, 0x5423, 0x5424, 0x5425, 0x5426, 0x5427,\n  0x5428, 0x5429, 0x542a, 0x542b, 0x542c, 0x542d, 0x542e, 0x542f,\n  0x5430, 0x5431, 0x5432, 0x5434, 0x5435, 0x5436, 0x5437, 0x5438,\n  0x5439, 0x543a, 0x543b, 0x543c, 0x543d, 0x543e, 0x5433, 0x543f,\n  0x5440, 0x5441, 0x5442, 0x5443, 0x5444, 0x5445, 0x5446, 0x5447,\n  0x5448, 0x5449, 0x544a, 0x544b, 0x544c, 0x544d, 0x544e, 0x544f,\n  0x5450, 0x5451, 0x5452, 0x5453, 0x5454, 0x5455, 0x5456, 0x5457,\n  0x5458, 0x5459, 0x545a, 0x545b, 0x545c, 0x545d, 0x545e, 0x545f,\n  0x5460, 0x5461, 0x5462, 0x5463, 0x5464, 0x5465, 0x5466, 0x5467,\n  0x5468, 0x5469, 0x546a, 0x546c, 0x546b, 0x546d, 0x546e, 0x546f,\n  0x5470, 0x5471, 0x5472, 0x5473, 0x5474, 0x5475, 0x5476, 0x5477,\n  0x5478, 0x5479, 0x547a, 0x547b, 0x547c, 0x547d, 0x547e, 0x5521,\n  0x5522, 0x5523, 0x5524, 0x5525, 0x5526, 0x5527, 0x5528, 0x5529,\n  0x552a, 0x552b, 0x552c, 0x552d, 0x552e, 0x552f, 0x5530, 0x5531,\n  0x5532, 0x5533, 0x5534, 0x5535, 0x5536, 0x5537, 0x5538, 0x5539,\n  0x553a, 0x553b, 0x553c, 0x553d, 0x553e, 0x553f, 0x5540, 0x5541,\n  0x5542, 0x5543, 0x5544, 0x5545, 0x5546, 0x5547, 0x5548, 0x5549,\n  0x554a, 0x554b, 0x554c, 0x554d, 0x554e, 0x554f, 0x5550, 0x5551,\n  0x5552, 0x5553, 0x5554, 0x5555, 0x5556, 0x5557, 0x5558, 0x5559,\n  0x555a, 0x555b, 0x555c, 0x555d, 0x555e, 0x555f, 0x5560, 0x5561,\n  0x5562, 0x5563, 0x5564, 0x5565, 0x5566, 0x5567, 0x5568, 0x5569,\n  0x556a, 0x556b, 0x556c, 0x556d, 0x556e, 0x556f, 0x5570, 0x5571,\n  0x5572, 0x5573, 0x5574, 0x5575, 0x5576, 0x5577, 0x5578, 0x5579,\n  0x557a, 0x557b, 0x557c, 0x557d, 0x557e, 0x5621, 0x5622, 0x5623,\n  0x5624, 0x5625, 0x5626, 0x5627, 0x5628, 0x5629, 0x562a, 0x562b,\n  0x562c, 0x562d, 0x562e, 0x562f, 0x5630, 0x5631, 0x5632, 0x5633,\n  0x5634, 0x5635, 0x5636, 0x5637, 0x5638, 0x5639, 0x563a, 0x563b,\n  0x563c, 0x563d, 0x563e, 0x563f, 0x5640, 0x5641, 0x5642, 0x5643,\n  0x5644, 0x5645, 0x5647, 0x5648, 0x5649, 0x564a, 0x564b, 0x5646,\n  0x564c, 0x564d, 0x564e, 0x564f, 0x5650, 0x5651, 0x5652, 0x5653,\n  0x5654, 0x5656, 0x5657, 0x5658, 0x5655, 0x5659, 0x565a, 0x565b,\n  0x565c, 0x565d, 0x565e, 0x565f, 0x5660, 0x5661, 0x5662, 0x5663,\n  0x5664, 0x5665, 0x5666, 0x5667, 0x5668, 0x5669, 0x566a, 0x566b,\n  0x566c, 0x566d, 0x566e, 0x566f, 0x5670, 0x5671, 0x5672, 0x5673,\n  0x5674, 0x5675, 0x5676, 0x5677, 0x5678, 0x5679, 0x567a, 0x567b,\n  0x567c, 0x567d, 0x567e, 0x5721, 0x5722, 0x5723, 0x5724, 0x5725,\n  0x5726, 0x5727, 0x5728, 0x5729, 0x572a, 0x572b, 0x572c, 0x572d,\n  0x572e, 0x572f, 0x5730, 0x5731, 0x5732, 0x5733, 0x5734, 0x5735,\n  0x5736, 0x5737, 0x5738, 0x5739, 0x573a, 0x573b, 0x573c, 0x573d,\n  0x573e, 0x573f, 0x5740, 0x5741, 0x5742, 0x5743, 0x5744, 0x5745,\n  0x5746, 0x5747, 0x5748, 0x5749, 0x574a, 0x574b, 0x574c, 0x574d,\n  0x574e, 0x574f, 0x5750, 0x5751, 0x5752, 0x5753, 0x5754, 0x5755,\n  0x5756, 0x5757, 0x5758, 0x5759, 0x575a, 0x575b, 0x575c, 0x575d,\n  0x575e, 0x575f, 0x5760, 0x5761, 0x5762, 0x5764, 0x5765, 0x5766,\n  0x5767, 0x5768, 0x5769, 0x576a, 0x576b, 0x576c, 0x576d, 0x576e,\n  0x576f, 0x5770, 0x5771, 0x5772, 0x5773, 0x5774, 0x5775, 0x5776,\n  0x5777, 0x5778, 0x5779, 0x583e, 0x5763, 0x577a, 0x577b, 0x577c,\n  0x577d, 0x577e, 0x5821, 0x5822, 0x5823, 0x5824, 0x5825, 0x5826,\n  0x5827, 0x5828, 0x5829, 0x582a, 0x582b, 0x582c, 0x582d, 0x582e,\n  0x582f, 0x5830, 0x5831, 0x5832, 0x5833, 0x584c, 0x5834, 0x5835,\n  0x5836, 0x5837, 0x5838, 0x5839, 0x583a, 0x583b, 0x583c, 0x583d,\n  0x583f, 0x5840, 0x5841, 0x5842, 0x5843, 0x5844, 0x5845, 0x5846,\n  0x5847, 0x5848, 0x5849, 0x584a, 0x584b, 0x584d, 0x584e, 0x584f,\n  0x5850, 0x5851, 0x5852, 0x5853, 0x5854, 0x5855, 0x5856, 0x5857,\n  0x5858, 0x5859, 0x585a, 0x585b, 0x585c, 0x585d, 0x585e, 0x585f,\n  0x5860, 0x5861, 0x5862, 0x5863, 0x5864, 0x5865, 0x5866, 0x5867,\n  0x5868, 0x5869, 0x586a, 0x586b, 0x586c, 0x586d, 0x586e, 0x586f,\n  0x5870, 0x5871, 0x5872, 0x5873, 0x5874, 0x5875, 0x5876, 0x5877,\n  0x5878, 0x5879, 0x587a, 0x587b, 0x587c, 0x587d, 0x587e, 0x5921,\n  0x5922, 0x5923, 0x5924, 0x5925, 0x5926, 0x5927, 0x5928, 0x592a,\n  0x592b, 0x592c, 0x592d, 0x592e, 0x592f, 0x5930, 0x5931, 0x5932,\n  0x5933, 0x5934, 0x5935, 0x5936, 0x5937, 0x5938, 0x5939, 0x593a,\n  0x593b, 0x593c, 0x5929, 0x593d, 0x593e, 0x593f, 0x5940, 0x5941,\n  0x5942, 0x5943, 0x5944, 0x5945, 0x5946, 0x5947, 0x5948, 0x5949,\n  0x594a, 0x594b, 0x594c, 0x594d, 0x594e, 0x594f, 0x5950, 0x5951,\n  0x5952, 0x5953, 0x5954, 0x5955, 0x5956, 0x5957, 0x5958, 0x5959,\n  0x595a, 0x595b, 0x595c, 0x595d, 0x595e, 0x595f, 0x5960, 0x5961,\n  0x5962, 0x5963, 0x5964, 0x5965, 0x5966, 0x5974, 0x5967, 0x5968,\n  0x5969, 0x596a, 0x596b, 0x596c, 0x596d, 0x596e, 0x596f, 0x5970,\n  0x5971, 0x5972, 0x5973, 0x5975, 0x5976, 0x5977, 0x5978, 0x5979,\n  0x597a, 0x597b, 0x597c, 0x597d, 0x597e, 0x5a21, 0x5a22, 0x5a23,\n  0x5a24, 0x5a25, 0x5a26, 0x5a27, 0x5a28, 0x5a29, 0x5a2a, 0x5a2b,\n  0x5a2c, 0x5a2d, 0x5a2e, 0x5a2f, 0x5a30, 0x5a31, 0x5a32, 0x5a33,\n  0x5a34, 0x5a35, 0x5a36, 0x3866, 0x5a37, 0x5a38, 0x5a39, 0x5a3a,\n  0x5a3b, 0x5a3c, 0x5a3d, 0x5a3e, 0x5a3f, 0x5a40, 0x5a41, 0x5a42,\n  0x5a43, 0x5a44, 0x5a45, 0x5a46, 0x5a47, 0x5a48, 0x5a49, 0x5a4a,\n  0x5a4b, 0x5a6d, 0x5a4c, 0x5a4d, 0x5a4e, 0x5a4f, 0x5a50, 0x5a51,\n  0x5a52, 0x5a53, 0x5a54, 0x5a55, 0x5a56, 0x5a57, 0x5a58, 0x5a59,\n  0x5a5a, 0x5a5b, 0x5a5c, 0x5a5d, 0x5a5e, 0x5a5f, 0x5a60, 0x5a61,\n  0x5a62, 0x5a63, 0x5a64, 0x5a65, 0x5a66, 0x5a67, 0x5a68, 0x5a69,\n  0x5a6a, 0x5a6b, 0x5a6c, 0x5a6e, 0x5a6f, 0x5a70, 0x5a71, 0x5a72,\n  0x5a73, 0x5a74, 0x5a75, 0x5a76, 0x5a77, 0x5a78, 0x5a79, 0x5a7a,\n  0x5a7b, 0x5a7c, 0x5a7d, 0x5a7e, 0x5b21, 0x5b22, 0x5b23, 0x5b24,\n  0x5b25, 0x5b26, 0x5b27, 0x5b28, 0x5b29, 0x5b2a, 0x5b2b, 0x5b2c,\n  0x5b2d, 0x5b2e, 0x5b2f, 0x5b30, 0x5b31, 0x5b32, 0x5b33, 0x5b34,\n  0x5b35, 0x5b36, 0x5b37, 0x5b38, 0x5b39, 0x5b3a, 0x5b3b, 0x5b3c,\n  0x5b3d, 0x5b3e, 0x5b3f, 0x5b40, 0x5b41, 0x5b42, 0x5b43, 0x5b44,\n  0x5b45, 0x5b46, 0x5b47, 0x5b48, 0x5b49, 0x5b4a, 0x5b4b, 0x5b4c,\n  0x5b4d, 0x5b4e, 0x5b4f, 0x5b50, 0x5b51, 0x5b52, 0x5b53, 0x5b54,\n  0x5b55, 0x5b56, 0x5b57, 0x5b58, 0x5b59, 0x5b5a, 0x5b5b, 0x5b5c,\n  0x5b5d, 0x5b5e, 0x5b5f, 0x5b60, 0x5b61, 0x5b62, 0x5b63, 0x5b64,\n  0x5b65, 0x5b66, 0x5b67, 0x5b68, 0x5b69, 0x5b6a, 0x5b6b, 0x5b6c,\n  0x5b6d, 0x5b6e, 0x5b70, 0x5b71, 0x5b72, 0x5b73, 0x5b6f, 0x5b74,\n  0x5b75, 0x5b76, 0x5b77, 0x5b78, 0x5b79, 0x5b7a, 0x5b7b, 0x5b7c,\n  0x5b7d, 0x5b7e, 0x5c21, 0x5c22, 0x5c23, 0x5c24, 0x5c25, 0x5c26,\n  0x5c27, 0x5c28, 0x5c29, 0x5c2a, 0x5c2b, 0x5c2c, 0x5c2d, 0x5c2e,\n  0x5c2f, 0x5c30, 0x5c31, 0x5c32, 0x5c33, 0x5c34, 0x5c35, 0x5c36,\n  0x5c37, 0x5c38, 0x5c39, 0x5c3a, 0x5c3b, 0x5c3c, 0x5c3d, 0x5c3e,\n  0x5c3f, 0x5c40, 0x5c41, 0x5c42, 0x5c43, 0x5c44, 0x5c45, 0x5c46,\n  0x5c47, 0x5c48, 0x5c49, 0x5c4a, 0x5c4b, 0x5c4c, 0x5c4d, 0x5c4e,\n  0x5c4f, 0x5c50, 0x5c51, 0x5c52, 0x5c53, 0x5c54, 0x5c55, 0x5c56,\n  0x5c57, 0x5c58, 0x5c59, 0x5c5a, 0x5c5b, 0x5c5c, 0x5c5d, 0x5c5e,\n  0x5c5f, 0x5c60, 0x5c61, 0x5c62, 0x5c63, 0x5c64, 0x5c65, 0x5c66,\n  0x5c67, 0x5c68, 0x5c69, 0x5c6a, 0x5c6b, 0x5c6c, 0x5c6d, 0x5c6e,\n  0x5c6f, 0x5c70, 0x5c71, 0x5c72, 0x5c73, 0x5c74, 0x5c75, 0x5c76,\n  0x5c77, 0x5c78, 0x5c79, 0x5c7a, 0x5c7b, 0x5c7c, 0x5c7d, 0x5c7e,\n  0x5d21, 0x5d22, 0x5d23, 0x5d24, 0x5d25, 0x5d26, 0x5d27, 0x5d28,\n  0x5d29, 0x5d2a, 0x5d2b, 0x5d2c, 0x5d2d, 0x5d2e, 0x5d2f, 0x5d30,\n  0x5d31, 0x5d32, 0x5d33, 0x5d34, 0x5d35, 0x5d36, 0x5d37, 0x5d38,\n  0x5d39, 0x5d3a, 0x5d3b, 0x5d3c, 0x5d3d, 0x5d3e, 0x5d3f, 0x5d40,\n  0x5d41, 0x5d42, 0x5d43, 0x5d44, 0x5d45, 0x5d46, 0x5d47, 0x5d48,\n  0x5d49, 0x5d4a, 0x5d4b, 0x5d4c, 0x5d4d, 0x5d4e, 0x5d4f, 0x5d50,\n  0x5d51, 0x5d52, 0x5d53, 0x5d54, 0x5d55, 0x5d56, 0x5d57, 0x5d58,\n  0x5d59, 0x5d5a, 0x5d5b, 0x5d5c, 0x5d5d, 0x5d5e, 0x5d5f, 0x5d60,\n  0x5d61, 0x5d62, 0x5d63, 0x5d64, 0x5d65, 0x5d66, 0x5d67, 0x5d68,\n  0x5d69, 0x5d6a, 0x5d6b, 0x5d6c, 0x5d6d, 0x5d6e, 0x5d6f, 0x5d70,\n  0x5d71, 0x5d72, 0x5d73, 0x5d74, 0x5d75, 0x5d76, 0x5d77, 0x5d78,\n  0x5d79, 0x5d7a, 0x5d7b, 0x5d7c, 0x5d7d, 0x5d7e, 0x5e21, 0x5e22,\n  0x5e23, 0x5e24, 0x5e25, 0x5e26, 0x5e27, 0x5e28, 0x5e29, 0x5e2a,\n  0x5e2b, 0x5e2c, 0x5e2d, 0x5e2e, 0x5e2f, 0x5e30, 0x5e31, 0x5e32,\n  0x5e33, 0x5e34, 0x5e35, 0x5e36, 0x5e37, 0x5e38, 0x5e39, 0x5e3f,\n  0x5e3a, 0x5e3b, 0x5e3c, 0x5e3d, 0x5e3e, 0x5e40, 0x5e41, 0x5e42,\n  0x5e43, 0x5e44, 0x5e45, 0x5e46, 0x5e47, 0x5e48, 0x5e49, 0x5e4e,\n  0x5e4a, 0x5e4b, 0x5e4c, 0x5e4d, 0x5e4f, 0x5e50, 0x5e51, 0x5e52,\n  0x5e53, 0x5e54, 0x5e55, 0x5e56, 0x5e57, 0x5e58, 0x5e59, 0x5e5a,\n  0x5e5b, 0x5e5c, 0x5e5d, 0x5e5e, 0x5e5f, 0x5e60, 0x5e61, 0x5e62,\n  0x5e63, 0x5e64, 0x5e65, 0x5e66, 0x5e67, 0x5e68, 0x5e69, 0x5e6a,\n  0x5e6b, 0x5e6c, 0x5e6d, 0x5e6e, 0x5e6f, 0x5e72, 0x5e70, 0x5e71,\n  0x5e73, 0x5e74, 0x5e75, 0x5e76, 0x5e77, 0x5e78, 0x5e79, 0x5e7a,\n  0x5e7b, 0x5e7c, 0x5e7d, 0x5e7e, 0x5f21, 0x5f22, 0x5f23, 0x5f24,\n  0x5f25, 0x5f26, 0x5f27, 0x5f28, 0x5f29, 0x5f2a, 0x5f2b, 0x5f2c,\n  0x5f2d, 0x5f2e, 0x5f2f, 0x5f30, 0x5f32, 0x5f31, 0x5f33, 0x5f34,\n  0x5f35, 0x5f36, 0x5f37, 0x5f38, 0x5f39, 0x5f3a, 0x5f3b, 0x5f3c,\n  0x5f3d, 0x5f3e, 0x5f3f, 0x5f40, 0x5f41, 0x5f42, 0x5f43, 0x5f44,\n  0x5f45, 0x5f46, 0x5f47, 0x5f48, 0x5f49, 0x5f4a, 0x5f4b, 0x5f4c,\n  0x5f4d, 0x5f4e, 0x5f4f, 0x5f50, 0x5f51, 0x5f52, 0x5f53, 0x5f54,\n  0x5f55, 0x5f56, 0x5f57, 0x5f58, 0x5f59, 0x5f5a, 0x5f5b, 0x5f5c,\n  0x5f5d, 0x5f6f, 0x5f5e, 0x5f5f, 0x5f60, 0x5f61, 0x5f62, 0x5f63,\n  0x5f64, 0x5f65, 0x5f66, 0x5f67, 0x5f68, 0x5f69, 0x5f6a, 0x5f6b,\n  0x5f6c, 0x5f6d, 0x5f6e, 0x5f70, 0x5f71, 0x5f72, 0x5f73, 0x5f74,\n  0x5f75, 0x5f76, 0x5f77, 0x5f78, 0x5f79, 0x5f7a, 0x5f7b, 0x5f7c,\n  0x5f7d, 0x5f7e, 0x6021, 0x6022, 0x6023, 0x6024, 0x6025, 0x6026,\n  0x6027, 0x6028, 0x6029, 0x602a, 0x602b, 0x602c, 0x602d, 0x602e,\n  0x602f, 0x6030, 0x6031, 0x6032, 0x6033, 0x6034, 0x6035, 0x6036,\n  0x6037, 0x6038, 0x6039, 0x603a, 0x603b, 0x603c, 0x603d, 0x603e,\n  0x603f, 0x6040, 0x6041, 0x6042, 0x6043, 0x6044, 0x6045, 0x6046,\n  0x6047, 0x6048, 0x6049, 0x604a, 0x604b, 0x604c, 0x604d, 0x604e,\n  0x604f, 0x6050, 0x6051, 0x6052, 0x6053, 0x6054, 0x6055, 0x6056,\n  0x6057, 0x6058, 0x6059, 0x605a, 0x605b, 0x605c, 0x605d, 0x6064,\n  0x605e, 0x605f, 0x6060, 0x6061, 0x6062, 0x6063, 0x6065, 0x6066,\n  0x6067, 0x6068, 0x6069, 0x606a, 0x606b, 0x606c, 0x606d, 0x606e,\n  0x606f, 0x6070, 0x6071, 0x6072, 0x6073, 0x6074, 0x6075, 0x6076,\n  0x6077, 0x6078, 0x6079, 0x607a, 0x607b, 0x607c, 0x607d, 0x607e,\n  0x6121, 0x6122, 0x6123, 0x6124, 0x6125, 0x6126, 0x6127, 0x6128,\n  0x6129, 0x612a, 0x612b, 0x612c, 0x612d, 0x612e, 0x612f, 0x6130,\n  0x6131, 0x6132, 0x6133, 0x6134, 0x6135, 0x6136, 0x6137, 0x6138,\n  0x6139, 0x613a, 0x613b, 0x613c, 0x613d, 0x613e, 0x613f, 0x6140,\n  0x6141, 0x6142, 0x6143, 0x6144, 0x6145, 0x6146, 0x6147, 0x6148,\n  0x6149, 0x614a, 0x614b, 0x614c, 0x614d, 0x614e, 0x614f, 0x6150,\n  0x6151, 0x6152, 0x6154, 0x6155, 0x6156, 0x6153, 0x6157, 0x6158,\n  0x6159, 0x615a, 0x615b, 0x615c, 0x615d, 0x615e, 0x615f, 0x6160,\n  0x6161, 0x6162, 0x6163, 0x6164, 0x6165, 0x6166, 0x6167, 0x6168,\n  0x6169, 0x616a, 0x616b, 0x616c, 0x616d, 0x616e, 0x616f, 0x6170,\n  0x6171, 0x6172, 0x6173, 0x6174, 0x6175, 0x6176, 0x6177, 0x6178,\n  0x6179, 0x617a, 0x617b, 0x617d, 0x617e, 0x6221, 0x6222, 0x6223,\n  0x6224, 0x617c, 0x622d, 0x6225, 0x6226, 0x6227, 0x6228, 0x6229,\n  0x622a, 0x622b, 0x622c, 0x622f, 0x6230, 0x6231, 0x6232, 0x622e,\n  0x6233, 0x6234, 0x6235, 0x6236, 0x6237, 0x6238, 0x6239, 0x623a,\n  0x623b, 0x623c, 0x623d, 0x623e, 0x623f, 0x6240, 0x6241, 0x6242,\n  0x6243, 0x6245, 0x6246, 0x6244, 0x6247, 0x6248, 0x6249, 0x624a,\n  0x624b, 0x624c, 0x624d, 0x624e, 0x624f, 0x6250, 0x6251, 0x6252,\n  0x6253, 0x6254, 0x6255, 0x6256, 0x6257, 0x6258, 0x6259, 0x625a,\n  0x625b, 0x625c, 0x625d, 0x625e, 0x625f, 0x6260, 0x6261, 0x6262,\n  0x6263, 0x6264, 0x6265, 0x6266, 0x6267, 0x6268, 0x6269, 0x626a,\n  0x626b, 0x626c, 0x626d, 0x626e, 0x626f, 0x6270, 0x6271, 0x6272,\n  0x6273, 0x6274, 0x6275, 0x6276, 0x6277, 0x6278, 0x6279, 0x627a,\n  0x627b, 0x627c, 0x627d, 0x627e, 0x6321, 0x6322, 0x6323, 0x6324,\n  0x6325, 0x6326, 0x6327, 0x6328, 0x6329, 0x632a, 0x632b, 0x632c,\n  0x632d, 0x632e, 0x632f, 0x6330, 0x6331, 0x6332, 0x6333, 0x6334,\n  0x6335, 0x6336, 0x6337, 0x6338, 0x6339, 0x633a, 0x633b, 0x633c,\n  0x633d, 0x633e, 0x633f, 0x6340, 0x6341, 0x6342, 0x6343, 0x6344,\n  0x6345, 0x6346, 0x6347, 0x6348, 0x6349, 0x634a, 0x634b, 0x634c,\n  0x634d, 0x634e, 0x634f, 0x6350, 0x6351, 0x6352, 0x6353, 0x6354,\n  0x6355, 0x6356, 0x6357, 0x6358, 0x6359, 0x635a, 0x635b, 0x635c,\n  0x635d, 0x635e, 0x635f, 0x6360, 0x6361, 0x6362, 0x6363, 0x6364,\n  0x6365, 0x6366, 0x6367, 0x6368, 0x6369, 0x636a, 0x636b, 0x636c,\n  0x636d, 0x636e, 0x636f, 0x6370, 0x6371, 0x6372, 0x6373, 0x6374,\n  0x6375, 0x6376, 0x6377, 0x6378, 0x6379, 0x637a, 0x637b, 0x637c,\n  0x637d, 0x637e, 0x6421, 0x6422, 0x6423, 0x6424, 0x6425, 0x6426,\n  0x6427, 0x6428, 0x6429, 0x642a, 0x642b, 0x642c, 0x642d, 0x642e,\n  0x642f, 0x6430, 0x6431, 0x6432, 0x6433, 0x6434, 0x6435, 0x6436,\n  0x6437, 0x6438, 0x6439, 0x643a, 0x643b, 0x643c, 0x643d, 0x643e,\n  0x643f, 0x6440, 0x6441, 0x6442, 0x6443, 0x6444, 0x6445, 0x6446,\n  0x6447, 0x6448, 0x6449, 0x644a, 0x644b, 0x644c, 0x644d, 0x644e,\n  0x644f, 0x6450, 0x6451, 0x6452, 0x6453, 0x6454, 0x6455, 0x6456,\n  0x6457, 0x6458, 0x6459, 0x645a, 0x645b, 0x645c, 0x645d, 0x645e,\n  0x645f, 0x6460, 0x6461, 0x6462, 0x6463, 0x6464, 0x6465, 0x6466,\n  0x6467, 0x6468, 0x6469, 0x646a, 0x646b, 0x646c, 0x646d, 0x646e,\n  0x646f, 0x6470, 0x6471, 0x6472, 0x6473, 0x6474, 0x6475, 0x6476,\n  0x6477, 0x6478, 0x6479, 0x647a, 0x647b, 0x647c, 0x647d, 0x647e,\n  0x6521, 0x6522, 0x6523, 0x6524, 0x6525, 0x6526, 0x6527, 0x6528,\n  0x6529, 0x652a, 0x652b, 0x652c, 0x652d, 0x652e, 0x652f, 0x6530,\n  0x6531, 0x6532, 0x6533, 0x6534, 0x6535, 0x653b, 0x6536, 0x6537,\n  0x6538, 0x6539, 0x653a, 0x653c, 0x653d, 0x653e, 0x653f, 0x6540,\n  0x6541, 0x6542, 0x6543, 0x6544, 0x6545, 0x6546, 0x6547, 0x6548,\n  0x6549, 0x654a, 0x654b, 0x654c, 0x654d, 0x654f, 0x6550, 0x654e,\n  0x6551, 0x6552, 0x6553, 0x6554, 0x6555, 0x6556, 0x6557, 0x6558,\n  0x6559, 0x655a, 0x655b, 0x655c, 0x655d, 0x655e, 0x655f, 0x6560,\n  0x6561, 0x6562, 0x6563, 0x6564, 0x6565, 0x6566, 0x6568, 0x6567,\n  0x6569, 0x656a, 0x656b, 0x656c, 0x656d, 0x656e, 0x656f, 0x6570,\n  0x6571, 0x6572, 0x6573, 0x6574, 0x6575, 0x6576, 0x6577, 0x6578,\n  0x6579, 0x657a, 0x657c, 0x657b, 0x657d, 0x657e, 0x6621, 0x6622,\n  0x6623, 0x6624, 0x6625, 0x6626, 0x6627, 0x6628, 0x6629, 0x662a,\n  0x662b, 0x662c, 0x662d, 0x662e, 0x662f, 0x6630, 0x6631, 0x6632,\n  0x6633, 0x6634, 0x6635, 0x6636, 0x6637, 0x6638, 0x6639, 0x663a,\n  0x663b, 0x663c, 0x663d, 0x663e, 0x663f, 0x6640, 0x6641, 0x6642,\n  0x6643, 0x6644, 0x6645, 0x6646, 0x6647, 0x6648, 0x6649, 0x664a,\n  0x664b, 0x664c, 0x664d, 0x664e, 0x664f, 0x6650, 0x6651, 0x6652,\n  0x6653, 0x6654, 0x6655, 0x6656, 0x6657, 0x6658, 0x6659, 0x665a,\n  0x665b, 0x665c, 0x665d, 0x665e, 0x665f, 0x6660, 0x6661, 0x6662,\n  0x6663, 0x6664, 0x6665, 0x6666, 0x6667, 0x6668, 0x6669, 0x666a,\n  0x666b, 0x666c, 0x666d, 0x666e, 0x666f, 0x6670, 0x6671, 0x6672,\n  0x6673, 0x6675, 0x6676, 0x6677, 0x6678, 0x6679, 0x667a, 0x667b,\n  0x667c, 0x667d, 0x667e, 0x6721, 0x6722, 0x6723, 0x6724, 0x6725,\n  0x6726, 0x6727, 0x6728, 0x6729, 0x672a, 0x672b, 0x672c, 0x672d,\n  0x672e, 0x672f, 0x6730, 0x6731, 0x6732, 0x6733, 0x6734, 0x6735,\n  0x6736, 0x6737, 0x6738, 0x6739, 0x673a, 0x673b, 0x673c, 0x673d,\n  0x673e, 0x673f, 0x6740, 0x6741, 0x6742, 0x6743, 0x6744, 0x6745,\n  0x6746, 0x6747, 0x6748, 0x6749, 0x674a, 0x674b, 0x674c, 0x674d,\n  0x674e, 0x674f, 0x6750, 0x6751, 0x6752, 0x6753, 0x6754, 0x6755,\n  0x6756, 0x6757, 0x6758, 0x6759, 0x675a, 0x675b, 0x675c, 0x675d,\n  0x675e, 0x675f, 0x6760, 0x6761, 0x6762, 0x6763, 0x6764, 0x6765,\n  0x6766, 0x676a, 0x6767, 0x6768, 0x6769, 0x676b, 0x676c, 0x676d,\n  0x676e, 0x676f, 0x6770, 0x6771, 0x6772, 0x6773, 0x6774, 0x6776,\n  0x6777, 0x6778, 0x6779, 0x6775, 0x677a, 0x677b, 0x677c, 0x677d,\n  0x6828, 0x677e, 0x6821, 0x6822, 0x6823, 0x6824, 0x6825, 0x6826,\n  0x6827, 0x6829, 0x682a, 0x682b, 0x682c, 0x682d, 0x682e, 0x682f,\n  0x6830, 0x6831, 0x6832, 0x6833, 0x6834, 0x6835, 0x6836, 0x6837,\n  0x6838, 0x6839, 0x683a, 0x683b, 0x683c, 0x683d, 0x683e, 0x683f,\n  0x6840, 0x6841, 0x6842, 0x6843, 0x6844, 0x6845, 0x6846, 0x6847,\n  0x6848, 0x6849, 0x684a, 0x684b, 0x684c, 0x684d, 0x684e, 0x684f,\n  0x6850, 0x6851, 0x6852, 0x6853, 0x6854, 0x6855, 0x6856, 0x6857,\n  0x6858, 0x6859, 0x685a, 0x685b, 0x685c, 0x685d, 0x685e, 0x685f,\n  0x6860, 0x6861, 0x6862, 0x6863, 0x6864, 0x6865, 0x6866, 0x6867,\n  0x6868, 0x6869, 0x686a, 0x686b, 0x686c, 0x686d, 0x686e, 0x686f,\n  0x6870, 0x6871, 0x6872, 0x6873, 0x6874, 0x6875, 0x6876, 0x6877,\n  0x6878, 0x6879, 0x687a, 0x687b, 0x687c, 0x687d, 0x687e, 0x6921,\n  0x6922, 0x6923, 0x6924, 0x6925, 0x6926, 0x6927, 0x6928, 0x6929,\n  0x692a, 0x692b, 0x692c, 0x692d, 0x692e, 0x692f, 0x6930, 0x6931,\n  0x6932, 0x6933, 0x6934, 0x6935, 0x6936, 0x6937, 0x6938, 0x6939,\n  0x693a, 0x693b, 0x693c, 0x693d, 0x693e, 0x693f, 0x6940, 0x6941,\n  0x6942, 0x6943, 0x6944, 0x6945, 0x6946, 0x6947, 0x6948, 0x6949,\n  0x694a, 0x694c, 0x694d, 0x694b, 0x694e, 0x694f, 0x6950, 0x6951,\n  0x6952, 0x6953, 0x6954, 0x6955, 0x6956, 0x6957, 0x6958, 0x6959,\n  0x695a, 0x695b, 0x695c, 0x695d, 0x695e, 0x695f, 0x6960, 0x6961,\n  0x6962, 0x6963, 0x6964, 0x6965, 0x6966, 0x6967, 0x6968, 0x6969,\n  0x696a, 0x696b, 0x696c, 0x696d, 0x696e, 0x696f, 0x6970, 0x6971,\n  0x6972, 0x6973, 0x6974, 0x6975, 0x6976, 0x6977, 0x6978, 0x6979,\n  0x697a, 0x697b, 0x697c, 0x697d, 0x697e, 0x6a21, 0x6a22, 0x6a23,\n  0x6a24, 0x6a25, 0x6a26, 0x6a27, 0x6a28, 0x6a29, 0x6a2a, 0x6a2b,\n  0x6a2c, 0x6a2d, 0x6a2e, 0x6a2f, 0x6a30, 0x6a31, 0x6a32, 0x6a33,\n  0x6a34, 0x6a35, 0x6a36, 0x6a37, 0x6a38, 0x6a39, 0x6a3a, 0x6a3b,\n  0x6a3c, 0x6a3d, 0x6a3e, 0x6a3f, 0x6a40, 0x6a41, 0x6a42, 0x6a43,\n  0x6a44, 0x6a45, 0x6a46, 0x6a47, 0x6a48, 0x6a49, 0x6a4a, 0x6a4b,\n  0x6a4c, 0x6a4d, 0x6a4e, 0x6a4f, 0x6a50, 0x6a51, 0x6a52, 0x6a53,\n  0x6a54, 0x6a55, 0x6a56, 0x6a57, 0x6a58, 0x6a59, 0x6a5a, 0x6a5b,\n  0x6a5c, 0x6a5d, 0x6a5e, 0x6a5f, 0x6a60, 0x6a61, 0x6a62, 0x6a63,\n  0x6a64, 0x6a65, 0x6a66, 0x6a67, 0x6a68, 0x6a69, 0x6a6a, 0x6a6b,\n  0x6a6c, 0x6a6d, 0x6a6e, 0x6a6f, 0x6a70, 0x6a71, 0x6a72, 0x6a73,\n  0x6a74, 0x6a75, 0x6a76, 0x6a77, 0x6a78, 0x6a79, 0x6a7a, 0x6a7b,\n  0x6a7c, 0x6a7d, 0x6a7e, 0x6b21, 0x6b22, 0x6b23, 0x6b24, 0x6b25,\n  0x6b26, 0x6b27, 0x6b28, 0x6b29, 0x6b2a, 0x6b2b, 0x6b2c, 0x6b2d,\n  0x6b2e, 0x6b2f, 0x6b30, 0x6b31, 0x6b32, 0x6b33, 0x6b34, 0x6b35,\n  0x6b36, 0x6b37, 0x6b38, 0x6b39, 0x6b3a, 0x6b3b, 0x6b3c, 0x6b3d,\n  0x6b3e, 0x6b3f, 0x6b40, 0x6b41, 0x6b42, 0x6b43, 0x6b44, 0x6b45,\n  0x6b46, 0x6b47, 0x6b48, 0x6b49, 0x6b50, 0x6b4a, 0x6b4b, 0x6b4c,\n  0x6b4d, 0x6b52, 0x6b4e, 0x6b4f, 0x6b51, 0x6b53, 0x6b54, 0x6b55,\n  0x6b56, 0x6b57, 0x6b58, 0x6b59, 0x6b5a, 0x6b5b, 0x6b5c, 0x6b5e,\n  0x6b5d, 0x6b5f, 0x6b60, 0x6b61, 0x6b62, 0x6b63, 0x6b64, 0x6b65,\n  0x6b66, 0x6b67, 0x6b68, 0x6b69, 0x6b6a, 0x6b6b, 0x6b6d, 0x6b6e,\n  0x6b6f, 0x6b6c, 0x6b70, 0x6b71, 0x6b72, 0x6b73, 0x6b74, 0x6b76,\n  0x6b75, 0x6b77, 0x6b78, 0x6b79, 0x6b7a, 0x6b7b, 0x6b7c, 0x6b7d,\n  0x6b7e, 0x6c21, 0x6c22, 0x6c23, 0x6c24, 0x6c25, 0x6c26, 0x6c27,\n  0x6c28, 0x6c29, 0x6c2a, 0x6c2b, 0x6c2c, 0x6c2d, 0x6c2e, 0x6c2f,\n  0x6c30, 0x6c31, 0x6c32, 0x6c33, 0x6c34, 0x6c35, 0x6c36, 0x6c37,\n  0x6c38, 0x6c39, 0x6c3a, 0x6c3b, 0x6c3c, 0x6c3d, 0x6c3e, 0x6c3f,\n  0x6c40, 0x6c41, 0x6c42, 0x6c43, 0x6c44, 0x6c45, 0x6c46, 0x6c47,\n  0x6c48, 0x6c49, 0x6c4a, 0x6c4b, 0x6c4c, 0x6c4e, 0x6c4f, 0x6c4d,\n  0x6c50, 0x6c51, 0x6c52, 0x6c53, 0x6c54, 0x6c55, 0x6c56, 0x6c57,\n  0x6c58, 0x6c59, 0x6c5a, 0x6c5b, 0x6c5c, 0x6c5d, 0x6c5e, 0x6c5f,\n  0x6c60, 0x6c61, 0x6c62, 0x6c63, 0x6c64, 0x6c65, 0x6c66, 0x6c67,\n  0x6c68, 0x6c69, 0x6c6a, 0x6c6b, 0x6c6c, 0x6c6d, 0x6c6e, 0x6c6f,\n  0x6c70, 0x6c71, 0x6c72, 0x6c73, 0x6c74, 0x6c75, 0x6c76, 0x6c77,\n  0x6c78, 0x6c79, 0x6c7a, 0x6c7b, 0x6c7c, 0x6c7d, 0x6c7e, 0x6d21,\n  0x6d22, 0x6d23, 0x6d24, 0x6d25, 0x6d26, 0x6d27, 0x6d28, 0x6d29,\n  0x6d2a, 0x6d2b, 0x6d2c, 0x6d2d, 0x6d2e, 0x6d2f, 0x6d30, 0x6d31,\n  0x6d32, 0x6d33, 0x6d34, 0x6d35, 0x6d36, 0x6d37, 0x6d38, 0x6d39,\n  0x6d3a, 0x6d3b, 0x6d3c, 0x6d3d, 0x6d3e, 0x6d3f, 0x6d40, 0x6d41,\n  0x6d42, 0x6d43, 0x6d44, 0x6d45, 0x6d46, 0x6d47, 0x6d48, 0x6d49,\n  0x6d4a, 0x6d4b, 0x6d4c, 0x6d4d, 0x6d4e, 0x6d4f, 0x6d50, 0x6d51,\n  0x6d52, 0x6d53, 0x6d54, 0x6d55, 0x6d56, 0x6d57, 0x6d58, 0x6d59,\n  0x6d5a, 0x6d5b, 0x6d5c, 0x6d5d, 0x6d5e, 0x6d5f, 0x6d60, 0x6d61,\n  0x6d62, 0x6d63, 0x2237,\n};\n\nstatic const Summary16 jisx0212_uni2indx_page00[70] = {\n  /* 0x0000 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0xc652 }, {    7, 0x8500 },\n  {   10, 0xffff }, {   26, 0xff7e }, {   40, 0xffff }, {   56, 0xff7f },\n  /* 0x0100 */\n  {   71, 0xffff }, {   87, 0xffcf }, {  101, 0xcff7 }, {  114, 0xffff },\n  {  130, 0x3fff }, {  144, 0xffff }, {  160, 0xffff }, {  176, 0x7fff },\n  {  191, 0x0000 }, {  191, 0x0000 }, {  191, 0x0000 }, {  191, 0x0000 },\n  {  191, 0xe000 }, {  194, 0x1fff }, {  207, 0x0000 }, {  207, 0x0020 },\n  /* 0x0200 */\n  {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 },\n  {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 },\n  {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 }, {  208, 0x0000 },\n  {  208, 0x0080 }, {  209, 0x2f00 }, {  214, 0x0000 }, {  214, 0x0000 },\n  /* 0x0300 */\n  {  214, 0x0000 }, {  214, 0x0000 }, {  214, 0x0000 }, {  214, 0x0000 },\n  {  214, 0x0000 }, {  214, 0x0000 }, {  214, 0x0000 }, {  214, 0x0000 },\n  {  214, 0xd770 }, {  223, 0x0001 }, {  224, 0xfc00 }, {  230, 0x0001 },\n  {  231, 0x7c04 }, {  237, 0x0000 }, {  237, 0x0000 }, {  237, 0x0000 },\n  /* 0x0400 */\n  {  237, 0xdffc }, {  250, 0x0000 }, {  250, 0x0000 }, {  250, 0x0000 },\n  {  250, 0x0000 }, {  250, 0xdffc },\n};\nstatic const Summary16 jisx0212_uni2indx_page21[3] = {\n  /* 0x2100 */\n  {  263, 0x0000 }, {  263, 0x0040 }, {  264, 0x0004 },\n};\nstatic const Summary16 jisx0212_uni2indx_page4e[1307] = {\n  /* 0x4e00 */\n  {  265, 0x1034 }, {  269, 0x8004 }, {  271, 0xc918 }, {  277, 0x0021 },\n  {  279, 0x0093 }, {  283, 0x1402 }, {  286, 0x0308 }, {  289, 0x8230 },\n  {  293, 0x2000 }, {  294, 0x20c0 }, {  297, 0x8000 }, {  298, 0x0200 },\n  {  299, 0x0008 }, {  300, 0x0c01 }, {  303, 0x8107 }, {  308, 0xe02a },\n  /* 0x4f00 */\n  {  314, 0x190d }, {  320, 0x02e4 }, {  325, 0x4000 }, {  326, 0x4aaa },\n  {  333, 0x1b05 }, {  339, 0x8154 }, {  344, 0x5409 }, {  349, 0x6782 },\n  {  356, 0x5636 }, {  364, 0xc69d }, {  373, 0x0000 }, {  373, 0x7a84 },\n  {  380, 0xbb63 }, {  390, 0x1004 }, {  392, 0x0005 }, {  394, 0xb005 },\n  /* 0x5000 */\n  {  399, 0x5493 }, {  406, 0x7989 }, {  414, 0x4084 }, {  417, 0x082d },\n  {  422, 0x5467 }, {  430, 0x828e }, {  436, 0x24cd }, {  443, 0x0003 },\n  {  445, 0xc45a }, {  452, 0xd85d }, {  461, 0x8407 }, {  466, 0x2601 },\n  {  470, 0x5099 }, {  476, 0xb119 }, {  483, 0x8354 }, {  489, 0x4446 },\n  /* 0x5100 */\n  {  494, 0x79c8 }, {  502, 0x7a81 }, {  509, 0xb188 }, {  515, 0x033a },\n  {  521, 0x8404 }, {  524, 0x81a8 }, {  529, 0x0050 }, {  531, 0x4000 },\n  {  532, 0x4818 }, {  536, 0x2100 }, {  538, 0x200a }, {  541, 0xd500 },\n  {  546, 0x8104 }, {  549, 0x412e }, {  555, 0x4024 }, {  558, 0x009c },\n  /* 0x5200 */\n  {  562, 0x0026 }, {  565, 0x016c }, {  570, 0x0104 }, {  572, 0x1026 },\n  {  576, 0x0220 }, {  578, 0x95a0 }, {  584, 0x4043 }, {  588, 0x0380 },\n  {  591, 0x1425 }, {  596, 0x15e8 }, {  603, 0x80f0 }, {  608, 0x2dc1 },\n  {  615, 0x9151 }, {  621, 0x1852 }, {  626, 0x1722 }, {  632, 0x00d3 },\n  /* 0x5300 */\n  {  637, 0x1c09 }, {  642, 0xd90a }, {  649, 0x3ba0 }, {  656, 0x7025 },\n  {  662, 0x1804 }, {  665, 0x0a00 }, {  667, 0x302a }, {  672, 0x4204 },\n  {  675, 0x4188 }, {  679, 0x2218 }, {  683, 0x8c12 }, {  688, 0x25b4 },\n  {  695, 0x8021 }, {  698, 0x642c }, {  704, 0x00c1 }, {  707, 0x0020 },\n  /* 0x5400 */\n  {  708, 0x0004 }, {  709, 0x0408 }, {  711, 0x8582 }, {  716, 0x0032 },\n  {  719, 0xa098 }, {  724, 0x4000 }, {  725, 0x6ad4 }, {  733, 0x8010 },\n  {  735, 0x232a }, {  741, 0x9062 }, {  746, 0x66c2 }, {  753, 0x8e82 },\n  {  759, 0x6440 }, {  763, 0x0000 }, {  763, 0x9401 }, {  767, 0xd040 },\n  /* 0x5500 */\n  {  771, 0x7323 }, {  779, 0x0020 }, {  780, 0x0c00 }, {  782, 0x3864 },\n  {  788, 0x2682 }, {  793, 0x4d03 }, {  799, 0x0053 }, {  803, 0x8000 },\n  {  804, 0xc146 }, {  810, 0x009e }, {  815, 0x2018 }, {  818, 0x8004 },\n  {  820, 0x5a4a }, {  827, 0x498e }, {  834, 0x0204 }, {  836, 0x8040 },\n  /* 0x5600 */\n  {  838, 0xe520 }, {  844, 0x0207 }, {  848, 0x1000 }, {  849, 0xbaa9 },\n  {  858, 0xaa5b }, {  867, 0x4010 }, {  869, 0xa24f }, {  877, 0x0026 },\n  {  880, 0x1930 }, {  885, 0xe620 }, {  891, 0x3bc0 }, {  898, 0x408a },\n  {  902, 0xbe20 }, {  909, 0xb201 }, {  914, 0x29f2 }, {  922, 0x00c2 },\n  /* 0x5700 */\n  {  925, 0x1486 }, {  930, 0x2c22 }, {  935, 0xd63d }, {  945, 0xe018 },\n  {  950, 0x3060 }, {  954, 0x0004 }, {  955, 0xe9a4 }, {  963, 0x5ebb },\n  {  974, 0x100a }, {  977, 0xf6b0 }, {  986, 0x1382 }, {  991, 0x2100 },\n  {  993, 0x9180 }, {  997, 0x6020 }, { 1000, 0x22d2 }, { 1006, 0xe161 },\n  /* 0x5800 */\n  { 1013, 0x3318 }, { 1019, 0xc800 }, { 1022, 0x20c1 }, { 1026, 0x8204 },\n  { 1029, 0xb200 }, { 1033, 0x8021 }, { 1036, 0x0192 }, { 1040, 0x9100 },\n  { 1043, 0xb783 }, { 1052, 0x2051 }, { 1056, 0x0247 }, { 1061, 0x1006 },\n  { 1064, 0x6114 }, { 1069, 0x2455 }, { 1075, 0x0206 }, { 1078, 0x0008 },\n  /* 0x5900 */\n  { 1079, 0x1860 }, { 1083, 0x201c }, { 1087, 0x811a }, { 1092, 0x8069 },\n  { 1097, 0x0048 }, { 1099, 0xea0c }, { 1106, 0xa80a }, { 1111, 0x1a64 },\n  { 1117, 0x5800 }, { 1120, 0x80a4 }, { 1124, 0xe090 }, { 1129, 0x1489 },\n  { 1134, 0x251a }, { 1140, 0xe004 }, { 1144, 0xc098 }, { 1149, 0x0096 },\n  /* 0x5a00 */\n  { 1153, 0x7011 }, { 1158, 0x400c }, { 1161, 0x2598 }, { 1167, 0x0001 },\n  { 1168, 0x11b0 }, { 1173, 0x4021 }, { 1176, 0x20a8 }, { 1180, 0x4c80 },\n  { 1184, 0x0800 }, { 1185, 0xd249 }, { 1192, 0x1085 }, { 1196, 0x8d2e },\n  { 1204, 0x8150 }, { 1208, 0x1400 }, { 1210, 0x4421 }, { 1214, 0x2060 },\n  /* 0x5b00 */\n  { 1217, 0x0103 }, { 1220, 0x2a80 }, { 1224, 0x2022 }, { 1227, 0x0110 },\n  { 1229, 0x1802 }, { 1232, 0x4044 }, { 1235, 0xc100 }, { 1238, 0xf000 },\n  { 1242, 0x4452 }, { 1247, 0x005b }, { 1252, 0xb300 }, { 1257, 0x1486 },\n  { 1262, 0xa003 }, { 1266, 0x07c0 }, { 1271, 0x8001 }, { 1273, 0x2012 },\n  /* 0x5c00 */\n  { 1276, 0x1000 }, { 1277, 0xc080 }, { 1280, 0x5a48 }, { 1286, 0x0065 },\n  { 1290, 0x0000 }, { 1290, 0x1600 }, { 1293, 0x238c }, { 1299, 0x3c31 },\n  { 1306, 0x8580 }, { 1310, 0xa004 }, { 1313, 0x044d }, { 1318, 0x0434 },\n  { 1322, 0x0a00 }, { 1324, 0x2084 }, { 1327, 0x4000 }, { 1328, 0x0016 },\n  /* 0x5d00 */\n  { 1331, 0x2042 }, { 1334, 0x0004 }, { 1335, 0x08d8 }, { 1340, 0xa212 },\n  { 1345, 0x054c }, { 1350, 0x8222 }, { 1354, 0x2417 }, { 1360, 0xc601 },\n  { 1365, 0x050a }, { 1369, 0x8a3c }, { 1376, 0x0881 }, { 1379, 0x0315 },\n  { 1384, 0x4888 }, { 1388, 0x0301 }, { 1391, 0x0211 }, { 1394, 0x0300 },\n  /* 0x5e00 */\n  { 1396, 0x2081 }, { 1399, 0x8134 }, { 1404, 0x4101 }, { 1407, 0x4024 },\n  { 1410, 0x0a00 }, { 1412, 0x5943 }, { 1419, 0x7d00 }, { 1425, 0x0001 },\n  { 1426, 0x4801 }, { 1429, 0x0000 }, { 1429, 0x1534 }, { 1435, 0xe00a },\n  { 1440, 0x5840 }, { 1444, 0x5036 }, { 1450, 0x0820 }, { 1452, 0x0000 },\n  /* 0x5f00 */\n  { 1452, 0x41c4 }, { 1457, 0x3200 }, { 1460, 0x591e }, { 1468, 0xa851 },\n  { 1474, 0x20b1 }, { 1479, 0x0911 }, { 1483, 0x8099 }, { 1488, 0x6534 },\n  { 1495, 0xa200 }, { 1498, 0x3040 }, { 1501, 0x9894 }, { 1507, 0x0103 },\n  { 1510, 0x0b90 }, { 1515, 0x401f }, { 1521, 0xf706 }, { 1530, 0x144c },\n  /* 0x6000 */\n  { 1535, 0x2480 }, { 1538, 0x8598 }, { 1544, 0x2010 }, { 1546, 0x0028 },\n  { 1548, 0x1381 }, { 1553, 0x20d2 }, { 1558, 0x0082 }, { 1560, 0xc002 },\n  { 1563, 0x4544 }, { 1568, 0x612a }, { 1574, 0x0134 }, { 1578, 0x4883 },\n  { 1583, 0xcf14 }, { 1591, 0x6a30 }, { 1597, 0x0024 }, { 1599, 0x3124 },\n  /* 0x6100 */\n  { 1604, 0x1484 }, { 1608, 0x52df }, { 1618, 0x0c04 }, { 1621, 0x02e3 },\n  { 1627, 0x0262 }, { 1631, 0x4000 }, { 1632, 0x1001 }, { 1634, 0x9904 },\n  { 1639, 0x281b }, { 1645, 0xb18c }, { 1652, 0x2521 }, { 1657, 0x1300 },\n  { 1660, 0xc007 }, { 1665, 0xf020 }, { 1670, 0xb2a6 }, { 1678, 0x0000 },\n  /* 0x6200 */\n  { 1678, 0x009a }, { 1682, 0x1028 }, { 1685, 0x0a8d }, { 1691, 0x2200 },\n  { 1693, 0x105c }, { 1698, 0x1457 }, { 1705, 0xa010 }, { 1708, 0x2408 },\n  { 1711, 0xe000 }, { 1714, 0x0001 }, { 1715, 0x0140 }, { 1717, 0xc4c8 },\n  { 1723, 0x4010 }, { 1725, 0x0460 }, { 1728, 0x0400 }, { 1729, 0x3014 },\n  /* 0x6300 */\n  { 1733, 0x2c18 }, { 1738, 0x0149 }, { 1742, 0x2600 }, { 1745, 0x1260 },\n  { 1749, 0x4c5e }, { 1757, 0x091c }, { 1762, 0x3060 }, { 1766, 0xb132 },\n  { 1773, 0x0494 }, { 1777, 0x4631 }, { 1783, 0xe050 }, { 1788, 0x2000 },\n  { 1789, 0x4122 }, { 1793, 0x103a }, { 1798, 0x1421 }, { 1802, 0x032c },\n  /* 0x6400 */\n  { 1807, 0x0600 }, { 1809, 0x4115 }, { 1814, 0x8635 }, { 1821, 0xa021 },\n  { 1825, 0x8800 }, { 1827, 0xbc1e }, { 1836, 0x200b }, { 1840, 0x2818 },\n  { 1844, 0x80a0 }, { 1847, 0xab03 }, { 1854, 0x114a }, { 1859, 0xe008 },\n  { 1863, 0x5e10 }, { 1869, 0x00a3 }, { 1873, 0x2630 }, { 1878, 0x88a1 },\n  /* 0x6500 */\n  { 1883, 0x8712 }, { 1889, 0xca58 }, { 1896, 0x4244 }, { 1900, 0x3402 },\n  { 1904, 0x0288 }, { 1907, 0x8015 }, { 1911, 0x0881 }, { 1914, 0x2400 },\n  { 1916, 0x0422 }, { 1919, 0x2124 }, { 1923, 0x4049 }, { 1927, 0x801c },\n  { 1931, 0x4304 }, { 1935, 0x8151 }, { 1940, 0x0000 }, { 1940, 0xc235 },\n  /* 0x6600 */\n  { 1947, 0x2311 }, { 1952, 0x6066 }, { 1958, 0x5e5e }, { 1968, 0x028b },\n  { 1973, 0x5461 }, { 1979, 0x1b82 }, { 1985, 0x1c03 }, { 1990, 0xdba8 },\n  { 1999, 0x3801 }, { 2003, 0x9e05 }, { 2010, 0x2011 }, { 2013, 0x8826 },\n  { 2018, 0xd10d }, { 2025, 0x8810 }, { 2028, 0x5900 }, { 2032, 0x0c00 },\n  /* 0x6700 */\n  { 2034, 0x40a0 }, { 2037, 0x1208 }, { 2040, 0x0005 }, { 2042, 0x4008 },\n  { 2044, 0x11a0 }, { 2048, 0x2030 }, { 2051, 0x5040 }, { 2054, 0x0850 },\n  { 2057, 0xc012 }, { 2061, 0x0b4a }, { 2067, 0x0000 }, { 2067, 0x3827 },\n  { 2074, 0x032d }, { 2080, 0x1284 }, { 2084, 0x0042 }, { 2086, 0x02c5 },\n  /* 0x6800 */\n  { 2091, 0x0000 }, { 2091, 0xa210 }, { 2095, 0xb180 }, { 2100, 0x880b },\n  { 2105, 0x1430 }, { 2109, 0x09a4 }, { 2114, 0xc800 }, { 2117, 0x1e27 },\n  { 2125, 0x0154 }, { 2129, 0x1540 }, { 2133, 0x462a }, { 2139, 0x0804 },\n  { 2141, 0x9120 }, { 2145, 0x324b }, { 2152, 0x3d20 }, { 2158, 0x3863 },\n  /* 0x6900 */\n  { 2165, 0x0640 }, { 2168, 0x00cb }, { 2173, 0x0000 }, { 2173, 0x092a },\n  { 2178, 0x4224 }, { 2182, 0x0880 }, { 2184, 0x1378 }, { 2191, 0x8c07 },\n  { 2197, 0x2001 }, { 2199, 0x0144 }, { 2202, 0xa962 }, { 2209, 0x1580 },\n  { 2213, 0x0120 }, { 2215, 0x00c2 }, { 2218, 0xc024 }, { 2222, 0x402a },\n  /* 0x6a00 */\n  { 2226, 0x800b }, { 2230, 0x2422 }, { 2234, 0x0111 }, { 2237, 0xc895 },\n  { 2244, 0x4660 }, { 2249, 0x0867 }, { 2255, 0x0490 }, { 2258, 0x400a },\n  { 2261, 0x0aca }, { 2267, 0xe802 }, { 2272, 0x8820 }, { 2275, 0xe013 },\n  { 2281, 0x1340 }, { 2285, 0x3071 }, { 2291, 0x1090 }, { 2294, 0x3007 },\n  /* 0x6b00 */\n  { 2299, 0x82cc }, { 2305, 0x4883 }, { 2310, 0x9910 }, { 2315, 0x8860 },\n  { 2319, 0x2440 }, { 2322, 0x2144 }, { 2326, 0x4881 }, { 2330, 0x6021 },\n  { 2334, 0x0024 }, { 2336, 0x8880 }, { 2339, 0x730d }, { 2347, 0x6301 },\n  { 2352, 0x1218 }, { 2356, 0x0440 }, { 2358, 0x40ca }, { 2363, 0x8282 },\n  /* 0x6c00 */\n  { 2367, 0x6234 }, { 2373, 0x8205 }, { 2377, 0x51c0 }, { 2382, 0x8c68 },\n  { 2388, 0xac00 }, { 2392, 0x1a14 }, { 2397, 0xa880 }, { 2401, 0x0b50 },\n  { 2406, 0x02e0 }, { 2410, 0x91b0 }, { 2416, 0x0000 }, { 2416, 0x0015 },\n  { 2419, 0xa044 }, { 2423, 0x1457 }, { 2430, 0x5a81 }, { 2436, 0x0014 },\n  /* 0x6d00 */\n  { 2438, 0xc490 }, { 2443, 0x040a }, { 2446, 0xc1c0 }, { 2451, 0x9202 },\n  { 2455, 0x0000 }, { 2455, 0xc080 }, { 2458, 0x80a2 }, { 2462, 0x1001 },\n  { 2464, 0x0084 }, { 2466, 0x01d6 }, { 2472, 0x1400 }, { 2474, 0xa290 },\n  { 2479, 0xc510 }, { 2484, 0xa840 }, { 2488, 0x8225 }, { 2493, 0x1051 },\n  /* 0x6e00 */\n  { 2497, 0x0011 }, { 2499, 0x4000 }, { 2500, 0x0084 }, { 2502, 0x1a44 },\n  { 2507, 0x8b30 }, { 2513, 0x709e }, { 2521, 0x010c }, { 2524, 0x2808 },\n  { 2527, 0x2000 }, { 2528, 0x0208 }, { 2530, 0x6081 }, { 2534, 0x880a },\n  { 2538, 0xe58b }, { 2547, 0x0000 }, { 2547, 0x6800 }, { 2550, 0x2a00 },\n  /* 0x6f00 */\n  { 2553, 0x3510 }, { 2558, 0x0d40 }, { 2562, 0xa640 }, { 2567, 0x1849 },\n  { 2572, 0x8000 }, { 2573, 0x668e }, { 2581, 0x1106 }, { 2585, 0x6000 },\n  { 2587, 0x3988 }, { 2593, 0x845d }, { 2600, 0xc1e1 }, { 2607, 0x1061 },\n  { 2611, 0x05a0 }, { 2615, 0x4400 }, { 2617, 0x0300 }, { 2619, 0x3221 },\n  /* 0x7000 */\n  { 2624, 0x20e1 }, { 2629, 0x0080 }, { 2630, 0x8009 }, { 2633, 0x1290 },\n  { 2637, 0x4f18 }, { 2644, 0x6030 }, { 2648, 0x5030 }, { 2652, 0x4060 },\n  { 2655, 0x0062 }, { 2658, 0x09f0 }, { 2664, 0x0810 }, { 2666, 0x0093 },\n  { 2670, 0x0400 }, { 2671, 0x117a }, { 2678, 0x0010 }, { 2679, 0x0400 },\n  /* 0x7100 */\n  { 2680, 0x98f8 }, { 2688, 0x4000 }, { 2689, 0xa801 }, { 2693, 0x0103 },\n  { 2696, 0x0ce2 }, { 2702, 0x5485 }, { 2708, 0x0101 }, { 2710, 0x0200 },\n  { 2711, 0x10a1 }, { 2715, 0x0c04 }, { 2718, 0x8005 }, { 2721, 0x840d },\n  { 2726, 0x1813 }, { 2731, 0x1648 }, { 2736, 0x0000 }, { 2736, 0x4100 },\n  /* 0x7200 */\n  { 2738, 0x0381 }, { 2742, 0xa488 }, { 2747, 0x8810 }, { 2750, 0x0310 },\n  { 2753, 0xc02e }, { 2759, 0x5469 }, { 2766, 0xc909 }, { 2772, 0x9982 },\n  { 2778, 0x6210 }, { 2782, 0x0808 }, { 2784, 0x6100 }, { 2787, 0x4012 },\n  { 2790, 0x1282 }, { 2794, 0x8160 }, { 2798, 0x0020 }, { 2799, 0x4c18 },\n  /* 0x7300 */\n  { 2804, 0x28b4 }, { 2810, 0x430c }, { 2815, 0x1194 }, { 2820, 0x2c26 },\n  { 2826, 0x2008 }, { 2828, 0xe145 }, { 2835, 0xdac1 }, { 2843, 0x1282 },\n  { 2847, 0x406b }, { 2853, 0xd1a9 }, { 2861, 0x2c65 }, { 2868, 0xb2a0 },\n  { 2874, 0x9a60 }, { 2880, 0x224c }, { 2885, 0x02ca }, { 2890, 0xaeb0 },\n  /* 0x7400 */\n  { 2898, 0x0493 }, { 2903, 0x0c02 }, { 2906, 0xff50 }, { 2916, 0x0203 },\n  { 2919, 0x28d9 }, { 2926, 0x2086 }, { 2930, 0x69c4 }, { 2937, 0x0006 },\n  { 2939, 0x82e3 }, { 2946, 0x9707 }, { 2954, 0xcf4b }, { 2964, 0x8a26 },\n  { 2970, 0x1300 }, { 2973, 0xcd09 }, { 2980, 0x8d10 }, { 2985, 0x9c10 },\n  /* 0x7500 */\n  { 2990, 0x0040 }, { 2991, 0x00c4 }, { 2994, 0x8693 }, { 3001, 0xe240 },\n  { 3006, 0x4189 }, { 3011, 0xc085 }, { 3016, 0x8002 }, { 3018, 0x7e02 },\n  { 3025, 0x0022 }, { 3027, 0x122d }, { 3033, 0x0014 }, { 3035, 0x8410 },\n  { 3038, 0xd053 }, { 3045, 0x9080 }, { 3048, 0xd093 }, { 3055, 0x0202 },\n  /* 0x7600 */\n  { 3057, 0x959d }, { 3066, 0x7a6c }, { 3075, 0x2268 }, { 3080, 0x172c },\n  { 3087, 0x0e3b }, { 3095, 0x8220 }, { 3098, 0xe030 }, { 3103, 0x0012 },\n  { 3105, 0x3022 }, { 3109, 0xb820 }, { 3114, 0x25fd }, { 3124, 0x2000 },\n  { 3125, 0x5a22 }, { 3131, 0x0210 }, { 3133, 0x1141 }, { 3137, 0x1243 },\n  /* 0x7700 */\n  { 3142, 0x4441 }, { 3146, 0x16b4 }, { 3153, 0xe104 }, { 3158, 0x6270 },\n  { 3164, 0xe464 }, { 3171, 0xd0c4 }, { 3177, 0x1495 }, { 3183, 0x241d },\n  { 3189, 0x3011 }, { 3193, 0x8470 }, { 3198, 0xc484 }, { 3203, 0x4022 },\n  { 3206, 0x0208 }, { 3208, 0xc226 }, { 3214, 0x1451 }, { 3219, 0x0913 },\n  /* 0x7800 */\n  { 3224, 0x6260 }, { 3229, 0x2002 }, { 3231, 0x600e }, { 3236, 0x00a1 },\n  { 3239, 0x5198 }, { 3245, 0x5004 }, { 3248, 0x451b }, { 3255, 0x4400 },\n  { 3257, 0x8400 }, { 3259, 0xe110 }, { 3264, 0x3112 }, { 3269, 0xa80f },\n  { 3276, 0x5380 }, { 3281, 0x886c }, { 3287, 0x0453 }, { 3292, 0x8ccc },\n  /* 0x7900 */\n  { 3299, 0x1041 }, { 3302, 0xd401 }, { 3307, 0x22a1 }, { 3312, 0xa832 },\n  { 3318, 0x8c70 }, { 3324, 0x1912 }, { 3329, 0x0a80 }, { 3332, 0x5a04 },\n  { 3337, 0x1800 }, { 3339, 0x197a }, { 3347, 0x8b02 }, { 3352, 0x0912 },\n  { 3356, 0x8594 }, { 3362, 0x6450 }, { 3367, 0x2c25 }, { 3373, 0x1102 },\n  /* 0x7a00 */\n  { 3376, 0x168c }, { 3382, 0x4822 }, { 3386, 0xa882 }, { 3391, 0x0731 },\n  { 3397, 0x11b0 }, { 3402, 0xb260 }, { 3408, 0x24a1 }, { 3413, 0x4120 },\n  { 3416, 0x0c65 }, { 3422, 0x4013 }, { 3426, 0x1009 }, { 3429, 0x1a28 },\n  { 3434, 0x5240 }, { 3438, 0x0802 }, { 3440, 0x1b00 }, { 3444, 0x6812 },\n  /* 0x7b00 */\n  { 3449, 0x0080 }, { 3450, 0x8010 }, { 3452, 0xee88 }, { 3460, 0xa013 },\n  { 3465, 0x4083 }, { 3469, 0x0020 }, { 3470, 0xa651 }, { 3477, 0x008c },\n  { 3480, 0x4210 }, { 3483, 0x4843 }, { 3488, 0x9021 }, { 3492, 0x3c65 },\n  { 3500, 0x0524 }, { 3504, 0x0ed0 }, { 3510, 0x0500 }, { 3512, 0x5734 },\n  /* 0x7c00 */\n  { 3520, 0xda5e }, { 3530, 0x0a00 }, { 3532, 0x1161 }, { 3537, 0x065a },\n  { 3543, 0x0440 }, { 3545, 0x7e2e }, { 3555, 0x628a }, { 3561, 0x3205 },\n  { 3566, 0x80c0 }, { 3569, 0x4010 }, { 3571, 0x0041 }, { 3573, 0x9cc1 },\n  { 3580, 0xa390 }, { 3586, 0x26b8 }, { 3593, 0x0a40 }, { 3596, 0x0020 },\n  /* 0x7d00 */\n  { 3597, 0x8388 }, { 3602, 0x604e }, { 3608, 0x2448 }, { 3612, 0x7002 },\n  { 3616, 0x2183 }, { 3621, 0x368a }, { 3628, 0x04a0 }, { 3631, 0x8d01 },\n  { 3636, 0x396e }, { 3645, 0x60c2 }, { 3650, 0x04c0 }, { 3653, 0x02c8 },\n  { 3657, 0x707c }, { 3665, 0x0280 }, { 3667, 0x2c64 }, { 3673, 0x0662 },\n  /* 0x7e00 */\n  { 3678, 0x0101 }, { 3680, 0x30a3 }, { 3686, 0xb181 }, { 3692, 0x8048 },\n  { 3695, 0x40b0 }, { 3699, 0x8105 }, { 3703, 0xc826 }, { 3709, 0x4108 },\n  { 3712, 0x24c2 }, { 3717, 0x6522 }, { 3723, 0x0000 }, { 3723, 0x0000 },\n  { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0x0000 },\n  /* 0x7f00 */\n  { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0x0000 }, { 3723, 0xf800 },\n  { 3728, 0x8098 }, { 3732, 0x380c }, { 3737, 0x207a }, { 3743, 0xe002 },\n  { 3747, 0xa801 }, { 3751, 0x10c3 }, { 3756, 0x2446 }, { 3761, 0x9010 },\n  { 3764, 0xc109 }, { 3769, 0x8800 }, { 3771, 0xd128 }, { 3777, 0xe404 },\n  /* 0x8000 */\n  { 3782, 0xe580 }, { 3788, 0xe05a }, { 3795, 0x5051 }, { 3800, 0x56b1 },\n  { 3808, 0x0011 }, { 3810, 0x0000 }, { 3810, 0x2051 }, { 3814, 0x0022 },\n  { 3816, 0x4102 }, { 3819, 0x5000 }, { 3821, 0x08c0 }, { 3824, 0x0300 },\n  { 3826, 0xa100 }, { 3829, 0x01b4 }, { 3834, 0x6001 }, { 3837, 0x464d },\n  /* 0x8100 */\n  { 3844, 0x0808 }, { 3846, 0x51c0 }, { 3851, 0x1091 }, { 3855, 0x1421 },\n  { 3859, 0x14a0 }, { 3863, 0x0084 }, { 3865, 0xa383 }, { 3872, 0x0080 },\n  { 3873, 0x4872 }, { 3879, 0x4941 }, { 3884, 0x4004 }, { 3886, 0x0814 },\n  { 3889, 0xcc28 }, { 3895, 0x68a0 }, { 3900, 0x1812 }, { 3904, 0xa367 },\n  /* 0x8200 */\n  { 3913, 0x8009 }, { 3916, 0x2618 }, { 3921, 0x0106 }, { 3924, 0x0414 },\n  { 3927, 0xc878 }, { 3934, 0x1042 }, { 3937, 0x2089 }, { 3941, 0xa810 },\n  { 3945, 0x469b }, { 3953, 0x0d52 }, { 3959, 0x479b }, { 3968, 0xd495 },\n  { 3976, 0x0040 }, { 3977, 0x0421 }, { 3980, 0xa515 }, { 3987, 0x60c0 },\n  /* 0x8300 */\n  { 3991, 0x0d83 }, { 3997, 0xe800 }, { 4001, 0x7006 }, { 4006, 0x3489 },\n  { 4012, 0x609c }, { 4018, 0x00fa }, { 4024, 0x0000 }, { 4024, 0xa101 },\n  { 4028, 0x2055 }, { 4033, 0x3b34 }, { 4041, 0x32c0 }, { 4046, 0xc000 },\n  { 4048, 0x8281 }, { 4052, 0x2013 }, { 4056, 0x0500 }, { 4058, 0x1340 },\n  /* 0x8400 */\n  { 4062, 0x8442 }, { 4066, 0x0222 }, { 4069, 0x8000 }, { 4070, 0x0200 },\n  { 4071, 0xa5a0 }, { 4077, 0x1746 }, { 4084, 0x04b1 }, { 4089, 0x3159 },\n  { 4096, 0x0022 }, { 4098, 0x402c }, { 4102, 0x8740 }, { 4107, 0x6412 },\n  { 4112, 0x9185 }, { 4118, 0x1008 }, { 4120, 0x8480 }, { 4123, 0x2c87 },\n  /* 0x8500 */\n  { 4130, 0x508c }, { 4135, 0x5001 }, { 4138, 0x8cbc }, { 4146, 0x805c },\n  { 4151, 0x8040 }, { 4153, 0xf24f }, { 4163, 0x8817 }, { 4169, 0xae00 },\n  { 4174, 0x9a62 }, { 4181, 0xa108 }, { 4185, 0x20a5 }, { 4190, 0xf1d0 },\n  { 4198, 0x4c84 }, { 4203, 0x8500 }, { 4206, 0x2141 }, { 4210, 0x9048 },\n  /* 0x8600 */\n  { 4214, 0x6031 }, { 4219, 0x4b07 }, { 4226, 0x0282 }, { 4229, 0x3540 },\n  { 4234, 0x0047 }, { 4238, 0x23cc }, { 4245, 0x921f }, { 4253, 0x04e0 },\n  { 4257, 0x2100 }, { 4259, 0x1542 }, { 4264, 0x21c2 }, { 4269, 0x83ba },\n  { 4277, 0x002b }, { 4281, 0x14a6 }, { 4287, 0x00a9 }, { 4291, 0x3400 },\n  /* 0x8700 */\n  { 4294, 0xc8b0 }, { 4300, 0xc219 }, { 4306, 0xc10a }, { 4311, 0x7606 },\n  { 4318, 0x2029 }, { 4322, 0x2100 }, { 4324, 0x8032 }, { 4328, 0x0806 },\n  { 4331, 0x1bf8 }, { 4340, 0x43a9 }, { 4347, 0x7089 }, { 4353, 0xc022 },\n  { 4357, 0x4702 }, { 4362, 0x9660 }, { 4368, 0x2c1c }, { 4374, 0x850a },\n  /* 0x8800 */\n  { 4379, 0x0e4a }, { 4385, 0xdf1d }, { 4396, 0x6100 }, { 4399, 0x1425 },\n  { 4404, 0x4f2a }, { 4412, 0x9562 }, { 4419, 0x0211 }, { 4422, 0x0a02 },\n  { 4425, 0x0001 }, { 4426, 0x9d00 }, { 4431, 0x0501 }, { 4434, 0x6400 },\n  { 4437, 0x7c01 }, { 4443, 0x480e }, { 4448, 0x8080 }, { 4450, 0x00a3 },\n  /* 0x8900 */\n  { 4454, 0xe042 }, { 4459, 0x1760 }, { 4465, 0x01c1 }, { 4469, 0x4627 },\n  { 4476, 0x8265 }, { 4482, 0x1c84 }, { 4487, 0x480e }, { 4492, 0x3c29 },\n  { 4499, 0x2200 }, { 4501, 0x9831 }, { 4507, 0x0021 }, { 4509, 0x10f1 },\n  { 4515, 0x0000 }, { 4515, 0x01f0 }, { 4520, 0x2a20 }, { 4524, 0xa24a },\n  /* 0x8a00 */\n  { 4530, 0x80b0 }, { 4534, 0x4036 }, { 4539, 0x9855 }, { 4546, 0x60a0 },\n  { 4550, 0x62a9 }, { 4557, 0x31c8 }, { 4563, 0x00a2 }, { 4566, 0xcee0 },\n  { 4574, 0x8849 }, { 4579, 0x82c5 }, { 4585, 0xc280 }, { 4589, 0x48c8 },\n  { 4594, 0x0748 }, { 4599, 0xa0ba }, { 4606, 0x1000 }, { 4607, 0x9071 },\n  /* 0x8b00 */\n  { 4613, 0x0c60 }, { 4617, 0xd002 }, { 4621, 0x2000 }, { 4622, 0x1081 },\n  { 4625, 0x217c }, { 4632, 0x421c }, { 4637, 0x2008 }, { 4639, 0x5340 },\n  { 4644, 0xa832 }, { 4650, 0xd030 }, { 4655, 0x0000 }, { 4655, 0x0000 },\n  { 4655, 0x0000 }, { 4655, 0x0000 }, { 4655, 0x0000 }, { 4655, 0x0000 },\n  /* 0x8c00 */\n  { 4655, 0x0000 }, { 4655, 0x0000 }, { 4655, 0x0000 }, { 4655, 0x6300 },\n  { 4659, 0x8aa0 }, { 4664, 0x2b9a }, { 4672, 0x2358 }, { 4678, 0x4868 },\n  { 4683, 0x08c0 }, { 4686, 0x1a0d }, { 4692, 0x0010 }, { 4693, 0x0600 },\n  { 4695, 0x8a60 }, { 4700, 0x2260 }, { 4704, 0x9102 }, { 4708, 0xc1a5 },\n  /* 0x8d00 */\n  { 4715, 0x020a }, { 4718, 0x0884 }, { 4721, 0x0000 }, { 4721, 0x0000 },\n  { 4721, 0x0000 }, { 4721, 0x0000 }, { 4721, 0x5220 }, { 4725, 0x8000 },\n  { 4726, 0x2114 }, { 4730, 0xc023 }, { 4735, 0x9841 }, { 4740, 0x1aa4 },\n  { 4746, 0x45e1 }, { 4753, 0x02b2 }, { 4758, 0x10b0 }, { 4762, 0x2017 },\n  /* 0x8e00 */\n  { 4767, 0x0872 }, { 4772, 0x0052 }, { 4775, 0x00cf }, { 4781, 0x23ca },\n  { 4788, 0xe803 }, { 4794, 0x7810 }, { 4799, 0xb206 }, { 4805, 0x0e03 },\n  { 4810, 0x020c }, { 4813, 0x6c25 }, { 4820, 0x6284 }, { 4825, 0x0c28 },\n  { 4829, 0x809b }, { 4835, 0x1012 }, { 4838, 0x6100 }, { 4841, 0x0683 },\n  /* 0x8f00 */\n  { 4846, 0x8185 }, { 4851, 0x41c1 }, { 4856, 0x71ab }, { 4865, 0x04f0 },\n  { 4870, 0x808b }, { 4875, 0x613e }, { 4883, 0x0020 }, { 4884, 0x0000 },\n  { 4884, 0x0000 }, { 4884, 0x2000 }, { 4885, 0x0073 }, { 4890, 0x4160 },\n  { 4894, 0x2c43 }, { 4900, 0x002d }, { 4904, 0x4119 }, { 4909, 0x4862 },\n  /* 0x9000 */\n  { 4914, 0x1114 }, { 4918, 0x0900 }, { 4920, 0xb700 }, { 4926, 0x8098 },\n  { 4930, 0x1018 }, { 4933, 0x2800 }, { 4935, 0x10c4 }, { 4939, 0x0211 },\n  { 4942, 0x5920 }, { 4947, 0x0ba1 }, { 4953, 0x0027 }, { 4957, 0x605d },\n  { 4964, 0x11b8 }, { 4970, 0xb3a4 }, { 4978, 0x8820 }, { 4981, 0xc051 },\n  /* 0x9100 */\n  { 4986, 0x2171 }, { 4992, 0x55d1 }, { 5000, 0xc2ad }, { 5008, 0x36d2 },\n  { 5016, 0x8188 }, { 5020, 0x0e88 }, { 5025, 0x2092 }, { 5029, 0x0e10 },\n  { 5033, 0x446a }, { 5039, 0x413a }, { 5045, 0x7142 }, { 5051, 0xb84f },\n  { 5060, 0x002c }, { 5063, 0x4698 }, { 5069, 0xf630 }, { 5077, 0x2a83 },\n  /* 0x9200 */\n  { 5083, 0x16f3 }, { 5092, 0x314d }, { 5099, 0xc178 }, { 5106, 0x5769 },\n  { 5115, 0xe4cd }, { 5124, 0x3302 }, { 5129, 0xc3a3 }, { 5137, 0xbbe1 },\n  { 5147, 0x6700 }, { 5152, 0x8284 }, { 5156, 0x89b1 }, { 5163, 0xbd44 },\n  { 5171, 0x79ef }, { 5183, 0xb3a9 }, { 5192, 0x51ab }, { 5200, 0x8a01 },\n  /* 0x9300 */\n  { 5204, 0x2105 }, { 5208, 0xf032 }, { 5215, 0x06b2 }, { 5221, 0x00d8 },\n  { 5225, 0x0380 }, { 5228, 0x45a7 }, { 5236, 0xa6b0 }, { 5243, 0xa45b },\n  { 5251, 0xad07 }, { 5259, 0x4924 }, { 5264, 0x0b5a }, { 5271, 0x0470 },\n  { 5275, 0x3ef2 }, { 5285, 0xd208 }, { 5290, 0x00c4 }, { 5293, 0x2f80 },\n  /* 0x9400 */\n  { 5299, 0xe316 }, { 5307, 0x80e0 }, { 5311, 0xc000 }, { 5313, 0xa81e },\n  { 5320, 0x1528 }, { 5325, 0x9220 }, { 5329, 0xe90a }, { 5336, 0x0006 },\n  { 5338, 0x0018 }, { 5340, 0x0000 }, { 5340, 0x0000 }, { 5340, 0x0000 },\n  { 5340, 0x0000 }, { 5340, 0x0000 }, { 5340, 0x0000 }, { 5340, 0x0000 },\n  /* 0x9500 */\n  { 5340, 0x0000 }, { 5340, 0x0000 }, { 5340, 0x0000 }, { 5340, 0x0000 },\n  { 5340, 0x0000 }, { 5340, 0x0000 }, { 5340, 0x0000 }, { 5340, 0x4300 },\n  { 5343, 0x7110 }, { 5348, 0xe000 }, { 5351, 0x1a42 }, { 5356, 0xa450 },\n  { 5361, 0x0b40 }, { 5365, 0xe60f }, { 5374, 0x0051 }, { 5377, 0x0000 },\n  /* 0x9600 */\n  { 5377, 0x0000 }, { 5377, 0x6000 }, { 5379, 0x1074 }, { 5384, 0x378a },\n  { 5392, 0x0002 }, { 5393, 0x01d4 }, { 5398, 0x4002 }, { 5400, 0xd810 },\n  { 5405, 0x021e }, { 5410, 0xa442 }, { 5415, 0xc270 }, { 5421, 0x0408 },\n  { 5423, 0x0400 }, { 5424, 0xe504 }, { 5430, 0x8200 }, { 5432, 0x0402 },\n  /* 0x9700 */\n  { 5434, 0x022c }, { 5438, 0x2c00 }, { 5441, 0x010e }, { 5445, 0x000a },\n  { 5447, 0xc40a }, { 5452, 0x0da0 }, { 5457, 0x4488 }, { 5461, 0xa9c8 },\n  { 5468, 0x0201 }, { 5470, 0xc6e0 }, { 5477, 0x5004 }, { 5480, 0xd766 },\n  { 5490, 0x76b2 }, { 5499, 0x6b93 }, { 5508, 0x8013 }, { 5512, 0x0592 },\n  /* 0x9800 */\n  { 5517, 0x6480 }, { 5521, 0x5250 }, { 5526, 0xc869 }, { 5533, 0x402d },\n  { 5538, 0x0490 }, { 5541, 0x06ce }, { 5548, 0x146c }, { 5554, 0x0000 },\n  { 5554, 0x0000 }, { 5554, 0x0000 }, { 5554, 0x6800 }, { 5557, 0x8d91 },\n  { 5564, 0x1124 }, { 5568, 0x0000 }, { 5568, 0x04ea }, { 5574, 0x0048 },\n  /* 0x9900 */\n  { 5576, 0x0184 }, { 5579, 0x9ce2 }, { 5587, 0x08c4 }, { 5591, 0x1e3e },\n  { 5600, 0x61c3 }, { 5607, 0xdb10 }, { 5614, 0x0001 }, { 5615, 0x0000 },\n  { 5615, 0x0000 }, { 5615, 0xa800 }, { 5618, 0x0040 }, { 5619, 0xa627 },\n  { 5627, 0x0208 }, { 5629, 0x5618 }, { 5635, 0x1c80 }, { 5639, 0x6231 },\n  /* 0x9a00 */\n  { 5645, 0x181c }, { 5650, 0x4043 }, { 5654, 0x609d }, { 5661, 0x0168 },\n  { 5665, 0x5c92 }, { 5672, 0x2052 }, { 5676, 0x0000 }, { 5676, 0x0000 },\n  { 5676, 0x0000 }, { 5676, 0x0000 }, { 5676, 0xd400 }, { 5680, 0xca74 },\n  { 5688, 0x414a }, { 5693, 0x18e5 }, { 5700, 0x12b1 }, { 5706, 0xa62c },\n  /* 0x9b00 */\n  { 5713, 0x7b3f }, { 5725, 0x1a45 }, { 5731, 0x2841 }, { 5735, 0x26b8 },\n  { 5742, 0x1900 }, { 5745, 0x48e0 }, { 5750, 0x7d6a }, { 5760, 0x83a8 },\n  { 5766, 0xaef1 }, { 5776, 0x6411 }, { 5781, 0x12c0 }, { 5785, 0xd987 },\n  { 5794, 0x4182 }, { 5798, 0xa181 }, { 5803, 0x8ca0 }, { 5808, 0xa788 },\n  /* 0x9c00 */\n  { 5815, 0x8805 }, { 5819, 0x5742 }, { 5826, 0x07cc }, { 5833, 0x20e2 },\n  { 5838, 0xc63a }, { 5846, 0xf959 }, { 5856, 0x4f08 }, { 5862, 0x08a5 },\n  { 5867, 0x0000 }, { 5867, 0x0000 }, { 5867, 0x0000 }, { 5867, 0x0000 },\n  { 5867, 0x0000 }, { 5867, 0x0000 }, { 5867, 0x0040 }, { 5868, 0x0284 },\n  /* 0x9d00 */\n  { 5871, 0x0804 }, { 5873, 0x7182 }, { 5879, 0x8000 }, { 5880, 0x341d },\n  { 5887, 0x04ac }, { 5892, 0x8018 }, { 5895, 0x0e2c }, { 5901, 0x58c1 },\n  { 5907, 0x6458 }, { 5913, 0x01ec }, { 5919, 0x5402 }, { 5923, 0x9222 },\n  { 5928, 0x0688 }, { 5932, 0xc4f0 }, { 5939, 0x4aa1 }, { 5945, 0x4019 },\n  /* 0x9e00 */\n  { 5949, 0x4484 }, { 5953, 0x3267 }, { 5961, 0x0000 }, { 5961, 0x0000 },\n  { 5961, 0x0000 }, { 5961, 0x0000 }, { 5961, 0x0000 }, { 5961, 0x1c00 },\n  { 5964, 0xc0bd }, { 5972, 0x4940 }, { 5976, 0xd110 }, { 5981, 0x0039 },\n  { 5985, 0x0940 }, { 5988, 0x8020 }, { 5990, 0x7090 }, { 5995, 0x8127 },\n  /* 0x9f00 */\n  { 6001, 0x820c }, { 6005, 0x8ed7 }, { 6015, 0x8c44 }, { 6020, 0xb696 },\n  { 6029, 0x00fa }, { 6035, 0x65e8 }, { 6043, 0xe300 }, { 6048, 0x242b },\n  { 6054, 0x8000 }, { 6055, 0x40d7 }, { 6062, 0x002e },\n};\nstatic const Summary16 jisx0212_uni2indx_pageff[6] = {\n  /* 0xff00 */\n  { 6066, 0x0000 }, { 6066, 0x0000 }, { 6066, 0x0000 }, { 6066, 0x0000 },\n  { 6066, 0x0000 }, { 6066, 0x4000 },\n};\n\nstatic int\njisx0212_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x0000 && wc < 0x0460)\n      summary = &jisx0212_uni2indx_page00[(wc>>4)];\n    else if (wc >= 0x2100 && wc < 0x2130)\n      summary = &jisx0212_uni2indx_page21[(wc>>4)-0x210];\n    else if (wc >= 0x4e00 && wc < 0x9fb0)\n      summary = &jisx0212_uni2indx_page4e[(wc>>4)-0x4e0];\n    else if (wc >= 0xff00 && wc < 0xff60)\n      summary = &jisx0212_uni2indx_pageff[(wc>>4)-0xff0];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = jisx0212_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/jisx0213.h",
    "content": "/*\n * Copyright (C) 1999-2004, 2012 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * JISX0213:2000\n */\n\n#ifndef _JISX0213_H\n#define _JISX0213_H\n\n/* JISX0213 plane 1 (= ISO-IR-233) characters are in the range\n   0x{21..7E}{21..7E}.\n   JISX0213 plane 2 (= ISO-IR-229) characters are in the range\n   0x{21,23..25,28,2C..2F,6E..7E}{21..7E}.\n   Together this makes 120 rows of 94 characters.\n*/\n\nstatic const unsigned short jisx0213_to_ucs_combining[][2] = {\n  { 0x304b, 0x309a },\n  { 0x304d, 0x309a },\n  { 0x304f, 0x309a },\n  { 0x3051, 0x309a },\n  { 0x3053, 0x309a },\n  { 0x30ab, 0x309a },\n  { 0x30ad, 0x309a },\n  { 0x30af, 0x309a },\n  { 0x30b1, 0x309a },\n  { 0x30b3, 0x309a },\n  { 0x30bb, 0x309a },\n  { 0x30c4, 0x309a },\n  { 0x30c8, 0x309a },\n  { 0x31f7, 0x309a },\n  { 0x00e6, 0x0300 },\n  { 0x0254, 0x0300 },\n  { 0x0254, 0x0301 },\n  { 0x028c, 0x0300 },\n  { 0x028c, 0x0301 },\n  { 0x0259, 0x0300 },\n  { 0x0259, 0x0301 },\n  { 0x025a, 0x0300 },\n  { 0x025a, 0x0301 },\n  { 0x02e9, 0x02e5 },\n  { 0x02e5, 0x02e9 },\n};\n\nstatic const unsigned short jisx0213_to_ucs_main[120 * 94] = {\n  /* 0x12121..0x1217E */\n  0x1000, 0x1001, 0x1002, 0x830c, 0x830e, 0x10fb, 0x831a, 0x831b,\n  0x831f, 0x8301, 0x109b, 0x109c, 0x00b4, 0x8340, 0x00a8, 0x833e,\n  0x83e3, 0x833f, 0x10fd, 0x10fe, 0x109d, 0x109e, 0x1003, 0x2edd,\n  0x1005, 0x1006, 0x1007, 0x10fc, 0x0714, 0x0710, 0x830f, 0x833c,\n  0x101c, 0x0716, 0x835c, 0x0726, 0x0725, 0x0718, 0x0719, 0x071c,\n  0x071d, 0x8308, 0x8309, 0x1014, 0x1015, 0x833b, 0x833d, 0x835b,\n  0x835d, 0x1008, 0x1009, 0x100a, 0x100b, 0x100c, 0x100d, 0x100e,\n  0x100f, 0x1010, 0x1011, 0x830b, 0x0912, 0x00b1, 0x00d7, 0x00f7,\n  0x831d, 0x0960, 0x831c, 0x831e, 0x0966, 0x0967, 0x091e, 0x0934,\n  0x0d42, 0x0d40, 0x00b0, 0x0732, 0x0733, 0x0803, 0x83e5, 0x8304,\n  0x00a2, 0x00a3, 0x8305, 0x8303, 0x8306, 0x830a, 0x8320, 0x00a7,\n  0x0d06, 0x0d05, 0x0ccb, 0x0ccf, 0x0cce, 0x0cc7,\n  /* 0x12221..0x1227E */\n  0x0cc6, 0x0ca1, 0x0ca0, 0x0cb3, 0x0cb2, 0x0cbd, 0x0cbc, 0x073b,\n  0x1012, 0x0892, 0x0890, 0x0891, 0x0893, 0x1013, 0x8307, 0x8302,\n  0x830d, 0x835e, 0x1033, 0x1034, 0x1035, 0x103b, 0x103c, 0x10ff,\n  0x109f, 0x0908, 0x090b, 0x0986, 0x0987, 0x0982, 0x0983, 0x092a,\n  0x0929, 0x0984, 0x0985, 0x098a, 0x098b, 0x0909, 0x0905, 0x0a05,\n  0x0a06, 0x0927, 0x0928, 0x00ac, 0x08d2, 0x08d4, 0x0900, 0x0903,\n  0x0995, 0x0996, 0x0997, 0x0925, 0x0926, 0x835f, 0x8360, 0x1018,\n  0x1019, 0x1016, 0x1017, 0x0920, 0x09a5, 0x0a12, 0x0902, 0x0907,\n  0x0961, 0x0952, 0x096a, 0x096b, 0x091a, 0x093d, 0x091d, 0x0935,\n  0x092b, 0x092c, 0x0962, 0x0943, 0x0945, 0x0948, 0x0976, 0x0977,\n  0x0894, 0x082b, 0x0730, 0x0d6f, 0x0d6d, 0x0d6a, 0x0720, 0x0721,\n  0x00b6, 0x0d6e, 0x0d6b, 0x0d6c, 0x0d69, 0x0cef,\n  /* 0x12321..0x1237E */\n  0x0cb7, 0x0cb6, 0x0cc1, 0x0cc0, 0x0897, 0x0898, 0x0896, 0x0899,\n  0x08c4, 0x08e8, 0x08e6, 0x08e7, 0x08e9, 0x0f34, 0x0f35, 0x8310,\n  0x8311, 0x8312, 0x8313, 0x8314, 0x8315, 0x8316, 0x8317, 0x8318,\n  0x8319, 0x0fbf, 0x0cc9, 0x103d, 0x8246, 0x8245, 0x0ce6, 0x0722,\n  0x8321, 0x8322, 0x8323, 0x8324, 0x8325, 0x8326, 0x8327, 0x8328,\n  0x8329, 0x832a, 0x832b, 0x832c, 0x832d, 0x832e, 0x832f, 0x8330,\n  0x8331, 0x8332, 0x8333, 0x8334, 0x8335, 0x8336, 0x8337, 0x8338,\n  0x8339, 0x833a, 0x0913, 0x0835, 0x080f, 0x13cb, 0x0813, 0x0827,\n  0x8341, 0x8342, 0x8343, 0x8344, 0x8345, 0x8346, 0x8347, 0x8348,\n  0x8349, 0x834a, 0x834b, 0x834c, 0x834d, 0x834e, 0x834f, 0x8350,\n  0x8351, 0x8352, 0x8353, 0x8354, 0x8355, 0x8356, 0x8357, 0x8358,\n  0x8359, 0x835a, 0x10a0, 0x0713, 0x0ffa, 0x0ffb,\n  /* 0x12421..0x1247E */\n  0x1041, 0x1042, 0x1043, 0x1044, 0x1045, 0x1046, 0x1047, 0x1048,\n  0x1049, 0x104a, 0x104b, 0x104c, 0x104d, 0x104e, 0x104f, 0x1050,\n  0x1051, 0x1052, 0x1053, 0x1054, 0x1055, 0x1056, 0x1057, 0x1058,\n  0x1059, 0x105a, 0x105b, 0x105c, 0x105d, 0x105e, 0x105f, 0x1060,\n  0x1061, 0x1062, 0x1063, 0x1064, 0x1065, 0x1066, 0x1067, 0x1068,\n  0x1069, 0x106a, 0x106b, 0x106c, 0x106d, 0x106e, 0x106f, 0x1070,\n  0x1071, 0x1072, 0x1073, 0x1074, 0x1075, 0x1076, 0x1077, 0x1078,\n  0x1079, 0x107a, 0x107b, 0x107c, 0x107d, 0x107e, 0x107f, 0x1080,\n  0x1081, 0x1082, 0x1083, 0x1084, 0x1085, 0x1086, 0x1087, 0x1088,\n  0x1089, 0x108a, 0x108b, 0x108c, 0x108d, 0x108e, 0x108f, 0x1090,\n  0x1091, 0x1092, 0x1093, 0x1094, 0x1095, 0x1096, 0x0001, 0x0002,\n  0x0003, 0x0004, 0x0005, 0x0000, 0x0000, 0x0000,\n  /* 0x12521..0x1257E */\n  0x10a1, 0x10a2, 0x10a3, 0x10a4, 0x10a5, 0x10a6, 0x10a7, 0x10a8,\n  0x10a9, 0x10aa, 0x10ab, 0x10ac, 0x10ad, 0x10ae, 0x10af, 0x10b0,\n  0x10b1, 0x10b2, 0x10b3, 0x10b4, 0x10b5, 0x10b6, 0x10b7, 0x10b8,\n  0x10b9, 0x10ba, 0x10bb, 0x10bc, 0x10bd, 0x10be, 0x10bf, 0x10c0,\n  0x10c1, 0x10c2, 0x10c3, 0x10c4, 0x10c5, 0x10c6, 0x10c7, 0x10c8,\n  0x10c9, 0x10ca, 0x10cb, 0x10cc, 0x10cd, 0x10ce, 0x10cf, 0x10d0,\n  0x10d1, 0x10d2, 0x10d3, 0x10d4, 0x10d5, 0x10d6, 0x10d7, 0x10d8,\n  0x10d9, 0x10da, 0x10db, 0x10dc, 0x10dd, 0x10de, 0x10df, 0x10e0,\n  0x10e1, 0x10e2, 0x10e3, 0x10e4, 0x10e5, 0x10e6, 0x10e7, 0x10e8,\n  0x10e9, 0x10ea, 0x10eb, 0x10ec, 0x10ed, 0x10ee, 0x10ef, 0x10f0,\n  0x10f1, 0x10f2, 0x10f3, 0x10f4, 0x10f5, 0x10f6, 0x0006, 0x0007,\n  0x0008, 0x0009, 0x000a, 0x000b, 0x000c, 0x000d,\n  /* 0x12621..0x1267E */\n  0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396, 0x0397, 0x0398,\n  0x0399, 0x039a, 0x039b, 0x039c, 0x039d, 0x039e, 0x039f, 0x03a0,\n  0x03a1, 0x03a3, 0x03a4, 0x03a5, 0x03a6, 0x03a7, 0x03a8, 0x03a9,\n  0x0d64, 0x0d60, 0x0d62, 0x0d66, 0x0d61, 0x0d65, 0x0d67, 0x0d63,\n  0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7, 0x03b8,\n  0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf, 0x03c0,\n  0x03c1, 0x03c3, 0x03c4, 0x03c5, 0x03c6, 0x03c7, 0x03c8, 0x03c9,\n  0x03c2, 0x0bf5, 0x0bf6, 0x0bf7, 0x0bf8, 0x0bf9, 0x0bfa, 0x0bfb,\n  0x0bfc, 0x0bfd, 0x0bfe, 0x0d16, 0x0d17, 0x1020, 0x0d0e, 0x0d00,\n  0x0d01, 0x0d02, 0x0d03, 0x0d68, 0x0cb1, 0x11f0, 0x11f1, 0x11f2,\n  0x11f3, 0x11f4, 0x11f5, 0x11f6, 0x11f7, 0x11f8, 0x11f9, 0x000e,\n  0x11fa, 0x11fb, 0x11fc, 0x11fd, 0x11fe, 0x11ff,\n  /* 0x12721..0x1277E */\n  0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0401, 0x0416,\n  0x0417, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e,\n  0x041f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426,\n  0x0427, 0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e,\n  0x042f, 0x0abe, 0x0abf, 0x0ac0, 0x0ac1, 0x0ac2, 0x0ac3, 0x0ac4,\n  0x0ac5, 0x0ac6, 0x0ac7, 0x0ac8, 0x0ac9, 0x0aca, 0x0acb, 0x0acc,\n  0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0451, 0x0436,\n  0x0437, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e,\n  0x043f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446,\n  0x0447, 0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e,\n  0x044f, 0x10f7, 0x10f8, 0x10f9, 0x10fa, 0x09da, 0x09db, 0x0853,\n  0x0854, 0x0855, 0x0e13, 0x0a18, 0x0b23, 0x0ace,\n  /* 0x12821..0x1287E */\n  0x0c00, 0x0c02, 0x0c0c, 0x0c10, 0x0c18, 0x0c14, 0x0c1c, 0x0c2c,\n  0x0c24, 0x0c34, 0x0c3c, 0x0c01, 0x0c03, 0x0c0f, 0x0c13, 0x0c1b,\n  0x0c17, 0x0c23, 0x0c33, 0x0c2b, 0x0c3b, 0x0c4b, 0x0c20, 0x0c2f,\n  0x0c28, 0x0c37, 0x0c3f, 0x0c1d, 0x0c30, 0x0c25, 0x0c38, 0x0c42,\n  0x1251, 0x1252, 0x1253, 0x1254, 0x1255, 0x1256, 0x1257, 0x1258,\n  0x1259, 0x125a, 0x125b, 0x125c, 0x125d, 0x125e, 0x125f, 0x12b1,\n  0x12b2, 0x12b3, 0x12b4, 0x12b5, 0x12b6, 0x12b7, 0x12b8, 0x12b9,\n  0x12ba, 0x12bb, 0x12bc, 0x12bd, 0x12be, 0x12bf, 0x0000, 0x0000,\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0cd0, 0x0cd1,\n  0x0cd2, 0x0cd3, 0x073c, 0x0747, 0x0748, 0x0749, 0x01cd, 0x01ce,\n  0x01d0, 0x053e, 0x053f, 0x01f8, 0x01f9, 0x01d1, 0x01d2, 0x01d4,\n  0x01d6, 0x01d8, 0x01da, 0x01dc, 0x0000, 0x0000,\n  /* 0x12921..0x1297E */\n  0x07ac, 0x00a0, 0x00a1, 0x00a4, 0x00a6, 0x00a9, 0x00aa, 0x00ab,\n  0x00ad, 0x00ae, 0x00af, 0x00b2, 0x00b3, 0x00b7, 0x00b8, 0x00b9,\n  0x00ba, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00bf, 0x00c0, 0x00c1,\n  0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c6, 0x00c7, 0x00c8, 0x00c9,\n  0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf, 0x00d0, 0x00d1,\n  0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x00d8, 0x00d9, 0x00da,\n  0x00db, 0x00dc, 0x00dd, 0x00de, 0x00df, 0x00e0, 0x00e1, 0x00e2,\n  0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x00e7, 0x00e8, 0x00e9, 0x00ea,\n  0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef, 0x00f0, 0x00f1, 0x00f2,\n  0x00f3, 0x00f4, 0x00f5, 0x00f6, 0x00f8, 0x00f9, 0x00fa, 0x00fb,\n  0x00fc, 0x00fd, 0x00fe, 0x00ff, 0x0100, 0x012a, 0x016a, 0x0112,\n  0x014c, 0x0101, 0x012b, 0x016b, 0x0113, 0x014d,\n  /* 0x12A21..0x12A7E */\n  0x0104, 0x02d8, 0x0141, 0x013d, 0x015a, 0x0160, 0x015e, 0x0164,\n  0x0179, 0x017d, 0x017b, 0x0105, 0x02db, 0x0142, 0x013e, 0x015b,\n  0x02c7, 0x0161, 0x015f, 0x0165, 0x017a, 0x02dd, 0x017e, 0x017c,\n  0x0154, 0x0102, 0x0139, 0x0106, 0x010c, 0x0118, 0x011a, 0x010e,\n  0x0143, 0x0147, 0x0150, 0x0158, 0x016e, 0x0170, 0x0162, 0x0155,\n  0x0103, 0x013a, 0x0107, 0x010d, 0x0119, 0x011b, 0x010f, 0x0111,\n  0x0144, 0x0148, 0x0151, 0x0159, 0x016f, 0x0171, 0x0163, 0x02d9,\n  0x0108, 0x011c, 0x0124, 0x0134, 0x015c, 0x016c, 0x0109, 0x011d,\n  0x0125, 0x0135, 0x015d, 0x016d, 0x0271, 0x028b, 0x027e, 0x0283,\n  0x0292, 0x026c, 0x026e, 0x0279, 0x0288, 0x0256, 0x0273, 0x027d,\n  0x0282, 0x0290, 0x027b, 0x026d, 0x025f, 0x0272, 0x029d, 0x028e,\n  0x0261, 0x014b, 0x0270, 0x0281, 0x0127, 0x0295,\n  /* 0x12B21..0x12B7E */\n  0x0294, 0x0266, 0x0298, 0x01c2, 0x0253, 0x0257, 0x0284, 0x0260,\n  0x0193, 0x0153, 0x0152, 0x0268, 0x0289, 0x0258, 0x0275, 0x0259,\n  0x025c, 0x025e, 0x0250, 0x026f, 0x028a, 0x0264, 0x028c, 0x0254,\n  0x0251, 0x0252, 0x028d, 0x0265, 0x02a2, 0x02a1, 0x0255, 0x0291,\n  0x027a, 0x0267, 0x025a, 0x000f, 0x01fd, 0x0670, 0x0671, 0x0010,\n  0x0011, 0x0012, 0x0013, 0x0014, 0x0015, 0x0016, 0x0017, 0x0672,\n  0x0673, 0x0361, 0x02c8, 0x02cc, 0x02d0, 0x02d1, 0x0306, 0x073f,\n  0x030b, 0x0301, 0x0304, 0x0300, 0x030f, 0x030c, 0x0302, 0x02e5,\n  0x02e6, 0x02e7, 0x02e8, 0x02e9, 0x0018, 0x0019, 0x0325, 0x032c,\n  0x0339, 0x031c, 0x031f, 0x0320, 0x0308, 0x033d, 0x0329, 0x032f,\n  0x02de, 0x0324, 0x0330, 0x033c, 0x0334, 0x031d, 0x031e, 0x0318,\n  0x0319, 0x032a, 0x033a, 0x033b, 0x0303, 0x031a,\n  /* 0x12C21..0x12C7E */\n  0x0e76, 0x0e77, 0x0e78, 0x0e79, 0x0e7a, 0x0e7b, 0x0e7c, 0x0e7d,\n  0x0e7e, 0x0e7f, 0x0beb, 0x0bec, 0x0bed, 0x0bee, 0x0bef, 0x0bf0,\n  0x0bf1, 0x0bf2, 0x0bf3, 0x0bf4, 0x0870, 0x0871, 0x0872, 0x0873,\n  0x0874, 0x0875, 0x0876, 0x0877, 0x0878, 0x0879, 0x087a, 0x087b,\n  0x0bd0, 0x0bd1, 0x0bd2, 0x0bd3, 0x0bd4, 0x0bd5, 0x0bd6, 0x0bd7,\n  0x0bd8, 0x0bd9, 0x0bda, 0x0bdb, 0x0bdc, 0x0bdd, 0x0bde, 0x0bdf,\n  0x0be0, 0x0be1, 0x0be2, 0x0be3, 0x0be4, 0x0be5, 0x0be6, 0x0be7,\n  0x0be8, 0x0be9, 0x12d0, 0x12d1, 0x12d2, 0x12d3, 0x12d4, 0x12d5,\n  0x12d6, 0x12d7, 0x12d8, 0x12d9, 0x12da, 0x12db, 0x12dc, 0x12dd,\n  0x12de, 0x12df, 0x12e0, 0x12e1, 0x12e2, 0x12e3, 0x12fa, 0x12e9,\n  0x12e5, 0x12ed, 0x12ec, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0751, 0x0742,\n  /* 0x12D21..0x12D7E */\n  0x0b60, 0x0b61, 0x0b62, 0x0b63, 0x0b64, 0x0b65, 0x0b66, 0x0b67,\n  0x0b68, 0x0b69, 0x0b6a, 0x0b6b, 0x0b6c, 0x0b6d, 0x0b6e, 0x0b6f,\n  0x0b70, 0x0b71, 0x0b72, 0x0b73, 0x0860, 0x0861, 0x0862, 0x0863,\n  0x0864, 0x0865, 0x0866, 0x0867, 0x0868, 0x0869, 0x086a, 0x1349,\n  0x1314, 0x1322, 0x134d, 0x1318, 0x1327, 0x1303, 0x1336, 0x1351,\n  0x1357, 0x130d, 0x1326, 0x1323, 0x132b, 0x134a, 0x133b, 0x139c,\n  0x139d, 0x139e, 0x138e, 0x138f, 0x13c4, 0x13a1, 0x086b, 0x0000,\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x137b, 0x101d,\n  0x101f, 0x0816, 0x13cd, 0x0821, 0x12a4, 0x12a5, 0x12a6, 0x12a7,\n  0x12a8, 0x1231, 0x1232, 0x1239, 0x137e, 0x137d, 0x137c, 0x0000,\n  0x0000, 0x0000, 0x092e, 0x0000, 0x0000, 0x0000, 0x0000, 0x091f,\n  0x09bf, 0x0000, 0x0000, 0x0000, 0x0e56, 0x0d1e,\n  /* 0x12E21..0x12E7E */\n  0x2ff1, 0x840b, 0x1402, 0x2e28, 0x2e2f, 0x2e30, 0x2e8d, 0x2ee1,\n  0x2efd, 0x2eff, 0x2f03, 0x2f0b, 0x2f60, 0x2f48, 0x2f49, 0x2f56,\n  0x2f5f, 0x2f6a, 0x2f6c, 0x2f7e, 0x2f8a, 0x2f94, 0x2f97, 0x8130,\n  0x2fc9, 0x2fe0, 0x3001, 0x3002, 0x300e, 0x3018, 0x3027, 0x302e,\n  0x3040, 0x303b, 0x3041, 0x3094, 0x30cc, 0x30f2, 0x30d0, 0x30e6,\n  0x8131, 0x3106, 0x3103, 0x310b, 0x311e, 0x3135, 0x314a, 0x8132,\n  0x3155, 0x3157, 0x14b5, 0x319d, 0x31c3, 0x31ca, 0x31de, 0x31e2,\n  0x31ee, 0x3201, 0x14db, 0x3213, 0x3215, 0x3249, 0x3257, 0x3261,\n  0x3293, 0x32c8, 0x8133, 0x32cc, 0x32d0, 0x32d6, 0x32db, 0x8134,\n  0x32f0, 0x32fb, 0x3300, 0x3307, 0x331c, 0x8135, 0x3361, 0x3363,\n  0x337d, 0x3393, 0x339d, 0x33b2, 0x3412, 0x3427, 0x344d, 0x349c,\n  0x346b, 0x3474, 0x347f, 0x3488, 0x3496, 0x34a1,\n  /* 0x12F21..0x12F7E */\n  0x34a9, 0x34c6, 0x34ff, 0x350e, 0x352b, 0x3535, 0x3550, 0x355e,\n  0x3581, 0x3586, 0x358e, 0x8136, 0x35ad, 0x35ce, 0x8137, 0x3608,\n  0x360e, 0x363b, 0x3649, 0x3676, 0x3666, 0x8138, 0x366f, 0x3671,\n  0x3672, 0x3699, 0x369e, 0x36a9, 0x36ac, 0x36b3, 0x36c9, 0x36ca,\n  0x370a, 0x923d, 0x3721, 0x372f, 0x3733, 0x3734, 0x3770, 0x3777,\n  0x377c, 0x379c, 0x810f, 0x931b, 0x37b8, 0x37c7, 0x37c8, 0x37cf,\n  0x37e4, 0x37ed, 0x37f5, 0x37f6, 0x37ff, 0x3809, 0x8110, 0x3861,\n  0x3864, 0x8139, 0x387c, 0x3889, 0x389e, 0x813a, 0x38a9, 0x946e,\n  0x38d2, 0x38ce, 0x38d4, 0x38da, 0x38e0, 0x38e9, 0x390c, 0x6641,\n  0x395d, 0x396d, 0x398b, 0x3992, 0x39a4, 0x39c3, 0x39d2, 0x39dd,\n  0x3a13, 0x3a23, 0x3a67, 0x3a6d, 0x3a77, 0x3a7e, 0x3a84, 0x3a9e,\n  0x3aa7, 0x3ac4, 0x98bd, 0x3b19, 0x3b25, 0x325d,\n  /* 0x13021..0x1307E */\n  0x2e9c, 0x3516, 0x3a03, 0x763f, 0x34c0, 0x411b, 0x4328, 0x39f6,\n  0x7022, 0x6475, 0x631c, 0x5a50, 0x40aa, 0x43e1, 0x4e25, 0x45ed,\n  0x6466, 0x62a6, 0x7bf5, 0x4893, 0x3727, 0x45a1, 0x4271, 0x3b9b,\n  0x39d0, 0x667b, 0x78f4, 0x5d62, 0x5dbe, 0x7b8e, 0x4216, 0x5c9f,\n  0x68b7, 0x3b89, 0x3eb5, 0x4309, 0x4697, 0x4848, 0x75c7, 0x778d,\n  0x474f, 0x2ee5, 0x2f0a, 0x2f4d, 0x2f9d, 0x3049, 0x36f2, 0x3937,\n  0x39d4, 0x3a01, 0x3c09, 0x40df, 0x410f, 0x4170, 0x4613, 0x4905,\n  0x50ba, 0x554f, 0x5570, 0x59fb, 0x5dad, 0x5def, 0x60c3, 0x640e,\n  0x6863, 0x6b02, 0x7055, 0x707a, 0x333b, 0x2e95, 0x2ea5, 0x37df,\n  0x60b2, 0x70c1, 0x58ef, 0x2e00, 0x38f1, 0x4ea2, 0x7038, 0x5a32,\n  0x6328, 0x628b, 0x7c2f, 0x3141, 0x3370, 0x34bd, 0x34e1, 0x36e0,\n  0x39fb, 0x3f15, 0x78f2, 0x4deb, 0x60e4, 0x652d,\n  /* 0x13121..0x1317E */\n  0x7662, 0x7670, 0x76a0, 0x77fb, 0x340b, 0x33f3, 0x3b87, 0x50cf,\n  0x5fbd, 0x6fc2, 0x76e8, 0x336f, 0x7d5c, 0x5aba, 0x2e11, 0x5893,\n  0x61fc, 0x4e26, 0x3618, 0x3504, 0x4b1d, 0x651a, 0x7c3b, 0x39e5,\n  0x33a9, 0x4d66, 0x54dc, 0x758f, 0x3642, 0x2e91, 0x704b, 0x76f2,\n  0x634f, 0x790c, 0x33e1, 0x35b6, 0x3b30, 0x3f71, 0x4620, 0x46f3,\n  0x4804, 0x4c38, 0x4cf3, 0x4d29, 0x545b, 0x56c8, 0x5a4e, 0x7834,\n  0x62f1, 0x685b, 0x6a60, 0x72ed, 0x4db2, 0x55ab, 0x56ca, 0x79c5,\n  0x40a6, 0x6b01, 0x6d8a, 0x75b2, 0x498e, 0x33ad, 0x3186, 0x3712,\n  0x3830, 0x3944, 0x3bb4, 0x3ef6, 0x4028, 0x43a9, 0x43f4, 0x4cbf,\n  0x4f14, 0x508e, 0x5114, 0x5159, 0x51d5, 0x533f, 0x5e01, 0x6276,\n  0x62d1, 0x6597, 0x7060, 0x725b, 0x7d1b, 0x3869, 0x45bc, 0x4c5a,\n  0x5525, 0x31f9, 0x392e, 0x3965, 0x3f80, 0x3fdc,\n  /* 0x13221..0x1327E */\n  0x42bc, 0x45fa, 0x4a2a, 0x4b27, 0x4bb4, 0x538b, 0x5fc1, 0x6956,\n  0x7d2c, 0x7d0e, 0x7ec4, 0x3ca1, 0x4c96, 0x637b, 0x3104, 0x3c4b,\n  0x41b6, 0x61c6, 0x4876, 0x5261, 0x2e59, 0x2ffa, 0x3378, 0x4069,\n  0x4e29, 0x5a4f, 0x77f3, 0x2e0b, 0x3316, 0x2eee, 0x2f55, 0x2f3d,\n  0x2fa1, 0x2f73, 0x32a0, 0x33ef, 0x3609, 0x390f, 0x3ac1, 0x3bb6,\n  0x3be1, 0x59d1, 0x4687, 0x479c, 0x47b6, 0x4b4c, 0x4cb3, 0x506b,\n  0x53c2, 0x598d, 0x59be, 0x5a3c, 0x5b87, 0x62b1, 0x62db, 0x6304,\n  0x6377, 0x63ef, 0x63d3, 0x6766, 0x6ab2, 0x3629, 0x6ca8, 0x6fe6,\n  0x704e, 0x771e, 0x668a, 0x2fc4, 0x3ce8, 0x4211, 0x5259, 0x553b,\n  0x61e5, 0x62bd, 0x66fe, 0x6cc0, 0x76c5, 0x7913, 0x79d5, 0x2ecb,\n  0x2f1a, 0x69e3, 0x36de, 0x384a, 0x38ca, 0x3efb, 0x3feb, 0x402a,\n  0x4094, 0x4062, 0x41d0, 0x4212, 0x42d0, 0x4539,\n  /* 0x13321..0x1337E */\n  0x7b41, 0x4666, 0x48b0, 0x4d77, 0x5070, 0x554c, 0x5686, 0x5d75,\n  0x62a5, 0x67f9, 0x758b, 0x768e, 0x6c9d, 0x31f1, 0x32be, 0x3916,\n  0x34b3, 0x3bb3, 0x3d16, 0x4168, 0x4982, 0x4daf, 0x588d, 0x64cb,\n  0x6857, 0x6a72, 0x73a7, 0x7ab8, 0x4d6c, 0x79a8, 0x66d9, 0x37a3,\n  0x47ff, 0x66ce, 0x720e, 0x3283, 0x3687, 0x3404, 0x3ed3, 0x42e1,\n  0x44b9, 0x483c, 0x4838, 0x4bbb, 0x5372, 0x58ba, 0x5a6b, 0x699a,\n  0x69d2, 0x6d6b, 0x6f03, 0x70ed, 0x75a3, 0x7694, 0x7769, 0x3b66,\n  0x3cb3, 0x497d, 0x784d, 0x784e, 0x439b, 0x5b20, 0x4a2b, 0x4a7f,\n  0x48b6, 0x7c0d, 0x4f5f, 0x3272, 0x359d, 0x4070, 0x42ec, 0x4d3b,\n  0x4e07, 0x4ed1, 0x645b, 0x6910, 0x6f44, 0x2e14, 0x7c39, 0x33f6,\n  0x491b, 0x4a3a, 0x7784, 0x482a, 0x315c, 0x5ac3, 0x64b2, 0x71dc,\n  0x738c, 0x365b, 0x7d28, 0x4822, 0x6305, 0x6431,\n  /* 0x13421..0x1347E */\n  0x5ca5, 0x3208, 0x62c5, 0x54e6, 0x2e7e, 0x2f83, 0x31a0, 0x3bd2,\n  0x320a, 0x32d8, 0x32e7, 0x3dfb, 0x359a, 0x382a, 0x39e6, 0x3b8c,\n  0x3b98, 0x3bdb, 0x3e72, 0x3e79, 0x40a3, 0x411f, 0x4163, 0x41be,\n  0x43db, 0x4562, 0x47d1, 0x4853, 0x48fa, 0x4b3e, 0x4b53, 0x4c57,\n  0x4f22, 0x4f97, 0x4f45, 0x54b0, 0x5518, 0x56e3, 0x570b, 0x5aff,\n  0x5ba1, 0x5c21, 0x5de9, 0x5f36, 0x5ff0, 0x609d, 0x6266, 0x639e,\n  0x69b3, 0x6acc, 0x6cab, 0x7084, 0x7451, 0x7593, 0x7591, 0x75a2,\n  0x7665, 0x77d3, 0x7928, 0x6218, 0x2e38, 0x342b, 0x3cb8, 0x3dcc,\n  0x53a9, 0x564c, 0x573c, 0x3ca9, 0x5feb, 0x6d0b, 0x76c1, 0x7811,\n  0x7854, 0x7858, 0x2f01, 0x2f0e, 0x3371, 0x359c, 0x3668, 0x37fa,\n  0x3947, 0x3b09, 0x3bc4, 0x3c90, 0x3e0c, 0x3e7e, 0x3fcc, 0x43ee,\n  0x473a, 0x45d7, 0x45e2, 0x471f, 0x48cb, 0x48c4,\n  /* 0x13521..0x1357E */\n  0x4a5f, 0x3e30, 0x4bc5, 0x4c17, 0x4c7d, 0x557f, 0x5948, 0x3b63,\n  0x5a00, 0x5d00, 0x3fbd, 0x698f, 0x6a18, 0x6cb4, 0x6d77, 0x6ecc,\n  0x6f1d, 0x78e2, 0x7a0e, 0x7b3c, 0x2e80, 0x307d, 0x3100, 0x3993,\n  0x3b9c, 0x422f, 0x4280, 0x44ec, 0x4b3a, 0x52a0, 0x5591, 0x5947,\n  0x5fa9, 0x67fb, 0x6abc, 0x6b70, 0x43ac, 0x63ca, 0x77a0, 0x3409,\n  0x3403, 0x35ab, 0x4854, 0x4a58, 0x6a70, 0x5827, 0x4775, 0x7ecd,\n  0x3374, 0x3ba2, 0x611a, 0x6650, 0x7006, 0x2e18, 0x2e45, 0x2ec7,\n  0x2f11, 0x33ca, 0x3438, 0x3bae, 0x3f13, 0x4025, 0x4551, 0x473d,\n  0x4c42, 0x4c72, 0x4ce3, 0x5078, 0x5403, 0x5a76, 0x5aae, 0x5b08,\n  0x5d1a, 0x5cfe, 0x5d66, 0x45e7, 0x525b, 0x33bb, 0x3c45, 0x3de8,\n  0x42d2, 0x42e0, 0x4319, 0x4e20, 0x665a, 0x6a31, 0x6ddd, 0x72f8,\n  0x4f01, 0x59a6, 0x7b5a, 0x2ea8, 0x2eab, 0x2eac,\n  /* 0x13621..0x1367E */\n  0x2f9b, 0x2fa0, 0x30d1, 0x3147, 0x5af6, 0x3171, 0x31f6, 0x3354,\n  0x3321, 0x337f, 0x33eb, 0x35ac, 0x3883, 0x3ce1, 0x3f37, 0x3f4a,\n  0x402f, 0x4050, 0x406d, 0x431f, 0x4559, 0x4a4b, 0x4cc1, 0x52c2,\n  0x52ed, 0x57ef, 0x60f8, 0x6105, 0x6208, 0x654e, 0x70f7, 0x73e1,\n  0x77ff, 0x7957, 0x7a5a, 0x2ef0, 0x31dd, 0x3c2d, 0x4681, 0x496d,\n  0x3c40, 0x46f2, 0x4975, 0x5389, 0x4850, 0x5c81, 0x30c5, 0x32e4,\n  0x3747, 0x3dfe, 0x7326, 0x45a4, 0x4b23, 0x4b3d, 0x5434, 0x5981,\n  0x59bd, 0x5b4b, 0x5dca, 0x62b9, 0x63cc, 0x687f, 0x695f, 0x6b39,\n  0x6fd1, 0x71d1, 0x341f, 0x7280, 0x2e5d, 0x3036, 0x33e5, 0x333a,\n  0x52d7, 0x5396, 0x57e9, 0x62e6, 0x6eaf, 0x79c6, 0x79c8, 0x79d2,\n  0x3177, 0x411a, 0x665e, 0x35b0, 0x5a7a, 0x3076, 0x3bd3, 0x7047,\n  0x7685, 0x2e32, 0x4adb, 0x71e7, 0x3c51, 0x3c48,\n  /* 0x13721..0x1377E */\n  0x4398, 0x5a9f, 0x4c93, 0x7774, 0x6f61, 0x5aaa, 0x518a, 0x7688,\n  0x5c82, 0x4817, 0x5e70, 0x4851, 0x736c, 0x32f2, 0x341b, 0x65ab,\n  0x6a13, 0x5fa4, 0x6ecd, 0x70e1, 0x3366, 0x6888, 0x5941, 0x2fc2,\n  0x30be, 0x3211, 0x3144, 0x3553, 0x372d, 0x53ea, 0x378b, 0x3951,\n  0x3f62, 0x3f84, 0x4075, 0x4176, 0x4167, 0x41a9, 0x43b2, 0x443a,\n  0x456c, 0x466f, 0x4842, 0x4e13, 0x5566, 0x5a3d, 0x5cfb, 0x5d4c,\n  0x5d99, 0x5e4b, 0x5f6b, 0x630e, 0x634a, 0x66cd, 0x6a08, 0x6a63,\n  0x6b66, 0x6efd, 0x781a, 0x7d8f, 0x62b8, 0x6fce, 0x7be8, 0x3287,\n  0x421f, 0x4483, 0x4fc0, 0x7699, 0x4841, 0x3091, 0x4b20, 0x4c7a,\n  0x4f54, 0x5a74, 0x5d50, 0x6840, 0x6a23, 0x4708, 0x2ef6, 0x3039,\n  0x3026, 0x3065, 0x317c, 0x3238, 0x3263, 0x35a7, 0x370f, 0x3805,\n  0x3acc, 0x3efa, 0x41b2, 0x41f8, 0x42f3, 0x4372,\n  /* 0x13821..0x1387E */\n  0x491c, 0x4a29, 0x527d, 0x52ac, 0x532e, 0x5814, 0x586f, 0x5d79,\n  0x570c, 0x60a9, 0x698b, 0x6b19, 0x6ce2, 0x6ed2, 0x7063, 0x7375,\n  0x767a, 0x7855, 0x7a13, 0x7e78, 0x3143, 0x339f, 0x33b3, 0x3e7b,\n  0x3f26, 0x4e1b, 0x4e90, 0x5384, 0x53fe, 0x5d43, 0x6237, 0x6a00,\n  0x6afa, 0x7650, 0x2e4e, 0x300b, 0x33e4, 0x347c, 0x36fa, 0x39d1,\n  0x3b64, 0x3df1, 0x3eab, 0x3f27, 0x4238, 0x4545, 0x47af, 0x4e56,\n  0x52d0, 0x5cca, 0x68b4, 0x60a1, 0x60e1, 0x63f0, 0x664e, 0x6a87,\n  0x6de8, 0x7237, 0x76c7, 0x7867, 0x7f13, 0x2e94, 0x2e92, 0x2f0d,\n  0x3348, 0x3449, 0x343e, 0x3a2f, 0x3f8c, 0x3fa1, 0x409f, 0x48a7,\n  0x4a8e, 0x545a, 0x5881, 0x6a9e, 0x6aa4, 0x6b77, 0x7190, 0x2e5e,\n  0x7bc9, 0x2ea4, 0x2f7c, 0x2faf, 0x3019, 0x3016, 0x3149, 0x316c,\n  0x329f, 0x32b9, 0x32fe, 0x339a, 0x33e3, 0x3411,\n  /* 0x13921..0x1397E */\n  0x340e, 0x3589, 0x3751, 0x37a2, 0x397d, 0x3b54, 0x3b5d, 0x3b8f,\n  0x3de5, 0x3de7, 0x3df7, 0x3e78, 0x3e83, 0x3e9a, 0x3eb7, 0x3f18,\n  0x4052, 0x414c, 0x4297, 0x42d8, 0x43a7, 0x453b, 0x4602, 0x4643,\n  0x46f4, 0x476d, 0x4821, 0x4897, 0x49cb, 0x4c5f, 0x4d2a, 0x4d69,\n  0x4e2f, 0x4e9d, 0x5532, 0x5687, 0x586c, 0x5a3f, 0x5ce0, 0x5d05,\n  0x5d18, 0x5d5e, 0x5db1, 0x6015, 0x6003, 0x60af, 0x60b1, 0x6154,\n  0x618f, 0x622a, 0x6352, 0x684c, 0x6861, 0x6b1b, 0x6ca2, 0x6cfc,\n  0x70ca, 0x7175, 0x7271, 0x583f, 0x72fc, 0x75a4, 0x764d, 0x7805,\n  0x7999, 0x7ad8, 0x7d3b, 0x325b, 0x32ab, 0x33f7, 0x3408, 0x38d5,\n  0x42f7, 0x4fe0, 0x6c6a, 0x6f5f, 0x7eb9, 0x314b, 0x323b, 0x344a,\n  0x36fd, 0x5a40, 0x7177, 0x7d60, 0x7ed2, 0x5344, 0x4f09, 0x6170,\n  0x5511, 0x3ffd, 0x40da, 0x7aa8, 0x52db, 0x6fbc,\n  /* 0x13A21..0x13A7E */\n  0x4b64, 0x7803, 0x2eca, 0x36f0, 0x3764, 0x38be, 0x3a5a, 0x4068,\n  0x41c7, 0x460f, 0x4606, 0x4839, 0x48b1, 0x4df7, 0x55d5, 0x5d3a,\n  0x626e, 0x7b42, 0x2e9b, 0x2f50, 0x33c9, 0x3506, 0x3d6f, 0x3de6,\n  0x3dee, 0x47fb, 0x4c99, 0x5473, 0x5802, 0x6a50, 0x7396, 0x68df,\n  0x3750, 0x3ea7, 0x432b, 0x30b5, 0x30ac, 0x318d, 0x4700, 0x34c9,\n  0x385e, 0x39bb, 0x3bb0, 0x3f69, 0x424d, 0x43a1, 0x483d, 0x4b73,\n  0x4e08, 0x507d, 0x71c7, 0x5280, 0x5815, 0x5826, 0x596d, 0x458e,\n  0x5d30, 0x63dc, 0x68c1, 0x6f09, 0x769b, 0x3264, 0x3728, 0x4750,\n  0x5f6a, 0x6ca1, 0x31b4, 0x3742, 0x762a, 0x383a, 0x498a, 0x60b4,\n  0x34b2, 0x3d0e, 0x37fc, 0x5895, 0x7dfa, 0x2f5c, 0x324a, 0x348b,\n  0x443e, 0x4628, 0x4714, 0x47f5, 0x5a84, 0x5b56, 0x5d22, 0x732f,\n  0x485c, 0x7bad, 0x5b39, 0x3319, 0x318a, 0x3237,\n  /* 0x13B21..0x13B7E */\n  0x3bdf, 0x42f6, 0x44ae, 0x44e6, 0x472d, 0x4bba, 0x65a9, 0x76d1,\n  0x5690, 0x7bd6, 0x434c, 0x7306, 0x7bab, 0x56bf, 0x4652, 0x2e09,\n  0x3098, 0x33c2, 0x3c71, 0x40e8, 0x4492, 0x4563, 0x485f, 0x51e6,\n  0x53ca, 0x5523, 0x5b97, 0x5e82, 0x6695, 0x6b83, 0x6cdb, 0x7178,\n  0x7910, 0x45ac, 0x46ab, 0x4b8b, 0x2ed5, 0x2ed4, 0x2f3a, 0x2f7f,\n  0x323a, 0x33f8, 0x33f2, 0x35e3, 0x36db, 0x38eb, 0x39cb, 0x39c9,\n  0x39ff, 0x3b50, 0x3c4d, 0x3e02, 0x3e2b, 0x3fd7, 0x401d, 0x4307,\n  0x452f, 0x3b5c, 0x45af, 0x45bd, 0x45e8, 0x479d, 0x4b62, 0x4b7b,\n  0x4c0f, 0x5345, 0x5949, 0x59c1, 0x5cf8, 0x5d19, 0x5d2b, 0x60a2,\n  0x6102, 0x61f3, 0x6996, 0x6a5e, 0x6a69, 0x6a66, 0x6a8c, 0x6aee,\n  0x6cc7, 0x6cdc, 0x76cc, 0x78fc, 0x4b6f, 0x2e8b, 0x2f3c, 0x2f8d,\n  0x3150, 0x3b57, 0x3bfa, 0x4148, 0x4301, 0x4642,\n  /* 0x13C21..0x13C7E */\n  0x4b21, 0x4ecb, 0x4cbb, 0x523e, 0x54bd, 0x55d4, 0x58c1, 0x593a,\n  0x600c, 0x6033, 0x61ea, 0x6494, 0x6f9e, 0x4c50, 0x7e7f, 0x3f0f,\n  0x6b58, 0x7d2b, 0x5afa, 0x6ef8, 0x3b8d, 0x76eb, 0x2e03, 0x33f1,\n  0x37f7, 0x3931, 0x3ac9, 0x3ba4, 0x4089, 0x4e7f, 0x4f06, 0x55be,\n  0x6cea, 0x3b9f, 0x6500, 0x5be0, 0x3072, 0x47f4, 0x629d, 0x3c61,\n  0x654a, 0x5e1e, 0x620e, 0x3199, 0x3c04, 0x4368, 0x6d66, 0x459c,\n  0x516e, 0x593e, 0x5d17, 0x6005, 0x6b1d, 0x6eca, 0x706e, 0x66c7,\n  0x70aa, 0x301f, 0x32fa, 0x3c3a, 0x4753, 0x507c, 0x5235, 0x714c,\n  0x71c8, 0x732b, 0x62e5, 0x3bc2, 0x3f31, 0x40f9, 0x2e3b, 0x33d6,\n  0x3b88, 0x424b, 0x4731, 0x4b8a, 0x52e9, 0x53e0, 0x5a2e, 0x616b,\n  0x6da3, 0x7152, 0x7996, 0x3112, 0x33d7, 0x346a, 0x3bff, 0x4388,\n  0x4a39, 0x5dac, 0x7700, 0x36da, 0x33ce, 0x3468,\n  /* 0x13D21..0x13D7E */\n  0x3b97, 0x3c31, 0x3dde, 0x2fee, 0x4101, 0x42fe, 0x4d32, 0x59c0,\n  0x59cb, 0x5d42, 0x5e4d, 0x5fd2, 0x61ed, 0x621f, 0x6490, 0x6846,\n  0x6972, 0x6b90, 0x6e74, 0x6f2f, 0x7031, 0x714b, 0x716c, 0x76c6,\n  0x719c, 0x2ec0, 0x2f4f, 0x3145, 0x3341, 0x3f93, 0x420e, 0x47d4,\n  0x4c41, 0x4e0b, 0x5363, 0x5e26, 0x71cd, 0x7283, 0x33d4, 0x3919,\n  0x3bbf, 0x4dd1, 0x595d, 0x5e2e, 0x5c9b, 0x387e, 0x519f, 0x31fa,\n  0x6853, 0x6ff0, 0x2fca, 0x3cfb, 0x4625, 0x57ac, 0x5ae3, 0x621c,\n  0x79ff, 0x31c6, 0x3faa, 0x45ec, 0x496f, 0x4b89, 0x4df3, 0x4e96,\n  0x4f64, 0x56fe, 0x5d14, 0x3de1, 0x7075, 0x7187, 0x7806, 0x31e6,\n  0x321d, 0x4240, 0x4691, 0x46d9, 0x4e1a, 0x3eb6, 0x5dd2, 0x5f72,\n  0x46f8, 0x65af, 0x65f7, 0x6af8, 0x32a9, 0x33d9, 0x3973, 0x3e8f,\n  0x3f90, 0x4055, 0x72e4, 0x7664, 0x30b7, 0x311f,\n  /* 0x13E21..0x13E7E */\n  0x32dd, 0x3320, 0x3347, 0x33ec, 0x34e8, 0x3546, 0x3531, 0x3617,\n  0x3968, 0x39be, 0x3a3c, 0x3bb5, 0x3c06, 0x3c0f, 0x3c11, 0x3c1a,\n  0x3e84, 0x3e8a, 0x3ee0, 0x3f70, 0x427f, 0x4284, 0x42db, 0x438c,\n  0x4377, 0x4607, 0x460c, 0x462d, 0x4676, 0x477e, 0x48a2, 0x4a1f,\n  0x4a35, 0x4cbc, 0x4d88, 0x4e09, 0x4e58, 0x513c, 0x5126, 0x5167,\n  0x55c7, 0x5701, 0x585d, 0x5901, 0x5965, 0x59f0, 0x5ae0, 0x5b11,\n  0x5ca7, 0x5d39, 0x6096, 0x63d6, 0x648b, 0x6549, 0x685d, 0x68f3,\n  0x6a1f, 0x6a3c, 0x6a54, 0x6a73, 0x6c61, 0x6cde, 0x71a4, 0x7266,\n  0x737e, 0x7418, 0x769c, 0x7798, 0x2e0a, 0x2e08, 0x2e1e, 0x2e57,\n  0x3197, 0x3270, 0x37ce, 0x3834, 0x38cc, 0x3b22, 0x3e38, 0x40c5,\n  0x44fe, 0x4761, 0x4756, 0x4d44, 0x52b6, 0x5573, 0x5a63, 0x64b8,\n  0x6b72, 0x71b8, 0x7320, 0x3631, 0x37f4, 0x78fe,\n  /* 0x13F21..0x13F7E */\n  0x42ed, 0x490d, 0x4b96, 0x51ed, 0x5e54, 0x6077, 0x6272, 0x69e6,\n  0x78df, 0x6755, 0x6fb1, 0x3c3b, 0x2f38, 0x2fe1, 0x2fb5, 0x3507,\n  0x3a20, 0x3bdd, 0x3be9, 0x3fc3, 0x414e, 0x432f, 0x45b0, 0x464b,\n  0x48ee, 0x499b, 0x4d78, 0x4df1, 0x5533, 0x55b9, 0x571f, 0x595e,\n  0x59e6, 0x5d33, 0x61e3, 0x62af, 0x65aa, 0x69aa, 0x6a3a, 0x6eab,\n  0x6f9b, 0x7032, 0x71dd, 0x7707, 0x2eba, 0x2ec1, 0x3203, 0x3875,\n  0x38ec, 0x3c0b, 0x551a, 0x3c3d, 0x614e, 0x6a0a, 0x6fc5, 0x7663,\n  0x776d, 0x5b25, 0x6acf, 0x7808, 0x7162, 0x36f3, 0x33a8, 0x7017,\n  0x3439, 0x3782, 0x3e25, 0x43a8, 0x4c34, 0x508a, 0x5761, 0x5c8b,\n  0x5fe0, 0x6870, 0x7042, 0x7154, 0x7310, 0x7318, 0x768f, 0x545e,\n  0x7ac4, 0x3d07, 0x3d69, 0x4570, 0x47a2, 0x6da8, 0x76db, 0x436e,\n  0x4749, 0x4919, 0x63c5, 0x7817, 0x76c0, 0x68fe,\n  /* 0x14021..0x1407E */\n  0x4f84, 0x447a, 0x3bf8, 0x2e16, 0x502c, 0x555d, 0x462f, 0x31c4,\n  0x3236, 0x32e2, 0x39d3, 0x3f81, 0x4027, 0x4210, 0x453f, 0x4574,\n  0x461f, 0x4674, 0x48f2, 0x4816, 0x4b63, 0x4e05, 0x5272, 0x551f,\n  0x56db, 0x5cbe, 0x6056, 0x38f0, 0x68fd, 0x697f, 0x6aa0, 0x6a93,\n  0x6acb, 0x701d, 0x7192, 0x7752, 0x7759, 0x4589, 0x5a0e, 0x6106,\n  0x76bb, 0x3e2d, 0x40dc, 0x421a, 0x45a5, 0x4614, 0x4790, 0x57f3,\n  0x5a4d, 0x5c4d, 0x5e3e, 0x610a, 0x6cac, 0x6d64, 0x6de1, 0x6e5f,\n  0x58a9, 0x3207, 0x42d9, 0x43a5, 0x4442, 0x4298, 0x6a2d, 0x5a83,\n  0x5bc0, 0x6aac, 0x76ea, 0x5d76, 0x620c, 0x6749, 0x2ed9, 0x3148,\n  0x3343, 0x3360, 0x3ba3, 0x3c02, 0x3c16, 0x3ddd, 0x4226, 0x4247,\n  0x44b0, 0x4813, 0x4834, 0x4cc9, 0x4d45, 0x4d17, 0x47d3, 0x4f5c,\n  0x514e, 0x517d, 0x45cb, 0x5a7f, 0x5bad, 0x5dda,\n  /* 0x14121..0x1417E */\n  0x5e4a, 0x5fa8, 0x617a, 0x621b, 0x6239, 0x65a6, 0x6a6e, 0x6cce,\n  0x6df5, 0x7078, 0x7077, 0x72ad, 0x7291, 0x7583, 0x7bae, 0x324d,\n  0x3584, 0x4f38, 0x5136, 0x3168, 0x5985, 0x5e55, 0x61b3, 0x5cce,\n  0x364c, 0x3851, 0x3ca8, 0x43aa, 0x46fe, 0x46fd, 0x495a, 0x52d9,\n  0x558f, 0x558e, 0x590e, 0x5956, 0x59df, 0x5c97, 0x5d20, 0x5d44,\n  0x6607, 0x6a34, 0x763b, 0x7061, 0x7f20, 0x30e7, 0x3275, 0x33cc,\n  0x33e2, 0x3009, 0x35aa, 0x38ee, 0x394f, 0x523d, 0x3b8b, 0x3c64,\n  0x331d, 0x40e3, 0x40f3, 0x435c, 0x4383, 0x433f, 0x43bb, 0x44cd,\n  0x45e9, 0x46f9, 0x3de3, 0x49cd, 0x49fd, 0x4f15, 0x51e5, 0x2e89,\n  0x55e9, 0x56f8, 0x5a93, 0x5cdf, 0x5dcf, 0x5d9c, 0x6061, 0x6349,\n  0x6358, 0x646c, 0x64bc, 0x65fb, 0x68c5, 0x6d70, 0x7001, 0x706d,\n  0x7397, 0x771c, 0x7a12, 0x30cf, 0x3897, 0x418e,\n  /* 0x14221..0x1427E */\n  0x61d3, 0x6535, 0x6d08, 0x7020, 0x2fc3, 0x3074, 0x3247, 0x3373,\n  0x406f, 0x4349, 0x475f, 0x4e2c, 0x6db3, 0x701f, 0x2fd7, 0x3c5e,\n  0x6cca, 0x45cf, 0x5d9a, 0x3352, 0x6896, 0x3176, 0x43c3, 0x3b58,\n  0x3b6b, 0x3c0a, 0x440d, 0x4751, 0x705c, 0x2ed6, 0x391a, 0x392a,\n  0x4c70, 0x6a51, 0x353e, 0x3815, 0x39a5, 0x40f0, 0x4253, 0x47c1,\n  0x6235, 0x4955, 0x7640, 0x79c4, 0x7a28, 0x2f53, 0x3806, 0x3bfe,\n  0x6010, 0x3cb1, 0x3e2f, 0x3f85, 0x4020, 0x414b, 0x4234, 0x46ff,\n  0x4cf0, 0x4ede, 0x60ce, 0x617f, 0x62d4, 0x688b, 0x6cb8, 0x7000,\n  0x702e, 0x768a, 0x7edb, 0x7bdb, 0x2ee3, 0x33f0, 0x3927, 0x5b2c,\n  0x718d, 0x784c, 0x7df9, 0x4edd, 0x5027, 0x3353, 0x3544, 0x3b85,\n  0x4258, 0x429e, 0x42d3, 0x4ca2, 0x4fef, 0x5422, 0x6a17, 0x7438,\n  0x4fc1, 0x6afe, 0x6338, 0x31e7, 0x66f8, 0x33ea,\n  /* 0x14321..0x1437E */\n  0x33e9, 0x2f46, 0x7054, 0x6fb0, 0x396a, 0x6131, 0x3dfd, 0x5aea,\n  0x6fbf, 0x48da, 0x6c37, 0x52f8, 0x7c48, 0x4a3d, 0x6ab0, 0x2e39,\n  0x3358, 0x3606, 0x3766, 0x42c5, 0x43a2, 0x45e6, 0x4b4e, 0x4de1,\n  0x4e5b, 0x50ad, 0x57ed, 0x5aef, 0x5baa, 0x5dbb, 0x603d, 0x60c6,\n  0x66cb, 0x6a95, 0x735b, 0x36e3, 0x38c7, 0x3f3e, 0x45ad, 0x4696,\n  0x4a80, 0x4bb5, 0x5537, 0x6ac7, 0x3024, 0x57e5, 0x3730, 0x3f1b,\n  0x4065, 0x467a, 0x4c60, 0x55f4, 0x5a1a, 0x5f6e, 0x61f4, 0x6718,\n  0x7045, 0x79b3, 0x5bc9, 0x555c, 0x5af9, 0x5b51, 0x64c4, 0x7010,\n  0x59e9, 0x5a92, 0x6336, 0x3ae1, 0x5740, 0x2e2d, 0x2ef2, 0x3b99,\n  0x3fe0, 0x42bd, 0x463c, 0x47f1, 0x4ce8, 0x666b, 0x6877, 0x6a3b,\n  0x714e, 0x72f3, 0x79d0, 0x4a17, 0x5026, 0x532a, 0x62e7, 0x6457,\n  0x6caf, 0x2e01, 0x3146, 0x31cb, 0x358b, 0x3bf5,\n  /* 0x14421..0x1447E */\n  0x3e16, 0x3e33, 0x3e81, 0x3f14, 0x3f35, 0x3f6b, 0x3fb4, 0x41f2,\n  0x4311, 0x46a2, 0x471d, 0x4f6e, 0x5252, 0x553a, 0x573a, 0x6074,\n  0x6139, 0x6178, 0x6776, 0x6abf, 0x6adc, 0x6d85, 0x6df3, 0x729a,\n  0x7577, 0x7802, 0x7ce5, 0x32c5, 0x4357, 0x56f4, 0x4715, 0x4c88,\n  0x53cd, 0x6cc3, 0x73ae, 0x7673, 0x4d25, 0x389c, 0x490e, 0x49cc,\n  0x6ffd, 0x739a, 0x55db, 0x701a, 0x385a, 0x4802, 0x43b4, 0x49fb,\n  0x2f43, 0x4f2c, 0x47d8, 0x6fbb, 0x6526, 0x5db4, 0x7354, 0x493f,\n  0x4f70, 0x376a, 0x38f7, 0x3b2c, 0x5d2c, 0x522a, 0x340a, 0x71e3,\n  0x7db4, 0x2ead, 0x2f4e, 0x305c, 0x3075, 0x3243, 0x6c9e, 0x3448,\n  0x3824, 0x3b9a, 0x3e1d, 0x3e95, 0x3ead, 0x3ef7, 0x3f1f, 0x408c,\n  0x42b5, 0x433a, 0x43d0, 0x48af, 0x4c40, 0x5887, 0x598e, 0x5a0b,\n  0x5de0, 0x6247, 0x6a02, 0x6ae6, 0x6e44, 0x7013,\n  /* 0x14521..0x1457E */\n  0x70b8, 0x712d, 0x71d8, 0x7f0e, 0x4ce5, 0x4458, 0x44e2, 0x4575,\n  0x4ef4, 0x5684, 0x5b1b, 0x7069, 0x73d1, 0x4eba, 0x34f2, 0x3fb9,\n  0x44a4, 0x6f4d, 0x6fed, 0x7244, 0x3178, 0x386b, 0x3929, 0x3c55,\n  0x3e97, 0x4dfb, 0x5e8f, 0x551c, 0x6cbc, 0x6ee2, 0x785b, 0x50b9,\n  0x2f1d, 0x4bbf, 0x4fb1, 0x5530, 0x76fb, 0x314e, 0x3410, 0x3835,\n  0x3857, 0x39ac, 0x3c60, 0x3f92, 0x4597, 0x475c, 0x4e21, 0x567b,\n  0x63df, 0x6ced, 0x7014, 0x70fd, 0x734d, 0x5825, 0x583a, 0x32aa,\n  0x3ea6, 0x371f, 0x3974, 0x4012, 0x3012, 0x315a, 0x31ac, 0x31cd,\n  0x3200, 0x3510, 0x3854, 0x3858, 0x3957, 0x3b95, 0x3cf6, 0x3d8b,\n  0x40bc, 0x4295, 0x442d, 0x4771, 0x4843, 0x48bc, 0x48df, 0x56d7,\n  0x4dd8, 0x4e6f, 0x4d9b, 0x506f, 0x51c8, 0x3f53, 0x55d8, 0x5977,\n  0x5b49, 0x5b54, 0x5b52, 0x5cd6, 0x5d71, 0x3230,\n  /* 0x14621..0x1467E */\n  0x6463, 0x6569, 0x65e4, 0x6a0e, 0x6b04, 0x6c46, 0x6e0f, 0x7003,\n  0x700f, 0x7419, 0x7676, 0x782d, 0x7a30, 0x75d8, 0x30cd, 0x32d5,\n  0x340c, 0x3802, 0x3c0e, 0x41a7, 0x449e, 0x4d1e, 0x57b3, 0x5ae5,\n  0x60f4, 0x6404, 0x7053, 0x7285, 0x3ce0, 0x7d07, 0x333f, 0x3f97,\n  0x3fb3, 0x4d9c, 0x5279, 0x5763, 0x59bf, 0x5be4, 0x4bd2, 0x52ec,\n  0x6aad, 0x4803, 0x4a61, 0x31f8, 0x5a81, 0x4934, 0x3c4a, 0x7cf6,\n  0x62eb, 0x3bc5, 0x7149, 0x501e, 0x3678, 0x3c6f, 0x40c7, 0x4566,\n  0x4c8c, 0x6c5a, 0x7041, 0x7813, 0x3451, 0x46c7, 0x720d, 0x3948,\n  0x70a3, 0x3185, 0x2e4d, 0x31ea, 0x6599, 0x6b0e, 0x5058, 0x437a,\n  0x734b, 0x4962, 0x79b4, 0x5e04, 0x5577, 0x3357, 0x4960, 0x6edf,\n  0x76e3, 0x4c5d, 0x2e8c, 0x3c3c, 0x3f10, 0x6fe9, 0x3302, 0x6cd1,\n  0x6089, 0x6679, 0x3eff, 0x45e5, 0x2e73, 0x3165,\n  /* 0x14721..0x1477E */\n  0x3982, 0x3c3f, 0x77ee, 0x2efb, 0x398a, 0x3fcd, 0x6a8d, 0x4fe1,\n  0x59b0, 0x5962, 0x3be7, 0x6471, 0x532b, 0x51b1, 0x3e74, 0x3ff5,\n  0x437b, 0x449a, 0x51c3, 0x5c98, 0x2e43, 0x3efc, 0x2e4b, 0x37dc,\n  0x36a2, 0x40a9, 0x4fc3, 0x5d0d, 0x60fd, 0x6133, 0x61bf, 0x6fb2,\n  0x6997, 0x66a4, 0x3df4, 0x428a, 0x44ad, 0x6987, 0x4777, 0x4ce2,\n  0x4d3e, 0x5436, 0x5834, 0x3a46, 0x5f75, 0x62ad, 0x79ac, 0x2ff3,\n  0x3ec3, 0x42dd, 0x4392, 0x4557, 0x476f, 0x56c3, 0x524c, 0x60cc,\n  0x60ba, 0x6f29, 0x714d, 0x300d, 0x37f9, 0x3a92, 0x4885, 0x4973,\n  0x5164, 0x52fd, 0x6cb7, 0x38f2, 0x6ce0, 0x766a, 0x7019, 0x677f,\n  0x59e4, 0x57e7, 0x6429, 0x2f2f, 0x3265, 0x335a, 0x42cd, 0x47cf,\n  0x4cca, 0x567d, 0x5b94, 0x5c95, 0x6236, 0x6584, 0x6feb, 0x46dd,\n  0x4f20, 0x5206, 0x5e1b, 0x63ab, 0x79c1, 0x7ea6,\n  /* 0x14821..0x1487E */\n  0x31fd, 0x5bb1, 0x5872, 0x5bb8, 0x6087, 0x5b48, 0x4ae8, 0x3e61,\n  0x608c, 0x5551, 0x5560, 0x316b, 0x7262, 0x4e8c, 0x567a, 0x7197,\n  0x7aea, 0x2f10, 0x5f70, 0x429c, 0x5b4f, 0x75a5, 0x7ce9, 0x367a,\n  0x3859, 0x66e4, 0x76bc, 0x2f34, 0x3224, 0x334a, 0x33cd, 0x33db,\n  0x3e06, 0x442c, 0x4591, 0x477f, 0x4c3e, 0x4c4e, 0x5248, 0x52af,\n  0x53ed, 0x5554, 0x5e41, 0x622c, 0x65e9, 0x6ca9, 0x5bc4, 0x71c6,\n  0x5169, 0x7812, 0x78ef, 0x433d, 0x4669, 0x556a, 0x56e4, 0x58d0,\n  0x6543, 0x66ee, 0x332a, 0x3351, 0x3426, 0x3983, 0x3e87, 0x3f7c,\n  0x40b2, 0x4249, 0x4279, 0x42ab, 0x4590, 0x4bd4, 0x4ccc, 0x55b2,\n  0x56ae, 0x5891, 0x59d8, 0x5dcb, 0x5f77, 0x60a5, 0x68ab, 0x6ab9,\n  0x6cbb, 0x707f, 0x775e, 0x78db, 0x4a0b, 0x5c38, 0x3099, 0x3c3e,\n  0x3fae, 0x4787, 0x4bd8, 0x5435, 0x5709, 0x5f8e,\n  /* 0x14921..0x1497E */\n  0x7f3b, 0x47ca, 0x5a17, 0x3339, 0x558b, 0x7aed, 0x3f66, 0x619d,\n  0x63f1, 0x6098, 0x3f3c, 0x3fc5, 0x5562, 0x5b46, 0x703c, 0x4867,\n  0x39eb, 0x3a9b, 0x5d10, 0x567e, 0x6b2c, 0x2ff5, 0x3f6a, 0x4a19,\n  0x4c37, 0x4f02, 0x54e2, 0x5968, 0x6868, 0x6a55, 0x6c79, 0x3edf,\n  0x43cf, 0x55c5, 0x59d2, 0x62d7, 0x7328, 0x72f2, 0x649c, 0x66ed,\n  0x7c2d, 0x34c1, 0x3f6c, 0x458c, 0x4d5c, 0x5015, 0x6ca7, 0x6cd3,\n  0x783b, 0x454f, 0x54f6, 0x2e0d, 0x2ed8, 0x37e0, 0x392b, 0x3a66,\n  0x3bcc, 0x31a8, 0x3e03, 0x3e9c, 0x4016, 0x4276, 0x4577, 0x45a7,\n  0x466e, 0x4d6e, 0x5236, 0x5b26, 0x6150, 0x619a, 0x6299, 0x6b5c,\n  0x6ca0, 0x6ce6, 0x6d74, 0x761c, 0x7644, 0x2fae, 0x44ab, 0x4b66,\n  0x621e, 0x6461, 0x656a, 0x70e8, 0x3c01, 0x4953, 0x78a8, 0x647a,\n  0x6557, 0x2f0f, 0x326f, 0x3fa9, 0x3e45, 0x470d,\n  /* 0x14A21..0x14A7E */\n  0x598f, 0x6179, 0x6907, 0x6986, 0x4df5, 0x3f17, 0x4255, 0x4cb8,\n  0x2ecf, 0x5269, 0x7b92, 0x3206, 0x343b, 0x3674, 0x38b3, 0x41a4,\n  0x426e, 0x511a, 0x396e, 0x5c89, 0x5cde, 0x5d1b, 0x76f0, 0x4587,\n  0x605e, 0x2e19, 0x2f75, 0x3175, 0x3840, 0x3e63, 0x3e73, 0x3f0a,\n  0x47c4, 0x2e26, 0x653d, 0x7589, 0x765b, 0x5c73, 0x7801, 0x30fb,\n  0x38c1, 0x5656, 0x58a7, 0x3225, 0x57a5, 0x6511, 0x5b86, 0x304f,\n  0x3909, 0x5247, 0x5bc7, 0x5de8, 0x6fba, 0x6fd4, 0x704d, 0x2fbf,\n  0x32c9, 0x3a29, 0x3f01, 0x77ad, 0x2fdd, 0x6217, 0x72ea, 0x3703,\n  0x4355, 0x4b69, 0x552b, 0x68dc, 0x6f14, 0x5a42, 0x32df, 0x3893,\n  0x4155, 0x420a, 0x46ae, 0x4bcd, 0x5c3f, 0x63e9, 0x3023, 0x2ff8,\n  0x3305, 0x3446, 0x3831, 0x3949, 0x3b9d, 0x3cf0, 0x3cef, 0x3d29,\n  0x3e96, 0x42b1, 0x4367, 0x453e, 0x45b9, 0x470b,\n  /* 0x14B21..0x14B7E */\n  0x4cd5, 0x4ce1, 0x50f9, 0x5832, 0x5e2b, 0x60de, 0x62b3, 0x640c,\n  0x64ec, 0x6702, 0x6912, 0x6a2a, 0x6c4a, 0x70a6, 0x72d2, 0x78fd,\n  0x7cf3, 0x7d6c, 0x2e4f, 0x2ea1, 0x308d, 0x3256, 0x374a, 0x39a8,\n  0x3e3d, 0x3fd8, 0x3fd9, 0x423f, 0x46b4, 0x471b, 0x47d0, 0x48d2,\n  0x3192, 0x5d21, 0x60aa, 0x61a8, 0x6b00, 0x6c8c, 0x6cbf, 0x727e,\n  0x7632, 0x3420, 0x782c, 0x3317, 0x30d5, 0x335c, 0x38a8, 0x44b2,\n  0x4734, 0x5267, 0x5766, 0x5a46, 0x71e6, 0x32c3, 0x4ca1, 0x4b86,\n  0x3800, 0x3e4c, 0x3954, 0x472c, 0x5ffb, 0x31e1, 0x56c6, 0x4469,\n  0x58e8, 0x7b54, 0x7ebb, 0x37cb, 0x39b9, 0x4627, 0x479a, 0x4bce,\n  0x34e9, 0x49d9, 0x3e55, 0x619c, 0x4795, 0x7baa, 0x47fe, 0x7c52,\n  0x485d, 0x2ea6, 0x2fe3, 0x33c8, 0x42b9, 0x472b, 0x4cab, 0x6fc4,\n  0x2fad, 0x5e6d, 0x7ebf, 0x2e07, 0x4162, 0x4e80,\n  /* 0x14C21..0x14C7E */\n  0x4f2b, 0x6513, 0x3473, 0x472a, 0x7b45, 0x3df3, 0x5b95, 0x3cac,\n  0x3bc6, 0x671c, 0x4e4a, 0x64d1, 0x5a14, 0x6108, 0x3999, 0x5c8d,\n  0x4c11, 0x5720, 0x32d9, 0x3922, 0x5121, 0x525f, 0x57db, 0x7727,\n  0x7d61, 0x490b, 0x3a7f, 0x3a18, 0x31a5, 0x340d, 0x347d, 0x460e,\n  0x56df, 0x6ff7, 0x7298, 0x7cf4, 0x39ea, 0x525d, 0x4ec5, 0x314d,\n  0x48c9, 0x5dbf, 0x5dec, 0x7762, 0x7eba, 0x4478, 0x4a21, 0x6302,\n  0x3984, 0x3b5f, 0x4bdb, 0x531b, 0x56f2, 0x5db2, 0x6017, 0x6499,\n  0x3132, 0x4728, 0x7ed9, 0x56ee, 0x4762, 0x32ff, 0x7905, 0x3c24,\n  0x423b, 0x5c7e, 0x6cb0, 0x354f, 0x40b6, 0x5d0b, 0x7580, 0x3301,\n  0x2e5f, 0x31b6, 0x391c, 0x523a, 0x6036, 0x71ce, 0x3f25, 0x57e2,\n  0x3384, 0x3f79, 0x5d04, 0x65ac, 0x6a33, 0x6e8d, 0x7756, 0x47f3,\n  0x65ae, 0x7453, 0x4109, 0x4108, 0x4cb9, 0x5652,\n  /* 0x14D21..0x14D7E */\n  0x6aed, 0x6f38, 0x352f, 0x2f51, 0x312a, 0x32c7, 0x33cb, 0x3ba5,\n  0x3e7d, 0x40a0, 0x4182, 0x43d6, 0x4709, 0x47da, 0x4e67, 0x4d8c,\n  0x5336, 0x5337, 0x5531, 0x5950, 0x68d5, 0x6a98, 0x704a, 0x7091,\n  0x70f5, 0x76c4, 0x678d, 0x3915, 0x2e88, 0x2f59, 0x2e0e, 0x6a89,\n  0x6f3f, 0x7810, 0x30ad, 0x3e7c, 0x3996, 0x3bb9, 0x3eb8, 0x43da,\n  0x43fa, 0x44c1, 0x46dc, 0x494a, 0x49d8, 0x4d0b, 0x4eb6, 0x5194,\n  0x5528, 0x5aaf, 0x5f8a, 0x6000, 0x6449, 0x64c9, 0x6981, 0x6b21,\n  0x6e0a, 0x7065, 0x767d, 0x790a, 0x417e, 0x4291, 0x4b32, 0x4c83,\n  0x4d74, 0x5fcc, 0x5ffc, 0x4dc0, 0x5f85, 0x67ba, 0x68f8, 0x4765,\n  0x63b1, 0x783c, 0x76f7, 0x4d1b, 0x5d61, 0x643d, 0x716a, 0x2e71,\n  0x3375, 0x3d50, 0x4b04, 0x4feb, 0x65cd, 0x662d, 0x69a7, 0x3229,\n  0x340f, 0x3c65, 0x474e, 0x48a8, 0x5406, 0x5483,\n  /* 0x14E21..0x14E7E */\n  0x55e2, 0x68cf, 0x68e1, 0x71cc, 0x76e2, 0x7678, 0x3f8b, 0x5387,\n  0x5acb, 0x644e, 0x43a0, 0x5565, 0x3289, 0x4d41, 0x4e9c, 0x5409,\n  0x5559, 0x586b, 0x5c92, 0x7686, 0x5adc, 0x7f8d, 0x2fb6, 0x416e,\n  0x45c5, 0x665c, 0x2e86, 0x2eae, 0x30da, 0x2e21, 0x31cc, 0x3bee,\n  0x4599, 0x4881, 0x4dbc, 0x531f, 0x5642, 0x57ad, 0x5a1c, 0x5ce7,\n  0x626f, 0x6ad2, 0x707c, 0x71cf, 0x7675, 0x7818, 0x329b, 0x5dd1,\n  0x302b, 0x3398, 0x4797, 0x4dcb, 0x51d0, 0x5433, 0x61e8, 0x6f2a,\n  0x76a3, 0x7c57, 0x7e9f, 0x5460, 0x3841, 0x4d99, 0x5d2f, 0x785e,\n  0x2ee4, 0x2f36, 0x2f8b, 0x31b7, 0x32b1, 0x3dba, 0x401c, 0x53b2,\n  0x593c, 0x62d3, 0x7234, 0x76b7, 0x76f6, 0x770a, 0x7e97, 0x7f62,\n  0x46a6, 0x4b74, 0x3217, 0x32a3, 0x50c8, 0x68c2, 0x3ec9, 0x404b,\n  0x4190, 0x4f23, 0x5149, 0x5c3e, 0x5df4, 0x606f,\n  /* 0x14F21..0x14F7E */\n  0x64ee, 0x7023, 0x732c, 0x3442, 0x7b6f, 0x4ad3, 0x5089, 0x6cc2,\n  0x6def, 0x7732, 0x32b4, 0x3a41, 0x3eca, 0x3f04, 0x4717, 0x497c,\n  0x4994, 0x4d6a, 0x4f0f, 0x5262, 0x52fc, 0x5bed, 0x6001, 0x607e,\n  0x674b, 0x70ce, 0x316d, 0x7e93, 0x5984, 0x608b, 0x7332, 0x6ad6,\n  0x302d, 0x348c, 0x6a71, 0x4b6a, 0x6cc4, 0x6107, 0x40d1, 0x47a0,\n  0x7df2, 0x2e99, 0x2e98, 0x7c10, 0x6a6b, 0x65c1, 0x6568, 0x4900,\n  0x4e7e, 0x5897, 0x6155, 0x8e9f, 0x3b41, 0x3b56, 0x3b7d, 0x3b93,\n  0x3bd8, 0x3bec, 0x3c12, 0x3c1e, 0x3c23, 0x3c2b, 0x178d, 0x3c62,\n  0x813b, 0x813c, 0x96b4, 0x3c7a, 0x3c8f, 0x3c9f, 0x3ca3, 0x3caa,\n  0x3cba, 0x3ccb, 0x3cd0, 0x3cd2, 0x3cf4, 0x9c34, 0x17e2, 0x3d0d,\n  0x3d27, 0x8111, 0x3d46, 0x3d47, 0x3d53, 0x3d4a, 0x3d6d, 0x3d81,\n  0x3da0, 0x3da4, 0x3da7, 0x3db8, 0x3dcb, 0x341e,\n  /* 0x15021..0x1507E */\n  0x3f0c, 0x2e10, 0x2e15, 0x2e2a, 0x2e31, 0x2e36, 0x2e3c, 0x2e3f,\n  0x2e42, 0x2e56, 0x2e58, 0x2e82, 0x2e85, 0x6c6b, 0x2e8a, 0x6212,\n  0x3f0d, 0x2e8e, 0x2e9e, 0x2e9f, 0x2ea0, 0x2ea2, 0x2eb0, 0x2eb3,\n  0x2eb6, 0x2ece, 0x2ecd, 0x2ec4, 0x2ec6, 0x2ec2, 0x2ed7, 0x2ede,\n  0x2eed, 0x2edf, 0x2ef7, 0x2f09, 0x2f5a, 0x2f30, 0x2f5b, 0x2f5d,\n  0x2f57, 0x2f47, 0x2f76, 0x2f88, 0x2f8f, 0x2f98, 0x2f7b, 0x2f69,\n  0x2f70, 0x2f91, 0x2f6f, 0x2f86, 0x2f96, 0x3118, 0x2fd4, 0x2fdf,\n  0x2fce, 0x2fd8, 0x2fdb, 0x2fd1, 0x2fda, 0x2fd0, 0x2fe4, 0x2fe5,\n  0x301a, 0x3028, 0x3014, 0x302a, 0x3025, 0x3005, 0x2f1c, 0x2ff6,\n  0x3021, 0x3029, 0x302c, 0x2ffe, 0x2fef, 0x3011, 0x3006, 0x3043,\n  0x3047, 0x4703, 0x3055, 0x3050, 0x3048, 0x305a, 0x3056, 0x306c,\n  0x3078, 0x3080, 0x309a, 0x3085, 0x30b4, 0x30b2,\n  /* 0x15121..0x1517E */\n  0x30c9, 0x30ca, 0x30b3, 0x30c2, 0x30d6, 0x30de, 0x30e5, 0x30ed,\n  0x30e3, 0x30ee, 0x30f9, 0x30f5, 0x3109, 0x3101, 0x3102, 0x3116,\n  0x3115, 0x3114, 0x311a, 0x3121, 0x313a, 0x3137, 0x313c, 0x313b,\n  0x313f, 0x3140, 0x3152, 0x314c, 0x3154, 0x3162, 0x5af8, 0x3169,\n  0x316a, 0x316e, 0x3180, 0x3182, 0x36d8, 0x318c, 0x3189, 0x318f,\n  0x3191, 0x3193, 0x3195, 0x3196, 0x31a4, 0x31a6, 0x31a2, 0x31a9,\n  0x31aa, 0x31ab, 0x31b3, 0x31b1, 0x31b2, 0x31b0, 0x31b5, 0x31bd,\n  0x31c5, 0x31c9, 0x31db, 0x31e0, 0x6655, 0x31e9, 0x31ed, 0x31f0,\n  0x31f5, 0x31fe, 0x3204, 0x320b, 0x3214, 0x320e, 0x3227, 0x322a,\n  0x322e, 0x3233, 0x3239, 0x324f, 0x3244, 0x324b, 0x324c, 0x325e,\n  0x3254, 0x326a, 0x3274, 0x3269, 0x3273, 0x327f, 0x327d, 0x328d,\n  0x3294, 0x3292, 0x3271, 0x3288, 0x3291, 0x6fa8,\n  /* 0x15221..0x1527E */\n  0x6fa7, 0x32ac, 0x32ad, 0x32bc, 0x32b5, 0x32c1, 0x32cd, 0x32d7,\n  0x32de, 0x32e3, 0x32e6, 0x78ed, 0x32e0, 0x32f3, 0x32f5, 0x32f8,\n  0x32f9, 0x3306, 0x3308, 0x5538, 0x330d, 0x3310, 0x330f, 0x3315,\n  0x331a, 0x3323, 0x332f, 0x3331, 0x3333, 0x3338, 0x3340, 0x3346,\n  0x3345, 0x2e17, 0x3349, 0x334d, 0x31d6, 0x335e, 0x3369, 0x336e,\n  0x3918, 0x337b, 0x3377, 0x3382, 0x3396, 0x33a0, 0x33a6, 0x33a5,\n  0x33ae, 0x33b0, 0x33b6, 0x33c3, 0x5c12, 0x76d9, 0x33df, 0x46fc,\n  0x51ee, 0x33ee, 0x33e8, 0x33ed, 0x33fa, 0x3401, 0x343d, 0x3440,\n  0x342c, 0x342d, 0x343c, 0x342e, 0x3436, 0x3429, 0x341d, 0x344e,\n  0x348f, 0x3475, 0x348e, 0x345f, 0x3471, 0x3477, 0x3470, 0x3492,\n  0x347b, 0x3480, 0x3476, 0x3484, 0x3490, 0x3486, 0x34c7, 0x34a2,\n  0x34b8, 0x34a5, 0x34ac, 0x34c4, 0x34c8, 0x34a8,\n  /* 0x15321..0x1537E */\n  0x34ab, 0x34c2, 0x34a4, 0x34be, 0x34bc, 0x34d8, 0x34e5, 0x34e6,\n  0x350f, 0x3514, 0x34fd, 0x34ee, 0x34ed, 0x34fa, 0x34e2, 0x3539,\n  0x3540, 0x3563, 0x354c, 0x352e, 0x355c, 0x3545, 0x3556, 0x3557,\n  0x3538, 0x3533, 0x355d, 0x3599, 0x3580, 0x34af, 0x358a, 0x359f,\n  0x357b, 0x357e, 0x3598, 0x359e, 0x35ae, 0x357c, 0x3583, 0x35a9,\n  0x3587, 0x35a8, 0x35da, 0x35c5, 0x35df, 0x35c4, 0x35dc, 0x35e4,\n  0x35d4, 0x3614, 0x35f7, 0x3616, 0x35fe, 0x35fd, 0x361b, 0x35f9,\n  0x364e, 0x3650, 0x51df, 0x3634, 0x3636, 0x3632, 0x3638, 0x366b,\n  0x3664, 0x362f, 0x366c, 0x366a, 0x3686, 0x3680, 0x368a, 0x36a0,\n  0x3694, 0x368f, 0x36a5, 0x36ae, 0x36b6, 0x36b4, 0x36c2, 0x36bc,\n  0x36c1, 0x36c3, 0x36c0, 0x36c8, 0x36ce, 0x36d1, 0x36d3, 0x36d7,\n  0x36ee, 0x36f9, 0x3700, 0x36ff, 0x3704, 0x3709,\n  /* 0x15421..0x1547E */\n  0x3708, 0x370b, 0x370d, 0x3713, 0x3718, 0x3716, 0x35c7, 0x371c,\n  0x3726, 0x3737, 0x3738, 0x374e, 0x373b, 0x3740, 0x374f, 0x3769,\n  0x37c0, 0x3788, 0x3761, 0x377f, 0x3789, 0x3793, 0x37a0, 0x37b3,\n  0x37a4, 0x37aa, 0x37b0, 0x37c3, 0x37c6, 0x37d4, 0x37d2, 0x37d3,\n  0x380a, 0x37d6, 0x37e3, 0x380b, 0x3819, 0x381d, 0x3872, 0x3821,\n  0x3862, 0x384b, 0x3870, 0x4bc0, 0x3852, 0x383d, 0x3879, 0x3885,\n  0x38b9, 0x389f, 0x38ab, 0x38ba, 0x38de, 0x38bb, 0x38b8, 0x38ae,\n  0x38c5, 0x38d3, 0x38d1, 0x38d7, 0x38d9, 0x38d8, 0x38e5, 0x38dc,\n  0x38e4, 0x38df, 0x38ef, 0x38fa, 0x38f9, 0x38fb, 0x38fc, 0x38fd,\n  0x3902, 0x390a, 0x3910, 0x391b, 0x48a6, 0x3925, 0x392c, 0x392d,\n  0x3932, 0x3938, 0x393e, 0x5ad2, 0x3955, 0x3950, 0x394e, 0x395a,\n  0x3958, 0x3962, 0x3960, 0x3967, 0x396c, 0x3969,\n  /* 0x15521..0x1557E */\n  0x3978, 0x3981, 0x399d, 0x2f5e, 0x2fab, 0x39a3, 0x39b2, 0x39c6,\n  0x39e8, 0x39dc, 0x398d, 0x39d9, 0x39da, 0x3a25, 0x3a1f, 0x3a11,\n  0x3a1c, 0x3a09, 0x3a1a, 0x3a40, 0x3a6c, 0x3a49, 0x3a35, 0x3a36,\n  0x3a62, 0x3a6a, 0x3a9a, 0x3abc, 0x3abe, 0x3acb, 0x3ac2, 0x3abd,\n  0x3ae3, 0x3ad7, 0x3ae6, 0x3ae9, 0x3ad6, 0x3afa, 0x3afb, 0x3b0c,\n  0x3b0b, 0x3b16, 0x3b32, 0x3ad0, 0x3b2a, 0x3b36, 0x3b3e, 0x3b43,\n  0x3b45, 0x3b40, 0x3b51, 0x3b55, 0x3b5a, 0x3b5b, 0x3b65, 0x3b69,\n  0x3b70, 0x3b73, 0x3b75, 0x3b78, 0x4588, 0x3b7a, 0x3b80, 0x3b83,\n  0x3ba6, 0x3bb8, 0x3bc3, 0x3bc7, 0x3bc9, 0x3bd4, 0x3bd0, 0x3be4,\n  0x3be6, 0x3be2, 0x3bde, 0x3be5, 0x3beb, 0x3bf0, 0x3bf6, 0x3bf3,\n  0x3c05, 0x3c07, 0x3c08, 0x3c0d, 0x3c13, 0x3c20, 0x3c22, 0x3c28,\n  0x3c38, 0x3c39, 0x3c41, 0x3c46, 0x3c4e, 0x3c53,\n  /* 0x15621..0x1567E */\n  0x3c50, 0x3c4f, 0x3b71, 0x3c6c, 0x3c6e, 0x2e62, 0x3c76, 0x3c79,\n  0x3c8c, 0x3c91, 0x3c94, 0x399b, 0x3cab, 0x3cbb, 0x3cb6, 0x3cbc,\n  0x3cb7, 0x3cc5, 0x3cbe, 0x3cc7, 0x3cd9, 0x3ce9, 0x3cfd, 0x3cfa,\n  0x3ced, 0x3d8c, 0x3cea, 0x3d0b, 0x3d15, 0x3d17, 0x3d5c, 0x3d1f,\n  0x3d1b, 0x3d11, 0x3d14, 0x3d22, 0x3d1a, 0x3d19, 0x3d18, 0x3d4c,\n  0x3d52, 0x3d4e, 0x3d4b, 0x3d6c, 0x3d73, 0x3d76, 0x3d87, 0x3d84,\n  0x3d82, 0x3da2, 0x3d9d, 0x3dac, 0x3dae, 0x3dbd, 0x3d90, 0x3db7,\n  0x3dbc, 0x3dc9, 0x3dcd, 0x3dd3, 0x3dd2, 0x3dd6, 0x3ddb, 0x3deb,\n  0x3df2, 0x3df5, 0x3e0b, 0x3e1a, 0x3e19, 0x3e11, 0x3e1b, 0x3e36,\n  0x3e37, 0x3e44, 0x3e43, 0x3e40, 0x3e4e, 0x3e57, 0x3e54, 0x3e5f,\n  0x3e62, 0x3e64, 0x3e47, 0x3e75, 0x3e76, 0x3e7a, 0x7ebc, 0x3e7f,\n  0x3ea0, 0x3ec1, 0x3ec2, 0x3ec8, 0x3ed0, 0x3ecf,\n  /* 0x15721..0x1577E */\n  0x3ed6, 0x3ee3, 0x3edd, 0x3eda, 0x3edb, 0x3ee2, 0x3ee1, 0x3ee8,\n  0x3ee9, 0x3eec, 0x3ef1, 0x3ef3, 0x3ef0, 0x3ef4, 0x3ef8, 0x3efe,\n  0x3f03, 0x3f09, 0x3f5d, 0x3f5c, 0x3f0b, 0x3f11, 0x3f16, 0x3f29,\n  0x3f2d, 0x3f38, 0x3f41, 0x3f48, 0x3f4c, 0x3f4e, 0x3f2f, 0x3f51,\n  0x3f56, 0x3f57, 0x3f59, 0x3f61, 0x3f6d, 0x3f73, 0x3f77, 0x3f83,\n  0x3f82, 0x3f7f, 0x3f8a, 0x3f88, 0x3f91, 0x3f87, 0x3f9e, 0x3f99,\n  0x3f98, 0x3fa0, 0x3fa8, 0x3fad, 0x3fbc, 0x3fd6, 0x3ffb, 0x3fe4,\n  0x3ff8, 0x3ff1, 0x3fdd, 0x40b3, 0x3fff, 0x4021, 0x4060, 0x4019,\n  0x4010, 0x4029, 0x400e, 0x4031, 0x401b, 0x4015, 0x402b, 0x4026,\n  0x400f, 0x403a, 0x405a, 0x4041, 0x406a, 0x4077, 0x405f, 0x404a,\n  0x4046, 0x404d, 0x4063, 0x4043, 0x4064, 0x4042, 0x406c, 0x406b,\n  0x4059, 0x4081, 0x408d, 0x40e7, 0x4083, 0x409a,\n  /* 0x15821..0x1587E */\n  0x4084, 0x409b, 0x4096, 0x4097, 0x4092, 0x40a7, 0x408b, 0x40e1,\n  0x40b8, 0x40e0, 0x40d3, 0x40b4, 0x3ff0, 0x40bd, 0x40c6, 0x40b5,\n  0x40d8, 0x414d, 0x4115, 0x4106, 0x40f6, 0x40f7, 0x4100, 0x40f4,\n  0x40fa, 0x4103, 0x4121, 0x40fb, 0x40f1, 0x410d, 0x410e, 0x4147,\n  0x413e, 0x4128, 0x4127, 0x414a, 0x413f, 0x413c, 0x412c, 0x4134,\n  0x413d, 0x4142, 0x4144, 0x4173, 0x4177, 0x4158, 0x4159, 0x415a,\n  0x416b, 0x4174, 0x416f, 0x4165, 0x4171, 0x415f, 0x415d, 0x4153,\n  0x4175, 0x4199, 0x4196, 0x4187, 0x41ac, 0x4194, 0x419a, 0x418a,\n  0x4191, 0x41ab, 0x41ae, 0x41cc, 0x41ca, 0x41c9, 0x41f7, 0x41c8,\n  0x41c3, 0x41c6, 0x41ba, 0x41cb, 0x5f79, 0x41cd, 0x41e6, 0x41e3,\n  0x41f6, 0x41fa, 0x41f4, 0x41ff, 0x41fd, 0x41fc, 0x41fe, 0x4200,\n  0x4208, 0x4209, 0x420d, 0x420c, 0x4214, 0x421b,\n  /* 0x15921..0x1597E */\n  0x421e, 0x4221, 0x422a, 0x422e, 0x4230, 0x4232, 0x4233, 0x4241,\n  0x424e, 0x425e, 0x4263, 0x425b, 0x4260, 0x4268, 0x427c, 0x4282,\n  0x4289, 0x427e, 0x4292, 0x4293, 0x4296, 0x42d4, 0x4283, 0x4294,\n  0x42d7, 0x42d1, 0x42bb, 0x42cf, 0x42ff, 0x42c6, 0x44d4, 0x42c8,\n  0x42dc, 0x42cc, 0x42ca, 0x42c2, 0x42c7, 0x429b, 0x42c9, 0x430c,\n  0x42ee, 0x42f1, 0x4327, 0x4302, 0x4308, 0x42ef, 0x42f5, 0x4350,\n  0x433e, 0x434d, 0x441c, 0x434f, 0x4396, 0x438e, 0x4380, 0x43ab,\n  0x4376, 0x43a3, 0x438f, 0x4389, 0x439f, 0x43b5, 0x436b, 0x4369,\n  0x43be, 0x43e9, 0x43c0, 0x43c6, 0x43e3, 0x43c9, 0x43d2, 0x43f6,\n  0x43c4, 0x4416, 0x4434, 0x4406, 0x4413, 0x4426, 0x4436, 0x451d,\n  0x4417, 0x4428, 0x440f, 0x4467, 0x446f, 0x4476, 0x444e, 0x452a,\n  0x4495, 0x4493, 0x44a5, 0x44a9, 0x4488, 0x44bc,\n  /* 0x15A21..0x15A7E */\n  0x44da, 0x44d2, 0x44c5, 0x44c7, 0x44bb, 0x44d8, 0x44c2, 0x44f1,\n  0x44e7, 0x6209, 0x44e0, 0x44e1, 0x42ac, 0x44e3, 0x44ef, 0x452c,\n  0x44f6, 0x44f4, 0x44f2, 0x44fa, 0x4500, 0x44fd, 0x4518, 0x451c,\n  0x4505, 0x4524, 0x4523, 0x452b, 0x4534, 0x4535, 0x4537, 0x4536,\n  0x4538, 0x554b, 0x4548, 0x4556, 0x4555, 0x454d, 0x4558, 0x455e,\n  0x455d, 0x4572, 0x4578, 0x4582, 0x4583, 0x6b8a, 0x459b, 0x459f,\n  0x45ab, 0x45b7, 0x45c3, 0x45c6, 0x45c1, 0x45c4, 0x45cc, 0x45d2,\n  0x45db, 0x45d9, 0x45e0, 0x45e1, 0x45f1, 0x4772, 0x460a, 0x4603,\n  0x45fb, 0x4773, 0x4635, 0x4636, 0x4634, 0x461c, 0x464f, 0x4644,\n  0x4649, 0x4641, 0x465e, 0x465d, 0x4664, 0x4667, 0x4668, 0x465f,\n  0x4662, 0x4670, 0x4683, 0x4688, 0x468e, 0x4689, 0x4684, 0x4698,\n  0x469d, 0x46c1, 0x46b9, 0x46c9, 0x46be, 0x46bc,\n  /* 0x15B21..0x15B7E */\n  0x46c4, 0x46b8, 0x46d6, 0x46da, 0x46e0, 0x463f, 0x46e6, 0x46e9,\n  0x46f0, 0x46f5, 0x46f7, 0x470f, 0x4716, 0x471e, 0x4726, 0x4727,\n  0x7738, 0x472e, 0x473f, 0x4736, 0x4741, 0x4738, 0x4737, 0x4746,\n  0x475e, 0x4760, 0x4759, 0x4763, 0x4764, 0x4789, 0x4770, 0x47a9,\n  0x477c, 0x476a, 0x478c, 0x478b, 0x47a6, 0x47a1, 0x4785, 0x47b7,\n  0x47ef, 0x47b4, 0x47ec, 0x47b3, 0x47e9, 0x47b8, 0x47e4, 0x47de,\n  0x47dd, 0x47e2, 0x47ee, 0x47b9, 0x47ce, 0x47c6, 0x47e7, 0x4a9c,\n  0x481e, 0x4846, 0x4829, 0x4840, 0x484d, 0x4832, 0x484e, 0x48b3,\n  0x482b, 0x4859, 0x4863, 0x4877, 0x487f, 0x489f, 0x488f, 0x48ad,\n  0x4894, 0x489d, 0x489b, 0x4883, 0x4aae, 0x48b9, 0x4874, 0x48b5,\n  0x48a0, 0x48ba, 0x490f, 0x488d, 0x487e, 0x4901, 0x48ca, 0x4908,\n  0x48d8, 0x4922, 0x4926, 0x48e1, 0x490c, 0x48cd,\n  /* 0x15C21..0x15C7E */\n  0x48d4, 0x48e7, 0x48d5, 0x4936, 0x4912, 0x4904, 0x48d7, 0x48e3,\n  0x4925, 0x48f9, 0x48e0, 0x48ef, 0x4928, 0x492a, 0x491a, 0x4923,\n  0x4921, 0x48c6, 0x4979, 0x4977, 0x495c, 0x4978, 0x496b, 0x4954,\n  0x497e, 0x496e, 0x4939, 0x4974, 0x493d, 0x4959, 0x4930, 0x4961,\n  0x495e, 0x495d, 0x4981, 0x496a, 0x49b2, 0x49ae, 0x49d0, 0x49bf,\n  0x49c1, 0x49d3, 0x49be, 0x49ce, 0x3be8, 0x49ca, 0x49dd, 0x49bb,\n  0x49c3, 0x49a7, 0x4a2e, 0x4991, 0x49a0, 0x499c, 0x4995, 0x49b4,\n  0x49de, 0x49e8, 0x4a02, 0x4a1b, 0x49ff, 0x4b0a, 0x49f9, 0x49f2,\n  0x49e7, 0x4a05, 0x49b1, 0x4a1e, 0x49ed, 0x4a14, 0x49eb, 0x4a0a,\n  0x4a12, 0x4ac1, 0x4a23, 0x4a13, 0x4a44, 0x4a0c, 0x4a72, 0x4a36,\n  0x4a78, 0x4a47, 0x4a62, 0x4a59, 0x4a66, 0x4a48, 0x4a38, 0x4a22,\n  0x4a90, 0x4a8d, 0x4aa0, 0x4a84, 0x4aa2, 0x4aa3,\n  /* 0x15D21..0x15D7E */\n  0x4a97, 0x6617, 0x4abb, 0x4ac3, 0x4ac2, 0x4ab8, 0x4ab3, 0x4aac,\n  0x4ade, 0x4ad1, 0x4adf, 0x4aaa, 0x4ada, 0x4aea, 0x4afb, 0x4b05,\n  0x6616, 0x4afa, 0x4b12, 0x4b16, 0x7b31, 0x4b1f, 0x4b38, 0x4b37,\n  0x56dc, 0x4b39, 0x78ee, 0x4b47, 0x4b43, 0x4b49, 0x4b50, 0x4b59,\n  0x4b54, 0x4b5b, 0x4b5f, 0x4b61, 0x4b78, 0x4b79, 0x4b7f, 0x4b80,\n  0x4b84, 0x4b83, 0x4b8d, 0x4b98, 0x4b95, 0x4b9e, 0x4ba4, 0x4baa,\n  0x4bab, 0x4baf, 0x4bb2, 0x4bb1, 0x4bb3, 0x4bb7, 0x4bbc, 0x4bc6,\n  0x4bcb, 0x4bd3, 0x4bdf, 0x4bec, 0x4beb, 0x4bf3, 0x4bef, 0x7ebe,\n  0x4c08, 0x4c13, 0x4c14, 0x4c1b, 0x4c24, 0x4c23, 0x4c5e, 0x4c55,\n  0x4c62, 0x4c6a, 0x4c82, 0x4c8d, 0x4c9a, 0x4c81, 0x4c9b, 0x4c7e,\n  0x4c68, 0x4c73, 0x4c92, 0x4c90, 0x4cc4, 0x4cf1, 0x4cd3, 0x4cbd,\n  0x4cd7, 0x4cc5, 0x4cdd, 0x4cae, 0x4cb1, 0x4cbe,\n  /* 0x15E21..0x15E7E */\n  0x4cba, 0x4cdb, 0x4cef, 0x4cd9, 0x4cea, 0x4d1f, 0x684d, 0x4d36,\n  0x4d2b, 0x4d3d, 0x4d38, 0x4d19, 0x4d35, 0x4d33, 0x4d12, 0x4d0c,\n  0x4d63, 0x4d93, 0x4d64, 0x4d5a, 0x4d79, 0x4d59, 0x4d8e, 0x4d95,\n  0x4fe4, 0x4d85, 0x4df9, 0x4e15, 0x4e0a, 0x4db5, 0x4dc7, 0x4de6,\n  0x4db8, 0x4dc6, 0x4dec, 0x4dde, 0x4dcc, 0x4de8, 0x4dd2, 0x4dc5,\n  0x4dfa, 0x4dd9, 0x4de4, 0x4dd5, 0x4dea, 0x4dee, 0x4e2d, 0x4e6e,\n  0x4e2e, 0x4e19, 0x4e72, 0x4e5f, 0x4e3e, 0x4e23, 0x4e6b, 0x4e2b,\n  0x4e76, 0x4e4d, 0x4e1f, 0x4e43, 0x4e3a, 0x4e4e, 0x4e24, 0x4eff,\n  0x4e1d, 0x4e38, 0x4e82, 0x4eaa, 0x4e98, 0x4ec9, 0x4eb7, 0x4ed3,\n  0x4ebd, 0x4eaf, 0x4ec4, 0x4eb2, 0x4ed4, 0x4ed5, 0x4e8f, 0x4ea5,\n  0x4ec2, 0x4e9f, 0x4f41, 0x4f11, 0x504c, 0x4eec, 0x4ef8, 0x4efe,\n  0x4f3f, 0x4ef2, 0x4f31, 0x4eef, 0x4f32, 0x4ecc,\n  /* 0x15F21..0x15F7E */\n  0x4f3e, 0x4f13, 0x4ef7, 0x4f86, 0x4f7a, 0x4f78, 0x4f81, 0x4f80,\n  0x4f6f, 0x4f5b, 0x4ff3, 0x4f6d, 0x4f82, 0x4f7c, 0x4f58, 0x4f8e,\n  0x4f91, 0x4fc2, 0x4f66, 0x4fb3, 0x4fa3, 0x4fa1, 0x4fa4, 0x4fb9,\n  0x4fc6, 0x4faa, 0x4fdf, 0x4fd5, 0x4fec, 0x4fd4, 0x4fd8, 0x4ff1,\n  0x4fee, 0x4fdb, 0x5009, 0x500b, 0x4ffa, 0x5011, 0x5001, 0x500f,\n  0x4ffe, 0x501b, 0x501a, 0x4f74, 0x501d, 0x5018, 0x501f, 0x5030,\n  0x503e, 0x5032, 0x5051, 0x5063, 0x5099, 0x5092, 0x50af, 0x50f1,\n  0x50ac, 0x50b8, 0x50b3, 0x50ae, 0x50df, 0x50cb, 0x50dd, 0x50d9,\n  0x5109, 0x50fd, 0x511c, 0x5119, 0x5165, 0x5155, 0x5188, 0x5166,\n  0x5162, 0x514c, 0x5156, 0x516c, 0x518f, 0x51fb, 0x5184, 0x5195,\n  0x51a8, 0x51ac, 0x51d7, 0x51b9, 0x51be, 0x51d2, 0x51c9, 0x51d4,\n  0x51ce, 0x51e0, 0x51ec, 0x51e7, 0x51f5, 0x51fc,\n  /* 0x16021..0x1607E */\n  0x51f9, 0x51ff, 0x520d, 0x5210, 0x521b, 0x5228, 0x522d, 0x522c,\n  0x5230, 0x5232, 0x523b, 0x523c, 0x523f, 0x5240, 0x5246, 0x524b,\n  0x5258, 0x5274, 0x527e, 0x5282, 0x5281, 0x5287, 0x5292, 0x5296,\n  0x52a2, 0x52a7, 0x52b9, 0x52b2, 0x52c3, 0x52c6, 0x52c4, 0x52ce,\n  0x52d2, 0x52e2, 0x52e0, 0x52e1, 0x52f9, 0x52f7, 0x300f, 0x5317,\n  0x530a, 0x531c, 0x5316, 0x531d, 0x5334, 0x532f, 0x5329, 0x5325,\n  0x533e, 0x534e, 0x534f, 0x7ed8, 0x5357, 0x536a, 0x5368, 0x5370,\n  0x5378, 0x5375, 0x537b, 0x537a, 0x53c8, 0x53b3, 0x53ce, 0x53bb,\n  0x53c0, 0x53e5, 0x53ee, 0x53de, 0x54a2, 0x5405, 0x546f, 0x5425,\n  0x53f8, 0x5432, 0x543a, 0x5455, 0x543f, 0x545f, 0x5459, 0x5441,\n  0x545c, 0x5469, 0x5470, 0x5463, 0x546a, 0x5476, 0x547e, 0x548b,\n  0x549e, 0x54a7, 0x54ca, 0x54cf, 0x54d4, 0x53f1,\n  /* 0x16121..0x1617E */\n  0x54e0, 0x54e3, 0x54e7, 0x54e9, 0x54ee, 0x54f2, 0x54f0, 0x54f1,\n  0x54f8, 0x54f7, 0x5504, 0x5503, 0x5505, 0x550c, 0x550e, 0x550d,\n  0x5515, 0x5513, 0x551e, 0x5526, 0x552c, 0x553c, 0x5544, 0x554d,\n  0x554a, 0x5549, 0x555b, 0x5546, 0x555a, 0x5569, 0x5564, 0x5567,\n  0x556b, 0x556d, 0x5578, 0x5576, 0x5586, 0x5587, 0x5574, 0x558a,\n  0x5589, 0x5582, 0x5594, 0x559a, 0x559d, 0x55a5, 0x55a3, 0x55c2,\n  0x55b3, 0x55c3, 0x55b5, 0x55bd, 0x55b8, 0x55bc, 0x55b1, 0x55cd,\n  0x55ca, 0x55d2, 0x55d9, 0x55e3, 0x55de, 0x55fe, 0x55ff, 0x55fc,\n  0x5601, 0x55f0, 0x55fa, 0x55f2, 0x55f3, 0x560b, 0x560d, 0x5609,\n  0x561f, 0x5627, 0x5620, 0x5621, 0x5622, 0x5624, 0x5634, 0x5630,\n  0x563b, 0x5647, 0x5648, 0x5646, 0x565c, 0x5658, 0x5661, 0x5662,\n  0x5668, 0x5669, 0x566a, 0x5667, 0x566c, 0x5670,\n  /* 0x16221..0x1627E */\n  0x5672, 0x5676, 0x5678, 0x567c, 0x5680, 0x5683, 0x5688, 0x568b,\n  0x568e, 0x5696, 0x5693, 0x5699, 0x569a, 0x56b0, 0x56b4, 0x56b8,\n  0x56b9, 0x56ba, 0x56c2, 0x56cd, 0x56d6, 0x56d2, 0x56de, 0x56e1,\n  0x56e5, 0x56e7, 0x56ea, 0x662f, 0x56fb, 0x5708, 0x5707, 0x5704,\n  0x5729, 0x5724, 0x571e, 0x5725, 0x5726, 0x571b, 0x5737, 0x5738,\n  0x5747, 0x575a, 0x5768, 0x576b, 0x575b, 0x5765, 0x577f, 0x577e,\n  0x5779, 0x578e, 0x578b, 0x5791, 0x57a0, 0x579e, 0x57b0, 0x57b6,\n  0x57b9, 0x57bf, 0x57bc, 0x57bd, 0x57bb, 0x57c7, 0x57cd, 0x57d7,\n  0x57da, 0x57dc, 0x57e3, 0x57ee, 0x57fc, 0x580c, 0x5812, 0x5926,\n  0x5820, 0x592a, 0x5845, 0x588e, 0x5874, 0x5886, 0x587c, 0x589a,\n  0x588c, 0x58a3, 0x58b5, 0x58aa, 0x58af, 0x58d1, 0x58c6, 0x58cb,\n  0x58d4, 0x58be, 0x58bc, 0x58c5, 0x58ca, 0x58ec,\n  /* 0x16321..0x1637E */\n  0x58e7, 0x58da, 0x58fd, 0x58f4, 0x5907, 0x5912, 0x5911, 0x5919,\n  0x592c, 0x592b, 0x5940, 0x5960, 0x5957, 0x595f, 0x595a, 0x5955,\n  0x5953, 0x597a, 0x597f, 0x598a, 0x599d, 0x59a7, 0x7f4b, 0x59aa,\n  0x59ae, 0x59b3, 0x59b9, 0x59ba, 0x59c9, 0x59d5, 0x59e7, 0x59ec,\n  0x59e1, 0x59e3, 0x5a08, 0x5a0d, 0x5a18, 0x5a19, 0x5a20, 0x5a1f,\n  0x5980, 0x5a31, 0x5a3b, 0x5a3e, 0x5a37, 0x5a43, 0x5a57, 0x5a49,\n  0x5a61, 0x5a62, 0x5a69, 0x7f9d, 0x5a70, 0x5a79, 0x5a7d, 0x5a88,\n  0x5a97, 0x5a95, 0x5a98, 0x5a96, 0x5aa9, 0x5ac8, 0x5ab0, 0x5ab6,\n  0x5ac5, 0x5ac4, 0x5abf, 0x7083, 0x5ac7, 0x5aca, 0x5acd, 0x5acf,\n  0x5ad5, 0x5ad3, 0x5ad9, 0x5ada, 0x5add, 0x5ae1, 0x5ae2, 0x5ae6,\n  0x5aed, 0x5af0, 0x5b02, 0x5b0f, 0x5b0a, 0x5b06, 0x5b33, 0x5b18,\n  0x5b19, 0x5b1e, 0x5b35, 0x5b28, 0x5b36, 0x5b50,\n  /* 0x16421..0x1647E */\n  0x5b7a, 0x5b04, 0x5b4d, 0x5b0b, 0x5b4c, 0x5b45, 0x5b75, 0x5b65,\n  0x5b74, 0x5b67, 0x5b70, 0x5b71, 0x5b6c, 0x5b6e, 0x5b9d, 0x5b98,\n  0x5b9f, 0x5b8d, 0x5b9c, 0x5b9a, 0x5b8b, 0x5b92, 0x5b8f, 0x5b5d,\n  0x5b99, 0x5bcb, 0x5bc1, 0x5bcc, 0x5bcf, 0x5bb4, 0x5bc6, 0x5bdd,\n  0x5be9, 0x5c11, 0x5c14, 0x5be6, 0x5be5, 0x5c60, 0x5c00, 0x5c07,\n  0x5c13, 0x5bf3, 0x5bf7, 0x5c17, 0x5c0d, 0x5bf6, 0x5c23, 0x5c27,\n  0x5c2a, 0x5c1f, 0x5c37, 0x5c2b, 0x5c3d, 0x5c4c, 0x5c43, 0x5c54,\n  0x5c4f, 0x5c40, 0x5c50, 0x5c58, 0x5c5f, 0x5c64, 0x5c56, 0x5c65,\n  0x5c6c, 0x5c75, 0x5c83, 0x5c90, 0x5ca4, 0x5cad, 0x5ca2, 0x5cab,\n  0x5ca1, 0x5ca8, 0x5cb3, 0x5cb2, 0x5cb1, 0x5cae, 0x5cb9, 0x5cbd,\n  0x5cc0, 0x5cc5, 0x5cc2, 0x5cd8, 0x5cd2, 0x5cdc, 0x5ce2, 0x7b3b,\n  0x5cef, 0x5cf2, 0x5cf4, 0x5cf6, 0x5cfa, 0x5d06,\n  /* 0x16521..0x1657E */\n  0x5d02, 0x5d1c, 0x5d15, 0x5d0a, 0x5d45, 0x5d4b, 0x5d2e, 0x5d32,\n  0x5d3f, 0x5d35, 0x5d46, 0x5d73, 0x5d56, 0x5d4e, 0x5d72, 0x5d68,\n  0x5d6e, 0x5d4f, 0x5d63, 0x5d93, 0x5d89, 0x5d5b, 0x5d8f, 0x5d7d,\n  0x5d9b, 0x5dba, 0x5dae, 0x5da3, 0x5db5, 0x5dc7, 0x5dbd, 0x5dab,\n  0x5e3d, 0x5da2, 0x5daf, 0x5ddc, 0x5db8, 0x5d9f, 0x5db0, 0x5dd8,\n  0x5ddd, 0x5de4, 0x5dde, 0x5dfb, 0x5df2, 0x5de1, 0x5e05, 0x5e0a,\n  0x5e23, 0x5e21, 0x5e12, 0x5e31, 0x5e1f, 0x5e09, 0x5e0b, 0x5e22,\n  0x5e46, 0x5e66, 0x5e3b, 0x5e35, 0x5e39, 0x5e43, 0x5e37, 0x5e32,\n  0x5e3a, 0x5e67, 0x5e5d, 0x5e56, 0x5e5e, 0x5e59, 0x5e5a, 0x5e79,\n  0x5e6a, 0x5e69, 0x5e7c, 0x5e7b, 0x5e83, 0x5dd5, 0x5e7d, 0x6fae,\n  0x5e7f, 0x5e88, 0x5e89, 0x5e8c, 0x5e92, 0x5e90, 0x5e93, 0x5e94,\n  0x5e96, 0x5e8e, 0x5e9b, 0x5e9c, 0x5f38, 0x5f3a,\n  /* 0x16621..0x1667E */\n  0x5f45, 0x5f4c, 0x5f4d, 0x5f4e, 0x5f50, 0x5f51, 0x5f55, 0x5f54,\n  0x5f58, 0x5f5f, 0x5f60, 0x5f68, 0x5f69, 0x5f67, 0x5f78, 0x5f82,\n  0x5f86, 0x5f83, 0x5f88, 0x5f87, 0x5f8c, 0x5f94, 0x5f9e, 0x5f9d,\n  0x5f9a, 0x5fa3, 0x5faf, 0x5fb2, 0x5fb9, 0x5fae, 0x5fb6, 0x5fb8,\n  0x6b71, 0x5fc5, 0x5fc6, 0x5fca, 0x5fd5, 0x5fd4, 0x5fe1, 0x5fe6,\n  0x5fe9, 0x5ff3, 0x5ff9, 0x78dc, 0x6006, 0x6004, 0x600b, 0x6012,\n  0x6018, 0x6019, 0x601c, 0x6021, 0x6028, 0x603f, 0x603b, 0x604a,\n  0x6046, 0x6052, 0x6058, 0x605a, 0x605f, 0x6062, 0x6068, 0x6073,\n  0x6072, 0x6070, 0x6076, 0x6079, 0x607d, 0x607f, 0x6084, 0x6086,\n  0x6085, 0x609b, 0x6093, 0x609a, 0x60ad, 0x3190, 0x60ac, 0x60db,\n  0x60e5, 0x60d9, 0x60dd, 0x60c4, 0x60da, 0x60d6, 0x6109, 0x60ef,\n  0x60f1, 0x611b, 0x6129, 0x6123, 0x612f, 0x614b,\n  /* 0x16721..0x1677E */\n  0x768b, 0x6146, 0x613e, 0x6153, 0x6151, 0x60fc, 0x6171, 0x616e,\n  0x6165, 0x6166, 0x6174, 0x6183, 0x6188, 0x618a, 0x6180, 0x6182,\n  0x61a0, 0x6195, 0x61a4, 0x61a3, 0x615f, 0x6193, 0x61a9, 0x61b0,\n  0x61b5, 0x61be, 0x61b8, 0x61bd, 0x61c0, 0x61c2, 0x61ba, 0x61c9,\n  0x61cd, 0x61d1, 0x61d9, 0x61d8, 0x61c8, 0x61da, 0x61df, 0x61e0,\n  0x61e7, 0x61fa, 0x61fb, 0x61fe, 0x6201, 0x6202, 0x6205, 0x6207,\n  0x620a, 0x620d, 0x6210, 0x6216, 0x6229, 0x622b, 0x6238, 0x6233,\n  0x6240, 0x6259, 0x6258, 0x625d, 0x625a, 0x625f, 0x6264, 0x6262,\n  0x6268, 0x626a, 0x626b, 0x622e, 0x6271, 0x6277, 0x6278, 0x627e,\n  0x628d, 0x6292, 0x62ab, 0x629f, 0x62bb, 0x62ac, 0x62e1, 0x62e3,\n  0x62df, 0x62d2, 0x62f4, 0x62f3, 0x62fa, 0x6393, 0x6303, 0x62fb,\n  0x62f9, 0x62de, 0x6306, 0x62dc, 0x6309, 0x62d9,\n  /* 0x16821..0x1687E */\n  0x6335, 0x6334, 0x6316, 0x6332, 0x6331, 0x6340, 0x6339, 0x6350,\n  0x6345, 0x632f, 0x632b, 0x6317, 0x6318, 0x6385, 0x639a, 0x63aa,\n  0x639f, 0x63a2, 0x6396, 0x6323, 0x638e, 0x6387, 0x638a, 0x637c,\n  0x63b5, 0x6373, 0x6375, 0x63a0, 0x6389, 0x63a8, 0x63f4, 0x6413,\n  0x63eb, 0x63ce, 0x63fd, 0x6403, 0x63d8, 0x640b, 0x63c1, 0x63f7,\n  0x6407, 0x63e0, 0x63f2, 0x640d, 0x6422, 0x6420, 0x63bd, 0x6438,\n  0x6506, 0x63fb, 0x646d, 0x642a, 0x643c, 0x655a, 0x6484, 0x6477,\n  0x646b, 0x64ad, 0x646e, 0x6482, 0x6469, 0x6446, 0x642c, 0x646f,\n  0x6479, 0x6435, 0x64ca, 0x6462, 0x64b9, 0x64bf, 0x649f, 0x64d9,\n  0x64cd, 0x64bb, 0x64da, 0x64d0, 0x64c1, 0x64c6, 0x64d6, 0x64a1,\n  0x6521, 0x64ff, 0x64f4, 0x6517, 0x6518, 0x652c, 0x651f, 0x6515,\n  0x6514, 0x64fc, 0x6540, 0x6563, 0x6558, 0x6548,\n  /* 0x16921..0x1697E */\n  0x6541, 0x6602, 0x654b, 0x6555, 0x6580, 0x65a4, 0x6588, 0x6591,\n  0x658a, 0x65a8, 0x656d, 0x6594, 0x659b, 0x65ea, 0x6587, 0x659c,\n  0x6577, 0x657e, 0x6590, 0x65c9, 0x65ba, 0x65cf, 0x65b9, 0x65d0,\n  0x65d5, 0x65dd, 0x65e5, 0x65dc, 0x65f9, 0x660a, 0x6613, 0x660b,\n  0x65fe, 0x65fa, 0x6606, 0x6622, 0x661a, 0x6630, 0x663f, 0x664d,\n  0x2e55, 0x6654, 0x665f, 0x6667, 0x6671, 0x6693, 0x66a3, 0x66a9,\n  0x66aa, 0x668b, 0x668c, 0x66b6, 0x66af, 0x66c4, 0x66c6, 0x66b0,\n  0x66c9, 0x6823, 0x66ab, 0x66d4, 0x66de, 0x66e9, 0x66ec, 0x66df,\n  0x66db, 0x66ef, 0x6712, 0x6706, 0x6708, 0x6700, 0x6703, 0x66fb,\n  0x6711, 0x6709, 0x670d, 0x66f9, 0x670a, 0x6734, 0x673f, 0x6737,\n  0x673b, 0x6725, 0x6729, 0x671a, 0x6760, 0x675f, 0x6778, 0x674c,\n  0x674e, 0x6774, 0x6757, 0x6768, 0x676e, 0x6759,\n  /* 0x16A21..0x16A7E */\n  0x6753, 0x6763, 0x676a, 0x6805, 0x67a2, 0x679f, 0x6782, 0x67af,\n  0x67cb, 0x67bd, 0x67c0, 0x67d0, 0x76d6, 0x67ab, 0x67c4, 0x67b3,\n  0x67c7, 0x67c6, 0x67bb, 0x67ef, 0x67f2, 0x67e0, 0x680f, 0x680d,\n  0x67fe, 0x67f6, 0x67f7, 0x680e, 0x67d2, 0x6811, 0x6816, 0x6815,\n  0x6822, 0x6821, 0x6831, 0x6836, 0x6839, 0x6827, 0x683b, 0x6844,\n  0x6842, 0x6852, 0x6859, 0x685e, 0x6862, 0x686b, 0x6881, 0x687e,\n  0x689e, 0x6875, 0x687d, 0x68b5, 0x6872, 0x6882, 0x6897, 0x6892,\n  0x68ae, 0x6899, 0x68a2, 0x688d, 0x68a4, 0x68b0, 0x68bf, 0x68b1,\n  0x68c3, 0x68c4, 0x68d4, 0x68d8, 0x68d9, 0x68dd, 0x68f9, 0x6902,\n  0x68fc, 0x68f4, 0x68e8, 0x68f2, 0x6904, 0x690c, 0x690a, 0x6913,\n  0x6943, 0x691e, 0x6925, 0x692a, 0x692b, 0x6941, 0x6944, 0x693b,\n  0x6936, 0x6938, 0x694c, 0x691d, 0x6960, 0x695e,\n  /* 0x16B21..0x16B7E */\n  0x6966, 0x6964, 0x696d, 0x696a, 0x696f, 0x6974, 0x6977, 0x697e,\n  0x6983, 0x6988, 0x698a, 0x6993, 0x6998, 0x69a1, 0x69a9, 0x69a6,\n  0x69ac, 0x69af, 0x69b2, 0x69ba, 0x69bd, 0x69bf, 0x69c0, 0x69da,\n  0x69dc, 0x69dd, 0x69e7, 0x69f4, 0x69f8, 0x6a03, 0x6a16, 0x6a10,\n  0x6a0c, 0x6a1b, 0x6a1d, 0x6a25, 0x6a36, 0x6a41, 0x6a5b, 0x6a52,\n  0x6a46, 0x6a48, 0x6a7c, 0x6a6d, 0x6a6c, 0x6a62, 0x6a85, 0x6a82,\n  0x6a84, 0x6aa8, 0x6aa1, 0x6a91, 0x6aa5, 0x6aa6, 0x6a9a, 0x6aa3,\n  0x6ac4, 0x6acd, 0x6ac2, 0x6ada, 0x6aeb, 0x6af3, 0x6ae7, 0x6ae4,\n  0x6af1, 0x6b14, 0x6ae0, 0x6ae2, 0x6af7, 0x6ade, 0x6adb, 0x6b0c,\n  0x6b07, 0x6b1a, 0x6ae1, 0x6b16, 0x6b10, 0x6b17, 0x6b20, 0x6b33,\n  0x77ab, 0x6b26, 0x6b2b, 0x6b3e, 0x6b28, 0x6b41, 0x6b4c, 0x6b4f,\n  0x6b4e, 0x6b49, 0x6b56, 0x6b5b, 0x6b5a, 0x6b6b,\n  /* 0x16C21..0x16C7E */\n  0x6b5f, 0x6b6c, 0x6b6f, 0x6b74, 0x6b7d, 0x6b80, 0x6b8c, 0x6b8e,\n  0x6b92, 0x6b93, 0x6b96, 0x6b99, 0x6b9a, 0x6c3a, 0x6c41, 0x6c3f,\n  0x6c48, 0x6c4c, 0x6c4e, 0x6c50, 0x6c55, 0x6c62, 0x6c6c, 0x6c78,\n  0x6c7a, 0x6c82, 0x6c89, 0x6c85, 0x6c8a, 0x6c8d, 0x6c8e, 0x6c94,\n  0x6c7c, 0x6c98, 0x421d, 0x6cad, 0x6caa, 0x6cbd, 0x6cb2, 0x6cb3,\n  0x6cae, 0x6cb6, 0x6cc8, 0x6cc1, 0x6ce4, 0x6ce3, 0x6cda, 0x6cfd,\n  0x6cfa, 0x6cfb, 0x6d04, 0x6d05, 0x6d0a, 0x6d07, 0x6d0f, 0x6d0d,\n  0x6d10, 0x7f4e, 0x6d13, 0x6ccd, 0x6d14, 0x6d16, 0x6d67, 0x6d6d,\n  0x6d71, 0x6d73, 0x6d81, 0x6d99, 0x6dc2, 0x6dbe, 0x6dba, 0x6dcf,\n  0x6dda, 0x6dd6, 0x6dcc, 0x6ddb, 0x6dcb, 0x6dea, 0x6deb, 0x6ddf,\n  0x6de3, 0x6dfc, 0x6e08, 0x6e09, 0x6dff, 0x6e1d, 0x6e1e, 0x6e10,\n  0x6e1f, 0x6e42, 0x6e35, 0x6e30, 0x6e34, 0x6e4a,\n  /* 0x16D21..0x16D7E */\n  0x6e47, 0x6e49, 0x6e4c, 0x6e50, 0x6e48, 0x6e59, 0x6e64, 0x6e60,\n  0x6e2a, 0x6e63, 0x6e55, 0x6e76, 0x6e72, 0x6e7c, 0x6e81, 0x6e87,\n  0x6e85, 0x6e84, 0x6e8b, 0x6e8a, 0x6e93, 0x6e91, 0x6e94, 0x6e99,\n  0x6eaa, 0x6ea1, 0x6eac, 0x6eb0, 0x6ec6, 0x6eb1, 0x6ebe, 0x6ec5,\n  0x6ec8, 0x6ecb, 0x6edb, 0x6ee3, 0x6efc, 0x6efb, 0x6eeb, 0x6efe,\n  0x6f0a, 0x6f05, 0x6f15, 0x6f12, 0x6f19, 0x6f13, 0x6f1c, 0x6f1f,\n  0x6f1b, 0x6f0c, 0x6f26, 0x6f33, 0x6f3b, 0x6f39, 0x6f45, 0x6f42,\n  0x6f3e, 0x6f4c, 0x6f49, 0x6f46, 0x6f4e, 0x6f57, 0x6f5c, 0x6f62,\n  0x6f63, 0x6f64, 0x6f9c, 0x6f9f, 0x6fa3, 0x6fad, 0x6faf, 0x6fb7,\n  0x6fda, 0x6fe5, 0x6fe2, 0x6fea, 0x6fef, 0x7087, 0x6ff4, 0x7005,\n  0x6ff9, 0x6ffa, 0x7011, 0x7015, 0x7021, 0x700d, 0x701e, 0x7016,\n  0x700b, 0x7027, 0x7036, 0x7035, 0x7039, 0x6ff8,\n  /* 0x16E21..0x16E7E */\n  0x704f, 0x7050, 0x7051, 0x7052, 0x700e, 0x7049, 0x703e, 0x7056,\n  0x7058, 0x705e, 0x7068, 0x706f, 0x7076, 0x76a8, 0x7072, 0x7082,\n  0x707d, 0x7081, 0x7080, 0x708a, 0x7089, 0x708f, 0x70a8, 0x70af,\n  0x70b1, 0x70b5, 0x70e2, 0x70e4, 0x4248, 0x70db, 0x7102, 0x7112,\n  0x7119, 0x7132, 0x7130, 0x714a, 0x7156, 0x7158, 0x7163, 0x7165,\n  0x7169, 0x7173, 0x7172, 0x718b, 0x7189, 0x7182, 0x71a2, 0x71ab,\n  0x71af, 0x71aa, 0x71b5, 0x71b4, 0x71ba, 0x71c0, 0x71c1, 0x71c9,\n  0x71cb, 0x71d0, 0x71d6, 0x71df, 0x71e1, 0x71db, 0x71fc, 0x71f5,\n  0x71f6, 0x721e, 0x71ff, 0x7214, 0x722c, 0x7215, 0x7211, 0x725e,\n  0x7257, 0x7245, 0x7249, 0x7264, 0x7248, 0x7295, 0x723f, 0x724b,\n  0x7250, 0x729c, 0x7296, 0x7293, 0x729b, 0x725a, 0x72cf, 0x72b9,\n  0x72b7, 0x72e9, 0x730f, 0x72fa, 0x7344, 0x732e,\n  /* 0x16F21..0x16F7E */\n  0x7319, 0x7322, 0x731a, 0x7323, 0x733a, 0x7335, 0x733b, 0x735c,\n  0x7360, 0x737c, 0x736e, 0x7356, 0x73b0, 0x73ac, 0x73ad, 0x7394,\n  0x73b9, 0x73d6, 0x73d7, 0x73e8, 0x73e5, 0x73d8, 0x73c3, 0x73dd,\n  0x73d0, 0x73c8, 0x73e4, 0x741a, 0x7414, 0x7413, 0x7403, 0x7407,\n  0x7410, 0x7436, 0x742b, 0x7435, 0x7421, 0x743a, 0x7441, 0x7452,\n  0x7444, 0x745b, 0x7460, 0x7462, 0x745e, 0x746a, 0x7229, 0x7470,\n  0x7475, 0x7477, 0x747d, 0x745a, 0x747c, 0x747e, 0x7481, 0x747f,\n  0x7582, 0x7587, 0x758a, 0x7594, 0x7596, 0x7598, 0x7599, 0x75a0,\n  0x75a8, 0x75a7, 0x75ad, 0x75bc, 0x75bb, 0x75b9, 0x75be, 0x75ca,\n  0x4ff6, 0x75c3, 0x75cd, 0x75cc, 0x75d5, 0x75d4, 0x75d6, 0x75dc,\n  0x75e1, 0x75e5, 0x75e2, 0x7621, 0x7628, 0x762e, 0x762f, 0x7642,\n  0x764c, 0x764f, 0x764b, 0x7677, 0x765c, 0x765e,\n  /* 0x17021..0x1707E */\n  0x765d, 0x765f, 0x7666, 0x7672, 0x766c, 0x768d, 0x7698, 0x7695,\n  0x7697, 0x76aa, 0x76a7, 0x76b1, 0x76b2, 0x76b0, 0x76b4, 0x76b6,\n  0x76b8, 0x76b9, 0x76ce, 0x76cb, 0x76c9, 0x76cd, 0x694d, 0x76dc,\n  0x770d, 0x76d5, 0x76f9, 0x7704, 0x7706, 0x7708, 0x7713, 0x770e,\n  0x7711, 0x770f, 0x7716, 0x7719, 0x7724, 0x772a, 0x7730, 0x7739,\n  0x773d, 0x773e, 0x7744, 0x7746, 0x7748, 0x7742, 0x7749, 0x775c,\n  0x7760, 0x7764, 0x7766, 0x7768, 0x32d2, 0x776b, 0x7771, 0x7779,\n  0x7785, 0x777c, 0x7781, 0x777a, 0x7786, 0x778b, 0x778f, 0x7790,\n  0x779c, 0x77a8, 0x77a6, 0x77a3, 0x77b3, 0x77b4, 0x77c3, 0x77c6,\n  0x77c8, 0x77cb, 0x77dc, 0x77ed, 0x7f4f, 0x77f2, 0x5adf, 0x77f6,\n  0x77f5, 0x780f, 0x780c, 0x7838, 0x7824, 0x7821, 0x7837, 0x783d,\n  0x7846, 0x784f, 0x784b, 0x786b, 0x786f, 0x7870,\n  /* 0x17121..0x1717E */\n  0x7871, 0x7874, 0x7873, 0x78aa, 0x78af, 0x78b1, 0x78b6, 0x78c4,\n  0x78c3, 0x78c6, 0x78e9, 0x78eb, 0x7903, 0x7909, 0x7912, 0x7914,\n  0x7918, 0x7921, 0x791d, 0x791e, 0x7924, 0x7920, 0x792c, 0x792e,\n  0x793d, 0x793e, 0x7942, 0x7949, 0x7945, 0x7950, 0x794b, 0x7951,\n  0x7952, 0x794c, 0x7955, 0x7997, 0x7998, 0x79a5, 0x79ad, 0x79ae,\n  0x79bc, 0x79df, 0x79db, 0x79dd, 0x79d8, 0x79d1, 0x79ed, 0x79ee,\n  0x79f1, 0x79f2, 0x79fb, 0x79f8, 0x7a01, 0x7a0f, 0x7a05, 0x79e2,\n  0x7a19, 0x7a2b, 0x7a37, 0x7a45, 0x7a42, 0x7a40, 0x7a43, 0x7a3e,\n  0x7a55, 0x7a4d, 0x7a5b, 0x7a57, 0x7a5f, 0x7a62, 0x7a65, 0x7a64,\n  0x7a69, 0x7a6b, 0x7a6a, 0x7aad, 0x7ab0, 0x7abc, 0x7ac0, 0x7acf,\n  0x7ad1, 0x7ad3, 0x7ad4, 0x7ade, 0x7adf, 0x7ae2, 0x7ae3, 0x7ae6,\n  0x7aef, 0x7aeb, 0x7aee, 0x7af4, 0x7af1, 0x7af7,\n  /* 0x17221..0x1727E */\n  0x7afb, 0x7b06, 0x7b18, 0x7b1a, 0x7b1f, 0x7b22, 0x7b23, 0x7b25,\n  0x7b27, 0x7b28, 0x7b29, 0x7b2a, 0x7b2e, 0x7b2f, 0x7b32, 0x7b44,\n  0x7b43, 0x7b4f, 0x7b4d, 0x7b4e, 0x7b51, 0x7b58, 0x7b74, 0x7b93,\n  0x7b83, 0x7b91, 0x7b96, 0x7b97, 0x7b9f, 0x7ba0, 0x7ba8, 0x7bb4,\n  0x7bc0, 0x7bca, 0x7bb9, 0x7bc6, 0x7bcf, 0x7bd1, 0x7bd2, 0x7be3,\n  0x7be2, 0x7be4, 0x7bd4, 0x7be1, 0x7c3a, 0x7bf2, 0x7bf1, 0x7bf0,\n  0x7c15, 0x7c14, 0x7c09, 0x7c13, 0x7c0c, 0x7c06, 0x7c08, 0x7c12,\n  0x7c0a, 0x7c04, 0x7c2e, 0x7c1b, 0x7c25, 0x7c24, 0x7c21, 0x7c30,\n  0x7c47, 0x7c32, 0x7c46, 0x7c3e, 0x7c5a, 0x7c60, 0x7c67, 0x7c76,\n  0x7c78, 0x7ce7, 0x7cec, 0x7cf0, 0x7d09, 0x7d08, 0x7ceb, 0x7d03,\n  0x7d06, 0x7d2a, 0x7d26, 0x7daf, 0x7d23, 0x7d1f, 0x7d44, 0x7d15,\n  0x7d12, 0x7d41, 0x7d3f, 0x7d3e, 0x7d46, 0x7d48,\n  /* 0x17321..0x1737E */\n  0x7d5d, 0x7d5e, 0x7d64, 0x7d51, 0x7d50, 0x7d59, 0x7d72, 0x7d89,\n  0x7d87, 0x7dab, 0x7d6f, 0x7d7a, 0x7d9a, 0x7da4, 0x7da9, 0x7db2,\n  0x7dc4, 0x7dc1, 0x7dbb, 0x7db8, 0x7dba, 0x7dc6, 0x7dcf, 0x7dc2,\n  0x7dd9, 0x7dd3, 0x7df8, 0x7de6, 0x7ded, 0x7def, 0x7dfd, 0x7e1a,\n  0x7e1b, 0x7e1e, 0x7e75, 0x7e79, 0x7e7d, 0x7e81, 0x7e88, 0x7e8b,\n  0x7e8c, 0x7e92, 0x7e95, 0x7e91, 0x7e9d, 0x7ea5, 0x7ea9, 0x7eb8,\n  0x7eaa, 0x7ead, 0x7761, 0x7ecc, 0x7ece, 0x7ecf, 0x7ed0, 0x7ed4,\n  0x7edc, 0x7ede, 0x7edd, 0x7ee0, 0x7ee5, 0x7ee8, 0x7eef, 0x7ef4,\n  0x7ef6, 0x7ef7, 0x7ef9, 0x7efb, 0x7efc, 0x7efd, 0x7f07, 0x7f08,\n  0x56b7, 0x7f15, 0x7f21, 0x7f2c, 0x7f3e, 0x7f4a, 0x7f52, 0x7f54,\n  0x7f63, 0x7f5f, 0x7f60, 0x7f61, 0x7f66, 0x7f67, 0x7f6c, 0x7f6a,\n  0x7f77, 0x7f72, 0x7f76, 0x7f95, 0x7f9c, 0x7fa0,\n  /* 0x17421..0x1747E */\n  0x382f, 0x49c7, 0x7059, 0x5464, 0x31dc, 0x5199, 0x3653, 0x3de2,\n  0x3e14, 0x3e18, 0x3e58, 0x3e5e, 0x3ebe, 0x8028, 0x3ecb, 0x3ef9,\n  0x3f00, 0x3f02, 0x3f07, 0x3f1d, 0x3f23, 0x3f34, 0x3f36, 0x3f3d,\n  0x3f40, 0x3f45, 0x3f54, 0x3f58, 0x3f64, 0x3f67, 0x3f7d, 0x3f89,\n  0x3f9c, 0x3fa7, 0x3faf, 0x3fb5, 0x3fb7, 0x3fc9, 0x3fde, 0x3fe1,\n  0x3fe9, 0x400d, 0x4014, 0x4018, 0x4033, 0x4035, 0x4047, 0x813d,\n  0x409d, 0x409e, 0x40cb, 0x40d4, 0x40d5, 0x40dd, 0x40f8, 0x411c,\n  0x412b, 0x4130, 0x4137, 0x813e, 0x418d, 0x813f, 0x41bc, 0x41b9,\n  0x8140, 0x4222, 0x423e, 0x4243, 0x4256, 0x425a, 0x426f, 0x4285,\n  0x42c4, 0x42d6, 0x42fc, 0x430a, 0x4318, 0x4339, 0x4343, 0x4365,\n  0x437c, 0x43e5, 0x43ed, 0x43f5, 0x4410, 0x4414, 0x4422, 0x4479,\n  0x4451, 0x4460, 0x446d, 0x44ce, 0x44be, 0x44bf,\n  /* 0x17521..0x1757E */\n  0x44c4, 0x44ca, 0x44d0, 0x44f7, 0x44fb, 0x4522, 0x4529, 0x8141,\n  0x4567, 0x459d, 0x8142, 0x4600, 0x4609, 0x4615, 0x461e, 0x463a,\n  0x4622, 0x4624, 0x462b, 0x4630, 0x4631, 0x4633, 0x46fb, 0x4648,\n  0x464c, 0xa8c4, 0x4659, 0x465a, 0x4661, 0x4665, 0x4673, 0x4677,\n  0x4678, 0x468d, 0x8143, 0x46a0, 0x46b2, 0x46bb, 0x46c6, 0x46c8,\n  0x1b22, 0x46db, 0x46e8, 0x46fa, 0x4713, 0x8029, 0x4733, 0x4766,\n  0x4747, 0x4748, 0x477b, 0x4781, 0x4793, 0x4798, 0x479b, 0x47bb,\n  0x47f9, 0x47c0, 0x47d7, 0x47fc, 0x4801, 0x4852, 0x481d, 0x482c,\n  0x4831, 0x485b, 0x4872, 0x4875, 0x8144, 0x48a3, 0x48a5, 0x48b2,\n  0x48c8, 0x48d0, 0x48e8, 0x48ed, 0x48f0, 0x48f1, 0x48fc, 0x490a,\n  0x4949, 0xabc4, 0x4935, 0x4942, 0x4957, 0x4963, 0x4964, 0x4968,\n  0x4980, 0x8114, 0x49a5, 0x49ad, 0x49cf, 0x1bb6,\n  /* 0x17621..0x1767E */\n  0x1bc3, 0x49e2, 0x49e9, 0x49ea, 0x49f5, 0x49f6, 0x4a0f, 0x4a15,\n  0xad3f, 0x4a3b, 0x4a3e, 0x4a45, 0x4a50, 0x4a56, 0x4a5b, 0x4a6b,\n  0x4a73, 0xad63, 0x4a89, 0x4a94, 0x4a9d, 0x4a9e, 0x4aa5, 0x4ae4,\n  0x4ae7, 0x1c0f, 0x801d, 0x4b1b, 0x4b1e, 0x4b2c, 0x4b35, 0x4b46,\n  0x4b56, 0x4b60, 0x4b65, 0x4b67, 0x4b77, 0x4b82, 0x4ba9, 0x4bad,\n  0x8070, 0x4bcf, 0x4bd6, 0x4bd7, 0x4bff, 0x4c05, 0x4c10, 0x4c33,\n  0x4c59, 0x4c5c, 0x4caa, 0x4c74, 0x4c76, 0x4c85, 0x4c86, 0x4c98,\n  0x4c9c, 0x4cfb, 0x4cc6, 0x4cd4, 0x4ce0, 0x4ceb, 0x4cee, 0xb0fe,\n  0x4d04, 0x4d0e, 0x4d2e, 0x4d31, 0x4d39, 0x4d3f, 0x4d58, 0x4d65,\n  0x8145, 0x4d82, 0x4d87, 0x4d89, 0x4d94, 0x4daa, 0x4dac, 0x4dbf,\n  0x4dc4, 0x4dd6, 0x4dda, 0x4ddb, 0x4ddd, 0x4dfc, 0x8146, 0x4e34,\n  0x4e44, 0x4e5c, 0x4e5e, 0x4eab, 0x4eb1, 0x4ec1,\n  /* 0x17721..0x1777E */\n  0x4ec7, 0x4ece, 0x4f10, 0x4f1a, 0x8147, 0x4f2a, 0x4f2f, 0x4f33,\n  0x4f51, 0x4f59, 0x4f5e, 0x4f61, 0x4f62, 0x4f7e, 0x4f88, 0x4f8c,\n  0x4f8d, 0x4f94, 0x4fa0, 0x4fa7, 0x4fb6, 0x4fbc, 0x4fc7, 0x4fca,\n  0x4ff9, 0x4ff0, 0x4ff5, 0x5005, 0x5006, 0x5028, 0x504a, 0x505d,\n  0x505e, 0x504e, 0x5064, 0x5075, 0x5085, 0x50a4, 0x50ab, 0x50b7,\n  0x50d4, 0x50d8, 0x50e4, 0x510f, 0x512b, 0x511e, 0x5120, 0x512e,\n  0x5130, 0x5146, 0x5147, 0x5151, 0x8148, 0x5152, 0x515c, 0x5160,\n  0x5168, 0x8115, 0x5185, 0x5187, 0x5192, 0x51c1, 0x51ba, 0x51c4,\n  0x51fe, 0x5200, 0x5215, 0x5255, 0x5256, 0x1e3f, 0x528d, 0x529b,\n  0x52be, 0x52c0, 0x52fb, 0xb7f1, 0x5327, 0x5328, 0x8116, 0x5350,\n  0x5366, 0x537c, 0x5395, 0x539f, 0x53a0, 0x53a2, 0x53a6, 0x53ab,\n  0x53c9, 0x53cf, 0x53d6, 0x53d9, 0x53e3, 0x53e9,\n  /* 0x17821..0x1787E */\n  0x5407, 0x540a, 0x541a, 0x541b, 0x814a, 0x5426, 0x5428, 0x542a,\n  0x542b, 0x542c, 0x542e, 0x542f, 0x5430, 0x5444, 0x5446, 0x5447,\n  0x544b, 0x5457, 0x5462, 0x546b, 0x546d, 0x5486, 0x5487, 0x5489,\n  0x5498, 0x549c, 0x549f, 0x54a3, 0x5490, 0x54a6, 0x54a8, 0x54a9,\n  0x54b5, 0x54bf, 0x54c8, 0x54c9, 0x54da, 0x54ff, 0x5501, 0x5517,\n  0x552f, 0x556f, 0x5579, 0x5592, 0x1f72, 0x55ce, 0x55e4, 0x5600,\n  0x5602, 0x5608, 0x5615, 0x5616, 0x5619, 0x561e, 0x562d, 0x5635,\n  0x5643, 0x564b, 0x5664, 0x5665, 0x566d, 0x566f, 0x5671, 0x5681,\n  0x569b, 0x569d, 0x569e, 0x56a6, 0x56aa, 0x56b6, 0x56c5, 0x56cc,\n  0x56ce, 0x56d4, 0x56e6, 0x56f1, 0x56fc, 0x570a, 0x5719, 0x5734,\n  0x5736, 0x5746, 0x574d, 0x574e, 0x575c, 0x575f, 0x5762, 0x577a,\n  0x5780, 0x5794, 0x57aa, 0x57e0, 0x582d, 0xc18e,\n  /* 0x17921..0x1797E */\n  0x5843, 0x584e, 0x584f, 0x5851, 0x5868, 0x586e, 0x814b, 0x58b0,\n  0xc20e, 0x58ad, 0x58e4, 0x58f2, 0x5900, 0x58f7, 0x591c, 0x592e,\n  0x5931, 0x5934, 0x814c, 0x814d, 0x5945, 0x5946, 0x814e, 0x814f,\n  0x8150, 0x595c, 0x8151, 0x8119, 0x811a, 0x5979, 0x8152, 0x8153,\n  0x811b, 0x5998, 0x59b1, 0x59b8, 0x59c8, 0x59ca, 0xc371, 0x59d4,\n  0x59de, 0x59eb, 0x59ed, 0x5a03, 0x8154, 0x5a39, 0x5a5d, 0x5a6d,\n  0x8155, 0x5a85, 0x5aa0, 0xc4c4, 0x5ab3, 0x5abb, 0x5ace, 0x5aeb,\n  0x5afd, 0x5b12, 0x5b2d, 0x5b3b, 0x5b47, 0x5b4e, 0x5b60, 0x5b6d,\n  0x5b6f, 0x5b72, 0x5b9e, 0x8156, 0x5bd7, 0x5bd9, 0x5c01, 0x5c31,\n  0x5c1e, 0x5c20, 0x5c33, 0x5c36, 0x2264, 0xc7a1, 0x5c59, 0x5c6d,\n  0x5c79, 0x5c8f, 0x5c94, 0x5ca0, 0x5cbc, 0x5cd5, 0x5cd9, 0x5cdd,\n  0x5d07, 0x5d08, 0x5d13, 0x5d1d, 0x5d23, 0x5d31,\n  /* 0x17A21..0x17A7E */\n  0x5d41, 0x5d48, 0x5d53, 0x5d5c, 0x5d7a, 0x5d83, 0x5d8b, 0x5da0,\n  0x5da6, 0x5dc2, 0x5dcc, 0x5dd6, 0x5de3, 0x8157, 0x5e28, 0x5e08,\n  0x5e11, 0x5e15, 0x8159, 0x5e47, 0x5e52, 0x5e61, 0x5e8a, 0x5e8d,\n  0x5f47, 0x815a, 0x5f91, 0x5f97, 0x5fbf, 0x5fce, 0x5fdb, 0x5fdf,\n  0x5fec, 0x5fee, 0x5ffa, 0x815b, 0x6014, 0x6026, 0x6035, 0x6037,\n  0x603c, 0x60ca, 0x60d7, 0x60e0, 0x60f3, 0x6118, 0x614a, 0x6160,\n  0x6167, 0x6168, 0x616d, 0x61bb, 0x61ca, 0x61cf, 0x61d7, 0x815c,\n  0x2453, 0x245b, 0x6260, 0x6274, 0xd2ff, 0x628e, 0x62a1, 0x62a3,\n  0x62a4, 0x62a9, 0x62ae, 0x62b7, 0x62be, 0x62bf, 0x62c6, 0x62d5,\n  0x62fd, 0x62fe, 0x6300, 0x6301, 0x6362, 0x6322, 0x632d, 0x633a,\n  0x6343, 0x6347, 0x6351, 0x6355, 0x637d, 0x6386, 0x6392, 0x6398,\n  0x63a7, 0x63a9, 0x63bf, 0x63c0, 0x63c7, 0x63cf,\n  /* 0x17B21..0x17B7E */\n  0x63d1, 0x63e1, 0x63ea, 0x6401, 0x6406, 0x640a, 0x815f, 0x6448,\n  0x645f, 0x6470, 0x6473, 0x6485, 0x649e, 0x64af, 0x64b4, 0x64ba,\n  0x64c0, 0x64c2, 0xd440, 0x6532, 0x651e, 0x6523, 0x652f, 0x6559,\n  0x6564, 0x811f, 0x65ad, 0x657a, 0x658c, 0x658f, 0x65a2, 0x65b0,\n  0x65cb, 0x65ce, 0x65ed, 0x6612, 0x65ff, 0x6604, 0x6605, 0x6610,\n  0xd674, 0x6618, 0x6629, 0x6638, 0x6657, 0x665b, 0x8036, 0x6662,\n  0x259d, 0x666c, 0x6675, 0x6698, 0x66b8, 0x66fa, 0x66fc, 0x66fd,\n  0x670b, 0x6771, 0x6787, 0x6788, 0x67ac, 0x67ad, 0x67b5, 0x25ea,\n  0x67d6, 0x67ec, 0x6806, 0x680a, 0x6810, 0x6814, 0x681f, 0x6898,\n  0x68aa, 0x68ca, 0x68ce, 0xd884, 0x68f5, 0x691c, 0x8160, 0x6918,\n  0x6919, 0x691a, 0x6927, 0x6930, 0x6932, 0x6939, 0x6940, 0x6994,\n  0x8161, 0x69d4, 0x69e5, 0x69f6, 0x6a12, 0x6a15,\n  /* 0x17C21..0x17C7E */\n  0x6a22, 0x6a37, 0x6a47, 0x6a4e, 0x6a5d, 0x6a61, 0x6a75, 0x6a79,\n  0x6aa7, 0x6ad0, 0x6adf, 0x6af4, 0x6af6, 0x8122, 0x8162, 0x8163,\n  0x6b46, 0x6b54, 0x6b59, 0x6b69, 0x6b9d, 0x6c49, 0x6c68, 0x8164,\n  0x6ce1, 0x6cf4, 0x6cf8, 0x6cfe, 0x8165, 0x6d12, 0x6d1b, 0x6daf,\n  0x6dce, 0x6dd1, 0x6dd7, 0x6e20, 0x6e23, 0x6e3d, 0x6e70, 0x6e7b,\n  0xe177, 0x6ec0, 0x2844, 0x6efa, 0x6f1e, 0x6f2d, 0x6f36, 0x6f54,\n  0xe24d, 0x6fa6, 0x6fb5, 0x6fe4, 0x6fe8, 0x6fee, 0x7008, 0x702d,\n  0x8167, 0x7088, 0x7095, 0x7097, 0x7099, 0x709b, 0x70a2, 0x70b3,\n  0x70be, 0x70c4, 0x70c5, 0x70c7, 0x70d7, 0x70dd, 0x70de, 0x70ef,\n  0x70f4, 0x8126, 0x7114, 0x7115, 0x7116, 0x7122, 0x7123, 0x7127,\n  0x712f, 0x7131, 0x7134, 0x713d, 0x7148, 0x715b, 0x7183, 0x719e,\n  0x71ac, 0x71b1, 0x71bc, 0x71d7, 0x71fb, 0x71e4,\n  /* 0x17D21..0x17D7E */\n  0x71e5, 0x71ed, 0x71f1, 0x7207, 0x7210, 0x7238, 0x7239, 0x723a,\n  0x723c, 0x7240, 0x7243, 0x724f, 0x7278, 0x7288, 0x72c2, 0x72cb,\n  0x72cc, 0x72d3, 0x72e0, 0x72ff, 0x7304, 0x731f, 0x7321, 0x7325,\n  0x7348, 0x7349, 0x734a, 0x7364, 0x7365, 0x736a, 0x7370, 0x739b,\n  0x73a3, 0x73ba, 0x73c6, 0x73de, 0x73df, 0x7404, 0x73fd, 0x7433,\n  0x744a, 0x7463, 0x746b, 0x7471, 0x7472, 0x758e, 0x759f, 0x75a6,\n  0x75a9, 0x75ac, 0x75b6, 0x75bd, 0x75cb, 0x75d0, 0x75d3, 0x29b0,\n  0x75da, 0x75de, 0x7658, 0x7684, 0x80dc, 0x769d, 0x76a4, 0x76a5,\n  0x76d2, 0x76de, 0x8168, 0x76e9, 0x76ef, 0x7733, 0x773b, 0x774d,\n  0x774e, 0x774f, 0x775a, 0x776e, 0x7773, 0x7795, 0x77ae, 0x77ba,\n  0x77c1, 0x77c9, 0x77de, 0x77db, 0x77f4, 0x8169, 0x780a, 0x781e,\n  0x782b, 0x7830, 0x816a, 0x7852, 0x7853, 0x7856,\n  /* 0x17E21..0x17E7E */\n  0x7857, 0x7859, 0x785a, 0x80d0, 0x7865, 0x786c, 0x78ba, 0x78c8,\n  0x78e7, 0x7958, 0x799e, 0x7a02, 0x7a03, 0x7a24, 0x7a2d, 0x7a2e,\n  0x7a38, 0x7a4a, 0x7a4e, 0x7a52, 0x7ab6, 0x7ac1, 0x7ac3, 0x7ace,\n  0x7ad6, 0x7af9, 0x7b02, 0x7b08, 0x7b20, 0x2c17, 0x7b2d, 0x7b5e,\n  0x7b79, 0x7b66, 0x7b72, 0x7b75, 0x7b84, 0x7b8a, 0x7b8f, 0x7b9e,\n  0x7ba7, 0x7bc1, 0x7bce, 0x7be5, 0x7bf8, 0x7bfd, 0x7c00, 0x7c23,\n  0x7c41, 0x7c4f, 0x7c50, 0x7c53, 0x7c63, 0x7c65, 0x7c77, 0x7d1d,\n  0x7d1e, 0x7d43, 0x7d47, 0x7d52, 0x7d63, 0x7d70, 0x7d7c, 0x7d8a,\n  0x7d96, 0x7dc0, 0x7dac, 0x7dbc, 0x7dd7, 0xf690, 0x7de7, 0x7e07,\n  0x7e15, 0x7e7c, 0x7e9e, 0x7ea4, 0x7eac, 0x7eaf, 0x7eb4, 0x7eb5,\n  0x7ec3, 0x7ed1, 0x7f10, 0x7f39, 0x7f57, 0x7f90, 0x7f94, 0x7f97,\n  0x7fa2, 0x39f8, 0x3c5b, 0x3e77, 0x5626, 0x5e6b,\n  /* 0x22121..0x2217E */\n  0x8489, 0x2e02, 0x2e0f, 0x2e12, 0x2e29, 0x2e2b, 0x2e2e, 0x2e40,\n  0x2e47, 0x2e48, 0x84a2, 0x2e51, 0x1406, 0x84a4, 0x2e5a, 0x2e69,\n  0x2e9d, 0x142c, 0x142e, 0x2eb9, 0x2ebb, 0x8522, 0x2ebc, 0x2ec3,\n  0x2ec8, 0x2ed0, 0x2eeb, 0x2eda, 0x2ef1, 0x2ef5, 0x2f00, 0x2f16,\n  0x2f64, 0x2f37, 0x2f3e, 0x2f54, 0x2f58, 0x8593, 0x2f77, 0x2f78,\n  0x2f7a, 0x2f7d, 0x2f82, 0x2f85, 0x2f92, 0x2f9a, 0x2fe6, 0x2fb2,\n  0x2fbe, 0x2fc5, 0x2fcb, 0x2fcf, 0x2fd2, 0x146a, 0x2ff2, 0x3000,\n  0x3010, 0x3013, 0x301c, 0x301e, 0x3022, 0x1468, 0x3042, 0x3046,\n  0x304e, 0x3053, 0x3057, 0x3063, 0x3066, 0x306a, 0x3070, 0x30a3,\n  0x3088, 0x3092, 0x3093, 0x3095, 0x3096, 0x309c, 0x30aa, 0x862b,\n  0x30b1, 0x30ba, 0x30bb, 0x30c4, 0x30c7, 0x30f3, 0x8681, 0x30ce,\n  0x8671, 0x30d4, 0x30d9, 0x30e1, 0x30e9, 0x1492,\n  /* 0x22321..0x2237E */\n  0x3108, 0x86f9, 0x3117, 0x311b, 0x874a, 0x3160, 0x8809, 0x3173,\n  0x3183, 0x318b, 0x14bc, 0x3198, 0x31a3, 0x31ad, 0x14c7, 0x31bc,\n  0x88d6, 0x8928, 0x31f3, 0x31f4, 0x3202, 0x3212, 0x3216, 0x8a4f,\n  0x3255, 0x325c, 0x326c, 0x3277, 0x3284, 0x3282, 0x8b07, 0x3298,\n  0x8b3a, 0x32a4, 0x32a6, 0x32af, 0x32ba, 0x32bb, 0x32ca, 0x151f,\n  0x32d1, 0x8bb9, 0x32f7, 0x330a, 0x330b, 0x3324, 0x3335, 0x333e,\n  0x3342, 0x8c7c, 0x8c9d, 0x3367, 0x336c, 0x337a, 0x33a4, 0x33b4,\n  0x8dd3, 0x33b7, 0x33c0, 0x8e1d, 0x155d, 0x155e, 0x33d5, 0x33da,\n  0x1563, 0x33f4, 0x33f5, 0x3455, 0x3424, 0x3428, 0x156e, 0x3443,\n  0x3462, 0x3466, 0x346c, 0x348a, 0x348d, 0x3495, 0x34a0, 0x34a6,\n  0x34ad, 0x34ae, 0x34b7, 0x34ba, 0x34bf, 0x34c3, 0x8f45, 0x34ec,\n  0x34ef, 0x34f1, 0x34f3, 0x3500, 0x3501, 0x3509,\n  /* 0x22421..0x2247E */\n  0x353c, 0x3541, 0x15a6, 0x3547, 0x354a, 0x15a8, 0x3560, 0x3561,\n  0x3564, 0x8fe1, 0x357d, 0x3582, 0x3588, 0x3591, 0x15c5, 0x35d2,\n  0x9095, 0x906d, 0x35bf, 0x35c9, 0x35cc, 0x35d1, 0x35dd, 0x15da,\n  0x35e2, 0x9064, 0x35e9, 0x3628, 0x915f, 0x3607, 0x3610, 0x3630,\n  0x3637, 0x15f4, 0x363d, 0x363f, 0x3640, 0x3647, 0x365e, 0x3660,\n  0x366d, 0x1605, 0x3688, 0x368c, 0x3695, 0x369a, 0x369d, 0x36a8,\n  0x36ad, 0x36b2, 0x36c5, 0x36cd, 0x36df, 0x36e8, 0x36f6, 0x36f7,\n  0x9201, 0x3715, 0x3723, 0x9255, 0x3729, 0x927b, 0x3745, 0x3746,\n  0x374c, 0x374d, 0x9274, 0x3768, 0x376f, 0x3773, 0x3774, 0x3775,\n  0x377b, 0x92e4, 0x92d7, 0x37ac, 0x379a, 0x379d, 0x379e, 0x37a8,\n  0x37d7, 0x92fd, 0x37cc, 0x9336, 0x9344, 0x37de, 0x37e6, 0x37f0,\n  0x164a, 0x37f8, 0x37fb, 0x37fd, 0x3804, 0x381e,\n  /* 0x22521..0x2257E */\n  0x3820, 0x3827, 0x3832, 0x3839, 0x93c4, 0x3849, 0x384c, 0x3867,\n  0x388a, 0x388b, 0x388d, 0x388f, 0x3890, 0x3894, 0x389d, 0x38aa,\n  0x38b1, 0x946d, 0x38c3, 0x38cd, 0x38e2, 0x38f3, 0x38f4, 0x3905,\n  0x3906, 0x390b, 0x390d, 0x3914, 0x3924, 0x95d7, 0x1691, 0x393d,\n  0x1699, 0x3946, 0x1696, 0xd329, 0x395b, 0x395f, 0x9647, 0x3975,\n  0x3976, 0x397c, 0x399f, 0x39ae, 0x39bc, 0x39c8, 0x39cd, 0x39de,\n  0x39e3, 0x39e4, 0x39e7, 0x39ee, 0x9706, 0x9742, 0x16cf, 0x3a0c,\n  0x3a0d, 0x3a17, 0x3a27, 0x3a2d, 0x3a55, 0x3a65, 0x3a7a, 0x3a8b,\n  0x3a9c, 0x3a9f, 0x3aa0, 0x3aa2, 0x3ab1, 0x3ab3, 0x3ab5, 0x3aba,\n  0x3abf, 0x3ada, 0x3adc, 0x3ae0, 0x3ae5, 0x3af0, 0x3aee, 0x3af5,\n  0x3b00, 0x3b08, 0x3b17, 0x3b34, 0x3b2d, 0x3b4c, 0x3b52, 0x3b68,\n  0x3b6f, 0x3b7c, 0x3b7f, 0x3b81, 0x3b84, 0x99c3,\n  /* 0x22821..0x2287E */\n  0x3b96, 0x3bac, 0x1761, 0x3bc0, 0x1762, 0x3bce, 0x3bd6, 0x176c,\n  0x176b, 0x3bf1, 0x3bfd, 0x1775, 0x3c03, 0x3c29, 0x3c30, 0x9a56,\n  0x3c5f, 0x3c63, 0x3c67, 0x3c68, 0x3c69, 0x3c70, 0x9b2d, 0x9b45,\n  0x3c7c, 0x9b78, 0x9b62, 0x3c88, 0x3c8a, 0x17c1, 0x9ba1, 0x9b9c,\n  0x3ca0, 0x3ca2, 0x3ca6, 0x3ca7, 0x9b92, 0x3cad, 0x3cb5, 0x9bb7,\n  0x3cc9, 0x9be0, 0x9c33, 0x3d06, 0x3d10, 0x3d2b, 0x3d1d, 0x3d20,\n  0x3d24, 0x3d26, 0x3d31, 0x3d39, 0x3d42, 0x17e8, 0x3d61, 0x3d6a,\n  0x17f4, 0x3d70, 0x9d1e, 0x17fd, 0x3d88, 0x1800, 0x3d92, 0x3d94,\n  0x3d97, 0x3d99, 0x3db0, 0x3db2, 0x3db4, 0x9d76, 0x3db9, 0x3dd1,\n  0x3dd7, 0x3dd8, 0x3de0, 0x9dfa, 0x3de4, 0x3de9, 0x182f, 0x3e00,\n  0x1836, 0x3e12, 0x3e15, 0x1840, 0x3e1f, 0x3e2e, 0x3e3e, 0x3e49,\n  0x185c, 0x3e56, 0x1861, 0x3e6b, 0x3e6c, 0x3e6d,\n  /* 0x22C21..0x22C7E */\n  0x3e6e, 0x9e7b, 0x3ea5, 0x3eaa, 0x3eac, 0x3eb9, 0x3ebf, 0x3ec6,\n  0x3ed2, 0x3ed9, 0xa01e, 0x3efd, 0x3f08, 0x3f0e, 0x3f1c, 0xa0ad,\n  0x3f1e, 0x3f47, 0x3f63, 0x3f72, 0x3f7e, 0x3f8f, 0x3fa2, 0x3fa4,\n  0x3fb8, 0x3fc4, 0x18fa, 0x3fc7, 0x3fcb, 0x3fd2, 0x3fd3, 0x3fd4,\n  0x3fe2, 0x3fee, 0x3fef, 0x3ff3, 0x3ffc, 0x1917, 0x4017, 0x4022,\n  0x4024, 0x191a, 0x404c, 0x407f, 0x408a, 0x4095, 0x40a8, 0xa1f3,\n  0x40b0, 0x40b1, 0x40be, 0x40c8, 0x40d9, 0x40db, 0x40ee, 0x40f2,\n  0x40f5, 0x4110, 0x4112, 0x4113, 0x4119, 0x411e, 0x413a, 0x196f,\n  0x4141, 0x4146, 0x4160, 0x417c, 0xa25b, 0x4192, 0x4193, 0x4197,\n  0x4198, 0x41a5, 0x41a8, 0x41ad, 0xa2ab, 0x41d5, 0x41dd, 0x41df,\n  0x41f5, 0xa38f, 0x4215, 0x4223, 0x4229, 0x4246, 0x424c, 0x4251,\n  0x4252, 0x4261, 0x4264, 0x427b, 0x426d, 0x4273,\n  /* 0x22D21..0x22D7E */\n  0x4299, 0x42a6, 0x42d5, 0xa4b8, 0x42fd, 0x4303, 0x430d, 0x4310,\n  0xa54f, 0xa550, 0x4332, 0x4335, 0x433b, 0x433c, 0x4341, 0x4344,\n  0x434e, 0xa546, 0x4359, 0xa61d, 0xa5a6, 0x436c, 0x4384, 0x4399,\n  0xa624, 0x4394, 0x43bd, 0x43f7, 0x43d4, 0x43d5, 0x43dc, 0x43e0,\n  0x43eb, 0x43ec, 0x43f2, 0x4409, 0x441e, 0x4425, 0x4429, 0x442f,\n  0x445a, 0x445b, 0x445d, 0x4473, 0x447d, 0x4487, 0x4491, 0x449d,\n  0x449f, 0x44cb, 0x44cc, 0x44d5, 0x44d7, 0xa7e1, 0x44e4, 0x44e5,\n  0x44ff, 0x4504, 0x1a6e, 0x450f, 0x4514, 0x4516, 0x1a73, 0x451e,\n  0x4532, 0x4544, 0x4554, 0x456b, 0x457a, 0x4581, 0x4584, 0x4585,\n  0x458a, 0x45b2, 0x45b5, 0x45b8, 0x45bf, 0x45c2, 0x45c9, 0x45d4,\n  0x1ad6, 0x45f2, 0x45f9, 0x45fc, 0x4604, 0x4608, 0x4621, 0x462a,\n  0x4645, 0x4651, 0x464e, 0x1aea, 0xa8c3, 0x4657,\n  /* 0x22E21..0x22E7E */\n  0x465b, 0x4663, 0xa8f5, 0xa8b6, 0x466a, 0x466b, 0x466c, 0x466d,\n  0x467b, 0x4680, 0x4690, 0x4692, 0x4699, 0x1b0e, 0x46ad, 0x46b1,\n  0x46b5, 0x1b1a, 0x46bf, 0x1b1c, 0x46ec, 0x1ad7, 0x4701, 0x4705,\n  0x4712, 0xa972, 0x4719, 0xa9d3, 0xa9d2, 0x474c, 0x474d, 0x4754,\n  0x475d, 0xa9d0, 0xa9e4, 0xa9d5, 0x4774, 0x4776, 0xa9da, 0x4792,\n  0xa9df, 0x6363, 0x4810, 0x47b0, 0x47b2, 0x47c3, 0x47c8, 0x47d2,\n  0x47d9, 0x47db, 0x47f0, 0x47f7, 0xaa4a, 0xaa51, 0xaa4b, 0x4818,\n  0x481f, 0x482d, 0xaa65, 0x4833, 0x483b, 0x483e, 0x4844, 0x4845,\n  0x4849, 0x484c, 0x4855, 0x4857, 0x1b77, 0x486b, 0x486e, 0x487a,\n  0x487c, 0x4882, 0x4890, 0x4896, 0x1b6d, 0x4898, 0x4899, 0x489a,\n  0x489c, 0x48aa, 0x48ab, 0x48b4, 0x48bb, 0x48fb, 0xaae4, 0xab5a,\n  0x8113, 0x48c3, 0x48c5, 0x48cc, 0x48cf, 0x48d6,\n  /* 0x22F21..0x22F7E */\n  0x48d9, 0x48e4, 0x48e5, 0x48ec, 0x48f7, 0x4903, 0x4907, 0x1b87,\n  0x1b88, 0xab94, 0x493b, 0x1b8d, 0x4946, 0x4969, 0x496c, 0x4972,\n  0x497a, 0x497f, 0x4992, 0x1ba4, 0x4996, 0x4998, 0x49a6, 0x49b0,\n  0x49b7, 0x49ba, 0x49bc, 0x49c0, 0x49d1, 0x49d6, 0xac39, 0xac47,\n  0x4a30, 0xac38, 0xac3a, 0x49e3, 0x49ee, 0x49ef, 0x49f3, 0x1bcd,\n  0x49f4, 0x49fe, 0x4a11, 0x4a1a, 0x4a1d, 0xad1c, 0x4a32, 0x4a33,\n  0x4a34, 0x4a3f, 0x4a46, 0x4a49, 0x4a7a, 0x4a4e, 0x4a52, 0x4a64,\n  0xad0c, 0x4a7e, 0x4a83, 0x4a8b, 0x1bf0, 0x4a91, 0x4a9f, 0x4aa1,\n  0xad64, 0x4aab, 0x4abd, 0x4ac6, 0x4ad4, 0x4ad0, 0x4adc, 0x4add,\n  0xadff, 0xade7, 0x4aec, 0x4af1, 0x4af2, 0x4af3, 0x4afd, 0xae24,\n  0x4b0b, 0x4b0f, 0x4b10, 0x4b11, 0xae3d, 0x4b17, 0x1c26, 0x4b2f,\n  0x4b4a, 0x4b58, 0x4b6c, 0x4b75, 0x4b7a, 0x4b81,\n  /* 0x26E21..0x26E7E */\n  0x4b9b, 0x4bae, 0xaf98, 0x4bbd, 0x4bbe, 0x4bc7, 0x4bc8, 0x4bc9,\n  0x4bda, 0x4be6, 0x4be7, 0x4bee, 0x4bf1, 0x4c02, 0x4c0a, 0x4c0e,\n  0x4c35, 0x4c36, 0x4c3a, 0xb07f, 0x4c3f, 0x4c4d, 0x4c5b, 0x4c6d,\n  0x4c84, 0x4c89, 0x1cc3, 0x4c94, 0x4c95, 0x4c97, 0x4cad, 0x4cc2,\n  0x4cd0, 0x1cd2, 0x4cd6, 0x4cda, 0x4cdc, 0x4ce9, 0x4cec, 0x4ced,\n  0xb100, 0x4d00, 0x4d0a, 0x4d24, 0x4d26, 0x4d27, 0x4c67, 0x4d2f,\n  0x4d3c, 0x4d5b, 0x4d5e, 0x4d60, 0x4d70, 0x4d80, 0x4d81, 0x4d8a,\n  0x4d8d, 0x4d91, 0x4d98, 0xb140, 0x4e17, 0xb1fa, 0xb1f9, 0xb1d3,\n  0x4dab, 0x4dae, 0x4db4, 0x4dc2, 0x4d34, 0x4dc8, 0x4dce, 0x4dcf,\n  0x4dd0, 0x4ddf, 0x4de9, 0x4df6, 0x4e36, 0x4e1e, 0x4e22, 0x4e27,\n  0x1d11, 0x4e32, 0x4e3c, 0x4e48, 0x4e49, 0x4e4b, 0x4e4c, 0x4e4f,\n  0x4e51, 0x4e53, 0x4e54, 0x4e57, 0x4e63, 0x1d1e,\n  /* 0x26F21..0x26F7E */\n  0x4e93, 0x4ea7, 0x4eb4, 0x4ebf, 0x4ec3, 0x4eca, 0x4ed9, 0x4f35,\n  0x4eeb, 0x4ef9, 0x4efb, 0x4f0a, 0x4f0c, 0x4f18, 0x4f25, 0x4f36,\n  0x4f3c, 0xb27e, 0x4f52, 0x4f57, 0x4f5a, 0x4f60, 0x4f68, 0x4f98,\n  0x4f7d, 0x4f90, 0x4f96, 0x4fbe, 0x4f9f, 0x4fa5, 0x4faf, 0x1d64,\n  0x4fb5, 0x4fc8, 0x4fc9, 0x4fda, 0x4fde, 0x4fe9, 0xb396, 0x4ffc,\n  0x5000, 0x5007, 0x500a, 0x5023, 0xb403, 0x5039, 0x503a, 0x503c,\n  0x5043, 0x5047, 0x504b, 0x1d9a, 0x5054, 0x5065, 0x5069, 0x506c,\n  0x506e, 0x5076, 0x507e, 0x5081, 0x5086, 0x5095, 0x5097, 0x50bb,\n  0xb4c6, 0x509f, 0x50b1, 0xb4fe, 0x50ec, 0x50ca, 0x50d1, 0x50d3,\n  0x50dc, 0x5103, 0x5104, 0x5106, 0x5107, 0x5108, 0x510c, 0x1dc0,\n  0x512f, 0x5131, 0x5150, 0x514a, 0x5153, 0x515e, 0x1dd4, 0x5196,\n  0x5180, 0x519b, 0x51a0, 0x51a2, 0x51ae, 0x51af,\n  /* 0x27021..0x2707E */\n  0x51b3, 0xb5bc, 0x51cb, 0x51d3, 0x51d9, 0x51dc, 0x5207, 0x1e05,\n  0x8149, 0x522b, 0x5234, 0x5238, 0x5239, 0x2e2c, 0x5242, 0x5253,\n  0x5257, 0x5263, 0xb629, 0x526e, 0x526f, 0x5278, 0x527f, 0x528e,\n  0xb6a5, 0x52ad, 0x52ae, 0x52b0, 0x52b1, 0x52c1, 0x1e60, 0x52cc,\n  0x1e66, 0x1e68, 0x52f3, 0x52fa, 0x5307, 0x5312, 0x5318, 0x5319,\n  0x1e83, 0x5339, 0x532c, 0x5331, 0x5333, 0x533d, 0x5352, 0x1e94,\n  0x536b, 0x536c, 0xb896, 0x536e, 0x536f, 0x5371, 0x5377, 0x5381,\n  0x5385, 0x538a, 0x5394, 0x5398, 0x539c, 0x539e, 0x53a5, 0x53a8,\n  0x53b5, 0x53b7, 0x53b9, 0x53bc, 0x53bf, 0x53c5, 0x53cb, 0x53e1,\n  0x53e7, 0x53f9, 0x5413, 0x53fa, 0x5401, 0x5424, 0x5431, 0x5439,\n  0x5453, 0x5440, 0x5443, 0x544d, 0x5452, 0x545d, 0x5471, 0x5481,\n  0x5485, 0x5488, 0xb94d, 0x5492, 0x5497, 0x5499,\n  /* 0x27121..0x2717E */\n  0x54a0, 0x54a1, 0x54a5, 0x54aa, 0x54ab, 0x54b9, 0x54bb, 0x54ba,\n  0x54d6, 0x54d8, 0x54de, 0x54ef, 0x54eb, 0xba56, 0x54fa, 0xba6f,\n  0x5520, 0x5524, 0x552a, 0x1f57, 0xbb16, 0x553d, 0x553e, 0x5540,\n  0x5548, 0x554e, 0x5550, 0x5552, 0x556c, 0x5572, 0x5571, 0x557a,\n  0x557d, 0x557e, 0x5581, 0xbc14, 0x558c, 0x1f75, 0x55a2, 0x1f77,\n  0x55b0, 0x55b7, 0x55bf, 0x55c0, 0x55c6, 0x55cf, 0x55d3, 0x55dd,\n  0x55df, 0x55e0, 0x55e7, 0x55ec, 0x55ee, 0x55f1, 0x55f9, 0x5603,\n  0x5618, 0x5607, 0x560f, 0x1fae, 0xbd0e, 0x5613, 0x561b, 0x561c,\n  0xbd37, 0x5625, 0x5628, 0x563c, 0x5633, 0xbd6a, 0x1fc9, 0x5641,\n  0xbd8b, 0x5649, 0x5655, 0x1fd7, 0x566e, 0x5695, 0x569c, 0x56a1,\n  0x56a0, 0x56a7, 0x56a8, 0x56af, 0xbe4a, 0x56c9, 0xbe55, 0x56e8,\n  0x56ec, 0xbf22, 0x5717, 0x571a, 0x572d, 0x5735,\n  /* 0x27221..0x2727E */\n  0xbfa9, 0x2039, 0xbfe5, 0xbfcd, 0x5758, 0x5760, 0x576a, 0xc01e,\n  0x5772, 0x577c, 0x577d, 0xc04c, 0x2058, 0x579a, 0x579f, 0x57a2,\n  0x57a4, 0x57a9, 0x57de, 0x57df, 0x57e4, 0x57e6, 0x57ea, 0x57ec,\n  0x2093, 0x57f0, 0x57f4, 0x57fb, 0xc12e, 0x5805, 0x5806, 0x5809,\n  0x580d, 0x5819, 0x5821, 0x582c, 0x5847, 0x5864, 0x586a, 0xc1d9,\n  0x588a, 0x5894, 0x58a4, 0x589d, 0x589e, 0x589f, 0x58bb, 0x58c8,\n  0x58cc, 0x58ce, 0x58d5, 0x58e0, 0x58e1, 0x58e6, 0x58f9, 0x58fa,\n  0x58fb, 0x58fe, 0xc2a7, 0x5910, 0x591b, 0x5930, 0x5925, 0x593b,\n  0x594a, 0x5958, 0x595b, 0x2105, 0x5967, 0x5972, 0x5994, 0x5995,\n  0x5996, 0x599b, 0x59a1, 0x59a9, 0x59b4, 0x59bb, 0x59c2, 0x59c7,\n  0x59cc, 0x59cd, 0x59d6, 0x2148, 0xc3a9, 0xc3b4, 0x214f, 0x5a0a,\n  0x5a11, 0x5a15, 0x5a1b, 0x5a1e, 0x2163, 0x5a2d,\n  /* 0x27321..0x2737E */\n  0x5a38, 0x5a47, 0x5a4c, 0x5a56, 0x5a59, 0x5a5c, 0x5a5f, 0x5a60,\n  0x5a67, 0x5a6a, 0x5a75, 0x5a78, 0x5a82, 0x5a8a, 0x5a90, 0x5aa3,\n  0x5aac, 0xc4d4, 0x21b4, 0x5ab9, 0x5abc, 0x5abe, 0x21bf, 0x5acc,\n  0x5ad1, 0x5ae7, 0x5ae8, 0x5af4, 0xc5e4, 0xc5e3, 0x5b07, 0xc5f1,\n  0x5b3d, 0x5b27, 0x5b2a, 0x5b2e, 0x5b2f, 0x5b31, 0x21e6, 0x21f3,\n  0x5b7f, 0x5b41, 0x21ee, 0x5b55, 0x5b79, 0x5b64, 0x5b66, 0x5b69,\n  0x5b73, 0xc632, 0x2207, 0x5b90, 0x5b91, 0x5b9b, 0x220e, 0x5baf,\n  0x5bb5, 0x5bbc, 0x5bc5, 0x5bca, 0xc6cb, 0xc6e4, 0x5bd4, 0x5bd6,\n  0x5bda, 0x5bea, 0x5bf0, 0x5c03, 0x5c0b, 0x5c0e, 0x5c0f, 0x5c26,\n  0x5c45, 0x5c4a, 0x5c51, 0x5c57, 0x5c5e, 0x5c61, 0x5c69, 0x5c6e,\n  0x5c6f, 0x5c70, 0xc82e, 0xc856, 0xc865, 0x5ca6, 0xc862, 0x5cb6,\n  0x5cb7, 0x5cbf, 0xc8d8, 0x5cc4, 0xc8c2, 0x5cc8,\n  /* 0x27421..0x2747E */\n  0x5ccd, 0xc8e8, 0x5cd7, 0xc923, 0x5ce6, 0x5ceb, 0xc95c, 0x5cf5,\n  0x5d03, 0x5d09, 0x22c6, 0x5d12, 0x5d1e, 0xc9e0, 0xc9d4, 0x5d3d,\n  0x5d3e, 0x5d40, 0x5d47, 0xca0c, 0xc9fb, 0x22d6, 0x5d59, 0x5d5a,\n  0x5d6a, 0x5d70, 0x22dd, 0x5d7f, 0xca17, 0x5d86, 0x5d88, 0x5d8c,\n  0x5d97, 0xca60, 0x5d9d, 0x5da7, 0x5daa, 0x5db6, 0x5db7, 0x5dc0,\n  0x5dd7, 0x5dd9, 0x5de6, 0x5df1, 0x5df9, 0x2302, 0xcaed, 0x8158,\n  0x5e10, 0x5e17, 0x5e1d, 0x5e20, 0x5e27, 0x5e2c, 0x5e45, 0x5e73,\n  0x5e75, 0x5e7e, 0x5e86, 0x5e87, 0x232b, 0x5e91, 0x5e98, 0x5e9a,\n  0x2343, 0x5f3c, 0x5f3b, 0x5f3e, 0x5f43, 0x5f44, 0x5f4f, 0x14c1,\n  0xcb70, 0x5f52, 0xcb86, 0x5f61, 0x5f63, 0x5f64, 0x5f6d, 0x5f7d,\n  0x5f7e, 0xcc4c, 0x5f90, 0x317b, 0xb10e, 0x5f96, 0x5f9c, 0x5fad,\n  0xcd02, 0x5fc3, 0x5fcf, 0x5fe3, 0x5fe5, 0x5fef,\n  /* 0x27521..0x2757E */\n  0x5ff2, 0x6002, 0x600a, 0x6008, 0x600e, 0x6011, 0x6016, 0x6024,\n  0x602c, 0x6030, 0x6043, 0x6066, 0x6071, 0x6075, 0x607b, 0x6099,\n  0x609c, 0x60a4, 0x60a7, 0x60b8, 0xce7e, 0x60c5, 0x60d5, 0x60d8,\n  0x60e6, 0xceb0, 0x610d, 0x60f5, 0x60fb, 0x23ee, 0x6135, 0x6116,\n  0x611e, 0x23f0, 0x6124, 0x6127, 0x612c, 0xcf1d, 0x613d, 0x2408,\n  0x6169, 0x2417, 0x6181, 0x241c, 0x6184, 0x6185, 0x2422, 0x6198,\n  0x61b2, 0x61c1, 0x61c3, 0x61d6, 0x61db, 0xd0dd, 0x61e4, 0xd0ea,\n  0x61ec, 0xd151, 0x61fd, 0x61ff, 0xd16f, 0x6204, 0xd1dd, 0x6219,\n  0x6221, 0x6222, 0xd21e, 0x6232, 0x6234, 0x623c, 0x6246, 0x6249,\n  0x6245, 0xd258, 0x624b, 0x2476, 0x624f, 0x247a, 0x6257, 0xd28c,\n  0x625c, 0x6263, 0xd2b7, 0x815d, 0x815e, 0x6279, 0x2491, 0x627d,\n  0x627f, 0x6283, 0x628a, 0x6293, 0x62a7, 0x62a8,\n  /* 0x27621..0x2767E */\n  0x62b2, 0x62b4, 0x62ba, 0x62bc, 0x62e2, 0x62e8, 0x62f7, 0x6307,\n  0x6308, 0x630c, 0x6354, 0x631b, 0x631d, 0x6330, 0x633c, 0x6344,\n  0x6357, 0x24be, 0x637f, 0x24d4, 0x24b3, 0x638d, 0x6394, 0x6395,\n  0x639b, 0x639d, 0x63c9, 0x63d0, 0x63d4, 0x63dd, 0x63e5, 0x63f9,\n  0x640f, 0x6411, 0x6415, 0xd373, 0x6417, 0x6439, 0x644a, 0x644f,\n  0x6451, 0x6452, 0x6459, 0x645a, 0x645c, 0xd3dd, 0x6465, 0x6476,\n  0x6478, 0x647c, 0x6481, 0x250d, 0x64dc, 0x6497, 0x64a6, 0x64be,\n  0x2508, 0x64ce, 0x64cf, 0x64d3, 0xd465, 0x64e7, 0x64ea, 0x64ef,\n  0x64f0, 0x64f1, 0x64fa, 0x64fd, 0x650c, 0x651b, 0x6524, 0x6525,\n  0x652b, 0x6534, 0x654f, 0x656f, 0x2525, 0x2543, 0x653e, 0x6551,\n  0x6553, 0x655e, 0x6561, 0x6562, 0xd594, 0x657b, 0x657d, 0x657f,\n  0x6581, 0x6586, 0x6593, 0x659d, 0x659f, 0xd5f8,\n  /* 0x27721..0x2777E */\n  0xd5f6, 0xd5f7, 0x65b7, 0x65bc, 0x65c7, 0x65ca, 0x65d8, 0x65d9,\n  0x65df, 0x65e1, 0x65e6, 0x65f6, 0x6600, 0x6611, 0x661e, 0x6621,\n  0x6624, 0x6627, 0xd68d, 0x6639, 0x663c, 0xd6b9, 0x6640, 0x8120,\n  0x6653, 0x6656, 0x666f, 0x6677, 0x667a, 0x6687, 0x6689, 0x668d,\n  0x6691, 0x669c, 0x669d, 0x66a8, 0x8121, 0x66b1, 0x66b3, 0x66c1,\n  0x66c3, 0x66d1, 0x66d5, 0x66d7, 0x66e3, 0x66e6, 0x25b8, 0x6705,\n  0x6707, 0x670e, 0x6710, 0x6713, 0x6719, 0x671f, 0x6721, 0x6723,\n  0x6731, 0x673a, 0x673e, 0x6740, 0x6743, 0x6751, 0x6758, 0x6764,\n  0x6765, 0x6772, 0x677c, 0xd75b, 0xd75a, 0x67a7, 0x6789, 0x678b,\n  0x6793, 0x67a0, 0xd77e, 0x25e5, 0x67be, 0xd790, 0x67c1, 0x67ce,\n  0x67f5, 0x67df, 0xd7c9, 0x67e3, 0x67e5, 0x67e6, 0x67ea, 0x67eb,\n  0x67ed, 0x6801, 0x6803, 0x680b, 0x6813, 0x6828,\n  /* 0x27821..0x2787E */\n  0x682e, 0x6832, 0x683c, 0x260f, 0x684a, 0x6858, 0x685f, 0x6864,\n  0xd815, 0xd814, 0x6869, 0xd831, 0x686f, 0x68a0, 0x68bc, 0x68bd,\n  0x68be, 0x68c0, 0x68d2, 0xd893, 0x68d1, 0x68d3, 0x68db, 0x68f0,\n  0x68f1, 0x2641, 0x6901, 0xd90e, 0x6937, 0xd923, 0x6942, 0x6945,\n  0x6949, 0xd952, 0x2665, 0x6962, 0x6980, 0x6989, 0x6990, 0x699f,\n  0x69b0, 0x69b7, 0x69d6, 0x69d8, 0x69eb, 0x26a1, 0x69f1, 0x69f3,\n  0x69fd, 0x69ff, 0x26af, 0x6a11, 0x6a14, 0xda85, 0x6a21, 0x6a35,\n  0x6a3e, 0x6a45, 0x6a4d, 0x6a58, 0x6aae, 0x6a90, 0x6ab7, 0x6abe,\n  0x6ad7, 0x6afc, 0xdb84, 0x6b0a, 0x6b05, 0x6b0d, 0x6b1c, 0x6b1f,\n  0x6b2d, 0x6b43, 0x270c, 0x6b51, 0x6b5e, 0x6b76, 0x6b7f, 0x6b81,\n  0x6b8b, 0x6b94, 0x6b95, 0x6b9c, 0x6b9e, 0x6c39, 0xdcb3, 0x6c3d,\n  0xdcbe, 0xdcc7, 0x6c45, 0x6c47, 0x6c4f, 0x6c54,\n  /* 0x27921..0x2797E */\n  0x6c57, 0x6c69, 0x6c6d, 0x6c73, 0xddb8, 0x6c93, 0x6c92, 0x6c99,\n  0x2764, 0x6c9b, 0x6ca4, 0x6cd6, 0x6cd5, 0x6cd9, 0xde20, 0x6cf0,\n  0x6cf1, 0xde90, 0x6d09, 0x6d0e, 0x6d6c, 0x6d84, 0x6d95, 0x6da6,\n  0xdfb7, 0x6dc6, 0x6dc8, 0x6dd9, 0x6dec, 0x6e0c, 0x27fd, 0x6dfd,\n  0x6e06, 0xe08a, 0x6e14, 0x6e16, 0x6e21, 0x6e22, 0x6e27, 0xe0bb,\n  0x2816, 0x6e36, 0x6e39, 0x6e4b, 0x6e54, 0x6e62, 0x6e6c, 0x6e6d,\n  0x6e6f, 0x6e98, 0x6e9e, 0x6eae, 0x6eb3, 0x6eb5, 0x6eb6, 0x6ebb,\n  0xe182, 0x6ed1, 0x6ed4, 0x284e, 0x6ef9, 0xe1f3, 0x6f00, 0x6f08,\n  0x6f17, 0x6f2b, 0x6f40, 0x6f4a, 0x6f58, 0xe28c, 0x6fa4, 0x6fb4,\n  0x8166, 0x6fb6, 0xe2d5, 0x6fc1, 0x6fc6, 0x8124, 0x6fca, 0x6fcd,\n  0x6fd3, 0x6fd5, 0x6fe0, 0x6ff1, 0x6ff5, 0x6ffb, 0x7002, 0x700c,\n  0x7037, 0xe36b, 0x7043, 0x7044, 0x705d, 0xe3c8,\n  /* 0x27A21..0x27A7E */\n  0xe3c9, 0x7085, 0x708c, 0x7090, 0x761d, 0x70a1, 0x28b5, 0x70b0,\n  0x70b6, 0x70c3, 0x70c8, 0xe4d7, 0x70dc, 0x70df, 0xe4fa, 0x70f6,\n  0x70f2, 0x7100, 0x70eb, 0x70fe, 0x70ff, 0x7104, 0x7106, 0x7118,\n  0x711c, 0x711e, 0x7137, 0x7139, 0x713a, 0x7146, 0x7147, 0x7157,\n  0x7159, 0x7161, 0x7164, 0x7174, 0x7179, 0x7185, 0x718e, 0x71a8,\n  0x71ae, 0x71b3, 0x71b6, 0x71c3, 0x71c4, 0x71da, 0xe549, 0xe546,\n  0x71ec, 0x71ee, 0x7201, 0x720a, 0x7216, 0x7217, 0xe56b, 0x7233,\n  0x7242, 0x7247, 0x724a, 0x724e, 0x7251, 0x7256, 0x7259, 0x7260,\n  0x7261, 0x7265, 0x7267, 0x7268, 0xe587, 0xe588, 0x727c, 0x727d,\n  0x727f, 0x7289, 0x728d, 0x7297, 0x7299, 0x729f, 0x72a7, 0x72ab,\n  0xe5ba, 0xe5bb, 0x72b2, 0x72bf, 0x72c0, 0x72c6, 0x72ce, 0x72d0,\n  0x72d7, 0x72d9, 0x72e5, 0x72e7, 0x7311, 0xe61e,\n  /* 0x27B21..0x27B7E */\n  0xe629, 0x72f7, 0x72f9, 0x72fb, 0x7302, 0x730d, 0x7315, 0x731d,\n  0x731e, 0x7327, 0x7329, 0xe671, 0xe643, 0x7347, 0x7351, 0x7357,\n  0x735a, 0x736b, 0x7371, 0x7373, 0x73a1, 0xe699, 0xe6cd, 0x7388,\n  0x738b, 0x738f, 0x739e, 0x73f5, 0xe6e4, 0xe6dd, 0x73f1, 0x73c1,\n  0x73c7, 0x73dc, 0x73e2, 0x73e7, 0x7409, 0x740f, 0x7416, 0x7417,\n  0x73fb, 0x7432, 0x7434, 0x743b, 0x7445, 0xe7c1, 0xe7ef, 0x746d,\n  0x746f, 0x7578, 0x7579, 0x7586, 0x758c, 0x758d, 0xe810, 0x75ab,\n  0x75b4, 0xe871, 0x75c8, 0xe8fb, 0xe91f, 0x762c, 0x7633, 0x7634,\n  0xe936, 0x763c, 0x7641, 0x7661, 0xe989, 0x7682, 0xe9eb, 0x769a,\n  0xea32, 0x29e7, 0x76a9, 0x76af, 0x76b3, 0x76ba, 0x76bd, 0x29fa,\n  0xeaf8, 0x76d8, 0x76da, 0x76dd, 0x2a04, 0x7714, 0x7723, 0x2a29,\n  0x7736, 0x7741, 0x7747, 0x7755, 0x7757, 0x775b,\n  /* 0x27C21..0x27C7E */\n  0x776a, 0xeba0, 0xebb1, 0x7796, 0x779a, 0x779e, 0x77a2, 0x77b1,\n  0x77b2, 0x77be, 0x77cc, 0x77d1, 0x77d4, 0x77d8, 0x77d9, 0x77e1,\n  0x77f1, 0x7804, 0x780d, 0x780e, 0x7814, 0x7816, 0x2abc, 0xec90,\n  0x7823, 0x7832, 0x7833, 0x7825, 0x7847, 0x7866, 0x78ab, 0x78ad,\n  0x78b0, 0xedcf, 0x78b7, 0x78b8, 0x78bb, 0x78bc, 0x78bf, 0x78c2,\n  0x78c7, 0x78cb, 0x78e0, 0xee7f, 0x78e1, 0x78e3, 0x78e5, 0x78ea,\n  0x78f0, 0x78f1, 0x78f3, 0x7908, 0x2b3b, 0xeef0, 0x7916, 0x7917,\n  0xef19, 0x791a, 0x791b, 0x791c, 0xef50, 0x7931, 0x7932, 0x7933,\n  0x793a, 0x793b, 0x793c, 0x7940, 0x7941, 0x7946, 0x794d, 0x794e,\n  0x795c, 0x795f, 0x7960, 0x79a3, 0x79a6, 0x79b9, 0x79bd, 0x79bf,\n  0x79c3, 0x79c9, 0x79d4, 0x79d9, 0x79de, 0xf0c6, 0x79f0, 0x79f9,\n  0x79fc, 0x7a0a, 0x7a11, 0x7a16, 0x7a1a, 0x7a20,\n  /* 0x27D21..0x27D7E */\n  0x7a31, 0x7a36, 0x7a44, 0x7a4c, 0x7a58, 0x2bc2, 0x7aaf, 0x2bca,\n  0x7ab7, 0x2bd2, 0x7ab9, 0xf172, 0x7ac6, 0x7ad0, 0x7ad2, 0x7ad5,\n  0x2be8, 0x7adc, 0x7ae0, 0x7ae5, 0x7ae9, 0x7b03, 0x7b0c, 0x7b10,\n  0x7b12, 0x7b16, 0x7b1c, 0x7b2b, 0x7b33, 0x7b3d, 0x2c20, 0x7b4b,\n  0x7b63, 0x7b65, 0x7b6b, 0x7b6c, 0x7b73, 0x7b76, 0x7b77, 0x7ba6,\n  0x7bac, 0x7bb1, 0xf2db, 0xf33d, 0x7bb2, 0x7bb8, 0x7bbe, 0x7bc7,\n  0x7bf3, 0x7bd8, 0x7bdd, 0x7be7, 0x7bea, 0x7beb, 0x7bef, 0x7bee,\n  0xf315, 0x7bfa, 0xf38a, 0x7bf7, 0xf349, 0x7c16, 0x7c18, 0x7c19,\n  0x7c1a, 0x7c1d, 0x7c22, 0x7c27, 0x7c29, 0x7c2a, 0xf3c4, 0x7c31,\n  0x7c36, 0x7c37, 0x7c45, 0x7c5c, 0xf3e9, 0x7c49, 0x7c4a, 0xf3db,\n  0x7c54, 0x7c58, 0x7c5b, 0x7c5d, 0x7c5f, 0x7c69, 0x7c6a, 0x7c6b,\n  0x7c6d, 0x7c6e, 0x7c70, 0x7c72, 0x7c75, 0x7c7a,\n  /* 0x27E21..0x27E7E */\n  0x7ce6, 0x7cf2, 0x7d0b, 0x7d02, 0xf4ce, 0x7d11, 0x7d17, 0x7d18,\n  0xf52f, 0x2cc4, 0xf51a, 0x7d32, 0x2cd1, 0x7d42, 0x7d4a, 0x7d5f,\n  0x7d62, 0xf5f9, 0x7d69, 0x7d6b, 0xf582, 0x7d73, 0x7d76, 0x7d77,\n  0x7d7e, 0x7d84, 0x7d8d, 0x7d99, 0x7da1, 0x7dbf, 0x7db5, 0x7db9,\n  0x7dbd, 0x7dc3, 0x7dc7, 0x7dc9, 0x7dd6, 0x7dda, 0x7ddf, 0x7de0,\n  0x7de3, 0x7df4, 0x2d07, 0x7e0a, 0x7e02, 0x7e0d, 0x7e19, 0x7e1c,\n  0x7e1d, 0x7e7b, 0x9f18, 0x7e80, 0x7e85, 0x7e9b, 0x7ea8, 0xf70c,\n  0x7ebd, 0xf7b7, 0x7edf, 0x7ee7, 0x7eee, 0x7eff, 0x7f02, 0x2d77,\n  0x7f03, 0x7f17, 0x7f19, 0x7f2f, 0x7f37, 0x7f3a, 0x7f3d, 0x7f41,\n  0x7f45, 0x7f46, 0x7f53, 0x7f55, 0x7f58, 0xf8f1, 0x7f5d, 0xf902,\n  0x7f69, 0xf91a, 0x7f6d, 0x7f70, 0x7f75, 0xf9b2, 0x0000, 0x0000,\n  0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,\n};\n\nstatic const ucs4_t jisx0213_to_ucs_pagestart[] = {\n   0x0000,  0x0100,  0x0200,  0x0300,  0x0400,  0x1e00,  0x1f00,  0x2000,\n   0x2100,  0x2200,  0x2300,  0x2400,  0x2500,  0x2600,  0x2700,  0x2900,\n   0x3000,  0x3100,  0x3200,  0x3300,  0x3400,  0x3500,  0x3600,  0x3700,\n   0x3800,  0x3900,  0x3a00,  0x3b00,  0x3c00,  0x3d00,  0x3e00,  0x3f00,\n   0x4000,  0x4100,  0x4200,  0x4300,  0x4400,  0x4500,  0x4600,  0x4700,\n   0x4800,  0x4900,  0x4a00,  0x4b00,  0x4c00,  0x4d00,  0x4e00,  0x4f00,\n   0x5000,  0x5100,  0x5200,  0x5300,  0x5400,  0x5500,  0x5600,  0x5700,\n   0x5800,  0x5900,  0x5a00,  0x5b00,  0x5c00,  0x5d00,  0x5e00,  0x5f00,\n   0x6000,  0x6100,  0x6200,  0x6300,  0x6400,  0x6500,  0x6600,  0x6700,\n   0x6800,  0x6900,  0x6a00,  0x6b00,  0x6c00,  0x6d00,  0x6e00,  0x6f00,\n   0x7000,  0x7100,  0x7200,  0x7300,  0x7400,  0x7500,  0x7600,  0x7700,\n   0x7800,  0x7900,  0x7a00,  0x7b00,  0x7c00,  0x7d00,  0x7e00,  0x7f00,\n   0x8000,  0x8100,  0x8200,  0x8300,  0x8400,  0x8500,  0x8600,  0x8700,\n   0x8800,  0x8900,  0x8a00,  0x8b00,  0x8c00,  0x8d00,  0x8e00,  0x8f00,\n   0x9000,  0x9100,  0x9200,  0x9300,  0x9400,  0x9500,  0x9600,  0x9700,\n   0x9800,  0x9900,  0x9a00,  0x9b00,  0x9c00,  0x9d00,  0x9e00,  0x9f00,\n   0xf900,  0xfa00,  0xfe00,  0xff00, 0x20000, 0x20180, 0x20300, 0x20400,\n  0x20500, 0x20600, 0x20700, 0x20800, 0x20900, 0x20a00, 0x20b00, 0x20d00,\n  0x20e00, 0x20f00, 0x21200, 0x21300, 0x21400, 0x21500, 0x21600, 0x21700,\n  0x21800, 0x21900, 0x21c00, 0x21d00, 0x21e00, 0x21f00, 0x22100, 0x22200,\n  0x22300, 0x22600, 0x22800, 0x22900, 0x22a00, 0x22b00, 0x22c00, 0x22d00,\n  0x23100, 0x23300, 0x23400, 0x23500, 0x23600, 0x23700, 0x23800, 0x23a00,\n  0x23c00, 0x23d00, 0x23f00, 0x24000, 0x24100, 0x24300, 0x24600, 0x24700,\n  0x24800, 0x24a00, 0x24b00, 0x24c00, 0x24d00, 0x24e00, 0x25000, 0x25100,\n  0x25200, 0x25400, 0x25500, 0x25700, 0x25900, 0x25a00, 0x25b80, 0x25d00,\n  0x25e00, 0x25f00, 0x26000, 0x26200, 0x26300, 0x26400, 0x26600, 0x26700,\n  0x26800, 0x26900, 0x26a00, 0x26c00, 0x26e00, 0x26f00, 0x27080, 0x27380,\n  0x27600, 0x27700, 0x27900, 0x27a00, 0x27b00, 0x27c00, 0x27d80, 0x27f00,\n  0x28000, 0x28200, 0x28380, 0x28500, 0x28600, 0x28900, 0x28a00, 0x28b00,\n  0x28d00, 0x28e00, 0x28f00, 0x29200, 0x29400, 0x29500, 0x29600, 0x29700,\n  0x29800, 0x29a00, 0x29d00, 0x29e00, 0x29f00, 0x2a000, 0x2a100, 0x2a380,\n  0x2a500, 0x2a600,\n};\n\nstatic const short jisx0213_from_ucs_level1[2715] = {\n   -1,  -1,   0,   1,   2,   3,   4,   5,\n   -1,   6,   7,   8,   9,  10,  11,  12,\n   13,  14,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   15,  -1,  -1,  -1,  -1,  16,  -1,  -1,\n   17,  18,  19,  -1,  20,  21,  22,  23,\n   24,  25,  26,  27,  28,  -1,  29,  30,\n   31,  32,  -1,  33,  34,  35,  36,  37,\n   38,  39,  -1,  -1,  40,  41,  -1,  -1,\n   -1,  -1,  -1,  -1,  42,  -1,  43,  44,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   45,  46,  47,  48,  -1,  -1,  -1,  49,\n   50,  51,  52,  53,  54,  55,  56,  57,\n   58,  59,  60,  61,  62,  63,  64,  65,\n   66,  67,  68,  69,  -1,  70,  71,  72,\n   73,  74,  -1,  75,  76,  77,  -1,  -1,\n   -1,  78,  -1,  79,  80,  81,  82,  83,\n   84,  -1,  -1,  85,  86,  87,  88,  89,\n   90,  91,  92,  -1,  -1,  93,  94,  95,\n   96,  97,  98,  -1,  99, 100, 101, 102,\n  103, 104,  -1, 105, 106, 107,  -1, 108,\n  109, 110, 111, 112, 113, 114, 115, 116,\n  117, 118, 119,  -1, 120, 121,  -1, 122,\n  123, 124, 125,  -1,  -1,  -1, 126, 127,\n  128,  -1, 129,  -1, 130,  -1,  -1, 131,\n  132,  -1,  -1, 133, 134, 135,  -1,  -1,\n  136, 137, 138, 139, 140, 141, 142, 143,\n  144, 145, 146, 147, 148, 149, 150, 151,\n  152, 153, 154, 155, 156, 157, 158, 159,\n  160, 161, 162, 163, 164, 165, 166, 167,\n  168, 169, 170, 171, 172, 173, 174, 175,\n  176, 177, 178, 179, 180, 181, 182, 183,\n  184, 185, 186, 187, 188, 189, 190, 191,\n  192, 193, 194, 195, 196, 197, 198, 199,\n  200, 201, 202, 203, 204, 205, 206, 207,\n  208, 209, 210, 211, 212, 213, 214, 215,\n  216, 217, 218, 219, 220, 221, 222, 223,\n  224, 225, 226, 227, 228, 229, 230, 231,\n  232, 233, 234, 235, 236, 237, 238, 239,\n  240, 241, 242, 243, 244, 245, 246, 247,\n  248, 249, 250, 251, 252, 253, 254, 255,\n  256, 257, 258, 259, 260, 261, 262, 263,\n  264, 265, 266, 267, 268, 269, 270, 271,\n  272, 273, 274, 275, 276, 277, 278, 279,\n  280, 281, 282, 283, 284, 285, 286, 287,\n  288, 289, 290, 291, 292, 293, 294, 295,\n  296, 297, 298, 299, 300, 301, 302, 303,\n  304, 305, 306, 307, 308, 309, 310, 311,\n  312, 313, 314, 315, 316, 317, 318, 319,\n  320, 321, 322, 323, 324, 325, 326, 327,\n  328, 329, 330,  -1, 331, 332, 333, 334,\n  335, 336, 337, 338, 339, 340, 341, 342,\n  343, 344, 345, 346, 347, 348, 349, 350,\n  351, 352, 353, 354, 355, 356, 357, 358,\n  359, 360, 361, 362, 363, 364, 365, 366,\n  367, 368, 369, 370, 371, 372, 373, 374,\n  375, 376, 377, 378, 379, 380, 381,  -1,\n  382, 383, 384, 385, 386, 387, 388, 389,\n  390, 391, 392, 393, 394, 395, 396, 397,\n  398, 399, 400, 401, 402, 403, 404, 405,\n  406, 407, 408, 409, 410, 411, 412, 413,\n  414, 415, 416,  -1,  -1, 417, 418, 419,\n  420, 421, 422, 423, 424, 425, 426, 427,\n  428, 429, 430, 431, 432, 433, 434, 435,\n  436, 437, 438, 439, 440, 441, 442, 443,\n  444, 445,  -1, 446, 447, 448, 449, 450,\n  451, 452, 453, 454, 455, 456, 457,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1, 458, 459,  -1, 460,\n  461, 462,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1, 463,  -1,  -1, 464, 465,  -1, 466,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n  467,  -1, 468,  -1,  -1,  -1, 469,  -1,\n  470,  -1,  -1,  -1, 471, 472, 473, 474,\n   -1, 475,  -1,  -1, 476,  -1,  -1, 477,\n  478,  -1,  -1,  -1,  -1, 479,  -1,  -1,\n  480,  -1, 481,  -1,  -1, 482, 483,  -1,\n   -1,  -1,  -1, 484, 485,  -1, 486,  -1,\n   -1,  -1,  -1,  -1,  -1, 487,  -1, 488,\n   -1, 489, 490,  -1,  -1, 491,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n  492, 493,  -1, 494, 495, 496,  -1, 497,\n   -1, 498,  -1,  -1,  -1,  -1,  -1, 499,\n   -1, 500, 501,  -1, 502, 503,  -1,  -1,\n   -1,  -1, 504,  -1,  -1,  -1,  -1, 505,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1, 506,  -1,  -1, 507, 508, 509, 510,\n  511,  -1,  -1,  -1, 512, 513,  -1, 514,\n   -1,  -1,  -1,  -1,  -1, 515,  -1,  -1,\n  516,  -1,  -1,  -1, 517,  -1, 518,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1, 519,  -1,  -1,  -1,  -1,\n   -1, 520, 521,  -1,  -1,  -1, 522,  -1,\n   -1,  -1, 523,  -1,  -1, 524, 525,  -1,\n  526,  -1,  -1,  -1,  -1,  -1,  -1, 527,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1, 528, 529,\n   -1,  -1,  -1,  -1,  -1, 530,  -1, 531,\n   -1, 532,  -1, 533,  -1, 534, 535, 536,\n  537, 538,  -1,  -1, 539, 540,  -1, 541,\n  542,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1, 543,  -1,  -1,  -1,  -1,  -1,\n   -1, 544,  -1, 545, 546, 547,  -1, 548,\n   -1,  -1,  -1,  -1,  -1, 549,  -1,  -1,\n   -1,  -1, 550,  -1, 551,  -1,  -1, 552,\n   -1,  -1,  -1,  -1,  -1,  -1, 553,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n  554,  -1, 555,  -1,  -1,  -1,  -1, 556,\n   -1,  -1, 557,  -1,  -1,  -1,  -1,  -1,\n   -1, 558,  -1,  -1,  -1, 559,  -1,  -1,\n  560,  -1,  -1,  -1, 561,  -1,  -1,  -1,\n  562, 563, 564,  -1,  -1,  -1,  -1,  -1,\n   -1, 565,  -1,  -1, 566,  -1, 567, 568,\n  569, 570,  -1,  -1,  -1,  -1,  -1,  -1,\n  571,  -1, 572, 573, 574,  -1, 575,  -1,\n   -1,  -1,  -1,  -1,  -1, 576, 577,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1, 578,\n   -1,  -1,  -1, 579,  -1,  -1, 580,  -1,\n   -1, 581,  -1,  -1,  -1,  -1, 582,  -1,\n  583, 584,  -1, 585, 586, 587,  -1, 588,\n  589, 590,  -1, 591,  -1,  -1,  -1,  -1,\n   -1, 592, 593,  -1,  -1, 594,  -1,  -1,\n  595,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1, 596, 597,  -1, 598,  -1,  -1,  -1,\n   -1,  -1,  -1, 599,  -1, 600,  -1, 601,\n  602, 603, 604, 605,  -1,  -1,  -1,  -1,\n  606, 607,  -1, 608,  -1,  -1,  -1,  -1,\n   -1, 609,  -1,  -1,  -1,  -1, 610, 611,\n   -1,  -1,  -1, 612, 613,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1, 614,\n  615, 616,  -1,  -1,  -1,  -1,  -1,  -1,\n  617,  -1, 618,  -1, 619, 620,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1, 621,  -1,\n   -1,  -1, 622,  -1,  -1,  -1, 623, 624,\n   -1,  -1, 625,  -1,  -1,  -1, 626,  -1,\n  627,  -1,  -1,  -1,  -1,  -1, 628,  -1,\n   -1,  -1, 629,  -1,  -1,  -1,  -1,  -1,\n   -1, 630, 631, 632,  -1,  -1,  -1, 633,\n  634, 635,  -1,  -1,  -1, 636,  -1, 637,\n   -1,  -1,  -1, 638,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1, 639, 640,  -1,\n  641, 642, 643, 644,  -1,  -1,  -1, 645,\n   -1,  -1,  -1,  -1, 646, 647,  -1, 648,\n  649,  -1, 650, 651, 652,  -1,  -1, 653,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1, 654,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1, 655,  -1,  -1,  -1,  -1, 656,\n   -1, 657,  -1, 658, 659, 660,  -1,  -1,\n   -1,  -1,  -1, 661,  -1,  -1,  -1,  -1,\n   -1, 662,  -1,  -1,  -1,  -1,  -1,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1,  -1, 663,\n  664, 665, 666, 667,  -1,  -1,  -1, 668,\n  669,  -1, 670, 671,  -1,  -1, 672,  -1,\n   -1,  -1,  -1,  -1,  -1,  -1, 673,  -1,\n  674,  -1,  -1,  -1,  -1,  -1,  -1, 675,\n  676,  -1, 677,\n};\n\nstatic const unsigned short jisx0213_from_ucs_level2_data[] = {\n  /* 0x0080 */\n  0x2922, 0x2923, 0x2171, 0x2172, 0x2924, 0x2925, 0x2178, 0x212f,\n  0x2926, 0x2927, 0x2928, 0x224c, 0x2929, 0x292a, 0x292b, 0x216b,\n  0x215e, 0x292c, 0x292d, 0x212d, 0x2279, 0x292e, 0x292f, 0x2930,\n  0x2931, 0x2932, 0x2933, 0x2934, 0x2935, 0x2936,\n  /* 0x00C0 */\n  0x2937, 0x2938, 0x2939, 0x293a, 0x293b, 0x293c, 0x293d, 0x293e,\n  0x293f, 0x2940, 0x2941, 0x2942, 0x2943, 0x2944, 0x2945, 0x2946,\n  0x2947, 0x2948, 0x2949, 0x294a, 0x294b, 0x294c, 0x294d, 0x215f,\n  0x294e, 0x294f, 0x2950, 0x2951, 0x2952, 0x2953, 0x2954, 0x2955,\n  0x2956, 0x2957, 0x2958, 0x2959, 0x295a, 0x295b, 0x29dc, 0x295d,\n  0x295e, 0x295f, 0x2960, 0x2961, 0x2962, 0x2963, 0x2964, 0x2965,\n  0x2966, 0x2967, 0x2968, 0x2969, 0x296a, 0x296b, 0x296c, 0x2160,\n  0x296d, 0x296e, 0x296f, 0x2970, 0x2971, 0x2972, 0x2973, 0x2974,\n  /* 0x0100 */\n  0x2975, 0x297a, 0x2a3a, 0x2a49, 0x2a21, 0x2a2c, 0x2a3c, 0x2a4b,\n  0x2a59, 0x2a5f, 0x2a3d, 0x2a4c, 0x2a40, 0x2a4f, 0x2a50, 0x2978,\n  0x297d, 0x2a3e, 0x2a4d, 0x2a3f, 0x2a4e, 0x2a5a, 0x2a60, 0x2a5b,\n  0x2a61, 0x2a7d, 0x2976, 0x297b, 0x2a5c, 0x2a62, 0x2a3b, 0x2a4a,\n  0x2a24, 0x2a2f,\n  /* 0x0140 */\n  0x2a23, 0x2a2e, 0x2a41, 0x2a51, 0x2a42, 0x2a52, 0x2a7a, 0x2979,\n  0x297e, 0x2a43, 0x2a53, 0x2b2b, 0x2b2a, 0x2a39, 0x2a48, 0x2a44,\n  0x2a54, 0x2a25, 0x2a30, 0x2a5d, 0x2a63, 0x2a27, 0x2a33, 0x2a26,\n  0x2a32, 0x2a47, 0x2a57, 0x2a28, 0x2a34, 0x2977, 0x297c, 0x2a5e,\n  0x2a64, 0x2a45, 0x2a55, 0x2a46, 0x2a56, 0x2a29, 0x2a35, 0x2a2b,\n  0x2a38, 0x2a2a, 0x2a37,\n  /* 0x0180 */\n  0x2b29,\n  /* 0x01C0 */\n  0x2b24, 0x286f, 0x2870, 0x2871, 0x2876, 0x2877, 0x2878, 0x2879,\n  0x287a, 0x287b, 0x287c, 0x2874, 0x2875, 0x2b45,\n  /* 0x0240 */\n  0x2b33, 0x2b39, 0x2b3a, 0x2b25, 0x2bb8, 0x2b3f, 0x2a6e, 0x2b26,\n  0x2b2e, 0x2bb0, 0x2bc3, 0x2b31, 0x2b32, 0x2a75, 0x2b28, 0x2a79,\n  0x2b36, 0x2b3c, 0x2b22, 0x2b42, 0x2b2c, 0x2a6a, 0x2a74, 0x2a6b,\n  0x2b34, 0x2a7b, 0x2a65, 0x2a76, 0x2a6f, 0x2b2f, 0x2a6c, 0x2b41,\n  0x2a73, 0x2a70, 0x2a67,\n  /* 0x0280 */\n  0x2a7c, 0x2a71, 0x2a68, 0x2b27, 0x2a6d, 0x2b2d, 0x2b35, 0x2a66,\n  0x2bb7, 0x2b3b, 0x2a78, 0x2a72, 0x2b40, 0x2a69, 0x2b21, 0x2a7e,\n  0x2b23, 0x2a77, 0x2b3e, 0x2b3d,\n  /* 0x02C0 */\n  0x2a31, 0x2b53, 0x2b54, 0x2b55, 0x2b56, 0x2a22, 0x2a58, 0x2a2d,\n  0x2a36, 0x2b71, 0x2be0, 0x2b61, 0x2b62, 0x2b63, 0x2be4,\n  /* 0x0300 */\n  0x2b5c, 0x2b5a, 0x2b5f, 0x2b7d, 0x2b5b, 0x2b57, 0x2b6d, 0x2b59,\n  0x2b5e, 0x2b5d, 0x2b78, 0x2b79, 0x2b7e, 0x2b6a, 0x2b76, 0x2b77,\n  0x2b6b, 0x2b6c, 0x2b72, 0x2b67, 0x2b6f, 0x2b7a, 0x2b68, 0x2b70,\n  0x2b73, 0x2b75, 0x2b69, 0x2b7b, 0x2b7c, 0x2b74, 0x2b6e,\n  /* 0x0340 */\n  0x2b52,\n  /* 0x0380 */\n  0x2621, 0x2622, 0x2623, 0x2624, 0x2625, 0x2626, 0x2627, 0x2628,\n  0x2629, 0x262a, 0x262b, 0x262c, 0x262d, 0x262e, 0x262f, 0x2630,\n  0x2631, 0x2632, 0x2633, 0x2634, 0x2635, 0x2636, 0x2637, 0x2638,\n  0x2641, 0x2642, 0x2643, 0x2644, 0x2645, 0x2646, 0x2647, 0x2648,\n  0x2649, 0x264a, 0x264b, 0x264c, 0x264d, 0x264e, 0x264f,\n  /* 0x03C0 */\n  0x2650, 0x2651, 0x2659, 0x2652, 0x2653, 0x2654, 0x2655, 0x2656,\n  0x2657, 0x2658,\n  /* 0x0400 */\n  0x2727, 0x2721, 0x2722, 0x2723, 0x2724, 0x2725, 0x2726, 0x2728,\n  0x2729, 0x272a, 0x272b, 0x272c, 0x272d, 0x272e, 0x272f, 0x2730,\n  0x2731, 0x2732, 0x2733, 0x2734, 0x2735, 0x2736, 0x2737, 0x2738,\n  0x2739, 0x273a, 0x273b, 0x273c, 0x273d, 0x273e, 0x273f, 0x2740,\n  0x2741, 0x2751, 0x2752, 0x2753, 0x2754, 0x2755, 0x2756, 0x2758,\n  0x2759, 0x275a, 0x275b, 0x275c, 0x275d, 0x275e, 0x275f, 0x2760,\n  0x2761,\n  /* 0x0440 */\n  0x2762, 0x2763, 0x2764, 0x2765, 0x2766, 0x2767, 0x2768, 0x2769,\n  0x276a, 0x276b, 0x276c, 0x276d, 0x276e, 0x276f, 0x2770, 0x2771,\n  0x2757,\n  /* 0x1E00 */\n  0x2872, 0x2873,\n  /* 0x1F40 */\n  0x2b46, 0x2b47, 0x2b50, 0x2b51,\n  /* 0x2000 */\n  0x213e, 0x237c, 0x213d, 0x2142, 0x2146, 0x2147, 0x2148, 0x2149,\n  0x2277, 0x2278, 0x2340, 0x2145, 0x2144, 0x2273, 0x216c, 0x216d,\n  0x2228, 0x286b, 0x2b58,\n  /* 0x2040 */\n  0x2c7e, 0x286c, 0x286d, 0x286e, 0x2c7d,\n  /* 0x2080 */\n  0x2921,\n  /* 0x2100 */\n  0x216e, 0x235d, 0x235f, 0x2d62, 0x2d64, 0x2360, 0x2272, 0x235c,\n  /* 0x2140 */\n  0x2778, 0x2779, 0x277a, 0x2d35, 0x2d36, 0x2d37, 0x2d38, 0x2d39,\n  0x2d3a, 0x2d3b, 0x2d3c, 0x2d3d, 0x2d3e, 0x2d3f, 0x2d57, 0x2c35,\n  0x2c36, 0x2c37, 0x2c38, 0x2c39, 0x2c3a, 0x2c3b, 0x2c3c, 0x2c3d,\n  0x2c3e, 0x2c3f, 0x2c40,\n  /* 0x2180 */\n  0x222b, 0x222c, 0x222a, 0x222d, 0x2271, 0x2327, 0x2325, 0x2326,\n  0x2328,\n  /* 0x21C0 */\n  0x2329, 0x224d, 0x224e, 0x232b, 0x232c, 0x232a, 0x232d,\n  /* 0x2200 */\n  0x224f, 0x225f, 0x2250, 0x2247, 0x2260, 0x223a, 0x2246, 0x223b,\n  0x215d, 0x235b, 0x2265, 0x2267, 0x2167, 0x2d78, 0x225c, 0x2254,\n  0x2255, 0x224a, 0x224b, 0x2241, 0x2240, 0x2269, 0x226a, 0x2d73,\n  0x2168, 0x2268, 0x2266,\n  /* 0x2240 */\n  0x226c, 0x226d, 0x226e, 0x2262, 0x2162, 0x2261, 0x226b, 0x2165,\n  0x2166, 0x2263, 0x2264, 0x226f, 0x2270,\n  /* 0x2280 */\n  0x223e, 0x223f, 0x2242, 0x2243, 0x223c, 0x223d, 0x2244, 0x2245,\n  0x2251, 0x2252, 0x2253, 0x225d, 0x2d79,\n  /* 0x22C0 */\n  0x2776, 0x2777,\n  /* 0x2300 */\n  0x2248, 0x2249, 0x225e, 0x277c,\n  /* 0x2380 */\n  0x2742, 0x2743,\n  /* 0x23C0 */\n  0x2744, 0x2745, 0x2746, 0x2747, 0x2748, 0x2749, 0x274a, 0x274b,\n  0x274c, 0x274d, 0x274e, 0x274f, 0x2750, 0x277e,\n  /* 0x2400 */\n  0x277d,\n  /* 0x2440 */\n  0x2d21, 0x2d22, 0x2d23, 0x2d24, 0x2d25, 0x2d26, 0x2d27, 0x2d28,\n  0x2d29, 0x2d2a, 0x2d2b, 0x2d2c, 0x2d2d, 0x2d2e, 0x2d2f, 0x2d30,\n  0x2d31, 0x2d32, 0x2d33, 0x2d34,\n  /* 0x24C0 */\n  0x2c41, 0x2c42, 0x2c43, 0x2c44, 0x2c45, 0x2c46, 0x2c47, 0x2c48,\n  0x2c49, 0x2c4a, 0x2c4b, 0x2c4c, 0x2c4d, 0x2c4e, 0x2c4f, 0x2c50,\n  0x2c51, 0x2c52, 0x2c53, 0x2c54, 0x2c55, 0x2c56, 0x2c57, 0x2c58,\n  0x2c59, 0x2c5a, 0x2c2b, 0x2c2c, 0x2c2d, 0x2c2e, 0x2c2f, 0x2c30,\n  0x2c31, 0x2c32, 0x2c33, 0x2c34, 0x265a, 0x265b, 0x265c, 0x265d,\n  0x265e, 0x265f, 0x2660, 0x2661, 0x2662, 0x2663,\n  /* 0x2500 */\n  0x2821, 0x282c, 0x2822, 0x282d, 0x2823, 0x282e, 0x2824, 0x282f,\n  0x2826, 0x2831, 0x2825, 0x2830, 0x2827, 0x283c, 0x2837, 0x2832,\n  0x2829, 0x283e, 0x2839, 0x2834, 0x2828, 0x2838, 0x283d, 0x2833,\n  0x282a, 0x283a, 0x283f, 0x2835, 0x282b, 0x283b,\n  /* 0x2540 */\n  0x2840, 0x2836,\n  /* 0x2580 */\n  0x2223, 0x2222, 0x266d, 0x2225, 0x2224, 0x2322, 0x2321, 0x2227,\n  0x2226,\n  /* 0x25C0 */\n  0x2324, 0x2323, 0x2221, 0x217e, 0x233b, 0x217b, 0x217d, 0x217c,\n  0x2867, 0x2868, 0x2869, 0x286a, 0x233f, 0x227e,\n  /* 0x2600 */\n  0x2668, 0x2669, 0x266a, 0x266b, 0x217a, 0x2179, 0x2667, 0x2664,\n  0x2665, 0x2d7e,\n  /* 0x2640 */\n  0x216a, 0x2169, 0x263a, 0x263d, 0x263b, 0x2640, 0x2639, 0x263e,\n  0x263c, 0x263f, 0x266c, 0x227d, 0x2276, 0x227b, 0x227c, 0x2275,\n  0x227a, 0x2274,\n  /* 0x2700 */\n  0x277b,\n  /* 0x2740 */\n  0x2d7d, 0x2c21, 0x2c22, 0x2c23, 0x2c24, 0x2c25, 0x2c26, 0x2c27,\n  0x2c28, 0x2c29, 0x2c2a,\n  /* 0x2900 */\n  0x232e, 0x232f,\n  /* 0x2980 */\n  0x233a,\n  /* 0x29C0 */\n  0x237d, 0x237e,\n  /* 0x3000 */\n  0x2121, 0x2122, 0x2123, 0x2137, 0x2139, 0x213a, 0x213b, 0x2152,\n  0x2153, 0x2154, 0x2155, 0x2156, 0x2157, 0x2158, 0x2159, 0x215a,\n  0x215b, 0x2229, 0x222e, 0x214c, 0x214d, 0x225a, 0x225b, 0x2258,\n  0x2259, 0x2141, 0x2d60, 0x2d61, 0x2666, 0x2233, 0x2234, 0x2235,\n  0x2236, 0x2237, 0x233c,\n  /* 0x3040 */\n  0x2421, 0x2422, 0x2423, 0x2424, 0x2425, 0x2426, 0x2427, 0x2428,\n  0x2429, 0x242a, 0x24ab, 0x242c, 0x24ad, 0x242e, 0x24af, 0x2430,\n  0x24b1, 0x2432, 0x24b3, 0x2434, 0x2435, 0x2436, 0x2437, 0x2438,\n  0x2439, 0x243a, 0x243b, 0x243c, 0x243d, 0x243e, 0x243f, 0x2440,\n  0x2441, 0x2442, 0x2443, 0x2444, 0x2445, 0x2446, 0x2447, 0x2448,\n  0x2449, 0x244a, 0x244b, 0x244c, 0x244d, 0x244e, 0x244f, 0x2450,\n  0x2451, 0x2452, 0x2453, 0x2454, 0x2455, 0x2456, 0x2457, 0x2458,\n  0x2459, 0x245a, 0x245b, 0x245c, 0x245d, 0x245e, 0x245f,\n  /* 0x3080 */\n  0x2460, 0x2461, 0x2462, 0x2463, 0x2464, 0x2465, 0x2466, 0x2467,\n  0x2468, 0x2469, 0x246a, 0x246b, 0x246c, 0x246d, 0x246e, 0x246f,\n  0x2470, 0x2471, 0x2472, 0x2473, 0x2474, 0x2475, 0x2476, 0x212b,\n  0x212c, 0x2135, 0x2136, 0x2239, 0x237b, 0x2521, 0x2522, 0x2523,\n  0x2524, 0x2525, 0x2526, 0x2527, 0x2528, 0x2529, 0x252a, 0x25ab,\n  0x252c, 0x25ad, 0x252e, 0x25af, 0x2530, 0x25b1, 0x2532, 0x25b3,\n  0x2534, 0x2535, 0x2536, 0x2537, 0x2538, 0x2539, 0x253a, 0x25bb,\n  0x253c, 0x253d, 0x253e, 0x253f,\n  /* 0x30C0 */\n  0x2540, 0x2541, 0x2542, 0x2543, 0x25c4, 0x2545, 0x2546, 0x2547,\n  0x25c8, 0x2549, 0x254a, 0x254b, 0x254c, 0x254d, 0x254e, 0x254f,\n  0x2550, 0x2551, 0x2552, 0x2553, 0x2554, 0x2555, 0x2556, 0x2557,\n  0x2558, 0x2559, 0x255a, 0x255b, 0x255c, 0x255d, 0x255e, 0x255f,\n  0x2560, 0x2561, 0x2562, 0x2563, 0x2564, 0x2565, 0x2566, 0x2567,\n  0x2568, 0x2569, 0x256a, 0x256b, 0x256c, 0x256d, 0x256e, 0x256f,\n  0x2570, 0x2571, 0x2572, 0x2573, 0x2574, 0x2575, 0x2576, 0x2772,\n  0x2773, 0x2774, 0x2775, 0x2126, 0x213c, 0x2133, 0x2134, 0x2238,\n  /* 0x31C0 */\n  0x266e, 0x266f, 0x2670, 0x2671, 0x2672, 0x2673, 0x2674, 0x26f5,\n  0x2676, 0x2677, 0x2679, 0x267a, 0x267b, 0x267c, 0x267d, 0x267e,\n  /* 0x3200 */\n  0x2d6a, 0x2d6b, 0x2d6c,\n  /* 0x3240 */\n  0x2841, 0x2842, 0x2843, 0x2844, 0x2845, 0x2846, 0x2847, 0x2848,\n  0x2849, 0x284a, 0x284b, 0x284c, 0x284d, 0x284e, 0x284f,\n  /* 0x3280 */\n  0x2d65, 0x2d66, 0x2d67, 0x2d68, 0x2d69, 0x2850, 0x2851, 0x2852,\n  0x2853, 0x2854, 0x2855, 0x2856, 0x2857, 0x2858, 0x2859, 0x285a,\n  0x285b, 0x285c, 0x285d, 0x285e,\n  /* 0x32C0 */\n  0x2c5b, 0x2c5c, 0x2c5d, 0x2c5e, 0x2c5f, 0x2c60, 0x2c61, 0x2c62,\n  0x2c63, 0x2c64, 0x2c65, 0x2c66, 0x2c67, 0x2c68, 0x2c69, 0x2c6a,\n  0x2c6b, 0x2c6c, 0x2c6d, 0x2c6e, 0x2c71, 0x2c70, 0x2c73, 0x2c72,\n  0x2c6f,\n  /* 0x3300 */\n  0x2d46, 0x2d4a, 0x2d41, 0x2d44, 0x2d42, 0x2d4c, 0x2d4b, 0x2d45,\n  0x2d4d, 0x2d47, 0x2d4f,\n  /* 0x3340 */\n  0x2d40, 0x2d4e, 0x2d43, 0x2d48, 0x2d49, 0x2d5f, 0x2d6f, 0x2d6e,\n  0x2d6d,\n  /* 0x3380 */\n  0x2d53, 0x2d54, 0x2d50, 0x2d51, 0x2d52, 0x2d56,\n  /* 0x33C0 */\n  0x2d55, 0x235e, 0x2d63,\n  /* 0x3400 */\n  0x2e23, 0xa12d, 0xa132, 0xa133,\n  /* 0x3440 */\n  0xa15e, 0xa156,\n  /* 0x3480 */\n  0xa17e, 0x2e53, 0xa32b,\n  /* 0x34C0 */\n  0xf468, 0xa32f, 0x2e5b,\n  /* 0x3500 */\n  0xa348,\n  /* 0x3540 */\n  0xa35d, 0xa35e, 0xa361, 0xa367,\n  /* 0x3580 */\n  0xa423, 0xa426,\n  /* 0x35C0 */\n  0xa42f, 0xa438, 0xa442,\n  /* 0x3600 */\n  0xa44a,\n  /* 0x3640 */\n  0xa479,\n  /* 0x3680 */\n  0xa53f, 0xa543, 0xa541,\n  /* 0x36C0 */\n  0xa557,\n  /* 0x3740 */\n  0xa823, 0xa825, 0xa829, 0xa828, 0xa82c,\n  /* 0x3780 */\n  0x4f5f,\n  /* 0x37C0 */\n  0xa83e, 0x4f6f, 0xa856, 0xa859, 0xa85c,\n  /* 0x3800 */\n  0xa85e, 0xa86f, 0xa871,\n  /* 0x3840 */\n  0xa874, 0xa879, 0xa87b,\n  /* 0x38C0 */\n  0xac3b,\n  /* 0x3900 */\n  0xac46, 0xac4a,\n  /* 0x3940 */\n  0xac60,\n  /* 0x3A40 */\n  0xad5b, 0xad5f,\n  /* 0x3AC0 */\n  0xad71, 0xae36, 0xad7c,\n  /* 0x3B00 */\n  0xae2e, 0xae32, 0xae34, 0x7549,\n  /* 0x3B40 */\n  0xae6d, 0xae65,\n  /* 0x3B80 */\n  0xaf28, 0xaf29, 0xaf2c, 0xaf34, 0x757e,\n  /* 0x3BC0 */\n  0x7621, 0xaf48, 0xaf5d,\n  /* 0x3C00 */\n  0x763a, 0xaf77,\n  /* 0x3CC0 */\n  0xee3b, 0xee42,\n  /* 0x3D00 */\n  0xee71, 0xee7e,\n  /* 0x3D40 */\n  0xef40,\n  /* 0x3D80 */\n  0xef54,\n  /* 0x3DC0 */\n  0xef70, 0xef77,\n  /* 0x3E00 */\n  0xf028, 0x7766,\n  /* 0x3E40 */\n  0xf03f, 0xf041, 0xf042,\n  /* 0x3E80 */\n  0xf049, 0xf050,\n  /* 0x3F40 */\n  0xf134, 0x784d, 0xf146, 0xf148,\n  /* 0x3F80 */\n  0xf15c,\n  /* 0x3FC0 */\n  0xf167, 0xf16c,\n  /* 0x4000 */\n  0xf222,\n  /* 0x4040 */\n  0xf22d,\n  /* 0x4080 */\n  0xf239,\n  /* 0x4100 */\n  0xf264,\n  /* 0x4140 */\n  0xf274, 0xf277, 0xf27d,\n  /* 0x4180 */\n  0xf333, 0xf337,\n  /* 0x41C0 */\n  0xf347, 0xf34b, 0xf348,\n  /* 0x4200 */\n  0xf353, 0xf357,\n  /* 0x4240 */\n  0x796d,\n  /* 0x42C0 */\n  0xf42b, 0xf436, 0xf43b,\n  /* 0x4300 */\n  0xf44e, 0xf45d,\n  /* 0x4340 */\n  0xf461,\n  /* 0x43C0 */\n  0xf53e, 0xf542,\n  /* 0x4400 */\n  0xf548, 0xf54a, 0xf54c, 0xf54f,\n  /* 0x4440 */\n  0x7a59, 0x7a5a, 0xf56c, 0xf56e,\n  /* 0x4480 */\n  0xf577, 0xf635, 0xf632,\n  /* 0x44C0 */\n  0xf634,\n  /* 0x4500 */\n  0xf659, 0xf654, 0xf66d,\n  /* 0x4540 */\n  0xf66e,\n  /* 0x4580 */\n  0x7b51, 0xf74f,\n  /* 0x45C0 */\n  0xf76c, 0x7b60,\n  /* 0x4600 */\n  0xf824,\n  /* 0x4640 */\n  0xf83a, 0xf843,\n  /* 0x4680 */\n  0xf84e, 0xf853,\n  /* 0x4700 */\n  0xf86b,\n  /* 0x4740 */\n  0xf929,\n  /* 0x47C0 */\n  0xf93f,\n  /* 0x4800 */\n  0xf949,\n  /* 0x4840 */\n  0x7c4b, 0xf95c,\n  /* 0x4880 */\n  0xfa27,\n  /* 0x4980 */\n  0x7d58,\n  /* 0x49C0 */\n  0xfb6a, 0xfb70,\n  /* 0x4A00 */\n  0xfb75, 0xfb78,\n  /* 0x4A80 */\n  0xfc37,\n  /* 0x4B00 */\n  0xfc55,\n  /* 0x4BC0 */\n  0xfd26, 0xfd28, 0xfd2a, 0xfd31,\n  /* 0x4C00 */\n  0x7e3e, 0xfd3f,\n  /* 0x4CC0 */\n  0xfe2a, 0xfe2d,\n  /* 0x4D00 */\n  0xfe4b,\n  /* 0x4D40 */\n  0xfe60,\n  /* 0x4E00 */\n  0x306c, 0x437a, 0xa122, 0x3c37, 0x4b7c, 0x3e66, 0x3b30, 0x3e65,\n  0x323c, 0x4954, 0x4d3f, 0xa123, 0x5022, 0x312f, 0xa124, 0x336e,\n  0x5023, 0x4024, 0x5242, 0x3556, 0x4a3a, 0x3e67, 0x4e3e, 0x4a42,\n  0x2e24, 0xa125, 0x5024, 0xa126, 0xf02e, 0x4366, 0xa127, 0x2e25,\n  0x2e26, 0x5025, 0x367a, 0x5026, 0x345d, 0x4330, 0x3c67, 0x5027,\n  0x5028,\n  /* 0x4E40 */\n  0xa128, 0x5029, 0x4735, 0x3557, 0xa129, 0xa12a, 0x4737, 0x4663,\n  0x3843, 0x4b33, 0xa12c, 0x6949, 0x502a, 0x3e68, 0x502b, 0x3235,\n  0xa12f, 0x3665, 0x3870, 0x4c69, 0x5626, 0xa130, 0x4d70, 0x467d,\n  0x3425,\n  /* 0x4E80 */\n  0x3535, 0x502c, 0x502d, 0x4e3b, 0x4d3d, 0x4168, 0x502f, 0x3b76,\n  0x4673, 0x2e27, 0x5032, 0x313e, 0x385f, 0x385e, 0x3066, 0x4f4b,\n  0x4f4a, 0x3a33, 0x3021, 0xa131, 0x5033, 0x5034, 0x5035, 0x4b34,\n  0x5036, 0x3872, 0x3067, 0x4b72, 0x357c, 0x357d, 0x357e, 0x4462,\n  0x4e3c, 0x5037, 0x5038, 0x5039, 0xa134, 0x3f4d, 0xa135, 0xa137,\n  /* 0x4EC0 */\n  0x3d3a, 0x3f4e, 0x503e, 0xa138, 0x503c, 0x503d, 0x3558, 0xa139,\n  0x3a23, 0x3270, 0x503b, 0x503a, 0x4a29, 0xa13a, 0x3b46, 0x3b45,\n  0x423e, 0x503f, 0x4955, 0x4067, 0xa13c, 0x2138, 0x5040, 0x5042,\n  0x2e28, 0x4265, 0x4e61, 0x304a, 0xa13b, 0x5041, 0x323e, 0x3644,\n  0xa13d, 0x4367, 0xa13e, 0x376f, 0x5043, 0x4724, 0x2e29, 0x2e2a,\n  /* 0x4F00 */\n  0xa13f, 0x346b, 0x2e2b, 0x5044, 0x304b, 0x2e2c, 0x3860, 0x346c,\n  0x497a, 0x4832, 0x3559, 0xa140, 0x3271, 0x5067, 0x4541, 0x476c,\n  0x5046, 0x483c, 0x4e62, 0xa142, 0x3f2d, 0x3b47, 0x3b77, 0x3240,\n  0xa143,\n  /* 0x4F40 */\n  0x4451, 0x4322, 0x504a, 0x2e2e, 0x2e2f, 0x304c, 0x4463, 0x3d3b,\n  0x3a34, 0x4d24, 0x424e, 0xa144, 0x323f, 0x2e30, 0x5049, 0xa145,\n  0x4d3e, 0x5045, 0x5047, 0x3a6e, 0x5048, 0x5524, 0x2e31, 0x2e2d,\n  0xa141, 0x5050, 0x2e32, 0x2e33, 0x5053, 0x5051, 0x3242, 0x4a3b,\n  0x504b, 0xa147, 0xa148, 0xa149, 0x504f, 0x3873, 0xa14a, 0x2e34,\n  0x3b48,\n  /* 0x4F80 */\n  0xa14b, 0x3426, 0xa14c, 0x5054, 0x504c, 0x2e35, 0x4e63, 0x3b78,\n  0x504d, 0x5052, 0xa14d, 0x2e36, 0x5055, 0x2e37, 0x504e, 0xa14e,\n  0x3621, 0x304d, 0x3622, 0x3241, 0x5525, 0x4b79, 0x496e, 0x3874,\n  0xa150, 0x3f2f, 0x4e37, 0xa151, 0x4a58,\n  /* 0x4FC0 */\n  0x3738, 0x4225, 0x3264, 0xa152, 0x2e39, 0x3d53, 0xa153, 0x5059,\n  0xa154, 0x505e, 0x505c, 0xa155, 0x5057, 0x422f, 0x505a, 0x505d,\n  0x505b, 0x4a5d, 0x5058, 0x2e3a, 0x3f2e, 0x4b73, 0x505f, 0x5060,\n  0xa14f, 0x3d24, 0x506d, 0x2e21, 0xa157, 0x4750, 0x4936, 0x5068,\n  0x4a70, 0x3236, 0x506c,\n  /* 0x5000 */\n  0xa158, 0x2e3b, 0x2e3c, 0x5066, 0x506f, 0x4152, 0x3844, 0x475c,\n  0x2e3d, 0x6047, 0xa159, 0x506e, 0x455d, 0xa15a, 0x5063, 0x3876,\n  0x2e3e, 0x3875, 0x5061, 0xa15b, 0xa15c, 0x3c5a, 0x5069, 0xa15d,\n  0x4a6f, 0x434d, 0x5065, 0x3771, 0x2e3f, 0x5062, 0x506a, 0x5064,\n  0x4e51, 0x506b, 0x4f41, 0x2e40, 0x3666, 0x3770, 0x2e42,\n  /* 0x5040 */\n  0x2e41, 0x2e43, 0xa15f, 0x5070, 0xa160, 0x5071, 0x5075, 0x304e,\n  0xa161, 0x4a50, 0x5074, 0xa162, 0x5073, 0x5077, 0xa163, 0x5076,\n  0x4464, 0xa164, 0x3772, 0xa165, 0xa166, 0x5078, 0xa167, 0x3c45,\n  0x4226, 0x4465, 0x3676, 0x5079, 0x3536,\n  /* 0x5080 */\n  0x507a, 0x507c, 0xa169, 0x4b35, 0x3766, 0xa16a, 0xa16b, 0x2e44,\n  0xa16c, 0xa16d, 0x3b31, 0x4877, 0x507b, 0xa16e, 0xa168, 0xa16f,\n  0x3a45, 0x4d43, 0xa171, 0x507e, 0x5123, 0x507d, 0x3a44, 0x3d7d,\n  0xa172, 0xa173, 0x3739,\n  /* 0x50C0 */\n  0x5124, 0xa174, 0x364f, 0xa175, 0x5121, 0x5122, 0x2e45, 0x462f,\n  0xa178, 0x417c, 0x2e47, 0x3623, 0xa17a, 0x4b4d, 0x5125, 0xa17b,\n  0x4e3d, 0x5126, 0xa17c, 0x5129, 0x5127, 0x2e48, 0x414e, 0xa17d,\n  0x5128, 0x512a, 0x2e46, 0xa176, 0x512c, 0x512b, 0x4a48,\n  /* 0x5100 */\n  0x3537, 0x512e, 0x512f, 0x2e4b, 0x322f, 0x2e4a, 0xa321, 0x512d,\n  0x2e4c, 0x3c74, 0x5132, 0x5131, 0x5130, 0xa323, 0x5056, 0x5133,\n  0xa324, 0x2e4d, 0x3d7e, 0x5134, 0x4d25, 0x4c59, 0x2e4e, 0x5136,\n  0x5135, 0x5138, 0x5137, 0x5139,\n  /* 0x5140 */\n  0x513a, 0x3074, 0x3835, 0x373b, 0x3d3c, 0x437b, 0x3624, 0x4068,\n  0x3877, 0x2e4f, 0x396e, 0x513c, 0x4c48, 0x4546, 0x3b79, 0x513b,\n  0x513d, 0x2e51, 0x2e52, 0x455e, 0x3375, 0xa326, 0x513e, 0x467e,\n  0x4134, 0x5140, 0x5141, 0x482c, 0x3878, 0x4f3b, 0x5142, 0x3626,\n  0xa328, 0x4a3c, 0x4236, 0x3671, 0x4535, 0xf474, 0x3773,\n  /* 0x5180 */\n  0x5143, 0x5144, 0xa329, 0x4662, 0x315f, 0x5147, 0x3a7d, 0xa32a,\n  0x5146, 0x3a46, 0x5148, 0x666e, 0x5149, 0x4b41, 0x514a, 0x514b,\n  0x514c, 0x3e69, 0xa32c, 0x3c4c, 0x2e54, 0x3427, 0x514f, 0xa32d,\n  0x514d, 0x4c3d, 0x514e, 0x495a, 0x5150, 0x5151, 0x5152, 0x455f,\n  0xa32e, 0x5156, 0x5154, 0x5155, 0x5153, 0x3a63, 0x5157, 0x4c6a,\n  0x4e64, 0xa330, 0x5158,\n  /* 0x51C0 */\n  0x2e55, 0x4028, 0x5159, 0x3d5a, 0x515a, 0x2e56, 0x437c, 0x4e3f,\n  0x4560, 0x5245, 0x515b, 0x7425, 0x3645, 0x2e57, 0x515c, 0x4b5e,\n  0x2e58, 0x3d68, 0x427c, 0x515e, 0x4664, 0x515f, 0x2e59, 0x5160,\n  0x332e, 0xa333, 0xa334, 0x5161, 0x3627, 0x464c, 0x317a, 0x3d50,\n  0x4821, 0x5162,\n  /* 0x5200 */\n  0x4561, 0x2e5a, 0xa335, 0x3f4f, 0x5163, 0x4a2c, 0x405a, 0x3422,\n  0x3429, 0x5164, 0x5166, 0x373a, 0xa336, 0x2e5c, 0x5165, 0x2e5d,\n  0xa337, 0x4e73, 0x3d69, 0x483d, 0x4a4c, 0x5167, 0x4d78, 0x5168,\n  0x5169, 0x457e, 0x516a, 0x4029, 0x3a7e, 0x3774, 0x516b, 0x3b49,\n  0x396f,\n  /* 0x5240 */\n  0x4466, 0x516d, 0x4227, 0x2e5e, 0x3a6f, 0x516e, 0x516f, 0x4130,\n  0x516c, 0x5171, 0xa339, 0x4b36, 0x2e5f, 0x3964, 0xa33a, 0x2f7e,\n  0x5170, 0x2e60, 0x3775, 0x3a5e, 0x476d, 0x5174, 0x5172, 0xa33b,\n  0x497b, 0x3e6a, 0x517b, 0x3364, 0x5175, 0x5173, 0x414f, 0xa33c,\n  0x5177, 0x5176,\n  /* 0x5280 */\n  0xa33e, 0x3344, 0xa33d, 0x3760, 0x517c, 0x4e2d, 0x5178, 0x517d,\n  0x517a, 0x2e61, 0x5179, 0xa340, 0x4e4f, 0x3879, 0x3243, 0x4e74,\n  0xa342, 0xa343, 0x3d75, 0x4558, 0x3965, 0x5222, 0x5223, 0xa344,\n  0x4e65, 0x4f2b, 0x5225, 0x387a, 0xa345, 0xa346, 0x5224, 0x332f,\n  /* 0x52C0 */\n  0x5226, 0x4b56, 0x443c, 0x4d26, 0x2e62, 0x4a59, 0xa347, 0x2e64,\n  0x5227, 0x2e65, 0xa349, 0x7055, 0x4630, 0x2e66, 0x5228, 0x342a,\n  0x4c33, 0x2e67, 0x3e21, 0x5229, 0x4a67, 0x522d, 0x402a, 0x522a,\n  0x3650, 0x522b, 0x342b, 0x2e69, 0x372e, 0x522e, 0x522f, 0xa34b,\n  0x5230, 0x5231, 0x3c5b, 0x2e6a, 0x387b, 0x4c5e,\n  /* 0x5300 */\n  0x2e6b, 0x4c68, 0x4677, 0x4a71, 0x5232, 0x2e6c, 0x5233, 0xa34c,\n  0xa34d, 0x5235, 0x5237, 0x5236, 0x5238, 0x323d, 0x4b4c, 0x3a7c,\n  0x5239, 0x2e6d, 0x4159, 0x3e22, 0x3629, 0x523a, 0xa34e, 0x485b,\n  0x523b, 0x523c, 0x523d, 0xa34f, 0x523e, 0x4924, 0x3668, 0x3065,\n  0xa350, 0x463f,\n  /* 0x5340 */\n  0x523f, 0x3d3d, 0xa351, 0x4069, 0x5241, 0x5240, 0x3e23, 0x3861,\n  0x5243, 0x483e, 0x5244, 0x485c, 0x4234, 0x426e, 0x3628, 0x466e,\n  0x4331, 0x476e, 0x4b4e, 0x5246, 0x406a, 0x2e6f, 0x2e70, 0x3735,\n  0xa354, 0x5247, 0xa355, 0x5248, 0x312c, 0x3075, 0x346d, 0x4228,\n  0x3551, 0x4d71, 0x524b, 0x3237, 0xa356, 0x524a, 0x2e71, 0x362a,\n  /* 0x5380 */\n  0x524c, 0x4c71, 0x2e72, 0x524d, 0x4e52, 0x387c, 0x2e73, 0x3836,\n  0x524e, 0xa357, 0x5250, 0x524f, 0x3f5f, 0x3139, 0x315e, 0x5251,\n  0x5252, 0x2e74, 0x3837, 0xa358, 0x5253, 0xa35a, 0x356e,\n  /* 0x53C0 */\n  0xa35b, 0x3b32, 0x5254, 0x4b74, 0x3a35, 0x355a, 0x4d27, 0x4150,\n  0x483f, 0x3c7d, 0x3d47, 0xa35f, 0x3c68, 0x3c75, 0x3d76, 0xa360,\n  0x4840, 0x5257, 0x3143, 0x4151, 0x387d, 0x3845, 0x3667, 0x525b,\n  0x4321, 0x427e, 0x362b, 0x3e24, 0x525c, 0x525a, 0x3244, 0x4266,\n  0x3c38, 0x3b4b, 0x3126, 0xa362, 0xa363, 0x3370, 0x3966, 0x3b4a,\n  0x525d,\n  /* 0x5400 */\n  0x525e, 0x3549, 0x3346, 0x3967, 0x3548, 0x445f, 0x3125, 0x4631,\n  0x4c3e, 0x3921, 0x4d79, 0x4547, 0x387e, 0x2e75, 0x372f, 0x5267,\n  0x4f7e, 0x3663, 0x4b4a, 0xa365, 0x485d, 0x2e76, 0xa366, 0x5266,\n  0x345e, 0x5261, 0x5262, 0x5264, 0x5265, 0x355b, 0x3f61, 0x4a2d,\n  0x5263, 0x525f, 0x3863,\n  /* 0x5440 */\n  0x5260, 0x4f24, 0xa368, 0x4a72, 0x4468, 0x3862, 0x3970, 0x2e77,\n  0x5268, 0x465d, 0xa364, 0x526c, 0xa369, 0xa36a, 0x3c7e, 0x3c76,\n  0x2e79, 0xa36b, 0x526f, 0x526d, 0x4c23, 0x2e7a, 0x526a, 0x5273,\n  0x526e, 0x5271, 0x3846, 0x4c3f, 0x2e7b,\n  /* 0x5480 */\n  0x5272, 0x5274, 0x5276, 0x2e7c, 0xa36c, 0x3a70, 0x4f42, 0xa36d,\n  0x526b, 0x5269, 0x5275, 0x5270, 0xa36e, 0x2e7d, 0x2e78, 0xa36f,\n  0x2e7e, 0x5278, 0x5323, 0x527a, 0xa370, 0x527e, 0x2f21, 0x5321,\n  0x527b, 0xa371, 0xa372, 0x533e, 0x3a69, 0x3331, 0xa373, 0x5279,\n  0xa374, 0x5325, 0x3076, 0x5324, 0xa375,\n  /* 0x54C0 */\n  0x3025, 0x494a, 0x5322, 0xa376, 0x527c, 0x2f22, 0x5277, 0x527d,\n  0x3a48, 0x5326, 0x3077, 0x532f, 0x5327, 0x5328, 0x3e25, 0x4b69,\n  0xa378, 0x532d, 0x532c, 0xa379, 0xa37a, 0x452f, 0xa37b, 0x532e,\n  0x532b, 0x2f23,\n  /* 0x5500 */\n  0xa37c, 0xa37d, 0x3134, 0x3a36, 0x3f30, 0xa37e, 0x2f24, 0x5329,\n  0x4562, 0x532a, 0x3022, 0x2f25, 0x5334, 0x4d23, 0x3e27, 0x533a,\n  0x2f26, 0x5339, 0x5330, 0xa421, 0x4243,\n  /* 0x5540 */\n  0x5331, 0xa422, 0x426f, 0x5336, 0x3e26, 0xa424, 0xa425, 0x5333,\n  0x4c64, 0x2f27, 0x373c, 0x5337, 0x5338, 0x5335, 0x533b, 0x2f28,\n  0xa427, 0xa428, 0x5332, 0xa429, 0x5341, 0x5346, 0xa42b, 0x5342,\n  /* 0x5580 */\n  0x533d, 0x2f29, 0xa42c, 0x5347, 0x4131, 0x2f2a, 0x5349, 0xa42d,\n  0x3922, 0x533f, 0x437d, 0x2f2b, 0xa42e, 0x5343, 0x533c, 0x342d,\n  0x346e, 0x3365, 0x5344, 0x5340, 0x3776, 0x534a, 0x5348, 0x4153,\n  0x354a, 0x362c, 0x2f2d, 0x5345, 0x3674, 0x3144, 0xa433,\n  /* 0x55C0 */\n  0x534e, 0x534c, 0x5427, 0xa434, 0xa435, 0x2f2e, 0xa436, 0xa430,\n  0x5351, 0x534b, 0x534f, 0xa437, 0x534d, 0xa439, 0x3b4c, 0x5350,\n  0xa43b, 0x5353, 0x5358, 0x5356, 0x5355,\n  /* 0x5600 */\n  0x4332, 0xa43e, 0x2f30, 0x3245, 0x2f31, 0xa43f, 0x5352, 0x5354,\n  0x3e28, 0x3133, 0x5357, 0xa43c, 0x325e, 0x5362, 0xa440, 0x3e7c,\n  0x535e, 0x535c, 0x535d, 0xa441, 0x535f, 0x2f32, 0xa443, 0xa444,\n  /* 0x5640 */\n  0xa445, 0x313d, 0xa446, 0x2f33, 0x4139, 0x5359, 0x535a, 0x7427,\n  0x337a, 0xa447, 0xa448, 0x5361, 0x2f35, 0x346f, 0x5364, 0x5360,\n  0x5363, 0xa449, 0x2f37, 0x2f38, 0x2f39, 0x4a2e, 0x2f34, 0x4655,\n  0x4838,\n  /* 0x5680 */\n  0x5366, 0x5365, 0x3345, 0xa44b, 0x5367, 0xa44c, 0x536a, 0x5369,\n  0xa44d, 0x2f3a, 0xa44e, 0xa44f, 0x2f3b, 0x5368, 0x4739, 0x536b,\n  0xa450, 0x2f3c, 0x2f3d, 0xa451, 0x536c, 0xa452, 0x2f3e, 0x536e,\n  0x536d, 0x5370,\n  /* 0x56C0 */\n  0x5373, 0x5371, 0x536f, 0x5372, 0xa453, 0x5374, 0x2f3f, 0x2f40,\n  0xa454, 0x5375, 0x5376, 0x5377, 0x5378, 0x5145, 0x3c7c, 0x3b4d,\n  0x3273, 0xa455, 0x3078, 0x4344, 0xa456, 0x5379, 0x3a24, 0x304f,\n  0x3f5e, 0xa457, 0xa458, 0x537a, 0x3847, 0x3971, 0x537c,\n  /* 0x5700 */\n  0x537b, 0x4a60, 0x537d, 0x5421, 0x537e, 0x2f41, 0x5422, 0x5423,\n  0x3777, 0x3160, 0x5424, 0xa45a, 0x5426, 0x5425, 0x5428, 0x455a,\n  0x2f43, 0xa45b, 0x5429, 0x3035, 0x3a5f, 0xa45d, 0x373d, 0x2f44,\n  0x434f, 0x2f45, 0x2f46, 0x542a, 0x542b, 0x542d,\n  /* 0x5740 */\n  0x542e, 0x3a64, 0xa45f, 0xa460, 0x3651, 0x4b37, 0xa461, 0xa462,\n  0x542c, 0x542f, 0x3a41, 0x3923, 0x5433, 0x3a25, 0x4333, 0xa464,\n  0x5430, 0x445a, 0xa465, 0x2f47, 0xa466, 0xa467, 0xa468, 0x2f48,\n  0xa469, 0x2f49, 0x5434,\n  /* 0x5780 */\n  0x3f62, 0x5432, 0x5435, 0x373f, 0x5436, 0xa46d, 0x2f4a, 0xa46e,\n  0xa46f, 0x5437, 0x3924, 0x3340, 0x5439, 0xa470, 0x543a, 0xa46c,\n  0x543b, 0x5438, 0x2f4d,\n  /* 0x57C0 */\n  0x5431, 0x543c, 0x543d, 0x2f4e, 0x2f4f, 0x4b64, 0xa473, 0x3e6b,\n  0x2f50, 0x543f, 0x5440, 0x543e, 0x5442, 0xa471, 0x4738, 0xa476,\n  0x3068, 0x4956, 0x5443, 0x2f51, 0xa477, 0x2f52, 0xa478, 0x3e7d,\n  0x2f53, 0x2f54, 0x3c39, 0xa47a, 0x475d, 0x3470, 0xa47b, 0x3a6b,\n  0xa47c, 0x2f55,\n  /* 0x5800 */\n  0x4b59, 0x4632, 0xa47d, 0x3778, 0x424f, 0x2f56, 0x5441, 0x5444,\n  0x4244, 0x5445, 0x5446, 0xa47e, 0xa521, 0x5448, 0x4469, 0xa522,\n  0x342e, 0x7421, 0x3161, 0x4a73, 0xa523, 0x3e6c, 0x4548, 0xa524,\n  0x3a66, 0x544e,\n  /* 0x5840 */\n  0x4a3d, 0x4e5d, 0xa526, 0x3274, 0x544a, 0xa527, 0x413a, 0x544d,\n  0x4563, 0x4549, 0x4564, 0x4839, 0x444d, 0x3a49, 0x2f58, 0x5449,\n  0x2f59, 0xa528, 0x3176, 0x4536, 0x544b, 0x5447, 0x3f50, 0x544f,\n  0x2f5b, 0x3d4e,\n  /* 0x5880 */\n  0x362d, 0x5450, 0x2f5c, 0xa529, 0xa52a, 0xa52b, 0xa52c, 0xa52d,\n  0x4a68, 0xa52e, 0x417d, 0x4446, 0xa52f, 0x2f5d, 0x5452, 0x4b4f,\n  0x2f5f, 0xa530, 0x5453, 0x5458, 0xa531, 0x4a2f, 0x5457, 0x5451,\n  0x5454, 0x5456, 0x3a26,\n  /* 0x58C0 */\n  0x4a49, 0xa533, 0x5459, 0x4345, 0x3275, 0x3e6d, 0xa534, 0x2f62,\n  0x545b, 0x2f61, 0x545a, 0x2f63, 0x3968, 0x545c, 0x545e, 0x545d,\n  0x2f64, 0x5460, 0x5455, 0x5462, 0x2f65, 0xa535, 0x5461, 0x545f,\n  0x2f66, 0x3b4e, 0x3f51, 0x4154, 0x5463, 0x403c, 0x306d, 0x4764,\n  0xa536, 0xa537, 0x445b, 0x5465, 0x5464, 0x5466, 0x5467, 0x5468,\n  /* 0x5900 */\n  0x5469, 0xa538, 0xa539, 0x4a51, 0x546a, 0xa53a, 0x2f67, 0xa53b,\n  0x3246, 0x546b, 0xa53c, 0x4d3c, 0x3330, 0x5249, 0x3d48, 0x423f,\n  0x546c, 0x4c6b, 0x4c34, 0xa53d, 0x546e, 0x4267, 0x4537, 0x4240,\n  0x4957, 0x546f, 0x5470, 0x317b, 0x3c3a, 0x5471, 0x3050, 0x5472,\n  0xa540, 0x5473,\n  /* 0x5940 */\n  0x3162, 0xa542, 0x3471, 0x4660, 0x4a74, 0x5477, 0x4155, 0x5476,\n  0x3740, 0x4b5b, 0x5475, 0x4565, 0x5479, 0x5478, 0xa545, 0x2f69,\n  0xa546, 0x547b, 0x547a, 0x317c, 0x547c, 0x3e29, 0x547e, 0x4325,\n  0x547d, 0x2f6a, 0x4a33, 0x3d77, 0x455b, 0xa548, 0xa549, 0x5521,\n  0xa54a, 0x3925,\n  /* 0x5980 */\n  0x5522, 0x4721, 0x485e, 0x4c51, 0x4725, 0x2f6b, 0x552b, 0x2f6c,\n  0x3538, 0x4d45, 0x4c2f, 0x562c, 0x5523, 0xa54b, 0x5526, 0x2f6d,\n  0x4245, 0x4b38, 0x454a, 0xa54c, 0x5527, 0x4b65, 0x3a4a, 0xa54d,\n  0x3e2a,\n  /* 0x59C0 */\n  0x2f6e, 0x5528, 0xa54e, 0x3b50, 0x3b4f, 0xa54f, 0x3039, 0x3848,\n  0x2f6f, 0x402b, 0x3051, 0x552c, 0x552d, 0x552a, 0x2f70, 0xa550,\n  0xa551, 0xa552, 0x3138, 0x342f, 0xa553, 0x5529, 0x4c45, 0x4931,\n  0xa554, 0x3028, 0x7e7a, 0x3079, 0x3b51,\n  /* 0x5A00 */\n  0x3052, 0x3023, 0x5532, 0xa558, 0xa559, 0x5530, 0x2f71, 0xa55a,\n  0x4c3c, 0x5533, 0x5531, 0x552f, 0x3f31, 0x2f72, 0x552e, 0xa55b,\n  0x4a5a, 0xa55c, 0x3864, 0x5537, 0x5538, 0x3e2b,\n  /* 0x5A40 */\n  0x5534, 0x4f2c, 0x474c, 0x5536, 0xa55d, 0x3a27, 0x5539, 0xa55e,\n  0x4958, 0x2f73, 0x553a, 0x5535, 0x2f74, 0x2f75, 0xa55f, 0x2f76,\n  0x4c3b,\n  /* 0x5A80 */\n  0x2f77, 0xa560, 0x475e, 0x553b, 0x4932, 0xa561, 0x2f78, 0xa562,\n  0xa563, 0xa564, 0x2f79, 0xa565, 0xa566, 0xa567, 0xa568, 0x553c,\n  0x5540, 0x553d, 0xa569,\n  /* 0x5AC0 */\n  0x3247, 0x553f, 0x2f7a, 0x3c3b, 0x553e, 0x3779, 0x554c, 0x5545,\n  0x5542, 0xa56a, 0xa56b, 0xa56c, 0x4364, 0x5541, 0xa56d, 0x5543,\n  0x5544, 0xa56f, 0xa56e, 0xa570, 0x5546, 0x5547,\n  /* 0x5B00 */\n  0xa571, 0xa572, 0x3472, 0x5549, 0x5548, 0x554a, 0xa573, 0x2f7c,\n  0x3e6e, 0x2f7d, 0x554d, 0x445c, 0xa575, 0x3145, 0x554b, 0xa574,\n  0x554e, 0x554f,\n  /* 0x5B40 */\n  0x5552, 0x4f55, 0x5550, 0x5551, 0xa576, 0x3b52, 0x5553, 0xa577,\n  0x3926, 0x5554, 0x4f56, 0x3b7a, 0x4238, 0x5555, 0x5556, 0x3b5a,\n  0x3927, 0x4c52, 0x3528, 0x3849, 0x5557, 0x3358, 0xa578, 0x5558,\n  0x4239, 0xa579, 0x5559, 0x5623, 0x555a, 0x555b, 0x555c, 0x555e,\n  0xa57a, 0x4f57, 0xa57b,\n  /* 0x5B80 */\n  0x555f, 0xa57c, 0x5560, 0xa57d, 0x4270, 0x3127, 0x3c69, 0x3042,\n  0x4157, 0x3430, 0x3c35, 0x3928, 0x4f58, 0x4566, 0xa821, 0x3d21,\n  0x3431, 0x4368, 0x446a, 0x3038, 0x3539, 0x4a75, 0x3c42, 0x3552,\n  0x406b, 0x3c3c, 0x4d28, 0x5561, 0xa822, 0x355c, 0x3a4b, 0x3332,\n  0x3163, 0x3e2c, 0x3248, 0x5562, 0x4d46, 0x3d49,\n  /* 0x5BC0 */\n  0xa824, 0x3c64, 0x5563, 0x3473, 0x4652, 0x4c29, 0x5564, 0x5565,\n  0x4959, 0xa826, 0x5567, 0x3428, 0x3677, 0x5566, 0xa827, 0x4f59,\n  0x3432, 0x3f32, 0x556b, 0x3b21, 0x3249, 0x556a, 0x5568, 0x556c,\n  0x5569, 0x472b, 0x5c4d, 0x3f33, 0x556d, 0x4f5a, 0x4e40, 0x556e,\n  0xa82a, 0x5570, 0x437e, 0x556f, 0x4023, 0x3b7b, 0xa82b, 0x4250,\n  0x3c77,\n  /* 0x5C00 */\n  0x4975, 0x406c, 0xa82d, 0x3c4d, 0x5571, 0x3e2d, 0x5572, 0x5573,\n  0x3053, 0x423a, 0x3f52, 0x5574, 0x4633, 0x3e2e, 0x3e2f, 0x4f5b,\n  0x5575, 0x406d, 0x3e30, 0x4f5c, 0x5576, 0x5577, 0x4f5d, 0x4c60,\n  0x5578, 0xa82e, 0x4f5e, 0x3646, 0xa82f, 0x3d22, 0x5579, 0x557a,\n  0x3c5c, 0x3f2c, 0x4674, 0x3f54, 0x4878, 0x4722,\n  /* 0x5C40 */\n  0x3649, 0x557b, 0x356f, 0x557c, 0x367e, 0x464f, 0x3230, 0x3b53,\n  0x557d, 0x5622, 0x5621, 0x367d, 0x557e, 0x4538, 0x7e7b, 0x4230,\n  0xa831, 0x454b, 0x3c48, 0x4f60, 0xa832, 0x4158, 0x4d7a, 0xa833,\n  0xa834, 0xa835, 0x5624, 0x5625, 0x4656, 0xa836, 0x3b33, 0x5627,\n  0x5628, 0x4f64, 0xa839,\n  /* 0x5C80 */\n  0xa83c, 0xa83d, 0x5629, 0x4f65, 0x3474, 0x562a, 0x562b, 0x4f66,\n  0xa841, 0x322c, 0xa842, 0x4f67, 0xa843, 0xa844, 0x413b, 0x3464,\n  0x4f68, 0x562d, 0x4c28, 0xa846, 0x4252, 0x3359, 0xa847, 0x562f,\n  0x5631, 0x345f, 0x4f69, 0x562e, 0x5630, 0x5633,\n  /* 0x5CC0 */\n  0x5632, 0x5634, 0xa849, 0x4f6a, 0x4f6b, 0x4f6c, 0x5635, 0x463d,\n  0x362e, 0x3265, 0x5636, 0x563b, 0x5639, 0x4a77, 0x4a76, 0x4f6d,\n  0x4567, 0x5638, 0x3d54, 0x5637,\n  /* 0x5D00 */\n  0xa84c, 0x3f72, 0x563c, 0x4f70, 0x3a6a, 0xa84d, 0x5642, 0x5643,\n  0x563d, 0x3333, 0x563e, 0x5647, 0x5646, 0x5645, 0x5641, 0xa84f,\n  0x5640, 0xa850, 0x5644, 0xa851, 0xa852, 0x4f71, 0x4a78, 0xa84e,\n  0xa853, 0xa854,\n  /* 0x5D40 */\n  0xa855, 0x4f73, 0x4f74, 0x4f76, 0x564b, 0x5648, 0x564a, 0x4d72,\n  0x5649, 0x4f75, 0x563f, 0xa857, 0x3f73, 0xa858, 0x564c, 0x4f77,\n  0x3a37, 0xa85a, 0x564d, 0x564e,\n  /* 0x5D80 */\n  0x4f78, 0x5651, 0x5650, 0x564f, 0xa85d, 0x4568, 0x563a, 0x5657,\n  0xa85f, 0xa860, 0xa861, 0xa862, 0x5653, 0x4f79, 0x5652, 0x4f7a,\n  0x4f7b, 0x5654, 0x5655, 0xa863, 0xa864, 0xa865, 0x5658, 0x4f7c,\n  0xa867, 0x4e66, 0x5659, 0x5656,\n  /* 0x5DC0 */\n  0x565a, 0x4f7d, 0x3460, 0x565b, 0xa868, 0x565d, 0x565c, 0x565e,\n  0xa869, 0xa86a, 0x565f, 0x406e, 0x3d23, 0xa86b, 0x3d64, 0x7428,\n  0x4163, 0xa86d, 0x3929, 0x3a38, 0x392a, 0x3570, 0xa86e, 0x5660,\n  0x3a39, 0x384a, 0x5661, 0x4c26, 0x4743, 0x5662, 0x392b, 0x342c,\n  0x4327, 0x3652,\n  /* 0x5E00 */\n  0xa870, 0x3b54, 0x495b, 0x4841, 0x5663, 0x3475, 0x5666, 0xa872,\n  0x7429, 0xa873, 0x4421, 0x742a, 0x5665, 0x5664, 0x5667, 0x446b,\n  0xa875, 0x3f63, 0x3b55, 0x404a, 0xa876, 0x4253, 0x3522, 0x4422,\n  0x5668, 0x5669, 0x3e6f, 0x4b39, 0xa877,\n  /* 0x5E40 */\n  0x566c, 0x566b, 0x566a, 0x497d, 0x5673, 0xa878, 0x4b5a, 0x566d,\n  0x566f, 0x4b6b, 0xa87a, 0x566e, 0x742b, 0x742c, 0x5670, 0x4828,\n  0x5671, 0x4a3e, 0x5672, 0xa87c, 0xa87d, 0xa87e, 0xac21, 0x3433,\n  0x4a3f, 0x472f, 0x5674, 0x5675, 0x7e7c, 0x392c, 0x3434, 0x5676,\n  0x3838, 0x4d44, 0x4d29, 0x3476, 0x5678,\n  /* 0x5E80 */\n  0x4423, 0x392d, 0x3e31, 0x485f, 0x3e32, 0x3d78, 0x446c, 0x4a79,\n  0x4539, 0x392e, 0x495c, 0x5679, 0xac23, 0x4559, 0x3a42, 0xac24,\n  0x384b, 0xac25, 0x446d, 0x3043, 0x3d6e, 0x392f, 0x4d47, 0xac26,\n  0x742d, 0xac27,\n  /* 0x5EC0 */\n  0x567a, 0x567b, 0x4751, 0xac28, 0x567c, 0x4e77, 0x4f2d, 0x742f,\n  0x567e, 0x567d, 0xac29, 0x3347, 0x5721, 0xac2a, 0x5724, 0x5725,\n  0x5723, 0x4940, 0x3e33, 0x5727, 0x5726, 0x5722, 0x5728, 0x5729,\n  0x572a, 0x572d, 0x572b, 0x572c, 0x572e, 0x3164, 0x446e, 0x572f,\n  0x7430, 0x377a, 0x3276, 0x4736, 0xac2c, 0x5730, 0x467b,\n  /* 0x5F00 */\n  0x7431, 0x4a5b, 0x7432, 0x5731, 0x4f2e, 0x7433, 0xac2d, 0x5732,\n  0x4a40, 0x5735, 0x5021, 0x5031, 0xac2e, 0x3c30, 0x4675, 0x5736,\n  0x355d, 0x4424, 0x307a, 0x5737, 0x4a26, 0x3930, 0x4350, 0xac2f,\n  0x7434, 0xac31, 0x446f, 0x7435, 0x4c6f, 0x3839, 0x384c, 0x5738,\n  0x5739, 0x573f, 0x3c65, 0x7436, 0x4425, 0x7437, 0x362f, 0x573a,\n  0x492b, 0x7438, 0x4346,\n  /* 0x5F40 */\n  0x7439, 0x573b, 0x743a, 0xac32, 0x573c, 0x3630, 0x573d, 0x573e,\n  0x5740, 0x4576, 0x743b, 0x5741, 0x5742, 0x743c, 0x5743, 0x5734,\n  0x5733, 0x5744, 0x3741, 0xac33, 0x743d, 0x4927, 0x743e, 0x3a4c,\n  0x4937, 0x4426, 0x494b, 0x5745, 0x3e34, 0x3146, 0xac34, 0x5746,\n  0x5747, 0x4c72, 0x4860, 0x743f, 0xac35, 0x574a,\n  /* 0x5F80 */\n  0x317d, 0x402c, 0x5749, 0x5748, 0x3742, 0x4254, 0x574e, 0x574c,\n  0x7440, 0x574b, 0x4e27, 0x3865, 0xac36, 0x3d79, 0x574d, 0x454c,\n  0x3d3e, 0x4640, 0x5751, 0x5750, 0x7441, 0x574f, 0x5752, 0x3866,\n  0xac37, 0xac38, 0x7442, 0x5753, 0x497c, 0x3d5b, 0x5754, 0x4879,\n  0x7443, 0x4641, 0x4427, 0x7444, 0x7445, 0xac39, 0x4530, 0x5755,\n  0x352b,\n  /* 0x5FC0 */\n  0x3f34, 0xac3a, 0x492c, 0xac3c, 0x7446, 0xac3d, 0x3477, 0x4726,\n  0xac3e, 0xac3f, 0xac40, 0x5756, 0x3b56, 0x4b3a, 0x4b3b, 0x317e,\n  0x575b, 0x7447, 0x4369, 0x7448, 0xac41, 0x5758, 0x7449, 0x3277,\n  0xac42, 0xac43, 0x582d, 0x575a, 0xac44, 0x4730, 0x5759, 0x5757,\n  0xac45, 0x397a, 0x575d,\n  /* 0x6000 */\n  0x744a, 0x5763, 0x5769, 0x5761, 0x455c, 0x744b, 0x5766, 0x495d,\n  0xac47, 0x744c, 0x5760, 0x5765, 0x4e67, 0x3b57, 0x4255, 0x575e,\n  0xac48, 0xac49, 0x355e, 0x5768, 0x402d, 0x3165, 0x5762, 0x3278,\n  0x5767, 0x3631, 0x5764, 0x744d, 0x744e, 0x576a,\n  /* 0x6040 */\n  0x576c, 0x5776, 0x5774, 0x5771, 0x744f, 0x5770, 0x4e78, 0xac4b,\n  0x5772, 0x3632, 0x3931, 0x3d7a, 0x5779, 0x576b, 0x576f, 0x575f,\n  0x327a, 0x5773, 0x5775, 0x4351, 0x3a28, 0x3238, 0x576d, 0x5778,\n  0x5777, 0x3633, 0x4229, 0x3366, 0x3743, 0x576e, 0xac4c,\n  /* 0x6080 */\n  0x577a, 0x577d, 0x5821, 0x3c3d, 0xac4d, 0x5827, 0x4470, 0x577b,\n  0x5825, 0x3279, 0xac4e, 0x5823, 0x5824, 0x577e, 0x5822, 0x7451,\n  0x7452, 0x3867, 0x4d2a, 0x3435, 0x3159, 0x5826, 0xac4f, 0x473a,\n  0x302d, 0xac51, 0xac52, 0x4861, 0x575c, 0x582c, 0x5830, 0x4c65,\n  0x5829, 0x4569, 0x582e, 0xac53,\n  /* 0x60C0 */\n  0x3e70, 0x582f, 0x4657, 0xac54, 0x7453, 0x4f47, 0x582b, 0x7454,\n  0x7455, 0x5831, 0xac55, 0x397b, 0xac56, 0x404b, 0x7456, 0x3054,\n  0x582a, 0x5828, 0x415a, 0x577c, 0x3b34, 0xac57, 0x4246, 0x583d,\n  0xac58, 0x415b, 0x5838, 0xac59, 0x5835, 0x5836, 0x7457, 0x3c66,\n  0x5839, 0x583c,\n  /* 0x6100 */\n  0x5837, 0x3d25, 0x583a, 0x5834, 0x4c7c, 0x4c7b, 0x583e, 0x583f,\n  0x3055, 0xac5a, 0xac5b, 0xac5c, 0x5833, 0xac5d, 0x3672, 0x3026,\n  0x7458, 0xac5e, 0x3436, 0x583b, 0x5843, 0x5842, 0x7459, 0x5847,\n  0x745a, 0x5848, 0x745b, 0xac5f, 0x5846, 0x5849, 0x5841, 0x5845,\n  /* 0x6140 */\n  0xac61, 0x584a, 0x584b, 0xac62, 0x5840, 0x3b7c, 0x5844, 0x4256,\n  0x3932, 0x5832, 0x3f35, 0x5858, 0x4a69, 0x584e, 0x584f, 0x5850,\n  0x5857, 0x5856, 0xac63, 0x4b7d, 0x3437, 0x5854, 0x3745, 0x3334,\n  0x5851, 0x4e38, 0x5853, 0x3056, 0x5855, 0x584c, 0x5852, 0x5859,\n  0x3744, 0x584d, 0xac64, 0x4d5d,\n  /* 0x6180 */\n  0x4d2b, 0x585c, 0x5860, 0x745d, 0x417e, 0x4e79, 0x5861, 0xac66,\n  0xac67, 0x585e, 0x585b, 0xac68, 0xac69, 0x585a, 0x585f, 0x4a30,\n  0xac6a, 0x4634, 0xac6b, 0x3746, 0x5862, 0x585d, 0xac6c, 0x5863,\n  0x377b, 0x3231, 0x7460, 0x586b, 0x745f, 0x3438,\n  /* 0x61C0 */\n  0x5869, 0x586a, 0x3a29, 0x5868, 0x5866, 0x5865, 0x586c, 0x5864,\n  0x586e, 0x327b, 0xac6e, 0xac6f, 0xac70, 0x5870, 0x586f, 0x4428,\n  0x5873, 0xac71, 0x5871, 0x5867, 0x377c, 0x5872, 0x5876, 0x5875,\n  0x5877, 0x5874,\n  /* 0x6200 */\n  0x5878, 0x5879, 0x587a, 0x4a6a, 0x587c, 0x587b, 0x3d3f, 0x402e,\n  0x3266, 0x327c, 0x587d, 0xac73, 0x303f, 0x404c, 0x587e, 0x6c43,\n  0x5921, 0x3761, 0x5922, 0x7462, 0xac74, 0x406f, 0xac75, 0x5923,\n  0x5924, 0x353a, 0x5925, 0x5926, 0x5927, 0x4257, 0x384d, 0x4c61,\n  0x7463, 0x4b3c,\n  /* 0x6240 */\n  0x3d6a, 0x5928, 0x7464, 0xac76, 0x4070, 0x6e3d, 0x4862, 0x3c6a,\n  0xac77, 0x3a4d, 0x5929, 0xac78, 0xac79, 0x4247, 0x4a27, 0x7465,\n  0x4271, 0x7466, 0x592c, 0x592a, 0x592d, 0xac7a, 0x592b, 0xac7b,\n  0x592e, 0xac7d, 0x4a31, 0x7467, 0x3037, 0xac7e, 0x495e, 0x4863,\n  0xac7c, 0x592f, 0x5932, 0x3e35,\n  /* 0x6280 */\n  0x353b, 0x5930, 0x5937, 0x3e36, 0x7468, 0x5931, 0x4744, 0x4d5e,\n  0x5933, 0x5934, 0x5938, 0x456a, 0x5935, 0x3933, 0x405e, 0xad21,\n  0x5946, 0x4834, 0x4272, 0xad22, 0x4864, 0x5a2d, 0x4a7a, 0x4471,\n  0x4b75, 0x593b, 0x3221, 0x436a,\n  /* 0x62C0 */\n  0x5944, 0x7469, 0x4334, 0x593e, 0x5945, 0x5940, 0x5947, 0x5943,\n  0x5942, 0x476f, 0x593c, 0x327d, 0x593a, 0x3571, 0x4273, 0x5936,\n  0xad23, 0x746a, 0x5939, 0x3934, 0x405b, 0x3e37, 0x5941, 0x4752,\n  0x3572, 0x3348, 0x3367, 0x3f21, 0x5949, 0x594e, 0x594a, 0x377d,\n  0x594f, 0x3b22, 0x3969, 0x746b, 0xad25, 0x3d26, 0x593d,\n  /* 0x6300 */\n  0x3b7d, 0x594c, 0xad26, 0x3b58, 0x594d, 0x3044, 0x746c, 0x5948,\n  0xad27, 0xad28, 0x4429, 0x746d, 0x3573, 0x3634, 0x594b, 0x3027,\n  0x3a43, 0x3f36, 0xad2b, 0xad2c, 0x746e, 0x4472, 0xad2d, 0xad2e,\n  0x4854, 0x5951, 0x415e,\n  /* 0x6340 */\n  0xad2f, 0x746f, 0xad30, 0x422a, 0x3b2b, 0x5952, 0xad31, 0x5954,\n  0x5950, 0x4a61, 0x443d, 0xad33, 0x415c, 0x7470, 0x4a7b, 0x3c4e,\n  0x5960, 0x595f, 0xad36, 0x3f78, 0x377e, 0x5959, 0x3e39, 0x4668,\n  0x4731, 0x7471,\n  /* 0x6380 */\n  0x5957, 0x415d, 0xad37, 0x3c78, 0x595c, 0x3e38, 0x5956, 0x595b,\n  0x4753, 0xad3a, 0x5955, 0x3721, 0xad38, 0x335d, 0x595d, 0x4e2b,\n  0x3a4e, 0x4335, 0x595a, 0x405c, 0x3935, 0x3f64, 0x3166, 0x413c,\n  0x5958, 0x3545, 0x3747, 0x444f, 0x595e, 0x415f, 0xad3b, 0x5961,\n  /* 0x63C0 */\n  0x5963, 0x4237, 0x5969, 0x5964, 0x5966, 0x4941, 0x4473, 0x5967,\n  0xad3d, 0xad3e, 0x4d2c, 0x4d48, 0x3439, 0xad3f, 0xad40, 0x302e,\n  0x5965, 0x7472, 0x5962, 0xad41, 0xad42, 0x7473, 0x3478, 0xad43,\n  0x3167, 0x7474, 0x5968, 0xad3c, 0x4d49,\n  /* 0x6400 */\n  0x596c, 0xad44, 0x423b, 0x5973, 0x7475, 0x596d, 0x7476, 0x596a,\n  0x5971, 0x5953, 0xad45, 0x7477, 0xad46, 0x596e, 0x5972, 0xad47,\n  0x4842, 0x456b, 0xad48, 0x596b, 0x596f, 0x3748, 0x3a71,\n  /* 0x6440 */\n  0x405d, 0x5977, 0x7479, 0x4526, 0xad49, 0xad4a, 0xad4b, 0x747a,\n  0x5974, 0x4b60, 0x747b, 0x5975, 0xad4c, 0x5976, 0x4c4e, 0x7478,\n  0x4022, 0xad4d,\n  /* 0x6480 */\n  0x3762, 0xad4e, 0x597d, 0xad4f, 0x3b35, 0x597a, 0x5979, 0x4732,\n  0xad50, 0x4635, 0xad51, 0x4531, 0x597b, 0x597c, 0x496f, 0x4745,\n  0x3b23, 0x4071, 0x4b50, 0x3349, 0x5a25, 0x597e, 0x747d, 0x747e,\n  /* 0x64C0 */\n  0x4d4a, 0x5a27, 0x7521, 0x5a23, 0x5a24, 0x7522, 0xad52, 0xad53,\n  0x4160, 0x747c, 0x7523, 0x5a22, 0x593f, 0xad54, 0xad55, 0x5a26,\n  0x5a21, 0x5a2b, 0x5a2c, 0x4527, 0x5a2e, 0xad57, 0xad58, 0x3b24,\n  0x5a29, 0x353c, 0x5a2f, 0x5a28, 0x5a33, 0x5a32, 0x5a31, 0x7524,\n  0x5a34, 0x7525, 0x5a36, 0x3e71, 0xad59,\n  /* 0x6500 */\n  0x5a35, 0xad5a, 0x5a39, 0xad5c, 0xad5d, 0xad5e, 0x5a37, 0x5a38,\n  0x5970, 0xad60, 0x7526, 0x5a3b, 0x5a3a, 0x7527, 0x5978, 0x5a3c,\n  0x5a30, 0x3b59, 0xad61, 0x5a3d, 0x5a3e, 0x5a40, 0x5a3f, 0x5a41,\n  0x327e, 0x3936, 0x4a7c, 0x402f,\n  /* 0x6540 */\n  0xad62, 0x384e, 0x5a43, 0x5a46, 0x4952, 0x355f, 0xad63, 0x5a45,\n  0x5a44, 0x4754, 0x5a47, 0x3635, 0x5a49, 0x5a48, 0x343a, 0x3b36,\n  0x4658, 0x7529, 0xad64, 0x3749, 0x3f74, 0x5a4a, 0x4030, 0x4528,\n  0x495f, 0x5a4b, 0xad65,\n  /* 0x6580 */\n  0xad66, 0x5a4c, 0x5a4d, 0xad67, 0xad68, 0x4a38, 0x555d, 0x4046,\n  0xad69, 0x494c, 0x3a58, 0x4865, 0x4843, 0x454d, 0x4e41, 0x5a4f,\n  0x3c50, 0x752a, 0x5a50, 0x3036, 0x3654, 0x404d, 0x4960, 0x5a51,\n  0x3b42, 0x4347, 0x3b5b, 0x3f37, 0xad6a, 0xad6b, 0x5a52, 0xad6c,\n  0x4a7d, 0x3177, 0x3b5c, 0xad6d,\n  /* 0x65C0 */\n  0x5a55, 0xad6e, 0x5a53, 0x5a56, 0x4e39, 0x5a54, 0xad6f, 0x407b,\n  0x5a57, 0x4232, 0x5a58, 0xad70, 0x347a, 0x5a5a, 0x5a59, 0x5a5b,\n  0x5a5c, 0x347b, 0x467c, 0x4336, 0x356c, 0x3b5d, 0x4161, 0x3d5c,\n  0x3030, 0x5a5d, 0xad72, 0xad73, 0x3222, 0x5a61, 0xad74,\n  /* 0x6600 */\n  0x752c, 0x3937, 0x5a60, 0xad75, 0x3a2b, 0x3e3a, 0xad76, 0x752d,\n  0x5a5f, 0x3e3b, 0x4c40, 0x3a2a, 0x3057, 0x404e, 0x752e, 0x5a66,\n  0x752f, 0x4031, 0x3147, 0xad77, 0x7531, 0x7532, 0x3d55, 0x4b66,\n  0x3a72, 0xad78, 0x7533, 0x3e3c, 0x4027, 0x7534, 0x7535, 0x7536,\n  0x5a65, 0x5a63, 0x5a64, 0x7530, 0x436b, 0x5b26,\n  /* 0x6640 */\n  0x5a6a, 0x3b7e, 0x3938, 0x5a68, 0xad79, 0x7538, 0x5a69, 0x3f38,\n  0x7539, 0xad7b, 0x5a67, 0xad7a, 0x3b2f, 0xad7e, 0x753b, 0x753c,\n  0xae21, 0x5a6c, 0x5a6b, 0x5a70, 0x753d, 0x5a71, 0xae22, 0x5a6d,\n  0x753e, 0x3322, 0x5a6e, 0x5a6f, 0x4855, 0xae25, 0xae26, 0xae27,\n  0xae28, 0x4961, 0x374a, 0x5a72, 0x753f, 0x4032, 0x3e3d, 0x7540,\n  0x7541, 0x4352, 0xae29,\n  /* 0x6680 */\n  0xae2a, 0x3647, 0x5a73, 0x5a77, 0x324b, 0x5a74, 0x5a76, 0x7542,\n  0x5a75, 0xae2b, 0x3d6b, 0xae2c, 0x4348, 0x3045, 0x5a78, 0xae2d,\n  0x5a79, 0x7544, 0x442a, 0x4e71, 0x3b43, 0xae2f, 0x4a6b, 0xae30,\n  0x7545, 0x4b3d, 0xae31, 0x5b22, 0x5a7b, 0x7546, 0x5a7e, 0x5a7d,\n  0xae33,\n  /* 0x66C0 */\n  0x5a7a, 0x5b21, 0x7547, 0x465e, 0x7548, 0x5a7c, 0x5b23, 0x3d6c,\n  0x5b24, 0x754a, 0x4d4b, 0x4778, 0x5b25, 0x5b27, 0x754b, 0x5b28,\n  0xae35, 0x5b29, 0x364a, 0x3148, 0x3939, 0x5b2a, 0x5b2b, 0x3d71,\n  0x4162, 0x754c, 0x7537, 0x5258, 0x413e, 0x413d, 0x4258,\n  /* 0x6700 */\n  0x3a47, 0xae37, 0x5072, 0xae38, 0x376e, 0x4d2d, 0x4a7e, 0x497e,\n  0x5b2c, 0xae39, 0x754d, 0x3a73, 0x443f, 0x5b2d, 0x4f2f, 0xae3b,\n  0x4b3e, 0x442b, 0x5b2e, 0x347c, 0x5b2f, 0x5b30, 0x4c5a, 0x4c24,\n  0x4b76, 0x4b5c, 0x3b25, 0x5b32, 0x3c6b, 0x754f, 0x4b51, 0x5b34,\n  0x5b37, 0x5b36, 0x3479, 0x3560, 0x5b33,\n  /* 0x6740 */\n  0x5b35, 0x5b38, 0x7551, 0x7552, 0x3f79, 0xae3e, 0xae3f, 0x4d7b,\n  0x3049, 0x3a60, 0x423c, 0x3c5d, 0xae40, 0x3e73, 0x5b3b, 0x454e,\n  0xae41, 0x5b39, 0x422b, 0x5b3a, 0x3e72, 0x4c5d, 0x5b3c, 0x5b3d,\n  0x4d68, 0x7550, 0x5b42, 0x393a, 0x4755, 0x5b3f, 0x456c, 0x5a5e,\n  0x5a62, 0xae45, 0x354f, 0xae46, 0x4747, 0x7553, 0x5b41, 0x3e3e,\n  0x4844,\n  /* 0x6780 */\n  0x7554, 0x5b47, 0x487a, 0x5b3e, 0x5b44, 0x5b43, 0x404f, 0xae48,\n  0x7555, 0x4b6d, 0x4e53, 0x7556, 0x4b67, 0x7557, 0x324c, 0x3b5e,\n  0x4f48, 0x5b46, 0x3f75, 0x5b45, 0x5b40, 0x384f, 0xae4c, 0xae4d,\n  0x5b4c, 0x5b4a, 0x324d, 0x5b48, 0x5b4e, 0x5b54, 0x7558,\n  /* 0x67C0 */\n  0x755a, 0x4248, 0xae4e, 0x4a41, 0x5b56, 0xae4f, 0x4922, 0x5b55,\n  0x4770, 0x4b3f, 0x343b, 0xae50, 0x4077, 0x3d40, 0x755b, 0x4453,\n  0xae51, 0x4d2e, 0xae52, 0x5b51, 0x5b50, 0x5b52, 0x5b4f, 0x5b57,\n  0x5b4d, 0x5b4b, 0x5b53, 0x5b49, 0xae53, 0x436c, 0x4c78, 0x3c46,\n  0x3a74, 0xae54, 0x7559, 0x3a3a, 0x755c, 0x4b6f, 0x3341,\n  /* 0x6800 */\n  0x755d, 0x444e, 0x464a, 0x3149, 0xae4b, 0x4072, 0x4034, 0x372a,\n  0xae58, 0x755f, 0x5b59, 0xae59, 0x393b, 0x337c, 0x5b5b, 0x3374,\n  0x5b61, 0x7560, 0xae5a, 0x7561, 0x5b5e, 0xae5c, 0x4073, 0x334b,\n  0x3a2c, 0xae5d, 0x334a, 0x3a4f, 0xae5e,\n  /* 0x6840 */\n  0x5b5c, 0x3765, 0x374b, 0x456d, 0xae5f, 0xae60, 0x5b5a, 0x3046,\n  0xae61, 0xae62, 0x5b5d, 0x5b5f, 0x364d, 0x372c, 0x755e, 0x343c,\n  0x354b, 0xae63, 0xae64, 0x5b62, 0x7562, 0x3a79, 0x4b71, 0x3b37,\n  0x5b63, 0x4930, 0xae66, 0xae67, 0x7563, 0x5b6f, 0x7564, 0x3233,\n  0x5b64, 0xae68, 0xae69, 0x5b75, 0x5b65,\n  /* 0x6880 */\n  0x4e42, 0xae6a, 0x5b6c, 0x475f, 0x5b74, 0x5b67, 0xae6b, 0x3034,\n  0x5b69, 0xae6c, 0x393c, 0xae6e, 0xae6f, 0xae70, 0x5b6b, 0xae71,\n  0x5b6a, 0x5b66, 0x5b71, 0x3e3f, 0x7566, 0x7567, 0x546d, 0x3868,\n  0x4d7c, 0xae72, 0xae73, 0x5b68, 0x4474, 0x3323, 0x3a2d, 0x7568,\n  0x5b60, 0xae74, 0x5b70, 0x3361, 0x5b6e, 0x5b72, 0xae75, 0x456e,\n  /* 0x68C0 */\n  0xae7a, 0x347e, 0xae7b, 0x5c32, 0x7569, 0x4c49, 0x5b77, 0x347d,\n  0xae7c, 0x5b7e, 0xae7d, 0x756a, 0x4b40, 0x5c21, 0x5c23, 0xae7e,\n  0x5c27, 0x5b79, 0xaf21, 0x432a, 0x456f, 0x5c2b, 0x5b7c, 0x5c28,\n  0xaf22, 0xaf23, 0x5c22, 0x756b, 0xaf24, 0x756c, 0x3f39, 0x5c2c,\n  0x756d, 0x756e, 0x4033, 0xaf25, 0x5c2a, 0x343d, 0xae76, 0x756f,\n  /* 0x6900 */\n  0x4f50, 0x5b76, 0xaf26, 0x5c26, 0x3058, 0xaf27, 0x5b78, 0x7570,\n  0x4c3a, 0x5b7d, 0x3f22, 0x4447, 0x5b73, 0x5c25, 0x3f7a, 0x5c2f,\n  0x3371, 0x3821, 0x5c31, 0x5b7a, 0x5c30, 0x5c29, 0x5b7b, 0x5c2d,\n  0x5c2e, 0x5c3f, 0x464e, 0x7573, 0x5c24, 0x5c3b, 0xaf2b, 0x5c3d,\n  0x4458,\n  /* 0x6940 */\n  0x7574, 0xaf2d, 0x7571, 0x4d4c, 0x4976, 0x5c38, 0x424a, 0x7575,\n  0x5c3e, 0x413f, 0x5c35, 0x5c42, 0x5c41, 0x466f, 0x5c40, 0x466a,\n  0x7576, 0x7577, 0x7578, 0xaf2e, 0x5c44, 0x5c37, 0xaf2f, 0x3648,\n  0x5c3a, 0x3d5d, 0xaf30, 0x4760, 0x5c3c, 0x364b, 0x5c34, 0x5c36,\n  0x5c33, 0xaf31, 0x4f30, 0x335a, 0x5c39, 0xaf32,\n  /* 0x6980 */\n  0x7579, 0x5c43, 0x3335, 0x3a67, 0x315d, 0x5c54, 0xaf33, 0x4f31,\n  0x5c57, 0xaf35, 0xaf36, 0x3f3a, 0x5c56, 0x5c55, 0x757b, 0xaf37,\n  0x5c52, 0x757c, 0x5c46, 0xaf38, 0x5c63, 0x5c45, 0x5c58, 0xaf39,\n  0xaf3a, 0x5c50, 0xaf3b, 0x5c4b, 0x5c48,\n  /* 0x69C0 */\n  0xaf3c, 0x5c49, 0x5c51, 0x7422, 0x5c4e, 0x393d, 0x4448, 0x4164,\n  0x5c4c, 0x757d, 0x5c47, 0xaf3d, 0x5c4a, 0xaf3e, 0x4d4d, 0x4b6a,\n  0x5c4f, 0x5c59, 0x7622, 0xaf44, 0x5c61, 0x5c5a, 0x7623, 0x7624,\n  0x5c67, 0x5c65, 0xaf45, 0xaf46, 0x5c60, 0xaf47, 0xaf49, 0x7625,\n  0x7626, 0x5c5f, 0x4450, 0x4165, 0xaf4a, 0x5c5d,\n  /* 0x6A00 */\n  0x5c5b, 0x5c62, 0x5c68, 0x4875, 0x5c6e, 0x7627, 0xaf4b, 0x5c69,\n  0x5c6c, 0x5c66, 0x7628, 0x4374, 0x4938, 0xaf4c, 0x5c5c, 0xaf4d,\n  0x5c64, 0x3e40, 0x4c4f, 0x5c78, 0x5c6b, 0x3822, 0x3223, 0x335f,\n  0x5c53, 0xaf41, 0xaf4f, 0xaf50, 0xaf51, 0x3e41, 0x5c70, 0x5c77,\n  0x3c79, 0x3372, 0x762a, 0x432e, 0x762b, 0xaf52,\n  /* 0x6A40 */\n  0x5c6d, 0x762c, 0xaf53, 0x5c72, 0x5c76, 0xaf54, 0x3636, 0xaf56,\n  0x762d, 0xaf57, 0x762e, 0x354c, 0x5c74, 0x762f, 0x3521, 0x464b,\n  0x5c73, 0xaf58, 0x5c75, 0x7630, 0x5c6f, 0x7631, 0x5c71, 0xaf55,\n  0xaf5a, 0x3360,\n  /* 0x6A80 */\n  0x4349, 0xaf5b, 0x5c7c, 0x7633, 0xaf5c, 0x5c7a, 0x3869, 0x5c79,\n  0xaf5e, 0x7634, 0x5d21, 0x5b58, 0x7635, 0x7636, 0xaf5f, 0x5c7b,\n  0xaf60, 0x5c7d, 0x5c7e, 0x7637, 0x5d2c, 0xaf62, 0x5d28, 0x5b6d,\n  0x5d27, 0x5d26, 0x5d23, 0xaf63,\n  /* 0x6AC0 */\n  0x5c6a, 0x5d25, 0x5d24, 0xaf64, 0xaf66, 0x5d2a, 0x4f26, 0xaf65,\n  0x5d2d, 0x367b, 0xaf67, 0xaf68, 0x5d29, 0x5d2b, 0x7638, 0x7639,\n  0x4827, 0x5d2e, 0xaf6b, 0xaf6c, 0xaf6d, 0xaf6e, 0x5d32, 0x5d2f,\n  0xaf6f,\n  /* 0x6B00 */\n  0x4d73, 0x5d30, 0x5c5e, 0xaf71, 0xaf72, 0xaf73, 0xaf74, 0x5d33,\n  0x5d34, 0xaf76, 0x763c, 0x3135, 0x763d, 0x5d36, 0x3767, 0x3c21,\n  0x3655, 0x3224, 0x763e, 0xaf78, 0x4d5f, 0x763f, 0x5d38, 0x5d37,\n  0x5d3a, 0x353d, 0x3656, 0x343e,\n  /* 0x6B40 */\n  0x5d3d, 0x7640, 0x5d3c, 0x5d3e, 0xaf79, 0x324e, 0x4337, 0x5d3f,\n  0x343f, 0x5d41, 0x7641, 0xaf7a, 0x5d40, 0x5d42, 0x5d43, 0x7642,\n  0x5d44, 0x3b5f, 0x4035, 0x3a21, 0x7643, 0x4970, 0x7644, 0x4a62,\n  0x4f44, 0xaf7b, 0x3b75, 0x3a50, 0x4e72, 0xaf7c, 0x7645, 0x5d45,\n  0x5d46, 0xaf7d, 0x3b60, 0x5d47,\n  /* 0x6B80 */\n  0x5d48, 0xaf7e, 0x7646, 0x5d4a, 0x5d49, 0x4b58, 0x3d5e, 0x3c6c,\n  0x3b44, 0x5d4b, 0x5d4d, 0x3f23, 0x5d4c, 0xee21, 0x5d4e, 0x5d4f,\n  0x7647, 0x5d50, 0x5d51, 0x7648, 0xee22, 0x5d52, 0x5d54, 0x5d53,\n  0x5d55, 0x3225, 0x434a, 0x5d56, 0x3b26, 0x334c, 0x5d57, 0xee24,\n  0xee25, 0x4542,\n  /* 0x6BC0 */\n  0x544c, 0x3523, 0x5d58, 0xee26, 0xee27, 0xee28, 0x5d59, 0x4a6c,\n  0x4b68, 0x764a, 0x4647, 0x5d5a, 0x4866, 0x764b, 0x764c, 0x487b,\n  0xee29, 0x4c53, 0x5d5b, 0xee2a, 0xee2b, 0x5d5d, 0x5d5c, 0xee2c,\n  0x5d5f, 0xee2d, 0x5d5e, 0x764d,\n  /* 0x6C00 */\n  0xee2e, 0x764e, 0x5d61, 0xee2f, 0xee30, 0x3b61, 0x764f, 0x4c31,\n  0x5d62, 0x5d63, 0x3524, 0x5d64, 0x5d66, 0x5d65, 0x7650, 0x3f65,\n  0xee31, 0xee32, 0x4939, 0x314a, 0xee33, 0x4845, 0xee35,\n  /* 0x6C40 */\n  0x4475, 0x3d41, 0x3561, 0xee36, 0x4846, 0x3c2e, 0x5d68, 0x3440,\n  0x7651, 0x3178, 0xee37, 0x7652, 0x4672, 0x5d67, 0x393e, 0x4353,\n  0x5d69, 0xee4f, 0x5d71, 0x5d6a, 0xee38, 0x4241, 0x3562, 0x5d72,\n  0x7654, 0x7655, 0x3768, 0x3525, 0x5d70,\n  /* 0x6C80 */\n  0x5d6e, 0x5d6b, 0x4d60, 0xee39, 0x7656, 0x7657, 0x4440, 0xee3a,\n  0x4659, 0x5d6c, 0x5d74, 0x5d73, 0x3723, 0xee3c, 0xee3d, 0x322d,\n  0xee3e, 0x7658, 0x3a3b, 0x5d6d, 0x5d6f, 0x7659, 0x4b57, 0x4274,\n  0x7653, 0x4b77, 0xee3f, 0x5d7c, 0x5d7d, 0x324f, 0x4a28, 0x4c7d,\n  0x5e21, 0x3c23, 0x3e42, 0x5d78, 0x5d7e, 0x3168,\n  /* 0x6CC0 */\n  0x3637, 0xee40, 0x5d75, 0x5d7a, 0x765b, 0x4074, 0x4771, 0x4867,\n  0xee41, 0x5d77, 0x765c, 0x4b21, 0xee43, 0x5d79, 0x5e24, 0xee44,\n  0x5e22, 0xee45, 0x5d7b, 0x765d, 0x4b22, 0x4748, 0x3563, 0x4525,\n  0x436d, 0xee46, 0x5e25, 0x765e, 0xee47, 0xee48, 0x765f, 0x5e23,\n  0x4259, 0x5d76, 0x314b, 0x765a,\n  /* 0x6D00 */\n  0xee4a, 0x7661, 0xee4b, 0x4d4e, 0x5e30, 0x7662, 0x5e2f, 0x4076,\n  0x5e2c, 0x4d6c, 0x4636, 0x5e26, 0xee4c, 0x4445, 0xee4d, 0xee4e,\n  0x314c, 0x393f, 0x5e29, 0x7663, 0xee50, 0x7664, 0x3d27, 0x5e2e,\n  0xee65, 0x5e2d, 0x5e28, 0x5e2b, 0x7665, 0x3368, 0xee51, 0x5e2a,\n  0x4749, 0x7666,\n  /* 0x6D40 */\n  0x4e2e, 0x3e74, 0x4075, 0x7667, 0x5e36, 0x5e34, 0xee52, 0x494d,\n  0xee53, 0xee54, 0x5e31, 0x5e33, 0x7668, 0x313a, 0x3940, 0x4f32,\n  0x333d, 0x4962, 0xee55, 0x4d61, 0x3324, 0x3f3b, 0x5e35,\n  /* 0x6D80 */\n  0xee56, 0xee57, 0x766a, 0x5e3a, 0x766b, 0x3e43, 0x766c, 0xee58,\n  0x4d30, 0xee59, 0x5e37, 0xee5a, 0x5e32, 0x766d, 0x5e38, 0xee5b,\n  0x4e5e, 0x4573, 0x4642, 0x766e, 0xee61, 0x766f, 0xee62, 0x3336,\n  0x3155, 0xee63, 0x5e3e, 0x5e41, 0x4e43, 0x7670,\n  /* 0x6DC0 */\n  0x4d64, 0xee64, 0x7671, 0x5e48, 0x5e42, 0x5e3f, 0xee66, 0x4e54,\n  0x5e45, 0xee67, 0xee68, 0xee69, 0x3d4a, 0x5e47, 0x5e4c, 0x7672,\n  0x4571, 0x5e4a, 0x7673, 0x7674, 0x7675, 0x5e44, 0xee6a, 0x4338,\n  0x5e4b, 0x5e40, 0x5e46, 0xee6b, 0x5e4d, 0x307c, 0x5e43, 0x5e4e,\n  0x3f3c, 0x3d5f, 0x4a25, 0xee6c, 0x3a2e, 0x5e3b, 0x5e49, 0x453a,\n  0x7676,\n  /* 0x6E00 */\n  0x4036, 0x3369, 0x3a51, 0x3e44, 0x5e3d, 0x3d42, 0x374c, 0x5e3c,\n  0xee5d, 0x5e52, 0x3d6d, 0x383a, 0x5e61, 0xee6e, 0x5e5b, 0x3574,\n  0x454f, 0xee6f, 0x5e56, 0x5e5f, 0x302f, 0x3132, 0xee70, 0x3239,\n  0x5e58, 0x422c, 0x5e4f, 0x5e51, 0x3941, 0xee72, 0x7678, 0xee6d,\n  0x5e62, 0x5e5d, 0xee73, 0x5e55,\n  /* 0x6E40 */\n  0x5e5c, 0x7679, 0xee74, 0xee75, 0x4c2b, 0xee76, 0xee77, 0x5e5a,\n  0x5e5e, 0xee78, 0xee79, 0xee7a, 0xee7b, 0x3850, 0xee7c, 0x3e45,\n  0x4339, 0x767a, 0x767b, 0x5e54, 0xee7d, 0x4d2f, 0x5e57, 0x5e50,\n  0x4572, 0x5e53, 0x5e59, 0x4f51, 0x3c3e,\n  /* 0x6E80 */\n  0x4b7e, 0x5e63, 0x482e, 0x5e6f, 0x383b, 0xef21, 0x3d60, 0x5e65,\n  0x4e2f, 0x3942, 0x5e72, 0x306e, 0x5e70, 0xef22, 0x5e64, 0x767c,\n  0x5e6a, 0x767d, 0x5e6c, 0xef23, 0x4d4f, 0x5e67, 0x452e, 0x5e69,\n  0xef24,\n  /* 0x6EC0 */\n  0x767e, 0x5e71, 0xef25, 0x5e6b, 0x4c47, 0x7721, 0x5e66, 0xef26,\n  0x3c22, 0x5e7e, 0x7722, 0x336a, 0x5e68, 0x5e6d, 0x5e6e, 0xef27,\n  0x426c, 0x425a, 0xef29, 0x5e76, 0x5e7c, 0x5e7a, 0x4529, 0x5f23,\n  0x5e77, 0xef2a, 0xef2b, 0x5e78, 0x5e60,\n  /* 0x6F00 */\n  0x3579, 0x493a, 0x3c3f, 0x3977, 0xef2c, 0xef2d, 0x4f33, 0x7723,\n  0x5e74, 0x5f22, 0x3169, 0x4166, 0xef2e, 0x7724, 0x4779, 0x3441,\n  0x4e7a, 0xef2f, 0x7726, 0x4c21, 0x4452, 0x7727, 0x5e7b, 0x5e7d,\n  0x7728, 0xef28, 0xef30, 0x4132, 0xef31, 0x5f21, 0x5e79,\n  /* 0x6F40 */\n  0x5e73, 0x3443, 0x7729, 0xef33, 0x3769, 0xef34, 0x5f2f, 0x772a,\n  0xef35, 0x5f2a, 0x4078, 0x772b, 0x3363, 0xef36, 0x772c, 0x772d,\n  0x3d61, 0x5f33, 0xef37, 0x5f2c, 0x442c, 0x5f29, 0x4459, 0x5f4c,\n  0x5f26, 0x5f25, 0x5f2e, 0xef39, 0x772e,\n  /* 0x6F80 */\n  0x5f28, 0x5f27, 0x5f2d, 0x4021, 0x5f24, 0x772f, 0x7730, 0x7731,\n  0x5f30, 0xef3a, 0x5f31, 0x7732, 0xef3b, 0x3442, 0xef38, 0xef3d,\n  0x7733, 0x5f36, 0x5f35, 0x5f37, 0xef3e, 0x7734, 0x5f3a, 0xef3f,\n  0x4543, 0x5f34, 0xef41, 0x7735, 0x5f38, 0x7736, 0xef3c,\n  /* 0x6FC0 */\n  0x3763, 0x4279, 0x5f32, 0x473b, 0x5f39, 0x7737, 0xef42, 0xef43,\n  0x7738, 0x5f3e, 0x5f3c, 0x5f3f, 0xef44, 0x5f42, 0xef45, 0x5f3b,\n  0x396a, 0x4728, 0x5e39, 0xef46, 0x4d74, 0x5f3d, 0x5f41, 0x4275,\n  0x773a, 0x5f40, 0x5f2b, 0x773b, 0x6f69, 0x7739, 0x5f45, 0xef48,\n  0x5f49,\n  /* 0x7000 */\n  0xef49, 0x5f47, 0x773c, 0x773d, 0xef4a, 0x5f43, 0xef4b, 0x5f44,\n  0x5f48, 0x5f46, 0x494e, 0x5f4e, 0x5f4b, 0x5f4a, 0x5f4d, 0x4654,\n  0x5f4f, 0xef4c, 0x4375, 0x426d, 0x773e, 0x4025, 0x5f50, 0x5f52,\n  0xef4e, 0xef4f, 0xef50, 0x5f51,\n  /* 0x7040 */\n  0xef51, 0xef52, 0x773f, 0xef53, 0x5e75, 0x7742, 0x5f53, 0xef55,\n  0x4667, 0x7740, 0x7741, 0x5f54, 0x7743, 0xef56, 0xef57, 0x3250,\n  0xef58, 0xef59, 0x4574, 0x3325, 0x7744, 0xef5a, 0x3564, 0x3c5e,\n  0x3a52, 0xef5b,\n  /* 0x7080 */\n  0xef5c, 0x7745, 0xef5d, 0x4f27, 0x3f66, 0x316a, 0x5f56, 0xef5e,\n  0xef5f, 0x5f55, 0xef62, 0x7746, 0x7747, 0x5f59, 0x433a, 0x5f5c,\n  0x5f57, 0xef63, 0x5f5b, 0x7748, 0x5f5a, 0x4540, 0x3059, 0xef60,\n  /* 0x70C0 */\n  0x4e75, 0xef66, 0x5f5e, 0x3128, 0xef67, 0xef68, 0x7749, 0x774a,\n  0x5f60, 0xef69, 0x5f5f, 0x5f5d, 0x774b, 0xef65, 0x5f58, 0x4b23,\n  0x5f62,\n  /* 0x7100 */\n  0xef6a, 0xef6b, 0xef6c, 0xef6d, 0xef6e, 0x5f61, 0xef6f, 0x774c,\n  0x316b, 0x5f64, 0x4a32, 0x5f63, 0x774e, 0x774f, 0x4c35, 0x3e47,\n  0x774d, 0x7750, 0xef71, 0x7751, 0xef72, 0x4133, 0x3e46,\n  /* 0x7140 */\n  0x7752, 0x7753, 0x4e7b, 0xef74, 0x5f6a, 0x4079, 0xef73, 0x7754,\n  0x7756, 0xef75, 0x5f66, 0x5f6b, 0x316c, 0x7757, 0xef76, 0x7758,\n  0x5f69, 0x4761, 0x5f65, 0x5f68, 0x3e48, 0x7759, 0x4851, 0x5f6c,\n  0x3c51, 0x407a,\n  /* 0x7180 */\n  0xef79, 0x5f6f, 0x775b, 0x775c, 0x5f67, 0x3727, 0x5f6d, 0x775d,\n  0x4d50, 0x5f70, 0xef78, 0x7426, 0xef7a, 0x3d4f, 0xef7b, 0xef7c,\n  0x5f71, 0x5f72, 0xef7d, 0xef7e, 0x472e, 0xf021, 0x5f74, 0x775f,\n  0x5f75,\n  /* 0x71C0 */\n  0x775e, 0x4733, 0x7760, 0x4575, 0x5f77, 0xf023, 0x5f79, 0x4e55,\n  0x5f76, 0xf024, 0x5f78, 0x316d, 0x5f73, 0xf025, 0xf026, 0x535b,\n  0x5f7a, 0x4167, 0x3b38, 0x5f7c, 0x5f7b, 0x3f24, 0x5259, 0x5f7d,\n  0x6021, 0x5f6e, 0x5f7e, 0x7761, 0x6022,\n  /* 0x7200 */\n  0x7762, 0x477a, 0xf027, 0x6023, 0x6024, 0x7763, 0x6025, 0x6026,\n  0x445e, 0xf02a, 0x6028, 0x6027, 0x6029, 0x602a, 0xf02b, 0x3c5f,\n  0x4963, 0xf02c, 0xf02d, 0x4c6c, 0x602b, 0x602c, 0x4156, 0x3c24,\n  0x602d,\n  /* 0x7240 */\n  0x602e, 0xf02f, 0x602f, 0x4a52, 0x4847, 0x6030, 0x4757, 0x442d,\n  0xf030, 0x7764, 0x7765, 0xf031, 0x6031, 0x3267, 0x356d, 0x4c46,\n  0x4c36, 0x3234, 0x4f34, 0xf032, 0x4b52, 0x4a2a, 0xf034, 0xf035,\n  0x4037, 0x6032, 0xf036, 0x4643, 0x3823, 0x6033, 0xf037,\n  /* 0x7280 */\n  0x3a54, 0x6035, 0x6034, 0x6036, 0x7767, 0xf038, 0x6037, 0x6038,\n  0x7768, 0x353e, 0x6039, 0x603a, 0x3824, 0xf03a, 0xf03b, 0x4848,\n  0xf03c, 0xf03d, 0x603c, 0x3e75, 0x603b, 0x7769,\n  /* 0x72C0 */\n  0x776a, 0xf03e, 0x3638, 0x603d, 0x603f, 0x603e, 0xf040, 0x6040,\n  0x3851, 0x6041, 0x3669, 0x4140, 0x397d, 0x6043, 0x6044, 0x6042,\n  0x3c6d, 0x4648, 0x3639, 0xf043, 0x6046, 0x432c, 0x6045, 0xf044,\n  0x776b, 0x4f35, 0x4762,\n  /* 0x7300 */\n  0xf045, 0x6049, 0xf046, 0x604b, 0x6048, 0xf047, 0xf048, 0x4c54,\n  0x604a, 0x604c, 0x4e44, 0x6050, 0x776d, 0x776e, 0x604f, 0x4376,\n  0x472d, 0xf04b, 0x3825, 0x604e, 0xf04c, 0xf04d, 0x604d, 0x4d31,\n  0x4d32, 0xf04a, 0xf04e, 0x6051, 0x316e,\n  /* 0x7340 */\n  0x3976, 0x3b62, 0x6052, 0x6053, 0x7770, 0xf04f, 0x6055, 0x3d43,\n  0x7771, 0x6057, 0x6056, 0xf051, 0xf052, 0xf054, 0xf055, 0x6058,\n  0xf056, 0x334d, 0x605a, 0xf057, 0x6059, 0x605c, 0x605b, 0x7772,\n  /* 0x7380 */\n  0xf058, 0x383c, 0xf059, 0x4e28, 0x364c, 0xf05a, 0x3226, 0xf05b,\n  0x7773, 0x366a, 0xf05c, 0xf05d, 0xf05e, 0x7774, 0x7775, 0x7776,\n  0xf05f, 0x7777, 0xf060, 0x3461, 0x7778, 0x4e68, 0x605e, 0xf061,\n  0xf062, 0xf063, 0x6060, 0xf064, 0xf065,\n  /* 0x73C0 */\n  0x6061, 0x3251, 0xf066, 0x605d, 0x7779, 0x3b39, 0xf067, 0x4441,\n  0x605f, 0x777a, 0x777b, 0x777c, 0x6064, 0x3c6e, 0xf068, 0x777d,\n  0x6062, 0xf069, 0x777e, 0x373e, 0x4849, 0x6063, 0x607e, 0x6069,\n  0xf06a, 0xf06c, 0x383d,\n  /* 0x7400 */\n  0xf06d, 0x3565, 0x6066, 0x4d7d, 0x7821, 0x4e30, 0x7822, 0xf06b,\n  0x7823, 0x7824, 0x4276, 0xf06e, 0x6068, 0x7826, 0x7827, 0x7828,\n  0x7829, 0x782a, 0x782b, 0x782c, 0x782d, 0xf06f, 0x606a, 0x4e56,\n  0x3657, 0x487c, 0x474a, 0xf070, 0x606b, 0x606d,\n  /* 0x7440 */\n  0xf072, 0x6070, 0xf073, 0x782e, 0x782f, 0x7830, 0x7831, 0xf074,\n  0xf075, 0xf071, 0x606c, 0x7832, 0x606f, 0x386a, 0x314d, 0x6071,\n  0xf076, 0x3f70, 0x606e, 0x4e5c, 0x7833, 0x6074, 0x7424, 0x6072,\n  0x6075, 0x7834, 0x7835, 0x6067, 0x6073, 0xf077, 0x3a3c, 0x6076,\n  0x6077,\n  /* 0x7480 */\n  0xf078, 0x4d7e, 0xf079, 0x7836, 0x7837, 0xf07a, 0x7838, 0x6078,\n  0x783d, 0xf07c, 0xf07d, 0x7839, 0xf07e, 0x783a, 0x6079, 0x783b,\n  0xf121, 0xf122, 0x6065, 0x783c, 0xf123, 0x783e, 0x607a, 0x783f,\n  0x7840, 0xf124, 0xf125, 0x3444, 0x7841, 0xf126, 0xf128, 0xf127,\n  0x3c25, 0x7842,\n  /* 0x74C0 */\n  0x7843, 0x7844, 0x607b, 0x607c, 0x607d, 0xf129, 0xf12a, 0x7845,\n  0x313b, 0xf12b, 0x6121, 0x493b, 0x6122, 0x3424, 0x6123, 0x6124,\n  0xf12d, 0x6125, 0xf12c, 0x6127, 0x6128, 0x6126, 0x4953, 0x612a,\n  0x6129, 0xf12f, 0x7846,\n  /* 0x7500 */\n  0x7847, 0x612c, 0x612b, 0x612d, 0x612e, 0x6130, 0x612f, 0x3979,\n  0x6132, 0x6131, 0x7848, 0x3445, 0x3f53, 0x453c, 0x6133, 0x4038,\n  0xf131, 0x3b3a, 0xf132, 0x3179, 0x6134, 0x4d51, 0xf133, 0x4a63,\n  0x6135, 0x7849, 0x4544, 0x4d33, 0x3943, 0x3f3d, 0x434b, 0x5234,\n  0x442e, 0x3268, 0x6136, 0xf136, 0xf137,\n  /* 0x7540 */\n  0xf138, 0x6137, 0x613c, 0xf139, 0x613a, 0x6139, 0x5a42, 0x3326,\n  0x6138, 0xf13a, 0x305a, 0xf13b, 0x482a, 0xf13c, 0x484a, 0x4e31,\n  0x613d, 0x613b, 0x435c, 0x4026, 0x482b, 0x492d, 0x613f, 0x4e2c,\n  0x374d, 0x6140, 0x613e, 0x4856, 0x6141, 0xf13d, 0x6142, 0x784a,\n  0x305b, 0xf13f, 0xf13e, 0x3e76, 0x6147, 0x6144, 0x466d, 0x6143,\n  0x784b, 0xf140, 0xf141, 0xf142, 0x3526,\n  /* 0x7580 */\n  0xf143, 0x614a, 0x6145, 0x6146, 0x6149, 0x6148, 0x4925, 0xf145,\n  0x4142, 0x4141, 0x353f, 0x784c, 0x614b, 0x614c, 0x614d, 0xf147,\n  0x614f, 0x614e, 0x3156, 0xf149, 0x6157, 0x4868, 0x6151, 0x6153,\n  0xf14a, 0x6155, 0x3f3e, 0x6156, 0x6154, 0x3c40, 0xf14b,\n  /* 0x75C0 */\n  0xf14c, 0x6150, 0x6152, 0x4942, 0xf14d, 0x3e49, 0x6159, 0x6158,\n  0x784e, 0xf14e, 0x615a, 0xf14f, 0x3c26, 0x3a2f, 0x4577, 0x615b,\n  0x444b, 0xf150, 0x615d, 0xf151, 0xf152, 0x4e21, 0x615c, 0x784f,\n  0xf153, 0x4169, 0xf154, 0xf155, 0x6162, 0xf156, 0x6164, 0x6165,\n  0x4354, 0xf157, 0x6163, 0x6160, 0x615e, 0x615f,\n  /* 0x7600 */\n  0x7850, 0x6161, 0x7851, 0xf158, 0xf15a, 0x7852, 0x6168, 0x6166,\n  0x6167, 0xf15b, 0xf15e, 0x7853, 0x7854, 0xf159, 0x7855, 0xf15f,\n  0xf160, 0x7856, 0x6169, 0x616b, 0x616c, 0x616d, 0x616e, 0xf162,\n  0x7e7d, 0x616a, 0xf163, 0x7857, 0x6170, 0xf165, 0x616f, 0x7858,\n  0x6171, 0xf164,\n  /* 0x7640 */\n  0xf168, 0x4e45, 0x7859, 0x6174, 0x6172, 0x6173, 0xf16a, 0x785a,\n  0x3462, 0x4c7e, 0xf16b, 0x4a4a, 0x6176, 0x6175, 0x6177, 0x6178,\n  0x785b, 0x785c, 0x617c, 0x6179, 0x617a, 0x617b, 0x617d, 0x785d,\n  0xf16d, 0x785e, 0x617e, 0x785f, 0x6221, 0x6222, 0x6223, 0x482f,\n  0x4550, 0x6224, 0x4772, 0x4934,\n  /* 0x7680 */\n  0x6225, 0x7860, 0x6226, 0x452a, 0x3327, 0x3944, 0x6227, 0x6228,\n  0x6229, 0x3b29, 0x622b, 0xf16e, 0x622a, 0x622c, 0x622d, 0x7861,\n  0xf16f, 0x7862, 0x7863, 0xf171, 0xf170, 0x7864, 0xf172, 0xf173,\n  0x7865, 0x4869, 0xf174, 0x622e, 0x622f, 0x7866, 0x7369, 0x6230,\n  0x6231, 0x6232, 0x3b2e,\n  /* 0x76C0 */\n  0x6233, 0x4756, 0x7867, 0x4b5f, 0x314e, 0xf176, 0x3157, 0x7868,\n  0x6234, 0x7869, 0x6236, 0x786a, 0x6235, 0x4570, 0x4039, 0x5d39,\n  0x6237, 0x4c41, 0x6238, 0x3446, 0x4857, 0x6239, 0x786b, 0x623a,\n  0xf178, 0x623b, 0xf179, 0x4c5c, 0x786c, 0x4c55, 0x443e, 0x416a,\n  0x623d, 0x786d, 0x3d62,\n  /* 0x7700 */\n  0x3e4a, 0x6240, 0x623f, 0x623e, 0x487d, 0x786e, 0x3447, 0x3829,\n  0xf17b, 0x786f, 0xf17c, 0x6246, 0x6243, 0x3f3f, 0x4c32, 0x6242,\n  0x6244, 0x6245, 0x6241, 0xf17d, 0x7870, 0xf17e, 0x7871, 0x6247,\n  0x6248, 0x442f, 0x3463,\n  /* 0x7740 */\n  0x4365, 0x7872, 0x6249, 0x7873, 0x7874, 0xf225, 0x624a, 0x624d,\n  0x7875, 0x7876, 0xf226, 0x3f67, 0x7877, 0x4644, 0x624e, 0x4b53,\n  0x624b, 0xf227, 0x624c, 0xf229, 0x6251, 0x7878, 0xf22a, 0xf22b,\n  0x6250, 0x624f,\n  /* 0x7780 */\n  0x7879, 0x6253, 0x6252, 0x6254, 0x787a, 0xf22e, 0x6256, 0xf22f,\n  0x6255, 0xf230, 0xf231, 0x4a4d, 0xf232, 0x787b, 0x3d56, 0x4e46,\n  0x6257, 0x4637, 0x6258, 0x6259, 0x625d, 0x625b, 0x625c, 0x625a,\n  /* 0x77C0 */\n  0x625e, 0x625f, 0x6260, 0x6261, 0x4c37, 0x6262, 0xf233, 0xf234,\n  0x787c, 0x4c70, 0x6263, 0xf235, 0x434e, 0xf236, 0x476a, 0x366b,\n  0xf237, 0xf238, 0x433b, 0x6264, 0x363a, 0xf23a, 0x4050, 0xf23b,\n  0xf23c, 0x6265,\n  /* 0x7800 */\n  0x3a3d, 0xf23e, 0xf23f, 0xf240, 0x6266, 0xf241, 0x6267, 0x3826,\n  0x3a55, 0xf242, 0x6269, 0xf243, 0x4556, 0x3a56, 0x354e, 0xf244,\n  0x787d, 0x4b24, 0x474b, 0x4557, 0x395c,\n  /* 0x7840 */\n  0x7921, 0x626b, 0xf245, 0x7922, 0x7923, 0x7924, 0x3e4b, 0xf246,\n  0x7925, 0xf247, 0x4e32, 0x3945, 0x7926, 0x3827, 0x4823, 0x626d,\n  0x626f,\n  /* 0x7880 */\n  0x386b, 0x626e, 0x4476, 0xf249, 0x6271, 0x3337, 0x626c, 0x486a,\n  0x3130, 0xf24a, 0x3a6c, 0x4f52, 0x6270, 0xf24c, 0xf24d, 0xf24e,\n  0x6272, 0xf24b, 0x4a4b, 0x4059, 0x6274, 0x792a, 0x6275, 0x7928,\n  0x6273, 0x334e, 0xf24f, 0x627b, 0x627a,\n  /* 0x78C0 */\n  0x3c27, 0x627c, 0x6277, 0xf250, 0x627d, 0x6278, 0xf251, 0xf252,\n  0x4858, 0x6276, 0x6279, 0xf253, 0x6322, 0xf254, 0xf255, 0x792b,\n  0xf256, 0x6321, 0x4b61, 0x627e, 0x306b, 0x792c, 0x6324, 0x792e,\n  0xf257, 0xf258, 0xf259, 0x6323, 0xf25a,\n  /* 0x7900 */\n  0x792d, 0x3e4c, 0x6325, 0x4143, 0xf25c, 0x6327, 0x6326, 0x6328,\n  0xf25d, 0x792f, 0xf25f, 0x6268, 0x626a, 0x632a, 0x6329, 0x7930,\n  0xf25e, 0x7931, 0x7932, 0x3c28, 0xf260, 0x4e69, 0x3c52,\n  /* 0x7940 */\n  0x632b, 0x3737, 0x7935, 0x7936, 0x3540, 0x3527, 0x3b63, 0xf261,\n  0x4d34, 0x6331, 0x6330, 0x4144, 0x632d, 0xf262, 0x632f, 0xf263,\n  0x793a, 0x3d4b, 0x3f40, 0x632e, 0x632c, 0x472a, 0x3e4d, 0xf265,\n  0x493c, 0x3a57, 0xf266, 0x4578, 0x793e, 0x6332, 0x6333,\n  /* 0x7980 */\n  0x6349, 0x3658, 0x4f3d, 0x4135, 0x6334, 0x3252, 0x4477, 0x4a21,\n  0xf267, 0xf268, 0xf269, 0x7942, 0xf26a, 0x6335, 0xf26b, 0x357a,\n  0x6336, 0xf26c, 0x6338, 0x6339, 0x4729, 0x7943, 0x633a, 0xf26d,\n  0x7944, 0x633b, 0x633c, 0xf26e, 0x3659, 0x3253, 0x4645,\n  /* 0x79C0 */\n  0x3d28, 0x3b64, 0xf26f, 0xf270, 0x7945, 0x633d, 0x7946, 0x3d29,\n  0xf271, 0xf272, 0x324a, 0x4943, 0x7948, 0x633e, 0xf273, 0x486b,\n  0x7949, 0x4145, 0x6341, 0x6342, 0x4769, 0x3f41, 0x633f, 0x4361,\n  0x794a, 0x6340, 0x794b, 0x3e4e, 0x305c,\n  /* 0x7A00 */\n  0x3529, 0x794c, 0x6343, 0xf278, 0x4478, 0x6344, 0x4047, 0xf279,\n  0x4c2d, 0xf27a, 0x4923, 0x6345, 0x6346, 0x4355, 0xf27b, 0x4e47,\n  0xf27c, 0x6348, 0x6347, 0xf27e, 0x3c6f, 0x634a, 0x3070, 0x634d,\n  0xf321, 0x794e, 0x634b, 0x3254, 0x374e, 0x634c, 0x3946,\n  /* 0x7A40 */\n  0x3972, 0x4a66, 0x634e, 0x4b54, 0xf322, 0x6350, 0xf323, 0x4051,\n  0x314f, 0x323a, 0x302c, 0xf324, 0x634f, 0xf325, 0xf326, 0x794f,\n  0xf327, 0xf328, 0x6351, 0x6352, 0x3e77, 0xf329, 0x6353, 0xf32a,\n  0x334f, 0x7950, 0x6355, 0x376a, 0xf32b, 0x3566, 0xf32c, 0x6356,\n  0x3675, 0x6357, 0x407c,\n  /* 0x7A80 */\n  0x464d, 0xf32d, 0x4060, 0x3a75, 0x7952, 0x6358, 0xf32e, 0xf32f,\n  0x4362, 0x416b, 0x635a, 0x635c, 0x6359, 0x635b, 0x3722, 0x7953,\n  0xf330, 0x635d, 0x3726, 0xf331, 0x3567, 0x4d52, 0x635f, 0x7955,\n  0x6360, 0xf334, 0x312e, 0x7956, 0xf335, 0xf336, 0x6363,\n  /* 0x7AC0 */\n  0x3376, 0x6362, 0x6361, 0x6365, 0x635e, 0x6366, 0x4e29, 0xf338,\n  0x6367, 0x7957, 0x6368, 0xf339, 0x5474, 0x636a, 0x6369, 0x636b,\n  0x636c, 0x4e35, 0x636d, 0x706f, 0x3e4f, 0x636e, 0x636f, 0x3d57,\n  0x4638, 0x6370, 0xf33a, 0xf33b, 0x4328, 0x7958, 0x6371, 0x433c,\n  0x6372, 0xf33c, 0x3625, 0x513f, 0x435d, 0x3c33, 0x7959, 0x3448,\n  /* 0x7B00 */\n  0x6373, 0x6422, 0x6376, 0xf33f, 0x3568, 0x6375, 0x6424, 0x6374,\n  0x3e50, 0x795a, 0x6378, 0x6379, 0x452b, 0x637a, 0x335e, 0x3f5a,\n  0x4964, 0xf342, 0x637c, 0xf343, 0x4268, 0x795b, 0xf344, 0xf345,\n  0xf346, 0x6377, 0x637b, 0x637d, 0x3a7b, 0x795c, 0xf341,\n  /* 0x7B40 */\n  0xf34a, 0x6426, 0x492e, 0x795d, 0x4826, 0x4579, 0x365a, 0x6425,\n  0x6423, 0x795e, 0x4835, 0x637e, 0x435e, 0x457b, 0x457a, 0xf34c,\n  0x3a76, 0x6438, 0x795f, 0xf34e, 0x6428, 0xf34f, 0x642a, 0xf350,\n  0x642d, 0x7960, 0x642e, 0x7961, 0x642b, 0x642c, 0x7962, 0xf351,\n  0x6429, 0x6427, 0xf34d, 0x6421, 0xf349,\n  /* 0x7B80 */\n  0x4a4f, 0x3255, 0x6435, 0x6432, 0x6437, 0xf354, 0xf355, 0x6436,\n  0x4773, 0x4c27, 0x3b3b, 0x6430, 0x6439, 0x6434, 0xf356, 0x6433,\n  0x642f, 0x7963, 0x6431, 0x3449, 0x433d, 0x407d, 0xf358, 0x4822,\n  0x643e, 0xf359, 0x4824, 0xf35a,\n  /* 0x7BC0 */\n  0x4061, 0x643b, 0x484f, 0xf35b, 0x643f, 0x4a53, 0x435b, 0xf35c,\n  0x643a, 0x643c, 0x643d, 0xf35f, 0xf360, 0x7965, 0x7966, 0xf361,\n  0x6440, 0x3c44, 0x4646, 0x6445, 0x6444, 0x6441, 0xf362, 0x4f36,\n  0xf363, 0x644a, 0x644e, 0x644b,\n  /* 0x7C00 */\n  0x6447, 0x7967, 0xf364, 0x6448, 0xf365, 0x644d, 0xf366, 0xf367,\n  0x6442, 0x5255, 0x6449, 0x6443, 0x644c, 0x7969, 0x6452, 0x796a,\n  0x344a, 0x644f, 0xf368, 0x6450, 0x6451, 0x6454, 0x7968, 0x796b,\n  0x796c, 0x6453, 0x4876, 0x6455, 0x4e7c, 0x4a6d,\n  /* 0x7C40 */\n  0x645a, 0x6457, 0xf369, 0xf36a, 0x6456, 0x4052, 0x6459, 0x645b,\n  0xf36b, 0x6458, 0x645f, 0xf36c, 0x645c, 0x796f, 0xf36d, 0x645d,\n  0x6446, 0xf36e, 0x645e, 0x6460, 0xf36f, 0x6461, 0x7970, 0xf370,\n  0xf371, 0xf372, 0x4a46, 0x6462, 0x7971, 0x4c62,\n  /* 0x7C80 */\n  0x364e, 0x3729, 0x6463, 0x4a34, 0x3f68, 0x4c30, 0x7972, 0x6464,\n  0x4e33, 0x7973, 0x4774, 0x4146, 0x4734, 0x3d4d, 0x3040, 0x7974,\n  0x6469, 0x6467, 0x6465, 0x3421, 0xf376, 0x3e51, 0x646a, 0x6468,\n  0x6466, 0x646e, 0x646d, 0x646c, 0x646b, 0xf378, 0xf379, 0x646f,\n  0x7975, 0x6470, 0x403a, 0xf37a,\n  /* 0x7CC0 */\n  0x6471, 0x6473, 0xf37c, 0x6472, 0xf37e, 0x3852, 0xf421, 0x4138,\n  0x6475, 0x7976, 0x457c, 0xf423, 0x6474, 0x7977, 0x6476, 0x7978,\n  0x4a35, 0x416c, 0x3947, 0x6477, 0xf425, 0x4e48, 0xf426, 0x6479,\n  0x647a, 0x647b, 0xf428, 0x647c, 0x3b65, 0x647d, 0x374f, 0x356a,\n  /* 0x7D00 */\n  0x352a, 0x6521, 0xf429, 0x4c73, 0x3948, 0x647e, 0x7979, 0x797a,\n  0xf42a, 0x6524, 0x4c66, 0x473c, 0x4933, 0xf42c, 0x797b, 0x3d63,\n  0x6523, 0x3c53, 0x3949, 0x3b66, 0x3569, 0x4a36, 0x6522, 0x797c,\n  0xf42d, 0x4147, 0x4b42, 0x3a77, 0x797d, 0x3b67, 0x445d, 0x6527,\n  0x4e5f, 0x3a59, 0x797e, 0x6528, 0x3f42, 0x652a, 0x3e52, 0x3a30,\n  0xf430, 0xf431, 0x6529,\n  /* 0x7D40 */\n  0xf432, 0x7a21, 0x3d2a, 0x383e, 0x4148, 0x6525, 0x652b, 0xf433,\n  0x7a22, 0x6526, 0x3750, 0x652e, 0x6532, 0x376b, 0x7a23, 0x652d,\n  0xf437, 0xf438, 0x6536, 0x7a24, 0x394a, 0x4d6d, 0x303c, 0x6533,\n  0x356b, 0x6530, 0xf439, 0x6531, 0xf43a, 0x457d, 0x652f, 0x652c,\n  0x3328, 0x4064, 0x3828, 0x7a25, 0x6538, 0xf43c,\n  /* 0x7D80 */\n  0x7a26, 0xf43e, 0xf43f, 0x6535, 0x7a27, 0xf440, 0x6537, 0x6534,\n  0xf441, 0x3751, 0x4233, 0x6539, 0x416e, 0xf443, 0x6546, 0x7a28,\n  0x6542, 0x653c, 0x7a29, 0xf444, 0xf445, 0x6540, 0x3c7a, 0x305d,\n  0x653b, 0x6543, 0x6547, 0x394b, 0x4c56, 0x4456, 0x653d, 0xf446,\n  0xf447, 0x6545, 0x653a, 0x433e, 0x653f, 0x303d, 0x4c4a,\n  /* 0x7DC0 */\n  0xf448, 0x7a2a, 0x653e, 0x365b, 0x486c, 0x7a2b, 0x416d, 0x4e50,\n  0x3d6f, 0x656e, 0x7a2c, 0xf449, 0x6548, 0xf44a, 0x407e, 0x6544,\n  0x6549, 0x654b, 0x4479, 0x654e, 0x7a2d, 0x654a, 0xf44b, 0x4a54,\n  0x344b, 0x4c4b, 0x305e, 0xf44c, 0x654d, 0x4e7d, 0xf44d, 0x654c,\n  /* 0x7E00 */\n  0x316f, 0x466c, 0x654f, 0x7a30, 0x6556, 0x6550, 0x6557, 0xf451,\n  0x7a31, 0x6553, 0x7a32, 0xf452, 0x477b, 0xf453, 0x3c4a, 0x6555,\n  0xf454, 0x6552, 0x6558, 0x6551, 0x3d44, 0xf455, 0x7a2f, 0x4b25,\n  0xf456, 0x3d4c, 0x6554, 0x6560, 0x655c, 0x655f, 0x655d, 0x6561,\n  0x655b, 0x6541, 0x4053,\n  /* 0x7E40 */\n  0x484b, 0x655e, 0xf457, 0x6559, 0x7a34, 0x4121, 0x3752, 0x3d2b,\n  0x7a35, 0x3f25, 0x4136, 0x6564, 0x6566, 0x6567, 0x6563, 0x6565,\n  0x7a36, 0x655a, 0x6562, 0x656a, 0x6569, 0x7e7e, 0x4b7a, 0x372b,\n  0xf458, 0xf459, 0x6568, 0x656c, 0x656b, 0x656f, 0xf45a, 0x6571,\n  /* 0x7E80 */\n  0x3b3c, 0x656d, 0xf45b, 0xf45c, 0x6572, 0x6573, 0x7a37, 0x6574,\n  0x7a38, 0x657a, 0x453b, 0x6576, 0xf45e, 0x6575, 0x6577, 0x6578,\n  0x6579, 0xf45f, 0xf460, 0x657b, 0x657c,\n  /* 0x7F00 */\n  0x344c, 0x657d, 0x657e, 0xf463, 0xf462, 0xf464,\n  /* 0x7F40 */\n  0xf465, 0xf466, 0x6621, 0x7a39, 0x6622, 0x6623, 0x6624, 0xf467,\n  0x6625, 0x6626, 0xf46a, 0x6628, 0x6627, 0x6629, 0x662a, 0x662b,\n  0xf46c, 0xf46d, 0xf46e, 0x662e, 0x662c, 0x662d, 0x3a61, 0x3753,\n  0xf46f, 0x4356, 0x4833, 0x3d70, 0x474d, 0x486d, 0x662f, 0x586d,\n  0xf470, 0xf471,\n  /* 0x7F80 */\n  0x6630, 0x6632, 0x4d65, 0x6631, 0x6634, 0x6633, 0x4d53, 0x6635,\n  0x487e, 0xf473, 0x7a3b, 0x6636, 0xf476, 0x7a3c, 0x6639, 0xf477,\n  0x6638, 0x6637, 0x663a, 0x3732, 0x4122, 0x3541, 0xf478, 0x663e,\n  0x663b, 0x663c, 0x663f, 0x6640, 0x663d, 0x3129, 0x7a3d,\n  /* 0x7FC0 */\n  0x3227, 0xf47a, 0x6642, 0x6643, 0x6644, 0x4d62, 0x7a3e, 0xf47b,\n  0x3d2c, 0x6646, 0x6645, 0x7a3f, 0x7a40, 0x3f69, 0x6647, 0xf47c,\n  0xf47d, 0x6648, 0x6649, 0x3465, 0x7a41, 0x7a42, 0xf47e, 0x344d,\n  0xf521, 0x664a, 0x664b, 0x7a43, 0x4b5d, 0x4d63,\n  /* 0x8000 */\n  0x4d54, 0x4f37, 0xf522, 0x394d, 0x664e, 0x3c54, 0x664d, 0xf524,\n  0xf523, 0x664f, 0x3c29, 0xf525, 0x4251, 0xf526, 0x6650, 0x7a45,\n  0x394c, 0xf527, 0x4c57, 0x6651, 0x6652, 0x6653, 0x6654, 0xf528,\n  0x7a46, 0x6655, 0xf529, 0xf52a, 0x3c2a, 0x7a47, 0x4c6d, 0x7a48,\n  0x6657, 0x7a49, 0x433f, 0x6656,\n  /* 0x8040 */\n  0xf52b, 0x6659, 0x6658, 0x665a, 0x403b, 0x665b, 0x665c, 0x4a39,\n  0x665d, 0x416f, 0x665e, 0xf52c, 0x665f, 0x4e7e, 0x6662, 0xf52d,\n  0x6661, 0x6660, 0x4430, 0xf52e, 0x6663, 0x3f26, 0x6664, 0xf52f,\n  0x6665, 0x4f38, 0x6666,\n  /* 0x8080 */\n  0x6667, 0x6669, 0x6668, 0x4825, 0x4679, 0x4f3e, 0x4829, 0x666b,\n  0x3e53, 0x492a, 0xf530, 0x666c, 0x666a, 0xf531, 0x344e, 0x3854,\n  0x3b68, 0xf532, 0x486e, 0xf533, 0x382a, 0x4b43, 0x666f, 0x666d,\n  0x394e, 0x394f, 0x3069, 0x3a68, 0xf534, 0x4759,\n  /* 0x80C0 */\n  0x305f, 0x6674, 0xf536, 0x4340, 0x7a4a, 0x4758, 0x425b, 0xf537,\n  0x6676, 0x7a4b, 0xf538, 0x6672, 0x6675, 0x6670, 0x6673, 0x4b26,\n  0x7a4c, 0x3855, 0x307d, 0x6671, 0xf539, 0x6678, 0x6679, 0x7a4d,\n  0x4639, 0xf53c, 0x363b, 0xf53d, 0x6726, 0x473d,\n  /* 0x8100 */\n  0x3b69, 0x363c, 0x4048, 0x4f46, 0x4c2e, 0x6677, 0x4054, 0xf53b,\n  0xf540, 0x7a4e, 0x3553, 0x667a, 0xf541, 0x667c, 0xf543, 0xf544,\n  0x667b, 0xf545, 0x667d, 0x4326, 0x473e, 0xf53f, 0x4431, 0xf547,\n  0x6723,\n  /* 0x8140 */\n  0x6722, 0x7a4f, 0x667e, 0x3f55, 0x4965, 0x6725, 0x6724, 0x3950,\n  0x4f53, 0x6735, 0x7a50, 0x6729, 0x672a, 0x7a51, 0x7a52, 0xf549,\n  0x3c70, 0x7a53, 0x6728, 0x3978, 0x6727, 0x672b, 0x4432, 0x4a22,\n  0x4123, 0x425c,\n  /* 0x8180 */\n  0x672f, 0xf54b, 0x6730, 0x672c, 0xf54d, 0xf54e, 0x672d, 0x672e,\n  0x3951, 0x6736, 0x6732, 0xf550, 0x4966, 0x4b6c, 0x4928, 0x6731,\n  0x6734, 0x6733, 0x4b44, 0x6737, 0x6738, 0xf551, 0x4137, 0x6739,\n  0x673b, 0x673f, 0x7a54, 0x673c, 0x673a, 0x473f,\n  /* 0x81C0 */\n  0x673d, 0xf552, 0x673e, 0xf553, 0x3232, 0x6745, 0x6740, 0x7a55,\n  0x6741, 0x7a56, 0x6742, 0x4221, 0xf554, 0x7a57, 0x6744, 0x6743,\n  0x6746, 0xf555, 0x6747, 0x6748, 0x3f43, 0xf557, 0x3269, 0x6749,\n  0x4e57, 0x3c2b, 0xf559, 0x3d2d, 0x3b6a, 0x4357, 0x674a, 0x674b,\n  0x3131, 0xf55b, 0x674c, 0xf55c,\n  /* 0x8200 */\n  0x674d, 0x674e, 0xf55e, 0x674f, 0x6750, 0x363d, 0x5a2a, 0x6751,\n  0x4065, 0x6752, 0x3c4b, 0x6753, 0x5030, 0x6754, 0x4a5e, 0x345c,\n  0xf560, 0x4124, 0x3d58, 0x4971, 0x3d2e, 0xf561, 0xf562, 0x6755,\n  0x3952, 0x6756, 0x484c, 0x6764, 0xf564, 0x6758, 0xf565, 0x4249,\n  0x4775, 0x383f, 0x6757, 0x4125, 0xf566,\n  /* 0x8240 */\n  0x6759, 0xf569, 0xf567, 0x447a, 0xf568, 0xf56b, 0xf56d, 0xf56f,\n  0x675b, 0x675a, 0x675d, 0xf571, 0x675c, 0x675e, 0x7a5b, 0x6760,\n  0xf572, 0x675f, 0x344f, 0x6761, 0x6762, 0x6763, 0x3a31, 0x4e49,\n  0x6765, 0x3f27, 0x7a5c, 0x3170, 0x6766, 0x6767, 0xf576, 0xf578,\n  0x6768, 0xf579,\n  /* 0x8280 */\n  0xf57a, 0xf57b, 0x3072, 0x6769, 0x7a5e, 0x676a, 0xf57c, 0x4967,\n  0x3c47, 0x676c, 0x7a5f, 0x7a60, 0x7a61, 0x3329, 0x3032, 0xf57d,\n  0xf57e, 0x7a62, 0x676b, 0x676e, 0x474e, 0x7a63, 0x3f44, 0x3256,\n  0xf621, 0x4b27, 0xf622, 0x7a64, 0x375d, 0x365c, 0xf623, 0x676d,\n  0xf624, 0x326a, 0x7a65, 0x7a66,\n  /* 0x82C0 */\n  0x3423, 0x7a67, 0x3171, 0x6772, 0x4e6a, 0x425d, 0x7a68, 0x4944,\n  0x677e, 0x3257, 0x677c, 0x677a, 0x6771, 0x676f, 0xf625, 0x6770,\n  0x3c63, 0x366c, 0x4377, 0xf626, 0x4651, 0x3151, 0x6774, 0x6773,\n  0xf627, 0x6779, 0x6775, 0x6778, 0x7a69, 0x7a6a,\n  /* 0x8300 */\n  0x7a6b, 0x7a6c, 0x4c50, 0x6777, 0x3258, 0x337d, 0x677b, 0xf628,\n  0xf629, 0x677d, 0xf62a, 0x3754, 0x6823, 0x682c, 0x682d, 0xf62c,\n  0x302b, 0xf62d, 0x7a6e, 0x6834, 0x3071, 0x682b, 0x7a6f, 0x682a,\n  0xf62e, 0x6825, 0x6824, 0x6822, 0x6821, 0x4363, 0x427b, 0x6827,\n  0x7a70, 0xf62f,\n  /* 0x8340 */\n  0x6826, 0x7a71, 0xf630, 0x6829, 0x7a72, 0x4170, 0x3755, 0x3141,\n  0x6828, 0x7a73, 0x3953, 0xf62b, 0x7a74, 0xf631, 0x4171, 0x7a6d,\n  0xae4a, 0x683a, 0x683b, 0x3259, 0x322e, 0x6838, 0x7a75, 0xf633,\n  /* 0x8380 */\n  0x682e, 0x7a76, 0x6836, 0x683d, 0x6837, 0xf636, 0x6835, 0x7a77,\n  0x6776, 0xf637, 0xf638, 0x6833, 0x7a78, 0x682f, 0xf639, 0xf63a,\n  0x3450, 0x6831, 0x683c, 0x6832, 0x7a79, 0x683e, 0x7a7a, 0x6830,\n  0x477c, 0x4d69, 0x6839, 0x684f, 0x7a7b,\n  /* 0x83C0 */\n  0x7a7c, 0x6847, 0x3f7b, 0x7a7d, 0xf63b, 0x3546, 0x365d, 0x6842,\n  0x7a7e, 0xf63c, 0x7b21, 0x325b, 0xf63d, 0x3e54, 0x6845, 0x3a5a,\n  0xf63e, 0x4551, 0x684a, 0x7b22, 0xf63f, 0x4a6e, 0x7b23, 0x6841,\n  0x325a, 0x3856, 0x4929, 0x684b, 0x683f, 0x6848, 0xf640, 0x6852,\n  0x6843,\n  /* 0x8400 */\n  0x7b24, 0x6844, 0x463a, 0x7b25, 0x6849, 0x7b26, 0x6846, 0x4b28,\n  0x684c, 0x3060, 0xf641, 0xf642, 0x6840, 0xf643, 0xf645, 0x684e,\n  0x684d, 0x476b, 0x6854, 0x685f, 0x337e, 0x6862, 0x6850, 0xf646,\n  0x6855, 0x4d6e,\n  /* 0x8440 */\n  0x685e, 0x7b28, 0x4d55, 0xf647, 0x4e2a, 0xf648, 0xf649, 0xf64a,\n  0x4378, 0xf64b, 0xf64c, 0x336b, 0xf64d, 0x7b29, 0x4972, 0x6864,\n  0x4621, 0xf64f, 0x3031, 0x685d, 0x6859, 0x4172, 0x6853, 0x685b,\n  0x6860, 0x7b2a, 0x472c, 0x7b2b, 0x302a, 0xf650, 0x6858, 0xf651,\n  0x6861, 0x4978, 0xf652,\n  /* 0x8480 */\n  0xf653, 0x685c, 0x6857, 0x7b2c, 0x3e55, 0x3d2f, 0x3c2c, 0xf656,\n  0x4c58, 0x4947, 0x7b2d, 0x6867, 0x6870, 0xf657, 0x685a, 0x7b2e,\n  0x3377, 0x7b2f, 0x3e78, 0x6865, 0x7b30, 0x686a, 0x4173, 0xf658,\n  0x6866,\n  /* 0x84C0 */\n  0x7b31, 0x686d, 0x7b32, 0x435f, 0x686e, 0x4d56, 0x6863, 0x3338,\n  0x6869, 0xf65a, 0xf65b, 0x686c, 0x4c2c, 0xf65c, 0x686f, 0x6868,\n  0x686b, 0xf655, 0xf65e, 0xf65f, 0x4b29, 0x4f21, 0xf660, 0xf661,\n  0xf662, 0x6873, 0xf663, 0x687a, 0xf664, 0x6872,\n  /* 0x8500 */\n  0x3c43, 0x6851, 0xf665, 0x4a4e, 0x4c22, 0x6879, 0x6878, 0x6874,\n  0x6875, 0x3136, 0xf666, 0x7b35, 0x6877, 0x6871, 0x7b36, 0xf667,\n  0xf668, 0x4455, 0xf669, 0x6876, 0x307e, 0x7b37, 0x7b34, 0xf66a,\n  0x4222, 0x4a43, 0xf66f,\n  /* 0x8540 */\n  0x687b, 0x6921, 0x4859, 0x687e, 0x3e56, 0x3c49, 0x6923, 0x363e,\n  0xf66b, 0xf670, 0xf671, 0x6924, 0x4979, 0x687d, 0x7b38, 0x6856,\n  0xf672, 0xf673, 0xf674, 0x687c, 0x7b39, 0x4f4f, 0x4622, 0x4973,\n  0x692b, 0xf66c, 0x6931, 0x7b3c, 0xf676, 0xf677, 0x6932, 0xf678,\n  /* 0x8580 */\n  0x6925, 0xf679, 0x4776, 0xf67a, 0x692f, 0x6927, 0x6929, 0x7b3d,\n  0x7b3e, 0x6933, 0x6928, 0xf67b, 0x692c, 0x3172, 0x4665, 0x692d,\n  0x6930, 0xf67c, 0xf67d, 0x7b3f, 0x6926, 0x4126, 0x692a, 0x3b27,\n  0x3f45, 0x3730, 0x4c74, 0x7b3b, 0x4c79, 0x3d72, 0x7b40, 0xf723,\n  0x6937, 0x6935, 0xf724,\n  /* 0x85C0 */\n  0x4f4e, 0xf725, 0x6934, 0xf726, 0x7b41, 0x4d75, 0x7b42, 0x6936,\n  0x6938, 0x6939, 0xf727, 0xf728, 0x693c, 0x693a, 0xf729, 0xf72a,\n  0x4623, 0x693b, 0xf72b, 0x484d, 0x692e, 0x7b43, 0xf72c, 0x3d73,\n  0x693d, 0x6942, 0x4174, 0x6941, 0x7b45,\n  /* 0x8600 */\n  0xf72d, 0x6922, 0x7b46, 0x7b47, 0x6943, 0x4149, 0x693e, 0x6940,\n  0x7b48, 0xf72e, 0x7b44, 0x693f, 0x5d31, 0x5d22, 0x7b4a, 0x6945,\n  0xf72f, 0xf730, 0x6944, 0xf731, 0xf732, 0x7b4b, 0x4d76, 0x623c,\n  0x6946, 0x7b4c, 0xf734, 0xf735, 0x6947,\n  /* 0x8640 */\n  0xf737, 0x2f68, 0x6948, 0x3857, 0x3554, 0xf739, 0x694a, 0x515d,\n  0xf73a, 0x7b4d, 0x3575, 0x7b4e, 0x4e3a, 0x3673, 0x694b, 0x7b50,\n  0x694c, 0x436e, 0x7b52, 0xf73b, 0x694d, 0x7b53, 0xf73c, 0x467a,\n  0xf73d, 0x303a,\n  /* 0x8680 */\n  0xf73e, 0xf73f, 0x3263, 0x6952, 0x6953, 0xf740, 0xf741, 0x694e,\n  0x3b3d, 0x7b54, 0xf742, 0xf743, 0x694f, 0x4742, 0xf744, 0x6950,\n  0x6951, 0x695b, 0x6955, 0x6958, 0xf746, 0xf747, 0x6954, 0x7b55,\n  /* 0x86C0 */\n  0xf748, 0xf749, 0x6956, 0x6957, 0x3c58, 0x6959, 0x4341, 0x3756,\n  0x3342, 0xf74a, 0x695c, 0xf74b, 0xf74c, 0x333f, 0x6961, 0x695d,\n  0x6960, 0xf74d, 0x483a, 0xf74e, 0x695e, 0x695f, 0x4948, 0x485a,\n  0x6962, 0x427d, 0x696c, 0x7b56, 0x6968, 0x7b57, 0x7b58, 0x326b,\n  /* 0x8700 */\n  0x6966, 0x4b2a, 0x6967, 0xf750, 0x6964, 0xf751, 0x6965, 0x696a,\n  0x696d, 0x7b59, 0x696b, 0xf752, 0xf753, 0x6969, 0x6963, 0xf754,\n  0x4358, 0xf755, 0x6974, 0x4c2a, 0xf756, 0xf757, 0xf758, 0x6972,\n  0x6973, 0xf759, 0x696e, 0x6970, 0xf75a, 0x6971, 0xf75b, 0x696f,\n  /* 0x8740 */\n  0xf75c, 0xf75d, 0x4066, 0x4f39, 0x6978, 0x6979, 0xf75e, 0x6a21,\n  0x3f2a, 0x697b, 0xf75f, 0x697e, 0x6976, 0x6975, 0x6a22, 0xf760,\n  0xf761, 0x325c, 0x697c, 0x6a23, 0x697d, 0x7b5a, 0xf762, 0x697a,\n  0x4433, 0x6977, 0xf763, 0x4768,\n  /* 0x8780 */\n  0x6a27, 0x7b5b, 0x7b5c, 0xf767, 0xf768, 0x4d3b, 0xf769, 0x6a26,\n  0xf76a, 0x6a25, 0xf766, 0x6a2e, 0x7b5d, 0x7b5e, 0x6a28, 0x6a30,\n  0x7b5f, 0x4d66, 0x6a33, 0x6a2a, 0xf76d,\n  /* 0x87C0 */\n  0x6a2b, 0xf76f, 0x6a2f, 0x6a32, 0x6a31, 0x6a29, 0xf770, 0x6a2c,\n  0x6a3d, 0x7b61, 0xf772, 0x6a36, 0xf774, 0xf775, 0xf776, 0xf777,\n  0xf778, 0x7b62, 0xf779, 0x6a34, 0x6a35, 0xf771, 0x6a3a, 0x6a3b,\n  0x332a, 0x3542, 0x6a39,\n  /* 0x8800 */\n  0xf77a, 0xf77b, 0x6a24, 0x7b63, 0x7b64, 0xf77c, 0x6a38, 0x6a3c,\n  0x6a37, 0x7b65, 0x6a3e, 0xf77d, 0x7b66, 0x6a40, 0x6a3f, 0x7b67,\n  0x6a42, 0x6a41, 0x695a, 0x6a46, 0xf77e, 0xf821, 0x6a43, 0xf822,\n  0x6a44, 0x6a45, 0x6a47, 0xf823,\n  /* 0x8840 */\n  0x376c, 0x6a49, 0x6a48, 0x3d30, 0xf825, 0x3954, 0x5e27, 0x6a4a,\n  0x3d51, 0x3339, 0xf826, 0x6a4b, 0x3152, 0x3e57, 0x6a4c, 0xf827,\n  0x3955, 0x6a4d, 0x3061, 0xf828, 0x493d, 0xf82b, 0x6a4e, 0xf82d,\n  0x3f6a, 0x6a55, 0x6a52, 0x436f, 0x6a53, 0x6a50, 0x365e,\n  /* 0x8880 */\n  0x6a4f, 0x6a56, 0x3736, 0x425e, 0x6a5c, 0x6a58, 0x4235, 0x6a57,\n  0x7b68, 0x6a5a, 0x6a51, 0xf82e, 0x6a5b, 0x6a5d, 0x7b69, 0x486f,\n  0x6a59, 0x6a5e, 0x6a60, 0x3853, 0x6a54, 0x3041, 0xf82f, 0xf830,\n  0xf831, 0x6a5f,\n  /* 0x88C0 */\n  0xf832, 0x3a5b, 0x4e76, 0x6a61, 0x6a62, 0x4175, 0x7b6a, 0x7b6b,\n  0x4e22, 0xf835, 0xf833, 0xf836, 0x6a63, 0x4d35, 0x6a64, 0x6a65,\n  0xf837, 0x4a64, 0x6a66, 0x3a40, 0x4e23, 0x6a6b, 0xf838, 0xf839,\n  0x6a6c, 0x3e58, 0x6a6a, 0x7b6d, 0x4d67, 0x6a67, 0x6a69, 0x403d,\n  0x3f7e,\n  /* 0x8900 */\n  0xf83b, 0x6a68, 0x6a6d, 0x4a23, 0x6a6f, 0x6a6e, 0x336c, 0x4b2b,\n  0x6a70, 0x7b70, 0x7b71, 0x7b72, 0x7b6e, 0x6a7c, 0x6a72, 0x6a73,\n  0x7b73, 0x6a74, 0x6a75, 0x7b74, 0x7b75, 0x6a79, 0xf83d, 0x6a7a,\n  0x7b76, 0x6a78,\n  /* 0x8940 */\n  0x7b77, 0x6a76, 0xf83f, 0x6a71, 0x6a77, 0xf840, 0xf841, 0x6a7b,\n  0x7037, 0x3228, 0x6a7e, 0x365f, 0x6a7d, 0xf844, 0x6b22, 0x6b21,\n  0x6b24, 0x6b23, 0x6b25, 0x3d31, 0x6b26, 0x6b27, 0x6b28, 0x403e,\n  /* 0x8980 */\n  0xf845, 0x4d57, 0x6b29, 0x4a24, 0x4746, 0x6b2a, 0xf846, 0x6b2b,\n  0x382b, 0x352c, 0xf847, 0x6b2c, 0x7b78, 0x3b6b, 0x4741, 0x6b2d,\n  0x3350, 0xf848, 0x6b2e, 0x6b30, 0x4d77, 0x6b2f, 0x3f46, 0x6b31,\n  0x6b32, 0xf849, 0x6b33, 0x3451, 0xf84a, 0x6b34, 0x6b35, 0x6b36,\n  /* 0x89C0 */\n  0x6b37, 0x3351, 0x7b7a, 0xf84b, 0xf84c, 0x6b38, 0x6b39, 0x6b3a,\n  0x3272, 0x7b7b, 0x3f28, 0x6b3b, 0xf84d, 0xf84f, 0xf850, 0x6b3c,\n  0x7b7c, 0x6b3d, 0xf851, 0xf852,\n  /* 0x8A00 */\n  0x3840, 0x447b, 0x6b3e, 0x3757, 0x3f56, 0x6b41, 0x4624, 0x6b40,\n  0xf854, 0x7b7d, 0x3731, 0xf855, 0x7b7e, 0x6b3f, 0x4277, 0x352d,\n  0x6b42, 0x6b43, 0x3e59, 0xf857, 0x7c21, 0x376d, 0x6b44, 0x4b2c,\n  0x405f, 0x3576, 0x4c75, 0x414a, 0xf858, 0x6b45, 0x7c22, 0x3f47,\n  0x4370, 0x3e5a, 0xf859,\n  /* 0x8A40 */\n  0x6b46, 0xf85a, 0x6b49, 0x7c23, 0x6b4a, 0xf85b, 0x7c24, 0x3a3e,\n  0x4242, 0x6b48, 0x3e5b, 0x493e, 0xf85c, 0x6b47, 0x7c25, 0x3b6c,\n  0x3153, 0x7c26, 0x6b4e, 0x3758, 0x3b6e, 0x3b6d, 0x4f4d, 0x6b4d,\n  0x6b4c, 0x4127, 0x354d, 0x4f43, 0x333a, 0x3e5c, 0x7c27, 0x7c28,\n  0x6b4b,\n  /* 0x8A80 */\n  0x6b50, 0x6b51, 0x6b4f, 0x3858, 0x4d40, 0x3b6f, 0x4727, 0xf85e,\n  0x6b54, 0x4040, 0x4342, 0x4d36, 0x6b57, 0x386c, 0x403f, 0x6b53,\n  0x6b58, 0x386d, 0x6b55, 0x6b56, 0x7c29, 0x6b52, 0x4062, 0x4649,\n  0xf85d, 0x432f, 0x325d, 0xf85f, 0x4870, 0x3543, 0xf860, 0x4434,\n  /* 0x8AC0 */\n  0x6b5b, 0x6b59, 0x434c, 0x4041, 0x3452, 0x6b5a, 0x3f5b, 0x7c2a,\n  0x4e4a, 0x4f40, 0xf861, 0x6b5c, 0x6b67, 0x4435, 0x6b66, 0x7c2b,\n  0x6b63, 0x6b6b, 0x6b64, 0x6b60, 0x447c, 0x6b5f, 0x6b5d, 0x4d21,\n  0x3b70, 0x6b61, 0x6b5e, 0x7c2c, 0x7c2d, 0x6b65, 0x3d74, 0x3841,\n  0xf862, 0x427a,\n  /* 0x8B00 */\n  0x4b45, 0x315a, 0x3062, 0x4625, 0xf865, 0x6b69, 0xf864, 0x6b68,\n  0xf866, 0x4666, 0x6b6d, 0x6b62, 0x6b6c, 0x6b6e, 0x382c, 0x6b6a,\n  0x3956, 0xf867, 0x3c55, 0xf868, 0x6b6f, 0x4d58, 0x6b72, 0x6b75,\n  0x6b73, 0x4935, 0xf869, 0x6b70, 0x3660, 0x6b74,\n  /* 0x8B40 */\n  0x6b76, 0xf86a, 0x7c31, 0x6b7a, 0x6b77, 0x6b79, 0x6b78, 0xf86c,\n  0x7c32, 0x6b7b, 0x3c31, 0x7c33, 0x6b7d, 0x6b7c, 0x4968, 0xf86d,\n  0x6c21, 0x3759, 0x7c34, 0x6b7e, 0x6c22, 0x6c23, 0x3544, 0x6641,\n  0x3e79, 0x6c24, 0xf86e, 0x386e, 0x6c25, 0xf86f,\n  /* 0x8B80 */\n  0x6c26, 0xf870, 0x3b3e, 0x5a4e, 0xf871, 0x6c27, 0x6c28, 0x3d32,\n  0x6c29, 0x6c2a, 0xf872, 0xf873, 0x6c2b, 0x6c2c, 0x6c2d, 0xf874,\n  0x7c35, 0xf875,\n  /* 0x8C00 */\n  0x432b, 0xf876, 0x6c2e, 0xf878, 0x6c30,\n  /* 0x8C40 */\n  0x6c2f, 0xf87b, 0x4626, 0xf87c, 0x6c31, 0x7c36, 0x4b2d, 0x6c32,\n  0x6c33, 0xf87d, 0x6c34, 0xf87e, 0x6c35, 0xf921, 0x465a, 0x3e5d,\n  0x6c36, 0x7c37, 0xf922, 0x396b, 0x502e, 0x6c37, 0xf923, 0xf924,\n  0x6c38, 0x493f, 0x6c39, 0x6c41,\n  /* 0x8C80 */\n  0x6c3a, 0x6c3c, 0x6c3b, 0x6c3d, 0x4b46, 0x6c3e, 0x6c3f, 0xf927,\n  0xf926, 0x6c40, 0x6c42, 0xf928, 0xf92a, 0x332d, 0x4467, 0x4969,\n  0x3a62, 0x3957, 0xf92b, 0x494f, 0x325f, 0x484e, 0x6c45, 0x3453,\n  0x4055, 0x6c44, 0x6c49, 0x4379, 0x4c63, 0x6c47, 0x6c48, 0x352e,\n  0x6c4a, 0x4763, 0x425f, 0x4871, 0x453d, 0x6c46, 0x4b47,\n  /* 0x8CC0 */\n  0x326c, 0x6c4c, 0x4f28, 0x4442, 0x4f45, 0x3b71, 0x6c4b, 0x4231,\n  0x6c5c, 0x4128, 0x4678, 0x4950, 0xf92d, 0xf92c, 0xf92e, 0x6c4f,\n  0x3b3f, 0x3b72, 0x3e5e, 0x4765, 0x7c39, 0x382d, 0x6c4e, 0x6c4d,\n  0x496a, 0x3c41, 0x4552, 0xf930, 0xf931, 0x7c3a, 0x7c3b, 0x6c51,\n  0x6c52, 0x3958, 0x6c50, 0x7c3c,\n  /* 0x8D00 */\n  0x6c53, 0x6c54, 0x6c56, 0x4223, 0xf933, 0x6c55, 0x3466, 0x6c58,\n  0xf934, 0x6c57, 0x6c59, 0x7c3e, 0x6c5b, 0x6c5d, 0x6c5e, 0x7c3f,\n  /* 0x8D40 */\n  0x4056, 0x3c4f, 0x6c5f, 0x3352, 0xf935, 0x6c60, 0x4176, 0x6c61,\n  0x6c62, 0x496b, 0x352f,\n  /* 0x8D80 */\n  0x6c63, 0xf936, 0x4436, 0x315b, 0xf937, 0x6c64, 0x3c71, 0xf938,\n  0x3f76, 0x7c40, 0x422d, 0x6c67, 0x6c66,\n  /* 0x8DC0 */\n  0x6c65, 0xf93a, 0xf93b, 0x6c6d, 0x6c6b, 0x7c41, 0x6c68, 0x7c42,\n  0x6c6a, 0x7c43, 0xf93c, 0x6c69, 0x6c6c, 0x3577, 0x6c70, 0x4057,\n  0x6c71, 0x3859, 0x6c6e, 0x6c6f, 0xf93d, 0x4f29, 0x4437, 0x4129,\n  0x6c72, 0xf940, 0x6c75,\n  /* 0x8E00 */\n  0xf941, 0x6c73, 0x6c74, 0x4d59, 0xf93e, 0x4627, 0x6c78, 0xf943,\n  0xf944, 0x6c76, 0x6c77, 0x6c79, 0x7c44, 0xf945, 0xf946, 0x7c45,\n  0xf947, 0x6d29, 0x6c7c, 0x6c7d, 0x6c7b, 0xf94a, 0xf94b, 0x7c46,\n  /* 0x8E40 */\n  0x6c7a, 0x447d, 0x6d21, 0x6d25, 0x6d22, 0x6c7e, 0xf94c, 0x6d23,\n  0x6d24, 0xf94d, 0x6d2b, 0x6d26, 0x4058, 0x6d28, 0xf94e, 0x6d2a,\n  0x6d27, 0xf94f, 0xf950, 0xf951, 0x7c47, 0x6d2d, 0x3d33, 0x6d2c,\n  0x7c48, 0x6d2e,\n  /* 0x8E80 */\n  0x6d2f, 0x6d32, 0x6d31, 0x6d30, 0x6d34, 0x6d33, 0x4c76, 0x6d36,\n  0x6d35, 0x6d37, 0xf952, 0x6d38, 0xf953, 0x6d3a, 0x6d39, 0x3f48,\n  0x6d3b, 0xf954, 0x366d, 0x6d3c, 0x6d3e, 0xf955, 0xf956, 0xf957,\n  0xf958, 0x6d3f,\n  /* 0x8EC0 */\n  0x7c4a, 0x6d40, 0x6d3d, 0x6d41, 0x3c56, 0x6d42, 0x3530, 0x3733,\n  0xf95a, 0x382e, 0xf95b, 0x6d43, 0x4670, 0x453e, 0x6d44, 0x6d47,\n  0x3c34, 0xf95d, 0x7c4c, 0x6d46, 0x6d45, 0x375a, 0x6d48,\n  /* 0x8F00 */\n  0xf95f, 0x3353, 0x6d4a, 0xf960, 0x3a5c, 0x6d49, 0x6d52, 0x6d4c,\n  0x6d4e, 0x4a65, 0x6d4b, 0xf961, 0x6d4d, 0x6d51, 0x6d4f, 0x3531,\n  0x7c4d, 0x6d50, 0x6d53, 0x475a, 0x4e58, 0xf962, 0x7c4e, 0x3d34,\n  0x6d54, 0x7c4f, 0x4d22, 0x6d56, 0x6d55, 0x6d59, 0x4d41,\n  /* 0x8F40 */\n  0xf963, 0x6d58, 0x336d, 0x6d57, 0x6d5c, 0x6d5b, 0xf964, 0x6d5a,\n  0x4532, 0x6d5d, 0x7c50, 0x6d5e, 0xf965, 0x6d5f, 0x396c, 0x3725,\n  0x6d60, 0x6d61, 0x6d62,\n  /* 0x8F80 */\n  0x3f49, 0x6d63, 0x3c2d, 0x6d64, 0x6d65, 0xf967, 0x7c52, 0x5221,\n  0x517e, 0x6d66, 0x6570, 0x6d67, 0x4324, 0x3f2b, 0x4740, 0xf968,\n  0x7c53, 0xf96a, 0x6d68, 0x4a55, 0x4454, 0x397e, 0x4329,\n  /* 0x8FC0 */\n  0xf96c, 0x312a, 0x4b78, 0x3f57, 0xf96d, 0xf96f, 0xf970, 0x375e,\n  0x3661, 0xf971, 0x4a56, 0xf972, 0x6d69, 0xf973, 0x6d6b, 0x7c54,\n  0x6d6a, 0x3260, 0x7c55, 0x4676, 0x6d6c, 0x4777, 0x4533, 0x7c56,\n  0x6d6d, 0x3d52, 0xf974, 0x6d6f, 0xf975, 0x4c42, 0x6d7e, 0x6d71,\n  0x6d72, 0xf976, 0x4449,\n  /* 0x9000 */\n  0x4260, 0x4177, 0xf977, 0x4628, 0x6d70, 0x3555, 0x7c57, 0x6d79,\n  0xf978, 0x6d76, 0x6e25, 0x4629, 0x4360, 0x6d73, 0x447e, 0x4553,\n  0x6d74, 0x6d78, 0x3f60, 0x4767, 0x444c, 0x4042, 0x6d77, 0x422e,\n  0x4224, 0x6d75, 0x3029, 0x4f22, 0x6d7a, 0x7c58, 0x4261, 0x3d35,\n  0x3f4a, 0x6d7c, 0x6d7b, 0xf979, 0x306f, 0x6d7d, 0x492f, 0x6e27,\n  /* 0x9040 */\n  0x465b, 0x3f6b, 0xf97b, 0xf97c, 0x4359, 0x3678, 0x6e26, 0x4d37,\n  0x313f, 0x4a57, 0x3261, 0x6e21, 0x6e22, 0x6e23, 0x6e24, 0x463b,\n  0x4323, 0x3063, 0x6e28, 0x6e29, 0x7423, 0x423d, 0xf97d, 0x6e2a,\n  0x3173, 0x414c, 0x382f, 0x4d5a, 0x6e2b, 0x452c, 0x4178, 0x3c57,\n  0x6e2c, 0x6e2f, 0x3d65, 0x6e2d, 0x412b, 0x412a, 0x3064, 0x4e4b,\n  0x6e31, 0x4872,\n  /* 0x9080 */\n  0x6e33, 0x6e32, 0x6e30, 0x6364, 0x3454, 0xfa22, 0x6d6e, 0x7c5a,\n  0x6e35, 0x6e34, 0xfa23, 0x6e36, 0xfa24, 0x4d38, 0x7c5b, 0x7c5c,\n  0x7c5d, 0x7c5e, 0xfa26, 0x7c5f, 0x4661, 0x4b2e, 0x6e37, 0x3c59,\n  0x6e38, 0xfa28, 0x6e39, 0x7c60, 0x6e3a, 0xfa29, 0x4521, 0x7c61,\n  /* 0x90C0 */\n  0x306a, 0xfa2a, 0x7c62, 0x7c63, 0x7c64, 0xfa2b, 0x3959, 0x4f3a,\n  0x7c65, 0x6e3e, 0xfa2d, 0x7c66, 0x7c67, 0xfa2e, 0x3734, 0x6e3b,\n  0x6e3c, 0x4974, 0xfa33, 0x3354, 0x7c68, 0xfa31, 0x7c69, 0x4d39,\n  0xfa30, 0x363f, 0x4554, 0xfa34, 0xfa35,\n  /* 0x9100 */\n  0xfa32, 0x6e3f, 0xfa36, 0xfa37, 0x6e40, 0x7c6b, 0x7c6c, 0x7c6d,\n  0xfa38, 0x6e41, 0xfa39, 0xfa3a, 0x7c6e, 0x7c6f, 0x7c70, 0x4522,\n  0x7c71, 0x6e43, 0x7c72, 0x6e42, 0x7c73, 0xfa3b, 0xfa3c, 0xfa3d,\n  0x7c74,\n  /* 0x9140 */\n  0xfa3e, 0xfa3f, 0x7c75, 0x4653, 0x6e44, 0x3d36, 0x3c60, 0x475b,\n  0x4371, 0x3c72, 0x3f6c, 0x6e45, 0xfa40, 0x6e46, 0xfa41, 0x7c76,\n  0xfa42, 0x3f5d, 0x6e47, 0xfa43, 0x6e48, 0x6e49, 0x4d6f, 0x3d37,\n  0x6e4b, 0x6e4a, 0xfa44, 0x395a, 0x3973, 0x3b40, 0xfa45,\n  /* 0x9180 */\n  0x6e4e, 0x7c77, 0xfa46, 0x3d66, 0x6e4d, 0x6e4c, 0x4269, 0xfa47,\n  0x386f, 0x4043, 0x4830, 0x3d39, 0x7c78, 0x6e4f, 0x3e5f, 0xfa48,\n  0x6e52, 0x6e50, 0x7c79, 0xfa49, 0x6e51, 0x7c7a, 0xfa4a, 0x6e54,\n  0x6e53, 0xfa4b, 0x3e7a, 0x6e55, 0x7c7b,\n  /* 0x91C0 */\n  0x6e56, 0x6e57, 0xfa4c, 0xfa4d, 0x4850, 0x3a53, 0x3c61, 0x6e58,\n  0x6e59, 0x4e24, 0x3d45, 0x4c6e, 0x4e4c, 0x6e5a, 0x3662, 0x6e5b,\n  0x7c7c, 0x4523, 0xfa4e, 0x6e5e, 0x3378, 0x3f4b, 0x6e5c, 0x6e5d,\n  0x4460, 0x7c7e, 0x7d21, 0x4b55, 0x367c, 0xfa51, 0x7d22, 0xfa52,\n  0x7d23, 0x6e60, 0x6e61, 0x7c7d, 0x6e5f, 0x6e63,\n  /* 0x9200 */\n  0xfa53, 0x7d24, 0xfa54, 0x465f, 0x3343, 0x7d25, 0x6e67, 0x6e64,\n  0x6e66, 0xfa55, 0xfa56, 0x6e62, 0x6f4f, 0x6e65, 0xfa58, 0x4e6b,\n  0x385a, 0x7d26, 0x7d27, 0x7d28, 0x7d29, 0x6e6f,\n  /* 0x9240 */\n  0x7d2a, 0xfa59, 0x7d2b, 0x4534, 0x6e6a, 0xfa5a, 0x6e6d, 0x6e6b,\n  0xfa5b, 0x6e70, 0xfa5c, 0x7d2c, 0x6e71, 0xfa5d, 0xfa5e, 0x6e69,\n  0xfa5f, 0x6e76, 0x3174, 0x6e68, 0xfa60, 0xfa61, 0x482d, 0x6e6c,\n  0xfa62, 0x3e60, 0xfa63, 0xfa64, 0x395b, 0x7d2d, 0xfa67, 0xfa68,\n  0x4b48, 0xfa69,\n  /* 0x9280 */\n  0x3664, 0x3d46, 0x463c, 0x7d2e, 0xfa6a, 0xfa6b, 0x412d, 0x6e74,\n  0x6e6e, 0x6e73, 0xfa6c, 0x4c43, 0xfa6d, 0x4438, 0x6e75, 0x6e72,\n  0xfa6e, 0xfa6f, 0xfa70, 0x412c, 0xfa73, 0x6e79, 0x6e78, 0xfa74,\n  /* 0x92C0 */\n  0xfa75, 0x7d2f, 0xfa76, 0x7d30, 0x7d31, 0xfa77, 0x6e77, 0xfa78,\n  0x4b2f, 0x7d32, 0xfa79, 0xfa7a, 0x7d33, 0x3d7b, 0xfa7b, 0xfa7c,\n  0x6e7a, 0x4a5f, 0x3154, 0x4946, 0x4372, 0xfb22, 0x3578, 0xfb23,\n  0x6e7c, 0xfb24, 0x395d, 0x7d34,\n  /* 0x9300 */\n  0xfb25, 0x7d35, 0x3b2c, 0xfb26, 0x6e7b, 0x3f6d, 0xfa7d, 0xfb27,\n  0x3f6e, 0x6f21, 0x6f23, 0xfb28, 0xfb29, 0x7d36, 0x3e7b, 0x7d37,\n  0x6f22, 0x6f24, 0x7d38, 0x3653, 0xfb2a, 0x4945, 0xfb2b, 0x3c62,\n  0x4f23, 0x6e7e, 0x3a78, 0x4f3f, 0x6f26, 0x6f25, 0x6f27,\n  /* 0x9340 */\n  0x6e7d, 0xfb2e, 0x7d39, 0x7d3a, 0x7d3b, 0x4669, 0x4555, 0xfb2f,\n  0x4457, 0x6f2c, 0xfb30, 0xfb31, 0x4343, 0x6f28, 0x6f29, 0x7d3c,\n  0x7d3d, 0x7d3e, 0xfb32, 0x372d, 0x6f2b, 0x7d3f, 0xfb33, 0xfb34,\n  0x3830, 0x6f2a, 0x3e61,\n  /* 0x9380 */\n  0xfb38, 0xfb39, 0x3379, 0xfb3a, 0x6f30, 0x3a3f, 0x4179, 0x444a,\n  0x7d40, 0xfb3b, 0xfb35, 0x7d41, 0x333b, 0x6f2e, 0x6f2f, 0x4443,\n  0x6f2d, 0x6f31, 0x7d42,\n  /* 0x93C0 */\n  0xfb40, 0x6f37, 0x7d43, 0xfb41, 0x6f3a, 0x6f39, 0x452d, 0x6f32,\n  0x6f33, 0x6f36, 0xfb42, 0x6f38, 0x7d44, 0x7d45, 0x3640, 0xfb43,\n  0x6f3b, 0x6f35, 0xfb44, 0x6f34, 0xfb3f, 0xfb3c, 0xfb49, 0x7d47,\n  /* 0x9400 */\n  0x6f3f, 0x7d46, 0x6f40, 0xfb45, 0xfb46, 0x6f41, 0x6f3e, 0x6f3d,\n  0xfb47, 0xfb48, 0x3e62, 0x462a, 0x6f3c, 0x6f45, 0x6f43, 0xfb4a,\n  0x7d48, 0xfb4b, 0x6f44, 0x6f42, 0x4278, 0x6f46, 0xfb4c,\n  /* 0x9440 */\n  0x6f47, 0x6f49, 0xfb4d, 0x7d49, 0x3455, 0x6f48, 0x4c7a, 0x6f54,\n  0x6f4a, 0x6f4d, 0x6f4b, 0x6f4c, 0x7d4a, 0x6f4e, 0x7d4b, 0xfb50,\n  0xfb51, 0x6f50, 0x7d4c, 0x7d4d, 0x6f51, 0x6f52, 0x6f55, 0x6f53,\n  0x6f56, 0x6f58,\n  /* 0x9480 */\n  0x6f57,\n  /* 0x9540 */\n  0x4439, 0xfb52, 0xfb53,\n  /* 0x9580 */\n  0x4c67, 0x6f59, 0x412e, 0xfb54, 0x6f5a, 0x4a44, 0x6f5b, 0x332b,\n  0xfb55, 0xfb56, 0x7d4e, 0x313c, 0x3457, 0x3456, 0x6f5c, 0x6f5d,\n  0x6f5e, 0x6f5f, 0x7d4f, 0x6f60, 0x3458, 0x3355, 0x395e, 0x4836,\n  0x7d50, 0x6f62, 0x6f61, 0x7d51, 0xfb58, 0x7d52, 0x6f63, 0x315c,\n  0xfb59, 0x7d53, 0x6f66, 0x6f65, 0x6f64, 0x7d54, 0x6f67,\n  /* 0x95C0 */\n  0x6f6a, 0x3047, 0xfb5b, 0x6f68, 0x7d55, 0x6f6c, 0x6f6b, 0x7d56,\n  0x7d57, 0x6f6e, 0x6f6d, 0x6f6f, 0x462e, 0x7d59, 0x6f70, 0x7d5a,\n  0x6f71, 0x6f73, 0x6f72,\n  /* 0x9600 */\n  0x496c, 0xfa25, 0x6f74, 0x6f75, 0x3a65, 0xfb5e, 0x6f76, 0x6f77,\n  0x4b49, 0xfb5f, 0xfb60, 0x414b, 0xfb62, 0x3024,\n  /* 0x9640 */\n  0x424b, 0xfb63, 0x6f78, 0x496d, 0x6f7b, 0x6f79, 0x395f, 0x6f7a,\n  0x3842, 0x7d5b, 0x4a45, 0x6f7d, 0x7021, 0x6f7e, 0x7022, 0xfb64,\n  0x3121, 0x3f58, 0x3d7c, 0x3459, 0x7023, 0x4766, 0x7025, 0x3122,\n  0x7024, 0x4444, 0x4e4d, 0x462b, 0x6f7c, 0x4e26, 0x3831, 0x4d5b,\n  /* 0x9680 */\n  0xfb66, 0x7d5c, 0x3679, 0x4e34, 0x3728, 0x4262, 0x6721, 0x7026,\n  0x332c, 0x3f6f, 0x3356, 0x7028, 0x7029, 0x7027, 0x3764, 0xfb68,\n  0x3a5d, 0x3e63, 0x7d5e, 0x3123, 0x4e59, 0x7d5f, 0x7d60, 0x702b,\n  0x6e2e, 0xfb6b, 0x702a, 0xfb6c, 0x702e, 0x702c, 0x702d, 0xfb6d,\n  0x702f, 0x7030, 0x4e6c, 0x7031, 0x7032, 0xfb6e, 0x4049, 0x483b,\n  0xfb6f,\n  /* 0x96C0 */\n  0x3f7d, 0x3467, 0x4d3a, 0x326d, 0x3d38, 0x385b, 0x7035, 0x7034,\n  0x3b73, 0x7036, 0x7033, 0x3b28, 0x7d61, 0x703a, 0x6a2d, 0xfb72,\n  0x5256, 0xfb73, 0x3f77, 0x7038, 0xfb74, 0x7d62, 0x4e25, 0x4671,\n  0x312b, 0x7d64, 0x4063, 0x3c36, 0x7d65, 0x4a37, 0x3140, 0x4e6d,\n  0x4d6b, 0x703b, 0x4545,\n  /* 0x9700 */\n  0x3c7b, 0x703c, 0x703d, 0x3f4c, 0x703e, 0x4e6e, 0x7039, 0x7040,\n  0x7042, 0x7041, 0x703f, 0xfb76, 0x7043, 0x7044, 0x417a, 0x3262,\n  0xfb77, 0x7045, 0x4c38, 0x7046, 0x7047, 0x4f2a, 0x7d66, 0xfb79,\n  0x5b31, 0x7048, 0x7d67, 0x7049, 0x704a,\n  /* 0x9740 */\n  0xfb7a, 0x704e, 0x704b, 0x704c, 0xfb7b, 0x704d, 0x704f, 0x7d68,\n  0x7d69, 0x7d6a, 0x4044, 0xfb7c, 0x4c77, 0xfb7d, 0x4045, 0x7d6b,\n  0xfb7e, 0x7050, 0x4873, 0x7051, 0x7353, 0x4c4c, 0x7052, 0x7053,\n  0x7054, 0x3357, 0xfc21, 0x7056, 0x3f59, 0x7d6c, 0x7057, 0x7d6d,\n  0x3724, 0x7058, 0x705c, 0x705a,\n  /* 0x9780 */\n  0x705b, 0x3373, 0x7059, 0x705d, 0x705e, 0x3048, 0x705f, 0x7060,\n  0x7d6e, 0xfc24, 0x3e64, 0xfc25, 0x7061, 0xfc26, 0x3547, 0xfc27,\n  0x7064, 0x7063, 0x7062, 0x6b71, 0x4a5c, 0x7d6f, 0xfc28, 0xfc29,\n  0x7065, 0x7066, 0x7d70, 0xfc2a,\n  /* 0x97C0 */\n  0x7d71, 0x7067, 0x7068, 0x7069, 0x7d72, 0x706a, 0xfc2b, 0xfc2c,\n  0x345a, 0xfc2d, 0xfc2e, 0xfc2f, 0x7d74, 0x706b, 0x7d73, 0xfc30,\n  0x706c, 0x4723, 0xfc31, 0x706e, 0x323b, 0x7d75, 0x7071, 0x7070,\n  0x3124, 0x3641,\n  /* 0x9800 */\n  0x4a47, 0x443a, 0x3a22, 0xfc32, 0x3960, 0x3d67, 0x3f5c, 0x7d77,\n  0x7073, 0xfc33, 0xfc34, 0x7072, 0x4d42, 0x3468, 0x4852, 0x465c,\n  0xfc35, 0xfc36, 0x3f7c, 0x4e4e, 0x375b, 0x7d78, 0x7076, 0xfc39,\n  0x7075, 0xfc3c, 0x7d79, 0x4b4b, 0x462c, 0x7d7a, 0xfc3a, 0xfc3b,\n  0x3150, 0x7077, 0x7074, 0x4951, 0x4d6a, 0x7078,\n  /* 0x9840 */\n  0x7079, 0xfc3d, 0x707b, 0x426a, 0x335b, 0x335c, 0x707a, 0x7d7c,\n  0x7d7d, 0x3469, 0x3832, 0x7d7e, 0x7e21, 0x346a, 0x7e22, 0x7e23,\n  0x453f, 0x4e60, 0x7e25, 0xfc3e, 0x385c, 0x707c, 0x7e26, 0x707d,\n  0x707e, 0x7121, 0x7123, 0x7122,\n  /* 0x9880 */\n  0x4977, 0x7124, 0xfc3f, 0xfc40, 0x7125, 0xfc41, 0x7126, 0x7127,\n  0xfc43, 0xfc44, 0x7e27, 0xfc45, 0xfc46, 0xfc47,\n  /* 0x98C0 */\n  0xfc48, 0x7129, 0x7128, 0x712a, 0xfc49, 0x7e28, 0xfc4a, 0x4874,\n  0x664c, 0x3f29, 0xfc4b, 0xfc4d, 0x3532, 0xfc4e, 0xfc4f, 0x7e29,\n  0x712b, 0xfc50, 0x712c, 0x522c, 0x5d3b, 0x4853, 0xfc51, 0xfc52,\n  0x307b, 0xfc53, 0x303b, 0x3b74, 0x4b30, 0x3e7e,\n  /* 0x9900 */\n  0x712d, 0x4c5f, 0xfc54, 0x712e, 0x4d5c, 0x3142, 0x3b41, 0x712f,\n  0x326e, 0x7130, 0xfc57, 0xfc58, 0x7131, 0xfc5a, 0xfc5b, 0xfc5c,\n  0x7133, 0x7134, 0x7136, 0x7132, 0x7135, 0x345b, 0x7137, 0x7138,\n  0xfc5e, 0xfc5f, 0xfc60, 0xfc61, 0xfc62, 0xfc63, 0x7139, 0x713a,\n  /* 0x9940 */\n  0xfc64, 0xfc65, 0x713b, 0x713d, 0xfc66, 0x713c, 0x713f, 0x7142,\n  0xfc67, 0xfc68, 0x713e, 0x7140, 0x7141, 0x7143, 0x3642, 0x7e2a,\n  0xfc69, 0xfc6a, 0xfc6b,\n  /* 0x9980 */\n  0x3c73, 0x7144, 0x7145, 0x3961, 0x7e2b, 0xfc6c, 0x7146, 0xfc6d,\n  0x333e, 0x474f, 0x7147, 0x7148, 0x435a, 0x466b, 0xfc6e, 0x7149,\n  0xfc6f, 0xfc70,\n  /* 0x99C0 */\n  0x477d, 0xfc71, 0x424c, 0x3158, 0x366e, 0x366f, 0xfc72, 0x4373,\n  0x714e, 0x3670, 0xfc73, 0x326f, 0x714d, 0xfc74, 0x714b, 0x714c,\n  0xfc75, 0x714a, 0x7158, 0x714f, 0x7150, 0xfc77, 0x7151, 0x7152,\n  0x7154, 0xfc78, 0x7153, 0xfc79, 0x3d59,\n  /* 0x9A00 */\n  0x7155, 0x7e2c, 0x7e2d, 0x7157, 0xfc7a, 0x3533, 0x7156, 0xfc7b,\n  0x417b, 0x3833, 0xfc7c, 0x7159, 0xfc7d, 0xfc7e, 0x7e2e, 0x424d,\n  0x715a, 0x7e2f, 0x7e30, 0x462d, 0xfd21, 0xfd22, 0x715b, 0x7e31,\n  0x7160,\n  /* 0x9A40 */\n  0x715e, 0x715d, 0x715f, 0xfd23, 0x715c, 0x7e32, 0xfd24, 0x7162,\n  0x7e33, 0x7e34, 0x7161, 0x7164, 0xfd25, 0x3643, 0x7163, 0x7165,\n  0x7166, 0x7168, 0x7167, 0x7169, 0x716b, 0x716a,\n  /* 0x9A80 */\n  0x397c, 0x716c, 0xfd27, 0x716d, 0x7e35, 0xfd29, 0x333c, 0xfd2b,\n  0x716e,\n  /* 0x9AC0 */\n  0x716f, 0x7e36, 0x7e37, 0x3f71, 0xfd2d, 0x7e38, 0x7170, 0xfd2e,\n  0x7171, 0xfd2f, 0x7172, 0x7173, 0xfd30, 0x7e39, 0x3962, 0xfd32,\n  0x7174, 0x7175, 0xfd33, 0x7176, 0x7177, 0xfd34, 0x7178, 0xfd35,\n  0x4831, 0x717a, 0x4926, 0x717b, 0x7179, 0x717d, 0x717c, 0x717e,\n  0x7e3a, 0x7221,\n  /* 0x9B00 */\n  0x7e3b, 0xfd36, 0x7222, 0x7e3c, 0xfd37, 0xfd38, 0xfd39, 0xfd3a,\n  0x7223, 0x7224, 0xfd3b, 0x7225, 0x7e3d, 0x7226, 0x7227, 0x7228,\n  0x7229, 0x722a, 0x722b, 0x722c, 0xfd3c, 0x7e3f, 0x722d, 0x722e,\n  0x5d35, 0x722f, 0xfd3d, 0x6478, 0x3534, 0xfd3e,\n  /* 0x9B40 */\n  0x3321, 0x3a32, 0x7231, 0x7230, 0x4c25, 0xfd40, 0x7233, 0x7234,\n  0x7232, 0x7235, 0x4b62, 0x7236, 0x357b, 0x7e40, 0xfd41, 0xfd42,\n  0x7e42, 0xfd43, 0xfd44, 0x4f25, 0x7e43, 0xfd45, 0x7237, 0x7e44,\n  0xfd46, 0xfd47, 0x7e41,\n  /* 0x9B80 */\n  0x7239, 0x7e45, 0x7e46, 0x303e, 0x7e47, 0x723a, 0x4a2b, 0x7238,\n  0x723b, 0x723c, 0x7e48, 0x723d, 0x723e, 0xfd48, 0x7e49, 0x723f,\n  0x4b6e, 0x3b2d, 0xfd49, 0x3a7a, 0x412f, 0xfd4a, 0xfd4d, 0x7240,\n  0xfd4e, 0x7243, 0xfd4f,\n  /* 0x9BC0 */\n  0x7241, 0x7e4a, 0x7244, 0xfd50, 0x3871, 0x7242, 0x7e4b, 0x7245,\n  0x7246, 0x7247, 0x724b, 0x3b2a, 0xfd52, 0x4264, 0xfd53, 0x724c,\n  0x7249, 0x7248, 0x724a, 0x7e4c, 0xfd54, 0x375f, 0xfd55, 0xfd56,\n  0xfd58, 0xfd57, 0x7250, 0x724f, 0x724e, 0xfd51, 0x3033, 0xfd5c,\n  0x7e4d, 0xfd5a, 0x7e4e,\n  /* 0x9C00 */\n  0x7e4f, 0x725a, 0x7256, 0x7257, 0x7253, 0x7259, 0x7255, 0x3362,\n  0x4f4c, 0x7258, 0x7254, 0x7252, 0x7251, 0xfd5e, 0xfd5f, 0xfd60,\n  0xfd61, 0x725c, 0xfd62, 0x725f, 0xfd63, 0x7e50, 0x725e, 0x725d,\n  0xfd64, 0xfd65, 0xfd66, 0x4949, 0x725b, 0x3073, 0x7260, 0xfd68,\n  0x7262, 0xfd69, 0xfd6a, 0x336f, 0x724d, 0x3137, 0x7264,\n  /* 0x9C40 */\n  0x7e51, 0xfd6b, 0x7263, 0x7261, 0x432d, 0xfd6e, 0xfd6f, 0x7e52,\n  0x7e53, 0x4b70, 0x7e54, 0xfd71, 0x4e5a, 0xfd72, 0x7265, 0xfd73,\n  0xfd6c, 0xfd74, 0xfd75, 0x7266, 0x7e55, 0x7e56, 0x7267, 0xfd76,\n  0xfd77, 0xfd78, 0xfd79, 0xfd7a, 0xfd7b, 0xfd7c, 0xfd7d, 0x7268,\n  0x7e57, 0x7269, 0xfd7e,\n  /* 0x9CC0 */\n  0x443b, 0xfe21, 0x726a, 0x4837, 0x726f, 0x726b, 0x726c, 0xfe22,\n  0x4b31, 0x4c44, 0x4650,\n  /* 0x9D00 */\n  0xfe24, 0x7270, 0x7271, 0x463e, 0x726e, 0x726d, 0xfe23, 0x322a,\n  0xfe26, 0x7279, 0x7278, 0xfe27, 0xfe28, 0x3175, 0x7e58, 0x7e59,\n  0x7276, 0x7275, 0x7273, 0x337b, 0x7272, 0x3c32, 0x3229, 0xfe2c,\n  0x3963, 0x727c, 0x727b,\n  /* 0x9D40 */\n  0x727a, 0xfe2e, 0x7e5a, 0x7277, 0x727d, 0x7e5b, 0x727e, 0xfe2f,\n  0x7325, 0x7324, 0x7e5c, 0x7326, 0x312d, 0x7321, 0x7322, 0xfe30,\n  0x3974, 0x4c39, 0xfe31, 0x7e5d, 0x7323, 0xfe33, 0xfe34, 0x4b32,\n  0x732b, 0x7e5e, 0x7327, 0xfe36, 0xfe37, 0xfe38, 0x732c, 0x7e5f,\n  0xfe39,\n  /* 0x9D80 */\n  0xfe3a, 0x7329, 0x7328, 0x7e60, 0xfe3b, 0x375c, 0x7e61, 0xfe3c,\n  0x732d, 0xfe3d, 0x732e, 0x732f, 0x732a, 0x7e63, 0x7274, 0x7330,\n  0x4461, 0xfe3f, 0x7334, 0xfe40, 0x7335, 0x7333, 0x7e64, 0xfe41,\n  0xfe3e,\n  /* 0x9DC0 */\n  0x7e62, 0x7332, 0x7338, 0xfe42, 0x7331, 0x7336, 0xfe43, 0xfe44,\n  0x7337, 0x733a, 0xfe45, 0x7e65, 0x7339, 0xfe46, 0xfe47, 0xfe48,\n  0xfe49, 0x733c, 0x7e67, 0x733d, 0x733e, 0x4f49, 0xfe4a, 0x733b,\n  0x426b, 0x3a6d, 0x733f,\n  /* 0x9E00 */\n  0xfe4d, 0x7e68, 0xfe4c, 0xfe4e, 0x7e69, 0xfe4f, 0x7340, 0x7341,\n  0xfe50, 0xfe51, 0x7342,\n  /* 0x9E40 */\n  0x7343, 0x3834, 0x7344, 0xfe52, 0x7e6a, 0x7345, 0x3c2f,\n  /* 0x9E80 */\n  0xfe54, 0x7346, 0xfe55, 0x7347, 0x7348, 0x7349, 0x734c, 0x734a,\n  0x4f3c, 0x734b, 0x4e6f, 0xfe56, 0x734d, 0x7e6b, 0x4e5b, 0x7e6c,\n  0x734e, 0x477e, 0xfe57, 0x734f, 0x7351, 0x7e6d, 0x7352, 0x7e6e,\n  0x7e6f, 0x7e70, 0x7350, 0x396d, 0x4c4d, 0x4b63, 0x5677, 0xfe59,\n  0x5d60, 0x4b7b,\n  /* 0x9EC0 */\n  0x7e71, 0x322b, 0x7354, 0x3550, 0x7355, 0x7356, 0x7357, 0x7e72,\n  0x3975, 0x7358, 0x6054, 0x4c5b, 0x4263, 0x7359, 0x735b, 0x735a,\n  0xfe5b, 0x735c, 0x735d, 0xfe5c, 0x735e, 0xfe5d, 0x735f, 0x7360,\n  0x7361, 0x7362, 0x7363, 0x7364, 0x7365, 0x7366, 0xfe5e,\n  /* 0x9F00 */\n  0xfe5f, 0xfe61, 0x7367, 0x7368, 0x4524, 0x7e73, 0x385d, 0x736a,\n  0xfe62, 0xfe63, 0x414d, 0x736b, 0x736c, 0xfe64, 0xfe65, 0x7e74,\n  0xfe66, 0x4921, 0xfe67, 0x736d,\n  /* 0x9F40 */\n  0xfe68, 0xfe69, 0xfe6a, 0x736e, 0x6337, 0x6c5a, 0x706d, 0x736f,\n  0xfe6b, 0x7370, 0xfe6c, 0x7e75, 0xfe6d, 0xfe6f, 0x7372, 0x7373,\n  0x7374, 0x4e70, 0x7371, 0x7375, 0x7376, 0xfe71, 0x7378, 0x7377,\n  0xfe73, 0xfe74, 0x737a, 0xfe75, 0x737b, 0x7379,\n  /* 0x9F80 */\n  0x4e36, 0x7e76, 0x7e77, 0x737c, 0x7e78, 0x737d, 0x6354, 0x737e,\n  0x7e79,\n  /* 0xF900 */\n  0x763b, 0x742e, 0x754e, 0x7b4f,\n  /* 0xF940 */\n  0x7649,\n  /* 0xF9C0 */\n  0x7e24, 0x7d5d,\n  /* 0xFA00 */\n  0x2f4b, 0x2f57, 0x4f72, 0xae79, 0x757a, 0x775a, 0x776f, 0x793c,\n  0x793d, 0x7941, 0x7b3a, 0xf738, 0xf745, 0x7c2e, 0xf96e, 0x7c6a,\n  0x2e38, 0x2e49, 0x2e50, 0x2e63, 0x2e68, 0x2e6e, 0x2f2c, 0x2f2f,\n  0x2f36, 0x2f5a, 0x2f5e, 0x4f61, 0x4f62, 0x7450, 0x745c, 0x745e,\n  /* 0xFA40 */\n  0x7461, 0x7528, 0x752b, 0x7543, 0x7565, 0x7669, 0x7677, 0x7725,\n  0x7755, 0xf029, 0x7825, 0x7927, 0x7933, 0x7934, 0x7937, 0x7938,\n  0x7939, 0x793b, 0x793f, 0x7940, 0x794d, 0x7951, 0x7964, 0x7a2e,\n  0xf450, 0x7a33, 0x7a3a, 0x7a44, 0x7a58, 0xf574, 0xf575, 0x7b27,\n  0x7b6f, 0x7b79, 0x7c2f, 0x7c30, 0x7c38, 0x7c3d, 0xf969, 0x7c59,\n  0x7d63, 0x7d76, 0x7d7b,\n  /* 0xFE40 */\n  0x233e, 0x233d,\n  /* 0xFF00 */\n  0x212a, 0x2230, 0x2174, 0x2170, 0x2173, 0x2175, 0x222f, 0x214a,\n  0x214b, 0x2176, 0x215c, 0x2124, 0x2231, 0x2125, 0x213f, 0x2330,\n  0x2331, 0x2332, 0x2333, 0x2334, 0x2335, 0x2336, 0x2337, 0x2338,\n  0x2339, 0x2127, 0x2128, 0x2163, 0x2161, 0x2164, 0x2129, 0x2177,\n  0x2341, 0x2342, 0x2343, 0x2344, 0x2345, 0x2346, 0x2347, 0x2348,\n  0x2349, 0x234a, 0x234b, 0x234c, 0x234d, 0x234e, 0x234f, 0x2350,\n  0x2351, 0x2352, 0x2353, 0x2354, 0x2355, 0x2356, 0x2357, 0x2358,\n  0x2359, 0x235a, 0x214e, 0x2140, 0x214f, 0x2130, 0x2132,\n  /* 0xFF40 */\n  0x212e, 0x2361, 0x2362, 0x2363, 0x2364, 0x2365, 0x2366, 0x2367,\n  0x2368, 0x2369, 0x236a, 0x236b, 0x236c, 0x236d, 0x236e, 0x236f,\n  0x2370, 0x2371, 0x2372, 0x2373, 0x2374, 0x2375, 0x2376, 0x2377,\n  0x2378, 0x2379, 0x237a, 0x2150, 0x2143, 0x2151, 0x2232, 0x2256,\n  0x2257,\n  /* 0xFFC0 */\n  0x2131, 0x216f,\n  /* 0x20000 */\n  0x2e22,\n  /* 0x20080 */\n  0xa121, 0xa12b, 0xa12e,\n  /* 0x20180 */\n  0xa136,\n  /* 0x20200 */\n  0xa146,\n  /* 0x20300 */\n  0xa170,\n  /* 0x20340 */\n  0xa179,\n  /* 0x20380 */\n  0xa177,\n  /* 0x203C0 */\n  0xa322,\n  /* 0x20440 */\n  0xa325,\n  /* 0x20500 */\n  0xa327,\n  /* 0x205C0 */\n  0xa331,\n  /* 0x20600 */\n  0xa332,\n  /* 0x20740 */\n  0xa338,\n  /* 0x20800 */\n  0xa33f, 0xa341,\n  /* 0x20880 */\n  0xa34a,\n  /* 0x20940 */\n  0xa352,\n  /* 0x20980 */\n  0xa353,\n  /* 0x20AC0 */\n  0xa359,\n  /* 0x20B00 */\n  0xa35c,\n  /* 0x20B80 */\n  0x4f54,\n  /* 0x20D40 */\n  0xa377,\n  /* 0x20DC0 */\n  0xa42a,\n  /* 0x20E40 */\n  0xa43a, 0xa432,\n  /* 0x20E80 */\n  0xa431,\n  /* 0x20F40 */\n  0xa43d,\n  /* 0x21200 */\n  0xa459, 0x2f42,\n  /* 0x21240 */\n  0xa45c, 0xa463, 0xa45e,\n  /* 0x212C0 */\n  0xa46b, 0xa46a, 0xa472,\n  /* 0x21300 */\n  0x2f4c, 0xa474,\n  /* 0x21340 */\n  0xa475,\n  /* 0x213C0 */\n  0xa525,\n  /* 0x21440 */\n  0xa532, 0x2f60,\n  /* 0x215C0 */\n  0xa53e,\n  /* 0x21640 */\n  0xa547,\n  /* 0x21680 */\n  0x4f63,\n  /* 0x21700 */\n  0xa555,\n  /* 0x21740 */\n  0xa556,\n  /* 0x21880 */\n  0x2f7b,\n  /* 0x219C0 */\n  0xa57e,\n  /* 0x21C40 */\n  0xa830,\n  /* 0x21D00 */\n  0xa837,\n  /* 0x21D40 */\n  0xa838, 0xa83b, 0xa83a,\n  /* 0x21D80 */\n  0xa845, 0xa840, 0xa83f, 0xa848,\n  /* 0x21DC0 */\n  0xa84a,\n  /* 0x21E00 */\n  0xa84b, 0x4f6e,\n  /* 0x21F00 */\n  0xa85b,\n  /* 0x21F40 */\n  0xa866,\n  /* 0x21FC0 */\n  0xa86c,\n  /* 0x22140 */\n  0xac22,\n  /* 0x22200 */\n  0xfe53,\n  /* 0x22300 */\n  0xac2b,\n  /* 0x22380 */\n  0xac30,\n  /* 0x226C0 */\n  0xac50,\n  /* 0x22840 */\n  0xac65,\n  /* 0x22880 */\n  0xac6d,\n  /* 0x22980 */\n  0xac72,\n  /* 0x22A80 */\n  0xad24,\n  /* 0x22B40 */\n  0xad32, 0xad29, 0xad2a,\n  /* 0x22B80 */\n  0xad35,\n  /* 0x22C00 */\n  0xad34, 0xad39,\n  /* 0x22DC0 */\n  0xad56,\n  /* 0x23180 */\n  0xae24,\n  /* 0x231C0 */\n  0xad7d, 0x753a, 0xae23,\n  /* 0x23340 */\n  0xae3a,\n  /* 0x233C0 */\n  0xae42, 0xae3d, 0xae3c, 0xae44, 0xae47, 0xae49, 0xae43,\n  /* 0x23440 */\n  0xae55, 0xae57, 0xae56, 0xae5b,\n  /* 0x234C0 */\n  0xae77,\n  /* 0x23540 */\n  0xae78,\n  /* 0x23580 */\n  0xaf2a,\n  /* 0x235C0 */\n  0x7572,\n  /* 0x23600 */\n  0xaf42, 0xaf3f, 0xaf43,\n  /* 0x23640 */\n  0xaf40,\n  /* 0x23700 */\n  0xaf59, 0xaf4e, 0x7629,\n  /* 0x23740 */\n  0x7632, 0xaf61,\n  /* 0x237C0 */\n  0xaf6a, 0xaf69,\n  /* 0x23800 */\n  0xaf70, 0xaf75,\n  /* 0x23A80 */\n  0xee23,\n  /* 0x23C40 */\n  0xee34,\n  /* 0x23CC0 */\n  0x7660,\n  /* 0x23D00 */\n  0xee49, 0xf475,\n  /* 0x23D40 */\n  0xee5c,\n  /* 0x23DC0 */\n  0xee60, 0xee5f, 0xee5e,\n  /* 0x23F40 */\n  0xef32,\n  /* 0x24080 */\n  0xef47,\n  /* 0x24100 */\n  0xef4d,\n  /* 0x241C0 */\n  0xef61, 0xef64,\n  /* 0x24380 */\n  0xf022,\n  /* 0x24600 */\n  0xf033,\n  /* 0x24680 */\n  0xf039,\n  /* 0x247C0 */\n  0x776c,\n  /* 0x24880 */\n  0xf053,\n  /* 0x24A40 */\n  0xf07b,\n  /* 0x24B40 */\n  0xf12e, 0xf130,\n  /* 0x24C00 */\n  0xf135,\n  /* 0x24D00 */\n  0xf144,\n  /* 0x24E00 */\n  0xf15d, 0xf161,\n  /* 0x24E40 */\n  0xf166,\n  /* 0x24E80 */\n  0xf169,\n  /* 0x25040 */\n  0xf175, 0xf177,\n  /* 0x25100 */\n  0xf17a,\n  /* 0x25180 */\n  0xf221,\n  /* 0x251C0 */\n  0xf224, 0xf223,\n  /* 0x25200 */\n  0xf228,\n  /* 0x25240 */\n  0xf22c,\n  /* 0x25400 */\n  0xf23d,\n  /* 0x25480 */\n  0x787e,\n  /* 0x254C0 */\n  0xf248,\n  /* 0x25500 */\n  0x7929,\n  /* 0x25580 */\n  0xf25b,\n  /* 0x25740 */\n  0x7947,\n  /* 0x25780 */\n  0xf275, 0xf276,\n  /* 0x259C0 */\n  0x7954, 0xf332,\n  /* 0x25AC0 */\n  0xf33e, 0xf33d, 0xf340,\n  /* 0x25B80 */\n  0xf352,\n  /* 0x25C40 */\n  0xf35d, 0xf35e,\n  /* 0x25D80 */\n  0x796e,\n  /* 0x25E00 */\n  0xf373,\n  /* 0x25E40 */\n  0xf374, 0xf377, 0xf375,\n  /* 0x25EC0 */\n  0xf37d, 0xf37b, 0xf422,\n  /* 0x25F00 */\n  0xf424,\n  /* 0x25F40 */\n  0xf427,\n  /* 0x25FC0 */\n  0xf42f, 0xf42e, 0xf435,\n  /* 0x26000 */\n  0xf434, 0xf43d,\n  /* 0x26040 */\n  0xf442,\n  /* 0x260C0 */\n  0xf44f,\n  /* 0x26240 */\n  0xf469,\n  /* 0x26280 */\n  0xf46b,\n  /* 0x26340 */\n  0xf472,\n  /* 0x26400 */\n  0xf479,\n  /* 0x26640 */\n  0xf535,\n  /* 0x26680 */\n  0xf53a,\n  /* 0x26700 */\n  0xf546,\n  /* 0x268C0 */\n  0xf556, 0xf558,\n  /* 0x26940 */\n  0xf55a, 0xf55d,\n  /* 0x269C0 */\n  0xf55f,\n  /* 0x26A00 */\n  0xf563,\n  /* 0x26A40 */\n  0xf56a,\n  /* 0x26A80 */\n  0xf570, 0xf573,\n  /* 0x26AC0 */\n  0x7a5d,\n  /* 0x26C00 */\n  0xa544,\n  /* 0x26C40 */\n  0xf644,\n  /* 0x26CC0 */\n  0xf64e,\n  /* 0x26E40 */\n  0x7b33, 0xf65d,\n  /* 0x26F80 */\n  0xf675,\n  /* 0x26FC0 */\n  0xf721, 0xf722, 0xf67e,\n  /* 0x270C0 */\n  0x7b49,\n  /* 0x27100 */\n  0xf733, 0xf736,\n  /* 0x273C0 */\n  0xf765, 0xf764, 0xf76b,\n  /* 0x27400 */\n  0xf76e,\n  /* 0x27440 */\n  0xf773,\n  /* 0x27600 */\n  0xf82a, 0xf829, 0xf82c,\n  /* 0x27680 */\n  0x7b6c, 0xf834,\n  /* 0x27700 */\n  0xf83c, 0xf83e,\n  /* 0x27740 */\n  0xf842,\n  /* 0x27980 */\n  0xf856,\n  /* 0x27A80 */\n  0xf863,\n  /* 0x27B80 */\n  0xf877, 0xf879,\n  /* 0x27BC0 */\n  0xf87a,\n  /* 0x27C80 */\n  0xf925,\n  /* 0x27D80 */\n  0xf92f,\n  /* 0x27E00 */\n  0xf932,\n  /* 0x27F80 */\n  0xf939,\n  /* 0x28080 */\n  0xf942, 0xf948,\n  /* 0x28240 */\n  0x7c49,\n  /* 0x28280 */\n  0xf959,\n  /* 0x282C0 */\n  0xf95e,\n  /* 0x283C0 */\n  0x7c51,\n  /* 0x28400 */\n  0xf966,\n  /* 0x28440 */\n  0xf96b,\n  /* 0x28540 */\n  0xf97a,\n  /* 0x285C0 */\n  0xf97e, 0xfa21,\n  /* 0x286C0 */\n  0xfa2c, 0xfa2f,\n  /* 0x28940 */\n  0xfa50, 0xfa4f, 0xfa57,\n  /* 0x28980 */\n  0xfa65, 0xfa66, 0xfa71, 0xfa72,\n  /* 0x28A00 */\n  0xfa7e, 0xfb21,\n  /* 0x28A40 */\n  0xfb2d, 0xfb2c,\n  /* 0x28A80 */\n  0xfb36,\n  /* 0x28AC0 */\n  0xfb37, 0xfb3e, 0xfb3d,\n  /* 0x28BC0 */\n  0xfb4e, 0xfb4f,\n  /* 0x28D00 */\n  0xfb57,\n  /* 0x28D40 */\n  0xfb5a,\n  /* 0x28DC0 */\n  0xfb5c,\n  /* 0x28E00 */\n  0xfb5d, 0xfb61,\n  /* 0x28E80 */\n  0xfb65,\n  /* 0x28EC0 */\n  0xfb67,\n  /* 0x28F00 */\n  0xfb69,\n  /* 0x28FC0 */\n  0xfb71,\n  /* 0x29280 */\n  0xfc22, 0xfc23,\n  /* 0x29480 */\n  0xfc38,\n  /* 0x295C0 */\n  0xfc42,\n  /* 0x29640 */\n  0xfc4c,\n  /* 0x296C0 */\n  0xfc56,\n  /* 0x29700 */\n  0xfc59,\n  /* 0x29740 */\n  0xfc5d,\n  /* 0x298C0 */\n  0xfc76,\n  /* 0x29A40 */\n  0xfd2c,\n  /* 0x29DC0 */\n  0xfd4b,\n  /* 0x29E00 */\n  0xfd59, 0xfd4c,\n  /* 0x29E40 */\n  0xfd5d,\n  /* 0x29E80 */\n  0xfd5b,\n  /* 0x29EC0 */\n  0xfd67, 0xfd70, 0xfd6d,\n  /* 0x29FC0 */\n  0xfe25,\n  /* 0x2A000 */\n  0xfe2b, 0xfe29,\n  /* 0x2A080 */\n  0xfe35,\n  /* 0x2A0C0 */\n  0xfe32,\n  /* 0x2A180 */\n  0x7e66,\n  /* 0x2A380 */\n  0xfe58,\n  /* 0x2A400 */\n  0xfe5a,\n  /* 0x2A5C0 */\n  0xfe6e,\n  /* 0x2A600 */\n  0xfe70, 0xfe72,\n  /* 0x2A680 */\n  0xfe76,\n};\n\nstatic const Summary16 jisx0213_from_ucs_level2_2indx[] = {\n  /* 0x0080 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0xffdf }, {   15, 0xffdf },\n  /* 0x00C0 */\n  {   30, 0xffff }, {   46, 0xffff }, {   62, 0xffff }, {   78, 0xffff },\n  /* 0x0100 */\n  {   94, 0xf3ff }, {  108, 0x3f0e }, {  117, 0x0cb0 }, {  122, 0x6630 },\n  /* 0x0140 */\n  {  128, 0x399e }, {  137, 0xff3f }, {  151, 0xfc3f }, {  163, 0x7e03 },\n  /* 0x0180 */\n  {  171, 0x0000 }, {  171, 0x0008 }, {  172, 0x0000 }, {  172, 0x0000 },\n  /* 0x01C0 */\n  {  172, 0x6004 }, {  175, 0x1557 }, {  183, 0x0000 }, {  183, 0x2300 },\n  /* 0x0240 */\n  {  186, 0x0000 }, {  186, 0xd7ff }, {  200, 0xf1f3 }, {  211, 0x6e2f },\n  /* 0x0280 */\n  {  221, 0x7f1e }, {  232, 0x2137 }, {  239, 0x0006 }, {  241, 0x0000 },\n  /* 0x02C0 */\n  {  241, 0x1180 }, {  244, 0x6b03 }, {  251, 0x03e0 }, {  256, 0x0000 },\n  /* 0x0300 */\n  {  256, 0x995f }, {  266, 0xf700 }, {  273, 0x9631 }, {  280, 0x3e11 },\n  /* 0x0340 */\n  {  287, 0x0000 }, {  287, 0x0000 }, {  287, 0x0002 }, {  288, 0x0000 },\n  /* 0x0380 */\n  {  288, 0x0000 }, {  288, 0xfffe }, {  303, 0x03fb }, {  312, 0xfffe },\n  /* 0x03C0 */\n  {  327, 0x03ff }, {  337, 0x0000 }, {  337, 0x0000 }, {  337, 0x0000 },\n  /* 0x0400 */\n  {  337, 0x0002 }, {  338, 0xffff }, {  354, 0xffff }, {  370, 0xffff },\n  /* 0x0440 */\n  {  386, 0xffff }, {  402, 0x0002 }, {  403, 0x0000 }, {  403, 0x0000 },\n  /* 0x1E00 */\n  {  403, 0x0000 }, {  403, 0x0000 }, {  403, 0x0000 }, {  403, 0xc000 },\n  /* 0x1F40 */\n  {  405, 0x0000 }, {  405, 0x0000 }, {  405, 0x0000 }, {  405, 0x000f },\n  /* 0x2000 */\n  {  409, 0x0000 }, {  409, 0x3359 }, {  417, 0x0067 }, {  422, 0x980d },\n  /* 0x2040 */\n  {  428, 0x0384 }, {  432, 0x0002 }, {  433, 0x0000 }, {  433, 0x0000 },\n  /* 0x2080 */\n  {  433, 0x0000 }, {  433, 0x0000 }, {  433, 0x1000 }, {  434, 0x0000 },\n  /* 0x2100 */\n  {  434, 0x8008 }, {  436, 0x0048 }, {  438, 0x0882 }, {  441, 0x0020 },\n  /* 0x2140 */\n  {  442, 0x0000 }, {  442, 0x0038 }, {  445, 0x0fff }, {  457, 0x0fff },\n  /* 0x2180 */\n  {  469, 0x0000 }, {  469, 0x03df }, {  478, 0x0000 }, {  478, 0x0000 },\n  /* 0x21C0 */\n  {  478, 0x0010 }, {  479, 0x0014 }, {  481, 0x03c0 }, {  485, 0x0000 },\n  /* 0x2200 */\n  {  485, 0x0bad }, {  493, 0xe40c }, {  499, 0x5fe1 }, {  509, 0x2030 },\n  /* 0x2240 */\n  {  512, 0x0128 }, {  515, 0x0004 }, {  516, 0x0cc7 }, {  523, 0x00c0 },\n  /* 0x2280 */\n  {  525, 0x0cfc }, {  533, 0x00e0 }, {  536, 0x0020 }, {  537, 0x8000 },\n  /* 0x22C0 */\n  {  538, 0x0000 }, {  538, 0x0c00 }, {  540, 0x0000 }, {  540, 0x0000 },\n  /* 0x2300 */\n  {  540, 0x0060 }, {  542, 0x0104 }, {  544, 0x0000 }, {  544, 0x0000 },\n  /* 0x2380 */\n  {  544, 0x0000 }, {  544, 0x0000 }, {  544, 0x0000 }, {  544, 0xc000 },\n  /* 0x23C0 */\n  {  546, 0x5fff }, {  560, 0x0000 }, {  560, 0x0000 }, {  560, 0x0000 },\n  /* 0x2400 */\n  {  560, 0x0000 }, {  560, 0x0000 }, {  560, 0x0008 }, {  561, 0x0000 },\n  /* 0x2440 */\n  {  561, 0x0000 }, {  561, 0x0000 }, {  561, 0xffff }, {  577, 0x000f },\n  /* 0x24C0 */\n  {  581, 0x0000 }, {  581, 0xffff }, {  597, 0xfbff }, {  612, 0x7fff },\n  /* 0x2500 */\n  {  627, 0x900f }, {  633, 0x3999 }, {  641, 0x9939 }, {  649, 0x9999 },\n  /* 0x2540 */\n  {  657, 0x0804 }, {  659, 0x0000 }, {  659, 0x0000 }, {  659, 0x0000 },\n  /* 0x2580 */\n  {  659, 0x0000 }, {  659, 0x0000 }, {  659, 0x0003 }, {  661, 0x30ce },\n  /* 0x25C0 */\n  {  668, 0xcac3 }, {  676, 0x000f }, {  680, 0x8040 }, {  682, 0x0000 },\n  /* 0x2600 */\n  {  682, 0x406f }, {  689, 0x40c0 }, {  692, 0x0000 }, {  692, 0x0000 },\n  /* 0x2640 */\n  {  692, 0x0005 }, {  694, 0x0000 }, {  694, 0xffff }, {  710, 0x0000 },\n  /* 0x2700 */\n  {  710, 0x0000 }, {  710, 0x0008 }, {  711, 0x0000 }, {  711, 0x0000 },\n  /* 0x2740 */\n  {  711, 0x0000 }, {  711, 0x0040 }, {  712, 0x0000 }, {  712, 0xffc0 },\n  /* 0x2900 */\n  {  722, 0x0000 }, {  722, 0x0000 }, {  722, 0x0000 }, {  722, 0x0030 },\n  /* 0x2980 */\n  {  724, 0x0000 }, {  724, 0x0000 }, {  724, 0x0000 }, {  724, 0x8000 },\n  /* 0x29C0 */\n  {  725, 0x0000 }, {  725, 0x0000 }, {  725, 0x0000 }, {  725, 0x0c00 },\n  /* 0x3000 */\n  {  727, 0xffef }, {  742, 0xb3ff }, {  755, 0x0001 }, {  756, 0x3838 },\n  /* 0x3040 */\n  {  762, 0xfffe }, {  777, 0xffff }, {  793, 0xffff }, {  809, 0xffff },\n  /* 0x3080 */\n  {  825, 0xffff }, {  841, 0xf87f }, {  853, 0xffff }, {  869, 0xffff },\n  /* 0x30C0 */\n  {  885, 0xffff }, {  901, 0xffff }, {  917, 0xffff }, {  933, 0xffff },\n  /* 0x31C0 */\n  {  949, 0x0000 }, {  949, 0x0000 }, {  949, 0x0000 }, {  949, 0xffff },\n  /* 0x3200 */\n  {  965, 0x0000 }, {  965, 0x0000 }, {  965, 0x0000 }, {  965, 0x0206 },\n  /* 0x3240 */\n  {  968, 0x0000 }, {  968, 0xfffe }, {  983, 0x0000 }, {  983, 0x0000 },\n  /* 0x3280 */\n  {  983, 0x0000 }, {  983, 0x0000 }, {  983, 0x01f0 }, {  988, 0xfffe },\n  /* 0x32C0 */\n  { 1003, 0x0000 }, { 1003, 0xffff }, { 1019, 0x322f }, { 1027, 0x0400 },\n  /* 0x3300 */\n  { 1028, 0x2008 }, { 1030, 0x0110 }, { 1032, 0x08cc }, { 1037, 0x0840 },\n  /* 0x3340 */\n  { 1039, 0x2600 }, { 1042, 0x0082 }, { 1044, 0x0000 }, { 1044, 0x7800 },\n  /* 0x3380 */\n  { 1048, 0xc000 }, { 1050, 0x7000 }, { 1053, 0x0002 }, { 1054, 0x0000 },\n  /* 0x33C0 */\n  { 1054, 0x2810 }, { 1057, 0x0000 }, { 1057, 0x0000 }, { 1057, 0x0000 },\n  /* 0x3400 */\n  { 1057, 0x0044 }, { 1059, 0x0000 }, { 1059, 0x5000 }, { 1061, 0x0000 },\n  /* 0x3440 */\n  { 1061, 0x0000 }, { 1061, 0x0000 }, { 1061, 0x0500 }, { 1063, 0x0000 },\n  /* 0x3480 */\n  { 1063, 0x0000 }, { 1063, 0x0004 }, { 1064, 0x0000 }, { 1064, 0x1020 },\n  /* 0x34C0 */\n  { 1066, 0x0082 }, { 1068, 0x0800 }, { 1069, 0x0000 }, { 1069, 0x0000 },\n  /* 0x3500 */\n  { 1069, 0x0000 }, { 1069, 0x8000 }, { 1070, 0x0000 }, { 1070, 0x0000 },\n  /* 0x3540 */\n  { 1070, 0x0000 }, { 1070, 0x6000 }, { 1072, 0x4008 }, { 1074, 0x0000 },\n  /* 0x3580 */\n  { 1074, 0x0000 }, { 1074, 0x0000 }, { 1074, 0x0140 }, { 1076, 0x0000 },\n  /* 0x35C0 */\n  { 1076, 0x0020 }, { 1077, 0x0400 }, { 1078, 0x0000 }, { 1078, 0x0010 },\n  /* 0x3600 */\n  { 1079, 0x0020 }, { 1080, 0x0000 }, { 1080, 0x0000 }, { 1080, 0x0000 },\n  /* 0x3640 */\n  { 1080, 0x0400 }, { 1081, 0x0000 }, { 1081, 0x0000 }, { 1081, 0x0000 },\n  /* 0x3680 */\n  { 1081, 0x0000 }, { 1081, 0x0242 }, { 1084, 0x0000 }, { 1084, 0x0000 },\n  /* 0x36C0 */\n  { 1084, 0x8000 }, { 1085, 0x0000 }, { 1085, 0x0000 }, { 1085, 0x0000 },\n  /* 0x3740 */\n  { 1085, 0x0000 }, { 1085, 0x0000 }, { 1085, 0x1806 }, { 1089, 0x0020 },\n  /* 0x3780 */\n  { 1090, 0x2000 }, { 1091, 0x0000 }, { 1091, 0x0000 }, { 1091, 0x0000 },\n  /* 0x37C0 */\n  { 1091, 0x0002 }, { 1092, 0x0000 }, { 1092, 0x0104 }, { 1094, 0x2010 },\n  /* 0x3800 */\n  { 1096, 0x0001 }, { 1097, 0x0000 }, { 1097, 0x8000 }, { 1098, 0x0040 },\n  /* 0x3840 */\n  { 1099, 0x0001 }, { 1100, 0x1000 }, { 1101, 0x0002 }, { 1102, 0x0000 },\n  /* 0x38C0 */\n  { 1102, 0x0000 }, { 1102, 0x0000 }, { 1102, 0x0000 }, { 1102, 0x0400 },\n  /* 0x3900 */\n  { 1103, 0x0000 }, { 1103, 0x0480 }, { 1105, 0x0000 }, { 1105, 0x0000 },\n  /* 0x3940 */\n  { 1105, 0x0000 }, { 1105, 0x0000 }, { 1105, 0x8000 }, { 1106, 0x0000 },\n  /* 0x3A40 */\n  { 1106, 0x0000 }, { 1106, 0x0000 }, { 1106, 0x4000 }, { 1107, 0x0008 },\n  /* 0x3AC0 */\n  { 1108, 0x0000 }, { 1108, 0x00c0 }, { 1110, 0x0400 }, { 1111, 0x0000 },\n  /* 0x3B00 */\n  { 1111, 0x4000 }, { 1112, 0x1400 }, { 1114, 0x0004 }, { 1115, 0x0000 },\n  /* 0x3B40 */\n  { 1115, 0x0000 }, { 1115, 0x0000 }, { 1115, 0x2000 }, { 1116, 0x0080 },\n  /* 0x3B80 */\n  { 1117, 0x2180 }, { 1120, 0x0000 }, { 1120, 0x0010 }, { 1121, 0x0040 },\n  /* 0x3BC0 */\n  { 1122, 0x2008 }, { 1124, 0x0000 }, { 1124, 0x0000 }, { 1124, 0x0001 },\n  /* 0x3C00 */\n  { 1125, 0x8000 }, { 1126, 0x0000 }, { 1126, 0x0040 }, { 1127, 0x0000 },\n  /* 0x3CC0 */\n  { 1127, 0x0008 }, { 1128, 0x0004 }, { 1129, 0x0000 }, { 1129, 0x0000 },\n  /* 0x3D00 */\n  { 1129, 0x0000 }, { 1129, 0x4002 }, { 1131, 0x0000 }, { 1131, 0x0000 },\n  /* 0x3D40 */\n  { 1131, 0x0000 }, { 1131, 0x0000 }, { 1131, 0x0010 }, { 1132, 0x0000 },\n  /* 0x3D80 */\n  { 1132, 0x0000 }, { 1132, 0x0400 }, { 1133, 0x0000 }, { 1133, 0x0000 },\n  /* 0x3DC0 */\n  { 1133, 0x0001 }, { 1134, 0x0010 }, { 1135, 0x0000 }, { 1135, 0x0000 },\n  /* 0x3E00 */\n  { 1135, 0x0020 }, { 1136, 0x0000 }, { 1136, 0x0000 }, { 1136, 0x8000 },\n  /* 0x3E40 */\n  { 1137, 0x0000 }, { 1137, 0x0000 }, { 1137, 0x0141 }, { 1140, 0x0000 },\n  /* 0x3E80 */\n  { 1140, 0x0008 }, { 1141, 0x0010 }, { 1142, 0x0000 }, { 1142, 0x0000 },\n  /* 0x3F40 */\n  { 1142, 0x0000 }, { 1142, 0x0080 }, { 1143, 0x0000 }, { 1143, 0x00a4 },\n  /* 0x3F80 */\n  { 1146, 0x0000 }, { 1146, 0x0000 }, { 1146, 0x4000 }, { 1147, 0x0000 },\n  /* 0x3FC0 */\n  { 1147, 0x0200 }, { 1148, 0x0080 }, { 1149, 0x0000 }, { 1149, 0x0000 },\n  /* 0x4000 */\n  { 1149, 0x0000 }, { 1149, 0x0000 }, { 1149, 0x0000 }, { 1149, 0x0200 },\n  /* 0x4040 */\n  { 1150, 0x0000 }, { 1150, 0x0100 }, { 1151, 0x0000 }, { 1151, 0x0000 },\n  /* 0x4080 */\n  { 1151, 0x0000 }, { 1151, 0x0008 }, { 1152, 0x0000 }, { 1152, 0x0000 },\n  /* 0x4100 */\n  { 1152, 0x0020 }, { 1153, 0x0000 }, { 1153, 0x0000 }, { 1153, 0x0000 },\n  /* 0x4140 */\n  { 1153, 0x8100 }, { 1155, 0x0000 }, { 1155, 0x0008 }, { 1156, 0x0000 },\n  /* 0x4180 */\n  { 1156, 0x0000 }, { 1156, 0x0000 }, { 1156, 0x0000 }, { 1156, 0x8010 },\n  /* 0x41C0 */\n  { 1158, 0x0000 }, { 1158, 0x0000 }, { 1158, 0x4040 }, { 1160, 0x0008 },\n  /* 0x4200 */\n  { 1161, 0x4080 }, { 1163, 0x0000 }, { 1163, 0x0000 }, { 1163, 0x0000 },\n  /* 0x4240 */\n  { 1163, 0x0000 }, { 1163, 0x0000 }, { 1163, 0x0010 }, { 1164, 0x0000 },\n  /* 0x42C0 */\n  { 1164, 0x0040 }, { 1165, 0x2040 }, { 1167, 0x0000 }, { 1167, 0x0000 },\n  /* 0x4300 */\n  { 1167, 0x0004 }, { 1168, 0x0000 }, { 1168, 0x0800 }, { 1169, 0x0000 },\n  /* 0x4340 */\n  { 1169, 0x0008 }, { 1170, 0x0000 }, { 1170, 0x0000 }, { 1170, 0x0000 },\n  /* 0x43C0 */\n  { 1170, 0x0000 }, { 1170, 0x0000 }, { 1170, 0x4000 }, { 1171, 0x0001 },\n  /* 0x4400 */\n  { 1172, 0x0100 }, { 1173, 0x1080 }, { 1175, 0x0004 }, { 1176, 0x0000 },\n  /* 0x4440 */\n  { 1176, 0x0000 }, { 1176, 0x0808 }, { 1178, 0x0000 }, { 1178, 0x0440 },\n  /* 0x4480 */\n  { 1180, 0x0000 }, { 1180, 0x0002 }, { 1181, 0x0000 }, { 1181, 0x4008 },\n  /* 0x44C0 */\n  { 1183, 0x0000 }, { 1183, 0x0010 }, { 1184, 0x0000 }, { 1184, 0x0000 },\n  /* 0x4500 */\n  { 1184, 0x2100 }, { 1186, 0x0000 }, { 1186, 0x0020 }, { 1187, 0x0000 },\n  /* 0x4540 */\n  { 1187, 0x0008 }, { 1188, 0x0000 }, { 1188, 0x0000 }, { 1188, 0x0000 },\n  /* 0x4580 */\n  { 1188, 0x0000 }, { 1188, 0x2000 }, { 1189, 0x0000 }, { 1189, 0x0100 },\n  /* 0x45C0 */\n  { 1190, 0x0000 }, { 1190, 0x0000 }, { 1190, 0x0420 }, { 1192, 0x0000 },\n  /* 0x4600 */\n  { 1192, 0x8000 }, { 1193, 0x0000 }, { 1193, 0x0000 }, { 1193, 0x0000 },\n  /* 0x4640 */\n  { 1193, 0x0002 }, { 1194, 0x0000 }, { 1194, 0x0020 }, { 1195, 0x0000 },\n  /* 0x4680 */\n  { 1195, 0x0000 }, { 1195, 0x0000 }, { 1195, 0x8002 }, { 1197, 0x0000 },\n  /* 0x4700 */\n  { 1197, 0x1000 }, { 1198, 0x0000 }, { 1198, 0x0000 }, { 1198, 0x0000 },\n  /* 0x4740 */\n  { 1198, 0x0000 }, { 1198, 0x0000 }, { 1198, 0x0010 }, { 1199, 0x0000 },\n  /* 0x47C0 */\n  { 1199, 0x0000 }, { 1199, 0x0000 }, { 1199, 0x0000 }, { 1199, 0x2000 },\n  /* 0x4800 */\n  { 1200, 0x0000 }, { 1200, 0x0040 }, { 1201, 0x0000 }, { 1201, 0x0000 },\n  /* 0x4840 */\n  { 1201, 0x4010 }, { 1203, 0x0000 }, { 1203, 0x0000 }, { 1203, 0x0000 },\n  /* 0x4880 */\n  { 1203, 0x0000 }, { 1203, 0x0000 }, { 1203, 0x0000 }, { 1203, 0x0020 },\n  /* 0x4980 */\n  { 1204, 0x0000 }, { 1204, 0x0000 }, { 1204, 0x0000 }, { 1204, 0x0001 },\n  /* 0x49C0 */\n  { 1205, 0x0000 }, { 1205, 0x0000 }, { 1205, 0x0080 }, { 1206, 0x0400 },\n  /* 0x4A00 */\n  { 1207, 0x0010 }, { 1208, 0x0000 }, { 1208, 0x0200 }, { 1209, 0x0000 },\n  /* 0x4A80 */\n  { 1209, 0x0000 }, { 1209, 0x0000 }, { 1209, 0x0000 }, { 1209, 0x1000 },\n  /* 0x4B00 */\n  { 1210, 0x0000 }, { 1210, 0x0000 }, { 1210, 0x0000 }, { 1210, 0x0800 },\n  /* 0x4BC0 */\n  { 1211, 0x0404 }, { 1213, 0x0004 }, { 1214, 0x0100 }, { 1215, 0x0000 },\n  /* 0x4C00 */\n  { 1215, 0x0000 }, { 1215, 0x0080 }, { 1216, 0x0001 }, { 1217, 0x0000 },\n  /* 0x4CC0 */\n  { 1217, 0x0010 }, { 1218, 0x0002 }, { 1219, 0x0000 }, { 1219, 0x0000 },\n  /* 0x4D00 */\n  { 1219, 0x0080 }, { 1220, 0x0000 }, { 1220, 0x0000 }, { 1220, 0x0000 },\n  /* 0x4D40 */\n  { 1220, 0x0000 }, { 1220, 0x0000 }, { 1220, 0x0000 }, { 1220, 0x0080 },\n  /* 0x4E00 */\n  { 1221, 0xef8f }, { 1233, 0x43f7 }, { 1243, 0xff42 }, { 1253, 0x9b47 },\n  /* 0x4E40 */\n  { 1262, 0xe9ad }, { 1272, 0xe7e2 }, { 1282, 0x0204 }, { 1284, 0x400a },\n  /* 0x4E80 */\n  { 1287, 0x7f65 }, { 1298, 0xfb36 }, { 1309, 0x7977 }, { 1320, 0x1e49 },\n  /* 0x4EC0 */\n  { 1327, 0xeddf }, { 1340, 0xe7f1 }, { 1351, 0x683a }, { 1358, 0xa8e7 },\n  /* 0x4F00 */\n  { 1367, 0xee0b }, { 1376, 0x3443 }, { 1382, 0x8000 }, { 1383, 0x75d1 },\n  /* 0x4F40 */\n  { 1392, 0xe3c8 }, { 1400, 0xfffb }, { 1415, 0x9611 }, { 1421, 0xfde9 },\n  /* 0x4F80 */\n  { 1433, 0xad6c }, { 1442, 0x2dd6 }, { 1451, 0xe803 }, { 1457, 0xc064 },\n  /* 0x4FC0 */\n  { 1462, 0xce3c }, { 1471, 0xad97 }, { 1481, 0xc07b }, { 1489, 0x456e },\n  /* 0x5000 */\n  { 1497, 0xea67 }, { 1507, 0xd75f }, { 1519, 0x7ffe }, { 1533, 0x0a40 },\n  /* 0x5040 */\n  { 1536, 0xc3cf }, { 1546, 0x14e9 }, { 1553, 0x1468 }, { 1558, 0x2175 },\n  /* 0x5080 */\n  { 1565, 0x2121 }, { 1569, 0x177e }, { 1579, 0x3408 }, { 1583, 0x4cbe },\n  /* 0x50C0 */\n  { 1592, 0xf6b4 }, { 1602, 0x4673 }, { 1610, 0x62ea }, { 1618, 0x0a2c },\n  /* 0x5100 */\n  { 1623, 0x0b5f }, { 1632, 0xcdf4 }, { 1642, 0x0402 }, { 1644, 0x9ca4 },\n  /* 0x5140 */\n  { 1651, 0x7ffb }, { 1665, 0x14b5 }, { 1672, 0x7f25 }, { 1682, 0x19ea },\n  /* 0x5180 */\n  { 1690, 0xbe6d }, { 1701, 0x23ef }, { 1711, 0x3f7d }, { 1723, 0x30ff },\n  /* 0x51C0 */\n  { 1733, 0x3e78 }, { 1742, 0x7840 }, { 1747, 0x66c7 }, { 1756, 0x677b },\n  /* 0x5200 */\n  { 1767, 0x4ddf }, { 1778, 0x20fe }, { 1786, 0x46b0 }, { 1792, 0x0fc9 },\n  /* 0x5240 */\n  { 1800, 0xbe98 }, { 1809, 0x78f0 }, { 1817, 0x963a }, { 1825, 0xa0bf },\n  /* 0x5280 */\n  { 1834, 0x239c }, { 1841, 0x891e }, { 1848, 0xbe59 }, { 1858, 0x5e32 },\n  /* 0x52C0 */\n  { 1866, 0x37aa }, { 1875, 0xebe7 }, { 1887, 0x00dd }, { 1893, 0xcfad },\n  /* 0x5300 */\n  { 1904, 0xade7 }, { 1915, 0x36e1 }, { 1923, 0x841b }, { 1929, 0xcf2a },\n  /* 0x5340 */\n  { 1938, 0x27ef }, { 1949, 0x559e }, { 1958, 0xd2cb }, { 1967, 0xadbb },\n  /* 0x5380 */\n  { 1978, 0x0014 }, { 1980, 0xa548 }, { 1986, 0x6371 }, { 1994, 0x08dd },\n  /* 0x53C0 */\n  { 2001, 0x7f0d }, { 2011, 0x8ef0 }, { 2019, 0xff3e }, { 2032, 0x05ff },\n  /* 0x5400 */\n  { 2042, 0xff1a }, { 2053, 0xe807 }, { 2060, 0x7bd1 }, { 2070, 0x7b40 },\n  /* 0x5440 */\n  { 2077, 0x674d }, { 2086, 0x8022 }, { 2089, 0x1d44 }, { 2095, 0xb8fb },\n  /* 0x5480 */\n  { 2106, 0xfd51 }, { 2116, 0x1065 }, { 2121, 0xfb77 }, { 2134, 0xf58c },\n  /* 0x54C0 */\n  { 2143, 0x03df }, { 2152, 0x0100 }, { 2153, 0xf366 }, { 2163, 0xa40e },\n  /* 0x5500 */\n  { 2169, 0xc2d3 }, { 2177, 0x0051 }, { 2180, 0xc800 }, { 2183, 0x532a },\n  /* 0x5540 */\n  { 2190, 0x94f3 }, { 2199, 0x70c9 }, { 2206, 0x001b }, { 2210, 0x7800 },\n  /* 0x5580 */\n  { 2214, 0x4fdf }, { 2226, 0xf702 }, { 2234, 0x7f80 }, { 2242, 0x8041 },\n  /* 0x55C0 */\n  { 2245, 0x52b0 }, { 2251, 0xb416 }, { 2258, 0x021c }, { 2262, 0x6280 },\n  /* 0x5600 */\n  { 2266, 0x43c0 }, { 2271, 0x09d1 }, { 2277, 0x8300 }, { 2280, 0xa9d7 },\n  /* 0x5640 */\n  { 2290, 0x5285 }, { 2296, 0x4809 }, { 2300, 0xbd51 }, { 2309, 0x0556 },\n  /* 0x5680 */\n  { 2315, 0x95c1 }, { 2322, 0x6630 }, { 2328, 0x7325 }, { 2336, 0x105c },\n  /* 0x56C0 */\n  { 2341, 0x672f }, { 2351, 0xcd8a }, { 2359, 0x4109 }, { 2363, 0xa6cd },\n  /* 0x5700 */\n  { 2372, 0xaf19 }, { 2381, 0x916c }, { 2388, 0xa3ca }, { 2396, 0x0999 },\n  /* 0x5740 */\n  { 2402, 0xf4e5 }, { 2412, 0x0003 }, { 2414, 0x8752 }, { 2421, 0x98b9 },\n  /* 0x5780 */\n  { 2429, 0x0b04 }, { 2433, 0x7408 }, { 2438, 0x151d }, { 2445, 0x0109 },\n  /* 0x57C0 */\n  { 2448, 0xd9c9 }, { 2457, 0xd0dc }, { 2465, 0x2059 }, { 2470, 0xbff1 },\n  /* 0x5800 */\n  { 2482, 0x0e75 }, { 2490, 0x6220 }, { 2494, 0x8493 }, { 2500, 0x2637 },\n  /* 0x5840 */\n  { 2508, 0x1e03 }, { 2514, 0x4796 }, { 2522, 0x0a96 }, { 2528, 0x5225 },\n  /* 0x5880 */\n  { 2534, 0xae28 }, { 2541, 0xf099 }, { 2549, 0x4f00 }, { 2554, 0x4f0a },\n  /* 0x58C0 */\n  { 2561, 0x74aa }, { 2569, 0xd7be }, { 2581, 0xda35 }, { 2590, 0x3e9f },\n  /* 0x5900 */\n  { 2601, 0xbe64 }, { 2610, 0x1f71 }, { 2619, 0x7eb4 }, { 2629, 0x6186 },\n  /* 0x5940 */\n  { 2635, 0xc3d0 }, { 2642, 0xadb3 }, { 2652, 0x77a5 }, { 2662, 0x3178 },\n  /* 0x5980 */\n  { 2669, 0x2c1e }, { 2676, 0xaa4c }, { 2683, 0x5138 }, { 2689, 0x5a04 },\n  /* 0x59C0 */\n  { 2694, 0x2b48 }, { 2700, 0x761f }, { 2710, 0x4df8 }, { 2719, 0x8940 },\n  /* 0x5A00 */\n  { 2723, 0x320a }, { 2728, 0x958a }, { 2735, 0xa2a9 }, { 2742, 0x1060 },\n  /* 0x5A40 */\n  { 2745, 0x0243 }, { 2749, 0x0420 }, { 2751, 0x34e4 }, { 2758, 0xc480 },\n  /* 0x5A80 */\n  { 2762, 0x0810 }, { 2764, 0xdc04 }, { 2770, 0x0085 }, { 2773, 0xf42a },\n  /* 0x5AC0 */\n  { 2781, 0x1a16 }, { 2787, 0x14c1 }, { 2792, 0x426b }, { 2799, 0x0c21 },\n  /* 0x5B00 */\n  { 2803, 0x1b01 }, { 2808, 0x02c0 }, { 2811, 0x3424 }, { 2816, 0x4055 },\n  /* 0x5B40 */\n  { 2821, 0x102b }, { 2826, 0xbdf7 }, { 2839, 0x8b78 }, { 2847, 0xb52b },\n  /* 0x5B80 */\n  { 2856, 0xbbbb }, { 2868, 0xbfe8 }, { 2879, 0x507c }, { 2886, 0x8379 },\n  /* 0x5BC0 */\n  { 2894, 0x52fd }, { 2904, 0xe95d }, { 2914, 0x5bf6 }, { 2925, 0xe56b },\n  /* 0x5C00 */\n  { 2935, 0xeffe }, { 2949, 0x444e }, { 2955, 0x2b1d }, { 2963, 0xff03 },\n  /* 0x5C40 */\n  { 2973, 0xed63 }, { 2983, 0xc82b }, { 2990, 0xd3bf }, { 3002, 0x1643 },\n  /* 0x5C80 */\n  { 3008, 0x9500 }, { 3012, 0x8013 }, { 3016, 0x3fcf }, { 3028, 0x5dea },\n  /* 0x5CC0 */\n  { 3038, 0x0aa0 }, { 3042, 0x0205 }, { 3045, 0xa703 }, { 3052, 0x2c51 },\n  /* 0x5D00 */\n  { 3058, 0x68c0 }, { 3063, 0xaff3 }, { 3075, 0x0ad5 }, { 3082, 0x0202 },\n  /* 0x5D40 */\n  { 3084, 0x5cc4 }, { 3091, 0x100d }, { 3095, 0xb602 }, { 3101, 0x0049 },\n  /* 0x5D80 */\n  { 3104, 0x1996 }, { 3111, 0x2295 }, { 3117, 0x5095 }, { 3123, 0x3795 },\n  /* 0x5DC0 */\n  { 3132, 0x3a00 }, { 3136, 0x69ce }, { 3145, 0x4bff }, { 3157, 0x68be },\n  /* 0x5E00 */\n  { 3166, 0x184d }, { 3172, 0xaf76 }, { 3183, 0xe820 }, { 3188, 0x61c9 },\n  /* 0x5E40 */\n  { 3195, 0x52b9 }, { 3203, 0xc1f0 }, { 3210, 0x781e }, { 3218, 0xfffc },\n  /* 0x5E80 */\n  { 3232, 0x849a }, { 3238, 0x14e0 }, { 3243, 0x3ce1 }, { 3251, 0xc3e0 },\n  /* 0x5EC0 */\n  { 3258, 0x8f4e }, { 3267, 0xae4d }, { 3276, 0x130f }, { 3283, 0xffdb },\n  /* 0x5F00 */\n  { 3297, 0xff9f }, { 3311, 0xf9fb }, { 3324, 0xa2e8 }, { 3331, 0x71f2 },\n  /* 0x5F40 */\n  { 3340, 0x55a3 }, { 3348, 0x33da }, { 3357, 0x3ede }, { 3368, 0xf28f },\n  /* 0x5F80 */\n  { 3378, 0x9fbf }, { 3391, 0x538f }, { 3400, 0xe797 }, { 3411, 0x33b8 },\n  /* 0x5FC0 */\n  { 3419, 0x3ab8 }, { 3427, 0x73dc }, { 3437, 0xca17 }, { 3445, 0xb92b },\n  /* 0x6000 */\n  { 3454, 0xe000 }, { 3457, 0x3bf5 }, { 3468, 0x8ff7 }, { 3480, 0x042a },\n  /* 0x6040 */\n  { 3484, 0x3cce }, { 3493, 0x8625 }, { 3499, 0xbf3d }, { 3511, 0x80a1 },\n  /* 0x6080 */\n  { 3515, 0x3e1a }, { 3523, 0xecf4 }, { 3533, 0x07c9 }, { 3540, 0x717f },\n  /* 0x60C0 */\n  { 3551, 0x09e0 }, { 3556, 0xbf3a }, { 3567, 0x418b }, { 3573, 0x0fff },\n  /* 0x6100 */\n  { 3585, 0xe34b }, { 3594, 0xde2d }, { 3604, 0x1982 }, { 3609, 0xf491 },\n  /* 0x6140 */\n  { 3617, 0x7dd6 }, { 3628, 0xa728 }, { 3635, 0xc9ad }, { 3644, 0x50fb },\n  /* 0x6180 */\n  { 3653, 0x6484 }, { 3658, 0x07df }, { 3668, 0x7bb0 }, { 3677, 0x5644 },\n  /* 0x61C0 */\n  { 3683, 0x3fc8 }, { 3692, 0xa021 }, { 3696, 0x0048 }, { 3698, 0xf5f4 },\n  /* 0x6200 */\n  { 3709, 0x7701 }, { 3716, 0xec77 }, { 3727, 0xc64e }, { 3735, 0xc91d },\n  /* 0x6240 */\n  { 3743, 0x7bcb }, { 3754, 0x4d6e }, { 3763, 0xe11b }, { 3771, 0xda4a },\n  /* 0x6280 */\n  { 3779, 0x063d }, { 3786, 0x5bfe }, { 3798, 0x1840 }, { 3801, 0x3a22 },\n  /* 0x62C0 */\n  { 3807, 0xb7f4 }, { 3818, 0x3bff }, { 3831, 0xf003 }, { 3837, 0xf0ea },\n  /* 0x6300 */\n  { 3846, 0x378e }, { 3855, 0x8303 }, { 3860, 0x8980 }, { 3864, 0xfe24 },\n  /* 0x6340 */\n  { 3873, 0xf21a }, { 3881, 0x12a1 }, { 3886, 0x5ba0 }, { 3893, 0x1cc4 },\n  /* 0x6380 */\n  { 3899, 0xd319 }, { 3907, 0x8b54 }, { 3914, 0x1faf }, { 3925, 0x6834 },\n  /* 0x63C0 */\n  { 3931, 0x8259 }, { 3937, 0x1c75 }, { 3945, 0x7a2b }, { 3954, 0x04f4 },\n  /* 0x6400 */\n  { 3960, 0xa240 }, { 3964, 0x50d9 }, { 3971, 0xb364 }, { 3979, 0x4450 },\n  /* 0x6440 */\n  { 3983, 0x4004 }, { 3985, 0x2d02 }, { 3990, 0xa281 }, { 3995, 0x2748 },\n  /* 0x6480 */\n  { 4001, 0x0188 }, { 4004, 0xe42e }, { 4012, 0x6a30 }, { 4018, 0xda05 },\n  /* 0x64C0 */\n  { 4025, 0x7cb6 }, { 4035, 0x05b5 }, { 4042, 0x90ff }, { 4052, 0xecd6 },\n  /* 0x6500 */\n  { 4062, 0x8031 }, { 4066, 0x7150 }, { 4072, 0x9e1c }, { 4080, 0xcbf4 },\n  /* 0x6540 */\n  { 4090, 0xa130 }, { 4095, 0x63f2 }, { 4104, 0x18cc }, { 4110, 0x05b5 },\n  /* 0x6580 */\n  { 4117, 0x57be }, { 4128, 0xba83 }, { 4136, 0xb8b2 }, { 4144, 0xb3a5 },\n  /* 0x65C0 */\n  { 4153, 0x9a7e }, { 4163, 0x0a94 }, { 4168, 0x33e7 }, { 4178, 0x1e06 },\n  /* 0x6600 */\n  { 4184, 0xd7dd }, { 4196, 0xd038 }, { 4202, 0xadb7 }, { 4213, 0x947b },\n  /* 0x6640 */\n  { 4222, 0xdb3e }, { 4233, 0xee86 }, { 4242, 0xfffe }, { 4257, 0x0dd9 },\n  /* 0x6680 */\n  { 4265, 0x639b }, { 4274, 0x23c7 }, { 4282, 0x6845 }, { 4288, 0xdb36 },\n  /* 0x66C0 */\n  { 4298, 0x03d2 }, { 4304, 0x3e40 }, { 4310, 0x1341 }, { 4315, 0xffbd },\n  /* 0x6700 */\n  { 4329, 0xab2b }, { 4338, 0xeafc }, { 4349, 0x7dc0 }, { 4357, 0xa5da },\n  /* 0x6740 */\n  { 4366, 0xf3c2 }, { 4375, 0xf25b }, { 4385, 0xa47f }, { 4395, 0xd8ff },\n  /* 0x6780 */\n  { 4407, 0x1aa2 }, { 4413, 0x3dad }, { 4423, 0x8247 }, { 4429, 0x0bdd },\n  /* 0x67C0 */\n  { 4438, 0xc55b }, { 4447, 0x6f9f }, { 4459, 0xd294 }, { 4466, 0xdabb },\n  /* 0x6800 */\n  { 4477, 0x001e }, { 4481, 0xe1c9 }, { 4489, 0x3e06 }, { 4496, 0x7b1e },\n  /* 0x6840 */\n  { 4506, 0x737f }, { 4518, 0xbabf }, { 4530, 0x4888 }, { 4534, 0xd4f4 },\n  /* 0x6880 */\n  { 4543, 0xa02e }, { 4549, 0xbfd9 }, { 4561, 0xaded }, { 4572, 0x1e7f },\n  /* 0x68C0 */\n  { 4583, 0xbf78 }, { 4594, 0x87f5 }, { 4604, 0xf1bb }, { 4615, 0x1e87 },\n  /* 0x6900 */\n  { 4623, 0xfdbb }, { 4636, 0x1e04 }, { 4641, 0x056e }, { 4648, 0xaa71 },\n  /* 0x6940 */\n  { 4656, 0x0644 }, { 4660, 0x76b8 }, { 4669, 0xff1f }, { 4682, 0xf7bc },\n  /* 0x6980 */\n  { 4694, 0x4407 }, { 4699, 0x1976 }, { 4707, 0x60e1 }, { 4713, 0xdc97 },\n  /* 0x69C0 */\n  { 4723, 0xfc8b }, { 4733, 0x634b }, { 4741, 0xef8c }, { 4751, 0xea7c },\n  /* 0x6A00 */\n  { 4761, 0x9c24 }, { 4767, 0xeebe }, { 4779, 0x4e0e }, { 4786, 0xef7d },\n  /* 0x6A40 */\n  { 4799, 0x4bf0 }, { 4807, 0x8b45 }, { 4814, 0x0856 }, { 4819, 0xc50c },\n  /* 0x6A80 */\n  { 4825, 0x6a19 }, { 4832, 0xf093 }, { 4840, 0x5c2f }, { 4849, 0x2908 },\n  /* 0x6AC0 */\n  { 4853, 0x004e }, { 4857, 0xfc1b }, { 4867, 0x1590 }, { 4872, 0x2c0e },\n  /* 0x6B00 */\n  { 4878, 0x8c30 }, { 4883, 0xe8c7 }, { 4892, 0x908b }, { 4898, 0x67a4 },\n  /* 0x6B40 */\n  { 4906, 0x56c8 }, { 4913, 0x8b59 }, { 4921, 0x96ff }, { 4933, 0x8fb8 },\n  /* 0x6B80 */\n  { 4942, 0x2e5f }, { 4952, 0x4960 }, { 4957, 0xee10 }, { 4964, 0xfcbe },\n  /* 0x6BC0 */\n  { 4976, 0xebe1 }, { 4986, 0x8ddc }, { 4995, 0xd8c0 }, { 5001, 0x800a },\n  /* 0x6C00 */\n  { 5004, 0xc524 }, { 5010, 0x089b }, { 5016, 0x0018 }, { 5018, 0xc5f8 },\n  /* 0x6C40 */\n  { 5027, 0x6007 }, { 5032, 0xfea1 }, { 5042, 0x2585 }, { 5048, 0x645d },\n  /* 0x6C80 */\n  { 5056, 0x337e }, { 5066, 0x1ffd }, { 5078, 0x6c06 }, { 5084, 0xff0a },\n  /* 0x6CC0 */\n  { 5094, 0x1676 }, { 5102, 0x3ef9 }, { 5113, 0xff2f }, { 5126, 0x080b },\n  /* 0x6D00 */\n  { 5130, 0x5c11 }, { 5136, 0xca84 }, { 5142, 0xcef0 }, { 5151, 0xfb7e },\n  /* 0x6D40 */\n  { 5164, 0x0032 }, { 5167, 0x5f00 }, { 5173, 0x5679 }, { 5182, 0x0391 },\n  /* 0x6D80 */\n  { 5187, 0x77a7 }, { 5198, 0x1b3a }, { 5206, 0xdc00 }, { 5211, 0x9134 },\n  /* 0x6DC0 */\n  { 5217, 0xd9f5 }, { 5228, 0xef67 }, { 5240, 0x5f52 }, { 5249, 0x1eea },\n  /* 0x6E00 */\n  { 5258, 0x0fa0 }, { 5264, 0xeea8 }, { 5273, 0xfaff }, { 5287, 0x5554 },\n  /* 0x6E40 */\n  { 5294, 0xff18 }, { 5304, 0xd9da }, { 5314, 0xc888 }, { 5319, 0xc044 },\n  /* 0x6E80 */\n  { 5323, 0x9005 }, { 5327, 0xb149 }, { 5334, 0x8ca4 }, { 5340, 0xa4d6 },\n  /* 0x6EC0 */\n  { 5348, 0x5ebe }, { 5359, 0x623a }, { 5366, 0x9800 }, { 5369, 0xcb94 },\n  /* 0x6F00 */\n  { 5377, 0x9646 }, { 5384, 0x053b }, { 5391, 0x9c2d }, { 5399, 0xd16e },\n  /* 0x6F40 */\n  { 5408, 0x0022 }, { 5410, 0xdf96 }, { 5421, 0xe157 }, { 5430, 0x7511 },\n  /* 0x6F80 */\n  { 5437, 0x7157 }, { 5446, 0x81d3 }, { 5453, 0x84bb }, { 5461, 0x526a },\n  /* 0x6FC0 */\n  { 5468, 0x07cf }, { 5477, 0xcd30 }, { 5484, 0xda13 }, { 5492, 0x566b },\n  /* 0x7000 */\n  { 5501, 0x8ee3 }, { 5510, 0xed22 }, { 5518, 0x11c8 }, { 5523, 0x5605 },\n  /* 0x7040 */\n  { 5529, 0x5c88 }, { 5535, 0x6112 }, { 5540, 0xda38 }, { 5548, 0x7161 },\n  /* 0x7080 */\n  { 5555, 0x4662 }, { 5561, 0x82a4 }, { 5566, 0xf810 }, { 5572, 0x0f8a },\n  /* 0x70C0 */\n  { 5579, 0x8d00 }, { 5583, 0xb31a }, { 5591, 0x1010 }, { 5593, 0x2202 },\n  /* 0x7100 */\n  { 5596, 0x93d8 }, { 5604, 0x5610 }, { 5609, 0xc843 }, { 5615, 0x1043 },\n  /* 0x7140 */\n  { 5619, 0x56c0 }, { 5625, 0x526f }, { 5634, 0x53f5 }, { 5644, 0x2000 },\n  /* 0x7180 */\n  { 5645, 0x85b1 }, { 5652, 0x8a74 }, { 5659, 0xd105 }, { 5665, 0x460a },\n  /* 0x71C0 */\n  { 5670, 0x4b1a }, { 5677, 0x92bd }, { 5686, 0x70e1 }, { 5693, 0xda20 },\n  /* 0x7200 */\n  { 5699, 0x20c1 }, { 5703, 0x0821 }, { 5706, 0x3d00 }, { 5711, 0xff75 },\n  /* 0x7240 */\n  { 5724, 0x19c5 }, { 5731, 0xabec }, { 5741, 0xc28e }, { 5748, 0xe314 },\n  /* 0x7280 */\n  { 5755, 0x6087 }, { 5761, 0x0844 }, { 5764, 0xf085 }, { 5771, 0x4247 },\n  /* 0x72C0 */\n  { 5777, 0x505f }, { 5785, 0x0a85 }, { 5790, 0x3207 }, { 5796, 0x3f88 },\n  /* 0x7300 */\n  { 5804, 0x0480 }, { 5806, 0xbbc4 }, { 5815, 0xdfa0 }, { 5824, 0xe2da },\n  /* 0x7340 */\n  { 5833, 0xc030 }, { 5837, 0x0085 }, { 5840, 0xdd48 }, { 5848, 0x1da7 },\n  /* 0x7380 */\n  { 5857, 0x0eb2 }, { 5864, 0xd170 }, { 5871, 0x0b65 }, { 5878, 0x9aac },\n  /* 0x73C0 */\n  { 5886, 0xef25 }, { 5896, 0x4240 }, { 5899, 0x66ab }, { 5908, 0x4702 },\n  /* 0x7400 */\n  { 5913, 0x06ea }, { 5920, 0x0c08 }, { 5923, 0xdd74 }, { 5933, 0x867f },\n  /* 0x7440 */\n  { 5943, 0x28db }, { 5951, 0xfeac }, { 5962, 0xae1d }, { 5971, 0x404b },\n  /* 0x7480 */\n  { 5976, 0x0bea }, { 5984, 0xd385 }, { 5992, 0x0fef }, { 6003, 0xae21 },\n  /* 0x74C0 */\n  { 6010, 0x8700 }, { 6014, 0x5550 }, { 6020, 0xcacd }, { 6029, 0x85c7 },\n  /* 0x7500 */\n  { 6037, 0x703a }, { 6044, 0xd5aa }, { 6053, 0x9d79 }, { 6063, 0x7d8f },\n  /* 0x7540 */\n  { 6074, 0xff51 }, { 6085, 0x3e17 }, { 6094, 0xbef5 }, { 6106, 0xe7df },\n  /* 0x7580 */\n  { 6119, 0xdec6 }, { 6129, 0x2416 }, { 6134, 0x082c }, { 6138, 0xf3af },\n  /* 0x75C0 */\n  { 6150, 0xe4ed }, { 6160, 0xeb3c }, { 6170, 0x529d }, { 6178, 0xd61f },\n  /* 0x7600 */\n  { 6188, 0xab8f }, { 6198, 0xdb68 }, { 6207, 0x21f7 }, { 6216, 0x1839 },\n  /* 0x7640 */\n  { 6222, 0x1bce }, { 6231, 0x1164 }, { 6236, 0xf7b6 }, { 6248, 0x7d47 },\n  /* 0x7680 */\n  { 6258, 0x49db }, { 6267, 0x7e69 }, { 6277, 0xc5c3 }, { 6285, 0x87d1 },\n  /* 0x76C0 */\n  { 6293, 0x776c }, { 6303, 0xd8d4 }, { 6311, 0x55fa }, { 6321, 0x5916 },\n  /* 0x7700 */\n  { 6328, 0x1f92 }, { 6336, 0xce80 }, { 6342, 0x2271 }, { 6348, 0x15f0 },\n  /* 0x7740 */\n  { 6355, 0x60c1 }, { 6360, 0x9d00 }, { 6365, 0x0d6f }, { 6374, 0xf604 },\n  /* 0x7780 */\n  { 6381, 0x4801 }, { 6384, 0xc412 }, { 6389, 0x3635 }, { 6397, 0xba49 },\n  /* 0x77C0 */\n  { 6405, 0x2080 }, { 6407, 0xdc80 }, { 6413, 0xf6fd }, { 6426, 0x1819 },\n  /* 0x7800 */\n  { 6431, 0x3264 }, { 6437, 0x0234 }, { 6441, 0x30e3 }, { 6448, 0x8414 },\n  /* 0x7840 */\n  { 6452, 0xc0a8 }, { 6457, 0x2002 }, { 6459, 0xdd10 }, { 6466, 0x1014 },\n  /* 0x7880 */\n  { 6469, 0x74c2 }, { 6476, 0xe4ba }, { 6485, 0xa698 }, { 6492, 0x5c21 },\n  /* 0x78C0 */\n  { 6498, 0x5d62 }, { 6506, 0x0433 }, { 6511, 0x91d3 }, { 6519, 0x6e94 },\n  /* 0x7900 */\n  { 6527, 0x4083 }, { 6531, 0x1a07 }, { 6537, 0x5c60 }, { 6543, 0x5c13 },\n  /* 0x7940 */\n  { 6550, 0x07e3 }, { 6558, 0xfde9 }, { 6570, 0x21a5 }, { 6576, 0x8684 },\n  /* 0x7980 */\n  { 6581, 0xe433 }, { 6589, 0x2970 }, { 6595, 0x46c2 }, { 6601, 0xef1b },\n  /* 0x79C0 */\n  { 6612, 0x3f87 }, { 6622, 0xc176 }, { 6630, 0x3ada }, { 6639, 0x0801 },\n  /* 0x7A00 */\n  { 6641, 0x6d09 }, { 6648, 0xdfb2 }, { 6659, 0x6001 }, { 6662, 0xfb86 },\n  /* 0x7A40 */\n  { 6672, 0xf2cd }, { 6682, 0xb2c1 }, { 6689, 0x2e8f }, { 6698, 0xa771 },\n  /* 0x7A80 */\n  { 6707, 0x053e }, { 6714, 0x81ed }, { 6722, 0xd609 }, { 6729, 0xde49 },\n  /* 0x7AC0 */\n  { 6738, 0xfdb8 }, { 6749, 0xb62e }, { 6758, 0xadef }, { 6770, 0xa751 },\n  /* 0x7B00 */\n  { 6778, 0x8dd4 }, { 6786, 0x4b06 }, { 6792, 0xf5e1 }, { 6802, 0x2a6a },\n  /* 0x7B40 */\n  { 6809, 0xfbe2 }, { 6820, 0x2077 }, { 6827, 0xf2f1 }, { 6837, 0x863f },\n  /* 0x7B80 */\n  { 6846, 0xa8c0 }, { 6851, 0xffb7 }, { 6865, 0xa402 }, { 6869, 0x1132 },\n  /* 0x7BC0 */\n  { 6874, 0x9ef3 }, { 6885, 0x26d0 }, { 6891, 0x2671 }, { 6898, 0x00c9 },\n  /* 0x7C00 */\n  { 6902, 0xe88b }, { 6910, 0xc09e }, { 6917, 0x0ccb }, { 6924, 0xe1ca },\n  /* 0x7C40 */\n  { 6932, 0xb429 }, { 6939, 0xc3d3 }, { 6948, 0xf233 }, { 6957, 0x4229 },\n  /* 0x7C80 */\n  { 6962, 0xaa0e }, { 6969, 0x89b5 }, { 6977, 0x69f7 }, { 6988, 0xf2ce },\n  /* 0x7CC0 */\n  { 6998, 0x6535 }, { 7006, 0xf3e4 }, { 7016, 0x88c5 }, { 7022, 0x4d74 },\n  /* 0x7D00 */\n  { 7030, 0x2ffd }, { 7042, 0x7fbd }, { 7055, 0xd80f }, { 7063, 0xe62f },\n  /* 0x7D40 */\n  { 7073, 0xd9ff }, { 7086, 0x5e49 }, { 7094, 0x454e }, { 7101, 0xa66f },\n  /* 0x7D80 */\n  { 7111, 0x9b48 }, { 7118, 0xbe88 }, { 7126, 0xfccd }, { 7137, 0xedf7 },\n  /* 0x7DC0 */\n  { 7150, 0x9c85 }, { 7157, 0x77e6 }, { 7168, 0x935b }, { 7177, 0x0a16 },\n  /* 0x7E00 */\n  { 7182, 0x0f32 }, { 7189, 0xe8a7 }, { 7198, 0x59cf }, { 7208, 0x6ea6 },\n  /* 0x7E40 */\n  { 7217, 0x2cea }, { 7225, 0x6674 }, { 7233, 0x2ec2 }, { 7240, 0xfa29 },\n  /* 0x7E80 */\n  { 7249, 0xf7cc }, { 7260, 0x1d5f }, { 7270, 0x0000 }, { 7270, 0x0000 },\n  /* 0x7F00 */\n  { 7270, 0x0000 }, { 7270, 0x0000 }, { 7270, 0x0000 }, { 7270, 0x5d40 },\n  /* 0x7F40 */\n  { 7276, 0xf0b8 }, { 7284, 0x8137 }, { 7291, 0x6f9b }, { 7302, 0x63a5 },\n  /* 0x7F80 */\n  { 7310, 0x55ec }, { 7319, 0x74d3 }, { 7328, 0xe318 }, { 7335, 0xa344 },\n  /* 0x7FC0 */\n  { 7341, 0xd46a }, { 7349, 0x8834 }, { 7354, 0xda6b }, { 7364, 0x1e0d },\n  /* 0x8000 */\n  { 7371, 0x5d7f }, { 7383, 0x13f7 }, { 7393, 0x1152 }, { 7398, 0xb8e9 },\n  /* 0x8040 */\n  { 7407, 0x0448 }, { 7410, 0xc544 }, { 7416, 0x8146 }, { 7421, 0xeaff },\n  /* 0x8080 */\n  { 7434, 0x1af0 }, { 7441, 0x3f48 }, { 7449, 0xb6b6 }, { 7459, 0x0516 },\n  /* 0x80C0 */\n  { 7464, 0x5478 }, { 7471, 0x6fe0 }, { 7480, 0x8073 }, { 7486, 0x393a },\n  /* 0x8100 */\n  { 7494, 0x27e4 }, { 7502, 0x4d40 }, { 7507, 0x9298 }, { 7513, 0x622a },\n  /* 0x8140 */\n  { 7519, 0x4c40 }, { 7523, 0x803b }, { 7529, 0x6be1 }, { 7538, 0x8713 },\n  /* 0x8180 */\n  { 7545, 0x853f }, { 7554, 0x3528 }, { 7560, 0x0319 }, { 7565, 0xed2d },\n  /* 0x81C0 */\n  { 7575, 0xa74f }, { 7585, 0x8fca }, { 7594, 0x35b9 }, { 7603, 0xfc18 },\n  /* 0x8200 */\n  { 7611, 0x77b6 }, { 7622, 0xdbc5 }, { 7632, 0x5e06 }, { 7639, 0x13fc },\n  /* 0x8240 */\n  { 7648, 0x8ae1 }, { 7655, 0xb780 }, { 7662, 0xcd5d }, { 7672, 0xe3d6 },\n  /* 0x8280 */\n  { 7682, 0x6c08 }, { 7687, 0xa20c }, { 7692, 0xfbfa }, { 7705, 0xff9e },\n  /* 0x82C0 */\n  { 7718, 0x0060 }, { 7720, 0xdabe }, { 7731, 0x09ee }, { 7739, 0x6e9a },\n  /* 0x8300 */\n  { 7748, 0x53ff }, { 7760, 0x39c0 }, { 7766, 0xa90c }, { 7772, 0x1777 },\n  /* 0x8340 */\n  { 7782, 0x86b9 }, { 7790, 0x01b7 }, { 7797, 0x000c }, { 7799, 0xb8a8 },\n  /* 0x8380 */\n  { 7806, 0x66e0 }, { 7813, 0xed7c }, { 7824, 0x0f85 }, { 7831, 0xa022 },\n  /* 0x83C0 */\n  { 7835, 0xd6a3 }, { 7844, 0xb15b }, { 7853, 0x8e23 }, { 7860, 0x2a97 },\n  /* 0x8400 */\n  { 7868, 0xfcda }, { 7879, 0x00aa }, { 7883, 0x1605 }, { 7888, 0x3322 },\n  /* 0x8440 */\n  { 7894, 0xc740 }, { 7900, 0x9e86 }, { 7908, 0xfa6e }, { 7919, 0x17eb },\n  /* 0x8480 */\n  { 7929, 0x0836 }, { 7934, 0xd291 }, { 7941, 0xa042 }, { 7945, 0xdf14 },\n  /* 0x84C0 */\n  { 7954, 0xee57 }, { 7965, 0x164b }, { 7972, 0xd480 }, { 7977, 0xb413 },\n  /* 0x8500 */\n  { 7984, 0x1041 }, { 7987, 0xcdba }, { 7997, 0xb87a }, { 8006, 0x6034 },\n  /* 0x8540 */\n  { 8011, 0xcf0b }, { 8020, 0x47aa }, { 8028, 0xa71e }, { 8037, 0xec80 },\n  /* 0x8580 */\n  { 8043, 0x95d3 }, { 8052, 0xba9b }, { 8062, 0xff54 }, { 8073, 0x1681 },\n  /* 0x85C0 */\n  { 8078, 0xee82 }, { 8086, 0xb321 }, { 8093, 0x2672 }, { 8100, 0xcec0 },\n  /* 0x8600 */\n  { 8107, 0x0cf5 }, { 8115, 0x45cf }, { 8124, 0xa296 }, { 8131, 0x9301 },\n  /* 0x8640 */\n  { 8136, 0x6003 }, { 8140, 0xdcf9 }, { 8151, 0x9884 }, { 8156, 0x0ea2 },\n  /* 0x8680 */\n  { 8162, 0x3e80 }, { 8168, 0x312a }, { 8174, 0x8f18 }, { 8181, 0x014b },\n  /* 0x86C0 */\n  { 8186, 0x6ada }, { 8195, 0xcab2 }, { 8203, 0xf258 }, { 8211, 0x7f00 },\n  /* 0x8700 */\n  { 8218, 0x6fed }, { 8230, 0x970f }, { 8239, 0x022a }, { 8243, 0xcc92 },\n  /* 0x8740 */\n  { 8250, 0x5a09 }, { 8256, 0x83aa }, { 8263, 0x4579 }, { 8271, 0x9156 },\n  /* 0x8780 */\n  { 8278, 0x2b84 }, { 8284, 0x8008 }, { 8286, 0xb885 }, { 8293, 0x6c28 },\n  /* 0x87C0 */\n  { 8299, 0x48d3 }, { 8306, 0x8045 }, { 8310, 0xbc69 }, { 8319, 0x4ae4 },\n  /* 0x8800 */\n  { 8326, 0xec6a }, { 8335, 0x807b }, { 8342, 0x418e }, { 8348, 0x1a46 },\n  /* 0x8840 */\n  { 8354, 0x3455 }, { 8361, 0xeb8c }, { 8370, 0x8b1e }, { 8378, 0xe0a5 },\n  /* 0x8880 */\n  { 8385, 0x2906 }, { 8390, 0x43c4 }, { 8396, 0x4c15 }, { 8402, 0xf0b3 },\n  /* 0x88C0 */\n  { 8411, 0xc43f }, { 8420, 0xbb3e }, { 8431, 0x0102 }, { 8433, 0x733f },\n  /* 0x8900 */\n  { 8444, 0x1496 }, { 8450, 0x770d }, { 8459, 0x0ca0 }, { 8463, 0x0bc5 },\n  /* 0x8940 */\n  { 8470, 0x323f }, { 8479, 0xc040 }, { 8482, 0xa455 }, { 8489, 0xc094 },\n  /* 0x8980 */\n  { 8494, 0x8fcb }, { 8504, 0x85d9 }, { 8512, 0x96c2 }, { 8519, 0xa48d },\n  /* 0x89C0 */\n  { 8526, 0x0001 }, { 8527, 0x3554 }, { 8534, 0x08e8 }, { 8539, 0xa15a },\n  /* 0x8A00 */\n  { 8546, 0x550d }, { 8553, 0xa9ff }, { 8565, 0x242e }, { 8571, 0x5cfa },\n  /* 0x8A40 */\n  { 8581, 0x61e2 }, { 8588, 0x6937 }, { 8597, 0x7a4f }, { 8607, 0x122f },\n  /* 0x8A80 */\n  { 8614, 0x32b4 }, { 8621, 0x452b }, { 8628, 0x71fb }, { 8639, 0xd285 },\n  /* 0x8AC0 */\n  { 8646, 0xb894 }, { 8653, 0xdcc5 }, { 8662, 0x68d7 }, { 8671, 0x55da },\n  /* 0x8B00 */\n  { 8680, 0x74b7 }, { 8690, 0xbed1 }, { 8700, 0x3943 }, { 8707, 0x4208 },\n  /* 0x8B40 */\n  { 8710, 0xd24a }, { 8717, 0xdf52 }, { 8727, 0x9a40 }, { 8732, 0xa0d7 },\n  /* 0x8B80 */\n  { 8740, 0x5c0b }, { 8747, 0x767d }, { 8758, 0x0000 }, { 8758, 0x0000 },\n  /* 0x8C00 */\n  { 8758, 0x0000 }, { 8758, 0x0000 }, { 8758, 0x0000 }, { 8758, 0xa680 },\n  /* 0x8C40 */\n  { 8763, 0xd7e2 }, { 8773, 0x04b1 }, { 8778, 0x3f06 }, { 8786, 0x1708 },\n  /* 0x8C80 */\n  { 8791, 0x7624 }, { 8798, 0x6b1c }, { 8806, 0xff97 }, { 8819, 0xb9dd },\n  /* 0x8CC0 */\n  { 8830, 0x659f }, { 8840, 0x5e6a }, { 8849, 0x245f }, { 8857, 0x7d13 },\n  /* 0x8D00 */\n  { 8866, 0xefb0 }, { 8876, 0x085d }, { 8882, 0x0000 }, { 8882, 0x0000 },\n  /* 0x8D40 */\n  { 8882, 0x0000 }, { 8882, 0x0000 }, { 8882, 0x38d0 }, { 8888, 0x009b },\n  /* 0x8D80 */\n  { 8893, 0x0432 }, { 8897, 0x0220 }, { 8899, 0x8148 }, { 8903, 0x4408 },\n  /* 0x8DC0 */\n  { 8906, 0xd944 }, { 8913, 0xaec2 }, { 8921, 0x9d0a }, { 8928, 0xb028 },\n  /* 0x8E00 */\n  { 8933, 0x9740 }, { 8939, 0xe051 }, { 8945, 0x048f }, { 8951, 0x2271 },\n  /* 0x8E40 */\n  { 8957, 0x1f94 }, { 8965, 0x8231 }, { 8970, 0xb01d }, { 8977, 0x1855 },\n  /* 0x8E80 */\n  { 8983, 0x2cb2 }, { 8990, 0x431a }, { 8996, 0xdc02 }, { 9002, 0x486b },\n  /* 0x8EC0 */\n  { 9009, 0x3d61 }, { 9017, 0x8816 }, { 9022, 0x080c }, { 9025, 0x7f00 },\n  /* 0x8F00 */\n  { 9032, 0x1729 }, { 9039, 0xfabc }, { 9050, 0xae40 }, { 9056, 0xcb48 },\n  /* 0x8F40 */\n  { 9063, 0x7675 }, { 9073, 0x9190 }, { 9078, 0x001e }, { 9082, 0x0000 },\n  /* 0x8F80 */\n  { 9082, 0x0000 }, { 9082, 0xd800 }, { 9086, 0xe1d8 }, { 9094, 0x9cf7 },\n  /* 0x8FC0 */\n  { 9105, 0x6476 }, { 9113, 0x043a }, { 9118, 0xef75 }, { 9130, 0x2fb3 },\n  /* 0x9000 */\n  { 9140, 0xf96f }, { 9152, 0xe6fb }, { 9164, 0x608f }, { 9171, 0x53e6 },\n  /* 0x9040 */\n  { 9180, 0xeebe }, { 9192, 0x737f }, { 9204, 0xe32b }, { 9213, 0xb5e4 },\n  /* 0x9080 */\n  { 9222, 0x97bf }, { 9234, 0x0aa3 }, { 9240, 0x854e }, { 9247, 0x416b },\n  /* 0x90C0 */\n  { 9254, 0x45ba }, { 9262, 0xf880 }, { 9268, 0xa916 }, { 9275, 0xe0f4 },\n  /* 0x9100 */\n  { 9283, 0x0055 }, { 9287, 0x5374 }, { 9295, 0xa08c }, { 9300, 0x2697 },\n  /* 0x9140 */\n  { 9308, 0x7fc0 }, { 9317, 0x0bd4 }, { 9324, 0x163e }, { 9332, 0x03bc },\n  /* 0x9180 */\n  { 9339, 0x6aac }, { 9347, 0x5085 }, { 9352, 0xdd14 }, { 9360, 0x157a },\n  /* 0x91C0 */\n  { 9368, 0xfbdb }, { 9381, 0xbdc3 }, { 9391, 0x70fa }, { 9400, 0x9862 },\n  /* 0x9200 */\n  { 9406, 0x6482 }, { 9411, 0x40f3 }, { 9418, 0x1200 }, { 9420, 0x9798 },\n  /* 0x9240 */\n  { 9428, 0xcfbd }, { 9440, 0x4ec3 }, { 9448, 0x01f7 }, { 9456, 0xf102 },\n  /* 0x9280 */\n  { 9462, 0x2329 }, { 9468, 0x9fea }, { 9479, 0x2880 }, { 9482, 0x8284 },\n  /* 0x92C0 */\n  { 9486, 0xd845 }, { 9493, 0x028d }, { 9498, 0x26b1 }, { 9505, 0x9f8c },\n  /* 0x9300 */\n  { 9514, 0xa054 }, { 9519, 0xe723 }, { 9528, 0xdbef }, { 9541, 0x0c24 },\n  /* 0x9340 */\n  { 9545, 0x2f90 }, { 9552, 0x1cd2 }, { 9559, 0x5c31 }, { 9566, 0x502b },\n  /* 0x9380 */\n  { 9572, 0x9900 }, { 9576, 0x4cd0 }, { 9582, 0x708a }, { 9588, 0x0601 },\n  /* 0x93C0 */\n  { 9591, 0x01ca }, { 9596, 0xf1c3 }, { 9605, 0x01b6 }, { 9611, 0x2822 },\n  /* 0x9400 */\n  { 9615, 0x8298 }, { 9620, 0x07d9 }, { 9628, 0x0802 }, { 9630, 0x0d7c },\n  /* 0x9440 */\n  { 9638, 0x0432 }, { 9642, 0x4c0e }, { 9648, 0xac0d }, { 9655, 0xf0a7 },\n  /* 0x9480 */\n  { 9664, 0x0002 }, { 9665, 0x0000 }, { 9665, 0x0000 }, { 9665, 0x0000 },\n  /* 0x9540 */\n  { 9665, 0x0000 }, { 9665, 0x0000 }, { 9665, 0x0000 }, { 9665, 0x0380 },\n  /* 0x9580 */\n  { 9668, 0xfecd }, { 9680, 0x835a }, { 9687, 0x3bfd }, { 9699, 0x7a54 },\n  /* 0x95C0 */\n  { 9707, 0x3d88 }, { 9714, 0x5579 }, { 9723, 0x0026 }, { 9726, 0x0000 },\n  /* 0x9600 */\n  { 9726, 0x0000 }, { 9726, 0x3000 }, { 9728, 0xd502 }, { 9734, 0x981c },\n  /* 0x9640 */\n  { 9740, 0xb817 }, { 9748, 0xf901 }, { 9755, 0x147e }, { 9763, 0x25ed },\n  /* 0x9680 */\n  { 9772, 0xed74 }, { 9782, 0x3fb0 }, { 9791, 0x87b9 }, { 9800, 0x3fdf },\n  /* 0x96C0 */\n  { 9813, 0x7af3 }, { 9824, 0x7f66 }, { 9835, 0x8f0c }, { 9842, 0x0ac5 },\n  /* 0x9700 */\n  { 9848, 0xe5d1 }, { 9857, 0x525a }, { 9864, 0x0498 }, { 9868, 0x6b4d },\n  /* 0x9740 */\n  { 9877, 0xe3d6 }, { 9887, 0x5ee4 }, { 9896, 0x6f57 }, { 9907, 0x161a },\n  /* 0x9780 */\n  { 9913, 0xa872 }, { 9920, 0x5561 }, { 9927, 0x694d }, { 9935, 0x441e },\n  /* 0x97C0 */\n  { 9941, 0x1b4a }, { 9948, 0x5b1a }, { 9956, 0x6002 }, { 9959, 0x887e },\n  /* 0x9800 */\n  { 9967, 0xf57e }, { 9979, 0x45df }, { 9989, 0x383a }, { 9996, 0x399d },\n  /* 0x9840 */\n  { 10005, 0xf8c0 }, { 10012, 0x4ffc }, { 10023, 0x98e0 }, { 10029, 0x001b },\n  /* 0x9880 */\n  { 10033, 0x0000 }, { 10033, 0x0000 }, { 10033, 0xad00 }, { 10038, 0x9dc3 },\n  /* 0x98C0 */\n  { 10047, 0x09dc }, { 10054, 0x9800 }, { 10057, 0xeeaf }, { 10069, 0x701f },\n  /* 0x9900 */\n  { 10077, 0x1728 }, { 10083, 0x7ddd }, { 10095, 0x5113 }, { 10101, 0x7c0e },\n  /* 0x9940 */\n  { 10109, 0x7a67 }, { 10119, 0x91a7 }, { 10127, 0x0001 }, { 10128, 0x0000 },\n  /* 0x9980 */\n  { 10128, 0x0000 }, { 10128, 0x43c0 }, { 10133, 0x7168 }, { 10140, 0xb218 },\n  /* 0x99C0 */\n  { 10146, 0x037a }, { 10153, 0xeb37 }, { 10164, 0x6004 }, { 10167, 0x9b07 },\n  /* 0x9A00 */\n  { 10175, 0xc42e }, { 10182, 0x064e }, { 10188, 0x6911 }, { 10194, 0x41c3 },\n  /* 0x9A40 */\n  { 10200, 0x743d }, { 10209, 0x8da4 }, { 10216, 0x0e34 }, { 10222, 0x0000 },\n  /* 0x9A80 */\n  { 10222, 0x0000 }, { 10222, 0x0000 }, { 10222, 0xa100 }, { 10225, 0x13c1 },\n  /* 0x9AC0 */\n  { 10231, 0xc05b }, { 10238, 0xd17f }, { 10249, 0xee6d }, { 10260, 0x0a92 },\n  /* 0x9B00 */\n  { 10265, 0x114c }, { 10270, 0x9545 }, { 10277, 0xefad }, { 10289, 0x380e },\n  /* 0x9B40 */\n  { 10295, 0xe83e }, { 10304, 0x4512 }, { 10309, 0x9868 }, { 10315, 0x02fc },\n  /* 0x9B80 */\n  { 10322, 0xc418 }, { 10327, 0xc0ce }, { 10334, 0x7dc1 }, { 10343, 0x4316 },\n  /* 0x9BC0 */\n  { 10349, 0xc6c3 }, { 10357, 0x2956 }, { 10364, 0xcdbe }, { 10375, 0x25af },\n  /* 0x9C00 */\n  { 10384, 0x3751 }, { 10392, 0x2f7d }, { 10403, 0xe6be }, { 10414, 0x4ec7 },\n  /* 0x9C40 */\n  { 10423, 0x87e2 }, { 10431, 0xbd9d }, { 10442, 0x6ea9 }, { 10451, 0x05e5 },\n  /* 0x9CC0 */\n  { 10458, 0x0000 }, { 10458, 0x0000 }, { 10458, 0x1ae0 }, { 10464, 0x005d },\n  /* 0x9D00 */\n  { 10469, 0x4bcc }, { 10477, 0xe9a6 }, { 10486, 0x1d48 }, { 10492, 0xc804 },\n  /* 0x9D40 */\n  { 10496, 0x05de }, { 10504, 0xf207 }, { 10512, 0x9a1f }, { 10521, 0x54cd },\n  /* 0x9D80 */\n  { 10529, 0xa690 }, { 10535, 0x0640 }, { 10538, 0x9a12 }, { 10544, 0xbf34 },\n  /* 0x9DC0 */\n  { 10554, 0x82df }, { 10563, 0x86c8 }, { 10569, 0xa0c9 }, { 10575, 0x2714 },\n  /* 0x9E00 */\n  { 10581, 0x2484 }, { 10585, 0x7e20 }, { 10592, 0x0000 }, { 10592, 0x0000 },\n  /* 0x9E40 */\n  { 10592, 0x0000 }, { 10592, 0x0000 }, { 10592, 0x0000 }, { 10592, 0xbb20 },\n  /* 0x9E80 */\n  { 10599, 0x1923 }, { 10605, 0xe8ae }, { 10614, 0xb770 }, { 10623, 0xff30 },\n  /* 0x9EC0 */\n  { 10633, 0xf018 }, { 10639, 0xfb17 }, { 10650, 0xc1a1 }, { 10656, 0xbad0 },\n  /* 0x9F00 */\n  { 10664, 0x418c }, { 10669, 0x02a9 }, { 10674, 0x9003 }, { 10678, 0x6e80 },\n  /* 0x9F40 */\n  { 10684, 0xcc62 }, { 10691, 0xa1bc }, { 10699, 0x36cf }, { 10709, 0x00e5 },\n  /* 0x9F80 */\n  { 10714, 0x2000 }, { 10715, 0x30b1 }, { 10721, 0x0005 }, { 10723, 0x0000 },\n  /* 0xF900 */\n  { 10723, 0x0000 }, { 10723, 0x2000 }, { 10724, 0x0300 }, { 10726, 0x0040 },\n  /* 0xF940 */\n  { 10727, 0x0000 }, { 10727, 0x0000 }, { 10727, 0x0000 }, { 10727, 0x0001 },\n  /* 0xF9C0 */\n  { 10728, 0x0000 }, { 10728, 0x1001 }, { 10730, 0x0000 }, { 10730, 0x0000 },\n  /* 0xFA00 */\n  { 10730, 0x8000 }, { 10731, 0x8e7b }, { 10741, 0x0057 }, { 10746, 0xffff },\n  /* 0xFA40 */\n  { 10762, 0xffff }, { 10778, 0xffff }, { 10794, 0x07ff }, { 10805, 0x0000 },\n  /* 0xFE40 */\n  { 10805, 0x0060 }, { 10807, 0x0000 }, { 10807, 0x0000 }, { 10807, 0x0000 },\n  /* 0xFF00 */\n  { 10807, 0xfffe }, { 10822, 0xffff }, { 10838, 0xffff }, { 10854, 0xffff },\n  /* 0xFF40 */\n  { 10870, 0xffff }, { 10886, 0xffff }, { 10902, 0x0001 }, { 10903, 0x0000 },\n  /* 0xFFC0 */\n  { 10903, 0x0000 }, { 10903, 0x0000 }, { 10903, 0x0028 }, { 10905, 0x0000 },\n  /* 0x20000 */\n  { 10905, 0x0800 }, { 10906, 0x0000 }, { 10906, 0x0000 }, { 10906, 0x0000 },\n  /* 0x20080 */\n  { 10906, 0x0200 }, { 10907, 0x0000 }, { 10907, 0x0014 }, { 10909, 0x0000 },\n  /* 0x20180 */\n  { 10909, 0x0000 }, { 10909, 0x0000 }, { 10909, 0x0004 }, { 10910, 0x0000 },\n  /* 0x20200 */\n  { 10910, 0x0000 }, { 10910, 0x0008 }, { 10911, 0x0000 }, { 10911, 0x0000 },\n  /* 0x20300 */\n  { 10911, 0x0000 }, { 10911, 0x0000 }, { 10911, 0x0800 }, { 10912, 0x0000 },\n  /* 0x20340 */\n  { 10912, 0x0000 }, { 10912, 0x0000 }, { 10912, 0x0000 }, { 10912, 0x0002 },\n  /* 0x20380 */\n  { 10913, 0x0002 }, { 10914, 0x0000 }, { 10914, 0x0000 }, { 10914, 0x0000 },\n  /* 0x203C0 */\n  { 10914, 0x0000 }, { 10914, 0x0000 }, { 10914, 0x0000 }, { 10914, 0x0200 },\n  /* 0x20440 */\n  { 10915, 0x0400 }, { 10916, 0x0000 }, { 10916, 0x0000 }, { 10916, 0x0000 },\n  /* 0x20500 */\n  { 10916, 0x0200 }, { 10917, 0x0000 }, { 10917, 0x0000 }, { 10917, 0x0000 },\n  /* 0x205C0 */\n  { 10917, 0x0000 }, { 10917, 0x0040 }, { 10918, 0x0000 }, { 10918, 0x0000 },\n  /* 0x20600 */\n  { 10918, 0x0000 }, { 10918, 0x0000 }, { 10918, 0x0100 }, { 10919, 0x0000 },\n  /* 0x20740 */\n  { 10919, 0x8000 }, { 10920, 0x0000 }, { 10920, 0x0000 }, { 10920, 0x0000 },\n  /* 0x20800 */\n  { 10920, 0x0080 }, { 10921, 0x0000 }, { 10921, 0x0000 }, { 10921, 0x0400 },\n  /* 0x20880 */\n  { 10922, 0x0000 }, { 10922, 0x0000 }, { 10922, 0x0000 }, { 10922, 0x0200 },\n  /* 0x20940 */\n  { 10923, 0x0000 }, { 10923, 0x0000 }, { 10923, 0x0000 }, { 10923, 0x1000 },\n  /* 0x20980 */\n  { 10924, 0x0000 }, { 10924, 0x2000 }, { 10925, 0x0000 }, { 10925, 0x0000 },\n  /* 0x20AC0 */\n  { 10925, 0x0000 }, { 10925, 0x0008 }, { 10926, 0x0000 }, { 10926, 0x0000 },\n  /* 0x20B00 */\n  { 10926, 0x0000 }, { 10926, 0x2000 }, { 10927, 0x0000 }, { 10927, 0x0000 },\n  /* 0x20B80 */\n  { 10927, 0x0000 }, { 10927, 0x8000 }, { 10928, 0x0000 }, { 10928, 0x0000 },\n  /* 0x20D40 */\n  { 10928, 0x0020 }, { 10929, 0x0000 }, { 10929, 0x0000 }, { 10929, 0x0000 },\n  /* 0x20DC0 */\n  { 10929, 0x0000 }, { 10929, 0x0000 }, { 10929, 0x0002 }, { 10930, 0x0000 },\n  /* 0x20E40 */\n  { 10930, 0x0000 }, { 10930, 0x0000 }, { 10930, 0x2010 }, { 10932, 0x0000 },\n  /* 0x20E80 */\n  { 10932, 0x0000 }, { 10932, 0x0020 }, { 10933, 0x0000 }, { 10933, 0x0000 },\n  /* 0x20F40 */\n  { 10933, 0x0000 }, { 10933, 0x8000 }, { 10934, 0x0000 }, { 10934, 0x0000 },\n  /* 0x21200 */\n  { 10934, 0x0002 }, { 10935, 0x0000 }, { 10935, 0x0000 }, { 10935, 0x2000 },\n  /* 0x21240 */\n  { 10936, 0x0000 }, { 10936, 0x0020 }, { 10937, 0x0000 }, { 10937, 0x0810 },\n  /* 0x212C0 */\n  { 10939, 0x0000 }, { 10939, 0x0080 }, { 10940, 0x0010 }, { 10941, 0x2000 },\n  /* 0x21300 */\n  { 10942, 0x0000 }, { 10942, 0x0800 }, { 10943, 0x0000 }, { 10943, 0x0040 },\n  /* 0x21340 */\n  { 10944, 0x0010 }, { 10945, 0x0000 }, { 10945, 0x0000 }, { 10945, 0x0000 },\n  /* 0x213C0 */\n  { 10945, 0x0010 }, { 10946, 0x0000 }, { 10946, 0x0000 }, { 10946, 0x0000 },\n  /* 0x21440 */\n  { 10946, 0x0000 }, { 10946, 0x0000 }, { 10946, 0x6000 }, { 10948, 0x0000 },\n  /* 0x215C0 */\n  { 10948, 0x0000 }, { 10948, 0x0080 }, { 10949, 0x0000 }, { 10949, 0x0000 },\n  /* 0x21640 */\n  { 10949, 0x0080 }, { 10950, 0x0000 }, { 10950, 0x0000 }, { 10950, 0x0000 },\n  /* 0x21680 */\n  { 10950, 0x0000 }, { 10950, 0x0000 }, { 10950, 0x0000 }, { 10950, 0x0010 },\n  /* 0x21700 */\n  { 10951, 0x0040 }, { 10952, 0x0000 }, { 10952, 0x0000 }, { 10952, 0x0000 },\n  /* 0x21740 */\n  { 10952, 0x0004 }, { 10953, 0x0000 }, { 10953, 0x0000 }, { 10953, 0x0000 },\n  /* 0x21880 */\n  { 10953, 0x0000 }, { 10953, 0x0000 }, { 10953, 0x0000 }, { 10953, 0x2000 },\n  /* 0x219C0 */\n  { 10954, 0x0008 }, { 10955, 0x0000 }, { 10955, 0x0000 }, { 10955, 0x0000 },\n  /* 0x21C40 */\n  { 10955, 0x0000 }, { 10955, 0x0040 }, { 10956, 0x0000 }, { 10956, 0x0000 },\n  /* 0x21D00 */\n  { 10956, 0x0000 }, { 10956, 0x0000 }, { 10956, 0x2000 }, { 10957, 0x0000 },\n  /* 0x21D40 */\n  { 10957, 0x0020 }, { 10958, 0x0000 }, { 10958, 0x0004 }, { 10959, 0x0100 },\n  /* 0x21D80 */\n  { 10960, 0x0000 }, { 10960, 0x1004 }, { 10962, 0x0002 }, { 10963, 0x0080 },\n  /* 0x21DC0 */\n  { 10964, 0x0000 }, { 10964, 0x0000 }, { 10964, 0x0001 }, { 10965, 0x0000 },\n  /* 0x21E00 */\n  { 10965, 0x0000 }, { 10965, 0x0000 }, { 10965, 0x0000 }, { 10965, 0x0018 },\n  /* 0x21F00 */\n  { 10967, 0x0000 }, { 10967, 0x4000 }, { 10968, 0x0000 }, { 10968, 0x0000 },\n  /* 0x21F40 */\n  { 10968, 0x0000 }, { 10968, 0x0000 }, { 10968, 0x0000 }, { 10968, 0x0040 },\n  /* 0x21FC0 */\n  { 10969, 0x0000 }, { 10969, 0x0000 }, { 10969, 0x0000 }, { 10969, 0x0400 },\n  /* 0x22140 */\n  { 10970, 0x0000 }, { 10970, 0x0000 }, { 10970, 0x0000 }, { 10970, 0x0800 },\n  /* 0x22200 */\n  { 10971, 0x0000 }, { 10971, 0x0100 }, { 10972, 0x0000 }, { 10972, 0x0000 },\n  /* 0x22300 */\n  { 10972, 0x0000 }, { 10972, 0x4000 }, { 10973, 0x0000 }, { 10973, 0x0000 },\n  /* 0x22380 */\n  { 10973, 0x0000 }, { 10973, 0x0000 }, { 10973, 0x2000 }, { 10974, 0x0000 },\n  /* 0x226C0 */\n  { 10974, 0x0000 }, { 10974, 0x0000 }, { 10974, 0x0000 }, { 10974, 0x0008 },\n  /* 0x22840 */\n  { 10975, 0x0000 }, { 10975, 0x0800 }, { 10976, 0x0000 }, { 10976, 0x0000 },\n  /* 0x22880 */\n  { 10976, 0x0000 }, { 10976, 0x0000 }, { 10976, 0x0800 }, { 10977, 0x0000 },\n  /* 0x22980 */\n  { 10977, 0x8000 }, { 10978, 0x0000 }, { 10978, 0x0000 }, { 10978, 0x0000 },\n  /* 0x22A80 */\n  { 10978, 0x0000 }, { 10978, 0x0000 }, { 10978, 0x0000 }, { 10978, 0x0100 },\n  /* 0x22B40 */\n  { 10979, 0x8040 }, { 10981, 0x0001 }, { 10982, 0x0000 }, { 10982, 0x0000 },\n  /* 0x22B80 */\n  { 10982, 0x0000 }, { 10982, 0x0000 }, { 10982, 0x0040 }, { 10983, 0x0000 },\n  /* 0x22C00 */\n  { 10983, 0x0000 }, { 10983, 0x2000 }, { 10984, 0x0010 }, { 10985, 0x0000 },\n  /* 0x22DC0 */\n  { 10985, 0x0000 }, { 10985, 0x0000 }, { 10985, 0x0002 }, { 10986, 0x0000 },\n  /* 0x23180 */\n  { 10986, 0x0000 }, { 10986, 0x0000 }, { 10986, 0x0000 }, { 10986, 0x0040 },\n  /* 0x231C0 */\n  { 10987, 0x0018 }, { 10989, 0x0000 }, { 10989, 0x0000 }, { 10989, 0x0020 },\n  /* 0x23340 */\n  { 10990, 0x0000 }, { 10990, 0x0000 }, { 10990, 0x0000 }, { 10990, 0x0004 },\n  /* 0x233C0 */\n  { 10991, 0x0000 }, { 10991, 0x842d }, { 10997, 0x0010 }, { 10998, 0x0000 },\n  /* 0x23440 */\n  { 10998, 0x0c00 }, { 11000, 0x0002 }, { 11001, 0x0020 }, { 11002, 0x0000 },\n  /* 0x234C0 */\n  { 11002, 0x0000 }, { 11002, 0x0000 }, { 11002, 0x0010 }, { 11003, 0x0000 },\n  /* 0x23540 */\n  { 11003, 0x0000 }, { 11003, 0x0400 }, { 11004, 0x0000 }, { 11004, 0x0000 },\n  /* 0x23580 */\n  { 11004, 0x0000 }, { 11004, 0x0010 }, { 11005, 0x0000 }, { 11005, 0x0000 },\n  /* 0x235C0 */\n  { 11005, 0x0010 }, { 11006, 0x0000 }, { 11006, 0x0000 }, { 11006, 0x0000 },\n  /* 0x23600 */\n  { 11006, 0x0000 }, { 11006, 0x0000 }, { 11006, 0x0000 }, { 11006, 0x0700 },\n  /* 0x23640 */\n  { 11009, 0x0080 }, { 11010, 0x0000 }, { 11010, 0x0000 }, { 11010, 0x0000 },\n  /* 0x23700 */\n  { 11010, 0x1000 }, { 11011, 0x1000 }, { 11012, 0x0000 }, { 11012, 0x8000 },\n  /* 0x23740 */\n  { 11013, 0x0000 }, { 11013, 0x0000 }, { 11013, 0x0018 }, { 11015, 0x0000 },\n  /* 0x237C0 */\n  { 11015, 0x0000 }, { 11015, 0x0000 }, { 11015, 0x0080 }, { 11016, 0x8000 },\n  /* 0x23800 */\n  { 11017, 0x0000 }, { 11017, 0x0000 }, { 11017, 0x0010 }, { 11018, 0x2000 },\n  /* 0x23A80 */\n  { 11019, 0x0000 }, { 11019, 0x0100 }, { 11020, 0x0000 }, { 11020, 0x0000 },\n  /* 0x23C40 */\n  { 11020, 0x0000 }, { 11020, 0x0000 }, { 11020, 0x0000 }, { 11020, 0x8000 },\n  /* 0x23CC0 */\n  { 11021, 0x0000 }, { 11021, 0x0000 }, { 11021, 0x0000 }, { 11021, 0x4000 },\n  /* 0x23D00 */\n  { 11022, 0x4001 }, { 11024, 0x0000 }, { 11024, 0x0000 }, { 11024, 0x0000 },\n  /* 0x23D40 */\n  { 11024, 0x0001 }, { 11025, 0x0000 }, { 11025, 0x0000 }, { 11025, 0x0000 },\n  /* 0x23DC0 */\n  { 11025, 0x0000 }, { 11025, 0x0008 }, { 11026, 0x0000 }, { 11026, 0x0600 },\n  /* 0x23F40 */\n  { 11028, 0x0000 }, { 11028, 0x0000 }, { 11028, 0x0000 }, { 11028, 0x4000 },\n  /* 0x24080 */\n  { 11029, 0x0000 }, { 11029, 0x0040 }, { 11030, 0x0000 }, { 11030, 0x0000 },\n  /* 0x24100 */\n  { 11030, 0x0008 }, { 11031, 0x0000 }, { 11031, 0x0000 }, { 11031, 0x0000 },\n  /* 0x241C0 */\n  { 11031, 0x0040 }, { 11032, 0x0000 }, { 11032, 0x0000 }, { 11032, 0x4000 },\n  /* 0x24380 */\n  { 11033, 0x0000 }, { 11033, 0x0000 }, { 11033, 0x0000 }, { 11033, 0x1000 },\n  /* 0x24600 */\n  { 11034, 0x0000 }, { 11034, 0x0000 }, { 11034, 0x0200 }, { 11035, 0x0000 },\n  /* 0x24680 */\n  { 11035, 0x0000 }, { 11035, 0x0000 }, { 11035, 0x0020 }, { 11036, 0x0000 },\n  /* 0x247C0 */\n  { 11036, 0x0000 }, { 11036, 0x0000 }, { 11036, 0x0000 }, { 11036, 0x0002 },\n  /* 0x24880 */\n  { 11037, 0x0000 }, { 11037, 0x0040 }, { 11038, 0x0000 }, { 11038, 0x0000 },\n  /* 0x24A40 */\n  { 11038, 0x2000 }, { 11039, 0x0000 }, { 11039, 0x0000 }, { 11039, 0x0000 },\n  /* 0x24B40 */\n  { 11039, 0x0000 }, { 11039, 0x0040 }, { 11040, 0x8000 }, { 11041, 0x0000 },\n  /* 0x24C00 */\n  { 11041, 0x0000 }, { 11041, 0x0040 }, { 11042, 0x0000 }, { 11042, 0x0000 },\n  /* 0x24D00 */\n  { 11042, 0x0000 }, { 11042, 0x0010 }, { 11043, 0x0000 }, { 11043, 0x0000 },\n  /* 0x24E00 */\n  { 11043, 0x4000 }, { 11044, 0x0000 }, { 11044, 0x0000 }, { 11044, 0x0080 },\n  /* 0x24E40 */\n  { 11045, 0x0000 }, { 11045, 0x0000 }, { 11045, 0x0400 }, { 11046, 0x0000 },\n  /* 0x24E80 */\n  { 11046, 0x0800 }, { 11047, 0x0000 }, { 11047, 0x0000 }, { 11047, 0x0000 },\n  /* 0x25040 */\n  { 11047, 0x0400 }, { 11048, 0x0020 }, { 11049, 0x0000 }, { 11049, 0x0000 },\n  /* 0x25100 */\n  { 11049, 0x0000 }, { 11049, 0x0000 }, { 11049, 0x0004 }, { 11050, 0x0000 },\n  /* 0x25180 */\n  { 11050, 0x0000 }, { 11050, 0x0000 }, { 11050, 0x0200 }, { 11051, 0x0000 },\n  /* 0x251C0 */\n  { 11051, 0x2000 }, { 11052, 0x0000 }, { 11052, 0x0020 }, { 11053, 0x0000 },\n  /* 0x25200 */\n  { 11053, 0x0000 }, { 11053, 0x4000 }, { 11054, 0x0000 }, { 11054, 0x0000 },\n  /* 0x25240 */\n  { 11054, 0x1000 }, { 11055, 0x0000 }, { 11055, 0x0000 }, { 11055, 0x0000 },\n  /* 0x25400 */\n  { 11055, 0x0000 }, { 11055, 0x0000 }, { 11055, 0x4000 }, { 11056, 0x0000 },\n  /* 0x25480 */\n  { 11056, 0x4000 }, { 11057, 0x0000 }, { 11057, 0x0000 }, { 11057, 0x0000 },\n  /* 0x254C0 */\n  { 11057, 0x0000 }, { 11057, 0x0200 }, { 11058, 0x0000 }, { 11058, 0x0000 },\n  /* 0x25500 */\n  { 11058, 0x4000 }, { 11059, 0x0000 }, { 11059, 0x0000 }, { 11059, 0x0000 },\n  /* 0x25580 */\n  { 11059, 0x0000 }, { 11059, 0x0000 }, { 11059, 0x0080 }, { 11060, 0x0000 },\n  /* 0x25740 */\n  { 11060, 0x0000 }, { 11060, 0x0000 }, { 11060, 0x0000 }, { 11060, 0x0002 },\n  /* 0x25780 */\n  { 11061, 0x0000 }, { 11061, 0x0000 }, { 11061, 0x0200 }, { 11062, 0x0010 },\n  /* 0x259C0 */\n  { 11063, 0x0010 }, { 11064, 0x0010 }, { 11065, 0x0000 }, { 11065, 0x0000 },\n  /* 0x25AC0 */\n  { 11065, 0x0000 }, { 11065, 0x0000 }, { 11065, 0x0018 }, { 11067, 0x0002 },\n  /* 0x25B80 */\n  { 11068, 0x0000 }, { 11068, 0x0000 }, { 11068, 0x0000 }, { 11068, 0x0004 },\n  /* 0x25C40 */\n  { 11069, 0x0800 }, { 11070, 0x0000 }, { 11070, 0x0010 }, { 11071, 0x0000 },\n  /* 0x25D80 */\n  { 11071, 0x0000 }, { 11071, 0x0000 }, { 11071, 0x0002 }, { 11072, 0x0000 },\n  /* 0x25E00 */\n  { 11072, 0x0000 }, { 11072, 0x0000 }, { 11072, 0x4000 }, { 11073, 0x0000 },\n  /* 0x25E40 */\n  { 11073, 0x0000 }, { 11073, 0x0040 }, { 11074, 0x0024 }, { 11076, 0x0000 },\n  /* 0x25EC0 */\n  { 11076, 0x0004 }, { 11077, 0x0100 }, { 11078, 0x0100 }, { 11079, 0x0000 },\n  /* 0x25F00 */\n  { 11079, 0x0000 }, { 11079, 0x0000 }, { 11079, 0x0008 }, { 11080, 0x0000 },\n  /* 0x25F40 */\n  { 11080, 0x0000 }, { 11080, 0x1000 }, { 11081, 0x0000 }, { 11081, 0x0000 },\n  /* 0x25FC0 */\n  { 11081, 0x0000 }, { 11081, 0x0010 }, { 11082, 0x0001 }, { 11083, 0x0800 },\n  /* 0x26000 */\n  { 11084, 0x1000 }, { 11085, 0x0080 }, { 11086, 0x0000 }, { 11086, 0x0000 },\n  /* 0x26040 */\n  { 11086, 0x0000 }, { 11086, 0x0000 }, { 11086, 0x0001 }, { 11087, 0x0000 },\n  /* 0x260C0 */\n  { 11087, 0x0000 }, { 11087, 0x0000 }, { 11087, 0x2000 }, { 11088, 0x0000 },\n  /* 0x26240 */\n  { 11088, 0x0000 }, { 11088, 0x0000 }, { 11088, 0x0000 }, { 11088, 0x0001 },\n  /* 0x26280 */\n  { 11089, 0x0040 }, { 11090, 0x0000 }, { 11090, 0x0000 }, { 11090, 0x0000 },\n  /* 0x26340 */\n  { 11090, 0x1000 }, { 11091, 0x0000 }, { 11091, 0x0000 }, { 11091, 0x0000 },\n  /* 0x26400 */\n  { 11091, 0x0004 }, { 11092, 0x0000 }, { 11092, 0x0000 }, { 11092, 0x0000 },\n  /* 0x26640 */\n  { 11092, 0x0000 }, { 11092, 0x0000 }, { 11092, 0x0000 }, { 11092, 0x4000 },\n  /* 0x26680 */\n  { 11093, 0x0000 }, { 11093, 0x0000 }, { 11093, 0x0000 }, { 11093, 0x0001 },\n  /* 0x26700 */\n  { 11094, 0x0000 }, { 11094, 0x2000 }, { 11095, 0x0000 }, { 11095, 0x0000 },\n  /* 0x268C0 */\n  { 11095, 0x0000 }, { 11095, 0x2000 }, { 11096, 0x0400 }, { 11097, 0x0000 },\n  /* 0x26940 */\n  { 11097, 0x0000 }, { 11097, 0x0002 }, { 11098, 0x8000 }, { 11099, 0x0000 },\n  /* 0x269C0 */\n  { 11099, 0x0000 }, { 11099, 0x2000 }, { 11100, 0x0000 }, { 11100, 0x0000 },\n  /* 0x26A00 */\n  { 11100, 0x0000 }, { 11100, 0x4000 }, { 11101, 0x0000 }, { 11101, 0x0000 },\n  /* 0x26A40 */\n  { 11101, 0x0000 }, { 11101, 0x0100 }, { 11102, 0x0000 }, { 11102, 0x0000 },\n  /* 0x26A80 */\n  { 11102, 0x1000 }, { 11103, 0x0000 }, { 11103, 0x0000 }, { 11103, 0x0080 },\n  /* 0x26AC0 */\n  { 11104, 0x0000 }, { 11104, 0x0000 }, { 11104, 0x0000 }, { 11104, 0x8000 },\n  /* 0x26C00 */\n  { 11105, 0x0000 }, { 11105, 0x0000 }, { 11105, 0x0200 }, { 11106, 0x0000 },\n  /* 0x26C40 */\n  { 11106, 0x0000 }, { 11106, 0x0000 }, { 11106, 0x0000 }, { 11106, 0x0008 },\n  /* 0x26CC0 */\n  { 11107, 0x0000 }, { 11107, 0x2000 }, { 11108, 0x0000 }, { 11108, 0x0000 },\n  /* 0x26E40 */\n  { 11108, 0x0001 }, { 11109, 0x0000 }, { 11109, 0x0020 }, { 11110, 0x0000 },\n  /* 0x26F80 */\n  { 11110, 0x0000 }, { 11110, 0x0010 }, { 11111, 0x0000 }, { 11111, 0x0000 },\n  /* 0x26FC0 */\n  { 11111, 0x0000 }, { 11111, 0x0000 }, { 11111, 0x0000 }, { 11111, 0x01c0 },\n  /* 0x270C0 */\n  { 11114, 0x0000 }, { 11114, 0x0000 }, { 11114, 0x0000 }, { 11114, 0x0010 },\n  /* 0x27100 */\n  { 11115, 0x2000 }, { 11116, 0x0000 }, { 11116, 0x0000 }, { 11116, 0x0200 },\n  /* 0x273C0 */\n  { 11117, 0x0000 }, { 11117, 0x0c00 }, { 11119, 0x0000 }, { 11119, 0x4000 },\n  /* 0x27400 */\n  { 11120, 0x0000 }, { 11120, 0x0001 }, { 11121, 0x0000 }, { 11121, 0x0000 },\n  /* 0x27440 */\n  { 11121, 0x0200 }, { 11122, 0x0000 }, { 11122, 0x0000 }, { 11122, 0x0000 },\n  /* 0x27600 */\n  { 11122, 0x0000 }, { 11122, 0x0030 }, { 11124, 0x0000 }, { 11124, 0x0002 },\n  /* 0x27680 */\n  { 11125, 0x0010 }, { 11126, 0x0008 }, { 11127, 0x0000 }, { 11127, 0x0000 },\n  /* 0x27700 */\n  { 11127, 0x4000 }, { 11128, 0x0000 }, { 11128, 0x0008 }, { 11129, 0x0000 },\n  /* 0x27740 */\n  { 11129, 0x0000 }, { 11129, 0x0004 }, { 11130, 0x0000 }, { 11130, 0x0000 },\n  /* 0x27980 */\n  { 11130, 0x0020 }, { 11131, 0x0000 }, { 11131, 0x0000 }, { 11131, 0x0000 },\n  /* 0x27A80 */\n  { 11131, 0x0010 }, { 11132, 0x0000 }, { 11132, 0x0000 }, { 11132, 0x0000 },\n  /* 0x27B80 */\n  { 11132, 0x0000 }, { 11132, 0x0000 }, { 11132, 0x0000 }, { 11132, 0x4008 },\n  /* 0x27BC0 */\n  { 11134, 0x0080 }, { 11135, 0x0000 }, { 11135, 0x0000 }, { 11135, 0x0000 },\n  /* 0x27C80 */\n  { 11135, 0x0000 }, { 11135, 0x0000 }, { 11135, 0x0000 }, { 11135, 0x0100 },\n  /* 0x27D80 */\n  { 11136, 0x0000 }, { 11136, 0x0000 }, { 11136, 0x0001 }, { 11137, 0x0000 },\n  /* 0x27E00 */\n  { 11137, 0x0000 }, { 11137, 0x0001 }, { 11138, 0x0000 }, { 11138, 0x0000 },\n  /* 0x27F80 */\n  { 11138, 0x0000 }, { 11138, 0x0000 }, { 11138, 0x0000 }, { 11138, 0x0080 },\n  /* 0x28080 */\n  { 11139, 0x0400 }, { 11140, 0x0000 }, { 11140, 0x0000 }, { 11140, 0x0800 },\n  /* 0x28240 */\n  { 11141, 0x0000 }, { 11141, 0x0000 }, { 11141, 0x0000 }, { 11141, 0x0080 },\n  /* 0x28280 */\n  { 11142, 0x0004 }, { 11143, 0x0000 }, { 11143, 0x0000 }, { 11143, 0x0000 },\n  /* 0x282C0 */\n  { 11143, 0x0000 }, { 11143, 0x0000 }, { 11143, 0x0000 }, { 11143, 0x0008 },\n  /* 0x283C0 */\n  { 11144, 0x2000 }, { 11145, 0x0000 }, { 11145, 0x0000 }, { 11145, 0x0000 },\n  /* 0x28400 */\n  { 11145, 0x1000 }, { 11146, 0x0000 }, { 11146, 0x0000 }, { 11146, 0x0000 },\n  /* 0x28440 */\n  { 11146, 0x0000 }, { 11146, 0x0020 }, { 11147, 0x0000 }, { 11147, 0x0000 },\n  /* 0x28540 */\n  { 11147, 0x0000 }, { 11147, 0x0000 }, { 11147, 0x0800 }, { 11148, 0x0000 },\n  /* 0x285C0 */\n  { 11148, 0x0300 }, { 11150, 0x0000 }, { 11150, 0x0000 }, { 11150, 0x0000 },\n  /* 0x286C0 */\n  { 11150, 0x0000 }, { 11150, 0x0080 }, { 11151, 0x0000 }, { 11151, 0x0400 },\n  /* 0x28940 */\n  { 11152, 0x0240 }, { 11154, 0x0000 }, { 11154, 0x0800 }, { 11155, 0x0000 },\n  /* 0x28980 */\n  { 11155, 0x0180 }, { 11157, 0x0000 }, { 11157, 0x0000 }, { 11157, 0x0c00 },\n  /* 0x28A00 */\n  { 11159, 0x0000 }, { 11159, 0x4000 }, { 11160, 0x0200 }, { 11161, 0x0000 },\n  /* 0x28A40 */\n  { 11161, 0x0008 }, { 11162, 0x0000 }, { 11162, 0x0000 }, { 11162, 0x0002 },\n  /* 0x28A80 */\n  { 11163, 0x0000 }, { 11163, 0x0200 }, { 11164, 0x0000 }, { 11164, 0x0000 },\n  /* 0x28AC0 */\n  { 11164, 0x2000 }, { 11165, 0x2000 }, { 11166, 0x0010 }, { 11167, 0x0000 },\n  /* 0x28BC0 */\n  { 11167, 0x0002 }, { 11168, 0x0000 }, { 11168, 0x8000 }, { 11169, 0x0000 },\n  /* 0x28D00 */\n  { 11169, 0x0000 }, { 11169, 0x0001 }, { 11170, 0x0000 }, { 11170, 0x0000 },\n  /* 0x28D40 */\n  { 11170, 0x0000 }, { 11170, 0x0000 }, { 11170, 0x0000 }, { 11170, 0x0002 },\n  /* 0x28DC0 */\n  { 11171, 0x0000 }, { 11171, 0x0000 }, { 11171, 0x0000 }, { 11171, 0x0800 },\n  /* 0x28E00 */\n  { 11172, 0x0000 }, { 11172, 0x8000 }, { 11173, 0x0000 }, { 11173, 0x0040 },\n  /* 0x28E80 */\n  { 11174, 0x0200 }, { 11175, 0x0000 }, { 11175, 0x0000 }, { 11175, 0x0000 },\n  /* 0x28EC0 */\n  { 11175, 0x0000 }, { 11175, 0x0000 }, { 11175, 0x0800 }, { 11176, 0x0000 },\n  /* 0x28F00 */\n  { 11176, 0x0000 }, { 11176, 0x0000 }, { 11176, 0x0000 }, { 11176, 0x0004 },\n  /* 0x28FC0 */\n  { 11177, 0x0000 }, { 11177, 0x0000 }, { 11177, 0x0000 }, { 11177, 0x0100 },\n  /* 0x29280 */\n  { 11178, 0x0000 }, { 11178, 0x0000 }, { 11178, 0x0001 }, { 11179, 0x0002 },\n  /* 0x29480 */\n  { 11180, 0x0000 }, { 11180, 0x0001 }, { 11181, 0x0000 }, { 11181, 0x0000 },\n  /* 0x295C0 */\n  { 11181, 0x8000 }, { 11182, 0x0000 }, { 11182, 0x0000 }, { 11182, 0x0000 },\n  /* 0x29640 */\n  { 11182, 0x0000 }, { 11182, 0x0000 }, { 11182, 0x0000 }, { 11182, 0x8000 },\n  /* 0x296C0 */\n  { 11183, 0x0000 }, { 11183, 0x0000 }, { 11183, 0x0000 }, { 11183, 0x0001 },\n  /* 0x29700 */\n  { 11184, 0x0000 }, { 11184, 0x0200 }, { 11185, 0x0000 }, { 11185, 0x0000 },\n  /* 0x29740 */\n  { 11185, 0x0000 }, { 11185, 0x0001 }, { 11186, 0x0000 }, { 11186, 0x0000 },\n  /* 0x298C0 */\n  { 11186, 0x0040 }, { 11187, 0x0000 }, { 11187, 0x0000 }, { 11187, 0x0000 },\n  /* 0x29A40 */\n  { 11187, 0x0000 }, { 11187, 0x0000 }, { 11187, 0x0000 }, { 11187, 0x0004 },\n  /* 0x29DC0 */\n  { 11188, 0x0000 }, { 11188, 0x0800 }, { 11189, 0x0000 }, { 11189, 0x0000 },\n  /* 0x29E00 */\n  { 11189, 0x0000 }, { 11189, 0x0020 }, { 11190, 0x0000 }, { 11190, 0x2000 },\n  /* 0x29E40 */\n  { 11191, 0x0200 }, { 11192, 0x0000 }, { 11192, 0x0000 }, { 11192, 0x0000 },\n  /* 0x29E80 */\n  { 11192, 0x0400 }, { 11193, 0x0000 }, { 11193, 0x0000 }, { 11193, 0x0000 },\n  /* 0x29EC0 */\n  { 11193, 0x0010 }, { 11194, 0x0800 }, { 11195, 0x0200 }, { 11196, 0x0000 },\n  /* 0x29FC0 */\n  { 11196, 0x4000 }, { 11197, 0x0000 }, { 11197, 0x0000 }, { 11197, 0x0000 },\n  /* 0x2A000 */\n  { 11197, 0x0000 }, { 11197, 0x0400 }, { 11198, 0x8000 }, { 11199, 0x0000 },\n  /* 0x2A080 */\n  { 11199, 0x0004 }, { 11200, 0x0000 }, { 11200, 0x0000 }, { 11200, 0x0000 },\n  /* 0x2A0C0 */\n  { 11200, 0x0000 }, { 11200, 0x0000 }, { 11200, 0x0000 }, { 11200, 0x0200 },\n  /* 0x2A180 */\n  { 11201, 0x0000 }, { 11201, 0x0001 }, { 11202, 0x0000 }, { 11202, 0x0000 },\n  /* 0x2A380 */\n  { 11202, 0x1000 }, { 11203, 0x0000 }, { 11203, 0x0000 }, { 11203, 0x0000 },\n  /* 0x2A400 */\n  { 11203, 0x0000 }, { 11203, 0x0000 }, { 11203, 0x0000 }, { 11203, 0x0080 },\n  /* 0x2A5C0 */\n  { 11204, 0x0000 }, { 11204, 0x0000 }, { 11204, 0x0000 }, { 11204, 0x0002 },\n  /* 0x2A600 */\n  { 11205, 0x0004 }, { 11206, 0x0400 }, { 11207, 0x0000 }, { 11207, 0x0000 },\n  /* 0x2A680 */\n  { 11207, 0x0000 }, { 11207, 0x0000 }, { 11207, 0x0000 }, { 11207, 0x0004 },\n};\n\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic ucs4_t jisx0213_to_ucs4 (unsigned int row, unsigned int col)\n{\n  ucs4_t val;\n\n  if (row >= 0x121 && row <= 0x17e)\n    row -= 289;\n  else if (row == 0x221)\n    row -= 451;\n  else if (row >= 0x223 && row <= 0x225)\n    row -= 452;\n  else if (row == 0x228)\n    row -= 454;\n  else if (row >= 0x22c && row <= 0x22f)\n    row -= 457;\n  else if (row >= 0x26e && row <= 0x27e)\n    row -= 519;\n  else\n    return 0x0000;\n\n  if (col >= 0x21 && col <= 0x7e)\n    col -= 0x21;\n  else\n    return 0x0000;\n\n  val = jisx0213_to_ucs_main[row * 94 + col];\n  val = jisx0213_to_ucs_pagestart[val >> 8] + (val & 0xff);\n  if (val == 0xfffd)\n    val = 0x0000;\n  return val;\n}\n\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic unsigned short ucs4_to_jisx0213 (ucs4_t ucs)\n{\n  if (ucs < (sizeof(jisx0213_from_ucs_level1)/sizeof(jisx0213_from_ucs_level1[0])) << 6) {\n    int index1 = jisx0213_from_ucs_level1[ucs >> 6];\n    if (index1 >= 0) {\n      const Summary16 *summary = &jisx0213_from_ucs_level2_2indx[((index1 << 6) + (ucs & 0x3f)) >> 4];\n      unsigned short used = summary->used;\n      unsigned int i = ucs & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        return jisx0213_from_ucs_level2_data[summary->indx + used];\n      };\n    };\n  }\n  return 0x0000;\n}\n\n#endif /* _JISX0213_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/johab.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2007, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * JOHAB\n */\n\n/*\n   Conversion between JOHAB codes (s1,s2) and KSX1001 codes (c1,c2):\n   Example. (s1,s2) = 0xD931, (c1,c2) = 0x2121.\n            (s1,s2) = 0xDEF1, (c1,c2) = 0x2C71.\n            (s1,s2) = 0xE031, (c1,c2) = 0x4A21.\n            (s1,s2) = 0xF9FE, (c1,c2) = 0x7D7E.\n   0xD9 <= s1 <= 0xDE || 0xE0 <= s1 <= 0xF9,\n   0x31 <= s2 <= 0x7E || 0x91 <= s2 <= 0xFE,\n   0x21 <= c1 <= 0x2C || 0x4A <= c1 <= 0x7D,\n   0x21 <= c2 <= 0x7E.\n   Invariant:\n     94*(s1 < 0xE0 ? 2*s1-0x1B2 : 2*s1-0x197) + (s2 < 0x91 ? s2-0x31 : s2-0x43)\n     = 94*(c1-0x21)+(c2-0x21)\n   Conversion (s1,s2) -> (c1,c2):\n     t1 := (s1 < 0xE0 ? 2*s1-0x1B2 : 2*s1-0x197)\n     t2 := (s2 < 0x91 ? s2-0x31 : s2-0x43)\n     c1 := t1 + (t2 < 0x5E ? 0 : 1) + 0x21\n     c2 := (t2 < 0x5E ? t2 : t2-0x5E) + 0x21\n   Conversion (c1,c2) -> (s1,s2):\n     t := (c1 < 0x4A ? (c1-0x21+0x1B2) : (c1-0x21+0x197))\n     s1 := t >> 1\n     t2 := (t & 1) * 0x5E + (c2 - 0x21)\n     s2 := (t2 < 0x4E ? t2+0x31 : t2+0x43)\n */\n\nstatic int\njohab_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    if (c == 0x5c)\n      *pwc = (ucs4_t) 0x20a9;\n    else\n      *pwc = (ucs4_t) c;\n    return 1;\n  } else if (c < 0xd8) {\n    return johab_hangul_mbtowc(conv,pwc,s,n);\n  } else {\n    unsigned char s1, s2;\n    s1 = c;\n    if ((s1 >= 0xd9 && s1 <= 0xde) || (s1 >= 0xe0 && s1 <= 0xf9)) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      s2 = s[1];\n      if ((s2 >= 0x31 && s2 <= 0x7e) || (s2 >= 0x91 && s2 <= 0xfe)) {\n        /* In KSC 5601, now KS X 1001, the region s1 = 0xDA, 0xA1 <= s2 <= 0xD3\n           contains the 51 Jamo (Hangul letters). But in the Johab encoding,\n           they have been moved to the Hangul section, see\n           johab_hangul_page31. */\n        if (!(s1 == 0xda && (s2 >= 0xa1 && s2 <= 0xd3))) {\n          unsigned char t1 = (s1 < 0xe0 ? 2*(s1-0xd9) : 2*s1-0x197);\n          unsigned char t2 = (s2 < 0x91 ? s2-0x31 : s2-0x43);\n          unsigned char buf[2];\n          buf[0] = t1 + (t2 < 0x5e ? 0 : 1) + 0x21;\n          buf[1] = (t2 < 0x5e ? t2 : t2-0x5e) + 0x21;\n          return ksc5601_mbtowc(conv,pwc,buf,2);\n        }\n      }\n    }\n    return RET_ILSEQ;\n  }\n}\n\nstatic int\njohab_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Try ASCII variation. */\n  if (wc < 0x0080 && wc != 0x005c) {\n    *r = wc;\n    return 1;\n  }\n  if (wc == 0x20a9) {\n    *r = 0x5c;\n    return 1;\n  }\n\n  /* Try JOHAB Hangul table before KSC5601 table, because the KSC5601 table\n     contains some (2350 out of 11172) Hangul syllables (rows 0x30XX..0x48XX),\n     and we want the search to return the JOHAB Hangul table entry. */\n\n  /* Try JOHAB Hangul. */\n  ret = johab_hangul_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = buf[0];\n    r[1] = buf[1];\n    return 2;\n  }\n\n  /* Try KSC5601, now KS X 1001. */\n  ret = ksc5601_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    unsigned char c1, c2;\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    c1 = buf[0];\n    c2 = buf[1];\n    if (((c1 >= 0x21 && c1 <= 0x2c) || (c1 >= 0x4a && c1 <= 0x7d))\n        && (c2 >= 0x21 && c2 <= 0x7e)) {\n      unsigned int t = (c1 < 0x4A ? (c1-0x21+0x1B2) : (c1-0x21+0x197));\n      unsigned char t2 = ((t & 1) ? 0x5e : 0) + (c2 - 0x21);\n      r[0] = t >> 1;\n      r[1] = (t2 < 0x4e ? t2+0x31 : t2+0x43);\n      return 2;\n    }\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/johab_hangul.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * JOHAB Hangul\n *\n * Ken Lunde writes in his \"CJKV Information Processing\" book, p. 114:\n * \"Hangul can be composed of two or three jamo (some jamo are considered\n *  compound). Johab uses 19 initial jamo (consonants), 21 medial jamo (vowels)\n *  and 27 final jamo (consonants; 28 when you include the \"fill\" character\n *  for Hangul containing only two jamo). Multiplying these numbers results in\n *  11172.\"\n *\n * Structure of the Johab encoding (see p. 181-184):\n *   bit 15 = 1\n *   bit 14..10 = initial jamo, only 19+1 out of 32 possible values are used\n *   bit 9..5 = medial jamo, only 21+1 out of 32 possible values are used\n *   bit 4..0 = final jamo, only 27+1 out of 32 possible values are used\n * \n * Structure of the Unicode encoding:\n * grep '^0x\\([8-C]...\\|D[0-7]..\\)' unicode.org-mappings/EASTASIA/KSC/JOHAB.TXT\n * You see that all characters there are marked \"HANGUL LETTER\" or \"HANGUL\n * SYLLABLE\". If you eliminate the \"HANGUL LETTER\"s, the table is sorted\n * in ascending order according to Johab encoding and according to the Unicode\n * encoding. Now look a little more carefully, and you see that the following\n * formula holds:\n *     unicode == 0xAC00\n *                + 21 * 28 * (jamo_initial_index[(johab >> 10) & 31] - 1)\n *                + 28 * (jamo_medial_index[(johab >> 5) & 31] - 1)\n *                + jamo_final_index[johab & 31]\n * where the index tables are defined as below.\n */\n\n/* Tables mapping 5-bit groups to jamo letters. */\n/* Note that Jamo XX = UHC 0xA4A0+XX = Unicode 0x3130+XX */\n#define NONE 0xfd\n#define FILL 0xff\nstatic const unsigned char jamo_initial[32] = {\n  NONE, FILL, 0x01, 0x02, 0x04, 0x07, 0x08, 0x09,\n  0x11, 0x12, 0x13, 0x15, 0x16, 0x17, 0x18, 0x19,\n  0x1a, 0x1b, 0x1c, 0x1d, 0x1e, NONE, NONE, NONE,\n  NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE,\n};\nstatic const unsigned char jamo_medial[32] = {\n  NONE, NONE, FILL, 0x1f, 0x20, 0x21, 0x22, 0x23,\n  NONE, NONE, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29,\n  NONE, NONE, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  NONE, NONE, 0x30, 0x31, 0x32, 0x33, NONE, NONE,\n};\nstatic const unsigned char jamo_final[32] = {\n  NONE, FILL, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, NONE, 0x12, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, NONE, NONE,\n};\n/* Same as jamo_final, except that it excludes characters already\n   contained in jamo_initial. 11 characters instead of 27. */\nstatic const unsigned char jamo_final_notinitial[32] = {\n  NONE, NONE, NONE, NONE, 0x03, NONE, 0x05, 0x06,\n  NONE, NONE, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, NONE, NONE, NONE, 0x14, NONE, NONE, NONE,\n  NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE,\n};\n\n/* Tables mapping 5-bit groups to packed indices. */\n#define none -1\n#define fill 0\nstatic const signed char jamo_initial_index[32] = {\n  none, fill, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n  0x0f, 0x10, 0x11, 0x12, 0x13, none, none, none,\n  none, none, none, none, none, none, none, none,\n};\nstatic const signed char jamo_medial_index[32] = {\n  none, none, fill, 0x01, 0x02, 0x03, 0x04, 0x05,\n  none, none, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,\n  none, none, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11,\n  none, none, 0x12, 0x13, 0x14, 0x15, none, none,\n};\nstatic const signed char jamo_final_index[32] = {\n  none, fill, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n  0x0f, 0x10, none, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, none, none,\n};\n\nstatic int\njohab_hangul_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x84 && c1 <= 0xd3)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x41 && c2 < 0x7f) || (c2 >= 0x81 && c2 < 0xff)) {\n        unsigned int johab = (c1 << 8) | c2;\n        unsigned int bitspart1 = (johab >> 10) & 31;\n        unsigned int bitspart2 = (johab >> 5) & 31;\n        unsigned int bitspart3 = johab & 31;\n        int index1 = jamo_initial_index[bitspart1];\n        int index2 = jamo_medial_index[bitspart2];\n        int index3 = jamo_final_index[bitspart3];\n        /* Exclude \"none\" values. */\n        if (index1 >= 0 && index2 >= 0 && index3 >= 0) {\n          /* Deal with \"fill\" values in initial or medial position. */\n          if (index1 == fill) {\n            if (index2 == fill) {\n              unsigned char jamo3 = jamo_final_notinitial[bitspart3];\n              if (jamo3 != NONE) {\n                *pwc = (ucs4_t) 0x3130 + jamo3;\n                return 2;\n              }\n            } else if (index3 == fill) {\n              unsigned char jamo2 = jamo_medial[bitspart2];\n              if (jamo2 != NONE && jamo2 != FILL) {\n                *pwc = (ucs4_t) 0x3130 + jamo2;\n                return 2;\n              }\n            }\n            /* Syllables composed only of medial and final don't exist. */\n          } else if (index2 == fill) {\n            if (index3 == fill) {\n              unsigned char jamo1 = jamo_initial[bitspart1];\n              if (jamo1 != NONE && jamo1 != FILL) {\n                *pwc = (ucs4_t) 0x3130 + jamo1;\n                return 2;\n              }\n            }\n            /* Syllables composed only of initial and final don't exist. */\n          } else {\n             /* index1 and index2 are not fill, but index3 may be fill. */\n             /* Nothing more to exclude. All 11172 code points are valid. */\n             *pwc = 0xac00 + ((index1 - 1) * 21 + (index2 - 1)) * 28 + index3;\n             return 2;\n          }\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\n/* 51 Jamo: 19 initial, 21 medial, 11 final not initial. */\nstatic const unsigned short johab_hangul_page31[51] = {\n          0x8841, 0x8c41, 0x8444, 0x9041, 0x8446, 0x8447, 0x9441, /*0x30-0x37*/\n  0x9841, 0x9c41, 0x844a, 0x844b, 0x844c, 0x844d, 0x844e, 0x844f, /*0x38-0x3f*/\n  0x8450, 0xa041, 0xa441, 0xa841, 0x8454, 0xac41, 0xb041, 0xb441, /*0x40-0x47*/\n  0xb841, 0xbc41, 0xc041, 0xc441, 0xc841, 0xcc41, 0xd041, 0x8461, /*0x48-0x4f*/\n  0x8481, 0x84a1, 0x84c1, 0x84e1, 0x8541, 0x8561, 0x8581, 0x85a1, /*0x50-0x57*/\n  0x85c1, 0x85e1, 0x8641, 0x8661, 0x8681, 0x86a1, 0x86c1, 0x86e1, /*0x58-0x5f*/\n  0x8741, 0x8761, 0x8781, 0x87a1,                                 /*0x60-0x67*/\n};\n\n/* Tables mapping packed indices to 5-bit groups. */\n/* index1+1 = jamo_initial_index[bitspart1]  <==>\n   bitspart1 = jamo_initial_index_inverse[index1] */\nstatic const char jamo_initial_index_inverse[19] = {\n              0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14,\n};\n/* index2+1 = jamo_medial_index[bitspart2]  <==>\n   bitspart2 = jamo_medial_index_inverse[index2] */\nstatic const char jamo_medial_index_inverse[21] = {\n                    0x03, 0x04, 0x05, 0x06, 0x07,\n              0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n              0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n              0x1a, 0x1b, 0x1c, 0x1d,\n};\n/* index3 = jamo_final_index[bitspart3]  <==>\n   bitspart3 = jamo_final_index_inverse[index3] */\nstatic const char jamo_final_index_inverse[28] = {\n        0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11,       0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n};\n\nstatic int\njohab_hangul_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    if (wc >= 0x3131 && wc < 0x3164) {\n      unsigned short c = johab_hangul_page31[wc-0x3131];\n      r[0] = (c >> 8); r[1] = (c & 0xff);\n      return 2;\n    } else if (wc >= 0xac00 && wc < 0xd7a4) {\n      unsigned int index1;\n      unsigned int index2;\n      unsigned int index3;\n      unsigned short c;\n      unsigned int tmp = wc - 0xac00;\n      index3 = tmp % 28; tmp = tmp / 28;\n      index2 = tmp % 21; tmp = tmp / 21;\n      index1 = tmp;\n      c = (((((1 << 5)\n              | jamo_initial_index_inverse[index1]) << 5)\n            | jamo_medial_index_inverse[index2]) << 5)\n          | jamo_final_index_inverse[index3];\n      r[0] = (c >> 8); r[1] = (c & 0xff);\n      return 2;\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n\n/*\n * Decomposition of JOHAB Hangul in one to three Johab Jamo elements.\n */\n\n/* Decompose wc into r[0..2], and return the number of resulting Jamo elements.\n   Return RET_ILUNI if decomposition is not possible. */\n\nstatic int johab_hangul_decompose (conv_t conv, ucs4_t* r, ucs4_t wc)\n{\n  unsigned char buf[2];\n  int ret = johab_hangul_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    unsigned int hangul = (buf[0] << 8) | buf[1];\n    unsigned char jamo1 = jamo_initial[(hangul >> 10) & 31];\n    unsigned char jamo2 = jamo_medial[(hangul >> 5) & 31];\n    unsigned char jamo3 = jamo_final[hangul & 31];\n    if ((hangul >> 15) != 1) abort();\n    if (jamo1 != NONE && jamo2 != NONE && jamo3 != NONE) {\n      /* They are not all three == FILL because that would correspond to\n         johab = 0x8441, which doesn't exist. */\n      ucs4_t* p = r;\n      if (jamo1 != FILL)\n        *p++ = 0x3130 + jamo1;\n      if (jamo2 != FILL)\n        *p++ = 0x3130 + jamo2;\n      if (jamo3 != FILL)\n        *p++ = 0x3130 + jamo3;\n      return p-r;\n    }\n  }\n  return RET_ILUNI;\n}\n\n#undef fill\n#undef none\n#undef FILL\n#undef NONE\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/koi8_r.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * KOI8-R\n */\n\n/* Specification: RFC 1489 */\n\nstatic const unsigned short koi8_r_2uni[128] = {\n  /* 0x80 */\n  0x2500, 0x2502, 0x250c, 0x2510, 0x2514, 0x2518, 0x251c, 0x2524,\n  0x252c, 0x2534, 0x253c, 0x2580, 0x2584, 0x2588, 0x258c, 0x2590,\n  /* 0x90 */\n  0x2591, 0x2592, 0x2593, 0x2320, 0x25a0, 0x2219, 0x221a, 0x2248,\n  0x2264, 0x2265, 0x00a0, 0x2321, 0x00b0, 0x00b2, 0x00b7, 0x00f7,\n  /* 0xa0 */\n  0x2550, 0x2551, 0x2552, 0x0451, 0x2553, 0x2554, 0x2555, 0x2556,\n  0x2557, 0x2558, 0x2559, 0x255a, 0x255b, 0x255c, 0x255d, 0x255e,\n  /* 0xb0 */\n  0x255f, 0x2560, 0x2561, 0x0401, 0x2562, 0x2563, 0x2564, 0x2565,\n  0x2566, 0x2567, 0x2568, 0x2569, 0x256a, 0x256b, 0x256c, 0x00a9,\n  /* 0xc0 */\n  0x044e, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433,\n  0x0445, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e,\n  /* 0xd0 */\n  0x043f, 0x044f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432,\n  0x044c, 0x044b, 0x0437, 0x0448, 0x044d, 0x0449, 0x0447, 0x044a,\n  /* 0xe0 */\n  0x042e, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413,\n  0x0425, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e,\n  /* 0xf0 */\n  0x041f, 0x042f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412,\n  0x042c, 0x042b, 0x0417, 0x0428, 0x042d, 0x0429, 0x0427, 0x042a,\n};\n\nstatic int\nkoi8_r_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) koi8_r_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char koi8_r_page00[88] = {\n  0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x9c, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x9e, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9f, /* 0xf0-0xf7 */\n};\nstatic const unsigned char koi8_r_page04[88] = {\n  0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xe1, 0xe2, 0xf7, 0xe7, 0xe4, 0xe5, 0xf6, 0xfa, /* 0x10-0x17 */\n  0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, 0xf0, /* 0x18-0x1f */\n  0xf2, 0xf3, 0xf4, 0xf5, 0xe6, 0xe8, 0xe3, 0xfe, /* 0x20-0x27 */\n  0xfb, 0xfd, 0xff, 0xf9, 0xf8, 0xfc, 0xe0, 0xf1, /* 0x28-0x2f */\n  0xc1, 0xc2, 0xd7, 0xc7, 0xc4, 0xc5, 0xd6, 0xda, /* 0x30-0x37 */\n  0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, /* 0x38-0x3f */\n  0xd2, 0xd3, 0xd4, 0xd5, 0xc6, 0xc8, 0xc3, 0xde, /* 0x40-0x47 */\n  0xdb, 0xdd, 0xdf, 0xd9, 0xd8, 0xdc, 0xc0, 0xd1, /* 0x48-0x4f */\n  0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n};\nstatic const unsigned char koi8_r_page22[80] = {\n  0x00, 0x95, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x98, 0x99, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char koi8_r_page23[8] = {\n  0x93, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char koi8_r_page25[168] = {\n  0x80, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x83, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x85, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x8a, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xa0, 0xa1, 0xa2, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, /* 0x50-0x57 */\n  0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, /* 0x58-0x5f */\n  0xb1, 0xb2, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, /* 0x60-0x67 */\n  0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x8b, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x8d, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x8f, 0x90, 0x91, 0x92, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\nkoi8_r_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00f8)\n    c = koi8_r_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x0458)\n    c = koi8_r_page04[wc-0x0400];\n  else if (wc >= 0x2218 && wc < 0x2268)\n    c = koi8_r_page22[wc-0x2218];\n  else if (wc >= 0x2320 && wc < 0x2328)\n    c = koi8_r_page23[wc-0x2320];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = koi8_r_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/koi8_ru.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * KOI8-RU\n */\n\nstatic const unsigned short koi8_ru_2uni[128] = {\n  /* 0x80 */\n  0x2500, 0x2502, 0x250c, 0x2510, 0x2514, 0x2518, 0x251c, 0x2524,\n  0x252c, 0x2534, 0x253c, 0x2580, 0x2584, 0x2588, 0x258c, 0x2590,\n  /* 0x90 */\n  0x2591, 0x2592, 0x2593, 0x2320, 0x25a0, 0x2219, 0x221a, 0x2248,\n  0x2264, 0x2265, 0x00a0, 0x2321, 0x00b0, 0x00b2, 0x00b7, 0x00f7,\n  /* 0xa0 */\n  0x2550, 0x2551, 0x2552, 0x0451, 0x0454, 0x2554, 0x0456, 0x0457,\n  0x2557, 0x2558, 0x2559, 0x255a, 0x255b, 0x0491, 0x045e, 0x255e,\n  /* 0xb0 */\n  0x255f, 0x2560, 0x2561, 0x0401, 0x0404, 0x2563, 0x0406, 0x0407,\n  0x2566, 0x2567, 0x2568, 0x2569, 0x256a, 0x0490, 0x040e, 0x00a9,\n  /* 0xc0 */\n  0x044e, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433,\n  0x0445, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e,\n  /* 0xd0 */\n  0x043f, 0x044f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432,\n  0x044c, 0x044b, 0x0437, 0x0448, 0x044d, 0x0449, 0x0447, 0x044a,\n  /* 0xe0 */\n  0x042e, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413,\n  0x0425, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e,\n  /* 0xf0 */\n  0x041f, 0x042f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412,\n  0x042c, 0x042b, 0x0417, 0x0428, 0x042d, 0x0429, 0x0427, 0x042a,\n};\n\nstatic int\nkoi8_ru_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) koi8_ru_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char koi8_ru_page00[88] = {\n  0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x9c, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x9e, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9f, /* 0xf0-0xf7 */\n};\nstatic const unsigned char koi8_ru_page04[152] = {\n  0x00, 0xb3, 0x00, 0x00, 0xb4, 0x00, 0xb6, 0xb7, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbe, 0x00, /* 0x08-0x0f */\n  0xe1, 0xe2, 0xf7, 0xe7, 0xe4, 0xe5, 0xf6, 0xfa, /* 0x10-0x17 */\n  0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, 0xf0, /* 0x18-0x1f */\n  0xf2, 0xf3, 0xf4, 0xf5, 0xe6, 0xe8, 0xe3, 0xfe, /* 0x20-0x27 */\n  0xfb, 0xfd, 0xff, 0xf9, 0xf8, 0xfc, 0xe0, 0xf1, /* 0x28-0x2f */\n  0xc1, 0xc2, 0xd7, 0xc7, 0xc4, 0xc5, 0xd6, 0xda, /* 0x30-0x37 */\n  0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, /* 0x38-0x3f */\n  0xd2, 0xd3, 0xd4, 0xd5, 0xc6, 0xc8, 0xc3, 0xde, /* 0x40-0x47 */\n  0xdb, 0xdd, 0xdf, 0xd9, 0xd8, 0xdc, 0xc0, 0xd1, /* 0x48-0x4f */\n  0x00, 0xa3, 0x00, 0x00, 0xa4, 0x00, 0xa6, 0xa7, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xbd, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char koi8_ru_page22[80] = {\n  0x00, 0x95, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x98, 0x99, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char koi8_ru_page23[8] = {\n  0x93, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char koi8_ru_page25[168] = {\n  0x80, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x83, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x85, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x8a, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xa0, 0xa1, 0xa2, 0x00, 0xa5, 0x00, 0x00, 0xa8, /* 0x50-0x57 */\n  0xa9, 0xaa, 0xab, 0xac, 0x00, 0x00, 0xaf, 0xb0, /* 0x58-0x5f */\n  0xb1, 0xb2, 0x00, 0xb5, 0x00, 0x00, 0xb8, 0xb9, /* 0x60-0x67 */\n  0xba, 0xbb, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x8b, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x8d, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x8f, 0x90, 0x91, 0x92, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\nkoi8_ru_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00f8)\n    c = koi8_ru_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x0498)\n    c = koi8_ru_page04[wc-0x0400];\n  else if (wc >= 0x2218 && wc < 0x2268)\n    c = koi8_ru_page22[wc-0x2218];\n  else if (wc >= 0x2320 && wc < 0x2328)\n    c = koi8_ru_page23[wc-0x2320];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = koi8_ru_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/koi8_t.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * KOI8-T\n */\n\nstatic const unsigned short koi8_t_2uni[128] = {\n  /* 0x80 */\n  0x049b, 0x0493, 0x201a, 0x0492, 0x201e, 0x2026, 0x2020, 0x2021,\n  0xfffd, 0x2030, 0x04b3, 0x2039, 0x04b2, 0x04b7, 0x04b6, 0xfffd,\n  /* 0x90 */\n  0x049a, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0xfffd, 0x2122, 0xfffd, 0x203a, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xa0 */\n  0xfffd, 0x04ef, 0x04ee, 0x0451, 0x00a4, 0x04e3, 0x00a6, 0x00a7,\n  0xfffd, 0xfffd, 0xfffd, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0xfffd,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x00b2, 0x0401, 0xfffd, 0x04e2, 0x00b6, 0x00b7,\n  0xfffd, 0x2116, 0xfffd, 0x00bb, 0xfffd, 0xfffd, 0xfffd, 0x00a9,\n  /* 0xc0 */\n  0x044e, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433,\n  0x0445, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e,\n  /* 0xd0 */\n  0x043f, 0x044f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432,\n  0x044c, 0x044b, 0x0437, 0x0448, 0x044d, 0x0449, 0x0447, 0x044a,\n  /* 0xe0 */\n  0x042e, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413,\n  0x0425, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e,\n  /* 0xf0 */\n  0x041f, 0x042f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412,\n  0x042c, 0x042b, 0x0417, 0x0428, 0x042d, 0x0429, 0x0427, 0x042a,\n};\n\nstatic int\nkoi8_t_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = koi8_t_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char koi8_t_page00[32] = {\n  0x00, 0x00, 0x00, 0x00, 0xa4, 0x00, 0xa6, 0xa7, /* 0xa0-0xa7 */\n  0x00, 0xbf, 0x00, 0xab, 0xac, 0xad, 0xae, 0x00, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char koi8_t_page04[240] = {\n  0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xe1, 0xe2, 0xf7, 0xe7, 0xe4, 0xe5, 0xf6, 0xfa, /* 0x10-0x17 */\n  0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, 0xf0, /* 0x18-0x1f */\n  0xf2, 0xf3, 0xf4, 0xf5, 0xe6, 0xe8, 0xe3, 0xfe, /* 0x20-0x27 */\n  0xfb, 0xfd, 0xff, 0xf9, 0xf8, 0xfc, 0xe0, 0xf1, /* 0x28-0x2f */\n  0xc1, 0xc2, 0xd7, 0xc7, 0xc4, 0xc5, 0xd6, 0xda, /* 0x30-0x37 */\n  0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, /* 0x38-0x3f */\n  0xd2, 0xd3, 0xd4, 0xd5, 0xc6, 0xc8, 0xc3, 0xde, /* 0x40-0x47 */\n  0xdb, 0xdd, 0xdf, 0xd9, 0xd8, 0xdc, 0xc0, 0xd1, /* 0x48-0x4f */\n  0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x83, 0x81, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x90, 0x80, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x8c, 0x8a, 0x00, 0x00, 0x8e, 0x8d, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0xb5, 0xa5, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa2, 0xa1, /* 0xe8-0xef */\n};\nstatic const unsigned char koi8_t_page20[48] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\nstatic const unsigned char koi8_t_page21[24] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\n\nstatic int\nkoi8_t_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = koi8_t_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x04f0)\n    c = koi8_t_page04[wc-0x0400];\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = koi8_t_page20[wc-0x2010];\n  else if (wc >= 0x2110 && wc < 0x2128)\n    c = koi8_t_page21[wc-0x2110];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/koi8_u.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * KOI8-U\n */\n\n/* Specification: RFC 2319 */\n\nstatic const unsigned short koi8_u_2uni[128] = {\n  /* 0x80 */\n  0x2500, 0x2502, 0x250c, 0x2510, 0x2514, 0x2518, 0x251c, 0x2524,\n  0x252c, 0x2534, 0x253c, 0x2580, 0x2584, 0x2588, 0x258c, 0x2590,\n  /* 0x90 */\n  0x2591, 0x2592, 0x2593, 0x2320, 0x25a0, 0x2219, 0x221a, 0x2248,\n  0x2264, 0x2265, 0x00a0, 0x2321, 0x00b0, 0x00b2, 0x00b7, 0x00f7,\n  /* 0xa0 */\n  0x2550, 0x2551, 0x2552, 0x0451, 0x0454, 0x2554, 0x0456, 0x0457,\n  0x2557, 0x2558, 0x2559, 0x255a, 0x255b, 0x0491, 0x255d, 0x255e,\n  /* 0xb0 */\n  0x255f, 0x2560, 0x2561, 0x0401, 0x0404, 0x2563, 0x0406, 0x0407,\n  0x2566, 0x2567, 0x2568, 0x2569, 0x256a, 0x0490, 0x256c, 0x00a9,\n  /* 0xc0 */\n  0x044e, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433,\n  0x0445, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e,\n  /* 0xd0 */\n  0x043f, 0x044f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432,\n  0x044c, 0x044b, 0x0437, 0x0448, 0x044d, 0x0449, 0x0447, 0x044a,\n  /* 0xe0 */\n  0x042e, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413,\n  0x0425, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e,\n  /* 0xf0 */\n  0x041f, 0x042f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412,\n  0x042c, 0x042b, 0x0417, 0x0428, 0x042d, 0x0429, 0x0427, 0x042a,\n};\n\nstatic int\nkoi8_u_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) koi8_u_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char koi8_u_page00[88] = {\n  0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x9c, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x9e, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9f, /* 0xf0-0xf7 */\n};\nstatic const unsigned char koi8_u_page04[152] = {\n  0x00, 0xb3, 0x00, 0x00, 0xb4, 0x00, 0xb6, 0xb7, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xe1, 0xe2, 0xf7, 0xe7, 0xe4, 0xe5, 0xf6, 0xfa, /* 0x10-0x17 */\n  0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, 0xf0, /* 0x18-0x1f */\n  0xf2, 0xf3, 0xf4, 0xf5, 0xe6, 0xe8, 0xe3, 0xfe, /* 0x20-0x27 */\n  0xfb, 0xfd, 0xff, 0xf9, 0xf8, 0xfc, 0xe0, 0xf1, /* 0x28-0x2f */\n  0xc1, 0xc2, 0xd7, 0xc7, 0xc4, 0xc5, 0xd6, 0xda, /* 0x30-0x37 */\n  0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, /* 0x38-0x3f */\n  0xd2, 0xd3, 0xd4, 0xd5, 0xc6, 0xc8, 0xc3, 0xde, /* 0x40-0x47 */\n  0xdb, 0xdd, 0xdf, 0xd9, 0xd8, 0xdc, 0xc0, 0xd1, /* 0x48-0x4f */\n  0x00, 0xa3, 0x00, 0x00, 0xa4, 0x00, 0xa6, 0xa7, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xbd, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char koi8_u_page22[80] = {\n  0x00, 0x95, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x98, 0x99, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char koi8_u_page23[8] = {\n  0x93, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char koi8_u_page25[168] = {\n  0x80, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x83, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x85, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x8a, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0xa0, 0xa1, 0xa2, 0x00, 0xa5, 0x00, 0x00, 0xa8, /* 0x50-0x57 */\n  0xa9, 0xaa, 0xab, 0xac, 0x00, 0xae, 0xaf, 0xb0, /* 0x58-0x5f */\n  0xb1, 0xb2, 0x00, 0xb5, 0x00, 0x00, 0xb8, 0xb9, /* 0x60-0x67 */\n  0xba, 0xbb, 0xbc, 0x00, 0xbe, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x8b, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x8d, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x8f, 0x90, 0x91, 0x92, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n};\n\nstatic int\nkoi8_u_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00f8)\n    c = koi8_u_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x0498)\n    c = koi8_u_page04[wc-0x0400];\n  else if (wc >= 0x2218 && wc < 0x2268)\n    c = koi8_u_page22[wc-0x2218];\n  else if (wc >= 0x2320 && wc < 0x2328)\n    c = koi8_u_page23[wc-0x2320];\n  else if (wc >= 0x2500 && wc < 0x25a8)\n    c = koi8_u_page25[wc-0x2500];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ksc5601.h",
    "content": "/*\n * Copyright (C) 1999-2007, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * KSC5601.1987-0, now KS X 1001:2002\n */\n\nstatic const unsigned short ksc5601_2uni_page21[1115] = {\n  /* 0x21 */\n  0x3000, 0x3001, 0x3002, 0x00b7, 0x2025, 0x2026, 0x00a8, 0x3003,\n  0x00ad, 0x2015, 0x2225, 0xff3c, 0x223c, 0x2018, 0x2019, 0x201c,\n  0x201d, 0x3014, 0x3015, 0x3008, 0x3009, 0x300a, 0x300b, 0x300c,\n  0x300d, 0x300e, 0x300f, 0x3010, 0x3011, 0x00b1, 0x00d7, 0x00f7,\n  0x2260, 0x2264, 0x2265, 0x221e, 0x2234, 0x00b0, 0x2032, 0x2033,\n  0x2103, 0x212b, 0xffe0, 0xffe1, 0xffe5, 0x2642, 0x2640, 0x2220,\n  0x22a5, 0x2312, 0x2202, 0x2207, 0x2261, 0x2252, 0x00a7, 0x203b,\n  0x2606, 0x2605, 0x25cb, 0x25cf, 0x25ce, 0x25c7, 0x25c6, 0x25a1,\n  0x25a0, 0x25b3, 0x25b2, 0x25bd, 0x25bc, 0x2192, 0x2190, 0x2191,\n  0x2193, 0x2194, 0x3013, 0x226a, 0x226b, 0x221a, 0x223d, 0x221d,\n  0x2235, 0x222b, 0x222c, 0x2208, 0x220b, 0x2286, 0x2287, 0x2282,\n  0x2283, 0x222a, 0x2229, 0x2227, 0x2228, 0xffe2,\n  /* 0x22 */\n  0x21d2, 0x21d4, 0x2200, 0x2203, 0x00b4, 0xff5e, 0x02c7, 0x02d8,\n  0x02dd, 0x02da, 0x02d9, 0x00b8, 0x02db, 0x00a1, 0x00bf, 0x02d0,\n  0x222e, 0x2211, 0x220f, 0x00a4, 0x2109, 0x2030, 0x25c1, 0x25c0,\n  0x25b7, 0x25b6, 0x2664, 0x2660, 0x2661, 0x2665, 0x2667, 0x2663,\n  0x2299, 0x25c8, 0x25a3, 0x25d0, 0x25d1, 0x2592, 0x25a4, 0x25a5,\n  0x25a8, 0x25a7, 0x25a6, 0x25a9, 0x2668, 0x260f, 0x260e, 0x261c,\n  0x261e, 0x00b6, 0x2020, 0x2021, 0x2195, 0x2197, 0x2199, 0x2196,\n  0x2198, 0x266d, 0x2669, 0x266a, 0x266c, 0x327f, 0x321c, 0x2116,\n  0x33c7, 0x2122, 0x33c2, 0x33d8, 0x2121, 0x20ac, 0x00ae, 0x327e,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x23 */\n  0xff01, 0xff02, 0xff03, 0xff04, 0xff05, 0xff06, 0xff07, 0xff08,\n  0xff09, 0xff0a, 0xff0b, 0xff0c, 0xff0d, 0xff0e, 0xff0f, 0xff10,\n  0xff11, 0xff12, 0xff13, 0xff14, 0xff15, 0xff16, 0xff17, 0xff18,\n  0xff19, 0xff1a, 0xff1b, 0xff1c, 0xff1d, 0xff1e, 0xff1f, 0xff20,\n  0xff21, 0xff22, 0xff23, 0xff24, 0xff25, 0xff26, 0xff27, 0xff28,\n  0xff29, 0xff2a, 0xff2b, 0xff2c, 0xff2d, 0xff2e, 0xff2f, 0xff30,\n  0xff31, 0xff32, 0xff33, 0xff34, 0xff35, 0xff36, 0xff37, 0xff38,\n  0xff39, 0xff3a, 0xff3b, 0xffe6, 0xff3d, 0xff3e, 0xff3f, 0xff40,\n  0xff41, 0xff42, 0xff43, 0xff44, 0xff45, 0xff46, 0xff47, 0xff48,\n  0xff49, 0xff4a, 0xff4b, 0xff4c, 0xff4d, 0xff4e, 0xff4f, 0xff50,\n  0xff51, 0xff52, 0xff53, 0xff54, 0xff55, 0xff56, 0xff57, 0xff58,\n  0xff59, 0xff5a, 0xff5b, 0xff5c, 0xff5d, 0xffe3,\n  /* 0x24 */\n  0x3131, 0x3132, 0x3133, 0x3134, 0x3135, 0x3136, 0x3137, 0x3138,\n  0x3139, 0x313a, 0x313b, 0x313c, 0x313d, 0x313e, 0x313f, 0x3140,\n  0x3141, 0x3142, 0x3143, 0x3144, 0x3145, 0x3146, 0x3147, 0x3148,\n  0x3149, 0x314a, 0x314b, 0x314c, 0x314d, 0x314e, 0x314f, 0x3150,\n  0x3151, 0x3152, 0x3153, 0x3154, 0x3155, 0x3156, 0x3157, 0x3158,\n  0x3159, 0x315a, 0x315b, 0x315c, 0x315d, 0x315e, 0x315f, 0x3160,\n  0x3161, 0x3162, 0x3163, 0x3164, 0x3165, 0x3166, 0x3167, 0x3168,\n  0x3169, 0x316a, 0x316b, 0x316c, 0x316d, 0x316e, 0x316f, 0x3170,\n  0x3171, 0x3172, 0x3173, 0x3174, 0x3175, 0x3176, 0x3177, 0x3178,\n  0x3179, 0x317a, 0x317b, 0x317c, 0x317d, 0x317e, 0x317f, 0x3180,\n  0x3181, 0x3182, 0x3183, 0x3184, 0x3185, 0x3186, 0x3187, 0x3188,\n  0x3189, 0x318a, 0x318b, 0x318c, 0x318d, 0x318e,\n  /* 0x25 */\n  0x2170, 0x2171, 0x2172, 0x2173, 0x2174, 0x2175, 0x2176, 0x2177,\n  0x2178, 0x2179, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x2160,\n  0x2161, 0x2162, 0x2163, 0x2164, 0x2165, 0x2166, 0x2167, 0x2168,\n  0x2169, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396, 0x0397, 0x0398,\n  0x0399, 0x039a, 0x039b, 0x039c, 0x039d, 0x039e, 0x039f, 0x03a0,\n  0x03a1, 0x03a3, 0x03a4, 0x03a5, 0x03a6, 0x03a7, 0x03a8, 0x03a9,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7, 0x03b8,\n  0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf, 0x03c0,\n  0x03c1, 0x03c3, 0x03c4, 0x03c5, 0x03c6, 0x03c7, 0x03c8, 0x03c9,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x26 */\n  0x2500, 0x2502, 0x250c, 0x2510, 0x2518, 0x2514, 0x251c, 0x252c,\n  0x2524, 0x2534, 0x253c, 0x2501, 0x2503, 0x250f, 0x2513, 0x251b,\n  0x2517, 0x2523, 0x2533, 0x252b, 0x253b, 0x254b, 0x2520, 0x252f,\n  0x2528, 0x2537, 0x253f, 0x251d, 0x2530, 0x2525, 0x2538, 0x2542,\n  0x2512, 0x2511, 0x251a, 0x2519, 0x2516, 0x2515, 0x250e, 0x250d,\n  0x251e, 0x251f, 0x2521, 0x2522, 0x2526, 0x2527, 0x2529, 0x252a,\n  0x252d, 0x252e, 0x2531, 0x2532, 0x2535, 0x2536, 0x2539, 0x253a,\n  0x253d, 0x253e, 0x2540, 0x2541, 0x2543, 0x2544, 0x2545, 0x2546,\n  0x2547, 0x2548, 0x2549, 0x254a, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x27 */\n  0x3395, 0x3396, 0x3397, 0x2113, 0x3398, 0x33c4, 0x33a3, 0x33a4,\n  0x33a5, 0x33a6, 0x3399, 0x339a, 0x339b, 0x339c, 0x339d, 0x339e,\n  0x339f, 0x33a0, 0x33a1, 0x33a2, 0x33ca, 0x338d, 0x338e, 0x338f,\n  0x33cf, 0x3388, 0x3389, 0x33c8, 0x33a7, 0x33a8, 0x33b0, 0x33b1,\n  0x33b2, 0x33b3, 0x33b4, 0x33b5, 0x33b6, 0x33b7, 0x33b8, 0x33b9,\n  0x3380, 0x3381, 0x3382, 0x3383, 0x3384, 0x33ba, 0x33bb, 0x33bc,\n  0x33bd, 0x33be, 0x33bf, 0x3390, 0x3391, 0x3392, 0x3393, 0x3394,\n  0x2126, 0x33c0, 0x33c1, 0x338a, 0x338b, 0x338c, 0x33d6, 0x33c5,\n  0x33ad, 0x33ae, 0x33af, 0x33db, 0x33a9, 0x33aa, 0x33ab, 0x33ac,\n  0x33dd, 0x33d0, 0x33d3, 0x33c3, 0x33c9, 0x33dc, 0x33c6, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x28 */\n  0x00c6, 0x00d0, 0x00aa, 0x0126, 0xfffd, 0x0132, 0xfffd, 0x013f,\n  0x0141, 0x00d8, 0x0152, 0x00ba, 0x00de, 0x0166, 0x014a, 0xfffd,\n  0x3260, 0x3261, 0x3262, 0x3263, 0x3264, 0x3265, 0x3266, 0x3267,\n  0x3268, 0x3269, 0x326a, 0x326b, 0x326c, 0x326d, 0x326e, 0x326f,\n  0x3270, 0x3271, 0x3272, 0x3273, 0x3274, 0x3275, 0x3276, 0x3277,\n  0x3278, 0x3279, 0x327a, 0x327b, 0x24d0, 0x24d1, 0x24d2, 0x24d3,\n  0x24d4, 0x24d5, 0x24d6, 0x24d7, 0x24d8, 0x24d9, 0x24da, 0x24db,\n  0x24dc, 0x24dd, 0x24de, 0x24df, 0x24e0, 0x24e1, 0x24e2, 0x24e3,\n  0x24e4, 0x24e5, 0x24e6, 0x24e7, 0x24e8, 0x24e9, 0x2460, 0x2461,\n  0x2462, 0x2463, 0x2464, 0x2465, 0x2466, 0x2467, 0x2468, 0x2469,\n  0x246a, 0x246b, 0x246c, 0x246d, 0x246e, 0x00bd, 0x2153, 0x2154,\n  0x00bc, 0x00be, 0x215b, 0x215c, 0x215d, 0x215e,\n  /* 0x29 */\n  0x00e6, 0x0111, 0x00f0, 0x0127, 0x0131, 0x0133, 0x0138, 0x0140,\n  0x0142, 0x00f8, 0x0153, 0x00df, 0x00fe, 0x0167, 0x014b, 0x0149,\n  0x3200, 0x3201, 0x3202, 0x3203, 0x3204, 0x3205, 0x3206, 0x3207,\n  0x3208, 0x3209, 0x320a, 0x320b, 0x320c, 0x320d, 0x320e, 0x320f,\n  0x3210, 0x3211, 0x3212, 0x3213, 0x3214, 0x3215, 0x3216, 0x3217,\n  0x3218, 0x3219, 0x321a, 0x321b, 0x249c, 0x249d, 0x249e, 0x249f,\n  0x24a0, 0x24a1, 0x24a2, 0x24a3, 0x24a4, 0x24a5, 0x24a6, 0x24a7,\n  0x24a8, 0x24a9, 0x24aa, 0x24ab, 0x24ac, 0x24ad, 0x24ae, 0x24af,\n  0x24b0, 0x24b1, 0x24b2, 0x24b3, 0x24b4, 0x24b5, 0x2474, 0x2475,\n  0x2476, 0x2477, 0x2478, 0x2479, 0x247a, 0x247b, 0x247c, 0x247d,\n  0x247e, 0x247f, 0x2480, 0x2481, 0x2482, 0x00b9, 0x00b2, 0x00b3,\n  0x2074, 0x207f, 0x2081, 0x2082, 0x2083, 0x2084,\n  /* 0x2a */\n  0x3041, 0x3042, 0x3043, 0x3044, 0x3045, 0x3046, 0x3047, 0x3048,\n  0x3049, 0x304a, 0x304b, 0x304c, 0x304d, 0x304e, 0x304f, 0x3050,\n  0x3051, 0x3052, 0x3053, 0x3054, 0x3055, 0x3056, 0x3057, 0x3058,\n  0x3059, 0x305a, 0x305b, 0x305c, 0x305d, 0x305e, 0x305f, 0x3060,\n  0x3061, 0x3062, 0x3063, 0x3064, 0x3065, 0x3066, 0x3067, 0x3068,\n  0x3069, 0x306a, 0x306b, 0x306c, 0x306d, 0x306e, 0x306f, 0x3070,\n  0x3071, 0x3072, 0x3073, 0x3074, 0x3075, 0x3076, 0x3077, 0x3078,\n  0x3079, 0x307a, 0x307b, 0x307c, 0x307d, 0x307e, 0x307f, 0x3080,\n  0x3081, 0x3082, 0x3083, 0x3084, 0x3085, 0x3086, 0x3087, 0x3088,\n  0x3089, 0x308a, 0x308b, 0x308c, 0x308d, 0x308e, 0x308f, 0x3090,\n  0x3091, 0x3092, 0x3093, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x2b */\n  0x30a1, 0x30a2, 0x30a3, 0x30a4, 0x30a5, 0x30a6, 0x30a7, 0x30a8,\n  0x30a9, 0x30aa, 0x30ab, 0x30ac, 0x30ad, 0x30ae, 0x30af, 0x30b0,\n  0x30b1, 0x30b2, 0x30b3, 0x30b4, 0x30b5, 0x30b6, 0x30b7, 0x30b8,\n  0x30b9, 0x30ba, 0x30bb, 0x30bc, 0x30bd, 0x30be, 0x30bf, 0x30c0,\n  0x30c1, 0x30c2, 0x30c3, 0x30c4, 0x30c5, 0x30c6, 0x30c7, 0x30c8,\n  0x30c9, 0x30ca, 0x30cb, 0x30cc, 0x30cd, 0x30ce, 0x30cf, 0x30d0,\n  0x30d1, 0x30d2, 0x30d3, 0x30d4, 0x30d5, 0x30d6, 0x30d7, 0x30d8,\n  0x30d9, 0x30da, 0x30db, 0x30dc, 0x30dd, 0x30de, 0x30df, 0x30e0,\n  0x30e1, 0x30e2, 0x30e3, 0x30e4, 0x30e5, 0x30e6, 0x30e7, 0x30e8,\n  0x30e9, 0x30ea, 0x30eb, 0x30ec, 0x30ed, 0x30ee, 0x30ef, 0x30f0,\n  0x30f1, 0x30f2, 0x30f3, 0x30f4, 0x30f5, 0x30f6, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0x2c */\n  0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0401, 0x0416,\n  0x0417, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e,\n  0x041f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426,\n  0x0427, 0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e,\n  0x042f, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0451, 0x0436,\n  0x0437, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e,\n  0x043f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446,\n  0x0447, 0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e,\n  0x044f,\n};\nstatic const unsigned short ksc5601_2uni_page30[2350] = {\n  /* 0x30 */\n  0xac00, 0xac01, 0xac04, 0xac07, 0xac08, 0xac09, 0xac0a, 0xac10,\n  0xac11, 0xac12, 0xac13, 0xac14, 0xac15, 0xac16, 0xac17, 0xac19,\n  0xac1a, 0xac1b, 0xac1c, 0xac1d, 0xac20, 0xac24, 0xac2c, 0xac2d,\n  0xac2f, 0xac30, 0xac31, 0xac38, 0xac39, 0xac3c, 0xac40, 0xac4b,\n  0xac4d, 0xac54, 0xac58, 0xac5c, 0xac70, 0xac71, 0xac74, 0xac77,\n  0xac78, 0xac7a, 0xac80, 0xac81, 0xac83, 0xac84, 0xac85, 0xac86,\n  0xac89, 0xac8a, 0xac8b, 0xac8c, 0xac90, 0xac94, 0xac9c, 0xac9d,\n  0xac9f, 0xaca0, 0xaca1, 0xaca8, 0xaca9, 0xacaa, 0xacac, 0xacaf,\n  0xacb0, 0xacb8, 0xacb9, 0xacbb, 0xacbc, 0xacbd, 0xacc1, 0xacc4,\n  0xacc8, 0xaccc, 0xacd5, 0xacd7, 0xace0, 0xace1, 0xace4, 0xace7,\n  0xace8, 0xacea, 0xacec, 0xacef, 0xacf0, 0xacf1, 0xacf3, 0xacf5,\n  0xacf6, 0xacfc, 0xacfd, 0xad00, 0xad04, 0xad06,\n  /* 0x31 */\n  0xad0c, 0xad0d, 0xad0f, 0xad11, 0xad18, 0xad1c, 0xad20, 0xad29,\n  0xad2c, 0xad2d, 0xad34, 0xad35, 0xad38, 0xad3c, 0xad44, 0xad45,\n  0xad47, 0xad49, 0xad50, 0xad54, 0xad58, 0xad61, 0xad63, 0xad6c,\n  0xad6d, 0xad70, 0xad73, 0xad74, 0xad75, 0xad76, 0xad7b, 0xad7c,\n  0xad7d, 0xad7f, 0xad81, 0xad82, 0xad88, 0xad89, 0xad8c, 0xad90,\n  0xad9c, 0xad9d, 0xada4, 0xadb7, 0xadc0, 0xadc1, 0xadc4, 0xadc8,\n  0xadd0, 0xadd1, 0xadd3, 0xaddc, 0xade0, 0xade4, 0xadf8, 0xadf9,\n  0xadfc, 0xadff, 0xae00, 0xae01, 0xae08, 0xae09, 0xae0b, 0xae0d,\n  0xae14, 0xae30, 0xae31, 0xae34, 0xae37, 0xae38, 0xae3a, 0xae40,\n  0xae41, 0xae43, 0xae45, 0xae46, 0xae4a, 0xae4c, 0xae4d, 0xae4e,\n  0xae50, 0xae54, 0xae56, 0xae5c, 0xae5d, 0xae5f, 0xae60, 0xae61,\n  0xae65, 0xae68, 0xae69, 0xae6c, 0xae70, 0xae78,\n  /* 0x32 */\n  0xae79, 0xae7b, 0xae7c, 0xae7d, 0xae84, 0xae85, 0xae8c, 0xaebc,\n  0xaebd, 0xaebe, 0xaec0, 0xaec4, 0xaecc, 0xaecd, 0xaecf, 0xaed0,\n  0xaed1, 0xaed8, 0xaed9, 0xaedc, 0xaee8, 0xaeeb, 0xaeed, 0xaef4,\n  0xaef8, 0xaefc, 0xaf07, 0xaf08, 0xaf0d, 0xaf10, 0xaf2c, 0xaf2d,\n  0xaf30, 0xaf32, 0xaf34, 0xaf3c, 0xaf3d, 0xaf3f, 0xaf41, 0xaf42,\n  0xaf43, 0xaf48, 0xaf49, 0xaf50, 0xaf5c, 0xaf5d, 0xaf64, 0xaf65,\n  0xaf79, 0xaf80, 0xaf84, 0xaf88, 0xaf90, 0xaf91, 0xaf95, 0xaf9c,\n  0xafb8, 0xafb9, 0xafbc, 0xafc0, 0xafc7, 0xafc8, 0xafc9, 0xafcb,\n  0xafcd, 0xafce, 0xafd4, 0xafdc, 0xafe8, 0xafe9, 0xaff0, 0xaff1,\n  0xaff4, 0xaff8, 0xb000, 0xb001, 0xb004, 0xb00c, 0xb010, 0xb014,\n  0xb01c, 0xb01d, 0xb028, 0xb044, 0xb045, 0xb048, 0xb04a, 0xb04c,\n  0xb04e, 0xb053, 0xb054, 0xb055, 0xb057, 0xb059,\n  /* 0x33 */\n  0xb05d, 0xb07c, 0xb07d, 0xb080, 0xb084, 0xb08c, 0xb08d, 0xb08f,\n  0xb091, 0xb098, 0xb099, 0xb09a, 0xb09c, 0xb09f, 0xb0a0, 0xb0a1,\n  0xb0a2, 0xb0a8, 0xb0a9, 0xb0ab, 0xb0ac, 0xb0ad, 0xb0ae, 0xb0af,\n  0xb0b1, 0xb0b3, 0xb0b4, 0xb0b5, 0xb0b8, 0xb0bc, 0xb0c4, 0xb0c5,\n  0xb0c7, 0xb0c8, 0xb0c9, 0xb0d0, 0xb0d1, 0xb0d4, 0xb0d8, 0xb0e0,\n  0xb0e5, 0xb108, 0xb109, 0xb10b, 0xb10c, 0xb110, 0xb112, 0xb113,\n  0xb118, 0xb119, 0xb11b, 0xb11c, 0xb11d, 0xb123, 0xb124, 0xb125,\n  0xb128, 0xb12c, 0xb134, 0xb135, 0xb137, 0xb138, 0xb139, 0xb140,\n  0xb141, 0xb144, 0xb148, 0xb150, 0xb151, 0xb154, 0xb155, 0xb158,\n  0xb15c, 0xb160, 0xb178, 0xb179, 0xb17c, 0xb180, 0xb182, 0xb188,\n  0xb189, 0xb18b, 0xb18d, 0xb192, 0xb193, 0xb194, 0xb198, 0xb19c,\n  0xb1a8, 0xb1cc, 0xb1d0, 0xb1d4, 0xb1dc, 0xb1dd,\n  /* 0x34 */\n  0xb1df, 0xb1e8, 0xb1e9, 0xb1ec, 0xb1f0, 0xb1f9, 0xb1fb, 0xb1fd,\n  0xb204, 0xb205, 0xb208, 0xb20b, 0xb20c, 0xb214, 0xb215, 0xb217,\n  0xb219, 0xb220, 0xb234, 0xb23c, 0xb258, 0xb25c, 0xb260, 0xb268,\n  0xb269, 0xb274, 0xb275, 0xb27c, 0xb284, 0xb285, 0xb289, 0xb290,\n  0xb291, 0xb294, 0xb298, 0xb299, 0xb29a, 0xb2a0, 0xb2a1, 0xb2a3,\n  0xb2a5, 0xb2a6, 0xb2aa, 0xb2ac, 0xb2b0, 0xb2b4, 0xb2c8, 0xb2c9,\n  0xb2cc, 0xb2d0, 0xb2d2, 0xb2d8, 0xb2d9, 0xb2db, 0xb2dd, 0xb2e2,\n  0xb2e4, 0xb2e5, 0xb2e6, 0xb2e8, 0xb2eb, 0xb2ec, 0xb2ed, 0xb2ee,\n  0xb2ef, 0xb2f3, 0xb2f4, 0xb2f5, 0xb2f7, 0xb2f8, 0xb2f9, 0xb2fa,\n  0xb2fb, 0xb2ff, 0xb300, 0xb301, 0xb304, 0xb308, 0xb310, 0xb311,\n  0xb313, 0xb314, 0xb315, 0xb31c, 0xb354, 0xb355, 0xb356, 0xb358,\n  0xb35b, 0xb35c, 0xb35e, 0xb35f, 0xb364, 0xb365,\n  /* 0x35 */\n  0xb367, 0xb369, 0xb36b, 0xb36e, 0xb370, 0xb371, 0xb374, 0xb378,\n  0xb380, 0xb381, 0xb383, 0xb384, 0xb385, 0xb38c, 0xb390, 0xb394,\n  0xb3a0, 0xb3a1, 0xb3a8, 0xb3ac, 0xb3c4, 0xb3c5, 0xb3c8, 0xb3cb,\n  0xb3cc, 0xb3ce, 0xb3d0, 0xb3d4, 0xb3d5, 0xb3d7, 0xb3d9, 0xb3db,\n  0xb3dd, 0xb3e0, 0xb3e4, 0xb3e8, 0xb3fc, 0xb410, 0xb418, 0xb41c,\n  0xb420, 0xb428, 0xb429, 0xb42b, 0xb434, 0xb450, 0xb451, 0xb454,\n  0xb458, 0xb460, 0xb461, 0xb463, 0xb465, 0xb46c, 0xb480, 0xb488,\n  0xb49d, 0xb4a4, 0xb4a8, 0xb4ac, 0xb4b5, 0xb4b7, 0xb4b9, 0xb4c0,\n  0xb4c4, 0xb4c8, 0xb4d0, 0xb4d5, 0xb4dc, 0xb4dd, 0xb4e0, 0xb4e3,\n  0xb4e4, 0xb4e6, 0xb4ec, 0xb4ed, 0xb4ef, 0xb4f1, 0xb4f8, 0xb514,\n  0xb515, 0xb518, 0xb51b, 0xb51c, 0xb524, 0xb525, 0xb527, 0xb528,\n  0xb529, 0xb52a, 0xb530, 0xb531, 0xb534, 0xb538,\n  /* 0x36 */\n  0xb540, 0xb541, 0xb543, 0xb544, 0xb545, 0xb54b, 0xb54c, 0xb54d,\n  0xb550, 0xb554, 0xb55c, 0xb55d, 0xb55f, 0xb560, 0xb561, 0xb5a0,\n  0xb5a1, 0xb5a4, 0xb5a8, 0xb5aa, 0xb5ab, 0xb5b0, 0xb5b1, 0xb5b3,\n  0xb5b4, 0xb5b5, 0xb5bb, 0xb5bc, 0xb5bd, 0xb5c0, 0xb5c4, 0xb5cc,\n  0xb5cd, 0xb5cf, 0xb5d0, 0xb5d1, 0xb5d8, 0xb5ec, 0xb610, 0xb611,\n  0xb614, 0xb618, 0xb625, 0xb62c, 0xb634, 0xb648, 0xb664, 0xb668,\n  0xb69c, 0xb69d, 0xb6a0, 0xb6a4, 0xb6ab, 0xb6ac, 0xb6b1, 0xb6d4,\n  0xb6f0, 0xb6f4, 0xb6f8, 0xb700, 0xb701, 0xb705, 0xb728, 0xb729,\n  0xb72c, 0xb72f, 0xb730, 0xb738, 0xb739, 0xb73b, 0xb744, 0xb748,\n  0xb74c, 0xb754, 0xb755, 0xb760, 0xb764, 0xb768, 0xb770, 0xb771,\n  0xb773, 0xb775, 0xb77c, 0xb77d, 0xb780, 0xb784, 0xb78c, 0xb78d,\n  0xb78f, 0xb790, 0xb791, 0xb792, 0xb796, 0xb797,\n  /* 0x37 */\n  0xb798, 0xb799, 0xb79c, 0xb7a0, 0xb7a8, 0xb7a9, 0xb7ab, 0xb7ac,\n  0xb7ad, 0xb7b4, 0xb7b5, 0xb7b8, 0xb7c7, 0xb7c9, 0xb7ec, 0xb7ed,\n  0xb7f0, 0xb7f4, 0xb7fc, 0xb7fd, 0xb7ff, 0xb800, 0xb801, 0xb807,\n  0xb808, 0xb809, 0xb80c, 0xb810, 0xb818, 0xb819, 0xb81b, 0xb81d,\n  0xb824, 0xb825, 0xb828, 0xb82c, 0xb834, 0xb835, 0xb837, 0xb838,\n  0xb839, 0xb840, 0xb844, 0xb851, 0xb853, 0xb85c, 0xb85d, 0xb860,\n  0xb864, 0xb86c, 0xb86d, 0xb86f, 0xb871, 0xb878, 0xb87c, 0xb88d,\n  0xb8a8, 0xb8b0, 0xb8b4, 0xb8b8, 0xb8c0, 0xb8c1, 0xb8c3, 0xb8c5,\n  0xb8cc, 0xb8d0, 0xb8d4, 0xb8dd, 0xb8df, 0xb8e1, 0xb8e8, 0xb8e9,\n  0xb8ec, 0xb8f0, 0xb8f8, 0xb8f9, 0xb8fb, 0xb8fd, 0xb904, 0xb918,\n  0xb920, 0xb93c, 0xb93d, 0xb940, 0xb944, 0xb94c, 0xb94f, 0xb951,\n  0xb958, 0xb959, 0xb95c, 0xb960, 0xb968, 0xb969,\n  /* 0x38 */\n  0xb96b, 0xb96d, 0xb974, 0xb975, 0xb978, 0xb97c, 0xb984, 0xb985,\n  0xb987, 0xb989, 0xb98a, 0xb98d, 0xb98e, 0xb9ac, 0xb9ad, 0xb9b0,\n  0xb9b4, 0xb9bc, 0xb9bd, 0xb9bf, 0xb9c1, 0xb9c8, 0xb9c9, 0xb9cc,\n  0xb9ce, 0xb9cf, 0xb9d0, 0xb9d1, 0xb9d2, 0xb9d8, 0xb9d9, 0xb9db,\n  0xb9dd, 0xb9de, 0xb9e1, 0xb9e3, 0xb9e4, 0xb9e5, 0xb9e8, 0xb9ec,\n  0xb9f4, 0xb9f5, 0xb9f7, 0xb9f8, 0xb9f9, 0xb9fa, 0xba00, 0xba01,\n  0xba08, 0xba15, 0xba38, 0xba39, 0xba3c, 0xba40, 0xba42, 0xba48,\n  0xba49, 0xba4b, 0xba4d, 0xba4e, 0xba53, 0xba54, 0xba55, 0xba58,\n  0xba5c, 0xba64, 0xba65, 0xba67, 0xba68, 0xba69, 0xba70, 0xba71,\n  0xba74, 0xba78, 0xba83, 0xba84, 0xba85, 0xba87, 0xba8c, 0xbaa8,\n  0xbaa9, 0xbaab, 0xbaac, 0xbab0, 0xbab2, 0xbab8, 0xbab9, 0xbabb,\n  0xbabd, 0xbac4, 0xbac8, 0xbad8, 0xbad9, 0xbafc,\n  /* 0x39 */\n  0xbb00, 0xbb04, 0xbb0d, 0xbb0f, 0xbb11, 0xbb18, 0xbb1c, 0xbb20,\n  0xbb29, 0xbb2b, 0xbb34, 0xbb35, 0xbb36, 0xbb38, 0xbb3b, 0xbb3c,\n  0xbb3d, 0xbb3e, 0xbb44, 0xbb45, 0xbb47, 0xbb49, 0xbb4d, 0xbb4f,\n  0xbb50, 0xbb54, 0xbb58, 0xbb61, 0xbb63, 0xbb6c, 0xbb88, 0xbb8c,\n  0xbb90, 0xbba4, 0xbba8, 0xbbac, 0xbbb4, 0xbbb7, 0xbbc0, 0xbbc4,\n  0xbbc8, 0xbbd0, 0xbbd3, 0xbbf8, 0xbbf9, 0xbbfc, 0xbbff, 0xbc00,\n  0xbc02, 0xbc08, 0xbc09, 0xbc0b, 0xbc0c, 0xbc0d, 0xbc0f, 0xbc11,\n  0xbc14, 0xbc15, 0xbc16, 0xbc17, 0xbc18, 0xbc1b, 0xbc1c, 0xbc1d,\n  0xbc1e, 0xbc1f, 0xbc24, 0xbc25, 0xbc27, 0xbc29, 0xbc2d, 0xbc30,\n  0xbc31, 0xbc34, 0xbc38, 0xbc40, 0xbc41, 0xbc43, 0xbc44, 0xbc45,\n  0xbc49, 0xbc4c, 0xbc4d, 0xbc50, 0xbc5d, 0xbc84, 0xbc85, 0xbc88,\n  0xbc8b, 0xbc8c, 0xbc8e, 0xbc94, 0xbc95, 0xbc97,\n  /* 0x3a */\n  0xbc99, 0xbc9a, 0xbca0, 0xbca1, 0xbca4, 0xbca7, 0xbca8, 0xbcb0,\n  0xbcb1, 0xbcb3, 0xbcb4, 0xbcb5, 0xbcbc, 0xbcbd, 0xbcc0, 0xbcc4,\n  0xbccd, 0xbccf, 0xbcd0, 0xbcd1, 0xbcd5, 0xbcd8, 0xbcdc, 0xbcf4,\n  0xbcf5, 0xbcf6, 0xbcf8, 0xbcfc, 0xbd04, 0xbd05, 0xbd07, 0xbd09,\n  0xbd10, 0xbd14, 0xbd24, 0xbd2c, 0xbd40, 0xbd48, 0xbd49, 0xbd4c,\n  0xbd50, 0xbd58, 0xbd59, 0xbd64, 0xbd68, 0xbd80, 0xbd81, 0xbd84,\n  0xbd87, 0xbd88, 0xbd89, 0xbd8a, 0xbd90, 0xbd91, 0xbd93, 0xbd95,\n  0xbd99, 0xbd9a, 0xbd9c, 0xbda4, 0xbdb0, 0xbdb8, 0xbdd4, 0xbdd5,\n  0xbdd8, 0xbddc, 0xbde9, 0xbdf0, 0xbdf4, 0xbdf8, 0xbe00, 0xbe03,\n  0xbe05, 0xbe0c, 0xbe0d, 0xbe10, 0xbe14, 0xbe1c, 0xbe1d, 0xbe1f,\n  0xbe44, 0xbe45, 0xbe48, 0xbe4c, 0xbe4e, 0xbe54, 0xbe55, 0xbe57,\n  0xbe59, 0xbe5a, 0xbe5b, 0xbe60, 0xbe61, 0xbe64,\n  /* 0x3b */\n  0xbe68, 0xbe6a, 0xbe70, 0xbe71, 0xbe73, 0xbe74, 0xbe75, 0xbe7b,\n  0xbe7c, 0xbe7d, 0xbe80, 0xbe84, 0xbe8c, 0xbe8d, 0xbe8f, 0xbe90,\n  0xbe91, 0xbe98, 0xbe99, 0xbea8, 0xbed0, 0xbed1, 0xbed4, 0xbed7,\n  0xbed8, 0xbee0, 0xbee3, 0xbee4, 0xbee5, 0xbeec, 0xbf01, 0xbf08,\n  0xbf09, 0xbf18, 0xbf19, 0xbf1b, 0xbf1c, 0xbf1d, 0xbf40, 0xbf41,\n  0xbf44, 0xbf48, 0xbf50, 0xbf51, 0xbf55, 0xbf94, 0xbfb0, 0xbfc5,\n  0xbfcc, 0xbfcd, 0xbfd0, 0xbfd4, 0xbfdc, 0xbfdf, 0xbfe1, 0xc03c,\n  0xc051, 0xc058, 0xc05c, 0xc060, 0xc068, 0xc069, 0xc090, 0xc091,\n  0xc094, 0xc098, 0xc0a0, 0xc0a1, 0xc0a3, 0xc0a5, 0xc0ac, 0xc0ad,\n  0xc0af, 0xc0b0, 0xc0b3, 0xc0b4, 0xc0b5, 0xc0b6, 0xc0bc, 0xc0bd,\n  0xc0bf, 0xc0c0, 0xc0c1, 0xc0c5, 0xc0c8, 0xc0c9, 0xc0cc, 0xc0d0,\n  0xc0d8, 0xc0d9, 0xc0db, 0xc0dc, 0xc0dd, 0xc0e4,\n  /* 0x3c */\n  0xc0e5, 0xc0e8, 0xc0ec, 0xc0f4, 0xc0f5, 0xc0f7, 0xc0f9, 0xc100,\n  0xc104, 0xc108, 0xc110, 0xc115, 0xc11c, 0xc11d, 0xc11e, 0xc11f,\n  0xc120, 0xc123, 0xc124, 0xc126, 0xc127, 0xc12c, 0xc12d, 0xc12f,\n  0xc130, 0xc131, 0xc136, 0xc138, 0xc139, 0xc13c, 0xc140, 0xc148,\n  0xc149, 0xc14b, 0xc14c, 0xc14d, 0xc154, 0xc155, 0xc158, 0xc15c,\n  0xc164, 0xc165, 0xc167, 0xc168, 0xc169, 0xc170, 0xc174, 0xc178,\n  0xc185, 0xc18c, 0xc18d, 0xc18e, 0xc190, 0xc194, 0xc196, 0xc19c,\n  0xc19d, 0xc19f, 0xc1a1, 0xc1a5, 0xc1a8, 0xc1a9, 0xc1ac, 0xc1b0,\n  0xc1bd, 0xc1c4, 0xc1c8, 0xc1cc, 0xc1d4, 0xc1d7, 0xc1d8, 0xc1e0,\n  0xc1e4, 0xc1e8, 0xc1f0, 0xc1f1, 0xc1f3, 0xc1fc, 0xc1fd, 0xc200,\n  0xc204, 0xc20c, 0xc20d, 0xc20f, 0xc211, 0xc218, 0xc219, 0xc21c,\n  0xc21f, 0xc220, 0xc228, 0xc229, 0xc22b, 0xc22d,\n  /* 0x3d */\n  0xc22f, 0xc231, 0xc232, 0xc234, 0xc248, 0xc250, 0xc251, 0xc254,\n  0xc258, 0xc260, 0xc265, 0xc26c, 0xc26d, 0xc270, 0xc274, 0xc27c,\n  0xc27d, 0xc27f, 0xc281, 0xc288, 0xc289, 0xc290, 0xc298, 0xc29b,\n  0xc29d, 0xc2a4, 0xc2a5, 0xc2a8, 0xc2ac, 0xc2ad, 0xc2b4, 0xc2b5,\n  0xc2b7, 0xc2b9, 0xc2dc, 0xc2dd, 0xc2e0, 0xc2e3, 0xc2e4, 0xc2eb,\n  0xc2ec, 0xc2ed, 0xc2ef, 0xc2f1, 0xc2f6, 0xc2f8, 0xc2f9, 0xc2fb,\n  0xc2fc, 0xc300, 0xc308, 0xc309, 0xc30c, 0xc30d, 0xc313, 0xc314,\n  0xc315, 0xc318, 0xc31c, 0xc324, 0xc325, 0xc328, 0xc329, 0xc345,\n  0xc368, 0xc369, 0xc36c, 0xc370, 0xc372, 0xc378, 0xc379, 0xc37c,\n  0xc37d, 0xc384, 0xc388, 0xc38c, 0xc3c0, 0xc3d8, 0xc3d9, 0xc3dc,\n  0xc3df, 0xc3e0, 0xc3e2, 0xc3e8, 0xc3e9, 0xc3ed, 0xc3f4, 0xc3f5,\n  0xc3f8, 0xc408, 0xc410, 0xc424, 0xc42c, 0xc430,\n  /* 0x3e */\n  0xc434, 0xc43c, 0xc43d, 0xc448, 0xc464, 0xc465, 0xc468, 0xc46c,\n  0xc474, 0xc475, 0xc479, 0xc480, 0xc494, 0xc49c, 0xc4b8, 0xc4bc,\n  0xc4e9, 0xc4f0, 0xc4f1, 0xc4f4, 0xc4f8, 0xc4fa, 0xc4ff, 0xc500,\n  0xc501, 0xc50c, 0xc510, 0xc514, 0xc51c, 0xc528, 0xc529, 0xc52c,\n  0xc530, 0xc538, 0xc539, 0xc53b, 0xc53d, 0xc544, 0xc545, 0xc548,\n  0xc549, 0xc54a, 0xc54c, 0xc54d, 0xc54e, 0xc553, 0xc554, 0xc555,\n  0xc557, 0xc558, 0xc559, 0xc55d, 0xc55e, 0xc560, 0xc561, 0xc564,\n  0xc568, 0xc570, 0xc571, 0xc573, 0xc574, 0xc575, 0xc57c, 0xc57d,\n  0xc580, 0xc584, 0xc587, 0xc58c, 0xc58d, 0xc58f, 0xc591, 0xc595,\n  0xc597, 0xc598, 0xc59c, 0xc5a0, 0xc5a9, 0xc5b4, 0xc5b5, 0xc5b8,\n  0xc5b9, 0xc5bb, 0xc5bc, 0xc5bd, 0xc5be, 0xc5c4, 0xc5c5, 0xc5c6,\n  0xc5c7, 0xc5c8, 0xc5c9, 0xc5ca, 0xc5cc, 0xc5ce,\n  /* 0x3f */\n  0xc5d0, 0xc5d1, 0xc5d4, 0xc5d8, 0xc5e0, 0xc5e1, 0xc5e3, 0xc5e5,\n  0xc5ec, 0xc5ed, 0xc5ee, 0xc5f0, 0xc5f4, 0xc5f6, 0xc5f7, 0xc5fc,\n  0xc5fd, 0xc5fe, 0xc5ff, 0xc600, 0xc601, 0xc605, 0xc606, 0xc607,\n  0xc608, 0xc60c, 0xc610, 0xc618, 0xc619, 0xc61b, 0xc61c, 0xc624,\n  0xc625, 0xc628, 0xc62c, 0xc62d, 0xc62e, 0xc630, 0xc633, 0xc634,\n  0xc635, 0xc637, 0xc639, 0xc63b, 0xc640, 0xc641, 0xc644, 0xc648,\n  0xc650, 0xc651, 0xc653, 0xc654, 0xc655, 0xc65c, 0xc65d, 0xc660,\n  0xc66c, 0xc66f, 0xc671, 0xc678, 0xc679, 0xc67c, 0xc680, 0xc688,\n  0xc689, 0xc68b, 0xc68d, 0xc694, 0xc695, 0xc698, 0xc69c, 0xc6a4,\n  0xc6a5, 0xc6a7, 0xc6a9, 0xc6b0, 0xc6b1, 0xc6b4, 0xc6b8, 0xc6b9,\n  0xc6ba, 0xc6c0, 0xc6c1, 0xc6c3, 0xc6c5, 0xc6cc, 0xc6cd, 0xc6d0,\n  0xc6d4, 0xc6dc, 0xc6dd, 0xc6e0, 0xc6e1, 0xc6e8,\n  /* 0x40 */\n  0xc6e9, 0xc6ec, 0xc6f0, 0xc6f8, 0xc6f9, 0xc6fd, 0xc704, 0xc705,\n  0xc708, 0xc70c, 0xc714, 0xc715, 0xc717, 0xc719, 0xc720, 0xc721,\n  0xc724, 0xc728, 0xc730, 0xc731, 0xc733, 0xc735, 0xc737, 0xc73c,\n  0xc73d, 0xc740, 0xc744, 0xc74a, 0xc74c, 0xc74d, 0xc74f, 0xc751,\n  0xc752, 0xc753, 0xc754, 0xc755, 0xc756, 0xc757, 0xc758, 0xc75c,\n  0xc760, 0xc768, 0xc76b, 0xc774, 0xc775, 0xc778, 0xc77c, 0xc77d,\n  0xc77e, 0xc783, 0xc784, 0xc785, 0xc787, 0xc788, 0xc789, 0xc78a,\n  0xc78e, 0xc790, 0xc791, 0xc794, 0xc796, 0xc797, 0xc798, 0xc79a,\n  0xc7a0, 0xc7a1, 0xc7a3, 0xc7a4, 0xc7a5, 0xc7a6, 0xc7ac, 0xc7ad,\n  0xc7b0, 0xc7b4, 0xc7bc, 0xc7bd, 0xc7bf, 0xc7c0, 0xc7c1, 0xc7c8,\n  0xc7c9, 0xc7cc, 0xc7ce, 0xc7d0, 0xc7d8, 0xc7dd, 0xc7e4, 0xc7e8,\n  0xc7ec, 0xc800, 0xc801, 0xc804, 0xc808, 0xc80a,\n  /* 0x41 */\n  0xc810, 0xc811, 0xc813, 0xc815, 0xc816, 0xc81c, 0xc81d, 0xc820,\n  0xc824, 0xc82c, 0xc82d, 0xc82f, 0xc831, 0xc838, 0xc83c, 0xc840,\n  0xc848, 0xc849, 0xc84c, 0xc84d, 0xc854, 0xc870, 0xc871, 0xc874,\n  0xc878, 0xc87a, 0xc880, 0xc881, 0xc883, 0xc885, 0xc886, 0xc887,\n  0xc88b, 0xc88c, 0xc88d, 0xc894, 0xc89d, 0xc89f, 0xc8a1, 0xc8a8,\n  0xc8bc, 0xc8bd, 0xc8c4, 0xc8c8, 0xc8cc, 0xc8d4, 0xc8d5, 0xc8d7,\n  0xc8d9, 0xc8e0, 0xc8e1, 0xc8e4, 0xc8f5, 0xc8fc, 0xc8fd, 0xc900,\n  0xc904, 0xc905, 0xc906, 0xc90c, 0xc90d, 0xc90f, 0xc911, 0xc918,\n  0xc92c, 0xc934, 0xc950, 0xc951, 0xc954, 0xc958, 0xc960, 0xc961,\n  0xc963, 0xc96c, 0xc970, 0xc974, 0xc97c, 0xc988, 0xc989, 0xc98c,\n  0xc990, 0xc998, 0xc999, 0xc99b, 0xc99d, 0xc9c0, 0xc9c1, 0xc9c4,\n  0xc9c7, 0xc9c8, 0xc9ca, 0xc9d0, 0xc9d1, 0xc9d3,\n  /* 0x42 */\n  0xc9d5, 0xc9d6, 0xc9d9, 0xc9da, 0xc9dc, 0xc9dd, 0xc9e0, 0xc9e2,\n  0xc9e4, 0xc9e7, 0xc9ec, 0xc9ed, 0xc9ef, 0xc9f0, 0xc9f1, 0xc9f8,\n  0xc9f9, 0xc9fc, 0xca00, 0xca08, 0xca09, 0xca0b, 0xca0c, 0xca0d,\n  0xca14, 0xca18, 0xca29, 0xca4c, 0xca4d, 0xca50, 0xca54, 0xca5c,\n  0xca5d, 0xca5f, 0xca60, 0xca61, 0xca68, 0xca7d, 0xca84, 0xca98,\n  0xcabc, 0xcabd, 0xcac0, 0xcac4, 0xcacc, 0xcacd, 0xcacf, 0xcad1,\n  0xcad3, 0xcad8, 0xcad9, 0xcae0, 0xcaec, 0xcaf4, 0xcb08, 0xcb10,\n  0xcb14, 0xcb18, 0xcb20, 0xcb21, 0xcb41, 0xcb48, 0xcb49, 0xcb4c,\n  0xcb50, 0xcb58, 0xcb59, 0xcb5d, 0xcb64, 0xcb78, 0xcb79, 0xcb9c,\n  0xcbb8, 0xcbd4, 0xcbe4, 0xcbe7, 0xcbe9, 0xcc0c, 0xcc0d, 0xcc10,\n  0xcc14, 0xcc1c, 0xcc1d, 0xcc21, 0xcc22, 0xcc27, 0xcc28, 0xcc29,\n  0xcc2c, 0xcc2e, 0xcc30, 0xcc38, 0xcc39, 0xcc3b,\n  /* 0x43 */\n  0xcc3c, 0xcc3d, 0xcc3e, 0xcc44, 0xcc45, 0xcc48, 0xcc4c, 0xcc54,\n  0xcc55, 0xcc57, 0xcc58, 0xcc59, 0xcc60, 0xcc64, 0xcc66, 0xcc68,\n  0xcc70, 0xcc75, 0xcc98, 0xcc99, 0xcc9c, 0xcca0, 0xcca8, 0xcca9,\n  0xccab, 0xccac, 0xccad, 0xccb4, 0xccb5, 0xccb8, 0xccbc, 0xccc4,\n  0xccc5, 0xccc7, 0xccc9, 0xccd0, 0xccd4, 0xcce4, 0xccec, 0xccf0,\n  0xcd01, 0xcd08, 0xcd09, 0xcd0c, 0xcd10, 0xcd18, 0xcd19, 0xcd1b,\n  0xcd1d, 0xcd24, 0xcd28, 0xcd2c, 0xcd39, 0xcd5c, 0xcd60, 0xcd64,\n  0xcd6c, 0xcd6d, 0xcd6f, 0xcd71, 0xcd78, 0xcd88, 0xcd94, 0xcd95,\n  0xcd98, 0xcd9c, 0xcda4, 0xcda5, 0xcda7, 0xcda9, 0xcdb0, 0xcdc4,\n  0xcdcc, 0xcdd0, 0xcde8, 0xcdec, 0xcdf0, 0xcdf8, 0xcdf9, 0xcdfb,\n  0xcdfd, 0xce04, 0xce08, 0xce0c, 0xce14, 0xce19, 0xce20, 0xce21,\n  0xce24, 0xce28, 0xce30, 0xce31, 0xce33, 0xce35,\n  /* 0x44 */\n  0xce58, 0xce59, 0xce5c, 0xce5f, 0xce60, 0xce61, 0xce68, 0xce69,\n  0xce6b, 0xce6d, 0xce74, 0xce75, 0xce78, 0xce7c, 0xce84, 0xce85,\n  0xce87, 0xce89, 0xce90, 0xce91, 0xce94, 0xce98, 0xcea0, 0xcea1,\n  0xcea3, 0xcea4, 0xcea5, 0xceac, 0xcead, 0xcec1, 0xcee4, 0xcee5,\n  0xcee8, 0xceeb, 0xceec, 0xcef4, 0xcef5, 0xcef7, 0xcef8, 0xcef9,\n  0xcf00, 0xcf01, 0xcf04, 0xcf08, 0xcf10, 0xcf11, 0xcf13, 0xcf15,\n  0xcf1c, 0xcf20, 0xcf24, 0xcf2c, 0xcf2d, 0xcf2f, 0xcf30, 0xcf31,\n  0xcf38, 0xcf54, 0xcf55, 0xcf58, 0xcf5c, 0xcf64, 0xcf65, 0xcf67,\n  0xcf69, 0xcf70, 0xcf71, 0xcf74, 0xcf78, 0xcf80, 0xcf85, 0xcf8c,\n  0xcfa1, 0xcfa8, 0xcfb0, 0xcfc4, 0xcfe0, 0xcfe1, 0xcfe4, 0xcfe8,\n  0xcff0, 0xcff1, 0xcff3, 0xcff5, 0xcffc, 0xd000, 0xd004, 0xd011,\n  0xd018, 0xd02d, 0xd034, 0xd035, 0xd038, 0xd03c,\n  /* 0x45 */\n  0xd044, 0xd045, 0xd047, 0xd049, 0xd050, 0xd054, 0xd058, 0xd060,\n  0xd06c, 0xd06d, 0xd070, 0xd074, 0xd07c, 0xd07d, 0xd081, 0xd0a4,\n  0xd0a5, 0xd0a8, 0xd0ac, 0xd0b4, 0xd0b5, 0xd0b7, 0xd0b9, 0xd0c0,\n  0xd0c1, 0xd0c4, 0xd0c8, 0xd0c9, 0xd0d0, 0xd0d1, 0xd0d3, 0xd0d4,\n  0xd0d5, 0xd0dc, 0xd0dd, 0xd0e0, 0xd0e4, 0xd0ec, 0xd0ed, 0xd0ef,\n  0xd0f0, 0xd0f1, 0xd0f8, 0xd10d, 0xd130, 0xd131, 0xd134, 0xd138,\n  0xd13a, 0xd140, 0xd141, 0xd143, 0xd144, 0xd145, 0xd14c, 0xd14d,\n  0xd150, 0xd154, 0xd15c, 0xd15d, 0xd15f, 0xd161, 0xd168, 0xd16c,\n  0xd17c, 0xd184, 0xd188, 0xd1a0, 0xd1a1, 0xd1a4, 0xd1a8, 0xd1b0,\n  0xd1b1, 0xd1b3, 0xd1b5, 0xd1ba, 0xd1bc, 0xd1c0, 0xd1d8, 0xd1f4,\n  0xd1f8, 0xd207, 0xd209, 0xd210, 0xd22c, 0xd22d, 0xd230, 0xd234,\n  0xd23c, 0xd23d, 0xd23f, 0xd241, 0xd248, 0xd25c,\n  /* 0x46 */\n  0xd264, 0xd280, 0xd281, 0xd284, 0xd288, 0xd290, 0xd291, 0xd295,\n  0xd29c, 0xd2a0, 0xd2a4, 0xd2ac, 0xd2b1, 0xd2b8, 0xd2b9, 0xd2bc,\n  0xd2bf, 0xd2c0, 0xd2c2, 0xd2c8, 0xd2c9, 0xd2cb, 0xd2d4, 0xd2d8,\n  0xd2dc, 0xd2e4, 0xd2e5, 0xd2f0, 0xd2f1, 0xd2f4, 0xd2f8, 0xd300,\n  0xd301, 0xd303, 0xd305, 0xd30c, 0xd30d, 0xd30e, 0xd310, 0xd314,\n  0xd316, 0xd31c, 0xd31d, 0xd31f, 0xd320, 0xd321, 0xd325, 0xd328,\n  0xd329, 0xd32c, 0xd330, 0xd338, 0xd339, 0xd33b, 0xd33c, 0xd33d,\n  0xd344, 0xd345, 0xd37c, 0xd37d, 0xd380, 0xd384, 0xd38c, 0xd38d,\n  0xd38f, 0xd390, 0xd391, 0xd398, 0xd399, 0xd39c, 0xd3a0, 0xd3a8,\n  0xd3a9, 0xd3ab, 0xd3ad, 0xd3b4, 0xd3b8, 0xd3bc, 0xd3c4, 0xd3c5,\n  0xd3c8, 0xd3c9, 0xd3d0, 0xd3d8, 0xd3e1, 0xd3e3, 0xd3ec, 0xd3ed,\n  0xd3f0, 0xd3f4, 0xd3fc, 0xd3fd, 0xd3ff, 0xd401,\n  /* 0x47 */\n  0xd408, 0xd41d, 0xd440, 0xd444, 0xd45c, 0xd460, 0xd464, 0xd46d,\n  0xd46f, 0xd478, 0xd479, 0xd47c, 0xd47f, 0xd480, 0xd482, 0xd488,\n  0xd489, 0xd48b, 0xd48d, 0xd494, 0xd4a9, 0xd4cc, 0xd4d0, 0xd4d4,\n  0xd4dc, 0xd4df, 0xd4e8, 0xd4ec, 0xd4f0, 0xd4f8, 0xd4fb, 0xd4fd,\n  0xd504, 0xd508, 0xd50c, 0xd514, 0xd515, 0xd517, 0xd53c, 0xd53d,\n  0xd540, 0xd544, 0xd54c, 0xd54d, 0xd54f, 0xd551, 0xd558, 0xd559,\n  0xd55c, 0xd560, 0xd565, 0xd568, 0xd569, 0xd56b, 0xd56d, 0xd574,\n  0xd575, 0xd578, 0xd57c, 0xd584, 0xd585, 0xd587, 0xd588, 0xd589,\n  0xd590, 0xd5a5, 0xd5c8, 0xd5c9, 0xd5cc, 0xd5d0, 0xd5d2, 0xd5d8,\n  0xd5d9, 0xd5db, 0xd5dd, 0xd5e4, 0xd5e5, 0xd5e8, 0xd5ec, 0xd5f4,\n  0xd5f5, 0xd5f7, 0xd5f9, 0xd600, 0xd601, 0xd604, 0xd608, 0xd610,\n  0xd611, 0xd613, 0xd614, 0xd615, 0xd61c, 0xd620,\n  /* 0x48 */\n  0xd624, 0xd62d, 0xd638, 0xd639, 0xd63c, 0xd640, 0xd645, 0xd648,\n  0xd649, 0xd64b, 0xd64d, 0xd651, 0xd654, 0xd655, 0xd658, 0xd65c,\n  0xd667, 0xd669, 0xd670, 0xd671, 0xd674, 0xd683, 0xd685, 0xd68c,\n  0xd68d, 0xd690, 0xd694, 0xd69d, 0xd69f, 0xd6a1, 0xd6a8, 0xd6ac,\n  0xd6b0, 0xd6b9, 0xd6bb, 0xd6c4, 0xd6c5, 0xd6c8, 0xd6cc, 0xd6d1,\n  0xd6d4, 0xd6d7, 0xd6d9, 0xd6e0, 0xd6e4, 0xd6e8, 0xd6f0, 0xd6f5,\n  0xd6fc, 0xd6fd, 0xd700, 0xd704, 0xd711, 0xd718, 0xd719, 0xd71c,\n  0xd720, 0xd728, 0xd729, 0xd72b, 0xd72d, 0xd734, 0xd735, 0xd738,\n  0xd73c, 0xd744, 0xd747, 0xd749, 0xd750, 0xd751, 0xd754, 0xd756,\n  0xd757, 0xd758, 0xd759, 0xd760, 0xd761, 0xd763, 0xd765, 0xd769,\n  0xd76c, 0xd770, 0xd774, 0xd77c, 0xd77d, 0xd781, 0xd788, 0xd789,\n  0xd78c, 0xd790, 0xd798, 0xd799, 0xd79b, 0xd79d,\n};\nstatic const unsigned short ksc5601_2uni_page4a[4888] = {\n  /* 0x4a */\n  0x4f3d, 0x4f73, 0x5047, 0x50f9, 0x52a0, 0x53ef, 0x5475, 0x54e5,\n  0x5609, 0x5ac1, 0x5bb6, 0x6687, 0x67b6, 0x67b7, 0x67ef, 0x6b4c,\n  0x73c2, 0x75c2, 0x7a3c, 0x82db, 0x8304, 0x8857, 0x8888, 0x8a36,\n  0x8cc8, 0x8dcf, 0x8efb, 0x8fe6, 0x99d5, 0x523b, 0x5374, 0x5404,\n  0x606a, 0x6164, 0x6bbc, 0x73cf, 0x811a, 0x89ba, 0x89d2, 0x95a3,\n  0x4f83, 0x520a, 0x58be, 0x5978, 0x59e6, 0x5e72, 0x5e79, 0x61c7,\n  0x63c0, 0x6746, 0x67ec, 0x687f, 0x6f97, 0x764e, 0x770b, 0x78f5,\n  0x7a08, 0x7aff, 0x7c21, 0x809d, 0x826e, 0x8271, 0x8aeb, 0x9593,\n  0x4e6b, 0x559d, 0x66f7, 0x6e34, 0x78a3, 0x7aed, 0x845b, 0x8910,\n  0x874e, 0x97a8, 0x52d8, 0x574e, 0x582a, 0x5d4c, 0x611f, 0x61be,\n  0x6221, 0x6562, 0x67d1, 0x6a44, 0x6e1b, 0x7518, 0x75b3, 0x76e3,\n  0x77b0, 0x7d3a, 0x90af, 0x9451, 0x9452, 0x9f95,\n  /* 0x4b */\n  0x5323, 0x5cac, 0x7532, 0x80db, 0x9240, 0x9598, 0x525b, 0x5808,\n  0x59dc, 0x5ca1, 0x5d17, 0x5eb7, 0x5f3a, 0x5f4a, 0x6177, 0x6c5f,\n  0x757a, 0x7586, 0x7ce0, 0x7d73, 0x7db1, 0x7f8c, 0x8154, 0x8221,\n  0x8591, 0x8941, 0x8b1b, 0x92fc, 0x964d, 0x9c47, 0x4ecb, 0x4ef7,\n  0x500b, 0x51f1, 0x584f, 0x6137, 0x613e, 0x6168, 0x6539, 0x69ea,\n  0x6f11, 0x75a5, 0x7686, 0x76d6, 0x7b87, 0x82a5, 0x84cb, 0xf900,\n  0x93a7, 0x958b, 0x5580, 0x5ba2, 0x5751, 0xf901, 0x7cb3, 0x7fb9,\n  0x91b5, 0x5028, 0x53bb, 0x5c45, 0x5de8, 0x62d2, 0x636e, 0x64da,\n  0x64e7, 0x6e20, 0x70ac, 0x795b, 0x8ddd, 0x8e1e, 0xf902, 0x907d,\n  0x9245, 0x92f8, 0x4e7e, 0x4ef6, 0x5065, 0x5dfe, 0x5efa, 0x6106,\n  0x6957, 0x8171, 0x8654, 0x8e47, 0x9375, 0x9a2b, 0x4e5e, 0x5091,\n  0x6770, 0x6840, 0x5109, 0x528d, 0x5292, 0x6aa2,\n  /* 0x4c */\n  0x77bc, 0x9210, 0x9ed4, 0x52ab, 0x602f, 0x8ff2, 0x5048, 0x61a9,\n  0x63ed, 0x64ca, 0x683c, 0x6a84, 0x6fc0, 0x8188, 0x89a1, 0x9694,\n  0x5805, 0x727d, 0x72ac, 0x7504, 0x7d79, 0x7e6d, 0x80a9, 0x898b,\n  0x8b74, 0x9063, 0x9d51, 0x6289, 0x6c7a, 0x6f54, 0x7d50, 0x7f3a,\n  0x8a23, 0x517c, 0x614a, 0x7b9d, 0x8b19, 0x9257, 0x938c, 0x4eac,\n  0x4fd3, 0x501e, 0x50be, 0x5106, 0x52c1, 0x52cd, 0x537f, 0x5770,\n  0x5883, 0x5e9a, 0x5f91, 0x6176, 0x61ac, 0x64ce, 0x656c, 0x666f,\n  0x66bb, 0x66f4, 0x6897, 0x6d87, 0x7085, 0x70f1, 0x749f, 0x74a5,\n  0x74ca, 0x75d9, 0x786c, 0x78ec, 0x7adf, 0x7af6, 0x7d45, 0x7d93,\n  0x8015, 0x803f, 0x811b, 0x8396, 0x8b66, 0x8f15, 0x9015, 0x93e1,\n  0x9803, 0x9838, 0x9a5a, 0x9be8, 0x4fc2, 0x5553, 0x583a, 0x5951,\n  0x5b63, 0x5c46, 0x60b8, 0x6212, 0x6842, 0x68b0,\n  /* 0x4d */\n  0x68e8, 0x6eaa, 0x754c, 0x7678, 0x78ce, 0x7a3d, 0x7cfb, 0x7e6b,\n  0x7e7c, 0x8a08, 0x8aa1, 0x8c3f, 0x968e, 0x9dc4, 0x53e4, 0x53e9,\n  0x544a, 0x5471, 0x56fa, 0x59d1, 0x5b64, 0x5c3b, 0x5eab, 0x62f7,\n  0x6537, 0x6545, 0x6572, 0x66a0, 0x67af, 0x69c1, 0x6cbd, 0x75fc,\n  0x7690, 0x777e, 0x7a3f, 0x7f94, 0x8003, 0x80a1, 0x818f, 0x82e6,\n  0x82fd, 0x83f0, 0x85c1, 0x8831, 0x88b4, 0x8aa5, 0xf903, 0x8f9c,\n  0x932e, 0x96c7, 0x9867, 0x9ad8, 0x9f13, 0x54ed, 0x659b, 0x66f2,\n  0x688f, 0x7a40, 0x8c37, 0x9d60, 0x56f0, 0x5764, 0x5d11, 0x6606,\n  0x68b1, 0x68cd, 0x6efe, 0x7428, 0x889e, 0x9be4, 0x6c68, 0xf904,\n  0x9aa8, 0x4f9b, 0x516c, 0x5171, 0x529f, 0x5b54, 0x5de5, 0x6050,\n  0x606d, 0x62f1, 0x63a7, 0x653b, 0x73d9, 0x7a7a, 0x86a3, 0x8ca2,\n  0x978f, 0x4e32, 0x5be1, 0x6208, 0x679c, 0x74dc,\n  /* 0x4e */\n  0x79d1, 0x83d3, 0x8a87, 0x8ab2, 0x8de8, 0x904e, 0x934b, 0x9846,\n  0x5ed3, 0x69e8, 0x85ff, 0x90ed, 0xf905, 0x51a0, 0x5b98, 0x5bec,\n  0x6163, 0x68fa, 0x6b3e, 0x704c, 0x742f, 0x74d8, 0x7ba1, 0x7f50,\n  0x83c5, 0x89c0, 0x8cab, 0x95dc, 0x9928, 0x522e, 0x605d, 0x62ec,\n  0x9002, 0x4f8a, 0x5149, 0x5321, 0x58d9, 0x5ee3, 0x66e0, 0x6d38,\n  0x709a, 0x72c2, 0x73d6, 0x7b50, 0x80f1, 0x945b, 0x5366, 0x639b,\n  0x7f6b, 0x4e56, 0x5080, 0x584a, 0x58de, 0x602a, 0x6127, 0x62d0,\n  0x69d0, 0x9b41, 0x5b8f, 0x7d18, 0x80b1, 0x8f5f, 0x4ea4, 0x50d1,\n  0x54ac, 0x55ac, 0x5b0c, 0x5da0, 0x5de7, 0x652a, 0x654e, 0x6821,\n  0x6a4b, 0x72e1, 0x768e, 0x77ef, 0x7d5e, 0x7ff9, 0x81a0, 0x854e,\n  0x86df, 0x8f03, 0x8f4e, 0x90ca, 0x9903, 0x9a55, 0x9bab, 0x4e18,\n  0x4e45, 0x4e5d, 0x4ec7, 0x4ff1, 0x5177, 0x52fe,\n  /* 0x4f */\n  0x5340, 0x53e3, 0x53e5, 0x548e, 0x5614, 0x5775, 0x57a2, 0x5bc7,\n  0x5d87, 0x5ed0, 0x61fc, 0x62d8, 0x6551, 0x67b8, 0x67e9, 0x69cb,\n  0x6b50, 0x6bc6, 0x6bec, 0x6c42, 0x6e9d, 0x7078, 0x72d7, 0x7396,\n  0x7403, 0x77bf, 0x77e9, 0x7a76, 0x7d7f, 0x8009, 0x81fc, 0x8205,\n  0x820a, 0x82df, 0x8862, 0x8b33, 0x8cfc, 0x8ec0, 0x9011, 0x90b1,\n  0x9264, 0x92b6, 0x99d2, 0x9a45, 0x9ce9, 0x9dd7, 0x9f9c, 0x570b,\n  0x5c40, 0x83ca, 0x97a0, 0x97ab, 0x9eb4, 0x541b, 0x7a98, 0x7fa4,\n  0x88d9, 0x8ecd, 0x90e1, 0x5800, 0x5c48, 0x6398, 0x7a9f, 0x5bae,\n  0x5f13, 0x7a79, 0x7aae, 0x828e, 0x8eac, 0x5026, 0x5238, 0x52f8,\n  0x5377, 0x5708, 0x62f3, 0x6372, 0x6b0a, 0x6dc3, 0x7737, 0x53a5,\n  0x7357, 0x8568, 0x8e76, 0x95d5, 0x673a, 0x6ac3, 0x6f70, 0x8a6d,\n  0x8ecc, 0x994b, 0xf906, 0x6677, 0x6b78, 0x8cb4,\n  /* 0x50 */\n  0x9b3c, 0xf907, 0x53eb, 0x572d, 0x594e, 0x63c6, 0x69fb, 0x73ea,\n  0x7845, 0x7aba, 0x7ac5, 0x7cfe, 0x8475, 0x898f, 0x8d73, 0x9035,\n  0x95a8, 0x52fb, 0x5747, 0x7547, 0x7b60, 0x83cc, 0x921e, 0xf908,\n  0x6a58, 0x514b, 0x524b, 0x5287, 0x621f, 0x68d8, 0x6975, 0x9699,\n  0x50c5, 0x52a4, 0x52e4, 0x61c3, 0x65a4, 0x6839, 0x69ff, 0x747e,\n  0x7b4b, 0x82b9, 0x83eb, 0x89b2, 0x8b39, 0x8fd1, 0x9949, 0xf909,\n  0x4eca, 0x5997, 0x64d2, 0x6611, 0x6a8e, 0x7434, 0x7981, 0x79bd,\n  0x82a9, 0x887e, 0x887f, 0x895f, 0xf90a, 0x9326, 0x4f0b, 0x53ca,\n  0x6025, 0x6271, 0x6c72, 0x7d1a, 0x7d66, 0x4e98, 0x5162, 0x77dc,\n  0x80af, 0x4f01, 0x4f0e, 0x5176, 0x5180, 0x55dc, 0x5668, 0x573b,\n  0x57fa, 0x57fc, 0x5914, 0x5947, 0x5993, 0x5bc4, 0x5c90, 0x5d0e,\n  0x5df1, 0x5e7e, 0x5fcc, 0x6280, 0x65d7, 0x65e3,\n  /* 0x51 */\n  0x671e, 0x671f, 0x675e, 0x68cb, 0x68c4, 0x6a5f, 0x6b3a, 0x6c23,\n  0x6c7d, 0x6c82, 0x6dc7, 0x7398, 0x7426, 0x742a, 0x7482, 0x74a3,\n  0x7578, 0x757f, 0x7881, 0x78ef, 0x7941, 0x7947, 0x7948, 0x797a,\n  0x7b95, 0x7d00, 0x7dba, 0x7f88, 0x8006, 0x802d, 0x808c, 0x8a18,\n  0x8b4f, 0x8c48, 0x8d77, 0x9321, 0x9324, 0x98e2, 0x9951, 0x9a0e,\n  0x9a0f, 0x9a65, 0x9e92, 0x7dca, 0x4f76, 0x5409, 0x62ee, 0x6854,\n  0x91d1, 0x55ab, 0x513a, 0xf90b, 0xf90c, 0x5a1c, 0x61e6, 0xf90d,\n  0x62cf, 0x62ff, 0xf90e, 0xf90f, 0xf910, 0xf911, 0xf912, 0xf913,\n  0x90a3, 0xf914, 0xf915, 0xf916, 0xf917, 0xf918, 0x8afe, 0xf919,\n  0xf91a, 0xf91b, 0xf91c, 0x6696, 0xf91d, 0x7156, 0xf91e, 0xf91f,\n  0x96e3, 0xf920, 0x634f, 0x637a, 0x5357, 0xf921, 0x678f, 0x6960,\n  0x6e73, 0xf922, 0x7537, 0xf923, 0xf924, 0xf925,\n  /* 0x52 */\n  0x7d0d, 0xf926, 0xf927, 0x8872, 0x56ca, 0x5a18, 0xf928, 0xf929,\n  0xf92a, 0xf92b, 0xf92c, 0x4e43, 0xf92d, 0x5167, 0x5948, 0x67f0,\n  0x8010, 0xf92e, 0x5973, 0x5e74, 0x649a, 0x79ca, 0x5ff5, 0x606c,\n  0x62c8, 0x637b, 0x5be7, 0x5bd7, 0x52aa, 0xf92f, 0x5974, 0x5f29,\n  0x6012, 0xf930, 0xf931, 0xf932, 0x7459, 0xf933, 0xf934, 0xf935,\n  0xf936, 0xf937, 0xf938, 0x99d1, 0xf939, 0xf93a, 0xf93b, 0xf93c,\n  0xf93d, 0xf93e, 0xf93f, 0xf940, 0xf941, 0xf942, 0xf943, 0x6fc3,\n  0xf944, 0xf945, 0x81bf, 0x8fb2, 0x60f1, 0xf946, 0xf947, 0x8166,\n  0xf948, 0xf949, 0x5c3f, 0xf94a, 0xf94b, 0xf94c, 0xf94d, 0xf94e,\n  0xf94f, 0xf950, 0xf951, 0x5ae9, 0x8a25, 0x677b, 0x7d10, 0xf952,\n  0xf953, 0xf954, 0xf955, 0xf956, 0xf957, 0x80fd, 0xf958, 0xf959,\n  0x5c3c, 0x6ce5, 0x533f, 0x6eba, 0x591a, 0x8336,\n  /* 0x53 */\n  0x4e39, 0x4eb6, 0x4f46, 0x55ae, 0x5718, 0x58c7, 0x5f56, 0x65b7,\n  0x65e6, 0x6a80, 0x6bb5, 0x6e4d, 0x77ed, 0x7aef, 0x7c1e, 0x7dde,\n  0x86cb, 0x8892, 0x9132, 0x935b, 0x64bb, 0x6fbe, 0x737a, 0x75b8,\n  0x9054, 0x5556, 0x574d, 0x61ba, 0x64d4, 0x66c7, 0x6de1, 0x6e5b,\n  0x6f6d, 0x6fb9, 0x75f0, 0x8043, 0x81bd, 0x8541, 0x8983, 0x8ac7,\n  0x8b5a, 0x931f, 0x6c93, 0x7553, 0x7b54, 0x8e0f, 0x905d, 0x5510,\n  0x5802, 0x5858, 0x5e62, 0x6207, 0x649e, 0x68e0, 0x7576, 0x7cd6,\n  0x87b3, 0x9ee8, 0x4ee3, 0x5788, 0x576e, 0x5927, 0x5c0d, 0x5cb1,\n  0x5e36, 0x5f85, 0x6234, 0x64e1, 0x73b3, 0x81fa, 0x888b, 0x8cb8,\n  0x968a, 0x9edb, 0x5b85, 0x5fb7, 0x60b3, 0x5012, 0x5200, 0x5230,\n  0x5716, 0x5835, 0x5857, 0x5c0e, 0x5c60, 0x5cf6, 0x5d8b, 0x5ea6,\n  0x5f92, 0x60bc, 0x6311, 0x6389, 0x6417, 0x6843,\n  /* 0x54 */\n  0x68f9, 0x6ac2, 0x6dd8, 0x6e21, 0x6ed4, 0x6fe4, 0x71fe, 0x76dc,\n  0x7779, 0x79b1, 0x7a3b, 0x8404, 0x89a9, 0x8ced, 0x8df3, 0x8e48,\n  0x9003, 0x9014, 0x9053, 0x90fd, 0x934d, 0x9676, 0x97dc, 0x6bd2,\n  0x7006, 0x7258, 0x72a2, 0x7368, 0x7763, 0x79bf, 0x7be4, 0x7e9b,\n  0x8b80, 0x58a9, 0x60c7, 0x6566, 0x65fd, 0x66be, 0x6c8c, 0x711e,\n  0x71c9, 0x8c5a, 0x9813, 0x4e6d, 0x7a81, 0x4edd, 0x51ac, 0x51cd,\n  0x52d5, 0x540c, 0x61a7, 0x6771, 0x6850, 0x68df, 0x6d1e, 0x6f7c,\n  0x75bc, 0x77b3, 0x7ae5, 0x80f4, 0x8463, 0x9285, 0x515c, 0x6597,\n  0x675c, 0x6793, 0x75d8, 0x7ac7, 0x8373, 0xf95a, 0x8c46, 0x9017,\n  0x982d, 0x5c6f, 0x81c0, 0x829a, 0x9041, 0x906f, 0x920d, 0x5f97,\n  0x5d9d, 0x6a59, 0x71c8, 0x767b, 0x7b49, 0x85e4, 0x8b04, 0x9127,\n  0x9a30, 0x5587, 0x61f6, 0xf95b, 0x7669, 0x7f85,\n  /* 0x55 */\n  0x863f, 0x87ba, 0x88f8, 0x908f, 0xf95c, 0x6d1b, 0x70d9, 0x73de,\n  0x7d61, 0x843d, 0xf95d, 0x916a, 0x99f1, 0xf95e, 0x4e82, 0x5375,\n  0x6b04, 0x6b12, 0x703e, 0x721b, 0x862d, 0x9e1e, 0x524c, 0x8fa3,\n  0x5d50, 0x64e5, 0x652c, 0x6b16, 0x6feb, 0x7c43, 0x7e9c, 0x85cd,\n  0x8964, 0x89bd, 0x62c9, 0x81d8, 0x881f, 0x5eca, 0x6717, 0x6d6a,\n  0x72fc, 0x7405, 0x746f, 0x8782, 0x90de, 0x4f86, 0x5d0d, 0x5fa0,\n  0x840a, 0x51b7, 0x63a0, 0x7565, 0x4eae, 0x5006, 0x5169, 0x51c9,\n  0x6881, 0x6a11, 0x7cae, 0x7cb1, 0x7ce7, 0x826f, 0x8ad2, 0x8f1b,\n  0x91cf, 0x4fb6, 0x5137, 0x52f5, 0x5442, 0x5eec, 0x616e, 0x623e,\n  0x65c5, 0x6ada, 0x6ffe, 0x792a, 0x85dc, 0x8823, 0x95ad, 0x9a62,\n  0x9a6a, 0x9e97, 0x9ece, 0x529b, 0x66c6, 0x6b77, 0x701d, 0x792b,\n  0x8f62, 0x9742, 0x6190, 0x6200, 0x6523, 0x6f23,\n  /* 0x56 */\n  0x7149, 0x7489, 0x7df4, 0x806f, 0x84ee, 0x8f26, 0x9023, 0x934a,\n  0x51bd, 0x5217, 0x52a3, 0x6d0c, 0x70c8, 0x88c2, 0x5ec9, 0x6582,\n  0x6bae, 0x6fc2, 0x7c3e, 0x7375, 0x4ee4, 0x4f36, 0x56f9, 0xf95f,\n  0x5cba, 0x5dba, 0x601c, 0x73b2, 0x7b2d, 0x7f9a, 0x7fce, 0x8046,\n  0x901e, 0x9234, 0x96f6, 0x9748, 0x9818, 0x9f61, 0x4f8b, 0x6fa7,\n  0x79ae, 0x91b4, 0x96b7, 0x52de, 0xf960, 0x6488, 0x64c4, 0x6ad3,\n  0x6f5e, 0x7018, 0x7210, 0x76e7, 0x8001, 0x8606, 0x865c, 0x8def,\n  0x8f05, 0x9732, 0x9b6f, 0x9dfa, 0x9e75, 0x788c, 0x797f, 0x7da0,\n  0x83c9, 0x9304, 0x9e7f, 0x9e93, 0x8ad6, 0x58df, 0x5f04, 0x6727,\n  0x7027, 0x74cf, 0x7c60, 0x807e, 0x5121, 0x7028, 0x7262, 0x78ca,\n  0x8cc2, 0x8cda, 0x8cf4, 0x96f7, 0x4e86, 0x50da, 0x5bee, 0x5ed6,\n  0x6599, 0x71ce, 0x7642, 0x77ad, 0x804a, 0x84fc,\n  /* 0x57 */\n  0x907c, 0x9b27, 0x9f8d, 0x58d8, 0x5a41, 0x5c62, 0x6a13, 0x6dda,\n  0x6f0f, 0x763b, 0x7d2f, 0x7e37, 0x851e, 0x8938, 0x93e4, 0x964b,\n  0x5289, 0x65d2, 0x67f3, 0x69b4, 0x6d41, 0x6e9c, 0x700f, 0x7409,\n  0x7460, 0x7559, 0x7624, 0x786b, 0x8b2c, 0x985e, 0x516d, 0x622e,\n  0x9678, 0x4f96, 0x502b, 0x5d19, 0x6dea, 0x7db8, 0x8f2a, 0x5f8b,\n  0x6144, 0x6817, 0xf961, 0x9686, 0x52d2, 0x808b, 0x51dc, 0x51cc,\n  0x695e, 0x7a1c, 0x7dbe, 0x83f1, 0x9675, 0x4fda, 0x5229, 0x5398,\n  0x540f, 0x550e, 0x5c65, 0x60a7, 0x674e, 0x68a8, 0x6d6c, 0x7281,\n  0x72f8, 0x7406, 0x7483, 0xf962, 0x75e2, 0x7c6c, 0x7f79, 0x7fb8,\n  0x8389, 0x88cf, 0x88e1, 0x91cc, 0x91d0, 0x96e2, 0x9bc9, 0x541d,\n  0x6f7e, 0x71d0, 0x7498, 0x85fa, 0x8eaa, 0x96a3, 0x9c57, 0x9e9f,\n  0x6797, 0x6dcb, 0x7433, 0x81e8, 0x9716, 0x782c,\n  /* 0x58 */\n  0x7acb, 0x7b20, 0x7c92, 0x6469, 0x746a, 0x75f2, 0x78bc, 0x78e8,\n  0x99ac, 0x9b54, 0x9ebb, 0x5bde, 0x5e55, 0x6f20, 0x819c, 0x83ab,\n  0x9088, 0x4e07, 0x534d, 0x5a29, 0x5dd2, 0x5f4e, 0x6162, 0x633d,\n  0x6669, 0x66fc, 0x6eff, 0x6f2b, 0x7063, 0x779e, 0x842c, 0x8513,\n  0x883b, 0x8f13, 0x9945, 0x9c3b, 0x551c, 0x62b9, 0x672b, 0x6cab,\n  0x8309, 0x896a, 0x977a, 0x4ea1, 0x5984, 0x5fd8, 0x5fd9, 0x671b,\n  0x7db2, 0x7f54, 0x8292, 0x832b, 0x83bd, 0x8f1e, 0x9099, 0x57cb,\n  0x59b9, 0x5a92, 0x5bd0, 0x6627, 0x679a, 0x6885, 0x6bcf, 0x7164,\n  0x7f75, 0x8cb7, 0x8ce3, 0x9081, 0x9b45, 0x8108, 0x8c8a, 0x964c,\n  0x9a40, 0x9ea5, 0x5b5f, 0x6c13, 0x731b, 0x76f2, 0x76df, 0x840c,\n  0x51aa, 0x8993, 0x514d, 0x5195, 0x52c9, 0x68c9, 0x6c94, 0x7704,\n  0x7720, 0x7dbf, 0x7dec, 0x9762, 0x9eb5, 0x6ec5,\n  /* 0x59 */\n  0x8511, 0x51a5, 0x540d, 0x547d, 0x660e, 0x669d, 0x6927, 0x6e9f,\n  0x76bf, 0x7791, 0x8317, 0x84c2, 0x879f, 0x9169, 0x9298, 0x9cf4,\n  0x8882, 0x4fae, 0x5192, 0x52df, 0x59c6, 0x5e3d, 0x6155, 0x6478,\n  0x6479, 0x66ae, 0x67d0, 0x6a21, 0x6bcd, 0x6bdb, 0x725f, 0x7261,\n  0x7441, 0x7738, 0x77db, 0x8017, 0x82bc, 0x8305, 0x8b00, 0x8b28,\n  0x8c8c, 0x6728, 0x6c90, 0x7267, 0x76ee, 0x7766, 0x7a46, 0x9da9,\n  0x6b7f, 0x6c92, 0x5922, 0x6726, 0x8499, 0x536f, 0x5893, 0x5999,\n  0x5edf, 0x63cf, 0x6634, 0x6773, 0x6e3a, 0x732b, 0x7ad7, 0x82d7,\n  0x9328, 0x52d9, 0x5deb, 0x61ae, 0x61cb, 0x620a, 0x62c7, 0x64ab,\n  0x65e0, 0x6959, 0x6b66, 0x6bcb, 0x7121, 0x73f7, 0x755d, 0x7e46,\n  0x821e, 0x8302, 0x856a, 0x8aa3, 0x8cbf, 0x9727, 0x9d61, 0x58a8,\n  0x9ed8, 0x5011, 0x520e, 0x543b, 0x554f, 0x6587,\n  /* 0x5a */\n  0x6c76, 0x7d0a, 0x7d0b, 0x805e, 0x868a, 0x9580, 0x96ef, 0x52ff,\n  0x6c95, 0x7269, 0x5473, 0x5a9a, 0x5c3e, 0x5d4b, 0x5f4c, 0x5fae,\n  0x672a, 0x68b6, 0x6963, 0x6e3c, 0x6e44, 0x7709, 0x7c73, 0x7f8e,\n  0x8587, 0x8b0e, 0x8ff7, 0x9761, 0x9ef4, 0x5cb7, 0x60b6, 0x610d,\n  0x61ab, 0x654f, 0x65fb, 0x65fc, 0x6c11, 0x6cef, 0x739f, 0x73c9,\n  0x7de1, 0x9594, 0x5bc6, 0x871c, 0x8b10, 0x525d, 0x535a, 0x62cd,\n  0x640f, 0x64b2, 0x6734, 0x6a38, 0x6cca, 0x73c0, 0x749e, 0x7b94,\n  0x7c95, 0x7e1b, 0x818a, 0x8236, 0x8584, 0x8feb, 0x96f9, 0x99c1,\n  0x4f34, 0x534a, 0x53cd, 0x53db, 0x62cc, 0x642c, 0x6500, 0x6591,\n  0x69c3, 0x6cee, 0x6f58, 0x73ed, 0x7554, 0x7622, 0x76e4, 0x76fc,\n  0x78d0, 0x78fb, 0x792c, 0x7d46, 0x822c, 0x87e0, 0x8fd4, 0x9812,\n  0x98ef, 0x52c3, 0x62d4, 0x64a5, 0x6e24, 0x6f51,\n  /* 0x5b */\n  0x767c, 0x8dcb, 0x91b1, 0x9262, 0x9aee, 0x9b43, 0x5023, 0x508d,\n  0x574a, 0x59a8, 0x5c28, 0x5e47, 0x5f77, 0x623f, 0x653e, 0x65b9,\n  0x65c1, 0x6609, 0x678b, 0x699c, 0x6ec2, 0x78c5, 0x7d21, 0x80aa,\n  0x8180, 0x822b, 0x82b3, 0x84a1, 0x868c, 0x8a2a, 0x8b17, 0x90a6,\n  0x9632, 0x9f90, 0x500d, 0x4ff3, 0xf963, 0x57f9, 0x5f98, 0x62dc,\n  0x6392, 0x676f, 0x6e43, 0x7119, 0x76c3, 0x80cc, 0x80da, 0x88f4,\n  0x88f5, 0x8919, 0x8ce0, 0x8f29, 0x914d, 0x966a, 0x4f2f, 0x4f70,\n  0x5e1b, 0x67cf, 0x6822, 0x767d, 0x767e, 0x9b44, 0x5e61, 0x6a0a,\n  0x7169, 0x71d4, 0x756a, 0xf964, 0x7e41, 0x8543, 0x85e9, 0x98dc,\n  0x4f10, 0x7b4f, 0x7f70, 0x95a5, 0x51e1, 0x5e06, 0x68b5, 0x6c3e,\n  0x6c4e, 0x6cdb, 0x72af, 0x7bc4, 0x8303, 0x6cd5, 0x743a, 0x50fb,\n  0x5288, 0x58c1, 0x64d8, 0x6a97, 0x74a7, 0x7656,\n  /* 0x5c */\n  0x78a7, 0x8617, 0x95e2, 0x9739, 0xf965, 0x535e, 0x5f01, 0x8b8a,\n  0x8fa8, 0x8faf, 0x908a, 0x5225, 0x77a5, 0x9c49, 0x9f08, 0x4e19,\n  0x5002, 0x5175, 0x5c5b, 0x5e77, 0x661e, 0x663a, 0x67c4, 0x68c5,\n  0x70b3, 0x7501, 0x75c5, 0x79c9, 0x7add, 0x8f27, 0x9920, 0x9a08,\n  0x4fdd, 0x5821, 0x5831, 0x5bf6, 0x666e, 0x6b65, 0x6d11, 0x6e7a,\n  0x6f7d, 0x73e4, 0x752b, 0x83e9, 0x88dc, 0x8913, 0x8b5c, 0x8f14,\n  0x4f0f, 0x50d5, 0x5310, 0x535c, 0x5b93, 0x5fa9, 0x670d, 0x798f,\n  0x8179, 0x832f, 0x8514, 0x8907, 0x8986, 0x8f39, 0x8f3b, 0x99a5,\n  0x9c12, 0x672c, 0x4e76, 0x4ff8, 0x5949, 0x5c01, 0x5cef, 0x5cf0,\n  0x6367, 0x68d2, 0x70fd, 0x71a2, 0x742b, 0x7e2b, 0x84ec, 0x8702,\n  0x9022, 0x92d2, 0x9cf3, 0x4e0d, 0x4ed8, 0x4fef, 0x5085, 0x5256,\n  0x526f, 0x5426, 0x5490, 0x57e0, 0x592b, 0x5a66,\n  /* 0x5d */\n  0x5b5a, 0x5b75, 0x5bcc, 0x5e9c, 0xf966, 0x6276, 0x6577, 0x65a7,\n  0x6d6e, 0x6ea5, 0x7236, 0x7b26, 0x7c3f, 0x7f36, 0x8150, 0x8151,\n  0x819a, 0x8240, 0x8299, 0x83a9, 0x8a03, 0x8ca0, 0x8ce6, 0x8cfb,\n  0x8d74, 0x8dba, 0x90e8, 0x91dc, 0x961c, 0x9644, 0x99d9, 0x9ce7,\n  0x5317, 0x5206, 0x5429, 0x5674, 0x58b3, 0x5954, 0x596e, 0x5fff,\n  0x61a4, 0x626e, 0x6610, 0x6c7e, 0x711a, 0x76c6, 0x7c89, 0x7cde,\n  0x7d1b, 0x82ac, 0x8cc1, 0x96f0, 0xf967, 0x4f5b, 0x5f17, 0x5f7f,\n  0x62c2, 0x5d29, 0x670b, 0x68da, 0x787c, 0x7e43, 0x9d6c, 0x4e15,\n  0x5099, 0x5315, 0x532a, 0x5351, 0x5983, 0x5a62, 0x5e87, 0x60b2,\n  0x618a, 0x6249, 0x6279, 0x6590, 0x6787, 0x69a7, 0x6bd4, 0x6bd6,\n  0x6bd7, 0x6bd8, 0x6cb8, 0xf968, 0x7435, 0x75fa, 0x7812, 0x7891,\n  0x79d5, 0x79d8, 0x7c83, 0x7dcb, 0x7fe1, 0x80a5,\n  /* 0x5e */\n  0x813e, 0x81c2, 0x83f2, 0x871a, 0x88e8, 0x8ab9, 0x8b6c, 0x8cbb,\n  0x9119, 0x975e, 0x98db, 0x9f3b, 0x56ac, 0x5b2a, 0x5f6c, 0x658c,\n  0x6ab3, 0x6baf, 0x6d5c, 0x6ff1, 0x7015, 0x725d, 0x73ad, 0x8ca7,\n  0x8cd3, 0x983b, 0x6191, 0x6c37, 0x8058, 0x9a01, 0x4e4d, 0x4e8b,\n  0x4e9b, 0x4ed5, 0x4f3a, 0x4f3c, 0x4f7f, 0x4fdf, 0x50ff, 0x53f2,\n  0x53f8, 0x5506, 0x55e3, 0x56db, 0x58eb, 0x5962, 0x5a11, 0x5beb,\n  0x5bfa, 0x5c04, 0x5df3, 0x5e2b, 0x5f99, 0x601d, 0x6368, 0x659c,\n  0x65af, 0x67f6, 0x67fb, 0x68ad, 0x6b7b, 0x6c99, 0x6cd7, 0x6e23,\n  0x7009, 0x7345, 0x7802, 0x793e, 0x7940, 0x7960, 0x79c1, 0x7be9,\n  0x7d17, 0x7d72, 0x8086, 0x820d, 0x838e, 0x84d1, 0x86c7, 0x88df,\n  0x8a50, 0x8a5e, 0x8b1d, 0x8cdc, 0x8d66, 0x8fad, 0x90aa, 0x98fc,\n  0x99df, 0x9e9d, 0x524a, 0xf969, 0x6714, 0xf96a,\n  /* 0x5f */\n  0x5098, 0x522a, 0x5c71, 0x6563, 0x6c55, 0x73ca, 0x7523, 0x759d,\n  0x7b97, 0x849c, 0x9178, 0x9730, 0x4e77, 0x6492, 0x6bba, 0x715e,\n  0x85a9, 0x4e09, 0xf96b, 0x6749, 0x68ee, 0x6e17, 0x829f, 0x8518,\n  0x886b, 0x63f7, 0x6f81, 0x9212, 0x98af, 0x4e0a, 0x50b7, 0x50cf,\n  0x511f, 0x5546, 0x55aa, 0x5617, 0x5b40, 0x5c19, 0x5ce0, 0x5e38,\n  0x5e8a, 0x5ea0, 0x5ec2, 0x60f3, 0x6851, 0x6a61, 0x6e58, 0x723d,\n  0x7240, 0x72c0, 0x76f8, 0x7965, 0x7bb1, 0x7fd4, 0x88f3, 0x89f4,\n  0x8a73, 0x8c61, 0x8cde, 0x971c, 0x585e, 0x74bd, 0x8cfd, 0x55c7,\n  0xf96c, 0x7a61, 0x7d22, 0x8272, 0x7272, 0x751f, 0x7525, 0xf96d,\n  0x7b19, 0x5885, 0x58fb, 0x5dbc, 0x5e8f, 0x5eb6, 0x5f90, 0x6055,\n  0x6292, 0x637f, 0x654d, 0x6691, 0x66d9, 0x66f8, 0x6816, 0x68f2,\n  0x7280, 0x745e, 0x7b6e, 0x7d6e, 0x7dd6, 0x7f72,\n  /* 0x60 */\n  0x80e5, 0x8212, 0x85af, 0x897f, 0x8a93, 0x901d, 0x92e4, 0x9ecd,\n  0x9f20, 0x5915, 0x596d, 0x5e2d, 0x60dc, 0x6614, 0x6673, 0x6790,\n  0x6c50, 0x6dc5, 0x6f5f, 0x77f3, 0x78a9, 0x84c6, 0x91cb, 0x932b,\n  0x4ed9, 0x50ca, 0x5148, 0x5584, 0x5b0b, 0x5ba3, 0x6247, 0x657e,\n  0x65cb, 0x6e32, 0x717d, 0x7401, 0x7444, 0x7487, 0x74bf, 0x766c,\n  0x79aa, 0x7dda, 0x7e55, 0x7fa8, 0x817a, 0x81b3, 0x8239, 0x861a,\n  0x87ec, 0x8a75, 0x8de3, 0x9078, 0x9291, 0x9425, 0x994d, 0x9bae,\n  0x5368, 0x5c51, 0x6954, 0x6cc4, 0x6d29, 0x6e2b, 0x820c, 0x859b,\n  0x893b, 0x8a2d, 0x8aaa, 0x96ea, 0x9f67, 0x5261, 0x66b9, 0x6bb2,\n  0x7e96, 0x87fe, 0x8d0d, 0x9583, 0x965d, 0x651d, 0x6d89, 0x71ee,\n  0xf96e, 0x57ce, 0x59d3, 0x5bac, 0x6027, 0x60fa, 0x6210, 0x661f,\n  0x665f, 0x7329, 0x73f9, 0x76db, 0x7701, 0x7b6c,\n  /* 0x61 */\n  0x8056, 0x8072, 0x8165, 0x8aa0, 0x9192, 0x4e16, 0x52e2, 0x6b72,\n  0x6d17, 0x7a05, 0x7b39, 0x7d30, 0xf96f, 0x8cb0, 0x53ec, 0x562f,\n  0x5851, 0x5bb5, 0x5c0f, 0x5c11, 0x5de2, 0x6240, 0x6383, 0x6414,\n  0x662d, 0x68b3, 0x6cbc, 0x6d88, 0x6eaf, 0x701f, 0x70a4, 0x71d2,\n  0x7526, 0x758f, 0x758e, 0x7619, 0x7b11, 0x7be0, 0x7c2b, 0x7d20,\n  0x7d39, 0x852c, 0x856d, 0x8607, 0x8a34, 0x900d, 0x9061, 0x90b5,\n  0x92b7, 0x97f6, 0x9a37, 0x4fd7, 0x5c6c, 0x675f, 0x6d91, 0x7c9f,\n  0x7e8c, 0x8b16, 0x8d16, 0x901f, 0x5b6b, 0x5dfd, 0x640d, 0x84c0,\n  0x905c, 0x98e1, 0x7387, 0x5b8b, 0x609a, 0x677e, 0x6dde, 0x8a1f,\n  0x8aa6, 0x9001, 0x980c, 0x5237, 0xf970, 0x7051, 0x788e, 0x9396,\n  0x8870, 0x91d7, 0x4fee, 0x53d7, 0x55fd, 0x56da, 0x5782, 0x58fd,\n  0x5ac2, 0x5b88, 0x5cab, 0x5cc0, 0x5e25, 0x6101,\n  /* 0x62 */\n  0x620d, 0x624b, 0x6388, 0x641c, 0x6536, 0x6578, 0x6a39, 0x6b8a,\n  0x6c34, 0x6d19, 0x6f31, 0x71e7, 0x72e9, 0x7378, 0x7407, 0x74b2,\n  0x7626, 0x7761, 0x79c0, 0x7a57, 0x7aea, 0x7cb9, 0x7d8f, 0x7dac,\n  0x7e61, 0x7f9e, 0x8129, 0x8331, 0x8490, 0x84da, 0x85ea, 0x8896,\n  0x8ab0, 0x8b90, 0x8f38, 0x9042, 0x9083, 0x916c, 0x9296, 0x92b9,\n  0x968b, 0x96a7, 0x96a8, 0x96d6, 0x9700, 0x9808, 0x9996, 0x9ad3,\n  0x9b1a, 0x53d4, 0x587e, 0x5919, 0x5b70, 0x5bbf, 0x6dd1, 0x6f5a,\n  0x719f, 0x7421, 0x74b9, 0x8085, 0x83fd, 0x5de1, 0x5f87, 0x5faa,\n  0x6042, 0x65ec, 0x6812, 0x696f, 0x6a53, 0x6b89, 0x6d35, 0x6df3,\n  0x73e3, 0x76fe, 0x77ac, 0x7b4d, 0x7d14, 0x8123, 0x821c, 0x8340,\n  0x84f4, 0x8563, 0x8a62, 0x8ac4, 0x9187, 0x931e, 0x9806, 0x99b4,\n  0x620c, 0x8853, 0x8ff0, 0x9265, 0x5d07, 0x5d27,\n  /* 0x63 */\n  0x5d69, 0x745f, 0x819d, 0x8768, 0x6fd5, 0x62fe, 0x7fd2, 0x8936,\n  0x8972, 0x4e1e, 0x4e58, 0x50e7, 0x52dd, 0x5347, 0x627f, 0x6607,\n  0x7e69, 0x8805, 0x965e, 0x4f8d, 0x5319, 0x5636, 0x59cb, 0x5aa4,\n  0x5c38, 0x5c4e, 0x5c4d, 0x5e02, 0x5f11, 0x6043, 0x65bd, 0x662f,\n  0x6642, 0x67be, 0x67f4, 0x731c, 0x77e2, 0x793a, 0x7fc5, 0x8494,\n  0x84cd, 0x8996, 0x8a66, 0x8a69, 0x8ae1, 0x8c55, 0x8c7a, 0x57f4,\n  0x5bd4, 0x5f0f, 0x606f, 0x62ed, 0x690d, 0x6b96, 0x6e5c, 0x7184,\n  0x7bd2, 0x8755, 0x8b58, 0x8efe, 0x98df, 0x98fe, 0x4f38, 0x4f81,\n  0x4fe1, 0x547b, 0x5a20, 0x5bb8, 0x613c, 0x65b0, 0x6668, 0x71fc,\n  0x7533, 0x795e, 0x7d33, 0x814e, 0x81e3, 0x8398, 0x85aa, 0x85ce,\n  0x8703, 0x8a0a, 0x8eab, 0x8f9b, 0xf971, 0x8fc5, 0x5931, 0x5ba4,\n  0x5be6, 0x6089, 0x5be9, 0x5c0b, 0x5fc3, 0x6c81,\n  /* 0x64 */\n  0xf972, 0x6df1, 0x700b, 0x751a, 0x82af, 0x8af6, 0x4ec0, 0x5341,\n  0xf973, 0x96d9, 0x6c0f, 0x4e9e, 0x4fc4, 0x5152, 0x555e, 0x5a25,\n  0x5ce8, 0x6211, 0x7259, 0x82bd, 0x83aa, 0x86fe, 0x8859, 0x8a1d,\n  0x963f, 0x96c5, 0x9913, 0x9d09, 0x9d5d, 0x580a, 0x5cb3, 0x5dbd,\n  0x5e44, 0x60e1, 0x6115, 0x63e1, 0x6a02, 0x6e25, 0x9102, 0x9354,\n  0x984e, 0x9c10, 0x9f77, 0x5b89, 0x5cb8, 0x6309, 0x664f, 0x6848,\n  0x773c, 0x96c1, 0x978d, 0x9854, 0x9b9f, 0x65a1, 0x8b01, 0x8ecb,\n  0x95bc, 0x5535, 0x5ca9, 0x5dd6, 0x5eb5, 0x6697, 0x764c, 0x83f4,\n  0x95c7, 0x58d3, 0x62bc, 0x72ce, 0x9d28, 0x4ef0, 0x592e, 0x600f,\n  0x663b, 0x6b83, 0x79e7, 0x9d26, 0x5393, 0x54c0, 0x57c3, 0x5d16,\n  0x611b, 0x66d6, 0x6daf, 0x788d, 0x827e, 0x9698, 0x9744, 0x5384,\n  0x627c, 0x6396, 0x6db2, 0x7e0a, 0x814b, 0x984d,\n  /* 0x65 */\n  0x6afb, 0x7f4c, 0x9daf, 0x9e1a, 0x4e5f, 0x503b, 0x51b6, 0x591c,\n  0x60f9, 0x63f6, 0x6930, 0x723a, 0x8036, 0xf974, 0x91ce, 0x5f31,\n  0xf975, 0xf976, 0x7d04, 0x82e5, 0x846f, 0x84bb, 0x85e5, 0x8e8d,\n  0xf977, 0x4f6f, 0xf978, 0xf979, 0x58e4, 0x5b43, 0x6059, 0x63da,\n  0x6518, 0x656d, 0x6698, 0xf97a, 0x694a, 0x6a23, 0x6d0b, 0x7001,\n  0x716c, 0x75d2, 0x760d, 0x79b3, 0x7a70, 0xf97b, 0x7f8a, 0xf97c,\n  0x8944, 0xf97d, 0x8b93, 0x91c0, 0x967d, 0xf97e, 0x990a, 0x5704,\n  0x5fa1, 0x65bc, 0x6f01, 0x7600, 0x79a6, 0x8a9e, 0x99ad, 0x9b5a,\n  0x9f6c, 0x5104, 0x61b6, 0x6291, 0x6a8d, 0x81c6, 0x5043, 0x5830,\n  0x5f66, 0x7109, 0x8a00, 0x8afa, 0x5b7c, 0x8616, 0x4ffa, 0x513c,\n  0x56b4, 0x5944, 0x63a9, 0x6df9, 0x5daa, 0x696d, 0x5186, 0x4e88,\n  0x4f59, 0xf97f, 0xf980, 0xf981, 0x5982, 0xf982,\n  /* 0x66 */\n  0xf983, 0x6b5f, 0x6c5d, 0xf984, 0x74b5, 0x7916, 0xf985, 0x8207,\n  0x8245, 0x8339, 0x8f3f, 0x8f5d, 0xf986, 0x9918, 0xf987, 0xf988,\n  0xf989, 0x4ea6, 0xf98a, 0x57df, 0x5f79, 0x6613, 0xf98b, 0xf98c,\n  0x75ab, 0x7e79, 0x8b6f, 0xf98d, 0x9006, 0x9a5b, 0x56a5, 0x5827,\n  0x59f8, 0x5a1f, 0x5bb4, 0xf98e, 0x5ef6, 0xf98f, 0xf990, 0x6350,\n  0x633b, 0xf991, 0x693d, 0x6c87, 0x6cbf, 0x6d8e, 0x6d93, 0x6df5,\n  0x6f14, 0xf992, 0x70df, 0x7136, 0x7159, 0xf993, 0x71c3, 0x71d5,\n  0xf994, 0x784f, 0x786f, 0xf995, 0x7b75, 0x7de3, 0xf996, 0x7e2f,\n  0xf997, 0x884d, 0x8edf, 0xf998, 0xf999, 0xf99a, 0x925b, 0xf99b,\n  0x9cf6, 0xf99c, 0xf99d, 0xf99e, 0x6085, 0x6d85, 0xf99f, 0x71b1,\n  0xf9a0, 0xf9a1, 0x95b1, 0x53ad, 0xf9a2, 0xf9a3, 0xf9a4, 0x67d3,\n  0xf9a5, 0x708e, 0x7130, 0x7430, 0x8276, 0x82d2,\n  /* 0x67 */\n  0xf9a6, 0x95bb, 0x9ae5, 0x9e7d, 0x66c4, 0xf9a7, 0x71c1, 0x8449,\n  0xf9a8, 0xf9a9, 0x584b, 0xf9aa, 0xf9ab, 0x5db8, 0x5f71, 0xf9ac,\n  0x6620, 0x668e, 0x6979, 0x69ae, 0x6c38, 0x6cf3, 0x6e36, 0x6f41,\n  0x6fda, 0x701b, 0x702f, 0x7150, 0x71df, 0x7370, 0xf9ad, 0x745b,\n  0xf9ae, 0x74d4, 0x76c8, 0x7a4e, 0x7e93, 0xf9af, 0xf9b0, 0x82f1,\n  0x8a60, 0x8fce, 0xf9b1, 0x9348, 0xf9b2, 0x9719, 0xf9b3, 0xf9b4,\n  0x4e42, 0x502a, 0xf9b5, 0x5208, 0x53e1, 0x66f3, 0x6c6d, 0x6fca,\n  0x730a, 0x777f, 0x7a62, 0x82ae, 0x85dd, 0x8602, 0xf9b6, 0x88d4,\n  0x8a63, 0x8b7d, 0x8c6b, 0xf9b7, 0x92b3, 0xf9b8, 0x9713, 0x9810,\n  0x4e94, 0x4f0d, 0x4fc9, 0x50b2, 0x5348, 0x543e, 0x5433, 0x55da,\n  0x5862, 0x58ba, 0x5967, 0x5a1b, 0x5be4, 0x609f, 0xf9b9, 0x61ca,\n  0x6556, 0x65ff, 0x6664, 0x68a7, 0x6c5a, 0x6fb3,\n  /* 0x68 */\n  0x70cf, 0x71ac, 0x7352, 0x7b7d, 0x8708, 0x8aa4, 0x9c32, 0x9f07,\n  0x5c4b, 0x6c83, 0x7344, 0x7389, 0x923a, 0x6eab, 0x7465, 0x761f,\n  0x7a69, 0x7e15, 0x860a, 0x5140, 0x58c5, 0x64c1, 0x74ee, 0x7515,\n  0x7670, 0x7fc1, 0x9095, 0x96cd, 0x9954, 0x6e26, 0x74e6, 0x7aa9,\n  0x7aaa, 0x81e5, 0x86d9, 0x8778, 0x8a1b, 0x5a49, 0x5b8c, 0x5b9b,\n  0x68a1, 0x6900, 0x6d63, 0x73a9, 0x7413, 0x742c, 0x7897, 0x7de9,\n  0x7feb, 0x8118, 0x8155, 0x839e, 0x8c4c, 0x962e, 0x9811, 0x66f0,\n  0x5f80, 0x65fa, 0x6789, 0x6c6a, 0x738b, 0x502d, 0x5a03, 0x6b6a,\n  0x77ee, 0x5916, 0x5d6c, 0x5dcd, 0x7325, 0x754f, 0xf9ba, 0xf9bb,\n  0x50e5, 0x51f9, 0x582f, 0x592d, 0x5996, 0x59da, 0x5be5, 0xf9bc,\n  0xf9bd, 0x5da2, 0x62d7, 0x6416, 0x6493, 0x64fe, 0xf9be, 0x66dc,\n  0xf9bf, 0x6a48, 0xf9c0, 0x71ff, 0x7464, 0xf9c1,\n  /* 0x69 */\n  0x7a88, 0x7aaf, 0x7e47, 0x7e5e, 0x8000, 0x8170, 0xf9c2, 0x87ef,\n  0x8981, 0x8b20, 0x9059, 0xf9c3, 0x9080, 0x9952, 0x617e, 0x6b32,\n  0x6d74, 0x7e1f, 0x8925, 0x8fb1, 0x4fd1, 0x50ad, 0x5197, 0x52c7,\n  0x57c7, 0x5889, 0x5bb9, 0x5eb8, 0x6142, 0x6995, 0x6d8c, 0x6e67,\n  0x6eb6, 0x7194, 0x7462, 0x7528, 0x752c, 0x8073, 0x8338, 0x84c9,\n  0x8e0a, 0x9394, 0x93de, 0xf9c4, 0x4e8e, 0x4f51, 0x5076, 0x512a,\n  0x53c8, 0x53cb, 0x53f3, 0x5b87, 0x5bd3, 0x5c24, 0x611a, 0x6182,\n  0x65f4, 0x725b, 0x7397, 0x7440, 0x76c2, 0x7950, 0x7991, 0x79b9,\n  0x7d06, 0x7fbd, 0x828b, 0x85d5, 0x865e, 0x8fc2, 0x9047, 0x90f5,\n  0x91ea, 0x9685, 0x96e8, 0x96e9, 0x52d6, 0x5f67, 0x65ed, 0x6631,\n  0x682f, 0x715c, 0x7a36, 0x90c1, 0x980a, 0x4e91, 0xf9c5, 0x6a52,\n  0x6b9e, 0x6f90, 0x7189, 0x8018, 0x82b8, 0x8553,\n  /* 0x6a */\n  0x904b, 0x9695, 0x96f2, 0x97fb, 0x851a, 0x9b31, 0x4e90, 0x718a,\n  0x96c4, 0x5143, 0x539f, 0x54e1, 0x5713, 0x5712, 0x57a3, 0x5a9b,\n  0x5ac4, 0x5bc3, 0x6028, 0x613f, 0x63f4, 0x6c85, 0x6d39, 0x6e72,\n  0x6e90, 0x7230, 0x733f, 0x7457, 0x82d1, 0x8881, 0x8f45, 0x9060,\n  0xf9c6, 0x9662, 0x9858, 0x9d1b, 0x6708, 0x8d8a, 0x925e, 0x4f4d,\n  0x5049, 0x50de, 0x5371, 0x570d, 0x59d4, 0x5a01, 0x5c09, 0x6170,\n  0x6690, 0x6e2d, 0x7232, 0x744b, 0x7def, 0x80c3, 0x840e, 0x8466,\n  0x853f, 0x875f, 0x885b, 0x8918, 0x8b02, 0x9055, 0x97cb, 0x9b4f,\n  0x4e73, 0x4f91, 0x5112, 0x516a, 0xf9c7, 0x552f, 0x55a9, 0x5b7a,\n  0x5ba5, 0x5e7c, 0x5e7d, 0x5ebe, 0x60a0, 0x60df, 0x6108, 0x6109,\n  0x63c4, 0x6538, 0x6709, 0xf9c8, 0x67d4, 0x67da, 0xf9c9, 0x6961,\n  0x6962, 0x6cb9, 0x6d27, 0xf9ca, 0x6e38, 0xf9cb,\n  /* 0x6b */\n  0x6fe1, 0x7336, 0x7337, 0xf9cc, 0x745c, 0x7531, 0xf9cd, 0x7652,\n  0xf9ce, 0xf9cf, 0x7dad, 0x81fe, 0x8438, 0x88d5, 0x8a98, 0x8adb,\n  0x8aed, 0x8e30, 0x8e42, 0x904a, 0x903e, 0x907a, 0x9149, 0x91c9,\n  0x936e, 0xf9d0, 0xf9d1, 0x5809, 0xf9d2, 0x6bd3, 0x8089, 0x80b2,\n  0xf9d3, 0xf9d4, 0x5141, 0x596b, 0x5c39, 0xf9d5, 0xf9d6, 0x6f64,\n  0x73a7, 0x80e4, 0x8d07, 0xf9d7, 0x9217, 0x958f, 0xf9d8, 0xf9d9,\n  0xf9da, 0xf9db, 0x807f, 0x620e, 0x701c, 0x7d68, 0x878d, 0xf9dc,\n  0x57a0, 0x6069, 0x6147, 0x6bb7, 0x8abe, 0x9280, 0x96b1, 0x4e59,\n  0x541f, 0x6deb, 0x852d, 0x9670, 0x97f3, 0x98ee, 0x63d6, 0x6ce3,\n  0x9091, 0x51dd, 0x61c9, 0x81ba, 0x9df9, 0x4f9d, 0x501a, 0x5100,\n  0x5b9c, 0x610f, 0x61ff, 0x64ec, 0x6905, 0x6bc5, 0x7591, 0x77e3,\n  0x7fa9, 0x8264, 0x858f, 0x87fb, 0x8863, 0x8abc,\n  /* 0x6c */\n  0x8b70, 0x91ab, 0x4e8c, 0x4ee5, 0x4f0a, 0xf9dd, 0xf9de, 0x5937,\n  0x59e8, 0xf9df, 0x5df2, 0x5f1b, 0x5f5b, 0x6021, 0xf9e0, 0xf9e1,\n  0xf9e2, 0xf9e3, 0x723e, 0x73e5, 0xf9e4, 0x7570, 0x75cd, 0xf9e5,\n  0x79fb, 0xf9e6, 0x800c, 0x8033, 0x8084, 0x82e1, 0x8351, 0xf9e7,\n  0xf9e8, 0x8cbd, 0x8cb3, 0x9087, 0xf9e9, 0xf9ea, 0x98f4, 0x990c,\n  0xf9eb, 0xf9ec, 0x7037, 0x76ca, 0x7fca, 0x7fcc, 0x7ffc, 0x8b1a,\n  0x4eba, 0x4ec1, 0x5203, 0x5370, 0xf9ed, 0x54bd, 0x56e0, 0x59fb,\n  0x5bc5, 0x5f15, 0x5fcd, 0x6e6e, 0xf9ee, 0xf9ef, 0x7d6a, 0x8335,\n  0xf9f0, 0x8693, 0x8a8d, 0xf9f1, 0x976d, 0x9777, 0xf9f2, 0xf9f3,\n  0x4e00, 0x4f5a, 0x4f7e, 0x58f9, 0x65e5, 0x6ea2, 0x9038, 0x93b0,\n  0x99b9, 0x4efb, 0x58ec, 0x598a, 0x59d9, 0x6041, 0xf9f4, 0xf9f5,\n  0x7a14, 0xf9f6, 0x834f, 0x8cc3, 0x5165, 0x5344,\n  /* 0x6d */\n  0xf9f7, 0xf9f8, 0xf9f9, 0x4ecd, 0x5269, 0x5b55, 0x82bf, 0x4ed4,\n  0x523a, 0x54a8, 0x59c9, 0x59ff, 0x5b50, 0x5b57, 0x5b5c, 0x6063,\n  0x6148, 0x6ecb, 0x7099, 0x716e, 0x7386, 0x74f7, 0x75b5, 0x78c1,\n  0x7d2b, 0x8005, 0x81ea, 0x8328, 0x8517, 0x85c9, 0x8aee, 0x8cc7,\n  0x96cc, 0x4f5c, 0x52fa, 0x56bc, 0x65ab, 0x6628, 0x707c, 0x70b8,\n  0x7235, 0x7dbd, 0x828d, 0x914c, 0x96c0, 0x9d72, 0x5b71, 0x68e7,\n  0x6b98, 0x6f7a, 0x76de, 0x5c91, 0x66ab, 0x6f5b, 0x7bb4, 0x7c2a,\n  0x8836, 0x96dc, 0x4e08, 0x4ed7, 0x5320, 0x5834, 0x58bb, 0x58ef,\n  0x596c, 0x5c07, 0x5e33, 0x5e84, 0x5f35, 0x638c, 0x66b2, 0x6756,\n  0x6a1f, 0x6aa3, 0x6b0c, 0x6f3f, 0x7246, 0xf9fa, 0x7350, 0x748b,\n  0x7ae0, 0x7ca7, 0x8178, 0x81df, 0x81e7, 0x838a, 0x846c, 0x8523,\n  0x8594, 0x85cf, 0x88dd, 0x8d13, 0x91ac, 0x9577,\n  /* 0x6e */\n  0x969c, 0x518d, 0x54c9, 0x5728, 0x5bb0, 0x624d, 0x6750, 0x683d,\n  0x6893, 0x6e3d, 0x6ed3, 0x707d, 0x7e21, 0x88c1, 0x8ca1, 0x8f09,\n  0x9f4b, 0x9f4e, 0x722d, 0x7b8f, 0x8acd, 0x931a, 0x4f47, 0x4f4e,\n  0x5132, 0x5480, 0x59d0, 0x5e95, 0x62b5, 0x6775, 0x696e, 0x6a17,\n  0x6cae, 0x6e1a, 0x72d9, 0x732a, 0x75bd, 0x7bb8, 0x7d35, 0x82e7,\n  0x83f9, 0x8457, 0x85f7, 0x8a5b, 0x8caf, 0x8e87, 0x9019, 0x90b8,\n  0x96ce, 0x9f5f, 0x52e3, 0x540a, 0x5ae1, 0x5bc2, 0x6458, 0x6575,\n  0x6ef4, 0x72c4, 0xf9fb, 0x7684, 0x7a4d, 0x7b1b, 0x7c4d, 0x7e3e,\n  0x7fdf, 0x837b, 0x8b2b, 0x8cca, 0x8d64, 0x8de1, 0x8e5f, 0x8fea,\n  0x8ff9, 0x9069, 0x93d1, 0x4f43, 0x4f7a, 0x50b3, 0x5168, 0x5178,\n  0x524d, 0x526a, 0x5861, 0x587c, 0x5960, 0x5c08, 0x5c55, 0x5edb,\n  0x609b, 0x6230, 0x6813, 0x6bbf, 0x6c08, 0x6fb1,\n  /* 0x6f */\n  0x714e, 0x7420, 0x7530, 0x7538, 0x7551, 0x7672, 0x7b4c, 0x7b8b,\n  0x7bad, 0x7bc6, 0x7e8f, 0x8a6e, 0x8f3e, 0x8f49, 0x923f, 0x9293,\n  0x9322, 0x942b, 0x96fb, 0x985a, 0x986b, 0x991e, 0x5207, 0x622a,\n  0x6298, 0x6d59, 0x7664, 0x7aca, 0x7bc0, 0x7d76, 0x5360, 0x5cbe,\n  0x5e97, 0x6f38, 0x70b9, 0x7c98, 0x9711, 0x9b8e, 0x9ede, 0x63a5,\n  0x647a, 0x8776, 0x4e01, 0x4e95, 0x4ead, 0x505c, 0x5075, 0x5448,\n  0x59c3, 0x5b9a, 0x5e40, 0x5ead, 0x5ef7, 0x5f81, 0x60c5, 0x633a,\n  0x653f, 0x6574, 0x65cc, 0x6676, 0x6678, 0x67fe, 0x6968, 0x6a89,\n  0x6b63, 0x6c40, 0x6dc0, 0x6de8, 0x6e1f, 0x6e5e, 0x701e, 0x70a1,\n  0x738e, 0x73fd, 0x753a, 0x775b, 0x7887, 0x798e, 0x7a0b, 0x7a7d,\n  0x7cbe, 0x7d8e, 0x8247, 0x8a02, 0x8aea, 0x8c9e, 0x912d, 0x914a,\n  0x91d8, 0x9266, 0x92cc, 0x9320, 0x9706, 0x9756,\n  /* 0x70 */\n  0x975c, 0x9802, 0x9f0e, 0x5236, 0x5291, 0x557c, 0x5824, 0x5e1d,\n  0x5f1f, 0x608c, 0x63d0, 0x68af, 0x6fdf, 0x796d, 0x7b2c, 0x81cd,\n  0x85ba, 0x88fd, 0x8af8, 0x8e44, 0x918d, 0x9664, 0x969b, 0x973d,\n  0x984c, 0x9f4a, 0x4fce, 0x5146, 0x51cb, 0x52a9, 0x5632, 0x5f14,\n  0x5f6b, 0x63aa, 0x64cd, 0x65e9, 0x6641, 0x66fa, 0x66f9, 0x671d,\n  0x689d, 0x68d7, 0x69fd, 0x6f15, 0x6f6e, 0x7167, 0x71e5, 0x722a,\n  0x74aa, 0x773a, 0x7956, 0x795a, 0x79df, 0x7a20, 0x7a95, 0x7c97,\n  0x7cdf, 0x7d44, 0x7e70, 0x8087, 0x85fb, 0x86a4, 0x8a54, 0x8abf,\n  0x8d99, 0x8e81, 0x9020, 0x906d, 0x91e3, 0x963b, 0x96d5, 0x9ce5,\n  0x65cf, 0x7c07, 0x8db3, 0x93c3, 0x5b58, 0x5c0a, 0x5352, 0x62d9,\n  0x731d, 0x5027, 0x5b97, 0x5f9e, 0x60b0, 0x616b, 0x68d5, 0x6dd9,\n  0x742e, 0x7a2e, 0x7d42, 0x7d9c, 0x7e31, 0x816b,\n  /* 0x71 */\n  0x8e2a, 0x8e35, 0x937e, 0x9418, 0x4f50, 0x5750, 0x5de6, 0x5ea7,\n  0x632b, 0x7f6a, 0x4e3b, 0x4f4f, 0x4f8f, 0x505a, 0x59dd, 0x80c4,\n  0x546a, 0x5468, 0x55fe, 0x594f, 0x5b99, 0x5dde, 0x5eda, 0x665d,\n  0x6731, 0x67f1, 0x682a, 0x6ce8, 0x6d32, 0x6e4a, 0x6f8d, 0x70b7,\n  0x73e0, 0x7587, 0x7c4c, 0x7d02, 0x7d2c, 0x7da2, 0x821f, 0x86db,\n  0x8a3b, 0x8a85, 0x8d70, 0x8e8a, 0x8f33, 0x9031, 0x914e, 0x9152,\n  0x9444, 0x99d0, 0x7af9, 0x7ca5, 0x4fca, 0x5101, 0x51c6, 0x57c8,\n  0x5bef, 0x5cfb, 0x6659, 0x6a3d, 0x6d5a, 0x6e96, 0x6fec, 0x710c,\n  0x756f, 0x7ae3, 0x8822, 0x9021, 0x9075, 0x96cb, 0x99ff, 0x8301,\n  0x4e2d, 0x4ef2, 0x8846, 0x91cd, 0x537d, 0x6adb, 0x696b, 0x6c41,\n  0x847a, 0x589e, 0x618e, 0x66fe, 0x62ef, 0x70dd, 0x7511, 0x75c7,\n  0x7e52, 0x84b8, 0x8b49, 0x8d08, 0x4e4b, 0x53ea,\n  /* 0x72 */\n  0x54ab, 0x5730, 0x5740, 0x5fd7, 0x6301, 0x6307, 0x646f, 0x652f,\n  0x65e8, 0x667a, 0x679d, 0x67b3, 0x6b62, 0x6c60, 0x6c9a, 0x6f2c,\n  0x77e5, 0x7825, 0x7949, 0x7957, 0x7d19, 0x80a2, 0x8102, 0x81f3,\n  0x829d, 0x82b7, 0x8718, 0x8a8c, 0xf9fc, 0x8d04, 0x8dbe, 0x9072,\n  0x76f4, 0x7a19, 0x7a37, 0x7e54, 0x8077, 0x5507, 0x55d4, 0x5875,\n  0x632f, 0x6422, 0x6649, 0x664b, 0x686d, 0x699b, 0x6b84, 0x6d25,\n  0x6eb1, 0x73cd, 0x7468, 0x74a1, 0x755b, 0x75b9, 0x76e1, 0x771e,\n  0x778b, 0x79e6, 0x7e09, 0x7e1d, 0x81fb, 0x852f, 0x8897, 0x8a3a,\n  0x8cd1, 0x8eeb, 0x8fb0, 0x9032, 0x93ad, 0x9663, 0x9673, 0x9707,\n  0x4f84, 0x53f1, 0x59ea, 0x5ac9, 0x5e19, 0x684e, 0x74c6, 0x75be,\n  0x79e9, 0x7a92, 0x81a3, 0x86ed, 0x8cea, 0x8dcc, 0x8fed, 0x659f,\n  0x6715, 0xf9fd, 0x57f7, 0x6f57, 0x7ddd, 0x8f2f,\n  /* 0x73 */\n  0x93f6, 0x96c6, 0x5fb5, 0x61f2, 0x6f84, 0x4e14, 0x4f98, 0x501f,\n  0x53c9, 0x55df, 0x5d6f, 0x5dee, 0x6b21, 0x6b64, 0x78cb, 0x7b9a,\n  0xf9fe, 0x8e49, 0x8eca, 0x906e, 0x6349, 0x643e, 0x7740, 0x7a84,\n  0x932f, 0x947f, 0x9f6a, 0x64b0, 0x6faf, 0x71e6, 0x74a8, 0x74da,\n  0x7ac4, 0x7c12, 0x7e82, 0x7cb2, 0x7e98, 0x8b9a, 0x8d0a, 0x947d,\n  0x9910, 0x994c, 0x5239, 0x5bdf, 0x64e6, 0x672d, 0x7d2e, 0x50ed,\n  0x53c3, 0x5879, 0x6158, 0x6159, 0x61fa, 0x65ac, 0x7ad9, 0x8b92,\n  0x8b96, 0x5009, 0x5021, 0x5275, 0x5531, 0x5a3c, 0x5ee0, 0x5f70,\n  0x6134, 0x655e, 0x660c, 0x6636, 0x66a2, 0x69cd, 0x6ec4, 0x6f32,\n  0x7316, 0x7621, 0x7a93, 0x8139, 0x8259, 0x83d6, 0x84bc, 0x50b5,\n  0x57f0, 0x5bc0, 0x5be8, 0x5f69, 0x63a1, 0x7826, 0x7db5, 0x83dc,\n  0x8521, 0x91c7, 0x91f5, 0x518a, 0x67f5, 0x7b56,\n  /* 0x74 */\n  0x8cac, 0x51c4, 0x59bb, 0x60bd, 0x8655, 0x501c, 0xf9ff, 0x5254,\n  0x5c3a, 0x617d, 0x621a, 0x62d3, 0x64f2, 0x65a5, 0x6ecc, 0x7620,\n  0x810a, 0x8e60, 0x965f, 0x96bb, 0x4edf, 0x5343, 0x5598, 0x5929,\n  0x5ddd, 0x64c5, 0x6cc9, 0x6dfa, 0x7394, 0x7a7f, 0x821b, 0x85a6,\n  0x8ce4, 0x8e10, 0x9077, 0x91e7, 0x95e1, 0x9621, 0x97c6, 0x51f8,\n  0x54f2, 0x5586, 0x5fb9, 0x64a4, 0x6f88, 0x7db4, 0x8f1f, 0x8f4d,\n  0x9435, 0x50c9, 0x5c16, 0x6cbe, 0x6dfb, 0x751b, 0x77bb, 0x7c3d,\n  0x7c64, 0x8a79, 0x8ac2, 0x581e, 0x59be, 0x5e16, 0x6377, 0x7252,\n  0x758a, 0x776b, 0x8adc, 0x8cbc, 0x8f12, 0x5ef3, 0x6674, 0x6df8,\n  0x807d, 0x83c1, 0x8acb, 0x9751, 0x9bd6, 0xfa00, 0x5243, 0x66ff,\n  0x6d95, 0x6eef, 0x7de0, 0x8ae6, 0x902e, 0x905e, 0x9ad4, 0x521d,\n  0x527f, 0x54e8, 0x6194, 0x6284, 0x62db, 0x68a2,\n  /* 0x75 */\n  0x6912, 0x695a, 0x6a35, 0x7092, 0x7126, 0x785d, 0x7901, 0x790e,\n  0x79d2, 0x7a0d, 0x8096, 0x8278, 0x82d5, 0x8349, 0x8549, 0x8c82,\n  0x8d85, 0x9162, 0x918b, 0x91ae, 0x4fc3, 0x56d1, 0x71ed, 0x77d7,\n  0x8700, 0x89f8, 0x5bf8, 0x5fd6, 0x6751, 0x90a8, 0x53e2, 0x585a,\n  0x5bf5, 0x60a4, 0x6181, 0x6460, 0x7e3d, 0x8070, 0x8525, 0x9283,\n  0x64ae, 0x50ac, 0x5d14, 0x6700, 0x589c, 0x62bd, 0x63a8, 0x690e,\n  0x6978, 0x6a1e, 0x6e6b, 0x76ba, 0x79cb, 0x82bb, 0x8429, 0x8acf,\n  0x8da8, 0x8ffd, 0x9112, 0x914b, 0x919c, 0x9310, 0x9318, 0x939a,\n  0x96db, 0x9a36, 0x9c0d, 0x4e11, 0x755c, 0x795d, 0x7afa, 0x7b51,\n  0x7bc9, 0x7e2e, 0x84c4, 0x8e59, 0x8e74, 0x8ef8, 0x9010, 0x6625,\n  0x693f, 0x7443, 0x51fa, 0x672e, 0x9edc, 0x5145, 0x5fe0, 0x6c96,\n  0x87f2, 0x885d, 0x8877, 0x60b4, 0x81b5, 0x8403,\n  /* 0x76 */\n  0x8d05, 0x53d6, 0x5439, 0x5634, 0x5a36, 0x5c31, 0x708a, 0x7fe0,\n  0x805a, 0x8106, 0x81ed, 0x8da3, 0x9189, 0x9a5f, 0x9df2, 0x5074,\n  0x4ec4, 0x53a0, 0x60fb, 0x6e2c, 0x5c64, 0x4f88, 0x5024, 0x55e4,\n  0x5cd9, 0x5e5f, 0x6065, 0x6894, 0x6cbb, 0x6dc4, 0x71be, 0x75d4,\n  0x75f4, 0x7661, 0x7a1a, 0x7a49, 0x7dc7, 0x7dfb, 0x7f6e, 0x81f4,\n  0x86a9, 0x8f1c, 0x96c9, 0x99b3, 0x9f52, 0x5247, 0x52c5, 0x98ed,\n  0x89aa, 0x4e03, 0x67d2, 0x6f06, 0x4fb5, 0x5be2, 0x6795, 0x6c88,\n  0x6d78, 0x741b, 0x7827, 0x91dd, 0x937c, 0x87c4, 0x79e4, 0x7a31,\n  0x5feb, 0x4ed6, 0x54a4, 0x553e, 0x58ae, 0x59a5, 0x60f0, 0x6253,\n  0x62d6, 0x6736, 0x6955, 0x8235, 0x9640, 0x99b1, 0x99dd, 0x502c,\n  0x5353, 0x5544, 0x577c, 0xfa01, 0x6258, 0xfa02, 0x64e2, 0x666b,\n  0x67dd, 0x6fc1, 0x6fef, 0x7422, 0x7438, 0x8a17,\n  /* 0x77 */\n  0x9438, 0x5451, 0x5606, 0x5766, 0x5f48, 0x619a, 0x6b4e, 0x7058,\n  0x70ad, 0x7dbb, 0x8a95, 0x596a, 0x812b, 0x63a2, 0x7708, 0x803d,\n  0x8caa, 0x5854, 0x642d, 0x69bb, 0x5b95, 0x5e11, 0x6e6f, 0xfa03,\n  0x8569, 0x514c, 0x53f0, 0x592a, 0x6020, 0x614b, 0x6b86, 0x6c70,\n  0x6cf0, 0x7b1e, 0x80ce, 0x82d4, 0x8dc6, 0x90b0, 0x98b1, 0xfa04,\n  0x64c7, 0x6fa4, 0x6491, 0x6504, 0x514e, 0x5410, 0x571f, 0x8a0e,\n  0x615f, 0x6876, 0xfa05, 0x75db, 0x7b52, 0x7d71, 0x901a, 0x5806,\n  0x69cc, 0x817f, 0x892a, 0x9000, 0x9839, 0x5078, 0x5957, 0x59ac,\n  0x6295, 0x900f, 0x9b2a, 0x615d, 0x7279, 0x95d6, 0x5761, 0x5a46,\n  0x5df4, 0x628a, 0x64ad, 0x64fa, 0x6777, 0x6ce2, 0x6d3e, 0x722c,\n  0x7436, 0x7834, 0x7f77, 0x82ad, 0x8ddb, 0x9817, 0x5224, 0x5742,\n  0x677f, 0x7248, 0x74e3, 0x8ca9, 0x8fa6, 0x9211,\n  /* 0x78 */\n  0x962a, 0x516b, 0x53ed, 0x634c, 0x4f69, 0x5504, 0x6096, 0x6557,\n  0x6c9b, 0x6d7f, 0x724c, 0x72fd, 0x7a17, 0x8987, 0x8c9d, 0x5f6d,\n  0x6f8e, 0x70f9, 0x81a8, 0x610e, 0x4fbf, 0x504f, 0x6241, 0x7247,\n  0x7bc7, 0x7de8, 0x7fe9, 0x904d, 0x97ad, 0x9a19, 0x8cb6, 0x576a,\n  0x5e73, 0x67b0, 0x840d, 0x8a55, 0x5420, 0x5b16, 0x5e63, 0x5ee2,\n  0x5f0a, 0x6583, 0x80ba, 0x853d, 0x9589, 0x965b, 0x4f48, 0x5305,\n  0x530d, 0x530f, 0x5486, 0x54fa, 0x5703, 0x5e03, 0x6016, 0x629b,\n  0x62b1, 0x6355, 0xfa06, 0x6ce1, 0x6d66, 0x75b1, 0x7832, 0x80de,\n  0x812f, 0x82de, 0x8461, 0x84b2, 0x888d, 0x8912, 0x900b, 0x92ea,\n  0x98fd, 0x9b91, 0x5e45, 0x66b4, 0x66dd, 0x7011, 0x7206, 0xfa07,\n  0x4ff5, 0x527d, 0x5f6a, 0x6153, 0x6753, 0x6a19, 0x6f02, 0x74e2,\n  0x7968, 0x8868, 0x8c79, 0x98c7, 0x98c4, 0x9a43,\n  /* 0x79 */\n  0x54c1, 0x7a1f, 0x6953, 0x8af7, 0x8c4a, 0x98a8, 0x99ae, 0x5f7c,\n  0x62ab, 0x75b2, 0x76ae, 0x88ab, 0x907f, 0x9642, 0x5339, 0x5f3c,\n  0x5fc5, 0x6ccc, 0x73cc, 0x7562, 0x758b, 0x7b46, 0x82fe, 0x999d,\n  0x4e4f, 0x903c, 0x4e0b, 0x4f55, 0x53a6, 0x590f, 0x5ec8, 0x6630,\n  0x6cb3, 0x7455, 0x8377, 0x8766, 0x8cc0, 0x9050, 0x971e, 0x9c15,\n  0x58d1, 0x5b78, 0x8650, 0x8b14, 0x9db4, 0x5bd2, 0x6068, 0x608d,\n  0x65f1, 0x6c57, 0x6f22, 0x6fa3, 0x701a, 0x7f55, 0x7ff0, 0x9591,\n  0x9592, 0x9650, 0x97d3, 0x5272, 0x8f44, 0x51fd, 0x542b, 0x54b8,\n  0x5563, 0x558a, 0x6abb, 0x6db5, 0x7dd8, 0x8266, 0x929c, 0x9677,\n  0x9e79, 0x5408, 0x54c8, 0x76d2, 0x86e4, 0x95a4, 0x95d4, 0x965c,\n  0x4ea2, 0x4f09, 0x59ee, 0x5ae6, 0x5df7, 0x6052, 0x6297, 0x676d,\n  0x6841, 0x6c86, 0x6e2f, 0x7f38, 0x809b, 0x822a,\n  /* 0x7a */\n  0xfa08, 0xfa09, 0x9805, 0x4ea5, 0x5055, 0x54b3, 0x5793, 0x595a,\n  0x5b69, 0x5bb3, 0x61c8, 0x6977, 0x6d77, 0x7023, 0x87f9, 0x89e3,\n  0x8a72, 0x8ae7, 0x9082, 0x99ed, 0x9ab8, 0x52be, 0x6838, 0x5016,\n  0x5e78, 0x674f, 0x8347, 0x884c, 0x4eab, 0x5411, 0x56ae, 0x73e6,\n  0x9115, 0x97ff, 0x9909, 0x9957, 0x9999, 0x5653, 0x589f, 0x865b,\n  0x8a31, 0x61b2, 0x6af6, 0x737b, 0x8ed2, 0x6b47, 0x96aa, 0x9a57,\n  0x5955, 0x7200, 0x8d6b, 0x9769, 0x4fd4, 0x5cf4, 0x5f26, 0x61f8,\n  0x665b, 0x6ceb, 0x70ab, 0x7384, 0x73b9, 0x73fe, 0x7729, 0x774d,\n  0x7d43, 0x7d62, 0x7e23, 0x8237, 0x8852, 0xfa0a, 0x8ce2, 0x9249,\n  0x986f, 0x5b51, 0x7a74, 0x8840, 0x9801, 0x5acc, 0x4fe0, 0x5354,\n  0x593e, 0x5cfd, 0x633e, 0x6d79, 0x72f9, 0x8105, 0x8107, 0x83a2,\n  0x92cf, 0x9830, 0x4ea8, 0x5144, 0x5211, 0x578b,\n  /* 0x7b */\n  0x5f62, 0x6cc2, 0x6ece, 0x7005, 0x7050, 0x70af, 0x7192, 0x73e9,\n  0x7469, 0x834a, 0x87a2, 0x8861, 0x9008, 0x90a2, 0x93a3, 0x99a8,\n  0x516e, 0x5f57, 0x60e0, 0x6167, 0x66b3, 0x8559, 0x8e4a, 0x91af,\n  0x978b, 0x4e4e, 0x4e92, 0x547c, 0x58d5, 0x58fa, 0x597d, 0x5cb5,\n  0x5f27, 0x6236, 0x6248, 0x660a, 0x6667, 0x6beb, 0x6d69, 0x6dcf,\n  0x6e56, 0x6ef8, 0x6f94, 0x6fe0, 0x6fe9, 0x705d, 0x72d0, 0x7425,\n  0x745a, 0x74e0, 0x7693, 0x795c, 0x7cca, 0x7e1e, 0x80e1, 0x82a6,\n  0x846b, 0x84bf, 0x864e, 0x865f, 0x8774, 0x8b77, 0x8c6a, 0x93ac,\n  0x9800, 0x9865, 0x60d1, 0x6216, 0x9177, 0x5a5a, 0x660f, 0x6df7,\n  0x6e3e, 0x743f, 0x9b42, 0x5ffd, 0x60da, 0x7b0f, 0x54c4, 0x5f18,\n  0x6c5e, 0x6cd3, 0x6d2a, 0x70d8, 0x7d05, 0x8679, 0x8a0c, 0x9d3b,\n  0x5316, 0x548c, 0x5b05, 0x6a3a, 0x706b, 0x7575,\n  /* 0x7c */\n  0x798d, 0x79be, 0x82b1, 0x83ef, 0x8a71, 0x8b41, 0x8ca8, 0x9774,\n  0xfa0b, 0x64f4, 0x652b, 0x78ba, 0x78bb, 0x7a6b, 0x4e38, 0x559a,\n  0x5950, 0x5ba6, 0x5e7b, 0x60a3, 0x63db, 0x6b61, 0x6665, 0x6853,\n  0x6e19, 0x7165, 0x74b0, 0x7d08, 0x9084, 0x9a69, 0x9c25, 0x6d3b,\n  0x6ed1, 0x733e, 0x8c41, 0x95ca, 0x51f0, 0x5e4c, 0x5fa8, 0x604d,\n  0x60f6, 0x6130, 0x614c, 0x6643, 0x6644, 0x69a5, 0x6cc1, 0x6e5f,\n  0x6ec9, 0x6f62, 0x714c, 0x749c, 0x7687, 0x7bc1, 0x7c27, 0x8352,\n  0x8757, 0x9051, 0x968d, 0x9ec3, 0x532f, 0x56de, 0x5efb, 0x5f8a,\n  0x6062, 0x6094, 0x61f7, 0x6666, 0x6703, 0x6a9c, 0x6dee, 0x6fae,\n  0x7070, 0x736a, 0x7e6a, 0x81be, 0x8334, 0x86d4, 0x8aa8, 0x8cc4,\n  0x5283, 0x7372, 0x5b96, 0x6a6b, 0x9404, 0x54ee, 0x5686, 0x5b5d,\n  0x6548, 0x6585, 0x66c9, 0x689f, 0x6d8d, 0x6dc6,\n  /* 0x7d */\n  0x723b, 0x80b4, 0x9175, 0x9a4d, 0x4faf, 0x5019, 0x539a, 0x540e,\n  0x543c, 0x5589, 0x55c5, 0x5e3f, 0x5f8c, 0x673d, 0x7166, 0x73dd,\n  0x9005, 0x52db, 0x52f3, 0x5864, 0x58ce, 0x7104, 0x718f, 0x71fb,\n  0x85b0, 0x8a13, 0x6688, 0x85a8, 0x55a7, 0x6684, 0x714a, 0x8431,\n  0x5349, 0x5599, 0x6bc1, 0x5f59, 0x5fbd, 0x63ee, 0x6689, 0x7147,\n  0x8af1, 0x8f1d, 0x9ebe, 0x4f11, 0x643a, 0x70cb, 0x7566, 0x8667,\n  0x6064, 0x8b4e, 0x9df8, 0x5147, 0x51f6, 0x5308, 0x6d36, 0x80f8,\n  0x9ed1, 0x6615, 0x6b23, 0x7098, 0x75d5, 0x5403, 0x5c79, 0x7d07,\n  0x8a16, 0x6b20, 0x6b3d, 0x6b46, 0x5438, 0x6070, 0x6d3d, 0x7fd5,\n  0x8208, 0x50d6, 0x51de, 0x559c, 0x566b, 0x56cd, 0x59ec, 0x5b09,\n  0x5e0c, 0x6199, 0x6198, 0x6231, 0x665e, 0x66e6, 0x7199, 0x71b9,\n  0x71ba, 0x72a7, 0x79a7, 0x7a00, 0x7fb2, 0x8a70,\n};\n\nstatic int\nksc5601_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x21 && c1 <= 0x2c) || (c1 >= 0x30 && c1 <= 0x48) || (c1 >= 0x4a && c1 <= 0x7d)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if (c2 >= 0x21 && c2 < 0x7f) {\n        unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);\n        unsigned short wc = 0xfffd;\n        if (i < 1410) {\n          if (i < 1115)\n            wc = ksc5601_2uni_page21[i];\n        } else if (i < 3854) {\n          if (i < 3760)\n            wc = ksc5601_2uni_page30[i-1410];\n        } else {\n          if (i < 8742)\n            wc = ksc5601_2uni_page4a[i-3854];\n        }\n        if (wc != 0xfffd) {\n          *pwc = (ucs4_t) wc;\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short ksc5601_2charset[8227] = {\n  0x222e, 0x2234, 0x2157, 0x2127, 0x2823, 0x2129, 0x2267, 0x2146,\n  0x213e, 0x2977, 0x2978, 0x2225, 0x2252, 0x2124, 0x222c, 0x2976,\n  0x282c, 0x2879, 0x2876, 0x287a, 0x222f, 0x2821, 0x2822, 0x213f,\n  0x282a, 0x282d, 0x292c, 0x2921, 0x2923, 0x2140, 0x292a, 0x292d,\n  0x2922, 0x2824, 0x2924, 0x2925, 0x2826, 0x2926, 0x2927, 0x2828,\n  0x2928, 0x2829, 0x2929, 0x2930, 0x282f, 0x292f, 0x282b, 0x292b,\n  0x282e, 0x292e, 0x2227, 0x2230, 0x2228, 0x222b, 0x222a, 0x222d,\n  0x2229, 0x2541, 0x2542, 0x2543, 0x2544, 0x2545, 0x2546, 0x2547,\n  0x2548, 0x2549, 0x254a, 0x254b, 0x254c, 0x254d, 0x254e, 0x254f,\n  0x2550, 0x2551, 0x2552, 0x2553, 0x2554, 0x2555, 0x2556, 0x2557,\n  0x2558, 0x2561, 0x2562, 0x2563, 0x2564, 0x2565, 0x2566, 0x2567,\n  0x2568, 0x2569, 0x256a, 0x256b, 0x256c, 0x256d, 0x256e, 0x256f,\n  0x2570, 0x2571, 0x2572, 0x2573, 0x2574, 0x2575, 0x2576, 0x2577,\n  0x2578, 0x2c27, 0x2c21, 0x2c22, 0x2c23, 0x2c24, 0x2c25, 0x2c26,\n  0x2c28, 0x2c29, 0x2c2a, 0x2c2b, 0x2c2c, 0x2c2d, 0x2c2e, 0x2c2f,\n  0x2c30, 0x2c31, 0x2c32, 0x2c33, 0x2c34, 0x2c35, 0x2c36, 0x2c37,\n  0x2c38, 0x2c39, 0x2c3a, 0x2c3b, 0x2c3c, 0x2c3d, 0x2c3e, 0x2c3f,\n  0x2c40, 0x2c41, 0x2c51, 0x2c52, 0x2c53, 0x2c54, 0x2c55, 0x2c56,\n  0x2c58, 0x2c59, 0x2c5a, 0x2c5b, 0x2c5c, 0x2c5d, 0x2c5e, 0x2c5f,\n  0x2c60, 0x2c61, 0x2c62, 0x2c63, 0x2c64, 0x2c65, 0x2c66, 0x2c67,\n  0x2c68, 0x2c69, 0x2c6a, 0x2c6b, 0x2c6c, 0x2c6d, 0x2c6e, 0x2c6f,\n  0x2c70, 0x2c71, 0x2c57, 0x212a, 0x212e, 0x212f, 0x2130, 0x2131,\n  0x2253, 0x2254, 0x2125, 0x2126, 0x2236, 0x2147, 0x2148, 0x2158,\n  0x2979, 0x297a, 0x297b, 0x297c, 0x297d, 0x297e, 0x2266, 0x2149,\n  0x2235, 0x2724, 0x2260, 0x2265, 0x2262, 0x2759, 0x214a, 0x2877,\n  0x2878, 0x287b, 0x287c, 0x287d, 0x287e, 0x2530, 0x2531, 0x2532,\n  0x2533, 0x2534, 0x2535, 0x2536, 0x2537, 0x2538, 0x2539, 0x2521,\n  0x2522, 0x2523, 0x2524, 0x2525, 0x2526, 0x2527, 0x2528, 0x2529,\n  0x252a, 0x2167, 0x2168, 0x2166, 0x2169, 0x216a, 0x2255, 0x2258,\n  0x2256, 0x2259, 0x2257, 0x2221, 0x2222, 0x2223, 0x2153, 0x2224,\n  0x2154, 0x2174, 0x2175, 0x2233, 0x2232, 0x216e, 0x2170, 0x2144,\n  0x2150, 0x212b, 0x217c, 0x217d, 0x217b, 0x217a, 0x2172, 0x2173,\n  0x2231, 0x2145, 0x2171, 0x212d, 0x216f, 0x2156, 0x2141, 0x2155,\n  0x2142, 0x2143, 0x216c, 0x216d, 0x2178, 0x2179, 0x2176, 0x2177,\n  0x2241, 0x2151, 0x2152, 0x2867, 0x2868, 0x2869, 0x286a, 0x286b,\n  0x286c, 0x286d, 0x286e, 0x286f, 0x2870, 0x2871, 0x2872, 0x2873,\n  0x2874, 0x2875, 0x2967, 0x2968, 0x2969, 0x296a, 0x296b, 0x296c,\n  0x296d, 0x296e, 0x296f, 0x2970, 0x2971, 0x2972, 0x2973, 0x2974,\n  0x2975, 0x294d, 0x294e, 0x294f, 0x2950, 0x2951, 0x2952, 0x2953,\n  0x2954, 0x2955, 0x2956, 0x2957, 0x2958, 0x2959, 0x295a, 0x295b,\n  0x295c, 0x295d, 0x295e, 0x295f, 0x2960, 0x2961, 0x2962, 0x2963,\n  0x2964, 0x2965, 0x2966, 0x284d, 0x284e, 0x284f, 0x2850, 0x2851,\n  0x2852, 0x2853, 0x2854, 0x2855, 0x2856, 0x2857, 0x2858, 0x2859,\n  0x285a, 0x285b, 0x285c, 0x285d, 0x285e, 0x285f, 0x2860, 0x2861,\n  0x2862, 0x2863, 0x2864, 0x2865, 0x2866, 0x2621, 0x262c, 0x2622,\n  0x262d, 0x2623, 0x2648, 0x2647, 0x262e, 0x2624, 0x2642, 0x2641,\n  0x262f, 0x2626, 0x2646, 0x2645, 0x2631, 0x2625, 0x2644, 0x2643,\n  0x2630, 0x2627, 0x263c, 0x2649, 0x264a, 0x2637, 0x264b, 0x264c,\n  0x2632, 0x2629, 0x263e, 0x264d, 0x264e, 0x2639, 0x264f, 0x2650,\n  0x2634, 0x2628, 0x2651, 0x2652, 0x2638, 0x263d, 0x2653, 0x2654,\n  0x2633, 0x262a, 0x2655, 0x2656, 0x263a, 0x263f, 0x2657, 0x2658,\n  0x2635, 0x262b, 0x2659, 0x265a, 0x263b, 0x265b, 0x265c, 0x2640,\n  0x265d, 0x265e, 0x265f, 0x2660, 0x2661, 0x2662, 0x2663, 0x2664,\n  0x2636, 0x2246, 0x2161, 0x2160, 0x2243, 0x2247, 0x2248, 0x224b,\n  0x224a, 0x2249, 0x224c, 0x2163, 0x2162, 0x223a, 0x2239, 0x2165,\n  0x2164, 0x2238, 0x2237, 0x215f, 0x215e, 0x2242, 0x215b, 0x215d,\n  0x215c, 0x2244, 0x2245, 0x215a, 0x2159, 0x224f, 0x224e, 0x2250,\n  0x2251, 0x214f, 0x214e, 0x223c, 0x223d, 0x2240, 0x223b, 0x223e,\n  0x223f, 0x224d, 0x225b, 0x225c, 0x225d, 0x225a, 0x2121, 0x2122,\n  0x2123, 0x2128, 0x2134, 0x2135, 0x2136, 0x2137, 0x2138, 0x2139,\n  0x213a, 0x213b, 0x213c, 0x213d, 0x216b, 0x2132, 0x2133, 0x2a21,\n  0x2a22, 0x2a23, 0x2a24, 0x2a25, 0x2a26, 0x2a27, 0x2a28, 0x2a29,\n  0x2a2a, 0x2a2b, 0x2a2c, 0x2a2d, 0x2a2e, 0x2a2f, 0x2a30, 0x2a31,\n  0x2a32, 0x2a33, 0x2a34, 0x2a35, 0x2a36, 0x2a37, 0x2a38, 0x2a39,\n  0x2a3a, 0x2a3b, 0x2a3c, 0x2a3d, 0x2a3e, 0x2a3f, 0x2a40, 0x2a41,\n  0x2a42, 0x2a43, 0x2a44, 0x2a45, 0x2a46, 0x2a47, 0x2a48, 0x2a49,\n  0x2a4a, 0x2a4b, 0x2a4c, 0x2a4d, 0x2a4e, 0x2a4f, 0x2a50, 0x2a51,\n  0x2a52, 0x2a53, 0x2a54, 0x2a55, 0x2a56, 0x2a57, 0x2a58, 0x2a59,\n  0x2a5a, 0x2a5b, 0x2a5c, 0x2a5d, 0x2a5e, 0x2a5f, 0x2a60, 0x2a61,\n  0x2a62, 0x2a63, 0x2a64, 0x2a65, 0x2a66, 0x2a67, 0x2a68, 0x2a69,\n  0x2a6a, 0x2a6b, 0x2a6c, 0x2a6d, 0x2a6e, 0x2a6f, 0x2a70, 0x2a71,\n  0x2a72, 0x2a73, 0x2b21, 0x2b22, 0x2b23, 0x2b24, 0x2b25, 0x2b26,\n  0x2b27, 0x2b28, 0x2b29, 0x2b2a, 0x2b2b, 0x2b2c, 0x2b2d, 0x2b2e,\n  0x2b2f, 0x2b30, 0x2b31, 0x2b32, 0x2b33, 0x2b34, 0x2b35, 0x2b36,\n  0x2b37, 0x2b38, 0x2b39, 0x2b3a, 0x2b3b, 0x2b3c, 0x2b3d, 0x2b3e,\n  0x2b3f, 0x2b40, 0x2b41, 0x2b42, 0x2b43, 0x2b44, 0x2b45, 0x2b46,\n  0x2b47, 0x2b48, 0x2b49, 0x2b4a, 0x2b4b, 0x2b4c, 0x2b4d, 0x2b4e,\n  0x2b4f, 0x2b50, 0x2b51, 0x2b52, 0x2b53, 0x2b54, 0x2b55, 0x2b56,\n  0x2b57, 0x2b58, 0x2b59, 0x2b5a, 0x2b5b, 0x2b5c, 0x2b5d, 0x2b5e,\n  0x2b5f, 0x2b60, 0x2b61, 0x2b62, 0x2b63, 0x2b64, 0x2b65, 0x2b66,\n  0x2b67, 0x2b68, 0x2b69, 0x2b6a, 0x2b6b, 0x2b6c, 0x2b6d, 0x2b6e,\n  0x2b6f, 0x2b70, 0x2b71, 0x2b72, 0x2b73, 0x2b74, 0x2b75, 0x2b76,\n  0x2421, 0x2422, 0x2423, 0x2424, 0x2425, 0x2426, 0x2427, 0x2428,\n  0x2429, 0x242a, 0x242b, 0x242c, 0x242d, 0x242e, 0x242f, 0x2430,\n  0x2431, 0x2432, 0x2433, 0x2434, 0x2435, 0x2436, 0x2437, 0x2438,\n  0x2439, 0x243a, 0x243b, 0x243c, 0x243d, 0x243e, 0x243f, 0x2440,\n  0x2441, 0x2442, 0x2443, 0x2444, 0x2445, 0x2446, 0x2447, 0x2448,\n  0x2449, 0x244a, 0x244b, 0x244c, 0x244d, 0x244e, 0x244f, 0x2450,\n  0x2451, 0x2452, 0x2453, 0x2454, 0x2455, 0x2456, 0x2457, 0x2458,\n  0x2459, 0x245a, 0x245b, 0x245c, 0x245d, 0x245e, 0x245f, 0x2460,\n  0x2461, 0x2462, 0x2463, 0x2464, 0x2465, 0x2466, 0x2467, 0x2468,\n  0x2469, 0x246a, 0x246b, 0x246c, 0x246d, 0x246e, 0x246f, 0x2470,\n  0x2471, 0x2472, 0x2473, 0x2474, 0x2475, 0x2476, 0x2477, 0x2478,\n  0x2479, 0x247a, 0x247b, 0x247c, 0x247d, 0x247e, 0x2931, 0x2932,\n  0x2933, 0x2934, 0x2935, 0x2936, 0x2937, 0x2938, 0x2939, 0x293a,\n  0x293b, 0x293c, 0x293d, 0x293e, 0x293f, 0x2940, 0x2941, 0x2942,\n  0x2943, 0x2944, 0x2945, 0x2946, 0x2947, 0x2948, 0x2949, 0x294a,\n  0x294b, 0x294c, 0x225f, 0x2831, 0x2832, 0x2833, 0x2834, 0x2835,\n  0x2836, 0x2837, 0x2838, 0x2839, 0x283a, 0x283b, 0x283c, 0x283d,\n  0x283e, 0x283f, 0x2840, 0x2841, 0x2842, 0x2843, 0x2844, 0x2845,\n  0x2846, 0x2847, 0x2848, 0x2849, 0x284a, 0x284b, 0x284c, 0x2268,\n  0x225e, 0x2749, 0x274a, 0x274b, 0x274c, 0x274d, 0x273a, 0x273b,\n  0x275c, 0x275d, 0x275e, 0x2736, 0x2737, 0x2738, 0x2754, 0x2755,\n  0x2756, 0x2757, 0x2758, 0x2721, 0x2722, 0x2723, 0x2725, 0x272b,\n  0x272c, 0x272d, 0x272e, 0x272f, 0x2730, 0x2731, 0x2732, 0x2733,\n  0x2734, 0x2727, 0x2728, 0x2729, 0x272a, 0x273d, 0x273e, 0x2765,\n  0x2766, 0x2767, 0x2768, 0x2761, 0x2762, 0x2763, 0x273f, 0x2740,\n  0x2741, 0x2742, 0x2743, 0x2744, 0x2745, 0x2746, 0x2747, 0x2748,\n  0x274e, 0x274f, 0x2750, 0x2751, 0x2752, 0x2753, 0x275a, 0x275b,\n  0x2263, 0x276c, 0x2726, 0x2760, 0x276f, 0x2261, 0x273c, 0x276d,\n  0x2735, 0x2739, 0x276a, 0x276b, 0x275f, 0x2264, 0x2764, 0x276e,\n  0x2769, 0x6c69, 0x6f4b, 0x7652, 0x5832, 0x6d5b, 0x5f32, 0x5f3e,\n  0x793b, 0x5c74, 0x7564, 0x7326, 0x5d60, 0x6126, 0x4e78, 0x5c30,\n  0x632a, 0x7169, 0x4d7a, 0x7c2f, 0x5321, 0x712b, 0x6751, 0x522c,\n  0x4e79, 0x717d, 0x5e3f, 0x7b3a, 0x7939, 0x4e52, 0x632b, 0x6b60,\n  0x4e7a, 0x4b77, 0x6525, 0x4a61, 0x544c, 0x6a61, 0x5c63, 0x5f2d,\n  0x4b6b, 0x552f, 0x5675, 0x6578, 0x5e40, 0x6c23, 0x694d, 0x6a27,\n  0x6976, 0x7b3b, 0x6769, 0x6f4c, 0x5066, 0x5e41, 0x642c, 0x584c,\n  0x7971, 0x4e5f, 0x7a24, 0x6632, 0x7a7b, 0x7a3d, 0x4c48, 0x6f4d,\n  0x5555, 0x5322, 0x6c51, 0x6427, 0x6c52, 0x7631, 0x4e7b, 0x5051,\n  0x4b3f, 0x6d24, 0x6d28, 0x5e42, 0x7662, 0x6d5c, 0x5c75, 0x6039,\n  0x544e, 0x7435, 0x535b, 0x5635, 0x6c24, 0x6466, 0x716a, 0x4b6c,\n  0x4b40, 0x6c72, 0x506a, 0x7972, 0x6c25, 0x505f, 0x676a, 0x506b,\n  0x5c51, 0x5b69, 0x7d4c, 0x5b57, 0x5a61, 0x5636, 0x635f, 0x5e43,\n  0x5e44, 0x4a21, 0x6e6c, 0x5323, 0x6e37, 0x784f, 0x6a48, 0x6e38,\n  0x712c, 0x7125, 0x694e, 0x793c, 0x6579, 0x6c6a, 0x5d56, 0x6d42,\n  0x7825, 0x653a, 0x5b58, 0x4a22, 0x514d, 0x6e6d, 0x6c6b, 0x5e45,\n  0x6360, 0x4a49, 0x7269, 0x554e, 0x7636, 0x4e42, 0x5647, 0x6334,\n  0x712d, 0x6a62, 0x5742, 0x7327, 0x4d6a, 0x6b6e, 0x5932, 0x7d25,\n  0x7655, 0x5562, 0x7835, 0x4c75, 0x7535, 0x642d, 0x676b, 0x7155,\n  0x703b, 0x6935, 0x4c49, 0x7a55, 0x6154, 0x5756, 0x5c41, 0x5e46,\n  0x7a6f, 0x6361, 0x6173, 0x5c76, 0x4e7c, 0x5b44, 0x7871, 0x5c64,\n  0x656f, 0x5c31, 0x5556, 0x735a, 0x4b41, 0x5b43, 0x597a, 0x536e,\n  0x7a38, 0x7d26, 0x6b6f, 0x7426, 0x4c4a, 0x7328, 0x735b, 0x5b27,\n  0x7637, 0x4f66, 0x7072, 0x4b5a, 0x6752, 0x5743, 0x7670, 0x685e,\n  0x6526, 0x6567, 0x4a23, 0x4c27, 0x6a49, 0x7836, 0x7a25, 0x712e,\n  0x6f4e, 0x4b6d, 0x7630, 0x6f4f, 0x694f, 0x775e, 0x4e53, 0x5c77,\n  0x5b28, 0x4b78, 0x5f21, 0x5d61, 0x754a, 0x6936, 0x676c, 0x6e6e,\n  0x7370, 0x5f3f, 0x4c4b, 0x5041, 0x7452, 0x603a, 0x5f40, 0x4e60,\n  0x5c52, 0x7d6a, 0x5676, 0x6a4a, 0x6869, 0x632c, 0x7350, 0x4a24,\n  0x5b78, 0x5e47, 0x6b70, 0x7156, 0x6562, 0x4c4c, 0x4b7b, 0x6a63,\n  0x5f41, 0x566d, 0x6950, 0x6e39, 0x5563, 0x5153, 0x6570, 0x6834,\n  0x6b43, 0x6a2a, 0x7a7c, 0x7576, 0x703c, 0x7d54, 0x603b, 0x4e43,\n  0x503a, 0x773a, 0x5873, 0x774d, 0x642e, 0x545f, 0x5067, 0x6c7d,\n  0x522e, 0x6e6f, 0x5557, 0x6a64, 0x7822, 0x4d6b, 0x573f, 0x7b31,\n  0x4d6c, 0x5c32, 0x506c, 0x4e7d, 0x6e70, 0x4c42, 0x506d, 0x6577,\n  0x737c, 0x6e22, 0x5933, 0x5874, 0x6937, 0x4e2e, 0x5922, 0x5871,\n  0x544f, 0x6527, 0x5552, 0x5629, 0x7422, 0x7157, 0x5558, 0x703d,\n  0x5750, 0x5450, 0x574f, 0x6b6a, 0x7d6b, 0x5b6d, 0x7c45, 0x4b42,\n  0x7d55, 0x7448, 0x686a, 0x7573, 0x795e, 0x536f, 0x6c53, 0x5d42,\n  0x6f37, 0x6754, 0x4a4a, 0x597b, 0x7a7d, 0x562a, 0x7478, 0x7777,\n  0x5c2c, 0x5757, 0x5f22, 0x4e3e, 0x5370, 0x7024, 0x616c, 0x4f67,\n  0x734b, 0x6d29, 0x4a3e, 0x746f, 0x764e, 0x5e7b, 0x503b, 0x5537,\n  0x6e71, 0x7428, 0x5c78, 0x4b27, 0x5a4e, 0x6066, 0x6d25, 0x6e72,\n  0x5c79, 0x795c, 0x735c, 0x7872, 0x7479, 0x7c71, 0x503c, 0x5b79,\n  0x5731, 0x4b7c, 0x7025, 0x4b7d, 0x5574, 0x4d6d, 0x4a25, 0x562b,\n  0x5042, 0x703e, 0x523d, 0x4c24, 0x7a36, 0x4c4d, 0x5a7a, 0x764f,\n  0x6938, 0x5875, 0x4c4e, 0x574d, 0x5451, 0x696d, 0x4a6b, 0x5962,\n  0x7d32, 0x632d, 0x564c, 0x5934, 0x6127, 0x6e53, 0x5043, 0x7d33,\n  0x5564, 0x4f68, 0x6d43, 0x5032, 0x4e7e, 0x5a28, 0x7850, 0x7d56,\n  0x7851, 0x7852, 0x5c53, 0x5d62, 0x7b79, 0x5d41, 0x6335, 0x6d5d,\n  0x4e44, 0x4b21, 0x5d63, 0x7c5d, 0x792f, 0x527b, 0x4f21, 0x6428,\n  0x7436, 0x6c7e, 0x632e, 0x676d, 0x7d41, 0x5a62, 0x5833, 0x5d64,\n  0x706f, 0x7671, 0x7a70, 0x5175, 0x5a4f, 0x5c54, 0x5c26, 0x6f3f,\n  0x4e4f, 0x6059, 0x5956, 0x6c54, 0x6a4b, 0x4a3f, 0x5530, 0x4f69,\n  0x716d, 0x4c4f, 0x6478, 0x646d, 0x5758, 0x7d27, 0x6a2b, 0x7632,\n  0x4f70, 0x793d, 0x6674, 0x4b5b, 0x7351, 0x6951, 0x7329, 0x5060,\n  0x6952, 0x5a63, 0x6252, 0x7622, 0x6174, 0x5a64, 0x6755, 0x753f,\n  0x4f22, 0x4d2f, 0x4f23, 0x4d30, 0x717e, 0x5023, 0x612f, 0x7823,\n  0x4a26, 0x773b, 0x726a, 0x5e48, 0x6953, 0x5e49, 0x7d5e, 0x4a40,\n  0x796a, 0x514e, 0x6e54, 0x5452, 0x5923, 0x7d28, 0x5759, 0x774e,\n  0x7a3e, 0x4f56, 0x5770, 0x6b61, 0x7845, 0x5c7a, 0x5d43, 0x795f,\n  0x676f, 0x7d65, 0x7623, 0x597c, 0x7d29, 0x676e, 0x5565, 0x6f50,\n  0x4d31, 0x7722, 0x7132, 0x7131, 0x4d32, 0x5a2b, 0x4a27, 0x6362,\n  0x7b3c, 0x5924, 0x6e3a, 0x7853, 0x7b7a, 0x4f24, 0x5c7b, 0x7663,\n  0x6d2a, 0x7221, 0x4e61, 0x7a26, 0x7960, 0x6c56, 0x646e, 0x7921,\n  0x7b6f, 0x796b, 0x6e23, 0x6a2c, 0x4a28, 0x747a, 0x4d56, 0x7c76,\n  0x7449, 0x7854, 0x7826, 0x5e4a, 0x7246, 0x575a, 0x5350, 0x5845,\n  0x6a66, 0x735d, 0x645a, 0x7664, 0x7672, 0x5f42, 0x597d, 0x4c76,\n  0x533a, 0x642f, 0x7961, 0x7026, 0x4b53, 0x603c, 0x744a, 0x547a,\n  0x7d2a, 0x7962, 0x7437, 0x7d42, 0x7c30, 0x7d6c, 0x4a62, 0x7d3d,\n  0x6a67, 0x5f43, 0x5152, 0x4e62, 0x5324, 0x7d2b, 0x5f60, 0x7247,\n  0x6770, 0x506e, 0x732a, 0x5e4b, 0x7638, 0x6175, 0x7133, 0x7723,\n  0x4a29, 0x4f25, 0x5f44, 0x6130, 0x703f, 0x7624, 0x6336, 0x7a46,\n  0x506f, 0x7d6d, 0x5d44, 0x7c77, 0x663f, 0x5e2d, 0x7a3f, 0x6571,\n  0x6d44, 0x5225, 0x7d6e, 0x7536, 0x6176, 0x5e4c, 0x7c5e, 0x6c57,\n  0x4d5d, 0x5637, 0x4d33, 0x7855, 0x6558, 0x4f6a, 0x4f50, 0x6a4c,\n  0x6a2e, 0x6a2d, 0x5371, 0x5325, 0x774f, 0x6e24, 0x5024, 0x7222,\n  0x5070, 0x7223, 0x7778, 0x5033, 0x5b29, 0x533b, 0x4a6c, 0x7126,\n  0x4b55, 0x7767, 0x4d5e, 0x7724, 0x7840, 0x535d, 0x4c50, 0x4f26,\n  0x7673, 0x6177, 0x535c, 0x7a7e, 0x7a27, 0x6b59, 0x4f27, 0x6a2f,\n  0x646f, 0x6939, 0x7158, 0x5858, 0x6072, 0x6634, 0x5c7c, 0x7371,\n  0x6350, 0x727b, 0x5b46, 0x5071, 0x5072, 0x4f5c, 0x5351, 0x4c31,\n  0x7758, 0x4b28, 0x6b3c, 0x643e, 0x745c, 0x5c42, 0x7027, 0x6640,\n  0x4a6d, 0x686b, 0x6568, 0x5c43, 0x6d5e, 0x5372, 0x4c77, 0x4e54,\n  0x672b, 0x4b43, 0x6131, 0x7732, 0x5373, 0x5352, 0x7540, 0x5f5d,\n  0x6e73, 0x6771, 0x7d34, 0x7248, 0x7352, 0x6e74, 0x6253, 0x4c51,\n  0x5f6a, 0x693a, 0x5957, 0x754d, 0x7172, 0x7a47, 0x5978, 0x5442,\n  0x7665, 0x5d45, 0x6772, 0x6d5f, 0x4a4b, 0x5b7a, 0x6835, 0x5326,\n  0x7d35, 0x7949, 0x6462, 0x7b3d, 0x5724, 0x4e45, 0x4e55, 0x5666,\n  0x653d, 0x5e4d, 0x6c73, 0x6d60, 0x6c6c, 0x7b3e, 0x5f6b, 0x6178,\n  0x793e, 0x5073, 0x602a, 0x6862, 0x6254, 0x527d, 0x6528, 0x5953,\n  0x535e, 0x7438, 0x773c, 0x5c7d, 0x686c, 0x6467, 0x6377, 0x6c28,\n  0x7a71, 0x6572, 0x5074, 0x522f, 0x5c65, 0x5025, 0x7134, 0x7c31,\n  0x4c78, 0x5d46, 0x7a51, 0x775f, 0x7a28, 0x6e75, 0x5e4e, 0x6773,\n  0x772c, 0x6b44, 0x6d61, 0x602b, 0x5d47, 0x5233, 0x523f, 0x4a4c,\n  0x7b3f, 0x657d, 0x5d65, 0x584d, 0x6c74, 0x5075, 0x686d, 0x5052,\n  0x5958, 0x7666, 0x5b2a, 0x7760, 0x5859, 0x7423, 0x745d, 0x6f51,\n  0x5935, 0x6d2b, 0x6337, 0x6e3b, 0x4d34, 0x6073, 0x6a4d, 0x6c75,\n  0x686e, 0x4b29, 0x712f, 0x4a4d, 0x6c29, 0x726b, 0x7d6f, 0x7973,\n  0x6641, 0x6c58, 0x6d2c, 0x6a4e, 0x685f, 0x5e4f, 0x5226, 0x6774,\n  0x5156, 0x6642, 0x6363, 0x6430, 0x5834, 0x7625, 0x735e, 0x5725,\n  0x7768, 0x6846, 0x7b66, 0x5d66, 0x5c7e, 0x585a, 0x5a2c, 0x6a30,\n  0x6338, 0x4a2a, 0x6179, 0x6a31, 0x726c, 0x7a6e, 0x6e55, 0x7974,\n  0x526c, 0x7b7b, 0x7d70, 0x603d, 0x4e63, 0x7846, 0x5e2e, 0x5f45,\n  0x653e, 0x6d2d, 0x7a6a, 0x4d6e, 0x6d26, 0x6d2e, 0x706d, 0x5d21,\n  0x6d2f, 0x7c78, 0x586b, 0x4c79, 0x4d35, 0x7a29, 0x615d, 0x6255,\n  0x6d4f, 0x5d22, 0x794a, 0x6a68, 0x656d, 0x536b, 0x6954, 0x617a,\n  0x644c, 0x6164, 0x6847, 0x4e5b, 0x5c55, 0x7735, 0x7c73, 0x7073,\n  0x4e2f, 0x7135, 0x6f52, 0x6848, 0x6b71, 0x4b54, 0x603e, 0x6378,\n  0x6a69, 0x7c32, 0x6074, 0x4f60, 0x6e25, 0x7a2a, 0x6643, 0x6132,\n  0x4a2b, 0x6364, 0x693b, 0x6256, 0x7372, 0x6e56, 0x6a32, 0x5076,\n  0x6c59, 0x5a4b, 0x4f28, 0x5d23, 0x585b, 0x794e, 0x6955, 0x6351,\n  0x523c, 0x582c, 0x734c, 0x4d7b, 0x7656, 0x6775, 0x686f, 0x6379,\n  0x523b, 0x7373, 0x637b, 0x5e50, 0x4e30, 0x5677, 0x7159, 0x7541,\n  0x5c44, 0x753b, 0x5e51, 0x5c66, 0x5e52, 0x6d62, 0x6e76, 0x6a4f,\n  0x706e, 0x637c, 0x535f, 0x5374, 0x6133, 0x6134, 0x7453, 0x5f46,\n  0x6956, 0x5b2b, 0x7626, 0x6339, 0x6b45, 0x7429, 0x4d36, 0x5279,\n  0x5a2d, 0x5263, 0x4f51, 0x4b5c, 0x4c7a, 0x4f5d, 0x6829, 0x633b,\n  0x633a, 0x605a, 0x6e77, 0x5c33, 0x5375, 0x5726, 0x7635, 0x575b,\n  0x6155, 0x546a, 0x5f23, 0x7d5f, 0x5077, 0x6d54, 0x4b2a, 0x645b,\n  0x617b, 0x4b22, 0x5360, 0x643f, 0x7b40, 0x5a3e, 0x644d, 0x5639,\n  0x6f40, 0x617c, 0x7639, 0x5f47, 0x6431, 0x5c67, 0x5c68, 0x7a56,\n  0x5376, 0x715a, 0x7a72, 0x627d, 0x554f, 0x5078, 0x4d5f, 0x754b,\n  0x6470, 0x4b2b, 0x5744, 0x627e, 0x5d5a, 0x5a2e, 0x4a6e, 0x5539,\n  0x6321, 0x6863, 0x732b, 0x4f29, 0x5377, 0x5471, 0x4e64, 0x6872,\n  0x6575, 0x672e, 0x563a, 0x5f6c, 0x6440, 0x6864, 0x5835, 0x645c,\n  0x7439, 0x7136, 0x625e, 0x6135, 0x4d6f, 0x7127, 0x4e65, 0x4b5d,\n  0x5963, 0x732c, 0x5079, 0x6c2b, 0x5e53, 0x7769, 0x7975, 0x615e,\n  0x4b6e, 0x633c, 0x7856, 0x5b6e, 0x7d71, 0x7736, 0x745e, 0x726d,\n  0x5b59, 0x7028, 0x617d, 0x5e54, 0x602c, 0x6d63, 0x5361, 0x5f48,\n  0x5936, 0x7d2c, 0x6f53, 0x6441, 0x786b, 0x5b2c, 0x7c46, 0x582d,\n  0x763a, 0x5b5f, 0x5353, 0x7847, 0x4a4e, 0x7841, 0x5234, 0x5c34,\n  0x7a39, 0x4a4f, 0x7c33, 0x6a6a, 0x6a6b, 0x507a, 0x6d64, 0x5d67,\n  0x5f49, 0x5f6d, 0x6e3c, 0x6f41, 0x4c52, 0x5d24, 0x5f4a, 0x5378,\n  0x7128, 0x4d37, 0x6f54, 0x645d, 0x5f6e, 0x4b2c, 0x693c, 0x6a6c,\n  0x5f4b, 0x793f, 0x562f, 0x5546, 0x4f2a, 0x4e29, 0x5678, 0x7137,\n  0x6e78, 0x5959, 0x735f, 0x7848, 0x4e46, 0x5566, 0x7466, 0x6645,\n  0x6f55, 0x4b6f, 0x7c5f, 0x5c27, 0x5667, 0x7849, 0x6352, 0x633d,\n  0x4f61, 0x7040, 0x6c5a, 0x5d57, 0x7b70, 0x6c2c, 0x7029, 0x7a57,\n  0x7b41, 0x5240, 0x6530, 0x6d65, 0x4b2d, 0x7930, 0x7725, 0x4b2e,\n  0x5a2f, 0x5836, 0x5327, 0x7b32, 0x7d44, 0x6c2d, 0x7b21, 0x6569,\n  0x696e, 0x7374, 0x7873, 0x7041, 0x5e2f, 0x7830, 0x7360, 0x672f,\n  0x5b2d, 0x6635, 0x7928, 0x5d58, 0x6859, 0x6f56, 0x5362, 0x625f,\n  0x7c60, 0x5748, 0x7d2d, 0x5f6f, 0x4c53, 0x5379, 0x5470, 0x5b47,\n  0x5e55, 0x7074, 0x5550, 0x6559, 0x7c47, 0x5c56, 0x6260, 0x5a30,\n  0x7323, 0x536c, 0x744b, 0x7d45, 0x637d, 0x7931, 0x507b, 0x6c5b,\n  0x753c, 0x7224, 0x584e, 0x584f, 0x7577, 0x7661, 0x5237, 0x7b6c,\n  0x5d48, 0x6468, 0x5241, 0x7857, 0x563b, 0x5e56, 0x773d, 0x6c2e,\n  0x5061, 0x6075, 0x6a33, 0x4e56, 0x4c25, 0x6c76, 0x6261, 0x633e,\n  0x7c48, 0x4d70, 0x7976, 0x5f70, 0x653f, 0x4e3f, 0x7c61, 0x6d30,\n  0x7d51, 0x763b, 0x794f, 0x6b5a, 0x4a41, 0x5238, 0x4d71, 0x6353,\n  0x7d66, 0x666d, 0x637a, 0x702a, 0x7950, 0x7c62, 0x7827, 0x6165,\n  0x6e79, 0x6776, 0x6a6d, 0x7c34, 0x7542, 0x575c, 0x7075, 0x5d68,\n  0x536d, 0x757c, 0x5a3f, 0x4c7b, 0x537a, 0x7424, 0x6f57, 0x5443,\n  0x7b63, 0x7b6d, 0x602d, 0x6a6e, 0x7b33, 0x6442, 0x7667, 0x525d,\n  0x5f4c, 0x7c49, 0x6529, 0x6076, 0x7633, 0x617e, 0x4b70, 0x6a6f,\n  0x6a70, 0x5a40, 0x7834, 0x6b72, 0x6443, 0x6957, 0x6471, 0x4a6f,\n  0x4e57, 0x7c4a, 0x7361, 0x4b44, 0x6365, 0x4b45, 0x6a34, 0x693d,\n  0x5749, 0x6b5b, 0x6d31, 0x4c43, 0x773e, 0x7c4b, 0x7874, 0x5937,\n  0x7353, 0x7354, 0x7764, 0x7751, 0x5837, 0x4e31, 0x4a42, 0x7b34,\n  0x4b46, 0x7076, 0x5567, 0x6a50, 0x4c54, 0x4b2f, 0x742a, 0x692f,\n  0x7543, 0x6958, 0x5d69, 0x7173, 0x557b, 0x5e3b, 0x747b, 0x7d73,\n  0x7d72, 0x7726, 0x5d49, 0x5453, 0x4c28, 0x5a41, 0x4c55, 0x5964,\n  0x7a4a, 0x6563, 0x533c, 0x4a70, 0x5044, 0x4a50, 0x7a2b, 0x6b6b,\n  0x6778, 0x5965, 0x5157, 0x7324, 0x547b, 0x7c63, 0x7a58, 0x7355,\n  0x4f2b, 0x6b73, 0x557c, 0x5354, 0x4d7c, 0x5966, 0x6279, 0x6221,\n  0x6b54, 0x6077, 0x6432, 0x4c7c, 0x7b64, 0x742b, 0x503d, 0x4a71,\n  0x6f38, 0x5740, 0x6e7a, 0x7d74, 0x5363, 0x7b42, 0x5568, 0x5b2e,\n  0x6136, 0x7837, 0x603f, 0x7b43, 0x5d6a, 0x6222, 0x6e26, 0x7668,\n  0x7675, 0x5d4a, 0x5062, 0x5d26, 0x5d6b, 0x6479, 0x632f, 0x507c,\n  0x747c, 0x4c3c, 0x776a, 0x6564, 0x5f71, 0x7761, 0x7977, 0x6f39,\n  0x7858, 0x7929, 0x7859, 0x6e3d, 0x5846, 0x6463, 0x754e, 0x5d59,\n  0x5967, 0x5239, 0x5543, 0x5a65, 0x5a50, 0x5159, 0x4e58, 0x4b5e,\n  0x742c, 0x5a7b, 0x7669, 0x6873, 0x4f2c, 0x7070, 0x747d, 0x5b48,\n  0x4e40, 0x6354, 0x514f, 0x7175, 0x4d72, 0x4f6b, 0x4d38, 0x6326,\n  0x515a, 0x7225, 0x7226, 0x644e, 0x537b, 0x7129, 0x7249, 0x6f58,\n  0x6649, 0x5838, 0x7a73, 0x7335, 0x7824, 0x5173, 0x6648, 0x785a,\n  0x5c69, 0x5e57, 0x4b5f, 0x4f6c, 0x745f, 0x5174, 0x523a, 0x5f72,\n  0x6137, 0x6223, 0x537c, 0x6d66, 0x5b49, 0x647a, 0x4f5e, 0x4e50,\n  0x5553, 0x7375, 0x772e, 0x6f48, 0x4d73, 0x754f, 0x6573, 0x7042,\n  0x4a51, 0x6a71, 0x5026, 0x595a, 0x702b, 0x6b67, 0x6540, 0x7c35,\n  0x6444, 0x4c29, 0x7d46, 0x6a35, 0x652a, 0x5f3a, 0x615f, 0x5a51,\n  0x6138, 0x6874, 0x537d, 0x6224, 0x724a, 0x5a66, 0x7733, 0x7d4d,\n  0x7336, 0x6e57, 0x7544, 0x5824, 0x7227, 0x5938, 0x5939, 0x6f49,\n  0x564e, 0x774b, 0x5f2e, 0x6875, 0x5235, 0x5355, 0x744c, 0x5a7c,\n  0x5968, 0x776b, 0x7549, 0x733c, 0x5a52, 0x5335, 0x6836, 0x564f,\n  0x743a, 0x7749, 0x4c2a, 0x7043, 0x4c56, 0x5053, 0x533d, 0x5b7b,\n  0x4b60, 0x5364, 0x7677, 0x553a, 0x734d, 0x4b61, 0x6b74, 0x742d,\n  0x7c2a, 0x776c, 0x6876, 0x5a67, 0x774c, 0x6541, 0x606e, 0x557d,\n  0x4e66, 0x7c2b, 0x553b, 0x7228, 0x6225, 0x4d39, 0x6a72, 0x4b47,\n  0x4d74, 0x5b2f, 0x6f59, 0x4d3a, 0x7c79, 0x5f73, 0x4e67, 0x5a42,\n  0x4f2d, 0x6779, 0x7828, 0x7362, 0x4a72, 0x5f24, 0x5444, 0x4c57,\n  0x6542, 0x4d3b, 0x6f5a, 0x6e58, 0x5d27, 0x6226, 0x6040, 0x5630,\n  0x784a, 0x7c7a, 0x597e, 0x5e30, 0x5d6c, 0x5a68, 0x5460, 0x5679,\n  0x4d57, 0x5e58, 0x7278, 0x6456, 0x5045, 0x742e, 0x5d28, 0x6d45,\n  0x7356, 0x5e59, 0x6366, 0x5328, 0x5b30, 0x655a, 0x633f, 0x5b31,\n  0x5569, 0x6041, 0x6f5b, 0x7069, 0x5732, 0x507d, 0x5969, 0x507e,\n  0x6c6d, 0x5329, 0x7229, 0x7044, 0x6262, 0x696f, 0x7951, 0x6959,\n  0x685a, 0x5a43, 0x5a44, 0x5445, 0x677a, 0x4d60, 0x6330, 0x5b32,\n  0x7b44, 0x7363, 0x5925, 0x7b67, 0x5d4b, 0x5054, 0x6636, 0x602e,\n  0x7d5a, 0x5c35, 0x6078, 0x6731, 0x7570, 0x585c, 0x6d46, 0x6139,\n  0x6340, 0x7940, 0x6970, 0x595b, 0x7364, 0x5c36, 0x6469, 0x7045,\n  0x6341, 0x7c4c, 0x7c4d, 0x724b, 0x724c, 0x644f, 0x715b, 0x7a59,\n  0x7138, 0x7d75, 0x6079, 0x677b, 0x7c37, 0x7c64, 0x7b45, 0x6367,\n  0x5839, 0x7678, 0x5c45, 0x4c58, 0x602f, 0x7467, 0x6f5c, 0x4f7c,\n  0x6f5d, 0x722a, 0x7d3e, 0x4a2c, 0x7d3b, 0x7d47, 0x6732, 0x6a51,\n  0x5f74, 0x516c, 0x645e, 0x6543, 0x5926, 0x4d3c, 0x7365, 0x6d55,\n  0x593a, 0x6d67, 0x7b35, 0x786c, 0x6067, 0x4c59, 0x5446, 0x6725,\n  0x5575, 0x533e, 0x7c7b, 0x6472, 0x5f75, 0x6878, 0x786d, 0x4e47,\n  0x7d76, 0x6858, 0x4d58, 0x6756, 0x4c5a, 0x4a63, 0x5f76, 0x7047,\n  0x7046, 0x583a, 0x7174, 0x7470, 0x754c, 0x7c65, 0x6a45, 0x6a73,\n  0x5d5b, 0x5c57, 0x5e7d, 0x7279, 0x5547, 0x5850, 0x7048, 0x5121,\n  0x5122, 0x5954, 0x5668, 0x594a, 0x5a31, 0x5847, 0x5c62, 0x734e,\n  0x7574, 0x7139, 0x5a53, 0x766a, 0x4f75, 0x7d2e, 0x4a52, 0x5f34,\n  0x575d, 0x7a3a, 0x6e27, 0x753d, 0x7875, 0x6d68, 0x5461, 0x5123,\n  0x6156, 0x7978, 0x5b4a, 0x4b79, 0x5454, 0x595c, 0x6e3e, 0x776d,\n  0x526e, 0x6166, 0x7779, 0x5d6d, 0x685b, 0x5b33, 0x5177, 0x6030,\n  0x5462, 0x7657, 0x5779, 0x585d, 0x4d7d, 0x722b, 0x4d3d, 0x7842,\n  0x722c, 0x4a2d, 0x4a2e, 0x4f2e, 0x6342, 0x5c37, 0x5b5a, 0x593b,\n  0x4a73, 0x7653, 0x6678, 0x6a75, 0x6a76, 0x7679, 0x4f2f, 0x4a53,\n  0x4a2f, 0x5230, 0x713a, 0x5733, 0x6343, 0x737d, 0x5e5a, 0x5e5b,\n  0x6f5e, 0x6263, 0x6e7b, 0x5f77, 0x574a, 0x4e68, 0x5b5b, 0x713b,\n  0x6971, 0x7a37, 0x5046, 0x4c2b, 0x6e28, 0x4b7a, 0x7979, 0x4c7d,\n  0x537e, 0x6450, 0x726e, 0x5455, 0x5f4d, 0x7c38, 0x5150, 0x724d,\n  0x7752, 0x4a54, 0x5559, 0x585e, 0x4d59, 0x6e29, 0x763c, 0x4c5b,\n  0x7049, 0x7c7c, 0x6849, 0x747e, 0x677c, 0x575e, 0x5e5c, 0x702c,\n  0x4c7e, 0x4d61, 0x613a, 0x5b6f, 0x5a32, 0x5125, 0x5c38, 0x5876,\n  0x5124, 0x4d62, 0x5c6a, 0x7077, 0x704a, 0x503e, 0x5d5c, 0x5456,\n  0x5356, 0x6d50, 0x4d21, 0x5f35, 0x5f78, 0x5421, 0x4e32, 0x684a,\n  0x6b75, 0x6355, 0x7550, 0x7521, 0x5927, 0x652b, 0x664b, 0x7571,\n  0x6545, 0x7923, 0x605b, 0x766b, 0x4b71, 0x596a, 0x7522, 0x5751,\n  0x5178, 0x6a78, 0x6a79, 0x5a33, 0x6f5f, 0x716f, 0x6576, 0x6e3f,\n  0x6264, 0x503f, 0x7a2c, 0x7551, 0x6733, 0x693e, 0x724e, 0x5b34,\n  0x7c4e, 0x5d6e, 0x6734, 0x5734, 0x7734, 0x4d3e, 0x5a69, 0x4f30,\n  0x7759, 0x7366, 0x4e59, 0x4e2a, 0x4b48, 0x5027, 0x704b, 0x5047,\n  0x6445, 0x5b60, 0x555a, 0x5727, 0x6e40, 0x7876, 0x7552, 0x6d69,\n  0x593c, 0x6546, 0x7523, 0x5a54, 0x6227, 0x7b7c, 0x715c, 0x4a74,\n  0x687a, 0x4e69, 0x6978, 0x6265, 0x5039, 0x5472, 0x5126, 0x5f4e,\n  0x7c74, 0x532a, 0x4c2c, 0x6f60, 0x6565, 0x5055, 0x5b7c, 0x7c66,\n  0x4b7e, 0x6d6a, 0x5e31, 0x7963, 0x5422, 0x4f76, 0x5650, 0x556a,\n  0x716e, 0x7a4b, 0x6521, 0x5531, 0x4f6d, 0x6d6b, 0x5532, 0x553c,\n  0x7d62, 0x732d, 0x7d5b, 0x6930, 0x5127, 0x7d63, 0x4e33, 0x7d64,\n  0x7a4e, 0x4a30, 0x7727, 0x4f31, 0x6622, 0x7c36, 0x722d, 0x6f61,\n  0x732e, 0x5c46, 0x596b, 0x6860, 0x6128, 0x5576, 0x4f7d, 0x5e5d,\n  0x5951, 0x646a, 0x724f, 0x773f, 0x6266, 0x6228, 0x6356, 0x6d51,\n  0x6979, 0x5631, 0x5e32, 0x6068, 0x532b, 0x6b5c, 0x5f2f, 0x4a43,\n  0x6e7c, 0x7d43, 0x6b76, 0x4f32, 0x596c, 0x593d, 0x585f, 0x5438,\n  0x6b3e, 0x5d6f, 0x5d70, 0x5d71, 0x5d72, 0x593e, 0x7b46, 0x4f33,\n  0x6e7d, 0x642b, 0x5a45, 0x586c, 0x5128, 0x6229, 0x5e3c, 0x6735,\n  0x5b70, 0x6f62, 0x7170, 0x4f34, 0x5b71, 0x6031, 0x5f25, 0x7952,\n  0x677d, 0x6623, 0x7b71, 0x4b30, 0x722e, 0x4d67, 0x685c, 0x6757,\n  0x7740, 0x5063, 0x5a21, 0x4c3d, 0x5129, 0x5d4c, 0x637e, 0x512a,\n  0x682a, 0x6a36, 0x797a, 0x664c, 0x7658, 0x5447, 0x594b, 0x5952,\n  0x534b, 0x5877, 0x5a29, 0x7578, 0x5e5e, 0x722f, 0x7829, 0x5848,\n  0x6e41, 0x7941, 0x5d73, 0x6a7a, 0x763d, 0x613b, 0x4d3f, 0x7454,\n  0x664d, 0x7c4f, 0x7b22, 0x605c, 0x743b, 0x5a55, 0x7932, 0x7b72,\n  0x5b76, 0x5e5f, 0x5b72, 0x785c, 0x776e, 0x6b68, 0x527a, 0x713c,\n  0x7a5a, 0x5a6a, 0x5a46, 0x7741, 0x6736, 0x6547, 0x562c, 0x5c47,\n  0x6129, 0x622a, 0x5526, 0x5457, 0x7250, 0x6a7b, 0x605d, 0x7b73,\n  0x713d, 0x6267, 0x7d57, 0x4e48, 0x6a37, 0x7c40, 0x7d67, 0x776f,\n  0x5735, 0x6f3a, 0x715d, 0x5e33, 0x684b, 0x785d, 0x7b47, 0x5548,\n  0x575f, 0x5d29, 0x6931, 0x7a2d, 0x7659, 0x7a74, 0x782a, 0x666e,\n  0x4c5c, 0x613c, 0x606f, 0x693f, 0x7c7d, 0x664e, 0x6157, 0x664f,\n  0x7471, 0x6473, 0x647b, 0x7964, 0x6f63, 0x4f6e, 0x763e, 0x6032,\n  0x7c7e, 0x512b, 0x577a, 0x7b48, 0x6257, 0x5423, 0x7078, 0x5728,\n  0x6167, 0x533f, 0x6f64, 0x5745, 0x6b62, 0x7c67, 0x6422, 0x6268,\n  0x6650, 0x7b68, 0x7468, 0x6574, 0x743c, 0x7455, 0x5f36, 0x7c39,\n  0x6e42, 0x4a75, 0x6f65, 0x4b62, 0x5424, 0x5e60, 0x5a7d, 0x6446,\n  0x683e, 0x605e, 0x7634, 0x6a52, 0x797b, 0x6042, 0x4a64, 0x6737,\n  0x6a7d, 0x595d, 0x5a34, 0x6e2a, 0x7b69, 0x5b4b, 0x5a35, 0x713e,\n  0x532c, 0x7b49, 0x5f4f, 0x5340, 0x6357, 0x6f66, 0x7c50, 0x6940,\n  0x7553, 0x6c5c, 0x7737, 0x6a38, 0x5179, 0x5c48, 0x6a39, 0x715e,\n  0x5736, 0x4f35, 0x5928, 0x6c6e, 0x5d2a, 0x4d22, 0x682e, 0x613d,\n  0x7251, 0x6941, 0x527c, 0x5b35, 0x7367, 0x587e, 0x7c51, 0x6d32,\n  0x742f, 0x7b23, 0x7c41, 0x6e2b, 0x5425, 0x7472, 0x6e59, 0x7b4a,\n  0x4d63, 0x583b, 0x655b, 0x7877, 0x7654, 0x5729, 0x4b49, 0x6651,\n  0x704c, 0x582e, 0x7953, 0x557e, 0x583c, 0x7230, 0x622b, 0x7368,\n  0x6f42, 0x6d6c, 0x6738, 0x5a7e, 0x4c3e, 0x727c, 0x5a6b, 0x6258,\n  0x6d56, 0x5651, 0x6033, 0x7c52, 0x6b48, 0x5341, 0x704d, 0x4f77,\n  0x6d52, 0x5458, 0x5c49, 0x5771, 0x5f3b, 0x7325, 0x744d, 0x713f,\n  0x7831, 0x697a, 0x7b4b, 0x4a55, 0x7954, 0x774a, 0x5648, 0x7c68,\n  0x733d, 0x6e7e, 0x677e, 0x5342, 0x5336, 0x4c2d, 0x767a, 0x5632,\n  0x5258, 0x6758, 0x6325, 0x6739, 0x702d, 0x7b4c, 0x6b21, 0x5426,\n  0x7b4d, 0x553d, 0x715f, 0x767b, 0x5e34, 0x556b, 0x6548, 0x7b24,\n  0x5439, 0x5e61, 0x6423, 0x5737, 0x786e, 0x5e35, 0x5652, 0x7955,\n  0x673a, 0x6b55, 0x5577, 0x6f67, 0x613e, 0x7a2e, 0x5669, 0x566e,\n  0x673b, 0x6c4b, 0x5533, 0x4e34, 0x7b25, 0x616e, 0x7728, 0x7b4e,\n  0x583d, 0x7b7d, 0x7c69, 0x4f36, 0x6d47, 0x6e2c, 0x4c5d, 0x7627,\n  0x667a, 0x7524, 0x7d5c, 0x6d33, 0x4e49, 0x6f68, 0x613f, 0x7a5b,\n  0x4b63, 0x7729, 0x7b26, 0x5c39, 0x7140, 0x6d48, 0x6f43, 0x562d,\n  0x7d4e, 0x6821, 0x7b74, 0x5527, 0x7176, 0x6653, 0x4c5e, 0x7832,\n  0x5c6b, 0x7d36, 0x656a, 0x7160, 0x5b4c, 0x5d4d, 0x5448, 0x596d,\n  0x7525, 0x667b, 0x6654, 0x7d48, 0x5621, 0x7d3f, 0x7c53, 0x6f21,\n  0x673c, 0x516e, 0x6655, 0x6972, 0x5f30, 0x5860, 0x7c3a, 0x7d2f,\n  0x704e, 0x5b61, 0x6549, 0x6d34, 0x6043, 0x6358, 0x697b, 0x6a28,\n  0x7d37, 0x7b27, 0x6942, 0x7d77, 0x6259, 0x5c6c, 0x6822, 0x6670,\n  0x7d78, 0x7d79, 0x763f, 0x6727, 0x6657, 0x5473, 0x5449, 0x567a,\n  0x5772, 0x6140, 0x5b62, 0x6658, 0x673d, 0x704f, 0x733e, 0x622c,\n  0x7537, 0x6070, 0x7d38, 0x6368, 0x5427, 0x687c, 0x7a52, 0x786f,\n  0x5653, 0x5534, 0x7050, 0x7770, 0x6e33, 0x6a3a, 0x6a53, 0x6d49,\n  0x5d2b, 0x652c, 0x7d21, 0x5f50, 0x6c33, 0x5f51, 0x6d6d, 0x7838,\n  0x777a, 0x782b, 0x7460, 0x543a, 0x6433, 0x695a, 0x5e36, 0x593f,\n  0x5940, 0x566f, 0x594c, 0x5a2a, 0x5f65, 0x7765, 0x4c32, 0x5f79,\n  0x5760, 0x543b, 0x7d7a, 0x4c33, 0x5b73, 0x5f52, 0x4e4a, 0x6e5a,\n  0x6464, 0x7b4f, 0x4f37, 0x6e43, 0x4e6a, 0x622d, 0x5761, 0x7a75,\n  0x5549, 0x782c, 0x6759, 0x7369, 0x586d, 0x6344, 0x7071, 0x6865,\n  0x607a, 0x6e44, 0x595e, 0x6b22, 0x6b23, 0x7c42, 0x6a3b, 0x682b,\n  0x5e62, 0x6d6f, 0x6823, 0x4f71, 0x543c, 0x7c6a, 0x673e, 0x7c72,\n  0x5634, 0x622e, 0x5337, 0x7a4c, 0x7a5c, 0x6d35, 0x6163, 0x682c,\n  0x685d, 0x6f69, 0x743d, 0x4f38, 0x695b, 0x512c, 0x5a47, 0x6b49,\n  0x684c, 0x5e37, 0x563c, 0x5365, 0x7a5d, 0x5a56, 0x4a31, 0x5a48,\n  0x5f26, 0x7933, 0x7252, 0x4a44, 0x4e4b, 0x4d75, 0x7d30, 0x5528,\n  0x7141, 0x6269, 0x5c4a, 0x6c34, 0x7a40, 0x7b28, 0x5028, 0x5a6c,\n  0x596e, 0x607b, 0x6f6a, 0x7a5e, 0x6044, 0x4f39, 0x554a, 0x5762,\n  0x622f, 0x5738, 0x684d, 0x765a, 0x6f22, 0x625a, 0x767c, 0x7b50,\n  0x512d, 0x4d64, 0x512e, 0x5c6d, 0x684e, 0x7079, 0x4e35, 0x667c,\n  0x577b, 0x5056, 0x5d75, 0x7771, 0x767d, 0x5b77, 0x7b6a, 0x695c,\n  0x5941, 0x7572, 0x6045, 0x6a54, 0x7942, 0x6a3c, 0x5245, 0x7b51,\n  0x6740, 0x6b25, 0x5f7a, 0x6322, 0x5739, 0x6943, 0x687d, 0x682f,\n  0x7253, 0x7b29, 0x5825, 0x554b, 0x5048, 0x512f, 0x5763, 0x6046,\n  0x5622, 0x6d70, 0x5773, 0x7c54, 0x5a57, 0x4c5f, 0x7254, 0x5130,\n  0x4c60, 0x5b7d, 0x733f, 0x7051, 0x7c3b, 0x6230, 0x6625, 0x625b,\n  0x5f5e, 0x6047, 0x726f, 0x4c61, 0x566a, 0x6742, 0x4e36, 0x7340,\n  0x4d7e, 0x7b52, 0x7878, 0x777b, 0x683f, 0x6837, 0x6d36, 0x5c3a,\n  0x4c34, 0x7177, 0x6838, 0x4a76, 0x6424, 0x7456, 0x5f66, 0x5f27,\n  0x5f67, 0x6141, 0x6944, 0x5c4b, 0x6945, 0x6f23, 0x6b26, 0x4b23,\n  0x6369, 0x517b, 0x6f24, 0x6f6b, 0x5034, 0x4d23, 0x6866, 0x6f25,\n  0x534c, 0x5a6d, 0x573a, 0x7255, 0x7565, 0x596f, 0x7934, 0x5554,\n  0x7d4f, 0x5b63, 0x7161, 0x6c36, 0x7b7e, 0x5357, 0x5131, 0x4b31,\n  0x5132, 0x4b32, 0x7142, 0x7461, 0x7935, 0x6143, 0x6142, 0x6b77,\n  0x5f28, 0x4b4a, 0x6639, 0x785e, 0x792a, 0x4a77, 0x6d37, 0x5338,\n  0x7256, 0x5459, 0x6e45, 0x7270, 0x4a32, 0x5c3b, 0x7178, 0x6c37,\n  0x654a, 0x7640, 0x7d5d, 0x5463, 0x4c62, 0x7754, 0x5765, 0x5343,\n  0x5826, 0x7641, 0x5d76, 0x4d40, 0x655c, 0x654b, 0x6144, 0x6830,\n  0x7430, 0x736a, 0x5a6e, 0x573b, 0x6231, 0x572a, 0x567b, 0x645f,\n  0x4a56, 0x6b28, 0x5b7e, 0x7642, 0x6f3b, 0x547d, 0x6048, 0x6839,\n  0x6f26, 0x4d24, 0x5474, 0x5b21, 0x5b5c, 0x5b5d, 0x6e5c, 0x4b4b,\n  0x7c55, 0x4e6b, 0x4d41, 0x7b53, 0x792b, 0x7554, 0x5929, 0x695d,\n  0x5b4d, 0x5d4e, 0x6743, 0x6c4c, 0x796c, 0x4b4c, 0x607c, 0x5428,\n  0x6d53, 0x586f, 0x7257, 0x4a78, 0x5a6f, 0x5654, 0x594d, 0x586e,\n  0x7241, 0x5f53, 0x5a70, 0x626a, 0x607d, 0x5878, 0x772f, 0x5a36,\n  0x4a57, 0x7258, 0x5879, 0x7a5f, 0x4f6f, 0x5942, 0x7052, 0x6451,\n  0x7337, 0x7a60, 0x6f6c, 0x6232, 0x543d, 0x594e, 0x7462, 0x5429,\n  0x4d42, 0x675a, 0x7259, 0x592a, 0x583e, 0x5c2d, 0x626b, 0x567c,\n  0x4a79, 0x545a, 0x7457, 0x4c21, 0x4f3a, 0x7538, 0x5943, 0x5068,\n  0x6345, 0x6b78, 0x7231, 0x4f3b, 0x532d, 0x6861, 0x4e6c, 0x6034,\n  0x5e63, 0x5d77, 0x7232, 0x7376, 0x765b, 0x577e, 0x785f, 0x7772,\n  0x5029, 0x665a, 0x7526, 0x573c, 0x4c63, 0x665b, 0x5d5d, 0x5133,\n  0x6f6d, 0x565e, 0x6474, 0x616f, 0x5d78, 0x684f, 0x4a65, 0x5c21,\n  0x6035, 0x7c2c, 0x7c2d, 0x5827, 0x6d38, 0x5b36, 0x5670, 0x732f,\n  0x4d25, 0x5a71, 0x5828, 0x4c64, 0x5134, 0x4a58, 0x5a72, 0x7527,\n  0x7528, 0x6626, 0x556c, 0x5578, 0x5a73, 0x6346, 0x5e64, 0x5e65,\n  0x5135, 0x5136, 0x5137, 0x7233, 0x695e, 0x7053, 0x7234, 0x7054,\n  0x4b64, 0x7b54, 0x7566, 0x636a, 0x5e66, 0x5f54, 0x7879, 0x702e,\n  0x5138, 0x565f, 0x5057, 0x7c21, 0x6f6e, 0x5c58, 0x695f, 0x655d,\n  0x7d7b, 0x6049, 0x5649, 0x542a, 0x654c, 0x6960, 0x5058, 0x7c22,\n  0x543e, 0x6233, 0x5e67, 0x5c3c, 0x5236, 0x7555, 0x4e21, 0x7529,\n  0x5d79, 0x5d7a, 0x7055, 0x765f, 0x725a, 0x646b, 0x7271, 0x6c39,\n  0x7d7c, 0x612a, 0x4a59, 0x6f6f, 0x752a, 0x6c79, 0x782d, 0x7242,\n  0x7643, 0x5752, 0x7922, 0x7056, 0x707a, 0x7660, 0x6973, 0x7243,\n  0x542b, 0x4a33, 0x4d26, 0x4d43, 0x4d5a, 0x594f, 0x7644, 0x6e5d,\n  0x6744, 0x6234, 0x5f62, 0x675b, 0x6831, 0x7c2e, 0x654d, 0x7a6b,\n  0x4f3c, 0x4f62, 0x4d76, 0x6f70, 0x743e, 0x544d, 0x7338, 0x6921,\n  0x7272, 0x736b, 0x7057, 0x4f57, 0x4f5f, 0x6840, 0x6841, 0x4f63,\n  0x6922, 0x502a, 0x7341, 0x502b, 0x5464, 0x6f3c, 0x5821, 0x595f,\n  0x7357, 0x5c3d, 0x4c65, 0x6d71, 0x7162, 0x545b, 0x6235, 0x4a66,\n  0x532e, 0x4c66, 0x7153, 0x7567, 0x4a5a, 0x7b6e, 0x6145, 0x5f69,\n  0x6e5e, 0x7742, 0x5822, 0x5d2c, 0x702f, 0x563d, 0x612b, 0x7936,\n  0x5475, 0x5049, 0x6f27, 0x626c, 0x5b6a, 0x4e4c, 0x7568, 0x7755,\n  0x534d, 0x737e, 0x5035, 0x607e, 0x5f7b, 0x665d, 0x6824, 0x4b4d,\n  0x6f28, 0x6e34, 0x5a58, 0x5139, 0x5f29, 0x7330, 0x4c44, 0x4e37,\n  0x6f29, 0x5f55, 0x6d57, 0x6e46, 0x6f3d, 0x7c56, 0x5b74, 0x6f2a,\n  0x7839, 0x7569, 0x6359, 0x6146, 0x543f, 0x5e68, 0x706a, 0x7342,\n  0x532f, 0x4a5b, 0x7c57, 0x6d58, 0x6147, 0x7458, 0x5633, 0x5d2d,\n  0x553e, 0x7143, 0x6e5f, 0x566b, 0x7459, 0x5766, 0x5a37, 0x5d7b,\n  0x5d4f, 0x5823, 0x5a59, 0x7058, 0x6f44, 0x6158, 0x7154, 0x6d72,\n  0x555b, 0x555c, 0x7344, 0x4b57, 0x6236, 0x6f71, 0x7b55, 0x5358,\n  0x5d50, 0x7059, 0x4b33, 0x555d, 0x4d27, 0x502c, 0x513a, 0x7144,\n  0x6533, 0x7b75, 0x6961, 0x7d60, 0x7c3c, 0x5a22, 0x5a23, 0x5221,\n  0x526f, 0x626d, 0x5e69, 0x4e5c, 0x7235, 0x5064, 0x5d51, 0x6148,\n  0x5b37, 0x5f63, 0x6d39, 0x7145, 0x734f, 0x572b, 0x612c, 0x636b,\n  0x6e47, 0x6149, 0x4a7a, 0x707b, 0x7a61, 0x705a, 0x4c67, 0x5a74,\n  0x4c3f, 0x4e6d, 0x5529, 0x7a62, 0x5065, 0x6b56, 0x6c5f, 0x5f7c,\n  0x7756, 0x5e6a, 0x4b34, 0x6f3e, 0x4c35, 0x4f3d, 0x6f72, 0x6237,\n  0x4c68, 0x707c, 0x5660, 0x7146, 0x6238, 0x6b2b, 0x4b35, 0x5851,\n  0x744e, 0x7377, 0x5746, 0x513b, 0x772a, 0x6d4a, 0x5753, 0x587a,\n  0x7645, 0x514c, 0x5d7c, 0x5f7d, 0x7965, 0x604a, 0x727d, 0x5330,\n  0x7473, 0x5a49, 0x665e, 0x783a, 0x6850, 0x587b, 0x6a55, 0x5623,\n  0x7646, 0x725b, 0x647c, 0x6832, 0x5a5a, 0x725c, 0x7b56, 0x6932,\n  0x6e2d, 0x7a63, 0x5c6e, 0x756a, 0x6660, 0x707d, 0x572c, 0x7545,\n  0x6e60, 0x5b65, 0x5d5e, 0x5970, 0x6923, 0x7179, 0x7244, 0x604b,\n  0x6924, 0x6239, 0x6331, 0x7c6b, 0x4d28, 0x4c36, 0x705b, 0x663a,\n  0x4d29, 0x7343, 0x6159, 0x6f2b, 0x6745, 0x6069, 0x7345, 0x5440,\n  0x553f, 0x5d2e, 0x797c, 0x4c40, 0x6522, 0x4e38, 0x5852, 0x7956,\n  0x712a, 0x4e51, 0x7647, 0x5b6b, 0x5f7e, 0x5861, 0x7773, 0x5767,\n  0x547e, 0x513c, 0x654f, 0x4b36, 0x5a38, 0x4d44, 0x563e, 0x623a,\n  0x4f58, 0x604c, 0x6b79, 0x7d7d, 0x5768, 0x4b58, 0x6962, 0x683a,\n  0x6347, 0x6c4d, 0x6c4e, 0x563f, 0x6327, 0x5f56, 0x7d68, 0x6e61,\n  0x7628, 0x5d7d, 0x783b, 0x6851, 0x7957, 0x4e6e, 0x6c4f, 0x6925,\n  0x5655, 0x4d45, 0x6d3a, 0x513d, 0x4f3e, 0x6c3b, 0x5231, 0x4c69,\n  0x5944, 0x697c, 0x513e, 0x6c3c, 0x652d, 0x7730, 0x4c6a, 0x5344,\n  0x5640, 0x567d, 0x6121, 0x5e3d, 0x7629, 0x5a24, 0x5624, 0x7546,\n  0x6122, 0x6946, 0x7245, 0x7469, 0x566c, 0x6b53, 0x6c3d, 0x625c,\n  0x5e6b, 0x705c, 0x6b3f, 0x574e, 0x513f, 0x752b, 0x797d, 0x4a5c,\n  0x4d46, 0x7236, 0x5d7e, 0x4c37, 0x5b38, 0x5069, 0x4e5d, 0x6b40,\n  0x7d22, 0x784b, 0x6a56, 0x7130, 0x5b4e, 0x7743, 0x5b4f, 0x4b24,\n  0x7860, 0x7b57, 0x6b4a, 0x6021, 0x4e4d, 0x545c, 0x7d58, 0x5276,\n  0x7237, 0x7a76, 0x762a, 0x7a77, 0x5866, 0x7431, 0x6852, 0x4a45,\n  0x4c6b, 0x626e, 0x623b, 0x772d, 0x7861, 0x736c, 0x5e21, 0x647d,\n  0x636c, 0x5d2f, 0x5d30, 0x4b37, 0x6853, 0x6123, 0x5260, 0x707e,\n  0x6926, 0x4b72, 0x6d73, 0x5c59, 0x604d, 0x775a, 0x5b39, 0x4c2e,\n  0x5a5b, 0x4d47, 0x5d31, 0x582f, 0x6323, 0x4e6f, 0x7273, 0x7833,\n  0x604e, 0x757d, 0x6b6c, 0x5345, 0x7c6c, 0x525b, 0x546b, 0x5e22,\n  0x6566, 0x7030, 0x5544, 0x6d74, 0x636d, 0x6842, 0x6d75, 0x577c,\n  0x6d3b, 0x762b, 0x7238, 0x7648, 0x5366, 0x725d, 0x4f3f, 0x6b2c,\n  0x4f40, 0x6628, 0x7d69, 0x4f41, 0x605f, 0x5e6c, 0x6022, 0x743f,\n  0x626f, 0x5971, 0x7147, 0x4b38, 0x797e, 0x5b3a, 0x5a75, 0x766c,\n  0x5a5c, 0x7a64, 0x604f, 0x5d32, 0x6629, 0x6f73, 0x736d, 0x6b7a,\n  0x7966, 0x4a5d, 0x555e, 0x4a5e, 0x5f64, 0x667d, 0x752c, 0x6475,\n  0x6963, 0x6d4b, 0x4f64, 0x5853, 0x5d33, 0x546c, 0x7239, 0x5f37,\n  0x4b4e, 0x7b58, 0x5059, 0x5d52, 0x7774, 0x675c, 0x6425, 0x7c23,\n  0x5b3b, 0x723a, 0x697d, 0x504a, 0x7556, 0x5945, 0x6434, 0x6d27,\n  0x6a3d, 0x667e, 0x7744, 0x752d, 0x5960, 0x4a34, 0x7862, 0x4f42,\n  0x6c3e, 0x6534, 0x4d48, 0x6e48, 0x6748, 0x4d49, 0x7937, 0x7168,\n  0x5972, 0x5b75, 0x4a35, 0x5946, 0x5849, 0x592b, 0x6d3c, 0x5854,\n  0x5c5a, 0x623c, 0x7c6d, 0x6c60, 0x527e, 0x6947, 0x662a, 0x6270,\n  0x7a3b, 0x752e, 0x7b2a, 0x6c7b, 0x6c3f, 0x7c58, 0x5465, 0x7943,\n  0x6e62, 0x5769, 0x6d76, 0x5e6d, 0x4c6c, 0x636e, 0x6854, 0x7a78,\n  0x5d34, 0x6435, 0x5830, 0x5855, 0x746a, 0x4e39, 0x5661, 0x4f52,\n  0x5036, 0x4e22, 0x736e, 0x7378, 0x5c4c, 0x504b, 0x7c24, 0x4d4a,\n  0x5754, 0x5e23, 0x6460, 0x6e49, 0x625d, 0x757e, 0x542c, 0x5551,\n  0x5870, 0x7843, 0x6a57, 0x7557, 0x583f, 0x7d40, 0x6b2d, 0x552a,\n  0x6728, 0x6e4a, 0x4a67, 0x7863, 0x545d, 0x6a58, 0x7b59, 0x6d77,\n  0x6535, 0x502d, 0x7171, 0x623d, 0x6348, 0x5955, 0x5f2a, 0x5b3c,\n  0x7864, 0x717a, 0x6536, 0x736f, 0x7b5a, 0x6160, 0x592c, 0x756b,\n  0x6036, 0x6948, 0x4b4f, 0x6349, 0x5e6e, 0x623e, 0x5c6f, 0x5625,\n  0x6271, 0x567e, 0x5921, 0x5840, 0x5c5b, 0x6d3d, 0x5f38, 0x6a25,\n  0x572d, 0x7379, 0x6d78, 0x7547, 0x614a, 0x6b63, 0x725e, 0x784c,\n  0x6a59, 0x5346, 0x5b66, 0x752f, 0x4e70, 0x697e, 0x7b36, 0x6272,\n  0x4f72, 0x7739, 0x5973, 0x614b, 0x5a5d, 0x5a39, 0x6b7b, 0x4b39,\n  0x6d79, 0x6060, 0x7440, 0x7d3c, 0x5f31, 0x636f, 0x6023, 0x7d39,\n  0x7031, 0x4d4b, 0x6d3e, 0x5540, 0x6370, 0x6d7a, 0x6964, 0x556d,\n  0x675d, 0x5476, 0x6537, 0x5b67, 0x623f, 0x6e4b, 0x5774, 0x705d,\n  0x4e2b, 0x675e, 0x5656, 0x614c, 0x6833, 0x656e, 0x5c22, 0x6050,\n  0x5535, 0x5521, 0x7b5b, 0x794b, 0x4b73, 0x7425, 0x7a48, 0x5657,\n  0x6965, 0x7b5c, 0x7d50, 0x7b76, 0x5a25, 0x5b3d, 0x6c62, 0x4d77,\n  0x705e, 0x7649, 0x5e6f, 0x5331, 0x7c6e, 0x6843, 0x7148, 0x4e71,\n  0x796d, 0x7274, 0x6436, 0x7539, 0x5c70, 0x6371, 0x6825, 0x723b,\n  0x5e24, 0x5a4c, 0x4a69, 0x635a, 0x7c59, 0x6a5a, 0x7944, 0x6324,\n  0x7b5d, 0x6f4a, 0x6844, 0x554c, 0x6b57, 0x592d, 0x7b2b, 0x5359,\n  0x5522, 0x765e, 0x5a76, 0x6051, 0x6928, 0x7579, 0x7a2f, 0x6b7c,\n  0x606a, 0x6332, 0x5545, 0x7163, 0x556e, 0x4d4c, 0x6d59, 0x5841,\n  0x7a6c, 0x716b, 0x7a3c, 0x6662, 0x7a65, 0x627a, 0x4a36, 0x6437,\n  0x6a5b, 0x757a, 0x7b2c, 0x4f43, 0x6b7d, 0x787a, 0x5f39, 0x6171,\n  0x5224, 0x757b, 0x505a, 0x505b, 0x6a3e, 0x5931, 0x4a37, 0x5367,\n  0x7865, 0x5332, 0x6240, 0x725f, 0x4d65, 0x792c, 0x4d4d, 0x6e2e,\n  0x562e, 0x576a, 0x6760, 0x6b2e, 0x4f59, 0x5c4d, 0x6d7b, 0x5e70,\n  0x576b, 0x5e25, 0x5f57, 0x5b50, 0x5b51, 0x5523, 0x7032, 0x5c5c,\n  0x4a68, 0x7866, 0x5c4e, 0x6a5c, 0x5b52, 0x6933, 0x775b, 0x6328,\n  0x572e, 0x6061, 0x4b3a, 0x6551, 0x505c, 0x5541, 0x584a, 0x6329,\n  0x6024, 0x6929, 0x5347, 0x5c5d, 0x782e, 0x4c38, 0x502e, 0x5872,\n  0x634a, 0x4c2f, 0x542d, 0x7651, 0x504c, 0x4a46, 0x5542, 0x4e3a,\n  0x4a47, 0x7a30, 0x5f58, 0x753a, 0x656b, 0x6f74, 0x5d35, 0x4d2a,\n  0x6372, 0x7b77, 0x7750, 0x7d3a, 0x7d61, 0x767e, 0x5140, 0x6845,\n  0x6438, 0x6168, 0x4c41, 0x526d, 0x5b3e, 0x6062, 0x7a49, 0x614d,\n  0x4a38, 0x7260, 0x7149, 0x5e71, 0x705f, 0x7844, 0x6e4c, 0x5e72,\n  0x6749, 0x6273, 0x6761, 0x634b, 0x634c, 0x4f78, 0x6f2c, 0x7d7e,\n  0x7c25, 0x7a31, 0x5f59, 0x6052, 0x745a, 0x714a, 0x4e23, 0x723c,\n  0x6c63, 0x6025, 0x772b, 0x6b2f, 0x655e, 0x6124, 0x4d2b, 0x5974,\n  0x6826, 0x4d4e, 0x6169, 0x7c6f, 0x6063, 0x6241, 0x4e24, 0x5e26,\n  0x6b7e, 0x6b5d, 0x7060, 0x745b, 0x6274, 0x5348, 0x746b, 0x6e35,\n  0x7558, 0x555f, 0x5665, 0x6b30, 0x7463, 0x634d, 0x7474, 0x7a32,\n  0x6f75, 0x4a5f, 0x6b31, 0x6d3f, 0x7d49, 0x6426, 0x7924, 0x7033,\n  0x656c, 0x5167, 0x5947, 0x6457, 0x6a5d, 0x5477, 0x5a3a, 0x5a4d,\n  0x794c, 0x615a, 0x5b3f, 0x4c45, 0x6c50, 0x4b3b, 0x5e73, 0x692a,\n  0x5948, 0x6e63, 0x573d, 0x4f44, 0x504d, 0x7c26, 0x717b, 0x7d52,\n  0x5141, 0x635b, 0x5349, 0x5c4f, 0x4c6d, 0x5e27, 0x663b, 0x6c21,\n  0x4c39, 0x7b5e, 0x6762, 0x5441, 0x5c28, 0x6242, 0x7358, 0x6553,\n  0x7359, 0x7346, 0x4d5b, 0x4d2c, 0x7c43, 0x5467, 0x5142, 0x7925,\n  0x6855, 0x634e, 0x544a, 0x5f5a, 0x7b5f, 0x6763, 0x787b, 0x634f,\n  0x7530, 0x5867, 0x5949, 0x782f, 0x6f76, 0x5d36, 0x6e2f, 0x4d78,\n  0x5e38, 0x7c27, 0x777c, 0x7731, 0x4e3b, 0x7421, 0x6e4d, 0x612e,\n  0x6c43, 0x4f7e, 0x783f, 0x5862, 0x5368, 0x5e28, 0x7464, 0x6c42,\n  0x5975, 0x7945, 0x5d53, 0x5671, 0x6c7c, 0x7c70, 0x6d40, 0x4a39,\n  0x6e64, 0x7261, 0x5e39, 0x5672, 0x5e74, 0x5f5b, 0x5b53, 0x7a67,\n  0x5863, 0x7441, 0x5d37, 0x7275, 0x542e, 0x5673, 0x5d38, 0x4f45,\n  0x5f5f, 0x723e, 0x7621, 0x6b4b, 0x717c, 0x7347, 0x606b, 0x6d7c,\n  0x615b, 0x6e65, 0x5e75, 0x7a53, 0x714b, 0x502f, 0x5d39, 0x5143,\n  0x7531, 0x6a46, 0x7061, 0x762c, 0x7559, 0x706b, 0x5d3a, 0x723f,\n  0x7745, 0x5b22, 0x7276, 0x4a3a, 0x7775, 0x4b65, 0x6e66, 0x6053,\n  0x4e25, 0x5658, 0x542f, 0x6949, 0x534e, 0x7442, 0x4b66, 0x7121,\n  0x6b32, 0x7122, 0x6b33, 0x7034, 0x4b74, 0x5430, 0x7332, 0x7b37,\n  0x756c, 0x6e67, 0x7432, 0x756d, 0x4f73, 0x7062, 0x6e4e, 0x714c,\n  0x6538, 0x5775, 0x6373, 0x4f65, 0x4f46, 0x7333, 0x6458, 0x4f79,\n  0x4f5a, 0x7a4d, 0x6663, 0x7262, 0x756e, 0x4a3b, 0x635c, 0x4e72,\n  0x5659, 0x6e30, 0x7465, 0x5842, 0x5c50, 0x4c6e, 0x5560, 0x764a,\n  0x7d4a, 0x5856, 0x744f, 0x5626, 0x5c3e, 0x5b54, 0x5747, 0x727e,\n  0x714d, 0x6243, 0x5c5e, 0x5c5f, 0x6f2d, 0x662b, 0x795d, 0x6a3f,\n  0x6f2e, 0x7450, 0x4e73, 0x662c, 0x4e5e, 0x5579, 0x6374, 0x4d50,\n  0x5538, 0x777d, 0x5c29, 0x5e76, 0x5c2a, 0x7263, 0x6934, 0x525c,\n  0x6966, 0x6376, 0x674a, 0x504e, 0x5a77, 0x4a3c, 0x6e68, 0x5a5e,\n  0x7277, 0x627b, 0x4c26, 0x5a3b, 0x6e69, 0x755a, 0x775c, 0x616a,\n  0x4e41, 0x5431, 0x7d31, 0x663d, 0x7b2d, 0x7867, 0x614e, 0x7762,\n  0x756f, 0x4f47, 0x5432, 0x4c6f, 0x5468, 0x6e4f, 0x7757, 0x6026,\n  0x5641, 0x615c, 0x7063, 0x7164, 0x5c71, 0x5627, 0x7475, 0x714e,\n  0x7264, 0x5030, 0x6c6f, 0x793a, 0x6b35, 0x546d, 0x6244, 0x6967,\n  0x6b34, 0x6a21, 0x783c, 0x4e26, 0x7946, 0x7c5a, 0x5433, 0x5339,\n  0x6a5e, 0x692b, 0x6161, 0x534f, 0x7476, 0x6a40, 0x614f, 0x4c3a,\n  0x6e6a, 0x7064, 0x7334, 0x546e, 0x7240, 0x7165, 0x7443, 0x6054,\n  0x6b36, 0x5721, 0x4b68, 0x792d, 0x692d, 0x5864, 0x7a33, 0x6245,\n  0x7c3d, 0x6c44, 0x5831, 0x5c2b, 0x5524, 0x6b69, 0x683b, 0x5857,\n  0x7b2e, 0x5161, 0x5b40, 0x753e, 0x5e77, 0x4a7b, 0x7746, 0x4f48,\n  0x6150, 0x6e50, 0x6974, 0x4e74, 0x554d, 0x4f5b, 0x5d3b, 0x4e2c,\n  0x6968, 0x5434, 0x6447, 0x755b, 0x7a41, 0x5e29, 0x5478, 0x6f77,\n  0x5333, 0x6b37, 0x6f78, 0x755c, 0x6d4c, 0x5b55, 0x714f, 0x7150,\n  0x7532, 0x592e, 0x552c, 0x6246, 0x7d23, 0x7b65, 0x5f2b, 0x6275,\n  0x762d, 0x7533, 0x7035, 0x6125, 0x755d, 0x6c22, 0x6d7d, 0x7534,\n  0x7b38, 0x5b23, 0x564a, 0x4b59, 0x6554, 0x737a, 0x6b38, 0x6037,\n  0x576c, 0x716c, 0x652f, 0x5561, 0x576d, 0x5151, 0x6172, 0x6f79,\n  0x5d3c, 0x765c, 0x7065, 0x7444, 0x6969, 0x737b, 0x546f, 0x4c22,\n  0x777e, 0x5f3c, 0x6b4d, 0x5037, 0x5642, 0x682d, 0x6f2f, 0x4b25,\n  0x4b69, 0x7a68, 0x4c46, 0x6667, 0x6a47, 0x5b24, 0x4f49, 0x627c,\n  0x6f7a, 0x6b5e, 0x7548, 0x545e, 0x6055, 0x6f30, 0x6247, 0x592f,\n  0x7967, 0x6765, 0x4f4a, 0x6151, 0x6248, 0x6f7b, 0x7a79, 0x5c72,\n  0x6027, 0x7868, 0x4b6a, 0x4b3c, 0x5662, 0x755e, 0x755f, 0x6e36,\n  0x6276, 0x534a, 0x6f7c, 0x5144, 0x6f31, 0x5145, 0x505e, 0x5961,\n  0x6038, 0x4d51, 0x7339, 0x674c, 0x5628, 0x4e27, 0x5435, 0x6448,\n  0x5334, 0x6b39, 0x4b75, 0x765d, 0x7123, 0x4c47, 0x694a, 0x6170,\n  0x7560, 0x7b2f, 0x4b51, 0x7b60, 0x7265, 0x6c70, 0x706c, 0x6e6b,\n  0x694b, 0x4c70, 0x572f, 0x7321, 0x7c75, 0x7124, 0x6056, 0x6f32,\n  0x7451, 0x7721, 0x7151, 0x4a7c, 0x4a7d, 0x4e4e, 0x7348, 0x733a,\n  0x6d7e, 0x5a26, 0x606c, 0x784d, 0x4b52, 0x6b4e, 0x7958, 0x7959,\n  0x4a60, 0x5a4a, 0x4b26, 0x4a48, 0x796e, 0x5b6c, 0x5031, 0x556f,\n  0x6673, 0x6722, 0x6459, 0x6461, 0x7c44, 0x796f, 0x4f74, 0x7766,\n  0x4e3c, 0x7445, 0x5c23, 0x5d3d, 0x7446, 0x7821, 0x6856, 0x5b41,\n  0x7066, 0x6439, 0x766d, 0x792e, 0x5d3e, 0x5730, 0x5868, 0x4b3d,\n  0x795a, 0x784e, 0x7970, 0x606d, 0x6333, 0x7433, 0x6a42, 0x7266,\n  0x7036, 0x5b56, 0x6b64, 0x7267, 0x5755, 0x5436, 0x7968, 0x5741,\n  0x6555, 0x696a, 0x574c, 0x5369, 0x6249, 0x7c5b, 0x4d2d, 0x4c30,\n  0x6a22, 0x6476, 0x5040, 0x7037, 0x6e21, 0x5776, 0x624a, 0x624b,\n  0x7a4f, 0x6b5f, 0x564b, 0x7434, 0x6d4d, 0x6452, 0x6a29, 0x643a,\n  0x7322, 0x4d52, 0x764b, 0x7166, 0x6d41, 0x683c, 0x6e51, 0x7067,\n  0x624c, 0x642a, 0x7561, 0x6d5a, 0x576e, 0x5171, 0x696b, 0x696c,\n  0x6064, 0x5a27, 0x5d54, 0x6a23, 0x5643, 0x5674, 0x5a5f, 0x6f33,\n  0x624d, 0x6f7d, 0x7268, 0x6f45, 0x6767, 0x577d, 0x674e, 0x5f5c,\n  0x7947, 0x5976, 0x5f2c, 0x565a, 0x5c24, 0x7038, 0x557a, 0x6477,\n  0x5644, 0x746c, 0x6f7e, 0x7021, 0x5e2a, 0x5a3c, 0x587c, 0x7a54,\n  0x6c65, 0x7c28, 0x6c66, 0x584b, 0x7b39, 0x6453, 0x4d79, 0x4f53,\n  0x4a6a, 0x4f54, 0x783d, 0x7447, 0x6a5f, 0x795b, 0x5437, 0x6b65,\n  0x6152, 0x6a24, 0x7a42, 0x7b61, 0x7a6d, 0x7022, 0x4c71, 0x7a23,\n  0x6277, 0x624e, 0x6975, 0x616b, 0x6768, 0x6857, 0x5a78, 0x544b,\n  0x7776, 0x5645, 0x5469, 0x7a7a, 0x4c72, 0x775d, 0x5e3a, 0x4e28,\n  0x7039, 0x647e, 0x6449, 0x6454, 0x6a43, 0x6f34, 0x573e, 0x7b62,\n  0x4d53, 0x6f35, 0x7a69, 0x7926, 0x5f3d, 0x7747, 0x787d, 0x787c,\n  0x5e2b, 0x5b68, 0x635d, 0x6162, 0x5146, 0x7650, 0x6b66, 0x5a79,\n  0x6c47, 0x5e78, 0x7869, 0x635e, 0x4e75, 0x7a43, 0x6557, 0x6c48,\n  0x7349, 0x643b, 0x662e, 0x6f36, 0x5c3f, 0x4e3d, 0x5843, 0x504f,\n  0x4f7a, 0x734a, 0x6057, 0x5147, 0x692e, 0x683d, 0x7a44, 0x624f,\n  0x7a45, 0x7938, 0x5c60, 0x7b30, 0x5829, 0x655f, 0x7927, 0x766e,\n  0x764c, 0x6278, 0x6c71, 0x5a60, 0x7152, 0x524c, 0x4f4b, 0x4a3d,\n  0x5d3f, 0x766f, 0x5e79, 0x7a34, 0x552d, 0x7167, 0x5e3e, 0x5c40,\n  0x5148, 0x5149, 0x783e, 0x4b76, 0x5479, 0x7562, 0x6153, 0x5869,\n  0x787e, 0x4f4c, 0x7d24, 0x4e76, 0x7a50, 0x4c73, 0x663e, 0x762e,\n  0x5570, 0x514a, 0x7c3e, 0x5571, 0x4d69, 0x7a35, 0x6250, 0x7477,\n  0x4d54, 0x6723, 0x5b25, 0x6251, 0x5722, 0x7763, 0x6a26, 0x5021,\n  0x4e5a, 0x7b6b, 0x5b26, 0x5b5e, 0x5865, 0x6a60, 0x582a, 0x6560,\n  0x565b, 0x6f46, 0x786a, 0x6455, 0x4e77, 0x6058, 0x576f, 0x746d,\n  0x4d66, 0x4c74, 0x7563, 0x644a, 0x5c61, 0x7948, 0x7c3f, 0x6827,\n  0x5844, 0x4b3e, 0x5c2e, 0x5777, 0x7068, 0x5d40, 0x4f4d, 0x5c73,\n  0x5930, 0x6669, 0x643c, 0x6a44, 0x646c, 0x6465, 0x7b78, 0x4c3b,\n  0x643d, 0x4d5c, 0x5977, 0x5d5f, 0x6d4e, 0x5950, 0x6523, 0x794d,\n  0x4d2e, 0x4f4e, 0x762f, 0x7d53, 0x6b6d, 0x565c, 0x6524, 0x5536,\n  0x565d, 0x7969, 0x6724, 0x5663, 0x514b, 0x5664, 0x5572, 0x5e7a,\n  0x5778, 0x586a, 0x4f55, 0x587d, 0x582b, 0x7d4b, 0x7c5c, 0x6028,\n  0x5573, 0x7d59, 0x4c23, 0x5979, 0x536a, 0x7575, 0x6f47, 0x535a,\n  0x5a3d, 0x6828, 0x5c2f, 0x7023, 0x4d55, 0x6029, 0x5e2c, 0x703a,\n  0x6e31, 0x6e32, 0x764d, 0x6e52, 0x5646, 0x6065, 0x733b, 0x6561,\n  0x644b, 0x5723, 0x5b42, 0x4a7e, 0x4f4f, 0x3021, 0x3022, 0x3023,\n  0x3024, 0x3025, 0x3026, 0x3027, 0x3028, 0x3029, 0x302a, 0x302b,\n  0x302c, 0x302d, 0x302e, 0x302f, 0x3030, 0x3031, 0x3032, 0x3033,\n  0x3034, 0x3035, 0x3036, 0x3037, 0x3038, 0x3039, 0x303a, 0x303b,\n  0x303c, 0x303d, 0x303e, 0x303f, 0x3040, 0x3041, 0x3042, 0x3043,\n  0x3044, 0x3045, 0x3046, 0x3047, 0x3048, 0x3049, 0x304a, 0x304b,\n  0x304c, 0x304d, 0x304e, 0x304f, 0x3050, 0x3051, 0x3052, 0x3053,\n  0x3054, 0x3055, 0x3056, 0x3057, 0x3058, 0x3059, 0x305a, 0x305b,\n  0x305c, 0x305d, 0x305e, 0x305f, 0x3060, 0x3061, 0x3062, 0x3063,\n  0x3064, 0x3065, 0x3066, 0x3067, 0x3068, 0x3069, 0x306a, 0x306b,\n  0x306c, 0x306d, 0x306e, 0x306f, 0x3070, 0x3071, 0x3072, 0x3073,\n  0x3074, 0x3075, 0x3076, 0x3077, 0x3078, 0x3079, 0x307a, 0x307b,\n  0x307c, 0x307d, 0x307e, 0x3121, 0x3122, 0x3123, 0x3124, 0x3125,\n  0x3126, 0x3127, 0x3128, 0x3129, 0x312a, 0x312b, 0x312c, 0x312d,\n  0x312e, 0x312f, 0x3130, 0x3131, 0x3132, 0x3133, 0x3134, 0x3135,\n  0x3136, 0x3137, 0x3138, 0x3139, 0x313a, 0x313b, 0x313c, 0x313d,\n  0x313e, 0x313f, 0x3140, 0x3141, 0x3142, 0x3143, 0x3144, 0x3145,\n  0x3146, 0x3147, 0x3148, 0x3149, 0x314a, 0x314b, 0x314c, 0x314d,\n  0x314e, 0x314f, 0x3150, 0x3151, 0x3152, 0x3153, 0x3154, 0x3155,\n  0x3156, 0x3157, 0x3158, 0x3159, 0x315a, 0x315b, 0x315c, 0x315d,\n  0x315e, 0x315f, 0x3160, 0x3161, 0x3162, 0x3163, 0x3164, 0x3165,\n  0x3166, 0x3167, 0x3168, 0x3169, 0x316a, 0x316b, 0x316c, 0x316d,\n  0x316e, 0x316f, 0x3170, 0x3171, 0x3172, 0x3173, 0x3174, 0x3175,\n  0x3176, 0x3177, 0x3178, 0x3179, 0x317a, 0x317b, 0x317c, 0x317d,\n  0x317e, 0x3221, 0x3222, 0x3223, 0x3224, 0x3225, 0x3226, 0x3227,\n  0x3228, 0x3229, 0x322a, 0x322b, 0x322c, 0x322d, 0x322e, 0x322f,\n  0x3230, 0x3231, 0x3232, 0x3233, 0x3234, 0x3235, 0x3236, 0x3237,\n  0x3238, 0x3239, 0x323a, 0x323b, 0x323c, 0x323d, 0x323e, 0x323f,\n  0x3240, 0x3241, 0x3242, 0x3243, 0x3244, 0x3245, 0x3246, 0x3247,\n  0x3248, 0x3249, 0x324a, 0x324b, 0x324c, 0x324d, 0x324e, 0x324f,\n  0x3250, 0x3251, 0x3252, 0x3253, 0x3254, 0x3255, 0x3256, 0x3257,\n  0x3258, 0x3259, 0x325a, 0x325b, 0x325c, 0x325d, 0x325e, 0x325f,\n  0x3260, 0x3261, 0x3262, 0x3263, 0x3264, 0x3265, 0x3266, 0x3267,\n  0x3268, 0x3269, 0x326a, 0x326b, 0x326c, 0x326d, 0x326e, 0x326f,\n  0x3270, 0x3271, 0x3272, 0x3273, 0x3274, 0x3275, 0x3276, 0x3277,\n  0x3278, 0x3279, 0x327a, 0x327b, 0x327c, 0x327d, 0x327e, 0x3321,\n  0x3322, 0x3323, 0x3324, 0x3325, 0x3326, 0x3327, 0x3328, 0x3329,\n  0x332a, 0x332b, 0x332c, 0x332d, 0x332e, 0x332f, 0x3330, 0x3331,\n  0x3332, 0x3333, 0x3334, 0x3335, 0x3336, 0x3337, 0x3338, 0x3339,\n  0x333a, 0x333b, 0x333c, 0x333d, 0x333e, 0x333f, 0x3340, 0x3341,\n  0x3342, 0x3343, 0x3344, 0x3345, 0x3346, 0x3347, 0x3348, 0x3349,\n  0x334a, 0x334b, 0x334c, 0x334d, 0x334e, 0x334f, 0x3350, 0x3351,\n  0x3352, 0x3353, 0x3354, 0x3355, 0x3356, 0x3357, 0x3358, 0x3359,\n  0x335a, 0x335b, 0x335c, 0x335d, 0x335e, 0x335f, 0x3360, 0x3361,\n  0x3362, 0x3363, 0x3364, 0x3365, 0x3366, 0x3367, 0x3368, 0x3369,\n  0x336a, 0x336b, 0x336c, 0x336d, 0x336e, 0x336f, 0x3370, 0x3371,\n  0x3372, 0x3373, 0x3374, 0x3375, 0x3376, 0x3377, 0x3378, 0x3379,\n  0x337a, 0x337b, 0x337c, 0x337d, 0x337e, 0x3421, 0x3422, 0x3423,\n  0x3424, 0x3425, 0x3426, 0x3427, 0x3428, 0x3429, 0x342a, 0x342b,\n  0x342c, 0x342d, 0x342e, 0x342f, 0x3430, 0x3431, 0x3432, 0x3433,\n  0x3434, 0x3435, 0x3436, 0x3437, 0x3438, 0x3439, 0x343a, 0x343b,\n  0x343c, 0x343d, 0x343e, 0x343f, 0x3440, 0x3441, 0x3442, 0x3443,\n  0x3444, 0x3445, 0x3446, 0x3447, 0x3448, 0x3449, 0x344a, 0x344b,\n  0x344c, 0x344d, 0x344e, 0x344f, 0x3450, 0x3451, 0x3452, 0x3453,\n  0x3454, 0x3455, 0x3456, 0x3457, 0x3458, 0x3459, 0x345a, 0x345b,\n  0x345c, 0x345d, 0x345e, 0x345f, 0x3460, 0x3461, 0x3462, 0x3463,\n  0x3464, 0x3465, 0x3466, 0x3467, 0x3468, 0x3469, 0x346a, 0x346b,\n  0x346c, 0x346d, 0x346e, 0x346f, 0x3470, 0x3471, 0x3472, 0x3473,\n  0x3474, 0x3475, 0x3476, 0x3477, 0x3478, 0x3479, 0x347a, 0x347b,\n  0x347c, 0x347d, 0x347e, 0x3521, 0x3522, 0x3523, 0x3524, 0x3525,\n  0x3526, 0x3527, 0x3528, 0x3529, 0x352a, 0x352b, 0x352c, 0x352d,\n  0x352e, 0x352f, 0x3530, 0x3531, 0x3532, 0x3533, 0x3534, 0x3535,\n  0x3536, 0x3537, 0x3538, 0x3539, 0x353a, 0x353b, 0x353c, 0x353d,\n  0x353e, 0x353f, 0x3540, 0x3541, 0x3542, 0x3543, 0x3544, 0x3545,\n  0x3546, 0x3547, 0x3548, 0x3549, 0x354a, 0x354b, 0x354c, 0x354d,\n  0x354e, 0x354f, 0x3550, 0x3551, 0x3552, 0x3553, 0x3554, 0x3555,\n  0x3556, 0x3557, 0x3558, 0x3559, 0x355a, 0x355b, 0x355c, 0x355d,\n  0x355e, 0x355f, 0x3560, 0x3561, 0x3562, 0x3563, 0x3564, 0x3565,\n  0x3566, 0x3567, 0x3568, 0x3569, 0x356a, 0x356b, 0x356c, 0x356d,\n  0x356e, 0x356f, 0x3570, 0x3571, 0x3572, 0x3573, 0x3574, 0x3575,\n  0x3576, 0x3577, 0x3578, 0x3579, 0x357a, 0x357b, 0x357c, 0x357d,\n  0x357e, 0x3621, 0x3622, 0x3623, 0x3624, 0x3625, 0x3626, 0x3627,\n  0x3628, 0x3629, 0x362a, 0x362b, 0x362c, 0x362d, 0x362e, 0x362f,\n  0x3630, 0x3631, 0x3632, 0x3633, 0x3634, 0x3635, 0x3636, 0x3637,\n  0x3638, 0x3639, 0x363a, 0x363b, 0x363c, 0x363d, 0x363e, 0x363f,\n  0x3640, 0x3641, 0x3642, 0x3643, 0x3644, 0x3645, 0x3646, 0x3647,\n  0x3648, 0x3649, 0x364a, 0x364b, 0x364c, 0x364d, 0x364e, 0x364f,\n  0x3650, 0x3651, 0x3652, 0x3653, 0x3654, 0x3655, 0x3656, 0x3657,\n  0x3658, 0x3659, 0x365a, 0x365b, 0x365c, 0x365d, 0x365e, 0x365f,\n  0x3660, 0x3661, 0x3662, 0x3663, 0x3664, 0x3665, 0x3666, 0x3667,\n  0x3668, 0x3669, 0x366a, 0x366b, 0x366c, 0x366d, 0x366e, 0x366f,\n  0x3670, 0x3671, 0x3672, 0x3673, 0x3674, 0x3675, 0x3676, 0x3677,\n  0x3678, 0x3679, 0x367a, 0x367b, 0x367c, 0x367d, 0x367e, 0x3721,\n  0x3722, 0x3723, 0x3724, 0x3725, 0x3726, 0x3727, 0x3728, 0x3729,\n  0x372a, 0x372b, 0x372c, 0x372d, 0x372e, 0x372f, 0x3730, 0x3731,\n  0x3732, 0x3733, 0x3734, 0x3735, 0x3736, 0x3737, 0x3738, 0x3739,\n  0x373a, 0x373b, 0x373c, 0x373d, 0x373e, 0x373f, 0x3740, 0x3741,\n  0x3742, 0x3743, 0x3744, 0x3745, 0x3746, 0x3747, 0x3748, 0x3749,\n  0x374a, 0x374b, 0x374c, 0x374d, 0x374e, 0x374f, 0x3750, 0x3751,\n  0x3752, 0x3753, 0x3754, 0x3755, 0x3756, 0x3757, 0x3758, 0x3759,\n  0x375a, 0x375b, 0x375c, 0x375d, 0x375e, 0x375f, 0x3760, 0x3761,\n  0x3762, 0x3763, 0x3764, 0x3765, 0x3766, 0x3767, 0x3768, 0x3769,\n  0x376a, 0x376b, 0x376c, 0x376d, 0x376e, 0x376f, 0x3770, 0x3771,\n  0x3772, 0x3773, 0x3774, 0x3775, 0x3776, 0x3777, 0x3778, 0x3779,\n  0x377a, 0x377b, 0x377c, 0x377d, 0x377e, 0x3821, 0x3822, 0x3823,\n  0x3824, 0x3825, 0x3826, 0x3827, 0x3828, 0x3829, 0x382a, 0x382b,\n  0x382c, 0x382d, 0x382e, 0x382f, 0x3830, 0x3831, 0x3832, 0x3833,\n  0x3834, 0x3835, 0x3836, 0x3837, 0x3838, 0x3839, 0x383a, 0x383b,\n  0x383c, 0x383d, 0x383e, 0x383f, 0x3840, 0x3841, 0x3842, 0x3843,\n  0x3844, 0x3845, 0x3846, 0x3847, 0x3848, 0x3849, 0x384a, 0x384b,\n  0x384c, 0x384d, 0x384e, 0x384f, 0x3850, 0x3851, 0x3852, 0x3853,\n  0x3854, 0x3855, 0x3856, 0x3857, 0x3858, 0x3859, 0x385a, 0x385b,\n  0x385c, 0x385d, 0x385e, 0x385f, 0x3860, 0x3861, 0x3862, 0x3863,\n  0x3864, 0x3865, 0x3866, 0x3867, 0x3868, 0x3869, 0x386a, 0x386b,\n  0x386c, 0x386d, 0x386e, 0x386f, 0x3870, 0x3871, 0x3872, 0x3873,\n  0x3874, 0x3875, 0x3876, 0x3877, 0x3878, 0x3879, 0x387a, 0x387b,\n  0x387c, 0x387d, 0x387e, 0x3921, 0x3922, 0x3923, 0x3924, 0x3925,\n  0x3926, 0x3927, 0x3928, 0x3929, 0x392a, 0x392b, 0x392c, 0x392d,\n  0x392e, 0x392f, 0x3930, 0x3931, 0x3932, 0x3933, 0x3934, 0x3935,\n  0x3936, 0x3937, 0x3938, 0x3939, 0x393a, 0x393b, 0x393c, 0x393d,\n  0x393e, 0x393f, 0x3940, 0x3941, 0x3942, 0x3943, 0x3944, 0x3945,\n  0x3946, 0x3947, 0x3948, 0x3949, 0x394a, 0x394b, 0x394c, 0x394d,\n  0x394e, 0x394f, 0x3950, 0x3951, 0x3952, 0x3953, 0x3954, 0x3955,\n  0x3956, 0x3957, 0x3958, 0x3959, 0x395a, 0x395b, 0x395c, 0x395d,\n  0x395e, 0x395f, 0x3960, 0x3961, 0x3962, 0x3963, 0x3964, 0x3965,\n  0x3966, 0x3967, 0x3968, 0x3969, 0x396a, 0x396b, 0x396c, 0x396d,\n  0x396e, 0x396f, 0x3970, 0x3971, 0x3972, 0x3973, 0x3974, 0x3975,\n  0x3976, 0x3977, 0x3978, 0x3979, 0x397a, 0x397b, 0x397c, 0x397d,\n  0x397e, 0x3a21, 0x3a22, 0x3a23, 0x3a24, 0x3a25, 0x3a26, 0x3a27,\n  0x3a28, 0x3a29, 0x3a2a, 0x3a2b, 0x3a2c, 0x3a2d, 0x3a2e, 0x3a2f,\n  0x3a30, 0x3a31, 0x3a32, 0x3a33, 0x3a34, 0x3a35, 0x3a36, 0x3a37,\n  0x3a38, 0x3a39, 0x3a3a, 0x3a3b, 0x3a3c, 0x3a3d, 0x3a3e, 0x3a3f,\n  0x3a40, 0x3a41, 0x3a42, 0x3a43, 0x3a44, 0x3a45, 0x3a46, 0x3a47,\n  0x3a48, 0x3a49, 0x3a4a, 0x3a4b, 0x3a4c, 0x3a4d, 0x3a4e, 0x3a4f,\n  0x3a50, 0x3a51, 0x3a52, 0x3a53, 0x3a54, 0x3a55, 0x3a56, 0x3a57,\n  0x3a58, 0x3a59, 0x3a5a, 0x3a5b, 0x3a5c, 0x3a5d, 0x3a5e, 0x3a5f,\n  0x3a60, 0x3a61, 0x3a62, 0x3a63, 0x3a64, 0x3a65, 0x3a66, 0x3a67,\n  0x3a68, 0x3a69, 0x3a6a, 0x3a6b, 0x3a6c, 0x3a6d, 0x3a6e, 0x3a6f,\n  0x3a70, 0x3a71, 0x3a72, 0x3a73, 0x3a74, 0x3a75, 0x3a76, 0x3a77,\n  0x3a78, 0x3a79, 0x3a7a, 0x3a7b, 0x3a7c, 0x3a7d, 0x3a7e, 0x3b21,\n  0x3b22, 0x3b23, 0x3b24, 0x3b25, 0x3b26, 0x3b27, 0x3b28, 0x3b29,\n  0x3b2a, 0x3b2b, 0x3b2c, 0x3b2d, 0x3b2e, 0x3b2f, 0x3b30, 0x3b31,\n  0x3b32, 0x3b33, 0x3b34, 0x3b35, 0x3b36, 0x3b37, 0x3b38, 0x3b39,\n  0x3b3a, 0x3b3b, 0x3b3c, 0x3b3d, 0x3b3e, 0x3b3f, 0x3b40, 0x3b41,\n  0x3b42, 0x3b43, 0x3b44, 0x3b45, 0x3b46, 0x3b47, 0x3b48, 0x3b49,\n  0x3b4a, 0x3b4b, 0x3b4c, 0x3b4d, 0x3b4e, 0x3b4f, 0x3b50, 0x3b51,\n  0x3b52, 0x3b53, 0x3b54, 0x3b55, 0x3b56, 0x3b57, 0x3b58, 0x3b59,\n  0x3b5a, 0x3b5b, 0x3b5c, 0x3b5d, 0x3b5e, 0x3b5f, 0x3b60, 0x3b61,\n  0x3b62, 0x3b63, 0x3b64, 0x3b65, 0x3b66, 0x3b67, 0x3b68, 0x3b69,\n  0x3b6a, 0x3b6b, 0x3b6c, 0x3b6d, 0x3b6e, 0x3b6f, 0x3b70, 0x3b71,\n  0x3b72, 0x3b73, 0x3b74, 0x3b75, 0x3b76, 0x3b77, 0x3b78, 0x3b79,\n  0x3b7a, 0x3b7b, 0x3b7c, 0x3b7d, 0x3b7e, 0x3c21, 0x3c22, 0x3c23,\n  0x3c24, 0x3c25, 0x3c26, 0x3c27, 0x3c28, 0x3c29, 0x3c2a, 0x3c2b,\n  0x3c2c, 0x3c2d, 0x3c2e, 0x3c2f, 0x3c30, 0x3c31, 0x3c32, 0x3c33,\n  0x3c34, 0x3c35, 0x3c36, 0x3c37, 0x3c38, 0x3c39, 0x3c3a, 0x3c3b,\n  0x3c3c, 0x3c3d, 0x3c3e, 0x3c3f, 0x3c40, 0x3c41, 0x3c42, 0x3c43,\n  0x3c44, 0x3c45, 0x3c46, 0x3c47, 0x3c48, 0x3c49, 0x3c4a, 0x3c4b,\n  0x3c4c, 0x3c4d, 0x3c4e, 0x3c4f, 0x3c50, 0x3c51, 0x3c52, 0x3c53,\n  0x3c54, 0x3c55, 0x3c56, 0x3c57, 0x3c58, 0x3c59, 0x3c5a, 0x3c5b,\n  0x3c5c, 0x3c5d, 0x3c5e, 0x3c5f, 0x3c60, 0x3c61, 0x3c62, 0x3c63,\n  0x3c64, 0x3c65, 0x3c66, 0x3c67, 0x3c68, 0x3c69, 0x3c6a, 0x3c6b,\n  0x3c6c, 0x3c6d, 0x3c6e, 0x3c6f, 0x3c70, 0x3c71, 0x3c72, 0x3c73,\n  0x3c74, 0x3c75, 0x3c76, 0x3c77, 0x3c78, 0x3c79, 0x3c7a, 0x3c7b,\n  0x3c7c, 0x3c7d, 0x3c7e, 0x3d21, 0x3d22, 0x3d23, 0x3d24, 0x3d25,\n  0x3d26, 0x3d27, 0x3d28, 0x3d29, 0x3d2a, 0x3d2b, 0x3d2c, 0x3d2d,\n  0x3d2e, 0x3d2f, 0x3d30, 0x3d31, 0x3d32, 0x3d33, 0x3d34, 0x3d35,\n  0x3d36, 0x3d37, 0x3d38, 0x3d39, 0x3d3a, 0x3d3b, 0x3d3c, 0x3d3d,\n  0x3d3e, 0x3d3f, 0x3d40, 0x3d41, 0x3d42, 0x3d43, 0x3d44, 0x3d45,\n  0x3d46, 0x3d47, 0x3d48, 0x3d49, 0x3d4a, 0x3d4b, 0x3d4c, 0x3d4d,\n  0x3d4e, 0x3d4f, 0x3d50, 0x3d51, 0x3d52, 0x3d53, 0x3d54, 0x3d55,\n  0x3d56, 0x3d57, 0x3d58, 0x3d59, 0x3d5a, 0x3d5b, 0x3d5c, 0x3d5d,\n  0x3d5e, 0x3d5f, 0x3d60, 0x3d61, 0x3d62, 0x3d63, 0x3d64, 0x3d65,\n  0x3d66, 0x3d67, 0x3d68, 0x3d69, 0x3d6a, 0x3d6b, 0x3d6c, 0x3d6d,\n  0x3d6e, 0x3d6f, 0x3d70, 0x3d71, 0x3d72, 0x3d73, 0x3d74, 0x3d75,\n  0x3d76, 0x3d77, 0x3d78, 0x3d79, 0x3d7a, 0x3d7b, 0x3d7c, 0x3d7d,\n  0x3d7e, 0x3e21, 0x3e22, 0x3e23, 0x3e24, 0x3e25, 0x3e26, 0x3e27,\n  0x3e28, 0x3e29, 0x3e2a, 0x3e2b, 0x3e2c, 0x3e2d, 0x3e2e, 0x3e2f,\n  0x3e30, 0x3e31, 0x3e32, 0x3e33, 0x3e34, 0x3e35, 0x3e36, 0x3e37,\n  0x3e38, 0x3e39, 0x3e3a, 0x3e3b, 0x3e3c, 0x3e3d, 0x3e3e, 0x3e3f,\n  0x3e40, 0x3e41, 0x3e42, 0x3e43, 0x3e44, 0x3e45, 0x3e46, 0x3e47,\n  0x3e48, 0x3e49, 0x3e4a, 0x3e4b, 0x3e4c, 0x3e4d, 0x3e4e, 0x3e4f,\n  0x3e50, 0x3e51, 0x3e52, 0x3e53, 0x3e54, 0x3e55, 0x3e56, 0x3e57,\n  0x3e58, 0x3e59, 0x3e5a, 0x3e5b, 0x3e5c, 0x3e5d, 0x3e5e, 0x3e5f,\n  0x3e60, 0x3e61, 0x3e62, 0x3e63, 0x3e64, 0x3e65, 0x3e66, 0x3e67,\n  0x3e68, 0x3e69, 0x3e6a, 0x3e6b, 0x3e6c, 0x3e6d, 0x3e6e, 0x3e6f,\n  0x3e70, 0x3e71, 0x3e72, 0x3e73, 0x3e74, 0x3e75, 0x3e76, 0x3e77,\n  0x3e78, 0x3e79, 0x3e7a, 0x3e7b, 0x3e7c, 0x3e7d, 0x3e7e, 0x3f21,\n  0x3f22, 0x3f23, 0x3f24, 0x3f25, 0x3f26, 0x3f27, 0x3f28, 0x3f29,\n  0x3f2a, 0x3f2b, 0x3f2c, 0x3f2d, 0x3f2e, 0x3f2f, 0x3f30, 0x3f31,\n  0x3f32, 0x3f33, 0x3f34, 0x3f35, 0x3f36, 0x3f37, 0x3f38, 0x3f39,\n  0x3f3a, 0x3f3b, 0x3f3c, 0x3f3d, 0x3f3e, 0x3f3f, 0x3f40, 0x3f41,\n  0x3f42, 0x3f43, 0x3f44, 0x3f45, 0x3f46, 0x3f47, 0x3f48, 0x3f49,\n  0x3f4a, 0x3f4b, 0x3f4c, 0x3f4d, 0x3f4e, 0x3f4f, 0x3f50, 0x3f51,\n  0x3f52, 0x3f53, 0x3f54, 0x3f55, 0x3f56, 0x3f57, 0x3f58, 0x3f59,\n  0x3f5a, 0x3f5b, 0x3f5c, 0x3f5d, 0x3f5e, 0x3f5f, 0x3f60, 0x3f61,\n  0x3f62, 0x3f63, 0x3f64, 0x3f65, 0x3f66, 0x3f67, 0x3f68, 0x3f69,\n  0x3f6a, 0x3f6b, 0x3f6c, 0x3f6d, 0x3f6e, 0x3f6f, 0x3f70, 0x3f71,\n  0x3f72, 0x3f73, 0x3f74, 0x3f75, 0x3f76, 0x3f77, 0x3f78, 0x3f79,\n  0x3f7a, 0x3f7b, 0x3f7c, 0x3f7d, 0x3f7e, 0x4021, 0x4022, 0x4023,\n  0x4024, 0x4025, 0x4026, 0x4027, 0x4028, 0x4029, 0x402a, 0x402b,\n  0x402c, 0x402d, 0x402e, 0x402f, 0x4030, 0x4031, 0x4032, 0x4033,\n  0x4034, 0x4035, 0x4036, 0x4037, 0x4038, 0x4039, 0x403a, 0x403b,\n  0x403c, 0x403d, 0x403e, 0x403f, 0x4040, 0x4041, 0x4042, 0x4043,\n  0x4044, 0x4045, 0x4046, 0x4047, 0x4048, 0x4049, 0x404a, 0x404b,\n  0x404c, 0x404d, 0x404e, 0x404f, 0x4050, 0x4051, 0x4052, 0x4053,\n  0x4054, 0x4055, 0x4056, 0x4057, 0x4058, 0x4059, 0x405a, 0x405b,\n  0x405c, 0x405d, 0x405e, 0x405f, 0x4060, 0x4061, 0x4062, 0x4063,\n  0x4064, 0x4065, 0x4066, 0x4067, 0x4068, 0x4069, 0x406a, 0x406b,\n  0x406c, 0x406d, 0x406e, 0x406f, 0x4070, 0x4071, 0x4072, 0x4073,\n  0x4074, 0x4075, 0x4076, 0x4077, 0x4078, 0x4079, 0x407a, 0x407b,\n  0x407c, 0x407d, 0x407e, 0x4121, 0x4122, 0x4123, 0x4124, 0x4125,\n  0x4126, 0x4127, 0x4128, 0x4129, 0x412a, 0x412b, 0x412c, 0x412d,\n  0x412e, 0x412f, 0x4130, 0x4131, 0x4132, 0x4133, 0x4134, 0x4135,\n  0x4136, 0x4137, 0x4138, 0x4139, 0x413a, 0x413b, 0x413c, 0x413d,\n  0x413e, 0x413f, 0x4140, 0x4141, 0x4142, 0x4143, 0x4144, 0x4145,\n  0x4146, 0x4147, 0x4148, 0x4149, 0x414a, 0x414b, 0x414c, 0x414d,\n  0x414e, 0x414f, 0x4150, 0x4151, 0x4152, 0x4153, 0x4154, 0x4155,\n  0x4156, 0x4157, 0x4158, 0x4159, 0x415a, 0x415b, 0x415c, 0x415d,\n  0x415e, 0x415f, 0x4160, 0x4161, 0x4162, 0x4163, 0x4164, 0x4165,\n  0x4166, 0x4167, 0x4168, 0x4169, 0x416a, 0x416b, 0x416c, 0x416d,\n  0x416e, 0x416f, 0x4170, 0x4171, 0x4172, 0x4173, 0x4174, 0x4175,\n  0x4176, 0x4177, 0x4178, 0x4179, 0x417a, 0x417b, 0x417c, 0x417d,\n  0x417e, 0x4221, 0x4222, 0x4223, 0x4224, 0x4225, 0x4226, 0x4227,\n  0x4228, 0x4229, 0x422a, 0x422b, 0x422c, 0x422d, 0x422e, 0x422f,\n  0x4230, 0x4231, 0x4232, 0x4233, 0x4234, 0x4235, 0x4236, 0x4237,\n  0x4238, 0x4239, 0x423a, 0x423b, 0x423c, 0x423d, 0x423e, 0x423f,\n  0x4240, 0x4241, 0x4242, 0x4243, 0x4244, 0x4245, 0x4246, 0x4247,\n  0x4248, 0x4249, 0x424a, 0x424b, 0x424c, 0x424d, 0x424e, 0x424f,\n  0x4250, 0x4251, 0x4252, 0x4253, 0x4254, 0x4255, 0x4256, 0x4257,\n  0x4258, 0x4259, 0x425a, 0x425b, 0x425c, 0x425d, 0x425e, 0x425f,\n  0x4260, 0x4261, 0x4262, 0x4263, 0x4264, 0x4265, 0x4266, 0x4267,\n  0x4268, 0x4269, 0x426a, 0x426b, 0x426c, 0x426d, 0x426e, 0x426f,\n  0x4270, 0x4271, 0x4272, 0x4273, 0x4274, 0x4275, 0x4276, 0x4277,\n  0x4278, 0x4279, 0x427a, 0x427b, 0x427c, 0x427d, 0x427e, 0x4321,\n  0x4322, 0x4323, 0x4324, 0x4325, 0x4326, 0x4327, 0x4328, 0x4329,\n  0x432a, 0x432b, 0x432c, 0x432d, 0x432e, 0x432f, 0x4330, 0x4331,\n  0x4332, 0x4333, 0x4334, 0x4335, 0x4336, 0x4337, 0x4338, 0x4339,\n  0x433a, 0x433b, 0x433c, 0x433d, 0x433e, 0x433f, 0x4340, 0x4341,\n  0x4342, 0x4343, 0x4344, 0x4345, 0x4346, 0x4347, 0x4348, 0x4349,\n  0x434a, 0x434b, 0x434c, 0x434d, 0x434e, 0x434f, 0x4350, 0x4351,\n  0x4352, 0x4353, 0x4354, 0x4355, 0x4356, 0x4357, 0x4358, 0x4359,\n  0x435a, 0x435b, 0x435c, 0x435d, 0x435e, 0x435f, 0x4360, 0x4361,\n  0x4362, 0x4363, 0x4364, 0x4365, 0x4366, 0x4367, 0x4368, 0x4369,\n  0x436a, 0x436b, 0x436c, 0x436d, 0x436e, 0x436f, 0x4370, 0x4371,\n  0x4372, 0x4373, 0x4374, 0x4375, 0x4376, 0x4377, 0x4378, 0x4379,\n  0x437a, 0x437b, 0x437c, 0x437d, 0x437e, 0x4421, 0x4422, 0x4423,\n  0x4424, 0x4425, 0x4426, 0x4427, 0x4428, 0x4429, 0x442a, 0x442b,\n  0x442c, 0x442d, 0x442e, 0x442f, 0x4430, 0x4431, 0x4432, 0x4433,\n  0x4434, 0x4435, 0x4436, 0x4437, 0x4438, 0x4439, 0x443a, 0x443b,\n  0x443c, 0x443d, 0x443e, 0x443f, 0x4440, 0x4441, 0x4442, 0x4443,\n  0x4444, 0x4445, 0x4446, 0x4447, 0x4448, 0x4449, 0x444a, 0x444b,\n  0x444c, 0x444d, 0x444e, 0x444f, 0x4450, 0x4451, 0x4452, 0x4453,\n  0x4454, 0x4455, 0x4456, 0x4457, 0x4458, 0x4459, 0x445a, 0x445b,\n  0x445c, 0x445d, 0x445e, 0x445f, 0x4460, 0x4461, 0x4462, 0x4463,\n  0x4464, 0x4465, 0x4466, 0x4467, 0x4468, 0x4469, 0x446a, 0x446b,\n  0x446c, 0x446d, 0x446e, 0x446f, 0x4470, 0x4471, 0x4472, 0x4473,\n  0x4474, 0x4475, 0x4476, 0x4477, 0x4478, 0x4479, 0x447a, 0x447b,\n  0x447c, 0x447d, 0x447e, 0x4521, 0x4522, 0x4523, 0x4524, 0x4525,\n  0x4526, 0x4527, 0x4528, 0x4529, 0x452a, 0x452b, 0x452c, 0x452d,\n  0x452e, 0x452f, 0x4530, 0x4531, 0x4532, 0x4533, 0x4534, 0x4535,\n  0x4536, 0x4537, 0x4538, 0x4539, 0x453a, 0x453b, 0x453c, 0x453d,\n  0x453e, 0x453f, 0x4540, 0x4541, 0x4542, 0x4543, 0x4544, 0x4545,\n  0x4546, 0x4547, 0x4548, 0x4549, 0x454a, 0x454b, 0x454c, 0x454d,\n  0x454e, 0x454f, 0x4550, 0x4551, 0x4552, 0x4553, 0x4554, 0x4555,\n  0x4556, 0x4557, 0x4558, 0x4559, 0x455a, 0x455b, 0x455c, 0x455d,\n  0x455e, 0x455f, 0x4560, 0x4561, 0x4562, 0x4563, 0x4564, 0x4565,\n  0x4566, 0x4567, 0x4568, 0x4569, 0x456a, 0x456b, 0x456c, 0x456d,\n  0x456e, 0x456f, 0x4570, 0x4571, 0x4572, 0x4573, 0x4574, 0x4575,\n  0x4576, 0x4577, 0x4578, 0x4579, 0x457a, 0x457b, 0x457c, 0x457d,\n  0x457e, 0x4621, 0x4622, 0x4623, 0x4624, 0x4625, 0x4626, 0x4627,\n  0x4628, 0x4629, 0x462a, 0x462b, 0x462c, 0x462d, 0x462e, 0x462f,\n  0x4630, 0x4631, 0x4632, 0x4633, 0x4634, 0x4635, 0x4636, 0x4637,\n  0x4638, 0x4639, 0x463a, 0x463b, 0x463c, 0x463d, 0x463e, 0x463f,\n  0x4640, 0x4641, 0x4642, 0x4643, 0x4644, 0x4645, 0x4646, 0x4647,\n  0x4648, 0x4649, 0x464a, 0x464b, 0x464c, 0x464d, 0x464e, 0x464f,\n  0x4650, 0x4651, 0x4652, 0x4653, 0x4654, 0x4655, 0x4656, 0x4657,\n  0x4658, 0x4659, 0x465a, 0x465b, 0x465c, 0x465d, 0x465e, 0x465f,\n  0x4660, 0x4661, 0x4662, 0x4663, 0x4664, 0x4665, 0x4666, 0x4667,\n  0x4668, 0x4669, 0x466a, 0x466b, 0x466c, 0x466d, 0x466e, 0x466f,\n  0x4670, 0x4671, 0x4672, 0x4673, 0x4674, 0x4675, 0x4676, 0x4677,\n  0x4678, 0x4679, 0x467a, 0x467b, 0x467c, 0x467d, 0x467e, 0x4721,\n  0x4722, 0x4723, 0x4724, 0x4725, 0x4726, 0x4727, 0x4728, 0x4729,\n  0x472a, 0x472b, 0x472c, 0x472d, 0x472e, 0x472f, 0x4730, 0x4731,\n  0x4732, 0x4733, 0x4734, 0x4735, 0x4736, 0x4737, 0x4738, 0x4739,\n  0x473a, 0x473b, 0x473c, 0x473d, 0x473e, 0x473f, 0x4740, 0x4741,\n  0x4742, 0x4743, 0x4744, 0x4745, 0x4746, 0x4747, 0x4748, 0x4749,\n  0x474a, 0x474b, 0x474c, 0x474d, 0x474e, 0x474f, 0x4750, 0x4751,\n  0x4752, 0x4753, 0x4754, 0x4755, 0x4756, 0x4757, 0x4758, 0x4759,\n  0x475a, 0x475b, 0x475c, 0x475d, 0x475e, 0x475f, 0x4760, 0x4761,\n  0x4762, 0x4763, 0x4764, 0x4765, 0x4766, 0x4767, 0x4768, 0x4769,\n  0x476a, 0x476b, 0x476c, 0x476d, 0x476e, 0x476f, 0x4770, 0x4771,\n  0x4772, 0x4773, 0x4774, 0x4775, 0x4776, 0x4777, 0x4778, 0x4779,\n  0x477a, 0x477b, 0x477c, 0x477d, 0x477e, 0x4821, 0x4822, 0x4823,\n  0x4824, 0x4825, 0x4826, 0x4827, 0x4828, 0x4829, 0x482a, 0x482b,\n  0x482c, 0x482d, 0x482e, 0x482f, 0x4830, 0x4831, 0x4832, 0x4833,\n  0x4834, 0x4835, 0x4836, 0x4837, 0x4838, 0x4839, 0x483a, 0x483b,\n  0x483c, 0x483d, 0x483e, 0x483f, 0x4840, 0x4841, 0x4842, 0x4843,\n  0x4844, 0x4845, 0x4846, 0x4847, 0x4848, 0x4849, 0x484a, 0x484b,\n  0x484c, 0x484d, 0x484e, 0x484f, 0x4850, 0x4851, 0x4852, 0x4853,\n  0x4854, 0x4855, 0x4856, 0x4857, 0x4858, 0x4859, 0x485a, 0x485b,\n  0x485c, 0x485d, 0x485e, 0x485f, 0x4860, 0x4861, 0x4862, 0x4863,\n  0x4864, 0x4865, 0x4866, 0x4867, 0x4868, 0x4869, 0x486a, 0x486b,\n  0x486c, 0x486d, 0x486e, 0x486f, 0x4870, 0x4871, 0x4872, 0x4873,\n  0x4874, 0x4875, 0x4876, 0x4877, 0x4878, 0x4879, 0x487a, 0x487b,\n  0x487c, 0x487d, 0x487e, 0x4b50, 0x4b56, 0x4b67, 0x4d4f, 0x4d68,\n  0x4e2d, 0x4f7b, 0x5022, 0x5038, 0x5050, 0x505d, 0x5154, 0x5155,\n  0x5158, 0x515b, 0x515c, 0x515d, 0x515e, 0x515f, 0x5160, 0x5162,\n  0x5163, 0x5164, 0x5165, 0x5166, 0x5168, 0x5169, 0x516a, 0x516b,\n  0x516d, 0x516f, 0x5170, 0x5172, 0x5176, 0x517a, 0x517c, 0x517d,\n  0x517e, 0x5222, 0x5223, 0x5227, 0x5228, 0x5229, 0x522a, 0x522b,\n  0x522d, 0x5232, 0x523e, 0x5242, 0x5243, 0x5244, 0x5246, 0x5247,\n  0x5248, 0x5249, 0x524a, 0x524b, 0x524d, 0x524e, 0x524f, 0x5250,\n  0x5251, 0x5252, 0x5253, 0x5254, 0x5255, 0x5256, 0x5257, 0x5259,\n  0x525a, 0x525e, 0x525f, 0x5261, 0x5262, 0x5264, 0x5265, 0x5266,\n  0x5267, 0x5268, 0x5269, 0x526a, 0x526b, 0x5270, 0x5271, 0x5272,\n  0x5273, 0x5274, 0x5275, 0x5277, 0x5278, 0x5466, 0x547c, 0x5525,\n  0x552b, 0x552e, 0x5638, 0x564d, 0x574b, 0x5764, 0x5b45, 0x5b64,\n  0x5c25, 0x5d25, 0x5d55, 0x5d74, 0x5e7c, 0x5e7e, 0x5f33, 0x5f61,\n  0x5f68, 0x6071, 0x612d, 0x616d, 0x6375, 0x6421, 0x6429, 0x652e,\n  0x6531, 0x6532, 0x6539, 0x653b, 0x653c, 0x6544, 0x654e, 0x6550,\n  0x6552, 0x6556, 0x657a, 0x657b, 0x657c, 0x657e, 0x6621, 0x6624,\n  0x6627, 0x662d, 0x662f, 0x6630, 0x6631, 0x6633, 0x6637, 0x6638,\n  0x663c, 0x6644, 0x6646, 0x6647, 0x664a, 0x6652, 0x6656, 0x6659,\n  0x665c, 0x665f, 0x6661, 0x6664, 0x6665, 0x6666, 0x6668, 0x666a,\n  0x666b, 0x666c, 0x666f, 0x6671, 0x6672, 0x6675, 0x6676, 0x6677,\n  0x6679, 0x6721, 0x6726, 0x6729, 0x672a, 0x672c, 0x672d, 0x6730,\n  0x673f, 0x6741, 0x6746, 0x6747, 0x674b, 0x674d, 0x674f, 0x6750,\n  0x6753, 0x675f, 0x6764, 0x6766, 0x6777, 0x6867, 0x6868, 0x6870,\n  0x6871, 0x6877, 0x6879, 0x687b, 0x687e, 0x6927, 0x692c, 0x694c,\n  0x6977, 0x6a41, 0x6a65, 0x6a74, 0x6a77, 0x6a7c, 0x6a7e, 0x6b24,\n  0x6b27, 0x6b29, 0x6b2a, 0x6b3a, 0x6b3b, 0x6b3d, 0x6b41, 0x6b42,\n  0x6b46, 0x6b47, 0x6b4c, 0x6b4f, 0x6b50, 0x6b51, 0x6b52, 0x6b58,\n  0x6c26, 0x6c27, 0x6c2a, 0x6c2f, 0x6c30, 0x6c31, 0x6c32, 0x6c35,\n  0x6c38, 0x6c3a, 0x6c40, 0x6c41, 0x6c45, 0x6c46, 0x6c49, 0x6c4a,\n  0x6c55, 0x6c5d, 0x6c5e, 0x6c61, 0x6c64, 0x6c67, 0x6c68, 0x6c77,\n  0x6c78, 0x6c7a, 0x6d21, 0x6d22, 0x6d23, 0x6d6e, 0x6e5b, 0x723d,\n  0x727a, 0x7331, 0x7427, 0x746e, 0x7674, 0x7676, 0x7738, 0x7748,\n  0x7753, 0x785b, 0x7870, 0x7a21, 0x7a22, 0x7a66, 0x7c29, 0x2321,\n  0x2322, 0x2323, 0x2324, 0x2325, 0x2326, 0x2327, 0x2328, 0x2329,\n  0x232a, 0x232b, 0x232c, 0x232d, 0x232e, 0x232f, 0x2330, 0x2331,\n  0x2332, 0x2333, 0x2334, 0x2335, 0x2336, 0x2337, 0x2338, 0x2339,\n  0x233a, 0x233b, 0x233c, 0x233d, 0x233e, 0x233f, 0x2340, 0x2341,\n  0x2342, 0x2343, 0x2344, 0x2345, 0x2346, 0x2347, 0x2348, 0x2349,\n  0x234a, 0x234b, 0x234c, 0x234d, 0x234e, 0x234f, 0x2350, 0x2351,\n  0x2352, 0x2353, 0x2354, 0x2355, 0x2356, 0x2357, 0x2358, 0x2359,\n  0x235a, 0x235b, 0x212c, 0x235d, 0x235e, 0x235f, 0x2360, 0x2361,\n  0x2362, 0x2363, 0x2364, 0x2365, 0x2366, 0x2367, 0x2368, 0x2369,\n  0x236a, 0x236b, 0x236c, 0x236d, 0x236e, 0x236f, 0x2370, 0x2371,\n  0x2372, 0x2373, 0x2374, 0x2375, 0x2376, 0x2377, 0x2378, 0x2379,\n  0x237a, 0x237b, 0x237c, 0x237d, 0x2226, 0x214b, 0x214c, 0x217e,\n  0x237e, 0x214d, 0x235c,\n};\n\nstatic const Summary16 ksc5601_uni2indx_page00[70] = {\n  /* 0x0000 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x6592 }, {    7, 0xf7df },\n  {   21, 0x0040 }, {   22, 0xc181 }, {   27, 0x0040 }, {   28, 0x4181 },\n  /* 0x0100 */\n  {   32, 0x0000 }, {   32, 0x0002 }, {   33, 0x00c0 }, {   35, 0x810e },\n  {   40, 0x0e07 }, {   46, 0x000c }, {   48, 0x00c0 }, {   50, 0x0000 },\n  {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 },\n  {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 },\n  /* 0x0200 */\n  {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 },\n  {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 },\n  {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 }, {   50, 0x0000 },\n  {   50, 0x0080 }, {   51, 0x2f01 }, {   57, 0x0000 }, {   57, 0x0000 },\n  /* 0x0300 */\n  {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 },\n  {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 }, {   57, 0x0000 },\n  {   57, 0x0000 }, {   57, 0xfffe }, {   72, 0x03fb }, {   81, 0xfffe },\n  {   96, 0x03fb }, {  105, 0x0000 }, {  105, 0x0000 }, {  105, 0x0000 },\n  /* 0x0400 */\n  {  105, 0x0002 }, {  106, 0xffff }, {  122, 0xffff }, {  138, 0xffff },\n  {  154, 0xffff }, {  170, 0x0002 },\n};\nstatic const Summary16 ksc5601_uni2indx_page20[103] = {\n  /* 0x2000 */\n  {  171, 0x0000 }, {  171, 0x3320 }, {  176, 0x0063 }, {  180, 0x080d },\n  {  184, 0x0000 }, {  184, 0x0000 }, {  184, 0x0000 }, {  184, 0x8010 },\n  {  186, 0x001e }, {  190, 0x0000 }, {  190, 0x1000 }, {  191, 0x0000 },\n  {  191, 0x0000 }, {  191, 0x0000 }, {  191, 0x0000 }, {  191, 0x0000 },\n  /* 0x2100 */\n  {  191, 0x0208 }, {  193, 0x0048 }, {  195, 0x0846 }, {  199, 0x0000 },\n  {  199, 0x0000 }, {  199, 0x7818 }, {  205, 0x03ff }, {  215, 0x03ff },\n  {  225, 0x0000 }, {  225, 0x03ff }, {  235, 0x0000 }, {  235, 0x0000 },\n  {  235, 0x0000 }, {  235, 0x0014 }, {  237, 0x0000 }, {  237, 0x0000 },\n  /* 0x2200 */\n  {  237, 0x898d }, {  244, 0x6402 }, {  248, 0x5fa1 }, {  257, 0x3030 },\n  {  261, 0x0000 }, {  261, 0x0004 }, {  262, 0x0c33 }, {  268, 0x0000 },\n  {  268, 0x00cc }, {  272, 0x0200 }, {  273, 0x0020 }, {  274, 0x0000 },\n  {  274, 0x0000 }, {  274, 0x0000 }, {  274, 0x0000 }, {  274, 0x0000 },\n  /* 0x2300 */\n  {  274, 0x0000 }, {  274, 0x0004 }, {  275, 0x0000 }, {  275, 0x0000 },\n  {  275, 0x0000 }, {  275, 0x0000 }, {  275, 0x0000 }, {  275, 0x0000 },\n  {  275, 0x0000 }, {  275, 0x0000 }, {  275, 0x0000 }, {  275, 0x0000 },\n  {  275, 0x0000 }, {  275, 0x0000 }, {  275, 0x0000 }, {  275, 0x0000 },\n  /* 0x2400 */\n  {  275, 0x0000 }, {  275, 0x0000 }, {  275, 0x0000 }, {  275, 0x0000 },\n  {  275, 0x0000 }, {  275, 0x0000 }, {  275, 0x7fff }, {  290, 0xfff0 },\n  {  302, 0x0007 }, {  305, 0xf000 }, {  309, 0xffff }, {  325, 0x003f },\n  {  331, 0x0000 }, {  331, 0xffff }, {  347, 0x03ff }, {  357, 0x0000 },\n  /* 0x2500 */\n  {  357, 0xf00f }, {  365, 0xffff }, {  381, 0xffff }, {  397, 0xffff },\n  {  413, 0x0fff }, {  425, 0x0000 }, {  425, 0x0000 }, {  425, 0x0000 },\n  {  425, 0x0000 }, {  425, 0x0004 }, {  426, 0x03fb }, {  435, 0x30cc },\n  {  441, 0xc9c3 }, {  449, 0x0003 }, {  451, 0x0000 }, {  451, 0x0000 },\n  /* 0x2600 */\n  {  451, 0xc060 }, {  455, 0x5000 }, {  457, 0x0000 }, {  457, 0x0000 },\n  {  457, 0x0005 }, {  459, 0x0000 }, {  459, 0x37bb },\n};\nstatic const Summary16 ksc5601_uni2indx_page30[62] = {\n  /* 0x3000 */\n  {  470, 0xff0f }, {  482, 0x003b }, {  487, 0x0000 }, {  487, 0x0000 },\n  {  487, 0xfffe }, {  502, 0xffff }, {  518, 0xffff }, {  534, 0xffff },\n  {  550, 0xffff }, {  566, 0x000f }, {  570, 0xfffe }, {  585, 0xffff },\n  {  601, 0xffff }, {  617, 0xffff }, {  633, 0xffff }, {  649, 0x007f },\n  /* 0x3100 */\n  {  656, 0x0000 }, {  656, 0x0000 }, {  656, 0x0000 }, {  656, 0xfffe },\n  {  671, 0xffff }, {  687, 0xffff }, {  703, 0xffff }, {  719, 0xffff },\n  {  735, 0x7fff }, {  750, 0x0000 }, {  750, 0x0000 }, {  750, 0x0000 },\n  {  750, 0x0000 }, {  750, 0x0000 }, {  750, 0x0000 }, {  750, 0x0000 },\n  /* 0x3200 */\n  {  750, 0xffff }, {  766, 0x1fff }, {  779, 0x0000 }, {  779, 0x0000 },\n  {  779, 0x0000 }, {  779, 0x0000 }, {  779, 0xffff }, {  795, 0xcfff },\n  {  809, 0x0000 }, {  809, 0x0000 }, {  809, 0x0000 }, {  809, 0x0000 },\n  {  809, 0x0000 }, {  809, 0x0000 }, {  809, 0x0000 }, {  809, 0x0000 },\n  /* 0x3300 */\n  {  809, 0x0000 }, {  809, 0x0000 }, {  809, 0x0000 }, {  809, 0x0000 },\n  {  809, 0x0000 }, {  809, 0x0000 }, {  809, 0x0000 }, {  809, 0x0000 },\n  {  809, 0xff1f }, {  822, 0xffff }, {  838, 0xffff }, {  854, 0xffff },\n  {  870, 0x87ff }, {  882, 0x3949 },\n};\nstatic const Summary16 ksc5601_uni2indx_page4e[1306] = {\n  /* 0x4e00 */\n  {  889, 0x2f8b }, {  898, 0x4372 }, {  905, 0x2000 }, {  906, 0x0b04 },\n  {  910, 0xe82c }, {  917, 0xe340 }, {  923, 0x2800 }, {  925, 0x40c8 },\n  {  929, 0x5944 }, {  935, 0x4937 }, {  943, 0x7976 }, {  953, 0x0440 },\n  {  955, 0x2c93 }, {  962, 0xa3f0 }, {  970, 0x0038 }, {  973, 0x08c5 },\n  /* 0x4f00 */\n  {  978, 0xee02 }, {  985, 0x0003 }, {  987, 0x8000 }, {  988, 0x3550 },\n  {  994, 0xe1c8 }, { 1001, 0x1e23 }, { 1008, 0x8200 }, { 1010, 0xc449 },\n  { 1016, 0xad5a }, { 1025, 0x2942 }, { 1030, 0xc000 }, { 1032, 0x8060 },\n  { 1035, 0x461c }, { 1041, 0xa49a }, { 1048, 0xc003 }, { 1052, 0x052a },\n  /* 0x5000 */\n  { 1057, 0x2a44 }, { 1062, 0xd646 }, { 1070, 0x3dda }, { 1080, 0x0800 },\n  { 1081, 0x8388 }, { 1086, 0x1420 }, { 1089, 0x0020 }, { 1090, 0x0170 },\n  { 1094, 0x2021 }, { 1097, 0x0302 }, { 1100, 0x3000 }, { 1102, 0x40ac },\n  { 1107, 0x8620 }, { 1111, 0x4462 }, { 1116, 0x20a0 }, { 1119, 0x8a00 },\n  /* 0x5100 */\n  { 1122, 0x0253 }, { 1127, 0x8004 }, { 1129, 0x0402 }, { 1131, 0x1484 },\n  { 1135, 0x7bfb }, { 1148, 0x1004 }, { 1150, 0x7fa4 }, { 1160, 0x11e2 },\n  { 1166, 0x2441 }, { 1170, 0x00a4 }, { 1173, 0x1421 }, { 1177, 0x20c0 },\n  { 1180, 0x3a50 }, { 1186, 0x7000 }, { 1189, 0x0002 }, { 1190, 0x2743 },\n  /* 0x5200 */\n  { 1197, 0x45c9 }, { 1204, 0x2082 }, { 1207, 0x4630 }, { 1212, 0x0fc1 },\n  { 1219, 0x3c88 }, { 1225, 0x2850 }, { 1229, 0x8602 }, { 1233, 0xa024 },\n  { 1237, 0x2388 }, { 1242, 0x8806 }, { 1246, 0x0e19 }, { 1252, 0x4000 },\n  { 1253, 0x22aa }, { 1259, 0xeb64 }, { 1268, 0x001c }, { 1271, 0xcd28 },\n  /* 0x5300 */\n  { 1278, 0xa120 }, { 1282, 0x02e1 }, { 1287, 0x840b }, { 1292, 0x8200 },\n  { 1294, 0x279b }, { 1303, 0x549e }, { 1311, 0x8141 }, { 1315, 0xa0b3 },\n  { 1322, 0x0010 }, { 1323, 0x8508 }, { 1327, 0x2061 }, { 1331, 0x0800 },\n  { 1332, 0x2f08 }, { 1338, 0x08d0 }, { 1342, 0xbe3e }, { 1353, 0x010f },\n  /* 0x5400 */\n  { 1358, 0xf718 }, { 1367, 0xa803 }, { 1372, 0x0a41 }, { 1376, 0x5b08 },\n  { 1382, 0x0504 }, { 1385, 0x0002 }, { 1386, 0x0500 }, { 1388, 0x382a },\n  { 1394, 0x5041 }, { 1398, 0x0001 }, { 1399, 0x1910 }, { 1403, 0x2108 },\n  { 1406, 0x0313 }, { 1411, 0x0000 }, { 1411, 0x6122 }, { 1416, 0x0404 },\n  /* 0x5500 */\n  { 1418, 0x40d0 }, { 1422, 0x1001 }, { 1424, 0x8000 }, { 1425, 0x4022 },\n  { 1428, 0x8050 }, { 1431, 0x4048 }, { 1434, 0x0008 }, { 1435, 0x1000 },\n  { 1436, 0x06d1 }, { 1442, 0x3700 }, { 1447, 0x5e80 }, { 1453, 0x0000 },\n  { 1453, 0x00a0 }, { 1455, 0x9410 }, { 1459, 0x0018 }, { 1461, 0x6000 },\n  /* 0x5600 */\n  { 1463, 0x0240 }, { 1465, 0x0090 }, { 1467, 0x8000 }, { 1468, 0x0054 },\n  { 1471, 0x0000 }, { 1471, 0x0008 }, { 1472, 0x0900 }, { 1474, 0x0010 },\n  { 1475, 0x0040 }, { 1476, 0x0000 }, { 1476, 0x5020 }, { 1479, 0x1010 },\n  { 1481, 0x2400 }, { 1483, 0x4c02 }, { 1487, 0x0001 }, { 1488, 0x0601 },\n  /* 0x5700 */\n  { 1491, 0x2918 }, { 1496, 0x814c }, { 1501, 0x2100 }, { 1503, 0x0801 },\n  { 1505, 0x6485 }, { 1511, 0x0003 }, { 1513, 0x4452 }, { 1518, 0x1021 },\n  { 1521, 0x0904 }, { 1524, 0x0008 }, { 1525, 0x000d }, { 1528, 0x0000 },\n  { 1528, 0x4988 }, { 1533, 0x8000 }, { 1534, 0x0001 }, { 1535, 0x1691 },\n  /* 0x5800 */\n  { 1541, 0x0765 }, { 1548, 0x4000 }, { 1549, 0x8492 }, { 1554, 0x0433 },\n  { 1559, 0x8c00 }, { 1562, 0x4592 }, { 1568, 0x0016 }, { 1571, 0x5220 },\n  { 1575, 0x0228 }, { 1578, 0xd008 }, { 1582, 0x4300 }, { 1585, 0x4c08 },\n  { 1589, 0x40a2 }, { 1593, 0xc32a }, { 1600, 0x9810 }, { 1604, 0x2e00 },\n  /* 0x5900 */\n  { 1608, 0x8000 }, { 1609, 0x1670 }, { 1615, 0x6e84 }, { 1622, 0x4082 },\n  { 1625, 0xc390 }, { 1631, 0x04b3 }, { 1637, 0x7c85 }, { 1645, 0x2118 },\n  { 1649, 0x041c }, { 1653, 0x02c8 }, { 1657, 0x1120 }, { 1660, 0x4a00 },\n  { 1663, 0x0a48 }, { 1667, 0x361b }, { 1675, 0x5540 }, { 1680, 0x8900 },\n  /* 0x5a00 */\n  { 1683, 0x000a }, { 1685, 0x9902 }, { 1690, 0x0221 }, { 1693, 0x1040 },\n  { 1695, 0x0242 }, { 1698, 0x0400 }, { 1699, 0x0044 }, { 1701, 0x0000 },\n  { 1701, 0x0000 }, { 1701, 0x0c04 }, { 1704, 0x0010 }, { 1705, 0x0000 },\n  { 1705, 0x1216 }, { 1710, 0x0000 }, { 1710, 0x0242 }, { 1713, 0x0000 },\n  /* 0x5b00 */\n  { 1713, 0x1a20 }, { 1717, 0x0040 }, { 1718, 0x0400 }, { 1719, 0x0000 },\n  { 1719, 0x0009 }, { 1721, 0xb5b3 }, { 1731, 0x0a18 }, { 1735, 0x1523 },\n  { 1741, 0x9ba0 }, { 1748, 0x1fe8 }, { 1757, 0x507c }, { 1764, 0x8379 },\n  { 1772, 0x10fd }, { 1780, 0xc09d }, { 1787, 0xdbf6 }, { 1799, 0x0560 },\n  /* 0x5c00 */\n  { 1803, 0xef92 }, { 1813, 0x0242 }, { 1816, 0x0110 }, { 1818, 0xdf02 },\n  { 1826, 0x6961 }, { 1833, 0x0822 }, { 1836, 0x9035 }, { 1842, 0x0202 },\n  { 1844, 0x0000 }, { 1844, 0x0003 }, { 1846, 0x1a02 }, { 1850, 0x45aa },\n  { 1857, 0x0001 }, { 1858, 0x0200 }, { 1859, 0x8101 }, { 1862, 0x2851 },\n  /* 0x5d00 */\n  { 1867, 0x6080 }, { 1870, 0x02d2 }, { 1875, 0x0280 }, { 1877, 0x0000 },\n  { 1877, 0x1800 }, { 1879, 0x0001 }, { 1880, 0x9200 }, { 1883, 0x0000 },\n  { 1883, 0x0880 }, { 1885, 0x2000 }, { 1886, 0x0405 }, { 1889, 0x3500 },\n  { 1893, 0x2000 }, { 1894, 0x6044 }, { 1898, 0x49e6 }, { 1906, 0x609e },\n  /* 0x5e00 */\n  { 1913, 0x104c }, { 1917, 0x2a42 }, { 1922, 0x2820 }, { 1925, 0xa148 },\n  { 1930, 0x10b1 }, { 1935, 0x8020 }, { 1937, 0x000e }, { 1940, 0x7b9c },\n  { 1950, 0x8490 }, { 1954, 0x14a0 }, { 1958, 0x28c1 }, { 1963, 0x41e0 },\n  { 1968, 0x0704 }, { 1972, 0x8c49 }, { 1978, 0x100d }, { 1982, 0x0cc8 },\n  /* 0x5f00 */\n  { 1987, 0x8412 }, { 1991, 0x89ba }, { 1999, 0x02c0 }, { 2002, 0x1422 },\n  { 2006, 0x5500 }, { 2010, 0x0ac0 }, { 2014, 0x3ec4 }, { 2022, 0x9283 },\n  { 2028, 0x1ca3 }, { 2035, 0x4387 }, { 2042, 0x4703 }, { 2048, 0x22a0 },\n  { 2052, 0x3028 }, { 2056, 0x03c0 }, { 2060, 0x0801 }, { 2062, 0xa020 },\n  /* 0x6000 */\n  { 2065, 0x8000 }, { 2066, 0x3044 }, { 2070, 0x85a3 }, { 2077, 0x0000 },\n  { 2077, 0x200e }, { 2081, 0x2225 }, { 2086, 0xb73c }, { 2096, 0x0001 },\n  { 2097, 0x3220 }, { 2101, 0x8c50 }, { 2106, 0x0099 }, { 2110, 0x315d },\n  { 2118, 0x00a0 }, { 2120, 0x9402 }, { 2124, 0x0003 }, { 2126, 0x0e4b },\n  /* 0x6100 */\n  { 2133, 0xe342 }, { 2140, 0x8c20 }, { 2144, 0x0080 }, { 2145, 0xd091 },\n  { 2151, 0x1d94 }, { 2158, 0xa328 }, { 2164, 0x499c }, { 2171, 0x60c1 },\n  { 2176, 0x4406 }, { 2180, 0x0713 }, { 2186, 0x5a90 }, { 2192, 0x4444 },\n  { 2196, 0x0f88 }, { 2202, 0x0000 }, { 2202, 0x0040 }, { 2203, 0x95c4 },\n  /* 0x6200 */\n  { 2210, 0x7581 }, { 2217, 0x8447 }, { 2223, 0x4402 }, { 2226, 0xc053 },\n  { 2232, 0x2b83 }, { 2239, 0x0108 }, { 2241, 0x4000 }, { 2242, 0x9242 },\n  { 2247, 0x0611 }, { 2251, 0x09a6 }, { 2257, 0x0800 }, { 2258, 0x3222 },\n  { 2263, 0xb384 }, { 2270, 0x1bdd }, { 2280, 0xf000 }, { 2284, 0xc08a },\n  /* 0x6300 */\n  { 2289, 0x0282 }, { 2292, 0x0002 }, { 2293, 0x8800 }, { 2295, 0x6c00 },\n  { 2299, 0x9200 }, { 2302, 0x0021 }, { 2304, 0x4180 }, { 2307, 0x8c84 },\n  { 2312, 0x1308 }, { 2316, 0x0944 }, { 2320, 0x07a7 }, { 2328, 0x0000 },\n  { 2328, 0x8051 }, { 2332, 0x0c41 }, { 2336, 0x6002 }, { 2339, 0x00d0 },\n  /* 0x6400 */\n  { 2342, 0xa000 }, { 2344, 0x10d0 }, { 2348, 0x3004 }, { 2351, 0x4400 },\n  { 2353, 0x0000 }, { 2353, 0x0100 }, { 2354, 0x8201 }, { 2357, 0x0700 },\n  { 2360, 0x0100 }, { 2361, 0x440e }, { 2366, 0x6830 }, { 2371, 0x0805 },\n  { 2374, 0x64b2 }, { 2381, 0x0514 }, { 2385, 0x10e6 }, { 2391, 0x4414 },\n  /* 0x6500 */\n  { 2395, 0x0011 }, { 2397, 0x2100 }, { 2399, 0x9c08 }, { 2404, 0xcbc0 },\n  { 2411, 0xe120 }, { 2416, 0x40c2 }, { 2420, 0x304c }, { 2425, 0x41b4 },\n  { 2431, 0x10ac }, { 2436, 0x9a83 }, { 2443, 0x98b2 }, { 2450, 0x3281 },\n  { 2455, 0x9822 }, { 2460, 0x0084 }, { 2462, 0x3369 }, { 2470, 0xbc12 },\n  /* 0x6600 */\n  { 2477, 0xd6c0 }, { 2484, 0xc03b }, { 2491, 0xa1a1 }, { 2497, 0x0c53 },\n  { 2503, 0x8a1e }, { 2510, 0xea00 }, { 2515, 0xcbf0 }, { 2524, 0x05d8 },\n  { 2530, 0x4390 }, { 2535, 0x21c3 }, { 2541, 0x4805 }, { 2545, 0x4a1c },\n  { 2551, 0x02d0 }, { 2555, 0x3240 }, { 2559, 0x0041 }, { 2561, 0xd79d },\n  /* 0x6700 */\n  { 2572, 0x2b09 }, { 2578, 0xe8b0 }, { 2585, 0x7dc0 }, { 2593, 0x2452 },\n  { 2598, 0xc240 }, { 2602, 0xd04b }, { 2609, 0xa000 }, { 2611, 0xc8ab },\n  { 2619, 0x8a80 }, { 2623, 0x34a9 }, { 2630, 0x8000 }, { 2631, 0x41c9 },\n  { 2637, 0x8010 }, { 2639, 0x241f }, { 2646, 0x9200 }, { 2649, 0x487b },\n  /* 0x6800 */\n  { 2657, 0x0000 }, { 2657, 0x00cc }, { 2661, 0x8406 }, { 2665, 0x3300 },\n  { 2669, 0x410f }, { 2675, 0x001b }, { 2679, 0x2000 }, { 2680, 0x8040 },\n  { 2682, 0x8022 }, { 2685, 0xa098 }, { 2690, 0xa186 }, { 2696, 0x006b },\n  { 2701, 0x2a30 }, { 2706, 0x85a4 }, { 2712, 0x4181 }, { 2716, 0x0604 },\n  /* 0x6900 */\n  { 2719, 0x6021 }, { 2723, 0x0004 }, { 2724, 0x0080 }, { 2725, 0xa001 },\n  { 2728, 0x0400 }, { 2729, 0x46b8 }, { 2736, 0xe90f }, { 2745, 0x03a0 },\n  { 2749, 0x0000 }, { 2749, 0x1820 }, { 2752, 0x40a0 }, { 2755, 0x0810 },\n  { 2757, 0x380a }, { 2762, 0x0001 }, { 2763, 0x0500 }, { 2765, 0xa800 },\n  /* 0x6a00 */\n  { 2768, 0x0404 }, { 2770, 0xc28a }, { 2776, 0x000a }, { 2778, 0x2720 },\n  { 2783, 0x0910 }, { 2786, 0x830c }, { 2791, 0x0802 }, { 2793, 0x0000 },\n  { 2793, 0x6211 }, { 2798, 0x1080 }, { 2800, 0x000c }, { 2802, 0x0808 },\n  { 2804, 0x000c }, { 2806, 0x0c08 }, { 2809, 0x0000 }, { 2809, 0x0840 },\n  /* 0x6b00 */\n  { 2811, 0x1410 }, { 2814, 0x0044 }, { 2816, 0x000b }, { 2819, 0x6404 },\n  { 2823, 0x50c0 }, { 2827, 0x8001 }, { 2829, 0x047e }, { 2836, 0x8984 },\n  { 2841, 0x0658 }, { 2846, 0x4140 }, { 2849, 0xc000 }, { 2851, 0x94a4 },\n  { 2857, 0xa862 }, { 2863, 0x09dc }, { 2870, 0x1800 }, { 2872, 0x0000 },\n  /* 0x6c00 */\n  { 2872, 0x8100 }, { 2874, 0x000a }, { 2876, 0x0008 }, { 2877, 0x4190 },\n  { 2881, 0x4007 }, { 2885, 0xe4a1 }, { 2892, 0x2501 }, { 2896, 0x6445 },\n  { 2902, 0x11ee }, { 2910, 0x0e7d }, { 2919, 0x4800 }, { 2921, 0xfb08 },\n  { 2929, 0x1616 }, { 2935, 0x08a8 }, { 2939, 0xc92e }, { 2947, 0x0009 },\n  /* 0x6d00 */\n  { 2949, 0x1800 }, { 2951, 0x4a82 }, { 2956, 0x06a0 }, { 2960, 0x6b64 },\n  { 2968, 0x0002 }, { 2969, 0x1600 }, { 2972, 0x5648 }, { 2978, 0x8390 },\n  { 2983, 0x73a0 }, { 2990, 0x002a }, { 2993, 0x8000 }, { 2994, 0x0024 },\n  { 2996, 0x88f9 }, { 3004, 0x4702 }, { 3009, 0x4d02 }, { 3014, 0x0faa },\n  /* 0x6e00 */\n  { 3022, 0x0000 }, { 3022, 0x8e80 }, { 3027, 0xb87b }, { 3037, 0x7554 },\n  { 3045, 0x2418 }, { 3049, 0xd940 }, { 3055, 0xc880 }, { 3059, 0x040c },\n  { 3062, 0x0000 }, { 3062, 0xb041 }, { 3067, 0x8c24 }, { 3072, 0x0442 },\n  { 3075, 0x5a34 }, { 3082, 0x001a }, { 3085, 0x8000 }, { 3086, 0xc110 },\n  /* 0x6f00 */\n  { 3090, 0x8046 }, { 3094, 0x0032 }, { 3097, 0x180d }, { 3102, 0x8106 },\n  { 3106, 0x0002 }, { 3107, 0xcd92 }, { 3115, 0x6014 }, { 3119, 0x7401 },\n  { 3124, 0x6112 }, { 3129, 0x0091 }, { 3132, 0xc098 }, { 3137, 0x420a },\n  { 3141, 0x040f }, { 3146, 0x8420 }, { 3149, 0x9a13 }, { 3156, 0x4002 },\n  /* 0x7000 */\n  { 3158, 0x8a62 }, { 3164, 0xfd22 }, { 3173, 0x8188 }, { 3177, 0x4080 },\n  { 3179, 0x1000 }, { 3180, 0x2103 }, { 3184, 0x0808 }, { 3186, 0x3101 },\n  { 3190, 0x4420 }, { 3193, 0x0704 }, { 3197, 0xb812 }, { 3203, 0x0388 },\n  { 3207, 0x8900 }, { 3210, 0xa300 }, { 3214, 0x0000 }, { 3214, 0x2202 },\n  /* 0x7100 */\n  { 3217, 0x1210 }, { 3220, 0x4600 }, { 3223, 0x0042 }, { 3225, 0x0041 },\n  { 3227, 0x5680 }, { 3232, 0x5241 }, { 3237, 0x52f0 }, { 3244, 0x2000 },\n  { 3245, 0x8610 }, { 3249, 0x8214 }, { 3253, 0x1004 }, { 3255, 0x4602 },\n  { 3259, 0x430a }, { 3264, 0x8035 }, { 3269, 0x60e0 }, { 3274, 0xd800 },\n  /* 0x7200 */\n  { 3278, 0x0041 }, { 3280, 0x0801 }, { 3282, 0x3400 }, { 3285, 0x6c65 },\n  { 3293, 0x11c1 }, { 3298, 0xab04 }, { 3304, 0x0286 }, { 3308, 0x2204 },\n  { 3311, 0x0003 }, { 3313, 0x0000 }, { 3313, 0x9084 }, { 3317, 0x0000 },\n  { 3317, 0x4015 }, { 3321, 0x0281 }, { 3324, 0x0202 }, { 3326, 0x3300 },\n  /* 0x7300 */\n  { 3330, 0x0400 }, { 3331, 0x3840 }, { 3335, 0x0e20 }, { 3339, 0xc0c0 },\n  { 3343, 0x0030 }, { 3345, 0x0085 }, { 3348, 0x0500 }, { 3350, 0x0d25 },\n  { 3356, 0x4ad0 }, { 3362, 0x81d0 }, { 3367, 0x2280 }, { 3370, 0x020c },\n  { 3373, 0xb605 }, { 3380, 0x6240 }, { 3384, 0x2679 }, { 3392, 0x6280 },\n  /* 0x7400 */\n  { 3396, 0x02ea }, { 3402, 0x0808 }, { 3404, 0xdd67 }, { 3415, 0x8579 },\n  { 3423, 0x081b }, { 3428, 0xdea0 }, { 3436, 0x8735 }, { 3444, 0x4000 },\n  { 3445, 0x0a8c }, { 3450, 0xd100 }, { 3454, 0x05aa }, { 3460, 0xa225 },\n  { 3466, 0x8440 }, { 3469, 0x1510 }, { 3473, 0x404d }, { 3478, 0x0080 },\n  /* 0x7500 */\n  { 3479, 0x0012 }, { 3481, 0x8d22 }, { 3487, 0x1968 }, { 3493, 0x058f },\n  { 3500, 0x9080 }, { 3503, 0x3a1a }, { 3510, 0x8464 }, { 3515, 0x8561 },\n  { 3521, 0xccc0 }, { 3527, 0x2002 }, { 3529, 0x0820 }, { 3531, 0x732e },\n  { 3540, 0x20a4 }, { 3544, 0x0b34 }, { 3550, 0x0004 }, { 3551, 0x1415 },\n  /* 0x7600 */\n  { 3556, 0x2001 }, { 3558, 0x8200 }, { 3560, 0x0057 }, { 3565, 0x0800 },\n  { 3566, 0x5004 }, { 3569, 0x0044 }, { 3571, 0x1212 }, { 3575, 0x7905 },\n  { 3582, 0x40d0 }, { 3586, 0x0009 }, { 3588, 0x4000 }, { 3589, 0x8400 },\n  { 3591, 0x054c }, { 3596, 0xd844 }, { 3602, 0x409a }, { 3607, 0x5114 },\n  /* 0x7700 */\n  { 3612, 0x0b12 }, { 3617, 0x4000 }, { 3618, 0x0201 }, { 3620, 0x1580 },\n  { 3624, 0x2001 }, { 3626, 0x0800 }, { 3627, 0x084a }, { 3631, 0xc200 },\n  { 3634, 0x0800 }, { 3635, 0x4002 }, { 3637, 0x3020 }, { 3640, 0x9809 },\n  { 3645, 0x0000 }, { 3645, 0x1880 }, { 3648, 0xe22c }, { 3655, 0x0008 },\n  /* 0x7800 */\n  { 3656, 0x0004 }, { 3657, 0x0004 }, { 3658, 0x10e0 }, { 3662, 0x0014 },\n  { 3664, 0x8020 }, { 3666, 0x2000 }, { 3667, 0x9800 }, { 3670, 0x1000 },\n  { 3671, 0x7082 }, { 3676, 0x0082 }, { 3678, 0x0288 }, { 3681, 0x1c00 },\n  { 3684, 0x4c22 }, { 3689, 0x0001 }, { 3690, 0x9100 }, { 3693, 0x0820 },\n  /* 0x7900 */\n  { 3695, 0x4002 }, { 3697, 0x0040 }, { 3698, 0x1c00 }, { 3701, 0x4400 },\n  { 3703, 0x0383 }, { 3708, 0x7cc1 }, { 3716, 0x2121 }, { 3720, 0x8400 },\n  { 3722, 0xe002 }, { 3726, 0x0002 }, { 3727, 0x44c0 }, { 3731, 0xe20a },\n  { 3737, 0x0e03 }, { 3742, 0x8126 }, { 3747, 0x02d0 }, { 3751, 0x0800 },\n  /* 0x7a00 */\n  { 3752, 0x2921 }, { 3757, 0x9690 }, { 3763, 0x4001 }, { 3765, 0xb8c2 },\n  { 3772, 0x6241 }, { 3777, 0x0080 }, { 3778, 0x0a06 }, { 3782, 0xa651 },\n  { 3789, 0x0112 }, { 3792, 0x812c }, { 3797, 0xc600 }, { 3801, 0x0400 },\n  { 3802, 0x0cb0 }, { 3807, 0xa280 }, { 3811, 0xa429 }, { 3817, 0x8640 },\n  /* 0x7b00 */\n  { 3821, 0x8000 }, { 3822, 0x4a02 }, { 3826, 0x3041 }, { 3830, 0x0200 },\n  { 3831, 0xba40 }, { 3837, 0x0057 }, { 3842, 0x5001 }, { 3845, 0x2020 },\n  { 3847, 0x8880 }, { 3850, 0x24b0 }, { 3855, 0x2002 }, { 3857, 0x0112 },\n  { 3860, 0x02d3 }, { 3866, 0x0004 }, { 3867, 0x0211 }, { 3870, 0x0000 },\n  /* 0x7c00 */\n  { 3870, 0x0080 }, { 3871, 0x4004 }, { 3873, 0x0c82 }, { 3877, 0xe000 },\n  { 3880, 0x3008 }, { 3883, 0x0000 }, { 3883, 0x1011 }, { 3886, 0x0008 },\n  { 3887, 0x0208 }, { 3889, 0x81a4 }, { 3894, 0x40a0 }, { 3897, 0x420e },\n  { 3902, 0x0400 }, { 3903, 0xc040 }, { 3906, 0x0081 }, { 3908, 0x4800 },\n  /* 0x7d00 */\n  { 3910, 0x2df5 }, { 3920, 0x0f91 }, { 3927, 0xd807 }, { 3934, 0x0629 },\n  { 3939, 0x007c }, { 3944, 0x4001 }, { 3946, 0x4546 }, { 3952, 0x824e },\n  { 3958, 0xc000 }, { 3960, 0x1008 }, { 3962, 0x3005 }, { 3966, 0xed36 },\n  { 3976, 0x0c80 }, { 3979, 0x6540 }, { 3984, 0x930b }, { 3991, 0x0810 },\n  /* 0x7e00 */\n  { 3993, 0x0600 }, { 3995, 0xe820 }, { 4000, 0xc80a }, { 4005, 0x6082 },\n  { 4009, 0x00ca }, { 4013, 0x4034 }, { 4017, 0x2e02 }, { 4022, 0x1201 },\n  { 4025, 0x9004 }, { 4028, 0x1948 }, { 4033, 0x0000 }, { 4033, 0x0000 },\n  { 4033, 0x0000 }, { 4033, 0x0000 }, { 4033, 0x0000 }, { 4033, 0x0000 },\n  /* 0x7f00 */\n  { 4033, 0x0000 }, { 4033, 0x0000 }, { 4033, 0x0000 }, { 4033, 0x0540 },\n  { 4036, 0x1000 }, { 4037, 0x0031 }, { 4040, 0x4c00 }, { 4043, 0x02a5 },\n  { 4048, 0x5520 }, { 4053, 0x4410 }, { 4056, 0x0310 }, { 4059, 0x2304 },\n  { 4063, 0x5422 }, { 4068, 0x8034 }, { 4072, 0x0a03 }, { 4076, 0x1201 },\n  /* 0x8000 */\n  { 4079, 0x126b }, { 4086, 0x01a1 }, { 4090, 0x2000 }, { 4091, 0xa048 },\n  { 4095, 0x0448 }, { 4098, 0x4540 }, { 4102, 0x8000 }, { 4103, 0xe08d },\n  { 4110, 0x1af0 }, { 4117, 0x2840 }, { 4120, 0x8626 }, { 4126, 0x0416 },\n  { 4130, 0x5018 }, { 4134, 0x4c00 }, { 4137, 0x0032 }, { 4140, 0x2112 },\n  /* 0x8100 */\n  { 4144, 0x05e4 }, { 4150, 0x0d00 }, { 4153, 0x8a08 }, { 4157, 0x4200 },\n  { 4159, 0x4800 }, { 4161, 0x0033 }, { 4165, 0x0860 }, { 4168, 0x8703 },\n  { 4174, 0x8501 }, { 4178, 0x3400 }, { 4181, 0x0109 }, { 4184, 0xe428 },\n  { 4190, 0x2045 }, { 4194, 0x8100 }, { 4196, 0x25a8 }, { 4202, 0x5c18 },\n  /* 0x8200 */\n  { 4208, 0x35a0 }, { 4214, 0xd804 }, { 4219, 0x1c02 }, { 4223, 0x02e0 },\n  { 4227, 0x00a1 }, { 4230, 0x0200 }, { 4231, 0xc050 }, { 4235, 0x4146 },\n  { 4240, 0x6800 }, { 4243, 0xa604 }, { 4248, 0xf260 }, { 4255, 0xbb8a },\n  { 4264, 0x0000 }, { 4264, 0xc8b6 }, { 4272, 0x00e2 }, { 4276, 0x6002 },\n  /* 0x8300 */\n  { 4279, 0x023e }, { 4285, 0x0080 }, { 4286, 0x8900 }, { 4289, 0x0372 },\n  { 4295, 0x8681 }, { 4300, 0x0006 }, { 4302, 0x0000 }, { 4302, 0x0888 },\n  { 4305, 0x4600 }, { 4308, 0x4140 }, { 4311, 0x0e04 }, { 4315, 0x2000 },\n  { 4316, 0x1622 }, { 4321, 0x1048 }, { 4324, 0x8a00 }, { 4327, 0x2217 },\n  /* 0x8400 */\n  { 4333, 0x7418 }, { 4339, 0x0000 }, { 4339, 0x1200 }, { 4341, 0x2102 },\n  { 4344, 0x0200 }, { 4345, 0x0880 }, { 4347, 0x984a }, { 4353, 0x0420 },\n  { 4355, 0x0000 }, { 4355, 0x1211 }, { 4359, 0x0002 }, { 4360, 0x9904 },\n  { 4365, 0x2a55 }, { 4372, 0x0402 }, { 4374, 0x5000 }, { 4376, 0x1010 },\n  /* 0x8500 */\n  { 4378, 0x0000 }, { 4378, 0x459a }, { 4385, 0xb02a }, { 4391, 0xa000 },\n  { 4393, 0x420a }, { 4397, 0x0208 }, { 4399, 0x2708 }, { 4404, 0x0000 },\n  { 4404, 0x8090 }, { 4407, 0x0812 }, { 4410, 0x8740 }, { 4415, 0x0401 },\n  { 4417, 0xe202 }, { 4422, 0x3020 }, { 4425, 0x0630 }, { 4429, 0x8c80 },\n  /* 0x8600 */\n  { 4433, 0x04c4 }, { 4437, 0x04c0 }, { 4440, 0x2000 }, { 4441, 0x8000 },\n  { 4442, 0x4000 }, { 4443, 0xd831 }, { 4450, 0x0080 }, { 4451, 0x0200 },\n  { 4452, 0x1400 }, { 4454, 0x0008 }, { 4455, 0x0218 }, { 4458, 0x0000 },\n  { 4458, 0x0880 }, { 4460, 0x8a10 }, { 4464, 0x2010 }, { 4466, 0x4000 },\n  /* 0x8700 */\n  { 4467, 0x010d }, { 4471, 0x1500 }, { 4474, 0x0000 }, { 4474, 0x0000 },\n  { 4474, 0x4000 }, { 4475, 0x80a0 }, { 4478, 0x0140 }, { 4480, 0x0150 },\n  { 4483, 0x2004 }, { 4485, 0x8000 }, { 4486, 0x0004 }, { 4487, 0x0408 },\n  { 4489, 0x0010 }, { 4490, 0x0000 }, { 4490, 0x9001 }, { 4493, 0x4a04 },\n  /* 0x8800 */\n  { 4497, 0x0020 }, { 4498, 0x8000 }, { 4499, 0x000c }, { 4501, 0x0842 },\n  { 4504, 0x3041 }, { 4508, 0x2a8c }, { 4514, 0x090e }, { 4519, 0xc085 },\n  { 4524, 0x2906 }, { 4529, 0x40c4 }, { 4533, 0x0800 }, { 4534, 0x0010 },\n  { 4535, 0x8006 }, { 4538, 0xb230 }, { 4544, 0x0102 }, { 4546, 0x2138 },\n  /* 0x8900 */\n  { 4551, 0x0080 }, { 4552, 0x030d }, { 4557, 0x0420 }, { 4559, 0x0940 },\n  { 4562, 0x0012 }, { 4564, 0x8000 }, { 4565, 0x0410 }, { 4567, 0x8004 },\n  { 4569, 0x88ca }, { 4575, 0x0048 }, { 4577, 0x0602 }, { 4580, 0x2404 },\n  { 4583, 0x0001 }, { 4584, 0x0004 }, { 4585, 0x0008 }, { 4586, 0x0110 },\n  /* 0x8a00 */\n  { 4588, 0x550d }, { 4595, 0xa9c8 }, { 4602, 0x2428 }, { 4606, 0x0c52 },\n  { 4611, 0x0000 }, { 4611, 0x4831 }, { 4616, 0x624d }, { 4623, 0x022f },\n  { 4629, 0x30a0 }, { 4633, 0x4128 }, { 4637, 0x057b }, { 4645, 0xd205 },\n  { 4651, 0xa894 }, { 4657, 0x1844 }, { 4661, 0x6cc2 }, { 4668, 0x45c2 },\n  /* 0x8b00 */\n  { 4674, 0x4017 }, { 4679, 0x2ed1 }, { 4687, 0x1901 }, { 4691, 0x0208 },\n  { 4693, 0xc202 }, { 4697, 0x1500 }, { 4700, 0x9040 }, { 4703, 0x2091 },\n  { 4707, 0x0401 }, { 4709, 0x044d }, { 4714, 0x0000 }, { 4714, 0x0000 },\n  { 4714, 0x0000 }, { 4714, 0x0000 }, { 4714, 0x0000 }, { 4714, 0x0000 },\n  /* 0x8c00 */\n  { 4714, 0x0000 }, { 4714, 0x0000 }, { 4714, 0x0000 }, { 4714, 0x8080 },\n  { 4716, 0x1542 }, { 4721, 0x0420 }, { 4723, 0x0c02 }, { 4726, 0x0600 },\n  { 4728, 0x1404 }, { 4731, 0x6000 }, { 4733, 0x9f87 }, { 4743, 0xb9d9 },\n  { 4753, 0x059f }, { 4761, 0x540a }, { 4766, 0x245d }, { 4773, 0x3810 },\n  /* 0x8d00 */\n  { 4777, 0x25b0 }, { 4783, 0x0048 }, { 4785, 0x0000 }, { 4785, 0x0000 },\n  { 4785, 0x0000 }, { 4785, 0x0000 }, { 4785, 0x0850 }, { 4788, 0x0099 },\n  { 4792, 0x0420 }, { 4794, 0x0200 }, { 4795, 0x0108 }, { 4797, 0x4408 },\n  { 4800, 0x9840 }, { 4804, 0x2800 }, { 4806, 0x810a }, { 4810, 0x0008 },\n  /* 0x8e00 */\n  { 4811, 0x8400 }, { 4813, 0x4001 }, { 4815, 0x0400 }, { 4816, 0x0021 },\n  { 4818, 0x0794 }, { 4824, 0x8200 }, { 4826, 0x0001 }, { 4827, 0x0050 },\n  { 4829, 0x2482 }, { 4833, 0x0000 }, { 4833, 0x1c00 }, { 4836, 0x0000 },\n  { 4836, 0x3c01 }, { 4841, 0x8004 }, { 4843, 0x0800 }, { 4844, 0x4900 },\n  /* 0x8f00 */\n  { 4847, 0x0228 }, { 4850, 0xf83c }, { 4859, 0x86c0 }, { 4864, 0xcb08 },\n  { 4870, 0x6230 }, { 4875, 0xa000 }, { 4877, 0x0004 }, { 4878, 0x0000 },\n  { 4878, 0x0000 }, { 4878, 0x1800 }, { 4880, 0xa148 }, { 4885, 0x0007 },\n  { 4888, 0x4024 }, { 4891, 0x0012 }, { 4893, 0x2c40 }, { 4897, 0x2285 },\n  /* 0x9000 */\n  { 4902, 0xa96f }, { 4912, 0xe6b3 }, { 4922, 0x400f }, { 4927, 0x5126 },\n  { 4933, 0x6c86 }, { 4940, 0x723b }, { 4949, 0xe20b }, { 4956, 0xb5a4 },\n  { 4964, 0x859f }, { 4973, 0x0222 }, { 4976, 0x854c }, { 4982, 0x0123 },\n  { 4986, 0x0402 }, { 4988, 0x4000 }, { 4989, 0x2102 }, { 4992, 0x2020 },\n  /* 0x9100 */\n  { 4994, 0x0004 }, { 4995, 0x0224 }, { 4998, 0x2080 }, { 5000, 0x0004 },\n  { 5001, 0x7e00 }, { 5007, 0x0004 }, { 5008, 0x1604 }, { 5012, 0x01a0 },\n  { 5015, 0x2a80 }, { 5019, 0x1004 }, { 5021, 0xd800 }, { 5025, 0x0032 },\n  { 5028, 0xfa81 }, { 5036, 0x3183 }, { 5042, 0x0488 }, { 5045, 0x0020 },\n  /* 0x9200 */\n  { 5046, 0x2000 }, { 5047, 0x4087 }, { 5052, 0x0000 }, { 5052, 0x8410 },\n  { 5055, 0x0221 }, { 5058, 0x4880 }, { 5061, 0x0074 }, { 5065, 0x0000 },\n  { 5065, 0x0029 }, { 5068, 0x114a }, { 5073, 0x0000 }, { 5073, 0x02c8 },\n  { 5077, 0x9000 }, { 5079, 0x0004 }, { 5080, 0x0410 }, { 5082, 0x1100 },\n  /* 0x9300 */\n  { 5084, 0x0010 }, { 5085, 0xc501 }, { 5090, 0xc957 }, { 5099, 0x0000 },\n  { 5099, 0x2d00 }, { 5103, 0x0810 }, { 5105, 0x4000 }, { 5106, 0x5020 },\n  { 5109, 0x1000 }, { 5110, 0x0450 }, { 5113, 0x3088 }, { 5117, 0x0001 },\n  { 5118, 0x0008 }, { 5119, 0x4002 }, { 5121, 0x0012 }, { 5123, 0x0040 },\n  /* 0x9400 */\n  { 5124, 0x0010 }, { 5125, 0x0100 }, { 5126, 0x0820 }, { 5128, 0x0120 },\n  { 5130, 0x0010 }, { 5131, 0x0806 }, { 5134, 0x0000 }, { 5134, 0xa000 },\n  { 5136, 0x0000 }, { 5136, 0x0000 }, { 5136, 0x0000 }, { 5136, 0x0000 },\n  { 5136, 0x0000 }, { 5136, 0x0000 }, { 5136, 0x0000 }, { 5136, 0x0000 },\n  /* 0x9500 */\n  { 5136, 0x0000 }, { 5136, 0x0000 }, { 5136, 0x0000 }, { 5136, 0x0000 },\n  { 5136, 0x0000 }, { 5136, 0x0000 }, { 5136, 0x0000 }, { 5136, 0x0080 },\n  { 5137, 0x8a09 }, { 5142, 0x011e }, { 5147, 0x2138 }, { 5152, 0x1802 },\n  { 5155, 0x0480 }, { 5157, 0x1070 }, { 5161, 0x0006 }, { 5163, 0x0000 },\n  /* 0x9600 */\n  { 5163, 0x0000 }, { 5163, 0x1000 }, { 5164, 0x4402 }, { 5167, 0x8804 },\n  { 5170, 0x3815 }, { 5176, 0xf801 }, { 5182, 0x041c }, { 5186, 0x21e9 },\n  { 5193, 0x6c60 }, { 5199, 0x1b30 }, { 5205, 0x0588 }, { 5209, 0x0882 },\n  { 5212, 0x7af3 }, { 5223, 0x1a60 }, { 5228, 0x870c }, { 5234, 0x0ac5 },\n  /* 0x9700 */\n  { 5240, 0x00c1 }, { 5243, 0x524a }, { 5249, 0x0080 }, { 5250, 0x2205 },\n  { 5254, 0x0114 }, { 5257, 0x5042 }, { 5261, 0x2206 }, { 5265, 0x0490 },\n  { 5268, 0xa800 }, { 5271, 0x0000 }, { 5271, 0x2901 }, { 5275, 0x0000 },\n  { 5275, 0x0840 }, { 5277, 0x1008 }, { 5279, 0x0000 }, { 5279, 0x8848 },\n  /* 0x9800 */\n  { 5283, 0x156f }, { 5292, 0x018f }, { 5298, 0x2000 }, { 5299, 0x0b01 },\n  { 5303, 0x7040 }, { 5307, 0x4510 }, { 5311, 0x88a0 }, { 5315, 0x0000 },\n  { 5315, 0x0000 }, { 5315, 0x0000 }, { 5315, 0x8100 }, { 5317, 0x0002 },\n  { 5318, 0x0090 }, { 5320, 0x9800 }, { 5323, 0xe006 }, { 5328, 0x7010 },\n  /* 0x9900 */\n  { 5332, 0x1608 }, { 5336, 0x4109 }, { 5340, 0x0101 }, { 5342, 0x0000 },\n  { 5342, 0x3a20 }, { 5347, 0x0096 }, { 5351, 0x0000 }, { 5351, 0x0000 },\n  { 5351, 0x0000 }, { 5351, 0x2240 }, { 5354, 0x7120 }, { 5359, 0x021a },\n  { 5363, 0x0002 }, { 5364, 0xa227 }, { 5371, 0x2000 }, { 5372, 0x8002 },\n  /* 0x9a00 */\n  { 5374, 0xc102 }, { 5378, 0x0200 }, { 5379, 0x0800 }, { 5380, 0x00c1 },\n  { 5383, 0x2029 }, { 5387, 0x8ca0 }, { 5392, 0x0624 }, { 5396, 0x0000 },\n  { 5396, 0x0000 }, { 5396, 0x0000 }, { 5396, 0x0100 }, { 5397, 0x0100 },\n  { 5398, 0x0000 }, { 5398, 0x0118 }, { 5401, 0x4020 }, { 5403, 0x0000 },\n  /* 0x9b00 */\n  { 5403, 0x0000 }, { 5403, 0x0400 }, { 5404, 0x0480 }, { 5406, 0x1002 },\n  { 5408, 0x803e }, { 5414, 0x0410 }, { 5416, 0x8000 }, { 5417, 0x0000 },\n  { 5417, 0x4000 }, { 5418, 0x8002 }, { 5420, 0x4800 }, { 5422, 0x0000 },\n  { 5422, 0x0200 }, { 5423, 0x0040 }, { 5424, 0x0110 }, { 5426, 0x0000 },\n  /* 0x9c00 */\n  { 5426, 0x2000 }, { 5427, 0x0025 }, { 5430, 0x0020 }, { 5431, 0x0804 },\n  { 5433, 0x0280 }, { 5435, 0x0080 }, { 5436, 0x0000 }, { 5436, 0x0000 },\n  { 5436, 0x0000 }, { 5436, 0x0000 }, { 5436, 0x0000 }, { 5436, 0x0000 },\n  { 5436, 0x0000 }, { 5436, 0x0000 }, { 5436, 0x02a0 }, { 5439, 0x0058 },\n  /* 0x9d00 */\n  { 5442, 0x0200 }, { 5443, 0x0800 }, { 5444, 0x0140 }, { 5446, 0x0800 },\n  { 5447, 0x0000 }, { 5447, 0x2002 }, { 5449, 0x1003 }, { 5452, 0x0004 },\n  { 5453, 0x0000 }, { 5453, 0x0000 }, { 5453, 0x8200 }, { 5455, 0x0010 },\n  { 5456, 0x0010 }, { 5457, 0x0080 }, { 5458, 0x0000 }, { 5458, 0x0704 },\n  /* 0x9e00 */\n  { 5462, 0x0000 }, { 5462, 0x4400 }, { 5464, 0x0000 }, { 5464, 0x0000 },\n  { 5464, 0x0000 }, { 5464, 0x0000 }, { 5464, 0x0000 }, { 5464, 0xa220 },\n  { 5468, 0x0000 }, { 5468, 0xa08c }, { 5473, 0x0020 }, { 5474, 0x4830 },\n  { 5478, 0x6008 }, { 5481, 0x5912 }, { 5487, 0x0100 }, { 5488, 0x0010 },\n  /* 0x9f00 */\n  { 5489, 0x4180 }, { 5492, 0x0008 }, { 5493, 0x0001 }, { 5494, 0x0800 },\n  { 5495, 0x4c00 }, { 5498, 0x8004 }, { 5500, 0x1482 }, { 5504, 0x0080 },\n  { 5505, 0x2000 }, { 5506, 0x1021 },\n};\nstatic const Summary16 ksc5601_uni2indx_pageac[698] = {\n  /* 0xac00 */\n  { 5509, 0x0793 }, { 5516, 0x3eff }, { 5529, 0xb011 }, { 5534, 0x1303 },\n  { 5539, 0x2801 }, { 5542, 0x1110 }, { 5545, 0x0000 }, { 5545, 0x0593 },\n  { 5551, 0x1e7b }, { 5561, 0xb011 }, { 5566, 0x9703 }, { 5573, 0x3b01 },\n  { 5579, 0x1112 }, { 5583, 0x00a0 }, { 5585, 0x9593 }, { 5593, 0x306b },\n  /* 0xad00 */\n  { 5600, 0xb051 }, { 5606, 0x1102 }, { 5609, 0x3201 }, { 5613, 0x1130 },\n  { 5617, 0x02b0 }, { 5621, 0x0111 }, { 5624, 0x300a }, { 5628, 0xb879 },\n  { 5637, 0x1306 }, { 5642, 0x3001 }, { 5645, 0x0010 }, { 5646, 0x0080 },\n  { 5647, 0x0113 }, { 5651, 0x100b }, { 5655, 0x0011 }, { 5657, 0x9300 },\n  /* 0xae00 */\n  { 5661, 0x2b03 }, { 5667, 0x0010 }, { 5668, 0x0000 }, { 5668, 0x0593 },\n  { 5674, 0x746b }, { 5683, 0xb051 }, { 5689, 0x1323 }, { 5695, 0x3b01 },\n  { 5701, 0x1030 }, { 5704, 0x0000 }, { 5704, 0x0000 }, { 5704, 0x7000 },\n  { 5707, 0xb011 }, { 5712, 0x1303 }, { 5717, 0x2900 }, { 5720, 0x1110 },\n  /* 0xaf00 */\n  { 5723, 0x2180 }, { 5726, 0x0001 }, { 5727, 0x3000 }, { 5729, 0xb015 },\n  { 5735, 0x030e }, { 5740, 0x3001 }, { 5743, 0x0030 }, { 5745, 0x0200 },\n  { 5746, 0x0111 }, { 5749, 0x1023 }, { 5753, 0x0000 }, { 5753, 0x1300 },\n  { 5756, 0x6b81 }, { 5763, 0x1010 }, { 5765, 0x0300 }, { 5767, 0x0113 },\n  /* 0xb000 */\n  { 5771, 0x1013 }, { 5775, 0x3011 }, { 5779, 0x0100 }, { 5780, 0x0000 },\n  { 5780, 0x5530 }, { 5786, 0x22b8 }, { 5792, 0x0000 }, { 5792, 0x3000 },\n  { 5794, 0xb011 }, { 5799, 0x9702 }, { 5805, 0xfb07 }, { 5815, 0x113a },\n  { 5821, 0x03b0 }, { 5826, 0x0113 }, { 5830, 0x0021 }, { 5832, 0x0000 },\n  /* 0xb100 */\n  { 5832, 0x1b00 }, { 5836, 0x3b0d }, { 5844, 0x1138 }, { 5849, 0x03b0 },\n  { 5854, 0x0113 }, { 5858, 0x1133 }, { 5864, 0x0001 }, { 5865, 0x1300 },\n  { 5868, 0x2b05 }, { 5874, 0x111c }, { 5879, 0x0100 }, { 5880, 0x0000 },\n  { 5880, 0x1000 }, { 5881, 0xb011 }, { 5886, 0x1300 }, { 5889, 0x2a01 },\n  /* 0xb200 */\n  { 5893, 0x1930 }, { 5898, 0x02b0 }, { 5902, 0x0001 }, { 5903, 0x1010 },\n  { 5905, 0x0000 }, { 5905, 0x1100 }, { 5907, 0x0301 }, { 5910, 0x1030 },\n  { 5913, 0x0230 }, { 5916, 0x0713 }, { 5922, 0x146b }, { 5929, 0x0011 },\n  { 5931, 0x1300 }, { 5934, 0x2b05 }, { 5940, 0xf974 }, { 5950, 0x8fb8 },\n  /* 0xb300 */\n  { 5959, 0x0113 }, { 5963, 0x103b }, { 5969, 0x0000 }, { 5969, 0x0000 },\n  { 5969, 0x0000 }, { 5969, 0xd970 }, { 5977, 0x4ab0 }, { 5983, 0x0113 },\n  { 5987, 0x103b }, { 5993, 0x0011 }, { 5995, 0x1103 }, { 5999, 0x0000 },\n  { 5999, 0x5930 }, { 6005, 0x2ab1 }, { 6012, 0x0111 }, { 6015, 0x1000 },\n  /* 0xb400 */\n  { 6016, 0x0000 }, { 6016, 0x1101 }, { 6019, 0x0b01 }, { 6023, 0x0010 },\n  { 6024, 0x0000 }, { 6024, 0x0113 }, { 6028, 0x102b }, { 6033, 0x0000 },\n  { 6033, 0x0101 }, { 6035, 0x2000 }, { 6036, 0x1110 }, { 6039, 0x02a0 },\n  { 6042, 0x0111 }, { 6045, 0x3021 }, { 6049, 0xb059 }, { 6056, 0x0102 },\n  /* 0xb500 */\n  { 6058, 0x0000 }, { 6058, 0x1930 }, { 6063, 0x07b0 }, { 6069, 0x0113 },\n  { 6073, 0x383b }, { 6081, 0xb011 }, { 6086, 0x0003 }, { 6088, 0x0000 },\n  { 6088, 0x0000 }, { 6088, 0x0000 }, { 6088, 0x0d13 }, { 6094, 0x383b },\n  { 6102, 0xb011 }, { 6107, 0x0103 }, { 6110, 0x1000 }, { 6111, 0x0000 },\n  /* 0xb600 */\n  { 6111, 0x0000 }, { 6111, 0x0113 }, { 6115, 0x1020 }, { 6117, 0x0010 },\n  { 6118, 0x0100 }, { 6119, 0x0000 }, { 6119, 0x0110 }, { 6121, 0x0000 },\n  { 6121, 0x0000 }, { 6121, 0x3000 }, { 6123, 0x1811 }, { 6127, 0x0002 },\n  { 6128, 0x0000 }, { 6128, 0x0010 }, { 6129, 0x0000 }, { 6129, 0x0111 },\n  /* 0xb700 */\n  { 6132, 0x0023 }, { 6135, 0x0000 }, { 6135, 0x9300 }, { 6139, 0x0b01 },\n  { 6143, 0x1110 }, { 6146, 0x0030 }, { 6148, 0x0111 }, { 6151, 0x302b },\n  { 6157, 0xb011 }, { 6162, 0x13c7 }, { 6170, 0x3b01 }, { 6176, 0x0130 },\n  { 6179, 0x0280 }, { 6181, 0x0000 }, { 6181, 0x3000 }, { 6183, 0xb011 },\n  /* 0xb800 */\n  { 6188, 0x1383 }, { 6194, 0x2b01 }, { 6199, 0x1130 }, { 6203, 0x03b0 },\n  { 6208, 0x0011 }, { 6210, 0x300a }, { 6214, 0xb011 }, { 6219, 0x1102 },\n  { 6222, 0x2000 }, { 6223, 0x0000 }, { 6223, 0x0100 }, { 6224, 0x0111 },\n  { 6227, 0x102b }, { 6232, 0xa011 }, { 6236, 0x1302 }, { 6240, 0x2b01 },\n  /* 0xb900 */\n  { 6245, 0x0010 }, { 6246, 0x0100 }, { 6247, 0x0001 }, { 6248, 0x3000 },\n  { 6250, 0x9011 }, { 6254, 0x1302 }, { 6258, 0x2b01 }, { 6263, 0x1130 },\n  { 6267, 0x66b0 }, { 6274, 0x0000 }, { 6274, 0x3000 }, { 6276, 0xb011 },\n  { 6281, 0xd302 }, { 6287, 0x6b07 }, { 6295, 0x113a }, { 6301, 0x07b0 },\n  /* 0xba00 */\n  { 6307, 0x0103 }, { 6310, 0x0020 }, { 6311, 0x0000 }, { 6311, 0x1300 },\n  { 6314, 0x6b05 }, { 6321, 0x1138 }, { 6326, 0x03b0 }, { 6331, 0x0113 },\n  { 6335, 0x10b8 }, { 6340, 0x0000 }, { 6340, 0x1b00 }, { 6344, 0x2b05 },\n  { 6350, 0x0110 }, { 6352, 0x0300 }, { 6354, 0x0000 }, { 6354, 0x1000 },\n  /* 0xbb00 */\n  { 6355, 0xa011 }, { 6359, 0x1102 }, { 6362, 0x0a01 }, { 6365, 0x7970 },\n  { 6373, 0xa2b0 }, { 6379, 0x0111 }, { 6382, 0x100a }, { 6385, 0x0000 },\n  { 6385, 0x1100 }, { 6387, 0x0001 }, { 6388, 0x1110 }, { 6391, 0x0090 },\n  { 6393, 0x0111 }, { 6396, 0x0009 }, { 6398, 0x0000 }, { 6398, 0x9300 },\n  /* 0xbc00 */\n  { 6402, 0xbb05 }, { 6410, 0xf9f2 }, { 6421, 0x22b0 }, { 6426, 0x0113 },\n  { 6430, 0x323b }, { 6438, 0x2001 }, { 6440, 0x0000 }, { 6440, 0x0000 },\n  { 6440, 0x5930 }, { 6446, 0x06b0 }, { 6451, 0x0193 }, { 6456, 0x303b },\n  { 6463, 0xa011 }, { 6467, 0x1123 }, { 6472, 0x0000 }, { 6472, 0x1170 },\n  /* 0xbd00 */\n  { 6477, 0x02b0 }, { 6481, 0x0011 }, { 6483, 0x1010 }, { 6485, 0x0000 },\n  { 6485, 0x1301 }, { 6489, 0x0301 }, { 6492, 0x0110 }, { 6494, 0x0000 },\n  { 6494, 0x0793 }, { 6501, 0x162b }, { 6508, 0x0010 }, { 6509, 0x0101 },\n  { 6511, 0x0000 }, { 6511, 0x1130 }, { 6515, 0x0200 }, { 6516, 0x0111 },\n  /* 0xbe00 */\n  { 6519, 0x3029 }, { 6524, 0xb011 }, { 6529, 0x0000 }, { 6529, 0x0000 },\n  { 6529, 0x5130 }, { 6534, 0x0eb0 }, { 6540, 0x0513 }, { 6545, 0x383b },\n  { 6553, 0xb011 }, { 6558, 0x0303 }, { 6562, 0x0100 }, { 6563, 0x0000 },\n  { 6563, 0x0000 }, { 6563, 0x0193 }, { 6568, 0x1039 }, { 6573, 0x0000 },\n  /* 0xbf00 */\n  { 6573, 0x0302 }, { 6576, 0x3b00 }, { 6581, 0x0000 }, { 6581, 0x0000 },\n  { 6581, 0x0113 }, { 6585, 0x0023 }, { 6588, 0x0000 }, { 6588, 0x0000 },\n  { 6588, 0x0000 }, { 6588, 0x0010 }, { 6589, 0x0000 }, { 6589, 0x0001 },\n  { 6590, 0x3020 }, { 6593, 0x9011 }, { 6597, 0x0002 }, { 6598, 0x0000 },\n  /* 0xc000 */\n  { 6598, 0x0000 }, { 6598, 0x0000 }, { 6598, 0x0000 }, { 6598, 0x1000 },\n  { 6599, 0x0000 }, { 6599, 0x1102 }, { 6602, 0x0301 }, { 6605, 0x0000 },\n  { 6605, 0x0000 }, { 6605, 0x0113 }, { 6609, 0xb02b }, { 6616, 0xb079 },\n  { 6624, 0x1323 }, { 6630, 0x3b01 }, { 6636, 0x1130 }, { 6640, 0x02b0 },\n  /* 0xc100 */\n  { 6644, 0x0111 }, { 6647, 0xf021 }, { 6653, 0xb0d9 }, { 6661, 0x1343 },\n  { 6667, 0x3b01 }, { 6673, 0x1130 }, { 6677, 0x03b0 }, { 6682, 0x0111 },\n  { 6685, 0x7020 }, { 6689, 0xb051 }, { 6695, 0x1322 }, { 6700, 0x2001 },\n  { 6702, 0x1110 }, { 6705, 0x0190 }, { 6708, 0x0111 }, { 6711, 0x300b },\n  /* 0xc200 */\n  { 6716, 0xb011 }, { 6721, 0x9302 }, { 6726, 0xab01 }, { 6732, 0x0016 },\n  { 6735, 0x0100 }, { 6736, 0x0113 }, { 6740, 0x3021 }, { 6744, 0xb011 },\n  { 6749, 0x0302 }, { 6752, 0x2901 }, { 6756, 0x3130 }, { 6761, 0x02b0 },\n  { 6765, 0x0000 }, { 6765, 0x3000 }, { 6767, 0xb819 }, { 6774, 0x1b42 },\n  /* 0xc300 */\n  { 6780, 0x3301 }, { 6785, 0x1138 }, { 6790, 0x0330 }, { 6794, 0x0000 },\n  { 6794, 0x0020 }, { 6795, 0x0000 }, { 6795, 0x1300 }, { 6798, 0x3305 },\n  { 6804, 0x1110 }, { 6807, 0x0000 }, { 6807, 0x0000 }, { 6807, 0x0000 },\n  { 6807, 0x0001 }, { 6808, 0x9300 }, { 6812, 0x2305 }, { 6817, 0x0130 },\n  /* 0xc400 */\n  { 6820, 0x0100 }, { 6821, 0x0001 }, { 6822, 0x1010 }, { 6824, 0x3011 },\n  { 6828, 0x0100 }, { 6829, 0x0000 }, { 6829, 0x1130 }, { 6833, 0x0230 },\n  { 6836, 0x0001 }, { 6837, 0x1010 }, { 6839, 0x0000 }, { 6839, 0x1100 },\n  { 6841, 0x0000 }, { 6841, 0x0000 }, { 6841, 0x0200 }, { 6842, 0x8513 },\n  /* 0xc500 */\n  { 6848, 0x1003 }, { 6851, 0x1011 }, { 6854, 0x1300 }, { 6857, 0x2b01 },\n  { 6862, 0x7730 }, { 6870, 0x63b8 }, { 6878, 0x0113 }, { 6882, 0x303b },\n  { 6889, 0xb091 }, { 6895, 0x11a2 }, { 6900, 0x0201 }, { 6902, 0x7b30 },\n  { 6910, 0x57f0 }, { 6919, 0x0113 }, { 6923, 0x702b }, { 6930, 0xf0d1 },\n  /* 0xc600 */\n  { 6938, 0x11e3 }, { 6945, 0x1b01 }, { 6950, 0x7130 }, { 6956, 0x0ab9 },\n  { 6963, 0x0113 }, { 6967, 0x303b }, { 6974, 0x9001 }, { 6977, 0x1302 },\n  { 6981, 0x2b01 }, { 6986, 0x1130 }, { 6990, 0x02b0 }, { 6994, 0x0713 },\n  { 7000, 0x302b }, { 7006, 0x3011 }, { 7010, 0x1303 }, { 7015, 0x2301 },\n  /* 0xc700 */\n  { 7019, 0x1130 }, { 7023, 0x02b0 }, { 7027, 0x0113 }, { 7031, 0x30ab },\n  { 7038, 0xb411 }, { 7044, 0x11fe }, { 7053, 0x0901 }, { 7056, 0x7130 },\n  { 7062, 0x47b8 }, { 7070, 0x05d3 }, { 7077, 0x307b }, { 7085, 0xb011 },\n  { 7090, 0x5303 }, { 7096, 0x2101 }, { 7099, 0x1110 }, { 7102, 0x0000 },\n  /* 0xc800 */\n  { 7102, 0x0513 }, { 7107, 0x306b }, { 7114, 0xb011 }, { 7119, 0x1102 },\n  { 7122, 0x3301 }, { 7127, 0x0010 }, { 7128, 0x0000 }, { 7128, 0x0513 },\n  { 7133, 0x38eb }, { 7142, 0xa010 }, { 7145, 0x0102 }, { 7147, 0x3000 },\n  { 7149, 0x1110 }, { 7152, 0x02b0 }, { 7156, 0x0013 }, { 7159, 0x3020 },\n  /* 0xc900 */\n  { 7162, 0xb071 }, { 7169, 0x0102 }, { 7171, 0x1000 }, { 7172, 0x0010 },\n  { 7173, 0x0000 }, { 7173, 0x0113 }, { 7177, 0x100b }, { 7181, 0x1011 },\n  { 7184, 0x1300 }, { 7187, 0x2b01 }, { 7192, 0x0000 }, { 7192, 0x0000 },\n  { 7192, 0x0593 }, { 7198, 0x366b }, { 7207, 0xb095 }, { 7214, 0x1303 },\n  /* 0xca00 */\n  { 7219, 0x3b01 }, { 7225, 0x0110 }, { 7227, 0x0200 }, { 7228, 0x0000 },\n  { 7228, 0x3000 }, { 7230, 0xb011 }, { 7235, 0x0103 }, { 7238, 0x2000 },\n  { 7239, 0x0010 }, { 7240, 0x0100 }, { 7241, 0x0000 }, { 7241, 0x3000 },\n  { 7243, 0xb011 }, { 7248, 0x030a }, { 7252, 0x1001 }, { 7254, 0x0010 },\n  /* 0xcb00 */\n  { 7255, 0x0100 }, { 7256, 0x0111 }, { 7259, 0x0003 }, { 7261, 0x0000 },\n  { 7261, 0x1302 }, { 7265, 0x2301 }, { 7269, 0x0010 }, { 7270, 0x0300 },\n  { 7272, 0x0000 }, { 7272, 0x1000 }, { 7273, 0x0000 }, { 7273, 0x0100 },\n  { 7274, 0x0000 }, { 7274, 0x0010 }, { 7275, 0x0290 }, { 7278, 0x0000 },\n  /* 0xcc00 */\n  { 7278, 0x3000 }, { 7280, 0x3011 }, { 7284, 0x5386 }, { 7291, 0x7b01 },\n  { 7298, 0x1130 }, { 7302, 0x03b0 }, { 7307, 0x0151 }, { 7311, 0x0021 },\n  { 7313, 0x0000 }, { 7313, 0x1300 }, { 7316, 0x3b01 }, { 7322, 0x1130 },\n  { 7326, 0x02b0 }, { 7330, 0x0011 }, { 7332, 0x1010 }, { 7334, 0x0001 },\n  /* 0xcd00 */\n  { 7335, 0x1302 }, { 7339, 0x2b01 }, { 7344, 0x1110 }, { 7347, 0x0200 },\n  { 7348, 0x0000 }, { 7348, 0x1000 }, { 7349, 0xb011 }, { 7354, 0x0102 },\n  { 7356, 0x0100 }, { 7357, 0x1130 }, { 7361, 0x02b0 }, { 7365, 0x0001 },\n  { 7366, 0x1010 }, { 7368, 0x0001 }, { 7369, 0x1100 }, { 7371, 0x2b01 },\n  /* 0xce00 */\n  { 7376, 0x1110 }, { 7379, 0x0210 }, { 7381, 0x0113 }, { 7385, 0x002b },\n  { 7389, 0x0000 }, { 7389, 0x9300 }, { 7393, 0x2b03 }, { 7399, 0x1130 },\n  { 7403, 0x02b0 }, { 7407, 0x0113 }, { 7411, 0x303b }, { 7418, 0x0000 },\n  { 7418, 0x0002 }, { 7419, 0x0000 }, { 7419, 0x1930 }, { 7424, 0x03b0 },\n  /* 0xcf00 */\n  { 7429, 0x0113 }, { 7433, 0x102b }, { 7438, 0xb011 }, { 7443, 0x0103 },\n  { 7446, 0x0000 }, { 7446, 0x1130 }, { 7450, 0x02b0 }, { 7454, 0x0113 },\n  { 7458, 0x1021 }, { 7461, 0x0000 }, { 7461, 0x0102 }, { 7463, 0x0001 },\n  { 7464, 0x0010 }, { 7465, 0x0000 }, { 7465, 0x0113 }, { 7469, 0x102b },\n  /* 0xd000 */\n  { 7474, 0x0011 }, { 7476, 0x0102 }, { 7478, 0x2000 }, { 7479, 0x1130 },\n  { 7483, 0x02b0 }, { 7487, 0x0111 }, { 7490, 0x3001 }, { 7493, 0x3011 },\n  { 7497, 0x0002 }, { 7498, 0x0000 }, { 7498, 0x1130 }, { 7502, 0x02b0 },\n  { 7506, 0x0313 }, { 7511, 0x303b }, { 7518, 0xb011 }, { 7523, 0x0103 },\n  /* 0xd100 */\n  { 7526, 0x2000 }, { 7527, 0x0000 }, { 7527, 0x0000 }, { 7527, 0x0513 },\n  { 7532, 0x303b }, { 7539, 0xb011 }, { 7544, 0x1102 }, { 7547, 0x1000 },\n  { 7548, 0x0110 }, { 7550, 0x0000 }, { 7550, 0x0113 }, { 7554, 0x142b },\n  { 7560, 0x0001 }, { 7561, 0x0100 }, { 7562, 0x0000 }, { 7562, 0x0110 },\n  /* 0xd200 */\n  { 7564, 0x0280 }, { 7566, 0x0001 }, { 7567, 0x3000 }, { 7569, 0xb011 },\n  { 7574, 0x0102 }, { 7576, 0x1000 }, { 7577, 0x0010 }, { 7578, 0x0000 },\n  { 7578, 0x0113 }, { 7582, 0x1023 }, { 7586, 0x1011 }, { 7589, 0x9302 },\n  { 7594, 0x0b05 }, { 7599, 0x1110 }, { 7602, 0x0030 }, { 7604, 0x0113 },\n  /* 0xd300 */\n  { 7608, 0x702b }, { 7615, 0xb051 }, { 7621, 0x1323 }, { 7627, 0x3b01 },\n  { 7633, 0x0030 }, { 7635, 0x0000 }, { 7635, 0x0000 }, { 7635, 0x3000 },\n  { 7637, 0xb011 }, { 7642, 0x1303 }, { 7647, 0x2b01 }, { 7652, 0x1110 },\n  { 7655, 0x0330 }, { 7659, 0x0101 }, { 7661, 0x300a }, { 7665, 0xb011 },\n  /* 0xd400 */\n  { 7670, 0x0102 }, { 7672, 0x2000 }, { 7673, 0x0000 }, { 7673, 0x0000 },\n  { 7673, 0x0011 }, { 7675, 0x1000 }, { 7676, 0xa011 }, { 7680, 0x9300 },\n  { 7684, 0x2b05 }, { 7690, 0x0010 }, { 7691, 0x0200 }, { 7692, 0x0000 },\n  { 7692, 0x1000 }, { 7693, 0x9011 }, { 7697, 0x1100 }, { 7699, 0x2901 },\n  /* 0xd500 */\n  { 7703, 0x1110 }, { 7706, 0x00b0 }, { 7709, 0x0000 }, { 7709, 0x3000 },\n  { 7711, 0xb011 }, { 7716, 0x1302 }, { 7720, 0x2b21 }, { 7726, 0x1130 },\n  { 7730, 0x03b0 }, { 7735, 0x0001 }, { 7736, 0x0020 }, { 7737, 0x0000 },\n  { 7737, 0x1300 }, { 7740, 0x2b05 }, { 7746, 0x1130 }, { 7750, 0x02b0 },\n  /* 0xd600 */\n  { 7754, 0x0113 }, { 7758, 0x103b }, { 7764, 0x2011 }, { 7767, 0x1300 },\n  { 7770, 0x2b21 }, { 7776, 0x1132 }, { 7781, 0x0280 }, { 7783, 0x0013 },\n  { 7786, 0x3028 }, { 7790, 0xa011 }, { 7794, 0x1102 }, { 7797, 0x0a01 },\n  { 7800, 0x1130 }, { 7804, 0x0292 }, { 7808, 0x0111 }, { 7811, 0x3021 },\n  /* 0xd700 */\n  { 7815, 0x0011 }, { 7817, 0x1302 }, { 7821, 0x2b01 }, { 7826, 0x1130 },\n  { 7830, 0x0290 }, { 7833, 0x03d3 }, { 7840, 0x122b }, { 7846, 0x3011 },\n  { 7850, 0x1302 }, { 7854, 0x2b01 },\n};\nstatic const Summary16 ksc5601_uni2indx_pagef9[17] = {\n  /* 0xf900 */\n  { 7859, 0xffff }, { 7875, 0xffff }, { 7891, 0xffff }, { 7907, 0xffff },\n  { 7923, 0xffff }, { 7939, 0xffff }, { 7955, 0xffff }, { 7971, 0xffff },\n  { 7987, 0xffff }, { 8003, 0xffff }, { 8019, 0xffff }, { 8035, 0xffff },\n  { 8051, 0xffff }, { 8067, 0xffff }, { 8083, 0xffff }, { 8099, 0xffff },\n  /* 0xfa00 */\n  { 8115, 0x0fff },\n};\nstatic const Summary16 ksc5601_uni2indx_pageff[15] = {\n  /* 0xff00 */\n  { 8127, 0xfffe }, { 8142, 0xffff }, { 8158, 0xffff }, { 8174, 0xffff },\n  { 8190, 0xffff }, { 8206, 0x7fff }, { 8221, 0x0000 }, { 8221, 0x0000 },\n  { 8221, 0x0000 }, { 8221, 0x0000 }, { 8221, 0x0000 }, { 8221, 0x0000 },\n  { 8221, 0x0000 }, { 8221, 0x0000 }, { 8221, 0x006f },\n};\n\nstatic int\nksc5601_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    const Summary16 *summary = NULL;\n    if (wc >= 0x0000 && wc < 0x0460)\n      summary = &ksc5601_uni2indx_page00[(wc>>4)];\n    else if (wc >= 0x2000 && wc < 0x2670)\n      summary = &ksc5601_uni2indx_page20[(wc>>4)-0x200];\n    else if (wc >= 0x3000 && wc < 0x33e0)\n      summary = &ksc5601_uni2indx_page30[(wc>>4)-0x300];\n    else if (wc >= 0x4e00 && wc < 0x9fa0)\n      summary = &ksc5601_uni2indx_page4e[(wc>>4)-0x4e0];\n    else if (wc >= 0xac00 && wc < 0xd7a0)\n      summary = &ksc5601_uni2indx_pageac[(wc>>4)-0xac0];\n    else if (wc >= 0xf900 && wc < 0xfa10)\n      summary = &ksc5601_uni2indx_pagef9[(wc>>4)-0xf90];\n    else if (wc >= 0xff00 && wc < 0xfff0)\n      summary = &ksc5601_uni2indx_pageff[(wc>>4)-0xff0];\n    if (summary) {\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        c = ksc5601_2charset[summary->indx + used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/libcharset.h",
    "content": "/* Copyright (C) 2003 Free Software Foundation, Inc.\n   This file is part of the GNU CHARSET Library.\n\n   The GNU CHARSET Library is free software; you can redistribute it and/or\n   modify it under the terms of the GNU Library General Public License as\n   published by the Free Software Foundation; either version 2 of the\n   License, or (at your option) any later version.\n\n   The GNU CHARSET Library is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with the GNU CHARSET Library; see the file COPYING.LIB.  If not,\n   see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _LIBCHARSET_H\n#define _LIBCHARSET_H\n\n#include <localcharset.h>\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Support for relocatable packages.  */\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nextern void libcharset_set_relocation_prefix (const char *orig_prefix,\n                                              const char *curr_prefix);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _LIBCHARSET_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/libcharset.la",
    "content": "# libcharset.la - a libtool library file\n# Generated by libtool (GNU libtool) 2.4.6\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# The name that we can dlopen(3).\ndlname='libcharset.1.dylib'\n\n# Names of this library.\nlibrary_names='libcharset.1.dylib libcharset.dylib'\n\n# The name of the static archive.\nold_library='libcharset.a'\n\n# Linker flags that cannot go in dependency_libs.\ninherited_linker_flags=' '\n\n# Libraries that this one depends upon.\ndependency_libs=''\n\n# Names of additional weak libraries provided by this library\nweak_library_names=''\n\n# Version information for libcharset.\ncurrent=1\nage=0\nrevision=0\n\n# Is this an already installed library?\ninstalled=yes\n\n# Should we warn about portability when linking against -modules?\nshouldnotlink=no\n\n# Files to dlopen/dlpreopen\ndlopen=''\ndlpreopen=''\n\n# Directory that this library needs to be installed in:\nlibdir='/usr/local/lib'\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/libiconv.la",
    "content": "# libiconv.la - a libtool library file\n# Generated by libtool (GNU libtool) 2.4.6\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# The name that we can dlopen(3).\ndlname='libiconv.2.dylib'\n\n# Names of this library.\nlibrary_names='libiconv.2.dylib libiconv.dylib'\n\n# The name of the static archive.\nold_library=''\n\n# Linker flags that cannot go in dependency_libs.\ninherited_linker_flags=' '\n\n# Libraries that this one depends upon.\ndependency_libs=''\n\n# Names of additional weak libraries provided by this library\nweak_library_names=''\n\n# Version information for libiconv.\ncurrent=8\nage=6\nrevision=0\n\n# Is this an already installed library?\ninstalled=no\n\n# Should we warn about portability when linking against -modules?\nshouldnotlink=no\n\n# Files to dlopen/dlpreopen\ndlopen=''\ndlpreopen=''\n\n# Directory that this library needs to be installed in:\nlibdir='/usr/local/lib'\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/localcharset.h",
    "content": "/* Determine a canonical name for the current locale's character encoding.\n   Copyright (C) 2000-2003 Free Software Foundation, Inc.\n   This file is part of the GNU CHARSET Library.\n\n   This program is free software; you can redistribute it and/or modify it\n   under the terms of the GNU Library General Public License as published\n   by the Free Software Foundation; either version 2, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _LOCALCHARSET_H\n#define _LOCALCHARSET_H\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Determine the current locale's character encoding, and canonicalize it\n   into one of the canonical names listed in config.charset.\n   The result must not be freed; it is statically allocated.\n   If the canonical name cannot be determined, the result is a non-canonical\n   name.  */\nextern const char * locale_charset (void);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _LOCALCHARSET_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/localcharset.lo",
    "content": "# localcharset.lo - a libtool object file\n# Generated by libtool (GNU libtool) 2.4.6\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# Name of the PIC object.\npic_object='.libs/localcharset.o'\n\n# Name of the non-PIC object\nnon_pic_object=none\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/loop_unicode.h",
    "content": "/*\n * Copyright (C) 1999-2003, 2005-2006, 2008 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/* This file defines the conversion loop via Unicode as a pivot encoding. */\n\n/* Attempt to transliterate wc. Return code as in xxx_wctomb. */\nstatic int unicode_transliterate (conv_t cd, ucs4_t wc,\n                                  unsigned char* outptr, size_t outleft)\n{\n  if (cd->oflags & HAVE_HANGUL_JAMO) {\n    /* Decompose Hangul into Jamo. Use double-width Jamo (contained\n       in all Korean encodings and ISO-2022-JP-2), not half-width Jamo\n       (contained in Unicode only). */\n    ucs4_t buf[3];\n    int ret = johab_hangul_decompose(cd,buf,wc);\n    if (ret != RET_ILUNI) {\n      /* we know 1 <= ret <= 3 */\n      state_t backup_state = cd->ostate;\n      unsigned char* backup_outptr = outptr;\n      size_t backup_outleft = outleft;\n      int i, sub_outcount;\n      for (i = 0; i < ret; i++) {\n        if (outleft == 0) {\n          sub_outcount = RET_TOOSMALL;\n          goto johab_hangul_failed;\n        }\n        sub_outcount = cd->ofuncs.xxx_wctomb(cd,outptr,buf[i],outleft);\n        if (sub_outcount <= RET_ILUNI)\n          goto johab_hangul_failed;\n        if (!(sub_outcount <= outleft)) abort();\n        outptr += sub_outcount; outleft -= sub_outcount;\n      }\n      return outptr-backup_outptr;\n    johab_hangul_failed:\n      cd->ostate = backup_state;\n      outptr = backup_outptr;\n      outleft = backup_outleft;\n      if (sub_outcount != RET_ILUNI)\n        return RET_TOOSMALL;\n    }\n  }\n  {\n    /* Try to use a variant, but postfix it with\n       U+303E IDEOGRAPHIC VARIATION INDICATOR\n       (cf. Ken Lunde's \"CJKV information processing\", p. 188). */\n    int indx = -1;\n    if (wc == 0x3006)\n      indx = 0;\n    else if (wc == 0x30f6)\n      indx = 1;\n    else if (wc >= 0x4e00 && wc < 0xa000)\n      indx = cjk_variants_indx[wc-0x4e00];\n    if (indx >= 0) {\n      for (;; indx++) {\n        ucs4_t buf[2];\n        unsigned short variant = cjk_variants[indx];\n        unsigned short last = variant & 0x8000;\n        variant &= 0x7fff;\n        variant += 0x3000;\n        buf[0] = variant; buf[1] = 0x303e;\n        {\n          state_t backup_state = cd->ostate;\n          unsigned char* backup_outptr = outptr;\n          size_t backup_outleft = outleft;\n          int i, sub_outcount;\n          for (i = 0; i < 2; i++) {\n            if (outleft == 0) {\n              sub_outcount = RET_TOOSMALL;\n              goto variant_failed;\n            }\n            sub_outcount = cd->ofuncs.xxx_wctomb(cd,outptr,buf[i],outleft);\n            if (sub_outcount <= RET_ILUNI)\n              goto variant_failed;\n            if (!(sub_outcount <= outleft)) abort();\n            outptr += sub_outcount; outleft -= sub_outcount;\n          }\n          return outptr-backup_outptr;\n        variant_failed:\n          cd->ostate = backup_state;\n          outptr = backup_outptr;\n          outleft = backup_outleft;\n          if (sub_outcount != RET_ILUNI)\n            return RET_TOOSMALL;\n        }\n        if (last)\n          break;\n      }\n    }\n  }\n  if (wc >= 0x2018 && wc <= 0x201a) {\n    /* Special case for quotation marks 0x2018, 0x2019, 0x201a */\n    ucs4_t substitute =\n      (cd->oflags & HAVE_QUOTATION_MARKS\n       ? (wc == 0x201a ? 0x2018 : wc)\n       : (cd->oflags & HAVE_ACCENTS\n          ? (wc==0x2019 ? 0x00b4 : 0x0060) /* use accents */\n          : 0x0027 /* use apostrophe */\n      )  );\n    int outcount = cd->ofuncs.xxx_wctomb(cd,outptr,substitute,outleft);\n    if (outcount != RET_ILUNI)\n      return outcount;\n  }\n  {\n    /* Use the transliteration table. */\n    int indx = translit_index(wc);\n    if (indx >= 0) {\n      const unsigned int * cp = &translit_data[indx];\n      unsigned int num = *cp++;\n      state_t backup_state = cd->ostate;\n      unsigned char* backup_outptr = outptr;\n      size_t backup_outleft = outleft;\n      unsigned int i;\n      int sub_outcount;\n      for (i = 0; i < num; i++) {\n        if (outleft == 0) {\n          sub_outcount = RET_TOOSMALL;\n          goto translit_failed;\n        }\n        sub_outcount = cd->ofuncs.xxx_wctomb(cd,outptr,cp[i],outleft);\n        if (sub_outcount == RET_ILUNI)\n          /* Recursive transliteration. */\n          sub_outcount = unicode_transliterate(cd,cp[i],outptr,outleft);\n        if (sub_outcount <= RET_ILUNI)\n          goto translit_failed;\n        if (!(sub_outcount <= outleft)) abort();\n        outptr += sub_outcount; outleft -= sub_outcount;\n      }\n      return outptr-backup_outptr;\n    translit_failed:\n      cd->ostate = backup_state;\n      outptr = backup_outptr;\n      outleft = backup_outleft;\n      if (sub_outcount != RET_ILUNI)\n        return RET_TOOSMALL;\n    }\n  }\n  return RET_ILUNI;\n}\n\n#ifndef LIBICONV_PLUG\n\nstruct uc_to_mb_fallback_locals {\n  unsigned char* l_outbuf;\n  size_t l_outbytesleft;\n  int l_errno;\n};\n\nstatic void uc_to_mb_write_replacement (const char *buf, size_t buflen,\n                                        void* callback_arg)\n{\n  struct uc_to_mb_fallback_locals * plocals =\n    (struct uc_to_mb_fallback_locals *) callback_arg;\n  /* Do nothing if already encountered an error in a previous call. */\n  if (plocals->l_errno == 0) {\n    /* Attempt to copy the passed buffer to the output buffer. */\n    if (plocals->l_outbytesleft < buflen)\n      plocals->l_errno = E2BIG;\n    else {\n      memcpy(plocals->l_outbuf, buf, buflen);\n      plocals->l_outbuf += buflen;\n      plocals->l_outbytesleft -= buflen;\n    }\n  }\n}\n\nstruct mb_to_uc_fallback_locals {\n  conv_t l_cd;\n  unsigned char* l_outbuf;\n  size_t l_outbytesleft;\n  int l_errno;\n};\n\nstatic void mb_to_uc_write_replacement (const unsigned int *buf, size_t buflen,\n                                        void* callback_arg)\n{\n  struct mb_to_uc_fallback_locals * plocals =\n    (struct mb_to_uc_fallback_locals *) callback_arg;\n  /* Do nothing if already encountered an error in a previous call. */\n  if (plocals->l_errno == 0) {\n    /* Attempt to convert the passed buffer to the target encoding. */\n    conv_t cd = plocals->l_cd;\n    unsigned char* outptr = plocals->l_outbuf;\n    size_t outleft = plocals->l_outbytesleft;\n    for (; buflen > 0; buf++, buflen--) {\n      ucs4_t wc = *buf;\n      int outcount;\n      if (outleft == 0) {\n        plocals->l_errno = E2BIG;\n        break;\n      }\n      outcount = cd->ofuncs.xxx_wctomb(cd,outptr,wc,outleft);\n      if (outcount != RET_ILUNI)\n        goto outcount_ok;\n      /* Handle Unicode tag characters (range U+E0000..U+E007F). */\n      if ((wc >> 7) == (0xe0000 >> 7))\n        goto outcount_zero;\n      /* Try transliteration. */\n      if (cd->transliterate) {\n        outcount = unicode_transliterate(cd,wc,outptr,outleft);\n        if (outcount != RET_ILUNI)\n          goto outcount_ok;\n      }\n      if (cd->discard_ilseq) {\n        outcount = 0;\n        goto outcount_ok;\n      }\n      #ifndef LIBICONV_PLUG\n      else if (cd->fallbacks.uc_to_mb_fallback != NULL) {\n        struct uc_to_mb_fallback_locals locals;\n        locals.l_outbuf = outptr;\n        locals.l_outbytesleft = outleft;\n        locals.l_errno = 0;\n        cd->fallbacks.uc_to_mb_fallback(wc,\n                                        uc_to_mb_write_replacement,\n                                        &locals,\n                                        cd->fallbacks.data);\n        if (locals.l_errno != 0) {\n          plocals->l_errno = locals.l_errno;\n          break;\n        }\n        outptr = locals.l_outbuf;\n        outleft = locals.l_outbytesleft;\n        outcount = 0;\n        goto outcount_ok;\n      }\n      #endif\n      outcount = cd->ofuncs.xxx_wctomb(cd,outptr,0xFFFD,outleft);\n      if (outcount != RET_ILUNI)\n        goto outcount_ok;\n      plocals->l_errno = EILSEQ;\n      break;\n    outcount_ok:\n      if (outcount < 0) {\n        plocals->l_errno = E2BIG;\n        break;\n      }\n      #ifndef LIBICONV_PLUG\n      if (cd->hooks.uc_hook)\n        (*cd->hooks.uc_hook)(wc, cd->hooks.data);\n      #endif\n      if (!(outcount <= outleft)) abort();\n      outptr += outcount; outleft -= outcount;\n    outcount_zero: ;\n    }\n    plocals->l_outbuf = outptr;\n    plocals->l_outbytesleft = outleft;\n  }\n}\n\n#endif /* !LIBICONV_PLUG */\n\nstatic size_t unicode_loop_convert (iconv_t icd,\n                                    const char* * inbuf, size_t *inbytesleft,\n                                    char* * outbuf, size_t *outbytesleft)\n{\n  conv_t cd = (conv_t) icd;\n  size_t result = 0;\n  const unsigned char* inptr = (const unsigned char*) *inbuf;\n  size_t inleft = *inbytesleft;\n  unsigned char* outptr = (unsigned char*) *outbuf;\n  size_t outleft = *outbytesleft;\n  while (inleft > 0) {\n    state_t last_istate = cd->istate;\n    ucs4_t wc;\n    int incount;\n    int outcount;\n    incount = cd->ifuncs.xxx_mbtowc(cd,&wc,inptr,inleft);\n    if (incount < 0) {\n      if ((unsigned int)(-1-incount) % 2 == (unsigned int)(-1-RET_ILSEQ) % 2) {\n        /* Case 1: invalid input, possibly after a shift sequence */\n        incount = DECODE_SHIFT_ILSEQ(incount);\n        if (cd->discard_ilseq) {\n          switch (cd->iindex) {\n            case ei_ucs4: case ei_ucs4be: case ei_ucs4le:\n            case ei_utf32: case ei_utf32be: case ei_utf32le:\n            case ei_ucs4internal: case ei_ucs4swapped:\n              incount += 4; break;\n            case ei_ucs2: case ei_ucs2be: case ei_ucs2le:\n            case ei_utf16: case ei_utf16be: case ei_utf16le:\n            case ei_ucs2internal: case ei_ucs2swapped:\n              incount += 2; break;\n            default:\n              incount += 1; break;\n          }\n          goto outcount_zero;\n        }\n        #ifndef LIBICONV_PLUG\n        else if (cd->fallbacks.mb_to_uc_fallback != NULL) {\n          unsigned int incount2;\n          struct mb_to_uc_fallback_locals locals;\n          switch (cd->iindex) {\n            case ei_ucs4: case ei_ucs4be: case ei_ucs4le:\n            case ei_utf32: case ei_utf32be: case ei_utf32le:\n            case ei_ucs4internal: case ei_ucs4swapped:\n              incount2 = 4; break;\n            case ei_ucs2: case ei_ucs2be: case ei_ucs2le:\n            case ei_utf16: case ei_utf16be: case ei_utf16le:\n            case ei_ucs2internal: case ei_ucs2swapped:\n              incount2 = 2; break;\n            default:\n              incount2 = 1; break;\n          }\n          locals.l_cd = cd;\n          locals.l_outbuf = outptr;\n          locals.l_outbytesleft = outleft;\n          locals.l_errno = 0;\n          cd->fallbacks.mb_to_uc_fallback((const char*)inptr+incount, incount2,\n                                          mb_to_uc_write_replacement,\n                                          &locals,\n                                          cd->fallbacks.data);\n          if (locals.l_errno != 0) {\n            inptr += incount; inleft -= incount;\n            errno = locals.l_errno;\n            result = -1;\n            break;\n          }\n          incount += incount2;\n          outptr = locals.l_outbuf;\n          outleft = locals.l_outbytesleft;\n          result += 1;\n          goto outcount_zero;\n        }\n        #endif\n        inptr += incount; inleft -= incount;\n        errno = EILSEQ;\n        result = -1;\n        break;\n      }\n      if (incount == RET_TOOFEW(0)) {\n        /* Case 2: not enough bytes available to detect anything */\n        errno = EINVAL;\n        result = -1;\n        break;\n      }\n      /* Case 3: k bytes read, but only a shift sequence */\n      incount = DECODE_TOOFEW(incount);\n    } else {\n      /* Case 4: k bytes read, making up a wide character */\n      if (outleft == 0) {\n        cd->istate = last_istate;\n        errno = E2BIG;\n        result = -1;\n        break;\n      }\n      outcount = cd->ofuncs.xxx_wctomb(cd,outptr,wc,outleft);\n      if (outcount != RET_ILUNI)\n        goto outcount_ok;\n      /* Handle Unicode tag characters (range U+E0000..U+E007F). */\n      if ((wc >> 7) == (0xe0000 >> 7))\n        goto outcount_zero;\n      /* Try transliteration. */\n      result++;\n      if (cd->transliterate) {\n        outcount = unicode_transliterate(cd,wc,outptr,outleft);\n        if (outcount != RET_ILUNI)\n          goto outcount_ok;\n      }\n      if (cd->discard_ilseq) {\n        outcount = 0;\n        goto outcount_ok;\n      }\n      #ifndef LIBICONV_PLUG\n      else if (cd->fallbacks.uc_to_mb_fallback != NULL) {\n        struct uc_to_mb_fallback_locals locals;\n        locals.l_outbuf = outptr;\n        locals.l_outbytesleft = outleft;\n        locals.l_errno = 0;\n        cd->fallbacks.uc_to_mb_fallback(wc,\n                                        uc_to_mb_write_replacement,\n                                        &locals,\n                                        cd->fallbacks.data);\n        if (locals.l_errno != 0) {\n          cd->istate = last_istate;\n          errno = locals.l_errno;\n          return -1;\n        }\n        outptr = locals.l_outbuf;\n        outleft = locals.l_outbytesleft;\n        outcount = 0;\n        goto outcount_ok;\n      }\n      #endif\n      outcount = cd->ofuncs.xxx_wctomb(cd,outptr,0xFFFD,outleft);\n      if (outcount != RET_ILUNI)\n        goto outcount_ok;\n      cd->istate = last_istate;\n      errno = EILSEQ;\n      result = -1;\n      break;\n    outcount_ok:\n      if (outcount < 0) {\n        cd->istate = last_istate;\n        errno = E2BIG;\n        result = -1;\n        break;\n      }\n      #ifndef LIBICONV_PLUG\n      if (cd->hooks.uc_hook)\n        (*cd->hooks.uc_hook)(wc, cd->hooks.data);\n      #endif\n      if (!(outcount <= outleft)) abort();\n      outptr += outcount; outleft -= outcount;\n    }\n  outcount_zero:\n    if (!(incount <= inleft)) abort();\n    inptr += incount; inleft -= incount;\n  }\n  *inbuf = (const char*) inptr;\n  *inbytesleft = inleft;\n  *outbuf = (char*) outptr;\n  *outbytesleft = outleft;\n  return result;\n}\n\nstatic size_t unicode_loop_reset (iconv_t icd,\n                                  char* * outbuf, size_t *outbytesleft)\n{\n  conv_t cd = (conv_t) icd;\n  if (outbuf == NULL || *outbuf == NULL) {\n    /* Reset the states. */\n    memset(&cd->istate,'\\0',sizeof(state_t));\n    memset(&cd->ostate,'\\0',sizeof(state_t));\n    return 0;\n  } else {\n    size_t result = 0;\n    if (cd->ifuncs.xxx_flushwc) {\n      state_t last_istate = cd->istate;\n      ucs4_t wc;\n      if (cd->ifuncs.xxx_flushwc(cd, &wc)) {\n        unsigned char* outptr = (unsigned char*) *outbuf;\n        size_t outleft = *outbytesleft;\n        int outcount = cd->ofuncs.xxx_wctomb(cd,outptr,wc,outleft);\n        if (outcount != RET_ILUNI)\n          goto outcount_ok;\n        /* Handle Unicode tag characters (range U+E0000..U+E007F). */\n        if ((wc >> 7) == (0xe0000 >> 7))\n          goto outcount_zero;\n        /* Try transliteration. */\n        result++;\n        if (cd->transliterate) {\n          outcount = unicode_transliterate(cd,wc,outptr,outleft);\n          if (outcount != RET_ILUNI)\n            goto outcount_ok;\n        }\n        if (cd->discard_ilseq) {\n          outcount = 0;\n          goto outcount_ok;\n        }\n        #ifndef LIBICONV_PLUG\n        else if (cd->fallbacks.uc_to_mb_fallback != NULL) {\n          struct uc_to_mb_fallback_locals locals;\n          locals.l_outbuf = outptr;\n          locals.l_outbytesleft = outleft;\n          locals.l_errno = 0;\n          cd->fallbacks.uc_to_mb_fallback(wc,\n                                          uc_to_mb_write_replacement,\n                                          &locals,\n                                          cd->fallbacks.data);\n          if (locals.l_errno != 0) {\n            cd->istate = last_istate;\n            errno = locals.l_errno;\n            return -1;\n          }\n          outptr = locals.l_outbuf;\n          outleft = locals.l_outbytesleft;\n          outcount = 0;\n          goto outcount_ok;\n        }\n        #endif\n        outcount = cd->ofuncs.xxx_wctomb(cd,outptr,0xFFFD,outleft);\n        if (outcount != RET_ILUNI)\n          goto outcount_ok;\n        cd->istate = last_istate;\n        errno = EILSEQ;\n        return -1;\n      outcount_ok:\n        if (outcount < 0) {\n          cd->istate = last_istate;\n          errno = E2BIG;\n          return -1;\n        }\n        #ifndef LIBICONV_PLUG\n        if (cd->hooks.uc_hook)\n          (*cd->hooks.uc_hook)(wc, cd->hooks.data);\n        #endif\n        if (!(outcount <= outleft)) abort();\n        outptr += outcount;\n        outleft -= outcount;\n      outcount_zero:\n        *outbuf = (char*) outptr;\n        *outbytesleft = outleft;\n      }\n    }\n    if (cd->ofuncs.xxx_reset) {\n      unsigned char* outptr = (unsigned char*) *outbuf;\n      size_t outleft = *outbytesleft;\n      int outcount = cd->ofuncs.xxx_reset(cd,outptr,outleft);\n      if (outcount < 0) {\n        errno = E2BIG;\n        return -1;\n      }\n      if (!(outcount <= outleft)) abort();\n      *outbuf = (char*) (outptr + outcount);\n      *outbytesleft = outleft - outcount;\n    }\n    memset(&cd->istate,'\\0',sizeof(state_t));\n    memset(&cd->ostate,'\\0',sizeof(state_t));\n    return result;\n  }\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/loop_wchar.h",
    "content": "/*\n * Copyright (C) 2000-2002, 2005-2006, 2008-2009, 2011 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/* This file defines three conversion loops:\n     - from wchar_t to anything else,\n     - from anything else to wchar_t,\n     - from wchar_t to wchar_t.\n */\n\n#if HAVE_WCRTOMB || HAVE_MBRTOWC\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n   included before <wchar.h>.\n   In some builds of uClibc, <wchar.h> is nonexistent and wchar_t is defined\n   by <stddef.h>.  */\n# include <stddef.h>\n# include <stdio.h>\n# include <time.h>\n# include <wchar.h>\n# define BUF_SIZE 64  /* assume MB_LEN_MAX <= 64 */\n  /* Some systems, like BeOS, have multibyte encodings but lack mbstate_t.  */\n  extern size_t mbrtowc ();\n# ifdef mbstate_t\n#  define mbrtowc(pwc, s, n, ps) (mbrtowc)(pwc, s, n, 0)\n#  define mbsinit(ps) 1\n# endif\n# ifndef mbsinit\n#  if !HAVE_MBSINIT\n#   define mbsinit(ps) 1\n#  endif\n# endif\n#endif\n\n/*\n * The first two conversion loops have an extended conversion descriptor.\n */\nstruct wchar_conv_struct {\n  struct conv_struct parent;\n#if HAVE_WCRTOMB || HAVE_MBRTOWC\n  mbstate_t state;\n#endif\n};\n\n\n#if HAVE_WCRTOMB\n\n/* From wchar_t to anything else. */\n\n#ifndef LIBICONV_PLUG\n\n#if 0\n\nstruct wc_to_mb_fallback_locals {\n  struct wchar_conv_struct * l_wcd;\n  char* l_outbuf;\n  size_t l_outbytesleft;\n  int l_errno;\n};\n\n/* A callback that writes a string given in the locale encoding. */\nstatic void wc_to_mb_write_replacement (const char *buf, size_t buflen,\n                                        void* callback_arg)\n{\n  struct wc_to_mb_fallback_locals * plocals =\n    (struct wc_to_mb_fallback_locals *) callback_arg;\n  /* Do nothing if already encountered an error in a previous call. */\n  if (plocals->l_errno == 0) {\n    /* Attempt to convert the passed buffer to the target encoding.\n       Here we don't support characters split across multiple calls. */\n    const char* bufptr = buf;\n    size_t bufleft = buflen;\n    size_t res = unicode_loop_convert(&plocals->l_wcd->parent,\n                                      &bufptr,&bufleft,\n                                      &plocals->l_outbuf,&plocals->l_outbytesleft);\n    if (res == (size_t)(-1)) {\n      if (errno == EILSEQ || errno == EINVAL)\n        /* Invalid buf contents. */\n        plocals->l_errno = EILSEQ;\n      else if (errno == E2BIG)\n        /* Output buffer too small. */\n        plocals->l_errno = E2BIG;\n      else \n        abort();\n    } else {\n      /* Successful conversion. */\n      if (bufleft > 0)\n        abort();\n    }\n  }\n}\n\n#else\n\nstruct wc_to_mb_fallback_locals {\n  char* l_outbuf;\n  size_t l_outbytesleft;\n  int l_errno;\n};\n\n/* A callback that writes a string given in the target encoding. */\nstatic void wc_to_mb_write_replacement (const char *buf, size_t buflen,\n                                        void* callback_arg)\n{\n  struct wc_to_mb_fallback_locals * plocals =\n    (struct wc_to_mb_fallback_locals *) callback_arg;\n  /* Do nothing if already encountered an error in a previous call. */\n  if (plocals->l_errno == 0) {\n    /* Attempt to copy the passed buffer to the output buffer. */\n    if (plocals->l_outbytesleft < buflen)\n      plocals->l_errno = E2BIG;\n    else {\n      memcpy(plocals->l_outbuf, buf, buflen);\n      plocals->l_outbuf += buflen;\n      plocals->l_outbytesleft -= buflen;\n    }\n  }\n}\n\n#endif\n\n#endif /* !LIBICONV_PLUG */\n\nstatic size_t wchar_from_loop_convert (iconv_t icd,\n                                       const char* * inbuf, size_t *inbytesleft,\n                                       char* * outbuf, size_t *outbytesleft)\n{\n  struct wchar_conv_struct * wcd = (struct wchar_conv_struct *) icd;\n  size_t result = 0;\n  while (*inbytesleft >= sizeof(wchar_t)) {\n    const wchar_t * inptr = (const wchar_t *) *inbuf;\n    size_t inleft = *inbytesleft;\n    char buf[BUF_SIZE];\n    mbstate_t state = wcd->state;\n    size_t bufcount = 0;\n    while (inleft >= sizeof(wchar_t)) {\n      /* Convert one wchar_t to multibyte representation. */\n      size_t count = wcrtomb(buf+bufcount,*inptr,&state);\n      if (count == (size_t)(-1)) {\n        /* Invalid input. */\n        if (wcd->parent.discard_ilseq) {\n          count = 0;\n        }\n        #ifndef LIBICONV_PLUG\n        else if (wcd->parent.fallbacks.wc_to_mb_fallback != NULL) {\n          /* Drop the contents of buf[] accumulated so far, and instead\n             pass all queued wide characters to the fallback handler. */\n          struct wc_to_mb_fallback_locals locals;\n          const wchar_t * fallback_inptr;\n          #if 0\n          locals.l_wcd = wcd;\n          #endif\n          locals.l_outbuf = *outbuf;\n          locals.l_outbytesleft = *outbytesleft;\n          locals.l_errno = 0;\n          for (fallback_inptr = (const wchar_t *) *inbuf;\n               fallback_inptr <= inptr;\n               fallback_inptr++)\n            wcd->parent.fallbacks.wc_to_mb_fallback(*fallback_inptr,\n                                                    wc_to_mb_write_replacement,\n                                                    &locals,\n                                                    wcd->parent.fallbacks.data);\n          if (locals.l_errno != 0) {\n            errno = locals.l_errno;\n            return -1;\n          }\n          wcd->state = state;\n          *inbuf = (const char *) (inptr + 1);\n          *inbytesleft = inleft - sizeof(wchar_t);\n          *outbuf = locals.l_outbuf;\n          *outbytesleft = locals.l_outbytesleft;\n          result += 1;\n          break;\n        }\n        #endif\n        else {\n          errno = EILSEQ;\n          return -1;\n        }\n      }\n      inptr++;\n      inleft -= sizeof(wchar_t);\n      bufcount += count;\n      if (count == 0) {\n        /* Continue, append next wchar_t. */\n      } else {\n        /* Attempt to convert the accumulated multibyte representations\n           to the target encoding. */\n        const char* bufptr = buf;\n        size_t bufleft = bufcount;\n        char* outptr = *outbuf;\n        size_t outleft = *outbytesleft;\n        size_t res = unicode_loop_convert(&wcd->parent,\n                                          &bufptr,&bufleft,\n                                          &outptr,&outleft);\n        if (res == (size_t)(-1)) {\n          if (errno == EILSEQ)\n            /* Invalid input. */\n            return -1;\n          else if (errno == E2BIG)\n            /* Output buffer too small. */\n            return -1;\n          else if (errno == EINVAL) {\n            /* Continue, append next wchar_t, but avoid buffer overrun. */\n            if (bufcount + MB_CUR_MAX > BUF_SIZE)\n              abort();\n          } else\n            abort();\n        } else {\n          /* Successful conversion. */\n          wcd->state = state;\n          *inbuf = (const char *) inptr;\n          *inbytesleft = inleft;\n          *outbuf = outptr;\n          *outbytesleft = outleft;\n          result += res;\n          break;\n        }\n      }\n    }\n  }\n  return result;\n}\n\nstatic size_t wchar_from_loop_reset (iconv_t icd,\n                                     char* * outbuf, size_t *outbytesleft)\n{\n  struct wchar_conv_struct * wcd = (struct wchar_conv_struct *) icd;\n  if (outbuf == NULL || *outbuf == NULL) {\n    /* Reset the states. */\n    memset(&wcd->state,'\\0',sizeof(mbstate_t));\n    return unicode_loop_reset(&wcd->parent,NULL,NULL);\n  } else {\n    if (!mbsinit(&wcd->state)) {\n      mbstate_t state = wcd->state;\n      char buf[BUF_SIZE];\n      size_t bufcount = wcrtomb(buf,(wchar_t)0,&state);\n      if (bufcount == (size_t)(-1) || bufcount == 0 || buf[bufcount-1] != '\\0')\n        abort();\n      else {\n        const char* bufptr = buf;\n        size_t bufleft = bufcount-1;\n        char* outptr = *outbuf;\n        size_t outleft = *outbytesleft;\n        size_t res = unicode_loop_convert(&wcd->parent,\n                                          &bufptr,&bufleft,\n                                          &outptr,&outleft);\n        if (res == (size_t)(-1)) {\n          if (errno == E2BIG)\n            return -1;\n          else\n            abort();\n        } else {\n          res = unicode_loop_reset(&wcd->parent,&outptr,&outleft);\n          if (res == (size_t)(-1))\n            return res;\n          else {\n            /* Successful. */\n            wcd->state = state;\n            *outbuf = outptr;\n            *outbytesleft = outleft;\n            return 0;\n          }\n        }\n      }\n    } else\n      return unicode_loop_reset(&wcd->parent,outbuf,outbytesleft);\n  }\n}\n\n#endif\n\n\n#if HAVE_MBRTOWC\n\n/* From anything else to wchar_t. */\n\n#ifndef LIBICONV_PLUG\n\nstruct mb_to_wc_fallback_locals {\n  char* l_outbuf;\n  size_t l_outbytesleft;\n  int l_errno;\n};\n\nstatic void mb_to_wc_write_replacement (const wchar_t *buf, size_t buflen,\n                                        void* callback_arg)\n{\n  struct mb_to_wc_fallback_locals * plocals =\n    (struct mb_to_wc_fallback_locals *) callback_arg;\n  /* Do nothing if already encountered an error in a previous call. */\n  if (plocals->l_errno == 0) {\n    /* Attempt to copy the passed buffer to the output buffer. */\n    if (plocals->l_outbytesleft < sizeof(wchar_t)*buflen)\n      plocals->l_errno = E2BIG;\n    else {\n      for (; buflen > 0; buf++, buflen--) {\n        *(wchar_t*) plocals->l_outbuf = *buf;\n        plocals->l_outbuf += sizeof(wchar_t);\n        plocals->l_outbytesleft -= sizeof(wchar_t);\n      }\n    }\n  }\n}\n\n#endif /* !LIBICONV_PLUG */\n\nstatic size_t wchar_to_loop_convert (iconv_t icd,\n                                     const char* * inbuf, size_t *inbytesleft,\n                                     char* * outbuf, size_t *outbytesleft)\n{\n  struct wchar_conv_struct * wcd = (struct wchar_conv_struct *) icd;\n  size_t result = 0;\n  while (*inbytesleft > 0) {\n    size_t incount;\n    for (incount = 1; ; ) {\n      /* Here incount <= *inbytesleft. */\n      char buf[BUF_SIZE];\n      const char* inptr = *inbuf;\n      size_t inleft = incount;\n      char* bufptr = buf;\n      size_t bufleft = BUF_SIZE;\n      size_t res = unicode_loop_convert(&wcd->parent,\n                                        &inptr,&inleft,\n                                        &bufptr,&bufleft);\n      if (res == (size_t)(-1)) {\n        if (errno == EILSEQ)\n          /* Invalid input. */\n          return -1;\n        else if (errno == EINVAL) {\n          /* Incomplete input. Next try with one more input byte. */\n        } else\n          /* E2BIG shouldn't occur. */\n          abort();\n      } else {\n        /* Successful conversion. */\n        size_t bufcount = bufptr-buf; /* = BUF_SIZE-bufleft */\n        mbstate_t state = wcd->state;\n        wchar_t wc;\n        res = mbrtowc(&wc,buf,bufcount,&state);\n        if (res == (size_t)(-2)) {\n          /* Next try with one more input byte. */\n        } else {\n          if (res == (size_t)(-1)) {\n            /* Invalid input. */\n            if (wcd->parent.discard_ilseq) {\n            }\n            #ifndef LIBICONV_PLUG\n            else if (wcd->parent.fallbacks.mb_to_wc_fallback != NULL) {\n              /* Drop the contents of buf[] accumulated so far, and instead\n                 pass all queued chars to the fallback handler. */\n              struct mb_to_wc_fallback_locals locals;\n              locals.l_outbuf = *outbuf;\n              locals.l_outbytesleft = *outbytesleft;\n              locals.l_errno = 0;\n              wcd->parent.fallbacks.mb_to_wc_fallback(*inbuf, incount,\n                                                      mb_to_wc_write_replacement,\n                                                      &locals,\n                                                      wcd->parent.fallbacks.data);\n              if (locals.l_errno != 0) {\n                errno = locals.l_errno;\n                return -1;\n              }\n              /* Restoring the state is not needed because it is the initial\n                 state anyway: For all known locale encodings, the multibyte\n                 to wchar_t conversion doesn't have shift state, and we have\n                 excluded partial accumulated characters. */\n              /* wcd->state = state; */\n              *inbuf += incount;\n              *inbytesleft -= incount;\n              *outbuf = locals.l_outbuf;\n              *outbytesleft = locals.l_outbytesleft;\n              result += 1;\n              break;\n            }\n            #endif\n            else\n              return -1;\n          } else {\n            if (*outbytesleft < sizeof(wchar_t)) {\n              errno = E2BIG;\n              return -1;\n            }\n            *(wchar_t*) *outbuf = wc;\n            /* Restoring the state is not needed because it is the initial\n               state anyway: For all known locale encodings, the multibyte\n               to wchar_t conversion doesn't have shift state, and we have\n               excluded partial accumulated characters. */\n            /* wcd->state = state; */\n            *outbuf += sizeof(wchar_t);\n            *outbytesleft -= sizeof(wchar_t);\n          }\n          *inbuf += incount;\n          *inbytesleft -= incount;\n          result += res;\n          break;\n        }\n      }\n      incount++;\n      if (incount > *inbytesleft) {\n        /* Incomplete input. */\n        errno = EINVAL;\n        return -1;\n      }\n    }\n  }\n  return result;\n}\n\nstatic size_t wchar_to_loop_reset (iconv_t icd,\n                                   char* * outbuf, size_t *outbytesleft)\n{\n  struct wchar_conv_struct * wcd = (struct wchar_conv_struct *) icd;\n  size_t res = unicode_loop_reset(&wcd->parent,outbuf,outbytesleft);\n  if (res == (size_t)(-1))\n    return res;\n  memset(&wcd->state,0,sizeof(mbstate_t));\n  return 0;\n}\n\n#endif\n\n\n/* From wchar_t to wchar_t. */\n\nstatic size_t wchar_id_loop_convert (iconv_t icd,\n                                     const char* * inbuf, size_t *inbytesleft,\n                                     char* * outbuf, size_t *outbytesleft)\n{\n  struct conv_struct * cd = (struct conv_struct *) icd;\n  const wchar_t* inptr = (const wchar_t*) *inbuf;\n  size_t inleft = *inbytesleft / sizeof(wchar_t);\n  wchar_t* outptr = (wchar_t*) *outbuf;\n  size_t outleft = *outbytesleft / sizeof(wchar_t);\n  size_t count = (inleft <= outleft ? inleft : outleft);\n  if (count > 0) {\n    *inbytesleft -= count * sizeof(wchar_t);\n    *outbytesleft -= count * sizeof(wchar_t);\n    do {\n      wchar_t wc = *inptr++;\n      *outptr++ = wc;\n      #ifndef LIBICONV_PLUG\n      if (cd->hooks.wc_hook)\n        (*cd->hooks.wc_hook)(wc, cd->hooks.data);\n      #endif\n    } while (--count > 0);\n    *inbuf = (const char*) inptr;\n    *outbuf = (char*) outptr;\n  }\n  return 0;\n}\n\nstatic size_t wchar_id_loop_reset (iconv_t icd,\n                                   char* * outbuf, size_t *outbytesleft)\n{\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/loops.h",
    "content": "/*\n * Copyright (C) 2000 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/* This file defines all the loops. */\n\n#include \"loop_unicode.h\"\n#include \"loop_wchar.h\"\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_arabic.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacArabic\n */\n\nstatic const unsigned short mac_arabic_2uni[128] = {\n  /* 0x80 */\n  0x00c4, 0x00a0, 0x00c7, 0x00c9, 0x00d1, 0x00d6, 0x00dc, 0x00e1,\n  0x00e0, 0x00e2, 0x00e4, 0x06ba, 0x00ab, 0x00e7, 0x00e9, 0x00e8,\n  /* 0x90 */\n  0x00ea, 0x00eb, 0x00ed, 0x2026, 0x00ee, 0x00ef, 0x00f1, 0x00f3,\n  0x00bb, 0x00f4, 0x00f6, 0x00f7, 0x00fa, 0x00f9, 0x00fb, 0x00fc,\n  /* 0xa0 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x066a, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x060c, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xb0 */\n  0x0660, 0x0661, 0x0662, 0x0663, 0x0664, 0x0665, 0x0666, 0x0667,\n  0x0668, 0x0669, 0xfffd, 0x061b, 0xfffd, 0xfffd, 0xfffd, 0x061f,\n  /* 0xc0 */\n  0x066d, 0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627,\n  0x0628, 0x0629, 0x062a, 0x062b, 0x062c, 0x062d, 0x062e, 0x062f,\n  /* 0xd0 */\n  0x0630, 0x0631, 0x0632, 0x0633, 0x0634, 0x0635, 0x0636, 0x0637,\n  0x0638, 0x0639, 0x063a, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xe0 */\n  0x0640, 0x0641, 0x0642, 0x0643, 0x0644, 0x0645, 0x0646, 0x0647,\n  0x0648, 0x0649, 0x064a, 0x064b, 0x064c, 0x064d, 0x064e, 0x064f,\n  /* 0xf0 */\n  0x0650, 0x0651, 0x0652, 0x067e, 0x0679, 0x0686, 0x06d5, 0x06a4,\n  0x06af, 0x0688, 0x0691, 0xfffd, 0xfffd, 0xfffd, 0x0698, 0x06d2,\n};\n\nstatic int\nmac_arabic_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = mac_arabic_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char mac_arabic_page00[96] = {\n  0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x82, /* 0xc0-0xc7 */\n  0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x88, 0x87, 0x89, 0x00, 0x8a, 0x00, 0x00, 0x8d, /* 0xe0-0xe7 */\n  0x8f, 0x8e, 0x90, 0x91, 0x00, 0x92, 0x94, 0x95, /* 0xe8-0xef */\n  0x00, 0x96, 0x00, 0x97, 0x99, 0x00, 0x9a, 0x9b, /* 0xf0-0xf7 */\n  0x00, 0x9d, 0x9c, 0x9e, 0x9f, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char mac_arabic_page06[208] = {\n  0x00, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0xbf, /* 0x18-0x1f */\n  0x00, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x20-0x27 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x28-0x2f */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0x30-0x37 */\n  0xd8, 0xd9, 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x40-0x47 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x48-0x4f */\n  0xf0, 0xf1, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0x60-0x67 */\n  0xb8, 0xb9, 0xa5, 0x00, 0x00, 0xc0, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0xf3, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf5, 0x00, /* 0x80-0x87 */\n  0xf9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x00, 0x00, 0x00, 0x00, 0xf7, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0xff, 0x00, 0x00, 0xf6, 0x00, 0x00, /* 0xd0-0xd7 */\n};\n\nstatic int\nmac_arabic_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = mac_arabic_page00[wc-0x00a0];\n  else if (wc >= 0x0608 && wc < 0x06d8)\n    c = mac_arabic_page06[wc-0x0608];\n  else if (wc == 0x2026)\n    c = 0x93;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_centraleurope.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacCentralEurope\n */\n\nstatic const unsigned short mac_centraleurope_2uni[128] = {\n  /* 0x80 */\n  0x00c4, 0x0100, 0x0101, 0x00c9, 0x0104, 0x00d6, 0x00dc, 0x00e1,\n  0x0105, 0x010c, 0x00e4, 0x010d, 0x0106, 0x0107, 0x00e9, 0x0179,\n  /* 0x90 */\n  0x017a, 0x010e, 0x00ed, 0x010f, 0x0112, 0x0113, 0x0116, 0x00f3,\n  0x0117, 0x00f4, 0x00f6, 0x00f5, 0x00fa, 0x011a, 0x011b, 0x00fc,\n  /* 0xa0 */\n  0x2020, 0x00b0, 0x0118, 0x00a3, 0x00a7, 0x2022, 0x00b6, 0x00df,\n  0x00ae, 0x00a9, 0x2122, 0x0119, 0x00a8, 0x2260, 0x0123, 0x012e,\n  /* 0xb0 */\n  0x012f, 0x012a, 0x2264, 0x2265, 0x012b, 0x0136, 0x2202, 0x2211,\n  0x0142, 0x013b, 0x013c, 0x013d, 0x013e, 0x0139, 0x013a, 0x0145,\n  /* 0xc0 */\n  0x0146, 0x0143, 0x00ac, 0x221a, 0x0144, 0x0147, 0x2206, 0x00ab,\n  0x00bb, 0x2026, 0x00a0, 0x0148, 0x0150, 0x00d5, 0x0151, 0x014c,\n  /* 0xd0 */\n  0x2013, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x25ca,\n  0x014d, 0x0154, 0x0155, 0x0158, 0x2039, 0x203a, 0x0159, 0x0156,\n  /* 0xe0 */\n  0x0157, 0x0160, 0x201a, 0x201e, 0x0161, 0x015a, 0x015b, 0x00c1,\n  0x0164, 0x0165, 0x00cd, 0x017d, 0x017e, 0x016a, 0x00d3, 0x00d4,\n  /* 0xf0 */\n  0x016b, 0x016e, 0x00da, 0x016f, 0x0170, 0x0171, 0x0172, 0x0173,\n  0x00dd, 0x00fd, 0x0137, 0x017b, 0x0141, 0x017c, 0x0122, 0x02c7,\n};\n\nstatic int\nmac_centraleurope_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) mac_centraleurope_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char mac_centraleurope_page00[224] = {\n  0xca, 0x00, 0x00, 0xa3, 0x00, 0x00, 0x00, 0xa4, /* 0xa0-0xa7 */\n  0xac, 0xa9, 0x00, 0xc7, 0xc2, 0x00, 0xa8, 0x00, /* 0xa8-0xaf */\n  0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0xe7, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x83, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0xee, 0xef, 0xcd, 0x85, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0xf2, 0x00, 0x86, 0xf8, 0x00, 0xa7, /* 0xd8-0xdf */\n  0x00, 0x87, 0x00, 0x00, 0x8a, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0x00, 0x8e, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x97, 0x99, 0x9b, 0x9a, 0xd6, /* 0xf0-0xf7 */\n  0x00, 0x00, 0x9c, 0x00, 0x9f, 0xf9, 0x00, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0x81, 0x82, 0x00, 0x00, 0x84, 0x88, 0x8c, 0x8d, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x89, 0x8b, 0x91, 0x93, /* 0x08-0x0f */\n  0x00, 0x00, 0x94, 0x95, 0x00, 0x00, 0x96, 0x98, /* 0x10-0x17 */\n  0xa2, 0xab, 0x9d, 0x9e, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0xfe, 0xae, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0xb1, 0xb4, 0x00, 0x00, 0xaf, 0xb0, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb5, 0xfa, /* 0x30-0x37 */\n  0x00, 0xbd, 0xbe, 0xb9, 0xba, 0xbb, 0xbc, 0x00, /* 0x38-0x3f */\n  0x00, 0xfc, 0xb8, 0xc1, 0xc4, 0xbf, 0xc0, 0xc5, /* 0x40-0x47 */\n  0xcb, 0x00, 0x00, 0x00, 0xcf, 0xd8, 0x00, 0x00, /* 0x48-0x4f */\n  0xcc, 0xce, 0x00, 0x00, 0xd9, 0xda, 0xdf, 0xe0, /* 0x50-0x57 */\n  0xdb, 0xde, 0xe5, 0xe6, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xe1, 0xe4, 0x00, 0x00, 0xe8, 0xe9, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0xed, 0xf0, 0x00, 0x00, 0xf1, 0xf3, /* 0x68-0x6f */\n  0xf4, 0xf5, 0xf6, 0xf7, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x8f, 0x90, 0xfb, 0xfd, 0xeb, 0xec, 0x00, /* 0x78-0x7f */\n};\nstatic const unsigned char mac_centraleurope_page20[48] = {\n  0x00, 0x00, 0x00, 0xd0, 0xd1, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd4, 0xd5, 0xe2, 0x00, 0xd2, 0xd3, 0xe3, 0x00, /* 0x18-0x1f */\n  0xa0, 0x00, 0xa5, 0x00, 0x00, 0x00, 0xc9, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0xdc, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\nstatic const unsigned char mac_centraleurope_page22[32] = {\n  0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0xc6, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n};\nstatic const unsigned char mac_centraleurope_page22_1[8] = {\n  0xad, 0x00, 0x00, 0x00, 0xb2, 0xb3, 0x00, 0x00, /* 0x60-0x67 */\n};\n\nstatic int\nmac_centraleurope_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0180)\n    c = mac_centraleurope_page00[wc-0x00a0];\n  else if (wc == 0x02c7)\n    c = 0xff;\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = mac_centraleurope_page20[wc-0x2010];\n  else if (wc == 0x2122)\n    c = 0xaa;\n  else if (wc >= 0x2200 && wc < 0x2220)\n    c = mac_centraleurope_page22[wc-0x2200];\n  else if (wc >= 0x2260 && wc < 0x2268)\n    c = mac_centraleurope_page22_1[wc-0x2260];\n  else if (wc == 0x25ca)\n    c = 0xd7;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_croatian.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacCroatian\n */\n\nstatic const unsigned short mac_croatian_2uni[128] = {\n  /* 0x80 */\n  0x00c4, 0x00c5, 0x00c7, 0x00c9, 0x00d1, 0x00d6, 0x00dc, 0x00e1,\n  0x00e0, 0x00e2, 0x00e4, 0x00e3, 0x00e5, 0x00e7, 0x00e9, 0x00e8,\n  /* 0x90 */\n  0x00ea, 0x00eb, 0x00ed, 0x00ec, 0x00ee, 0x00ef, 0x00f1, 0x00f3,\n  0x00f2, 0x00f4, 0x00f6, 0x00f5, 0x00fa, 0x00f9, 0x00fb, 0x00fc,\n  /* 0xa0 */\n  0x2020, 0x00b0, 0x00a2, 0x00a3, 0x00a7, 0x2022, 0x00b6, 0x00df,\n  0x00ae, 0x0160, 0x2122, 0x00b4, 0x00a8, 0x2260, 0x017d, 0x00d8,\n  /* 0xb0 */\n  0x221e, 0x00b1, 0x2264, 0x2265, 0x2206, 0x00b5, 0x2202, 0x2211,\n  0x220f, 0x0161, 0x222b, 0x00aa, 0x00ba, 0x2126, 0x017e, 0x00f8,\n  /* 0xc0 */\n  0x00bf, 0x00a1, 0x00ac, 0x221a, 0x0192, 0x2248, 0x0106, 0x00ab,\n  0x010c, 0x2026, 0x00a0, 0x00c0, 0x00c3, 0x00d5, 0x0152, 0x0153,\n  /* 0xd0 */\n  0x0110, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x25ca,\n  0xfffd, 0x00a9, 0x2044, 0x00a4, 0x2039, 0x203a, 0x00c6, 0x00bb,\n  /* 0xe0 */\n  0x2013, 0x00b7, 0x201a, 0x201e, 0x2030, 0x00c2, 0x0107, 0x00c1,\n  0x010d, 0x00c8, 0x00cd, 0x00ce, 0x00cf, 0x00cc, 0x00d3, 0x00d4,\n  /* 0xf0 */\n  0x0111, 0x00d2, 0x00da, 0x00db, 0x00d9, 0x0131, 0x02c6, 0x02dc,\n  0x00af, 0x03c0, 0x00cb, 0x02da, 0x00b8, 0x00ca, 0x00e6, 0x02c7,\n};\n\nstatic int\nmac_croatian_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = mac_croatian_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char mac_croatian_page00[248] = {\n  0xca, 0xc1, 0xa2, 0xa3, 0xdb, 0x00, 0x00, 0xa4, /* 0xa0-0xa7 */\n  0xac, 0xd9, 0xbb, 0xc7, 0xc2, 0x00, 0xa8, 0xf8, /* 0xa8-0xaf */\n  0xa1, 0xb1, 0x00, 0x00, 0xab, 0xb5, 0xa6, 0xe1, /* 0xb0-0xb7 */\n  0xfc, 0x00, 0xbc, 0xdf, 0x00, 0x00, 0x00, 0xc0, /* 0xb8-0xbf */\n  0xcb, 0xe7, 0xe5, 0xcc, 0x80, 0x81, 0xde, 0x82, /* 0xc0-0xc7 */\n  0xe9, 0x83, 0xfd, 0xfa, 0xed, 0xea, 0xeb, 0xec, /* 0xc8-0xcf */\n  0x00, 0x84, 0xf1, 0xee, 0xef, 0xcd, 0x85, 0x00, /* 0xd0-0xd7 */\n  0xaf, 0xf4, 0xf2, 0xf3, 0x86, 0x00, 0x00, 0xa7, /* 0xd8-0xdf */\n  0x88, 0x87, 0x89, 0x8b, 0x8a, 0x8c, 0xfe, 0x8d, /* 0xe0-0xe7 */\n  0x8f, 0x8e, 0x90, 0x91, 0x93, 0x92, 0x94, 0x95, /* 0xe8-0xef */\n  0x00, 0x96, 0x98, 0x97, 0x99, 0x9b, 0x9a, 0xd6, /* 0xf0-0xf7 */\n  0xbf, 0x9d, 0x9c, 0x9e, 0x9f, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xe6, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0xc8, 0xe8, 0x00, 0x00, /* 0x08-0x0f */\n  0xd0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0xce, 0xcf, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xa9, 0xb9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0xbe, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char mac_croatian_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0xff, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0xfb, 0x00, 0xf7, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char mac_croatian_page20[56] = {\n  0x00, 0x00, 0x00, 0xe0, 0xd1, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd4, 0xd5, 0xe2, 0x00, 0xd2, 0xd3, 0xe3, 0x00, /* 0x18-0x1f */\n  0xa0, 0x00, 0xa5, 0x00, 0x00, 0x00, 0xc9, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0xdc, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n};\nstatic const unsigned char mac_croatian_page21[8] = {\n  0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0xbd, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char mac_croatian_page22[104] = {\n  0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0xb4, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, /* 0x08-0x0f */\n  0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0xb0, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xad, 0x00, 0x00, 0x00, 0xb2, 0xb3, 0x00, 0x00, /* 0x60-0x67 */\n};\n\nstatic int\nmac_croatian_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0198)\n    c = mac_croatian_page00[wc-0x00a0];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = mac_croatian_page02[wc-0x02c0];\n  else if (wc == 0x03c0)\n    c = 0xf9;\n  else if (wc >= 0x2010 && wc < 0x2048)\n    c = mac_croatian_page20[wc-0x2010];\n  else if (wc >= 0x2120 && wc < 0x2128)\n    c = mac_croatian_page21[wc-0x2120];\n  else if (wc >= 0x2200 && wc < 0x2268)\n    c = mac_croatian_page22[wc-0x2200];\n  else if (wc == 0x25ca)\n    c = 0xd7;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_cyrillic.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacCyrillic\n */\n\nstatic const unsigned short mac_cyrillic_2uni[128] = {\n  /* 0x80 */\n  0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,\n  0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f,\n  /* 0x90 */\n  0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,\n  0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f,\n  /* 0xa0 */\n  0x2020, 0x00b0, 0x00a2, 0x00a3, 0x00a7, 0x2022, 0x00b6, 0x0406,\n  0x00ae, 0x00a9, 0x2122, 0x0402, 0x0452, 0x2260, 0x0403, 0x0453,\n  /* 0xb0 */\n  0x221e, 0x00b1, 0x2264, 0x2265, 0x0456, 0x00b5, 0x2202, 0x0408,\n  0x0404, 0x0454, 0x0407, 0x0457, 0x0409, 0x0459, 0x040a, 0x045a,\n  /* 0xc0 */\n  0x0458, 0x0405, 0x00ac, 0x221a, 0x0192, 0x2248, 0x2206, 0x00ab,\n  0x00bb, 0x2026, 0x00a0, 0x040b, 0x045b, 0x040c, 0x045c, 0x0455,\n  /* 0xd0 */\n  0x2013, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x201e,\n  0x040e, 0x045e, 0x040f, 0x045f, 0x2116, 0x0401, 0x0451, 0x044f,\n  /* 0xe0 */\n  0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,\n  0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f,\n  /* 0xf0 */\n  0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,\n  0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x00a4,\n};\n\nstatic int\nmac_cyrillic_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c >= 0x80)\n    *pwc = (ucs4_t) mac_cyrillic_2uni[c-0x80];\n  else\n    *pwc = (ucs4_t) c;\n  return 1;\n}\n\nstatic const unsigned char mac_cyrillic_page00[32] = {\n  0xca, 0x00, 0xa2, 0xa3, 0xff, 0x00, 0x00, 0xa4, /* 0xa0-0xa7 */\n  0x00, 0xa9, 0x00, 0xc7, 0xc2, 0x00, 0xa8, 0x00, /* 0xa8-0xaf */\n  0xa1, 0xb1, 0x00, 0x00, 0x00, 0xb5, 0xa6, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char mac_cyrillic_page04[96] = {\n  0x00, 0xdd, 0xab, 0xae, 0xb8, 0xc1, 0xa7, 0xba, /* 0x00-0x07 */\n  0xb7, 0xbc, 0xbe, 0xcb, 0xcd, 0x00, 0xd8, 0xda, /* 0x08-0x0f */\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /* 0x10-0x17 */\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* 0x18-0x1f */\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, /* 0x20-0x27 */\n  0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, /* 0x28-0x2f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x30-0x37 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x38-0x3f */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0x40-0x47 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xdf, /* 0x48-0x4f */\n  0x00, 0xde, 0xac, 0xaf, 0xb9, 0xcf, 0xb4, 0xbb, /* 0x50-0x57 */\n  0xc0, 0xbd, 0xbf, 0xcc, 0xce, 0x00, 0xd9, 0xdb, /* 0x58-0x5f */\n};\nstatic const unsigned char mac_cyrillic_page20[24] = {\n  0x00, 0x00, 0x00, 0xd0, 0xd1, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd4, 0xd5, 0x00, 0x00, 0xd2, 0xd3, 0xd7, 0x00, /* 0x18-0x1f */\n  0xa0, 0x00, 0xa5, 0x00, 0x00, 0x00, 0xc9, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char mac_cyrillic_page21[24] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char mac_cyrillic_page22[104] = {\n  0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0xc6, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0xb0, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xad, 0x00, 0x00, 0x00, 0xb2, 0xb3, 0x00, 0x00, /* 0x60-0x67 */\n};\n\nstatic int\nmac_cyrillic_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = mac_cyrillic_page00[wc-0x00a0];\n  else if (wc == 0x00f7)\n    c = 0xd6;\n  else if (wc == 0x0192)\n    c = 0xc4;\n  else if (wc >= 0x0400 && wc < 0x0460)\n    c = mac_cyrillic_page04[wc-0x0400];\n  else if (wc >= 0x2010 && wc < 0x2028)\n    c = mac_cyrillic_page20[wc-0x2010];\n  else if (wc >= 0x2110 && wc < 0x2128)\n    c = mac_cyrillic_page21[wc-0x2110];\n  else if (wc >= 0x2200 && wc < 0x2268)\n    c = mac_cyrillic_page22[wc-0x2200];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_greek.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacGreek\n */\n\nstatic const unsigned short mac_greek_2uni[128] = {\n  /* 0x80 */\n  0x00c4, 0x00b9, 0x00b2, 0x00c9, 0x00b3, 0x00d6, 0x00dc, 0x0385,\n  0x00e0, 0x00e2, 0x00e4, 0x0384, 0x00a8, 0x00e7, 0x00e9, 0x00e8,\n  /* 0x90 */\n  0x00ea, 0x00eb, 0x00a3, 0x2122, 0x00ee, 0x00ef, 0x2022, 0x00bd,\n  0x2030, 0x00f4, 0x00f6, 0x00a6, 0x00ad, 0x00f9, 0x00fb, 0x00fc,\n  /* 0xa0 */\n  0x2020, 0x0393, 0x0394, 0x0398, 0x039b, 0x039e, 0x03a0, 0x00df,\n  0x00ae, 0x00a9, 0x03a3, 0x03aa, 0x00a7, 0x2260, 0x00b0, 0x0387,\n  /* 0xb0 */\n  0x0391, 0x00b1, 0x2264, 0x2265, 0x00a5, 0x0392, 0x0395, 0x0396,\n  0x0397, 0x0399, 0x039a, 0x039c, 0x03a6, 0x03ab, 0x03a8, 0x03a9,\n  /* 0xc0 */\n  0x03ac, 0x039d, 0x00ac, 0x039f, 0x03a1, 0x2248, 0x03a4, 0x00ab,\n  0x00bb, 0x2026, 0x00a0, 0x03a5, 0x03a7, 0x0386, 0x0388, 0x0153,\n  /* 0xd0 */\n  0x2013, 0x2015, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x0389,\n  0x038a, 0x038c, 0x038e, 0x03ad, 0x03ae, 0x03af, 0x03cc, 0x038f,\n  /* 0xe0 */\n  0x03cd, 0x03b1, 0x03b2, 0x03c8, 0x03b4, 0x03b5, 0x03c6, 0x03b3,\n  0x03b7, 0x03b9, 0x03be, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03bf,\n  /* 0xf0 */\n  0x03c0, 0x03ce, 0x03c1, 0x03c3, 0x03c4, 0x03b8, 0x03c9, 0x03c2,\n  0x03c7, 0x03c5, 0x03b6, 0x03ca, 0x03cb, 0x0390, 0x03b0, 0xfffd,\n};\n\nstatic int\nmac_greek_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = mac_greek_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char mac_greek_page00[96] = {\n  0xca, 0x00, 0x00, 0x92, 0x00, 0xb4, 0x9b, 0xac, /* 0xa0-0xa7 */\n  0x8c, 0xa9, 0x00, 0xc7, 0xc2, 0x9c, 0xa8, 0x00, /* 0xa8-0xaf */\n  0xae, 0xb1, 0x82, 0x84, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x81, 0x00, 0xc8, 0x00, 0x97, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0xa7, /* 0xd8-0xdf */\n  0x88, 0x00, 0x89, 0x00, 0x8a, 0x00, 0x00, 0x8d, /* 0xe0-0xe7 */\n  0x8f, 0x8e, 0x90, 0x91, 0x00, 0x00, 0x94, 0x95, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x9a, 0xd6, /* 0xf0-0xf7 */\n  0x00, 0x9d, 0x00, 0x9e, 0x9f, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char mac_greek_page03[80] = {\n  0x00, 0x00, 0x00, 0x00, 0x8b, 0x87, 0xcd, 0xaf, /* 0x80-0x87 */\n  0xce, 0xd7, 0xd8, 0x00, 0xd9, 0x00, 0xda, 0xdf, /* 0x88-0x8f */\n  0xfd, 0xb0, 0xb5, 0xa1, 0xa2, 0xb6, 0xb7, 0xb8, /* 0x90-0x97 */\n  0xa3, 0xb9, 0xba, 0xa4, 0xbb, 0xc1, 0xa5, 0xc3, /* 0x98-0x9f */\n  0xa6, 0xc4, 0x00, 0xaa, 0xc6, 0xcb, 0xbc, 0xcc, /* 0xa0-0xa7 */\n  0xbe, 0xbf, 0xab, 0xbd, 0xc0, 0xdb, 0xdc, 0xdd, /* 0xa8-0xaf */\n  0xfe, 0xe1, 0xe2, 0xe7, 0xe4, 0xe5, 0xfa, 0xe8, /* 0xb0-0xb7 */\n  0xf5, 0xe9, 0xeb, 0xec, 0xed, 0xee, 0xea, 0xef, /* 0xb8-0xbf */\n  0xf0, 0xf2, 0xf7, 0xf3, 0xf4, 0xf9, 0xe6, 0xf8, /* 0xc0-0xc7 */\n  0xe3, 0xf6, 0xfb, 0xfc, 0xde, 0xe0, 0xf1, 0x00, /* 0xc8-0xcf */\n};\nstatic const unsigned char mac_greek_page20[40] = {\n  0x00, 0x00, 0x00, 0xd0, 0x00, 0xd1, 0x00, 0x00, /* 0x10-0x17 */\n  0xd4, 0xd5, 0x00, 0x00, 0xd2, 0xd3, 0x00, 0x00, /* 0x18-0x1f */\n  0xa0, 0x00, 0x96, 0x00, 0x00, 0x00, 0xc9, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n};\nstatic const unsigned char mac_greek_page22[32] = {\n  0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xad, 0x00, 0x00, 0x00, 0xb2, 0xb3, 0x00, 0x00, /* 0x60-0x67 */\n};\n\nstatic int\nmac_greek_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = mac_greek_page00[wc-0x00a0];\n  else if (wc == 0x0153)\n    c = 0xcf;\n  else if (wc >= 0x0380 && wc < 0x03d0)\n    c = mac_greek_page03[wc-0x0380];\n  else if (wc >= 0x2010 && wc < 0x2038)\n    c = mac_greek_page20[wc-0x2010];\n  else if (wc == 0x2122)\n    c = 0x93;\n  else if (wc >= 0x2248 && wc < 0x2268)\n    c = mac_greek_page22[wc-0x2248];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_hebrew.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacHebrew\n */\n\nstatic const unsigned short mac_hebrew_2uni[128] = {\n  /* 0x80 */\n  0x00c4, 0xfb1f, 0x00c7, 0x00c9, 0x00d1, 0x00d6, 0x00dc, 0x00e1,\n  0x00e0, 0x00e2, 0x00e4, 0x00e3, 0x00e5, 0x00e7, 0x00e9, 0x00e8,\n  /* 0x90 */\n  0x00ea, 0x00eb, 0x00ed, 0x00ec, 0x00ee, 0x00ef, 0x00f1, 0x00f3,\n  0x00f2, 0x00f4, 0x00f6, 0x00f5, 0x00fa, 0x00f9, 0x00fb, 0x00fc,\n  /* 0xa0 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x20aa, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xb0 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n  /* 0xc0 */\n  0xfffd, 0x201e, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x05bc, 0xfb4b,\n  0xfb35, 0x2026, 0x00a0, 0x05b8, 0x05b7, 0x05b5, 0x05b6, 0x05b4,\n  /* 0xd0 */\n  0x2013, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0xfb2a, 0xfb2b,\n  0x05bf, 0x05b0, 0x05b2, 0x05b1, 0x05bb, 0x05b9, 0xfffd, 0x05b3,\n  /* 0xe0 */\n  0x05d0, 0x05d1, 0x05d2, 0x05d3, 0x05d4, 0x05d5, 0x05d6, 0x05d7,\n  0x05d8, 0x05d9, 0x05da, 0x05db, 0x05dc, 0x05dd, 0x05de, 0x05df,\n  /* 0xf0 */\n  0x05e0, 0x05e1, 0x05e2, 0x05e3, 0x05e4, 0x05e5, 0x05e6, 0x05e7,\n  0x05e8, 0x05e9, 0x05ea, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n};\n\nstatic int\nmac_hebrew_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else if (c >= 0x80) {\n    unsigned short wc = mac_hebrew_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char mac_hebrew_page00[96] = {\n  0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x82, /* 0xc0-0xc7 */\n  0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x88, 0x87, 0x89, 0x8b, 0x8a, 0x8c, 0x00, 0x8d, /* 0xe0-0xe7 */\n  0x8f, 0x8e, 0x90, 0x91, 0x93, 0x92, 0x94, 0x95, /* 0xe8-0xef */\n  0x00, 0x96, 0x98, 0x97, 0x99, 0x9b, 0x9a, 0x00, /* 0xf0-0xf7 */\n  0x00, 0x9d, 0x9c, 0x9e, 0x9f, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char mac_hebrew_page05[64] = {\n  0xd9, 0xdb, 0xda, 0xdf, 0xcf, 0xcd, 0xce, 0xcc, /* 0xb0-0xb7 */\n  0xcb, 0xdd, 0x00, 0xdc, 0xc6, 0x00, 0x00, 0xd8, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0xd0-0xd7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0xd8-0xdf */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0xe0-0xe7 */\n  0xf8, 0xf9, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n};\nstatic const unsigned char mac_hebrew_page20[24] = {\n  0x00, 0x00, 0x00, 0xd0, 0xd1, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd4, 0xd5, 0x00, 0x00, 0xd2, 0xd3, 0xc1, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc9, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char mac_hebrew_pagefb[56] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0xd6, 0xd7, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n};\n\nstatic int\nmac_hebrew_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = mac_hebrew_page00[wc-0x00a0];\n  else if (wc >= 0x05b0 && wc < 0x05f0)\n    c = mac_hebrew_page05[wc-0x05b0];\n  else if (wc >= 0x2010 && wc < 0x2028)\n    c = mac_hebrew_page20[wc-0x2010];\n  else if (wc == 0x20aa)\n    c = 0xa6;\n  else if (wc >= 0xfb18 && wc < 0xfb50)\n    c = mac_hebrew_pagefb[wc-0xfb18];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_iceland.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacIceland\n */\n\nstatic const unsigned short mac_iceland_2uni[128] = {\n  /* 0x80 */\n  0x00c4, 0x00c5, 0x00c7, 0x00c9, 0x00d1, 0x00d6, 0x00dc, 0x00e1,\n  0x00e0, 0x00e2, 0x00e4, 0x00e3, 0x00e5, 0x00e7, 0x00e9, 0x00e8,\n  /* 0x90 */\n  0x00ea, 0x00eb, 0x00ed, 0x00ec, 0x00ee, 0x00ef, 0x00f1, 0x00f3,\n  0x00f2, 0x00f4, 0x00f6, 0x00f5, 0x00fa, 0x00f9, 0x00fb, 0x00fc,\n  /* 0xa0 */\n  0x00dd, 0x00b0, 0x00a2, 0x00a3, 0x00a7, 0x2022, 0x00b6, 0x00df,\n  0x00ae, 0x00a9, 0x2122, 0x00b4, 0x00a8, 0x2260, 0x00c6, 0x00d8,\n  /* 0xb0 */\n  0x221e, 0x00b1, 0x2264, 0x2265, 0x00a5, 0x00b5, 0x2202, 0x2211,\n  0x220f, 0x03c0, 0x222b, 0x00aa, 0x00ba, 0x2126, 0x00e6, 0x00f8,\n  /* 0xc0 */\n  0x00bf, 0x00a1, 0x00ac, 0x221a, 0x0192, 0x2248, 0x2206, 0x00ab,\n  0x00bb, 0x2026, 0x00a0, 0x00c0, 0x00c3, 0x00d5, 0x0152, 0x0153,\n  /* 0xd0 */\n  0x2013, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x25ca,\n  0x00ff, 0x0178, 0x2044, 0x00a4, 0x00d0, 0x00f0, 0x00de, 0x00fe,\n  /* 0xe0 */\n  0x00fd, 0x00b7, 0x201a, 0x201e, 0x2030, 0x00c2, 0x00ca, 0x00c1,\n  0x00cb, 0x00c8, 0x00cd, 0x00ce, 0x00cf, 0x00cc, 0x00d3, 0x00d4,\n  /* 0xf0 */\n  0xfffd, 0x00d2, 0x00da, 0x00db, 0x00d9, 0x0131, 0x02c6, 0x02dc,\n  0x00af, 0x02d8, 0x02d9, 0x02da, 0x00b8, 0x02dd, 0x02db, 0x02c7,\n};\n\nstatic int\nmac_iceland_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = mac_iceland_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char mac_iceland_page00[96] = {\n  0xca, 0xc1, 0xa2, 0xa3, 0xdb, 0xb4, 0x00, 0xa4, /* 0xa0-0xa7 */\n  0xac, 0xa9, 0xbb, 0xc7, 0xc2, 0x00, 0xa8, 0xf8, /* 0xa8-0xaf */\n  0xa1, 0xb1, 0x00, 0x00, 0xab, 0xb5, 0xa6, 0xe1, /* 0xb0-0xb7 */\n  0xfc, 0x00, 0xbc, 0xc8, 0x00, 0x00, 0x00, 0xc0, /* 0xb8-0xbf */\n  0xcb, 0xe7, 0xe5, 0xcc, 0x80, 0x81, 0xae, 0x82, /* 0xc0-0xc7 */\n  0xe9, 0x83, 0xe6, 0xe8, 0xed, 0xea, 0xeb, 0xec, /* 0xc8-0xcf */\n  0xdc, 0x84, 0xf1, 0xee, 0xef, 0xcd, 0x85, 0x00, /* 0xd0-0xd7 */\n  0xaf, 0xf4, 0xf2, 0xf3, 0x86, 0xa0, 0xde, 0xa7, /* 0xd8-0xdf */\n  0x88, 0x87, 0x89, 0x8b, 0x8a, 0x8c, 0xbe, 0x8d, /* 0xe0-0xe7 */\n  0x8f, 0x8e, 0x90, 0x91, 0x93, 0x92, 0x94, 0x95, /* 0xe8-0xef */\n  0xdd, 0x96, 0x98, 0x97, 0x99, 0x9b, 0x9a, 0xd6, /* 0xf0-0xf7 */\n  0xbf, 0x9d, 0x9c, 0x9e, 0x9f, 0xe0, 0xdf, 0xd8, /* 0xf8-0xff */\n};\nstatic const unsigned char mac_iceland_page01[104] = {\n  0x00, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0xce, 0xcf, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char mac_iceland_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0xff, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0xf9, 0xfa, 0xfb, 0xfe, 0xf7, 0xfd, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char mac_iceland_page20[56] = {\n  0x00, 0x00, 0x00, 0xd0, 0xd1, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd4, 0xd5, 0xe2, 0x00, 0xd2, 0xd3, 0xe3, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0xa5, 0x00, 0x00, 0x00, 0xc9, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n};\nstatic const unsigned char mac_iceland_page21[8] = {\n  0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0xbd, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char mac_iceland_page22[104] = {\n  0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0xc6, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, /* 0x08-0x0f */\n  0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0xb0, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xad, 0x00, 0x00, 0x00, 0xb2, 0xb3, 0x00, 0x00, /* 0x60-0x67 */\n};\n\nstatic int\nmac_iceland_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = mac_iceland_page00[wc-0x00a0];\n  else if (wc >= 0x0130 && wc < 0x0198)\n    c = mac_iceland_page01[wc-0x0130];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = mac_iceland_page02[wc-0x02c0];\n  else if (wc == 0x03c0)\n    c = 0xb9;\n  else if (wc >= 0x2010 && wc < 0x2048)\n    c = mac_iceland_page20[wc-0x2010];\n  else if (wc >= 0x2120 && wc < 0x2128)\n    c = mac_iceland_page21[wc-0x2120];\n  else if (wc >= 0x2200 && wc < 0x2268)\n    c = mac_iceland_page22[wc-0x2200];\n  else if (wc == 0x25ca)\n    c = 0xd7;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_roman.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacRoman\n */\n\nstatic const unsigned short mac_roman_2uni[128] = {\n  /* 0x80 */\n  0x00c4, 0x00c5, 0x00c7, 0x00c9, 0x00d1, 0x00d6, 0x00dc, 0x00e1,\n  0x00e0, 0x00e2, 0x00e4, 0x00e3, 0x00e5, 0x00e7, 0x00e9, 0x00e8,\n  /* 0x90 */\n  0x00ea, 0x00eb, 0x00ed, 0x00ec, 0x00ee, 0x00ef, 0x00f1, 0x00f3,\n  0x00f2, 0x00f4, 0x00f6, 0x00f5, 0x00fa, 0x00f9, 0x00fb, 0x00fc,\n  /* 0xa0 */\n  0x2020, 0x00b0, 0x00a2, 0x00a3, 0x00a7, 0x2022, 0x00b6, 0x00df,\n  0x00ae, 0x00a9, 0x2122, 0x00b4, 0x00a8, 0x2260, 0x00c6, 0x00d8,\n  /* 0xb0 */\n  0x221e, 0x00b1, 0x2264, 0x2265, 0x00a5, 0x00b5, 0x2202, 0x2211,\n  0x220f, 0x03c0, 0x222b, 0x00aa, 0x00ba, 0x2126, 0x00e6, 0x00f8,\n  /* 0xc0 */\n  0x00bf, 0x00a1, 0x00ac, 0x221a, 0x0192, 0x2248, 0x2206, 0x00ab,\n  0x00bb, 0x2026, 0x00a0, 0x00c0, 0x00c3, 0x00d5, 0x0152, 0x0153,\n  /* 0xd0 */\n  0x2013, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x25ca,\n  0x00ff, 0x0178, 0x2044, 0x00a4, 0x2039, 0x203a, 0xfb01, 0xfb02,\n  /* 0xe0 */\n  0x2021, 0x00b7, 0x201a, 0x201e, 0x2030, 0x00c2, 0x00ca, 0x00c1,\n  0x00cb, 0x00c8, 0x00cd, 0x00ce, 0x00cf, 0x00cc, 0x00d3, 0x00d4,\n  /* 0xf0 */\n  0xfffd, 0x00d2, 0x00da, 0x00db, 0x00d9, 0x0131, 0x02c6, 0x02dc,\n  0x00af, 0x02d8, 0x02d9, 0x02da, 0x00b8, 0x02dd, 0x02db, 0x02c7,\n};\n\nstatic int\nmac_roman_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = mac_roman_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char mac_roman_page00[96] = {\n  0xca, 0xc1, 0xa2, 0xa3, 0xdb, 0xb4, 0x00, 0xa4, /* 0xa0-0xa7 */\n  0xac, 0xa9, 0xbb, 0xc7, 0xc2, 0x00, 0xa8, 0xf8, /* 0xa8-0xaf */\n  0xa1, 0xb1, 0x00, 0x00, 0xab, 0xb5, 0xa6, 0xe1, /* 0xb0-0xb7 */\n  0xfc, 0x00, 0xbc, 0xc8, 0x00, 0x00, 0x00, 0xc0, /* 0xb8-0xbf */\n  0xcb, 0xe7, 0xe5, 0xcc, 0x80, 0x81, 0xae, 0x82, /* 0xc0-0xc7 */\n  0xe9, 0x83, 0xe6, 0xe8, 0xed, 0xea, 0xeb, 0xec, /* 0xc8-0xcf */\n  0x00, 0x84, 0xf1, 0xee, 0xef, 0xcd, 0x85, 0x00, /* 0xd0-0xd7 */\n  0xaf, 0xf4, 0xf2, 0xf3, 0x86, 0x00, 0x00, 0xa7, /* 0xd8-0xdf */\n  0x88, 0x87, 0x89, 0x8b, 0x8a, 0x8c, 0xbe, 0x8d, /* 0xe0-0xe7 */\n  0x8f, 0x8e, 0x90, 0x91, 0x93, 0x92, 0x94, 0x95, /* 0xe8-0xef */\n  0x00, 0x96, 0x98, 0x97, 0x99, 0x9b, 0x9a, 0xd6, /* 0xf0-0xf7 */\n  0xbf, 0x9d, 0x9c, 0x9e, 0x9f, 0x00, 0x00, 0xd8, /* 0xf8-0xff */\n};\nstatic const unsigned char mac_roman_page01[104] = {\n  0x00, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0xce, 0xcf, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char mac_roman_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0xff, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0xf9, 0xfa, 0xfb, 0xfe, 0xf7, 0xfd, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char mac_roman_page20[56] = {\n  0x00, 0x00, 0x00, 0xd0, 0xd1, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd4, 0xd5, 0xe2, 0x00, 0xd2, 0xd3, 0xe3, 0x00, /* 0x18-0x1f */\n  0xa0, 0xe0, 0xa5, 0x00, 0x00, 0x00, 0xc9, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0xdc, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n};\nstatic const unsigned char mac_roman_page21[8] = {\n  0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0xbd, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char mac_roman_page22[104] = {\n  0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0xc6, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, /* 0x08-0x0f */\n  0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0xb0, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xad, 0x00, 0x00, 0x00, 0xb2, 0xb3, 0x00, 0x00, /* 0x60-0x67 */\n};\nstatic const unsigned char mac_roman_pagefb[8] = {\n  0x00, 0xde, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n};\n\nstatic int\nmac_roman_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = mac_roman_page00[wc-0x00a0];\n  else if (wc >= 0x0130 && wc < 0x0198)\n    c = mac_roman_page01[wc-0x0130];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = mac_roman_page02[wc-0x02c0];\n  else if (wc == 0x03c0)\n    c = 0xb9;\n  else if (wc >= 0x2010 && wc < 0x2048)\n    c = mac_roman_page20[wc-0x2010];\n  else if (wc >= 0x2120 && wc < 0x2128)\n    c = mac_roman_page21[wc-0x2120];\n  else if (wc >= 0x2200 && wc < 0x2268)\n    c = mac_roman_page22[wc-0x2200];\n  else if (wc == 0x25ca)\n    c = 0xd7;\n  else if (wc >= 0xfb00 && wc < 0xfb08)\n    c = mac_roman_pagefb[wc-0xfb00];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_romania.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacRomania\n */\n\nstatic const unsigned short mac_romania_2uni[128] = {\n  /* 0x80 */\n  0x00c4, 0x00c5, 0x00c7, 0x00c9, 0x00d1, 0x00d6, 0x00dc, 0x00e1,\n  0x00e0, 0x00e2, 0x00e4, 0x00e3, 0x00e5, 0x00e7, 0x00e9, 0x00e8,\n  /* 0x90 */\n  0x00ea, 0x00eb, 0x00ed, 0x00ec, 0x00ee, 0x00ef, 0x00f1, 0x00f3,\n  0x00f2, 0x00f4, 0x00f6, 0x00f5, 0x00fa, 0x00f9, 0x00fb, 0x00fc,\n  /* 0xa0 */\n  0x2020, 0x00b0, 0x00a2, 0x00a3, 0x00a7, 0x2022, 0x00b6, 0x00df,\n  0x00ae, 0x00a9, 0x2122, 0x00b4, 0x00a8, 0x2260, 0x0102, 0x015e,\n  /* 0xb0 */\n  0x221e, 0x00b1, 0x2264, 0x2265, 0x00a5, 0x00b5, 0x2202, 0x2211,\n  0x220f, 0x03c0, 0x222b, 0x00aa, 0x00ba, 0x2126, 0x0103, 0x015f,\n  /* 0xc0 */\n  0x00bf, 0x00a1, 0x00ac, 0x221a, 0x0192, 0x2248, 0x2206, 0x00ab,\n  0x00bb, 0x2026, 0x00a0, 0x00c0, 0x00c3, 0x00d5, 0x0152, 0x0153,\n  /* 0xd0 */\n  0x2013, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x25ca,\n  0x00ff, 0x0178, 0x2044, 0x00a4, 0x2039, 0x203a, 0x0162, 0x0163,\n  /* 0xe0 */\n  0x2021, 0x00b7, 0x201a, 0x201e, 0x2030, 0x00c2, 0x00ca, 0x00c1,\n  0x00cb, 0x00c8, 0x00cd, 0x00ce, 0x00cf, 0x00cc, 0x00d3, 0x00d4,\n  /* 0xf0 */\n  0xfffd, 0x00d2, 0x00da, 0x00db, 0x00d9, 0x0131, 0x02c6, 0x02dc,\n  0x00af, 0x02d8, 0x02d9, 0x02da, 0x00b8, 0x02dd, 0x02db, 0x02c7,\n};\n\nstatic int\nmac_romania_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = mac_romania_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char mac_romania_page00[248] = {\n  0xca, 0xc1, 0xa2, 0xa3, 0xdb, 0xb4, 0x00, 0xa4, /* 0xa0-0xa7 */\n  0xac, 0xa9, 0xbb, 0xc7, 0xc2, 0x00, 0xa8, 0xf8, /* 0xa8-0xaf */\n  0xa1, 0xb1, 0x00, 0x00, 0xab, 0xb5, 0xa6, 0xe1, /* 0xb0-0xb7 */\n  0xfc, 0x00, 0xbc, 0xc8, 0x00, 0x00, 0x00, 0xc0, /* 0xb8-0xbf */\n  0xcb, 0xe7, 0xe5, 0xcc, 0x80, 0x81, 0x00, 0x82, /* 0xc0-0xc7 */\n  0xe9, 0x83, 0xe6, 0xe8, 0xed, 0xea, 0xeb, 0xec, /* 0xc8-0xcf */\n  0x00, 0x84, 0xf1, 0xee, 0xef, 0xcd, 0x85, 0x00, /* 0xd0-0xd7 */\n  0x00, 0xf4, 0xf2, 0xf3, 0x86, 0x00, 0x00, 0xa7, /* 0xd8-0xdf */\n  0x88, 0x87, 0x89, 0x8b, 0x8a, 0x8c, 0x00, 0x8d, /* 0xe0-0xe7 */\n  0x8f, 0x8e, 0x90, 0x91, 0x93, 0x92, 0x94, 0x95, /* 0xe8-0xef */\n  0x00, 0x96, 0x98, 0x97, 0x99, 0x9b, 0x9a, 0xd6, /* 0xf0-0xf7 */\n  0x00, 0x9d, 0x9c, 0x9e, 0x9f, 0x00, 0x00, 0xd8, /* 0xf8-0xff */\n  /* 0x0100 */\n  0x00, 0x00, 0xae, 0xbe, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0xce, 0xcf, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0xbf, /* 0x58-0x5f */\n  0x00, 0x00, 0xde, 0xdf, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char mac_romania_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0xff, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0xf9, 0xfa, 0xfb, 0xfe, 0xf7, 0xfd, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char mac_romania_page20[56] = {\n  0x00, 0x00, 0x00, 0xd0, 0xd1, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd4, 0xd5, 0xe2, 0x00, 0xd2, 0xd3, 0xe3, 0x00, /* 0x18-0x1f */\n  0xa0, 0xe0, 0xa5, 0x00, 0x00, 0x00, 0xc9, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0xdc, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n};\nstatic const unsigned char mac_romania_page21[8] = {\n  0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0xbd, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char mac_romania_page22[104] = {\n  0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0xc6, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, /* 0x08-0x0f */\n  0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0xb0, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xad, 0x00, 0x00, 0x00, 0xb2, 0xb3, 0x00, 0x00, /* 0x60-0x67 */\n};\n\nstatic int\nmac_romania_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0198)\n    c = mac_romania_page00[wc-0x00a0];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = mac_romania_page02[wc-0x02c0];\n  else if (wc == 0x03c0)\n    c = 0xb9;\n  else if (wc >= 0x2010 && wc < 0x2048)\n    c = mac_romania_page20[wc-0x2010];\n  else if (wc >= 0x2120 && wc < 0x2128)\n    c = mac_romania_page21[wc-0x2120];\n  else if (wc >= 0x2200 && wc < 0x2268)\n    c = mac_romania_page22[wc-0x2200];\n  else if (wc == 0x25ca)\n    c = 0xd7;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_thai.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacThai\n */\n\nstatic const unsigned short mac_thai_2uni[128] = {\n  /* 0x80 */\n  0x00ab, 0x00bb, 0x2026, 0xf88c, 0xf88f, 0xf892, 0xf895, 0xf898,\n  0xf88b, 0xf88e, 0xf891, 0xf894, 0xf897, 0x201c, 0x201d, 0xf899,\n  /* 0x90 */\n  0xfffd, 0x2022, 0xf884, 0xf889, 0xf885, 0xf886, 0xf887, 0xf888,\n  0xf88a, 0xf88d, 0xf890, 0xf893, 0xf896, 0x2018, 0x2019, 0xfffd,\n  /* 0xa0 */\n  0x00a0, 0x0e01, 0x0e02, 0x0e03, 0x0e04, 0x0e05, 0x0e06, 0x0e07,\n  0x0e08, 0x0e09, 0x0e0a, 0x0e0b, 0x0e0c, 0x0e0d, 0x0e0e, 0x0e0f,\n  /* 0xb0 */\n  0x0e10, 0x0e11, 0x0e12, 0x0e13, 0x0e14, 0x0e15, 0x0e16, 0x0e17,\n  0x0e18, 0x0e19, 0x0e1a, 0x0e1b, 0x0e1c, 0x0e1d, 0x0e1e, 0x0e1f,\n  /* 0xc0 */\n  0x0e20, 0x0e21, 0x0e22, 0x0e23, 0x0e24, 0x0e25, 0x0e26, 0x0e27,\n  0x0e28, 0x0e29, 0x0e2a, 0x0e2b, 0x0e2c, 0x0e2d, 0x0e2e, 0x0e2f,\n  /* 0xd0 */\n  0x0e30, 0x0e31, 0x0e32, 0x0e33, 0x0e34, 0x0e35, 0x0e36, 0x0e37,\n  0x0e38, 0x0e39, 0x0e3a, 0xfeff, 0x200b, 0x2013, 0x2014, 0x0e3f,\n  /* 0xe0 */\n  0x0e40, 0x0e41, 0x0e42, 0x0e43, 0x0e44, 0x0e45, 0x0e46, 0x0e47,\n  0x0e48, 0x0e49, 0x0e4a, 0x0e4b, 0x0e4c, 0x0e4d, 0x2122, 0x0e4f,\n  /* 0xf0 */\n  0x0e50, 0x0e51, 0x0e52, 0x0e53, 0x0e54, 0x0e55, 0x0e56, 0x0e57,\n  0x0e58, 0x0e59, 0x00ae, 0x00a9, 0xfffd, 0xfffd, 0xfffd, 0xfffd,\n};\n\nstatic int\nmac_thai_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = mac_thai_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char mac_thai_page00[32] = {\n  0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0xfb, 0x00, 0x80, 0x00, 0x00, 0xfa, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char mac_thai_page0e[96] = {\n  0x00, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, /* 0x00-0x07 */\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, /* 0x08-0x0f */\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, /* 0x10-0x17 */\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, /* 0x18-0x1f */\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x20-0x27 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x28-0x2f */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0x30-0x37 */\n  0xd8, 0xd9, 0xda, 0x00, 0x00, 0x00, 0x00, 0xdf, /* 0x38-0x3f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x40-0x47 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0x00, 0xef, /* 0x48-0x4f */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0x50-0x57 */\n  0xf8, 0xf9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n};\nstatic const unsigned char mac_thai_page20[32] = {\n  0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0xdd, 0xde, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x9d, 0x9e, 0x00, 0x00, 0x8d, 0x8e, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x82, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char mac_thai_pagef8[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x92, 0x94, 0x95, 0x96, /* 0x80-0x87 */\n  0x97, 0x93, 0x98, 0x88, 0x83, 0x99, 0x89, 0x84, /* 0x88-0x8f */\n  0x9a, 0x8a, 0x85, 0x9b, 0x8b, 0x86, 0x9c, 0x8c, /* 0x90-0x97 */\n  0x87, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n};\n\nstatic int\nmac_thai_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = mac_thai_page00[wc-0x00a0];\n  else if (wc >= 0x0e00 && wc < 0x0e60)\n    c = mac_thai_page0e[wc-0x0e00];\n  else if (wc >= 0x2008 && wc < 0x2028)\n    c = mac_thai_page20[wc-0x2008];\n  else if (wc == 0x2122)\n    c = 0xee;\n  else if (wc >= 0xf880 && wc < 0xf8a0)\n    c = mac_thai_pagef8[wc-0xf880];\n  else if (wc == 0xfeff)\n    c = 0xdb;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_turkish.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacTurkish\n */\n\nstatic const unsigned short mac_turkish_2uni[128] = {\n  /* 0x80 */\n  0x00c4, 0x00c5, 0x00c7, 0x00c9, 0x00d1, 0x00d6, 0x00dc, 0x00e1,\n  0x00e0, 0x00e2, 0x00e4, 0x00e3, 0x00e5, 0x00e7, 0x00e9, 0x00e8,\n  /* 0x90 */\n  0x00ea, 0x00eb, 0x00ed, 0x00ec, 0x00ee, 0x00ef, 0x00f1, 0x00f3,\n  0x00f2, 0x00f4, 0x00f6, 0x00f5, 0x00fa, 0x00f9, 0x00fb, 0x00fc,\n  /* 0xa0 */\n  0x2020, 0x00b0, 0x00a2, 0x00a3, 0x00a7, 0x2022, 0x00b6, 0x00df,\n  0x00ae, 0x00a9, 0x2122, 0x00b4, 0x00a8, 0x2260, 0x00c6, 0x00d8,\n  /* 0xb0 */\n  0x221e, 0x00b1, 0x2264, 0x2265, 0x00a5, 0x00b5, 0x2202, 0x2211,\n  0x220f, 0x03c0, 0x222b, 0x00aa, 0x00ba, 0x2126, 0x00e6, 0x00f8,\n  /* 0xc0 */\n  0x00bf, 0x00a1, 0x00ac, 0x221a, 0x0192, 0x2248, 0x2206, 0x00ab,\n  0x00bb, 0x2026, 0x00a0, 0x00c0, 0x00c3, 0x00d5, 0x0152, 0x0153,\n  /* 0xd0 */\n  0x2013, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x25ca,\n  0x00ff, 0x0178, 0x011e, 0x011f, 0x0130, 0x0131, 0x015e, 0x015f,\n  /* 0xe0 */\n  0x2021, 0x00b7, 0x201a, 0x201e, 0x2030, 0x00c2, 0x00ca, 0x00c1,\n  0x00cb, 0x00c8, 0x00cd, 0x00ce, 0x00cf, 0x00cc, 0x00d3, 0x00d4,\n  /* 0xf0 */\n  0xfffd, 0x00d2, 0x00da, 0x00db, 0x00d9, 0xfffd, 0x02c6, 0x02dc,\n  0x00af, 0x02d8, 0x02d9, 0x02da, 0x00b8, 0x02dd, 0x02db, 0x02c7,\n};\n\nstatic int\nmac_turkish_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = mac_turkish_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char mac_turkish_page00[96] = {\n  0xca, 0xc1, 0xa2, 0xa3, 0x00, 0xb4, 0x00, 0xa4, /* 0xa0-0xa7 */\n  0xac, 0xa9, 0xbb, 0xc7, 0xc2, 0x00, 0xa8, 0xf8, /* 0xa8-0xaf */\n  0xa1, 0xb1, 0x00, 0x00, 0xab, 0xb5, 0xa6, 0xe1, /* 0xb0-0xb7 */\n  0xfc, 0x00, 0xbc, 0xc8, 0x00, 0x00, 0x00, 0xc0, /* 0xb8-0xbf */\n  0xcb, 0xe7, 0xe5, 0xcc, 0x80, 0x81, 0xae, 0x82, /* 0xc0-0xc7 */\n  0xe9, 0x83, 0xe6, 0xe8, 0xed, 0xea, 0xeb, 0xec, /* 0xc8-0xcf */\n  0x00, 0x84, 0xf1, 0xee, 0xef, 0xcd, 0x85, 0x00, /* 0xd0-0xd7 */\n  0xaf, 0xf4, 0xf2, 0xf3, 0x86, 0x00, 0x00, 0xa7, /* 0xd8-0xdf */\n  0x88, 0x87, 0x89, 0x8b, 0x8a, 0x8c, 0xbe, 0x8d, /* 0xe0-0xe7 */\n  0x8f, 0x8e, 0x90, 0x91, 0x93, 0x92, 0x94, 0x95, /* 0xe8-0xef */\n  0x00, 0x96, 0x98, 0x97, 0x99, 0x9b, 0x9a, 0xd6, /* 0xf0-0xf7 */\n  0xbf, 0x9d, 0x9c, 0x9e, 0x9f, 0x00, 0x00, 0xd8, /* 0xf8-0xff */\n};\nstatic const unsigned char mac_turkish_page01[128] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xda, 0xdb, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0xdc, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0xce, 0xcf, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0xdf, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char mac_turkish_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0xff, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0xf9, 0xfa, 0xfb, 0xfe, 0xf7, 0xfd, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char mac_turkish_page20[40] = {\n  0x00, 0x00, 0x00, 0xd0, 0xd1, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd4, 0xd5, 0xe2, 0x00, 0xd2, 0xd3, 0xe3, 0x00, /* 0x18-0x1f */\n  0xa0, 0xe0, 0xa5, 0x00, 0x00, 0x00, 0xc9, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n};\nstatic const unsigned char mac_turkish_page21[8] = {\n  0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0xbd, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char mac_turkish_page22[104] = {\n  0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0xc6, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, /* 0x08-0x0f */\n  0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0xb0, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xad, 0x00, 0x00, 0x00, 0xb2, 0xb3, 0x00, 0x00, /* 0x60-0x67 */\n};\n\nstatic int\nmac_turkish_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = mac_turkish_page00[wc-0x00a0];\n  else if (wc >= 0x0118 && wc < 0x0198)\n    c = mac_turkish_page01[wc-0x0118];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = mac_turkish_page02[wc-0x02c0];\n  else if (wc == 0x03c0)\n    c = 0xb9;\n  else if (wc >= 0x2010 && wc < 0x2038)\n    c = mac_turkish_page20[wc-0x2010];\n  else if (wc >= 0x2120 && wc < 0x2128)\n    c = mac_turkish_page21[wc-0x2120];\n  else if (wc >= 0x2200 && wc < 0x2268)\n    c = mac_turkish_page22[wc-0x2200];\n  else if (wc == 0x25ca)\n    c = 0xd7;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mac_ukraine.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MacUkraine\n */\n\nstatic const unsigned short mac_ukraine_2uni[128] = {\n  /* 0x80 */\n  0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,\n  0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f,\n  /* 0x90 */\n  0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,\n  0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f,\n  /* 0xa0 */\n  0x2020, 0x00b0, 0x0490, 0x00a3, 0x00a7, 0x2022, 0x00b6, 0x0406,\n  0x00ae, 0x00a9, 0x2122, 0x0402, 0x0452, 0x2260, 0x0403, 0x0453,\n  /* 0xb0 */\n  0x221e, 0x00b1, 0x2264, 0x2265, 0x0456, 0x00b5, 0x0491, 0x0408,\n  0x0404, 0x0454, 0x0407, 0x0457, 0x0409, 0x0459, 0x040a, 0x045a,\n  /* 0xc0 */\n  0x0458, 0x0405, 0x00ac, 0x221a, 0x0192, 0x2248, 0x2206, 0x00ab,\n  0x00bb, 0x2026, 0x00a0, 0x040b, 0x045b, 0x040c, 0x045c, 0x0455,\n  /* 0xd0 */\n  0x2013, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x201e,\n  0x040e, 0x045e, 0x040f, 0x045f, 0x2116, 0x0401, 0x0451, 0x044f,\n  /* 0xe0 */\n  0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,\n  0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f,\n  /* 0xf0 */\n  0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,\n  0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x00a4,\n};\n\nstatic int\nmac_ukraine_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c >= 0x80)\n    *pwc = (ucs4_t) mac_ukraine_2uni[c-0x80];\n  else\n    *pwc = (ucs4_t) c;\n  return 1;\n}\n\nstatic const unsigned char mac_ukraine_page00[32] = {\n  0xca, 0x00, 0x00, 0xa3, 0xff, 0x00, 0x00, 0xa4, /* 0xa0-0xa7 */\n  0x00, 0xa9, 0x00, 0xc7, 0xc2, 0x00, 0xa8, 0x00, /* 0xa8-0xaf */\n  0xa1, 0xb1, 0x00, 0x00, 0x00, 0xb5, 0xa6, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char mac_ukraine_page04[152] = {\n  0x00, 0xdd, 0xab, 0xae, 0xb8, 0xc1, 0xa7, 0xba, /* 0x00-0x07 */\n  0xb7, 0xbc, 0xbe, 0xcb, 0xcd, 0x00, 0xd8, 0xda, /* 0x08-0x0f */\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /* 0x10-0x17 */\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* 0x18-0x1f */\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, /* 0x20-0x27 */\n  0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, /* 0x28-0x2f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x30-0x37 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x38-0x3f */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0x40-0x47 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xdf, /* 0x48-0x4f */\n  0x00, 0xde, 0xac, 0xaf, 0xb9, 0xcf, 0xb4, 0xbb, /* 0x50-0x57 */\n  0xc0, 0xbd, 0xbf, 0xcc, 0xce, 0x00, 0xd9, 0xdb, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0xa2, 0xb6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char mac_ukraine_page20[24] = {\n  0x00, 0x00, 0x00, 0xd0, 0xd1, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0xd4, 0xd5, 0x00, 0x00, 0xd2, 0xd3, 0xd7, 0x00, /* 0x18-0x1f */\n  0xa0, 0x00, 0xa5, 0x00, 0x00, 0x00, 0xc9, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char mac_ukraine_page21[24] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char mac_ukraine_page22[104] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0xb0, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0xad, 0x00, 0x00, 0x00, 0xb2, 0xb3, 0x00, 0x00, /* 0x60-0x67 */\n};\n\nstatic int\nmac_ukraine_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = mac_ukraine_page00[wc-0x00a0];\n  else if (wc == 0x00f7)\n    c = 0xd6;\n  else if (wc == 0x0192)\n    c = 0xc4;\n  else if (wc >= 0x0400 && wc < 0x0498)\n    c = mac_ukraine_page04[wc-0x0400];\n  else if (wc >= 0x2010 && wc < 0x2028)\n    c = mac_ukraine_page20[wc-0x2010];\n  else if (wc >= 0x2110 && wc < 0x2128)\n    c = mac_ukraine_page21[wc-0x2110];\n  else if (wc >= 0x2200 && wc < 0x2268)\n    c = mac_ukraine_page22[wc-0x2200];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/mulelao.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * MULELAO-1\n */\n\nstatic const unsigned short mulelao_2uni[96] = {\n  /* 0xa0 */\n  0x00a0, 0x0e81, 0x0e82, 0xfffd, 0x0e84, 0xfffd, 0xfffd, 0x0e87,\n  0x0e88, 0xfffd, 0x0e8a, 0xfffd, 0xfffd, 0x0e8d, 0xfffd, 0xfffd,\n  /* 0xb0 */\n  0xfffd, 0xfffd, 0xfffd, 0xfffd, 0x0e94, 0x0e95, 0x0e96, 0x0e97,\n  0xfffd, 0x0e99, 0x0e9a, 0x0e9b, 0x0e9c, 0x0e9d, 0x0e9e, 0x0e9f,\n  /* 0xc0 */\n  0xfffd, 0x0ea1, 0x0ea2, 0x0ea3, 0xfffd, 0x0ea5, 0xfffd, 0x0ea7,\n  0xfffd, 0xfffd, 0x0eaa, 0x0eab, 0xfffd, 0x0ead, 0x0eae, 0x0eaf,\n  /* 0xd0 */\n  0x0eb0, 0x0eb1, 0x0eb2, 0x0eb3, 0x0eb4, 0x0eb5, 0x0eb6, 0x0eb7,\n  0x0eb8, 0x0eb9, 0xfffd, 0x0ebb, 0x0ebc, 0x0ebd, 0xfffd, 0xfffd,\n  /* 0xe0 */\n  0x0ec0, 0x0ec1, 0x0ec2, 0x0ec3, 0x0ec4, 0xfffd, 0x0ec6, 0xfffd,\n  0x0ec8, 0x0ec9, 0x0eca, 0x0ecb, 0x0ecc, 0x0ecd, 0xfffd, 0xfffd,\n  /* 0xf0 */\n  0x0ed0, 0x0ed1, 0x0ed2, 0x0ed3, 0x0ed4, 0x0ed5, 0x0ed6, 0x0ed7,\n  0x0ed8, 0x0ed9, 0xfffd, 0xfffd, 0x0edc, 0x0edd, 0xfffd, 0xfffd,\n};\n\nstatic int\nmulelao_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0xa0) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = mulelao_2uni[c-0xa0];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char mulelao_page0e[96] = {\n  0x00, 0xa1, 0xa2, 0x00, 0xa4, 0x00, 0x00, 0xa7, /* 0x80-0x87 */\n  0xa8, 0x00, 0xaa, 0x00, 0x00, 0xad, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x00, 0x00, 0xb4, 0xb5, 0xb6, 0xb7, /* 0x90-0x97 */\n  0x00, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, /* 0x98-0x9f */\n  0x00, 0xc1, 0xc2, 0xc3, 0x00, 0xc5, 0x00, 0xc7, /* 0xa0-0xa7 */\n  0x00, 0x00, 0xca, 0xcb, 0x00, 0xcd, 0xce, 0xcf, /* 0xa8-0xaf */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0xb0-0xb7 */\n  0xd8, 0xd9, 0x00, 0xdb, 0xdc, 0xdd, 0x00, 0x00, /* 0xb8-0xbf */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0x00, 0xe6, 0x00, /* 0xc0-0xc7 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0x00, 0x00, /* 0xc8-0xcf */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0xd0-0xd7 */\n  0xf8, 0xf9, 0x00, 0x00, 0xfc, 0xfd, 0x00, 0x00, /* 0xd8-0xdf */\n};\n\nstatic int\nmulelao_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x00a0) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc == 0x00a0)\n    c = 0xa0;\n  else if (wc >= 0x0e80 && wc < 0x0ee0)\n    c = mulelao_page0e[wc-0x0e80];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/nextstep.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * NEXTSTEP\n */\n\nstatic const unsigned short nextstep_2uni[128] = {\n  /* 0x80 */\n  0x00a0, 0x00c0, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c7,\n  0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf,\n  /* 0x90 */\n  0x00d0, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x00d9,\n  0x00da, 0x00db, 0x00dc, 0x00dd, 0x00de, 0x00b5, 0x00d7, 0x00f7,\n  /* 0xa0 */\n  0x00a9, 0x00a1, 0x00a2, 0x00a3, 0x2044, 0x00a5, 0x0192, 0x00a7,\n  0x00a4, 0x2019, 0x201c, 0x00ab, 0x2039, 0x203a, 0xfb01, 0xfb02,\n  /* 0xb0 */\n  0x00ae, 0x2013, 0x2020, 0x2021, 0x00b7, 0x00a6, 0x00b6, 0x2022,\n  0x201a, 0x201e, 0x201d, 0x00bb, 0x2026, 0x2030, 0x00ac, 0x00bf,\n  /* 0xc0 */\n  0x00b9, 0x02cb, 0x00b4, 0x02c6, 0x02dc, 0x00af, 0x02d8, 0x02d9,\n  0x00a8, 0x00b2, 0x02da, 0x00b8, 0x00b3, 0x02dd, 0x02db, 0x02c7,\n  /* 0xd0 */\n  0x2014, 0x00b1, 0x00bc, 0x00bd, 0x00be, 0x00e0, 0x00e1, 0x00e2,\n  0x00e3, 0x00e4, 0x00e5, 0x00e7, 0x00e8, 0x00e9, 0x00ea, 0x00eb,\n  /* 0xe0 */\n  0x00ec, 0x00c6, 0x00ed, 0x00aa, 0x00ee, 0x00ef, 0x00f0, 0x00f1,\n  0x0141, 0x00d8, 0x0152, 0x00ba, 0x00f2, 0x00f3, 0x00f4, 0x00f5,\n  /* 0xf0 */\n  0x00f6, 0x00e6, 0x00f9, 0x00fa, 0x00fb, 0x0131, 0x00fc, 0x00fd,\n  0x0142, 0x00f8, 0x0153, 0x00df, 0x00fe, 0x00ff, 0xfffd, 0xfffd,\n};\n\nstatic int\nnextstep_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = nextstep_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char nextstep_page00[96] = {\n  0x80, 0xa1, 0xa2, 0xa3, 0xa8, 0xa5, 0xb5, 0xa7, /* 0xa0-0xa7 */\n  0xc8, 0xa0, 0xe3, 0xab, 0xbe, 0x00, 0xb0, 0xc5, /* 0xa8-0xaf */\n  0x00, 0xd1, 0xc9, 0xcc, 0xc2, 0x9d, 0xb6, 0xb4, /* 0xb0-0xb7 */\n  0xcb, 0xc0, 0xeb, 0xbb, 0xd2, 0xd3, 0xd4, 0xbf, /* 0xb8-0xbf */\n  0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0xe1, 0x87, /* 0xc0-0xc7 */\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* 0xc8-0xcf */\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x9e, /* 0xd0-0xd7 */\n  0xe9, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0xfb, /* 0xd8-0xdf */\n  0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xf1, 0xdb, /* 0xe0-0xe7 */\n  0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe2, 0xe4, 0xe5, /* 0xe8-0xef */\n  0xe6, 0xe7, 0xec, 0xed, 0xee, 0xef, 0xf0, 0x9f, /* 0xf0-0xf7 */\n  0xf9, 0xf2, 0xf3, 0xf4, 0xf6, 0xf7, 0xfc, 0xfd, /* 0xf8-0xff */\n};\nstatic const unsigned char nextstep_page01[104] = {\n  0x00, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0xe8, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0xea, 0xfa, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n};\nstatic const unsigned char nextstep_page02[32] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xcf, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0xc6, 0xc7, 0xca, 0xce, 0xc4, 0xcd, 0x00, 0x00, /* 0xd8-0xdf */\n};\nstatic const unsigned char nextstep_page20[56] = {\n  0x00, 0x00, 0x00, 0xb1, 0xd0, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0xa9, 0xb8, 0x00, 0xaa, 0xba, 0xb9, 0x00, /* 0x18-0x1f */\n  0xb2, 0xb3, 0xb7, 0x00, 0x00, 0x00, 0xbc, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0xac, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n};\nstatic const unsigned char nextstep_pagefb[8] = {\n  0x00, 0xae, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n};\n\nstatic int\nnextstep_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x0100)\n    c = nextstep_page00[wc-0x00a0];\n  else if (wc >= 0x0130 && wc < 0x0198)\n    c = nextstep_page01[wc-0x0130];\n  else if (wc >= 0x02c0 && wc < 0x02e0)\n    c = nextstep_page02[wc-0x02c0];\n  else if (wc >= 0x2010 && wc < 0x2048)\n    c = nextstep_page20[wc-0x2010];\n  else if (wc >= 0xfb00 && wc < 0xfb08)\n    c = nextstep_pagefb[wc-0xfb00];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/pt154.h",
    "content": "/*\n * Copyright (C) 1999-2005, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * PT154\n */\n\nstatic const unsigned short pt154_2uni[64] = {\n  /* 0x80 */\n  0x0496, 0x0492, 0x04ee, 0x0493, 0x201e, 0x2026, 0x04b6, 0x04ae,\n  0x04b2, 0x04af, 0x04a0, 0x04e2, 0x04a2, 0x049a, 0x04ba, 0x04b8,\n  /* 0x90 */\n  0x0497, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0x04b3, 0x04b7, 0x04a1, 0x04e3, 0x04a3, 0x049b, 0x04bb, 0x04b9,\n  /* 0xa0 */\n  0x00a0, 0x040e, 0x045e, 0x0408, 0x04e8, 0x0498, 0x04b0, 0x00a7,\n  0x0401, 0x00a9, 0x04d8, 0x00ab, 0x00ac, 0x04ef, 0x00ae, 0x049c,\n  /* 0xb0 */\n  0x00b0, 0x04b1, 0x0406, 0x0456, 0x0499, 0x04e9, 0x00b6, 0x00b7,\n  0x0451, 0x2116, 0x04d9, 0x00bb, 0x0458, 0x04aa, 0x04ab, 0x049d,\n};\n\nstatic int\npt154_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else if (c >= 0xc0)\n    *pwc = (ucs4_t) c + 0x0350;\n  else\n    *pwc = (ucs4_t) pt154_2uni[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char pt154_page00[32] = {\n  0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa7, /* 0xa0-0xa7 */\n  0x00, 0xa9, 0x00, 0xab, 0xac, 0x00, 0xae, 0x00, /* 0xa8-0xaf */\n  0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char pt154_page04[240] = {\n  0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0xb2, 0x00, /* 0x00-0x07 */\n  0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x00, /* 0x08-0x0f */\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x10-0x17 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x18-0x1f */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0x20-0x27 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, /* 0x28-0x2f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x30-0x37 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x38-0x3f */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0x40-0x47 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff, /* 0x48-0x4f */\n  0x00, 0xb8, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x00, /* 0x50-0x57 */\n  0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa2, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x81, 0x83, 0x00, 0x00, 0x80, 0x90, /* 0x90-0x97 */\n  0xa5, 0xb4, 0x8d, 0x9d, 0xaf, 0xbf, 0x00, 0x00, /* 0x98-0x9f */\n  0x8a, 0x9a, 0x8c, 0x9c, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0xbd, 0xbe, 0x00, 0x00, 0x87, 0x89, /* 0xa8-0xaf */\n  0xa6, 0xb1, 0x88, 0x98, 0x00, 0x00, 0x86, 0x99, /* 0xb0-0xb7 */\n  0x8f, 0x9f, 0x8e, 0x9e, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0xaa, 0xba, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0xa4, 0xb5, 0x00, 0x00, 0x00, 0x00, 0x82, 0xad, /* 0xe8-0xef */\n};\nstatic const unsigned char pt154_page20[24] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x00, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n};\n\nstatic int\npt154_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = pt154_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x04f0)\n    c = pt154_page04[wc-0x0400];\n  else if (wc >= 0x2010 && wc < 0x2028)\n    c = pt154_page20[wc-0x2010];\n  else if (wc == 0x2116)\n    c = 0xb9;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/relocatable.c",
    "content": "/* Provide relocatable packages.\n   Copyright (C) 2003-2006, 2008-2012 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2003.\n\n   This program is free software; you can redistribute it and/or modify it\n   under the terms of the GNU Library General Public License as published\n   by the Free Software Foundation; either version 2, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n\n/* Tell glibc's <stdio.h> to provide a prototype for getline().\n   This must come before <config.h> because <config.h> may include\n   <features.h>, and once <features.h> has been included, it's too late.  */\n#ifndef _GNU_SOURCE\n# define _GNU_SOURCE 1\n#endif\n\n#define _GL_USE_STDLIB_ALLOC 1\n#include <config.h>\n\n/* Specification.  */\n#include \"relocatable.h\"\n\n#if ENABLE_RELOCATABLE\n\n#include <stddef.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n\n#ifdef NO_XMALLOC\n# define xmalloc malloc\n#else\n# include \"xalloc.h\"\n#endif\n\n#if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__\n# define WIN32_LEAN_AND_MEAN\n# include <windows.h>\n#endif\n\n#ifdef __EMX__\n# define INCL_DOS\n# include <os2.h>\n\n# define strcmp  stricmp\n# define strncmp strnicmp\n#endif\n\n#if DEPENDS_ON_LIBCHARSET\n# include <libcharset.h>\n#endif\n#if DEPENDS_ON_LIBICONV && HAVE_ICONV\n# include <iconv.h>\n#endif\n#if DEPENDS_ON_LIBINTL && ENABLE_NLS\n# include <libintl.h>\n#endif\n\n/* Faked cheap 'bool'.  */\n#undef bool\n#undef false\n#undef true\n#define bool int\n#define false 0\n#define true 1\n\n/* Pathname support.\n   ISSLASH(C)           tests whether C is a directory separator character.\n   IS_PATH_WITH_DIR(P)  tests whether P contains a directory specification.\n */\n#if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || defined __EMX__ || defined __DJGPP__\n  /* Native Windows, OS/2, DOS */\n# define ISSLASH(C) ((C) == '/' || (C) == '\\\\')\n# define HAS_DEVICE(P) \\\n    ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \\\n     && (P)[1] == ':')\n# define IS_PATH_WITH_DIR(P) \\\n    (strchr (P, '/') != NULL || strchr (P, '\\\\') != NULL || HAS_DEVICE (P))\n# define FILE_SYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0)\n#else\n  /* Unix */\n# define ISSLASH(C) ((C) == '/')\n# define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL)\n# define FILE_SYSTEM_PREFIX_LEN(P) 0\n#endif\n\n/* Whether to enable the more costly support for relocatable libraries.\n   It allows libraries to be have been installed with a different original\n   prefix than the program.  But it is quite costly, especially on Cygwin\n   platforms, see below.  Therefore we enable it by default only on native\n   Windows platforms.  */\n#ifndef ENABLE_COSTLY_RELOCATABLE\n# if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__\n#  define ENABLE_COSTLY_RELOCATABLE 1\n# else\n#  define ENABLE_COSTLY_RELOCATABLE 0\n# endif\n#endif\n\n/* Original installation prefix.  */\nstatic char *orig_prefix;\nstatic size_t orig_prefix_len;\n/* Current installation prefix.  */\nstatic char *curr_prefix;\nstatic size_t curr_prefix_len;\n/* These prefixes do not end in a slash.  Anything that will be concatenated\n   to them must start with a slash.  */\n\n/* Sets the original and the current installation prefix of this module.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nstatic void\nset_this_relocation_prefix (const char *orig_prefix_arg,\n                            const char *curr_prefix_arg)\n{\n  if (orig_prefix_arg != NULL && curr_prefix_arg != NULL\n      /* Optimization: if orig_prefix and curr_prefix are equal, the\n         relocation is a nop.  */\n      && strcmp (orig_prefix_arg, curr_prefix_arg) != 0)\n    {\n      /* Duplicate the argument strings.  */\n      char *memory;\n\n      orig_prefix_len = strlen (orig_prefix_arg);\n      curr_prefix_len = strlen (curr_prefix_arg);\n      memory = (char *) xmalloc (orig_prefix_len + 1 + curr_prefix_len + 1);\n#ifdef NO_XMALLOC\n      if (memory != NULL)\n#endif\n        {\n          memcpy (memory, orig_prefix_arg, orig_prefix_len + 1);\n          orig_prefix = memory;\n          memory += orig_prefix_len + 1;\n          memcpy (memory, curr_prefix_arg, curr_prefix_len + 1);\n          curr_prefix = memory;\n          return;\n        }\n    }\n  orig_prefix = NULL;\n  curr_prefix = NULL;\n  /* Don't worry about wasted memory here - this function is usually only\n     called once.  */\n}\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nvoid\nset_relocation_prefix (const char *orig_prefix_arg, const char *curr_prefix_arg)\n{\n  set_this_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n\n  /* Now notify all dependent libraries.  */\n#if DEPENDS_ON_LIBCHARSET\n  libcharset_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n#endif\n#if DEPENDS_ON_LIBICONV && HAVE_ICONV && _LIBICONV_VERSION >= 0x0109\n  libiconv_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n#endif\n#if DEPENDS_ON_LIBINTL && ENABLE_NLS && defined libintl_set_relocation_prefix\n  libintl_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n#endif\n}\n\n#if !defined IN_LIBRARY || (defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE)\n\n/* Convenience function:\n   Computes the current installation prefix, based on the original\n   installation prefix, the original installation directory of a particular\n   file, and the current pathname of this file.\n   Returns it, freshly allocated.  Returns NULL upon failure.  */\n#ifdef IN_LIBRARY\n#define compute_curr_prefix local_compute_curr_prefix\nstatic\n#endif\nchar *\ncompute_curr_prefix (const char *orig_installprefix,\n                     const char *orig_installdir,\n                     const char *curr_pathname)\n{\n  char *curr_installdir;\n  const char *rel_installdir;\n\n  if (curr_pathname == NULL)\n    return NULL;\n\n  /* Determine the relative installation directory, relative to the prefix.\n     This is simply the difference between orig_installprefix and\n     orig_installdir.  */\n  if (strncmp (orig_installprefix, orig_installdir, strlen (orig_installprefix))\n      != 0)\n    /* Shouldn't happen - nothing should be installed outside $(prefix).  */\n    return NULL;\n  rel_installdir = orig_installdir + strlen (orig_installprefix);\n\n  /* Determine the current installation directory.  */\n  {\n    const char *p_base = curr_pathname + FILE_SYSTEM_PREFIX_LEN (curr_pathname);\n    const char *p = curr_pathname + strlen (curr_pathname);\n    char *q;\n\n    while (p > p_base)\n      {\n        p--;\n        if (ISSLASH (*p))\n          break;\n      }\n\n    q = (char *) xmalloc (p - curr_pathname + 1);\n#ifdef NO_XMALLOC\n    if (q == NULL)\n      return NULL;\n#endif\n    memcpy (q, curr_pathname, p - curr_pathname);\n    q[p - curr_pathname] = '\\0';\n    curr_installdir = q;\n  }\n\n  /* Compute the current installation prefix by removing the trailing\n     rel_installdir from it.  */\n  {\n    const char *rp = rel_installdir + strlen (rel_installdir);\n    const char *cp = curr_installdir + strlen (curr_installdir);\n    const char *cp_base =\n      curr_installdir + FILE_SYSTEM_PREFIX_LEN (curr_installdir);\n\n    while (rp > rel_installdir && cp > cp_base)\n      {\n        bool same = false;\n        const char *rpi = rp;\n        const char *cpi = cp;\n\n        while (rpi > rel_installdir && cpi > cp_base)\n          {\n            rpi--;\n            cpi--;\n            if (ISSLASH (*rpi) || ISSLASH (*cpi))\n              {\n                if (ISSLASH (*rpi) && ISSLASH (*cpi))\n                  same = true;\n                break;\n              }\n            /* Do case-insensitive comparison if the file system is always or\n               often case-insensitive.  It's better to accept the comparison\n               if the difference is only in case, rather than to fail.  */\n#if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__\n            /* Native Windows, Cygwin, OS/2, DOS - case insignificant file system */\n            if ((*rpi >= 'a' && *rpi <= 'z' ? *rpi - 'a' + 'A' : *rpi)\n                != (*cpi >= 'a' && *cpi <= 'z' ? *cpi - 'a' + 'A' : *cpi))\n              break;\n#else\n            if (*rpi != *cpi)\n              break;\n#endif\n          }\n        if (!same)\n          break;\n        /* The last pathname component was the same.  opi and cpi now point\n           to the slash before it.  */\n        rp = rpi;\n        cp = cpi;\n      }\n\n    if (rp > rel_installdir)\n      {\n        /* Unexpected: The curr_installdir does not end with rel_installdir.  */\n        free (curr_installdir);\n        return NULL;\n      }\n\n    {\n      size_t curr_prefix_len = cp - curr_installdir;\n      char *curr_prefix;\n\n      curr_prefix = (char *) xmalloc (curr_prefix_len + 1);\n#ifdef NO_XMALLOC\n      if (curr_prefix == NULL)\n        {\n          free (curr_installdir);\n          return NULL;\n        }\n#endif\n      memcpy (curr_prefix, curr_installdir, curr_prefix_len);\n      curr_prefix[curr_prefix_len] = '\\0';\n\n      free (curr_installdir);\n\n      return curr_prefix;\n    }\n  }\n}\n\n#endif /* !IN_LIBRARY || PIC */\n\n#if defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE\n\n/* Full pathname of shared library, or NULL.  */\nstatic char *shared_library_fullname;\n\n#if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__\n/* Native Windows only.\n   On Cygwin, it is better to use the Cygwin provided /proc interface, than\n   to use native Windows API and cygwin_conv_to_posix_path, because it\n   supports longer file names\n   (see <http://cygwin.com/ml/cygwin/2011-01/msg00410.html>).  */\n\n/* Determine the full pathname of the shared library when it is loaded.  */\n\nBOOL WINAPI\nDllMain (HINSTANCE module_handle, DWORD event, LPVOID reserved)\n{\n  (void) reserved;\n\n  if (event == DLL_PROCESS_ATTACH)\n    {\n      /* The DLL is being loaded into an application's address range.  */\n      static char location[MAX_PATH];\n\n      if (!GetModuleFileName (module_handle, location, sizeof (location)))\n        /* Shouldn't happen.  */\n        return FALSE;\n\n      if (!IS_PATH_WITH_DIR (location))\n        /* Shouldn't happen.  */\n        return FALSE;\n\n      shared_library_fullname = strdup (location);\n    }\n\n  return TRUE;\n}\n\n#elif defined __EMX__\n\nextern int  _CRT_init (void);\nextern void _CRT_term (void);\nextern void __ctordtorInit (void);\nextern void __ctordtorTerm (void);\n\nunsigned long _System\n_DLL_InitTerm (unsigned long hModule, unsigned long ulFlag)\n{\n  static char location[CCHMAXPATH];\n\n  switch (ulFlag)\n    {\n      case 0:\n        if (_CRT_init () == -1)\n          return 0;\n\n        __ctordtorInit();\n\n        /* See http://cyberkinetica.homeunix.net/os2tk45/cp1/1247_L2H_DosQueryModuleNameSy.html\n           for specification of DosQueryModuleName(). */\n        if (DosQueryModuleName (hModule, sizeof (location), location))\n          return 0;\n\n        _fnslashify (location);\n        shared_library_fullname = strdup (location);\n        break;\n\n      case 1:\n        __ctordtorTerm();\n\n        _CRT_term ();\n        break;\n    }\n\n  return 1;\n}\n\n#else /* Unix */\n\nstatic void\nfind_shared_library_fullname ()\n{\n#if (defined __linux__ && (__GLIBC__ >= 2 || defined __UCLIBC__)) || defined __CYGWIN__\n  /* Linux has /proc/self/maps. glibc 2 and uClibc have the getline()\n     function.\n     Cygwin >= 1.5 has /proc/self/maps and the getline() function too.\n     But it is costly: ca. 0.3 ms on Linux, 3 ms on Cygwin 1.5, and 5 ms on\n     Cygwin 1.7.  */\n  FILE *fp;\n\n  /* Open the current process' maps file.  It describes one VMA per line.  */\n  fp = fopen (\"/proc/self/maps\", \"r\");\n  if (fp)\n    {\n      unsigned long address = (unsigned long) &find_shared_library_fullname;\n      for (;;)\n        {\n          unsigned long start, end;\n          int c;\n\n          if (fscanf (fp, \"%lx-%lx\", &start, &end) != 2)\n            break;\n          if (address >= start && address <= end - 1)\n            {\n              /* Found it.  Now see if this line contains a filename.  */\n              while (c = getc (fp), c != EOF && c != '\\n' && c != '/')\n                continue;\n              if (c == '/')\n                {\n                  size_t size;\n                  int len;\n\n                  ungetc (c, fp);\n                  shared_library_fullname = NULL; size = 0;\n                  len = getline (&shared_library_fullname, &size, fp);\n                  if (len >= 0)\n                    {\n                      /* Success: filled shared_library_fullname.  */\n                      if (len > 0 && shared_library_fullname[len - 1] == '\\n')\n                        shared_library_fullname[len - 1] = '\\0';\n                    }\n                }\n              break;\n            }\n          while (c = getc (fp), c != EOF && c != '\\n')\n            continue;\n        }\n      fclose (fp);\n    }\n#endif\n}\n\n#endif /* Native Windows / EMX / Unix */\n\n/* Return the full pathname of the current shared library.\n   Return NULL if unknown.\n   Guaranteed to work only on Linux, EMX, Cygwin, and native Windows.  */\nstatic char *\nget_shared_library_fullname ()\n{\n#if (!((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) \\\n     && !defined __EMX__)\n  static bool tried_find_shared_library_fullname;\n  if (!tried_find_shared_library_fullname)\n    {\n      find_shared_library_fullname ();\n      tried_find_shared_library_fullname = true;\n    }\n#endif\n  return shared_library_fullname;\n}\n\n#endif /* PIC */\n\n/* Returns the pathname, relocated according to the current installation\n   directory.\n   The returned string is either PATHNAME unmodified or a freshly allocated\n   string that you can free with free() after casting it to 'char *'.  */\nconst char *\nrelocate (const char *pathname)\n{\n#if defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE\n  static int initialized;\n\n  /* Initialization code for a shared library.  */\n  if (!initialized)\n    {\n      /* At this point, orig_prefix and curr_prefix likely have already been\n         set through the main program's set_program_name_and_installdir\n         function.  This is sufficient in the case that the library has\n         initially been installed in the same orig_prefix.  But we can do\n         better, to also cover the cases that 1. it has been installed\n         in a different prefix before being moved to orig_prefix and (later)\n         to curr_prefix, 2. unlike the program, it has not moved away from\n         orig_prefix.  */\n      const char *orig_installprefix = INSTALLPREFIX;\n      const char *orig_installdir = INSTALLDIR;\n      char *curr_prefix_better;\n\n      curr_prefix_better =\n        compute_curr_prefix (orig_installprefix, orig_installdir,\n                             get_shared_library_fullname ());\n\n      set_relocation_prefix (orig_installprefix,\n                             curr_prefix_better != NULL\n                             ? curr_prefix_better\n                             : curr_prefix);\n\n      if (curr_prefix_better != NULL)\n        free (curr_prefix_better);\n\n      initialized = 1;\n    }\n#endif\n\n  /* Note: It is not necessary to perform case insensitive comparison here,\n     even for DOS-like file systems, because the pathname argument was\n     typically created from the same Makefile variable as orig_prefix came\n     from.  */\n  if (orig_prefix != NULL && curr_prefix != NULL\n      && strncmp (pathname, orig_prefix, orig_prefix_len) == 0)\n    {\n      if (pathname[orig_prefix_len] == '\\0')\n        {\n          /* pathname equals orig_prefix.  */\n          char *result = (char *) xmalloc (strlen (curr_prefix) + 1);\n\n#ifdef NO_XMALLOC\n          if (result != NULL)\n#endif\n            {\n              strcpy (result, curr_prefix);\n              return result;\n            }\n        }\n      else if (ISSLASH (pathname[orig_prefix_len]))\n        {\n          /* pathname starts with orig_prefix.  */\n          const char *pathname_tail = &pathname[orig_prefix_len];\n          char *result =\n            (char *) xmalloc (curr_prefix_len + strlen (pathname_tail) + 1);\n\n#ifdef NO_XMALLOC\n          if (result != NULL)\n#endif\n            {\n              memcpy (result, curr_prefix, curr_prefix_len);\n              strcpy (result + curr_prefix_len, pathname_tail);\n              return result;\n            }\n        }\n    }\n\n#ifdef __EMX__\n# ifdef __KLIBC__\n#  undef strncmp\n\n  if (pathname && strncmp (pathname, \"/@unixroot\", 10) == 0\n      && (pathname[10] == '\\0' || pathname[10] == '/' || pathname[10] == '\\\\'))\n    {\n      /* kLIBC itself processes /@unixroot prefix */\n\n      return pathname;\n    }\n  else\n# endif\n  if (pathname && ISSLASH (pathname[0]))\n    {\n      const char *unixroot = getenv (\"UNIXROOT\");\n\n      if (unixroot && HAS_DEVICE (unixroot) && !unixroot[2])\n        {\n          char *result = (char *) xmalloc (2 + strlen (pathname) + 1);\n#ifdef NO_XMALLOC\n          if (result != NULL)\n#endif\n            {\n              strcpy (result, unixroot);\n              strcpy (result + 2, pathname);\n              return result;\n            }\n        }\n    }\n#endif\n\n  /* Nothing to relocate.  */\n  return pathname;\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/relocatable.h",
    "content": "/* Provide relocatable packages.\n   Copyright (C) 2003, 2005, 2008-2011 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2003.\n\n   This program is free software; you can redistribute it and/or modify it\n   under the terms of the GNU Library General Public License as published\n   by the Free Software Foundation; either version 2, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _RELOCATABLE_H\n#define _RELOCATABLE_H\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* This can be enabled through the configure --enable-relocatable option.  */\n#if ENABLE_RELOCATABLE\n\n/* When building a DLL, we must export some functions.  Note that because\n   this is a private .h file, we don't need to use __declspec(dllimport)\n   in any case.  */\n#if HAVE_VISIBILITY && BUILDING_DLL\n# define RELOCATABLE_DLL_EXPORTED __attribute__((__visibility__(\"default\")))\n#elif defined _MSC_VER && BUILDING_DLL\n# define RELOCATABLE_DLL_EXPORTED __declspec(dllexport)\n#else\n# define RELOCATABLE_DLL_EXPORTED\n#endif\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nextern RELOCATABLE_DLL_EXPORTED void\n       set_relocation_prefix (const char *orig_prefix,\n                              const char *curr_prefix);\n\n/* Returns the pathname, relocated according to the current installation\n   directory.\n   The returned string is either PATHNAME unmodified or a freshly allocated\n   string that you can free with free() after casting it to 'char *'.  */\nextern const char * relocate (const char *pathname);\n\n/* Memory management: relocate() potentially allocates memory, because it has\n   to construct a fresh pathname.  If this is a problem because your program\n   calls relocate() frequently, think about caching the result.  Or free the\n   return value if it was different from the argument pathname.  */\n\n/* Convenience function:\n   Computes the current installation prefix, based on the original\n   installation prefix, the original installation directory of a particular\n   file, and the current pathname of this file.\n   Returns it, freshly allocated.  Returns NULL upon failure.  */\nextern char * compute_curr_prefix (const char *orig_installprefix,\n                                   const char *orig_installdir,\n                                   const char *curr_pathname);\n\n#else\n\n/* By default, we use the hardwired pathnames.  */\n#define relocate(pathname) (pathname)\n\n#endif\n\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* _RELOCATABLE_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/relocatable.lo",
    "content": "# relocatable.lo - a libtool object file\n# Generated by libtool (GNU libtool) 2.4.6\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# Name of the PIC object.\npic_object='.libs/relocatable.o'\n\n# Name of the non-PIC object\nnon_pic_object=none\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/riscos1.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * RISCOS-LATIN1\n */\n\nstatic const unsigned short riscos1_2uni[32] = {\n  /* 0x80 */\n  0x221a, 0x0174, 0x0175, 0x0083, 0x2573, 0x0176, 0x0177, 0x0087,\n  0x21e6, 0x21e8, 0x21e9, 0x21e7, 0x2026, 0x2122, 0x2030, 0x2022,\n  /* 0x90 */\n  0x2018, 0x2019, 0x2039, 0x203a, 0x201c, 0x201d, 0x201e, 0x2013,\n  0x2014, 0x2212, 0x0152, 0x0153, 0x2020, 0x2021, 0xfb01, 0xfb02,\n};\n\nstatic int\nriscos1_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c >= 0x80 && c < 0xa0)\n    *pwc = (ucs4_t) riscos1_2uni[c-0x80];\n  else\n    *pwc = (ucs4_t) c;\n  return 1;\n}\n\nstatic const unsigned char riscos1_page01[40] = {\n  0x00, 0x00, 0x9a, 0x9b, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x81, 0x82, 0x85, 0x86, /* 0x70-0x77 */\n};\nstatic const unsigned char riscos1_page20[48] = {\n  0x00, 0x00, 0x00, 0x97, 0x98, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x90, 0x91, 0x00, 0x00, 0x94, 0x95, 0x96, 0x00, /* 0x18-0x1f */\n  0x9c, 0x9d, 0x8f, 0x00, 0x00, 0x00, 0x8c, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x92, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\nstatic const unsigned char riscos1_page21[16] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x8b, /* 0xe0-0xe7 */\n  0x89, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n};\nstatic const unsigned char riscos1_page22[16] = {\n  0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n};\n\nstatic int\nriscos1_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080 || wc == 0x0083 || wc == 0x0087 || (wc >= 0x00a0 && wc < 0x0100)) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x0150 && wc < 0x0178)\n    c = riscos1_page01[wc-0x0150];\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = riscos1_page20[wc-0x2010];\n  else if (wc == 0x2122)\n    c = 0x8d;\n  else if (wc >= 0x21e0 && wc < 0x21f0)\n    c = riscos1_page21[wc-0x21e0];\n  else if (wc >= 0x2210 && wc < 0x2220)\n    c = riscos1_page22[wc-0x2210];\n  else if (wc == 0x2573)\n    c = 0x84;\n  else if (wc >= 0xfb01 && wc < 0xfb03)\n    c = wc-0xfa63;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/rk1048.h",
    "content": "/*\n * Copyright (C) 1999-2007, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * RK1048\n */\n\nstatic const unsigned short rk1048_2uni[128] = {\n  /* 0x80 */\n  0x0402, 0x0403, 0x201a, 0x0453, 0x201e, 0x2026, 0x2020, 0x2021,\n  0x20ac, 0x2030, 0x0409, 0x2039, 0x040a, 0x049a, 0x04ba, 0x040f,\n  /* 0x90 */\n  0x0452, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014,\n  0xfffd, 0x2122, 0x0459, 0x203a, 0x045a, 0x049b, 0x04bb, 0x045f,\n  /* 0xa0 */\n  0x00a0, 0x04b0, 0x04b1, 0x04d8, 0x00a4, 0x04e8, 0x00a6, 0x00a7,\n  0x0401, 0x00a9, 0x0492, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x04ae,\n  /* 0xb0 */\n  0x00b0, 0x00b1, 0x0406, 0x0456, 0x04e9, 0x00b5, 0x00b6, 0x00b7,\n  0x0451, 0x2116, 0x0493, 0x00bb, 0x04d9, 0x04a2, 0x04a3, 0x04af,\n  /* 0xc0 */\n  0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,\n  0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f,\n  /* 0xd0 */\n  0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,\n  0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f,\n  /* 0xe0 */\n  0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,\n  0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f,\n  /* 0xf0 */\n  0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,\n  0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f,\n};\n\nstatic int\nrk1048_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else {\n    unsigned short wc = rk1048_2uni[c-0x80];\n    if (wc != 0xfffd) {\n      *pwc = (ucs4_t) wc;\n      return 1;\n    }\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char rk1048_page00[32] = {\n  0xa0, 0x00, 0x00, 0x00, 0xa4, 0x00, 0xa6, 0xa7, /* 0xa0-0xa7 */\n  0x00, 0xa9, 0x00, 0xab, 0xac, 0xad, 0xae, 0x00, /* 0xa8-0xaf */\n  0xb0, 0xb1, 0x00, 0x00, 0x00, 0xb5, 0xb6, 0xb7, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n};\nstatic const unsigned char rk1048_page04[240] = {\n  0x00, 0xa8, 0x80, 0x81, 0x00, 0x00, 0xb2, 0x00, /* 0x00-0x07 */\n  0x00, 0x8a, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x8f, /* 0x08-0x0f */\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, /* 0x10-0x17 */\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, /* 0x18-0x1f */\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, /* 0x20-0x27 */\n  0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, /* 0x28-0x2f */\n  0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x30-0x37 */\n  0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, /* 0x38-0x3f */\n  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, /* 0x40-0x47 */\n  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff, /* 0x48-0x4f */\n  0x00, 0xb8, 0x90, 0x83, 0x00, 0x00, 0xb3, 0x00, /* 0x50-0x57 */\n  0x00, 0x9a, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x9f, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0xaa, 0xba, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x8d, 0x9d, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0x00, 0x00, 0xbd, 0xbe, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0xbf, /* 0xa8-0xaf */\n  0xa1, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x8e, 0x9e, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd0-0xd7 */\n  0xa3, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0xa5, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n};\nstatic const unsigned char rk1048_page20[48] = {\n  0x00, 0x00, 0x00, 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x18-0x1f */\n  0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x20-0x27 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n};\nstatic const unsigned char rk1048_page21[24] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\n\nstatic int\nrk1048_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x00c0)\n    c = rk1048_page00[wc-0x00a0];\n  else if (wc >= 0x0400 && wc < 0x04f0)\n    c = rk1048_page04[wc-0x0400];\n  else if (wc >= 0x2010 && wc < 0x2040)\n    c = rk1048_page20[wc-0x2010];\n  else if (wc == 0x20ac)\n    c = 0x88;\n  else if (wc >= 0x2110 && wc < 0x2128)\n    c = rk1048_page21[wc-0x2110];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/shift_jisx0213.h",
    "content": "/*\n * Copyright (C) 1999-2002 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * SHIFT_JISX0213\n */\n\n/* The structure of Shift_JISX0213 is as follows:\n\n   0x00..0x7F: ISO646-JP, an ASCII variant\n\n   0x{A1..DF}: JISX0201 Katakana.\n\n   0x{81..9F,E0..EF}{40..7E,80..FC}: JISX0213 plane 1.\n\n   0x{F0..FC}{40..7E,80..FC}: JISX0213 plane 2, with irregular row mapping.\n\n   Note that some JISX0213 characters are not contained in Unicode 3.2\n   and are therefore best represented as sequences of Unicode characters.\n*/\n\n#include \"jisx0213.h\"\n#include \"flushwc.h\"\n\nstatic int\nshift_jisx0213_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  ucs4_t last_wc = conv->istate;\n  if (last_wc) {\n    /* Output the buffered character. */\n    conv->istate = 0;\n    *pwc = last_wc;\n    return 0; /* Don't advance the input pointer. */\n  } else {\n    unsigned char c = *s;\n    if (c < 0x80) {\n      /* Plain ISO646-JP character. */\n      if (c == 0x5c)\n        *pwc = (ucs4_t) 0x00a5;\n      else if (c == 0x7e)\n        *pwc = (ucs4_t) 0x203e;\n      else\n        *pwc = (ucs4_t) c;\n      return 1;\n    } else if (c >= 0xa1 && c <= 0xdf) {\n      *pwc = c + 0xfec0;\n      return 1;\n    } else {\n      if ((c >= 0x81 && c <= 0x9f) || (c >= 0xe0 && c <= 0xfc)) {\n        /* Two byte character. */\n        if (n >= 2) {\n          unsigned char c2 = s[1];\n          if ((c2 >= 0x40 && c2 <= 0x7e) || (c2 >= 0x80 && c2 <= 0xfc)) {\n            unsigned int c1;\n            ucs4_t wc;\n            /* Convert to row and column. */\n            if (c < 0xe0)\n              c -= 0x81;\n            else\n              c -= 0xc1;\n            if (c2 < 0x80)\n              c2 -= 0x40;\n            else\n              c2 -= 0x41;\n            /* Now 0 <= c <= 0x3b, 0 <= c2 <= 0xbb. */\n            c1 = 2 * c;\n            if (c2 >= 0x5e)\n              c2 -= 0x5e, c1++;\n            c2 += 0x21;\n            if (c1 >= 0x5e) {\n              /* Handling of JISX 0213 plane 2 rows. */\n              if (c1 >= 0x67)\n                c1 += 230;\n              else if (c1 >= 0x63 || c1 == 0x5f)\n                c1 += 168;\n              else\n                c1 += 162;\n            }\n            wc = jisx0213_to_ucs4(0x121+c1,c2);\n            if (wc) {\n              if (wc < 0x80) {\n                /* It's a combining character. */\n                ucs4_t wc1 = jisx0213_to_ucs_combining[wc - 1][0];\n                ucs4_t wc2 = jisx0213_to_ucs_combining[wc - 1][1];\n                /* We cannot output two Unicode characters at once. So,\n                   output the first character and buffer the second one. */\n                *pwc = wc1;\n                conv->istate = wc2;\n              } else\n                *pwc = wc;\n              return 2;\n            }\n          }\n        } else\n          return RET_TOOFEW(0);\n      }\n      return RET_ILSEQ;\n    }\n  }\n}\n\n#define shift_jisx0213_flushwc normal_flushwc\n\n/* Composition tables for each of the relevant combining characters.  */\nstatic const struct { unsigned short base; unsigned short composed; } shift_jisx0213_comp_table_data[] = {\n#define shift_jisx0213_comp_table02e5_idx 0\n#define shift_jisx0213_comp_table02e5_len 1\n  { 0x8684, 0x8685 }, /* 0x12B65 = 0x12B64 U+02E5 */\n#define shift_jisx0213_comp_table02e9_idx (shift_jisx0213_comp_table02e5_idx+shift_jisx0213_comp_table02e5_len)\n#define shift_jisx0213_comp_table02e9_len 1\n  { 0x8680, 0x8686 }, /* 0x12B66 = 0x12B60 U+02E9 */\n#define shift_jisx0213_comp_table0300_idx (shift_jisx0213_comp_table02e9_idx+shift_jisx0213_comp_table02e9_len)\n#define shift_jisx0213_comp_table0300_len 5\n  { 0x857b, 0x8663 }, /* 0x12B44 = 0x1295C U+0300 */\n  { 0x8657, 0x8667 }, /* 0x12B48 = 0x12B38 U+0300 */\n  { 0x8656, 0x8669 }, /* 0x12B4A = 0x12B37 U+0300 */\n  { 0x864f, 0x866b }, /* 0x12B4C = 0x12B30 U+0300 */\n  { 0x8662, 0x866d }, /* 0x12B4E = 0x12B43 U+0300 */\n#define shift_jisx0213_comp_table0301_idx (shift_jisx0213_comp_table0300_idx+shift_jisx0213_comp_table0300_len)\n#define shift_jisx0213_comp_table0301_len 4\n  { 0x8657, 0x8668 }, /* 0x12B49 = 0x12B38 U+0301 */\n  { 0x8656, 0x866a }, /* 0x12B4B = 0x12B37 U+0301 */\n  { 0x864f, 0x866c }, /* 0x12B4D = 0x12B30 U+0301 */\n  { 0x8662, 0x866e }, /* 0x12B4F = 0x12B43 U+0301 */\n#define shift_jisx0213_comp_table309a_idx (shift_jisx0213_comp_table0301_idx+shift_jisx0213_comp_table0301_len)\n#define shift_jisx0213_comp_table309a_len 14\n  { 0x82a9, 0x82f5 }, /* 0x12477 = 0x1242B U+309A */\n  { 0x82ab, 0x82f6 }, /* 0x12478 = 0x1242D U+309A */\n  { 0x82ad, 0x82f7 }, /* 0x12479 = 0x1242F U+309A */\n  { 0x82af, 0x82f8 }, /* 0x1247A = 0x12431 U+309A */\n  { 0x82b1, 0x82f9 }, /* 0x1247B = 0x12433 U+309A */\n  { 0x834a, 0x8397 }, /* 0x12577 = 0x1252B U+309A */\n  { 0x834c, 0x8398 }, /* 0x12578 = 0x1252D U+309A */\n  { 0x834e, 0x8399 }, /* 0x12579 = 0x1252F U+309A */\n  { 0x8350, 0x839a }, /* 0x1257A = 0x12531 U+309A */\n  { 0x8352, 0x839b }, /* 0x1257B = 0x12533 U+309A */\n  { 0x835a, 0x839c }, /* 0x1257C = 0x1253B U+309A */\n  { 0x8363, 0x839d }, /* 0x1257D = 0x12544 U+309A */\n  { 0x8367, 0x839e }, /* 0x1257E = 0x12548 U+309A */\n  { 0x83f3, 0x83f6 }, /* 0x12678 = 0x12675 U+309A */\n};\n\nstatic int\nshift_jisx0213_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  int count = 0;\n  unsigned short lasttwo = conv->ostate;\n\n  if (lasttwo) {\n    /* Attempt to combine the last character with this one. */\n    unsigned int idx;\n    unsigned int len;\n\n    if (wc == 0x02e5)\n      idx = shift_jisx0213_comp_table02e5_idx,\n      len = shift_jisx0213_comp_table02e5_len;\n    else if (wc == 0x02e9)\n      idx = shift_jisx0213_comp_table02e9_idx,\n      len = shift_jisx0213_comp_table02e9_len;\n    else if (wc == 0x0300)\n      idx = shift_jisx0213_comp_table0300_idx,\n      len = shift_jisx0213_comp_table0300_len;\n    else if (wc == 0x0301)\n      idx = shift_jisx0213_comp_table0301_idx,\n      len = shift_jisx0213_comp_table0301_len;\n    else if (wc == 0x309a)\n      idx = shift_jisx0213_comp_table309a_idx,\n      len = shift_jisx0213_comp_table309a_len;\n    else\n      goto not_combining;\n\n    do\n      if (shift_jisx0213_comp_table_data[idx].base == lasttwo)\n        break;\n    while (++idx, --len > 0);\n\n    if (len > 0) {\n      /* Output the combined character. */\n      if (n >= 2) {\n        lasttwo = shift_jisx0213_comp_table_data[idx].composed;\n        r[0] = (lasttwo >> 8) & 0xff;\n        r[1] = lasttwo & 0xff;\n        conv->ostate = 0;\n        return 2;\n      } else\n        return RET_TOOSMALL;\n    }\n\n  not_combining:\n    /* Output the buffered character. */\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = (lasttwo >> 8) & 0xff;\n    r[1] = lasttwo & 0xff;\n    r += 2;\n    count = 2;\n  }\n\n  if (wc < 0x80 && wc != 0x5c && wc != 0x7e) {\n    /* Plain ISO646-JP character. */\n    if (n > count) {\n      r[0] = (unsigned char) wc;\n      conv->ostate = 0;\n      return count+1;\n    } else\n      return RET_TOOSMALL;\n  } else if (wc == 0x00a5) {\n    if (n > count) {\n      r[0] = 0x5c;\n      conv->ostate = 0;\n      return count+1;\n    } else\n      return RET_TOOSMALL;\n  } else if (wc == 0x203e) {\n    if (n > count) {\n      r[0] = 0x7e;\n      conv->ostate = 0;\n      return count+1;\n    } else\n      return RET_TOOSMALL;\n  } else if (wc >= 0xff61 && wc <= 0xff9f) {\n    /* Half-width katakana. */\n    if (n > count) {\n      r[0] = wc - 0xfec0;\n      conv->ostate = 0;\n      return count+1;\n    } else\n      return RET_TOOSMALL;\n  } else {\n    unsigned int s1, s2;\n    unsigned short jch = ucs4_to_jisx0213(wc);\n    if (jch != 0) {\n      /* Convert it to shifted representation. */\n      s1 = jch >> 8;\n      s2 = jch & 0x7f;\n      s1 -= 0x21;\n      s2 -= 0x21;\n      if (s1 >= 0x5e) {\n        /* Handling of JISX 0213 plane 2 rows. */\n        if (s1 >= 0xcd) /* rows 0x26E..0x27E */\n          s1 -= 102;\n        else if (s1 >= 0x8b || s1 == 0x87) /* rows 0x228, 0x22C..0x22F */\n          s1 -= 40;\n        else /* rows 0x221, 0x223..0x225 */\n          s1 -= 34;\n        /* Now 0x5e <= s1 <= 0x77. */\n      }\n      if (s1 & 1)\n        s2 += 0x5e;\n      s1 = s1 >> 1;\n      if (s1 < 0x1f)\n        s1 += 0x81;\n      else\n        s1 += 0xc1;\n      if (s2 < 0x3f)\n        s2 += 0x40;\n      else\n        s2 += 0x41;\n      if (jch & 0x0080) {\n        /* A possible match in comp_table_data. We have to buffer it. */\n        /* We know it's a JISX 0213 plane 1 character. */\n        if (jch & 0x8000) abort();\n        conv->ostate = (s1 << 8) | s2;\n        return count+0;\n      }\n      /* Output the shifted representation. */\n      if (n >= count+2) {\n        r[0] = s1;\n        r[1] = s2;\n        conv->ostate = 0;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    return RET_ILUNI;\n  }\n}\n\nstatic int\nshift_jisx0213_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t lasttwo = conv->ostate;\n\n  if (lasttwo) {\n    if (n < 2)\n      return RET_TOOSMALL;\n    r[0] = (lasttwo >> 8) & 0xff;\n    r[1] = lasttwo & 0xff;\n    /* conv->ostate = 0; will be done by the caller */\n    return 2;\n  } else\n    return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/sjis.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * SHIFT_JIS\n */\n\n/*\n   Conversion between SJIS codes (s1,s2) and JISX0208 codes (c1,c2):\n   Example. (s1,s2) = 0x8140, (c1,c2) = 0x2121.\n   0x81 <= s1 <= 0x9F || 0xE0 <= s1 <= 0xEA,\n   0x40 <= s2 <= 0x7E || 0x80 <= s2 <= 0xFC,\n   0x21 <= c1 <= 0x74, 0x21 <= c2 <= 0x7E.\n   Invariant:\n     94*2*(s1 < 0xE0 ? s1-0x81 : s1-0xC1) + (s2 < 0x80 ? s2-0x40 : s2-0x41)\n     = 94*(c1-0x21)+(c2-0x21)\n   Conversion (s1,s2) -> (c1,c2):\n     t1 := (s1 < 0xE0 ? s1-0x81 : s1-0xC1)\n     t2 := (s2 < 0x80 ? s2-0x40 : s2-0x41)\n     c1 := 2*t1 + (t2 < 0x5E ? 0 : 1) + 0x21\n     c2 := (t2 < 0x5E ? t2 : t2-0x5E) + 0x21\n   Conversion (c1,c2) -> (s1,s2):\n     t1 := (c1 - 0x21) >> 1\n     t2 := ((c1 - 0x21) & 1) * 0x5E + (c2 - 0x21)\n     s1 := (t1 < 0x1F ? t1+0x81 : t1+0xC1)\n     s2 := (t2 < 0x3F ? t2+0x40 : t2+0x41)\n */\n\nstatic int\nsjis_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80 || (c >= 0xa1 && c <= 0xdf))\n    return jisx0201_mbtowc(conv,pwc,s,n);\n  else {\n    unsigned char s1, s2;\n    s1 = c;\n    if ((s1 >= 0x81 && s1 <= 0x9f) || (s1 >= 0xe0 && s1 <= 0xea)) {\n      if (n < 2)\n        return RET_TOOFEW(0);\n      s2 = s[1];\n      if ((s2 >= 0x40 && s2 <= 0x7e) || (s2 >= 0x80 && s2 <= 0xfc)) {\n        unsigned char t1 = (s1 < 0xe0 ? s1-0x81 : s1-0xc1);\n        unsigned char t2 = (s2 < 0x80 ? s2-0x40 : s2-0x41);\n        unsigned char buf[2];\n        buf[0] = 2*t1 + (t2 < 0x5e ? 0 : 1) + 0x21;\n        buf[1] = (t2 < 0x5e ? t2 : t2-0x5e) + 0x21;\n        return jisx0208_mbtowc(conv,pwc,buf,2);\n      }\n    } else if (s1 >= 0xf0 && s1 <= 0xf9) {\n      /* User-defined range. See\n       * Ken Lunde's \"CJKV Information Processing\", table 4-66, p. 206. */\n      if (n < 2)\n        return RET_TOOFEW(0);\n      s2 = s[1];\n      if ((s2 >= 0x40 && s2 <= 0x7e) || (s2 >= 0x80 && s2 <= 0xfc)) {\n        *pwc = 0xe000 + 188*(s1 - 0xf0) + (s2 < 0x80 ? s2-0x40 : s2-0x41);\n        return 2;\n      }\n    }\n    return RET_ILSEQ;\n  }\n}\n\nstatic int\nsjis_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char buf[2];\n  int ret;\n\n  /* Try JIS X 0201-1976. */\n  ret = jisx0201_wctomb(conv,buf,wc,1);\n  if (ret != RET_ILUNI) {\n    unsigned char c;\n    if (ret != 1) abort();\n    c = buf[0];\n    if (c < 0x80 || (c >= 0xa1 && c <= 0xdf)) {\n      r[0] = c;\n      return 1;\n    }\n  }\n\n  /* Try JIS X 0208-1990. */\n  ret = jisx0208_wctomb(conv,buf,wc,2);\n  if (ret != RET_ILUNI) {\n    unsigned char c1, c2;\n    if (ret != 2) abort();\n    if (n < 2)\n      return RET_TOOSMALL;\n    c1 = buf[0];\n    c2 = buf[1];\n    if ((c1 >= 0x21 && c1 <= 0x74) && (c2 >= 0x21 && c2 <= 0x7e)) {\n      unsigned char t1 = (c1 - 0x21) >> 1;\n      unsigned char t2 = (((c1 - 0x21) & 1) ? 0x5e : 0) + (c2 - 0x21);\n      r[0] = (t1 < 0x1f ? t1+0x81 : t1+0xc1);\n      r[1] = (t2 < 0x3f ? t2+0x40 : t2+0x41);\n      return 2;\n    }\n  }\n\n  /* User-defined range. See\n   * Ken Lunde's \"CJKV Information Processing\", table 4-66, p. 206. */\n  if (wc >= 0xe000 && wc < 0xe758) {\n    unsigned char c1, c2;\n    if (n < 2)\n      return RET_TOOSMALL;\n    c1 = (unsigned int) (wc - 0xe000) / 188;\n    c2 = (unsigned int) (wc - 0xe000) % 188;\n    r[0] = c1+0xf0;\n    r[1] = (c2 < 0x3f ? c2+0x40 : c2+0x41);\n    return 2;\n  }\n\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/stamp-h2",
    "content": "timestamp for lib/config.h\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/tcvn.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2004, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * TCVN-5712\n */\n\n#include \"flushwc.h\"\n#include \"vietcomb.h\"\n\nstatic const unsigned char tcvn_comb_table[] = {\n  0xb0, 0xb3, 0xb2, 0xb1, 0xb4,\n};\n\n/* The possible bases in viet_comp_table_data:\n   0x0041..0x0045, 0x0047..0x0049, 0x004B..0x0050, 0x0052..0x0057,\n   0x0059..0x005A, 0x0061..0x0065, 0x0067..0x0069, 0x006B..0x0070,\n   0x0072..0x0077, 0x0079..0x007A, 0x00A5, 0x00C2, 0x00CA, 0x00D3..0x00D6,\n   0x00DA, 0x00E2, 0x00EA, 0x00F3..0x00F6, 0x00FA, 0x0102..0x0103,\n   0x0168..0x0169, 0x01A0..0x01A1, 0x01AF..0x01B0. */\nstatic const unsigned int tcvn_comp_bases[] = {\n  0x06fdfbbe, 0x06fdfbbe, 0x00000000, 0x00000020, 0x04780404, 0x04780404,\n  0x0000000c, 0x00000000, 0x00000000, 0x00000300, 0x00000000, 0x00018003\n};\n\nstatic const unsigned short tcvn_2uni_1[24] = {\n  /* 0x00 */\n  0x0000, 0x00da, 0x1ee4, 0x0003, 0x1eea, 0x1eec, 0x1eee, 0x0007,\n  0x0008, 0x0009, 0x000a, 0x000b, 0x000c, 0x000d, 0x000e, 0x000f,\n  /* 0x10 */\n  0x0010, 0x1ee8, 0x1ef0, 0x1ef2, 0x1ef6, 0x1ef8, 0x00dd, 0x1ef4,\n};\nstatic const unsigned short tcvn_2uni_2[128] = {\n  /* 0x80 */\n  0x00c0, 0x1ea2, 0x00c3, 0x00c1, 0x1ea0, 0x1eb6, 0x1eac, 0x00c8,\n  0x1eba, 0x1ebc, 0x00c9, 0x1eb8, 0x1ec6, 0x00cc, 0x1ec8, 0x0128,\n  /* 0x90 */\n  0x00cd, 0x1eca, 0x00d2, 0x1ece, 0x00d5, 0x00d3, 0x1ecc, 0x1ed8,\n  0x1edc, 0x1ede, 0x1ee0, 0x1eda, 0x1ee2, 0x00d9, 0x1ee6, 0x0168,\n  /* 0xa0 */\n  0x00a0, 0x0102, 0x00c2, 0x00ca, 0x00d4, 0x01a0, 0x01af, 0x0110,\n  0x0103, 0x00e2, 0x00ea, 0x00f4, 0x01a1, 0x01b0, 0x0111, 0x1eb0,\n  /* 0xb0 */\n  0x0300, 0x0309, 0x0303, 0x0301, 0x0323, 0x00e0, 0x1ea3, 0x00e3,\n  0x00e1, 0x1ea1, 0x1eb2, 0x1eb1, 0x1eb3, 0x1eb5, 0x1eaf, 0x1eb4,\n  /* 0xc0 */\n  0x1eae, 0x1ea6, 0x1ea8, 0x1eaa, 0x1ea4, 0x1ec0, 0x1eb7, 0x1ea7,\n  0x1ea9, 0x1eab, 0x1ea5, 0x1ead, 0x00e8, 0x1ec2, 0x1ebb, 0x1ebd,\n  /* 0xd0 */\n  0x00e9, 0x1eb9, 0x1ec1, 0x1ec3, 0x1ec5, 0x1ebf, 0x1ec7, 0x00ec,\n  0x1ec9, 0x1ec4, 0x1ebe, 0x1ed2, 0x0129, 0x00ed, 0x1ecb, 0x00f2,\n  /* 0xe0 */\n  0x1ed4, 0x1ecf, 0x00f5, 0x00f3, 0x1ecd, 0x1ed3, 0x1ed5, 0x1ed7,\n  0x1ed1, 0x1ed9, 0x1edd, 0x1edf, 0x1ee1, 0x1edb, 0x1ee3, 0x00f9,\n  /* 0xf0 */\n  0x1ed6, 0x1ee7, 0x0169, 0x00fa, 0x1ee5, 0x1eeb, 0x1eed, 0x1eef,\n  0x1ee9, 0x1ef1, 0x1ef3, 0x1ef7, 0x1ef9, 0x00fd, 0x1ef5, 0x1ed0,\n};\n\n/* In the TCVN to Unicode direction, the state contains a buffered\n   character, or 0 if none. */\n\nstatic int\ntcvn_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  unsigned short wc;\n  unsigned short last_wc;\n  if (c < 0x18)\n    wc = tcvn_2uni_1[c];\n  else if (c < 0x80)\n    wc = c;\n  else\n    wc = tcvn_2uni_2[c-0x80];\n  last_wc = conv->istate;\n  if (last_wc) {\n    if (wc >= 0x0300 && wc < 0x0340) {\n      /* See whether last_wc and wc can be combined. */\n      unsigned int k;\n      unsigned int i1, i2;\n      switch (wc) {\n        case 0x0300: k = 0; break;\n        case 0x0301: k = 1; break;\n        case 0x0303: k = 2; break;\n        case 0x0309: k = 3; break;\n        case 0x0323: k = 4; break;\n        default: abort();\n      }\n      i1 = viet_comp_table[k].idx;\n      i2 = i1 + viet_comp_table[k].len-1;\n      if (last_wc >= viet_comp_table_data[i1].base\n          && last_wc <= viet_comp_table_data[i2].base) {\n        unsigned int i;\n        for (;;) {\n          i = (i1+i2)>>1;\n          if (last_wc == viet_comp_table_data[i].base)\n            break;\n          if (last_wc < viet_comp_table_data[i].base) {\n            if (i1 == i)\n              goto not_combining;\n            i2 = i;\n          } else {\n            if (i1 != i)\n              i1 = i;\n            else {\n              i = i2;\n              if (last_wc == viet_comp_table_data[i].base)\n                break;\n              goto not_combining;\n            }\n          }\n        }\n        last_wc = viet_comp_table_data[i].composed;\n        /* Output the combined character. */\n        conv->istate = 0;\n        *pwc = (ucs4_t) last_wc;\n        return 1;\n      }\n    }\n  not_combining:\n    /* Output the buffered character. */\n    conv->istate = 0;\n    *pwc = (ucs4_t) last_wc;\n    return 0; /* Don't advance the input pointer. */\n  }\n  if (wc >= 0x0041 && wc <= 0x01b0\n      && ((tcvn_comp_bases[(wc - 0x0040) >> 5] >> (wc & 0x1f)) & 1)) {\n    /* wc is a possible match in viet_comp_table_data. Buffer it. */\n    conv->istate = wc;\n    return RET_TOOFEW(1);\n  } else {\n    /* Output wc immediately. */\n    *pwc = (ucs4_t) wc;\n    return 1;\n  }\n}\n\n#define tcvn_flushwc normal_flushwc\n\nstatic const unsigned char tcvn_page00[96+184] = {\n  0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa8-0xaf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb8-0xbf */\n  0x80, 0x83, 0xa2, 0x82, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0x87, 0x8a, 0xa3, 0x00, 0x8d, 0x90, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x92, 0x95, 0xa4, 0x94, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x9d, 0x01, 0x00, 0x00, 0x16, 0x00, 0x00, /* 0xd8-0xdf */\n  0xb5, 0xb8, 0xa9, 0xb7, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0xcc, 0xd0, 0xaa, 0x00, 0xd7, 0xdd, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0xdf, 0xe3, 0xab, 0xe2, 0x00, 0x00, /* 0xf0-0xf7 */\n  0x00, 0xef, 0xf3, 0x00, 0x00, 0xfd, 0x00, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0x00, 0x00, 0xa1, 0xa8, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xa7, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0x8f, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x9f, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xa5, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, /* 0xa8-0xaf */\n  0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n};\nstatic const unsigned char tcvn_page03[40] = {\n  0xb0, 0xb3, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0xb1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n};\nstatic const unsigned char tcvn_page1e[96] = {\n  0x84, 0xb9, 0x81, 0xb6, 0xc4, 0xca, 0xc1, 0xc7, /* 0xa0-0xa7 */\n  0xc2, 0xc8, 0xc3, 0xc9, 0x86, 0xcb, 0xc0, 0xbe, /* 0xa8-0xaf */\n  0xaf, 0xbb, 0xba, 0xbc, 0xbf, 0xbd, 0x85, 0xc6, /* 0xb0-0xb7 */\n  0x8b, 0xd1, 0x88, 0xce, 0x89, 0xcf, 0xda, 0xd5, /* 0xb8-0xbf */\n  0xc5, 0xd2, 0xcd, 0xd3, 0xd9, 0xd4, 0x8c, 0xd6, /* 0xc0-0xc7 */\n  0x8e, 0xd8, 0x91, 0xde, 0x96, 0xe4, 0x93, 0xe1, /* 0xc8-0xcf */\n  0xff, 0xe8, 0xdb, 0xe5, 0xe0, 0xe6, 0xf0, 0xe7, /* 0xd0-0xd7 */\n  0x97, 0xe9, 0x9b, 0xed, 0x98, 0xea, 0x99, 0xeb, /* 0xd8-0xdf */\n  0x9a, 0xec, 0x9c, 0xee, 0x02, 0xf4, 0x9e, 0xf1, /* 0xe0-0xe7 */\n  0x11, 0xf8, 0x04, 0xf5, 0x05, 0xf6, 0x06, 0xf7, /* 0xe8-0xef */\n  0x12, 0xf9, 0x13, 0xfa, 0x17, 0xfe, 0x14, 0xfb, /* 0xf0-0xf7 */\n  0x15, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\n\nstatic int\ntcvn_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080 && (wc >= 0x0020 || (0x00fe0076 & (1 << wc)) == 0)) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00a0 && wc < 0x01b8)\n    c = tcvn_page00[wc-0x00a0];\n  else if (wc >= 0x0300 && wc < 0x0328)\n    c = tcvn_page03[wc-0x0300];\n  else if (wc >= 0x0340 && wc < 0x0342) /* deprecated Vietnamese tone marks */\n    c = tcvn_page03[wc-0x0340];\n  else if (wc >= 0x1ea0 && wc < 0x1f00)\n    c = tcvn_page1e[wc-0x1ea0];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  /* Try compatibility or canonical decomposition. */\n  {\n    /* Binary search through viet_decomp_table. */\n    unsigned int i1 = 0;\n    unsigned int i2 = sizeof(viet_decomp_table)/sizeof(viet_decomp_table[0])-1;\n    if (wc >= viet_decomp_table[i1].composed\n        && wc <= viet_decomp_table[i2].composed) {\n      unsigned int i;\n      for (;;) {\n        /* Here i2 - i1 > 0. */\n        i = (i1+i2)>>1;\n        if (wc == viet_decomp_table[i].composed)\n          break;\n        if (wc < viet_decomp_table[i].composed) {\n          if (i1 == i)\n            return RET_ILUNI;\n          /* Here i1 < i < i2. */\n          i2 = i;\n        } else {\n          /* Here i1 <= i < i2. */\n          if (i1 != i)\n            i1 = i;\n          else {\n            /* Here i2 - i1 = 1. */\n            i = i2;\n            if (wc == viet_decomp_table[i].composed)\n              break;\n            else\n              return RET_ILUNI;\n          }\n        }\n      }\n      /* Found a compatibility or canonical decomposition. */\n      wc = viet_decomp_table[i].base;\n      /* wc is one of 0x0020, 0x0041..0x005a, 0x0061..0x007a, 0x00a5, 0x00a8,\n         0x00c2, 0x00c5..0x00c7, 0x00ca, 0x00cf, 0x00d3, 0x00d4, 0x00d6,\n         0x00d8, 0x00da, 0x00dc, 0x00e2, 0x00e5..0x00e7, 0x00ea, 0x00ef,\n         0x00f3, 0x00f4, 0x00f6, 0x00f8, 0x00fc, 0x0102, 0x0103, 0x01a0,\n         0x01a1, 0x01af, 0x01b0. */\n      if (wc < 0x0080)\n        c = wc;\n      else {\n        c = tcvn_page00[wc-0x00a0];\n        if (c == 0)\n          return RET_ILUNI;\n      }\n      if (n < 2)\n        return RET_TOOSMALL;\n      r[0] = c;\n      r[1] = tcvn_comb_table[viet_decomp_table[i].comb1];\n      return 2;\n    }\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/tds565.h",
    "content": "/*\n * Copyright (C) 1999-2002, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * TDS565\n */\n\nstatic const unsigned short tds565_2uni[64] = {\n  /* 0x40 */\n  0x0040, 0x0041, 0x0042, 0x00c7, 0x0044, 0x0045, 0x00c4, 0x0046,\n  0x0047, 0x0048, 0x0049, 0x004a, 0x017d, 0x004b, 0x004c, 0x004d,\n  /* 0x50 */\n  0x004e, 0x0147, 0x004f, 0x00d6, 0x0050, 0x0052, 0x0053, 0x015e,\n  0x0054, 0x0055, 0x00dc, 0x0057, 0x0059, 0x00dd, 0x005a, 0x005f,\n  /* 0x60 */\n  0x2116, 0x0061, 0x0062, 0x00e7, 0x0064, 0x0065, 0x00e4, 0x0066,\n  0x0067, 0x0068, 0x0069, 0x006a, 0x017e, 0x006b, 0x006c, 0x006d,\n  /* 0x70 */\n  0x006e, 0x0148, 0x006f, 0x00f6, 0x0070, 0x0072, 0x0073, 0x015f,\n  0x0074, 0x0075, 0x00fc, 0x0077, 0x0079, 0x00fd, 0x007a, 0x007f,\n};\n\nstatic int\ntds565_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x40) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else if (c < 0x80) {\n    *pwc = (ucs4_t) tds565_2uni[c-0x40];\n    return 1;\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned char tds565_page00[64] = {\n  0x40, 0x41, 0x42, 0x00, 0x44, 0x45, 0x47, 0x48, /* 0x40-0x47 */\n  0x49, 0x4a, 0x4b, 0x4d, 0x4e, 0x4f, 0x50, 0x52, /* 0x48-0x4f */\n  0x54, 0x00, 0x55, 0x56, 0x58, 0x59, 0x00, 0x5b, /* 0x50-0x57 */\n  0x00, 0x5c, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x5f, /* 0x58-0x5f */\n  0x00, 0x61, 0x62, 0x00, 0x64, 0x65, 0x67, 0x68, /* 0x60-0x67 */\n  0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x70, 0x72, /* 0x68-0x6f */\n  0x74, 0x00, 0x75, 0x76, 0x78, 0x79, 0x00, 0x7b, /* 0x70-0x77 */\n  0x00, 0x7c, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x7f, /* 0x78-0x7f */\n};\nstatic const unsigned char tds565_page00_1[64] = {\n  0x00, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x43, /* 0xc0-0xc7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, /* 0xd0-0xd7 */\n  0x00, 0x00, 0x00, 0x00, 0x5a, 0x5d, 0x00, 0x00, /* 0xd8-0xdf */\n  0x00, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x63, /* 0xe0-0xe7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x00, /* 0xf0-0xf7 */\n  0x00, 0x00, 0x00, 0x00, 0x7a, 0x7d, 0x00, 0x00, /* 0xf8-0xff */\n};\nstatic const unsigned char tds565_page01[64] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, /* 0x40-0x47 */\n  0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x77, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x6c, 0x00, /* 0x78-0x7f */\n};\n\nstatic int\ntds565_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0040) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x0040 && wc < 0x0080)\n    c = tds565_page00[wc-0x0040];\n  else if (wc >= 0x00c0 && wc < 0x0100)\n    c = tds565_page00_1[wc-0x00c0];\n  else if (wc >= 0x0140 && wc < 0x0180)\n    c = tds565_page01[wc-0x0140];\n  else if (wc == 0x2116)\n    c = 0x60;\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/tis620.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * TIS620.2533-1\n */\n\nstatic int\ntis620_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x80) {\n    *pwc = (ucs4_t) c;\n    return 1;\n  }\n  else if (c >= 0xa1 && c <= 0xfb && !(c >= 0xdb && c <= 0xde)) {\n    *pwc = (ucs4_t) (c + 0x0d60);\n    return 1;\n  }\n  return RET_ILSEQ;\n}\n\nstatic int\ntis620_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x0080) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x0e01 && wc <= 0x0e5b && !(wc >= 0x0e3b && wc <= 0x0e3e)) {\n    *r = wc-0x0d60;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/translit.def",
    "content": "# Copyright (C) 1999-2003 Free Software Foundation, Inc.\n# This file is part of the GNU LIBICONV Library.\n#\n# The GNU LIBICONV Library is free software; you can redistribute it\n# and/or modify it under the terms of the GNU Library General Public\n# License as published by the Free Software Foundation; either version 2\n# of the License, or (at your option) any later version.\n#\n# The GNU LIBICONV Library is distributed in the hope that it will be\n# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# Library General Public License for more details.\n#\n# You should have received a copy of the GNU Library General Public\n# License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n# If not, see <http://www.gnu.org/licenses/>.\n#\n#\n# Definition of transliteration from Unicode to poorer character sets.\n#\n# This covers all of Markus Kuhn's TARGET1.\n#\n# The second column gives the transliteration. It is enclosed between tabs!\n#\n00A0\t \t# NO-BREAK SPACE\n00A1\t!\t# INVERTED EXCLAMATION MARK\n00A2\tc\t# CENT SIGN\n00A3\tlb\t# POUND SIGN\n00A4\t\t# CURRENCY SIGN\n00A5\tyen\t# YEN SIGN\n00A6\t|\t# BROKEN BAR\n00A7\tSS\t# SECTION SIGN\n00A8\t\"\t# DIAERESIS\n00A9\t(c)\t# COPYRIGHT SIGN\n00AA\ta\t# FEMININE ORDINAL INDICATOR\n00AB\t<<\t# LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\n00AC\tnot\t# NOT SIGN\n00AD\t-\t# SOFT HYPHEN\n00AE\t(R)\t# REGISTERED SIGN\n00AF\t\t# MACRON\n00B0\t^0\t# DEGREE SIGN\n00B1\t+/-\t# PLUS-MINUS SIGN\n00B2\t^2\t# SUPERSCRIPT TWO\n00B3\t^3\t# SUPERSCRIPT THREE\n00B4\t'\t# ACUTE ACCENT\n00B5\tu\t# MICRO SIGN\n00B6\tP\t# PILCROW SIGN\n00B7\t.\t# MIDDLE DOT\n00B8\t,\t# CEDILLA\n00B9\t^1\t# SUPERSCRIPT ONE\n00BA\to\t# MASCULINE ORDINAL INDICATOR\n00BB\t>>\t# RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\n00BC\t 1⁄4 \t# VULGAR FRACTION ONE QUARTER\n00BD\t 1⁄2 \t# VULGAR FRACTION ONE HALF\n00BE\t 3⁄4 \t# VULGAR FRACTION THREE QUARTERS\n00BF\t?\t# INVERTED QUESTION MARK\n00C0\t`A\t# LATIN CAPITAL LETTER A WITH GRAVE\n00C1\t´A\t# LATIN CAPITAL LETTER A WITH ACUTE\n00C2\t^A\t# LATIN CAPITAL LETTER A WITH CIRCUMFLEX\n00C3\t~A\t# LATIN CAPITAL LETTER A WITH TILDE\n00C4\t\"A\t# LATIN CAPITAL LETTER A WITH DIAERESIS\n00C5\tA\t# LATIN CAPITAL LETTER A WITH RING ABOVE\n00C6\tAE\t# LATIN CAPITAL LETTER AE\n00C7\tC\t# LATIN CAPITAL LETTER C WITH CEDILLA\n00C8\t`E\t# LATIN CAPITAL LETTER E WITH GRAVE\n00C9\t´E\t# LATIN CAPITAL LETTER E WITH ACUTE\n00CA\t^E\t# LATIN CAPITAL LETTER E WITH CIRCUMFLEX\n00CB\t\"E\t# LATIN CAPITAL LETTER E WITH DIAERESIS\n00CC\t`I\t# LATIN CAPITAL LETTER I WITH GRAVE\n00CD\t´I\t# LATIN CAPITAL LETTER I WITH ACUTE\n00CE\t^I\t# LATIN CAPITAL LETTER I WITH CIRCUMFLEX\n00CF\t\"I\t# LATIN CAPITAL LETTER I WITH DIAERESIS\n00D0\tD\t# LATIN CAPITAL LETTER ETH\n00D1\t~N\t# LATIN CAPITAL LETTER N WITH TILDE\n00D2\t`O\t# LATIN CAPITAL LETTER O WITH GRAVE\n00D3\t´O\t# LATIN CAPITAL LETTER O WITH ACUTE\n00D4\t^O\t# LATIN CAPITAL LETTER O WITH CIRCUMFLEX\n00D5\t~O\t# LATIN CAPITAL LETTER O WITH TILDE\n00D6\t\"O\t# LATIN CAPITAL LETTER O WITH DIAERESIS\n00D7\tx\t# MULTIPLICATION SIGN\n00D8\tO\t# LATIN CAPITAL LETTER O WITH STROKE\n00D9\t`U\t# LATIN CAPITAL LETTER U WITH GRAVE\n00DA\t´U\t# LATIN CAPITAL LETTER U WITH ACUTE\n00DB\t^U\t# LATIN CAPITAL LETTER U WITH CIRCUMFLEX\n00DC\t\"U\t# LATIN CAPITAL LETTER U WITH DIAERESIS\n00DD\t´Y\t# LATIN CAPITAL LETTER Y WITH ACUTE\n00DE\tTh\t# LATIN CAPITAL LETTER THORN\n00DF\tss\t# LATIN SMALL LETTER SHARP S\n00E0\t`a\t# LATIN SMALL LETTER A WITH GRAVE\n00E1\t´a\t# LATIN SMALL LETTER A WITH ACUTE\n00E2\t^a\t# LATIN SMALL LETTER A WITH CIRCUMFLEX\n00E3\t~a\t# LATIN SMALL LETTER A WITH TILDE\n00E4\t\"a\t# LATIN SMALL LETTER A WITH DIAERESIS\n00E5\ta\t# LATIN SMALL LETTER A WITH RING ABOVE\n00E6\tae\t# LATIN SMALL LETTER AE\n00E7\tc\t# LATIN SMALL LETTER C WITH CEDILLA\n00E8\t`e\t# LATIN SMALL LETTER E WITH GRAVE\n00E9\t´e\t# LATIN SMALL LETTER E WITH ACUTE\n00EA\t^e\t# LATIN SMALL LETTER E WITH CIRCUMFLEX\n00EB\t\"e\t# LATIN SMALL LETTER E WITH DIAERESIS\n00EC\t`i\t# LATIN SMALL LETTER I WITH GRAVE\n00ED\t´i\t# LATIN SMALL LETTER I WITH ACUTE\n00EE\t^i\t# LATIN SMALL LETTER I WITH CIRCUMFLEX\n00EF\t\"i\t# LATIN SMALL LETTER I WITH DIAERESIS\n00F0\td\t# LATIN SMALL LETTER ETH\n00F1\t~n\t# LATIN SMALL LETTER N WITH TILDE\n00F2\t`o\t# LATIN SMALL LETTER O WITH GRAVE\n00F3\t´o\t# LATIN SMALL LETTER O WITH ACUTE\n00F4\t^o\t# LATIN SMALL LETTER O WITH CIRCUMFLEX\n00F5\t~o\t# LATIN SMALL LETTER O WITH TILDE\n00F6\t\"o\t# LATIN SMALL LETTER O WITH DIAERESIS\n00F7\t:\t# DIVISION SIGN\n00F8\to\t# LATIN SMALL LETTER O WITH STROKE\n00F9\t`u\t# LATIN SMALL LETTER U WITH GRAVE\n00FA\t´u\t# LATIN SMALL LETTER U WITH ACUTE\n00FB\t^u\t# LATIN SMALL LETTER U WITH CIRCUMFLEX\n00FC\t\"u\t# LATIN SMALL LETTER U WITH DIAERESIS\n00FD\t´y\t# LATIN SMALL LETTER Y WITH ACUTE\n00FE\tth\t# LATIN SMALL LETTER THORN\n00FF\t\"y\t# LATIN SMALL LETTER Y WITH DIAERESIS\n0100\tA\t# LATIN CAPITAL LETTER A WITH MACRON\n0101\ta\t# LATIN SMALL LETTER A WITH MACRON\n0102\tA\t# LATIN CAPITAL LETTER A WITH BREVE\n0103\ta\t# LATIN SMALL LETTER A WITH BREVE\n0104\tA\t# LATIN CAPITAL LETTER A WITH OGONEK\n0105\ta\t# LATIN SMALL LETTER A WITH OGONEK\n0106\t´C\t# LATIN CAPITAL LETTER C WITH ACUTE\n0107\t´c\t# LATIN SMALL LETTER C WITH ACUTE\n0108\t^C\t# LATIN CAPITAL LETTER C WITH CIRCUMFLEX\n0109\t^c\t# LATIN SMALL LETTER C WITH CIRCUMFLEX\n010A\tC\t# LATIN CAPITAL LETTER C WITH DOT ABOVE\n010B\tc\t# LATIN SMALL LETTER C WITH DOT ABOVE\n010C\tC\t# LATIN CAPITAL LETTER C WITH CARON\n010D\tc\t# LATIN SMALL LETTER C WITH CARON\n010E\tD\t# LATIN CAPITAL LETTER D WITH CARON\n010F\td\t# LATIN SMALL LETTER D WITH CARON\n0110\tD\t# LATIN CAPITAL LETTER D WITH STROKE\n0111\td\t# LATIN SMALL LETTER D WITH STROKE\n0112\tE\t# LATIN CAPITAL LETTER E WITH MACRON\n0113\te\t# LATIN SMALL LETTER E WITH MACRON\n0114\tE\t# LATIN CAPITAL LETTER E WITH BREVE\n0115\te\t# LATIN SMALL LETTER E WITH BREVE\n0116\tE\t# LATIN CAPITAL LETTER E WITH DOT ABOVE\n0117\te\t# LATIN SMALL LETTER E WITH DOT ABOVE\n0118\tE\t# LATIN CAPITAL LETTER E WITH OGONEK\n0119\te\t# LATIN SMALL LETTER E WITH OGONEK\n011A\tE\t# LATIN CAPITAL LETTER E WITH CARON\n011B\te\t# LATIN SMALL LETTER E WITH CARON\n011C\t^G\t# LATIN CAPITAL LETTER G WITH CIRCUMFLEX\n011D\t^g\t# LATIN SMALL LETTER G WITH CIRCUMFLEX\n011E\tG\t# LATIN CAPITAL LETTER G WITH BREVE\n011F\tg\t# LATIN SMALL LETTER G WITH BREVE\n0120\tG\t# LATIN CAPITAL LETTER G WITH DOT ABOVE\n0121\tg\t# LATIN SMALL LETTER G WITH DOT ABOVE\n0122\tG\t# LATIN CAPITAL LETTER G WITH CEDILLA\n0123\tg\t# LATIN SMALL LETTER G WITH CEDILLA\n0124\t^H\t# LATIN CAPITAL LETTER H WITH CIRCUMFLEX\n0125\t^h\t# LATIN SMALL LETTER H WITH CIRCUMFLEX\n0126\tH\t# LATIN CAPITAL LETTER H WITH STROKE\n0127\th\t# LATIN SMALL LETTER H WITH STROKE\n0128\t~I\t# LATIN CAPITAL LETTER I WITH TILDE\n0129\t~i\t# LATIN SMALL LETTER I WITH TILDE\n012A\tI\t# LATIN CAPITAL LETTER I WITH MACRON\n012B\ti\t# LATIN SMALL LETTER I WITH MACRON\n012C\tI\t# LATIN CAPITAL LETTER I WITH BREVE\n012D\ti\t# LATIN SMALL LETTER I WITH BREVE\n012E\tI\t# LATIN CAPITAL LETTER I WITH OGONEK\n012F\ti\t# LATIN SMALL LETTER I WITH OGONEK\n0130\tI\t# LATIN CAPITAL LETTER I WITH DOT ABOVE\n0131\ti\t# LATIN SMALL LETTER DOTLESS I\n0132\tIJ\t# LATIN CAPITAL LIGATURE IJ\n0133\tij\t# LATIN SMALL LIGATURE IJ\n0134\t^J\t# LATIN CAPITAL LETTER J WITH CIRCUMFLEX\n0135\t^j\t# LATIN SMALL LETTER J WITH CIRCUMFLEX\n0136\tK\t# LATIN CAPITAL LETTER K WITH CEDILLA\n0137\tk\t# LATIN SMALL LETTER K WITH CEDILLA\n0138\t\t# LATIN SMALL LETTER KRA\n0139\tL\t# LATIN CAPITAL LETTER L WITH ACUTE\n013A\tl\t# LATIN SMALL LETTER L WITH ACUTE\n013B\tL\t# LATIN CAPITAL LETTER L WITH CEDILLA\n013C\tl\t# LATIN SMALL LETTER L WITH CEDILLA\n013D\tL\t# LATIN CAPITAL LETTER L WITH CARON\n013E\tl\t# LATIN SMALL LETTER L WITH CARON\n013F\tL\t# LATIN CAPITAL LETTER L WITH MIDDLE DOT\n0140\tl\t# LATIN SMALL LETTER L WITH MIDDLE DOT\n0141\tL\t# LATIN CAPITAL LETTER L WITH STROKE\n0142\tl\t# LATIN SMALL LETTER L WITH STROKE\n0143\t´N\t# LATIN CAPITAL LETTER N WITH ACUTE\n0144\t´n\t# LATIN SMALL LETTER N WITH ACUTE\n0145\tN\t# LATIN CAPITAL LETTER N WITH CEDILLA\n0146\tn\t# LATIN SMALL LETTER N WITH CEDILLA\n0147\tN\t# LATIN CAPITAL LETTER N WITH CARON\n0148\tn\t# LATIN SMALL LETTER N WITH CARON\n0149\t'n\t# LATIN SMALL LETTER N PRECEDED BY APOSTROPHE\n014A\t\t# LATIN CAPITAL LETTER ENG\n014B\t\t# LATIN SMALL LETTER ENG\n014C\tO\t# LATIN CAPITAL LETTER O WITH MACRON\n014D\to\t# LATIN SMALL LETTER O WITH MACRON\n014E\tO\t# LATIN CAPITAL LETTER O WITH BREVE\n014F\to\t# LATIN SMALL LETTER O WITH BREVE\n0150\t\"O\t# LATIN CAPITAL LETTER O WITH DOUBLE ACUTE\n0151\t\"o\t# LATIN SMALL LETTER O WITH DOUBLE ACUTE\n0152\tOE\t# LATIN CAPITAL LIGATURE OE\n0153\toe\t# LATIN SMALL LIGATURE OE\n0154\t´R\t# LATIN CAPITAL LETTER R WITH ACUTE\n0155\t´r\t# LATIN SMALL LETTER R WITH ACUTE\n0156\tR\t# LATIN CAPITAL LETTER R WITH CEDILLA\n0157\tr\t# LATIN SMALL LETTER R WITH CEDILLA\n0158\tR\t# LATIN CAPITAL LETTER R WITH CARON\n0159\tr\t# LATIN SMALL LETTER R WITH CARON\n015A\t´S\t# LATIN CAPITAL LETTER S WITH ACUTE\n015B\t´s\t# LATIN SMALL LETTER S WITH ACUTE\n015C\t^S\t# LATIN CAPITAL LETTER S WITH CIRCUMFLEX\n015D\t^s\t# LATIN SMALL LETTER S WITH CIRCUMFLEX\n015E\tS\t# LATIN CAPITAL LETTER S WITH CEDILLA\n015F\ts\t# LATIN SMALL LETTER S WITH CEDILLA\n0160\tS\t# LATIN CAPITAL LETTER S WITH CARON\n0161\ts\t# LATIN SMALL LETTER S WITH CARON\n0162\tT\t# LATIN CAPITAL LETTER T WITH CEDILLA\n0163\tt\t# LATIN SMALL LETTER T WITH CEDILLA\n0164\tT\t# LATIN CAPITAL LETTER T WITH CARON\n0165\tt\t# LATIN SMALL LETTER T WITH CARON\n0166\tT\t# LATIN CAPITAL LETTER T WITH STROKE\n0167\tt\t# LATIN SMALL LETTER T WITH STROKE\n0168\t~U\t# LATIN CAPITAL LETTER U WITH TILDE\n0169\t~u\t# LATIN SMALL LETTER U WITH TILDE\n016A\tU\t# LATIN CAPITAL LETTER U WITH MACRON\n016B\tu\t# LATIN SMALL LETTER U WITH MACRON\n016C\tU\t# LATIN CAPITAL LETTER U WITH BREVE\n016D\tu\t# LATIN SMALL LETTER U WITH BREVE\n016E\tU\t# LATIN CAPITAL LETTER U WITH RING ABOVE\n016F\tu\t# LATIN SMALL LETTER U WITH RING ABOVE\n0170\t\"U\t# LATIN CAPITAL LETTER U WITH DOUBLE ACUTE\n0171\t\"u\t# LATIN SMALL LETTER U WITH DOUBLE ACUTE\n0172\tU\t# LATIN CAPITAL LETTER U WITH OGONEK\n0173\tu\t# LATIN SMALL LETTER U WITH OGONEK\n0174\t^W\t# LATIN CAPITAL LETTER W WITH CIRCUMFLEX\n0175\t^w\t# LATIN SMALL LETTER W WITH CIRCUMFLEX\n0176\t^Y\t# LATIN CAPITAL LETTER Y WITH CIRCUMFLEX\n0177\t^y\t# LATIN SMALL LETTER Y WITH CIRCUMFLEX\n0178\t\"Y\t# LATIN CAPITAL LETTER Y WITH DIAERESIS\n0179\t´Z\t# LATIN CAPITAL LETTER Z WITH ACUTE\n017A\t´z\t# LATIN SMALL LETTER Z WITH ACUTE\n017B\tZ\t# LATIN CAPITAL LETTER Z WITH DOT ABOVE\n017C\tz\t# LATIN SMALL LETTER Z WITH DOT ABOVE\n017D\tZ\t# LATIN CAPITAL LETTER Z WITH CARON\n017E\tz\t# LATIN SMALL LETTER Z WITH CARON\n017F\ts\t# LATIN SMALL LETTER LONG S\n018F\t\t# LATIN CAPITAL LETTER SCHWA\n0192\tf\t# LATIN SMALL LETTER F WITH HOOK\n01C4\tDŽ\t# LATIN CAPITAL LETTER DZ WITH CARON\n01C5\tDž\t# LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON\n01C6\tdž\t# LATIN SMALL LETTER DZ WITH CARON\n01C7\tLJ\t# LATIN CAPITAL LETTER LJ\n01C8\tLj\t# LATIN CAPITAL LETTER L WITH SMALL LETTER J\n01C9\tlj\t# LATIN SMALL LETTER LJ\n01CA\tNJ\t# LATIN CAPITAL LETTER NJ\n01CB\tNj\t# LATIN CAPITAL LETTER N WITH SMALL LETTER J\n01CC\tnj\t# LATIN SMALL LETTER NJ\n01F1\tDZ\t# LATIN CAPITAL LETTER DZ\n01F2\tDz\t# LATIN CAPITAL LETTER D WITH SMALL LETTER Z\n01F3\tdz\t# LATIN SMALL LETTER DZ\n0218\tS\t# LATIN CAPITAL LETTER S WITH COMMA BELOW\n0219\ts\t# LATIN SMALL LETTER S WITH COMMA BELOW\n021A\tT\t# LATIN CAPITAL LETTER T WITH COMMA BELOW\n021B\tt\t# LATIN SMALL LETTER T WITH COMMA BELOW\n0259\t\t# LATIN SMALL LETTER SCHWA\n02B9\t′\t# MODIFIER LETTER PRIME\n02BA\t″\t# MODIFIER LETTER DOUBLE PRIME\n02BB\t‘\t# MODIFIER LETTER TURNED COMMA\n02BC\t’\t# MODIFIER LETTER APOSTROPHE\n02BD\t‛\t# MODIFIER LETTER REVERSED COMMA\n02C6\t^\t# MODIFIER LETTER CIRCUMFLEX ACCENT\n02C7\t\t# CARON\n02C8\t'\t# MODIFIER LETTER VERTICAL LINE\n02C9\t¯\t# MODIFIER LETTER MACRON\n02CA\t´\t# MODIFIER LETTER ACUTE ACCENT\n02CB\t`\t# MODIFIER LETTER GRAVE ACCENT\n02CD\t_\t# MODIFIER LETTER LOW MACRON\n02D8\t\t# BREVE\n02D9\t\t# DOT ABOVE\n02DA\t\t# RING ABOVE\n02DB\t\t# OGONEK\n02DC\t~\t# SMALL TILDE\n02DD\t\"\t# DOUBLE ACUTE ACCENT\n0374\t\t# GREEK NUMERAL SIGN\n0375\t\t# GREEK LOWER NUMERAL SIGN\n037A\t\t# GREEK YPOGEGRAMMENI\n037E\t\t# GREEK QUESTION MARK\n0384\t\t# GREEK TONOS\n0385\t\t# GREEK DIALYTIKA TONOS\n0386\t\t# GREEK CAPITAL LETTER ALPHA WITH TONOS\n0387\t\t# GREEK ANO TELEIA\n0388\t\t# GREEK CAPITAL LETTER EPSILON WITH TONOS\n0389\t\t# GREEK CAPITAL LETTER ETA WITH TONOS\n038A\t\t# GREEK CAPITAL LETTER IOTA WITH TONOS\n038C\t\t# GREEK CAPITAL LETTER OMICRON WITH TONOS\n038E\t\t# GREEK CAPITAL LETTER UPSILON WITH TONOS\n038F\t\t# GREEK CAPITAL LETTER OMEGA WITH TONOS\n0390\t\t# GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS\n0391\t\t# GREEK CAPITAL LETTER ALPHA\n0392\t\t# GREEK CAPITAL LETTER BETA\n0393\t\t# GREEK CAPITAL LETTER GAMMA\n0394\t\t# GREEK CAPITAL LETTER DELTA\n0395\t\t# GREEK CAPITAL LETTER EPSILON\n0396\t\t# GREEK CAPITAL LETTER ZETA\n0397\t\t# GREEK CAPITAL LETTER ETA\n0398\t\t# GREEK CAPITAL LETTER THETA\n0399\t\t# GREEK CAPITAL LETTER IOTA\n039A\t\t# GREEK CAPITAL LETTER KAPPA\n039B\t\t# GREEK CAPITAL LETTER LAMDA\n039C\t\t# GREEK CAPITAL LETTER MU\n039D\t\t# GREEK CAPITAL LETTER NU\n039E\t\t# GREEK CAPITAL LETTER XI\n039F\t\t# GREEK CAPITAL LETTER OMICRON\n03A0\t\t# GREEK CAPITAL LETTER PI\n03A1\t\t# GREEK CAPITAL LETTER RHO\n03A3\t\t# GREEK CAPITAL LETTER SIGMA\n03A4\t\t# GREEK CAPITAL LETTER TAU\n03A5\t\t# GREEK CAPITAL LETTER UPSILON\n03A6\t\t# GREEK CAPITAL LETTER PHI\n03A7\t\t# GREEK CAPITAL LETTER CHI\n03A8\t\t# GREEK CAPITAL LETTER PSI\n03A9\t\t# GREEK CAPITAL LETTER OMEGA\n03AA\t\t# GREEK CAPITAL LETTER IOTA WITH DIALYTIKA\n03AB\t\t# GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA\n03AC\t\t# GREEK SMALL LETTER ALPHA WITH TONOS\n03AD\t\t# GREEK SMALL LETTER EPSILON WITH TONOS\n03AE\t\t# GREEK SMALL LETTER ETA WITH TONOS\n03AF\t\t# GREEK SMALL LETTER IOTA WITH TONOS\n03B0\t\t# GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS\n03B1\t\t# GREEK SMALL LETTER ALPHA\n03B2\t\t# GREEK SMALL LETTER BETA\n03B3\t\t# GREEK SMALL LETTER GAMMA\n03B4\t\t# GREEK SMALL LETTER DELTA\n03B5\t\t# GREEK SMALL LETTER EPSILON\n03B6\t\t# GREEK SMALL LETTER ZETA\n03B7\t\t# GREEK SMALL LETTER ETA\n03B8\t\t# GREEK SMALL LETTER THETA\n03B9\t\t# GREEK SMALL LETTER IOTA\n03BA\t\t# GREEK SMALL LETTER KAPPA\n03BB\t\t# GREEK SMALL LETTER LAMDA\n03BC\t\t# GREEK SMALL LETTER MU\n03BD\t\t# GREEK SMALL LETTER NU\n03BE\t\t# GREEK SMALL LETTER XI\n03BF\t\t# GREEK SMALL LETTER OMICRON\n03C0\t\t# GREEK SMALL LETTER PI\n03C1\t\t# GREEK SMALL LETTER RHO\n03C2\t\t# GREEK SMALL LETTER FINAL SIGMA\n03C3\t\t# GREEK SMALL LETTER SIGMA\n03C4\t\t# GREEK SMALL LETTER TAU\n03C5\t\t# GREEK SMALL LETTER UPSILON\n03C6\t\t# GREEK SMALL LETTER PHI\n03C7\t\t# GREEK SMALL LETTER CHI\n03C8\t\t# GREEK SMALL LETTER PSI\n03C9\t\t# GREEK SMALL LETTER OMEGA\n03CA\t\t# GREEK SMALL LETTER IOTA WITH DIALYTIKA\n03CB\t\t# GREEK SMALL LETTER UPSILON WITH DIALYTIKA\n03CC\t\t# GREEK SMALL LETTER OMICRON WITH TONOS\n03CD\t\t# GREEK SMALL LETTER UPSILON WITH TONOS\n03CE\t\t# GREEK SMALL LETTER OMEGA WITH TONOS\n03D0\tβ\t# GREEK BETA SYMBOL\n03D1\tθ\t# GREEK THETA SYMBOL\n03D2\tΥ\t# GREEK UPSILON WITH HOOK SYMBOL\n03D5\tφ\t# GREEK PHI SYMBOL\n03D6\tπ\t# GREEK PI SYMBOL\n03F0\tκ\t# GREEK KAPPA SYMBOL\n03F1\tρ\t# GREEK RHO SYMBOL\n03F2\tς\t# GREEK LUNATE SIGMA SYMBOL\n03F4\tΘ\t# GREEK CAPITAL THETA SYMBOL\n03F5\tε\t# GREEK LUNATE EPSILON SYMBOL\n03F9\tΣ\t# GREEK CAPITAL LUNATE SIGMA SYMBOL\n0401\t\t# CYRILLIC CAPITAL LETTER IO\n0402\t\t# CYRILLIC CAPITAL LETTER DJE\n0403\t\t# CYRILLIC CAPITAL LETTER GJE\n0404\t\t# CYRILLIC CAPITAL LETTER UKRAINIAN IE\n0405\t\t# CYRILLIC CAPITAL LETTER DZE\n0406\t\t# CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I\n0407\t\t# CYRILLIC CAPITAL LETTER YI\n0408\t\t# CYRILLIC CAPITAL LETTER JE\n0409\t\t# CYRILLIC CAPITAL LETTER LJE\n040A\t\t# CYRILLIC CAPITAL LETTER NJE\n040B\t\t# CYRILLIC CAPITAL LETTER TSHE\n040C\t\t# CYRILLIC CAPITAL LETTER KJE\n040E\t\t# CYRILLIC CAPITAL LETTER SHORT U\n040F\t\t# CYRILLIC CAPITAL LETTER DZHE\n0410\t\t# CYRILLIC CAPITAL LETTER A\n0411\t\t# CYRILLIC CAPITAL LETTER BE\n0412\t\t# CYRILLIC CAPITAL LETTER VE\n0413\t\t# CYRILLIC CAPITAL LETTER GHE\n0414\t\t# CYRILLIC CAPITAL LETTER DE\n0415\t\t# CYRILLIC CAPITAL LETTER IE\n0416\t\t# CYRILLIC CAPITAL LETTER ZHE\n0417\t\t# CYRILLIC CAPITAL LETTER ZE\n0418\t\t# CYRILLIC CAPITAL LETTER I\n0419\t\t# CYRILLIC CAPITAL LETTER SHORT I\n041A\t\t# CYRILLIC CAPITAL LETTER KA\n041B\t\t# CYRILLIC CAPITAL LETTER EL\n041C\t\t# CYRILLIC CAPITAL LETTER EM\n041D\t\t# CYRILLIC CAPITAL LETTER EN\n041E\t\t# CYRILLIC CAPITAL LETTER O\n041F\t\t# CYRILLIC CAPITAL LETTER PE\n0420\t\t# CYRILLIC CAPITAL LETTER ER\n0421\t\t# CYRILLIC CAPITAL LETTER ES\n0422\t\t# CYRILLIC CAPITAL LETTER TE\n0423\t\t# CYRILLIC CAPITAL LETTER U\n0424\t\t# CYRILLIC CAPITAL LETTER EF\n0425\t\t# CYRILLIC CAPITAL LETTER HA\n0426\t\t# CYRILLIC CAPITAL LETTER TSE\n0427\t\t# CYRILLIC CAPITAL LETTER CHE\n0428\t\t# CYRILLIC CAPITAL LETTER SHA\n0429\t\t# CYRILLIC CAPITAL LETTER SHCHA\n042A\t\t# CYRILLIC CAPITAL LETTER HARD SIGN\n042B\t\t# CYRILLIC CAPITAL LETTER YERU\n042C\t\t# CYRILLIC CAPITAL LETTER SOFT SIGN\n042D\t\t# CYRILLIC CAPITAL LETTER E\n042E\t\t# CYRILLIC CAPITAL LETTER YU\n042F\t\t# CYRILLIC CAPITAL LETTER YA\n0430\t\t# CYRILLIC SMALL LETTER A\n0431\t\t# CYRILLIC SMALL LETTER BE\n0432\t\t# CYRILLIC SMALL LETTER VE\n0433\t\t# CYRILLIC SMALL LETTER GHE\n0434\t\t# CYRILLIC SMALL LETTER DE\n0435\t\t# CYRILLIC SMALL LETTER IE\n0436\t\t# CYRILLIC SMALL LETTER ZHE\n0437\t\t# CYRILLIC SMALL LETTER ZE\n0438\t\t# CYRILLIC SMALL LETTER I\n0439\t\t# CYRILLIC SMALL LETTER SHORT I\n043A\t\t# CYRILLIC SMALL LETTER KA\n043B\t\t# CYRILLIC SMALL LETTER EL\n043C\t\t# CYRILLIC SMALL LETTER EM\n043D\t\t# CYRILLIC SMALL LETTER EN\n043E\t\t# CYRILLIC SMALL LETTER O\n043F\t\t# CYRILLIC SMALL LETTER PE\n0440\t\t# CYRILLIC SMALL LETTER ER\n0441\t\t# CYRILLIC SMALL LETTER ES\n0442\t\t# CYRILLIC SMALL LETTER TE\n0443\t\t# CYRILLIC SMALL LETTER U\n0444\t\t# CYRILLIC SMALL LETTER EF\n0445\t\t# CYRILLIC SMALL LETTER HA\n0446\t\t# CYRILLIC SMALL LETTER TSE\n0447\t\t# CYRILLIC SMALL LETTER CHE\n0448\t\t# CYRILLIC SMALL LETTER SHA\n0449\t\t# CYRILLIC SMALL LETTER SHCHA\n044A\t\t# CYRILLIC SMALL LETTER HARD SIGN\n044B\t\t# CYRILLIC SMALL LETTER YERU\n044C\t\t# CYRILLIC SMALL LETTER SOFT SIGN\n044D\t\t# CYRILLIC SMALL LETTER E\n044E\t\t# CYRILLIC SMALL LETTER YU\n044F\t\t# CYRILLIC SMALL LETTER YA\n0451\t\t# CYRILLIC SMALL LETTER IO\n0452\t\t# CYRILLIC SMALL LETTER DJE\n0453\t\t# CYRILLIC SMALL LETTER GJE\n0454\t\t# CYRILLIC SMALL LETTER UKRAINIAN IE\n0455\t\t# CYRILLIC SMALL LETTER DZE\n0456\t\t# CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I\n0457\t\t# CYRILLIC SMALL LETTER YI\n0458\t\t# CYRILLIC SMALL LETTER JE\n0459\t\t# CYRILLIC SMALL LETTER LJE\n045A\t\t# CYRILLIC SMALL LETTER NJE\n045B\t\t# CYRILLIC SMALL LETTER TSHE\n045C\t\t# CYRILLIC SMALL LETTER KJE\n045E\t\t# CYRILLIC SMALL LETTER SHORT U\n045F\t\t# CYRILLIC SMALL LETTER DZHE\n0490\t\t# CYRILLIC CAPITAL LETTER GHE WITH UPTURN\n0491\t\t# CYRILLIC SMALL LETTER GHE WITH UPTURN\n0587\tեւ\t# ARMENIAN SMALL LIGATURE ECH YIWN\n05D0\t\t# HEBREW LETTER ALEF\n05D1\t\t# HEBREW LETTER BET\n05D2\t\t# HEBREW LETTER GIMEL\n05D3\t\t# HEBREW LETTER DALET\n05D4\t\t# HEBREW LETTER HE\n05D5\t\t# HEBREW LETTER VAV\n05D6\t\t# HEBREW LETTER ZAYIN\n05D7\t\t# HEBREW LETTER HET\n05D8\t\t# HEBREW LETTER TET\n05D9\t\t# HEBREW LETTER YOD\n05DA\t\t# HEBREW LETTER FINAL KAF\n05DB\t\t# HEBREW LETTER KAF\n05DC\t\t# HEBREW LETTER LAMED\n05DD\t\t# HEBREW LETTER FINAL MEM\n05DE\t\t# HEBREW LETTER MEM\n05DF\t\t# HEBREW LETTER FINAL NUN\n05E0\t\t# HEBREW LETTER NUN\n05E1\t\t# HEBREW LETTER SAMEKH\n05E2\t\t# HEBREW LETTER AYIN\n05E3\t\t# HEBREW LETTER FINAL PE\n05E4\t\t# HEBREW LETTER PE\n05E5\t\t# HEBREW LETTER FINAL TSADI\n05E6\t\t# HEBREW LETTER TSADI\n05E7\t\t# HEBREW LETTER QOF\n05E8\t\t# HEBREW LETTER RESH\n05E9\t\t# HEBREW LETTER SHIN\n05EA\t\t# HEBREW LETTER TAV\n05F0\tוו\t# HEBREW LIGATURE YIDDISH DOUBLE VAV\n05F1\tוי\t# HEBREW LIGATURE YIDDISH VAV YOD\n05F2\tיי\t# HEBREW LIGATURE YIDDISH DOUBLE YOD\n0675\tاٴ\t# ARABIC LETTER HIGH HAMZA ALEF\n0676\tوٴ\t# ARABIC LETTER HIGH HAMZA WAW\n0677\tۇٴ\t# ARABIC LETTER U WITH HAMZA ABOVE\n0678\tيٴ\t# ARABIC LETTER HIGH HAMZA YEH\n0E33\tํา\t# THAI CHARACTER SARA AM\n0EB3\tໍາ\t# LAO VOWEL SIGN AM\n0EDC\tຫນ\t# LAO HO NO\n0EDD\tຫມ\t# LAO HO MO\n0F77\tྲཱྀ\t# TIBETAN VOWEL SIGN VOCALIC RR\n0F79\tླཱྀ\t# TIBETAN VOWEL SIGN VOCALIC LL\n1E02\tB\t# LATIN CAPITAL LETTER B WITH DOT ABOVE\n1E03\tb\t# LATIN SMALL LETTER B WITH DOT ABOVE\n1E0A\tD\t# LATIN CAPITAL LETTER D WITH DOT ABOVE\n1E0B\td\t# LATIN SMALL LETTER D WITH DOT ABOVE\n1E1E\tF\t# LATIN CAPITAL LETTER F WITH DOT ABOVE\n1E1F\tf\t# LATIN SMALL LETTER F WITH DOT ABOVE\n1E40\tM\t# LATIN CAPITAL LETTER M WITH DOT ABOVE\n1E41\tm\t# LATIN SMALL LETTER M WITH DOT ABOVE\n1E56\tP\t# LATIN CAPITAL LETTER P WITH DOT ABOVE\n1E57\tp\t# LATIN SMALL LETTER P WITH DOT ABOVE\n1E60\tS\t# LATIN CAPITAL LETTER S WITH DOT ABOVE\n1E61\ts\t# LATIN SMALL LETTER S WITH DOT ABOVE\n1E6A\tT\t# LATIN CAPITAL LETTER T WITH DOT ABOVE\n1E6B\tt\t# LATIN SMALL LETTER T WITH DOT ABOVE\n1E80\t`W\t# LATIN CAPITAL LETTER W WITH GRAVE\n1E81\t`w\t# LATIN SMALL LETTER W WITH GRAVE\n1E82\t´W\t# LATIN CAPITAL LETTER W WITH ACUTE\n1E83\t´w\t# LATIN SMALL LETTER W WITH ACUTE\n1E84\t\"W\t# LATIN CAPITAL LETTER W WITH DIAERESIS\n1E85\t\"w\t# LATIN SMALL LETTER W WITH DIAERESIS\n1E9A\taʾ\t# LATIN SMALL LETTER A WITH RIGHT HALF RING\n1EF2\t`Y\t# LATIN CAPITAL LETTER Y WITH GRAVE\n1EF3\t`y\t# LATIN SMALL LETTER Y WITH GRAVE\n2002\t \t# EN SPACE\n2003\t \t# EM SPACE\n2004\t \t# THREE-PER-EM SPACE\n2005\t \t# FOUR-PER-EM SPACE\n2006\t \t# SIX-PER-EM SPACE\n2008\t \t# PUNCTUATION SPACE\n2009\t \t# THIN SPACE\n200A\t \t# HAIR SPACE\n2010\t-\t# HYPHEN\n2011\t-\t# NON-BREAKING HYPHEN\n2012\t-\t# FIGURE DASH\n2013\t-\t# EN DASH\n2014\t-\t# EM DASH\n2015\t-\t# HORIZONTAL BAR\n2016\t\t# DOUBLE VERTICAL LINE\n2017\t\t# DOUBLE LOW LINE\n2018\t'\t# LEFT SINGLE QUOTATION MARK\n2019\t'\t# RIGHT SINGLE QUOTATION MARK\n201A\t,\t# SINGLE LOW-9 QUOTATION MARK\n201B\t'\t# SINGLE HIGH-REVERSED-9 QUOTATION MARK\n201C\t\"\t# LEFT DOUBLE QUOTATION MARK\n201D\t\"\t# RIGHT DOUBLE QUOTATION MARK\n201E\t\"\t# DOUBLE LOW-9 QUOTATION MARK\n201F\t\"\t# DOUBLE HIGH-REVERSED-9 QUOTATION MARK\n2020\t+\t# DAGGER\n2021\t\t# DOUBLE DAGGER\n2022\to\t# BULLET\n2024\t.\t# ONE DOT LEADER\n2025\t..\t# TWO DOT LEADER\n2026\t...\t# HORIZONTAL ELLIPSIS\n2030\to/oo\t# PER MILLE SIGN\n2032\t´\t# PRIME\n2033\t´´\t# DOUBLE PRIME\n2034\t´´´\t# TRIPLE PRIME\n2036\t‵‵\t# REVERSED DOUBLE PRIME\n2037\t‵‵‵\t# REVERSED TRIPLE PRIME\n2039\t<\t# SINGLE LEFT-POINTING ANGLE QUOTATION MARK\n203A\t>\t# SINGLE RIGHT-POINTING ANGLE QUOTATION MARK\n203C\t!!\t# DOUBLE EXCLAMATION MARK\n203E\t\t# OVERLINE\n2044\t/\t# FRACTION SLASH\n2047\t??\t# DOUBLE QUESTION MARK\n2048\t?!\t# QUESTION EXCLAMATION MARK\n2049\t!?\t# EXCLAMATION QUESTION MARK\n2057\t´´´´\t# QUADRUPLE PRIME\n20A8\tRs\t# RUPEE SIGN\n20AB\tĐồng\t# DONG SIGN\n20AC\tEUR\t# EURO SIGN\n2100\ta/c\t# ACCOUNT OF\n2101\ta/s\t# ADDRESSED TO THE SUBJECT\n2102\tC\t# DOUBLE-STRUCK CAPITAL C\n2103\t°C\t# DEGREE CELSIUS\n2105\tc/o\t# CARE OF\n2106\tc/u\t# CADA UNA\n2107\tƐ\t# EULER CONSTANT\n2109\t°F\t# DEGREE FAHRENHEIT\n210A\tg\t# SCRIPT SMALL G\n210B\tH\t# SCRIPT CAPITAL H\n210C\tH\t# BLACK-LETTER CAPITAL H\n210D\tH\t# DOUBLE-STRUCK CAPITAL H\n210E\th\t# PLANCK CONSTANT\n210F\tħ\t# PLANCK CONSTANT OVER TWO PI\n2110\tI\t# SCRIPT CAPITAL I\n2111\tI\t# BLACK-LETTER CAPITAL I\n2112\tL\t# SCRIPT CAPITAL L\n2113\tl\t# SCRIPT SMALL L\n2115\tN\t# DOUBLE-STRUCK CAPITAL N\n2116\tNo\t# NUMERO SIGN\n2119\tP\t# DOUBLE-STRUCK CAPITAL P\n211A\tQ\t# DOUBLE-STRUCK CAPITAL Q\n211B\tR\t# SCRIPT CAPITAL R\n211C\tR\t# BLACK-LETTER CAPITAL R\n211D\tR\t# DOUBLE-STRUCK CAPITAL R\n2121\tTEL\t# TELEPHONE SIGN\n2122\tTM\t# TRADE MARK SIGN\n2124\tZ\t# DOUBLE-STRUCK CAPITAL Z\n2126\tOhm\t# OHM SIGN\n2128\tZ\t# BLACK-LETTER CAPITAL Z\n212C\tB\t# SCRIPT CAPITAL B\n212D\tC\t# BLACK-LETTER CAPITAL C\n212E\te\t# ESTIMATED SYMBOL\n212F\te\t# SCRIPT SMALL E\n2130\tE\t# SCRIPT CAPITAL E\n2131\tF\t# SCRIPT CAPITAL F\n2133\tM\t# SCRIPT CAPITAL M\n2134\to\t# SCRIPT SMALL O\n2135\tא\t# ALEF SYMBOL\n2136\tב\t# BET SYMBOL\n2137\tג\t# GIMEL SYMBOL\n2138\tד\t# DALET SYMBOL\n2139\ti\t# INFORMATION SOURCE\n213B\tFAX\t# FACSIMILE SIGN\n213D\tγ\t# DOUBLE-STRUCK SMALL GAMMA\n213E\tΓ\t# DOUBLE-STRUCK CAPITAL GAMMA\n213F\tΠ\t# DOUBLE-STRUCK CAPITAL PI\n2140\t∑\t# DOUBLE-STRUCK N-ARY SUMMATION\n2145\tD\t# DOUBLE-STRUCK ITALIC CAPITAL D\n2146\td\t# DOUBLE-STRUCK ITALIC SMALL D\n2147\te\t# DOUBLE-STRUCK ITALIC SMALL E\n2148\ti\t# DOUBLE-STRUCK ITALIC SMALL I\n2149\tj\t# DOUBLE-STRUCK ITALIC SMALL J\n2153\t 1⁄3 \t# VULGAR FRACTION ONE THIRD\n2154\t 2⁄3 \t# VULGAR FRACTION TWO THIRDS\n2155\t 1⁄5 \t# VULGAR FRACTION ONE FIFTH\n2156\t 2⁄5 \t# VULGAR FRACTION TWO FIFTHS\n2157\t 3⁄5 \t# VULGAR FRACTION THREE FIFTHS\n2158\t 4⁄5 \t# VULGAR FRACTION FOUR FIFTHS\n2159\t 1⁄6 \t# VULGAR FRACTION ONE SIXTH\n215A\t 5⁄6 \t# VULGAR FRACTION FIVE SIXTHS\n215B\t 1⁄8 \t# VULGAR FRACTION ONE EIGHTH\n215C\t 3⁄8 \t# VULGAR FRACTION THREE EIGHTHS\n215D\t 5⁄8 \t# VULGAR FRACTION FIVE EIGHTHS\n215E\t 7⁄8 \t# VULGAR FRACTION SEVEN EIGHTHS\n215F\t 1⁄\t# FRACTION NUMERATOR ONE\n2160\tI\t# ROMAN NUMERAL ONE\n2161\tII\t# ROMAN NUMERAL TWO\n2162\tIII\t# ROMAN NUMERAL THREE\n2163\tIV\t# ROMAN NUMERAL FOUR\n2164\tV\t# ROMAN NUMERAL FIVE\n2165\tVI\t# ROMAN NUMERAL SIX\n2166\tVII\t# ROMAN NUMERAL SEVEN\n2167\tVIII\t# ROMAN NUMERAL EIGHT\n2168\tIX\t# ROMAN NUMERAL NINE\n2169\tX\t# ROMAN NUMERAL TEN\n216A\tXI\t# ROMAN NUMERAL ELEVEN\n216B\tXII\t# ROMAN NUMERAL TWELVE\n216C\tL\t# ROMAN NUMERAL FIFTY\n216D\tC\t# ROMAN NUMERAL ONE HUNDRED\n216E\tD\t# ROMAN NUMERAL FIVE HUNDRED\n216F\tM\t# ROMAN NUMERAL ONE THOUSAND\n2170\ti\t# SMALL ROMAN NUMERAL ONE\n2171\tii\t# SMALL ROMAN NUMERAL TWO\n2172\tiii\t# SMALL ROMAN NUMERAL THREE\n2173\tiv\t# SMALL ROMAN NUMERAL FOUR\n2174\tv\t# SMALL ROMAN NUMERAL FIVE\n2175\tvi\t# SMALL ROMAN NUMERAL SIX\n2176\tvii\t# SMALL ROMAN NUMERAL SEVEN\n2177\tviii\t# SMALL ROMAN NUMERAL EIGHT\n2178\tix\t# SMALL ROMAN NUMERAL NINE\n2179\tx\t# SMALL ROMAN NUMERAL TEN\n217A\txi\t# SMALL ROMAN NUMERAL ELEVEN\n217B\txii\t# SMALL ROMAN NUMERAL TWELVE\n217C\tl\t# SMALL ROMAN NUMERAL FIFTY\n217D\tc\t# SMALL ROMAN NUMERAL ONE HUNDRED\n217E\td\t# SMALL ROMAN NUMERAL FIVE HUNDRED\n217F\tm\t# SMALL ROMAN NUMERAL ONE THOUSAND\n2190\t<-\t# LEFTWARDS ARROW\n2191\t^\t# UPWARDS ARROW\n2192\t->\t# RIGHTWARDS ARROW\n2193\tV\t# DOWNWARDS ARROW\n2194\t<->\t# LEFT RIGHT ARROW\n21D0\t<=\t# LEFTWARDS DOUBLE ARROW\n21D2\t=>\t# RIGHTWARDS DOUBLE ARROW\n21D4\t<=>\t# LEFT RIGHT DOUBLE ARROW\n2212\t-\t# MINUS SIGN\n2215\t/\t# DIVISION SLASH\n2216\t\\\t# SET MINUS\n2217\t*\t# ASTERISK OPERATOR\n2219\t•\t# BULLET OPERATOR\n2223\t|\t# DIVIDES\n222C\t∫∫\t# DOUBLE INTEGRAL\n222D\t∫∫∫\t# TRIPLE INTEGRAL\n222F\t∮∮\t# SURFACE INTEGRAL\n2230\t∮∮∮\t# VOLUME INTEGRAL\n2236\t:\t# RATIO\n223C\t~\t# TILDE OPERATOR\n2260\t/=\t# NOT EQUAL TO\n2264\t<=\t# LESS-THAN OR EQUAL TO\n2265\t>=\t# GREATER-THAN OR EQUAL TO\n226A\t<<\t# MUCH LESS-THAN\n226B\t>>\t# MUCH GREATER-THAN\n22C5\t·\t# DOT OPERATOR\n22D8\t<<<\t# VERY MUCH LESS-THAN\n22D9\t>>>\t# VERY MUCH GREATER-THAN\n22EF\t···\t# MIDLINE HORIZONTAL ELLIPSIS\n2400\t[NUL]\t# SYMBOL FOR NULL\n2401\t[SOH]\t# SYMBOL FOR START OF HEADING\n2402\t[STX]\t# SYMBOL FOR START OF TEXT\n2403\t[ETX]\t# SYMBOL FOR END OF TEXT\n2404\t[EOT]\t# SYMBOL FOR END OF TRANSMISSION\n2405\t[ENQ]\t# SYMBOL FOR ENQUIRY\n2406\t[ACK]\t# SYMBOL FOR ACKNOWLEDGE\n2407\t[BEL]\t# SYMBOL FOR BELL\n2408\t[BS]\t# SYMBOL FOR BACKSPACE\n2409\t[HT]\t# SYMBOL FOR HORIZONTAL TABULATION\n240A\t[LF]\t# SYMBOL FOR LINE FEED\n240B\t[VT]\t# SYMBOL FOR VERTICAL TABULATION\n240C\t[FF]\t# SYMBOL FOR FORM FEED\n240D\t[CR]\t# SYMBOL FOR CARRIAGE RETURN\n240E\t[SO]\t# SYMBOL FOR SHIFT OUT\n240F\t[SI]\t# SYMBOL FOR SHIFT IN\n2410\t[DLE]\t# SYMBOL FOR DATA LINK ESCAPE\n2411\t[DC1]\t# SYMBOL FOR DEVICE CONTROL ONE\n2412\t[DC2]\t# SYMBOL FOR DEVICE CONTROL TWO\n2413\t[DC3]\t# SYMBOL FOR DEVICE CONTROL THREE\n2414\t[DC4]\t# SYMBOL FOR DEVICE CONTROL FOUR\n2415\t[NAK]\t# SYMBOL FOR NEGATIVE ACKNOWLEDGE\n2416\t[SYN]\t# SYMBOL FOR SYNCHRONOUS IDLE\n2417\t[ETB]\t# SYMBOL FOR END OF TRANSMISSION BLOCK\n2418\t[CAN]\t# SYMBOL FOR CANCEL\n2419\t[EM]\t# SYMBOL FOR END OF MEDIUM\n241A\t[SUB]\t# SYMBOL FOR SUBSTITUTE\n241B\t[ESC]\t# SYMBOL FOR ESCAPE\n241C\t[FS]\t# SYMBOL FOR FILE SEPARATOR\n241D\t[GS]\t# SYMBOL FOR GROUP SEPARATOR\n241E\t[RS]\t# SYMBOL FOR RECORD SEPARATOR\n241F\t[US]\t# SYMBOL FOR UNIT SEPARATOR\n2420\t[SP]\t# SYMBOL FOR SPACE\n2421\t[DEL]\t# SYMBOL FOR DELETE\n2424\t[NL]\t# SYMBOL FOR NEWLINE\n2460\t(1)\t# CIRCLED DIGIT ONE\n2461\t(2)\t# CIRCLED DIGIT TWO\n2462\t(3)\t# CIRCLED DIGIT THREE\n2463\t(4)\t# CIRCLED DIGIT FOUR\n2464\t(5)\t# CIRCLED DIGIT FIVE\n2465\t(6)\t# CIRCLED DIGIT SIX\n2466\t(7)\t# CIRCLED DIGIT SEVEN\n2467\t(8)\t# CIRCLED DIGIT EIGHT\n2468\t(9)\t# CIRCLED DIGIT NINE\n2469\t(10)\t# CIRCLED NUMBER TEN\n246A\t(11)\t# CIRCLED NUMBER ELEVEN\n246B\t(12)\t# CIRCLED NUMBER TWELVE\n246C\t(13)\t# CIRCLED NUMBER THIRTEEN\n246D\t(14)\t# CIRCLED NUMBER FOURTEEN\n246E\t(15)\t# CIRCLED NUMBER FIFTEEN\n246F\t(16)\t# CIRCLED NUMBER SIXTEEN\n2470\t(17)\t# CIRCLED NUMBER SEVENTEEN\n2471\t(18)\t# CIRCLED NUMBER EIGHTEEN\n2472\t(19)\t# CIRCLED NUMBER NINETEEN\n2473\t(20)\t# CIRCLED NUMBER TWENTY\n2474\t(1)\t# PARENTHESIZED DIGIT ONE\n2475\t(2)\t# PARENTHESIZED DIGIT TWO\n2476\t(3)\t# PARENTHESIZED DIGIT THREE\n2477\t(4)\t# PARENTHESIZED DIGIT FOUR\n2478\t(5)\t# PARENTHESIZED DIGIT FIVE\n2479\t(6)\t# PARENTHESIZED DIGIT SIX\n247A\t(7)\t# PARENTHESIZED DIGIT SEVEN\n247B\t(8)\t# PARENTHESIZED DIGIT EIGHT\n247C\t(9)\t# PARENTHESIZED DIGIT NINE\n247D\t(10)\t# PARENTHESIZED NUMBER TEN\n247E\t(11)\t# PARENTHESIZED NUMBER ELEVEN\n247F\t(12)\t# PARENTHESIZED NUMBER TWELVE\n2480\t(13)\t# PARENTHESIZED NUMBER THIRTEEN\n2481\t(14)\t# PARENTHESIZED NUMBER FOURTEEN\n2482\t(15)\t# PARENTHESIZED NUMBER FIFTEEN\n2483\t(16)\t# PARENTHESIZED NUMBER SIXTEEN\n2484\t(17)\t# PARENTHESIZED NUMBER SEVENTEEN\n2485\t(18)\t# PARENTHESIZED NUMBER EIGHTEEN\n2486\t(19)\t# PARENTHESIZED NUMBER NINETEEN\n2487\t(20)\t# PARENTHESIZED NUMBER TWENTY\n2488\t1.\t# DIGIT ONE FULL STOP\n2489\t2.\t# DIGIT TWO FULL STOP\n248A\t3.\t# DIGIT THREE FULL STOP\n248B\t4.\t# DIGIT FOUR FULL STOP\n248C\t5.\t# DIGIT FIVE FULL STOP\n248D\t6.\t# DIGIT SIX FULL STOP\n248E\t7.\t# DIGIT SEVEN FULL STOP\n248F\t8.\t# DIGIT EIGHT FULL STOP\n2490\t9.\t# DIGIT NINE FULL STOP\n2491\t10.\t# NUMBER TEN FULL STOP\n2492\t11.\t# NUMBER ELEVEN FULL STOP\n2493\t12.\t# NUMBER TWELVE FULL STOP\n2494\t13.\t# NUMBER THIRTEEN FULL STOP\n2495\t14.\t# NUMBER FOURTEEN FULL STOP\n2496\t15.\t# NUMBER FIFTEEN FULL STOP\n2497\t16.\t# NUMBER SIXTEEN FULL STOP\n2498\t17.\t# NUMBER SEVENTEEN FULL STOP\n2499\t18.\t# NUMBER EIGHTEEN FULL STOP\n249A\t19.\t# NUMBER NINETEEN FULL STOP\n249B\t20.\t# NUMBER TWENTY FULL STOP\n249C\t(a)\t# PARENTHESIZED LATIN SMALL LETTER A\n249D\t(b)\t# PARENTHESIZED LATIN SMALL LETTER B\n249E\t(c)\t# PARENTHESIZED LATIN SMALL LETTER C\n249F\t(d)\t# PARENTHESIZED LATIN SMALL LETTER D\n24A0\t(e)\t# PARENTHESIZED LATIN SMALL LETTER E\n24A1\t(f)\t# PARENTHESIZED LATIN SMALL LETTER F\n24A2\t(g)\t# PARENTHESIZED LATIN SMALL LETTER G\n24A3\t(h)\t# PARENTHESIZED LATIN SMALL LETTER H\n24A4\t(i)\t# PARENTHESIZED LATIN SMALL LETTER I\n24A5\t(j)\t# PARENTHESIZED LATIN SMALL LETTER J\n24A6\t(k)\t# PARENTHESIZED LATIN SMALL LETTER K\n24A7\t(l)\t# PARENTHESIZED LATIN SMALL LETTER L\n24A8\t(m)\t# PARENTHESIZED LATIN SMALL LETTER M\n24A9\t(n)\t# PARENTHESIZED LATIN SMALL LETTER N\n24AA\t(o)\t# PARENTHESIZED LATIN SMALL LETTER O\n24AB\t(p)\t# PARENTHESIZED LATIN SMALL LETTER P\n24AC\t(q)\t# PARENTHESIZED LATIN SMALL LETTER Q\n24AD\t(r)\t# PARENTHESIZED LATIN SMALL LETTER R\n24AE\t(s)\t# PARENTHESIZED LATIN SMALL LETTER S\n24AF\t(t)\t# PARENTHESIZED LATIN SMALL LETTER T\n24B0\t(u)\t# PARENTHESIZED LATIN SMALL LETTER U\n24B1\t(v)\t# PARENTHESIZED LATIN SMALL LETTER V\n24B2\t(w)\t# PARENTHESIZED LATIN SMALL LETTER W\n24B3\t(x)\t# PARENTHESIZED LATIN SMALL LETTER X\n24B4\t(y)\t# PARENTHESIZED LATIN SMALL LETTER Y\n24B5\t(z)\t# PARENTHESIZED LATIN SMALL LETTER Z\n24B6\t(A)\t# CIRCLED LATIN CAPITAL LETTER A\n24B7\t(B)\t# CIRCLED LATIN CAPITAL LETTER B\n24B8\t(C)\t# CIRCLED LATIN CAPITAL LETTER C\n24B9\t(D)\t# CIRCLED LATIN CAPITAL LETTER D\n24BA\t(E)\t# CIRCLED LATIN CAPITAL LETTER E\n24BB\t(F)\t# CIRCLED LATIN CAPITAL LETTER F\n24BC\t(G)\t# CIRCLED LATIN CAPITAL LETTER G\n24BD\t(H)\t# CIRCLED LATIN CAPITAL LETTER H\n24BE\t(I)\t# CIRCLED LATIN CAPITAL LETTER I\n24BF\t(J)\t# CIRCLED LATIN CAPITAL LETTER J\n24C0\t(K)\t# CIRCLED LATIN CAPITAL LETTER K\n24C1\t(L)\t# CIRCLED LATIN CAPITAL LETTER L\n24C2\t(M)\t# CIRCLED LATIN CAPITAL LETTER M\n24C3\t(N)\t# CIRCLED LATIN CAPITAL LETTER N\n24C4\t(O)\t# CIRCLED LATIN CAPITAL LETTER O\n24C5\t(P)\t# CIRCLED LATIN CAPITAL LETTER P\n24C6\t(Q)\t# CIRCLED LATIN CAPITAL LETTER Q\n24C7\t(R)\t# CIRCLED LATIN CAPITAL LETTER R\n24C8\t(S)\t# CIRCLED LATIN CAPITAL LETTER S\n24C9\t(T)\t# CIRCLED LATIN CAPITAL LETTER T\n24CA\t(U)\t# CIRCLED LATIN CAPITAL LETTER U\n24CB\t(V)\t# CIRCLED LATIN CAPITAL LETTER V\n24CC\t(W)\t# CIRCLED LATIN CAPITAL LETTER W\n24CD\t(X)\t# CIRCLED LATIN CAPITAL LETTER X\n24CE\t(Y)\t# CIRCLED LATIN CAPITAL LETTER Y\n24CF\t(Z)\t# CIRCLED LATIN CAPITAL LETTER Z\n24D0\t(a)\t# CIRCLED LATIN SMALL LETTER A\n24D1\t(b)\t# CIRCLED LATIN SMALL LETTER B\n24D2\t(c)\t# CIRCLED LATIN SMALL LETTER C\n24D3\t(d)\t# CIRCLED LATIN SMALL LETTER D\n24D4\t(e)\t# CIRCLED LATIN SMALL LETTER E\n24D5\t(f)\t# CIRCLED LATIN SMALL LETTER F\n24D6\t(g)\t# CIRCLED LATIN SMALL LETTER G\n24D7\t(h)\t# CIRCLED LATIN SMALL LETTER H\n24D8\t(i)\t# CIRCLED LATIN SMALL LETTER I\n24D9\t(j)\t# CIRCLED LATIN SMALL LETTER J\n24DA\t(k)\t# CIRCLED LATIN SMALL LETTER K\n24DB\t(l)\t# CIRCLED LATIN SMALL LETTER L\n24DC\t(m)\t# CIRCLED LATIN SMALL LETTER M\n24DD\t(n)\t# CIRCLED LATIN SMALL LETTER N\n24DE\t(o)\t# CIRCLED LATIN SMALL LETTER O\n24DF\t(p)\t# CIRCLED LATIN SMALL LETTER P\n24E0\t(q)\t# CIRCLED LATIN SMALL LETTER Q\n24E1\t(r)\t# CIRCLED LATIN SMALL LETTER R\n24E2\t(s)\t# CIRCLED LATIN SMALL LETTER S\n24E3\t(t)\t# CIRCLED LATIN SMALL LETTER T\n24E4\t(u)\t# CIRCLED LATIN SMALL LETTER U\n24E5\t(v)\t# CIRCLED LATIN SMALL LETTER V\n24E6\t(w)\t# CIRCLED LATIN SMALL LETTER W\n24E7\t(x)\t# CIRCLED LATIN SMALL LETTER X\n24E8\t(y)\t# CIRCLED LATIN SMALL LETTER Y\n24E9\t(z)\t# CIRCLED LATIN SMALL LETTER Z\n24EA\t(0)\t# CIRCLED DIGIT ZERO\n2500\t-\t# BOX DRAWINGS LIGHT HORIZONTAL\n2502\t|\t# BOX DRAWINGS LIGHT VERTICAL\n250C\t+\t# BOX DRAWINGS LIGHT DOWN AND RIGHT\n2510\t+\t# BOX DRAWINGS LIGHT DOWN AND LEFT\n2514\t+\t# BOX DRAWINGS LIGHT UP AND RIGHT\n2518\t+\t# BOX DRAWINGS LIGHT UP AND LEFT\n251C\t+\t# BOX DRAWINGS LIGHT VERTICAL AND RIGHT\n2524\t+\t# BOX DRAWINGS LIGHT VERTICAL AND LEFT\n252C\t+\t# BOX DRAWINGS LIGHT DOWN AND HORIZONTAL\n2534\t+\t# BOX DRAWINGS LIGHT UP AND HORIZONTAL\n253C\t+\t# BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL\n2592\t\t# MEDIUM SHADE\n25AE\t\t# BLACK VERTICAL RECTANGLE\n25C6\t\t# BLACK DIAMOND\n25E6\to\t# WHITE BULLET\n266A\t\t# EIGHTH NOTE\n2A0C\t∫∫∫∫\t# QUADRUPLE INTEGRAL OPERATOR\n2A74\t::=\t# DOUBLE COLON EQUAL\n2A75\t==\t# TWO CONSECUTIVE EQUALS SIGNS\n2A76\t===\t# THREE CONSECUTIVE EQUALS SIGNS\n2E9F\t母\t# CJK RADICAL MOTHER\n2EF3\t龟\t# CJK RADICAL C-SIMPLIFIED TURTLE\n2F00\t一\t# KANGXI RADICAL ONE\n2F01\t丨\t# KANGXI RADICAL LINE\n2F02\t丶\t# KANGXI RADICAL DOT\n2F03\t丿\t# KANGXI RADICAL SLASH\n2F04\t乙\t# KANGXI RADICAL SECOND\n2F05\t亅\t# KANGXI RADICAL HOOK\n2F06\t二\t# KANGXI RADICAL TWO\n2F07\t亠\t# KANGXI RADICAL LID\n2F08\t人\t# KANGXI RADICAL MAN\n2F09\t儿\t# KANGXI RADICAL LEGS\n2F0A\t入\t# KANGXI RADICAL ENTER\n2F0B\t八\t# KANGXI RADICAL EIGHT\n2F0C\t冂\t# KANGXI RADICAL DOWN BOX\n2F0D\t冖\t# KANGXI RADICAL COVER\n2F0E\t冫\t# KANGXI RADICAL ICE\n2F0F\t几\t# KANGXI RADICAL TABLE\n2F10\t凵\t# KANGXI RADICAL OPEN BOX\n2F11\t刀\t# KANGXI RADICAL KNIFE\n2F12\t力\t# KANGXI RADICAL POWER\n2F13\t勹\t# KANGXI RADICAL WRAP\n2F14\t匕\t# KANGXI RADICAL SPOON\n2F15\t匚\t# KANGXI RADICAL RIGHT OPEN BOX\n2F16\t匸\t# KANGXI RADICAL HIDING ENCLOSURE\n2F17\t十\t# KANGXI RADICAL TEN\n2F18\t卜\t# KANGXI RADICAL DIVINATION\n2F19\t卩\t# KANGXI RADICAL SEAL\n2F1A\t厂\t# KANGXI RADICAL CLIFF\n2F1B\t厶\t# KANGXI RADICAL PRIVATE\n2F1C\t又\t# KANGXI RADICAL AGAIN\n2F1D\t口\t# KANGXI RADICAL MOUTH\n2F1E\t囗\t# KANGXI RADICAL ENCLOSURE\n2F1F\t土\t# KANGXI RADICAL EARTH\n2F20\t士\t# KANGXI RADICAL SCHOLAR\n2F21\t夂\t# KANGXI RADICAL GO\n2F22\t夊\t# KANGXI RADICAL GO SLOWLY\n2F23\t夕\t# KANGXI RADICAL EVENING\n2F24\t大\t# KANGXI RADICAL BIG\n2F25\t女\t# KANGXI RADICAL WOMAN\n2F26\t子\t# KANGXI RADICAL CHILD\n2F27\t宀\t# KANGXI RADICAL ROOF\n2F28\t寸\t# KANGXI RADICAL INCH\n2F29\t小\t# KANGXI RADICAL SMALL\n2F2A\t尢\t# KANGXI RADICAL LAME\n2F2B\t尸\t# KANGXI RADICAL CORPSE\n2F2C\t屮\t# KANGXI RADICAL SPROUT\n2F2D\t山\t# KANGXI RADICAL MOUNTAIN\n2F2E\t巛\t# KANGXI RADICAL RIVER\n2F2F\t工\t# KANGXI RADICAL WORK\n2F30\t己\t# KANGXI RADICAL ONESELF\n2F31\t巾\t# KANGXI RADICAL TURBAN\n2F32\t干\t# KANGXI RADICAL DRY\n2F33\t幺\t# KANGXI RADICAL SHORT THREAD\n2F34\t广\t# KANGXI RADICAL DOTTED CLIFF\n2F35\t廴\t# KANGXI RADICAL LONG STRIDE\n2F36\t廾\t# KANGXI RADICAL TWO HANDS\n2F37\t弋\t# KANGXI RADICAL SHOOT\n2F38\t弓\t# KANGXI RADICAL BOW\n2F39\t彐\t# KANGXI RADICAL SNOUT\n2F3A\t彡\t# KANGXI RADICAL BRISTLE\n2F3B\t彳\t# KANGXI RADICAL STEP\n2F3C\t心\t# KANGXI RADICAL HEART\n2F3D\t戈\t# KANGXI RADICAL HALBERD\n2F3E\t戶\t# KANGXI RADICAL DOOR\n2F3F\t手\t# KANGXI RADICAL HAND\n2F40\t支\t# KANGXI RADICAL BRANCH\n2F41\t攴\t# KANGXI RADICAL RAP\n2F42\t文\t# KANGXI RADICAL SCRIPT\n2F43\t斗\t# KANGXI RADICAL DIPPER\n2F44\t斤\t# KANGXI RADICAL AXE\n2F45\t方\t# KANGXI RADICAL SQUARE\n2F46\t无\t# KANGXI RADICAL NOT\n2F47\t日\t# KANGXI RADICAL SUN\n2F48\t曰\t# KANGXI RADICAL SAY\n2F49\t月\t# KANGXI RADICAL MOON\n2F4A\t木\t# KANGXI RADICAL TREE\n2F4B\t欠\t# KANGXI RADICAL LACK\n2F4C\t止\t# KANGXI RADICAL STOP\n2F4D\t歹\t# KANGXI RADICAL DEATH\n2F4E\t殳\t# KANGXI RADICAL WEAPON\n2F4F\t毋\t# KANGXI RADICAL DO NOT\n2F50\t比\t# KANGXI RADICAL COMPARE\n2F51\t毛\t# KANGXI RADICAL FUR\n2F52\t氏\t# KANGXI RADICAL CLAN\n2F53\t气\t# KANGXI RADICAL STEAM\n2F54\t水\t# KANGXI RADICAL WATER\n2F55\t火\t# KANGXI RADICAL FIRE\n2F56\t爪\t# KANGXI RADICAL CLAW\n2F57\t父\t# KANGXI RADICAL FATHER\n2F58\t爻\t# KANGXI RADICAL DOUBLE X\n2F59\t爿\t# KANGXI RADICAL HALF TREE TRUNK\n2F5A\t片\t# KANGXI RADICAL SLICE\n2F5B\t牙\t# KANGXI RADICAL FANG\n2F5C\t牛\t# KANGXI RADICAL COW\n2F5D\t犬\t# KANGXI RADICAL DOG\n2F5E\t玄\t# KANGXI RADICAL PROFOUND\n2F5F\t玉\t# KANGXI RADICAL JADE\n2F60\t瓜\t# KANGXI RADICAL MELON\n2F61\t瓦\t# KANGXI RADICAL TILE\n2F62\t甘\t# KANGXI RADICAL SWEET\n2F63\t生\t# KANGXI RADICAL LIFE\n2F64\t用\t# KANGXI RADICAL USE\n2F65\t田\t# KANGXI RADICAL FIELD\n2F66\t疋\t# KANGXI RADICAL BOLT OF CLOTH\n2F67\t疒\t# KANGXI RADICAL SICKNESS\n2F68\t癶\t# KANGXI RADICAL DOTTED TENT\n2F69\t白\t# KANGXI RADICAL WHITE\n2F6A\t皮\t# KANGXI RADICAL SKIN\n2F6B\t皿\t# KANGXI RADICAL DISH\n2F6C\t目\t# KANGXI RADICAL EYE\n2F6D\t矛\t# KANGXI RADICAL SPEAR\n2F6E\t矢\t# KANGXI RADICAL ARROW\n2F6F\t石\t# KANGXI RADICAL STONE\n2F70\t示\t# KANGXI RADICAL SPIRIT\n2F71\t禸\t# KANGXI RADICAL TRACK\n2F72\t禾\t# KANGXI RADICAL GRAIN\n2F73\t穴\t# KANGXI RADICAL CAVE\n2F74\t立\t# KANGXI RADICAL STAND\n2F75\t竹\t# KANGXI RADICAL BAMBOO\n2F76\t米\t# KANGXI RADICAL RICE\n2F77\t糸\t# KANGXI RADICAL SILK\n2F78\t缶\t# KANGXI RADICAL JAR\n2F79\t网\t# KANGXI RADICAL NET\n2F7A\t羊\t# KANGXI RADICAL SHEEP\n2F7B\t羽\t# KANGXI RADICAL FEATHER\n2F7C\t老\t# KANGXI RADICAL OLD\n2F7D\t而\t# KANGXI RADICAL AND\n2F7E\t耒\t# KANGXI RADICAL PLOW\n2F7F\t耳\t# KANGXI RADICAL EAR\n2F80\t聿\t# KANGXI RADICAL BRUSH\n2F81\t肉\t# KANGXI RADICAL MEAT\n2F82\t臣\t# KANGXI RADICAL MINISTER\n2F83\t自\t# KANGXI RADICAL SELF\n2F84\t至\t# KANGXI RADICAL ARRIVE\n2F85\t臼\t# KANGXI RADICAL MORTAR\n2F86\t舌\t# KANGXI RADICAL TONGUE\n2F87\t舛\t# KANGXI RADICAL OPPOSE\n2F88\t舟\t# KANGXI RADICAL BOAT\n2F89\t艮\t# KANGXI RADICAL STOPPING\n2F8A\t色\t# KANGXI RADICAL COLOR\n2F8B\t艸\t# KANGXI RADICAL GRASS\n2F8C\t虍\t# KANGXI RADICAL TIGER\n2F8D\t虫\t# KANGXI RADICAL INSECT\n2F8E\t血\t# KANGXI RADICAL BLOOD\n2F8F\t行\t# KANGXI RADICAL WALK ENCLOSURE\n2F90\t衣\t# KANGXI RADICAL CLOTHES\n2F91\t襾\t# KANGXI RADICAL WEST\n2F92\t見\t# KANGXI RADICAL SEE\n2F93\t角\t# KANGXI RADICAL HORN\n2F94\t言\t# KANGXI RADICAL SPEECH\n2F95\t谷\t# KANGXI RADICAL VALLEY\n2F96\t豆\t# KANGXI RADICAL BEAN\n2F97\t豕\t# KANGXI RADICAL PIG\n2F98\t豸\t# KANGXI RADICAL BADGER\n2F99\t貝\t# KANGXI RADICAL SHELL\n2F9A\t赤\t# KANGXI RADICAL RED\n2F9B\t走\t# KANGXI RADICAL RUN\n2F9C\t足\t# KANGXI RADICAL FOOT\n2F9D\t身\t# KANGXI RADICAL BODY\n2F9E\t車\t# KANGXI RADICAL CART\n2F9F\t辛\t# KANGXI RADICAL BITTER\n2FA0\t辰\t# KANGXI RADICAL MORNING\n2FA1\t辵\t# KANGXI RADICAL WALK\n2FA2\t邑\t# KANGXI RADICAL CITY\n2FA3\t酉\t# KANGXI RADICAL WINE\n2FA4\t釆\t# KANGXI RADICAL DISTINGUISH\n2FA5\t里\t# KANGXI RADICAL VILLAGE\n2FA6\t金\t# KANGXI RADICAL GOLD\n2FA7\t長\t# KANGXI RADICAL LONG\n2FA8\t門\t# KANGXI RADICAL GATE\n2FA9\t阜\t# KANGXI RADICAL MOUND\n2FAA\t隶\t# KANGXI RADICAL SLAVE\n2FAB\t隹\t# KANGXI RADICAL SHORT TAILED BIRD\n2FAC\t雨\t# KANGXI RADICAL RAIN\n2FAD\t靑\t# KANGXI RADICAL BLUE\n2FAE\t非\t# KANGXI RADICAL WRONG\n2FAF\t面\t# KANGXI RADICAL FACE\n2FB0\t革\t# KANGXI RADICAL LEATHER\n2FB1\t韋\t# KANGXI RADICAL TANNED LEATHER\n2FB2\t韭\t# KANGXI RADICAL LEEK\n2FB3\t音\t# KANGXI RADICAL SOUND\n2FB4\t頁\t# KANGXI RADICAL LEAF\n2FB5\t風\t# KANGXI RADICAL WIND\n2FB6\t飛\t# KANGXI RADICAL FLY\n2FB7\t食\t# KANGXI RADICAL EAT\n2FB8\t首\t# KANGXI RADICAL HEAD\n2FB9\t香\t# KANGXI RADICAL FRAGRANT\n2FBA\t馬\t# KANGXI RADICAL HORSE\n2FBB\t骨\t# KANGXI RADICAL BONE\n2FBC\t高\t# KANGXI RADICAL TALL\n2FBD\t髟\t# KANGXI RADICAL HAIR\n2FBE\t鬥\t# KANGXI RADICAL FIGHT\n2FBF\t鬯\t# KANGXI RADICAL SACRIFICIAL WINE\n2FC0\t鬲\t# KANGXI RADICAL CAULDRON\n2FC1\t鬼\t# KANGXI RADICAL GHOST\n2FC2\t魚\t# KANGXI RADICAL FISH\n2FC3\t鳥\t# KANGXI RADICAL BIRD\n2FC4\t鹵\t# KANGXI RADICAL SALT\n2FC5\t鹿\t# KANGXI RADICAL DEER\n2FC6\t麥\t# KANGXI RADICAL WHEAT\n2FC7\t麻\t# KANGXI RADICAL HEMP\n2FC8\t黃\t# KANGXI RADICAL YELLOW\n2FC9\t黍\t# KANGXI RADICAL MILLET\n2FCA\t黑\t# KANGXI RADICAL BLACK\n2FCB\t黹\t# KANGXI RADICAL EMBROIDERY\n2FCC\t黽\t# KANGXI RADICAL FROG\n2FCD\t鼎\t# KANGXI RADICAL TRIPOD\n2FCE\t鼓\t# KANGXI RADICAL DRUM\n2FCF\t鼠\t# KANGXI RADICAL RAT\n2FD0\t鼻\t# KANGXI RADICAL NOSE\n2FD1\t齊\t# KANGXI RADICAL EVEN\n2FD2\t齒\t# KANGXI RADICAL TOOTH\n2FD3\t龍\t# KANGXI RADICAL DRAGON\n2FD4\t龜\t# KANGXI RADICAL TURTLE\n2FD5\t龠\t# KANGXI RADICAL FLUTE\n3000\t \t# IDEOGRAPHIC SPACE\n3036\t〒\t# CIRCLED POSTAL MARK\n3038\t十\t# HANGZHOU NUMERAL TEN\n3039\t卄\t# HANGZHOU NUMERAL TWENTY\n303A\t卅\t# HANGZHOU NUMERAL THIRTY\n3041\tあ\t# HIRAGANA LETTER SMALL A\n3043\tい\t# HIRAGANA LETTER SMALL I\n3045\tう\t# HIRAGANA LETTER SMALL U\n3047\tえ\t# HIRAGANA LETTER SMALL E\n3049\tお\t# HIRAGANA LETTER SMALL O\n3063\tつ\t# HIRAGANA LETTER SMALL TU\n3083\tや\t# HIRAGANA LETTER SMALL YA\n3085\tゆ\t# HIRAGANA LETTER SMALL YU\n3087\tよ\t# HIRAGANA LETTER SMALL YO\n308E\tわ\t# HIRAGANA LETTER SMALL WA\n3095\tか\t# HIRAGANA LETTER SMALL KA\n3096\tけ\t# HIRAGANA LETTER SMALL KE\n309B\t ゙\t# KATAKANA-HIRAGANA VOICED SOUND MARK\n309C\t ゚\t# KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK\n30A0\t=\t# KATAKANA-HIRAGANA DOUBLE HYPHEN\n30A1\tア\t# KATAKANA LETTER SMALL A\n30A3\tイ\t# KATAKANA LETTER SMALL I\n30A5\tウ\t# KATAKANA LETTER SMALL U\n30A7\tエ\t# KATAKANA LETTER SMALL E\n30A9\tオ\t# KATAKANA LETTER SMALL O\n30C3\tツ\t# KATAKANA LETTER SMALL TU\n30E3\tヤ\t# KATAKANA LETTER SMALL YA\n30E5\tユ\t# KATAKANA LETTER SMALL YU\n30E7\tヨ\t# KATAKANA LETTER SMALL YO\n30EE\tワ\t# KATAKANA LETTER SMALL WA\n30F5\tカ\t# KATAKANA LETTER SMALL KA\n30F6\tケ\t# KATAKANA LETTER SMALL KE\n3131\tᄀ\t# HANGUL LETTER KIYEOK\n3132\tᄁ\t# HANGUL LETTER SSANGKIYEOK\n3133\tᆪ\t# HANGUL LETTER KIYEOK-SIOS\n3134\tᄂ\t# HANGUL LETTER NIEUN\n3135\tᆬ\t# HANGUL LETTER NIEUN-CIEUC\n3136\tᆭ\t# HANGUL LETTER NIEUN-HIEUH\n3137\tᄃ\t# HANGUL LETTER TIKEUT\n3138\tᄄ\t# HANGUL LETTER SSANGTIKEUT\n3139\tᄅ\t# HANGUL LETTER RIEUL\n313A\tᆰ\t# HANGUL LETTER RIEUL-KIYEOK\n313B\tᆱ\t# HANGUL LETTER RIEUL-MIEUM\n313C\tᆲ\t# HANGUL LETTER RIEUL-PIEUP\n313D\tᆳ\t# HANGUL LETTER RIEUL-SIOS\n313E\tᆴ\t# HANGUL LETTER RIEUL-THIEUTH\n313F\tᆵ\t# HANGUL LETTER RIEUL-PHIEUPH\n3140\tᄚ\t# HANGUL LETTER RIEUL-HIEUH\n3141\tᄆ\t# HANGUL LETTER MIEUM\n3142\tᄇ\t# HANGUL LETTER PIEUP\n3143\tᄈ\t# HANGUL LETTER SSANGPIEUP\n3144\tᄡ\t# HANGUL LETTER PIEUP-SIOS\n3145\tᄉ\t# HANGUL LETTER SIOS\n3146\tᄊ\t# HANGUL LETTER SSANGSIOS\n3147\tᄋ\t# HANGUL LETTER IEUNG\n3148\tᄌ\t# HANGUL LETTER CIEUC\n3149\tᄍ\t# HANGUL LETTER SSANGCIEUC\n314A\tᄎ\t# HANGUL LETTER CHIEUCH\n314B\tᄏ\t# HANGUL LETTER KHIEUKH\n314C\tᄐ\t# HANGUL LETTER THIEUTH\n314D\tᄑ\t# HANGUL LETTER PHIEUPH\n314E\tᄒ\t# HANGUL LETTER HIEUH\n314F\tᅡ\t# HANGUL LETTER A\n3150\tᅢ\t# HANGUL LETTER AE\n3151\tᅣ\t# HANGUL LETTER YA\n3152\tᅤ\t# HANGUL LETTER YAE\n3153\tᅥ\t# HANGUL LETTER EO\n3154\tᅦ\t# HANGUL LETTER E\n3155\tᅧ\t# HANGUL LETTER YEO\n3156\tᅨ\t# HANGUL LETTER YE\n3157\tᅩ\t# HANGUL LETTER O\n3158\tᅪ\t# HANGUL LETTER WA\n3159\tᅫ\t# HANGUL LETTER WAE\n315A\tᅬ\t# HANGUL LETTER OE\n315B\tᅭ\t# HANGUL LETTER YO\n315C\tᅮ\t# HANGUL LETTER U\n315D\tᅯ\t# HANGUL LETTER WEO\n315E\tᅰ\t# HANGUL LETTER WE\n315F\tᅱ\t# HANGUL LETTER WI\n3160\tᅲ\t# HANGUL LETTER YU\n3161\tᅳ\t# HANGUL LETTER EU\n3162\tᅴ\t# HANGUL LETTER YI\n3163\tᅵ\t# HANGUL LETTER I\n3164\tᅠ\t# HANGUL FILLER\n3165\tᄔ\t# HANGUL LETTER SSANGNIEUN\n3166\tᄕ\t# HANGUL LETTER NIEUN-TIKEUT\n3167\tᇇ\t# HANGUL LETTER NIEUN-SIOS\n3168\tᇈ\t# HANGUL LETTER NIEUN-PANSIOS\n3169\tᇌ\t# HANGUL LETTER RIEUL-KIYEOK-SIOS\n316A\tᇎ\t# HANGUL LETTER RIEUL-TIKEUT\n316B\tᇓ\t# HANGUL LETTER RIEUL-PIEUP-SIOS\n316C\tᇗ\t# HANGUL LETTER RIEUL-PANSIOS\n316D\tᇙ\t# HANGUL LETTER RIEUL-YEORINHIEUH\n316E\tᄜ\t# HANGUL LETTER MIEUM-PIEUP\n316F\tᇝ\t# HANGUL LETTER MIEUM-SIOS\n3170\tᇟ\t# HANGUL LETTER MIEUM-PANSIOS\n3171\tᄝ\t# HANGUL LETTER KAPYEOUNMIEUM\n3172\tᄞ\t# HANGUL LETTER PIEUP-KIYEOK\n3173\tᄠ\t# HANGUL LETTER PIEUP-TIKEUT\n3174\tᄢ\t# HANGUL LETTER PIEUP-SIOS-KIYEOK\n3175\tᄣ\t# HANGUL LETTER PIEUP-SIOS-TIKEUT\n3176\tᄧ\t# HANGUL LETTER PIEUP-CIEUC\n3177\tᄩ\t# HANGUL LETTER PIEUP-THIEUTH\n3178\tᄫ\t# HANGUL LETTER KAPYEOUNPIEUP\n3179\tᄬ\t# HANGUL LETTER KAPYEOUNSSANGPIEUP\n317A\tᄭ\t# HANGUL LETTER SIOS-KIYEOK\n317B\tᄮ\t# HANGUL LETTER SIOS-NIEUN\n317C\tᄯ\t# HANGUL LETTER SIOS-TIKEUT\n317D\tᄲ\t# HANGUL LETTER SIOS-PIEUP\n317E\tᄶ\t# HANGUL LETTER SIOS-CIEUC\n317F\tᅀ\t# HANGUL LETTER PANSIOS\n3180\tᅇ\t# HANGUL LETTER SSANGIEUNG\n3181\tᅌ\t# HANGUL LETTER YESIEUNG\n3182\tᇱ\t# HANGUL LETTER YESIEUNG-SIOS\n3183\tᇲ\t# HANGUL LETTER YESIEUNG-PANSIOS\n3184\tᅗ\t# HANGUL LETTER KAPYEOUNPHIEUPH\n3185\tᅘ\t# HANGUL LETTER SSANGHIEUH\n3186\tᅙ\t# HANGUL LETTER YEORINHIEUH\n3187\tᆄ\t# HANGUL LETTER YO-YA\n3188\tᆅ\t# HANGUL LETTER YO-YAE\n3189\tᆈ\t# HANGUL LETTER YO-I\n318A\tᆑ\t# HANGUL LETTER YU-YEO\n318B\tᆒ\t# HANGUL LETTER YU-YE\n318C\tᆔ\t# HANGUL LETTER YU-I\n318D\tᆞ\t# HANGUL LETTER ARAEA\n318E\tᆡ\t# HANGUL LETTER ARAEAE\n31F0\tク\t# KATAKANA LETTER SMALL KU\n31F1\tシ\t# KATAKANA LETTER SMALL SI\n31F2\tス\t# KATAKANA LETTER SMALL SU\n31F3\tト\t# KATAKANA LETTER SMALL TO\n31F4\tヌ\t# KATAKANA LETTER SMALL NU\n31F5\tハ\t# KATAKANA LETTER SMALL HA\n31F6\tヒ\t# KATAKANA LETTER SMALL HI\n31F7\tフ\t# KATAKANA LETTER SMALL HU\n31F8\tヘ\t# KATAKANA LETTER SMALL HE\n31F9\tホ\t# KATAKANA LETTER SMALL HO\n31FA\tム\t# KATAKANA LETTER SMALL MU\n31FB\tラ\t# KATAKANA LETTER SMALL RA\n31FC\tリ\t# KATAKANA LETTER SMALL RI\n31FD\tル\t# KATAKANA LETTER SMALL RU\n31FE\tレ\t# KATAKANA LETTER SMALL RE\n31FF\tロ\t# KATAKANA LETTER SMALL RO\n3200\t(ᄀ)\t# PARENTHESIZED HANGUL KIYEOK\n3201\t(ᄂ)\t# PARENTHESIZED HANGUL NIEUN\n3202\t(ᄃ)\t# PARENTHESIZED HANGUL TIKEUT\n3203\t(ᄅ)\t# PARENTHESIZED HANGUL RIEUL\n3204\t(ᄆ)\t# PARENTHESIZED HANGUL MIEUM\n3205\t(ᄇ)\t# PARENTHESIZED HANGUL PIEUP\n3206\t(ᄉ)\t# PARENTHESIZED HANGUL SIOS\n3207\t(ᄋ)\t# PARENTHESIZED HANGUL IEUNG\n3208\t(ᄌ)\t# PARENTHESIZED HANGUL CIEUC\n3209\t(ᄎ)\t# PARENTHESIZED HANGUL CHIEUCH\n320A\t(ᄏ)\t# PARENTHESIZED HANGUL KHIEUKH\n320B\t(ᄐ)\t# PARENTHESIZED HANGUL THIEUTH\n320C\t(ᄑ)\t# PARENTHESIZED HANGUL PHIEUPH\n320D\t(ᄒ)\t# PARENTHESIZED HANGUL HIEUH\n320E\t(가)\t# PARENTHESIZED HANGUL KIYEOK A\n320F\t(나)\t# PARENTHESIZED HANGUL NIEUN A\n3210\t(다)\t# PARENTHESIZED HANGUL TIKEUT A\n3211\t(라)\t# PARENTHESIZED HANGUL RIEUL A\n3212\t(마)\t# PARENTHESIZED HANGUL MIEUM A\n3213\t(바)\t# PARENTHESIZED HANGUL PIEUP A\n3214\t(사)\t# PARENTHESIZED HANGUL SIOS A\n3215\t(아)\t# PARENTHESIZED HANGUL IEUNG A\n3216\t(자)\t# PARENTHESIZED HANGUL CIEUC A\n3217\t(차)\t# PARENTHESIZED HANGUL CHIEUCH A\n3218\t(카)\t# PARENTHESIZED HANGUL KHIEUKH A\n3219\t(타)\t# PARENTHESIZED HANGUL THIEUTH A\n321A\t(파)\t# PARENTHESIZED HANGUL PHIEUPH A\n321B\t(하)\t# PARENTHESIZED HANGUL HIEUH A\n321C\t(주)\t# PARENTHESIZED HANGUL CIEUC U\n321D\t(오전)\t# PARENTHESIZED KOREAN CHARACTER OJEON\n321E\t(오후)\t# PARENTHESIZED KOREAN CHARACTER O HU\n3220\t(一)\t# PARENTHESIZED IDEOGRAPH ONE\n3221\t(二)\t# PARENTHESIZED IDEOGRAPH TWO\n3222\t(三)\t# PARENTHESIZED IDEOGRAPH THREE\n3223\t(四)\t# PARENTHESIZED IDEOGRAPH FOUR\n3224\t(五)\t# PARENTHESIZED IDEOGRAPH FIVE\n3225\t(六)\t# PARENTHESIZED IDEOGRAPH SIX\n3226\t(七)\t# PARENTHESIZED IDEOGRAPH SEVEN\n3227\t(八)\t# PARENTHESIZED IDEOGRAPH EIGHT\n3228\t(九)\t# PARENTHESIZED IDEOGRAPH NINE\n3229\t(十)\t# PARENTHESIZED IDEOGRAPH TEN\n322A\t(月)\t# PARENTHESIZED IDEOGRAPH MOON\n322B\t(火)\t# PARENTHESIZED IDEOGRAPH FIRE\n322C\t(水)\t# PARENTHESIZED IDEOGRAPH WATER\n322D\t(木)\t# PARENTHESIZED IDEOGRAPH WOOD\n322E\t(金)\t# PARENTHESIZED IDEOGRAPH METAL\n322F\t(土)\t# PARENTHESIZED IDEOGRAPH EARTH\n3230\t(日)\t# PARENTHESIZED IDEOGRAPH SUN\n3231\t(株)\t# PARENTHESIZED IDEOGRAPH STOCK\n3232\t(有)\t# PARENTHESIZED IDEOGRAPH HAVE\n3233\t(社)\t# PARENTHESIZED IDEOGRAPH SOCIETY\n3234\t(名)\t# PARENTHESIZED IDEOGRAPH NAME\n3235\t(特)\t# PARENTHESIZED IDEOGRAPH SPECIAL\n3236\t(財)\t# PARENTHESIZED IDEOGRAPH FINANCIAL\n3237\t(祝)\t# PARENTHESIZED IDEOGRAPH CONGRATULATION\n3238\t(労)\t# PARENTHESIZED IDEOGRAPH LABOR\n3239\t(代)\t# PARENTHESIZED IDEOGRAPH REPRESENT\n323A\t(呼)\t# PARENTHESIZED IDEOGRAPH CALL\n323B\t(学)\t# PARENTHESIZED IDEOGRAPH STUDY\n323C\t(監)\t# PARENTHESIZED IDEOGRAPH SUPERVISE\n323D\t(企)\t# PARENTHESIZED IDEOGRAPH ENTERPRISE\n323E\t(資)\t# PARENTHESIZED IDEOGRAPH RESOURCE\n323F\t(協)\t# PARENTHESIZED IDEOGRAPH ALLIANCE\n3240\t(祭)\t# PARENTHESIZED IDEOGRAPH FESTIVAL\n3241\t(休)\t# PARENTHESIZED IDEOGRAPH REST\n3242\t(自)\t# PARENTHESIZED IDEOGRAPH SELF\n3243\t(至)\t# PARENTHESIZED IDEOGRAPH REACH\n3250\tPTE\t# PARTNERSHIP SIGN\n3251\t(21)\t# CIRCLED NUMBER TWENTY ONE\n3252\t(22)\t# CIRCLED NUMBER TWENTY TWO\n3253\t(23)\t# CIRCLED NUMBER TWENTY THREE\n3254\t(24)\t# CIRCLED NUMBER TWENTY FOUR\n3255\t(25)\t# CIRCLED NUMBER TWENTY FIVE\n3256\t(26)\t# CIRCLED NUMBER TWENTY SIX\n3257\t(27)\t# CIRCLED NUMBER TWENTY SEVEN\n3258\t(28)\t# CIRCLED NUMBER TWENTY EIGHT\n3259\t(29)\t# CIRCLED NUMBER TWENTY NINE\n325A\t(30)\t# CIRCLED NUMBER THIRTY\n325B\t(31)\t# CIRCLED NUMBER THIRTY ONE\n325C\t(32)\t# CIRCLED NUMBER THIRTY TWO\n325D\t(33)\t# CIRCLED NUMBER THIRTY THREE\n325E\t(34)\t# CIRCLED NUMBER THIRTY FOUR\n325F\t(35)\t# CIRCLED NUMBER THIRTY FIVE\n3260\t(ᄀ)\t# CIRCLED HANGUL KIYEOK\n3261\t(ᄂ)\t# CIRCLED HANGUL NIEUN\n3262\t(ᄃ)\t# CIRCLED HANGUL TIKEUT\n3263\t(ᄅ)\t# CIRCLED HANGUL RIEUL\n3264\t(ᄆ)\t# CIRCLED HANGUL MIEUM\n3265\t(ᄇ)\t# CIRCLED HANGUL PIEUP\n3266\t(ᄉ)\t# CIRCLED HANGUL SIOS\n3267\t(ᄋ)\t# CIRCLED HANGUL IEUNG\n3268\t(ᄌ)\t# CIRCLED HANGUL CIEUC\n3269\t(ᄎ)\t# CIRCLED HANGUL CHIEUCH\n326A\t(ᄏ)\t# CIRCLED HANGUL KHIEUKH\n326B\t(ᄐ)\t# CIRCLED HANGUL THIEUTH\n326C\t(ᄑ)\t# CIRCLED HANGUL PHIEUPH\n326D\t(ᄒ)\t# CIRCLED HANGUL HIEUH\n326E\t(가)\t# CIRCLED HANGUL KIYEOK A\n326F\t(나)\t# CIRCLED HANGUL NIEUN A\n3270\t(다)\t# CIRCLED HANGUL TIKEUT A\n3271\t(라)\t# CIRCLED HANGUL RIEUL A\n3272\t(마)\t# CIRCLED HANGUL MIEUM A\n3273\t(바)\t# CIRCLED HANGUL PIEUP A\n3274\t(사)\t# CIRCLED HANGUL SIOS A\n3275\t(아)\t# CIRCLED HANGUL IEUNG A\n3276\t(자)\t# CIRCLED HANGUL CIEUC A\n3277\t(차)\t# CIRCLED HANGUL CHIEUCH A\n3278\t(카)\t# CIRCLED HANGUL KHIEUKH A\n3279\t(타)\t# CIRCLED HANGUL THIEUTH A\n327A\t(파)\t# CIRCLED HANGUL PHIEUPH A\n327B\t(하)\t# CIRCLED HANGUL HIEUH A\n327C\t(참고)\t# CIRCLED KOREAN CHARACTER CHAMKO\n327D\t(주의)\t# CIRCLED KOREAN CHARACTER JUEUI\n3280\t(一)\t# CIRCLED IDEOGRAPH ONE\n3281\t(二)\t# CIRCLED IDEOGRAPH TWO\n3282\t(三)\t# CIRCLED IDEOGRAPH THREE\n3283\t(四)\t# CIRCLED IDEOGRAPH FOUR\n3284\t(五)\t# CIRCLED IDEOGRAPH FIVE\n3285\t(六)\t# CIRCLED IDEOGRAPH SIX\n3286\t(七)\t# CIRCLED IDEOGRAPH SEVEN\n3287\t(八)\t# CIRCLED IDEOGRAPH EIGHT\n3288\t(九)\t# CIRCLED IDEOGRAPH NINE\n3289\t(十)\t# CIRCLED IDEOGRAPH TEN\n328A\t(月)\t# CIRCLED IDEOGRAPH MOON\n328B\t(火)\t# CIRCLED IDEOGRAPH FIRE\n328C\t(水)\t# CIRCLED IDEOGRAPH WATER\n328D\t(木)\t# CIRCLED IDEOGRAPH WOOD\n328E\t(金)\t# CIRCLED IDEOGRAPH METAL\n328F\t(土)\t# CIRCLED IDEOGRAPH EARTH\n3290\t(日)\t# CIRCLED IDEOGRAPH SUN\n3291\t(株)\t# CIRCLED IDEOGRAPH STOCK\n3292\t(有)\t# CIRCLED IDEOGRAPH HAVE\n3293\t(社)\t# CIRCLED IDEOGRAPH SOCIETY\n3294\t(名)\t# CIRCLED IDEOGRAPH NAME\n3295\t(特)\t# CIRCLED IDEOGRAPH SPECIAL\n3296\t(財)\t# CIRCLED IDEOGRAPH FINANCIAL\n3297\t(祝)\t# CIRCLED IDEOGRAPH CONGRATULATION\n3298\t(労)\t# CIRCLED IDEOGRAPH LABOR\n3299\t(秘)\t# CIRCLED IDEOGRAPH SECRET\n329A\t(男)\t# CIRCLED IDEOGRAPH MALE\n329B\t(女)\t# CIRCLED IDEOGRAPH FEMALE\n329C\t(適)\t# CIRCLED IDEOGRAPH SUITABLE\n329D\t(優)\t# CIRCLED IDEOGRAPH EXCELLENT\n329E\t(印)\t# CIRCLED IDEOGRAPH PRINT\n329F\t(注)\t# CIRCLED IDEOGRAPH ATTENTION\n32A0\t(項)\t# CIRCLED IDEOGRAPH ITEM\n32A1\t(休)\t# CIRCLED IDEOGRAPH REST\n32A2\t(写)\t# CIRCLED IDEOGRAPH COPY\n32A3\t(正)\t# CIRCLED IDEOGRAPH CORRECT\n32A4\t(上)\t# CIRCLED IDEOGRAPH HIGH\n32A5\t(中)\t# CIRCLED IDEOGRAPH CENTRE\n32A6\t(下)\t# CIRCLED IDEOGRAPH LOW\n32A7\t(左)\t# CIRCLED IDEOGRAPH LEFT\n32A8\t(右)\t# CIRCLED IDEOGRAPH RIGHT\n32A9\t(医)\t# CIRCLED IDEOGRAPH MEDICINE\n32AA\t(宗)\t# CIRCLED IDEOGRAPH RELIGION\n32AB\t(学)\t# CIRCLED IDEOGRAPH STUDY\n32AC\t(監)\t# CIRCLED IDEOGRAPH SUPERVISE\n32AD\t(企)\t# CIRCLED IDEOGRAPH ENTERPRISE\n32AE\t(資)\t# CIRCLED IDEOGRAPH RESOURCE\n32AF\t(協)\t# CIRCLED IDEOGRAPH ALLIANCE\n32B0\t(夜)\t# CIRCLED IDEOGRAPH NIGHT\n32B1\t(36)\t# CIRCLED NUMBER THIRTY SIX\n32B2\t(37)\t# CIRCLED NUMBER THIRTY SEVEN\n32B3\t(38)\t# CIRCLED NUMBER THIRTY EIGHT\n32B4\t(39)\t# CIRCLED NUMBER THIRTY NINE\n32B5\t(40)\t# CIRCLED NUMBER FORTY\n32B6\t(41)\t# CIRCLED NUMBER FORTY ONE\n32B7\t(42)\t# CIRCLED NUMBER FORTY TWO\n32B8\t(43)\t# CIRCLED NUMBER FORTY THREE\n32B9\t(44)\t# CIRCLED NUMBER FORTY FOUR\n32BA\t(45)\t# CIRCLED NUMBER FORTY FIVE\n32BB\t(46)\t# CIRCLED NUMBER FORTY SIX\n32BC\t(47)\t# CIRCLED NUMBER FORTY SEVEN\n32BD\t(48)\t# CIRCLED NUMBER FORTY EIGHT\n32BE\t(49)\t# CIRCLED NUMBER FORTY NINE\n32BF\t(50)\t# CIRCLED NUMBER FIFTY\n32C0\t1月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR JANUARY\n32C1\t2月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR FEBRUARY\n32C2\t3月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR MARCH\n32C3\t4月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR APRIL\n32C4\t5月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR MAY\n32C5\t6月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR JUNE\n32C6\t7月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR JULY\n32C7\t8月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR AUGUST\n32C8\t9月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR SEPTEMBER\n32C9\t10月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR OCTOBER\n32CA\t11月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR NOVEMBER\n32CB\t12月\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DECEMBER\n32CC\tHg\t# SQUARE HG\n32CD\terg\t# SQUARE ERG\n32CE\teV\t# SQUARE EV\n32CF\tLTD\t# LIMITED LIABILITY SIGN\n32D0\t(ア)\t# CIRCLED KATAKANA A\n32D1\t(イ)\t# CIRCLED KATAKANA I\n32D2\t(ウ)\t# CIRCLED KATAKANA U\n32D3\t(エ)\t# CIRCLED KATAKANA E\n32D4\t(オ)\t# CIRCLED KATAKANA O\n32D5\t(カ)\t# CIRCLED KATAKANA KA\n32D6\t(キ)\t# CIRCLED KATAKANA KI\n32D7\t(ク)\t# CIRCLED KATAKANA KU\n32D8\t(ケ)\t# CIRCLED KATAKANA KE\n32D9\t(コ)\t# CIRCLED KATAKANA KO\n32DA\t(サ)\t# CIRCLED KATAKANA SA\n32DB\t(シ)\t# CIRCLED KATAKANA SI\n32DC\t(ス)\t# CIRCLED KATAKANA SU\n32DD\t(セ)\t# CIRCLED KATAKANA SE\n32DE\t(ソ)\t# CIRCLED KATAKANA SO\n32DF\t(タ)\t# CIRCLED KATAKANA TA\n32E0\t(チ)\t# CIRCLED KATAKANA TI\n32E1\t(ツ)\t# CIRCLED KATAKANA TU\n32E2\t(テ)\t# CIRCLED KATAKANA TE\n32E3\t(ト)\t# CIRCLED KATAKANA TO\n32E4\t(ナ)\t# CIRCLED KATAKANA NA\n32E5\t(ニ)\t# CIRCLED KATAKANA NI\n32E6\t(ヌ)\t# CIRCLED KATAKANA NU\n32E7\t(ネ)\t# CIRCLED KATAKANA NE\n32E8\t(ノ)\t# CIRCLED KATAKANA NO\n32E9\t(ハ)\t# CIRCLED KATAKANA HA\n32EA\t(ヒ)\t# CIRCLED KATAKANA HI\n32EB\t(フ)\t# CIRCLED KATAKANA HU\n32EC\t(ヘ)\t# CIRCLED KATAKANA HE\n32ED\t(ホ)\t# CIRCLED KATAKANA HO\n32EE\t(マ)\t# CIRCLED KATAKANA MA\n32EF\t(ミ)\t# CIRCLED KATAKANA MI\n32F0\t(ム)\t# CIRCLED KATAKANA MU\n32F1\t(メ)\t# CIRCLED KATAKANA ME\n32F2\t(モ)\t# CIRCLED KATAKANA MO\n32F3\t(ヤ)\t# CIRCLED KATAKANA YA\n32F4\t(ユ)\t# CIRCLED KATAKANA YU\n32F5\t(ヨ)\t# CIRCLED KATAKANA YO\n32F6\t(ラ)\t# CIRCLED KATAKANA RA\n32F7\t(リ)\t# CIRCLED KATAKANA RI\n32F8\t(ル)\t# CIRCLED KATAKANA RU\n32F9\t(レ)\t# CIRCLED KATAKANA RE\n32FA\t(ロ)\t# CIRCLED KATAKANA RO\n32FB\t(ワ)\t# CIRCLED KATAKANA WA\n32FC\t(ヰ)\t# CIRCLED KATAKANA WI\n32FD\t(ヱ)\t# CIRCLED KATAKANA WE\n32FE\t(ヲ)\t# CIRCLED KATAKANA WO\n3300\tアパート\t# SQUARE APAATO\n3301\tアルファ\t# SQUARE ARUHUA\n3302\tアンペア\t# SQUARE ANPEA\n3303\tアール\t# SQUARE AARU\n3304\tイニング\t# SQUARE ININGU\n3305\tインチ\t# SQUARE INTI\n3306\tウォン\t# SQUARE UON\n3307\tエスクード\t# SQUARE ESUKUUDO\n3308\tエーカー\t# SQUARE EEKAA\n3309\tオンス\t# SQUARE ONSU\n330A\tオーム\t# SQUARE OOMU\n330B\tカイリ\t# SQUARE KAIRI\n330C\tカラット\t# SQUARE KARATTO\n330D\tカロリー\t# SQUARE KARORII\n330E\tガロン\t# SQUARE GARON\n330F\tガンマ\t# SQUARE GANMA\n3310\tギガ\t# SQUARE GIGA\n3311\tギニー\t# SQUARE GINII\n3312\tキュリー\t# SQUARE KYURII\n3313\tギルダー\t# SQUARE GIRUDAA\n3314\tキロ\t# SQUARE KIRO\n3315\tキログラム\t# SQUARE KIROGURAMU\n3316\tキロメートル\t# SQUARE KIROMEETORU\n3317\tキロワット\t# SQUARE KIROWATTO\n3318\tグラム\t# SQUARE GURAMU\n3319\tグラムトン\t# SQUARE GURAMUTON\n331A\tクルゼイロ\t# SQUARE KURUZEIRO\n331B\tクローネ\t# SQUARE KUROONE\n331C\tケース\t# SQUARE KEESU\n331D\tコルナ\t# SQUARE KORUNA\n331E\tコーポ\t# SQUARE KOOPO\n331F\tサイクル\t# SQUARE SAIKURU\n3320\tサンチーム\t# SQUARE SANTIIMU\n3321\tシリング\t# SQUARE SIRINGU\n3322\tセンチ\t# SQUARE SENTI\n3323\tセント\t# SQUARE SENTO\n3324\tダース\t# SQUARE DAASU\n3325\tデシ\t# SQUARE DESI\n3326\tドル\t# SQUARE DORU\n3327\tトン\t# SQUARE TON\n3328\tナノ\t# SQUARE NANO\n3329\tノット\t# SQUARE NOTTO\n332A\tハイツ\t# SQUARE HAITU\n332B\tパーセント\t# SQUARE PAASENTO\n332C\tパーツ\t# SQUARE PAATU\n332D\tバーレル\t# SQUARE BAARERU\n332E\tピアストル\t# SQUARE PIASUTORU\n332F\tピクル\t# SQUARE PIKURU\n3330\tピコ\t# SQUARE PIKO\n3331\tビル\t# SQUARE BIRU\n3332\tファラッド\t# SQUARE HUARADDO\n3333\tフィート\t# SQUARE HUIITO\n3334\tブッシェル\t# SQUARE BUSSYERU\n3335\tフラン\t# SQUARE HURAN\n3336\tヘクタール\t# SQUARE HEKUTAARU\n3337\tペソ\t# SQUARE PESO\n3338\tペニヒ\t# SQUARE PENIHI\n3339\tヘルツ\t# SQUARE HERUTU\n333A\tペンス\t# SQUARE PENSU\n333B\tページ\t# SQUARE PEEZI\n333C\tベータ\t# SQUARE BEETA\n333D\tポイント\t# SQUARE POINTO\n333E\tボルト\t# SQUARE BORUTO\n333F\tホン\t# SQUARE HON\n3340\tポンド\t# SQUARE PONDO\n3341\tホール\t# SQUARE HOORU\n3342\tホーン\t# SQUARE HOON\n3343\tマイクロ\t# SQUARE MAIKURO\n3344\tマイル\t# SQUARE MAIRU\n3345\tマッハ\t# SQUARE MAHHA\n3346\tマルク\t# SQUARE MARUKU\n3347\tマンション\t# SQUARE MANSYON\n3348\tミクロン\t# SQUARE MIKURON\n3349\tミリ\t# SQUARE MIRI\n334A\tミリバール\t# SQUARE MIRIBAARU\n334B\tメガ\t# SQUARE MEGA\n334C\tメガトン\t# SQUARE MEGATON\n334D\tメートル\t# SQUARE MEETORU\n334E\tヤード\t# SQUARE YAADO\n334F\tヤール\t# SQUARE YAARU\n3350\tユアン\t# SQUARE YUAN\n3351\tリットル\t# SQUARE RITTORU\n3352\tリラ\t# SQUARE RIRA\n3353\tルピー\t# SQUARE RUPII\n3354\tルーブル\t# SQUARE RUUBURU\n3355\tレム\t# SQUARE REMU\n3356\tレントゲン\t# SQUARE RENTOGEN\n3357\tワット\t# SQUARE WATTO\n3358\t0点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR ZERO\n3359\t1点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR ONE\n335A\t2点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWO\n335B\t3点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR THREE\n335C\t4点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FOUR\n335D\t5点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FIVE\n335E\t6点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SIX\n335F\t7点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SEVEN\n3360\t8点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR EIGHT\n3361\t9点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR NINE\n3362\t10点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TEN\n3363\t11点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR ELEVEN\n3364\t12点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWELVE\n3365\t13点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR THIRTEEN\n3366\t14点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FOURTEEN\n3367\t15点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FIFTEEN\n3368\t16点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SIXTEEN\n3369\t17点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SEVENTEEN\n336A\t18点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR EIGHTEEN\n336B\t19点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR NINETEEN\n336C\t20点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY\n336D\t21点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-ONE\n336E\t22点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-TWO\n336F\t23点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-THREE\n3370\t24点\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-FOUR\n3371\thPa\t# SQUARE HPA\n3372\tda\t# SQUARE DA\n3373\tAU\t# SQUARE AU\n3374\tbar\t# SQUARE BAR\n3375\toV\t# SQUARE OV\n3376\tpc\t# SQUARE PC\n3377\tdm\t# SQUARE DM\n3378\tdm^2\t# SQUARE DM SQUARED\n3379\tdm^3\t# SQUARE DM CUBED\n337A\tIU\t# SQUARE IU\n337B\t平成\t# SQUARE ERA NAME HEISEI\n337C\t昭和\t# SQUARE ERA NAME SYOUWA\n337D\t大正\t# SQUARE ERA NAME TAISYOU\n337E\t明治\t# SQUARE ERA NAME MEIZI\n337F\t株式会社\t# SQUARE CORPORATION\n3380\tpA\t# SQUARE PA AMPS\n3381\tnA\t# SQUARE NA\n3382\tμA\t# SQUARE MU A\n3383\tmA\t# SQUARE MA\n3384\tkA\t# SQUARE KA\n3385\tKB\t# SQUARE KB\n3386\tMB\t# SQUARE MB\n3387\tGB\t# SQUARE GB\n3388\tcal\t# SQUARE CAL\n3389\tkcal\t# SQUARE KCAL\n338A\tpF\t# SQUARE PF\n338B\tnF\t# SQUARE NF\n338C\tμF\t# SQUARE MU F\n338D\tμg\t# SQUARE MU G\n338E\tmg\t# SQUARE MG\n338F\tkg\t# SQUARE KG\n3390\tHz\t# SQUARE HZ\n3391\tkHz\t# SQUARE KHZ\n3392\tMHz\t# SQUARE MHZ\n3393\tGHz\t# SQUARE GHZ\n3394\tTHz\t# SQUARE THZ\n3395\tμl\t# SQUARE MU L\n3396\tml\t# SQUARE ML\n3397\tdl\t# SQUARE DL\n3398\tkl\t# SQUARE KL\n3399\tfm\t# SQUARE FM\n339A\tnm\t# SQUARE NM\n339B\tμm\t# SQUARE MU M\n339C\tmm\t# SQUARE MM\n339D\tcm\t# SQUARE CM\n339E\tkm\t# SQUARE KM\n339F\tmm^2\t# SQUARE MM SQUARED\n33A0\tcm^2\t# SQUARE CM SQUARED\n33A1\tm^2\t# SQUARE M SQUARED\n33A2\tkm^2\t# SQUARE KM SQUARED\n33A3\tmm^3\t# SQUARE MM CUBED\n33A4\tcm^3\t# SQUARE CM CUBED\n33A5\tm^3\t# SQUARE M CUBED\n33A6\tkm^3\t# SQUARE KM CUBED\n33A7\tm/s\t# SQUARE M OVER S\n33A8\tm/s^2\t# SQUARE M OVER S SQUARED\n33A9\tPa\t# SQUARE PA\n33AA\tkPa\t# SQUARE KPA\n33AB\tMPa\t# SQUARE MPA\n33AC\tGPa\t# SQUARE GPA\n33AD\trad\t# SQUARE RAD\n33AE\trad/s\t# SQUARE RAD OVER S\n33AF\trad/s^2\t# SQUARE RAD OVER S SQUARED\n33B0\tps\t# SQUARE PS\n33B1\tns\t# SQUARE NS\n33B2\tμs\t# SQUARE MU S\n33B3\tms\t# SQUARE MS\n33B4\tpV\t# SQUARE PV\n33B5\tnV\t# SQUARE NV\n33B6\tμV\t# SQUARE MU V\n33B7\tmV\t# SQUARE MV\n33B8\tkV\t# SQUARE KV\n33B9\tMV\t# SQUARE MV MEGA\n33BA\tpW\t# SQUARE PW\n33BB\tnW\t# SQUARE NW\n33BC\tμW\t# SQUARE MU W\n33BD\tmW\t# SQUARE MW\n33BE\tkW\t# SQUARE KW\n33BF\tMW\t# SQUARE MW MEGA\n33C0\tkΩ\t# SQUARE K OHM\n33C1\tMΩ\t# SQUARE M OHM\n33C2\ta.m.\t# SQUARE AM\n33C3\tBq\t# SQUARE BQ\n33C4\tcc\t# SQUARE CC\n33C5\tcd\t# SQUARE CD\n33C6\tC/kg\t# SQUARE C OVER KG\n33C7\tCo.\t# SQUARE CO\n33C8\tdB\t# SQUARE DB\n33C9\tGy\t# SQUARE GY\n33CA\tha\t# SQUARE HA\n33CB\tHP\t# SQUARE HP\n33CC\tin\t# SQUARE IN\n33CD\tKK\t# SQUARE KK\n33CE\tKM\t# SQUARE KM CAPITAL\n33CF\tkt\t# SQUARE KT\n33D0\tlm\t# SQUARE LM\n33D1\tln\t# SQUARE LN\n33D2\tlog\t# SQUARE LOG\n33D3\tlx\t# SQUARE LX\n33D4\tmb\t# SQUARE MB SMALL\n33D5\tmil\t# SQUARE MIL\n33D6\tmol\t# SQUARE MOL\n33D7\tPH\t# SQUARE PH\n33D8\tp.m.\t# SQUARE PM\n33D9\tPPM\t# SQUARE PPM\n33DA\tPR\t# SQUARE PR\n33DB\tsr\t# SQUARE SR\n33DC\tSv\t# SQUARE SV\n33DD\tWb\t# SQUARE WB\n33DE\tV/m\t# SQUARE V OVER M\n33DF\tA/m\t# SQUARE A OVER M\n33FF\tgal\t# SQUARE GAL\n33E0\t1日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY ONE\n33E1\t2日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWO\n33E2\t3日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THREE\n33E3\t4日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FOUR\n33E4\t5日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FIVE\n33E5\t6日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SIX\n33E6\t7日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SEVEN\n33E7\t8日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY EIGHT\n33E8\t9日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY NINE\n33E9\t10日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TEN\n33EA\t11日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY ELEVEN\n33EB\t12日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWELVE\n33EC\t13日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THIRTEEN\n33ED\t14日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FOURTEEN\n33EE\t15日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FIFTEEN\n33EF\t16日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SIXTEEN\n33F0\t17日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SEVENTEEN\n33F1\t18日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY EIGHTEEN\n33F2\t19日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY NINETEEN\n33F3\t20日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY\n33F4\t21日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-ONE\n33F5\t22日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-TWO\n33F6\t23日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-THREE\n33F7\t24日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-FOUR\n33F8\t25日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-FIVE\n33F9\t26日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-SIX\n33FA\t27日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-SEVEN\n33FB\t28日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-EIGHT\n33FC\t29日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-NINE\n33FD\t30日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THIRTY\n33FE\t31日\t# IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THIRTY-ONE\nF900\t豈\t# CJK COMPATIBILITY IDEOGRAPH-F900\nF901\t更\t# CJK COMPATIBILITY IDEOGRAPH-F901\nF902\t車\t# CJK COMPATIBILITY IDEOGRAPH-F902\nF903\t賈\t# CJK COMPATIBILITY IDEOGRAPH-F903\nF904\t滑\t# CJK COMPATIBILITY IDEOGRAPH-F904\nF905\t串\t# CJK COMPATIBILITY IDEOGRAPH-F905\nF906\t句\t# CJK COMPATIBILITY IDEOGRAPH-F906\nF907\t龜\t# CJK COMPATIBILITY IDEOGRAPH-F907\nF908\t龜\t# CJK COMPATIBILITY IDEOGRAPH-F908\nF909\t契\t# CJK COMPATIBILITY IDEOGRAPH-F909\nF90A\t金\t# CJK COMPATIBILITY IDEOGRAPH-F90A\nF90B\t喇\t# CJK COMPATIBILITY IDEOGRAPH-F90B\nF90C\t奈\t# CJK COMPATIBILITY IDEOGRAPH-F90C\nF90D\t懶\t# CJK COMPATIBILITY IDEOGRAPH-F90D\nF90E\t癩\t# CJK COMPATIBILITY IDEOGRAPH-F90E\nF90F\t羅\t# CJK COMPATIBILITY IDEOGRAPH-F90F\nF910\t蘿\t# CJK COMPATIBILITY IDEOGRAPH-F910\nF911\t螺\t# CJK COMPATIBILITY IDEOGRAPH-F911\nF912\t裸\t# CJK COMPATIBILITY IDEOGRAPH-F912\nF913\t邏\t# CJK COMPATIBILITY IDEOGRAPH-F913\nF914\t樂\t# CJK COMPATIBILITY IDEOGRAPH-F914\nF915\t洛\t# CJK COMPATIBILITY IDEOGRAPH-F915\nF916\t烙\t# CJK COMPATIBILITY IDEOGRAPH-F916\nF917\t珞\t# CJK COMPATIBILITY IDEOGRAPH-F917\nF918\t落\t# CJK COMPATIBILITY IDEOGRAPH-F918\nF919\t酪\t# CJK COMPATIBILITY IDEOGRAPH-F919\nF91A\t駱\t# CJK COMPATIBILITY IDEOGRAPH-F91A\nF91B\t亂\t# CJK COMPATIBILITY IDEOGRAPH-F91B\nF91C\t卵\t# CJK COMPATIBILITY IDEOGRAPH-F91C\nF91D\t欄\t# CJK COMPATIBILITY IDEOGRAPH-F91D\nF91E\t爛\t# CJK COMPATIBILITY IDEOGRAPH-F91E\nF91F\t蘭\t# CJK COMPATIBILITY IDEOGRAPH-F91F\nF920\t鸞\t# CJK COMPATIBILITY IDEOGRAPH-F920\nF921\t嵐\t# CJK COMPATIBILITY IDEOGRAPH-F921\nF922\t濫\t# CJK COMPATIBILITY IDEOGRAPH-F922\nF923\t藍\t# CJK COMPATIBILITY IDEOGRAPH-F923\nF924\t襤\t# CJK COMPATIBILITY IDEOGRAPH-F924\nF925\t拉\t# CJK COMPATIBILITY IDEOGRAPH-F925\nF926\t臘\t# CJK COMPATIBILITY IDEOGRAPH-F926\nF927\t蠟\t# CJK COMPATIBILITY IDEOGRAPH-F927\nF928\t廊\t# CJK COMPATIBILITY IDEOGRAPH-F928\nF929\t朗\t# CJK COMPATIBILITY IDEOGRAPH-F929\nF92A\t浪\t# CJK COMPATIBILITY IDEOGRAPH-F92A\nF92B\t狼\t# CJK COMPATIBILITY IDEOGRAPH-F92B\nF92C\t郎\t# CJK COMPATIBILITY IDEOGRAPH-F92C\nF92D\t來\t# CJK COMPATIBILITY IDEOGRAPH-F92D\nF92E\t冷\t# CJK COMPATIBILITY IDEOGRAPH-F92E\nF92F\t勞\t# CJK COMPATIBILITY IDEOGRAPH-F92F\nF930\t擄\t# CJK COMPATIBILITY IDEOGRAPH-F930\nF931\t櫓\t# CJK COMPATIBILITY IDEOGRAPH-F931\nF932\t爐\t# CJK COMPATIBILITY IDEOGRAPH-F932\nF933\t盧\t# CJK COMPATIBILITY IDEOGRAPH-F933\nF934\t老\t# CJK COMPATIBILITY IDEOGRAPH-F934\nF935\t蘆\t# CJK COMPATIBILITY IDEOGRAPH-F935\nF936\t虜\t# CJK COMPATIBILITY IDEOGRAPH-F936\nF937\t路\t# CJK COMPATIBILITY IDEOGRAPH-F937\nF938\t露\t# CJK COMPATIBILITY IDEOGRAPH-F938\nF939\t魯\t# CJK COMPATIBILITY IDEOGRAPH-F939\nF93A\t鷺\t# CJK COMPATIBILITY IDEOGRAPH-F93A\nF93B\t碌\t# CJK COMPATIBILITY IDEOGRAPH-F93B\nF93C\t祿\t# CJK COMPATIBILITY IDEOGRAPH-F93C\nF93D\t綠\t# CJK COMPATIBILITY IDEOGRAPH-F93D\nF93E\t菉\t# CJK COMPATIBILITY IDEOGRAPH-F93E\nF93F\t錄\t# CJK COMPATIBILITY IDEOGRAPH-F93F\nF940\t鹿\t# CJK COMPATIBILITY IDEOGRAPH-F940\nF941\t論\t# CJK COMPATIBILITY IDEOGRAPH-F941\nF942\t壟\t# CJK COMPATIBILITY IDEOGRAPH-F942\nF943\t弄\t# CJK COMPATIBILITY IDEOGRAPH-F943\nF944\t籠\t# CJK COMPATIBILITY IDEOGRAPH-F944\nF945\t聾\t# CJK COMPATIBILITY IDEOGRAPH-F945\nF946\t牢\t# CJK COMPATIBILITY IDEOGRAPH-F946\nF947\t磊\t# CJK COMPATIBILITY IDEOGRAPH-F947\nF948\t賂\t# CJK COMPATIBILITY IDEOGRAPH-F948\nF949\t雷\t# CJK COMPATIBILITY IDEOGRAPH-F949\nF94A\t壘\t# CJK COMPATIBILITY IDEOGRAPH-F94A\nF94B\t屢\t# CJK COMPATIBILITY IDEOGRAPH-F94B\nF94C\t樓\t# CJK COMPATIBILITY IDEOGRAPH-F94C\nF94D\t淚\t# CJK COMPATIBILITY IDEOGRAPH-F94D\nF94E\t漏\t# CJK COMPATIBILITY IDEOGRAPH-F94E\nF94F\t累\t# CJK COMPATIBILITY IDEOGRAPH-F94F\nF950\t縷\t# CJK COMPATIBILITY IDEOGRAPH-F950\nF951\t陋\t# CJK COMPATIBILITY IDEOGRAPH-F951\nF952\t勒\t# CJK COMPATIBILITY IDEOGRAPH-F952\nF953\t肋\t# CJK COMPATIBILITY IDEOGRAPH-F953\nF954\t凜\t# CJK COMPATIBILITY IDEOGRAPH-F954\nF955\t凌\t# CJK COMPATIBILITY IDEOGRAPH-F955\nF956\t稜\t# CJK COMPATIBILITY IDEOGRAPH-F956\nF957\t綾\t# CJK COMPATIBILITY IDEOGRAPH-F957\nF958\t菱\t# CJK COMPATIBILITY IDEOGRAPH-F958\nF959\t陵\t# CJK COMPATIBILITY IDEOGRAPH-F959\nF95A\t讀\t# CJK COMPATIBILITY IDEOGRAPH-F95A\nF95B\t拏\t# CJK COMPATIBILITY IDEOGRAPH-F95B\nF95C\t樂\t# CJK COMPATIBILITY IDEOGRAPH-F95C\nF95D\t諾\t# CJK COMPATIBILITY IDEOGRAPH-F95D\nF95E\t丹\t# CJK COMPATIBILITY IDEOGRAPH-F95E\nF95F\t寧\t# CJK COMPATIBILITY IDEOGRAPH-F95F\nF960\t怒\t# CJK COMPATIBILITY IDEOGRAPH-F960\nF961\t率\t# CJK COMPATIBILITY IDEOGRAPH-F961\nF962\t異\t# CJK COMPATIBILITY IDEOGRAPH-F962\nF963\t北\t# CJK COMPATIBILITY IDEOGRAPH-F963\nF964\t磻\t# CJK COMPATIBILITY IDEOGRAPH-F964\nF965\t便\t# CJK COMPATIBILITY IDEOGRAPH-F965\nF966\t復\t# CJK COMPATIBILITY IDEOGRAPH-F966\nF967\t不\t# CJK COMPATIBILITY IDEOGRAPH-F967\nF968\t泌\t# CJK COMPATIBILITY IDEOGRAPH-F968\nF969\t數\t# CJK COMPATIBILITY IDEOGRAPH-F969\nF96A\t索\t# CJK COMPATIBILITY IDEOGRAPH-F96A\nF96B\t參\t# CJK COMPATIBILITY IDEOGRAPH-F96B\nF96C\t塞\t# CJK COMPATIBILITY IDEOGRAPH-F96C\nF96D\t省\t# CJK COMPATIBILITY IDEOGRAPH-F96D\nF96E\t葉\t# CJK COMPATIBILITY IDEOGRAPH-F96E\nF96F\t說\t# CJK COMPATIBILITY IDEOGRAPH-F96F\nF970\t殺\t# CJK COMPATIBILITY IDEOGRAPH-F970\nF971\t辰\t# CJK COMPATIBILITY IDEOGRAPH-F971\nF972\t沈\t# CJK COMPATIBILITY IDEOGRAPH-F972\nF973\t拾\t# CJK COMPATIBILITY IDEOGRAPH-F973\nF974\t若\t# CJK COMPATIBILITY IDEOGRAPH-F974\nF975\t掠\t# CJK COMPATIBILITY IDEOGRAPH-F975\nF976\t略\t# CJK COMPATIBILITY IDEOGRAPH-F976\nF977\t亮\t# CJK COMPATIBILITY IDEOGRAPH-F977\nF978\t兩\t# CJK COMPATIBILITY IDEOGRAPH-F978\nF979\t凉\t# CJK COMPATIBILITY IDEOGRAPH-F979\nF97A\t梁\t# CJK COMPATIBILITY IDEOGRAPH-F97A\nF97B\t糧\t# CJK COMPATIBILITY IDEOGRAPH-F97B\nF97C\t良\t# CJK COMPATIBILITY IDEOGRAPH-F97C\nF97D\t諒\t# CJK COMPATIBILITY IDEOGRAPH-F97D\nF97E\t量\t# CJK COMPATIBILITY IDEOGRAPH-F97E\nF97F\t勵\t# CJK COMPATIBILITY IDEOGRAPH-F97F\nF980\t呂\t# CJK COMPATIBILITY IDEOGRAPH-F980\nF981\t女\t# CJK COMPATIBILITY IDEOGRAPH-F981\nF982\t廬\t# CJK COMPATIBILITY IDEOGRAPH-F982\nF983\t旅\t# CJK COMPATIBILITY IDEOGRAPH-F983\nF984\t濾\t# CJK COMPATIBILITY IDEOGRAPH-F984\nF985\t礪\t# CJK COMPATIBILITY IDEOGRAPH-F985\nF986\t閭\t# CJK COMPATIBILITY IDEOGRAPH-F986\nF987\t驪\t# CJK COMPATIBILITY IDEOGRAPH-F987\nF988\t麗\t# CJK COMPATIBILITY IDEOGRAPH-F988\nF989\t黎\t# CJK COMPATIBILITY IDEOGRAPH-F989\nF98A\t力\t# CJK COMPATIBILITY IDEOGRAPH-F98A\nF98B\t曆\t# CJK COMPATIBILITY IDEOGRAPH-F98B\nF98C\t歷\t# CJK COMPATIBILITY IDEOGRAPH-F98C\nF98D\t轢\t# CJK COMPATIBILITY IDEOGRAPH-F98D\nF98E\t年\t# CJK COMPATIBILITY IDEOGRAPH-F98E\nF98F\t憐\t# CJK COMPATIBILITY IDEOGRAPH-F98F\nF990\t戀\t# CJK COMPATIBILITY IDEOGRAPH-F990\nF991\t撚\t# CJK COMPATIBILITY IDEOGRAPH-F991\nF992\t漣\t# CJK COMPATIBILITY IDEOGRAPH-F992\nF993\t煉\t# CJK COMPATIBILITY IDEOGRAPH-F993\nF994\t璉\t# CJK COMPATIBILITY IDEOGRAPH-F994\nF995\t秊\t# CJK COMPATIBILITY IDEOGRAPH-F995\nF996\t練\t# CJK COMPATIBILITY IDEOGRAPH-F996\nF997\t聯\t# CJK COMPATIBILITY IDEOGRAPH-F997\nF998\t輦\t# CJK COMPATIBILITY IDEOGRAPH-F998\nF999\t蓮\t# CJK COMPATIBILITY IDEOGRAPH-F999\nF99A\t連\t# CJK COMPATIBILITY IDEOGRAPH-F99A\nF99B\t鍊\t# CJK COMPATIBILITY IDEOGRAPH-F99B\nF99C\t列\t# CJK COMPATIBILITY IDEOGRAPH-F99C\nF99D\t劣\t# CJK COMPATIBILITY IDEOGRAPH-F99D\nF99E\t咽\t# CJK COMPATIBILITY IDEOGRAPH-F99E\nF99F\t烈\t# CJK COMPATIBILITY IDEOGRAPH-F99F\nF9A0\t裂\t# CJK COMPATIBILITY IDEOGRAPH-F9A0\nF9A1\t說\t# CJK COMPATIBILITY IDEOGRAPH-F9A1\nF9A2\t廉\t# CJK COMPATIBILITY IDEOGRAPH-F9A2\nF9A3\t念\t# CJK COMPATIBILITY IDEOGRAPH-F9A3\nF9A4\t捻\t# CJK COMPATIBILITY IDEOGRAPH-F9A4\nF9A5\t殮\t# CJK COMPATIBILITY IDEOGRAPH-F9A5\nF9A6\t簾\t# CJK COMPATIBILITY IDEOGRAPH-F9A6\nF9A7\t獵\t# CJK COMPATIBILITY IDEOGRAPH-F9A7\nF9A8\t令\t# CJK COMPATIBILITY IDEOGRAPH-F9A8\nF9A9\t囹\t# CJK COMPATIBILITY IDEOGRAPH-F9A9\nF9AA\t寧\t# CJK COMPATIBILITY IDEOGRAPH-F9AA\nF9AB\t嶺\t# CJK COMPATIBILITY IDEOGRAPH-F9AB\nF9AC\t怜\t# CJK COMPATIBILITY IDEOGRAPH-F9AC\nF9AD\t玲\t# CJK COMPATIBILITY IDEOGRAPH-F9AD\nF9AE\t瑩\t# CJK COMPATIBILITY IDEOGRAPH-F9AE\nF9AF\t羚\t# CJK COMPATIBILITY IDEOGRAPH-F9AF\nF9B0\t聆\t# CJK COMPATIBILITY IDEOGRAPH-F9B0\nF9B1\t鈴\t# CJK COMPATIBILITY IDEOGRAPH-F9B1\nF9B2\t零\t# CJK COMPATIBILITY IDEOGRAPH-F9B2\nF9B3\t靈\t# CJK COMPATIBILITY IDEOGRAPH-F9B3\nF9B4\t領\t# CJK COMPATIBILITY IDEOGRAPH-F9B4\nF9B5\t例\t# CJK COMPATIBILITY IDEOGRAPH-F9B5\nF9B6\t禮\t# CJK COMPATIBILITY IDEOGRAPH-F9B6\nF9B7\t醴\t# CJK COMPATIBILITY IDEOGRAPH-F9B7\nF9B8\t隸\t# CJK COMPATIBILITY IDEOGRAPH-F9B8\nF9B9\t惡\t# CJK COMPATIBILITY IDEOGRAPH-F9B9\nF9BA\t了\t# CJK COMPATIBILITY IDEOGRAPH-F9BA\nF9BB\t僚\t# CJK COMPATIBILITY IDEOGRAPH-F9BB\nF9BC\t寮\t# CJK COMPATIBILITY IDEOGRAPH-F9BC\nF9BD\t尿\t# CJK COMPATIBILITY IDEOGRAPH-F9BD\nF9BE\t料\t# CJK COMPATIBILITY IDEOGRAPH-F9BE\nF9BF\t樂\t# CJK COMPATIBILITY IDEOGRAPH-F9BF\nF9C0\t燎\t# CJK COMPATIBILITY IDEOGRAPH-F9C0\nF9C1\t療\t# CJK COMPATIBILITY IDEOGRAPH-F9C1\nF9C2\t蓼\t# CJK COMPATIBILITY IDEOGRAPH-F9C2\nF9C3\t遼\t# CJK COMPATIBILITY IDEOGRAPH-F9C3\nF9C4\t龍\t# CJK COMPATIBILITY IDEOGRAPH-F9C4\nF9C5\t暈\t# CJK COMPATIBILITY IDEOGRAPH-F9C5\nF9C6\t阮\t# CJK COMPATIBILITY IDEOGRAPH-F9C6\nF9C7\t劉\t# CJK COMPATIBILITY IDEOGRAPH-F9C7\nF9C8\t杻\t# CJK COMPATIBILITY IDEOGRAPH-F9C8\nF9C9\t柳\t# CJK COMPATIBILITY IDEOGRAPH-F9C9\nF9CA\t流\t# CJK COMPATIBILITY IDEOGRAPH-F9CA\nF9CB\t溜\t# CJK COMPATIBILITY IDEOGRAPH-F9CB\nF9CC\t琉\t# CJK COMPATIBILITY IDEOGRAPH-F9CC\nF9CD\t留\t# CJK COMPATIBILITY IDEOGRAPH-F9CD\nF9CE\t硫\t# CJK COMPATIBILITY IDEOGRAPH-F9CE\nF9CF\t紐\t# CJK COMPATIBILITY IDEOGRAPH-F9CF\nF9D0\t類\t# CJK COMPATIBILITY IDEOGRAPH-F9D0\nF9D1\t六\t# CJK COMPATIBILITY IDEOGRAPH-F9D1\nF9D2\t戮\t# CJK COMPATIBILITY IDEOGRAPH-F9D2\nF9D3\t陸\t# CJK COMPATIBILITY IDEOGRAPH-F9D3\nF9D4\t倫\t# CJK COMPATIBILITY IDEOGRAPH-F9D4\nF9D5\t崙\t# CJK COMPATIBILITY IDEOGRAPH-F9D5\nF9D6\t淪\t# CJK COMPATIBILITY IDEOGRAPH-F9D6\nF9D7\t輪\t# CJK COMPATIBILITY IDEOGRAPH-F9D7\nF9D8\t律\t# CJK COMPATIBILITY IDEOGRAPH-F9D8\nF9D9\t慄\t# CJK COMPATIBILITY IDEOGRAPH-F9D9\nF9DA\t栗\t# CJK COMPATIBILITY IDEOGRAPH-F9DA\nF9DB\t率\t# CJK COMPATIBILITY IDEOGRAPH-F9DB\nF9DC\t隆\t# CJK COMPATIBILITY IDEOGRAPH-F9DC\nF9DD\t利\t# CJK COMPATIBILITY IDEOGRAPH-F9DD\nF9DE\t吏\t# CJK COMPATIBILITY IDEOGRAPH-F9DE\nF9DF\t履\t# CJK COMPATIBILITY IDEOGRAPH-F9DF\nF9E0\t易\t# CJK COMPATIBILITY IDEOGRAPH-F9E0\nF9E1\t李\t# CJK COMPATIBILITY IDEOGRAPH-F9E1\nF9E2\t梨\t# CJK COMPATIBILITY IDEOGRAPH-F9E2\nF9E3\t泥\t# CJK COMPATIBILITY IDEOGRAPH-F9E3\nF9E4\t理\t# CJK COMPATIBILITY IDEOGRAPH-F9E4\nF9E5\t痢\t# CJK COMPATIBILITY IDEOGRAPH-F9E5\nF9E6\t罹\t# CJK COMPATIBILITY IDEOGRAPH-F9E6\nF9E7\t裏\t# CJK COMPATIBILITY IDEOGRAPH-F9E7\nF9E8\t裡\t# CJK COMPATIBILITY IDEOGRAPH-F9E8\nF9E9\t里\t# CJK COMPATIBILITY IDEOGRAPH-F9E9\nF9EA\t離\t# CJK COMPATIBILITY IDEOGRAPH-F9EA\nF9EB\t匿\t# CJK COMPATIBILITY IDEOGRAPH-F9EB\nF9EC\t溺\t# CJK COMPATIBILITY IDEOGRAPH-F9EC\nF9ED\t吝\t# CJK COMPATIBILITY IDEOGRAPH-F9ED\nF9EE\t燐\t# CJK COMPATIBILITY IDEOGRAPH-F9EE\nF9EF\t璘\t# CJK COMPATIBILITY IDEOGRAPH-F9EF\nF9F0\t藺\t# CJK COMPATIBILITY IDEOGRAPH-F9F0\nF9F1\t隣\t# CJK COMPATIBILITY IDEOGRAPH-F9F1\nF9F2\t鱗\t# CJK COMPATIBILITY IDEOGRAPH-F9F2\nF9F3\t麟\t# CJK COMPATIBILITY IDEOGRAPH-F9F3\nF9F4\t林\t# CJK COMPATIBILITY IDEOGRAPH-F9F4\nF9F5\t淋\t# CJK COMPATIBILITY IDEOGRAPH-F9F5\nF9F6\t臨\t# CJK COMPATIBILITY IDEOGRAPH-F9F6\nF9F7\t立\t# CJK COMPATIBILITY IDEOGRAPH-F9F7\nF9F8\t笠\t# CJK COMPATIBILITY IDEOGRAPH-F9F8\nF9F9\t粒\t# CJK COMPATIBILITY IDEOGRAPH-F9F9\nF9FA\t狀\t# CJK COMPATIBILITY IDEOGRAPH-F9FA\nF9FB\t炙\t# CJK COMPATIBILITY IDEOGRAPH-F9FB\nF9FC\t識\t# CJK COMPATIBILITY IDEOGRAPH-F9FC\nF9FD\t什\t# CJK COMPATIBILITY IDEOGRAPH-F9FD\nF9FE\t茶\t# CJK COMPATIBILITY IDEOGRAPH-F9FE\nF9FF\t刺\t# CJK COMPATIBILITY IDEOGRAPH-F9FF\nFA00\t切\t# CJK COMPATIBILITY IDEOGRAPH-FA00\nFA01\t度\t# CJK COMPATIBILITY IDEOGRAPH-FA01\nFA02\t拓\t# CJK COMPATIBILITY IDEOGRAPH-FA02\nFA03\t糖\t# CJK COMPATIBILITY IDEOGRAPH-FA03\nFA04\t宅\t# CJK COMPATIBILITY IDEOGRAPH-FA04\nFA05\t洞\t# CJK COMPATIBILITY IDEOGRAPH-FA05\nFA06\t暴\t# CJK COMPATIBILITY IDEOGRAPH-FA06\nFA07\t輻\t# CJK COMPATIBILITY IDEOGRAPH-FA07\nFA08\t行\t# CJK COMPATIBILITY IDEOGRAPH-FA08\nFA09\t降\t# CJK COMPATIBILITY IDEOGRAPH-FA09\nFA0A\t見\t# CJK COMPATIBILITY IDEOGRAPH-FA0A\nFA0B\t廓\t# CJK COMPATIBILITY IDEOGRAPH-FA0B\nFA0C\t兀\t# CJK COMPATIBILITY IDEOGRAPH-FA0C\nFA0D\t嗀\t# CJK COMPATIBILITY IDEOGRAPH-FA0D\nFA10\t塚\t# CJK COMPATIBILITY IDEOGRAPH-FA10\nFA12\t晴\t# CJK COMPATIBILITY IDEOGRAPH-FA12\nFA15\t凞\t# CJK COMPATIBILITY IDEOGRAPH-FA15\nFA16\t猪\t# CJK COMPATIBILITY IDEOGRAPH-FA16\nFA17\t益\t# CJK COMPATIBILITY IDEOGRAPH-FA17\nFA18\t礼\t# CJK COMPATIBILITY IDEOGRAPH-FA18\nFA19\t神\t# CJK COMPATIBILITY IDEOGRAPH-FA19\nFA1A\t祥\t# CJK COMPATIBILITY IDEOGRAPH-FA1A\nFA1B\t福\t# CJK COMPATIBILITY IDEOGRAPH-FA1B\nFA1C\t靖\t# CJK COMPATIBILITY IDEOGRAPH-FA1C\nFA1D\t精\t# CJK COMPATIBILITY IDEOGRAPH-FA1D\nFA1E\t羽\t# CJK COMPATIBILITY IDEOGRAPH-FA1E\nFA20\t蘒\t# CJK COMPATIBILITY IDEOGRAPH-FA20\nFA22\t諸\t# CJK COMPATIBILITY IDEOGRAPH-FA22\nFA25\t逸\t# CJK COMPATIBILITY IDEOGRAPH-FA25\nFA26\t都\t# CJK COMPATIBILITY IDEOGRAPH-FA26\nFA2A\t飯\t# CJK COMPATIBILITY IDEOGRAPH-FA2A\nFA2B\t飼\t# CJK COMPATIBILITY IDEOGRAPH-FA2B\nFA2C\t館\t# CJK COMPATIBILITY IDEOGRAPH-FA2C\nFA2D\t鶴\t# CJK COMPATIBILITY IDEOGRAPH-FA2D\nFA30\t侮\t# CJK COMPATIBILITY IDEOGRAPH-FA30\nFA31\t僧\t# CJK COMPATIBILITY IDEOGRAPH-FA31\nFA32\t免\t# CJK COMPATIBILITY IDEOGRAPH-FA32\nFA33\t勉\t# CJK COMPATIBILITY IDEOGRAPH-FA33\nFA34\t勤\t# CJK COMPATIBILITY IDEOGRAPH-FA34\nFA35\t卑\t# CJK COMPATIBILITY IDEOGRAPH-FA35\nFA36\t喝\t# CJK COMPATIBILITY IDEOGRAPH-FA36\nFA37\t嘆\t# CJK COMPATIBILITY IDEOGRAPH-FA37\nFA38\t器\t# CJK COMPATIBILITY IDEOGRAPH-FA38\nFA39\t塀\t# CJK COMPATIBILITY IDEOGRAPH-FA39\nFA3A\t墨\t# CJK COMPATIBILITY IDEOGRAPH-FA3A\nFA3B\t層\t# CJK COMPATIBILITY IDEOGRAPH-FA3B\nFA3C\t屮\t# CJK COMPATIBILITY IDEOGRAPH-FA3C\nFA3D\t悔\t# CJK COMPATIBILITY IDEOGRAPH-FA3D\nFA3E\t慨\t# CJK COMPATIBILITY IDEOGRAPH-FA3E\nFA3F\t憎\t# CJK COMPATIBILITY IDEOGRAPH-FA3F\nFA40\t懲\t# CJK COMPATIBILITY IDEOGRAPH-FA40\nFA41\t敏\t# CJK COMPATIBILITY IDEOGRAPH-FA41\nFA42\t既\t# CJK COMPATIBILITY IDEOGRAPH-FA42\nFA43\t暑\t# CJK COMPATIBILITY IDEOGRAPH-FA43\nFA44\t梅\t# CJK COMPATIBILITY IDEOGRAPH-FA44\nFA45\t海\t# CJK COMPATIBILITY IDEOGRAPH-FA45\nFA46\t渚\t# CJK COMPATIBILITY IDEOGRAPH-FA46\nFA47\t漢\t# CJK COMPATIBILITY IDEOGRAPH-FA47\nFA48\t煮\t# CJK COMPATIBILITY IDEOGRAPH-FA48\nFA49\t爫\t# CJK COMPATIBILITY IDEOGRAPH-FA49\nFA4A\t琢\t# CJK COMPATIBILITY IDEOGRAPH-FA4A\nFA4B\t碑\t# CJK COMPATIBILITY IDEOGRAPH-FA4B\nFA4C\t社\t# CJK COMPATIBILITY IDEOGRAPH-FA4C\nFA4D\t祉\t# CJK COMPATIBILITY IDEOGRAPH-FA4D\nFA4E\t祈\t# CJK COMPATIBILITY IDEOGRAPH-FA4E\nFA4F\t祐\t# CJK COMPATIBILITY IDEOGRAPH-FA4F\nFA50\t祖\t# CJK COMPATIBILITY IDEOGRAPH-FA50\nFA51\t祝\t# CJK COMPATIBILITY IDEOGRAPH-FA51\nFA52\t禍\t# CJK COMPATIBILITY IDEOGRAPH-FA52\nFA53\t禎\t# CJK COMPATIBILITY IDEOGRAPH-FA53\nFA54\t穀\t# CJK COMPATIBILITY IDEOGRAPH-FA54\nFA55\t突\t# CJK COMPATIBILITY IDEOGRAPH-FA55\nFA56\t節\t# CJK COMPATIBILITY IDEOGRAPH-FA56\nFA57\t練\t# CJK COMPATIBILITY IDEOGRAPH-FA57\nFA58\t縉\t# CJK COMPATIBILITY IDEOGRAPH-FA58\nFA59\t繁\t# CJK COMPATIBILITY IDEOGRAPH-FA59\nFA5A\t署\t# CJK COMPATIBILITY IDEOGRAPH-FA5A\nFA5B\t者\t# CJK COMPATIBILITY IDEOGRAPH-FA5B\nFA5C\t臭\t# CJK COMPATIBILITY IDEOGRAPH-FA5C\nFA5D\t艹\t# CJK COMPATIBILITY IDEOGRAPH-FA5D\nFA5E\t艹\t# CJK COMPATIBILITY IDEOGRAPH-FA5E\nFA5F\t著\t# CJK COMPATIBILITY IDEOGRAPH-FA5F\nFA60\t褐\t# CJK COMPATIBILITY IDEOGRAPH-FA60\nFA61\t視\t# CJK COMPATIBILITY IDEOGRAPH-FA61\nFA62\t謁\t# CJK COMPATIBILITY IDEOGRAPH-FA62\nFA63\t謹\t# CJK COMPATIBILITY IDEOGRAPH-FA63\nFA64\t賓\t# CJK COMPATIBILITY IDEOGRAPH-FA64\nFA65\t贈\t# CJK COMPATIBILITY IDEOGRAPH-FA65\nFA66\t辶\t# CJK COMPATIBILITY IDEOGRAPH-FA66\nFA67\t逸\t# CJK COMPATIBILITY IDEOGRAPH-FA67\nFA68\t難\t# CJK COMPATIBILITY IDEOGRAPH-FA68\nFA69\t響\t# CJK COMPATIBILITY IDEOGRAPH-FA69\nFA6A\t頻\t# CJK COMPATIBILITY IDEOGRAPH-FA6A\nFB00\tff\t# LATIN SMALL LIGATURE FF\nFB01\tfi\t# LATIN SMALL LIGATURE FI\nFB02\tfl\t# LATIN SMALL LIGATURE FL\nFB03\tffi\t# LATIN SMALL LIGATURE FFI\nFB04\tffl\t# LATIN SMALL LIGATURE FFL\nFB05\tſt\t# LATIN SMALL LIGATURE LONG S T\nFB06\tst\t# LATIN SMALL LIGATURE ST\nFB13\tմն\t# ARMENIAN SMALL LIGATURE MEN NOW\nFB14\tմե\t# ARMENIAN SMALL LIGATURE MEN ECH\nFB15\tմի\t# ARMENIAN SMALL LIGATURE MEN INI\nFB16\tվն\t# ARMENIAN SMALL LIGATURE VEW NOW\nFB17\tմխ\t# ARMENIAN SMALL LIGATURE MEN XEH\nFB20\tע\t# HEBREW LETTER ALTERNATIVE AYIN\nFB21\tא\t# HEBREW LETTER WIDE ALEF\nFB22\tד\t# HEBREW LETTER WIDE DALET\nFB23\tה\t# HEBREW LETTER WIDE HE\nFB24\tכ\t# HEBREW LETTER WIDE KAF\nFB25\tל\t# HEBREW LETTER WIDE LAMED\nFB26\tם\t# HEBREW LETTER WIDE FINAL MEM\nFB27\tר\t# HEBREW LETTER WIDE RESH\nFB28\tת\t# HEBREW LETTER WIDE TAV\nFB29\t+\t# HEBREW LETTER ALTERNATIVE PLUS SIGN\nFB4F\tאל\t# HEBREW LIGATURE ALEF LAMED\nFE49\t‾\t# DASHED OVERLINE\nFE4A\t‾\t# CENTRELINE OVERLINE\nFE4B\t‾\t# WAVY OVERLINE\nFE4C\t‾\t# DOUBLE WAVY OVERLINE\nFE4D\t_\t# DASHED LOW LINE\nFE4E\t_\t# CENTRELINE LOW LINE\nFE4F\t_\t# WAVY LOW LINE\nFE50\t,\t# SMALL COMMA\nFE51\t、\t# SMALL IDEOGRAPHIC COMMA\nFE52\t.\t# SMALL FULL STOP\nFE54\t;\t# SMALL SEMICOLON\nFE55\t:\t# SMALL COLON\nFE56\t?\t# SMALL QUESTION MARK\nFE57\t!\t# SMALL EXCLAMATION MARK\nFE58\t—\t# SMALL EM DASH\nFE59\t(\t# SMALL LEFT PARENTHESIS\nFE5A\t)\t# SMALL RIGHT PARENTHESIS\nFE5B\t{\t# SMALL LEFT CURLY BRACKET\nFE5C\t}\t# SMALL RIGHT CURLY BRACKET\nFE5D\t〔\t# SMALL LEFT TORTOISE SHELL BRACKET\nFE5E\t〕\t# SMALL RIGHT TORTOISE SHELL BRACKET\nFE5F\t#\t# SMALL NUMBER SIGN\nFE60\t&\t# SMALL AMPERSAND\nFE61\t*\t# SMALL ASTERISK\nFE62\t+\t# SMALL PLUS SIGN\nFE63\t-\t# SMALL HYPHEN-MINUS\nFE64\t<\t# SMALL LESS-THAN SIGN\nFE65\t>\t# SMALL GREATER-THAN SIGN\nFE66\t=\t# SMALL EQUALS SIGN\nFE68\t\\\t# SMALL REVERSE SOLIDUS\nFE69\t$\t# SMALL DOLLAR SIGN\nFE6A\t%\t# SMALL PERCENT SIGN\nFE6B\t@\t# SMALL COMMERCIAL AT\nFF01\t!\t# FULLWIDTH EXCLAMATION MARK\nFF02\t\"\t# FULLWIDTH QUOTATION MARK\nFF03\t#\t# FULLWIDTH NUMBER SIGN\nFF04\t$\t# FULLWIDTH DOLLAR SIGN\nFF05\t%\t# FULLWIDTH PERCENT SIGN\nFF06\t&\t# FULLWIDTH AMPERSAND\nFF07\t'\t# FULLWIDTH APOSTROPHE\nFF08\t(\t# FULLWIDTH LEFT PARENTHESIS\nFF09\t)\t# FULLWIDTH RIGHT PARENTHESIS\nFF0A\t*\t# FULLWIDTH ASTERISK\nFF0B\t+\t# FULLWIDTH PLUS SIGN\nFF0C\t,\t# FULLWIDTH COMMA\nFF0D\t-\t# FULLWIDTH HYPHEN-MINUS\nFF0E\t.\t# FULLWIDTH FULL STOP\nFF0F\t/\t# FULLWIDTH SOLIDUS\nFF10\t0\t# FULLWIDTH DIGIT ZERO\nFF11\t1\t# FULLWIDTH DIGIT ONE\nFF12\t2\t# FULLWIDTH DIGIT TWO\nFF13\t3\t# FULLWIDTH DIGIT THREE\nFF14\t4\t# FULLWIDTH DIGIT FOUR\nFF15\t5\t# FULLWIDTH DIGIT FIVE\nFF16\t6\t# FULLWIDTH DIGIT SIX\nFF17\t7\t# FULLWIDTH DIGIT SEVEN\nFF18\t8\t# FULLWIDTH DIGIT EIGHT\nFF19\t9\t# FULLWIDTH DIGIT NINE\nFF1A\t:\t# FULLWIDTH COLON\nFF1B\t;\t# FULLWIDTH SEMICOLON\nFF1C\t<\t# FULLWIDTH LESS-THAN SIGN\nFF1D\t=\t# FULLWIDTH EQUALS SIGN\nFF1E\t>\t# FULLWIDTH GREATER-THAN SIGN\nFF1F\t?\t# FULLWIDTH QUESTION MARK\nFF20\t@\t# FULLWIDTH COMMERCIAL AT\nFF21\tA\t# FULLWIDTH LATIN CAPITAL LETTER A\nFF22\tB\t# FULLWIDTH LATIN CAPITAL LETTER B\nFF23\tC\t# FULLWIDTH LATIN CAPITAL LETTER C\nFF24\tD\t# FULLWIDTH LATIN CAPITAL LETTER D\nFF25\tE\t# FULLWIDTH LATIN CAPITAL LETTER E\nFF26\tF\t# FULLWIDTH LATIN CAPITAL LETTER F\nFF27\tG\t# FULLWIDTH LATIN CAPITAL LETTER G\nFF28\tH\t# FULLWIDTH LATIN CAPITAL LETTER H\nFF29\tI\t# FULLWIDTH LATIN CAPITAL LETTER I\nFF2A\tJ\t# FULLWIDTH LATIN CAPITAL LETTER J\nFF2B\tK\t# FULLWIDTH LATIN CAPITAL LETTER K\nFF2C\tL\t# FULLWIDTH LATIN CAPITAL LETTER L\nFF2D\tM\t# FULLWIDTH LATIN CAPITAL LETTER M\nFF2E\tN\t# FULLWIDTH LATIN CAPITAL LETTER N\nFF2F\tO\t# FULLWIDTH LATIN CAPITAL LETTER O\nFF30\tP\t# FULLWIDTH LATIN CAPITAL LETTER P\nFF31\tQ\t# FULLWIDTH LATIN CAPITAL LETTER Q\nFF32\tR\t# FULLWIDTH LATIN CAPITAL LETTER R\nFF33\tS\t# FULLWIDTH LATIN CAPITAL LETTER S\nFF34\tT\t# FULLWIDTH LATIN CAPITAL LETTER T\nFF35\tU\t# FULLWIDTH LATIN CAPITAL LETTER U\nFF36\tV\t# FULLWIDTH LATIN CAPITAL LETTER V\nFF37\tW\t# FULLWIDTH LATIN CAPITAL LETTER W\nFF38\tX\t# FULLWIDTH LATIN CAPITAL LETTER X\nFF39\tY\t# FULLWIDTH LATIN CAPITAL LETTER Y\nFF3A\tZ\t# FULLWIDTH LATIN CAPITAL LETTER Z\nFF3B\t[\t# FULLWIDTH LEFT SQUARE BRACKET\nFF3C\t\\\t# FULLWIDTH REVERSE SOLIDUS\nFF3D\t]\t# FULLWIDTH RIGHT SQUARE BRACKET\nFF3E\t^\t# FULLWIDTH CIRCUMFLEX ACCENT\nFF3F\t_\t# FULLWIDTH LOW LINE\nFF40\t`\t# FULLWIDTH GRAVE ACCENT\nFF41\ta\t# FULLWIDTH LATIN SMALL LETTER A\nFF42\tb\t# FULLWIDTH LATIN SMALL LETTER B\nFF43\tc\t# FULLWIDTH LATIN SMALL LETTER C\nFF44\td\t# FULLWIDTH LATIN SMALL LETTER D\nFF45\te\t# FULLWIDTH LATIN SMALL LETTER E\nFF46\tf\t# FULLWIDTH LATIN SMALL LETTER F\nFF47\tg\t# FULLWIDTH LATIN SMALL LETTER G\nFF48\th\t# FULLWIDTH LATIN SMALL LETTER H\nFF49\ti\t# FULLWIDTH LATIN SMALL LETTER I\nFF4A\tj\t# FULLWIDTH LATIN SMALL LETTER J\nFF4B\tk\t# FULLWIDTH LATIN SMALL LETTER K\nFF4C\tl\t# FULLWIDTH LATIN SMALL LETTER L\nFF4D\tm\t# FULLWIDTH LATIN SMALL LETTER M\nFF4E\tn\t# FULLWIDTH LATIN SMALL LETTER N\nFF4F\to\t# FULLWIDTH LATIN SMALL LETTER O\nFF50\tp\t# FULLWIDTH LATIN SMALL LETTER P\nFF51\tq\t# FULLWIDTH LATIN SMALL LETTER Q\nFF52\tr\t# FULLWIDTH LATIN SMALL LETTER R\nFF53\ts\t# FULLWIDTH LATIN SMALL LETTER S\nFF54\tt\t# FULLWIDTH LATIN SMALL LETTER T\nFF55\tu\t# FULLWIDTH LATIN SMALL LETTER U\nFF56\tv\t# FULLWIDTH LATIN SMALL LETTER V\nFF57\tw\t# FULLWIDTH LATIN SMALL LETTER W\nFF58\tx\t# FULLWIDTH LATIN SMALL LETTER X\nFF59\ty\t# FULLWIDTH LATIN SMALL LETTER Y\nFF5A\tz\t# FULLWIDTH LATIN SMALL LETTER Z\nFF5B\t{\t# FULLWIDTH LEFT CURLY BRACKET\nFF5C\t|\t# FULLWIDTH VERTICAL LINE\nFF5D\t}\t# FULLWIDTH RIGHT CURLY BRACKET\nFF5E\t~\t# FULLWIDTH TILDE\nFF5F\t⦅\t# FULLWIDTH LEFT WHITE PARENTHESIS\nFF60\t⦆\t# FULLWIDTH RIGHT WHITE PARENTHESIS\nFF61\t。\t# HALFWIDTH IDEOGRAPHIC FULL STOP\nFF62\t「\t# HALFWIDTH LEFT CORNER BRACKET\nFF63\t」\t# HALFWIDTH RIGHT CORNER BRACKET\nFF64\t、\t# HALFWIDTH IDEOGRAPHIC COMMA\nFF65\t・\t# HALFWIDTH KATAKANA MIDDLE DOT\nFF66\tヲ\t# HALFWIDTH KATAKANA LETTER WO\nFF67\tァ\t# HALFWIDTH KATAKANA LETTER SMALL A\nFF68\tィ\t# HALFWIDTH KATAKANA LETTER SMALL I\nFF69\tゥ\t# HALFWIDTH KATAKANA LETTER SMALL U\nFF6A\tェ\t# HALFWIDTH KATAKANA LETTER SMALL E\nFF6B\tォ\t# HALFWIDTH KATAKANA LETTER SMALL O\nFF6C\tャ\t# HALFWIDTH KATAKANA LETTER SMALL YA\nFF6D\tュ\t# HALFWIDTH KATAKANA LETTER SMALL YU\nFF6E\tョ\t# HALFWIDTH KATAKANA LETTER SMALL YO\nFF6F\tッ\t# HALFWIDTH KATAKANA LETTER SMALL TU\nFF70\tー\t# HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK\nFF71\tア\t# HALFWIDTH KATAKANA LETTER A\nFF72\tイ\t# HALFWIDTH KATAKANA LETTER I\nFF73\tウ\t# HALFWIDTH KATAKANA LETTER U\nFF74\tエ\t# HALFWIDTH KATAKANA LETTER E\nFF75\tオ\t# HALFWIDTH KATAKANA LETTER O\nFF76\tカ\t# HALFWIDTH KATAKANA LETTER KA\nFF77\tキ\t# HALFWIDTH KATAKANA LETTER KI\nFF78\tク\t# HALFWIDTH KATAKANA LETTER KU\nFF79\tケ\t# HALFWIDTH KATAKANA LETTER KE\nFF7A\tコ\t# HALFWIDTH KATAKANA LETTER KO\nFF7B\tサ\t# HALFWIDTH KATAKANA LETTER SA\nFF7C\tシ\t# HALFWIDTH KATAKANA LETTER SI\nFF7D\tス\t# HALFWIDTH KATAKANA LETTER SU\nFF7E\tセ\t# HALFWIDTH KATAKANA LETTER SE\nFF7F\tソ\t# HALFWIDTH KATAKANA LETTER SO\nFF80\tタ\t# HALFWIDTH KATAKANA LETTER TA\nFF81\tチ\t# HALFWIDTH KATAKANA LETTER TI\nFF82\tツ\t# HALFWIDTH KATAKANA LETTER TU\nFF83\tテ\t# HALFWIDTH KATAKANA LETTER TE\nFF84\tト\t# HALFWIDTH KATAKANA LETTER TO\nFF85\tナ\t# HALFWIDTH KATAKANA LETTER NA\nFF86\tニ\t# HALFWIDTH KATAKANA LETTER NI\nFF87\tヌ\t# HALFWIDTH KATAKANA LETTER NU\nFF88\tネ\t# HALFWIDTH KATAKANA LETTER NE\nFF89\tノ\t# HALFWIDTH KATAKANA LETTER NO\nFF8A\tハ\t# HALFWIDTH KATAKANA LETTER HA\nFF8B\tヒ\t# HALFWIDTH KATAKANA LETTER HI\nFF8C\tフ\t# HALFWIDTH KATAKANA LETTER HU\nFF8D\tヘ\t# HALFWIDTH KATAKANA LETTER HE\nFF8E\tホ\t# HALFWIDTH KATAKANA LETTER HO\nFF8F\tマ\t# HALFWIDTH KATAKANA LETTER MA\nFF90\tミ\t# HALFWIDTH KATAKANA LETTER MI\nFF91\tム\t# HALFWIDTH KATAKANA LETTER MU\nFF92\tメ\t# HALFWIDTH KATAKANA LETTER ME\nFF93\tモ\t# HALFWIDTH KATAKANA LETTER MO\nFF94\tヤ\t# HALFWIDTH KATAKANA LETTER YA\nFF95\tユ\t# HALFWIDTH KATAKANA LETTER YU\nFF96\tヨ\t# HALFWIDTH KATAKANA LETTER YO\nFF97\tラ\t# HALFWIDTH KATAKANA LETTER RA\nFF98\tリ\t# HALFWIDTH KATAKANA LETTER RI\nFF99\tル\t# HALFWIDTH KATAKANA LETTER RU\nFF9A\tレ\t# HALFWIDTH KATAKANA LETTER RE\nFF9B\tロ\t# HALFWIDTH KATAKANA LETTER RO\nFF9C\tワ\t# HALFWIDTH KATAKANA LETTER WA\nFF9D\tン\t# HALFWIDTH KATAKANA LETTER N\nFF9E\t゙\t# HALFWIDTH KATAKANA VOICED SOUND MARK\nFF9F\t゚\t# HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK\nFFA0\tㅤ\t# HALFWIDTH HANGUL FILLER\nFFA1\tㄱ\t# HALFWIDTH HANGUL LETTER KIYEOK\nFFA2\tㄲ\t# HALFWIDTH HANGUL LETTER SSANGKIYEOK\nFFA3\tㄳ\t# HALFWIDTH HANGUL LETTER KIYEOK-SIOS\nFFA4\tㄴ\t# HALFWIDTH HANGUL LETTER NIEUN\nFFA5\tㄵ\t# HALFWIDTH HANGUL LETTER NIEUN-CIEUC\nFFA6\tㄶ\t# HALFWIDTH HANGUL LETTER NIEUN-HIEUH\nFFA7\tㄷ\t# HALFWIDTH HANGUL LETTER TIKEUT\nFFA8\tㄸ\t# HALFWIDTH HANGUL LETTER SSANGTIKEUT\nFFA9\tㄹ\t# HALFWIDTH HANGUL LETTER RIEUL\nFFAA\tㄺ\t# HALFWIDTH HANGUL LETTER RIEUL-KIYEOK\nFFAB\tㄻ\t# HALFWIDTH HANGUL LETTER RIEUL-MIEUM\nFFAC\tㄼ\t# HALFWIDTH HANGUL LETTER RIEUL-PIEUP\nFFAD\tㄽ\t# HALFWIDTH HANGUL LETTER RIEUL-SIOS\nFFAE\tㄾ\t# HALFWIDTH HANGUL LETTER RIEUL-THIEUTH\nFFAF\tㄿ\t# HALFWIDTH HANGUL LETTER RIEUL-PHIEUPH\nFFB0\tㅀ\t# HALFWIDTH HANGUL LETTER RIEUL-HIEUH\nFFB1\tㅁ\t# HALFWIDTH HANGUL LETTER MIEUM\nFFB2\tㅂ\t# HALFWIDTH HANGUL LETTER PIEUP\nFFB3\tㅃ\t# HALFWIDTH HANGUL LETTER SSANGPIEUP\nFFB4\tㅄ\t# HALFWIDTH HANGUL LETTER PIEUP-SIOS\nFFB5\tㅅ\t# HALFWIDTH HANGUL LETTER SIOS\nFFB6\tㅆ\t# HALFWIDTH HANGUL LETTER SSANGSIOS\nFFB7\tㅇ\t# HALFWIDTH HANGUL LETTER IEUNG\nFFB8\tㅈ\t# HALFWIDTH HANGUL LETTER CIEUC\nFFB9\tㅉ\t# HALFWIDTH HANGUL LETTER SSANGCIEUC\nFFBA\tㅊ\t# HALFWIDTH HANGUL LETTER CHIEUCH\nFFBB\tㅋ\t# HALFWIDTH HANGUL LETTER KHIEUKH\nFFBC\tㅌ\t# HALFWIDTH HANGUL LETTER THIEUTH\nFFBD\tㅍ\t# HALFWIDTH HANGUL LETTER PHIEUPH\nFFBE\tㅎ\t# HALFWIDTH HANGUL LETTER HIEUH\nFFC2\tㅏ\t# HALFWIDTH HANGUL LETTER A\nFFC3\tㅐ\t# HALFWIDTH HANGUL LETTER AE\nFFC4\tㅑ\t# HALFWIDTH HANGUL LETTER YA\nFFC5\tㅒ\t# HALFWIDTH HANGUL LETTER YAE\nFFC6\tㅓ\t# HALFWIDTH HANGUL LETTER EO\nFFC7\tㅔ\t# HALFWIDTH HANGUL LETTER E\nFFCA\tㅕ\t# HALFWIDTH HANGUL LETTER YEO\nFFCB\tㅖ\t# HALFWIDTH HANGUL LETTER YE\nFFCC\tㅗ\t# HALFWIDTH HANGUL LETTER O\nFFCD\tㅘ\t# HALFWIDTH HANGUL LETTER WA\nFFCE\tㅙ\t# HALFWIDTH HANGUL LETTER WAE\nFFCF\tㅚ\t# HALFWIDTH HANGUL LETTER OE\nFFD2\tㅛ\t# HALFWIDTH HANGUL LETTER YO\nFFD3\tㅜ\t# HALFWIDTH HANGUL LETTER U\nFFD4\tㅝ\t# HALFWIDTH HANGUL LETTER WEO\nFFD5\tㅞ\t# HALFWIDTH HANGUL LETTER WE\nFFD6\tㅟ\t# HALFWIDTH HANGUL LETTER WI\nFFD7\tㅠ\t# HALFWIDTH HANGUL LETTER YU\nFFDA\tㅡ\t# HALFWIDTH HANGUL LETTER EU\nFFDB\tㅢ\t# HALFWIDTH HANGUL LETTER YI\nFFDC\tㅣ\t# HALFWIDTH HANGUL LETTER I\nFFE0\t¢\t# FULLWIDTH CENT SIGN\nFFE1\t£\t# FULLWIDTH POUND SIGN\nFFE2\t¬\t# FULLWIDTH NOT SIGN\nFFE3\t¯\t# FULLWIDTH MACRON\nFFE4\t¦\t# FULLWIDTH BROKEN BAR\nFFE5\t¥\t# FULLWIDTH YEN SIGN\nFFE6\t₩\t# FULLWIDTH WON SIGN\nFFE8\t│\t# HALFWIDTH FORMS LIGHT VERTICAL\nFFE9\t←\t# HALFWIDTH LEFTWARDS ARROW\nFFEA\t↑\t# HALFWIDTH UPWARDS ARROW\nFFEB\t→\t# HALFWIDTH RIGHTWARDS ARROW\nFFEC\t↓\t# HALFWIDTH DOWNWARDS ARROW\nFFED\t■\t# HALFWIDTH BLACK SQUARE\nFFEE\t○\t# HALFWIDTH WHITE CIRCLE\n1D400\tA\t# MATHEMATICAL BOLD CAPITAL A\n1D401\tB\t# MATHEMATICAL BOLD CAPITAL B\n1D402\tC\t# MATHEMATICAL BOLD CAPITAL C\n1D403\tD\t# MATHEMATICAL BOLD CAPITAL D\n1D404\tE\t# MATHEMATICAL BOLD CAPITAL E\n1D405\tF\t# MATHEMATICAL BOLD CAPITAL F\n1D406\tG\t# MATHEMATICAL BOLD CAPITAL G\n1D407\tH\t# MATHEMATICAL BOLD CAPITAL H\n1D408\tI\t# MATHEMATICAL BOLD CAPITAL I\n1D409\tJ\t# MATHEMATICAL BOLD CAPITAL J\n1D40A\tK\t# MATHEMATICAL BOLD CAPITAL K\n1D40B\tL\t# MATHEMATICAL BOLD CAPITAL L\n1D40C\tM\t# MATHEMATICAL BOLD CAPITAL M\n1D40D\tN\t# MATHEMATICAL BOLD CAPITAL N\n1D40E\tO\t# MATHEMATICAL BOLD CAPITAL O\n1D40F\tP\t# MATHEMATICAL BOLD CAPITAL P\n1D410\tQ\t# MATHEMATICAL BOLD CAPITAL Q\n1D411\tR\t# MATHEMATICAL BOLD CAPITAL R\n1D412\tS\t# MATHEMATICAL BOLD CAPITAL S\n1D413\tT\t# MATHEMATICAL BOLD CAPITAL T\n1D414\tU\t# MATHEMATICAL BOLD CAPITAL U\n1D415\tV\t# MATHEMATICAL BOLD CAPITAL V\n1D416\tW\t# MATHEMATICAL BOLD CAPITAL W\n1D417\tX\t# MATHEMATICAL BOLD CAPITAL X\n1D418\tY\t# MATHEMATICAL BOLD CAPITAL Y\n1D419\tZ\t# MATHEMATICAL BOLD CAPITAL Z\n1D41A\ta\t# MATHEMATICAL BOLD SMALL A\n1D41B\tb\t# MATHEMATICAL BOLD SMALL B\n1D41C\tc\t# MATHEMATICAL BOLD SMALL C\n1D41D\td\t# MATHEMATICAL BOLD SMALL D\n1D41E\te\t# MATHEMATICAL BOLD SMALL E\n1D41F\tf\t# MATHEMATICAL BOLD SMALL F\n1D420\tg\t# MATHEMATICAL BOLD SMALL G\n1D421\th\t# MATHEMATICAL BOLD SMALL H\n1D422\ti\t# MATHEMATICAL BOLD SMALL I\n1D423\tj\t# MATHEMATICAL BOLD SMALL J\n1D424\tk\t# MATHEMATICAL BOLD SMALL K\n1D425\tl\t# MATHEMATICAL BOLD SMALL L\n1D426\tm\t# MATHEMATICAL BOLD SMALL M\n1D427\tn\t# MATHEMATICAL BOLD SMALL N\n1D428\to\t# MATHEMATICAL BOLD SMALL O\n1D429\tp\t# MATHEMATICAL BOLD SMALL P\n1D42A\tq\t# MATHEMATICAL BOLD SMALL Q\n1D42B\tr\t# MATHEMATICAL BOLD SMALL R\n1D42C\ts\t# MATHEMATICAL BOLD SMALL S\n1D42D\tt\t# MATHEMATICAL BOLD SMALL T\n1D42E\tu\t# MATHEMATICAL BOLD SMALL U\n1D42F\tv\t# MATHEMATICAL BOLD SMALL V\n1D430\tw\t# MATHEMATICAL BOLD SMALL W\n1D431\tx\t# MATHEMATICAL BOLD SMALL X\n1D432\ty\t# MATHEMATICAL BOLD SMALL Y\n1D433\tz\t# MATHEMATICAL BOLD SMALL Z\n1D434\tA\t# MATHEMATICAL ITALIC CAPITAL A\n1D435\tB\t# MATHEMATICAL ITALIC CAPITAL B\n1D436\tC\t# MATHEMATICAL ITALIC CAPITAL C\n1D437\tD\t# MATHEMATICAL ITALIC CAPITAL D\n1D438\tE\t# MATHEMATICAL ITALIC CAPITAL E\n1D439\tF\t# MATHEMATICAL ITALIC CAPITAL F\n1D43A\tG\t# MATHEMATICAL ITALIC CAPITAL G\n1D43B\tH\t# MATHEMATICAL ITALIC CAPITAL H\n1D43C\tI\t# MATHEMATICAL ITALIC CAPITAL I\n1D43D\tJ\t# MATHEMATICAL ITALIC CAPITAL J\n1D43E\tK\t# MATHEMATICAL ITALIC CAPITAL K\n1D43F\tL\t# MATHEMATICAL ITALIC CAPITAL L\n1D440\tM\t# MATHEMATICAL ITALIC CAPITAL M\n1D441\tN\t# MATHEMATICAL ITALIC CAPITAL N\n1D442\tO\t# MATHEMATICAL ITALIC CAPITAL O\n1D443\tP\t# MATHEMATICAL ITALIC CAPITAL P\n1D444\tQ\t# MATHEMATICAL ITALIC CAPITAL Q\n1D445\tR\t# MATHEMATICAL ITALIC CAPITAL R\n1D446\tS\t# MATHEMATICAL ITALIC CAPITAL S\n1D447\tT\t# MATHEMATICAL ITALIC CAPITAL T\n1D448\tU\t# MATHEMATICAL ITALIC CAPITAL U\n1D449\tV\t# MATHEMATICAL ITALIC CAPITAL V\n1D44A\tW\t# MATHEMATICAL ITALIC CAPITAL W\n1D44B\tX\t# MATHEMATICAL ITALIC CAPITAL X\n1D44C\tY\t# MATHEMATICAL ITALIC CAPITAL Y\n1D44D\tZ\t# MATHEMATICAL ITALIC CAPITAL Z\n1D44E\ta\t# MATHEMATICAL ITALIC SMALL A\n1D44F\tb\t# MATHEMATICAL ITALIC SMALL B\n1D450\tc\t# MATHEMATICAL ITALIC SMALL C\n1D451\td\t# MATHEMATICAL ITALIC SMALL D\n1D452\te\t# MATHEMATICAL ITALIC SMALL E\n1D453\tf\t# MATHEMATICAL ITALIC SMALL F\n1D454\tg\t# MATHEMATICAL ITALIC SMALL G\n1D456\ti\t# MATHEMATICAL ITALIC SMALL I\n1D457\tj\t# MATHEMATICAL ITALIC SMALL J\n1D458\tk\t# MATHEMATICAL ITALIC SMALL K\n1D459\tl\t# MATHEMATICAL ITALIC SMALL L\n1D45A\tm\t# MATHEMATICAL ITALIC SMALL M\n1D45B\tn\t# MATHEMATICAL ITALIC SMALL N\n1D45C\to\t# MATHEMATICAL ITALIC SMALL O\n1D45D\tp\t# MATHEMATICAL ITALIC SMALL P\n1D45E\tq\t# MATHEMATICAL ITALIC SMALL Q\n1D45F\tr\t# MATHEMATICAL ITALIC SMALL R\n1D460\ts\t# MATHEMATICAL ITALIC SMALL S\n1D461\tt\t# MATHEMATICAL ITALIC SMALL T\n1D462\tu\t# MATHEMATICAL ITALIC SMALL U\n1D463\tv\t# MATHEMATICAL ITALIC SMALL V\n1D464\tw\t# MATHEMATICAL ITALIC SMALL W\n1D465\tx\t# MATHEMATICAL ITALIC SMALL X\n1D466\ty\t# MATHEMATICAL ITALIC SMALL Y\n1D467\tz\t# MATHEMATICAL ITALIC SMALL Z\n1D468\tA\t# MATHEMATICAL BOLD ITALIC CAPITAL A\n1D469\tB\t# MATHEMATICAL BOLD ITALIC CAPITAL B\n1D46A\tC\t# MATHEMATICAL BOLD ITALIC CAPITAL C\n1D46B\tD\t# MATHEMATICAL BOLD ITALIC CAPITAL D\n1D46C\tE\t# MATHEMATICAL BOLD ITALIC CAPITAL E\n1D46D\tF\t# MATHEMATICAL BOLD ITALIC CAPITAL F\n1D46E\tG\t# MATHEMATICAL BOLD ITALIC CAPITAL G\n1D46F\tH\t# MATHEMATICAL BOLD ITALIC CAPITAL H\n1D470\tI\t# MATHEMATICAL BOLD ITALIC CAPITAL I\n1D471\tJ\t# MATHEMATICAL BOLD ITALIC CAPITAL J\n1D472\tK\t# MATHEMATICAL BOLD ITALIC CAPITAL K\n1D473\tL\t# MATHEMATICAL BOLD ITALIC CAPITAL L\n1D474\tM\t# MATHEMATICAL BOLD ITALIC CAPITAL M\n1D475\tN\t# MATHEMATICAL BOLD ITALIC CAPITAL N\n1D476\tO\t# MATHEMATICAL BOLD ITALIC CAPITAL O\n1D477\tP\t# MATHEMATICAL BOLD ITALIC CAPITAL P\n1D478\tQ\t# MATHEMATICAL BOLD ITALIC CAPITAL Q\n1D479\tR\t# MATHEMATICAL BOLD ITALIC CAPITAL R\n1D47A\tS\t# MATHEMATICAL BOLD ITALIC CAPITAL S\n1D47B\tT\t# MATHEMATICAL BOLD ITALIC CAPITAL T\n1D47C\tU\t# MATHEMATICAL BOLD ITALIC CAPITAL U\n1D47D\tV\t# MATHEMATICAL BOLD ITALIC CAPITAL V\n1D47E\tW\t# MATHEMATICAL BOLD ITALIC CAPITAL W\n1D47F\tX\t# MATHEMATICAL BOLD ITALIC CAPITAL X\n1D480\tY\t# MATHEMATICAL BOLD ITALIC CAPITAL Y\n1D481\tZ\t# MATHEMATICAL BOLD ITALIC CAPITAL Z\n1D482\ta\t# MATHEMATICAL BOLD ITALIC SMALL A\n1D483\tb\t# MATHEMATICAL BOLD ITALIC SMALL B\n1D484\tc\t# MATHEMATICAL BOLD ITALIC SMALL C\n1D485\td\t# MATHEMATICAL BOLD ITALIC SMALL D\n1D486\te\t# MATHEMATICAL BOLD ITALIC SMALL E\n1D487\tf\t# MATHEMATICAL BOLD ITALIC SMALL F\n1D488\tg\t# MATHEMATICAL BOLD ITALIC SMALL G\n1D489\th\t# MATHEMATICAL BOLD ITALIC SMALL H\n1D48A\ti\t# MATHEMATICAL BOLD ITALIC SMALL I\n1D48B\tj\t# MATHEMATICAL BOLD ITALIC SMALL J\n1D48C\tk\t# MATHEMATICAL BOLD ITALIC SMALL K\n1D48D\tl\t# MATHEMATICAL BOLD ITALIC SMALL L\n1D48E\tm\t# MATHEMATICAL BOLD ITALIC SMALL M\n1D48F\tn\t# MATHEMATICAL BOLD ITALIC SMALL N\n1D490\to\t# MATHEMATICAL BOLD ITALIC SMALL O\n1D491\tp\t# MATHEMATICAL BOLD ITALIC SMALL P\n1D492\tq\t# MATHEMATICAL BOLD ITALIC SMALL Q\n1D493\tr\t# MATHEMATICAL BOLD ITALIC SMALL R\n1D494\ts\t# MATHEMATICAL BOLD ITALIC SMALL S\n1D495\tt\t# MATHEMATICAL BOLD ITALIC SMALL T\n1D496\tu\t# MATHEMATICAL BOLD ITALIC SMALL U\n1D497\tv\t# MATHEMATICAL BOLD ITALIC SMALL V\n1D498\tw\t# MATHEMATICAL BOLD ITALIC SMALL W\n1D499\tx\t# MATHEMATICAL BOLD ITALIC SMALL X\n1D49A\ty\t# MATHEMATICAL BOLD ITALIC SMALL Y\n1D49B\tz\t# MATHEMATICAL BOLD ITALIC SMALL Z\n1D49C\tA\t# MATHEMATICAL SCRIPT CAPITAL A\n1D49E\tC\t# MATHEMATICAL SCRIPT CAPITAL C\n1D49F\tD\t# MATHEMATICAL SCRIPT CAPITAL D\n1D4A2\tG\t# MATHEMATICAL SCRIPT CAPITAL G\n1D4A5\tJ\t# MATHEMATICAL SCRIPT CAPITAL J\n1D4A6\tK\t# MATHEMATICAL SCRIPT CAPITAL K\n1D4A9\tN\t# MATHEMATICAL SCRIPT CAPITAL N\n1D4AA\tO\t# MATHEMATICAL SCRIPT CAPITAL O\n1D4AB\tP\t# MATHEMATICAL SCRIPT CAPITAL P\n1D4AC\tQ\t# MATHEMATICAL SCRIPT CAPITAL Q\n1D4AE\tS\t# MATHEMATICAL SCRIPT CAPITAL S\n1D4AF\tT\t# MATHEMATICAL SCRIPT CAPITAL T\n1D4B0\tU\t# MATHEMATICAL SCRIPT CAPITAL U\n1D4B1\tV\t# MATHEMATICAL SCRIPT CAPITAL V\n1D4B2\tW\t# MATHEMATICAL SCRIPT CAPITAL W\n1D4B3\tX\t# MATHEMATICAL SCRIPT CAPITAL X\n1D4B4\tY\t# MATHEMATICAL SCRIPT CAPITAL Y\n1D4B5\tZ\t# MATHEMATICAL SCRIPT CAPITAL Z\n1D4B6\ta\t# MATHEMATICAL SCRIPT SMALL A\n1D4B7\tb\t# MATHEMATICAL SCRIPT SMALL B\n1D4B8\tc\t# MATHEMATICAL SCRIPT SMALL C\n1D4B9\td\t# MATHEMATICAL SCRIPT SMALL D\n1D4BB\tf\t# MATHEMATICAL SCRIPT SMALL F\n1D4BD\th\t# MATHEMATICAL SCRIPT SMALL H\n1D4BE\ti\t# MATHEMATICAL SCRIPT SMALL I\n1D4BF\tj\t# MATHEMATICAL SCRIPT SMALL J\n1D4C0\tk\t# MATHEMATICAL SCRIPT SMALL K\n1D4C1\tl\t# MATHEMATICAL SCRIPT SMALL L\n1D4C2\tm\t# MATHEMATICAL SCRIPT SMALL M\n1D4C3\tn\t# MATHEMATICAL SCRIPT SMALL N\n1D4C5\tp\t# MATHEMATICAL SCRIPT SMALL P\n1D4C6\tq\t# MATHEMATICAL SCRIPT SMALL Q\n1D4C7\tr\t# MATHEMATICAL SCRIPT SMALL R\n1D4C8\ts\t# MATHEMATICAL SCRIPT SMALL S\n1D4C9\tt\t# MATHEMATICAL SCRIPT SMALL T\n1D4CA\tu\t# MATHEMATICAL SCRIPT SMALL U\n1D4CB\tv\t# MATHEMATICAL SCRIPT SMALL V\n1D4CC\tw\t# MATHEMATICAL SCRIPT SMALL W\n1D4CD\tx\t# MATHEMATICAL SCRIPT SMALL X\n1D4CE\ty\t# MATHEMATICAL SCRIPT SMALL Y\n1D4CF\tz\t# MATHEMATICAL SCRIPT SMALL Z\n1D4D0\tA\t# MATHEMATICAL BOLD SCRIPT CAPITAL A\n1D4D1\tB\t# MATHEMATICAL BOLD SCRIPT CAPITAL B\n1D4D2\tC\t# MATHEMATICAL BOLD SCRIPT CAPITAL C\n1D4D3\tD\t# MATHEMATICAL BOLD SCRIPT CAPITAL D\n1D4D4\tE\t# MATHEMATICAL BOLD SCRIPT CAPITAL E\n1D4D5\tF\t# MATHEMATICAL BOLD SCRIPT CAPITAL F\n1D4D6\tG\t# MATHEMATICAL BOLD SCRIPT CAPITAL G\n1D4D7\tH\t# MATHEMATICAL BOLD SCRIPT CAPITAL H\n1D4D8\tI\t# MATHEMATICAL BOLD SCRIPT CAPITAL I\n1D4D9\tJ\t# MATHEMATICAL BOLD SCRIPT CAPITAL J\n1D4DA\tK\t# MATHEMATICAL BOLD SCRIPT CAPITAL K\n1D4DB\tL\t# MATHEMATICAL BOLD SCRIPT CAPITAL L\n1D4DC\tM\t# MATHEMATICAL BOLD SCRIPT CAPITAL M\n1D4DD\tN\t# MATHEMATICAL BOLD SCRIPT CAPITAL N\n1D4DE\tO\t# MATHEMATICAL BOLD SCRIPT CAPITAL O\n1D4DF\tP\t# MATHEMATICAL BOLD SCRIPT CAPITAL P\n1D4E0\tQ\t# MATHEMATICAL BOLD SCRIPT CAPITAL Q\n1D4E1\tR\t# MATHEMATICAL BOLD SCRIPT CAPITAL R\n1D4E2\tS\t# MATHEMATICAL BOLD SCRIPT CAPITAL S\n1D4E3\tT\t# MATHEMATICAL BOLD SCRIPT CAPITAL T\n1D4E4\tU\t# MATHEMATICAL BOLD SCRIPT CAPITAL U\n1D4E5\tV\t# MATHEMATICAL BOLD SCRIPT CAPITAL V\n1D4E6\tW\t# MATHEMATICAL BOLD SCRIPT CAPITAL W\n1D4E7\tX\t# MATHEMATICAL BOLD SCRIPT CAPITAL X\n1D4E8\tY\t# MATHEMATICAL BOLD SCRIPT CAPITAL Y\n1D4E9\tZ\t# MATHEMATICAL BOLD SCRIPT CAPITAL Z\n1D4EA\ta\t# MATHEMATICAL BOLD SCRIPT SMALL A\n1D4EB\tb\t# MATHEMATICAL BOLD SCRIPT SMALL B\n1D4EC\tc\t# MATHEMATICAL BOLD SCRIPT SMALL C\n1D4ED\td\t# MATHEMATICAL BOLD SCRIPT SMALL D\n1D4EE\te\t# MATHEMATICAL BOLD SCRIPT SMALL E\n1D4EF\tf\t# MATHEMATICAL BOLD SCRIPT SMALL F\n1D4F0\tg\t# MATHEMATICAL BOLD SCRIPT SMALL G\n1D4F1\th\t# MATHEMATICAL BOLD SCRIPT SMALL H\n1D4F2\ti\t# MATHEMATICAL BOLD SCRIPT SMALL I\n1D4F3\tj\t# MATHEMATICAL BOLD SCRIPT SMALL J\n1D4F4\tk\t# MATHEMATICAL BOLD SCRIPT SMALL K\n1D4F5\tl\t# MATHEMATICAL BOLD SCRIPT SMALL L\n1D4F6\tm\t# MATHEMATICAL BOLD SCRIPT SMALL M\n1D4F7\tn\t# MATHEMATICAL BOLD SCRIPT SMALL N\n1D4F8\to\t# MATHEMATICAL BOLD SCRIPT SMALL O\n1D4F9\tp\t# MATHEMATICAL BOLD SCRIPT SMALL P\n1D4FA\tq\t# MATHEMATICAL BOLD SCRIPT SMALL Q\n1D4FB\tr\t# MATHEMATICAL BOLD SCRIPT SMALL R\n1D4FC\ts\t# MATHEMATICAL BOLD SCRIPT SMALL S\n1D4FD\tt\t# MATHEMATICAL BOLD SCRIPT SMALL T\n1D4FE\tu\t# MATHEMATICAL BOLD SCRIPT SMALL U\n1D4FF\tv\t# MATHEMATICAL BOLD SCRIPT SMALL V\n1D500\tw\t# MATHEMATICAL BOLD SCRIPT SMALL W\n1D501\tx\t# MATHEMATICAL BOLD SCRIPT SMALL X\n1D502\ty\t# MATHEMATICAL BOLD SCRIPT SMALL Y\n1D503\tz\t# MATHEMATICAL BOLD SCRIPT SMALL Z\n1D504\tA\t# MATHEMATICAL FRAKTUR CAPITAL A\n1D505\tB\t# MATHEMATICAL FRAKTUR CAPITAL B\n1D507\tD\t# MATHEMATICAL FRAKTUR CAPITAL D\n1D508\tE\t# MATHEMATICAL FRAKTUR CAPITAL E\n1D509\tF\t# MATHEMATICAL FRAKTUR CAPITAL F\n1D50A\tG\t# MATHEMATICAL FRAKTUR CAPITAL G\n1D50D\tJ\t# MATHEMATICAL FRAKTUR CAPITAL J\n1D50E\tK\t# MATHEMATICAL FRAKTUR CAPITAL K\n1D50F\tL\t# MATHEMATICAL FRAKTUR CAPITAL L\n1D510\tM\t# MATHEMATICAL FRAKTUR CAPITAL M\n1D511\tN\t# MATHEMATICAL FRAKTUR CAPITAL N\n1D512\tO\t# MATHEMATICAL FRAKTUR CAPITAL O\n1D513\tP\t# MATHEMATICAL FRAKTUR CAPITAL P\n1D514\tQ\t# MATHEMATICAL FRAKTUR CAPITAL Q\n1D516\tS\t# MATHEMATICAL FRAKTUR CAPITAL S\n1D517\tT\t# MATHEMATICAL FRAKTUR CAPITAL T\n1D518\tU\t# MATHEMATICAL FRAKTUR CAPITAL U\n1D519\tV\t# MATHEMATICAL FRAKTUR CAPITAL V\n1D51A\tW\t# MATHEMATICAL FRAKTUR CAPITAL W\n1D51B\tX\t# MATHEMATICAL FRAKTUR CAPITAL X\n1D51C\tY\t# MATHEMATICAL FRAKTUR CAPITAL Y\n1D51E\ta\t# MATHEMATICAL FRAKTUR SMALL A\n1D51F\tb\t# MATHEMATICAL FRAKTUR SMALL B\n1D520\tc\t# MATHEMATICAL FRAKTUR SMALL C\n1D521\td\t# MATHEMATICAL FRAKTUR SMALL D\n1D522\te\t# MATHEMATICAL FRAKTUR SMALL E\n1D523\tf\t# MATHEMATICAL FRAKTUR SMALL F\n1D524\tg\t# MATHEMATICAL FRAKTUR SMALL G\n1D525\th\t# MATHEMATICAL FRAKTUR SMALL H\n1D526\ti\t# MATHEMATICAL FRAKTUR SMALL I\n1D527\tj\t# MATHEMATICAL FRAKTUR SMALL J\n1D528\tk\t# MATHEMATICAL FRAKTUR SMALL K\n1D529\tl\t# MATHEMATICAL FRAKTUR SMALL L\n1D52A\tm\t# MATHEMATICAL FRAKTUR SMALL M\n1D52B\tn\t# MATHEMATICAL FRAKTUR SMALL N\n1D52C\to\t# MATHEMATICAL FRAKTUR SMALL O\n1D52D\tp\t# MATHEMATICAL FRAKTUR SMALL P\n1D52E\tq\t# MATHEMATICAL FRAKTUR SMALL Q\n1D52F\tr\t# MATHEMATICAL FRAKTUR SMALL R\n1D530\ts\t# MATHEMATICAL FRAKTUR SMALL S\n1D531\tt\t# MATHEMATICAL FRAKTUR SMALL T\n1D532\tu\t# MATHEMATICAL FRAKTUR SMALL U\n1D533\tv\t# MATHEMATICAL FRAKTUR SMALL V\n1D534\tw\t# MATHEMATICAL FRAKTUR SMALL W\n1D535\tx\t# MATHEMATICAL FRAKTUR SMALL X\n1D536\ty\t# MATHEMATICAL FRAKTUR SMALL Y\n1D537\tz\t# MATHEMATICAL FRAKTUR SMALL Z\n1D538\tA\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL A\n1D539\tB\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL B\n1D53B\tD\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL D\n1D53C\tE\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL E\n1D53D\tF\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL F\n1D53E\tG\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL G\n1D540\tI\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL I\n1D541\tJ\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL J\n1D542\tK\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL K\n1D543\tL\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL L\n1D544\tM\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL M\n1D546\tO\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL O\n1D54A\tS\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL S\n1D54B\tT\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL T\n1D54C\tU\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL U\n1D54D\tV\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL V\n1D54E\tW\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL W\n1D54F\tX\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL X\n1D550\tY\t# MATHEMATICAL DOUBLE-STRUCK CAPITAL Y\n1D552\ta\t# MATHEMATICAL DOUBLE-STRUCK SMALL A\n1D553\tb\t# MATHEMATICAL DOUBLE-STRUCK SMALL B\n1D554\tc\t# MATHEMATICAL DOUBLE-STRUCK SMALL C\n1D555\td\t# MATHEMATICAL DOUBLE-STRUCK SMALL D\n1D556\te\t# MATHEMATICAL DOUBLE-STRUCK SMALL E\n1D557\tf\t# MATHEMATICAL DOUBLE-STRUCK SMALL F\n1D558\tg\t# MATHEMATICAL DOUBLE-STRUCK SMALL G\n1D559\th\t# MATHEMATICAL DOUBLE-STRUCK SMALL H\n1D55A\ti\t# MATHEMATICAL DOUBLE-STRUCK SMALL I\n1D55B\tj\t# MATHEMATICAL DOUBLE-STRUCK SMALL J\n1D55C\tk\t# MATHEMATICAL DOUBLE-STRUCK SMALL K\n1D55D\tl\t# MATHEMATICAL DOUBLE-STRUCK SMALL L\n1D55E\tm\t# MATHEMATICAL DOUBLE-STRUCK SMALL M\n1D55F\tn\t# MATHEMATICAL DOUBLE-STRUCK SMALL N\n1D560\to\t# MATHEMATICAL DOUBLE-STRUCK SMALL O\n1D561\tp\t# MATHEMATICAL DOUBLE-STRUCK SMALL P\n1D562\tq\t# MATHEMATICAL DOUBLE-STRUCK SMALL Q\n1D563\tr\t# MATHEMATICAL DOUBLE-STRUCK SMALL R\n1D564\ts\t# MATHEMATICAL DOUBLE-STRUCK SMALL S\n1D565\tt\t# MATHEMATICAL DOUBLE-STRUCK SMALL T\n1D566\tu\t# MATHEMATICAL DOUBLE-STRUCK SMALL U\n1D567\tv\t# MATHEMATICAL DOUBLE-STRUCK SMALL V\n1D568\tw\t# MATHEMATICAL DOUBLE-STRUCK SMALL W\n1D569\tx\t# MATHEMATICAL DOUBLE-STRUCK SMALL X\n1D56A\ty\t# MATHEMATICAL DOUBLE-STRUCK SMALL Y\n1D56B\tz\t# MATHEMATICAL DOUBLE-STRUCK SMALL Z\n1D56C\tA\t# MATHEMATICAL BOLD FRAKTUR CAPITAL A\n1D56D\tB\t# MATHEMATICAL BOLD FRAKTUR CAPITAL B\n1D56E\tC\t# MATHEMATICAL BOLD FRAKTUR CAPITAL C\n1D56F\tD\t# MATHEMATICAL BOLD FRAKTUR CAPITAL D\n1D570\tE\t# MATHEMATICAL BOLD FRAKTUR CAPITAL E\n1D571\tF\t# MATHEMATICAL BOLD FRAKTUR CAPITAL F\n1D572\tG\t# MATHEMATICAL BOLD FRAKTUR CAPITAL G\n1D573\tH\t# MATHEMATICAL BOLD FRAKTUR CAPITAL H\n1D574\tI\t# MATHEMATICAL BOLD FRAKTUR CAPITAL I\n1D575\tJ\t# MATHEMATICAL BOLD FRAKTUR CAPITAL J\n1D576\tK\t# MATHEMATICAL BOLD FRAKTUR CAPITAL K\n1D577\tL\t# MATHEMATICAL BOLD FRAKTUR CAPITAL L\n1D578\tM\t# MATHEMATICAL BOLD FRAKTUR CAPITAL M\n1D579\tN\t# MATHEMATICAL BOLD FRAKTUR CAPITAL N\n1D57A\tO\t# MATHEMATICAL BOLD FRAKTUR CAPITAL O\n1D57B\tP\t# MATHEMATICAL BOLD FRAKTUR CAPITAL P\n1D57C\tQ\t# MATHEMATICAL BOLD FRAKTUR CAPITAL Q\n1D57D\tR\t# MATHEMATICAL BOLD FRAKTUR CAPITAL R\n1D57E\tS\t# MATHEMATICAL BOLD FRAKTUR CAPITAL S\n1D57F\tT\t# MATHEMATICAL BOLD FRAKTUR CAPITAL T\n1D580\tU\t# MATHEMATICAL BOLD FRAKTUR CAPITAL U\n1D581\tV\t# MATHEMATICAL BOLD FRAKTUR CAPITAL V\n1D582\tW\t# MATHEMATICAL BOLD FRAKTUR CAPITAL W\n1D583\tX\t# MATHEMATICAL BOLD FRAKTUR CAPITAL X\n1D584\tY\t# MATHEMATICAL BOLD FRAKTUR CAPITAL Y\n1D585\tZ\t# MATHEMATICAL BOLD FRAKTUR CAPITAL Z\n1D586\ta\t# MATHEMATICAL BOLD FRAKTUR SMALL A\n1D587\tb\t# MATHEMATICAL BOLD FRAKTUR SMALL B\n1D588\tc\t# MATHEMATICAL BOLD FRAKTUR SMALL C\n1D589\td\t# MATHEMATICAL BOLD FRAKTUR SMALL D\n1D58A\te\t# MATHEMATICAL BOLD FRAKTUR SMALL E\n1D58B\tf\t# MATHEMATICAL BOLD FRAKTUR SMALL F\n1D58C\tg\t# MATHEMATICAL BOLD FRAKTUR SMALL G\n1D58D\th\t# MATHEMATICAL BOLD FRAKTUR SMALL H\n1D58E\ti\t# MATHEMATICAL BOLD FRAKTUR SMALL I\n1D58F\tj\t# MATHEMATICAL BOLD FRAKTUR SMALL J\n1D590\tk\t# MATHEMATICAL BOLD FRAKTUR SMALL K\n1D591\tl\t# MATHEMATICAL BOLD FRAKTUR SMALL L\n1D592\tm\t# MATHEMATICAL BOLD FRAKTUR SMALL M\n1D593\tn\t# MATHEMATICAL BOLD FRAKTUR SMALL N\n1D594\to\t# MATHEMATICAL BOLD FRAKTUR SMALL O\n1D595\tp\t# MATHEMATICAL BOLD FRAKTUR SMALL P\n1D596\tq\t# MATHEMATICAL BOLD FRAKTUR SMALL Q\n1D597\tr\t# MATHEMATICAL BOLD FRAKTUR SMALL R\n1D598\ts\t# MATHEMATICAL BOLD FRAKTUR SMALL S\n1D599\tt\t# MATHEMATICAL BOLD FRAKTUR SMALL T\n1D59A\tu\t# MATHEMATICAL BOLD FRAKTUR SMALL U\n1D59B\tv\t# MATHEMATICAL BOLD FRAKTUR SMALL V\n1D59C\tw\t# MATHEMATICAL BOLD FRAKTUR SMALL W\n1D59D\tx\t# MATHEMATICAL BOLD FRAKTUR SMALL X\n1D59E\ty\t# MATHEMATICAL BOLD FRAKTUR SMALL Y\n1D59F\tz\t# MATHEMATICAL BOLD FRAKTUR SMALL Z\n1D5A0\tA\t# MATHEMATICAL SANS-SERIF CAPITAL A\n1D5A1\tB\t# MATHEMATICAL SANS-SERIF CAPITAL B\n1D5A2\tC\t# MATHEMATICAL SANS-SERIF CAPITAL C\n1D5A3\tD\t# MATHEMATICAL SANS-SERIF CAPITAL D\n1D5A4\tE\t# MATHEMATICAL SANS-SERIF CAPITAL E\n1D5A5\tF\t# MATHEMATICAL SANS-SERIF CAPITAL F\n1D5A6\tG\t# MATHEMATICAL SANS-SERIF CAPITAL G\n1D5A7\tH\t# MATHEMATICAL SANS-SERIF CAPITAL H\n1D5A8\tI\t# MATHEMATICAL SANS-SERIF CAPITAL I\n1D5A9\tJ\t# MATHEMATICAL SANS-SERIF CAPITAL J\n1D5AA\tK\t# MATHEMATICAL SANS-SERIF CAPITAL K\n1D5AB\tL\t# MATHEMATICAL SANS-SERIF CAPITAL L\n1D5AC\tM\t# MATHEMATICAL SANS-SERIF CAPITAL M\n1D5AD\tN\t# MATHEMATICAL SANS-SERIF CAPITAL N\n1D5AE\tO\t# MATHEMATICAL SANS-SERIF CAPITAL O\n1D5AF\tP\t# MATHEMATICAL SANS-SERIF CAPITAL P\n1D5B0\tQ\t# MATHEMATICAL SANS-SERIF CAPITAL Q\n1D5B1\tR\t# MATHEMATICAL SANS-SERIF CAPITAL R\n1D5B2\tS\t# MATHEMATICAL SANS-SERIF CAPITAL S\n1D5B3\tT\t# MATHEMATICAL SANS-SERIF CAPITAL T\n1D5B4\tU\t# MATHEMATICAL SANS-SERIF CAPITAL U\n1D5B5\tV\t# MATHEMATICAL SANS-SERIF CAPITAL V\n1D5B6\tW\t# MATHEMATICAL SANS-SERIF CAPITAL W\n1D5B7\tX\t# MATHEMATICAL SANS-SERIF CAPITAL X\n1D5B8\tY\t# MATHEMATICAL SANS-SERIF CAPITAL Y\n1D5B9\tZ\t# MATHEMATICAL SANS-SERIF CAPITAL Z\n1D5BA\ta\t# MATHEMATICAL SANS-SERIF SMALL A\n1D5BB\tb\t# MATHEMATICAL SANS-SERIF SMALL B\n1D5BC\tc\t# MATHEMATICAL SANS-SERIF SMALL C\n1D5BD\td\t# MATHEMATICAL SANS-SERIF SMALL D\n1D5BE\te\t# MATHEMATICAL SANS-SERIF SMALL E\n1D5BF\tf\t# MATHEMATICAL SANS-SERIF SMALL F\n1D5C0\tg\t# MATHEMATICAL SANS-SERIF SMALL G\n1D5C1\th\t# MATHEMATICAL SANS-SERIF SMALL H\n1D5C2\ti\t# MATHEMATICAL SANS-SERIF SMALL I\n1D5C3\tj\t# MATHEMATICAL SANS-SERIF SMALL J\n1D5C4\tk\t# MATHEMATICAL SANS-SERIF SMALL K\n1D5C5\tl\t# MATHEMATICAL SANS-SERIF SMALL L\n1D5C6\tm\t# MATHEMATICAL SANS-SERIF SMALL M\n1D5C7\tn\t# MATHEMATICAL SANS-SERIF SMALL N\n1D5C8\to\t# MATHEMATICAL SANS-SERIF SMALL O\n1D5C9\tp\t# MATHEMATICAL SANS-SERIF SMALL P\n1D5CA\tq\t# MATHEMATICAL SANS-SERIF SMALL Q\n1D5CB\tr\t# MATHEMATICAL SANS-SERIF SMALL R\n1D5CC\ts\t# MATHEMATICAL SANS-SERIF SMALL S\n1D5CD\tt\t# MATHEMATICAL SANS-SERIF SMALL T\n1D5CE\tu\t# MATHEMATICAL SANS-SERIF SMALL U\n1D5CF\tv\t# MATHEMATICAL SANS-SERIF SMALL V\n1D5D0\tw\t# MATHEMATICAL SANS-SERIF SMALL W\n1D5D1\tx\t# MATHEMATICAL SANS-SERIF SMALL X\n1D5D2\ty\t# MATHEMATICAL SANS-SERIF SMALL Y\n1D5D3\tz\t# MATHEMATICAL SANS-SERIF SMALL Z\n1D5D4\tA\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL A\n1D5D5\tB\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL B\n1D5D6\tC\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL C\n1D5D7\tD\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL D\n1D5D8\tE\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL E\n1D5D9\tF\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL F\n1D5DA\tG\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL G\n1D5DB\tH\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL H\n1D5DC\tI\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL I\n1D5DD\tJ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL J\n1D5DE\tK\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL K\n1D5DF\tL\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL L\n1D5E0\tM\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL M\n1D5E1\tN\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL N\n1D5E2\tO\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL O\n1D5E3\tP\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL P\n1D5E4\tQ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL Q\n1D5E5\tR\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL R\n1D5E6\tS\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL S\n1D5E7\tT\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL T\n1D5E8\tU\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL U\n1D5E9\tV\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL V\n1D5EA\tW\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL W\n1D5EB\tX\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL X\n1D5EC\tY\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL Y\n1D5ED\tZ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL Z\n1D5EE\ta\t# MATHEMATICAL SANS-SERIF BOLD SMALL A\n1D5EF\tb\t# MATHEMATICAL SANS-SERIF BOLD SMALL B\n1D5F0\tc\t# MATHEMATICAL SANS-SERIF BOLD SMALL C\n1D5F1\td\t# MATHEMATICAL SANS-SERIF BOLD SMALL D\n1D5F2\te\t# MATHEMATICAL SANS-SERIF BOLD SMALL E\n1D5F3\tf\t# MATHEMATICAL SANS-SERIF BOLD SMALL F\n1D5F4\tg\t# MATHEMATICAL SANS-SERIF BOLD SMALL G\n1D5F5\th\t# MATHEMATICAL SANS-SERIF BOLD SMALL H\n1D5F6\ti\t# MATHEMATICAL SANS-SERIF BOLD SMALL I\n1D5F7\tj\t# MATHEMATICAL SANS-SERIF BOLD SMALL J\n1D5F8\tk\t# MATHEMATICAL SANS-SERIF BOLD SMALL K\n1D5F9\tl\t# MATHEMATICAL SANS-SERIF BOLD SMALL L\n1D5FA\tm\t# MATHEMATICAL SANS-SERIF BOLD SMALL M\n1D5FB\tn\t# MATHEMATICAL SANS-SERIF BOLD SMALL N\n1D5FC\to\t# MATHEMATICAL SANS-SERIF BOLD SMALL O\n1D5FD\tp\t# MATHEMATICAL SANS-SERIF BOLD SMALL P\n1D5FE\tq\t# MATHEMATICAL SANS-SERIF BOLD SMALL Q\n1D5FF\tr\t# MATHEMATICAL SANS-SERIF BOLD SMALL R\n1D600\ts\t# MATHEMATICAL SANS-SERIF BOLD SMALL S\n1D601\tt\t# MATHEMATICAL SANS-SERIF BOLD SMALL T\n1D602\tu\t# MATHEMATICAL SANS-SERIF BOLD SMALL U\n1D603\tv\t# MATHEMATICAL SANS-SERIF BOLD SMALL V\n1D604\tw\t# MATHEMATICAL SANS-SERIF BOLD SMALL W\n1D605\tx\t# MATHEMATICAL SANS-SERIF BOLD SMALL X\n1D606\ty\t# MATHEMATICAL SANS-SERIF BOLD SMALL Y\n1D607\tz\t# MATHEMATICAL SANS-SERIF BOLD SMALL Z\n1D608\tA\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL A\n1D609\tB\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL B\n1D60A\tC\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL C\n1D60B\tD\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL D\n1D60C\tE\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL E\n1D60D\tF\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL F\n1D60E\tG\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL G\n1D60F\tH\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL H\n1D610\tI\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL I\n1D611\tJ\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL J\n1D612\tK\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL K\n1D613\tL\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL L\n1D614\tM\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL M\n1D615\tN\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL N\n1D616\tO\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL O\n1D617\tP\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL P\n1D618\tQ\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL Q\n1D619\tR\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL R\n1D61A\tS\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL S\n1D61B\tT\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL T\n1D61C\tU\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL U\n1D61D\tV\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL V\n1D61E\tW\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL W\n1D61F\tX\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL X\n1D620\tY\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL Y\n1D621\tZ\t# MATHEMATICAL SANS-SERIF ITALIC CAPITAL Z\n1D622\ta\t# MATHEMATICAL SANS-SERIF ITALIC SMALL A\n1D623\tb\t# MATHEMATICAL SANS-SERIF ITALIC SMALL B\n1D624\tc\t# MATHEMATICAL SANS-SERIF ITALIC SMALL C\n1D625\td\t# MATHEMATICAL SANS-SERIF ITALIC SMALL D\n1D626\te\t# MATHEMATICAL SANS-SERIF ITALIC SMALL E\n1D627\tf\t# MATHEMATICAL SANS-SERIF ITALIC SMALL F\n1D628\tg\t# MATHEMATICAL SANS-SERIF ITALIC SMALL G\n1D629\th\t# MATHEMATICAL SANS-SERIF ITALIC SMALL H\n1D62A\ti\t# MATHEMATICAL SANS-SERIF ITALIC SMALL I\n1D62B\tj\t# MATHEMATICAL SANS-SERIF ITALIC SMALL J\n1D62C\tk\t# MATHEMATICAL SANS-SERIF ITALIC SMALL K\n1D62D\tl\t# MATHEMATICAL SANS-SERIF ITALIC SMALL L\n1D62E\tm\t# MATHEMATICAL SANS-SERIF ITALIC SMALL M\n1D62F\tn\t# MATHEMATICAL SANS-SERIF ITALIC SMALL N\n1D630\to\t# MATHEMATICAL SANS-SERIF ITALIC SMALL O\n1D631\tp\t# MATHEMATICAL SANS-SERIF ITALIC SMALL P\n1D632\tq\t# MATHEMATICAL SANS-SERIF ITALIC SMALL Q\n1D633\tr\t# MATHEMATICAL SANS-SERIF ITALIC SMALL R\n1D634\ts\t# MATHEMATICAL SANS-SERIF ITALIC SMALL S\n1D635\tt\t# MATHEMATICAL SANS-SERIF ITALIC SMALL T\n1D636\tu\t# MATHEMATICAL SANS-SERIF ITALIC SMALL U\n1D637\tv\t# MATHEMATICAL SANS-SERIF ITALIC SMALL V\n1D638\tw\t# MATHEMATICAL SANS-SERIF ITALIC SMALL W\n1D639\tx\t# MATHEMATICAL SANS-SERIF ITALIC SMALL X\n1D63A\ty\t# MATHEMATICAL SANS-SERIF ITALIC SMALL Y\n1D63B\tz\t# MATHEMATICAL SANS-SERIF ITALIC SMALL Z\n1D63C\tA\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL A\n1D63D\tB\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL B\n1D63E\tC\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL C\n1D63F\tD\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL D\n1D640\tE\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL E\n1D641\tF\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL F\n1D642\tG\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL G\n1D643\tH\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL H\n1D644\tI\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL I\n1D645\tJ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL J\n1D646\tK\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL K\n1D647\tL\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL L\n1D648\tM\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL M\n1D649\tN\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL N\n1D64A\tO\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL O\n1D64B\tP\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL P\n1D64C\tQ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Q\n1D64D\tR\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL R\n1D64E\tS\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL S\n1D64F\tT\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL T\n1D650\tU\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL U\n1D651\tV\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL V\n1D652\tW\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL W\n1D653\tX\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL X\n1D654\tY\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Y\n1D655\tZ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Z\n1D656\ta\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A\n1D657\tb\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL B\n1D658\tc\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL C\n1D659\td\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL D\n1D65A\te\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL E\n1D65B\tf\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL F\n1D65C\tg\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL G\n1D65D\th\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL H\n1D65E\ti\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL I\n1D65F\tj\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL J\n1D660\tk\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL K\n1D661\tl\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL L\n1D662\tm\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL M\n1D663\tn\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL N\n1D664\to\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL O\n1D665\tp\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL P\n1D666\tq\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Q\n1D667\tr\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL R\n1D668\ts\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL S\n1D669\tt\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL T\n1D66A\tu\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL U\n1D66B\tv\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL V\n1D66C\tw\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL W\n1D66D\tx\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL X\n1D66E\ty\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Y\n1D66F\tz\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z\n1D670\tA\t# MATHEMATICAL MONOSPACE CAPITAL A\n1D671\tB\t# MATHEMATICAL MONOSPACE CAPITAL B\n1D672\tC\t# MATHEMATICAL MONOSPACE CAPITAL C\n1D673\tD\t# MATHEMATICAL MONOSPACE CAPITAL D\n1D674\tE\t# MATHEMATICAL MONOSPACE CAPITAL E\n1D675\tF\t# MATHEMATICAL MONOSPACE CAPITAL F\n1D676\tG\t# MATHEMATICAL MONOSPACE CAPITAL G\n1D677\tH\t# MATHEMATICAL MONOSPACE CAPITAL H\n1D678\tI\t# MATHEMATICAL MONOSPACE CAPITAL I\n1D679\tJ\t# MATHEMATICAL MONOSPACE CAPITAL J\n1D67A\tK\t# MATHEMATICAL MONOSPACE CAPITAL K\n1D67B\tL\t# MATHEMATICAL MONOSPACE CAPITAL L\n1D67C\tM\t# MATHEMATICAL MONOSPACE CAPITAL M\n1D67D\tN\t# MATHEMATICAL MONOSPACE CAPITAL N\n1D67E\tO\t# MATHEMATICAL MONOSPACE CAPITAL O\n1D67F\tP\t# MATHEMATICAL MONOSPACE CAPITAL P\n1D680\tQ\t# MATHEMATICAL MONOSPACE CAPITAL Q\n1D681\tR\t# MATHEMATICAL MONOSPACE CAPITAL R\n1D682\tS\t# MATHEMATICAL MONOSPACE CAPITAL S\n1D683\tT\t# MATHEMATICAL MONOSPACE CAPITAL T\n1D684\tU\t# MATHEMATICAL MONOSPACE CAPITAL U\n1D685\tV\t# MATHEMATICAL MONOSPACE CAPITAL V\n1D686\tW\t# MATHEMATICAL MONOSPACE CAPITAL W\n1D687\tX\t# MATHEMATICAL MONOSPACE CAPITAL X\n1D688\tY\t# MATHEMATICAL MONOSPACE CAPITAL Y\n1D689\tZ\t# MATHEMATICAL MONOSPACE CAPITAL Z\n1D68A\ta\t# MATHEMATICAL MONOSPACE SMALL A\n1D68B\tb\t# MATHEMATICAL MONOSPACE SMALL B\n1D68C\tc\t# MATHEMATICAL MONOSPACE SMALL C\n1D68D\td\t# MATHEMATICAL MONOSPACE SMALL D\n1D68E\te\t# MATHEMATICAL MONOSPACE SMALL E\n1D68F\tf\t# MATHEMATICAL MONOSPACE SMALL F\n1D690\tg\t# MATHEMATICAL MONOSPACE SMALL G\n1D691\th\t# MATHEMATICAL MONOSPACE SMALL H\n1D692\ti\t# MATHEMATICAL MONOSPACE SMALL I\n1D693\tj\t# MATHEMATICAL MONOSPACE SMALL J\n1D694\tk\t# MATHEMATICAL MONOSPACE SMALL K\n1D695\tl\t# MATHEMATICAL MONOSPACE SMALL L\n1D696\tm\t# MATHEMATICAL MONOSPACE SMALL M\n1D697\tn\t# MATHEMATICAL MONOSPACE SMALL N\n1D698\to\t# MATHEMATICAL MONOSPACE SMALL O\n1D699\tp\t# MATHEMATICAL MONOSPACE SMALL P\n1D69A\tq\t# MATHEMATICAL MONOSPACE SMALL Q\n1D69B\tr\t# MATHEMATICAL MONOSPACE SMALL R\n1D69C\ts\t# MATHEMATICAL MONOSPACE SMALL S\n1D69D\tt\t# MATHEMATICAL MONOSPACE SMALL T\n1D69E\tu\t# MATHEMATICAL MONOSPACE SMALL U\n1D69F\tv\t# MATHEMATICAL MONOSPACE SMALL V\n1D6A0\tw\t# MATHEMATICAL MONOSPACE SMALL W\n1D6A1\tx\t# MATHEMATICAL MONOSPACE SMALL X\n1D6A2\ty\t# MATHEMATICAL MONOSPACE SMALL Y\n1D6A3\tz\t# MATHEMATICAL MONOSPACE SMALL Z\n1D6A8\tΑ\t# MATHEMATICAL BOLD CAPITAL ALPHA\n1D6A9\tΒ\t# MATHEMATICAL BOLD CAPITAL BETA\n1D6AA\tΓ\t# MATHEMATICAL BOLD CAPITAL GAMMA\n1D6AB\tΔ\t# MATHEMATICAL BOLD CAPITAL DELTA\n1D6AC\tΕ\t# MATHEMATICAL BOLD CAPITAL EPSILON\n1D6AD\tΖ\t# MATHEMATICAL BOLD CAPITAL ZETA\n1D6AE\tΗ\t# MATHEMATICAL BOLD CAPITAL ETA\n1D6AF\tΘ\t# MATHEMATICAL BOLD CAPITAL THETA\n1D6B0\tΙ\t# MATHEMATICAL BOLD CAPITAL IOTA\n1D6B1\tΚ\t# MATHEMATICAL BOLD CAPITAL KAPPA\n1D6B2\tΛ\t# MATHEMATICAL BOLD CAPITAL LAMDA\n1D6B3\tΜ\t# MATHEMATICAL BOLD CAPITAL MU\n1D6B4\tΝ\t# MATHEMATICAL BOLD CAPITAL NU\n1D6B5\tΞ\t# MATHEMATICAL BOLD CAPITAL XI\n1D6B6\tΟ\t# MATHEMATICAL BOLD CAPITAL OMICRON\n1D6B7\tΠ\t# MATHEMATICAL BOLD CAPITAL PI\n1D6B8\tΡ\t# MATHEMATICAL BOLD CAPITAL RHO\n1D6B9\tϴ\t# MATHEMATICAL BOLD CAPITAL THETA SYMBOL\n1D6BA\tΣ\t# MATHEMATICAL BOLD CAPITAL SIGMA\n1D6BB\tΤ\t# MATHEMATICAL BOLD CAPITAL TAU\n1D6BC\tΥ\t# MATHEMATICAL BOLD CAPITAL UPSILON\n1D6BD\tΦ\t# MATHEMATICAL BOLD CAPITAL PHI\n1D6BE\tΧ\t# MATHEMATICAL BOLD CAPITAL CHI\n1D6BF\tΨ\t# MATHEMATICAL BOLD CAPITAL PSI\n1D6C0\tΩ\t# MATHEMATICAL BOLD CAPITAL OMEGA\n1D6C1\t∇\t# MATHEMATICAL BOLD NABLA\n1D6C2\tα\t# MATHEMATICAL BOLD SMALL ALPHA\n1D6C3\tβ\t# MATHEMATICAL BOLD SMALL BETA\n1D6C4\tγ\t# MATHEMATICAL BOLD SMALL GAMMA\n1D6C5\tδ\t# MATHEMATICAL BOLD SMALL DELTA\n1D6C6\tε\t# MATHEMATICAL BOLD SMALL EPSILON\n1D6C7\tζ\t# MATHEMATICAL BOLD SMALL ZETA\n1D6C8\tη\t# MATHEMATICAL BOLD SMALL ETA\n1D6C9\tθ\t# MATHEMATICAL BOLD SMALL THETA\n1D6CA\tι\t# MATHEMATICAL BOLD SMALL IOTA\n1D6CB\tκ\t# MATHEMATICAL BOLD SMALL KAPPA\n1D6CC\tλ\t# MATHEMATICAL BOLD SMALL LAMDA\n1D6CD\tμ\t# MATHEMATICAL BOLD SMALL MU\n1D6CE\tν\t# MATHEMATICAL BOLD SMALL NU\n1D6CF\tξ\t# MATHEMATICAL BOLD SMALL XI\n1D6D0\tο\t# MATHEMATICAL BOLD SMALL OMICRON\n1D6D1\tπ\t# MATHEMATICAL BOLD SMALL PI\n1D6D2\tρ\t# MATHEMATICAL BOLD SMALL RHO\n1D6D3\tς\t# MATHEMATICAL BOLD SMALL FINAL SIGMA\n1D6D4\tσ\t# MATHEMATICAL BOLD SMALL SIGMA\n1D6D5\tτ\t# MATHEMATICAL BOLD SMALL TAU\n1D6D6\tυ\t# MATHEMATICAL BOLD SMALL UPSILON\n1D6D7\tφ\t# MATHEMATICAL BOLD SMALL PHI\n1D6D8\tχ\t# MATHEMATICAL BOLD SMALL CHI\n1D6D9\tψ\t# MATHEMATICAL BOLD SMALL PSI\n1D6DA\tω\t# MATHEMATICAL BOLD SMALL OMEGA\n1D6DB\t∂\t# MATHEMATICAL BOLD PARTIAL DIFFERENTIAL\n1D6DC\tϵ\t# MATHEMATICAL BOLD EPSILON SYMBOL\n1D6DD\tϑ\t# MATHEMATICAL BOLD THETA SYMBOL\n1D6DE\tϰ\t# MATHEMATICAL BOLD KAPPA SYMBOL\n1D6DF\tϕ\t# MATHEMATICAL BOLD PHI SYMBOL\n1D6E0\tϱ\t# MATHEMATICAL BOLD RHO SYMBOL\n1D6E1\tϖ\t# MATHEMATICAL BOLD PI SYMBOL\n1D6E2\tΑ\t# MATHEMATICAL ITALIC CAPITAL ALPHA\n1D6E3\tΒ\t# MATHEMATICAL ITALIC CAPITAL BETA\n1D6E4\tΓ\t# MATHEMATICAL ITALIC CAPITAL GAMMA\n1D6E5\tΔ\t# MATHEMATICAL ITALIC CAPITAL DELTA\n1D6E6\tΕ\t# MATHEMATICAL ITALIC CAPITAL EPSILON\n1D6E7\tΖ\t# MATHEMATICAL ITALIC CAPITAL ZETA\n1D6E8\tΗ\t# MATHEMATICAL ITALIC CAPITAL ETA\n1D6E9\tΘ\t# MATHEMATICAL ITALIC CAPITAL THETA\n1D6EA\tΙ\t# MATHEMATICAL ITALIC CAPITAL IOTA\n1D6EB\tΚ\t# MATHEMATICAL ITALIC CAPITAL KAPPA\n1D6EC\tΛ\t# MATHEMATICAL ITALIC CAPITAL LAMDA\n1D6ED\tΜ\t# MATHEMATICAL ITALIC CAPITAL MU\n1D6EE\tΝ\t# MATHEMATICAL ITALIC CAPITAL NU\n1D6EF\tΞ\t# MATHEMATICAL ITALIC CAPITAL XI\n1D6F0\tΟ\t# MATHEMATICAL ITALIC CAPITAL OMICRON\n1D6F1\tΠ\t# MATHEMATICAL ITALIC CAPITAL PI\n1D6F2\tΡ\t# MATHEMATICAL ITALIC CAPITAL RHO\n1D6F3\tϴ\t# MATHEMATICAL ITALIC CAPITAL THETA SYMBOL\n1D6F4\tΣ\t# MATHEMATICAL ITALIC CAPITAL SIGMA\n1D6F5\tΤ\t# MATHEMATICAL ITALIC CAPITAL TAU\n1D6F6\tΥ\t# MATHEMATICAL ITALIC CAPITAL UPSILON\n1D6F7\tΦ\t# MATHEMATICAL ITALIC CAPITAL PHI\n1D6F8\tΧ\t# MATHEMATICAL ITALIC CAPITAL CHI\n1D6F9\tΨ\t# MATHEMATICAL ITALIC CAPITAL PSI\n1D6FA\tΩ\t# MATHEMATICAL ITALIC CAPITAL OMEGA\n1D6FB\t∇\t# MATHEMATICAL ITALIC NABLA\n1D6FC\tα\t# MATHEMATICAL ITALIC SMALL ALPHA\n1D6FD\tβ\t# MATHEMATICAL ITALIC SMALL BETA\n1D6FE\tγ\t# MATHEMATICAL ITALIC SMALL GAMMA\n1D6FF\tδ\t# MATHEMATICAL ITALIC SMALL DELTA\n1D700\tε\t# MATHEMATICAL ITALIC SMALL EPSILON\n1D701\tζ\t# MATHEMATICAL ITALIC SMALL ZETA\n1D702\tη\t# MATHEMATICAL ITALIC SMALL ETA\n1D703\tθ\t# MATHEMATICAL ITALIC SMALL THETA\n1D704\tι\t# MATHEMATICAL ITALIC SMALL IOTA\n1D705\tκ\t# MATHEMATICAL ITALIC SMALL KAPPA\n1D706\tλ\t# MATHEMATICAL ITALIC SMALL LAMDA\n1D707\tμ\t# MATHEMATICAL ITALIC SMALL MU\n1D708\tν\t# MATHEMATICAL ITALIC SMALL NU\n1D709\tξ\t# MATHEMATICAL ITALIC SMALL XI\n1D70A\tο\t# MATHEMATICAL ITALIC SMALL OMICRON\n1D70B\tπ\t# MATHEMATICAL ITALIC SMALL PI\n1D70C\tρ\t# MATHEMATICAL ITALIC SMALL RHO\n1D70D\tς\t# MATHEMATICAL ITALIC SMALL FINAL SIGMA\n1D70E\tσ\t# MATHEMATICAL ITALIC SMALL SIGMA\n1D70F\tτ\t# MATHEMATICAL ITALIC SMALL TAU\n1D710\tυ\t# MATHEMATICAL ITALIC SMALL UPSILON\n1D711\tφ\t# MATHEMATICAL ITALIC SMALL PHI\n1D712\tχ\t# MATHEMATICAL ITALIC SMALL CHI\n1D713\tψ\t# MATHEMATICAL ITALIC SMALL PSI\n1D714\tω\t# MATHEMATICAL ITALIC SMALL OMEGA\n1D715\t∂\t# MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL\n1D716\tϵ\t# MATHEMATICAL ITALIC EPSILON SYMBOL\n1D717\tϑ\t# MATHEMATICAL ITALIC THETA SYMBOL\n1D718\tϰ\t# MATHEMATICAL ITALIC KAPPA SYMBOL\n1D719\tϕ\t# MATHEMATICAL ITALIC PHI SYMBOL\n1D71A\tϱ\t# MATHEMATICAL ITALIC RHO SYMBOL\n1D71B\tϖ\t# MATHEMATICAL ITALIC PI SYMBOL\n1D71C\tΑ\t# MATHEMATICAL BOLD ITALIC CAPITAL ALPHA\n1D71D\tΒ\t# MATHEMATICAL BOLD ITALIC CAPITAL BETA\n1D71E\tΓ\t# MATHEMATICAL BOLD ITALIC CAPITAL GAMMA\n1D71F\tΔ\t# MATHEMATICAL BOLD ITALIC CAPITAL DELTA\n1D720\tΕ\t# MATHEMATICAL BOLD ITALIC CAPITAL EPSILON\n1D721\tΖ\t# MATHEMATICAL BOLD ITALIC CAPITAL ZETA\n1D722\tΗ\t# MATHEMATICAL BOLD ITALIC CAPITAL ETA\n1D723\tΘ\t# MATHEMATICAL BOLD ITALIC CAPITAL THETA\n1D724\tΙ\t# MATHEMATICAL BOLD ITALIC CAPITAL IOTA\n1D725\tΚ\t# MATHEMATICAL BOLD ITALIC CAPITAL KAPPA\n1D726\tΛ\t# MATHEMATICAL BOLD ITALIC CAPITAL LAMDA\n1D727\tΜ\t# MATHEMATICAL BOLD ITALIC CAPITAL MU\n1D728\tΝ\t# MATHEMATICAL BOLD ITALIC CAPITAL NU\n1D729\tΞ\t# MATHEMATICAL BOLD ITALIC CAPITAL XI\n1D72A\tΟ\t# MATHEMATICAL BOLD ITALIC CAPITAL OMICRON\n1D72B\tΠ\t# MATHEMATICAL BOLD ITALIC CAPITAL PI\n1D72C\tΡ\t# MATHEMATICAL BOLD ITALIC CAPITAL RHO\n1D72D\tϴ\t# MATHEMATICAL BOLD ITALIC CAPITAL THETA SYMBOL\n1D72E\tΣ\t# MATHEMATICAL BOLD ITALIC CAPITAL SIGMA\n1D72F\tΤ\t# MATHEMATICAL BOLD ITALIC CAPITAL TAU\n1D730\tΥ\t# MATHEMATICAL BOLD ITALIC CAPITAL UPSILON\n1D731\tΦ\t# MATHEMATICAL BOLD ITALIC CAPITAL PHI\n1D732\tΧ\t# MATHEMATICAL BOLD ITALIC CAPITAL CHI\n1D733\tΨ\t# MATHEMATICAL BOLD ITALIC CAPITAL PSI\n1D734\tΩ\t# MATHEMATICAL BOLD ITALIC CAPITAL OMEGA\n1D735\t∇\t# MATHEMATICAL BOLD ITALIC NABLA\n1D736\tα\t# MATHEMATICAL BOLD ITALIC SMALL ALPHA\n1D737\tβ\t# MATHEMATICAL BOLD ITALIC SMALL BETA\n1D738\tγ\t# MATHEMATICAL BOLD ITALIC SMALL GAMMA\n1D739\tδ\t# MATHEMATICAL BOLD ITALIC SMALL DELTA\n1D73A\tε\t# MATHEMATICAL BOLD ITALIC SMALL EPSILON\n1D73B\tζ\t# MATHEMATICAL BOLD ITALIC SMALL ZETA\n1D73C\tη\t# MATHEMATICAL BOLD ITALIC SMALL ETA\n1D73D\tθ\t# MATHEMATICAL BOLD ITALIC SMALL THETA\n1D73E\tι\t# MATHEMATICAL BOLD ITALIC SMALL IOTA\n1D73F\tκ\t# MATHEMATICAL BOLD ITALIC SMALL KAPPA\n1D740\tλ\t# MATHEMATICAL BOLD ITALIC SMALL LAMDA\n1D741\tμ\t# MATHEMATICAL BOLD ITALIC SMALL MU\n1D742\tν\t# MATHEMATICAL BOLD ITALIC SMALL NU\n1D743\tξ\t# MATHEMATICAL BOLD ITALIC SMALL XI\n1D744\tο\t# MATHEMATICAL BOLD ITALIC SMALL OMICRON\n1D745\tπ\t# MATHEMATICAL BOLD ITALIC SMALL PI\n1D746\tρ\t# MATHEMATICAL BOLD ITALIC SMALL RHO\n1D747\tς\t# MATHEMATICAL BOLD ITALIC SMALL FINAL SIGMA\n1D748\tσ\t# MATHEMATICAL BOLD ITALIC SMALL SIGMA\n1D749\tτ\t# MATHEMATICAL BOLD ITALIC SMALL TAU\n1D74A\tυ\t# MATHEMATICAL BOLD ITALIC SMALL UPSILON\n1D74B\tφ\t# MATHEMATICAL BOLD ITALIC SMALL PHI\n1D74C\tχ\t# MATHEMATICAL BOLD ITALIC SMALL CHI\n1D74D\tψ\t# MATHEMATICAL BOLD ITALIC SMALL PSI\n1D74E\tω\t# MATHEMATICAL BOLD ITALIC SMALL OMEGA\n1D74F\t∂\t# MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL\n1D750\tϵ\t# MATHEMATICAL BOLD ITALIC EPSILON SYMBOL\n1D751\tϑ\t# MATHEMATICAL BOLD ITALIC THETA SYMBOL\n1D752\tϰ\t# MATHEMATICAL BOLD ITALIC KAPPA SYMBOL\n1D753\tϕ\t# MATHEMATICAL BOLD ITALIC PHI SYMBOL\n1D754\tϱ\t# MATHEMATICAL BOLD ITALIC RHO SYMBOL\n1D755\tϖ\t# MATHEMATICAL BOLD ITALIC PI SYMBOL\n1D756\tΑ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL ALPHA\n1D757\tΒ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL BETA\n1D758\tΓ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL GAMMA\n1D759\tΔ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL DELTA\n1D75A\tΕ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL EPSILON\n1D75B\tΖ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL ZETA\n1D75C\tΗ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL ETA\n1D75D\tΘ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA\n1D75E\tΙ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL IOTA\n1D75F\tΚ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL KAPPA\n1D760\tΛ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL LAMDA\n1D761\tΜ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL MU\n1D762\tΝ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL NU\n1D763\tΞ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL XI\n1D764\tΟ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL OMICRON\n1D765\tΠ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL PI\n1D766\tΡ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL RHO\n1D767\tϴ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA SYMBOL\n1D768\tΣ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL SIGMA\n1D769\tΤ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL TAU\n1D76A\tΥ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL UPSILON\n1D76B\tΦ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL PHI\n1D76C\tΧ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL CHI\n1D76D\tΨ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL PSI\n1D76E\tΩ\t# MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA\n1D76F\t∇\t# MATHEMATICAL SANS-SERIF BOLD NABLA\n1D770\tα\t# MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA\n1D771\tβ\t# MATHEMATICAL SANS-SERIF BOLD SMALL BETA\n1D772\tγ\t# MATHEMATICAL SANS-SERIF BOLD SMALL GAMMA\n1D773\tδ\t# MATHEMATICAL SANS-SERIF BOLD SMALL DELTA\n1D774\tε\t# MATHEMATICAL SANS-SERIF BOLD SMALL EPSILON\n1D775\tζ\t# MATHEMATICAL SANS-SERIF BOLD SMALL ZETA\n1D776\tη\t# MATHEMATICAL SANS-SERIF BOLD SMALL ETA\n1D777\tθ\t# MATHEMATICAL SANS-SERIF BOLD SMALL THETA\n1D778\tι\t# MATHEMATICAL SANS-SERIF BOLD SMALL IOTA\n1D779\tκ\t# MATHEMATICAL SANS-SERIF BOLD SMALL KAPPA\n1D77A\tλ\t# MATHEMATICAL SANS-SERIF BOLD SMALL LAMDA\n1D77B\tμ\t# MATHEMATICAL SANS-SERIF BOLD SMALL MU\n1D77C\tν\t# MATHEMATICAL SANS-SERIF BOLD SMALL NU\n1D77D\tξ\t# MATHEMATICAL SANS-SERIF BOLD SMALL XI\n1D77E\tο\t# MATHEMATICAL SANS-SERIF BOLD SMALL OMICRON\n1D77F\tπ\t# MATHEMATICAL SANS-SERIF BOLD SMALL PI\n1D780\tρ\t# MATHEMATICAL SANS-SERIF BOLD SMALL RHO\n1D781\tς\t# MATHEMATICAL SANS-SERIF BOLD SMALL FINAL SIGMA\n1D782\tσ\t# MATHEMATICAL SANS-SERIF BOLD SMALL SIGMA\n1D783\tτ\t# MATHEMATICAL SANS-SERIF BOLD SMALL TAU\n1D784\tυ\t# MATHEMATICAL SANS-SERIF BOLD SMALL UPSILON\n1D785\tφ\t# MATHEMATICAL SANS-SERIF BOLD SMALL PHI\n1D786\tχ\t# MATHEMATICAL SANS-SERIF BOLD SMALL CHI\n1D787\tψ\t# MATHEMATICAL SANS-SERIF BOLD SMALL PSI\n1D788\tω\t# MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA\n1D789\t∂\t# MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL\n1D78A\tϵ\t# MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL\n1D78B\tϑ\t# MATHEMATICAL SANS-SERIF BOLD THETA SYMBOL\n1D78C\tϰ\t# MATHEMATICAL SANS-SERIF BOLD KAPPA SYMBOL\n1D78D\tϕ\t# MATHEMATICAL SANS-SERIF BOLD PHI SYMBOL\n1D78E\tϱ\t# MATHEMATICAL SANS-SERIF BOLD RHO SYMBOL\n1D78F\tϖ\t# MATHEMATICAL SANS-SERIF BOLD PI SYMBOL\n1D790\tΑ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ALPHA\n1D791\tΒ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL BETA\n1D792\tΓ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL GAMMA\n1D793\tΔ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL DELTA\n1D794\tΕ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL EPSILON\n1D795\tΖ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ZETA\n1D796\tΗ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ETA\n1D797\tΘ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA\n1D798\tΙ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL IOTA\n1D799\tΚ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL KAPPA\n1D79A\tΛ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL LAMDA\n1D79B\tΜ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL MU\n1D79C\tΝ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL NU\n1D79D\tΞ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL XI\n1D79E\tΟ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMICRON\n1D79F\tΠ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PI\n1D7A0\tΡ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL RHO\n1D7A1\tϴ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA SYMBOL\n1D7A2\tΣ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL SIGMA\n1D7A3\tΤ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL TAU\n1D7A4\tΥ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL UPSILON\n1D7A5\tΦ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PHI\n1D7A6\tΧ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL CHI\n1D7A7\tΨ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PSI\n1D7A8\tΩ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA\n1D7A9\t∇\t# MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA\n1D7AA\tα\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA\n1D7AB\tβ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL BETA\n1D7AC\tγ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL GAMMA\n1D7AD\tδ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL DELTA\n1D7AE\tε\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL EPSILON\n1D7AF\tζ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ZETA\n1D7B0\tη\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ETA\n1D7B1\tθ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL THETA\n1D7B2\tι\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL IOTA\n1D7B3\tκ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL KAPPA\n1D7B4\tλ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL LAMDA\n1D7B5\tμ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL MU\n1D7B6\tν\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL NU\n1D7B7\tξ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL XI\n1D7B8\tο\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMICRON\n1D7B9\tπ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PI\n1D7BA\tρ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL RHO\n1D7BB\tς\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL FINAL SIGMA\n1D7BC\tσ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL SIGMA\n1D7BD\tτ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL TAU\n1D7BE\tυ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL UPSILON\n1D7BF\tφ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PHI\n1D7C0\tχ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL CHI\n1D7C1\tψ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PSI\n1D7C2\tω\t# MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA\n1D7C3\t∂\t# MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL\n1D7C4\tϵ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL\n1D7C5\tϑ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC THETA SYMBOL\n1D7C6\tϰ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC KAPPA SYMBOL\n1D7C7\tϕ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC PHI SYMBOL\n1D7C8\tϱ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC RHO SYMBOL\n1D7C9\tϖ\t# MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL\n1D7CE\t0\t# MATHEMATICAL BOLD DIGIT ZERO\n1D7CF\t1\t# MATHEMATICAL BOLD DIGIT ONE\n1D7D0\t2\t# MATHEMATICAL BOLD DIGIT TWO\n1D7D1\t3\t# MATHEMATICAL BOLD DIGIT THREE\n1D7D2\t4\t# MATHEMATICAL BOLD DIGIT FOUR\n1D7D3\t5\t# MATHEMATICAL BOLD DIGIT FIVE\n1D7D4\t6\t# MATHEMATICAL BOLD DIGIT SIX\n1D7D5\t7\t# MATHEMATICAL BOLD DIGIT SEVEN\n1D7D6\t8\t# MATHEMATICAL BOLD DIGIT EIGHT\n1D7D7\t9\t# MATHEMATICAL BOLD DIGIT NINE\n1D7D8\t0\t# MATHEMATICAL DOUBLE-STRUCK DIGIT ZERO\n1D7D9\t1\t# MATHEMATICAL DOUBLE-STRUCK DIGIT ONE\n1D7DA\t2\t# MATHEMATICAL DOUBLE-STRUCK DIGIT TWO\n1D7DB\t3\t# MATHEMATICAL DOUBLE-STRUCK DIGIT THREE\n1D7DC\t4\t# MATHEMATICAL DOUBLE-STRUCK DIGIT FOUR\n1D7DD\t5\t# MATHEMATICAL DOUBLE-STRUCK DIGIT FIVE\n1D7DE\t6\t# MATHEMATICAL DOUBLE-STRUCK DIGIT SIX\n1D7DF\t7\t# MATHEMATICAL DOUBLE-STRUCK DIGIT SEVEN\n1D7E0\t8\t# MATHEMATICAL DOUBLE-STRUCK DIGIT EIGHT\n1D7E1\t9\t# MATHEMATICAL DOUBLE-STRUCK DIGIT NINE\n1D7E2\t0\t# MATHEMATICAL SANS-SERIF DIGIT ZERO\n1D7E3\t1\t# MATHEMATICAL SANS-SERIF DIGIT ONE\n1D7E4\t2\t# MATHEMATICAL SANS-SERIF DIGIT TWO\n1D7E5\t3\t# MATHEMATICAL SANS-SERIF DIGIT THREE\n1D7E6\t4\t# MATHEMATICAL SANS-SERIF DIGIT FOUR\n1D7E7\t5\t# MATHEMATICAL SANS-SERIF DIGIT FIVE\n1D7E8\t6\t# MATHEMATICAL SANS-SERIF DIGIT SIX\n1D7E9\t7\t# MATHEMATICAL SANS-SERIF DIGIT SEVEN\n1D7EA\t8\t# MATHEMATICAL SANS-SERIF DIGIT EIGHT\n1D7EB\t9\t# MATHEMATICAL SANS-SERIF DIGIT NINE\n1D7EC\t0\t# MATHEMATICAL SANS-SERIF BOLD DIGIT ZERO\n1D7ED\t1\t# MATHEMATICAL SANS-SERIF BOLD DIGIT ONE\n1D7EE\t2\t# MATHEMATICAL SANS-SERIF BOLD DIGIT TWO\n1D7EF\t3\t# MATHEMATICAL SANS-SERIF BOLD DIGIT THREE\n1D7F0\t4\t# MATHEMATICAL SANS-SERIF BOLD DIGIT FOUR\n1D7F1\t5\t# MATHEMATICAL SANS-SERIF BOLD DIGIT FIVE\n1D7F2\t6\t# MATHEMATICAL SANS-SERIF BOLD DIGIT SIX\n1D7F3\t7\t# MATHEMATICAL SANS-SERIF BOLD DIGIT SEVEN\n1D7F4\t8\t# MATHEMATICAL SANS-SERIF BOLD DIGIT EIGHT\n1D7F5\t9\t# MATHEMATICAL SANS-SERIF BOLD DIGIT NINE\n1D7F6\t0\t# MATHEMATICAL MONOSPACE DIGIT ZERO\n1D7F7\t1\t# MATHEMATICAL MONOSPACE DIGIT ONE\n1D7F8\t2\t# MATHEMATICAL MONOSPACE DIGIT TWO\n1D7F9\t3\t# MATHEMATICAL MONOSPACE DIGIT THREE\n1D7FA\t4\t# MATHEMATICAL MONOSPACE DIGIT FOUR\n1D7FB\t5\t# MATHEMATICAL MONOSPACE DIGIT FIVE\n1D7FC\t6\t# MATHEMATICAL MONOSPACE DIGIT SIX\n1D7FD\t7\t# MATHEMATICAL MONOSPACE DIGIT SEVEN\n1D7FE\t8\t# MATHEMATICAL MONOSPACE DIGIT EIGHT\n1D7FF\t9\t# MATHEMATICAL MONOSPACE DIGIT NINE\n2F800\t丽\t# CJK COMPATIBILITY IDEOGRAPH-2F800\n2F801\t丸\t# CJK COMPATIBILITY IDEOGRAPH-2F801\n2F802\t乁\t# CJK COMPATIBILITY IDEOGRAPH-2F802\n2F803\t𠄢\t# CJK COMPATIBILITY IDEOGRAPH-2F803\n2F804\t你\t# CJK COMPATIBILITY IDEOGRAPH-2F804\n2F805\t侮\t# CJK COMPATIBILITY IDEOGRAPH-2F805\n2F806\t侻\t# CJK COMPATIBILITY IDEOGRAPH-2F806\n2F807\t倂\t# CJK COMPATIBILITY IDEOGRAPH-2F807\n2F808\t偺\t# CJK COMPATIBILITY IDEOGRAPH-2F808\n2F809\t備\t# CJK COMPATIBILITY IDEOGRAPH-2F809\n2F80A\t僧\t# CJK COMPATIBILITY IDEOGRAPH-2F80A\n2F80B\t像\t# CJK COMPATIBILITY IDEOGRAPH-2F80B\n2F80C\t㒞\t# CJK COMPATIBILITY IDEOGRAPH-2F80C\n2F80D\t𠘺\t# CJK COMPATIBILITY IDEOGRAPH-2F80D\n2F80E\t免\t# CJK COMPATIBILITY IDEOGRAPH-2F80E\n2F80F\t兔\t# CJK COMPATIBILITY IDEOGRAPH-2F80F\n2F810\t兤\t# CJK COMPATIBILITY IDEOGRAPH-2F810\n2F811\t具\t# CJK COMPATIBILITY IDEOGRAPH-2F811\n2F812\t𠔜\t# CJK COMPATIBILITY IDEOGRAPH-2F812\n2F813\t㒹\t# CJK COMPATIBILITY IDEOGRAPH-2F813\n2F814\t內\t# CJK COMPATIBILITY IDEOGRAPH-2F814\n2F815\t再\t# CJK COMPATIBILITY IDEOGRAPH-2F815\n2F816\t𠕋\t# CJK COMPATIBILITY IDEOGRAPH-2F816\n2F817\t冗\t# CJK COMPATIBILITY IDEOGRAPH-2F817\n2F818\t冤\t# CJK COMPATIBILITY IDEOGRAPH-2F818\n2F819\t仌\t# CJK COMPATIBILITY IDEOGRAPH-2F819\n2F81A\t冬\t# CJK COMPATIBILITY IDEOGRAPH-2F81A\n2F81B\t况\t# CJK COMPATIBILITY IDEOGRAPH-2F81B\n2F81C\t𩇟\t# CJK COMPATIBILITY IDEOGRAPH-2F81C\n2F81D\t凵\t# CJK COMPATIBILITY IDEOGRAPH-2F81D\n2F81E\t刃\t# CJK COMPATIBILITY IDEOGRAPH-2F81E\n2F81F\t㓟\t# CJK COMPATIBILITY IDEOGRAPH-2F81F\n2F820\t刻\t# CJK COMPATIBILITY IDEOGRAPH-2F820\n2F821\t剆\t# CJK COMPATIBILITY IDEOGRAPH-2F821\n2F822\t割\t# CJK COMPATIBILITY IDEOGRAPH-2F822\n2F823\t剷\t# CJK COMPATIBILITY IDEOGRAPH-2F823\n2F824\t㔕\t# CJK COMPATIBILITY IDEOGRAPH-2F824\n2F825\t勇\t# CJK COMPATIBILITY IDEOGRAPH-2F825\n2F826\t勉\t# CJK COMPATIBILITY IDEOGRAPH-2F826\n2F827\t勤\t# CJK COMPATIBILITY IDEOGRAPH-2F827\n2F828\t勺\t# CJK COMPATIBILITY IDEOGRAPH-2F828\n2F829\t包\t# CJK COMPATIBILITY IDEOGRAPH-2F829\n2F82A\t匆\t# CJK COMPATIBILITY IDEOGRAPH-2F82A\n2F82B\t北\t# CJK COMPATIBILITY IDEOGRAPH-2F82B\n2F82C\t卉\t# CJK COMPATIBILITY IDEOGRAPH-2F82C\n2F82D\t卑\t# CJK COMPATIBILITY IDEOGRAPH-2F82D\n2F82E\t博\t# CJK COMPATIBILITY IDEOGRAPH-2F82E\n2F82F\t即\t# CJK COMPATIBILITY IDEOGRAPH-2F82F\n2F830\t卽\t# CJK COMPATIBILITY IDEOGRAPH-2F830\n2F831\t卿\t# CJK COMPATIBILITY IDEOGRAPH-2F831\n2F832\t卿\t# CJK COMPATIBILITY IDEOGRAPH-2F832\n2F833\t卿\t# CJK COMPATIBILITY IDEOGRAPH-2F833\n2F834\t𠨬\t# CJK COMPATIBILITY IDEOGRAPH-2F834\n2F835\t灰\t# CJK COMPATIBILITY IDEOGRAPH-2F835\n2F836\t及\t# CJK COMPATIBILITY IDEOGRAPH-2F836\n2F837\t叟\t# CJK COMPATIBILITY IDEOGRAPH-2F837\n2F838\t𠭣\t# CJK COMPATIBILITY IDEOGRAPH-2F838\n2F839\t叫\t# CJK COMPATIBILITY IDEOGRAPH-2F839\n2F83A\t叱\t# CJK COMPATIBILITY IDEOGRAPH-2F83A\n2F83B\t吆\t# CJK COMPATIBILITY IDEOGRAPH-2F83B\n2F83C\t咞\t# CJK COMPATIBILITY IDEOGRAPH-2F83C\n2F83D\t吸\t# CJK COMPATIBILITY IDEOGRAPH-2F83D\n2F83E\t呈\t# CJK COMPATIBILITY IDEOGRAPH-2F83E\n2F83F\t周\t# CJK COMPATIBILITY IDEOGRAPH-2F83F\n2F840\t咢\t# CJK COMPATIBILITY IDEOGRAPH-2F840\n2F841\t哶\t# CJK COMPATIBILITY IDEOGRAPH-2F841\n2F842\t唐\t# CJK COMPATIBILITY IDEOGRAPH-2F842\n2F843\t啓\t# CJK COMPATIBILITY IDEOGRAPH-2F843\n2F844\t啣\t# CJK COMPATIBILITY IDEOGRAPH-2F844\n2F845\t善\t# CJK COMPATIBILITY IDEOGRAPH-2F845\n2F846\t善\t# CJK COMPATIBILITY IDEOGRAPH-2F846\n2F847\t喙\t# CJK COMPATIBILITY IDEOGRAPH-2F847\n2F848\t喫\t# CJK COMPATIBILITY IDEOGRAPH-2F848\n2F849\t喳\t# CJK COMPATIBILITY IDEOGRAPH-2F849\n2F84A\t嗂\t# CJK COMPATIBILITY IDEOGRAPH-2F84A\n2F84B\t圖\t# CJK COMPATIBILITY IDEOGRAPH-2F84B\n2F84C\t嘆\t# CJK COMPATIBILITY IDEOGRAPH-2F84C\n2F84D\t圗\t# CJK COMPATIBILITY IDEOGRAPH-2F84D\n2F84E\t噑\t# CJK COMPATIBILITY IDEOGRAPH-2F84E\n2F84F\t噴\t# CJK COMPATIBILITY IDEOGRAPH-2F84F\n2F850\t切\t# CJK COMPATIBILITY IDEOGRAPH-2F850\n2F851\t壮\t# CJK COMPATIBILITY IDEOGRAPH-2F851\n2F852\t城\t# CJK COMPATIBILITY IDEOGRAPH-2F852\n2F853\t埴\t# CJK COMPATIBILITY IDEOGRAPH-2F853\n2F854\t堍\t# CJK COMPATIBILITY IDEOGRAPH-2F854\n2F855\t型\t# CJK COMPATIBILITY IDEOGRAPH-2F855\n2F856\t堲\t# CJK COMPATIBILITY IDEOGRAPH-2F856\n2F857\t報\t# CJK COMPATIBILITY IDEOGRAPH-2F857\n2F858\t墬\t# CJK COMPATIBILITY IDEOGRAPH-2F858\n2F859\t𡓤\t# CJK COMPATIBILITY IDEOGRAPH-2F859\n2F85A\t売\t# CJK COMPATIBILITY IDEOGRAPH-2F85A\n2F85B\t壷\t# CJK COMPATIBILITY IDEOGRAPH-2F85B\n2F85C\t夆\t# CJK COMPATIBILITY IDEOGRAPH-2F85C\n2F85D\t多\t# CJK COMPATIBILITY IDEOGRAPH-2F85D\n2F85E\t夢\t# CJK COMPATIBILITY IDEOGRAPH-2F85E\n2F85F\t奢\t# CJK COMPATIBILITY IDEOGRAPH-2F85F\n2F860\t𡚨\t# CJK COMPATIBILITY IDEOGRAPH-2F860\n2F861\t𡛪\t# CJK COMPATIBILITY IDEOGRAPH-2F861\n2F862\t姬\t# CJK COMPATIBILITY IDEOGRAPH-2F862\n2F863\t娛\t# CJK COMPATIBILITY IDEOGRAPH-2F863\n2F864\t娧\t# CJK COMPATIBILITY IDEOGRAPH-2F864\n2F865\t姘\t# CJK COMPATIBILITY IDEOGRAPH-2F865\n2F866\t婦\t# CJK COMPATIBILITY IDEOGRAPH-2F866\n2F867\t㛮\t# CJK COMPATIBILITY IDEOGRAPH-2F867\n2F868\t㛼\t# CJK COMPATIBILITY IDEOGRAPH-2F868\n2F869\t嬈\t# CJK COMPATIBILITY IDEOGRAPH-2F869\n2F86A\t嬾\t# CJK COMPATIBILITY IDEOGRAPH-2F86A\n2F86B\t嬾\t# CJK COMPATIBILITY IDEOGRAPH-2F86B\n2F86C\t𡧈\t# CJK COMPATIBILITY IDEOGRAPH-2F86C\n2F86D\t寃\t# CJK COMPATIBILITY IDEOGRAPH-2F86D\n2F86E\t寘\t# CJK COMPATIBILITY IDEOGRAPH-2F86E\n2F86F\t寧\t# CJK COMPATIBILITY IDEOGRAPH-2F86F\n2F870\t寳\t# CJK COMPATIBILITY IDEOGRAPH-2F870\n2F871\t𡬘\t# CJK COMPATIBILITY IDEOGRAPH-2F871\n2F872\t寿\t# CJK COMPATIBILITY IDEOGRAPH-2F872\n2F873\t将\t# CJK COMPATIBILITY IDEOGRAPH-2F873\n2F874\t当\t# CJK COMPATIBILITY IDEOGRAPH-2F874\n2F875\t尢\t# CJK COMPATIBILITY IDEOGRAPH-2F875\n2F876\t㞁\t# CJK COMPATIBILITY IDEOGRAPH-2F876\n2F877\t屠\t# CJK COMPATIBILITY IDEOGRAPH-2F877\n2F878\t屮\t# CJK COMPATIBILITY IDEOGRAPH-2F878\n2F879\t峀\t# CJK COMPATIBILITY IDEOGRAPH-2F879\n2F87A\t岍\t# CJK COMPATIBILITY IDEOGRAPH-2F87A\n2F87B\t𡷤\t# CJK COMPATIBILITY IDEOGRAPH-2F87B\n2F87C\t嵃\t# CJK COMPATIBILITY IDEOGRAPH-2F87C\n2F87D\t𡷦\t# CJK COMPATIBILITY IDEOGRAPH-2F87D\n2F87E\t嵮\t# CJK COMPATIBILITY IDEOGRAPH-2F87E\n2F87F\t嵫\t# CJK COMPATIBILITY IDEOGRAPH-2F87F\n2F880\t嵼\t# CJK COMPATIBILITY IDEOGRAPH-2F880\n2F881\t巡\t# CJK COMPATIBILITY IDEOGRAPH-2F881\n2F882\t巢\t# CJK COMPATIBILITY IDEOGRAPH-2F882\n2F883\t㠯\t# CJK COMPATIBILITY IDEOGRAPH-2F883\n2F884\t巽\t# CJK COMPATIBILITY IDEOGRAPH-2F884\n2F885\t帨\t# CJK COMPATIBILITY IDEOGRAPH-2F885\n2F886\t帽\t# CJK COMPATIBILITY IDEOGRAPH-2F886\n2F887\t幩\t# CJK COMPATIBILITY IDEOGRAPH-2F887\n2F888\t㡢\t# CJK COMPATIBILITY IDEOGRAPH-2F888\n2F889\t𢆃\t# CJK COMPATIBILITY IDEOGRAPH-2F889\n2F88A\t㡼\t# CJK COMPATIBILITY IDEOGRAPH-2F88A\n2F88B\t庰\t# CJK COMPATIBILITY IDEOGRAPH-2F88B\n2F88C\t庳\t# CJK COMPATIBILITY IDEOGRAPH-2F88C\n2F88D\t庶\t# CJK COMPATIBILITY IDEOGRAPH-2F88D\n2F88E\t廊\t# CJK COMPATIBILITY IDEOGRAPH-2F88E\n2F88F\t𪎒\t# CJK COMPATIBILITY IDEOGRAPH-2F88F\n2F890\t廾\t# CJK COMPATIBILITY IDEOGRAPH-2F890\n2F891\t𢌱\t# CJK COMPATIBILITY IDEOGRAPH-2F891\n2F892\t𢌱\t# CJK COMPATIBILITY IDEOGRAPH-2F892\n2F893\t舁\t# CJK COMPATIBILITY IDEOGRAPH-2F893\n2F894\t弢\t# CJK COMPATIBILITY IDEOGRAPH-2F894\n2F895\t弢\t# CJK COMPATIBILITY IDEOGRAPH-2F895\n2F896\t㣇\t# CJK COMPATIBILITY IDEOGRAPH-2F896\n2F897\t𣊸\t# CJK COMPATIBILITY IDEOGRAPH-2F897\n2F898\t𦇚\t# CJK COMPATIBILITY IDEOGRAPH-2F898\n2F899\t形\t# CJK COMPATIBILITY IDEOGRAPH-2F899\n2F89A\t彫\t# CJK COMPATIBILITY IDEOGRAPH-2F89A\n2F89B\t㣣\t# CJK COMPATIBILITY IDEOGRAPH-2F89B\n2F89C\t徚\t# CJK COMPATIBILITY IDEOGRAPH-2F89C\n2F89D\t忍\t# CJK COMPATIBILITY IDEOGRAPH-2F89D\n2F89E\t志\t# CJK COMPATIBILITY IDEOGRAPH-2F89E\n2F89F\t忹\t# CJK COMPATIBILITY IDEOGRAPH-2F89F\n2F8A0\t悁\t# CJK COMPATIBILITY IDEOGRAPH-2F8A0\n2F8A1\t㤺\t# CJK COMPATIBILITY IDEOGRAPH-2F8A1\n2F8A2\t㤜\t# CJK COMPATIBILITY IDEOGRAPH-2F8A2\n2F8A3\t悔\t# CJK COMPATIBILITY IDEOGRAPH-2F8A3\n2F8A4\t𢛔\t# CJK COMPATIBILITY IDEOGRAPH-2F8A4\n2F8A5\t惇\t# CJK COMPATIBILITY IDEOGRAPH-2F8A5\n2F8A6\t慈\t# CJK COMPATIBILITY IDEOGRAPH-2F8A6\n2F8A7\t慌\t# CJK COMPATIBILITY IDEOGRAPH-2F8A7\n2F8A8\t慎\t# CJK COMPATIBILITY IDEOGRAPH-2F8A8\n2F8A9\t慌\t# CJK COMPATIBILITY IDEOGRAPH-2F8A9\n2F8AA\t慺\t# CJK COMPATIBILITY IDEOGRAPH-2F8AA\n2F8AB\t憎\t# CJK COMPATIBILITY IDEOGRAPH-2F8AB\n2F8AC\t憲\t# CJK COMPATIBILITY IDEOGRAPH-2F8AC\n2F8AD\t憤\t# CJK COMPATIBILITY IDEOGRAPH-2F8AD\n2F8AE\t憯\t# CJK COMPATIBILITY IDEOGRAPH-2F8AE\n2F8AF\t懞\t# CJK COMPATIBILITY IDEOGRAPH-2F8AF\n2F8B0\t懲\t# CJK COMPATIBILITY IDEOGRAPH-2F8B0\n2F8B1\t懶\t# CJK COMPATIBILITY IDEOGRAPH-2F8B1\n2F8B2\t成\t# CJK COMPATIBILITY IDEOGRAPH-2F8B2\n2F8B3\t戛\t# CJK COMPATIBILITY IDEOGRAPH-2F8B3\n2F8B4\t扝\t# CJK COMPATIBILITY IDEOGRAPH-2F8B4\n2F8B5\t抱\t# CJK COMPATIBILITY IDEOGRAPH-2F8B5\n2F8B6\t拔\t# CJK COMPATIBILITY IDEOGRAPH-2F8B6\n2F8B7\t捐\t# CJK COMPATIBILITY IDEOGRAPH-2F8B7\n2F8B8\t𢬌\t# CJK COMPATIBILITY IDEOGRAPH-2F8B8\n2F8B9\t挽\t# CJK COMPATIBILITY IDEOGRAPH-2F8B9\n2F8BA\t拼\t# CJK COMPATIBILITY IDEOGRAPH-2F8BA\n2F8BB\t捨\t# CJK COMPATIBILITY IDEOGRAPH-2F8BB\n2F8BC\t掃\t# CJK COMPATIBILITY IDEOGRAPH-2F8BC\n2F8BD\t揤\t# CJK COMPATIBILITY IDEOGRAPH-2F8BD\n2F8BE\t𢯱\t# CJK COMPATIBILITY IDEOGRAPH-2F8BE\n2F8BF\t搢\t# CJK COMPATIBILITY IDEOGRAPH-2F8BF\n2F8C0\t揅\t# CJK COMPATIBILITY IDEOGRAPH-2F8C0\n2F8C1\t掩\t# CJK COMPATIBILITY IDEOGRAPH-2F8C1\n2F8C2\t㨮\t# CJK COMPATIBILITY IDEOGRAPH-2F8C2\n2F8C3\t摩\t# CJK COMPATIBILITY IDEOGRAPH-2F8C3\n2F8C4\t摾\t# CJK COMPATIBILITY IDEOGRAPH-2F8C4\n2F8C5\t撝\t# CJK COMPATIBILITY IDEOGRAPH-2F8C5\n2F8C6\t摷\t# CJK COMPATIBILITY IDEOGRAPH-2F8C6\n2F8C7\t㩬\t# CJK COMPATIBILITY IDEOGRAPH-2F8C7\n2F8C8\t敏\t# CJK COMPATIBILITY IDEOGRAPH-2F8C8\n2F8C9\t敬\t# CJK COMPATIBILITY IDEOGRAPH-2F8C9\n2F8CA\t𣀊\t# CJK COMPATIBILITY IDEOGRAPH-2F8CA\n2F8CB\t旣\t# CJK COMPATIBILITY IDEOGRAPH-2F8CB\n2F8CC\t書\t# CJK COMPATIBILITY IDEOGRAPH-2F8CC\n2F8CD\t晉\t# CJK COMPATIBILITY IDEOGRAPH-2F8CD\n2F8CE\t㬙\t# CJK COMPATIBILITY IDEOGRAPH-2F8CE\n2F8CF\t暑\t# CJK COMPATIBILITY IDEOGRAPH-2F8CF\n2F8D0\t㬈\t# CJK COMPATIBILITY IDEOGRAPH-2F8D0\n2F8D1\t㫤\t# CJK COMPATIBILITY IDEOGRAPH-2F8D1\n2F8D2\t冒\t# CJK COMPATIBILITY IDEOGRAPH-2F8D2\n2F8D3\t冕\t# CJK COMPATIBILITY IDEOGRAPH-2F8D3\n2F8D4\t最\t# CJK COMPATIBILITY IDEOGRAPH-2F8D4\n2F8D5\t暜\t# CJK COMPATIBILITY IDEOGRAPH-2F8D5\n2F8D6\t肭\t# CJK COMPATIBILITY IDEOGRAPH-2F8D6\n2F8D7\t䏙\t# CJK COMPATIBILITY IDEOGRAPH-2F8D7\n2F8D8\t朗\t# CJK COMPATIBILITY IDEOGRAPH-2F8D8\n2F8D9\t望\t# CJK COMPATIBILITY IDEOGRAPH-2F8D9\n2F8DA\t朡\t# CJK COMPATIBILITY IDEOGRAPH-2F8DA\n2F8DB\t杞\t# CJK COMPATIBILITY IDEOGRAPH-2F8DB\n2F8DC\t杓\t# CJK COMPATIBILITY IDEOGRAPH-2F8DC\n2F8DD\t𣏃\t# CJK COMPATIBILITY IDEOGRAPH-2F8DD\n2F8DE\t㭉\t# CJK COMPATIBILITY IDEOGRAPH-2F8DE\n2F8DF\t柺\t# CJK COMPATIBILITY IDEOGRAPH-2F8DF\n2F8E0\t枅\t# CJK COMPATIBILITY IDEOGRAPH-2F8E0\n2F8E1\t桒\t# CJK COMPATIBILITY IDEOGRAPH-2F8E1\n2F8E2\t梅\t# CJK COMPATIBILITY IDEOGRAPH-2F8E2\n2F8E3\t𣑭\t# CJK COMPATIBILITY IDEOGRAPH-2F8E3\n2F8E4\t梎\t# CJK COMPATIBILITY IDEOGRAPH-2F8E4\n2F8E5\t栟\t# CJK COMPATIBILITY IDEOGRAPH-2F8E5\n2F8E6\t椔\t# CJK COMPATIBILITY IDEOGRAPH-2F8E6\n2F8E7\t㮝\t# CJK COMPATIBILITY IDEOGRAPH-2F8E7\n2F8E8\t楂\t# CJK COMPATIBILITY IDEOGRAPH-2F8E8\n2F8E9\t榣\t# CJK COMPATIBILITY IDEOGRAPH-2F8E9\n2F8EA\t槪\t# CJK COMPATIBILITY IDEOGRAPH-2F8EA\n2F8EB\t檨\t# CJK COMPATIBILITY IDEOGRAPH-2F8EB\n2F8EC\t𣚣\t# CJK COMPATIBILITY IDEOGRAPH-2F8EC\n2F8ED\t櫛\t# CJK COMPATIBILITY IDEOGRAPH-2F8ED\n2F8EE\t㰘\t# CJK COMPATIBILITY IDEOGRAPH-2F8EE\n2F8EF\t次\t# CJK COMPATIBILITY IDEOGRAPH-2F8EF\n2F8F0\t𣢧\t# CJK COMPATIBILITY IDEOGRAPH-2F8F0\n2F8F1\t歔\t# CJK COMPATIBILITY IDEOGRAPH-2F8F1\n2F8F2\t㱎\t# CJK COMPATIBILITY IDEOGRAPH-2F8F2\n2F8F3\t歲\t# CJK COMPATIBILITY IDEOGRAPH-2F8F3\n2F8F4\t殟\t# CJK COMPATIBILITY IDEOGRAPH-2F8F4\n2F8F5\t殺\t# CJK COMPATIBILITY IDEOGRAPH-2F8F5\n2F8F6\t殻\t# CJK COMPATIBILITY IDEOGRAPH-2F8F6\n2F8F7\t𣪍\t# CJK COMPATIBILITY IDEOGRAPH-2F8F7\n2F8F8\t𡴋\t# CJK COMPATIBILITY IDEOGRAPH-2F8F8\n2F8F9\t𣫺\t# CJK COMPATIBILITY IDEOGRAPH-2F8F9\n2F8FA\t汎\t# CJK COMPATIBILITY IDEOGRAPH-2F8FA\n2F8FB\t𣲼\t# CJK COMPATIBILITY IDEOGRAPH-2F8FB\n2F8FC\t沿\t# CJK COMPATIBILITY IDEOGRAPH-2F8FC\n2F8FD\t泍\t# CJK COMPATIBILITY IDEOGRAPH-2F8FD\n2F8FE\t汧\t# CJK COMPATIBILITY IDEOGRAPH-2F8FE\n2F8FF\t洖\t# CJK COMPATIBILITY IDEOGRAPH-2F8FF\n2F900\t派\t# CJK COMPATIBILITY IDEOGRAPH-2F900\n2F901\t海\t# CJK COMPATIBILITY IDEOGRAPH-2F901\n2F902\t流\t# CJK COMPATIBILITY IDEOGRAPH-2F902\n2F903\t浩\t# CJK COMPATIBILITY IDEOGRAPH-2F903\n2F904\t浸\t# CJK COMPATIBILITY IDEOGRAPH-2F904\n2F905\t涅\t# CJK COMPATIBILITY IDEOGRAPH-2F905\n2F906\t𣴞\t# CJK COMPATIBILITY IDEOGRAPH-2F906\n2F907\t洴\t# CJK COMPATIBILITY IDEOGRAPH-2F907\n2F908\t港\t# CJK COMPATIBILITY IDEOGRAPH-2F908\n2F909\t湮\t# CJK COMPATIBILITY IDEOGRAPH-2F909\n2F90A\t㴳\t# CJK COMPATIBILITY IDEOGRAPH-2F90A\n2F90B\t滋\t# CJK COMPATIBILITY IDEOGRAPH-2F90B\n2F90C\t滇\t# CJK COMPATIBILITY IDEOGRAPH-2F90C\n2F90D\t𣻑\t# CJK COMPATIBILITY IDEOGRAPH-2F90D\n2F90E\t淹\t# CJK COMPATIBILITY IDEOGRAPH-2F90E\n2F90F\t潮\t# CJK COMPATIBILITY IDEOGRAPH-2F90F\n2F910\t𣽞\t# CJK COMPATIBILITY IDEOGRAPH-2F910\n2F911\t𣾎\t# CJK COMPATIBILITY IDEOGRAPH-2F911\n2F912\t濆\t# CJK COMPATIBILITY IDEOGRAPH-2F912\n2F913\t瀹\t# CJK COMPATIBILITY IDEOGRAPH-2F913\n2F914\t瀞\t# CJK COMPATIBILITY IDEOGRAPH-2F914\n2F915\t瀛\t# CJK COMPATIBILITY IDEOGRAPH-2F915\n2F916\t㶖\t# CJK COMPATIBILITY IDEOGRAPH-2F916\n2F917\t灊\t# CJK COMPATIBILITY IDEOGRAPH-2F917\n2F918\t災\t# CJK COMPATIBILITY IDEOGRAPH-2F918\n2F919\t灷\t# CJK COMPATIBILITY IDEOGRAPH-2F919\n2F91A\t炭\t# CJK COMPATIBILITY IDEOGRAPH-2F91A\n2F91B\t𠔥\t# CJK COMPATIBILITY IDEOGRAPH-2F91B\n2F91C\t煅\t# CJK COMPATIBILITY IDEOGRAPH-2F91C\n2F91D\t𤉣\t# CJK COMPATIBILITY IDEOGRAPH-2F91D\n2F91E\t熜\t# CJK COMPATIBILITY IDEOGRAPH-2F91E\n2F91F\t𤎫\t# CJK COMPATIBILITY IDEOGRAPH-2F91F\n2F920\t爨\t# CJK COMPATIBILITY IDEOGRAPH-2F920\n2F921\t爵\t# CJK COMPATIBILITY IDEOGRAPH-2F921\n2F922\t牐\t# CJK COMPATIBILITY IDEOGRAPH-2F922\n2F923\t𤘈\t# CJK COMPATIBILITY IDEOGRAPH-2F923\n2F924\t犀\t# CJK COMPATIBILITY IDEOGRAPH-2F924\n2F925\t犕\t# CJK COMPATIBILITY IDEOGRAPH-2F925\n2F926\t𤜵\t# CJK COMPATIBILITY IDEOGRAPH-2F926\n2F927\t𤠔\t# CJK COMPATIBILITY IDEOGRAPH-2F927\n2F928\t獺\t# CJK COMPATIBILITY IDEOGRAPH-2F928\n2F929\t王\t# CJK COMPATIBILITY IDEOGRAPH-2F929\n2F92A\t㺬\t# CJK COMPATIBILITY IDEOGRAPH-2F92A\n2F92B\t玥\t# CJK COMPATIBILITY IDEOGRAPH-2F92B\n2F92C\t㺸\t# CJK COMPATIBILITY IDEOGRAPH-2F92C\n2F92D\t㺸\t# CJK COMPATIBILITY IDEOGRAPH-2F92D\n2F92E\t瑇\t# CJK COMPATIBILITY IDEOGRAPH-2F92E\n2F92F\t瑜\t# CJK COMPATIBILITY IDEOGRAPH-2F92F\n2F930\t瑱\t# CJK COMPATIBILITY IDEOGRAPH-2F930\n2F931\t璅\t# CJK COMPATIBILITY IDEOGRAPH-2F931\n2F932\t瓊\t# CJK COMPATIBILITY IDEOGRAPH-2F932\n2F933\t㼛\t# CJK COMPATIBILITY IDEOGRAPH-2F933\n2F934\t甤\t# CJK COMPATIBILITY IDEOGRAPH-2F934\n2F935\t𤰶\t# CJK COMPATIBILITY IDEOGRAPH-2F935\n2F936\t甾\t# CJK COMPATIBILITY IDEOGRAPH-2F936\n2F937\t𤲒\t# CJK COMPATIBILITY IDEOGRAPH-2F937\n2F938\t異\t# CJK COMPATIBILITY IDEOGRAPH-2F938\n2F939\t𢆟\t# CJK COMPATIBILITY IDEOGRAPH-2F939\n2F93A\t瘐\t# CJK COMPATIBILITY IDEOGRAPH-2F93A\n2F93B\t𤾡\t# CJK COMPATIBILITY IDEOGRAPH-2F93B\n2F93C\t𤾸\t# CJK COMPATIBILITY IDEOGRAPH-2F93C\n2F93D\t𥁄\t# CJK COMPATIBILITY IDEOGRAPH-2F93D\n2F93E\t㿼\t# CJK COMPATIBILITY IDEOGRAPH-2F93E\n2F93F\t䀈\t# CJK COMPATIBILITY IDEOGRAPH-2F93F\n2F940\t直\t# CJK COMPATIBILITY IDEOGRAPH-2F940\n2F941\t𥃳\t# CJK COMPATIBILITY IDEOGRAPH-2F941\n2F942\t𥃲\t# CJK COMPATIBILITY IDEOGRAPH-2F942\n2F943\t𥄙\t# CJK COMPATIBILITY IDEOGRAPH-2F943\n2F944\t𥄳\t# CJK COMPATIBILITY IDEOGRAPH-2F944\n2F945\t眞\t# CJK COMPATIBILITY IDEOGRAPH-2F945\n2F946\t真\t# CJK COMPATIBILITY IDEOGRAPH-2F946\n2F947\t真\t# CJK COMPATIBILITY IDEOGRAPH-2F947\n2F948\t睊\t# CJK COMPATIBILITY IDEOGRAPH-2F948\n2F949\t䀹\t# CJK COMPATIBILITY IDEOGRAPH-2F949\n2F94A\t瞋\t# CJK COMPATIBILITY IDEOGRAPH-2F94A\n2F94B\t䁆\t# CJK COMPATIBILITY IDEOGRAPH-2F94B\n2F94C\t䂖\t# CJK COMPATIBILITY IDEOGRAPH-2F94C\n2F94D\t𥐝\t# CJK COMPATIBILITY IDEOGRAPH-2F94D\n2F94E\t硎\t# CJK COMPATIBILITY IDEOGRAPH-2F94E\n2F94F\t碌\t# CJK COMPATIBILITY IDEOGRAPH-2F94F\n2F950\t磌\t# CJK COMPATIBILITY IDEOGRAPH-2F950\n2F951\t䃣\t# CJK COMPATIBILITY IDEOGRAPH-2F951\n2F952\t𥘦\t# CJK COMPATIBILITY IDEOGRAPH-2F952\n2F953\t祖\t# CJK COMPATIBILITY IDEOGRAPH-2F953\n2F954\t𥚚\t# CJK COMPATIBILITY IDEOGRAPH-2F954\n2F955\t𥛅\t# CJK COMPATIBILITY IDEOGRAPH-2F955\n2F956\t福\t# CJK COMPATIBILITY IDEOGRAPH-2F956\n2F957\t秫\t# CJK COMPATIBILITY IDEOGRAPH-2F957\n2F958\t䄯\t# CJK COMPATIBILITY IDEOGRAPH-2F958\n2F959\t穀\t# CJK COMPATIBILITY IDEOGRAPH-2F959\n2F95A\t穊\t# CJK COMPATIBILITY IDEOGRAPH-2F95A\n2F95B\t穏\t# CJK COMPATIBILITY IDEOGRAPH-2F95B\n2F95C\t𥥼\t# CJK COMPATIBILITY IDEOGRAPH-2F95C\n2F95D\t𥪧\t# CJK COMPATIBILITY IDEOGRAPH-2F95D\n2F95E\t𥪧\t# CJK COMPATIBILITY IDEOGRAPH-2F95E\n2F95F\t竮\t# CJK COMPATIBILITY IDEOGRAPH-2F95F\n2F960\t䈂\t# CJK COMPATIBILITY IDEOGRAPH-2F960\n2F961\t𥮫\t# CJK COMPATIBILITY IDEOGRAPH-2F961\n2F962\t篆\t# CJK COMPATIBILITY IDEOGRAPH-2F962\n2F963\t築\t# CJK COMPATIBILITY IDEOGRAPH-2F963\n2F964\t䈧\t# CJK COMPATIBILITY IDEOGRAPH-2F964\n2F965\t𥲀\t# CJK COMPATIBILITY IDEOGRAPH-2F965\n2F966\t糒\t# CJK COMPATIBILITY IDEOGRAPH-2F966\n2F967\t䊠\t# CJK COMPATIBILITY IDEOGRAPH-2F967\n2F968\t糨\t# CJK COMPATIBILITY IDEOGRAPH-2F968\n2F969\t糣\t# CJK COMPATIBILITY IDEOGRAPH-2F969\n2F96A\t紀\t# CJK COMPATIBILITY IDEOGRAPH-2F96A\n2F96B\t𥾆\t# CJK COMPATIBILITY IDEOGRAPH-2F96B\n2F96C\t絣\t# CJK COMPATIBILITY IDEOGRAPH-2F96C\n2F96D\t䌁\t# CJK COMPATIBILITY IDEOGRAPH-2F96D\n2F96E\t緇\t# CJK COMPATIBILITY IDEOGRAPH-2F96E\n2F96F\t縂\t# CJK COMPATIBILITY IDEOGRAPH-2F96F\n2F970\t繅\t# CJK COMPATIBILITY IDEOGRAPH-2F970\n2F971\t䌴\t# CJK COMPATIBILITY IDEOGRAPH-2F971\n2F972\t𦈨\t# CJK COMPATIBILITY IDEOGRAPH-2F972\n2F973\t𦉇\t# CJK COMPATIBILITY IDEOGRAPH-2F973\n2F974\t䍙\t# CJK COMPATIBILITY IDEOGRAPH-2F974\n2F975\t𦋙\t# CJK COMPATIBILITY IDEOGRAPH-2F975\n2F976\t罺\t# CJK COMPATIBILITY IDEOGRAPH-2F976\n2F977\t𦌾\t# CJK COMPATIBILITY IDEOGRAPH-2F977\n2F978\t羕\t# CJK COMPATIBILITY IDEOGRAPH-2F978\n2F979\t翺\t# CJK COMPATIBILITY IDEOGRAPH-2F979\n2F97A\t者\t# CJK COMPATIBILITY IDEOGRAPH-2F97A\n2F97B\t𦓚\t# CJK COMPATIBILITY IDEOGRAPH-2F97B\n2F97C\t𦔣\t# CJK COMPATIBILITY IDEOGRAPH-2F97C\n2F97D\t聠\t# CJK COMPATIBILITY IDEOGRAPH-2F97D\n2F97E\t𦖨\t# CJK COMPATIBILITY IDEOGRAPH-2F97E\n2F97F\t聰\t# CJK COMPATIBILITY IDEOGRAPH-2F97F\n2F980\t𣍟\t# CJK COMPATIBILITY IDEOGRAPH-2F980\n2F981\t䏕\t# CJK COMPATIBILITY IDEOGRAPH-2F981\n2F982\t育\t# CJK COMPATIBILITY IDEOGRAPH-2F982\n2F983\t脃\t# CJK COMPATIBILITY IDEOGRAPH-2F983\n2F984\t䐋\t# CJK COMPATIBILITY IDEOGRAPH-2F984\n2F985\t脾\t# CJK COMPATIBILITY IDEOGRAPH-2F985\n2F986\t媵\t# CJK COMPATIBILITY IDEOGRAPH-2F986\n2F987\t𦞧\t# CJK COMPATIBILITY IDEOGRAPH-2F987\n2F988\t𦞵\t# CJK COMPATIBILITY IDEOGRAPH-2F988\n2F989\t𣎓\t# CJK COMPATIBILITY IDEOGRAPH-2F989\n2F98A\t𣎜\t# CJK COMPATIBILITY IDEOGRAPH-2F98A\n2F98B\t舁\t# CJK COMPATIBILITY IDEOGRAPH-2F98B\n2F98C\t舄\t# CJK COMPATIBILITY IDEOGRAPH-2F98C\n2F98D\t辞\t# CJK COMPATIBILITY IDEOGRAPH-2F98D\n2F98E\t䑫\t# CJK COMPATIBILITY IDEOGRAPH-2F98E\n2F98F\t芑\t# CJK COMPATIBILITY IDEOGRAPH-2F98F\n2F990\t芋\t# CJK COMPATIBILITY IDEOGRAPH-2F990\n2F991\t芝\t# CJK COMPATIBILITY IDEOGRAPH-2F991\n2F992\t劳\t# CJK COMPATIBILITY IDEOGRAPH-2F992\n2F993\t花\t# CJK COMPATIBILITY IDEOGRAPH-2F993\n2F994\t芳\t# CJK COMPATIBILITY IDEOGRAPH-2F994\n2F995\t芽\t# CJK COMPATIBILITY IDEOGRAPH-2F995\n2F996\t苦\t# CJK COMPATIBILITY IDEOGRAPH-2F996\n2F997\t𦬼\t# CJK COMPATIBILITY IDEOGRAPH-2F997\n2F998\t若\t# CJK COMPATIBILITY IDEOGRAPH-2F998\n2F999\t茝\t# CJK COMPATIBILITY IDEOGRAPH-2F999\n2F99A\t荣\t# CJK COMPATIBILITY IDEOGRAPH-2F99A\n2F99B\t莭\t# CJK COMPATIBILITY IDEOGRAPH-2F99B\n2F99C\t茣\t# CJK COMPATIBILITY IDEOGRAPH-2F99C\n2F99D\t莽\t# CJK COMPATIBILITY IDEOGRAPH-2F99D\n2F99E\t菧\t# CJK COMPATIBILITY IDEOGRAPH-2F99E\n2F99F\t著\t# CJK COMPATIBILITY IDEOGRAPH-2F99F\n2F9A0\t荓\t# CJK COMPATIBILITY IDEOGRAPH-2F9A0\n2F9A1\t菊\t# CJK COMPATIBILITY IDEOGRAPH-2F9A1\n2F9A2\t菌\t# CJK COMPATIBILITY IDEOGRAPH-2F9A2\n2F9A3\t菜\t# CJK COMPATIBILITY IDEOGRAPH-2F9A3\n2F9A4\t𦰶\t# CJK COMPATIBILITY IDEOGRAPH-2F9A4\n2F9A5\t𦵫\t# CJK COMPATIBILITY IDEOGRAPH-2F9A5\n2F9A6\t𦳕\t# CJK COMPATIBILITY IDEOGRAPH-2F9A6\n2F9A7\t䔫\t# CJK COMPATIBILITY IDEOGRAPH-2F9A7\n2F9A8\t蓱\t# CJK COMPATIBILITY IDEOGRAPH-2F9A8\n2F9A9\t蓳\t# CJK COMPATIBILITY IDEOGRAPH-2F9A9\n2F9AA\t蔖\t# CJK COMPATIBILITY IDEOGRAPH-2F9AA\n2F9AB\t𧏊\t# CJK COMPATIBILITY IDEOGRAPH-2F9AB\n2F9AC\t蕤\t# CJK COMPATIBILITY IDEOGRAPH-2F9AC\n2F9AD\t𦼬\t# CJK COMPATIBILITY IDEOGRAPH-2F9AD\n2F9AE\t䕝\t# CJK COMPATIBILITY IDEOGRAPH-2F9AE\n2F9AF\t䕡\t# CJK COMPATIBILITY IDEOGRAPH-2F9AF\n2F9B0\t𦾱\t# CJK COMPATIBILITY IDEOGRAPH-2F9B0\n2F9B1\t𧃒\t# CJK COMPATIBILITY IDEOGRAPH-2F9B1\n2F9B2\t䕫\t# CJK COMPATIBILITY IDEOGRAPH-2F9B2\n2F9B3\t虐\t# CJK COMPATIBILITY IDEOGRAPH-2F9B3\n2F9B4\t虜\t# CJK COMPATIBILITY IDEOGRAPH-2F9B4\n2F9B5\t虧\t# CJK COMPATIBILITY IDEOGRAPH-2F9B5\n2F9B6\t虩\t# CJK COMPATIBILITY IDEOGRAPH-2F9B6\n2F9B7\t蚩\t# CJK COMPATIBILITY IDEOGRAPH-2F9B7\n2F9B8\t蚈\t# CJK COMPATIBILITY IDEOGRAPH-2F9B8\n2F9B9\t蜎\t# CJK COMPATIBILITY IDEOGRAPH-2F9B9\n2F9BA\t蛢\t# CJK COMPATIBILITY IDEOGRAPH-2F9BA\n2F9BB\t蝹\t# CJK COMPATIBILITY IDEOGRAPH-2F9BB\n2F9BC\t蜨\t# CJK COMPATIBILITY IDEOGRAPH-2F9BC\n2F9BD\t蝫\t# CJK COMPATIBILITY IDEOGRAPH-2F9BD\n2F9BE\t螆\t# CJK COMPATIBILITY IDEOGRAPH-2F9BE\n2F9BF\t䗗\t# CJK COMPATIBILITY IDEOGRAPH-2F9BF\n2F9C0\t蟡\t# CJK COMPATIBILITY IDEOGRAPH-2F9C0\n2F9C1\t蠁\t# CJK COMPATIBILITY IDEOGRAPH-2F9C1\n2F9C2\t䗹\t# CJK COMPATIBILITY IDEOGRAPH-2F9C2\n2F9C3\t衠\t# CJK COMPATIBILITY IDEOGRAPH-2F9C3\n2F9C4\t衣\t# CJK COMPATIBILITY IDEOGRAPH-2F9C4\n2F9C5\t𧙧\t# CJK COMPATIBILITY IDEOGRAPH-2F9C5\n2F9C6\t裗\t# CJK COMPATIBILITY IDEOGRAPH-2F9C6\n2F9C7\t裞\t# CJK COMPATIBILITY IDEOGRAPH-2F9C7\n2F9C8\t䘵\t# CJK COMPATIBILITY IDEOGRAPH-2F9C8\n2F9C9\t裺\t# CJK COMPATIBILITY IDEOGRAPH-2F9C9\n2F9CA\t㒻\t# CJK COMPATIBILITY IDEOGRAPH-2F9CA\n2F9CB\t𧢮\t# CJK COMPATIBILITY IDEOGRAPH-2F9CB\n2F9CC\t𧥦\t# CJK COMPATIBILITY IDEOGRAPH-2F9CC\n2F9CD\t䚾\t# CJK COMPATIBILITY IDEOGRAPH-2F9CD\n2F9CE\t䛇\t# CJK COMPATIBILITY IDEOGRAPH-2F9CE\n2F9CF\t誠\t# CJK COMPATIBILITY IDEOGRAPH-2F9CF\n2F9D0\t諭\t# CJK COMPATIBILITY IDEOGRAPH-2F9D0\n2F9D1\t變\t# CJK COMPATIBILITY IDEOGRAPH-2F9D1\n2F9D2\t豕\t# CJK COMPATIBILITY IDEOGRAPH-2F9D2\n2F9D3\t𧲨\t# CJK COMPATIBILITY IDEOGRAPH-2F9D3\n2F9D4\t貫\t# CJK COMPATIBILITY IDEOGRAPH-2F9D4\n2F9D5\t賁\t# CJK COMPATIBILITY IDEOGRAPH-2F9D5\n2F9D6\t贛\t# CJK COMPATIBILITY IDEOGRAPH-2F9D6\n2F9D7\t起\t# CJK COMPATIBILITY IDEOGRAPH-2F9D7\n2F9D8\t𧼯\t# CJK COMPATIBILITY IDEOGRAPH-2F9D8\n2F9D9\t𠠄\t# CJK COMPATIBILITY IDEOGRAPH-2F9D9\n2F9DA\t跋\t# CJK COMPATIBILITY IDEOGRAPH-2F9DA\n2F9DB\t趼\t# CJK COMPATIBILITY IDEOGRAPH-2F9DB\n2F9DC\t跰\t# CJK COMPATIBILITY IDEOGRAPH-2F9DC\n2F9DD\t𠣞\t# CJK COMPATIBILITY IDEOGRAPH-2F9DD\n2F9DE\t軔\t# CJK COMPATIBILITY IDEOGRAPH-2F9DE\n2F9DF\t輸\t# CJK COMPATIBILITY IDEOGRAPH-2F9DF\n2F9E0\t𨗒\t# CJK COMPATIBILITY IDEOGRAPH-2F9E0\n2F9E1\t𨗭\t# CJK COMPATIBILITY IDEOGRAPH-2F9E1\n2F9E2\t邔\t# CJK COMPATIBILITY IDEOGRAPH-2F9E2\n2F9E3\t郱\t# CJK COMPATIBILITY IDEOGRAPH-2F9E3\n2F9E4\t鄑\t# CJK COMPATIBILITY IDEOGRAPH-2F9E4\n2F9E5\t𨜮\t# CJK COMPATIBILITY IDEOGRAPH-2F9E5\n2F9E6\t鄛\t# CJK COMPATIBILITY IDEOGRAPH-2F9E6\n2F9E7\t鈸\t# CJK COMPATIBILITY IDEOGRAPH-2F9E7\n2F9E8\t鋗\t# CJK COMPATIBILITY IDEOGRAPH-2F9E8\n2F9E9\t鋘\t# CJK COMPATIBILITY IDEOGRAPH-2F9E9\n2F9EA\t鉼\t# CJK COMPATIBILITY IDEOGRAPH-2F9EA\n2F9EB\t鏹\t# CJK COMPATIBILITY IDEOGRAPH-2F9EB\n2F9EC\t鐕\t# CJK COMPATIBILITY IDEOGRAPH-2F9EC\n2F9ED\t𨯺\t# CJK COMPATIBILITY IDEOGRAPH-2F9ED\n2F9EE\t開\t# CJK COMPATIBILITY IDEOGRAPH-2F9EE\n2F9EF\t䦕\t# CJK COMPATIBILITY IDEOGRAPH-2F9EF\n2F9F0\t閷\t# CJK COMPATIBILITY IDEOGRAPH-2F9F0\n2F9F1\t𨵷\t# CJK COMPATIBILITY IDEOGRAPH-2F9F1\n2F9F2\t䧦\t# CJK COMPATIBILITY IDEOGRAPH-2F9F2\n2F9F3\t雃\t# CJK COMPATIBILITY IDEOGRAPH-2F9F3\n2F9F4\t嶲\t# CJK COMPATIBILITY IDEOGRAPH-2F9F4\n2F9F5\t霣\t# CJK COMPATIBILITY IDEOGRAPH-2F9F5\n2F9F6\t𩅅\t# CJK COMPATIBILITY IDEOGRAPH-2F9F6\n2F9F7\t𩈚\t# CJK COMPATIBILITY IDEOGRAPH-2F9F7\n2F9F8\t䩮\t# CJK COMPATIBILITY IDEOGRAPH-2F9F8\n2F9F9\t䩶\t# CJK COMPATIBILITY IDEOGRAPH-2F9F9\n2F9FA\t韠\t# CJK COMPATIBILITY IDEOGRAPH-2F9FA\n2F9FB\t𩐊\t# CJK COMPATIBILITY IDEOGRAPH-2F9FB\n2F9FC\t䪲\t# CJK COMPATIBILITY IDEOGRAPH-2F9FC\n2F9FD\t𩒖\t# CJK COMPATIBILITY IDEOGRAPH-2F9FD\n2F9FE\t頋\t# CJK COMPATIBILITY IDEOGRAPH-2F9FE\n2F9FF\t頋\t# CJK COMPATIBILITY IDEOGRAPH-2F9FF\n2FA00\t頩\t# CJK COMPATIBILITY IDEOGRAPH-2FA00\n2FA01\t𩖶\t# CJK COMPATIBILITY IDEOGRAPH-2FA01\n2FA02\t飢\t# CJK COMPATIBILITY IDEOGRAPH-2FA02\n2FA03\t䬳\t# CJK COMPATIBILITY IDEOGRAPH-2FA03\n2FA04\t餩\t# CJK COMPATIBILITY IDEOGRAPH-2FA04\n2FA05\t馧\t# CJK COMPATIBILITY IDEOGRAPH-2FA05\n2FA06\t駂\t# CJK COMPATIBILITY IDEOGRAPH-2FA06\n2FA07\t駾\t# CJK COMPATIBILITY IDEOGRAPH-2FA07\n2FA08\t䯎\t# CJK COMPATIBILITY IDEOGRAPH-2FA08\n2FA09\t𩬰\t# CJK COMPATIBILITY IDEOGRAPH-2FA09\n2FA0A\t鬒\t# CJK COMPATIBILITY IDEOGRAPH-2FA0A\n2FA0B\t鱀\t# CJK COMPATIBILITY IDEOGRAPH-2FA0B\n2FA0C\t鳽\t# CJK COMPATIBILITY IDEOGRAPH-2FA0C\n2FA0D\t䳎\t# CJK COMPATIBILITY IDEOGRAPH-2FA0D\n2FA0E\t䳭\t# CJK COMPATIBILITY IDEOGRAPH-2FA0E\n2FA0F\t鵧\t# CJK COMPATIBILITY IDEOGRAPH-2FA0F\n2FA10\t𪃎\t# CJK COMPATIBILITY IDEOGRAPH-2FA10\n2FA11\t䳸\t# CJK COMPATIBILITY IDEOGRAPH-2FA11\n2FA12\t𪄅\t# CJK COMPATIBILITY IDEOGRAPH-2FA12\n2FA13\t𪈎\t# CJK COMPATIBILITY IDEOGRAPH-2FA13\n2FA14\t𪊑\t# CJK COMPATIBILITY IDEOGRAPH-2FA14\n2FA15\t麻\t# CJK COMPATIBILITY IDEOGRAPH-2FA15\n2FA16\t䵖\t# CJK COMPATIBILITY IDEOGRAPH-2FA16\n2FA17\t黹\t# CJK COMPATIBILITY IDEOGRAPH-2FA17\n2FA18\t黾\t# CJK COMPATIBILITY IDEOGRAPH-2FA18\n2FA19\t鼅\t# CJK COMPATIBILITY IDEOGRAPH-2FA19\n2FA1A\t鼏\t# CJK COMPATIBILITY IDEOGRAPH-2FA1A\n2FA1B\t鼖\t# CJK COMPATIBILITY IDEOGRAPH-2FA1B\n2FA1C\t鼻\t# CJK COMPATIBILITY IDEOGRAPH-2FA1C\n2FA1D\t𪘀\t# CJK COMPATIBILITY IDEOGRAPH-2FA1D\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/translit.h",
    "content": "/*\n * Copyright (C) 1999-2003 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * Transliteration table\n */\n\nstatic const unsigned int translit_data[9116] = {\n   1, ' ',\n   1, '!',\n   1, 'c',\n   2, 'l', 'b',\n   3, 'y', 'e', 'n',\n   1, '|',\n   2, 'S', 'S',\n   1, '\"',\n   3, '(', 'c', ')',\n   1, 'a',\n   2, '<', '<',\n   3, 'n', 'o', 't',\n   1, '-',\n   3, '(', 'R', ')',\n   2, '^', '0',\n   3, '+', '/', '-',\n   2, '^', '2',\n   2, '^', '3',\n   1,'\\'',\n   1, 'u',\n   1, 'P',\n   1, '.',\n   1, ',',\n   2, '^', '1',\n   1, 'o',\n   2, '>', '>',\n   5, ' ', '1',0x2044, '4', ' ',\n   5, ' ', '1',0x2044, '2', ' ',\n   5, ' ', '3',0x2044, '4', ' ',\n   1, '?',\n   2, '`', 'A',\n   2,0xB4, 'A',\n   2, '^', 'A',\n   2, '~', 'A',\n   2, '\"', 'A',\n   1, 'A',\n   2, 'A', 'E',\n   1, 'C',\n   2, '`', 'E',\n   2,0xB4, 'E',\n   2, '^', 'E',\n   2, '\"', 'E',\n   2, '`', 'I',\n   2,0xB4, 'I',\n   2, '^', 'I',\n   2, '\"', 'I',\n   1, 'D',\n   2, '~', 'N',\n   2, '`', 'O',\n   2,0xB4, 'O',\n   2, '^', 'O',\n   2, '~', 'O',\n   2, '\"', 'O',\n   1, 'x',\n   1, 'O',\n   2, '`', 'U',\n   2,0xB4, 'U',\n   2, '^', 'U',\n   2, '\"', 'U',\n   2,0xB4, 'Y',\n   2, 'T', 'h',\n   2, 's', 's',\n   2, '`', 'a',\n   2,0xB4, 'a',\n   2, '^', 'a',\n   2, '~', 'a',\n   2, '\"', 'a',\n   1, 'a',\n   2, 'a', 'e',\n   1, 'c',\n   2, '`', 'e',\n   2,0xB4, 'e',\n   2, '^', 'e',\n   2, '\"', 'e',\n   2, '`', 'i',\n   2,0xB4, 'i',\n   2, '^', 'i',\n   2, '\"', 'i',\n   1, 'd',\n   2, '~', 'n',\n   2, '`', 'o',\n   2,0xB4, 'o',\n   2, '^', 'o',\n   2, '~', 'o',\n   2, '\"', 'o',\n   1, ':',\n   1, 'o',\n   2, '`', 'u',\n   2,0xB4, 'u',\n   2, '^', 'u',\n   2, '\"', 'u',\n   2,0xB4, 'y',\n   2, 't', 'h',\n   2, '\"', 'y',\n   1, 'A',\n   1, 'a',\n   1, 'A',\n   1, 'a',\n   1, 'A',\n   1, 'a',\n   2,0xB4, 'C',\n   2,0xB4, 'c',\n   2, '^', 'C',\n   2, '^', 'c',\n   1, 'C',\n   1, 'c',\n   1, 'C',\n   1, 'c',\n   1, 'D',\n   1, 'd',\n   1, 'D',\n   1, 'd',\n   1, 'E',\n   1, 'e',\n   1, 'E',\n   1, 'e',\n   1, 'E',\n   1, 'e',\n   1, 'E',\n   1, 'e',\n   1, 'E',\n   1, 'e',\n   2, '^', 'G',\n   2, '^', 'g',\n   1, 'G',\n   1, 'g',\n   1, 'G',\n   1, 'g',\n   1, 'G',\n   1, 'g',\n   2, '^', 'H',\n   2, '^', 'h',\n   1, 'H',\n   1, 'h',\n   2, '~', 'I',\n   2, '~', 'i',\n   1, 'I',\n   1, 'i',\n   1, 'I',\n   1, 'i',\n   1, 'I',\n   1, 'i',\n   1, 'I',\n   1, 'i',\n   2, 'I', 'J',\n   2, 'i', 'j',\n   2, '^', 'J',\n   2, '^', 'j',\n   1, 'K',\n   1, 'k',\n   1, 'L',\n   1, 'l',\n   1, 'L',\n   1, 'l',\n   1, 'L',\n   1, 'l',\n   1, 'L',\n   1, 'l',\n   1, 'L',\n   1, 'l',\n   2,0xB4, 'N',\n   2,0xB4, 'n',\n   1, 'N',\n   1, 'n',\n   1, 'N',\n   1, 'n',\n   2,'\\'', 'n',\n   1, 'O',\n   1, 'o',\n   1, 'O',\n   1, 'o',\n   2, '\"', 'O',\n   2, '\"', 'o',\n   2, 'O', 'E',\n   2, 'o', 'e',\n   2,0xB4, 'R',\n   2,0xB4, 'r',\n   1, 'R',\n   1, 'r',\n   1, 'R',\n   1, 'r',\n   2,0xB4, 'S',\n   2,0xB4, 's',\n   2, '^', 'S',\n   2, '^', 's',\n   1, 'S',\n   1, 's',\n   1, 'S',\n   1, 's',\n   1, 'T',\n   1, 't',\n   1, 'T',\n   1, 't',\n   1, 'T',\n   1, 't',\n   2, '~', 'U',\n   2, '~', 'u',\n   1, 'U',\n   1, 'u',\n   1, 'U',\n   1, 'u',\n   1, 'U',\n   1, 'u',\n   2, '\"', 'U',\n   2, '\"', 'u',\n   1, 'U',\n   1, 'u',\n   2, '^', 'W',\n   2, '^', 'w',\n   2, '^', 'Y',\n   2, '^', 'y',\n   2, '\"', 'Y',\n   2,0xB4, 'Z',\n   2,0xB4, 'z',\n   1, 'Z',\n   1, 'z',\n   1, 'Z',\n   1, 'z',\n   1, 's',\n   1, 'f',\n   2, 'D',0x017D,\n   2, 'D',0x017E,\n   2, 'd',0x017E,\n   2, 'L', 'J',\n   2, 'L', 'j',\n   2, 'l', 'j',\n   2, 'N', 'J',\n   2, 'N', 'j',\n   2, 'n', 'j',\n   2, 'D', 'Z',\n   2, 'D', 'z',\n   2, 'd', 'z',\n   1, 'S',\n   1, 's',\n   1, 'T',\n   1, 't',\n   1,0x2032,\n   1,0x2033,\n   1,0x2018,\n   1,0x2019,\n   1,0x201B,\n   1, '^',\n   1,'\\'',\n   1,0xAF,\n   1,0xB4,\n   1, '`',\n   1, '_',\n   1, '~',\n   1, '\"',\n   1,0x03B2,\n   1,0x03B8,\n   1,0x03A5,\n   1,0x03C6,\n   1,0x03C0,\n   1,0x03BA,\n   1,0x03C1,\n   1,0x03C2,\n   1,0x0398,\n   1,0x03B5,\n   1,0x03A3,\n   2,0x0565,0x0582,\n   2,0x05D5,0x05D5,\n   2,0x05D5,0x05D9,\n   2,0x05D9,0x05D9,\n   2,0x0627,0x0674,\n   2,0x0648,0x0674,\n   2,0x06C7,0x0674,\n   2,0x064A,0x0674,\n   2,0x0E4D,0x0E32,\n   2,0x0ECD,0x0EB2,\n   2,0x0EAB,0x0E99,\n   2,0x0EAB,0x0EA1,\n   2,0x0FB2,0x0F81,\n   2,0x0FB3,0x0F81,\n   1, 'B',\n   1, 'b',\n   1, 'D',\n   1, 'd',\n   1, 'F',\n   1, 'f',\n   1, 'M',\n   1, 'm',\n   1, 'P',\n   1, 'p',\n   1, 'S',\n   1, 's',\n   1, 'T',\n   1, 't',\n   2, '`', 'W',\n   2, '`', 'w',\n   2,0xB4, 'W',\n   2,0xB4, 'w',\n   2, '\"', 'W',\n   2, '\"', 'w',\n   2, 'a',0x02BE,\n   2, '`', 'Y',\n   2, '`', 'y',\n   1, ' ',\n   1, ' ',\n   1, ' ',\n   1, ' ',\n   1, ' ',\n   1, ' ',\n   1, ' ',\n   1, ' ',\n   1, '-',\n   1, '-',\n   1, '-',\n   1, '-',\n   1, '-',\n   1, '-',\n   1,'\\'',\n   1,'\\'',\n   1, ',',\n   1,'\\'',\n   1, '\"',\n   1, '\"',\n   1, '\"',\n   1, '\"',\n   1, '+',\n   1, 'o',\n   1, '.',\n   2, '.', '.',\n   3, '.', '.', '.',\n   4, 'o', '/', 'o', 'o',\n   1,0xB4,\n   2,0xB4,0xB4,\n   3,0xB4,0xB4,0xB4,\n   2,0x2035,0x2035,\n   3,0x2035,0x2035,0x2035,\n   1, '<',\n   1, '>',\n   2, '!', '!',\n   1, '/',\n   2, '?', '?',\n   2, '?', '!',\n   2, '!', '?',\n   4,0xB4,0xB4,0xB4,0xB4,\n   2, 'R', 's',\n   4,0x0110,0x1ED3, 'n', 'g',\n   3, 'E', 'U', 'R',\n   3, 'a', '/', 'c',\n   3, 'a', '/', 's',\n   1, 'C',\n   2,0xB0, 'C',\n   3, 'c', '/', 'o',\n   3, 'c', '/', 'u',\n   1,0x0190,\n   2,0xB0, 'F',\n   1, 'g',\n   1, 'H',\n   1, 'H',\n   1, 'H',\n   1, 'h',\n   1,0x0127,\n   1, 'I',\n   1, 'I',\n   1, 'L',\n   1, 'l',\n   1, 'N',\n   2, 'N', 'o',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'R',\n   1, 'R',\n   3, 'T', 'E', 'L',\n   2, 'T', 'M',\n   1, 'Z',\n   3, 'O', 'h', 'm',\n   1, 'Z',\n   1, 'B',\n   1, 'C',\n   1, 'e',\n   1, 'e',\n   1, 'E',\n   1, 'F',\n   1, 'M',\n   1, 'o',\n   1,0x05D0,\n   1,0x05D1,\n   1,0x05D2,\n   1,0x05D3,\n   1, 'i',\n   3, 'F', 'A', 'X',\n   1,0x03B3,\n   1,0x0393,\n   1,0x03A0,\n   1,0x2211,\n   1, 'D',\n   1, 'd',\n   1, 'e',\n   1, 'i',\n   1, 'j',\n   5, ' ', '1',0x2044, '3', ' ',\n   5, ' ', '2',0x2044, '3', ' ',\n   5, ' ', '1',0x2044, '5', ' ',\n   5, ' ', '2',0x2044, '5', ' ',\n   5, ' ', '3',0x2044, '5', ' ',\n   5, ' ', '4',0x2044, '5', ' ',\n   5, ' ', '1',0x2044, '6', ' ',\n   5, ' ', '5',0x2044, '6', ' ',\n   5, ' ', '1',0x2044, '8', ' ',\n   5, ' ', '3',0x2044, '8', ' ',\n   5, ' ', '5',0x2044, '8', ' ',\n   5, ' ', '7',0x2044, '8', ' ',\n   3, ' ', '1',0x2044,\n   1, 'I',\n   2, 'I', 'I',\n   3, 'I', 'I', 'I',\n   2, 'I', 'V',\n   1, 'V',\n   2, 'V', 'I',\n   3, 'V', 'I', 'I',\n   4, 'V', 'I', 'I', 'I',\n   2, 'I', 'X',\n   1, 'X',\n   2, 'X', 'I',\n   3, 'X', 'I', 'I',\n   1, 'L',\n   1, 'C',\n   1, 'D',\n   1, 'M',\n   1, 'i',\n   2, 'i', 'i',\n   3, 'i', 'i', 'i',\n   2, 'i', 'v',\n   1, 'v',\n   2, 'v', 'i',\n   3, 'v', 'i', 'i',\n   4, 'v', 'i', 'i', 'i',\n   2, 'i', 'x',\n   1, 'x',\n   2, 'x', 'i',\n   3, 'x', 'i', 'i',\n   1, 'l',\n   1, 'c',\n   1, 'd',\n   1, 'm',\n   2, '<', '-',\n   1, '^',\n   2, '-', '>',\n   1, 'V',\n   3, '<', '-', '>',\n   2, '<', '=',\n   2, '=', '>',\n   3, '<', '=', '>',\n   1, '-',\n   1, '/',\n   1,'\\\\',\n   1, '*',\n   1,0x2022,\n   1, '|',\n   2,0x222B,0x222B,\n   3,0x222B,0x222B,0x222B,\n   2,0x222E,0x222E,\n   3,0x222E,0x222E,0x222E,\n   1, ':',\n   1, '~',\n   2, '/', '=',\n   2, '<', '=',\n   2, '>', '=',\n   2, '<', '<',\n   2, '>', '>',\n   1,0xB7,\n   3, '<', '<', '<',\n   3, '>', '>', '>',\n   3,0xB7,0xB7,0xB7,\n   5, '[', 'N', 'U', 'L', ']',\n   5, '[', 'S', 'O', 'H', ']',\n   5, '[', 'S', 'T', 'X', ']',\n   5, '[', 'E', 'T', 'X', ']',\n   5, '[', 'E', 'O', 'T', ']',\n   5, '[', 'E', 'N', 'Q', ']',\n   5, '[', 'A', 'C', 'K', ']',\n   5, '[', 'B', 'E', 'L', ']',\n   4, '[', 'B', 'S', ']',\n   4, '[', 'H', 'T', ']',\n   4, '[', 'L', 'F', ']',\n   4, '[', 'V', 'T', ']',\n   4, '[', 'F', 'F', ']',\n   4, '[', 'C', 'R', ']',\n   4, '[', 'S', 'O', ']',\n   4, '[', 'S', 'I', ']',\n   5, '[', 'D', 'L', 'E', ']',\n   5, '[', 'D', 'C', '1', ']',\n   5, '[', 'D', 'C', '2', ']',\n   5, '[', 'D', 'C', '3', ']',\n   5, '[', 'D', 'C', '4', ']',\n   5, '[', 'N', 'A', 'K', ']',\n   5, '[', 'S', 'Y', 'N', ']',\n   5, '[', 'E', 'T', 'B', ']',\n   5, '[', 'C', 'A', 'N', ']',\n   4, '[', 'E', 'M', ']',\n   5, '[', 'S', 'U', 'B', ']',\n   5, '[', 'E', 'S', 'C', ']',\n   4, '[', 'F', 'S', ']',\n   4, '[', 'G', 'S', ']',\n   4, '[', 'R', 'S', ']',\n   4, '[', 'U', 'S', ']',\n   4, '[', 'S', 'P', ']',\n   5, '[', 'D', 'E', 'L', ']',\n   4, '[', 'N', 'L', ']',\n   3, '(', '1', ')',\n   3, '(', '2', ')',\n   3, '(', '3', ')',\n   3, '(', '4', ')',\n   3, '(', '5', ')',\n   3, '(', '6', ')',\n   3, '(', '7', ')',\n   3, '(', '8', ')',\n   3, '(', '9', ')',\n   4, '(', '1', '0', ')',\n   4, '(', '1', '1', ')',\n   4, '(', '1', '2', ')',\n   4, '(', '1', '3', ')',\n   4, '(', '1', '4', ')',\n   4, '(', '1', '5', ')',\n   4, '(', '1', '6', ')',\n   4, '(', '1', '7', ')',\n   4, '(', '1', '8', ')',\n   4, '(', '1', '9', ')',\n   4, '(', '2', '0', ')',\n   3, '(', '1', ')',\n   3, '(', '2', ')',\n   3, '(', '3', ')',\n   3, '(', '4', ')',\n   3, '(', '5', ')',\n   3, '(', '6', ')',\n   3, '(', '7', ')',\n   3, '(', '8', ')',\n   3, '(', '9', ')',\n   4, '(', '1', '0', ')',\n   4, '(', '1', '1', ')',\n   4, '(', '1', '2', ')',\n   4, '(', '1', '3', ')',\n   4, '(', '1', '4', ')',\n   4, '(', '1', '5', ')',\n   4, '(', '1', '6', ')',\n   4, '(', '1', '7', ')',\n   4, '(', '1', '8', ')',\n   4, '(', '1', '9', ')',\n   4, '(', '2', '0', ')',\n   2, '1', '.',\n   2, '2', '.',\n   2, '3', '.',\n   2, '4', '.',\n   2, '5', '.',\n   2, '6', '.',\n   2, '7', '.',\n   2, '8', '.',\n   2, '9', '.',\n   3, '1', '0', '.',\n   3, '1', '1', '.',\n   3, '1', '2', '.',\n   3, '1', '3', '.',\n   3, '1', '4', '.',\n   3, '1', '5', '.',\n   3, '1', '6', '.',\n   3, '1', '7', '.',\n   3, '1', '8', '.',\n   3, '1', '9', '.',\n   3, '2', '0', '.',\n   3, '(', 'a', ')',\n   3, '(', 'b', ')',\n   3, '(', 'c', ')',\n   3, '(', 'd', ')',\n   3, '(', 'e', ')',\n   3, '(', 'f', ')',\n   3, '(', 'g', ')',\n   3, '(', 'h', ')',\n   3, '(', 'i', ')',\n   3, '(', 'j', ')',\n   3, '(', 'k', ')',\n   3, '(', 'l', ')',\n   3, '(', 'm', ')',\n   3, '(', 'n', ')',\n   3, '(', 'o', ')',\n   3, '(', 'p', ')',\n   3, '(', 'q', ')',\n   3, '(', 'r', ')',\n   3, '(', 's', ')',\n   3, '(', 't', ')',\n   3, '(', 'u', ')',\n   3, '(', 'v', ')',\n   3, '(', 'w', ')',\n   3, '(', 'x', ')',\n   3, '(', 'y', ')',\n   3, '(', 'z', ')',\n   3, '(', 'A', ')',\n   3, '(', 'B', ')',\n   3, '(', 'C', ')',\n   3, '(', 'D', ')',\n   3, '(', 'E', ')',\n   3, '(', 'F', ')',\n   3, '(', 'G', ')',\n   3, '(', 'H', ')',\n   3, '(', 'I', ')',\n   3, '(', 'J', ')',\n   3, '(', 'K', ')',\n   3, '(', 'L', ')',\n   3, '(', 'M', ')',\n   3, '(', 'N', ')',\n   3, '(', 'O', ')',\n   3, '(', 'P', ')',\n   3, '(', 'Q', ')',\n   3, '(', 'R', ')',\n   3, '(', 'S', ')',\n   3, '(', 'T', ')',\n   3, '(', 'U', ')',\n   3, '(', 'V', ')',\n   3, '(', 'W', ')',\n   3, '(', 'X', ')',\n   3, '(', 'Y', ')',\n   3, '(', 'Z', ')',\n   3, '(', 'a', ')',\n   3, '(', 'b', ')',\n   3, '(', 'c', ')',\n   3, '(', 'd', ')',\n   3, '(', 'e', ')',\n   3, '(', 'f', ')',\n   3, '(', 'g', ')',\n   3, '(', 'h', ')',\n   3, '(', 'i', ')',\n   3, '(', 'j', ')',\n   3, '(', 'k', ')',\n   3, '(', 'l', ')',\n   3, '(', 'm', ')',\n   3, '(', 'n', ')',\n   3, '(', 'o', ')',\n   3, '(', 'p', ')',\n   3, '(', 'q', ')',\n   3, '(', 'r', ')',\n   3, '(', 's', ')',\n   3, '(', 't', ')',\n   3, '(', 'u', ')',\n   3, '(', 'v', ')',\n   3, '(', 'w', ')',\n   3, '(', 'x', ')',\n   3, '(', 'y', ')',\n   3, '(', 'z', ')',\n   3, '(', '0', ')',\n   1, '-',\n   1, '|',\n   1, '+',\n   1, '+',\n   1, '+',\n   1, '+',\n   1, '+',\n   1, '+',\n   1, '+',\n   1, '+',\n   1, '+',\n   1, 'o',\n   4,0x222B,0x222B,0x222B,0x222B,\n   3, ':', ':', '=',\n   2, '=', '=',\n   3, '=', '=', '=',\n   1,0x6BCD,\n   1,0x9F9F,\n   1,0x4E00,\n   1,0x4E28,\n   1,0x4E36,\n   1,0x4E3F,\n   1,0x4E59,\n   1,0x4E85,\n   1,0x4E8C,\n   1,0x4EA0,\n   1,0x4EBA,\n   1,0x513F,\n   1,0x5165,\n   1,0x516B,\n   1,0x5182,\n   1,0x5196,\n   1,0x51AB,\n   1,0x51E0,\n   1,0x51F5,\n   1,0x5200,\n   1,0x529B,\n   1,0x52F9,\n   1,0x5315,\n   1,0x531A,\n   1,0x5338,\n   1,0x5341,\n   1,0x535C,\n   1,0x5369,\n   1,0x5382,\n   1,0x53B6,\n   1,0x53C8,\n   1,0x53E3,\n   1,0x56D7,\n   1,0x571F,\n   1,0x58EB,\n   1,0x5902,\n   1,0x590A,\n   1,0x5915,\n   1,0x5927,\n   1,0x5973,\n   1,0x5B50,\n   1,0x5B80,\n   1,0x5BF8,\n   1,0x5C0F,\n   1,0x5C22,\n   1,0x5C38,\n   1,0x5C6E,\n   1,0x5C71,\n   1,0x5DDB,\n   1,0x5DE5,\n   1,0x5DF1,\n   1,0x5DFE,\n   1,0x5E72,\n   1,0x5E7A,\n   1,0x5E7F,\n   1,0x5EF4,\n   1,0x5EFE,\n   1,0x5F0B,\n   1,0x5F13,\n   1,0x5F50,\n   1,0x5F61,\n   1,0x5F73,\n   1,0x5FC3,\n   1,0x6208,\n   1,0x6236,\n   1,0x624B,\n   1,0x652F,\n   1,0x6534,\n   1,0x6587,\n   1,0x6597,\n   1,0x65A4,\n   1,0x65B9,\n   1,0x65E0,\n   1,0x65E5,\n   1,0x66F0,\n   1,0x6708,\n   1,0x6728,\n   1,0x6B20,\n   1,0x6B62,\n   1,0x6B79,\n   1,0x6BB3,\n   1,0x6BCB,\n   1,0x6BD4,\n   1,0x6BDB,\n   1,0x6C0F,\n   1,0x6C14,\n   1,0x6C34,\n   1,0x706B,\n   1,0x722A,\n   1,0x7236,\n   1,0x723B,\n   1,0x723F,\n   1,0x7247,\n   1,0x7259,\n   1,0x725B,\n   1,0x72AC,\n   1,0x7384,\n   1,0x7389,\n   1,0x74DC,\n   1,0x74E6,\n   1,0x7518,\n   1,0x751F,\n   1,0x7528,\n   1,0x7530,\n   1,0x758B,\n   1,0x7592,\n   1,0x7676,\n   1,0x767D,\n   1,0x76AE,\n   1,0x76BF,\n   1,0x76EE,\n   1,0x77DB,\n   1,0x77E2,\n   1,0x77F3,\n   1,0x793A,\n   1,0x79B8,\n   1,0x79BE,\n   1,0x7A74,\n   1,0x7ACB,\n   1,0x7AF9,\n   1,0x7C73,\n   1,0x7CF8,\n   1,0x7F36,\n   1,0x7F51,\n   1,0x7F8A,\n   1,0x7FBD,\n   1,0x8001,\n   1,0x800C,\n   1,0x8012,\n   1,0x8033,\n   1,0x807F,\n   1,0x8089,\n   1,0x81E3,\n   1,0x81EA,\n   1,0x81F3,\n   1,0x81FC,\n   1,0x820C,\n   1,0x821B,\n   1,0x821F,\n   1,0x826E,\n   1,0x8272,\n   1,0x8278,\n   1,0x864D,\n   1,0x866B,\n   1,0x8840,\n   1,0x884C,\n   1,0x8863,\n   1,0x897E,\n   1,0x898B,\n   1,0x89D2,\n   1,0x8A00,\n   1,0x8C37,\n   1,0x8C46,\n   1,0x8C55,\n   1,0x8C78,\n   1,0x8C9D,\n   1,0x8D64,\n   1,0x8D70,\n   1,0x8DB3,\n   1,0x8EAB,\n   1,0x8ECA,\n   1,0x8F9B,\n   1,0x8FB0,\n   1,0x8FB5,\n   1,0x9091,\n   1,0x9149,\n   1,0x91C6,\n   1,0x91CC,\n   1,0x91D1,\n   1,0x9577,\n   1,0x9580,\n   1,0x961C,\n   1,0x96B6,\n   1,0x96B9,\n   1,0x96E8,\n   1,0x9751,\n   1,0x975E,\n   1,0x9762,\n   1,0x9769,\n   1,0x97CB,\n   1,0x97ED,\n   1,0x97F3,\n   1,0x9801,\n   1,0x98A8,\n   1,0x98DB,\n   1,0x98DF,\n   1,0x9996,\n   1,0x9999,\n   1,0x99AC,\n   1,0x9AA8,\n   1,0x9AD8,\n   1,0x9ADF,\n   1,0x9B25,\n   1,0x9B2F,\n   1,0x9B32,\n   1,0x9B3C,\n   1,0x9B5A,\n   1,0x9CE5,\n   1,0x9E75,\n   1,0x9E7F,\n   1,0x9EA5,\n   1,0x9EBB,\n   1,0x9EC3,\n   1,0x9ECD,\n   1,0x9ED1,\n   1,0x9EF9,\n   1,0x9EFD,\n   1,0x9F0E,\n   1,0x9F13,\n   1,0x9F20,\n   1,0x9F3B,\n   1,0x9F4A,\n   1,0x9F52,\n   1,0x9F8D,\n   1,0x9F9C,\n   1,0x9FA0,\n   1, ' ',\n   1,0x3012,\n   1,0x5341,\n   1,0x5344,\n   1,0x5345,\n   1,0x3042,\n   1,0x3044,\n   1,0x3046,\n   1,0x3048,\n   1,0x304A,\n   1,0x3064,\n   1,0x3084,\n   1,0x3086,\n   1,0x3088,\n   1,0x308F,\n   1,0x304B,\n   1,0x3051,\n   2, ' ',0x3099,\n   2, ' ',0x309A,\n   1, '=',\n   1,0x30A2,\n   1,0x30A4,\n   1,0x30A6,\n   1,0x30A8,\n   1,0x30AA,\n   1,0x30C4,\n   1,0x30E4,\n   1,0x30E6,\n   1,0x30E8,\n   1,0x30EF,\n   1,0x30AB,\n   1,0x30B1,\n   1,0x1100,\n   1,0x1101,\n   1,0x11AA,\n   1,0x1102,\n   1,0x11AC,\n   1,0x11AD,\n   1,0x1103,\n   1,0x1104,\n   1,0x1105,\n   1,0x11B0,\n   1,0x11B1,\n   1,0x11B2,\n   1,0x11B3,\n   1,0x11B4,\n   1,0x11B5,\n   1,0x111A,\n   1,0x1106,\n   1,0x1107,\n   1,0x1108,\n   1,0x1121,\n   1,0x1109,\n   1,0x110A,\n   1,0x110B,\n   1,0x110C,\n   1,0x110D,\n   1,0x110E,\n   1,0x110F,\n   1,0x1110,\n   1,0x1111,\n   1,0x1112,\n   1,0x1161,\n   1,0x1162,\n   1,0x1163,\n   1,0x1164,\n   1,0x1165,\n   1,0x1166,\n   1,0x1167,\n   1,0x1168,\n   1,0x1169,\n   1,0x116A,\n   1,0x116B,\n   1,0x116C,\n   1,0x116D,\n   1,0x116E,\n   1,0x116F,\n   1,0x1170,\n   1,0x1171,\n   1,0x1172,\n   1,0x1173,\n   1,0x1174,\n   1,0x1175,\n   1,0x1160,\n   1,0x1114,\n   1,0x1115,\n   1,0x11C7,\n   1,0x11C8,\n   1,0x11CC,\n   1,0x11CE,\n   1,0x11D3,\n   1,0x11D7,\n   1,0x11D9,\n   1,0x111C,\n   1,0x11DD,\n   1,0x11DF,\n   1,0x111D,\n   1,0x111E,\n   1,0x1120,\n   1,0x1122,\n   1,0x1123,\n   1,0x1127,\n   1,0x1129,\n   1,0x112B,\n   1,0x112C,\n   1,0x112D,\n   1,0x112E,\n   1,0x112F,\n   1,0x1132,\n   1,0x1136,\n   1,0x1140,\n   1,0x1147,\n   1,0x114C,\n   1,0x11F1,\n   1,0x11F2,\n   1,0x1157,\n   1,0x1158,\n   1,0x1159,\n   1,0x1184,\n   1,0x1185,\n   1,0x1188,\n   1,0x1191,\n   1,0x1192,\n   1,0x1194,\n   1,0x119E,\n   1,0x11A1,\n   1,0x30AF,\n   1,0x30B7,\n   1,0x30B9,\n   1,0x30C8,\n   1,0x30CC,\n   1,0x30CF,\n   1,0x30D2,\n   1,0x30D5,\n   1,0x30D8,\n   1,0x30DB,\n   1,0x30E0,\n   1,0x30E9,\n   1,0x30EA,\n   1,0x30EB,\n   1,0x30EC,\n   1,0x30ED,\n   3, '(',0x1100, ')',\n   3, '(',0x1102, ')',\n   3, '(',0x1103, ')',\n   3, '(',0x1105, ')',\n   3, '(',0x1106, ')',\n   3, '(',0x1107, ')',\n   3, '(',0x1109, ')',\n   3, '(',0x110B, ')',\n   3, '(',0x110C, ')',\n   3, '(',0x110E, ')',\n   3, '(',0x110F, ')',\n   3, '(',0x1110, ')',\n   3, '(',0x1111, ')',\n   3, '(',0x1112, ')',\n   4, '(',0x1100,0x1161, ')',\n   4, '(',0x1102,0x1161, ')',\n   4, '(',0x1103,0x1161, ')',\n   4, '(',0x1105,0x1161, ')',\n   4, '(',0x1106,0x1161, ')',\n   4, '(',0x1107,0x1161, ')',\n   4, '(',0x1109,0x1161, ')',\n   4, '(',0x110B,0x1161, ')',\n   4, '(',0x110C,0x1161, ')',\n   4, '(',0x110E,0x1161, ')',\n   4, '(',0x110F,0x1161, ')',\n   4, '(',0x1110,0x1161, ')',\n   4, '(',0x1111,0x1161, ')',\n   4, '(',0x1112,0x1161, ')',\n   4, '(',0x110C,0x116E, ')',\n   7, '(',0x110B,0x1169,0x110C,0x1165,0x11AB, ')',\n   6, '(',0x110B,0x1169,0x1112,0x116E, ')',\n   3, '(',0x4E00, ')',\n   3, '(',0x4E8C, ')',\n   3, '(',0x4E09, ')',\n   3, '(',0x56DB, ')',\n   3, '(',0x4E94, ')',\n   3, '(',0x516D, ')',\n   3, '(',0x4E03, ')',\n   3, '(',0x516B, ')',\n   3, '(',0x4E5D, ')',\n   3, '(',0x5341, ')',\n   3, '(',0x6708, ')',\n   3, '(',0x706B, ')',\n   3, '(',0x6C34, ')',\n   3, '(',0x6728, ')',\n   3, '(',0x91D1, ')',\n   3, '(',0x571F, ')',\n   3, '(',0x65E5, ')',\n   3, '(',0x682A, ')',\n   3, '(',0x6709, ')',\n   3, '(',0x793E, ')',\n   3, '(',0x540D, ')',\n   3, '(',0x7279, ')',\n   3, '(',0x8CA1, ')',\n   3, '(',0x795D, ')',\n   3, '(',0x52B4, ')',\n   3, '(',0x4EE3, ')',\n   3, '(',0x547C, ')',\n   3, '(',0x5B66, ')',\n   3, '(',0x76E3, ')',\n   3, '(',0x4F01, ')',\n   3, '(',0x8CC7, ')',\n   3, '(',0x5354, ')',\n   3, '(',0x796D, ')',\n   3, '(',0x4F11, ')',\n   3, '(',0x81EA, ')',\n   3, '(',0x81F3, ')',\n   3, 'P', 'T', 'E',\n   4, '(', '2', '1', ')',\n   4, '(', '2', '2', ')',\n   4, '(', '2', '3', ')',\n   4, '(', '2', '4', ')',\n   4, '(', '2', '5', ')',\n   4, '(', '2', '6', ')',\n   4, '(', '2', '7', ')',\n   4, '(', '2', '8', ')',\n   4, '(', '2', '9', ')',\n   4, '(', '3', '0', ')',\n   4, '(', '3', '1', ')',\n   4, '(', '3', '2', ')',\n   4, '(', '3', '3', ')',\n   4, '(', '3', '4', ')',\n   4, '(', '3', '5', ')',\n   3, '(',0x1100, ')',\n   3, '(',0x1102, ')',\n   3, '(',0x1103, ')',\n   3, '(',0x1105, ')',\n   3, '(',0x1106, ')',\n   3, '(',0x1107, ')',\n   3, '(',0x1109, ')',\n   3, '(',0x110B, ')',\n   3, '(',0x110C, ')',\n   3, '(',0x110E, ')',\n   3, '(',0x110F, ')',\n   3, '(',0x1110, ')',\n   3, '(',0x1111, ')',\n   3, '(',0x1112, ')',\n   4, '(',0x1100,0x1161, ')',\n   4, '(',0x1102,0x1161, ')',\n   4, '(',0x1103,0x1161, ')',\n   4, '(',0x1105,0x1161, ')',\n   4, '(',0x1106,0x1161, ')',\n   4, '(',0x1107,0x1161, ')',\n   4, '(',0x1109,0x1161, ')',\n   4, '(',0x110B,0x1161, ')',\n   4, '(',0x110C,0x1161, ')',\n   4, '(',0x110E,0x1161, ')',\n   4, '(',0x110F,0x1161, ')',\n   4, '(',0x1110,0x1161, ')',\n   4, '(',0x1111,0x1161, ')',\n   4, '(',0x1112,0x1161, ')',\n   7, '(',0x110E,0x1161,0x11B7,0x1100,0x1169, ')',\n   6, '(',0x110C,0x116E,0x110B,0x1174, ')',\n   3, '(',0x4E00, ')',\n   3, '(',0x4E8C, ')',\n   3, '(',0x4E09, ')',\n   3, '(',0x56DB, ')',\n   3, '(',0x4E94, ')',\n   3, '(',0x516D, ')',\n   3, '(',0x4E03, ')',\n   3, '(',0x516B, ')',\n   3, '(',0x4E5D, ')',\n   3, '(',0x5341, ')',\n   3, '(',0x6708, ')',\n   3, '(',0x706B, ')',\n   3, '(',0x6C34, ')',\n   3, '(',0x6728, ')',\n   3, '(',0x91D1, ')',\n   3, '(',0x571F, ')',\n   3, '(',0x65E5, ')',\n   3, '(',0x682A, ')',\n   3, '(',0x6709, ')',\n   3, '(',0x793E, ')',\n   3, '(',0x540D, ')',\n   3, '(',0x7279, ')',\n   3, '(',0x8CA1, ')',\n   3, '(',0x795D, ')',\n   3, '(',0x52B4, ')',\n   3, '(',0x79D8, ')',\n   3, '(',0x7537, ')',\n   3, '(',0x5973, ')',\n   3, '(',0x9069, ')',\n   3, '(',0x512A, ')',\n   3, '(',0x5370, ')',\n   3, '(',0x6CE8, ')',\n   3, '(',0x9805, ')',\n   3, '(',0x4F11, ')',\n   3, '(',0x5199, ')',\n   3, '(',0x6B63, ')',\n   3, '(',0x4E0A, ')',\n   3, '(',0x4E2D, ')',\n   3, '(',0x4E0B, ')',\n   3, '(',0x5DE6, ')',\n   3, '(',0x53F3, ')',\n   3, '(',0x533B, ')',\n   3, '(',0x5B97, ')',\n   3, '(',0x5B66, ')',\n   3, '(',0x76E3, ')',\n   3, '(',0x4F01, ')',\n   3, '(',0x8CC7, ')',\n   3, '(',0x5354, ')',\n   3, '(',0x591C, ')',\n   4, '(', '3', '6', ')',\n   4, '(', '3', '7', ')',\n   4, '(', '3', '8', ')',\n   4, '(', '3', '9', ')',\n   4, '(', '4', '0', ')',\n   4, '(', '4', '1', ')',\n   4, '(', '4', '2', ')',\n   4, '(', '4', '3', ')',\n   4, '(', '4', '4', ')',\n   4, '(', '4', '5', ')',\n   4, '(', '4', '6', ')',\n   4, '(', '4', '7', ')',\n   4, '(', '4', '8', ')',\n   4, '(', '4', '9', ')',\n   4, '(', '5', '0', ')',\n   2, '1',0x6708,\n   2, '2',0x6708,\n   2, '3',0x6708,\n   2, '4',0x6708,\n   2, '5',0x6708,\n   2, '6',0x6708,\n   2, '7',0x6708,\n   2, '8',0x6708,\n   2, '9',0x6708,\n   3, '1', '0',0x6708,\n   3, '1', '1',0x6708,\n   3, '1', '2',0x6708,\n   2, 'H', 'g',\n   3, 'e', 'r', 'g',\n   2, 'e', 'V',\n   3, 'L', 'T', 'D',\n   3, '(',0x30A2, ')',\n   3, '(',0x30A4, ')',\n   3, '(',0x30A6, ')',\n   3, '(',0x30A8, ')',\n   3, '(',0x30AA, ')',\n   3, '(',0x30AB, ')',\n   3, '(',0x30AD, ')',\n   3, '(',0x30AF, ')',\n   3, '(',0x30B1, ')',\n   3, '(',0x30B3, ')',\n   3, '(',0x30B5, ')',\n   3, '(',0x30B7, ')',\n   3, '(',0x30B9, ')',\n   3, '(',0x30BB, ')',\n   3, '(',0x30BD, ')',\n   3, '(',0x30BF, ')',\n   3, '(',0x30C1, ')',\n   3, '(',0x30C4, ')',\n   3, '(',0x30C6, ')',\n   3, '(',0x30C8, ')',\n   3, '(',0x30CA, ')',\n   3, '(',0x30CB, ')',\n   3, '(',0x30CC, ')',\n   3, '(',0x30CD, ')',\n   3, '(',0x30CE, ')',\n   3, '(',0x30CF, ')',\n   3, '(',0x30D2, ')',\n   3, '(',0x30D5, ')',\n   3, '(',0x30D8, ')',\n   3, '(',0x30DB, ')',\n   3, '(',0x30DE, ')',\n   3, '(',0x30DF, ')',\n   3, '(',0x30E0, ')',\n   3, '(',0x30E1, ')',\n   3, '(',0x30E2, ')',\n   3, '(',0x30E4, ')',\n   3, '(',0x30E6, ')',\n   3, '(',0x30E8, ')',\n   3, '(',0x30E9, ')',\n   3, '(',0x30EA, ')',\n   3, '(',0x30EB, ')',\n   3, '(',0x30EC, ')',\n   3, '(',0x30ED, ')',\n   3, '(',0x30EF, ')',\n   3, '(',0x30F0, ')',\n   3, '(',0x30F1, ')',\n   3, '(',0x30F2, ')',\n   4,0x30A2,0x30D1,0x30FC,0x30C8,\n   4,0x30A2,0x30EB,0x30D5,0x30A1,\n   4,0x30A2,0x30F3,0x30DA,0x30A2,\n   3,0x30A2,0x30FC,0x30EB,\n   4,0x30A4,0x30CB,0x30F3,0x30B0,\n   3,0x30A4,0x30F3,0x30C1,\n   3,0x30A6,0x30A9,0x30F3,\n   5,0x30A8,0x30B9,0x30AF,0x30FC,0x30C9,\n   4,0x30A8,0x30FC,0x30AB,0x30FC,\n   3,0x30AA,0x30F3,0x30B9,\n   3,0x30AA,0x30FC,0x30E0,\n   3,0x30AB,0x30A4,0x30EA,\n   4,0x30AB,0x30E9,0x30C3,0x30C8,\n   4,0x30AB,0x30ED,0x30EA,0x30FC,\n   3,0x30AC,0x30ED,0x30F3,\n   3,0x30AC,0x30F3,0x30DE,\n   2,0x30AE,0x30AC,\n   3,0x30AE,0x30CB,0x30FC,\n   4,0x30AD,0x30E5,0x30EA,0x30FC,\n   4,0x30AE,0x30EB,0x30C0,0x30FC,\n   2,0x30AD,0x30ED,\n   5,0x30AD,0x30ED,0x30B0,0x30E9,0x30E0,\n   6,0x30AD,0x30ED,0x30E1,0x30FC,0x30C8,0x30EB,\n   5,0x30AD,0x30ED,0x30EF,0x30C3,0x30C8,\n   3,0x30B0,0x30E9,0x30E0,\n   5,0x30B0,0x30E9,0x30E0,0x30C8,0x30F3,\n   5,0x30AF,0x30EB,0x30BC,0x30A4,0x30ED,\n   4,0x30AF,0x30ED,0x30FC,0x30CD,\n   3,0x30B1,0x30FC,0x30B9,\n   3,0x30B3,0x30EB,0x30CA,\n   3,0x30B3,0x30FC,0x30DD,\n   4,0x30B5,0x30A4,0x30AF,0x30EB,\n   5,0x30B5,0x30F3,0x30C1,0x30FC,0x30E0,\n   4,0x30B7,0x30EA,0x30F3,0x30B0,\n   3,0x30BB,0x30F3,0x30C1,\n   3,0x30BB,0x30F3,0x30C8,\n   3,0x30C0,0x30FC,0x30B9,\n   2,0x30C7,0x30B7,\n   2,0x30C9,0x30EB,\n   2,0x30C8,0x30F3,\n   2,0x30CA,0x30CE,\n   3,0x30CE,0x30C3,0x30C8,\n   3,0x30CF,0x30A4,0x30C4,\n   5,0x30D1,0x30FC,0x30BB,0x30F3,0x30C8,\n   3,0x30D1,0x30FC,0x30C4,\n   4,0x30D0,0x30FC,0x30EC,0x30EB,\n   5,0x30D4,0x30A2,0x30B9,0x30C8,0x30EB,\n   3,0x30D4,0x30AF,0x30EB,\n   2,0x30D4,0x30B3,\n   2,0x30D3,0x30EB,\n   5,0x30D5,0x30A1,0x30E9,0x30C3,0x30C9,\n   4,0x30D5,0x30A3,0x30FC,0x30C8,\n   5,0x30D6,0x30C3,0x30B7,0x30A7,0x30EB,\n   3,0x30D5,0x30E9,0x30F3,\n   5,0x30D8,0x30AF,0x30BF,0x30FC,0x30EB,\n   2,0x30DA,0x30BD,\n   3,0x30DA,0x30CB,0x30D2,\n   3,0x30D8,0x30EB,0x30C4,\n   3,0x30DA,0x30F3,0x30B9,\n   3,0x30DA,0x30FC,0x30B8,\n   3,0x30D9,0x30FC,0x30BF,\n   4,0x30DD,0x30A4,0x30F3,0x30C8,\n   3,0x30DC,0x30EB,0x30C8,\n   2,0x30DB,0x30F3,\n   3,0x30DD,0x30F3,0x30C9,\n   3,0x30DB,0x30FC,0x30EB,\n   3,0x30DB,0x30FC,0x30F3,\n   4,0x30DE,0x30A4,0x30AF,0x30ED,\n   3,0x30DE,0x30A4,0x30EB,\n   3,0x30DE,0x30C3,0x30CF,\n   3,0x30DE,0x30EB,0x30AF,\n   5,0x30DE,0x30F3,0x30B7,0x30E7,0x30F3,\n   4,0x30DF,0x30AF,0x30ED,0x30F3,\n   2,0x30DF,0x30EA,\n   5,0x30DF,0x30EA,0x30D0,0x30FC,0x30EB,\n   2,0x30E1,0x30AC,\n   4,0x30E1,0x30AC,0x30C8,0x30F3,\n   4,0x30E1,0x30FC,0x30C8,0x30EB,\n   3,0x30E4,0x30FC,0x30C9,\n   3,0x30E4,0x30FC,0x30EB,\n   3,0x30E6,0x30A2,0x30F3,\n   4,0x30EA,0x30C3,0x30C8,0x30EB,\n   2,0x30EA,0x30E9,\n   3,0x30EB,0x30D4,0x30FC,\n   4,0x30EB,0x30FC,0x30D6,0x30EB,\n   2,0x30EC,0x30E0,\n   5,0x30EC,0x30F3,0x30C8,0x30B2,0x30F3,\n   3,0x30EF,0x30C3,0x30C8,\n   2, '0',0x70B9,\n   2, '1',0x70B9,\n   2, '2',0x70B9,\n   2, '3',0x70B9,\n   2, '4',0x70B9,\n   2, '5',0x70B9,\n   2, '6',0x70B9,\n   2, '7',0x70B9,\n   2, '8',0x70B9,\n   2, '9',0x70B9,\n   3, '1', '0',0x70B9,\n   3, '1', '1',0x70B9,\n   3, '1', '2',0x70B9,\n   3, '1', '3',0x70B9,\n   3, '1', '4',0x70B9,\n   3, '1', '5',0x70B9,\n   3, '1', '6',0x70B9,\n   3, '1', '7',0x70B9,\n   3, '1', '8',0x70B9,\n   3, '1', '9',0x70B9,\n   3, '2', '0',0x70B9,\n   3, '2', '1',0x70B9,\n   3, '2', '2',0x70B9,\n   3, '2', '3',0x70B9,\n   3, '2', '4',0x70B9,\n   3, 'h', 'P', 'a',\n   2, 'd', 'a',\n   2, 'A', 'U',\n   3, 'b', 'a', 'r',\n   2, 'o', 'V',\n   2, 'p', 'c',\n   2, 'd', 'm',\n   4, 'd', 'm', '^', '2',\n   4, 'd', 'm', '^', '3',\n   2, 'I', 'U',\n   2,0x5E73,0x6210,\n   2,0x662D,0x548C,\n   2,0x5927,0x6B63,\n   2,0x660E,0x6CBB,\n   4,0x682A,0x5F0F,0x4F1A,0x793E,\n   2, 'p', 'A',\n   2, 'n', 'A',\n   2,0x03BC, 'A',\n   2, 'm', 'A',\n   2, 'k', 'A',\n   2, 'K', 'B',\n   2, 'M', 'B',\n   2, 'G', 'B',\n   3, 'c', 'a', 'l',\n   4, 'k', 'c', 'a', 'l',\n   2, 'p', 'F',\n   2, 'n', 'F',\n   2,0x03BC, 'F',\n   2,0x03BC, 'g',\n   2, 'm', 'g',\n   2, 'k', 'g',\n   2, 'H', 'z',\n   3, 'k', 'H', 'z',\n   3, 'M', 'H', 'z',\n   3, 'G', 'H', 'z',\n   3, 'T', 'H', 'z',\n   2,0x03BC, 'l',\n   2, 'm', 'l',\n   2, 'd', 'l',\n   2, 'k', 'l',\n   2, 'f', 'm',\n   2, 'n', 'm',\n   2,0x03BC, 'm',\n   2, 'm', 'm',\n   2, 'c', 'm',\n   2, 'k', 'm',\n   4, 'm', 'm', '^', '2',\n   4, 'c', 'm', '^', '2',\n   3, 'm', '^', '2',\n   4, 'k', 'm', '^', '2',\n   4, 'm', 'm', '^', '3',\n   4, 'c', 'm', '^', '3',\n   3, 'm', '^', '3',\n   4, 'k', 'm', '^', '3',\n   3, 'm', '/', 's',\n   5, 'm', '/', 's', '^', '2',\n   2, 'P', 'a',\n   3, 'k', 'P', 'a',\n   3, 'M', 'P', 'a',\n   3, 'G', 'P', 'a',\n   3, 'r', 'a', 'd',\n   5, 'r', 'a', 'd', '/', 's',\n   7, 'r', 'a', 'd', '/', 's', '^', '2',\n   2, 'p', 's',\n   2, 'n', 's',\n   2,0x03BC, 's',\n   2, 'm', 's',\n   2, 'p', 'V',\n   2, 'n', 'V',\n   2,0x03BC, 'V',\n   2, 'm', 'V',\n   2, 'k', 'V',\n   2, 'M', 'V',\n   2, 'p', 'W',\n   2, 'n', 'W',\n   2,0x03BC, 'W',\n   2, 'm', 'W',\n   2, 'k', 'W',\n   2, 'M', 'W',\n   2, 'k',0x03A9,\n   2, 'M',0x03A9,\n   4, 'a', '.', 'm', '.',\n   2, 'B', 'q',\n   2, 'c', 'c',\n   2, 'c', 'd',\n   4, 'C', '/', 'k', 'g',\n   3, 'C', 'o', '.',\n   2, 'd', 'B',\n   2, 'G', 'y',\n   2, 'h', 'a',\n   2, 'H', 'P',\n   2, 'i', 'n',\n   2, 'K', 'K',\n   2, 'K', 'M',\n   2, 'k', 't',\n   2, 'l', 'm',\n   2, 'l', 'n',\n   3, 'l', 'o', 'g',\n   2, 'l', 'x',\n   2, 'm', 'b',\n   3, 'm', 'i', 'l',\n   3, 'm', 'o', 'l',\n   2, 'P', 'H',\n   4, 'p', '.', 'm', '.',\n   3, 'P', 'P', 'M',\n   2, 'P', 'R',\n   2, 's', 'r',\n   2, 'S', 'v',\n   2, 'W', 'b',\n   3, 'V', '/', 'm',\n   3, 'A', '/', 'm',\n   3, 'g', 'a', 'l',\n   2, '1',0x65E5,\n   2, '2',0x65E5,\n   2, '3',0x65E5,\n   2, '4',0x65E5,\n   2, '5',0x65E5,\n   2, '6',0x65E5,\n   2, '7',0x65E5,\n   2, '8',0x65E5,\n   2, '9',0x65E5,\n   3, '1', '0',0x65E5,\n   3, '1', '1',0x65E5,\n   3, '1', '2',0x65E5,\n   3, '1', '3',0x65E5,\n   3, '1', '4',0x65E5,\n   3, '1', '5',0x65E5,\n   3, '1', '6',0x65E5,\n   3, '1', '7',0x65E5,\n   3, '1', '8',0x65E5,\n   3, '1', '9',0x65E5,\n   3, '2', '0',0x65E5,\n   3, '2', '1',0x65E5,\n   3, '2', '2',0x65E5,\n   3, '2', '3',0x65E5,\n   3, '2', '4',0x65E5,\n   3, '2', '5',0x65E5,\n   3, '2', '6',0x65E5,\n   3, '2', '7',0x65E5,\n   3, '2', '8',0x65E5,\n   3, '2', '9',0x65E5,\n   3, '3', '0',0x65E5,\n   3, '3', '1',0x65E5,\n   1,0x8C48,\n   1,0x66F4,\n   1,0x8ECA,\n   1,0x8CC8,\n   1,0x6ED1,\n   1,0x4E32,\n   1,0x53E5,\n   1,0x9F9C,\n   1,0x9F9C,\n   1,0x5951,\n   1,0x91D1,\n   1,0x5587,\n   1,0x5948,\n   1,0x61F6,\n   1,0x7669,\n   1,0x7F85,\n   1,0x863F,\n   1,0x87BA,\n   1,0x88F8,\n   1,0x908F,\n   1,0x6A02,\n   1,0x6D1B,\n   1,0x70D9,\n   1,0x73DE,\n   1,0x843D,\n   1,0x916A,\n   1,0x99F1,\n   1,0x4E82,\n   1,0x5375,\n   1,0x6B04,\n   1,0x721B,\n   1,0x862D,\n   1,0x9E1E,\n   1,0x5D50,\n   1,0x6FEB,\n   1,0x85CD,\n   1,0x8964,\n   1,0x62C9,\n   1,0x81D8,\n   1,0x881F,\n   1,0x5ECA,\n   1,0x6717,\n   1,0x6D6A,\n   1,0x72FC,\n   1,0x90CE,\n   1,0x4F86,\n   1,0x51B7,\n   1,0x52DE,\n   1,0x64C4,\n   1,0x6AD3,\n   1,0x7210,\n   1,0x76E7,\n   1,0x8001,\n   1,0x8606,\n   1,0x865C,\n   1,0x8DEF,\n   1,0x9732,\n   1,0x9B6F,\n   1,0x9DFA,\n   1,0x788C,\n   1,0x797F,\n   1,0x7DA0,\n   1,0x83C9,\n   1,0x9304,\n   1,0x9E7F,\n   1,0x8AD6,\n   1,0x58DF,\n   1,0x5F04,\n   1,0x7C60,\n   1,0x807E,\n   1,0x7262,\n   1,0x78CA,\n   1,0x8CC2,\n   1,0x96F7,\n   1,0x58D8,\n   1,0x5C62,\n   1,0x6A13,\n   1,0x6DDA,\n   1,0x6F0F,\n   1,0x7D2F,\n   1,0x7E37,\n   1,0x964B,\n   1,0x52D2,\n   1,0x808B,\n   1,0x51DC,\n   1,0x51CC,\n   1,0x7A1C,\n   1,0x7DBE,\n   1,0x83F1,\n   1,0x9675,\n   1,0x8B80,\n   1,0x62CF,\n   1,0x6A02,\n   1,0x8AFE,\n   1,0x4E39,\n   1,0x5BE7,\n   1,0x6012,\n   1,0x7387,\n   1,0x7570,\n   1,0x5317,\n   1,0x78FB,\n   1,0x4FBF,\n   1,0x5FA9,\n   1,0x4E0D,\n   1,0x6CCC,\n   1,0x6578,\n   1,0x7D22,\n   1,0x53C3,\n   1,0x585E,\n   1,0x7701,\n   1,0x8449,\n   1,0x8AAA,\n   1,0x6BBA,\n   1,0x8FB0,\n   1,0x6C88,\n   1,0x62FE,\n   1,0x82E5,\n   1,0x63A0,\n   1,0x7565,\n   1,0x4EAE,\n   1,0x5169,\n   1,0x51C9,\n   1,0x6881,\n   1,0x7CE7,\n   1,0x826F,\n   1,0x8AD2,\n   1,0x91CF,\n   1,0x52F5,\n   1,0x5442,\n   1,0x5973,\n   1,0x5EEC,\n   1,0x65C5,\n   1,0x6FFE,\n   1,0x792A,\n   1,0x95AD,\n   1,0x9A6A,\n   1,0x9E97,\n   1,0x9ECE,\n   1,0x529B,\n   1,0x66C6,\n   1,0x6B77,\n   1,0x8F62,\n   1,0x5E74,\n   1,0x6190,\n   1,0x6200,\n   1,0x649A,\n   1,0x6F23,\n   1,0x7149,\n   1,0x7489,\n   1,0x79CA,\n   1,0x7DF4,\n   1,0x806F,\n   1,0x8F26,\n   1,0x84EE,\n   1,0x9023,\n   1,0x934A,\n   1,0x5217,\n   1,0x52A3,\n   1,0x54BD,\n   1,0x70C8,\n   1,0x88C2,\n   1,0x8AAA,\n   1,0x5EC9,\n   1,0x5FF5,\n   1,0x637B,\n   1,0x6BAE,\n   1,0x7C3E,\n   1,0x7375,\n   1,0x4EE4,\n   1,0x56F9,\n   1,0x5BE7,\n   1,0x5DBA,\n   1,0x601C,\n   1,0x73B2,\n   1,0x7469,\n   1,0x7F9A,\n   1,0x8046,\n   1,0x9234,\n   1,0x96F6,\n   1,0x9748,\n   1,0x9818,\n   1,0x4F8B,\n   1,0x79AE,\n   1,0x91B4,\n   1,0x96B8,\n   1,0x60E1,\n   1,0x4E86,\n   1,0x50DA,\n   1,0x5BEE,\n   1,0x5C3F,\n   1,0x6599,\n   1,0x6A02,\n   1,0x71CE,\n   1,0x7642,\n   1,0x84FC,\n   1,0x907C,\n   1,0x9F8D,\n   1,0x6688,\n   1,0x962E,\n   1,0x5289,\n   1,0x677B,\n   1,0x67F3,\n   1,0x6D41,\n   1,0x6E9C,\n   1,0x7409,\n   1,0x7559,\n   1,0x786B,\n   1,0x7D10,\n   1,0x985E,\n   1,0x516D,\n   1,0x622E,\n   1,0x9678,\n   1,0x502B,\n   1,0x5D19,\n   1,0x6DEA,\n   1,0x8F2A,\n   1,0x5F8B,\n   1,0x6144,\n   1,0x6817,\n   1,0x7387,\n   1,0x9686,\n   1,0x5229,\n   1,0x540F,\n   1,0x5C65,\n   1,0x6613,\n   1,0x674E,\n   1,0x68A8,\n   1,0x6CE5,\n   1,0x7406,\n   1,0x75E2,\n   1,0x7F79,\n   1,0x88CF,\n   1,0x88E1,\n   1,0x91CC,\n   1,0x96E2,\n   1,0x533F,\n   1,0x6EBA,\n   1,0x541D,\n   1,0x71D0,\n   1,0x7498,\n   1,0x85FA,\n   1,0x96A3,\n   1,0x9C57,\n   1,0x9E9F,\n   1,0x6797,\n   1,0x6DCB,\n   1,0x81E8,\n   1,0x7ACB,\n   1,0x7B20,\n   1,0x7C92,\n   1,0x72C0,\n   1,0x7099,\n   1,0x8B58,\n   1,0x4EC0,\n   1,0x8336,\n   1,0x523A,\n   1,0x5207,\n   1,0x5EA6,\n   1,0x62D3,\n   1,0x7CD6,\n   1,0x5B85,\n   1,0x6D1E,\n   1,0x66B4,\n   1,0x8F3B,\n   1,0x884C,\n   1,0x964D,\n   1,0x898B,\n   1,0x5ED3,\n   1,0x5140,\n   1,0x55C0,\n   1,0x585A,\n   1,0x6674,\n   1,0x51DE,\n   1,0x732A,\n   1,0x76CA,\n   1,0x793C,\n   1,0x795E,\n   1,0x7965,\n   1,0x798F,\n   1,0x9756,\n   1,0x7CBE,\n   1,0x7FBD,\n   1,0x8612,\n   1,0x8AF8,\n   1,0x9038,\n   1,0x90FD,\n   1,0x98EF,\n   1,0x98FC,\n   1,0x9928,\n   1,0x9DB4,\n   1,0x4FAE,\n   1,0x50E7,\n   1,0x514D,\n   1,0x52C9,\n   1,0x52E4,\n   1,0x5351,\n   1,0x559D,\n   1,0x5606,\n   1,0x5668,\n   1,0x5840,\n   1,0x58A8,\n   1,0x5C64,\n   1,0x5C6E,\n   1,0x6094,\n   1,0x6168,\n   1,0x618E,\n   1,0x61F2,\n   1,0x654F,\n   1,0x65E2,\n   1,0x6691,\n   1,0x6885,\n   1,0x6D77,\n   1,0x6E1A,\n   1,0x6F22,\n   1,0x716E,\n   1,0x722B,\n   1,0x7422,\n   1,0x7891,\n   1,0x793E,\n   1,0x7949,\n   1,0x7948,\n   1,0x7950,\n   1,0x7956,\n   1,0x795D,\n   1,0x798D,\n   1,0x798E,\n   1,0x7A40,\n   1,0x7A81,\n   1,0x7BC0,\n   1,0x7DF4,\n   1,0x7E09,\n   1,0x7E41,\n   1,0x7F72,\n   1,0x8005,\n   1,0x81ED,\n   1,0x8279,\n   1,0x8279,\n   1,0x8457,\n   1,0x8910,\n   1,0x8996,\n   1,0x8B01,\n   1,0x8B39,\n   1,0x8CD3,\n   1,0x8D08,\n   1,0x8FB6,\n   1,0x9038,\n   1,0x96E3,\n   1,0x97FF,\n   1,0x983B,\n   2, 'f', 'f',\n   2, 'f', 'i',\n   2, 'f', 'l',\n   3, 'f', 'f', 'i',\n   3, 'f', 'f', 'l',\n   2,0x017F, 't',\n   2, 's', 't',\n   2,0x0574,0x0576,\n   2,0x0574,0x0565,\n   2,0x0574,0x056B,\n   2,0x057E,0x0576,\n   2,0x0574,0x056D,\n   1,0x05E2,\n   1,0x05D0,\n   1,0x05D3,\n   1,0x05D4,\n   1,0x05DB,\n   1,0x05DC,\n   1,0x05DD,\n   1,0x05E8,\n   1,0x05EA,\n   1, '+',\n   2,0x05D0,0x05DC,\n   1,0x203E,\n   1,0x203E,\n   1,0x203E,\n   1,0x203E,\n   1, '_',\n   1, '_',\n   1, '_',\n   1, ',',\n   1,0x3001,\n   1, '.',\n   1, ';',\n   1, ':',\n   1, '?',\n   1, '!',\n   1,0x2014,\n   1, '(',\n   1, ')',\n   1, '{',\n   1, '}',\n   1,0x3014,\n   1,0x3015,\n   1, '#',\n   1, '&',\n   1, '*',\n   1, '+',\n   1, '-',\n   1, '<',\n   1, '>',\n   1, '=',\n   1,'\\\\',\n   1, '$',\n   1, '%',\n   1, '@',\n   1, '!',\n   1, '\"',\n   1, '#',\n   1, '$',\n   1, '%',\n   1, '&',\n   1,'\\'',\n   1, '(',\n   1, ')',\n   1, '*',\n   1, '+',\n   1, ',',\n   1, '-',\n   1, '.',\n   1, '/',\n   1, '0',\n   1, '1',\n   1, '2',\n   1, '3',\n   1, '4',\n   1, '5',\n   1, '6',\n   1, '7',\n   1, '8',\n   1, '9',\n   1, ':',\n   1, ';',\n   1, '<',\n   1, '=',\n   1, '>',\n   1, '?',\n   1, '@',\n   1, 'A',\n   1, 'B',\n   1, 'C',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'H',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, '[',\n   1,'\\\\',\n   1, ']',\n   1, '^',\n   1, '_',\n   1, '`',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, '{',\n   1, '|',\n   1, '}',\n   1, '~',\n   1,0x2985,\n   1,0x2986,\n   1,0x3002,\n   1,0x300C,\n   1,0x300D,\n   1,0x3001,\n   1,0x30FB,\n   1,0x30F2,\n   1,0x30A1,\n   1,0x30A3,\n   1,0x30A5,\n   1,0x30A7,\n   1,0x30A9,\n   1,0x30E3,\n   1,0x30E5,\n   1,0x30E7,\n   1,0x30C3,\n   1,0x30FC,\n   1,0x30A2,\n   1,0x30A4,\n   1,0x30A6,\n   1,0x30A8,\n   1,0x30AA,\n   1,0x30AB,\n   1,0x30AD,\n   1,0x30AF,\n   1,0x30B1,\n   1,0x30B3,\n   1,0x30B5,\n   1,0x30B7,\n   1,0x30B9,\n   1,0x30BB,\n   1,0x30BD,\n   1,0x30BF,\n   1,0x30C1,\n   1,0x30C4,\n   1,0x30C6,\n   1,0x30C8,\n   1,0x30CA,\n   1,0x30CB,\n   1,0x30CC,\n   1,0x30CD,\n   1,0x30CE,\n   1,0x30CF,\n   1,0x30D2,\n   1,0x30D5,\n   1,0x30D8,\n   1,0x30DB,\n   1,0x30DE,\n   1,0x30DF,\n   1,0x30E0,\n   1,0x30E1,\n   1,0x30E2,\n   1,0x30E4,\n   1,0x30E6,\n   1,0x30E8,\n   1,0x30E9,\n   1,0x30EA,\n   1,0x30EB,\n   1,0x30EC,\n   1,0x30ED,\n   1,0x30EF,\n   1,0x30F3,\n   1,0x3099,\n   1,0x309A,\n   1,0x3164,\n   1,0x3131,\n   1,0x3132,\n   1,0x3133,\n   1,0x3134,\n   1,0x3135,\n   1,0x3136,\n   1,0x3137,\n   1,0x3138,\n   1,0x3139,\n   1,0x313A,\n   1,0x313B,\n   1,0x313C,\n   1,0x313D,\n   1,0x313E,\n   1,0x313F,\n   1,0x3140,\n   1,0x3141,\n   1,0x3142,\n   1,0x3143,\n   1,0x3144,\n   1,0x3145,\n   1,0x3146,\n   1,0x3147,\n   1,0x3148,\n   1,0x3149,\n   1,0x314A,\n   1,0x314B,\n   1,0x314C,\n   1,0x314D,\n   1,0x314E,\n   1,0x314F,\n   1,0x3150,\n   1,0x3151,\n   1,0x3152,\n   1,0x3153,\n   1,0x3154,\n   1,0x3155,\n   1,0x3156,\n   1,0x3157,\n   1,0x3158,\n   1,0x3159,\n   1,0x315A,\n   1,0x315B,\n   1,0x315C,\n   1,0x315D,\n   1,0x315E,\n   1,0x315F,\n   1,0x3160,\n   1,0x3161,\n   1,0x3162,\n   1,0x3163,\n   1,0xA2,\n   1,0xA3,\n   1,0xAC,\n   1,0xAF,\n   1,0xA6,\n   1,0xA5,\n   1,0x20A9,\n   1,0x2502,\n   1,0x2190,\n   1,0x2191,\n   1,0x2192,\n   1,0x2193,\n   1,0x25A0,\n   1,0x25CB,\n   1, 'A',\n   1, 'B',\n   1, 'C',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'H',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'B',\n   1, 'C',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'H',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'B',\n   1, 'C',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'H',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'C',\n   1, 'D',\n   1, 'G',\n   1, 'J',\n   1, 'K',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'f',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'B',\n   1, 'C',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'H',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'B',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'B',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'O',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'B',\n   1, 'C',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'H',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'B',\n   1, 'C',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'H',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'B',\n   1, 'C',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'H',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'B',\n   1, 'C',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'H',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'B',\n   1, 'C',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'H',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1, 'A',\n   1, 'B',\n   1, 'C',\n   1, 'D',\n   1, 'E',\n   1, 'F',\n   1, 'G',\n   1, 'H',\n   1, 'I',\n   1, 'J',\n   1, 'K',\n   1, 'L',\n   1, 'M',\n   1, 'N',\n   1, 'O',\n   1, 'P',\n   1, 'Q',\n   1, 'R',\n   1, 'S',\n   1, 'T',\n   1, 'U',\n   1, 'V',\n   1, 'W',\n   1, 'X',\n   1, 'Y',\n   1, 'Z',\n   1, 'a',\n   1, 'b',\n   1, 'c',\n   1, 'd',\n   1, 'e',\n   1, 'f',\n   1, 'g',\n   1, 'h',\n   1, 'i',\n   1, 'j',\n   1, 'k',\n   1, 'l',\n   1, 'm',\n   1, 'n',\n   1, 'o',\n   1, 'p',\n   1, 'q',\n   1, 'r',\n   1, 's',\n   1, 't',\n   1, 'u',\n   1, 'v',\n   1, 'w',\n   1, 'x',\n   1, 'y',\n   1, 'z',\n   1,0x0391,\n   1,0x0392,\n   1,0x0393,\n   1,0x0394,\n   1,0x0395,\n   1,0x0396,\n   1,0x0397,\n   1,0x0398,\n   1,0x0399,\n   1,0x039A,\n   1,0x039B,\n   1,0x039C,\n   1,0x039D,\n   1,0x039E,\n   1,0x039F,\n   1,0x03A0,\n   1,0x03A1,\n   1,0x03F4,\n   1,0x03A3,\n   1,0x03A4,\n   1,0x03A5,\n   1,0x03A6,\n   1,0x03A7,\n   1,0x03A8,\n   1,0x03A9,\n   1,0x2207,\n   1,0x03B1,\n   1,0x03B2,\n   1,0x03B3,\n   1,0x03B4,\n   1,0x03B5,\n   1,0x03B6,\n   1,0x03B7,\n   1,0x03B8,\n   1,0x03B9,\n   1,0x03BA,\n   1,0x03BB,\n   1,0x03BC,\n   1,0x03BD,\n   1,0x03BE,\n   1,0x03BF,\n   1,0x03C0,\n   1,0x03C1,\n   1,0x03C2,\n   1,0x03C3,\n   1,0x03C4,\n   1,0x03C5,\n   1,0x03C6,\n   1,0x03C7,\n   1,0x03C8,\n   1,0x03C9,\n   1,0x2202,\n   1,0x03F5,\n   1,0x03D1,\n   1,0x03F0,\n   1,0x03D5,\n   1,0x03F1,\n   1,0x03D6,\n   1,0x0391,\n   1,0x0392,\n   1,0x0393,\n   1,0x0394,\n   1,0x0395,\n   1,0x0396,\n   1,0x0397,\n   1,0x0398,\n   1,0x0399,\n   1,0x039A,\n   1,0x039B,\n   1,0x039C,\n   1,0x039D,\n   1,0x039E,\n   1,0x039F,\n   1,0x03A0,\n   1,0x03A1,\n   1,0x03F4,\n   1,0x03A3,\n   1,0x03A4,\n   1,0x03A5,\n   1,0x03A6,\n   1,0x03A7,\n   1,0x03A8,\n   1,0x03A9,\n   1,0x2207,\n   1,0x03B1,\n   1,0x03B2,\n   1,0x03B3,\n   1,0x03B4,\n   1,0x03B5,\n   1,0x03B6,\n   1,0x03B7,\n   1,0x03B8,\n   1,0x03B9,\n   1,0x03BA,\n   1,0x03BB,\n   1,0x03BC,\n   1,0x03BD,\n   1,0x03BE,\n   1,0x03BF,\n   1,0x03C0,\n   1,0x03C1,\n   1,0x03C2,\n   1,0x03C3,\n   1,0x03C4,\n   1,0x03C5,\n   1,0x03C6,\n   1,0x03C7,\n   1,0x03C8,\n   1,0x03C9,\n   1,0x2202,\n   1,0x03F5,\n   1,0x03D1,\n   1,0x03F0,\n   1,0x03D5,\n   1,0x03F1,\n   1,0x03D6,\n   1,0x0391,\n   1,0x0392,\n   1,0x0393,\n   1,0x0394,\n   1,0x0395,\n   1,0x0396,\n   1,0x0397,\n   1,0x0398,\n   1,0x0399,\n   1,0x039A,\n   1,0x039B,\n   1,0x039C,\n   1,0x039D,\n   1,0x039E,\n   1,0x039F,\n   1,0x03A0,\n   1,0x03A1,\n   1,0x03F4,\n   1,0x03A3,\n   1,0x03A4,\n   1,0x03A5,\n   1,0x03A6,\n   1,0x03A7,\n   1,0x03A8,\n   1,0x03A9,\n   1,0x2207,\n   1,0x03B1,\n   1,0x03B2,\n   1,0x03B3,\n   1,0x03B4,\n   1,0x03B5,\n   1,0x03B6,\n   1,0x03B7,\n   1,0x03B8,\n   1,0x03B9,\n   1,0x03BA,\n   1,0x03BB,\n   1,0x03BC,\n   1,0x03BD,\n   1,0x03BE,\n   1,0x03BF,\n   1,0x03C0,\n   1,0x03C1,\n   1,0x03C2,\n   1,0x03C3,\n   1,0x03C4,\n   1,0x03C5,\n   1,0x03C6,\n   1,0x03C7,\n   1,0x03C8,\n   1,0x03C9,\n   1,0x2202,\n   1,0x03F5,\n   1,0x03D1,\n   1,0x03F0,\n   1,0x03D5,\n   1,0x03F1,\n   1,0x03D6,\n   1,0x0391,\n   1,0x0392,\n   1,0x0393,\n   1,0x0394,\n   1,0x0395,\n   1,0x0396,\n   1,0x0397,\n   1,0x0398,\n   1,0x0399,\n   1,0x039A,\n   1,0x039B,\n   1,0x039C,\n   1,0x039D,\n   1,0x039E,\n   1,0x039F,\n   1,0x03A0,\n   1,0x03A1,\n   1,0x03F4,\n   1,0x03A3,\n   1,0x03A4,\n   1,0x03A5,\n   1,0x03A6,\n   1,0x03A7,\n   1,0x03A8,\n   1,0x03A9,\n   1,0x2207,\n   1,0x03B1,\n   1,0x03B2,\n   1,0x03B3,\n   1,0x03B4,\n   1,0x03B5,\n   1,0x03B6,\n   1,0x03B7,\n   1,0x03B8,\n   1,0x03B9,\n   1,0x03BA,\n   1,0x03BB,\n   1,0x03BC,\n   1,0x03BD,\n   1,0x03BE,\n   1,0x03BF,\n   1,0x03C0,\n   1,0x03C1,\n   1,0x03C2,\n   1,0x03C3,\n   1,0x03C4,\n   1,0x03C5,\n   1,0x03C6,\n   1,0x03C7,\n   1,0x03C8,\n   1,0x03C9,\n   1,0x2202,\n   1,0x03F5,\n   1,0x03D1,\n   1,0x03F0,\n   1,0x03D5,\n   1,0x03F1,\n   1,0x03D6,\n   1,0x0391,\n   1,0x0392,\n   1,0x0393,\n   1,0x0394,\n   1,0x0395,\n   1,0x0396,\n   1,0x0397,\n   1,0x0398,\n   1,0x0399,\n   1,0x039A,\n   1,0x039B,\n   1,0x039C,\n   1,0x039D,\n   1,0x039E,\n   1,0x039F,\n   1,0x03A0,\n   1,0x03A1,\n   1,0x03F4,\n   1,0x03A3,\n   1,0x03A4,\n   1,0x03A5,\n   1,0x03A6,\n   1,0x03A7,\n   1,0x03A8,\n   1,0x03A9,\n   1,0x2207,\n   1,0x03B1,\n   1,0x03B2,\n   1,0x03B3,\n   1,0x03B4,\n   1,0x03B5,\n   1,0x03B6,\n   1,0x03B7,\n   1,0x03B8,\n   1,0x03B9,\n   1,0x03BA,\n   1,0x03BB,\n   1,0x03BC,\n   1,0x03BD,\n   1,0x03BE,\n   1,0x03BF,\n   1,0x03C0,\n   1,0x03C1,\n   1,0x03C2,\n   1,0x03C3,\n   1,0x03C4,\n   1,0x03C5,\n   1,0x03C6,\n   1,0x03C7,\n   1,0x03C8,\n   1,0x03C9,\n   1,0x2202,\n   1,0x03F5,\n   1,0x03D1,\n   1,0x03F0,\n   1,0x03D5,\n   1,0x03F1,\n   1,0x03D6,\n   1, '0',\n   1, '1',\n   1, '2',\n   1, '3',\n   1, '4',\n   1, '5',\n   1, '6',\n   1, '7',\n   1, '8',\n   1, '9',\n   1, '0',\n   1, '1',\n   1, '2',\n   1, '3',\n   1, '4',\n   1, '5',\n   1, '6',\n   1, '7',\n   1, '8',\n   1, '9',\n   1, '0',\n   1, '1',\n   1, '2',\n   1, '3',\n   1, '4',\n   1, '5',\n   1, '6',\n   1, '7',\n   1, '8',\n   1, '9',\n   1, '0',\n   1, '1',\n   1, '2',\n   1, '3',\n   1, '4',\n   1, '5',\n   1, '6',\n   1, '7',\n   1, '8',\n   1, '9',\n   1, '0',\n   1, '1',\n   1, '2',\n   1, '3',\n   1, '4',\n   1, '5',\n   1, '6',\n   1, '7',\n   1, '8',\n   1, '9',\n   1,0x4E3D,\n   1,0x4E38,\n   1,0x4E41,\n   1,0x20122,\n   1,0x4F60,\n   1,0x4FAE,\n   1,0x4FBB,\n   1,0x5002,\n   1,0x507A,\n   1,0x5099,\n   1,0x50E7,\n   1,0x50CF,\n   1,0x349E,\n   1,0x2063A,\n   1,0x514D,\n   1,0x5154,\n   1,0x5164,\n   1,0x5177,\n   1,0x2051C,\n   1,0x34B9,\n   1,0x5167,\n   1,0x518D,\n   1,0x2054B,\n   1,0x5197,\n   1,0x51A4,\n   1,0x4ECC,\n   1,0x51AC,\n   1,0x51B5,\n   1,0x291DF,\n   1,0x51F5,\n   1,0x5203,\n   1,0x34DF,\n   1,0x523B,\n   1,0x5246,\n   1,0x5272,\n   1,0x5277,\n   1,0x3515,\n   1,0x52C7,\n   1,0x52C9,\n   1,0x52E4,\n   1,0x52FA,\n   1,0x5305,\n   1,0x5306,\n   1,0x5317,\n   1,0x5349,\n   1,0x5351,\n   1,0x535A,\n   1,0x5373,\n   1,0x537D,\n   1,0x537F,\n   1,0x537F,\n   1,0x537F,\n   1,0x20A2C,\n   1,0x7070,\n   1,0x53CA,\n   1,0x53DF,\n   1,0x20B63,\n   1,0x53EB,\n   1,0x53F1,\n   1,0x5406,\n   1,0x549E,\n   1,0x5438,\n   1,0x5448,\n   1,0x5468,\n   1,0x54A2,\n   1,0x54F6,\n   1,0x5510,\n   1,0x5553,\n   1,0x5563,\n   1,0x5584,\n   1,0x5584,\n   1,0x5599,\n   1,0x55AB,\n   1,0x55B3,\n   1,0x55C2,\n   1,0x5716,\n   1,0x5606,\n   1,0x5717,\n   1,0x5651,\n   1,0x5674,\n   1,0x5207,\n   1,0x58EE,\n   1,0x57CE,\n   1,0x57F4,\n   1,0x580D,\n   1,0x578B,\n   1,0x5832,\n   1,0x5831,\n   1,0x58AC,\n   1,0x214E4,\n   1,0x58F2,\n   1,0x58F7,\n   1,0x5906,\n   1,0x591A,\n   1,0x5922,\n   1,0x5962,\n   1,0x216A8,\n   1,0x216EA,\n   1,0x59EC,\n   1,0x5A1B,\n   1,0x5A27,\n   1,0x59D8,\n   1,0x5A66,\n   1,0x36EE,\n   1,0x36FC,\n   1,0x5B08,\n   1,0x5B3E,\n   1,0x5B3E,\n   1,0x219C8,\n   1,0x5BC3,\n   1,0x5BD8,\n   1,0x5BE7,\n   1,0x5BF3,\n   1,0x21B18,\n   1,0x5BFF,\n   1,0x5C06,\n   1,0x5F53,\n   1,0x5C22,\n   1,0x3781,\n   1,0x5C60,\n   1,0x5C6E,\n   1,0x5CC0,\n   1,0x5C8D,\n   1,0x21DE4,\n   1,0x5D43,\n   1,0x21DE6,\n   1,0x5D6E,\n   1,0x5D6B,\n   1,0x5D7C,\n   1,0x5DE1,\n   1,0x5DE2,\n   1,0x382F,\n   1,0x5DFD,\n   1,0x5E28,\n   1,0x5E3D,\n   1,0x5E69,\n   1,0x3862,\n   1,0x22183,\n   1,0x387C,\n   1,0x5EB0,\n   1,0x5EB3,\n   1,0x5EB6,\n   1,0x5ECA,\n   1,0x2A392,\n   1,0x5EFE,\n   1,0x22331,\n   1,0x22331,\n   1,0x8201,\n   1,0x5F22,\n   1,0x5F22,\n   1,0x38C7,\n   1,0x232B8,\n   1,0x261DA,\n   1,0x5F62,\n   1,0x5F6B,\n   1,0x38E3,\n   1,0x5F9A,\n   1,0x5FCD,\n   1,0x5FD7,\n   1,0x5FF9,\n   1,0x6081,\n   1,0x393A,\n   1,0x391C,\n   1,0x6094,\n   1,0x226D4,\n   1,0x60C7,\n   1,0x6148,\n   1,0x614C,\n   1,0x614E,\n   1,0x614C,\n   1,0x617A,\n   1,0x618E,\n   1,0x61B2,\n   1,0x61A4,\n   1,0x61AF,\n   1,0x61DE,\n   1,0x61F2,\n   1,0x61F6,\n   1,0x6210,\n   1,0x621B,\n   1,0x625D,\n   1,0x62B1,\n   1,0x62D4,\n   1,0x6350,\n   1,0x22B0C,\n   1,0x633D,\n   1,0x62FC,\n   1,0x6368,\n   1,0x6383,\n   1,0x63E4,\n   1,0x22BF1,\n   1,0x6422,\n   1,0x63C5,\n   1,0x63A9,\n   1,0x3A2E,\n   1,0x6469,\n   1,0x647E,\n   1,0x649D,\n   1,0x6477,\n   1,0x3A6C,\n   1,0x654F,\n   1,0x656C,\n   1,0x2300A,\n   1,0x65E3,\n   1,0x66F8,\n   1,0x6649,\n   1,0x3B19,\n   1,0x6691,\n   1,0x3B08,\n   1,0x3AE4,\n   1,0x5192,\n   1,0x5195,\n   1,0x6700,\n   1,0x669C,\n   1,0x80AD,\n   1,0x43D9,\n   1,0x6717,\n   1,0x671B,\n   1,0x6721,\n   1,0x675E,\n   1,0x6753,\n   1,0x233C3,\n   1,0x3B49,\n   1,0x67FA,\n   1,0x6785,\n   1,0x6852,\n   1,0x6885,\n   1,0x2346D,\n   1,0x688E,\n   1,0x681F,\n   1,0x6914,\n   1,0x3B9D,\n   1,0x6942,\n   1,0x69A3,\n   1,0x69EA,\n   1,0x6AA8,\n   1,0x236A3,\n   1,0x6ADB,\n   1,0x3C18,\n   1,0x6B21,\n   1,0x238A7,\n   1,0x6B54,\n   1,0x3C4E,\n   1,0x6B72,\n   1,0x6B9F,\n   1,0x6BBA,\n   1,0x6BBB,\n   1,0x23A8D,\n   1,0x21D0B,\n   1,0x23AFA,\n   1,0x6C4E,\n   1,0x23CBC,\n   1,0x6CBF,\n   1,0x6CCD,\n   1,0x6C67,\n   1,0x6D16,\n   1,0x6D3E,\n   1,0x6D77,\n   1,0x6D41,\n   1,0x6D69,\n   1,0x6D78,\n   1,0x6D85,\n   1,0x23D1E,\n   1,0x6D34,\n   1,0x6E2F,\n   1,0x6E6E,\n   1,0x3D33,\n   1,0x6ECB,\n   1,0x6EC7,\n   1,0x23ED1,\n   1,0x6DF9,\n   1,0x6F6E,\n   1,0x23F5E,\n   1,0x23F8E,\n   1,0x6FC6,\n   1,0x7039,\n   1,0x701E,\n   1,0x701B,\n   1,0x3D96,\n   1,0x704A,\n   1,0x707D,\n   1,0x7077,\n   1,0x70AD,\n   1,0x20525,\n   1,0x7145,\n   1,0x24263,\n   1,0x719C,\n   1,0x243AB,\n   1,0x7228,\n   1,0x7235,\n   1,0x7250,\n   1,0x24608,\n   1,0x7280,\n   1,0x7295,\n   1,0x24735,\n   1,0x24814,\n   1,0x737A,\n   1,0x738B,\n   1,0x3EAC,\n   1,0x73A5,\n   1,0x3EB8,\n   1,0x3EB8,\n   1,0x7447,\n   1,0x745C,\n   1,0x7471,\n   1,0x7485,\n   1,0x74CA,\n   1,0x3F1B,\n   1,0x7524,\n   1,0x24C36,\n   1,0x753E,\n   1,0x24C92,\n   1,0x7570,\n   1,0x2219F,\n   1,0x7610,\n   1,0x24FA1,\n   1,0x24FB8,\n   1,0x25044,\n   1,0x3FFC,\n   1,0x4008,\n   1,0x76F4,\n   1,0x250F3,\n   1,0x250F2,\n   1,0x25119,\n   1,0x25133,\n   1,0x771E,\n   1,0x771F,\n   1,0x771F,\n   1,0x774A,\n   1,0x4039,\n   1,0x778B,\n   1,0x4046,\n   1,0x4096,\n   1,0x2541D,\n   1,0x784E,\n   1,0x788C,\n   1,0x78CC,\n   1,0x40E3,\n   1,0x25626,\n   1,0x7956,\n   1,0x2569A,\n   1,0x256C5,\n   1,0x798F,\n   1,0x79EB,\n   1,0x412F,\n   1,0x7A40,\n   1,0x7A4A,\n   1,0x7A4F,\n   1,0x2597C,\n   1,0x25AA7,\n   1,0x25AA7,\n   1,0x7AEE,\n   1,0x4202,\n   1,0x25BAB,\n   1,0x7BC6,\n   1,0x7BC9,\n   1,0x4227,\n   1,0x25C80,\n   1,0x7CD2,\n   1,0x42A0,\n   1,0x7CE8,\n   1,0x7CE3,\n   1,0x7D00,\n   1,0x25F86,\n   1,0x7D63,\n   1,0x4301,\n   1,0x7DC7,\n   1,0x7E02,\n   1,0x7E45,\n   1,0x4334,\n   1,0x26228,\n   1,0x26247,\n   1,0x4359,\n   1,0x262D9,\n   1,0x7F7A,\n   1,0x2633E,\n   1,0x7F95,\n   1,0x7FFA,\n   1,0x8005,\n   1,0x264DA,\n   1,0x26523,\n   1,0x8060,\n   1,0x265A8,\n   1,0x8070,\n   1,0x2335F,\n   1,0x43D5,\n   1,0x80B2,\n   1,0x8103,\n   1,0x440B,\n   1,0x813E,\n   1,0x5AB5,\n   1,0x267A7,\n   1,0x267B5,\n   1,0x23393,\n   1,0x2339C,\n   1,0x8201,\n   1,0x8204,\n   1,0x8F9E,\n   1,0x446B,\n   1,0x8291,\n   1,0x828B,\n   1,0x829D,\n   1,0x52B3,\n   1,0x82B1,\n   1,0x82B3,\n   1,0x82BD,\n   1,0x82E6,\n   1,0x26B3C,\n   1,0x82E5,\n   1,0x831D,\n   1,0x8363,\n   1,0x83AD,\n   1,0x8323,\n   1,0x83BD,\n   1,0x83E7,\n   1,0x8457,\n   1,0x8353,\n   1,0x83CA,\n   1,0x83CC,\n   1,0x83DC,\n   1,0x26C36,\n   1,0x26D6B,\n   1,0x26CD5,\n   1,0x452B,\n   1,0x84F1,\n   1,0x84F3,\n   1,0x8516,\n   1,0x273CA,\n   1,0x8564,\n   1,0x26F2C,\n   1,0x455D,\n   1,0x4561,\n   1,0x26FB1,\n   1,0x270D2,\n   1,0x456B,\n   1,0x8650,\n   1,0x865C,\n   1,0x8667,\n   1,0x8669,\n   1,0x86A9,\n   1,0x8688,\n   1,0x870E,\n   1,0x86E2,\n   1,0x8779,\n   1,0x8728,\n   1,0x876B,\n   1,0x8786,\n   1,0x45D7,\n   1,0x87E1,\n   1,0x8801,\n   1,0x45F9,\n   1,0x8860,\n   1,0x8863,\n   1,0x27667,\n   1,0x88D7,\n   1,0x88DE,\n   1,0x4635,\n   1,0x88FA,\n   1,0x34BB,\n   1,0x278AE,\n   1,0x27966,\n   1,0x46BE,\n   1,0x46C7,\n   1,0x8AA0,\n   1,0x8AED,\n   1,0x8B8A,\n   1,0x8C55,\n   1,0x27CA8,\n   1,0x8CAB,\n   1,0x8CC1,\n   1,0x8D1B,\n   1,0x8D77,\n   1,0x27F2F,\n   1,0x20804,\n   1,0x8DCB,\n   1,0x8DBC,\n   1,0x8DF0,\n   1,0x208DE,\n   1,0x8ED4,\n   1,0x8F38,\n   1,0x285D2,\n   1,0x285ED,\n   1,0x9094,\n   1,0x90F1,\n   1,0x9111,\n   1,0x2872E,\n   1,0x911B,\n   1,0x9238,\n   1,0x92D7,\n   1,0x92D8,\n   1,0x927C,\n   1,0x93F9,\n   1,0x9415,\n   1,0x28BFA,\n   1,0x958B,\n   1,0x4995,\n   1,0x95B7,\n   1,0x28D77,\n   1,0x49E6,\n   1,0x96C3,\n   1,0x5DB2,\n   1,0x9723,\n   1,0x29145,\n   1,0x2921A,\n   1,0x4A6E,\n   1,0x4A76,\n   1,0x97E0,\n   1,0x2940A,\n   1,0x4AB2,\n   1,0x29496,\n   1,0x980B,\n   1,0x980B,\n   1,0x9829,\n   1,0x295B6,\n   1,0x98E2,\n   1,0x4B33,\n   1,0x9929,\n   1,0x99A7,\n   1,0x99C2,\n   1,0x99FE,\n   1,0x4BCE,\n   1,0x29B30,\n   1,0x9B12,\n   1,0x9C40,\n   1,0x9CFD,\n   1,0x4CCE,\n   1,0x4CED,\n   1,0x9D67,\n   1,0x2A0CE,\n   1,0x4CF8,\n   1,0x2A105,\n   1,0x2A20E,\n   1,0x2A291,\n   1,0x9EBB,\n   1,0x4D56,\n   1,0x9EF9,\n   1,0x9EFE,\n   1,0x9F05,\n   1,0x9F0F,\n   1,0x9F16,\n   1,0x9F3B,\n   1,0x2A600,\n};\n\nstatic const short translit_page00[344] = {\n     0,    2,    4,    6,   -1,    9,   13,   15, /* 0xa0-0xa7 */\n    18,   20,   24,   26,   29,   33,   35,   -1, /* 0xa8-0xaf */\n    39,   42,   46,   49,   52,   54,   56,   58, /* 0xb0-0xb7 */\n    60,   62,   65,   67,   70,   76,   82,   88, /* 0xb8-0xbf */\n    90,   93,   96,   99,  102,  105,  107,  110, /* 0xc0-0xc7 */\n   112,  115,  118,  121,  124,  127,  130,  133, /* 0xc8-0xcf */\n   136,  138,  141,  144,  147,  150,  153,  156, /* 0xd0-0xd7 */\n   158,  160,  163,  166,  169,  172,  175,  178, /* 0xd8-0xdf */\n   181,  184,  187,  190,  193,  196,  198,  201, /* 0xe0-0xe7 */\n   203,  206,  209,  212,  215,  218,  221,  224, /* 0xe8-0xef */\n   227,  229,  232,  235,  238,  241,  244,  247, /* 0xf0-0xf7 */\n   249,  251,  254,  257,  260,  263,  266,  269, /* 0xf8-0xff */\n  /* 0x0100 */\n   272,  274,  276,  278,  280,  282,  284,  287, /* 0x00-0x07 */\n   290,  293,  296,  298,  300,  302,  304,  306, /* 0x08-0x0f */\n   308,  310,  312,  314,  316,  318,  320,  322, /* 0x10-0x17 */\n   324,  326,  328,  330,  332,  335,  338,  340, /* 0x18-0x1f */\n   342,  344,  346,  348,  350,  353,  356,  358, /* 0x20-0x27 */\n   360,  363,  366,  368,  370,  372,  374,  376, /* 0x28-0x2f */\n   378,  380,  382,  385,  388,  391,  394,  396, /* 0x30-0x37 */\n    -1,  398,  400,  402,  404,  406,  408,  410, /* 0x38-0x3f */\n   412,  414,  416,  418,  421,  424,  426,  428, /* 0x40-0x47 */\n   430,  432,   -1,   -1,  435,  437,  439,  441, /* 0x48-0x4f */\n   443,  446,  449,  452,  455,  458,  461,  463, /* 0x50-0x57 */\n   465,  467,  469,  472,  475,  478,  481,  483, /* 0x58-0x5f */\n   485,  487,  489,  491,  493,  495,  497,  499, /* 0x60-0x67 */\n   501,  504,  507,  509,  511,  513,  515,  517, /* 0x68-0x6f */\n   519,  522,  525,  527,  529,  532,  535,  538, /* 0x70-0x77 */\n   541,  544,  547,  550,  552,  554,  556,  558, /* 0x78-0x7f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x80-0x87 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x88-0x8f */\n    -1,   -1,  560,   -1,   -1,   -1,   -1,   -1, /* 0x90-0x97 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x98-0x9f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xa0-0xa7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xa8-0xaf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xb0-0xb7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xb8-0xbf */\n    -1,   -1,   -1,   -1,  562,  565,  568,  571, /* 0xc0-0xc7 */\n   574,  577,  580,  583,  586,   -1,   -1,   -1, /* 0xc8-0xcf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xd0-0xd7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xd8-0xdf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xe0-0xe7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xe8-0xef */\n    -1,  589,  592,  595,   -1,   -1,   -1,   -1, /* 0xf0-0xf7 */\n};\nstatic const short translit_page02[8] = {\n   598,  600,  602,  604,   -1,   -1,   -1,   -1, /* 0x18-0x1f */\n};\nstatic const short translit_page02_1[40] = {\n    -1,  606,  608,  610,  612,  614,   -1,   -1, /* 0xb8-0xbf */\n    -1,   -1,   -1,   -1,   -1,   -1,  616,   -1, /* 0xc0-0xc7 */\n   618,  620,  622,  624,   -1,  626,   -1,   -1, /* 0xc8-0xcf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xd0-0xd7 */\n    -1,   -1,   -1,   -1,  628,  630,   -1,   -1, /* 0xd8-0xdf */\n};\nstatic const short translit_page03[48] = {\n   632,  634,  636,   -1,   -1,  638,  640,   -1, /* 0xd0-0xd7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xd8-0xdf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xe0-0xe7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xe8-0xef */\n   642,  644,  646,   -1,  648,  650,   -1,   -1, /* 0xf0-0xf7 */\n    -1,  652,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xf8-0xff */\n};\nstatic const short translit_page05[8] = {\n   657,  660,  663,   -1,   -1,   -1,   -1,   -1, /* 0xf0-0xf7 */\n};\nstatic const short translit_page06[16] = {\n    -1,   -1,   -1,   -1,   -1,  666,  669,  672, /* 0x70-0x77 */\n   675,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x78-0x7f */\n};\nstatic const short translit_page0e[48] = {\n    -1,   -1,   -1,  681,   -1,   -1,   -1,   -1, /* 0xb0-0xb7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xb8-0xbf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xc0-0xc7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xc8-0xcf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xd0-0xd7 */\n    -1,   -1,   -1,   -1,  684,  687,   -1,   -1, /* 0xd8-0xdf */\n};\nstatic const short translit_page0f[16] = {\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,  690, /* 0x70-0x77 */\n    -1,  693,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x78-0x7f */\n};\nstatic const short translit_page1e[160] = {\n    -1,   -1,  696,  698,   -1,   -1,   -1,   -1, /* 0x00-0x07 */\n    -1,   -1,  700,  702,   -1,   -1,   -1,   -1, /* 0x08-0x0f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x10-0x17 */\n    -1,   -1,   -1,   -1,   -1,   -1,  704,  706, /* 0x18-0x1f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x20-0x27 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x28-0x2f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x30-0x37 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x38-0x3f */\n   708,  710,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x40-0x47 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x48-0x4f */\n    -1,   -1,   -1,   -1,   -1,   -1,  712,  714, /* 0x50-0x57 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x58-0x5f */\n   716,  718,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x60-0x67 */\n    -1,   -1,  720,  722,   -1,   -1,   -1,   -1, /* 0x68-0x6f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x70-0x77 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x78-0x7f */\n   724,  727,  730,  733,  736,  739,   -1,   -1, /* 0x80-0x87 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x88-0x8f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x90-0x97 */\n    -1,   -1,  742,   -1,   -1,   -1,   -1,   -1, /* 0x98-0x9f */\n};\nstatic const short translit_page1e_2[8] = {\n    -1,   -1,  745,  748,   -1,   -1,   -1,   -1, /* 0xf0-0xf7 */\n};\nstatic const short translit_page20[88] = {\n    -1,   -1,  751,  753,  755,  757,  759,   -1, /* 0x00-0x07 */\n   761,  763,  765,   -1,   -1,   -1,   -1,   -1, /* 0x08-0x0f */\n   767,  769,  771,  773,  775,  777,   -1,   -1, /* 0x10-0x17 */\n   779,  781,  783,  785,  787,  789,  791,  793, /* 0x18-0x1f */\n   795,   -1,  797,   -1,  799,  801,  804,   -1, /* 0x20-0x27 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x28-0x2f */\n   808,   -1,  813,  815,  818,   -1,  822,  825, /* 0x30-0x37 */\n    -1,  829,  831,   -1,  833,   -1,   -1,   -1, /* 0x38-0x3f */\n    -1,   -1,   -1,   -1,  836,   -1,   -1,  838, /* 0x40-0x47 */\n   841,  844,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x48-0x4f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,  847, /* 0x50-0x57 */\n};\nstatic const short translit_page20_3[8] = {\n   852,   -1,   -1,  855,  860,   -1,   -1,   -1, /* 0xa8-0xaf */\n};\nstatic const short translit_page21[216] = {\n   864,  868,  872,  874,   -1,  877,  881,  885, /* 0x00-0x07 */\n    -1,  887,  890,  892,  894,  896,  898,  900, /* 0x08-0x0f */\n   902,  904,  906,  908,   -1,  910,  912,   -1, /* 0x10-0x17 */\n    -1,  915,  917,  919,  921,  923,   -1,   -1, /* 0x18-0x1f */\n    -1,  925,  929,   -1,  932,   -1,  934,   -1, /* 0x20-0x27 */\n   938,   -1,   -1,   -1,  940,  942,  944,  946, /* 0x28-0x2f */\n   948,  950,   -1,  952,  954,  956,  958,  960, /* 0x30-0x37 */\n   962,  964,   -1,  966,   -1,  970,  972,  974, /* 0x38-0x3f */\n   976,   -1,   -1,   -1,   -1,  978,  980,  982, /* 0x40-0x47 */\n   984,  986,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x48-0x4f */\n    -1,   -1,   -1,  988,  994, 1000, 1006, 1012, /* 0x50-0x57 */\n  1018, 1024, 1030, 1036, 1042, 1048, 1054, 1060, /* 0x58-0x5f */\n  1064, 1066, 1069, 1073, 1076, 1078, 1081, 1085, /* 0x60-0x67 */\n  1090, 1093, 1095, 1098, 1102, 1104, 1106, 1108, /* 0x68-0x6f */\n  1110, 1112, 1115, 1119, 1122, 1124, 1127, 1131, /* 0x70-0x77 */\n  1136, 1139, 1141, 1144, 1148, 1150, 1152, 1154, /* 0x78-0x7f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x80-0x87 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x88-0x8f */\n  1156, 1159, 1161, 1164, 1166,   -1,   -1,   -1, /* 0x90-0x97 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x98-0x9f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xa0-0xa7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xa8-0xaf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xb0-0xb7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xb8-0xbf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xc0-0xc7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xc8-0xcf */\n  1170,   -1, 1173,   -1, 1176,   -1,   -1,   -1, /* 0xd0-0xd7 */\n};\nstatic const short translit_page22[96] = {\n    -1,   -1, 1180,   -1,   -1, 1182, 1184, 1186, /* 0x10-0x17 */\n    -1, 1188,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x18-0x1f */\n    -1,   -1,   -1, 1190,   -1,   -1,   -1,   -1, /* 0x20-0x27 */\n    -1,   -1,   -1,   -1, 1192, 1195,   -1, 1199, /* 0x28-0x2f */\n  1202,   -1,   -1,   -1,   -1,   -1, 1206,   -1, /* 0x30-0x37 */\n    -1,   -1,   -1,   -1, 1208,   -1,   -1,   -1, /* 0x38-0x3f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x40-0x47 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x48-0x4f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x50-0x57 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x58-0x5f */\n  1210,   -1,   -1,   -1, 1213, 1216,   -1,   -1, /* 0x60-0x67 */\n    -1,   -1, 1219, 1222,   -1,   -1,   -1,   -1, /* 0x68-0x6f */\n};\nstatic const short translit_page22_4[48] = {\n    -1,   -1,   -1,   -1,   -1, 1225,   -1,   -1, /* 0xc0-0xc7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xc8-0xcf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xd0-0xd7 */\n  1227, 1231,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xd8-0xdf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xe0-0xe7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1, 1235, /* 0xe8-0xef */\n};\nstatic const short translit_page24[240] = {\n  1239, 1245, 1251, 1257, 1263, 1269, 1275, 1281, /* 0x00-0x07 */\n  1287, 1292, 1297, 1302, 1307, 1312, 1317, 1322, /* 0x08-0x0f */\n  1327, 1333, 1339, 1345, 1351, 1357, 1363, 1369, /* 0x10-0x17 */\n  1375, 1381, 1386, 1392, 1398, 1403, 1408, 1413, /* 0x18-0x1f */\n  1418, 1423,   -1,   -1, 1429,   -1,   -1,   -1, /* 0x20-0x27 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x28-0x2f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x30-0x37 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x38-0x3f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x40-0x47 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x48-0x4f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x50-0x57 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x58-0x5f */\n  1434, 1438, 1442, 1446, 1450, 1454, 1458, 1462, /* 0x60-0x67 */\n  1466, 1470, 1475, 1480, 1485, 1490, 1495, 1500, /* 0x68-0x6f */\n  1505, 1510, 1515, 1520, 1525, 1529, 1533, 1537, /* 0x70-0x77 */\n  1541, 1545, 1549, 1553, 1557, 1561, 1566, 1571, /* 0x78-0x7f */\n  1576, 1581, 1586, 1591, 1596, 1601, 1606, 1611, /* 0x80-0x87 */\n  1616, 1619, 1622, 1625, 1628, 1631, 1634, 1637, /* 0x88-0x8f */\n  1640, 1643, 1647, 1651, 1655, 1659, 1663, 1667, /* 0x90-0x97 */\n  1671, 1675, 1679, 1683, 1687, 1691, 1695, 1699, /* 0x98-0x9f */\n  1703, 1707, 1711, 1715, 1719, 1723, 1727, 1731, /* 0xa0-0xa7 */\n  1735, 1739, 1743, 1747, 1751, 1755, 1759, 1763, /* 0xa8-0xaf */\n  1767, 1771, 1775, 1779, 1783, 1787, 1791, 1795, /* 0xb0-0xb7 */\n  1799, 1803, 1807, 1811, 1815, 1819, 1823, 1827, /* 0xb8-0xbf */\n  1831, 1835, 1839, 1843, 1847, 1851, 1855, 1859, /* 0xc0-0xc7 */\n  1863, 1867, 1871, 1875, 1879, 1883, 1887, 1891, /* 0xc8-0xcf */\n  1895, 1899, 1903, 1907, 1911, 1915, 1919, 1923, /* 0xd0-0xd7 */\n  1927, 1931, 1935, 1939, 1943, 1947, 1951, 1955, /* 0xd8-0xdf */\n  1959, 1963, 1967, 1971, 1975, 1979, 1983, 1987, /* 0xe0-0xe7 */\n  1991, 1995, 1999,   -1,   -1,   -1,   -1,   -1, /* 0xe8-0xef */\n};\nstatic const short translit_page25[64] = {\n  2003,   -1, 2005,   -1,   -1,   -1,   -1,   -1, /* 0x00-0x07 */\n    -1,   -1,   -1,   -1, 2007,   -1,   -1,   -1, /* 0x08-0x0f */\n  2009,   -1,   -1,   -1, 2011,   -1,   -1,   -1, /* 0x10-0x17 */\n  2013,   -1,   -1,   -1, 2015,   -1,   -1,   -1, /* 0x18-0x1f */\n    -1,   -1,   -1,   -1, 2017,   -1,   -1,   -1, /* 0x20-0x27 */\n    -1,   -1,   -1,   -1, 2019,   -1,   -1,   -1, /* 0x28-0x2f */\n    -1,   -1,   -1,   -1, 2021,   -1,   -1,   -1, /* 0x30-0x37 */\n    -1,   -1,   -1,   -1, 2023,   -1,   -1,   -1, /* 0x38-0x3f */\n};\nstatic const short translit_page2a[8] = {\n    -1,   -1,   -1,   -1, 2032, 2036, 2039,   -1, /* 0x70-0x77 */\n};\nstatic const short translit_page2f[216] = {\n  2047, 2049, 2051, 2053, 2055, 2057, 2059, 2061, /* 0x00-0x07 */\n  2063, 2065, 2067, 2069, 2071, 2073, 2075, 2077, /* 0x08-0x0f */\n  2079, 2081, 2083, 2085, 2087, 2089, 2091, 2093, /* 0x10-0x17 */\n  2095, 2097, 2099, 2101, 2103, 2105, 2107, 2109, /* 0x18-0x1f */\n  2111, 2113, 2115, 2117, 2119, 2121, 2123, 2125, /* 0x20-0x27 */\n  2127, 2129, 2131, 2133, 2135, 2137, 2139, 2141, /* 0x28-0x2f */\n  2143, 2145, 2147, 2149, 2151, 2153, 2155, 2157, /* 0x30-0x37 */\n  2159, 2161, 2163, 2165, 2167, 2169, 2171, 2173, /* 0x38-0x3f */\n  2175, 2177, 2179, 2181, 2183, 2185, 2187, 2189, /* 0x40-0x47 */\n  2191, 2193, 2195, 2197, 2199, 2201, 2203, 2205, /* 0x48-0x4f */\n  2207, 2209, 2211, 2213, 2215, 2217, 2219, 2221, /* 0x50-0x57 */\n  2223, 2225, 2227, 2229, 2231, 2233, 2235, 2237, /* 0x58-0x5f */\n  2239, 2241, 2243, 2245, 2247, 2249, 2251, 2253, /* 0x60-0x67 */\n  2255, 2257, 2259, 2261, 2263, 2265, 2267, 2269, /* 0x68-0x6f */\n  2271, 2273, 2275, 2277, 2279, 2281, 2283, 2285, /* 0x70-0x77 */\n  2287, 2289, 2291, 2293, 2295, 2297, 2299, 2301, /* 0x78-0x7f */\n  2303, 2305, 2307, 2309, 2311, 2313, 2315, 2317, /* 0x80-0x87 */\n  2319, 2321, 2323, 2325, 2327, 2329, 2331, 2333, /* 0x88-0x8f */\n  2335, 2337, 2339, 2341, 2343, 2345, 2347, 2349, /* 0x90-0x97 */\n  2351, 2353, 2355, 2357, 2359, 2361, 2363, 2365, /* 0x98-0x9f */\n  2367, 2369, 2371, 2373, 2375, 2377, 2379, 2381, /* 0xa0-0xa7 */\n  2383, 2385, 2387, 2389, 2391, 2393, 2395, 2397, /* 0xa8-0xaf */\n  2399, 2401, 2403, 2405, 2407, 2409, 2411, 2413, /* 0xb0-0xb7 */\n  2415, 2417, 2419, 2421, 2423, 2425, 2427, 2429, /* 0xb8-0xbf */\n  2431, 2433, 2435, 2437, 2439, 2441, 2443, 2445, /* 0xc0-0xc7 */\n  2447, 2449, 2451, 2453, 2455, 2457, 2459, 2461, /* 0xc8-0xcf */\n  2463, 2465, 2467, 2469, 2471, 2473,   -1,   -1, /* 0xd0-0xd7 */\n};\nstatic const short translit_page30[248] = {\n  2475,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x00-0x07 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x08-0x0f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x10-0x17 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x18-0x1f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x20-0x27 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x28-0x2f */\n    -1,   -1,   -1,   -1,   -1,   -1, 2477,   -1, /* 0x30-0x37 */\n  2479, 2481, 2483,   -1,   -1,   -1,   -1,   -1, /* 0x38-0x3f */\n    -1, 2485,   -1, 2487,   -1, 2489,   -1, 2491, /* 0x40-0x47 */\n    -1, 2493,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x48-0x4f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x50-0x57 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x58-0x5f */\n    -1,   -1,   -1, 2495,   -1,   -1,   -1,   -1, /* 0x60-0x67 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x68-0x6f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x70-0x77 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x78-0x7f */\n    -1,   -1,   -1, 2497,   -1, 2499,   -1, 2501, /* 0x80-0x87 */\n    -1,   -1,   -1,   -1,   -1,   -1, 2503,   -1, /* 0x88-0x8f */\n    -1,   -1,   -1,   -1,   -1, 2505, 2507,   -1, /* 0x90-0x97 */\n    -1,   -1,   -1, 2509, 2512,   -1,   -1,   -1, /* 0x98-0x9f */\n  2515, 2517,   -1, 2519,   -1, 2521,   -1, 2523, /* 0xa0-0xa7 */\n    -1, 2525,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xa8-0xaf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xb0-0xb7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xb8-0xbf */\n    -1,   -1,   -1, 2527,   -1,   -1,   -1,   -1, /* 0xc0-0xc7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xc8-0xcf */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xd0-0xd7 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0xd8-0xdf */\n    -1,   -1,   -1, 2529,   -1, 2531,   -1, 2533, /* 0xe0-0xe7 */\n    -1,   -1,   -1,   -1,   -1,   -1, 2535,   -1, /* 0xe8-0xef */\n    -1,   -1,   -1,   -1,   -1, 2537, 2539,   -1, /* 0xf0-0xf7 */\n};\nstatic const short translit_page31[96] = {\n    -1, 2541, 2543, 2545, 2547, 2549, 2551, 2553, /* 0x30-0x37 */\n  2555, 2557, 2559, 2561, 2563, 2565, 2567, 2569, /* 0x38-0x3f */\n  2571, 2573, 2575, 2577, 2579, 2581, 2583, 2585, /* 0x40-0x47 */\n  2587, 2589, 2591, 2593, 2595, 2597, 2599, 2601, /* 0x48-0x4f */\n  2603, 2605, 2607, 2609, 2611, 2613, 2615, 2617, /* 0x50-0x57 */\n  2619, 2621, 2623, 2625, 2627, 2629, 2631, 2633, /* 0x58-0x5f */\n  2635, 2637, 2639, 2641, 2643, 2645, 2647, 2649, /* 0x60-0x67 */\n  2651, 2653, 2655, 2657, 2659, 2661, 2663, 2665, /* 0x68-0x6f */\n  2667, 2669, 2671, 2673, 2675, 2677, 2679, 2681, /* 0x70-0x77 */\n  2683, 2685, 2687, 2689, 2691, 2693, 2695, 2697, /* 0x78-0x7f */\n  2699, 2701, 2703, 2705, 2707, 2709, 2711, 2713, /* 0x80-0x87 */\n  2715, 2717, 2719, 2721, 2723, 2725, 2727,   -1, /* 0x88-0x8f */\n};\nstatic const short translit_page31_5[528] = {\n  2729, 2731, 2733, 2735, 2737, 2739, 2741, 2743, /* 0xf0-0xf7 */\n  2745, 2747, 2749, 2751, 2753, 2755, 2757, 2759, /* 0xf8-0xff */\n  /* 0x3200 */\n  2761, 2765, 2769, 2773, 2777, 2781, 2785, 2789, /* 0x00-0x07 */\n  2793, 2797, 2801, 2805, 2809, 2813, 2817, 2822, /* 0x08-0x0f */\n  2827, 2832, 2837, 2842, 2847, 2852, 2857, 2862, /* 0x10-0x17 */\n  2867, 2872, 2877, 2882, 2887, 2892, 2900,   -1, /* 0x18-0x1f */\n  2907, 2911, 2915, 2919, 2923, 2927, 2931, 2935, /* 0x20-0x27 */\n  2939, 2943, 2947, 2951, 2955, 2959, 2963, 2967, /* 0x28-0x2f */\n  2971, 2975, 2979, 2983, 2987, 2991, 2995, 2999, /* 0x30-0x37 */\n  3003, 3007, 3011, 3015, 3019, 3023, 3027, 3031, /* 0x38-0x3f */\n  3035, 3039, 3043, 3047,   -1,   -1,   -1,   -1, /* 0x40-0x47 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x48-0x4f */\n  3051, 3055, 3060, 3065, 3070, 3075, 3080, 3085, /* 0x50-0x57 */\n  3090, 3095, 3100, 3105, 3110, 3115, 3120, 3125, /* 0x58-0x5f */\n  3130, 3134, 3138, 3142, 3146, 3150, 3154, 3158, /* 0x60-0x67 */\n  3162, 3166, 3170, 3174, 3178, 3182, 3186, 3191, /* 0x68-0x6f */\n  3196, 3201, 3206, 3211, 3216, 3221, 3226, 3231, /* 0x70-0x77 */\n  3236, 3241, 3246, 3251, 3256, 3264,   -1,   -1, /* 0x78-0x7f */\n  3271, 3275, 3279, 3283, 3287, 3291, 3295, 3299, /* 0x80-0x87 */\n  3303, 3307, 3311, 3315, 3319, 3323, 3327, 3331, /* 0x88-0x8f */\n  3335, 3339, 3343, 3347, 3351, 3355, 3359, 3363, /* 0x90-0x97 */\n  3367, 3371, 3375, 3379, 3383, 3387, 3391, 3395, /* 0x98-0x9f */\n  3399, 3403, 3407, 3411, 3415, 3419, 3423, 3427, /* 0xa0-0xa7 */\n  3431, 3435, 3439, 3443, 3447, 3451, 3455, 3459, /* 0xa8-0xaf */\n  3463, 3467, 3472, 3477, 3482, 3487, 3492, 3497, /* 0xb0-0xb7 */\n  3502, 3507, 3512, 3517, 3522, 3527, 3532, 3537, /* 0xb8-0xbf */\n  3542, 3545, 3548, 3551, 3554, 3557, 3560, 3563, /* 0xc0-0xc7 */\n  3566, 3569, 3573, 3577, 3581, 3584, 3588, 3591, /* 0xc8-0xcf */\n  3595, 3599, 3603, 3607, 3611, 3615, 3619, 3623, /* 0xd0-0xd7 */\n  3627, 3631, 3635, 3639, 3643, 3647, 3651, 3655, /* 0xd8-0xdf */\n  3659, 3663, 3667, 3671, 3675, 3679, 3683, 3687, /* 0xe0-0xe7 */\n  3691, 3695, 3699, 3703, 3707, 3711, 3715, 3719, /* 0xe8-0xef */\n  3723, 3727, 3731, 3735, 3739, 3743, 3747, 3751, /* 0xf0-0xf7 */\n  3755, 3759, 3763, 3767, 3771, 3775, 3779,   -1, /* 0xf8-0xff */\n  /* 0x3300 */\n  3783, 3788, 3793, 3798, 3802, 3807, 3811, 3815, /* 0x00-0x07 */\n  3821, 3826, 3830, 3834, 3838, 3843, 3848, 3852, /* 0x08-0x0f */\n  3856, 3859, 3863, 3868, 3873, 3876, 3882, 3889, /* 0x10-0x17 */\n  3895, 3899, 3905, 3911, 3916, 3920, 3924, 3928, /* 0x18-0x1f */\n  3933, 3939, 3944, 3948, 3952, 3956, 3959, 3962, /* 0x20-0x27 */\n  3965, 3968, 3972, 3976, 3982, 3986, 3991, 3997, /* 0x28-0x2f */\n  4001, 4004, 4007, 4013, 4018, 4024, 4028, 4034, /* 0x30-0x37 */\n  4037, 4041, 4045, 4049, 4053, 4057, 4062, 4066, /* 0x38-0x3f */\n  4069, 4073, 4077, 4081, 4086, 4090, 4094, 4098, /* 0x40-0x47 */\n  4104, 4109, 4112, 4118, 4121, 4126, 4131, 4135, /* 0x48-0x4f */\n  4139, 4143, 4148, 4151, 4155, 4160, 4163, 4169, /* 0x50-0x57 */\n  4173, 4176, 4179, 4182, 4185, 4188, 4191, 4194, /* 0x58-0x5f */\n  4197, 4200, 4203, 4207, 4211, 4215, 4219, 4223, /* 0x60-0x67 */\n  4227, 4231, 4235, 4239, 4243, 4247, 4251, 4255, /* 0x68-0x6f */\n  4259, 4263, 4267, 4270, 4273, 4277, 4280, 4283, /* 0x70-0x77 */\n  4286, 4291, 4296, 4299, 4302, 4305, 4308, 4311, /* 0x78-0x7f */\n  4316, 4319, 4322, 4325, 4328, 4331, 4334, 4337, /* 0x80-0x87 */\n  4340, 4344, 4349, 4352, 4355, 4358, 4361, 4364, /* 0x88-0x8f */\n  4367, 4370, 4374, 4378, 4382, 4386, 4389, 4392, /* 0x90-0x97 */\n  4395, 4398, 4401, 4404, 4407, 4410, 4413, 4416, /* 0x98-0x9f */\n  4421, 4426, 4430, 4435, 4440, 4445, 4449, 4454, /* 0xa0-0xa7 */\n  4458, 4464, 4467, 4471, 4475, 4479, 4483, 4489, /* 0xa8-0xaf */\n  4497, 4500, 4503, 4506, 4509, 4512, 4515, 4518, /* 0xb0-0xb7 */\n  4521, 4524, 4527, 4530, 4533, 4536, 4539, 4542, /* 0xb8-0xbf */\n  4545, 4548, 4551, 4556, 4559, 4562, 4565, 4570, /* 0xc0-0xc7 */\n  4574, 4577, 4580, 4583, 4586, 4589, 4592, 4595, /* 0xc8-0xcf */\n  4598, 4601, 4604, 4608, 4611, 4614, 4618, 4622, /* 0xd0-0xd7 */\n  4625, 4630, 4634, 4637, 4640, 4643, 4646, 4650, /* 0xd8-0xdf */\n  4658, 4661, 4664, 4667, 4670, 4673, 4676, 4679, /* 0xe0-0xe7 */\n  4682, 4685, 4689, 4693, 4697, 4701, 4705, 4709, /* 0xe8-0xef */\n  4713, 4717, 4721, 4725, 4729, 4733, 4737, 4741, /* 0xf0-0xf7 */\n  4745, 4749, 4753, 4757, 4761, 4765, 4769, 4654, /* 0xf8-0xff */\n};\nstatic const short translit_pagef9[368] = {\n  4773, 4775, 4777, 4779, 4781, 4783, 4785, 4787, /* 0x00-0x07 */\n  4789, 4791, 4793, 4795, 4797, 4799, 4801, 4803, /* 0x08-0x0f */\n  4805, 4807, 4809, 4811, 4813, 4815, 4817, 4819, /* 0x10-0x17 */\n  4821, 4823, 4825, 4827, 4829, 4831, 4833, 4835, /* 0x18-0x1f */\n  4837, 4839, 4841, 4843, 4845, 4847, 4849, 4851, /* 0x20-0x27 */\n  4853, 4855, 4857, 4859, 4861, 4863, 4865, 4867, /* 0x28-0x2f */\n  4869, 4871, 4873, 4875, 4877, 4879, 4881, 4883, /* 0x30-0x37 */\n  4885, 4887, 4889, 4891, 4893, 4895, 4897, 4899, /* 0x38-0x3f */\n  4901, 4903, 4905, 4907, 4909, 4911, 4913, 4915, /* 0x40-0x47 */\n  4917, 4919, 4921, 4923, 4925, 4927, 4929, 4931, /* 0x48-0x4f */\n  4933, 4935, 4937, 4939, 4941, 4943, 4945, 4947, /* 0x50-0x57 */\n  4949, 4951, 4953, 4955, 4957, 4959, 4961, 4963, /* 0x58-0x5f */\n  4965, 4967, 4969, 4971, 4973, 4975, 4977, 4979, /* 0x60-0x67 */\n  4981, 4983, 4985, 4987, 4989, 4991, 4993, 4995, /* 0x68-0x6f */\n  4997, 4999, 5001, 5003, 5005, 5007, 5009, 5011, /* 0x70-0x77 */\n  5013, 5015, 5017, 5019, 5021, 5023, 5025, 5027, /* 0x78-0x7f */\n  5029, 5031, 5033, 5035, 5037, 5039, 5041, 5043, /* 0x80-0x87 */\n  5045, 5047, 5049, 5051, 5053, 5055, 5057, 5059, /* 0x88-0x8f */\n  5061, 5063, 5065, 5067, 5069, 5071, 5073, 5075, /* 0x90-0x97 */\n  5077, 5079, 5081, 5083, 5085, 5087, 5089, 5091, /* 0x98-0x9f */\n  5093, 5095, 5097, 5099, 5101, 5103, 5105, 5107, /* 0xa0-0xa7 */\n  5109, 5111, 5113, 5115, 5117, 5119, 5121, 5123, /* 0xa8-0xaf */\n  5125, 5127, 5129, 5131, 5133, 5135, 5137, 5139, /* 0xb0-0xb7 */\n  5141, 5143, 5145, 5147, 5149, 5151, 5153, 5155, /* 0xb8-0xbf */\n  5157, 5159, 5161, 5163, 5165, 5167, 5169, 5171, /* 0xc0-0xc7 */\n  5173, 5175, 5177, 5179, 5181, 5183, 5185, 5187, /* 0xc8-0xcf */\n  5189, 5191, 5193, 5195, 5197, 5199, 5201, 5203, /* 0xd0-0xd7 */\n  5205, 5207, 5209, 5211, 5213, 5215, 5217, 5219, /* 0xd8-0xdf */\n  5221, 5223, 5225, 5227, 5229, 5231, 5233, 5235, /* 0xe0-0xe7 */\n  5237, 5239, 5241, 5243, 5245, 5247, 5249, 5251, /* 0xe8-0xef */\n  5253, 5255, 5257, 5259, 5261, 5263, 5265, 5267, /* 0xf0-0xf7 */\n  5269, 5271, 5273, 5275, 5277, 5279, 5281, 5283, /* 0xf8-0xff */\n  /* 0xfa00 */\n  5285, 5287, 5289, 5291, 5293, 5295, 5297, 5299, /* 0x00-0x07 */\n  5301, 5303, 5305, 5307, 5309, 5311,   -1,   -1, /* 0x08-0x0f */\n  5313,   -1, 5315,   -1,   -1, 5317, 5319, 5321, /* 0x10-0x17 */\n  5323, 5325, 5327, 5329, 5331, 5333, 5335,   -1, /* 0x18-0x1f */\n  5337,   -1, 5339,   -1,   -1, 5341, 5343,   -1, /* 0x20-0x27 */\n    -1,   -1, 5345, 5347, 5349, 5351,   -1,   -1, /* 0x28-0x2f */\n  5353, 5355, 5357, 5359, 5361, 5363, 5365, 5367, /* 0x30-0x37 */\n  5369, 5371, 5373, 5375, 5377, 5379, 5381, 5383, /* 0x38-0x3f */\n  5385, 5387, 5389, 5391, 5393, 5395, 5397, 5399, /* 0x40-0x47 */\n  5401, 5403, 5405, 5407, 5409, 5411, 5413, 5415, /* 0x48-0x4f */\n  5417, 5419, 5421, 5423, 5425, 5427, 5429, 5431, /* 0x50-0x57 */\n  5433, 5435, 5437, 5439, 5441, 5443, 5445, 5447, /* 0x58-0x5f */\n  5449, 5451, 5453, 5455, 5457, 5459, 5461, 5463, /* 0x60-0x67 */\n  5465, 5467, 5469,   -1,   -1,   -1,   -1,   -1, /* 0x68-0x6f */\n};\nstatic const short translit_pagefb[80] = {\n  5471, 5474, 5477, 5480, 5484, 5488, 5491,   -1, /* 0x00-0x07 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x08-0x0f */\n    -1,   -1,   -1, 5494, 5497, 5500, 5503, 5506, /* 0x10-0x17 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x18-0x1f */\n  5509, 5511, 5513, 5515, 5517, 5519, 5521, 5523, /* 0x20-0x27 */\n  5525, 5527,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x28-0x2f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x30-0x37 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x38-0x3f */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, /* 0x40-0x47 */\n    -1,   -1,   -1,   -1,   -1,   -1,   -1, 5529, /* 0x48-0x4f */\n};\nstatic const short translit_pagefe[40] = {\n    -1, 5532, 5534, 5536, 5538, 5540, 5542, 5544, /* 0x48-0x4f */\n  5546, 5548, 5550,   -1, 5552, 5554, 5556, 5558, /* 0x50-0x57 */\n  5560, 5562, 5564, 5566, 5568, 5570, 5572, 5574, /* 0x58-0x5f */\n  5576, 5578, 5580, 5582, 5584, 5586, 5588,   -1, /* 0x60-0x67 */\n  5590, 5592, 5594, 5596,   -1,   -1,   -1,   -1, /* 0x68-0x6f */\n};\nstatic const short translit_pageff[240] = {\n    -1, 5598, 5600, 5602, 5604, 5606, 5608, 5610, /* 0x00-0x07 */\n  5612, 5614, 5616, 5618, 5620, 5622, 5624, 5626, /* 0x08-0x0f */\n  5628, 5630, 5632, 5634, 5636, 5638, 5640, 5642, /* 0x10-0x17 */\n  5644, 5646, 5648, 5650, 5652, 5654, 5656, 5658, /* 0x18-0x1f */\n  5660, 5662, 5664, 5666, 5668, 5670, 5672, 5674, /* 0x20-0x27 */\n  5676, 5678, 5680, 5682, 5684, 5686, 5688, 5690, /* 0x28-0x2f */\n  5692, 5694, 5696, 5698, 5700, 5702, 5704, 5706, /* 0x30-0x37 */\n  5708, 5710, 5712, 5714, 5716, 5718, 5720, 5722, /* 0x38-0x3f */\n  5724, 5726, 5728, 5730, 5732, 5734, 5736, 5738, /* 0x40-0x47 */\n  5740, 5742, 5744, 5746, 5748, 5750, 5752, 5754, /* 0x48-0x4f */\n  5756, 5758, 5760, 5762, 5764, 5766, 5768, 5770, /* 0x50-0x57 */\n  5772, 5774, 5776, 5778, 5780, 5782, 5784, 5786, /* 0x58-0x5f */\n  5788, 5790, 5792, 5794, 5796, 5798, 5800, 5802, /* 0x60-0x67 */\n  5804, 5806, 5808, 5810, 5812, 5814, 5816, 5818, /* 0x68-0x6f */\n  5820, 5822, 5824, 5826, 5828, 5830, 5832, 5834, /* 0x70-0x77 */\n  5836, 5838, 5840, 5842, 5844, 5846, 5848, 5850, /* 0x78-0x7f */\n  5852, 5854, 5856, 5858, 5860, 5862, 5864, 5866, /* 0x80-0x87 */\n  5868, 5870, 5872, 5874, 5876, 5878, 5880, 5882, /* 0x88-0x8f */\n  5884, 5886, 5888, 5890, 5892, 5894, 5896, 5898, /* 0x90-0x97 */\n  5900, 5902, 5904, 5906, 5908, 5910, 5912, 5914, /* 0x98-0x9f */\n  5916, 5918, 5920, 5922, 5924, 5926, 5928, 5930, /* 0xa0-0xa7 */\n  5932, 5934, 5936, 5938, 5940, 5942, 5944, 5946, /* 0xa8-0xaf */\n  5948, 5950, 5952, 5954, 5956, 5958, 5960, 5962, /* 0xb0-0xb7 */\n  5964, 5966, 5968, 5970, 5972, 5974, 5976,   -1, /* 0xb8-0xbf */\n    -1,   -1, 5978, 5980, 5982, 5984, 5986, 5988, /* 0xc0-0xc7 */\n    -1,   -1, 5990, 5992, 5994, 5996, 5998, 6000, /* 0xc8-0xcf */\n    -1,   -1, 6002, 6004, 6006, 6008, 6010, 6012, /* 0xd0-0xd7 */\n    -1,   -1, 6014, 6016, 6018,   -1,   -1,   -1, /* 0xd8-0xdf */\n  6020, 6022, 6024, 6026, 6028, 6030, 6032,   -1, /* 0xe0-0xe7 */\n  6034, 6036, 6038, 6040, 6042, 6044, 6046,   -1, /* 0xe8-0xef */\n};\nstatic const short translit_page1d4[1024] = {\n  6048, 6050, 6052, 6054, 6056, 6058, 6060, 6062, /* 0x00-0x07 */\n  6064, 6066, 6068, 6070, 6072, 6074, 6076, 6078, /* 0x08-0x0f */\n  6080, 6082, 6084, 6086, 6088, 6090, 6092, 6094, /* 0x10-0x17 */\n  6096, 6098, 6100, 6102, 6104, 6106, 6108, 6110, /* 0x18-0x1f */\n  6112, 6114, 6116, 6118, 6120, 6122, 6124, 6126, /* 0x20-0x27 */\n  6128, 6130, 6132, 6134, 6136, 6138, 6140, 6142, /* 0x28-0x2f */\n  6144, 6146, 6148, 6150, 6152, 6154, 6156, 6158, /* 0x30-0x37 */\n  6160, 6162, 6164, 6166, 6168, 6170, 6172, 6174, /* 0x38-0x3f */\n  6176, 6178, 6180, 6182, 6184, 6186, 6188, 6190, /* 0x40-0x47 */\n  6192, 6194, 6196, 6198, 6200, 6202, 6204, 6206, /* 0x48-0x4f */\n  6208, 6210, 6212, 6214, 6216,   -1, 6218, 6220, /* 0x50-0x57 */\n  6222, 6224, 6226, 6228, 6230, 6232, 6234, 6236, /* 0x58-0x5f */\n  6238, 6240, 6242, 6244, 6246, 6248, 6250, 6252, /* 0x60-0x67 */\n  6254, 6256, 6258, 6260, 6262, 6264, 6266, 6268, /* 0x68-0x6f */\n  6270, 6272, 6274, 6276, 6278, 6280, 6282, 6284, /* 0x70-0x77 */\n  6286, 6288, 6290, 6292, 6294, 6296, 6298, 6300, /* 0x78-0x7f */\n  6302, 6304, 6306, 6308, 6310, 6312, 6314, 6316, /* 0x80-0x87 */\n  6318, 6320, 6322, 6324, 6326, 6328, 6330, 6332, /* 0x88-0x8f */\n  6334, 6336, 6338, 6340, 6342, 6344, 6346, 6348, /* 0x90-0x97 */\n  6350, 6352, 6354, 6356, 6358,   -1, 6360, 6362, /* 0x98-0x9f */\n    -1,   -1, 6364,   -1,   -1, 6366, 6368,   -1, /* 0xa0-0xa7 */\n    -1, 6370, 6372, 6374, 6376,   -1, 6378, 6380, /* 0xa8-0xaf */\n  6382, 6384, 6386, 6388, 6390, 6392, 6394, 6396, /* 0xb0-0xb7 */\n  6398, 6400,   -1, 6402,   -1, 6404, 6406, 6408, /* 0xb8-0xbf */\n  6410, 6412, 6414, 6416,   -1, 6418, 6420, 6422, /* 0xc0-0xc7 */\n  6424, 6426, 6428, 6430, 6432, 6434, 6436, 6438, /* 0xc8-0xcf */\n  6440, 6442, 6444, 6446, 6448, 6450, 6452, 6454, /* 0xd0-0xd7 */\n  6456, 6458, 6460, 6462, 6464, 6466, 6468, 6470, /* 0xd8-0xdf */\n  6472, 6474, 6476, 6478, 6480, 6482, 6484, 6486, /* 0xe0-0xe7 */\n  6488, 6490, 6492, 6494, 6496, 6498, 6500, 6502, /* 0xe8-0xef */\n  6504, 6506, 6508, 6510, 6512, 6514, 6516, 6518, /* 0xf0-0xf7 */\n  6520, 6522, 6524, 6526, 6528, 6530, 6532, 6534, /* 0xf8-0xff */\n  /* 0x1d500 */\n  6536, 6538, 6540, 6542, 6544, 6546,   -1, 6548, /* 0x00-0x07 */\n  6550, 6552, 6554,   -1,   -1, 6556, 6558, 6560, /* 0x08-0x0f */\n  6562, 6564, 6566, 6568, 6570,   -1, 6572, 6574, /* 0x10-0x17 */\n  6576, 6578, 6580, 6582, 6584,   -1, 6586, 6588, /* 0x18-0x1f */\n  6590, 6592, 6594, 6596, 6598, 6600, 6602, 6604, /* 0x20-0x27 */\n  6606, 6608, 6610, 6612, 6614, 6616, 6618, 6620, /* 0x28-0x2f */\n  6622, 6624, 6626, 6628, 6630, 6632, 6634, 6636, /* 0x30-0x37 */\n  6638, 6640,   -1, 6642, 6644, 6646, 6648,   -1, /* 0x38-0x3f */\n  6650, 6652, 6654, 6656, 6658,   -1, 6660,   -1, /* 0x40-0x47 */\n    -1,   -1, 6662, 6664, 6666, 6668, 6670, 6672, /* 0x48-0x4f */\n  6674,   -1, 6676, 6678, 6680, 6682, 6684, 6686, /* 0x50-0x57 */\n  6688, 6690, 6692, 6694, 6696, 6698, 6700, 6702, /* 0x58-0x5f */\n  6704, 6706, 6708, 6710, 6712, 6714, 6716, 6718, /* 0x60-0x67 */\n  6720, 6722, 6724, 6726, 6728, 6730, 6732, 6734, /* 0x68-0x6f */\n  6736, 6738, 6740, 6742, 6744, 6746, 6748, 6750, /* 0x70-0x77 */\n  6752, 6754, 6756, 6758, 6760, 6762, 6764, 6766, /* 0x78-0x7f */\n  6768, 6770, 6772, 6774, 6776, 6778, 6780, 6782, /* 0x80-0x87 */\n  6784, 6786, 6788, 6790, 6792, 6794, 6796, 6798, /* 0x88-0x8f */\n  6800, 6802, 6804, 6806, 6808, 6810, 6812, 6814, /* 0x90-0x97 */\n  6816, 6818, 6820, 6822, 6824, 6826, 6828, 6830, /* 0x98-0x9f */\n  6832, 6834, 6836, 6838, 6840, 6842, 6844, 6846, /* 0xa0-0xa7 */\n  6848, 6850, 6852, 6854, 6856, 6858, 6860, 6862, /* 0xa8-0xaf */\n  6864, 6866, 6868, 6870, 6872, 6874, 6876, 6878, /* 0xb0-0xb7 */\n  6880, 6882, 6884, 6886, 6888, 6890, 6892, 6894, /* 0xb8-0xbf */\n  6896, 6898, 6900, 6902, 6904, 6906, 6908, 6910, /* 0xc0-0xc7 */\n  6912, 6914, 6916, 6918, 6920, 6922, 6924, 6926, /* 0xc8-0xcf */\n  6928, 6930, 6932, 6934, 6936, 6938, 6940, 6942, /* 0xd0-0xd7 */\n  6944, 6946, 6948, 6950, 6952, 6954, 6956, 6958, /* 0xd8-0xdf */\n  6960, 6962, 6964, 6966, 6968, 6970, 6972, 6974, /* 0xe0-0xe7 */\n  6976, 6978, 6980, 6982, 6984, 6986, 6988, 6990, /* 0xe8-0xef */\n  6992, 6994, 6996, 6998, 7000, 7002, 7004, 7006, /* 0xf0-0xf7 */\n  7008, 7010, 7012, 7014, 7016, 7018, 7020, 7022, /* 0xf8-0xff */\n  /* 0x1d600 */\n  7024, 7026, 7028, 7030, 7032, 7034, 7036, 7038, /* 0x00-0x07 */\n  7040, 7042, 7044, 7046, 7048, 7050, 7052, 7054, /* 0x08-0x0f */\n  7056, 7058, 7060, 7062, 7064, 7066, 7068, 7070, /* 0x10-0x17 */\n  7072, 7074, 7076, 7078, 7080, 7082, 7084, 7086, /* 0x18-0x1f */\n  7088, 7090, 7092, 7094, 7096, 7098, 7100, 7102, /* 0x20-0x27 */\n  7104, 7106, 7108, 7110, 7112, 7114, 7116, 7118, /* 0x28-0x2f */\n  7120, 7122, 7124, 7126, 7128, 7130, 7132, 7134, /* 0x30-0x37 */\n  7136, 7138, 7140, 7142, 7144, 7146, 7148, 7150, /* 0x38-0x3f */\n  7152, 7154, 7156, 7158, 7160, 7162, 7164, 7166, /* 0x40-0x47 */\n  7168, 7170, 7172, 7174, 7176, 7178, 7180, 7182, /* 0x48-0x4f */\n  7184, 7186, 7188, 7190, 7192, 7194, 7196, 7198, /* 0x50-0x57 */\n  7200, 7202, 7204, 7206, 7208, 7210, 7212, 7214, /* 0x58-0x5f */\n  7216, 7218, 7220, 7222, 7224, 7226, 7228, 7230, /* 0x60-0x67 */\n  7232, 7234, 7236, 7238, 7240, 7242, 7244, 7246, /* 0x68-0x6f */\n  7248, 7250, 7252, 7254, 7256, 7258, 7260, 7262, /* 0x70-0x77 */\n  7264, 7266, 7268, 7270, 7272, 7274, 7276, 7278, /* 0x78-0x7f */\n  7280, 7282, 7284, 7286, 7288, 7290, 7292, 7294, /* 0x80-0x87 */\n  7296, 7298, 7300, 7302, 7304, 7306, 7308, 7310, /* 0x88-0x8f */\n  7312, 7314, 7316, 7318, 7320, 7322, 7324, 7326, /* 0x90-0x97 */\n  7328, 7330, 7332, 7334, 7336, 7338, 7340, 7342, /* 0x98-0x9f */\n  7344, 7346, 7348, 7350,   -1,   -1,   -1,   -1, /* 0xa0-0xa7 */\n  7352, 7354, 7356, 7358, 7360, 7362, 7364, 7366, /* 0xa8-0xaf */\n  7368, 7370, 7372, 7374, 7376, 7378, 7380, 7382, /* 0xb0-0xb7 */\n  7384, 7386, 7388, 7390, 7392, 7394, 7396, 7398, /* 0xb8-0xbf */\n  7400, 7402, 7404, 7406, 7408, 7410, 7412, 7414, /* 0xc0-0xc7 */\n  7416, 7418, 7420, 7422, 7424, 7426, 7428, 7430, /* 0xc8-0xcf */\n  7432, 7434, 7436, 7438, 7440, 7442, 7444, 7446, /* 0xd0-0xd7 */\n  7448, 7450, 7452, 7454, 7456, 7458, 7460, 7462, /* 0xd8-0xdf */\n  7464, 7466, 7468, 7470, 7472, 7474, 7476, 7478, /* 0xe0-0xe7 */\n  7480, 7482, 7484, 7486, 7488, 7490, 7492, 7494, /* 0xe8-0xef */\n  7496, 7498, 7500, 7502, 7504, 7506, 7508, 7510, /* 0xf0-0xf7 */\n  7512, 7514, 7516, 7518, 7520, 7522, 7524, 7526, /* 0xf8-0xff */\n  /* 0x1d700 */\n  7528, 7530, 7532, 7534, 7536, 7538, 7540, 7542, /* 0x00-0x07 */\n  7544, 7546, 7548, 7550, 7552, 7554, 7556, 7558, /* 0x08-0x0f */\n  7560, 7562, 7564, 7566, 7568, 7570, 7572, 7574, /* 0x10-0x17 */\n  7576, 7578, 7580, 7582, 7584, 7586, 7588, 7590, /* 0x18-0x1f */\n  7592, 7594, 7596, 7598, 7600, 7602, 7604, 7606, /* 0x20-0x27 */\n  7608, 7610, 7612, 7614, 7616, 7618, 7620, 7622, /* 0x28-0x2f */\n  7624, 7626, 7628, 7630, 7632, 7634, 7636, 7638, /* 0x30-0x37 */\n  7640, 7642, 7644, 7646, 7648, 7650, 7652, 7654, /* 0x38-0x3f */\n  7656, 7658, 7660, 7662, 7664, 7666, 7668, 7670, /* 0x40-0x47 */\n  7672, 7674, 7676, 7678, 7680, 7682, 7684, 7686, /* 0x48-0x4f */\n  7688, 7690, 7692, 7694, 7696, 7698, 7700, 7702, /* 0x50-0x57 */\n  7704, 7706, 7708, 7710, 7712, 7714, 7716, 7718, /* 0x58-0x5f */\n  7720, 7722, 7724, 7726, 7728, 7730, 7732, 7734, /* 0x60-0x67 */\n  7736, 7738, 7740, 7742, 7744, 7746, 7748, 7750, /* 0x68-0x6f */\n  7752, 7754, 7756, 7758, 7760, 7762, 7764, 7766, /* 0x70-0x77 */\n  7768, 7770, 7772, 7774, 7776, 7778, 7780, 7782, /* 0x78-0x7f */\n  7784, 7786, 7788, 7790, 7792, 7794, 7796, 7798, /* 0x80-0x87 */\n  7800, 7802, 7804, 7806, 7808, 7810, 7812, 7814, /* 0x88-0x8f */\n  7816, 7818, 7820, 7822, 7824, 7826, 7828, 7830, /* 0x90-0x97 */\n  7832, 7834, 7836, 7838, 7840, 7842, 7844, 7846, /* 0x98-0x9f */\n  7848, 7850, 7852, 7854, 7856, 7858, 7860, 7862, /* 0xa0-0xa7 */\n  7864, 7866, 7868, 7870, 7872, 7874, 7876, 7878, /* 0xa8-0xaf */\n  7880, 7882, 7884, 7886, 7888, 7890, 7892, 7894, /* 0xb0-0xb7 */\n  7896, 7898, 7900, 7902, 7904, 7906, 7908, 7910, /* 0xb8-0xbf */\n  7912, 7914, 7916, 7918, 7920, 7922, 7924, 7926, /* 0xc0-0xc7 */\n  7928, 7930,   -1,   -1,   -1,   -1, 7932, 7934, /* 0xc8-0xcf */\n  7936, 7938, 7940, 7942, 7944, 7946, 7948, 7950, /* 0xd0-0xd7 */\n  7952, 7954, 7956, 7958, 7960, 7962, 7964, 7966, /* 0xd8-0xdf */\n  7968, 7970, 7972, 7974, 7976, 7978, 7980, 7982, /* 0xe0-0xe7 */\n  7984, 7986, 7988, 7990, 7992, 7994, 7996, 7998, /* 0xe8-0xef */\n  8000, 8002, 8004, 8006, 8008, 8010, 8012, 8014, /* 0xf0-0xf7 */\n  8016, 8018, 8020, 8022, 8024, 8026, 8028, 8030, /* 0xf8-0xff */\n};\nstatic const short translit_page2f8[544] = {\n  8032, 8034, 8036, 8038, 8040, 8042, 8044, 8046, /* 0x00-0x07 */\n  8048, 8050, 8052, 8054, 8056, 8058, 8060, 8062, /* 0x08-0x0f */\n  8064, 8066, 8068, 8070, 8072, 8074, 8076, 8078, /* 0x10-0x17 */\n  8080, 8082, 8084, 8086, 8088, 8090, 8092, 8094, /* 0x18-0x1f */\n  8096, 8098, 8100, 8102, 8104, 8106, 8108, 8110, /* 0x20-0x27 */\n  8112, 8114, 8116, 8118, 8120, 8122, 8124, 8126, /* 0x28-0x2f */\n  8128, 8130, 8132, 8134, 8136, 8138, 8140, 8142, /* 0x30-0x37 */\n  8144, 8146, 8148, 8150, 8152, 8154, 8156, 8158, /* 0x38-0x3f */\n  8160, 8162, 8164, 8166, 8168, 8170, 8172, 8174, /* 0x40-0x47 */\n  8176, 8178, 8180, 8182, 8184, 8186, 8188, 8190, /* 0x48-0x4f */\n  8192, 8194, 8196, 8198, 8200, 8202, 8204, 8206, /* 0x50-0x57 */\n  8208, 8210, 8212, 8214, 8216, 8218, 8220, 8222, /* 0x58-0x5f */\n  8224, 8226, 8228, 8230, 8232, 8234, 8236, 8238, /* 0x60-0x67 */\n  8240, 8242, 8244, 8246, 8248, 8250, 8252, 8254, /* 0x68-0x6f */\n  8256, 8258, 8260, 8262, 8264, 8266, 8268, 8270, /* 0x70-0x77 */\n  8272, 8274, 8276, 8278, 8280, 8282, 8284, 8286, /* 0x78-0x7f */\n  8288, 8290, 8292, 8294, 8296, 8298, 8300, 8302, /* 0x80-0x87 */\n  8304, 8306, 8308, 8310, 8312, 8314, 8316, 8318, /* 0x88-0x8f */\n  8320, 8322, 8324, 8326, 8328, 8330, 8332, 8334, /* 0x90-0x97 */\n  8336, 8338, 8340, 8342, 8344, 8346, 8348, 8350, /* 0x98-0x9f */\n  8352, 8354, 8356, 8358, 8360, 8362, 8364, 8366, /* 0xa0-0xa7 */\n  8368, 8370, 8372, 8374, 8376, 8378, 8380, 8382, /* 0xa8-0xaf */\n  8384, 8386, 8388, 8390, 8392, 8394, 8396, 8398, /* 0xb0-0xb7 */\n  8400, 8402, 8404, 8406, 8408, 8410, 8412, 8414, /* 0xb8-0xbf */\n  8416, 8418, 8420, 8422, 8424, 8426, 8428, 8430, /* 0xc0-0xc7 */\n  8432, 8434, 8436, 8438, 8440, 8442, 8444, 8446, /* 0xc8-0xcf */\n  8448, 8450, 8452, 8454, 8456, 8458, 8460, 8462, /* 0xd0-0xd7 */\n  8464, 8466, 8468, 8470, 8472, 8474, 8476, 8478, /* 0xd8-0xdf */\n  8480, 8482, 8484, 8486, 8488, 8490, 8492, 8494, /* 0xe0-0xe7 */\n  8496, 8498, 8500, 8502, 8504, 8506, 8508, 8510, /* 0xe8-0xef */\n  8512, 8514, 8516, 8518, 8520, 8522, 8524, 8526, /* 0xf0-0xf7 */\n  8528, 8530, 8532, 8534, 8536, 8538, 8540, 8542, /* 0xf8-0xff */\n  /* 0x2f900 */\n  8544, 8546, 8548, 8550, 8552, 8554, 8556, 8558, /* 0x00-0x07 */\n  8560, 8562, 8564, 8566, 8568, 8570, 8572, 8574, /* 0x08-0x0f */\n  8576, 8578, 8580, 8582, 8584, 8586, 8588, 8590, /* 0x10-0x17 */\n  8592, 8594, 8596, 8598, 8600, 8602, 8604, 8606, /* 0x18-0x1f */\n  8608, 8610, 8612, 8614, 8616, 8618, 8620, 8622, /* 0x20-0x27 */\n  8624, 8626, 8628, 8630, 8632, 8634, 8636, 8638, /* 0x28-0x2f */\n  8640, 8642, 8644, 8646, 8648, 8650, 8652, 8654, /* 0x30-0x37 */\n  8656, 8658, 8660, 8662, 8664, 8666, 8668, 8670, /* 0x38-0x3f */\n  8672, 8674, 8676, 8678, 8680, 8682, 8684, 8686, /* 0x40-0x47 */\n  8688, 8690, 8692, 8694, 8696, 8698, 8700, 8702, /* 0x48-0x4f */\n  8704, 8706, 8708, 8710, 8712, 8714, 8716, 8718, /* 0x50-0x57 */\n  8720, 8722, 8724, 8726, 8728, 8730, 8732, 8734, /* 0x58-0x5f */\n  8736, 8738, 8740, 8742, 8744, 8746, 8748, 8750, /* 0x60-0x67 */\n  8752, 8754, 8756, 8758, 8760, 8762, 8764, 8766, /* 0x68-0x6f */\n  8768, 8770, 8772, 8774, 8776, 8778, 8780, 8782, /* 0x70-0x77 */\n  8784, 8786, 8788, 8790, 8792, 8794, 8796, 8798, /* 0x78-0x7f */\n  8800, 8802, 8804, 8806, 8808, 8810, 8812, 8814, /* 0x80-0x87 */\n  8816, 8818, 8820, 8822, 8824, 8826, 8828, 8830, /* 0x88-0x8f */\n  8832, 8834, 8836, 8838, 8840, 8842, 8844, 8846, /* 0x90-0x97 */\n  8848, 8850, 8852, 8854, 8856, 8858, 8860, 8862, /* 0x98-0x9f */\n  8864, 8866, 8868, 8870, 8872, 8874, 8876, 8878, /* 0xa0-0xa7 */\n  8880, 8882, 8884, 8886, 8888, 8890, 8892, 8894, /* 0xa8-0xaf */\n  8896, 8898, 8900, 8902, 8904, 8906, 8908, 8910, /* 0xb0-0xb7 */\n  8912, 8914, 8916, 8918, 8920, 8922, 8924, 8926, /* 0xb8-0xbf */\n  8928, 8930, 8932, 8934, 8936, 8938, 8940, 8942, /* 0xc0-0xc7 */\n  8944, 8946, 8948, 8950, 8952, 8954, 8956, 8958, /* 0xc8-0xcf */\n  8960, 8962, 8964, 8966, 8968, 8970, 8972, 8974, /* 0xd0-0xd7 */\n  8976, 8978, 8980, 8982, 8984, 8986, 8988, 8990, /* 0xd8-0xdf */\n  8992, 8994, 8996, 8998, 9000, 9002, 9004, 9006, /* 0xe0-0xe7 */\n  9008, 9010, 9012, 9014, 9016, 9018, 9020, 9022, /* 0xe8-0xef */\n  9024, 9026, 9028, 9030, 9032, 9034, 9036, 9038, /* 0xf0-0xf7 */\n  9040, 9042, 9044, 9046, 9048, 9050, 9052, 9054, /* 0xf8-0xff */\n  /* 0x2fa00 */\n  9056, 9058, 9060, 9062, 9064, 9066, 9068, 9070, /* 0x00-0x07 */\n  9072, 9074, 9076, 9078, 9080, 9082, 9084, 9086, /* 0x08-0x0f */\n  9088, 9090, 9092, 9094, 9096, 9098, 9100, 9102, /* 0x10-0x17 */\n  9104, 9106, 9108, 9110, 9112, 9114,   -1,   -1, /* 0x18-0x1f */\n};\n\n#define translit_index(wc) \\\n  (wc >= 0x00a0 && wc < 0x01f8 ? translit_page00[wc-0x00a0] : \\\n   wc >= 0x0218 && wc < 0x0220 ? translit_page02[wc-0x0218] : \\\n   wc >= 0x02b8 && wc < 0x02e0 ? translit_page02_1[wc-0x02b8] : \\\n   wc >= 0x03d0 && wc < 0x0400 ? translit_page03[wc-0x03d0] : \\\n   wc == 0x0587 ? 654 : \\\n   wc >= 0x05f0 && wc < 0x05f8 ? translit_page05[wc-0x05f0] : \\\n   wc >= 0x0670 && wc < 0x0680 ? translit_page06[wc-0x0670] : \\\n   wc == 0x0e33 ? 678 : \\\n   wc >= 0x0eb0 && wc < 0x0ee0 ? translit_page0e[wc-0x0eb0] : \\\n   wc >= 0x0f70 && wc < 0x0f80 ? translit_page0f[wc-0x0f70] : \\\n   wc >= 0x1e00 && wc < 0x1ea0 ? translit_page1e[wc-0x1e00] : \\\n   wc >= 0x1ef0 && wc < 0x1ef8 ? translit_page1e_2[wc-0x1ef0] : \\\n   wc >= 0x2000 && wc < 0x2058 ? translit_page20[wc-0x2000] : \\\n   wc >= 0x20a8 && wc < 0x20b0 ? translit_page20_3[wc-0x20a8] : \\\n   wc >= 0x2100 && wc < 0x21d8 ? translit_page21[wc-0x2100] : \\\n   wc >= 0x2210 && wc < 0x2270 ? translit_page22[wc-0x2210] : \\\n   wc >= 0x22c0 && wc < 0x22f0 ? translit_page22_4[wc-0x22c0] : \\\n   wc >= 0x2400 && wc < 0x24f0 ? translit_page24[wc-0x2400] : \\\n   wc >= 0x2500 && wc < 0x2540 ? translit_page25[wc-0x2500] : \\\n   wc == 0x25e6 ? 2025 : \\\n   wc == 0x2a0c ? 2027 : \\\n   wc >= 0x2a70 && wc < 0x2a78 ? translit_page2a[wc-0x2a70] : \\\n   wc == 0x2e9f ? 2043 : \\\n   wc == 0x2ef3 ? 2045 : \\\n   wc >= 0x2f00 && wc < 0x2fd8 ? translit_page2f[wc-0x2f00] : \\\n   wc >= 0x3000 && wc < 0x30f8 ? translit_page30[wc-0x3000] : \\\n   wc >= 0x3130 && wc < 0x3190 ? translit_page31[wc-0x3130] : \\\n   wc >= 0x31f0 && wc < 0x3400 ? translit_page31_5[wc-0x31f0] : \\\n   wc >= 0xf900 && wc < 0xfa70 ? translit_pagef9[wc-0xf900] : \\\n   wc >= 0xfb00 && wc < 0xfb50 ? translit_pagefb[wc-0xfb00] : \\\n   wc >= 0xfe48 && wc < 0xfe70 ? translit_pagefe[wc-0xfe48] : \\\n   wc >= 0xff00 && wc < 0xfff0 ? translit_pageff[wc-0xff00] : \\\n   wc >= 0x1d400 && wc < 0x1d800 ? translit_page1d4[wc-0x1d400] : \\\n   wc >= 0x2f800 && wc < 0x2fa20 ? translit_page2f8[wc-0x2f800] : \\\n   -1)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ucs2.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2011, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UCS-2\n */\n\n/* Here we accept FFFE/FEFF marks as endianness indicators everywhere\n   in the stream, not just at the beginning. The default is big-endian. */\n/* The state is 0 if big-endian, 1 if little-endian. */\nstatic int\nucs2_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  int count = 0;\n  for (; n >= 2 && count <= RET_COUNT_MAX && count <= INT_MAX-2;) {\n    ucs4_t wc = (state ? s[0] + (s[1] << 8) : (s[0] << 8) + s[1]);\n    if (wc == 0xfeff) {\n    } else if (wc == 0xfffe) {\n      state ^= 1;\n    } else if (wc >= 0xd800 && wc < 0xe000) {\n      conv->istate = state;\n      return RET_SHIFT_ILSEQ(count);\n    } else {\n      *pwc = wc;\n      conv->istate = state;\n      return count+2;\n    }\n    s += 2; n -= 2; count += 2;\n  }\n  conv->istate = state;\n  return RET_TOOFEW(count);\n}\n\n/* But we output UCS-2 in big-endian order, without byte-order mark. */\n/* RFC 2152 says:\n   \"ISO/IEC 10646-1:1993(E) specifies that when characters the UCS-2 form are\n    serialized as octets, that the most significant octet appear first.\" */\nstatic int\nucs2_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x10000 && wc != 0xfffe && !(wc >= 0xd800 && wc < 0xe000)) {\n    if (n >= 2) {\n      r[0] = (unsigned char) (wc >> 8);\n      r[1] = (unsigned char) wc;\n      return 2;\n    } else\n      return RET_TOOSMALL;\n  } else\n    return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ucs2be.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UCS-2BE = UCS-2 big endian\n */\n\nstatic int\nucs2be_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  if (n >= 2) {\n    if (s[0] >= 0xd8 && s[0] < 0xe0) {\n      return RET_ILSEQ;\n    } else {\n      *pwc = (s[0] << 8) + s[1];\n      return 2;\n    }\n  }\n  return RET_TOOFEW(0);\n}\n\nstatic int\nucs2be_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x10000 && !(wc >= 0xd800 && wc < 0xe000)) {\n    if (n >= 2) {\n      r[0] = (unsigned char) (wc >> 8);\n      r[1] = (unsigned char) wc;\n      return 2;\n    } else\n      return RET_TOOSMALL;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ucs2internal.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UCS-2-INTERNAL = UCS-2 with machine dependent endianness and alignment\n */\n\nstatic int\nucs2internal_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  if (n >= 2) {\n    unsigned short x = *(const unsigned short *)s;\n    if (x >= 0xd800 && x < 0xe000) {\n      return RET_ILSEQ;\n    } else {\n      *pwc = x;\n      return 2;\n    }\n  }\n  return RET_TOOFEW(0);\n}\n\nstatic int\nucs2internal_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x10000 && !(wc >= 0xd800 && wc < 0xe000)) {\n    if (n >= 2) {\n      *(unsigned short *)r = wc;\n      return 2;\n    } else\n      return RET_TOOSMALL;\n  } else\n    return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ucs2le.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UCS-2LE = UCS-2 little endian\n */\n\nstatic int\nucs2le_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  if (n >= 2) {\n    if (s[1] >= 0xd8 && s[1] < 0xe0) {\n      return RET_ILSEQ;\n    } else {\n      *pwc = s[0] + (s[1] << 8);\n      return 2;\n    }\n  }\n  return RET_TOOFEW(0);\n}\n\nstatic int\nucs2le_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x10000 && !(wc >= 0xd800 && wc < 0xe000)) {\n    if (n >= 2) {\n      r[0] = (unsigned char) wc;\n      r[1] = (unsigned char) (wc >> 8);\n      return 2;\n    } else\n      return RET_TOOSMALL;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ucs2swapped.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UCS-2-SWAPPED = UCS-2-INTERNAL with inverted endianness\n */\n\nstatic int\nucs2swapped_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  /* This function assumes that 'unsigned short' has exactly 16 bits. */\n  if (sizeof(unsigned short) != 2) abort();\n\n  if (n >= 2) {\n    unsigned short x = *(const unsigned short *)s;\n    x = (x >> 8) | (x << 8);\n    if (x >= 0xd800 && x < 0xe000) {\n      return RET_ILSEQ;\n    } else {\n      *pwc = x;\n      return 2;\n    }\n  }\n  return RET_TOOFEW(0);\n}\n\nstatic int\nucs2swapped_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  /* This function assumes that 'unsigned short' has exactly 16 bits. */\n  if (sizeof(unsigned short) != 2) abort();\n\n  if (wc < 0x10000 && !(wc >= 0xd800 && wc < 0xe000)) {\n    if (n >= 2) {\n      unsigned short x = wc;\n      x = (x >> 8) | (x << 8);\n      *(unsigned short *)r = x;\n      return 2;\n    } else\n      return RET_TOOSMALL;\n  } else\n    return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ucs4.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2011, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UCS-4\n */\n\n/* Here we accept FFFE0000/0000FEFF marks as endianness indicators everywhere\n   in the stream, not just at the beginning. The default is big-endian. */\n/* The state is 0 if big-endian, 1 if little-endian. */\nstatic int\nucs4_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  int count = 0;\n  for (; n >= 4 && count <= RET_COUNT_MAX && count <= INT_MAX-4;) {\n    ucs4_t wc = (state\n                  ? s[0] + (s[1] << 8) + (s[2] << 16) + (s[3] << 24)\n                  : (s[0] << 24) + (s[1] << 16) + (s[2] << 8) + s[3]);\n    if (wc == 0x0000feff) {\n    } else if (wc == 0xfffe0000u) {\n      state ^= 1;\n    } else if (wc <= 0x7fffffff) {\n      *pwc = wc;\n      conv->istate = state;\n      return count+4;\n    } else {\n      conv->istate = state;\n      return RET_SHIFT_ILSEQ(count);\n    }\n    s += 4; n -= 4; count += 4;\n  }\n  conv->istate = state;\n  return RET_TOOFEW(count);\n}\n\n/* But we output UCS-4 in big-endian order, without byte-order mark. */\nstatic int\nucs4_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc <= 0x7fffffff) {\n    if (n >= 4) {\n      r[0] = (unsigned char) (wc >> 24);\n      r[1] = (unsigned char) (wc >> 16);\n      r[2] = (unsigned char) (wc >> 8);\n      r[3] = (unsigned char) wc;\n      return 4;\n    } else\n      return RET_TOOSMALL;\n  } else\n    return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ucs4be.h",
    "content": "/*\n * Copyright (C) 1999-2000, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UCS-4BE = UCS-4 big endian\n */\n\nstatic int\nucs4be_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  if (n >= 4) {\n    *pwc = (s[0] << 24) + (s[1] << 16) + (s[2] << 8) + s[3];\n    return 4;\n  }\n  return RET_TOOFEW(0);\n}\n\nstatic int\nucs4be_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 4) {\n    r[0] = (unsigned char) (wc >> 24);\n    r[1] = (unsigned char) (wc >> 16);\n    r[2] = (unsigned char) (wc >> 8);\n    r[3] = (unsigned char) wc;\n    return 4;\n  } else\n    return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ucs4internal.h",
    "content": "/*\n * Copyright (C) 1999-2000, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UCS-4-INTERNAL = UCS-4 with machine dependent endianness and alignment\n */\n\nstatic int\nucs4internal_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  if (n >= 4) {\n    *pwc = *(const unsigned int *)s;\n    return 4;\n  }\n  return RET_TOOFEW(0);\n}\n\nstatic int\nucs4internal_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 4) {\n    *(unsigned int *)r = wc;\n    return 4;\n  } else\n    return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ucs4le.h",
    "content": "/*\n * Copyright (C) 1999-2000, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UCS-4LE = UCS-4 little endian\n */\n\nstatic int\nucs4le_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  if (n >= 4) {\n    *pwc = s[0] + (s[1] << 8) + (s[2] << 16) + (s[3] << 24);\n    return 4;\n  }\n  return RET_TOOFEW(0);\n}\n\nstatic int\nucs4le_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 4) {\n    r[0] = (unsigned char) wc;\n    r[1] = (unsigned char) (wc >> 8);\n    r[2] = (unsigned char) (wc >> 16);\n    r[3] = (unsigned char) (wc >> 24);\n    return 4;\n  } else\n    return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/ucs4swapped.h",
    "content": "/*\n * Copyright (C) 1999-2000, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UCS-4-SWAPPED = UCS-4-INTERNAL with inverted endianness\n */\n\nstatic int\nucs4swapped_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  /* This function assumes that 'unsigned int' has exactly 32 bits. */\n  if (sizeof(unsigned int) != 4) abort();\n\n  if (n >= 4) {\n    unsigned int x = *(const unsigned int *)s;\n    x = (x >> 24) | ((x >> 8) & 0xff00) | ((x & 0xff00) << 8) | (x << 24);\n    *pwc = x;\n    return 4;\n  }\n  return RET_TOOFEW(0);\n}\n\nstatic int\nucs4swapped_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  /* This function assumes that 'unsigned int' has exactly 32 bits. */\n  if (sizeof(unsigned int) != 4) abort();\n\n  if (n >= 4) {\n    unsigned int x = wc;\n    x = (x >> 24) | ((x >> 8) & 0xff00) | ((x & 0xff00) << 8) | (x << 24);\n    *(unsigned int *)r = x;\n    return 4;\n  } else\n    return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/uhc_1.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * Unified Hangul Code part 1\n */\n\nstatic const unsigned short uhc_1_2uni_main_page81[64] = {\n  0xac02, 0xac8d, 0xad14, 0xad91, 0xadfa, 0xae7a, 0xaee6, 0xaf57,\n  0xafbf, 0xb030, 0xb0a5, 0xb122, 0xb19e, 0xb207, 0xb26f, 0xb2f0,\n  0xb366, 0xb3e1, 0xb445, 0xb4ad, 0xb51e, 0xb590, 0xb600, 0xb661,\n  0xb6c3, 0xb723, 0xb79f, 0xb811, 0xb885, 0xb8f1, 0xb95a, 0xb9d4,\n  0xba47, 0xbac2, 0xbb28, 0xbb9a, 0xbc03, 0xbc80, 0xbcfe, 0xbd67,\n  0xbdd2, 0xbe3d, 0xbeb8, 0xbf23, 0xbf83, 0xbfe6, 0xc040, 0xc0a7,\n  0xc132, 0xc1b1, 0xc224, 0xc297, 0xc310, 0xc37a, 0xc3db, 0xc446,\n  0xc4aa, 0xc50f, 0xc596, 0xc626, 0xc6a8, 0xc726, 0xc7b8, 0xc832,\n};\nstatic const unsigned char uhc_1_2uni_page81[5696] = {\n  /* 0x81 */\n  0x00, 0x01, 0x03, 0x04, 0x09, 0x0a, 0x0b, 0x0c,\n  0x0d, 0x16, 0x1c, 0x1d, 0x1f, 0x20, 0x21, 0x23,\n  0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2c, 0x30,\n  0x31, 0x32, 0x33, 0x34, 0x35, 0x38, 0x39, 0x3b,\n  0x3c, 0x3d, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44,\n  0x45, 0x46, 0x47, 0x48, 0x4a, 0x4c, 0x4d, 0x4e,\n  0x4f, 0x50, 0x51, 0x53, 0x54, 0x55, 0x57, 0x58,\n  0x59, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n  0x6a, 0x6b, 0x6c, 0x6d, 0x70, 0x71, 0x73, 0x74,\n  0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x80, 0x85,\n  0x86, 0x00, 0x01, 0x02, 0x04, 0x05, 0x06, 0x08,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x11, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1e, 0x20, 0x21,\n  0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2d,\n  0x31, 0x32, 0x33, 0x35, 0x36, 0x38, 0x39, 0x3a,\n  0x3c, 0x3d, 0x3e, 0x40, 0x41, 0x42, 0x43, 0x44,\n  0x45, 0x46, 0x47, 0x49, 0x4b, 0x4c, 0x4d, 0x4e,\n  0x4f, 0x50, 0x51, 0x52, 0x55, 0x56, 0x58, 0x59,\n  0x5c, 0x5e, 0x60, 0x61, 0x65, 0x67, 0x6a, 0x6b,\n  0x6c, 0x6d, 0x6e, 0x71, 0x72, 0x74, 0x75, 0x76,\n  0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x81, 0x83,\n  0x85, 0x86,\n  /* 0x82 */\n  0x00, 0x01, 0x02, 0x03, 0x05, 0x06, 0x07, 0x09,\n  0x0a, 0x0b, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12,\n  0x13, 0x14, 0x16, 0x17, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x22, 0x23, 0x25, 0x26, 0x27, 0x29,\n  0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x32, 0x34,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3d, 0x3e,\n  0x3f, 0x41, 0x42, 0x43, 0x45, 0x46, 0x47, 0x48,\n  0x49, 0x4a, 0x4b, 0x4c, 0x4e, 0x50, 0x51, 0x52,\n  0x53, 0x54, 0x55, 0x56, 0x57, 0x5a, 0x5b, 0x5d,\n  0x5e, 0x63, 0x64, 0x65, 0x66, 0x6a, 0x6c, 0x6f,\n  0x70, 0x71, 0x72, 0x73, 0x76, 0x77, 0x79, 0x7a,\n  0x7b, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0a, 0x0d, 0x0e, 0x0f, 0x10,\n  0x11, 0x12, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,\n  0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21,\n  0x22, 0x23, 0x24, 0x25, 0x27, 0x28, 0x29, 0x2a,\n  0x2b, 0x2c, 0x2d, 0x2e, 0x31, 0x32, 0x34, 0x35,\n  0x36, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e,\n  0x41, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49,\n  0x4a, 0x4c, 0x4d, 0x4e, 0x50, 0x51, 0x52, 0x54,\n  0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c,\n  0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64,\n  0x65, 0x66,\n  /* 0x83 */\n  0x00, 0x01, 0x03, 0x04, 0x08, 0x09, 0x0a, 0x0b,\n  0x0c, 0x0d, 0x10, 0x12, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,\n  0x31, 0x32, 0x33, 0x34, 0x35, 0x38, 0x39, 0x3b,\n  0x3c, 0x3f, 0x41, 0x42, 0x43, 0x44, 0x45, 0x48,\n  0x4a, 0x4d, 0x4e, 0x4f, 0x51, 0x55, 0x57, 0x58,\n  0x59, 0x5b, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x64,\n  0x68, 0x69, 0x6a, 0x6c, 0x6d, 0x70, 0x71, 0x73,\n  0x74, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c,\n  0x7d, 0x00, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09,\n  0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x13, 0x14,\n  0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c,\n  0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24,\n  0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c,\n  0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34,\n  0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c,\n  0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x45, 0x47, 0x48,\n  0x49, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51,\n  0x54, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x60,\n  0x61, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n  0x6a, 0x6b,\n  /* 0x84 */\n  0x00, 0x01, 0x03, 0x04, 0x06, 0x08, 0x09, 0x0a,\n  0x0b, 0x0c, 0x0d, 0x0f, 0x10, 0x11, 0x13, 0x14,\n  0x15, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x23, 0x24, 0x25, 0x26, 0x28,\n  0x29, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31,\n  0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39,\n  0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41,\n  0x42, 0x43, 0x44, 0x45, 0x48, 0x49, 0x4b, 0x4d,\n  0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x58,\n  0x5a, 0x5e, 0x5f, 0x60, 0x61, 0x64, 0x65, 0x66,\n  0x67, 0x68, 0x69, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,\n  0x70, 0x00, 0x01, 0x02, 0x03, 0x04, 0x07, 0x08,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0f, 0x10, 0x11, 0x12,\n  0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a,\n  0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x23,\n  0x24, 0x25, 0x26, 0x27, 0x28, 0x2a, 0x2b, 0x2c,\n  0x2e, 0x2f, 0x30, 0x32, 0x33, 0x34, 0x35, 0x36,\n  0x37, 0x38, 0x3b, 0x3c, 0x3d, 0x3f, 0x40, 0x41,\n  0x42, 0x43, 0x44, 0x46, 0x47, 0x48, 0x49, 0x4a,\n  0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52,\n  0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a,\n  0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x63, 0x64,\n  0x66, 0x67,\n  /* 0x85 */\n  0x00, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x0b,\n  0x0d, 0x10, 0x11, 0x12, 0x13, 0x14, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x33, 0x34,\n  0x36, 0x37, 0x38, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e,\n  0x3f, 0x40, 0x43, 0x44, 0x46, 0x47, 0x48, 0x49,\n  0x4a, 0x4b, 0x4c, 0x4e, 0x4f, 0x50, 0x52, 0x53,\n  0x54, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c,\n  0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66,\n  0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,\n  0x70, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n  0x0f, 0x10, 0x11, 0x12, 0x13, 0x16, 0x17, 0x19,\n  0x1b, 0x1d, 0x1f, 0x20, 0x21, 0x22, 0x26, 0x28,\n  0x2a, 0x2b, 0x2c, 0x2e, 0x2f, 0x30, 0x31, 0x32,\n  0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a,\n  0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42,\n  0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,\n  0x4b, 0x4e, 0x4f, 0x51, 0x52, 0x53, 0x55, 0x56,\n  0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5e, 0x60, 0x62,\n  0x63, 0x64, 0x65, 0x66, 0x67, 0x6b, 0x6d, 0x6e,\n  0x73, 0x74,\n  /* 0x86 */\n  0x00, 0x01, 0x02, 0x05, 0x0b, 0x0d, 0x11, 0x12,\n  0x14, 0x15, 0x16, 0x18, 0x19, 0x1a, 0x1b, 0x1c,\n  0x1d, 0x1e, 0x21, 0x25, 0x26, 0x27, 0x28, 0x29,\n  0x2a, 0x2d, 0x2e, 0x30, 0x31, 0x32, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3c, 0x3d, 0x3e,\n  0x3f, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x61, 0x62, 0x65, 0x68, 0x69, 0x6a, 0x6c,\n  0x6f, 0x70, 0x71, 0x72, 0x75, 0x79, 0x7a, 0x7b,\n  0x7c, 0x00, 0x04, 0x05, 0x07, 0x08, 0x09, 0x0b,\n  0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x14, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x20, 0x21, 0x23,\n  0x24, 0x25, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c,\n  0x2d, 0x30, 0x31, 0x34, 0x35, 0x37, 0x38, 0x39,\n  0x3b, 0x3c, 0x3d, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,\n  0x54, 0x55, 0x58, 0x59, 0x5b, 0x5c, 0x5d, 0x5f,\n  0x61, 0x62, 0x63, 0x64, 0x65, 0x68, 0x6a, 0x6c,\n  0x6d, 0x6e, 0x6f, 0x73, 0x74, 0x75, 0x77, 0x78,\n  0x79, 0x7b,\n  /* 0x87 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2f, 0x30, 0x31,\n  0x33, 0x34, 0x35, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x40, 0x42, 0x43, 0x44, 0x45, 0x46,\n  0x47, 0x48, 0x49, 0x4c, 0x4d, 0x4f, 0x50, 0x51,\n  0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a,\n  0x5c, 0x5e, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65,\n  0x68, 0x00, 0x02, 0x03, 0x06, 0x07, 0x08, 0x09,\n  0x0a, 0x0b, 0x0c, 0x0f, 0x11, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n  0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,\n  0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x36, 0x37, 0x38,\n  0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40,\n  0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,\n  0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50,\n  0x52, 0x53, 0x54, 0x56, 0x57, 0x58, 0x5a, 0x5b,\n  0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x63, 0x64, 0x65,\n  0x66, 0x67,\n  /* 0x88 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x07, 0x08, 0x09,\n  0x0a, 0x0b, 0x0c, 0x0e, 0x0f, 0x10, 0x11, 0x12,\n  0x13, 0x14, 0x17, 0x18, 0x19, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x23, 0x24, 0x26, 0x27, 0x28,\n  0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x33, 0x35, 0x38,\n  0x39, 0x3a, 0x3c, 0x3e, 0x3f, 0x40, 0x42, 0x43,\n  0x44, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c,\n  0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54,\n  0x55, 0x56, 0x57, 0x58, 0x5b, 0x5c, 0x5e, 0x5f,\n  0x60, 0x62, 0x64, 0x65, 0x66, 0x67, 0x68, 0x6b,\n  0x6d, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x78, 0x7a,\n  0x7b, 0x00, 0x01, 0x02, 0x06, 0x0c, 0x0d, 0x0e,\n  0x12, 0x13, 0x15, 0x16, 0x17, 0x19, 0x1a, 0x1b,\n  0x1c, 0x1d, 0x1e, 0x1f, 0x22, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2d, 0x2e, 0x2f, 0x30, 0x31,\n  0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39,\n  0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41,\n  0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49,\n  0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51,\n  0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63, 0x67, 0x69, 0x6a, 0x6d, 0x70, 0x71,\n  0x72, 0x73,\n  /* 0x89 */\n  0x00, 0x02, 0x04, 0x06, 0x07, 0x09, 0x0c, 0x0d,\n  0x0f, 0x10, 0x11, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1c, 0x20, 0x21, 0x22, 0x23, 0x24,\n  0x25, 0x27, 0x28, 0x29, 0x2b, 0x2c, 0x2d, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41,\n  0x43, 0x44, 0x45, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,\n  0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b,\n  0x5c, 0x5d, 0x60, 0x61, 0x63, 0x64, 0x67, 0x69,\n  0x6b, 0x6c, 0x6d, 0x70, 0x72, 0x74, 0x76, 0x78,\n  0x79, 0x00, 0x01, 0x02, 0x04, 0x05, 0x06, 0x08,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21,\n  0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29,\n  0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x30, 0x31, 0x32,\n  0x33, 0x34, 0x35, 0x36, 0x38, 0x39, 0x3a, 0x3c,\n  0x3d, 0x3e, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,\n  0x46, 0x49, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50,\n  0x51, 0x52, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63,\n  /* 0x8a */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0d, 0x0e, 0x10, 0x11, 0x12,\n  0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1d,\n  0x1f, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,\n  0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38,\n  0x39, 0x3a, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41,\n  0x42, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,\n  0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52,\n  0x53, 0x54, 0x55, 0x56, 0x57, 0x59, 0x5a, 0x5b,\n  0x5c, 0x5d, 0x5e, 0x60, 0x61, 0x62, 0x64, 0x65,\n  0x66, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x09, 0x0b, 0x0d, 0x0e, 0x0f, 0x10, 0x11,\n  0x12, 0x14, 0x15, 0x16, 0x18, 0x19, 0x1a, 0x1c,\n  0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x24, 0x25,\n  0x26, 0x27, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e,\n  0x31, 0x32, 0x34, 0x35, 0x38, 0x3a, 0x3b, 0x3c,\n  0x3d, 0x3e, 0x41, 0x43, 0x45, 0x46, 0x47, 0x48,\n  0x49, 0x4a, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51,\n  0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63, 0x64, 0x65, 0x66, 0x69, 0x6a, 0x6c,\n  0x6d, 0x70,\n  /* 0x8b */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x08, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x14, 0x15, 0x17, 0x18,\n  0x19, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21,\n  0x24, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x30, 0x31,\n  0x33, 0x34, 0x35, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x40, 0x44, 0x45, 0x46, 0x47, 0x48,\n  0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50,\n  0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58,\n  0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60,\n  0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68,\n  0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70,\n  0x71, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n  0x0f, 0x12, 0x13, 0x15, 0x16, 0x17, 0x19, 0x1c,\n  0x1d, 0x1e, 0x1f, 0x22, 0x26, 0x27, 0x28, 0x29,\n  0x2a, 0x2e, 0x2f, 0x31, 0x32, 0x33, 0x35, 0x36,\n  0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3e, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x49, 0x4a, 0x4b, 0x4c,\n  0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54,\n  0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5d,\n  0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65,\n  0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d,\n  0x6e, 0x6f,\n  /* 0x8c */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x12, 0x13, 0x15, 0x16, 0x17, 0x19, 0x1a, 0x1b,\n  0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,\n  0x24, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x35, 0x36,\n  0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e,\n  0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46,\n  0x47, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x00, 0x01, 0x02, 0x04, 0x05, 0x06, 0x08,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,\n  0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38,\n  0x39, 0x3a, 0x3d, 0x3e, 0x40, 0x41, 0x42, 0x44,\n  0x45, 0x46, 0x47, 0x48, 0x49, 0x4c, 0x4d, 0x4e,\n  0x4f, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x61,\n  /* 0x8d */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c, 0x2e, 0x2f, 0x30, 0x32,\n  0x33, 0x34, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3f, 0x40, 0x41, 0x43, 0x44, 0x45, 0x46,\n  0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e,\n  0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56,\n  0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e,\n  0x5f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x07, 0x08,\n  0x0a, 0x0b, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13,\n  0x14, 0x17, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n  0x1f, 0x20, 0x22, 0x23, 0x24, 0x26, 0x27, 0x28,\n  0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x33,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3e, 0x3f, 0x40, 0x42, 0x43, 0x44, 0x46,\n  0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4f, 0x51,\n  0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x5b, 0x5c,\n  0x5e, 0x5f, 0x60, 0x62, 0x63, 0x64, 0x65, 0x66,\n  0x67, 0x68, 0x6b, 0x70, 0x71, 0x72, 0x77, 0x78,\n  0x7a, 0x7b,\n  /* 0x8e */\n  0x00, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,\n  0x0b, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x17,\n  0x18, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x29,\n  0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32,\n  0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a,\n  0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42,\n  0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,\n  0x4b, 0x4c, 0x4f, 0x50, 0x52, 0x53, 0x54, 0x56,\n  0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5f, 0x63,\n  0x64, 0x65, 0x66, 0x67, 0x6b, 0x6c, 0x6e, 0x6f,\n  0x70, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x09, 0x0b, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12,\n  0x15, 0x16, 0x18, 0x19, 0x1a, 0x1c, 0x1d, 0x1e,\n  0x1f, 0x20, 0x21, 0x22, 0x25, 0x29, 0x2a, 0x2b,\n  0x2c, 0x2d, 0x2e, 0x30, 0x31, 0x32, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0x3e, 0x3f, 0x41, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4d, 0x4e, 0x50, 0x51, 0x52,\n  0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5d,\n  0x5f, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x68,\n  0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71,\n  0x72, 0x73,\n  /* 0x8f */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29,\n  0x2a, 0x2c, 0x2d, 0x2e, 0x30, 0x31, 0x32, 0x34,\n  0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3d, 0x3f,\n  0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x48, 0x49,\n  0x4a, 0x4c, 0x4d, 0x4e, 0x50, 0x51, 0x52, 0x53,\n  0x54, 0x55, 0x56, 0x57, 0x59, 0x5b, 0x5d, 0x5e,\n  0x5f, 0x60, 0x61, 0x62, 0x65, 0x66, 0x68, 0x69,\n  0x6a, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x09, 0x0b, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12,\n  0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b,\n  0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,\n  0x24, 0x25, 0x26, 0x28, 0x29, 0x2a, 0x2b, 0x2c,\n  0x2d, 0x2e, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,\n  0x46, 0x47, 0x48, 0x49, 0x4a, 0x4d, 0x4e, 0x50,\n  0x51, 0x52, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,\n  0x5a, 0x5c, 0x5d, 0x5f, 0x61, 0x62, 0x63, 0x64,\n  0x65, 0x66,\n  /* 0x90 */\n  0x00, 0x01, 0x03, 0x04, 0x05, 0x07, 0x08, 0x09,\n  0x0a, 0x0b, 0x0c, 0x0d, 0x10, 0x12, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1c, 0x1d, 0x1f, 0x20,\n  0x21, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29,\n  0x2c, 0x2e, 0x31, 0x32, 0x35, 0x36, 0x37, 0x38,\n  0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40,\n  0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,\n  0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50,\n  0x51, 0x54, 0x55, 0x57, 0x58, 0x59, 0x5b, 0x5c,\n  0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x64, 0x66, 0x68,\n  0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x70, 0x71, 0x73,\n  0x79, 0x00, 0x01, 0x02, 0x03, 0x06, 0x08, 0x0b,\n  0x0c, 0x0e, 0x12, 0x13, 0x15, 0x16, 0x17, 0x19,\n  0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x22, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2e, 0x2f, 0x30, 0x31,\n  0x32, 0x33, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a,\n  0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,\n  0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b,\n  0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63,\n  0x66, 0x67, 0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x70,\n  0x71, 0x72,\n  /* 0x91 */\n  0x00, 0x03, 0x05, 0x08, 0x09, 0x0a, 0x0b, 0x0f,\n  0x10, 0x12, 0x13, 0x14, 0x16, 0x17, 0x18, 0x19,\n  0x1a, 0x1b, 0x1c, 0x1f, 0x23, 0x24, 0x25, 0x26,\n  0x27, 0x28, 0x2b, 0x2c, 0x2e, 0x2f, 0x30, 0x32,\n  0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a,\n  0x3b, 0x3f, 0x41, 0x42, 0x43, 0x44, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x63, 0x66, 0x67, 0x68, 0x6a, 0x6c, 0x6d,\n  0x6e, 0x6f, 0x70, 0x73, 0x75, 0x77, 0x78, 0x79,\n  0x7a, 0x00, 0x01, 0x03, 0x04, 0x05, 0x07, 0x08,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x18, 0x19, 0x1a,\n  0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22,\n  0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a,\n  0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32,\n  0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3b,\n  0x3c, 0x3d, 0x3f, 0x40, 0x41, 0x43, 0x44, 0x45,\n  0x46, 0x47, 0x48, 0x49, 0x4a, 0x4c, 0x4e, 0x50,\n  0x51, 0x52, 0x53, 0x54, 0x55, 0x57, 0x58, 0x59,\n  0x5b, 0x5c, 0x5d, 0x5f, 0x60, 0x61, 0x62, 0x63,\n  0x64, 0x65,\n  /* 0x92 */\n  0x00, 0x02, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09,\n  0x0a, 0x0b, 0x0f, 0x11, 0x12, 0x17, 0x18, 0x19,\n  0x1a, 0x1b, 0x1e, 0x20, 0x22, 0x23, 0x24, 0x26,\n  0x29, 0x2a, 0x2b, 0x2d, 0x2e, 0x2f, 0x31, 0x32,\n  0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x3a, 0x3c,\n  0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x45,\n  0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,\n  0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55,\n  0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d,\n  0x5e, 0x5f, 0x61, 0x62, 0x63, 0x65, 0x66, 0x67,\n  0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70,\n  0x71, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0b, 0x0c, 0x0d, 0x0f, 0x10,\n  0x11, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,\n  0x1b, 0x1c, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,\n  0x24, 0x25, 0x27, 0x28, 0x29, 0x2b, 0x2c, 0x2d,\n  0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x37,\n  0x38, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40,\n  0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,\n  0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50,\n  0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58,\n  0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x60, 0x61, 0x63,\n  0x64, 0x67,\n  /* 0x93 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x07, 0x0b, 0x0d,\n  0x0f, 0x10, 0x16, 0x17, 0x1d, 0x1e, 0x1f, 0x20,\n  0x23, 0x25, 0x27, 0x28, 0x29, 0x2b, 0x2c, 0x2f,\n  0x30, 0x32, 0x33, 0x34, 0x36, 0x37, 0x38, 0x39,\n  0x3a, 0x3b, 0x3c, 0x3f, 0x43, 0x44, 0x45, 0x47,\n  0x48, 0x4b, 0x4c, 0x4e, 0x4f, 0x50, 0x51, 0x52,\n  0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5b,\n  0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63,\n  0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b,\n  0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73,\n  0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n  0x7c, 0x00, 0x01, 0x02, 0x03, 0x06, 0x07, 0x09,\n  0x0a, 0x0d, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x16,\n  0x18, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x22, 0x23,\n  0x25, 0x26, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e,\n  0x2f, 0x32, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3e, 0x3f, 0x41, 0x42, 0x43, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4e, 0x52, 0x53,\n  0x54, 0x56, 0x57, 0x59, 0x5a, 0x5b, 0x5d, 0x5e,\n  0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66,\n  0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e,\n  0x6f, 0x70, 0x71, 0x72, 0x73, 0x77, 0x79, 0x7a,\n  0x7b, 0x7d,\n  /* 0x94 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x08, 0x0a,\n  0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x13, 0x14,\n  0x15, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,\n  0x49, 0x4c, 0x4d, 0x4f, 0x50, 0x51, 0x53, 0x54,\n  0x55, 0x56, 0x57, 0x58, 0x59, 0x5c, 0x5d, 0x5e,\n  0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x67,\n  0x68, 0x00, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x1b, 0x1c, 0x1e, 0x1f, 0x24, 0x25, 0x26,\n  0x27, 0x28, 0x2b, 0x2d, 0x2f, 0x30, 0x31, 0x34,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3e,\n  0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46,\n  0x47, 0x48, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58,\n  0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60,\n  0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68,\n  0x69, 0x6a,\n  /* 0x95 */\n  0x00, 0x01, 0x04, 0x05, 0x07, 0x08, 0x09, 0x0b,\n  0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13,\n  0x14, 0x15, 0x16, 0x18, 0x19, 0x1a, 0x1b, 0x1c,\n  0x1d, 0x1f, 0x20, 0x21, 0x23, 0x24, 0x25, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2f, 0x30,\n  0x32, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3c,\n  0x3d, 0x3f, 0x40, 0x41, 0x43, 0x44, 0x45, 0x46,\n  0x47, 0x48, 0x49, 0x4c, 0x4e, 0x4f, 0x50, 0x51,\n  0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n  0x6a, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x09, 0x0a, 0x0c, 0x0d, 0x0e, 0x10, 0x12, 0x13,\n  0x14, 0x15, 0x16, 0x19, 0x1b, 0x1f, 0x20, 0x21,\n  0x22, 0x25, 0x26, 0x28, 0x29, 0x2a, 0x2c, 0x2e,\n  0x2f, 0x30, 0x31, 0x32, 0x35, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x41, 0x42, 0x44, 0x45, 0x46, 0x48,\n  0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x51, 0x55,\n  0x56, 0x57, 0x58, 0x59, 0x5a, 0x5d, 0x5e, 0x5f,\n  0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n  0x68, 0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x6f, 0x70,\n  0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78,\n  0x79, 0x7a,\n  /* 0x96 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x1a, 0x1b, 0x1d, 0x1e, 0x21, 0x22, 0x23, 0x24,\n  0x25, 0x26, 0x27, 0x29, 0x2a, 0x2e, 0x2f, 0x30,\n  0x31, 0x32, 0x33, 0x35, 0x36, 0x37, 0x38, 0x39,\n  0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41,\n  0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x4a,\n  0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x52, 0x53, 0x54,\n  0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c,\n  0x5d, 0x5e, 0x5f, 0x62, 0x66, 0x67, 0x68, 0x69,\n  0x6a, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n  0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,\n  0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1f, 0x20,\n  0x22, 0x23, 0x24, 0x26, 0x27, 0x28, 0x29, 0x2a,\n  0x2b, 0x2c, 0x2f, 0x30, 0x31, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,\n  0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,\n  0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55,\n  0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d,\n  0x5e, 0x5f,\n  /* 0x97 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c, 0x2e, 0x2f, 0x30, 0x31,\n  0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39,\n  0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41,\n  0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x4b, 0x4c,\n  0x4e, 0x4f, 0x50, 0x52, 0x53, 0x54, 0x55, 0x56,\n  0x57, 0x58, 0x5a, 0x5b, 0x5d, 0x5f, 0x60, 0x61,\n  0x62, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n  0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,\n  0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n  0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,\n  0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e,\n  0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36,\n  0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e,\n  0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46,\n  0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e,\n  0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x57,\n  0x58, 0x59,\n  /* 0x98 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x19,\n  0x1a, 0x1b, 0x1d, 0x1e, 0x1f, 0x21, 0x22, 0x23,\n  0x24, 0x25, 0x26, 0x27, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,\n  0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,\n  0x4e, 0x4f, 0x52, 0x53, 0x55, 0x56, 0x57, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x62, 0x64,\n  0x66, 0x00, 0x01, 0x02, 0x03, 0x04, 0x07, 0x0a,\n  0x0b, 0x10, 0x11, 0x12, 0x13, 0x14, 0x17, 0x1b,\n  0x1c, 0x1d, 0x1f, 0x20, 0x23, 0x24, 0x26, 0x27,\n  0x28, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,\n  0x33, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3f,\n  0x40, 0x42, 0x43, 0x44, 0x46, 0x47, 0x48, 0x49,\n  0x4a, 0x4b, 0x4c, 0x4f, 0x51, 0x53, 0x54, 0x55,\n  0x56, 0x57, 0x58, 0x5a, 0x5b, 0x5c, 0x5e, 0x5f,\n  0x60, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68,\n  0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x72,\n  0x73, 0x74, 0x7a, 0x7b, 0x7e, 0x81, 0x82, 0x83,\n  0x84, 0x87,\n  /* 0x99 */\n  0x00, 0x01, 0x02, 0x03, 0x05, 0x08, 0x09, 0x0b,\n  0x0c, 0x0d, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14,\n  0x15, 0x18, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21,\n  0x24, 0x25, 0x27, 0x28, 0x29, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x34, 0x38, 0x39, 0x3a,\n  0x3b, 0x3c, 0x3d, 0x3f, 0x40, 0x41, 0x43, 0x44,\n  0x45, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,\n  0x4e, 0x4f, 0x50, 0x51, 0x52, 0x54, 0x55, 0x56,\n  0x57, 0x58, 0x59, 0x5d, 0x5f, 0x60, 0x61, 0x63,\n  0x65, 0x66, 0x67, 0x68, 0x69, 0x6c, 0x6e, 0x70,\n  0x71, 0x72, 0x74, 0x75, 0x78, 0x79, 0x7b, 0x7c,\n  0x7d, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x14, 0x15, 0x16, 0x18, 0x19,\n  0x1a, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22,\n  0x24, 0x25, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x30, 0x31, 0x32, 0x34, 0x35, 0x36, 0x38,\n  0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x41, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4d,\n  0x4e, 0x50, 0x51, 0x52, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5d, 0x5f, 0x61, 0x62, 0x63,\n  0x64, 0x65, 0x66, 0x69, 0x6a, 0x6c, 0x6d, 0x70,\n  0x71, 0x72,\n  /* 0x9a */\n  0x00, 0x01, 0x02, 0x03, 0x06, 0x08, 0x0a, 0x0c,\n  0x0f, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2e, 0x2f, 0x31, 0x32, 0x33,\n  0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3d,\n  0x3e, 0x3f, 0x40, 0x42, 0x43, 0x44, 0x45, 0x46,\n  0x47, 0x4a, 0x4b, 0x4d, 0x4e, 0x4f, 0x51, 0x52,\n  0x53, 0x54, 0x55, 0x56, 0x57, 0x5a, 0x5c, 0x5e,\n  0x5f, 0x60, 0x61, 0x62, 0x63, 0x66, 0x67, 0x68,\n  0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x70, 0x71,\n  0x72, 0x00, 0x02, 0x03, 0x05, 0x07, 0x08, 0x09,\n  0x0a, 0x0b, 0x0c, 0x0f, 0x10, 0x12, 0x13, 0x14,\n  0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1f, 0x21,\n  0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a,\n  0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32,\n  0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a,\n  0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42,\n  0x43, 0x44, 0x47, 0x48, 0x4a, 0x4b, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x57, 0x59, 0x5b, 0x5c,\n  0x5d, 0x5e, 0x60, 0x63, 0x66, 0x67, 0x68, 0x6a,\n  0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x73, 0x74,\n  0x77, 0x78,\n  /* 0x9b */\n  0x00, 0x01, 0x02, 0x06, 0x07, 0x09, 0x0a, 0x0b,\n  0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x16,\n  0x17, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,\n  0x31, 0x32, 0x33, 0x34, 0x36, 0x37, 0x38, 0x39,\n  0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41,\n  0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49,\n  0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51,\n  0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x5a, 0x5b,\n  0x5d, 0x5e, 0x5f, 0x61, 0x63, 0x64, 0x65, 0x66,\n  0x67, 0x00, 0x01, 0x04, 0x05, 0x06, 0x07, 0x08,\n  0x09, 0x0b, 0x0c, 0x0d, 0x0f, 0x10, 0x11, 0x13,\n  0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b,\n  0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,\n  0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b,\n  0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c,\n  0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54,\n  0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c,\n  0x5d, 0x60,\n  /* 0x9c */\n  0x00, 0x02, 0x03, 0x06, 0x08, 0x09, 0x0a, 0x0b,\n  0x0c, 0x0f, 0x10, 0x11, 0x13, 0x14, 0x15, 0x16,\n  0x17, 0x18, 0x1b, 0x1c, 0x1e, 0x1f, 0x20, 0x21,\n  0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29,\n  0x2a, 0x2b, 0x2c, 0x2e, 0x2f, 0x30, 0x31, 0x32,\n  0x33, 0x34, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x4a, 0x4b, 0x4c,\n  0x4d, 0x4e, 0x4f, 0x50, 0x52, 0x53, 0x54, 0x56,\n  0x57, 0x58, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n  0x6a, 0x00, 0x01, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x20, 0x21,\n  0x23, 0x24, 0x25, 0x27, 0x28, 0x29, 0x2a, 0x2b,\n  0x2c, 0x2d, 0x30, 0x31, 0x32, 0x34, 0x35, 0x36,\n  0x37, 0x38, 0x39, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4f, 0x50,\n  0x51, 0x52, 0x53, 0x54, 0x55, 0x57, 0x58, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63,\n  /* 0x9d */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0f, 0x10,\n  0x11, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,\n  0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21,\n  0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29,\n  0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31,\n  0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39,\n  0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x40, 0x41, 0x42,\n  0x43, 0x44, 0x45, 0x48, 0x49, 0x4b, 0x4c, 0x4d,\n  0x4f, 0x51, 0x52, 0x53, 0x54, 0x58, 0x59, 0x5a,\n  0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x63,\n  0x64, 0x00, 0x02, 0x03, 0x04, 0x06, 0x07, 0x08,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0e, 0x0f, 0x10, 0x11,\n  0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x1b,\n  0x1c, 0x1e, 0x1f, 0x20, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x2b, 0x2d, 0x2f, 0x30, 0x31,\n  0x32, 0x33, 0x34, 0x37, 0x38, 0x3c, 0x40, 0x41,\n  0x42, 0x43, 0x47, 0x4b, 0x4c, 0x4d, 0x50, 0x53,\n  0x54, 0x56, 0x57, 0x58, 0x5a, 0x5b, 0x5c, 0x5d,\n  0x5e, 0x5f, 0x60, 0x63, 0x67, 0x68, 0x69, 0x6a,\n  0x6b, 0x6c, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x76,\n  0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7f, 0x81, 0x83,\n  0x84, 0x85,\n  /* 0x9e */\n  0x00, 0x03, 0x04, 0x05, 0x07, 0x08, 0x09, 0x0b,\n  0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x14,\n  0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c,\n  0x1d, 0x20, 0x21, 0x24, 0x29, 0x2a, 0x2b, 0x2c,\n  0x2d, 0x35, 0x37, 0x39, 0x3c, 0x3d, 0x3f, 0x40,\n  0x41, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49,\n  0x4c, 0x4e, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55,\n  0x59, 0x5b, 0x5c, 0x5d, 0x5f, 0x62, 0x63, 0x64,\n  0x65, 0x6c, 0x6d, 0x6e, 0x73, 0x74, 0x75, 0x77,\n  0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80,\n  0x81, 0x84, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c,\n  0x8d, 0x00, 0x01, 0x03, 0x04, 0x05, 0x09, 0x0b,\n  0x0c, 0x10, 0x12, 0x14, 0x16, 0x17, 0x18, 0x19,\n  0x1c, 0x1d, 0x1f, 0x20, 0x21, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2c, 0x30, 0x31, 0x32,\n  0x33, 0x34, 0x35, 0x38, 0x39, 0x3b, 0x3c, 0x3d,\n  0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,\n  0x47, 0x48, 0x4a, 0x4c, 0x4d, 0x4e, 0x4f, 0x50,\n  0x51, 0x54, 0x55, 0x57, 0x58, 0x59, 0x5b, 0x5c,\n  0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x64, 0x66, 0x68,\n  0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x70, 0x71, 0x73,\n  0x74, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c,\n  0x7d, 0x80,\n  /* 0x9f */\n  0x00, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x0a,\n  0x0b, 0x0d, 0x0e, 0x0f, 0x13, 0x14, 0x15, 0x16,\n  0x17, 0x1a, 0x1c, 0x1e, 0x1f, 0x20, 0x21, 0x22,\n  0x23, 0x26, 0x27, 0x29, 0x2a, 0x2b, 0x2d, 0x2e,\n  0x2f, 0x30, 0x31, 0x32, 0x33, 0x36, 0x37, 0x3a,\n  0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x42, 0x43, 0x45,\n  0x46, 0x47, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e,\n  0x4f, 0x52, 0x53, 0x54, 0x56, 0x57, 0x58, 0x59,\n  0x5a, 0x5b, 0x5e, 0x5f, 0x61, 0x62, 0x63, 0x65,\n  0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6e, 0x70,\n  0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x7a, 0x7b,\n  0x7d, 0x00, 0x01, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0c, 0x0e, 0x10, 0x12, 0x13, 0x14,\n  0x15, 0x18, 0x19, 0x1b, 0x1c, 0x1d, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x25, 0x28, 0x2a, 0x33, 0x34,\n  0x35, 0x37, 0x38, 0x39, 0x3b, 0x3c, 0x3d, 0x3e,\n  0x3f, 0x40, 0x41, 0x43, 0x44, 0x46, 0x47, 0x48,\n  0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x50, 0x51, 0x53,\n  0x54, 0x55, 0x59, 0x5a, 0x5b, 0x5c, 0x60, 0x65,\n  0x66, 0x67, 0x69, 0x6c, 0x6d, 0x6f, 0x73, 0x75,\n  0x76, 0x77, 0x78, 0x79, 0x7c, 0x81, 0x82, 0x83,\n  0x84, 0x85, 0x88, 0x89, 0x8b, 0x8c, 0x8d, 0x8f,\n  0x90, 0x91,\n  /* 0xa0 */\n  0x00, 0x01, 0x02, 0x03, 0x06, 0x0a, 0x0b, 0x0c,\n  0x0d, 0x0e, 0x0f, 0x12, 0x13, 0x15, 0x17, 0x19,\n  0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x21, 0x22,\n  0x23, 0x24, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b,\n  0x2d, 0x2e, 0x2f, 0x31, 0x32, 0x33, 0x35, 0x36,\n  0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e,\n  0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46,\n  0x47, 0x4a, 0x4b, 0x4d, 0x4e, 0x4f, 0x51, 0x53,\n  0x54, 0x55, 0x56, 0x57, 0x5a, 0x5c, 0x5f, 0x60,\n  0x61, 0x62, 0x63, 0x66, 0x67, 0x69, 0x6a, 0x6b,\n  0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x76,\n  0x78, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x07,\n  0x08, 0x09, 0x0b, 0x0c, 0x0d, 0x0f, 0x10, 0x11,\n  0x12, 0x13, 0x14, 0x15, 0x18, 0x19, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x23, 0x24, 0x25, 0x26,\n  0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e,\n  0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36,\n  0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x40,\n  0x41, 0x43, 0x44, 0x45, 0x47, 0x49, 0x4a, 0x4b,\n  0x4c, 0x4d, 0x50, 0x52, 0x56, 0x57, 0x58, 0x5c,\n  0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x63, 0x64, 0x65,\n  0x66, 0x67, 0x68, 0x69, 0x6a, 0x6c, 0x6e, 0x70,\n  0x71, 0x72,\n};\n\nstatic int\nuhc_1_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0x81 && c1 <= 0xa0)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x41 && c2 < 0x5b) || (c2 >= 0x61 && c2 < 0x7b) || (c2 >= 0x81 && c2 < 0xff)) {\n        unsigned int row = c1 - 0x81;\n        unsigned int col = c2 - (c2 >= 0x81 ? 0x4d : c2 >= 0x61 ? 0x47 : 0x41);\n        unsigned int i = 178 * row + col;\n        if (i < 5696) {\n          *pwc = (ucs4_t) (uhc_1_2uni_main_page81[2*row+(col>=89?1:0)] + uhc_1_2uni_page81[i]);\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short uhc_1_2charset_main[45] = {\n  0x8141, 0x81cd, 0x829b, 0x8363, 0x83e9, 0x84b7, 0x8585, 0x8647,\n  0x86d3, 0x87a1, 0x8869, 0x88ef, 0x89bd, 0x8a8b, 0x8b4d, 0x8bd9,\n  0x8ca7, 0x8d6f, 0x8df5, 0x8ec3, 0x8f91, 0x9053, 0x90df, 0x91ad,\n  0x9275, 0x92fb, 0x93c9, 0x9497, 0x9559, 0x95e5, 0x96b3, 0x9781,\n  0x9843, 0x98cf, 0x999d, 0x9a65, 0x9aeb, 0x9bb9, 0x9c87, 0x9d49,\n  0x9dd5, 0x9ea3, 0x9f6b, 0x9ff1, 0xa0bf,\n};\nstatic const unsigned char uhc_1_2charset[5696] = {\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,\n  0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b,\n  0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63,\n  0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b,\n  0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73,\n  0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n  0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83,\n  0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,\n  0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81,\n  0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,\n  0x8a, 0x8b, 0x8c, 0x8d, 0x94, 0x95, 0x96, 0x97,\n  0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,\n  0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x61, 0x62, 0x63, 0xa6, 0xa7, 0xa8, 0xa9,\n  0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1,\n  0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9,\n  0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, 0xc6, 0xc7,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,\n  0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,\n  0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55,\n  0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d,\n  0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65,\n  0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d,\n  0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75,\n  0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d,\n  0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x58, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n  0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71,\n  0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,\n  0x90, 0x91, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d,\n  0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5,\n  0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad,\n  0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91,\n  0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99,\n  0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1,\n  0xa2, 0xa3, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n  0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,\n  0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n  0x78, 0x79, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,\n  0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b,\n  0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63,\n  0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b,\n  0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73,\n  0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n  0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83,\n  0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x6e, 0x6f, 0x70, 0x71,\n  0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,\n  0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81,\n  0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x8e, 0x8f,\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,\n  0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,\n  0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,\n  0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0xa0, 0xa1,\n  0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9,\n  0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1,\n  0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,\n  0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,\n  0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55,\n  0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d,\n  0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65,\n  0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d,\n  0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75,\n  0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d,\n  0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n  0x6a, 0x6b, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n  0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,\n  0x88, 0x89, 0x8a, 0x8b, 0x92, 0x93, 0x94, 0x95,\n  0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d,\n  0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5,\n  0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad,\n  0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,\n  0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91,\n  0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99,\n  0x9a, 0x9b, 0x9c, 0x9d, 0xa4, 0xa5, 0xa6, 0xa7,\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n  0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,\n  0x70, 0x71, 0x72, 0x73, 0xb6, 0xb7, 0xb8, 0xb9,\n  0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,\n  0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b,\n  0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63,\n  0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b,\n  0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73,\n  0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n  0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83,\n  0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x68, 0x69,\n  0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71,\n  0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,\n  0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81,\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,\n  0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,\n  0xa0, 0xa1, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad,\n  0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1,\n  0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9,\n  0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1,\n  0xb2, 0xb3, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,\n  0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,\n  0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55,\n  0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d,\n  0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65,\n  0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d,\n  0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75,\n  0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d,\n  0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51,\n  0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63, 0x64, 0x65, 0x6c, 0x6d, 0x6e, 0x6f,\n  0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n  0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x8c, 0x8d,\n  0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95,\n  0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d,\n  0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5,\n  0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad,\n  0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x7e, 0x7f, 0x80, 0x81,\n  0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,\n  0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91,\n  0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x9e, 0x9f,\n  0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n  0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0xb0, 0xb1,\n  0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9,\n  0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,\n  0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b,\n  0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63,\n  0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b,\n  0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73,\n  0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n  0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83,\n  0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n  0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71,\n  0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,\n  0x7a, 0x7b, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,\n  0x98, 0x99, 0x9a, 0x9b, 0xa2, 0xa3, 0xa4, 0xa5,\n  0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad,\n  0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99,\n  0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1,\n  0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9,\n  0xaa, 0xab, 0xac, 0xad, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,\n  0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,\n  0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55,\n  0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d,\n  0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65,\n  0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d,\n  0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75,\n  0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d,\n  0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85,\n  0x00, 0x01, 0x02, 0x03, 0x46, 0x47, 0x48, 0x49,\n  0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51,\n  0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x66, 0x67,\n  0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,\n  0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n  0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,\n  0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d,\n  0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95,\n  0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d,\n  0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5,\n  0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad,\n  0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x78, 0x79,\n  0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81,\n  0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,\n  0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91,\n  0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,\n  0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n  0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1,\n  0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9,\n  0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1,\n  0x00, 0x01, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x28, 0x29, 0x2a, 0x2b,\n  0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,\n  0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b,\n  0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63,\n  0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b,\n  0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73,\n  0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n  0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83,\n  0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n  0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71,\n  0x72, 0x73, 0x74, 0x75, 0x7c, 0x7d, 0x7e, 0x7f,\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x9c, 0x9d,\n  0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5,\n  0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad,\n  0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x8e, 0x8f, 0x90, 0x91,\n  0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99,\n  0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1,\n  0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n  0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,\n  0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n  0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0xc0, 0xc1,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,\n  0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b,\n  0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63,\n  0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b,\n  0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73,\n  0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n  0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83,\n  0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,\n  0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81,\n  0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,\n  0x8a, 0x8b, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,\n  0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,\n  0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,\n  0xa8, 0xa9, 0xaa, 0xab, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x61, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9,\n  0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1,\n  0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9,\n  0xba, 0xbb, 0xbc, 0xbd, 0xc4, 0xc5, 0xc6, 0xc7,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,\n  0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,\n  0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55,\n  0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d,\n  0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65,\n  0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d,\n  0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75,\n  0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d,\n  0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x56, 0x57, 0x58, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n  0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x76, 0x77,\n  0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,\n  0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,\n  0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d,\n  0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5,\n  0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad,\n  0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x88, 0x89,\n  0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91,\n  0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99,\n  0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1,\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,\n  0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n  0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,\n  0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n  0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,\n  0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b,\n  0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63,\n  0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b,\n  0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73,\n  0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b,\n  0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83,\n  0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71,\n  0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,\n  0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81,\n  0x82, 0x83, 0x84, 0x85, 0x8c, 0x8d, 0x8e, 0x8f,\n  0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,\n  0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,\n  0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xac, 0xad,\n  0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n  0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,\n  0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,\n  0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,\n  0x58, 0x59, 0x5a, 0x5b, 0x9e, 0x9f, 0xa0, 0xa1,\n  0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9,\n  0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1,\n  0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,\n  0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,\n  0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55,\n  0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d,\n  0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65,\n  0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d,\n  0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75,\n  0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d,\n  0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x50, 0x51,\n  0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,\n  0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61,\n  0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,\n  0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n  0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,\n  0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,\n  0x88, 0x89, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95,\n  0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d,\n  0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5,\n  0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad,\n  0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5,\n  0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,\n  0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,\n};\n\nstatic const Summary16 uhc_1_uni2indx_pageac[459] = {\n  /* 0xac00 */\n  {    0, 0xf86c }, {    9, 0xc100 }, {   12, 0x4fee }, {   23, 0xecfc },\n  {   34, 0xd7fe }, {   47, 0xeeef }, {   60, 0xffff }, {   76, 0xfa6c },\n  {   86, 0xe184 }, {   92, 0x4fee }, {  103, 0x68fc }, {  112, 0xc4fe },\n  {  122, 0xeeed }, {  134, 0xff5f }, {  148, 0x6a6c }, {  156, 0xcf94 },\n  /* 0xad00 */\n  {  165, 0x4fae }, {  175, 0xeefd }, {  188, 0xcdfe }, {  200, 0xeecf },\n  {  212, 0xfd4f }, {  224, 0xfeee }, {  237, 0xcff5 }, {  249, 0x4786 },\n  {  256, 0xecf9 }, {  267, 0xcffe }, {  280, 0xffef }, {  295, 0xff7f },\n  {  310, 0xfeec }, {  322, 0xeff4 }, {  334, 0xffee }, {  348, 0x6cff },\n  /* 0xae00 */\n  {  360, 0xd4fc }, {  370, 0xffef }, {  385, 0xffff }, {  401, 0xfa6c },\n  {  411, 0x8b94 }, {  418, 0x4fae }, {  428, 0xecdc }, {  438, 0xc4fe },\n  {  448, 0xefcf }, {  461, 0xffff }, {  477, 0xffff }, {  493, 0x8fff },\n  {  506, 0x4fee }, {  517, 0xecfc }, {  528, 0xd6ff }, {  541, 0xeeef },\n  /* 0xaf00 */\n  {  554, 0xde7f }, {  567, 0xfffe }, {  582, 0xcfff }, {  596, 0x4fea },\n  {  606, 0xfcf1 }, {  617, 0xcffe }, {  630, 0xffcf }, {  644, 0xfdff },\n  {  659, 0xfeee }, {  672, 0xefdc }, {  684, 0xffff }, {  700, 0xecff },\n  {  713, 0x947e }, {  722, 0xefef }, {  736, 0xfcff }, {  750, 0xfeec },\n  /* 0xb000 */\n  {  762, 0xefec }, {  774, 0xcfee }, {  786, 0xfeff }, {  801, 0xffff },\n  {  817, 0xaacf }, {  827, 0xdd47 }, {  837, 0xffff }, {  853, 0xcfff },\n  {  867, 0x4fee }, {  878, 0x68fd }, {  888, 0x04f8 }, {  894, 0xeec5 },\n  {  904, 0xfc4f }, {  915, 0xfeec }, {  927, 0xffde }, {  941, 0xffff },\n  /* 0xb100 */\n  {  957, 0xe4ff }, {  969, 0xc4f2 }, {  977, 0xeec7 }, {  988, 0xfc4f },\n  {  999, 0xfeec }, { 1011, 0xeecc }, { 1021, 0xfffe }, { 1036, 0xecff },\n  { 1049, 0xd4fa }, { 1059, 0xeee3 }, { 1070, 0xfeff }, { 1085, 0xffff },\n  { 1101, 0xefff }, { 1116, 0x4fee }, { 1127, 0xecff }, { 1140, 0xd5fe },\n  /* 0xb200 */\n  { 1152, 0xe6cf }, { 1163, 0xfd4f }, { 1175, 0xfffe }, { 1190, 0xefef },\n  { 1204, 0xffff }, { 1220, 0xeeff }, { 1234, 0xfcfe }, { 1247, 0xefcf },\n  { 1260, 0xfdcf }, { 1273, 0xf8ec }, { 1283, 0xeb94 }, { 1292, 0xffee },\n  { 1306, 0xecff }, { 1319, 0xd4fa }, { 1329, 0x068b }, { 1335, 0x7047 },\n  /* 0xb300 */\n  { 1342, 0xfeec }, { 1354, 0xefc4 }, { 1364, 0xffff }, { 1380, 0xffff },\n  { 1396, 0xffff }, { 1412, 0x268f }, { 1420, 0xb54f }, { 1430, 0xfeec },\n  { 1442, 0xefc4 }, { 1452, 0xffee }, { 1466, 0xeefc }, { 1478, 0xffff },\n  { 1494, 0xa6cf }, { 1504, 0xd54e }, { 1513, 0xfeee }, { 1526, 0xefff },\n  /* 0xb400 */\n  { 1541, 0xffff }, { 1557, 0xeefe }, { 1570, 0xf4fe }, { 1582, 0xffef },\n  { 1597, 0xffff }, { 1613, 0xfeec }, { 1625, 0xefd4 }, { 1636, 0xffff },\n  { 1652, 0xfefe }, { 1666, 0xdfff }, { 1681, 0xeeef }, { 1694, 0xfd5f },\n  { 1707, 0xfeee }, { 1720, 0xcfde }, { 1732, 0x4fa6 }, { 1741, 0xfefd },\n  /* 0xb500 */\n  { 1755, 0xffff }, { 1771, 0xe6cf }, { 1782, 0xf84f }, { 1792, 0xfeec },\n  { 1804, 0xc7c4 }, { 1812, 0x4fee }, { 1823, 0xfffc }, { 1837, 0xffff },\n  { 1853, 0xffff }, { 1869, 0xffff }, { 1885, 0xf2ec }, { 1895, 0xc7c4 },\n  { 1903, 0x4fee }, { 1914, 0xfefc }, { 1927, 0xefff }, { 1942, 0xffff },\n  /* 0xb600 */\n  { 1958, 0xffff }, { 1974, 0xfeec }, { 1986, 0xefdf }, { 2000, 0xffef },\n  { 2015, 0xfeff }, { 2030, 0xffff }, { 2046, 0xfeef }, { 2060, 0xffff },\n  { 2076, 0xffff }, { 2092, 0xcfff }, { 2106, 0xe7ee }, { 2118, 0xfffd },\n  { 2133, 0xffff }, { 2149, 0xffef }, { 2164, 0xffff }, { 2180, 0xfeee },\n  /* 0xb700 */\n  { 2193, 0xffdc }, { 2206, 0xffff }, { 2222, 0x6cff }, { 2234, 0xf4fe },\n  { 2246, 0xeeef }, { 2259, 0xffcf }, { 2273, 0xfeee }, { 2286, 0xcfd4 },\n  { 2296, 0x4fee }, { 2307, 0xec38 }, { 2315, 0xc4fe }, { 2325, 0xfecf },\n  { 2338, 0xfd7f }, { 2352, 0xffff }, { 2368, 0xcfff }, { 2382, 0x4fee },\n  /* 0xb800 */\n  { 2393, 0xec7c }, { 2403, 0xd4fe }, { 2414, 0xeecf }, { 2426, 0xfc4f },\n  { 2437, 0xffee }, { 2451, 0xcff5 }, { 2463, 0x4fee }, { 2474, 0xeefd },\n  { 2487, 0xdfff }, { 2502, 0xffff }, { 2518, 0xfeff }, { 2533, 0xfeee },\n  { 2546, 0xefd4 }, { 2557, 0x5fee }, { 2569, 0xecfd }, { 2581, 0xd4fe },\n  /* 0xb900 */\n  { 2592, 0xffef }, { 2607, 0xfeff }, { 2622, 0xfffe }, { 2637, 0xcfff },\n  { 2651, 0x6fee }, { 2663, 0xecfd }, { 2675, 0xd4fe }, { 2686, 0xeecf },\n  { 2698, 0x994f }, { 2707, 0xffff }, { 2723, 0xcfff }, { 2737, 0x4fee },\n  { 2748, 0x2cfd }, { 2758, 0x94f8 }, { 2766, 0xeec5 }, { 2776, 0xf84f },\n  /* 0xba00 */\n  { 2786, 0xfefc }, { 2799, 0xffdf }, { 2814, 0xffff }, { 2830, 0xecff },\n  { 2843, 0x94fa }, { 2852, 0xeec7 }, { 2863, 0xfc4f }, { 2874, 0xfeec },\n  { 2886, 0xef47 }, { 2897, 0xffff }, { 2913, 0xe4ff }, { 2925, 0xd4fa },\n  { 2935, 0xfeef }, { 2949, 0xfcff }, { 2963, 0xffff }, { 2979, 0xefff },\n  /* 0xbb00 */\n  { 2994, 0x5fee }, { 3006, 0xeefd }, { 3019, 0xf5fe }, { 3032, 0x868f },\n  { 3040, 0x5d4f }, { 3050, 0xfeee }, { 3063, 0xeff5 }, { 3076, 0xffff },\n  { 3092, 0xeeff }, { 3106, 0xfffe }, { 3121, 0xeeef }, { 3134, 0xff6f },\n  { 3148, 0xfeee }, { 3161, 0xfff6 }, { 3175, 0xffff }, { 3191, 0x6cff },\n  /* 0xbc00 */\n  { 3203, 0x44fa }, { 3211, 0x060d }, { 3216, 0xdd4f }, { 3227, 0xfeec },\n  { 3239, 0xcdc4 }, { 3247, 0xdffe }, { 3261, 0xffff }, { 3277, 0xffff },\n  { 3293, 0xa6cf }, { 3303, 0xf94f }, { 3314, 0xfe6c }, { 3325, 0xcfc4 },\n  { 3334, 0x5fee }, { 3346, 0xeedc }, { 3357, 0xffff }, { 3373, 0xee8f },\n  /* 0xbd00 */\n  { 3384, 0xfd4f }, { 3396, 0xffee }, { 3410, 0xefef }, { 3424, 0xffff },\n  { 3440, 0xecfe }, { 3452, 0xfcfe }, { 3465, 0xfeef }, { 3479, 0xffff },\n  { 3495, 0xf86c }, { 3504, 0xe9d4 }, { 3513, 0xffef }, { 3528, 0xfefe },\n  { 3542, 0xffff }, { 3558, 0xeecf }, { 3570, 0xfdff }, { 3585, 0xfeee },\n  /* 0xbe00 */\n  { 3598, 0xcfd6 }, { 3609, 0x4fee }, { 3620, 0xffff }, { 3636, 0xffff },\n  { 3652, 0xaecf }, { 3663, 0xf14f }, { 3673, 0xfaec }, { 3684, 0xc7c4 },\n  { 3692, 0x4fee }, { 3703, 0xfcfc }, { 3715, 0xfeff }, { 3730, 0xffff },\n  { 3746, 0xffff }, { 3762, 0xfe6c }, { 3773, 0xefc6 }, { 3784, 0xffff },\n  /* 0xbf00 */\n  { 3800, 0xfcfd }, { 3813, 0xc4ff }, { 3824, 0xffff }, { 3840, 0xffff },\n  { 3856, 0xfeec }, { 3868, 0xffdc }, { 3881, 0xffff }, { 3897, 0xffff },\n  { 3913, 0xffff }, { 3929, 0xffef }, { 3944, 0xffff }, { 3960, 0xfffe },\n  { 3975, 0xcfdf }, { 3988, 0x6fee }, { 4000, 0xfffd }, { 4015, 0xffff },\n  /* 0xc000 */\n  { 4031, 0xffff }, { 4047, 0xffff }, { 4063, 0xffff }, { 4079, 0xefff },\n  { 4094, 0xffff }, { 4110, 0xeefd }, { 4123, 0xfcfe }, { 4136, 0xffff },\n  { 4152, 0xffff }, { 4168, 0xfeec }, { 4180, 0x4fd4 }, { 4189, 0x4f86 },\n  { 4197, 0xecdc }, { 4207, 0xc4fe }, { 4217, 0xeecf }, { 4229, 0xfd4f },\n  /* 0xc100 */\n  { 4241, 0xfeee }, { 4254, 0x0fde }, { 4264, 0x4f26 }, { 4272, 0xecbc },\n  { 4282, 0xc4fe }, { 4292, 0xeecf }, { 4304, 0xfc4f }, { 4315, 0xfeee },\n  { 4328, 0x8fdf }, { 4340, 0x4fae }, { 4350, 0xecdd }, { 4361, 0xdffe },\n  { 4375, 0xeeef }, { 4388, 0xfe6f }, { 4401, 0xfeee }, { 4414, 0xcff4 },\n  /* 0xc200 */\n  { 4425, 0x4fee }, { 4436, 0x6cfd }, { 4447, 0x54fe }, { 4457, 0xffe9 },\n  { 4470, 0xfeff }, { 4485, 0xfeec }, { 4497, 0xcfde }, { 4509, 0x4fee },\n  { 4520, 0xfcfd }, { 4533, 0xd6fe }, { 4545, 0xcecf }, { 4556, 0xfd4f },\n  { 4568, 0xffff }, { 4584, 0xcfff }, { 4598, 0x47e6 }, { 4607, 0xe4bd },\n  /* 0xc300 */\n  { 4617, 0xccfe }, { 4628, 0xeec7 }, { 4639, 0xfccf }, { 4651, 0xffff },\n  { 4667, 0xffdf }, { 4682, 0xffff }, { 4698, 0xecff }, { 4711, 0xccfa },\n  { 4721, 0xeeef }, { 4734, 0xffff }, { 4750, 0xffff }, { 4766, 0xffff },\n  { 4782, 0xfffe }, { 4797, 0x6cff }, { 4809, 0xdcfa }, { 4820, 0xfecf },\n  /* 0xc400 */\n  { 4833, 0xfeff }, { 4848, 0xfffe }, { 4863, 0xefef }, { 4877, 0xcfee },\n  { 4889, 0xfeff }, { 4904, 0xffff }, { 4920, 0xeecf }, { 4932, 0xfdcf },\n  { 4945, 0xfffe }, { 4960, 0xefef }, { 4974, 0xffff }, { 4990, 0xeeff },\n  { 5004, 0xffff }, { 5020, 0xffff }, { 5036, 0xfdff }, { 5051, 0x7aec },\n  /* 0xc500 */\n  { 5061, 0xeffc }, { 5074, 0xefee }, { 5087, 0xecff }, { 5100, 0xd4fe },\n  { 5111, 0x88cf }, { 5119, 0x9c47 }, { 5127, 0xfeec }, { 5139, 0xcfc4 },\n  { 5148, 0x4f6e }, { 5158, 0xee5d }, { 5169, 0xfdfe }, { 5183, 0x84cf },\n  { 5191, 0xa80f }, { 5198, 0xfeec }, { 5210, 0x8fd4 }, { 5219, 0x0f2e },\n  /* 0xc600 */\n  { 5227, 0xee1c }, { 5236, 0xe4fe }, { 5247, 0x8ecf }, { 5257, 0xf546 },\n  { 5266, 0xfeec }, { 5278, 0xcfc4 }, { 5287, 0x6ffe }, { 5300, 0xecfd },\n  { 5312, 0xd4fe }, { 5323, 0xeecf }, { 5335, 0xfd4f }, { 5347, 0xf8ec },\n  { 5357, 0xcfd4 }, { 5367, 0xcfee }, { 5379, 0xecfc }, { 5390, 0xdcfe },\n  /* 0xc700 */\n  { 5402, 0xeecf }, { 5414, 0xfd4f }, { 5426, 0xfeec }, { 5438, 0xcf54 },\n  { 5447, 0x4bee }, { 5457, 0xee01 }, { 5464, 0xf6fe }, { 5477, 0x8ecf },\n  { 5487, 0xb847 }, { 5495, 0xfa2c }, { 5504, 0xcf84 }, { 5512, 0x4fee },\n  { 5523, 0xacfc }, { 5533, 0xdefe }, { 5546, 0xeeef }, { 5559, 0xffff },\n  /* 0xc800 */\n  { 5575, 0xfaec }, { 5586, 0xcf94 }, { 5595, 0x4fee }, { 5606, 0xeefd },\n  { 5619, 0xccfe }, { 5630, 0xffef }, { 5645, 0xffff }, { 5661, 0xfaec },\n  { 5672, 0xc714 }, { 5679, 0x5fef }, { 5692, 0x001d },\n};\n\nstatic int\nuhc_1_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    if (wc >= 0xac00 && wc < 0xc8b0) {\n      const Summary16 *summary = &uhc_1_uni2indx_pageac[(wc>>4)-0xac0];\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        used += summary->indx;\n        c = uhc_1_2charset_main[used>>7] + uhc_1_2charset[used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/uhc_2.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2012, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * Unified Hangul Code part 2\n */\n\nstatic const unsigned short uhc_2_2uni_main_pagea1[76] = {\n  0xc8a5, 0xc8d8, 0xc910, 0xc93e, 0xc971, 0xc9a5, 0xc9de, 0xca1c,\n  0xca47, 0xca7b, 0xcaa8, 0xcadd, 0xcb0b, 0xcb3a, 0xcb6d, 0xcb99,\n  0xcbc5, 0xcbf3, 0xcc25, 0xcc67, 0xcc94, 0xcccf, 0xccfe, 0xcd34,\n  0xcd61, 0xcd92, 0xcdc6, 0xcdf5, 0xce2c, 0xce5d, 0xce9a, 0xcecc,\n  0xcf02, 0xcf3b, 0xcf6d, 0xcf9e, 0xcfcc, 0xcfff, 0xd02e, 0xd064,\n  0xd095, 0xd0cc, 0xd105, 0xd132, 0xd16e, 0xd19b, 0xd1d0, 0xd1fd,\n  0xd22a, 0xd25e, 0xd28d, 0xd2c5, 0xd2fb, 0xd33e, 0xd36a, 0xd3a1,\n  0xd3d7, 0xd40d, 0xd438, 0xd467, 0xd49e, 0xd4c9, 0xd4fe, 0xd52e,\n  0xd564, 0xd59d, 0xd5ca, 0xd606, 0xd63d, 0xd677, 0xd6ab, 0xd6e2,\n  0xd715, 0xd74e, 0xd78d, 0xfffd,\n};\nstatic const unsigned char uhc_2_2uni_pagea1[3126] = {\n  /* 0xa1 */\n  0x00, 0x01, 0x02, 0x04, 0x05, 0x06, 0x07, 0x08,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x19, 0x1a,\n  0x1b, 0x1c, 0x1d, 0x1e, 0x20, 0x21, 0x22, 0x24,\n  0x25, 0x26, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x31, 0x00, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x0a, 0x0b, 0x0d, 0x0e, 0x0f, 0x10, 0x11,\n  0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,\n  0x1a, 0x1b, 0x1c, 0x1e, 0x1f, 0x20, 0x21, 0x22,\n  0x23, 0x26, 0x27, 0x29, 0x2a, 0x2b, 0x2f, 0x30,\n  0x31, 0x32, 0x33, 0x36,\n  /* 0xa2 */\n  0x00, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x09,\n  0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11,\n  0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,\n  0x1a, 0x1b, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22,\n  0x23, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b,\n  0x2c, 0x2d, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x14, 0x15, 0x17, 0x18,\n  0x19, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21,\n  0x24, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c,\n  0x2d, 0x2f, 0x30, 0x31,\n  /* 0xa3 */\n  0x00, 0x01, 0x02, 0x04, 0x05, 0x06, 0x07, 0x08,\n  0x09, 0x0a, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11,\n  0x12, 0x13, 0x14, 0x15, 0x16, 0x19, 0x1a, 0x1c,\n  0x1d, 0x1e, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x29, 0x2b, 0x2d, 0x2e, 0x2f, 0x30, 0x31,\n  0x32, 0x33, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1d, 0x1e, 0x20,\n  0x21, 0x24, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2d,\n  0x2f, 0x32, 0x33, 0x36,\n  /* 0xa4 */\n  0x00, 0x01, 0x03, 0x05, 0x07, 0x08, 0x0a, 0x0b,\n  0x0c, 0x0d, 0x10, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1c, 0x1d, 0x1f, 0x20, 0x21, 0x23, 0x24,\n  0x25, 0x26, 0x27, 0x28, 0x29, 0x2c, 0x30, 0x31,\n  0x32, 0x33, 0x34, 0x35, 0x37, 0x38, 0x39, 0x3b,\n  0x3c, 0x3d, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0e,\n  0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,\n  0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n  0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,\n  0x27, 0x28, 0x29, 0x2a,\n  /* 0xa5 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x07, 0x08, 0x0a,\n  0x0b, 0x0c, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13,\n  0x14, 0x17, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29,\n  0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31,\n  0x32, 0x33, 0x00, 0x01, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c,\n  /* 0xa6 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x16, 0x17, 0x19, 0x1a,\n  0x1b, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,\n  0x26, 0x28, 0x2a, 0x2c, 0x2d, 0x2e, 0x2f, 0x32,\n  0x33, 0x34, 0x00, 0x01, 0x02, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2c, 0x2d,\n  /* 0xa7 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x06, 0x07, 0x08,\n  0x0a, 0x0b, 0x0c, 0x0e, 0x0f, 0x10, 0x11, 0x12,\n  0x13, 0x14, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c,\n  0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24,\n  0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c,\n  0x2d, 0x2e, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x10,\n  0x11, 0x13, 0x14, 0x15, 0x17, 0x18, 0x19, 0x1a,\n  0x1b, 0x1c, 0x1d, 0x20, 0x21, 0x22, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2b, 0x2c, 0x2d, 0x2e,\n  0x2f, 0x30, 0x31, 0x32,\n  /* 0xa8 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0d, 0x0e, 0x0f, 0x10, 0x11,\n  0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,\n  0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21,\n  0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29,\n  0x2a, 0x2b, 0x00, 0x01, 0x02, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n  0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,\n  0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b,\n  /* 0xa9 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x20, 0x21,\n  0x23, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b,\n  0x2c, 0x2d, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x1b, 0x1c, 0x1e, 0x1f, 0x20,\n  0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x2b,\n  0x2c, 0x2d, 0x30, 0x31,\n  /* 0xaa */\n  0x00, 0x01, 0x05, 0x06, 0x08, 0x0a, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x15, 0x1a, 0x1b,\n  0x1c, 0x1d, 0x1e, 0x21, 0x22, 0x24, 0x25, 0x26,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x31,\n  0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3c, 0x3d,\n  0x3e, 0x40, 0x00, 0x02, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x0a, 0x0b, 0x0c, 0x0d, 0x0f, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c,\n  /* 0xab */\n  0x00, 0x01, 0x02, 0x03, 0x06, 0x07, 0x09, 0x0a,\n  0x0b, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13,\n  0x16, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x22,\n  0x23, 0x25, 0x26, 0x27, 0x29, 0x2a, 0x2b, 0x2c,\n  0x2d, 0x2e, 0x2f, 0x32, 0x34, 0x36, 0x37, 0x38,\n  0x39, 0x3a, 0x00, 0x02, 0x03, 0x04, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1e, 0x1f, 0x20, 0x22,\n  0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a,\n  0x2b, 0x2c, 0x2d, 0x2e,\n  /* 0xac */\n  0x00, 0x01, 0x02, 0x04, 0x05, 0x06, 0x07, 0x08,\n  0x09, 0x0c, 0x0d, 0x0f, 0x10, 0x11, 0x13, 0x14,\n  0x15, 0x16, 0x17, 0x18, 0x19, 0x1c, 0x1e, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x27, 0x28, 0x29,\n  0x2b, 0x2c, 0x2d, 0x2f, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x35, 0x00, 0x01, 0x02, 0x03, 0x04, 0x06,\n  0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n  0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,\n  0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n  0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,\n  0x27, 0x29, 0x2a, 0x2b,\n  /* 0xad */\n  0x00, 0x01, 0x02, 0x04, 0x05, 0x06, 0x07, 0x08,\n  0x09, 0x0a, 0x0d, 0x0f, 0x11, 0x12, 0x13, 0x14,\n  0x15, 0x16, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e,\n  0x2f, 0x30, 0x00, 0x01, 0x04, 0x05, 0x07, 0x08,\n  0x09, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11,\n  0x14, 0x16, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,\n  0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e,\n  0x2f, 0x30, 0x31, 0x33,\n  /* 0xae */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x07, 0x08,\n  0x09, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11,\n  0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,\n  0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21,\n  0x23, 0x24, 0x25, 0x27, 0x28, 0x29, 0x2b, 0x2c,\n  0x2d, 0x2e, 0x00, 0x01, 0x02, 0x05, 0x07, 0x09,\n  0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x10, 0x11, 0x12,\n  0x14, 0x15, 0x16, 0x18, 0x19, 0x1a, 0x1b, 0x1c,\n  0x1d, 0x1e, 0x20, 0x21, 0x22, 0x23, 0x25, 0x26,\n  0x27, 0x28, 0x29, 0x2a, 0x2d, 0x2e, 0x30, 0x31,\n  0x32, 0x34, 0x35, 0x36,\n  /* 0xaf */\n  0x00, 0x01, 0x02, 0x03, 0x06, 0x08, 0x0a, 0x0b,\n  0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13,\n  0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b,\n  0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,\n  0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b,\n  0x2e, 0x2f, 0x00, 0x01, 0x05, 0x06, 0x07, 0x08,\n  0x09, 0x0a, 0x0d, 0x0f, 0x11, 0x12, 0x13, 0x14,\n  0x15, 0x16, 0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x29, 0x2b,\n  0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x35, 0x36,\n  0x38, 0x39, 0x3a, 0x3c,\n  /* 0xb0 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x08, 0x0c,\n  0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x14, 0x15, 0x16,\n  0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n  0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x1a, 0x1b, 0x1d, 0x1e, 0x21, 0x22,\n  0x23, 0x24, 0x25, 0x26, 0x27, 0x2a, 0x2e, 0x2f,\n  0x30, 0x31, 0x32, 0x33,\n  /* 0xb1 */\n  0x00, 0x01, 0x03, 0x04, 0x05, 0x07, 0x08, 0x09,\n  0x0a, 0x0b, 0x0c, 0x0d, 0x10, 0x12, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1b, 0x1c, 0x1d, 0x1f,\n  0x20, 0x21, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2c, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x37, 0x38, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x1b, 0x1c, 0x1e, 0x1f, 0x20,\n  0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x2b,\n  0x2d, 0x2f, 0x30, 0x31,\n  /* 0xb2 */\n  0x00, 0x01, 0x02, 0x05, 0x06, 0x08, 0x09, 0x0a,\n  0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x14,\n  0x15, 0x16, 0x17, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,\n  0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e,\n  0x2f, 0x30, 0x00, 0x01, 0x02, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x27, 0x28, 0x29,\n  0x2a, 0x2b, 0x2c, 0x2d,\n  /* 0xb3 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x16, 0x17, 0x19, 0x1a,\n  0x1b, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,\n  0x26, 0x28, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x31, 0x32, 0x00, 0x02, 0x03, 0x04, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21,\n  0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29,\n  0x2a, 0x2b, 0x2c, 0x2d,\n  /* 0xb4 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x08, 0x09,\n  0x0b, 0x0c, 0x0d, 0x0f, 0x10, 0x11, 0x12, 0x13,\n  0x14, 0x15, 0x18, 0x1a, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x23, 0x24, 0x25, 0x27, 0x28, 0x29,\n  0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x33,\n  0x34, 0x35, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x0a, 0x0b, 0x0d, 0x0e, 0x0f, 0x11,\n  0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x1a, 0x1b,\n  0x1c, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24,\n  0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c,\n  0x2d, 0x2e, 0x2f, 0x30,\n  /* 0xb5 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x11,\n  0x12, 0x14, 0x15, 0x16, 0x18, 0x19, 0x1a, 0x1b,\n  0x1c, 0x1d, 0x1e, 0x21, 0x23, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2d, 0x2e, 0x30, 0x31, 0x32,\n  0x35, 0x36, 0x00, 0x01, 0x02, 0x03, 0x06, 0x0a,\n  0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x12, 0x13, 0x15,\n  0x16, 0x17, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n  0x1f, 0x22, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b,\n  0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34,\n  0x35, 0x36, 0x37, 0x38,\n  /* 0xb6 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x00, 0x01, 0x03, 0x04, 0x05, 0x07,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x10, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1c, 0x1d, 0x1f, 0x20,\n  0x21, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29,\n  0x2c, 0x2e, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x37, 0x38, 0x39, 0x3b,\n  /* 0xb7 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0f, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x18, 0x19,\n  0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22,\n  0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a,\n  0x2b, 0x2c, 0x00, 0x01, 0x02, 0x03, 0x04, 0x07,\n  0x08, 0x0a, 0x0b, 0x0c, 0x0e, 0x0f, 0x10, 0x11,\n  0x12, 0x13, 0x14, 0x17, 0x19, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x20, 0x22, 0x23, 0x24, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,\n  0x31, 0x32, 0x33, 0x34,\n  /* 0xb8 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x25, 0x26, 0x27, 0x29, 0x2a,\n  0x2b, 0x2c, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x08, 0x09, 0x0b, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c,\n  /* 0xb9 */\n  0x00, 0x01, 0x04, 0x05, 0x07, 0x08, 0x09, 0x0b,\n  0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x14, 0x16,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,\n  0x31, 0x33, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n  0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,\n  0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n  0x1f, 0x20, 0x21, 0x24, 0x25, 0x27, 0x28, 0x29,\n  0x2b, 0x2c, 0x2d, 0x2e,\n  /* 0xba */\n  0x00, 0x01, 0x02, 0x05, 0x06, 0x07, 0x09, 0x0a,\n  0x0b, 0x0c, 0x0d, 0x0e, 0x10, 0x11, 0x12, 0x14,\n  0x15, 0x16, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x20, 0x21, 0x22, 0x23, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2d, 0x2e, 0x30, 0x31, 0x34,\n  0x36, 0x37, 0x00, 0x01, 0x02, 0x05, 0x07, 0x08,\n  0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x10, 0x11,\n  0x12, 0x14, 0x15, 0x16, 0x18, 0x19, 0x1a, 0x1b,\n  0x1c, 0x1d, 0x1e, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2d, 0x2e, 0x30,\n  0x31, 0x32, 0x34, 0x35,\n  /* 0xbb */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x07, 0x09, 0x0b,\n  0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x14, 0x16, 0x17,\n  0x18, 0x1a, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x23,\n  0x27, 0x28, 0x29, 0x2b, 0x2c, 0x2f, 0x30, 0x32,\n  0x33, 0x34, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,\n  0x28, 0x29, 0x2a, 0x2b,\n  /* 0xbc */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x14, 0x15, 0x17, 0x18, 0x19, 0x1b,\n  0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x24, 0x28,\n  0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x30, 0x31, 0x33,\n  0x34, 0x35, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x09, 0x0b, 0x0d, 0x0e, 0x0f, 0x10, 0x11,\n  0x12, 0x14, 0x15, 0x16, 0x18, 0x19, 0x1a, 0x1c,\n  0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x25, 0x26,\n  0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x30, 0x31,\n  0x32, 0x33, 0x34, 0x35,\n  /* 0xbd */\n  0x00, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,\n  0x09, 0x0b, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12,\n  0x13, 0x14, 0x17, 0x18, 0x1a, 0x1b, 0x1c, 0x1e,\n  0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x27, 0x29,\n  0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x32, 0x33,\n  0x34, 0x35, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,\n  0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n  0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,\n  0x27, 0x28, 0x29, 0x2a,\n  /* 0xbe */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x09, 0x0a, 0x0b, 0x0d, 0x0e, 0x0f, 0x10, 0x11,\n  0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,\n  0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21,\n  0x22, 0x23, 0x25, 0x26, 0x27, 0x29, 0x2a, 0x2b,\n  0x2d, 0x2e, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x07, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x13, 0x14, 0x16, 0x17, 0x1a, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x23, 0x25, 0x27, 0x28, 0x29,\n  0x2a, 0x2b, 0x2c, 0x2e, 0x2f, 0x30, 0x31, 0x32,\n  0x33, 0x34, 0x35, 0x36,\n  /* 0xbf */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,\n  0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,\n  0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,\n  0x29, 0x2a, 0x00, 0x01, 0x02, 0x04, 0x05, 0x06,\n  0x08, 0x09, 0x0a, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,\n  0x11, 0x12, 0x14, 0x15, 0x17, 0x18, 0x19, 0x1a,\n  0x1b, 0x1c, 0x1d, 0x1e, 0x20, 0x21, 0x22, 0x24,\n  0x25, 0x26, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x30, 0x31, 0x33,\n  /* 0xc0 */\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x07, 0x08,\n  0x09, 0x0b, 0x0c, 0x0d, 0x0f, 0x10, 0x11, 0x12,\n  0x13, 0x14, 0x15, 0x18, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x10, 0x11, 0x13, 0x14, 0x15, 0x17, 0x18, 0x19,\n  0x1a, 0x1b, 0x1c, 0x1d, 0x20, 0x22, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2c, 0x2d, 0x2f, 0x30,\n  0x31, 0x33, 0x34, 0x35,\n  /* 0xc1 */\n  0x00, 0x02, 0x03, 0x06, 0x08, 0x0a, 0x0b, 0x0c,\n  0x0d, 0x0e, 0x0f, 0x12, 0x13, 0x15, 0x16, 0x17,\n  0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x22,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2d, 0x2e,\n  0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36,\n  0x37, 0x38, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n  0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,\n  0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n  0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,\n  0x27, 0x28, 0x29, 0x2a,\n  /* 0xc2 */\n  0x00, 0x01, 0x03, 0x04, 0x05, 0x07, 0x09, 0x0a,\n  0x0b, 0x0c, 0x0d, 0x10, 0x12, 0x14, 0x15, 0x16,\n  0x17, 0x18, 0x19, 0x1c, 0x1d, 0x1f, 0x20, 0x21,\n  0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2c,\n  0x2e, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x38,\n  0x39, 0x3b, 0x00, 0x01, 0x03, 0x04, 0x05, 0x06,\n  0x07, 0x08, 0x09, 0x0c, 0x10, 0x11, 0x12, 0x13,\n  0x14, 0x15, 0x17, 0x18, 0x19, 0x1b, 0x1c, 0x1d,\n  0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,\n  0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,\n  0x30, 0x31, 0x34, 0x35,\n  /* 0xc3 */\n  0x00, 0x01, 0x02, 0x04, 0x05, 0x06, 0x07, 0x09,\n  0x0a, 0x0d, 0x0f, 0x11, 0x12, 0x13, 0x15, 0x16,\n  0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x20, 0x21, 0x22,\n  0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2b,\n  0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x35, 0x36,\n  0x38, 0x39, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,\n  0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0d, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x17, 0x18, 0x1a,\n  0x1b, 0x1c, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,\n  0x24, 0x25, 0x27, 0x29, 0x2b, 0x2c, 0x2d, 0x2e,\n  0x2f, 0x30, 0x32, 0x33,\n  /* 0xc4 */\n  0x00, 0x02, 0x03, 0x04, 0x06, 0x07, 0x08, 0x09,\n  0x0a, 0x0b, 0x0c, 0x0d, 0x0f, 0x11, 0x12, 0x13,\n  0x14, 0x15, 0x16, 0x17, 0x18, 0x1b, 0x1c, 0x1e,\n  0x1f, 0x20, 0x22, 0x23, 0x24, 0x25, 0x27, 0x28,\n  0x2a, 0x2b, 0x2d, 0x2f, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x36, 0x00, 0x01, 0x03, 0x04, 0x05, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0f, 0x10,\n  0x11, 0x12, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,\n  0x1c, 0x1d, 0x1f, 0x20, 0x21, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x30, 0x31, 0x32,\n  /* 0xc5 */\n  0x00, 0x01, 0x02, 0x05, 0x06, 0x08, 0x09, 0x0a,\n  0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x15,\n  0x17, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x21,\n  0x22, 0x24, 0x25, 0x26, 0x28, 0x29, 0x2a, 0x2b,\n  0x2c, 0x2d, 0x2e, 0x30, 0x31, 0x33, 0x35, 0x36,\n  0x37, 0x38, 0x00, 0x01, 0x04, 0x05, 0x07, 0x0c,\n  0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x14, 0x16, 0x18,\n  0x19, 0x1a, 0x1c, 0x1d, 0x1f, 0x20, 0x21, 0x23,\n  0x24, 0x25, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c,\n  0x2d, 0x30, 0x31, 0x32, 0x34, 0x35, 0x36, 0x37,\n  0x38, 0x39, 0x3c, 0x3d,\n  /* 0xc6 */\n  0x00, 0x01, 0x02, 0x04, 0x05, 0x06, 0x07, 0x08,\n  0x09, 0x0a, 0x0d, 0x0f, 0x11, 0x12, 0x13, 0x14,\n  0x15, 0x16,\n};\n\nstatic int\nuhc_2_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c1 = s[0];\n  if ((c1 >= 0xa1 && c1 <= 0xc6)) {\n    if (n >= 2) {\n      unsigned char c2 = s[1];\n      if ((c2 >= 0x41 && c2 < 0x5b) || (c2 >= 0x61 && c2 < 0x7b) || (c2 >= 0x81 && c2 < 0xa1)) {\n        unsigned int row = c1 - 0xa1;\n        unsigned int col = c2 - (c2 >= 0x81 ? 0x4d : c2 >= 0x61 ? 0x47 : 0x41);\n        unsigned int i = 84 * row + col;\n        if (i < 3126) {\n          *pwc = (ucs4_t) (uhc_2_2uni_main_pagea1[2*row+(col>=42?1:0)] + uhc_2_2uni_pagea1[i]);\n          return 2;\n        }\n      }\n      return RET_ILSEQ;\n    }\n    return RET_TOOFEW(0);\n  }\n  return RET_ILSEQ;\n}\n\nstatic const unsigned short uhc_2_2charset_main[49] = {\n  0xa141, 0xa18d, 0xa273, 0xa359, 0xa445, 0xa491, 0xa577, 0xa663,\n  0xa749, 0xa795, 0xa881, 0xa967, 0xaa4d, 0xaa99, 0xab85, 0xac6b,\n  0xad51, 0xad9d, 0xae89, 0xaf6f, 0xb055, 0xb141, 0xb18d, 0xb273,\n  0xb359, 0xb445, 0xb491, 0xb577, 0xb663, 0xb749, 0xb795, 0xb881,\n  0xb967, 0xba4d, 0xba99, 0xbb85, 0xbc6b, 0xbd51, 0xbd9d, 0xbe89,\n  0xbf6f, 0xc055, 0xc141, 0xc18d, 0xc273, 0xc359, 0xc445, 0xc491,\n  0xc577,\n};\nstatic const unsigned char uhc_2_2charset[3126] = {\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x28, 0x29, 0x2a, 0x2b,\n  0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0xe8, 0xe9, 0xea, 0xeb,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0xca, 0xcb, 0xcc, 0xcd,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xea, 0xeb,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0xac, 0xad, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xcc, 0xcd,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7,\n  0xd8, 0xd9, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe8, 0xe9, 0xea, 0xeb,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0xa4, 0xa5, 0xa6, 0xa7,\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,\n  0xd0, 0xd1, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x28, 0x29, 0x2a, 0x2b,\n  0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0xe8, 0xe9, 0xea, 0xeb,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0xca, 0xcb, 0xcc, 0xcd,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xea, 0xeb,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0xac, 0xad, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xcc, 0xcd,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7,\n  0xd8, 0xd9, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe8, 0xe9, 0xea, 0xeb,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x1a, 0x1b, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,\n  0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0xa4, 0xa5, 0xa6, 0xa7,\n  0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xc4, 0xc5,\n  0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,\n  0xd0, 0xd1, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,\n  0x18, 0x19, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x36, 0x37, 0x38, 0x39, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x28, 0x29, 0x2a, 0x2b,\n  0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33,\n  0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0xe8, 0xe9, 0xea, 0xeb,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,\n  0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35,\n  0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43,\n  0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,\n  0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,\n  0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,\n  0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,\n  0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,\n  0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,\n  0xc8, 0xc9, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd,\n  0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,\n  0x00, 0x01, 0x02, 0x03, 0x0a, 0x0b, 0x0c, 0x0d,\n  0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,\n  0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,\n  0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,\n  0x26, 0x27, 0x28, 0x29, 0xca, 0xcb, 0xcc, 0xcd,\n  0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5,\n  0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb,\n};\n\nstatic const Summary16 uhc_2_uni2indx_pagec8[251] = {\n  /* 0xc800 */\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0x0000 },\n  {    0, 0x0000 }, {    0, 0x0000 }, {    0, 0xfee0 }, {   10, 0xcfff },\n  {   24, 0xeeef }, {   37, 0xfd4f }, {   49, 0xffec }, {   62, 0xcfdf },\n  /* 0xc900 */\n  {   75, 0x4f8e }, {   84, 0xfefd }, {   98, 0xefff }, {  113, 0xffef },\n  {  128, 0xffff }, {  144, 0xfeec }, {  156, 0xeff4 }, {  168, 0xefee },\n  {  181, 0xecff }, {  194, 0xd4fe }, {  205, 0xffff }, {  221, 0xffff },\n  {  237, 0xfa6c }, {  247, 0xc994 }, {  254, 0x4f6a }, {  263, 0xecfc },\n  /* 0xca00 */\n  {  274, 0xc4fe }, {  284, 0xfeef }, {  298, 0xfdff }, {  313, 0xffff },\n  {  329, 0xcfff }, {  343, 0x4fee }, {  354, 0xfefc }, {  367, 0xdfff },\n  {  382, 0xffef }, {  397, 0xfeff }, {  412, 0xffff }, {  428, 0xcfff },\n  {  442, 0x4fee }, {  453, 0xfcf5 }, {  465, 0xeffe }, {  479, 0xffef },\n  /* 0xcb00 */\n  {  494, 0xfeff }, {  509, 0xfeee }, {  522, 0xfffc }, {  536, 0xffff },\n  {  552, 0xecfd }, {  564, 0xdcfe }, {  576, 0xffef }, {  591, 0xfcff },\n  {  605, 0xffff }, {  621, 0xefff }, {  636, 0xffff }, {  652, 0xfeff },\n  {  667, 0xffff }, {  683, 0xffef }, {  698, 0xfd6f }, {  711, 0xffff },\n  /* 0xcc00 */\n  {  727, 0xcfff }, {  741, 0xcfee }, {  753, 0xac79 }, {  762, 0x84fe },\n  {  771, 0xeecf }, {  783, 0xfc4f }, {  794, 0xfeae }, {  806, 0xffde },\n  {  820, 0xffff }, {  836, 0xecff }, {  849, 0xc4fe }, {  859, 0xeecf },\n  {  871, 0xfd4f }, {  883, 0xffee }, {  897, 0xefef }, {  911, 0xfffe },\n  /* 0xcd00 */\n  {  926, 0xecfd }, {  938, 0xd4fe }, {  949, 0xeeef }, {  962, 0xfdff },\n  {  977, 0xffff }, {  993, 0xefff }, { 1008, 0x4fee }, { 1019, 0xfefd },\n  { 1033, 0xfeff }, { 1048, 0xeecf }, { 1060, 0xfd4f }, { 1072, 0xfffe },\n  { 1087, 0xefef }, { 1101, 0xfffe }, { 1116, 0xeeff }, { 1130, 0xd4fe },\n  /* 0xce00 */\n  { 1141, 0xeeef }, { 1154, 0xfdef }, { 1168, 0xfeec }, { 1180, 0xffd4 },\n  { 1192, 0xffff }, { 1208, 0x6cff }, { 1220, 0xd4fc }, { 1230, 0xeecf },\n  { 1242, 0xfd4f }, { 1254, 0xfeec }, { 1266, 0xcfc4 }, { 1275, 0xffff },\n  { 1291, 0xfffd }, { 1306, 0xffff }, { 1322, 0xe6cf }, { 1333, 0xfc4f },\n  /* 0xcf00 */\n  { 1344, 0xfeec }, { 1356, 0xefd4 }, { 1367, 0x4fee }, { 1378, 0xfefc },\n  { 1391, 0xffff }, { 1407, 0xeecf }, { 1419, 0xfd4f }, { 1431, 0xfeec },\n  { 1443, 0xefde }, { 1456, 0xffff }, { 1472, 0xfefd }, { 1486, 0xfffe },\n  { 1501, 0xffef }, { 1516, 0xffff }, { 1532, 0xfeec }, { 1544, 0xefd4 },\n  /* 0xd000 */\n  { 1555, 0xffee }, { 1569, 0xfefd }, { 1583, 0xdfff }, { 1598, 0xeecf },\n  { 1610, 0xfd4f }, { 1622, 0xfeee }, { 1635, 0xcffe }, { 1648, 0xcfee },\n  { 1660, 0xfffd }, { 1675, 0xffff }, { 1691, 0xeecf }, { 1703, 0xfd4f },\n  { 1715, 0xfcec }, { 1726, 0xcfc4 }, { 1735, 0x4fee }, { 1746, 0xfefc },\n  /* 0xd100 */\n  { 1759, 0xdfff }, { 1774, 0xffff }, { 1790, 0xffff }, { 1806, 0xfaec },\n  { 1817, 0xcfc4 }, { 1826, 0x4fee }, { 1837, 0xeefd }, { 1850, 0xefff },\n  { 1865, 0xfeef }, { 1879, 0xffff }, { 1895, 0xfeec }, { 1907, 0xebd4 },\n  { 1917, 0xfffe }, { 1932, 0xfeff }, { 1947, 0xffff }, { 1963, 0xfeef },\n  /* 0xd200 */\n  { 1977, 0xfd7f }, { 1991, 0xfffe }, { 2006, 0xcfff }, { 2020, 0x4fee },\n  { 2031, 0xfefd }, { 2045, 0xefff }, { 2060, 0xffef }, { 2075, 0xffff },\n  { 2091, 0xfeec }, { 2103, 0xefdc }, { 2115, 0xefee }, { 2128, 0x6cfd },\n  { 2139, 0xf4fa }, { 2150, 0xeeef }, { 2163, 0xffcf }, { 2177, 0xfeec },\n  /* 0xd300 */\n  { 2189, 0x8fd4 }, { 2198, 0x4fae }, { 2208, 0xecdc }, { 2218, 0xc4fe },\n  { 2228, 0xffcf }, { 2242, 0xffff }, { 2258, 0xffff }, { 2274, 0xcfff },\n  { 2288, 0x4fee }, { 2299, 0xecfc }, { 2310, 0xd4fe }, { 2321, 0xeeef },\n  { 2334, 0xfccf }, { 2346, 0xfefe }, { 2360, 0xcff5 }, { 2372, 0x4fee },\n  /* 0xd400 */\n  { 2383, 0xfefd }, { 2397, 0xdfff }, { 2412, 0xffff }, { 2428, 0xffff },\n  { 2444, 0xffee }, { 2458, 0xefff }, { 2473, 0x5fee }, { 2485, 0x6cff },\n  { 2497, 0xd4fa }, { 2507, 0xffef }, { 2522, 0xfdff }, { 2537, 0xffff },\n  { 2553, 0xefff }, { 2568, 0x6fee }, { 2580, 0xeeff }, { 2594, 0xd6fe },\n  /* 0xd500 */\n  { 2606, 0xeeef }, { 2619, 0xff4f }, { 2632, 0xffff }, { 2648, 0xcfff },\n  { 2662, 0x4fee }, { 2673, 0xecfd }, { 2685, 0xd4de }, { 2695, 0xeecf },\n  { 2707, 0xfc4f }, { 2718, 0xfffe }, { 2733, 0xffdf }, { 2748, 0xffff },\n  { 2764, 0xecff }, { 2777, 0xd4fa }, { 2787, 0xeecf }, { 2799, 0xfd4f },\n  /* 0xd600 */\n  { 2811, 0xfeec }, { 2823, 0xefc4 }, { 2833, 0xdfee }, { 2846, 0xecff },\n  { 2859, 0xd4de }, { 2869, 0xeecd }, { 2880, 0xfd7f }, { 2894, 0xffec },\n  { 2907, 0xcfd7 }, { 2919, 0x5fee }, { 2931, 0xeefd }, { 2944, 0xf5fe },\n  { 2957, 0xeecf }, { 2969, 0xfd6d }, { 2981, 0xfeee }, { 2994, 0xcfde },\n  /* 0xd700 */\n  { 3006, 0xffee }, { 3020, 0xecfd }, { 3032, 0xd4fe }, { 3043, 0xeecf },\n  { 3055, 0xfd6f }, { 3068, 0xfc2c }, { 3077, 0xedd4 }, { 3087, 0xcfee },\n  { 3099, 0xecfd }, { 3111, 0xd4fe }, { 3122, 0x000f },\n};\n\nstatic int\nuhc_2_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (n >= 2) {\n    if (wc >= 0xc800 && wc < 0xd7b0) {\n      const Summary16 *summary = &uhc_2_uni2indx_pagec8[(wc>>4)-0xc80];\n      unsigned short used = summary->used;\n      unsigned int i = wc & 0x0f;\n      if (used & ((unsigned short) 1 << i)) {\n        unsigned short c;\n        /* Keep in 'used' only the bits 0..i-1. */\n        used &= ((unsigned short) 1 << i) - 1;\n        /* Add 'summary->indx' and the number of bits set in 'used'. */\n        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\n        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\n        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\n        used = (used & 0x00ff) + (used >> 8);\n        used += summary->indx;\n        c = uhc_2_2charset_main[used>>6] + uhc_2_2charset[used];\n        r[0] = (c >> 8); r[1] = (c & 0xff);\n        return 2;\n      }\n    }\n    return RET_ILUNI;\n  }\n  return RET_TOOSMALL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/utf16.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UTF-16\n */\n\n/* Specification: RFC 2781 */\n\n/* Here we accept FFFE/FEFF marks as endianness indicators everywhere\n   in the stream, not just at the beginning. (This is contrary to what\n   RFC 2781 section 3.2 specifies, but it allows concatenation of byte\n   sequences to work flawlessly, while disagreeing with the RFC behaviour\n   only for strings containing U+FEFF characters, which is quite rare.)\n   The default is big-endian. */\n/* The state is 0 if big-endian, 1 if little-endian. */\nstatic int\nutf16_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  int count = 0;\n  for (; n >= 2 && count <= RET_COUNT_MAX && count <= INT_MAX-2;) {\n    ucs4_t wc = (state ? s[0] + (s[1] << 8) : (s[0] << 8) + s[1]);\n    if (wc == 0xfeff) {\n    } else if (wc == 0xfffe) {\n      state ^= 1;\n    } else if (wc >= 0xd800 && wc < 0xdc00) {\n      if (n >= 4) {\n        ucs4_t wc2 = (state ? s[2] + (s[3] << 8) : (s[2] << 8) + s[3]);\n        if (!(wc2 >= 0xdc00 && wc2 < 0xe000))\n          goto ilseq;\n        *pwc = 0x10000 + ((wc - 0xd800) << 10) + (wc2 - 0xdc00);\n        conv->istate = state;\n        return count+4;\n      } else\n        break;\n    } else if (wc >= 0xdc00 && wc < 0xe000) {\n      goto ilseq;\n    } else {\n      *pwc = wc;\n      conv->istate = state;\n      return count+2;\n    }\n    s += 2; n -= 2; count += 2;\n  }\n  conv->istate = state;\n  return RET_TOOFEW(count);\n\nilseq:\n  conv->istate = state;\n  return RET_SHIFT_ILSEQ(count);\n}\n\n/* We output UTF-16 in big-endian order, with byte-order mark.\n   See RFC 2781 section 3.3 for a rationale: Some document formats\n   mandate a BOM; the file concatenation issue is not so severe as\n   long as the above utf16_mbtowc function is used. */\n/* The state is 0 at the beginning, 1 after the BOM has been written. */\nstatic int\nutf16_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc != 0xfffe && !(wc >= 0xd800 && wc < 0xe000)) {\n    int count = 0;\n    if (!conv->ostate) {\n      if (n >= 2) {\n        r[0] = 0xFE;\n        r[1] = 0xFF;\n        r += 2; n -= 2; count += 2;\n      } else\n        return RET_TOOSMALL;\n    }\n    if (wc < 0x10000) {\n      if (n >= 2) {\n        r[0] = (unsigned char) (wc >> 8);\n        r[1] = (unsigned char) wc;\n        conv->ostate = 1;\n        return count+2;\n      } else\n        return RET_TOOSMALL;\n    }\n    else if (wc < 0x110000) {\n      if (n >= 4) {\n        ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10);\n        ucs4_t wc2 = 0xdc00 + ((wc - 0x10000) & 0x3ff);\n        r[0] = (unsigned char) (wc1 >> 8);\n        r[1] = (unsigned char) wc1;\n        r[2] = (unsigned char) (wc2 >> 8);\n        r[3] = (unsigned char) wc2;\n        conv->ostate = 1;\n        return count+4;\n      } else\n        return RET_TOOSMALL;\n    }\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/utf16be.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UTF-16BE\n */\n\n/* Specification: RFC 2781 */\n\nstatic int\nutf16be_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  int count = 0;\n  if (n >= 2) {\n    ucs4_t wc = (s[0] << 8) + s[1];\n    if (wc >= 0xd800 && wc < 0xdc00) {\n      if (n >= 4) {\n        ucs4_t wc2 = (s[2] << 8) + s[3];\n        if (!(wc2 >= 0xdc00 && wc2 < 0xe000))\n          goto ilseq;\n        *pwc = 0x10000 + ((wc - 0xd800) << 10) + (wc2 - 0xdc00);\n        return count+4;\n      }\n    } else if (wc >= 0xdc00 && wc < 0xe000) {\n      goto ilseq;\n    } else {\n      *pwc = wc;\n      return count+2;\n    }\n  }\n  return RET_TOOFEW(count);\n\nilseq:\n  return RET_SHIFT_ILSEQ(count);\n}\n\nstatic int\nutf16be_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (!(wc >= 0xd800 && wc < 0xe000)) {\n    if (wc < 0x10000) {\n      if (n >= 2) {\n        r[0] = (unsigned char) (wc >> 8);\n        r[1] = (unsigned char) wc;\n        return 2;\n      } else\n        return RET_TOOSMALL;\n    }\n    else if (wc < 0x110000) {\n      if (n >= 4) {\n        ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10);\n        ucs4_t wc2 = 0xdc00 + ((wc - 0x10000) & 0x3ff);\n        r[0] = (unsigned char) (wc1 >> 8);\n        r[1] = (unsigned char) wc1;\n        r[2] = (unsigned char) (wc2 >> 8);\n        r[3] = (unsigned char) wc2;\n        return 4;\n      } else\n        return RET_TOOSMALL;\n    }\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/utf16le.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UTF-16LE\n */\n\n/* Specification: RFC 2781 */\n\nstatic int\nutf16le_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  int count = 0;\n  if (n >= 2) {\n    ucs4_t wc = s[0] + (s[1] << 8);\n    if (wc >= 0xd800 && wc < 0xdc00) {\n      if (n >= 4) {\n        ucs4_t wc2 = s[2] + (s[3] << 8);\n        if (!(wc2 >= 0xdc00 && wc2 < 0xe000))\n          goto ilseq;\n        *pwc = 0x10000 + ((wc - 0xd800) << 10) + (wc2 - 0xdc00);\n        return count+4;\n      }\n    } else if (wc >= 0xdc00 && wc < 0xe000) {\n      goto ilseq;\n    } else {\n      *pwc = wc;\n      return count+2;\n    }\n  }\n  return RET_TOOFEW(count);\n\nilseq:\n  return RET_SHIFT_ILSEQ(count);\n}\n\nstatic int\nutf16le_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (!(wc >= 0xd800 && wc < 0xe000)) {\n    if (wc < 0x10000) {\n      if (n >= 2) {\n        r[0] = (unsigned char) wc;\n        r[1] = (unsigned char) (wc >> 8);\n        return 2;\n      } else\n        return RET_TOOSMALL;\n    }\n    else if (wc < 0x110000) {\n      if (n >= 4) {\n        ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10);\n        ucs4_t wc2 = 0xdc00 + ((wc - 0x10000) & 0x3ff);\n        r[0] = (unsigned char) wc1;\n        r[1] = (unsigned char) (wc1 >> 8);\n        r[2] = (unsigned char) wc2;\n        r[3] = (unsigned char) (wc2 >> 8);\n        return 4;\n      } else\n        return RET_TOOSMALL;\n    }\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/utf32.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2011, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UTF-32\n */\n\n/* Specification: Unicode 3.1 Standard Annex #19 */\n\n/* Here we accept FFFE0000/0000FEFF marks as endianness indicators\n   everywhere in the stream, not just at the beginning. (This is contrary\n   to what #19 D36c specifies, but it allows concatenation of byte\n   sequences to work flawlessly, while disagreeing with #19 behaviour\n   only for strings containing U+FEFF characters, which is quite rare.)\n   The default is big-endian. */\n/* The state is 0 if big-endian, 1 if little-endian. */\nstatic int\nutf32_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  int count = 0;\n  for (; n >= 4 && count <= RET_COUNT_MAX && count <= INT_MAX-4;) {\n    ucs4_t wc = (state\n                  ? s[0] + (s[1] << 8) + (s[2] << 16) + (s[3] << 24)\n                  : (s[0] << 24) + (s[1] << 16) + (s[2] << 8) + s[3]);\n    if (wc == 0x0000feff) {\n    } else if (wc == 0xfffe0000u) {\n      state ^= 1;\n    } else {\n      if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000)) {\n        *pwc = wc;\n        conv->istate = state;\n        return count+4;\n      } else {\n        conv->istate = state;\n        return RET_SHIFT_ILSEQ(count);\n      }\n    }\n    s += 4; n -= 4; count += 4;\n  }\n  conv->istate = state;\n  return RET_TOOFEW(count);\n}\n\n/* We output UTF-32 in big-endian order, with byte-order mark. */\n/* The state is 0 at the beginning, 1 after the BOM has been written. */\nstatic int\nutf32_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000)) {\n    int count = 0;\n    if (!conv->ostate) {\n      if (n >= 4) {\n        r[0] = 0x00;\n        r[1] = 0x00;\n        r[2] = 0xFE;\n        r[3] = 0xFF;\n        r += 4; n -= 4; count += 4;\n      } else\n        return RET_TOOSMALL;\n    }\n    if (wc < 0x110000) {\n      if (n >= 4) {\n        r[0] = 0;\n        r[1] = (unsigned char) (wc >> 16);\n        r[2] = (unsigned char) (wc >> 8);\n        r[3] = (unsigned char) wc;\n        conv->ostate = 1;\n        return count+4;\n      } else\n        return RET_TOOSMALL;\n    }\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/utf32be.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UTF-32BE\n */\n\n/* Specification: Unicode 3.1 Standard Annex #19 */\n\nstatic int\nutf32be_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  if (n >= 4) {\n    ucs4_t wc = (s[0] << 24) + (s[1] << 16) + (s[2] << 8) + s[3];\n    if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000)) {\n      *pwc = wc;\n      return 4;\n    } else\n      return RET_ILSEQ;\n  }\n  return RET_TOOFEW(0);\n}\n\nstatic int\nutf32be_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000)) {\n    if (n >= 4) {\n      r[0] = 0;\n      r[1] = (unsigned char) (wc >> 16);\n      r[2] = (unsigned char) (wc >> 8);\n      r[3] = (unsigned char) wc;\n      return 4;\n    } else\n      return RET_TOOSMALL;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/utf32le.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UTF-32LE\n */\n\n/* Specification: Unicode 3.1 Standard Annex #19 */\n\nstatic int\nutf32le_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  if (n >= 4) {\n    ucs4_t wc = s[0] + (s[1] << 8) + (s[2] << 16) + (s[3] << 24);\n    if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000)) {\n      *pwc = wc;\n      return 4;\n    } else\n      return RET_ILSEQ;\n  }\n  return RET_TOOFEW(0);\n}\n\nstatic int\nutf32le_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000)) {\n    if (n >= 4) {\n      r[0] = (unsigned char) wc;\n      r[1] = (unsigned char) (wc >> 8);\n      r[2] = (unsigned char) (wc >> 16);\n      r[3] = 0;\n      return 4;\n    } else\n      return RET_TOOSMALL;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/utf7.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2008, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UTF-7\n */\n\n/* Specification: RFC 2152 (and old RFC 1641, RFC 1642) */\n/* The original Base64 encoding is defined in RFC 2045. */\n\n/* Set of direct characters:\n *   A-Z a-z 0-9 ' ( ) , - . / : ? space tab lf cr\n */\nstatic const unsigned char direct_tab[128/8] = {\n  0x00, 0x26, 0x00, 0x00, 0x81, 0xf3, 0xff, 0x87,\n  0xfe, 0xff, 0xff, 0x07, 0xfe, 0xff, 0xff, 0x07,\n};\n#define isdirect(ch) ((ch) < 128 && ((direct_tab[(ch)>>3] >> (ch & 7)) & 1))\n\n/* Set of direct and optional direct characters:\n *   A-Z a-z 0-9 ' ( ) , - . / : ? space tab lf cr\n *   ! \" # $ % & * ; < = > @ [ ] ^ _ ` { | }\n */\nstatic const unsigned char xdirect_tab[128/8] = {\n  0x00, 0x26, 0x00, 0x00, 0xff, 0xf7, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0x3f,\n};\n#define isxdirect(ch) ((ch) < 128 && ((xdirect_tab[(ch)>>3] >> (ch & 7)) & 1))\n\n/* Set of base64 characters, extended:\n *   A-Z a-z 0-9 + / -\n */\nstatic const unsigned char xbase64_tab[128/8] = {\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0xff, 0x03,\n  0xfe, 0xff, 0xff, 0x07, 0xfe, 0xff, 0xff, 0x07,\n};\n#define isxbase64(ch) ((ch) < 128 && ((xbase64_tab[(ch)>>3] >> (ch & 7)) & 1))\n\n/*\n * The state is structured as follows:\n * bit 1..0: shift\n * bit 7..2: data\n * Precise meaning:\n *   shift      data\n *     0         0           not inside base64 encoding\n *     1         0           inside base64, no pending bits\n *     2      XXXX00         inside base64, 4 bits remain from 2nd byte\n *     3      XX0000         inside base64, 2 bits remain from 3rd byte\n */\n\nstatic int\nutf7_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  state_t state = conv->istate;\n  int count = 0; /* number of input bytes already read */\n  if (state & 3)\n    goto active;\n  else\n    goto inactive;\n\ninactive:\n  {\n    /* Here (state & 3) == 0 */\n    if (n < count+1)\n      goto none;\n    {\n      unsigned char c = *s;\n      if (isxdirect(c)) {\n        *pwc = (ucs4_t) c;\n        conv->istate = state;\n        return count+1;\n      }\n      if (c == '+') {\n        if (n < count+2)\n          goto none;\n        if (s[1] == '-') {\n          *pwc = (ucs4_t) '+';\n          conv->istate = state;\n          return count+2;\n        }\n        s++; count++;\n        state = 1;\n        goto active;\n      }\n      goto ilseq;\n    }\n  }\n\nactive:\n  {\n    /* base64 encoding active */\n    unsigned int wc = 0;\n    state_t base64state = state;\n    unsigned int kmax = 2; /* number of payload bytes to read */\n    unsigned int k = 0; /* number of payload bytes already read */\n    unsigned int base64count = 0; /* number of base64 bytes already read */\n    for (;;) {\n      unsigned char c = *s;\n      unsigned int i;\n      if (c >= 'A' && c <= 'Z')\n        i = c-'A';\n      else if (c >= 'a' && c <= 'z')\n        i = c-'a'+26;\n      else if (c >= '0' && c <= '9')\n        i = c-'0'+52;\n      else if (c == '+')\n        i = 62;\n      else if (c == '/')\n        i = 63;\n      else {\n        /* c terminates base64 encoding */\n        if (base64state & -4)\n          goto ilseq; /* data must be 0, otherwise illegal */\n        if (base64count)\n          goto ilseq; /* partial UTF-16 characters are invalid */\n        if (c == '-') {\n          s++; count++;\n        }\n        state = 0;\n        goto inactive;\n      }\n      s++; base64count++;\n      /* read 6 bits: 0 <= i < 64 */\n      switch (base64state & 3) {\n        case 1: /* inside base64, no pending bits */\n          base64state = (i << 2) | 0; break;\n        case 0: /* inside base64, 6 bits remain from 1st byte */\n          wc = (wc << 8) | (base64state & -4) | (i >> 4); k++;\n          base64state = ((i & 15) << 4) | 2; break;\n        case 2: /* inside base64, 4 bits remain from 2nd byte */\n          wc = (wc << 8) | (base64state & -4) | (i >> 2); k++;\n          base64state = ((i & 3) << 6) | 3; break;\n        case 3: /* inside base64, 2 bits remain from 3rd byte */\n          wc = (wc << 8) | (base64state & -4) | i; k++;\n          base64state = 1; break;\n      }\n      if (k == kmax) {\n        /* UTF-16: When we see a High Surrogate, we must also decode\n           the following Low Surrogate. */\n        if (kmax == 2 && (wc >= 0xd800 && wc < 0xdc00))\n          kmax = 4;\n        else\n          break;\n      }\n      if (n < count+base64count+1)\n        goto none;\n    }\n    /* Here k = kmax > 0, hence base64count > 0. */\n    if ((base64state & 3) == 0) abort();\n    if (kmax == 4) {\n      ucs4_t wc1 = wc >> 16;\n      ucs4_t wc2 = wc & 0xffff;\n      if (!(wc1 >= 0xd800 && wc1 < 0xdc00)) abort();\n      if (!(wc2 >= 0xdc00 && wc2 < 0xe000)) goto ilseq;\n      *pwc = 0x10000 + ((wc1 - 0xd800) << 10) + (wc2 - 0xdc00);\n    } else {\n      *pwc = wc;\n    }\n    conv->istate = base64state;\n    return count+base64count;\n  }\n\nnone:\n  conv->istate = state;\n  return RET_TOOFEW(count);\n\nilseq:\n  conv->istate = state;\n  return RET_SHIFT_ILSEQ(count);\n}\n\n/*\n * The state is structured as follows:\n * bit 1..0: shift\n * bit 7..2: data\n * Precise meaning:\n *   shift      data\n *     0         0           not inside base64 encoding\n *     1         0           inside base64, no pending bits\n *     2       XX00          inside base64, 2 bits known for 2nd byte\n *     3       XXXX          inside base64, 4 bits known for 3rd byte\n */\n\n/* Define this to 1 if you want the so-called \"optional direct\" characters\n      ! \" # $ % & * ; < = > @ [ ] ^ _ ` { | }\n   to be encoded. Define to 0 if you want them to be passed straight through,\n   like the so-called \"direct\" characters.\n   We set this to 1 because it's safer.\n */\n#define UTF7_ENCODE_OPTIONAL_CHARS 1\n\nstatic int\nutf7_wctomb (conv_t conv, unsigned char *r, ucs4_t iwc, size_t n)\n{\n  state_t state = conv->ostate;\n  unsigned int wc = iwc;\n  int count = 0;\n  if (state & 3)\n    goto active;\n\n/*inactive:*/\n  {\n    if (UTF7_ENCODE_OPTIONAL_CHARS ? isdirect(wc) : isxdirect(wc)) {\n      r[0] = (unsigned char) wc;\n      /*conv->ostate = state;*/\n      return 1;\n    } else {\n      *r++ = '+';\n      if (wc == '+') {\n        if (n < 2)\n          return RET_TOOSMALL;\n        *r = '-';\n        /*conv->ostate = state;*/\n        return 2;\n      }\n      count = 1;\n      state = 1;\n      goto active;\n    }\n  }\n\nactive:\n  {\n    /* base64 encoding active */\n    if (UTF7_ENCODE_OPTIONAL_CHARS ? isdirect(wc) : isxdirect(wc)) {\n      /* deactivate base64 encoding */\n      count += ((state & 3) >= 2 ? 1 : 0) + (isxbase64(wc) ? 1 : 0) + 1;\n      if (n < count)\n        return RET_TOOSMALL;\n      if ((state & 3) >= 2) {\n        unsigned int i = state & -4;\n        unsigned char c;\n        if (i < 26)\n          c = i+'A';\n        else if (i < 52)\n          c = i-26+'a';\n        else if (i < 62)\n          c = i-52+'0';\n        else if (i == 62)\n          c = '+';\n        else if (i == 63)\n          c = '/';\n        else\n          abort();\n        *r++ = c;\n      }\n      if (isxbase64(wc))\n        *r++ = '-';\n      state = 0;\n      *r++ = (unsigned char) wc;\n      conv->ostate = state;\n      return count;\n    } else {\n      unsigned int k; /* number of payload bytes to write */\n      if (wc < 0x10000) {\n        k = 2;\n        count += ((state & 3) >= 2 ? 3 : 2);\n      } else if (wc < 0x110000) {\n        unsigned int wc1 = 0xd800 + ((wc - 0x10000) >> 10);\n        unsigned int wc2 = 0xdc00 + ((wc - 0x10000) & 0x3ff);\n        wc = (wc1 << 16) | wc2;\n        k = 4;\n        count += ((state & 3) >= 3 ? 6 : 5);\n      } else\n        return RET_ILUNI;\n      if (n < count)\n        return RET_TOOSMALL;\n      for (;;) {\n        unsigned int i;\n        unsigned char c;\n        switch (state & 3) {\n          case 0: /* inside base64, 6 bits known for 4th byte */\n            c = (state & -4) >> 2; state = 1; break;\n          case 1: /* inside base64, no pending bits */\n            i = (wc >> (8 * --k)) & 0xff;\n            c = i >> 2; state = ((i & 3) << 4) | 2; break;\n          case 2: /* inside base64, 2 bits known for 2nd byte */\n            i = (wc >> (8 * --k)) & 0xff;\n            c = (state & -4) | (i >> 4); state = ((i & 15) << 2) | 3; break;\n          case 3: /* inside base64, 4 bits known for 3rd byte */\n            i = (wc >> (8 * --k)) & 0xff;\n            c = (state & -4) | (i >> 6); state = ((i & 63) << 2) | 0; break;\n          default: abort(); /* stupid gcc */\n        }\n        if (c < 26)\n          c = c+'A';\n        else if (c < 52)\n          c = c-26+'a';\n        else if (c < 62)\n          c = c-52+'0';\n        else if (c == 62)\n          c = '+';\n        else if (c == 63)\n          c = '/';\n        else\n          abort();\n        *r++ = c;\n        if ((state & 3) && (k == 0))\n          break;\n      }\n      conv->ostate = state;\n      return count;\n    }\n  }\n}\n\nstatic int\nutf7_reset (conv_t conv, unsigned char *r, size_t n)\n{\n  state_t state = conv->ostate;\n  if (state & 3) {\n    /* deactivate base64 encoding */\n    unsigned int count = ((state & 3) >= 2 ? 1 : 0) + 1;\n    if (n < count)\n      return RET_TOOSMALL;\n    if ((state & 3) >= 2) {\n      unsigned int i = state & -4;\n      unsigned char c;\n      if (i < 26)\n        c = i+'A';\n      else if (i < 52)\n        c = i-26+'a';\n      else if (i < 62)\n        c = i-52+'0';\n      else if (i == 62)\n        c = '+';\n      else if (i == 63)\n        c = '/';\n      else\n        abort();\n      *r++ = c;\n    }\n    *r++ = '-';\n    /* conv->ostate = 0; will be done by the caller */\n    return count;\n  } else\n    return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/utf8.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2004, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * UTF-8\n */\n\n/* Specification: RFC 3629 */\n\nstatic int\nutf8_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = s[0];\n\n  if (c < 0x80) {\n    *pwc = c;\n    return 1;\n  } else if (c < 0xc2) {\n    return RET_ILSEQ;\n  } else if (c < 0xe0) {\n    if (n < 2)\n      return RET_TOOFEW(0);\n    if (!((s[1] ^ 0x80) < 0x40))\n      return RET_ILSEQ;\n    *pwc = ((ucs4_t) (c & 0x1f) << 6)\n           | (ucs4_t) (s[1] ^ 0x80);\n    return 2;\n  } else if (c < 0xf0) {\n    if (n < 3)\n      return RET_TOOFEW(0);\n    if (!((s[1] ^ 0x80) < 0x40 && (s[2] ^ 0x80) < 0x40\n          && (c >= 0xe1 || s[1] >= 0xa0)\n          && (c != 0xed || s[1] < 0xa0)))\n      return RET_ILSEQ;\n    *pwc = ((ucs4_t) (c & 0x0f) << 12)\n           | ((ucs4_t) (s[1] ^ 0x80) << 6)\n           | (ucs4_t) (s[2] ^ 0x80);\n    return 3;\n  } else if (c < 0xf8 && sizeof(ucs4_t)*8 >= 32) {\n    if (n < 4)\n      return RET_TOOFEW(0);\n    if (!((s[1] ^ 0x80) < 0x40 && (s[2] ^ 0x80) < 0x40\n          && (s[3] ^ 0x80) < 0x40\n          && (c >= 0xf1 || s[1] >= 0x90)\n          && (c < 0xf4 || (c == 0xf4 && s[1] < 0x90))))\n      return RET_ILSEQ;\n    *pwc = ((ucs4_t) (c & 0x07) << 18)\n           | ((ucs4_t) (s[1] ^ 0x80) << 12)\n           | ((ucs4_t) (s[2] ^ 0x80) << 6)\n           | (ucs4_t) (s[3] ^ 0x80);\n    return 4;\n  } else\n    return RET_ILSEQ;\n}\n\nstatic int\nutf8_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) /* n == 0 is acceptable */\n{\n  int count;\n  if (wc < 0x80)\n    count = 1;\n  else if (wc < 0x800)\n    count = 2;\n  else if (wc < 0x10000) {\n    if (wc < 0xd800 || wc >= 0xe000)\n      count = 3;\n    else\n      return RET_ILUNI;\n  } else if (wc < 0x110000)\n    count = 4;\n  else\n    return RET_ILUNI;\n  if (n < count)\n    return RET_TOOSMALL;\n  switch (count) { /* note: code falls through cases! */\n    case 4: r[3] = 0x80 | (wc & 0x3f); wc = wc >> 6; wc |= 0x10000;\n    case 3: r[2] = 0x80 | (wc & 0x3f); wc = wc >> 6; wc |= 0x800;\n    case 2: r[1] = 0x80 | (wc & 0x3f); wc = wc >> 6; wc |= 0xc0;\n    case 1: r[0] = wc;\n  }\n  return count;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/vietcomb.h",
    "content": "/*\n * Copyright (C) 2001, 2004, 2011 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/* Combining characters used in Vietnamese encodings CP1258, TCVN. */\n\n#ifndef _VIETCOMB_H\n#define _VIETCOMB_H\n\n/* Relevant combining characters:\n   0x0300, 0x0301, 0x0303, 0x0309, 0x0323. */\n\n/* Composition tables for each of the relevant combining characters. */\nstatic const struct { unsigned short base; unsigned short composed; } viet_comp_table_data[] = {\n#define viet_comp_table0300_idx 0\n#define viet_comp_table0300_len 31\n  { 0x0041, 0x00C0 },\n  { 0x0045, 0x00C8 },\n  { 0x0049, 0x00CC },\n  { 0x004E, 0x01F8 },\n  { 0x004F, 0x00D2 },\n  { 0x0055, 0x00D9 },\n  { 0x0057, 0x1E80 },\n  { 0x0059, 0x1EF2 },\n  { 0x0061, 0x00E0 },\n  { 0x0065, 0x00E8 },\n  { 0x0069, 0x00EC },\n  { 0x006E, 0x01F9 },\n  { 0x006F, 0x00F2 },\n  { 0x0075, 0x00F9 },\n  { 0x0077, 0x1E81 },\n  { 0x0079, 0x1EF3 },\n  { 0x00A8, 0x1FED },\n  { 0x00C2, 0x1EA6 },\n  { 0x00CA, 0x1EC0 },\n  { 0x00D4, 0x1ED2 },\n  { 0x00DC, 0x01DB },\n  { 0x00E2, 0x1EA7 },\n  { 0x00EA, 0x1EC1 },\n  { 0x00F4, 0x1ED3 },\n  { 0x00FC, 0x01DC },\n  { 0x0102, 0x1EB0 },\n  { 0x0103, 0x1EB1 },\n/*{ 0x0112, 0x1E14 },*/\n/*{ 0x0113, 0x1E15 },*/\n/*{ 0x014C, 0x1E50 },*/\n/*{ 0x014D, 0x1E51 },*/\n  { 0x01A0, 0x1EDC },\n  { 0x01A1, 0x1EDD },\n  { 0x01AF, 0x1EEA },\n  { 0x01B0, 0x1EEB },\n#define viet_comp_table0301_idx (viet_comp_table0300_idx+viet_comp_table0300_len)\n#define viet_comp_table0301_len 63\n  { 0x0041, 0x00C1 },\n  { 0x0043, 0x0106 },\n  { 0x0045, 0x00C9 },\n  { 0x0047, 0x01F4 },\n  { 0x0049, 0x00CD },\n  { 0x004B, 0x1E30 },\n  { 0x004C, 0x0139 },\n  { 0x004D, 0x1E3E },\n  { 0x004E, 0x0143 },\n  { 0x004F, 0x00D3 },\n  { 0x0050, 0x1E54 },\n  { 0x0052, 0x0154 },\n  { 0x0053, 0x015A },\n  { 0x0055, 0x00DA },\n  { 0x0057, 0x1E82 },\n  { 0x0059, 0x00DD },\n  { 0x005A, 0x0179 },\n  { 0x0061, 0x00E1 },\n  { 0x0063, 0x0107 },\n  { 0x0065, 0x00E9 },\n  { 0x0067, 0x01F5 },\n  { 0x0069, 0x00ED },\n  { 0x006B, 0x1E31 },\n  { 0x006C, 0x013A },\n  { 0x006D, 0x1E3F },\n  { 0x006E, 0x0144 },\n  { 0x006F, 0x00F3 },\n  { 0x0070, 0x1E55 },\n  { 0x0072, 0x0155 },\n  { 0x0073, 0x015B },\n  { 0x0075, 0x00FA },\n  { 0x0077, 0x1E83 },\n  { 0x0079, 0x00FD },\n  { 0x007A, 0x017A },\n  { 0x00A8, 0x0385 }, /* prefer U+0385 over U+1FEE */\n  { 0x00C2, 0x1EA4 },\n  { 0x00C5, 0x01FA },\n  { 0x00C6, 0x01FC },\n  { 0x00C7, 0x1E08 },\n  { 0x00CA, 0x1EBE },\n  { 0x00CF, 0x1E2E },\n  { 0x00D4, 0x1ED0 },\n  { 0x00D5, 0x1E4C },\n  { 0x00D8, 0x01FE },\n  { 0x00DC, 0x01D7 },\n  { 0x00E2, 0x1EA5 },\n  { 0x00E5, 0x01FB },\n  { 0x00E6, 0x01FD },\n  { 0x00E7, 0x1E09 },\n  { 0x00EA, 0x1EBF },\n  { 0x00EF, 0x1E2F },\n  { 0x00F4, 0x1ED1 },\n  { 0x00F5, 0x1E4D },\n  { 0x00F8, 0x01FF },\n  { 0x00FC, 0x01D8 },\n  { 0x0102, 0x1EAE },\n  { 0x0103, 0x1EAF },\n/*{ 0x0112, 0x1E16 },*/\n/*{ 0x0113, 0x1E17 },*/\n/*{ 0x014C, 0x1E52 },*/\n/*{ 0x014D, 0x1E53 },*/\n  { 0x0168, 0x1E78 },\n  { 0x0169, 0x1E79 },\n  { 0x01A0, 0x1EDA },\n  { 0x01A1, 0x1EDB },\n  { 0x01AF, 0x1EE8 },\n  { 0x01B0, 0x1EE9 },\n#define viet_comp_table0303_idx (viet_comp_table0301_idx+viet_comp_table0301_len)\n#define viet_comp_table0303_len 34\n  { 0x0041, 0x00C3 },\n  { 0x0045, 0x1EBC },\n  { 0x0049, 0x0128 },\n  { 0x004E, 0x00D1 },\n  { 0x004F, 0x00D5 },\n  { 0x0055, 0x0168 },\n  { 0x0056, 0x1E7C },\n  { 0x0059, 0x1EF8 },\n  { 0x0061, 0x00E3 },\n  { 0x0065, 0x1EBD },\n  { 0x0069, 0x0129 },\n  { 0x006E, 0x00F1 },\n  { 0x006F, 0x00F5 },\n  { 0x0075, 0x0169 },\n  { 0x0076, 0x1E7D },\n  { 0x0079, 0x1EF9 },\n  { 0x00C2, 0x1EAA },\n  { 0x00CA, 0x1EC4 },\n  { 0x00D3, 0x1E4C },\n  { 0x00D4, 0x1ED6 },\n  { 0x00D6, 0x1E4E },\n  { 0x00DA, 0x1E78 },\n  { 0x00E2, 0x1EAB },\n  { 0x00EA, 0x1EC5 },\n  { 0x00F3, 0x1E4D },\n  { 0x00F4, 0x1ED7 },\n  { 0x00F6, 0x1E4F },\n  { 0x00FA, 0x1E79 },\n  { 0x0102, 0x1EB4 },\n  { 0x0103, 0x1EB5 },\n  { 0x01A0, 0x1EE0 },\n  { 0x01A1, 0x1EE1 },\n  { 0x01AF, 0x1EEE },\n  { 0x01B0, 0x1EEF },\n#define viet_comp_table0309_idx (viet_comp_table0303_idx+viet_comp_table0303_len)\n#define viet_comp_table0309_len 24\n  { 0x0041, 0x1EA2 },\n  { 0x0045, 0x1EBA },\n  { 0x0049, 0x1EC8 },\n  { 0x004F, 0x1ECE },\n  { 0x0055, 0x1EE6 },\n  { 0x0059, 0x1EF6 },\n  { 0x0061, 0x1EA3 },\n  { 0x0065, 0x1EBB },\n  { 0x0069, 0x1EC9 },\n  { 0x006F, 0x1ECF },\n  { 0x0075, 0x1EE7 },\n  { 0x0079, 0x1EF7 },\n  { 0x00C2, 0x1EA8 },\n  { 0x00CA, 0x1EC2 },\n  { 0x00D4, 0x1ED4 },\n  { 0x00E2, 0x1EA9 },\n  { 0x00EA, 0x1EC3 },\n  { 0x00F4, 0x1ED5 },\n  { 0x0102, 0x1EB2 },\n  { 0x0103, 0x1EB3 },\n  { 0x01A0, 0x1EDE },\n  { 0x01A1, 0x1EDF },\n  { 0x01AF, 0x1EEC },\n  { 0x01B0, 0x1EED },\n#define viet_comp_table0323_idx (viet_comp_table0309_idx+viet_comp_table0309_len)\n#define viet_comp_table0323_len 50\n  { 0x0041, 0x1EA0 },\n  { 0x0042, 0x1E04 },\n  { 0x0044, 0x1E0C },\n  { 0x0045, 0x1EB8 },\n  { 0x0048, 0x1E24 },\n  { 0x0049, 0x1ECA },\n  { 0x004B, 0x1E32 },\n  { 0x004C, 0x1E36 },\n  { 0x004D, 0x1E42 },\n  { 0x004E, 0x1E46 },\n  { 0x004F, 0x1ECC },\n  { 0x0052, 0x1E5A },\n  { 0x0053, 0x1E62 },\n  { 0x0054, 0x1E6C },\n  { 0x0055, 0x1EE4 },\n  { 0x0056, 0x1E7E },\n  { 0x0057, 0x1E88 },\n  { 0x0059, 0x1EF4 },\n  { 0x005A, 0x1E92 },\n  { 0x0061, 0x1EA1 },\n  { 0x0062, 0x1E05 },\n  { 0x0064, 0x1E0D },\n  { 0x0065, 0x1EB9 },\n  { 0x0068, 0x1E25 },\n  { 0x0069, 0x1ECB },\n  { 0x006B, 0x1E33 },\n  { 0x006C, 0x1E37 },\n  { 0x006D, 0x1E43 },\n  { 0x006E, 0x1E47 },\n  { 0x006F, 0x1ECD },\n  { 0x0072, 0x1E5B },\n  { 0x0073, 0x1E63 },\n  { 0x0074, 0x1E6D },\n  { 0x0075, 0x1EE5 },\n  { 0x0076, 0x1E7F },\n  { 0x0077, 0x1E89 },\n  { 0x0079, 0x1EF5 },\n  { 0x007A, 0x1E93 },\n  { 0x00C2, 0x1EAC },\n  { 0x00CA, 0x1EC6 },\n  { 0x00D4, 0x1ED8 },\n  { 0x00E2, 0x1EAD },\n  { 0x00EA, 0x1EC7 },\n  { 0x00F4, 0x1ED9 },\n  { 0x0102, 0x1EB6 },\n  { 0x0103, 0x1EB7 },\n  { 0x01A0, 0x1EE2 },\n  { 0x01A1, 0x1EE3 },\n  { 0x01AF, 0x1EF0 },\n  { 0x01B0, 0x1EF1 },\n};\nstatic const struct { unsigned int len; unsigned int idx; } viet_comp_table[] = {\n  { viet_comp_table0300_len, viet_comp_table0300_idx },\n  { viet_comp_table0301_len, viet_comp_table0301_idx },\n  { viet_comp_table0303_len, viet_comp_table0303_idx },\n  { viet_comp_table0309_len, viet_comp_table0309_idx },\n  { viet_comp_table0323_len, viet_comp_table0323_idx },\n};\n\n/* Decomposition table for the relevant Unicode characters. */\nstruct viet_decomp { unsigned short composed; unsigned int base : 12; int comb1 : 4; };\nstatic const struct viet_decomp viet_decomp_table[] = {\n  { 0x00B4, 0x0020, 1 }, /* compatibility decomposition - for TCVN only */\n  { 0x00C0, 0x0041, 0 },\n  { 0x00C1, 0x0041, 1 },\n  { 0x00C3, 0x0041, 2 },\n  { 0x00C8, 0x0045, 0 },\n  { 0x00C9, 0x0045, 1 },\n  { 0x00CC, 0x0049, 0 },\n  { 0x00CD, 0x0049, 1 },\n  { 0x00D1, 0x004E, 2 },\n  { 0x00D2, 0x004F, 0 },\n  { 0x00D3, 0x004F, 1 },\n  { 0x00D5, 0x004F, 2 },\n  { 0x00D9, 0x0055, 0 },\n  { 0x00DA, 0x0055, 1 },\n  { 0x00DD, 0x0059, 1 },\n  { 0x00E0, 0x0061, 0 },\n  { 0x00E1, 0x0061, 1 },\n  { 0x00E3, 0x0061, 2 },\n  { 0x00E8, 0x0065, 0 },\n  { 0x00E9, 0x0065, 1 },\n  { 0x00EC, 0x0069, 0 },\n  { 0x00ED, 0x0069, 1 },\n  { 0x00F1, 0x006E, 2 },\n  { 0x00F2, 0x006F, 0 },\n  { 0x00F3, 0x006F, 1 },\n  { 0x00F5, 0x006F, 2 },\n  { 0x00F9, 0x0075, 0 },\n  { 0x00FA, 0x0075, 1 },\n  { 0x00FD, 0x0079, 1 },\n  { 0x0106, 0x0043, 1 },\n  { 0x0107, 0x0063, 1 },\n  { 0x0128, 0x0049, 2 },\n  { 0x0129, 0x0069, 2 },\n  { 0x0139, 0x004C, 1 },\n  { 0x013A, 0x006C, 1 },\n  { 0x0143, 0x004E, 1 },\n  { 0x0144, 0x006E, 1 },\n  { 0x0154, 0x0052, 1 },\n  { 0x0155, 0x0072, 1 },\n  { 0x015A, 0x0053, 1 },\n  { 0x015B, 0x0073, 1 },\n  { 0x0168, 0x0055, 2 },\n  { 0x0169, 0x0075, 2 },\n  { 0x0179, 0x005A, 1 },\n  { 0x017A, 0x007A, 1 },\n  { 0x01D7, 0x00DC, 1 },\n  { 0x01D8, 0x00FC, 1 },\n  { 0x01DB, 0x00DC, 0 },\n  { 0x01DC, 0x00FC, 0 },\n  { 0x01F4, 0x0047, 1 },\n  { 0x01F5, 0x0067, 1 },\n  { 0x01F8, 0x004E, 0 },\n  { 0x01F9, 0x006E, 0 },\n  { 0x01FA, 0x00C5, 1 },\n  { 0x01FB, 0x00E5, 1 },\n  { 0x01FC, 0x00C6, 1 },\n  { 0x01FD, 0x00E6, 1 },\n  { 0x01FE, 0x00D8, 1 },\n  { 0x01FF, 0x00F8, 1 },\n  { 0x02DC, 0x0020, 2 }, /* compatibility decomposition - for TCVN only */\n  { 0x0385, 0x00A8, 1 },\n  { 0x1E04, 0x0042, 4 },\n  { 0x1E05, 0x0062, 4 },\n  { 0x1E08, 0x00C7, 1 },\n  { 0x1E09, 0x00E7, 1 },\n  { 0x1E0C, 0x0044, 4 },\n  { 0x1E0D, 0x0064, 4 },\n  { 0x1E24, 0x0048, 4 },\n  { 0x1E25, 0x0068, 4 },\n  { 0x1E2E, 0x00CF, 1 },\n  { 0x1E2F, 0x00EF, 1 },\n  { 0x1E30, 0x004B, 1 },\n  { 0x1E31, 0x006B, 1 },\n  { 0x1E32, 0x004B, 4 },\n  { 0x1E33, 0x006B, 4 },\n  { 0x1E36, 0x004C, 4 },\n  { 0x1E37, 0x006C, 4 },\n  { 0x1E3E, 0x004D, 1 },\n  { 0x1E3F, 0x006D, 1 },\n  { 0x1E42, 0x004D, 4 },\n  { 0x1E43, 0x006D, 4 },\n  { 0x1E46, 0x004E, 4 },\n  { 0x1E47, 0x006E, 4 },\n  { 0x1E4C, 0x00D3, 2 }, /*{ 0x1E4C, 0x00D5, 1 },*/ /*{ 0x1E4C, 0x004F, 1, 2 },*/\n  { 0x1E4D, 0x00F3, 2 }, /*{ 0x1E4D, 0x00F5, 1 },*/ /*{ 0x1E4D, 0x006F, 1, 2 },*/\n  { 0x1E4E, 0x00D6, 2 },\n  { 0x1E4F, 0x00F6, 2 },\n  { 0x1E54, 0x0050, 1 },\n  { 0x1E55, 0x0070, 1 },\n  { 0x1E5A, 0x0052, 4 },\n  { 0x1E5B, 0x0072, 4 },\n  { 0x1E62, 0x0053, 4 },\n  { 0x1E63, 0x0073, 4 },\n  { 0x1E6C, 0x0054, 4 },\n  { 0x1E6D, 0x0074, 4 },\n  { 0x1E78, 0x00DA, 2 }, /*{ 0x1E78, 0x0168, 1 },*/ /*{ 0x1E78, 0x0055, 1, 2 },*/\n  { 0x1E79, 0x00FA, 2 }, /*{ 0x1E79, 0x0169, 1 },*/ /*{ 0x1E79, 0x0075, 1, 2 },*/\n  { 0x1E7C, 0x0056, 2 },\n  { 0x1E7D, 0x0076, 2 },\n  { 0x1E7E, 0x0056, 4 },\n  { 0x1E7F, 0x0076, 4 },\n  { 0x1E80, 0x0057, 0 },\n  { 0x1E81, 0x0077, 0 },\n  { 0x1E82, 0x0057, 1 },\n  { 0x1E83, 0x0077, 1 },\n  { 0x1E88, 0x0057, 4 },\n  { 0x1E89, 0x0077, 4 },\n  { 0x1E92, 0x005A, 4 },\n  { 0x1E93, 0x007A, 4 },\n  { 0x1EA0, 0x0041, 4 },\n  { 0x1EA1, 0x0061, 4 },\n  { 0x1EA2, 0x0041, 3 },\n  { 0x1EA3, 0x0061, 3 },\n  { 0x1EA4, 0x00C2, 1 },\n  { 0x1EA5, 0x00E2, 1 },\n  { 0x1EA6, 0x00C2, 0 },\n  { 0x1EA7, 0x00E2, 0 },\n  { 0x1EA8, 0x00C2, 3 },\n  { 0x1EA9, 0x00E2, 3 },\n  { 0x1EAA, 0x00C2, 2 },\n  { 0x1EAB, 0x00E2, 2 },\n  { 0x1EAC, 0x00C2, 4 },\n  { 0x1EAD, 0x00E2, 4 },\n  { 0x1EAE, 0x0102, 1 },\n  { 0x1EAF, 0x0103, 1 },\n  { 0x1EB0, 0x0102, 0 },\n  { 0x1EB1, 0x0103, 0 },\n  { 0x1EB2, 0x0102, 3 },\n  { 0x1EB3, 0x0103, 3 },\n  { 0x1EB4, 0x0102, 2 },\n  { 0x1EB5, 0x0103, 2 },\n  { 0x1EB6, 0x0102, 4 },\n  { 0x1EB7, 0x0103, 4 },\n  { 0x1EB8, 0x0045, 4 },\n  { 0x1EB9, 0x0065, 4 },\n  { 0x1EBA, 0x0045, 3 },\n  { 0x1EBB, 0x0065, 3 },\n  { 0x1EBC, 0x0045, 2 },\n  { 0x1EBD, 0x0065, 2 },\n  { 0x1EBE, 0x00CA, 1 },\n  { 0x1EBF, 0x00EA, 1 },\n  { 0x1EC0, 0x00CA, 0 },\n  { 0x1EC1, 0x00EA, 0 },\n  { 0x1EC2, 0x00CA, 3 },\n  { 0x1EC3, 0x00EA, 3 },\n  { 0x1EC4, 0x00CA, 2 },\n  { 0x1EC5, 0x00EA, 2 },\n  { 0x1EC6, 0x00CA, 4 },\n  { 0x1EC7, 0x00EA, 4 },\n  { 0x1EC8, 0x0049, 3 },\n  { 0x1EC9, 0x0069, 3 },\n  { 0x1ECA, 0x0049, 4 },\n  { 0x1ECB, 0x0069, 4 },\n  { 0x1ECC, 0x004F, 4 },\n  { 0x1ECD, 0x006F, 4 },\n  { 0x1ECE, 0x004F, 3 },\n  { 0x1ECF, 0x006F, 3 },\n  { 0x1ED0, 0x00D4, 1 },\n  { 0x1ED1, 0x00F4, 1 },\n  { 0x1ED2, 0x00D4, 0 },\n  { 0x1ED3, 0x00F4, 0 },\n  { 0x1ED4, 0x00D4, 3 },\n  { 0x1ED5, 0x00F4, 3 },\n  { 0x1ED6, 0x00D4, 2 },\n  { 0x1ED7, 0x00F4, 2 },\n  { 0x1ED8, 0x00D4, 4 },\n  { 0x1ED9, 0x00F4, 4 },\n  { 0x1EDA, 0x01A0, 1 },\n  { 0x1EDB, 0x01A1, 1 },\n  { 0x1EDC, 0x01A0, 0 },\n  { 0x1EDD, 0x01A1, 0 },\n  { 0x1EDE, 0x01A0, 3 },\n  { 0x1EDF, 0x01A1, 3 },\n  { 0x1EE0, 0x01A0, 2 },\n  { 0x1EE1, 0x01A1, 2 },\n  { 0x1EE2, 0x01A0, 4 },\n  { 0x1EE3, 0x01A1, 4 },\n  { 0x1EE4, 0x0055, 4 },\n  { 0x1EE5, 0x0075, 4 },\n  { 0x1EE6, 0x0055, 3 },\n  { 0x1EE7, 0x0075, 3 },\n  { 0x1EE8, 0x01AF, 1 },\n  { 0x1EE9, 0x01B0, 1 },\n  { 0x1EEA, 0x01AF, 0 },\n  { 0x1EEB, 0x01B0, 0 },\n  { 0x1EEC, 0x01AF, 3 },\n  { 0x1EED, 0x01B0, 3 },\n  { 0x1EEE, 0x01AF, 2 },\n  { 0x1EEF, 0x01B0, 2 },\n  { 0x1EF0, 0x01AF, 4 },\n  { 0x1EF1, 0x01B0, 4 },\n  { 0x1EF2, 0x0059, 0 },\n  { 0x1EF3, 0x0079, 0 },\n  { 0x1EF4, 0x0059, 4 },\n  { 0x1EF5, 0x0079, 4 },\n  { 0x1EF6, 0x0059, 3 },\n  { 0x1EF7, 0x0079, 3 },\n  { 0x1EF8, 0x0059, 2 },\n  { 0x1EF9, 0x0079, 2 },\n  { 0x1FED, 0x00A8, 0 },\n  { 0x1FEE, 0x00A8, 1 }, /* U+1FEE => U+0385 => U+00A8 U+0301 */\n};\n\n#endif /* _VIETCOMB_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/lib/viscii.h",
    "content": "/*\n * Copyright (C) 1999-2001, 2016 Free Software Foundation, Inc.\n * This file is part of the GNU LIBICONV Library.\n *\n * The GNU LIBICONV Library is free software; you can redistribute it\n * and/or modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * The GNU LIBICONV Library is distributed in the hope that it will be\n * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public\n * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n * If not, see <http://www.gnu.org/licenses/>.\n */\n\n/*\n * VISCII1.1-1\n */\n\n/* Specification: RFC 1456 */\n\nstatic const unsigned short viscii_2uni_1[32] = {\n  /* 0x00 */\n  0x0000, 0x0001, 0x1eb2, 0x0003, 0x0004, 0x1eb4, 0x1eaa, 0x0007,\n  0x0008, 0x0009, 0x000a, 0x000b, 0x000c, 0x000d, 0x000e, 0x000f,\n  /* 0x10 */\n  0x0010, 0x0011, 0x0012, 0x0013, 0x1ef6, 0x0015, 0x0016, 0x0017,\n  0x0018, 0x1ef8, 0x001a, 0x001b, 0x001c, 0x001d, 0x1ef4, 0x001f,\n};\nstatic const unsigned short viscii_2uni_2[128] = {\n  /* 0x80 */\n  0x1ea0, 0x1eae, 0x1eb0, 0x1eb6, 0x1ea4, 0x1ea6, 0x1ea8, 0x1eac,\n  0x1ebc, 0x1eb8, 0x1ebe, 0x1ec0, 0x1ec2, 0x1ec4, 0x1ec6, 0x1ed0,\n  /* 0x90 */\n  0x1ed2, 0x1ed4, 0x1ed6, 0x1ed8, 0x1ee2, 0x1eda, 0x1edc, 0x1ede,\n  0x1eca, 0x1ece, 0x1ecc, 0x1ec8, 0x1ee6, 0x0168, 0x1ee4, 0x1ef2,\n  /* 0xa0 */\n  0x00d5, 0x1eaf, 0x1eb1, 0x1eb7, 0x1ea5, 0x1ea7, 0x1ea9, 0x1ead,\n  0x1ebd, 0x1eb9, 0x1ebf, 0x1ec1, 0x1ec3, 0x1ec5, 0x1ec7, 0x1ed1,\n  /* 0xb0 */\n  0x1ed3, 0x1ed5, 0x1ed7, 0x1ee0, 0x01a0, 0x1ed9, 0x1edd, 0x1edf,\n  0x1ecb, 0x1ef0, 0x1ee8, 0x1eea, 0x1eec, 0x01a1, 0x1edb, 0x01af,\n  /* 0xc0 */\n  0x00c0, 0x00c1, 0x00c2, 0x00c3, 0x1ea2, 0x0102, 0x1eb3, 0x1eb5,\n  0x00c8, 0x00c9, 0x00ca, 0x1eba, 0x00cc, 0x00cd, 0x0128, 0x1ef3,\n  /* 0xd0 */\n  0x0110, 0x1ee9, 0x00d2, 0x00d3, 0x00d4, 0x1ea1, 0x1ef7, 0x1eeb,\n  0x1eed, 0x00d9, 0x00da, 0x1ef9, 0x1ef5, 0x00dd, 0x1ee1, 0x01b0,\n  /* 0xe0 */\n  0x00e0, 0x00e1, 0x00e2, 0x00e3, 0x1ea3, 0x0103, 0x1eef, 0x1eab,\n  0x00e8, 0x00e9, 0x00ea, 0x1ebb, 0x00ec, 0x00ed, 0x0129, 0x1ec9,\n  /* 0xf0 */\n  0x0111, 0x1ef1, 0x00f2, 0x00f3, 0x00f4, 0x00f5, 0x1ecf, 0x1ecd,\n  0x1ee5, 0x00f9, 0x00fa, 0x0169, 0x1ee7, 0x00fd, 0x1ee3, 0x1eee,\n};\n\nstatic int\nviscii_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\n{\n  unsigned char c = *s;\n  if (c < 0x20)\n    *pwc = (ucs4_t) viscii_2uni_1[c];\n  else if (c < 0x80)\n    *pwc = (ucs4_t) c;\n  else\n    *pwc = (ucs4_t) viscii_2uni_2[c-0x80];\n  return 1;\n}\n\nstatic const unsigned char viscii_page00[64+184] = {\n  0xc0, 0xc1, 0xc2, 0xc3, 0x00, 0x00, 0x00, 0x00, /* 0xc0-0xc7 */\n  0xc8, 0xc9, 0xca, 0x00, 0xcc, 0xcd, 0x00, 0x00, /* 0xc8-0xcf */\n  0x00, 0x00, 0xd2, 0xd3, 0xd4, 0xa0, 0x00, 0x00, /* 0xd0-0xd7 */\n  0x00, 0xd9, 0xda, 0x00, 0x00, 0xdd, 0x00, 0x00, /* 0xd8-0xdf */\n  0xe0, 0xe1, 0xe2, 0xe3, 0x00, 0x00, 0x00, 0x00, /* 0xe0-0xe7 */\n  0xe8, 0xe9, 0xea, 0x00, 0xec, 0xed, 0x00, 0x00, /* 0xe8-0xef */\n  0x00, 0x00, 0xf2, 0xf3, 0xf4, 0xf5, 0x00, 0x00, /* 0xf0-0xf7 */\n  0x00, 0xf9, 0xfa, 0x00, 0x00, 0xfd, 0x00, 0x00, /* 0xf8-0xff */\n  /* 0x0100 */\n  0x00, 0x00, 0xc5, 0xe5, 0x00, 0x00, 0x00, 0x00, /* 0x00-0x07 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08-0x0f */\n  0xd0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10-0x17 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18-0x1f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20-0x27 */\n  0xce, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x28-0x2f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30-0x37 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x38-0x3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x40-0x47 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x48-0x4f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x50-0x57 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x58-0x5f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x60-0x67 */\n  0x9d, 0xfb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x68-0x6f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x70-0x77 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x78-0x7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x80-0x87 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x88-0x8f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x90-0x97 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x98-0x9f */\n  0xb4, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa0-0xa7 */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, /* 0xa8-0xaf */\n  0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xb0-0xb7 */\n};\nstatic const unsigned char viscii_page1e[96] = {\n  0x80, 0xd5, 0xc4, 0xe4, 0x84, 0xa4, 0x85, 0xa5, /* 0xa0-0xa7 */\n  0x86, 0xa6, 0x06, 0xe7, 0x87, 0xa7, 0x81, 0xa1, /* 0xa8-0xaf */\n  0x82, 0xa2, 0x02, 0xc6, 0x05, 0xc7, 0x83, 0xa3, /* 0xb0-0xb7 */\n  0x89, 0xa9, 0xcb, 0xeb, 0x88, 0xa8, 0x8a, 0xaa, /* 0xb8-0xbf */\n  0x8b, 0xab, 0x8c, 0xac, 0x8d, 0xad, 0x8e, 0xae, /* 0xc0-0xc7 */\n  0x9b, 0xef, 0x98, 0xb8, 0x9a, 0xf7, 0x99, 0xf6, /* 0xc8-0xcf */\n  0x8f, 0xaf, 0x90, 0xb0, 0x91, 0xb1, 0x92, 0xb2, /* 0xd0-0xd7 */\n  0x93, 0xb5, 0x95, 0xbe, 0x96, 0xb6, 0x97, 0xb7, /* 0xd8-0xdf */\n  0xb3, 0xde, 0x94, 0xfe, 0x9e, 0xf8, 0x9c, 0xfc, /* 0xe0-0xe7 */\n  0xba, 0xd1, 0xbb, 0xd7, 0xbc, 0xd8, 0xff, 0xe6, /* 0xe8-0xef */\n  0xb9, 0xf1, 0x9f, 0xcf, 0x1e, 0xdc, 0x14, 0xd6, /* 0xf0-0xf7 */\n  0x19, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xf8-0xff */\n};\n\nstatic int\nviscii_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\n{\n  unsigned char c = 0;\n  if (wc < 0x0080 && (wc >= 0x0020 || (0x42100064 & (1 << wc)) == 0)) {\n    *r = wc;\n    return 1;\n  }\n  else if (wc >= 0x00c0 && wc < 0x01b8)\n    c = viscii_page00[wc-0x00c0];\n  else if (wc >= 0x1ea0 && wc < 0x1f00)\n    c = viscii_page1e[wc-0x1ea0];\n  if (c != 0) {\n    *r = c;\n    return 1;\n  }\n  return RET_ILUNI;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/AUTHORS",
    "content": "Bruno Haible <bruno@clisp.org>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/COPYING.LIB",
    "content": "\t\t  GNU LIBRARY GENERAL PUBLIC LICENSE\n\t\t       Version 2, June 1991\n\n Copyright (C) 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the library GPL.  It is\n numbered 2 because it goes with version 2 of the ordinary GPL.]\n\n\t\t\t    Preamble\n\n  The licenses for most software are designed to take away your\nfreedom to share and change it.  By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n  This license, the Library General Public License, applies to some\nspecially designated Free Software Foundation software, and to any\nother libraries whose authors decide to use it.  You can use it for\nyour libraries, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n  To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the library, or if you modify it.\n\n  For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou.  You must make sure that they, too, receive or can get the source\ncode.  If you link a program with the library, you must provide\ncomplete object files to the recipients so that they can relink them\nwith the library, after making changes to the library and recompiling\nit.  And you must show them these terms so they know their rights.\n\n  Our method of protecting your rights has two steps: (1) copyright\nthe library, and (2) offer you this license which gives you legal\npermission to copy, distribute and/or modify the library.\n\n  Also, for each distributor's protection, we want to make certain\nthat everyone understands that there is no warranty for this free\nlibrary.  If the library is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original\nversion, so that any problems introduced by others will not reflect on\nthe original authors' reputations.\n\f\n  Finally, any free program is threatened constantly by software\npatents.  We wish to avoid the danger that companies distributing free\nsoftware will individually obtain patent licenses, thus in effect\ntransforming the program into proprietary software.  To prevent this,\nwe have made it clear that any patent must be licensed for everyone's\nfree use or not licensed at all.\n\n  Most GNU software, including some libraries, is covered by the ordinary\nGNU General Public License, which was designed for utility programs.  This\nlicense, the GNU Library General Public License, applies to certain\ndesignated libraries.  This license is quite different from the ordinary\none; be sure to read it in full, and don't assume that anything in it is\nthe same as in the ordinary license.\n\n  The reason we have a separate public license for some libraries is that\nthey blur the distinction we usually make between modifying or adding to a\nprogram and simply using it.  Linking a program with a library, without\nchanging the library, is in some sense simply using the library, and is\nanalogous to running a utility program or application program.  However, in\na textual and legal sense, the linked executable is a combined work, a\nderivative of the original library, and the ordinary General Public License\ntreats it as such.\n\n  Because of this blurred distinction, using the ordinary General\nPublic License for libraries did not effectively promote software\nsharing, because most developers did not use the libraries.  We\nconcluded that weaker conditions might promote sharing better.\n\n  However, unrestricted linking of non-free programs would deprive the\nusers of those programs of all benefit from the free status of the\nlibraries themselves.  This Library General Public License is intended to\npermit developers of non-free programs to use free libraries, while\npreserving your freedom as a user of such programs to change the free\nlibraries that are incorporated in them.  (We have not seen how to achieve\nthis as regards changes in header files, but we have achieved it as regards\nchanges in the actual functions of the Library.)  The hope is that this\nwill lead to faster development of free libraries.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.  Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\".  The\nformer contains code derived from the library, while the latter only\nworks together with the library.\n\n  Note that it is possible for a library to be covered by the ordinary\nGeneral Public License rather than by this special one.\n\f\n\t\t  GNU LIBRARY GENERAL PUBLIC LICENSE\n   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n  0. This License Agreement applies to any software library which\ncontains a notice placed by the copyright holder or other authorized\nparty saying it may be distributed under the terms of this Library\nGeneral Public License (also called \"this License\").  Each licensee is\naddressed as \"you\".\n\n  A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n  The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms.  A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language.  (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n  \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it.  For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n  Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope.  The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it).  Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n  \n  1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n  You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\f\n  2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n    a) The modified work must itself be a software library.\n\n    b) You must cause the files modified to carry prominent notices\n    stating that you changed the files and the date of any change.\n\n    c) You must cause the whole of the work to be licensed at no\n    charge to all third parties under the terms of this License.\n\n    d) If a facility in the modified Library refers to a function or a\n    table of data to be supplied by an application program that uses\n    the facility, other than as an argument passed when the facility\n    is invoked, then you must make a good faith effort to ensure that,\n    in the event an application does not supply such function or\n    table, the facility still operates, and performs whatever part of\n    its purpose remains meaningful.\n\n    (For example, a function in a library to compute square roots has\n    a purpose that is entirely well-defined independent of the\n    application.  Therefore, Subsection 2d requires that any\n    application-supplied function or table used by this function must\n    be optional: if the application does not supply it, the square\n    root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole.  If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works.  But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n  3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library.  To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License.  (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.)  Do not make any other change in\nthese notices.\n\f\n  Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n  This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n  4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n  If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n  5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\".  Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n  However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\".  The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n  When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library.  The\nthreshold for this to be true is not precisely defined by law.\n\n  If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork.  (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n  Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\f\n  6. As an exception to the Sections above, you may also compile or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n  You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License.  You must supply a copy of this License.  If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License.  Also, you must do one\nof these things:\n\n    a) Accompany the work with the complete corresponding\n    machine-readable source code for the Library including whatever\n    changes were used in the work (which must be distributed under\n    Sections 1 and 2 above); and, if the work is an executable linked\n    with the Library, with the complete machine-readable \"work that\n    uses the Library\", as object code and/or source code, so that the\n    user can modify the Library and then relink to produce a modified\n    executable containing the modified Library.  (It is understood\n    that the user who changes the contents of definitions files in the\n    Library will not necessarily be able to recompile the application\n    to use the modified definitions.)\n\n    b) Accompany the work with a written offer, valid for at\n    least three years, to give the same user the materials\n    specified in Subsection 6a, above, for a charge no more\n    than the cost of performing this distribution.\n\n    c) If distribution of the work is made by offering access to copy\n    from a designated place, offer equivalent access to copy the above\n    specified materials from the same place.\n\n    d) Verify that the user has already received a copy of these\n    materials or that you have already sent this user a copy.\n\n  For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it.  However, as a special exception,\nthe source code distributed need not include anything that is normally\ndistributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n  It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system.  Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\f\n  7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n    a) Accompany the combined library with a copy of the same work\n    based on the Library, uncombined with any other library\n    facilities.  This must be distributed under the terms of the\n    Sections above.\n\n    b) Give prominent notice with the combined library of the fact\n    that part of it is a work based on the Library, and explaining\n    where to find the accompanying uncombined form of the same work.\n\n  8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License.  Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License.  However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n  9. You are not required to accept this License, since you have not\nsigned it.  However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works.  These actions are\nprohibited by law if you do not accept this License.  Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n  10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions.  You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\f\n  11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all.  For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices.  Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n  12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded.  In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n  13. The Free Software Foundation may publish revised and/or new\nversions of the Library General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number.  If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation.  If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\f\n  14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission.  For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this.  Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n\t\t\t    NO WARRANTY\n\n  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n\t\t     END OF TERMS AND CONDITIONS\n\f\n     Appendix: How to Apply These Terms to Your New Libraries\n\n  If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change.  You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n  To apply these terms, attach the following notices to the library.  It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the library's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This library is free software; you can redistribute it and/or\n    modify it under the terms of the GNU Library General Public\n    License as published by the Free Software Foundation; either\n    version 2 of the License, or (at your option) any later version.\n\n    This library is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n    Library General Public License for more details.\n\n    You should have received a copy of the GNU Library General Public\n    License along with this library; if not, write to the Free\n    Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n    MA 02110-1301, USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary.  Here is a sample; alter the names:\n\n  Yoyodyne, Inc., hereby disclaims all copyright interest in the\n  library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n  <signature of Ty Coon>, 1 April 1990\n  Ty Coon, President of Vice\n\nThat's all there is to it!\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/ChangeLog",
    "content": "2016-12-14  Bruno Haible  <bruno@clisp.org>\n\n\tAvoid error during initial autogen.sh invocation.\n\t* Makefile.devel (autoconf/aclocal.m4): Ensure directory 'autoconf'\n\texists.\n\tReported by Daiki Ueno.\n\n2016-12-03  Bruno Haible  <bruno@clisp.org>\n\n\tCreate tarballs through an Automake-like \"make dist\" command.\n\t* Makefile.in (SOURCE_FILES, LIBTOOL_IMPORTED_FILES, IMPORTED_FILES,\n\tGENERATED_FILES, DISTRIBUTED_BUILT_FILES, DISTFILES): New macros.\n\t(distdir): New target.\n\n2016-12-04  Bruno Haible  <bruno@clisp.org>\n\n\tRemove imported files from version control.\n\t* INSTALL.generic: Remove from version control.\n\t* build-aux/config.guess: Likewise.\n\t* build-aux/config.libpath: Likewise.\n\t* build-aux/config.sub: Likewise.\n\t* build-aux/install-sh: Likewise.\n\t* build-aux/mkinstalldirs: Likewise.\n\t* m4/codeset.m4: Likewise.\n\t* m4/fcntl-o.m4: Likewise.\n\t* m4/glibc21.m4: Likewise.\n\t* m4/relocatable-lib.m4: Likewise.\n\t* m4/visibility.m4: Likewise.\n\n2016-12-03  Bruno Haible  <bruno@clisp.org>\n\n\tMake Makefile.devel more useful for the users of the released tarball.\n\t* Makefile.devel (totally-clean): New target.\n\t* autogen.sh: Invoke it and 'all'.\n\n2016-12-03  Bruno Haible  <bruno@clisp.org>\n\n\tModernize configure.ac.\n\t* configure.ac: Require autoconf >= 2.60. Use 2-argument AC_INIT.\n\tUse AC_CONFIG_SRCDIR.\n\n2016-12-03  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate documentation.\n\t* README: Update the libiconv version number.\n\t* HACKING: Refer to the Git repository.\n\t* INTEGRATE: Mention the Gnulib module.\n\n2016-11-23  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate installation instructions for Windows.\n\t* README.windows: Generic reference to top-level file.\n\n2016-11-23  Bruno Haible  <bruno@clisp.org>\n\n\tDrop the nickname \"woe32\".\n\t* README.windows: Renamed from README.woe32.\n\n2016-10-22  Bruno Haible  <bruno@clisp.org>\n\n\tSwitch to libtool 2.4.6.\n\t* m4/libtool.m4: Update from libtool-2.4.6, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}..\n\t* m4/ltoptions.m4: Likewise.\n\t* m4/ltversion.m4: Likewise.\n\t* build-aux/ltmain.sh: Likewise.\n\n2016-10-01  Bruno Haible  <bruno@clisp.org>\n\n\tSwitch to automake 1.15.\n\t* Makefile.devel (ACLOCAL): Switch to version 1.15.\n\n2012-04-28  Bruno Haible  <bruno@clisp.org>\n\n\tSwitch to autoconf 2.69 and automake 1.12.\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.69.\n\t(ACLOCAL): Switch to version 1.12.\n\n2011-10-18  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.4.2, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}..\n\t* m4/ltoptions.m4: Likewise.\n\t* m4/ltversion.m4: Likewise.\n\t* build-aux/ltmain.sh: Likewise.\n\n2010-09-23  Bruno Haible  <bruno@clisp.org>\n\n\tSwitch to autoconf 2.68.\n\t* autogen.sh: Update comment.\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.68.\n\n2010-09-23  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.4, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}.\n\t* m4/ltversion.m4: Update from libtool-2.4.\n\t* build-aux/ltmain.sh: Likewise.\n\n2010-07-31  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.67.\n\n2010-07-03  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.66.\n\n2010-06-04  Bruno Haible  <bruno@clisp.org>\n\n\tAddendum to 2009-10-18 commit.\n\t* m4/fcntl-o.m4: New file, from gnulib.\n\t* m4/fcntl_h.m4: Remove file.\n\n2010-06-04  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.2.8, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}.\n\t* m4/ltoptions.m4: Update from libtool-2.2.8.\n\t* m4/ltversion.m4: Likewise.\n\t* m4/lt~obsolete.m4: Likewise.\n\t* build-aux/ltmain.sh: Likewise.\n\n2010-05-08  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/cygwin-1.7.2: New file.\n\t* lib/config.charset: Update comments for Cygwin 1.7.\n\t* lib/localcharset.c: Likewise.\n\n2010-03-30  Bruno Haible  <bruno@clisp.org>\n\n\t* README.woe32: Mention Cygwin.\n\n2009-12-11  Bruno Haible  <bruno@clisp.org>\n\n\t* include/libcharset.h.in: Untabify.\n\n2009-12-11  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.65.\n\n2009-10-18  Bruno Haible  <bruno@clisp.org>\n\n\t* README: Update.\n\n2009-10-18  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Invoke gl_FCNTL_O_FLAGS.\n\t* INTEGRATE: Mention fcntl_h.m4 and the gl_FCNTL_O_FLAGS invocation.\n\n2009-08-15  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.64.\n\n2009-05-19  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOMAKE, ACLOCAL): Switch to version 1.11.\n\t* autogen.sh: Update comments.\n\n2009-01-25  Bruno Haible  <bruno@clisp.org>\n\n\tDon't install charset.alias on MacOS X >= 10.3.\n\t* INTEGRATE: Don't install charset.alias on MacOS X >= 10.3, if the\n\tfile does not yet exist.\n\n2009-01-25  Bruno Haible  <bruno@clisp.org>\n\n\tDon't install charset.alias on mingw and Cygwin.\n\t* INTEGRATE: Don't install charset.alias on mingw and Cygwin, if the\n\tfile does not yet exist. The result for these platforms is hardcoded in\n\tlocalcharset.c.\n\n2009-01-24  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/all-charsets: Add CP1131, ARMSCII-8, PT154 to the list of\n\tallowed encodings.\n\t* tools/darwin-7.5: Regenerated.\n\t* tools/darwin-9.5: Regenerated.\n\n2009-01-18  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/darwin-9.5: New file.\n\n2009-01-18  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/locale_monthnames.c: New file.\n\n2009-01-16  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in (install-strip): New target.\n\tReported by Alon Bar-Lev <alon.barlev@gmail.com>.\n\n2009-01-14  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: More consistent m4 quoting.\n\n2008-09-28  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux/ltmain.sh (func_emit_cwrapperexe_src): On mingw,\n\tpreprocess the argument vector through prepare_spawn.\n\n2008-09-16  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.63.\n\n2008-09-07  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.2.6, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}.\n\t* m4/ltoptions.m4: Update from libtool-2.2.6.\n\t* m4/ltsugar.m4: Likewise.\n\t* m4/ltversion.m4: Likewise.\n\t* build-aux/ltmain.sh: Likewise.\n\n2008-05-18  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.2.4, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}.\n\t* m4/ltoptions.m4: Update from libtool-2.2.4.\n\t* m4/ltversion.m4: Likewise.\n\t* m4/lt~obsolete.m4: Likewise.\n\t* build-aux/ltmain.sh: Likewise.\n\n2008-04-14  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Invoke AC_USE_SYSTEM_EXTENSIONS instead of AC_AIX and\n\tAC_MINIX.\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Require autoconf-2.62.\n\n2008-04-06  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from libtool-2.2.2, with modifications:\n\t2008-04-06  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use\n\t\tCONFIG_SHELL; don't assume that the Makefile.in will set SHELL\n\t\tto ${CONFIG_SHELL}.\n\t* m4/ltoptions.m4: New file, from libtool-2.2.2.\n\t* m4/ltsugar.m4: New file, from libtool-2.2.2.\n\t* m4/ltversion.m4: New file, from libtool-2.2.2.\n\t* m4/lt~obsolete.m4: New file, from libtool-2.2.2.\n\t* build-aux/ltmain.sh: New file, from libtool-2.2.2.\n\t* configure.ac: Use LT_INIT instead of AC_PROG_LIBTOOL.\n\n2007-11-14  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/all-locales: Add \"C\" for Darwin. Treat OpenBSD like Darwin.\n\n2007-11-11  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Require version 2.61.\n\t(ACLOCAL): Require version 1.10.\n\n2007-10-26  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update, based on libtool-1.5.24.\n\t* build-aux/ltmain.sh: Update, based on libtool-1.5.24.\n\n2007-06-30  Bruno Haible  <bruno@clisp.org>\n\n\t* autogen.sh: New file.\n\t* DEPENDENCIES: New file.\n\t* HACKING: New file.\n\n2007-03-04  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Invoke gl_RELOCATABLE_LIBRARY instead of\n\tAC_RELOCATABLE_LIBRARY.\n\t* m4/relocatable-lib.m4: New file, from gnulib.\n\t* m4/relocatable.m4: Remove file.\n\n2007-02-16  Juan Manuel Guerrero  <juan.guerrero@gmx.de>\n\n\t* djgpp/*: Update.\n\n2006-10-31  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate from GNU gettext.\n\t2006-10-25  Bruno Haible  <bruno@clisp.org>\n\t\t* m4/relocatable.m4 (AC_RELOCATABLE_BODY): Renamed from\n\t\tAC_RELOCATABLE, without the AC_LIBOBJ invocation.\n\t\t(AC_RELOCATABLE): New macro. Invoke AC_LIBOBJ here.\n\n2006-10-18  Bruno Haible  <bruno@clisp.org>\n\n\t* INTEGRATE: Remove recommendation to test for setlocale.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Assume <stddef.h>, <stdlib.h>, <string.h> exist.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Remove obsolete calls AC_PROG_GCC_TRADITIONAL,\n\tAC_ISC_POSIX.\n\n2006-07-25  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.msvc: Remove file.\n\t* Makefile.devel (config.h.msvc): Remove rule.\n\t(include/libcharset.h.msvc-shared, include/localcharset.h.msvc-shared):\n\tRemove rules.\n\t(all): Update.\n\n2006-07-25  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.vms: Remove file.\n\t* Makefile.devel (config.h_vms): Remove rule.\n\t(all): Update.\n\n2006-06-27  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF, AUTOHEADER): Use autoconf-2.60.\n\t* Makefile.in (datarootdir): New variable.\n\t* configure.ac (mandir): Remove customization.\n\n2006-03-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>\n\n\t* m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER) [ linux ]: Avoid warning when\n\t\"parsing\" /etc/ld.so.conf and empty /etc/ld.so.conf.d.\n\n2006-05-15  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/relocatable.m4: Update from GNU gettext.\n\n2006-05-14  Bruno Haible  <bruno@clisp.org>,\n            Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>\n\n\t* m4/libtool.m4 [ linux ] (AC_LIBTOOL_LANG_CXX_CONFIG)\n\t(AC_LIBTOOL_POSTDEP_PREDEP, AC_LIBTOOL_PROG_COMPILER_PIC)\n\t(AC_LIBTOOL_PROG_LD_SHLIBS): Add support for Sun C 5.9,\n\tSun C++ 5.9, and Sun Fortran 8.3 on Linux.\n\n2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>\n\n\t* m4/libtool.m4: On Cygwin, like on mingw, define DLL_EXPORT when\n\tcompiling a shared library object.\n\n2006-03-31  Juan Manuel Guerrero  <juan.guerrero@gmx.de>\n\n\t* djgpp/*: Update.\n\n2005-12-29  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.ac: Renamed from configure.in.\n\t* Makefile.devel (configure, config.h.in): Update.\n\t* djgpp/Makefile.maint (fnchange.lst, README): Update.\n\n2005-12-29  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux/config.guess: Update to GNU version 2005-12-23.\n\t* build-aux/config.sub: Likewise.\n\t* build-aux/config.libpath: Update from GNU gettext.\n\n2005-12-29  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/codeset.m4: Update from GNU gettext.\n\t* m4/glibc21.m4: Update from GNU gettext.\n\t* m4/relocatable.m4: Update from GNU gettext.\n\t* configure: Invoke gl_GLIBC21 instead of jm_GLIBC21.\n\n2005-12-29  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update, based on libtool-1.5.22.\n\t* build-aux/ltmain.sh: Update, based on libtool-1.5.22.\n\n2005-09-18  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update, based on libtool-1.5.20.\n\t* build-aux/ltmain.sh: Update, based on libtool-1.5.20.\n\n2005-07-24  Bruno Haible  <bruno@clisp.org>\n\n\tTidy up exported symbols.\n\t* m4/visibility.m4: New file.\n\t* include/export.h: New file.\n\t* configure.in Invoke gl_VISIBILITY. Use AC_CONFIG_FILES. Arrange to\n\tcreate also include/localcharset.h.inst.\n\t(VERSION): Bump to 1.4.\n\t* Makefile.devel (all): Depend on include/localcharset.h.build.in.\n\t(include/localcharset.h.build.in): New rule.\n\t* Makefile.in (all): Remove dependency on include/localcharset.h.\n\t(include/localcharset.h): Remove rule.\n\t(install-lib, install): Install include/localcharset.h.inst,\n\tnot the include/localcharset.h that was used for building.\n\t(distclean, maintainer-clean): Remove also include/localcharset.h.inst.\n\n2005-07-08  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4 (postinstall_cmds) [cygwin,mingw,pw32]: Make DLL\n\texecutable after installing it.\n\n2005-07-07  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in: Bump version number.\n\t* windows/charset.rc: Likewise.\n\n2005-07-05  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/relocatable.m4 (AC_RELOCATABLE): On mingw, simply set\n\tSET_RELOCATABLE to a trivial value.\n\n2005-07-05  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOHEADER, ACLOCAL): New variables.\n\t(autoconf/aclocal.m4, config.h.in): Use them.\n\n2005-03-22  Bruno Haible  <bruno@clisp.org>\n\n\t* build-aux: New directory, renamed from autoconf.\n\t* configure.in (AC_CONFIG_AUX_DIR): Use build-aux.\n\t* Makefile.in (mkinstalldirs): Update.\n\n2005-01-05  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from GNU gettext, based on libtool-1.5.10.\n\t* autoconf/ltmain.sh: Update from GNU gettext, based on libtool-1.5.10.\n\n2004-09-21  Juan Manuel Guerrero  <st001906@hrz1.hrz.tu-darmstadt.de>\n\n\t* djgpp/config.bat: Update.\n\t* djgpp/config.sed: Update.\n\t* djgpp/config.site: Update.\n\t* djgpp/fnchange.in: Update.\n\t* djgpp/README.in: Update.\n\n2004-08-25  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from GNU gettext, based on libtool-1.5.6.\n\t* autoconf/ltmain.sh: Update from GNU gettext, based on libtool-1.5.6.\n\n2004-01-20  Bruno Haible  <bruno@clisp.org>\n\n\tUpgrade from gettext-0.14.\n\n\t2003-08-24  Bruno Haible  <bruno@clisp.org>\n\t* m4/relocatable.m4 (AC_RELOCATABLE): Use $(host) instead of @host@,\n\tsince the substitution of @host@ may occur before the substitution of\n\t@SET_RELOCATABLE@.\n\n2004-01-20  Bruno Haible  <bruno@clisp.org>\n\n\tAssume automake-1.8.\n\t* Makefile.devel (AUTOCONF): Assume autoconf-2.59.\n\n2003-06-18  Bruno Haible  <bruno@clisp.org>\n\n\t* config/install-sh: Update from automake-1.7.5.\n\n2003-06-07  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (config.h_vms): Remove INSTALLPREFIX.\n\tReported by Jouk Jansen <joukj@hrem.stm.tudelft.nl>.\n\n2003-05-19  Bruno Haible  <bruno@clisp.org>\n\n\t* windows/charset.rc: Include <winver.h>.\n\tReported by Perry Rapp.\n\n2003-05-07  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.vms: New file.\n\t* Makefile.devel (config.h_vms): New rule.\n\t(all): Depend on it.\n\n2003-05-06  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Update from GNU gettext, based on libtool-1.5.\n\n2003-05-06  Bruno Haible  <bruno@clisp.org>\n\n\t* autoconf/config.guess: Update to GNU version 2003-02-22.\n\t* autoconf/config.sub: Likewise.\n\n2003-05-06  Bruno Haible  <bruno@clisp.org>\n\n\t* autoconf/ltmain.sh: Update from GNU gettext, based on libtool-1.5.\n\n2003-04-12  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in (mandir): Change default value.\n\t* Makefile.in (datadir): New variable.\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for relocatable installation.\n\t* m4/relocatable.m4: New file, from GNU gettext.\n\t* autoconf/config.libpath: New file, from GNU gettext.\n\t* configure.in: Invoke AC_RELOCATABLE_LIBRARY.\n\t* include/libcharset.h.in: New file.\n\t* Makefile.devel (include/libcharset.h.msvc-shared): New rule.\n\t(all): Depend on it.\n\t(autoconf/aclocal.m4): Update aclocal invocation.\n\t(config.h.msvc): Handle INSTALLPREFIX.\n\t* Makefile.in (include/libcharset.h): New rule.\n\t(all): Depend on it.\n\t(install-lib, install): Also install libcharset.h.\n\t(uninstall): Uninstall libcharset.h.\n\t(distclean, maintainer-clean): Remove include/libcharset.h.\n\t* Makefile.msvc (all): Create include/libcharset.h.\n\t(install): Also install libcharset.h.\n\t(uninstall): Uninstall libcharset.h.\n\t(mostlyclean, clean, distclean, maintainer-clean): Remove\n\tinclude/libcharset.h.\n\t* INSTALL.generic: Document --enable-relocatable and\n\t--with-libintl-prefix. Remove the recommendation to set CPPFLAGS and\n\tLDFLAGS. The lib-link.m4 macros make this unnecessary.\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.msvc (PREFIX): New variable.\n\t(prefix): Use it.\n\t(distclean, maintainer-clean): Drop Unix specific removals.\n\t* man/Makefile.msvc (PREFIX): New variable.\n\t(prefix): Use it.\n\t(clean): Drop unnecessary removals.\n\t(distclean): Drop Unix specific removal.\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in: Invoke AM_LANGINFO_CODESET, not jm_LANGINFO_CODESET.\n\t* autoconf/ltmain.sh: Update from GNU gettext.\n\t2003-02-18  Bruno Haible  <bruno@clisp.org>\n\t\tFix the 2002-09-16 fix.\n\t\t* ltmain.sh (install): If \"ln -s -f\" fails (this is the case\n\t\twith /usr/bin/ln on Solaris 2.7), fall back to \"rm && ln -s\".\n\t* m4/codeset.m4: Update from GNU gettext-0.10.40.\n\t* m4/glibc21.m4: Update from GNU gettext-0.10.40.\n\n2003-03-17  Bruno Haible  <bruno@clisp.org>\n\n\tImproved MSVC support.\n\t* windows/charset.rc: New file.\n\t* Makefile.msvc (prefix): Use less Unixy value.\n\t(local_prefix): Remove variable.\n\t(libdir, includedir): Use backslashes.\n\t(bindir): New variable.\n\t(mandir): Remove variable.\n\t(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): New variables.\n\t(mostlyclean, clean): Remove config.h and include/localcharset.h.\n\t(install, installdirs, uninstall): Rewritten.\n\t* README.woe32: Mention automatic installation command.\n\n\tRename libcharset.h to localcharset.h.\n\t* include/localcharset.h.in: Renamed from include/libcharset.h.in.\n\t* tools/locale_charset.c: Include localcharset.h, not libcharset.h.\n\t* Makefile.in (include/localcharset.h): Renamed from\n\tinclude/libcharset.h.\n\t(all): Update dependency.\n\t(install-lib, install, uninstall, distclean, maintainer-clean): Update.\n\t* Makefile.msvc (all): Create include/localcharset.h, not\n\tinclude/libcharset.h.\n\t* Makefile.devel (include/localcharset.h.msvc-shared): Renamed from\n\tinclude/libcharset.h.msvc-shared.\n\t(all): Update dependency.\n\t(config.h.in): Touch the file when done; autoheader doesn't do it.\n\t(config.h.msvc): Make rule more robust.\n\t* INTEGRATE: Mention localcharset.h only once.\n\t* djgpp/README.in, djgpp/README: Update.\n\t* djgpp/config.bat: Update.\n\t* djgpp/config.sed: Update.\n\t* djgpp/fnchange.in, djgpp/fnchange.lst: Update.\n\t* configure.in (VERSION): Bump to 1.2.\n\t* NEWS: New file.\n\n2003-02-14  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF): Switch to autoconf-2.57.\n\t(configure, config.h.in): Update rules.\n\n2003-01-03  Albert Chin  <libtool@thewrittenword.com>\n\n\t* autoconf/ltmain.sh: Don't pass -R flags found in a .la's\n\tdependency_libs variable directly down to the linker.\n\tReported by Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu>.\n\n2003-01-12  Bruno Haible  <bruno@clisp.org>\n\n\t* INTEGRATE: Mention localcharset.h.\n\n2003-01-01  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in (mkinstalldirs): Renamed from MKINSTALLDIRS.\n\t(install-lib, install, installdirs): Use it.\n\n2002-09-27  Bruno Haible  <bruno@clisp.org>\n\n\t* autoconf/mkinstalldirs: Upgrade to automake-1.7.2 version.\n\n2002-11-07  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Upgrade to libtool-1.4.3.\n\t* autoconf/ltmain.sh: Upgrade to libtool-1.4.3.\n\n2002-07-14  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4 (_LT_AC_LTCONFIG_HACK): Add support for GNU/FreeBSD.\n\n2002-06-12  Bruno Haible  <bruno@clisp.org>\n\n\t* configure.in: Use new AC_* names of libtool macros. Invoke\n\tAC_LIBTOOL_WIN32_DLL.\n\n2002-11-07  Bruno Haible  <bruno@clisp.org>\n\n\tMake \"make install\" without prior \"make\" work.\n\t* Makefile.in (install): Depend on include/libcharset.h.\n\tReported by Martin Mokrejš <mmokrejs@natur.cuni.cz>.\n\n2002-05-12  Bruno Haible  <bruno@clisp.org>\n\n\t* tools/all-charsets: Update for change of lib/config.charset.\n\n2002-05-12  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.devel (AUTOCONF): New variable.\n\t(configure): Use the AUTOCONF variable.\n\n2002-05-08  Bruno Haible  <bruno@clisp.org>\n\n\t* README.woe32: Renamed from README.win32.\n\n2002-02-06  Bruno Haible  <bruno@clisp.org>\n\n\t* m4/libtool.m4: Upgrade to libtool-1.4.2.\n\t* autoconf/ltmain.sh: Likewise.\n\n2002-02-02  Bruno Haible  <bruno@clisp.org>\n\n\t* autoconf/ltmain.sh: Add DESTDIR support on ELF systems.\n\n2001-11-03  Bruno Haible  <haible@clisp.cons.org>\n\n\t* autoconf/ltmain.sh: chmod 777 the .libs directory, so that\n\t\"make install\" succeeds.\n\n2001-12-04  Bruno Haible  <bruno@clisp.org>\n\n\t* INTEGRATE: Change the install rule to not create $(libdir) if\n\tthere is no file to install in it.\n\n2001-07-17  Bruno Haible  <haible@clisp.cons.org>\n\n\t* configure.in (VERSION): Bump to 1.1.\n\n2001-06-08  Bruno Haible  <haible@clisp.cons.org>\n\n\t* m4/libtool.m4: Upgrade to libtool-1.4.\n\t* autoconf/ltmain.sh: Likewise.\n\t* autoconf/ltconfig: Remove file.\n\n2001-06-08  Bruno Haible  <haible@clisp.cons.org>\n\n\t* autoconf/config.guess: Update to GNU version 2001-05-11.\n\t* autoconf/config.sub: Likewise.\n\n2001-05-21  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in (include/libcharset.h): New target.\n\t(all): Depend on it.\n\n2001-05-11  Bruno Haible  <haible@clisp.cons.org>\n\n\t* INTEGRATE (Makefile.in): Fix syntax error.\n\n2001-05-06  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.msvc (config.h): Allow the 'del' command to fail.\n\n2001-03-21  Bruno Haible  <haible@clisp.cons.org>\n\n\t* INSTALL.generic (Particular Systems): Add recommendations for AIX 3.\n\n2001-03-10  Bruno Haible  <haible@clisp.cons.org>\n\n\t* INSTALL.generic: New section \"Particular Systems\".\n\n2001-03-05  Bruno Haible  <haible@clisp.cons.org>\n\n\t* tools/all-charsets: Update for change of lib/config.charset.\n\n2001-03-01  Bruno Haible  <haible@clisp.cons.org>\n\n\t* tools/all-charsets: Update for change of lib/config.charset.\n\n2001-02-25  Bruno Haible  <haible@clisp.cons.org>\n\n\t* autoconf/ltconfig:\n\tsed -e 's/reload object files/produce relocatable object files/'.\n\n2001-02-25  Bruno Haible  <haible@clisp.cons.org>\n\n\t* include/libcharset.h.in (locale_charset): Return value is never\n\tNULL any more.\n\n2001-02-22  Bruno Haible  <haible@clisp.cons.org>\n\n\t* INTEGRATE (Makefile.am): Change $@-t to t-$@. For DJGPP.\n\tPatch by Juan Manuel Guerrero <st001906@hrz1.hrz.tu-darmstadt.de>.\n\n2001-02-20  Bruno Haible  <haible@clisp.cons.org>\n\n\tBetter support for DOS/Windows platforms.\n\t* autoconf/ltconfig: Upgrade to libtool-1.3.5.\n\t* autoconf/ltmain.sh: Likewise.\n\t* m4/libtool.m4: Likewise.\n\t* autoconf/aclocal.m4: Likewise.\n\t* configure.in: Call AC_OBJEXT and AC_EXEEXT.\n\n2001-02-20  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in (libdir, includedir, mandir): Use the autoconf\n\tdetermined value, in order to respect the configure arguments.\n\t* lib/Makefile.in (libdir): Likewise.\n\n2000-12-13  Bruno Haible  <haible@clisp.cons.org>\n\n\t* autoconf/install-sh: Update to a newer version from fileutils.\n\n2000-12-12  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in: Use $(MAKE) instead of $(MAKE) -r. Needed with Solaris\n\t\"make\", which doesn't set MAKE as expected by @SET_MAKE@ if -r is\n\tgiven. Reported by Toshimitsu Fujiwara.\n\n2000-12-08  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in (exec_prefix): Use configure's --exec-prefix argument.\n\n2000-12-02  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.msvc (check): Depend on target 'force' as well.\n\t(mostlyclean, clean, distclean, maintainer-clean): Fix dependency.\n\n\t* Makefile.msvc: Replace STATIC with its opposite flag, DLL.\n\n2000-11-24  Bruno Haible  <haible@clisp.cons.org>\n\n\t* tools/all-charsets: Update for 2000-10-31 change of\n\tlib/config.charset.\n\n2000-11-23  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in (install-lib): Fix for builddir != srcdir.\n\n2000-11-22  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in (all): Fix for builddir != srcdir.\n\n2000-11-21  Bruno Haible  <haible@clisp.cons.org>\n\n\t* include/libcharset.h.in: Renamed from include/libcharset.h.\n\t* windows/dllexport.h: New file.\n\t* Makefile.devel (all): Add config.h.msvc,\n\tinclude/libcharset.h.msvc-shared.\n\t(config.h.msvc, include/libcharset.h.msvc-shared): New targets.\n\t* Makefile.msvc (MFLAGS): New variable.\n\t(all): Create include\\libcharset.h.\n\t(distclean, maintainer-clean): Remove include\\libcharset.h.\n\t* Makefile.in (CP): New variable.\n\t(all): Create include/libcharset.h.\n\t(distclean, maintainer-clean): Remove include/libcharset.h.\n\n2000-11-18  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.devel (config.h.in): Rename from config.h.\n\n2000-11-16  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in: After \"cd\", use \"&&\" not \";\".\n\n2000-10-31  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.msvc: New file.\n\t* README.win32: New file.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/DEPENDENCIES",
    "content": "No packages need to be installed before GNU libcharset is installed.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/HACKING",
    "content": "All you need to know when hacking (modifying) GNU libcharset or when building\nit off the Git repository.\n\n\nRequirements\n============\n\nYou will need reasonably recent versions of the build tools:\n\n  * A C compiler. Such as GNU GCC.\n    + Homepage:\n      http://gcc.gnu.org/\n\n  * GNU autoconf\n    + Homepage:\n      http://www.gnu.org/software/autoconf/\n\n  * GNU m4\n    + Homepage:\n      http://www.gnu.org/software/m4/\n\n  * Perl\n    + Homepage:\n      http://www.perl.org/\n\nAnd, of course, the packages listed in the DEPENDENCIES file.\n\n\nBuilding off the Git repository\n===============================\n\nAccess to the Git repository is described at\nhttps://savannah.gnu.org/git/?group=libiconv .\n\nAfter fetching the sources from the Git repository, peek at the comments in\nautogen.sh, then run \"./autogen.sh\"; then you can proceed with \"./configure\"\nas usual.\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/INSTALL.generic",
    "content": "Basic Installation\n==================\n\n   These are generic installation instructions.\n\n   The `configure' shell script attempts to guess correct values for\nvarious system-dependent variables used during compilation.  It uses\nthose values to create a `Makefile' in each directory of the package.\nIt may also create one or more `.h' files containing system-dependent\ndefinitions.  Finally, it creates a shell script `config.status' that\nyou can run in the future to recreate the current configuration, a file\n`config.cache' that saves the results of its tests to speed up\nreconfiguring, and a file `config.log' containing compiler output\n(useful mainly for debugging `configure').\n\n   If you need to do unusual things to compile the package, please try\nto figure out how `configure' could check whether to do them, and mail\ndiffs or instructions to the address given in the `README' so they can\nbe considered for the next release.  If at some point `config.cache'\ncontains results you don't want to keep, you may remove or edit it.\n\n   The file `configure.ac' is used to create `configure' by a program\ncalled `autoconf'.  You only need `configure.ac' if you want to change\nit or regenerate `configure' using a newer version of `autoconf'.\n\nThe simplest way to compile this package is:\n\n  1. `cd' to the directory containing the package's source code and type\n     `./configure' to configure the package for your system.  If you're\n     using `csh' on an old version of System V, you might need to type\n     `sh ./configure' instead to prevent `csh' from trying to execute\n     `configure' itself.\n\n     Running `configure' takes awhile.  While running, it prints some\n     messages telling which features it is checking for.\n\n  2. Type `make' to compile the package.\n\n  3. Optionally, type `make check' to run any self-tests that come with\n     the package.\n\n  4. Type `make install' to install the programs and any data files and\n     documentation.\n\n  5. You can remove the program binaries and object files from the\n     source code directory by typing `make clean'.  To also remove the\n     files that `configure' created (so you can compile the package for\n     a different kind of computer), type `make distclean'.  There is\n     also a `make maintainer-clean' target, but that is intended mainly\n     for the package's developers.  If you use it, you may have to get\n     all sorts of other programs in order to regenerate files that came\n     with the distribution.\n\nCompilers and Options\n=====================\n\n   Some systems require unusual options for compilation or linking that\nthe `configure' script does not know about.  You can give `configure'\ninitial values for variables by setting them in the environment.  Using\na Bourne-compatible shell, you can do that on the command line like\nthis:\n     CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure\n\nOr on systems that have the `env' program, you can do it like this:\n     env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure\n\nCompiling For Multiple Architectures\n====================================\n\n   You can compile the package for more than one kind of computer at the\nsame time, by placing the object files for each architecture in their\nown directory.  To do this, you must use a version of `make' that\nsupports the `VPATH' variable, such as GNU `make'.  `cd' to the\ndirectory where you want the object files and executables to go and run\nthe `configure' script.  `configure' automatically checks for the\nsource code in the directory that `configure' is in and in `..'.\n\n   If you have to use a `make' that does not supports the `VPATH'\nvariable, you have to compile the package for one architecture at a time\nin the source code directory.  After you have installed the package for\none architecture, use `make distclean' before reconfiguring for another\narchitecture.\n\n   On MacOS X 10.5 and later systems, you can create libraries and\nexecutables that work on multiple system types--known as \"fat\" or\n\"universal\" binaries--by specifying multiple '-arch' options to the\ncompiler but only a single '-arch' option to the preprocessor.  Like\nthis:\n\n     ./configure CC=\"gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64\" \\\n                 CXX=\"g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64\" \\\n                 CPP=\"gcc -E\" CXXCPP=\"g++ -E\"\n\n   This is not guaranteed to produce working output in all cases.  You\nmay have to build one architecture at a time and combine the results\nusing the 'lipo' tool if you have problems.\n\nInstallation Names\n==================\n\n   By default, `make install' will install the package's files in\n`/usr/local/bin', `/usr/local/man', etc.  You can specify an\ninstallation prefix other than `/usr/local' by giving `configure' the\noption `--prefix=PATH'.\n\n   You can specify separate installation prefixes for\narchitecture-specific files and architecture-independent files.  If you\ngive `configure' the option `--exec-prefix=PATH', the package will use\nPATH as the prefix for installing programs and libraries.\nDocumentation and other data files will still use the regular prefix.\n\n   In addition, if you use an unusual directory layout you can give\noptions like `--bindir=PATH' to specify different values for particular\nkinds of files.  Run `configure --help' for a list of the directories\nyou can set and what kinds of files go in them.\n\n   If the package supports it, you can cause programs to be installed\nwith an extra prefix or suffix on their names by giving `configure' the\noption `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.\n\nRelocatable Installation\n========================\n\n   By default, `make install' will install a package with hardwired\nfile names, and the package will not work correctly when copied or\nmoved to a different location in the filesystem.\n\n   Some packages pay attention to the `--enable-relocatable' option to\n`configure'.  This option makes the entire installed package\nrelocatable.  This means, it can be moved or copied to a different\nlocation on the filesystem.  It is possible to make symlinks to the\ninstalled and moved programs, and invoke them through the symlink.  It\nis possible to do the same thing  with a hard link _only_ if the hard\nlinked file is in the same directory as the real program.\n\n   For reliability it is best to give together with --enable-relocatable\na `--prefix' option pointing to an otherwise unused (and never used\nagain) directory, for example, `--prefix=/tmp/inst$$'.  This is\nrecommended because on some OSes the executables remember the location\nof shared libraries (and prefer them over LD_LIBRARY_PATH !), therefore\nsuch an executable will look for its shared libraries first in the\noriginal installation directory and only then in the current\ninstallation directory.\n\n   Installation with `--enable-relocatable' will not work for setuid /\nsetgid executables.  (This is because such an executable kills its\nLD_LIBRARY_PATH variable when it is launched.)\n\n   The runtime penalty and size penalty are nearly zero on Linux 2.2 or\nnewer (just one system call more when an executable is launched), and\nsmall on other systems (the wrapper program just sets an environment\nvariable and execs the real program).\n\nOptional Features\n=================\n\n   Some packages pay attention to `--enable-FEATURE' options to\n`configure', where FEATURE indicates an optional part of the package.\nThey may also pay attention to `--with-PACKAGE' options, where PACKAGE\nis something like `gnu-as' or `x' (for the X Window System).  The\n`README' should mention any `--enable-' and `--with-' options that the\npackage recognizes.\n\n   For packages that use the X Window System, `configure' can usually\nfind the X include and library files automatically, but if it doesn't,\nyou can use the `configure' options `--x-includes=DIR' and\n`--x-libraries=DIR' to specify their locations.\n\n   For packages that use the GNU libiconv library, you can use the\n`configure' option `--with-libiconv-prefix' to specify the prefix you\nused while installing GNU libiconv.  This option is not necessary if\nthat other prefix is the same as the one now specified through --prefix.\n\n   For packages that use the GNU libintl library, you can use the\n`configure' option `--with-libintl-prefix' to specify the prefix you\nused while installing GNU gettext-runtime.  This option is not necessary if\nthat other prefix is the same as the one now specified through --prefix.\n\nParticular Systems\n==================\n\n   On HP-UX, the default C compiler is not ANSI C compatible.  If GNU CC\nis not installed, it is recommended to use the following options in order\nto use an ANSI C compiler:\n\n     ./configure CC=\"cc -Ae -D_XOPEN_SOURCE=500\"\n\nand if that doesn't work, install pre-built binaries of GCC for HP-UX.\n\n   On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot\nparse its `<wchar.h>' header file.  The option `-nodtk' can be used as\na workaround.  If GNU CC is not installed, it is therefore recommended\nto try\n\n     ./configure CC=\"cc\"\n\nand if that doesn't work, try\n\n     ./configure CC=\"cc -nodtk\"\n\n   On AIX 3, the C include files by default don't define some necessary\nprototype declarations.  If GNU CC is not installed, it is recommended to\nuse the following options:\n\n     ./configure CC=\"xlc -D_ALL_SOURCE\"\n\n   On BeOS, user installed software goes in /boot/home/config, not\n/usr/local.  It is recommended to use the following options:\n\n     ./configure --prefix=/boot/home/config\n\nSpecifying the System Type\n==========================\n\n   There may be some features `configure' can not figure out\nautomatically, but needs to determine by the type of host the package\nwill run on.  Usually `configure' can figure that out, but if it prints\na message saying it can not guess the host type, give it the\n`--host=TYPE' option.  TYPE can either be a short name for the system\ntype, such as `sun4', or a canonical name with three fields:\n     CPU-COMPANY-SYSTEM\n\nSee the file `config.sub' for the possible values of each field.  If\n`config.sub' isn't included in this package, then this package doesn't\nneed to know the host type.\n\n   If you are building compiler tools for cross-compiling, you can also\nuse the `--target=TYPE' option to select the type of system they will\nproduce code for and the `--build=TYPE' option to select the type of\nsystem on which you are compiling the package.\n\nSharing Defaults\n================\n\n   If you want to set default values for `configure' scripts to share,\nyou can create a site shell script called `config.site' that gives\ndefault values for variables like `CC', `cache_file', and `prefix'.\n`configure' looks for `PREFIX/share/config.site' if it exists, then\n`PREFIX/etc/config.site' if it exists.  Or, you can set the\n`CONFIG_SITE' environment variable to the location of the site script.\nA warning: not all `configure' scripts look for a site script.\n\nOperation Controls\n==================\n\n   `configure' recognizes the following options to control how it\noperates.\n\n`--cache-file=FILE'\n     Use and save the results of the tests in FILE instead of\n     `./config.cache'.  Set FILE to `/dev/null' to disable caching, for\n     debugging `configure'.\n\n`--help'\n     Print a summary of the options to `configure', and exit.\n\n`--quiet'\n`--silent'\n`-q'\n     Do not print messages saying which checks are being made.  To\n     suppress all normal output, redirect it to `/dev/null' (any error\n     messages will still be shown).\n\n`--srcdir=DIR'\n     Look for the package's source code in directory DIR.  Usually\n     `configure' can determine that directory automatically.\n\n`--version'\n     Print the version of Autoconf used to generate the `configure'\n     script, and exit.\n\n`configure' also accepts some other, not widely useful, options.\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/INTEGRATE",
    "content": "Integration of this library into your package:\n\nThe preferred way is to use the Gnulib module 'localcharset'.\n\nHere are instructions if you don't want to use Gnulib. It's tedious,\nmany small changes to your package:\n\n* Copy the lib/ sourcefiles (localcharset.c, config.charset, ref-add.sin,\n  ref-del.sin) and the include file (include/localcharset.h) into your\n  package.\n\n* Add the m4/ files (codeset.m4, fcntl_h.m4, glibc21.m4) to your aclocal.m4\n  file or, if you are using automake, to your m4/ directory.\n\n* Add the following lines to your configure.ac file:\n\n    AC_CANONICAL_HOST\n    AM_LANGINFO_CODESET\n    gl_FCNTL_O_FLAGS\n    jm_GLIBC21\n    AC_CHECK_HEADERS([stddef.h stdlib.h string.h])\n\n  and make sure that it sets and AC_SUBSTs the PACKAGE variable.\n\n* If you are not using automake, add rules to your Makefile.in:\n\n  - Augment target \"all\" by\n      localcharset.o charset.alias ref-add.sed ref-del.sed\n    with special rules for the last three:\n\n    charset.alias: $(srcdir)/config.charset\n\t$(SHELL) $(srcdir)/config.charset '@host@' > t-$@\n\tmv t-$@ $@\n\n    ref-add.sed : $(srcdir)/ref-add.sin\n\tsed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-add.sin > t-$@\n\tmv t-$@ $@\n\n    ref-del.sed : $(srcdir)/ref-del.sin\n\tsed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-del.sin > t-$@\n\tmv t-$@ $@\n\n  - Augment target \"install\" by\n\n\tif test @GLIBC21@ = no; then \\\n\t  case '@host_os@' in \\\n\t    darwin[56]*) \\\n\t      need_charset_alias=true ;; \\\n\t    darwin* | cygwin* | mingw* | pw32* | cegcc*) \\\n\t      need_charset_alias=false ;; \\\n\t    *) \\\n\t      need_charset_alias=true ;; \\\n\t  esac ; \\\n\telse \\\n\t  need_charset_alias=false ; \\\n\tfi ; \\\n\tif $$need_charset_alias; then \\\n\t  $(mkinstalldirs) $(DESTDIR)$(libdir) ; \\\n\tfi ; \\\n\tif test -f $(DESTDIR)$(libdir)/charset.alias; then \\\n\t  sed -f ref-add.sed $(DESTDIR)$(libdir)/charset.alias > $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t  $(INSTALL_DATA) $(DESTDIR)$(libdir)/t-charset.alias $(DESTDIR)$(libdir)/charset.alias; \\\n\t  rm -f $(DESTDIR)$(libdir)/t-charset.alias; \\\n\telse \\\n\t  if $$need_charset_alias; then \\\n\t    sed -f ref-add.sed charset.alias > $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t    $(INSTALL_DATA) $(DESTDIR)$(libdir)/t-charset.alias $(DESTDIR)$(libdir)/charset.alias; \\\n\t    rm -f $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t  fi; \\\n\tfi\n\n  - Augment target \"installdirs\" by\n\n\tif test @GLIBC21@ = no; then \\\n\t  case '@host_os@' in \\\n\t    darwin[56]*) \\\n\t      need_charset_alias=true ;; \\\n\t    darwin* | cygwin* | mingw* | pw32* | cegcc*) \\\n\t      need_charset_alias=false ;; \\\n\t    *) \\\n\t      need_charset_alias=true ;; \\\n\t  esac ; \\\n\telse \\\n\t  need_charset_alias=false ; \\\n\tfi ; \\\n\tif $$need_charset_alias; then \\\n\t  $(mkinstalldirs) $(DESTDIR)$(libdir) ; \\\n\tfi ; \\\n\n  - Augment target \"uninstall\" by\n\n\tif test -f $(DESTDIR)$(libdir)/charset.alias; then \\\n\t  sed -f ref-del.sed $(DESTDIR)$(libdir)/charset.alias > $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t  if grep '^# Packages using this file: $$' $(DESTDIR)$(libdir)/t-charset.alias > /dev/null; then \\\n\t    rm -f $(DESTDIR)$(libdir)/charset.alias; \\\n\t  else \\\n\t    $(INSTALL_DATA) $(DESTDIR)$(libdir)/t-charset.alias $(DESTDIR)$(libdir)/charset.alias; \\\n\t  fi; \\\n\t  rm -f $(DESTDIR)$(libdir)/t-charset.alias; \\\n\tfi\n\n    - Augment target \"clean\" by\n\n\trm -f charset.alias ref-add.sed ref-del.sed\n\n* If you are using automake, add rules to your Makefile.am:\n\n  - Augment the main *_SOURCES variable by\n\n        localcharset.h localcharset.c\n\n  - Augment EXTRA_DIST by\n\n        config.charset ref-add.sin ref-del.sin\n\n  - Augment target \"all-local\" by\n\n        charset.alias ref-add.sed ref-del.sed\n\n  - Add the lines:\n\ncharset_alias = $(DESTDIR)$(libdir)/charset.alias\ncharset_tmp = $(DESTDIR)$(libdir)/charset.tmp\ninstall-exec-local: all-local\n\ttest @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir)\n\tif test -f $(charset_alias); then \\\n\t  sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \\\n\t  $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \\\n\t  rm -f $(charset_tmp) ; \\\n\telse \\\n\t  if test @GLIBC21@ = no; then \\\n\t    sed -f ref-add.sed charset.alias > $(charset_tmp) ; \\\n\t    $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \\\n\t    rm -f $(charset_tmp) ; \\\n\t  fi ; \\\n\tfi\n\nuninstall-local: all-local\n\tif test -f $(charset_alias); then \\\n\t  sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \\\n\t  if grep '^# Packages using this file: $$' $(charset_tmp) \\\n\t      > /dev/null; then \\\n\t    rm -f $(charset_alias); \\\n\t  else \\\n\t    $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \\\n\t  fi; \\\n\t  rm -f $(charset_tmp); \\\n\tfi\n\ncharset.alias: config.charset\n\t$(SHELL) $(srcdir)/config.charset '@host@' > t-$@\n\tmv t-$@ $@\n\nSUFFIXES = .sed .sin\n.sin.sed:\n\tsed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@\n\tmv t-$@ $@\n\nCLEANFILES = charset.alias ref-add.sed ref-del.sed\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/Makefile",
    "content": "# Makefile for libcharset\n\n#### Start of system configuration section. ####\n\n\n# Directories used by \"make\":\nsrcdir = .\n\n# Directories used by \"make install\":\nprefix = /usr/local\nlocal_prefix = /usr/local\nexec_prefix = ${prefix}\ndatarootdir = ${prefix}/share\ndatadir = ${datarootdir}\nlibdir = ${exec_prefix}/lib\nincludedir = ${prefix}/include\nmandir = ${datarootdir}/man\n\n# Programs used by \"make\":\nCP = cp\nRM = rm -f\n\n\n# Programs used by \"make install\":\nINSTALL = /usr/bin/install -c\nINSTALL_DATA = ${INSTALL} -m 644\nmkinstalldirs = $(SHELL) ./build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\nall : include/libcharset.h force\n\tcd lib && $(MAKE) all\n\ninclude/libcharset.h :\n\tif [ ! -d include ] ; then mkdir include ; fi\n\t$(CP) $(srcdir)/include/libcharset.h.in include/libcharset.h\n\n# Installs the library and include files only. Typically called with only\n# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.\ninstall-lib : all force\n\tcd lib && $(MAKE) install-lib libdir='$(libdir)' includedir='$(includedir)'\n\t$(mkinstalldirs) $(includedir)\n\t$(INSTALL_DATA) include/libcharset.h $(includedir)/libcharset.h\n\t$(INSTALL_DATA) include/localcharset.h.inst $(includedir)/localcharset.h\n\ninstall : include/libcharset.h include/localcharset.h force\n\tcd lib && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\t$(mkinstalldirs) $(DESTDIR)$(includedir)\n\t$(INSTALL_DATA) include/libcharset.h $(DESTDIR)$(includedir)/libcharset.h\n\t$(INSTALL_DATA) include/localcharset.h.inst $(DESTDIR)$(includedir)/localcharset.h\n\ninstall-strip : install\n\ninstalldirs : force\n\tcd lib && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\t$(mkinstalldirs) $(DESTDIR)$(includedir)\n\nuninstall : force\n\tcd lib && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\t$(RM) $(DESTDIR)$(includedir)/libcharset.h\n\t$(RM) $(DESTDIR)$(includedir)/localcharset.h\n\ncheck : force\n\tcd lib && $(MAKE) check\n\nmostlyclean : force\n\tcd lib && $(MAKE) mostlyclean\n\nclean : force\n\tcd lib && $(MAKE) clean\n\ndistclean : force\n\tcd lib && if test -f Makefile; then $(MAKE) distclean; fi\n\t$(RM) include/libcharset.h include/localcharset.h include/localcharset.h.inst\n\t$(RM) config.status config.log config.cache Makefile config.h libtool\n\nmaintainer-clean : force\n\tcd lib && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\t$(RM) include/libcharset.h include/localcharset.h include/localcharset.h.inst\n\t$(RM) config.status config.log config.cache Makefile config.h libtool\n\n# List of source files.\nSOURCE_FILES = \\\n  README README.windows DEPENDENCIES HACKING INTEGRATE AUTHORS NEWS \\\n  ChangeLog Makefile.devel configure.ac Makefile.in \\\n  include/export.h include/libcharset.h.in include/localcharset.h.in \\\n  tools/README \\\n  tools/all-charsets tools/all-charsets-X11 tools/all-locales \\\n  tools/locale_charmap \\\n  tools/locale_charset.c \\\n  tools/locale_codeset.c \\\n  tools/locale_monthnames.c \\\n  tools/locale_x11encoding.c \\\n  tools/aix-3.2.5 tools/aix-4.1.5 tools/aix-4.2.0 tools/aix-4.3.2 \\\n  tools/beos-5 \\\n  tools/cygwin-1.7.2 \\\n  tools/darwin-6.8 tools/darwin-7.5 tools/darwin-9.5 \\\n  tools/freebsd-3.3 \\\n  tools/glibc-2.1.3 tools/glibc-2.1.90 tools/glibc-2.2 \\\n  tools/glibc-2.2-XF86-3.3.6 tools/glibc-2.2-XF86-4.0.1f \\\n  tools/hpux-10.01 tools/hpux-10.20 tools/hpux-11.00 \\\n  tools/irix-6.5 \\\n  tools/netbsd-3.0 \\\n  tools/openbsd-4.1 \\\n  tools/osf1-4.0a tools/osf1-4.0d tools/osf1-5.1 \\\n  tools/solaris-2.4 tools/solaris-2.5.1 tools/solaris-2.6 tools/solaris-2.6-cjk tools/solaris-2.7 \\\n  tools/sunos-4.1.4 \\\n  tools/win32 \\\n  README.djgpp \\\n  djgpp/config.bat djgpp/config.sed djgpp/config.site \\\n  djgpp/fnchange.in djgpp/fnchange.lst \\\n  djgpp/Makefile.maint \\\n  djgpp/README djgpp/README.in\n# List of distributed files imported from other packages.\nLIBTOOL_IMPORTED_FILES = \\\n  build-aux/ltmain.sh \\\n  m4/libtool.m4 \\\n  m4/lt~obsolete.m4 \\\n  m4/ltoptions.m4 \\\n  m4/ltsugar.m4 \\\n  m4/ltversion.m4\nPARENT_IMPORTED_FILES = \\\n  INSTALL.generic \\\n  build-aux/config.guess \\\n  build-aux/config.libpath \\\n  build-aux/config.sub \\\n  build-aux/install-sh \\\n  build-aux/mkinstalldirs \\\n  m4/codeset.m4 \\\n  m4/fcntl-o.m4 \\\n  m4/glibc21.m4 \\\n  m4/relocatable-lib.m4 \\\n  m4/visibility.m4\nIMPORTED_FILES = \\\n  COPYING.LIB \\\n  $(LIBTOOL_IMPORTED_FILES) $(PARENT_IMPORTED_FILES)\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES = \\\n  autoconf/aclocal.m4 configure config.h.in \\\n  include/localcharset.h.build.in\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  destdir=`echo '$(distdir)'/$$file | sed -e 's|//*[^/]*$$||'`; \\\n\t  test -d \"$$destdir\" || mkdir \"$$destdir\"; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\ttest -d '$(distdir)'/lib || mkdir '$(distdir)'/lib; cd lib && $(MAKE) distdir distdir='$(distdir)'/lib\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/Makefile.devel",
    "content": "# This is the developer's makefile, not the user's makefile.\n# Don't use it unless you know exactly what you do!\n\nSHELL = /bin/sh\nMAKE = make\nAUTOCONF = autoconf-2.69\nAUTOHEADER = autoheader-2.69\nACLOCAL = aclocal-1.15\nCP = cp\nRM = rm -f\n\nall : configures include/localcharset.h.build.in\n\nautoconf/aclocal.m4 : $(wildcard m4/*.m4)\n\ttest -d autoconf || mkdir autoconf\n\t$(ACLOCAL) -I m4 --output=$@\n\nconfigures : configure config.h.in\n\nconfigure : configure.ac autoconf/aclocal.m4\n\t$(AUTOCONF) --include autoconf\n\nconfig.h.in : configure.ac autoconf/aclocal.m4\n\t$(AUTOHEADER) --include autoconf\n\ttouch config.h.in\n\ninclude/localcharset.h.build.in : include/localcharset.h.in include/export.h\n\tsed -e 's/extern \\([^\"]\\)/extern LIBCHARSET_DLL_EXPORTED \\1/' \\\n\t    -e '/#define _LOCALCHARSET_H/r include/export.h' \\\n\t  < $< > $@\n\ntotally-clean : force\n\trm -f autoconf/aclocal.m4 configure config.h.in include/localcharset.h.build.in\n\nforce :\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/Makefile.in",
    "content": "# Makefile for libcharset\n\n#### Start of system configuration section. ####\n\n\n# Directories used by \"make\":\nsrcdir = @srcdir@\n\n# Directories used by \"make install\":\nprefix = @prefix@\nlocal_prefix = /usr/local\nexec_prefix = @exec_prefix@\ndatarootdir = @datarootdir@\ndatadir = @datadir@\nlibdir = @libdir@\nincludedir = @includedir@\nmandir = @mandir@\n\n# Programs used by \"make\":\nCP = cp\nRM = rm -f\n@SET_MAKE@\n\n# Programs used by \"make install\":\nINSTALL = @INSTALL@\nINSTALL_DATA = @INSTALL_DATA@\nmkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\nall : include/libcharset.h force\n\tcd lib && $(MAKE) all\n\ninclude/libcharset.h :\n\tif [ ! -d include ] ; then mkdir include ; fi\n\t$(CP) $(srcdir)/include/libcharset.h.in include/libcharset.h\n\n# Installs the library and include files only. Typically called with only\n# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.\ninstall-lib : all force\n\tcd lib && $(MAKE) install-lib libdir='$(libdir)' includedir='$(includedir)'\n\t$(mkinstalldirs) $(includedir)\n\t$(INSTALL_DATA) include/libcharset.h $(includedir)/libcharset.h\n\t$(INSTALL_DATA) include/localcharset.h.inst $(includedir)/localcharset.h\n\ninstall : include/libcharset.h include/localcharset.h force\n\tcd lib && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\t$(mkinstalldirs) $(DESTDIR)$(includedir)\n\t$(INSTALL_DATA) include/libcharset.h $(DESTDIR)$(includedir)/libcharset.h\n\t$(INSTALL_DATA) include/localcharset.h.inst $(DESTDIR)$(includedir)/localcharset.h\n\ninstall-strip : install\n\ninstalldirs : force\n\tcd lib && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\t$(mkinstalldirs) $(DESTDIR)$(includedir)\n\nuninstall : force\n\tcd lib && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'\n\t$(RM) $(DESTDIR)$(includedir)/libcharset.h\n\t$(RM) $(DESTDIR)$(includedir)/localcharset.h\n\ncheck : force\n\tcd lib && $(MAKE) check\n\nmostlyclean : force\n\tcd lib && $(MAKE) mostlyclean\n\nclean : force\n\tcd lib && $(MAKE) clean\n\ndistclean : force\n\tcd lib && if test -f Makefile; then $(MAKE) distclean; fi\n\t$(RM) include/libcharset.h include/localcharset.h include/localcharset.h.inst\n\t$(RM) config.status config.log config.cache Makefile config.h libtool\n\nmaintainer-clean : force\n\tcd lib && if test -f Makefile; then $(MAKE) maintainer-clean; fi\n\t$(RM) include/libcharset.h include/localcharset.h include/localcharset.h.inst\n\t$(RM) config.status config.log config.cache Makefile config.h libtool\n\n# List of source files.\nSOURCE_FILES = \\\n  README README.windows DEPENDENCIES HACKING INTEGRATE AUTHORS NEWS \\\n  ChangeLog Makefile.devel configure.ac Makefile.in \\\n  include/export.h include/libcharset.h.in include/localcharset.h.in \\\n  tools/README \\\n  tools/all-charsets tools/all-charsets-X11 tools/all-locales \\\n  tools/locale_charmap \\\n  tools/locale_charset.c \\\n  tools/locale_codeset.c \\\n  tools/locale_monthnames.c \\\n  tools/locale_x11encoding.c \\\n  tools/aix-3.2.5 tools/aix-4.1.5 tools/aix-4.2.0 tools/aix-4.3.2 \\\n  tools/beos-5 \\\n  tools/cygwin-1.7.2 \\\n  tools/darwin-6.8 tools/darwin-7.5 tools/darwin-9.5 \\\n  tools/freebsd-3.3 \\\n  tools/glibc-2.1.3 tools/glibc-2.1.90 tools/glibc-2.2 \\\n  tools/glibc-2.2-XF86-3.3.6 tools/glibc-2.2-XF86-4.0.1f \\\n  tools/hpux-10.01 tools/hpux-10.20 tools/hpux-11.00 \\\n  tools/irix-6.5 \\\n  tools/netbsd-3.0 \\\n  tools/openbsd-4.1 \\\n  tools/osf1-4.0a tools/osf1-4.0d tools/osf1-5.1 \\\n  tools/solaris-2.4 tools/solaris-2.5.1 tools/solaris-2.6 tools/solaris-2.6-cjk tools/solaris-2.7 \\\n  tools/sunos-4.1.4 \\\n  tools/win32 \\\n  README.djgpp \\\n  djgpp/config.bat djgpp/config.sed djgpp/config.site \\\n  djgpp/fnchange.in djgpp/fnchange.lst \\\n  djgpp/Makefile.maint \\\n  djgpp/README djgpp/README.in\n# List of distributed files imported from other packages.\nLIBTOOL_IMPORTED_FILES = \\\n  build-aux/ltmain.sh \\\n  m4/libtool.m4 \\\n  m4/lt~obsolete.m4 \\\n  m4/ltoptions.m4 \\\n  m4/ltsugar.m4 \\\n  m4/ltversion.m4\nPARENT_IMPORTED_FILES = \\\n  INSTALL.generic \\\n  build-aux/config.guess \\\n  build-aux/config.libpath \\\n  build-aux/config.sub \\\n  build-aux/install-sh \\\n  build-aux/mkinstalldirs \\\n  m4/codeset.m4 \\\n  m4/fcntl-o.m4 \\\n  m4/glibc21.m4 \\\n  m4/relocatable-lib.m4 \\\n  m4/visibility.m4\nIMPORTED_FILES = \\\n  COPYING.LIB \\\n  $(LIBTOOL_IMPORTED_FILES) $(PARENT_IMPORTED_FILES)\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES = \\\n  autoconf/aclocal.m4 configure config.h.in \\\n  include/localcharset.h.build.in\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  destdir=`echo '$(distdir)'/$$file | sed -e 's|//*[^/]*$$||'`; \\\n\t  test -d \"$$destdir\" || mkdir \"$$destdir\"; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\ttest -d '$(distdir)'/lib || mkdir '$(distdir)'/lib; cd lib && $(MAKE) distdir distdir='$(distdir)'/lib\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/NEWS",
    "content": "New in 1.4:\n* Tidy up the list of symbols exported from libcharset (assumes gcc >= 4.0).\n\nNew in 1.2:\n* The include file is renamed from \"libcharset.h\" to \"localcharset.h\".\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/README",
    "content": "          LIBCHARSET - portable character set determination library\n\nThis library provides a function which determines the character set / encoding\nof text in the currently selected locale (the LC_CTYPE locale facet).\n\nIt is useful for portable programs which need to process text in other\nencodings and locales than the currently selected one. Possible uses:\n\n  * Use of Unicode in POSIX compliant applications.\n  * Conversion of text between the current locale's encoding and UTF-8 (or\n    any other given encoding).\n  * Mail agents.\n\nIn theory, this would be very simple: POSIX provides the nl_langinfo function,\nin such a way that\n\n                  nl_langinfo (CODESET)\n\nreturns the encoding name. But the nl_langinfo function still does not exist\non some systems, and on those where it exists it returns unstandardized\nvariations of the encoding names, like (on Solaris) \"PCK\" for \"Shift_JIS\".\n\nThis library fixes these flaws and provides a function\n\n       const char * locale_charset (void);\n\nIt determines the current locale's character encoding, and canonicalizes it\ninto one of the canonical names listed in config.charset. The result must\nnot be freed; it is statically allocated. If the canonical name cannot be\ndetermined, the result is a non-canonical name.\n\n\nInstallation:\n\nAs usual for GNU packages:\n\n    $ ./configure --prefix=/usr/local\n    $ make\n    $ make install\n\n\nThis library is used in\n  GNU coreutils\n  GNU gettext\n  GNU clisp\n\n\nTo integrate this library into your package:\n- Either from this package. See file INTEGRATE.\n- Or from gnulib. See\n  <http://www.gnu.org/software/gnulib/MODULES.html#module=localcharset>\n\n\nDistribution:\n    The libcharset directory of\n    ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz\n\nHomepage:\n    http://www.haible.de/bruno/packages-libcharset.html\n\n\nBruno Haible <bruno@clisp.org>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/README.djgpp",
    "content": "Installation on DJGPP:\n\nSee the file djgpp/README.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/README.windows",
    "content": "Installation on Microsoft Windows:\n\nSee the file README.windows in the top-level directory of this package.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/autoconf/aclocal.m4",
    "content": "# generated automatically by aclocal 1.15 -*- Autoconf -*-\n\n# Copyright (C) 1996-2014 Free Software Foundation, Inc.\n\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n# even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n# PARTICULAR PURPOSE.\n\nm4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])\nm4_include([m4/codeset.m4])\nm4_include([m4/fcntl-o.m4])\nm4_include([m4/glibc21.m4])\nm4_include([m4/libtool.m4])\nm4_include([m4/ltoptions.m4])\nm4_include([m4/ltsugar.m4])\nm4_include([m4/ltversion.m4])\nm4_include([m4/lt~obsolete.m4])\nm4_include([m4/relocatable-lib.m4])\nm4_include([m4/visibility.m4])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/build-aux/config.guess",
    "content": "#! /bin/sh\n# Attempt to guess a canonical system name.\n#   Copyright 1992-2017 Free Software Foundation, Inc.\n\ntimestamp='2016-10-02'\n\n# This file is free software; you can redistribute it and/or modify it\n# under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, see <http://www.gnu.org/licenses/>.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that\n# program.  This Exception is an additional permission under section 7\n# of the GNU General Public License, version 3 (\"GPLv3\").\n#\n# Originally written by Per Bothner; maintained since 2000 by Ben Elliston.\n#\n# You can get the latest version of this script from:\n# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess\n#\n# Please send patches to <config-patches@gnu.org>.\n\n\nme=`echo \"$0\" | sed -e 's,.*/,,'`\n\nusage=\"\\\nUsage: $0 [OPTION]\n\nOutput the configuration name of the system \\`$me' is run on.\n\nOperation modes:\n  -h, --help         print this help, then exit\n  -t, --time-stamp   print date of last modification, then exit\n  -v, --version      print version number, then exit\n\nReport bugs and patches to <config-patches@gnu.org>.\"\n\nversion=\"\\\nGNU config.guess ($timestamp)\n\nOriginally written by Per Bothner.\nCopyright 1992-2016 Free Software Foundation, Inc.\n\nThis is free software; see the source for copying conditions.  There is NO\nwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\"\n\nhelp=\"\nTry \\`$me --help' for more information.\"\n\n# Parse command line\nwhile test $# -gt 0 ; do\n  case $1 in\n    --time-stamp | --time* | -t )\n       echo \"$timestamp\" ; exit ;;\n    --version | -v )\n       echo \"$version\" ; exit ;;\n    --help | --h* | -h )\n       echo \"$usage\"; exit ;;\n    -- )     # Stop option processing\n       shift; break ;;\n    - )\t# Use stdin as input.\n       break ;;\n    -* )\n       echo \"$me: invalid option $1$help\" >&2\n       exit 1 ;;\n    * )\n       break ;;\n  esac\ndone\n\nif test $# != 0; then\n  echo \"$me: too many arguments$help\" >&2\n  exit 1\nfi\n\ntrap 'exit 1' 1 2 15\n\n# CC_FOR_BUILD -- compiler used by this script. Note that the use of a\n# compiler to aid in system detection is discouraged as it requires\n# temporary files to be created and, as you can see below, it is a\n# headache to deal with in a portable fashion.\n\n# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still\n# use `HOST_CC' if defined, but it is deprecated.\n\n# Portable tmp directory creation inspired by the Autoconf team.\n\nset_cc_for_build='\ntrap \"exitcode=\\$?; (rm -f \\$tmpfiles 2>/dev/null; rmdir \\$tmp 2>/dev/null) && exit \\$exitcode\" 0 ;\ntrap \"rm -f \\$tmpfiles 2>/dev/null; rmdir \\$tmp 2>/dev/null; exit 1\" 1 2 13 15 ;\n: ${TMPDIR=/tmp} ;\n { tmp=`(umask 077 && mktemp -d \"$TMPDIR/cgXXXXXX\") 2>/dev/null` && test -n \"$tmp\" && test -d \"$tmp\" ; } ||\n { test -n \"$RANDOM\" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||\n { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo \"Warning: creating insecure temp directory\" >&2 ; } ||\n { echo \"$me: cannot create a temporary directory in $TMPDIR\" >&2 ; exit 1 ; } ;\ndummy=$tmp/dummy ;\ntmpfiles=\"$dummy.c $dummy.o $dummy.rel $dummy\" ;\ncase $CC_FOR_BUILD,$HOST_CC,$CC in\n ,,)    echo \"int x;\" > $dummy.c ;\n\tfor c in cc gcc c89 c99 ; do\n\t  if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then\n\t     CC_FOR_BUILD=\"$c\"; break ;\n\t  fi ;\n\tdone ;\n\tif test x\"$CC_FOR_BUILD\" = x ; then\n\t  CC_FOR_BUILD=no_compiler_found ;\n\tfi\n\t;;\n ,,*)   CC_FOR_BUILD=$CC ;;\n ,*,*)  CC_FOR_BUILD=$HOST_CC ;;\nesac ; set_cc_for_build= ;'\n\n# This is needed to find uname on a Pyramid OSx when run in the BSD universe.\n# (ghazi@noc.rutgers.edu 1994-08-24)\nif (test -f /.attbin/uname) >/dev/null 2>&1 ; then\n\tPATH=$PATH:/.attbin ; export PATH\nfi\n\nUNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown\nUNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown\nUNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown\nUNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown\n\ncase \"${UNAME_SYSTEM}\" in\nLinux|GNU|GNU/*)\n\t# If the system lacks a compiler, then just pick glibc.\n\t# We could probably try harder.\n\tLIBC=gnu\n\n\teval $set_cc_for_build\n\tcat <<-EOF > $dummy.c\n\t#include <features.h>\n\t#if defined(__UCLIBC__)\n\tLIBC=uclibc\n\t#elif defined(__dietlibc__)\n\tLIBC=dietlibc\n\t#else\n\tLIBC=gnu\n\t#endif\n\tEOF\n\teval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`\n\t;;\nesac\n\n# Note: order is significant - the case branches are not exclusive.\n\ncase \"${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}\" in\n    *:NetBSD:*:*)\n\t# NetBSD (nbsd) targets should (where applicable) match one or\n\t# more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,\n\t# *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently\n\t# switched to ELF, *-*-netbsd* would select the old\n\t# object file format.  This provides both forward\n\t# compatibility and a consistent mechanism for selecting the\n\t# object file format.\n\t#\n\t# Note: NetBSD doesn't particularly care about the vendor\n\t# portion of the name.  We always set it to \"unknown\".\n\tsysctl=\"sysctl -n hw.machine_arch\"\n\tUNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \\\n\t    /sbin/$sysctl 2>/dev/null || \\\n\t    /usr/sbin/$sysctl 2>/dev/null || \\\n\t    echo unknown)`\n\tcase \"${UNAME_MACHINE_ARCH}\" in\n\t    armeb) machine=armeb-unknown ;;\n\t    arm*) machine=arm-unknown ;;\n\t    sh3el) machine=shl-unknown ;;\n\t    sh3eb) machine=sh-unknown ;;\n\t    sh5el) machine=sh5le-unknown ;;\n\t    earmv*)\n\t\tarch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\\(armv[0-9]\\).*$,\\1,'`\n\t\tendian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\\(eb\\)$,\\1,p'`\n\t\tmachine=${arch}${endian}-unknown\n\t\t;;\n\t    *) machine=${UNAME_MACHINE_ARCH}-unknown ;;\n\tesac\n\t# The Operating System including object format, if it has switched\n\t# to ELF recently (or will in the future) and ABI.\n\tcase \"${UNAME_MACHINE_ARCH}\" in\n\t    earm*)\n\t\tos=netbsdelf\n\t\t;;\n\t    arm*|i386|m68k|ns32k|sh3*|sparc|vax)\n\t\teval $set_cc_for_build\n\t\tif echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \\\n\t\t\t| grep -q __ELF__\n\t\tthen\n\t\t    # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).\n\t\t    # Return netbsd for either.  FIX?\n\t\t    os=netbsd\n\t\telse\n\t\t    os=netbsdelf\n\t\tfi\n\t\t;;\n\t    *)\n\t\tos=netbsd\n\t\t;;\n\tesac\n\t# Determine ABI tags.\n\tcase \"${UNAME_MACHINE_ARCH}\" in\n\t    earm*)\n\t\texpr='s/^earmv[0-9]/-eabi/;s/eb$//'\n\t\tabi=`echo ${UNAME_MACHINE_ARCH} | sed -e \"$expr\"`\n\t\t;;\n\tesac\n\t# The OS release\n\t# Debian GNU/NetBSD machines have a different userland, and\n\t# thus, need a distinct triplet. However, they do not need\n\t# kernel version information, so it can be replaced with a\n\t# suitable tag, in the style of linux-gnu.\n\tcase \"${UNAME_VERSION}\" in\n\t    Debian*)\n\t\trelease='-gnu'\n\t\t;;\n\t    *)\n\t\trelease=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2`\n\t\t;;\n\tesac\n\t# Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:\n\t# contains redundant information, the shorter form:\n\t# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.\n\techo \"${machine}-${os}${release}${abi}\"\n\texit ;;\n    *:Bitrig:*:*)\n\tUNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`\n\techo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE}\n\texit ;;\n    *:OpenBSD:*:*)\n\tUNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`\n\techo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}\n\texit ;;\n    *:LibertyBSD:*:*)\n\tUNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\\.//'`\n\techo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE}\n\texit ;;\n    *:ekkoBSD:*:*)\n\techo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}\n\texit ;;\n    *:SolidBSD:*:*)\n\techo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}\n\texit ;;\n    macppc:MirBSD:*:*)\n\techo powerpc-unknown-mirbsd${UNAME_RELEASE}\n\texit ;;\n    *:MirBSD:*:*)\n\techo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}\n\texit ;;\n    *:Sortix:*:*)\n\techo ${UNAME_MACHINE}-unknown-sortix\n\texit ;;\n    alpha:OSF1:*:*)\n\tcase $UNAME_RELEASE in\n\t*4.0)\n\t\tUNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`\n\t\t;;\n\t*5.*)\n\t\tUNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`\n\t\t;;\n\tesac\n\t# According to Compaq, /usr/sbin/psrinfo has been available on\n\t# OSF/1 and Tru64 systems produced since 1995.  I hope that\n\t# covers most systems running today.  This code pipes the CPU\n\t# types through head -n 1, so we only detect the type of CPU 0.\n\tALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \\(.*\\) processor.*$/\\1/p' | head -n 1`\n\tcase \"$ALPHA_CPU_TYPE\" in\n\t    \"EV4 (21064)\")\n\t\tUNAME_MACHINE=alpha ;;\n\t    \"EV4.5 (21064)\")\n\t\tUNAME_MACHINE=alpha ;;\n\t    \"LCA4 (21066/21068)\")\n\t\tUNAME_MACHINE=alpha ;;\n\t    \"EV5 (21164)\")\n\t\tUNAME_MACHINE=alphaev5 ;;\n\t    \"EV5.6 (21164A)\")\n\t\tUNAME_MACHINE=alphaev56 ;;\n\t    \"EV5.6 (21164PC)\")\n\t\tUNAME_MACHINE=alphapca56 ;;\n\t    \"EV5.7 (21164PC)\")\n\t\tUNAME_MACHINE=alphapca57 ;;\n\t    \"EV6 (21264)\")\n\t\tUNAME_MACHINE=alphaev6 ;;\n\t    \"EV6.7 (21264A)\")\n\t\tUNAME_MACHINE=alphaev67 ;;\n\t    \"EV6.8CB (21264C)\")\n\t\tUNAME_MACHINE=alphaev68 ;;\n\t    \"EV6.8AL (21264B)\")\n\t\tUNAME_MACHINE=alphaev68 ;;\n\t    \"EV6.8CX (21264D)\")\n\t\tUNAME_MACHINE=alphaev68 ;;\n\t    \"EV6.9A (21264/EV69A)\")\n\t\tUNAME_MACHINE=alphaev69 ;;\n\t    \"EV7 (21364)\")\n\t\tUNAME_MACHINE=alphaev7 ;;\n\t    \"EV7.9 (21364A)\")\n\t\tUNAME_MACHINE=alphaev79 ;;\n\tesac\n\t# A Pn.n version is a patched version.\n\t# A Vn.n version is a released version.\n\t# A Tn.n version is a released field test version.\n\t# A Xn.n version is an unreleased experimental baselevel.\n\t# 1.2 uses \"1.2\" for uname -r.\n\techo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`\n\t# Reset EXIT trap before exiting to avoid spurious non-zero exit code.\n\texitcode=$?\n\ttrap '' 0\n\texit $exitcode ;;\n    Alpha\\ *:Windows_NT*:*)\n\t# How do we know it's Interix rather than the generic POSIX subsystem?\n\t# Should we change UNAME_MACHINE based on the output of uname instead\n\t# of the specific Alpha model?\n\techo alpha-pc-interix\n\texit ;;\n    21064:Windows_NT:50:3)\n\techo alpha-dec-winnt3.5\n\texit ;;\n    Amiga*:UNIX_System_V:4.0:*)\n\techo m68k-unknown-sysv4\n\texit ;;\n    *:[Aa]miga[Oo][Ss]:*:*)\n\techo ${UNAME_MACHINE}-unknown-amigaos\n\texit ;;\n    *:[Mm]orph[Oo][Ss]:*:*)\n\techo ${UNAME_MACHINE}-unknown-morphos\n\texit ;;\n    *:OS/390:*:*)\n\techo i370-ibm-openedition\n\texit ;;\n    *:z/VM:*:*)\n\techo s390-ibm-zvmoe\n\texit ;;\n    *:OS400:*:*)\n\techo powerpc-ibm-os400\n\texit ;;\n    arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)\n\techo arm-acorn-riscix${UNAME_RELEASE}\n\texit ;;\n    arm*:riscos:*:*|arm*:RISCOS:*:*)\n\techo arm-unknown-riscos\n\texit ;;\n    SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)\n\techo hppa1.1-hitachi-hiuxmpp\n\texit ;;\n    Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)\n\t# akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.\n\tif test \"`(/bin/universe) 2>/dev/null`\" = att ; then\n\t\techo pyramid-pyramid-sysv3\n\telse\n\t\techo pyramid-pyramid-bsd\n\tfi\n\texit ;;\n    NILE*:*:*:dcosx)\n\techo pyramid-pyramid-svr4\n\texit ;;\n    DRS?6000:unix:4.0:6*)\n\techo sparc-icl-nx6\n\texit ;;\n    DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)\n\tcase `/usr/bin/uname -p` in\n\t    sparc) echo sparc-icl-nx7; exit ;;\n\tesac ;;\n    s390x:SunOS:*:*)\n\techo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    sun4H:SunOS:5.*:*)\n\techo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)\n\techo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)\n\techo i386-pc-auroraux${UNAME_RELEASE}\n\texit ;;\n    i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)\n\teval $set_cc_for_build\n\tSUN_ARCH=i386\n\t# If there is a compiler, see if it is configured for 64-bit objects.\n\t# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.\n\t# This test works for both compilers.\n\tif [ \"$CC_FOR_BUILD\" != no_compiler_found ]; then\n\t    if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \\\n\t\t(CCOPTS=\"\" $CC_FOR_BUILD -E - 2>/dev/null) | \\\n\t\tgrep IS_64BIT_ARCH >/dev/null\n\t    then\n\t\tSUN_ARCH=x86_64\n\t    fi\n\tfi\n\techo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    sun4*:SunOS:6*:*)\n\t# According to config.sub, this is the proper way to canonicalize\n\t# SunOS6.  Hard to guess exactly what SunOS6 will be like, but\n\t# it's likely to be more like Solaris than SunOS4.\n\techo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    sun4*:SunOS:*:*)\n\tcase \"`/usr/bin/arch -k`\" in\n\t    Series*|S4*)\n\t\tUNAME_RELEASE=`uname -v`\n\t\t;;\n\tesac\n\t# Japanese Language versions have a version number like `4.1.3-JL'.\n\techo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`\n\texit ;;\n    sun3*:SunOS:*:*)\n\techo m68k-sun-sunos${UNAME_RELEASE}\n\texit ;;\n    sun*:*:4.2BSD:*)\n\tUNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`\n\ttest \"x${UNAME_RELEASE}\" = x && UNAME_RELEASE=3\n\tcase \"`/bin/arch`\" in\n\t    sun3)\n\t\techo m68k-sun-sunos${UNAME_RELEASE}\n\t\t;;\n\t    sun4)\n\t\techo sparc-sun-sunos${UNAME_RELEASE}\n\t\t;;\n\tesac\n\texit ;;\n    aushp:SunOS:*:*)\n\techo sparc-auspex-sunos${UNAME_RELEASE}\n\texit ;;\n    # The situation for MiNT is a little confusing.  The machine name\n    # can be virtually everything (everything which is not\n    # \"atarist\" or \"atariste\" at least should have a processor\n    # > m68000).  The system name ranges from \"MiNT\" over \"FreeMiNT\"\n    # to the lowercase version \"mint\" (or \"freemint\").  Finally\n    # the system name \"TOS\" denotes a system which is actually not\n    # MiNT.  But MiNT is downward compatible to TOS, so this should\n    # be no problem.\n    atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)\n\techo m68k-atari-mint${UNAME_RELEASE}\n\texit ;;\n    atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)\n\techo m68k-atari-mint${UNAME_RELEASE}\n\texit ;;\n    *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)\n\techo m68k-atari-mint${UNAME_RELEASE}\n\texit ;;\n    milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)\n\techo m68k-milan-mint${UNAME_RELEASE}\n\texit ;;\n    hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)\n\techo m68k-hades-mint${UNAME_RELEASE}\n\texit ;;\n    *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)\n\techo m68k-unknown-mint${UNAME_RELEASE}\n\texit ;;\n    m68k:machten:*:*)\n\techo m68k-apple-machten${UNAME_RELEASE}\n\texit ;;\n    powerpc:machten:*:*)\n\techo powerpc-apple-machten${UNAME_RELEASE}\n\texit ;;\n    RISC*:Mach:*:*)\n\techo mips-dec-mach_bsd4.3\n\texit ;;\n    RISC*:ULTRIX:*:*)\n\techo mips-dec-ultrix${UNAME_RELEASE}\n\texit ;;\n    VAX*:ULTRIX*:*:*)\n\techo vax-dec-ultrix${UNAME_RELEASE}\n\texit ;;\n    2020:CLIX:*:* | 2430:CLIX:*:*)\n\techo clipper-intergraph-clix${UNAME_RELEASE}\n\texit ;;\n    mips:*:*:UMIPS | mips:*:*:RISCos)\n\teval $set_cc_for_build\n\tsed 's/^\t//' << EOF >$dummy.c\n#ifdef __cplusplus\n#include <stdio.h>  /* for printf() prototype */\n\tint main (int argc, char *argv[]) {\n#else\n\tint main (argc, argv) int argc; char *argv[]; {\n#endif\n\t#if defined (host_mips) && defined (MIPSEB)\n\t#if defined (SYSTYPE_SYSV)\n\t  printf (\"mips-mips-riscos%ssysv\\n\", argv[1]); exit (0);\n\t#endif\n\t#if defined (SYSTYPE_SVR4)\n\t  printf (\"mips-mips-riscos%ssvr4\\n\", argv[1]); exit (0);\n\t#endif\n\t#if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)\n\t  printf (\"mips-mips-riscos%sbsd\\n\", argv[1]); exit (0);\n\t#endif\n\t#endif\n\t  exit (-1);\n\t}\nEOF\n\t$CC_FOR_BUILD -o $dummy $dummy.c &&\n\t  dummyarg=`echo \"${UNAME_RELEASE}\" | sed -n 's/\\([0-9]*\\).*/\\1/p'` &&\n\t  SYSTEM_NAME=`$dummy $dummyarg` &&\n\t    { echo \"$SYSTEM_NAME\"; exit; }\n\techo mips-mips-riscos${UNAME_RELEASE}\n\texit ;;\n    Motorola:PowerMAX_OS:*:*)\n\techo powerpc-motorola-powermax\n\texit ;;\n    Motorola:*:4.3:PL8-*)\n\techo powerpc-harris-powermax\n\texit ;;\n    Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)\n\techo powerpc-harris-powermax\n\texit ;;\n    Night_Hawk:Power_UNIX:*:*)\n\techo powerpc-harris-powerunix\n\texit ;;\n    m88k:CX/UX:7*:*)\n\techo m88k-harris-cxux7\n\texit ;;\n    m88k:*:4*:R4*)\n\techo m88k-motorola-sysv4\n\texit ;;\n    m88k:*:3*:R3*)\n\techo m88k-motorola-sysv3\n\texit ;;\n    AViiON:dgux:*:*)\n\t# DG/UX returns AViiON for all architectures\n\tUNAME_PROCESSOR=`/usr/bin/uname -p`\n\tif [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]\n\tthen\n\t    if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \\\n\t       [ ${TARGET_BINARY_INTERFACE}x = x ]\n\t    then\n\t\techo m88k-dg-dgux${UNAME_RELEASE}\n\t    else\n\t\techo m88k-dg-dguxbcs${UNAME_RELEASE}\n\t    fi\n\telse\n\t    echo i586-dg-dgux${UNAME_RELEASE}\n\tfi\n\texit ;;\n    M88*:DolphinOS:*:*)\t# DolphinOS (SVR3)\n\techo m88k-dolphin-sysv3\n\texit ;;\n    M88*:*:R3*:*)\n\t# Delta 88k system running SVR3\n\techo m88k-motorola-sysv3\n\texit ;;\n    XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)\n\techo m88k-tektronix-sysv3\n\texit ;;\n    Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)\n\techo m68k-tektronix-bsd\n\texit ;;\n    *:IRIX*:*:*)\n\techo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`\n\texit ;;\n    ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.\n\techo romp-ibm-aix     # uname -m gives an 8 hex-code CPU id\n\texit ;;               # Note that: echo \"'`uname -s`'\" gives 'AIX '\n    i*86:AIX:*:*)\n\techo i386-ibm-aix\n\texit ;;\n    ia64:AIX:*:*)\n\tif [ -x /usr/bin/oslevel ] ; then\n\t\tIBM_REV=`/usr/bin/oslevel`\n\telse\n\t\tIBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}\n\tfi\n\techo ${UNAME_MACHINE}-ibm-aix${IBM_REV}\n\texit ;;\n    *:AIX:2:3)\n\tif grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then\n\t\teval $set_cc_for_build\n\t\tsed 's/^\t\t//' << EOF >$dummy.c\n\t\t#include <sys/systemcfg.h>\n\n\t\tmain()\n\t\t\t{\n\t\t\tif (!__power_pc())\n\t\t\t\texit(1);\n\t\t\tputs(\"powerpc-ibm-aix3.2.5\");\n\t\t\texit(0);\n\t\t\t}\nEOF\n\t\tif $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`\n\t\tthen\n\t\t\techo \"$SYSTEM_NAME\"\n\t\telse\n\t\t\techo rs6000-ibm-aix3.2.5\n\t\tfi\n\telif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then\n\t\techo rs6000-ibm-aix3.2.4\n\telse\n\t\techo rs6000-ibm-aix3.2\n\tfi\n\texit ;;\n    *:AIX:*:[4567])\n\tIBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`\n\tif /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then\n\t\tIBM_ARCH=rs6000\n\telse\n\t\tIBM_ARCH=powerpc\n\tfi\n\tif [ -x /usr/bin/lslpp ] ; then\n\t\tIBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc |\n\t\t\t   awk -F: '{ print $3 }' | sed s/[0-9]*$/0/`\n\telse\n\t\tIBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}\n\tfi\n\techo ${IBM_ARCH}-ibm-aix${IBM_REV}\n\texit ;;\n    *:AIX:*:*)\n\techo rs6000-ibm-aix\n\texit ;;\n    ibmrt:4.4BSD:*|romp-ibm:BSD:*)\n\techo romp-ibm-bsd4.4\n\texit ;;\n    ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC BSD and\n\techo romp-ibm-bsd${UNAME_RELEASE}   # 4.3 with uname added to\n\texit ;;                             # report: romp-ibm BSD 4.3\n    *:BOSX:*:*)\n\techo rs6000-bull-bosx\n\texit ;;\n    DPX/2?00:B.O.S.:*:*)\n\techo m68k-bull-sysv3\n\texit ;;\n    9000/[34]??:4.3bsd:1.*:*)\n\techo m68k-hp-bsd\n\texit ;;\n    hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)\n\techo m68k-hp-bsd4.4\n\texit ;;\n    9000/[34678]??:HP-UX:*:*)\n\tHPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`\n\tcase \"${UNAME_MACHINE}\" in\n\t    9000/31? )            HP_ARCH=m68000 ;;\n\t    9000/[34]?? )         HP_ARCH=m68k ;;\n\t    9000/[678][0-9][0-9])\n\t\tif [ -x /usr/bin/getconf ]; then\n\t\t    sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`\n\t\t    sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`\n\t\t    case \"${sc_cpu_version}\" in\n\t\t      523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0\n\t\t      528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1\n\t\t      532)                      # CPU_PA_RISC2_0\n\t\t\tcase \"${sc_kernel_bits}\" in\n\t\t\t  32) HP_ARCH=hppa2.0n ;;\n\t\t\t  64) HP_ARCH=hppa2.0w ;;\n\t\t\t  '') HP_ARCH=hppa2.0 ;;   # HP-UX 10.20\n\t\t\tesac ;;\n\t\t    esac\n\t\tfi\n\t\tif [ \"${HP_ARCH}\" = \"\" ]; then\n\t\t    eval $set_cc_for_build\n\t\t    sed 's/^\t\t//' << EOF >$dummy.c\n\n\t\t#define _HPUX_SOURCE\n\t\t#include <stdlib.h>\n\t\t#include <unistd.h>\n\n\t\tint main ()\n\t\t{\n\t\t#if defined(_SC_KERNEL_BITS)\n\t\t    long bits = sysconf(_SC_KERNEL_BITS);\n\t\t#endif\n\t\t    long cpu  = sysconf (_SC_CPU_VERSION);\n\n\t\t    switch (cpu)\n\t\t\t{\n\t\t\tcase CPU_PA_RISC1_0: puts (\"hppa1.0\"); break;\n\t\t\tcase CPU_PA_RISC1_1: puts (\"hppa1.1\"); break;\n\t\t\tcase CPU_PA_RISC2_0:\n\t\t#if defined(_SC_KERNEL_BITS)\n\t\t\t    switch (bits)\n\t\t\t\t{\n\t\t\t\tcase 64: puts (\"hppa2.0w\"); break;\n\t\t\t\tcase 32: puts (\"hppa2.0n\"); break;\n\t\t\t\tdefault: puts (\"hppa2.0\"); break;\n\t\t\t\t} break;\n\t\t#else  /* !defined(_SC_KERNEL_BITS) */\n\t\t\t    puts (\"hppa2.0\"); break;\n\t\t#endif\n\t\t\tdefault: puts (\"hppa1.0\"); break;\n\t\t\t}\n\t\t    exit (0);\n\t\t}\nEOF\n\t\t    (CCOPTS=\"\" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`\n\t\t    test -z \"$HP_ARCH\" && HP_ARCH=hppa\n\t\tfi ;;\n\tesac\n\tif [ ${HP_ARCH} = hppa2.0w ]\n\tthen\n\t    eval $set_cc_for_build\n\n\t    # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating\n\t    # 32-bit code.  hppa64-hp-hpux* has the same kernel and a compiler\n\t    # generating 64-bit code.  GNU and HP use different nomenclature:\n\t    #\n\t    # $ CC_FOR_BUILD=cc ./config.guess\n\t    # => hppa2.0w-hp-hpux11.23\n\t    # $ CC_FOR_BUILD=\"cc +DA2.0w\" ./config.guess\n\t    # => hppa64-hp-hpux11.23\n\n\t    if echo __LP64__ | (CCOPTS=\"\" $CC_FOR_BUILD -E - 2>/dev/null) |\n\t\tgrep -q __LP64__\n\t    then\n\t\tHP_ARCH=hppa2.0w\n\t    else\n\t\tHP_ARCH=hppa64\n\t    fi\n\tfi\n\techo ${HP_ARCH}-hp-hpux${HPUX_REV}\n\texit ;;\n    ia64:HP-UX:*:*)\n\tHPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`\n\techo ia64-hp-hpux${HPUX_REV}\n\texit ;;\n    3050*:HI-UX:*:*)\n\teval $set_cc_for_build\n\tsed 's/^\t//' << EOF >$dummy.c\n\t#include <unistd.h>\n\tint\n\tmain ()\n\t{\n\t  long cpu = sysconf (_SC_CPU_VERSION);\n\t  /* The order matters, because CPU_IS_HP_MC68K erroneously returns\n\t     true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct\n\t     results, however.  */\n\t  if (CPU_IS_PA_RISC (cpu))\n\t    {\n\t      switch (cpu)\n\t\t{\n\t\t  case CPU_PA_RISC1_0: puts (\"hppa1.0-hitachi-hiuxwe2\"); break;\n\t\t  case CPU_PA_RISC1_1: puts (\"hppa1.1-hitachi-hiuxwe2\"); break;\n\t\t  case CPU_PA_RISC2_0: puts (\"hppa2.0-hitachi-hiuxwe2\"); break;\n\t\t  default: puts (\"hppa-hitachi-hiuxwe2\"); break;\n\t\t}\n\t    }\n\t  else if (CPU_IS_HP_MC68K (cpu))\n\t    puts (\"m68k-hitachi-hiuxwe2\");\n\t  else puts (\"unknown-hitachi-hiuxwe2\");\n\t  exit (0);\n\t}\nEOF\n\t$CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&\n\t\t{ echo \"$SYSTEM_NAME\"; exit; }\n\techo unknown-hitachi-hiuxwe2\n\texit ;;\n    9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )\n\techo hppa1.1-hp-bsd\n\texit ;;\n    9000/8??:4.3bsd:*:*)\n\techo hppa1.0-hp-bsd\n\texit ;;\n    *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)\n\techo hppa1.0-hp-mpeix\n\texit ;;\n    hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )\n\techo hppa1.1-hp-osf\n\texit ;;\n    hp8??:OSF1:*:*)\n\techo hppa1.0-hp-osf\n\texit ;;\n    i*86:OSF1:*:*)\n\tif [ -x /usr/sbin/sysversion ] ; then\n\t    echo ${UNAME_MACHINE}-unknown-osf1mk\n\telse\n\t    echo ${UNAME_MACHINE}-unknown-osf1\n\tfi\n\texit ;;\n    parisc*:Lites*:*:*)\n\techo hppa1.1-hp-lites\n\texit ;;\n    C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)\n\techo c1-convex-bsd\n\texit ;;\n    C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)\n\tif getsysinfo -f scalar_acc\n\tthen echo c32-convex-bsd\n\telse echo c2-convex-bsd\n\tfi\n\texit ;;\n    C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)\n\techo c34-convex-bsd\n\texit ;;\n    C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)\n\techo c38-convex-bsd\n\texit ;;\n    C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)\n\techo c4-convex-bsd\n\texit ;;\n    CRAY*Y-MP:*:*:*)\n\techo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*[A-Z]90:*:*:*)\n\techo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \\\n\t| sed -e 's/CRAY.*\\([A-Z]90\\)/\\1/' \\\n\t      -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \\\n\t      -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*TS:*:*:*)\n\techo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*T3E:*:*:*)\n\techo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*SV1:*:*:*)\n\techo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    *:UNICOS/mp:*:*)\n\techo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)\n\tFUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`\n\tFUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\\///'`\n\tFUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`\n\techo \"${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}\"\n\texit ;;\n    5000:UNIX_System_V:4.*:*)\n\tFUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\\///'`\n\tFUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`\n\techo \"sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}\"\n\texit ;;\n    i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\\ Embedded/OS:*:*)\n\techo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}\n\texit ;;\n    sparc*:BSD/OS:*:*)\n\techo sparc-unknown-bsdi${UNAME_RELEASE}\n\texit ;;\n    *:BSD/OS:*:*)\n\techo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}\n\texit ;;\n    *:FreeBSD:*:*)\n\tUNAME_PROCESSOR=`/usr/bin/uname -p`\n\tcase ${UNAME_PROCESSOR} in\n\t    amd64)\n\t\techo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;\n\t    *)\n\t\techo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;\n\tesac\n\texit ;;\n    i*:CYGWIN*:*)\n\techo ${UNAME_MACHINE}-pc-cygwin\n\texit ;;\n    *:MINGW64*:*)\n\techo ${UNAME_MACHINE}-pc-mingw64\n\texit ;;\n    *:MINGW*:*)\n\techo ${UNAME_MACHINE}-pc-mingw32\n\texit ;;\n    *:MSYS*:*)\n\techo ${UNAME_MACHINE}-pc-msys\n\texit ;;\n    i*:windows32*:*)\n\t# uname -m includes \"-pc\" on this system.\n\techo ${UNAME_MACHINE}-mingw32\n\texit ;;\n    i*:PW*:*)\n\techo ${UNAME_MACHINE}-pc-pw32\n\texit ;;\n    *:Interix*:*)\n\tcase ${UNAME_MACHINE} in\n\t    x86)\n\t\techo i586-pc-interix${UNAME_RELEASE}\n\t\texit ;;\n\t    authenticamd | genuineintel | EM64T)\n\t\techo x86_64-unknown-interix${UNAME_RELEASE}\n\t\texit ;;\n\t    IA64)\n\t\techo ia64-unknown-interix${UNAME_RELEASE}\n\t\texit ;;\n\tesac ;;\n    [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)\n\techo i${UNAME_MACHINE}-pc-mks\n\texit ;;\n    8664:Windows_NT:*)\n\techo x86_64-pc-mks\n\texit ;;\n    i*:Windows_NT*:* | Pentium*:Windows_NT*:*)\n\t# How do we know it's Interix rather than the generic POSIX subsystem?\n\t# It also conflicts with pre-2.0 versions of AT&T UWIN. Should we\n\t# UNAME_MACHINE based on the output of uname instead of i386?\n\techo i586-pc-interix\n\texit ;;\n    i*:UWIN*:*)\n\techo ${UNAME_MACHINE}-pc-uwin\n\texit ;;\n    amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)\n\techo x86_64-unknown-cygwin\n\texit ;;\n    p*:CYGWIN*:*)\n\techo powerpcle-unknown-cygwin\n\texit ;;\n    prep*:SunOS:5.*:*)\n\techo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`\n\texit ;;\n    *:GNU:*:*)\n\t# the GNU system\n\techo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`\n\texit ;;\n    *:GNU/*:*:*)\n\t# other systems with GNU libc and userland\n\techo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr \"[:upper:]\" \"[:lower:]\"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}\n\texit ;;\n    i*86:Minix:*:*)\n\techo ${UNAME_MACHINE}-pc-minix\n\texit ;;\n    aarch64:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    aarch64_be:Linux:*:*)\n\tUNAME_MACHINE=aarch64_be\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    alpha:Linux:*:*)\n\tcase `sed -n '/^cpu model/s/^.*: \\(.*\\)/\\1/p' < /proc/cpuinfo` in\n\t  EV5)   UNAME_MACHINE=alphaev5 ;;\n\t  EV56)  UNAME_MACHINE=alphaev56 ;;\n\t  PCA56) UNAME_MACHINE=alphapca56 ;;\n\t  PCA57) UNAME_MACHINE=alphapca56 ;;\n\t  EV6)   UNAME_MACHINE=alphaev6 ;;\n\t  EV67)  UNAME_MACHINE=alphaev67 ;;\n\t  EV68*) UNAME_MACHINE=alphaev68 ;;\n\tesac\n\tobjdump --private-headers /bin/sh | grep -q ld.so.1\n\tif test \"$?\" = 0 ; then LIBC=gnulibc1 ; fi\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    arc:Linux:*:* | arceb:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    arm*:Linux:*:*)\n\teval $set_cc_for_build\n\tif echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \\\n\t    | grep -q __ARM_EABI__\n\tthen\n\t    echo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\telse\n\t    if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \\\n\t\t| grep -q __ARM_PCS_VFP\n\t    then\n\t\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi\n\t    else\n\t\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf\n\t    fi\n\tfi\n\texit ;;\n    avr32*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    cris:Linux:*:*)\n\techo ${UNAME_MACHINE}-axis-linux-${LIBC}\n\texit ;;\n    crisv32:Linux:*:*)\n\techo ${UNAME_MACHINE}-axis-linux-${LIBC}\n\texit ;;\n    e2k:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    frv:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    hexagon:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    i*86:Linux:*:*)\n\techo ${UNAME_MACHINE}-pc-linux-${LIBC}\n\texit ;;\n    ia64:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    k1om:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    m32r*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    m68*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    mips:Linux:*:* | mips64:Linux:*:*)\n\teval $set_cc_for_build\n\tsed 's/^\t//' << EOF >$dummy.c\n\t#undef CPU\n\t#undef ${UNAME_MACHINE}\n\t#undef ${UNAME_MACHINE}el\n\t#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)\n\tCPU=${UNAME_MACHINE}el\n\t#else\n\t#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)\n\tCPU=${UNAME_MACHINE}\n\t#else\n\tCPU=\n\t#endif\n\t#endif\nEOF\n\teval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`\n\ttest x\"${CPU}\" != x && { echo \"${CPU}-unknown-linux-${LIBC}\"; exit; }\n\t;;\n    mips64el:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    openrisc*:Linux:*:*)\n\techo or1k-unknown-linux-${LIBC}\n\texit ;;\n    or32:Linux:*:* | or1k*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    padre:Linux:*:*)\n\techo sparc-unknown-linux-${LIBC}\n\texit ;;\n    parisc64:Linux:*:* | hppa64:Linux:*:*)\n\techo hppa64-unknown-linux-${LIBC}\n\texit ;;\n    parisc:Linux:*:* | hppa:Linux:*:*)\n\t# Look for CPU level\n\tcase `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in\n\t  PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;\n\t  PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;\n\t  *)    echo hppa-unknown-linux-${LIBC} ;;\n\tesac\n\texit ;;\n    ppc64:Linux:*:*)\n\techo powerpc64-unknown-linux-${LIBC}\n\texit ;;\n    ppc:Linux:*:*)\n\techo powerpc-unknown-linux-${LIBC}\n\texit ;;\n    ppc64le:Linux:*:*)\n\techo powerpc64le-unknown-linux-${LIBC}\n\texit ;;\n    ppcle:Linux:*:*)\n\techo powerpcle-unknown-linux-${LIBC}\n\texit ;;\n    riscv32:Linux:*:* | riscv64:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    s390:Linux:*:* | s390x:Linux:*:*)\n\techo ${UNAME_MACHINE}-ibm-linux-${LIBC}\n\texit ;;\n    sh64*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    sh*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    sparc:Linux:*:* | sparc64:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    tile*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    vax:Linux:*:*)\n\techo ${UNAME_MACHINE}-dec-linux-${LIBC}\n\texit ;;\n    x86_64:Linux:*:*)\n\techo ${UNAME_MACHINE}-pc-linux-${LIBC}\n\texit ;;\n    xtensa*:Linux:*:*)\n\techo ${UNAME_MACHINE}-unknown-linux-${LIBC}\n\texit ;;\n    i*86:DYNIX/ptx:4*:*)\n\t# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.\n\t# earlier versions are messed up and put the nodename in both\n\t# sysname and nodename.\n\techo i386-sequent-sysv4\n\texit ;;\n    i*86:UNIX_SV:4.2MP:2.*)\n\t# Unixware is an offshoot of SVR4, but it has its own version\n\t# number series starting with 2...\n\t# I am not positive that other SVR4 systems won't match this,\n\t# I just have to hope.  -- rms.\n\t# Use sysv4.2uw... so that sysv4* matches it.\n\techo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}\n\texit ;;\n    i*86:OS/2:*:*)\n\t# If we were able to find `uname', then EMX Unix compatibility\n\t# is probably installed.\n\techo ${UNAME_MACHINE}-pc-os2-emx\n\texit ;;\n    i*86:XTS-300:*:STOP)\n\techo ${UNAME_MACHINE}-unknown-stop\n\texit ;;\n    i*86:atheos:*:*)\n\techo ${UNAME_MACHINE}-unknown-atheos\n\texit ;;\n    i*86:syllable:*:*)\n\techo ${UNAME_MACHINE}-pc-syllable\n\texit ;;\n    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)\n\techo i386-unknown-lynxos${UNAME_RELEASE}\n\texit ;;\n    i*86:*DOS:*:*)\n\techo ${UNAME_MACHINE}-pc-msdosdjgpp\n\texit ;;\n    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)\n\tUNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\\/MP$//'`\n\tif grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then\n\t\techo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}\n\telse\n\t\techo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}\n\tfi\n\texit ;;\n    i*86:*:5:[678]*)\n\t# UnixWare 7.x, OpenUNIX and OpenServer 6.\n\tcase `/bin/uname -X | grep \"^Machine\"` in\n\t    *486*)\t     UNAME_MACHINE=i486 ;;\n\t    *Pentium)\t     UNAME_MACHINE=i586 ;;\n\t    *Pent*|*Celeron) UNAME_MACHINE=i686 ;;\n\tesac\n\techo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}\n\texit ;;\n    i*86:*:3.2:*)\n\tif test -f /usr/options/cb.name; then\n\t\tUNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`\n\t\techo ${UNAME_MACHINE}-pc-isc$UNAME_REL\n\telif /bin/uname -X 2>/dev/null >/dev/null ; then\n\t\tUNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`\n\t\t(/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486\n\t\t(/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \\\n\t\t\t&& UNAME_MACHINE=i586\n\t\t(/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \\\n\t\t\t&& UNAME_MACHINE=i686\n\t\t(/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \\\n\t\t\t&& UNAME_MACHINE=i686\n\t\techo ${UNAME_MACHINE}-pc-sco$UNAME_REL\n\telse\n\t\techo ${UNAME_MACHINE}-pc-sysv32\n\tfi\n\texit ;;\n    pc:*:*:*)\n\t# Left here for compatibility:\n\t# uname -m prints for DJGPP always 'pc', but it prints nothing about\n\t# the processor, so we play safe by assuming i586.\n\t# Note: whatever this is, it MUST be the same as what config.sub\n\t# prints for the \"djgpp\" host, or else GDB configure will decide that\n\t# this is a cross-build.\n\techo i586-pc-msdosdjgpp\n\texit ;;\n    Intel:Mach:3*:*)\n\techo i386-pc-mach3\n\texit ;;\n    paragon:*:*:*)\n\techo i860-intel-osf1\n\texit ;;\n    i860:*:4.*:*) # i860-SVR4\n\tif grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then\n\t  echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4\n\telse # Add other i860-SVR4 vendors below as they are discovered.\n\t  echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4\n\tfi\n\texit ;;\n    mini*:CTIX:SYS*5:*)\n\t# \"miniframe\"\n\techo m68010-convergent-sysv\n\texit ;;\n    mc68k:UNIX:SYSTEM5:3.51m)\n\techo m68k-convergent-sysv\n\texit ;;\n    M680?0:D-NIX:5.3:*)\n\techo m68k-diab-dnix\n\texit ;;\n    M68*:*:R3V[5678]*:*)\n\ttest -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;\n    3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)\n\tOS_REL=''\n\ttest -r /etc/.relid \\\n\t&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \\([0-9][0-9]\\).*/\\1/p' < /etc/.relid`\n\t/bin/uname -p 2>/dev/null | grep 86 >/dev/null \\\n\t  && { echo i486-ncr-sysv4.3${OS_REL}; exit; }\n\t/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \\\n\t  && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;\n    3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)\n\t/bin/uname -p 2>/dev/null | grep 86 >/dev/null \\\n\t  && { echo i486-ncr-sysv4; exit; } ;;\n    NCR*:*:4.2:* | MPRAS*:*:4.2:*)\n\tOS_REL='.3'\n\ttest -r /etc/.relid \\\n\t    && OS_REL=.`sed -n 's/[^ ]* [^ ]* \\([0-9][0-9]\\).*/\\1/p' < /etc/.relid`\n\t/bin/uname -p 2>/dev/null | grep 86 >/dev/null \\\n\t    && { echo i486-ncr-sysv4.3${OS_REL}; exit; }\n\t/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \\\n\t    && { echo i586-ncr-sysv4.3${OS_REL}; exit; }\n\t/bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \\\n\t    && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;\n    m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)\n\techo m68k-unknown-lynxos${UNAME_RELEASE}\n\texit ;;\n    mc68030:UNIX_System_V:4.*:*)\n\techo m68k-atari-sysv4\n\texit ;;\n    TSUNAMI:LynxOS:2.*:*)\n\techo sparc-unknown-lynxos${UNAME_RELEASE}\n\texit ;;\n    rs6000:LynxOS:2.*:*)\n\techo rs6000-unknown-lynxos${UNAME_RELEASE}\n\texit ;;\n    PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)\n\techo powerpc-unknown-lynxos${UNAME_RELEASE}\n\texit ;;\n    SM[BE]S:UNIX_SV:*:*)\n\techo mips-dde-sysv${UNAME_RELEASE}\n\texit ;;\n    RM*:ReliantUNIX-*:*:*)\n\techo mips-sni-sysv4\n\texit ;;\n    RM*:SINIX-*:*:*)\n\techo mips-sni-sysv4\n\texit ;;\n    *:SINIX-*:*:*)\n\tif uname -p 2>/dev/null >/dev/null ; then\n\t\tUNAME_MACHINE=`(uname -p) 2>/dev/null`\n\t\techo ${UNAME_MACHINE}-sni-sysv4\n\telse\n\t\techo ns32k-sni-sysv\n\tfi\n\texit ;;\n    PENTIUM:*:4.0*:*)\t# Unisys `ClearPath HMP IX 4000' SVR4/MP effort\n\t\t\t# says <Richard.M.Bartel@ccMail.Census.GOV>\n\techo i586-unisys-sysv4\n\texit ;;\n    *:UNIX_System_V:4*:FTX*)\n\t# From Gerald Hewes <hewes@openmarket.com>.\n\t# How about differentiating between stratus architectures? -djm\n\techo hppa1.1-stratus-sysv4\n\texit ;;\n    *:*:*:FTX*)\n\t# From seanf@swdc.stratus.com.\n\techo i860-stratus-sysv4\n\texit ;;\n    i*86:VOS:*:*)\n\t# From Paul.Green@stratus.com.\n\techo ${UNAME_MACHINE}-stratus-vos\n\texit ;;\n    *:VOS:*:*)\n\t# From Paul.Green@stratus.com.\n\techo hppa1.1-stratus-vos\n\texit ;;\n    mc68*:A/UX:*:*)\n\techo m68k-apple-aux${UNAME_RELEASE}\n\texit ;;\n    news*:NEWS-OS:6*:*)\n\techo mips-sony-newsos6\n\texit ;;\n    R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)\n\tif [ -d /usr/nec ]; then\n\t\techo mips-nec-sysv${UNAME_RELEASE}\n\telse\n\t\techo mips-unknown-sysv${UNAME_RELEASE}\n\tfi\n\texit ;;\n    BeBox:BeOS:*:*)\t# BeOS running on hardware made by Be, PPC only.\n\techo powerpc-be-beos\n\texit ;;\n    BeMac:BeOS:*:*)\t# BeOS running on Mac or Mac clone, PPC only.\n\techo powerpc-apple-beos\n\texit ;;\n    BePC:BeOS:*:*)\t# BeOS running on Intel PC compatible.\n\techo i586-pc-beos\n\texit ;;\n    BePC:Haiku:*:*)\t# Haiku running on Intel PC compatible.\n\techo i586-pc-haiku\n\texit ;;\n    x86_64:Haiku:*:*)\n\techo x86_64-unknown-haiku\n\texit ;;\n    SX-4:SUPER-UX:*:*)\n\techo sx4-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-5:SUPER-UX:*:*)\n\techo sx5-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-6:SUPER-UX:*:*)\n\techo sx6-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-7:SUPER-UX:*:*)\n\techo sx7-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-8:SUPER-UX:*:*)\n\techo sx8-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-8R:SUPER-UX:*:*)\n\techo sx8r-nec-superux${UNAME_RELEASE}\n\texit ;;\n    SX-ACE:SUPER-UX:*:*)\n\techo sxace-nec-superux${UNAME_RELEASE}\n\texit ;;\n    Power*:Rhapsody:*:*)\n\techo powerpc-apple-rhapsody${UNAME_RELEASE}\n\texit ;;\n    *:Rhapsody:*:*)\n\techo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}\n\texit ;;\n    *:Darwin:*:*)\n\tUNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown\n\teval $set_cc_for_build\n\tif test \"$UNAME_PROCESSOR\" = unknown ; then\n\t    UNAME_PROCESSOR=powerpc\n\tfi\n\tif test `echo \"$UNAME_RELEASE\" | sed -e 's/\\..*//'` -le 10 ; then\n\t    if [ \"$CC_FOR_BUILD\" != no_compiler_found ]; then\n\t\tif (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \\\n\t\t    (CCOPTS=\"\" $CC_FOR_BUILD -E - 2>/dev/null) | \\\n\t\t    grep IS_64BIT_ARCH >/dev/null\n\t\tthen\n\t\t    case $UNAME_PROCESSOR in\n\t\t\ti386) UNAME_PROCESSOR=x86_64 ;;\n\t\t\tpowerpc) UNAME_PROCESSOR=powerpc64 ;;\n\t\t    esac\n\t\tfi\n\t    fi\n\telif test \"$UNAME_PROCESSOR\" = i386 ; then\n\t    # Avoid executing cc on OS X 10.9, as it ships with a stub\n\t    # that puts up a graphical alert prompting to install\n\t    # developer tools.  Any system running Mac OS X 10.7 or\n\t    # later (Darwin 11 and later) is required to have a 64-bit\n\t    # processor. This is not true of the ARM version of Darwin\n\t    # that Apple uses in portable devices.\n\t    UNAME_PROCESSOR=x86_64\n\tfi\n\techo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}\n\texit ;;\n    *:procnto*:*:* | *:QNX:[0123456789]*:*)\n\tUNAME_PROCESSOR=`uname -p`\n\tif test \"$UNAME_PROCESSOR\" = x86; then\n\t\tUNAME_PROCESSOR=i386\n\t\tUNAME_MACHINE=pc\n\tfi\n\techo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}\n\texit ;;\n    *:QNX:*:4*)\n\techo i386-pc-qnx\n\texit ;;\n    NEO-?:NONSTOP_KERNEL:*:*)\n\techo neo-tandem-nsk${UNAME_RELEASE}\n\texit ;;\n    NSE-*:NONSTOP_KERNEL:*:*)\n\techo nse-tandem-nsk${UNAME_RELEASE}\n\texit ;;\n    NSR-?:NONSTOP_KERNEL:*:*)\n\techo nsr-tandem-nsk${UNAME_RELEASE}\n\texit ;;\n    *:NonStop-UX:*:*)\n\techo mips-compaq-nonstopux\n\texit ;;\n    BS2000:POSIX*:*:*)\n\techo bs2000-siemens-sysv\n\texit ;;\n    DS/*:UNIX_System_V:*:*)\n\techo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}\n\texit ;;\n    *:Plan9:*:*)\n\t# \"uname -m\" is not consistent, so use $cputype instead. 386\n\t# is converted to i386 for consistency with other x86\n\t# operating systems.\n\tif test \"$cputype\" = 386; then\n\t    UNAME_MACHINE=i386\n\telse\n\t    UNAME_MACHINE=\"$cputype\"\n\tfi\n\techo ${UNAME_MACHINE}-unknown-plan9\n\texit ;;\n    *:TOPS-10:*:*)\n\techo pdp10-unknown-tops10\n\texit ;;\n    *:TENEX:*:*)\n\techo pdp10-unknown-tenex\n\texit ;;\n    KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)\n\techo pdp10-dec-tops20\n\texit ;;\n    XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)\n\techo pdp10-xkl-tops20\n\texit ;;\n    *:TOPS-20:*:*)\n\techo pdp10-unknown-tops20\n\texit ;;\n    *:ITS:*:*)\n\techo pdp10-unknown-its\n\texit ;;\n    SEI:*:*:SEIUX)\n\techo mips-sei-seiux${UNAME_RELEASE}\n\texit ;;\n    *:DragonFly:*:*)\n\techo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`\n\texit ;;\n    *:*VMS:*:*)\n\tUNAME_MACHINE=`(uname -p) 2>/dev/null`\n\tcase \"${UNAME_MACHINE}\" in\n\t    A*) echo alpha-dec-vms ; exit ;;\n\t    I*) echo ia64-dec-vms ; exit ;;\n\t    V*) echo vax-dec-vms ; exit ;;\n\tesac ;;\n    *:XENIX:*:SysV)\n\techo i386-pc-xenix\n\texit ;;\n    i*86:skyos:*:*)\n\techo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'`\n\texit ;;\n    i*86:rdos:*:*)\n\techo ${UNAME_MACHINE}-pc-rdos\n\texit ;;\n    i*86:AROS:*:*)\n\techo ${UNAME_MACHINE}-pc-aros\n\texit ;;\n    x86_64:VMkernel:*:*)\n\techo ${UNAME_MACHINE}-unknown-esx\n\texit ;;\n    amd64:Isilon\\ OneFS:*:*)\n\techo x86_64-unknown-onefs\n\texit ;;\nesac\n\ncat >&2 <<EOF\n$0: unable to guess system type\n\nThis script (version $timestamp), has failed to recognize the\noperating system you are using. If your script is old, overwrite\nconfig.guess and config.sub with the latest versions from:\n\n  http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess\nand\n  http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub\n\nIf $0 has already been updated, send the following data and any\ninformation you think might be pertinent to config-patches@gnu.org to\nprovide the necessary information to handle your system.\n\nconfig.guess timestamp = $timestamp\n\nuname -m = `(uname -m) 2>/dev/null || echo unknown`\nuname -r = `(uname -r) 2>/dev/null || echo unknown`\nuname -s = `(uname -s) 2>/dev/null || echo unknown`\nuname -v = `(uname -v) 2>/dev/null || echo unknown`\n\n/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`\n/bin/uname -X     = `(/bin/uname -X) 2>/dev/null`\n\nhostinfo               = `(hostinfo) 2>/dev/null`\n/bin/universe          = `(/bin/universe) 2>/dev/null`\n/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null`\n/bin/arch              = `(/bin/arch) 2>/dev/null`\n/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null`\n/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`\n\nUNAME_MACHINE = ${UNAME_MACHINE}\nUNAME_RELEASE = ${UNAME_RELEASE}\nUNAME_SYSTEM  = ${UNAME_SYSTEM}\nUNAME_VERSION = ${UNAME_VERSION}\nEOF\n\nexit 1\n\n# Local variables:\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"timestamp='\"\n# time-stamp-format: \"%:y-%02m-%02d\"\n# time-stamp-end: \"'\"\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/build-aux/config.libpath",
    "content": "#! /bin/sh\n# Output a system dependent set of variables, describing how to set the\n# run time search path of shared libraries in an executable at run time.\n#\n#   Copyright 1996-2017 Free Software Foundation, Inc.\n#   Taken from GNU libtool, 2003\n#   Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996\n#\n#   This program is free software: you can redistribute it and/or modify\n#   it under the terms of the GNU General Public License as published by\n#   the Free Software Foundation; either version 3 of the License, or\n#   (at your option) any later version.\n#\n#   This program is distributed in the hope that it will be useful,\n#   but WITHOUT ANY WARRANTY; without even the implied warranty of\n#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n#   GNU General Public License for more details.\n#\n#   You should have received a copy of the GNU General Public License\n#   along with this program.  If not, see <http://www.gnu.org/licenses/>.\n#\n#   As a special exception to the GNU General Public License, if you\n#   distribute this file as part of a program that contains a\n#   configuration script generated by Autoconf, you may include it under\n#   the same distribution terms that you use for the rest of that program.\n#\n# The first argument passed to this file is the canonical host specification,\n#    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM\n# or\n#    CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM\n# The environment variable LD should be set by the caller.\n#\n# The set of defined variables is at the end of this script.\n\nhost=\"$1\"\nhost_cpu=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\1/'`\nhost_vendor=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\2/'`\nhost_os=`echo \"$host\" | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\3/'`\n\nshlibpath_var=\ncase $host_os in\n  aix3*)\n    shlibpath_var=LIBPATH\n    ;;\n  aix[4-9]*)\n    if test \"$host_cpu\" = ia64; then\n      # AIX 5 supports IA64\n      shlibpath_var=LD_LIBRARY_PATH\n    else\n      shlibpath_var=LIBPATH\n    fi\n    ;;\n  beos*)\n    shlibpath_var=LIBRARY_PATH\n    ;;\n  bsdi[45]*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  cygwin* | mingw* | pw32* | cegcc*)\n    # FIXME: first we should search . and the directory the executable is in\n    shlibpath_var=PATH\n    ;;\n  darwin* | rhapsody*)\n    shlibpath_var=DYLD_LIBRARY_PATH\n    ;;\n  dgux*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  freebsd* | dragonfly*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  gnu*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  hpux9* | hpux10* | hpux11*)\n    case \"$host_cpu\" in\n      ia64* | hppa*64*) shlibpath_var=LD_LIBRARY_PATH ;;\n      *) shlibpath_var=SHLIB_PATH ;;\n    esac\n    ;;\n  interix[3-9]*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  irix5* | irix6* | nonstopux*)\n    case $host_os in\n      irix5* | nonstopux*)\n        shlibsuff=\n        ;;\n      *)\n        case $LD in # libtool.m4 will add one of these switches to LD\n          *-32|*\"-32 \") shlibsuff= ;;\n          *-n32|*\"-n32 \") shlibsuff=N32 ;;\n          *-64|*\"-64 \") shlibsuff=64 ;;\n          *) shlibsuff= ;;\n        esac\n        ;;\n    esac\n    shlibpath_var=LD_LIBRARY${shlibsuff}_PATH\n    ;;\n  linux*oldld* | linux*aout* | linux*coff*)\n    ;;\n  linux* | k*bsd*-gnu)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  netbsd*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  newsos6)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  nto-qnx*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  openbsd*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  os2*)\n    shlibpath_var=LIBPATH\n    ;;\n  osf3* | osf4* | osf5*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  rdos*)\n    ;;\n  solaris*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  sunos4*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  sysv4 | sysv4.3*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  sysv4*MP*)\n    if test -d /usr/nec ;then\n      shlibpath_var=LD_LIBRARY_PATH\n    fi\n    ;;\n  sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\n  uts4*)\n    shlibpath_var=LD_LIBRARY_PATH\n    ;;\nesac\n\nLC_ALL=C sed -e 's/^\\([a-zA-Z0-9_]*\\)=/acl_cv_\\1=/' <<EOF\n\n# This is the shared library path variable.\nshlibpath_var=$shlibpath_var\n\nEOF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/build-aux/config.sub",
    "content": "#! /bin/sh\n# Configuration validation subroutine script.\n#   Copyright 1992-2017 Free Software Foundation, Inc.\n\ntimestamp='2016-12-24'\n\n# This file is free software; you can redistribute it and/or modify it\n# under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, see <http://www.gnu.org/licenses/>.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that\n# program.  This Exception is an additional permission under section 7\n# of the GNU General Public License, version 3 (\"GPLv3\").\n\n\n# Please send patches to <config-patches@gnu.org>.\n#\n# Configuration subroutine to validate and canonicalize a configuration type.\n# Supply the specified configuration type as an argument.\n# If it is invalid, we print an error message on stderr and exit with code 1.\n# Otherwise, we print the canonical config type on stdout and succeed.\n\n# You can get the latest version of this script from:\n# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub\n\n# This file is supposed to be the same for all GNU packages\n# and recognize all the CPU types, system types and aliases\n# that are meaningful with *any* GNU software.\n# Each package is responsible for reporting which valid configurations\n# it does not support.  The user should be able to distinguish\n# a failure to support a valid configuration from a meaningless\n# configuration.\n\n# The goal of this file is to map all the various variations of a given\n# machine specification into a single specification in the form:\n#\tCPU_TYPE-MANUFACTURER-OPERATING_SYSTEM\n# or in some cases, the newer four-part form:\n#\tCPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM\n# It is wrong to echo any other type of specification.\n\nme=`echo \"$0\" | sed -e 's,.*/,,'`\n\nusage=\"\\\nUsage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS\n\nCanonicalize a configuration name.\n\nOperation modes:\n  -h, --help         print this help, then exit\n  -t, --time-stamp   print date of last modification, then exit\n  -v, --version      print version number, then exit\n\nReport bugs and patches to <config-patches@gnu.org>.\"\n\nversion=\"\\\nGNU config.sub ($timestamp)\n\nCopyright 1992-2016 Free Software Foundation, Inc.\n\nThis is free software; see the source for copying conditions.  There is NO\nwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\"\n\nhelp=\"\nTry \\`$me --help' for more information.\"\n\n# Parse command line\nwhile test $# -gt 0 ; do\n  case $1 in\n    --time-stamp | --time* | -t )\n       echo \"$timestamp\" ; exit ;;\n    --version | -v )\n       echo \"$version\" ; exit ;;\n    --help | --h* | -h )\n       echo \"$usage\"; exit ;;\n    -- )     # Stop option processing\n       shift; break ;;\n    - )\t# Use stdin as input.\n       break ;;\n    -* )\n       echo \"$me: invalid option $1$help\"\n       exit 1 ;;\n\n    *local*)\n       # First pass through any local machine types.\n       echo $1\n       exit ;;\n\n    * )\n       break ;;\n  esac\ndone\n\ncase $# in\n 0) echo \"$me: missing argument$help\" >&2\n    exit 1;;\n 1) ;;\n *) echo \"$me: too many arguments$help\" >&2\n    exit 1;;\nesac\n\n# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).\n# Here we must recognize all the valid KERNEL-OS combinations.\nmaybe_os=`echo $1 | sed 's/^\\(.*\\)-\\([^-]*-[^-]*\\)$/\\2/'`\ncase $maybe_os in\n  nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \\\n  linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \\\n  knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \\\n  kopensolaris*-gnu* | cloudabi*-eabi* | \\\n  storm-chaos* | os2-emx* | rtmk-nova*)\n    os=-$maybe_os\n    basic_machine=`echo $1 | sed 's/^\\(.*\\)-\\([^-]*-[^-]*\\)$/\\1/'`\n    ;;\n  android-linux)\n    os=-linux-android\n    basic_machine=`echo $1 | sed 's/^\\(.*\\)-\\([^-]*-[^-]*\\)$/\\1/'`-unknown\n    ;;\n  *)\n    basic_machine=`echo $1 | sed 's/-[^-]*$//'`\n    if [ $basic_machine != $1 ]\n    then os=`echo $1 | sed 's/.*-/-/'`\n    else os=; fi\n    ;;\nesac\n\n### Let's recognize common machines as not being operating systems so\n### that things like config.sub decstation-3100 work.  We also\n### recognize some manufacturers as not being operating systems, so we\n### can provide default operating systems below.\ncase $os in\n\t-sun*os*)\n\t\t# Prevent following clause from handling this invalid input.\n\t\t;;\n\t-dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \\\n\t-att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \\\n\t-unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \\\n\t-convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\\\n\t-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \\\n\t-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \\\n\t-apple | -axis | -knuth | -cray | -microblaze*)\n\t\tos=\n\t\tbasic_machine=$1\n\t\t;;\n\t-bluegene*)\n\t\tos=-cnk\n\t\t;;\n\t-sim | -cisco | -oki | -wec | -winbond)\n\t\tos=\n\t\tbasic_machine=$1\n\t\t;;\n\t-scout)\n\t\t;;\n\t-wrs)\n\t\tos=-vxworks\n\t\tbasic_machine=$1\n\t\t;;\n\t-chorusos*)\n\t\tos=-chorusos\n\t\tbasic_machine=$1\n\t\t;;\n\t-chorusrdb)\n\t\tos=-chorusrdb\n\t\tbasic_machine=$1\n\t\t;;\n\t-hiux*)\n\t\tos=-hiuxwe2\n\t\t;;\n\t-sco6)\n\t\tos=-sco5v6\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco5)\n\t\tos=-sco3.2v5\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco4)\n\t\tos=-sco3.2v4\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco3.2.[4-9]*)\n\t\tos=`echo $os | sed -e 's/sco3.2./sco3.2v/'`\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco3.2v[4-9]*)\n\t\t# Don't forget version if it is 3.2v4 or newer.\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco5v6*)\n\t\t# Don't forget version if it is 3.2v4 or newer.\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-sco*)\n\t\tos=-sco3.2v2\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-udk*)\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-isc)\n\t\tos=-isc2.2\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-clix*)\n\t\tbasic_machine=clipper-intergraph\n\t\t;;\n\t-isc*)\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`\n\t\t;;\n\t-lynx*178)\n\t\tos=-lynxos178\n\t\t;;\n\t-lynx*5)\n\t\tos=-lynxos5\n\t\t;;\n\t-lynx*)\n\t\tos=-lynxos\n\t\t;;\n\t-ptx*)\n\t\tbasic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`\n\t\t;;\n\t-windowsnt*)\n\t\tos=`echo $os | sed -e 's/windowsnt/winnt/'`\n\t\t;;\n\t-psos*)\n\t\tos=-psos\n\t\t;;\n\t-mint | -mint[0-9]*)\n\t\tbasic_machine=m68k-atari\n\t\tos=-mint\n\t\t;;\nesac\n\n# Decode aliases for certain CPU-COMPANY combinations.\ncase $basic_machine in\n\t# Recognize the basic CPU types without company name.\n\t# Some are omitted here because they have special meanings below.\n\t1750a | 580 \\\n\t| a29k \\\n\t| aarch64 | aarch64_be \\\n\t| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \\\n\t| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \\\n\t| am33_2.0 \\\n\t| arc | arceb \\\n\t| arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \\\n\t| avr | avr32 \\\n\t| ba \\\n\t| be32 | be64 \\\n\t| bfin \\\n\t| c4x | c8051 | clipper \\\n\t| d10v | d30v | dlx | dsp16xx \\\n\t| e2k | epiphany \\\n\t| fido | fr30 | frv | ft32 \\\n\t| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \\\n\t| hexagon \\\n\t| i370 | i860 | i960 | ia64 \\\n\t| ip2k | iq2000 \\\n\t| k1om \\\n\t| le32 | le64 \\\n\t| lm32 \\\n\t| m32c | m32r | m32rle | m68000 | m68k | m88k \\\n\t| maxq | mb | microblaze | microblazeel | mcore | mep | metag \\\n\t| mips | mipsbe | mipseb | mipsel | mipsle \\\n\t| mips16 \\\n\t| mips64 | mips64el \\\n\t| mips64octeon | mips64octeonel \\\n\t| mips64orion | mips64orionel \\\n\t| mips64r5900 | mips64r5900el \\\n\t| mips64vr | mips64vrel \\\n\t| mips64vr4100 | mips64vr4100el \\\n\t| mips64vr4300 | mips64vr4300el \\\n\t| mips64vr5000 | mips64vr5000el \\\n\t| mips64vr5900 | mips64vr5900el \\\n\t| mipsisa32 | mipsisa32el \\\n\t| mipsisa32r2 | mipsisa32r2el \\\n\t| mipsisa32r6 | mipsisa32r6el \\\n\t| mipsisa64 | mipsisa64el \\\n\t| mipsisa64r2 | mipsisa64r2el \\\n\t| mipsisa64r6 | mipsisa64r6el \\\n\t| mipsisa64sb1 | mipsisa64sb1el \\\n\t| mipsisa64sr71k | mipsisa64sr71kel \\\n\t| mipsr5900 | mipsr5900el \\\n\t| mipstx39 | mipstx39el \\\n\t| mn10200 | mn10300 \\\n\t| moxie \\\n\t| mt \\\n\t| msp430 \\\n\t| nds32 | nds32le | nds32be \\\n\t| nios | nios2 | nios2eb | nios2el \\\n\t| ns16k | ns32k \\\n\t| open8 | or1k | or1knd | or32 \\\n\t| pdp10 | pdp11 | pj | pjl \\\n\t| powerpc | powerpc64 | powerpc64le | powerpcle \\\n\t| pru \\\n\t| pyramid \\\n\t| riscv32 | riscv64 \\\n\t| rl78 | rx \\\n\t| score \\\n\t| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \\\n\t| sh64 | sh64le \\\n\t| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \\\n\t| sparcv8 | sparcv9 | sparcv9b | sparcv9v \\\n\t| spu \\\n\t| tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \\\n\t| ubicom32 \\\n\t| v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \\\n\t| visium \\\n\t| we32k \\\n\t| x86 | xc16x | xstormy16 | xtensa \\\n\t| z8k | z80)\n\t\tbasic_machine=$basic_machine-unknown\n\t\t;;\n\tc54x)\n\t\tbasic_machine=tic54x-unknown\n\t\t;;\n\tc55x)\n\t\tbasic_machine=tic55x-unknown\n\t\t;;\n\tc6x)\n\t\tbasic_machine=tic6x-unknown\n\t\t;;\n\tleon|leon[3-9])\n\t\tbasic_machine=sparc-$basic_machine\n\t\t;;\n\tm6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip)\n\t\tbasic_machine=$basic_machine-unknown\n\t\tos=-none\n\t\t;;\n\tm88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)\n\t\t;;\n\tms1)\n\t\tbasic_machine=mt-unknown\n\t\t;;\n\n\tstrongarm | thumb | xscale)\n\t\tbasic_machine=arm-unknown\n\t\t;;\n\txgate)\n\t\tbasic_machine=$basic_machine-unknown\n\t\tos=-none\n\t\t;;\n\txscaleeb)\n\t\tbasic_machine=armeb-unknown\n\t\t;;\n\n\txscaleel)\n\t\tbasic_machine=armel-unknown\n\t\t;;\n\n\t# We use `pc' rather than `unknown'\n\t# because (1) that's what they normally are, and\n\t# (2) the word \"unknown\" tends to confuse beginning users.\n\ti*86 | x86_64)\n\t  basic_machine=$basic_machine-pc\n\t  ;;\n\t# Object if more than one company name word.\n\t*-*-*)\n\t\techo Invalid configuration \\`$1\\': machine \\`$basic_machine\\' not recognized 1>&2\n\t\texit 1\n\t\t;;\n\t# Recognize the basic CPU types with company name.\n\t580-* \\\n\t| a29k-* \\\n\t| aarch64-* | aarch64_be-* \\\n\t| alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \\\n\t| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \\\n\t| alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \\\n\t| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \\\n\t| avr-* | avr32-* \\\n\t| ba-* \\\n\t| be32-* | be64-* \\\n\t| bfin-* | bs2000-* \\\n\t| c[123]* | c30-* | [cjt]90-* | c4x-* \\\n\t| c8051-* | clipper-* | craynv-* | cydra-* \\\n\t| d10v-* | d30v-* | dlx-* \\\n\t| e2k-* | elxsi-* \\\n\t| f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \\\n\t| h8300-* | h8500-* \\\n\t| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \\\n\t| hexagon-* \\\n\t| i*86-* | i860-* | i960-* | ia64-* \\\n\t| ip2k-* | iq2000-* \\\n\t| k1om-* \\\n\t| le32-* | le64-* \\\n\t| lm32-* \\\n\t| m32c-* | m32r-* | m32rle-* \\\n\t| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \\\n\t| m88110-* | m88k-* | maxq-* | mcore-* | metag-* \\\n\t| microblaze-* | microblazeel-* \\\n\t| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \\\n\t| mips16-* \\\n\t| mips64-* | mips64el-* \\\n\t| mips64octeon-* | mips64octeonel-* \\\n\t| mips64orion-* | mips64orionel-* \\\n\t| mips64r5900-* | mips64r5900el-* \\\n\t| mips64vr-* | mips64vrel-* \\\n\t| mips64vr4100-* | mips64vr4100el-* \\\n\t| mips64vr4300-* | mips64vr4300el-* \\\n\t| mips64vr5000-* | mips64vr5000el-* \\\n\t| mips64vr5900-* | mips64vr5900el-* \\\n\t| mipsisa32-* | mipsisa32el-* \\\n\t| mipsisa32r2-* | mipsisa32r2el-* \\\n\t| mipsisa32r6-* | mipsisa32r6el-* \\\n\t| mipsisa64-* | mipsisa64el-* \\\n\t| mipsisa64r2-* | mipsisa64r2el-* \\\n\t| mipsisa64r6-* | mipsisa64r6el-* \\\n\t| mipsisa64sb1-* | mipsisa64sb1el-* \\\n\t| mipsisa64sr71k-* | mipsisa64sr71kel-* \\\n\t| mipsr5900-* | mipsr5900el-* \\\n\t| mipstx39-* | mipstx39el-* \\\n\t| mmix-* \\\n\t| mt-* \\\n\t| msp430-* \\\n\t| nds32-* | nds32le-* | nds32be-* \\\n\t| nios-* | nios2-* | nios2eb-* | nios2el-* \\\n\t| none-* | np1-* | ns16k-* | ns32k-* \\\n\t| open8-* \\\n\t| or1k*-* \\\n\t| orion-* \\\n\t| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \\\n\t| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \\\n\t| pru-* \\\n\t| pyramid-* \\\n\t| riscv32-* | riscv64-* \\\n\t| rl78-* | romp-* | rs6000-* | rx-* \\\n\t| sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \\\n\t| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \\\n\t| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \\\n\t| sparclite-* \\\n\t| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \\\n\t| tahoe-* \\\n\t| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \\\n\t| tile*-* \\\n\t| tron-* \\\n\t| ubicom32-* \\\n\t| v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \\\n\t| vax-* \\\n\t| visium-* \\\n\t| we32k-* \\\n\t| x86-* | x86_64-* | xc16x-* | xps100-* \\\n\t| xstormy16-* | xtensa*-* \\\n\t| ymp-* \\\n\t| z8k-* | z80-*)\n\t\t;;\n\t# Recognize the basic CPU types without company name, with glob match.\n\txtensa*)\n\t\tbasic_machine=$basic_machine-unknown\n\t\t;;\n\t# Recognize the various machine names and aliases which stand\n\t# for a CPU type and a company and sometimes even an OS.\n\t386bsd)\n\t\tbasic_machine=i386-unknown\n\t\tos=-bsd\n\t\t;;\n\t3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)\n\t\tbasic_machine=m68000-att\n\t\t;;\n\t3b*)\n\t\tbasic_machine=we32k-att\n\t\t;;\n\ta29khif)\n\t\tbasic_machine=a29k-amd\n\t\tos=-udi\n\t\t;;\n\tabacus)\n\t\tbasic_machine=abacus-unknown\n\t\t;;\n\tadobe68k)\n\t\tbasic_machine=m68010-adobe\n\t\tos=-scout\n\t\t;;\n\talliant | fx80)\n\t\tbasic_machine=fx80-alliant\n\t\t;;\n\taltos | altos3068)\n\t\tbasic_machine=m68k-altos\n\t\t;;\n\tam29k)\n\t\tbasic_machine=a29k-none\n\t\tos=-bsd\n\t\t;;\n\tamd64)\n\t\tbasic_machine=x86_64-pc\n\t\t;;\n\tamd64-*)\n\t\tbasic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tamdahl)\n\t\tbasic_machine=580-amdahl\n\t\tos=-sysv\n\t\t;;\n\tamiga | amiga-*)\n\t\tbasic_machine=m68k-unknown\n\t\t;;\n\tamigaos | amigados)\n\t\tbasic_machine=m68k-unknown\n\t\tos=-amigaos\n\t\t;;\n\tamigaunix | amix)\n\t\tbasic_machine=m68k-unknown\n\t\tos=-sysv4\n\t\t;;\n\tapollo68)\n\t\tbasic_machine=m68k-apollo\n\t\tos=-sysv\n\t\t;;\n\tapollo68bsd)\n\t\tbasic_machine=m68k-apollo\n\t\tos=-bsd\n\t\t;;\n\taros)\n\t\tbasic_machine=i386-pc\n\t\tos=-aros\n\t\t;;\n\tasmjs)\n\t\tbasic_machine=asmjs-unknown\n\t\t;;\n\taux)\n\t\tbasic_machine=m68k-apple\n\t\tos=-aux\n\t\t;;\n\tbalance)\n\t\tbasic_machine=ns32k-sequent\n\t\tos=-dynix\n\t\t;;\n\tblackfin)\n\t\tbasic_machine=bfin-unknown\n\t\tos=-linux\n\t\t;;\n\tblackfin-*)\n\t\tbasic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\tos=-linux\n\t\t;;\n\tbluegene*)\n\t\tbasic_machine=powerpc-ibm\n\t\tos=-cnk\n\t\t;;\n\tc54x-*)\n\t\tbasic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tc55x-*)\n\t\tbasic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tc6x-*)\n\t\tbasic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tc90)\n\t\tbasic_machine=c90-cray\n\t\tos=-unicos\n\t\t;;\n\tcegcc)\n\t\tbasic_machine=arm-unknown\n\t\tos=-cegcc\n\t\t;;\n\tconvex-c1)\n\t\tbasic_machine=c1-convex\n\t\tos=-bsd\n\t\t;;\n\tconvex-c2)\n\t\tbasic_machine=c2-convex\n\t\tos=-bsd\n\t\t;;\n\tconvex-c32)\n\t\tbasic_machine=c32-convex\n\t\tos=-bsd\n\t\t;;\n\tconvex-c34)\n\t\tbasic_machine=c34-convex\n\t\tos=-bsd\n\t\t;;\n\tconvex-c38)\n\t\tbasic_machine=c38-convex\n\t\tos=-bsd\n\t\t;;\n\tcray | j90)\n\t\tbasic_machine=j90-cray\n\t\tos=-unicos\n\t\t;;\n\tcraynv)\n\t\tbasic_machine=craynv-cray\n\t\tos=-unicosmp\n\t\t;;\n\tcr16 | cr16-*)\n\t\tbasic_machine=cr16-unknown\n\t\tos=-elf\n\t\t;;\n\tcrds | unos)\n\t\tbasic_machine=m68k-crds\n\t\t;;\n\tcrisv32 | crisv32-* | etraxfs*)\n\t\tbasic_machine=crisv32-axis\n\t\t;;\n\tcris | cris-* | etrax*)\n\t\tbasic_machine=cris-axis\n\t\t;;\n\tcrx)\n\t\tbasic_machine=crx-unknown\n\t\tos=-elf\n\t\t;;\n\tda30 | da30-*)\n\t\tbasic_machine=m68k-da30\n\t\t;;\n\tdecstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)\n\t\tbasic_machine=mips-dec\n\t\t;;\n\tdecsystem10* | dec10*)\n\t\tbasic_machine=pdp10-dec\n\t\tos=-tops10\n\t\t;;\n\tdecsystem20* | dec20*)\n\t\tbasic_machine=pdp10-dec\n\t\tos=-tops20\n\t\t;;\n\tdelta | 3300 | motorola-3300 | motorola-delta \\\n\t      | 3300-motorola | delta-motorola)\n\t\tbasic_machine=m68k-motorola\n\t\t;;\n\tdelta88)\n\t\tbasic_machine=m88k-motorola\n\t\tos=-sysv3\n\t\t;;\n\tdicos)\n\t\tbasic_machine=i686-pc\n\t\tos=-dicos\n\t\t;;\n\tdjgpp)\n\t\tbasic_machine=i586-pc\n\t\tos=-msdosdjgpp\n\t\t;;\n\tdpx20 | dpx20-*)\n\t\tbasic_machine=rs6000-bull\n\t\tos=-bosx\n\t\t;;\n\tdpx2* | dpx2*-bull)\n\t\tbasic_machine=m68k-bull\n\t\tos=-sysv3\n\t\t;;\n\te500v[12])\n\t\tbasic_machine=powerpc-unknown\n\t\tos=$os\"spe\"\n\t\t;;\n\te500v[12]-*)\n\t\tbasic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\tos=$os\"spe\"\n\t\t;;\n\tebmon29k)\n\t\tbasic_machine=a29k-amd\n\t\tos=-ebmon\n\t\t;;\n\telxsi)\n\t\tbasic_machine=elxsi-elxsi\n\t\tos=-bsd\n\t\t;;\n\tencore | umax | mmax)\n\t\tbasic_machine=ns32k-encore\n\t\t;;\n\tes1800 | OSE68k | ose68k | ose | OSE)\n\t\tbasic_machine=m68k-ericsson\n\t\tos=-ose\n\t\t;;\n\tfx2800)\n\t\tbasic_machine=i860-alliant\n\t\t;;\n\tgenix)\n\t\tbasic_machine=ns32k-ns\n\t\t;;\n\tgmicro)\n\t\tbasic_machine=tron-gmicro\n\t\tos=-sysv\n\t\t;;\n\tgo32)\n\t\tbasic_machine=i386-pc\n\t\tos=-go32\n\t\t;;\n\th3050r* | hiux*)\n\t\tbasic_machine=hppa1.1-hitachi\n\t\tos=-hiuxwe2\n\t\t;;\n\th8300hms)\n\t\tbasic_machine=h8300-hitachi\n\t\tos=-hms\n\t\t;;\n\th8300xray)\n\t\tbasic_machine=h8300-hitachi\n\t\tos=-xray\n\t\t;;\n\th8500hms)\n\t\tbasic_machine=h8500-hitachi\n\t\tos=-hms\n\t\t;;\n\tharris)\n\t\tbasic_machine=m88k-harris\n\t\tos=-sysv3\n\t\t;;\n\thp300-*)\n\t\tbasic_machine=m68k-hp\n\t\t;;\n\thp300bsd)\n\t\tbasic_machine=m68k-hp\n\t\tos=-bsd\n\t\t;;\n\thp300hpux)\n\t\tbasic_machine=m68k-hp\n\t\tos=-hpux\n\t\t;;\n\thp3k9[0-9][0-9] | hp9[0-9][0-9])\n\t\tbasic_machine=hppa1.0-hp\n\t\t;;\n\thp9k2[0-9][0-9] | hp9k31[0-9])\n\t\tbasic_machine=m68000-hp\n\t\t;;\n\thp9k3[2-9][0-9])\n\t\tbasic_machine=m68k-hp\n\t\t;;\n\thp9k6[0-9][0-9] | hp6[0-9][0-9])\n\t\tbasic_machine=hppa1.0-hp\n\t\t;;\n\thp9k7[0-79][0-9] | hp7[0-79][0-9])\n\t\tbasic_machine=hppa1.1-hp\n\t\t;;\n\thp9k78[0-9] | hp78[0-9])\n\t\t# FIXME: really hppa2.0-hp\n\t\tbasic_machine=hppa1.1-hp\n\t\t;;\n\thp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)\n\t\t# FIXME: really hppa2.0-hp\n\t\tbasic_machine=hppa1.1-hp\n\t\t;;\n\thp9k8[0-9][13679] | hp8[0-9][13679])\n\t\tbasic_machine=hppa1.1-hp\n\t\t;;\n\thp9k8[0-9][0-9] | hp8[0-9][0-9])\n\t\tbasic_machine=hppa1.0-hp\n\t\t;;\n\thppa-next)\n\t\tos=-nextstep3\n\t\t;;\n\thppaosf)\n\t\tbasic_machine=hppa1.1-hp\n\t\tos=-osf\n\t\t;;\n\thppro)\n\t\tbasic_machine=hppa1.1-hp\n\t\tos=-proelf\n\t\t;;\n\ti370-ibm* | ibm*)\n\t\tbasic_machine=i370-ibm\n\t\t;;\n\ti*86v32)\n\t\tbasic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`\n\t\tos=-sysv32\n\t\t;;\n\ti*86v4*)\n\t\tbasic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`\n\t\tos=-sysv4\n\t\t;;\n\ti*86v)\n\t\tbasic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`\n\t\tos=-sysv\n\t\t;;\n\ti*86sol2)\n\t\tbasic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`\n\t\tos=-solaris2\n\t\t;;\n\ti386mach)\n\t\tbasic_machine=i386-mach\n\t\tos=-mach\n\t\t;;\n\ti386-vsta | vsta)\n\t\tbasic_machine=i386-unknown\n\t\tos=-vsta\n\t\t;;\n\tiris | iris4d)\n\t\tbasic_machine=mips-sgi\n\t\tcase $os in\n\t\t    -irix*)\n\t\t\t;;\n\t\t    *)\n\t\t\tos=-irix4\n\t\t\t;;\n\t\tesac\n\t\t;;\n\tisi68 | isi)\n\t\tbasic_machine=m68k-isi\n\t\tos=-sysv\n\t\t;;\n\tleon-*|leon[3-9]-*)\n\t\tbasic_machine=sparc-`echo $basic_machine | sed 's/-.*//'`\n\t\t;;\n\tm68knommu)\n\t\tbasic_machine=m68k-unknown\n\t\tos=-linux\n\t\t;;\n\tm68knommu-*)\n\t\tbasic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\tos=-linux\n\t\t;;\n\tm88k-omron*)\n\t\tbasic_machine=m88k-omron\n\t\t;;\n\tmagnum | m3230)\n\t\tbasic_machine=mips-mips\n\t\tos=-sysv\n\t\t;;\n\tmerlin)\n\t\tbasic_machine=ns32k-utek\n\t\tos=-sysv\n\t\t;;\n\tmicroblaze*)\n\t\tbasic_machine=microblaze-xilinx\n\t\t;;\n\tmingw64)\n\t\tbasic_machine=x86_64-pc\n\t\tos=-mingw64\n\t\t;;\n\tmingw32)\n\t\tbasic_machine=i686-pc\n\t\tos=-mingw32\n\t\t;;\n\tmingw32ce)\n\t\tbasic_machine=arm-unknown\n\t\tos=-mingw32ce\n\t\t;;\n\tminiframe)\n\t\tbasic_machine=m68000-convergent\n\t\t;;\n\t*mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)\n\t\tbasic_machine=m68k-atari\n\t\tos=-mint\n\t\t;;\n\tmips3*-*)\n\t\tbasic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`\n\t\t;;\n\tmips3*)\n\t\tbasic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown\n\t\t;;\n\tmonitor)\n\t\tbasic_machine=m68k-rom68k\n\t\tos=-coff\n\t\t;;\n\tmorphos)\n\t\tbasic_machine=powerpc-unknown\n\t\tos=-morphos\n\t\t;;\n\tmoxiebox)\n\t\tbasic_machine=moxie-unknown\n\t\tos=-moxiebox\n\t\t;;\n\tmsdos)\n\t\tbasic_machine=i386-pc\n\t\tos=-msdos\n\t\t;;\n\tms1-*)\n\t\tbasic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`\n\t\t;;\n\tmsys)\n\t\tbasic_machine=i686-pc\n\t\tos=-msys\n\t\t;;\n\tmvs)\n\t\tbasic_machine=i370-ibm\n\t\tos=-mvs\n\t\t;;\n\tnacl)\n\t\tbasic_machine=le32-unknown\n\t\tos=-nacl\n\t\t;;\n\tncr3000)\n\t\tbasic_machine=i486-ncr\n\t\tos=-sysv4\n\t\t;;\n\tnetbsd386)\n\t\tbasic_machine=i386-unknown\n\t\tos=-netbsd\n\t\t;;\n\tnetwinder)\n\t\tbasic_machine=armv4l-rebel\n\t\tos=-linux\n\t\t;;\n\tnews | news700 | news800 | news900)\n\t\tbasic_machine=m68k-sony\n\t\tos=-newsos\n\t\t;;\n\tnews1000)\n\t\tbasic_machine=m68030-sony\n\t\tos=-newsos\n\t\t;;\n\tnews-3600 | risc-news)\n\t\tbasic_machine=mips-sony\n\t\tos=-newsos\n\t\t;;\n\tnecv70)\n\t\tbasic_machine=v70-nec\n\t\tos=-sysv\n\t\t;;\n\tnext | m*-next )\n\t\tbasic_machine=m68k-next\n\t\tcase $os in\n\t\t    -nextstep* )\n\t\t\t;;\n\t\t    -ns2*)\n\t\t      os=-nextstep2\n\t\t\t;;\n\t\t    *)\n\t\t      os=-nextstep3\n\t\t\t;;\n\t\tesac\n\t\t;;\n\tnh3000)\n\t\tbasic_machine=m68k-harris\n\t\tos=-cxux\n\t\t;;\n\tnh[45]000)\n\t\tbasic_machine=m88k-harris\n\t\tos=-cxux\n\t\t;;\n\tnindy960)\n\t\tbasic_machine=i960-intel\n\t\tos=-nindy\n\t\t;;\n\tmon960)\n\t\tbasic_machine=i960-intel\n\t\tos=-mon960\n\t\t;;\n\tnonstopux)\n\t\tbasic_machine=mips-compaq\n\t\tos=-nonstopux\n\t\t;;\n\tnp1)\n\t\tbasic_machine=np1-gould\n\t\t;;\n\tneo-tandem)\n\t\tbasic_machine=neo-tandem\n\t\t;;\n\tnse-tandem)\n\t\tbasic_machine=nse-tandem\n\t\t;;\n\tnsr-tandem)\n\t\tbasic_machine=nsr-tandem\n\t\t;;\n\top50n-* | op60c-*)\n\t\tbasic_machine=hppa1.1-oki\n\t\tos=-proelf\n\t\t;;\n\topenrisc | openrisc-*)\n\t\tbasic_machine=or32-unknown\n\t\t;;\n\tos400)\n\t\tbasic_machine=powerpc-ibm\n\t\tos=-os400\n\t\t;;\n\tOSE68000 | ose68000)\n\t\tbasic_machine=m68000-ericsson\n\t\tos=-ose\n\t\t;;\n\tos68k)\n\t\tbasic_machine=m68k-none\n\t\tos=-os68k\n\t\t;;\n\tpa-hitachi)\n\t\tbasic_machine=hppa1.1-hitachi\n\t\tos=-hiuxwe2\n\t\t;;\n\tparagon)\n\t\tbasic_machine=i860-intel\n\t\tos=-osf\n\t\t;;\n\tparisc)\n\t\tbasic_machine=hppa-unknown\n\t\tos=-linux\n\t\t;;\n\tparisc-*)\n\t\tbasic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\tos=-linux\n\t\t;;\n\tpbd)\n\t\tbasic_machine=sparc-tti\n\t\t;;\n\tpbb)\n\t\tbasic_machine=m68k-tti\n\t\t;;\n\tpc532 | pc532-*)\n\t\tbasic_machine=ns32k-pc532\n\t\t;;\n\tpc98)\n\t\tbasic_machine=i386-pc\n\t\t;;\n\tpc98-*)\n\t\tbasic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tpentium | p5 | k5 | k6 | nexgen | viac3)\n\t\tbasic_machine=i586-pc\n\t\t;;\n\tpentiumpro | p6 | 6x86 | athlon | athlon_*)\n\t\tbasic_machine=i686-pc\n\t\t;;\n\tpentiumii | pentium2 | pentiumiii | pentium3)\n\t\tbasic_machine=i686-pc\n\t\t;;\n\tpentium4)\n\t\tbasic_machine=i786-pc\n\t\t;;\n\tpentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)\n\t\tbasic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tpentiumpro-* | p6-* | 6x86-* | athlon-*)\n\t\tbasic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tpentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)\n\t\tbasic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tpentium4-*)\n\t\tbasic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tpn)\n\t\tbasic_machine=pn-gould\n\t\t;;\n\tpower)\tbasic_machine=power-ibm\n\t\t;;\n\tppc | ppcbe)\tbasic_machine=powerpc-unknown\n\t\t;;\n\tppc-* | ppcbe-*)\n\t\tbasic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tppcle | powerpclittle)\n\t\tbasic_machine=powerpcle-unknown\n\t\t;;\n\tppcle-* | powerpclittle-*)\n\t\tbasic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tppc64)\tbasic_machine=powerpc64-unknown\n\t\t;;\n\tppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tppc64le | powerpc64little)\n\t\tbasic_machine=powerpc64le-unknown\n\t\t;;\n\tppc64le-* | powerpc64little-*)\n\t\tbasic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tps2)\n\t\tbasic_machine=i386-ibm\n\t\t;;\n\tpw32)\n\t\tbasic_machine=i586-unknown\n\t\tos=-pw32\n\t\t;;\n\trdos | rdos64)\n\t\tbasic_machine=x86_64-pc\n\t\tos=-rdos\n\t\t;;\n\trdos32)\n\t\tbasic_machine=i386-pc\n\t\tos=-rdos\n\t\t;;\n\trom68k)\n\t\tbasic_machine=m68k-rom68k\n\t\tos=-coff\n\t\t;;\n\trm[46]00)\n\t\tbasic_machine=mips-siemens\n\t\t;;\n\trtpc | rtpc-*)\n\t\tbasic_machine=romp-ibm\n\t\t;;\n\ts390 | s390-*)\n\t\tbasic_machine=s390-ibm\n\t\t;;\n\ts390x | s390x-*)\n\t\tbasic_machine=s390x-ibm\n\t\t;;\n\tsa29200)\n\t\tbasic_machine=a29k-amd\n\t\tos=-udi\n\t\t;;\n\tsb1)\n\t\tbasic_machine=mipsisa64sb1-unknown\n\t\t;;\n\tsb1el)\n\t\tbasic_machine=mipsisa64sb1el-unknown\n\t\t;;\n\tsde)\n\t\tbasic_machine=mipsisa32-sde\n\t\tos=-elf\n\t\t;;\n\tsei)\n\t\tbasic_machine=mips-sei\n\t\tos=-seiux\n\t\t;;\n\tsequent)\n\t\tbasic_machine=i386-sequent\n\t\t;;\n\tsh)\n\t\tbasic_machine=sh-hitachi\n\t\tos=-hms\n\t\t;;\n\tsh5el)\n\t\tbasic_machine=sh5le-unknown\n\t\t;;\n\tsh64)\n\t\tbasic_machine=sh64-unknown\n\t\t;;\n\tsparclite-wrs | simso-wrs)\n\t\tbasic_machine=sparclite-wrs\n\t\tos=-vxworks\n\t\t;;\n\tsps7)\n\t\tbasic_machine=m68k-bull\n\t\tos=-sysv2\n\t\t;;\n\tspur)\n\t\tbasic_machine=spur-unknown\n\t\t;;\n\tst2000)\n\t\tbasic_machine=m68k-tandem\n\t\t;;\n\tstratus)\n\t\tbasic_machine=i860-stratus\n\t\tos=-sysv4\n\t\t;;\n\tstrongarm-* | thumb-*)\n\t\tbasic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`\n\t\t;;\n\tsun2)\n\t\tbasic_machine=m68000-sun\n\t\t;;\n\tsun2os3)\n\t\tbasic_machine=m68000-sun\n\t\tos=-sunos3\n\t\t;;\n\tsun2os4)\n\t\tbasic_machine=m68000-sun\n\t\tos=-sunos4\n\t\t;;\n\tsun3os3)\n\t\tbasic_machine=m68k-sun\n\t\tos=-sunos3\n\t\t;;\n\tsun3os4)\n\t\tbasic_machine=m68k-sun\n\t\tos=-sunos4\n\t\t;;\n\tsun4os3)\n\t\tbasic_machine=sparc-sun\n\t\tos=-sunos3\n\t\t;;\n\tsun4os4)\n\t\tbasic_machine=sparc-sun\n\t\tos=-sunos4\n\t\t;;\n\tsun4sol2)\n\t\tbasic_machine=sparc-sun\n\t\tos=-solaris2\n\t\t;;\n\tsun3 | sun3-*)\n\t\tbasic_machine=m68k-sun\n\t\t;;\n\tsun4)\n\t\tbasic_machine=sparc-sun\n\t\t;;\n\tsun386 | sun386i | roadrunner)\n\t\tbasic_machine=i386-sun\n\t\t;;\n\tsv1)\n\t\tbasic_machine=sv1-cray\n\t\tos=-unicos\n\t\t;;\n\tsymmetry)\n\t\tbasic_machine=i386-sequent\n\t\tos=-dynix\n\t\t;;\n\tt3e)\n\t\tbasic_machine=alphaev5-cray\n\t\tos=-unicos\n\t\t;;\n\tt90)\n\t\tbasic_machine=t90-cray\n\t\tos=-unicos\n\t\t;;\n\ttile*)\n\t\tbasic_machine=$basic_machine-unknown\n\t\tos=-linux-gnu\n\t\t;;\n\ttx39)\n\t\tbasic_machine=mipstx39-unknown\n\t\t;;\n\ttx39el)\n\t\tbasic_machine=mipstx39el-unknown\n\t\t;;\n\ttoad1)\n\t\tbasic_machine=pdp10-xkl\n\t\tos=-tops20\n\t\t;;\n\ttower | tower-32)\n\t\tbasic_machine=m68k-ncr\n\t\t;;\n\ttpf)\n\t\tbasic_machine=s390x-ibm\n\t\tos=-tpf\n\t\t;;\n\tudi29k)\n\t\tbasic_machine=a29k-amd\n\t\tos=-udi\n\t\t;;\n\tultra3)\n\t\tbasic_machine=a29k-nyu\n\t\tos=-sym1\n\t\t;;\n\tv810 | necv810)\n\t\tbasic_machine=v810-nec\n\t\tos=-none\n\t\t;;\n\tvaxv)\n\t\tbasic_machine=vax-dec\n\t\tos=-sysv\n\t\t;;\n\tvms)\n\t\tbasic_machine=vax-dec\n\t\tos=-vms\n\t\t;;\n\tvpp*|vx|vx-*)\n\t\tbasic_machine=f301-fujitsu\n\t\t;;\n\tvxworks960)\n\t\tbasic_machine=i960-wrs\n\t\tos=-vxworks\n\t\t;;\n\tvxworks68)\n\t\tbasic_machine=m68k-wrs\n\t\tos=-vxworks\n\t\t;;\n\tvxworks29k)\n\t\tbasic_machine=a29k-wrs\n\t\tos=-vxworks\n\t\t;;\n\tw65*)\n\t\tbasic_machine=w65-wdc\n\t\tos=-none\n\t\t;;\n\tw89k-*)\n\t\tbasic_machine=hppa1.1-winbond\n\t\tos=-proelf\n\t\t;;\n\txbox)\n\t\tbasic_machine=i686-pc\n\t\tos=-mingw32\n\t\t;;\n\txps | xps100)\n\t\tbasic_machine=xps100-honeywell\n\t\t;;\n\txscale-* | xscalee[bl]-*)\n\t\tbasic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`\n\t\t;;\n\tymp)\n\t\tbasic_machine=ymp-cray\n\t\tos=-unicos\n\t\t;;\n\tz8k-*-coff)\n\t\tbasic_machine=z8k-unknown\n\t\tos=-sim\n\t\t;;\n\tz80-*-coff)\n\t\tbasic_machine=z80-unknown\n\t\tos=-sim\n\t\t;;\n\tnone)\n\t\tbasic_machine=none-none\n\t\tos=-none\n\t\t;;\n\n# Here we handle the default manufacturer of certain CPU types.  It is in\n# some cases the only manufacturer, in others, it is the most popular.\n\tw89k)\n\t\tbasic_machine=hppa1.1-winbond\n\t\t;;\n\top50n)\n\t\tbasic_machine=hppa1.1-oki\n\t\t;;\n\top60c)\n\t\tbasic_machine=hppa1.1-oki\n\t\t;;\n\tromp)\n\t\tbasic_machine=romp-ibm\n\t\t;;\n\tmmix)\n\t\tbasic_machine=mmix-knuth\n\t\t;;\n\trs6000)\n\t\tbasic_machine=rs6000-ibm\n\t\t;;\n\tvax)\n\t\tbasic_machine=vax-dec\n\t\t;;\n\tpdp10)\n\t\t# there are many clones, so DEC is not a safe bet\n\t\tbasic_machine=pdp10-unknown\n\t\t;;\n\tpdp11)\n\t\tbasic_machine=pdp11-dec\n\t\t;;\n\twe32k)\n\t\tbasic_machine=we32k-att\n\t\t;;\n\tsh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)\n\t\tbasic_machine=sh-unknown\n\t\t;;\n\tsparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)\n\t\tbasic_machine=sparc-sun\n\t\t;;\n\tcydra)\n\t\tbasic_machine=cydra-cydrome\n\t\t;;\n\torion)\n\t\tbasic_machine=orion-highlevel\n\t\t;;\n\torion105)\n\t\tbasic_machine=clipper-highlevel\n\t\t;;\n\tmac | mpw | mac-mpw)\n\t\tbasic_machine=m68k-apple\n\t\t;;\n\tpmac | pmac-mpw)\n\t\tbasic_machine=powerpc-apple\n\t\t;;\n\t*-unknown)\n\t\t# Make sure to match an already-canonicalized machine name.\n\t\t;;\n\t*)\n\t\techo Invalid configuration \\`$1\\': machine \\`$basic_machine\\' not recognized 1>&2\n\t\texit 1\n\t\t;;\nesac\n\n# Here we canonicalize certain aliases for manufacturers.\ncase $basic_machine in\n\t*-digital*)\n\t\tbasic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`\n\t\t;;\n\t*-commodore*)\n\t\tbasic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`\n\t\t;;\n\t*)\n\t\t;;\nesac\n\n# Decode manufacturer-specific aliases for certain operating systems.\n\nif [ x\"$os\" != x\"\" ]\nthen\ncase $os in\n\t# First match some system type aliases\n\t# that might get confused with valid system types.\n\t# -solaris* is a basic system type, with this one exception.\n\t-auroraux)\n\t\tos=-auroraux\n\t\t;;\n\t-solaris1 | -solaris1.*)\n\t\tos=`echo $os | sed -e 's|solaris1|sunos4|'`\n\t\t;;\n\t-solaris)\n\t\tos=-solaris2\n\t\t;;\n\t-svr4*)\n\t\tos=-sysv4\n\t\t;;\n\t-unixware*)\n\t\tos=-sysv4.2uw\n\t\t;;\n\t-gnu/linux*)\n\t\tos=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`\n\t\t;;\n\t# First accept the basic system types.\n\t# The portable systems comes first.\n\t# Each alternative MUST END IN A *, to match a version number.\n\t# -sysv* is not here because it comes later, after sysvr4.\n\t-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \\\n\t      | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\\\n\t      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \\\n\t      | -sym* | -kopensolaris* | -plan9* \\\n\t      | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \\\n\t      | -aos* | -aros* | -cloudabi* | -sortix* \\\n\t      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \\\n\t      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \\\n\t      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \\\n\t      | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \\\n\t      | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \\\n\t      | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \\\n\t      | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \\\n\t      | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \\\n\t      | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \\\n\t      | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \\\n\t      | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \\\n\t      | -linux-newlib* | -linux-musl* | -linux-uclibc* \\\n\t      | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \\\n\t      | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \\\n\t      | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \\\n\t      | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \\\n\t      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \\\n\t      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \\\n\t      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \\\n\t      | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \\\n\t      | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox*)\n\t# Remember, each alternative MUST END IN *, to match a version number.\n\t\t;;\n\t-qnx*)\n\t\tcase $basic_machine in\n\t\t    x86-* | i*86-*)\n\t\t\t;;\n\t\t    *)\n\t\t\tos=-nto$os\n\t\t\t;;\n\t\tesac\n\t\t;;\n\t-nto-qnx*)\n\t\t;;\n\t-nto*)\n\t\tos=`echo $os | sed -e 's|nto|nto-qnx|'`\n\t\t;;\n\t-sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \\\n\t      | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \\\n\t      | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)\n\t\t;;\n\t-mac*)\n\t\tos=`echo $os | sed -e 's|mac|macos|'`\n\t\t;;\n\t-linux-dietlibc)\n\t\tos=-linux-dietlibc\n\t\t;;\n\t-linux*)\n\t\tos=`echo $os | sed -e 's|linux|linux-gnu|'`\n\t\t;;\n\t-sunos5*)\n\t\tos=`echo $os | sed -e 's|sunos5|solaris2|'`\n\t\t;;\n\t-sunos6*)\n\t\tos=`echo $os | sed -e 's|sunos6|solaris3|'`\n\t\t;;\n\t-opened*)\n\t\tos=-openedition\n\t\t;;\n\t-os400*)\n\t\tos=-os400\n\t\t;;\n\t-wince*)\n\t\tos=-wince\n\t\t;;\n\t-osfrose*)\n\t\tos=-osfrose\n\t\t;;\n\t-osf*)\n\t\tos=-osf\n\t\t;;\n\t-utek*)\n\t\tos=-bsd\n\t\t;;\n\t-dynix*)\n\t\tos=-bsd\n\t\t;;\n\t-acis*)\n\t\tos=-aos\n\t\t;;\n\t-atheos*)\n\t\tos=-atheos\n\t\t;;\n\t-syllable*)\n\t\tos=-syllable\n\t\t;;\n\t-386bsd)\n\t\tos=-bsd\n\t\t;;\n\t-ctix* | -uts*)\n\t\tos=-sysv\n\t\t;;\n\t-nova*)\n\t\tos=-rtmk-nova\n\t\t;;\n\t-ns2 )\n\t\tos=-nextstep2\n\t\t;;\n\t-nsk*)\n\t\tos=-nsk\n\t\t;;\n\t# Preserve the version number of sinix5.\n\t-sinix5.*)\n\t\tos=`echo $os | sed -e 's|sinix|sysv|'`\n\t\t;;\n\t-sinix*)\n\t\tos=-sysv4\n\t\t;;\n\t-tpf*)\n\t\tos=-tpf\n\t\t;;\n\t-triton*)\n\t\tos=-sysv3\n\t\t;;\n\t-oss*)\n\t\tos=-sysv3\n\t\t;;\n\t-svr4)\n\t\tos=-sysv4\n\t\t;;\n\t-svr3)\n\t\tos=-sysv3\n\t\t;;\n\t-sysvr4)\n\t\tos=-sysv4\n\t\t;;\n\t# This must come after -sysvr4.\n\t-sysv*)\n\t\t;;\n\t-ose*)\n\t\tos=-ose\n\t\t;;\n\t-es1800*)\n\t\tos=-ose\n\t\t;;\n\t-xenix)\n\t\tos=-xenix\n\t\t;;\n\t-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)\n\t\tos=-mint\n\t\t;;\n\t-aros*)\n\t\tos=-aros\n\t\t;;\n\t-zvmoe)\n\t\tos=-zvmoe\n\t\t;;\n\t-dicos*)\n\t\tos=-dicos\n\t\t;;\n\t-nacl*)\n\t\t;;\n\t-ios)\n\t\t;;\n\t-none)\n\t\t;;\n\t*)\n\t\t# Get rid of the `-' at the beginning of $os.\n\t\tos=`echo $os | sed 's/[^-]*-//'`\n\t\techo Invalid configuration \\`$1\\': system \\`$os\\' not recognized 1>&2\n\t\texit 1\n\t\t;;\nesac\nelse\n\n# Here we handle the default operating systems that come with various machines.\n# The value should be what the vendor currently ships out the door with their\n# machine or put another way, the most popular os provided with the machine.\n\n# Note that if you're going to try to match \"-MANUFACTURER\" here (say,\n# \"-sun\"), then you have to tell the case statement up towards the top\n# that MANUFACTURER isn't an operating system.  Otherwise, code above\n# will signal an error saying that MANUFACTURER isn't an operating\n# system, and we'll never get to this point.\n\ncase $basic_machine in\n\tscore-*)\n\t\tos=-elf\n\t\t;;\n\tspu-*)\n\t\tos=-elf\n\t\t;;\n\t*-acorn)\n\t\tos=-riscix1.2\n\t\t;;\n\tarm*-rebel)\n\t\tos=-linux\n\t\t;;\n\tarm*-semi)\n\t\tos=-aout\n\t\t;;\n\tc4x-* | tic4x-*)\n\t\tos=-coff\n\t\t;;\n\tc8051-*)\n\t\tos=-elf\n\t\t;;\n\thexagon-*)\n\t\tos=-elf\n\t\t;;\n\ttic54x-*)\n\t\tos=-coff\n\t\t;;\n\ttic55x-*)\n\t\tos=-coff\n\t\t;;\n\ttic6x-*)\n\t\tos=-coff\n\t\t;;\n\t# This must come before the *-dec entry.\n\tpdp10-*)\n\t\tos=-tops20\n\t\t;;\n\tpdp11-*)\n\t\tos=-none\n\t\t;;\n\t*-dec | vax-*)\n\t\tos=-ultrix4.2\n\t\t;;\n\tm68*-apollo)\n\t\tos=-domain\n\t\t;;\n\ti386-sun)\n\t\tos=-sunos4.0.2\n\t\t;;\n\tm68000-sun)\n\t\tos=-sunos3\n\t\t;;\n\tm68*-cisco)\n\t\tos=-aout\n\t\t;;\n\tmep-*)\n\t\tos=-elf\n\t\t;;\n\tmips*-cisco)\n\t\tos=-elf\n\t\t;;\n\tmips*-*)\n\t\tos=-elf\n\t\t;;\n\tor32-*)\n\t\tos=-coff\n\t\t;;\n\t*-tti)\t# must be before sparc entry or we get the wrong os.\n\t\tos=-sysv3\n\t\t;;\n\tsparc-* | *-sun)\n\t\tos=-sunos4.1.1\n\t\t;;\n\tpru-*)\n\t\tos=-elf\n\t\t;;\n\t*-be)\n\t\tos=-beos\n\t\t;;\n\t*-haiku)\n\t\tos=-haiku\n\t\t;;\n\t*-ibm)\n\t\tos=-aix\n\t\t;;\n\t*-knuth)\n\t\tos=-mmixware\n\t\t;;\n\t*-wec)\n\t\tos=-proelf\n\t\t;;\n\t*-winbond)\n\t\tos=-proelf\n\t\t;;\n\t*-oki)\n\t\tos=-proelf\n\t\t;;\n\t*-hp)\n\t\tos=-hpux\n\t\t;;\n\t*-hitachi)\n\t\tos=-hiux\n\t\t;;\n\ti860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)\n\t\tos=-sysv\n\t\t;;\n\t*-cbm)\n\t\tos=-amigaos\n\t\t;;\n\t*-dg)\n\t\tos=-dgux\n\t\t;;\n\t*-dolphin)\n\t\tos=-sysv3\n\t\t;;\n\tm68k-ccur)\n\t\tos=-rtu\n\t\t;;\n\tm88k-omron*)\n\t\tos=-luna\n\t\t;;\n\t*-next )\n\t\tos=-nextstep\n\t\t;;\n\t*-sequent)\n\t\tos=-ptx\n\t\t;;\n\t*-crds)\n\t\tos=-unos\n\t\t;;\n\t*-ns)\n\t\tos=-genix\n\t\t;;\n\ti370-*)\n\t\tos=-mvs\n\t\t;;\n\t*-next)\n\t\tos=-nextstep3\n\t\t;;\n\t*-gould)\n\t\tos=-sysv\n\t\t;;\n\t*-highlevel)\n\t\tos=-bsd\n\t\t;;\n\t*-encore)\n\t\tos=-bsd\n\t\t;;\n\t*-sgi)\n\t\tos=-irix\n\t\t;;\n\t*-siemens)\n\t\tos=-sysv4\n\t\t;;\n\t*-masscomp)\n\t\tos=-rtu\n\t\t;;\n\tf30[01]-fujitsu | f700-fujitsu)\n\t\tos=-uxpv\n\t\t;;\n\t*-rom68k)\n\t\tos=-coff\n\t\t;;\n\t*-*bug)\n\t\tos=-coff\n\t\t;;\n\t*-apple)\n\t\tos=-macos\n\t\t;;\n\t*-atari*)\n\t\tos=-mint\n\t\t;;\n\t*)\n\t\tos=-none\n\t\t;;\nesac\nfi\n\n# Here we handle the case where we know the os, and the CPU type, but not the\n# manufacturer.  We pick the logical manufacturer.\nvendor=unknown\ncase $basic_machine in\n\t*-unknown)\n\t\tcase $os in\n\t\t\t-riscix*)\n\t\t\t\tvendor=acorn\n\t\t\t\t;;\n\t\t\t-sunos*)\n\t\t\t\tvendor=sun\n\t\t\t\t;;\n\t\t\t-cnk*|-aix*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t-beos*)\n\t\t\t\tvendor=be\n\t\t\t\t;;\n\t\t\t-hpux*)\n\t\t\t\tvendor=hp\n\t\t\t\t;;\n\t\t\t-mpeix*)\n\t\t\t\tvendor=hp\n\t\t\t\t;;\n\t\t\t-hiux*)\n\t\t\t\tvendor=hitachi\n\t\t\t\t;;\n\t\t\t-unos*)\n\t\t\t\tvendor=crds\n\t\t\t\t;;\n\t\t\t-dgux*)\n\t\t\t\tvendor=dg\n\t\t\t\t;;\n\t\t\t-luna*)\n\t\t\t\tvendor=omron\n\t\t\t\t;;\n\t\t\t-genix*)\n\t\t\t\tvendor=ns\n\t\t\t\t;;\n\t\t\t-mvs* | -opened*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t-os400*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t-ptx*)\n\t\t\t\tvendor=sequent\n\t\t\t\t;;\n\t\t\t-tpf*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t-vxsim* | -vxworks* | -windiss*)\n\t\t\t\tvendor=wrs\n\t\t\t\t;;\n\t\t\t-aux*)\n\t\t\t\tvendor=apple\n\t\t\t\t;;\n\t\t\t-hms*)\n\t\t\t\tvendor=hitachi\n\t\t\t\t;;\n\t\t\t-mpw* | -macos*)\n\t\t\t\tvendor=apple\n\t\t\t\t;;\n\t\t\t-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)\n\t\t\t\tvendor=atari\n\t\t\t\t;;\n\t\t\t-vos*)\n\t\t\t\tvendor=stratus\n\t\t\t\t;;\n\t\tesac\n\t\tbasic_machine=`echo $basic_machine | sed \"s/unknown/$vendor/\"`\n\t\t;;\nesac\n\necho $basic_machine$os\nexit\n\n# Local variables:\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"timestamp='\"\n# time-stamp-format: \"%:y-%02m-%02d\"\n# time-stamp-end: \"'\"\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/build-aux/install-sh",
    "content": "#!/bin/sh\n# install - install a program, script, or datafile\n\nscriptversion=2013-12-25.23; # UTC\n\n# This originates from X11R5 (mit/util/scripts/install.sh), which was\n# later released in X11R6 (xc/config/util/install.sh) with the\n# following copyright and license.\n#\n# Copyright (C) 1994 X Consortium\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to\n# deal in the Software without restriction, including without limitation the\n# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n# sell copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in\n# all copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\n# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n#\n# Except as contained in this notice, the name of the X Consortium shall not\n# be used in advertising or otherwise to promote the sale, use or other deal-\n# ings in this Software without prior written authorization from the X Consor-\n# tium.\n#\n#\n# FSF changes to this file are in the public domain.\n#\n# Calling this script install-sh is preferred over install.sh, to prevent\n# 'make' implicit rules from creating a file called install from it\n# when there is no Makefile.\n#\n# This script is compatible with the BSD install script, but was written\n# from scratch.\n\ntab='\t'\nnl='\n'\nIFS=\" $tab$nl\"\n\n# Set DOITPROG to \"echo\" to test this script.\n\ndoit=${DOITPROG-}\ndoit_exec=${doit:-exec}\n\n# Put in absolute file names if you don't have them in your path;\n# or use environment vars.\n\nchgrpprog=${CHGRPPROG-chgrp}\nchmodprog=${CHMODPROG-chmod}\nchownprog=${CHOWNPROG-chown}\ncmpprog=${CMPPROG-cmp}\ncpprog=${CPPROG-cp}\nmkdirprog=${MKDIRPROG-mkdir}\nmvprog=${MVPROG-mv}\nrmprog=${RMPROG-rm}\nstripprog=${STRIPPROG-strip}\n\nposix_mkdir=\n\n# Desired mode of installed file.\nmode=0755\n\nchgrpcmd=\nchmodcmd=$chmodprog\nchowncmd=\nmvcmd=$mvprog\nrmcmd=\"$rmprog -f\"\nstripcmd=\n\nsrc=\ndst=\ndir_arg=\ndst_arg=\n\ncopy_on_change=false\nis_target_a_directory=possibly\n\nusage=\"\\\nUsage: $0 [OPTION]... [-T] SRCFILE DSTFILE\n   or: $0 [OPTION]... SRCFILES... DIRECTORY\n   or: $0 [OPTION]... -t DIRECTORY SRCFILES...\n   or: $0 [OPTION]... -d DIRECTORIES...\n\nIn the 1st form, copy SRCFILE to DSTFILE.\nIn the 2nd and 3rd, copy all SRCFILES to DIRECTORY.\nIn the 4th, create DIRECTORIES.\n\nOptions:\n     --help     display this help and exit.\n     --version  display version info and exit.\n\n  -c            (ignored)\n  -C            install only if different (preserve the last data modification time)\n  -d            create directories instead of installing files.\n  -g GROUP      $chgrpprog installed files to GROUP.\n  -m MODE       $chmodprog installed files to MODE.\n  -o USER       $chownprog installed files to USER.\n  -s            $stripprog installed files.\n  -t DIRECTORY  install into DIRECTORY.\n  -T            report an error if DSTFILE is a directory.\n\nEnvironment variables override the default commands:\n  CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG\n  RMPROG STRIPPROG\n\"\n\nwhile test $# -ne 0; do\n  case $1 in\n    -c) ;;\n\n    -C) copy_on_change=true;;\n\n    -d) dir_arg=true;;\n\n    -g) chgrpcmd=\"$chgrpprog $2\"\n        shift;;\n\n    --help) echo \"$usage\"; exit $?;;\n\n    -m) mode=$2\n        case $mode in\n          *' '* | *\"$tab\"* | *\"$nl\"* | *'*'* | *'?'* | *'['*)\n            echo \"$0: invalid mode: $mode\" >&2\n            exit 1;;\n        esac\n        shift;;\n\n    -o) chowncmd=\"$chownprog $2\"\n        shift;;\n\n    -s) stripcmd=$stripprog;;\n\n    -t)\n        is_target_a_directory=always\n        dst_arg=$2\n        # Protect names problematic for 'test' and other utilities.\n        case $dst_arg in\n          -* | [=\\(\\)!]) dst_arg=./$dst_arg;;\n        esac\n        shift;;\n\n    -T) is_target_a_directory=never;;\n\n    --version) echo \"$0 $scriptversion\"; exit $?;;\n\n    --) shift\n        break;;\n\n    -*) echo \"$0: invalid option: $1\" >&2\n        exit 1;;\n\n    *)  break;;\n  esac\n  shift\ndone\n\n# We allow the use of options -d and -T together, by making -d\n# take the precedence; this is for compatibility with GNU install.\n\nif test -n \"$dir_arg\"; then\n  if test -n \"$dst_arg\"; then\n    echo \"$0: target directory not allowed when installing a directory.\" >&2\n    exit 1\n  fi\nfi\n\nif test $# -ne 0 && test -z \"$dir_arg$dst_arg\"; then\n  # When -d is used, all remaining arguments are directories to create.\n  # When -t is used, the destination is already specified.\n  # Otherwise, the last argument is the destination.  Remove it from $@.\n  for arg\n  do\n    if test -n \"$dst_arg\"; then\n      # $@ is not empty: it contains at least $arg.\n      set fnord \"$@\" \"$dst_arg\"\n      shift # fnord\n    fi\n    shift # arg\n    dst_arg=$arg\n    # Protect names problematic for 'test' and other utilities.\n    case $dst_arg in\n      -* | [=\\(\\)!]) dst_arg=./$dst_arg;;\n    esac\n  done\nfi\n\nif test $# -eq 0; then\n  if test -z \"$dir_arg\"; then\n    echo \"$0: no input file specified.\" >&2\n    exit 1\n  fi\n  # It's OK to call 'install-sh -d' without argument.\n  # This can happen when creating conditional directories.\n  exit 0\nfi\n\nif test -z \"$dir_arg\"; then\n  if test $# -gt 1 || test \"$is_target_a_directory\" = always; then\n    if test ! -d \"$dst_arg\"; then\n      echo \"$0: $dst_arg: Is not a directory.\" >&2\n      exit 1\n    fi\n  fi\nfi\n\nif test -z \"$dir_arg\"; then\n  do_exit='(exit $ret); exit $ret'\n  trap \"ret=129; $do_exit\" 1\n  trap \"ret=130; $do_exit\" 2\n  trap \"ret=141; $do_exit\" 13\n  trap \"ret=143; $do_exit\" 15\n\n  # Set umask so as not to create temps with too-generous modes.\n  # However, 'strip' requires both read and write access to temps.\n  case $mode in\n    # Optimize common cases.\n    *644) cp_umask=133;;\n    *755) cp_umask=22;;\n\n    *[0-7])\n      if test -z \"$stripcmd\"; then\n        u_plus_rw=\n      else\n        u_plus_rw='% 200'\n      fi\n      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;\n    *)\n      if test -z \"$stripcmd\"; then\n        u_plus_rw=\n      else\n        u_plus_rw=,u+rw\n      fi\n      cp_umask=$mode$u_plus_rw;;\n  esac\nfi\n\nfor src\ndo\n  # Protect names problematic for 'test' and other utilities.\n  case $src in\n    -* | [=\\(\\)!]) src=./$src;;\n  esac\n\n  if test -n \"$dir_arg\"; then\n    dst=$src\n    dstdir=$dst\n    test -d \"$dstdir\"\n    dstdir_status=$?\n  else\n\n    # Waiting for this to be detected by the \"$cpprog $src $dsttmp\" command\n    # might cause directories to be created, which would be especially bad\n    # if $src (and thus $dsttmp) contains '*'.\n    if test ! -f \"$src\" && test ! -d \"$src\"; then\n      echo \"$0: $src does not exist.\" >&2\n      exit 1\n    fi\n\n    if test -z \"$dst_arg\"; then\n      echo \"$0: no destination specified.\" >&2\n      exit 1\n    fi\n    dst=$dst_arg\n\n    # If destination is a directory, append the input filename; won't work\n    # if double slashes aren't ignored.\n    if test -d \"$dst\"; then\n      if test \"$is_target_a_directory\" = never; then\n        echo \"$0: $dst_arg: Is a directory\" >&2\n        exit 1\n      fi\n      dstdir=$dst\n      dst=$dstdir/`basename \"$src\"`\n      dstdir_status=0\n    else\n      dstdir=`dirname \"$dst\"`\n      test -d \"$dstdir\"\n      dstdir_status=$?\n    fi\n  fi\n\n  obsolete_mkdir_used=false\n\n  if test $dstdir_status != 0; then\n    case $posix_mkdir in\n      '')\n        # Create intermediate dirs using mode 755 as modified by the umask.\n        # This is like FreeBSD 'install' as of 1997-10-28.\n        umask=`umask`\n        case $stripcmd.$umask in\n          # Optimize common cases.\n          *[2367][2367]) mkdir_umask=$umask;;\n          .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;\n\n          *[0-7])\n            mkdir_umask=`expr $umask + 22 \\\n              - $umask % 100 % 40 + $umask % 20 \\\n              - $umask % 10 % 4 + $umask % 2\n            `;;\n          *) mkdir_umask=$umask,go-w;;\n        esac\n\n        # With -d, create the new directory with the user-specified mode.\n        # Otherwise, rely on $mkdir_umask.\n        if test -n \"$dir_arg\"; then\n          mkdir_mode=-m$mode\n        else\n          mkdir_mode=\n        fi\n\n        posix_mkdir=false\n        case $umask in\n          *[123567][0-7][0-7])\n            # POSIX mkdir -p sets u+wx bits regardless of umask, which\n            # is incompatible with FreeBSD 'install' when (umask & 300) != 0.\n            ;;\n          *)\n            tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$\n            trap 'ret=$?; rmdir \"$tmpdir/d\" \"$tmpdir\" 2>/dev/null; exit $ret' 0\n\n            if (umask $mkdir_umask &&\n                exec $mkdirprog $mkdir_mode -p -- \"$tmpdir/d\") >/dev/null 2>&1\n            then\n              if test -z \"$dir_arg\" || {\n                   # Check for POSIX incompatibilities with -m.\n                   # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or\n                   # other-writable bit of parent directory when it shouldn't.\n                   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.\n                   ls_ld_tmpdir=`ls -ld \"$tmpdir\"`\n                   case $ls_ld_tmpdir in\n                     d????-?r-*) different_mode=700;;\n                     d????-?--*) different_mode=755;;\n                     *) false;;\n                   esac &&\n                   $mkdirprog -m$different_mode -p -- \"$tmpdir\" && {\n                     ls_ld_tmpdir_1=`ls -ld \"$tmpdir\"`\n                     test \"$ls_ld_tmpdir\" = \"$ls_ld_tmpdir_1\"\n                   }\n                 }\n              then posix_mkdir=:\n              fi\n              rmdir \"$tmpdir/d\" \"$tmpdir\"\n            else\n              # Remove any dirs left behind by ancient mkdir implementations.\n              rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null\n            fi\n            trap '' 0;;\n        esac;;\n    esac\n\n    if\n      $posix_mkdir && (\n        umask $mkdir_umask &&\n        $doit_exec $mkdirprog $mkdir_mode -p -- \"$dstdir\"\n      )\n    then :\n    else\n\n      # The umask is ridiculous, or mkdir does not conform to POSIX,\n      # or it failed possibly due to a race condition.  Create the\n      # directory the slow way, step by step, checking for races as we go.\n\n      case $dstdir in\n        /*) prefix='/';;\n        [-=\\(\\)!]*) prefix='./';;\n        *)  prefix='';;\n      esac\n\n      oIFS=$IFS\n      IFS=/\n      set -f\n      set fnord $dstdir\n      shift\n      set +f\n      IFS=$oIFS\n\n      prefixes=\n\n      for d\n      do\n        test X\"$d\" = X && continue\n\n        prefix=$prefix$d\n        if test -d \"$prefix\"; then\n          prefixes=\n        else\n          if $posix_mkdir; then\n            (umask=$mkdir_umask &&\n             $doit_exec $mkdirprog $mkdir_mode -p -- \"$dstdir\") && break\n            # Don't fail if two instances are running concurrently.\n            test -d \"$prefix\" || exit 1\n          else\n            case $prefix in\n              *\\'*) qprefix=`echo \"$prefix\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;;\n              *) qprefix=$prefix;;\n            esac\n            prefixes=\"$prefixes '$qprefix'\"\n          fi\n        fi\n        prefix=$prefix/\n      done\n\n      if test -n \"$prefixes\"; then\n        # Don't fail if two instances are running concurrently.\n        (umask $mkdir_umask &&\n         eval \"\\$doit_exec \\$mkdirprog $prefixes\") ||\n          test -d \"$dstdir\" || exit 1\n        obsolete_mkdir_used=true\n      fi\n    fi\n  fi\n\n  if test -n \"$dir_arg\"; then\n    { test -z \"$chowncmd\" || $doit $chowncmd \"$dst\"; } &&\n    { test -z \"$chgrpcmd\" || $doit $chgrpcmd \"$dst\"; } &&\n    { test \"$obsolete_mkdir_used$chowncmd$chgrpcmd\" = false ||\n      test -z \"$chmodcmd\" || $doit $chmodcmd $mode \"$dst\"; } || exit 1\n  else\n\n    # Make a couple of temp file names in the proper directory.\n    dsttmp=$dstdir/_inst.$$_\n    rmtmp=$dstdir/_rm.$$_\n\n    # Trap to clean up those temp files at exit.\n    trap 'ret=$?; rm -f \"$dsttmp\" \"$rmtmp\" && exit $ret' 0\n\n    # Copy the file name to the temp name.\n    (umask $cp_umask && $doit_exec $cpprog \"$src\" \"$dsttmp\") &&\n\n    # and set any options; do chmod last to preserve setuid bits.\n    #\n    # If any of these fail, we abort the whole thing.  If we want to\n    # ignore errors from any of these, just make sure not to ignore\n    # errors from the above \"$doit $cpprog $src $dsttmp\" command.\n    #\n    { test -z \"$chowncmd\" || $doit $chowncmd \"$dsttmp\"; } &&\n    { test -z \"$chgrpcmd\" || $doit $chgrpcmd \"$dsttmp\"; } &&\n    { test -z \"$stripcmd\" || $doit $stripcmd \"$dsttmp\"; } &&\n    { test -z \"$chmodcmd\" || $doit $chmodcmd $mode \"$dsttmp\"; } &&\n\n    # If -C, don't bother to copy if it wouldn't change the file.\n    if $copy_on_change &&\n       old=`LC_ALL=C ls -dlL \"$dst\"     2>/dev/null` &&\n       new=`LC_ALL=C ls -dlL \"$dsttmp\"  2>/dev/null` &&\n       set -f &&\n       set X $old && old=:$2:$4:$5:$6 &&\n       set X $new && new=:$2:$4:$5:$6 &&\n       set +f &&\n       test \"$old\" = \"$new\" &&\n       $cmpprog \"$dst\" \"$dsttmp\" >/dev/null 2>&1\n    then\n      rm -f \"$dsttmp\"\n    else\n      # Rename the file to the real destination.\n      $doit $mvcmd -f \"$dsttmp\" \"$dst\" 2>/dev/null ||\n\n      # The rename failed, perhaps because mv can't rename something else\n      # to itself, or perhaps because mv is so ancient that it does not\n      # support -f.\n      {\n        # Now remove or move aside any old file at destination location.\n        # We try this two ways since rm can't unlink itself on some\n        # systems and the destination file might be busy for other\n        # reasons.  In this case, the final cleanup might fail but the new\n        # file should still install successfully.\n        {\n          test ! -f \"$dst\" ||\n          $doit $rmcmd -f \"$dst\" 2>/dev/null ||\n          { $doit $mvcmd -f \"$dst\" \"$rmtmp\" 2>/dev/null &&\n            { $doit $rmcmd -f \"$rmtmp\" 2>/dev/null; :; }\n          } ||\n          { echo \"$0: cannot unlink or rename $dst\" >&2\n            (exit 1); exit 1\n          }\n        } &&\n\n        # Now rename the file to the real destination.\n        $doit $mvcmd \"$dsttmp\" \"$dst\"\n      }\n    fi || exit 1\n\n    trap '' 0\n  fi\ndone\n\n# Local variables:\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"scriptversion=\"\n# time-stamp-format: \"%:y-%02m-%02d.%02H\"\n# time-stamp-time-zone: \"UTC\"\n# time-stamp-end: \"; # UTC\"\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/build-aux/ltmain.sh",
    "content": "#! /bin/sh\n## DO NOT EDIT - This file generated from ./build-aux/ltmain.in\n##               by inline-source v2014-01-03.01\n\n# libtool (GNU libtool) 2.4.6\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996\n\n# Copyright (C) 1996-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License,\n# if you distribute this file as part of a program or library that\n# is built using GNU Libtool, you may include this file under the\n# same distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\nPROGRAM=libtool\nPACKAGE=libtool\nVERSION=2.4.6\npackage_revision=2.4.6\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# Run './libtool --help' for help with using this script from the\n# command line.\n\n\n## ------------------------------- ##\n## User overridable command paths. ##\n## ------------------------------- ##\n\n# After configure completes, it has a better idea of some of the\n# shell tools we need than the defaults used by the functions shared\n# with bootstrap, so set those here where they can still be over-\n# ridden by the user, but otherwise take precedence.\n\n: ${AUTOCONF=\"autoconf\"}\n: ${AUTOMAKE=\"automake\"}\n\n\n## -------------------------- ##\n## Source external libraries. ##\n## -------------------------- ##\n\n# Much of our low-level functionality needs to be sourced from external\n# libraries, which are installed to $pkgauxdir.\n\n# Set a version string for this script.\nscriptversion=2015-01-20.17; # UTC\n\n# General shell script boiler plate, and helper functions.\n# Written by Gary V. Vaughan, 2004\n\n# Copyright (C) 2004-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n\n# As a special exception to the GNU General Public License, if you distribute\n# this file as part of a program or library that is built using GNU Libtool,\n# you may include this file under the same distribution terms that you use\n# for the rest of that program.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU\n# General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program. If not, see <http://www.gnu.org/licenses/>.\n\n# Please report bugs or propose patches to gary@gnu.org.\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# Evaluate this file near the top of your script to gain access to\n# the functions and variables defined here:\n#\n#   . `echo \"$0\" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh\n#\n# If you need to override any of the default environment variable\n# settings, do that before evaluating this file.\n\n\n## -------------------- ##\n## Shell normalisation. ##\n## -------------------- ##\n\n# Some shells need a little help to be as Bourne compatible as possible.\n# Before doing anything else, make sure all that help has been provided!\n\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac\nfi\n\n# NLS nuisances: We save the old values in case they are required later.\n_G_user_locale=\n_G_safe_locale=\nfor _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\ndo\n  eval \"if test set = \\\"\\${$_G_var+set}\\\"; then\n          save_$_G_var=\\$$_G_var\n          $_G_var=C\n\t  export $_G_var\n\t  _G_user_locale=\\\"$_G_var=\\\\\\$save_\\$_G_var; \\$_G_user_locale\\\"\n\t  _G_safe_locale=\\\"$_G_var=C; \\$_G_safe_locale\\\"\n\tfi\"\ndone\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n# Make sure IFS has a sensible default\nsp=' '\nnl='\n'\nIFS=\"$sp\t$nl\"\n\n# There are apparently some retarded systems that use ';' as a PATH separator!\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n\n## ------------------------- ##\n## Locate command utilities. ##\n## ------------------------- ##\n\n\n# func_executable_p FILE\n# ----------------------\n# Check that FILE is an executable regular file.\nfunc_executable_p ()\n{\n    test -f \"$1\" && test -x \"$1\"\n}\n\n\n# func_path_progs PROGS_LIST CHECK_FUNC [PATH]\n# --------------------------------------------\n# Search for either a program that responds to --version with output\n# containing \"GNU\", or else returned by CHECK_FUNC otherwise, by\n# trying all the directories in PATH with each of the elements of\n# PROGS_LIST.\n#\n# CHECK_FUNC should accept the path to a candidate program, and\n# set $func_check_prog_result if it truncates its output less than\n# $_G_path_prog_max characters.\nfunc_path_progs ()\n{\n    _G_progs_list=$1\n    _G_check_func=$2\n    _G_PATH=${3-\"$PATH\"}\n\n    _G_path_prog_max=0\n    _G_path_prog_found=false\n    _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:}\n    for _G_dir in $_G_PATH; do\n      IFS=$_G_save_IFS\n      test -z \"$_G_dir\" && _G_dir=.\n      for _G_prog_name in $_G_progs_list; do\n        for _exeext in '' .EXE; do\n          _G_path_prog=$_G_dir/$_G_prog_name$_exeext\n          func_executable_p \"$_G_path_prog\" || continue\n          case `\"$_G_path_prog\" --version 2>&1` in\n            *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;;\n            *)     $_G_check_func $_G_path_prog\n\t\t   func_path_progs_result=$func_check_prog_result\n\t\t   ;;\n          esac\n          $_G_path_prog_found && break 3\n        done\n      done\n    done\n    IFS=$_G_save_IFS\n    test -z \"$func_path_progs_result\" && {\n      echo \"no acceptable sed could be found in \\$PATH\" >&2\n      exit 1\n    }\n}\n\n\n# We want to be able to use the functions in this file before configure\n# has figured out where the best binaries are kept, which means we have\n# to search for them ourselves - except when the results are already set\n# where we skip the searches.\n\n# Unless the user overrides by setting SED, search the path for either GNU\n# sed, or the sed that truncates its output the least.\ntest -z \"$SED\" && {\n  _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/\n  for _G_i in 1 2 3 4 5 6 7; do\n    _G_sed_script=$_G_sed_script$nl$_G_sed_script\n  done\n  echo \"$_G_sed_script\" 2>/dev/null | sed 99q >conftest.sed\n  _G_sed_script=\n\n  func_check_prog_sed ()\n  {\n    _G_path_prog=$1\n\n    _G_count=0\n    printf 0123456789 >conftest.in\n    while :\n    do\n      cat conftest.in conftest.in >conftest.tmp\n      mv conftest.tmp conftest.in\n      cp conftest.in conftest.nl\n      echo '' >> conftest.nl\n      \"$_G_path_prog\" -f conftest.sed <conftest.nl >conftest.out 2>/dev/null || break\n      diff conftest.out conftest.nl >/dev/null 2>&1 || break\n      _G_count=`expr $_G_count + 1`\n      if test \"$_G_count\" -gt \"$_G_path_prog_max\"; then\n        # Best one so far, save it but keep looking for a better one\n        func_check_prog_result=$_G_path_prog\n        _G_path_prog_max=$_G_count\n      fi\n      # 10*(2^10) chars as input seems more than enough\n      test 10 -lt \"$_G_count\" && break\n    done\n    rm -f conftest.in conftest.tmp conftest.nl conftest.out\n  }\n\n  func_path_progs \"sed gsed\" func_check_prog_sed $PATH:/usr/xpg4/bin\n  rm -f conftest.sed\n  SED=$func_path_progs_result\n}\n\n\n# Unless the user overrides by setting GREP, search the path for either GNU\n# grep, or the grep that truncates its output the least.\ntest -z \"$GREP\" && {\n  func_check_prog_grep ()\n  {\n    _G_path_prog=$1\n\n    _G_count=0\n    _G_path_prog_max=0\n    printf 0123456789 >conftest.in\n    while :\n    do\n      cat conftest.in conftest.in >conftest.tmp\n      mv conftest.tmp conftest.in\n      cp conftest.in conftest.nl\n      echo 'GREP' >> conftest.nl\n      \"$_G_path_prog\" -e 'GREP$' -e '-(cannot match)-' <conftest.nl >conftest.out 2>/dev/null || break\n      diff conftest.out conftest.nl >/dev/null 2>&1 || break\n      _G_count=`expr $_G_count + 1`\n      if test \"$_G_count\" -gt \"$_G_path_prog_max\"; then\n        # Best one so far, save it but keep looking for a better one\n        func_check_prog_result=$_G_path_prog\n        _G_path_prog_max=$_G_count\n      fi\n      # 10*(2^10) chars as input seems more than enough\n      test 10 -lt \"$_G_count\" && break\n    done\n    rm -f conftest.in conftest.tmp conftest.nl conftest.out\n  }\n\n  func_path_progs \"grep ggrep\" func_check_prog_grep $PATH:/usr/xpg4/bin\n  GREP=$func_path_progs_result\n}\n\n\n## ------------------------------- ##\n## User overridable command paths. ##\n## ------------------------------- ##\n\n# All uppercase variable names are used for environment variables.  These\n# variables can be overridden by the user before calling a script that\n# uses them if a suitable command of that name is not already available\n# in the command search PATH.\n\n: ${CP=\"cp -f\"}\n: ${ECHO=\"printf %s\\n\"}\n: ${EGREP=\"$GREP -E\"}\n: ${FGREP=\"$GREP -F\"}\n: ${LN_S=\"ln -s\"}\n: ${MAKE=\"make\"}\n: ${MKDIR=\"mkdir\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n: ${SHELL=\"${CONFIG_SHELL-/bin/sh}\"}\n\n\n## -------------------- ##\n## Useful sed snippets. ##\n## -------------------- ##\n\nsed_dirname='s|/[^/]*$||'\nsed_basename='s|^.*/||'\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='s|\\([`\"$\\\\]\\)|\\\\\\1|g'\n\n# Same as above, but do not quote variable references.\nsed_double_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\n\n# Sed substitution that turns a string into a regex matching for the\n# string literally.\nsed_make_literal_regex='s|[].[^$\\\\*\\/]|\\\\&|g'\n\n# Sed substitution that converts a w32 file name or path\n# that contains forward slashes, into one that contains\n# (escaped) backslashes.  A very naive implementation.\nsed_naive_backslashify='s|\\\\\\\\*|\\\\|g;s|/|\\\\|g;s|\\\\|\\\\\\\\|g'\n\n# Re-'\\' parameter expansions in output of sed_double_quote_subst that\n# were '\\'-ed in input to the same.  If an odd number of '\\' preceded a\n# '$' in input to sed_double_quote_subst, that '$' was protected from\n# expansion.  Since each input '\\' is now two '\\'s, look for any number\n# of runs of four '\\'s followed by two '\\'s and then a '$'.  '\\' that '$'.\n_G_bs='\\\\'\n_G_bs2='\\\\\\\\'\n_G_bs4='\\\\\\\\\\\\\\\\'\n_G_dollar='\\$'\nsed_double_backslash=\"\\\n  s/$_G_bs4/&\\\\\n/g\n  s/^$_G_bs2$_G_dollar/$_G_bs&/\n  s/\\\\([^$_G_bs]\\\\)$_G_bs2$_G_dollar/\\\\1$_G_bs2$_G_bs$_G_dollar/g\n  s/\\n//g\"\n\n\n## ----------------- ##\n## Global variables. ##\n## ----------------- ##\n\n# Except for the global variables explicitly listed below, the following\n# functions in the '^func_' namespace, and the '^require_' namespace\n# variables initialised in the 'Resource management' section, sourcing\n# this file will not pollute your global namespace with anything\n# else. There's no portable way to scope variables in Bourne shell\n# though, so actually running these functions will sometimes place\n# results into a variable named after the function, and often use\n# temporary variables in the '^_G_' namespace. If you are careful to\n# avoid using those namespaces casually in your sourcing script, things\n# should continue to work as you expect. And, of course, you can freely\n# overwrite any of the functions or variables defined here before\n# calling anything to customize them.\n\nEXIT_SUCCESS=0\nEXIT_FAILURE=1\nEXIT_MISMATCH=63  # $? = 63 is used to indicate version mismatch to missing.\nEXIT_SKIP=77\t  # $? = 77 is used to indicate a skipped test to automake.\n\n# Allow overriding, eg assuming that you follow the convention of\n# putting '$debug_cmd' at the start of all your functions, you can get\n# bash to show function call trace with:\n#\n#    debug_cmd='eval echo \"${FUNCNAME[0]} $*\" >&2' bash your-script-name\ndebug_cmd=${debug_cmd-\":\"}\nexit_cmd=:\n\n# By convention, finish your script with:\n#\n#    exit $exit_status\n#\n# so that you can set exit_status to non-zero if you want to indicate\n# something went wrong during execution without actually bailing out at\n# the point of failure.\nexit_status=$EXIT_SUCCESS\n\n# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh\n# is ksh but when the shell is invoked as \"sh\" and the current value of\n# the _XPG environment variable is not equal to 1 (one), the special\n# positional parameter $0, within a function call, is the name of the\n# function.\nprogpath=$0\n\n# The name of this program.\nprogname=`$ECHO \"$progpath\" |$SED \"$sed_basename\"`\n\n# Make sure we have an absolute progpath for reexecution:\ncase $progpath in\n  [\\\\/]*|[A-Za-z]:\\\\*) ;;\n  *[\\\\/]*)\n     progdir=`$ECHO \"$progpath\" |$SED \"$sed_dirname\"`\n     progdir=`cd \"$progdir\" && pwd`\n     progpath=$progdir/$progname\n     ;;\n  *)\n     _G_IFS=$IFS\n     IFS=${PATH_SEPARATOR-:}\n     for progdir in $PATH; do\n       IFS=$_G_IFS\n       test -x \"$progdir/$progname\" && break\n     done\n     IFS=$_G_IFS\n     test -n \"$progdir\" || progdir=`pwd`\n     progpath=$progdir/$progname\n     ;;\nesac\n\n\n## ----------------- ##\n## Standard options. ##\n## ----------------- ##\n\n# The following options affect the operation of the functions defined\n# below, and should be set appropriately depending on run-time para-\n# meters passed on the command line.\n\nopt_dry_run=false\nopt_quiet=false\nopt_verbose=false\n\n# Categories 'all' and 'none' are always available.  Append any others\n# you will pass as the first argument to func_warning from your own\n# code.\nwarning_categories=\n\n# By default, display warnings according to 'opt_warning_types'.  Set\n# 'warning_func'  to ':' to elide all warnings, or func_fatal_error to\n# treat the next displayed warning as a fatal error.\nwarning_func=func_warn_and_continue\n\n# Set to 'all' to display all warnings, 'none' to suppress all\n# warnings, or a space delimited list of some subset of\n# 'warning_categories' to display only the listed warnings.\nopt_warning_types=all\n\n\n## -------------------- ##\n## Resource management. ##\n## -------------------- ##\n\n# This section contains definitions for functions that each ensure a\n# particular resource (a file, or a non-empty configuration variable for\n# example) is available, and if appropriate to extract default values\n# from pertinent package files. Call them using their associated\n# 'require_*' variable to ensure that they are executed, at most, once.\n#\n# It's entirely deliberate that calling these functions can set\n# variables that don't obey the namespace limitations obeyed by the rest\n# of this file, in order that that they be as useful as possible to\n# callers.\n\n\n# require_term_colors\n# -------------------\n# Allow display of bold text on terminals that support it.\nrequire_term_colors=func_require_term_colors\nfunc_require_term_colors ()\n{\n    $debug_cmd\n\n    test -t 1 && {\n      # COLORTERM and USE_ANSI_COLORS environment variables take\n      # precedence, because most terminfo databases neglect to describe\n      # whether color sequences are supported.\n      test -n \"${COLORTERM+set}\" && : ${USE_ANSI_COLORS=\"1\"}\n\n      if test 1 = \"$USE_ANSI_COLORS\"; then\n        # Standard ANSI escape sequences\n        tc_reset='\u001b[0m'\n        tc_bold='\u001b[1m';   tc_standout='\u001b[7m'\n        tc_red='\u001b[31m';   tc_green='\u001b[32m'\n        tc_blue='\u001b[34m';  tc_cyan='\u001b[36m'\n      else\n        # Otherwise trust the terminfo database after all.\n        test -n \"`tput sgr0 2>/dev/null`\" && {\n          tc_reset=`tput sgr0`\n          test -n \"`tput bold 2>/dev/null`\" && tc_bold=`tput bold`\n          tc_standout=$tc_bold\n          test -n \"`tput smso 2>/dev/null`\" && tc_standout=`tput smso`\n          test -n \"`tput setaf 1 2>/dev/null`\" && tc_red=`tput setaf 1`\n          test -n \"`tput setaf 2 2>/dev/null`\" && tc_green=`tput setaf 2`\n          test -n \"`tput setaf 4 2>/dev/null`\" && tc_blue=`tput setaf 4`\n          test -n \"`tput setaf 5 2>/dev/null`\" && tc_cyan=`tput setaf 5`\n        }\n      fi\n    }\n\n    require_term_colors=:\n}\n\n\n## ----------------- ##\n## Function library. ##\n## ----------------- ##\n\n# This section contains a variety of useful functions to call in your\n# scripts. Take note of the portable wrappers for features provided by\n# some modern shells, which will fall back to slower equivalents on\n# less featureful shells.\n\n\n# func_append VAR VALUE\n# ---------------------\n# Append VALUE onto the existing contents of VAR.\n\n  # We should try to minimise forks, especially on Windows where they are\n  # unreasonably slow, so skip the feature probes when bash or zsh are\n  # being used:\n  if test set = \"${BASH_VERSION+set}${ZSH_VERSION+set}\"; then\n    : ${_G_HAVE_ARITH_OP=\"yes\"}\n    : ${_G_HAVE_XSI_OPS=\"yes\"}\n    # The += operator was introduced in bash 3.1\n    case $BASH_VERSION in\n      [12].* | 3.0 | 3.0*) ;;\n      *)\n        : ${_G_HAVE_PLUSEQ_OP=\"yes\"}\n        ;;\n    esac\n  fi\n\n  # _G_HAVE_PLUSEQ_OP\n  # Can be empty, in which case the shell is probed, \"yes\" if += is\n  # useable or anything else if it does not work.\n  test -z \"$_G_HAVE_PLUSEQ_OP\" \\\n    && (eval 'x=a; x+=\" b\"; test \"a b\" = \"$x\"') 2>/dev/null \\\n    && _G_HAVE_PLUSEQ_OP=yes\n\nif test yes = \"$_G_HAVE_PLUSEQ_OP\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_append ()\n  {\n    $debug_cmd\n\n    eval \"$1+=\\$2\"\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_append ()\n  {\n    $debug_cmd\n\n    eval \"$1=\\$$1\\$2\"\n  }\nfi\n\n\n# func_append_quoted VAR VALUE\n# ----------------------------\n# Quote VALUE and append to the end of shell variable VAR, separated\n# by a space.\nif test yes = \"$_G_HAVE_PLUSEQ_OP\"; then\n  eval 'func_append_quoted ()\n  {\n    $debug_cmd\n\n    func_quote_for_eval \"$2\"\n    eval \"$1+=\\\\ \\$func_quote_for_eval_result\"\n  }'\nelse\n  func_append_quoted ()\n  {\n    $debug_cmd\n\n    func_quote_for_eval \"$2\"\n    eval \"$1=\\$$1\\\\ \\$func_quote_for_eval_result\"\n  }\nfi\n\n\n# func_append_uniq VAR VALUE\n# --------------------------\n# Append unique VALUE onto the existing contents of VAR, assuming\n# entries are delimited by the first character of VALUE.  For example:\n#\n#   func_append_uniq options \" --another-option option-argument\"\n#\n# will only append to $options if \" --another-option option-argument \"\n# is not already present somewhere in $options already (note spaces at\n# each end implied by leading space in second argument).\nfunc_append_uniq ()\n{\n    $debug_cmd\n\n    eval _G_current_value='`$ECHO $'$1'`'\n    _G_delim=`expr \"$2\" : '\\(.\\)'`\n\n    case $_G_delim$_G_current_value$_G_delim in\n      *\"$2$_G_delim\"*) ;;\n      *) func_append \"$@\" ;;\n    esac\n}\n\n\n# func_arith TERM...\n# ------------------\n# Set func_arith_result to the result of evaluating TERMs.\n  test -z \"$_G_HAVE_ARITH_OP\" \\\n    && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \\\n    && _G_HAVE_ARITH_OP=yes\n\nif test yes = \"$_G_HAVE_ARITH_OP\"; then\n  eval 'func_arith ()\n  {\n    $debug_cmd\n\n    func_arith_result=$(( $* ))\n  }'\nelse\n  func_arith ()\n  {\n    $debug_cmd\n\n    func_arith_result=`expr \"$@\"`\n  }\nfi\n\n\n# func_basename FILE\n# ------------------\n# Set func_basename_result to FILE with everything up to and including\n# the last / stripped.\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  # If this shell supports suffix pattern removal, then use it to avoid\n  # forking. Hide the definitions single quotes in case the shell chokes\n  # on unsupported syntax...\n  _b='func_basename_result=${1##*/}'\n  _d='case $1 in\n        */*) func_dirname_result=${1%/*}$2 ;;\n        *  ) func_dirname_result=$3        ;;\n      esac'\n\nelse\n  # ...otherwise fall back to using sed.\n  _b='func_basename_result=`$ECHO \"$1\" |$SED \"$sed_basename\"`'\n  _d='func_dirname_result=`$ECHO \"$1\"  |$SED \"$sed_dirname\"`\n      if test \"X$func_dirname_result\" = \"X$1\"; then\n        func_dirname_result=$3\n      else\n        func_append func_dirname_result \"$2\"\n      fi'\nfi\n\neval 'func_basename ()\n{\n    $debug_cmd\n\n    '\"$_b\"'\n}'\n\n\n# func_dirname FILE APPEND NONDIR_REPLACEMENT\n# -------------------------------------------\n# Compute the dirname of FILE.  If nonempty, add APPEND to the result,\n# otherwise set result to NONDIR_REPLACEMENT.\neval 'func_dirname ()\n{\n    $debug_cmd\n\n    '\"$_d\"'\n}'\n\n\n# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT\n# --------------------------------------------------------\n# Perform func_basename and func_dirname in a single function\n# call:\n#   dirname:  Compute the dirname of FILE.  If nonempty,\n#             add APPEND to the result, otherwise set result\n#             to NONDIR_REPLACEMENT.\n#             value returned in \"$func_dirname_result\"\n#   basename: Compute filename of FILE.\n#             value retuned in \"$func_basename_result\"\n# For efficiency, we do not delegate to the functions above but instead\n# duplicate the functionality here.\neval 'func_dirname_and_basename ()\n{\n    $debug_cmd\n\n    '\"$_b\"'\n    '\"$_d\"'\n}'\n\n\n# func_echo ARG...\n# ----------------\n# Echo program name prefixed message.\nfunc_echo ()\n{\n    $debug_cmd\n\n    _G_message=$*\n\n    func_echo_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_IFS\n      $ECHO \"$progname: $_G_line\"\n    done\n    IFS=$func_echo_IFS\n}\n\n\n# func_echo_all ARG...\n# --------------------\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"$*\"\n}\n\n\n# func_echo_infix_1 INFIX ARG...\n# ------------------------------\n# Echo program name, followed by INFIX on the first line, with any\n# additional lines not showing INFIX.\nfunc_echo_infix_1 ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    _G_infix=$1; shift\n    _G_indent=$_G_infix\n    _G_prefix=\"$progname: $_G_infix: \"\n    _G_message=$*\n\n    # Strip color escape sequences before counting printable length\n    for _G_tc in \"$tc_reset\" \"$tc_bold\" \"$tc_standout\" \"$tc_red\" \"$tc_green\" \"$tc_blue\" \"$tc_cyan\"\n    do\n      test -n \"$_G_tc\" && {\n        _G_esc_tc=`$ECHO \"$_G_tc\" | $SED \"$sed_make_literal_regex\"`\n        _G_indent=`$ECHO \"$_G_indent\" | $SED \"s|$_G_esc_tc||g\"`\n      }\n    done\n    _G_indent=\"$progname: \"`echo \"$_G_indent\" | $SED 's|.| |g'`\"  \" ## exclude from sc_prohibit_nested_quotes\n\n    func_echo_infix_1_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_infix_1_IFS\n      $ECHO \"$_G_prefix$tc_bold$_G_line$tc_reset\" >&2\n      _G_prefix=$_G_indent\n    done\n    IFS=$func_echo_infix_1_IFS\n}\n\n\n# func_error ARG...\n# -----------------\n# Echo program name prefixed message to standard error.\nfunc_error ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    func_echo_infix_1 \"  $tc_standout${tc_red}error$tc_reset\" \"$*\" >&2\n}\n\n\n# func_fatal_error ARG...\n# -----------------------\n# Echo program name prefixed message to standard error, and exit.\nfunc_fatal_error ()\n{\n    $debug_cmd\n\n    func_error \"$*\"\n    exit $EXIT_FAILURE\n}\n\n\n# func_grep EXPRESSION FILENAME\n# -----------------------------\n# Check whether EXPRESSION matches any line of FILENAME, without output.\nfunc_grep ()\n{\n    $debug_cmd\n\n    $GREP \"$1\" \"$2\" >/dev/null 2>&1\n}\n\n\n# func_len STRING\n# ---------------\n# Set func_len_result to the length of STRING. STRING may not\n# start with a hyphen.\n  test -z \"$_G_HAVE_XSI_OPS\" \\\n    && (eval 'x=a/b/c;\n      test 5aa/bb/cc = \"${#x}${x%%/*}${x%/*}${x#*/}${x##*/}\"') 2>/dev/null \\\n    && _G_HAVE_XSI_OPS=yes\n\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_len ()\n  {\n    $debug_cmd\n\n    func_len_result=${#1}\n  }'\nelse\n  func_len ()\n  {\n    $debug_cmd\n\n    func_len_result=`expr \"$1\" : \".*\" 2>/dev/null || echo $max_cmd_len`\n  }\nfi\n\n\n# func_mkdir_p DIRECTORY-PATH\n# ---------------------------\n# Make sure the entire path to DIRECTORY-PATH is available.\nfunc_mkdir_p ()\n{\n    $debug_cmd\n\n    _G_directory_path=$1\n    _G_dir_list=\n\n    if test -n \"$_G_directory_path\" && test : != \"$opt_dry_run\"; then\n\n      # Protect directory names starting with '-'\n      case $_G_directory_path in\n        -*) _G_directory_path=./$_G_directory_path ;;\n      esac\n\n      # While some portion of DIR does not yet exist...\n      while test ! -d \"$_G_directory_path\"; do\n        # ...make a list in topmost first order.  Use a colon delimited\n\t# list incase some portion of path contains whitespace.\n        _G_dir_list=$_G_directory_path:$_G_dir_list\n\n        # If the last portion added has no slash in it, the list is done\n        case $_G_directory_path in */*) ;; *) break ;; esac\n\n        # ...otherwise throw away the child directory and loop\n        _G_directory_path=`$ECHO \"$_G_directory_path\" | $SED -e \"$sed_dirname\"`\n      done\n      _G_dir_list=`$ECHO \"$_G_dir_list\" | $SED 's|:*$||'`\n\n      func_mkdir_p_IFS=$IFS; IFS=:\n      for _G_dir in $_G_dir_list; do\n\tIFS=$func_mkdir_p_IFS\n        # mkdir can fail with a 'File exist' error if two processes\n        # try to create one of the directories concurrently.  Don't\n        # stop in that case!\n        $MKDIR \"$_G_dir\" 2>/dev/null || :\n      done\n      IFS=$func_mkdir_p_IFS\n\n      # Bail out if we (or some other process) failed to create a directory.\n      test -d \"$_G_directory_path\" || \\\n        func_fatal_error \"Failed to create '$1'\"\n    fi\n}\n\n\n# func_mktempdir [BASENAME]\n# -------------------------\n# Make a temporary directory that won't clash with other running\n# libtool processes, and avoids race conditions if possible.  If\n# given, BASENAME is the basename for that directory.\nfunc_mktempdir ()\n{\n    $debug_cmd\n\n    _G_template=${TMPDIR-/tmp}/${1-$progname}\n\n    if test : = \"$opt_dry_run\"; then\n      # Return a directory name, but don't create it in dry-run mode\n      _G_tmpdir=$_G_template-$$\n    else\n\n      # If mktemp works, use that first and foremost\n      _G_tmpdir=`mktemp -d \"$_G_template-XXXXXXXX\" 2>/dev/null`\n\n      if test ! -d \"$_G_tmpdir\"; then\n        # Failing that, at least try and use $RANDOM to avoid a race\n        _G_tmpdir=$_G_template-${RANDOM-0}$$\n\n        func_mktempdir_umask=`umask`\n        umask 0077\n        $MKDIR \"$_G_tmpdir\"\n        umask $func_mktempdir_umask\n      fi\n\n      # If we're not in dry-run mode, bomb out on failure\n      test -d \"$_G_tmpdir\" || \\\n        func_fatal_error \"cannot create temporary directory '$_G_tmpdir'\"\n    fi\n\n    $ECHO \"$_G_tmpdir\"\n}\n\n\n# func_normal_abspath PATH\n# ------------------------\n# Remove doubled-up and trailing slashes, \".\" path components,\n# and cancel out any \"..\" path components in PATH after making\n# it an absolute path.\nfunc_normal_abspath ()\n{\n    $debug_cmd\n\n    # These SED scripts presuppose an absolute path with a trailing slash.\n    _G_pathcar='s|^/\\([^/]*\\).*$|\\1|'\n    _G_pathcdr='s|^/[^/]*||'\n    _G_removedotparts=':dotsl\n\t\ts|/\\./|/|g\n\t\tt dotsl\n\t\ts|/\\.$|/|'\n    _G_collapseslashes='s|/\\{1,\\}|/|g'\n    _G_finalslash='s|/*$|/|'\n\n    # Start from root dir and reassemble the path.\n    func_normal_abspath_result=\n    func_normal_abspath_tpath=$1\n    func_normal_abspath_altnamespace=\n    case $func_normal_abspath_tpath in\n      \"\")\n        # Empty path, that just means $cwd.\n        func_stripname '' '/' \"`pwd`\"\n        func_normal_abspath_result=$func_stripname_result\n        return\n        ;;\n      # The next three entries are used to spot a run of precisely\n      # two leading slashes without using negated character classes;\n      # we take advantage of case's first-match behaviour.\n      ///*)\n        # Unusual form of absolute path, do nothing.\n        ;;\n      //*)\n        # Not necessarily an ordinary path; POSIX reserves leading '//'\n        # and for example Cygwin uses it to access remote file shares\n        # over CIFS/SMB, so we conserve a leading double slash if found.\n        func_normal_abspath_altnamespace=/\n        ;;\n      /*)\n        # Absolute path, do nothing.\n        ;;\n      *)\n        # Relative path, prepend $cwd.\n        func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath\n        ;;\n    esac\n\n    # Cancel out all the simple stuff to save iterations.  We also want\n    # the path to end with a slash for ease of parsing, so make sure\n    # there is one (and only one) here.\n    func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_removedotparts\" -e \"$_G_collapseslashes\" -e \"$_G_finalslash\"`\n    while :; do\n      # Processed it all yet?\n      if test / = \"$func_normal_abspath_tpath\"; then\n        # If we ascended to the root using \"..\" the result may be empty now.\n        if test -z \"$func_normal_abspath_result\"; then\n          func_normal_abspath_result=/\n        fi\n        break\n      fi\n      func_normal_abspath_tcomponent=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_pathcar\"`\n      func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_pathcdr\"`\n      # Figure out what to do with it\n      case $func_normal_abspath_tcomponent in\n        \"\")\n          # Trailing empty path component, ignore it.\n          ;;\n        ..)\n          # Parent dir; strip last assembled component from result.\n          func_dirname \"$func_normal_abspath_result\"\n          func_normal_abspath_result=$func_dirname_result\n          ;;\n        *)\n          # Actual path component, append it.\n          func_append func_normal_abspath_result \"/$func_normal_abspath_tcomponent\"\n          ;;\n      esac\n    done\n    # Restore leading double-slash if one was found on entry.\n    func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result\n}\n\n\n# func_notquiet ARG...\n# --------------------\n# Echo program name prefixed message only when not in quiet mode.\nfunc_notquiet ()\n{\n    $debug_cmd\n\n    $opt_quiet || func_echo ${1+\"$@\"}\n\n    # A bug in bash halts the script if the last line of a function\n    # fails when set -e is in force, so we need another command to\n    # work around that:\n    :\n}\n\n\n# func_relative_path SRCDIR DSTDIR\n# --------------------------------\n# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR.\nfunc_relative_path ()\n{\n    $debug_cmd\n\n    func_relative_path_result=\n    func_normal_abspath \"$1\"\n    func_relative_path_tlibdir=$func_normal_abspath_result\n    func_normal_abspath \"$2\"\n    func_relative_path_tbindir=$func_normal_abspath_result\n\n    # Ascend the tree starting from libdir\n    while :; do\n      # check if we have found a prefix of bindir\n      case $func_relative_path_tbindir in\n        $func_relative_path_tlibdir)\n          # found an exact match\n          func_relative_path_tcancelled=\n          break\n          ;;\n        $func_relative_path_tlibdir*)\n          # found a matching prefix\n          func_stripname \"$func_relative_path_tlibdir\" '' \"$func_relative_path_tbindir\"\n          func_relative_path_tcancelled=$func_stripname_result\n          if test -z \"$func_relative_path_result\"; then\n            func_relative_path_result=.\n          fi\n          break\n          ;;\n        *)\n          func_dirname $func_relative_path_tlibdir\n          func_relative_path_tlibdir=$func_dirname_result\n          if test -z \"$func_relative_path_tlibdir\"; then\n            # Have to descend all the way to the root!\n            func_relative_path_result=../$func_relative_path_result\n            func_relative_path_tcancelled=$func_relative_path_tbindir\n            break\n          fi\n          func_relative_path_result=../$func_relative_path_result\n          ;;\n      esac\n    done\n\n    # Now calculate path; take care to avoid doubling-up slashes.\n    func_stripname '' '/' \"$func_relative_path_result\"\n    func_relative_path_result=$func_stripname_result\n    func_stripname '/' '/' \"$func_relative_path_tcancelled\"\n    if test -n \"$func_stripname_result\"; then\n      func_append func_relative_path_result \"/$func_stripname_result\"\n    fi\n\n    # Normalisation. If bindir is libdir, return '.' else relative path.\n    if test -n \"$func_relative_path_result\"; then\n      func_stripname './' '' \"$func_relative_path_result\"\n      func_relative_path_result=$func_stripname_result\n    fi\n\n    test -n \"$func_relative_path_result\" || func_relative_path_result=.\n\n    :\n}\n\n\n# func_quote_for_eval ARG...\n# --------------------------\n# Aesthetically quote ARGs to be evaled later.\n# This function returns two values:\n#   i) func_quote_for_eval_result\n#      double-quoted, suitable for a subsequent eval\n#  ii) func_quote_for_eval_unquoted_result\n#      has all characters that are still active within double\n#      quotes backslashified.\nfunc_quote_for_eval ()\n{\n    $debug_cmd\n\n    func_quote_for_eval_unquoted_result=\n    func_quote_for_eval_result=\n    while test 0 -lt $#; do\n      case $1 in\n        *[\\\\\\`\\\"\\$]*)\n\t  _G_unquoted_arg=`printf '%s\\n' \"$1\" |$SED \"$sed_quote_subst\"` ;;\n        *)\n          _G_unquoted_arg=$1 ;;\n      esac\n      if test -n \"$func_quote_for_eval_unquoted_result\"; then\n\tfunc_append func_quote_for_eval_unquoted_result \" $_G_unquoted_arg\"\n      else\n        func_append func_quote_for_eval_unquoted_result \"$_G_unquoted_arg\"\n      fi\n\n      case $_G_unquoted_arg in\n        # Double-quote args containing shell metacharacters to delay\n        # word splitting, command substitution and variable expansion\n        # for a subsequent eval.\n        # Many Bourne shells cannot handle close brackets correctly\n        # in scan sets, so we specify it separately.\n        *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n          _G_quoted_arg=\\\"$_G_unquoted_arg\\\"\n          ;;\n        *)\n          _G_quoted_arg=$_G_unquoted_arg\n\t  ;;\n      esac\n\n      if test -n \"$func_quote_for_eval_result\"; then\n\tfunc_append func_quote_for_eval_result \" $_G_quoted_arg\"\n      else\n        func_append func_quote_for_eval_result \"$_G_quoted_arg\"\n      fi\n      shift\n    done\n}\n\n\n# func_quote_for_expand ARG\n# -------------------------\n# Aesthetically quote ARG to be evaled later; same as above,\n# but do not quote variable references.\nfunc_quote_for_expand ()\n{\n    $debug_cmd\n\n    case $1 in\n      *[\\\\\\`\\\"]*)\n\t_G_arg=`$ECHO \"$1\" | $SED \\\n\t    -e \"$sed_double_quote_subst\" -e \"$sed_double_backslash\"` ;;\n      *)\n        _G_arg=$1 ;;\n    esac\n\n    case $_G_arg in\n      # Double-quote args containing shell metacharacters to delay\n      # word splitting and command substitution for a subsequent eval.\n      # Many Bourne shells cannot handle close brackets correctly\n      # in scan sets, so we specify it separately.\n      *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n        _G_arg=\\\"$_G_arg\\\"\n        ;;\n    esac\n\n    func_quote_for_expand_result=$_G_arg\n}\n\n\n# func_stripname PREFIX SUFFIX NAME\n# ---------------------------------\n# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result.\n# PREFIX and SUFFIX must not contain globbing or regex special\n# characters, hashes, percent signs, but SUFFIX may contain a leading\n# dot (in which case that matches only a dot).\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_stripname ()\n  {\n    $debug_cmd\n\n    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\n    # positional parameters, so assign one to ordinary variable first.\n    func_stripname_result=$3\n    func_stripname_result=${func_stripname_result#\"$1\"}\n    func_stripname_result=${func_stripname_result%\"$2\"}\n  }'\nelse\n  func_stripname ()\n  {\n    $debug_cmd\n\n    case $2 in\n      .*) func_stripname_result=`$ECHO \"$3\" | $SED -e \"s%^$1%%\" -e \"s%\\\\\\\\$2\\$%%\"`;;\n      *)  func_stripname_result=`$ECHO \"$3\" | $SED -e \"s%^$1%%\" -e \"s%$2\\$%%\"`;;\n    esac\n  }\nfi\n\n\n# func_show_eval CMD [FAIL_EXP]\n# -----------------------------\n# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.\nfunc_show_eval ()\n{\n    $debug_cmd\n\n    _G_cmd=$1\n    _G_fail_exp=${2-':'}\n\n    func_quote_for_expand \"$_G_cmd\"\n    eval \"func_notquiet $func_quote_for_expand_result\"\n\n    $opt_dry_run || {\n      eval \"$_G_cmd\"\n      _G_status=$?\n      if test 0 -ne \"$_G_status\"; then\n\teval \"(exit $_G_status); $_G_fail_exp\"\n      fi\n    }\n}\n\n\n# func_show_eval_locale CMD [FAIL_EXP]\n# ------------------------------------\n# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.  Use the saved locale for evaluation.\nfunc_show_eval_locale ()\n{\n    $debug_cmd\n\n    _G_cmd=$1\n    _G_fail_exp=${2-':'}\n\n    $opt_quiet || {\n      func_quote_for_expand \"$_G_cmd\"\n      eval \"func_echo $func_quote_for_expand_result\"\n    }\n\n    $opt_dry_run || {\n      eval \"$_G_user_locale\n\t    $_G_cmd\"\n      _G_status=$?\n      eval \"$_G_safe_locale\"\n      if test 0 -ne \"$_G_status\"; then\n\teval \"(exit $_G_status); $_G_fail_exp\"\n      fi\n    }\n}\n\n\n# func_tr_sh\n# ----------\n# Turn $1 into a string suitable for a shell variable name.\n# Result is stored in $func_tr_sh_result.  All characters\n# not in the set a-zA-Z0-9_ are replaced with '_'. Further,\n# if $1 begins with a digit, a '_' is prepended as well.\nfunc_tr_sh ()\n{\n    $debug_cmd\n\n    case $1 in\n    [0-9]* | *[!a-zA-Z0-9_]*)\n      func_tr_sh_result=`$ECHO \"$1\" | $SED -e 's/^\\([0-9]\\)/_\\1/' -e 's/[^a-zA-Z0-9_]/_/g'`\n      ;;\n    * )\n      func_tr_sh_result=$1\n      ;;\n    esac\n}\n\n\n# func_verbose ARG...\n# -------------------\n# Echo program name prefixed message in verbose mode only.\nfunc_verbose ()\n{\n    $debug_cmd\n\n    $opt_verbose && func_echo \"$*\"\n\n    :\n}\n\n\n# func_warn_and_continue ARG...\n# -----------------------------\n# Echo program name prefixed warning message to standard error.\nfunc_warn_and_continue ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    func_echo_infix_1 \"${tc_red}warning$tc_reset\" \"$*\" >&2\n}\n\n\n# func_warning CATEGORY ARG...\n# ----------------------------\n# Echo program name prefixed warning message to standard error. Warning\n# messages can be filtered according to CATEGORY, where this function\n# elides messages where CATEGORY is not listed in the global variable\n# 'opt_warning_types'.\nfunc_warning ()\n{\n    $debug_cmd\n\n    # CATEGORY must be in the warning_categories list!\n    case \" $warning_categories \" in\n      *\" $1 \"*) ;;\n      *) func_internal_error \"invalid warning category '$1'\" ;;\n    esac\n\n    _G_category=$1\n    shift\n\n    case \" $opt_warning_types \" in\n      *\" $_G_category \"*) $warning_func ${1+\"$@\"} ;;\n    esac\n}\n\n\n# func_sort_ver VER1 VER2\n# -----------------------\n# 'sort -V' is not generally available.\n# Note this deviates from the version comparison in automake\n# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a\n# but this should suffice as we won't be specifying old\n# version formats or redundant trailing .0 in bootstrap.conf.\n# If we did want full compatibility then we should probably\n# use m4_version_compare from autoconf.\nfunc_sort_ver ()\n{\n    $debug_cmd\n\n    printf '%s\\n%s\\n' \"$1\" \"$2\" \\\n      | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n\n}\n\n# func_lt_ver PREV CURR\n# ---------------------\n# Return true if PREV and CURR are in the correct order according to\n# func_sort_ver, otherwise false.  Use it like this:\n#\n#  func_lt_ver \"$prev_ver\" \"$proposed_ver\" || func_fatal_error \"...\"\nfunc_lt_ver ()\n{\n    $debug_cmd\n\n    test \"x$1\" = x`func_sort_ver \"$1\" \"$2\" | $SED 1q`\n}\n\n\n# Local variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-pattern: \"10/scriptversion=%:y-%02m-%02d.%02H; # UTC\"\n# time-stamp-time-zone: \"UTC\"\n# End:\n#! /bin/sh\n\n# Set a version string for this script.\nscriptversion=2014-01-07.03; # UTC\n\n# A portable, pluggable option parser for Bourne shell.\n# Written by Gary V. Vaughan, 2010\n\n# Copyright (C) 2010-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n# Please report bugs or propose patches to gary@gnu.org.\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# This file is a library for parsing options in your shell scripts along\n# with assorted other useful supporting features that you can make use\n# of too.\n#\n# For the simplest scripts you might need only:\n#\n#   #!/bin/sh\n#   . relative/path/to/funclib.sh\n#   . relative/path/to/options-parser\n#   scriptversion=1.0\n#   func_options ${1+\"$@\"}\n#   eval set dummy \"$func_options_result\"; shift\n#   ...rest of your script...\n#\n# In order for the '--version' option to work, you will need to have a\n# suitably formatted comment like the one at the top of this file\n# starting with '# Written by ' and ending with '# warranty; '.\n#\n# For '-h' and '--help' to work, you will also need a one line\n# description of your script's purpose in a comment directly above the\n# '# Written by ' line, like the one at the top of this file.\n#\n# The default options also support '--debug', which will turn on shell\n# execution tracing (see the comment above debug_cmd below for another\n# use), and '--verbose' and the func_verbose function to allow your script\n# to display verbose messages only when your user has specified\n# '--verbose'.\n#\n# After sourcing this file, you can plug processing for additional\n# options by amending the variables from the 'Configuration' section\n# below, and following the instructions in the 'Option parsing'\n# section further down.\n\n## -------------- ##\n## Configuration. ##\n## -------------- ##\n\n# You should override these variables in your script after sourcing this\n# file so that they reflect the customisations you have added to the\n# option parser.\n\n# The usage line for option parsing errors and the start of '-h' and\n# '--help' output messages. You can embed shell variables for delayed\n# expansion at the time the message is displayed, but you will need to\n# quote other shell meta-characters carefully to prevent them being\n# expanded when the contents are evaled.\nusage='$progpath [OPTION]...'\n\n# Short help message in response to '-h' and '--help'.  Add to this or\n# override it after sourcing this library to reflect the full set of\n# options your script accepts.\nusage_message=\"\\\n       --debug        enable verbose shell tracing\n   -W, --warnings=CATEGORY\n                      report the warnings falling in CATEGORY [all]\n   -v, --verbose      verbosely report processing\n       --version      print version information and exit\n   -h, --help         print short or long help message and exit\n\"\n\n# Additional text appended to 'usage_message' in response to '--help'.\nlong_help_message=\"\nWarning categories include:\n       'all'          show all warnings\n       'none'         turn off all the warnings\n       'error'        warnings are treated as fatal errors\"\n\n# Help message printed before fatal option parsing errors.\nfatal_help=\"Try '\\$progname --help' for more information.\"\n\n\n\n## ------------------------- ##\n## Hook function management. ##\n## ------------------------- ##\n\n# This section contains functions for adding, removing, and running hooks\n# to the main code.  A hook is just a named list of of function, that can\n# be run in order later on.\n\n# func_hookable FUNC_NAME\n# -----------------------\n# Declare that FUNC_NAME will run hooks added with\n# 'func_add_hook FUNC_NAME ...'.\nfunc_hookable ()\n{\n    $debug_cmd\n\n    func_append hookable_fns \" $1\"\n}\n\n\n# func_add_hook FUNC_NAME HOOK_FUNC\n# ---------------------------------\n# Request that FUNC_NAME call HOOK_FUNC before it returns.  FUNC_NAME must\n# first have been declared \"hookable\" by a call to 'func_hookable'.\nfunc_add_hook ()\n{\n    $debug_cmd\n\n    case \" $hookable_fns \" in\n      *\" $1 \"*) ;;\n      *) func_fatal_error \"'$1' does not accept hook functions.\" ;;\n    esac\n\n    eval func_append ${1}_hooks '\" $2\"'\n}\n\n\n# func_remove_hook FUNC_NAME HOOK_FUNC\n# ------------------------------------\n# Remove HOOK_FUNC from the list of functions called by FUNC_NAME.\nfunc_remove_hook ()\n{\n    $debug_cmd\n\n    eval ${1}_hooks='`$ECHO \"\\$'$1'_hooks\" |$SED \"s| '$2'||\"`'\n}\n\n\n# func_run_hooks FUNC_NAME [ARG]...\n# ---------------------------------\n# Run all hook functions registered to FUNC_NAME.\n# It is assumed that the list of hook functions contains nothing more\n# than a whitespace-delimited list of legal shell function names, and\n# no effort is wasted trying to catch shell meta-characters or preserve\n# whitespace.\nfunc_run_hooks ()\n{\n    $debug_cmd\n\n    case \" $hookable_fns \" in\n      *\" $1 \"*) ;;\n      *) func_fatal_error \"'$1' does not support hook funcions.n\" ;;\n    esac\n\n    eval _G_hook_fns=\\$$1_hooks; shift\n\n    for _G_hook in $_G_hook_fns; do\n      eval $_G_hook '\"$@\"'\n\n      # store returned options list back into positional\n      # parameters for next 'cmd' execution.\n      eval _G_hook_result=\\$${_G_hook}_result\n      eval set dummy \"$_G_hook_result\"; shift\n    done\n\n    func_quote_for_eval ${1+\"$@\"}\n    func_run_hooks_result=$func_quote_for_eval_result\n}\n\n\n\n## --------------- ##\n## Option parsing. ##\n## --------------- ##\n\n# In order to add your own option parsing hooks, you must accept the\n# full positional parameter list in your hook function, remove any\n# options that you action, and then pass back the remaining unprocessed\n# options in '<hooked_function_name>_result', escaped suitably for\n# 'eval'.  Like this:\n#\n#    my_options_prep ()\n#    {\n#        $debug_cmd\n#\n#        # Extend the existing usage message.\n#        usage_message=$usage_message'\n#      -s, --silent       don'\\''t print informational messages\n#    '\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_options_prep_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_options_prep my_options_prep\n#\n#\n#    my_silent_option ()\n#    {\n#        $debug_cmd\n#\n#        # Note that for efficiency, we parse as many options as we can\n#        # recognise in a loop before passing the remainder back to the\n#        # caller on the first unrecognised argument we encounter.\n#        while test $# -gt 0; do\n#          opt=$1; shift\n#          case $opt in\n#            --silent|-s) opt_silent=: ;;\n#            # Separate non-argument short options:\n#            -s*)         func_split_short_opt \"$_G_opt\"\n#                         set dummy \"$func_split_short_opt_name\" \\\n#                             \"-$func_split_short_opt_arg\" ${1+\"$@\"}\n#                         shift\n#                         ;;\n#            *)            set dummy \"$_G_opt\" \"$*\"; shift; break ;;\n#          esac\n#        done\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_silent_option_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_parse_options my_silent_option\n#\n#\n#    my_option_validation ()\n#    {\n#        $debug_cmd\n#\n#        $opt_silent && $opt_verbose && func_fatal_help \"\\\n#    '--silent' and '--verbose' options are mutually exclusive.\"\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_option_validation_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_validate_options my_option_validation\n#\n# You'll alse need to manually amend $usage_message to reflect the extra\n# options you parse.  It's preferable to append if you can, so that\n# multiple option parsing hooks can be added safely.\n\n\n# func_options [ARG]...\n# ---------------------\n# All the functions called inside func_options are hookable. See the\n# individual implementations for details.\nfunc_hookable func_options\nfunc_options ()\n{\n    $debug_cmd\n\n    func_options_prep ${1+\"$@\"}\n    eval func_parse_options \\\n        ${func_options_prep_result+\"$func_options_prep_result\"}\n    eval func_validate_options \\\n        ${func_parse_options_result+\"$func_parse_options_result\"}\n\n    eval func_run_hooks func_options \\\n        ${func_validate_options_result+\"$func_validate_options_result\"}\n\n    # save modified positional parameters for caller\n    func_options_result=$func_run_hooks_result\n}\n\n\n# func_options_prep [ARG]...\n# --------------------------\n# All initialisations required before starting the option parse loop.\n# Note that when calling hook functions, we pass through the list of\n# positional parameters.  If a hook function modifies that list, and\n# needs to propogate that back to rest of this script, then the complete\n# modified list must be put in 'func_run_hooks_result' before\n# returning.\nfunc_hookable func_options_prep\nfunc_options_prep ()\n{\n    $debug_cmd\n\n    # Option defaults:\n    opt_verbose=false\n    opt_warning_types=\n\n    func_run_hooks func_options_prep ${1+\"$@\"}\n\n    # save modified positional parameters for caller\n    func_options_prep_result=$func_run_hooks_result\n}\n\n\n# func_parse_options [ARG]...\n# ---------------------------\n# The main option parsing loop.\nfunc_hookable func_parse_options\nfunc_parse_options ()\n{\n    $debug_cmd\n\n    func_parse_options_result=\n\n    # this just eases exit handling\n    while test $# -gt 0; do\n      # Defer to hook functions for initial option parsing, so they\n      # get priority in the event of reusing an option name.\n      func_run_hooks func_parse_options ${1+\"$@\"}\n\n      # Adjust func_parse_options positional parameters to match\n      eval set dummy \"$func_run_hooks_result\"; shift\n\n      # Break out of the loop if we already parsed every option.\n      test $# -gt 0 || break\n\n      _G_opt=$1\n      shift\n      case $_G_opt in\n        --debug|-x)   debug_cmd='set -x'\n                      func_echo \"enabling shell trace mode\"\n                      $debug_cmd\n                      ;;\n\n        --no-warnings|--no-warning|--no-warn)\n                      set dummy --warnings none ${1+\"$@\"}\n                      shift\n\t\t      ;;\n\n        --warnings|--warning|-W)\n                      test $# = 0 && func_missing_arg $_G_opt && break\n                      case \" $warning_categories $1\" in\n                        *\" $1 \"*)\n                          # trailing space prevents matching last $1 above\n                          func_append_uniq opt_warning_types \" $1\"\n                          ;;\n                        *all)\n                          opt_warning_types=$warning_categories\n                          ;;\n                        *none)\n                          opt_warning_types=none\n                          warning_func=:\n                          ;;\n                        *error)\n                          opt_warning_types=$warning_categories\n                          warning_func=func_fatal_error\n                          ;;\n                        *)\n                          func_fatal_error \\\n                             \"unsupported warning category: '$1'\"\n                          ;;\n                      esac\n                      shift\n                      ;;\n\n        --verbose|-v) opt_verbose=: ;;\n        --version)    func_version ;;\n        -\\?|-h)       func_usage ;;\n        --help)       func_help ;;\n\n\t# Separate optargs to long options (plugins may need this):\n\t--*=*)        func_split_equals \"$_G_opt\"\n\t              set dummy \"$func_split_equals_lhs\" \\\n                          \"$func_split_equals_rhs\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n       # Separate optargs to short options:\n        -W*)\n                      func_split_short_opt \"$_G_opt\"\n                      set dummy \"$func_split_short_opt_name\" \\\n                          \"$func_split_short_opt_arg\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n        # Separate non-argument short options:\n        -\\?*|-h*|-v*|-x*)\n                      func_split_short_opt \"$_G_opt\"\n                      set dummy \"$func_split_short_opt_name\" \\\n                          \"-$func_split_short_opt_arg\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n        --)           break ;;\n        -*)           func_fatal_help \"unrecognised option: '$_G_opt'\" ;;\n        *)            set dummy \"$_G_opt\" ${1+\"$@\"}; shift; break ;;\n      esac\n    done\n\n    # save modified positional parameters for caller\n    func_quote_for_eval ${1+\"$@\"}\n    func_parse_options_result=$func_quote_for_eval_result\n}\n\n\n# func_validate_options [ARG]...\n# ------------------------------\n# Perform any sanity checks on option settings and/or unconsumed\n# arguments.\nfunc_hookable func_validate_options\nfunc_validate_options ()\n{\n    $debug_cmd\n\n    # Display all warnings if -W was not given.\n    test -n \"$opt_warning_types\" || opt_warning_types=\" $warning_categories\"\n\n    func_run_hooks func_validate_options ${1+\"$@\"}\n\n    # Bail if the options were screwed!\n    $exit_cmd $EXIT_FAILURE\n\n    # save modified positional parameters for caller\n    func_validate_options_result=$func_run_hooks_result\n}\n\n\n\n## ----------------- ##\n## Helper functions. ##\n## ----------------- ##\n\n# This section contains the helper functions used by the rest of the\n# hookable option parser framework in ascii-betical order.\n\n\n# func_fatal_help ARG...\n# ----------------------\n# Echo program name prefixed message to standard error, followed by\n# a help hint, and exit.\nfunc_fatal_help ()\n{\n    $debug_cmd\n\n    eval \\$ECHO \\\"\"Usage: $usage\"\\\"\n    eval \\$ECHO \\\"\"$fatal_help\"\\\"\n    func_error ${1+\"$@\"}\n    exit $EXIT_FAILURE\n}\n\n\n# func_help\n# ---------\n# Echo long help message to standard output and exit.\nfunc_help ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"$long_help_message\"\n    exit 0\n}\n\n\n# func_missing_arg ARGNAME\n# ------------------------\n# Echo program name prefixed message to standard error and set global\n# exit_cmd.\nfunc_missing_arg ()\n{\n    $debug_cmd\n\n    func_error \"Missing argument for '$1'.\"\n    exit_cmd=exit\n}\n\n\n# func_split_equals STRING\n# ------------------------\n# Set func_split_equals_lhs and func_split_equals_rhs shell variables after\n# splitting STRING at the '=' sign.\ntest -z \"$_G_HAVE_XSI_OPS\" \\\n    && (eval 'x=a/b/c;\n      test 5aa/bb/cc = \"${#x}${x%%/*}${x%/*}${x#*/}${x##*/}\"') 2>/dev/null \\\n    && _G_HAVE_XSI_OPS=yes\n\nif test yes = \"$_G_HAVE_XSI_OPS\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_split_equals ()\n  {\n      $debug_cmd\n\n      func_split_equals_lhs=${1%%=*}\n      func_split_equals_rhs=${1#*=}\n      test \"x$func_split_equals_lhs\" = \"x$1\" \\\n        && func_split_equals_rhs=\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_split_equals ()\n  {\n      $debug_cmd\n\n      func_split_equals_lhs=`expr \"x$1\" : 'x\\([^=]*\\)'`\n      func_split_equals_rhs=\n      test \"x$func_split_equals_lhs\" = \"x$1\" \\\n        || func_split_equals_rhs=`expr \"x$1\" : 'x[^=]*=\\(.*\\)$'`\n  }\nfi #func_split_equals\n\n\n# func_split_short_opt SHORTOPT\n# -----------------------------\n# Set func_split_short_opt_name and func_split_short_opt_arg shell\n# variables after splitting SHORTOPT after the 2nd character.\nif test yes = \"$_G_HAVE_XSI_OPS\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_split_short_opt ()\n  {\n      $debug_cmd\n\n      func_split_short_opt_arg=${1#??}\n      func_split_short_opt_name=${1%\"$func_split_short_opt_arg\"}\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_split_short_opt ()\n  {\n      $debug_cmd\n\n      func_split_short_opt_name=`expr \"x$1\" : 'x-\\(.\\)'`\n      func_split_short_opt_arg=`expr \"x$1\" : 'x-.\\(.*\\)$'`\n  }\nfi #func_split_short_opt\n\n\n# func_usage\n# ----------\n# Echo short help message to standard output and exit.\nfunc_usage ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"Run '$progname --help |${PAGER-more}' for full usage\"\n    exit 0\n}\n\n\n# func_usage_message\n# ------------------\n# Echo short help message to standard output.\nfunc_usage_message ()\n{\n    $debug_cmd\n\n    eval \\$ECHO \\\"\"Usage: $usage\"\\\"\n    echo\n    $SED -n 's|^# ||\n        /^Written by/{\n          x;p;x\n        }\n\th\n\t/^Written by/q' < \"$progpath\"\n    echo\n    eval \\$ECHO \\\"\"$usage_message\"\\\"\n}\n\n\n# func_version\n# ------------\n# Echo version message to standard output and exit.\nfunc_version ()\n{\n    $debug_cmd\n\n    printf '%s\\n' \"$progname $scriptversion\"\n    $SED -n '\n        /(C)/!b go\n        :more\n        /\\./!{\n          N\n          s|\\n# | |\n          b more\n        }\n        :go\n        /^# Written by /,/# warranty; / {\n          s|^# ||\n          s|^# *$||\n          s|\\((C)\\)[ 0-9,-]*[ ,-]\\([1-9][0-9]* \\)|\\1 \\2|\n          p\n        }\n        /^# Written by / {\n          s|^# ||\n          p\n        }\n        /^warranty; /q' < \"$progpath\"\n\n    exit $?\n}\n\n\n# Local variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-pattern: \"10/scriptversion=%:y-%02m-%02d.%02H; # UTC\"\n# time-stamp-time-zone: \"UTC\"\n# End:\n\n# Set a version string.\nscriptversion='(GNU libtool) 2.4.6'\n\n\n# func_echo ARG...\n# ----------------\n# Libtool also displays the current mode in messages, so override\n# funclib.sh func_echo with this custom definition.\nfunc_echo ()\n{\n    $debug_cmd\n\n    _G_message=$*\n\n    func_echo_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_IFS\n      $ECHO \"$progname${opt_mode+: $opt_mode}: $_G_line\"\n    done\n    IFS=$func_echo_IFS\n}\n\n\n# func_warning ARG...\n# -------------------\n# Libtool warnings are not categorized, so override funclib.sh\n# func_warning with this simpler definition.\nfunc_warning ()\n{\n    $debug_cmd\n\n    $warning_func ${1+\"$@\"}\n}\n\n\n## ---------------- ##\n## Options parsing. ##\n## ---------------- ##\n\n# Hook in the functions to make sure our own options are parsed during\n# the option parsing loop.\n\nusage='$progpath [OPTION]... [MODE-ARG]...'\n\n# Short help message in response to '-h'.\nusage_message=\"Options:\n       --config             show all configuration variables\n       --debug              enable verbose shell tracing\n   -n, --dry-run            display commands without modifying any files\n       --features           display basic configuration information and exit\n       --mode=MODE          use operation mode MODE\n       --no-warnings        equivalent to '-Wnone'\n       --preserve-dup-deps  don't remove duplicate dependency libraries\n       --quiet, --silent    don't print informational messages\n       --tag=TAG            use configuration variables from tag TAG\n   -v, --verbose            print more informational messages than default\n       --version            print version information\n   -W, --warnings=CATEGORY  report the warnings falling in CATEGORY [all]\n   -h, --help, --help-all   print short, long, or detailed help message\n\"\n\n# Additional text appended to 'usage_message' in response to '--help'.\nfunc_help ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"$long_help_message\n\nMODE must be one of the following:\n\n       clean           remove files from the build directory\n       compile         compile a source file into a libtool object\n       execute         automatically set library path, then run a program\n       finish          complete the installation of libtool libraries\n       install         install libraries or executables\n       link            create a library or an executable\n       uninstall       remove libraries from an installed directory\n\nMODE-ARGS vary depending on the MODE.  When passed as first option,\n'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that.\nTry '$progname --help --mode=MODE' for a more detailed description of MODE.\n\nWhen reporting a bug, please describe a test case to reproduce it and\ninclude the following information:\n\n       host-triplet:   $host\n       shell:          $SHELL\n       compiler:       $LTCC\n       compiler flags: $LTCFLAGS\n       linker:         $LD (gnu? $with_gnu_ld)\n       version:        $progname (GNU libtool) 2.4.6\n       automake:       `($AUTOMAKE --version) 2>/dev/null |$SED 1q`\n       autoconf:       `($AUTOCONF --version) 2>/dev/null |$SED 1q`\n\nReport bugs to <bug-libtool@gnu.org>.\nGNU libtool home page: <http://www.gnu.org/software/libtool/>.\nGeneral help using GNU software: <http://www.gnu.org/gethelp/>.\"\n    exit 0\n}\n\n\n# func_lo2o OBJECT-NAME\n# ---------------------\n# Transform OBJECT-NAME from a '.lo' suffix to the platform specific\n# object suffix.\n\nlo2o=s/\\\\.lo\\$/.$objext/\no2lo=s/\\\\.$objext\\$/.lo/\n\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_lo2o ()\n  {\n    case $1 in\n      *.lo) func_lo2o_result=${1%.lo}.$objext ;;\n      *   ) func_lo2o_result=$1               ;;\n    esac\n  }'\n\n  # func_xform LIBOBJ-OR-SOURCE\n  # ---------------------------\n  # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise)\n  # suffix to a '.lo' libtool-object suffix.\n  eval 'func_xform ()\n  {\n    func_xform_result=${1%.*}.lo\n  }'\nelse\n  # ...otherwise fall back to using sed.\n  func_lo2o ()\n  {\n    func_lo2o_result=`$ECHO \"$1\" | $SED \"$lo2o\"`\n  }\n\n  func_xform ()\n  {\n    func_xform_result=`$ECHO \"$1\" | $SED 's|\\.[^.]*$|.lo|'`\n  }\nfi\n\n\n# func_fatal_configuration ARG...\n# -------------------------------\n# Echo program name prefixed message to standard error, followed by\n# a configuration failure hint, and exit.\nfunc_fatal_configuration ()\n{\n    func__fatal_error ${1+\"$@\"} \\\n      \"See the $PACKAGE documentation for more information.\" \\\n      \"Fatal configuration error.\"\n}\n\n\n# func_config\n# -----------\n# Display the configuration for all the tags in this script.\nfunc_config ()\n{\n    re_begincf='^# ### BEGIN LIBTOOL'\n    re_endcf='^# ### END LIBTOOL'\n\n    # Default configuration.\n    $SED \"1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\\$d\" < \"$progpath\"\n\n    # Now print the configurations for the tags.\n    for tagname in $taglist; do\n      $SED -n \"/$re_begincf TAG CONFIG: $tagname\\$/,/$re_endcf TAG CONFIG: $tagname\\$/p\" < \"$progpath\"\n    done\n\n    exit $?\n}\n\n\n# func_features\n# -------------\n# Display the features supported by this script.\nfunc_features ()\n{\n    echo \"host: $host\"\n    if test yes = \"$build_libtool_libs\"; then\n      echo \"enable shared libraries\"\n    else\n      echo \"disable shared libraries\"\n    fi\n    if test yes = \"$build_old_libs\"; then\n      echo \"enable static libraries\"\n    else\n      echo \"disable static libraries\"\n    fi\n\n    exit $?\n}\n\n\n# func_enable_tag TAGNAME\n# -----------------------\n# Verify that TAGNAME is valid, and either flag an error and exit, or\n# enable the TAGNAME tag.  We also add TAGNAME to the global $taglist\n# variable here.\nfunc_enable_tag ()\n{\n    # Global variable:\n    tagname=$1\n\n    re_begincf=\"^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\\$\"\n    re_endcf=\"^# ### END LIBTOOL TAG CONFIG: $tagname\\$\"\n    sed_extractcf=/$re_begincf/,/$re_endcf/p\n\n    # Validate tagname.\n    case $tagname in\n      *[!-_A-Za-z0-9,/]*)\n        func_fatal_error \"invalid tag name: $tagname\"\n        ;;\n    esac\n\n    # Don't test for the \"default\" C tag, as we know it's\n    # there but not specially marked.\n    case $tagname in\n        CC) ;;\n    *)\n        if $GREP \"$re_begincf\" \"$progpath\" >/dev/null 2>&1; then\n\t  taglist=\"$taglist $tagname\"\n\n\t  # Evaluate the configuration.  Be careful to quote the path\n\t  # and the sed script, to avoid splitting on whitespace, but\n\t  # also don't use non-portable quotes within backquotes within\n\t  # quotes we have to do it in 2 steps:\n\t  extractedcf=`$SED -n -e \"$sed_extractcf\" < \"$progpath\"`\n\t  eval \"$extractedcf\"\n        else\n\t  func_error \"ignoring unknown tag $tagname\"\n        fi\n        ;;\n    esac\n}\n\n\n# func_check_version_match\n# ------------------------\n# Ensure that we are using m4 macros, and libtool script from the same\n# release of libtool.\nfunc_check_version_match ()\n{\n    if test \"$package_revision\" != \"$macro_revision\"; then\n      if test \"$VERSION\" != \"$macro_version\"; then\n        if test -z \"$macro_version\"; then\n          cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from an older release.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n        else\n          cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from $PACKAGE $macro_version.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n        fi\n      else\n        cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, revision $package_revision,\n$progname: but the definition of this LT_INIT comes from revision $macro_revision.\n$progname: You should recreate aclocal.m4 with macros from revision $package_revision\n$progname: of $PACKAGE $VERSION and run autoconf again.\n_LT_EOF\n      fi\n\n      exit $EXIT_MISMATCH\n    fi\n}\n\n\n# libtool_options_prep [ARG]...\n# -----------------------------\n# Preparation for options parsed by libtool.\nlibtool_options_prep ()\n{\n    $debug_mode\n\n    # Option defaults:\n    opt_config=false\n    opt_dlopen=\n    opt_dry_run=false\n    opt_help=false\n    opt_mode=\n    opt_preserve_dup_deps=false\n    opt_quiet=false\n\n    nonopt=\n    preserve_args=\n\n    # Shorthand for --mode=foo, only valid as the first argument\n    case $1 in\n    clean|clea|cle|cl)\n      shift; set dummy --mode clean ${1+\"$@\"}; shift\n      ;;\n    compile|compil|compi|comp|com|co|c)\n      shift; set dummy --mode compile ${1+\"$@\"}; shift\n      ;;\n    execute|execut|execu|exec|exe|ex|e)\n      shift; set dummy --mode execute ${1+\"$@\"}; shift\n      ;;\n    finish|finis|fini|fin|fi|f)\n      shift; set dummy --mode finish ${1+\"$@\"}; shift\n      ;;\n    install|instal|insta|inst|ins|in|i)\n      shift; set dummy --mode install ${1+\"$@\"}; shift\n      ;;\n    link|lin|li|l)\n      shift; set dummy --mode link ${1+\"$@\"}; shift\n      ;;\n    uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)\n      shift; set dummy --mode uninstall ${1+\"$@\"}; shift\n      ;;\n    esac\n\n    # Pass back the list of options.\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_options_prep_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_options_prep libtool_options_prep\n\n\n# libtool_parse_options [ARG]...\n# ---------------------------------\n# Provide handling for libtool specific options.\nlibtool_parse_options ()\n{\n    $debug_cmd\n\n    # Perform our own loop to consume as many options as possible in\n    # each iteration.\n    while test $# -gt 0; do\n      _G_opt=$1\n      shift\n      case $_G_opt in\n        --dry-run|--dryrun|-n)\n                        opt_dry_run=:\n                        ;;\n\n        --config)       func_config ;;\n\n        --dlopen|-dlopen)\n                        opt_dlopen=\"${opt_dlopen+$opt_dlopen\n}$1\"\n                        shift\n                        ;;\n\n        --preserve-dup-deps)\n                        opt_preserve_dup_deps=: ;;\n\n        --features)     func_features ;;\n\n        --finish)       set dummy --mode finish ${1+\"$@\"}; shift ;;\n\n        --help)         opt_help=: ;;\n\n        --help-all)     opt_help=': help-all' ;;\n\n        --mode)         test $# = 0 && func_missing_arg $_G_opt && break\n                        opt_mode=$1\n                        case $1 in\n                          # Valid mode arguments:\n                          clean|compile|execute|finish|install|link|relink|uninstall) ;;\n\n                          # Catch anything else as an error\n                          *) func_error \"invalid argument for $_G_opt\"\n                             exit_cmd=exit\n                             break\n                             ;;\n                        esac\n                        shift\n                        ;;\n\n        --no-silent|--no-quiet)\n                        opt_quiet=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --no-warnings|--no-warning|--no-warn)\n                        opt_warning=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --no-verbose)\n                        opt_verbose=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --silent|--quiet)\n                        opt_quiet=:\n                        opt_verbose=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --tag)          test $# = 0 && func_missing_arg $_G_opt && break\n                        opt_tag=$1\n                        func_append preserve_args \" $_G_opt $1\"\n                        func_enable_tag \"$1\"\n                        shift\n                        ;;\n\n        --verbose|-v)   opt_quiet=false\n                        opt_verbose=:\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n\t# An option not handled by this hook function:\n        *)\t\tset dummy \"$_G_opt\" ${1+\"$@\"};\tshift; break  ;;\n      esac\n    done\n\n\n    # save modified positional parameters for caller\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_parse_options_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_parse_options libtool_parse_options\n\n\n\n# libtool_validate_options [ARG]...\n# ---------------------------------\n# Perform any sanity checks on option settings and/or unconsumed\n# arguments.\nlibtool_validate_options ()\n{\n    # save first non-option argument\n    if test 0 -lt $#; then\n      nonopt=$1\n      shift\n    fi\n\n    # preserve --debug\n    test : = \"$debug_cmd\" || func_append preserve_args \" --debug\"\n\n    case $host in\n      # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452\n      # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788\n      *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*)\n        # don't eliminate duplications in $postdeps and $predeps\n        opt_duplicate_compiler_generated_deps=:\n        ;;\n      *)\n        opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps\n        ;;\n    esac\n\n    $opt_help || {\n      # Sanity checks first:\n      func_check_version_match\n\n      test yes != \"$build_libtool_libs\" \\\n        && test yes != \"$build_old_libs\" \\\n        && func_fatal_configuration \"not configured to build any kind of library\"\n\n      # Darwin sucks\n      eval std_shrext=\\\"$shrext_cmds\\\"\n\n      # Only execute mode is allowed to have -dlopen flags.\n      if test -n \"$opt_dlopen\" && test execute != \"$opt_mode\"; then\n        func_error \"unrecognized option '-dlopen'\"\n        $ECHO \"$help\" 1>&2\n        exit $EXIT_FAILURE\n      fi\n\n      # Change the help message to a mode-specific one.\n      generic_help=$help\n      help=\"Try '$progname --help --mode=$opt_mode' for more information.\"\n    }\n\n    # Pass back the unparsed argument list\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_validate_options_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_validate_options libtool_validate_options\n\n\n# Process options as early as possible so that --help and --version\n# can return quickly.\nfunc_options ${1+\"$@\"}\neval set dummy \"$func_options_result\"; shift\n\n\n\n## ----------- ##\n##    Main.    ##\n## ----------- ##\n\nmagic='%%%MAGIC variable%%%'\nmagic_exe='%%%MAGIC EXE variable%%%'\n\n# Global variables.\nextracted_archives=\nextracted_serial=0\n\n# If this variable is set in any of the actions, the command in it\n# will be execed at the end.  This prevents here-documents from being\n# left over by shells.\nexec_cmd=\n\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n}\n\n# func_generated_by_libtool\n# True iff stdin has been generated by Libtool. This function is only\n# a basic sanity check; it will hardly flush out determined imposters.\nfunc_generated_by_libtool_p ()\n{\n  $GREP \"^# Generated by .*$PACKAGE\" > /dev/null 2>&1\n}\n\n# func_lalib_p file\n# True iff FILE is a libtool '.la' library or '.lo' object file.\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_lalib_p ()\n{\n    test -f \"$1\" &&\n      $SED -e 4q \"$1\" 2>/dev/null | func_generated_by_libtool_p\n}\n\n# func_lalib_unsafe_p file\n# True iff FILE is a libtool '.la' library or '.lo' object file.\n# This function implements the same check as func_lalib_p without\n# resorting to external programs.  To this end, it redirects stdin and\n# closes it afterwards, without saving the original file descriptor.\n# As a safety measure, use it only where a negative result would be\n# fatal anyway.  Works if 'file' does not exist.\nfunc_lalib_unsafe_p ()\n{\n    lalib_p=no\n    if test -f \"$1\" && test -r \"$1\" && exec 5<&0 <\"$1\"; then\n\tfor lalib_p_l in 1 2 3 4\n\tdo\n\t    read lalib_p_line\n\t    case $lalib_p_line in\n\t\t\\#\\ Generated\\ by\\ *$PACKAGE* ) lalib_p=yes; break;;\n\t    esac\n\tdone\n\texec 0<&5 5<&-\n    fi\n    test yes = \"$lalib_p\"\n}\n\n# func_ltwrapper_script_p file\n# True iff FILE is a libtool wrapper script\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_script_p ()\n{\n    test -f \"$1\" &&\n      $lt_truncate_bin < \"$1\" 2>/dev/null | func_generated_by_libtool_p\n}\n\n# func_ltwrapper_executable_p file\n# True iff FILE is a libtool wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_executable_p ()\n{\n    func_ltwrapper_exec_suffix=\n    case $1 in\n    *.exe) ;;\n    *) func_ltwrapper_exec_suffix=.exe ;;\n    esac\n    $GREP \"$magic_exe\" \"$1$func_ltwrapper_exec_suffix\" >/dev/null 2>&1\n}\n\n# func_ltwrapper_scriptname file\n# Assumes file is an ltwrapper_executable\n# uses $file to determine the appropriate filename for a\n# temporary ltwrapper_script.\nfunc_ltwrapper_scriptname ()\n{\n    func_dirname_and_basename \"$1\" \"\" \".\"\n    func_stripname '' '.exe' \"$func_basename_result\"\n    func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper\n}\n\n# func_ltwrapper_p file\n# True iff FILE is a libtool wrapper script or wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_p ()\n{\n    func_ltwrapper_script_p \"$1\" || func_ltwrapper_executable_p \"$1\"\n}\n\n\n# func_execute_cmds commands fail_cmd\n# Execute tilde-delimited COMMANDS.\n# If FAIL_CMD is given, eval that upon failure.\n# FAIL_CMD may read-access the current command in variable CMD!\nfunc_execute_cmds ()\n{\n    $debug_cmd\n\n    save_ifs=$IFS; IFS='~'\n    for cmd in $1; do\n      IFS=$sp$nl\n      eval cmd=\\\"$cmd\\\"\n      IFS=$save_ifs\n      func_show_eval \"$cmd\" \"${2-:}\"\n    done\n    IFS=$save_ifs\n}\n\n\n# func_source file\n# Source FILE, adding directory component if necessary.\n# Note that it is not necessary on cygwin/mingw to append a dot to\n# FILE even if both FILE and FILE.exe exist: automatic-append-.exe\n# behavior happens only for exec(3), not for open(2)!  Also, sourcing\n# 'FILE.' does not work on cygwin managed mounts.\nfunc_source ()\n{\n    $debug_cmd\n\n    case $1 in\n    */* | *\\\\*)\t. \"$1\" ;;\n    *)\t\t. \"./$1\" ;;\n    esac\n}\n\n\n# func_resolve_sysroot PATH\n# Replace a leading = in PATH with a sysroot.  Store the result into\n# func_resolve_sysroot_result\nfunc_resolve_sysroot ()\n{\n  func_resolve_sysroot_result=$1\n  case $func_resolve_sysroot_result in\n  =*)\n    func_stripname '=' '' \"$func_resolve_sysroot_result\"\n    func_resolve_sysroot_result=$lt_sysroot$func_stripname_result\n    ;;\n  esac\n}\n\n# func_replace_sysroot PATH\n# If PATH begins with the sysroot, replace it with = and\n# store the result into func_replace_sysroot_result.\nfunc_replace_sysroot ()\n{\n  case $lt_sysroot:$1 in\n  ?*:\"$lt_sysroot\"*)\n    func_stripname \"$lt_sysroot\" '' \"$1\"\n    func_replace_sysroot_result='='$func_stripname_result\n    ;;\n  *)\n    # Including no sysroot.\n    func_replace_sysroot_result=$1\n    ;;\n  esac\n}\n\n# func_infer_tag arg\n# Infer tagged configuration to use if any are available and\n# if one wasn't chosen via the \"--tag\" command line option.\n# Only attempt this if the compiler in the base compile\n# command doesn't match the default compiler.\n# arg is usually of the form 'gcc ...'\nfunc_infer_tag ()\n{\n    $debug_cmd\n\n    if test -n \"$available_tags\" && test -z \"$tagname\"; then\n      CC_quoted=\n      for arg in $CC; do\n\tfunc_append_quoted CC_quoted \"$arg\"\n      done\n      CC_expanded=`func_echo_all $CC`\n      CC_quoted_expanded=`func_echo_all $CC_quoted`\n      case $@ in\n      # Blanks in the command may have been stripped by the calling shell,\n      # but not from the CC environment variable when configure was run.\n      \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n      \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*) ;;\n      # Blanks at the start of $base_compile will cause this to fail\n      # if we don't check for them as well.\n      *)\n\tfor z in $available_tags; do\n\t  if $GREP \"^# ### BEGIN LIBTOOL TAG CONFIG: $z$\" < \"$progpath\" > /dev/null; then\n\t    # Evaluate the configuration.\n\t    eval \"`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`\"\n\t    CC_quoted=\n\t    for arg in $CC; do\n\t      # Double-quote args containing other shell metacharacters.\n\t      func_append_quoted CC_quoted \"$arg\"\n\t    done\n\t    CC_expanded=`func_echo_all $CC`\n\t    CC_quoted_expanded=`func_echo_all $CC_quoted`\n\t    case \"$@ \" in\n\t    \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n\t    \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*)\n\t      # The compiler in the base compile command matches\n\t      # the one in the tagged configuration.\n\t      # Assume this is the tagged configuration we want.\n\t      tagname=$z\n\t      break\n\t      ;;\n\t    esac\n\t  fi\n\tdone\n\t# If $tagname still isn't set, then no tagged configuration\n\t# was found and let the user know that the \"--tag\" command\n\t# line option must be used.\n\tif test -z \"$tagname\"; then\n\t  func_echo \"unable to infer tagged configuration\"\n\t  func_fatal_error \"specify a tag with '--tag'\"\n#\telse\n#\t  func_verbose \"using $tagname tagged configuration\"\n\tfi\n\t;;\n      esac\n    fi\n}\n\n\n\n# func_write_libtool_object output_name pic_name nonpic_name\n# Create a libtool object file (analogous to a \".la\" file),\n# but don't create it if we're doing a dry run.\nfunc_write_libtool_object ()\n{\n    write_libobj=$1\n    if test yes = \"$build_libtool_libs\"; then\n      write_lobj=\\'$2\\'\n    else\n      write_lobj=none\n    fi\n\n    if test yes = \"$build_old_libs\"; then\n      write_oldobj=\\'$3\\'\n    else\n      write_oldobj=none\n    fi\n\n    $opt_dry_run || {\n      cat >${write_libobj}T <<EOF\n# $write_libobj - a libtool object file\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# Name of the PIC object.\npic_object=$write_lobj\n\n# Name of the non-PIC object\nnon_pic_object=$write_oldobj\n\nEOF\n      $MV \"${write_libobj}T\" \"$write_libobj\"\n    }\n}\n\n\n##################################################\n# FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #\n##################################################\n\n# func_convert_core_file_wine_to_w32 ARG\n# Helper function used by file name conversion functions when $build is *nix,\n# and $host is mingw, cygwin, or some other w32 environment. Relies on a\n# correctly configured wine environment available, with the winepath program\n# in $build's $PATH.\n#\n# ARG is the $build file name to be converted to w32 format.\n# Result is available in $func_convert_core_file_wine_to_w32_result, and will\n# be empty on error (or when ARG is empty)\nfunc_convert_core_file_wine_to_w32 ()\n{\n  $debug_cmd\n\n  func_convert_core_file_wine_to_w32_result=$1\n  if test -n \"$1\"; then\n    # Unfortunately, winepath does not exit with a non-zero error code, so we\n    # are forced to check the contents of stdout. On the other hand, if the\n    # command is not found, the shell will set an exit code of 127 and print\n    # *an error message* to stdout. So we must check for both error code of\n    # zero AND non-empty stdout, which explains the odd construction:\n    func_convert_core_file_wine_to_w32_tmp=`winepath -w \"$1\" 2>/dev/null`\n    if test \"$?\" -eq 0 && test -n \"$func_convert_core_file_wine_to_w32_tmp\"; then\n      func_convert_core_file_wine_to_w32_result=`$ECHO \"$func_convert_core_file_wine_to_w32_tmp\" |\n        $SED -e \"$sed_naive_backslashify\"`\n    else\n      func_convert_core_file_wine_to_w32_result=\n    fi\n  fi\n}\n# end: func_convert_core_file_wine_to_w32\n\n\n# func_convert_core_path_wine_to_w32 ARG\n# Helper function used by path conversion functions when $build is *nix, and\n# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly\n# configured wine environment available, with the winepath program in $build's\n# $PATH. Assumes ARG has no leading or trailing path separator characters.\n#\n# ARG is path to be converted from $build format to win32.\n# Result is available in $func_convert_core_path_wine_to_w32_result.\n# Unconvertible file (directory) names in ARG are skipped; if no directory names\n# are convertible, then the result may be empty.\nfunc_convert_core_path_wine_to_w32 ()\n{\n  $debug_cmd\n\n  # unfortunately, winepath doesn't convert paths, only file names\n  func_convert_core_path_wine_to_w32_result=\n  if test -n \"$1\"; then\n    oldIFS=$IFS\n    IFS=:\n    for func_convert_core_path_wine_to_w32_f in $1; do\n      IFS=$oldIFS\n      func_convert_core_file_wine_to_w32 \"$func_convert_core_path_wine_to_w32_f\"\n      if test -n \"$func_convert_core_file_wine_to_w32_result\"; then\n        if test -z \"$func_convert_core_path_wine_to_w32_result\"; then\n          func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result\n        else\n          func_append func_convert_core_path_wine_to_w32_result \";$func_convert_core_file_wine_to_w32_result\"\n        fi\n      fi\n    done\n    IFS=$oldIFS\n  fi\n}\n# end: func_convert_core_path_wine_to_w32\n\n\n# func_cygpath ARGS...\n# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when\n# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)\n# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or\n# (2), returns the Cygwin file name or path in func_cygpath_result (input\n# file name or path is assumed to be in w32 format, as previously converted\n# from $build's *nix or MSYS format). In case (3), returns the w32 file name\n# or path in func_cygpath_result (input file name or path is assumed to be in\n# Cygwin format). Returns an empty string on error.\n#\n# ARGS are passed to cygpath, with the last one being the file name or path to\n# be converted.\n#\n# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH\n# environment variable; do not put it in $PATH.\nfunc_cygpath ()\n{\n  $debug_cmd\n\n  if test -n \"$LT_CYGPATH\" && test -f \"$LT_CYGPATH\"; then\n    func_cygpath_result=`$LT_CYGPATH \"$@\" 2>/dev/null`\n    if test \"$?\" -ne 0; then\n      # on failure, ensure result is empty\n      func_cygpath_result=\n    fi\n  else\n    func_cygpath_result=\n    func_error \"LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'\"\n  fi\n}\n#end: func_cygpath\n\n\n# func_convert_core_msys_to_w32 ARG\n# Convert file name or path ARG from MSYS format to w32 format.  Return\n# result in func_convert_core_msys_to_w32_result.\nfunc_convert_core_msys_to_w32 ()\n{\n  $debug_cmd\n\n  # awkward: cmd appends spaces to result\n  func_convert_core_msys_to_w32_result=`( cmd //c echo \"$1\" ) 2>/dev/null |\n    $SED -e 's/[ ]*$//' -e \"$sed_naive_backslashify\"`\n}\n#end: func_convert_core_msys_to_w32\n\n\n# func_convert_file_check ARG1 ARG2\n# Verify that ARG1 (a file name in $build format) was converted to $host\n# format in ARG2. Otherwise, emit an error message, but continue (resetting\n# func_to_host_file_result to ARG1).\nfunc_convert_file_check ()\n{\n  $debug_cmd\n\n  if test -z \"$2\" && test -n \"$1\"; then\n    func_error \"Could not determine host file name corresponding to\"\n    func_error \"  '$1'\"\n    func_error \"Continuing, but uninstalled executables may not work.\"\n    # Fallback:\n    func_to_host_file_result=$1\n  fi\n}\n# end func_convert_file_check\n\n\n# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH\n# Verify that FROM_PATH (a path in $build format) was converted to $host\n# format in TO_PATH. Otherwise, emit an error message, but continue, resetting\n# func_to_host_file_result to a simplistic fallback value (see below).\nfunc_convert_path_check ()\n{\n  $debug_cmd\n\n  if test -z \"$4\" && test -n \"$3\"; then\n    func_error \"Could not determine the host path corresponding to\"\n    func_error \"  '$3'\"\n    func_error \"Continuing, but uninstalled executables may not work.\"\n    # Fallback.  This is a deliberately simplistic \"conversion\" and\n    # should not be \"improved\".  See libtool.info.\n    if test \"x$1\" != \"x$2\"; then\n      lt_replace_pathsep_chars=\"s|$1|$2|g\"\n      func_to_host_path_result=`echo \"$3\" |\n        $SED -e \"$lt_replace_pathsep_chars\"`\n    else\n      func_to_host_path_result=$3\n    fi\n  fi\n}\n# end func_convert_path_check\n\n\n# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG\n# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT\n# and appending REPL if ORIG matches BACKPAT.\nfunc_convert_path_front_back_pathsep ()\n{\n  $debug_cmd\n\n  case $4 in\n  $1 ) func_to_host_path_result=$3$func_to_host_path_result\n    ;;\n  esac\n  case $4 in\n  $2 ) func_append func_to_host_path_result \"$3\"\n    ;;\n  esac\n}\n# end func_convert_path_front_back_pathsep\n\n\n##################################################\n# $build to $host FILE NAME CONVERSION FUNCTIONS #\n##################################################\n# invoked via '$to_host_file_cmd ARG'\n#\n# In each case, ARG is the path to be converted from $build to $host format.\n# Result will be available in $func_to_host_file_result.\n\n\n# func_to_host_file ARG\n# Converts the file name ARG from $build format to $host format. Return result\n# in func_to_host_file_result.\nfunc_to_host_file ()\n{\n  $debug_cmd\n\n  $to_host_file_cmd \"$1\"\n}\n# end func_to_host_file\n\n\n# func_to_tool_file ARG LAZY\n# converts the file name ARG from $build format to toolchain format. Return\n# result in func_to_tool_file_result.  If the conversion in use is listed\n# in (the comma separated) LAZY, no conversion takes place.\nfunc_to_tool_file ()\n{\n  $debug_cmd\n\n  case ,$2, in\n    *,\"$to_tool_file_cmd\",*)\n      func_to_tool_file_result=$1\n      ;;\n    *)\n      $to_tool_file_cmd \"$1\"\n      func_to_tool_file_result=$func_to_host_file_result\n      ;;\n  esac\n}\n# end func_to_tool_file\n\n\n# func_convert_file_noop ARG\n# Copy ARG to func_to_host_file_result.\nfunc_convert_file_noop ()\n{\n  func_to_host_file_result=$1\n}\n# end func_convert_file_noop\n\n\n# func_convert_file_msys_to_w32 ARG\n# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic\n# conversion to w32 is not available inside the cwrapper.  Returns result in\n# func_to_host_file_result.\nfunc_convert_file_msys_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_msys_to_w32 \"$1\"\n    func_to_host_file_result=$func_convert_core_msys_to_w32_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_msys_to_w32\n\n\n# func_convert_file_cygwin_to_w32 ARG\n# Convert file name ARG from Cygwin to w32 format.  Returns result in\n# func_to_host_file_result.\nfunc_convert_file_cygwin_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    # because $build is cygwin, we call \"the\" cygpath in $PATH; no need to use\n    # LT_CYGPATH in this case.\n    func_to_host_file_result=`cygpath -m \"$1\"`\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_cygwin_to_w32\n\n\n# func_convert_file_nix_to_w32 ARG\n# Convert file name ARG from *nix to w32 format.  Requires a wine environment\n# and a working winepath. Returns result in func_to_host_file_result.\nfunc_convert_file_nix_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_file_wine_to_w32 \"$1\"\n    func_to_host_file_result=$func_convert_core_file_wine_to_w32_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_nix_to_w32\n\n\n# func_convert_file_msys_to_cygwin ARG\n# Convert file name ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.\n# Returns result in func_to_host_file_result.\nfunc_convert_file_msys_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_msys_to_w32 \"$1\"\n    func_cygpath -u \"$func_convert_core_msys_to_w32_result\"\n    func_to_host_file_result=$func_cygpath_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_msys_to_cygwin\n\n\n# func_convert_file_nix_to_cygwin ARG\n# Convert file name ARG from *nix to Cygwin format.  Requires Cygwin installed\n# in a wine environment, working winepath, and LT_CYGPATH set.  Returns result\n# in func_to_host_file_result.\nfunc_convert_file_nix_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.\n    func_convert_core_file_wine_to_w32 \"$1\"\n    func_cygpath -u \"$func_convert_core_file_wine_to_w32_result\"\n    func_to_host_file_result=$func_cygpath_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_nix_to_cygwin\n\n\n#############################################\n# $build to $host PATH CONVERSION FUNCTIONS #\n#############################################\n# invoked via '$to_host_path_cmd ARG'\n#\n# In each case, ARG is the path to be converted from $build to $host format.\n# The result will be available in $func_to_host_path_result.\n#\n# Path separators are also converted from $build format to $host format.  If\n# ARG begins or ends with a path separator character, it is preserved (but\n# converted to $host format) on output.\n#\n# All path conversion functions are named using the following convention:\n#   file name conversion function    : func_convert_file_X_to_Y ()\n#   path conversion function         : func_convert_path_X_to_Y ()\n# where, for any given $build/$host combination the 'X_to_Y' value is the\n# same.  If conversion functions are added for new $build/$host combinations,\n# the two new functions must follow this pattern, or func_init_to_host_path_cmd\n# will break.\n\n\n# func_init_to_host_path_cmd\n# Ensures that function \"pointer\" variable $to_host_path_cmd is set to the\n# appropriate value, based on the value of $to_host_file_cmd.\nto_host_path_cmd=\nfunc_init_to_host_path_cmd ()\n{\n  $debug_cmd\n\n  if test -z \"$to_host_path_cmd\"; then\n    func_stripname 'func_convert_file_' '' \"$to_host_file_cmd\"\n    to_host_path_cmd=func_convert_path_$func_stripname_result\n  fi\n}\n\n\n# func_to_host_path ARG\n# Converts the path ARG from $build format to $host format. Return result\n# in func_to_host_path_result.\nfunc_to_host_path ()\n{\n  $debug_cmd\n\n  func_init_to_host_path_cmd\n  $to_host_path_cmd \"$1\"\n}\n# end func_to_host_path\n\n\n# func_convert_path_noop ARG\n# Copy ARG to func_to_host_path_result.\nfunc_convert_path_noop ()\n{\n  func_to_host_path_result=$1\n}\n# end func_convert_path_noop\n\n\n# func_convert_path_msys_to_w32 ARG\n# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic\n# conversion to w32 is not available inside the cwrapper.  Returns result in\n# func_to_host_path_result.\nfunc_convert_path_msys_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # Remove leading and trailing path separator characters from ARG.  MSYS\n    # behavior is inconsistent here; cygpath turns them into '.;' and ';.';\n    # and winepath ignores them completely.\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_msys_to_w32 \"$func_to_host_path_tmp1\"\n    func_to_host_path_result=$func_convert_core_msys_to_w32_result\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_msys_to_w32\n\n\n# func_convert_path_cygwin_to_w32 ARG\n# Convert path ARG from Cygwin to w32 format.  Returns result in\n# func_to_host_file_result.\nfunc_convert_path_cygwin_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_to_host_path_result=`cygpath -m -p \"$func_to_host_path_tmp1\"`\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_cygwin_to_w32\n\n\n# func_convert_path_nix_to_w32 ARG\n# Convert path ARG from *nix to w32 format.  Requires a wine environment and\n# a working winepath.  Returns result in func_to_host_file_result.\nfunc_convert_path_nix_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_path_wine_to_w32 \"$func_to_host_path_tmp1\"\n    func_to_host_path_result=$func_convert_core_path_wine_to_w32_result\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_nix_to_w32\n\n\n# func_convert_path_msys_to_cygwin ARG\n# Convert path ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.\n# Returns result in func_to_host_file_result.\nfunc_convert_path_msys_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_msys_to_w32 \"$func_to_host_path_tmp1\"\n    func_cygpath -u -p \"$func_convert_core_msys_to_w32_result\"\n    func_to_host_path_result=$func_cygpath_result\n    func_convert_path_check : : \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" : \"$1\"\n  fi\n}\n# end func_convert_path_msys_to_cygwin\n\n\n# func_convert_path_nix_to_cygwin ARG\n# Convert path ARG from *nix to Cygwin format.  Requires Cygwin installed in a\n# a wine environment, working winepath, and LT_CYGPATH set.  Returns result in\n# func_to_host_file_result.\nfunc_convert_path_nix_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # Remove leading and trailing path separator characters from\n    # ARG. msys behavior is inconsistent here, cygpath turns them\n    # into '.;' and ';.', and winepath ignores them completely.\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_path_wine_to_w32 \"$func_to_host_path_tmp1\"\n    func_cygpath -u -p \"$func_convert_core_path_wine_to_w32_result\"\n    func_to_host_path_result=$func_cygpath_result\n    func_convert_path_check : : \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" : \"$1\"\n  fi\n}\n# end func_convert_path_nix_to_cygwin\n\n\n# func_dll_def_p FILE\n# True iff FILE is a Windows DLL '.def' file.\n# Keep in sync with _LT_DLL_DEF_P in libtool.m4\nfunc_dll_def_p ()\n{\n  $debug_cmd\n\n  func_dll_def_p_tmp=`$SED -n \\\n    -e 's/^[\t ]*//' \\\n    -e '/^\\(;.*\\)*$/d' \\\n    -e 's/^\\(EXPORTS\\|LIBRARY\\)\\([\t ].*\\)*$/DEF/p' \\\n    -e q \\\n    \"$1\"`\n  test DEF = \"$func_dll_def_p_tmp\"\n}\n\n\n# func_mode_compile arg...\nfunc_mode_compile ()\n{\n    $debug_cmd\n\n    # Get the compilation command and the source file.\n    base_compile=\n    srcfile=$nonopt  #  always keep a non-empty value in \"srcfile\"\n    suppress_opt=yes\n    suppress_output=\n    arg_mode=normal\n    libobj=\n    later=\n    pie_flag=\n\n    for arg\n    do\n      case $arg_mode in\n      arg  )\n\t# do not \"continue\".  Instead, add this to base_compile\n\tlastarg=$arg\n\targ_mode=normal\n\t;;\n\n      target )\n\tlibobj=$arg\n\targ_mode=normal\n\tcontinue\n\t;;\n\n      normal )\n\t# Accept any command-line options.\n\tcase $arg in\n\t-o)\n\t  test -n \"$libobj\" && \\\n\t    func_fatal_error \"you cannot specify '-o' more than once\"\n\t  arg_mode=target\n\t  continue\n\t  ;;\n\n\t-pie | -fpie | -fPIE)\n          func_append pie_flag \" $arg\"\n\t  continue\n\t  ;;\n\n\t-shared | -static | -prefer-pic | -prefer-non-pic)\n\t  func_append later \" $arg\"\n\t  continue\n\t  ;;\n\n\t-no-suppress)\n\t  suppress_opt=no\n\t  continue\n\t  ;;\n\n\t-Xcompiler)\n\t  arg_mode=arg  #  the next one goes into the \"base_compile\" arg list\n\t  continue      #  The current \"srcfile\" will either be retained or\n\t  ;;            #  replaced later.  I would guess that would be a bug.\n\n\t-Wc,*)\n\t  func_stripname '-Wc,' '' \"$arg\"\n\t  args=$func_stripname_result\n\t  lastarg=\n\t  save_ifs=$IFS; IFS=,\n\t  for arg in $args; do\n\t    IFS=$save_ifs\n\t    func_append_quoted lastarg \"$arg\"\n\t  done\n\t  IFS=$save_ifs\n\t  func_stripname ' ' '' \"$lastarg\"\n\t  lastarg=$func_stripname_result\n\n\t  # Add the arguments to base_compile.\n\t  func_append base_compile \" $lastarg\"\n\t  continue\n\t  ;;\n\n\t*)\n\t  # Accept the current argument as the source file.\n\t  # The previous \"srcfile\" becomes the current argument.\n\t  #\n\t  lastarg=$srcfile\n\t  srcfile=$arg\n\t  ;;\n\tesac  #  case $arg\n\t;;\n      esac    #  case $arg_mode\n\n      # Aesthetically quote the previous argument.\n      func_append_quoted base_compile \"$lastarg\"\n    done # for arg\n\n    case $arg_mode in\n    arg)\n      func_fatal_error \"you must specify an argument for -Xcompile\"\n      ;;\n    target)\n      func_fatal_error \"you must specify a target with '-o'\"\n      ;;\n    *)\n      # Get the name of the library object.\n      test -z \"$libobj\" && {\n\tfunc_basename \"$srcfile\"\n\tlibobj=$func_basename_result\n      }\n      ;;\n    esac\n\n    # Recognize several different file suffixes.\n    # If the user specifies -o file.o, it is replaced with file.lo\n    case $libobj in\n    *.[cCFSifmso] | \\\n    *.ada | *.adb | *.ads | *.asm | \\\n    *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \\\n    *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)\n      func_xform \"$libobj\"\n      libobj=$func_xform_result\n      ;;\n    esac\n\n    case $libobj in\n    *.lo) func_lo2o \"$libobj\"; obj=$func_lo2o_result ;;\n    *)\n      func_fatal_error \"cannot determine name of library object from '$libobj'\"\n      ;;\n    esac\n\n    func_infer_tag $base_compile\n\n    for arg in $later; do\n      case $arg in\n      -shared)\n\ttest yes = \"$build_libtool_libs\" \\\n\t  || func_fatal_configuration \"cannot build a shared library\"\n\tbuild_old_libs=no\n\tcontinue\n\t;;\n\n      -static)\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tcontinue\n\t;;\n\n      -prefer-pic)\n\tpic_mode=yes\n\tcontinue\n\t;;\n\n      -prefer-non-pic)\n\tpic_mode=no\n\tcontinue\n\t;;\n      esac\n    done\n\n    func_quote_for_eval \"$libobj\"\n    test \"X$libobj\" != \"X$func_quote_for_eval_result\" \\\n      && $ECHO \"X$libobj\" | $GREP '[]~#^*{};<>?\"'\"'\"'\t &()|`$[]' \\\n      && func_warning \"libobj name '$libobj' may not contain shell special characters.\"\n    func_dirname_and_basename \"$obj\" \"/\" \"\"\n    objname=$func_basename_result\n    xdir=$func_dirname_result\n    lobj=$xdir$objdir/$objname\n\n    test -z \"$base_compile\" && \\\n      func_fatal_help \"you must specify a compilation command\"\n\n    # Delete any leftover library objects.\n    if test yes = \"$build_old_libs\"; then\n      removelist=\"$obj $lobj $libobj ${libobj}T\"\n    else\n      removelist=\"$lobj $libobj ${libobj}T\"\n    fi\n\n    # On Cygwin there's no \"real\" PIC flag so we must build both object types\n    case $host_os in\n    cygwin* | mingw* | pw32* | os2* | cegcc*)\n      pic_mode=default\n      ;;\n    esac\n    if test no = \"$pic_mode\" && test pass_all != \"$deplibs_check_method\"; then\n      # non-PIC code in shared libraries is not supported\n      pic_mode=default\n    fi\n\n    # Calculate the filename of the output object if compiler does\n    # not support -o with -c\n    if test no = \"$compiler_c_o\"; then\n      output_obj=`$ECHO \"$srcfile\" | $SED 's%^.*/%%; s%\\.[^.]*$%%'`.$objext\n      lockfile=$output_obj.lock\n    else\n      output_obj=\n      need_locks=no\n      lockfile=\n    fi\n\n    # Lock this critical section if it is needed\n    # We use this script file to make the link, it avoids creating a new file\n    if test yes = \"$need_locks\"; then\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    elif test warn = \"$need_locks\"; then\n      if test -f \"$lockfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile exists and contains:\n`cat $lockfile 2>/dev/null`\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n      func_append removelist \" $output_obj\"\n      $ECHO \"$srcfile\" > \"$lockfile\"\n    fi\n\n    $opt_dry_run || $RM $removelist\n    func_append removelist \" $lockfile\"\n    trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15\n\n    func_to_tool_file \"$srcfile\" func_convert_file_msys_to_w32\n    srcfile=$func_to_tool_file_result\n    func_quote_for_eval \"$srcfile\"\n    qsrcfile=$func_quote_for_eval_result\n\n    # Only build a PIC object if we are building libtool libraries.\n    if test yes = \"$build_libtool_libs\"; then\n      # Without this assignment, base_compile gets emptied.\n      fbsd_hideous_sh_bug=$base_compile\n\n      if test no != \"$pic_mode\"; then\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      else\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile\"\n      fi\n\n      func_mkdir_p \"$xdir$objdir\"\n\n      if test -z \"$output_obj\"; then\n\t# Place PIC objects in $objdir\n\tfunc_append command \" -o $lobj\"\n      fi\n\n      func_show_eval_locale \"$command\"\t\\\n          'test -n \"$output_obj\" && $RM $removelist; exit $EXIT_FAILURE'\n\n      if test warn = \"$need_locks\" &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed, then go on to compile the next one\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$lobj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$lobj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n\n      # Allow error messages only from the first compilation.\n      if test yes = \"$suppress_opt\"; then\n\tsuppress_output=' >/dev/null 2>&1'\n      fi\n    fi\n\n    # Only build a position-dependent object if we build old libraries.\n    if test yes = \"$build_old_libs\"; then\n      if test yes != \"$pic_mode\"; then\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile$pie_flag\"\n      else\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      fi\n      if test yes = \"$compiler_c_o\"; then\n\tfunc_append command \" -o $obj\"\n      fi\n\n      # Suppress compiler output if we already did a PIC compilation.\n      func_append command \"$suppress_output\"\n      func_show_eval_locale \"$command\" \\\n        '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'\n\n      if test warn = \"$need_locks\" &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$obj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$obj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n    fi\n\n    $opt_dry_run || {\n      func_write_libtool_object \"$libobj\" \"$objdir/$objname\" \"$objname\"\n\n      # Unlock the critical section if it was locked\n      if test no != \"$need_locks\"; then\n\tremovelist=$lockfile\n        $RM \"$lockfile\"\n      fi\n    }\n\n    exit $EXIT_SUCCESS\n}\n\n$opt_help || {\n  test compile = \"$opt_mode\" && func_mode_compile ${1+\"$@\"}\n}\n\nfunc_mode_help ()\n{\n    # We need to display help for each of the modes.\n    case $opt_mode in\n      \"\")\n        # Generic help is extracted from the usage comments\n        # at the start of this file.\n        func_help\n        ;;\n\n      clean)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...\n\nRemove files from the build directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed\nto RM.\n\nIf FILE is a libtool library, object or program, all the files associated\nwith it are deleted. Otherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      compile)\n      $ECHO \\\n\"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE\n\nCompile a source file into a libtool library object.\n\nThis mode accepts the following additional options:\n\n  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE\n  -no-suppress      do not suppress compiler output for multiple passes\n  -prefer-pic       try to build PIC objects only\n  -prefer-non-pic   try to build non-PIC objects only\n  -shared           do not build a '.o' file suitable for static linking\n  -static           only build a '.o' file suitable for static linking\n  -Wc,FLAG          pass FLAG directly to the compiler\n\nCOMPILE-COMMAND is a command to be used in creating a 'standard' object file\nfrom the given SOURCEFILE.\n\nThe output file name is determined by removing the directory component from\nSOURCEFILE, then substituting the C source code suffix '.c' with the\nlibrary object suffix, '.lo'.\"\n        ;;\n\n      execute)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...\n\nAutomatically set library path, then run a program.\n\nThis mode accepts the following additional options:\n\n  -dlopen FILE      add the directory containing FILE to the library path\n\nThis mode sets the library path environment variable according to '-dlopen'\nflags.\n\nIf any of the ARGS are libtool executable wrappers, then they are translated\ninto their corresponding uninstalled binary, and any of their required library\ndirectories are added to the library path.\n\nThen, COMMAND is executed, with ARGS as arguments.\"\n        ;;\n\n      finish)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=finish [LIBDIR]...\n\nComplete the installation of libtool libraries.\n\nEach LIBDIR is a directory that contains libtool libraries.\n\nThe commands that this mode executes may require superuser privileges.  Use\nthe '--dry-run' option if you just want to see what would be executed.\"\n        ;;\n\n      install)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...\n\nInstall executables or libraries.\n\nINSTALL-COMMAND is the installation command.  The first component should be\neither the 'install' or 'cp' program.\n\nThe following components of INSTALL-COMMAND are treated specially:\n\n  -inst-prefix-dir PREFIX-DIR  Use PREFIX-DIR as a staging area for installation\n\nThe rest of the components are interpreted as arguments to that command (only\nBSD-compatible install options are recognized).\"\n        ;;\n\n      link)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=link LINK-COMMAND...\n\nLink object files or libraries together to form another library, or to\ncreate an executable program.\n\nLINK-COMMAND is a command using the C compiler that you would use to create\na program from several object files.\n\nThe following components of LINK-COMMAND are treated specially:\n\n  -all-static       do not do any dynamic linking at all\n  -avoid-version    do not add a version suffix if possible\n  -bindir BINDIR    specify path to binaries directory (for systems where\n                    libraries must be found in the PATH setting at runtime)\n  -dlopen FILE      '-dlpreopen' FILE if it cannot be dlopened at runtime\n  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols\n  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)\n  -export-symbols SYMFILE\n                    try to export only the symbols listed in SYMFILE\n  -export-symbols-regex REGEX\n                    try to export only the symbols matching REGEX\n  -LLIBDIR          search LIBDIR for required installed libraries\n  -lNAME            OUTPUT-FILE requires the installed library libNAME\n  -module           build a library that can dlopened\n  -no-fast-install  disable the fast-install mode\n  -no-install       link a not-installable executable\n  -no-undefined     declare that a library does not refer to external symbols\n  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects\n  -objectlist FILE  use a list of object files found in FILE to specify objects\n  -os2dllname NAME  force a short DLL name on OS/2 (no effect on other OSes)\n  -precious-files-regex REGEX\n                    don't remove output files matching REGEX\n  -release RELEASE  specify package release information\n  -rpath LIBDIR     the created library will eventually be installed in LIBDIR\n  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries\n  -shared           only do dynamic linking of libtool libraries\n  -shrext SUFFIX    override the standard shared library file extension\n  -static           do not do any dynamic linking of uninstalled libtool libraries\n  -static-libtool-libs\n                    do not do any dynamic linking of libtool libraries\n  -version-info CURRENT[:REVISION[:AGE]]\n                    specify library version info [each variable defaults to 0]\n  -weak LIBNAME     declare that the target provides the LIBNAME interface\n  -Wc,FLAG\n  -Xcompiler FLAG   pass linker-specific FLAG directly to the compiler\n  -Wl,FLAG\n  -Xlinker FLAG     pass linker-specific FLAG directly to the linker\n  -XCClinker FLAG   pass link-specific FLAG to the compiler driver (CC)\n\nAll other options (arguments beginning with '-') are ignored.\n\nEvery other argument is treated as a filename.  Files ending in '.la' are\ntreated as uninstalled libtool libraries, other files are standard or library\nobject files.\n\nIf the OUTPUT-FILE ends in '.la', then a libtool library is created,\nonly library objects ('.lo' files) may be specified, and '-rpath' is\nrequired, except when creating a convenience library.\n\nIf OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created\nusing 'ar' and 'ranlib', or on Windows using 'lib'.\n\nIf OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file\nis created, otherwise an executable program is created.\"\n        ;;\n\n      uninstall)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...\n\nRemove libraries from an installation directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed\nto RM.\n\nIf FILE is a libtool library, all the files associated with it are deleted.\nOtherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      *)\n        func_fatal_help \"invalid operation mode '$opt_mode'\"\n        ;;\n    esac\n\n    echo\n    $ECHO \"Try '$progname --help' for more information about other modes.\"\n}\n\n# Now that we've collected a possible --mode arg, show help if necessary\nif $opt_help; then\n  if test : = \"$opt_help\"; then\n    func_mode_help\n  else\n    {\n      func_help noexit\n      for opt_mode in compile link execute install finish uninstall clean; do\n\tfunc_mode_help\n      done\n    } | $SED -n '1p; 2,$s/^Usage:/  or: /p'\n    {\n      func_help noexit\n      for opt_mode in compile link execute install finish uninstall clean; do\n\techo\n\tfunc_mode_help\n      done\n    } |\n    $SED '1d\n      /^When reporting/,/^Report/{\n\tH\n\td\n      }\n      $x\n      /information about other modes/d\n      /more detailed .*MODE/d\n      s/^Usage:.*--mode=\\([^ ]*\\) .*/Description of \\1 mode:/'\n  fi\n  exit $?\nfi\n\n\n# func_mode_execute arg...\nfunc_mode_execute ()\n{\n    $debug_cmd\n\n    # The first argument is the command name.\n    cmd=$nonopt\n    test -z \"$cmd\" && \\\n      func_fatal_help \"you must specify a COMMAND\"\n\n    # Handle -dlopen flags immediately.\n    for file in $opt_dlopen; do\n      test -f \"$file\" \\\n\t|| func_fatal_help \"'$file' is not a file\"\n\n      dir=\n      case $file in\n      *.la)\n\tfunc_resolve_sysroot \"$file\"\n\tfile=$func_resolve_sysroot_result\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"'$lib' is not a valid libtool archive\"\n\n\t# Read the libtool library.\n\tdlname=\n\tlibrary_names=\n\tfunc_source \"$file\"\n\n\t# Skip this library if it cannot be dlopened.\n\tif test -z \"$dlname\"; then\n\t  # Warn if it was a shared library.\n\t  test -n \"$library_names\" && \\\n\t    func_warning \"'$file' was not linked with '-export-dynamic'\"\n\t  continue\n\tfi\n\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=$func_dirname_result\n\n\tif test -f \"$dir/$objdir/$dlname\"; then\n\t  func_append dir \"/$objdir\"\n\telse\n\t  if test ! -f \"$dir/$dlname\"; then\n\t    func_fatal_error \"cannot find '$dlname' in '$dir' or '$dir/$objdir'\"\n\t  fi\n\tfi\n\t;;\n\n      *.lo)\n\t# Just add the directory containing the .lo file.\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=$func_dirname_result\n\t;;\n\n      *)\n\tfunc_warning \"'-dlopen' is ignored for non-libtool libraries and objects\"\n\tcontinue\n\t;;\n      esac\n\n      # Get the absolute pathname.\n      absdir=`cd \"$dir\" && pwd`\n      test -n \"$absdir\" && dir=$absdir\n\n      # Now add the directory to shlibpath_var.\n      if eval \"test -z \\\"\\$$shlibpath_var\\\"\"; then\n\teval \"$shlibpath_var=\\\"\\$dir\\\"\"\n      else\n\teval \"$shlibpath_var=\\\"\\$dir:\\$$shlibpath_var\\\"\"\n      fi\n    done\n\n    # This variable tells wrapper scripts just to set shlibpath_var\n    # rather than running their programs.\n    libtool_execute_magic=$magic\n\n    # Check if any of the arguments is a wrapper script.\n    args=\n    for file\n    do\n      case $file in\n      -* | *.la | *.lo ) ;;\n      *)\n\t# Do a test to see if this is really a libtool program.\n\tif func_ltwrapper_script_p \"$file\"; then\n\t  func_source \"$file\"\n\t  # Transform arg to wrapped name.\n\t  file=$progdir/$program\n\telif func_ltwrapper_executable_p \"$file\"; then\n\t  func_ltwrapper_scriptname \"$file\"\n\t  func_source \"$func_ltwrapper_scriptname_result\"\n\t  # Transform arg to wrapped name.\n\t  file=$progdir/$program\n\tfi\n\t;;\n      esac\n      # Quote arguments (to preserve shell metacharacters).\n      func_append_quoted args \"$file\"\n    done\n\n    if $opt_dry_run; then\n      # Display what would be done.\n      if test -n \"$shlibpath_var\"; then\n\teval \"\\$ECHO \\\"\\$shlibpath_var=\\$$shlibpath_var\\\"\"\n\techo \"export $shlibpath_var\"\n      fi\n      $ECHO \"$cmd$args\"\n      exit $EXIT_SUCCESS\n    else\n      if test -n \"$shlibpath_var\"; then\n\t# Export the shlibpath_var.\n\teval \"export $shlibpath_var\"\n      fi\n\n      # Restore saved environment variables\n      for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\n      do\n\teval \"if test \\\"\\${save_$lt_var+set}\\\" = set; then\n                $lt_var=\\$save_$lt_var; export $lt_var\n\t      else\n\t\t$lt_unset $lt_var\n\t      fi\"\n      done\n\n      # Now prepare to actually exec the command.\n      exec_cmd=\\$cmd$args\n    fi\n}\n\ntest execute = \"$opt_mode\" && func_mode_execute ${1+\"$@\"}\n\n\n# func_mode_finish arg...\nfunc_mode_finish ()\n{\n    $debug_cmd\n\n    libs=\n    libdirs=\n    admincmds=\n\n    for opt in \"$nonopt\" ${1+\"$@\"}\n    do\n      if test -d \"$opt\"; then\n\tfunc_append libdirs \" $opt\"\n\n      elif test -f \"$opt\"; then\n\tif func_lalib_unsafe_p \"$opt\"; then\n\t  func_append libs \" $opt\"\n\telse\n\t  func_warning \"'$opt' is not a valid libtool archive\"\n\tfi\n\n      else\n\tfunc_fatal_error \"invalid argument '$opt'\"\n      fi\n    done\n\n    if test -n \"$libs\"; then\n      if test -n \"$lt_sysroot\"; then\n        sysroot_regex=`$ECHO \"$lt_sysroot\" | $SED \"$sed_make_literal_regex\"`\n        sysroot_cmd=\"s/\\([ ']\\)$sysroot_regex/\\1/g;\"\n      else\n        sysroot_cmd=\n      fi\n\n      # Remove sysroot references\n      if $opt_dry_run; then\n        for lib in $libs; do\n          echo \"removing references to $lt_sysroot and '=' prefixes from $lib\"\n        done\n      else\n        tmpdir=`func_mktempdir`\n        for lib in $libs; do\n\t  $SED -e \"$sysroot_cmd s/\\([ ']-[LR]\\)=/\\1/g; s/\\([ ']\\)=/\\1/g\" $lib \\\n\t    > $tmpdir/tmp-la\n\t  mv -f $tmpdir/tmp-la $lib\n\tdone\n        ${RM}r \"$tmpdir\"\n      fi\n    fi\n\n    if test -n \"$finish_cmds$finish_eval\" && test -n \"$libdirs\"; then\n      for libdir in $libdirs; do\n\tif test -n \"$finish_cmds\"; then\n\t  # Do each command in the finish commands.\n\t  func_execute_cmds \"$finish_cmds\" 'admincmds=\"$admincmds\n'\"$cmd\"'\"'\n\tfi\n\tif test -n \"$finish_eval\"; then\n\t  # Do the single finish_eval.\n\t  eval cmds=\\\"$finish_eval\\\"\n\t  $opt_dry_run || eval \"$cmds\" || func_append admincmds \"\n       $cmds\"\n\tfi\n      done\n    fi\n\n    # Exit here if they wanted silent mode.\n    $opt_quiet && exit $EXIT_SUCCESS\n\n    if test -n \"$finish_cmds$finish_eval\" && test -n \"$libdirs\"; then\n      echo \"----------------------------------------------------------------------\"\n      echo \"Libraries have been installed in:\"\n      for libdir in $libdirs; do\n\t$ECHO \"   $libdir\"\n      done\n      echo\n      echo \"If you ever happen to want to link against installed libraries\"\n      echo \"in a given directory, LIBDIR, you must either use libtool, and\"\n      echo \"specify the full pathname of the library, or use the '-LLIBDIR'\"\n      echo \"flag during linking and do at least one of the following:\"\n      if test -n \"$shlibpath_var\"; then\n\techo \"   - add LIBDIR to the '$shlibpath_var' environment variable\"\n\techo \"     during execution\"\n      fi\n      if test -n \"$runpath_var\"; then\n\techo \"   - add LIBDIR to the '$runpath_var' environment variable\"\n\techo \"     during linking\"\n      fi\n      if test -n \"$hardcode_libdir_flag_spec\"; then\n\tlibdir=LIBDIR\n\teval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\n\t$ECHO \"   - use the '$flag' linker flag\"\n      fi\n      if test -n \"$admincmds\"; then\n\t$ECHO \"   - have your system administrator run these commands:$admincmds\"\n      fi\n      if test -f /etc/ld.so.conf; then\n\techo \"   - have your system administrator add LIBDIR to '/etc/ld.so.conf'\"\n      fi\n      echo\n\n      echo \"See any operating system documentation about shared libraries for\"\n      case $host in\n\tsolaris2.[6789]|solaris2.1[0-9])\n\t  echo \"more information, such as the ld(1), crle(1) and ld.so(8) manual\"\n\t  echo \"pages.\"\n\t  ;;\n\t*)\n\t  echo \"more information, such as the ld(1) and ld.so(8) manual pages.\"\n\t  ;;\n      esac\n      echo \"----------------------------------------------------------------------\"\n    fi\n    exit $EXIT_SUCCESS\n}\n\ntest finish = \"$opt_mode\" && func_mode_finish ${1+\"$@\"}\n\n\n# func_mode_install arg...\nfunc_mode_install ()\n{\n    $debug_cmd\n\n    # There may be an optional sh(1) argument at the beginning of\n    # install_prog (especially on Windows NT).\n    if test \"$SHELL\" = \"$nonopt\" || test /bin/sh = \"$nonopt\" ||\n       # Allow the use of GNU shtool's install command.\n       case $nonopt in *shtool*) :;; *) false;; esac\n    then\n      # Aesthetically quote it.\n      func_quote_for_eval \"$nonopt\"\n      install_prog=\"$func_quote_for_eval_result \"\n      arg=$1\n      shift\n    else\n      install_prog=\n      arg=$nonopt\n    fi\n\n    # The real first argument should be the name of the installation program.\n    # Aesthetically quote it.\n    func_quote_for_eval \"$arg\"\n    func_append install_prog \"$func_quote_for_eval_result\"\n    install_shared_prog=$install_prog\n    case \" $install_prog \" in\n      *[\\\\\\ /]cp\\ *) install_cp=: ;;\n      *) install_cp=false ;;\n    esac\n\n    # We need to accept at least all the BSD install flags.\n    dest=\n    files=\n    opts=\n    prev=\n    install_type=\n    isdir=false\n    stripme=\n    no_mode=:\n    for arg\n    do\n      arg2=\n      if test -n \"$dest\"; then\n\tfunc_append files \" $dest\"\n\tdest=$arg\n\tcontinue\n      fi\n\n      case $arg in\n      -d) isdir=: ;;\n      -f)\n\tif $install_cp; then :; else\n\t  prev=$arg\n\tfi\n\t;;\n      -g | -m | -o)\n\tprev=$arg\n\t;;\n      -s)\n\tstripme=\" -s\"\n\tcontinue\n\t;;\n      -*)\n\t;;\n      *)\n\t# If the previous option needed an argument, then skip it.\n\tif test -n \"$prev\"; then\n\t  if test X-m = \"X$prev\" && test -n \"$install_override_mode\"; then\n\t    arg2=$install_override_mode\n\t    no_mode=false\n\t  fi\n\t  prev=\n\telse\n\t  dest=$arg\n\t  continue\n\tfi\n\t;;\n      esac\n\n      # Aesthetically quote the argument.\n      func_quote_for_eval \"$arg\"\n      func_append install_prog \" $func_quote_for_eval_result\"\n      if test -n \"$arg2\"; then\n\tfunc_quote_for_eval \"$arg2\"\n      fi\n      func_append install_shared_prog \" $func_quote_for_eval_result\"\n    done\n\n    test -z \"$install_prog\" && \\\n      func_fatal_help \"you must specify an install program\"\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the '$prev' option requires an argument\"\n\n    if test -n \"$install_override_mode\" && $no_mode; then\n      if $install_cp; then :; else\n\tfunc_quote_for_eval \"$install_override_mode\"\n\tfunc_append install_shared_prog \" -m $func_quote_for_eval_result\"\n      fi\n    fi\n\n    if test -z \"$files\"; then\n      if test -z \"$dest\"; then\n\tfunc_fatal_help \"no file or destination specified\"\n      else\n\tfunc_fatal_help \"you must specify a destination\"\n      fi\n    fi\n\n    # Strip any trailing slash from the destination.\n    func_stripname '' '/' \"$dest\"\n    dest=$func_stripname_result\n\n    # Check to see that the destination is a directory.\n    test -d \"$dest\" && isdir=:\n    if $isdir; then\n      destdir=$dest\n      destname=\n    else\n      func_dirname_and_basename \"$dest\" \"\" \".\"\n      destdir=$func_dirname_result\n      destname=$func_basename_result\n\n      # Not a directory, so check to see that there is only one file specified.\n      set dummy $files; shift\n      test \"$#\" -gt 1 && \\\n\tfunc_fatal_help \"'$dest' is not a directory\"\n    fi\n    case $destdir in\n    [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n    *)\n      for file in $files; do\n\tcase $file in\n\t*.lo) ;;\n\t*)\n\t  func_fatal_help \"'$destdir' must be an absolute directory name\"\n\t  ;;\n\tesac\n      done\n      ;;\n    esac\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=$magic\n\n    staticlibs=\n    future_libdirs=\n    current_libdirs=\n    for file in $files; do\n\n      # Do each installation.\n      case $file in\n      *.$libext)\n\t# Do the static libraries later.\n\tfunc_append staticlibs \" $file\"\n\t;;\n\n      *.la)\n\tfunc_resolve_sysroot \"$file\"\n\tfile=$func_resolve_sysroot_result\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"'$file' is not a valid libtool archive\"\n\n\tlibrary_names=\n\told_library=\n\trelink_command=\n\tfunc_source \"$file\"\n\n\t# Add the libdir to current_libdirs if it is the destination.\n\tif test \"X$destdir\" = \"X$libdir\"; then\n\t  case \"$current_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append current_libdirs \" $libdir\" ;;\n\t  esac\n\telse\n\t  # Note the libdir as a future libdir.\n\t  case \"$future_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append future_libdirs \" $libdir\" ;;\n\t  esac\n\tfi\n\n\tfunc_dirname \"$file\" \"/\" \"\"\n\tdir=$func_dirname_result\n\tfunc_append dir \"$objdir\"\n\n\tif test -n \"$relink_command\"; then\n\t  # Determine the prefix the user has applied to our future dir.\n\t  inst_prefix_dir=`$ECHO \"$destdir\" | $SED -e \"s%$libdir\\$%%\"`\n\n\t  # Don't allow the user to place us outside of our expected\n\t  # location b/c this prevents finding dependent libraries that\n\t  # are installed to the same prefix.\n\t  # At present, this check doesn't affect windows .dll's that\n\t  # are installed into $libdir/../bin (currently, that works fine)\n\t  # but it's something to keep an eye on.\n\t  test \"$inst_prefix_dir\" = \"$destdir\" && \\\n\t    func_fatal_error \"error: cannot install '$file' to a directory not ending in $libdir\"\n\n\t  if test -n \"$inst_prefix_dir\"; then\n\t    # Stick the inst_prefix_dir data into the link command.\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%\"`\n\t  else\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%%\"`\n\t  fi\n\n\t  func_warning \"relinking '$file'\"\n\t  func_show_eval \"$relink_command\" \\\n\t    'func_fatal_error \"error: relink '\\''$file'\\'' with the above command before installing it\"'\n\tfi\n\n\t# See the names of the shared library.\n\tset dummy $library_names; shift\n\tif test -n \"$1\"; then\n\t  realname=$1\n\t  shift\n\n\t  srcname=$realname\n\t  test -n \"$relink_command\" && srcname=${realname}T\n\n\t  # Install the shared library and build the symlinks.\n\t  func_show_eval \"$install_shared_prog $dir/$srcname $destdir/$realname\" \\\n\t      'exit $?'\n\t  tstripme=$stripme\n\t  case $host_os in\n\t  cygwin* | mingw* | pw32* | cegcc*)\n\t    case $realname in\n\t    *.dll.a)\n\t      tstripme=\n\t      ;;\n\t    esac\n\t    ;;\n\t  os2*)\n\t    case $realname in\n\t    *_dll.a)\n\t      tstripme=\n\t      ;;\n\t    esac\n\t    ;;\n\t  esac\n\t  if test -n \"$tstripme\" && test -n \"$striplib\"; then\n\t    func_show_eval \"$striplib $destdir/$realname\" 'exit $?'\n\t  fi\n\n\t  if test \"$#\" -gt 0; then\n\t    # Delete the old symlinks, and create new ones.\n\t    # Try 'ln -sf' first, because the 'ln' binary might depend on\n\t    # the symlink we replace!  Solaris /bin/ln does not understand -f,\n\t    # so we also need to try rm && ln -s.\n\t    for linkname\n\t    do\n\t      test \"$linkname\" != \"$realname\" \\\n\t\t&& func_show_eval \"(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })\"\n\t    done\n\t  fi\n\n\t  # Do each command in the postinstall commands.\n\t  lib=$destdir/$realname\n\t  func_execute_cmds \"$postinstall_cmds\" 'exit $?'\n\tfi\n\n\t# Install the pseudo-library for information purposes.\n\tfunc_basename \"$file\"\n\tname=$func_basename_result\n\tinstname=$dir/${name}i\n\tfunc_show_eval \"$install_prog $instname $destdir/$name\" 'exit $?'\n\n\t# Maybe install the static library, too.\n\ttest -n \"$old_library\" && func_append staticlibs \" $dir/$old_library\"\n\t;;\n\n      *.lo)\n\t# Install (i.e. copy) a libtool object.\n\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=$destdir/$destname\n\telse\n\t  func_basename \"$file\"\n\t  destfile=$func_basename_result\n\t  destfile=$destdir/$destfile\n\tfi\n\n\t# Deduce the name of the destination old-style object file.\n\tcase $destfile in\n\t*.lo)\n\t  func_lo2o \"$destfile\"\n\t  staticdest=$func_lo2o_result\n\t  ;;\n\t*.$objext)\n\t  staticdest=$destfile\n\t  destfile=\n\t  ;;\n\t*)\n\t  func_fatal_help \"cannot copy a libtool object to '$destfile'\"\n\t  ;;\n\tesac\n\n\t# Install the libtool object if requested.\n\ttest -n \"$destfile\" && \\\n\t  func_show_eval \"$install_prog $file $destfile\" 'exit $?'\n\n\t# Install the old object if enabled.\n\tif test yes = \"$build_old_libs\"; then\n\t  # Deduce the name of the old-style object file.\n\t  func_lo2o \"$file\"\n\t  staticobj=$func_lo2o_result\n\t  func_show_eval \"$install_prog \\$staticobj \\$staticdest\" 'exit $?'\n\tfi\n\texit $EXIT_SUCCESS\n\t;;\n\n      *)\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=$destdir/$destname\n\telse\n\t  func_basename \"$file\"\n\t  destfile=$func_basename_result\n\t  destfile=$destdir/$destfile\n\tfi\n\n\t# If the file is missing, and there is a .exe on the end, strip it\n\t# because it is most likely a libtool script we actually want to\n\t# install\n\tstripped_ext=\n\tcase $file in\n\t  *.exe)\n\t    if test ! -f \"$file\"; then\n\t      func_stripname '' '.exe' \"$file\"\n\t      file=$func_stripname_result\n\t      stripped_ext=.exe\n\t    fi\n\t    ;;\n\tesac\n\n\t# Do a test to see if this is really a libtool program.\n\tcase $host in\n\t*cygwin* | *mingw*)\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      wrapper=$func_ltwrapper_scriptname_result\n\t    else\n\t      func_stripname '' '.exe' \"$file\"\n\t      wrapper=$func_stripname_result\n\t    fi\n\t    ;;\n\t*)\n\t    wrapper=$file\n\t    ;;\n\tesac\n\tif func_ltwrapper_script_p \"$wrapper\"; then\n\t  notinst_deplibs=\n\t  relink_command=\n\n\t  func_source \"$wrapper\"\n\n\t  # Check the variables that should have been set.\n\t  test -z \"$generated_by_libtool_version\" && \\\n\t    func_fatal_error \"invalid libtool wrapper script '$wrapper'\"\n\n\t  finalize=:\n\t  for lib in $notinst_deplibs; do\n\t    # Check to see that each library is installed.\n\t    libdir=\n\t    if test -f \"$lib\"; then\n\t      func_source \"$lib\"\n\t    fi\n\t    libfile=$libdir/`$ECHO \"$lib\" | $SED 's%^.*/%%g'`\n\t    if test -n \"$libdir\" && test ! -f \"$libfile\"; then\n\t      func_warning \"'$lib' has not been installed in '$libdir'\"\n\t      finalize=false\n\t    fi\n\t  done\n\n\t  relink_command=\n\t  func_source \"$wrapper\"\n\n\t  outputname=\n\t  if test no = \"$fast_install\" && test -n \"$relink_command\"; then\n\t    $opt_dry_run || {\n\t      if $finalize; then\n\t        tmpdir=`func_mktempdir`\n\t\tfunc_basename \"$file$stripped_ext\"\n\t\tfile=$func_basename_result\n\t        outputname=$tmpdir/$file\n\t        # Replace the output file specification.\n\t        relink_command=`$ECHO \"$relink_command\" | $SED 's%@OUTPUT@%'\"$outputname\"'%g'`\n\n\t        $opt_quiet || {\n\t          func_quote_for_expand \"$relink_command\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t        }\n\t        if eval \"$relink_command\"; then :\n\t          else\n\t\t  func_error \"error: relink '$file' with the above command before installing it\"\n\t\t  $opt_dry_run || ${RM}r \"$tmpdir\"\n\t\t  continue\n\t        fi\n\t        file=$outputname\n\t      else\n\t        func_warning \"cannot relink '$file'\"\n\t      fi\n\t    }\n\t  else\n\t    # Install the binary that we compiled earlier.\n\t    file=`$ECHO \"$file$stripped_ext\" | $SED \"s%\\([^/]*\\)$%$objdir/\\1%\"`\n\t  fi\n\tfi\n\n\t# remove .exe since cygwin /usr/bin/install will append another\n\t# one anyway\n\tcase $install_prog,$host in\n\t*/usr/bin/install*,*cygwin*)\n\t  case $file:$destfile in\n\t  *.exe:*.exe)\n\t    # this is ok\n\t    ;;\n\t  *.exe:*)\n\t    destfile=$destfile.exe\n\t    ;;\n\t  *:*.exe)\n\t    func_stripname '' '.exe' \"$destfile\"\n\t    destfile=$func_stripname_result\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tfunc_show_eval \"$install_prog\\$stripme \\$file \\$destfile\" 'exit $?'\n\t$opt_dry_run || if test -n \"$outputname\"; then\n\t  ${RM}r \"$tmpdir\"\n\tfi\n\t;;\n      esac\n    done\n\n    for file in $staticlibs; do\n      func_basename \"$file\"\n      name=$func_basename_result\n\n      # Set up the ranlib parameters.\n      oldlib=$destdir/$name\n      func_to_tool_file \"$oldlib\" func_convert_file_msys_to_w32\n      tool_oldlib=$func_to_tool_file_result\n\n      func_show_eval \"$install_prog \\$file \\$oldlib\" 'exit $?'\n\n      if test -n \"$stripme\" && test -n \"$old_striplib\"; then\n\tfunc_show_eval \"$old_striplib $tool_oldlib\" 'exit $?'\n      fi\n\n      # Do each command in the postinstall commands.\n      func_execute_cmds \"$old_postinstall_cmds\" 'exit $?'\n    done\n\n    test -n \"$future_libdirs\" && \\\n      func_warning \"remember to run '$progname --finish$future_libdirs'\"\n\n    if test -n \"$current_libdirs\"; then\n      # Maybe just do a dry run.\n      $opt_dry_run && current_libdirs=\" -n$current_libdirs\"\n      exec_cmd='$SHELL \"$progpath\" $preserve_args --finish$current_libdirs'\n    else\n      exit $EXIT_SUCCESS\n    fi\n}\n\ntest install = \"$opt_mode\" && func_mode_install ${1+\"$@\"}\n\n\n# func_generate_dlsyms outputname originator pic_p\n# Extract symbols from dlprefiles and create ${outputname}S.o with\n# a dlpreopen symbol table.\nfunc_generate_dlsyms ()\n{\n    $debug_cmd\n\n    my_outputname=$1\n    my_originator=$2\n    my_pic_p=${3-false}\n    my_prefix=`$ECHO \"$my_originator\" | $SED 's%[^a-zA-Z0-9]%_%g'`\n    my_dlsyms=\n\n    if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n      if test -n \"$NM\" && test -n \"$global_symbol_pipe\"; then\n\tmy_dlsyms=${my_outputname}S.c\n      else\n\tfunc_error \"not configured to extract global symbols from dlpreopened files\"\n      fi\n    fi\n\n    if test -n \"$my_dlsyms\"; then\n      case $my_dlsyms in\n      \"\") ;;\n      *.c)\n\t# Discover the nlist of each of the dlfiles.\n\tnlist=$output_objdir/$my_outputname.nm\n\n\tfunc_show_eval \"$RM $nlist ${nlist}S ${nlist}T\"\n\n\t# Parse the name list into a source file.\n\tfunc_verbose \"creating $output_objdir/$my_dlsyms\"\n\n\t$opt_dry_run || $ECHO > \"$output_objdir/$my_dlsyms\" \"\\\n/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */\n/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */\n\n#ifdef __cplusplus\nextern \\\"C\\\" {\n#endif\n\n#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))\n#pragma GCC diagnostic ignored \\\"-Wstrict-prototypes\\\"\n#endif\n\n/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */\n#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE\n/* DATA imports from DLLs on WIN32 can't be const, because runtime\n   relocations are performed -- see ld's documentation on pseudo-relocs.  */\n# define LT_DLSYM_CONST\n#elif defined __osf__\n/* This system does not cope well with relocations in const data.  */\n# define LT_DLSYM_CONST\n#else\n# define LT_DLSYM_CONST const\n#endif\n\n#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)\n\n/* External symbol declarations for the compiler. */\\\n\"\n\n\tif test yes = \"$dlself\"; then\n\t  func_verbose \"generating symbol list for '$output'\"\n\n\t  $opt_dry_run || echo ': @PROGRAM@ ' > \"$nlist\"\n\n\t  # Add our own program objects to the symbol list.\n\t  progfiles=`$ECHO \"$objs$old_deplibs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\t  for progfile in $progfiles; do\n\t    func_to_tool_file \"$progfile\" func_convert_file_msys_to_w32\n\t    func_verbose \"extracting global C symbols from '$func_to_tool_file_result'\"\n\t    $opt_dry_run || eval \"$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'\"\n\t  done\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  if test -n \"$export_symbols_regex\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -e \"$export_symbols_regex\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  # Prepare the list of exported symbols\n\t  if test -z \"$export_symbols\"; then\n\t    export_symbols=$output_objdir/$outputname.exp\n\t    $opt_dry_run || {\n\t      $RM $export_symbols\n\t      eval \"$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \\(.*\\)$/\\1/p' \"'< \"$nlist\" > \"$export_symbols\"'\n\t      case $host in\n\t      *cygwin* | *mingw* | *cegcc* )\n                eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n                eval 'cat \"$export_symbols\" >> \"$output_objdir/$outputname.def\"'\n\t        ;;\n\t      esac\n\t    }\n\t  else\n\t    $opt_dry_run || {\n\t      eval \"$SED -e 's/\\([].[*^$]\\)/\\\\\\\\\\1/g' -e 's/^/ /' -e 's/$/$/'\"' < \"$export_symbols\" > \"$output_objdir/$outputname.exp\"'\n\t      eval '$GREP -f \"$output_objdir/$outputname.exp\" < \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t      case $host in\n\t        *cygwin* | *mingw* | *cegcc* )\n\t          eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n\t          eval 'cat \"$nlist\" >> \"$output_objdir/$outputname.def\"'\n\t          ;;\n\t      esac\n\t    }\n\t  fi\n\tfi\n\n\tfor dlprefile in $dlprefiles; do\n\t  func_verbose \"extracting global C symbols from '$dlprefile'\"\n\t  func_basename \"$dlprefile\"\n\t  name=$func_basename_result\n          case $host in\n\t    *cygwin* | *mingw* | *cegcc* )\n\t      # if an import library, we need to obtain dlname\n\t      if func_win32_import_lib_p \"$dlprefile\"; then\n\t        func_tr_sh \"$dlprefile\"\n\t        eval \"curr_lafile=\\$libfile_$func_tr_sh_result\"\n\t        dlprefile_dlbasename=\n\t        if test -n \"$curr_lafile\" && func_lalib_p \"$curr_lafile\"; then\n\t          # Use subshell, to avoid clobbering current variable values\n\t          dlprefile_dlname=`source \"$curr_lafile\" && echo \"$dlname\"`\n\t          if test -n \"$dlprefile_dlname\"; then\n\t            func_basename \"$dlprefile_dlname\"\n\t            dlprefile_dlbasename=$func_basename_result\n\t          else\n\t            # no lafile. user explicitly requested -dlpreopen <import library>.\n\t            $sharedlib_from_linklib_cmd \"$dlprefile\"\n\t            dlprefile_dlbasename=$sharedlib_from_linklib_result\n\t          fi\n\t        fi\n\t        $opt_dry_run || {\n\t          if test -n \"$dlprefile_dlbasename\"; then\n\t            eval '$ECHO \": $dlprefile_dlbasename\" >> \"$nlist\"'\n\t          else\n\t            func_warning \"Could not compute DLL name from $name\"\n\t            eval '$ECHO \": $name \" >> \"$nlist\"'\n\t          fi\n\t          func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t          eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe |\n\t            $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'\"\n\t        }\n\t      else # not an import lib\n\t        $opt_dry_run || {\n\t          eval '$ECHO \": $name \" >> \"$nlist\"'\n\t          func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t          eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe >> '$nlist'\"\n\t        }\n\t      fi\n\t    ;;\n\t    *)\n\t      $opt_dry_run || {\n\t        eval '$ECHO \": $name \" >> \"$nlist\"'\n\t        func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t        eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe >> '$nlist'\"\n\t      }\n\t    ;;\n          esac\n\tdone\n\n\t$opt_dry_run || {\n\t  # Make sure we have at least an empty file.\n\t  test -f \"$nlist\" || : > \"$nlist\"\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T\n\t    $MV \"$nlist\"T \"$nlist\"\n\t  fi\n\n\t  # Try sorting and uniquifying the output.\n\t  if $GREP -v \"^: \" < \"$nlist\" |\n\t      if sort -k 3 </dev/null >/dev/null 2>&1; then\n\t\tsort -k 3\n\t      else\n\t\tsort +2\n\t      fi |\n\t      uniq > \"$nlist\"S; then\n\t    :\n\t  else\n\t    $GREP -v \"^: \" < \"$nlist\" > \"$nlist\"S\n\t  fi\n\n\t  if test -f \"$nlist\"S; then\n\t    eval \"$global_symbol_to_cdecl\"' < \"$nlist\"S >> \"$output_objdir/$my_dlsyms\"'\n\t  else\n\t    echo '/* NONE */' >> \"$output_objdir/$my_dlsyms\"\n\t  fi\n\n\t  func_show_eval '$RM \"${nlist}I\"'\n\t  if test -n \"$global_symbol_to_import\"; then\n\t    eval \"$global_symbol_to_import\"' < \"$nlist\"S > \"$nlist\"I'\n\t  fi\n\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n\n/* The mapping between symbol names and symbols.  */\ntypedef struct {\n  const char *name;\n  void *address;\n} lt_dlsymlist;\nextern LT_DLSYM_CONST lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[];\\\n\"\n\n\t  if test -s \"$nlist\"I; then\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\nstatic void lt_syminit(void)\n{\n  LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols;\n  for (; symbol->name; ++symbol)\n    {\"\n\t    $SED 's/.*/      if (STREQ (symbol->name, \\\"&\\\")) symbol->address = (void *) \\&&;/' < \"$nlist\"I >> \"$output_objdir/$my_dlsyms\"\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n    }\n}\"\n\t  fi\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\nLT_DLSYM_CONST lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[] =\n{ {\\\"$my_originator\\\", (void *) 0},\"\n\n\t  if test -s \"$nlist\"I; then\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n  {\\\"@INIT@\\\", (void *) &lt_syminit},\"\n\t  fi\n\n\t  case $need_lib_prefix in\n\t  no)\n\t    eval \"$global_symbol_to_c_name_address\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  *)\n\t    eval \"$global_symbol_to_c_name_address_lib_prefix\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  esac\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt_${my_prefix}_LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\\\n\"\n\t} # !$opt_dry_run\n\n\tpic_flag_for_symtable=\n\tcase \"$compile_command \" in\n\t*\" -static \"*) ;;\n\t*)\n\t  case $host in\n\t  # compiling the symbol table file with pic_flag works around\n\t  # a FreeBSD bug that causes programs to crash when -lm is\n\t  # linked before any other PIC object.  But we must not use\n\t  # pic_flag when linking with -static.  The problem exists in\n\t  # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.\n\t  *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)\n\t    pic_flag_for_symtable=\" $pic_flag -DFREEBSD_WORKAROUND\" ;;\n\t  *-*-hpux*)\n\t    pic_flag_for_symtable=\" $pic_flag\"  ;;\n\t  *)\n\t    $my_pic_p && pic_flag_for_symtable=\" $pic_flag\"\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tsymtab_cflags=\n\tfor arg in $LTCFLAGS; do\n\t  case $arg in\n\t  -pie | -fpie | -fPIE) ;;\n\t  *) func_append symtab_cflags \" $arg\" ;;\n\t  esac\n\tdone\n\n\t# Now compile the dynamic symbol file.\n\tfunc_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable \"$my_dlsyms\")' 'exit $?'\n\n\t# Clean up the generated files.\n\tfunc_show_eval '$RM \"$output_objdir/$my_dlsyms\" \"$nlist\" \"${nlist}S\" \"${nlist}T\" \"${nlist}I\"'\n\n\t# Transform the symbol file into the correct name.\n\tsymfileobj=$output_objdir/${my_outputname}S.$objext\n\tcase $host in\n\t*cygwin* | *mingw* | *cegcc* )\n\t  if test -f \"$output_objdir/$my_outputname.def\"; then\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t  else\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  fi\n\t  ;;\n\t*)\n\t  compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  ;;\n\tesac\n\t;;\n      *)\n\tfunc_fatal_error \"unknown suffix for '$my_dlsyms'\"\n\t;;\n      esac\n    else\n      # We keep going just in case the user didn't refer to\n      # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe\n      # really was required.\n\n      # Nullify the symbol file.\n      compile_command=`$ECHO \"$compile_command\" | $SED \"s% @SYMFILE@%%\"`\n      finalize_command=`$ECHO \"$finalize_command\" | $SED \"s% @SYMFILE@%%\"`\n    fi\n}\n\n# func_cygming_gnu_implib_p ARG\n# This predicate returns with zero status (TRUE) if\n# ARG is a GNU/binutils-style import library. Returns\n# with nonzero status (FALSE) otherwise.\nfunc_cygming_gnu_implib_p ()\n{\n  $debug_cmd\n\n  func_to_tool_file \"$1\" func_convert_file_msys_to_w32\n  func_cygming_gnu_implib_tmp=`$NM \"$func_to_tool_file_result\" | eval \"$global_symbol_pipe\" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'`\n  test -n \"$func_cygming_gnu_implib_tmp\"\n}\n\n# func_cygming_ms_implib_p ARG\n# This predicate returns with zero status (TRUE) if\n# ARG is an MS-style import library. Returns\n# with nonzero status (FALSE) otherwise.\nfunc_cygming_ms_implib_p ()\n{\n  $debug_cmd\n\n  func_to_tool_file \"$1\" func_convert_file_msys_to_w32\n  func_cygming_ms_implib_tmp=`$NM \"$func_to_tool_file_result\" | eval \"$global_symbol_pipe\" | $GREP '_NULL_IMPORT_DESCRIPTOR'`\n  test -n \"$func_cygming_ms_implib_tmp\"\n}\n\n# func_win32_libid arg\n# return the library type of file 'arg'\n#\n# Need a lot of goo to handle *both* DLLs and import libs\n# Has to be a shell function in order to 'eat' the argument\n# that is supplied when $file_magic_command is called.\n# Despite the name, also deal with 64 bit binaries.\nfunc_win32_libid ()\n{\n  $debug_cmd\n\n  win32_libid_type=unknown\n  win32_fileres=`file -L $1 2>/dev/null`\n  case $win32_fileres in\n  *ar\\ archive\\ import\\ library*) # definitely import\n    win32_libid_type=\"x86 archive import\"\n    ;;\n  *ar\\ archive*) # could be an import, or static\n    # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.\n    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |\n       $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then\n      case $nm_interface in\n      \"MS dumpbin\")\n\tif func_cygming_ms_implib_p \"$1\" ||\n\t   func_cygming_gnu_implib_p \"$1\"\n\tthen\n\t  win32_nmres=import\n\telse\n\t  win32_nmres=\n\tfi\n\t;;\n      *)\n\tfunc_to_tool_file \"$1\" func_convert_file_msys_to_w32\n\twin32_nmres=`eval $NM -f posix -A \\\"$func_to_tool_file_result\\\" |\n\t  $SED -n -e '\n\t    1,100{\n\t\t/ I /{\n\t\t    s|.*|import|\n\t\t    p\n\t\t    q\n\t\t}\n\t    }'`\n\t;;\n      esac\n      case $win32_nmres in\n      import*)  win32_libid_type=\"x86 archive import\";;\n      *)        win32_libid_type=\"x86 archive static\";;\n      esac\n    fi\n    ;;\n  *DLL*)\n    win32_libid_type=\"x86 DLL\"\n    ;;\n  *executable*) # but shell scripts are \"executable\" too...\n    case $win32_fileres in\n    *MS\\ Windows\\ PE\\ Intel*)\n      win32_libid_type=\"x86 DLL\"\n      ;;\n    esac\n    ;;\n  esac\n  $ECHO \"$win32_libid_type\"\n}\n\n# func_cygming_dll_for_implib ARG\n#\n# Platform-specific function to extract the\n# name of the DLL associated with the specified\n# import library ARG.\n# Invoked by eval'ing the libtool variable\n#    $sharedlib_from_linklib_cmd\n# Result is available in the variable\n#    $sharedlib_from_linklib_result\nfunc_cygming_dll_for_implib ()\n{\n  $debug_cmd\n\n  sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify \"$1\"`\n}\n\n# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs\n#\n# The is the core of a fallback implementation of a\n# platform-specific function to extract the name of the\n# DLL associated with the specified import library LIBNAME.\n#\n# SECTION_NAME is either .idata$6 or .idata$7, depending\n# on the platform and compiler that created the implib.\n#\n# Echos the name of the DLL associated with the\n# specified import library.\nfunc_cygming_dll_for_implib_fallback_core ()\n{\n  $debug_cmd\n\n  match_literal=`$ECHO \"$1\" | $SED \"$sed_make_literal_regex\"`\n  $OBJDUMP -s --section \"$1\" \"$2\" 2>/dev/null |\n    $SED '/^Contents of section '\"$match_literal\"':/{\n      # Place marker at beginning of archive member dllname section\n      s/.*/====MARK====/\n      p\n      d\n    }\n    # These lines can sometimes be longer than 43 characters, but\n    # are always uninteresting\n    /:[\t ]*file format pe[i]\\{,1\\}-/d\n    /^In archive [^:]*:/d\n    # Ensure marker is printed\n    /^====MARK====/p\n    # Remove all lines with less than 43 characters\n    /^.\\{43\\}/!d\n    # From remaining lines, remove first 43 characters\n    s/^.\\{43\\}//' |\n    $SED -n '\n      # Join marker and all lines until next marker into a single line\n      /^====MARK====/ b para\n      H\n      $ b para\n      b\n      :para\n      x\n      s/\\n//g\n      # Remove the marker\n      s/^====MARK====//\n      # Remove trailing dots and whitespace\n      s/[\\. \\t]*$//\n      # Print\n      /./p' |\n    # we now have a list, one entry per line, of the stringified\n    # contents of the appropriate section of all members of the\n    # archive that possess that section. Heuristic: eliminate\n    # all those that have a first or second character that is\n    # a '.' (that is, objdump's representation of an unprintable\n    # character.) This should work for all archives with less than\n    # 0x302f exports -- but will fail for DLLs whose name actually\n    # begins with a literal '.' or a single character followed by\n    # a '.'.\n    #\n    # Of those that remain, print the first one.\n    $SED -e '/^\\./d;/^.\\./d;q'\n}\n\n# func_cygming_dll_for_implib_fallback ARG\n# Platform-specific function to extract the\n# name of the DLL associated with the specified\n# import library ARG.\n#\n# This fallback implementation is for use when $DLLTOOL\n# does not support the --identify-strict option.\n# Invoked by eval'ing the libtool variable\n#    $sharedlib_from_linklib_cmd\n# Result is available in the variable\n#    $sharedlib_from_linklib_result\nfunc_cygming_dll_for_implib_fallback ()\n{\n  $debug_cmd\n\n  if func_cygming_gnu_implib_p \"$1\"; then\n    # binutils import library\n    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' \"$1\"`\n  elif func_cygming_ms_implib_p \"$1\"; then\n    # ms-generated import library\n    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' \"$1\"`\n  else\n    # unknown\n    sharedlib_from_linklib_result=\n  fi\n}\n\n\n# func_extract_an_archive dir oldlib\nfunc_extract_an_archive ()\n{\n    $debug_cmd\n\n    f_ex_an_ar_dir=$1; shift\n    f_ex_an_ar_oldlib=$1\n    if test yes = \"$lock_old_archive_extraction\"; then\n      lockfile=$f_ex_an_ar_oldlib.lock\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    fi\n    func_show_eval \"(cd \\$f_ex_an_ar_dir && $AR x \\\"\\$f_ex_an_ar_oldlib\\\")\" \\\n\t\t   'stat=$?; rm -f \"$lockfile\"; exit $stat'\n    if test yes = \"$lock_old_archive_extraction\"; then\n      $opt_dry_run || rm -f \"$lockfile\"\n    fi\n    if ($AR t \"$f_ex_an_ar_oldlib\" | sort | sort -uc >/dev/null 2>&1); then\n     :\n    else\n      func_fatal_error \"object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib\"\n    fi\n}\n\n\n# func_extract_archives gentop oldlib ...\nfunc_extract_archives ()\n{\n    $debug_cmd\n\n    my_gentop=$1; shift\n    my_oldlibs=${1+\"$@\"}\n    my_oldobjs=\n    my_xlib=\n    my_xabs=\n    my_xdir=\n\n    for my_xlib in $my_oldlibs; do\n      # Extract the objects.\n      case $my_xlib in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) my_xabs=$my_xlib ;;\n\t*) my_xabs=`pwd`\"/$my_xlib\" ;;\n      esac\n      func_basename \"$my_xlib\"\n      my_xlib=$func_basename_result\n      my_xlib_u=$my_xlib\n      while :; do\n        case \" $extracted_archives \" in\n\t*\" $my_xlib_u \"*)\n\t  func_arith $extracted_serial + 1\n\t  extracted_serial=$func_arith_result\n\t  my_xlib_u=lt$extracted_serial-$my_xlib ;;\n\t*) break ;;\n\tesac\n      done\n      extracted_archives=\"$extracted_archives $my_xlib_u\"\n      my_xdir=$my_gentop/$my_xlib_u\n\n      func_mkdir_p \"$my_xdir\"\n\n      case $host in\n      *-darwin*)\n\tfunc_verbose \"Extracting $my_xabs\"\n\t# Do not bother doing anything if just a dry run\n\t$opt_dry_run || {\n\t  darwin_orig_dir=`pwd`\n\t  cd $my_xdir || exit $?\n\t  darwin_archive=$my_xabs\n\t  darwin_curdir=`pwd`\n\t  func_basename \"$darwin_archive\"\n\t  darwin_base_archive=$func_basename_result\n\t  darwin_arches=`$LIPO -info \"$darwin_archive\" 2>/dev/null | $GREP Architectures 2>/dev/null || true`\n\t  if test -n \"$darwin_arches\"; then\n\t    darwin_arches=`$ECHO \"$darwin_arches\" | $SED -e 's/.*are://'`\n\t    darwin_arch=\n\t    func_verbose \"$darwin_base_archive has multiple architectures $darwin_arches\"\n\t    for darwin_arch in  $darwin_arches; do\n\t      func_mkdir_p \"unfat-$$/$darwin_base_archive-$darwin_arch\"\n\t      $LIPO -thin $darwin_arch -output \"unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive\" \"$darwin_archive\"\n\t      cd \"unfat-$$/$darwin_base_archive-$darwin_arch\"\n\t      func_extract_an_archive \"`pwd`\" \"$darwin_base_archive\"\n\t      cd \"$darwin_curdir\"\n\t      $RM \"unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive\"\n\t    done # $darwin_arches\n            ## Okay now we've a bunch of thin objects, gotta fatten them up :)\n\t    darwin_filelist=`find unfat-$$ -type f -name \\*.o -print -o -name \\*.lo -print | $SED -e \"$sed_basename\" | sort -u`\n\t    darwin_file=\n\t    darwin_files=\n\t    for darwin_file in $darwin_filelist; do\n\t      darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`\n\t      $LIPO -create -output \"$darwin_file\" $darwin_files\n\t    done # $darwin_filelist\n\t    $RM -rf unfat-$$\n\t    cd \"$darwin_orig_dir\"\n\t  else\n\t    cd $darwin_orig_dir\n\t    func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t  fi # $darwin_arches\n\t} # !$opt_dry_run\n\t;;\n      *)\n        func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t;;\n      esac\n      my_oldobjs=\"$my_oldobjs \"`find $my_xdir -name \\*.$objext -print -o -name \\*.lo -print | sort | $NL2SP`\n    done\n\n    func_extract_archives_result=$my_oldobjs\n}\n\n\n# func_emit_wrapper [arg=no]\n#\n# Emit a libtool wrapper script on stdout.\n# Don't directly open a file because we may want to\n# incorporate the script contents within a cygwin/mingw\n# wrapper executable.  Must ONLY be called from within\n# func_mode_link because it depends on a number of variables\n# set therein.\n#\n# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\n# variable will take.  If 'yes', then the emitted script\n# will assume that the directory where it is stored is\n# the $objdir directory.  This is a cygwin/mingw-specific\n# behavior.\nfunc_emit_wrapper ()\n{\n\tfunc_emit_wrapper_arg1=${1-no}\n\n\t$ECHO \"\\\n#! $SHELL\n\n# $output - temporary wrapper script for $objdir/$outputname\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# The $output program cannot be directly executed until all the libtool\n# libraries that it depends on are installed.\n#\n# This wrapper script should never be moved out of the build directory.\n# If it is, it will not operate correctly.\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='$sed_quote_subst'\n\n# Be Bourne compatible\nif test -n \\\"\\${ZSH_VERSION+set}\\\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on \\${1+\\\"\\$@\\\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '\\${1+\\\"\\$@\\\"}'='\\\"\\$@\\\"'\n  setopt NO_GLOB_SUBST\nelse\n  case \\`(set -o) 2>/dev/null\\` in *posix*) set -o posix;; esac\nfi\nBIN_SH=xpg4; export BIN_SH # for Tru64\nDUALCASE=1; export DUALCASE # for MKS sh\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nrelink_command=\\\"$relink_command\\\"\n\n# This environment variable determines our operation mode.\nif test \\\"\\$libtool_install_magic\\\" = \\\"$magic\\\"; then\n  # install mode needs the following variables:\n  generated_by_libtool_version='$macro_version'\n  notinst_deplibs='$notinst_deplibs'\nelse\n  # When we are sourced in execute mode, \\$file and \\$ECHO are already set.\n  if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n    file=\\\"\\$0\\\"\"\n\n    qECHO=`$ECHO \"$ECHO\" | $SED \"$sed_quote_subst\"`\n    $ECHO \"\\\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$1\n_LTECHO_EOF'\n}\n    ECHO=\\\"$qECHO\\\"\n  fi\n\n# Very basic option parsing. These options are (a) specific to\n# the libtool wrapper, (b) are identical between the wrapper\n# /script/ and the wrapper /executable/ that is used only on\n# windows platforms, and (c) all begin with the string \"--lt-\"\n# (application programs are unlikely to have options that match\n# this pattern).\n#\n# There are only two supported options: --lt-debug and\n# --lt-dump-script. There is, deliberately, no --lt-help.\n#\n# The first argument to this parsing function should be the\n# script's $0 value, followed by \"$@\".\nlt_option_debug=\nfunc_parse_lt_options ()\n{\n  lt_script_arg0=\\$0\n  shift\n  for lt_opt\n  do\n    case \\\"\\$lt_opt\\\" in\n    --lt-debug) lt_option_debug=1 ;;\n    --lt-dump-script)\n        lt_dump_D=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\\`\n        test \\\"X\\$lt_dump_D\\\" = \\\"X\\$lt_script_arg0\\\" && lt_dump_D=.\n        lt_dump_F=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%^.*/%%'\\`\n        cat \\\"\\$lt_dump_D/\\$lt_dump_F\\\"\n        exit 0\n      ;;\n    --lt-*)\n        \\$ECHO \\\"Unrecognized --lt- option: '\\$lt_opt'\\\" 1>&2\n        exit 1\n      ;;\n    esac\n  done\n\n  # Print the debug banner immediately:\n  if test -n \\\"\\$lt_option_debug\\\"; then\n    echo \\\"$outputname:$output:\\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\\\" 1>&2\n  fi\n}\n\n# Used when --lt-debug. Prints its arguments to stdout\n# (redirection is the responsibility of the caller)\nfunc_lt_dump_args ()\n{\n  lt_dump_args_N=1;\n  for lt_arg\n  do\n    \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[\\$lt_dump_args_N]: \\$lt_arg\\\"\n    lt_dump_args_N=\\`expr \\$lt_dump_args_N + 1\\`\n  done\n}\n\n# Core function for launching the target application\nfunc_exec_program_core ()\n{\n\"\n  case $host in\n  # Backslashes separate directories on plain windows\n  *-*-mingw | *-*-os2* | *-cegcc*)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[0]: \\$progdir\\\\\\\\\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir\\\\\\\\\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n\n  *)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[0]: \\$progdir/\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir/\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n  esac\n  $ECHO \"\\\n      \\$ECHO \\\"\\$0: cannot exec \\$program \\$*\\\" 1>&2\n      exit 1\n}\n\n# A function to encapsulate launching the target application\n# Strips options in the --lt-* namespace from \\$@ and\n# launches target application with the remaining arguments.\nfunc_exec_program ()\n{\n  case \\\" \\$* \\\" in\n  *\\\\ --lt-*)\n    for lt_wr_arg\n    do\n      case \\$lt_wr_arg in\n      --lt-*) ;;\n      *) set x \\\"\\$@\\\" \\\"\\$lt_wr_arg\\\"; shift;;\n      esac\n      shift\n    done ;;\n  esac\n  func_exec_program_core \\${1+\\\"\\$@\\\"}\n}\n\n  # Parse options\n  func_parse_lt_options \\\"\\$0\\\" \\${1+\\\"\\$@\\\"}\n\n  # Find the directory that this script lives in.\n  thisdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*$%%'\\`\n  test \\\"x\\$thisdir\\\" = \\\"x\\$file\\\" && thisdir=.\n\n  # Follow symbolic links until we get to the real thisdir.\n  file=\\`ls -ld \\\"\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  while test -n \\\"\\$file\\\"; do\n    destdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*\\$%%'\\`\n\n    # If there was a directory component, then change thisdir.\n    if test \\\"x\\$destdir\\\" != \\\"x\\$file\\\"; then\n      case \\\"\\$destdir\\\" in\n      [\\\\\\\\/]* | [A-Za-z]:[\\\\\\\\/]*) thisdir=\\\"\\$destdir\\\" ;;\n      *) thisdir=\\\"\\$thisdir/\\$destdir\\\" ;;\n      esac\n    fi\n\n    file=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%^.*/%%'\\`\n    file=\\`ls -ld \\\"\\$thisdir/\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  done\n\n  # Usually 'no', except on cygwin/mingw when embedded into\n  # the cwrapper.\n  WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1\n  if test \\\"\\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\\\" = \\\"yes\\\"; then\n    # special case for '.'\n    if test \\\"\\$thisdir\\\" = \\\".\\\"; then\n      thisdir=\\`pwd\\`\n    fi\n    # remove .libs from thisdir\n    case \\\"\\$thisdir\\\" in\n    *[\\\\\\\\/]$objdir ) thisdir=\\`\\$ECHO \\\"\\$thisdir\\\" | $SED 's%[\\\\\\\\/][^\\\\\\\\/]*$%%'\\` ;;\n    $objdir )   thisdir=. ;;\n    esac\n  fi\n\n  # Try to get the absolute directory name.\n  absdir=\\`cd \\\"\\$thisdir\\\" && pwd\\`\n  test -n \\\"\\$absdir\\\" && thisdir=\\\"\\$absdir\\\"\n\"\n\n\tif test yes = \"$fast_install\"; then\n\t  $ECHO \"\\\n  program=lt-'$outputname'$exeext\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\n  if test ! -f \\\"\\$progdir/\\$program\\\" ||\n     { file=\\`ls -1dt \\\"\\$progdir/\\$program\\\" \\\"\\$progdir/../\\$program\\\" 2>/dev/null | $SED 1q\\`; \\\\\n       test \\\"X\\$file\\\" != \\\"X\\$progdir/\\$program\\\"; }; then\n\n    file=\\\"\\$\\$-\\$program\\\"\n\n    if test ! -d \\\"\\$progdir\\\"; then\n      $MKDIR \\\"\\$progdir\\\"\n    else\n      $RM \\\"\\$progdir/\\$file\\\"\n    fi\"\n\n\t  $ECHO \"\\\n\n    # relink executable if necessary\n    if test -n \\\"\\$relink_command\\\"; then\n      if relink_command_output=\\`eval \\$relink_command 2>&1\\`; then :\n      else\n\t\\$ECHO \\\"\\$relink_command_output\\\" >&2\n\t$RM \\\"\\$progdir/\\$file\\\"\n\texit 1\n      fi\n    fi\n\n    $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\" 2>/dev/null ||\n    { $RM \\\"\\$progdir/\\$program\\\";\n      $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\"; }\n    $RM \\\"\\$progdir/\\$file\\\"\n  fi\"\n\telse\n\t  $ECHO \"\\\n  program='$outputname'\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\"\n\tfi\n\n\t$ECHO \"\\\n\n  if test -f \\\"\\$progdir/\\$program\\\"; then\"\n\n\t# fixup the dll searchpath if we need to.\n\t#\n\t# Fix the DLL searchpath if we need to.  Do this before prepending\n\t# to shlibpath, because on Windows, both are PATH and uninstalled\n\t# libraries must come first.\n\tif test -n \"$dllsearchpath\"; then\n\t  $ECHO \"\\\n    # Add the dll search path components to the executable PATH\n    PATH=$dllsearchpath:\\$PATH\n\"\n\tfi\n\n\t# Export our shlibpath_var if we have one.\n\tif test yes = \"$shlibpath_overrides_runpath\" && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n\t  $ECHO \"\\\n    # Add our own library path to $shlibpath_var\n    $shlibpath_var=\\\"$temp_rpath\\$$shlibpath_var\\\"\n\n    # Some systems cannot cope with colon-terminated $shlibpath_var\n    # The second colon is a workaround for a bug in BeOS R4 sed\n    $shlibpath_var=\\`\\$ECHO \\\"\\$$shlibpath_var\\\" | $SED 's/::*\\$//'\\`\n\n    export $shlibpath_var\n\"\n\tfi\n\n\t$ECHO \"\\\n    if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n      # Run the actual program with our arguments.\n      func_exec_program \\${1+\\\"\\$@\\\"}\n    fi\n  else\n    # The program doesn't exist.\n    \\$ECHO \\\"\\$0: error: '\\$progdir/\\$program' does not exist\\\" 1>&2\n    \\$ECHO \\\"This script is just a wrapper for \\$program.\\\" 1>&2\n    \\$ECHO \\\"See the $PACKAGE documentation for more information.\\\" 1>&2\n    exit 1\n  fi\nfi\\\n\"\n}\n\n\n# func_emit_cwrapperexe_src\n# emit the source code for a wrapper executable on stdout\n# Must ONLY be called from within func_mode_link because\n# it depends on a number of variable set therein.\nfunc_emit_cwrapperexe_src ()\n{\n\tcat <<EOF\n\n/* $cwrappersource - temporary wrapper executable for $objdir/$outputname\n   Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n\n   The $output program cannot be directly executed until all the libtool\n   libraries that it depends on are installed.\n\n   This wrapper executable should never be moved out of the build directory.\n   If it is, it will not operate correctly.\n*/\nEOF\n\t    cat <<\"EOF\"\n#ifdef _MSC_VER\n# define _CRT_SECURE_NO_DEPRECATE 1\n#endif\n#include <stdio.h>\n#include <stdlib.h>\n#ifdef _MSC_VER\n# include <direct.h>\n# include <process.h>\n# include <io.h>\n#else\n# include <unistd.h>\n# include <stdint.h>\n# ifdef __CYGWIN__\n#  include <io.h>\n# endif\n#endif\n#include <malloc.h>\n#include <stdarg.h>\n#include <assert.h>\n#include <string.h>\n#include <ctype.h>\n#include <errno.h>\n#include <fcntl.h>\n#include <sys/stat.h>\n\n#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)\n\n/* declarations of non-ANSI functions */\n#if defined __MINGW32__\n# ifdef __STRICT_ANSI__\nint _putenv (const char *);\n# endif\n#elif defined __CYGWIN__\n# ifdef __STRICT_ANSI__\nchar *realpath (const char *, char *);\nint putenv (char *);\nint setenv (const char *, const char *, int);\n# endif\n/* #elif defined other_platform || defined ... */\n#endif\n\n/* portability defines, excluding path handling macros */\n#if defined _MSC_VER\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n# define S_IXUSR _S_IEXEC\n#elif defined __MINGW32__\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n#elif defined __CYGWIN__\n# define HAVE_SETENV\n# define FOPEN_WB \"wb\"\n/* #elif defined other platforms ... */\n#endif\n\n#if defined PATH_MAX\n# define LT_PATHMAX PATH_MAX\n#elif defined MAXPATHLEN\n# define LT_PATHMAX MAXPATHLEN\n#else\n# define LT_PATHMAX 1024\n#endif\n\n#ifndef S_IXOTH\n# define S_IXOTH 0\n#endif\n#ifndef S_IXGRP\n# define S_IXGRP 0\n#endif\n\n/* path handling portability macros */\n#ifndef DIR_SEPARATOR\n# define DIR_SEPARATOR '/'\n# define PATH_SEPARATOR ':'\n#endif\n\n#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \\\n  defined __OS2__\n# define HAVE_DOS_BASED_FILE_SYSTEM\n# define FOPEN_WB \"wb\"\n# ifndef DIR_SEPARATOR_2\n#  define DIR_SEPARATOR_2 '\\\\'\n# endif\n# ifndef PATH_SEPARATOR_2\n#  define PATH_SEPARATOR_2 ';'\n# endif\n#endif\n\n#ifndef DIR_SEPARATOR_2\n# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)\n#else /* DIR_SEPARATOR_2 */\n# define IS_DIR_SEPARATOR(ch) \\\n\t(((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))\n#endif /* DIR_SEPARATOR_2 */\n\n#ifndef PATH_SEPARATOR_2\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)\n#else /* PATH_SEPARATOR_2 */\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)\n#endif /* PATH_SEPARATOR_2 */\n\n#ifndef FOPEN_WB\n# define FOPEN_WB \"w\"\n#endif\n#ifndef _O_BINARY\n# define _O_BINARY 0\n#endif\n\n#define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))\n#define XFREE(stale) do { \\\n  if (stale) { free (stale); stale = 0; } \\\n} while (0)\n\n#if defined LT_DEBUGWRAPPER\nstatic int lt_debug = 1;\n#else\nstatic int lt_debug = 0;\n#endif\n\nconst char *program_name = \"libtool-wrapper\"; /* in case xstrdup fails */\n\nvoid *xmalloc (size_t num);\nchar *xstrdup (const char *string);\nconst char *base_name (const char *name);\nchar *find_executable (const char *wrapper);\nchar *chase_symlinks (const char *pathspec);\nint make_executable (const char *path);\nint check_executable (const char *path);\nchar *strendzap (char *str, const char *pat);\nvoid lt_debugprintf (const char *file, int line, const char *fmt, ...);\nvoid lt_fatal (const char *file, int line, const char *message, ...);\nstatic const char *nonnull (const char *s);\nstatic const char *nonempty (const char *s);\nvoid lt_setenv (const char *name, const char *value);\nchar *lt_extend_str (const char *orig_value, const char *add, int to_end);\nvoid lt_update_exe_path (const char *name, const char *value);\nvoid lt_update_lib_path (const char *name, const char *value);\nchar **prepare_spawn (char **argv);\nvoid lt_dump_script (FILE *f);\nEOF\n\n\t    cat <<EOF\n#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5)\n# define externally_visible volatile\n#else\n# define externally_visible __attribute__((externally_visible)) volatile\n#endif\nexternally_visible const char * MAGIC_EXE = \"$magic_exe\";\nconst char * LIB_PATH_VARNAME = \"$shlibpath_var\";\nEOF\n\n\t    if test yes = \"$shlibpath_overrides_runpath\" && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n              func_to_host_path \"$temp_rpath\"\n\t      cat <<EOF\nconst char * LIB_PATH_VALUE   = \"$func_to_host_path_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * LIB_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test -n \"$dllsearchpath\"; then\n              func_to_host_path \"$dllsearchpath:\"\n\t      cat <<EOF\nconst char * EXE_PATH_VARNAME = \"PATH\";\nconst char * EXE_PATH_VALUE   = \"$func_to_host_path_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * EXE_PATH_VARNAME = \"\";\nconst char * EXE_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test yes = \"$fast_install\"; then\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"lt-$outputname\"; /* hopefully, no .exe */\nEOF\n\t    else\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"$outputname\"; /* hopefully, no .exe */\nEOF\n\t    fi\n\n\n\t    cat <<\"EOF\"\n\n#define LTWRAPPER_OPTION_PREFIX         \"--lt-\"\n\nstatic const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;\nstatic const char *dumpscript_opt       = LTWRAPPER_OPTION_PREFIX \"dump-script\";\nstatic const char *debug_opt            = LTWRAPPER_OPTION_PREFIX \"debug\";\n\nint\nmain (int argc, char *argv[])\n{\n  char **newargz;\n  int  newargc;\n  char *tmp_pathspec;\n  char *actual_cwrapper_path;\n  char *actual_cwrapper_name;\n  char *target_name;\n  char *lt_argv_zero;\n  int rval = 127;\n\n  int i;\n\n  program_name = (char *) xstrdup (base_name (argv[0]));\n  newargz = XMALLOC (char *, (size_t) argc + 1);\n\n  /* very simple arg parsing; don't want to rely on getopt\n   * also, copy all non cwrapper options to newargz, except\n   * argz[0], which is handled differently\n   */\n  newargc=0;\n  for (i = 1; i < argc; i++)\n    {\n      if (STREQ (argv[i], dumpscript_opt))\n\t{\nEOF\n\t    case $host in\n\t      *mingw* | *cygwin* )\n\t\t# make stdout use \"unix\" line endings\n\t\techo \"          setmode(1,_O_BINARY);\"\n\t\t;;\n\t      esac\n\n\t    cat <<\"EOF\"\n\t  lt_dump_script (stdout);\n\t  return 0;\n\t}\n      if (STREQ (argv[i], debug_opt))\n\t{\n          lt_debug = 1;\n          continue;\n\t}\n      if (STREQ (argv[i], ltwrapper_option_prefix))\n        {\n          /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX\n             namespace, but it is not one of the ones we know about and\n             have already dealt with, above (inluding dump-script), then\n             report an error. Otherwise, targets might begin to believe\n             they are allowed to use options in the LTWRAPPER_OPTION_PREFIX\n             namespace. The first time any user complains about this, we'll\n             need to make LTWRAPPER_OPTION_PREFIX a configure-time option\n             or a configure.ac-settable value.\n           */\n          lt_fatal (__FILE__, __LINE__,\n\t\t    \"unrecognized %s option: '%s'\",\n                    ltwrapper_option_prefix, argv[i]);\n        }\n      /* otherwise ... */\n      newargz[++newargc] = xstrdup (argv[i]);\n    }\n  newargz[++newargc] = NULL;\n\nEOF\n\t    cat <<EOF\n  /* The GNU banner must be the first non-error debug message */\n  lt_debugprintf (__FILE__, __LINE__, \"libtool wrapper (GNU $PACKAGE) $VERSION\\n\");\nEOF\n\t    cat <<\"EOF\"\n  lt_debugprintf (__FILE__, __LINE__, \"(main) argv[0]: %s\\n\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__, \"(main) program_name: %s\\n\", program_name);\n\n  tmp_pathspec = find_executable (argv[0]);\n  if (tmp_pathspec == NULL)\n    lt_fatal (__FILE__, __LINE__, \"couldn't find %s\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (before symlink chase) at: %s\\n\",\n\t\t  tmp_pathspec);\n\n  actual_cwrapper_path = chase_symlinks (tmp_pathspec);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (after symlink chase) at: %s\\n\",\n\t\t  actual_cwrapper_path);\n  XFREE (tmp_pathspec);\n\n  actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));\n  strendzap (actual_cwrapper_path, actual_cwrapper_name);\n\n  /* wrapper name transforms */\n  strendzap (actual_cwrapper_name, \".exe\");\n  tmp_pathspec = lt_extend_str (actual_cwrapper_name, \".exe\", 1);\n  XFREE (actual_cwrapper_name);\n  actual_cwrapper_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  /* target_name transforms -- use actual target program name; might have lt- prefix */\n  target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));\n  strendzap (target_name, \".exe\");\n  tmp_pathspec = lt_extend_str (target_name, \".exe\", 1);\n  XFREE (target_name);\n  target_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(main) libtool target name: %s\\n\",\n\t\t  target_name);\nEOF\n\n\t    cat <<EOF\n  newargz[0] =\n    XMALLOC (char, (strlen (actual_cwrapper_path) +\n\t\t    strlen (\"$objdir\") + 1 + strlen (actual_cwrapper_name) + 1));\n  strcpy (newargz[0], actual_cwrapper_path);\n  strcat (newargz[0], \"$objdir\");\n  strcat (newargz[0], \"/\");\nEOF\n\n\t    cat <<\"EOF\"\n  /* stop here, and copy so we don't have to do this twice */\n  tmp_pathspec = xstrdup (newargz[0]);\n\n  /* do NOT want the lt- prefix here, so use actual_cwrapper_name */\n  strcat (newargz[0], actual_cwrapper_name);\n\n  /* DO want the lt- prefix here if it exists, so use target_name */\n  lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);\n  XFREE (tmp_pathspec);\n  tmp_pathspec = NULL;\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t    cat <<\"EOF\"\n  {\n    char* p;\n    while ((p = strchr (newargz[0], '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n    while ((p = strchr (lt_argv_zero, '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n  }\nEOF\n\t    ;;\n\t    esac\n\n\t    cat <<\"EOF\"\n  XFREE (target_name);\n  XFREE (actual_cwrapper_path);\n  XFREE (actual_cwrapper_name);\n\n  lt_setenv (\"BIN_SH\", \"xpg4\"); /* for Tru64 */\n  lt_setenv (\"DUALCASE\", \"1\");  /* for MSK sh */\n  /* Update the DLL searchpath.  EXE_PATH_VALUE ($dllsearchpath) must\n     be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)\n     because on Windows, both *_VARNAMEs are PATH but uninstalled\n     libraries must come first. */\n  lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);\n  lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);\n\n  lt_debugprintf (__FILE__, __LINE__, \"(main) lt_argv_zero: %s\\n\",\n\t\t  nonnull (lt_argv_zero));\n  for (i = 0; i < newargc; i++)\n    {\n      lt_debugprintf (__FILE__, __LINE__, \"(main) newargz[%d]: %s\\n\",\n\t\t      i, nonnull (newargz[i]));\n    }\n\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n  /* execv doesn't actually work on mingw as expected on unix */\n  newargz = prepare_spawn (newargz);\n  rval = (int) _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);\n  if (rval == -1)\n    {\n      /* failed to start process */\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"(main) failed to launch target \\\"%s\\\": %s\\n\",\n\t\t      lt_argv_zero, nonnull (strerror (errno)));\n      return 127;\n    }\n  return rval;\nEOF\n\t\t;;\n\t      *)\n\t\tcat <<\"EOF\"\n  execv (lt_argv_zero, newargz);\n  return rval; /* =127, but avoids unused variable warning */\nEOF\n\t\t;;\n\t    esac\n\n\t    cat <<\"EOF\"\n}\n\nvoid *\nxmalloc (size_t num)\n{\n  void *p = (void *) malloc (num);\n  if (!p)\n    lt_fatal (__FILE__, __LINE__, \"memory exhausted\");\n\n  return p;\n}\n\nchar *\nxstrdup (const char *string)\n{\n  return string ? strcpy ((char *) xmalloc (strlen (string) + 1),\n\t\t\t  string) : NULL;\n}\n\nconst char *\nbase_name (const char *name)\n{\n  const char *base;\n\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n  /* Skip over the disk name in MSDOS pathnames. */\n  if (isalpha ((unsigned char) name[0]) && name[1] == ':')\n    name += 2;\n#endif\n\n  for (base = name; *name; name++)\n    if (IS_DIR_SEPARATOR (*name))\n      base = name + 1;\n  return base;\n}\n\nint\ncheck_executable (const char *path)\n{\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(check_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if ((stat (path, &st) >= 0)\n      && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))\n    return 1;\n  else\n    return 0;\n}\n\nint\nmake_executable (const char *path)\n{\n  int rval = 0;\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(make_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if (stat (path, &st) >= 0)\n    {\n      rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);\n    }\n  return rval;\n}\n\n/* Searches for the full path of the wrapper.  Returns\n   newly allocated full path name if found, NULL otherwise\n   Does not chase symlinks, even on platforms that support them.\n*/\nchar *\nfind_executable (const char *wrapper)\n{\n  int has_slash = 0;\n  const char *p;\n  const char *p_next;\n  /* static buffer for getcwd */\n  char tmp[LT_PATHMAX + 1];\n  size_t tmp_len;\n  char *concat_name;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(find_executable): %s\\n\",\n                  nonempty (wrapper));\n\n  if ((wrapper == NULL) || (*wrapper == '\\0'))\n    return NULL;\n\n  /* Absolute path? */\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n  if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')\n    {\n      concat_name = xstrdup (wrapper);\n      if (check_executable (concat_name))\n\treturn concat_name;\n      XFREE (concat_name);\n    }\n  else\n    {\n#endif\n      if (IS_DIR_SEPARATOR (wrapper[0]))\n\t{\n\t  concat_name = xstrdup (wrapper);\n\t  if (check_executable (concat_name))\n\t    return concat_name;\n\t  XFREE (concat_name);\n\t}\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n    }\n#endif\n\n  for (p = wrapper; *p; p++)\n    if (*p == '/')\n      {\n\thas_slash = 1;\n\tbreak;\n      }\n  if (!has_slash)\n    {\n      /* no slashes; search PATH */\n      const char *path = getenv (\"PATH\");\n      if (path != NULL)\n\t{\n\t  for (p = path; *p; p = p_next)\n\t    {\n\t      const char *q;\n\t      size_t p_len;\n\t      for (q = p; *q; q++)\n\t\tif (IS_PATH_SEPARATOR (*q))\n\t\t  break;\n\t      p_len = (size_t) (q - p);\n\t      p_next = (*q == '\\0' ? q : q + 1);\n\t      if (p_len == 0)\n\t\t{\n\t\t  /* empty path: current directory */\n\t\t  if (getcwd (tmp, LT_PATHMAX) == NULL)\n\t\t    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n                              nonnull (strerror (errno)));\n\t\t  tmp_len = strlen (tmp);\n\t\t  concat_name =\n\t\t    XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, tmp, tmp_len);\n\t\t  concat_name[tmp_len] = '/';\n\t\t  strcpy (concat_name + tmp_len + 1, wrapper);\n\t\t}\n\t      else\n\t\t{\n\t\t  concat_name =\n\t\t    XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, p, p_len);\n\t\t  concat_name[p_len] = '/';\n\t\t  strcpy (concat_name + p_len + 1, wrapper);\n\t\t}\n\t      if (check_executable (concat_name))\n\t\treturn concat_name;\n\t      XFREE (concat_name);\n\t    }\n\t}\n      /* not found in PATH; assume curdir */\n    }\n  /* Relative path | not found in path: prepend cwd */\n  if (getcwd (tmp, LT_PATHMAX) == NULL)\n    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n              nonnull (strerror (errno)));\n  tmp_len = strlen (tmp);\n  concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n  memcpy (concat_name, tmp, tmp_len);\n  concat_name[tmp_len] = '/';\n  strcpy (concat_name + tmp_len + 1, wrapper);\n\n  if (check_executable (concat_name))\n    return concat_name;\n  XFREE (concat_name);\n  return NULL;\n}\n\nchar *\nchase_symlinks (const char *pathspec)\n{\n#ifndef S_ISLNK\n  return xstrdup (pathspec);\n#else\n  char buf[LT_PATHMAX];\n  struct stat s;\n  char *tmp_pathspec = xstrdup (pathspec);\n  char *p;\n  int has_symlinks = 0;\n  while (strlen (tmp_pathspec) && !has_symlinks)\n    {\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"checking path component for symlinks: %s\\n\",\n\t\t      tmp_pathspec);\n      if (lstat (tmp_pathspec, &s) == 0)\n\t{\n\t  if (S_ISLNK (s.st_mode) != 0)\n\t    {\n\t      has_symlinks = 1;\n\t      break;\n\t    }\n\n\t  /* search backwards for last DIR_SEPARATOR */\n\t  p = tmp_pathspec + strlen (tmp_pathspec) - 1;\n\t  while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    p--;\n\t  if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    {\n\t      /* no more DIR_SEPARATORS left */\n\t      break;\n\t    }\n\t  *p = '\\0';\n\t}\n      else\n\t{\n\t  lt_fatal (__FILE__, __LINE__,\n\t\t    \"error accessing file \\\"%s\\\": %s\",\n\t\t    tmp_pathspec, nonnull (strerror (errno)));\n\t}\n    }\n  XFREE (tmp_pathspec);\n\n  if (!has_symlinks)\n    {\n      return xstrdup (pathspec);\n    }\n\n  tmp_pathspec = realpath (pathspec, buf);\n  if (tmp_pathspec == 0)\n    {\n      lt_fatal (__FILE__, __LINE__,\n\t\t\"could not follow symlinks for %s\", pathspec);\n    }\n  return xstrdup (tmp_pathspec);\n#endif\n}\n\nchar *\nstrendzap (char *str, const char *pat)\n{\n  size_t len, patlen;\n\n  assert (str != NULL);\n  assert (pat != NULL);\n\n  len = strlen (str);\n  patlen = strlen (pat);\n\n  if (patlen <= len)\n    {\n      str += len - patlen;\n      if (STREQ (str, pat))\n\t*str = '\\0';\n    }\n  return str;\n}\n\nvoid\nlt_debugprintf (const char *file, int line, const char *fmt, ...)\n{\n  va_list args;\n  if (lt_debug)\n    {\n      (void) fprintf (stderr, \"%s:%s:%d: \", program_name, file, line);\n      va_start (args, fmt);\n      (void) vfprintf (stderr, fmt, args);\n      va_end (args);\n    }\n}\n\nstatic void\nlt_error_core (int exit_status, const char *file,\n\t       int line, const char *mode,\n\t       const char *message, va_list ap)\n{\n  fprintf (stderr, \"%s:%s:%d: %s: \", program_name, file, line, mode);\n  vfprintf (stderr, message, ap);\n  fprintf (stderr, \".\\n\");\n\n  if (exit_status >= 0)\n    exit (exit_status);\n}\n\nvoid\nlt_fatal (const char *file, int line, const char *message, ...)\n{\n  va_list ap;\n  va_start (ap, message);\n  lt_error_core (EXIT_FAILURE, file, line, \"FATAL\", message, ap);\n  va_end (ap);\n}\n\nstatic const char *\nnonnull (const char *s)\n{\n  return s ? s : \"(null)\";\n}\n\nstatic const char *\nnonempty (const char *s)\n{\n  return (s && !*s) ? \"(empty)\" : nonnull (s);\n}\n\nvoid\nlt_setenv (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_setenv) setting '%s' to '%s'\\n\",\n                  nonnull (name), nonnull (value));\n  {\n#ifdef HAVE_SETENV\n    /* always make a copy, for consistency with !HAVE_SETENV */\n    char *str = xstrdup (value);\n    setenv (name, str, 1);\n#else\n    size_t len = strlen (name) + 1 + strlen (value) + 1;\n    char *str = XMALLOC (char, len);\n    sprintf (str, \"%s=%s\", name, value);\n    if (putenv (str) != EXIT_SUCCESS)\n      {\n        XFREE (str);\n      }\n#endif\n  }\n}\n\nchar *\nlt_extend_str (const char *orig_value, const char *add, int to_end)\n{\n  char *new_value;\n  if (orig_value && *orig_value)\n    {\n      size_t orig_value_len = strlen (orig_value);\n      size_t add_len = strlen (add);\n      new_value = XMALLOC (char, add_len + orig_value_len + 1);\n      if (to_end)\n        {\n          strcpy (new_value, orig_value);\n          strcpy (new_value + orig_value_len, add);\n        }\n      else\n        {\n          strcpy (new_value, add);\n          strcpy (new_value + add_len, orig_value);\n        }\n    }\n  else\n    {\n      new_value = xstrdup (add);\n    }\n  return new_value;\n}\n\nvoid\nlt_update_exe_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_exe_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      /* some systems can't cope with a ':'-terminated path #' */\n      size_t len = strlen (new_value);\n      while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1]))\n        {\n          new_value[--len] = '\\0';\n        }\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nvoid\nlt_update_lib_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_lib_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nEOF\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n\n/* Prepares an argument vector before calling spawn().\n   Note that spawn() does not by itself call the command interpreter\n     (getenv (\"COMSPEC\") != NULL ? getenv (\"COMSPEC\") :\n      ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);\n         GetVersionEx(&v);\n         v.dwPlatformId == VER_PLATFORM_WIN32_NT;\n      }) ? \"cmd.exe\" : \"command.com\").\n   Instead it simply concatenates the arguments, separated by ' ', and calls\n   CreateProcess().  We must quote the arguments since Win32 CreateProcess()\n   interprets characters like ' ', '\\t', '\\\\', '\"' (but not '<' and '>') in a\n   special way:\n   - Space and tab are interpreted as delimiters. They are not treated as\n     delimiters if they are surrounded by double quotes: \"...\".\n   - Unescaped double quotes are removed from the input. Their only effect is\n     that within double quotes, space and tab are treated like normal\n     characters.\n   - Backslashes not followed by double quotes are not special.\n   - But 2*n+1 backslashes followed by a double quote become\n     n backslashes followed by a double quote (n >= 0):\n       \\\" -> \"\n       \\\\\\\" -> \\\"\n       \\\\\\\\\\\" -> \\\\\"\n */\n#define SHELL_SPECIAL_CHARS \"\\\"\\\\ \\001\\002\\003\\004\\005\\006\\007\\010\\011\\012\\013\\014\\015\\016\\017\\020\\021\\022\\023\\024\\025\\026\\027\\030\\031\\032\\033\\034\\035\\036\\037\"\n#define SHELL_SPACE_CHARS \" \\001\\002\\003\\004\\005\\006\\007\\010\\011\\012\\013\\014\\015\\016\\017\\020\\021\\022\\023\\024\\025\\026\\027\\030\\031\\032\\033\\034\\035\\036\\037\"\nchar **\nprepare_spawn (char **argv)\n{\n  size_t argc;\n  char **new_argv;\n  size_t i;\n\n  /* Count number of arguments.  */\n  for (argc = 0; argv[argc] != NULL; argc++)\n    ;\n\n  /* Allocate new argument vector.  */\n  new_argv = XMALLOC (char *, argc + 1);\n\n  /* Put quoted arguments into the new argument vector.  */\n  for (i = 0; i < argc; i++)\n    {\n      const char *string = argv[i];\n\n      if (string[0] == '\\0')\n\tnew_argv[i] = xstrdup (\"\\\"\\\"\");\n      else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)\n\t{\n\t  int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);\n\t  size_t length;\n\t  unsigned int backslashes;\n\t  const char *s;\n\t  char *quoted_string;\n\t  char *p;\n\n\t  length = 0;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    length++;\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\tlength += backslashes + 1;\n\t      length++;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    length += backslashes + 1;\n\n\t  quoted_string = XMALLOC (char, length + 1);\n\n\t  p = quoted_string;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    *p++ = '\"';\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\t{\n\t\t  unsigned int j;\n\t\t  for (j = backslashes + 1; j > 0; j--)\n\t\t    *p++ = '\\\\';\n\t\t}\n\t      *p++ = c;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    {\n\t      unsigned int j;\n\t      for (j = backslashes; j > 0; j--)\n\t\t*p++ = '\\\\';\n\t      *p++ = '\"';\n\t    }\n\t  *p = '\\0';\n\n\t  new_argv[i] = quoted_string;\n\t}\n      else\n\tnew_argv[i] = (char *) string;\n    }\n  new_argv[argc] = NULL;\n\n  return new_argv;\n}\nEOF\n\t\t;;\n\t    esac\n\n            cat <<\"EOF\"\nvoid lt_dump_script (FILE* f)\n{\nEOF\n\t    func_emit_wrapper yes |\n\t      $SED -n -e '\ns/^\\(.\\{79\\}\\)\\(..*\\)/\\1\\\n\\2/\nh\ns/\\([\\\\\"]\\)/\\\\\\1/g\ns/$/\\\\n/\ns/\\([^\\n]*\\).*/  fputs (\"\\1\", f);/p\ng\nD'\n            cat <<\"EOF\"\n}\nEOF\n}\n# end: func_emit_cwrapperexe_src\n\n# func_win32_import_lib_p ARG\n# True if ARG is an import lib, as indicated by $file_magic_cmd\nfunc_win32_import_lib_p ()\n{\n    $debug_cmd\n\n    case `eval $file_magic_cmd \\\"\\$1\\\" 2>/dev/null | $SED -e 10q` in\n    *import*) : ;;\n    *) false ;;\n    esac\n}\n\n# func_suncc_cstd_abi\n# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!!\n# Several compiler flags select an ABI that is incompatible with the\n# Cstd library. Avoid specifying it if any are in CXXFLAGS.\nfunc_suncc_cstd_abi ()\n{\n    $debug_cmd\n\n    case \" $compile_command \" in\n    *\" -compat=g \"*|*\\ -std=c++[0-9][0-9]\\ *|*\" -library=stdcxx4 \"*|*\" -library=stlport4 \"*)\n      suncc_use_cstd_abi=no\n      ;;\n    *)\n      suncc_use_cstd_abi=yes\n      ;;\n    esac\n}\n\n# func_mode_link arg...\nfunc_mode_link ()\n{\n    $debug_cmd\n\n    case $host in\n    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n      # It is impossible to link a dll without this setting, and\n      # we shouldn't force the makefile maintainer to figure out\n      # what system we are compiling for in order to pass an extra\n      # flag for every libtool invocation.\n      # allow_undefined=no\n\n      # FIXME: Unfortunately, there are problems with the above when trying\n      # to make a dll that has undefined symbols, in which case not\n      # even a static library is built.  For now, we need to specify\n      # -no-undefined on the libtool link line when we can be certain\n      # that all symbols are satisfied, otherwise we get a static library.\n      allow_undefined=yes\n      ;;\n    *)\n      allow_undefined=yes\n      ;;\n    esac\n    libtool_args=$nonopt\n    base_compile=\"$nonopt $@\"\n    compile_command=$nonopt\n    finalize_command=$nonopt\n\n    compile_rpath=\n    finalize_rpath=\n    compile_shlibpath=\n    finalize_shlibpath=\n    convenience=\n    old_convenience=\n    deplibs=\n    old_deplibs=\n    compiler_flags=\n    linker_flags=\n    dllsearchpath=\n    lib_search_path=`pwd`\n    inst_prefix_dir=\n    new_inherited_linker_flags=\n\n    avoid_version=no\n    bindir=\n    dlfiles=\n    dlprefiles=\n    dlself=no\n    export_dynamic=no\n    export_symbols=\n    export_symbols_regex=\n    generated=\n    libobjs=\n    ltlibs=\n    module=no\n    no_install=no\n    objs=\n    os2dllname=\n    non_pic_objects=\n    precious_files_regex=\n    prefer_static_libs=no\n    preload=false\n    prev=\n    prevarg=\n    release=\n    rpath=\n    xrpath=\n    perm_rpath=\n    temp_rpath=\n    thread_safe=no\n    vinfo=\n    vinfo_number=no\n    weak_libs=\n    single_module=$wl-single_module\n    func_infer_tag $base_compile\n\n    # We need to know -static, to get the right output filenames.\n    for arg\n    do\n      case $arg in\n      -shared)\n\ttest yes != \"$build_libtool_libs\" \\\n\t  && func_fatal_configuration \"cannot build a shared library\"\n\tbuild_old_libs=no\n\tbreak\n\t;;\n      -all-static | -static | -static-libtool-libs)\n\tcase $arg in\n\t-all-static)\n\t  if test yes = \"$build_libtool_libs\" && test -z \"$link_static_flag\"; then\n\t    func_warning \"complete static linking is impossible in this configuration\"\n\t  fi\n\t  if test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\t-static)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=built\n\t  ;;\n\t-static-libtool-libs)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\tesac\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tbreak\n\t;;\n      esac\n    done\n\n    # See if our shared archives depend on static archives.\n    test -n \"$old_archive_from_new_cmds\" && build_old_libs=yes\n\n    # Go through the arguments, transforming them on the way.\n    while test \"$#\" -gt 0; do\n      arg=$1\n      shift\n      func_quote_for_eval \"$arg\"\n      qarg=$func_quote_for_eval_unquoted_result\n      func_append libtool_args \" $func_quote_for_eval_result\"\n\n      # If the previous option needs an argument, assign it.\n      if test -n \"$prev\"; then\n\tcase $prev in\n\toutput)\n\t  func_append compile_command \" @OUTPUT@\"\n\t  func_append finalize_command \" @OUTPUT@\"\n\t  ;;\n\tesac\n\n\tcase $prev in\n\tbindir)\n\t  bindir=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tdlfiles|dlprefiles)\n\t  $preload || {\n\t    # Add the symbol object into the linking commands.\n\t    func_append compile_command \" @SYMFILE@\"\n\t    func_append finalize_command \" @SYMFILE@\"\n\t    preload=:\n\t  }\n\t  case $arg in\n\t  *.la | *.lo) ;;  # We handle these cases below.\n\t  force)\n\t    if test no = \"$dlself\"; then\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  self)\n\t    if test dlprefiles = \"$prev\"; then\n\t      dlself=yes\n\t    elif test dlfiles = \"$prev\" && test yes != \"$dlopen_self\"; then\n\t      dlself=yes\n\t    else\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  *)\n\t    if test dlfiles = \"$prev\"; then\n\t      func_append dlfiles \" $arg\"\n\t    else\n\t      func_append dlprefiles \" $arg\"\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  esac\n\t  ;;\n\texpsyms)\n\t  export_symbols=$arg\n\t  test -f \"$arg\" \\\n\t    || func_fatal_error \"symbol file '$arg' does not exist\"\n\t  prev=\n\t  continue\n\t  ;;\n\texpsyms_regex)\n\t  export_symbols_regex=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tframework)\n\t  case $host in\n\t    *-*-darwin*)\n\t      case \"$deplibs \" in\n\t\t*\" $qarg.ltframework \"*) ;;\n\t\t*) func_append deplibs \" $qarg.ltframework\" # this is fixed later\n\t\t   ;;\n\t      esac\n\t      ;;\n\t  esac\n\t  prev=\n\t  continue\n\t  ;;\n\tinst_prefix)\n\t  inst_prefix_dir=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tmllvm)\n\t  # Clang does not use LLVM to link, so we can simply discard any\n\t  # '-mllvm $arg' options when doing the link step.\n\t  prev=\n\t  continue\n\t  ;;\n\tobjectlist)\n\t  if test -f \"$arg\"; then\n\t    save_arg=$arg\n\t    moreargs=\n\t    for fil in `cat \"$save_arg\"`\n\t    do\n#\t      func_append moreargs \" $fil\"\n\t      arg=$fil\n\t      # A libtool-controlled object.\n\n\t      # Check to see that this really is a libtool object.\n\t      if func_lalib_unsafe_p \"$arg\"; then\n\t\tpic_object=\n\t\tnon_pic_object=\n\n\t\t# Read the .lo file\n\t\tfunc_source \"$arg\"\n\n\t\tif test -z \"$pic_object\" ||\n\t\t   test -z \"$non_pic_object\" ||\n\t\t   test none = \"$pic_object\" &&\n\t\t   test none = \"$non_pic_object\"; then\n\t\t  func_fatal_error \"cannot find name of object for '$arg'\"\n\t\tfi\n\n\t\t# Extract subdirectory from the argument.\n\t\tfunc_dirname \"$arg\" \"/\" \"\"\n\t\txdir=$func_dirname_result\n\n\t\tif test none != \"$pic_object\"; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  pic_object=$xdir$pic_object\n\n\t\t  if test dlfiles = \"$prev\"; then\n\t\t    if test yes = \"$build_libtool_libs\" && test yes = \"$dlopen_support\"; then\n\t\t      func_append dlfiles \" $pic_object\"\n\t\t      prev=\n\t\t      continue\n\t\t    else\n\t\t      # If libtool objects are unsupported, then we need to preload.\n\t\t      prev=dlprefiles\n\t\t    fi\n\t\t  fi\n\n\t\t  # CHECK ME:  I think I busted this.  -Ossama\n\t\t  if test dlprefiles = \"$prev\"; then\n\t\t    # Preload the old-style object.\n\t\t    func_append dlprefiles \" $pic_object\"\n\t\t    prev=\n\t\t  fi\n\n\t\t  # A PIC object.\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  arg=$pic_object\n\t\tfi\n\n\t\t# Non-PIC object.\n\t\tif test none != \"$non_pic_object\"; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  non_pic_object=$xdir$non_pic_object\n\n\t\t  # A standard non-PIC object\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\t  if test -z \"$pic_object\" || test none = \"$pic_object\"; then\n\t\t    arg=$non_pic_object\n\t\t  fi\n\t\telse\n\t\t  # If the PIC object exists, use it instead.\n\t\t  # $xdir was prepended to $pic_object above.\n\t\t  non_pic_object=$pic_object\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\tfi\n\t      else\n\t\t# Only an error if not doing a dry-run.\n\t\tif $opt_dry_run; then\n\t\t  # Extract subdirectory from the argument.\n\t\t  func_dirname \"$arg\" \"/\" \"\"\n\t\t  xdir=$func_dirname_result\n\n\t\t  func_lo2o \"$arg\"\n\t\t  pic_object=$xdir$objdir/$func_lo2o_result\n\t\t  non_pic_object=$xdir$func_lo2o_result\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t        else\n\t\t  func_fatal_error \"'$arg' is not a valid libtool object\"\n\t\tfi\n\t      fi\n\t    done\n\t  else\n\t    func_fatal_error \"link input file '$arg' does not exist\"\n\t  fi\n\t  arg=$save_arg\n\t  prev=\n\t  continue\n\t  ;;\n\tos2dllname)\n\t  os2dllname=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tprecious_regex)\n\t  precious_files_regex=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\trelease)\n\t  release=-$arg\n\t  prev=\n\t  continue\n\t  ;;\n\trpath | xrpath)\n\t  # We need an absolute path.\n\t  case $arg in\n\t  [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t  *)\n\t    func_fatal_error \"only absolute run-paths are allowed\"\n\t    ;;\n\t  esac\n\t  if test rpath = \"$prev\"; then\n\t    case \"$rpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) func_append rpath \" $arg\" ;;\n\t    esac\n\t  else\n\t    case \"$xrpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) func_append xrpath \" $arg\" ;;\n\t    esac\n\t  fi\n\t  prev=\n\t  continue\n\t  ;;\n\tshrext)\n\t  shrext_cmds=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tweak)\n\t  func_append weak_libs \" $arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\txcclinker)\n\t  func_append linker_flags \" $qarg\"\n\t  func_append compiler_flags \" $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txcompiler)\n\t  func_append compiler_flags \" $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txlinker)\n\t  func_append linker_flags \" $qarg\"\n\t  func_append compiler_flags \" $wl$qarg\"\n\t  prev=\n\t  func_append compile_command \" $wl$qarg\"\n\t  func_append finalize_command \" $wl$qarg\"\n\t  continue\n\t  ;;\n\t*)\n\t  eval \"$prev=\\\"\\$arg\\\"\"\n\t  prev=\n\t  continue\n\t  ;;\n\tesac\n      fi # test -n \"$prev\"\n\n      prevarg=$arg\n\n      case $arg in\n      -all-static)\n\tif test -n \"$link_static_flag\"; then\n\t  # See comment for -static flag below, for more details.\n\t  func_append compile_command \" $link_static_flag\"\n\t  func_append finalize_command \" $link_static_flag\"\n\tfi\n\tcontinue\n\t;;\n\n      -allow-undefined)\n\t# FIXME: remove this flag sometime in the future.\n\tfunc_fatal_error \"'-allow-undefined' must not be used because it is the default\"\n\t;;\n\n      -avoid-version)\n\tavoid_version=yes\n\tcontinue\n\t;;\n\n      -bindir)\n\tprev=bindir\n\tcontinue\n\t;;\n\n      -dlopen)\n\tprev=dlfiles\n\tcontinue\n\t;;\n\n      -dlpreopen)\n\tprev=dlprefiles\n\tcontinue\n\t;;\n\n      -export-dynamic)\n\texport_dynamic=yes\n\tcontinue\n\t;;\n\n      -export-symbols | -export-symbols-regex)\n\tif test -n \"$export_symbols\" || test -n \"$export_symbols_regex\"; then\n\t  func_fatal_error \"more than one -exported-symbols argument is not allowed\"\n\tfi\n\tif test X-export-symbols = \"X$arg\"; then\n\t  prev=expsyms\n\telse\n\t  prev=expsyms_regex\n\tfi\n\tcontinue\n\t;;\n\n      -framework)\n\tprev=framework\n\tcontinue\n\t;;\n\n      -inst-prefix-dir)\n\tprev=inst_prefix\n\tcontinue\n\t;;\n\n      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*\n      # so, if we see these flags be careful not to treat them like -L\n      -L[A-Z][A-Z]*:*)\n\tcase $with_gcc/$host in\n\tno/*-*-irix* | /*-*-irix*)\n\t  func_append compile_command \" $arg\"\n\t  func_append finalize_command \" $arg\"\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -L*)\n\tfunc_stripname \"-L\" '' \"$arg\"\n\tif test -z \"$func_stripname_result\"; then\n\t  if test \"$#\" -gt 0; then\n\t    func_fatal_error \"require no space between '-L' and '$1'\"\n\t  else\n\t    func_fatal_error \"need path for '-L' option\"\n\t  fi\n\tfi\n\tfunc_resolve_sysroot \"$func_stripname_result\"\n\tdir=$func_resolve_sysroot_result\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t*)\n\t  absdir=`cd \"$dir\" && pwd`\n\t  test -z \"$absdir\" && \\\n\t    func_fatal_error \"cannot determine absolute directory name of '$dir'\"\n\t  dir=$absdir\n\t  ;;\n\tesac\n\tcase \"$deplibs \" in\n\t*\" -L$dir \"* | *\" $arg \"*)\n\t  # Will only happen for absolute or sysroot arguments\n\t  ;;\n\t*)\n\t  # Preserve sysroot, but never include relative directories\n\t  case $dir in\n\t    [\\\\/]* | [A-Za-z]:[\\\\/]* | =*) func_append deplibs \" $arg\" ;;\n\t    *) func_append deplibs \" -L$dir\" ;;\n\t  esac\n\t  func_append lib_search_path \" $dir\"\n\t  ;;\n\tesac\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`$ECHO \"$dir\" | $SED 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$dir:\"*) ;;\n\t  ::) dllsearchpath=$dir;;\n\t  *) func_append dllsearchpath \":$dir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) func_append dllsearchpath \":$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -l*)\n\tif test X-lc = \"X$arg\" || test X-lm = \"X$arg\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # These systems don't actually have a C or math library (as such)\n\t    continue\n\t    ;;\n\t  *-*-os2*)\n\t    # These systems don't actually have a C library (as such)\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C and math libraries are in the System framework\n\t    func_append deplibs \" System.ltframework\"\n\t    continue\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  esac\n\telif test X-lc_r = \"X$arg\"; then\n\t case $host in\n\t *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)\n\t   # Do not include libc_r directly, use -pthread flag.\n\t   continue\n\t   ;;\n\t esac\n\tfi\n\tfunc_append deplibs \" $arg\"\n\tcontinue\n\t;;\n\n      -mllvm)\n\tprev=mllvm\n\tcontinue\n\t;;\n\n      -module)\n\tmodule=yes\n\tcontinue\n\t;;\n\n      # Tru64 UNIX uses -model [arg] to determine the layout of C++\n      # classes, name mangling, and exception handling.\n      # Darwin uses the -arch flag to determine output architecture.\n      -model|-arch|-isysroot|--sysroot)\n\tfunc_append compiler_flags \" $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \\\n      |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)\n\tfunc_append compiler_flags \" $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tcase \"$new_inherited_linker_flags \" in\n\t    *\" $arg \"*) ;;\n\t    * ) func_append new_inherited_linker_flags \" $arg\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -multi_module)\n\tsingle_module=$wl-multi_module\n\tcontinue\n\t;;\n\n      -no-fast-install)\n\tfast_install=no\n\tcontinue\n\t;;\n\n      -no-install)\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)\n\t  # The PATH hackery in wrapper scripts is required on Windows\n\t  # and Darwin in order for the loader to find any dlls it needs.\n\t  func_warning \"'-no-install' is ignored for $host\"\n\t  func_warning \"assuming '-no-fast-install' instead\"\n\t  fast_install=no\n\t  ;;\n\t*) no_install=yes ;;\n\tesac\n\tcontinue\n\t;;\n\n      -no-undefined)\n\tallow_undefined=no\n\tcontinue\n\t;;\n\n      -objectlist)\n\tprev=objectlist\n\tcontinue\n\t;;\n\n      -os2dllname)\n\tprev=os2dllname\n\tcontinue\n\t;;\n\n      -o) prev=output ;;\n\n      -precious-files-regex)\n\tprev=precious_regex\n\tcontinue\n\t;;\n\n      -release)\n\tprev=release\n\tcontinue\n\t;;\n\n      -rpath)\n\tprev=rpath\n\tcontinue\n\t;;\n\n      -R)\n\tprev=xrpath\n\tcontinue\n\t;;\n\n      -R*)\n\tfunc_stripname '-R' '' \"$arg\"\n\tdir=$func_stripname_result\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t=*)\n\t  func_stripname '=' '' \"$dir\"\n\t  dir=$lt_sysroot$func_stripname_result\n\t  ;;\n\t*)\n\t  func_fatal_error \"only absolute run-paths are allowed\"\n\t  ;;\n\tesac\n\tcase \"$xrpath \" in\n\t*\" $dir \"*) ;;\n\t*) func_append xrpath \" $dir\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -shared)\n\t# The effects of -shared are defined in a previous loop.\n\tcontinue\n\t;;\n\n      -shrext)\n\tprev=shrext\n\tcontinue\n\t;;\n\n      -static | -static-libtool-libs)\n\t# The effects of -static are defined in a previous loop.\n\t# We used to do the same as -all-static on platforms that\n\t# didn't have a PIC flag, but the assumption that the effects\n\t# would be equivalent was wrong.  It would break on at least\n\t# Digital Unix and AIX.\n\tcontinue\n\t;;\n\n      -thread-safe)\n\tthread_safe=yes\n\tcontinue\n\t;;\n\n      -version-info)\n\tprev=vinfo\n\tcontinue\n\t;;\n\n      -version-number)\n\tprev=vinfo\n\tvinfo_number=yes\n\tcontinue\n\t;;\n\n      -weak)\n        prev=weak\n\tcontinue\n\t;;\n\n      -Wc,*)\n\tfunc_stripname '-Wc,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=$IFS; IFS=,\n\tfor flag in $args; do\n\t  IFS=$save_ifs\n          func_quote_for_eval \"$flag\"\n\t  func_append arg \" $func_quote_for_eval_result\"\n\t  func_append compiler_flags \" $func_quote_for_eval_result\"\n\tdone\n\tIFS=$save_ifs\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Wl,*)\n\tfunc_stripname '-Wl,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=$IFS; IFS=,\n\tfor flag in $args; do\n\t  IFS=$save_ifs\n          func_quote_for_eval \"$flag\"\n\t  func_append arg \" $wl$func_quote_for_eval_result\"\n\t  func_append compiler_flags \" $wl$func_quote_for_eval_result\"\n\t  func_append linker_flags \" $func_quote_for_eval_result\"\n\tdone\n\tIFS=$save_ifs\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Xcompiler)\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -Xlinker)\n\tprev=xlinker\n\tcontinue\n\t;;\n\n      -XCClinker)\n\tprev=xcclinker\n\tcontinue\n\t;;\n\n      # -msg_* for osf cc\n      -msg_*)\n\tfunc_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n\n      # Flags to be passed through unchanged, with rationale:\n      # -64, -mips[0-9]      enable 64-bit mode for the SGI compiler\n      # -r[0-9][0-9]*        specify processor for the SGI compiler\n      # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler\n      # +DA*, +DD*           enable 64-bit mode for the HP compiler\n      # -q*                  compiler args for the IBM compiler\n      # -m*, -t[45]*, -txscale* architecture-specific flags for GCC\n      # -F/path              path to uninstalled frameworks, gcc on darwin\n      # -p, -pg, --coverage, -fprofile-*  profiling flags for GCC\n      # -fstack-protector*   stack protector flags for GCC\n      # @file                GCC response files\n      # -tp=*                Portland pgcc target processor selection\n      # --sysroot=*          for sysroot support\n      # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization\n      # -stdlib=*            select c++ std lib with clang\n      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \\\n      -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \\\n      -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*)\n        func_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n        func_append compile_command \" $arg\"\n        func_append finalize_command \" $arg\"\n        func_append compiler_flags \" $arg\"\n        continue\n        ;;\n\n      -Z*)\n        if test os2 = \"`expr $host : '.*\\(os2\\)'`\"; then\n          # OS/2 uses -Zxxx to specify OS/2-specific options\n\t  compiler_flags=\"$compiler_flags $arg\"\n\t  func_append compile_command \" $arg\"\n\t  func_append finalize_command \" $arg\"\n\t  case $arg in\n\t  -Zlinker | -Zstack)\n\t    prev=xcompiler\n\t    ;;\n\t  esac\n\t  continue\n        else\n\t  # Otherwise treat like 'Some other compiler flag' below\n\t  func_quote_for_eval \"$arg\"\n\t  arg=$func_quote_for_eval_result\n        fi\n\t;;\n\n      # Some other compiler flag.\n      -* | +*)\n        func_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n\n      *.$objext)\n\t# A standard object.\n\tfunc_append objs \" $arg\"\n\t;;\n\n      *.lo)\n\t# A libtool-controlled object.\n\n\t# Check to see that this really is a libtool object.\n\tif func_lalib_unsafe_p \"$arg\"; then\n\t  pic_object=\n\t  non_pic_object=\n\n\t  # Read the .lo file\n\t  func_source \"$arg\"\n\n\t  if test -z \"$pic_object\" ||\n\t     test -z \"$non_pic_object\" ||\n\t     test none = \"$pic_object\" &&\n\t     test none = \"$non_pic_object\"; then\n\t    func_fatal_error \"cannot find name of object for '$arg'\"\n\t  fi\n\n\t  # Extract subdirectory from the argument.\n\t  func_dirname \"$arg\" \"/\" \"\"\n\t  xdir=$func_dirname_result\n\n\t  test none = \"$pic_object\" || {\n\t    # Prepend the subdirectory the object is found in.\n\t    pic_object=$xdir$pic_object\n\n\t    if test dlfiles = \"$prev\"; then\n\t      if test yes = \"$build_libtool_libs\" && test yes = \"$dlopen_support\"; then\n\t\tfunc_append dlfiles \" $pic_object\"\n\t\tprev=\n\t\tcontinue\n\t      else\n\t\t# If libtool objects are unsupported, then we need to preload.\n\t\tprev=dlprefiles\n\t      fi\n\t    fi\n\n\t    # CHECK ME:  I think I busted this.  -Ossama\n\t    if test dlprefiles = \"$prev\"; then\n\t      # Preload the old-style object.\n\t      func_append dlprefiles \" $pic_object\"\n\t      prev=\n\t    fi\n\n\t    # A PIC object.\n\t    func_append libobjs \" $pic_object\"\n\t    arg=$pic_object\n\t  }\n\n\t  # Non-PIC object.\n\t  if test none != \"$non_pic_object\"; then\n\t    # Prepend the subdirectory the object is found in.\n\t    non_pic_object=$xdir$non_pic_object\n\n\t    # A standard non-PIC object\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t    if test -z \"$pic_object\" || test none = \"$pic_object\"; then\n\t      arg=$non_pic_object\n\t    fi\n\t  else\n\t    # If the PIC object exists, use it instead.\n\t    # $xdir was prepended to $pic_object above.\n\t    non_pic_object=$pic_object\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  fi\n\telse\n\t  # Only an error if not doing a dry-run.\n\t  if $opt_dry_run; then\n\t    # Extract subdirectory from the argument.\n\t    func_dirname \"$arg\" \"/\" \"\"\n\t    xdir=$func_dirname_result\n\n\t    func_lo2o \"$arg\"\n\t    pic_object=$xdir$objdir/$func_lo2o_result\n\t    non_pic_object=$xdir$func_lo2o_result\n\t    func_append libobjs \" $pic_object\"\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  else\n\t    func_fatal_error \"'$arg' is not a valid libtool object\"\n\t  fi\n\tfi\n\t;;\n\n      *.$libext)\n\t# An archive.\n\tfunc_append deplibs \" $arg\"\n\tfunc_append old_deplibs \" $arg\"\n\tcontinue\n\t;;\n\n      *.la)\n\t# A libtool-controlled library.\n\n\tfunc_resolve_sysroot \"$arg\"\n\tif test dlfiles = \"$prev\"; then\n\t  # This library was specified with -dlopen.\n\t  func_append dlfiles \" $func_resolve_sysroot_result\"\n\t  prev=\n\telif test dlprefiles = \"$prev\"; then\n\t  # The library was specified with -dlpreopen.\n\t  func_append dlprefiles \" $func_resolve_sysroot_result\"\n\t  prev=\n\telse\n\t  func_append deplibs \" $func_resolve_sysroot_result\"\n\tfi\n\tcontinue\n\t;;\n\n      # Some other compiler argument.\n      *)\n\t# Unknown arguments in both finalize_command and compile_command need\n\t# to be aesthetically quoted because they are evaled later.\n\tfunc_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n      esac # arg\n\n      # Now actually substitute the argument into the commands.\n      if test -n \"$arg\"; then\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n      fi\n    done # argument parsing loop\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the '$prevarg' option requires an argument\"\n\n    if test yes = \"$export_dynamic\" && test -n \"$export_dynamic_flag_spec\"; then\n      eval arg=\\\"$export_dynamic_flag_spec\\\"\n      func_append compile_command \" $arg\"\n      func_append finalize_command \" $arg\"\n    fi\n\n    oldlibs=\n    # calculate the name of the file, without its directory\n    func_basename \"$output\"\n    outputname=$func_basename_result\n    libobjs_save=$libobjs\n\n    if test -n \"$shlibpath_var\"; then\n      # get the directories listed in $shlibpath_var\n      eval shlib_search_path=\\`\\$ECHO \\\"\\$$shlibpath_var\\\" \\| \\$SED \\'s/:/ /g\\'\\`\n    else\n      shlib_search_path=\n    fi\n    eval sys_lib_search_path=\\\"$sys_lib_search_path_spec\\\"\n    eval sys_lib_dlsearch_path=\\\"$sys_lib_dlsearch_path_spec\\\"\n\n    # Definition is injected by LT_CONFIG during libtool generation.\n    func_munge_path_list sys_lib_dlsearch_path \"$LT_SYS_LIBRARY_PATH\"\n\n    func_dirname \"$output\" \"/\" \"\"\n    output_objdir=$func_dirname_result$objdir\n    func_to_tool_file \"$output_objdir/\"\n    tool_output_objdir=$func_to_tool_file_result\n    # Create the object directory.\n    func_mkdir_p \"$output_objdir\"\n\n    # Determine the type of output\n    case $output in\n    \"\")\n      func_fatal_help \"you must specify an output file\"\n      ;;\n    *.$libext) linkmode=oldlib ;;\n    *.lo | *.$objext) linkmode=obj ;;\n    *.la) linkmode=lib ;;\n    *) linkmode=prog ;; # Anything else should be a program.\n    esac\n\n    specialdeplibs=\n\n    libs=\n    # Find all interdependent deplibs by searching for libraries\n    # that are linked more than once (e.g. -la -lb -la)\n    for deplib in $deplibs; do\n      if $opt_preserve_dup_deps; then\n\tcase \"$libs \" in\n\t*\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\tesac\n      fi\n      func_append libs \" $deplib\"\n    done\n\n    if test lib = \"$linkmode\"; then\n      libs=\"$predeps $libs $compiler_lib_search_path $postdeps\"\n\n      # Compute libraries that are listed more than once in $predeps\n      # $postdeps and mark them as special (i.e., whose duplicates are\n      # not to be eliminated).\n      pre_post_deps=\n      if $opt_duplicate_compiler_generated_deps; then\n\tfor pre_post_dep in $predeps $postdeps; do\n\t  case \"$pre_post_deps \" in\n\t  *\" $pre_post_dep \"*) func_append specialdeplibs \" $pre_post_deps\" ;;\n\t  esac\n\t  func_append pre_post_deps \" $pre_post_dep\"\n\tdone\n      fi\n      pre_post_deps=\n    fi\n\n    deplibs=\n    newdependency_libs=\n    newlib_search_path=\n    need_relink=no # whether we're linking any uninstalled libtool libraries\n    notinst_deplibs= # not-installed libtool libraries\n    notinst_path= # paths that contain not-installed libtool libraries\n\n    case $linkmode in\n    lib)\n\tpasses=\"conv dlpreopen link\"\n\tfor file in $dlfiles $dlprefiles; do\n\t  case $file in\n\t  *.la) ;;\n\t  *)\n\t    func_fatal_help \"libraries can '-dlopen' only libtool libraries: $file\"\n\t    ;;\n\t  esac\n\tdone\n\t;;\n    prog)\n\tcompile_deplibs=\n\tfinalize_deplibs=\n\talldeplibs=false\n\tnewdlfiles=\n\tnewdlprefiles=\n\tpasses=\"conv scan dlopen dlpreopen link\"\n\t;;\n    *)  passes=\"conv\"\n\t;;\n    esac\n\n    for pass in $passes; do\n      # The preopen pass in lib mode reverses $deplibs; put it back here\n      # so that -L comes before libs that need it for instance...\n      if test lib,link = \"$linkmode,$pass\"; then\n\t## FIXME: Find the place where the list is rebuilt in the wrong\n\t##        order, and fix it there properly\n        tmp_deplibs=\n\tfor deplib in $deplibs; do\n\t  tmp_deplibs=\"$deplib $tmp_deplibs\"\n\tdone\n\tdeplibs=$tmp_deplibs\n      fi\n\n      if test lib,link = \"$linkmode,$pass\" ||\n\t test prog,scan = \"$linkmode,$pass\"; then\n\tlibs=$deplibs\n\tdeplibs=\n      fi\n      if test prog = \"$linkmode\"; then\n\tcase $pass in\n\tdlopen) libs=$dlfiles ;;\n\tdlpreopen) libs=$dlprefiles ;;\n\tlink) libs=\"$deplibs %DEPLIBS% $dependency_libs\" ;;\n\tesac\n      fi\n      if test lib,dlpreopen = \"$linkmode,$pass\"; then\n\t# Collect and forward deplibs of preopened libtool libs\n\tfor lib in $dlprefiles; do\n\t  # Ignore non-libtool-libs\n\t  dependency_libs=\n\t  func_resolve_sysroot \"$lib\"\n\t  case $lib in\n\t  *.la)\tfunc_source \"$func_resolve_sysroot_result\" ;;\n\t  esac\n\n\t  # Collect preopened libtool deplibs, except any this library\n\t  # has declared as weak libs\n\t  for deplib in $dependency_libs; do\n\t    func_basename \"$deplib\"\n            deplib_base=$func_basename_result\n\t    case \" $weak_libs \" in\n\t    *\" $deplib_base \"*) ;;\n\t    *) func_append deplibs \" $deplib\" ;;\n\t    esac\n\t  done\n\tdone\n\tlibs=$dlprefiles\n      fi\n      if test dlopen = \"$pass\"; then\n\t# Collect dlpreopened libraries\n\tsave_deplibs=$deplibs\n\tdeplibs=\n      fi\n\n      for deplib in $libs; do\n\tlib=\n\tfound=false\n\tcase $deplib in\n\t-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \\\n        |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)\n\t  if test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    func_append compiler_flags \" $deplib\"\n\t    if test lib = \"$linkmode\"; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) func_append new_inherited_linker_flags \" $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-l*)\n\t  if test lib != \"$linkmode\" && test prog != \"$linkmode\"; then\n\t    func_warning \"'-l' is ignored for archives/objects\"\n\t    continue\n\t  fi\n\t  func_stripname '-l' '' \"$deplib\"\n\t  name=$func_stripname_result\n\t  if test lib = \"$linkmode\"; then\n\t    searchdirs=\"$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path\"\n\t  else\n\t    searchdirs=\"$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path\"\n\t  fi\n\t  for searchdir in $searchdirs; do\n\t    for search_ext in .la $std_shrext .so .a; do\n\t      # Search the libtool library\n\t      lib=$searchdir/lib$name$search_ext\n\t      if test -f \"$lib\"; then\n\t\tif test .la = \"$search_ext\"; then\n\t\t  found=:\n\t\telse\n\t\t  found=false\n\t\tfi\n\t\tbreak 2\n\t      fi\n\t    done\n\t  done\n\t  if $found; then\n\t    # deplib is a libtool library\n\t    # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,\n\t    # We need to do some special things here, and not later.\n\t    if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t      case \" $predeps $postdeps \" in\n\t      *\" $deplib \"*)\n\t\tif func_lalib_p \"$lib\"; then\n\t\t  library_names=\n\t\t  old_library=\n\t\t  func_source \"$lib\"\n\t\t  for l in $old_library $library_names; do\n\t\t    ll=$l\n\t\t  done\n\t\t  if test \"X$ll\" = \"X$old_library\"; then # only static version available\n\t\t    found=false\n\t\t    func_dirname \"$lib\" \"\" \".\"\n\t\t    ladir=$func_dirname_result\n\t\t    lib=$ladir/$old_library\n\t\t    if test prog,link = \"$linkmode,$pass\"; then\n\t\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t\t    else\n\t\t      deplibs=\"$deplib $deplibs\"\n\t\t      test lib = \"$linkmode\" && newdependency_libs=\"$deplib $newdependency_libs\"\n\t\t    fi\n\t\t    continue\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *) ;;\n\t      esac\n\t    fi\n\t  else\n\t    # deplib doesn't seem to be a libtool library\n\t    if test prog,link = \"$linkmode,$pass\"; then\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      deplibs=\"$deplib $deplibs\"\n\t      test lib = \"$linkmode\" && newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    continue\n\t  fi\n\t  ;; # -l\n\t*.ltframework)\n\t  if test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$deplib $deplibs\"\n\t    if test lib = \"$linkmode\"; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) func_append new_inherited_linker_flags \" $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-L*)\n\t  case $linkmode in\n\t  lib)\n\t    deplibs=\"$deplib $deplibs\"\n\t    test conv = \"$pass\" && continue\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    func_stripname '-L' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t    ;;\n\t  prog)\n\t    if test conv = \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t      continue\n\t    fi\n\t    if test scan = \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    func_stripname '-L' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t    ;;\n\t  *)\n\t    func_warning \"'-L' is ignored for archives/objects\"\n\t    ;;\n\t  esac # linkmode\n\t  continue\n\t  ;; # -L\n\t-R*)\n\t  if test link = \"$pass\"; then\n\t    func_stripname '-R' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    dir=$func_resolve_sysroot_result\n\t    # Make sure the xrpath contains only unique directories.\n\t    case \"$xrpath \" in\n\t    *\" $dir \"*) ;;\n\t    *) func_append xrpath \" $dir\" ;;\n\t    esac\n\t  fi\n\t  deplibs=\"$deplib $deplibs\"\n\t  continue\n\t  ;;\n\t*.la)\n\t  func_resolve_sysroot \"$deplib\"\n\t  lib=$func_resolve_sysroot_result\n\t  ;;\n\t*.$libext)\n\t  if test conv = \"$pass\"; then\n\t    deplibs=\"$deplib $deplibs\"\n\t    continue\n\t  fi\n\t  case $linkmode in\n\t  lib)\n\t    # Linking convenience modules into shared libraries is allowed,\n\t    # but linking other static libraries is non-portable.\n\t    case \" $dlpreconveniencelibs \" in\n\t    *\" $deplib \"*) ;;\n\t    *)\n\t      valid_a_lib=false\n\t      case $deplibs_check_method in\n\t\tmatch_pattern*)\n\t\t  set dummy $deplibs_check_method; shift\n\t\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t\t  if eval \"\\$ECHO \\\"$deplib\\\"\" 2>/dev/null | $SED 10q \\\n\t\t    | $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t    valid_a_lib=:\n\t\t  fi\n\t\t;;\n\t\tpass_all)\n\t\t  valid_a_lib=:\n\t\t;;\n\t      esac\n\t      if $valid_a_lib; then\n\t\techo\n\t\t$ECHO \"*** Warning: Linking the shared library $output against the\"\n\t\t$ECHO \"*** static library $deplib is not portable!\"\n\t\tdeplibs=\"$deplib $deplibs\"\n\t      else\n\t\techo\n\t\t$ECHO \"*** Warning: Trying to link with static lib archive $deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because the file extensions .$libext of this argument makes me believe\"\n\t\techo \"*** that it is just a static archive that I should not use here.\"\n\t      fi\n\t      ;;\n\t    esac\n\t    continue\n\t    ;;\n\t  prog)\n\t    if test link != \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    continue\n\t    ;;\n\t  esac # linkmode\n\t  ;; # *.$libext\n\t*.lo | *.$objext)\n\t  if test conv = \"$pass\"; then\n\t    deplibs=\"$deplib $deplibs\"\n\t  elif test prog = \"$linkmode\"; then\n\t    if test dlpreopen = \"$pass\" || test yes != \"$dlopen_support\" || test no = \"$build_libtool_libs\"; then\n\t      # If there is no dlopen support or we're linking statically,\n\t      # we need to preload.\n\t      func_append newdlprefiles \" $deplib\"\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      func_append newdlfiles \" $deplib\"\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t%DEPLIBS%)\n\t  alldeplibs=:\n\t  continue\n\t  ;;\n\tesac # case $deplib\n\n\t$found || test -f \"$lib\" \\\n\t  || func_fatal_error \"cannot find the library '$lib' or unhandled argument '$deplib'\"\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$lib\" \\\n\t  || func_fatal_error \"'$lib' is not a valid libtool archive\"\n\n\tfunc_dirname \"$lib\" \"\" \".\"\n\tladir=$func_dirname_result\n\n\tdlname=\n\tdlopen=\n\tdlpreopen=\n\tlibdir=\n\tlibrary_names=\n\told_library=\n\tinherited_linker_flags=\n\t# If the library was installed with an old release of libtool,\n\t# it will not redefine variables installed, or shouldnotlink\n\tinstalled=yes\n\tshouldnotlink=no\n\tavoidtemprpath=\n\n\n\t# Read the .la file\n\tfunc_source \"$lib\"\n\n\t# Convert \"-framework foo\" to \"foo.ltframework\"\n\tif test -n \"$inherited_linker_flags\"; then\n\t  tmp_inherited_linker_flags=`$ECHO \"$inherited_linker_flags\" | $SED 's/-framework \\([^ $]*\\)/\\1.ltframework/g'`\n\t  for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do\n\t    case \" $new_inherited_linker_flags \" in\n\t      *\" $tmp_inherited_linker_flag \"*) ;;\n\t      *) func_append new_inherited_linker_flags \" $tmp_inherited_linker_flag\";;\n\t    esac\n\t  done\n\tfi\n\tdependency_libs=`$ECHO \" $dependency_libs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tif test lib,link = \"$linkmode,$pass\" ||\n\t   test prog,scan = \"$linkmode,$pass\" ||\n\t   { test prog != \"$linkmode\" && test lib != \"$linkmode\"; }; then\n\t  test -n \"$dlopen\" && func_append dlfiles \" $dlopen\"\n\t  test -n \"$dlpreopen\" && func_append dlprefiles \" $dlpreopen\"\n\tfi\n\n\tif test conv = \"$pass\"; then\n\t  # Only check for convenience libraries\n\t  deplibs=\"$lib $deplibs\"\n\t  if test -z \"$libdir\"; then\n\t    if test -z \"$old_library\"; then\n\t      func_fatal_error \"cannot find name of link library for '$lib'\"\n\t    fi\n\t    # It is a libtool convenience library, so add in its objects.\n\t    func_append convenience \" $ladir/$objdir/$old_library\"\n\t    func_append old_convenience \" $ladir/$objdir/$old_library\"\n\t  elif test prog != \"$linkmode\" && test lib != \"$linkmode\"; then\n\t    func_fatal_error \"'$lib' is not a convenience library\"\n\t  fi\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    deplibs=\"$deplib $deplibs\"\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $deplib\"\n\t  done\n\t  continue\n\tfi # $pass = conv\n\n\n\t# Get the name of the library we link against.\n\tlinklib=\n\tif test -n \"$old_library\" &&\n\t   { test yes = \"$prefer_static_libs\" ||\n\t     test built,no = \"$prefer_static_libs,$installed\"; }; then\n\t  linklib=$old_library\n\telse\n\t  for l in $old_library $library_names; do\n\t    linklib=$l\n\t  done\n\tfi\n\tif test -z \"$linklib\"; then\n\t  func_fatal_error \"cannot find name of link library for '$lib'\"\n\tfi\n\n\t# This library was specified with -dlopen.\n\tif test dlopen = \"$pass\"; then\n\t  test -z \"$libdir\" \\\n\t    && func_fatal_error \"cannot -dlopen a convenience library: '$lib'\"\n\t  if test -z \"$dlname\" ||\n\t     test yes != \"$dlopen_support\" ||\n\t     test no = \"$build_libtool_libs\"\n\t  then\n\t    # If there is no dlname, no dlopen support or we're linking\n\t    # statically, we need to preload.  We also need to preload any\n\t    # dependent libraries so libltdl's deplib preloader doesn't\n\t    # bomb out in the load deplibs phase.\n\t    func_append dlprefiles \" $lib $dependency_libs\"\n\t  else\n\t    func_append newdlfiles \" $lib\"\n\t  fi\n\t  continue\n\tfi # $pass = dlopen\n\n\t# We need an absolute path.\n\tcase $ladir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs_ladir=$ladir ;;\n\t*)\n\t  abs_ladir=`cd \"$ladir\" && pwd`\n\t  if test -z \"$abs_ladir\"; then\n\t    func_warning \"cannot determine absolute directory name of '$ladir'\"\n\t    func_warning \"passing it literally to the linker, although it might fail\"\n\t    abs_ladir=$ladir\n\t  fi\n\t  ;;\n\tesac\n\tfunc_basename \"$lib\"\n\tlaname=$func_basename_result\n\n\t# Find the relevant object directory and library name.\n\tif test yes = \"$installed\"; then\n\t  if test ! -f \"$lt_sysroot$libdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    func_warning \"library '$lib' was moved.\"\n\t    dir=$ladir\n\t    absdir=$abs_ladir\n\t    libdir=$abs_ladir\n\t  else\n\t    dir=$lt_sysroot$libdir\n\t    absdir=$lt_sysroot$libdir\n\t  fi\n\t  test yes = \"$hardcode_automatic\" && avoidtemprpath=yes\n\telse\n\t  if test ! -f \"$ladir/$objdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    dir=$ladir\n\t    absdir=$abs_ladir\n\t    # Remove this search path later\n\t    func_append notinst_path \" $abs_ladir\"\n\t  else\n\t    dir=$ladir/$objdir\n\t    absdir=$abs_ladir/$objdir\n\t    # Remove this search path later\n\t    func_append notinst_path \" $abs_ladir\"\n\t  fi\n\tfi # $installed = yes\n\tfunc_stripname 'lib' '.la' \"$laname\"\n\tname=$func_stripname_result\n\n\t# This library was specified with -dlpreopen.\n\tif test dlpreopen = \"$pass\"; then\n\t  if test -z \"$libdir\" && test prog = \"$linkmode\"; then\n\t    func_fatal_error \"only libraries may -dlpreopen a convenience library: '$lib'\"\n\t  fi\n\t  case $host in\n\t    # special handling for platforms with PE-DLLs.\n\t    *cygwin* | *mingw* | *cegcc* )\n\t      # Linker will automatically link against shared library if both\n\t      # static and shared are present.  Therefore, ensure we extract\n\t      # symbols from the import library if a shared library is present\n\t      # (otherwise, the dlopen module name will be incorrect).  We do\n\t      # this by putting the import library name into $newdlprefiles.\n\t      # We recover the dlopen module name by 'saving' the la file\n\t      # name in a special purpose variable, and (later) extracting the\n\t      # dlname from the la file.\n\t      if test -n \"$dlname\"; then\n\t        func_tr_sh \"$dir/$linklib\"\n\t        eval \"libfile_$func_tr_sh_result=\\$abs_ladir/\\$laname\"\n\t        func_append newdlprefiles \" $dir/$linklib\"\n\t      else\n\t        func_append newdlprefiles \" $dir/$old_library\"\n\t        # Keep a list of preopened convenience libraries to check\n\t        # that they are being used correctly in the link pass.\n\t        test -z \"$libdir\" && \\\n\t          func_append dlpreconveniencelibs \" $dir/$old_library\"\n\t      fi\n\t    ;;\n\t    * )\n\t      # Prefer using a static library (so that no silly _DYNAMIC symbols\n\t      # are required to link).\n\t      if test -n \"$old_library\"; then\n\t        func_append newdlprefiles \" $dir/$old_library\"\n\t        # Keep a list of preopened convenience libraries to check\n\t        # that they are being used correctly in the link pass.\n\t        test -z \"$libdir\" && \\\n\t          func_append dlpreconveniencelibs \" $dir/$old_library\"\n\t      # Otherwise, use the dlname, so that lt_dlopen finds it.\n\t      elif test -n \"$dlname\"; then\n\t        func_append newdlprefiles \" $dir/$dlname\"\n\t      else\n\t        func_append newdlprefiles \" $dir/$linklib\"\n\t      fi\n\t    ;;\n\t  esac\n\tfi # $pass = dlpreopen\n\n\tif test -z \"$libdir\"; then\n\t  # Link the convenience library\n\t  if test lib = \"$linkmode\"; then\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t  elif test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$dir/$old_library $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$old_library $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$lib $deplibs\" # used for prog,scan pass\n\t  fi\n\t  continue\n\tfi\n\n\n\tif test prog = \"$linkmode\" && test link != \"$pass\"; then\n\t  func_append newlib_search_path \" $ladir\"\n\t  deplibs=\"$lib $deplibs\"\n\n\t  linkalldeplibs=false\n\t  if test no != \"$link_all_deplibs\" || test -z \"$library_names\" ||\n\t     test no = \"$build_libtool_libs\"; then\n\t    linkalldeplibs=:\n\t  fi\n\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    case $deplib in\n\t    -L*) func_stripname '-L' '' \"$deplib\"\n\t         func_resolve_sysroot \"$func_stripname_result\"\n\t         func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t\t ;;\n\t    esac\n\t    # Need to link against all dependency_libs?\n\t    if $linkalldeplibs; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      # Need to hardcode shared library paths\n\t      # or/and link against static libraries\n\t      newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $deplib\"\n\t  done # for deplib\n\t  continue\n\tfi # $linkmode = prog...\n\n\tif test prog,link = \"$linkmode,$pass\"; then\n\t  if test -n \"$library_names\" &&\n\t     { { test no = \"$prefer_static_libs\" ||\n\t         test built,yes = \"$prefer_static_libs,$installed\"; } ||\n\t       test -z \"$old_library\"; }; then\n\t    # We need to hardcode the library path\n\t    if test -n \"$shlibpath_var\" && test -z \"$avoidtemprpath\"; then\n\t      # Make sure the rpath contains only unique directories.\n\t      case $temp_rpath: in\n\t      *\"$absdir:\"*) ;;\n\t      *) func_append temp_rpath \"$absdir:\" ;;\n\t      esac\n\t    fi\n\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) func_append compile_rpath \" $absdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append finalize_rpath \" $libdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t  fi # $linkmode,$pass = prog,link...\n\n\t  if $alldeplibs &&\n\t     { test pass_all = \"$deplibs_check_method\" ||\n\t       { test yes = \"$build_libtool_libs\" &&\n\t\t test -n \"$library_names\"; }; }; then\n\t    # We only need to search for static libraries\n\t    continue\n\t  fi\n\tfi\n\n\tlink_static=no # Whether the deplib will be linked statically\n\tuse_static_libs=$prefer_static_libs\n\tif test built = \"$use_static_libs\" && test yes = \"$installed\"; then\n\t  use_static_libs=no\n\tfi\n\tif test -n \"$library_names\" &&\n\t   { test no = \"$use_static_libs\" || test -z \"$old_library\"; }; then\n\t  case $host in\n\t  *cygwin* | *mingw* | *cegcc* | *os2*)\n\t      # No point in relinking DLLs because paths are not encoded\n\t      func_append notinst_deplibs \" $lib\"\n\t      need_relink=no\n\t    ;;\n\t  *)\n\t    if test no = \"$installed\"; then\n\t      func_append notinst_deplibs \" $lib\"\n\t      need_relink=yes\n\t    fi\n\t    ;;\n\t  esac\n\t  # This is a shared library\n\n\t  # Warn about portability, can't link against -module's on some\n\t  # systems (darwin).  Don't bleat about dlopened modules though!\n\t  dlopenmodule=\n\t  for dlpremoduletest in $dlprefiles; do\n\t    if test \"X$dlpremoduletest\" = \"X$lib\"; then\n\t      dlopenmodule=$dlpremoduletest\n\t      break\n\t    fi\n\t  done\n\t  if test -z \"$dlopenmodule\" && test yes = \"$shouldnotlink\" && test link = \"$pass\"; then\n\t    echo\n\t    if test prog = \"$linkmode\"; then\n\t      $ECHO \"*** Warning: Linking the executable $output against the loadable module\"\n\t    else\n\t      $ECHO \"*** Warning: Linking the shared library $output against the loadable module\"\n\t    fi\n\t    $ECHO \"*** $linklib is not portable!\"\n\t  fi\n\t  if test lib = \"$linkmode\" &&\n\t     test yes = \"$hardcode_into_libs\"; then\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) func_append compile_rpath \" $absdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append finalize_rpath \" $libdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t  fi\n\n\t  if test -n \"$old_archive_from_expsyms_cmds\"; then\n\t    # figure out the soname\n\t    set dummy $library_names\n\t    shift\n\t    realname=$1\n\t    shift\n\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t    # use dlname if we got it. it's perfectly good, no?\n\t    if test -n \"$dlname\"; then\n\t      soname=$dlname\n\t    elif test -n \"$soname_spec\"; then\n\t      # bleh windows\n\t      case $host in\n\t      *cygwin* | mingw* | *cegcc* | *os2*)\n\t        func_arith $current - $age\n\t\tmajor=$func_arith_result\n\t\tversuffix=-$major\n\t\t;;\n\t      esac\n\t      eval soname=\\\"$soname_spec\\\"\n\t    else\n\t      soname=$realname\n\t    fi\n\n\t    # Make a new name for the extract_expsyms_cmds to use\n\t    soroot=$soname\n\t    func_basename \"$soroot\"\n\t    soname=$func_basename_result\n\t    func_stripname 'lib' '.dll' \"$soname\"\n\t    newlib=libimp-$func_stripname_result.a\n\n\t    # If the library has no export list, then create one now\n\t    if test -f \"$output_objdir/$soname-def\"; then :\n\t    else\n\t      func_verbose \"extracting exported symbol list from '$soname'\"\n\t      func_execute_cmds \"$extract_expsyms_cmds\" 'exit $?'\n\t    fi\n\n\t    # Create $newlib\n\t    if test -f \"$output_objdir/$newlib\"; then :; else\n\t      func_verbose \"generating import library for '$soname'\"\n\t      func_execute_cmds \"$old_archive_from_expsyms_cmds\" 'exit $?'\n\t    fi\n\t    # make sure the library variables are pointing to the new library\n\t    dir=$output_objdir\n\t    linklib=$newlib\n\t  fi # test -n \"$old_archive_from_expsyms_cmds\"\n\n\t  if test prog = \"$linkmode\" || test relink != \"$opt_mode\"; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    lib_linked=yes\n\t    case $hardcode_action in\n\t    immediate | unsupported)\n\t      if test no = \"$hardcode_direct\"; then\n\t\tadd=$dir/$linklib\n\t\tcase $host in\n\t\t  *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;;\n\t\t  *-*-sysv4*uw2*) add_dir=-L$dir ;;\n\t\t  *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \\\n\t\t    *-*-unixware7*) add_dir=-L$dir ;;\n\t\t  *-*-darwin* )\n\t\t    # if the lib is a (non-dlopened) module then we cannot\n\t\t    # link against it, someone is ignoring the earlier warnings\n\t\t    if /usr/bin/file -L $add 2> /dev/null |\n\t\t\t $GREP \": [^:]* bundle\" >/dev/null; then\n\t\t      if test \"X$dlopenmodule\" != \"X$lib\"; then\n\t\t\t$ECHO \"*** Warning: lib $linklib is a module, not a shared library\"\n\t\t\tif test -z \"$old_library\"; then\n\t\t\t  echo\n\t\t\t  echo \"*** And there doesn't seem to be a static archive available\"\n\t\t\t  echo \"*** The link will probably fail, sorry\"\n\t\t\telse\n\t\t\t  add=$dir/$old_library\n\t\t\tfi\n\t\t      elif test -n \"$old_library\"; then\n\t\t\tadd=$dir/$old_library\n\t\t      fi\n\t\t    fi\n\t\tesac\n\t      elif test no = \"$hardcode_minus_L\"; then\n\t\tcase $host in\n\t\t*-*-sunos*) add_shlibpath=$dir ;;\n\t\tesac\n\t\tadd_dir=-L$dir\n\t\tadd=-l$name\n\t      elif test no = \"$hardcode_shlibpath_var\"; then\n\t\tadd_shlibpath=$dir\n\t\tadd=-l$name\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    relink)\n\t      if test yes = \"$hardcode_direct\" &&\n\t         test no = \"$hardcode_direct_absolute\"; then\n\t\tadd=$dir/$linklib\n\t      elif test yes = \"$hardcode_minus_L\"; then\n\t\tadd_dir=-L$absdir\n\t\t# Try looking first in the location we're being installed to.\n\t\tif test -n \"$inst_prefix_dir\"; then\n\t\t  case $libdir in\n\t\t    [\\\\/]*)\n\t\t      func_append add_dir \" -L$inst_prefix_dir$libdir\"\n\t\t      ;;\n\t\t  esac\n\t\tfi\n\t\tadd=-l$name\n\t      elif test yes = \"$hardcode_shlibpath_var\"; then\n\t\tadd_shlibpath=$dir\n\t\tadd=-l$name\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    *) lib_linked=no ;;\n\t    esac\n\n\t    if test yes != \"$lib_linked\"; then\n\t      func_fatal_configuration \"unsupported hardcode properties\"\n\t    fi\n\n\t    if test -n \"$add_shlibpath\"; then\n\t      case :$compile_shlibpath: in\n\t      *\":$add_shlibpath:\"*) ;;\n\t      *) func_append compile_shlibpath \"$add_shlibpath:\" ;;\n\t      esac\n\t    fi\n\t    if test prog = \"$linkmode\"; then\n\t      test -n \"$add_dir\" && compile_deplibs=\"$add_dir $compile_deplibs\"\n\t      test -n \"$add\" && compile_deplibs=\"$add $compile_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t      if test yes != \"$hardcode_direct\" &&\n\t\t test yes != \"$hardcode_minus_L\" &&\n\t\t test yes = \"$hardcode_shlibpath_var\"; then\n\t\tcase :$finalize_shlibpath: in\n\t\t*\":$libdir:\"*) ;;\n\t\t*) func_append finalize_shlibpath \"$libdir:\" ;;\n\t\tesac\n\t      fi\n\t    fi\n\t  fi\n\n\t  if test prog = \"$linkmode\" || test relink = \"$opt_mode\"; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    # Finalize command for both is simple: just hardcode it.\n\t    if test yes = \"$hardcode_direct\" &&\n\t       test no = \"$hardcode_direct_absolute\"; then\n\t      add=$libdir/$linklib\n\t    elif test yes = \"$hardcode_minus_L\"; then\n\t      add_dir=-L$libdir\n\t      add=-l$name\n\t    elif test yes = \"$hardcode_shlibpath_var\"; then\n\t      case :$finalize_shlibpath: in\n\t      *\":$libdir:\"*) ;;\n\t      *) func_append finalize_shlibpath \"$libdir:\" ;;\n\t      esac\n\t      add=-l$name\n\t    elif test yes = \"$hardcode_automatic\"; then\n\t      if test -n \"$inst_prefix_dir\" &&\n\t\t test -f \"$inst_prefix_dir$libdir/$linklib\"; then\n\t\tadd=$inst_prefix_dir$libdir/$linklib\n\t      else\n\t\tadd=$libdir/$linklib\n\t      fi\n\t    else\n\t      # We cannot seem to hardcode it, guess we'll fake it.\n\t      add_dir=-L$libdir\n\t      # Try looking first in the location we're being installed to.\n\t      if test -n \"$inst_prefix_dir\"; then\n\t\tcase $libdir in\n\t\t  [\\\\/]*)\n\t\t    func_append add_dir \" -L$inst_prefix_dir$libdir\"\n\t\t    ;;\n\t\tesac\n\t      fi\n\t      add=-l$name\n\t    fi\n\n\t    if test prog = \"$linkmode\"; then\n\t      test -n \"$add_dir\" && finalize_deplibs=\"$add_dir $finalize_deplibs\"\n\t      test -n \"$add\" && finalize_deplibs=\"$add $finalize_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t    fi\n\t  fi\n\telif test prog = \"$linkmode\"; then\n\t  # Here we assume that one of hardcode_direct or hardcode_minus_L\n\t  # is not unsupported.  This is valid on all known static and\n\t  # shared platforms.\n\t  if test unsupported != \"$hardcode_direct\"; then\n\t    test -n \"$old_library\" && linklib=$old_library\n\t    compile_deplibs=\"$dir/$linklib $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$linklib $finalize_deplibs\"\n\t  else\n\t    compile_deplibs=\"-l$name -L$dir $compile_deplibs\"\n\t    finalize_deplibs=\"-l$name -L$dir $finalize_deplibs\"\n\t  fi\n\telif test yes = \"$build_libtool_libs\"; then\n\t  # Not a shared library\n\t  if test pass_all != \"$deplibs_check_method\"; then\n\t    # We're trying link a shared library against a static one\n\t    # but the system doesn't support it.\n\n\t    # Just print a warning and add the library to dependency_libs so\n\t    # that the program can be linked against the static library.\n\t    echo\n\t    $ECHO \"*** Warning: This system cannot link to static lib archive $lib.\"\n\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t    echo \"*** shared version of the library, which you do not appear to have.\"\n\t    if test yes = \"$module\"; then\n\t      echo \"*** But as you try to build a module library, libtool will still create \"\n\t      echo \"*** a static module, that should work as long as the dlopening application\"\n\t      echo \"*** is linked with the -dlopen flag to resolve symbols at runtime.\"\n\t      if test -z \"$global_symbol_pipe\"; then\n\t\techo\n\t\techo \"*** However, this would only work if libtool was able to extract symbol\"\n\t\techo \"*** lists from a program, using 'nm' or equivalent, but libtool could\"\n\t\techo \"*** not find such a program.  So, this module is probably useless.\"\n\t\techo \"*** 'nm' from GNU binutils and a full rebuild may help.\"\n\t      fi\n\t      if test no = \"$build_old_libs\"; then\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  else\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t    link_static=yes\n\t  fi\n\tfi # link shared/static library?\n\n\tif test lib = \"$linkmode\"; then\n\t  if test -n \"$dependency_libs\" &&\n\t     { test yes != \"$hardcode_into_libs\" ||\n\t       test yes = \"$build_old_libs\" ||\n\t       test yes = \"$link_static\"; }; then\n\t    # Extract -R from dependency_libs\n\t    temp_deplibs=\n\t    for libdir in $dependency_libs; do\n\t      case $libdir in\n\t      -R*) func_stripname '-R' '' \"$libdir\"\n\t           temp_xrpath=$func_stripname_result\n\t\t   case \" $xrpath \" in\n\t\t   *\" $temp_xrpath \"*) ;;\n\t\t   *) func_append xrpath \" $temp_xrpath\";;\n\t\t   esac;;\n\t      *) func_append temp_deplibs \" $libdir\";;\n\t      esac\n\t    done\n\t    dependency_libs=$temp_deplibs\n\t  fi\n\n\t  func_append newlib_search_path \" $absdir\"\n\t  # Link against this library\n\t  test no = \"$link_static\" && newdependency_libs=\"$abs_ladir/$laname $newdependency_libs\"\n\t  # ... and its dependency_libs\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    case $deplib in\n              -L*) func_stripname '-L' '' \"$deplib\"\n                   func_resolve_sysroot \"$func_stripname_result\";;\n              *) func_resolve_sysroot \"$deplib\" ;;\n            esac\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $func_resolve_sysroot_result \"*)\n                func_append specialdeplibs \" $func_resolve_sysroot_result\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $func_resolve_sysroot_result\"\n\t  done\n\n\t  if test no != \"$link_all_deplibs\"; then\n\t    # Add the search paths of all dependency libraries\n\t    for deplib in $dependency_libs; do\n\t      path=\n\t      case $deplib in\n\t      -L*) path=$deplib ;;\n\t      *.la)\n\t        func_resolve_sysroot \"$deplib\"\n\t        deplib=$func_resolve_sysroot_result\n\t        func_dirname \"$deplib\" \"\" \".\"\n\t\tdir=$func_dirname_result\n\t\t# We need an absolute path.\n\t\tcase $dir in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) absdir=$dir ;;\n\t\t*)\n\t\t  absdir=`cd \"$dir\" && pwd`\n\t\t  if test -z \"$absdir\"; then\n\t\t    func_warning \"cannot determine absolute directory name of '$dir'\"\n\t\t    absdir=$dir\n\t\t  fi\n\t\t  ;;\n\t\tesac\n\t\tif $GREP \"^installed=no\" $deplib > /dev/null; then\n\t\tcase $host in\n\t\t*-*-darwin*)\n\t\t  depdepl=\n\t\t  eval deplibrary_names=`$SED -n -e 's/^library_names=\\(.*\\)$/\\1/p' $deplib`\n\t\t  if test -n \"$deplibrary_names\"; then\n\t\t    for tmp in $deplibrary_names; do\n\t\t      depdepl=$tmp\n\t\t    done\n\t\t    if test -f \"$absdir/$objdir/$depdepl\"; then\n\t\t      depdepl=$absdir/$objdir/$depdepl\n\t\t      darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`\n                      if test -z \"$darwin_install_name\"; then\n                          darwin_install_name=`$OTOOL64 -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`\n                      fi\n\t\t      func_append compiler_flags \" $wl-dylib_file $wl$darwin_install_name:$depdepl\"\n\t\t      func_append linker_flags \" -dylib_file $darwin_install_name:$depdepl\"\n\t\t      path=\n\t\t    fi\n\t\t  fi\n\t\t  ;;\n\t\t*)\n\t\t  path=-L$absdir/$objdir\n\t\t  ;;\n\t\tesac\n\t\telse\n\t\t  eval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $deplib`\n\t\t  test -z \"$libdir\" && \\\n\t\t    func_fatal_error \"'$deplib' is not a valid libtool archive\"\n\t\t  test \"$absdir\" != \"$libdir\" && \\\n\t\t    func_warning \"'$deplib' seems to be moved\"\n\n\t\t  path=-L$absdir\n\t\tfi\n\t\t;;\n\t      esac\n\t      case \" $deplibs \" in\n\t      *\" $path \"*) ;;\n\t      *) deplibs=\"$path $deplibs\" ;;\n\t      esac\n\t    done\n\t  fi # link_all_deplibs != no\n\tfi # linkmode = lib\n      done # for deplib in $libs\n      if test link = \"$pass\"; then\n\tif test prog = \"$linkmode\"; then\n\t  compile_deplibs=\"$new_inherited_linker_flags $compile_deplibs\"\n\t  finalize_deplibs=\"$new_inherited_linker_flags $finalize_deplibs\"\n\telse\n\t  compiler_flags=\"$compiler_flags \"`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfi\n      fi\n      dependency_libs=$newdependency_libs\n      if test dlpreopen = \"$pass\"; then\n\t# Link the dlpreopened libraries before other libraries\n\tfor deplib in $save_deplibs; do\n\t  deplibs=\"$deplib $deplibs\"\n\tdone\n      fi\n      if test dlopen != \"$pass\"; then\n\ttest conv = \"$pass\" || {\n\t  # Make sure lib_search_path contains only unique directories.\n\t  lib_search_path=\n\t  for dir in $newlib_search_path; do\n\t    case \"$lib_search_path \" in\n\t    *\" $dir \"*) ;;\n\t    *) func_append lib_search_path \" $dir\" ;;\n\t    esac\n\t  done\n\t  newlib_search_path=\n\t}\n\n\tif test prog,link = \"$linkmode,$pass\"; then\n\t  vars=\"compile_deplibs finalize_deplibs\"\n\telse\n\t  vars=deplibs\n\tfi\n\tfor var in $vars dependency_libs; do\n\t  # Add libraries to $var in reverse order\n\t  eval tmp_libs=\\\"\\$$var\\\"\n\t  new_libs=\n\t  for deplib in $tmp_libs; do\n\t    # FIXME: Pedantically, this is the right thing to do, so\n\t    #        that some nasty dependency loop isn't accidentally\n\t    #        broken:\n\t    #new_libs=\"$deplib $new_libs\"\n\t    # Pragmatically, this seems to cause very few problems in\n\t    # practice:\n\t    case $deplib in\n\t    -L*) new_libs=\"$deplib $new_libs\" ;;\n\t    -R*) ;;\n\t    *)\n\t      # And here is the reason: when a library appears more\n\t      # than once as an explicit dependence of a library, or\n\t      # is implicitly linked in more than once by the\n\t      # compiler, it is considered special, and multiple\n\t      # occurrences thereof are not removed.  Compare this\n\t      # with having the same library being listed as a\n\t      # dependency of multiple other libraries: in this case,\n\t      # we know (pedantically, we assume) the library does not\n\t      # need to be listed more than once, so we keep only the\n\t      # last copy.  This is not always right, but it is rare\n\t      # enough that we require users that really mean to play\n\t      # such unportable linking tricks to link the library\n\t      # using -Wl,-lname, so that libtool does not consider it\n\t      # for duplicate removal.\n\t      case \" $specialdeplibs \" in\n\t      *\" $deplib \"*) new_libs=\"$deplib $new_libs\" ;;\n\t      *)\n\t\tcase \" $new_libs \" in\n\t\t*\" $deplib \"*) ;;\n\t\t*) new_libs=\"$deplib $new_libs\" ;;\n\t\tesac\n\t\t;;\n\t      esac\n\t      ;;\n\t    esac\n\t  done\n\t  tmp_libs=\n\t  for deplib in $new_libs; do\n\t    case $deplib in\n\t    -L*)\n\t      case \" $tmp_libs \" in\n\t      *\" $deplib \"*) ;;\n\t      *) func_append tmp_libs \" $deplib\" ;;\n\t      esac\n\t      ;;\n\t    *) func_append tmp_libs \" $deplib\" ;;\n\t    esac\n\t  done\n\t  eval $var=\\\"$tmp_libs\\\"\n\tdone # for var\n      fi\n\n      # Add Sun CC postdeps if required:\n      test CXX = \"$tagname\" && {\n        case $host_os in\n        linux*)\n          case `$CC -V 2>&1 | sed 5q` in\n          *Sun\\ C*) # Sun C++ 5.9\n            func_suncc_cstd_abi\n\n            if test no != \"$suncc_use_cstd_abi\"; then\n              func_append postdeps ' -library=Cstd -library=Crun'\n            fi\n            ;;\n          esac\n          ;;\n\n        solaris*)\n          func_cc_basename \"$CC\"\n          case $func_cc_basename_result in\n          CC* | sunCC*)\n            func_suncc_cstd_abi\n\n            if test no != \"$suncc_use_cstd_abi\"; then\n              func_append postdeps ' -library=Cstd -library=Crun'\n            fi\n            ;;\n          esac\n          ;;\n        esac\n      }\n\n      # Last step: remove runtime libs from dependency_libs\n      # (they stay in deplibs)\n      tmp_libs=\n      for i in $dependency_libs; do\n\tcase \" $predeps $postdeps $compiler_lib_search_path \" in\n\t*\" $i \"*)\n\t  i=\n\t  ;;\n\tesac\n\tif test -n \"$i\"; then\n\t  func_append tmp_libs \" $i\"\n\tfi\n      done\n      dependency_libs=$tmp_libs\n    done # for pass\n    if test prog = \"$linkmode\"; then\n      dlfiles=$newdlfiles\n    fi\n    if test prog = \"$linkmode\" || test lib = \"$linkmode\"; then\n      dlprefiles=$newdlprefiles\n    fi\n\n    case $linkmode in\n    oldlib)\n      if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n\tfunc_warning \"'-dlopen' is ignored for archives\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"'-l' and '-L' are ignored for archives\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"'-rpath' is ignored for archives\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"'-R' is ignored for archives\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info/-version-number' is ignored for archives\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for archives\"\n\n      test -n \"$export_symbols$export_symbols_regex\" && \\\n\tfunc_warning \"'-export-symbols' is ignored for archives\"\n\n      # Now set the variables for building old libraries.\n      build_libtool_libs=no\n      oldlibs=$output\n      func_append objs \"$old_deplibs\"\n      ;;\n\n    lib)\n      # Make sure we only generate libraries of the form 'libNAME.la'.\n      case $outputname in\n      lib*)\n\tfunc_stripname 'lib' '.la' \"$outputname\"\n\tname=$func_stripname_result\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval libname=\\\"$libname_spec\\\"\n\t;;\n      *)\n\ttest no = \"$module\" \\\n\t  && func_fatal_help \"libtool library '$output' must begin with 'lib'\"\n\n\tif test no != \"$need_lib_prefix\"; then\n\t  # Add the \"lib\" prefix for modules if required\n\t  func_stripname '' '.la' \"$outputname\"\n\t  name=$func_stripname_result\n\t  eval shared_ext=\\\"$shrext_cmds\\\"\n\t  eval libname=\\\"$libname_spec\\\"\n\telse\n\t  func_stripname '' '.la' \"$outputname\"\n\t  libname=$func_stripname_result\n\tfi\n\t;;\n      esac\n\n      if test -n \"$objs\"; then\n\tif test pass_all != \"$deplibs_check_method\"; then\n\t  func_fatal_error \"cannot build libtool library '$output' from non-libtool objects on this host:$objs\"\n\telse\n\t  echo\n\t  $ECHO \"*** Warning: Linking the shared library $output against the non-libtool\"\n\t  $ECHO \"*** objects $objs is not portable!\"\n\t  func_append libobjs \" $objs\"\n\tfi\n      fi\n\n      test no = \"$dlself\" \\\n\t|| func_warning \"'-dlopen self' is ignored for libtool libraries\"\n\n      set dummy $rpath\n      shift\n      test 1 -lt \"$#\" \\\n\t&& func_warning \"ignoring multiple '-rpath's for a libtool library\"\n\n      install_libdir=$1\n\n      oldlibs=\n      if test -z \"$rpath\"; then\n\tif test yes = \"$build_libtool_libs\"; then\n\t  # Building a libtool convenience library.\n\t  # Some compilers have problems with a '.al' extension so\n\t  # convenience libraries should have the same extension an\n\t  # archive normally would.\n\t  oldlibs=\"$output_objdir/$libname.$libext $oldlibs\"\n\t  build_libtool_libs=convenience\n\t  build_old_libs=yes\n\tfi\n\n\ttest -n \"$vinfo\" && \\\n\t  func_warning \"'-version-info/-version-number' is ignored for convenience libraries\"\n\n\ttest -n \"$release\" && \\\n\t  func_warning \"'-release' is ignored for convenience libraries\"\n      else\n\n\t# Parse the version information argument.\n\tsave_ifs=$IFS; IFS=:\n\tset dummy $vinfo 0 0 0\n\tshift\n\tIFS=$save_ifs\n\n\ttest -n \"$7\" && \\\n\t  func_fatal_help \"too many parameters to '-version-info'\"\n\n\t# convert absolute version numbers to libtool ages\n\t# this retains compatibility with .la files and attempts\n\t# to make the code below a bit more comprehensible\n\n\tcase $vinfo_number in\n\tyes)\n\t  number_major=$1\n\t  number_minor=$2\n\t  number_revision=$3\n\t  #\n\t  # There are really only two kinds -- those that\n\t  # use the current revision as the major version\n\t  # and those that subtract age and use age as\n\t  # a minor version.  But, then there is irix\n\t  # that has an extra 1 added just for fun\n\t  #\n\t  case $version_type in\n\t  # correct linux to gnu/linux during the next big refactor\n\t  darwin|freebsd-elf|linux|osf|windows|none)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=$number_minor\n\t    revision=$number_revision\n\t    ;;\n\t  freebsd-aout|qnx|sunos)\n\t    current=$number_major\n\t    revision=$number_minor\n\t    age=0\n\t    ;;\n\t  irix|nonstopux)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=$number_minor\n\t    revision=$number_minor\n\t    lt_irix_increment=no\n\t    ;;\n\t  esac\n\t  ;;\n\tno)\n\t  current=$1\n\t  revision=$2\n\t  age=$3\n\t  ;;\n\tesac\n\n\t# Check that each of the things are valid numbers.\n\tcase $current in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"CURRENT '$current' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $revision in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"REVISION '$revision' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $age in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"AGE '$age' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tif test \"$age\" -gt \"$current\"; then\n\t  func_error \"AGE '$age' is greater than the current interface number '$current'\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\tfi\n\n\t# Calculate the version variables.\n\tmajor=\n\tversuffix=\n\tverstring=\n\tcase $version_type in\n\tnone) ;;\n\n\tdarwin)\n\t  # Like Linux, but with the current version available in\n\t  # verstring for coding it into the library header\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  # Darwin ld doesn't like 0 for these options...\n\t  func_arith $current + 1\n\t  minor_current=$func_arith_result\n\t  xlcverstring=\"$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision\"\n\t  verstring=\"-compatibility_version $minor_current -current_version $minor_current.$revision\"\n          # On Darwin other compilers\n          case $CC in\n              nagfor*)\n                  verstring=\"$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision\"\n                  ;;\n              *)\n                  verstring=\"-compatibility_version $minor_current -current_version $minor_current.$revision\"\n                  ;;\n          esac\n\t  ;;\n\n\tfreebsd-aout)\n\t  major=.$current\n\t  versuffix=.$current.$revision\n\t  ;;\n\n\tfreebsd-elf)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  ;;\n\n\tirix | nonstopux)\n\t  if test no = \"$lt_irix_increment\"; then\n\t    func_arith $current - $age\n\t  else\n\t    func_arith $current - $age + 1\n\t  fi\n\t  major=$func_arith_result\n\n\t  case $version_type in\n\t    nonstopux) verstring_prefix=nonstopux ;;\n\t    *)         verstring_prefix=sgi ;;\n\t  esac\n\t  verstring=$verstring_prefix$major.$revision\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$revision\n\t  while test 0 -ne \"$loop\"; do\n\t    func_arith $revision - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=$verstring_prefix$major.$iface:$verstring\n\t  done\n\n\t  # Before this point, $major must not contain '.'.\n\t  major=.$major\n\t  versuffix=$major.$revision\n\t  ;;\n\n\tlinux) # correct to gnu/linux during the next big refactor\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  ;;\n\n\tosf)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=.$current.$age.$revision\n\t  verstring=$current.$age.$revision\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$age\n\t  while test 0 -ne \"$loop\"; do\n\t    func_arith $current - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=$verstring:$iface.0\n\t  done\n\n\t  # Make executables depend on our current version.\n\t  func_append verstring \":$current.0\"\n\t  ;;\n\n\tqnx)\n\t  major=.$current\n\t  versuffix=.$current\n\t  ;;\n\n\tsco)\n\t  major=.$current\n\t  versuffix=.$current\n\t  ;;\n\n\tsunos)\n\t  major=.$current\n\t  versuffix=.$current.$revision\n\t  ;;\n\n\twindows)\n\t  # Use '-' rather than '.', since we only want one\n\t  # extension on DOS 8.3 file systems.\n\t  func_arith $current - $age\n\t  major=$func_arith_result\n\t  versuffix=-$major\n\t  ;;\n\n\t*)\n\t  func_fatal_configuration \"unknown library version type '$version_type'\"\n\t  ;;\n\tesac\n\n\t# Clear the version info if we defaulted, and they specified a release.\n\tif test -z \"$vinfo\" && test -n \"$release\"; then\n\t  major=\n\t  case $version_type in\n\t  darwin)\n\t    # we can't check for \"0.0\" in archive_cmds due to quoting\n\t    # problems, so we reset it completely\n\t    verstring=\n\t    ;;\n\t  *)\n\t    verstring=0.0\n\t    ;;\n\t  esac\n\t  if test no = \"$need_version\"; then\n\t    versuffix=\n\t  else\n\t    versuffix=.0.0\n\t  fi\n\tfi\n\n\t# Remove version info from name if versioning should be avoided\n\tif test yes,no = \"$avoid_version,$need_version\"; then\n\t  major=\n\t  versuffix=\n\t  verstring=\n\tfi\n\n\t# Check to see if the archive will have undefined symbols.\n\tif test yes = \"$allow_undefined\"; then\n\t  if test unsupported = \"$allow_undefined_flag\"; then\n\t    if test yes = \"$build_old_libs\"; then\n\t      func_warning \"undefined symbols not allowed in $host shared libraries; building static only\"\n\t      build_libtool_libs=no\n\t    else\n\t      func_fatal_error \"can't build $host shared library unless -no-undefined is specified\"\n\t    fi\n\t  fi\n\telse\n\t  # Don't allow undefined symbols.\n\t  allow_undefined_flag=$no_undefined_flag\n\tfi\n\n      fi\n\n      func_generate_dlsyms \"$libname\" \"$libname\" :\n      func_append libobjs \" $symfileobj\"\n      test \" \" = \"$libobjs\" && libobjs=\n\n      if test relink != \"$opt_mode\"; then\n\t# Remove our outputs, but don't remove object files since they\n\t# may have been created when compiling PIC objects.\n\tremovelist=\n\ttempremovelist=`$ECHO \"$output_objdir/*\"`\n\tfor p in $tempremovelist; do\n\t  case $p in\n\t    *.$objext | *.gcno)\n\t       ;;\n\t    $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*)\n\t       if test -n \"$precious_files_regex\"; then\n\t\t if $ECHO \"$p\" | $EGREP -e \"$precious_files_regex\" >/dev/null 2>&1\n\t\t then\n\t\t   continue\n\t\t fi\n\t       fi\n\t       func_append removelist \" $p\"\n\t       ;;\n\t    *) ;;\n\t  esac\n\tdone\n\ttest -n \"$removelist\" && \\\n\t  func_show_eval \"${RM}r \\$removelist\"\n      fi\n\n      # Now set the variables for building old libraries.\n      if test yes = \"$build_old_libs\" && test convenience != \"$build_libtool_libs\"; then\n\tfunc_append oldlibs \" $output_objdir/$libname.$libext\"\n\n\t# Transform .lo files to .o files.\n\toldobjs=\"$objs \"`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.$libext$/d; $lo2o\" | $NL2SP`\n      fi\n\n      # Eliminate all temporary directories.\n      #for path in $notinst_path; do\n      #\tlib_search_path=`$ECHO \"$lib_search_path \" | $SED \"s% $path % %g\"`\n      #\tdeplibs=`$ECHO \"$deplibs \" | $SED \"s% -L$path % %g\"`\n      #\tdependency_libs=`$ECHO \"$dependency_libs \" | $SED \"s% -L$path % %g\"`\n      #done\n\n      if test -n \"$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\ttemp_xrpath=\n\tfor libdir in $xrpath; do\n\t  func_replace_sysroot \"$libdir\"\n\t  func_append temp_xrpath \" -R$func_replace_sysroot_result\"\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_rpath \" $libdir\" ;;\n\t  esac\n\tdone\n\tif test yes != \"$hardcode_into_libs\" || test yes = \"$build_old_libs\"; then\n\t  dependency_libs=\"$temp_xrpath $dependency_libs\"\n\tfi\n      fi\n\n      # Make sure dlfiles contains only unique files that won't be dlpreopened\n      old_dlfiles=$dlfiles\n      dlfiles=\n      for lib in $old_dlfiles; do\n\tcase \" $dlprefiles $dlfiles \" in\n\t*\" $lib \"*) ;;\n\t*) func_append dlfiles \" $lib\" ;;\n\tesac\n      done\n\n      # Make sure dlprefiles contains only unique files\n      old_dlprefiles=$dlprefiles\n      dlprefiles=\n      for lib in $old_dlprefiles; do\n\tcase \"$dlprefiles \" in\n\t*\" $lib \"*) ;;\n\t*) func_append dlprefiles \" $lib\" ;;\n\tesac\n      done\n\n      if test yes = \"$build_libtool_libs\"; then\n\tif test -n \"$rpath\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # these systems don't actually have a c library (as such)!\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C library is in the System framework\n\t    func_append deplibs \" System.ltframework\"\n\t    ;;\n\t  *-*-netbsd*)\n\t    # Don't link with libc until the a.out ld.so is fixed.\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    ;;\n\t  *)\n\t    # Add libc to deplibs on all other systems if necessary.\n\t    if test yes = \"$build_libtool_need_lc\"; then\n\t      func_append deplibs \" -lc\"\n\t    fi\n\t    ;;\n\t  esac\n\tfi\n\n\t# Transform deplibs into only deplibs that can be linked in shared.\n\tname_save=$name\n\tlibname_save=$libname\n\trelease_save=$release\n\tversuffix_save=$versuffix\n\tmajor_save=$major\n\t# I'm not sure if I'm treating the release correctly.  I think\n\t# release should show up in the -l (ie -lgmp5) so we don't want to\n\t# add it in twice.  Is that correct?\n\trelease=\n\tversuffix=\n\tmajor=\n\tnewdeplibs=\n\tdroppeddeps=no\n\tcase $deplibs_check_method in\n\tpass_all)\n\t  # Don't check for shared/static.  Everything works.\n\t  # This might be a little naive.  We might want to check\n\t  # whether the library exists or not.  But this is on\n\t  # osf3 & osf4 and I'm not really sure... Just\n\t  # implementing what was already the behavior.\n\t  newdeplibs=$deplibs\n\t  ;;\n\ttest_compile)\n\t  # This code stresses the \"libraries are programs\" paradigm to its\n\t  # limits. Maybe even breaks it.  We compile a program, linking it\n\t  # against the deplibs as a proxy for the library.  Then we can check\n\t  # whether they linked in statically or dynamically with ldd.\n\t  $opt_dry_run || $RM conftest.c\n\t  cat > conftest.c <<EOF\n\t  int main() { return 0; }\nEOF\n\t  $opt_dry_run || $RM conftest\n\t  if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then\n\t    ldd_output=`ldd conftest`\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\tif test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\t  case \" $predeps $postdeps \" in\n\t\t  *\" $i \"*)\n\t\t    func_append newdeplibs \" $i\"\n\t\t    i=\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t\tif test -n \"$i\"; then\n\t\t  libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t  deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t  set dummy $deplib_matches; shift\n\t\t  deplib_match=$1\n\t\t  if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0; then\n\t\t    func_append newdeplibs \" $i\"\n\t\t  else\n\t\t    droppeddeps=yes\n\t\t    echo\n\t\t    $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t    echo \"*** shared version of the library, which I believe you do not have\"\n\t\t    echo \"*** because a test_compile did reveal that the linker did not use it for\"\n\t\t    echo \"*** its dynamic dependency list that programs get resolved with at runtime.\"\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *)\n\t\tfunc_append newdeplibs \" $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  else\n\t    # Error occurred in the first compile.  Let's try to salvage\n\t    # the situation: Compile a separate program for each library.\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\t$opt_dry_run || $RM conftest\n\t\tif $LTCC $LTCFLAGS -o conftest conftest.c $i; then\n\t\t  ldd_output=`ldd conftest`\n\t\t  if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\t    case \" $predeps $postdeps \" in\n\t\t    *\" $i \"*)\n\t\t      func_append newdeplibs \" $i\"\n\t\t      i=\n\t\t      ;;\n\t\t    esac\n\t\t  fi\n\t\t  if test -n \"$i\"; then\n\t\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t    deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t    set dummy $deplib_matches; shift\n\t\t    deplib_match=$1\n\t\t    if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0; then\n\t\t      func_append newdeplibs \" $i\"\n\t\t    else\n\t\t      droppeddeps=yes\n\t\t      echo\n\t\t      $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t      echo \"*** I have the capability to make that library automatically link in when\"\n\t\t      echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t      echo \"*** shared version of the library, which you do not appear to have\"\n\t\t      echo \"*** because a test_compile did reveal that the linker did not use this one\"\n\t\t      echo \"*** as a dynamic dependency that programs can get resolved with at runtime.\"\n\t\t    fi\n\t\t  fi\n\t\telse\n\t\t  droppeddeps=yes\n\t\t  echo\n\t\t  $ECHO \"*** Warning!  Library $i is needed by this library but I was not able to\"\n\t\t  echo \"*** make it link in!  You will probably need to install it or some\"\n\t\t  echo \"*** library that it depends on before this library will be fully\"\n\t\t  echo \"*** functional.  Installing it before continuing would be even better.\"\n\t\tfi\n\t\t;;\n\t      *)\n\t\tfunc_append newdeplibs \" $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  fi\n\t  ;;\n\tfile_magic*)\n\t  set dummy $deplibs_check_method; shift\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  func_append newdeplibs \" $a_deplib\"\n\t\t  a_deplib=\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tif test -n \"$file_magic_glob\"; then\n\t\t  libnameglob=`func_echo_all \"$libname\" | $SED -e $file_magic_glob`\n\t\telse\n\t\t  libnameglob=$libname\n\t\tfi\n\t\ttest yes = \"$want_nocaseglob\" && nocaseglob=`shopt -p nocaseglob`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  if test yes = \"$want_nocaseglob\"; then\n\t\t    shopt -s nocaseglob\n\t\t    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`\n\t\t    $nocaseglob\n\t\t  else\n\t\t    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`\n\t\t  fi\n\t\t  for potent_lib in $potential_libs; do\n\t\t      # Follow soft links.\n\t\t      if ls -lLd \"$potent_lib\" 2>/dev/null |\n\t\t\t $GREP \" -> \" >/dev/null; then\n\t\t\tcontinue\n\t\t      fi\n\t\t      # The statement above tries to avoid entering an\n\t\t      # endless loop below, in case of cyclic links.\n\t\t      # We might still enter an endless loop, since a link\n\t\t      # loop can be closed while we follow links,\n\t\t      # but so what?\n\t\t      potlib=$potent_lib\n\t\t      while test -h \"$potlib\" 2>/dev/null; do\n\t\t\tpotliblink=`ls -ld $potlib | $SED 's/.* -> //'`\n\t\t\tcase $potliblink in\n\t\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) potlib=$potliblink;;\n\t\t\t*) potlib=`$ECHO \"$potlib\" | $SED 's|[^/]*$||'`\"$potliblink\";;\n\t\t\tesac\n\t\t      done\n\t\t      if eval $file_magic_cmd \\\"\\$potlib\\\" 2>/dev/null |\n\t\t\t $SED -e 10q |\n\t\t\t $EGREP \"$file_magic_regex\" > /dev/null; then\n\t\t\tfunc_append newdeplibs \" $a_deplib\"\n\t\t\ta_deplib=\n\t\t\tbreak 2\n\t\t      fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\"; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for file magic test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a file magic. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      func_append newdeplibs \" $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tmatch_pattern*)\n\t  set dummy $deplibs_check_method; shift\n\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  func_append newdeplibs \" $a_deplib\"\n\t\t  a_deplib=\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`\n\t\t  for potent_lib in $potential_libs; do\n\t\t    potlib=$potent_lib # see symlink-check above in file_magic test\n\t\t    if eval \"\\$ECHO \\\"$potent_lib\\\"\" 2>/dev/null | $SED 10q | \\\n\t\t       $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t      func_append newdeplibs \" $a_deplib\"\n\t\t      a_deplib=\n\t\t      break 2\n\t\t    fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\"; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for regex pattern test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a regex pattern. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      func_append newdeplibs \" $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tnone | unknown | *)\n\t  newdeplibs=\n\t  tmp_deplibs=`$ECHO \" $deplibs\" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`\n\t  if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t    for i in $predeps $postdeps; do\n\t      # can't use Xsed below, because $i might contain '/'\n\t      tmp_deplibs=`$ECHO \" $tmp_deplibs\" | $SED \"s|$i||\"`\n\t    done\n\t  fi\n\t  case $tmp_deplibs in\n\t  *[!\\\t\\ ]*)\n\t    echo\n\t    if test none = \"$deplibs_check_method\"; then\n\t      echo \"*** Warning: inter-library dependencies are not supported in this platform.\"\n\t    else\n\t      echo \"*** Warning: inter-library dependencies are not known to be supported.\"\n\t    fi\n\t    echo \"*** All declared inter-library dependencies are being dropped.\"\n\t    droppeddeps=yes\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tversuffix=$versuffix_save\n\tmajor=$major_save\n\trelease=$release_save\n\tlibname=$libname_save\n\tname=$name_save\n\n\tcase $host in\n\t*-*-rhapsody* | *-*-darwin1.[012])\n\t  # On Rhapsody replace the C library with the System framework\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t  ;;\n\tesac\n\n\tif test yes = \"$droppeddeps\"; then\n\t  if test yes = \"$module\"; then\n\t    echo\n\t    echo \"*** Warning: libtool could not satisfy all declared inter-library\"\n\t    $ECHO \"*** dependencies of module $libname.  Therefore, libtool will create\"\n\t    echo \"*** a static module, that should work as long as the dlopening\"\n\t    echo \"*** application is linked with the -dlopen flag.\"\n\t    if test -z \"$global_symbol_pipe\"; then\n\t      echo\n\t      echo \"*** However, this would only work if libtool was able to extract symbol\"\n\t      echo \"*** lists from a program, using 'nm' or equivalent, but libtool could\"\n\t      echo \"*** not find such a program.  So, this module is probably useless.\"\n\t      echo \"*** 'nm' from GNU binutils and a full rebuild may help.\"\n\t    fi\n\t    if test no = \"$build_old_libs\"; then\n\t      oldlibs=$output_objdir/$libname.$libext\n\t      build_libtool_libs=module\n\t      build_old_libs=yes\n\t    else\n\t      build_libtool_libs=no\n\t    fi\n\t  else\n\t    echo \"*** The inter-library dependencies that have been dropped here will be\"\n\t    echo \"*** automatically added whenever a program is linked with this library\"\n\t    echo \"*** or is declared to -dlopen it.\"\n\n\t    if test no = \"$allow_undefined\"; then\n\t      echo\n\t      echo \"*** Since this library must not contain undefined symbols,\"\n\t      echo \"*** because either the platform does not support them or\"\n\t      echo \"*** it was explicitly requested with -no-undefined,\"\n\t      echo \"*** libtool will only create a static version of it.\"\n\t      if test no = \"$build_old_libs\"; then\n\t\toldlibs=$output_objdir/$libname.$libext\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  fi\n\tfi\n\t# Done checking deplibs!\n\tdeplibs=$newdeplibs\n      fi\n      # Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n      case $host in\n\t*-*-darwin*)\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  new_inherited_linker_flags=`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  deplibs=`$ECHO \" $deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  ;;\n      esac\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    func_append new_libs \" -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) func_append new_libs \" $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) func_append new_libs \" $deplib\" ;;\n\tesac\n      done\n      deplibs=$new_libs\n\n      # All the library-specific variables (install_libdir is set above).\n      library_names=\n      old_library=\n      dlname=\n\n      # Test again, we may have decided not to build it any more\n      if test yes = \"$build_libtool_libs\"; then\n\t# Remove $wl instances when linking with ld.\n\t# FIXME: should test the right _cmds variable.\n\tcase $archive_cmds in\n\t  *\\$LD\\ *) wl= ;;\n        esac\n\tif test yes = \"$hardcode_into_libs\"; then\n\t  # Hardcode the library paths\n\t  hardcode_libdirs=\n\t  dep_rpath=\n\t  rpath=$finalize_rpath\n\t  test relink = \"$opt_mode\" || rpath=$compile_rpath$rpath\n\t  for libdir in $rpath; do\n\t    if test -n \"$hardcode_libdir_flag_spec\"; then\n\t      if test -n \"$hardcode_libdir_separator\"; then\n\t\tfunc_replace_sysroot \"$libdir\"\n\t\tlibdir=$func_replace_sysroot_result\n\t\tif test -z \"$hardcode_libdirs\"; then\n\t\t  hardcode_libdirs=$libdir\n\t\telse\n\t\t  # Just accumulate the unique libdirs.\n\t\t  case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t\t  *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t    ;;\n\t\t  *)\n\t\t    func_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t      else\n\t\teval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t\tfunc_append dep_rpath \" $flag\"\n\t      fi\n\t    elif test -n \"$runpath_var\"; then\n\t      case \"$perm_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append perm_rpath \" $libdir\" ;;\n\t      esac\n\t    fi\n\t  done\n\t  # Substitute the hardcoded libdirs into the rpath.\n\t  if test -n \"$hardcode_libdir_separator\" &&\n\t     test -n \"$hardcode_libdirs\"; then\n\t    libdir=$hardcode_libdirs\n\t    eval \"dep_rpath=\\\"$hardcode_libdir_flag_spec\\\"\"\n\t  fi\n\t  if test -n \"$runpath_var\" && test -n \"$perm_rpath\"; then\n\t    # We should set the runpath_var.\n\t    rpath=\n\t    for dir in $perm_rpath; do\n\t      func_append rpath \"$dir:\"\n\t    done\n\t    eval \"$runpath_var='$rpath\\$$runpath_var'; export $runpath_var\"\n\t  fi\n\t  test -n \"$dep_rpath\" && deplibs=\"$dep_rpath $deplibs\"\n\tfi\n\n\tshlibpath=$finalize_shlibpath\n\ttest relink = \"$opt_mode\" || shlibpath=$compile_shlibpath$shlibpath\n\tif test -n \"$shlibpath\"; then\n\t  eval \"$shlibpath_var='$shlibpath\\$$shlibpath_var'; export $shlibpath_var\"\n\tfi\n\n\t# Get the real and link names of the library.\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval library_names=\\\"$library_names_spec\\\"\n\tset dummy $library_names\n\tshift\n\trealname=$1\n\tshift\n\n\tif test -n \"$soname_spec\"; then\n\t  eval soname=\\\"$soname_spec\\\"\n\telse\n\t  soname=$realname\n\tfi\n\tif test -z \"$dlname\"; then\n\t  dlname=$soname\n\tfi\n\n\tlib=$output_objdir/$realname\n\tlinknames=\n\tfor link\n\tdo\n\t  func_append linknames \" $link\"\n\tdone\n\n\t# Use standard objects if they are pic\n\ttest -z \"$pic_flag\" && libobjs=`$ECHO \"$libobjs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\ttest \"X$libobjs\" = \"X \" && libobjs=\n\n\tdelfiles=\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  $opt_dry_run || cp \"$export_symbols\" \"$output_objdir/$libname.uexp\"\n\t  export_symbols=$output_objdir/$libname.uexp\n\t  func_append delfiles \" $export_symbols\"\n\tfi\n\n\torig_export_symbols=\n\tcase $host_os in\n\tcygwin* | mingw* | cegcc*)\n\t  if test -n \"$export_symbols\" && test -z \"$export_symbols_regex\"; then\n\t    # exporting using user supplied symfile\n\t    func_dll_def_p \"$export_symbols\" || {\n\t      # and it's NOT already a .def file. Must figure out\n\t      # which of the given symbols are data symbols and tag\n\t      # them as such. So, trigger use of export_symbols_cmds.\n\t      # export_symbols gets reassigned inside the \"prepare\n\t      # the list of exported symbols\" if statement, so the\n\t      # include_expsyms logic still works.\n\t      orig_export_symbols=$export_symbols\n\t      export_symbols=\n\t      always_export_symbols=yes\n\t    }\n\t  fi\n\t  ;;\n\tesac\n\n\t# Prepare the list of exported symbols\n\tif test -z \"$export_symbols\"; then\n\t  if test yes = \"$always_export_symbols\" || test -n \"$export_symbols_regex\"; then\n\t    func_verbose \"generating symbol list for '$libname.la'\"\n\t    export_symbols=$output_objdir/$libname.exp\n\t    $opt_dry_run || $RM $export_symbols\n\t    cmds=$export_symbols_cmds\n\t    save_ifs=$IFS; IFS='~'\n\t    for cmd1 in $cmds; do\n\t      IFS=$save_ifs\n\t      # Take the normal branch if the nm_file_list_spec branch\n\t      # doesn't work or if tool conversion is not needed.\n\t      case $nm_file_list_spec~$to_tool_file_cmd in\n\t\t*~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*)\n\t\t  try_normal_branch=yes\n\t\t  eval cmd=\\\"$cmd1\\\"\n\t\t  func_len \" $cmd\"\n\t\t  len=$func_len_result\n\t\t  ;;\n\t\t*)\n\t\t  try_normal_branch=no\n\t\t  ;;\n\t      esac\n\t      if test yes = \"$try_normal_branch\" \\\n\t\t && { test \"$len\" -lt \"$max_cmd_len\" \\\n\t\t      || test \"$max_cmd_len\" -le -1; }\n\t      then\n\t\tfunc_show_eval \"$cmd\" 'exit $?'\n\t\tskipped_export=false\n\t      elif test -n \"$nm_file_list_spec\"; then\n\t\tfunc_basename \"$output\"\n\t\toutput_la=$func_basename_result\n\t\tsave_libobjs=$libobjs\n\t\tsave_output=$output\n\t\toutput=$output_objdir/$output_la.nm\n\t\tfunc_to_tool_file \"$output\"\n\t\tlibobjs=$nm_file_list_spec$func_to_tool_file_result\n\t\tfunc_append delfiles \" $output\"\n\t\tfunc_verbose \"creating $NM input file list: $output\"\n\t\tfor obj in $save_libobjs; do\n\t\t  func_to_tool_file \"$obj\"\n\t\t  $ECHO \"$func_to_tool_file_result\"\n\t\tdone > \"$output\"\n\t\teval cmd=\\\"$cmd1\\\"\n\t\tfunc_show_eval \"$cmd\" 'exit $?'\n\t\toutput=$save_output\n\t\tlibobjs=$save_libobjs\n\t\tskipped_export=false\n\t      else\n\t\t# The command line is too long to execute in one step.\n\t\tfunc_verbose \"using reloadable object file for export list...\"\n\t\tskipped_export=:\n\t\t# Break out early, otherwise skipped_export may be\n\t\t# set to false by a later but shorter cmd.\n\t\tbreak\n\t      fi\n\t    done\n\t    IFS=$save_ifs\n\t    if test -n \"$export_symbols_regex\" && test : != \"$skipped_export\"; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  tmp_export_symbols=$export_symbols\n\t  test -n \"$orig_export_symbols\" && tmp_export_symbols=$orig_export_symbols\n\t  $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\tfi\n\n\tif test : != \"$skipped_export\" && test -n \"$orig_export_symbols\"; then\n\t  # The given exports_symbols file has to be filtered, so filter it.\n\t  func_verbose \"filter symbol list for '$libname.la' to tag DATA exports\"\n\t  # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t  # 's' commands, which not all seds can handle. GNU sed should be fine\n\t  # though. Also, the filter scales superlinearly with the number of\n\t  # global variables. join(1) would be nice here, but unfortunately\n\t  # isn't a blessed tool.\n\t  $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t  func_append delfiles \" $export_symbols $output_objdir/$libname.filter\"\n\t  export_symbols=$output_objdir/$libname.def\n\t  $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\tfi\n\n\ttmp_deplibs=\n\tfor test_deplib in $deplibs; do\n\t  case \" $convenience \" in\n\t  *\" $test_deplib \"*) ;;\n\t  *)\n\t    func_append tmp_deplibs \" $test_deplib\"\n\t    ;;\n\t  esac\n\tdone\n\tdeplibs=$tmp_deplibs\n\n\tif test -n \"$convenience\"; then\n\t  if test -n \"$whole_archive_flag_spec\" &&\n\t    test yes = \"$compiler_needs_object\" &&\n\t    test -z \"$libobjs\"; then\n\t    # extract the archives, so we have objects to list.\n\t    # TODO: could optimize this to just extract one archive.\n\t    whole_archive_flag_spec=\n\t  fi\n\t  if test -n \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  else\n\t    gentop=$output_objdir/${outputname}x\n\t    func_append generated \" $gentop\"\n\n\t    func_extract_archives $gentop $convenience\n\t    func_append libobjs \" $func_extract_archives_result\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\tfi\n\n\tif test yes = \"$thread_safe\" && test -n \"$thread_safe_flag_spec\"; then\n\t  eval flag=\\\"$thread_safe_flag_spec\\\"\n\t  func_append linker_flags \" $flag\"\n\tfi\n\n\t# Make a backup of the uninstalled library when relinking\n\tif test relink = \"$opt_mode\"; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?\n\tfi\n\n\t# Do each of the archive commands.\n\tif test yes = \"$module\" && test -n \"$module_cmds\"; then\n\t  if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$module_expsym_cmds\\\"\n\t    cmds=$module_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$module_cmds\\\"\n\t    cmds=$module_cmds\n\t  fi\n\telse\n\t  if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$archive_expsym_cmds\\\"\n\t    cmds=$archive_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$archive_cmds\\\"\n\t    cmds=$archive_cmds\n\t  fi\n\tfi\n\n\tif test : != \"$skipped_export\" &&\n\t   func_len \" $test_cmds\" &&\n\t   len=$func_len_result &&\n\t   test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  :\n\telse\n\t  # The command line is too long to link in one step, link piecewise\n\t  # or, if using GNU ld and skipped_export is not :, use a linker\n\t  # script.\n\n\t  # Save the value of $output and $libobjs because we want to\n\t  # use them later.  If we have whole_archive_flag_spec, we\n\t  # want to use save_libobjs as it was before\n\t  # whole_archive_flag_spec was expanded, because we can't\n\t  # assume the linker understands whole_archive_flag_spec.\n\t  # This may have to be revisited, in case too many\n\t  # convenience libraries get linked in and end up exceeding\n\t  # the spec.\n\t  if test -z \"$convenience\" || test -z \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t  fi\n\t  save_output=$output\n\t  func_basename \"$output\"\n\t  output_la=$func_basename_result\n\n\t  # Clear the reloadable object creation command queue and\n\t  # initialize k to one.\n\t  test_cmds=\n\t  concat_cmds=\n\t  objlist=\n\t  last_robj=\n\t  k=1\n\n\t  if test -n \"$save_libobjs\" && test : != \"$skipped_export\" && test yes = \"$with_gnu_ld\"; then\n\t    output=$output_objdir/$output_la.lnkscript\n\t    func_verbose \"creating GNU ld script: $output\"\n\t    echo 'INPUT (' > $output\n\t    for obj in $save_libobjs\n\t    do\n\t      func_to_tool_file \"$obj\"\n\t      $ECHO \"$func_to_tool_file_result\" >> $output\n\t    done\n\t    echo ')' >> $output\n\t    func_append delfiles \" $output\"\n\t    func_to_tool_file \"$output\"\n\t    output=$func_to_tool_file_result\n\t  elif test -n \"$save_libobjs\" && test : != \"$skipped_export\" && test -n \"$file_list_spec\"; then\n\t    output=$output_objdir/$output_la.lnk\n\t    func_verbose \"creating linker input file list: $output\"\n\t    : > $output\n\t    set x $save_libobjs\n\t    shift\n\t    firstobj=\n\t    if test yes = \"$compiler_needs_object\"; then\n\t      firstobj=\"$1 \"\n\t      shift\n\t    fi\n\t    for obj\n\t    do\n\t      func_to_tool_file \"$obj\"\n\t      $ECHO \"$func_to_tool_file_result\" >> $output\n\t    done\n\t    func_append delfiles \" $output\"\n\t    func_to_tool_file \"$output\"\n\t    output=$firstobj\\\"$file_list_spec$func_to_tool_file_result\\\"\n\t  else\n\t    if test -n \"$save_libobjs\"; then\n\t      func_verbose \"creating reloadable object files...\"\n\t      output=$output_objdir/$output_la-$k.$objext\n\t      eval test_cmds=\\\"$reload_cmds\\\"\n\t      func_len \" $test_cmds\"\n\t      len0=$func_len_result\n\t      len=$len0\n\n\t      # Loop over the list of objects to be linked.\n\t      for obj in $save_libobjs\n\t      do\n\t\tfunc_len \" $obj\"\n\t\tfunc_arith $len + $func_len_result\n\t\tlen=$func_arith_result\n\t\tif test -z \"$objlist\" ||\n\t\t   test \"$len\" -lt \"$max_cmd_len\"; then\n\t\t  func_append objlist \" $obj\"\n\t\telse\n\t\t  # The command $test_cmds is almost too long, add a\n\t\t  # command to the queue.\n\t\t  if test 1 -eq \"$k\"; then\n\t\t    # The first file doesn't have a previous command to add.\n\t\t    reload_objs=$objlist\n\t\t    eval concat_cmds=\\\"$reload_cmds\\\"\n\t\t  else\n\t\t    # All subsequent reloadable object files will link in\n\t\t    # the last one created.\n\t\t    reload_objs=\"$objlist $last_robj\"\n\t\t    eval concat_cmds=\\\"\\$concat_cmds~$reload_cmds~\\$RM $last_robj\\\"\n\t\t  fi\n\t\t  last_robj=$output_objdir/$output_la-$k.$objext\n\t\t  func_arith $k + 1\n\t\t  k=$func_arith_result\n\t\t  output=$output_objdir/$output_la-$k.$objext\n\t\t  objlist=\" $obj\"\n\t\t  func_len \" $last_robj\"\n\t\t  func_arith $len0 + $func_len_result\n\t\t  len=$func_arith_result\n\t\tfi\n\t      done\n\t      # Handle the remaining objects by creating one last\n\t      # reloadable object file.  All subsequent reloadable object\n\t      # files will link in the last one created.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      reload_objs=\"$objlist $last_robj\"\n\t      eval concat_cmds=\\\"\\$concat_cmds$reload_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t        eval concat_cmds=\\\"\\$concat_cmds~\\$RM $last_robj\\\"\n\t      fi\n\t      func_append delfiles \" $output\"\n\n\t    else\n\t      output=\n\t    fi\n\n\t    ${skipped_export-false} && {\n\t      func_verbose \"generating symbol list for '$libname.la'\"\n\t      export_symbols=$output_objdir/$libname.exp\n\t      $opt_dry_run || $RM $export_symbols\n\t      libobjs=$output\n\t      # Append the command to create the export file.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\$concat_cmds$export_symbols_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t\teval concat_cmds=\\\"\\$concat_cmds~\\$RM $last_robj\\\"\n\t      fi\n\t    }\n\n\t    test -n \"$save_libobjs\" &&\n\t      func_verbose \"creating a temporary reloadable object file: $output\"\n\n\t    # Loop through the commands generated above and execute them.\n\t    save_ifs=$IFS; IFS='~'\n\t    for cmd in $concat_cmds; do\n\t      IFS=$save_ifs\n\t      $opt_quiet || {\n\t\t  func_quote_for_expand \"$cmd\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t      }\n\t      $opt_dry_run || eval \"$cmd\" || {\n\t\tlt_exit=$?\n\n\t\t# Restore the uninstalled library and exit\n\t\tif test relink = \"$opt_mode\"; then\n\t\t  ( cd \"$output_objdir\" && \\\n\t\t    $RM \"${realname}T\" && \\\n\t\t    $MV \"${realname}U\" \"$realname\" )\n\t\tfi\n\n\t\texit $lt_exit\n\t      }\n\t    done\n\t    IFS=$save_ifs\n\n\t    if test -n \"$export_symbols_regex\" && ${skipped_export-false}; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\n          ${skipped_export-false} && {\n\t    if test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t      tmp_export_symbols=$export_symbols\n\t      test -n \"$orig_export_symbols\" && tmp_export_symbols=$orig_export_symbols\n\t      $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\t    fi\n\n\t    if test -n \"$orig_export_symbols\"; then\n\t      # The given exports_symbols file has to be filtered, so filter it.\n\t      func_verbose \"filter symbol list for '$libname.la' to tag DATA exports\"\n\t      # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t      # 's' commands, which not all seds can handle. GNU sed should be fine\n\t      # though. Also, the filter scales superlinearly with the number of\n\t      # global variables. join(1) would be nice here, but unfortunately\n\t      # isn't a blessed tool.\n\t      $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t      func_append delfiles \" $export_symbols $output_objdir/$libname.filter\"\n\t      export_symbols=$output_objdir/$libname.def\n\t      $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\t    fi\n\t  }\n\n\t  libobjs=$output\n\t  # Restore the value of output.\n\t  output=$save_output\n\n\t  if test -n \"$convenience\" && test -n \"$whole_archive_flag_spec\"; then\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\t  # Expand the library linking commands again to reset the\n\t  # value of $libobjs for piecewise linking.\n\n\t  # Do each of the archive commands.\n\t  if test yes = \"$module\" && test -n \"$module_cmds\"; then\n\t    if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t      cmds=$module_expsym_cmds\n\t    else\n\t      cmds=$module_cmds\n\t    fi\n\t  else\n\t    if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t      cmds=$archive_expsym_cmds\n\t    else\n\t      cmds=$archive_cmds\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$delfiles\"; then\n\t  # Append the command to remove temporary files to $cmds.\n\t  eval cmds=\\\"\\$cmds~\\$RM $delfiles\\\"\n\tfi\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  func_append libobjs \" $func_extract_archives_result\"\n\t  test \"X$libobjs\" = \"X \" && libobjs=\n\tfi\n\n\tsave_ifs=$IFS; IFS='~'\n\tfor cmd in $cmds; do\n\t  IFS=$sp$nl\n\t  eval cmd=\\\"$cmd\\\"\n\t  IFS=$save_ifs\n\t  $opt_quiet || {\n\t    func_quote_for_expand \"$cmd\"\n\t    eval \"func_echo $func_quote_for_expand_result\"\n\t  }\n\t  $opt_dry_run || eval \"$cmd\" || {\n\t    lt_exit=$?\n\n\t    # Restore the uninstalled library and exit\n\t    if test relink = \"$opt_mode\"; then\n\t      ( cd \"$output_objdir\" && \\\n\t        $RM \"${realname}T\" && \\\n\t\t$MV \"${realname}U\" \"$realname\" )\n\t    fi\n\n\t    exit $lt_exit\n\t  }\n\tdone\n\tIFS=$save_ifs\n\n\t# Restore the uninstalled library and exit\n\tif test relink = \"$opt_mode\"; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?\n\n\t  if test -n \"$convenience\"; then\n\t    if test -z \"$whole_archive_flag_spec\"; then\n\t      func_show_eval '${RM}r \"$gentop\"'\n\t    fi\n\t  fi\n\n\t  exit $EXIT_SUCCESS\n\tfi\n\n\t# Create links to the real library.\n\tfor linkname in $linknames; do\n\t  if test \"$realname\" != \"$linkname\"; then\n\t    func_show_eval '(cd \"$output_objdir\" && $RM \"$linkname\" && $LN_S \"$realname\" \"$linkname\")' 'exit $?'\n\t  fi\n\tdone\n\n\t# If -module or -export-dynamic was specified, set the dlname.\n\tif test yes = \"$module\" || test yes = \"$export_dynamic\"; then\n\t  # On all known operating systems, these are identical.\n\t  dlname=$soname\n\tfi\n      fi\n      ;;\n\n    obj)\n      if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n\tfunc_warning \"'-dlopen' is ignored for objects\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"'-l' and '-L' are ignored for objects\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"'-rpath' is ignored for objects\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"'-R' is ignored for objects\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info' is ignored for objects\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for objects\"\n\n      case $output in\n      *.lo)\n\ttest -n \"$objs$old_deplibs\" && \\\n\t  func_fatal_error \"cannot build library object '$output' from non-libtool objects\"\n\n\tlibobj=$output\n\tfunc_lo2o \"$libobj\"\n\tobj=$func_lo2o_result\n\t;;\n      *)\n\tlibobj=\n\tobj=$output\n\t;;\n      esac\n\n      # Delete the old objects.\n      $opt_dry_run || $RM $obj $libobj\n\n      # Objects from convenience libraries.  This assumes\n      # single-version convenience libraries.  Whenever we create\n      # different ones for PIC/non-PIC, this we'll have to duplicate\n      # the extraction.\n      reload_conv_objs=\n      gentop=\n      # if reload_cmds runs $LD directly, get rid of -Wl from\n      # whole_archive_flag_spec and hope we can get by with turning comma\n      # into space.\n      case $reload_cmds in\n        *\\$LD[\\ \\$]*) wl= ;;\n      esac\n      if test -n \"$convenience\"; then\n\tif test -n \"$whole_archive_flag_spec\"; then\n\t  eval tmp_whole_archive_flags=\\\"$whole_archive_flag_spec\\\"\n\t  test -n \"$wl\" || tmp_whole_archive_flags=`$ECHO \"$tmp_whole_archive_flags\" | $SED 's|,| |g'`\n\t  reload_conv_objs=$reload_objs\\ $tmp_whole_archive_flags\n\telse\n\t  gentop=$output_objdir/${obj}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $convenience\n\t  reload_conv_objs=\"$reload_objs $func_extract_archives_result\"\n\tfi\n      fi\n\n      # If we're not building shared, we need to use non_pic_objs\n      test yes = \"$build_libtool_libs\" || libobjs=$non_pic_objects\n\n      # Create the old-style object.\n      reload_objs=$objs$old_deplibs' '`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.$libext$/d; /\\.lib$/d; $lo2o\" | $NL2SP`' '$reload_conv_objs\n\n      output=$obj\n      func_execute_cmds \"$reload_cmds\" 'exit $?'\n\n      # Exit if we aren't doing a library object file.\n      if test -z \"$libobj\"; then\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\texit $EXIT_SUCCESS\n      fi\n\n      test yes = \"$build_libtool_libs\" || {\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\t# Create an invalid libtool object if no PIC, so that we don't\n\t# accidentally link it into a program.\n\t# $show \"echo timestamp > $libobj\"\n\t# $opt_dry_run || eval \"echo timestamp > $libobj\" || exit $?\n\texit $EXIT_SUCCESS\n      }\n\n      if test -n \"$pic_flag\" || test default != \"$pic_mode\"; then\n\t# Only do commands if we really have different PIC objects.\n\treload_objs=\"$libobjs $reload_conv_objs\"\n\toutput=$libobj\n\tfunc_execute_cmds \"$reload_cmds\" 'exit $?'\n      fi\n\n      if test -n \"$gentop\"; then\n\tfunc_show_eval '${RM}r \"$gentop\"'\n      fi\n\n      exit $EXIT_SUCCESS\n      ;;\n\n    prog)\n      case $host in\n\t*cygwin*) func_stripname '' '.exe' \"$output\"\n\t          output=$func_stripname_result.exe;;\n      esac\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info' is ignored for programs\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for programs\"\n\n      $preload \\\n\t&& test unknown,unknown,unknown = \"$dlopen_support,$dlopen_self,$dlopen_self_static\" \\\n\t&& func_warning \"'LT_INIT([dlopen])' not used. Assuming no dlopen support.\"\n\n      case $host in\n      *-*-rhapsody* | *-*-darwin1.[012])\n\t# On Rhapsody replace the C library is the System framework\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t;;\n      esac\n\n      case $host in\n      *-*-darwin*)\n\t# Don't allow lazy linking, it breaks C++ global constructors\n\t# But is supposedly fixed on 10.4 or later (yay!).\n\tif test CXX = \"$tagname\"; then\n\t  case ${MACOSX_DEPLOYMENT_TARGET-10.0} in\n\t    10.[0123])\n\t      func_append compile_command \" $wl-bind_at_load\"\n\t      func_append finalize_command \" $wl-bind_at_load\"\n\t    ;;\n\t  esac\n\tfi\n\t# Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t;;\n      esac\n\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $compile_deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    func_append new_libs \" -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $compile_deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) func_append new_libs \" $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) func_append new_libs \" $deplib\" ;;\n\tesac\n      done\n      compile_deplibs=$new_libs\n\n\n      func_append compile_command \" $compile_deplibs\"\n      func_append finalize_command \" $finalize_deplibs\"\n\n      if test -n \"$rpath$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\tfor libdir in $rpath $xrpath; do\n\t  # This is the magic to use -rpath.\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_rpath \" $libdir\" ;;\n\t  esac\n\tdone\n      fi\n\n      # Now hardcode the library paths\n      rpath=\n      hardcode_libdirs=\n      for libdir in $compile_rpath $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=$libdir\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\tfunc_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    func_append rpath \" $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append perm_rpath \" $libdir\" ;;\n\t  esac\n\tfi\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`$ECHO \"$libdir\" | $SED -e 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$libdir:\"*) ;;\n\t  ::) dllsearchpath=$libdir;;\n\t  *) func_append dllsearchpath \":$libdir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) func_append dllsearchpath \":$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=$hardcode_libdirs\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      compile_rpath=$rpath\n\n      rpath=\n      hardcode_libdirs=\n      for libdir in $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=$libdir\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\tfunc_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    func_append rpath \" $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$finalize_perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_perm_rpath \" $libdir\" ;;\n\t  esac\n\tfi\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=$hardcode_libdirs\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      finalize_rpath=$rpath\n\n      if test -n \"$libobjs\" && test yes = \"$build_old_libs\"; then\n\t# Transform all the library objects into standard objects.\n\tcompile_command=`$ECHO \"$compile_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\tfinalize_command=`$ECHO \"$finalize_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n      fi\n\n      func_generate_dlsyms \"$outputname\" \"@PROGRAM@\" false\n\n      # template prelinking step\n      if test -n \"$prelink_cmds\"; then\n\tfunc_execute_cmds \"$prelink_cmds\" 'exit $?'\n      fi\n\n      wrappers_required=:\n      case $host in\n      *cegcc* | *mingw32ce*)\n        # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.\n        wrappers_required=false\n        ;;\n      *cygwin* | *mingw* )\n        test yes = \"$build_libtool_libs\" || wrappers_required=false\n        ;;\n      *)\n        if test no = \"$need_relink\" || test yes != \"$build_libtool_libs\"; then\n          wrappers_required=false\n        fi\n        ;;\n      esac\n      $wrappers_required || {\n\t# Replace the output file specification.\n\tcompile_command=`$ECHO \"$compile_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\tlink_command=$compile_command$compile_rpath\n\n\t# We have no uninstalled library dependencies, so finalize right now.\n\texit_status=0\n\tfunc_show_eval \"$link_command\" 'exit_status=$?'\n\n\tif test -n \"$postlink_cmds\"; then\n\t  func_to_tool_file \"$output\"\n\t  postlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\t  func_execute_cmds \"$postlink_cmds\" 'exit $?'\n\tfi\n\n\t# Delete the generated files.\n\tif test -f \"$output_objdir/${outputname}S.$objext\"; then\n\t  func_show_eval '$RM \"$output_objdir/${outputname}S.$objext\"'\n\tfi\n\n\texit $exit_status\n      }\n\n      if test -n \"$compile_shlibpath$finalize_shlibpath\"; then\n\tcompile_command=\"$shlibpath_var=\\\"$compile_shlibpath$finalize_shlibpath\\$$shlibpath_var\\\" $compile_command\"\n      fi\n      if test -n \"$finalize_shlibpath\"; then\n\tfinalize_command=\"$shlibpath_var=\\\"$finalize_shlibpath\\$$shlibpath_var\\\" $finalize_command\"\n      fi\n\n      compile_var=\n      finalize_var=\n      if test -n \"$runpath_var\"; then\n\tif test -n \"$perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $perm_rpath; do\n\t    func_append rpath \"$dir:\"\n\t  done\n\t  compile_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n\tif test -n \"$finalize_perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $finalize_perm_rpath; do\n\t    func_append rpath \"$dir:\"\n\t  done\n\t  finalize_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n      fi\n\n      if test yes = \"$no_install\"; then\n\t# We don't need to create a wrapper script.\n\tlink_command=$compile_var$compile_command$compile_rpath\n\t# Replace the output file specification.\n\tlink_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\t# Delete the old output file.\n\t$opt_dry_run || $RM $output\n\t# Link the executable and exit\n\tfunc_show_eval \"$link_command\" 'exit $?'\n\n\tif test -n \"$postlink_cmds\"; then\n\t  func_to_tool_file \"$output\"\n\t  postlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\t  func_execute_cmds \"$postlink_cmds\" 'exit $?'\n\tfi\n\n\texit $EXIT_SUCCESS\n      fi\n\n      case $hardcode_action,$fast_install in\n        relink,*)\n\t  # Fast installation is not supported\n\t  link_command=$compile_var$compile_command$compile_rpath\n\t  relink_command=$finalize_var$finalize_command$finalize_rpath\n\n\t  func_warning \"this platform does not like uninstalled shared libraries\"\n\t  func_warning \"'$output' will be relinked during installation\"\n\t  ;;\n        *,yes)\n\t  link_command=$finalize_var$compile_command$finalize_rpath\n\t  relink_command=`$ECHO \"$compile_var$compile_command$compile_rpath\" | $SED 's%@OUTPUT@%\\$progdir/\\$file%g'`\n          ;;\n\t*,no)\n\t  link_command=$compile_var$compile_command$compile_rpath\n\t  relink_command=$finalize_var$finalize_command$finalize_rpath\n          ;;\n\t*,needless)\n\t  link_command=$finalize_var$compile_command$finalize_rpath\n\t  relink_command=\n          ;;\n      esac\n\n      # Replace the output file specification.\n      link_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output_objdir/$outputname\"'%g'`\n\n      # Delete the old output files.\n      $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname\n\n      func_show_eval \"$link_command\" 'exit $?'\n\n      if test -n \"$postlink_cmds\"; then\n\tfunc_to_tool_file \"$output_objdir/$outputname\"\n\tpostlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output_objdir/$outputname\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\tfunc_execute_cmds \"$postlink_cmds\" 'exit $?'\n      fi\n\n      # Now create the wrapper script.\n      func_verbose \"creating $output\"\n\n      # Quote the relink command for shipping.\n      if test -n \"$relink_command\"; then\n\t# Preserve any variables that may affect compiler behavior\n\tfor var in $variables_saved_for_relink; do\n\t  if eval test -z \\\"\\${$var+set}\\\"; then\n\t    relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\t  elif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t    relink_command=\"$var=; export $var; $relink_command\"\n\t  else\n\t    func_quote_for_eval \"$var_value\"\n\t    relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\t  fi\n\tdone\n\trelink_command=\"(cd `pwd`; $relink_command)\"\n\trelink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      fi\n\n      # Only actually do things if not in dry run mode.\n      $opt_dry_run || {\n\t# win32 will think the script is a binary if it has\n\t# a .exe suffix, so we strip it off here.\n\tcase $output in\n\t  *.exe) func_stripname '' '.exe' \"$output\"\n\t         output=$func_stripname_result ;;\n\tesac\n\t# test for cygwin because mv fails w/o .exe extensions\n\tcase $host in\n\t  *cygwin*)\n\t    exeext=.exe\n\t    func_stripname '' '.exe' \"$outputname\"\n\t    outputname=$func_stripname_result ;;\n\t  *) exeext= ;;\n\tesac\n\tcase $host in\n\t  *cygwin* | *mingw* )\n\t    func_dirname_and_basename \"$output\" \"\" \".\"\n\t    output_name=$func_basename_result\n\t    output_path=$func_dirname_result\n\t    cwrappersource=$output_path/$objdir/lt-$output_name.c\n\t    cwrapper=$output_path/$output_name.exe\n\t    $RM $cwrappersource $cwrapper\n\t    trap \"$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_cwrapperexe_src > $cwrappersource\n\n\t    # The wrapper executable is built using the $host compiler,\n\t    # because it contains $host paths and files. If cross-\n\t    # compiling, it, like the target executable, must be\n\t    # executed on the $host or under an emulation environment.\n\t    $opt_dry_run || {\n\t      $LTCC $LTCFLAGS -o $cwrapper $cwrappersource\n\t      $STRIP $cwrapper\n\t    }\n\n\t    # Now, create the wrapper script for func_source use:\n\t    func_ltwrapper_scriptname $cwrapper\n\t    $RM $func_ltwrapper_scriptname_result\n\t    trap \"$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE\" 1 2 15\n\t    $opt_dry_run || {\n\t      # note: this script will not be executed, so do not chmod.\n\t      if test \"x$build\" = \"x$host\"; then\n\t\t$cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result\n\t      else\n\t\tfunc_emit_wrapper no > $func_ltwrapper_scriptname_result\n\t      fi\n\t    }\n\t  ;;\n\t  * )\n\t    $RM $output\n\t    trap \"$RM $output; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_wrapper no > $output\n\t    chmod +x $output\n\t  ;;\n\tesac\n      }\n      exit $EXIT_SUCCESS\n      ;;\n    esac\n\n    # See if we need to build an old-fashioned archive.\n    for oldlib in $oldlibs; do\n\n      case $build_libtool_libs in\n        convenience)\n\t  oldobjs=\"$libobjs_save $symfileobj\"\n\t  addlibs=$convenience\n\t  build_libtool_libs=no\n\t  ;;\n\tmodule)\n\t  oldobjs=$libobjs_save\n\t  addlibs=$old_convenience\n\t  build_libtool_libs=no\n          ;;\n\t*)\n\t  oldobjs=\"$old_deplibs $non_pic_objects\"\n\t  $preload && test -f \"$symfileobj\" \\\n\t    && func_append oldobjs \" $symfileobj\"\n\t  addlibs=$old_convenience\n\t  ;;\n      esac\n\n      if test -n \"$addlibs\"; then\n\tgentop=$output_objdir/${outputname}x\n\tfunc_append generated \" $gentop\"\n\n\tfunc_extract_archives $gentop $addlibs\n\tfunc_append oldobjs \" $func_extract_archives_result\"\n      fi\n\n      # Do each command in the archive commands.\n      if test -n \"$old_archive_from_new_cmds\" && test yes = \"$build_libtool_libs\"; then\n\tcmds=$old_archive_from_new_cmds\n      else\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  func_append oldobjs \" $func_extract_archives_result\"\n\tfi\n\n\t# POSIX demands no paths to be encoded in archives.  We have\n\t# to avoid creating archives with duplicate basenames if we\n\t# might have to extract them afterwards, e.g., when creating a\n\t# static archive out of a convenience library, or when linking\n\t# the entirety of a libtool archive into another (currently\n\t# not supported by libtool).\n\tif (for obj in $oldobjs\n\t    do\n\t      func_basename \"$obj\"\n\t      $ECHO \"$func_basename_result\"\n\t    done | sort | sort -uc >/dev/null 2>&1); then\n\t  :\n\telse\n\t  echo \"copying selected object files to avoid basename conflicts...\"\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\t  func_mkdir_p \"$gentop\"\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  counter=1\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_basename \"$obj\"\n\t    objbase=$func_basename_result\n\t    case \" $oldobjs \" in\n\t    \" \") oldobjs=$obj ;;\n\t    *[\\ /]\"$objbase \"*)\n\t      while :; do\n\t\t# Make sure we don't pick an alternate name that also\n\t\t# overlaps.\n\t\tnewobj=lt$counter-$objbase\n\t\tfunc_arith $counter + 1\n\t\tcounter=$func_arith_result\n\t\tcase \" $oldobjs \" in\n\t\t*[\\ /]\"$newobj \"*) ;;\n\t\t*) if test ! -f \"$gentop/$newobj\"; then break; fi ;;\n\t\tesac\n\t      done\n\t      func_show_eval \"ln $obj $gentop/$newobj || cp $obj $gentop/$newobj\"\n\t      func_append oldobjs \" $gentop/$newobj\"\n\t      ;;\n\t    *) func_append oldobjs \" $obj\" ;;\n\t    esac\n\t  done\n\tfi\n\tfunc_to_tool_file \"$oldlib\" func_convert_file_msys_to_w32\n\ttool_oldlib=$func_to_tool_file_result\n\teval cmds=\\\"$old_archive_cmds\\\"\n\n\tfunc_len \" $cmds\"\n\tlen=$func_len_result\n\tif test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  cmds=$old_archive_cmds\n\telif test -n \"$archiver_list_spec\"; then\n\t  func_verbose \"using command file archive linking...\"\n\t  for obj in $oldobjs\n\t  do\n\t    func_to_tool_file \"$obj\"\n\t    $ECHO \"$func_to_tool_file_result\"\n\t  done > $output_objdir/$libname.libcmd\n\t  func_to_tool_file \"$output_objdir/$libname.libcmd\"\n\t  oldobjs=\" $archiver_list_spec$func_to_tool_file_result\"\n\t  cmds=$old_archive_cmds\n\telse\n\t  # the command line is too long to link in one step, link in parts\n\t  func_verbose \"using piecewise archive linking...\"\n\t  save_RANLIB=$RANLIB\n\t  RANLIB=:\n\t  objlist=\n\t  concat_cmds=\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  # Is there a better way of finding the last object in the list?\n\t  for obj in $save_oldobjs\n\t  do\n\t    last_oldobj=$obj\n\t  done\n\t  eval test_cmds=\\\"$old_archive_cmds\\\"\n\t  func_len \" $test_cmds\"\n\t  len0=$func_len_result\n\t  len=$len0\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_len \" $obj\"\n\t    func_arith $len + $func_len_result\n\t    len=$func_arith_result\n\t    func_append objlist \" $obj\"\n\t    if test \"$len\" -lt \"$max_cmd_len\"; then\n\t      :\n\t    else\n\t      # the above command should be used before it gets too long\n\t      oldobjs=$objlist\n\t      if test \"$obj\" = \"$last_oldobj\"; then\n\t\tRANLIB=$save_RANLIB\n\t      fi\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\$concat_cmds$old_archive_cmds\\\"\n\t      objlist=\n\t      len=$len0\n\t    fi\n\t  done\n\t  RANLIB=$save_RANLIB\n\t  oldobjs=$objlist\n\t  if test -z \"$oldobjs\"; then\n\t    eval cmds=\\\"\\$concat_cmds\\\"\n\t  else\n\t    eval cmds=\\\"\\$concat_cmds~\\$old_archive_cmds\\\"\n\t  fi\n\tfi\n      fi\n      func_execute_cmds \"$cmds\" 'exit $?'\n    done\n\n    test -n \"$generated\" && \\\n      func_show_eval \"${RM}r$generated\"\n\n    # Now create the libtool archive.\n    case $output in\n    *.la)\n      old_library=\n      test yes = \"$build_old_libs\" && old_library=$libname.$libext\n      func_verbose \"creating $output\"\n\n      # Preserve any variables that may affect compiler behavior\n      for var in $variables_saved_for_relink; do\n\tif eval test -z \\\"\\${$var+set}\\\"; then\n\t  relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\telif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t  relink_command=\"$var=; export $var; $relink_command\"\n\telse\n\t  func_quote_for_eval \"$var_value\"\n\t  relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\tfi\n      done\n      # Quote the link command for shipping.\n      relink_command=\"(cd `pwd`; $SHELL \\\"$progpath\\\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)\"\n      relink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      if test yes = \"$hardcode_automatic\"; then\n\trelink_command=\n      fi\n\n      # Only create the output if not a dry run.\n      $opt_dry_run || {\n\tfor installed in no yes; do\n\t  if test yes = \"$installed\"; then\n\t    if test -z \"$install_libdir\"; then\n\t      break\n\t    fi\n\t    output=$output_objdir/${outputname}i\n\t    # Replace all uninstalled libtool libraries with the installed ones\n\t    newdependency_libs=\n\t    for deplib in $dependency_libs; do\n\t      case $deplib in\n\t      *.la)\n\t\tfunc_basename \"$deplib\"\n\t\tname=$func_basename_result\n\t\tfunc_resolve_sysroot \"$deplib\"\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $func_resolve_sysroot_result`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$deplib' is not a valid libtool archive\"\n\t\tfunc_append newdependency_libs \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      -L*)\n\t\tfunc_stripname -L '' \"$deplib\"\n\t\tfunc_replace_sysroot \"$func_stripname_result\"\n\t\tfunc_append newdependency_libs \" -L$func_replace_sysroot_result\"\n\t\t;;\n\t      -R*)\n\t\tfunc_stripname -R '' \"$deplib\"\n\t\tfunc_replace_sysroot \"$func_stripname_result\"\n\t\tfunc_append newdependency_libs \" -R$func_replace_sysroot_result\"\n\t\t;;\n\t      *) func_append newdependency_libs \" $deplib\" ;;\n\t      esac\n\t    done\n\t    dependency_libs=$newdependency_libs\n\t    newdlfiles=\n\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t      *.la)\n\t        func_basename \"$lib\"\n\t\tname=$func_basename_result\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$lib' is not a valid libtool archive\"\n\t\tfunc_append newdlfiles \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      *) func_append newdlfiles \" $lib\" ;;\n\t      esac\n\t    done\n\t    dlfiles=$newdlfiles\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t      *.la)\n\t\t# Only pass preopened files to the pseudo-archive (for\n\t\t# eventual linking with the app. that links it) if we\n\t\t# didn't already link the preopened objects directly into\n\t\t# the library:\n\t\tfunc_basename \"$lib\"\n\t\tname=$func_basename_result\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$lib' is not a valid libtool archive\"\n\t\tfunc_append newdlprefiles \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      esac\n\t    done\n\t    dlprefiles=$newdlprefiles\n\t  else\n\t    newdlfiles=\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=$lib ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      func_append newdlfiles \" $abs\"\n\t    done\n\t    dlfiles=$newdlfiles\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=$lib ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      func_append newdlprefiles \" $abs\"\n\t    done\n\t    dlprefiles=$newdlprefiles\n\t  fi\n\t  $RM $output\n\t  # place dlname in correct position for cygwin\n\t  # In fact, it would be nice if we could use this code for all target\n\t  # systems that can't hard-code library paths into their executables\n\t  # and that have no shared library path variable independent of PATH,\n\t  # but it turns out we can't easily determine that from inspecting\n\t  # libtool variables, so we have to hard-code the OSs to which it\n\t  # applies here; at the moment, that means platforms that use the PE\n\t  # object format with DLL files.  See the long comment at the top of\n\t  # tests/bindir.at for full details.\n\t  tdlname=$dlname\n\t  case $host,$output,$installed,$module,$dlname in\n\t    *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)\n\t      # If a -bindir argument was supplied, place the dll there.\n\t      if test -n \"$bindir\"; then\n\t\tfunc_relative_path \"$install_libdir\" \"$bindir\"\n\t\ttdlname=$func_relative_path_result/$dlname\n\t      else\n\t\t# Otherwise fall back on heuristic.\n\t\ttdlname=../bin/$dlname\n\t      fi\n\t      ;;\n\t  esac\n\t  $ECHO > $output \"\\\n# $outputname - a libtool library file\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# The name that we can dlopen(3).\ndlname='$tdlname'\n\n# Names of this library.\nlibrary_names='$library_names'\n\n# The name of the static archive.\nold_library='$old_library'\n\n# Linker flags that cannot go in dependency_libs.\ninherited_linker_flags='$new_inherited_linker_flags'\n\n# Libraries that this one depends upon.\ndependency_libs='$dependency_libs'\n\n# Names of additional weak libraries provided by this library\nweak_library_names='$weak_libs'\n\n# Version information for $libname.\ncurrent=$current\nage=$age\nrevision=$revision\n\n# Is this an already installed library?\ninstalled=$installed\n\n# Should we warn about portability when linking against -modules?\nshouldnotlink=$module\n\n# Files to dlopen/dlpreopen\ndlopen='$dlfiles'\ndlpreopen='$dlprefiles'\n\n# Directory that this library needs to be installed in:\nlibdir='$install_libdir'\"\n\t  if test no,yes = \"$installed,$need_relink\"; then\n\t    $ECHO >> $output \"\\\nrelink_command=\\\"$relink_command\\\"\"\n\t  fi\n\tdone\n      }\n\n      # Do a symbolic link so that the libtool archive can be found in\n      # LD_LIBRARY_PATH before the program is installed.\n      func_show_eval '( cd \"$output_objdir\" && $RM \"$outputname\" && $LN_S \"../$outputname\" \"$outputname\" )' 'exit $?'\n      ;;\n    esac\n    exit $EXIT_SUCCESS\n}\n\nif test link = \"$opt_mode\" || test relink = \"$opt_mode\"; then\n  func_mode_link ${1+\"$@\"}\nfi\n\n\n# func_mode_uninstall arg...\nfunc_mode_uninstall ()\n{\n    $debug_cmd\n\n    RM=$nonopt\n    files=\n    rmforce=false\n    exit_status=0\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=$magic\n\n    for arg\n    do\n      case $arg in\n      -f) func_append RM \" $arg\"; rmforce=: ;;\n      -*) func_append RM \" $arg\" ;;\n      *) func_append files \" $arg\" ;;\n      esac\n    done\n\n    test -z \"$RM\" && \\\n      func_fatal_help \"you must specify an RM program\"\n\n    rmdirs=\n\n    for file in $files; do\n      func_dirname \"$file\" \"\" \".\"\n      dir=$func_dirname_result\n      if test . = \"$dir\"; then\n\todir=$objdir\n      else\n\todir=$dir/$objdir\n      fi\n      func_basename \"$file\"\n      name=$func_basename_result\n      test uninstall = \"$opt_mode\" && odir=$dir\n\n      # Remember odir for removal later, being careful to avoid duplicates\n      if test clean = \"$opt_mode\"; then\n\tcase \" $rmdirs \" in\n\t  *\" $odir \"*) ;;\n\t  *) func_append rmdirs \" $odir\" ;;\n\tesac\n      fi\n\n      # Don't error if the file doesn't exist and rm -f was used.\n      if { test -L \"$file\"; } >/dev/null 2>&1 ||\n\t { test -h \"$file\"; } >/dev/null 2>&1 ||\n\t test -f \"$file\"; then\n\t:\n      elif test -d \"$file\"; then\n\texit_status=1\n\tcontinue\n      elif $rmforce; then\n\tcontinue\n      fi\n\n      rmfiles=$file\n\n      case $name in\n      *.la)\n\t# Possibly a libtool archive, so verify it.\n\tif func_lalib_p \"$file\"; then\n\t  func_source $dir/$name\n\n\t  # Delete the libtool libraries and symlinks.\n\t  for n in $library_names; do\n\t    func_append rmfiles \" $odir/$n\"\n\t  done\n\t  test -n \"$old_library\" && func_append rmfiles \" $odir/$old_library\"\n\n\t  case $opt_mode in\n\t  clean)\n\t    case \" $library_names \" in\n\t    *\" $dlname \"*) ;;\n\t    *) test -n \"$dlname\" && func_append rmfiles \" $odir/$dlname\" ;;\n\t    esac\n\t    test -n \"$libdir\" && func_append rmfiles \" $odir/$name $odir/${name}i\"\n\t    ;;\n\t  uninstall)\n\t    if test -n \"$library_names\"; then\n\t      # Do each command in the postuninstall commands.\n\t      func_execute_cmds \"$postuninstall_cmds\" '$rmforce || exit_status=1'\n\t    fi\n\n\t    if test -n \"$old_library\"; then\n\t      # Do each command in the old_postuninstall commands.\n\t      func_execute_cmds \"$old_postuninstall_cmds\" '$rmforce || exit_status=1'\n\t    fi\n\t    # FIXME: should reinstall the best remaining shared library.\n\t    ;;\n\t  esac\n\tfi\n\t;;\n\n      *.lo)\n\t# Possibly a libtool object, so verify it.\n\tif func_lalib_p \"$file\"; then\n\n\t  # Read the .lo file\n\t  func_source $dir/$name\n\n\t  # Add PIC object to the list of files to remove.\n\t  if test -n \"$pic_object\" && test none != \"$pic_object\"; then\n\t    func_append rmfiles \" $dir/$pic_object\"\n\t  fi\n\n\t  # Add non-PIC object to the list of files to remove.\n\t  if test -n \"$non_pic_object\" && test none != \"$non_pic_object\"; then\n\t    func_append rmfiles \" $dir/$non_pic_object\"\n\t  fi\n\tfi\n\t;;\n\n      *)\n\tif test clean = \"$opt_mode\"; then\n\t  noexename=$name\n\t  case $file in\n\t  *.exe)\n\t    func_stripname '' '.exe' \"$file\"\n\t    file=$func_stripname_result\n\t    func_stripname '' '.exe' \"$name\"\n\t    noexename=$func_stripname_result\n\t    # $file with .exe has already been added to rmfiles,\n\t    # add $file without .exe\n\t    func_append rmfiles \" $file\"\n\t    ;;\n\t  esac\n\t  # Do a test to see if this is a libtool program.\n\t  if func_ltwrapper_p \"$file\"; then\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      relink_command=\n\t      func_source $func_ltwrapper_scriptname_result\n\t      func_append rmfiles \" $func_ltwrapper_scriptname_result\"\n\t    else\n\t      relink_command=\n\t      func_source $dir/$noexename\n\t    fi\n\n\t    # note $name still contains .exe if it was in $file originally\n\t    # as does the version of $file that was added into $rmfiles\n\t    func_append rmfiles \" $odir/$name $odir/${name}S.$objext\"\n\t    if test yes = \"$fast_install\" && test -n \"$relink_command\"; then\n\t      func_append rmfiles \" $odir/lt-$name\"\n\t    fi\n\t    if test \"X$noexename\" != \"X$name\"; then\n\t      func_append rmfiles \" $odir/lt-$noexename.c\"\n\t    fi\n\t  fi\n\tfi\n\t;;\n      esac\n      func_show_eval \"$RM $rmfiles\" 'exit_status=1'\n    done\n\n    # Try to remove the $objdir's in the directories where we deleted files\n    for dir in $rmdirs; do\n      if test -d \"$dir\"; then\n\tfunc_show_eval \"rmdir $dir >/dev/null 2>&1\"\n      fi\n    done\n\n    exit $exit_status\n}\n\nif test uninstall = \"$opt_mode\" || test clean = \"$opt_mode\"; then\n  func_mode_uninstall ${1+\"$@\"}\nfi\n\ntest -z \"$opt_mode\" && {\n  help=$generic_help\n  func_fatal_help \"you must specify a MODE\"\n}\n\ntest -z \"$exec_cmd\" && \\\n  func_fatal_help \"invalid operation mode '$opt_mode'\"\n\nif test -n \"$exec_cmd\"; then\n  eval exec \"$exec_cmd\"\n  exit $EXIT_FAILURE\nfi\n\nexit $exit_status\n\n\n# The TAGs below are defined such that we never get into a situation\n# where we disable both kinds of libraries.  Given conflicting\n# choices, we go for a static library, that is the most portable,\n# since we can't tell whether shared libraries were disabled because\n# the user asked for that or because the platform doesn't support\n# them.  This is particularly important on AIX, because we don't\n# support having both static and shared libraries enabled at the same\n# time on that platform, so we default to a shared-only configuration.\n# If a disable-shared tag is given, we'll fallback to a static-only\n# configuration.  But we'll never go from static-only to shared-only.\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-shared\nbuild_libtool_libs=no\nbuild_old_libs=yes\n# ### END LIBTOOL TAG CONFIG: disable-shared\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-static\nbuild_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`\n# ### END LIBTOOL TAG CONFIG: disable-static\n\n# Local Variables:\n# mode:shell-script\n# sh-indentation:2\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/build-aux/mkinstalldirs",
    "content": "#! /bin/sh\n# mkinstalldirs --- make directory hierarchy\n\nscriptversion=2005-02-02.21\n\n# Original author: Noah Friedman <friedman@prep.ai.mit.edu>\n# Created: 1993-05-16\n# Public domain.\n#\n# This file is maintained in Automake, please report\n# bugs to <bug-automake@gnu.org> or send patches to\n# <automake-patches@gnu.org>.\n\nerrstatus=0\ndirmode=\"\"\n\nusage=\"\\\nUsage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...\n\nCreate each directory DIR (with mode MODE, if specified), including all\nleading file name components.\n\nReport bugs to <bug-automake@gnu.org>.\"\n\n# process command line arguments\nwhile test $# -gt 0 ; do\n  case $1 in\n    -h | --help | --h*)         # -h for help\n      echo \"$usage\"\n      exit $?\n      ;;\n    -m)                         # -m PERM arg\n      shift\n      test $# -eq 0 && { echo \"$usage\" 1>&2; exit 1; }\n      dirmode=$1\n      shift\n      ;;\n    --version)\n      echo \"$0 $scriptversion\"\n      exit $?\n      ;;\n    --)                         # stop option processing\n      shift\n      break\n      ;;\n    -*)                         # unknown option\n      echo \"$usage\" 1>&2\n      exit 1\n      ;;\n    *)                          # first non-opt arg\n      break\n      ;;\n  esac\ndone\n\nfor file\ndo\n  if test -d \"$file\"; then\n    shift\n  else\n    break\n  fi\ndone\n\ncase $# in\n  0) exit 0 ;;\nesac\n\n# Solaris 8's mkdir -p isn't thread-safe.  If you mkdir -p a/b and\n# mkdir -p a/c at the same time, both will detect that a is missing,\n# one will create a, then the other will try to create a and die with\n# a \"File exists\" error.  This is a problem when calling mkinstalldirs\n# from a parallel make.  We use --version in the probe to restrict\n# ourselves to GNU mkdir, which is thread-safe.\ncase $dirmode in\n  '')\n    if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then\n      echo \"mkdir -p -- $*\"\n      exec mkdir -p -- \"$@\"\n    else\n      # On NextStep and OpenStep, the `mkdir' command does not\n      # recognize any option.  It will interpret all options as\n      # directories to create, and then abort because `.' already\n      # exists.\n      test -d ./-p && rmdir ./-p\n      test -d ./--version && rmdir ./--version\n    fi\n    ;;\n  *)\n    if mkdir -m \"$dirmode\" -p --version . >/dev/null 2>&1 &&\n       test ! -d ./--version; then\n      echo \"mkdir -m $dirmode -p -- $*\"\n      exec mkdir -m \"$dirmode\" -p -- \"$@\"\n    else\n      # Clean up after NextStep and OpenStep mkdir.\n      for d in ./-m ./-p ./--version \"./$dirmode\";\n      do\n        test -d $d && rmdir $d\n      done\n    fi\n    ;;\nesac\n\nfor file\ndo\n  set fnord `echo \":$file\" | sed -ne 's/^:\\//#/;s/^://;s/\\// /g;s/^#/\\//;p'`\n  shift\n\n  pathcomp=\n  for d\n  do\n    pathcomp=\"$pathcomp$d\"\n    case $pathcomp in\n      -*) pathcomp=./$pathcomp ;;\n    esac\n\n    if test ! -d \"$pathcomp\"; then\n      echo \"mkdir $pathcomp\"\n\n      mkdir \"$pathcomp\" || lasterr=$?\n\n      if test ! -d \"$pathcomp\"; then\n\terrstatus=$lasterr\n      else\n\tif test ! -z \"$dirmode\"; then\n\t  echo \"chmod $dirmode $pathcomp\"\n\t  lasterr=\"\"\n\t  chmod \"$dirmode\" \"$pathcomp\" || lasterr=$?\n\n\t  if test ! -z \"$lasterr\"; then\n\t    errstatus=$lasterr\n\t  fi\n\tfi\n      fi\n    fi\n\n    pathcomp=\"$pathcomp/\"\n  done\ndone\n\nexit $errstatus\n\n# Local Variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"scriptversion=\"\n# time-stamp-format: \"%:y-%02m-%02d.%02H\"\n# time-stamp-end: \"$\"\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/config.h",
    "content": "/* config.h.  Generated from config.h.in by configure.  */\n/* config.h.in.  Generated from configure.ac by autoheader.  */\n\n/* Define to 1 if the package shall run at any location in the file system. */\n/* #undef ENABLE_RELOCATABLE */\n\n/* Define to 1 if you have the <dlfcn.h> header file. */\n#define HAVE_DLFCN_H 1\n\n/* Define to 1 if you have the <inttypes.h> header file. */\n#define HAVE_INTTYPES_H 1\n\n/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */\n/* #define HAVE_LANGINFO_CODESET 1 */\n\n/* Define to 1 if you have the <memory.h> header file. */\n#define HAVE_MEMORY_H 1\n\n/* Define to 1 if you have the `setlocale' function. */\n#define HAVE_SETLOCALE 1\n\n/* Define to 1 if you have the <stdint.h> header file. */\n#define HAVE_STDINT_H 1\n\n/* Define to 1 if you have the <stdlib.h> header file. */\n#define HAVE_STDLIB_H 1\n\n/* Define to 1 if you have the <strings.h> header file. */\n#define HAVE_STRINGS_H 1\n\n/* Define to 1 if you have the <string.h> header file. */\n#define HAVE_STRING_H 1\n\n/* Define to 1 if you have the `symlink' function. */\n#define HAVE_SYMLINK 1\n\n/* Define to 1 if you have the <sys/stat.h> header file. */\n#define HAVE_SYS_STAT_H 1\n\n/* Define to 1 if you have the <sys/types.h> header file. */\n#define HAVE_SYS_TYPES_H 1\n\n/* Define to 1 if you have the <unistd.h> header file. */\n#define HAVE_UNISTD_H 1\n\n/* Define to 1 or 0, depending whether the compiler supports simple visibility\n   declarations. */\n#define HAVE_VISIBILITY 1\n\n/* Define to 1 if O_NOATIME works. */\n#define HAVE_WORKING_O_NOATIME 0\n\n/* Define to 1 if O_NOFOLLOW works. */\n#define HAVE_WORKING_O_NOFOLLOW 1\n\n/* Define to the value of ${prefix}, as a string. */\n#define INSTALLPREFIX \"/usr/local\"\n\n/* Define to the sub-directory where libtool stores uninstalled libraries. */\n#define LT_OBJDIR \".libs/\"\n\n/* Define to the address where bug reports for this package should be sent. */\n#define PACKAGE_BUGREPORT \"\"\n\n/* Define to the full name of this package. */\n#define PACKAGE_NAME \"libcharset\"\n\n/* Define to the full name and version of this package. */\n#define PACKAGE_STRING \"libcharset 1.4\"\n\n/* Define to the one symbol short name of this package. */\n#define PACKAGE_TARNAME \"libcharset\"\n\n/* Define to the home page for this package. */\n#define PACKAGE_URL \"\"\n\n/* Define to the version of this package. */\n#define PACKAGE_VERSION \"1.4\"\n\n/* Define to 1 if you have the ANSI C header files. */\n#define STDC_HEADERS 1\n\n/* Enable extensions on AIX 3, Interix.  */\n#ifndef _ALL_SOURCE\n# define _ALL_SOURCE 1\n#endif\n/* Enable GNU extensions on systems that have them.  */\n#ifndef _GNU_SOURCE\n# define _GNU_SOURCE 1\n#endif\n/* Enable threading extensions on Solaris.  */\n#ifndef _POSIX_PTHREAD_SEMANTICS\n# define _POSIX_PTHREAD_SEMANTICS 1\n#endif\n/* Enable extensions on HP NonStop.  */\n#ifndef _TANDEM_SOURCE\n# define _TANDEM_SOURCE 1\n#endif\n/* Enable general extensions on Solaris.  */\n#ifndef __EXTENSIONS__\n# define __EXTENSIONS__ 1\n#endif\n\n\n/* Define to 1 if on MINIX. */\n/* #undef _MINIX */\n\n/* Define to 2 if the system does not provide POSIX.1 features except with\n   this defined. */\n/* #undef _POSIX_1_SOURCE */\n\n/* Define to 1 if you need to in order for `stat' and other things to work. */\n/* #undef _POSIX_SOURCE */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/config.h.in",
    "content": "/* config.h.in.  Generated from configure.ac by autoheader.  */\n\n/* Define to 1 if the package shall run at any location in the file system. */\n#undef ENABLE_RELOCATABLE\n\n/* Define to 1 if you have the <dlfcn.h> header file. */\n#undef HAVE_DLFCN_H\n\n/* Define to 1 if you have the <inttypes.h> header file. */\n#undef HAVE_INTTYPES_H\n\n/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */\n#undef HAVE_LANGINFO_CODESET\n\n/* Define to 1 if you have the <memory.h> header file. */\n#undef HAVE_MEMORY_H\n\n/* Define to 1 if you have the `setlocale' function. */\n#undef HAVE_SETLOCALE\n\n/* Define to 1 if you have the <stdint.h> header file. */\n#undef HAVE_STDINT_H\n\n/* Define to 1 if you have the <stdlib.h> header file. */\n#undef HAVE_STDLIB_H\n\n/* Define to 1 if you have the <strings.h> header file. */\n#undef HAVE_STRINGS_H\n\n/* Define to 1 if you have the <string.h> header file. */\n#undef HAVE_STRING_H\n\n/* Define to 1 if you have the `symlink' function. */\n#undef HAVE_SYMLINK\n\n/* Define to 1 if you have the <sys/stat.h> header file. */\n#undef HAVE_SYS_STAT_H\n\n/* Define to 1 if you have the <sys/types.h> header file. */\n#undef HAVE_SYS_TYPES_H\n\n/* Define to 1 if you have the <unistd.h> header file. */\n#undef HAVE_UNISTD_H\n\n/* Define to 1 or 0, depending whether the compiler supports simple visibility\n   declarations. */\n#undef HAVE_VISIBILITY\n\n/* Define to 1 if O_NOATIME works. */\n#undef HAVE_WORKING_O_NOATIME\n\n/* Define to 1 if O_NOFOLLOW works. */\n#undef HAVE_WORKING_O_NOFOLLOW\n\n/* Define to the value of ${prefix}, as a string. */\n#undef INSTALLPREFIX\n\n/* Define to the sub-directory where libtool stores uninstalled libraries. */\n#undef LT_OBJDIR\n\n/* Define to the address where bug reports for this package should be sent. */\n#undef PACKAGE_BUGREPORT\n\n/* Define to the full name of this package. */\n#undef PACKAGE_NAME\n\n/* Define to the full name and version of this package. */\n#undef PACKAGE_STRING\n\n/* Define to the one symbol short name of this package. */\n#undef PACKAGE_TARNAME\n\n/* Define to the home page for this package. */\n#undef PACKAGE_URL\n\n/* Define to the version of this package. */\n#undef PACKAGE_VERSION\n\n/* Define to 1 if you have the ANSI C header files. */\n#undef STDC_HEADERS\n\n/* Enable extensions on AIX 3, Interix.  */\n#ifndef _ALL_SOURCE\n# undef _ALL_SOURCE\n#endif\n/* Enable GNU extensions on systems that have them.  */\n#ifndef _GNU_SOURCE\n# undef _GNU_SOURCE\n#endif\n/* Enable threading extensions on Solaris.  */\n#ifndef _POSIX_PTHREAD_SEMANTICS\n# undef _POSIX_PTHREAD_SEMANTICS\n#endif\n/* Enable extensions on HP NonStop.  */\n#ifndef _TANDEM_SOURCE\n# undef _TANDEM_SOURCE\n#endif\n/* Enable general extensions on Solaris.  */\n#ifndef __EXTENSIONS__\n# undef __EXTENSIONS__\n#endif\n\n\n/* Define to 1 if on MINIX. */\n#undef _MINIX\n\n/* Define to 2 if the system does not provide POSIX.1 features except with\n   this defined. */\n#undef _POSIX_1_SOURCE\n\n/* Define to 1 if you need to in order for `stat' and other things to work. */\n#undef _POSIX_SOURCE\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/config.status",
    "content": "#! /bin/sh\n# Generated by configure.\n# Run this file to recreate the current configuration.\n# Compiler output produced by configure, useful for debugging\n# configure, is in config.log if it exists.\n\ndebug=false\nac_cs_recheck=false\nac_cs_silent=false\n\nSHELL=${CONFIG_SHELL-/bin/sh}\nexport SHELL\n## -------------------- ##\n## M4sh Initialization. ##\n## -------------------- ##\n\n# Be more Bourne compatible\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\n\nas_nl='\n'\nexport as_nl\n# Printing a long string crashes Solaris 7 /usr/bin/printf.\nas_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo\n# Prefer a ksh shell builtin over an external printf program on Solaris,\n# but without wasting forks for bash or zsh.\nif test -z \"$BASH_VERSION$ZSH_VERSION\" \\\n    && (test \"X`print -r -- $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='print -r --'\n  as_echo_n='print -rn --'\nelif (test \"X`printf %s $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='printf %s\\n'\n  as_echo_n='printf %s'\nelse\n  if test \"X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`\" = \"X-n $as_echo\"; then\n    as_echo_body='eval /usr/ucb/echo -n \"$1$as_nl\"'\n    as_echo_n='/usr/ucb/echo -n'\n  else\n    as_echo_body='eval expr \"X$1\" : \"X\\\\(.*\\\\)\"'\n    as_echo_n_body='eval\n      arg=$1;\n      case $arg in #(\n      *\"$as_nl\"*)\n\texpr \"X$arg\" : \"X\\\\(.*\\\\)$as_nl\";\n\targ=`expr \"X$arg\" : \".*$as_nl\\\\(.*\\\\)\"`;;\n      esac;\n      expr \"X$arg\" : \"X\\\\(.*\\\\)\" | tr -d \"$as_nl\"\n    '\n    export as_echo_n_body\n    as_echo_n='sh -c $as_echo_n_body as_echo'\n  fi\n  export as_echo_body\n  as_echo='sh -c $as_echo_body as_echo'\nfi\n\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n# IFS\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent editors from complaining about space-tab.\n# (If _AS_PATH_WALK were called with IFS unset, it would disable word\n# splitting by setting IFS to empty value.)\nIFS=\" \"\"\t$as_nl\"\n\n# Find who we are.  Look in the path if we contain no directory separator.\nas_myself=\ncase $0 in #((\n  *[\\\\/]* ) as_myself=$0 ;;\n  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    test -r \"$as_dir/$0\" && as_myself=$as_dir/$0 && break\n  done\nIFS=$as_save_IFS\n\n     ;;\nesac\n# We did not find ourselves, most probably we were run as `sh COMMAND'\n# in which case we are not to be found in the path.\nif test \"x$as_myself\" = x; then\n  as_myself=$0\nfi\nif test ! -f \"$as_myself\"; then\n  $as_echo \"$as_myself: error: cannot find myself; rerun with an absolute file name\" >&2\n  exit 1\nfi\n\n# Unset variables that we do not need and which cause bugs (e.g. in\n# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the \"|| exit 1\"\n# suppresses any \"Segmentation fault\" message there.  '((' could\n# trigger a bug in pdksh 5.2.14.\nfor as_var in BASH_ENV ENV MAIL MAILPATH\ndo eval test x\\${$as_var+set} = xset \\\n  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :\ndone\nPS1='$ '\nPS2='> '\nPS4='+ '\n\n# NLS nuisances.\nLC_ALL=C\nexport LC_ALL\nLANGUAGE=C\nexport LANGUAGE\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n\n# as_fn_error STATUS ERROR [LINENO LOG_FD]\n# ----------------------------------------\n# Output \"`basename $0`: error: ERROR\" to stderr. If LINENO and LOG_FD are\n# provided, also output the error to LOG_FD, referencing LINENO. Then exit the\n# script with STATUS, using 1 if that was 0.\nas_fn_error ()\n{\n  as_status=$1; test $as_status -eq 0 && as_status=1\n  if test \"$4\"; then\n    as_lineno=${as_lineno-\"$3\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n    $as_echo \"$as_me:${as_lineno-$LINENO}: error: $2\" >&$4\n  fi\n  $as_echo \"$as_me: error: $2\" >&2\n  as_fn_exit $as_status\n} # as_fn_error\n\n\n# as_fn_set_status STATUS\n# -----------------------\n# Set $? to STATUS, without forking.\nas_fn_set_status ()\n{\n  return $1\n} # as_fn_set_status\n\n# as_fn_exit STATUS\n# -----------------\n# Exit the shell with STATUS, even in a \"trap 0\" or \"set -e\" context.\nas_fn_exit ()\n{\n  set +e\n  as_fn_set_status $1\n  exit $1\n} # as_fn_exit\n\n# as_fn_unset VAR\n# ---------------\n# Portably unset VAR.\nas_fn_unset ()\n{\n  { eval $1=; unset $1;}\n}\nas_unset=as_fn_unset\n# as_fn_append VAR VALUE\n# ----------------------\n# Append the text in VALUE to the end of the definition contained in VAR. Take\n# advantage of any shell optimizations that allow amortized linear growth over\n# repeated appends, instead of the typical quadratic growth present in naive\n# implementations.\nif (eval \"as_var=1; as_var+=2; test x\\$as_var = x12\") 2>/dev/null; then :\n  eval 'as_fn_append ()\n  {\n    eval $1+=\\$2\n  }'\nelse\n  as_fn_append ()\n  {\n    eval $1=\\$$1\\$2\n  }\nfi # as_fn_append\n\n# as_fn_arith ARG...\n# ------------------\n# Perform arithmetic evaluation on the ARGs, and store the result in the\n# global $as_val. Take advantage of shells that can avoid forks. The arguments\n# must be portable across $(()) and expr.\nif (eval \"test \\$(( 1 + 1 )) = 2\") 2>/dev/null; then :\n  eval 'as_fn_arith ()\n  {\n    as_val=$(( $* ))\n  }'\nelse\n  as_fn_arith ()\n  {\n    as_val=`expr \"$@\" || test $? -eq 1`\n  }\nfi # as_fn_arith\n\n\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nif (basename -- /) >/dev/null 2>&1 && test \"X`basename -- / 2>&1`\" = \"X/\"; then\n  as_basename=basename\nelse\n  as_basename=false\nfi\n\nif (as_dir=`dirname -- /` && test \"X$as_dir\" = X/) >/dev/null 2>&1; then\n  as_dirname=dirname\nelse\n  as_dirname=false\nfi\n\nas_me=`$as_basename -- \"$0\" ||\n$as_expr X/\"$0\" : '.*/\\([^/][^/]*\\)/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X/\"$0\" |\n    sed '/^.*\\/\\([^/][^/]*\\)\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n\n# Avoid depending upon Character Ranges.\nas_cr_letters='abcdefghijklmnopqrstuvwxyz'\nas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nas_cr_Letters=$as_cr_letters$as_cr_LETTERS\nas_cr_digits='0123456789'\nas_cr_alnum=$as_cr_Letters$as_cr_digits\n\nECHO_C= ECHO_N= ECHO_T=\ncase `echo -n x` in #(((((\n-n*)\n  case `echo 'xy\\c'` in\n  *c*) ECHO_T='\t';;\t# ECHO_T is single tab character.\n  xy)  ECHO_C='\\c';;\n  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null\n       ECHO_T='\t';;\n  esac;;\n*)\n  ECHO_N='-n';;\nesac\n\nrm -f conf$$ conf$$.exe conf$$.file\nif test -d conf$$.dir; then\n  rm -f conf$$.dir/conf$$.file\nelse\n  rm -f conf$$.dir\n  mkdir conf$$.dir 2>/dev/null\nfi\nif (echo >conf$$.file) 2>/dev/null; then\n  if ln -s conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s='ln -s'\n    # ... but there are two gotchas:\n    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.\n    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.\n    # In both cases, we have to default to `cp -pR'.\n    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||\n      as_ln_s='cp -pR'\n  elif ln conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s=ln\n  else\n    as_ln_s='cp -pR'\n  fi\nelse\n  as_ln_s='cp -pR'\nfi\nrm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file\nrmdir conf$$.dir 2>/dev/null\n\n\n# as_fn_mkdir_p\n# -------------\n# Create \"$as_dir\" as a directory, including parents if necessary.\nas_fn_mkdir_p ()\n{\n\n  case $as_dir in #(\n  -*) as_dir=./$as_dir;;\n  esac\n  test -d \"$as_dir\" || eval $as_mkdir_p || {\n    as_dirs=\n    while :; do\n      case $as_dir in #(\n      *\\'*) as_qdir=`$as_echo \"$as_dir\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; #'(\n      *) as_qdir=$as_dir;;\n      esac\n      as_dirs=\"'$as_qdir' $as_dirs\"\n      as_dir=`$as_dirname -- \"$as_dir\" ||\n$as_expr X\"$as_dir\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_dir\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_dir\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      test -d \"$as_dir\" && break\n    done\n    test -z \"$as_dirs\" || eval \"mkdir $as_dirs\"\n  } || test -d \"$as_dir\" || as_fn_error $? \"cannot create directory $as_dir\"\n\n\n} # as_fn_mkdir_p\nif mkdir -p . 2>/dev/null; then\n  as_mkdir_p='mkdir -p \"$as_dir\"'\nelse\n  test -d ./-p && rmdir ./-p\n  as_mkdir_p=false\nfi\n\n\n# as_fn_executable_p FILE\n# -----------------------\n# Test if FILE is an executable regular file.\nas_fn_executable_p ()\n{\n  test -f \"$1\" && test -x \"$1\"\n} # as_fn_executable_p\nas_test_x='test -x'\nas_executable_p=as_fn_executable_p\n\n# Sed expression to map a string onto a valid CPP name.\nas_tr_cpp=\"eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'\"\n\n# Sed expression to map a string onto a valid variable name.\nas_tr_sh=\"eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'\"\n\n\nexec 6>&1\n## ----------------------------------- ##\n## Main body of $CONFIG_STATUS script. ##\n## ----------------------------------- ##\n# Save the log message, to keep $0 and so on meaningful, and to\n# report actual input values of CONFIG_FILES etc. instead of their\n# values after options handling.\nac_log=\"\nThis file was extended by libcharset $as_me 1.4, which was\ngenerated by GNU Autoconf 2.69.  Invocation command line was\n\n  CONFIG_FILES    = $CONFIG_FILES\n  CONFIG_HEADERS  = $CONFIG_HEADERS\n  CONFIG_LINKS    = $CONFIG_LINKS\n  CONFIG_COMMANDS = $CONFIG_COMMANDS\n  $ $0 $@\n\non `(hostname || uname -n) 2>/dev/null | sed 1q`\n\"\n\n# Files that config.status was made for.\nconfig_files=\" Makefile lib/Makefile include/localcharset.h:include/localcharset.h.build.in include/localcharset.h.inst:include/localcharset.h.in\"\nconfig_headers=\" config.h\"\nconfig_commands=\" libtool\"\n\nac_cs_usage=\"\\\n\\`$as_me' instantiates files and other configuration actions\nfrom templates according to the current configuration.  Unless the files\nand actions are specified as TAGs, all are instantiated by default.\n\nUsage: $0 [OPTION]... [TAG]...\n\n  -h, --help       print this help, then exit\n  -V, --version    print version number and configuration settings, then exit\n      --config     print configuration, then exit\n  -q, --quiet, --silent\n                   do not print progress messages\n  -d, --debug      don't remove temporary files\n      --recheck    update $as_me by reconfiguring in the same conditions\n      --file=FILE[:TEMPLATE]\n                   instantiate the configuration file FILE\n      --header=FILE[:TEMPLATE]\n                   instantiate the configuration header FILE\n\nConfiguration files:\n$config_files\n\nConfiguration headers:\n$config_headers\n\nConfiguration commands:\n$config_commands\n\nReport bugs to the package provider.\"\n\nac_cs_config=\"'--disable-option-checking' '--prefix=/usr/local' '--cache-file=/dev/null' '--srcdir=.'\"\nac_cs_version=\"\\\nlibcharset config.status 1.4\nconfigured by ./configure, generated by GNU Autoconf 2.69,\n  with options \\\"$ac_cs_config\\\"\n\nCopyright (C) 2012 Free Software Foundation, Inc.\nThis config.status script is free software; the Free Software Foundation\ngives unlimited permission to copy, distribute and modify it.\"\n\nac_pwd='/Users/wanghao/Desktop/demo/zbar/libiconv-1.15/libcharset'\nsrcdir='.'\nINSTALL='/usr/bin/install -c'\nAWK='awk'\ntest -n \"$AWK\" || AWK=awk\n# The default lists apply if the user does not specify any file.\nac_need_defaults=:\nwhile test $# != 0\ndo\n  case $1 in\n  --*=?*)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=`expr \"X$1\" : 'X[^=]*=\\(.*\\)'`\n    ac_shift=:\n    ;;\n  --*=)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=\n    ac_shift=:\n    ;;\n  *)\n    ac_option=$1\n    ac_optarg=$2\n    ac_shift=shift\n    ;;\n  esac\n\n  case $ac_option in\n  # Handling of the options.\n  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)\n    ac_cs_recheck=: ;;\n  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )\n    $as_echo \"$ac_cs_version\"; exit ;;\n  --config | --confi | --conf | --con | --co | --c )\n    $as_echo \"$ac_cs_config\"; exit ;;\n  --debug | --debu | --deb | --de | --d | -d )\n    debug=: ;;\n  --file | --fil | --fi | --f )\n    $ac_shift\n    case $ac_optarg in\n    *\\'*) ac_optarg=`$as_echo \"$ac_optarg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    '') as_fn_error $? \"missing file argument\" ;;\n    esac\n    as_fn_append CONFIG_FILES \" '$ac_optarg'\"\n    ac_need_defaults=false;;\n  --header | --heade | --head | --hea )\n    $ac_shift\n    case $ac_optarg in\n    *\\'*) ac_optarg=`$as_echo \"$ac_optarg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    esac\n    as_fn_append CONFIG_HEADERS \" '$ac_optarg'\"\n    ac_need_defaults=false;;\n  --he | --h)\n    # Conflict between --help and --header\n    as_fn_error $? \"ambiguous option: \\`$1'\nTry \\`$0 --help' for more information.\";;\n  --help | --hel | -h )\n    $as_echo \"$ac_cs_usage\"; exit ;;\n  -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n  | -silent | --silent | --silen | --sile | --sil | --si | --s)\n    ac_cs_silent=: ;;\n\n  # This is an error.\n  -*) as_fn_error $? \"unrecognized option: \\`$1'\nTry \\`$0 --help' for more information.\" ;;\n\n  *) as_fn_append ac_config_targets \" $1\"\n     ac_need_defaults=false ;;\n\n  esac\n  shift\ndone\n\nac_configure_extra_args=\n\nif $ac_cs_silent; then\n  exec 6>/dev/null\n  ac_configure_extra_args=\"$ac_configure_extra_args --silent\"\nfi\n\nif $ac_cs_recheck; then\n  set X /bin/sh './configure'  '--disable-option-checking' '--prefix=/usr/local' '--cache-file=/dev/null' '--srcdir=.' $ac_configure_extra_args --no-create --no-recursion\n  shift\n  $as_echo \"running CONFIG_SHELL=/bin/sh $*\" >&6\n  CONFIG_SHELL='/bin/sh'\n  export CONFIG_SHELL\n  exec \"$@\"\nfi\n\nexec 5>>config.log\n{\n  echo\n  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX\n## Running $as_me. ##\n_ASBOX\n  $as_echo \"$ac_log\"\n} >&5\n\n#\n# INIT-COMMANDS\n#\n\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nsed_quote_subst='s/\\([\"`$\\\\]\\)/\\\\\\1/g'\ndouble_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\ndelay_variable_subst='s/\\\\\\\\\\\\\\\\\\\\\\$/\\\\\\\\\\\\$/g'\nmacro_version='2.4.6'\nmacro_revision='2.4.6'\nAS='as'\nDLLTOOL='false'\nOBJDUMP='objdump'\nenable_shared='yes'\nenable_static='yes'\npic_mode='default'\nenable_fast_install='needless'\nshared_archive_member_spec=''\nSHELL='/bin/sh'\nECHO='printf %s\\n'\nPATH_SEPARATOR=':'\nhost_alias=''\nhost='x86_64-apple-darwin16.6.0'\nhost_os='darwin16.6.0'\nbuild_alias=''\nbuild='x86_64-apple-darwin16.6.0'\nbuild_os='darwin16.6.0'\nSED='/usr/bin/sed'\nXsed='/usr/bin/sed -e 1s/^X//'\nGREP='/usr/bin/grep'\nEGREP='/usr/bin/grep -E'\nFGREP='/usr/bin/grep -F'\nLD='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld'\nNM='/usr/bin/nm -B'\nLN_S='ln -s'\nmax_cmd_len='196608'\nac_objext='o'\nexeext=''\nlt_unset='unset'\nlt_SP2NL='tr \\040 \\012'\nlt_NL2SP='tr \\015\\012 \\040\\040'\nlt_cv_to_host_file_cmd='func_convert_file_noop'\nlt_cv_to_tool_file_cmd='func_convert_file_noop'\nreload_flag=' -r'\nreload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs'\ndeplibs_check_method='pass_all'\nfile_magic_cmd='$MAGIC_CMD'\nfile_magic_glob=''\nwant_nocaseglob='no'\nsharedlib_from_linklib_cmd='printf %s\\n'\nAR='ar'\nAR_FLAGS='cru'\narchiver_list_spec=''\nSTRIP='strip'\nRANLIB='ranlib'\nold_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib'\nold_postuninstall_cmds=''\nold_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'\nlock_old_archive_extraction='yes'\nCC='gcc'\nCFLAGS='-g -O2'\ncompiler='gcc'\nGCC='yes'\nlt_cv_sys_global_symbol_pipe='sed -n -e '\\''s/^.*[\t ]\\([BCDEGRST][BCDEGRST]*\\)[\t ][\t ]*_\\([_A-Za-z][_A-Za-z0-9]*\\)$/\\1 _\\2 \\2/p'\\'' | sed '\\''/ __gnu_lto/d'\\'''\nlt_cv_sys_global_symbol_to_cdecl='sed -n -e '\\''s/^T .* \\(.*\\)$/extern int \\1();/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(.*\\)$/extern char \\1;/p'\\'''\nlt_cv_sys_global_symbol_to_import=''\nlt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\\''s/^: \\(.*\\) .*$/  {\"\\1\", (void *) 0},/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(.*\\)$/  {\"\\1\", (void *) \\&\\1},/p'\\'''\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\\''s/^: \\(.*\\) .*$/  {\"\\1\", (void *) 0},/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(lib.*\\)$/  {\"\\1\", (void *) \\&\\1},/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(.*\\)$/  {\"lib\\1\", (void *) \\&\\1},/p'\\'''\nlt_cv_nm_interface='BSD nm'\nnm_file_list_spec=''\nlt_sysroot=''\nlt_cv_truncate_bin='/bin/dd bs=4096 count=1'\nobjdir='.libs'\nMAGIC_CMD='file'\nlt_prog_compiler_no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions'\nlt_prog_compiler_pic=' -fno-common -DPIC'\nlt_prog_compiler_wl='-Wl,'\nlt_prog_compiler_static=''\nlt_cv_prog_compiler_c_o='yes'\nneed_locks='no'\nMANIFEST_TOOL=':'\nDSYMUTIL='dsymutil'\nNMEDIT='nmedit'\nLIPO='lipo'\nOTOOL='otool'\nOTOOL64=':'\nlibext='a'\nshrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'\nextract_expsyms_cmds=''\narchive_cmds_need_lc='no'\nenable_shared_with_static_runtimes='no'\nexport_dynamic_flag_spec=''\nwhole_archive_flag_spec='`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience $wl-force_load,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"`'\ncompiler_needs_object='no'\nold_archive_from_new_cmds=''\nold_archive_from_expsyms_cmds=''\narchive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring $single_module'\narchive_expsym_cmds='sed '\\''s|^|_|'\\'' < $export_symbols > $output_objdir/$libname-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring $single_module $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'\nmodule_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags'\nmodule_expsym_cmds='sed -e '\\''s|^|_|'\\'' < $export_symbols > $output_objdir/$libname-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'\nwith_gnu_ld='no'\nallow_undefined_flag='$wl-undefined ${wl}dynamic_lookup'\nno_undefined_flag=''\nhardcode_libdir_flag_spec=''\nhardcode_libdir_separator=''\nhardcode_direct='no'\nhardcode_direct_absolute='no'\nhardcode_minus_L='no'\nhardcode_shlibpath_var='unsupported'\nhardcode_automatic='yes'\ninherit_rpath='no'\nlink_all_deplibs='yes'\nalways_export_symbols='no'\nexport_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\nexclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'\ninclude_expsyms=''\nprelink_cmds=''\npostlink_cmds=''\nfile_list_spec=''\nvariables_saved_for_relink='PATH DYLD_LIBRARY_PATH  GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'\nneed_lib_prefix='no'\nneed_version='no'\nversion_type='darwin'\nrunpath_var=''\nshlibpath_var='DYLD_LIBRARY_PATH'\nshlibpath_overrides_runpath='yes'\nlibname_spec='lib$name'\nlibrary_names_spec='$libname$release$major$shared_ext $libname$shared_ext'\nsoname_spec='$libname$release$major$shared_ext'\ninstall_override_mode=''\npostinstall_cmds=''\npostuninstall_cmds=''\nfinish_cmds=''\nfinish_eval=''\nhardcode_into_libs='no'\nsys_lib_search_path_spec='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.1.0  /usr/local/lib'\nconfigure_time_dlsearch_path='/usr/local/lib /lib /usr/lib'\nconfigure_time_lt_sys_library_path=''\nhardcode_action='immediate'\nenable_dlopen='unknown'\nenable_dlopen_self='unknown'\nenable_dlopen_self_static='unknown'\nold_striplib='strip -S'\nstriplib='strip -x'\n\nLTCC='gcc'\nLTCFLAGS='-g -O2'\ncompiler='gcc'\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n}\n\n# Quote evaled strings.\nfor var in AS DLLTOOL OBJDUMP SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface nm_file_list_spec lt_cv_truncate_bin lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib; do\n    case `eval \\\\$ECHO \\\\\"\"\\\\$$var\"\\\\\"` in\n    *[\\\\\\`\\\"\\$]*)\n      eval \"lt_$var=\\\\\\\"\\`\\$ECHO \\\"\\$$var\\\" | \\$SED \\\"\\$sed_quote_subst\\\"\\`\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_$var=\\\\\\\"\\$$var\\\\\\\"\"\n      ;;\n    esac\ndone\n\n# Double-quote double-evaled strings.\nfor var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec configure_time_dlsearch_path configure_time_lt_sys_library_path; do\n    case `eval \\\\$ECHO \\\\\"\"\\\\$$var\"\\\\\"` in\n    *[\\\\\\`\\\"\\$]*)\n      eval \"lt_$var=\\\\\\\"\\`\\$ECHO \\\"\\$$var\\\" | \\$SED -e \\\"\\$double_quote_subst\\\" -e \\\"\\$sed_quote_subst\\\" -e \\\"\\$delay_variable_subst\\\"\\`\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_$var=\\\\\\\"\\$$var\\\\\\\"\"\n      ;;\n    esac\ndone\n\nac_aux_dir='build-aux'\n\n# See if we are running on zsh, and set the options that allow our\n# commands through without removal of \\ escapes INIT.\nif test -n \"${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n\n\n    PACKAGE=''\n    VERSION=''\n    RM='rm -f'\n    ofile='libtool'\n\n\n\n\n\n# Handling of arguments.\nfor ac_config_target in $ac_config_targets\ndo\n  case $ac_config_target in\n    \"config.h\") CONFIG_HEADERS=\"$CONFIG_HEADERS config.h\" ;;\n    \"libtool\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS libtool\" ;;\n    \"Makefile\") CONFIG_FILES=\"$CONFIG_FILES Makefile\" ;;\n    \"lib/Makefile\") CONFIG_FILES=\"$CONFIG_FILES lib/Makefile\" ;;\n    \"include/localcharset.h\") CONFIG_FILES=\"$CONFIG_FILES include/localcharset.h:include/localcharset.h.build.in\" ;;\n    \"include/localcharset.h.inst\") CONFIG_FILES=\"$CONFIG_FILES include/localcharset.h.inst:include/localcharset.h.in\" ;;\n\n  *) as_fn_error $? \"invalid argument: \\`$ac_config_target'\" \"$LINENO\" 5;;\n  esac\ndone\n\n\n# If the user did not use the arguments to specify the items to instantiate,\n# then the envvar interface is used.  Set only those that are not.\n# We use the long form for the default assignment because of an extremely\n# bizarre bug on SunOS 4.1.3.\nif $ac_need_defaults; then\n  test \"${CONFIG_FILES+set}\" = set || CONFIG_FILES=$config_files\n  test \"${CONFIG_HEADERS+set}\" = set || CONFIG_HEADERS=$config_headers\n  test \"${CONFIG_COMMANDS+set}\" = set || CONFIG_COMMANDS=$config_commands\nfi\n\n# Have a temporary directory for convenience.  Make it in the build tree\n# simply because there is no reason against having it here, and in addition,\n# creating and moving files from /tmp can sometimes cause problems.\n# Hook for its removal unless debugging.\n# Note that there is a small window in which the directory will not be cleaned:\n# after its creation but before its name has been assigned to `$tmp'.\n$debug ||\n{\n  tmp= ac_tmp=\n  trap 'exit_status=$?\n  : \"${ac_tmp:=$tmp}\"\n  { test ! -d \"$ac_tmp\" || rm -fr \"$ac_tmp\"; } && exit $exit_status\n' 0\n  trap 'as_fn_exit 1' 1 2 13 15\n}\n# Create a (secure) tmp directory for tmp files.\n\n{\n  tmp=`(umask 077 && mktemp -d \"./confXXXXXX\") 2>/dev/null` &&\n  test -d \"$tmp\"\n}  ||\n{\n  tmp=./conf$$-$RANDOM\n  (umask 077 && mkdir \"$tmp\")\n} || as_fn_error $? \"cannot create a temporary directory in .\" \"$LINENO\" 5\nac_tmp=$tmp\n\n# Set up the scripts for CONFIG_FILES section.\n# No need to generate them if there are no CONFIG_FILES.\n# This happens for instance with `./config.status config.h'.\nif test -n \"$CONFIG_FILES\"; then\n\n\nac_cr=`echo X | tr X '\\015'`\n# On cygwin, bash can eat \\r inside `` if the user requested igncr.\n# But we know of no other shell where ac_cr would be empty at this\n# point, so we can use a bashism as a fallback.\nif test \"x$ac_cr\" = x; then\n  eval ac_cr=\\$\\'\\\\r\\'\nfi\nac_cs_awk_cr=`$AWK 'BEGIN { print \"a\\rb\" }' </dev/null 2>/dev/null`\nif test \"$ac_cs_awk_cr\" = \"a${ac_cr}b\"; then\n  ac_cs_awk_cr='\\\\r'\nelse\n  ac_cs_awk_cr=$ac_cr\nfi\n\necho 'BEGIN {' >\"$ac_tmp/subs1.awk\" &&\ncat >>\"$ac_tmp/subs1.awk\" <<\\_ACAWK &&\nS[\"LTLIBOBJS\"]=\"\"\nS[\"LIBOBJS\"]=\"\"\nS[\"GLIBC21\"]=\"no\"\nS[\"HAVE_VISIBILITY\"]=\"1\"\nS[\"CFLAG_VISIBILITY\"]=\"-fvisibility=hidden\"\nS[\"LT_SYS_LIBRARY_PATH\"]=\"\"\nS[\"OTOOL64\"]=\":\"\nS[\"OTOOL\"]=\"otool\"\nS[\"LIPO\"]=\"lipo\"\nS[\"NMEDIT\"]=\"nmedit\"\nS[\"DSYMUTIL\"]=\"dsymutil\"\nS[\"MANIFEST_TOOL\"]=\":\"\nS[\"AWK\"]=\"awk\"\nS[\"RANLIB\"]=\"ranlib\"\nS[\"STRIP\"]=\"strip\"\nS[\"ac_ct_AR\"]=\"ar\"\nS[\"AR\"]=\"ar\"\nS[\"LN_S\"]=\"ln -s\"\nS[\"NM\"]=\"/usr/bin/nm -B\"\nS[\"ac_ct_DUMPBIN\"]=\"\"\nS[\"DUMPBIN\"]=\"\"\nS[\"LD\"]=\"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld\"\nS[\"FGREP\"]=\"/usr/bin/grep -F\"\nS[\"SED\"]=\"/usr/bin/sed\"\nS[\"LIBTOOL\"]=\"/bin/sh $(top_builddir)/libtool\"\nS[\"OBJDUMP\"]=\"objdump\"\nS[\"DLLTOOL\"]=\"false\"\nS[\"AS\"]=\"as\"\nS[\"EGREP\"]=\"/usr/bin/grep -E\"\nS[\"GREP\"]=\"/usr/bin/grep\"\nS[\"RELOCATABLE\"]=\"no\"\nS[\"host_os\"]=\"darwin16.6.0\"\nS[\"host_vendor\"]=\"apple\"\nS[\"host_cpu\"]=\"x86_64\"\nS[\"host\"]=\"x86_64-apple-darwin16.6.0\"\nS[\"build_os\"]=\"darwin16.6.0\"\nS[\"build_vendor\"]=\"apple\"\nS[\"build_cpu\"]=\"x86_64\"\nS[\"build\"]=\"x86_64-apple-darwin16.6.0\"\nS[\"INSTALL_DATA\"]=\"${INSTALL} -m 644\"\nS[\"INSTALL_SCRIPT\"]=\"${INSTALL}\"\nS[\"INSTALL_PROGRAM\"]=\"${INSTALL}\"\nS[\"CPP\"]=\"gcc -E\"\nS[\"OBJEXT\"]=\"o\"\nS[\"EXEEXT\"]=\"\"\nS[\"ac_ct_CC\"]=\"gcc\"\nS[\"CPPFLAGS\"]=\"\"\nS[\"LDFLAGS\"]=\"\"\nS[\"CFLAGS\"]=\"-g -O2\"\nS[\"CC\"]=\"gcc\"\nS[\"SET_MAKE\"]=\"\"\nS[\"target_alias\"]=\"\"\nS[\"host_alias\"]=\"\"\nS[\"build_alias\"]=\"\"\nS[\"LIBS\"]=\"\"\nS[\"ECHO_T\"]=\"\"\nS[\"ECHO_N\"]=\"\"\nS[\"ECHO_C\"]=\"\\\\c\"\nS[\"DEFS\"]=\"-DHAVE_CONFIG_H\"\nS[\"mandir\"]=\"${datarootdir}/man\"\nS[\"localedir\"]=\"${datarootdir}/locale\"\nS[\"libdir\"]=\"${exec_prefix}/lib\"\nS[\"psdir\"]=\"${docdir}\"\nS[\"pdfdir\"]=\"${docdir}\"\nS[\"dvidir\"]=\"${docdir}\"\nS[\"htmldir\"]=\"${docdir}\"\nS[\"infodir\"]=\"${datarootdir}/info\"\nS[\"docdir\"]=\"${datarootdir}/doc/${PACKAGE_TARNAME}\"\nS[\"oldincludedir\"]=\"/usr/include\"\nS[\"includedir\"]=\"${prefix}/include\"\nS[\"localstatedir\"]=\"${prefix}/var\"\nS[\"sharedstatedir\"]=\"${prefix}/com\"\nS[\"sysconfdir\"]=\"${prefix}/etc\"\nS[\"datadir\"]=\"${datarootdir}\"\nS[\"datarootdir\"]=\"${prefix}/share\"\nS[\"libexecdir\"]=\"${exec_prefix}/libexec\"\nS[\"sbindir\"]=\"${exec_prefix}/sbin\"\nS[\"bindir\"]=\"${exec_prefix}/bin\"\nS[\"program_transform_name\"]=\"s,x,x,\"\nS[\"prefix\"]=\"/usr/local\"\nS[\"exec_prefix\"]=\"${prefix}\"\nS[\"PACKAGE_URL\"]=\"\"\nS[\"PACKAGE_BUGREPORT\"]=\"\"\nS[\"PACKAGE_STRING\"]=\"libcharset 1.4\"\nS[\"PACKAGE_VERSION\"]=\"1.4\"\nS[\"PACKAGE_TARNAME\"]=\"libcharset\"\nS[\"PACKAGE_NAME\"]=\"libcharset\"\nS[\"PATH_SEPARATOR\"]=\":\"\nS[\"SHELL\"]=\"/bin/sh\"\n_ACAWK\ncat >>\"$ac_tmp/subs1.awk\" <<_ACAWK &&\n  for (key in S) S_is_set[key] = 1\n  FS = \"\u0007\"\n\n}\n{\n  line = $ 0\n  nfields = split(line, field, \"@\")\n  substed = 0\n  len = length(field[1])\n  for (i = 2; i < nfields; i++) {\n    key = field[i]\n    keylen = length(key)\n    if (S_is_set[key]) {\n      value = S[key]\n      line = substr(line, 1, len) \"\" value \"\" substr(line, len + keylen + 3)\n      len += length(value) + length(field[++i])\n      substed = 1\n    } else\n      len += 1 + keylen\n  }\n\n  print line\n}\n\n_ACAWK\nif sed \"s/$ac_cr//\" < /dev/null > /dev/null 2>&1; then\n  sed \"s/$ac_cr\\$//; s/$ac_cr/$ac_cs_awk_cr/g\"\nelse\n  cat\nfi < \"$ac_tmp/subs1.awk\" > \"$ac_tmp/subs.awk\" \\\n  || as_fn_error $? \"could not setup config files machinery\" \"$LINENO\" 5\nfi # test -n \"$CONFIG_FILES\"\n\n# Set up the scripts for CONFIG_HEADERS section.\n# No need to generate them if there are no CONFIG_HEADERS.\n# This happens for instance with `./config.status Makefile'.\nif test -n \"$CONFIG_HEADERS\"; then\ncat >\"$ac_tmp/defines.awk\" <<\\_ACAWK ||\nBEGIN {\nD[\"PACKAGE_NAME\"]=\" \\\"libcharset\\\"\"\nD[\"PACKAGE_TARNAME\"]=\" \\\"libcharset\\\"\"\nD[\"PACKAGE_VERSION\"]=\" \\\"1.4\\\"\"\nD[\"PACKAGE_STRING\"]=\" \\\"libcharset 1.4\\\"\"\nD[\"PACKAGE_BUGREPORT\"]=\" \\\"\\\"\"\nD[\"PACKAGE_URL\"]=\" \\\"\\\"\"\nD[\"INSTALLPREFIX\"]=\" \\\"/usr/local\\\"\"\nD[\"STDC_HEADERS\"]=\" 1\"\nD[\"HAVE_SYS_TYPES_H\"]=\" 1\"\nD[\"HAVE_SYS_STAT_H\"]=\" 1\"\nD[\"HAVE_STDLIB_H\"]=\" 1\"\nD[\"HAVE_STRING_H\"]=\" 1\"\nD[\"HAVE_MEMORY_H\"]=\" 1\"\nD[\"HAVE_STRINGS_H\"]=\" 1\"\nD[\"HAVE_INTTYPES_H\"]=\" 1\"\nD[\"HAVE_STDINT_H\"]=\" 1\"\nD[\"HAVE_UNISTD_H\"]=\" 1\"\nD[\"__EXTENSIONS__\"]=\" 1\"\nD[\"_ALL_SOURCE\"]=\" 1\"\nD[\"_GNU_SOURCE\"]=\" 1\"\nD[\"_POSIX_PTHREAD_SEMANTICS\"]=\" 1\"\nD[\"_TANDEM_SOURCE\"]=\" 1\"\nD[\"HAVE_DLFCN_H\"]=\" 1\"\nD[\"LT_OBJDIR\"]=\" \\\".libs/\\\"\"\nD[\"HAVE_VISIBILITY\"]=\" 1\"\nD[\"HAVE_LANGINFO_CODESET\"]=\" 1\"\nD[\"HAVE_UNISTD_H\"]=\" 1\"\nD[\"HAVE_SYMLINK\"]=\" 1\"\nD[\"HAVE_WORKING_O_NOATIME\"]=\" 0\"\nD[\"HAVE_WORKING_O_NOFOLLOW\"]=\" 1\"\nD[\"HAVE_SETLOCALE\"]=\" 1\"\n  for (key in D) D_is_set[key] = 1\n  FS = \"\u0007\"\n}\n/^[\\t ]*#[\\t ]*(define|undef)[\\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\\t (]|$)/ {\n  line = $ 0\n  split(line, arg, \" \")\n  if (arg[1] == \"#\") {\n    defundef = arg[2]\n    mac1 = arg[3]\n  } else {\n    defundef = substr(arg[1], 2)\n    mac1 = arg[2]\n  }\n  split(mac1, mac2, \"(\") #)\n  macro = mac2[1]\n  prefix = substr(line, 1, index(line, defundef) - 1)\n  if (D_is_set[macro]) {\n    # Preserve the white space surrounding the \"#\".\n    print prefix \"define\", macro P[macro] D[macro]\n    next\n  } else {\n    # Replace #undef with comments.  This is necessary, for example,\n    # in the case of _POSIX_SOURCE, which is predefined and required\n    # on some systems where configure will not decide to define it.\n    if (defundef == \"undef\") {\n      print \"/*\", prefix defundef, macro, \"*/\"\n      next\n    }\n  }\n}\n{ print }\n_ACAWK\n  as_fn_error $? \"could not setup config headers machinery\" \"$LINENO\" 5\nfi # test -n \"$CONFIG_HEADERS\"\n\n\neval set X \"  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS\"\nshift\nfor ac_tag\ndo\n  case $ac_tag in\n  :[FHLC]) ac_mode=$ac_tag; continue;;\n  esac\n  case $ac_mode$ac_tag in\n  :[FHL]*:*);;\n  :L* | :C*:*) as_fn_error $? \"invalid tag \\`$ac_tag'\" \"$LINENO\" 5;;\n  :[FH]-) ac_tag=-:-;;\n  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;\n  esac\n  ac_save_IFS=$IFS\n  IFS=:\n  set x $ac_tag\n  IFS=$ac_save_IFS\n  shift\n  ac_file=$1\n  shift\n\n  case $ac_mode in\n  :L) ac_source=$1;;\n  :[FH])\n    ac_file_inputs=\n    for ac_f\n    do\n      case $ac_f in\n      -) ac_f=\"$ac_tmp/stdin\";;\n      *) # Look for the file first in the build tree, then in the source tree\n\t # (if the path is not absolute).  The absolute path cannot be DOS-style,\n\t # because $ac_f cannot contain `:'.\n\t test -f \"$ac_f\" ||\n\t   case $ac_f in\n\t   [\\\\/$]*) false;;\n\t   *) test -f \"$srcdir/$ac_f\" && ac_f=\"$srcdir/$ac_f\";;\n\t   esac ||\n\t   as_fn_error 1 \"cannot find input file: \\`$ac_f'\" \"$LINENO\" 5;;\n      esac\n      case $ac_f in *\\'*) ac_f=`$as_echo \"$ac_f\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; esac\n      as_fn_append ac_file_inputs \" '$ac_f'\"\n    done\n\n    # Let's still pretend it is `configure' which instantiates (i.e., don't\n    # use $as_me), people would be surprised to read:\n    #    /* config.h.  Generated by config.status.  */\n    configure_input='Generated from '`\n\t  $as_echo \"$*\" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'\n\t`' by configure.'\n    if test x\"$ac_file\" != x-; then\n      configure_input=\"$ac_file.  $configure_input\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: creating $ac_file\" >&5\n$as_echo \"$as_me: creating $ac_file\" >&6;}\n    fi\n    # Neutralize special characters interpreted by sed in replacement strings.\n    case $configure_input in #(\n    *\\&* | *\\|* | *\\\\* )\n       ac_sed_conf_input=`$as_echo \"$configure_input\" |\n       sed 's/[\\\\\\\\&|]/\\\\\\\\&/g'`;; #(\n    *) ac_sed_conf_input=$configure_input;;\n    esac\n\n    case $ac_tag in\n    *:-:* | *:-) cat >\"$ac_tmp/stdin\" \\\n      || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5 ;;\n    esac\n    ;;\n  esac\n\n  ac_dir=`$as_dirname -- \"$ac_file\" ||\n$as_expr X\"$ac_file\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)$' \\| \\\n\t X\"$ac_file\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$ac_file\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  as_dir=\"$ac_dir\"; as_fn_mkdir_p\n  ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`$as_echo \"$ac_dir\" | sed 's|^\\.[\\\\/]||'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`$as_echo \"$ac_dir_suffix\" | sed 's|/[^\\\\/]*|/..|g;s|/||'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n\n  case $ac_mode in\n  :F)\n  #\n  # CONFIG_FILE\n  #\n\n  case $INSTALL in\n  [\\\\/$]* | ?:[\\\\/]* ) ac_INSTALL=$INSTALL ;;\n  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;\n  esac\n# If the template does not know about datarootdir, expand it.\n# FIXME: This hack should be removed a few years after 2.60.\nac_datarootdir_hack=; ac_datarootdir_seen=\nac_sed_dataroot='\n/datarootdir/ {\n  p\n  q\n}\n/@datadir@/p\n/@docdir@/p\n/@infodir@/p\n/@localedir@/p\n/@mandir@/p'\ncase `eval \"sed -n \\\"\\$ac_sed_dataroot\\\" $ac_file_inputs\"` in\n*datarootdir*) ac_datarootdir_seen=yes;;\n*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&5\n$as_echo \"$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&2;}\n  ac_datarootdir_hack='\n  s&@datadir@&${datarootdir}&g\n  s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g\n  s&@infodir@&${datarootdir}/info&g\n  s&@localedir@&${datarootdir}/locale&g\n  s&@mandir@&${datarootdir}/man&g\n  s&\\${datarootdir}&${prefix}/share&g' ;;\nesac\nac_sed_extra=\"/^[\t ]*VPATH[\t ]*=[\t ]*/{\nh\ns///\ns/^/:/\ns/[\t ]*$/:/\ns/:\\$(srcdir):/:/g\ns/:\\${srcdir}:/:/g\ns/:@srcdir@:/:/g\ns/^:*//\ns/:*$//\nx\ns/\\(=[\t ]*\\).*/\\1/\nG\ns/\\n//\ns/^[^=]*=[\t ]*$//\n}\n\n:t\n/@[a-zA-Z_][a-zA-Z_0-9]*@/!b\ns|@configure_input@|$ac_sed_conf_input|;t t\ns&@top_builddir@&$ac_top_builddir_sub&;t t\ns&@top_build_prefix@&$ac_top_build_prefix&;t t\ns&@srcdir@&$ac_srcdir&;t t\ns&@abs_srcdir@&$ac_abs_srcdir&;t t\ns&@top_srcdir@&$ac_top_srcdir&;t t\ns&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t\ns&@builddir@&$ac_builddir&;t t\ns&@abs_builddir@&$ac_abs_builddir&;t t\ns&@abs_top_builddir@&$ac_abs_top_builddir&;t t\ns&@INSTALL@&$ac_INSTALL&;t t\n$ac_datarootdir_hack\n\"\neval sed \\\"\\$ac_sed_extra\\\" \"$ac_file_inputs\" | $AWK -f \"$ac_tmp/subs.awk\" \\\n  >$ac_tmp/out || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n\ntest -z \"$ac_datarootdir_hack$ac_datarootdir_seen\" &&\n  { ac_out=`sed -n '/\\${datarootdir}/p' \"$ac_tmp/out\"`; test -n \"$ac_out\"; } &&\n  { ac_out=`sed -n '/^[\t ]*datarootdir[\t ]*:*=/p' \\\n      \"$ac_tmp/out\"`; test -z \"$ac_out\"; } &&\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&5\n$as_echo \"$as_me: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&2;}\n\n  rm -f \"$ac_tmp/stdin\"\n  case $ac_file in\n  -) cat \"$ac_tmp/out\" && rm -f \"$ac_tmp/out\";;\n  *) rm -f \"$ac_file\" && mv \"$ac_tmp/out\" \"$ac_file\";;\n  esac \\\n  || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n ;;\n  :H)\n  #\n  # CONFIG_HEADER\n  #\n  if test x\"$ac_file\" != x-; then\n    {\n      $as_echo \"/* $configure_input  */\" \\\n      && eval '$AWK -f \"$ac_tmp/defines.awk\"' \"$ac_file_inputs\"\n    } >\"$ac_tmp/config.h\" \\\n      || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n    if diff \"$ac_file\" \"$ac_tmp/config.h\" >/dev/null 2>&1; then\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: $ac_file is unchanged\" >&5\n$as_echo \"$as_me: $ac_file is unchanged\" >&6;}\n    else\n      rm -f \"$ac_file\"\n      mv \"$ac_tmp/config.h\" \"$ac_file\" \\\n\t|| as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n    fi\n  else\n    $as_echo \"/* $configure_input  */\" \\\n      && eval '$AWK -f \"$ac_tmp/defines.awk\"' \"$ac_file_inputs\" \\\n      || as_fn_error $? \"could not create -\" \"$LINENO\" 5\n  fi\n ;;\n\n  :C)  { $as_echo \"$as_me:${as_lineno-$LINENO}: executing $ac_file commands\" >&5\n$as_echo \"$as_me: executing $ac_file commands\" >&6;}\n ;;\n  esac\n\n\n  case $ac_file$ac_mode in\n    \"libtool\":C)\n\n    # See if we are running on zsh, and set the options that allow our\n    # commands through without removal of \\ escapes.\n    if test -n \"${ZSH_VERSION+set}\"; then\n      setopt NO_GLOB_SUBST\n    fi\n\n    cfgfile=${ofile}T\n    trap \"$RM \\\"$cfgfile\\\"; exit 1\" 1 2 15\n    $RM \"$cfgfile\"\n\n    cat <<_LT_EOF >> \"$cfgfile\"\n#! $SHELL\n# Generated automatically by $as_me ($PACKAGE) $VERSION\n# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit, 1996\n\n# Copyright (C) 2014 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program or library that is built\n# using GNU Libtool, you may include this file under the  same\n# distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\n# The names of the tagged configurations supported by this script.\navailable_tags=''\n\n# Configured defaults for sys_lib_dlsearch_path munging.\n: \\${LT_SYS_LIBRARY_PATH=\"$configure_time_lt_sys_library_path\"}\n\n# ### BEGIN LIBTOOL CONFIG\n\n# Which release of libtool.m4 was used?\nmacro_version=$macro_version\nmacro_revision=$macro_revision\n\n# Assembler program.\nAS=$lt_AS\n\n# DLL creation program.\nDLLTOOL=$lt_DLLTOOL\n\n# Object dumper program.\nOBJDUMP=$lt_OBJDUMP\n\n# Whether or not to build shared libraries.\nbuild_libtool_libs=$enable_shared\n\n# Whether or not to build static libraries.\nbuild_old_libs=$enable_static\n\n# What type of objects to build.\npic_mode=$pic_mode\n\n# Whether or not to optimize for fast installation.\nfast_install=$enable_fast_install\n\n# Shared archive member basename,for filename based shared library versioning on AIX.\nshared_archive_member_spec=$shared_archive_member_spec\n\n# Shell to use when invoking shell scripts.\nSHELL=$lt_SHELL\n\n# An echo program that protects backslashes.\nECHO=$lt_ECHO\n\n# The PATH separator for the build system.\nPATH_SEPARATOR=$lt_PATH_SEPARATOR\n\n# The host system.\nhost_alias=$host_alias\nhost=$host\nhost_os=$host_os\n\n# The build system.\nbuild_alias=$build_alias\nbuild=$build\nbuild_os=$build_os\n\n# A sed program that does not truncate output.\nSED=$lt_SED\n\n# Sed that helps us avoid accidentally triggering echo(1) options like -n.\nXsed=\"\\$SED -e 1s/^X//\"\n\n# A grep program that handles long lines.\nGREP=$lt_GREP\n\n# An ERE matcher.\nEGREP=$lt_EGREP\n\n# A literal string matcher.\nFGREP=$lt_FGREP\n\n# A BSD- or MS-compatible name lister.\nNM=$lt_NM\n\n# Whether we need soft or hard links.\nLN_S=$lt_LN_S\n\n# What is the maximum length of a command?\nmax_cmd_len=$max_cmd_len\n\n# Object file suffix (normally \"o\").\nobjext=$ac_objext\n\n# Executable file suffix (normally \"\").\nexeext=$exeext\n\n# whether the shell understands \"unset\".\nlt_unset=$lt_unset\n\n# turn spaces into newlines.\nSP2NL=$lt_lt_SP2NL\n\n# turn newlines into spaces.\nNL2SP=$lt_lt_NL2SP\n\n# convert \\$build file names to \\$host format.\nto_host_file_cmd=$lt_cv_to_host_file_cmd\n\n# convert \\$build files to toolchain format.\nto_tool_file_cmd=$lt_cv_to_tool_file_cmd\n\n# Method to check whether dependent libraries are shared objects.\ndeplibs_check_method=$lt_deplibs_check_method\n\n# Command to use when deplibs_check_method = \"file_magic\".\nfile_magic_cmd=$lt_file_magic_cmd\n\n# How to find potential files when deplibs_check_method = \"file_magic\".\nfile_magic_glob=$lt_file_magic_glob\n\n# Find potential files using nocaseglob when deplibs_check_method = \"file_magic\".\nwant_nocaseglob=$lt_want_nocaseglob\n\n# Command to associate shared and link libraries.\nsharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd\n\n# The archiver.\nAR=$lt_AR\n\n# Flags to create an archive.\nAR_FLAGS=$lt_AR_FLAGS\n\n# How to feed a file listing to the archiver.\narchiver_list_spec=$lt_archiver_list_spec\n\n# A symbol stripping program.\nSTRIP=$lt_STRIP\n\n# Commands used to install an old-style archive.\nRANLIB=$lt_RANLIB\nold_postinstall_cmds=$lt_old_postinstall_cmds\nold_postuninstall_cmds=$lt_old_postuninstall_cmds\n\n# Whether to use a lock for old archive extraction.\nlock_old_archive_extraction=$lock_old_archive_extraction\n\n# A C compiler.\nLTCC=$lt_CC\n\n# LTCC compiler flags.\nLTCFLAGS=$lt_CFLAGS\n\n# Take the output of nm and produce a listing of raw symbols and C names.\nglobal_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe\n\n# Transform the output of nm in a proper C declaration.\nglobal_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl\n\n# Transform the output of nm into a list of symbols to manually relocate.\nglobal_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import\n\n# Transform the output of nm in a C name address pair.\nglobal_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address\n\n# Transform the output of nm in a C name address pair when lib prefix is needed.\nglobal_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix\n\n# The name lister interface.\nnm_interface=$lt_lt_cv_nm_interface\n\n# Specify filename containing input files for \\$NM.\nnm_file_list_spec=$lt_nm_file_list_spec\n\n# The root where to search for dependent libraries,and where our libraries should be installed.\nlt_sysroot=$lt_sysroot\n\n# Command to truncate a binary pipe.\nlt_truncate_bin=$lt_lt_cv_truncate_bin\n\n# The name of the directory that contains temporary libtool files.\nobjdir=$objdir\n\n# Used to examine libraries when file_magic_cmd begins with \"file\".\nMAGIC_CMD=$MAGIC_CMD\n\n# Must we lock files when doing compilation?\nneed_locks=$lt_need_locks\n\n# Manifest tool.\nMANIFEST_TOOL=$lt_MANIFEST_TOOL\n\n# Tool to manipulate archived DWARF debug symbol files on Mac OS X.\nDSYMUTIL=$lt_DSYMUTIL\n\n# Tool to change global to local symbols on Mac OS X.\nNMEDIT=$lt_NMEDIT\n\n# Tool to manipulate fat objects and archives on Mac OS X.\nLIPO=$lt_LIPO\n\n# ldd/readelf like tool for Mach-O binaries on Mac OS X.\nOTOOL=$lt_OTOOL\n\n# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.\nOTOOL64=$lt_OTOOL64\n\n# Old archive suffix (normally \"a\").\nlibext=$libext\n\n# Shared library suffix (normally \".so\").\nshrext_cmds=$lt_shrext_cmds\n\n# The commands to extract the exported symbol list from a shared archive.\nextract_expsyms_cmds=$lt_extract_expsyms_cmds\n\n# Variables whose values should be saved in libtool wrapper scripts and\n# restored at link time.\nvariables_saved_for_relink=$lt_variables_saved_for_relink\n\n# Do we need the \"lib\" prefix for modules?\nneed_lib_prefix=$need_lib_prefix\n\n# Do we need a version for libraries?\nneed_version=$need_version\n\n# Library versioning type.\nversion_type=$version_type\n\n# Shared library runtime path variable.\nrunpath_var=$runpath_var\n\n# Shared library path variable.\nshlibpath_var=$shlibpath_var\n\n# Is shlibpath searched before the hard-coded library search path?\nshlibpath_overrides_runpath=$shlibpath_overrides_runpath\n\n# Format of library name prefix.\nlibname_spec=$lt_libname_spec\n\n# List of archive names.  First name is the real one, the rest are links.\n# The last name is the one that the linker finds with -lNAME\nlibrary_names_spec=$lt_library_names_spec\n\n# The coded name of the library, if different from the real name.\nsoname_spec=$lt_soname_spec\n\n# Permission mode override for installation of shared libraries.\ninstall_override_mode=$lt_install_override_mode\n\n# Command to use after installation of a shared archive.\npostinstall_cmds=$lt_postinstall_cmds\n\n# Command to use after uninstallation of a shared archive.\npostuninstall_cmds=$lt_postuninstall_cmds\n\n# Commands used to finish a libtool library installation in a directory.\nfinish_cmds=$lt_finish_cmds\n\n# As \"finish_cmds\", except a single script fragment to be evaled but\n# not shown.\nfinish_eval=$lt_finish_eval\n\n# Whether we should hardcode library paths into libraries.\nhardcode_into_libs=$hardcode_into_libs\n\n# Compile-time system search path for libraries.\nsys_lib_search_path_spec=$lt_sys_lib_search_path_spec\n\n# Detected run-time system search path for libraries.\nsys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path\n\n# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.\nconfigure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path\n\n# Whether dlopen is supported.\ndlopen_support=$enable_dlopen\n\n# Whether dlopen of programs is supported.\ndlopen_self=$enable_dlopen_self\n\n# Whether dlopen of statically linked programs is supported.\ndlopen_self_static=$enable_dlopen_self_static\n\n# Commands to strip libraries.\nold_striplib=$lt_old_striplib\nstriplib=$lt_striplib\n\n\n# The linker used to build libraries.\nLD=$lt_LD\n\n# How to create reloadable object files.\nreload_flag=$lt_reload_flag\nreload_cmds=$lt_reload_cmds\n\n# Commands used to build an old-style archive.\nold_archive_cmds=$lt_old_archive_cmds\n\n# A language specific compiler.\nCC=$lt_compiler\n\n# Is the compiler the GNU compiler?\nwith_gcc=$GCC\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag\n\n# Additional compiler flags for building library objects.\npic_flag=$lt_lt_prog_compiler_pic\n\n# How to pass a linker flag through the compiler.\nwl=$lt_lt_prog_compiler_wl\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=$lt_lt_prog_compiler_static\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=$lt_lt_cv_prog_compiler_c_o\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=$archive_cmds_need_lc\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=$lt_export_dynamic_flag_spec\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=$lt_whole_archive_flag_spec\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=$lt_compiler_needs_object\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=$lt_old_archive_from_new_cmds\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds\n\n# Commands used to build a shared archive.\narchive_cmds=$lt_archive_cmds\narchive_expsym_cmds=$lt_archive_expsym_cmds\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=$lt_module_cmds\nmodule_expsym_cmds=$lt_module_expsym_cmds\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=$lt_with_gnu_ld\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=$lt_allow_undefined_flag\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=$lt_no_undefined_flag\n\n# Flag to hardcode \\$libdir into a binary during linking.\n# This must work even if \\$libdir does not exist\nhardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=$lt_hardcode_libdir_separator\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=$hardcode_direct\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting \\$shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=$hardcode_direct_absolute\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=$hardcode_minus_L\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=$hardcode_shlibpath_var\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=$hardcode_automatic\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=$inherit_rpath\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=$link_all_deplibs\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=$always_export_symbols\n\n# The commands to list exported symbols.\nexport_symbols_cmds=$lt_export_symbols_cmds\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=$lt_exclude_expsyms\n\n# Symbols that must always be exported.\ninclude_expsyms=$lt_include_expsyms\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=$lt_prelink_cmds\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=$lt_postlink_cmds\n\n# Specify filename containing input files.\nfile_list_spec=$lt_file_list_spec\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=$hardcode_action\n\n# ### END LIBTOOL CONFIG\n\n_LT_EOF\n\n    cat <<'_LT_EOF' >> \"$cfgfile\"\n\n# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n\n# ### END FUNCTIONS SHARED WITH CONFIGURE\n\n_LT_EOF\n\n  case $host_os in\n  aix3*)\n    cat <<\\_LT_EOF >> \"$cfgfile\"\n# AIX sometimes has problems with the GCC collect2 program.  For some\n# reason, if we set the COLLECT_NAMES environment variable, the problems\n# vanish in a puff of smoke.\nif test set != \"${COLLECT_NAMES+set}\"; then\n  COLLECT_NAMES=\n  export COLLECT_NAMES\nfi\n_LT_EOF\n    ;;\n  esac\n\n\nltmain=$ac_aux_dir/ltmain.sh\n\n\n  # We use sed instead of cat because bash on DJGPP gets confused if\n  # if finds mixed CR/LF and LF-only lines.  Since sed operates in\n  # text mode, it properly converts lines to CR/LF.  This bash problem\n  # is reportedly fixed, but why not run on old versions too?\n  sed '$q' \"$ltmain\" >> \"$cfgfile\" \\\n     || (rm -f \"$cfgfile\"; exit 1)\n\n   mv -f \"$cfgfile\" \"$ofile\" ||\n    (rm -f \"$ofile\" && cp \"$cfgfile\" \"$ofile\" && rm -f \"$cfgfile\")\n  chmod +x \"$ofile\"\n\n ;;\n\n  esac\ndone # for ac_tag\n\n\nas_fn_exit 0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/configure",
    "content": "#! /bin/sh\n# Guess values for system-dependent variables and create Makefiles.\n# Generated by GNU Autoconf 2.69 for libcharset 1.4.\n#\n#\n# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.\n#\n#\n# This configure script is free software; the Free Software Foundation\n# gives unlimited permission to copy, distribute and modify it.\n## -------------------- ##\n## M4sh Initialization. ##\n## -------------------- ##\n\n# Be more Bourne compatible\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\n\nas_nl='\n'\nexport as_nl\n# Printing a long string crashes Solaris 7 /usr/bin/printf.\nas_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo\n# Prefer a ksh shell builtin over an external printf program on Solaris,\n# but without wasting forks for bash or zsh.\nif test -z \"$BASH_VERSION$ZSH_VERSION\" \\\n    && (test \"X`print -r -- $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='print -r --'\n  as_echo_n='print -rn --'\nelif (test \"X`printf %s $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='printf %s\\n'\n  as_echo_n='printf %s'\nelse\n  if test \"X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`\" = \"X-n $as_echo\"; then\n    as_echo_body='eval /usr/ucb/echo -n \"$1$as_nl\"'\n    as_echo_n='/usr/ucb/echo -n'\n  else\n    as_echo_body='eval expr \"X$1\" : \"X\\\\(.*\\\\)\"'\n    as_echo_n_body='eval\n      arg=$1;\n      case $arg in #(\n      *\"$as_nl\"*)\n\texpr \"X$arg\" : \"X\\\\(.*\\\\)$as_nl\";\n\targ=`expr \"X$arg\" : \".*$as_nl\\\\(.*\\\\)\"`;;\n      esac;\n      expr \"X$arg\" : \"X\\\\(.*\\\\)\" | tr -d \"$as_nl\"\n    '\n    export as_echo_n_body\n    as_echo_n='sh -c $as_echo_n_body as_echo'\n  fi\n  export as_echo_body\n  as_echo='sh -c $as_echo_body as_echo'\nfi\n\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n# IFS\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent editors from complaining about space-tab.\n# (If _AS_PATH_WALK were called with IFS unset, it would disable word\n# splitting by setting IFS to empty value.)\nIFS=\" \"\"\t$as_nl\"\n\n# Find who we are.  Look in the path if we contain no directory separator.\nas_myself=\ncase $0 in #((\n  *[\\\\/]* ) as_myself=$0 ;;\n  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    test -r \"$as_dir/$0\" && as_myself=$as_dir/$0 && break\n  done\nIFS=$as_save_IFS\n\n     ;;\nesac\n# We did not find ourselves, most probably we were run as `sh COMMAND'\n# in which case we are not to be found in the path.\nif test \"x$as_myself\" = x; then\n  as_myself=$0\nfi\nif test ! -f \"$as_myself\"; then\n  $as_echo \"$as_myself: error: cannot find myself; rerun with an absolute file name\" >&2\n  exit 1\nfi\n\n# Unset variables that we do not need and which cause bugs (e.g. in\n# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the \"|| exit 1\"\n# suppresses any \"Segmentation fault\" message there.  '((' could\n# trigger a bug in pdksh 5.2.14.\nfor as_var in BASH_ENV ENV MAIL MAILPATH\ndo eval test x\\${$as_var+set} = xset \\\n  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :\ndone\nPS1='$ '\nPS2='> '\nPS4='+ '\n\n# NLS nuisances.\nLC_ALL=C\nexport LC_ALL\nLANGUAGE=C\nexport LANGUAGE\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n# Use a proper internal environment variable to ensure we don't fall\n  # into an infinite loop, continuously re-executing ourselves.\n  if test x\"${_as_can_reexec}\" != xno && test \"x$CONFIG_SHELL\" != x; then\n    _as_can_reexec=no; export _as_can_reexec;\n    # We cannot yet assume a decent shell, so we have to provide a\n# neutralization value for shells without unset; and this also\n# works around shells that cannot unset nonexistent variables.\n# Preserve -v and -x to the replacement shell.\nBASH_ENV=/dev/null\nENV=/dev/null\n(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV\ncase $- in # ((((\n  *v*x* | *x*v* ) as_opts=-vx ;;\n  *v* ) as_opts=-v ;;\n  *x* ) as_opts=-x ;;\n  * ) as_opts= ;;\nesac\nexec $CONFIG_SHELL $as_opts \"$as_myself\" ${1+\"$@\"}\n# Admittedly, this is quite paranoid, since all the known shells bail\n# out after a failed `exec'.\n$as_echo \"$0: could not re-execute with $CONFIG_SHELL\" >&2\nas_fn_exit 255\n  fi\n  # We don't want this to propagate to other subprocesses.\n          { _as_can_reexec=; unset _as_can_reexec;}\nif test \"x$CONFIG_SHELL\" = x; then\n  as_bourne_compatible=\"if test -n \\\"\\${ZSH_VERSION+set}\\\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on \\${1+\\\"\\$@\\\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '\\${1+\\\"\\$@\\\"}'='\\\"\\$@\\\"'\n  setopt NO_GLOB_SUBST\nelse\n  case \\`(set -o) 2>/dev/null\\` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\"\n  as_required=\"as_fn_return () { (exit \\$1); }\nas_fn_success () { as_fn_return 0; }\nas_fn_failure () { as_fn_return 1; }\nas_fn_ret_success () { return 0; }\nas_fn_ret_failure () { return 1; }\n\nexitcode=0\nas_fn_success || { exitcode=1; echo as_fn_success failed.; }\nas_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }\nas_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }\nas_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }\nif ( set x; as_fn_ret_success y && test x = \\\"\\$1\\\" ); then :\n\nelse\n  exitcode=1; echo positional parameters were not saved.\nfi\ntest x\\$exitcode = x0 || exit 1\ntest -x / || exit 1\"\n  as_suggested=\"  as_lineno_1=\";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested\" as_lineno_1a=\\$LINENO\n  as_lineno_2=\";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested\" as_lineno_2a=\\$LINENO\n  eval 'test \\\"x\\$as_lineno_1'\\$as_run'\\\" != \\\"x\\$as_lineno_2'\\$as_run'\\\" &&\n  test \\\"x\\`expr \\$as_lineno_1'\\$as_run' + 1\\`\\\" = \\\"x\\$as_lineno_2'\\$as_run'\\\"' || exit 1\ntest \\$(( 1 + 1 )) = 2 || exit 1\n\n  test -n \\\"\\${ZSH_VERSION+set}\\${BASH_VERSION+set}\\\" || (\n    ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\n    ECHO=\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\n    ECHO=\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\n    PATH=/empty FPATH=/empty; export PATH FPATH\n    test \\\"X\\`printf %s \\$ECHO\\`\\\" = \\\"X\\$ECHO\\\" \\\\\n      || test \\\"X\\`print -r -- \\$ECHO\\`\\\" = \\\"X\\$ECHO\\\" ) || exit 1\"\n  if (eval \"$as_required\") 2>/dev/null; then :\n  as_have_required=yes\nelse\n  as_have_required=no\nfi\n  if test x$as_have_required = xyes && (eval \"$as_suggested\") 2>/dev/null; then :\n\nelse\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nas_found=false\nfor as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  as_found=:\n  case $as_dir in #(\n\t /*)\n\t   for as_base in sh bash ksh sh5; do\n\t     # Try only shells that exist, to save several forks.\n\t     as_shell=$as_dir/$as_base\n\t     if { test -f \"$as_shell\" || test -f \"$as_shell.exe\"; } &&\n\t\t    { $as_echo \"$as_bourne_compatible\"\"$as_required\" | as_run=a \"$as_shell\"; } 2>/dev/null; then :\n  CONFIG_SHELL=$as_shell as_have_required=yes\n\t\t   if { $as_echo \"$as_bourne_compatible\"\"$as_suggested\" | as_run=a \"$as_shell\"; } 2>/dev/null; then :\n  break 2\nfi\nfi\n\t   done;;\n       esac\n  as_found=false\ndone\n$as_found || { if { test -f \"$SHELL\" || test -f \"$SHELL.exe\"; } &&\n\t      { $as_echo \"$as_bourne_compatible\"\"$as_required\" | as_run=a \"$SHELL\"; } 2>/dev/null; then :\n  CONFIG_SHELL=$SHELL as_have_required=yes\nfi; }\nIFS=$as_save_IFS\n\n\n      if test \"x$CONFIG_SHELL\" != x; then :\n  export CONFIG_SHELL\n             # We cannot yet assume a decent shell, so we have to provide a\n# neutralization value for shells without unset; and this also\n# works around shells that cannot unset nonexistent variables.\n# Preserve -v and -x to the replacement shell.\nBASH_ENV=/dev/null\nENV=/dev/null\n(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV\ncase $- in # ((((\n  *v*x* | *x*v* ) as_opts=-vx ;;\n  *v* ) as_opts=-v ;;\n  *x* ) as_opts=-x ;;\n  * ) as_opts= ;;\nesac\nexec $CONFIG_SHELL $as_opts \"$as_myself\" ${1+\"$@\"}\n# Admittedly, this is quite paranoid, since all the known shells bail\n# out after a failed `exec'.\n$as_echo \"$0: could not re-execute with $CONFIG_SHELL\" >&2\nexit 255\nfi\n\n    if test x$as_have_required = xno; then :\n  $as_echo \"$0: This script requires a shell more modern than all\"\n  $as_echo \"$0: the shells that I found on your system.\"\n  if test x${ZSH_VERSION+set} = xset ; then\n    $as_echo \"$0: In particular, zsh $ZSH_VERSION has bugs and should\"\n    $as_echo \"$0: be upgraded to zsh 4.3.4 or later.\"\n  else\n    $as_echo \"$0: Please tell bug-autoconf@gnu.org about your system,\n$0: including any error possibly output before this\n$0: message. Then install a modern shell, or manually run\n$0: the script under such a shell if you do have one.\"\n  fi\n  exit 1\nfi\nfi\nfi\nSHELL=${CONFIG_SHELL-/bin/sh}\nexport SHELL\n# Unset more variables known to interfere with behavior of common tools.\nCLICOLOR_FORCE= GREP_OPTIONS=\nunset CLICOLOR_FORCE GREP_OPTIONS\n\n## --------------------- ##\n## M4sh Shell Functions. ##\n## --------------------- ##\n# as_fn_unset VAR\n# ---------------\n# Portably unset VAR.\nas_fn_unset ()\n{\n  { eval $1=; unset $1;}\n}\nas_unset=as_fn_unset\n\n# as_fn_set_status STATUS\n# -----------------------\n# Set $? to STATUS, without forking.\nas_fn_set_status ()\n{\n  return $1\n} # as_fn_set_status\n\n# as_fn_exit STATUS\n# -----------------\n# Exit the shell with STATUS, even in a \"trap 0\" or \"set -e\" context.\nas_fn_exit ()\n{\n  set +e\n  as_fn_set_status $1\n  exit $1\n} # as_fn_exit\n\n# as_fn_mkdir_p\n# -------------\n# Create \"$as_dir\" as a directory, including parents if necessary.\nas_fn_mkdir_p ()\n{\n\n  case $as_dir in #(\n  -*) as_dir=./$as_dir;;\n  esac\n  test -d \"$as_dir\" || eval $as_mkdir_p || {\n    as_dirs=\n    while :; do\n      case $as_dir in #(\n      *\\'*) as_qdir=`$as_echo \"$as_dir\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; #'(\n      *) as_qdir=$as_dir;;\n      esac\n      as_dirs=\"'$as_qdir' $as_dirs\"\n      as_dir=`$as_dirname -- \"$as_dir\" ||\n$as_expr X\"$as_dir\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_dir\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_dir\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      test -d \"$as_dir\" && break\n    done\n    test -z \"$as_dirs\" || eval \"mkdir $as_dirs\"\n  } || test -d \"$as_dir\" || as_fn_error $? \"cannot create directory $as_dir\"\n\n\n} # as_fn_mkdir_p\n\n# as_fn_executable_p FILE\n# -----------------------\n# Test if FILE is an executable regular file.\nas_fn_executable_p ()\n{\n  test -f \"$1\" && test -x \"$1\"\n} # as_fn_executable_p\n# as_fn_append VAR VALUE\n# ----------------------\n# Append the text in VALUE to the end of the definition contained in VAR. Take\n# advantage of any shell optimizations that allow amortized linear growth over\n# repeated appends, instead of the typical quadratic growth present in naive\n# implementations.\nif (eval \"as_var=1; as_var+=2; test x\\$as_var = x12\") 2>/dev/null; then :\n  eval 'as_fn_append ()\n  {\n    eval $1+=\\$2\n  }'\nelse\n  as_fn_append ()\n  {\n    eval $1=\\$$1\\$2\n  }\nfi # as_fn_append\n\n# as_fn_arith ARG...\n# ------------------\n# Perform arithmetic evaluation on the ARGs, and store the result in the\n# global $as_val. Take advantage of shells that can avoid forks. The arguments\n# must be portable across $(()) and expr.\nif (eval \"test \\$(( 1 + 1 )) = 2\") 2>/dev/null; then :\n  eval 'as_fn_arith ()\n  {\n    as_val=$(( $* ))\n  }'\nelse\n  as_fn_arith ()\n  {\n    as_val=`expr \"$@\" || test $? -eq 1`\n  }\nfi # as_fn_arith\n\n\n# as_fn_error STATUS ERROR [LINENO LOG_FD]\n# ----------------------------------------\n# Output \"`basename $0`: error: ERROR\" to stderr. If LINENO and LOG_FD are\n# provided, also output the error to LOG_FD, referencing LINENO. Then exit the\n# script with STATUS, using 1 if that was 0.\nas_fn_error ()\n{\n  as_status=$1; test $as_status -eq 0 && as_status=1\n  if test \"$4\"; then\n    as_lineno=${as_lineno-\"$3\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n    $as_echo \"$as_me:${as_lineno-$LINENO}: error: $2\" >&$4\n  fi\n  $as_echo \"$as_me: error: $2\" >&2\n  as_fn_exit $as_status\n} # as_fn_error\n\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nif (basename -- /) >/dev/null 2>&1 && test \"X`basename -- / 2>&1`\" = \"X/\"; then\n  as_basename=basename\nelse\n  as_basename=false\nfi\n\nif (as_dir=`dirname -- /` && test \"X$as_dir\" = X/) >/dev/null 2>&1; then\n  as_dirname=dirname\nelse\n  as_dirname=false\nfi\n\nas_me=`$as_basename -- \"$0\" ||\n$as_expr X/\"$0\" : '.*/\\([^/][^/]*\\)/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X/\"$0\" |\n    sed '/^.*\\/\\([^/][^/]*\\)\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n\n# Avoid depending upon Character Ranges.\nas_cr_letters='abcdefghijklmnopqrstuvwxyz'\nas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nas_cr_Letters=$as_cr_letters$as_cr_LETTERS\nas_cr_digits='0123456789'\nas_cr_alnum=$as_cr_Letters$as_cr_digits\n\n\n  as_lineno_1=$LINENO as_lineno_1a=$LINENO\n  as_lineno_2=$LINENO as_lineno_2a=$LINENO\n  eval 'test \"x$as_lineno_1'$as_run'\" != \"x$as_lineno_2'$as_run'\" &&\n  test \"x`expr $as_lineno_1'$as_run' + 1`\" = \"x$as_lineno_2'$as_run'\"' || {\n  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)\n  sed -n '\n    p\n    /[$]LINENO/=\n  ' <$as_myself |\n    sed '\n      s/[$]LINENO.*/&-/\n      t lineno\n      b\n      :lineno\n      N\n      :loop\n      s/[$]LINENO\\([^'$as_cr_alnum'_].*\\n\\)\\(.*\\)/\\2\\1\\2/\n      t loop\n      s/-\\n.*//\n    ' >$as_me.lineno &&\n  chmod +x \"$as_me.lineno\" ||\n    { $as_echo \"$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell\" >&2; as_fn_exit 1; }\n\n  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have\n  # already done that, so ensure we don't try to do so again and fall\n  # in an infinite loop.  This has already happened in practice.\n  _as_can_reexec=no; export _as_can_reexec\n  # Don't try to exec as it changes $[0], causing all sort of problems\n  # (the dirname of $[0] is not the place where we might find the\n  # original and so on.  Autoconf is especially sensitive to this).\n  . \"./$as_me.lineno\"\n  # Exit status is that of the last command.\n  exit\n}\n\nECHO_C= ECHO_N= ECHO_T=\ncase `echo -n x` in #(((((\n-n*)\n  case `echo 'xy\\c'` in\n  *c*) ECHO_T='\t';;\t# ECHO_T is single tab character.\n  xy)  ECHO_C='\\c';;\n  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null\n       ECHO_T='\t';;\n  esac;;\n*)\n  ECHO_N='-n';;\nesac\n\nrm -f conf$$ conf$$.exe conf$$.file\nif test -d conf$$.dir; then\n  rm -f conf$$.dir/conf$$.file\nelse\n  rm -f conf$$.dir\n  mkdir conf$$.dir 2>/dev/null\nfi\nif (echo >conf$$.file) 2>/dev/null; then\n  if ln -s conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s='ln -s'\n    # ... but there are two gotchas:\n    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.\n    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.\n    # In both cases, we have to default to `cp -pR'.\n    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||\n      as_ln_s='cp -pR'\n  elif ln conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s=ln\n  else\n    as_ln_s='cp -pR'\n  fi\nelse\n  as_ln_s='cp -pR'\nfi\nrm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file\nrmdir conf$$.dir 2>/dev/null\n\nif mkdir -p . 2>/dev/null; then\n  as_mkdir_p='mkdir -p \"$as_dir\"'\nelse\n  test -d ./-p && rmdir ./-p\n  as_mkdir_p=false\nfi\n\nas_test_x='test -x'\nas_executable_p=as_fn_executable_p\n\n# Sed expression to map a string onto a valid CPP name.\nas_tr_cpp=\"eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'\"\n\n# Sed expression to map a string onto a valid variable name.\nas_tr_sh=\"eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'\"\n\nSHELL=${CONFIG_SHELL-/bin/sh}\n\n\ntest -n \"$DJDIR\" || exec 7<&0 </dev/null\nexec 6>&1\n\n# Name of the host.\n# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,\n# so uname gets run too.\nac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`\n\n#\n# Initializations.\n#\nac_default_prefix=/usr/local\nac_clean_files=\nac_config_libobj_dir=.\nLIBOBJS=\ncross_compiling=no\nsubdirs=\nMFLAGS=\nMAKEFLAGS=\n\n# Identity of this package.\nPACKAGE_NAME='libcharset'\nPACKAGE_TARNAME='libcharset'\nPACKAGE_VERSION='1.4'\nPACKAGE_STRING='libcharset 1.4'\nPACKAGE_BUGREPORT=''\nPACKAGE_URL=''\n\nac_unique_file=\"lib/localcharset.c\"\n# Factoring default headers for most tests.\nac_includes_default=\"\\\n#include <stdio.h>\n#ifdef HAVE_SYS_TYPES_H\n# include <sys/types.h>\n#endif\n#ifdef HAVE_SYS_STAT_H\n# include <sys/stat.h>\n#endif\n#ifdef STDC_HEADERS\n# include <stdlib.h>\n# include <stddef.h>\n#else\n# ifdef HAVE_STDLIB_H\n#  include <stdlib.h>\n# endif\n#endif\n#ifdef HAVE_STRING_H\n# if !defined STDC_HEADERS && defined HAVE_MEMORY_H\n#  include <memory.h>\n# endif\n# include <string.h>\n#endif\n#ifdef HAVE_STRINGS_H\n# include <strings.h>\n#endif\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#ifdef HAVE_STDINT_H\n# include <stdint.h>\n#endif\n#ifdef HAVE_UNISTD_H\n# include <unistd.h>\n#endif\"\n\nac_header_list=\nac_func_list=\nac_subst_vars='LTLIBOBJS\nLIBOBJS\nGLIBC21\nHAVE_VISIBILITY\nCFLAG_VISIBILITY\nLT_SYS_LIBRARY_PATH\nOTOOL64\nOTOOL\nLIPO\nNMEDIT\nDSYMUTIL\nMANIFEST_TOOL\nAWK\nRANLIB\nSTRIP\nac_ct_AR\nAR\nLN_S\nNM\nac_ct_DUMPBIN\nDUMPBIN\nLD\nFGREP\nSED\nLIBTOOL\nOBJDUMP\nDLLTOOL\nAS\nEGREP\nGREP\nRELOCATABLE\nhost_os\nhost_vendor\nhost_cpu\nhost\nbuild_os\nbuild_vendor\nbuild_cpu\nbuild\nINSTALL_DATA\nINSTALL_SCRIPT\nINSTALL_PROGRAM\nCPP\nOBJEXT\nEXEEXT\nac_ct_CC\nCPPFLAGS\nLDFLAGS\nCFLAGS\nCC\nSET_MAKE\ntarget_alias\nhost_alias\nbuild_alias\nLIBS\nECHO_T\nECHO_N\nECHO_C\nDEFS\nmandir\nlocaledir\nlibdir\npsdir\npdfdir\ndvidir\nhtmldir\ninfodir\ndocdir\noldincludedir\nincludedir\nlocalstatedir\nsharedstatedir\nsysconfdir\ndatadir\ndatarootdir\nlibexecdir\nsbindir\nbindir\nprogram_transform_name\nprefix\nexec_prefix\nPACKAGE_URL\nPACKAGE_BUGREPORT\nPACKAGE_STRING\nPACKAGE_VERSION\nPACKAGE_TARNAME\nPACKAGE_NAME\nPATH_SEPARATOR\nSHELL'\nac_subst_files=''\nac_user_opts='\nenable_option_checking\nenable_relocatable\nenable_shared\nenable_static\nwith_pic\nenable_fast_install\nwith_aix_soname\nwith_gnu_ld\nwith_sysroot\nenable_libtool_lock\n'\n      ac_precious_vars='build_alias\nhost_alias\ntarget_alias\nCC\nCFLAGS\nLDFLAGS\nLIBS\nCPPFLAGS\nCPP\nLT_SYS_LIBRARY_PATH'\n\n\n# Initialize some variables set by options.\nac_init_help=\nac_init_version=false\nac_unrecognized_opts=\nac_unrecognized_sep=\n# The variables have the same names as the options, with\n# dashes changed to underlines.\ncache_file=/dev/null\nexec_prefix=NONE\nno_create=\nno_recursion=\nprefix=NONE\nprogram_prefix=NONE\nprogram_suffix=NONE\nprogram_transform_name=s,x,x,\nsilent=\nsite=\nsrcdir=\nverbose=\nx_includes=NONE\nx_libraries=NONE\n\n# Installation directory options.\n# These are left unexpanded so users can \"make install exec_prefix=/foo\"\n# and all the variables that are supposed to be based on exec_prefix\n# by default will actually change.\n# Use braces instead of parens because sh, perl, etc. also accept them.\n# (The list follows the same order as the GNU Coding Standards.)\nbindir='${exec_prefix}/bin'\nsbindir='${exec_prefix}/sbin'\nlibexecdir='${exec_prefix}/libexec'\ndatarootdir='${prefix}/share'\ndatadir='${datarootdir}'\nsysconfdir='${prefix}/etc'\nsharedstatedir='${prefix}/com'\nlocalstatedir='${prefix}/var'\nincludedir='${prefix}/include'\noldincludedir='/usr/include'\ndocdir='${datarootdir}/doc/${PACKAGE_TARNAME}'\ninfodir='${datarootdir}/info'\nhtmldir='${docdir}'\ndvidir='${docdir}'\npdfdir='${docdir}'\npsdir='${docdir}'\nlibdir='${exec_prefix}/lib'\nlocaledir='${datarootdir}/locale'\nmandir='${datarootdir}/man'\n\nac_prev=\nac_dashdash=\nfor ac_option\ndo\n  # If the previous option needs an argument, assign it.\n  if test -n \"$ac_prev\"; then\n    eval $ac_prev=\\$ac_option\n    ac_prev=\n    continue\n  fi\n\n  case $ac_option in\n  *=?*) ac_optarg=`expr \"X$ac_option\" : '[^=]*=\\(.*\\)'` ;;\n  *=)   ac_optarg= ;;\n  *)    ac_optarg=yes ;;\n  esac\n\n  # Accept the important Cygnus configure options, so we can diagnose typos.\n\n  case $ac_dashdash$ac_option in\n  --)\n    ac_dashdash=yes ;;\n\n  -bindir | --bindir | --bindi | --bind | --bin | --bi)\n    ac_prev=bindir ;;\n  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)\n    bindir=$ac_optarg ;;\n\n  -build | --build | --buil | --bui | --bu)\n    ac_prev=build_alias ;;\n  -build=* | --build=* | --buil=* | --bui=* | --bu=*)\n    build_alias=$ac_optarg ;;\n\n  -cache-file | --cache-file | --cache-fil | --cache-fi \\\n  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)\n    ac_prev=cache_file ;;\n  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \\\n  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)\n    cache_file=$ac_optarg ;;\n\n  --config-cache | -C)\n    cache_file=config.cache ;;\n\n  -datadir | --datadir | --datadi | --datad)\n    ac_prev=datadir ;;\n  -datadir=* | --datadir=* | --datadi=* | --datad=*)\n    datadir=$ac_optarg ;;\n\n  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \\\n  | --dataroo | --dataro | --datar)\n    ac_prev=datarootdir ;;\n  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \\\n  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)\n    datarootdir=$ac_optarg ;;\n\n  -disable-* | --disable-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*disable-\\(.*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid feature name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"enable_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval enable_$ac_useropt=no ;;\n\n  -docdir | --docdir | --docdi | --doc | --do)\n    ac_prev=docdir ;;\n  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)\n    docdir=$ac_optarg ;;\n\n  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)\n    ac_prev=dvidir ;;\n  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)\n    dvidir=$ac_optarg ;;\n\n  -enable-* | --enable-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*enable-\\([^=]*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid feature name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"enable_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval enable_$ac_useropt=\\$ac_optarg ;;\n\n  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \\\n  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \\\n  | --exec | --exe | --ex)\n    ac_prev=exec_prefix ;;\n  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \\\n  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \\\n  | --exec=* | --exe=* | --ex=*)\n    exec_prefix=$ac_optarg ;;\n\n  -gas | --gas | --ga | --g)\n    # Obsolete; use --with-gas.\n    with_gas=yes ;;\n\n  -help | --help | --hel | --he | -h)\n    ac_init_help=long ;;\n  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)\n    ac_init_help=recursive ;;\n  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)\n    ac_init_help=short ;;\n\n  -host | --host | --hos | --ho)\n    ac_prev=host_alias ;;\n  -host=* | --host=* | --hos=* | --ho=*)\n    host_alias=$ac_optarg ;;\n\n  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)\n    ac_prev=htmldir ;;\n  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \\\n  | --ht=*)\n    htmldir=$ac_optarg ;;\n\n  -includedir | --includedir | --includedi | --included | --include \\\n  | --includ | --inclu | --incl | --inc)\n    ac_prev=includedir ;;\n  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \\\n  | --includ=* | --inclu=* | --incl=* | --inc=*)\n    includedir=$ac_optarg ;;\n\n  -infodir | --infodir | --infodi | --infod | --info | --inf)\n    ac_prev=infodir ;;\n  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)\n    infodir=$ac_optarg ;;\n\n  -libdir | --libdir | --libdi | --libd)\n    ac_prev=libdir ;;\n  -libdir=* | --libdir=* | --libdi=* | --libd=*)\n    libdir=$ac_optarg ;;\n\n  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \\\n  | --libexe | --libex | --libe)\n    ac_prev=libexecdir ;;\n  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \\\n  | --libexe=* | --libex=* | --libe=*)\n    libexecdir=$ac_optarg ;;\n\n  -localedir | --localedir | --localedi | --localed | --locale)\n    ac_prev=localedir ;;\n  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)\n    localedir=$ac_optarg ;;\n\n  -localstatedir | --localstatedir | --localstatedi | --localstated \\\n  | --localstate | --localstat | --localsta | --localst | --locals)\n    ac_prev=localstatedir ;;\n  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \\\n  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)\n    localstatedir=$ac_optarg ;;\n\n  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)\n    ac_prev=mandir ;;\n  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)\n    mandir=$ac_optarg ;;\n\n  -nfp | --nfp | --nf)\n    # Obsolete; use --without-fp.\n    with_fp=no ;;\n\n  -no-create | --no-create | --no-creat | --no-crea | --no-cre \\\n  | --no-cr | --no-c | -n)\n    no_create=yes ;;\n\n  -no-recursion | --no-recursion | --no-recursio | --no-recursi \\\n  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)\n    no_recursion=yes ;;\n\n  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \\\n  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \\\n  | --oldin | --oldi | --old | --ol | --o)\n    ac_prev=oldincludedir ;;\n  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \\\n  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \\\n  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)\n    oldincludedir=$ac_optarg ;;\n\n  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)\n    ac_prev=prefix ;;\n  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)\n    prefix=$ac_optarg ;;\n\n  -program-prefix | --program-prefix | --program-prefi | --program-pref \\\n  | --program-pre | --program-pr | --program-p)\n    ac_prev=program_prefix ;;\n  -program-prefix=* | --program-prefix=* | --program-prefi=* \\\n  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)\n    program_prefix=$ac_optarg ;;\n\n  -program-suffix | --program-suffix | --program-suffi | --program-suff \\\n  | --program-suf | --program-su | --program-s)\n    ac_prev=program_suffix ;;\n  -program-suffix=* | --program-suffix=* | --program-suffi=* \\\n  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)\n    program_suffix=$ac_optarg ;;\n\n  -program-transform-name | --program-transform-name \\\n  | --program-transform-nam | --program-transform-na \\\n  | --program-transform-n | --program-transform- \\\n  | --program-transform | --program-transfor \\\n  | --program-transfo | --program-transf \\\n  | --program-trans | --program-tran \\\n  | --progr-tra | --program-tr | --program-t)\n    ac_prev=program_transform_name ;;\n  -program-transform-name=* | --program-transform-name=* \\\n  | --program-transform-nam=* | --program-transform-na=* \\\n  | --program-transform-n=* | --program-transform-=* \\\n  | --program-transform=* | --program-transfor=* \\\n  | --program-transfo=* | --program-transf=* \\\n  | --program-trans=* | --program-tran=* \\\n  | --progr-tra=* | --program-tr=* | --program-t=*)\n    program_transform_name=$ac_optarg ;;\n\n  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)\n    ac_prev=pdfdir ;;\n  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)\n    pdfdir=$ac_optarg ;;\n\n  -psdir | --psdir | --psdi | --psd | --ps)\n    ac_prev=psdir ;;\n  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)\n    psdir=$ac_optarg ;;\n\n  -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n  | -silent | --silent | --silen | --sile | --sil)\n    silent=yes ;;\n\n  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)\n    ac_prev=sbindir ;;\n  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \\\n  | --sbi=* | --sb=*)\n    sbindir=$ac_optarg ;;\n\n  -sharedstatedir | --sharedstatedir | --sharedstatedi \\\n  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \\\n  | --sharedst | --shareds | --shared | --share | --shar \\\n  | --sha | --sh)\n    ac_prev=sharedstatedir ;;\n  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \\\n  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \\\n  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \\\n  | --sha=* | --sh=*)\n    sharedstatedir=$ac_optarg ;;\n\n  -site | --site | --sit)\n    ac_prev=site ;;\n  -site=* | --site=* | --sit=*)\n    site=$ac_optarg ;;\n\n  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)\n    ac_prev=srcdir ;;\n  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)\n    srcdir=$ac_optarg ;;\n\n  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \\\n  | --syscon | --sysco | --sysc | --sys | --sy)\n    ac_prev=sysconfdir ;;\n  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \\\n  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)\n    sysconfdir=$ac_optarg ;;\n\n  -target | --target | --targe | --targ | --tar | --ta | --t)\n    ac_prev=target_alias ;;\n  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)\n    target_alias=$ac_optarg ;;\n\n  -v | -verbose | --verbose | --verbos | --verbo | --verb)\n    verbose=yes ;;\n\n  -version | --version | --versio | --versi | --vers | -V)\n    ac_init_version=: ;;\n\n  -with-* | --with-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*with-\\([^=]*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid package name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"with_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval with_$ac_useropt=\\$ac_optarg ;;\n\n  -without-* | --without-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*without-\\(.*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid package name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"with_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval with_$ac_useropt=no ;;\n\n  --x)\n    # Obsolete; use --with-x.\n    with_x=yes ;;\n\n  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \\\n  | --x-incl | --x-inc | --x-in | --x-i)\n    ac_prev=x_includes ;;\n  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \\\n  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)\n    x_includes=$ac_optarg ;;\n\n  -x-libraries | --x-libraries | --x-librarie | --x-librari \\\n  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)\n    ac_prev=x_libraries ;;\n  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \\\n  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)\n    x_libraries=$ac_optarg ;;\n\n  -*) as_fn_error $? \"unrecognized option: \\`$ac_option'\nTry \\`$0 --help' for more information\"\n    ;;\n\n  *=*)\n    ac_envvar=`expr \"x$ac_option\" : 'x\\([^=]*\\)='`\n    # Reject names that are not valid shell variable names.\n    case $ac_envvar in #(\n      '' | [0-9]* | *[!_$as_cr_alnum]* )\n      as_fn_error $? \"invalid variable name: \\`$ac_envvar'\" ;;\n    esac\n    eval $ac_envvar=\\$ac_optarg\n    export $ac_envvar ;;\n\n  *)\n    # FIXME: should be removed in autoconf 3.0.\n    $as_echo \"$as_me: WARNING: you should use --build, --host, --target\" >&2\n    expr \"x$ac_option\" : \".*[^-._$as_cr_alnum]\" >/dev/null &&\n      $as_echo \"$as_me: WARNING: invalid host type: $ac_option\" >&2\n    : \"${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}\"\n    ;;\n\n  esac\ndone\n\nif test -n \"$ac_prev\"; then\n  ac_option=--`echo $ac_prev | sed 's/_/-/g'`\n  as_fn_error $? \"missing argument to $ac_option\"\nfi\n\nif test -n \"$ac_unrecognized_opts\"; then\n  case $enable_option_checking in\n    no) ;;\n    fatal) as_fn_error $? \"unrecognized options: $ac_unrecognized_opts\" ;;\n    *)     $as_echo \"$as_me: WARNING: unrecognized options: $ac_unrecognized_opts\" >&2 ;;\n  esac\nfi\n\n# Check all directory arguments for consistency.\nfor ac_var in\texec_prefix prefix bindir sbindir libexecdir datarootdir \\\n\t\tdatadir sysconfdir sharedstatedir localstatedir includedir \\\n\t\toldincludedir docdir infodir htmldir dvidir pdfdir psdir \\\n\t\tlibdir localedir mandir\ndo\n  eval ac_val=\\$$ac_var\n  # Remove trailing slashes.\n  case $ac_val in\n    */ )\n      ac_val=`expr \"X$ac_val\" : 'X\\(.*[^/]\\)' \\| \"X$ac_val\" : 'X\\(.*\\)'`\n      eval $ac_var=\\$ac_val;;\n  esac\n  # Be sure to have absolute directory names.\n  case $ac_val in\n    [\\\\/$]* | ?:[\\\\/]* )  continue;;\n    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;\n  esac\n  as_fn_error $? \"expected an absolute directory name for --$ac_var: $ac_val\"\ndone\n\n# There might be people who depend on the old broken behavior: `$host'\n# used to hold the argument of --host etc.\n# FIXME: To remove some day.\nbuild=$build_alias\nhost=$host_alias\ntarget=$target_alias\n\n# FIXME: To remove some day.\nif test \"x$host_alias\" != x; then\n  if test \"x$build_alias\" = x; then\n    cross_compiling=maybe\n  elif test \"x$build_alias\" != \"x$host_alias\"; then\n    cross_compiling=yes\n  fi\nfi\n\nac_tool_prefix=\ntest -n \"$host_alias\" && ac_tool_prefix=$host_alias-\n\ntest \"$silent\" = yes && exec 6>/dev/null\n\n\nac_pwd=`pwd` && test -n \"$ac_pwd\" &&\nac_ls_di=`ls -di .` &&\nac_pwd_ls_di=`cd \"$ac_pwd\" && ls -di .` ||\n  as_fn_error $? \"working directory cannot be determined\"\ntest \"X$ac_ls_di\" = \"X$ac_pwd_ls_di\" ||\n  as_fn_error $? \"pwd does not report name of working directory\"\n\n\n# Find the source files, if location was not specified.\nif test -z \"$srcdir\"; then\n  ac_srcdir_defaulted=yes\n  # Try the directory containing this script, then the parent directory.\n  ac_confdir=`$as_dirname -- \"$as_myself\" ||\n$as_expr X\"$as_myself\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_myself\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_myself\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_myself\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_myself\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  srcdir=$ac_confdir\n  if test ! -r \"$srcdir/$ac_unique_file\"; then\n    srcdir=..\n  fi\nelse\n  ac_srcdir_defaulted=no\nfi\nif test ! -r \"$srcdir/$ac_unique_file\"; then\n  test \"$ac_srcdir_defaulted\" = yes && srcdir=\"$ac_confdir or ..\"\n  as_fn_error $? \"cannot find sources ($ac_unique_file) in $srcdir\"\nfi\nac_msg=\"sources are in $srcdir, but \\`cd $srcdir' does not work\"\nac_abs_confdir=`(\n\tcd \"$srcdir\" && test -r \"./$ac_unique_file\" || as_fn_error $? \"$ac_msg\"\n\tpwd)`\n# When building in place, set srcdir=.\nif test \"$ac_abs_confdir\" = \"$ac_pwd\"; then\n  srcdir=.\nfi\n# Remove unnecessary trailing slashes from srcdir.\n# Double slashes in file names in object file debugging info\n# mess up M-x gdb in Emacs.\ncase $srcdir in\n*/) srcdir=`expr \"X$srcdir\" : 'X\\(.*[^/]\\)' \\| \"X$srcdir\" : 'X\\(.*\\)'`;;\nesac\nfor ac_var in $ac_precious_vars; do\n  eval ac_env_${ac_var}_set=\\${${ac_var}+set}\n  eval ac_env_${ac_var}_value=\\$${ac_var}\n  eval ac_cv_env_${ac_var}_set=\\${${ac_var}+set}\n  eval ac_cv_env_${ac_var}_value=\\$${ac_var}\ndone\n\n#\n# Report the --help message.\n#\nif test \"$ac_init_help\" = \"long\"; then\n  # Omit some internal or obsolete options to make the list less imposing.\n  # This message is too long to be a string in the A/UX 3.1 sh.\n  cat <<_ACEOF\n\\`configure' configures libcharset 1.4 to adapt to many kinds of systems.\n\nUsage: $0 [OPTION]... [VAR=VALUE]...\n\nTo assign environment variables (e.g., CC, CFLAGS...), specify them as\nVAR=VALUE.  See below for descriptions of some of the useful variables.\n\nDefaults for the options are specified in brackets.\n\nConfiguration:\n  -h, --help              display this help and exit\n      --help=short        display options specific to this package\n      --help=recursive    display the short help of all the included packages\n  -V, --version           display version information and exit\n  -q, --quiet, --silent   do not print \\`checking ...' messages\n      --cache-file=FILE   cache test results in FILE [disabled]\n  -C, --config-cache      alias for \\`--cache-file=config.cache'\n  -n, --no-create         do not create output files\n      --srcdir=DIR        find the sources in DIR [configure dir or \\`..']\n\nInstallation directories:\n  --prefix=PREFIX         install architecture-independent files in PREFIX\n                          [$ac_default_prefix]\n  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX\n                          [PREFIX]\n\nBy default, \\`make install' will install all the files in\n\\`$ac_default_prefix/bin', \\`$ac_default_prefix/lib' etc.  You can specify\nan installation prefix other than \\`$ac_default_prefix' using \\`--prefix',\nfor instance \\`--prefix=\\$HOME'.\n\nFor better control, use the options below.\n\nFine tuning of the installation directories:\n  --bindir=DIR            user executables [EPREFIX/bin]\n  --sbindir=DIR           system admin executables [EPREFIX/sbin]\n  --libexecdir=DIR        program executables [EPREFIX/libexec]\n  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]\n  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]\n  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]\n  --libdir=DIR            object code libraries [EPREFIX/lib]\n  --includedir=DIR        C header files [PREFIX/include]\n  --oldincludedir=DIR     C header files for non-gcc [/usr/include]\n  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]\n  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]\n  --infodir=DIR           info documentation [DATAROOTDIR/info]\n  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]\n  --mandir=DIR            man documentation [DATAROOTDIR/man]\n  --docdir=DIR            documentation root [DATAROOTDIR/doc/libcharset]\n  --htmldir=DIR           html documentation [DOCDIR]\n  --dvidir=DIR            dvi documentation [DOCDIR]\n  --pdfdir=DIR            pdf documentation [DOCDIR]\n  --psdir=DIR             ps documentation [DOCDIR]\n_ACEOF\n\n  cat <<\\_ACEOF\n\nSystem types:\n  --build=BUILD     configure for building on BUILD [guessed]\n  --host=HOST       cross-compile to build programs to run on HOST [BUILD]\n_ACEOF\nfi\n\nif test -n \"$ac_init_help\"; then\n  case $ac_init_help in\n     short | recursive ) echo \"Configuration of libcharset 1.4:\";;\n   esac\n  cat <<\\_ACEOF\n\nOptional Features:\n  --disable-option-checking  ignore unrecognized --enable/--with options\n  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)\n  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]\n  --enable-relocatable    install a package that can be moved in the file\n                          system\n  --enable-shared[=PKGS]  build shared libraries [default=yes]\n  --enable-static[=PKGS]  build static libraries [default=yes]\n  --enable-fast-install[=PKGS]\n                          optimize for fast installation [default=yes]\n  --disable-libtool-lock  avoid locking (might break parallel builds)\n\nOptional Packages:\n  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]\n  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)\n  --with-pic[=PKGS]       try to use only PIC/non-PIC objects [default=use\n                          both]\n  --with-aix-soname=aix|svr4|both\n                          shared library versioning (aka \"SONAME\") variant to\n                          provide on AIX, [default=aix].\n  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]\n  --with-sysroot[=DIR]    Search for dependent libraries within DIR (or the\n                          compiler's sysroot if not specified).\n\nSome influential environment variables:\n  CC          C compiler command\n  CFLAGS      C compiler flags\n  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a\n              nonstandard directory <lib dir>\n  LIBS        libraries to pass to the linker, e.g. -l<library>\n  CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if\n              you have headers in a nonstandard directory <include dir>\n  CPP         C preprocessor\n  LT_SYS_LIBRARY_PATH\n              User-defined run-time library search path.\n\nUse these variables to override the choices made by `configure' or to help\nit to find libraries and programs with nonstandard names/locations.\n\nReport bugs to the package provider.\n_ACEOF\nac_status=$?\nfi\n\nif test \"$ac_init_help\" = \"recursive\"; then\n  # If there are subdirs, report their specific --help.\n  for ac_dir in : $ac_subdirs_all; do test \"x$ac_dir\" = x: && continue\n    test -d \"$ac_dir\" ||\n      { cd \"$srcdir\" && ac_pwd=`pwd` && srcdir=. && test -d \"$ac_dir\"; } ||\n      continue\n    ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`$as_echo \"$ac_dir\" | sed 's|^\\.[\\\\/]||'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`$as_echo \"$ac_dir_suffix\" | sed 's|/[^\\\\/]*|/..|g;s|/||'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n    cd \"$ac_dir\" || { ac_status=$?; continue; }\n    # Check for guested configure.\n    if test -f \"$ac_srcdir/configure.gnu\"; then\n      echo &&\n      $SHELL \"$ac_srcdir/configure.gnu\" --help=recursive\n    elif test -f \"$ac_srcdir/configure\"; then\n      echo &&\n      $SHELL \"$ac_srcdir/configure\" --help=recursive\n    else\n      $as_echo \"$as_me: WARNING: no configuration information is in $ac_dir\" >&2\n    fi || ac_status=$?\n    cd \"$ac_pwd\" || { ac_status=$?; break; }\n  done\nfi\n\ntest -n \"$ac_init_help\" && exit $ac_status\nif $ac_init_version; then\n  cat <<\\_ACEOF\nlibcharset configure 1.4\ngenerated by GNU Autoconf 2.69\n\nCopyright (C) 2012 Free Software Foundation, Inc.\nThis configure script is free software; the Free Software Foundation\ngives unlimited permission to copy, distribute and modify it.\n_ACEOF\n  exit\nfi\n\n## ------------------------ ##\n## Autoconf initialization. ##\n## ------------------------ ##\n\n# ac_fn_c_try_compile LINENO\n# --------------------------\n# Try to compile conftest.$ac_ext, and return whether this succeeded.\nac_fn_c_try_compile ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  rm -f conftest.$ac_objext\n  if { { ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_compile\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    grep -v '^ *+' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n    mv -f conftest.er1 conftest.err\n  fi\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_retval=1\nfi\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_compile\n\n# ac_fn_c_try_cpp LINENO\n# ----------------------\n# Try to preprocess conftest.$ac_ext, and return whether this succeeded.\nac_fn_c_try_cpp ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  if { { ac_try=\"$ac_cpp conftest.$ac_ext\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_cpp conftest.$ac_ext\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    grep -v '^ *+' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n    mv -f conftest.er1 conftest.err\n  fi\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } > conftest.i && {\n\t test -z \"$ac_c_preproc_warn_flag$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       }; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n    ac_retval=1\nfi\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_cpp\n\n# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES\n# -------------------------------------------------------\n# Tests whether HEADER exists, giving a warning if it cannot be compiled using\n# the include files in INCLUDES and setting the cache variable VAR\n# accordingly.\nac_fn_c_check_header_mongrel ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  if eval \\${$3+:} false; then :\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\nelse\n  # Is the header compilable?\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking $2 usability\" >&5\n$as_echo_n \"checking $2 usability... \" >&6; }\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\n#include <$2>\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_header_compiler=yes\nelse\n  ac_header_compiler=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler\" >&5\n$as_echo \"$ac_header_compiler\" >&6; }\n\n# Is the header present?\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking $2 presence\" >&5\n$as_echo_n \"checking $2 presence... \" >&6; }\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <$2>\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n  ac_header_preproc=yes\nelse\n  ac_header_preproc=no\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc\" >&5\n$as_echo \"$ac_header_preproc\" >&6; }\n\n# So?  What about this header?\ncase $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((\n  yes:no: )\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!\" >&5\n$as_echo \"$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result\" >&5\n$as_echo \"$as_me: WARNING: $2: proceeding with the compiler's result\" >&2;}\n    ;;\n  no:yes:* )\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled\" >&5\n$as_echo \"$as_me: WARNING: $2: present but cannot be compiled\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2:     check for missing prerequisite headers?\" >&5\n$as_echo \"$as_me: WARNING: $2:     check for missing prerequisite headers?\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation\" >&5\n$as_echo \"$as_me: WARNING: $2: see the Autoconf documentation\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2:     section \\\"Present But Cannot Be Compiled\\\"\" >&5\n$as_echo \"$as_me: WARNING: $2:     section \\\"Present But Cannot Be Compiled\\\"\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result\" >&5\n$as_echo \"$as_me: WARNING: $2: proceeding with the compiler's result\" >&2;}\n    ;;\nesac\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  eval \"$3=\\$ac_header_compiler\"\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\nfi\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n\n} # ac_fn_c_check_header_mongrel\n\n# ac_fn_c_try_run LINENO\n# ----------------------\n# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes\n# that executables *can* be run.\nac_fn_c_try_run ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  if { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'\n  { { case \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_try\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; }; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: program exited with status $ac_status\" >&5\n       $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n       ac_retval=$ac_status\nfi\n  rm -rf conftest.dSYM conftest_ipa8_conftest.oo\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_run\n\n# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES\n# -------------------------------------------------------\n# Tests whether HEADER exists and can be compiled using the include files in\n# INCLUDES, setting the cache variable VAR accordingly.\nac_fn_c_check_header_compile ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\n#include <$2>\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$3=yes\"\nelse\n  eval \"$3=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n\n} # ac_fn_c_check_header_compile\n\n# ac_fn_c_try_link LINENO\n# -----------------------\n# Try to link conftest.$ac_ext, and return whether this succeeded.\nac_fn_c_try_link ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  rm -f conftest.$ac_objext conftest$ac_exeext\n  if { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    grep -v '^ *+' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n    mv -f conftest.er1 conftest.err\n  fi\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext && {\n\t test \"$cross_compiling\" = yes ||\n\t test -x conftest$ac_exeext\n       }; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_retval=1\nfi\n  # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information\n  # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would\n  # interfere with the next link command; also delete a directory that is\n  # left behind by Apple's compiler.  We do this before executing the actions.\n  rm -rf conftest.dSYM conftest_ipa8_conftest.oo\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_link\n\n# ac_fn_c_check_func LINENO FUNC VAR\n# ----------------------------------\n# Tests whether FUNC exists, setting the cache variable VAR accordingly\nac_fn_c_check_func ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n/* Define $2 to an innocuous variant, in case <limits.h> declares $2.\n   For example, HP-UX 11i <limits.h> declares gettimeofday.  */\n#define $2 innocuous_$2\n\n/* System header to define __stub macros and hopefully few prototypes,\n    which can conflict with char $2 (); below.\n    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n    <limits.h> exists even on freestanding compilers.  */\n\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\n#undef $2\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar $2 ();\n/* The GNU C library defines this for functions which it implements\n    to always fail with ENOSYS.  Some functions are actually named\n    something starting with __ and the normal name is an alias.  */\n#if defined __stub_$2 || defined __stub___$2\nchoke me\n#endif\n\nint\nmain ()\n{\nreturn $2 ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  eval \"$3=yes\"\nelse\n  eval \"$3=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n\n} # ac_fn_c_check_func\ncat >config.log <<_ACEOF\nThis file contains any messages produced by compilers while\nrunning configure, to aid debugging if configure makes a mistake.\n\nIt was created by libcharset $as_me 1.4, which was\ngenerated by GNU Autoconf 2.69.  Invocation command line was\n\n  $ $0 $@\n\n_ACEOF\nexec 5>>config.log\n{\ncat <<_ASUNAME\n## --------- ##\n## Platform. ##\n## --------- ##\n\nhostname = `(hostname || uname -n) 2>/dev/null | sed 1q`\nuname -m = `(uname -m) 2>/dev/null || echo unknown`\nuname -r = `(uname -r) 2>/dev/null || echo unknown`\nuname -s = `(uname -s) 2>/dev/null || echo unknown`\nuname -v = `(uname -v) 2>/dev/null || echo unknown`\n\n/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`\n/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`\n\n/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`\n/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`\n/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`\n/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`\n/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`\n/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`\n/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`\n\n_ASUNAME\n\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    $as_echo \"PATH: $as_dir\"\n  done\nIFS=$as_save_IFS\n\n} >&5\n\ncat >&5 <<_ACEOF\n\n\n## ----------- ##\n## Core tests. ##\n## ----------- ##\n\n_ACEOF\n\n\n# Keep a trace of the command line.\n# Strip out --no-create and --no-recursion so they do not pile up.\n# Strip out --silent because we don't want to record it for future runs.\n# Also quote any args containing shell meta-characters.\n# Make two passes to allow for proper duplicate-argument suppression.\nac_configure_args=\nac_configure_args0=\nac_configure_args1=\nac_must_keep_next=false\nfor ac_pass in 1 2\ndo\n  for ac_arg\n  do\n    case $ac_arg in\n    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;\n    -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n    | -silent | --silent | --silen | --sile | --sil)\n      continue ;;\n    *\\'*)\n      ac_arg=`$as_echo \"$ac_arg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    esac\n    case $ac_pass in\n    1) as_fn_append ac_configure_args0 \" '$ac_arg'\" ;;\n    2)\n      as_fn_append ac_configure_args1 \" '$ac_arg'\"\n      if test $ac_must_keep_next = true; then\n\tac_must_keep_next=false # Got value, back to normal.\n      else\n\tcase $ac_arg in\n\t  *=* | --config-cache | -C | -disable-* | --disable-* \\\n\t  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \\\n\t  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \\\n\t  | -with-* | --with-* | -without-* | --without-* | --x)\n\t    case \"$ac_configure_args0 \" in\n\t      \"$ac_configure_args1\"*\" '$ac_arg' \"* ) continue ;;\n\t    esac\n\t    ;;\n\t  -* ) ac_must_keep_next=true ;;\n\tesac\n      fi\n      as_fn_append ac_configure_args \" '$ac_arg'\"\n      ;;\n    esac\n  done\ndone\n{ ac_configure_args0=; unset ac_configure_args0;}\n{ ac_configure_args1=; unset ac_configure_args1;}\n\n# When interrupted or exit'd, cleanup temporary files, and complete\n# config.log.  We remove comments because anyway the quotes in there\n# would cause problems or look ugly.\n# WARNING: Use '\\'' to represent an apostrophe within the trap.\n# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.\ntrap 'exit_status=$?\n  # Save into config.log some information that might help in debugging.\n  {\n    echo\n\n    $as_echo \"## ---------------- ##\n## Cache variables. ##\n## ---------------- ##\"\n    echo\n    # The following way of writing the cache mishandles newlines in values,\n(\n  for ac_var in `(set) 2>&1 | sed -n '\\''s/^\\([a-zA-Z_][a-zA-Z0-9_]*\\)=.*/\\1/p'\\''`; do\n    eval ac_val=\\$$ac_var\n    case $ac_val in #(\n    *${as_nl}*)\n      case $ac_var in #(\n      *_cv_*) { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline\" >&5\n$as_echo \"$as_me: WARNING: cache variable $ac_var contains a newline\" >&2;} ;;\n      esac\n      case $ac_var in #(\n      _ | IFS | as_nl) ;; #(\n      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(\n      *) { eval $ac_var=; unset $ac_var;} ;;\n      esac ;;\n    esac\n  done\n  (set) 2>&1 |\n    case $as_nl`(ac_space='\\'' '\\''; set) 2>&1` in #(\n    *${as_nl}ac_space=\\ *)\n      sed -n \\\n\t\"s/'\\''/'\\''\\\\\\\\'\\'''\\''/g;\n\t  s/^\\\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\\\)=\\\\(.*\\\\)/\\\\1='\\''\\\\2'\\''/p\"\n      ;; #(\n    *)\n      sed -n \"/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p\"\n      ;;\n    esac |\n    sort\n)\n    echo\n\n    $as_echo \"## ----------------- ##\n## Output variables. ##\n## ----------------- ##\"\n    echo\n    for ac_var in $ac_subst_vars\n    do\n      eval ac_val=\\$$ac_var\n      case $ac_val in\n      *\\'\\''*) ac_val=`$as_echo \"$ac_val\" | sed \"s/'\\''/'\\''\\\\\\\\\\\\\\\\'\\'''\\''/g\"`;;\n      esac\n      $as_echo \"$ac_var='\\''$ac_val'\\''\"\n    done | sort\n    echo\n\n    if test -n \"$ac_subst_files\"; then\n      $as_echo \"## ------------------- ##\n## File substitutions. ##\n## ------------------- ##\"\n      echo\n      for ac_var in $ac_subst_files\n      do\n\teval ac_val=\\$$ac_var\n\tcase $ac_val in\n\t*\\'\\''*) ac_val=`$as_echo \"$ac_val\" | sed \"s/'\\''/'\\''\\\\\\\\\\\\\\\\'\\'''\\''/g\"`;;\n\tesac\n\t$as_echo \"$ac_var='\\''$ac_val'\\''\"\n      done | sort\n      echo\n    fi\n\n    if test -s confdefs.h; then\n      $as_echo \"## ----------- ##\n## confdefs.h. ##\n## ----------- ##\"\n      echo\n      cat confdefs.h\n      echo\n    fi\n    test \"$ac_signal\" != 0 &&\n      $as_echo \"$as_me: caught signal $ac_signal\"\n    $as_echo \"$as_me: exit $exit_status\"\n  } >&5\n  rm -f core *.core core.conftest.* &&\n    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&\n    exit $exit_status\n' 0\nfor ac_signal in 1 2 13 15; do\n  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal\ndone\nac_signal=0\n\n# confdefs.h avoids OS command line length limits that DEFS can exceed.\nrm -f -r conftest* confdefs.h\n\n$as_echo \"/* confdefs.h */\" > confdefs.h\n\n# Predefined preprocessor variables.\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_NAME \"$PACKAGE_NAME\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_VERSION \"$PACKAGE_VERSION\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_STRING \"$PACKAGE_STRING\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_URL \"$PACKAGE_URL\"\n_ACEOF\n\n\n# Let the site file select an alternate cache file if it wants to.\n# Prefer an explicitly selected file to automatically selected ones.\nac_site_file1=NONE\nac_site_file2=NONE\nif test -n \"$CONFIG_SITE\"; then\n  # We do not want a PATH search for config.site.\n  case $CONFIG_SITE in #((\n    -*)  ac_site_file1=./$CONFIG_SITE;;\n    */*) ac_site_file1=$CONFIG_SITE;;\n    *)   ac_site_file1=./$CONFIG_SITE;;\n  esac\nelif test \"x$prefix\" != xNONE; then\n  ac_site_file1=$prefix/share/config.site\n  ac_site_file2=$prefix/etc/config.site\nelse\n  ac_site_file1=$ac_default_prefix/share/config.site\n  ac_site_file2=$ac_default_prefix/etc/config.site\nfi\nfor ac_site_file in \"$ac_site_file1\" \"$ac_site_file2\"\ndo\n  test \"x$ac_site_file\" = xNONE && continue\n  if test /dev/null != \"$ac_site_file\" && test -r \"$ac_site_file\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file\" >&5\n$as_echo \"$as_me: loading site script $ac_site_file\" >&6;}\n    sed 's/^/| /' \"$ac_site_file\" >&5\n    . \"$ac_site_file\" \\\n      || { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"failed to load site script $ac_site_file\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\n  fi\ndone\n\nif test -r \"$cache_file\"; then\n  # Some versions of bash will fail to source /dev/null (special files\n  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.\n  if test /dev/null != \"$cache_file\" && test -f \"$cache_file\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: loading cache $cache_file\" >&5\n$as_echo \"$as_me: loading cache $cache_file\" >&6;}\n    case $cache_file in\n      [\\\\/]* | ?:[\\\\/]* ) . \"$cache_file\";;\n      *)                      . \"./$cache_file\";;\n    esac\n  fi\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: creating cache $cache_file\" >&5\n$as_echo \"$as_me: creating cache $cache_file\" >&6;}\n  >$cache_file\nfi\n\nas_fn_append ac_header_list \" unistd.h\"\nas_fn_append ac_func_list \" symlink\"\n# Check that the precious variables saved in the cache have kept the same\n# value.\nac_cache_corrupted=false\nfor ac_var in $ac_precious_vars; do\n  eval ac_old_set=\\$ac_cv_env_${ac_var}_set\n  eval ac_new_set=\\$ac_env_${ac_var}_set\n  eval ac_old_val=\\$ac_cv_env_${ac_var}_value\n  eval ac_new_val=\\$ac_env_${ac_var}_value\n  case $ac_old_set,$ac_new_set in\n    set,)\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: error: \\`$ac_var' was set to \\`$ac_old_val' in the previous run\" >&5\n$as_echo \"$as_me: error: \\`$ac_var' was set to \\`$ac_old_val' in the previous run\" >&2;}\n      ac_cache_corrupted=: ;;\n    ,set)\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: error: \\`$ac_var' was not set in the previous run\" >&5\n$as_echo \"$as_me: error: \\`$ac_var' was not set in the previous run\" >&2;}\n      ac_cache_corrupted=: ;;\n    ,);;\n    *)\n      if test \"x$ac_old_val\" != \"x$ac_new_val\"; then\n\t# differences in whitespace do not lead to failure.\n\tac_old_val_w=`echo x $ac_old_val`\n\tac_new_val_w=`echo x $ac_new_val`\n\tif test \"$ac_old_val_w\" != \"$ac_new_val_w\"; then\n\t  { $as_echo \"$as_me:${as_lineno-$LINENO}: error: \\`$ac_var' has changed since the previous run:\" >&5\n$as_echo \"$as_me: error: \\`$ac_var' has changed since the previous run:\" >&2;}\n\t  ac_cache_corrupted=:\n\telse\n\t  { $as_echo \"$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \\`$ac_var' since the previous run:\" >&5\n$as_echo \"$as_me: warning: ignoring whitespace changes in \\`$ac_var' since the previous run:\" >&2;}\n\t  eval $ac_var=\\$ac_old_val\n\tfi\n\t{ $as_echo \"$as_me:${as_lineno-$LINENO}:   former value:  \\`$ac_old_val'\" >&5\n$as_echo \"$as_me:   former value:  \\`$ac_old_val'\" >&2;}\n\t{ $as_echo \"$as_me:${as_lineno-$LINENO}:   current value: \\`$ac_new_val'\" >&5\n$as_echo \"$as_me:   current value: \\`$ac_new_val'\" >&2;}\n      fi;;\n  esac\n  # Pass precious variables to config.status.\n  if test \"$ac_new_set\" = set; then\n    case $ac_new_val in\n    *\\'*) ac_arg=$ac_var=`$as_echo \"$ac_new_val\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    *) ac_arg=$ac_var=$ac_new_val ;;\n    esac\n    case \" $ac_configure_args \" in\n      *\" '$ac_arg' \"*) ;; # Avoid dups.  Use of quotes ensures accuracy.\n      *) as_fn_append ac_configure_args \" '$ac_arg'\" ;;\n    esac\n  fi\ndone\nif $ac_cache_corrupted; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build\" >&5\n$as_echo \"$as_me: error: changes in the environment can compromise the build\" >&2;}\n  as_fn_error $? \"run \\`make distclean' and/or \\`rm $cache_file' and start over\" \"$LINENO\" 5\nfi\n## -------------------- ##\n## Main body of script. ##\n## -------------------- ##\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n\n\nac_aux_dir=\nfor ac_dir in build-aux \"$srcdir\"/build-aux; do\n  if test -f \"$ac_dir/install-sh\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/install-sh -c\"\n    break\n  elif test -f \"$ac_dir/install.sh\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/install.sh -c\"\n    break\n  elif test -f \"$ac_dir/shtool\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/shtool install -c\"\n    break\n  fi\ndone\nif test -z \"$ac_aux_dir\"; then\n  as_fn_error $? \"cannot find install-sh, install.sh, or shtool in build-aux \\\"$srcdir\\\"/build-aux\" \"$LINENO\" 5\nfi\n\n# These three variables are undocumented and unsupported,\n# and are intended to be withdrawn in a future Autoconf release.\n# They can cause serious problems if a builder's source tree is in a directory\n# whose full name contains unusual characters.\nac_config_guess=\"$SHELL $ac_aux_dir/config.guess\"  # Please don't use this var.\nac_config_sub=\"$SHELL $ac_aux_dir/config.sub\"  # Please don't use this var.\nac_configure=\"$SHELL $ac_aux_dir/configure\"  # Please don't use this var.\n\n\nac_config_headers=\"$ac_config_headers config.h\"\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \\$(MAKE)\" >&5\n$as_echo_n \"checking whether ${MAKE-make} sets \\$(MAKE)... \" >&6; }\nset x ${MAKE-make}\nac_make=`$as_echo \"$2\" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`\nif eval \\${ac_cv_prog_make_${ac_make}_set+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat >conftest.make <<\\_ACEOF\nSHELL = /bin/sh\nall:\n\t@echo '@@@%%%=$(MAKE)=@@@%%%'\n_ACEOF\n# GNU make sometimes prints \"make[1]: Entering ...\", which would confuse us.\ncase `${MAKE-make} -f conftest.make 2>/dev/null` in\n  *@@@%%%=?*=@@@%%%*)\n    eval ac_cv_prog_make_${ac_make}_set=yes;;\n  *)\n    eval ac_cv_prog_make_${ac_make}_set=no;;\nesac\nrm -f conftest.make\nfi\nif eval test \\$ac_cv_prog_make_${ac_make}_set = yes; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\n  SET_MAKE=\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n  SET_MAKE=\"MAKE=${MAKE-make}\"\nfi\n\n\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}gcc\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}gcc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_CC=\"${ac_tool_prefix}gcc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_CC\"; then\n  ac_ct_CC=$CC\n  # Extract the first word of \"gcc\", so it can be a program name with args.\nset dummy gcc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_CC\"; then\n  ac_cv_prog_ac_ct_CC=\"$ac_ct_CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_CC=\"gcc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_CC=$ac_cv_prog_ac_ct_CC\nif test -n \"$ac_ct_CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC\" >&5\n$as_echo \"$ac_ct_CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_CC\" = x; then\n    CC=\"\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    CC=$ac_ct_CC\n  fi\nelse\n  CC=\"$ac_cv_prog_CC\"\nfi\n\nif test -z \"$CC\"; then\n          if test -n \"$ac_tool_prefix\"; then\n    # Extract the first word of \"${ac_tool_prefix}cc\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}cc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_CC=\"${ac_tool_prefix}cc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  fi\nfi\nif test -z \"$CC\"; then\n  # Extract the first word of \"cc\", so it can be a program name with args.\nset dummy cc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\n  ac_prog_rejected=no\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    if test \"$as_dir/$ac_word$ac_exec_ext\" = \"/usr/ucb/cc\"; then\n       ac_prog_rejected=yes\n       continue\n     fi\n    ac_cv_prog_CC=\"cc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nif test $ac_prog_rejected = yes; then\n  # We found a bogon in the path, so make sure we never use it.\n  set dummy $ac_cv_prog_CC\n  shift\n  if test $# != 0; then\n    # We chose a different compiler from the bogus one.\n    # However, it has the same basename, so the bogon will be chosen\n    # first if we set CC to just the basename; use the full file name.\n    shift\n    ac_cv_prog_CC=\"$as_dir/$ac_word${1+' '}$@\"\n  fi\nfi\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$CC\"; then\n  if test -n \"$ac_tool_prefix\"; then\n  for ac_prog in cl.exe\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_CC=\"$ac_tool_prefix$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n    test -n \"$CC\" && break\n  done\nfi\nif test -z \"$CC\"; then\n  ac_ct_CC=$CC\n  for ac_prog in cl.exe\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_CC\"; then\n  ac_cv_prog_ac_ct_CC=\"$ac_ct_CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_CC=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_CC=$ac_cv_prog_ac_ct_CC\nif test -n \"$ac_ct_CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC\" >&5\n$as_echo \"$ac_ct_CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_CC\" && break\ndone\n\n  if test \"x$ac_ct_CC\" = x; then\n    CC=\"\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    CC=$ac_ct_CC\n  fi\nfi\n\nfi\n\n\ntest -z \"$CC\" && { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"no acceptable C compiler found in \\$PATH\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\n\n# Provide some information about the compiler.\n$as_echo \"$as_me:${as_lineno-$LINENO}: checking for C compiler version\" >&5\nset X $ac_compile\nac_compiler=$2\nfor ac_option in --version -v -V -qversion; do\n  { { ac_try=\"$ac_compiler $ac_option >&5\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_compiler $ac_option >&5\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    sed '10a\\\n... rest of stderr output deleted ...\n         10q' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n  fi\n  rm -f conftest.er1 conftest.err\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\ndone\n\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nac_clean_files_save=$ac_clean_files\nac_clean_files=\"$ac_clean_files a.out a.out.dSYM a.exe b.out\"\n# Try to create an executable without -o first, disregard a.out.\n# It will help us diagnose broken compilers, and finding out an intuition\n# of exeext.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the C compiler works\" >&5\n$as_echo_n \"checking whether the C compiler works... \" >&6; }\nac_link_default=`$as_echo \"$ac_link\" | sed 's/ -o *conftest[^ ]*//'`\n\n# The possible output files:\nac_files=\"a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*\"\n\nac_rmfiles=\nfor ac_file in $ac_files\ndo\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;\n    * ) ac_rmfiles=\"$ac_rmfiles $ac_file\";;\n  esac\ndone\nrm -f $ac_rmfiles\n\nif { { ac_try=\"$ac_link_default\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link_default\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then :\n  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.\n# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'\n# in a Makefile.  We should not override ac_cv_exeext if it was cached,\n# so that the user can short-circuit this test for compilers unknown to\n# Autoconf.\nfor ac_file in $ac_files ''\ndo\n  test -f \"$ac_file\" || continue\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )\n\t;;\n    [ab].out )\n\t# We found the default executable, but exeext='' is most\n\t# certainly right.\n\tbreak;;\n    *.* )\n\tif test \"${ac_cv_exeext+set}\" = set && test \"$ac_cv_exeext\" != no;\n\tthen :; else\n\t   ac_cv_exeext=`expr \"$ac_file\" : '[^.]*\\(\\..*\\)'`\n\tfi\n\t# We set ac_cv_exeext here because the later test for it is not\n\t# safe: cross compilers may not add the suffix if given an `-o'\n\t# argument, so we may need to know it at that point already.\n\t# Even if this section looks crufty: it has the advantage of\n\t# actually working.\n\tbreak;;\n    * )\n\tbreak;;\n  esac\ndone\ntest \"$ac_cv_exeext\" = no && ac_cv_exeext=\n\nelse\n  ac_file=''\nfi\nif test -z \"$ac_file\"; then :\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n$as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n{ { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error 77 \"C compiler cannot create executables\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name\" >&5\n$as_echo_n \"checking for C compiler default output file name... \" >&6; }\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_file\" >&5\n$as_echo \"$ac_file\" >&6; }\nac_exeext=$ac_cv_exeext\n\nrm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out\nac_clean_files=$ac_clean_files_save\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for suffix of executables\" >&5\n$as_echo_n \"checking for suffix of executables... \" >&6; }\nif { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then :\n  # If both `conftest.exe' and `conftest' are `present' (well, observable)\n# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will\n# work properly (i.e., refer to `conftest.exe'), while it won't with\n# `rm'.\nfor ac_file in conftest.exe conftest conftest.*; do\n  test -f \"$ac_file\" || continue\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;\n    *.* ) ac_cv_exeext=`expr \"$ac_file\" : '[^.]*\\(\\..*\\)'`\n\t  break;;\n    * ) break;;\n  esac\ndone\nelse\n  { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"cannot compute suffix of executables: cannot compile and link\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nfi\nrm -f conftest conftest$ac_cv_exeext\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext\" >&5\n$as_echo \"$ac_cv_exeext\" >&6; }\n\nrm -f conftest.$ac_ext\nEXEEXT=$ac_cv_exeext\nac_exeext=$EXEEXT\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdio.h>\nint\nmain ()\n{\nFILE *f = fopen (\"conftest.out\", \"w\");\n return ferror (f) || fclose (f) != 0;\n\n  ;\n  return 0;\n}\n_ACEOF\nac_clean_files=\"$ac_clean_files conftest.out\"\n# Check that the compiler produces executables we can run.  If not, either\n# the compiler is broken, or we cross compile.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling\" >&5\n$as_echo_n \"checking whether we are cross compiling... \" >&6; }\nif test \"$cross_compiling\" != yes; then\n  { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n  if { ac_try='./conftest$ac_cv_exeext'\n  { { case \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_try\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; }; then\n    cross_compiling=no\n  else\n    if test \"$cross_compiling\" = maybe; then\n\tcross_compiling=yes\n    else\n\t{ { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"cannot run C compiled programs.\nIf you meant to cross compile, use \\`--host'.\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\n    fi\n  fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $cross_compiling\" >&5\n$as_echo \"$cross_compiling\" >&6; }\n\nrm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out\nac_clean_files=$ac_clean_files_save\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for suffix of object files\" >&5\n$as_echo_n \"checking for suffix of object files... \" >&6; }\nif ${ac_cv_objext+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.o conftest.obj\nif { { ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_compile\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then :\n  for ac_file in conftest.o conftest.obj conftest.*; do\n  test -f \"$ac_file\" || continue;\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;\n    *) ac_cv_objext=`expr \"$ac_file\" : '.*\\.\\(.*\\)'`\n       break;;\n  esac\ndone\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n{ { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"cannot compute suffix of object files: cannot compile\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nfi\nrm -f conftest.$ac_cv_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext\" >&5\n$as_echo \"$ac_cv_objext\" >&6; }\nOBJEXT=$ac_cv_objext\nac_objext=$OBJEXT\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler\" >&5\n$as_echo_n \"checking whether we are using the GNU C compiler... \" >&6; }\nif ${ac_cv_c_compiler_gnu+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n#ifndef __GNUC__\n       choke me\n#endif\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_compiler_gnu=yes\nelse\n  ac_compiler_gnu=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nac_cv_c_compiler_gnu=$ac_compiler_gnu\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu\" >&5\n$as_echo \"$ac_cv_c_compiler_gnu\" >&6; }\nif test $ac_compiler_gnu = yes; then\n  GCC=yes\nelse\n  GCC=\nfi\nac_test_CFLAGS=${CFLAGS+set}\nac_save_CFLAGS=$CFLAGS\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g\" >&5\n$as_echo_n \"checking whether $CC accepts -g... \" >&6; }\nif ${ac_cv_prog_cc_g+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_save_c_werror_flag=$ac_c_werror_flag\n   ac_c_werror_flag=yes\n   ac_cv_prog_cc_g=no\n   CFLAGS=\"-g\"\n   cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_prog_cc_g=yes\nelse\n  CFLAGS=\"\"\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n\nelse\n  ac_c_werror_flag=$ac_save_c_werror_flag\n\t CFLAGS=\"-g\"\n\t cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_prog_cc_g=yes\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n   ac_c_werror_flag=$ac_save_c_werror_flag\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g\" >&5\n$as_echo \"$ac_cv_prog_cc_g\" >&6; }\nif test \"$ac_test_CFLAGS\" = set; then\n  CFLAGS=$ac_save_CFLAGS\nelif test $ac_cv_prog_cc_g = yes; then\n  if test \"$GCC\" = yes; then\n    CFLAGS=\"-g -O2\"\n  else\n    CFLAGS=\"-g\"\n  fi\nelse\n  if test \"$GCC\" = yes; then\n    CFLAGS=\"-O2\"\n  else\n    CFLAGS=\n  fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89\" >&5\n$as_echo_n \"checking for $CC option to accept ISO C89... \" >&6; }\nif ${ac_cv_prog_cc_c89+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_cv_prog_cc_c89=no\nac_save_CC=$CC\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdarg.h>\n#include <stdio.h>\nstruct stat;\n/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */\nstruct buf { int x; };\nFILE * (*rcsopen) (struct buf *, struct stat *, int);\nstatic char *e (p, i)\n     char **p;\n     int i;\n{\n  return p[i];\n}\nstatic char *f (char * (*g) (char **, int), char **p, ...)\n{\n  char *s;\n  va_list v;\n  va_start (v,p);\n  s = g (p, va_arg (v,int));\n  va_end (v);\n  return s;\n}\n\n/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has\n   function prototypes and stuff, but not '\\xHH' hex character constants.\n   These don't provoke an error unfortunately, instead are silently treated\n   as 'x'.  The following induces an error, until -std is added to get\n   proper ANSI mode.  Curiously '\\x00'!='x' always comes out true, for an\n   array size at least.  It's necessary to write '\\x00'==0 to get something\n   that's true only with -std.  */\nint osf4_cc_array ['\\x00' == 0 ? 1 : -1];\n\n/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters\n   inside strings and character constants.  */\n#define FOO(x) 'x'\nint xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];\n\nint test (int i, double x);\nstruct s1 {int (*f) (int a);};\nstruct s2 {int (*f) (double a);};\nint pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);\nint argc;\nchar **argv;\nint\nmain ()\n{\nreturn f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];\n  ;\n  return 0;\n}\n_ACEOF\nfor ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \\\n\t-Ae \"-Aa -D_HPUX_SOURCE\" \"-Xc -D__EXTENSIONS__\"\ndo\n  CC=\"$ac_save_CC $ac_arg\"\n  if ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_prog_cc_c89=$ac_arg\nfi\nrm -f core conftest.err conftest.$ac_objext\n  test \"x$ac_cv_prog_cc_c89\" != \"xno\" && break\ndone\nrm -f conftest.$ac_ext\nCC=$ac_save_CC\n\nfi\n# AC_CACHE_VAL\ncase \"x$ac_cv_prog_cc_c89\" in\n  x)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: none needed\" >&5\n$as_echo \"none needed\" >&6; } ;;\n  xno)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: unsupported\" >&5\n$as_echo \"unsupported\" >&6; } ;;\n  *)\n    CC=\"$CC $ac_cv_prog_cc_c89\"\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89\" >&5\n$as_echo \"$ac_cv_prog_cc_c89\" >&6; } ;;\nesac\nif test \"x$ac_cv_prog_cc_c89\" != xno; then :\n\nfi\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor\" >&5\n$as_echo_n \"checking how to run the C preprocessor... \" >&6; }\n# On Suns, sometimes $CPP names a directory.\nif test -n \"$CPP\" && test -d \"$CPP\"; then\n  CPP=\nfi\nif test -z \"$CPP\"; then\n  if ${ac_cv_prog_CPP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n      # Double quotes because CPP needs to be expanded\n    for CPP in \"$CC -E\" \"$CC -E -traditional-cpp\" \"/lib/cpp\"\n    do\n      ac_preproc_ok=false\nfor ac_c_preproc_warn_flag in '' yes\ndo\n  # Use a header file that comes with gcc, so configuring glibc\n  # with a fresh cross-compiler works.\n  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n  # <limits.h> exists even on freestanding compilers.\n  # On the NeXT, cc -E runs the code through the compiler's parser,\n  # not just through cpp. \"Syntax error\" is here to catch this case.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\t\t     Syntax error\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n\nelse\n  # Broken: fails on valid input.\ncontinue\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\n  # OK, works on sane cases.  Now check whether nonexistent headers\n  # can be detected and how.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <ac_nonexistent.h>\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n  # Broken: success on invalid input.\ncontinue\nelse\n  # Passes both tests.\nac_preproc_ok=:\nbreak\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\ndone\n# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.\nrm -f conftest.i conftest.err conftest.$ac_ext\nif $ac_preproc_ok; then :\n  break\nfi\n\n    done\n    ac_cv_prog_CPP=$CPP\n\nfi\n  CPP=$ac_cv_prog_CPP\nelse\n  ac_cv_prog_CPP=$CPP\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CPP\" >&5\n$as_echo \"$CPP\" >&6; }\nac_preproc_ok=false\nfor ac_c_preproc_warn_flag in '' yes\ndo\n  # Use a header file that comes with gcc, so configuring glibc\n  # with a fresh cross-compiler works.\n  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n  # <limits.h> exists even on freestanding compilers.\n  # On the NeXT, cc -E runs the code through the compiler's parser,\n  # not just through cpp. \"Syntax error\" is here to catch this case.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\t\t     Syntax error\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n\nelse\n  # Broken: fails on valid input.\ncontinue\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\n  # OK, works on sane cases.  Now check whether nonexistent headers\n  # can be detected and how.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <ac_nonexistent.h>\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n  # Broken: success on invalid input.\ncontinue\nelse\n  # Passes both tests.\nac_preproc_ok=:\nbreak\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\ndone\n# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.\nrm -f conftest.i conftest.err conftest.$ac_ext\nif $ac_preproc_ok; then :\n\nelse\n  { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"C preprocessor \\\"$CPP\\\" fails sanity check\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nfi\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n# Find a good install program.  We prefer a C program (faster),\n# so one script is as good as another.  But avoid the broken or\n# incompatible versions:\n# SysV /etc/install, /usr/sbin/install\n# SunOS /usr/etc/install\n# IRIX /sbin/install\n# AIX /bin/install\n# AmigaOS /C/install, which installs bootblocks on floppy discs\n# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag\n# AFS /usr/afsws/bin/install, which mishandles nonexistent args\n# SVR4 /usr/ucb/install, which tries to use the nonexistent group \"staff\"\n# OS/2's system install, which has a completely different semantic\n# ./install, which can be erroneously created by make from ./install.sh.\n# Reject install programs that cannot install multiple files.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install\" >&5\n$as_echo_n \"checking for a BSD-compatible install... \" >&6; }\nif test -z \"$INSTALL\"; then\nif ${ac_cv_path_install+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    # Account for people who put trailing slashes in PATH elements.\ncase $as_dir/ in #((\n  ./ | .// | /[cC]/* | \\\n  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \\\n  ?:[\\\\/]os2[\\\\/]install[\\\\/]* | ?:[\\\\/]OS2[\\\\/]INSTALL[\\\\/]* | \\\n  /usr/ucb/* ) ;;\n  *)\n    # OSF1 and SCO ODT 3.0 have their own names for install.\n    # Don't use installbsd from OSF since it installs stuff as root\n    # by default.\n    for ac_prog in ginstall scoinst install; do\n      for ac_exec_ext in '' $ac_executable_extensions; do\n\tif as_fn_executable_p \"$as_dir/$ac_prog$ac_exec_ext\"; then\n\t  if test $ac_prog = install &&\n\t    grep dspmsg \"$as_dir/$ac_prog$ac_exec_ext\" >/dev/null 2>&1; then\n\t    # AIX install.  It has an incompatible calling convention.\n\t    :\n\t  elif test $ac_prog = install &&\n\t    grep pwplus \"$as_dir/$ac_prog$ac_exec_ext\" >/dev/null 2>&1; then\n\t    # program-specific install script used by HP pwplus--don't use.\n\t    :\n\t  else\n\t    rm -rf conftest.one conftest.two conftest.dir\n\t    echo one > conftest.one\n\t    echo two > conftest.two\n\t    mkdir conftest.dir\n\t    if \"$as_dir/$ac_prog$ac_exec_ext\" -c conftest.one conftest.two \"`pwd`/conftest.dir\" &&\n\t      test -s conftest.one && test -s conftest.two &&\n\t      test -s conftest.dir/conftest.one &&\n\t      test -s conftest.dir/conftest.two\n\t    then\n\t      ac_cv_path_install=\"$as_dir/$ac_prog$ac_exec_ext -c\"\n\t      break 3\n\t    fi\n\t  fi\n\tfi\n      done\n    done\n    ;;\nesac\n\n  done\nIFS=$as_save_IFS\n\nrm -rf conftest.one conftest.two conftest.dir\n\nfi\n  if test \"${ac_cv_path_install+set}\" = set; then\n    INSTALL=$ac_cv_path_install\n  else\n    # As a last resort, use the slow shell script.  Don't cache a\n    # value for INSTALL within a source directory, because that will\n    # break other packages using the cache if that directory is\n    # removed, or if the value is a relative name.\n    INSTALL=$ac_install_sh\n  fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $INSTALL\" >&5\n$as_echo \"$INSTALL\" >&6; }\n\n# Use test -z because SunOS4 sh mishandles braces in ${var-val}.\n# It thinks the first close brace ends the variable substitution.\ntest -z \"$INSTALL_PROGRAM\" && INSTALL_PROGRAM='${INSTALL}'\n\ntest -z \"$INSTALL_SCRIPT\" && INSTALL_SCRIPT='${INSTALL}'\n\ntest -z \"$INSTALL_DATA\" && INSTALL_DATA='${INSTALL} -m 644'\n\n\n\n# Make sure we can run config.sub.\n$SHELL \"$ac_aux_dir/config.sub\" sun4 >/dev/null 2>&1 ||\n  as_fn_error $? \"cannot run $SHELL $ac_aux_dir/config.sub\" \"$LINENO\" 5\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking build system type\" >&5\n$as_echo_n \"checking build system type... \" >&6; }\nif ${ac_cv_build+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_build_alias=$build_alias\ntest \"x$ac_build_alias\" = x &&\n  ac_build_alias=`$SHELL \"$ac_aux_dir/config.guess\"`\ntest \"x$ac_build_alias\" = x &&\n  as_fn_error $? \"cannot guess build type; you must specify one\" \"$LINENO\" 5\nac_cv_build=`$SHELL \"$ac_aux_dir/config.sub\" $ac_build_alias` ||\n  as_fn_error $? \"$SHELL $ac_aux_dir/config.sub $ac_build_alias failed\" \"$LINENO\" 5\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_build\" >&5\n$as_echo \"$ac_cv_build\" >&6; }\ncase $ac_cv_build in\n*-*-*) ;;\n*) as_fn_error $? \"invalid value of canonical build\" \"$LINENO\" 5;;\nesac\nbuild=$ac_cv_build\nac_save_IFS=$IFS; IFS='-'\nset x $ac_cv_build\nshift\nbuild_cpu=$1\nbuild_vendor=$2\nshift; shift\n# Remember, the first character of IFS is used to create $*,\n# except with old shells:\nbuild_os=$*\nIFS=$ac_save_IFS\ncase $build_os in *\\ *) build_os=`echo \"$build_os\" | sed 's/ /-/g'`;; esac\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking host system type\" >&5\n$as_echo_n \"checking host system type... \" >&6; }\nif ${ac_cv_host+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test \"x$host_alias\" = x; then\n  ac_cv_host=$ac_cv_build\nelse\n  ac_cv_host=`$SHELL \"$ac_aux_dir/config.sub\" $host_alias` ||\n    as_fn_error $? \"$SHELL $ac_aux_dir/config.sub $host_alias failed\" \"$LINENO\" 5\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_host\" >&5\n$as_echo \"$ac_cv_host\" >&6; }\ncase $ac_cv_host in\n*-*-*) ;;\n*) as_fn_error $? \"invalid value of canonical host\" \"$LINENO\" 5;;\nesac\nhost=$ac_cv_host\nac_save_IFS=$IFS; IFS='-'\nset x $ac_cv_host\nshift\nhost_cpu=$1\nhost_vendor=$2\nshift; shift\n# Remember, the first character of IFS is used to create $*,\n# except with old shells:\nhost_os=$*\nIFS=$ac_save_IFS\ncase $host_os in *\\ *) host_os=`echo \"$host_os\" | sed 's/ /-/g'`;; esac\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether to activate relocatable installation\" >&5\n$as_echo_n \"checking whether to activate relocatable installation... \" >&6; }\n  # Check whether --enable-relocatable was given.\nif test \"${enable_relocatable+set}\" = set; then :\n  enableval=$enable_relocatable; if test \"$enableval\" != no; then\n       RELOCATABLE=yes\n     else\n       RELOCATABLE=no\n     fi\n\nelse\n  RELOCATABLE=no\nfi\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $RELOCATABLE\" >&5\n$as_echo \"$RELOCATABLE\" >&6; }\n\n\n\n    if test \"X$prefix\" = \"XNONE\"; then\n    reloc_final_prefix=\"$ac_default_prefix\"\n  else\n    reloc_final_prefix=\"$prefix\"\n  fi\n\ncat >>confdefs.h <<_ACEOF\n#define INSTALLPREFIX \"${reloc_final_prefix}\"\n_ACEOF\n\n  if test $RELOCATABLE = yes; then\n\n$as_echo \"#define ENABLE_RELOCATABLE 1\" >>confdefs.h\n\n  fi\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e\" >&5\n$as_echo_n \"checking for grep that handles long lines and -e... \" >&6; }\nif ${ac_cv_path_GREP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -z \"$GREP\"; then\n  ac_path_GREP_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in grep ggrep; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_GREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_GREP\" || continue\n# Check for GNU ac_path_GREP and select it if it is found.\n  # Check for GNU $ac_path_GREP\ncase `\"$ac_path_GREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_GREP=\"$ac_path_GREP\" ac_path_GREP_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo 'GREP' >> \"conftest.nl\"\n    \"$ac_path_GREP\" -e 'GREP$' -e '-(cannot match)-' < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_GREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_GREP=\"$ac_path_GREP\"\n      ac_path_GREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_GREP_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_GREP\"; then\n    as_fn_error $? \"no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_GREP=$GREP\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP\" >&5\n$as_echo \"$ac_cv_path_GREP\" >&6; }\n GREP=\"$ac_cv_path_GREP\"\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for egrep\" >&5\n$as_echo_n \"checking for egrep... \" >&6; }\nif ${ac_cv_path_EGREP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1\n   then ac_cv_path_EGREP=\"$GREP -E\"\n   else\n     if test -z \"$EGREP\"; then\n  ac_path_EGREP_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in egrep; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_EGREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_EGREP\" || continue\n# Check for GNU ac_path_EGREP and select it if it is found.\n  # Check for GNU $ac_path_EGREP\ncase `\"$ac_path_EGREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_EGREP=\"$ac_path_EGREP\" ac_path_EGREP_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo 'EGREP' >> \"conftest.nl\"\n    \"$ac_path_EGREP\" 'EGREP$' < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_EGREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_EGREP=\"$ac_path_EGREP\"\n      ac_path_EGREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_EGREP_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_EGREP\"; then\n    as_fn_error $? \"no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_EGREP=$EGREP\nfi\n\n   fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP\" >&5\n$as_echo \"$ac_cv_path_EGREP\" >&6; }\n EGREP=\"$ac_cv_path_EGREP\"\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ANSI C header files\" >&5\n$as_echo_n \"checking for ANSI C header files... \" >&6; }\nif ${ac_cv_header_stdc+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdlib.h>\n#include <stdarg.h>\n#include <string.h>\n#include <float.h>\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_header_stdc=yes\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nif test $ac_cv_header_stdc = yes; then\n  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <string.h>\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"memchr\" >/dev/null 2>&1; then :\n\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f conftest*\n\nfi\n\nif test $ac_cv_header_stdc = yes; then\n  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdlib.h>\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"free\" >/dev/null 2>&1; then :\n\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f conftest*\n\nfi\n\nif test $ac_cv_header_stdc = yes; then\n  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.\n  if test \"$cross_compiling\" = yes; then :\n  :\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <ctype.h>\n#include <stdlib.h>\n#if ((' ' & 0x0FF) == 0x020)\n# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')\n# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))\n#else\n# define ISLOWER(c) \\\n\t\t   (('a' <= (c) && (c) <= 'i') \\\n\t\t     || ('j' <= (c) && (c) <= 'r') \\\n\t\t     || ('s' <= (c) && (c) <= 'z'))\n# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))\n#endif\n\n#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))\nint\nmain ()\n{\n  int i;\n  for (i = 0; i < 256; i++)\n    if (XOR (islower (i), ISLOWER (i))\n\t|| toupper (i) != TOUPPER (i))\n      return 2;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\nfi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc\" >&5\n$as_echo \"$ac_cv_header_stdc\" >&6; }\nif test $ac_cv_header_stdc = yes; then\n\n$as_echo \"#define STDC_HEADERS 1\" >>confdefs.h\n\nfi\n\n# On IRIX 5.3, sys/types and inttypes.h are conflicting.\nfor ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \\\n\t\t  inttypes.h stdint.h unistd.h\ndo :\n  as_ac_Header=`$as_echo \"ac_cv_header_$ac_header\" | $as_tr_sh`\nac_fn_c_check_header_compile \"$LINENO\" \"$ac_header\" \"$as_ac_Header\" \"$ac_includes_default\n\"\nif eval test \\\"x\\$\"$as_ac_Header\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_$ac_header\" | $as_tr_cpp` 1\n_ACEOF\n\nfi\n\ndone\n\n\n\n  ac_fn_c_check_header_mongrel \"$LINENO\" \"minix/config.h\" \"ac_cv_header_minix_config_h\" \"$ac_includes_default\"\nif test \"x$ac_cv_header_minix_config_h\" = xyes; then :\n  MINIX=yes\nelse\n  MINIX=\nfi\n\n\n  if test \"$MINIX\" = yes; then\n\n$as_echo \"#define _POSIX_SOURCE 1\" >>confdefs.h\n\n\n$as_echo \"#define _POSIX_1_SOURCE 2\" >>confdefs.h\n\n\n$as_echo \"#define _MINIX 1\" >>confdefs.h\n\n  fi\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__\" >&5\n$as_echo_n \"checking whether it is safe to define __EXTENSIONS__... \" >&6; }\nif ${ac_cv_safe_to_define___extensions__+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#         define __EXTENSIONS__ 1\n          $ac_includes_default\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_safe_to_define___extensions__=yes\nelse\n  ac_cv_safe_to_define___extensions__=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__\" >&5\n$as_echo \"$ac_cv_safe_to_define___extensions__\" >&6; }\n  test $ac_cv_safe_to_define___extensions__ = yes &&\n    $as_echo \"#define __EXTENSIONS__ 1\" >>confdefs.h\n\n  $as_echo \"#define _ALL_SOURCE 1\" >>confdefs.h\n\n  $as_echo \"#define _GNU_SOURCE 1\" >>confdefs.h\n\n  $as_echo \"#define _POSIX_PTHREAD_SEMANTICS 1\" >>confdefs.h\n\n  $as_echo \"#define _TANDEM_SOURCE 1\" >>confdefs.h\n\n\n\n\n\n\n\n\ncase `pwd` in\n  *\\ * | *\\\t*)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \\`pwd\\`\" >&5\n$as_echo \"$as_me: WARNING: Libtool does not cope well with whitespace in \\`pwd\\`\" >&2;} ;;\nesac\n\n\n\nmacro_version='2.4.6'\nmacro_revision='2.4.6'\n\n\n\n\n\n\n\n\n\n\n\n\n\nltmain=$ac_aux_dir/ltmain.sh\n\n# Backslashify metacharacters that are still active within\n# double-quoted strings.\nsed_quote_subst='s/\\([\"`$\\\\]\\)/\\\\\\1/g'\n\n# Same as above, but do not quote variable references.\ndouble_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\n\n# Sed substitution to delay expansion of an escaped shell variable in a\n# double_quote_subst'ed string.\ndelay_variable_subst='s/\\\\\\\\\\\\\\\\\\\\\\$/\\\\\\\\\\\\$/g'\n\n# Sed substitution to delay expansion of an escaped single quote.\ndelay_single_quote_subst='s/'\\''/'\\'\\\\\\\\\\\\\\'\\''/g'\n\n# Sed substitution to avoid accidental globbing in evaled expressions\nno_glob_subst='s/\\*/\\\\\\*/g'\n\nECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to print strings\" >&5\n$as_echo_n \"checking how to print strings... \" >&6; }\n# Test print first, because it will be a builtin if present.\nif test \"X`( print -r -- -n ) 2>/dev/null`\" = X-n && \\\n   test \"X`print -r -- $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='print -r --'\nelif test \"X`printf %s $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='printf %s\\n'\nelse\n  # Use this function as a fallback that always works.\n  func_fallback_echo ()\n  {\n    eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n  }\n  ECHO='func_fallback_echo'\nfi\n\n# func_echo_all arg...\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"\"\n}\n\ncase $ECHO in\n  printf*) { $as_echo \"$as_me:${as_lineno-$LINENO}: result: printf\" >&5\n$as_echo \"printf\" >&6; } ;;\n  print*) { $as_echo \"$as_me:${as_lineno-$LINENO}: result: print -r\" >&5\n$as_echo \"print -r\" >&6; } ;;\n  *) { $as_echo \"$as_me:${as_lineno-$LINENO}: result: cat\" >&5\n$as_echo \"cat\" >&6; } ;;\nesac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output\" >&5\n$as_echo_n \"checking for a sed that does not truncate output... \" >&6; }\nif ${ac_cv_path_SED+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n            ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/\n     for ac_i in 1 2 3 4 5 6 7; do\n       ac_script=\"$ac_script$as_nl$ac_script\"\n     done\n     echo \"$ac_script\" 2>/dev/null | sed 99q >conftest.sed\n     { ac_script=; unset ac_script;}\n     if test -z \"$SED\"; then\n  ac_path_SED_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in sed gsed; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_SED=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_SED\" || continue\n# Check for GNU ac_path_SED and select it if it is found.\n  # Check for GNU $ac_path_SED\ncase `\"$ac_path_SED\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_SED=\"$ac_path_SED\" ac_path_SED_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo '' >> \"conftest.nl\"\n    \"$ac_path_SED\" -f conftest.sed < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_SED_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_SED=\"$ac_path_SED\"\n      ac_path_SED_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_SED_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_SED\"; then\n    as_fn_error $? \"no acceptable sed could be found in \\$PATH\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_SED=$SED\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED\" >&5\n$as_echo \"$ac_cv_path_SED\" >&6; }\n SED=\"$ac_cv_path_SED\"\n  rm -f conftest.sed\n\ntest -z \"$SED\" && SED=sed\nXsed=\"$SED -e 1s/^X//\"\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for fgrep\" >&5\n$as_echo_n \"checking for fgrep... \" >&6; }\nif ${ac_cv_path_FGREP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1\n   then ac_cv_path_FGREP=\"$GREP -F\"\n   else\n     if test -z \"$FGREP\"; then\n  ac_path_FGREP_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in fgrep; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_FGREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_FGREP\" || continue\n# Check for GNU ac_path_FGREP and select it if it is found.\n  # Check for GNU $ac_path_FGREP\ncase `\"$ac_path_FGREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_FGREP=\"$ac_path_FGREP\" ac_path_FGREP_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo 'FGREP' >> \"conftest.nl\"\n    \"$ac_path_FGREP\" FGREP < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_FGREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_FGREP=\"$ac_path_FGREP\"\n      ac_path_FGREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_FGREP_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_FGREP\"; then\n    as_fn_error $? \"no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_FGREP=$FGREP\nfi\n\n   fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP\" >&5\n$as_echo \"$ac_cv_path_FGREP\" >&6; }\n FGREP=\"$ac_cv_path_FGREP\"\n\n\ntest -z \"$GREP\" && GREP=grep\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# Check whether --with-gnu-ld was given.\nif test \"${with_gnu_ld+set}\" = set; then :\n  withval=$with_gnu_ld; test no = \"$withval\" || with_gnu_ld=yes\nelse\n  with_gnu_ld=no\nfi\n\nac_prog=ld\nif test yes = \"$GCC\"; then\n  # Check if gcc -print-prog-name=ld gives a path.\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ld used by $CC\" >&5\n$as_echo_n \"checking for ld used by $CC... \" >&6; }\n  case $host in\n  *-*-mingw*)\n    # gcc leaves a trailing carriage return, which upsets mingw\n    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\\015'` ;;\n  *)\n    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;\n  esac\n  case $ac_prog in\n    # Accept absolute paths.\n    [\\\\/]* | ?:[\\\\/]*)\n      re_direlt='/[^/][^/]*/\\.\\./'\n      # Canonicalize the pathname of ld\n      ac_prog=`$ECHO \"$ac_prog\"| $SED 's%\\\\\\\\%/%g'`\n      while $ECHO \"$ac_prog\" | $GREP \"$re_direlt\" > /dev/null 2>&1; do\n\tac_prog=`$ECHO $ac_prog| $SED \"s%$re_direlt%/%\"`\n      done\n      test -z \"$LD\" && LD=$ac_prog\n      ;;\n  \"\")\n    # If it fails, then pretend we aren't using GCC.\n    ac_prog=ld\n    ;;\n  *)\n    # If it is relative, then search for the first ld in PATH.\n    with_gnu_ld=unknown\n    ;;\n  esac\nelif test yes = \"$with_gnu_ld\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for GNU ld\" >&5\n$as_echo_n \"checking for GNU ld... \" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for non-GNU ld\" >&5\n$as_echo_n \"checking for non-GNU ld... \" >&6; }\nfi\nif ${lt_cv_path_LD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -z \"$LD\"; then\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n  for ac_dir in $PATH; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$ac_prog\" || test -f \"$ac_dir/$ac_prog$ac_exeext\"; then\n      lt_cv_path_LD=$ac_dir/$ac_prog\n      # Check to see if the program is GNU ld.  I'd rather use --version,\n      # but apparently some variants of GNU ld only accept -v.\n      # Break only if it was the GNU/non-GNU ld that we prefer.\n      case `\"$lt_cv_path_LD\" -v 2>&1 </dev/null` in\n      *GNU* | *'with BFD'*)\n\ttest no != \"$with_gnu_ld\" && break\n\t;;\n      *)\n\ttest yes != \"$with_gnu_ld\" && break\n\t;;\n      esac\n    fi\n  done\n  IFS=$lt_save_ifs\nelse\n  lt_cv_path_LD=$LD # Let the user override the test with a path.\nfi\nfi\n\nLD=$lt_cv_path_LD\nif test -n \"$LD\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $LD\" >&5\n$as_echo \"$LD\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\ntest -z \"$LD\" && as_fn_error $? \"no acceptable ld found in \\$PATH\" \"$LINENO\" 5\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld\" >&5\n$as_echo_n \"checking if the linker ($LD) is GNU ld... \" >&6; }\nif ${lt_cv_prog_gnu_ld+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  # I'd rather use --version here, but apparently some GNU lds only accept -v.\ncase `$LD -v 2>&1 </dev/null` in\n*GNU* | *'with BFD'*)\n  lt_cv_prog_gnu_ld=yes\n  ;;\n*)\n  lt_cv_prog_gnu_ld=no\n  ;;\nesac\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_gnu_ld\" >&5\n$as_echo \"$lt_cv_prog_gnu_ld\" >&6; }\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)\" >&5\n$as_echo_n \"checking for BSD- or MS-compatible name lister (nm)... \" >&6; }\nif ${lt_cv_path_NM+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$NM\"; then\n  # Let the user override the test.\n  lt_cv_path_NM=$NM\nelse\n  lt_nm_to_check=${ac_tool_prefix}nm\n  if test -n \"$ac_tool_prefix\" && test \"$build\" = \"$host\"; then\n    lt_nm_to_check=\"$lt_nm_to_check nm\"\n  fi\n  for lt_tmp_nm in $lt_nm_to_check; do\n    lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do\n      IFS=$lt_save_ifs\n      test -z \"$ac_dir\" && ac_dir=.\n      tmp_nm=$ac_dir/$lt_tmp_nm\n      if test -f \"$tmp_nm\" || test -f \"$tmp_nm$ac_exeext\"; then\n\t# Check to see if the nm accepts a BSD-compat flag.\n\t# Adding the 'sed 1q' prevents false positives on HP-UX, which says:\n\t#   nm: unknown option \"B\" ignored\n\t# Tru64's nm complains that /dev/null is an invalid object file\n\t# MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty\n\tcase $build_os in\n\tmingw*) lt_bad_file=conftest.nm/nofile ;;\n\t*) lt_bad_file=/dev/null ;;\n\tesac\n\tcase `\"$tmp_nm\" -B $lt_bad_file 2>&1 | sed '1q'` in\n\t*$lt_bad_file* | *'Invalid file or object type'*)\n\t  lt_cv_path_NM=\"$tmp_nm -B\"\n\t  break 2\n\t  ;;\n\t*)\n\t  case `\"$tmp_nm\" -p /dev/null 2>&1 | sed '1q'` in\n\t  */dev/null*)\n\t    lt_cv_path_NM=\"$tmp_nm -p\"\n\t    break 2\n\t    ;;\n\t  *)\n\t    lt_cv_path_NM=${lt_cv_path_NM=\"$tmp_nm\"} # keep the first match, but\n\t    continue # so that we can try to find one that supports BSD flags\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n      fi\n    done\n    IFS=$lt_save_ifs\n  done\n  : ${lt_cv_path_NM=no}\nfi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM\" >&5\n$as_echo \"$lt_cv_path_NM\" >&6; }\nif test no != \"$lt_cv_path_NM\"; then\n  NM=$lt_cv_path_NM\nelse\n  # Didn't find any BSD compatible name lister, look for dumpbin.\n  if test -n \"$DUMPBIN\"; then :\n    # Let the user override the test.\n  else\n    if test -n \"$ac_tool_prefix\"; then\n  for ac_prog in dumpbin \"link -dump\"\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DUMPBIN+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DUMPBIN\"; then\n  ac_cv_prog_DUMPBIN=\"$DUMPBIN\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DUMPBIN=\"$ac_tool_prefix$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDUMPBIN=$ac_cv_prog_DUMPBIN\nif test -n \"$DUMPBIN\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DUMPBIN\" >&5\n$as_echo \"$DUMPBIN\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n    test -n \"$DUMPBIN\" && break\n  done\nfi\nif test -z \"$DUMPBIN\"; then\n  ac_ct_DUMPBIN=$DUMPBIN\n  for ac_prog in dumpbin \"link -dump\"\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DUMPBIN\"; then\n  ac_cv_prog_ac_ct_DUMPBIN=\"$ac_ct_DUMPBIN\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DUMPBIN=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN\nif test -n \"$ac_ct_DUMPBIN\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN\" >&5\n$as_echo \"$ac_ct_DUMPBIN\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_DUMPBIN\" && break\ndone\n\n  if test \"x$ac_ct_DUMPBIN\" = x; then\n    DUMPBIN=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DUMPBIN=$ac_ct_DUMPBIN\n  fi\nfi\n\n    case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in\n    *COFF*)\n      DUMPBIN=\"$DUMPBIN -symbols -headers\"\n      ;;\n    *)\n      DUMPBIN=:\n      ;;\n    esac\n  fi\n\n  if test : != \"$DUMPBIN\"; then\n    NM=$DUMPBIN\n  fi\nfi\ntest -z \"$NM\" && NM=nm\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface\" >&5\n$as_echo_n \"checking the name lister ($NM) interface... \" >&6; }\nif ${lt_cv_nm_interface+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_nm_interface=\"BSD nm\"\n  echo \"int some_variable = 0;\" > conftest.$ac_ext\n  (eval echo \"\\\"\\$as_me:$LINENO: $ac_compile\\\"\" >&5)\n  (eval \"$ac_compile\" 2>conftest.err)\n  cat conftest.err >&5\n  (eval echo \"\\\"\\$as_me:$LINENO: $NM \\\\\\\"conftest.$ac_objext\\\\\\\"\\\"\" >&5)\n  (eval \"$NM \\\"conftest.$ac_objext\\\"\" 2>conftest.err > conftest.out)\n  cat conftest.err >&5\n  (eval echo \"\\\"\\$as_me:$LINENO: output\\\"\" >&5)\n  cat conftest.out >&5\n  if $GREP 'External.*some_variable' conftest.out > /dev/null; then\n    lt_cv_nm_interface=\"MS dumpbin\"\n  fi\n  rm -f conftest*\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface\" >&5\n$as_echo \"$lt_cv_nm_interface\" >&6; }\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether ln -s works\" >&5\n$as_echo_n \"checking whether ln -s works... \" >&6; }\nLN_S=$as_ln_s\nif test \"$LN_S\" = \"ln -s\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no, using $LN_S\" >&5\n$as_echo \"no, using $LN_S\" >&6; }\nfi\n\n# find the maximum length of command line arguments\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments\" >&5\n$as_echo_n \"checking the maximum length of command line arguments... \" >&6; }\nif ${lt_cv_sys_max_cmd_len+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n    i=0\n  teststring=ABCD\n\n  case $build_os in\n  msdosdjgpp*)\n    # On DJGPP, this test can blow up pretty badly due to problems in libc\n    # (any single argument exceeding 2000 bytes causes a buffer overrun\n    # during glob expansion).  Even if it were fixed, the result of this\n    # check would be larger than it should be.\n    lt_cv_sys_max_cmd_len=12288;    # 12K is about right\n    ;;\n\n  gnu*)\n    # Under GNU Hurd, this test is not required because there is\n    # no limit to the length of command line arguments.\n    # Libtool will interpret -1 as no limit whatsoever\n    lt_cv_sys_max_cmd_len=-1;\n    ;;\n\n  cygwin* | mingw* | cegcc*)\n    # On Win9x/ME, this test blows up -- it succeeds, but takes\n    # about 5 minutes as the teststring grows exponentially.\n    # Worse, since 9x/ME are not pre-emptively multitasking,\n    # you end up with a \"frozen\" computer, even though with patience\n    # the test eventually succeeds (with a max line length of 256k).\n    # Instead, let's just punt: use the minimum linelength reported by\n    # all of the supported platforms: 8192 (on NT/2K/XP).\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  mint*)\n    # On MiNT this can take a long time and run out of memory.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  amigaos*)\n    # On AmigaOS with pdksh, this test takes hours, literally.\n    # So we just punt and use a minimum line length of 8192.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)\n    # This has been around since 386BSD, at least.  Likely further.\n    if test -x /sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`\n    elif test -x /usr/sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`\n    else\n      lt_cv_sys_max_cmd_len=65536\t# usable default for all BSDs\n    fi\n    # And add a safety zone\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    ;;\n\n  interix*)\n    # We know the value 262144 and hardcode it with a safety zone (like BSD)\n    lt_cv_sys_max_cmd_len=196608\n    ;;\n\n  os2*)\n    # The test takes a long time on OS/2.\n    lt_cv_sys_max_cmd_len=8192\n    ;;\n\n  osf*)\n    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure\n    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not\n    # nice to cause kernel panics so lets avoid the loop below.\n    # First set a reasonable default.\n    lt_cv_sys_max_cmd_len=16384\n    #\n    if test -x /sbin/sysconfig; then\n      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in\n        *1*) lt_cv_sys_max_cmd_len=-1 ;;\n      esac\n    fi\n    ;;\n  sco3.2v5*)\n    lt_cv_sys_max_cmd_len=102400\n    ;;\n  sysv5* | sco5v6* | sysv4.2uw2*)\n    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`\n    if test -n \"$kargmax\"; then\n      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[\t ]//'`\n    else\n      lt_cv_sys_max_cmd_len=32768\n    fi\n    ;;\n  *)\n    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`\n    if test -n \"$lt_cv_sys_max_cmd_len\" && \\\n       test undefined != \"$lt_cv_sys_max_cmd_len\"; then\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    else\n      # Make teststring a little bigger before we do anything with it.\n      # a 1K string should be a reasonable start.\n      for i in 1 2 3 4 5 6 7 8; do\n        teststring=$teststring$teststring\n      done\n      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}\n      # If test is not a shell built-in, we'll probably end up computing a\n      # maximum length that is only half of the actual maximum length, but\n      # we can't tell.\n      while { test X`env echo \"$teststring$teststring\" 2>/dev/null` \\\n\t         = \"X$teststring$teststring\"; } >/dev/null 2>&1 &&\n\t      test 17 != \"$i\" # 1/2 MB should be enough\n      do\n        i=`expr $i + 1`\n        teststring=$teststring$teststring\n      done\n      # Only check the string length outside the loop.\n      lt_cv_sys_max_cmd_len=`expr \"X$teststring\" : \".*\" 2>&1`\n      teststring=\n      # Add a significant safety factor because C++ compilers can tack on\n      # massive amounts of additional arguments before passing them to the\n      # linker.  It appears as though 1/2 is a usable value.\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 2`\n    fi\n    ;;\n  esac\n\nfi\n\nif test -n \"$lt_cv_sys_max_cmd_len\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len\" >&5\n$as_echo \"$lt_cv_sys_max_cmd_len\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: none\" >&5\n$as_echo \"none\" >&6; }\nfi\nmax_cmd_len=$lt_cv_sys_max_cmd_len\n\n\n\n\n\n\n: ${CP=\"cp -f\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n\nif ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then\n  lt_unset=unset\nelse\n  lt_unset=false\nfi\n\n\n\n\n\n# test EBCDIC or ASCII\ncase `echo X|tr X '\\101'` in\n A) # ASCII based system\n    # \\n is not interpreted correctly by Solaris 8 /usr/ucb/tr\n  lt_SP2NL='tr \\040 \\012'\n  lt_NL2SP='tr \\015\\012 \\040\\040'\n  ;;\n *) # EBCDIC based system\n  lt_SP2NL='tr \\100 \\n'\n  lt_NL2SP='tr \\r\\n \\100\\100'\n  ;;\nesac\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format\" >&5\n$as_echo_n \"checking how to convert $build file names to $host format... \" >&6; }\nif ${lt_cv_to_host_file_cmd+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case $host in\n  *-*-mingw* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32\n        ;;\n      *-*-cygwin* )\n        lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32\n        ;;\n      * ) # otherwise, assume *nix\n        lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32\n        ;;\n    esac\n    ;;\n  *-*-cygwin* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin\n        ;;\n      *-*-cygwin* )\n        lt_cv_to_host_file_cmd=func_convert_file_noop\n        ;;\n      * ) # otherwise, assume *nix\n        lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin\n        ;;\n    esac\n    ;;\n  * ) # unhandled hosts (and \"normal\" native builds)\n    lt_cv_to_host_file_cmd=func_convert_file_noop\n    ;;\nesac\n\nfi\n\nto_host_file_cmd=$lt_cv_to_host_file_cmd\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd\" >&5\n$as_echo \"$lt_cv_to_host_file_cmd\" >&6; }\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format\" >&5\n$as_echo_n \"checking how to convert $build file names to toolchain format... \" >&6; }\nif ${lt_cv_to_tool_file_cmd+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  #assume ordinary cross tools, or native build.\nlt_cv_to_tool_file_cmd=func_convert_file_noop\ncase $host in\n  *-*-mingw* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32\n        ;;\n    esac\n    ;;\nesac\n\nfi\n\nto_tool_file_cmd=$lt_cv_to_tool_file_cmd\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd\" >&5\n$as_echo \"$lt_cv_to_tool_file_cmd\" >&6; }\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files\" >&5\n$as_echo_n \"checking for $LD option to reload object files... \" >&6; }\nif ${lt_cv_ld_reload_flag+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ld_reload_flag='-r'\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag\" >&5\n$as_echo \"$lt_cv_ld_reload_flag\" >&6; }\nreload_flag=$lt_cv_ld_reload_flag\ncase $reload_flag in\n\"\" | \" \"*) ;;\n*) reload_flag=\" $reload_flag\" ;;\nesac\nreload_cmds='$LD$reload_flag -o $output$reload_objs'\ncase $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    if test yes != \"$GCC\"; then\n      reload_cmds=false\n    fi\n    ;;\n  darwin*)\n    if test yes = \"$GCC\"; then\n      reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs'\n    else\n      reload_cmds='$LD$reload_flag -o $output$reload_objs'\n    fi\n    ;;\nesac\n\n\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}objdump\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OBJDUMP\"; then\n  ac_cv_prog_OBJDUMP=\"$OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OBJDUMP=\"${ac_tool_prefix}objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOBJDUMP=$ac_cv_prog_OBJDUMP\nif test -n \"$OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OBJDUMP\" >&5\n$as_echo \"$OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OBJDUMP\"; then\n  ac_ct_OBJDUMP=$OBJDUMP\n  # Extract the first word of \"objdump\", so it can be a program name with args.\nset dummy objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OBJDUMP\"; then\n  ac_cv_prog_ac_ct_OBJDUMP=\"$ac_ct_OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OBJDUMP=\"objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP\nif test -n \"$ac_ct_OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP\" >&5\n$as_echo \"$ac_ct_OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OBJDUMP\" = x; then\n    OBJDUMP=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OBJDUMP=$ac_ct_OBJDUMP\n  fi\nelse\n  OBJDUMP=\"$ac_cv_prog_OBJDUMP\"\nfi\n\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries\" >&5\n$as_echo_n \"checking how to recognize dependent libraries... \" >&6; }\nif ${lt_cv_deplibs_check_method+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_file_magic_cmd='$MAGIC_CMD'\nlt_cv_file_magic_test_file=\nlt_cv_deplibs_check_method='unknown'\n# Need to set the preceding variable on all platforms that support\n# interlibrary dependencies.\n# 'none' -- dependencies not supported.\n# 'unknown' -- same as none, but documents that we really don't know.\n# 'pass_all' -- all dependencies passed with no checks.\n# 'test_compile' -- check by making test program.\n# 'file_magic [[regex]]' -- check by looking for files in library path\n# that responds to the $file_magic_cmd with a given extended regex.\n# If you have 'file' or equivalent on your system and you're not sure\n# whether 'pass_all' will *always* work, you probably want this one.\n\ncase $host_os in\naix[4-9]*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbeos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbsdi[45]*)\n  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'\n  lt_cv_file_magic_cmd='/usr/bin/file -L'\n  lt_cv_file_magic_test_file=/shlib/libc.so\n  ;;\n\ncygwin*)\n  # func_win32_libid is a shell function defined in ltmain.sh\n  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n  lt_cv_file_magic_cmd='func_win32_libid'\n  ;;\n\nmingw* | pw32*)\n  # Base MSYS/MinGW do not provide the 'file' command needed by\n  # func_win32_libid shell function, so use a weaker test based on 'objdump',\n  # unless we find 'file', for example because we are cross-compiling.\n  if ( file / ) >/dev/null 2>&1; then\n    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n    lt_cv_file_magic_cmd='func_win32_libid'\n  else\n    # Keep this pattern in sync with the one in func_win32_libid.\n    lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'\n    lt_cv_file_magic_cmd='$OBJDUMP -f'\n  fi\n  ;;\n\ncegcc*)\n  # use the weaker test based on 'objdump'. See mingw*.\n  lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'\n  lt_cv_file_magic_cmd='$OBJDUMP -f'\n  ;;\n\ndarwin* | rhapsody*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nfreebsd* | dragonfly*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    case $host_cpu in\n    i*86 )\n      # Not sure whether the presence of OpenBSD here was a mistake.\n      # Let's accept both of them until this is cleared up.\n      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library'\n      lt_cv_file_magic_cmd=/usr/bin/file\n      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`\n      ;;\n    esac\n  else\n    lt_cv_deplibs_check_method=pass_all\n  fi\n  ;;\n\nhaiku*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nhpux10.20* | hpux11*)\n  lt_cv_file_magic_cmd=/usr/bin/file\n  case $host_cpu in\n  ia64*)\n    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'\n    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so\n    ;;\n  hppa*64*)\n    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\\.[0-9]'\n    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl\n    ;;\n  *)\n    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\\.[0-9]) shared library'\n    lt_cv_file_magic_test_file=/usr/lib/libc.sl\n    ;;\n  esac\n  ;;\n\ninterix[3-9]*)\n  # PIC code is broken on Interix 3.x, that's why |\\.a not |_pic\\.a here\n  lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so|\\.a)$'\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $LD in\n  *-32|*\"-32 \") libmagic=32-bit;;\n  *-n32|*\"-n32 \") libmagic=N32;;\n  *-64|*\"-64 \") libmagic=64-bit;;\n  *) libmagic=never-match;;\n  esac\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\n# This must be glibc/ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nnetbsd*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so|_pic\\.a)$'\n  fi\n  ;;\n\nnewos6*)\n  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)'\n  lt_cv_file_magic_cmd=/usr/bin/file\n  lt_cv_file_magic_test_file=/usr/lib/libnls.so\n  ;;\n\n*nto* | *qnx*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nopenbsd* | bitrig*)\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|\\.so|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|_pic\\.a)$'\n  fi\n  ;;\n\nosf3* | osf4* | osf5*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nrdos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsolaris*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv4 | sysv4.3*)\n  case $host_vendor in\n  motorola)\n    lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]'\n    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`\n    ;;\n  ncr)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  sequent)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )'\n    ;;\n  sni)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method=\"file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib\"\n    lt_cv_file_magic_test_file=/lib/libc.so\n    ;;\n  siemens)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  pc)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  esac\n  ;;\n\ntpf*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nos2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nesac\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method\" >&5\n$as_echo \"$lt_cv_deplibs_check_method\" >&6; }\n\nfile_magic_glob=\nwant_nocaseglob=no\nif test \"$build\" = \"$host\"; then\n  case $host_os in\n  mingw* | pw32*)\n    if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then\n      want_nocaseglob=yes\n    else\n      file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e \"s/\\(..\\)/s\\/[\\1]\\/[\\1]\\/g;/g\"`\n    fi\n    ;;\n  esac\nfi\n\nfile_magic_cmd=$lt_cv_file_magic_cmd\ndeplibs_check_method=$lt_cv_deplibs_check_method\ntest -z \"$deplibs_check_method\" && deplibs_check_method=unknown\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}dlltool\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DLLTOOL\"; then\n  ac_cv_prog_DLLTOOL=\"$DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DLLTOOL=\"${ac_tool_prefix}dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDLLTOOL=$ac_cv_prog_DLLTOOL\nif test -n \"$DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DLLTOOL\" >&5\n$as_echo \"$DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_DLLTOOL\"; then\n  ac_ct_DLLTOOL=$DLLTOOL\n  # Extract the first word of \"dlltool\", so it can be a program name with args.\nset dummy dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DLLTOOL\"; then\n  ac_cv_prog_ac_ct_DLLTOOL=\"$ac_ct_DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DLLTOOL=\"dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL\nif test -n \"$ac_ct_DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL\" >&5\n$as_echo \"$ac_ct_DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_DLLTOOL\" = x; then\n    DLLTOOL=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DLLTOOL=$ac_ct_DLLTOOL\n  fi\nelse\n  DLLTOOL=\"$ac_cv_prog_DLLTOOL\"\nfi\n\ntest -z \"$DLLTOOL\" && DLLTOOL=dlltool\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries\" >&5\n$as_echo_n \"checking how to associate runtime and link libraries... \" >&6; }\nif ${lt_cv_sharedlib_from_linklib_cmd+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_sharedlib_from_linklib_cmd='unknown'\n\ncase $host_os in\ncygwin* | mingw* | pw32* | cegcc*)\n  # two different shell functions defined in ltmain.sh;\n  # decide which one to use based on capabilities of $DLLTOOL\n  case `$DLLTOOL --help 2>&1` in\n  *--identify-strict*)\n    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib\n    ;;\n  *)\n    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback\n    ;;\n  esac\n  ;;\n*)\n  # fallback: assume linklib IS sharedlib\n  lt_cv_sharedlib_from_linklib_cmd=$ECHO\n  ;;\nesac\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd\" >&5\n$as_echo \"$lt_cv_sharedlib_from_linklib_cmd\" >&6; }\nsharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd\ntest -z \"$sharedlib_from_linklib_cmd\" && sharedlib_from_linklib_cmd=$ECHO\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  for ac_prog in ar\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_AR+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$AR\"; then\n  ac_cv_prog_AR=\"$AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_AR=\"$ac_tool_prefix$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nAR=$ac_cv_prog_AR\nif test -n \"$AR\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $AR\" >&5\n$as_echo \"$AR\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n    test -n \"$AR\" && break\n  done\nfi\nif test -z \"$AR\"; then\n  ac_ct_AR=$AR\n  for ac_prog in ar\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_AR+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_AR\"; then\n  ac_cv_prog_ac_ct_AR=\"$ac_ct_AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_AR=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_AR=$ac_cv_prog_ac_ct_AR\nif test -n \"$ac_ct_AR\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR\" >&5\n$as_echo \"$ac_ct_AR\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_AR\" && break\ndone\n\n  if test \"x$ac_ct_AR\" = x; then\n    AR=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    AR=$ac_ct_AR\n  fi\nfi\n\n: ${AR=ar}\n: ${AR_FLAGS=cru}\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support\" >&5\n$as_echo_n \"checking for archiver @FILE support... \" >&6; }\nif ${lt_cv_ar_at_file+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ar_at_file=no\n   cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  echo conftest.$ac_objext > conftest.lst\n      lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5'\n      { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$lt_ar_try\\\"\"; } >&5\n  (eval $lt_ar_try) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n      if test 0 -eq \"$ac_status\"; then\n\t# Ensure the archiver fails upon bogus file names.\n\trm -f conftest.$ac_objext libconftest.a\n\t{ { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$lt_ar_try\\\"\"; } >&5\n  (eval $lt_ar_try) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n\tif test 0 -ne \"$ac_status\"; then\n          lt_cv_ar_at_file=@\n        fi\n      fi\n      rm -f conftest.* libconftest.a\n\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file\" >&5\n$as_echo \"$lt_cv_ar_at_file\" >&6; }\n\nif test no = \"$lt_cv_ar_at_file\"; then\n  archiver_list_spec=\nelse\n  archiver_list_spec=$lt_cv_ar_at_file\nfi\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}strip\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}strip; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_STRIP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$STRIP\"; then\n  ac_cv_prog_STRIP=\"$STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_STRIP=\"${ac_tool_prefix}strip\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nSTRIP=$ac_cv_prog_STRIP\nif test -n \"$STRIP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $STRIP\" >&5\n$as_echo \"$STRIP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_STRIP\"; then\n  ac_ct_STRIP=$STRIP\n  # Extract the first word of \"strip\", so it can be a program name with args.\nset dummy strip; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_STRIP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_STRIP\"; then\n  ac_cv_prog_ac_ct_STRIP=\"$ac_ct_STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_STRIP=\"strip\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP\nif test -n \"$ac_ct_STRIP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP\" >&5\n$as_echo \"$ac_ct_STRIP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_STRIP\" = x; then\n    STRIP=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    STRIP=$ac_ct_STRIP\n  fi\nelse\n  STRIP=\"$ac_cv_prog_STRIP\"\nfi\n\ntest -z \"$STRIP\" && STRIP=:\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}ranlib\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}ranlib; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_RANLIB+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$RANLIB\"; then\n  ac_cv_prog_RANLIB=\"$RANLIB\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_RANLIB=\"${ac_tool_prefix}ranlib\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nRANLIB=$ac_cv_prog_RANLIB\nif test -n \"$RANLIB\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $RANLIB\" >&5\n$as_echo \"$RANLIB\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_RANLIB\"; then\n  ac_ct_RANLIB=$RANLIB\n  # Extract the first word of \"ranlib\", so it can be a program name with args.\nset dummy ranlib; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_RANLIB+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_RANLIB\"; then\n  ac_cv_prog_ac_ct_RANLIB=\"$ac_ct_RANLIB\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_RANLIB=\"ranlib\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB\nif test -n \"$ac_ct_RANLIB\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB\" >&5\n$as_echo \"$ac_ct_RANLIB\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_RANLIB\" = x; then\n    RANLIB=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    RANLIB=$ac_ct_RANLIB\n  fi\nelse\n  RANLIB=\"$ac_cv_prog_RANLIB\"\nfi\n\ntest -z \"$RANLIB\" && RANLIB=:\n\n\n\n\n\n\n# Determine commands to create old-style static archives.\nold_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'\nold_postinstall_cmds='chmod 644 $oldlib'\nold_postuninstall_cmds=\n\nif test -n \"$RANLIB\"; then\n  case $host_os in\n  bitrig* | openbsd*)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB -t \\$tool_oldlib\"\n    ;;\n  *)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB \\$tool_oldlib\"\n    ;;\n  esac\n  old_archive_cmds=\"$old_archive_cmds~\\$RANLIB \\$tool_oldlib\"\nfi\n\ncase $host_os in\n  darwin*)\n    lock_old_archive_extraction=yes ;;\n  *)\n    lock_old_archive_extraction=no ;;\nesac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nfor ac_prog in gawk mawk nawk awk\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_AWK+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$AWK\"; then\n  ac_cv_prog_AWK=\"$AWK\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_AWK=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nAWK=$ac_cv_prog_AWK\nif test -n \"$AWK\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $AWK\" >&5\n$as_echo \"$AWK\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$AWK\" && break\ndone\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n\n\n# Check for command to grab the raw symbol name followed by C symbol from nm.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object\" >&5\n$as_echo_n \"checking command to parse $NM output from $compiler object... \" >&6; }\nif ${lt_cv_sys_global_symbol_pipe+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n# These are sane defaults that work on at least a few old systems.\n# [They come from Ultrix.  What could be older than Ultrix?!! ;)]\n\n# Character class describing NM global symbol codes.\nsymcode='[BCDEGRST]'\n\n# Regexp to match symbols that can be accessed directly from C.\nsympat='\\([_A-Za-z][_A-Za-z0-9]*\\)'\n\n# Define system-specific variables.\ncase $host_os in\naix*)\n  symcode='[BCDT]'\n  ;;\ncygwin* | mingw* | pw32* | cegcc*)\n  symcode='[ABCDGISTW]'\n  ;;\nhpux*)\n  if test ia64 = \"$host_cpu\"; then\n    symcode='[ABCDEGRST]'\n  fi\n  ;;\nirix* | nonstopux*)\n  symcode='[BCDEGRST]'\n  ;;\nosf*)\n  symcode='[BCDEGQRST]'\n  ;;\nsolaris*)\n  symcode='[BDRT]'\n  ;;\nsco3.2v5*)\n  symcode='[DT]'\n  ;;\nsysv4.2uw2*)\n  symcode='[DT]'\n  ;;\nsysv5* | sco5v6* | unixware* | OpenUNIX*)\n  symcode='[ABDT]'\n  ;;\nsysv4)\n  symcode='[DFNSTU]'\n  ;;\nesac\n\n# If we're using GNU nm, then use its standard symbol codes.\ncase `$NM -V 2>&1` in\n*GNU* | *'with BFD'*)\n  symcode='[ABCDGIRSTW]' ;;\nesac\n\nif test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n  # Gets list of data symbols to import.\n  lt_cv_sys_global_symbol_to_import=\"sed -n -e 's/^I .* \\(.*\\)$/\\1/p'\"\n  # Adjust the below global symbol transforms to fixup imported variables.\n  lt_cdecl_hook=\" -e 's/^I .* \\(.*\\)$/extern __declspec(dllimport) char \\1;/p'\"\n  lt_c_name_hook=\" -e 's/^I .* \\(.*\\)$/  {\\\"\\1\\\", (void *) 0},/p'\"\n  lt_c_name_lib_hook=\"\\\n  -e 's/^I .* \\(lib.*\\)$/  {\\\"\\1\\\", (void *) 0},/p'\\\n  -e 's/^I .* \\(.*\\)$/  {\\\"lib\\1\\\", (void *) 0},/p'\"\nelse\n  # Disable hooks by default.\n  lt_cv_sys_global_symbol_to_import=\n  lt_cdecl_hook=\n  lt_c_name_hook=\n  lt_c_name_lib_hook=\nfi\n\n# Transform an extracted symbol line into a proper C declaration.\n# Some systems (esp. on ia64) link data and code symbols differently,\n# so use this general approach.\nlt_cv_sys_global_symbol_to_cdecl=\"sed -n\"\\\n$lt_cdecl_hook\\\n\" -e 's/^T .* \\(.*\\)$/extern int \\1();/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/extern char \\1;/p'\"\n\n# Transform an extracted symbol line into symbol name and symbol address\nlt_cv_sys_global_symbol_to_c_name_address=\"sed -n\"\\\n$lt_c_name_hook\\\n\" -e 's/^: \\(.*\\) .*$/  {\\\"\\1\\\", (void *) 0},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/p'\"\n\n# Transform an extracted symbol line into symbol name with lib prefix and\n# symbol address.\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix=\"sed -n\"\\\n$lt_c_name_lib_hook\\\n\" -e 's/^: \\(.*\\) .*$/  {\\\"\\1\\\", (void *) 0},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(lib.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/  {\\\"lib\\1\\\", (void *) \\&\\1},/p'\"\n\n# Handle CRLF in mingw tool chain\nopt_cr=\ncase $build_os in\nmingw*)\n  opt_cr=`$ECHO 'x\\{0,1\\}' | tr x '\\015'` # option cr in regexp\n  ;;\nesac\n\n# Try without a prefix underscore, then with it.\nfor ac_symprfx in \"\" \"_\"; do\n\n  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.\n  symxfrm=\"\\\\1 $ac_symprfx\\\\2 \\\\2\"\n\n  # Write the raw and C identifiers.\n  if test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n    # Fake it for dumpbin and say T for any non-static function,\n    # D for any global variable and I for any imported variable.\n    # Also find C++ and __fastcall symbols from MSVC++,\n    # which start with @ or ?.\n    lt_cv_sys_global_symbol_pipe=\"$AWK '\"\\\n\"     {last_section=section; section=\\$ 3};\"\\\n\"     /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};\"\\\n\"     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};\"\\\n\"     /^ *Symbol name *: /{split(\\$ 0,sn,\\\":\\\"); si=substr(sn[2],2)};\"\\\n\"     /^ *Type *: code/{print \\\"T\\\",si,substr(si,length(prfx))};\"\\\n\"     /^ *Type *: data/{print \\\"I\\\",si,substr(si,length(prfx))};\"\\\n\"     \\$ 0!~/External *\\|/{next};\"\\\n\"     / 0+ UNDEF /{next}; / UNDEF \\([^|]\\)*()/{next};\"\\\n\"     {if(hide[section]) next};\"\\\n\"     {f=\\\"D\\\"}; \\$ 0~/\\(\\).*\\|/{f=\\\"T\\\"};\"\\\n\"     {split(\\$ 0,a,/\\||\\r/); split(a[2],s)};\"\\\n\"     s[1]~/^[@?]/{print f,s[1],s[1]; next};\"\\\n\"     s[1]~prfx {split(s[1],t,\\\"@\\\"); print f,t[1],substr(t[1],length(prfx))}\"\\\n\"     ' prfx=^$ac_symprfx\"\n  else\n    lt_cv_sys_global_symbol_pipe=\"sed -n -e 's/^.*[\t ]\\($symcode$symcode*\\)[\t ][\t ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'\"\n  fi\n  lt_cv_sys_global_symbol_pipe=\"$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'\"\n\n  # Check to see that the pipe works correctly.\n  pipe_works=no\n\n  rm -f conftest*\n  cat > conftest.$ac_ext <<_LT_EOF\n#ifdef __cplusplus\nextern \"C\" {\n#endif\nchar nm_test_var;\nvoid nm_test_func(void);\nvoid nm_test_func(void){}\n#ifdef __cplusplus\n}\n#endif\nint main(){nm_test_var='a';nm_test_func();return(0);}\n_LT_EOF\n\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    # Now try to grab the symbols.\n    nlist=conftest.nm\n    if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$NM conftest.$ac_objext \\| \"$lt_cv_sys_global_symbol_pipe\" \\> $nlist\\\"\"; } >&5\n  (eval $NM conftest.$ac_objext \\| \"$lt_cv_sys_global_symbol_pipe\" \\> $nlist) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s \"$nlist\"; then\n      # Try sorting and uniquifying the output.\n      if sort \"$nlist\" | uniq > \"$nlist\"T; then\n\tmv -f \"$nlist\"T \"$nlist\"\n      else\n\trm -f \"$nlist\"T\n      fi\n\n      # Make sure that we snagged all the symbols we need.\n      if $GREP ' nm_test_var$' \"$nlist\" >/dev/null; then\n\tif $GREP ' nm_test_func$' \"$nlist\" >/dev/null; then\n\t  cat <<_LT_EOF > conftest.$ac_ext\n/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */\n#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE\n/* DATA imports from DLLs on WIN32 can't be const, because runtime\n   relocations are performed -- see ld's documentation on pseudo-relocs.  */\n# define LT_DLSYM_CONST\n#elif defined __osf__\n/* This system does not cope well with relocations in const data.  */\n# define LT_DLSYM_CONST\n#else\n# define LT_DLSYM_CONST const\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n_LT_EOF\n\t  # Now generate the symbol file.\n\t  eval \"$lt_cv_sys_global_symbol_to_cdecl\"' < \"$nlist\" | $GREP -v main >> conftest.$ac_ext'\n\n\t  cat <<_LT_EOF >> conftest.$ac_ext\n\n/* The mapping between symbol names and symbols.  */\nLT_DLSYM_CONST struct {\n  const char *name;\n  void       *address;\n}\nlt__PROGRAM__LTX_preloaded_symbols[] =\n{\n  { \"@PROGRAM@\", (void *) 0 },\n_LT_EOF\n\t  $SED \"s/^$symcode$symcode* .* \\(.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/\" < \"$nlist\" | $GREP -v main >> conftest.$ac_ext\n\t  cat <<\\_LT_EOF >> conftest.$ac_ext\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt__PROGRAM__LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\n_LT_EOF\n\t  # Now try linking the two files.\n\t  mv conftest.$ac_objext conftstm.$ac_objext\n\t  lt_globsym_save_LIBS=$LIBS\n\t  lt_globsym_save_CFLAGS=$CFLAGS\n\t  LIBS=conftstm.$ac_objext\n\t  CFLAGS=\"$CFLAGS$lt_prog_compiler_no_builtin_flag\"\n\t  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_link\\\"\"; } >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s conftest$ac_exeext; then\n\t    pipe_works=yes\n\t  fi\n\t  LIBS=$lt_globsym_save_LIBS\n\t  CFLAGS=$lt_globsym_save_CFLAGS\n\telse\n\t  echo \"cannot find nm_test_func in $nlist\" >&5\n\tfi\n      else\n\techo \"cannot find nm_test_var in $nlist\" >&5\n      fi\n    else\n      echo \"cannot run $lt_cv_sys_global_symbol_pipe\" >&5\n    fi\n  else\n    echo \"$progname: failed program was:\" >&5\n    cat conftest.$ac_ext >&5\n  fi\n  rm -rf conftest* conftst*\n\n  # Do not use the global_symbol_pipe unless it works.\n  if test yes = \"$pipe_works\"; then\n    break\n  else\n    lt_cv_sys_global_symbol_pipe=\n  fi\ndone\n\nfi\n\nif test -z \"$lt_cv_sys_global_symbol_pipe\"; then\n  lt_cv_sys_global_symbol_to_cdecl=\nfi\nif test -z \"$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: failed\" >&5\n$as_echo \"failed\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: ok\" >&5\n$as_echo \"ok\" >&6; }\nfi\n\n# Response file support.\nif test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n  nm_file_list_spec='@'\nelif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then\n  nm_file_list_spec='@'\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for sysroot\" >&5\n$as_echo_n \"checking for sysroot... \" >&6; }\n\n# Check whether --with-sysroot was given.\nif test \"${with_sysroot+set}\" = set; then :\n  withval=$with_sysroot;\nelse\n  with_sysroot=no\nfi\n\n\nlt_sysroot=\ncase $with_sysroot in #(\n yes)\n   if test yes = \"$GCC\"; then\n     lt_sysroot=`$CC --print-sysroot 2>/dev/null`\n   fi\n   ;; #(\n /*)\n   lt_sysroot=`echo \"$with_sysroot\" | sed -e \"$sed_quote_subst\"`\n   ;; #(\n no|'')\n   ;; #(\n *)\n   { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $with_sysroot\" >&5\n$as_echo \"$with_sysroot\" >&6; }\n   as_fn_error $? \"The sysroot must be an absolute path.\" \"$LINENO\" 5\n   ;;\nesac\n\n { $as_echo \"$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}\" >&5\n$as_echo \"${lt_sysroot:-no}\" >&6; }\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for a working dd\" >&5\n$as_echo_n \"checking for a working dd... \" >&6; }\nif ${ac_cv_path_lt_DD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  printf 0123456789abcdef0123456789abcdef >conftest.i\ncat conftest.i conftest.i >conftest2.i\n: ${lt_DD:=$DD}\nif test -z \"$lt_DD\"; then\n  ac_path_lt_DD_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in dd; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_lt_DD=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_lt_DD\" || continue\nif \"$ac_path_lt_DD\" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then\n  cmp -s conftest.i conftest.out \\\n  && ac_cv_path_lt_DD=\"$ac_path_lt_DD\" ac_path_lt_DD_found=:\nfi\n      $ac_path_lt_DD_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_lt_DD\"; then\n    :\n  fi\nelse\n  ac_cv_path_lt_DD=$lt_DD\nfi\n\nrm -f conftest.i conftest2.i conftest.out\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD\" >&5\n$as_echo \"$ac_cv_path_lt_DD\" >&6; }\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes\" >&5\n$as_echo_n \"checking how to truncate binary pipes... \" >&6; }\nif ${lt_cv_truncate_bin+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  printf 0123456789abcdef0123456789abcdef >conftest.i\ncat conftest.i conftest.i >conftest2.i\nlt_cv_truncate_bin=\nif \"$ac_cv_path_lt_DD\" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then\n  cmp -s conftest.i conftest.out \\\n  && lt_cv_truncate_bin=\"$ac_cv_path_lt_DD bs=4096 count=1\"\nfi\nrm -f conftest.i conftest2.i conftest.out\ntest -z \"$lt_cv_truncate_bin\" && lt_cv_truncate_bin=\"$SED -e 4q\"\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin\" >&5\n$as_echo \"$lt_cv_truncate_bin\" >&6; }\n\n\n\n\n\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n# Check whether --enable-libtool-lock was given.\nif test \"${enable_libtool_lock+set}\" = set; then :\n  enableval=$enable_libtool_lock;\nfi\n\ntest no = \"$enable_libtool_lock\" || enable_libtool_lock=yes\n\n# Some flags need to be propagated to the compiler or linker for good\n# libtool support.\ncase $host in\nia64-*-hpux*)\n  # Find out what ABI is being produced by ac_compile, and set mode\n  # options accordingly.\n  echo 'int i;' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    case `/usr/bin/file conftest.$ac_objext` in\n      *ELF-32*)\n\tHPUX_IA64_MODE=32\n\t;;\n      *ELF-64*)\n\tHPUX_IA64_MODE=64\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n*-*-irix6*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo '#line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    if test yes = \"$lt_cv_prog_gnu_ld\"; then\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -melf32bsmip\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -melf32bmipn32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -melf64bmip\"\n\t;;\n      esac\n    else\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -32\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -n32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -64\"\n\t  ;;\n      esac\n    fi\n  fi\n  rm -rf conftest*\n  ;;\n\nmips64*-*linux*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo '#line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    emul=elf\n    case `/usr/bin/file conftest.$ac_objext` in\n      *32-bit*)\n\temul=\"${emul}32\"\n\t;;\n      *64-bit*)\n\temul=\"${emul}64\"\n\t;;\n    esac\n    case `/usr/bin/file conftest.$ac_objext` in\n      *MSB*)\n\temul=\"${emul}btsmip\"\n\t;;\n      *LSB*)\n\temul=\"${emul}ltsmip\"\n\t;;\n    esac\n    case `/usr/bin/file conftest.$ac_objext` in\n      *N32*)\n\temul=\"${emul}n32\"\n\t;;\n    esac\n    LD=\"${LD-ld} -m $emul\"\n  fi\n  rm -rf conftest*\n  ;;\n\nx86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \\\ns390*-*linux*|s390*-*tpf*|sparc*-*linux*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.  Note that the listed cases only cover the\n  # situations where additional linker options are needed (such as when\n  # doing 32-bit compilation for a host where ld defaults to 64-bit, or\n  # vice versa); the common cases where no linker options are needed do\n  # not appear in the list.\n  echo 'int i;' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    case `/usr/bin/file conftest.o` in\n      *32-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_i386_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    case `/usr/bin/file conftest.o` in\n\t      *x86-64*)\n\t\tLD=\"${LD-ld} -m elf32_x86_64\"\n\t\t;;\n\t      *)\n\t\tLD=\"${LD-ld} -m elf_i386\"\n\t\t;;\n\t    esac\n\t    ;;\n\t  powerpc64le-*linux*)\n\t    LD=\"${LD-ld} -m elf32lppclinux\"\n\t    ;;\n\t  powerpc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32ppclinux\"\n\t    ;;\n\t  s390x-*linux*)\n\t    LD=\"${LD-ld} -m elf_s390\"\n\t    ;;\n\t  sparc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32_sparc\"\n\t    ;;\n\tesac\n\t;;\n      *64-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_x86_64_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    LD=\"${LD-ld} -m elf_x86_64\"\n\t    ;;\n\t  powerpcle-*linux*)\n\t    LD=\"${LD-ld} -m elf64lppc\"\n\t    ;;\n\t  powerpc-*linux*)\n\t    LD=\"${LD-ld} -m elf64ppc\"\n\t    ;;\n\t  s390*-*linux*|s390*-*tpf*)\n\t    LD=\"${LD-ld} -m elf64_s390\"\n\t    ;;\n\t  sparc*-*linux*)\n\t    LD=\"${LD-ld} -m elf64_sparc\"\n\t    ;;\n\tesac\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n\n*-*-sco3.2v5*)\n  # On SCO OpenServer 5, we need -belf to get full-featured binaries.\n  SAVE_CFLAGS=$CFLAGS\n  CFLAGS=\"$CFLAGS -belf\"\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf\" >&5\n$as_echo_n \"checking whether the C compiler needs -belf... \" >&6; }\nif ${lt_cv_cc_needs_belf+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n     cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  lt_cv_cc_needs_belf=yes\nelse\n  lt_cv_cc_needs_belf=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n     ac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf\" >&5\n$as_echo \"$lt_cv_cc_needs_belf\" >&6; }\n  if test yes != \"$lt_cv_cc_needs_belf\"; then\n    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf\n    CFLAGS=$SAVE_CFLAGS\n  fi\n  ;;\n*-*solaris*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo 'int i;' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    case `/usr/bin/file conftest.o` in\n    *64-bit*)\n      case $lt_cv_prog_gnu_ld in\n      yes*)\n        case $host in\n        i?86-*-solaris*|x86_64-*-solaris*)\n          LD=\"${LD-ld} -m elf_x86_64\"\n          ;;\n        sparc*-*-solaris*)\n          LD=\"${LD-ld} -m elf64_sparc\"\n          ;;\n        esac\n        # GNU ld 2.21 introduced _sol2 emulations.  Use them if available.\n        if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then\n          LD=${LD-ld}_sol2\n        fi\n        ;;\n      *)\n\tif ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then\n\t  LD=\"${LD-ld} -64\"\n\tfi\n\t;;\n      esac\n      ;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\nesac\n\nneed_locks=$enable_libtool_lock\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}mt\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}mt; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_MANIFEST_TOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$MANIFEST_TOOL\"; then\n  ac_cv_prog_MANIFEST_TOOL=\"$MANIFEST_TOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_MANIFEST_TOOL=\"${ac_tool_prefix}mt\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nMANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL\nif test -n \"$MANIFEST_TOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL\" >&5\n$as_echo \"$MANIFEST_TOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_MANIFEST_TOOL\"; then\n  ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL\n  # Extract the first word of \"mt\", so it can be a program name with args.\nset dummy mt; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_MANIFEST_TOOL\"; then\n  ac_cv_prog_ac_ct_MANIFEST_TOOL=\"$ac_ct_MANIFEST_TOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_MANIFEST_TOOL=\"mt\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL\nif test -n \"$ac_ct_MANIFEST_TOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL\" >&5\n$as_echo \"$ac_ct_MANIFEST_TOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_MANIFEST_TOOL\" = x; then\n    MANIFEST_TOOL=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL\n  fi\nelse\n  MANIFEST_TOOL=\"$ac_cv_prog_MANIFEST_TOOL\"\nfi\n\ntest -z \"$MANIFEST_TOOL\" && MANIFEST_TOOL=mt\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool\" >&5\n$as_echo_n \"checking if $MANIFEST_TOOL is a manifest tool... \" >&6; }\nif ${lt_cv_path_mainfest_tool+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_path_mainfest_tool=no\n  echo \"$as_me:$LINENO: $MANIFEST_TOOL '-?'\" >&5\n  $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out\n  cat conftest.err >&5\n  if $GREP 'Manifest Tool' conftest.out > /dev/null; then\n    lt_cv_path_mainfest_tool=yes\n  fi\n  rm -f conftest*\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool\" >&5\n$as_echo \"$lt_cv_path_mainfest_tool\" >&6; }\nif test yes != \"$lt_cv_path_mainfest_tool\"; then\n  MANIFEST_TOOL=:\nfi\n\n\n\n\n\n\n  case $host_os in\n    rhapsody* | darwin*)\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}dsymutil\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}dsymutil; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DSYMUTIL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DSYMUTIL\"; then\n  ac_cv_prog_DSYMUTIL=\"$DSYMUTIL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DSYMUTIL=\"${ac_tool_prefix}dsymutil\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDSYMUTIL=$ac_cv_prog_DSYMUTIL\nif test -n \"$DSYMUTIL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL\" >&5\n$as_echo \"$DSYMUTIL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_DSYMUTIL\"; then\n  ac_ct_DSYMUTIL=$DSYMUTIL\n  # Extract the first word of \"dsymutil\", so it can be a program name with args.\nset dummy dsymutil; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DSYMUTIL\"; then\n  ac_cv_prog_ac_ct_DSYMUTIL=\"$ac_ct_DSYMUTIL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DSYMUTIL=\"dsymutil\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL\nif test -n \"$ac_ct_DSYMUTIL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL\" >&5\n$as_echo \"$ac_ct_DSYMUTIL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_DSYMUTIL\" = x; then\n    DSYMUTIL=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DSYMUTIL=$ac_ct_DSYMUTIL\n  fi\nelse\n  DSYMUTIL=\"$ac_cv_prog_DSYMUTIL\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}nmedit\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}nmedit; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_NMEDIT+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$NMEDIT\"; then\n  ac_cv_prog_NMEDIT=\"$NMEDIT\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_NMEDIT=\"${ac_tool_prefix}nmedit\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nNMEDIT=$ac_cv_prog_NMEDIT\nif test -n \"$NMEDIT\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $NMEDIT\" >&5\n$as_echo \"$NMEDIT\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_NMEDIT\"; then\n  ac_ct_NMEDIT=$NMEDIT\n  # Extract the first word of \"nmedit\", so it can be a program name with args.\nset dummy nmedit; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_NMEDIT+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_NMEDIT\"; then\n  ac_cv_prog_ac_ct_NMEDIT=\"$ac_ct_NMEDIT\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_NMEDIT=\"nmedit\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT\nif test -n \"$ac_ct_NMEDIT\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT\" >&5\n$as_echo \"$ac_ct_NMEDIT\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_NMEDIT\" = x; then\n    NMEDIT=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    NMEDIT=$ac_ct_NMEDIT\n  fi\nelse\n  NMEDIT=\"$ac_cv_prog_NMEDIT\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}lipo\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}lipo; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_LIPO+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$LIPO\"; then\n  ac_cv_prog_LIPO=\"$LIPO\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_LIPO=\"${ac_tool_prefix}lipo\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nLIPO=$ac_cv_prog_LIPO\nif test -n \"$LIPO\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $LIPO\" >&5\n$as_echo \"$LIPO\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_LIPO\"; then\n  ac_ct_LIPO=$LIPO\n  # Extract the first word of \"lipo\", so it can be a program name with args.\nset dummy lipo; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_LIPO+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_LIPO\"; then\n  ac_cv_prog_ac_ct_LIPO=\"$ac_ct_LIPO\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_LIPO=\"lipo\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO\nif test -n \"$ac_ct_LIPO\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO\" >&5\n$as_echo \"$ac_ct_LIPO\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_LIPO\" = x; then\n    LIPO=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    LIPO=$ac_ct_LIPO\n  fi\nelse\n  LIPO=\"$ac_cv_prog_LIPO\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}otool\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}otool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OTOOL\"; then\n  ac_cv_prog_OTOOL=\"$OTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OTOOL=\"${ac_tool_prefix}otool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOTOOL=$ac_cv_prog_OTOOL\nif test -n \"$OTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OTOOL\" >&5\n$as_echo \"$OTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OTOOL\"; then\n  ac_ct_OTOOL=$OTOOL\n  # Extract the first word of \"otool\", so it can be a program name with args.\nset dummy otool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OTOOL\"; then\n  ac_cv_prog_ac_ct_OTOOL=\"$ac_ct_OTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OTOOL=\"otool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL\nif test -n \"$ac_ct_OTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL\" >&5\n$as_echo \"$ac_ct_OTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OTOOL\" = x; then\n    OTOOL=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OTOOL=$ac_ct_OTOOL\n  fi\nelse\n  OTOOL=\"$ac_cv_prog_OTOOL\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}otool64\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}otool64; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OTOOL64+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OTOOL64\"; then\n  ac_cv_prog_OTOOL64=\"$OTOOL64\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OTOOL64=\"${ac_tool_prefix}otool64\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOTOOL64=$ac_cv_prog_OTOOL64\nif test -n \"$OTOOL64\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OTOOL64\" >&5\n$as_echo \"$OTOOL64\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OTOOL64\"; then\n  ac_ct_OTOOL64=$OTOOL64\n  # Extract the first word of \"otool64\", so it can be a program name with args.\nset dummy otool64; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OTOOL64+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OTOOL64\"; then\n  ac_cv_prog_ac_ct_OTOOL64=\"$ac_ct_OTOOL64\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OTOOL64=\"otool64\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64\nif test -n \"$ac_ct_OTOOL64\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64\" >&5\n$as_echo \"$ac_ct_OTOOL64\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OTOOL64\" = x; then\n    OTOOL64=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OTOOL64=$ac_ct_OTOOL64\n  fi\nelse\n  OTOOL64=\"$ac_cv_prog_OTOOL64\"\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag\" >&5\n$as_echo_n \"checking for -single_module linker flag... \" >&6; }\nif ${lt_cv_apple_cc_single_mod+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_apple_cc_single_mod=no\n      if test -z \"$LT_MULTI_MODULE\"; then\n\t# By default we will add the -single_module flag. You can override\n\t# by either setting the environment variable LT_MULTI_MODULE\n\t# non-empty at configure time, or by adding -multi_module to the\n\t# link flags.\n\trm -rf libconftest.dylib*\n\techo \"int foo(void){return 1;}\" > conftest.c\n\techo \"$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n-dynamiclib -Wl,-single_module conftest.c\" >&5\n\t$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n\t  -dynamiclib -Wl,-single_module conftest.c 2>conftest.err\n        _lt_result=$?\n\t# If there is a non-empty error log, and \"single_module\"\n\t# appears in it, assume the flag caused a linker warning\n        if test -s conftest.err && $GREP single_module conftest.err; then\n\t  cat conftest.err >&5\n\t# Otherwise, if the output was created with a 0 exit code from\n\t# the compiler, it worked.\n\telif test -f libconftest.dylib && test 0 = \"$_lt_result\"; then\n\t  lt_cv_apple_cc_single_mod=yes\n\telse\n\t  cat conftest.err >&5\n\tfi\n\trm -rf libconftest.dylib*\n\trm -f conftest.*\n      fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod\" >&5\n$as_echo \"$lt_cv_apple_cc_single_mod\" >&6; }\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag\" >&5\n$as_echo_n \"checking for -exported_symbols_list linker flag... \" >&6; }\nif ${lt_cv_ld_exported_symbols_list+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ld_exported_symbols_list=no\n      save_LDFLAGS=$LDFLAGS\n      echo \"_main\" > conftest.sym\n      LDFLAGS=\"$LDFLAGS -Wl,-exported_symbols_list,conftest.sym\"\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  lt_cv_ld_exported_symbols_list=yes\nelse\n  lt_cv_ld_exported_symbols_list=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n\tLDFLAGS=$save_LDFLAGS\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list\" >&5\n$as_echo \"$lt_cv_ld_exported_symbols_list\" >&6; }\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag\" >&5\n$as_echo_n \"checking for -force_load linker flag... \" >&6; }\nif ${lt_cv_ld_force_load+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ld_force_load=no\n      cat > conftest.c << _LT_EOF\nint forced_loaded() { return 2;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS -c -o conftest.o conftest.c\" >&5\n      $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5\n      echo \"$AR cru libconftest.a conftest.o\" >&5\n      $AR cru libconftest.a conftest.o 2>&5\n      echo \"$RANLIB libconftest.a\" >&5\n      $RANLIB libconftest.a 2>&5\n      cat > conftest.c << _LT_EOF\nint main() { return 0;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a\" >&5\n      $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err\n      _lt_result=$?\n      if test -s conftest.err && $GREP force_load conftest.err; then\n\tcat conftest.err >&5\n      elif test -f conftest && test 0 = \"$_lt_result\" && $GREP forced_load conftest >/dev/null 2>&1; then\n\tlt_cv_ld_force_load=yes\n      else\n\tcat conftest.err >&5\n      fi\n        rm -f conftest.err libconftest.a conftest conftest.c\n        rm -rf conftest.dSYM\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load\" >&5\n$as_echo \"$lt_cv_ld_force_load\" >&6; }\n    case $host_os in\n    rhapsody* | darwin1.[012])\n      _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;;\n    darwin1.*)\n      _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;\n    darwin*) # darwin 5.x on\n      # if running on 10.5 or later, the deployment target defaults\n      # to the OS version, if on x86, and 10.4, the deployment\n      # target defaults to 10.4. Don't you love it?\n      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in\n\t10.0,*86*-darwin8*|10.0,*-darwin[91]*)\n\t  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;\n\t10.[012][,.]*)\n\t  _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;\n\t10.*)\n\t  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;\n      esac\n    ;;\n  esac\n    if test yes = \"$lt_cv_apple_cc_single_mod\"; then\n      _lt_dar_single_mod='$single_module'\n    fi\n    if test yes = \"$lt_cv_ld_exported_symbols_list\"; then\n      _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'\n    else\n      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib'\n    fi\n    if test : != \"$DSYMUTIL\" && test no = \"$lt_cv_ld_force_load\"; then\n      _lt_dsymutil='~$DSYMUTIL $lib || :'\n    else\n      _lt_dsymutil=\n    fi\n    ;;\n  esac\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\nfor ac_header in dlfcn.h\ndo :\n  ac_fn_c_check_header_compile \"$LINENO\" \"dlfcn.h\" \"ac_cv_header_dlfcn_h\" \"$ac_includes_default\n\"\nif test \"x$ac_cv_header_dlfcn_h\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_DLFCN_H 1\n_ACEOF\n\nfi\n\ndone\n\n\n\n\n\n# Set options\nenable_win32_dll=yes\n\ncase $host in\n*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}as\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}as; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_AS+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$AS\"; then\n  ac_cv_prog_AS=\"$AS\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_AS=\"${ac_tool_prefix}as\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nAS=$ac_cv_prog_AS\nif test -n \"$AS\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $AS\" >&5\n$as_echo \"$AS\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_AS\"; then\n  ac_ct_AS=$AS\n  # Extract the first word of \"as\", so it can be a program name with args.\nset dummy as; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_AS+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_AS\"; then\n  ac_cv_prog_ac_ct_AS=\"$ac_ct_AS\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_AS=\"as\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_AS=$ac_cv_prog_ac_ct_AS\nif test -n \"$ac_ct_AS\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS\" >&5\n$as_echo \"$ac_ct_AS\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_AS\" = x; then\n    AS=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    AS=$ac_ct_AS\n  fi\nelse\n  AS=\"$ac_cv_prog_AS\"\nfi\n\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}dlltool\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DLLTOOL\"; then\n  ac_cv_prog_DLLTOOL=\"$DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DLLTOOL=\"${ac_tool_prefix}dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDLLTOOL=$ac_cv_prog_DLLTOOL\nif test -n \"$DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DLLTOOL\" >&5\n$as_echo \"$DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_DLLTOOL\"; then\n  ac_ct_DLLTOOL=$DLLTOOL\n  # Extract the first word of \"dlltool\", so it can be a program name with args.\nset dummy dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DLLTOOL\"; then\n  ac_cv_prog_ac_ct_DLLTOOL=\"$ac_ct_DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DLLTOOL=\"dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL\nif test -n \"$ac_ct_DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL\" >&5\n$as_echo \"$ac_ct_DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_DLLTOOL\" = x; then\n    DLLTOOL=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DLLTOOL=$ac_ct_DLLTOOL\n  fi\nelse\n  DLLTOOL=\"$ac_cv_prog_DLLTOOL\"\nfi\n\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}objdump\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OBJDUMP\"; then\n  ac_cv_prog_OBJDUMP=\"$OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OBJDUMP=\"${ac_tool_prefix}objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOBJDUMP=$ac_cv_prog_OBJDUMP\nif test -n \"$OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OBJDUMP\" >&5\n$as_echo \"$OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OBJDUMP\"; then\n  ac_ct_OBJDUMP=$OBJDUMP\n  # Extract the first word of \"objdump\", so it can be a program name with args.\nset dummy objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OBJDUMP\"; then\n  ac_cv_prog_ac_ct_OBJDUMP=\"$ac_ct_OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OBJDUMP=\"objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP\nif test -n \"$ac_ct_OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP\" >&5\n$as_echo \"$ac_ct_OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OBJDUMP\" = x; then\n    OBJDUMP=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OBJDUMP=$ac_ct_OBJDUMP\n  fi\nelse\n  OBJDUMP=\"$ac_cv_prog_OBJDUMP\"\nfi\n\n  ;;\nesac\n\ntest -z \"$AS\" && AS=as\n\n\n\n\n\ntest -z \"$DLLTOOL\" && DLLTOOL=dlltool\n\n\n\n\n\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n\n\n\n\n\n\n\n        enable_dlopen=no\n\n\n\n            # Check whether --enable-shared was given.\nif test \"${enable_shared+set}\" = set; then :\n  enableval=$enable_shared; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_shared=yes ;;\n    no) enable_shared=no ;;\n    *)\n      enable_shared=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_shared=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  enable_shared=yes\nfi\n\n\n\n\n\n\n\n\n\n  # Check whether --enable-static was given.\nif test \"${enable_static+set}\" = set; then :\n  enableval=$enable_static; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_static=yes ;;\n    no) enable_static=no ;;\n    *)\n     enable_static=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_static=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  enable_static=yes\nfi\n\n\n\n\n\n\n\n\n\n\n# Check whether --with-pic was given.\nif test \"${with_pic+set}\" = set; then :\n  withval=$with_pic; lt_p=${PACKAGE-default}\n    case $withval in\n    yes|no) pic_mode=$withval ;;\n    *)\n      pic_mode=default\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for lt_pkg in $withval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$lt_pkg\" = \"X$lt_p\"; then\n\t  pic_mode=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  pic_mode=default\nfi\n\n\n\n\n\n\n\n\n  # Check whether --enable-fast-install was given.\nif test \"${enable_fast_install+set}\" = set; then :\n  enableval=$enable_fast_install; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_fast_install=yes ;;\n    no) enable_fast_install=no ;;\n    *)\n      enable_fast_install=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_fast_install=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  enable_fast_install=yes\nfi\n\n\n\n\n\n\n\n\n  shared_archive_member_spec=\ncase $host,$enable_shared in\npower*-*-aix[5-9]*,yes)\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide\" >&5\n$as_echo_n \"checking which variant of shared library versioning to provide... \" >&6; }\n\n# Check whether --with-aix-soname was given.\nif test \"${with_aix_soname+set}\" = set; then :\n  withval=$with_aix_soname; case $withval in\n    aix|svr4|both)\n      ;;\n    *)\n      as_fn_error $? \"Unknown argument to --with-aix-soname\" \"$LINENO\" 5\n      ;;\n    esac\n    lt_cv_with_aix_soname=$with_aix_soname\nelse\n  if ${lt_cv_with_aix_soname+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_with_aix_soname=aix\nfi\n\n    with_aix_soname=$lt_cv_with_aix_soname\nfi\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $with_aix_soname\" >&5\n$as_echo \"$with_aix_soname\" >&6; }\n  if test aix != \"$with_aix_soname\"; then\n    # For the AIX way of multilib, we name the shared archive member\n    # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o',\n    # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File.\n    # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag,\n    # the AIX toolchain works better with OBJECT_MODE set (default 32).\n    if test 64 = \"${OBJECT_MODE-32}\"; then\n      shared_archive_member_spec=shr_64\n    else\n      shared_archive_member_spec=shr\n    fi\n  fi\n  ;;\n*)\n  with_aix_soname=aix\n  ;;\nesac\n\n\n\n\n\n\n\n\n\n\n# This can be used to rebuild libtool when needed\nLIBTOOL_DEPS=$ltmain\n\n# Always use our own libtool.\nLIBTOOL=\"${CONFIG_SHELL-$SHELL} \"'$(top_builddir)/libtool'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ntest -z \"$LN_S\" && LN_S=\"ln -s\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nif test -n \"${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for objdir\" >&5\n$as_echo_n \"checking for objdir... \" >&6; }\nif ${lt_cv_objdir+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  rm -f .libs 2>/dev/null\nmkdir .libs 2>/dev/null\nif test -d .libs; then\n  lt_cv_objdir=.libs\nelse\n  # MS-DOS does not allow filenames that begin with a dot.\n  lt_cv_objdir=_libs\nfi\nrmdir .libs 2>/dev/null\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir\" >&5\n$as_echo \"$lt_cv_objdir\" >&6; }\nobjdir=$lt_cv_objdir\n\n\n\n\n\ncat >>confdefs.h <<_ACEOF\n#define LT_OBJDIR \"$lt_cv_objdir/\"\n_ACEOF\n\n\n\n\ncase $host_os in\naix3*)\n  # AIX sometimes has problems with the GCC collect2 program.  For some\n  # reason, if we set the COLLECT_NAMES environment variable, the problems\n  # vanish in a puff of smoke.\n  if test set != \"${COLLECT_NAMES+set}\"; then\n    COLLECT_NAMES=\n    export COLLECT_NAMES\n  fi\n  ;;\nesac\n\n# Global variables:\nofile=libtool\ncan_build_shared=yes\n\n# All known linkers require a '.a' archive for static linking (except MSVC,\n# which needs '.lib').\nlibext=a\n\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n\nold_CC=$CC\nold_CFLAGS=$CFLAGS\n\n# Set sane defaults for various variables\ntest -z \"$CC\" && CC=cc\ntest -z \"$LTCC\" && LTCC=$CC\ntest -z \"$LTCFLAGS\" && LTCFLAGS=$CFLAGS\ntest -z \"$LD\" && LD=ld\ntest -z \"$ac_objext\" && ac_objext=o\n\nfunc_cc_basename $compiler\ncc_basename=$func_cc_basename_result\n\n\n# Only perform the check for file, if the check method requires it\ntest -z \"$MAGIC_CMD\" && MAGIC_CMD=file\ncase $deplibs_check_method in\nfile_magic*)\n  if test \"$file_magic_cmd\" = '$MAGIC_CMD'; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file\" >&5\n$as_echo_n \"checking for ${ac_tool_prefix}file... \" >&6; }\nif ${lt_cv_path_MAGIC_CMD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case $MAGIC_CMD in\n[\\\\/*] |  ?:[\\\\/]*)\n  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.\n  ;;\n*)\n  lt_save_MAGIC_CMD=$MAGIC_CMD\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n  ac_dummy=\"/usr/bin$PATH_SEPARATOR$PATH\"\n  for ac_dir in $ac_dummy; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/${ac_tool_prefix}file\"; then\n      lt_cv_path_MAGIC_CMD=$ac_dir/\"${ac_tool_prefix}file\"\n      if test -n \"$file_magic_test_file\"; then\n\tcase $deplibs_check_method in\n\t\"file_magic \"*)\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"file_magic \\(.*\\)\"`\n\t  MAGIC_CMD=$lt_cv_path_MAGIC_CMD\n\t  if eval $file_magic_cmd \\$file_magic_test_file 2> /dev/null |\n\t    $EGREP \"$file_magic_regex\" > /dev/null; then\n\t    :\n\t  else\n\t    cat <<_LT_EOF 1>&2\n\n*** Warning: the command libtool uses to detect shared libraries,\n*** $file_magic_cmd, produces output that libtool cannot recognize.\n*** The result is that libtool may fail to recognize shared libraries\n*** as such.  This will affect the creation of libtool libraries that\n*** depend on shared libraries, but programs linked with such libtool\n*** libraries will work regardless of this problem.  Nevertheless, you\n*** may want to report the problem to your system manager and/or to\n*** bug-libtool@gnu.org\n\n_LT_EOF\n\t  fi ;;\n\tesac\n      fi\n      break\n    fi\n  done\n  IFS=$lt_save_ifs\n  MAGIC_CMD=$lt_save_MAGIC_CMD\n  ;;\nesac\nfi\n\nMAGIC_CMD=$lt_cv_path_MAGIC_CMD\nif test -n \"$MAGIC_CMD\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD\" >&5\n$as_echo \"$MAGIC_CMD\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n\n\n\nif test -z \"$lt_cv_path_MAGIC_CMD\"; then\n  if test -n \"$ac_tool_prefix\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for file\" >&5\n$as_echo_n \"checking for file... \" >&6; }\nif ${lt_cv_path_MAGIC_CMD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case $MAGIC_CMD in\n[\\\\/*] |  ?:[\\\\/]*)\n  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.\n  ;;\n*)\n  lt_save_MAGIC_CMD=$MAGIC_CMD\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n  ac_dummy=\"/usr/bin$PATH_SEPARATOR$PATH\"\n  for ac_dir in $ac_dummy; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/file\"; then\n      lt_cv_path_MAGIC_CMD=$ac_dir/\"file\"\n      if test -n \"$file_magic_test_file\"; then\n\tcase $deplibs_check_method in\n\t\"file_magic \"*)\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"file_magic \\(.*\\)\"`\n\t  MAGIC_CMD=$lt_cv_path_MAGIC_CMD\n\t  if eval $file_magic_cmd \\$file_magic_test_file 2> /dev/null |\n\t    $EGREP \"$file_magic_regex\" > /dev/null; then\n\t    :\n\t  else\n\t    cat <<_LT_EOF 1>&2\n\n*** Warning: the command libtool uses to detect shared libraries,\n*** $file_magic_cmd, produces output that libtool cannot recognize.\n*** The result is that libtool may fail to recognize shared libraries\n*** as such.  This will affect the creation of libtool libraries that\n*** depend on shared libraries, but programs linked with such libtool\n*** libraries will work regardless of this problem.  Nevertheless, you\n*** may want to report the problem to your system manager and/or to\n*** bug-libtool@gnu.org\n\n_LT_EOF\n\t  fi ;;\n\tesac\n      fi\n      break\n    fi\n  done\n  IFS=$lt_save_ifs\n  MAGIC_CMD=$lt_save_MAGIC_CMD\n  ;;\nesac\nfi\n\nMAGIC_CMD=$lt_cv_path_MAGIC_CMD\nif test -n \"$MAGIC_CMD\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD\" >&5\n$as_echo \"$MAGIC_CMD\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  else\n    MAGIC_CMD=:\n  fi\nfi\n\n  fi\n  ;;\nesac\n\n# Use C for the default configuration in the libtool script\n\nlt_save_CC=$CC\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n\n# Source file extension for C test sources.\nac_ext=c\n\n# Object file extension for compiled C test sources.\nobjext=o\nobjext=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"int some_variable = 0;\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='int main(){return(0);}'\n\n\n\n\n\n\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n\n# Save the default compiler, since it gets overwritten when the other\n# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.\ncompiler_DEFAULT=$CC\n\n# save warnings/boilerplate of simple test code\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_compile_test_code\" >conftest.$ac_ext\neval \"$ac_compile\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_compiler_boilerplate=`cat conftest.err`\n$RM conftest*\n\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_link_test_code\" >conftest.$ac_ext\neval \"$ac_link\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_linker_boilerplate=`cat conftest.err`\n$RM -r conftest*\n\n\n## CAVEAT EMPTOR:\n## There is no encapsulation within the following macros, do not change\n## the running order or otherwise move them around unless you know exactly\n## what you are doing...\nif test -n \"$compiler\"; then\n\nlt_prog_compiler_no_builtin_flag=\n\nif test yes = \"$GCC\"; then\n  case $cc_basename in\n  nvcc*)\n    lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;;\n  *)\n    lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;;\n  esac\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions\" >&5\n$as_echo_n \"checking if $compiler supports -fno-rtti -fno-exceptions... \" >&6; }\nif ${lt_cv_prog_compiler_rtti_exceptions+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_rtti_exceptions=no\n   ac_outfile=conftest.$ac_objext\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"-fno-rtti -fno-exceptions\"  ## exclude from sc_useless_quotes_in_assignment\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_rtti_exceptions=yes\n     fi\n   fi\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions\" >&5\n$as_echo \"$lt_cv_prog_compiler_rtti_exceptions\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler_rtti_exceptions\"; then\n    lt_prog_compiler_no_builtin_flag=\"$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions\"\nelse\n    :\nfi\n\nfi\n\n\n\n\n\n\n  lt_prog_compiler_wl=\nlt_prog_compiler_pic=\nlt_prog_compiler_static=\n\n\n  if test yes = \"$GCC\"; then\n    lt_prog_compiler_wl='-Wl,'\n    lt_prog_compiler_static='-static'\n\n    case $host_os in\n      aix*)\n      # All AIX code is PIC.\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\tlt_prog_compiler_static='-Bstatic'\n      fi\n      lt_prog_compiler_pic='-fPIC'\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            lt_prog_compiler_pic='-fPIC'\n        ;;\n      m68k)\n            # FIXME: we need at least 68020 code to build shared libraries, but\n            # adding the '-m68020' flag to GCC prevents building anything better,\n            # like '-m68040'.\n            lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4'\n        ;;\n      esac\n      ;;\n\n    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)\n      # PIC is the default for these OSes.\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      # Although the cygwin gcc ignores -fPIC, still need this for old-style\n      # (--disable-auto-import) libraries\n      lt_prog_compiler_pic='-DDLL_EXPORT'\n      case $host_os in\n      os2*)\n\tlt_prog_compiler_static='$wl-static'\n\t;;\n      esac\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      lt_prog_compiler_pic='-fno-common'\n      ;;\n\n    haiku*)\n      # PIC is the default for Haiku.\n      # The \"-static\" flag exists, but is broken.\n      lt_prog_compiler_static=\n      ;;\n\n    hpux*)\n      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit\n      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag\n      # sets the default TLS model and affects inlining.\n      case $host_cpu in\n      hppa*64*)\n\t# +Z the default\n\t;;\n      *)\n\tlt_prog_compiler_pic='-fPIC'\n\t;;\n      esac\n      ;;\n\n    interix[3-9]*)\n      # Interix 3.x gcc -fpic/-fPIC options generate broken code.\n      # Instead, we relocate shared libraries at runtime.\n      ;;\n\n    msdosdjgpp*)\n      # Just because we use GCC doesn't mean we suddenly get shared libraries\n      # on systems that don't support them.\n      lt_prog_compiler_can_build_shared=no\n      enable_shared=no\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      lt_prog_compiler_pic='-fPIC -shared'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tlt_prog_compiler_pic=-Kconform_pic\n      fi\n      ;;\n\n    *)\n      lt_prog_compiler_pic='-fPIC'\n      ;;\n    esac\n\n    case $cc_basename in\n    nvcc*) # Cuda Compiler Driver 2.2\n      lt_prog_compiler_wl='-Xlinker '\n      if test -n \"$lt_prog_compiler_pic\"; then\n        lt_prog_compiler_pic=\"-Xcompiler $lt_prog_compiler_pic\"\n      fi\n      ;;\n    esac\n  else\n    # PORTME Check for flag to pass linker flags through the system compiler.\n    case $host_os in\n    aix*)\n      lt_prog_compiler_wl='-Wl,'\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\tlt_prog_compiler_static='-Bstatic'\n      else\n\tlt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp'\n      fi\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      lt_prog_compiler_pic='-fno-common'\n      case $cc_basename in\n      nagfor*)\n        # NAG Fortran compiler\n        lt_prog_compiler_wl='-Wl,-Wl,,'\n        lt_prog_compiler_pic='-PIC'\n        lt_prog_compiler_static='-Bstatic'\n        ;;\n      esac\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      lt_prog_compiler_pic='-DDLL_EXPORT'\n      case $host_os in\n      os2*)\n\tlt_prog_compiler_static='$wl-static'\n\t;;\n      esac\n      ;;\n\n    hpux9* | hpux10* | hpux11*)\n      lt_prog_compiler_wl='-Wl,'\n      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but\n      # not for PA HP-UX.\n      case $host_cpu in\n      hppa*64*|ia64*)\n\t# +Z the default\n\t;;\n      *)\n\tlt_prog_compiler_pic='+Z'\n\t;;\n      esac\n      # Is there a better lt_prog_compiler_static that works with the bundled CC?\n      lt_prog_compiler_static='$wl-a ${wl}archive'\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      lt_prog_compiler_wl='-Wl,'\n      # PIC (with -KPIC) is the default.\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n      case $cc_basename in\n      # old Intel for x86_64, which still supported -KPIC.\n      ecc*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-KPIC'\n\tlt_prog_compiler_static='-static'\n        ;;\n      # icc used to be incompatible with GCC.\n      # ICC 10 doesn't accept -KPIC any more.\n      icc* | ifort*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-fPIC'\n\tlt_prog_compiler_static='-static'\n        ;;\n      # Lahey Fortran 8.1.\n      lf95*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='--shared'\n\tlt_prog_compiler_static='--static'\n\t;;\n      nagfor*)\n\t# NAG Fortran compiler\n\tlt_prog_compiler_wl='-Wl,-Wl,,'\n\tlt_prog_compiler_pic='-PIC'\n\tlt_prog_compiler_static='-Bstatic'\n\t;;\n      tcc*)\n\t# Fabrice Bellard et al's Tiny C Compiler\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-fPIC'\n\tlt_prog_compiler_static='-static'\n\t;;\n      pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)\n        # Portland Group compilers (*not* the Pentium gcc compiler,\n\t# which looks to be a dead project)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-fpic'\n\tlt_prog_compiler_static='-Bstatic'\n        ;;\n      ccc*)\n        lt_prog_compiler_wl='-Wl,'\n        # All Alpha code is PIC.\n        lt_prog_compiler_static='-non_shared'\n        ;;\n      xl* | bgxl* | bgf* | mpixl*)\n\t# IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-qpic'\n\tlt_prog_compiler_static='-qstaticlink'\n\t;;\n      *)\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ Ceres\\ Fortran* | *Sun*Fortran*\\ [1-7].* | *Sun*Fortran*\\ 8.[0-3]*)\n\t  # Sun Fortran 8.3 passes all unrecognized flags to the linker\n\t  lt_prog_compiler_pic='-KPIC'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  lt_prog_compiler_wl=''\n\t  ;;\n\t*Sun\\ F* | *Sun*Fortran*)\n\t  lt_prog_compiler_pic='-KPIC'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  lt_prog_compiler_wl='-Qoption ld '\n\t  ;;\n\t*Sun\\ C*)\n\t  # Sun C 5.9\n\t  lt_prog_compiler_pic='-KPIC'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  lt_prog_compiler_wl='-Wl,'\n\t  ;;\n        *Intel*\\ [CF]*Compiler*)\n\t  lt_prog_compiler_wl='-Wl,'\n\t  lt_prog_compiler_pic='-fPIC'\n\t  lt_prog_compiler_static='-static'\n\t  ;;\n\t*Portland\\ Group*)\n\t  lt_prog_compiler_wl='-Wl,'\n\t  lt_prog_compiler_pic='-fpic'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  ;;\n\tesac\n\t;;\n      esac\n      ;;\n\n    newsos6)\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      lt_prog_compiler_pic='-fPIC -shared'\n      ;;\n\n    osf3* | osf4* | osf5*)\n      lt_prog_compiler_wl='-Wl,'\n      # All OSF/1 code is PIC.\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    rdos*)\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    solaris*)\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      case $cc_basename in\n      f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)\n\tlt_prog_compiler_wl='-Qoption ld ';;\n      *)\n\tlt_prog_compiler_wl='-Wl,';;\n      esac\n      ;;\n\n    sunos4*)\n      lt_prog_compiler_wl='-Qoption ld '\n      lt_prog_compiler_pic='-PIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    sysv4 | sysv4.2uw2* | sysv4.3*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tlt_prog_compiler_pic='-Kconform_pic'\n\tlt_prog_compiler_static='-Bstatic'\n      fi\n      ;;\n\n    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    unicos*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_can_build_shared=no\n      ;;\n\n    uts4*)\n      lt_prog_compiler_pic='-pic'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    *)\n      lt_prog_compiler_can_build_shared=no\n      ;;\n    esac\n  fi\n\ncase $host_os in\n  # For platforms that do not support PIC, -DPIC is meaningless:\n  *djgpp*)\n    lt_prog_compiler_pic=\n    ;;\n  *)\n    lt_prog_compiler_pic=\"$lt_prog_compiler_pic -DPIC\"\n    ;;\nesac\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC\" >&5\n$as_echo_n \"checking for $compiler option to produce PIC... \" >&6; }\nif ${lt_cv_prog_compiler_pic+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_pic=$lt_prog_compiler_pic\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic\" >&5\n$as_echo \"$lt_cv_prog_compiler_pic\" >&6; }\nlt_prog_compiler_pic=$lt_cv_prog_compiler_pic\n\n#\n# Check to make sure the PIC flag actually works.\n#\nif test -n \"$lt_prog_compiler_pic\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works\" >&5\n$as_echo_n \"checking if $compiler PIC flag $lt_prog_compiler_pic works... \" >&6; }\nif ${lt_cv_prog_compiler_pic_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_pic_works=no\n   ac_outfile=conftest.$ac_objext\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"$lt_prog_compiler_pic -DPIC\"  ## exclude from sc_useless_quotes_in_assignment\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_pic_works=yes\n     fi\n   fi\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works\" >&5\n$as_echo \"$lt_cv_prog_compiler_pic_works\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler_pic_works\"; then\n    case $lt_prog_compiler_pic in\n     \"\" | \" \"*) ;;\n     *) lt_prog_compiler_pic=\" $lt_prog_compiler_pic\" ;;\n     esac\nelse\n    lt_prog_compiler_pic=\n     lt_prog_compiler_can_build_shared=no\nfi\n\nfi\n\n\n\n\n\n\n\n\n\n\n\n#\n# Check to make sure the static flag actually works.\n#\nwl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\\\"$lt_prog_compiler_static\\\"\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works\" >&5\n$as_echo_n \"checking if $compiler static flag $lt_tmp_static_flag works... \" >&6; }\nif ${lt_cv_prog_compiler_static_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_static_works=no\n   save_LDFLAGS=$LDFLAGS\n   LDFLAGS=\"$LDFLAGS $lt_tmp_static_flag\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&5\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         lt_cv_prog_compiler_static_works=yes\n       fi\n     else\n       lt_cv_prog_compiler_static_works=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=$save_LDFLAGS\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works\" >&5\n$as_echo \"$lt_cv_prog_compiler_static_works\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler_static_works\"; then\n    :\nelse\n    lt_prog_compiler_static=\nfi\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext\" >&5\n$as_echo_n \"checking if $compiler supports -c -o file.$ac_objext... \" >&6; }\nif ${lt_cv_prog_compiler_c_o+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_c_o=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_c_o=yes\n     fi\n   fi\n   chmod u+w . 2>&5\n   $RM conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o\" >&5\n$as_echo \"$lt_cv_prog_compiler_c_o\" >&6; }\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext\" >&5\n$as_echo_n \"checking if $compiler supports -c -o file.$ac_objext... \" >&6; }\nif ${lt_cv_prog_compiler_c_o+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_c_o=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_c_o=yes\n     fi\n   fi\n   chmod u+w . 2>&5\n   $RM conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o\" >&5\n$as_echo \"$lt_cv_prog_compiler_c_o\" >&6; }\n\n\n\n\nhard_links=nottested\nif test no = \"$lt_cv_prog_compiler_c_o\" && test no != \"$need_locks\"; then\n  # do not overwrite the value of need_locks provided by the user\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links\" >&5\n$as_echo_n \"checking if we can lock with hard links... \" >&6; }\n  hard_links=yes\n  $RM conftest*\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  touch conftest.a\n  ln conftest.a conftest.b 2>&5 || hard_links=no\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $hard_links\" >&5\n$as_echo \"$hard_links\" >&6; }\n  if test no = \"$hard_links\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe\" >&5\n$as_echo \"$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe\" >&2;}\n    need_locks=warn\n  fi\nelse\n  need_locks=no\nfi\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries\" >&5\n$as_echo_n \"checking whether the $compiler linker ($LD) supports shared libraries... \" >&6; }\n\n  runpath_var=\n  allow_undefined_flag=\n  always_export_symbols=no\n  archive_cmds=\n  archive_expsym_cmds=\n  compiler_needs_object=no\n  enable_shared_with_static_runtimes=no\n  export_dynamic_flag_spec=\n  export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  hardcode_automatic=no\n  hardcode_direct=no\n  hardcode_direct_absolute=no\n  hardcode_libdir_flag_spec=\n  hardcode_libdir_separator=\n  hardcode_minus_L=no\n  hardcode_shlibpath_var=unsupported\n  inherit_rpath=no\n  link_all_deplibs=unknown\n  module_cmds=\n  module_expsym_cmds=\n  old_archive_from_new_cmds=\n  old_archive_from_expsyms_cmds=\n  thread_safe_flag_spec=\n  whole_archive_flag_spec=\n  # include_expsyms should be a list of space-separated symbols to be *always*\n  # included in the symbol list\n  include_expsyms=\n  # exclude_expsyms can be an extended regexp of symbols to exclude\n  # it will be wrapped by ' (' and ')$', so one must not match beginning or\n  # end of line.  Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc',\n  # as well as any symbol that contains 'd'.\n  exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'\n  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out\n  # platforms (ab)use it in PIC code, but their linkers get confused if\n  # the symbol is explicitly referenced.  Since portable code cannot\n  # rely on this symbol name, it's probably fine to never include it in\n  # preloaded symbol tables.\n  # Exclude shared library initialization/finalization symbols.\n  extract_expsyms_cmds=\n\n  case $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    # FIXME: the MSVC++ port hasn't been tested in a loooong time\n    # When not using gcc, we currently assume that we are using\n    # Microsoft Visual C++.\n    if test yes != \"$GCC\"; then\n      with_gnu_ld=no\n    fi\n    ;;\n  interix*)\n    # we just hope/assume this is gcc and not c89 (= MSVC++)\n    with_gnu_ld=yes\n    ;;\n  openbsd* | bitrig*)\n    with_gnu_ld=no\n    ;;\n  esac\n\n  ld_shlibs=yes\n\n  # On some targets, GNU ld is compatible enough with the native linker\n  # that we're better off using the native interface for both.\n  lt_use_gnu_ld_interface=no\n  if test yes = \"$with_gnu_ld\"; then\n    case $host_os in\n      aix*)\n\t# The AIX port of GNU ld has always aspired to compatibility\n\t# with the native linker.  However, as the warning in the GNU ld\n\t# block says, versions before 2.19.5* couldn't really create working\n\t# shared libraries, regardless of the interface used.\n\tcase `$LD -v 2>&1` in\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.19.5*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.[2-9]*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ [3-9]*) ;;\n\t  *)\n\t    lt_use_gnu_ld_interface=yes\n\t    ;;\n\tesac\n\t;;\n      *)\n\tlt_use_gnu_ld_interface=yes\n\t;;\n    esac\n  fi\n\n  if test yes = \"$lt_use_gnu_ld_interface\"; then\n    # If archive_cmds runs LD, not CC, wlarc should be empty\n    wlarc='$wl'\n\n    # Set some defaults for GNU ld with shared library support. These\n    # are reset later if shared libraries are not supported. Putting them\n    # here allows them to be overridden if necessary.\n    runpath_var=LD_RUN_PATH\n    hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n    export_dynamic_flag_spec='$wl--export-dynamic'\n    # ancient GNU ld didn't support --whole-archive et. al.\n    if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then\n      whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'\n    else\n      whole_archive_flag_spec=\n    fi\n    supports_anon_versioning=no\n    case `$LD -v | $SED -e 's/(^)\\+)\\s\\+//' 2>&1` in\n      *GNU\\ gold*) supports_anon_versioning=yes ;;\n      *\\ [01].* | *\\ 2.[0-9].* | *\\ 2.10.*) ;; # catch versions < 2.11\n      *\\ 2.11.93.0.2\\ *) supports_anon_versioning=yes ;; # RH7.3 ...\n      *\\ 2.11.92.0.12\\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...\n      *\\ 2.11.*) ;; # other 2.11 versions\n      *) supports_anon_versioning=yes ;;\n    esac\n\n    # See if GNU ld supports shared libraries.\n    case $host_os in\n    aix[3-9]*)\n      # On AIX/PPC, the GNU linker is very broken\n      if test ia64 != \"$host_cpu\"; then\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: the GNU linker, at least up to release 2.19, is reported\n*** to be unable to reliably create shared libraries on AIX.\n*** Therefore, libtool is disabling shared libraries support.  If you\n*** really care for shared libraries, you may want to install binutils\n*** 2.20 or above, or modify your PATH so that a non-GNU linker is found.\n*** You will then need to restart the configuration process.\n\n_LT_EOF\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n            archive_expsym_cmds=''\n        ;;\n      m68k)\n            archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO \"#define NAME $libname\" > $output_objdir/a2ixlibrary.data~$ECHO \"#define LIBRARY_ID 1\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define VERSION $major\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define REVISION $revision\" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'\n            hardcode_libdir_flag_spec='-L$libdir'\n            hardcode_minus_L=yes\n        ;;\n      esac\n      ;;\n\n    beos*)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tallow_undefined_flag=unsupported\n\t# Joseph Beckenbach <jrb3@best.com> says some releases of gcc\n\t# support --undefined.  This deserves some investigation.  FIXME\n\tarchive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless,\n      # as there is no search path for DLLs.\n      hardcode_libdir_flag_spec='-L$libdir'\n      export_dynamic_flag_spec='$wl--export-all-symbols'\n      allow_undefined_flag=unsupported\n      always_export_symbols=no\n      enable_shared_with_static_runtimes=yes\n      export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[BCDGRS][ ]/s/.*[ ]\\([^ ]*\\)/\\1 DATA/;s/^.*[ ]__nm__\\([^ ]*\\)[ ][^ ]*/\\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\\'' | sort | uniq > $export_symbols'\n      exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'\n\n      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then\n        archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n\t# If the export-symbols file already is a .def file, use it as\n\t# is; otherwise, prepend EXPORTS...\n\tarchive_expsym_cmds='if   test DEF = \"`$SED -n     -e '\\''s/^[\t ]*//'\\''     -e '\\''/^\\(;.*\\)*$/d'\\''     -e '\\''s/^\\(EXPORTS\\|LIBRARY\\)\\([\t ].*\\)*$/DEF/p'\\''     -e q     $export_symbols`\" ; then\n          cp $export_symbols $output_objdir/$soname.def;\n        else\n          echo EXPORTS > $output_objdir/$soname.def;\n          cat $export_symbols >> $output_objdir/$soname.def;\n        fi~\n        $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    haiku*)\n      archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n      link_all_deplibs=yes\n      ;;\n\n    os2*)\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_minus_L=yes\n      allow_undefined_flag=unsupported\n      shrext_cmds=.dll\n      archive_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\temxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      archive_expsym_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\tprefix_cmds=\"$SED\"~\n\tif test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t  prefix_cmds=\"$prefix_cmds -e 1d\";\n\tfi~\n\tprefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\tcat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n      enable_shared_with_static_runtimes=yes\n      ;;\n\n    interix[3-9]*)\n      hardcode_direct=no\n      hardcode_shlibpath_var=no\n      hardcode_libdir_flag_spec='$wl-rpath,$libdir'\n      export_dynamic_flag_spec='$wl-E'\n      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.\n      # Instead, shared libraries are loaded at an image base (0x10000000 by\n      # default) and relocated if they conflict, which is a slow very memory\n      # consuming and fragmenting process.  To avoid this, we pick a random,\n      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link\n      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.\n      archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n      archive_expsym_cmds='sed \"s|^|_|\" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n      ;;\n\n    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)\n      tmp_diet=no\n      if test linux-dietlibc = \"$host_os\"; then\n\tcase $cc_basename in\n\t  diet\\ *) tmp_diet=yes;;\t# linux-dietlibc with static linking (!diet-dyn)\n\tesac\n      fi\n      if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \\\n\t && test no = \"$tmp_diet\"\n      then\n\ttmp_addflag=' $pic_flag'\n\ttmp_sharedflag='-shared'\n\tcase $cc_basename,$host_cpu in\n        pgcc*)\t\t\t\t# Portland Group C compiler\n\t  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  tmp_addflag=' $pic_flag'\n\t  ;;\n\tpgf77* | pgf90* | pgf95* | pgfortran*)\n\t\t\t\t\t# Portland Group f77 and f90 compilers\n\t  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  tmp_addflag=' $pic_flag -Mnomain' ;;\n\tecc*,ia64* | icc*,ia64*)\t# Intel C compiler on ia64\n\t  tmp_addflag=' -i_dynamic' ;;\n\tefc*,ia64* | ifort*,ia64*)\t# Intel Fortran compiler on ia64\n\t  tmp_addflag=' -i_dynamic -nofor_main' ;;\n\tifc* | ifort*)\t\t\t# Intel Fortran compiler\n\t  tmp_addflag=' -nofor_main' ;;\n\tlf95*)\t\t\t\t# Lahey Fortran 8.1\n\t  whole_archive_flag_spec=\n\t  tmp_sharedflag='--shared' ;;\n        nagfor*)                        # NAGFOR 5.3\n          tmp_sharedflag='-Wl,-shared' ;;\n\txl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)\n\t  tmp_sharedflag='-qmkshrobj'\n\t  tmp_addflag= ;;\n\tnvcc*)\t# Cuda Compiler Driver 2.2\n\t  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  compiler_needs_object=yes\n\t  ;;\n\tesac\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ C*)\t\t\t# Sun C 5.9\n\t  whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\\\"\\\"; do test -z \\\"$conv\\\" || new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  compiler_needs_object=yes\n\t  tmp_sharedflag='-G' ;;\n\t*Sun\\ F*)\t\t\t# Sun Fortran 8.3\n\t  tmp_sharedflag='-G' ;;\n\tesac\n\tarchive_cmds='$CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\n        if test yes = \"$supports_anon_versioning\"; then\n          archive_expsym_cmds='echo \"{ global:\" > $output_objdir/$libname.ver~\n            cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n            echo \"local: *; };\" >> $output_objdir/$libname.ver~\n            $CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'\n        fi\n\n\tcase $cc_basename in\n\ttcc*)\n\t  export_dynamic_flag_spec='-rdynamic'\n\t  ;;\n\txlf* | bgf* | bgxlf* | mpixlf*)\n\t  # IBM XL Fortran 10.1 on PPC cannot create shared libs itself\n\t  whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive'\n\t  hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n\t  archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'\n\t  if test yes = \"$supports_anon_versioning\"; then\n\t    archive_expsym_cmds='echo \"{ global:\" > $output_objdir/$libname.ver~\n              cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n              echo \"local: *; };\" >> $output_objdir/$libname.ver~\n              $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'\n\t  fi\n\t  ;;\n\tesac\n      else\n        ld_shlibs=no\n      fi\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\tarchive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'\n\twlarc=\n      else\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      fi\n      ;;\n\n    solaris*)\n      if $LD -v 2>&1 | $GREP 'BFD 2\\.8' > /dev/null; then\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: The releases 2.8.* of the GNU linker cannot reliably\n*** create shared libraries on Solaris systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.9.1 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)\n      case `$LD -v 2>&1` in\n        *\\ [01].* | *\\ 2.[0-9].* | *\\ 2.1[0-5].*)\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot\n*** reliably create shared libraries on SCO systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n\t;;\n\t*)\n\t  # For security reasons, it is highly recommended that you always\n\t  # use absolute paths for naming shared libraries, and exclude the\n\t  # DT_RUNPATH tag from executables and libraries.  But doing so\n\t  # requires that you compile everything twice, which is a pain.\n\t  if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t    hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n\t    archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t    archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t  else\n\t    ld_shlibs=no\n\t  fi\n\t;;\n      esac\n      ;;\n\n    sunos4*)\n      archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      wlarc=\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    *)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n    esac\n\n    if test no = \"$ld_shlibs\"; then\n      runpath_var=\n      hardcode_libdir_flag_spec=\n      export_dynamic_flag_spec=\n      whole_archive_flag_spec=\n    fi\n  else\n    # PORTME fill in a description of your system's linker (not GNU ld)\n    case $host_os in\n    aix3*)\n      allow_undefined_flag=unsupported\n      always_export_symbols=yes\n      archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'\n      # Note: this linker hardcodes the directories in LIBPATH if there\n      # are no directories specified by -L.\n      hardcode_minus_L=yes\n      if test yes = \"$GCC\" && test -z \"$lt_prog_compiler_static\"; then\n\t# Neither direct hardcoding nor static linking is supported with a\n\t# broken collect2.\n\thardcode_direct=unsupported\n      fi\n      ;;\n\n    aix[4-9]*)\n      if test ia64 = \"$host_cpu\"; then\n\t# On IA64, the linker does run time linking by default, so we don't\n\t# have to do anything special.\n\taix_use_runtimelinking=no\n\texp_sym_flag='-Bexport'\n\tno_entry_flag=\n      else\n\t# If we're using GNU nm, then we don't want the \"-C\" option.\n\t# -C means demangle to GNU nm, but means don't demangle to AIX nm.\n\t# Without the \"-l\" option, or with the \"-B\" option, AIX nm treats\n\t# weak defined symbols like other global defined symbols, whereas\n\t# GNU nm marks them as \"W\".\n\t# While the 'weak' keyword is ignored in the Export File, we need\n\t# it in the Import File for the 'aix-soname' feature, so we have\n\t# to replace the \"-B\" option with \"-P\" for AIX nm.\n\tif $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then\n\t  export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\")) && (substr(\\$ 3,1,1) != \".\")) { if (\\$ 2 == \"W\") { print \\$ 3 \" weak\" } else { print \\$ 3 } } }'\\'' | sort -u > $export_symbols'\n\telse\n\t  export_symbols_cmds='`func_echo_all $NM | $SED -e '\\''s/B\\([^B]*\\)$/P\\1/'\\''` -PCpgl $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) && (substr(\\$ 1,1,1) != \".\")) { if ((\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) { print \\$ 1 \" weak\" } else { print \\$ 1 } } }'\\'' | sort -u > $export_symbols'\n\tfi\n\taix_use_runtimelinking=no\n\n\t# Test if we are trying to use run time linking or normal\n\t# AIX style linking. If -brtl is somewhere in LDFLAGS, we\n\t# have runtime linking enabled, and use it for executables.\n\t# For shared libraries, we enable/disable runtime linking\n\t# depending on the kind of the shared library created -\n\t# when \"with_aix_soname,aix_use_runtimelinking\" is:\n\t# \"aix,no\"   lib.a(lib.so.V) shared, rtl:no,  for executables\n\t# \"aix,yes\"  lib.so          shared, rtl:yes, for executables\n\t#            lib.a           static archive\n\t# \"both,no\"  lib.so.V(shr.o) shared, rtl:yes\n\t#            lib.a(lib.so.V) shared, rtl:no,  for executables\n\t# \"both,yes\" lib.so.V(shr.o) shared, rtl:yes, for executables\n\t#            lib.a(lib.so.V) shared, rtl:no\n\t# \"svr4,*\"   lib.so.V(shr.o) shared, rtl:yes, for executables\n\t#            lib.a           static archive\n\tcase $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)\n\t  for ld_flag in $LDFLAGS; do\n\t  if (test x-brtl = \"x$ld_flag\" || test x-Wl,-brtl = \"x$ld_flag\"); then\n\t    aix_use_runtimelinking=yes\n\t    break\n\t  fi\n\t  done\n\t  if test svr4,no = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t    # With aix-soname=svr4, we create the lib.so.V shared archives only,\n\t    # so we don't have lib.a shared libs to link our executables.\n\t    # We have to force runtime linking in this case.\n\t    aix_use_runtimelinking=yes\n\t    LDFLAGS=\"$LDFLAGS -Wl,-brtl\"\n\t  fi\n\t  ;;\n\tesac\n\n\texp_sym_flag='-bexport'\n\tno_entry_flag='-bnoentry'\n      fi\n\n      # When large executables or shared objects are built, AIX ld can\n      # have problems creating the table of contents.  If linking a library\n      # or program results in \"error TOC overflow\" add -mminimal-toc to\n      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not\n      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.\n\n      archive_cmds=''\n      hardcode_direct=yes\n      hardcode_direct_absolute=yes\n      hardcode_libdir_separator=':'\n      link_all_deplibs=yes\n      file_list_spec='$wl-f,'\n      case $with_aix_soname,$aix_use_runtimelinking in\n      aix,*) ;; # traditional, no import file\n      svr4,* | *,yes) # use import file\n\t# The Import File defines what to hardcode.\n\thardcode_direct=no\n\thardcode_direct_absolute=no\n\t;;\n      esac\n\n      if test yes = \"$GCC\"; then\n\tcase $host_os in aix4.[012]|aix4.[012].*)\n\t# We only want to do this on AIX 4.2 and lower, the check\n\t# below for broken collect2 doesn't work under 4.3+\n\t  collect2name=`$CC -print-prog-name=collect2`\n\t  if test -f \"$collect2name\" &&\n\t   strings \"$collect2name\" | $GREP resolve_lib_name >/dev/null\n\t  then\n\t  # We have reworked collect2\n\t  :\n\t  else\n\t  # We have old collect2\n\t  hardcode_direct=unsupported\n\t  # It fails to find uninstalled libraries when the uninstalled\n\t  # path is not listed in the libpath.  Setting hardcode_minus_L\n\t  # to unsupported forces relinking\n\t  hardcode_minus_L=yes\n\t  hardcode_libdir_flag_spec='-L$libdir'\n\t  hardcode_libdir_separator=\n\t  fi\n\t  ;;\n\tesac\n\tshared_flag='-shared'\n\tif test yes = \"$aix_use_runtimelinking\"; then\n\t  shared_flag=\"$shared_flag \"'$wl-G'\n\tfi\n\t# Need to ensure runtime linking is disabled for the traditional\n\t# shared library, or the linker may eventually find shared libraries\n\t# /with/ Import File - we do not want to mix them.\n\tshared_flag_aix='-shared'\n\tshared_flag_svr4='-shared $wl-G'\n      else\n\t# not using gcc\n\tif test ia64 = \"$host_cpu\"; then\n\t# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release\n\t# chokes on -Wl,-G. The following line is correct:\n\t  shared_flag='-G'\n\telse\n\t  if test yes = \"$aix_use_runtimelinking\"; then\n\t    shared_flag='$wl-G'\n\t  else\n\t    shared_flag='$wl-bM:SRE'\n\t  fi\n\t  shared_flag_aix='$wl-bM:SRE'\n\t  shared_flag_svr4='$wl-G'\n\tfi\n      fi\n\n      export_dynamic_flag_spec='$wl-bexpall'\n      # It seems that -bexpall does not export symbols beginning with\n      # underscore (_), so it is better to generate a list of symbols to export.\n      always_export_symbols=yes\n      if test aix,yes = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t# Warning - without using the other runtime loading flags (-brtl),\n\t# -berok will link without error, but may produce a broken library.\n\tallow_undefined_flag='-berok'\n        # Determine the default libpath from the value encoded in an\n        # empty executable.\n        if test set = \"${lt_cv_aix_libpath+set}\"; then\n  aix_libpath=$lt_cv_aix_libpath\nelse\n  if ${lt_cv_aix_libpath_+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n\n  lt_aix_libpath_sed='\n      /Import File Strings/,/^$/ {\n\t  /^0/ {\n\t      s/^0  *\\([^ ]*\\) *$/\\1/\n\t      p\n\t  }\n      }'\n  lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  # Check for a 64-bit object if we didn't find anything.\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  fi\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=/usr/lib:/lib\n  fi\n\nfi\n\n  aix_libpath=$lt_cv_aix_libpath_\nfi\n\n        hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'\"$aix_libpath\"\n        archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n \"$allow_undefined_flag\"; then func_echo_all \"$wl$allow_undefined_flag\"; else :; fi` $wl'$exp_sym_flag:\\$export_symbols' '$shared_flag\n      else\n\tif test ia64 = \"$host_cpu\"; then\n\t  hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib'\n\t  allow_undefined_flag=\"-z nodefs\"\n\t  archive_expsym_cmds=\"\\$CC $shared_flag\"' -o $output_objdir/$soname $libobjs $deplibs '\"\\$wl$no_entry_flag\"' $compiler_flags $wl$allow_undefined_flag '\"\\$wl$exp_sym_flag:\\$export_symbols\"\n\telse\n\t # Determine the default libpath from the value encoded in an\n\t # empty executable.\n\t if test set = \"${lt_cv_aix_libpath+set}\"; then\n  aix_libpath=$lt_cv_aix_libpath\nelse\n  if ${lt_cv_aix_libpath_+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n\n  lt_aix_libpath_sed='\n      /Import File Strings/,/^$/ {\n\t  /^0/ {\n\t      s/^0  *\\([^ ]*\\) *$/\\1/\n\t      p\n\t  }\n      }'\n  lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  # Check for a 64-bit object if we didn't find anything.\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  fi\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=/usr/lib:/lib\n  fi\n\nfi\n\n  aix_libpath=$lt_cv_aix_libpath_\nfi\n\n\t hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'\"$aix_libpath\"\n\t  # Warning - without using the other run time loading flags,\n\t  # -berok will link without error, but may produce a broken library.\n\t  no_undefined_flag=' $wl-bernotok'\n\t  allow_undefined_flag=' $wl-berok'\n\t  if test yes = \"$with_gnu_ld\"; then\n\t    # We only use this code for GNU lds that support --whole-archive.\n\t    whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive'\n\t  else\n\t    # Exported symbols can be pulled into shared objects from archives\n\t    whole_archive_flag_spec='$convenience'\n\t  fi\n\t  archive_cmds_need_lc=yes\n\t  archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'\n\t  # -brtl affects multiple linker settings, -berok does not and is overridden later\n\t  compiler_flags_filtered='`func_echo_all \"$compiler_flags \" | $SED -e \"s%-brtl\\\\([, ]\\\\)%-berok\\\\1%g\"`'\n\t  if test svr4 != \"$with_aix_soname\"; then\n\t    # This is similar to how AIX traditionally builds its shared libraries.\n\t    archive_expsym_cmds=\"$archive_expsym_cmds\"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'\n\t  fi\n\t  if test aix != \"$with_aix_soname\"; then\n\t    archive_expsym_cmds=\"$archive_expsym_cmds\"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all \"#! $soname($shared_archive_member_spec.o)\"; if test shr_64 = \"$shared_archive_member_spec\"; then func_echo_all \"# 64\"; else func_echo_all \"# 32\"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'\n\t  else\n\t    # used by -dlpreopen to get the symbols\n\t    archive_expsym_cmds=\"$archive_expsym_cmds\"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'\n\t  fi\n\t  archive_expsym_cmds=\"$archive_expsym_cmds\"'~$RM -r $output_objdir/$realname.d'\n\tfi\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n            archive_expsym_cmds=''\n        ;;\n      m68k)\n            archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO \"#define NAME $libname\" > $output_objdir/a2ixlibrary.data~$ECHO \"#define LIBRARY_ID 1\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define VERSION $major\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define REVISION $revision\" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'\n            hardcode_libdir_flag_spec='-L$libdir'\n            hardcode_minus_L=yes\n        ;;\n      esac\n      ;;\n\n    bsdi[45]*)\n      export_dynamic_flag_spec=-rdynamic\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # When not using gcc, we currently assume that we are using\n      # Microsoft Visual C++.\n      # hardcode_libdir_flag_spec is actually meaningless, as there is\n      # no search path for DLLs.\n      case $cc_basename in\n      cl*)\n\t# Native MSVC\n\thardcode_libdir_flag_spec=' '\n\tallow_undefined_flag=unsupported\n\talways_export_symbols=yes\n\tfile_list_spec='@'\n\t# Tell ltmain to make .lib files, not .a files.\n\tlibext=lib\n\t# Tell ltmain to make .dll files, not .so files.\n\tshrext_cmds=.dll\n\t# FIXME: Setting linknames here is a bad hack.\n\tarchive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~linknames='\n\tarchive_expsym_cmds='if   test DEF = \"`$SED -n     -e '\\''s/^[\t ]*//'\\''     -e '\\''/^\\(;.*\\)*$/d'\\''     -e '\\''s/^\\(EXPORTS\\|LIBRARY\\)\\([\t ].*\\)*$/DEF/p'\\''     -e q     $export_symbols`\" ; then\n            cp \"$export_symbols\" \"$output_objdir/$soname.def\";\n            echo \"$tool_output_objdir$soname.def\" > \"$output_objdir/$soname.exp\";\n          else\n            $SED -e '\\''s/^/-link -EXPORT:/'\\'' < $export_symbols > $output_objdir/$soname.exp;\n          fi~\n          $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs \"@$tool_output_objdir$soname.exp\" -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~\n          linknames='\n\t# The linker will not automatically build a static lib if we build a DLL.\n\t# _LT_TAGVAR(old_archive_from_new_cmds, )='true'\n\tenable_shared_with_static_runtimes=yes\n\texclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'\n\texport_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[BCDGRS][ ]/s/.*[ ]\\([^ ]*\\)/\\1,DATA/'\\'' | $SED -e '\\''/^[AITW][ ]/s/.*[ ]//'\\'' | sort | uniq > $export_symbols'\n\t# Don't use ranlib\n\told_postinstall_cmds='chmod 644 $oldlib'\n\tpostlink_cmds='lt_outputfile=\"@OUTPUT@\"~\n          lt_tool_outputfile=\"@TOOL_OUTPUT@\"~\n          case $lt_outputfile in\n            *.exe|*.EXE) ;;\n            *)\n              lt_outputfile=$lt_outputfile.exe\n              lt_tool_outputfile=$lt_tool_outputfile.exe\n              ;;\n          esac~\n          if test : != \"$MANIFEST_TOOL\" && test -f \"$lt_outputfile.manifest\"; then\n            $MANIFEST_TOOL -manifest \"$lt_tool_outputfile.manifest\" -outputresource:\"$lt_tool_outputfile\" || exit 1;\n            $RM \"$lt_outputfile.manifest\";\n          fi'\n\t;;\n      *)\n\t# Assume MSVC wrapper\n\thardcode_libdir_flag_spec=' '\n\tallow_undefined_flag=unsupported\n\t# Tell ltmain to make .lib files, not .a files.\n\tlibext=lib\n\t# Tell ltmain to make .dll files, not .so files.\n\tshrext_cmds=.dll\n\t# FIXME: Setting linknames here is a bad hack.\n\tarchive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all \"$deplibs\" | $SED '\\''s/ -lc$//'\\''` -link -dll~linknames='\n\t# The linker will automatically build a .lib file if we build a DLL.\n\told_archive_from_new_cmds='true'\n\t# FIXME: Should let the user specify the lib program.\n\told_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs'\n\tenable_shared_with_static_runtimes=yes\n\t;;\n      esac\n      ;;\n\n    darwin* | rhapsody*)\n\n\n  archive_cmds_need_lc=no\n  hardcode_direct=no\n  hardcode_automatic=yes\n  hardcode_shlibpath_var=unsupported\n  if test yes = \"$lt_cv_ld_force_load\"; then\n    whole_archive_flag_spec='`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience $wl-force_load,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"`'\n\n  else\n    whole_archive_flag_spec=''\n  fi\n  link_all_deplibs=yes\n  allow_undefined_flag=$_lt_dar_allow_undefined\n  case $cc_basename in\n     ifort*|nagfor*) _lt_dar_can_shared=yes ;;\n     *) _lt_dar_can_shared=$GCC ;;\n  esac\n  if test yes = \"$_lt_dar_can_shared\"; then\n    output_verbose_link_cmd=func_echo_all\n    archive_cmds=\"\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod$_lt_dsymutil\"\n    module_cmds=\"\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags$_lt_dsymutil\"\n    archive_expsym_cmds=\"sed 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil\"\n    module_expsym_cmds=\"sed -e 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags$_lt_dar_export_syms$_lt_dsymutil\"\n\n  else\n  ld_shlibs=no\n  fi\n\n      ;;\n\n    dgux*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_shlibpath_var=no\n      ;;\n\n    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor\n    # support.  Future versions do this automatically, but an explicit c++rt0.o\n    # does not break anything, and helps significantly (at the cost of a little\n    # extra space).\n    freebsd2.2*)\n      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    # Unfortunately, older versions of FreeBSD 2 do not have this feature.\n    freebsd2.*)\n      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_direct=yes\n      hardcode_minus_L=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.\n    freebsd* | dragonfly*)\n      archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    hpux9*)\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n      else\n\tarchive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n      fi\n      hardcode_libdir_flag_spec='$wl+b $wl$libdir'\n      hardcode_libdir_separator=:\n      hardcode_direct=yes\n\n      # hardcode_minus_L: Not really in the search PATH,\n      # but as the default location of the library.\n      hardcode_minus_L=yes\n      export_dynamic_flag_spec='$wl-E'\n      ;;\n\n    hpux10*)\n      if test yes,no = \"$GCC,$with_gnu_ld\"; then\n\tarchive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      if test no = \"$with_gnu_ld\"; then\n\thardcode_libdir_flag_spec='$wl+b $wl$libdir'\n\thardcode_libdir_separator=:\n\thardcode_direct=yes\n\thardcode_direct_absolute=yes\n\texport_dynamic_flag_spec='$wl-E'\n\t# hardcode_minus_L: Not really in the search PATH,\n\t# but as the default location of the library.\n\thardcode_minus_L=yes\n      fi\n      ;;\n\n    hpux11*)\n      if test yes,no = \"$GCC,$with_gnu_ld\"; then\n\tcase $host_cpu in\n\thppa*64*)\n\t  archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\t  archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tesac\n      else\n\tcase $host_cpu in\n\thppa*64*)\n\t  archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\n\t  # Older versions of the 11.00 compiler do not understand -b yet\n\t  # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)\n\t  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $CC understands -b\" >&5\n$as_echo_n \"checking if $CC understands -b... \" >&6; }\nif ${lt_cv_prog_compiler__b+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler__b=no\n   save_LDFLAGS=$LDFLAGS\n   LDFLAGS=\"$LDFLAGS -b\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&5\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         lt_cv_prog_compiler__b=yes\n       fi\n     else\n       lt_cv_prog_compiler__b=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=$save_LDFLAGS\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b\" >&5\n$as_echo \"$lt_cv_prog_compiler__b\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler__b\"; then\n    archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\nelse\n    archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'\nfi\n\n\t  ;;\n\tesac\n      fi\n      if test no = \"$with_gnu_ld\"; then\n\thardcode_libdir_flag_spec='$wl+b $wl$libdir'\n\thardcode_libdir_separator=:\n\n\tcase $host_cpu in\n\thppa*64*|ia64*)\n\t  hardcode_direct=no\n\t  hardcode_shlibpath_var=no\n\t  ;;\n\t*)\n\t  hardcode_direct=yes\n\t  hardcode_direct_absolute=yes\n\t  export_dynamic_flag_spec='$wl-E'\n\n\t  # hardcode_minus_L: Not really in the search PATH,\n\t  # but as the default location of the library.\n\t  hardcode_minus_L=yes\n\t  ;;\n\tesac\n      fi\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t# Try to use the -exported_symbol ld option, if it does not\n\t# work, assume that -exports_file does not work either and\n\t# implicitly export all symbols.\n\t# This should be the same for all languages, so no per-tag cache variable.\n\t{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol\" >&5\n$as_echo_n \"checking whether the $host_os linker accepts -exported_symbol... \" >&6; }\nif ${lt_cv_irix_exported_symbol+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  save_LDFLAGS=$LDFLAGS\n\t   LDFLAGS=\"$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null\"\n\t   cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\nint foo (void) { return 0; }\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  lt_cv_irix_exported_symbol=yes\nelse\n  lt_cv_irix_exported_symbol=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n           LDFLAGS=$save_LDFLAGS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol\" >&5\n$as_echo \"$lt_cv_irix_exported_symbol\" >&6; }\n\tif test yes = \"$lt_cv_irix_exported_symbol\"; then\n          archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib'\n\tfi\n      else\n\tarchive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\tarchive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      hardcode_libdir_separator=:\n      inherit_rpath=yes\n      link_all_deplibs=yes\n      ;;\n\n    linux*)\n      case $cc_basename in\n      tcc*)\n\t# Fabrice Bellard et al's Tiny C Compiler\n\tld_shlibs=yes\n\tarchive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t;;\n      esac\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\tarchive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out\n      else\n\tarchive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF\n      fi\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    newsos6)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_direct=yes\n      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      hardcode_libdir_separator=:\n      hardcode_shlibpath_var=no\n      ;;\n\n    *nto* | *qnx*)\n      ;;\n\n    openbsd* | bitrig*)\n      if test -f /usr/libexec/ld.so; then\n\thardcode_direct=yes\n\thardcode_shlibpath_var=no\n\thardcode_direct_absolute=yes\n\tif test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n\t  archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols'\n\t  hardcode_libdir_flag_spec='$wl-rpath,$libdir'\n\t  export_dynamic_flag_spec='$wl-E'\n\telse\n\t  archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  hardcode_libdir_flag_spec='$wl-rpath,$libdir'\n\tfi\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    os2*)\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_minus_L=yes\n      allow_undefined_flag=unsupported\n      shrext_cmds=.dll\n      archive_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\temxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      archive_expsym_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\tprefix_cmds=\"$SED\"~\n\tif test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t  prefix_cmds=\"$prefix_cmds -e 1d\";\n\tfi~\n\tprefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\tcat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n      enable_shared_with_static_runtimes=yes\n      ;;\n\n    osf3*)\n      if test yes = \"$GCC\"; then\n\tallow_undefined_flag=' $wl-expect_unresolved $wl\\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n      else\n\tallow_undefined_flag=' -expect_unresolved \\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      hardcode_libdir_separator=:\n      ;;\n\n    osf4* | osf5*)\t# as osf3* with the addition of -msym flag\n      if test yes = \"$GCC\"; then\n\tallow_undefined_flag=' $wl-expect_unresolved $wl\\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\thardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      else\n\tallow_undefined_flag=' -expect_unresolved \\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\tarchive_expsym_cmds='for i in `cat $export_symbols`; do printf \"%s %s\\\\n\" -exported_symbol \"\\$i\" >> $lib.exp; done; printf \"%s\\\\n\" \"-hidden\">> $lib.exp~\n          $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n \"$verstring\" && $ECHO \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp'\n\n\t# Both c and cxx compiler support -rpath directly\n\thardcode_libdir_flag_spec='-rpath $libdir'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_separator=:\n      ;;\n\n    solaris*)\n      no_undefined_flag=' -z defs'\n      if test yes = \"$GCC\"; then\n\twlarc='$wl'\n\tarchive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n          $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n      else\n\tcase `$CC -V 2>&1` in\n\t*\"Compilers 5.0\"*)\n\t  wlarc=''\n\t  archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  archive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n            $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'\n\t  ;;\n\t*)\n\t  wlarc='$wl'\n\t  archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  archive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n            $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n\t  ;;\n\tesac\n      fi\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_shlibpath_var=no\n      case $host_os in\n      solaris2.[0-5] | solaris2.[0-5].*) ;;\n      *)\n\t# The compiler driver will combine and reorder linker options,\n\t# but understands '-z linker_flag'.  GCC discards it without '$wl',\n\t# but is careful enough not to reorder.\n\t# Supported since Solaris 2.6 (maybe 2.5.1?)\n\tif test yes = \"$GCC\"; then\n\t  whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'\n\telse\n\t  whole_archive_flag_spec='-z allextract$convenience -z defaultextract'\n\tfi\n\t;;\n      esac\n      link_all_deplibs=yes\n      ;;\n\n    sunos4*)\n      if test sequent = \"$host_vendor\"; then\n\t# Use $CC to link under sequent, because it throws in some extra .o\n\t# files that make .init and .fini sections work.\n\tarchive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_direct=yes\n      hardcode_minus_L=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    sysv4)\n      case $host_vendor in\n\tsni)\n\t  archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  hardcode_direct=yes # is this really true???\n\t;;\n\tsiemens)\n\t  ## LD is ld it makes a PLAMLIB\n\t  ## CC just makes a GrossModule.\n\t  archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags'\n\t  reload_cmds='$CC -r -o $output$reload_objs'\n\t  hardcode_direct=no\n        ;;\n\tmotorola)\n\t  archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  hardcode_direct=no #Motorola manual says yes, but my tests say they lie\n\t;;\n      esac\n      runpath_var='LD_RUN_PATH'\n      hardcode_shlibpath_var=no\n      ;;\n\n    sysv4.3*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_shlibpath_var=no\n      export_dynamic_flag_spec='-Bexport'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tarchive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\thardcode_shlibpath_var=no\n\trunpath_var=LD_RUN_PATH\n\thardcode_runpath_var=yes\n\tld_shlibs=yes\n      fi\n      ;;\n\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)\n      no_undefined_flag='$wl-z,text'\n      archive_cmds_need_lc=no\n      hardcode_shlibpath_var=no\n      runpath_var='LD_RUN_PATH'\n\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6*)\n      # Note: We CANNOT use -z defs as we might desire, because we do not\n      # link with -lc, and that would cause any symbols used from libc to\n      # always be unresolved, which means just about no library would\n      # ever link correctly.  If we're not using GNU ld we use -z text\n      # though, which does catch some bad symbols but isn't as heavy-handed\n      # as -z defs.\n      no_undefined_flag='$wl-z,text'\n      allow_undefined_flag='$wl-z,nodefs'\n      archive_cmds_need_lc=no\n      hardcode_shlibpath_var=no\n      hardcode_libdir_flag_spec='$wl-R,$libdir'\n      hardcode_libdir_separator=':'\n      link_all_deplibs=yes\n      export_dynamic_flag_spec='$wl-Bexport'\n      runpath_var='LD_RUN_PATH'\n\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    uts4*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_shlibpath_var=no\n      ;;\n\n    *)\n      ld_shlibs=no\n      ;;\n    esac\n\n    if test sni = \"$host_vendor\"; then\n      case $host in\n      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)\n\texport_dynamic_flag_spec='$wl-Blargedynsym'\n\t;;\n      esac\n    fi\n  fi\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ld_shlibs\" >&5\n$as_echo \"$ld_shlibs\" >&6; }\ntest no = \"$ld_shlibs\" && can_build_shared=no\n\nwith_gnu_ld=$with_gnu_ld\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#\n# Do we need to explicitly link libc?\n#\ncase \"x$archive_cmds_need_lc\" in\nx|xyes)\n  # Assume -lc should be added\n  archive_cmds_need_lc=yes\n\n  if test yes,yes = \"$GCC,$enable_shared\"; then\n    case $archive_cmds in\n    *'~'*)\n      # FIXME: we may have to deal with multi-command sequences.\n      ;;\n    '$CC '*)\n      # Test whether the compiler implicitly links with -lc since on some\n      # systems, -lgcc has to come before -lc. If gcc already passes -lc\n      # to ld, don't add -lc before -lgcc.\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in\" >&5\n$as_echo_n \"checking whether -lc should be explicitly linked in... \" >&6; }\nif ${lt_cv_archive_cmds_need_lc+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  $RM conftest*\n\techo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n\tif { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } 2>conftest.err; then\n\t  soname=conftest\n\t  lib=conftest\n\t  libobjs=conftest.$ac_objext\n\t  deplibs=\n\t  wl=$lt_prog_compiler_wl\n\t  pic_flag=$lt_prog_compiler_pic\n\t  compiler_flags=-v\n\t  linker_flags=-v\n\t  verstring=\n\t  output_objdir=.\n\t  libname=conftest\n\t  lt_save_allow_undefined_flag=$allow_undefined_flag\n\t  allow_undefined_flag=\n\t  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$archive_cmds 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1\\\"\"; } >&5\n  (eval $archive_cmds 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n\t  then\n\t    lt_cv_archive_cmds_need_lc=no\n\t  else\n\t    lt_cv_archive_cmds_need_lc=yes\n\t  fi\n\t  allow_undefined_flag=$lt_save_allow_undefined_flag\n\telse\n\t  cat conftest.err 1>&5\n\tfi\n\t$RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc\" >&5\n$as_echo \"$lt_cv_archive_cmds_need_lc\" >&6; }\n      archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc\n      ;;\n    esac\n  fi\n  ;;\nesac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics\" >&5\n$as_echo_n \"checking dynamic linker characteristics... \" >&6; }\n\nif test yes = \"$GCC\"; then\n  case $host_os in\n    darwin*) lt_awk_arg='/^libraries:/,/LR/' ;;\n    *) lt_awk_arg='/^libraries:/' ;;\n  esac\n  case $host_os in\n    mingw* | cegcc*) lt_sed_strip_eq='s|=\\([A-Za-z]:\\)|\\1|g' ;;\n    *) lt_sed_strip_eq='s|=/|/|g' ;;\n  esac\n  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e \"s/^libraries://\" -e $lt_sed_strip_eq`\n  case $lt_search_path_spec in\n  *\\;*)\n    # if the path contains \";\" then we assume it to be the separator\n    # otherwise default to the standard path separator (i.e. \":\") - it is\n    # assumed that no part of a normal pathname contains \";\" but that should\n    # okay in the real world where \";\" in dirpaths is itself problematic.\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED 's/;/ /g'`\n    ;;\n  *)\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED \"s/$PATH_SEPARATOR/ /g\"`\n    ;;\n  esac\n  # Ok, now we have the path, separated by spaces, we can step through it\n  # and add multilib dir if necessary...\n  lt_tmp_lt_search_path_spec=\n  lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`\n  # ...but if some path component already ends with the multilib dir we assume\n  # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer).\n  case \"$lt_multi_os_dir; $lt_search_path_spec \" in\n  \"/; \"* | \"/.; \"* | \"/./; \"* | *\"$lt_multi_os_dir \"* | *\"$lt_multi_os_dir/ \"*)\n    lt_multi_os_dir=\n    ;;\n  esac\n  for lt_sys_path in $lt_search_path_spec; do\n    if test -d \"$lt_sys_path$lt_multi_os_dir\"; then\n      lt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir\"\n    elif test -n \"$lt_multi_os_dir\"; then\n      test -d \"$lt_sys_path\" && \\\n\tlt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path\"\n    fi\n  done\n  lt_search_path_spec=`$ECHO \"$lt_tmp_lt_search_path_spec\" | awk '\nBEGIN {RS = \" \"; FS = \"/|\\n\";} {\n  lt_foo = \"\";\n  lt_count = 0;\n  for (lt_i = NF; lt_i > 0; lt_i--) {\n    if ($lt_i != \"\" && $lt_i != \".\") {\n      if ($lt_i == \"..\") {\n        lt_count++;\n      } else {\n        if (lt_count == 0) {\n          lt_foo = \"/\" $lt_i lt_foo;\n        } else {\n          lt_count--;\n        }\n      }\n    }\n  }\n  if (lt_foo != \"\") { lt_freq[lt_foo]++; }\n  if (lt_freq[lt_foo] == 1) { print lt_foo; }\n}'`\n  # AWK program above erroneously prepends '/' to C:/dos/paths\n  # for these hosts.\n  case $host_os in\n    mingw* | cegcc*) lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" |\\\n      $SED 's|/\\([A-Za-z]:\\)|\\1|g'` ;;\n  esac\n  sys_lib_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $lt_NL2SP`\nelse\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\nfi\nlibrary_names_spec=\nlibname_spec='lib$name'\nsoname_spec=\nshrext_cmds=.so\npostinstall_cmds=\npostuninstall_cmds=\nfinish_cmds=\nfinish_eval=\nshlibpath_var=\nshlibpath_overrides_runpath=unknown\nversion_type=none\ndynamic_linker=\"$host_os ld.so\"\nsys_lib_dlsearch_path_spec=\"/lib /usr/lib\"\nneed_lib_prefix=unknown\nhardcode_into_libs=no\n\n# when you set need_version to no, make sure it does not cause -set_version\n# flags to be left without arguments\nneed_version=unknown\n\n\n\ncase $host_os in\naix3*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname.a'\n  shlibpath_var=LIBPATH\n\n  # AIX 3 has no versioning support, so we append a major version to the name.\n  soname_spec='$libname$release$shared_ext$major'\n  ;;\n\naix[4-9]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  hardcode_into_libs=yes\n  if test ia64 = \"$host_cpu\"; then\n    # AIX 5 supports IA64\n    library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext'\n    shlibpath_var=LD_LIBRARY_PATH\n  else\n    # With GCC up to 2.95.x, collect2 would create an import file\n    # for dependence libraries.  The import file would start with\n    # the line '#! .'.  This would cause the generated library to\n    # depend on '.', always an invalid library.  This was fixed in\n    # development snapshots of GCC prior to 3.0.\n    case $host_os in\n      aix4 | aix4.[01] | aix4.[01].*)\n      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'\n\t   echo ' yes '\n\t   echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then\n\t:\n      else\n\tcan_build_shared=no\n      fi\n      ;;\n    esac\n    # Using Import Files as archive members, it is possible to support\n    # filename-based versioning of shared library archives on AIX. While\n    # this would work for both with and without runtime linking, it will\n    # prevent static linking of such archives. So we do filename-based\n    # shared library versioning with .so extension only, which is used\n    # when both runtime linking and shared linking is enabled.\n    # Unfortunately, runtime linking may impact performance, so we do\n    # not want this to be the default eventually. Also, we use the\n    # versioned .so libs for executables only if there is the -brtl\n    # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only.\n    # To allow for filename-based versioning support, we need to create\n    # libNAME.so.V as an archive file, containing:\n    # *) an Import File, referring to the versioned filename of the\n    #    archive as well as the shared archive member, telling the\n    #    bitwidth (32 or 64) of that shared object, and providing the\n    #    list of exported symbols of that shared object, eventually\n    #    decorated with the 'weak' keyword\n    # *) the shared object with the F_LOADONLY flag set, to really avoid\n    #    it being seen by the linker.\n    # At run time we better use the real file rather than another symlink,\n    # but for link time we create the symlink libNAME.so -> libNAME.so.V\n\n    case $with_aix_soname,$aix_use_runtimelinking in\n    # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct\n    # soname into executable. Probably we can add versioning support to\n    # collect2, so additional links can be useful in future.\n    aix,yes) # traditional libtool\n      dynamic_linker='AIX unversionable lib.so'\n      # If using run time linking (on AIX 4.2 or later) use lib<name>.so\n      # instead of lib<name>.a to let people know that these are not\n      # typical AIX shared libraries.\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n      ;;\n    aix,no) # traditional AIX only\n      dynamic_linker='AIX lib.a(lib.so.V)'\n      # We preserve .a as extension for shared libraries through AIX4.2\n      # and later when we are not doing run time linking.\n      library_names_spec='$libname$release.a $libname.a'\n      soname_spec='$libname$release$shared_ext$major'\n      ;;\n    svr4,*) # full svr4 only\n      dynamic_linker=\"AIX lib.so.V($shared_archive_member_spec.o)\"\n      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'\n      # We do not specify a path in Import Files, so LIBPATH fires.\n      shlibpath_overrides_runpath=yes\n      ;;\n    *,yes) # both, prefer svr4\n      dynamic_linker=\"AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)\"\n      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'\n      # unpreferred sharedlib libNAME.a needs extra handling\n      postinstall_cmds='test -n \"$linkname\" || linkname=\"$realname\"~func_stripname \"\" \".so\" \"$linkname\"~$install_shared_prog \"$dir/$func_stripname_result.$libext\" \"$destdir/$func_stripname_result.$libext\"~test -z \"$tstripme\" || test -z \"$striplib\" || $striplib \"$destdir/$func_stripname_result.$libext\"'\n      postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname \"\" \".so\" \"$n\"~test \"$func_stripname_result\" = \"$n\" || func_append rmfiles \" $odir/$func_stripname_result.$libext\"'\n      # We do not specify a path in Import Files, so LIBPATH fires.\n      shlibpath_overrides_runpath=yes\n      ;;\n    *,no) # both, prefer aix\n      dynamic_linker=\"AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)\"\n      library_names_spec='$libname$release.a $libname.a'\n      soname_spec='$libname$release$shared_ext$major'\n      # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling\n      postinstall_cmds='test -z \"$dlname\" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z \"$tstripme\" || test -z \"$striplib\" || $striplib $destdir/$dlname~test -n \"$linkname\" || linkname=$realname~func_stripname \"\" \".a\" \"$linkname\"~(cd \"$destdir\" && $LN_S -f $dlname $func_stripname_result.so)'\n      postuninstall_cmds='test -z \"$dlname\" || func_append rmfiles \" $odir/$dlname\"~for n in $old_library $library_names; do :; done~func_stripname \"\" \".a\" \"$n\"~func_append rmfiles \" $odir/$func_stripname_result.so\"'\n      ;;\n    esac\n    shlibpath_var=LIBPATH\n  fi\n  ;;\n\namigaos*)\n  case $host_cpu in\n  powerpc)\n    # Since July 2007 AmigaOS4 officially supports .so libraries.\n    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    ;;\n  m68k)\n    library_names_spec='$libname.ixlibrary $libname.a'\n    # Create ${libname}_ixlibrary.a entries in /sys/libs.\n    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all \"$lib\" | $SED '\\''s%^.*/\\([^/]*\\)\\.ixlibrary$%\\1%'\\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show \"cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a\"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'\n    ;;\n  esac\n  ;;\n\nbeos*)\n  library_names_spec='$libname$shared_ext'\n  dynamic_linker=\"$host_os ld.so\"\n  shlibpath_var=LIBRARY_PATH\n  ;;\n\nbsdi[45]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=\"/shlib /usr/lib /usr/local/lib\"\n  # the default ld.so.conf also contains /usr/contrib/lib and\n  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow\n  # libtool to hard-code these into programs\n  ;;\n\ncygwin* | mingw* | pw32* | cegcc*)\n  version_type=windows\n  shrext_cmds=.dll\n  need_version=no\n  need_lib_prefix=no\n\n  case $GCC,$cc_basename in\n  yes,*)\n    # gcc\n    library_names_spec='$libname.dll.a'\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\$file`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname~\n      chmod a+x \\$dldir/$dlname~\n      if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n        eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n      fi'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n\n    case $host_os in\n    cygwin*)\n      # Cygwin DLLs use 'cyg' prefix rather than 'lib'\n      soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n\n      sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/lib/w32api\"\n      ;;\n    mingw* | cegcc*)\n      # MinGW DLLs use traditional 'lib' prefix\n      soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n      ;;\n    pw32*)\n      # pw32 DLLs use 'pw' prefix rather than 'lib'\n      library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n      ;;\n    esac\n    dynamic_linker='Win32 ld.exe'\n    ;;\n\n  *,cl*)\n    # Native MSVC\n    libname_spec='$name'\n    soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n    library_names_spec='$libname.dll.lib'\n\n    case $build_os in\n    mingw*)\n      sys_lib_search_path_spec=\n      lt_save_ifs=$IFS\n      IFS=';'\n      for lt_path in $LIB\n      do\n        IFS=$lt_save_ifs\n        # Let DOS variable expansion print the short 8.3 style file name.\n        lt_path=`cd \"$lt_path\" 2>/dev/null && cmd //C \"for %i in (\".\") do @echo %~si\"`\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec $lt_path\"\n      done\n      IFS=$lt_save_ifs\n      # Convert to MSYS style.\n      sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | sed -e 's|\\\\\\\\|/|g' -e 's| \\\\([a-zA-Z]\\\\):| /\\\\1|g' -e 's|^ ||'`\n      ;;\n    cygwin*)\n      # Convert to unix form, then to dos form, then back to unix form\n      # but this time dos style (no spaces!) so that the unix form looks\n      # like /cygdrive/c/PROGRA~1:/cygdr...\n      sys_lib_search_path_spec=`cygpath --path --unix \"$LIB\"`\n      sys_lib_search_path_spec=`cygpath --path --dos \"$sys_lib_search_path_spec\" 2>/dev/null`\n      sys_lib_search_path_spec=`cygpath --path --unix \"$sys_lib_search_path_spec\" | $SED -e \"s/$PATH_SEPARATOR/ /g\"`\n      ;;\n    *)\n      sys_lib_search_path_spec=$LIB\n      if $ECHO \"$sys_lib_search_path_spec\" | $GREP ';[c-zC-Z]:/' >/dev/null; then\n        # It is most probably a Windows format PATH.\n        sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | $SED -e 's/;/ /g'`\n      else\n        sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | $SED -e \"s/$PATH_SEPARATOR/ /g\"`\n      fi\n      # FIXME: find the short name or the path components, as spaces are\n      # common. (e.g. \"Program Files\" -> \"PROGRA~1\")\n      ;;\n    esac\n\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\$file`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n    dynamic_linker='Win32 link.exe'\n    ;;\n\n  *)\n    # Assume MSVC wrapper\n    library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib'\n    dynamic_linker='Win32 ld.exe'\n    ;;\n  esac\n  # FIXME: first we should search . and the directory the executable is in\n  shlibpath_var=PATH\n  ;;\n\ndarwin* | rhapsody*)\n  dynamic_linker=\"$host_os dyld\"\n  version_type=darwin\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$major$shared_ext $libname$shared_ext'\n  soname_spec='$libname$release$major$shared_ext'\n  shlibpath_overrides_runpath=yes\n  shlibpath_var=DYLD_LIBRARY_PATH\n  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'\n\n  sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/local/lib\"\n  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'\n  ;;\n\ndgux*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\nfreebsd* | dragonfly*)\n  # DragonFly does not have aout.  When/if they implement a new\n  # versioning mechanism, adjust this.\n  if test -x /usr/bin/objformat; then\n    objformat=`/usr/bin/objformat`\n  else\n    case $host_os in\n    freebsd[23].*) objformat=aout ;;\n    *) objformat=elf ;;\n    esac\n  fi\n  version_type=freebsd-$objformat\n  case $version_type in\n    freebsd-elf*)\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n      soname_spec='$libname$release$shared_ext$major'\n      need_version=no\n      need_lib_prefix=no\n      ;;\n    freebsd-*)\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n      need_version=yes\n      ;;\n  esac\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_os in\n  freebsd2.*)\n    shlibpath_overrides_runpath=yes\n    ;;\n  freebsd3.[01]* | freebsdelf3.[01]*)\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  freebsd3.[2-9]* | freebsdelf3.[2-9]* | \\\n  freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1)\n    shlibpath_overrides_runpath=no\n    hardcode_into_libs=yes\n    ;;\n  *) # from 4.6 on, and DragonFly\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  esac\n  ;;\n\nhaiku*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  dynamic_linker=\"$host_os runtime_loader\"\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'\n  hardcode_into_libs=yes\n  ;;\n\nhpux9* | hpux10* | hpux11*)\n  # Give a soname corresponding to the major version so that dld.sl refuses to\n  # link against other versions.\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  case $host_cpu in\n  ia64*)\n    shrext_cmds='.so'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.so\"\n    shlibpath_var=LD_LIBRARY_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    if test 32 = \"$HPUX_IA64_MODE\"; then\n      sys_lib_search_path_spec=\"/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib\"\n      sys_lib_dlsearch_path_spec=/usr/lib/hpux32\n    else\n      sys_lib_search_path_spec=\"/usr/lib/hpux64 /usr/local/lib/hpux64\"\n      sys_lib_dlsearch_path_spec=/usr/lib/hpux64\n    fi\n    ;;\n  hppa*64*)\n    shrext_cmds='.sl'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    sys_lib_search_path_spec=\"/usr/lib/pa20_64 /usr/ccs/lib/pa20_64\"\n    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n    ;;\n  *)\n    shrext_cmds='.sl'\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=SHLIB_PATH\n    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    ;;\n  esac\n  # HP-UX runs *really* slowly unless shared libraries are mode 555, ...\n  postinstall_cmds='chmod 555 $lib'\n  # or fails outright, so override atomically:\n  install_override_mode=555\n  ;;\n\ninterix[3-9]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $host_os in\n    nonstopux*) version_type=nonstopux ;;\n    *)\n\tif test yes = \"$lt_cv_prog_gnu_ld\"; then\n\t\tversion_type=linux # correct to gnu/linux during the next big refactor\n\telse\n\t\tversion_type=irix\n\tfi ;;\n  esac\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='$libname$release$shared_ext$major'\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext'\n  case $host_os in\n  irix5* | nonstopux*)\n    libsuff= shlibsuff=\n    ;;\n  *)\n    case $LD in # libtool.m4 will add one of these switches to LD\n    *-32|*\"-32 \"|*-melf32bsmip|*\"-melf32bsmip \")\n      libsuff= shlibsuff= libmagic=32-bit;;\n    *-n32|*\"-n32 \"|*-melf32bmipn32|*\"-melf32bmipn32 \")\n      libsuff=32 shlibsuff=N32 libmagic=N32;;\n    *-64|*\"-64 \"|*-melf64bmip|*\"-melf64bmip \")\n      libsuff=64 shlibsuff=64 libmagic=64-bit;;\n    *) libsuff= shlibsuff= libmagic=never-match;;\n    esac\n    ;;\n  esac\n  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_search_path_spec=\"/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff\"\n  sys_lib_dlsearch_path_spec=\"/usr/lib$libsuff /lib$libsuff\"\n  hardcode_into_libs=yes\n  ;;\n\n# No shared lib support for Linux oldld, aout, or coff.\nlinux*oldld* | linux*aout* | linux*coff*)\n  dynamic_linker=no\n  ;;\n\nlinux*android*)\n  version_type=none # Android doesn't support versioned libraries.\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext'\n  soname_spec='$libname$release$shared_ext'\n  finish_cmds=\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  dynamic_linker='Android linker'\n  # Don't embed -rpath directories since the linker doesn't support them.\n  hardcode_libdir_flag_spec='-L$libdir'\n  ;;\n\n# This must be glibc/ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -n $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n\n  # Some binutils ld are patched to set DT_RUNPATH\n  if ${lt_cv_shlibpath_overrides_runpath+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_shlibpath_overrides_runpath=no\n    save_LDFLAGS=$LDFLAGS\n    save_libdir=$libdir\n    eval \"libdir=/foo; wl=\\\"$lt_prog_compiler_wl\\\"; \\\n\t LDFLAGS=\\\"\\$LDFLAGS $hardcode_libdir_flag_spec\\\"\"\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  if  ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep \"RUNPATH.*$libdir\" >/dev/null; then :\n  lt_cv_shlibpath_overrides_runpath=yes\nfi\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n    LDFLAGS=$save_LDFLAGS\n    libdir=$save_libdir\n\nfi\n\n  shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  # Ideally, we could use ldconfig to report *all* directores which are\n  # searched for libraries, however this is still not possible.  Aside from not\n  # being certain /sbin/ldconfig is available, command\n  # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64,\n  # even though it is searched at run-time.  Try to do the best guess by\n  # appending ld.so.conf contents (and includes) to the search path.\n  if test -f /etc/ld.so.conf; then\n    lt_ld_extra=`awk '/^include / { system(sprintf(\"cd /etc; cat %s 2>/dev/null\", \\$2)); skip = 1; } { if (!skip) print \\$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[\t ]*hwcap[\t ]/d;s/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/\"//g;/^$/d' | tr '\\n' ' '`\n    sys_lib_dlsearch_path_spec=\"/lib /usr/lib $lt_ld_extra\"\n  fi\n\n  # We used to test for /lib/ld.so.1 and disable shared libraries on\n  # powerpc, because MkLinux only supported shared libraries with the\n  # GNU dynamic linker.  Since this was broken with cross compilers,\n  # most powerpc-linux boxes support dynamic linking these days and\n  # people can always --disable-shared, the test was removed, and we\n  # assume the GNU/Linux dynamic linker is in use.\n  dynamic_linker='GNU/Linux ld.so'\n  ;;\n\nnetbsd*)\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n    finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n    dynamic_linker='NetBSD (a.out) ld.so'\n  else\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    dynamic_linker='NetBSD ld.elf_so'\n  fi\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  ;;\n\nnewsos6)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\n*nto* | *qnx*)\n  version_type=qnx\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  dynamic_linker='ldqnx.so'\n  ;;\n\nopenbsd* | bitrig*)\n  version_type=sunos\n  sys_lib_dlsearch_path_spec=/usr/lib\n  need_lib_prefix=no\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n    need_version=no\n  else\n    need_version=yes\n  fi\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\nos2*)\n  libname_spec='$name'\n  version_type=windows\n  shrext_cmds=.dll\n  need_version=no\n  need_lib_prefix=no\n  # OS/2 can only load a DLL with a base name of 8 characters or less.\n  soname_spec='`test -n \"$os2dllname\" && libname=\"$os2dllname\";\n    v=$($ECHO $release$versuffix | tr -d .-);\n    n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _);\n    $ECHO $n$v`$shared_ext'\n  library_names_spec='${libname}_dll.$libext'\n  dynamic_linker='OS/2 ld.exe'\n  shlibpath_var=BEGINLIBPATH\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n  postinstall_cmds='base_file=`basename \\$file`~\n    dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; $ECHO \\$dlname'\\''`~\n    dldir=$destdir/`dirname \\$dlpath`~\n    test -d \\$dldir || mkdir -p \\$dldir~\n    $install_prog $dir/$dlname \\$dldir/$dlname~\n    chmod a+x \\$dldir/$dlname~\n    if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n      eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n    fi'\n  postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; $ECHO \\$dlname'\\''`~\n    dlpath=$dir/\\$dldll~\n    $RM \\$dlpath'\n  ;;\n\nosf3* | osf4* | osf5*)\n  version_type=osf\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='$libname$release$shared_ext$major'\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib\"\n  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n  ;;\n\nrdos*)\n  dynamic_linker=no\n  ;;\n\nsolaris*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  # ldd complains unless libraries are executable\n  postinstall_cmds='chmod +x $lib'\n  ;;\n\nsunos4*)\n  version_type=sunos\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/usr/etc\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  if test yes = \"$with_gnu_ld\"; then\n    need_lib_prefix=no\n  fi\n  need_version=yes\n  ;;\n\nsysv4 | sysv4.3*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_vendor in\n    sni)\n      shlibpath_overrides_runpath=no\n      need_lib_prefix=no\n      runpath_var=LD_RUN_PATH\n      ;;\n    siemens)\n      need_lib_prefix=no\n      ;;\n    motorola)\n      need_lib_prefix=no\n      need_version=no\n      shlibpath_overrides_runpath=no\n      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'\n      ;;\n  esac\n  ;;\n\nsysv4*MP*)\n  if test -d /usr/nec; then\n    version_type=linux # correct to gnu/linux during the next big refactor\n    library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext'\n    soname_spec='$libname$shared_ext.$major'\n    shlibpath_var=LD_LIBRARY_PATH\n  fi\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  version_type=sco\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  if test yes = \"$with_gnu_ld\"; then\n    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'\n  else\n    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'\n    case $host_os in\n      sco3.2v5*)\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec /lib\"\n\t;;\n    esac\n  fi\n  sys_lib_dlsearch_path_spec='/usr/lib'\n  ;;\n\ntpf*)\n  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nuts4*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\n*)\n  dynamic_linker=no\n  ;;\nesac\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $dynamic_linker\" >&5\n$as_echo \"$dynamic_linker\" >&6; }\ntest no = \"$dynamic_linker\" && can_build_shared=no\n\nvariables_saved_for_relink=\"PATH $shlibpath_var $runpath_var\"\nif test yes = \"$GCC\"; then\n  variables_saved_for_relink=\"$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH\"\nfi\n\nif test set = \"${lt_cv_sys_lib_search_path_spec+set}\"; then\n  sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec\nfi\n\nif test set = \"${lt_cv_sys_lib_dlsearch_path_spec+set}\"; then\n  sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec\nfi\n\n# remember unaugmented sys_lib_dlsearch_path content for libtool script decls...\nconfigure_time_dlsearch_path=$sys_lib_dlsearch_path_spec\n\n# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code\nfunc_munge_path_list sys_lib_dlsearch_path_spec \"$LT_SYS_LIBRARY_PATH\"\n\n# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool\nconfigure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs\" >&5\n$as_echo_n \"checking how to hardcode library paths into programs... \" >&6; }\nhardcode_action=\nif test -n \"$hardcode_libdir_flag_spec\" ||\n   test -n \"$runpath_var\" ||\n   test yes = \"$hardcode_automatic\"; then\n\n  # We can hardcode non-existent directories.\n  if test no != \"$hardcode_direct\" &&\n     # If the only mechanism to avoid hardcoding is shlibpath_var, we\n     # have to relink, otherwise we might link with an installed library\n     # when we should be linking with a yet-to-be-installed one\n     ## test no != \"$_LT_TAGVAR(hardcode_shlibpath_var, )\" &&\n     test no != \"$hardcode_minus_L\"; then\n    # Linking always hardcodes the temporary library directory.\n    hardcode_action=relink\n  else\n    # We can link without hardcoding, and we can hardcode nonexisting dirs.\n    hardcode_action=immediate\n  fi\nelse\n  # We cannot hardcode anything, or else we can only hardcode existing\n  # directories.\n  hardcode_action=unsupported\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $hardcode_action\" >&5\n$as_echo \"$hardcode_action\" >&6; }\n\nif test relink = \"$hardcode_action\" ||\n   test yes = \"$inherit_rpath\"; then\n  # Fast installation is not supported\n  enable_fast_install=no\nelif test yes = \"$shlibpath_overrides_runpath\" ||\n     test no = \"$enable_shared\"; then\n  # Fast installation is not necessary\n  enable_fast_install=needless\nfi\n\n\n\n\n\n\n  if test yes != \"$enable_dlopen\"; then\n  enable_dlopen=unknown\n  enable_dlopen_self=unknown\n  enable_dlopen_self_static=unknown\nelse\n  lt_cv_dlopen=no\n  lt_cv_dlopen_libs=\n\n  case $host_os in\n  beos*)\n    lt_cv_dlopen=load_add_on\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n    ;;\n\n  mingw* | pw32* | cegcc*)\n    lt_cv_dlopen=LoadLibrary\n    lt_cv_dlopen_libs=\n    ;;\n\n  cygwin*)\n    lt_cv_dlopen=dlopen\n    lt_cv_dlopen_libs=\n    ;;\n\n  darwin*)\n    # if libdl is installed we need to link against it\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl\" >&5\n$as_echo_n \"checking for dlopen in -ldl... \" >&6; }\nif ${ac_cv_lib_dl_dlopen+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldl  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dl_dlopen=yes\nelse\n  ac_cv_lib_dl_dlopen=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen\" >&5\n$as_echo \"$ac_cv_lib_dl_dlopen\" >&6; }\nif test \"x$ac_cv_lib_dl_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl\nelse\n\n    lt_cv_dlopen=dyld\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n\nfi\n\n    ;;\n\n  tpf*)\n    # Don't try to run any link tests for TPF.  We know it's impossible\n    # because TPF is a cross-compiler, and we know how we open DSOs.\n    lt_cv_dlopen=dlopen\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=no\n    ;;\n\n  *)\n    ac_fn_c_check_func \"$LINENO\" \"shl_load\" \"ac_cv_func_shl_load\"\nif test \"x$ac_cv_func_shl_load\" = xyes; then :\n  lt_cv_dlopen=shl_load\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld\" >&5\n$as_echo_n \"checking for shl_load in -ldld... \" >&6; }\nif ${ac_cv_lib_dld_shl_load+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldld  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar shl_load ();\nint\nmain ()\n{\nreturn shl_load ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dld_shl_load=yes\nelse\n  ac_cv_lib_dld_shl_load=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load\" >&5\n$as_echo \"$ac_cv_lib_dld_shl_load\" >&6; }\nif test \"x$ac_cv_lib_dld_shl_load\" = xyes; then :\n  lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld\nelse\n  ac_fn_c_check_func \"$LINENO\" \"dlopen\" \"ac_cv_func_dlopen\"\nif test \"x$ac_cv_func_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl\" >&5\n$as_echo_n \"checking for dlopen in -ldl... \" >&6; }\nif ${ac_cv_lib_dl_dlopen+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldl  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dl_dlopen=yes\nelse\n  ac_cv_lib_dl_dlopen=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen\" >&5\n$as_echo \"$ac_cv_lib_dl_dlopen\" >&6; }\nif test \"x$ac_cv_lib_dl_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld\" >&5\n$as_echo_n \"checking for dlopen in -lsvld... \" >&6; }\nif ${ac_cv_lib_svld_dlopen+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-lsvld  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_svld_dlopen=yes\nelse\n  ac_cv_lib_svld_dlopen=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen\" >&5\n$as_echo \"$ac_cv_lib_svld_dlopen\" >&6; }\nif test \"x$ac_cv_lib_svld_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld\" >&5\n$as_echo_n \"checking for dld_link in -ldld... \" >&6; }\nif ${ac_cv_lib_dld_dld_link+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldld  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dld_link ();\nint\nmain ()\n{\nreturn dld_link ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dld_dld_link=yes\nelse\n  ac_cv_lib_dld_dld_link=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link\" >&5\n$as_echo \"$ac_cv_lib_dld_dld_link\" >&6; }\nif test \"x$ac_cv_lib_dld_dld_link\" = xyes; then :\n  lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n    ;;\n  esac\n\n  if test no = \"$lt_cv_dlopen\"; then\n    enable_dlopen=no\n  else\n    enable_dlopen=yes\n  fi\n\n  case $lt_cv_dlopen in\n  dlopen)\n    save_CPPFLAGS=$CPPFLAGS\n    test yes = \"$ac_cv_header_dlfcn_h\" && CPPFLAGS=\"$CPPFLAGS -DHAVE_DLFCN_H\"\n\n    save_LDFLAGS=$LDFLAGS\n    wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $export_dynamic_flag_spec\\\"\n\n    save_LIBS=$LIBS\n    LIBS=\"$lt_cv_dlopen_libs $LIBS\"\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself\" >&5\n$as_echo_n \"checking whether a program can dlopen itself... \" >&6; }\nif ${lt_cv_dlopen_self+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  \t  if test yes = \"$cross_compiling\"; then :\n  lt_cv_dlopen_self=cross\nelse\n  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2\n  lt_status=$lt_dlunknown\n  cat > conftest.$ac_ext <<_LT_EOF\n#line $LINENO \"configure\"\n#include \"confdefs.h\"\n\n#if HAVE_DLFCN_H\n#include <dlfcn.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef RTLD_GLOBAL\n#  define LT_DLGLOBAL\t\tRTLD_GLOBAL\n#else\n#  ifdef DL_GLOBAL\n#    define LT_DLGLOBAL\t\tDL_GLOBAL\n#  else\n#    define LT_DLGLOBAL\t\t0\n#  endif\n#endif\n\n/* We may have to define LT_DLLAZY_OR_NOW in the command line if we\n   find out it does not work in some platform. */\n#ifndef LT_DLLAZY_OR_NOW\n#  ifdef RTLD_LAZY\n#    define LT_DLLAZY_OR_NOW\t\tRTLD_LAZY\n#  else\n#    ifdef DL_LAZY\n#      define LT_DLLAZY_OR_NOW\t\tDL_LAZY\n#    else\n#      ifdef RTLD_NOW\n#        define LT_DLLAZY_OR_NOW\tRTLD_NOW\n#      else\n#        ifdef DL_NOW\n#          define LT_DLLAZY_OR_NOW\tDL_NOW\n#        else\n#          define LT_DLLAZY_OR_NOW\t0\n#        endif\n#      endif\n#    endif\n#  endif\n#endif\n\n/* When -fvisibility=hidden is used, assume the code has been annotated\n   correspondingly for the symbols needed.  */\n#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))\nint fnord () __attribute__((visibility(\"default\")));\n#endif\n\nint fnord () { return 42; }\nint main ()\n{\n  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);\n  int status = $lt_dlunknown;\n\n  if (self)\n    {\n      if (dlsym (self,\"fnord\"))       status = $lt_dlno_uscore;\n      else\n        {\n\t  if (dlsym( self,\"_fnord\"))  status = $lt_dlneed_uscore;\n          else puts (dlerror ());\n\t}\n      /* dlclose (self); */\n    }\n  else\n    puts (dlerror ());\n\n  return status;\n}\n_LT_EOF\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_link\\\"\"; } >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s \"conftest$ac_exeext\" 2>/dev/null; then\n    (./conftest; exit; ) >&5 2>/dev/null\n    lt_status=$?\n    case x$lt_status in\n      x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;\n      x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;\n      x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;;\n    esac\n  else :\n    # compilation failed\n    lt_cv_dlopen_self=no\n  fi\nfi\nrm -fr conftest*\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self\" >&5\n$as_echo \"$lt_cv_dlopen_self\" >&6; }\n\n    if test yes = \"$lt_cv_dlopen_self\"; then\n      wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $lt_prog_compiler_static\\\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself\" >&5\n$as_echo_n \"checking whether a statically linked program can dlopen itself... \" >&6; }\nif ${lt_cv_dlopen_self_static+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  \t  if test yes = \"$cross_compiling\"; then :\n  lt_cv_dlopen_self_static=cross\nelse\n  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2\n  lt_status=$lt_dlunknown\n  cat > conftest.$ac_ext <<_LT_EOF\n#line $LINENO \"configure\"\n#include \"confdefs.h\"\n\n#if HAVE_DLFCN_H\n#include <dlfcn.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef RTLD_GLOBAL\n#  define LT_DLGLOBAL\t\tRTLD_GLOBAL\n#else\n#  ifdef DL_GLOBAL\n#    define LT_DLGLOBAL\t\tDL_GLOBAL\n#  else\n#    define LT_DLGLOBAL\t\t0\n#  endif\n#endif\n\n/* We may have to define LT_DLLAZY_OR_NOW in the command line if we\n   find out it does not work in some platform. */\n#ifndef LT_DLLAZY_OR_NOW\n#  ifdef RTLD_LAZY\n#    define LT_DLLAZY_OR_NOW\t\tRTLD_LAZY\n#  else\n#    ifdef DL_LAZY\n#      define LT_DLLAZY_OR_NOW\t\tDL_LAZY\n#    else\n#      ifdef RTLD_NOW\n#        define LT_DLLAZY_OR_NOW\tRTLD_NOW\n#      else\n#        ifdef DL_NOW\n#          define LT_DLLAZY_OR_NOW\tDL_NOW\n#        else\n#          define LT_DLLAZY_OR_NOW\t0\n#        endif\n#      endif\n#    endif\n#  endif\n#endif\n\n/* When -fvisibility=hidden is used, assume the code has been annotated\n   correspondingly for the symbols needed.  */\n#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))\nint fnord () __attribute__((visibility(\"default\")));\n#endif\n\nint fnord () { return 42; }\nint main ()\n{\n  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);\n  int status = $lt_dlunknown;\n\n  if (self)\n    {\n      if (dlsym (self,\"fnord\"))       status = $lt_dlno_uscore;\n      else\n        {\n\t  if (dlsym( self,\"_fnord\"))  status = $lt_dlneed_uscore;\n          else puts (dlerror ());\n\t}\n      /* dlclose (self); */\n    }\n  else\n    puts (dlerror ());\n\n  return status;\n}\n_LT_EOF\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_link\\\"\"; } >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s \"conftest$ac_exeext\" 2>/dev/null; then\n    (./conftest; exit; ) >&5 2>/dev/null\n    lt_status=$?\n    case x$lt_status in\n      x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;\n      x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;\n      x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;;\n    esac\n  else :\n    # compilation failed\n    lt_cv_dlopen_self_static=no\n  fi\nfi\nrm -fr conftest*\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static\" >&5\n$as_echo \"$lt_cv_dlopen_self_static\" >&6; }\n    fi\n\n    CPPFLAGS=$save_CPPFLAGS\n    LDFLAGS=$save_LDFLAGS\n    LIBS=$save_LIBS\n    ;;\n  esac\n\n  case $lt_cv_dlopen_self in\n  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;\n  *) enable_dlopen_self=unknown ;;\n  esac\n\n  case $lt_cv_dlopen_self_static in\n  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;\n  *) enable_dlopen_self_static=unknown ;;\n  esac\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nstriplib=\nold_striplib=\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible\" >&5\n$as_echo_n \"checking whether stripping libraries is possible... \" >&6; }\nif test -n \"$STRIP\" && $STRIP -V 2>&1 | $GREP \"GNU strip\" >/dev/null; then\n  test -z \"$old_striplib\" && old_striplib=\"$STRIP --strip-debug\"\n  test -z \"$striplib\" && striplib=\"$STRIP --strip-unneeded\"\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\nelse\n# FIXME - insert some real tests, host_os isn't really good enough\n  case $host_os in\n  darwin*)\n    if test -n \"$STRIP\"; then\n      striplib=\"$STRIP -x\"\n      old_striplib=\"$STRIP -S\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\n    else\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n    fi\n    ;;\n  *)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n    ;;\n  esac\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n  # Report what library types will actually be built\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries\" >&5\n$as_echo_n \"checking if libtool supports shared libraries... \" >&6; }\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $can_build_shared\" >&5\n$as_echo \"$can_build_shared\" >&6; }\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries\" >&5\n$as_echo_n \"checking whether to build shared libraries... \" >&6; }\n  test no = \"$can_build_shared\" && enable_shared=no\n\n  # On AIX, shared libraries and static libraries use the same namespace, and\n  # are all built from PIC.\n  case $host_os in\n  aix3*)\n    test yes = \"$enable_shared\" && enable_static=no\n    if test -n \"$RANLIB\"; then\n      archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n      postinstall_cmds='$RANLIB $lib'\n    fi\n    ;;\n\n  aix[4-9]*)\n    if test ia64 != \"$host_cpu\"; then\n      case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in\n      yes,aix,yes) ;;\t\t\t# shared object as lib.so file only\n      yes,svr4,*) ;;\t\t\t# shared object as lib.so archive member only\n      yes,*) enable_static=no ;;\t# shared object in lib.a archive as well\n      esac\n    fi\n    ;;\n  esac\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $enable_shared\" >&5\n$as_echo \"$enable_shared\" >&6; }\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether to build static libraries\" >&5\n$as_echo_n \"checking whether to build static libraries... \" >&6; }\n  # Make sure either enable_shared or enable_static is yes.\n  test yes = \"$enable_shared\" || enable_static=yes\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $enable_static\" >&5\n$as_echo \"$enable_static\" >&6; }\n\n\n\n\nfi\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nCC=$lt_save_CC\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n        ac_config_commands=\"$ac_config_commands libtool\"\n\n\n\n\n# Only expand once:\n\n\n\n\n  CFLAG_VISIBILITY=\n  HAVE_VISIBILITY=0\n  if test -n \"$GCC\"; then\n                { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the -Werror option is usable\" >&5\n$as_echo_n \"checking whether the -Werror option is usable... \" >&6; }\n    if ${gl_cv_cc_vis_werror+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n      gl_save_CFLAGS=\"$CFLAGS\"\n      CFLAGS=\"$CFLAGS -Werror\"\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_cc_vis_werror=yes\nelse\n  gl_cv_cc_vis_werror=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n      CFLAGS=\"$gl_save_CFLAGS\"\nfi\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_cc_vis_werror\" >&5\n$as_echo \"$gl_cv_cc_vis_werror\" >&6; }\n        { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for simple visibility declarations\" >&5\n$as_echo_n \"checking for simple visibility declarations... \" >&6; }\n    if ${gl_cv_cc_visibility+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n      gl_save_CFLAGS=\"$CFLAGS\"\n      CFLAGS=\"$CFLAGS -fvisibility=hidden\"\n                                    if test $gl_cv_cc_vis_werror = yes; then\n        CFLAGS=\"$CFLAGS -Werror\"\n      fi\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\nextern __attribute__((__visibility__(\"hidden\"))) int hiddenvar;\n             extern __attribute__((__visibility__(\"default\"))) int exportedvar;\n             extern __attribute__((__visibility__(\"hidden\"))) int hiddenfunc (void);\n             extern __attribute__((__visibility__(\"default\"))) int exportedfunc (void);\n             void dummyfunc (void) {}\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_cc_visibility=yes\nelse\n  gl_cv_cc_visibility=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n      CFLAGS=\"$gl_save_CFLAGS\"\nfi\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_cc_visibility\" >&5\n$as_echo \"$gl_cv_cc_visibility\" >&6; }\n    if test $gl_cv_cc_visibility = yes; then\n      CFLAG_VISIBILITY=\"-fvisibility=hidden\"\n      HAVE_VISIBILITY=1\n    fi\n  fi\n\n\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_VISIBILITY $HAVE_VISIBILITY\n_ACEOF\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET\" >&5\n$as_echo_n \"checking for nl_langinfo and CODESET... \" >&6; }\nif ${am_cv_langinfo_codeset+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <langinfo.h>\nint\nmain ()\n{\nchar* cs = nl_langinfo(CODESET); return !cs;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  am_cv_langinfo_codeset=yes\nelse\n  am_cv_langinfo_codeset=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $am_cv_langinfo_codeset\" >&5\n$as_echo \"$am_cv_langinfo_codeset\" >&6; }\n  if test $am_cv_langinfo_codeset = yes; then\n\n$as_echo \"#define HAVE_LANGINFO_CODESET 1\" >>confdefs.h\n\n  fi\n\n\n\n\n  for ac_header in $ac_header_list\ndo :\n  as_ac_Header=`$as_echo \"ac_cv_header_$ac_header\" | $as_tr_sh`\nac_fn_c_check_header_compile \"$LINENO\" \"$ac_header\" \"$as_ac_Header\" \"$ac_includes_default\n\"\nif eval test \\\"x\\$\"$as_ac_Header\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_$ac_header\" | $as_tr_cpp` 1\n_ACEOF\n\nfi\n\ndone\n\n\n\n\n\n\n  for ac_func in $ac_func_list\ndo :\n  as_ac_var=`$as_echo \"ac_cv_func_$ac_func\" | $as_tr_sh`\nac_fn_c_check_func \"$LINENO\" \"$ac_func\" \"$as_ac_var\"\nif eval test \\\"x\\$\"$as_ac_var\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_$ac_func\" | $as_tr_cpp` 1\n_ACEOF\n\nfi\ndone\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for working fcntl.h\" >&5\n$as_echo_n \"checking for working fcntl.h... \" >&6; }\nif ${gl_cv_header_working_fcntl_h+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test \"$cross_compiling\" = yes; then :\n  gl_cv_header_working_fcntl_h=cross-compiling\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <sys/types.h>\n           #include <sys/stat.h>\n           #if HAVE_UNISTD_H\n           # include <unistd.h>\n           #else /* on Windows with MSVC */\n           # include <io.h>\n           # include <stdlib.h>\n           # defined sleep(n) _sleep ((n) * 1000)\n           #endif\n           #include <fcntl.h>\n           #ifndef O_NOATIME\n            #define O_NOATIME 0\n           #endif\n           #ifndef O_NOFOLLOW\n            #define O_NOFOLLOW 0\n           #endif\n           static int const constants[] =\n            {\n              O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND,\n              O_NONBLOCK, O_SYNC, O_ACCMODE, O_RDONLY, O_RDWR, O_WRONLY\n            };\n\nint\nmain ()\n{\n\n            int result = !constants;\n            #if HAVE_SYMLINK\n            {\n              static char const sym[] = \"conftest.sym\";\n              if (symlink (\"/dev/null\", sym) != 0)\n                result |= 2;\n              else\n                {\n                  int fd = open (sym, O_WRONLY | O_NOFOLLOW | O_CREAT, 0);\n                  if (fd >= 0)\n                    {\n                      close (fd);\n                      result |= 4;\n                    }\n                }\n              if (unlink (sym) != 0 || symlink (\".\", sym) != 0)\n                result |= 2;\n              else\n                {\n                  int fd = open (sym, O_RDONLY | O_NOFOLLOW);\n                  if (fd >= 0)\n                    {\n                      close (fd);\n                      result |= 4;\n                    }\n                }\n              unlink (sym);\n            }\n            #endif\n            {\n              static char const file[] = \"confdefs.h\";\n              int fd = open (file, O_RDONLY | O_NOATIME);\n              if (fd < 0)\n                result |= 8;\n              else\n                {\n                  struct stat st0;\n                  if (fstat (fd, &st0) != 0)\n                    result |= 16;\n                  else\n                    {\n                      char c;\n                      sleep (1);\n                      if (read (fd, &c, 1) != 1)\n                        result |= 24;\n                      else\n                        {\n                          if (close (fd) != 0)\n                            result |= 32;\n                          else\n                            {\n                              struct stat st1;\n                              if (stat (file, &st1) != 0)\n                                result |= 40;\n                              else\n                                if (st0.st_atime != st1.st_atime)\n                                  result |= 64;\n                            }\n                        }\n                    }\n                }\n            }\n            return result;\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n  gl_cv_header_working_fcntl_h=yes\nelse\n  case $? in #(\n        4) gl_cv_header_working_fcntl_h='no (bad O_NOFOLLOW)';; #(\n        64) gl_cv_header_working_fcntl_h='no (bad O_NOATIME)';; #(\n        68) gl_cv_header_working_fcntl_h='no (bad O_NOATIME, O_NOFOLLOW)';; #(\n         *) gl_cv_header_working_fcntl_h='no';;\n        esac\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_working_fcntl_h\" >&5\n$as_echo \"$gl_cv_header_working_fcntl_h\" >&6; }\n\n  case $gl_cv_header_working_fcntl_h in #(\n  *O_NOATIME* | no | cross-compiling) ac_val=0;; #(\n  *) ac_val=1;;\n  esac\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_WORKING_O_NOATIME $ac_val\n_ACEOF\n\n\n  case $gl_cv_header_working_fcntl_h in #(\n  *O_NOFOLLOW* | no | cross-compiling) ac_val=0;; #(\n  *) ac_val=1;;\n  esac\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_WORKING_O_NOFOLLOW $ac_val\n_ACEOF\n\n\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C Library >= 2.1 or uClibc\" >&5\n$as_echo_n \"checking whether we are using the GNU C Library >= 2.1 or uClibc... \" >&6; }\nif ${ac_cv_gnu_library_2_1+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#include <features.h>\n#ifdef __GNU_LIBRARY__\n #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2)\n  Lucky GNU user\n #endif\n#endif\n#ifdef __UCLIBC__\n Lucky user\n#endif\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"Lucky\" >/dev/null 2>&1; then :\n  ac_cv_gnu_library_2_1=yes\nelse\n  ac_cv_gnu_library_2_1=no\nfi\nrm -f conftest*\n\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_gnu_library_2_1\" >&5\n$as_echo \"$ac_cv_gnu_library_2_1\" >&6; }\n\n    GLIBC21=\"$ac_cv_gnu_library_2_1\"\n\n\nfor ac_func in setlocale\ndo :\n  ac_fn_c_check_func \"$LINENO\" \"setlocale\" \"ac_cv_func_setlocale\"\nif test \"x$ac_cv_func_setlocale\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_SETLOCALE 1\n_ACEOF\n\nfi\ndone\n\n\nac_config_files=\"$ac_config_files Makefile\"\n\nac_config_files=\"$ac_config_files lib/Makefile\"\n\nac_config_files=\"$ac_config_files include/localcharset.h:include/localcharset.h.build.in\"\n\nac_config_files=\"$ac_config_files include/localcharset.h.inst:include/localcharset.h.in\"\n\ncat >confcache <<\\_ACEOF\n# This file is a shell script that caches the results of configure\n# tests run on this system so they can be shared between configure\n# scripts and configure runs, see configure's option --config-cache.\n# It is not useful on other systems.  If it contains results you don't\n# want to keep, you may remove or edit it.\n#\n# config.status only pays attention to the cache file if you give it\n# the --recheck option to rerun configure.\n#\n# `ac_cv_env_foo' variables (set or unset) will be overridden when\n# loading this file, other *unset* `ac_cv_foo' will be assigned the\n# following values.\n\n_ACEOF\n\n# The following way of writing the cache mishandles newlines in values,\n# but we know of no workaround that is simple, portable, and efficient.\n# So, we kill variables containing newlines.\n# Ultrix sh set writes to stderr and can't be redirected directly,\n# and sets the high bit in the cache file unless we assign to the vars.\n(\n  for ac_var in `(set) 2>&1 | sed -n 's/^\\([a-zA-Z_][a-zA-Z0-9_]*\\)=.*/\\1/p'`; do\n    eval ac_val=\\$$ac_var\n    case $ac_val in #(\n    *${as_nl}*)\n      case $ac_var in #(\n      *_cv_*) { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline\" >&5\n$as_echo \"$as_me: WARNING: cache variable $ac_var contains a newline\" >&2;} ;;\n      esac\n      case $ac_var in #(\n      _ | IFS | as_nl) ;; #(\n      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(\n      *) { eval $ac_var=; unset $ac_var;} ;;\n      esac ;;\n    esac\n  done\n\n  (set) 2>&1 |\n    case $as_nl`(ac_space=' '; set) 2>&1` in #(\n    *${as_nl}ac_space=\\ *)\n      # `set' does not quote correctly, so add quotes: double-quote\n      # substitution turns \\\\\\\\ into \\\\, and sed turns \\\\ into \\.\n      sed -n \\\n\t\"s/'/'\\\\\\\\''/g;\n\t  s/^\\\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\\\)=\\\\(.*\\\\)/\\\\1='\\\\2'/p\"\n      ;; #(\n    *)\n      # `set' quotes correctly as required by POSIX, so do not add quotes.\n      sed -n \"/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p\"\n      ;;\n    esac |\n    sort\n) |\n  sed '\n     /^ac_cv_env_/b end\n     t clear\n     :clear\n     s/^\\([^=]*\\)=\\(.*[{}].*\\)$/test \"${\\1+set}\" = set || &/\n     t end\n     s/^\\([^=]*\\)=\\(.*\\)$/\\1=${\\1=\\2}/\n     :end' >>confcache\nif diff \"$cache_file\" confcache >/dev/null 2>&1; then :; else\n  if test -w \"$cache_file\"; then\n    if test \"x$cache_file\" != \"x/dev/null\"; then\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: updating cache $cache_file\" >&5\n$as_echo \"$as_me: updating cache $cache_file\" >&6;}\n      if test ! -f \"$cache_file\" || test -h \"$cache_file\"; then\n\tcat confcache >\"$cache_file\"\n      else\n        case $cache_file in #(\n        */* | ?:*)\n\t  mv -f confcache \"$cache_file\"$$ &&\n\t  mv -f \"$cache_file\"$$ \"$cache_file\" ;; #(\n        *)\n\t  mv -f confcache \"$cache_file\" ;;\n\tesac\n      fi\n    fi\n  else\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file\" >&5\n$as_echo \"$as_me: not updating unwritable cache $cache_file\" >&6;}\n  fi\nfi\nrm -f confcache\n\ntest \"x$prefix\" = xNONE && prefix=$ac_default_prefix\n# Let make expand exec_prefix.\ntest \"x$exec_prefix\" = xNONE && exec_prefix='${prefix}'\n\nDEFS=-DHAVE_CONFIG_H\n\nac_libobjs=\nac_ltlibobjs=\nU=\nfor ac_i in : $LIBOBJS; do test \"x$ac_i\" = x: && continue\n  # 1. Remove the extension, and $U if already installed.\n  ac_script='s/\\$U\\././;s/\\.o$//;s/\\.obj$//'\n  ac_i=`$as_echo \"$ac_i\" | sed \"$ac_script\"`\n  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR\n  #    will be set to the directory where LIBOBJS objects are built.\n  as_fn_append ac_libobjs \" \\${LIBOBJDIR}$ac_i\\$U.$ac_objext\"\n  as_fn_append ac_ltlibobjs \" \\${LIBOBJDIR}$ac_i\"'$U.lo'\ndone\nLIBOBJS=$ac_libobjs\n\nLTLIBOBJS=$ac_ltlibobjs\n\n\n\n: \"${CONFIG_STATUS=./config.status}\"\nac_write_fail=0\nac_clean_files_save=$ac_clean_files\nac_clean_files=\"$ac_clean_files $CONFIG_STATUS\"\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS\" >&5\n$as_echo \"$as_me: creating $CONFIG_STATUS\" >&6;}\nas_write_fail=0\ncat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1\n#! $SHELL\n# Generated by $as_me.\n# Run this file to recreate the current configuration.\n# Compiler output produced by configure, useful for debugging\n# configure, is in config.log if it exists.\n\ndebug=false\nac_cs_recheck=false\nac_cs_silent=false\n\nSHELL=\\${CONFIG_SHELL-$SHELL}\nexport SHELL\n_ASEOF\ncat >>$CONFIG_STATUS <<\\_ASEOF || as_write_fail=1\n## -------------------- ##\n## M4sh Initialization. ##\n## -------------------- ##\n\n# Be more Bourne compatible\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\n\nas_nl='\n'\nexport as_nl\n# Printing a long string crashes Solaris 7 /usr/bin/printf.\nas_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo\n# Prefer a ksh shell builtin over an external printf program on Solaris,\n# but without wasting forks for bash or zsh.\nif test -z \"$BASH_VERSION$ZSH_VERSION\" \\\n    && (test \"X`print -r -- $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='print -r --'\n  as_echo_n='print -rn --'\nelif (test \"X`printf %s $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='printf %s\\n'\n  as_echo_n='printf %s'\nelse\n  if test \"X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`\" = \"X-n $as_echo\"; then\n    as_echo_body='eval /usr/ucb/echo -n \"$1$as_nl\"'\n    as_echo_n='/usr/ucb/echo -n'\n  else\n    as_echo_body='eval expr \"X$1\" : \"X\\\\(.*\\\\)\"'\n    as_echo_n_body='eval\n      arg=$1;\n      case $arg in #(\n      *\"$as_nl\"*)\n\texpr \"X$arg\" : \"X\\\\(.*\\\\)$as_nl\";\n\targ=`expr \"X$arg\" : \".*$as_nl\\\\(.*\\\\)\"`;;\n      esac;\n      expr \"X$arg\" : \"X\\\\(.*\\\\)\" | tr -d \"$as_nl\"\n    '\n    export as_echo_n_body\n    as_echo_n='sh -c $as_echo_n_body as_echo'\n  fi\n  export as_echo_body\n  as_echo='sh -c $as_echo_body as_echo'\nfi\n\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n# IFS\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent editors from complaining about space-tab.\n# (If _AS_PATH_WALK were called with IFS unset, it would disable word\n# splitting by setting IFS to empty value.)\nIFS=\" \"\"\t$as_nl\"\n\n# Find who we are.  Look in the path if we contain no directory separator.\nas_myself=\ncase $0 in #((\n  *[\\\\/]* ) as_myself=$0 ;;\n  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    test -r \"$as_dir/$0\" && as_myself=$as_dir/$0 && break\n  done\nIFS=$as_save_IFS\n\n     ;;\nesac\n# We did not find ourselves, most probably we were run as `sh COMMAND'\n# in which case we are not to be found in the path.\nif test \"x$as_myself\" = x; then\n  as_myself=$0\nfi\nif test ! -f \"$as_myself\"; then\n  $as_echo \"$as_myself: error: cannot find myself; rerun with an absolute file name\" >&2\n  exit 1\nfi\n\n# Unset variables that we do not need and which cause bugs (e.g. in\n# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the \"|| exit 1\"\n# suppresses any \"Segmentation fault\" message there.  '((' could\n# trigger a bug in pdksh 5.2.14.\nfor as_var in BASH_ENV ENV MAIL MAILPATH\ndo eval test x\\${$as_var+set} = xset \\\n  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :\ndone\nPS1='$ '\nPS2='> '\nPS4='+ '\n\n# NLS nuisances.\nLC_ALL=C\nexport LC_ALL\nLANGUAGE=C\nexport LANGUAGE\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n\n# as_fn_error STATUS ERROR [LINENO LOG_FD]\n# ----------------------------------------\n# Output \"`basename $0`: error: ERROR\" to stderr. If LINENO and LOG_FD are\n# provided, also output the error to LOG_FD, referencing LINENO. Then exit the\n# script with STATUS, using 1 if that was 0.\nas_fn_error ()\n{\n  as_status=$1; test $as_status -eq 0 && as_status=1\n  if test \"$4\"; then\n    as_lineno=${as_lineno-\"$3\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n    $as_echo \"$as_me:${as_lineno-$LINENO}: error: $2\" >&$4\n  fi\n  $as_echo \"$as_me: error: $2\" >&2\n  as_fn_exit $as_status\n} # as_fn_error\n\n\n# as_fn_set_status STATUS\n# -----------------------\n# Set $? to STATUS, without forking.\nas_fn_set_status ()\n{\n  return $1\n} # as_fn_set_status\n\n# as_fn_exit STATUS\n# -----------------\n# Exit the shell with STATUS, even in a \"trap 0\" or \"set -e\" context.\nas_fn_exit ()\n{\n  set +e\n  as_fn_set_status $1\n  exit $1\n} # as_fn_exit\n\n# as_fn_unset VAR\n# ---------------\n# Portably unset VAR.\nas_fn_unset ()\n{\n  { eval $1=; unset $1;}\n}\nas_unset=as_fn_unset\n# as_fn_append VAR VALUE\n# ----------------------\n# Append the text in VALUE to the end of the definition contained in VAR. Take\n# advantage of any shell optimizations that allow amortized linear growth over\n# repeated appends, instead of the typical quadratic growth present in naive\n# implementations.\nif (eval \"as_var=1; as_var+=2; test x\\$as_var = x12\") 2>/dev/null; then :\n  eval 'as_fn_append ()\n  {\n    eval $1+=\\$2\n  }'\nelse\n  as_fn_append ()\n  {\n    eval $1=\\$$1\\$2\n  }\nfi # as_fn_append\n\n# as_fn_arith ARG...\n# ------------------\n# Perform arithmetic evaluation on the ARGs, and store the result in the\n# global $as_val. Take advantage of shells that can avoid forks. The arguments\n# must be portable across $(()) and expr.\nif (eval \"test \\$(( 1 + 1 )) = 2\") 2>/dev/null; then :\n  eval 'as_fn_arith ()\n  {\n    as_val=$(( $* ))\n  }'\nelse\n  as_fn_arith ()\n  {\n    as_val=`expr \"$@\" || test $? -eq 1`\n  }\nfi # as_fn_arith\n\n\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nif (basename -- /) >/dev/null 2>&1 && test \"X`basename -- / 2>&1`\" = \"X/\"; then\n  as_basename=basename\nelse\n  as_basename=false\nfi\n\nif (as_dir=`dirname -- /` && test \"X$as_dir\" = X/) >/dev/null 2>&1; then\n  as_dirname=dirname\nelse\n  as_dirname=false\nfi\n\nas_me=`$as_basename -- \"$0\" ||\n$as_expr X/\"$0\" : '.*/\\([^/][^/]*\\)/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X/\"$0\" |\n    sed '/^.*\\/\\([^/][^/]*\\)\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n\n# Avoid depending upon Character Ranges.\nas_cr_letters='abcdefghijklmnopqrstuvwxyz'\nas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nas_cr_Letters=$as_cr_letters$as_cr_LETTERS\nas_cr_digits='0123456789'\nas_cr_alnum=$as_cr_Letters$as_cr_digits\n\nECHO_C= ECHO_N= ECHO_T=\ncase `echo -n x` in #(((((\n-n*)\n  case `echo 'xy\\c'` in\n  *c*) ECHO_T='\t';;\t# ECHO_T is single tab character.\n  xy)  ECHO_C='\\c';;\n  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null\n       ECHO_T='\t';;\n  esac;;\n*)\n  ECHO_N='-n';;\nesac\n\nrm -f conf$$ conf$$.exe conf$$.file\nif test -d conf$$.dir; then\n  rm -f conf$$.dir/conf$$.file\nelse\n  rm -f conf$$.dir\n  mkdir conf$$.dir 2>/dev/null\nfi\nif (echo >conf$$.file) 2>/dev/null; then\n  if ln -s conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s='ln -s'\n    # ... but there are two gotchas:\n    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.\n    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.\n    # In both cases, we have to default to `cp -pR'.\n    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||\n      as_ln_s='cp -pR'\n  elif ln conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s=ln\n  else\n    as_ln_s='cp -pR'\n  fi\nelse\n  as_ln_s='cp -pR'\nfi\nrm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file\nrmdir conf$$.dir 2>/dev/null\n\n\n# as_fn_mkdir_p\n# -------------\n# Create \"$as_dir\" as a directory, including parents if necessary.\nas_fn_mkdir_p ()\n{\n\n  case $as_dir in #(\n  -*) as_dir=./$as_dir;;\n  esac\n  test -d \"$as_dir\" || eval $as_mkdir_p || {\n    as_dirs=\n    while :; do\n      case $as_dir in #(\n      *\\'*) as_qdir=`$as_echo \"$as_dir\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; #'(\n      *) as_qdir=$as_dir;;\n      esac\n      as_dirs=\"'$as_qdir' $as_dirs\"\n      as_dir=`$as_dirname -- \"$as_dir\" ||\n$as_expr X\"$as_dir\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_dir\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_dir\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      test -d \"$as_dir\" && break\n    done\n    test -z \"$as_dirs\" || eval \"mkdir $as_dirs\"\n  } || test -d \"$as_dir\" || as_fn_error $? \"cannot create directory $as_dir\"\n\n\n} # as_fn_mkdir_p\nif mkdir -p . 2>/dev/null; then\n  as_mkdir_p='mkdir -p \"$as_dir\"'\nelse\n  test -d ./-p && rmdir ./-p\n  as_mkdir_p=false\nfi\n\n\n# as_fn_executable_p FILE\n# -----------------------\n# Test if FILE is an executable regular file.\nas_fn_executable_p ()\n{\n  test -f \"$1\" && test -x \"$1\"\n} # as_fn_executable_p\nas_test_x='test -x'\nas_executable_p=as_fn_executable_p\n\n# Sed expression to map a string onto a valid CPP name.\nas_tr_cpp=\"eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'\"\n\n# Sed expression to map a string onto a valid variable name.\nas_tr_sh=\"eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'\"\n\n\nexec 6>&1\n## ----------------------------------- ##\n## Main body of $CONFIG_STATUS script. ##\n## ----------------------------------- ##\n_ASEOF\ntest $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n# Save the log message, to keep $0 and so on meaningful, and to\n# report actual input values of CONFIG_FILES etc. instead of their\n# values after options handling.\nac_log=\"\nThis file was extended by libcharset $as_me 1.4, which was\ngenerated by GNU Autoconf 2.69.  Invocation command line was\n\n  CONFIG_FILES    = $CONFIG_FILES\n  CONFIG_HEADERS  = $CONFIG_HEADERS\n  CONFIG_LINKS    = $CONFIG_LINKS\n  CONFIG_COMMANDS = $CONFIG_COMMANDS\n  $ $0 $@\n\non `(hostname || uname -n) 2>/dev/null | sed 1q`\n\"\n\n_ACEOF\n\ncase $ac_config_files in *\"\n\"*) set x $ac_config_files; shift; ac_config_files=$*;;\nesac\n\ncase $ac_config_headers in *\"\n\"*) set x $ac_config_headers; shift; ac_config_headers=$*;;\nesac\n\n\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n# Files that config.status was made for.\nconfig_files=\"$ac_config_files\"\nconfig_headers=\"$ac_config_headers\"\nconfig_commands=\"$ac_config_commands\"\n\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nac_cs_usage=\"\\\n\\`$as_me' instantiates files and other configuration actions\nfrom templates according to the current configuration.  Unless the files\nand actions are specified as TAGs, all are instantiated by default.\n\nUsage: $0 [OPTION]... [TAG]...\n\n  -h, --help       print this help, then exit\n  -V, --version    print version number and configuration settings, then exit\n      --config     print configuration, then exit\n  -q, --quiet, --silent\n                   do not print progress messages\n  -d, --debug      don't remove temporary files\n      --recheck    update $as_me by reconfiguring in the same conditions\n      --file=FILE[:TEMPLATE]\n                   instantiate the configuration file FILE\n      --header=FILE[:TEMPLATE]\n                   instantiate the configuration header FILE\n\nConfiguration files:\n$config_files\n\nConfiguration headers:\n$config_headers\n\nConfiguration commands:\n$config_commands\n\nReport bugs to the package provider.\"\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\nac_cs_config=\"`$as_echo \"$ac_configure_args\" | sed 's/^ //; s/[\\\\\"\"\\`\\$]/\\\\\\\\&/g'`\"\nac_cs_version=\"\\\\\nlibcharset config.status 1.4\nconfigured by $0, generated by GNU Autoconf 2.69,\n  with options \\\\\"\\$ac_cs_config\\\\\"\n\nCopyright (C) 2012 Free Software Foundation, Inc.\nThis config.status script is free software; the Free Software Foundation\ngives unlimited permission to copy, distribute and modify it.\"\n\nac_pwd='$ac_pwd'\nsrcdir='$srcdir'\nINSTALL='$INSTALL'\nAWK='$AWK'\ntest -n \"\\$AWK\" || AWK=awk\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n# The default lists apply if the user does not specify any file.\nac_need_defaults=:\nwhile test $# != 0\ndo\n  case $1 in\n  --*=?*)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=`expr \"X$1\" : 'X[^=]*=\\(.*\\)'`\n    ac_shift=:\n    ;;\n  --*=)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=\n    ac_shift=:\n    ;;\n  *)\n    ac_option=$1\n    ac_optarg=$2\n    ac_shift=shift\n    ;;\n  esac\n\n  case $ac_option in\n  # Handling of the options.\n  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)\n    ac_cs_recheck=: ;;\n  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )\n    $as_echo \"$ac_cs_version\"; exit ;;\n  --config | --confi | --conf | --con | --co | --c )\n    $as_echo \"$ac_cs_config\"; exit ;;\n  --debug | --debu | --deb | --de | --d | -d )\n    debug=: ;;\n  --file | --fil | --fi | --f )\n    $ac_shift\n    case $ac_optarg in\n    *\\'*) ac_optarg=`$as_echo \"$ac_optarg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    '') as_fn_error $? \"missing file argument\" ;;\n    esac\n    as_fn_append CONFIG_FILES \" '$ac_optarg'\"\n    ac_need_defaults=false;;\n  --header | --heade | --head | --hea )\n    $ac_shift\n    case $ac_optarg in\n    *\\'*) ac_optarg=`$as_echo \"$ac_optarg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    esac\n    as_fn_append CONFIG_HEADERS \" '$ac_optarg'\"\n    ac_need_defaults=false;;\n  --he | --h)\n    # Conflict between --help and --header\n    as_fn_error $? \"ambiguous option: \\`$1'\nTry \\`$0 --help' for more information.\";;\n  --help | --hel | -h )\n    $as_echo \"$ac_cs_usage\"; exit ;;\n  -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n  | -silent | --silent | --silen | --sile | --sil | --si | --s)\n    ac_cs_silent=: ;;\n\n  # This is an error.\n  -*) as_fn_error $? \"unrecognized option: \\`$1'\nTry \\`$0 --help' for more information.\" ;;\n\n  *) as_fn_append ac_config_targets \" $1\"\n     ac_need_defaults=false ;;\n\n  esac\n  shift\ndone\n\nac_configure_extra_args=\n\nif $ac_cs_silent; then\n  exec 6>/dev/null\n  ac_configure_extra_args=\"$ac_configure_extra_args --silent\"\nfi\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\nif \\$ac_cs_recheck; then\n  set X $SHELL '$0' $ac_configure_args \\$ac_configure_extra_args --no-create --no-recursion\n  shift\n  \\$as_echo \"running CONFIG_SHELL=$SHELL \\$*\" >&6\n  CONFIG_SHELL='$SHELL'\n  export CONFIG_SHELL\n  exec \"\\$@\"\nfi\n\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nexec 5>>config.log\n{\n  echo\n  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX\n## Running $as_me. ##\n_ASBOX\n  $as_echo \"$ac_log\"\n} >&5\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n#\n# INIT-COMMANDS\n#\n\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nsed_quote_subst='$sed_quote_subst'\ndouble_quote_subst='$double_quote_subst'\ndelay_variable_subst='$delay_variable_subst'\nmacro_version='`$ECHO \"$macro_version\" | $SED \"$delay_single_quote_subst\"`'\nmacro_revision='`$ECHO \"$macro_revision\" | $SED \"$delay_single_quote_subst\"`'\nAS='`$ECHO \"$AS\" | $SED \"$delay_single_quote_subst\"`'\nDLLTOOL='`$ECHO \"$DLLTOOL\" | $SED \"$delay_single_quote_subst\"`'\nOBJDUMP='`$ECHO \"$OBJDUMP\" | $SED \"$delay_single_quote_subst\"`'\nenable_shared='`$ECHO \"$enable_shared\" | $SED \"$delay_single_quote_subst\"`'\nenable_static='`$ECHO \"$enable_static\" | $SED \"$delay_single_quote_subst\"`'\npic_mode='`$ECHO \"$pic_mode\" | $SED \"$delay_single_quote_subst\"`'\nenable_fast_install='`$ECHO \"$enable_fast_install\" | $SED \"$delay_single_quote_subst\"`'\nshared_archive_member_spec='`$ECHO \"$shared_archive_member_spec\" | $SED \"$delay_single_quote_subst\"`'\nSHELL='`$ECHO \"$SHELL\" | $SED \"$delay_single_quote_subst\"`'\nECHO='`$ECHO \"$ECHO\" | $SED \"$delay_single_quote_subst\"`'\nPATH_SEPARATOR='`$ECHO \"$PATH_SEPARATOR\" | $SED \"$delay_single_quote_subst\"`'\nhost_alias='`$ECHO \"$host_alias\" | $SED \"$delay_single_quote_subst\"`'\nhost='`$ECHO \"$host\" | $SED \"$delay_single_quote_subst\"`'\nhost_os='`$ECHO \"$host_os\" | $SED \"$delay_single_quote_subst\"`'\nbuild_alias='`$ECHO \"$build_alias\" | $SED \"$delay_single_quote_subst\"`'\nbuild='`$ECHO \"$build\" | $SED \"$delay_single_quote_subst\"`'\nbuild_os='`$ECHO \"$build_os\" | $SED \"$delay_single_quote_subst\"`'\nSED='`$ECHO \"$SED\" | $SED \"$delay_single_quote_subst\"`'\nXsed='`$ECHO \"$Xsed\" | $SED \"$delay_single_quote_subst\"`'\nGREP='`$ECHO \"$GREP\" | $SED \"$delay_single_quote_subst\"`'\nEGREP='`$ECHO \"$EGREP\" | $SED \"$delay_single_quote_subst\"`'\nFGREP='`$ECHO \"$FGREP\" | $SED \"$delay_single_quote_subst\"`'\nLD='`$ECHO \"$LD\" | $SED \"$delay_single_quote_subst\"`'\nNM='`$ECHO \"$NM\" | $SED \"$delay_single_quote_subst\"`'\nLN_S='`$ECHO \"$LN_S\" | $SED \"$delay_single_quote_subst\"`'\nmax_cmd_len='`$ECHO \"$max_cmd_len\" | $SED \"$delay_single_quote_subst\"`'\nac_objext='`$ECHO \"$ac_objext\" | $SED \"$delay_single_quote_subst\"`'\nexeext='`$ECHO \"$exeext\" | $SED \"$delay_single_quote_subst\"`'\nlt_unset='`$ECHO \"$lt_unset\" | $SED \"$delay_single_quote_subst\"`'\nlt_SP2NL='`$ECHO \"$lt_SP2NL\" | $SED \"$delay_single_quote_subst\"`'\nlt_NL2SP='`$ECHO \"$lt_NL2SP\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_to_host_file_cmd='`$ECHO \"$lt_cv_to_host_file_cmd\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_to_tool_file_cmd='`$ECHO \"$lt_cv_to_tool_file_cmd\" | $SED \"$delay_single_quote_subst\"`'\nreload_flag='`$ECHO \"$reload_flag\" | $SED \"$delay_single_quote_subst\"`'\nreload_cmds='`$ECHO \"$reload_cmds\" | $SED \"$delay_single_quote_subst\"`'\ndeplibs_check_method='`$ECHO \"$deplibs_check_method\" | $SED \"$delay_single_quote_subst\"`'\nfile_magic_cmd='`$ECHO \"$file_magic_cmd\" | $SED \"$delay_single_quote_subst\"`'\nfile_magic_glob='`$ECHO \"$file_magic_glob\" | $SED \"$delay_single_quote_subst\"`'\nwant_nocaseglob='`$ECHO \"$want_nocaseglob\" | $SED \"$delay_single_quote_subst\"`'\nsharedlib_from_linklib_cmd='`$ECHO \"$sharedlib_from_linklib_cmd\" | $SED \"$delay_single_quote_subst\"`'\nAR='`$ECHO \"$AR\" | $SED \"$delay_single_quote_subst\"`'\nAR_FLAGS='`$ECHO \"$AR_FLAGS\" | $SED \"$delay_single_quote_subst\"`'\narchiver_list_spec='`$ECHO \"$archiver_list_spec\" | $SED \"$delay_single_quote_subst\"`'\nSTRIP='`$ECHO \"$STRIP\" | $SED \"$delay_single_quote_subst\"`'\nRANLIB='`$ECHO \"$RANLIB\" | $SED \"$delay_single_quote_subst\"`'\nold_postinstall_cmds='`$ECHO \"$old_postinstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_postuninstall_cmds='`$ECHO \"$old_postuninstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_cmds='`$ECHO \"$old_archive_cmds\" | $SED \"$delay_single_quote_subst\"`'\nlock_old_archive_extraction='`$ECHO \"$lock_old_archive_extraction\" | $SED \"$delay_single_quote_subst\"`'\nCC='`$ECHO \"$CC\" | $SED \"$delay_single_quote_subst\"`'\nCFLAGS='`$ECHO \"$CFLAGS\" | $SED \"$delay_single_quote_subst\"`'\ncompiler='`$ECHO \"$compiler\" | $SED \"$delay_single_quote_subst\"`'\nGCC='`$ECHO \"$GCC\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_pipe='`$ECHO \"$lt_cv_sys_global_symbol_pipe\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_cdecl='`$ECHO \"$lt_cv_sys_global_symbol_to_cdecl\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_import='`$ECHO \"$lt_cv_sys_global_symbol_to_import\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_c_name_address='`$ECHO \"$lt_cv_sys_global_symbol_to_c_name_address\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO \"$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_nm_interface='`$ECHO \"$lt_cv_nm_interface\" | $SED \"$delay_single_quote_subst\"`'\nnm_file_list_spec='`$ECHO \"$nm_file_list_spec\" | $SED \"$delay_single_quote_subst\"`'\nlt_sysroot='`$ECHO \"$lt_sysroot\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_truncate_bin='`$ECHO \"$lt_cv_truncate_bin\" | $SED \"$delay_single_quote_subst\"`'\nobjdir='`$ECHO \"$objdir\" | $SED \"$delay_single_quote_subst\"`'\nMAGIC_CMD='`$ECHO \"$MAGIC_CMD\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_no_builtin_flag='`$ECHO \"$lt_prog_compiler_no_builtin_flag\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_pic='`$ECHO \"$lt_prog_compiler_pic\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_wl='`$ECHO \"$lt_prog_compiler_wl\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_static='`$ECHO \"$lt_prog_compiler_static\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_prog_compiler_c_o='`$ECHO \"$lt_cv_prog_compiler_c_o\" | $SED \"$delay_single_quote_subst\"`'\nneed_locks='`$ECHO \"$need_locks\" | $SED \"$delay_single_quote_subst\"`'\nMANIFEST_TOOL='`$ECHO \"$MANIFEST_TOOL\" | $SED \"$delay_single_quote_subst\"`'\nDSYMUTIL='`$ECHO \"$DSYMUTIL\" | $SED \"$delay_single_quote_subst\"`'\nNMEDIT='`$ECHO \"$NMEDIT\" | $SED \"$delay_single_quote_subst\"`'\nLIPO='`$ECHO \"$LIPO\" | $SED \"$delay_single_quote_subst\"`'\nOTOOL='`$ECHO \"$OTOOL\" | $SED \"$delay_single_quote_subst\"`'\nOTOOL64='`$ECHO \"$OTOOL64\" | $SED \"$delay_single_quote_subst\"`'\nlibext='`$ECHO \"$libext\" | $SED \"$delay_single_quote_subst\"`'\nshrext_cmds='`$ECHO \"$shrext_cmds\" | $SED \"$delay_single_quote_subst\"`'\nextract_expsyms_cmds='`$ECHO \"$extract_expsyms_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds_need_lc='`$ECHO \"$archive_cmds_need_lc\" | $SED \"$delay_single_quote_subst\"`'\nenable_shared_with_static_runtimes='`$ECHO \"$enable_shared_with_static_runtimes\" | $SED \"$delay_single_quote_subst\"`'\nexport_dynamic_flag_spec='`$ECHO \"$export_dynamic_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\nwhole_archive_flag_spec='`$ECHO \"$whole_archive_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_needs_object='`$ECHO \"$compiler_needs_object\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_new_cmds='`$ECHO \"$old_archive_from_new_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_expsyms_cmds='`$ECHO \"$old_archive_from_expsyms_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds='`$ECHO \"$archive_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_expsym_cmds='`$ECHO \"$archive_expsym_cmds\" | $SED \"$delay_single_quote_subst\"`'\nmodule_cmds='`$ECHO \"$module_cmds\" | $SED \"$delay_single_quote_subst\"`'\nmodule_expsym_cmds='`$ECHO \"$module_expsym_cmds\" | $SED \"$delay_single_quote_subst\"`'\nwith_gnu_ld='`$ECHO \"$with_gnu_ld\" | $SED \"$delay_single_quote_subst\"`'\nallow_undefined_flag='`$ECHO \"$allow_undefined_flag\" | $SED \"$delay_single_quote_subst\"`'\nno_undefined_flag='`$ECHO \"$no_undefined_flag\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_flag_spec='`$ECHO \"$hardcode_libdir_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_separator='`$ECHO \"$hardcode_libdir_separator\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct='`$ECHO \"$hardcode_direct\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct_absolute='`$ECHO \"$hardcode_direct_absolute\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_minus_L='`$ECHO \"$hardcode_minus_L\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_shlibpath_var='`$ECHO \"$hardcode_shlibpath_var\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_automatic='`$ECHO \"$hardcode_automatic\" | $SED \"$delay_single_quote_subst\"`'\ninherit_rpath='`$ECHO \"$inherit_rpath\" | $SED \"$delay_single_quote_subst\"`'\nlink_all_deplibs='`$ECHO \"$link_all_deplibs\" | $SED \"$delay_single_quote_subst\"`'\nalways_export_symbols='`$ECHO \"$always_export_symbols\" | $SED \"$delay_single_quote_subst\"`'\nexport_symbols_cmds='`$ECHO \"$export_symbols_cmds\" | $SED \"$delay_single_quote_subst\"`'\nexclude_expsyms='`$ECHO \"$exclude_expsyms\" | $SED \"$delay_single_quote_subst\"`'\ninclude_expsyms='`$ECHO \"$include_expsyms\" | $SED \"$delay_single_quote_subst\"`'\nprelink_cmds='`$ECHO \"$prelink_cmds\" | $SED \"$delay_single_quote_subst\"`'\npostlink_cmds='`$ECHO \"$postlink_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfile_list_spec='`$ECHO \"$file_list_spec\" | $SED \"$delay_single_quote_subst\"`'\nvariables_saved_for_relink='`$ECHO \"$variables_saved_for_relink\" | $SED \"$delay_single_quote_subst\"`'\nneed_lib_prefix='`$ECHO \"$need_lib_prefix\" | $SED \"$delay_single_quote_subst\"`'\nneed_version='`$ECHO \"$need_version\" | $SED \"$delay_single_quote_subst\"`'\nversion_type='`$ECHO \"$version_type\" | $SED \"$delay_single_quote_subst\"`'\nrunpath_var='`$ECHO \"$runpath_var\" | $SED \"$delay_single_quote_subst\"`'\nshlibpath_var='`$ECHO \"$shlibpath_var\" | $SED \"$delay_single_quote_subst\"`'\nshlibpath_overrides_runpath='`$ECHO \"$shlibpath_overrides_runpath\" | $SED \"$delay_single_quote_subst\"`'\nlibname_spec='`$ECHO \"$libname_spec\" | $SED \"$delay_single_quote_subst\"`'\nlibrary_names_spec='`$ECHO \"$library_names_spec\" | $SED \"$delay_single_quote_subst\"`'\nsoname_spec='`$ECHO \"$soname_spec\" | $SED \"$delay_single_quote_subst\"`'\ninstall_override_mode='`$ECHO \"$install_override_mode\" | $SED \"$delay_single_quote_subst\"`'\npostinstall_cmds='`$ECHO \"$postinstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\npostuninstall_cmds='`$ECHO \"$postuninstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfinish_cmds='`$ECHO \"$finish_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfinish_eval='`$ECHO \"$finish_eval\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_into_libs='`$ECHO \"$hardcode_into_libs\" | $SED \"$delay_single_quote_subst\"`'\nsys_lib_search_path_spec='`$ECHO \"$sys_lib_search_path_spec\" | $SED \"$delay_single_quote_subst\"`'\nconfigure_time_dlsearch_path='`$ECHO \"$configure_time_dlsearch_path\" | $SED \"$delay_single_quote_subst\"`'\nconfigure_time_lt_sys_library_path='`$ECHO \"$configure_time_lt_sys_library_path\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_action='`$ECHO \"$hardcode_action\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen='`$ECHO \"$enable_dlopen\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen_self='`$ECHO \"$enable_dlopen_self\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen_self_static='`$ECHO \"$enable_dlopen_self_static\" | $SED \"$delay_single_quote_subst\"`'\nold_striplib='`$ECHO \"$old_striplib\" | $SED \"$delay_single_quote_subst\"`'\nstriplib='`$ECHO \"$striplib\" | $SED \"$delay_single_quote_subst\"`'\n\nLTCC='$LTCC'\nLTCFLAGS='$LTCFLAGS'\ncompiler='$compiler_DEFAULT'\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$1\n_LTECHO_EOF'\n}\n\n# Quote evaled strings.\nfor var in AS \\\nDLLTOOL \\\nOBJDUMP \\\nSHELL \\\nECHO \\\nPATH_SEPARATOR \\\nSED \\\nGREP \\\nEGREP \\\nFGREP \\\nLD \\\nNM \\\nLN_S \\\nlt_SP2NL \\\nlt_NL2SP \\\nreload_flag \\\ndeplibs_check_method \\\nfile_magic_cmd \\\nfile_magic_glob \\\nwant_nocaseglob \\\nsharedlib_from_linklib_cmd \\\nAR \\\nAR_FLAGS \\\narchiver_list_spec \\\nSTRIP \\\nRANLIB \\\nCC \\\nCFLAGS \\\ncompiler \\\nlt_cv_sys_global_symbol_pipe \\\nlt_cv_sys_global_symbol_to_cdecl \\\nlt_cv_sys_global_symbol_to_import \\\nlt_cv_sys_global_symbol_to_c_name_address \\\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix \\\nlt_cv_nm_interface \\\nnm_file_list_spec \\\nlt_cv_truncate_bin \\\nlt_prog_compiler_no_builtin_flag \\\nlt_prog_compiler_pic \\\nlt_prog_compiler_wl \\\nlt_prog_compiler_static \\\nlt_cv_prog_compiler_c_o \\\nneed_locks \\\nMANIFEST_TOOL \\\nDSYMUTIL \\\nNMEDIT \\\nLIPO \\\nOTOOL \\\nOTOOL64 \\\nshrext_cmds \\\nexport_dynamic_flag_spec \\\nwhole_archive_flag_spec \\\ncompiler_needs_object \\\nwith_gnu_ld \\\nallow_undefined_flag \\\nno_undefined_flag \\\nhardcode_libdir_flag_spec \\\nhardcode_libdir_separator \\\nexclude_expsyms \\\ninclude_expsyms \\\nfile_list_spec \\\nvariables_saved_for_relink \\\nlibname_spec \\\nlibrary_names_spec \\\nsoname_spec \\\ninstall_override_mode \\\nfinish_eval \\\nold_striplib \\\nstriplib; do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED \\\\\"\\\\\\$sed_quote_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\n# Double-quote double-evaled strings.\nfor var in reload_cmds \\\nold_postinstall_cmds \\\nold_postuninstall_cmds \\\nold_archive_cmds \\\nextract_expsyms_cmds \\\nold_archive_from_new_cmds \\\nold_archive_from_expsyms_cmds \\\narchive_cmds \\\narchive_expsym_cmds \\\nmodule_cmds \\\nmodule_expsym_cmds \\\nexport_symbols_cmds \\\nprelink_cmds \\\npostlink_cmds \\\npostinstall_cmds \\\npostuninstall_cmds \\\nfinish_cmds \\\nsys_lib_search_path_spec \\\nconfigure_time_dlsearch_path \\\nconfigure_time_lt_sys_library_path; do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED -e \\\\\"\\\\\\$double_quote_subst\\\\\" -e \\\\\"\\\\\\$sed_quote_subst\\\\\" -e \\\\\"\\\\\\$delay_variable_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\nac_aux_dir='$ac_aux_dir'\n\n# See if we are running on zsh, and set the options that allow our\n# commands through without removal of \\ escapes INIT.\nif test -n \"\\${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n\n\n    PACKAGE='$PACKAGE'\n    VERSION='$VERSION'\n    RM='$RM'\n    ofile='$ofile'\n\n\n\n\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n\n# Handling of arguments.\nfor ac_config_target in $ac_config_targets\ndo\n  case $ac_config_target in\n    \"config.h\") CONFIG_HEADERS=\"$CONFIG_HEADERS config.h\" ;;\n    \"libtool\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS libtool\" ;;\n    \"Makefile\") CONFIG_FILES=\"$CONFIG_FILES Makefile\" ;;\n    \"lib/Makefile\") CONFIG_FILES=\"$CONFIG_FILES lib/Makefile\" ;;\n    \"include/localcharset.h\") CONFIG_FILES=\"$CONFIG_FILES include/localcharset.h:include/localcharset.h.build.in\" ;;\n    \"include/localcharset.h.inst\") CONFIG_FILES=\"$CONFIG_FILES include/localcharset.h.inst:include/localcharset.h.in\" ;;\n\n  *) as_fn_error $? \"invalid argument: \\`$ac_config_target'\" \"$LINENO\" 5;;\n  esac\ndone\n\n\n# If the user did not use the arguments to specify the items to instantiate,\n# then the envvar interface is used.  Set only those that are not.\n# We use the long form for the default assignment because of an extremely\n# bizarre bug on SunOS 4.1.3.\nif $ac_need_defaults; then\n  test \"${CONFIG_FILES+set}\" = set || CONFIG_FILES=$config_files\n  test \"${CONFIG_HEADERS+set}\" = set || CONFIG_HEADERS=$config_headers\n  test \"${CONFIG_COMMANDS+set}\" = set || CONFIG_COMMANDS=$config_commands\nfi\n\n# Have a temporary directory for convenience.  Make it in the build tree\n# simply because there is no reason against having it here, and in addition,\n# creating and moving files from /tmp can sometimes cause problems.\n# Hook for its removal unless debugging.\n# Note that there is a small window in which the directory will not be cleaned:\n# after its creation but before its name has been assigned to `$tmp'.\n$debug ||\n{\n  tmp= ac_tmp=\n  trap 'exit_status=$?\n  : \"${ac_tmp:=$tmp}\"\n  { test ! -d \"$ac_tmp\" || rm -fr \"$ac_tmp\"; } && exit $exit_status\n' 0\n  trap 'as_fn_exit 1' 1 2 13 15\n}\n# Create a (secure) tmp directory for tmp files.\n\n{\n  tmp=`(umask 077 && mktemp -d \"./confXXXXXX\") 2>/dev/null` &&\n  test -d \"$tmp\"\n}  ||\n{\n  tmp=./conf$$-$RANDOM\n  (umask 077 && mkdir \"$tmp\")\n} || as_fn_error $? \"cannot create a temporary directory in .\" \"$LINENO\" 5\nac_tmp=$tmp\n\n# Set up the scripts for CONFIG_FILES section.\n# No need to generate them if there are no CONFIG_FILES.\n# This happens for instance with `./config.status config.h'.\nif test -n \"$CONFIG_FILES\"; then\n\n\nac_cr=`echo X | tr X '\\015'`\n# On cygwin, bash can eat \\r inside `` if the user requested igncr.\n# But we know of no other shell where ac_cr would be empty at this\n# point, so we can use a bashism as a fallback.\nif test \"x$ac_cr\" = x; then\n  eval ac_cr=\\$\\'\\\\r\\'\nfi\nac_cs_awk_cr=`$AWK 'BEGIN { print \"a\\rb\" }' </dev/null 2>/dev/null`\nif test \"$ac_cs_awk_cr\" = \"a${ac_cr}b\"; then\n  ac_cs_awk_cr='\\\\r'\nelse\n  ac_cs_awk_cr=$ac_cr\nfi\n\necho 'BEGIN {' >\"$ac_tmp/subs1.awk\" &&\n_ACEOF\n\n\n{\n  echo \"cat >conf$$subs.awk <<_ACEOF\" &&\n  echo \"$ac_subst_vars\" | sed 's/.*/&!$&$ac_delim/' &&\n  echo \"_ACEOF\"\n} >conf$$subs.sh ||\n  as_fn_error $? \"could not make $CONFIG_STATUS\" \"$LINENO\" 5\nac_delim_num=`echo \"$ac_subst_vars\" | grep -c '^'`\nac_delim='%!_!# '\nfor ac_last_try in false false false false false :; do\n  . ./conf$$subs.sh ||\n    as_fn_error $? \"could not make $CONFIG_STATUS\" \"$LINENO\" 5\n\n  ac_delim_n=`sed -n \"s/.*$ac_delim\\$/X/p\" conf$$subs.awk | grep -c X`\n  if test $ac_delim_n = $ac_delim_num; then\n    break\n  elif $ac_last_try; then\n    as_fn_error $? \"could not make $CONFIG_STATUS\" \"$LINENO\" 5\n  else\n    ac_delim=\"$ac_delim!$ac_delim _$ac_delim!! \"\n  fi\ndone\nrm -f conf$$subs.sh\n\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\ncat >>\"\\$ac_tmp/subs1.awk\" <<\\\\_ACAWK &&\n_ACEOF\nsed -n '\nh\ns/^/S[\"/; s/!.*/\"]=/\np\ng\ns/^[^!]*!//\n:repl\nt repl\ns/'\"$ac_delim\"'$//\nt delim\n:nl\nh\ns/\\(.\\{148\\}\\)..*/\\1/\nt more1\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\\\\n\"\\\\/\np\nn\nb repl\n:more1\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\"\\\\/\np\ng\ns/.\\{148\\}//\nt nl\n:delim\nh\ns/\\(.\\{148\\}\\)..*/\\1/\nt more2\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\"/\np\nb\n:more2\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\"\\\\/\np\ng\ns/.\\{148\\}//\nt delim\n' <conf$$subs.awk | sed '\n/^[^\"\"]/{\n  N\n  s/\\n//\n}\n' >>$CONFIG_STATUS || ac_write_fail=1\nrm -f conf$$subs.awk\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n_ACAWK\ncat >>\"\\$ac_tmp/subs1.awk\" <<_ACAWK &&\n  for (key in S) S_is_set[key] = 1\n  FS = \"\u0007\"\n\n}\n{\n  line = $ 0\n  nfields = split(line, field, \"@\")\n  substed = 0\n  len = length(field[1])\n  for (i = 2; i < nfields; i++) {\n    key = field[i]\n    keylen = length(key)\n    if (S_is_set[key]) {\n      value = S[key]\n      line = substr(line, 1, len) \"\" value \"\" substr(line, len + keylen + 3)\n      len += length(value) + length(field[++i])\n      substed = 1\n    } else\n      len += 1 + keylen\n  }\n\n  print line\n}\n\n_ACAWK\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nif sed \"s/$ac_cr//\" < /dev/null > /dev/null 2>&1; then\n  sed \"s/$ac_cr\\$//; s/$ac_cr/$ac_cs_awk_cr/g\"\nelse\n  cat\nfi < \"$ac_tmp/subs1.awk\" > \"$ac_tmp/subs.awk\" \\\n  || as_fn_error $? \"could not setup config files machinery\" \"$LINENO\" 5\n_ACEOF\n\n# VPATH may cause trouble with some makes, so we remove sole $(srcdir),\n# ${srcdir} and @srcdir@ entries from VPATH if srcdir is \".\", strip leading and\n# trailing colons and then remove the whole line if VPATH becomes empty\n# (actually we leave an empty line to preserve line numbers).\nif test \"x$srcdir\" = x.; then\n  ac_vpsub='/^[\t ]*VPATH[\t ]*=[\t ]*/{\nh\ns///\ns/^/:/\ns/[\t ]*$/:/\ns/:\\$(srcdir):/:/g\ns/:\\${srcdir}:/:/g\ns/:@srcdir@:/:/g\ns/^:*//\ns/:*$//\nx\ns/\\(=[\t ]*\\).*/\\1/\nG\ns/\\n//\ns/^[^=]*=[\t ]*$//\n}'\nfi\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nfi # test -n \"$CONFIG_FILES\"\n\n# Set up the scripts for CONFIG_HEADERS section.\n# No need to generate them if there are no CONFIG_HEADERS.\n# This happens for instance with `./config.status Makefile'.\nif test -n \"$CONFIG_HEADERS\"; then\ncat >\"$ac_tmp/defines.awk\" <<\\_ACAWK ||\nBEGIN {\n_ACEOF\n\n# Transform confdefs.h into an awk script `defines.awk', embedded as\n# here-document in config.status, that substitutes the proper values into\n# config.h.in to produce config.h.\n\n# Create a delimiter string that does not exist in confdefs.h, to ease\n# handling of long lines.\nac_delim='%!_!# '\nfor ac_last_try in false false :; do\n  ac_tt=`sed -n \"/$ac_delim/p\" confdefs.h`\n  if test -z \"$ac_tt\"; then\n    break\n  elif $ac_last_try; then\n    as_fn_error $? \"could not make $CONFIG_HEADERS\" \"$LINENO\" 5\n  else\n    ac_delim=\"$ac_delim!$ac_delim _$ac_delim!! \"\n  fi\ndone\n\n# For the awk script, D is an array of macro values keyed by name,\n# likewise P contains macro parameters if any.  Preserve backslash\n# newline sequences.\n\nac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*\nsed -n '\ns/.\\{148\\}/&'\"$ac_delim\"'/g\nt rset\n:rset\ns/^[\t ]*#[\t ]*define[\t ][\t ]*/ /\nt def\nd\n:def\ns/\\\\$//\nt bsnl\ns/[\"\\\\]/\\\\&/g\ns/^ \\('\"$ac_word_re\"'\\)\\(([^()]*)\\)[\t ]*\\(.*\\)/P[\"\\1\"]=\"\\2\"\\\nD[\"\\1\"]=\" \\3\"/p\ns/^ \\('\"$ac_word_re\"'\\)[\t ]*\\(.*\\)/D[\"\\1\"]=\" \\2\"/p\nd\n:bsnl\ns/[\"\\\\]/\\\\&/g\ns/^ \\('\"$ac_word_re\"'\\)\\(([^()]*)\\)[\t ]*\\(.*\\)/P[\"\\1\"]=\"\\2\"\\\nD[\"\\1\"]=\" \\3\\\\\\\\\\\\n\"\\\\/p\nt cont\ns/^ \\('\"$ac_word_re\"'\\)[\t ]*\\(.*\\)/D[\"\\1\"]=\" \\2\\\\\\\\\\\\n\"\\\\/p\nt cont\nd\n:cont\nn\ns/.\\{148\\}/&'\"$ac_delim\"'/g\nt clear\n:clear\ns/\\\\$//\nt bsnlc\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\"/p\nd\n:bsnlc\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\\\\\\\\\\\\n\"\\\\/p\nb cont\n' <confdefs.h | sed '\ns/'\"$ac_delim\"'/\"\\\\\\\n\"/g' >>$CONFIG_STATUS || ac_write_fail=1\n\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n  for (key in D) D_is_set[key] = 1\n  FS = \"\u0007\"\n}\n/^[\\t ]*#[\\t ]*(define|undef)[\\t ]+$ac_word_re([\\t (]|\\$)/ {\n  line = \\$ 0\n  split(line, arg, \" \")\n  if (arg[1] == \"#\") {\n    defundef = arg[2]\n    mac1 = arg[3]\n  } else {\n    defundef = substr(arg[1], 2)\n    mac1 = arg[2]\n  }\n  split(mac1, mac2, \"(\") #)\n  macro = mac2[1]\n  prefix = substr(line, 1, index(line, defundef) - 1)\n  if (D_is_set[macro]) {\n    # Preserve the white space surrounding the \"#\".\n    print prefix \"define\", macro P[macro] D[macro]\n    next\n  } else {\n    # Replace #undef with comments.  This is necessary, for example,\n    # in the case of _POSIX_SOURCE, which is predefined and required\n    # on some systems where configure will not decide to define it.\n    if (defundef == \"undef\") {\n      print \"/*\", prefix defundef, macro, \"*/\"\n      next\n    }\n  }\n}\n{ print }\n_ACAWK\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n  as_fn_error $? \"could not setup config headers machinery\" \"$LINENO\" 5\nfi # test -n \"$CONFIG_HEADERS\"\n\n\neval set X \"  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS\"\nshift\nfor ac_tag\ndo\n  case $ac_tag in\n  :[FHLC]) ac_mode=$ac_tag; continue;;\n  esac\n  case $ac_mode$ac_tag in\n  :[FHL]*:*);;\n  :L* | :C*:*) as_fn_error $? \"invalid tag \\`$ac_tag'\" \"$LINENO\" 5;;\n  :[FH]-) ac_tag=-:-;;\n  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;\n  esac\n  ac_save_IFS=$IFS\n  IFS=:\n  set x $ac_tag\n  IFS=$ac_save_IFS\n  shift\n  ac_file=$1\n  shift\n\n  case $ac_mode in\n  :L) ac_source=$1;;\n  :[FH])\n    ac_file_inputs=\n    for ac_f\n    do\n      case $ac_f in\n      -) ac_f=\"$ac_tmp/stdin\";;\n      *) # Look for the file first in the build tree, then in the source tree\n\t # (if the path is not absolute).  The absolute path cannot be DOS-style,\n\t # because $ac_f cannot contain `:'.\n\t test -f \"$ac_f\" ||\n\t   case $ac_f in\n\t   [\\\\/$]*) false;;\n\t   *) test -f \"$srcdir/$ac_f\" && ac_f=\"$srcdir/$ac_f\";;\n\t   esac ||\n\t   as_fn_error 1 \"cannot find input file: \\`$ac_f'\" \"$LINENO\" 5;;\n      esac\n      case $ac_f in *\\'*) ac_f=`$as_echo \"$ac_f\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; esac\n      as_fn_append ac_file_inputs \" '$ac_f'\"\n    done\n\n    # Let's still pretend it is `configure' which instantiates (i.e., don't\n    # use $as_me), people would be surprised to read:\n    #    /* config.h.  Generated by config.status.  */\n    configure_input='Generated from '`\n\t  $as_echo \"$*\" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'\n\t`' by configure.'\n    if test x\"$ac_file\" != x-; then\n      configure_input=\"$ac_file.  $configure_input\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: creating $ac_file\" >&5\n$as_echo \"$as_me: creating $ac_file\" >&6;}\n    fi\n    # Neutralize special characters interpreted by sed in replacement strings.\n    case $configure_input in #(\n    *\\&* | *\\|* | *\\\\* )\n       ac_sed_conf_input=`$as_echo \"$configure_input\" |\n       sed 's/[\\\\\\\\&|]/\\\\\\\\&/g'`;; #(\n    *) ac_sed_conf_input=$configure_input;;\n    esac\n\n    case $ac_tag in\n    *:-:* | *:-) cat >\"$ac_tmp/stdin\" \\\n      || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5 ;;\n    esac\n    ;;\n  esac\n\n  ac_dir=`$as_dirname -- \"$ac_file\" ||\n$as_expr X\"$ac_file\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)$' \\| \\\n\t X\"$ac_file\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$ac_file\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  as_dir=\"$ac_dir\"; as_fn_mkdir_p\n  ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`$as_echo \"$ac_dir\" | sed 's|^\\.[\\\\/]||'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`$as_echo \"$ac_dir_suffix\" | sed 's|/[^\\\\/]*|/..|g;s|/||'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n\n  case $ac_mode in\n  :F)\n  #\n  # CONFIG_FILE\n  #\n\n  case $INSTALL in\n  [\\\\/$]* | ?:[\\\\/]* ) ac_INSTALL=$INSTALL ;;\n  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;\n  esac\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n# If the template does not know about datarootdir, expand it.\n# FIXME: This hack should be removed a few years after 2.60.\nac_datarootdir_hack=; ac_datarootdir_seen=\nac_sed_dataroot='\n/datarootdir/ {\n  p\n  q\n}\n/@datadir@/p\n/@docdir@/p\n/@infodir@/p\n/@localedir@/p\n/@mandir@/p'\ncase `eval \"sed -n \\\"\\$ac_sed_dataroot\\\" $ac_file_inputs\"` in\n*datarootdir*) ac_datarootdir_seen=yes;;\n*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&5\n$as_echo \"$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&2;}\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n  ac_datarootdir_hack='\n  s&@datadir@&$datadir&g\n  s&@docdir@&$docdir&g\n  s&@infodir@&$infodir&g\n  s&@localedir@&$localedir&g\n  s&@mandir@&$mandir&g\n  s&\\\\\\${datarootdir}&$datarootdir&g' ;;\nesac\n_ACEOF\n\n# Neutralize VPATH when `$srcdir' = `.'.\n# Shell code in configure.ac might set extrasub.\n# FIXME: do we really want to maintain this feature?\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\nac_sed_extra=\"$ac_vpsub\n$extrasub\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n:t\n/@[a-zA-Z_][a-zA-Z_0-9]*@/!b\ns|@configure_input@|$ac_sed_conf_input|;t t\ns&@top_builddir@&$ac_top_builddir_sub&;t t\ns&@top_build_prefix@&$ac_top_build_prefix&;t t\ns&@srcdir@&$ac_srcdir&;t t\ns&@abs_srcdir@&$ac_abs_srcdir&;t t\ns&@top_srcdir@&$ac_top_srcdir&;t t\ns&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t\ns&@builddir@&$ac_builddir&;t t\ns&@abs_builddir@&$ac_abs_builddir&;t t\ns&@abs_top_builddir@&$ac_abs_top_builddir&;t t\ns&@INSTALL@&$ac_INSTALL&;t t\n$ac_datarootdir_hack\n\"\neval sed \\\"\\$ac_sed_extra\\\" \"$ac_file_inputs\" | $AWK -f \"$ac_tmp/subs.awk\" \\\n  >$ac_tmp/out || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n\ntest -z \"$ac_datarootdir_hack$ac_datarootdir_seen\" &&\n  { ac_out=`sed -n '/\\${datarootdir}/p' \"$ac_tmp/out\"`; test -n \"$ac_out\"; } &&\n  { ac_out=`sed -n '/^[\t ]*datarootdir[\t ]*:*=/p' \\\n      \"$ac_tmp/out\"`; test -z \"$ac_out\"; } &&\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&5\n$as_echo \"$as_me: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&2;}\n\n  rm -f \"$ac_tmp/stdin\"\n  case $ac_file in\n  -) cat \"$ac_tmp/out\" && rm -f \"$ac_tmp/out\";;\n  *) rm -f \"$ac_file\" && mv \"$ac_tmp/out\" \"$ac_file\";;\n  esac \\\n  || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n ;;\n  :H)\n  #\n  # CONFIG_HEADER\n  #\n  if test x\"$ac_file\" != x-; then\n    {\n      $as_echo \"/* $configure_input  */\" \\\n      && eval '$AWK -f \"$ac_tmp/defines.awk\"' \"$ac_file_inputs\"\n    } >\"$ac_tmp/config.h\" \\\n      || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n    if diff \"$ac_file\" \"$ac_tmp/config.h\" >/dev/null 2>&1; then\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: $ac_file is unchanged\" >&5\n$as_echo \"$as_me: $ac_file is unchanged\" >&6;}\n    else\n      rm -f \"$ac_file\"\n      mv \"$ac_tmp/config.h\" \"$ac_file\" \\\n\t|| as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n    fi\n  else\n    $as_echo \"/* $configure_input  */\" \\\n      && eval '$AWK -f \"$ac_tmp/defines.awk\"' \"$ac_file_inputs\" \\\n      || as_fn_error $? \"could not create -\" \"$LINENO\" 5\n  fi\n ;;\n\n  :C)  { $as_echo \"$as_me:${as_lineno-$LINENO}: executing $ac_file commands\" >&5\n$as_echo \"$as_me: executing $ac_file commands\" >&6;}\n ;;\n  esac\n\n\n  case $ac_file$ac_mode in\n    \"libtool\":C)\n\n    # See if we are running on zsh, and set the options that allow our\n    # commands through without removal of \\ escapes.\n    if test -n \"${ZSH_VERSION+set}\"; then\n      setopt NO_GLOB_SUBST\n    fi\n\n    cfgfile=${ofile}T\n    trap \"$RM \\\"$cfgfile\\\"; exit 1\" 1 2 15\n    $RM \"$cfgfile\"\n\n    cat <<_LT_EOF >> \"$cfgfile\"\n#! $SHELL\n# Generated automatically by $as_me ($PACKAGE) $VERSION\n# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit, 1996\n\n# Copyright (C) 2014 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program or library that is built\n# using GNU Libtool, you may include this file under the  same\n# distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\n# The names of the tagged configurations supported by this script.\navailable_tags=''\n\n# Configured defaults for sys_lib_dlsearch_path munging.\n: \\${LT_SYS_LIBRARY_PATH=\"$configure_time_lt_sys_library_path\"}\n\n# ### BEGIN LIBTOOL CONFIG\n\n# Which release of libtool.m4 was used?\nmacro_version=$macro_version\nmacro_revision=$macro_revision\n\n# Assembler program.\nAS=$lt_AS\n\n# DLL creation program.\nDLLTOOL=$lt_DLLTOOL\n\n# Object dumper program.\nOBJDUMP=$lt_OBJDUMP\n\n# Whether or not to build shared libraries.\nbuild_libtool_libs=$enable_shared\n\n# Whether or not to build static libraries.\nbuild_old_libs=$enable_static\n\n# What type of objects to build.\npic_mode=$pic_mode\n\n# Whether or not to optimize for fast installation.\nfast_install=$enable_fast_install\n\n# Shared archive member basename,for filename based shared library versioning on AIX.\nshared_archive_member_spec=$shared_archive_member_spec\n\n# Shell to use when invoking shell scripts.\nSHELL=$lt_SHELL\n\n# An echo program that protects backslashes.\nECHO=$lt_ECHO\n\n# The PATH separator for the build system.\nPATH_SEPARATOR=$lt_PATH_SEPARATOR\n\n# The host system.\nhost_alias=$host_alias\nhost=$host\nhost_os=$host_os\n\n# The build system.\nbuild_alias=$build_alias\nbuild=$build\nbuild_os=$build_os\n\n# A sed program that does not truncate output.\nSED=$lt_SED\n\n# Sed that helps us avoid accidentally triggering echo(1) options like -n.\nXsed=\"\\$SED -e 1s/^X//\"\n\n# A grep program that handles long lines.\nGREP=$lt_GREP\n\n# An ERE matcher.\nEGREP=$lt_EGREP\n\n# A literal string matcher.\nFGREP=$lt_FGREP\n\n# A BSD- or MS-compatible name lister.\nNM=$lt_NM\n\n# Whether we need soft or hard links.\nLN_S=$lt_LN_S\n\n# What is the maximum length of a command?\nmax_cmd_len=$max_cmd_len\n\n# Object file suffix (normally \"o\").\nobjext=$ac_objext\n\n# Executable file suffix (normally \"\").\nexeext=$exeext\n\n# whether the shell understands \"unset\".\nlt_unset=$lt_unset\n\n# turn spaces into newlines.\nSP2NL=$lt_lt_SP2NL\n\n# turn newlines into spaces.\nNL2SP=$lt_lt_NL2SP\n\n# convert \\$build file names to \\$host format.\nto_host_file_cmd=$lt_cv_to_host_file_cmd\n\n# convert \\$build files to toolchain format.\nto_tool_file_cmd=$lt_cv_to_tool_file_cmd\n\n# Method to check whether dependent libraries are shared objects.\ndeplibs_check_method=$lt_deplibs_check_method\n\n# Command to use when deplibs_check_method = \"file_magic\".\nfile_magic_cmd=$lt_file_magic_cmd\n\n# How to find potential files when deplibs_check_method = \"file_magic\".\nfile_magic_glob=$lt_file_magic_glob\n\n# Find potential files using nocaseglob when deplibs_check_method = \"file_magic\".\nwant_nocaseglob=$lt_want_nocaseglob\n\n# Command to associate shared and link libraries.\nsharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd\n\n# The archiver.\nAR=$lt_AR\n\n# Flags to create an archive.\nAR_FLAGS=$lt_AR_FLAGS\n\n# How to feed a file listing to the archiver.\narchiver_list_spec=$lt_archiver_list_spec\n\n# A symbol stripping program.\nSTRIP=$lt_STRIP\n\n# Commands used to install an old-style archive.\nRANLIB=$lt_RANLIB\nold_postinstall_cmds=$lt_old_postinstall_cmds\nold_postuninstall_cmds=$lt_old_postuninstall_cmds\n\n# Whether to use a lock for old archive extraction.\nlock_old_archive_extraction=$lock_old_archive_extraction\n\n# A C compiler.\nLTCC=$lt_CC\n\n# LTCC compiler flags.\nLTCFLAGS=$lt_CFLAGS\n\n# Take the output of nm and produce a listing of raw symbols and C names.\nglobal_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe\n\n# Transform the output of nm in a proper C declaration.\nglobal_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl\n\n# Transform the output of nm into a list of symbols to manually relocate.\nglobal_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import\n\n# Transform the output of nm in a C name address pair.\nglobal_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address\n\n# Transform the output of nm in a C name address pair when lib prefix is needed.\nglobal_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix\n\n# The name lister interface.\nnm_interface=$lt_lt_cv_nm_interface\n\n# Specify filename containing input files for \\$NM.\nnm_file_list_spec=$lt_nm_file_list_spec\n\n# The root where to search for dependent libraries,and where our libraries should be installed.\nlt_sysroot=$lt_sysroot\n\n# Command to truncate a binary pipe.\nlt_truncate_bin=$lt_lt_cv_truncate_bin\n\n# The name of the directory that contains temporary libtool files.\nobjdir=$objdir\n\n# Used to examine libraries when file_magic_cmd begins with \"file\".\nMAGIC_CMD=$MAGIC_CMD\n\n# Must we lock files when doing compilation?\nneed_locks=$lt_need_locks\n\n# Manifest tool.\nMANIFEST_TOOL=$lt_MANIFEST_TOOL\n\n# Tool to manipulate archived DWARF debug symbol files on Mac OS X.\nDSYMUTIL=$lt_DSYMUTIL\n\n# Tool to change global to local symbols on Mac OS X.\nNMEDIT=$lt_NMEDIT\n\n# Tool to manipulate fat objects and archives on Mac OS X.\nLIPO=$lt_LIPO\n\n# ldd/readelf like tool for Mach-O binaries on Mac OS X.\nOTOOL=$lt_OTOOL\n\n# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.\nOTOOL64=$lt_OTOOL64\n\n# Old archive suffix (normally \"a\").\nlibext=$libext\n\n# Shared library suffix (normally \".so\").\nshrext_cmds=$lt_shrext_cmds\n\n# The commands to extract the exported symbol list from a shared archive.\nextract_expsyms_cmds=$lt_extract_expsyms_cmds\n\n# Variables whose values should be saved in libtool wrapper scripts and\n# restored at link time.\nvariables_saved_for_relink=$lt_variables_saved_for_relink\n\n# Do we need the \"lib\" prefix for modules?\nneed_lib_prefix=$need_lib_prefix\n\n# Do we need a version for libraries?\nneed_version=$need_version\n\n# Library versioning type.\nversion_type=$version_type\n\n# Shared library runtime path variable.\nrunpath_var=$runpath_var\n\n# Shared library path variable.\nshlibpath_var=$shlibpath_var\n\n# Is shlibpath searched before the hard-coded library search path?\nshlibpath_overrides_runpath=$shlibpath_overrides_runpath\n\n# Format of library name prefix.\nlibname_spec=$lt_libname_spec\n\n# List of archive names.  First name is the real one, the rest are links.\n# The last name is the one that the linker finds with -lNAME\nlibrary_names_spec=$lt_library_names_spec\n\n# The coded name of the library, if different from the real name.\nsoname_spec=$lt_soname_spec\n\n# Permission mode override for installation of shared libraries.\ninstall_override_mode=$lt_install_override_mode\n\n# Command to use after installation of a shared archive.\npostinstall_cmds=$lt_postinstall_cmds\n\n# Command to use after uninstallation of a shared archive.\npostuninstall_cmds=$lt_postuninstall_cmds\n\n# Commands used to finish a libtool library installation in a directory.\nfinish_cmds=$lt_finish_cmds\n\n# As \"finish_cmds\", except a single script fragment to be evaled but\n# not shown.\nfinish_eval=$lt_finish_eval\n\n# Whether we should hardcode library paths into libraries.\nhardcode_into_libs=$hardcode_into_libs\n\n# Compile-time system search path for libraries.\nsys_lib_search_path_spec=$lt_sys_lib_search_path_spec\n\n# Detected run-time system search path for libraries.\nsys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path\n\n# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.\nconfigure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path\n\n# Whether dlopen is supported.\ndlopen_support=$enable_dlopen\n\n# Whether dlopen of programs is supported.\ndlopen_self=$enable_dlopen_self\n\n# Whether dlopen of statically linked programs is supported.\ndlopen_self_static=$enable_dlopen_self_static\n\n# Commands to strip libraries.\nold_striplib=$lt_old_striplib\nstriplib=$lt_striplib\n\n\n# The linker used to build libraries.\nLD=$lt_LD\n\n# How to create reloadable object files.\nreload_flag=$lt_reload_flag\nreload_cmds=$lt_reload_cmds\n\n# Commands used to build an old-style archive.\nold_archive_cmds=$lt_old_archive_cmds\n\n# A language specific compiler.\nCC=$lt_compiler\n\n# Is the compiler the GNU compiler?\nwith_gcc=$GCC\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag\n\n# Additional compiler flags for building library objects.\npic_flag=$lt_lt_prog_compiler_pic\n\n# How to pass a linker flag through the compiler.\nwl=$lt_lt_prog_compiler_wl\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=$lt_lt_prog_compiler_static\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=$lt_lt_cv_prog_compiler_c_o\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=$archive_cmds_need_lc\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=$lt_export_dynamic_flag_spec\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=$lt_whole_archive_flag_spec\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=$lt_compiler_needs_object\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=$lt_old_archive_from_new_cmds\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds\n\n# Commands used to build a shared archive.\narchive_cmds=$lt_archive_cmds\narchive_expsym_cmds=$lt_archive_expsym_cmds\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=$lt_module_cmds\nmodule_expsym_cmds=$lt_module_expsym_cmds\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=$lt_with_gnu_ld\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=$lt_allow_undefined_flag\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=$lt_no_undefined_flag\n\n# Flag to hardcode \\$libdir into a binary during linking.\n# This must work even if \\$libdir does not exist\nhardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=$lt_hardcode_libdir_separator\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=$hardcode_direct\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting \\$shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=$hardcode_direct_absolute\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=$hardcode_minus_L\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=$hardcode_shlibpath_var\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=$hardcode_automatic\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=$inherit_rpath\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=$link_all_deplibs\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=$always_export_symbols\n\n# The commands to list exported symbols.\nexport_symbols_cmds=$lt_export_symbols_cmds\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=$lt_exclude_expsyms\n\n# Symbols that must always be exported.\ninclude_expsyms=$lt_include_expsyms\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=$lt_prelink_cmds\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=$lt_postlink_cmds\n\n# Specify filename containing input files.\nfile_list_spec=$lt_file_list_spec\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=$hardcode_action\n\n# ### END LIBTOOL CONFIG\n\n_LT_EOF\n\n    cat <<'_LT_EOF' >> \"$cfgfile\"\n\n# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n\n# ### END FUNCTIONS SHARED WITH CONFIGURE\n\n_LT_EOF\n\n  case $host_os in\n  aix3*)\n    cat <<\\_LT_EOF >> \"$cfgfile\"\n# AIX sometimes has problems with the GCC collect2 program.  For some\n# reason, if we set the COLLECT_NAMES environment variable, the problems\n# vanish in a puff of smoke.\nif test set != \"${COLLECT_NAMES+set}\"; then\n  COLLECT_NAMES=\n  export COLLECT_NAMES\nfi\n_LT_EOF\n    ;;\n  esac\n\n\nltmain=$ac_aux_dir/ltmain.sh\n\n\n  # We use sed instead of cat because bash on DJGPP gets confused if\n  # if finds mixed CR/LF and LF-only lines.  Since sed operates in\n  # text mode, it properly converts lines to CR/LF.  This bash problem\n  # is reportedly fixed, but why not run on old versions too?\n  sed '$q' \"$ltmain\" >> \"$cfgfile\" \\\n     || (rm -f \"$cfgfile\"; exit 1)\n\n   mv -f \"$cfgfile\" \"$ofile\" ||\n    (rm -f \"$ofile\" && cp \"$cfgfile\" \"$ofile\" && rm -f \"$cfgfile\")\n  chmod +x \"$ofile\"\n\n ;;\n\n  esac\ndone # for ac_tag\n\n\nas_fn_exit 0\n_ACEOF\nac_clean_files=$ac_clean_files_save\n\ntest $ac_write_fail = 0 ||\n  as_fn_error $? \"write failure creating $CONFIG_STATUS\" \"$LINENO\" 5\n\n\n# configure is writing to config.log, and then calls config.status.\n# config.status does its own redirection, appending to config.log.\n# Unfortunately, on DOS this fails, as config.log is still kept open\n# by configure, so config.status won't be able to write to it; its\n# output is simply discarded.  So we exec the FD to /dev/null,\n# effectively closing config.log, so it can be properly (re)opened and\n# appended to by config.status.  When coming back to configure, we\n# need to make the FD available again.\nif test \"$no_create\" != yes; then\n  ac_cs_success=:\n  ac_config_status_args=\n  test \"$silent\" = yes &&\n    ac_config_status_args=\"$ac_config_status_args --quiet\"\n  exec 5>/dev/null\n  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false\n  exec 5>>config.log\n  # Use ||, not &&, to avoid exiting from the if with $? = 1, which\n  # would make configure fail if this is the last instruction.\n  $ac_cs_success || as_fn_exit 1\nfi\nif test -n \"$ac_unrecognized_opts\" && test \"$enable_option_checking\" != no; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts\" >&5\n$as_echo \"$as_me: WARNING: unrecognized options: $ac_unrecognized_opts\" >&2;}\nfi\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/configure.ac",
    "content": "dnl Copyright (C) 2000-2003, 2005-2009, 2016 Free Software Foundation, Inc.\ndnl This file is part of the GNU CHARSET Library.\ndnl\ndnl The GNU CHARSET Library is free software; you can redistribute it and/or\ndnl modify it under the terms of the GNU Library General Public License as\ndnl published by the Free Software Foundation; either version 2 of the\ndnl License, or (at your option) any later version.\ndnl\ndnl The GNU CHARSET Library is distributed in the hope that it will be useful,\ndnl but WITHOUT ANY WARRANTY; without even the implied warranty of\ndnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\ndnl Library General Public License for more details.\ndnl\ndnl You should have received a copy of the GNU Library General Public License\ndnl along with the GNU CHARSET Library; see the file COPYING.LIB.  If not,\ndnl see <http://www.gnu.org/licenses/>.\n\nAC_PREREQ([2.60])\nAC_INIT([libcharset], [1.4])\nAC_CONFIG_SRCDIR([lib/localcharset.c])\nAC_CONFIG_AUX_DIR([build-aux])\nAC_CONFIG_HEADER([config.h])\nAC_PROG_MAKE_SET\n\ndnl           checks for basic programs\n\nAC_PROG_CC\nAC_PROG_CPP\nAC_PROG_INSTALL\n\ndnl           check for host type\n\nAC_CANONICAL_HOST\n\ndnl           checks for installer options\n\ngl_RELOCATABLE_LIBRARY\n\ndnl           checks for programs\n\ndnl           checks for UNIX variants that set DEFS\n\nAC_USE_SYSTEM_EXTENSIONS\n\ndnl           checks for compiler output filename suffixes\n\nAC_OBJEXT\nAC_EXEEXT\n\ndnl           check for build configuration\n\nLT_INIT([win32-dll])\ngl_VISIBILITY\n\ndnl           checks for header files and functions\n\nAM_LANGINFO_CODESET\ngl_FCNTL_O_FLAGS\ngl_GLIBC21\nAC_CHECK_FUNCS([setlocale])\n\nAC_CONFIG_FILES([Makefile])\nAC_CONFIG_FILES([lib/Makefile])\nAC_CONFIG_FILES([include/localcharset.h:include/localcharset.h.build.in])\nAC_CONFIG_FILES([include/localcharset.h.inst:include/localcharset.h.in])\nAC_OUTPUT\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/djgpp/Makefile.maint",
    "content": "# Maintainer's Makefile                                         -*-Makefile-*-\n\ntop_srcdir = ..\nsrcdir = .\n\nSHELL = /bin/sh\n\nall: README fnchange.lst\n\nfnchange.lst: fnchange.in $(top_srcdir)/configure.ac\n\trm -f $@; \\\n\tPACKAGE=`grep \"^PACKAGE=\" $(top_srcdir)/configure.ac | sed -e 's/^PACKAGE=//'`; \\\n\tVERSION=`grep \"^VERSION=\" $(top_srcdir)/configure.ac | sed -e 's/^VERSION=//'`; \\\n\tsed \\\n\t    -e '/^#/d' \\\n\t    -e \"s/@V@/$${PACKAGE}-$${VERSION}/g\" \\\n\t  $(srcdir)/fnchange.in > t-$@\n\tmv t-$@ $@\n\nREADME: README.in $(top_srcdir)/configure.ac\n\trm -f $@; \\\n\tPACKAGE=`grep \"^PACKAGE=\" $(top_srcdir)/configure.ac | sed -e 's/^PACKAGE=//'`; \\\n\tVERSION=`grep \"^VERSION=\" $(top_srcdir)/configure.ac | sed -e 's/^VERSION=//'`; \\\n\tpackageversion=`echo \"$${VERSION}\" | sed 's/\\.//g'`; \\\n\ttreeversion=`echo \"$${VERSION}\" | sed 's/\\.//g'`; \\\n\tsed \\\n\t    -e \"s/@V@/$${PACKAGE}-$${VERSION}/g\" \\\n\t    -e \"s/@VER@/$${VERSION}/g\" \\\n\t    -e \"s/@packageversion@/$$packageversion/g\" \\\n\t    -e \"s/@treeversion@/$$treeversion/g\" \\\n\t  $(srcdir)/README.in > t-$@\n\tmv t-$@ $@\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/djgpp/README",
    "content": "This is a port of GNU Libiconv 1.11 to MSDOS/DJGPP.\n\n1.:     DJGPP specific changes.\n        =======================\n        There are no DJGPP specific changes. This package should\n        configure and compile out-of-the-box.\n        Please read the documentation to become familiar with this\n        product.\n\n\n2.:     Installing the binary package.\n        ==============================\n\n2.1.:   Copy the binary distribution into the top DJGPP installation\n        directory and unzip the binary distribution running *ONE* of\n        the following commands:\n          unzip32 licv111b.zip      or\n          djtarx licv111b.zip       or\n          pkunzip -d licv111b.zip\n\n\n\n3.:     Building the binaries from sources.\n        ===================================\n\n3.1.:   To build the binaries you will need the following binary packages:\n          djdev203.zip, bsh204b.zip, gcc2952b.zip,\n          bnu210b.zip, mak3791b.zip, fil316b.zip,\n          shl112b.zip, txt20b.zip, txi40b.zip,\n          grep24b.zip and sed302b.zip\n\n\n        All this packages can be found in the v2gnu directory of any\n        Simtel.NET mirror.\n        You will need bsh204b.zip and *NOT* a prior version or the build will fail.\n        The same applies to djdev203.zip. You *MUST* use the updated versions of\n        fil316b.zip (date: 2000-05-30) and shl112b.zip (date: 2000-08-11). This\n        updated versions have been recompiled with djdev203.zip and know about\n        the \"/dev/env\" functionality introduced with djdev203.zip. All the other\n        packages are the ones I have used to build the binaries from this sources.\n        Previuos and/or later versions of this packages may do the job as well but\n        I have not tested this.\n\n3.2.:   Create a temporary directory and copy the source package: licv111s.zip\n        into the temporary directory. If you download the source distribution\n        from one of the DJGPP archives, just unzip it preserving the directory\n        structure, runnig ONE of the following commands:\n          unzip32 licv111s.zip      or\n          djtarx licv111s.zip       or\n          pkunzip -d licv111s.zip\n\n        Source distributions downloaded from one of the GNU FTP sites need\n        some more work to unpack.  First, you MUST use the `djtar' program to\n        unzip the package.  That's because some file names in the official\n        distributions need to be changed to avoid problems on the various\n        platforms supported by DJGPP.  `djtar' can rename files on the fly\n        given a file with name mappings.  The distribution includes a file\n        `djgpp/fnchange.lst' with the necessary mappings.  So you need first\n        to retrieve that file, and then invoke `djtar' to unpack the\n        distribution.  Here's how:\n\n          djtar -x -p -o libiconv-1.11/djgpp/fnchange.lst libiconv-1.11.tar.gz > lst\n          djtar -x -n lst libiconv-1.11.tar.gz\n\n        (The name of the distribution archive and the top-level directory will\n        be different for versions other than 1.11.)\n\n\n3.3.:   The package is preconfigured for djdev203. To build the products you\n        should run the following command:\n          make\n\n        After the compilation has finished, you can check the products\n        running the command:\n          make check\n\n        To install the products run the command:\n          make install\n\n        This will install the products (iconv.exe iconv.h localcharset.h libconv.a\n        libcharset.a iconv.1 iconv.3 iconv_open.3 iconv_close.3) into your DJGPP\n        installation tree. As usual, prefix is defined as \"/dev/env/DJDIR\".\n        If you prefer to install into same other directory run the command:\n          make install prefix=z:/some/other/dir\n\n        Of course, you should replace \"z:/some/other/dir\" by an appropriate path\n        that will meet your requeriments.\n\n3.4.:   If you need/want to reconfigure the package you will have to run the\n        following commands:\n          make distclean\n          djgpp\\config\n\n        Please note that you *MUST* use the \"distclean\" option or the config.cache\n        file will *NOT* be deleted. In this case you are *NOT* reconfiguring\n        because the configuration informations is read from the cache file instead\n        of being newly computed.\n        To build the programs in a directory other than where the sources are,\n        you must add the parameter that specifies the source directory,\n        e.g:\n          x:\\src\\gnu\\libiconv.16\\djgpp\\config x:/src/gnu/libiconv.16\n\n        Lets assume you want to build the binaries in a directory placed on a \n        different drive (z:\\build in this case) from where the sources are,\n        then you will run the following commands:\n          z:\n          md \\build\n          cd \\build\n          x:\\src\\gnu\\libiconv.16\\djgpp\\config x:/src/gnu/libiconv.16\n\n        You *MUST* use forward slashes to specify the source directory.\n        After having configured the package run the folowing commands to create\n        the binaries and docs and install them:\n          make\n          make check\n          make install\n\n        Send suggestions and bug reports concerning the DJGPP port to\n        comp.os.msdos.djgpp or djgpp@delorie.com. Libiconv specific bugs\n        must be reported to Bruno Haible <haible@clisp.cons.org>.\n\n\n          Guerrero, Juan Manuel <st001906@hrz1.hrz.tu-darmstadt.de>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/djgpp/README.in",
    "content": "This is a port of GNU Libcharset @VER@ to MSDOS/DJGPP.\n\n1.:     DJGPP specific changes.\n        =======================\n        There are no DJGPP specific changes. This package should\n        configure and compile out-of-the-box.\n        Please read the documentation to become familiar with this\n        product.\n\n\n2.:     Installing the binary package.\n        ==============================\n\n2.1.:   Copy the binary distribution into the top DJGPP installation\n        directory and unzip the binary distribution running *ONE* of\n        the following commands:\n          unzip32 lcset@packageversion@b.zip      or\n          djtarx lcset@packageversion@b.zip       or\n          pkunzip -d lcset@packageversion@b.zip\n\n\n\n3.:     Building the binaries from sources.\n        ===================================\n\n3.1.:   To build the binaries you will need the following binary packages:\n          djdev203.zip (patchlevel 2),\n          bshNNNb.zip, gccNNNb.zip, bnuNNNb.zip, makNNNb.zip, filNNNb.zip,\n          shlNNNb.zip, txtNNNb.zip, txiNNNb.zip, grepNNNb.zip and sedNNNb.zip\n\n        NNN represents the latest version number of the binary packages. All\n        this packages can be found in the current/v2gnu/ directory of any\n        ftp.delorie.com mirror.\n\n3.2.:   Create a temporary directory and copy the source package: lcset@packageversion@s.zip\n        into the temporary directory. If you download the source distribution\n        from one of the DJGPP archives, just unzip it preserving the directory\n        structure, runnig ONE of the following commands:\n          unzip32 lcset@packageversion@s.zip      or\n          djtarx lcset@packageversion@s.zip       or\n          pkunzip -d lcset@packageversion@s.zip\n\n        Source distributions downloaded from one of the GNU FTP sites need\n        some more work to unpack. First, you MUST use the `djtar' program\n        to unzip the package. That's because some file names in the official\n        distributions need to be changed to avoid problems on the various\n        platforms supported by DJGPP. `djtar' can rename files on the fly\n        given a file with name mappings. The distribution includes a file\n        `djgpp/fnchange.lst' with the necessary mappings. So you need first\n        to retrieve that file, and then invoke `djtar' to unpack the\n        distribution. Here's how:\n\n          djtar -x -p -o @V@/djgpp/fnchange.lst @V@.tar.gz > lst\n          djtar -x -n lst @V@.tar.gz\n\n        (The name of the distribution archive and the top-level directory will\n        be different for versions other than @VER@.)\n\n\n3.3.:   If you have downloaded the source package from one of the GNU FTP sites\n        you will have to configure the package running the command:\n          djgpp\\config.bat\n\n3.4.:   If you have downloaded the source package from one of the delorie FTP\n        sites the package is already preconfigured for djdev203 or later. In\n        any case, to build the products you must run the following command:\n          make\n\n        After the compilation has finished, you can check the products\n        running the command:\n          make check\n\n        To install the products run the command:\n          make install\n\n        This will install the products (localcharset.h, libcharset.a) into your\n        DJGPP installation tree. As usual, prefix is defined as \"/dev/env/DJDIR\".\n        If you prefer to install into same other directory, run the command:\n          make install prefix=z:/some/other/dir\n\n        Of course, you should replace \"z:/some/other/dir\" by an appropriate path\n        that will meet your requeriments.\n\n\n3.5.:   If for some reason you want to reconfigure the package cd into the top\n        srcdir (libchset.@treeversion@) and run the following commands:\n          del djgpp\\config.cache\n          make distclean\n          djgpp\\config\n\n        Please note that you *MUST* delete the config.cache file in the djgpp\n        subdir or you will not really reconfigure the sources because the\n        configuration informations will be read from the cache file instead\n        of being newly computed.\n        To build the programs in a directory other than where the sources are,\n        you must add the parameter that specifies the source directory,\n        e.g:\n          x:\\src\\gnu\\libchset.@treeversion@\\djgpp\\config x:/src/gnu/libchset.@treeversion@\n\n        Lets assume you want to build the binaries in a directory placed on a \n        different drive (z:\\build in this case) from where the sources are,\n        then you will run the following commands:\n          z:\n          md \\build\n          cd \\build\n          x:\\src\\gnu\\libchset.@treeversion@\\djgpp\\config x:/src/gnu/libchset.@treeversion@\n\n        You *MUST* use forward slashes to specify the source directory.\n        After having configured the package run the folowing commands to create\n        the binaries and docs and install them:\n          make\n          make check\n          make install\n\n        Send suggestions and bug reports concerning the DJGPP port to\n        comp.os.msdos.djgpp or djgpp@delorie.com. Libcharset specific\n        bugs must be reported to <bug-gnu-libiconv@gnu.org>.\n\n\n          Guerrero, Juan Manuel <juan.guerrero@gmx.de>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/djgpp/config.bat",
    "content": "@echo off\necho Configuring GNU libcharset for DJGPP v2.x...\nRem The SmallEnv tests protect against fixed and too small size\nRem of the environment in stock DOS shell.\n\nRem Find out if NLS is wanted or not,\nRem if dependency-tracking is wanted or not,\nRem if caching is wanted or not\nRem and where the sources are.\nRem We always default to NLS support,\nRem no dependency tracking\nRem and to in place configuration.\nset ARGS=\nset NLS=disabled\nif not \"%NLS%\" == \"disabled\" goto SmallEnv\nset CACHING=enabled\nif not \"%CACHING%\" == \"enabled\" goto SmallEnv\nset DEPENDENCY_TRACKING=disabled\nif not \"%DEPENDENCY_TRACKING%\" == \"disabled\" goto SmallEnv\nset LIBICONV_PREFIX=disabled\nif not \"%LIBICONV_PREFIX%\" == \"disabled\" goto SmallEnv\nset LIBINTL_PREFIX=disabled\nif not \"%LIBINTL_PREFIX%\" == \"disabled\" goto SmallEnv\nset HTML=enabled\nif not \"%HTML%\" == \"enabled\" goto SmallEnv\nset XSRC=.\nif not \"%XSRC%\" == \".\" goto SmallEnv\n\nRem Loop over all arguments.\nRem Special arguments are: NLS, XSRC, CACHE, STATIC_LIBS, LIBICONV_PREFIX, LIBINTL_PREFIX and DEPS.\nRem All other arguments are stored into ARGS.\n:ArgLoop\nif \"%1\" == \"nls\" goto NextArgument\nif \"%1\" == \"NLS\" goto NextArgument\nif \"%1\" == \"no-nls\" goto NoNLS\nif \"%1\" == \"no-NLS\" goto NoNLS\nif \"%1\" == \"NO-NLS\" goto NoNLS\ngoto CachingOption\n:NoNLS\nif \"%1\" == \"no-nls\" set NLS=disabled\nif \"%1\" == \"no-NLS\" set NLS=disabled\nif \"%1\" == \"NO-NLS\" set NLS=disabled\nif not \"%NLS%\" == \"disabled\" goto SmallEnv\ngoto NextArgument\n:CachingOption\nif \"%1\" == \"cache\" goto NextArgument\nif \"%1\" == \"CACHE\" goto NextArgument\nif \"%1\" == \"no-cache\" goto NoCaching\nif \"%1\" == \"no-CACHE\" goto NoCaching\nif \"%1\" == \"NO-CACHE\" goto NoCaching\ngoto DependencyOption\n:NoCaching\nif \"%1\" == \"no-cache\" set CACHING=disabled\nif \"%1\" == \"no-CACHE\" set CACHING=disabled\nif \"%1\" == \"NO-CACHE\" set CACHING=disabled\nif not \"%CACHING%\" == \"disabled\" goto SmallEnv\ngoto NextArgument\n:DependencyOption\nif \"%1\" == \"no-dep\" goto NextArgument\nif \"%1\" == \"no-DEP\" goto NextArgument\nif \"%1\" == \"NO-DEP\" goto NextArgument\nif \"%1\" == \"dep\" goto DependecyTraking\nif \"%1\" == \"DEP\" goto DependecyTraking\ngoto LibiconvPrefixOption\n:DependecyTraking\nif \"%1\" == \"dep\" set DEPENDENCY_TRACKING=enabled\nif \"%1\" == \"DEP\" set DEPENDENCY_TRACKING=enabled\nif not \"%DEPENDENCY_TRACKING%\" == \"enabled\" goto SmallEnv\ngoto NextArgument\n:LibiconvPrefixOption\nif \"%1\" == \"no-libiconvprefix\" goto NextArgument\nif \"%1\" == \"no-LIBICONVPREFIX\" goto NextArgument\nif \"%1\" == \"NO-LIBICONVPREFIX\" goto NextArgument\nif \"%1\" == \"libiconvprefix\" goto WithLibiconvPrefix\nif \"%1\" == \"LIBICONVPREFIX\" goto WithLibiconvPrefix\ngoto LibintlPrefixOption\n:WithLibiconvPrefix\nif \"%1\" == \"libiconvprefix\" set LIBICONV_PREFIX=enabled\nif \"%1\" == \"LIBICONVPREFIX\" set LIBICONV_PREFIX=enabled\nif not \"%LIBICONV_PREFIX%\" == \"enabled\" goto SmallEnv\ngoto NextArgument\n:LibintlPrefixOption\nif \"%1\" == \"no-libiconvprefix\" goto NextArgument\nif \"%1\" == \"no-LIBICONVPREFIX\" goto NextArgument\nif \"%1\" == \"NO-LIBICONVPREFIX\" goto NextArgument\nif \"%1\" == \"libintlprefix\" goto _WithLibintlPrefix\nif \"%1\" == \"LIBINTLPREFIX\" goto _WithLibintlPrefix\ngoto HTMLOption\n:_WithLibintlPrefix\nif \"%1\" == \"libintlprefix\" set LIBINTL_PREFIX=enabled\nif \"%1\" == \"LIBINTLPREFIX\" set LIBINTL_PREFIX=enabled\nif not \"%LIBINTL_PREFIX%\" == \"enabled\" goto SmallEnv\n:HTMLOption\nif \"%1\" == \"withhtml\" goto NextArgument\nif \"%1\" == \"withHTML\" goto NextArgument\nif \"%1\" == \"WITHHTML\" goto NextArgument\nif \"%1\" == \"withouthtml\" goto _WithoutHTML\nif \"%1\" == \"withoutHTML\" goto _WithoutHTML\nif \"%1\" == \"WITHOUTHTML\" goto _WithoutHTML\ngoto SrcDirOption\n:_WithoutHTML\nif \"%1\" == \"withouthtml\" set HTML=disabled\nif \"%1\" == \"withoutHTML\" set HTML=disabled\nif \"%1\" == \"WITHOUTHTML\" set HTML=disabled\nif not \"%HTML%\" == \"disabled\" goto SmallEnv\ngoto NextArgument\n:SrcDirOption\necho %1 | grep -q \"/\"\nif errorlevel 1 goto CollectArgument\nset XSRC=%1\nif not \"%XSRC%\" == \"%1\" goto SmallEnv\ngoto NextArgument\n:CollectArgument\nset _ARGS=#%ARGS%#%1#\nif not \"%_ARGS%\" == \"#%ARGS%#%1#\" goto SmallEnv\necho %_ARGS% | grep -q \"###\"\nif errorlevel 1 set ARGS=%ARGS% %1\nset _ARGS=\n:NextArgument\nshift\nif not \"%1\" == \"\" goto ArgLoop\n\nRem Create an arguments file for the configure script.\necho --srcdir=%XSRC% > arguments\nif \"%CACHING%\" == \"enabled\"              echo --cache-file=%XSRC%/djgpp/config.cache >> arguments\nif \"%DEPENDENCY_TRACKING%\" == \"enabled\"  echo --enable-dependency-tracking >> arguments\nif \"%DEPENDENCY_TRACKING%\" == \"disabled\" echo --disable-dependency-tracking >> arguments\nif \"%LIBICONV_PREFIX%\" == \"enabled\"      echo --with-libiconv-prefix >> arguments\nif \"%LIBICONV_PREFIX%\" == \"disabled\"     echo --without-libiconv-prefix >> arguments\nif \"%LIBINTL_PREFIX%\" == \"enabled\"       echo --with-libintl-prefix >> arguments\nif \"%LIBINTL_PREFIX%\" == \"disabled\"      echo --without-libintl-prefix >> arguments\nif \"%HTML%\" == \"enabled\"                 echo --enable-html >> arguments\nif \"%HTML%\" == \"disabled\"                echo --disable-html >> arguments\nif not \"%ARGS%\" == \"\"                    echo %ARGS% >> arguments\nset ARGS=\nset CACHING=\nset DEPENDENCY_TRACKING=\nset LIBICONV_PREFIX=\nset LIBINTL_PREFIX=\nset HTML=\n\nRem Find out where the sources are\nif \"%XSRC%\" == \".\" goto InPlace\n\n:NotInPlace\nredir -e /dev/null update %XSRC%/configure.org ./configure\ntest -f ./configure\nif errorlevel 1 update %XSRC%/configure ./configure\n\n:InPlace\nRem Update configuration files\necho Updating configuration scripts...\ntest -f ./configure.org\nif errorlevel 1 update ./configure ./configure.org\nsed -f %XSRC%/djgpp/config.sed ./configure.org > configure\nif errorlevel 1 goto SedError\n\nRem Make sure they have a config.site file\nset CONFIG_SITE=%XSRC%/djgpp/config.site\nif not \"%CONFIG_SITE%\" == \"%XSRC%/djgpp/config.site\" goto SmallEnv\n\nRem Make sure crucial file names are not munged by unpacking\ntest -f %XSRC%/config.h.in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/config.h.in %XSRC%/config.h-in\ntest -f %XSRC%/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/config.h %XSRC%/config.h-in\ntest -f %XSRC%/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/configh.in %XSRC%/config.h-in\ntest -f %XSRC%/config.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/config_h.in %XSRC%/config.h-in\ntest -f %XSRC%/include/libcharset.h-in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/libcharset.h-in %XSRC%/include/libcharset.h-in\ntest -f %XSRC%/include/libcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/libcharset.h %XSRC%/include/libcharset.h-in\ntest -f %XSRC%/include/libcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/libcharseth.in %XSRC%/include/libcharset.h-in\ntest -f %XSRC%/include/libcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/libcharset_h.in %XSRC%/include/libcharset.h-in\ntest -f %XSRC%/include/localcharset.h-in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/localcharset.h-in %XSRC%/include/localcharset.h-in\ntest -f %XSRC%/include/localcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/localcharset.h %XSRC%/include/localcharset.h-in\ntest -f %XSRC%/include/localcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/localcharseth.in %XSRC%/include/localcharset.h-in\ntest -f %XSRC%/include/localcharset.h-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/localcharset_h.in %XSRC%/include/localcharset.h-in\ntest -f %XSRC%/include/localcharset.h.build.in\nif not errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/localcharset.h.build.in %XSRC%/include/localcharset.h-build-in\ntest -f %XSRC%/include/localcharset.h-build-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/localcharset.h %XSRC%/include/localcharset.h-build-in\ntest -f %XSRC%/include/localcharset.h-build-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/localcharseth.build %XSRC%/include/localcharset.h-build-in\ntest -f %XSRC%/include/localcharset.h-build-in\nif errorlevel 1 redir -e /dev/null mv -f %XSRC%/include/localcharset_h.build %XSRC%/include/localcharset.h-build-in\n\nRem This is required because DOS/Windows are case-insensitive\nRem to file names, and \"make install\" will do nothing if Make\nRem finds a file called `install'.\nif exist INSTALL mv -f INSTALL INSTALL.txt\n\nRem Set SHELL to a sane default or some configure tests stop working\nRem if the package is configured across partitions.\nif not \"%SHELL%\" == \"\" goto HomeName\nset SHELL=/bin/sh\nif not \"%SHELL%\" == \"/bin/sh\" goto SmallEnv\necho No SHELL found in the environment, using default value\n\n:HomeName\nRem Set HOME to a sane default so configure stops complaining.\nif not \"%HOME%\" == \"\" goto HostName\nset HOME=%XSRC%/djgpp\nif not \"%HOME%\" == \"%XSRC%/djgpp\" goto SmallEnv\necho No HOME found in the environment, using default value\n\n:HostName\nRem Set HOSTNAME so it shows in config.status\nif not \"%HOSTNAME%\" == \"\" goto hostdone\nif \"%windir%\" == \"\" goto msdos\nset OS=MS-Windows\nif not \"%OS%\" == \"MS-Windows\" goto SmallEnv\ngoto haveos\n:msdos\nset OS=MS-DOS\nif not \"%OS%\" == \"MS-DOS\" goto SmallEnv\n:haveos\nif not \"%USERNAME%\" == \"\" goto haveuname\nif not \"%USER%\" == \"\" goto haveuser\necho No USERNAME and no USER found in the environment, using default values\nset HOSTNAME=Unknown PC\nif not \"%HOSTNAME%\" == \"Unknown PC\" goto SmallEnv\ngoto userdone\n:haveuser\nset HOSTNAME=%USER%'s PC\nif not \"%HOSTNAME%\" == \"%USER%'s PC\" goto SmallEnv\ngoto userdone\n:haveuname\nset HOSTNAME=%USERNAME%'s PC\nif not \"%HOSTNAME%\" == \"%USERNAME%'s PC\" goto SmallEnv\n:userdone\nset _HOSTNAME=%HOSTNAME%, %OS%\nif not \"%_HOSTNAME%\" == \"%HOSTNAME%, %OS%\" goto SmallEnv\nset HOSTNAME=%_HOSTNAME%\n:hostdone\nset _HOSTNAME=\nset OS=\n\nRem install-sh is required by the configure script but clashes with the\nRem various Makefile install-foo targets, so we MUST have it before the\nRem script runs and rename it afterwards\ntest -f %XSRC%/install-sh\nif not errorlevel 1 goto NoRen0\ntest -f %XSRC%/install-sh.sh\nif not errorlevel 1 mv -f %XSRC%/install-sh.sh %XSRC%/install-sh\n:NoRen0\n\nif \"%NLS%\" == \"disabled\" goto WithoutNLS\n\n:WithNLS\ntest -d %XSRC%/po\nif errorlevel 1 goto WithoutNLS\n\nRem Check for the needed libraries and binaries.\ntest -x /dev/env/DJDIR/bin/msgfmt.exe\nif not errorlevel 0 goto MissingNLSTools\ntest -x /dev/env/DJDIR/bin/xgettext.exe\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/include/libcharset.h\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/lib/libcharset.a\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/include/iconv.h\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/lib/libiconv.a\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/include/libintl.h\nif not errorlevel 0 goto MissingNLSTools\ntest -f /dev/env/DJDIR/lib/libintl.a\nif not errorlevel 0 goto MissingNLSTools\n\nRem Recreate the files in the %XSRC%/po subdir with our ported tools.\nredir -e /dev/null rm %XSRC%/po/*.gmo\nredir -e /dev/null rm %XSRC%/po/libcharset.pot\nredir -e /dev/null rm %XSRC%/po/cat-id-tbl.c\nredir -e /dev/null rm %XSRC%/po/stamp-cat-id\n\nRem Update the arguments file for the configure script.\nRem We prefer without-included-gettext because libintl.a from gettext package\nRem is the only one that is garanteed to have been ported to DJGPP.\necho --enable-nls --without-included-gettext >> arguments\ngoto ConfigurePackage\n\n:MissingNLSTools\necho Needed libs/tools for NLS not found. Configuring without NLS.\n:WithoutNLS\nRem Update the arguments file for the configure script.\necho --disable-nls >> arguments\n\n:ConfigurePackage\necho Running the ./configure script...\nsh ./configure @arguments\nif errorlevel 1 goto CfgError\nrm arguments\necho Done.\ngoto End\n\n:SedError\necho ./configure script editing failed!\ngoto End\n\n:CfgError\necho ./configure script exited abnormally!\ngoto End\n\n:SmallEnv\necho Your environment size is too small.  Enlarge it and run me again.\necho Configuration NOT done!\n\n:End\ntest -f %XSRC%/install-sh.sh\nif not errorlevel 1 goto NoRen1\ntest -f %XSRC%/install-sh\nif not errorlevel 1 mv -f %XSRC%/install-sh %XSRC%/install-sh.sh\n:NoRen1\nset CONFIG_SITE=\nset HOSTNAME=\nset XSRC=\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/djgpp/config.sed",
    "content": "# DJGPP specific configuration file.\n# Sed script for additional DJGPP specific editing\n# of the configure script generated by autoconf 2.60.\n\n\n# Additional editing of Makefiles\n/^\".*ac_file_inputs.*tmp\\/out$/ a\\\ncat > \"$tmp/subs-3.sed\" << eof_djgpp\\\n# DJGPP specific Makefile changes.\\\ns,\\\\.deps,_deps,g\\\ns,\\\\.libs,_libs,g\\\ns,\\\\.new\\\\.,_new.,g\\\ns,\\\\.old\\\\.,_old.,g\\\ns,\\\\.tab\\\\.,_tab.,g\\\ns,config\\\\.h\\\\.in,config.h-in,g\\\ns,\\\\.\\\\([1-9]\\\\)\\\\.html,.\\\\1-html,g\\\ns,\\\\.html,-html,g\\\ns,libcharset\\\\.h\\\\.in,libcharset.h-in,g\\\ns,localcharset\\\\.h\\\\.inst,localcharset_h.ins,g\\\ns,localcharset\\\\.h\\\\.in,localcharset.h-in,g\\\ns,localcharset\\\\.h\\\\.build\\\\.in,localcharset.h-build-in,g\\\ns,Makefile\\\\.am\\\\.in,Makefile.am-in,g\\\ns,Makefile\\\\.in\\\\.in,Makefile.in-in,g\\\n/^\\\\.y\\\\.c:/,/^$/ {\\\n  /\\\\\\$(YACCCOMPILE)/ {\\\n    a\\\\\\\\\\\n\t-@test -f y.tab.c && mv -f y.tab.c y_tab.c\\\\\\\\\\\n\t-@test -f y.tab.h && mv -f y.tab.h y_tab.h\\\n  }\\\n}\\\neof_djgpp\\\nsed -f \"\\$tmp/subs-3.sed\" \\$tmp/out > \\$tmp/out.djgpp\\\nmv -f \\$tmp/out.djgpp \\$tmp/out\n\n\n# Rename config.h.in into config.h-in\n/ac_config_headers=/s|config\\.h|&:config.h-in|g\n/CONFIG_HEADERS=/ s|config\\.h\\.in|&:config.h-in|2\n\n# Rename localcharset.h.build.in, localcharset.h.inst, localcharset.h.in and Makefile.in.in into localcharset.h-build-in, localcharset_h.ins, localcharset.h-in and Makefile.in-in\n/ac_config_files=/ {\n  s|localcharset\\.h\\.build\\.in|localcharset.h-build-in|\n  s|localcharset\\.h\\.inst|localcharset_h.ins|\n  s|localcharset\\.h\\.in|localcharset.h-in|\n  s|po/Makefile\\.in|&:po/Makefile.in-in|\n}\n/CONFIG_FILES=/ {\n  s|localcharset\\.h\\.build\\.in|localcharset.h-build-in|\n  s|localcharset\\.h\\.inst|localcharset_h.ins|\n  s|localcharset\\.h\\.in|localcharset.h-in|\n  s|po/Makefile\\.in|&:po/Makefile.in-in|2\n}\n\n\n# We always use _deps and _libs instead of .deps and .libs, because\n# the latter is an invalid name on 8+3 MS-DOS file system.  This makes\n# the generated Makefiles good for every DJGPP installation, not only\n# the one where the package was configured (which could happen to be\n# a Windows box, where leading dots in file names are allowed).\ns,\\.deps,_deps,g\ns,\\.libs,_libs,g\n/^rmdir[\t ]*\\.tst/ i\\\nam__leading_dot=_\n\n# Replace (command) > /dev/null with `command > /dev/null`, since\n# parenthesized commands always return zero status in the ported Bash,\n# even if the named command doesn't exist\n/if ([^|;`]*null/{\n  s,(,`,\n  s,),,\n  /null[\t ]*2>&1/ s,2>&1,&`,\n  /null.*null/ s,null.*null,&`,\n  /null.*null/ !{\n    /null[\t ]*2>&1/ !s,null,&`,\n  }\n}\n\n# DOS-style absolute file names should be supported as well\n/\\*) top_srcdir=/s,/\\*,[\\\\\\\\/]* | ?:[\\\\\\\\/]*,\n\n# The following two items are changes needed for configuring\n# and compiling across partitions.\n# 1) The given srcdir value is always translated from the\n#    \"x:\" syntax into \"/dev/x\" syntax while we run configure.\n/^[\t ]*-srcdir=\\*.*$/ a\\\n    ac_optarg=`echo \"$ac_optarg\" | sed \"s,^\\\\([A-Za-z]\\\\):,/dev/\\\\1,\"`\n/set X `ls -Lt \\$srcdir/ i\\\n   if `echo $srcdir | grep \"^/dev/\" - > /dev/null`; then\\\n     srcdir=`echo \"$srcdir\" | sed -e \"s%^/dev/%%\" -e \"s%/%:/%\"`\\\n   fi\n\n# Autoconf 2.52e generated configure scripts\n# write absolute paths into Makefiles and bison.in\n# making them useless for DJGPP installations for\n# which the package has not been configured for.\n/MISSING=/,/^$/ {\n  /^fi$/ a\\\nam_missing_run=`echo \"$am_missing_run\" | sed 's%/dev/.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%${top_srcdir}%;s%.:.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%${top_srcdir}%'`\n}\n/^install_sh=/a\\\ninstall_sh=`echo \"$install_sh\" | sed 's%/dev/.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%${top_srcdir}%;s%.:.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%${top_srcdir}%'`\n\n# This will only work if the assumption that the\n# testsuite is ran from the following path:\n#   ${top_srcdir}/tests/testsuite.dir\n# holds. The explicit names are of no importance.\n#   ../../. == ${top_srcdir}\n#/^esac$/,/^ac_abs_srcdir=/ {\n/^ac_abs_srcdir=/ i\\\nac_abs_builddir=`echo \"$ac_abs_builddir\" | sed \"s%/dev/.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../.%;s%.:.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../.%\"`\\\nac_abs_top_builddir=`echo \"$ac_abs_top_builddir\" | sed \"s%/dev/.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../..%;s%.:.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../..%\"`\\\nac_abs_top_srcdir=`echo \"$ac_abs_top_srcdir\" | sed \"s%/dev/.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../..%;s%.:.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../..%\"`\n#ac_abs_srcdir=`echo \"$ac_abs_srcdir\" | sed \"s%/dev/.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../.%;s%.:.*/libcharset[-_0-9]\\\\{1,1\\\\}[-.0-9A-Za-z+]*%../../.%\"`\n/^ac_abs_srcdir=/ a\\\nfor dj_dir in $ac_abs_builddir $ac_abs_top_builddir $ac_abs_top_srcdir $ac_abs_srcdir\\\ndo\\\n  ac_abs_builddir=`echo \"$ac_abs_builddir\" | sed \"s%//%/%g\"`\\\n  ac_abs_top_builddir=`echo \"$ac_abs_top_builddir\" | sed \"s%//%/%g\"`\\\n  ac_abs_top_srcdir=`echo \"$ac_abs_top_srcdir\" | sed \"s%//%/%g\"`\\\n  ac_abs_srcdir=`echo \"$ac_abs_srcdir\" | sed \"s%//%/%g\"`\\\ndone\n\n# Add DJGPP version information.\n/^#define VERSION/ s/\\$VERSION/&  (DJGPP port (r1))/\n\n# We need makeinfo to make the html formated docs.\n/\\$am_missing_run[\t ]*makeinfo/ s,\\$am_missing_run,,\n\n# The path to the FORTRAN compiler and libraries\n# shall contain no absolute path reference so it\n# will be good for all djgpp installations.\n/^FLIBS=\"\\$ac_cv_flibs\"/ i\\\nac_djgpp_path=`echo \"$DJDIR\" | sed 's%\\\\\\\\\\\\%/%g' | tr $as_cr_LETTERS $as_cr_letters`\\\nac_cv_flibs=`echo \"$ac_cv_flibs\" | sed \"s%-L$ac_djgpp_path%-L/dev/env/DJDIR%g\"`\n\n# Autoconf generated configure scripts write absolute\n# paths of certain header files into Makefiles making\n# them useless for DJGPP installations for which the\n# package has not been configured for.\n/^.*echo \"\\$as_me:\\$LINENO: result: \\$gl_cv_absolute_.*$/ {\nh\ns,^.*\\(gl_cv_absolute_\\)\\([a-z0-9_]*\\)\\(_h\\).*$,\\1\\2\\3=`echo $\\1\\2\\3 | sed \"s%[^:]:.*/include/%/dev/env/DJDIR/include/%\"`,\nG\n}\n/^.*echo \"\\$as_me:\\$LINENO: result: \\$gl_cv_full_.*$/ {\nh\ns,^.*\\(gl_cv_full_\\)\\([a-z0-9_]*\\)\\(_h\\).*$,\\1\\2\\3=`echo $\\1\\2\\3 | sed \"s%[^:]:.*/include/%/dev/env/DJDIR/include/%\"`,\nG\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/djgpp/config.site",
    "content": "#! /bin/sh\n\n# This is the config.site file for configuring GNU packages\n# which are to be built with DJGPP tools.\n\n\n# Include the djgpp subdirectory in PATH, so that getconf is found\nPATH=\"$srcdir/djgpp:$PATH\"\n\n# These two variables are required, otherwise looking for\n# programs along the PATH will not work.\nPATH_SEPARATOR=:\nPATH_EXPAND=y\n\n# This is required in for \"test -f foo\" to find foo.exe\nexport TEST_FINDS_EXE=y\n\n# The root of the DJGPP tree serves as the default prefix\ntest \"x$prefix\" = xNONE && prefix='/dev/env/DJDIR'\n\n# This is required for config.status script to be run, since\n# ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh}\nCONFIG_SHELL=${CONFIG_SHELL='sh'}\n\n# These are set here so the generated Makefile's will be good\n# for every DJGPP installation, not only the one where the\n# package was configured.\n# $INSTALL must be an absolute path name, otherwise config.status\n# will try to prepend ./ and ../ to it when it goes into subdirs.\nINSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'}\nRANLIB=${RANLIB='ranlib'}\n#GMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'}\n#MSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'}\n#XGETTEXT=${XGETTEXT='/dev/env/DJDIR/bin/xgettext'}\nAWK=${AWK='gawk'}\n\n# A sane default for emacs.\nac_cv_path_EMACS=${EMACS='/dev/env/DJDIR/gnu/emacs/bin/emacs'}\n\n# A sane default for m4.\nac_cv_path_M4=${M4='/dev/env/DJDIR/bin/m4'}\n\n# A sane default for grep.\nac_cv_path_GREP=${GREP='/dev/env/DJDIR/bin/grep'}\n\n# A sane default for egrep.\nac_cv_path_EGREP=${EGREP='/dev/env/DJDIR/bin/egrep'}\n\n# A sane default for fgrep.\nac_cv_path_FGREP=${FGREP='/dev/env/DJDIR/bin/fgrep'}\n\n# A sane default for sed.\nlt_cv_path_SED=${SED='/dev/env/DJDIR/bin/sed'}\n\n# A sane default for mkdir.\nac_cv_path_mkdir=${MKDIR_P='/dev/env/DJDIR/bin/mkdir -p'}\n\n# These are set here so the generated libtool will be good\n# for every DJGPP installation, not only the one where the\n# package was configured.\nNM=${NM='nm'}\nLD=${LD='ld'}\n\n# Force the test for 'ln -s' to report 'cp -pf'.\nac_cv_prog_LN_S='cp -pf'\n\n# There is no fork and vfork functionality.\nac_cv_func_fork=no\nac_cv_func_vfork=no\nac_cv_func_pipe=no\n\n# DJGPP needs ICONV_CONST set to const\nam_cv_proto_iconv_arg1=\"const\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/djgpp/fnchange.in",
    "content": "@V@/tools/aix-3.2.5                    @V@/tools/aix-3.2-5\n@V@/tools/aix-4.1.5                    @V@/tools/aix-4.1-5\n@V@/tools/aix-4.2.0                    @V@/tools/aix-4.2-0\n@V@/tools/aix-4.3.2                    @V@/tools/aix-4.3-2\n@V@/tools/glibc-2.1.3                  @V@/tools/glibc-2.1-3\n@V@/tools/glibc-2.1.90                 @V@/tools/glibc-2.1-90\n@V@/tools/locale_charmap               @V@/tools/locale_charmap\n@V@/tools/locale_charset.c             @V@/tools/charset_locale.c\n@V@/tools/locale_codeset.c             @V@/tools/codeset_locale.c\n@V@/tools/solaris-2.5.1                @V@/tools/solaris-2.5-1\n@V@/tools/sunos-4.1.4                  @V@/tools/sunos-4.1-4\n@V@/tools/all-charsets-X11             @V@/tools/all-charsets.X11\n@V@/tools/glibc-2.2-XF86-3.3.6         @V@/tools/glibc22XF86-3.3-6\n@V@/tools/glibc-2.2-XF86-4.0.1f        @V@/tools/glibc22XF86-4.0-1f\n@V@/tools/locale_x11encoding.c         @V@/tools/x11encoding_locale.c\n@V@/include/libcharset.h.in            @V@/include/libcharset.h-in\n@V@/include/libcharset.h.msvc-shared   @V@/include/libcharset.h-msvc-shared\n@V@/include/localcharset.h.in          @V@/include/localcharset.h-in\n@V@/include/localcharset.h.build.in    @V@/include/localcharset.h-build-in\n@V@/include/localcharset.h.msvc-shared @V@/include/localcharset.h-msvc-shared\n@V@/config.h.in                        @V@/config.h-in\n@V@/config.h.msvc                      @V@/config.h-msvc\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/djgpp/fnchange.lst",
    "content": "libcharset-1.1/tools/README                      libcharset-1.1/tools/README\nlibcharset-1.1/tools/aix-3.2.5                   libcharset-1.1/tools/aix-3.2.5\nlibcharset-1.1/tools/aix-4.1.5                   libcharset-1.1/tools/aix-4.1.5\nlibcharset-1.1/tools/aix-4.2.0                   libcharset-1.1/tools/aix-4.2.0\nlibcharset-1.1/tools/aix-4.3.2                   libcharset-1.1/tools/aix-4.3.2\nlibcharset-1.1/tools/all-charsets                libcharset-1.1/tools/all-charsets\nlibcharset-1.1/tools/all-locales                 libcharset-1.1/tools/all-locales\nlibcharset-1.1/tools/freebsd-3.3                 libcharset-1.1/tools/freebsd-3.3\nlibcharset-1.1/tools/glibc-2.1.3                 libcharset-1.1/tools/glibc-2.1.3\nlibcharset-1.1/tools/glibc-2.1.90                libcharset-1.1/tools/glibc-2.1.90\nlibcharset-1.1/tools/hpux-10.01                  libcharset-1.1/tools/hpux-10.01\nlibcharset-1.1/tools/hpux-10.20                  libcharset-1.1/tools/hpux-10.20\nlibcharset-1.1/tools/hpux-11.00                  libcharset-1.1/tools/hpux-11.00\nlibcharset-1.1/tools/irix-6.5                    libcharset-1.1/tools/irix-6.5\nlibcharset-1.1/tools/locale_charmap              libcharset-1.1/tools/locale_charmap\nlibcharset-1.1/tools/locale_charset.c            libcharset-1.1/tools/locale_charset.c\nlibcharset-1.1/tools/locale_codeset.c            libcharset-1.1/tools/localecodeset.c\nlibcharset-1.1/tools/osf1-4.0a                   libcharset-1.1/tools/osf1-4.0a\nlibcharset-1.1/tools/osf1-4.0d                   libcharset-1.1/tools/osf1-4.0d\nlibcharset-1.1/tools/osf1-5.1                    libcharset-1.1/tools/osf1-5.1\nlibcharset-1.1/tools/solaris-2.4                 libcharset-1.1/tools/solaris-2.4\nlibcharset-1.1/tools/solaris-2.5.1               libcharset-1.1/tools/solaris-2.5.1\nlibcharset-1.1/tools/solaris-2.6                 libcharset-1.1/tools/solaris-2.6\nlibcharset-1.1/tools/solaris-2.6-cjk             libcharset-1.1/tools/solaris-2.6-cjk\nlibcharset-1.1/tools/solaris-2.7                 libcharset-1.1/tools/solaris-2.7\nlibcharset-1.1/tools/sunos-4.1.4                 libcharset-1.1/tools/sunos-4.1.4\nlibcharset-1.1/tools/win32                       libcharset-1.1/tools/win32\nlibcharset-1.1/tools/glibc-2.2                   libcharset-1.1/tools/glibc-2.2\nlibcharset-1.1/tools/all-charsets-X11            libcharset-1.1/tools/all-charsets.X11\nlibcharset-1.1/tools/glibc-2.2-XF86-3.3.6        libcharset-1.1/tools/glibc-2.2-XF86-3.3.6\nlibcharset-1.1/tools/glibc-2.2-XF86-4.0.1f       libcharset-1.1/tools/glibc-2.2XF86-4.0.1f\nlibcharset-1.1/tools/locale_x11encoding.c        libcharset-1.1/tools/locale_x11encoding.c\nlibcharset-1.1/tools/beos-5                      libcharset-1.1/tools/beos-5\nlibcharset-1.1/m4/ChangeLog                      libcharset-1.1/m4/ChangeLog\nlibcharset-1.1/m4/codeset.m4                     libcharset-1.1/m4/codeset.m4\nlibcharset-1.1/m4/glibc21.m4                     libcharset-1.1/m4/glibc21.m4\nlibcharset-1.1/m4/libtool.m4                     libcharset-1.1/m4/libtool.m4\nlibcharset-1.1/lib/config.charset                libcharset-1.1/lib/config.charset\nlibcharset-1.1/lib/localcharset.c                libcharset-1.1/lib/localcharset.c\nlibcharset-1.1/lib/ref-add.sin                   libcharset-1.1/lib/ref-add.sin\nlibcharset-1.1/lib/ref-del.sin                   libcharset-1.1/lib/ref-del.sin\nlibcharset-1.1/lib/ChangeLog                     libcharset-1.1/lib/ChangeLog\nlibcharset-1.1/lib/Makefile.in                   libcharset-1.1/lib/Makefile.in\nlibcharset-1.1/lib/Makefile.msvc                 libcharset-1.1/lib/Makefile.msvc\nlibcharset-1.1/AUTHORS                           libcharset-1.1/AUTHORS\nlibcharset-1.1/COPYING.LIB                       libcharset-1.1/COPYING.LIB\nlibcharset-1.1/INSTALL.generic                   libcharset-1.1/INSTALL.generic\nlibcharset-1.1/README                            libcharset-1.1/README\nlibcharset-1.1/Makefile.devel                    libcharset-1.1/Makefile.devel\nlibcharset-1.1/Makefile.in                       libcharset-1.1/Makefile.in\nlibcharset-1.1/configure.ac                      libcharset-1.1/configure.ac\nlibcharset-1.1/configure                         libcharset-1.1/configure\nlibcharset-1.1/INTEGRATE                         libcharset-1.1/INTEGRATE\nlibcharset-1.1/include/localcharset.h.in         libcharset-1.1/include/localcharset.h.in\nlibcharset-1.1/include/localcharset.h.msvc-shared libcharset-1.1/include/localcharset_h.shared-msvc\nlibcharset-1.1/autoconf/config.guess             libcharset-1.1/autoconf/config.guess\nlibcharset-1.1/autoconf/config.sub               libcharset-1.1/autoconf/config.sub\nlibcharset-1.1/autoconf/ltmain.sh                libcharset-1.1/autoconf/ltmain.sh\nlibcharset-1.1/autoconf/install-sh               libcharset-1.1/autoconf/install-sh\nlibcharset-1.1/autoconf/aclocal.m4               libcharset-1.1/autoconf/aclocal.m4\nlibcharset-1.1/autoconf/mkinstalldirs            libcharset-1.1/autoconf/mkinstalldirs\nlibcharset-1.1/config.h.in                       libcharset-1.1/config.h.in\nlibcharset-1.1/windows/dllexport.h               libcharset-1.1/windows/dllexport.h\nlibcharset-1.1/ChangeLog                         libcharset-1.1/ChangeLog\nlibcharset-1.1/Makefile.msvc                     libcharset-1.1/Makefile.msvc\nlibcharset-1.1/README.win32                      libcharset-1.1/README.win32\nlibcharset-1.1/config.h.msvc                     libcharset-1.1/config.h.msvc\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/include/export.h",
    "content": "\n#if @HAVE_VISIBILITY@ && BUILDING_LIBCHARSET\n#define LIBCHARSET_DLL_EXPORTED __attribute__((__visibility__(\"default\")))\n#else\n#define LIBCHARSET_DLL_EXPORTED\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/include/libcharset.h",
    "content": "/* Copyright (C) 2003 Free Software Foundation, Inc.\n   This file is part of the GNU CHARSET Library.\n\n   The GNU CHARSET Library is free software; you can redistribute it and/or\n   modify it under the terms of the GNU Library General Public License as\n   published by the Free Software Foundation; either version 2 of the\n   License, or (at your option) any later version.\n\n   The GNU CHARSET Library is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with the GNU CHARSET Library; see the file COPYING.LIB.  If not,\n   see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _LIBCHARSET_H\n#define _LIBCHARSET_H\n\n#include <localcharset.h>\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Support for relocatable packages.  */\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nextern void libcharset_set_relocation_prefix (const char *orig_prefix,\n                                              const char *curr_prefix);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _LIBCHARSET_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/include/libcharset.h.in",
    "content": "/* Copyright (C) 2003 Free Software Foundation, Inc.\n   This file is part of the GNU CHARSET Library.\n\n   The GNU CHARSET Library is free software; you can redistribute it and/or\n   modify it under the terms of the GNU Library General Public License as\n   published by the Free Software Foundation; either version 2 of the\n   License, or (at your option) any later version.\n\n   The GNU CHARSET Library is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with the GNU CHARSET Library; see the file COPYING.LIB.  If not,\n   see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _LIBCHARSET_H\n#define _LIBCHARSET_H\n\n#include <localcharset.h>\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Support for relocatable packages.  */\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nextern void libcharset_set_relocation_prefix (const char *orig_prefix,\n                                              const char *curr_prefix);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _LIBCHARSET_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/include/localcharset.h",
    "content": "/* Determine a canonical name for the current locale's character encoding.\n   Copyright (C) 2000-2003 Free Software Foundation, Inc.\n   This file is part of the GNU CHARSET Library.\n\n   This program is free software; you can redistribute it and/or modify it\n   under the terms of the GNU Library General Public License as published\n   by the Free Software Foundation; either version 2, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _LOCALCHARSET_H\n#define _LOCALCHARSET_H\n\n#if 1 && BUILDING_LIBCHARSET\n#define LIBCHARSET_DLL_EXPORTED __attribute__((__visibility__(\"default\")))\n#else\n#define LIBCHARSET_DLL_EXPORTED\n#endif\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Determine the current locale's character encoding, and canonicalize it\n   into one of the canonical names listed in config.charset.\n   The result must not be freed; it is statically allocated.\n   If the canonical name cannot be determined, the result is a non-canonical\n   name.  */\nextern LIBCHARSET_DLL_EXPORTED const char * locale_charset (void);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _LOCALCHARSET_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/include/localcharset.h.build.in",
    "content": "/* Determine a canonical name for the current locale's character encoding.\n   Copyright (C) 2000-2003 Free Software Foundation, Inc.\n   This file is part of the GNU CHARSET Library.\n\n   This program is free software; you can redistribute it and/or modify it\n   under the terms of the GNU Library General Public License as published\n   by the Free Software Foundation; either version 2, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _LOCALCHARSET_H\n#define _LOCALCHARSET_H\n\n#if @HAVE_VISIBILITY@ && BUILDING_LIBCHARSET\n#define LIBCHARSET_DLL_EXPORTED __attribute__((__visibility__(\"default\")))\n#else\n#define LIBCHARSET_DLL_EXPORTED\n#endif\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Determine the current locale's character encoding, and canonicalize it\n   into one of the canonical names listed in config.charset.\n   The result must not be freed; it is statically allocated.\n   If the canonical name cannot be determined, the result is a non-canonical\n   name.  */\nextern LIBCHARSET_DLL_EXPORTED const char * locale_charset (void);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _LOCALCHARSET_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/include/localcharset.h.in",
    "content": "/* Determine a canonical name for the current locale's character encoding.\n   Copyright (C) 2000-2003 Free Software Foundation, Inc.\n   This file is part of the GNU CHARSET Library.\n\n   This program is free software; you can redistribute it and/or modify it\n   under the terms of the GNU Library General Public License as published\n   by the Free Software Foundation; either version 2, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _LOCALCHARSET_H\n#define _LOCALCHARSET_H\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Determine the current locale's character encoding, and canonicalize it\n   into one of the canonical names listed in config.charset.\n   The result must not be freed; it is statically allocated.\n   If the canonical name cannot be determined, the result is a non-canonical\n   name.  */\nextern const char * locale_charset (void);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _LOCALCHARSET_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/include/localcharset.h.inst",
    "content": "/* Determine a canonical name for the current locale's character encoding.\n   Copyright (C) 2000-2003 Free Software Foundation, Inc.\n   This file is part of the GNU CHARSET Library.\n\n   This program is free software; you can redistribute it and/or modify it\n   under the terms of the GNU Library General Public License as published\n   by the Free Software Foundation; either version 2, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _LOCALCHARSET_H\n#define _LOCALCHARSET_H\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Determine the current locale's character encoding, and canonicalize it\n   into one of the canonical names listed in config.charset.\n   The result must not be freed; it is statically allocated.\n   If the canonical name cannot be determined, the result is a non-canonical\n   name.  */\nextern const char * locale_charset (void);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _LOCALCHARSET_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/.libs/libcharset.lai",
    "content": "# libcharset.la - a libtool library file\n# Generated by libtool (GNU libtool) 2.4.6\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# The name that we can dlopen(3).\ndlname='libcharset.1.dylib'\n\n# Names of this library.\nlibrary_names='libcharset.1.dylib libcharset.dylib'\n\n# The name of the static archive.\nold_library='libcharset.a'\n\n# Linker flags that cannot go in dependency_libs.\ninherited_linker_flags=' '\n\n# Libraries that this one depends upon.\ndependency_libs=''\n\n# Names of additional weak libraries provided by this library\nweak_library_names=''\n\n# Version information for libcharset.\ncurrent=1\nage=0\nrevision=0\n\n# Is this an already installed library?\ninstalled=yes\n\n# Should we warn about portability when linking against -modules?\nshouldnotlink=no\n\n# Files to dlopen/dlpreopen\ndlopen=''\ndlpreopen=''\n\n# Directory that this library needs to be installed in:\nlibdir='/usr/local/lib'\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/ChangeLog",
    "content": "2016-12-14  Bruno Haible  <bruno@clisp.org>\n\n\tCleanup useless removals.\n\t* Makefile.in (distclean): No need to remove config.* and libtool.\n\n2016-12-03  Bruno Haible  <bruno@clisp.org>\n\n\tCreate tarballs through an Automake-like \"make dist\" command.\n\t* Makefile.in (SOURCE_FILES, GNULIB_SYNCED_FILES, IMPORTED_FILES,\n\tGENERATED_FILES, DISTRIBUTED_BUILT_FILES, DISTFILES): New macros.\n\t(distdir): New target.\n\n2016-12-02  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset: Update from gnulib.\n\t2015-01-07  KO Myung-Hun  <komh@chollian.net>\n\t\t* config.charset: Don't output aliases if \"$os\" is os2*.\n\t2012-06-22  Bruno Haible  <bruno@clisp.org>\n\t\t* connfig.charset: Write \"Mac OS X\" instead of \"MacOS X\".\n\n\t* localcharset.c: Update from gnulib.\n\t2016-12-02  Bruno Haible  <bruno@clisp.org>\n\t\t* localcharset.c (locale_charset) [WINDOWS_NATIVE]: Don't use\n\t\tthe return value from setlocale if it would lead to a buffer\n\t\toverrun.\n\t2015-01-07  KO Myung-Hun  <komh@chollian.net>\n\t\t* localcharset.c (get_charset_aliases) [OS2]: Hardcode the\n\t\tresult for OS/2.\n\t\t(locale_charset) [OS2]: Use system codepage if codeset is\n\t\tomitted from the locale name which is neither \"C\" nor \"POSIX\".\n\t2014-07-15  Eli Zaretskii  <eliz@gnu.org>\n\t\t* localcharset.c (locale_charset) [WINDOWS_NATIVE]: Before\n\t\tfalling back on the default system codepage, try extracting\n\t\tthe codepage from what 'setlocale' returns.  This allows to\n\t\ttake into account changes of the codeset due to non-default\n\t\tlocale set by a previous call to 'setlocale'.\n\t2013-07-20  Daiki Ueno  <ueno@gnu.org>\n\t\t* localcharset.c (locale_charset) [DARWIN7]: Use MB_CUR_MAX_L\n\t\tinstead of MB_CUR_MAX.\n\t2012-09-16  Paul Eggert  <eggert@cs.ucla.edu>\n\t\t* localcharset.c (locale_charset) [DARWIN7]:\n\t\tReturn \"ASCII\" if the system reports \"UTF-8\" and\n\t\tMB_CUR_MAX <= 1, as these two values are incompatible.  Problem\n\t\treported by Max Horn. For more discussion, please see\n\t\t<http://lists.gnu.org/archive/html/bug-gnulib/2012-09/msg00061.html>.\n\t2012-06-22  Bruno Haible  <bruno@clisp.org>\n\t\t* localcharset.c: Write \"Mac OS X\" instead of \"MacOS X\".\n\n\t* relocatable.c: Update from gnulib.\n\n2016-11-22  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate support for building with MSVC.\n\t* Makefile.in (install-lib, install): Install the .la file with\n\t$(INSTALL), not $(INSTALL_DATA). Otherwise the native Windows DLL gets\n\tinstalled without execution permissions, and programs linked to it fail:\n\tin a Cygwin shell with exit code 127, or from a cmd.exe window with a\n\tdialog \"The application was unable to start correctly (0xc0000022).\"\n\n2012-01-06  Bruno Haible  <bruno@clisp.org>\n\n\tTalk about \"native Windows API\", not \"Woe32\".\n\t* localcharset.c: Update comments to mention native Windows.\n\t* relocatable.c: Likewise.\n\t* config.charset: More comments.\n\n2012-01-04  Bruno Haible  <bruno@clisp.org>\n\n\tTalk about \"native Windows API\", not \"Win32\".\n\t* localcharset.c: Update comments to mention native Windows.\n\t(WINDOWS_NATIVE): Renamed from WIN32_NATIVE.\n\t* relocatable.c: Likewise.\n\n2011-10-03  Bruno Haible  <bruno@clisp.org>\n\n\t* relocatable.c: Update from gnulib.\n\n2011-08-07  Bruno Haible  <bruno@clisp.org>\n\n\t* relocatable.c: Update from gnulib.\n\n2011-02-28  Bruno Haible  <bruno@clisp.org>\n\n\tAssume ANSI C behaviour of free().\n\t* localcharset.c (get_charset_aliases): Remove NULL test before calling\n\tfree().\n\tSuggested by Simon Josefsson <simon@josefsson.org>.\n\n2011-02-28  Bruno Haible  <bruno@clisp.org>\n\n\t* relocatable.h: Update from gnulib.\n\t* relocatable.c: Likewise.\n\n2009-12-13  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c (locale_charset): Fix comment about use of GetACP.\n\n2009-12-12  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c (locale_charset): Add comment about use of GetACP.\n\n2009-12-12  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset: Untabify.\n\t* localcharset.c: Untabify.\n\n2009-10-18  Bruno Haible  <bruno@clisp.org>\n\n\tAvoid symlink attack in localcharset module.\n\t* localcharset.c: Include <fcntl.h>, <unistd.h>.\n\t(O_NOFOLLOW): Define fallback.\n\t(get_charset_aliases): Don't open the file if it is a symbolic link.\n\tReported by Fergal Glynn <fglynn@veracode.com>.\n\n2009-03-26  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in (install, installdir): Ensure that $(DESTDIR)$(libdir)\n\texists, unconditionally.\n\n2009-03-25  Bruno Haible  <bruno@clisp.org>\n\n\t* relocatable.h: Update from gnulib.\n\t* relocatable.c: Likewise.\n\n2009-01-25  Bruno Haible  <bruno@clisp.org>\n\n\tDon't install charset.alias on MacOS X >= 10.3.\n\t* localcharset.c (DARWIN7): New macro.\n\t(get_charset_aliases): Hardcode the result for Darwin7.\n\t* Makefile.in (install, installdirs): Don't install charset.alias on\n\tMacOS X >= 10.3.\n\n2009-01-25  Bruno Haible  <bruno@clisp.org>\n\n\tDon't install charset.alias on mingw and Cygwin.\n\t* Makefile.in (install, installdirs): Don't install charset.alias on\n\tmingw and Cygwin, if the file does not yet exist. The result for these\n\tplatforms is hardcoded in localcharset.c.\n\n2009-01-24  Bruno Haible  <bruno@clisp.org>\n\n\tAdd support for non-UTF-8 locales on MacOS X.\n\t* config.charset: Add CP1131, ARMSCII-8, PT154 to the list of canonical\n\tencodings. For Darwin 7 and newer, don't map traditional encodings to\n\tUTF-8.\n\tReported by Vincent Lefevre <vincent@vinc17.org>\n\tat <http://savannah.gnu.org/bugs/?25235>.\n\n2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>\n\n\t* config.charset: Treat Haiku like BeOS.\n\n2009-01-16  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in (install-strip): New target.\n\tReported by Alon Bar-Lev <alon.barlev@gmail.com>.\n\n2008-04-13  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c (OS2): Don't redefine if already defined.\n\tReported by Elbert Pol <e.pol@chello.nl>.\n\n2007-11-14  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset: Update for OpenBSD 4.1.\n\tReported and helped by Ben Pfaff <blp@cs.stanford.edu>.\n\n2006-10-31  Bruno Haible  <bruno@clisp.org>\n\n\tUpdate from GNU gettext.\n\t2006-09-14  Bruno Haible  <bruno@clisp.org>\n\t\t* lib/relocatable.c: Likewise.\n\n2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>\n\n\t* localcharset.c: Do not check HAVE_SETLOCALE.\n\n2006-09-14  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c: Include <config.h> unconditionally.\n\n2006-08-29  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c: Include configmake.h in order to get LIBDIR defined.\n\n2006-07-29  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.\n\n2006-07-25  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.msvc: Remove file.\n\n2006-07-25  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.vms: Remove file.\n\n2006-07-23  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in (libcharset.la): Use the CFLAGS during linking.\n\tNeeded because the CFLAGS can e.g. trigger profiling.\n\tReported by Russell Aspinwall <russell.aspinwall@flomerics.co.uk>.\n\n2006-07-14  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in (clean): Remove also *.stackdump.\n\n2006-06-17  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset: Update for NetBSD 3.0.\n\n2006-05-17  Bruno Haible  <bruno@clisp.org>\n\n\tCygwin portability.\n\t* localcharset.c (WIN32_NATIVE): Renamed from WIN32.\n\n2006-05-16  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c [CYGWIN]: Include <windows.h>.\n\t(get_charset_aliases): For Cygwin, return the same CPxxx aliases list\n\tas under WIN32.\n\t(locale_charset) [CYGWIN]: Try to retrieve the encoding from the\n\tenvironment variables. Fall back to GetACP().\n\n2006-04-05  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset: Update Juan Manuel Guerrero's address.\n\n2006-01-10  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c: Assume ANSI C. Fixes a gcc warning.\n\tReported by Werner Lemberg <wl@gnu.org>.\n\n2005-12-04  Bruno Haible  <bruno@clisp.org>\n\n\tCygwin portability.\n\t* relocatable.c: Include <windows.h> also on Cygwin.\n\t(DllMain): Add support for Cygwin.\n\t(get_shared_library_fullname): Update.\n\n2005-07-24  Bruno Haible  <bruno@clisp.org>\n\n\tTidy up exported symbols.\n\t* Makefile.in (CFLAGS): Add @CFLAG_VISIBILITY@.\n\t(DEFS): Also define BUILDING_LIBCHARSET and BUILDING_DLL.\n\t* relocatable.h (RELOCATABLE_DLL_EXPORTED) [HAVE_VISIBILITY]:\n\tDefine to the gcc visibility attribute.\n\n2005-07-02  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c (get_charset_aliases) [WIN32]: Add CP65001 and others.\n\tReported by <mus1876@gmx.info> via Alain Bench <messtic@oreka.com>.\n\n2005-03-22  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in (mkinstalldirs): Update.\n\n2005-01-06  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.msvc (CFLAGS): Define also INSTALLPREFIX.\n\t* Makefile.vms (DEFS): Likewise.\n\tReported by Troels Walsted Hansen <Troels.W.Hansen@fast.no>.\n\n2004-09-01  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset: Add support for Darwin 7.\n\n2004-04-28  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now\n\taccepts Windows pathnames.\n\n2004-04-23  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c (get_charset_aliases): Allow the CHARSETALIASDIR\n\tenvironment variable to override LIBDIR.\n\tSuggested by Matthias Clasen <mclasen@redhat.com>.\n\n2004-04-20  Jim Meyering  <jim@meyering.net>\n            Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak\n\tmemory when realloc fails.\n\n2004-01-20  Bruno Haible  <bruno@clisp.org>\n\n\tUpgrade from gettext-0.14.\n\n\t2003-10-09  Bruno Haible  <bruno@clisp.org>\n\t* relocatable.c: Include xalloc.h instead of xmalloc.h.\n\n\t2003-08-24  Bruno Haible  <bruno@clisp.org>\n\t* relocatable.h: Make this file includable in C++ mode: add extern \"C\".\n\n\t2003-08-01  Bruno Haible  <bruno@clisp.org>\n\t* relocatable.c (find_shared_library_fullname): Disable the code on\n\tLinux/libc5. Reported by Alain Guibert <derogaton+bgli@oreka.com>.\n\n\t2003-06-27  Bruno Haible  <bruno@clisp.org>\n\tAvoid use of *_unlocked functions on Solaris 2.5.1.\n\t* localcharset.c: Test HAVE_DECL_GETC_UNLOCKED, not HAVE_GETC_UNLOCKED.\n\tReported by Eric Botcazou <ebotcazou@libertysurf.fr>.\n\n\t2003-06-22  Bruno Haible  <bruno@clisp.org>\n\t* relocatable.c (compute_curr_prefix): Comment out this function in\n\tthe case when it is not used.\n\tReported by Pavel Roskin <proski@gnu.org>.\n\n2004-01-21  Bruno Haible  <bruno@clisp.org>\n\n\tUpgrade from gettext-0.14.\n\n\t2004-01-21  Bruno Haible  <bruno@clisp.org>\n\t* config.charset: Add support for MacOS X (Darwin).\n\n\t2003-12-02  Bruno Haible  <bruno@clisp.org>\n\t* config.charset: Treat the new country name CS like the old country\n\tname YU.\n\n\t2003-08-20  Bruno Haible  <bruno@clisp.org>\n\t* config.charset (linux-gnulibc1*): Change hr_HR, ro_RO to ISO-8859-2.\n\tReported by Alain Guibert <derogaton+bgli@oreka.com>.\n\n\t2003-08-14  Bruno Haible  <bruno@clisp.org>\n\t* config.charset: Add support for Linux libc5. Based on data from\n\tAlain Guibert <derogaton+bgli@oreka.com>.\n\n2003-06-27  Bruno Haible  <bruno@clisp.org>\n\n\tAvoid use of *_unlocked functions on Solaris 2.5.1.\n\t* localcharset.c: Test HAVE_DECL_GETC_UNLOCKED, not HAVE_GETC_UNLOCKED.\n\tReported by Eric Botcazou <ebotcazou@libertysurf.fr>.\n\n2003-08-20  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset (linux-gnulibc1*): Change hr_HR, ro_RO to ISO-8859-2.\n\tReported by Alain Guibert <derogaton+bgli@oreka.com>.\n\n2003-08-14  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset: Add support for Linux libc5. Based on data from\n\tAlain Guibert <derogaton+bgli@oreka.com>.\n\n2003-08-01  Bruno Haible  <bruno@clisp.org>\n\n\t* relocatable.c (find_shared_library_fullname): Disable the code on\n\tLinux/libc5. Reported by Alain Guibert <derogaton+bgli@oreka.com>.\n\n2003-06-22  Bruno Haible  <bruno@clisp.org>\n\n\tPortability to mingw32.\n\t* relocatable.c [WIN32]: Include <windows.h>.\n\tReported by Jeff Bonggren <jbon@cfl.rr.com>.\n\n2003-06-22  Bruno Haible  <bruno@clisp.org>\n\n\t* relocatable.c (compute_curr_prefix): Comment out this function in\n\tthe case when it is not used.\n\tReported by Pavel Roskin <proski@gnu.org>.\n\n2003-06-07  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for relocatable data files even on VMS.\n\t* Makefile.vms (bindir): New variable.\n\t(DEFS): Add flags for relocatability.\n\tReported by Jouk Jansen <joukj@hrem.stm.tudelft.nl>.\n\n2003-06-07  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for relocatable data files even on Woe32.\n\t* Makefile.msvc (IIPREFIX, IIprefix, IIexec_prefix, IIbindir,\n\tIIlibdir): New variables.\n\t(PICFLAGS): Also define PIC. Define BUILDING_* flags here.\n\t(CFLAGS): ... not here. Add flags for relocatability.\n\n2003-05-18  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.msvc (DEBUGFLAGS): New variable.\n\t(charset.lib): Use it.\n\n2003-05-07  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.vms: New file.\n\n2003-04-12  Bruno Haible  <bruno@clisp.org>\n\n\t* lib/localcharset.c (get_charset_aliases): Add special case for VMS.\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\tSupport for relocatable installation.\n\t* relocatable.h: New file, from GNU gettext.\n\t* relocatable.c: New file, from GNU gettext.\n\t* localcharset.c: Update from GNU gettext.\n\t2003-02-28  Bruno Haible  <bruno@clisp.org>\n\t\t* localcharset.c: Include relocatable.h.\n\t\t(get_charset_aliases): Relocate LIBDIR value.\n\t\t* localcharset.c: Drop C linkage declaration.\n\t* Makefile.in (DEFS): New variable.\n\t(SOURCES): Add relocatable.c.\n\t(OBJECTS): Add relocatable.lo.\n\t(localcharset.lo): Use $(DEFS).\n\t(relocatable.lo): New rule.\n\t* Makefile.msvc (CFLAGS): Remove $(PICFLAGS).\n\t(INCLUDES): Simplify.\n\t(SOURCES): Remove variable.\n\t(OBJECTS): Add relocatable.obj.\n\t(localcharset.obj): Add $(PICFLAGS).\n\t(relocatable.obj): New rule.\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.msvc (PREFIX): New variable.\n\t(prefix): Use it.\n\t(clean): Drop Unix specific removal.\n\n2003-03-17  Bruno Haible  <bruno@clisp.org>\n\n\tImproved MSVC support.\n\t* Makefile.msvc (prefix): Use less Unixy value.\n\t(local_prefix): Remove variable.\n\t(libdir): Use backslashes.\n\t(bindir): New variable.\n\t(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Set to real values.\n\t(RESOURCES): Enable charset.res.\n\t(charset.lib): Set the target library name explicitly.\n\t(charset.res): New rule.\n\t(install, installdirs, uninstall): New rules.\n\n\tRename libcharset.h to localcharset.h.\n\t* localcharset.c: Include localcharset.h.\n\t* localcharset.h: Remove file.\n\t* Makefile.in (INCLUDES): Add -I../include.\n\t* Makefile.msvc (INCLUDES): Add -I../include.\n\n2003-01-29  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset: Add an alias for CP1251 on Solaris.\n\tReported by Hidetoshi Tajima <hidetoshi.tajima@sun.com>.\n\n2003-01-12  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.h: New file.\n\t* localcharset.c: Include it.\n\n2003-01-01  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in (mkinstalldirs): Renamed from MKINSTALLDIRS.\n\t(install-lib, install, installdirs): Use it.\n\n2002-05-09  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset: Update for newest glibc. Add canonical names\n\tISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.\n\n2002-05-09  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c (get_charset_aliases): Add more Windows specific\n\taliases.\n\n2002-05-08  Owen Taylor  <otaylor@redhat.com>\n\n\t* config.charset: A few additions for Solaris.\n\n2002-02-15  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset [msdosdjgpp]: For Russian, use CP866.\n\n2002-02-11  Bruno Haible  <bruno@clisp.org>\n\n\t* config.charset: Add support for NetBSD.\n\n2002-01-10  Andrew Zabolotny  <zap@cobra.ru>\n\t    Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c: Rework OS/2 support.\n\t* config.charset: Add OS/2 support.\n\n2001-12-21  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c (ISSLASH): Provide definition for DOS-like systems.\n\n2001-12-15  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c: Add OS/2 support.\n\n2001-12-05  Bruno Haible  <bruno@clisp.org>\n\n\t* localcharset.c (locale_charset): Don't return an empty string.\n\n2001-10-23  Bruno Haible  <haible@clisp.cons.org>\n\n\t* config.charset: msdos in uk_UA uses CP1125.\n\n2001-08-05  Bruno Haible  <haible@clisp.cons.org>\n\n\tMake it possible to build libcharset with CC=gcc CFLAGS=\"-x c++\".\n\t* localcharset.c (locale_charset): Declare as extern \"C\".\n\t(get_charset_aliases): Cast malloc and realloc results to 'char *'.\n\n2001-06-27  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in (clean): Remove also *.o.lock, left there by libtool\n\ton IRIX.\n\n2001-06-25  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in (localcharset.lo): Mention $(INCLUDES) before $(CFLAGS)\n\tand $(CPPFLAGS).\n\t* Makefile.msvc (localcharset.obj): Likewise.\n\n2001-06-24  Bruno Haible  <haible@clisp.cons.org>\n\n\t* config.charset: Change canonical name of BIG5HKSCS to BIG5-HKSCS.\n\tChange canonical name of SJIS to SHIFT_JIS.\n\n2001-05-06  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.msvc (charset.lib): Allow the 'del' command to fail.\n\n2001-05-06  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in (CPPFLAGS, LDFLAGS): New variables.\n\t(libcharset.la): Use LDFLAGS.\n\t(localcharset.lo): Use CPPFLAGS.\n\n2001-04-30  Bruno Haible  <haible@clisp.cons.org>\n\n\tSilence \"gcc -Wall -Wwrite-strings\" warnings.\n\t* localcharset.c (charset_aliases): Change type to 'const char *'.\n\t(get_charset_aliases): Change type of 'cp' to 'const char *'.\n\n2001-03-10  Bruno Haible  <haible@clisp.cons.org>\n\n\t* localcharset.c (locale_charset): Allow wildcard syntax. Also resolve\n\talias if codeset is empty.\n\t* config.charset (BeOS): Use wildcard syntax.\n\n\t* Makefile.in (libcharset.la): Pass flag -no-undefined. Needed on\n\tplatforms like BeOS.\n\n\t* Makefile.in (RM): New variable.\n\n2001-01-05  Bruno Haible  <haible@clisp.cons.org>\n\n\t* localcharset.c (volatile): Define to empty if not using ANSI C.\n\n2001-03-05  Bruno Haible  <haible@clisp.cons.org>\n\n\t* config.charset: Update for OSF/1 5.1.\n\n2001-03-01  Bruno Haible  <haible@clisp.cons.org>\n\n\t* config.charset: For DOS/DJGPP, add CP775.\n\n2001-02-24  Bruno Haible  <haible@clisp.cons.org>\n\n\t* config.charset: Add support for DOS/DJGPP.\n\n2001-02-25  Bruno Haible  <haible@clisp.cons.org>\n\n\t* localcharset.c (locale_charset): Don't return NULL.\n\n2001-02-24  Bruno Haible  <haible@clisp.cons.org>\n\n\t* localcharset.c (locale_charset): Don't use setlocale(LC_CTYPE,NULL).\n\n2001-01-30  Bruno Haible  <haible@clisp.cons.org>\n\n\t* config.charset: Update for FreeBSD 4.2.\n\n2000-12-19  Jim Meyering  <jim@meyering.net>\n\n\t* localcharset.c: Improve WIN32 macrology.\n\t(locale_charset): Increase size of buffer.\n\n2000-12-18  Bruno Haible  <haible@clisp.cons.org>\n\n\t* config.charset: Add support for BeOS.\n\n2000-12-12  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in (ref-add.sed, ref-del.sed): Don't use $<, not understood\n\tby Solaris \"make\". Reported by Toshimitsu Fujiwara.\n\n2000-12-08  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.in (exec_prefix): Use configure's --exec-prefix argument.\n\n2000-12-02  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.msvc: Replace STATIC with its opposite flag, DLL.\n\n2000-11-21  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.msvc (MFLAGS): New variable.\n\t(CFLAGS, charset.lib): Use it.\n\t(INCLUDES): Use \"..\", not \"..\\include\".\n\n2000-10-31  Bruno Haible  <haible@clisp.cons.org>\n\n\t* Makefile.msvc: New file.\n\n2000-10-31  Bruno Haible  <haible@clisp.cons.org>\n\n\t* config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB, VISCII,\n\tCP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256, CP1257\n\tto the list of canonical encodings. Rename EUC-CN to GB2312.\n\t* localcharset.c (locale_charset): Add support for Win32.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/Makefile",
    "content": "# Makefile for libcharset/lib\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = .\n\n# Directories used by \"make install\":\nprefix = /usr/local\nlocal_prefix = /usr/local\nexec_prefix = ${prefix}\nlibdir = ${exec_prefix}/lib\n\n# Programs used by \"make\":\nCC = gcc\nCFLAGS = -g -O2 -fvisibility=hidden\nCPPFLAGS = \nLDFLAGS = \nINCLUDES = -I. -I$(srcdir) -I.. -I$(srcdir)/.. -I../include\n# -DBUILDING_LIBCHARSET: Change expansion of LIBCHARSET_DLL_EXPORTED macro.\n# -DBUILDING_DLL: Change expansion of RELOCATABLE_DLL_EXPORTED macro.\nDEFS = -DLIBDIR=\\\"$(libdir)\\\" -DBUILDING_LIBCHARSET -DBUILDING_DLL \\\n-DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\\\"$(libdir)\\\" -DNO_XMALLOC \\\n-Dset_relocation_prefix=libcharset_set_relocation_prefix \\\n-Drelocate=libcharset_relocate -DHAVE_CONFIG_H\nLIBTOOL = /bin/sh $(top_builddir)/libtool\nLIBTOOL_COMPILE = $(LIBTOOL) --mode=compile\nLIBTOOL_LINK = $(LIBTOOL) --mode=link\nLIBTOOL_INSTALL = $(LIBTOOL) --mode=install\nLIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall\nRM = rm -f\n\n# Programs used by \"make install\":\nINSTALL = /usr/bin/install -c\nINSTALL_DATA = ${INSTALL} -m 644\nmkinstalldirs = $(SHELL) ../build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nPACKAGE = @PACKAGE@\nVERSION = @VERSION@\n\nSHELL = /bin/sh\n\n# Before making a release, change this according to the libtool documentation,\n# section \"Library interface versions\".\nLIBCHARSET_VERSION_INFO = 1:0:0\n\n# Needed by $(LIBTOOL).\ntop_builddir = ..\n\nSOURCES = $(srcdir)/localcharset.c $(srcdir)/relocatable.c\n\nOBJECTS = localcharset.lo relocatable.lo\n\nall : libcharset.la charset.alias ref-add.sed ref-del.sed\n\nlibcharset.la : $(OBJECTS)\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) -o libcharset.la -rpath $(libdir) -version-info $(LIBCHARSET_VERSION_INFO) -no-undefined $(OBJECTS)\n\nlocalcharset.lo : $(srcdir)/localcharset.c\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(DEFS) -c $(srcdir)/localcharset.c\n\nrelocatable.lo : $(srcdir)/relocatable.c $(srcdir)/relocatable.h\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(DEFS) -c $(srcdir)/relocatable.c\n\ncharset.alias: $(srcdir)/config.charset\n\t$(SHELL) $(srcdir)/config.charset 'x86_64-apple-darwin16.6.0' > t-$@\n\tmv t-$@ $@\n\nref-add.sed : $(srcdir)/ref-add.sin\n\tsed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-add.sin > t-$@\n\tmv t-$@ $@\n\nref-del.sed : $(srcdir)/ref-del.sin\n\tsed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-del.sin > t-$@\n\tmv t-$@ $@\n\n# Installs the library and include files only. Typically called with only\n# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.\ninstall-lib : all force\n\t$(mkinstalldirs) $(libdir)\n\t$(LIBTOOL_INSTALL) $(INSTALL) libcharset.la $(libdir)/libcharset.la\n\ttest -f $(libdir)/charset.alias && orig=$(libdir)/charset.alias \\\n\t                                || orig=charset.alias; \\\n\tsed -f ref-add.sed $$orig > $(libdir)/t-charset.alias; \\\n\t$(INSTALL_DATA) $(libdir)/t-charset.alias $(libdir)/charset.alias; \\\n\trm -f $(libdir)/t-charset.alias\n\n# The following is needed in order to install a simple file in $(libdir)\n# which is shared with other installed packages. We use a list of referencing\n# packages so that \"make uninstall\" will remove the file if and only if it\n# is not used by another installed package.\n# On systems with glibc-2.1 or newer, the file is redundant, therefore we\n# avoid installing it.\n\ninstall : all force\n\tif test no = no; then \\\n\t  case 'darwin16.6.0' in \\\n\t    darwin[56]*) \\\n\t      need_charset_alias=true ;; \\\n\t    darwin* | cygwin* | mingw* | pw32* | cegcc*) \\\n\t      need_charset_alias=false ;; \\\n\t    *) \\\n\t      need_charset_alias=true ;; \\\n\t  esac ; \\\n\telse \\\n\t  need_charset_alias=false ; \\\n\tfi ; \\\n\t$(mkinstalldirs) $(DESTDIR)$(libdir) ; \\\n\t$(LIBTOOL_INSTALL) $(INSTALL) libcharset.la $(DESTDIR)$(libdir)/libcharset.la\n\tif test -f $(DESTDIR)$(libdir)/charset.alias; then \\\n\t  sed -f ref-add.sed $(DESTDIR)$(libdir)/charset.alias > $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t  $(INSTALL_DATA) $(DESTDIR)$(libdir)/t-charset.alias $(DESTDIR)$(libdir)/charset.alias; \\\n\t  rm -f $(DESTDIR)$(libdir)/t-charset.alias; \\\n\telse \\\n\t  if $$need_charset_alias; then \\\n\t    sed -f ref-add.sed charset.alias > $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t    $(INSTALL_DATA) $(DESTDIR)$(libdir)/t-charset.alias $(DESTDIR)$(libdir)/charset.alias; \\\n\t    rm -f $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t  fi ; \\\n\tfi\n\ninstall-strip : install\n\ninstalldirs : force\n\t$(mkinstalldirs) $(DESTDIR)$(libdir)\n\nuninstall : force\n\t$(LIBTOOL_UNINSTALL) $(RM) $(DESTDIR)$(libdir)/libcharset.la\n\tif test -f $(DESTDIR)$(libdir)/charset.alias; then \\\n\t  sed -f ref-del.sed $(DESTDIR)$(libdir)/charset.alias > $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t  if grep '^# Packages using this file: $$' $(DESTDIR)$(libdir)/t-charset.alias > /dev/null; then \\\n\t    rm -f $(DESTDIR)$(libdir)/charset.alias; \\\n\t  else \\\n\t    $(INSTALL_DATA) $(DESTDIR)$(libdir)/t-charset.alias $(DESTDIR)$(libdir)/charset.alias; \\\n\t  fi; \\\n\t  rm -f $(DESTDIR)$(libdir)/t-charset.alias; \\\n\tfi\n\ncheck : all\n\nmostlyclean : clean\n\nclean : force\n\t$(RM) *.o *.lo *.a *.la *.o.lock core *.stackdump charset.alias ref-add.sed ref-del.sed\n\t$(RM) -r .libs _libs\n\ndistclean : clean\n\t$(RM) Makefile\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  ChangeLog Makefile.in\n# List of files bidirectionally synced with gnulib.\nGNULIB_SYNCED_FILES = \\\n  config.charset localcharset.c ref-add.sin ref-del.sin \\\n  relocatable.h relocatable.c\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES =\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(GNULIB_SYNCED_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/Makefile.in",
    "content": "# Makefile for libcharset/lib\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = @srcdir@\n\n# Directories used by \"make install\":\nprefix = @prefix@\nlocal_prefix = /usr/local\nexec_prefix = @exec_prefix@\nlibdir = @libdir@\n\n# Programs used by \"make\":\nCC = @CC@\nCFLAGS = @CFLAGS@ @CFLAG_VISIBILITY@\nCPPFLAGS = @CPPFLAGS@\nLDFLAGS = @LDFLAGS@\nINCLUDES = -I. -I$(srcdir) -I.. -I$(srcdir)/.. -I../include\n# -DBUILDING_LIBCHARSET: Change expansion of LIBCHARSET_DLL_EXPORTED macro.\n# -DBUILDING_DLL: Change expansion of RELOCATABLE_DLL_EXPORTED macro.\nDEFS = -DLIBDIR=\\\"$(libdir)\\\" -DBUILDING_LIBCHARSET -DBUILDING_DLL \\\n-DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\\\"$(libdir)\\\" -DNO_XMALLOC \\\n-Dset_relocation_prefix=libcharset_set_relocation_prefix \\\n-Drelocate=libcharset_relocate @DEFS@\nLIBTOOL = @LIBTOOL@\nLIBTOOL_COMPILE = $(LIBTOOL) --mode=compile\nLIBTOOL_LINK = $(LIBTOOL) --mode=link\nLIBTOOL_INSTALL = $(LIBTOOL) --mode=install\nLIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall\nRM = rm -f\n\n# Programs used by \"make install\":\nINSTALL = @INSTALL@\nINSTALL_DATA = @INSTALL_DATA@\nmkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nPACKAGE = @PACKAGE@\nVERSION = @VERSION@\n\nSHELL = /bin/sh\n\n# Before making a release, change this according to the libtool documentation,\n# section \"Library interface versions\".\nLIBCHARSET_VERSION_INFO = 1:0:0\n\n# Needed by $(LIBTOOL).\ntop_builddir = ..\n\nSOURCES = $(srcdir)/localcharset.c $(srcdir)/relocatable.c\n\nOBJECTS = localcharset.lo relocatable.lo\n\nall : libcharset.la charset.alias ref-add.sed ref-del.sed\n\nlibcharset.la : $(OBJECTS)\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) -o libcharset.la -rpath $(libdir) -version-info $(LIBCHARSET_VERSION_INFO) -no-undefined $(OBJECTS)\n\nlocalcharset.lo : $(srcdir)/localcharset.c\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(DEFS) -c $(srcdir)/localcharset.c\n\nrelocatable.lo : $(srcdir)/relocatable.c $(srcdir)/relocatable.h\n\t$(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(DEFS) -c $(srcdir)/relocatable.c\n\ncharset.alias: $(srcdir)/config.charset\n\t$(SHELL) $(srcdir)/config.charset '@host@' > t-$@\n\tmv t-$@ $@\n\nref-add.sed : $(srcdir)/ref-add.sin\n\tsed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-add.sin > t-$@\n\tmv t-$@ $@\n\nref-del.sed : $(srcdir)/ref-del.sin\n\tsed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-del.sin > t-$@\n\tmv t-$@ $@\n\n# Installs the library and include files only. Typically called with only\n# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.\ninstall-lib : all force\n\t$(mkinstalldirs) $(libdir)\n\t$(LIBTOOL_INSTALL) $(INSTALL) libcharset.la $(libdir)/libcharset.la\n\ttest -f $(libdir)/charset.alias && orig=$(libdir)/charset.alias \\\n\t                                || orig=charset.alias; \\\n\tsed -f ref-add.sed $$orig > $(libdir)/t-charset.alias; \\\n\t$(INSTALL_DATA) $(libdir)/t-charset.alias $(libdir)/charset.alias; \\\n\trm -f $(libdir)/t-charset.alias\n\n# The following is needed in order to install a simple file in $(libdir)\n# which is shared with other installed packages. We use a list of referencing\n# packages so that \"make uninstall\" will remove the file if and only if it\n# is not used by another installed package.\n# On systems with glibc-2.1 or newer, the file is redundant, therefore we\n# avoid installing it.\n\ninstall : all force\n\tif test @GLIBC21@ = no; then \\\n\t  case '@host_os@' in \\\n\t    darwin[56]*) \\\n\t      need_charset_alias=true ;; \\\n\t    darwin* | cygwin* | mingw* | pw32* | cegcc*) \\\n\t      need_charset_alias=false ;; \\\n\t    *) \\\n\t      need_charset_alias=true ;; \\\n\t  esac ; \\\n\telse \\\n\t  need_charset_alias=false ; \\\n\tfi ; \\\n\t$(mkinstalldirs) $(DESTDIR)$(libdir) ; \\\n\t$(LIBTOOL_INSTALL) $(INSTALL) libcharset.la $(DESTDIR)$(libdir)/libcharset.la\n\tif test -f $(DESTDIR)$(libdir)/charset.alias; then \\\n\t  sed -f ref-add.sed $(DESTDIR)$(libdir)/charset.alias > $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t  $(INSTALL_DATA) $(DESTDIR)$(libdir)/t-charset.alias $(DESTDIR)$(libdir)/charset.alias; \\\n\t  rm -f $(DESTDIR)$(libdir)/t-charset.alias; \\\n\telse \\\n\t  if $$need_charset_alias; then \\\n\t    sed -f ref-add.sed charset.alias > $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t    $(INSTALL_DATA) $(DESTDIR)$(libdir)/t-charset.alias $(DESTDIR)$(libdir)/charset.alias; \\\n\t    rm -f $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t  fi ; \\\n\tfi\n\ninstall-strip : install\n\ninstalldirs : force\n\t$(mkinstalldirs) $(DESTDIR)$(libdir)\n\nuninstall : force\n\t$(LIBTOOL_UNINSTALL) $(RM) $(DESTDIR)$(libdir)/libcharset.la\n\tif test -f $(DESTDIR)$(libdir)/charset.alias; then \\\n\t  sed -f ref-del.sed $(DESTDIR)$(libdir)/charset.alias > $(DESTDIR)$(libdir)/t-charset.alias; \\\n\t  if grep '^# Packages using this file: $$' $(DESTDIR)$(libdir)/t-charset.alias > /dev/null; then \\\n\t    rm -f $(DESTDIR)$(libdir)/charset.alias; \\\n\t  else \\\n\t    $(INSTALL_DATA) $(DESTDIR)$(libdir)/t-charset.alias $(DESTDIR)$(libdir)/charset.alias; \\\n\t  fi; \\\n\t  rm -f $(DESTDIR)$(libdir)/t-charset.alias; \\\n\tfi\n\ncheck : all\n\nmostlyclean : clean\n\nclean : force\n\t$(RM) *.o *.lo *.a *.la *.o.lock core *.stackdump charset.alias ref-add.sed ref-del.sed\n\t$(RM) -r .libs _libs\n\ndistclean : clean\n\t$(RM) Makefile\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  ChangeLog Makefile.in\n# List of files bidirectionally synced with gnulib.\nGNULIB_SYNCED_FILES = \\\n  config.charset localcharset.c ref-add.sin ref-del.sin \\\n  relocatable.h relocatable.c\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES =\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(GNULIB_SYNCED_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/charset.alias",
    "content": "# This file contains a table of character encoding aliases,\n# suitable for operating system 'darwin16.6.0'.\n# It was automatically generated from config.charset.\n# Packages using this file: \nISO8859-1 ISO-8859-1\nISO8859-2 ISO-8859-2\nISO8859-4 ISO-8859-4\nISO8859-5 ISO-8859-5\nISO8859-7 ISO-8859-7\nISO8859-9 ISO-8859-9\nISO8859-13 ISO-8859-13\nISO8859-15 ISO-8859-15\nKOI8-R KOI8-R\nKOI8-U KOI8-U\nCP866 CP866\nCP949 CP949\nCP1131 CP1131\nCP1251 CP1251\neucCN GB2312\nGB2312 GB2312\neucJP EUC-JP\neucKR EUC-KR\nBig5 BIG5\nBig5HKSCS BIG5-HKSCS\nGBK GBK\nGB18030 GB18030\nSJIS SHIFT_JIS\nARMSCII-8 ARMSCII-8\nPT154 PT154\n* UTF-8\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/config.charset",
    "content": "#! /bin/sh\n# Output a system dependent table of character encoding aliases.\n#\n#   Copyright (C) 2000-2004, 2006-2010 Free Software Foundation, Inc.\n#\n#   This program is free software; you can redistribute it and/or modify it\n#   under the terms of the GNU Library General Public License as published\n#   by the Free Software Foundation; either version 2, or (at your option)\n#   any later version.\n#\n#   This program is distributed in the hope that it will be useful,\n#   but WITHOUT ANY WARRANTY; without even the implied warranty of\n#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n#   Library General Public License for more details.\n#\n#   You should have received a copy of the GNU Library General Public License\n#   along with this program; if not, see <http://www.gnu.org/licenses/>.\n#\n# The table consists of lines of the form\n#    ALIAS  CANONICAL\n#\n# ALIAS is the (system dependent) result of \"nl_langinfo (CODESET)\".\n# ALIAS is compared in a case sensitive way.\n#\n# CANONICAL is the GNU canonical name for this character encoding.\n# It must be an encoding supported by libiconv. Support by GNU libc is\n# also desirable. CANONICAL is case insensitive. Usually an upper case\n# MIME charset name is preferred.\n# The current list of GNU canonical charset names is as follows.\n#\n#       name              MIME?             used by which systems\n#                                    (darwin = Mac OS X, woe32 = native Windows)\n#\n#   ASCII, ANSI_X3.4-1968       glibc solaris freebsd netbsd darwin cygwin\n#   ISO-8859-1              Y   glibc aix hpux irix osf solaris freebsd netbsd openbsd darwin cygwin\n#   ISO-8859-2              Y   glibc aix hpux irix osf solaris freebsd netbsd openbsd darwin cygwin\n#   ISO-8859-3              Y   glibc solaris cygwin\n#   ISO-8859-4              Y   osf solaris freebsd netbsd openbsd darwin\n#   ISO-8859-5              Y   glibc aix hpux irix osf solaris freebsd netbsd openbsd darwin cygwin\n#   ISO-8859-6              Y   glibc aix hpux solaris cygwin\n#   ISO-8859-7              Y   glibc aix hpux irix osf solaris netbsd openbsd darwin cygwin\n#   ISO-8859-8              Y   glibc aix hpux osf solaris cygwin\n#   ISO-8859-9              Y   glibc aix hpux irix osf solaris darwin cygwin\n#   ISO-8859-13                 glibc netbsd openbsd darwin cygwin\n#   ISO-8859-14                 glibc cygwin\n#   ISO-8859-15                 glibc aix osf solaris freebsd netbsd openbsd darwin cygwin\n#   KOI8-R                  Y   glibc solaris freebsd netbsd openbsd darwin\n#   KOI8-U                  Y   glibc freebsd netbsd openbsd darwin cygwin\n#   KOI8-T                      glibc\n#   CP437                       dos\n#   CP775                       dos\n#   CP850                       aix osf dos\n#   CP852                       dos\n#   CP855                       dos\n#   CP856                       aix\n#   CP857                       dos\n#   CP861                       dos\n#   CP862                       dos\n#   CP864                       dos\n#   CP865                       dos\n#   CP866                       freebsd netbsd openbsd darwin dos\n#   CP869                       dos\n#   CP874                       woe32 dos\n#   CP922                       aix\n#   CP932                       aix cygwin woe32 dos\n#   CP943                       aix\n#   CP949                       osf darwin woe32 dos\n#   CP950                       woe32 dos\n#   CP1046                      aix\n#   CP1124                      aix\n#   CP1125                      dos\n#   CP1129                      aix\n#   CP1131                      darwin\n#   CP1250                      woe32\n#   CP1251                      glibc solaris netbsd openbsd darwin cygwin woe32\n#   CP1252                      aix woe32\n#   CP1253                      woe32\n#   CP1254                      woe32\n#   CP1255                      glibc woe32\n#   CP1256                      woe32\n#   CP1257                      woe32\n#   GB2312                  Y   glibc aix hpux irix solaris freebsd netbsd darwin\n#   EUC-JP                  Y   glibc aix hpux irix osf solaris freebsd netbsd darwin\n#   EUC-KR                  Y   glibc aix hpux irix osf solaris freebsd netbsd darwin cygwin\n#   EUC-TW                      glibc aix hpux irix osf solaris netbsd\n#   BIG5                    Y   glibc aix hpux osf solaris freebsd netbsd darwin cygwin\n#   BIG5-HKSCS                  glibc solaris darwin\n#   GBK                         glibc aix osf solaris darwin cygwin woe32 dos\n#   GB18030                     glibc solaris netbsd darwin\n#   SHIFT_JIS               Y   hpux osf solaris freebsd netbsd darwin\n#   JOHAB                       glibc solaris woe32\n#   TIS-620                     glibc aix hpux osf solaris cygwin\n#   VISCII                  Y   glibc\n#   TCVN5712-1                  glibc\n#   ARMSCII-8                   glibc darwin\n#   GEORGIAN-PS                 glibc cygwin\n#   PT154                       glibc\n#   HP-ROMAN8                   hpux\n#   HP-ARABIC8                  hpux\n#   HP-GREEK8                   hpux\n#   HP-HEBREW8                  hpux\n#   HP-TURKISH8                 hpux\n#   HP-KANA8                    hpux\n#   DEC-KANJI                   osf\n#   DEC-HANYU                   osf\n#   UTF-8                   Y   glibc aix hpux osf solaris netbsd darwin cygwin\n#\n# Note: Names which are not marked as being a MIME name should not be used in\n# Internet protocols for information interchange (mail, news, etc.).\n#\n# Note: ASCII and ANSI_X3.4-1968 are synonymous canonical names. Applications\n# must understand both names and treat them as equivalent.\n#\n# The first argument passed to this file is the canonical host specification,\n#    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM\n# or\n#    CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM\n\nhost=\"$1\"\nos=`echo \"$host\" | sed -e 's/^[^-]*-[^-]*-\\(.*\\)$/\\1/'`\necho \"# This file contains a table of character encoding aliases,\"\necho \"# suitable for operating system '${os}'.\"\necho \"# It was automatically generated from config.charset.\"\n# List of references, updated during installation:\necho \"# Packages using this file: \"\ncase \"$os\" in\n  linux-gnulibc1*)\n    # Linux libc5 doesn't have nl_langinfo(CODESET); therefore\n    # localcharset.c falls back to using the full locale name\n    # from the environment variables.\n    echo \"C ASCII\"\n    echo \"POSIX ASCII\"\n    for l in af af_ZA ca ca_ES da da_DK de de_AT de_BE de_CH de_DE de_LU \\\n             en en_AU en_BW en_CA en_DK en_GB en_IE en_NZ en_US en_ZA \\\n             en_ZW es es_AR es_BO es_CL es_CO es_DO es_EC es_ES es_GT \\\n             es_HN es_MX es_PA es_PE es_PY es_SV es_US es_UY es_VE et \\\n             et_EE eu eu_ES fi fi_FI fo fo_FO fr fr_BE fr_CA fr_CH fr_FR \\\n             fr_LU ga ga_IE gl gl_ES id id_ID in in_ID is is_IS it it_CH \\\n             it_IT kl kl_GL nl nl_BE nl_NL no no_NO pt pt_BR pt_PT sv \\\n             sv_FI sv_SE; do\n      echo \"$l ISO-8859-1\"\n      echo \"$l.iso-8859-1 ISO-8859-1\"\n      echo \"$l.iso-8859-15 ISO-8859-15\"\n      echo \"$l.iso-8859-15@euro ISO-8859-15\"\n      echo \"$l@euro ISO-8859-15\"\n      echo \"$l.cp-437 CP437\"\n      echo \"$l.cp-850 CP850\"\n      echo \"$l.cp-1252 CP1252\"\n      echo \"$l.cp-1252@euro CP1252\"\n      #echo \"$l.atari-st ATARI-ST\" # not a commonly used encoding\n      echo \"$l.utf-8 UTF-8\"\n      echo \"$l.utf-8@euro UTF-8\"\n    done\n    for l in cs cs_CZ hr hr_HR hu hu_HU pl pl_PL ro ro_RO sk sk_SK sl \\\n             sl_SI sr sr_CS sr_YU; do\n      echo \"$l ISO-8859-2\"\n      echo \"$l.iso-8859-2 ISO-8859-2\"\n      echo \"$l.cp-852 CP852\"\n      echo \"$l.cp-1250 CP1250\"\n      echo \"$l.utf-8 UTF-8\"\n    done\n    for l in mk mk_MK ru ru_RU; do\n      echo \"$l ISO-8859-5\"\n      echo \"$l.iso-8859-5 ISO-8859-5\"\n      echo \"$l.koi8-r KOI8-R\"\n      echo \"$l.cp-866 CP866\"\n      echo \"$l.cp-1251 CP1251\"\n      echo \"$l.utf-8 UTF-8\"\n    done\n    for l in ar ar_SA; do\n      echo \"$l ISO-8859-6\"\n      echo \"$l.iso-8859-6 ISO-8859-6\"\n      echo \"$l.cp-864 CP864\"\n      #echo \"$l.cp-868 CP868\" # not a commonly used encoding\n      echo \"$l.cp-1256 CP1256\"\n      echo \"$l.utf-8 UTF-8\"\n    done\n    for l in el el_GR gr gr_GR; do\n      echo \"$l ISO-8859-7\"\n      echo \"$l.iso-8859-7 ISO-8859-7\"\n      echo \"$l.cp-869 CP869\"\n      echo \"$l.cp-1253 CP1253\"\n      echo \"$l.cp-1253@euro CP1253\"\n      echo \"$l.utf-8 UTF-8\"\n      echo \"$l.utf-8@euro UTF-8\"\n    done\n    for l in he he_IL iw iw_IL; do\n      echo \"$l ISO-8859-8\"\n      echo \"$l.iso-8859-8 ISO-8859-8\"\n      echo \"$l.cp-862 CP862\"\n      echo \"$l.cp-1255 CP1255\"\n      echo \"$l.utf-8 UTF-8\"\n    done\n    for l in tr tr_TR; do\n      echo \"$l ISO-8859-9\"\n      echo \"$l.iso-8859-9 ISO-8859-9\"\n      echo \"$l.cp-857 CP857\"\n      echo \"$l.cp-1254 CP1254\"\n      echo \"$l.utf-8 UTF-8\"\n    done\n    for l in lt lt_LT lv lv_LV; do\n      #echo \"$l BALTIC\" # not a commonly used encoding, wrong encoding name\n      echo \"$l ISO-8859-13\"\n    done\n    for l in ru_UA uk uk_UA; do\n      echo \"$l KOI8-U\"\n    done\n    for l in zh zh_CN; do\n      #echo \"$l GB_2312-80\" # not a commonly used encoding, wrong encoding name\n      echo \"$l GB2312\"\n    done\n    for l in ja ja_JP ja_JP.EUC; do\n      echo \"$l EUC-JP\"\n    done\n    for l in ko ko_KR; do\n      echo \"$l EUC-KR\"\n    done\n    for l in th th_TH; do\n      echo \"$l TIS-620\"\n    done\n    for l in fa fa_IR; do\n      #echo \"$l ISIRI-3342\" # a broken encoding\n      echo \"$l.utf-8 UTF-8\"\n    done\n    ;;\n  linux* | *-gnu*)\n    # With glibc-2.1 or newer, we don't need any canonicalization,\n    # because glibc has iconv and both glibc and libiconv support all\n    # GNU canonical names directly. Therefore, the Makefile does not\n    # need to install the alias file at all.\n    # The following applies only to glibc-2.0.x and older libcs.\n    echo \"ISO_646.IRV:1983 ASCII\"\n    ;;\n  aix*)\n    echo \"ISO8859-1 ISO-8859-1\"\n    echo \"ISO8859-2 ISO-8859-2\"\n    echo \"ISO8859-5 ISO-8859-5\"\n    echo \"ISO8859-6 ISO-8859-6\"\n    echo \"ISO8859-7 ISO-8859-7\"\n    echo \"ISO8859-8 ISO-8859-8\"\n    echo \"ISO8859-9 ISO-8859-9\"\n    echo \"ISO8859-15 ISO-8859-15\"\n    echo \"IBM-850 CP850\"\n    echo \"IBM-856 CP856\"\n    echo \"IBM-921 ISO-8859-13\"\n    echo \"IBM-922 CP922\"\n    echo \"IBM-932 CP932\"\n    echo \"IBM-943 CP943\"\n    echo \"IBM-1046 CP1046\"\n    echo \"IBM-1124 CP1124\"\n    echo \"IBM-1129 CP1129\"\n    echo \"IBM-1252 CP1252\"\n    echo \"IBM-eucCN GB2312\"\n    echo \"IBM-eucJP EUC-JP\"\n    echo \"IBM-eucKR EUC-KR\"\n    echo \"IBM-eucTW EUC-TW\"\n    echo \"big5 BIG5\"\n    echo \"GBK GBK\"\n    echo \"TIS-620 TIS-620\"\n    echo \"UTF-8 UTF-8\"\n    ;;\n  hpux*)\n    echo \"iso88591 ISO-8859-1\"\n    echo \"iso88592 ISO-8859-2\"\n    echo \"iso88595 ISO-8859-5\"\n    echo \"iso88596 ISO-8859-6\"\n    echo \"iso88597 ISO-8859-7\"\n    echo \"iso88598 ISO-8859-8\"\n    echo \"iso88599 ISO-8859-9\"\n    echo \"iso885915 ISO-8859-15\"\n    echo \"roman8 HP-ROMAN8\"\n    echo \"arabic8 HP-ARABIC8\"\n    echo \"greek8 HP-GREEK8\"\n    echo \"hebrew8 HP-HEBREW8\"\n    echo \"turkish8 HP-TURKISH8\"\n    echo \"kana8 HP-KANA8\"\n    echo \"tis620 TIS-620\"\n    echo \"big5 BIG5\"\n    echo \"eucJP EUC-JP\"\n    echo \"eucKR EUC-KR\"\n    echo \"eucTW EUC-TW\"\n    echo \"hp15CN GB2312\"\n    #echo \"ccdc ?\" # what is this?\n    echo \"SJIS SHIFT_JIS\"\n    echo \"utf8 UTF-8\"\n    ;;\n  irix*)\n    echo \"ISO8859-1 ISO-8859-1\"\n    echo \"ISO8859-2 ISO-8859-2\"\n    echo \"ISO8859-5 ISO-8859-5\"\n    echo \"ISO8859-7 ISO-8859-7\"\n    echo \"ISO8859-9 ISO-8859-9\"\n    echo \"eucCN GB2312\"\n    echo \"eucJP EUC-JP\"\n    echo \"eucKR EUC-KR\"\n    echo \"eucTW EUC-TW\"\n    ;;\n  osf*)\n    echo \"ISO8859-1 ISO-8859-1\"\n    echo \"ISO8859-2 ISO-8859-2\"\n    echo \"ISO8859-4 ISO-8859-4\"\n    echo \"ISO8859-5 ISO-8859-5\"\n    echo \"ISO8859-7 ISO-8859-7\"\n    echo \"ISO8859-8 ISO-8859-8\"\n    echo \"ISO8859-9 ISO-8859-9\"\n    echo \"ISO8859-15 ISO-8859-15\"\n    echo \"cp850 CP850\"\n    echo \"big5 BIG5\"\n    echo \"dechanyu DEC-HANYU\"\n    echo \"dechanzi GB2312\"\n    echo \"deckanji DEC-KANJI\"\n    echo \"deckorean EUC-KR\"\n    echo \"eucJP EUC-JP\"\n    echo \"eucKR EUC-KR\"\n    echo \"eucTW EUC-TW\"\n    echo \"GBK GBK\"\n    echo \"KSC5601 CP949\"\n    echo \"sdeckanji EUC-JP\"\n    echo \"SJIS SHIFT_JIS\"\n    echo \"TACTIS TIS-620\"\n    echo \"UTF-8 UTF-8\"\n    ;;\n  solaris*)\n    echo \"646 ASCII\"\n    echo \"ISO8859-1 ISO-8859-1\"\n    echo \"ISO8859-2 ISO-8859-2\"\n    echo \"ISO8859-3 ISO-8859-3\"\n    echo \"ISO8859-4 ISO-8859-4\"\n    echo \"ISO8859-5 ISO-8859-5\"\n    echo \"ISO8859-6 ISO-8859-6\"\n    echo \"ISO8859-7 ISO-8859-7\"\n    echo \"ISO8859-8 ISO-8859-8\"\n    echo \"ISO8859-9 ISO-8859-9\"\n    echo \"ISO8859-15 ISO-8859-15\"\n    echo \"koi8-r KOI8-R\"\n    echo \"ansi-1251 CP1251\"\n    echo \"BIG5 BIG5\"\n    echo \"Big5-HKSCS BIG5-HKSCS\"\n    echo \"gb2312 GB2312\"\n    echo \"GBK GBK\"\n    echo \"GB18030 GB18030\"\n    echo \"cns11643 EUC-TW\"\n    echo \"5601 EUC-KR\"\n    echo \"ko_KR.johap92 JOHAB\"\n    echo \"eucJP EUC-JP\"\n    echo \"PCK SHIFT_JIS\"\n    echo \"TIS620.2533 TIS-620\"\n    #echo \"sun_eu_greek ?\" # what is this?\n    echo \"UTF-8 UTF-8\"\n    ;;\n  freebsd*)\n    # FreeBSD 4.2 doesn't have nl_langinfo(CODESET); therefore\n    # localcharset.c falls back to using the full locale name\n    # from the environment variables.\n    echo \"C ASCII\"\n    echo \"US-ASCII ASCII\"\n    for l in la_LN lt_LN; do\n      echo \"$l.ASCII ASCII\"\n    done\n    for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES \\\n             fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT la_LN \\\n             lt_LN nl_BE nl_NL no_NO pt_PT sv_SE; do\n      echo \"$l.ISO_8859-1 ISO-8859-1\"\n      echo \"$l.DIS_8859-15 ISO-8859-15\"\n    done\n    for l in cs_CZ hr_HR hu_HU la_LN lt_LN pl_PL sl_SI; do\n      echo \"$l.ISO_8859-2 ISO-8859-2\"\n    done\n    for l in la_LN lt_LT; do\n      echo \"$l.ISO_8859-4 ISO-8859-4\"\n    done\n    for l in ru_RU ru_SU; do\n      echo \"$l.KOI8-R KOI8-R\"\n      echo \"$l.ISO_8859-5 ISO-8859-5\"\n      echo \"$l.CP866 CP866\"\n    done\n    echo \"uk_UA.KOI8-U KOI8-U\"\n    echo \"zh_TW.BIG5 BIG5\"\n    echo \"zh_TW.Big5 BIG5\"\n    echo \"zh_CN.EUC GB2312\"\n    echo \"ja_JP.EUC EUC-JP\"\n    echo \"ja_JP.SJIS SHIFT_JIS\"\n    echo \"ja_JP.Shift_JIS SHIFT_JIS\"\n    echo \"ko_KR.EUC EUC-KR\"\n    ;;\n  netbsd*)\n    echo \"646 ASCII\"\n    echo \"ISO8859-1 ISO-8859-1\"\n    echo \"ISO8859-2 ISO-8859-2\"\n    echo \"ISO8859-4 ISO-8859-4\"\n    echo \"ISO8859-5 ISO-8859-5\"\n    echo \"ISO8859-7 ISO-8859-7\"\n    echo \"ISO8859-13 ISO-8859-13\"\n    echo \"ISO8859-15 ISO-8859-15\"\n    echo \"eucCN GB2312\"\n    echo \"eucJP EUC-JP\"\n    echo \"eucKR EUC-KR\"\n    echo \"eucTW EUC-TW\"\n    echo \"BIG5 BIG5\"\n    echo \"SJIS SHIFT_JIS\"\n    ;;\n  openbsd*)\n    echo \"646 ASCII\"\n    echo \"ISO8859-1 ISO-8859-1\"\n    echo \"ISO8859-2 ISO-8859-2\"\n    echo \"ISO8859-4 ISO-8859-4\"\n    echo \"ISO8859-5 ISO-8859-5\"\n    echo \"ISO8859-7 ISO-8859-7\"\n    echo \"ISO8859-13 ISO-8859-13\"\n    echo \"ISO8859-15 ISO-8859-15\"\n    ;;\n  darwin[56]*)\n    # Darwin 6.8 doesn't have nl_langinfo(CODESET); therefore\n    # localcharset.c falls back to using the full locale name\n    # from the environment variables.\n    echo \"C ASCII\"\n    for l in en_AU en_CA en_GB en_US la_LN; do\n      echo \"$l.US-ASCII ASCII\"\n    done\n    for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES \\\n             fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT nl_BE \\\n             nl_NL no_NO pt_PT sv_SE; do\n      echo \"$l ISO-8859-1\"\n      echo \"$l.ISO8859-1 ISO-8859-1\"\n      echo \"$l.ISO8859-15 ISO-8859-15\"\n    done\n    for l in la_LN; do\n      echo \"$l.ISO8859-1 ISO-8859-1\"\n      echo \"$l.ISO8859-15 ISO-8859-15\"\n    done\n    for l in cs_CZ hr_HR hu_HU la_LN pl_PL sl_SI; do\n      echo \"$l.ISO8859-2 ISO-8859-2\"\n    done\n    for l in la_LN lt_LT; do\n      echo \"$l.ISO8859-4 ISO-8859-4\"\n    done\n    for l in ru_RU; do\n      echo \"$l.KOI8-R KOI8-R\"\n      echo \"$l.ISO8859-5 ISO-8859-5\"\n      echo \"$l.CP866 CP866\"\n    done\n    for l in bg_BG; do\n      echo \"$l.CP1251 CP1251\"\n    done\n    echo \"uk_UA.KOI8-U KOI8-U\"\n    echo \"zh_TW.BIG5 BIG5\"\n    echo \"zh_TW.Big5 BIG5\"\n    echo \"zh_CN.EUC GB2312\"\n    echo \"ja_JP.EUC EUC-JP\"\n    echo \"ja_JP.SJIS SHIFT_JIS\"\n    echo \"ko_KR.EUC EUC-KR\"\n    ;;\n  darwin*)\n    # Darwin 7.5 has nl_langinfo(CODESET), but sometimes its value is\n    # useless:\n    # - It returns the empty string when LANG is set to a locale of the\n    #   form ll_CC, although ll_CC/LC_CTYPE is a symlink to an UTF-8\n    #   LC_CTYPE file.\n    # - The environment variables LANG, LC_CTYPE, LC_ALL are not set by\n    #   the system; nl_langinfo(CODESET) returns \"US-ASCII\" in this case.\n    # - The documentation says:\n    #     \"... all code that calls BSD system routines should ensure\n    #      that the const *char parameters of these routines are in UTF-8\n    #      encoding. All BSD system functions expect their string\n    #      parameters to be in UTF-8 encoding and nothing else.\"\n    #   It also says\n    #     \"An additional caveat is that string parameters for files,\n    #      paths, and other file-system entities must be in canonical\n    #      UTF-8. In a canonical UTF-8 Unicode string, all decomposable\n    #      characters are decomposed ...\"\n    #   but this is not true: You can pass non-decomposed UTF-8 strings\n    #   to file system functions, and it is the OS which will convert\n    #   them to decomposed UTF-8 before accessing the file system.\n    # - The Apple Terminal application displays UTF-8 by default.\n    # - However, other applications are free to use different encodings:\n    #   - xterm uses ISO-8859-1 by default.\n    #   - TextEdit uses MacRoman by default.\n    # We prefer UTF-8 over decomposed UTF-8-MAC because one should\n    # minimize the use of decomposed Unicode. Unfortunately, through the\n    # Darwin file system, decomposed UTF-8 strings are leaked into user\n    # space nevertheless.\n    # Then there are also the locales with encodings other than US-ASCII\n    # and UTF-8. These locales can be occasionally useful to users (e.g.\n    # when grepping through ISO-8859-1 encoded text files), when all their\n    # file names are in US-ASCII.\n    echo \"ISO8859-1 ISO-8859-1\"\n    echo \"ISO8859-2 ISO-8859-2\"\n    echo \"ISO8859-4 ISO-8859-4\"\n    echo \"ISO8859-5 ISO-8859-5\"\n    echo \"ISO8859-7 ISO-8859-7\"\n    echo \"ISO8859-9 ISO-8859-9\"\n    echo \"ISO8859-13 ISO-8859-13\"\n    echo \"ISO8859-15 ISO-8859-15\"\n    echo \"KOI8-R KOI8-R\"\n    echo \"KOI8-U KOI8-U\"\n    echo \"CP866 CP866\"\n    echo \"CP949 CP949\"\n    echo \"CP1131 CP1131\"\n    echo \"CP1251 CP1251\"\n    echo \"eucCN GB2312\"\n    echo \"GB2312 GB2312\"\n    echo \"eucJP EUC-JP\"\n    echo \"eucKR EUC-KR\"\n    echo \"Big5 BIG5\"\n    echo \"Big5HKSCS BIG5-HKSCS\"\n    echo \"GBK GBK\"\n    echo \"GB18030 GB18030\"\n    echo \"SJIS SHIFT_JIS\"\n    echo \"ARMSCII-8 ARMSCII-8\"\n    echo \"PT154 PT154\"\n    #echo \"ISCII-DEV ?\"\n    echo \"* UTF-8\"\n    ;;\n  beos* | haiku*)\n    # BeOS and Haiku have a single locale, and it has UTF-8 encoding.\n    echo \"* UTF-8\"\n    ;;\n  msdosdjgpp*)\n    # DJGPP 2.03 doesn't have nl_langinfo(CODESET); therefore\n    # localcharset.c falls back to using the full locale name\n    # from the environment variables.\n    echo \"#\"\n    echo \"# The encodings given here may not all be correct.\"\n    echo \"# If you find that the encoding given for your language and\"\n    echo \"# country is not the one your DOS machine actually uses, just\"\n    echo \"# correct it in this file, and send a mail to\"\n    echo \"# Juan Manuel Guerrero <juan.guerrero@gmx.de>\"\n    echo \"# and Bruno Haible <bruno@clisp.org>.\"\n    echo \"#\"\n    echo \"C ASCII\"\n    # ISO-8859-1 languages\n    echo \"ca CP850\"\n    echo \"ca_ES CP850\"\n    echo \"da CP865\"    # not CP850 ??\n    echo \"da_DK CP865\" # not CP850 ??\n    echo \"de CP850\"\n    echo \"de_AT CP850\"\n    echo \"de_CH CP850\"\n    echo \"de_DE CP850\"\n    echo \"en CP850\"\n    echo \"en_AU CP850\" # not CP437 ??\n    echo \"en_CA CP850\"\n    echo \"en_GB CP850\"\n    echo \"en_NZ CP437\"\n    echo \"en_US CP437\"\n    echo \"en_ZA CP850\" # not CP437 ??\n    echo \"es CP850\"\n    echo \"es_AR CP850\"\n    echo \"es_BO CP850\"\n    echo \"es_CL CP850\"\n    echo \"es_CO CP850\"\n    echo \"es_CR CP850\"\n    echo \"es_CU CP850\"\n    echo \"es_DO CP850\"\n    echo \"es_EC CP850\"\n    echo \"es_ES CP850\"\n    echo \"es_GT CP850\"\n    echo \"es_HN CP850\"\n    echo \"es_MX CP850\"\n    echo \"es_NI CP850\"\n    echo \"es_PA CP850\"\n    echo \"es_PY CP850\"\n    echo \"es_PE CP850\"\n    echo \"es_SV CP850\"\n    echo \"es_UY CP850\"\n    echo \"es_VE CP850\"\n    echo \"et CP850\"\n    echo \"et_EE CP850\"\n    echo \"eu CP850\"\n    echo \"eu_ES CP850\"\n    echo \"fi CP850\"\n    echo \"fi_FI CP850\"\n    echo \"fr CP850\"\n    echo \"fr_BE CP850\"\n    echo \"fr_CA CP850\"\n    echo \"fr_CH CP850\"\n    echo \"fr_FR CP850\"\n    echo \"ga CP850\"\n    echo \"ga_IE CP850\"\n    echo \"gd CP850\"\n    echo \"gd_GB CP850\"\n    echo \"gl CP850\"\n    echo \"gl_ES CP850\"\n    echo \"id CP850\"    # not CP437 ??\n    echo \"id_ID CP850\" # not CP437 ??\n    echo \"is CP861\"    # not CP850 ??\n    echo \"is_IS CP861\" # not CP850 ??\n    echo \"it CP850\"\n    echo \"it_CH CP850\"\n    echo \"it_IT CP850\"\n    echo \"lt CP775\"\n    echo \"lt_LT CP775\"\n    echo \"lv CP775\"\n    echo \"lv_LV CP775\"\n    echo \"nb CP865\"    # not CP850 ??\n    echo \"nb_NO CP865\" # not CP850 ??\n    echo \"nl CP850\"\n    echo \"nl_BE CP850\"\n    echo \"nl_NL CP850\"\n    echo \"nn CP865\"    # not CP850 ??\n    echo \"nn_NO CP865\" # not CP850 ??\n    echo \"no CP865\"    # not CP850 ??\n    echo \"no_NO CP865\" # not CP850 ??\n    echo \"pt CP850\"\n    echo \"pt_BR CP850\"\n    echo \"pt_PT CP850\"\n    echo \"sv CP850\"\n    echo \"sv_SE CP850\"\n    # ISO-8859-2 languages\n    echo \"cs CP852\"\n    echo \"cs_CZ CP852\"\n    echo \"hr CP852\"\n    echo \"hr_HR CP852\"\n    echo \"hu CP852\"\n    echo \"hu_HU CP852\"\n    echo \"pl CP852\"\n    echo \"pl_PL CP852\"\n    echo \"ro CP852\"\n    echo \"ro_RO CP852\"\n    echo \"sk CP852\"\n    echo \"sk_SK CP852\"\n    echo \"sl CP852\"\n    echo \"sl_SI CP852\"\n    echo \"sq CP852\"\n    echo \"sq_AL CP852\"\n    echo \"sr CP852\"    # CP852 or CP866 or CP855 ??\n    echo \"sr_CS CP852\" # CP852 or CP866 or CP855 ??\n    echo \"sr_YU CP852\" # CP852 or CP866 or CP855 ??\n    # ISO-8859-3 languages\n    echo \"mt CP850\"\n    echo \"mt_MT CP850\"\n    # ISO-8859-5 languages\n    echo \"be CP866\"\n    echo \"be_BE CP866\"\n    echo \"bg CP866\"    # not CP855 ??\n    echo \"bg_BG CP866\" # not CP855 ??\n    echo \"mk CP866\"    # not CP855 ??\n    echo \"mk_MK CP866\" # not CP855 ??\n    echo \"ru CP866\"\n    echo \"ru_RU CP866\"\n    echo \"uk CP1125\"\n    echo \"uk_UA CP1125\"\n    # ISO-8859-6 languages\n    echo \"ar CP864\"\n    echo \"ar_AE CP864\"\n    echo \"ar_DZ CP864\"\n    echo \"ar_EG CP864\"\n    echo \"ar_IQ CP864\"\n    echo \"ar_IR CP864\"\n    echo \"ar_JO CP864\"\n    echo \"ar_KW CP864\"\n    echo \"ar_MA CP864\"\n    echo \"ar_OM CP864\"\n    echo \"ar_QA CP864\"\n    echo \"ar_SA CP864\"\n    echo \"ar_SY CP864\"\n    # ISO-8859-7 languages\n    echo \"el CP869\"\n    echo \"el_GR CP869\"\n    # ISO-8859-8 languages\n    echo \"he CP862\"\n    echo \"he_IL CP862\"\n    # ISO-8859-9 languages\n    echo \"tr CP857\"\n    echo \"tr_TR CP857\"\n    # Japanese\n    echo \"ja CP932\"\n    echo \"ja_JP CP932\"\n    # Chinese\n    echo \"zh_CN GBK\"\n    echo \"zh_TW CP950\" # not CP938 ??\n    # Korean\n    echo \"kr CP949\"    # not CP934 ??\n    echo \"kr_KR CP949\" # not CP934 ??\n    # Thai\n    echo \"th CP874\"\n    echo \"th_TH CP874\"\n    # Other\n    echo \"eo CP850\"\n    echo \"eo_EO CP850\"\n    ;;\nesac\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/libcharset.la",
    "content": "# libcharset.la - a libtool library file\n# Generated by libtool (GNU libtool) 2.4.6\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# The name that we can dlopen(3).\ndlname='libcharset.1.dylib'\n\n# Names of this library.\nlibrary_names='libcharset.1.dylib libcharset.dylib'\n\n# The name of the static archive.\nold_library='libcharset.a'\n\n# Linker flags that cannot go in dependency_libs.\ninherited_linker_flags=' '\n\n# Libraries that this one depends upon.\ndependency_libs=''\n\n# Names of additional weak libraries provided by this library\nweak_library_names=''\n\n# Version information for libcharset.\ncurrent=1\nage=0\nrevision=0\n\n# Is this an already installed library?\ninstalled=no\n\n# Should we warn about portability when linking against -modules?\nshouldnotlink=no\n\n# Files to dlopen/dlpreopen\ndlopen=''\ndlpreopen=''\n\n# Directory that this library needs to be installed in:\nlibdir='/usr/local/lib'\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/localcharset.c",
    "content": "/* Determine a canonical name for the current locale's character encoding.\n\n   Copyright (C) 2000-2006, 2008-2012 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify it\n   under the terms of the GNU Library General Public License as published\n   by the Free Software Foundation; either version 2, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Bruno Haible <bruno@clisp.org>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include \"localcharset.h\"\n\n#include <fcntl.h>\n#include <stddef.h>\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n\n#if defined __APPLE__ && defined __MACH__ && HAVE_LANGINFO_CODESET\n# define DARWIN7 /* Darwin 7 or newer, i.e. Mac OS X 10.3 or newer */\n#endif\n\n#if defined _WIN32 || defined __WIN32__\n# define WINDOWS_NATIVE\n# include <locale.h>\n#endif\n\n#if defined __EMX__\n/* Assume EMX program runs on OS/2, even if compiled under DOS.  */\n# ifndef OS2\n#  define OS2\n# endif\n#endif\n\n#if !defined WINDOWS_NATIVE\n# include <unistd.h>\n# if HAVE_LANGINFO_CODESET\n#  include <langinfo.h>\n# else\n#  if 0 /* see comment below */\n#   include <locale.h>\n#  endif\n# endif\n# ifdef __CYGWIN__\n#  define WIN32_LEAN_AND_MEAN\n#  include <windows.h>\n# endif\n#elif defined WINDOWS_NATIVE\n# define WIN32_LEAN_AND_MEAN\n# include <windows.h>\n#endif\n#if defined OS2\n# define INCL_DOS\n# include <os2.h>\n#endif\n\n/* For MB_CUR_MAX_L */\n#if defined DARWIN7\n# include <xlocale.h>\n#endif\n\n#if ENABLE_RELOCATABLE\n# include \"relocatable.h\"\n#else\n# define relocate(pathname) (pathname)\n#endif\n\n/* Get LIBDIR.  */\n#ifndef LIBDIR\n# include \"configmake.h\"\n#endif\n\n/* Define O_NOFOLLOW to 0 on platforms where it does not exist.  */\n#ifndef O_NOFOLLOW\n# define O_NOFOLLOW 0\n#endif\n\n#if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__\n  /* Native Windows, Cygwin, OS/2, DOS */\n# define ISSLASH(C) ((C) == '/' || (C) == '\\\\')\n#endif\n\n#ifndef DIRECTORY_SEPARATOR\n# define DIRECTORY_SEPARATOR '/'\n#endif\n\n#ifndef ISSLASH\n# define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR)\n#endif\n\n#if HAVE_DECL_GETC_UNLOCKED\n# undef getc\n# define getc getc_unlocked\n#endif\n\n/* The following static variable is declared 'volatile' to avoid a\n   possible multithread problem in the function get_charset_aliases. If we\n   are running in a threaded environment, and if two threads initialize\n   'charset_aliases' simultaneously, both will produce the same value,\n   and everything will be ok if the two assignments to 'charset_aliases'\n   are atomic. But I don't know what will happen if the two assignments mix.  */\n#if __STDC__ != 1\n# define volatile /* empty */\n#endif\n/* Pointer to the contents of the charset.alias file, if it has already been\n   read, else NULL.  Its format is:\n   ALIAS_1 '\\0' CANONICAL_1 '\\0' ... ALIAS_n '\\0' CANONICAL_n '\\0' '\\0'  */\nstatic const char * volatile charset_aliases;\n\n/* Return a pointer to the contents of the charset.alias file.  */\nstatic const char *\nget_charset_aliases (void)\n{\n  int c;\n  const char *cp;\n\n  cp = charset_aliases;\n  if (cp == NULL)\n    {\n#if !(defined DARWIN7 || defined VMS || defined WINDOWS_NATIVE || defined __CYGWIN__ || defined OS2)\n      const char *dir;\n      const char *base = \"charset.alias\";\n      char *file_name;\n\n      /* Make it possible to override the charset.alias location.  This is\n         necessary for running the testsuite before \"make install\".  */\n      dir = getenv (\"CHARSETALIASDIR\");\n      if (dir == NULL || dir[0] == '\\0')\n        dir = relocate (LIBDIR);\n\n      /* Concatenate dir and base into freshly allocated file_name.  */\n      {\n        size_t dir_len = strlen (dir);\n        size_t base_len = strlen (base);\n        int add_slash = (dir_len > 0 && !ISSLASH (dir[dir_len - 1]));\n        file_name = (char *) malloc (dir_len + add_slash + base_len + 1);\n        if (file_name != NULL)\n          {\n            memcpy (file_name, dir, dir_len);\n            if (add_slash)\n              file_name[dir_len] = DIRECTORY_SEPARATOR;\n            memcpy (file_name + dir_len + add_slash, base, base_len + 1);\n          }\n      }\n\n      if (file_name == NULL)\n        /* Out of memory.  Treat the file as empty.  */\n        cp = \"\";\n      else\n        {\n          int fd;\n\n          /* Open the file.  Reject symbolic links on platforms that support\n             O_NOFOLLOW.  This is a security feature.  Without it, an attacker\n             could retrieve parts of the contents (namely, the tail of the\n             first line that starts with \"* \") of an arbitrary file by placing\n             a symbolic link to that file under the name \"charset.alias\" in\n             some writable directory and defining the environment variable\n             CHARSETALIASDIR to point to that directory.  */\n          fd = open (file_name,\n                     O_RDONLY | (HAVE_WORKING_O_NOFOLLOW ? O_NOFOLLOW : 0));\n          if (fd < 0)\n            /* File not found.  Treat it as empty.  */\n            cp = \"\";\n          else\n            {\n              FILE *fp;\n\n              fp = fdopen (fd, \"r\");\n              if (fp == NULL)\n                {\n                  /* Out of memory.  Treat the file as empty.  */\n                  close (fd);\n                  cp = \"\";\n                }\n              else\n                {\n                  /* Parse the file's contents.  */\n                  char *res_ptr = NULL;\n                  size_t res_size = 0;\n\n                  for (;;)\n                    {\n                      char buf1[50+1];\n                      char buf2[50+1];\n                      size_t l1, l2;\n                      char *old_res_ptr;\n\n                      c = getc (fp);\n                      if (c == EOF)\n                        break;\n                      if (c == '\\n' || c == ' ' || c == '\\t')\n                        continue;\n                      if (c == '#')\n                        {\n                          /* Skip comment, to end of line.  */\n                          do\n                            c = getc (fp);\n                          while (!(c == EOF || c == '\\n'));\n                          if (c == EOF)\n                            break;\n                          continue;\n                        }\n                      ungetc (c, fp);\n                      if (fscanf (fp, \"%50s %50s\", buf1, buf2) < 2)\n                        break;\n                      l1 = strlen (buf1);\n                      l2 = strlen (buf2);\n                      old_res_ptr = res_ptr;\n                      if (res_size == 0)\n                        {\n                          res_size = l1 + 1 + l2 + 1;\n                          res_ptr = (char *) malloc (res_size + 1);\n                        }\n                      else\n                        {\n                          res_size += l1 + 1 + l2 + 1;\n                          res_ptr = (char *) realloc (res_ptr, res_size + 1);\n                        }\n                      if (res_ptr == NULL)\n                        {\n                          /* Out of memory. */\n                          res_size = 0;\n                          free (old_res_ptr);\n                          break;\n                        }\n                      strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);\n                      strcpy (res_ptr + res_size - (l2 + 1), buf2);\n                    }\n                  fclose (fp);\n                  if (res_size == 0)\n                    cp = \"\";\n                  else\n                    {\n                      *(res_ptr + res_size) = '\\0';\n                      cp = res_ptr;\n                    }\n                }\n            }\n\n          free (file_name);\n        }\n\n#else\n\n# if defined DARWIN7\n      /* To avoid the trouble of installing a file that is shared by many\n         GNU packages -- many packaging systems have problems with this --,\n         simply inline the aliases here.  */\n      cp = \"ISO8859-1\" \"\\0\" \"ISO-8859-1\" \"\\0\"\n           \"ISO8859-2\" \"\\0\" \"ISO-8859-2\" \"\\0\"\n           \"ISO8859-4\" \"\\0\" \"ISO-8859-4\" \"\\0\"\n           \"ISO8859-5\" \"\\0\" \"ISO-8859-5\" \"\\0\"\n           \"ISO8859-7\" \"\\0\" \"ISO-8859-7\" \"\\0\"\n           \"ISO8859-9\" \"\\0\" \"ISO-8859-9\" \"\\0\"\n           \"ISO8859-13\" \"\\0\" \"ISO-8859-13\" \"\\0\"\n           \"ISO8859-15\" \"\\0\" \"ISO-8859-15\" \"\\0\"\n           \"KOI8-R\" \"\\0\" \"KOI8-R\" \"\\0\"\n           \"KOI8-U\" \"\\0\" \"KOI8-U\" \"\\0\"\n           \"CP866\" \"\\0\" \"CP866\" \"\\0\"\n           \"CP949\" \"\\0\" \"CP949\" \"\\0\"\n           \"CP1131\" \"\\0\" \"CP1131\" \"\\0\"\n           \"CP1251\" \"\\0\" \"CP1251\" \"\\0\"\n           \"eucCN\" \"\\0\" \"GB2312\" \"\\0\"\n           \"GB2312\" \"\\0\" \"GB2312\" \"\\0\"\n           \"eucJP\" \"\\0\" \"EUC-JP\" \"\\0\"\n           \"eucKR\" \"\\0\" \"EUC-KR\" \"\\0\"\n           \"Big5\" \"\\0\" \"BIG5\" \"\\0\"\n           \"Big5HKSCS\" \"\\0\" \"BIG5-HKSCS\" \"\\0\"\n           \"GBK\" \"\\0\" \"GBK\" \"\\0\"\n           \"GB18030\" \"\\0\" \"GB18030\" \"\\0\"\n           \"SJIS\" \"\\0\" \"SHIFT_JIS\" \"\\0\"\n           \"ARMSCII-8\" \"\\0\" \"ARMSCII-8\" \"\\0\"\n           \"PT154\" \"\\0\" \"PT154\" \"\\0\"\n         /*\"ISCII-DEV\" \"\\0\" \"?\" \"\\0\"*/\n           \"*\" \"\\0\" \"UTF-8\" \"\\0\";\n# endif\n\n# if defined VMS\n      /* To avoid the troubles of an extra file charset.alias_vms in the\n         sources of many GNU packages, simply inline the aliases here.  */\n      /* The list of encodings is taken from the OpenVMS 7.3-1 documentation\n         \"Compaq C Run-Time Library Reference Manual for OpenVMS systems\"\n         section 10.7 \"Handling Different Character Sets\".  */\n      cp = \"ISO8859-1\" \"\\0\" \"ISO-8859-1\" \"\\0\"\n           \"ISO8859-2\" \"\\0\" \"ISO-8859-2\" \"\\0\"\n           \"ISO8859-5\" \"\\0\" \"ISO-8859-5\" \"\\0\"\n           \"ISO8859-7\" \"\\0\" \"ISO-8859-7\" \"\\0\"\n           \"ISO8859-8\" \"\\0\" \"ISO-8859-8\" \"\\0\"\n           \"ISO8859-9\" \"\\0\" \"ISO-8859-9\" \"\\0\"\n           /* Japanese */\n           \"eucJP\" \"\\0\" \"EUC-JP\" \"\\0\"\n           \"SJIS\" \"\\0\" \"SHIFT_JIS\" \"\\0\"\n           \"DECKANJI\" \"\\0\" \"DEC-KANJI\" \"\\0\"\n           \"SDECKANJI\" \"\\0\" \"EUC-JP\" \"\\0\"\n           /* Chinese */\n           \"eucTW\" \"\\0\" \"EUC-TW\" \"\\0\"\n           \"DECHANYU\" \"\\0\" \"DEC-HANYU\" \"\\0\"\n           \"DECHANZI\" \"\\0\" \"GB2312\" \"\\0\"\n           /* Korean */\n           \"DECKOREAN\" \"\\0\" \"EUC-KR\" \"\\0\";\n# endif\n\n# if defined WINDOWS_NATIVE || defined __CYGWIN__\n      /* To avoid the troubles of installing a separate file in the same\n         directory as the DLL and of retrieving the DLL's directory at\n         runtime, simply inline the aliases here.  */\n\n      cp = \"CP936\" \"\\0\" \"GBK\" \"\\0\"\n           \"CP1361\" \"\\0\" \"JOHAB\" \"\\0\"\n           \"CP20127\" \"\\0\" \"ASCII\" \"\\0\"\n           \"CP20866\" \"\\0\" \"KOI8-R\" \"\\0\"\n           \"CP20936\" \"\\0\" \"GB2312\" \"\\0\"\n           \"CP21866\" \"\\0\" \"KOI8-RU\" \"\\0\"\n           \"CP28591\" \"\\0\" \"ISO-8859-1\" \"\\0\"\n           \"CP28592\" \"\\0\" \"ISO-8859-2\" \"\\0\"\n           \"CP28593\" \"\\0\" \"ISO-8859-3\" \"\\0\"\n           \"CP28594\" \"\\0\" \"ISO-8859-4\" \"\\0\"\n           \"CP28595\" \"\\0\" \"ISO-8859-5\" \"\\0\"\n           \"CP28596\" \"\\0\" \"ISO-8859-6\" \"\\0\"\n           \"CP28597\" \"\\0\" \"ISO-8859-7\" \"\\0\"\n           \"CP28598\" \"\\0\" \"ISO-8859-8\" \"\\0\"\n           \"CP28599\" \"\\0\" \"ISO-8859-9\" \"\\0\"\n           \"CP28605\" \"\\0\" \"ISO-8859-15\" \"\\0\"\n           \"CP38598\" \"\\0\" \"ISO-8859-8\" \"\\0\"\n           \"CP51932\" \"\\0\" \"EUC-JP\" \"\\0\"\n           \"CP51936\" \"\\0\" \"GB2312\" \"\\0\"\n           \"CP51949\" \"\\0\" \"EUC-KR\" \"\\0\"\n           \"CP51950\" \"\\0\" \"EUC-TW\" \"\\0\"\n           \"CP54936\" \"\\0\" \"GB18030\" \"\\0\"\n           \"CP65001\" \"\\0\" \"UTF-8\" \"\\0\";\n# endif\n# if defined OS2\n      /* To avoid the troubles of installing a separate file in the same\n         directory as the DLL and of retrieving the DLL's directory at\n         runtime, simply inline the aliases here.  */\n\n      /* The list of encodings is taken from \"List of OS/2 Codepages\"\n         by Alex Taylor:\n         <http://altsan.org/os2/toolkits/uls/index.html#codepages>.\n         See also \"IBM Globalization - Code page identifiers\":\n         <http://www-01.ibm.com/software/globalization/cp/cp_cpgid.html>.  */\n      cp = \"CP813\" \"\\0\" \"ISO-8859-7\" \"\\0\"\n           \"CP878\" \"\\0\" \"KOI8-R\" \"\\0\"\n           \"CP819\" \"\\0\" \"ISO-8859-1\" \"\\0\"\n           \"CP912\" \"\\0\" \"ISO-8859-2\" \"\\0\"\n           \"CP913\" \"\\0\" \"ISO-8859-3\" \"\\0\"\n           \"CP914\" \"\\0\" \"ISO-8859-4\" \"\\0\"\n           \"CP915\" \"\\0\" \"ISO-8859-5\" \"\\0\"\n           \"CP916\" \"\\0\" \"ISO-8859-8\" \"\\0\"\n           \"CP920\" \"\\0\" \"ISO-8859-9\" \"\\0\"\n           \"CP921\" \"\\0\" \"ISO-8859-13\" \"\\0\"\n           \"CP923\" \"\\0\" \"ISO-8859-15\" \"\\0\"\n           \"CP954\" \"\\0\" \"EUC-JP\" \"\\0\"\n           \"CP964\" \"\\0\" \"EUC-TW\" \"\\0\"\n           \"CP970\" \"\\0\" \"EUC-KR\" \"\\0\"\n           \"CP1089\" \"\\0\" \"ISO-8859-6\" \"\\0\"\n           \"CP1208\" \"\\0\" \"UTF-8\" \"\\0\"\n           \"CP1381\" \"\\0\" \"GB2312\" \"\\0\"\n           \"CP1386\" \"\\0\" \"GBK\" \"\\0\"\n           \"CP3372\" \"\\0\" \"EUC-JP\" \"\\0\";\n# endif\n#endif\n\n      charset_aliases = cp;\n    }\n\n  return cp;\n}\n\n/* Determine the current locale's character encoding, and canonicalize it\n   into one of the canonical names listed in config.charset.\n   The result must not be freed; it is statically allocated.\n   If the canonical name cannot be determined, the result is a non-canonical\n   name.  */\n\n#ifdef STATIC\nSTATIC\n#endif\nconst char *\nlocale_charset (void)\n{\n  const char *codeset;\n  const char *aliases;\n\n#if !(defined WINDOWS_NATIVE || defined OS2)\n\n# if HAVE_LANGINFO_CODESET\n\n  /* Most systems support nl_langinfo (CODESET) nowadays.  */\n  codeset = nl_langinfo (CODESET);\n\n#  ifdef __CYGWIN__\n  /* Cygwin < 1.7 does not have locales.  nl_langinfo (CODESET) always\n     returns \"US-ASCII\".  Return the suffix of the locale name from the\n     environment variables (if present) or the codepage as a number.  */\n  if (codeset != NULL && strcmp (codeset, \"US-ASCII\") == 0)\n    {\n      const char *locale;\n      static char buf[2 + 10 + 1];\n\n      locale = getenv (\"LC_ALL\");\n      if (locale == NULL || locale[0] == '\\0')\n        {\n          locale = getenv (\"LC_CTYPE\");\n          if (locale == NULL || locale[0] == '\\0')\n            locale = getenv (\"LANG\");\n        }\n      if (locale != NULL && locale[0] != '\\0')\n        {\n          /* If the locale name contains an encoding after the dot, return\n             it.  */\n          const char *dot = strchr (locale, '.');\n\n          if (dot != NULL)\n            {\n              const char *modifier;\n\n              dot++;\n              /* Look for the possible @... trailer and remove it, if any.  */\n              modifier = strchr (dot, '@');\n              if (modifier == NULL)\n                return dot;\n              if (modifier - dot < sizeof (buf))\n                {\n                  memcpy (buf, dot, modifier - dot);\n                  buf [modifier - dot] = '\\0';\n                  return buf;\n                }\n            }\n        }\n\n      /* The Windows API has a function returning the locale's codepage as a\n         number: GetACP().  This encoding is used by Cygwin, unless the user\n         has set the environment variable CYGWIN=codepage:oem (which very few\n         people do).\n         Output directed to console windows needs to be converted (to\n         GetOEMCP() if the console is using a raster font, or to\n         GetConsoleOutputCP() if it is using a TrueType font).  Cygwin does\n         this conversion transparently (see winsup/cygwin/fhandler_console.cc),\n         converting to GetConsoleOutputCP().  This leads to correct results,\n         except when SetConsoleOutputCP has been called and a raster font is\n         in use.  */\n      sprintf (buf, \"CP%u\", GetACP ());\n      codeset = buf;\n    }\n#  endif\n\n# else\n\n  /* On old systems which lack it, use setlocale or getenv.  */\n  const char *locale = NULL;\n\n  /* But most old systems don't have a complete set of locales.  Some\n     (like SunOS 4 or DJGPP) have only the C locale.  Therefore we don't\n     use setlocale here; it would return \"C\" when it doesn't support the\n     locale name the user has set.  */\n#  if 0\n  locale = setlocale (LC_CTYPE, NULL);\n#  endif\n  if (locale == NULL || locale[0] == '\\0')\n    {\n      locale = getenv (\"LC_ALL\");\n      if (locale == NULL || locale[0] == '\\0')\n        {\n          locale = getenv (\"LC_CTYPE\");\n          if (locale == NULL || locale[0] == '\\0')\n            locale = getenv (\"LANG\");\n        }\n    }\n\n  /* On some old systems, one used to set locale = \"iso8859_1\". On others,\n     you set it to \"language_COUNTRY.charset\". In any case, we resolve it\n     through the charset.alias file.  */\n  codeset = locale;\n\n# endif\n\n#elif defined WINDOWS_NATIVE\n\n  static char buf[2 + 10 + 1];\n\n  /* The Windows API has a function returning the locale's codepage as\n     a number, but the value doesn't change according to what the\n     'setlocale' call specified.  So we use it as a last resort, in\n     case the string returned by 'setlocale' doesn't specify the\n     codepage.  */\n  char *current_locale = setlocale (LC_ALL, NULL);\n  char *pdot;\n\n  /* If they set different locales for different categories,\n     'setlocale' will return a semi-colon separated list of locale\n     values.  To make sure we use the correct one, we choose LC_CTYPE.  */\n  if (strchr (current_locale, ';'))\n    current_locale = setlocale (LC_CTYPE, NULL);\n\n  pdot = strrchr (current_locale, '.');\n  if (pdot && 2 + strlen (pdot + 1) + 1 <= sizeof (buf))\n    sprintf (buf, \"CP%s\", pdot + 1);\n  else\n    {\n      /* The Windows API has a function returning the locale's codepage as a\n        number: GetACP().\n        When the output goes to a console window, it needs to be provided in\n        GetOEMCP() encoding if the console is using a raster font, or in\n        GetConsoleOutputCP() encoding if it is using a TrueType font.\n        But in GUI programs and for output sent to files and pipes, GetACP()\n        encoding is the best bet.  */\n      sprintf (buf, \"CP%u\", GetACP ());\n    }\n  codeset = buf;\n\n#elif defined OS2\n\n  const char *locale;\n  static char buf[2 + 10 + 1];\n  ULONG cp[3];\n  ULONG cplen;\n\n  codeset = NULL;\n\n  /* Allow user to override the codeset, as set in the operating system,\n     with standard language environment variables.  */\n  locale = getenv (\"LC_ALL\");\n  if (locale == NULL || locale[0] == '\\0')\n    {\n      locale = getenv (\"LC_CTYPE\");\n      if (locale == NULL || locale[0] == '\\0')\n        locale = getenv (\"LANG\");\n    }\n  if (locale != NULL && locale[0] != '\\0')\n    {\n      /* If the locale name contains an encoding after the dot, return it.  */\n      const char *dot = strchr (locale, '.');\n\n      if (dot != NULL)\n        {\n          const char *modifier;\n\n          dot++;\n          /* Look for the possible @... trailer and remove it, if any.  */\n          modifier = strchr (dot, '@');\n          if (modifier == NULL)\n            return dot;\n          if (modifier - dot < sizeof (buf))\n            {\n              memcpy (buf, dot, modifier - dot);\n              buf [modifier - dot] = '\\0';\n              return buf;\n            }\n        }\n\n      /* For the POSIX locale, don't use the system's codepage.  */\n      if (strcmp (locale, \"C\") == 0 || strcmp (locale, \"POSIX\") == 0)\n        codeset = \"\";\n    }\n\n  if (codeset == NULL)\n    {\n      /* OS/2 has a function returning the locale's codepage as a number.  */\n      if (DosQueryCp (sizeof (cp), cp, &cplen))\n        codeset = \"\";\n      else\n        {\n          sprintf (buf, \"CP%u\", cp[0]);\n          codeset = buf;\n        }\n    }\n\n#endif\n\n  if (codeset == NULL)\n    /* The canonical name cannot be determined.  */\n    codeset = \"\";\n\n  /* Resolve alias. */\n  for (aliases = get_charset_aliases ();\n       *aliases != '\\0';\n       aliases += strlen (aliases) + 1, aliases += strlen (aliases) + 1)\n    if (strcmp (codeset, aliases) == 0\n        || (aliases[0] == '*' && aliases[1] == '\\0'))\n      {\n        codeset = aliases + strlen (aliases) + 1;\n        break;\n      }\n\n  /* Don't return an empty string.  GNU libc and GNU libiconv interpret\n     the empty string as denoting \"the locale's character encoding\",\n     thus GNU libiconv would call this function a second time.  */\n  if (codeset[0] == '\\0')\n    codeset = \"ASCII\";\n\n#ifdef DARWIN7\n  /* Mac OS X sets MB_CUR_MAX to 1 when LC_ALL=C, and \"UTF-8\"\n     (the default codeset) does not work when MB_CUR_MAX is 1.  */\n  if (strcmp (codeset, \"UTF-8\") == 0 && MB_CUR_MAX_L (uselocale (NULL)) <= 1)\n    codeset = \"ASCII\";\n#endif\n\n  return codeset;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/localcharset.lo",
    "content": "# localcharset.lo - a libtool object file\n# Generated by libtool (GNU libtool) 2.4.6\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# Name of the PIC object.\npic_object='.libs/localcharset.o'\n\n# Name of the non-PIC object\nnon_pic_object='localcharset.o'\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/ref-add.sed",
    "content": "/^# Packages using this file: / {\n  s/# Packages using this file://\n  ta\n  :a\n  s/ @PACKAGE@ / @PACKAGE@ /\n  tb\n  s/ $/ @PACKAGE@ /\n  :b\n  s/^/# Packages using this file:/\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/ref-add.sin",
    "content": "# Add this package to a list of references stored in a text file.\n#\n#   Copyright (C) 2000 Free Software Foundation, Inc.\n#\n#   This program is free software; you can redistribute it and/or modify it\n#   under the terms of the GNU Library General Public License as published\n#   by the Free Software Foundation; either version 2, or (at your option)\n#   any later version.\n#\n#   This program is distributed in the hope that it will be useful,\n#   but WITHOUT ANY WARRANTY; without even the implied warranty of\n#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n#   Library General Public License for more details.\n#\n#   You should have received a copy of the GNU Library General Public License\n#   along with this program; if not, see <http://www.gnu.org/licenses/>.\n#\n# Written by Bruno Haible <bruno@clisp.org>.\n#\n/^# Packages using this file: / {\n  s/# Packages using this file://\n  ta\n  :a\n  s/ @PACKAGE@ / @PACKAGE@ /\n  tb\n  s/ $/ @PACKAGE@ /\n  :b\n  s/^/# Packages using this file:/\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/ref-del.sed",
    "content": "/^# Packages using this file: / {\n  s/# Packages using this file://\n  s/ @PACKAGE@ / /\n  s/^/# Packages using this file:/\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/ref-del.sin",
    "content": "# Remove this package from a list of references stored in a text file.\n#\n#   Copyright (C) 2000 Free Software Foundation, Inc.\n#\n#   This program is free software; you can redistribute it and/or modify it\n#   under the terms of the GNU Library General Public License as published\n#   by the Free Software Foundation; either version 2, or (at your option)\n#   any later version.\n#\n#   This program is distributed in the hope that it will be useful,\n#   but WITHOUT ANY WARRANTY; without even the implied warranty of\n#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n#   Library General Public License for more details.\n#\n#   You should have received a copy of the GNU Library General Public License\n#   along with this program; if not, see <http://www.gnu.org/licenses/>.\n#\n# Written by Bruno Haible <bruno@clisp.org>.\n#\n/^# Packages using this file: / {\n  s/# Packages using this file://\n  s/ @PACKAGE@ / /\n  s/^/# Packages using this file:/\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/relocatable.c",
    "content": "/* Provide relocatable packages.\n   Copyright (C) 2003-2006, 2008-2012 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2003.\n\n   This program is free software; you can redistribute it and/or modify it\n   under the terms of the GNU Library General Public License as published\n   by the Free Software Foundation; either version 2, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n\n/* Tell glibc's <stdio.h> to provide a prototype for getline().\n   This must come before <config.h> because <config.h> may include\n   <features.h>, and once <features.h> has been included, it's too late.  */\n#ifndef _GNU_SOURCE\n# define _GNU_SOURCE 1\n#endif\n\n#define _GL_USE_STDLIB_ALLOC 1\n#include <config.h>\n\n/* Specification.  */\n#include \"relocatable.h\"\n\n#if ENABLE_RELOCATABLE\n\n#include <stddef.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n\n#ifdef NO_XMALLOC\n# define xmalloc malloc\n#else\n# include \"xalloc.h\"\n#endif\n\n#if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__\n# define WIN32_LEAN_AND_MEAN\n# include <windows.h>\n#endif\n\n#ifdef __EMX__\n# define INCL_DOS\n# include <os2.h>\n\n# define strcmp  stricmp\n# define strncmp strnicmp\n#endif\n\n#if DEPENDS_ON_LIBCHARSET\n# include <libcharset.h>\n#endif\n#if DEPENDS_ON_LIBICONV && HAVE_ICONV\n# include <iconv.h>\n#endif\n#if DEPENDS_ON_LIBINTL && ENABLE_NLS\n# include <libintl.h>\n#endif\n\n/* Faked cheap 'bool'.  */\n#undef bool\n#undef false\n#undef true\n#define bool int\n#define false 0\n#define true 1\n\n/* Pathname support.\n   ISSLASH(C)           tests whether C is a directory separator character.\n   IS_PATH_WITH_DIR(P)  tests whether P contains a directory specification.\n */\n#if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || defined __EMX__ || defined __DJGPP__\n  /* Native Windows, OS/2, DOS */\n# define ISSLASH(C) ((C) == '/' || (C) == '\\\\')\n# define HAS_DEVICE(P) \\\n    ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \\\n     && (P)[1] == ':')\n# define IS_PATH_WITH_DIR(P) \\\n    (strchr (P, '/') != NULL || strchr (P, '\\\\') != NULL || HAS_DEVICE (P))\n# define FILE_SYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0)\n#else\n  /* Unix */\n# define ISSLASH(C) ((C) == '/')\n# define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL)\n# define FILE_SYSTEM_PREFIX_LEN(P) 0\n#endif\n\n/* Whether to enable the more costly support for relocatable libraries.\n   It allows libraries to be have been installed with a different original\n   prefix than the program.  But it is quite costly, especially on Cygwin\n   platforms, see below.  Therefore we enable it by default only on native\n   Windows platforms.  */\n#ifndef ENABLE_COSTLY_RELOCATABLE\n# if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__\n#  define ENABLE_COSTLY_RELOCATABLE 1\n# else\n#  define ENABLE_COSTLY_RELOCATABLE 0\n# endif\n#endif\n\n/* Original installation prefix.  */\nstatic char *orig_prefix;\nstatic size_t orig_prefix_len;\n/* Current installation prefix.  */\nstatic char *curr_prefix;\nstatic size_t curr_prefix_len;\n/* These prefixes do not end in a slash.  Anything that will be concatenated\n   to them must start with a slash.  */\n\n/* Sets the original and the current installation prefix of this module.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nstatic void\nset_this_relocation_prefix (const char *orig_prefix_arg,\n                            const char *curr_prefix_arg)\n{\n  if (orig_prefix_arg != NULL && curr_prefix_arg != NULL\n      /* Optimization: if orig_prefix and curr_prefix are equal, the\n         relocation is a nop.  */\n      && strcmp (orig_prefix_arg, curr_prefix_arg) != 0)\n    {\n      /* Duplicate the argument strings.  */\n      char *memory;\n\n      orig_prefix_len = strlen (orig_prefix_arg);\n      curr_prefix_len = strlen (curr_prefix_arg);\n      memory = (char *) xmalloc (orig_prefix_len + 1 + curr_prefix_len + 1);\n#ifdef NO_XMALLOC\n      if (memory != NULL)\n#endif\n        {\n          memcpy (memory, orig_prefix_arg, orig_prefix_len + 1);\n          orig_prefix = memory;\n          memory += orig_prefix_len + 1;\n          memcpy (memory, curr_prefix_arg, curr_prefix_len + 1);\n          curr_prefix = memory;\n          return;\n        }\n    }\n  orig_prefix = NULL;\n  curr_prefix = NULL;\n  /* Don't worry about wasted memory here - this function is usually only\n     called once.  */\n}\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nvoid\nset_relocation_prefix (const char *orig_prefix_arg, const char *curr_prefix_arg)\n{\n  set_this_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n\n  /* Now notify all dependent libraries.  */\n#if DEPENDS_ON_LIBCHARSET\n  libcharset_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n#endif\n#if DEPENDS_ON_LIBICONV && HAVE_ICONV && _LIBICONV_VERSION >= 0x0109\n  libiconv_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n#endif\n#if DEPENDS_ON_LIBINTL && ENABLE_NLS && defined libintl_set_relocation_prefix\n  libintl_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n#endif\n}\n\n#if !defined IN_LIBRARY || (defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE)\n\n/* Convenience function:\n   Computes the current installation prefix, based on the original\n   installation prefix, the original installation directory of a particular\n   file, and the current pathname of this file.\n   Returns it, freshly allocated.  Returns NULL upon failure.  */\n#ifdef IN_LIBRARY\n#define compute_curr_prefix local_compute_curr_prefix\nstatic\n#endif\nchar *\ncompute_curr_prefix (const char *orig_installprefix,\n                     const char *orig_installdir,\n                     const char *curr_pathname)\n{\n  char *curr_installdir;\n  const char *rel_installdir;\n\n  if (curr_pathname == NULL)\n    return NULL;\n\n  /* Determine the relative installation directory, relative to the prefix.\n     This is simply the difference between orig_installprefix and\n     orig_installdir.  */\n  if (strncmp (orig_installprefix, orig_installdir, strlen (orig_installprefix))\n      != 0)\n    /* Shouldn't happen - nothing should be installed outside $(prefix).  */\n    return NULL;\n  rel_installdir = orig_installdir + strlen (orig_installprefix);\n\n  /* Determine the current installation directory.  */\n  {\n    const char *p_base = curr_pathname + FILE_SYSTEM_PREFIX_LEN (curr_pathname);\n    const char *p = curr_pathname + strlen (curr_pathname);\n    char *q;\n\n    while (p > p_base)\n      {\n        p--;\n        if (ISSLASH (*p))\n          break;\n      }\n\n    q = (char *) xmalloc (p - curr_pathname + 1);\n#ifdef NO_XMALLOC\n    if (q == NULL)\n      return NULL;\n#endif\n    memcpy (q, curr_pathname, p - curr_pathname);\n    q[p - curr_pathname] = '\\0';\n    curr_installdir = q;\n  }\n\n  /* Compute the current installation prefix by removing the trailing\n     rel_installdir from it.  */\n  {\n    const char *rp = rel_installdir + strlen (rel_installdir);\n    const char *cp = curr_installdir + strlen (curr_installdir);\n    const char *cp_base =\n      curr_installdir + FILE_SYSTEM_PREFIX_LEN (curr_installdir);\n\n    while (rp > rel_installdir && cp > cp_base)\n      {\n        bool same = false;\n        const char *rpi = rp;\n        const char *cpi = cp;\n\n        while (rpi > rel_installdir && cpi > cp_base)\n          {\n            rpi--;\n            cpi--;\n            if (ISSLASH (*rpi) || ISSLASH (*cpi))\n              {\n                if (ISSLASH (*rpi) && ISSLASH (*cpi))\n                  same = true;\n                break;\n              }\n            /* Do case-insensitive comparison if the file system is always or\n               often case-insensitive.  It's better to accept the comparison\n               if the difference is only in case, rather than to fail.  */\n#if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__\n            /* Native Windows, Cygwin, OS/2, DOS - case insignificant file system */\n            if ((*rpi >= 'a' && *rpi <= 'z' ? *rpi - 'a' + 'A' : *rpi)\n                != (*cpi >= 'a' && *cpi <= 'z' ? *cpi - 'a' + 'A' : *cpi))\n              break;\n#else\n            if (*rpi != *cpi)\n              break;\n#endif\n          }\n        if (!same)\n          break;\n        /* The last pathname component was the same.  opi and cpi now point\n           to the slash before it.  */\n        rp = rpi;\n        cp = cpi;\n      }\n\n    if (rp > rel_installdir)\n      {\n        /* Unexpected: The curr_installdir does not end with rel_installdir.  */\n        free (curr_installdir);\n        return NULL;\n      }\n\n    {\n      size_t curr_prefix_len = cp - curr_installdir;\n      char *curr_prefix;\n\n      curr_prefix = (char *) xmalloc (curr_prefix_len + 1);\n#ifdef NO_XMALLOC\n      if (curr_prefix == NULL)\n        {\n          free (curr_installdir);\n          return NULL;\n        }\n#endif\n      memcpy (curr_prefix, curr_installdir, curr_prefix_len);\n      curr_prefix[curr_prefix_len] = '\\0';\n\n      free (curr_installdir);\n\n      return curr_prefix;\n    }\n  }\n}\n\n#endif /* !IN_LIBRARY || PIC */\n\n#if defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE\n\n/* Full pathname of shared library, or NULL.  */\nstatic char *shared_library_fullname;\n\n#if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__\n/* Native Windows only.\n   On Cygwin, it is better to use the Cygwin provided /proc interface, than\n   to use native Windows API and cygwin_conv_to_posix_path, because it\n   supports longer file names\n   (see <http://cygwin.com/ml/cygwin/2011-01/msg00410.html>).  */\n\n/* Determine the full pathname of the shared library when it is loaded.  */\n\nBOOL WINAPI\nDllMain (HINSTANCE module_handle, DWORD event, LPVOID reserved)\n{\n  (void) reserved;\n\n  if (event == DLL_PROCESS_ATTACH)\n    {\n      /* The DLL is being loaded into an application's address range.  */\n      static char location[MAX_PATH];\n\n      if (!GetModuleFileName (module_handle, location, sizeof (location)))\n        /* Shouldn't happen.  */\n        return FALSE;\n\n      if (!IS_PATH_WITH_DIR (location))\n        /* Shouldn't happen.  */\n        return FALSE;\n\n      shared_library_fullname = strdup (location);\n    }\n\n  return TRUE;\n}\n\n#elif defined __EMX__\n\nextern int  _CRT_init (void);\nextern void _CRT_term (void);\nextern void __ctordtorInit (void);\nextern void __ctordtorTerm (void);\n\nunsigned long _System\n_DLL_InitTerm (unsigned long hModule, unsigned long ulFlag)\n{\n  static char location[CCHMAXPATH];\n\n  switch (ulFlag)\n    {\n      case 0:\n        if (_CRT_init () == -1)\n          return 0;\n\n        __ctordtorInit();\n\n        /* See http://cyberkinetica.homeunix.net/os2tk45/cp1/1247_L2H_DosQueryModuleNameSy.html\n           for specification of DosQueryModuleName(). */\n        if (DosQueryModuleName (hModule, sizeof (location), location))\n          return 0;\n\n        _fnslashify (location);\n        shared_library_fullname = strdup (location);\n        break;\n\n      case 1:\n        __ctordtorTerm();\n\n        _CRT_term ();\n        break;\n    }\n\n  return 1;\n}\n\n#else /* Unix */\n\nstatic void\nfind_shared_library_fullname ()\n{\n#if (defined __linux__ && (__GLIBC__ >= 2 || defined __UCLIBC__)) || defined __CYGWIN__\n  /* Linux has /proc/self/maps. glibc 2 and uClibc have the getline()\n     function.\n     Cygwin >= 1.5 has /proc/self/maps and the getline() function too.\n     But it is costly: ca. 0.3 ms on Linux, 3 ms on Cygwin 1.5, and 5 ms on\n     Cygwin 1.7.  */\n  FILE *fp;\n\n  /* Open the current process' maps file.  It describes one VMA per line.  */\n  fp = fopen (\"/proc/self/maps\", \"r\");\n  if (fp)\n    {\n      unsigned long address = (unsigned long) &find_shared_library_fullname;\n      for (;;)\n        {\n          unsigned long start, end;\n          int c;\n\n          if (fscanf (fp, \"%lx-%lx\", &start, &end) != 2)\n            break;\n          if (address >= start && address <= end - 1)\n            {\n              /* Found it.  Now see if this line contains a filename.  */\n              while (c = getc (fp), c != EOF && c != '\\n' && c != '/')\n                continue;\n              if (c == '/')\n                {\n                  size_t size;\n                  int len;\n\n                  ungetc (c, fp);\n                  shared_library_fullname = NULL; size = 0;\n                  len = getline (&shared_library_fullname, &size, fp);\n                  if (len >= 0)\n                    {\n                      /* Success: filled shared_library_fullname.  */\n                      if (len > 0 && shared_library_fullname[len - 1] == '\\n')\n                        shared_library_fullname[len - 1] = '\\0';\n                    }\n                }\n              break;\n            }\n          while (c = getc (fp), c != EOF && c != '\\n')\n            continue;\n        }\n      fclose (fp);\n    }\n#endif\n}\n\n#endif /* Native Windows / EMX / Unix */\n\n/* Return the full pathname of the current shared library.\n   Return NULL if unknown.\n   Guaranteed to work only on Linux, EMX, Cygwin, and native Windows.  */\nstatic char *\nget_shared_library_fullname ()\n{\n#if (!((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) \\\n     && !defined __EMX__)\n  static bool tried_find_shared_library_fullname;\n  if (!tried_find_shared_library_fullname)\n    {\n      find_shared_library_fullname ();\n      tried_find_shared_library_fullname = true;\n    }\n#endif\n  return shared_library_fullname;\n}\n\n#endif /* PIC */\n\n/* Returns the pathname, relocated according to the current installation\n   directory.\n   The returned string is either PATHNAME unmodified or a freshly allocated\n   string that you can free with free() after casting it to 'char *'.  */\nconst char *\nrelocate (const char *pathname)\n{\n#if defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE\n  static int initialized;\n\n  /* Initialization code for a shared library.  */\n  if (!initialized)\n    {\n      /* At this point, orig_prefix and curr_prefix likely have already been\n         set through the main program's set_program_name_and_installdir\n         function.  This is sufficient in the case that the library has\n         initially been installed in the same orig_prefix.  But we can do\n         better, to also cover the cases that 1. it has been installed\n         in a different prefix before being moved to orig_prefix and (later)\n         to curr_prefix, 2. unlike the program, it has not moved away from\n         orig_prefix.  */\n      const char *orig_installprefix = INSTALLPREFIX;\n      const char *orig_installdir = INSTALLDIR;\n      char *curr_prefix_better;\n\n      curr_prefix_better =\n        compute_curr_prefix (orig_installprefix, orig_installdir,\n                             get_shared_library_fullname ());\n\n      set_relocation_prefix (orig_installprefix,\n                             curr_prefix_better != NULL\n                             ? curr_prefix_better\n                             : curr_prefix);\n\n      if (curr_prefix_better != NULL)\n        free (curr_prefix_better);\n\n      initialized = 1;\n    }\n#endif\n\n  /* Note: It is not necessary to perform case insensitive comparison here,\n     even for DOS-like file systems, because the pathname argument was\n     typically created from the same Makefile variable as orig_prefix came\n     from.  */\n  if (orig_prefix != NULL && curr_prefix != NULL\n      && strncmp (pathname, orig_prefix, orig_prefix_len) == 0)\n    {\n      if (pathname[orig_prefix_len] == '\\0')\n        {\n          /* pathname equals orig_prefix.  */\n          char *result = (char *) xmalloc (strlen (curr_prefix) + 1);\n\n#ifdef NO_XMALLOC\n          if (result != NULL)\n#endif\n            {\n              strcpy (result, curr_prefix);\n              return result;\n            }\n        }\n      else if (ISSLASH (pathname[orig_prefix_len]))\n        {\n          /* pathname starts with orig_prefix.  */\n          const char *pathname_tail = &pathname[orig_prefix_len];\n          char *result =\n            (char *) xmalloc (curr_prefix_len + strlen (pathname_tail) + 1);\n\n#ifdef NO_XMALLOC\n          if (result != NULL)\n#endif\n            {\n              memcpy (result, curr_prefix, curr_prefix_len);\n              strcpy (result + curr_prefix_len, pathname_tail);\n              return result;\n            }\n        }\n    }\n\n#ifdef __EMX__\n# ifdef __KLIBC__\n#  undef strncmp\n\n  if (pathname && strncmp (pathname, \"/@unixroot\", 10) == 0\n      && (pathname[10] == '\\0' || pathname[10] == '/' || pathname[10] == '\\\\'))\n    {\n      /* kLIBC itself processes /@unixroot prefix */\n\n      return pathname;\n    }\n  else\n# endif\n  if (pathname && ISSLASH (pathname[0]))\n    {\n      const char *unixroot = getenv (\"UNIXROOT\");\n\n      if (unixroot && HAS_DEVICE (unixroot) && !unixroot[2])\n        {\n          char *result = (char *) xmalloc (2 + strlen (pathname) + 1);\n#ifdef NO_XMALLOC\n          if (result != NULL)\n#endif\n            {\n              strcpy (result, unixroot);\n              strcpy (result + 2, pathname);\n              return result;\n            }\n        }\n    }\n#endif\n\n  /* Nothing to relocate.  */\n  return pathname;\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/relocatable.h",
    "content": "/* Provide relocatable packages.\n   Copyright (C) 2003, 2005, 2008-2011 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2003.\n\n   This program is free software; you can redistribute it and/or modify it\n   under the terms of the GNU Library General Public License as published\n   by the Free Software Foundation; either version 2, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _RELOCATABLE_H\n#define _RELOCATABLE_H\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* This can be enabled through the configure --enable-relocatable option.  */\n#if ENABLE_RELOCATABLE\n\n/* When building a DLL, we must export some functions.  Note that because\n   this is a private .h file, we don't need to use __declspec(dllimport)\n   in any case.  */\n#if HAVE_VISIBILITY && BUILDING_DLL\n# define RELOCATABLE_DLL_EXPORTED __attribute__((__visibility__(\"default\")))\n#elif defined _MSC_VER && BUILDING_DLL\n# define RELOCATABLE_DLL_EXPORTED __declspec(dllexport)\n#else\n# define RELOCATABLE_DLL_EXPORTED\n#endif\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nextern RELOCATABLE_DLL_EXPORTED void\n       set_relocation_prefix (const char *orig_prefix,\n                              const char *curr_prefix);\n\n/* Returns the pathname, relocated according to the current installation\n   directory.\n   The returned string is either PATHNAME unmodified or a freshly allocated\n   string that you can free with free() after casting it to 'char *'.  */\nextern const char * relocate (const char *pathname);\n\n/* Memory management: relocate() potentially allocates memory, because it has\n   to construct a fresh pathname.  If this is a problem because your program\n   calls relocate() frequently, think about caching the result.  Or free the\n   return value if it was different from the argument pathname.  */\n\n/* Convenience function:\n   Computes the current installation prefix, based on the original\n   installation prefix, the original installation directory of a particular\n   file, and the current pathname of this file.\n   Returns it, freshly allocated.  Returns NULL upon failure.  */\nextern char * compute_curr_prefix (const char *orig_installprefix,\n                                   const char *orig_installdir,\n                                   const char *curr_pathname);\n\n#else\n\n/* By default, we use the hardwired pathnames.  */\n#define relocate(pathname) (pathname)\n\n#endif\n\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* _RELOCATABLE_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/lib/relocatable.lo",
    "content": "# relocatable.lo - a libtool object file\n# Generated by libtool (GNU libtool) 2.4.6\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# Name of the PIC object.\npic_object='.libs/relocatable.o'\n\n# Name of the non-PIC object\nnon_pic_object='relocatable.o'\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/libtool",
    "content": "#! /bin/sh\n# Generated automatically by config.status () \n# Libtool was configured on host wanghaodeMacBook-Pro.local:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit, 1996\n\n# Copyright (C) 2014 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program or library that is built\n# using GNU Libtool, you may include this file under the  same\n# distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\n# The names of the tagged configurations supported by this script.\navailable_tags=''\n\n# Configured defaults for sys_lib_dlsearch_path munging.\n: ${LT_SYS_LIBRARY_PATH=\"\"}\n\n# ### BEGIN LIBTOOL CONFIG\n\n# Which release of libtool.m4 was used?\nmacro_version=2.4.6\nmacro_revision=2.4.6\n\n# Assembler program.\nAS=\"as\"\n\n# DLL creation program.\nDLLTOOL=\"false\"\n\n# Object dumper program.\nOBJDUMP=\"objdump\"\n\n# Whether or not to build shared libraries.\nbuild_libtool_libs=yes\n\n# Whether or not to build static libraries.\nbuild_old_libs=yes\n\n# What type of objects to build.\npic_mode=default\n\n# Whether or not to optimize for fast installation.\nfast_install=needless\n\n# Shared archive member basename,for filename based shared library versioning on AIX.\nshared_archive_member_spec=\n\n# Shell to use when invoking shell scripts.\nSHELL=\"/bin/sh\"\n\n# An echo program that protects backslashes.\nECHO=\"printf %s\\\\n\"\n\n# The PATH separator for the build system.\nPATH_SEPARATOR=\":\"\n\n# The host system.\nhost_alias=\nhost=x86_64-apple-darwin16.6.0\nhost_os=darwin16.6.0\n\n# The build system.\nbuild_alias=\nbuild=x86_64-apple-darwin16.6.0\nbuild_os=darwin16.6.0\n\n# A sed program that does not truncate output.\nSED=\"/usr/bin/sed\"\n\n# Sed that helps us avoid accidentally triggering echo(1) options like -n.\nXsed=\"$SED -e 1s/^X//\"\n\n# A grep program that handles long lines.\nGREP=\"/usr/bin/grep\"\n\n# An ERE matcher.\nEGREP=\"/usr/bin/grep -E\"\n\n# A literal string matcher.\nFGREP=\"/usr/bin/grep -F\"\n\n# A BSD- or MS-compatible name lister.\nNM=\"/usr/bin/nm -B\"\n\n# Whether we need soft or hard links.\nLN_S=\"ln -s\"\n\n# What is the maximum length of a command?\nmax_cmd_len=196608\n\n# Object file suffix (normally \"o\").\nobjext=o\n\n# Executable file suffix (normally \"\").\nexeext=\n\n# whether the shell understands \"unset\".\nlt_unset=unset\n\n# turn spaces into newlines.\nSP2NL=\"tr \\\\040 \\\\012\"\n\n# turn newlines into spaces.\nNL2SP=\"tr \\\\015\\\\012 \\\\040\\\\040\"\n\n# convert $build file names to $host format.\nto_host_file_cmd=func_convert_file_noop\n\n# convert $build files to toolchain format.\nto_tool_file_cmd=func_convert_file_noop\n\n# Method to check whether dependent libraries are shared objects.\ndeplibs_check_method=\"pass_all\"\n\n# Command to use when deplibs_check_method = \"file_magic\".\nfile_magic_cmd=\"\\$MAGIC_CMD\"\n\n# How to find potential files when deplibs_check_method = \"file_magic\".\nfile_magic_glob=\"\"\n\n# Find potential files using nocaseglob when deplibs_check_method = \"file_magic\".\nwant_nocaseglob=\"no\"\n\n# Command to associate shared and link libraries.\nsharedlib_from_linklib_cmd=\"printf %s\\\\n\"\n\n# The archiver.\nAR=\"ar\"\n\n# Flags to create an archive.\nAR_FLAGS=\"cru\"\n\n# How to feed a file listing to the archiver.\narchiver_list_spec=\"\"\n\n# A symbol stripping program.\nSTRIP=\"strip\"\n\n# Commands used to install an old-style archive.\nRANLIB=\"ranlib\"\nold_postinstall_cmds=\"chmod 644 \\$oldlib~\\$RANLIB \\$tool_oldlib\"\nold_postuninstall_cmds=\"\"\n\n# Whether to use a lock for old archive extraction.\nlock_old_archive_extraction=yes\n\n# A C compiler.\nLTCC=\"gcc\"\n\n# LTCC compiler flags.\nLTCFLAGS=\"-g -O2\"\n\n# Take the output of nm and produce a listing of raw symbols and C names.\nglobal_symbol_pipe=\"sed -n -e 's/^.*[\t ]\\\\([BCDEGRST][BCDEGRST]*\\\\)[\t ][\t ]*_\\\\([_A-Za-z][_A-Za-z0-9]*\\\\)\\$/\\\\1 _\\\\2 \\\\2/p' | sed '/ __gnu_lto/d'\"\n\n# Transform the output of nm in a proper C declaration.\nglobal_symbol_to_cdecl=\"sed -n -e 's/^T .* \\\\(.*\\\\)\\$/extern int \\\\1();/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(.*\\\\)\\$/extern char \\\\1;/p'\"\n\n# Transform the output of nm into a list of symbols to manually relocate.\nglobal_symbol_to_import=\"\"\n\n# Transform the output of nm in a C name address pair.\nglobal_symbol_to_c_name_address=\"sed -n -e 's/^: \\\\(.*\\\\) .*\\$/  {\\\"\\\\1\\\", (void *) 0},/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(.*\\\\)\\$/  {\\\"\\\\1\\\", (void *) \\\\&\\\\1},/p'\"\n\n# Transform the output of nm in a C name address pair when lib prefix is needed.\nglobal_symbol_to_c_name_address_lib_prefix=\"sed -n -e 's/^: \\\\(.*\\\\) .*\\$/  {\\\"\\\\1\\\", (void *) 0},/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(lib.*\\\\)\\$/  {\\\"\\\\1\\\", (void *) \\\\&\\\\1},/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(.*\\\\)\\$/  {\\\"lib\\\\1\\\", (void *) \\\\&\\\\1},/p'\"\n\n# The name lister interface.\nnm_interface=\"BSD nm\"\n\n# Specify filename containing input files for $NM.\nnm_file_list_spec=\"\"\n\n# The root where to search for dependent libraries,and where our libraries should be installed.\nlt_sysroot=\n\n# Command to truncate a binary pipe.\nlt_truncate_bin=\"/bin/dd bs=4096 count=1\"\n\n# The name of the directory that contains temporary libtool files.\nobjdir=.libs\n\n# Used to examine libraries when file_magic_cmd begins with \"file\".\nMAGIC_CMD=file\n\n# Must we lock files when doing compilation?\nneed_locks=\"no\"\n\n# Manifest tool.\nMANIFEST_TOOL=\":\"\n\n# Tool to manipulate archived DWARF debug symbol files on Mac OS X.\nDSYMUTIL=\"dsymutil\"\n\n# Tool to change global to local symbols on Mac OS X.\nNMEDIT=\"nmedit\"\n\n# Tool to manipulate fat objects and archives on Mac OS X.\nLIPO=\"lipo\"\n\n# ldd/readelf like tool for Mach-O binaries on Mac OS X.\nOTOOL=\"otool\"\n\n# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.\nOTOOL64=\":\"\n\n# Old archive suffix (normally \"a\").\nlibext=a\n\n# Shared library suffix (normally \".so\").\nshrext_cmds=\"\\`test .\\$module = .yes && echo .so || echo .dylib\\`\"\n\n# The commands to extract the exported symbol list from a shared archive.\nextract_expsyms_cmds=\"\"\n\n# Variables whose values should be saved in libtool wrapper scripts and\n# restored at link time.\nvariables_saved_for_relink=\"PATH DYLD_LIBRARY_PATH  GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH\"\n\n# Do we need the \"lib\" prefix for modules?\nneed_lib_prefix=no\n\n# Do we need a version for libraries?\nneed_version=no\n\n# Library versioning type.\nversion_type=darwin\n\n# Shared library runtime path variable.\nrunpath_var=\n\n# Shared library path variable.\nshlibpath_var=DYLD_LIBRARY_PATH\n\n# Is shlibpath searched before the hard-coded library search path?\nshlibpath_overrides_runpath=yes\n\n# Format of library name prefix.\nlibname_spec=\"lib\\$name\"\n\n# List of archive names.  First name is the real one, the rest are links.\n# The last name is the one that the linker finds with -lNAME\nlibrary_names_spec=\"\\$libname\\$release\\$major\\$shared_ext \\$libname\\$shared_ext\"\n\n# The coded name of the library, if different from the real name.\nsoname_spec=\"\\$libname\\$release\\$major\\$shared_ext\"\n\n# Permission mode override for installation of shared libraries.\ninstall_override_mode=\"\"\n\n# Command to use after installation of a shared archive.\npostinstall_cmds=\"\"\n\n# Command to use after uninstallation of a shared archive.\npostuninstall_cmds=\"\"\n\n# Commands used to finish a libtool library installation in a directory.\nfinish_cmds=\"\"\n\n# As \"finish_cmds\", except a single script fragment to be evaled but\n# not shown.\nfinish_eval=\"\"\n\n# Whether we should hardcode library paths into libraries.\nhardcode_into_libs=no\n\n# Compile-time system search path for libraries.\nsys_lib_search_path_spec=\"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.1.0  /usr/local/lib\"\n\n# Detected run-time system search path for libraries.\nsys_lib_dlsearch_path_spec=\"/usr/local/lib /lib /usr/lib\"\n\n# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.\nconfigure_time_lt_sys_library_path=\"\"\n\n# Whether dlopen is supported.\ndlopen_support=unknown\n\n# Whether dlopen of programs is supported.\ndlopen_self=unknown\n\n# Whether dlopen of statically linked programs is supported.\ndlopen_self_static=unknown\n\n# Commands to strip libraries.\nold_striplib=\"strip -S\"\nstriplib=\"strip -x\"\n\n\n# The linker used to build libraries.\nLD=\"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld\"\n\n# How to create reloadable object files.\nreload_flag=\" -r\"\nreload_cmds=\"\\$LTCC \\$LTCFLAGS -nostdlib \\$wl-r -o \\$output\\$reload_objs\"\n\n# Commands used to build an old-style archive.\nold_archive_cmds=\"\\$AR \\$AR_FLAGS \\$oldlib\\$oldobjs~\\$RANLIB \\$tool_oldlib\"\n\n# A language specific compiler.\nCC=\"gcc\"\n\n# Is the compiler the GNU compiler?\nwith_gcc=yes\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=\" -fno-builtin -fno-rtti -fno-exceptions\"\n\n# Additional compiler flags for building library objects.\npic_flag=\" -fno-common -DPIC\"\n\n# How to pass a linker flag through the compiler.\nwl=\"-Wl,\"\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=\"\"\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=\"yes\"\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=no\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=no\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=\"\"\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=\"\\`for conv in \\$convenience\\\\\\\"\\\\\\\"; do test  -n \\\\\\\"\\$conv\\\\\\\" && new_convenience=\\\\\\\"\\$new_convenience \\$wl-force_load,\\$conv\\\\\\\"; done; func_echo_all \\\\\\\"\\$new_convenience\\\\\\\"\\`\"\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=\"no\"\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=\"\"\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=\"\"\n\n# Commands used to build a shared archive.\narchive_cmds=\"\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring \\$single_module\"\narchive_expsym_cmds=\"sed 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring \\$single_module \\$wl-exported_symbols_list,\\$output_objdir/\\$libname-symbols.expsym\"\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=\"\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags\"\nmodule_expsym_cmds=\"sed -e 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags \\$wl-exported_symbols_list,\\$output_objdir/\\$libname-symbols.expsym\"\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=\"no\"\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=\"\\$wl-undefined \\${wl}dynamic_lookup\"\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=\"\"\n\n# Flag to hardcode $libdir into a binary during linking.\n# This must work even if $libdir does not exist\nhardcode_libdir_flag_spec=\"\"\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=\"\"\n\n# Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=no\n\n# Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting $shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=no\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=no\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=unsupported\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=yes\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=no\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=yes\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=no\n\n# The commands to list exported symbols.\nexport_symbols_cmds=\"\\$NM \\$libobjs \\$convenience | \\$global_symbol_pipe | \\$SED 's/.* //' | sort | uniq > \\$export_symbols\"\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=\"_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*\"\n\n# Symbols that must always be exported.\ninclude_expsyms=\"\"\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=\"\"\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=\"\"\n\n# Specify filename containing input files.\nfile_list_spec=\"\"\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=immediate\n\n# ### END LIBTOOL CONFIG\n\n\n# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n\n# ### END FUNCTIONS SHARED WITH CONFIGURE\n\n#! /bin/sh\n## DO NOT EDIT - This file generated from ./build-aux/ltmain.in\n##               by inline-source v2014-01-03.01\n\n# libtool (GNU libtool) 2.4.6\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996\n\n# Copyright (C) 1996-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License,\n# if you distribute this file as part of a program or library that\n# is built using GNU Libtool, you may include this file under the\n# same distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\nPROGRAM=libtool\nPACKAGE=libtool\nVERSION=2.4.6\npackage_revision=2.4.6\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# Run './libtool --help' for help with using this script from the\n# command line.\n\n\n## ------------------------------- ##\n## User overridable command paths. ##\n## ------------------------------- ##\n\n# After configure completes, it has a better idea of some of the\n# shell tools we need than the defaults used by the functions shared\n# with bootstrap, so set those here where they can still be over-\n# ridden by the user, but otherwise take precedence.\n\n: ${AUTOCONF=\"autoconf\"}\n: ${AUTOMAKE=\"automake\"}\n\n\n## -------------------------- ##\n## Source external libraries. ##\n## -------------------------- ##\n\n# Much of our low-level functionality needs to be sourced from external\n# libraries, which are installed to $pkgauxdir.\n\n# Set a version string for this script.\nscriptversion=2015-01-20.17; # UTC\n\n# General shell script boiler plate, and helper functions.\n# Written by Gary V. Vaughan, 2004\n\n# Copyright (C) 2004-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n\n# As a special exception to the GNU General Public License, if you distribute\n# this file as part of a program or library that is built using GNU Libtool,\n# you may include this file under the same distribution terms that you use\n# for the rest of that program.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU\n# General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program. If not, see <http://www.gnu.org/licenses/>.\n\n# Please report bugs or propose patches to gary@gnu.org.\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# Evaluate this file near the top of your script to gain access to\n# the functions and variables defined here:\n#\n#   . `echo \"$0\" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh\n#\n# If you need to override any of the default environment variable\n# settings, do that before evaluating this file.\n\n\n## -------------------- ##\n## Shell normalisation. ##\n## -------------------- ##\n\n# Some shells need a little help to be as Bourne compatible as possible.\n# Before doing anything else, make sure all that help has been provided!\n\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac\nfi\n\n# NLS nuisances: We save the old values in case they are required later.\n_G_user_locale=\n_G_safe_locale=\nfor _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\ndo\n  eval \"if test set = \\\"\\${$_G_var+set}\\\"; then\n          save_$_G_var=\\$$_G_var\n          $_G_var=C\n\t  export $_G_var\n\t  _G_user_locale=\\\"$_G_var=\\\\\\$save_\\$_G_var; \\$_G_user_locale\\\"\n\t  _G_safe_locale=\\\"$_G_var=C; \\$_G_safe_locale\\\"\n\tfi\"\ndone\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n# Make sure IFS has a sensible default\nsp=' '\nnl='\n'\nIFS=\"$sp\t$nl\"\n\n# There are apparently some retarded systems that use ';' as a PATH separator!\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n\n## ------------------------- ##\n## Locate command utilities. ##\n## ------------------------- ##\n\n\n# func_executable_p FILE\n# ----------------------\n# Check that FILE is an executable regular file.\nfunc_executable_p ()\n{\n    test -f \"$1\" && test -x \"$1\"\n}\n\n\n# func_path_progs PROGS_LIST CHECK_FUNC [PATH]\n# --------------------------------------------\n# Search for either a program that responds to --version with output\n# containing \"GNU\", or else returned by CHECK_FUNC otherwise, by\n# trying all the directories in PATH with each of the elements of\n# PROGS_LIST.\n#\n# CHECK_FUNC should accept the path to a candidate program, and\n# set $func_check_prog_result if it truncates its output less than\n# $_G_path_prog_max characters.\nfunc_path_progs ()\n{\n    _G_progs_list=$1\n    _G_check_func=$2\n    _G_PATH=${3-\"$PATH\"}\n\n    _G_path_prog_max=0\n    _G_path_prog_found=false\n    _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:}\n    for _G_dir in $_G_PATH; do\n      IFS=$_G_save_IFS\n      test -z \"$_G_dir\" && _G_dir=.\n      for _G_prog_name in $_G_progs_list; do\n        for _exeext in '' .EXE; do\n          _G_path_prog=$_G_dir/$_G_prog_name$_exeext\n          func_executable_p \"$_G_path_prog\" || continue\n          case `\"$_G_path_prog\" --version 2>&1` in\n            *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;;\n            *)     $_G_check_func $_G_path_prog\n\t\t   func_path_progs_result=$func_check_prog_result\n\t\t   ;;\n          esac\n          $_G_path_prog_found && break 3\n        done\n      done\n    done\n    IFS=$_G_save_IFS\n    test -z \"$func_path_progs_result\" && {\n      echo \"no acceptable sed could be found in \\$PATH\" >&2\n      exit 1\n    }\n}\n\n\n# We want to be able to use the functions in this file before configure\n# has figured out where the best binaries are kept, which means we have\n# to search for them ourselves - except when the results are already set\n# where we skip the searches.\n\n# Unless the user overrides by setting SED, search the path for either GNU\n# sed, or the sed that truncates its output the least.\ntest -z \"$SED\" && {\n  _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/\n  for _G_i in 1 2 3 4 5 6 7; do\n    _G_sed_script=$_G_sed_script$nl$_G_sed_script\n  done\n  echo \"$_G_sed_script\" 2>/dev/null | sed 99q >conftest.sed\n  _G_sed_script=\n\n  func_check_prog_sed ()\n  {\n    _G_path_prog=$1\n\n    _G_count=0\n    printf 0123456789 >conftest.in\n    while :\n    do\n      cat conftest.in conftest.in >conftest.tmp\n      mv conftest.tmp conftest.in\n      cp conftest.in conftest.nl\n      echo '' >> conftest.nl\n      \"$_G_path_prog\" -f conftest.sed <conftest.nl >conftest.out 2>/dev/null || break\n      diff conftest.out conftest.nl >/dev/null 2>&1 || break\n      _G_count=`expr $_G_count + 1`\n      if test \"$_G_count\" -gt \"$_G_path_prog_max\"; then\n        # Best one so far, save it but keep looking for a better one\n        func_check_prog_result=$_G_path_prog\n        _G_path_prog_max=$_G_count\n      fi\n      # 10*(2^10) chars as input seems more than enough\n      test 10 -lt \"$_G_count\" && break\n    done\n    rm -f conftest.in conftest.tmp conftest.nl conftest.out\n  }\n\n  func_path_progs \"sed gsed\" func_check_prog_sed $PATH:/usr/xpg4/bin\n  rm -f conftest.sed\n  SED=$func_path_progs_result\n}\n\n\n# Unless the user overrides by setting GREP, search the path for either GNU\n# grep, or the grep that truncates its output the least.\ntest -z \"$GREP\" && {\n  func_check_prog_grep ()\n  {\n    _G_path_prog=$1\n\n    _G_count=0\n    _G_path_prog_max=0\n    printf 0123456789 >conftest.in\n    while :\n    do\n      cat conftest.in conftest.in >conftest.tmp\n      mv conftest.tmp conftest.in\n      cp conftest.in conftest.nl\n      echo 'GREP' >> conftest.nl\n      \"$_G_path_prog\" -e 'GREP$' -e '-(cannot match)-' <conftest.nl >conftest.out 2>/dev/null || break\n      diff conftest.out conftest.nl >/dev/null 2>&1 || break\n      _G_count=`expr $_G_count + 1`\n      if test \"$_G_count\" -gt \"$_G_path_prog_max\"; then\n        # Best one so far, save it but keep looking for a better one\n        func_check_prog_result=$_G_path_prog\n        _G_path_prog_max=$_G_count\n      fi\n      # 10*(2^10) chars as input seems more than enough\n      test 10 -lt \"$_G_count\" && break\n    done\n    rm -f conftest.in conftest.tmp conftest.nl conftest.out\n  }\n\n  func_path_progs \"grep ggrep\" func_check_prog_grep $PATH:/usr/xpg4/bin\n  GREP=$func_path_progs_result\n}\n\n\n## ------------------------------- ##\n## User overridable command paths. ##\n## ------------------------------- ##\n\n# All uppercase variable names are used for environment variables.  These\n# variables can be overridden by the user before calling a script that\n# uses them if a suitable command of that name is not already available\n# in the command search PATH.\n\n: ${CP=\"cp -f\"}\n: ${ECHO=\"printf %s\\n\"}\n: ${EGREP=\"$GREP -E\"}\n: ${FGREP=\"$GREP -F\"}\n: ${LN_S=\"ln -s\"}\n: ${MAKE=\"make\"}\n: ${MKDIR=\"mkdir\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n: ${SHELL=\"${CONFIG_SHELL-/bin/sh}\"}\n\n\n## -------------------- ##\n## Useful sed snippets. ##\n## -------------------- ##\n\nsed_dirname='s|/[^/]*$||'\nsed_basename='s|^.*/||'\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='s|\\([`\"$\\\\]\\)|\\\\\\1|g'\n\n# Same as above, but do not quote variable references.\nsed_double_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\n\n# Sed substitution that turns a string into a regex matching for the\n# string literally.\nsed_make_literal_regex='s|[].[^$\\\\*\\/]|\\\\&|g'\n\n# Sed substitution that converts a w32 file name or path\n# that contains forward slashes, into one that contains\n# (escaped) backslashes.  A very naive implementation.\nsed_naive_backslashify='s|\\\\\\\\*|\\\\|g;s|/|\\\\|g;s|\\\\|\\\\\\\\|g'\n\n# Re-'\\' parameter expansions in output of sed_double_quote_subst that\n# were '\\'-ed in input to the same.  If an odd number of '\\' preceded a\n# '$' in input to sed_double_quote_subst, that '$' was protected from\n# expansion.  Since each input '\\' is now two '\\'s, look for any number\n# of runs of four '\\'s followed by two '\\'s and then a '$'.  '\\' that '$'.\n_G_bs='\\\\'\n_G_bs2='\\\\\\\\'\n_G_bs4='\\\\\\\\\\\\\\\\'\n_G_dollar='\\$'\nsed_double_backslash=\"\\\n  s/$_G_bs4/&\\\\\n/g\n  s/^$_G_bs2$_G_dollar/$_G_bs&/\n  s/\\\\([^$_G_bs]\\\\)$_G_bs2$_G_dollar/\\\\1$_G_bs2$_G_bs$_G_dollar/g\n  s/\\n//g\"\n\n\n## ----------------- ##\n## Global variables. ##\n## ----------------- ##\n\n# Except for the global variables explicitly listed below, the following\n# functions in the '^func_' namespace, and the '^require_' namespace\n# variables initialised in the 'Resource management' section, sourcing\n# this file will not pollute your global namespace with anything\n# else. There's no portable way to scope variables in Bourne shell\n# though, so actually running these functions will sometimes place\n# results into a variable named after the function, and often use\n# temporary variables in the '^_G_' namespace. If you are careful to\n# avoid using those namespaces casually in your sourcing script, things\n# should continue to work as you expect. And, of course, you can freely\n# overwrite any of the functions or variables defined here before\n# calling anything to customize them.\n\nEXIT_SUCCESS=0\nEXIT_FAILURE=1\nEXIT_MISMATCH=63  # $? = 63 is used to indicate version mismatch to missing.\nEXIT_SKIP=77\t  # $? = 77 is used to indicate a skipped test to automake.\n\n# Allow overriding, eg assuming that you follow the convention of\n# putting '$debug_cmd' at the start of all your functions, you can get\n# bash to show function call trace with:\n#\n#    debug_cmd='eval echo \"${FUNCNAME[0]} $*\" >&2' bash your-script-name\ndebug_cmd=${debug_cmd-\":\"}\nexit_cmd=:\n\n# By convention, finish your script with:\n#\n#    exit $exit_status\n#\n# so that you can set exit_status to non-zero if you want to indicate\n# something went wrong during execution without actually bailing out at\n# the point of failure.\nexit_status=$EXIT_SUCCESS\n\n# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh\n# is ksh but when the shell is invoked as \"sh\" and the current value of\n# the _XPG environment variable is not equal to 1 (one), the special\n# positional parameter $0, within a function call, is the name of the\n# function.\nprogpath=$0\n\n# The name of this program.\nprogname=`$ECHO \"$progpath\" |$SED \"$sed_basename\"`\n\n# Make sure we have an absolute progpath for reexecution:\ncase $progpath in\n  [\\\\/]*|[A-Za-z]:\\\\*) ;;\n  *[\\\\/]*)\n     progdir=`$ECHO \"$progpath\" |$SED \"$sed_dirname\"`\n     progdir=`cd \"$progdir\" && pwd`\n     progpath=$progdir/$progname\n     ;;\n  *)\n     _G_IFS=$IFS\n     IFS=${PATH_SEPARATOR-:}\n     for progdir in $PATH; do\n       IFS=$_G_IFS\n       test -x \"$progdir/$progname\" && break\n     done\n     IFS=$_G_IFS\n     test -n \"$progdir\" || progdir=`pwd`\n     progpath=$progdir/$progname\n     ;;\nesac\n\n\n## ----------------- ##\n## Standard options. ##\n## ----------------- ##\n\n# The following options affect the operation of the functions defined\n# below, and should be set appropriately depending on run-time para-\n# meters passed on the command line.\n\nopt_dry_run=false\nopt_quiet=false\nopt_verbose=false\n\n# Categories 'all' and 'none' are always available.  Append any others\n# you will pass as the first argument to func_warning from your own\n# code.\nwarning_categories=\n\n# By default, display warnings according to 'opt_warning_types'.  Set\n# 'warning_func'  to ':' to elide all warnings, or func_fatal_error to\n# treat the next displayed warning as a fatal error.\nwarning_func=func_warn_and_continue\n\n# Set to 'all' to display all warnings, 'none' to suppress all\n# warnings, or a space delimited list of some subset of\n# 'warning_categories' to display only the listed warnings.\nopt_warning_types=all\n\n\n## -------------------- ##\n## Resource management. ##\n## -------------------- ##\n\n# This section contains definitions for functions that each ensure a\n# particular resource (a file, or a non-empty configuration variable for\n# example) is available, and if appropriate to extract default values\n# from pertinent package files. Call them using their associated\n# 'require_*' variable to ensure that they are executed, at most, once.\n#\n# It's entirely deliberate that calling these functions can set\n# variables that don't obey the namespace limitations obeyed by the rest\n# of this file, in order that that they be as useful as possible to\n# callers.\n\n\n# require_term_colors\n# -------------------\n# Allow display of bold text on terminals that support it.\nrequire_term_colors=func_require_term_colors\nfunc_require_term_colors ()\n{\n    $debug_cmd\n\n    test -t 1 && {\n      # COLORTERM and USE_ANSI_COLORS environment variables take\n      # precedence, because most terminfo databases neglect to describe\n      # whether color sequences are supported.\n      test -n \"${COLORTERM+set}\" && : ${USE_ANSI_COLORS=\"1\"}\n\n      if test 1 = \"$USE_ANSI_COLORS\"; then\n        # Standard ANSI escape sequences\n        tc_reset='\u001b[0m'\n        tc_bold='\u001b[1m';   tc_standout='\u001b[7m'\n        tc_red='\u001b[31m';   tc_green='\u001b[32m'\n        tc_blue='\u001b[34m';  tc_cyan='\u001b[36m'\n      else\n        # Otherwise trust the terminfo database after all.\n        test -n \"`tput sgr0 2>/dev/null`\" && {\n          tc_reset=`tput sgr0`\n          test -n \"`tput bold 2>/dev/null`\" && tc_bold=`tput bold`\n          tc_standout=$tc_bold\n          test -n \"`tput smso 2>/dev/null`\" && tc_standout=`tput smso`\n          test -n \"`tput setaf 1 2>/dev/null`\" && tc_red=`tput setaf 1`\n          test -n \"`tput setaf 2 2>/dev/null`\" && tc_green=`tput setaf 2`\n          test -n \"`tput setaf 4 2>/dev/null`\" && tc_blue=`tput setaf 4`\n          test -n \"`tput setaf 5 2>/dev/null`\" && tc_cyan=`tput setaf 5`\n        }\n      fi\n    }\n\n    require_term_colors=:\n}\n\n\n## ----------------- ##\n## Function library. ##\n## ----------------- ##\n\n# This section contains a variety of useful functions to call in your\n# scripts. Take note of the portable wrappers for features provided by\n# some modern shells, which will fall back to slower equivalents on\n# less featureful shells.\n\n\n# func_append VAR VALUE\n# ---------------------\n# Append VALUE onto the existing contents of VAR.\n\n  # We should try to minimise forks, especially on Windows where they are\n  # unreasonably slow, so skip the feature probes when bash or zsh are\n  # being used:\n  if test set = \"${BASH_VERSION+set}${ZSH_VERSION+set}\"; then\n    : ${_G_HAVE_ARITH_OP=\"yes\"}\n    : ${_G_HAVE_XSI_OPS=\"yes\"}\n    # The += operator was introduced in bash 3.1\n    case $BASH_VERSION in\n      [12].* | 3.0 | 3.0*) ;;\n      *)\n        : ${_G_HAVE_PLUSEQ_OP=\"yes\"}\n        ;;\n    esac\n  fi\n\n  # _G_HAVE_PLUSEQ_OP\n  # Can be empty, in which case the shell is probed, \"yes\" if += is\n  # useable or anything else if it does not work.\n  test -z \"$_G_HAVE_PLUSEQ_OP\" \\\n    && (eval 'x=a; x+=\" b\"; test \"a b\" = \"$x\"') 2>/dev/null \\\n    && _G_HAVE_PLUSEQ_OP=yes\n\nif test yes = \"$_G_HAVE_PLUSEQ_OP\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_append ()\n  {\n    $debug_cmd\n\n    eval \"$1+=\\$2\"\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_append ()\n  {\n    $debug_cmd\n\n    eval \"$1=\\$$1\\$2\"\n  }\nfi\n\n\n# func_append_quoted VAR VALUE\n# ----------------------------\n# Quote VALUE and append to the end of shell variable VAR, separated\n# by a space.\nif test yes = \"$_G_HAVE_PLUSEQ_OP\"; then\n  eval 'func_append_quoted ()\n  {\n    $debug_cmd\n\n    func_quote_for_eval \"$2\"\n    eval \"$1+=\\\\ \\$func_quote_for_eval_result\"\n  }'\nelse\n  func_append_quoted ()\n  {\n    $debug_cmd\n\n    func_quote_for_eval \"$2\"\n    eval \"$1=\\$$1\\\\ \\$func_quote_for_eval_result\"\n  }\nfi\n\n\n# func_append_uniq VAR VALUE\n# --------------------------\n# Append unique VALUE onto the existing contents of VAR, assuming\n# entries are delimited by the first character of VALUE.  For example:\n#\n#   func_append_uniq options \" --another-option option-argument\"\n#\n# will only append to $options if \" --another-option option-argument \"\n# is not already present somewhere in $options already (note spaces at\n# each end implied by leading space in second argument).\nfunc_append_uniq ()\n{\n    $debug_cmd\n\n    eval _G_current_value='`$ECHO $'$1'`'\n    _G_delim=`expr \"$2\" : '\\(.\\)'`\n\n    case $_G_delim$_G_current_value$_G_delim in\n      *\"$2$_G_delim\"*) ;;\n      *) func_append \"$@\" ;;\n    esac\n}\n\n\n# func_arith TERM...\n# ------------------\n# Set func_arith_result to the result of evaluating TERMs.\n  test -z \"$_G_HAVE_ARITH_OP\" \\\n    && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \\\n    && _G_HAVE_ARITH_OP=yes\n\nif test yes = \"$_G_HAVE_ARITH_OP\"; then\n  eval 'func_arith ()\n  {\n    $debug_cmd\n\n    func_arith_result=$(( $* ))\n  }'\nelse\n  func_arith ()\n  {\n    $debug_cmd\n\n    func_arith_result=`expr \"$@\"`\n  }\nfi\n\n\n# func_basename FILE\n# ------------------\n# Set func_basename_result to FILE with everything up to and including\n# the last / stripped.\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  # If this shell supports suffix pattern removal, then use it to avoid\n  # forking. Hide the definitions single quotes in case the shell chokes\n  # on unsupported syntax...\n  _b='func_basename_result=${1##*/}'\n  _d='case $1 in\n        */*) func_dirname_result=${1%/*}$2 ;;\n        *  ) func_dirname_result=$3        ;;\n      esac'\n\nelse\n  # ...otherwise fall back to using sed.\n  _b='func_basename_result=`$ECHO \"$1\" |$SED \"$sed_basename\"`'\n  _d='func_dirname_result=`$ECHO \"$1\"  |$SED \"$sed_dirname\"`\n      if test \"X$func_dirname_result\" = \"X$1\"; then\n        func_dirname_result=$3\n      else\n        func_append func_dirname_result \"$2\"\n      fi'\nfi\n\neval 'func_basename ()\n{\n    $debug_cmd\n\n    '\"$_b\"'\n}'\n\n\n# func_dirname FILE APPEND NONDIR_REPLACEMENT\n# -------------------------------------------\n# Compute the dirname of FILE.  If nonempty, add APPEND to the result,\n# otherwise set result to NONDIR_REPLACEMENT.\neval 'func_dirname ()\n{\n    $debug_cmd\n\n    '\"$_d\"'\n}'\n\n\n# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT\n# --------------------------------------------------------\n# Perform func_basename and func_dirname in a single function\n# call:\n#   dirname:  Compute the dirname of FILE.  If nonempty,\n#             add APPEND to the result, otherwise set result\n#             to NONDIR_REPLACEMENT.\n#             value returned in \"$func_dirname_result\"\n#   basename: Compute filename of FILE.\n#             value retuned in \"$func_basename_result\"\n# For efficiency, we do not delegate to the functions above but instead\n# duplicate the functionality here.\neval 'func_dirname_and_basename ()\n{\n    $debug_cmd\n\n    '\"$_b\"'\n    '\"$_d\"'\n}'\n\n\n# func_echo ARG...\n# ----------------\n# Echo program name prefixed message.\nfunc_echo ()\n{\n    $debug_cmd\n\n    _G_message=$*\n\n    func_echo_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_IFS\n      $ECHO \"$progname: $_G_line\"\n    done\n    IFS=$func_echo_IFS\n}\n\n\n# func_echo_all ARG...\n# --------------------\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"$*\"\n}\n\n\n# func_echo_infix_1 INFIX ARG...\n# ------------------------------\n# Echo program name, followed by INFIX on the first line, with any\n# additional lines not showing INFIX.\nfunc_echo_infix_1 ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    _G_infix=$1; shift\n    _G_indent=$_G_infix\n    _G_prefix=\"$progname: $_G_infix: \"\n    _G_message=$*\n\n    # Strip color escape sequences before counting printable length\n    for _G_tc in \"$tc_reset\" \"$tc_bold\" \"$tc_standout\" \"$tc_red\" \"$tc_green\" \"$tc_blue\" \"$tc_cyan\"\n    do\n      test -n \"$_G_tc\" && {\n        _G_esc_tc=`$ECHO \"$_G_tc\" | $SED \"$sed_make_literal_regex\"`\n        _G_indent=`$ECHO \"$_G_indent\" | $SED \"s|$_G_esc_tc||g\"`\n      }\n    done\n    _G_indent=\"$progname: \"`echo \"$_G_indent\" | $SED 's|.| |g'`\"  \" ## exclude from sc_prohibit_nested_quotes\n\n    func_echo_infix_1_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_infix_1_IFS\n      $ECHO \"$_G_prefix$tc_bold$_G_line$tc_reset\" >&2\n      _G_prefix=$_G_indent\n    done\n    IFS=$func_echo_infix_1_IFS\n}\n\n\n# func_error ARG...\n# -----------------\n# Echo program name prefixed message to standard error.\nfunc_error ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    func_echo_infix_1 \"  $tc_standout${tc_red}error$tc_reset\" \"$*\" >&2\n}\n\n\n# func_fatal_error ARG...\n# -----------------------\n# Echo program name prefixed message to standard error, and exit.\nfunc_fatal_error ()\n{\n    $debug_cmd\n\n    func_error \"$*\"\n    exit $EXIT_FAILURE\n}\n\n\n# func_grep EXPRESSION FILENAME\n# -----------------------------\n# Check whether EXPRESSION matches any line of FILENAME, without output.\nfunc_grep ()\n{\n    $debug_cmd\n\n    $GREP \"$1\" \"$2\" >/dev/null 2>&1\n}\n\n\n# func_len STRING\n# ---------------\n# Set func_len_result to the length of STRING. STRING may not\n# start with a hyphen.\n  test -z \"$_G_HAVE_XSI_OPS\" \\\n    && (eval 'x=a/b/c;\n      test 5aa/bb/cc = \"${#x}${x%%/*}${x%/*}${x#*/}${x##*/}\"') 2>/dev/null \\\n    && _G_HAVE_XSI_OPS=yes\n\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_len ()\n  {\n    $debug_cmd\n\n    func_len_result=${#1}\n  }'\nelse\n  func_len ()\n  {\n    $debug_cmd\n\n    func_len_result=`expr \"$1\" : \".*\" 2>/dev/null || echo $max_cmd_len`\n  }\nfi\n\n\n# func_mkdir_p DIRECTORY-PATH\n# ---------------------------\n# Make sure the entire path to DIRECTORY-PATH is available.\nfunc_mkdir_p ()\n{\n    $debug_cmd\n\n    _G_directory_path=$1\n    _G_dir_list=\n\n    if test -n \"$_G_directory_path\" && test : != \"$opt_dry_run\"; then\n\n      # Protect directory names starting with '-'\n      case $_G_directory_path in\n        -*) _G_directory_path=./$_G_directory_path ;;\n      esac\n\n      # While some portion of DIR does not yet exist...\n      while test ! -d \"$_G_directory_path\"; do\n        # ...make a list in topmost first order.  Use a colon delimited\n\t# list incase some portion of path contains whitespace.\n        _G_dir_list=$_G_directory_path:$_G_dir_list\n\n        # If the last portion added has no slash in it, the list is done\n        case $_G_directory_path in */*) ;; *) break ;; esac\n\n        # ...otherwise throw away the child directory and loop\n        _G_directory_path=`$ECHO \"$_G_directory_path\" | $SED -e \"$sed_dirname\"`\n      done\n      _G_dir_list=`$ECHO \"$_G_dir_list\" | $SED 's|:*$||'`\n\n      func_mkdir_p_IFS=$IFS; IFS=:\n      for _G_dir in $_G_dir_list; do\n\tIFS=$func_mkdir_p_IFS\n        # mkdir can fail with a 'File exist' error if two processes\n        # try to create one of the directories concurrently.  Don't\n        # stop in that case!\n        $MKDIR \"$_G_dir\" 2>/dev/null || :\n      done\n      IFS=$func_mkdir_p_IFS\n\n      # Bail out if we (or some other process) failed to create a directory.\n      test -d \"$_G_directory_path\" || \\\n        func_fatal_error \"Failed to create '$1'\"\n    fi\n}\n\n\n# func_mktempdir [BASENAME]\n# -------------------------\n# Make a temporary directory that won't clash with other running\n# libtool processes, and avoids race conditions if possible.  If\n# given, BASENAME is the basename for that directory.\nfunc_mktempdir ()\n{\n    $debug_cmd\n\n    _G_template=${TMPDIR-/tmp}/${1-$progname}\n\n    if test : = \"$opt_dry_run\"; then\n      # Return a directory name, but don't create it in dry-run mode\n      _G_tmpdir=$_G_template-$$\n    else\n\n      # If mktemp works, use that first and foremost\n      _G_tmpdir=`mktemp -d \"$_G_template-XXXXXXXX\" 2>/dev/null`\n\n      if test ! -d \"$_G_tmpdir\"; then\n        # Failing that, at least try and use $RANDOM to avoid a race\n        _G_tmpdir=$_G_template-${RANDOM-0}$$\n\n        func_mktempdir_umask=`umask`\n        umask 0077\n        $MKDIR \"$_G_tmpdir\"\n        umask $func_mktempdir_umask\n      fi\n\n      # If we're not in dry-run mode, bomb out on failure\n      test -d \"$_G_tmpdir\" || \\\n        func_fatal_error \"cannot create temporary directory '$_G_tmpdir'\"\n    fi\n\n    $ECHO \"$_G_tmpdir\"\n}\n\n\n# func_normal_abspath PATH\n# ------------------------\n# Remove doubled-up and trailing slashes, \".\" path components,\n# and cancel out any \"..\" path components in PATH after making\n# it an absolute path.\nfunc_normal_abspath ()\n{\n    $debug_cmd\n\n    # These SED scripts presuppose an absolute path with a trailing slash.\n    _G_pathcar='s|^/\\([^/]*\\).*$|\\1|'\n    _G_pathcdr='s|^/[^/]*||'\n    _G_removedotparts=':dotsl\n\t\ts|/\\./|/|g\n\t\tt dotsl\n\t\ts|/\\.$|/|'\n    _G_collapseslashes='s|/\\{1,\\}|/|g'\n    _G_finalslash='s|/*$|/|'\n\n    # Start from root dir and reassemble the path.\n    func_normal_abspath_result=\n    func_normal_abspath_tpath=$1\n    func_normal_abspath_altnamespace=\n    case $func_normal_abspath_tpath in\n      \"\")\n        # Empty path, that just means $cwd.\n        func_stripname '' '/' \"`pwd`\"\n        func_normal_abspath_result=$func_stripname_result\n        return\n        ;;\n      # The next three entries are used to spot a run of precisely\n      # two leading slashes without using negated character classes;\n      # we take advantage of case's first-match behaviour.\n      ///*)\n        # Unusual form of absolute path, do nothing.\n        ;;\n      //*)\n        # Not necessarily an ordinary path; POSIX reserves leading '//'\n        # and for example Cygwin uses it to access remote file shares\n        # over CIFS/SMB, so we conserve a leading double slash if found.\n        func_normal_abspath_altnamespace=/\n        ;;\n      /*)\n        # Absolute path, do nothing.\n        ;;\n      *)\n        # Relative path, prepend $cwd.\n        func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath\n        ;;\n    esac\n\n    # Cancel out all the simple stuff to save iterations.  We also want\n    # the path to end with a slash for ease of parsing, so make sure\n    # there is one (and only one) here.\n    func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_removedotparts\" -e \"$_G_collapseslashes\" -e \"$_G_finalslash\"`\n    while :; do\n      # Processed it all yet?\n      if test / = \"$func_normal_abspath_tpath\"; then\n        # If we ascended to the root using \"..\" the result may be empty now.\n        if test -z \"$func_normal_abspath_result\"; then\n          func_normal_abspath_result=/\n        fi\n        break\n      fi\n      func_normal_abspath_tcomponent=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_pathcar\"`\n      func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_pathcdr\"`\n      # Figure out what to do with it\n      case $func_normal_abspath_tcomponent in\n        \"\")\n          # Trailing empty path component, ignore it.\n          ;;\n        ..)\n          # Parent dir; strip last assembled component from result.\n          func_dirname \"$func_normal_abspath_result\"\n          func_normal_abspath_result=$func_dirname_result\n          ;;\n        *)\n          # Actual path component, append it.\n          func_append func_normal_abspath_result \"/$func_normal_abspath_tcomponent\"\n          ;;\n      esac\n    done\n    # Restore leading double-slash if one was found on entry.\n    func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result\n}\n\n\n# func_notquiet ARG...\n# --------------------\n# Echo program name prefixed message only when not in quiet mode.\nfunc_notquiet ()\n{\n    $debug_cmd\n\n    $opt_quiet || func_echo ${1+\"$@\"}\n\n    # A bug in bash halts the script if the last line of a function\n    # fails when set -e is in force, so we need another command to\n    # work around that:\n    :\n}\n\n\n# func_relative_path SRCDIR DSTDIR\n# --------------------------------\n# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR.\nfunc_relative_path ()\n{\n    $debug_cmd\n\n    func_relative_path_result=\n    func_normal_abspath \"$1\"\n    func_relative_path_tlibdir=$func_normal_abspath_result\n    func_normal_abspath \"$2\"\n    func_relative_path_tbindir=$func_normal_abspath_result\n\n    # Ascend the tree starting from libdir\n    while :; do\n      # check if we have found a prefix of bindir\n      case $func_relative_path_tbindir in\n        $func_relative_path_tlibdir)\n          # found an exact match\n          func_relative_path_tcancelled=\n          break\n          ;;\n        $func_relative_path_tlibdir*)\n          # found a matching prefix\n          func_stripname \"$func_relative_path_tlibdir\" '' \"$func_relative_path_tbindir\"\n          func_relative_path_tcancelled=$func_stripname_result\n          if test -z \"$func_relative_path_result\"; then\n            func_relative_path_result=.\n          fi\n          break\n          ;;\n        *)\n          func_dirname $func_relative_path_tlibdir\n          func_relative_path_tlibdir=$func_dirname_result\n          if test -z \"$func_relative_path_tlibdir\"; then\n            # Have to descend all the way to the root!\n            func_relative_path_result=../$func_relative_path_result\n            func_relative_path_tcancelled=$func_relative_path_tbindir\n            break\n          fi\n          func_relative_path_result=../$func_relative_path_result\n          ;;\n      esac\n    done\n\n    # Now calculate path; take care to avoid doubling-up slashes.\n    func_stripname '' '/' \"$func_relative_path_result\"\n    func_relative_path_result=$func_stripname_result\n    func_stripname '/' '/' \"$func_relative_path_tcancelled\"\n    if test -n \"$func_stripname_result\"; then\n      func_append func_relative_path_result \"/$func_stripname_result\"\n    fi\n\n    # Normalisation. If bindir is libdir, return '.' else relative path.\n    if test -n \"$func_relative_path_result\"; then\n      func_stripname './' '' \"$func_relative_path_result\"\n      func_relative_path_result=$func_stripname_result\n    fi\n\n    test -n \"$func_relative_path_result\" || func_relative_path_result=.\n\n    :\n}\n\n\n# func_quote_for_eval ARG...\n# --------------------------\n# Aesthetically quote ARGs to be evaled later.\n# This function returns two values:\n#   i) func_quote_for_eval_result\n#      double-quoted, suitable for a subsequent eval\n#  ii) func_quote_for_eval_unquoted_result\n#      has all characters that are still active within double\n#      quotes backslashified.\nfunc_quote_for_eval ()\n{\n    $debug_cmd\n\n    func_quote_for_eval_unquoted_result=\n    func_quote_for_eval_result=\n    while test 0 -lt $#; do\n      case $1 in\n        *[\\\\\\`\\\"\\$]*)\n\t  _G_unquoted_arg=`printf '%s\\n' \"$1\" |$SED \"$sed_quote_subst\"` ;;\n        *)\n          _G_unquoted_arg=$1 ;;\n      esac\n      if test -n \"$func_quote_for_eval_unquoted_result\"; then\n\tfunc_append func_quote_for_eval_unquoted_result \" $_G_unquoted_arg\"\n      else\n        func_append func_quote_for_eval_unquoted_result \"$_G_unquoted_arg\"\n      fi\n\n      case $_G_unquoted_arg in\n        # Double-quote args containing shell metacharacters to delay\n        # word splitting, command substitution and variable expansion\n        # for a subsequent eval.\n        # Many Bourne shells cannot handle close brackets correctly\n        # in scan sets, so we specify it separately.\n        *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n          _G_quoted_arg=\\\"$_G_unquoted_arg\\\"\n          ;;\n        *)\n          _G_quoted_arg=$_G_unquoted_arg\n\t  ;;\n      esac\n\n      if test -n \"$func_quote_for_eval_result\"; then\n\tfunc_append func_quote_for_eval_result \" $_G_quoted_arg\"\n      else\n        func_append func_quote_for_eval_result \"$_G_quoted_arg\"\n      fi\n      shift\n    done\n}\n\n\n# func_quote_for_expand ARG\n# -------------------------\n# Aesthetically quote ARG to be evaled later; same as above,\n# but do not quote variable references.\nfunc_quote_for_expand ()\n{\n    $debug_cmd\n\n    case $1 in\n      *[\\\\\\`\\\"]*)\n\t_G_arg=`$ECHO \"$1\" | $SED \\\n\t    -e \"$sed_double_quote_subst\" -e \"$sed_double_backslash\"` ;;\n      *)\n        _G_arg=$1 ;;\n    esac\n\n    case $_G_arg in\n      # Double-quote args containing shell metacharacters to delay\n      # word splitting and command substitution for a subsequent eval.\n      # Many Bourne shells cannot handle close brackets correctly\n      # in scan sets, so we specify it separately.\n      *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n        _G_arg=\\\"$_G_arg\\\"\n        ;;\n    esac\n\n    func_quote_for_expand_result=$_G_arg\n}\n\n\n# func_stripname PREFIX SUFFIX NAME\n# ---------------------------------\n# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result.\n# PREFIX and SUFFIX must not contain globbing or regex special\n# characters, hashes, percent signs, but SUFFIX may contain a leading\n# dot (in which case that matches only a dot).\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_stripname ()\n  {\n    $debug_cmd\n\n    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\n    # positional parameters, so assign one to ordinary variable first.\n    func_stripname_result=$3\n    func_stripname_result=${func_stripname_result#\"$1\"}\n    func_stripname_result=${func_stripname_result%\"$2\"}\n  }'\nelse\n  func_stripname ()\n  {\n    $debug_cmd\n\n    case $2 in\n      .*) func_stripname_result=`$ECHO \"$3\" | $SED -e \"s%^$1%%\" -e \"s%\\\\\\\\$2\\$%%\"`;;\n      *)  func_stripname_result=`$ECHO \"$3\" | $SED -e \"s%^$1%%\" -e \"s%$2\\$%%\"`;;\n    esac\n  }\nfi\n\n\n# func_show_eval CMD [FAIL_EXP]\n# -----------------------------\n# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.\nfunc_show_eval ()\n{\n    $debug_cmd\n\n    _G_cmd=$1\n    _G_fail_exp=${2-':'}\n\n    func_quote_for_expand \"$_G_cmd\"\n    eval \"func_notquiet $func_quote_for_expand_result\"\n\n    $opt_dry_run || {\n      eval \"$_G_cmd\"\n      _G_status=$?\n      if test 0 -ne \"$_G_status\"; then\n\teval \"(exit $_G_status); $_G_fail_exp\"\n      fi\n    }\n}\n\n\n# func_show_eval_locale CMD [FAIL_EXP]\n# ------------------------------------\n# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.  Use the saved locale for evaluation.\nfunc_show_eval_locale ()\n{\n    $debug_cmd\n\n    _G_cmd=$1\n    _G_fail_exp=${2-':'}\n\n    $opt_quiet || {\n      func_quote_for_expand \"$_G_cmd\"\n      eval \"func_echo $func_quote_for_expand_result\"\n    }\n\n    $opt_dry_run || {\n      eval \"$_G_user_locale\n\t    $_G_cmd\"\n      _G_status=$?\n      eval \"$_G_safe_locale\"\n      if test 0 -ne \"$_G_status\"; then\n\teval \"(exit $_G_status); $_G_fail_exp\"\n      fi\n    }\n}\n\n\n# func_tr_sh\n# ----------\n# Turn $1 into a string suitable for a shell variable name.\n# Result is stored in $func_tr_sh_result.  All characters\n# not in the set a-zA-Z0-9_ are replaced with '_'. Further,\n# if $1 begins with a digit, a '_' is prepended as well.\nfunc_tr_sh ()\n{\n    $debug_cmd\n\n    case $1 in\n    [0-9]* | *[!a-zA-Z0-9_]*)\n      func_tr_sh_result=`$ECHO \"$1\" | $SED -e 's/^\\([0-9]\\)/_\\1/' -e 's/[^a-zA-Z0-9_]/_/g'`\n      ;;\n    * )\n      func_tr_sh_result=$1\n      ;;\n    esac\n}\n\n\n# func_verbose ARG...\n# -------------------\n# Echo program name prefixed message in verbose mode only.\nfunc_verbose ()\n{\n    $debug_cmd\n\n    $opt_verbose && func_echo \"$*\"\n\n    :\n}\n\n\n# func_warn_and_continue ARG...\n# -----------------------------\n# Echo program name prefixed warning message to standard error.\nfunc_warn_and_continue ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    func_echo_infix_1 \"${tc_red}warning$tc_reset\" \"$*\" >&2\n}\n\n\n# func_warning CATEGORY ARG...\n# ----------------------------\n# Echo program name prefixed warning message to standard error. Warning\n# messages can be filtered according to CATEGORY, where this function\n# elides messages where CATEGORY is not listed in the global variable\n# 'opt_warning_types'.\nfunc_warning ()\n{\n    $debug_cmd\n\n    # CATEGORY must be in the warning_categories list!\n    case \" $warning_categories \" in\n      *\" $1 \"*) ;;\n      *) func_internal_error \"invalid warning category '$1'\" ;;\n    esac\n\n    _G_category=$1\n    shift\n\n    case \" $opt_warning_types \" in\n      *\" $_G_category \"*) $warning_func ${1+\"$@\"} ;;\n    esac\n}\n\n\n# func_sort_ver VER1 VER2\n# -----------------------\n# 'sort -V' is not generally available.\n# Note this deviates from the version comparison in automake\n# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a\n# but this should suffice as we won't be specifying old\n# version formats or redundant trailing .0 in bootstrap.conf.\n# If we did want full compatibility then we should probably\n# use m4_version_compare from autoconf.\nfunc_sort_ver ()\n{\n    $debug_cmd\n\n    printf '%s\\n%s\\n' \"$1\" \"$2\" \\\n      | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n\n}\n\n# func_lt_ver PREV CURR\n# ---------------------\n# Return true if PREV and CURR are in the correct order according to\n# func_sort_ver, otherwise false.  Use it like this:\n#\n#  func_lt_ver \"$prev_ver\" \"$proposed_ver\" || func_fatal_error \"...\"\nfunc_lt_ver ()\n{\n    $debug_cmd\n\n    test \"x$1\" = x`func_sort_ver \"$1\" \"$2\" | $SED 1q`\n}\n\n\n# Local variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-pattern: \"10/scriptversion=%:y-%02m-%02d.%02H; # UTC\"\n# time-stamp-time-zone: \"UTC\"\n# End:\n#! /bin/sh\n\n# Set a version string for this script.\nscriptversion=2014-01-07.03; # UTC\n\n# A portable, pluggable option parser for Bourne shell.\n# Written by Gary V. Vaughan, 2010\n\n# Copyright (C) 2010-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n# Please report bugs or propose patches to gary@gnu.org.\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# This file is a library for parsing options in your shell scripts along\n# with assorted other useful supporting features that you can make use\n# of too.\n#\n# For the simplest scripts you might need only:\n#\n#   #!/bin/sh\n#   . relative/path/to/funclib.sh\n#   . relative/path/to/options-parser\n#   scriptversion=1.0\n#   func_options ${1+\"$@\"}\n#   eval set dummy \"$func_options_result\"; shift\n#   ...rest of your script...\n#\n# In order for the '--version' option to work, you will need to have a\n# suitably formatted comment like the one at the top of this file\n# starting with '# Written by ' and ending with '# warranty; '.\n#\n# For '-h' and '--help' to work, you will also need a one line\n# description of your script's purpose in a comment directly above the\n# '# Written by ' line, like the one at the top of this file.\n#\n# The default options also support '--debug', which will turn on shell\n# execution tracing (see the comment above debug_cmd below for another\n# use), and '--verbose' and the func_verbose function to allow your script\n# to display verbose messages only when your user has specified\n# '--verbose'.\n#\n# After sourcing this file, you can plug processing for additional\n# options by amending the variables from the 'Configuration' section\n# below, and following the instructions in the 'Option parsing'\n# section further down.\n\n## -------------- ##\n## Configuration. ##\n## -------------- ##\n\n# You should override these variables in your script after sourcing this\n# file so that they reflect the customisations you have added to the\n# option parser.\n\n# The usage line for option parsing errors and the start of '-h' and\n# '--help' output messages. You can embed shell variables for delayed\n# expansion at the time the message is displayed, but you will need to\n# quote other shell meta-characters carefully to prevent them being\n# expanded when the contents are evaled.\nusage='$progpath [OPTION]...'\n\n# Short help message in response to '-h' and '--help'.  Add to this or\n# override it after sourcing this library to reflect the full set of\n# options your script accepts.\nusage_message=\"\\\n       --debug        enable verbose shell tracing\n   -W, --warnings=CATEGORY\n                      report the warnings falling in CATEGORY [all]\n   -v, --verbose      verbosely report processing\n       --version      print version information and exit\n   -h, --help         print short or long help message and exit\n\"\n\n# Additional text appended to 'usage_message' in response to '--help'.\nlong_help_message=\"\nWarning categories include:\n       'all'          show all warnings\n       'none'         turn off all the warnings\n       'error'        warnings are treated as fatal errors\"\n\n# Help message printed before fatal option parsing errors.\nfatal_help=\"Try '\\$progname --help' for more information.\"\n\n\n\n## ------------------------- ##\n## Hook function management. ##\n## ------------------------- ##\n\n# This section contains functions for adding, removing, and running hooks\n# to the main code.  A hook is just a named list of of function, that can\n# be run in order later on.\n\n# func_hookable FUNC_NAME\n# -----------------------\n# Declare that FUNC_NAME will run hooks added with\n# 'func_add_hook FUNC_NAME ...'.\nfunc_hookable ()\n{\n    $debug_cmd\n\n    func_append hookable_fns \" $1\"\n}\n\n\n# func_add_hook FUNC_NAME HOOK_FUNC\n# ---------------------------------\n# Request that FUNC_NAME call HOOK_FUNC before it returns.  FUNC_NAME must\n# first have been declared \"hookable\" by a call to 'func_hookable'.\nfunc_add_hook ()\n{\n    $debug_cmd\n\n    case \" $hookable_fns \" in\n      *\" $1 \"*) ;;\n      *) func_fatal_error \"'$1' does not accept hook functions.\" ;;\n    esac\n\n    eval func_append ${1}_hooks '\" $2\"'\n}\n\n\n# func_remove_hook FUNC_NAME HOOK_FUNC\n# ------------------------------------\n# Remove HOOK_FUNC from the list of functions called by FUNC_NAME.\nfunc_remove_hook ()\n{\n    $debug_cmd\n\n    eval ${1}_hooks='`$ECHO \"\\$'$1'_hooks\" |$SED \"s| '$2'||\"`'\n}\n\n\n# func_run_hooks FUNC_NAME [ARG]...\n# ---------------------------------\n# Run all hook functions registered to FUNC_NAME.\n# It is assumed that the list of hook functions contains nothing more\n# than a whitespace-delimited list of legal shell function names, and\n# no effort is wasted trying to catch shell meta-characters or preserve\n# whitespace.\nfunc_run_hooks ()\n{\n    $debug_cmd\n\n    case \" $hookable_fns \" in\n      *\" $1 \"*) ;;\n      *) func_fatal_error \"'$1' does not support hook funcions.n\" ;;\n    esac\n\n    eval _G_hook_fns=\\$$1_hooks; shift\n\n    for _G_hook in $_G_hook_fns; do\n      eval $_G_hook '\"$@\"'\n\n      # store returned options list back into positional\n      # parameters for next 'cmd' execution.\n      eval _G_hook_result=\\$${_G_hook}_result\n      eval set dummy \"$_G_hook_result\"; shift\n    done\n\n    func_quote_for_eval ${1+\"$@\"}\n    func_run_hooks_result=$func_quote_for_eval_result\n}\n\n\n\n## --------------- ##\n## Option parsing. ##\n## --------------- ##\n\n# In order to add your own option parsing hooks, you must accept the\n# full positional parameter list in your hook function, remove any\n# options that you action, and then pass back the remaining unprocessed\n# options in '<hooked_function_name>_result', escaped suitably for\n# 'eval'.  Like this:\n#\n#    my_options_prep ()\n#    {\n#        $debug_cmd\n#\n#        # Extend the existing usage message.\n#        usage_message=$usage_message'\n#      -s, --silent       don'\\''t print informational messages\n#    '\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_options_prep_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_options_prep my_options_prep\n#\n#\n#    my_silent_option ()\n#    {\n#        $debug_cmd\n#\n#        # Note that for efficiency, we parse as many options as we can\n#        # recognise in a loop before passing the remainder back to the\n#        # caller on the first unrecognised argument we encounter.\n#        while test $# -gt 0; do\n#          opt=$1; shift\n#          case $opt in\n#            --silent|-s) opt_silent=: ;;\n#            # Separate non-argument short options:\n#            -s*)         func_split_short_opt \"$_G_opt\"\n#                         set dummy \"$func_split_short_opt_name\" \\\n#                             \"-$func_split_short_opt_arg\" ${1+\"$@\"}\n#                         shift\n#                         ;;\n#            *)            set dummy \"$_G_opt\" \"$*\"; shift; break ;;\n#          esac\n#        done\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_silent_option_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_parse_options my_silent_option\n#\n#\n#    my_option_validation ()\n#    {\n#        $debug_cmd\n#\n#        $opt_silent && $opt_verbose && func_fatal_help \"\\\n#    '--silent' and '--verbose' options are mutually exclusive.\"\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_option_validation_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_validate_options my_option_validation\n#\n# You'll alse need to manually amend $usage_message to reflect the extra\n# options you parse.  It's preferable to append if you can, so that\n# multiple option parsing hooks can be added safely.\n\n\n# func_options [ARG]...\n# ---------------------\n# All the functions called inside func_options are hookable. See the\n# individual implementations for details.\nfunc_hookable func_options\nfunc_options ()\n{\n    $debug_cmd\n\n    func_options_prep ${1+\"$@\"}\n    eval func_parse_options \\\n        ${func_options_prep_result+\"$func_options_prep_result\"}\n    eval func_validate_options \\\n        ${func_parse_options_result+\"$func_parse_options_result\"}\n\n    eval func_run_hooks func_options \\\n        ${func_validate_options_result+\"$func_validate_options_result\"}\n\n    # save modified positional parameters for caller\n    func_options_result=$func_run_hooks_result\n}\n\n\n# func_options_prep [ARG]...\n# --------------------------\n# All initialisations required before starting the option parse loop.\n# Note that when calling hook functions, we pass through the list of\n# positional parameters.  If a hook function modifies that list, and\n# needs to propogate that back to rest of this script, then the complete\n# modified list must be put in 'func_run_hooks_result' before\n# returning.\nfunc_hookable func_options_prep\nfunc_options_prep ()\n{\n    $debug_cmd\n\n    # Option defaults:\n    opt_verbose=false\n    opt_warning_types=\n\n    func_run_hooks func_options_prep ${1+\"$@\"}\n\n    # save modified positional parameters for caller\n    func_options_prep_result=$func_run_hooks_result\n}\n\n\n# func_parse_options [ARG]...\n# ---------------------------\n# The main option parsing loop.\nfunc_hookable func_parse_options\nfunc_parse_options ()\n{\n    $debug_cmd\n\n    func_parse_options_result=\n\n    # this just eases exit handling\n    while test $# -gt 0; do\n      # Defer to hook functions for initial option parsing, so they\n      # get priority in the event of reusing an option name.\n      func_run_hooks func_parse_options ${1+\"$@\"}\n\n      # Adjust func_parse_options positional parameters to match\n      eval set dummy \"$func_run_hooks_result\"; shift\n\n      # Break out of the loop if we already parsed every option.\n      test $# -gt 0 || break\n\n      _G_opt=$1\n      shift\n      case $_G_opt in\n        --debug|-x)   debug_cmd='set -x'\n                      func_echo \"enabling shell trace mode\"\n                      $debug_cmd\n                      ;;\n\n        --no-warnings|--no-warning|--no-warn)\n                      set dummy --warnings none ${1+\"$@\"}\n                      shift\n\t\t      ;;\n\n        --warnings|--warning|-W)\n                      test $# = 0 && func_missing_arg $_G_opt && break\n                      case \" $warning_categories $1\" in\n                        *\" $1 \"*)\n                          # trailing space prevents matching last $1 above\n                          func_append_uniq opt_warning_types \" $1\"\n                          ;;\n                        *all)\n                          opt_warning_types=$warning_categories\n                          ;;\n                        *none)\n                          opt_warning_types=none\n                          warning_func=:\n                          ;;\n                        *error)\n                          opt_warning_types=$warning_categories\n                          warning_func=func_fatal_error\n                          ;;\n                        *)\n                          func_fatal_error \\\n                             \"unsupported warning category: '$1'\"\n                          ;;\n                      esac\n                      shift\n                      ;;\n\n        --verbose|-v) opt_verbose=: ;;\n        --version)    func_version ;;\n        -\\?|-h)       func_usage ;;\n        --help)       func_help ;;\n\n\t# Separate optargs to long options (plugins may need this):\n\t--*=*)        func_split_equals \"$_G_opt\"\n\t              set dummy \"$func_split_equals_lhs\" \\\n                          \"$func_split_equals_rhs\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n       # Separate optargs to short options:\n        -W*)\n                      func_split_short_opt \"$_G_opt\"\n                      set dummy \"$func_split_short_opt_name\" \\\n                          \"$func_split_short_opt_arg\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n        # Separate non-argument short options:\n        -\\?*|-h*|-v*|-x*)\n                      func_split_short_opt \"$_G_opt\"\n                      set dummy \"$func_split_short_opt_name\" \\\n                          \"-$func_split_short_opt_arg\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n        --)           break ;;\n        -*)           func_fatal_help \"unrecognised option: '$_G_opt'\" ;;\n        *)            set dummy \"$_G_opt\" ${1+\"$@\"}; shift; break ;;\n      esac\n    done\n\n    # save modified positional parameters for caller\n    func_quote_for_eval ${1+\"$@\"}\n    func_parse_options_result=$func_quote_for_eval_result\n}\n\n\n# func_validate_options [ARG]...\n# ------------------------------\n# Perform any sanity checks on option settings and/or unconsumed\n# arguments.\nfunc_hookable func_validate_options\nfunc_validate_options ()\n{\n    $debug_cmd\n\n    # Display all warnings if -W was not given.\n    test -n \"$opt_warning_types\" || opt_warning_types=\" $warning_categories\"\n\n    func_run_hooks func_validate_options ${1+\"$@\"}\n\n    # Bail if the options were screwed!\n    $exit_cmd $EXIT_FAILURE\n\n    # save modified positional parameters for caller\n    func_validate_options_result=$func_run_hooks_result\n}\n\n\n\n## ----------------- ##\n## Helper functions. ##\n## ----------------- ##\n\n# This section contains the helper functions used by the rest of the\n# hookable option parser framework in ascii-betical order.\n\n\n# func_fatal_help ARG...\n# ----------------------\n# Echo program name prefixed message to standard error, followed by\n# a help hint, and exit.\nfunc_fatal_help ()\n{\n    $debug_cmd\n\n    eval \\$ECHO \\\"\"Usage: $usage\"\\\"\n    eval \\$ECHO \\\"\"$fatal_help\"\\\"\n    func_error ${1+\"$@\"}\n    exit $EXIT_FAILURE\n}\n\n\n# func_help\n# ---------\n# Echo long help message to standard output and exit.\nfunc_help ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"$long_help_message\"\n    exit 0\n}\n\n\n# func_missing_arg ARGNAME\n# ------------------------\n# Echo program name prefixed message to standard error and set global\n# exit_cmd.\nfunc_missing_arg ()\n{\n    $debug_cmd\n\n    func_error \"Missing argument for '$1'.\"\n    exit_cmd=exit\n}\n\n\n# func_split_equals STRING\n# ------------------------\n# Set func_split_equals_lhs and func_split_equals_rhs shell variables after\n# splitting STRING at the '=' sign.\ntest -z \"$_G_HAVE_XSI_OPS\" \\\n    && (eval 'x=a/b/c;\n      test 5aa/bb/cc = \"${#x}${x%%/*}${x%/*}${x#*/}${x##*/}\"') 2>/dev/null \\\n    && _G_HAVE_XSI_OPS=yes\n\nif test yes = \"$_G_HAVE_XSI_OPS\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_split_equals ()\n  {\n      $debug_cmd\n\n      func_split_equals_lhs=${1%%=*}\n      func_split_equals_rhs=${1#*=}\n      test \"x$func_split_equals_lhs\" = \"x$1\" \\\n        && func_split_equals_rhs=\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_split_equals ()\n  {\n      $debug_cmd\n\n      func_split_equals_lhs=`expr \"x$1\" : 'x\\([^=]*\\)'`\n      func_split_equals_rhs=\n      test \"x$func_split_equals_lhs\" = \"x$1\" \\\n        || func_split_equals_rhs=`expr \"x$1\" : 'x[^=]*=\\(.*\\)$'`\n  }\nfi #func_split_equals\n\n\n# func_split_short_opt SHORTOPT\n# -----------------------------\n# Set func_split_short_opt_name and func_split_short_opt_arg shell\n# variables after splitting SHORTOPT after the 2nd character.\nif test yes = \"$_G_HAVE_XSI_OPS\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_split_short_opt ()\n  {\n      $debug_cmd\n\n      func_split_short_opt_arg=${1#??}\n      func_split_short_opt_name=${1%\"$func_split_short_opt_arg\"}\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_split_short_opt ()\n  {\n      $debug_cmd\n\n      func_split_short_opt_name=`expr \"x$1\" : 'x-\\(.\\)'`\n      func_split_short_opt_arg=`expr \"x$1\" : 'x-.\\(.*\\)$'`\n  }\nfi #func_split_short_opt\n\n\n# func_usage\n# ----------\n# Echo short help message to standard output and exit.\nfunc_usage ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"Run '$progname --help |${PAGER-more}' for full usage\"\n    exit 0\n}\n\n\n# func_usage_message\n# ------------------\n# Echo short help message to standard output.\nfunc_usage_message ()\n{\n    $debug_cmd\n\n    eval \\$ECHO \\\"\"Usage: $usage\"\\\"\n    echo\n    $SED -n 's|^# ||\n        /^Written by/{\n          x;p;x\n        }\n\th\n\t/^Written by/q' < \"$progpath\"\n    echo\n    eval \\$ECHO \\\"\"$usage_message\"\\\"\n}\n\n\n# func_version\n# ------------\n# Echo version message to standard output and exit.\nfunc_version ()\n{\n    $debug_cmd\n\n    printf '%s\\n' \"$progname $scriptversion\"\n    $SED -n '\n        /(C)/!b go\n        :more\n        /\\./!{\n          N\n          s|\\n# | |\n          b more\n        }\n        :go\n        /^# Written by /,/# warranty; / {\n          s|^# ||\n          s|^# *$||\n          s|\\((C)\\)[ 0-9,-]*[ ,-]\\([1-9][0-9]* \\)|\\1 \\2|\n          p\n        }\n        /^# Written by / {\n          s|^# ||\n          p\n        }\n        /^warranty; /q' < \"$progpath\"\n\n    exit $?\n}\n\n\n# Local variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-pattern: \"10/scriptversion=%:y-%02m-%02d.%02H; # UTC\"\n# time-stamp-time-zone: \"UTC\"\n# End:\n\n# Set a version string.\nscriptversion='(GNU libtool) 2.4.6'\n\n\n# func_echo ARG...\n# ----------------\n# Libtool also displays the current mode in messages, so override\n# funclib.sh func_echo with this custom definition.\nfunc_echo ()\n{\n    $debug_cmd\n\n    _G_message=$*\n\n    func_echo_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_IFS\n      $ECHO \"$progname${opt_mode+: $opt_mode}: $_G_line\"\n    done\n    IFS=$func_echo_IFS\n}\n\n\n# func_warning ARG...\n# -------------------\n# Libtool warnings are not categorized, so override funclib.sh\n# func_warning with this simpler definition.\nfunc_warning ()\n{\n    $debug_cmd\n\n    $warning_func ${1+\"$@\"}\n}\n\n\n## ---------------- ##\n## Options parsing. ##\n## ---------------- ##\n\n# Hook in the functions to make sure our own options are parsed during\n# the option parsing loop.\n\nusage='$progpath [OPTION]... [MODE-ARG]...'\n\n# Short help message in response to '-h'.\nusage_message=\"Options:\n       --config             show all configuration variables\n       --debug              enable verbose shell tracing\n   -n, --dry-run            display commands without modifying any files\n       --features           display basic configuration information and exit\n       --mode=MODE          use operation mode MODE\n       --no-warnings        equivalent to '-Wnone'\n       --preserve-dup-deps  don't remove duplicate dependency libraries\n       --quiet, --silent    don't print informational messages\n       --tag=TAG            use configuration variables from tag TAG\n   -v, --verbose            print more informational messages than default\n       --version            print version information\n   -W, --warnings=CATEGORY  report the warnings falling in CATEGORY [all]\n   -h, --help, --help-all   print short, long, or detailed help message\n\"\n\n# Additional text appended to 'usage_message' in response to '--help'.\nfunc_help ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"$long_help_message\n\nMODE must be one of the following:\n\n       clean           remove files from the build directory\n       compile         compile a source file into a libtool object\n       execute         automatically set library path, then run a program\n       finish          complete the installation of libtool libraries\n       install         install libraries or executables\n       link            create a library or an executable\n       uninstall       remove libraries from an installed directory\n\nMODE-ARGS vary depending on the MODE.  When passed as first option,\n'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that.\nTry '$progname --help --mode=MODE' for a more detailed description of MODE.\n\nWhen reporting a bug, please describe a test case to reproduce it and\ninclude the following information:\n\n       host-triplet:   $host\n       shell:          $SHELL\n       compiler:       $LTCC\n       compiler flags: $LTCFLAGS\n       linker:         $LD (gnu? $with_gnu_ld)\n       version:        $progname (GNU libtool) 2.4.6\n       automake:       `($AUTOMAKE --version) 2>/dev/null |$SED 1q`\n       autoconf:       `($AUTOCONF --version) 2>/dev/null |$SED 1q`\n\nReport bugs to <bug-libtool@gnu.org>.\nGNU libtool home page: <http://www.gnu.org/software/libtool/>.\nGeneral help using GNU software: <http://www.gnu.org/gethelp/>.\"\n    exit 0\n}\n\n\n# func_lo2o OBJECT-NAME\n# ---------------------\n# Transform OBJECT-NAME from a '.lo' suffix to the platform specific\n# object suffix.\n\nlo2o=s/\\\\.lo\\$/.$objext/\no2lo=s/\\\\.$objext\\$/.lo/\n\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_lo2o ()\n  {\n    case $1 in\n      *.lo) func_lo2o_result=${1%.lo}.$objext ;;\n      *   ) func_lo2o_result=$1               ;;\n    esac\n  }'\n\n  # func_xform LIBOBJ-OR-SOURCE\n  # ---------------------------\n  # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise)\n  # suffix to a '.lo' libtool-object suffix.\n  eval 'func_xform ()\n  {\n    func_xform_result=${1%.*}.lo\n  }'\nelse\n  # ...otherwise fall back to using sed.\n  func_lo2o ()\n  {\n    func_lo2o_result=`$ECHO \"$1\" | $SED \"$lo2o\"`\n  }\n\n  func_xform ()\n  {\n    func_xform_result=`$ECHO \"$1\" | $SED 's|\\.[^.]*$|.lo|'`\n  }\nfi\n\n\n# func_fatal_configuration ARG...\n# -------------------------------\n# Echo program name prefixed message to standard error, followed by\n# a configuration failure hint, and exit.\nfunc_fatal_configuration ()\n{\n    func__fatal_error ${1+\"$@\"} \\\n      \"See the $PACKAGE documentation for more information.\" \\\n      \"Fatal configuration error.\"\n}\n\n\n# func_config\n# -----------\n# Display the configuration for all the tags in this script.\nfunc_config ()\n{\n    re_begincf='^# ### BEGIN LIBTOOL'\n    re_endcf='^# ### END LIBTOOL'\n\n    # Default configuration.\n    $SED \"1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\\$d\" < \"$progpath\"\n\n    # Now print the configurations for the tags.\n    for tagname in $taglist; do\n      $SED -n \"/$re_begincf TAG CONFIG: $tagname\\$/,/$re_endcf TAG CONFIG: $tagname\\$/p\" < \"$progpath\"\n    done\n\n    exit $?\n}\n\n\n# func_features\n# -------------\n# Display the features supported by this script.\nfunc_features ()\n{\n    echo \"host: $host\"\n    if test yes = \"$build_libtool_libs\"; then\n      echo \"enable shared libraries\"\n    else\n      echo \"disable shared libraries\"\n    fi\n    if test yes = \"$build_old_libs\"; then\n      echo \"enable static libraries\"\n    else\n      echo \"disable static libraries\"\n    fi\n\n    exit $?\n}\n\n\n# func_enable_tag TAGNAME\n# -----------------------\n# Verify that TAGNAME is valid, and either flag an error and exit, or\n# enable the TAGNAME tag.  We also add TAGNAME to the global $taglist\n# variable here.\nfunc_enable_tag ()\n{\n    # Global variable:\n    tagname=$1\n\n    re_begincf=\"^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\\$\"\n    re_endcf=\"^# ### END LIBTOOL TAG CONFIG: $tagname\\$\"\n    sed_extractcf=/$re_begincf/,/$re_endcf/p\n\n    # Validate tagname.\n    case $tagname in\n      *[!-_A-Za-z0-9,/]*)\n        func_fatal_error \"invalid tag name: $tagname\"\n        ;;\n    esac\n\n    # Don't test for the \"default\" C tag, as we know it's\n    # there but not specially marked.\n    case $tagname in\n        CC) ;;\n    *)\n        if $GREP \"$re_begincf\" \"$progpath\" >/dev/null 2>&1; then\n\t  taglist=\"$taglist $tagname\"\n\n\t  # Evaluate the configuration.  Be careful to quote the path\n\t  # and the sed script, to avoid splitting on whitespace, but\n\t  # also don't use non-portable quotes within backquotes within\n\t  # quotes we have to do it in 2 steps:\n\t  extractedcf=`$SED -n -e \"$sed_extractcf\" < \"$progpath\"`\n\t  eval \"$extractedcf\"\n        else\n\t  func_error \"ignoring unknown tag $tagname\"\n        fi\n        ;;\n    esac\n}\n\n\n# func_check_version_match\n# ------------------------\n# Ensure that we are using m4 macros, and libtool script from the same\n# release of libtool.\nfunc_check_version_match ()\n{\n    if test \"$package_revision\" != \"$macro_revision\"; then\n      if test \"$VERSION\" != \"$macro_version\"; then\n        if test -z \"$macro_version\"; then\n          cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from an older release.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n        else\n          cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from $PACKAGE $macro_version.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n        fi\n      else\n        cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, revision $package_revision,\n$progname: but the definition of this LT_INIT comes from revision $macro_revision.\n$progname: You should recreate aclocal.m4 with macros from revision $package_revision\n$progname: of $PACKAGE $VERSION and run autoconf again.\n_LT_EOF\n      fi\n\n      exit $EXIT_MISMATCH\n    fi\n}\n\n\n# libtool_options_prep [ARG]...\n# -----------------------------\n# Preparation for options parsed by libtool.\nlibtool_options_prep ()\n{\n    $debug_mode\n\n    # Option defaults:\n    opt_config=false\n    opt_dlopen=\n    opt_dry_run=false\n    opt_help=false\n    opt_mode=\n    opt_preserve_dup_deps=false\n    opt_quiet=false\n\n    nonopt=\n    preserve_args=\n\n    # Shorthand for --mode=foo, only valid as the first argument\n    case $1 in\n    clean|clea|cle|cl)\n      shift; set dummy --mode clean ${1+\"$@\"}; shift\n      ;;\n    compile|compil|compi|comp|com|co|c)\n      shift; set dummy --mode compile ${1+\"$@\"}; shift\n      ;;\n    execute|execut|execu|exec|exe|ex|e)\n      shift; set dummy --mode execute ${1+\"$@\"}; shift\n      ;;\n    finish|finis|fini|fin|fi|f)\n      shift; set dummy --mode finish ${1+\"$@\"}; shift\n      ;;\n    install|instal|insta|inst|ins|in|i)\n      shift; set dummy --mode install ${1+\"$@\"}; shift\n      ;;\n    link|lin|li|l)\n      shift; set dummy --mode link ${1+\"$@\"}; shift\n      ;;\n    uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)\n      shift; set dummy --mode uninstall ${1+\"$@\"}; shift\n      ;;\n    esac\n\n    # Pass back the list of options.\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_options_prep_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_options_prep libtool_options_prep\n\n\n# libtool_parse_options [ARG]...\n# ---------------------------------\n# Provide handling for libtool specific options.\nlibtool_parse_options ()\n{\n    $debug_cmd\n\n    # Perform our own loop to consume as many options as possible in\n    # each iteration.\n    while test $# -gt 0; do\n      _G_opt=$1\n      shift\n      case $_G_opt in\n        --dry-run|--dryrun|-n)\n                        opt_dry_run=:\n                        ;;\n\n        --config)       func_config ;;\n\n        --dlopen|-dlopen)\n                        opt_dlopen=\"${opt_dlopen+$opt_dlopen\n}$1\"\n                        shift\n                        ;;\n\n        --preserve-dup-deps)\n                        opt_preserve_dup_deps=: ;;\n\n        --features)     func_features ;;\n\n        --finish)       set dummy --mode finish ${1+\"$@\"}; shift ;;\n\n        --help)         opt_help=: ;;\n\n        --help-all)     opt_help=': help-all' ;;\n\n        --mode)         test $# = 0 && func_missing_arg $_G_opt && break\n                        opt_mode=$1\n                        case $1 in\n                          # Valid mode arguments:\n                          clean|compile|execute|finish|install|link|relink|uninstall) ;;\n\n                          # Catch anything else as an error\n                          *) func_error \"invalid argument for $_G_opt\"\n                             exit_cmd=exit\n                             break\n                             ;;\n                        esac\n                        shift\n                        ;;\n\n        --no-silent|--no-quiet)\n                        opt_quiet=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --no-warnings|--no-warning|--no-warn)\n                        opt_warning=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --no-verbose)\n                        opt_verbose=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --silent|--quiet)\n                        opt_quiet=:\n                        opt_verbose=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --tag)          test $# = 0 && func_missing_arg $_G_opt && break\n                        opt_tag=$1\n                        func_append preserve_args \" $_G_opt $1\"\n                        func_enable_tag \"$1\"\n                        shift\n                        ;;\n\n        --verbose|-v)   opt_quiet=false\n                        opt_verbose=:\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n\t# An option not handled by this hook function:\n        *)\t\tset dummy \"$_G_opt\" ${1+\"$@\"};\tshift; break  ;;\n      esac\n    done\n\n\n    # save modified positional parameters for caller\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_parse_options_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_parse_options libtool_parse_options\n\n\n\n# libtool_validate_options [ARG]...\n# ---------------------------------\n# Perform any sanity checks on option settings and/or unconsumed\n# arguments.\nlibtool_validate_options ()\n{\n    # save first non-option argument\n    if test 0 -lt $#; then\n      nonopt=$1\n      shift\n    fi\n\n    # preserve --debug\n    test : = \"$debug_cmd\" || func_append preserve_args \" --debug\"\n\n    case $host in\n      # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452\n      # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788\n      *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*)\n        # don't eliminate duplications in $postdeps and $predeps\n        opt_duplicate_compiler_generated_deps=:\n        ;;\n      *)\n        opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps\n        ;;\n    esac\n\n    $opt_help || {\n      # Sanity checks first:\n      func_check_version_match\n\n      test yes != \"$build_libtool_libs\" \\\n        && test yes != \"$build_old_libs\" \\\n        && func_fatal_configuration \"not configured to build any kind of library\"\n\n      # Darwin sucks\n      eval std_shrext=\\\"$shrext_cmds\\\"\n\n      # Only execute mode is allowed to have -dlopen flags.\n      if test -n \"$opt_dlopen\" && test execute != \"$opt_mode\"; then\n        func_error \"unrecognized option '-dlopen'\"\n        $ECHO \"$help\" 1>&2\n        exit $EXIT_FAILURE\n      fi\n\n      # Change the help message to a mode-specific one.\n      generic_help=$help\n      help=\"Try '$progname --help --mode=$opt_mode' for more information.\"\n    }\n\n    # Pass back the unparsed argument list\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_validate_options_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_validate_options libtool_validate_options\n\n\n# Process options as early as possible so that --help and --version\n# can return quickly.\nfunc_options ${1+\"$@\"}\neval set dummy \"$func_options_result\"; shift\n\n\n\n## ----------- ##\n##    Main.    ##\n## ----------- ##\n\nmagic='%%%MAGIC variable%%%'\nmagic_exe='%%%MAGIC EXE variable%%%'\n\n# Global variables.\nextracted_archives=\nextracted_serial=0\n\n# If this variable is set in any of the actions, the command in it\n# will be execed at the end.  This prevents here-documents from being\n# left over by shells.\nexec_cmd=\n\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n}\n\n# func_generated_by_libtool\n# True iff stdin has been generated by Libtool. This function is only\n# a basic sanity check; it will hardly flush out determined imposters.\nfunc_generated_by_libtool_p ()\n{\n  $GREP \"^# Generated by .*$PACKAGE\" > /dev/null 2>&1\n}\n\n# func_lalib_p file\n# True iff FILE is a libtool '.la' library or '.lo' object file.\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_lalib_p ()\n{\n    test -f \"$1\" &&\n      $SED -e 4q \"$1\" 2>/dev/null | func_generated_by_libtool_p\n}\n\n# func_lalib_unsafe_p file\n# True iff FILE is a libtool '.la' library or '.lo' object file.\n# This function implements the same check as func_lalib_p without\n# resorting to external programs.  To this end, it redirects stdin and\n# closes it afterwards, without saving the original file descriptor.\n# As a safety measure, use it only where a negative result would be\n# fatal anyway.  Works if 'file' does not exist.\nfunc_lalib_unsafe_p ()\n{\n    lalib_p=no\n    if test -f \"$1\" && test -r \"$1\" && exec 5<&0 <\"$1\"; then\n\tfor lalib_p_l in 1 2 3 4\n\tdo\n\t    read lalib_p_line\n\t    case $lalib_p_line in\n\t\t\\#\\ Generated\\ by\\ *$PACKAGE* ) lalib_p=yes; break;;\n\t    esac\n\tdone\n\texec 0<&5 5<&-\n    fi\n    test yes = \"$lalib_p\"\n}\n\n# func_ltwrapper_script_p file\n# True iff FILE is a libtool wrapper script\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_script_p ()\n{\n    test -f \"$1\" &&\n      $lt_truncate_bin < \"$1\" 2>/dev/null | func_generated_by_libtool_p\n}\n\n# func_ltwrapper_executable_p file\n# True iff FILE is a libtool wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_executable_p ()\n{\n    func_ltwrapper_exec_suffix=\n    case $1 in\n    *.exe) ;;\n    *) func_ltwrapper_exec_suffix=.exe ;;\n    esac\n    $GREP \"$magic_exe\" \"$1$func_ltwrapper_exec_suffix\" >/dev/null 2>&1\n}\n\n# func_ltwrapper_scriptname file\n# Assumes file is an ltwrapper_executable\n# uses $file to determine the appropriate filename for a\n# temporary ltwrapper_script.\nfunc_ltwrapper_scriptname ()\n{\n    func_dirname_and_basename \"$1\" \"\" \".\"\n    func_stripname '' '.exe' \"$func_basename_result\"\n    func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper\n}\n\n# func_ltwrapper_p file\n# True iff FILE is a libtool wrapper script or wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_p ()\n{\n    func_ltwrapper_script_p \"$1\" || func_ltwrapper_executable_p \"$1\"\n}\n\n\n# func_execute_cmds commands fail_cmd\n# Execute tilde-delimited COMMANDS.\n# If FAIL_CMD is given, eval that upon failure.\n# FAIL_CMD may read-access the current command in variable CMD!\nfunc_execute_cmds ()\n{\n    $debug_cmd\n\n    save_ifs=$IFS; IFS='~'\n    for cmd in $1; do\n      IFS=$sp$nl\n      eval cmd=\\\"$cmd\\\"\n      IFS=$save_ifs\n      func_show_eval \"$cmd\" \"${2-:}\"\n    done\n    IFS=$save_ifs\n}\n\n\n# func_source file\n# Source FILE, adding directory component if necessary.\n# Note that it is not necessary on cygwin/mingw to append a dot to\n# FILE even if both FILE and FILE.exe exist: automatic-append-.exe\n# behavior happens only for exec(3), not for open(2)!  Also, sourcing\n# 'FILE.' does not work on cygwin managed mounts.\nfunc_source ()\n{\n    $debug_cmd\n\n    case $1 in\n    */* | *\\\\*)\t. \"$1\" ;;\n    *)\t\t. \"./$1\" ;;\n    esac\n}\n\n\n# func_resolve_sysroot PATH\n# Replace a leading = in PATH with a sysroot.  Store the result into\n# func_resolve_sysroot_result\nfunc_resolve_sysroot ()\n{\n  func_resolve_sysroot_result=$1\n  case $func_resolve_sysroot_result in\n  =*)\n    func_stripname '=' '' \"$func_resolve_sysroot_result\"\n    func_resolve_sysroot_result=$lt_sysroot$func_stripname_result\n    ;;\n  esac\n}\n\n# func_replace_sysroot PATH\n# If PATH begins with the sysroot, replace it with = and\n# store the result into func_replace_sysroot_result.\nfunc_replace_sysroot ()\n{\n  case $lt_sysroot:$1 in\n  ?*:\"$lt_sysroot\"*)\n    func_stripname \"$lt_sysroot\" '' \"$1\"\n    func_replace_sysroot_result='='$func_stripname_result\n    ;;\n  *)\n    # Including no sysroot.\n    func_replace_sysroot_result=$1\n    ;;\n  esac\n}\n\n# func_infer_tag arg\n# Infer tagged configuration to use if any are available and\n# if one wasn't chosen via the \"--tag\" command line option.\n# Only attempt this if the compiler in the base compile\n# command doesn't match the default compiler.\n# arg is usually of the form 'gcc ...'\nfunc_infer_tag ()\n{\n    $debug_cmd\n\n    if test -n \"$available_tags\" && test -z \"$tagname\"; then\n      CC_quoted=\n      for arg in $CC; do\n\tfunc_append_quoted CC_quoted \"$arg\"\n      done\n      CC_expanded=`func_echo_all $CC`\n      CC_quoted_expanded=`func_echo_all $CC_quoted`\n      case $@ in\n      # Blanks in the command may have been stripped by the calling shell,\n      # but not from the CC environment variable when configure was run.\n      \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n      \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*) ;;\n      # Blanks at the start of $base_compile will cause this to fail\n      # if we don't check for them as well.\n      *)\n\tfor z in $available_tags; do\n\t  if $GREP \"^# ### BEGIN LIBTOOL TAG CONFIG: $z$\" < \"$progpath\" > /dev/null; then\n\t    # Evaluate the configuration.\n\t    eval \"`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`\"\n\t    CC_quoted=\n\t    for arg in $CC; do\n\t      # Double-quote args containing other shell metacharacters.\n\t      func_append_quoted CC_quoted \"$arg\"\n\t    done\n\t    CC_expanded=`func_echo_all $CC`\n\t    CC_quoted_expanded=`func_echo_all $CC_quoted`\n\t    case \"$@ \" in\n\t    \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n\t    \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*)\n\t      # The compiler in the base compile command matches\n\t      # the one in the tagged configuration.\n\t      # Assume this is the tagged configuration we want.\n\t      tagname=$z\n\t      break\n\t      ;;\n\t    esac\n\t  fi\n\tdone\n\t# If $tagname still isn't set, then no tagged configuration\n\t# was found and let the user know that the \"--tag\" command\n\t# line option must be used.\n\tif test -z \"$tagname\"; then\n\t  func_echo \"unable to infer tagged configuration\"\n\t  func_fatal_error \"specify a tag with '--tag'\"\n#\telse\n#\t  func_verbose \"using $tagname tagged configuration\"\n\tfi\n\t;;\n      esac\n    fi\n}\n\n\n\n# func_write_libtool_object output_name pic_name nonpic_name\n# Create a libtool object file (analogous to a \".la\" file),\n# but don't create it if we're doing a dry run.\nfunc_write_libtool_object ()\n{\n    write_libobj=$1\n    if test yes = \"$build_libtool_libs\"; then\n      write_lobj=\\'$2\\'\n    else\n      write_lobj=none\n    fi\n\n    if test yes = \"$build_old_libs\"; then\n      write_oldobj=\\'$3\\'\n    else\n      write_oldobj=none\n    fi\n\n    $opt_dry_run || {\n      cat >${write_libobj}T <<EOF\n# $write_libobj - a libtool object file\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# Name of the PIC object.\npic_object=$write_lobj\n\n# Name of the non-PIC object\nnon_pic_object=$write_oldobj\n\nEOF\n      $MV \"${write_libobj}T\" \"$write_libobj\"\n    }\n}\n\n\n##################################################\n# FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #\n##################################################\n\n# func_convert_core_file_wine_to_w32 ARG\n# Helper function used by file name conversion functions when $build is *nix,\n# and $host is mingw, cygwin, or some other w32 environment. Relies on a\n# correctly configured wine environment available, with the winepath program\n# in $build's $PATH.\n#\n# ARG is the $build file name to be converted to w32 format.\n# Result is available in $func_convert_core_file_wine_to_w32_result, and will\n# be empty on error (or when ARG is empty)\nfunc_convert_core_file_wine_to_w32 ()\n{\n  $debug_cmd\n\n  func_convert_core_file_wine_to_w32_result=$1\n  if test -n \"$1\"; then\n    # Unfortunately, winepath does not exit with a non-zero error code, so we\n    # are forced to check the contents of stdout. On the other hand, if the\n    # command is not found, the shell will set an exit code of 127 and print\n    # *an error message* to stdout. So we must check for both error code of\n    # zero AND non-empty stdout, which explains the odd construction:\n    func_convert_core_file_wine_to_w32_tmp=`winepath -w \"$1\" 2>/dev/null`\n    if test \"$?\" -eq 0 && test -n \"$func_convert_core_file_wine_to_w32_tmp\"; then\n      func_convert_core_file_wine_to_w32_result=`$ECHO \"$func_convert_core_file_wine_to_w32_tmp\" |\n        $SED -e \"$sed_naive_backslashify\"`\n    else\n      func_convert_core_file_wine_to_w32_result=\n    fi\n  fi\n}\n# end: func_convert_core_file_wine_to_w32\n\n\n# func_convert_core_path_wine_to_w32 ARG\n# Helper function used by path conversion functions when $build is *nix, and\n# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly\n# configured wine environment available, with the winepath program in $build's\n# $PATH. Assumes ARG has no leading or trailing path separator characters.\n#\n# ARG is path to be converted from $build format to win32.\n# Result is available in $func_convert_core_path_wine_to_w32_result.\n# Unconvertible file (directory) names in ARG are skipped; if no directory names\n# are convertible, then the result may be empty.\nfunc_convert_core_path_wine_to_w32 ()\n{\n  $debug_cmd\n\n  # unfortunately, winepath doesn't convert paths, only file names\n  func_convert_core_path_wine_to_w32_result=\n  if test -n \"$1\"; then\n    oldIFS=$IFS\n    IFS=:\n    for func_convert_core_path_wine_to_w32_f in $1; do\n      IFS=$oldIFS\n      func_convert_core_file_wine_to_w32 \"$func_convert_core_path_wine_to_w32_f\"\n      if test -n \"$func_convert_core_file_wine_to_w32_result\"; then\n        if test -z \"$func_convert_core_path_wine_to_w32_result\"; then\n          func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result\n        else\n          func_append func_convert_core_path_wine_to_w32_result \";$func_convert_core_file_wine_to_w32_result\"\n        fi\n      fi\n    done\n    IFS=$oldIFS\n  fi\n}\n# end: func_convert_core_path_wine_to_w32\n\n\n# func_cygpath ARGS...\n# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when\n# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)\n# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or\n# (2), returns the Cygwin file name or path in func_cygpath_result (input\n# file name or path is assumed to be in w32 format, as previously converted\n# from $build's *nix or MSYS format). In case (3), returns the w32 file name\n# or path in func_cygpath_result (input file name or path is assumed to be in\n# Cygwin format). Returns an empty string on error.\n#\n# ARGS are passed to cygpath, with the last one being the file name or path to\n# be converted.\n#\n# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH\n# environment variable; do not put it in $PATH.\nfunc_cygpath ()\n{\n  $debug_cmd\n\n  if test -n \"$LT_CYGPATH\" && test -f \"$LT_CYGPATH\"; then\n    func_cygpath_result=`$LT_CYGPATH \"$@\" 2>/dev/null`\n    if test \"$?\" -ne 0; then\n      # on failure, ensure result is empty\n      func_cygpath_result=\n    fi\n  else\n    func_cygpath_result=\n    func_error \"LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'\"\n  fi\n}\n#end: func_cygpath\n\n\n# func_convert_core_msys_to_w32 ARG\n# Convert file name or path ARG from MSYS format to w32 format.  Return\n# result in func_convert_core_msys_to_w32_result.\nfunc_convert_core_msys_to_w32 ()\n{\n  $debug_cmd\n\n  # awkward: cmd appends spaces to result\n  func_convert_core_msys_to_w32_result=`( cmd //c echo \"$1\" ) 2>/dev/null |\n    $SED -e 's/[ ]*$//' -e \"$sed_naive_backslashify\"`\n}\n#end: func_convert_core_msys_to_w32\n\n\n# func_convert_file_check ARG1 ARG2\n# Verify that ARG1 (a file name in $build format) was converted to $host\n# format in ARG2. Otherwise, emit an error message, but continue (resetting\n# func_to_host_file_result to ARG1).\nfunc_convert_file_check ()\n{\n  $debug_cmd\n\n  if test -z \"$2\" && test -n \"$1\"; then\n    func_error \"Could not determine host file name corresponding to\"\n    func_error \"  '$1'\"\n    func_error \"Continuing, but uninstalled executables may not work.\"\n    # Fallback:\n    func_to_host_file_result=$1\n  fi\n}\n# end func_convert_file_check\n\n\n# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH\n# Verify that FROM_PATH (a path in $build format) was converted to $host\n# format in TO_PATH. Otherwise, emit an error message, but continue, resetting\n# func_to_host_file_result to a simplistic fallback value (see below).\nfunc_convert_path_check ()\n{\n  $debug_cmd\n\n  if test -z \"$4\" && test -n \"$3\"; then\n    func_error \"Could not determine the host path corresponding to\"\n    func_error \"  '$3'\"\n    func_error \"Continuing, but uninstalled executables may not work.\"\n    # Fallback.  This is a deliberately simplistic \"conversion\" and\n    # should not be \"improved\".  See libtool.info.\n    if test \"x$1\" != \"x$2\"; then\n      lt_replace_pathsep_chars=\"s|$1|$2|g\"\n      func_to_host_path_result=`echo \"$3\" |\n        $SED -e \"$lt_replace_pathsep_chars\"`\n    else\n      func_to_host_path_result=$3\n    fi\n  fi\n}\n# end func_convert_path_check\n\n\n# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG\n# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT\n# and appending REPL if ORIG matches BACKPAT.\nfunc_convert_path_front_back_pathsep ()\n{\n  $debug_cmd\n\n  case $4 in\n  $1 ) func_to_host_path_result=$3$func_to_host_path_result\n    ;;\n  esac\n  case $4 in\n  $2 ) func_append func_to_host_path_result \"$3\"\n    ;;\n  esac\n}\n# end func_convert_path_front_back_pathsep\n\n\n##################################################\n# $build to $host FILE NAME CONVERSION FUNCTIONS #\n##################################################\n# invoked via '$to_host_file_cmd ARG'\n#\n# In each case, ARG is the path to be converted from $build to $host format.\n# Result will be available in $func_to_host_file_result.\n\n\n# func_to_host_file ARG\n# Converts the file name ARG from $build format to $host format. Return result\n# in func_to_host_file_result.\nfunc_to_host_file ()\n{\n  $debug_cmd\n\n  $to_host_file_cmd \"$1\"\n}\n# end func_to_host_file\n\n\n# func_to_tool_file ARG LAZY\n# converts the file name ARG from $build format to toolchain format. Return\n# result in func_to_tool_file_result.  If the conversion in use is listed\n# in (the comma separated) LAZY, no conversion takes place.\nfunc_to_tool_file ()\n{\n  $debug_cmd\n\n  case ,$2, in\n    *,\"$to_tool_file_cmd\",*)\n      func_to_tool_file_result=$1\n      ;;\n    *)\n      $to_tool_file_cmd \"$1\"\n      func_to_tool_file_result=$func_to_host_file_result\n      ;;\n  esac\n}\n# end func_to_tool_file\n\n\n# func_convert_file_noop ARG\n# Copy ARG to func_to_host_file_result.\nfunc_convert_file_noop ()\n{\n  func_to_host_file_result=$1\n}\n# end func_convert_file_noop\n\n\n# func_convert_file_msys_to_w32 ARG\n# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic\n# conversion to w32 is not available inside the cwrapper.  Returns result in\n# func_to_host_file_result.\nfunc_convert_file_msys_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_msys_to_w32 \"$1\"\n    func_to_host_file_result=$func_convert_core_msys_to_w32_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_msys_to_w32\n\n\n# func_convert_file_cygwin_to_w32 ARG\n# Convert file name ARG from Cygwin to w32 format.  Returns result in\n# func_to_host_file_result.\nfunc_convert_file_cygwin_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    # because $build is cygwin, we call \"the\" cygpath in $PATH; no need to use\n    # LT_CYGPATH in this case.\n    func_to_host_file_result=`cygpath -m \"$1\"`\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_cygwin_to_w32\n\n\n# func_convert_file_nix_to_w32 ARG\n# Convert file name ARG from *nix to w32 format.  Requires a wine environment\n# and a working winepath. Returns result in func_to_host_file_result.\nfunc_convert_file_nix_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_file_wine_to_w32 \"$1\"\n    func_to_host_file_result=$func_convert_core_file_wine_to_w32_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_nix_to_w32\n\n\n# func_convert_file_msys_to_cygwin ARG\n# Convert file name ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.\n# Returns result in func_to_host_file_result.\nfunc_convert_file_msys_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_msys_to_w32 \"$1\"\n    func_cygpath -u \"$func_convert_core_msys_to_w32_result\"\n    func_to_host_file_result=$func_cygpath_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_msys_to_cygwin\n\n\n# func_convert_file_nix_to_cygwin ARG\n# Convert file name ARG from *nix to Cygwin format.  Requires Cygwin installed\n# in a wine environment, working winepath, and LT_CYGPATH set.  Returns result\n# in func_to_host_file_result.\nfunc_convert_file_nix_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.\n    func_convert_core_file_wine_to_w32 \"$1\"\n    func_cygpath -u \"$func_convert_core_file_wine_to_w32_result\"\n    func_to_host_file_result=$func_cygpath_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_nix_to_cygwin\n\n\n#############################################\n# $build to $host PATH CONVERSION FUNCTIONS #\n#############################################\n# invoked via '$to_host_path_cmd ARG'\n#\n# In each case, ARG is the path to be converted from $build to $host format.\n# The result will be available in $func_to_host_path_result.\n#\n# Path separators are also converted from $build format to $host format.  If\n# ARG begins or ends with a path separator character, it is preserved (but\n# converted to $host format) on output.\n#\n# All path conversion functions are named using the following convention:\n#   file name conversion function    : func_convert_file_X_to_Y ()\n#   path conversion function         : func_convert_path_X_to_Y ()\n# where, for any given $build/$host combination the 'X_to_Y' value is the\n# same.  If conversion functions are added for new $build/$host combinations,\n# the two new functions must follow this pattern, or func_init_to_host_path_cmd\n# will break.\n\n\n# func_init_to_host_path_cmd\n# Ensures that function \"pointer\" variable $to_host_path_cmd is set to the\n# appropriate value, based on the value of $to_host_file_cmd.\nto_host_path_cmd=\nfunc_init_to_host_path_cmd ()\n{\n  $debug_cmd\n\n  if test -z \"$to_host_path_cmd\"; then\n    func_stripname 'func_convert_file_' '' \"$to_host_file_cmd\"\n    to_host_path_cmd=func_convert_path_$func_stripname_result\n  fi\n}\n\n\n# func_to_host_path ARG\n# Converts the path ARG from $build format to $host format. Return result\n# in func_to_host_path_result.\nfunc_to_host_path ()\n{\n  $debug_cmd\n\n  func_init_to_host_path_cmd\n  $to_host_path_cmd \"$1\"\n}\n# end func_to_host_path\n\n\n# func_convert_path_noop ARG\n# Copy ARG to func_to_host_path_result.\nfunc_convert_path_noop ()\n{\n  func_to_host_path_result=$1\n}\n# end func_convert_path_noop\n\n\n# func_convert_path_msys_to_w32 ARG\n# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic\n# conversion to w32 is not available inside the cwrapper.  Returns result in\n# func_to_host_path_result.\nfunc_convert_path_msys_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # Remove leading and trailing path separator characters from ARG.  MSYS\n    # behavior is inconsistent here; cygpath turns them into '.;' and ';.';\n    # and winepath ignores them completely.\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_msys_to_w32 \"$func_to_host_path_tmp1\"\n    func_to_host_path_result=$func_convert_core_msys_to_w32_result\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_msys_to_w32\n\n\n# func_convert_path_cygwin_to_w32 ARG\n# Convert path ARG from Cygwin to w32 format.  Returns result in\n# func_to_host_file_result.\nfunc_convert_path_cygwin_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_to_host_path_result=`cygpath -m -p \"$func_to_host_path_tmp1\"`\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_cygwin_to_w32\n\n\n# func_convert_path_nix_to_w32 ARG\n# Convert path ARG from *nix to w32 format.  Requires a wine environment and\n# a working winepath.  Returns result in func_to_host_file_result.\nfunc_convert_path_nix_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_path_wine_to_w32 \"$func_to_host_path_tmp1\"\n    func_to_host_path_result=$func_convert_core_path_wine_to_w32_result\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_nix_to_w32\n\n\n# func_convert_path_msys_to_cygwin ARG\n# Convert path ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.\n# Returns result in func_to_host_file_result.\nfunc_convert_path_msys_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_msys_to_w32 \"$func_to_host_path_tmp1\"\n    func_cygpath -u -p \"$func_convert_core_msys_to_w32_result\"\n    func_to_host_path_result=$func_cygpath_result\n    func_convert_path_check : : \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" : \"$1\"\n  fi\n}\n# end func_convert_path_msys_to_cygwin\n\n\n# func_convert_path_nix_to_cygwin ARG\n# Convert path ARG from *nix to Cygwin format.  Requires Cygwin installed in a\n# a wine environment, working winepath, and LT_CYGPATH set.  Returns result in\n# func_to_host_file_result.\nfunc_convert_path_nix_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # Remove leading and trailing path separator characters from\n    # ARG. msys behavior is inconsistent here, cygpath turns them\n    # into '.;' and ';.', and winepath ignores them completely.\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_path_wine_to_w32 \"$func_to_host_path_tmp1\"\n    func_cygpath -u -p \"$func_convert_core_path_wine_to_w32_result\"\n    func_to_host_path_result=$func_cygpath_result\n    func_convert_path_check : : \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" : \"$1\"\n  fi\n}\n# end func_convert_path_nix_to_cygwin\n\n\n# func_dll_def_p FILE\n# True iff FILE is a Windows DLL '.def' file.\n# Keep in sync with _LT_DLL_DEF_P in libtool.m4\nfunc_dll_def_p ()\n{\n  $debug_cmd\n\n  func_dll_def_p_tmp=`$SED -n \\\n    -e 's/^[\t ]*//' \\\n    -e '/^\\(;.*\\)*$/d' \\\n    -e 's/^\\(EXPORTS\\|LIBRARY\\)\\([\t ].*\\)*$/DEF/p' \\\n    -e q \\\n    \"$1\"`\n  test DEF = \"$func_dll_def_p_tmp\"\n}\n\n\n# func_mode_compile arg...\nfunc_mode_compile ()\n{\n    $debug_cmd\n\n    # Get the compilation command and the source file.\n    base_compile=\n    srcfile=$nonopt  #  always keep a non-empty value in \"srcfile\"\n    suppress_opt=yes\n    suppress_output=\n    arg_mode=normal\n    libobj=\n    later=\n    pie_flag=\n\n    for arg\n    do\n      case $arg_mode in\n      arg  )\n\t# do not \"continue\".  Instead, add this to base_compile\n\tlastarg=$arg\n\targ_mode=normal\n\t;;\n\n      target )\n\tlibobj=$arg\n\targ_mode=normal\n\tcontinue\n\t;;\n\n      normal )\n\t# Accept any command-line options.\n\tcase $arg in\n\t-o)\n\t  test -n \"$libobj\" && \\\n\t    func_fatal_error \"you cannot specify '-o' more than once\"\n\t  arg_mode=target\n\t  continue\n\t  ;;\n\n\t-pie | -fpie | -fPIE)\n          func_append pie_flag \" $arg\"\n\t  continue\n\t  ;;\n\n\t-shared | -static | -prefer-pic | -prefer-non-pic)\n\t  func_append later \" $arg\"\n\t  continue\n\t  ;;\n\n\t-no-suppress)\n\t  suppress_opt=no\n\t  continue\n\t  ;;\n\n\t-Xcompiler)\n\t  arg_mode=arg  #  the next one goes into the \"base_compile\" arg list\n\t  continue      #  The current \"srcfile\" will either be retained or\n\t  ;;            #  replaced later.  I would guess that would be a bug.\n\n\t-Wc,*)\n\t  func_stripname '-Wc,' '' \"$arg\"\n\t  args=$func_stripname_result\n\t  lastarg=\n\t  save_ifs=$IFS; IFS=,\n\t  for arg in $args; do\n\t    IFS=$save_ifs\n\t    func_append_quoted lastarg \"$arg\"\n\t  done\n\t  IFS=$save_ifs\n\t  func_stripname ' ' '' \"$lastarg\"\n\t  lastarg=$func_stripname_result\n\n\t  # Add the arguments to base_compile.\n\t  func_append base_compile \" $lastarg\"\n\t  continue\n\t  ;;\n\n\t*)\n\t  # Accept the current argument as the source file.\n\t  # The previous \"srcfile\" becomes the current argument.\n\t  #\n\t  lastarg=$srcfile\n\t  srcfile=$arg\n\t  ;;\n\tesac  #  case $arg\n\t;;\n      esac    #  case $arg_mode\n\n      # Aesthetically quote the previous argument.\n      func_append_quoted base_compile \"$lastarg\"\n    done # for arg\n\n    case $arg_mode in\n    arg)\n      func_fatal_error \"you must specify an argument for -Xcompile\"\n      ;;\n    target)\n      func_fatal_error \"you must specify a target with '-o'\"\n      ;;\n    *)\n      # Get the name of the library object.\n      test -z \"$libobj\" && {\n\tfunc_basename \"$srcfile\"\n\tlibobj=$func_basename_result\n      }\n      ;;\n    esac\n\n    # Recognize several different file suffixes.\n    # If the user specifies -o file.o, it is replaced with file.lo\n    case $libobj in\n    *.[cCFSifmso] | \\\n    *.ada | *.adb | *.ads | *.asm | \\\n    *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \\\n    *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)\n      func_xform \"$libobj\"\n      libobj=$func_xform_result\n      ;;\n    esac\n\n    case $libobj in\n    *.lo) func_lo2o \"$libobj\"; obj=$func_lo2o_result ;;\n    *)\n      func_fatal_error \"cannot determine name of library object from '$libobj'\"\n      ;;\n    esac\n\n    func_infer_tag $base_compile\n\n    for arg in $later; do\n      case $arg in\n      -shared)\n\ttest yes = \"$build_libtool_libs\" \\\n\t  || func_fatal_configuration \"cannot build a shared library\"\n\tbuild_old_libs=no\n\tcontinue\n\t;;\n\n      -static)\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tcontinue\n\t;;\n\n      -prefer-pic)\n\tpic_mode=yes\n\tcontinue\n\t;;\n\n      -prefer-non-pic)\n\tpic_mode=no\n\tcontinue\n\t;;\n      esac\n    done\n\n    func_quote_for_eval \"$libobj\"\n    test \"X$libobj\" != \"X$func_quote_for_eval_result\" \\\n      && $ECHO \"X$libobj\" | $GREP '[]~#^*{};<>?\"'\"'\"'\t &()|`$[]' \\\n      && func_warning \"libobj name '$libobj' may not contain shell special characters.\"\n    func_dirname_and_basename \"$obj\" \"/\" \"\"\n    objname=$func_basename_result\n    xdir=$func_dirname_result\n    lobj=$xdir$objdir/$objname\n\n    test -z \"$base_compile\" && \\\n      func_fatal_help \"you must specify a compilation command\"\n\n    # Delete any leftover library objects.\n    if test yes = \"$build_old_libs\"; then\n      removelist=\"$obj $lobj $libobj ${libobj}T\"\n    else\n      removelist=\"$lobj $libobj ${libobj}T\"\n    fi\n\n    # On Cygwin there's no \"real\" PIC flag so we must build both object types\n    case $host_os in\n    cygwin* | mingw* | pw32* | os2* | cegcc*)\n      pic_mode=default\n      ;;\n    esac\n    if test no = \"$pic_mode\" && test pass_all != \"$deplibs_check_method\"; then\n      # non-PIC code in shared libraries is not supported\n      pic_mode=default\n    fi\n\n    # Calculate the filename of the output object if compiler does\n    # not support -o with -c\n    if test no = \"$compiler_c_o\"; then\n      output_obj=`$ECHO \"$srcfile\" | $SED 's%^.*/%%; s%\\.[^.]*$%%'`.$objext\n      lockfile=$output_obj.lock\n    else\n      output_obj=\n      need_locks=no\n      lockfile=\n    fi\n\n    # Lock this critical section if it is needed\n    # We use this script file to make the link, it avoids creating a new file\n    if test yes = \"$need_locks\"; then\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    elif test warn = \"$need_locks\"; then\n      if test -f \"$lockfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile exists and contains:\n`cat $lockfile 2>/dev/null`\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n      func_append removelist \" $output_obj\"\n      $ECHO \"$srcfile\" > \"$lockfile\"\n    fi\n\n    $opt_dry_run || $RM $removelist\n    func_append removelist \" $lockfile\"\n    trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15\n\n    func_to_tool_file \"$srcfile\" func_convert_file_msys_to_w32\n    srcfile=$func_to_tool_file_result\n    func_quote_for_eval \"$srcfile\"\n    qsrcfile=$func_quote_for_eval_result\n\n    # Only build a PIC object if we are building libtool libraries.\n    if test yes = \"$build_libtool_libs\"; then\n      # Without this assignment, base_compile gets emptied.\n      fbsd_hideous_sh_bug=$base_compile\n\n      if test no != \"$pic_mode\"; then\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      else\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile\"\n      fi\n\n      func_mkdir_p \"$xdir$objdir\"\n\n      if test -z \"$output_obj\"; then\n\t# Place PIC objects in $objdir\n\tfunc_append command \" -o $lobj\"\n      fi\n\n      func_show_eval_locale \"$command\"\t\\\n          'test -n \"$output_obj\" && $RM $removelist; exit $EXIT_FAILURE'\n\n      if test warn = \"$need_locks\" &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed, then go on to compile the next one\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$lobj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$lobj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n\n      # Allow error messages only from the first compilation.\n      if test yes = \"$suppress_opt\"; then\n\tsuppress_output=' >/dev/null 2>&1'\n      fi\n    fi\n\n    # Only build a position-dependent object if we build old libraries.\n    if test yes = \"$build_old_libs\"; then\n      if test yes != \"$pic_mode\"; then\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile$pie_flag\"\n      else\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      fi\n      if test yes = \"$compiler_c_o\"; then\n\tfunc_append command \" -o $obj\"\n      fi\n\n      # Suppress compiler output if we already did a PIC compilation.\n      func_append command \"$suppress_output\"\n      func_show_eval_locale \"$command\" \\\n        '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'\n\n      if test warn = \"$need_locks\" &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$obj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$obj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n    fi\n\n    $opt_dry_run || {\n      func_write_libtool_object \"$libobj\" \"$objdir/$objname\" \"$objname\"\n\n      # Unlock the critical section if it was locked\n      if test no != \"$need_locks\"; then\n\tremovelist=$lockfile\n        $RM \"$lockfile\"\n      fi\n    }\n\n    exit $EXIT_SUCCESS\n}\n\n$opt_help || {\n  test compile = \"$opt_mode\" && func_mode_compile ${1+\"$@\"}\n}\n\nfunc_mode_help ()\n{\n    # We need to display help for each of the modes.\n    case $opt_mode in\n      \"\")\n        # Generic help is extracted from the usage comments\n        # at the start of this file.\n        func_help\n        ;;\n\n      clean)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...\n\nRemove files from the build directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed\nto RM.\n\nIf FILE is a libtool library, object or program, all the files associated\nwith it are deleted. Otherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      compile)\n      $ECHO \\\n\"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE\n\nCompile a source file into a libtool library object.\n\nThis mode accepts the following additional options:\n\n  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE\n  -no-suppress      do not suppress compiler output for multiple passes\n  -prefer-pic       try to build PIC objects only\n  -prefer-non-pic   try to build non-PIC objects only\n  -shared           do not build a '.o' file suitable for static linking\n  -static           only build a '.o' file suitable for static linking\n  -Wc,FLAG          pass FLAG directly to the compiler\n\nCOMPILE-COMMAND is a command to be used in creating a 'standard' object file\nfrom the given SOURCEFILE.\n\nThe output file name is determined by removing the directory component from\nSOURCEFILE, then substituting the C source code suffix '.c' with the\nlibrary object suffix, '.lo'.\"\n        ;;\n\n      execute)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...\n\nAutomatically set library path, then run a program.\n\nThis mode accepts the following additional options:\n\n  -dlopen FILE      add the directory containing FILE to the library path\n\nThis mode sets the library path environment variable according to '-dlopen'\nflags.\n\nIf any of the ARGS are libtool executable wrappers, then they are translated\ninto their corresponding uninstalled binary, and any of their required library\ndirectories are added to the library path.\n\nThen, COMMAND is executed, with ARGS as arguments.\"\n        ;;\n\n      finish)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=finish [LIBDIR]...\n\nComplete the installation of libtool libraries.\n\nEach LIBDIR is a directory that contains libtool libraries.\n\nThe commands that this mode executes may require superuser privileges.  Use\nthe '--dry-run' option if you just want to see what would be executed.\"\n        ;;\n\n      install)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...\n\nInstall executables or libraries.\n\nINSTALL-COMMAND is the installation command.  The first component should be\neither the 'install' or 'cp' program.\n\nThe following components of INSTALL-COMMAND are treated specially:\n\n  -inst-prefix-dir PREFIX-DIR  Use PREFIX-DIR as a staging area for installation\n\nThe rest of the components are interpreted as arguments to that command (only\nBSD-compatible install options are recognized).\"\n        ;;\n\n      link)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=link LINK-COMMAND...\n\nLink object files or libraries together to form another library, or to\ncreate an executable program.\n\nLINK-COMMAND is a command using the C compiler that you would use to create\na program from several object files.\n\nThe following components of LINK-COMMAND are treated specially:\n\n  -all-static       do not do any dynamic linking at all\n  -avoid-version    do not add a version suffix if possible\n  -bindir BINDIR    specify path to binaries directory (for systems where\n                    libraries must be found in the PATH setting at runtime)\n  -dlopen FILE      '-dlpreopen' FILE if it cannot be dlopened at runtime\n  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols\n  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)\n  -export-symbols SYMFILE\n                    try to export only the symbols listed in SYMFILE\n  -export-symbols-regex REGEX\n                    try to export only the symbols matching REGEX\n  -LLIBDIR          search LIBDIR for required installed libraries\n  -lNAME            OUTPUT-FILE requires the installed library libNAME\n  -module           build a library that can dlopened\n  -no-fast-install  disable the fast-install mode\n  -no-install       link a not-installable executable\n  -no-undefined     declare that a library does not refer to external symbols\n  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects\n  -objectlist FILE  use a list of object files found in FILE to specify objects\n  -os2dllname NAME  force a short DLL name on OS/2 (no effect on other OSes)\n  -precious-files-regex REGEX\n                    don't remove output files matching REGEX\n  -release RELEASE  specify package release information\n  -rpath LIBDIR     the created library will eventually be installed in LIBDIR\n  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries\n  -shared           only do dynamic linking of libtool libraries\n  -shrext SUFFIX    override the standard shared library file extension\n  -static           do not do any dynamic linking of uninstalled libtool libraries\n  -static-libtool-libs\n                    do not do any dynamic linking of libtool libraries\n  -version-info CURRENT[:REVISION[:AGE]]\n                    specify library version info [each variable defaults to 0]\n  -weak LIBNAME     declare that the target provides the LIBNAME interface\n  -Wc,FLAG\n  -Xcompiler FLAG   pass linker-specific FLAG directly to the compiler\n  -Wl,FLAG\n  -Xlinker FLAG     pass linker-specific FLAG directly to the linker\n  -XCClinker FLAG   pass link-specific FLAG to the compiler driver (CC)\n\nAll other options (arguments beginning with '-') are ignored.\n\nEvery other argument is treated as a filename.  Files ending in '.la' are\ntreated as uninstalled libtool libraries, other files are standard or library\nobject files.\n\nIf the OUTPUT-FILE ends in '.la', then a libtool library is created,\nonly library objects ('.lo' files) may be specified, and '-rpath' is\nrequired, except when creating a convenience library.\n\nIf OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created\nusing 'ar' and 'ranlib', or on Windows using 'lib'.\n\nIf OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file\nis created, otherwise an executable program is created.\"\n        ;;\n\n      uninstall)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...\n\nRemove libraries from an installation directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed\nto RM.\n\nIf FILE is a libtool library, all the files associated with it are deleted.\nOtherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      *)\n        func_fatal_help \"invalid operation mode '$opt_mode'\"\n        ;;\n    esac\n\n    echo\n    $ECHO \"Try '$progname --help' for more information about other modes.\"\n}\n\n# Now that we've collected a possible --mode arg, show help if necessary\nif $opt_help; then\n  if test : = \"$opt_help\"; then\n    func_mode_help\n  else\n    {\n      func_help noexit\n      for opt_mode in compile link execute install finish uninstall clean; do\n\tfunc_mode_help\n      done\n    } | $SED -n '1p; 2,$s/^Usage:/  or: /p'\n    {\n      func_help noexit\n      for opt_mode in compile link execute install finish uninstall clean; do\n\techo\n\tfunc_mode_help\n      done\n    } |\n    $SED '1d\n      /^When reporting/,/^Report/{\n\tH\n\td\n      }\n      $x\n      /information about other modes/d\n      /more detailed .*MODE/d\n      s/^Usage:.*--mode=\\([^ ]*\\) .*/Description of \\1 mode:/'\n  fi\n  exit $?\nfi\n\n\n# func_mode_execute arg...\nfunc_mode_execute ()\n{\n    $debug_cmd\n\n    # The first argument is the command name.\n    cmd=$nonopt\n    test -z \"$cmd\" && \\\n      func_fatal_help \"you must specify a COMMAND\"\n\n    # Handle -dlopen flags immediately.\n    for file in $opt_dlopen; do\n      test -f \"$file\" \\\n\t|| func_fatal_help \"'$file' is not a file\"\n\n      dir=\n      case $file in\n      *.la)\n\tfunc_resolve_sysroot \"$file\"\n\tfile=$func_resolve_sysroot_result\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"'$lib' is not a valid libtool archive\"\n\n\t# Read the libtool library.\n\tdlname=\n\tlibrary_names=\n\tfunc_source \"$file\"\n\n\t# Skip this library if it cannot be dlopened.\n\tif test -z \"$dlname\"; then\n\t  # Warn if it was a shared library.\n\t  test -n \"$library_names\" && \\\n\t    func_warning \"'$file' was not linked with '-export-dynamic'\"\n\t  continue\n\tfi\n\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=$func_dirname_result\n\n\tif test -f \"$dir/$objdir/$dlname\"; then\n\t  func_append dir \"/$objdir\"\n\telse\n\t  if test ! -f \"$dir/$dlname\"; then\n\t    func_fatal_error \"cannot find '$dlname' in '$dir' or '$dir/$objdir'\"\n\t  fi\n\tfi\n\t;;\n\n      *.lo)\n\t# Just add the directory containing the .lo file.\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=$func_dirname_result\n\t;;\n\n      *)\n\tfunc_warning \"'-dlopen' is ignored for non-libtool libraries and objects\"\n\tcontinue\n\t;;\n      esac\n\n      # Get the absolute pathname.\n      absdir=`cd \"$dir\" && pwd`\n      test -n \"$absdir\" && dir=$absdir\n\n      # Now add the directory to shlibpath_var.\n      if eval \"test -z \\\"\\$$shlibpath_var\\\"\"; then\n\teval \"$shlibpath_var=\\\"\\$dir\\\"\"\n      else\n\teval \"$shlibpath_var=\\\"\\$dir:\\$$shlibpath_var\\\"\"\n      fi\n    done\n\n    # This variable tells wrapper scripts just to set shlibpath_var\n    # rather than running their programs.\n    libtool_execute_magic=$magic\n\n    # Check if any of the arguments is a wrapper script.\n    args=\n    for file\n    do\n      case $file in\n      -* | *.la | *.lo ) ;;\n      *)\n\t# Do a test to see if this is really a libtool program.\n\tif func_ltwrapper_script_p \"$file\"; then\n\t  func_source \"$file\"\n\t  # Transform arg to wrapped name.\n\t  file=$progdir/$program\n\telif func_ltwrapper_executable_p \"$file\"; then\n\t  func_ltwrapper_scriptname \"$file\"\n\t  func_source \"$func_ltwrapper_scriptname_result\"\n\t  # Transform arg to wrapped name.\n\t  file=$progdir/$program\n\tfi\n\t;;\n      esac\n      # Quote arguments (to preserve shell metacharacters).\n      func_append_quoted args \"$file\"\n    done\n\n    if $opt_dry_run; then\n      # Display what would be done.\n      if test -n \"$shlibpath_var\"; then\n\teval \"\\$ECHO \\\"\\$shlibpath_var=\\$$shlibpath_var\\\"\"\n\techo \"export $shlibpath_var\"\n      fi\n      $ECHO \"$cmd$args\"\n      exit $EXIT_SUCCESS\n    else\n      if test -n \"$shlibpath_var\"; then\n\t# Export the shlibpath_var.\n\teval \"export $shlibpath_var\"\n      fi\n\n      # Restore saved environment variables\n      for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\n      do\n\teval \"if test \\\"\\${save_$lt_var+set}\\\" = set; then\n                $lt_var=\\$save_$lt_var; export $lt_var\n\t      else\n\t\t$lt_unset $lt_var\n\t      fi\"\n      done\n\n      # Now prepare to actually exec the command.\n      exec_cmd=\\$cmd$args\n    fi\n}\n\ntest execute = \"$opt_mode\" && func_mode_execute ${1+\"$@\"}\n\n\n# func_mode_finish arg...\nfunc_mode_finish ()\n{\n    $debug_cmd\n\n    libs=\n    libdirs=\n    admincmds=\n\n    for opt in \"$nonopt\" ${1+\"$@\"}\n    do\n      if test -d \"$opt\"; then\n\tfunc_append libdirs \" $opt\"\n\n      elif test -f \"$opt\"; then\n\tif func_lalib_unsafe_p \"$opt\"; then\n\t  func_append libs \" $opt\"\n\telse\n\t  func_warning \"'$opt' is not a valid libtool archive\"\n\tfi\n\n      else\n\tfunc_fatal_error \"invalid argument '$opt'\"\n      fi\n    done\n\n    if test -n \"$libs\"; then\n      if test -n \"$lt_sysroot\"; then\n        sysroot_regex=`$ECHO \"$lt_sysroot\" | $SED \"$sed_make_literal_regex\"`\n        sysroot_cmd=\"s/\\([ ']\\)$sysroot_regex/\\1/g;\"\n      else\n        sysroot_cmd=\n      fi\n\n      # Remove sysroot references\n      if $opt_dry_run; then\n        for lib in $libs; do\n          echo \"removing references to $lt_sysroot and '=' prefixes from $lib\"\n        done\n      else\n        tmpdir=`func_mktempdir`\n        for lib in $libs; do\n\t  $SED -e \"$sysroot_cmd s/\\([ ']-[LR]\\)=/\\1/g; s/\\([ ']\\)=/\\1/g\" $lib \\\n\t    > $tmpdir/tmp-la\n\t  mv -f $tmpdir/tmp-la $lib\n\tdone\n        ${RM}r \"$tmpdir\"\n      fi\n    fi\n\n    if test -n \"$finish_cmds$finish_eval\" && test -n \"$libdirs\"; then\n      for libdir in $libdirs; do\n\tif test -n \"$finish_cmds\"; then\n\t  # Do each command in the finish commands.\n\t  func_execute_cmds \"$finish_cmds\" 'admincmds=\"$admincmds\n'\"$cmd\"'\"'\n\tfi\n\tif test -n \"$finish_eval\"; then\n\t  # Do the single finish_eval.\n\t  eval cmds=\\\"$finish_eval\\\"\n\t  $opt_dry_run || eval \"$cmds\" || func_append admincmds \"\n       $cmds\"\n\tfi\n      done\n    fi\n\n    # Exit here if they wanted silent mode.\n    $opt_quiet && exit $EXIT_SUCCESS\n\n    if test -n \"$finish_cmds$finish_eval\" && test -n \"$libdirs\"; then\n      echo \"----------------------------------------------------------------------\"\n      echo \"Libraries have been installed in:\"\n      for libdir in $libdirs; do\n\t$ECHO \"   $libdir\"\n      done\n      echo\n      echo \"If you ever happen to want to link against installed libraries\"\n      echo \"in a given directory, LIBDIR, you must either use libtool, and\"\n      echo \"specify the full pathname of the library, or use the '-LLIBDIR'\"\n      echo \"flag during linking and do at least one of the following:\"\n      if test -n \"$shlibpath_var\"; then\n\techo \"   - add LIBDIR to the '$shlibpath_var' environment variable\"\n\techo \"     during execution\"\n      fi\n      if test -n \"$runpath_var\"; then\n\techo \"   - add LIBDIR to the '$runpath_var' environment variable\"\n\techo \"     during linking\"\n      fi\n      if test -n \"$hardcode_libdir_flag_spec\"; then\n\tlibdir=LIBDIR\n\teval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\n\t$ECHO \"   - use the '$flag' linker flag\"\n      fi\n      if test -n \"$admincmds\"; then\n\t$ECHO \"   - have your system administrator run these commands:$admincmds\"\n      fi\n      if test -f /etc/ld.so.conf; then\n\techo \"   - have your system administrator add LIBDIR to '/etc/ld.so.conf'\"\n      fi\n      echo\n\n      echo \"See any operating system documentation about shared libraries for\"\n      case $host in\n\tsolaris2.[6789]|solaris2.1[0-9])\n\t  echo \"more information, such as the ld(1), crle(1) and ld.so(8) manual\"\n\t  echo \"pages.\"\n\t  ;;\n\t*)\n\t  echo \"more information, such as the ld(1) and ld.so(8) manual pages.\"\n\t  ;;\n      esac\n      echo \"----------------------------------------------------------------------\"\n    fi\n    exit $EXIT_SUCCESS\n}\n\ntest finish = \"$opt_mode\" && func_mode_finish ${1+\"$@\"}\n\n\n# func_mode_install arg...\nfunc_mode_install ()\n{\n    $debug_cmd\n\n    # There may be an optional sh(1) argument at the beginning of\n    # install_prog (especially on Windows NT).\n    if test \"$SHELL\" = \"$nonopt\" || test /bin/sh = \"$nonopt\" ||\n       # Allow the use of GNU shtool's install command.\n       case $nonopt in *shtool*) :;; *) false;; esac\n    then\n      # Aesthetically quote it.\n      func_quote_for_eval \"$nonopt\"\n      install_prog=\"$func_quote_for_eval_result \"\n      arg=$1\n      shift\n    else\n      install_prog=\n      arg=$nonopt\n    fi\n\n    # The real first argument should be the name of the installation program.\n    # Aesthetically quote it.\n    func_quote_for_eval \"$arg\"\n    func_append install_prog \"$func_quote_for_eval_result\"\n    install_shared_prog=$install_prog\n    case \" $install_prog \" in\n      *[\\\\\\ /]cp\\ *) install_cp=: ;;\n      *) install_cp=false ;;\n    esac\n\n    # We need to accept at least all the BSD install flags.\n    dest=\n    files=\n    opts=\n    prev=\n    install_type=\n    isdir=false\n    stripme=\n    no_mode=:\n    for arg\n    do\n      arg2=\n      if test -n \"$dest\"; then\n\tfunc_append files \" $dest\"\n\tdest=$arg\n\tcontinue\n      fi\n\n      case $arg in\n      -d) isdir=: ;;\n      -f)\n\tif $install_cp; then :; else\n\t  prev=$arg\n\tfi\n\t;;\n      -g | -m | -o)\n\tprev=$arg\n\t;;\n      -s)\n\tstripme=\" -s\"\n\tcontinue\n\t;;\n      -*)\n\t;;\n      *)\n\t# If the previous option needed an argument, then skip it.\n\tif test -n \"$prev\"; then\n\t  if test X-m = \"X$prev\" && test -n \"$install_override_mode\"; then\n\t    arg2=$install_override_mode\n\t    no_mode=false\n\t  fi\n\t  prev=\n\telse\n\t  dest=$arg\n\t  continue\n\tfi\n\t;;\n      esac\n\n      # Aesthetically quote the argument.\n      func_quote_for_eval \"$arg\"\n      func_append install_prog \" $func_quote_for_eval_result\"\n      if test -n \"$arg2\"; then\n\tfunc_quote_for_eval \"$arg2\"\n      fi\n      func_append install_shared_prog \" $func_quote_for_eval_result\"\n    done\n\n    test -z \"$install_prog\" && \\\n      func_fatal_help \"you must specify an install program\"\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the '$prev' option requires an argument\"\n\n    if test -n \"$install_override_mode\" && $no_mode; then\n      if $install_cp; then :; else\n\tfunc_quote_for_eval \"$install_override_mode\"\n\tfunc_append install_shared_prog \" -m $func_quote_for_eval_result\"\n      fi\n    fi\n\n    if test -z \"$files\"; then\n      if test -z \"$dest\"; then\n\tfunc_fatal_help \"no file or destination specified\"\n      else\n\tfunc_fatal_help \"you must specify a destination\"\n      fi\n    fi\n\n    # Strip any trailing slash from the destination.\n    func_stripname '' '/' \"$dest\"\n    dest=$func_stripname_result\n\n    # Check to see that the destination is a directory.\n    test -d \"$dest\" && isdir=:\n    if $isdir; then\n      destdir=$dest\n      destname=\n    else\n      func_dirname_and_basename \"$dest\" \"\" \".\"\n      destdir=$func_dirname_result\n      destname=$func_basename_result\n\n      # Not a directory, so check to see that there is only one file specified.\n      set dummy $files; shift\n      test \"$#\" -gt 1 && \\\n\tfunc_fatal_help \"'$dest' is not a directory\"\n    fi\n    case $destdir in\n    [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n    *)\n      for file in $files; do\n\tcase $file in\n\t*.lo) ;;\n\t*)\n\t  func_fatal_help \"'$destdir' must be an absolute directory name\"\n\t  ;;\n\tesac\n      done\n      ;;\n    esac\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=$magic\n\n    staticlibs=\n    future_libdirs=\n    current_libdirs=\n    for file in $files; do\n\n      # Do each installation.\n      case $file in\n      *.$libext)\n\t# Do the static libraries later.\n\tfunc_append staticlibs \" $file\"\n\t;;\n\n      *.la)\n\tfunc_resolve_sysroot \"$file\"\n\tfile=$func_resolve_sysroot_result\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"'$file' is not a valid libtool archive\"\n\n\tlibrary_names=\n\told_library=\n\trelink_command=\n\tfunc_source \"$file\"\n\n\t# Add the libdir to current_libdirs if it is the destination.\n\tif test \"X$destdir\" = \"X$libdir\"; then\n\t  case \"$current_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append current_libdirs \" $libdir\" ;;\n\t  esac\n\telse\n\t  # Note the libdir as a future libdir.\n\t  case \"$future_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append future_libdirs \" $libdir\" ;;\n\t  esac\n\tfi\n\n\tfunc_dirname \"$file\" \"/\" \"\"\n\tdir=$func_dirname_result\n\tfunc_append dir \"$objdir\"\n\n\tif test -n \"$relink_command\"; then\n\t  # Determine the prefix the user has applied to our future dir.\n\t  inst_prefix_dir=`$ECHO \"$destdir\" | $SED -e \"s%$libdir\\$%%\"`\n\n\t  # Don't allow the user to place us outside of our expected\n\t  # location b/c this prevents finding dependent libraries that\n\t  # are installed to the same prefix.\n\t  # At present, this check doesn't affect windows .dll's that\n\t  # are installed into $libdir/../bin (currently, that works fine)\n\t  # but it's something to keep an eye on.\n\t  test \"$inst_prefix_dir\" = \"$destdir\" && \\\n\t    func_fatal_error \"error: cannot install '$file' to a directory not ending in $libdir\"\n\n\t  if test -n \"$inst_prefix_dir\"; then\n\t    # Stick the inst_prefix_dir data into the link command.\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%\"`\n\t  else\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%%\"`\n\t  fi\n\n\t  func_warning \"relinking '$file'\"\n\t  func_show_eval \"$relink_command\" \\\n\t    'func_fatal_error \"error: relink '\\''$file'\\'' with the above command before installing it\"'\n\tfi\n\n\t# See the names of the shared library.\n\tset dummy $library_names; shift\n\tif test -n \"$1\"; then\n\t  realname=$1\n\t  shift\n\n\t  srcname=$realname\n\t  test -n \"$relink_command\" && srcname=${realname}T\n\n\t  # Install the shared library and build the symlinks.\n\t  func_show_eval \"$install_shared_prog $dir/$srcname $destdir/$realname\" \\\n\t      'exit $?'\n\t  tstripme=$stripme\n\t  case $host_os in\n\t  cygwin* | mingw* | pw32* | cegcc*)\n\t    case $realname in\n\t    *.dll.a)\n\t      tstripme=\n\t      ;;\n\t    esac\n\t    ;;\n\t  os2*)\n\t    case $realname in\n\t    *_dll.a)\n\t      tstripme=\n\t      ;;\n\t    esac\n\t    ;;\n\t  esac\n\t  if test -n \"$tstripme\" && test -n \"$striplib\"; then\n\t    func_show_eval \"$striplib $destdir/$realname\" 'exit $?'\n\t  fi\n\n\t  if test \"$#\" -gt 0; then\n\t    # Delete the old symlinks, and create new ones.\n\t    # Try 'ln -sf' first, because the 'ln' binary might depend on\n\t    # the symlink we replace!  Solaris /bin/ln does not understand -f,\n\t    # so we also need to try rm && ln -s.\n\t    for linkname\n\t    do\n\t      test \"$linkname\" != \"$realname\" \\\n\t\t&& func_show_eval \"(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })\"\n\t    done\n\t  fi\n\n\t  # Do each command in the postinstall commands.\n\t  lib=$destdir/$realname\n\t  func_execute_cmds \"$postinstall_cmds\" 'exit $?'\n\tfi\n\n\t# Install the pseudo-library for information purposes.\n\tfunc_basename \"$file\"\n\tname=$func_basename_result\n\tinstname=$dir/${name}i\n\tfunc_show_eval \"$install_prog $instname $destdir/$name\" 'exit $?'\n\n\t# Maybe install the static library, too.\n\ttest -n \"$old_library\" && func_append staticlibs \" $dir/$old_library\"\n\t;;\n\n      *.lo)\n\t# Install (i.e. copy) a libtool object.\n\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=$destdir/$destname\n\telse\n\t  func_basename \"$file\"\n\t  destfile=$func_basename_result\n\t  destfile=$destdir/$destfile\n\tfi\n\n\t# Deduce the name of the destination old-style object file.\n\tcase $destfile in\n\t*.lo)\n\t  func_lo2o \"$destfile\"\n\t  staticdest=$func_lo2o_result\n\t  ;;\n\t*.$objext)\n\t  staticdest=$destfile\n\t  destfile=\n\t  ;;\n\t*)\n\t  func_fatal_help \"cannot copy a libtool object to '$destfile'\"\n\t  ;;\n\tesac\n\n\t# Install the libtool object if requested.\n\ttest -n \"$destfile\" && \\\n\t  func_show_eval \"$install_prog $file $destfile\" 'exit $?'\n\n\t# Install the old object if enabled.\n\tif test yes = \"$build_old_libs\"; then\n\t  # Deduce the name of the old-style object file.\n\t  func_lo2o \"$file\"\n\t  staticobj=$func_lo2o_result\n\t  func_show_eval \"$install_prog \\$staticobj \\$staticdest\" 'exit $?'\n\tfi\n\texit $EXIT_SUCCESS\n\t;;\n\n      *)\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=$destdir/$destname\n\telse\n\t  func_basename \"$file\"\n\t  destfile=$func_basename_result\n\t  destfile=$destdir/$destfile\n\tfi\n\n\t# If the file is missing, and there is a .exe on the end, strip it\n\t# because it is most likely a libtool script we actually want to\n\t# install\n\tstripped_ext=\n\tcase $file in\n\t  *.exe)\n\t    if test ! -f \"$file\"; then\n\t      func_stripname '' '.exe' \"$file\"\n\t      file=$func_stripname_result\n\t      stripped_ext=.exe\n\t    fi\n\t    ;;\n\tesac\n\n\t# Do a test to see if this is really a libtool program.\n\tcase $host in\n\t*cygwin* | *mingw*)\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      wrapper=$func_ltwrapper_scriptname_result\n\t    else\n\t      func_stripname '' '.exe' \"$file\"\n\t      wrapper=$func_stripname_result\n\t    fi\n\t    ;;\n\t*)\n\t    wrapper=$file\n\t    ;;\n\tesac\n\tif func_ltwrapper_script_p \"$wrapper\"; then\n\t  notinst_deplibs=\n\t  relink_command=\n\n\t  func_source \"$wrapper\"\n\n\t  # Check the variables that should have been set.\n\t  test -z \"$generated_by_libtool_version\" && \\\n\t    func_fatal_error \"invalid libtool wrapper script '$wrapper'\"\n\n\t  finalize=:\n\t  for lib in $notinst_deplibs; do\n\t    # Check to see that each library is installed.\n\t    libdir=\n\t    if test -f \"$lib\"; then\n\t      func_source \"$lib\"\n\t    fi\n\t    libfile=$libdir/`$ECHO \"$lib\" | $SED 's%^.*/%%g'`\n\t    if test -n \"$libdir\" && test ! -f \"$libfile\"; then\n\t      func_warning \"'$lib' has not been installed in '$libdir'\"\n\t      finalize=false\n\t    fi\n\t  done\n\n\t  relink_command=\n\t  func_source \"$wrapper\"\n\n\t  outputname=\n\t  if test no = \"$fast_install\" && test -n \"$relink_command\"; then\n\t    $opt_dry_run || {\n\t      if $finalize; then\n\t        tmpdir=`func_mktempdir`\n\t\tfunc_basename \"$file$stripped_ext\"\n\t\tfile=$func_basename_result\n\t        outputname=$tmpdir/$file\n\t        # Replace the output file specification.\n\t        relink_command=`$ECHO \"$relink_command\" | $SED 's%@OUTPUT@%'\"$outputname\"'%g'`\n\n\t        $opt_quiet || {\n\t          func_quote_for_expand \"$relink_command\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t        }\n\t        if eval \"$relink_command\"; then :\n\t          else\n\t\t  func_error \"error: relink '$file' with the above command before installing it\"\n\t\t  $opt_dry_run || ${RM}r \"$tmpdir\"\n\t\t  continue\n\t        fi\n\t        file=$outputname\n\t      else\n\t        func_warning \"cannot relink '$file'\"\n\t      fi\n\t    }\n\t  else\n\t    # Install the binary that we compiled earlier.\n\t    file=`$ECHO \"$file$stripped_ext\" | $SED \"s%\\([^/]*\\)$%$objdir/\\1%\"`\n\t  fi\n\tfi\n\n\t# remove .exe since cygwin /usr/bin/install will append another\n\t# one anyway\n\tcase $install_prog,$host in\n\t*/usr/bin/install*,*cygwin*)\n\t  case $file:$destfile in\n\t  *.exe:*.exe)\n\t    # this is ok\n\t    ;;\n\t  *.exe:*)\n\t    destfile=$destfile.exe\n\t    ;;\n\t  *:*.exe)\n\t    func_stripname '' '.exe' \"$destfile\"\n\t    destfile=$func_stripname_result\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tfunc_show_eval \"$install_prog\\$stripme \\$file \\$destfile\" 'exit $?'\n\t$opt_dry_run || if test -n \"$outputname\"; then\n\t  ${RM}r \"$tmpdir\"\n\tfi\n\t;;\n      esac\n    done\n\n    for file in $staticlibs; do\n      func_basename \"$file\"\n      name=$func_basename_result\n\n      # Set up the ranlib parameters.\n      oldlib=$destdir/$name\n      func_to_tool_file \"$oldlib\" func_convert_file_msys_to_w32\n      tool_oldlib=$func_to_tool_file_result\n\n      func_show_eval \"$install_prog \\$file \\$oldlib\" 'exit $?'\n\n      if test -n \"$stripme\" && test -n \"$old_striplib\"; then\n\tfunc_show_eval \"$old_striplib $tool_oldlib\" 'exit $?'\n      fi\n\n      # Do each command in the postinstall commands.\n      func_execute_cmds \"$old_postinstall_cmds\" 'exit $?'\n    done\n\n    test -n \"$future_libdirs\" && \\\n      func_warning \"remember to run '$progname --finish$future_libdirs'\"\n\n    if test -n \"$current_libdirs\"; then\n      # Maybe just do a dry run.\n      $opt_dry_run && current_libdirs=\" -n$current_libdirs\"\n      exec_cmd='$SHELL \"$progpath\" $preserve_args --finish$current_libdirs'\n    else\n      exit $EXIT_SUCCESS\n    fi\n}\n\ntest install = \"$opt_mode\" && func_mode_install ${1+\"$@\"}\n\n\n# func_generate_dlsyms outputname originator pic_p\n# Extract symbols from dlprefiles and create ${outputname}S.o with\n# a dlpreopen symbol table.\nfunc_generate_dlsyms ()\n{\n    $debug_cmd\n\n    my_outputname=$1\n    my_originator=$2\n    my_pic_p=${3-false}\n    my_prefix=`$ECHO \"$my_originator\" | $SED 's%[^a-zA-Z0-9]%_%g'`\n    my_dlsyms=\n\n    if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n      if test -n \"$NM\" && test -n \"$global_symbol_pipe\"; then\n\tmy_dlsyms=${my_outputname}S.c\n      else\n\tfunc_error \"not configured to extract global symbols from dlpreopened files\"\n      fi\n    fi\n\n    if test -n \"$my_dlsyms\"; then\n      case $my_dlsyms in\n      \"\") ;;\n      *.c)\n\t# Discover the nlist of each of the dlfiles.\n\tnlist=$output_objdir/$my_outputname.nm\n\n\tfunc_show_eval \"$RM $nlist ${nlist}S ${nlist}T\"\n\n\t# Parse the name list into a source file.\n\tfunc_verbose \"creating $output_objdir/$my_dlsyms\"\n\n\t$opt_dry_run || $ECHO > \"$output_objdir/$my_dlsyms\" \"\\\n/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */\n/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */\n\n#ifdef __cplusplus\nextern \\\"C\\\" {\n#endif\n\n#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))\n#pragma GCC diagnostic ignored \\\"-Wstrict-prototypes\\\"\n#endif\n\n/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */\n#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE\n/* DATA imports from DLLs on WIN32 can't be const, because runtime\n   relocations are performed -- see ld's documentation on pseudo-relocs.  */\n# define LT_DLSYM_CONST\n#elif defined __osf__\n/* This system does not cope well with relocations in const data.  */\n# define LT_DLSYM_CONST\n#else\n# define LT_DLSYM_CONST const\n#endif\n\n#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)\n\n/* External symbol declarations for the compiler. */\\\n\"\n\n\tif test yes = \"$dlself\"; then\n\t  func_verbose \"generating symbol list for '$output'\"\n\n\t  $opt_dry_run || echo ': @PROGRAM@ ' > \"$nlist\"\n\n\t  # Add our own program objects to the symbol list.\n\t  progfiles=`$ECHO \"$objs$old_deplibs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\t  for progfile in $progfiles; do\n\t    func_to_tool_file \"$progfile\" func_convert_file_msys_to_w32\n\t    func_verbose \"extracting global C symbols from '$func_to_tool_file_result'\"\n\t    $opt_dry_run || eval \"$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'\"\n\t  done\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  if test -n \"$export_symbols_regex\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -e \"$export_symbols_regex\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  # Prepare the list of exported symbols\n\t  if test -z \"$export_symbols\"; then\n\t    export_symbols=$output_objdir/$outputname.exp\n\t    $opt_dry_run || {\n\t      $RM $export_symbols\n\t      eval \"$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \\(.*\\)$/\\1/p' \"'< \"$nlist\" > \"$export_symbols\"'\n\t      case $host in\n\t      *cygwin* | *mingw* | *cegcc* )\n                eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n                eval 'cat \"$export_symbols\" >> \"$output_objdir/$outputname.def\"'\n\t        ;;\n\t      esac\n\t    }\n\t  else\n\t    $opt_dry_run || {\n\t      eval \"$SED -e 's/\\([].[*^$]\\)/\\\\\\\\\\1/g' -e 's/^/ /' -e 's/$/$/'\"' < \"$export_symbols\" > \"$output_objdir/$outputname.exp\"'\n\t      eval '$GREP -f \"$output_objdir/$outputname.exp\" < \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t      case $host in\n\t        *cygwin* | *mingw* | *cegcc* )\n\t          eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n\t          eval 'cat \"$nlist\" >> \"$output_objdir/$outputname.def\"'\n\t          ;;\n\t      esac\n\t    }\n\t  fi\n\tfi\n\n\tfor dlprefile in $dlprefiles; do\n\t  func_verbose \"extracting global C symbols from '$dlprefile'\"\n\t  func_basename \"$dlprefile\"\n\t  name=$func_basename_result\n          case $host in\n\t    *cygwin* | *mingw* | *cegcc* )\n\t      # if an import library, we need to obtain dlname\n\t      if func_win32_import_lib_p \"$dlprefile\"; then\n\t        func_tr_sh \"$dlprefile\"\n\t        eval \"curr_lafile=\\$libfile_$func_tr_sh_result\"\n\t        dlprefile_dlbasename=\n\t        if test -n \"$curr_lafile\" && func_lalib_p \"$curr_lafile\"; then\n\t          # Use subshell, to avoid clobbering current variable values\n\t          dlprefile_dlname=`source \"$curr_lafile\" && echo \"$dlname\"`\n\t          if test -n \"$dlprefile_dlname\"; then\n\t            func_basename \"$dlprefile_dlname\"\n\t            dlprefile_dlbasename=$func_basename_result\n\t          else\n\t            # no lafile. user explicitly requested -dlpreopen <import library>.\n\t            $sharedlib_from_linklib_cmd \"$dlprefile\"\n\t            dlprefile_dlbasename=$sharedlib_from_linklib_result\n\t          fi\n\t        fi\n\t        $opt_dry_run || {\n\t          if test -n \"$dlprefile_dlbasename\"; then\n\t            eval '$ECHO \": $dlprefile_dlbasename\" >> \"$nlist\"'\n\t          else\n\t            func_warning \"Could not compute DLL name from $name\"\n\t            eval '$ECHO \": $name \" >> \"$nlist\"'\n\t          fi\n\t          func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t          eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe |\n\t            $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'\"\n\t        }\n\t      else # not an import lib\n\t        $opt_dry_run || {\n\t          eval '$ECHO \": $name \" >> \"$nlist\"'\n\t          func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t          eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe >> '$nlist'\"\n\t        }\n\t      fi\n\t    ;;\n\t    *)\n\t      $opt_dry_run || {\n\t        eval '$ECHO \": $name \" >> \"$nlist\"'\n\t        func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t        eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe >> '$nlist'\"\n\t      }\n\t    ;;\n          esac\n\tdone\n\n\t$opt_dry_run || {\n\t  # Make sure we have at least an empty file.\n\t  test -f \"$nlist\" || : > \"$nlist\"\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T\n\t    $MV \"$nlist\"T \"$nlist\"\n\t  fi\n\n\t  # Try sorting and uniquifying the output.\n\t  if $GREP -v \"^: \" < \"$nlist\" |\n\t      if sort -k 3 </dev/null >/dev/null 2>&1; then\n\t\tsort -k 3\n\t      else\n\t\tsort +2\n\t      fi |\n\t      uniq > \"$nlist\"S; then\n\t    :\n\t  else\n\t    $GREP -v \"^: \" < \"$nlist\" > \"$nlist\"S\n\t  fi\n\n\t  if test -f \"$nlist\"S; then\n\t    eval \"$global_symbol_to_cdecl\"' < \"$nlist\"S >> \"$output_objdir/$my_dlsyms\"'\n\t  else\n\t    echo '/* NONE */' >> \"$output_objdir/$my_dlsyms\"\n\t  fi\n\n\t  func_show_eval '$RM \"${nlist}I\"'\n\t  if test -n \"$global_symbol_to_import\"; then\n\t    eval \"$global_symbol_to_import\"' < \"$nlist\"S > \"$nlist\"I'\n\t  fi\n\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n\n/* The mapping between symbol names and symbols.  */\ntypedef struct {\n  const char *name;\n  void *address;\n} lt_dlsymlist;\nextern LT_DLSYM_CONST lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[];\\\n\"\n\n\t  if test -s \"$nlist\"I; then\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\nstatic void lt_syminit(void)\n{\n  LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols;\n  for (; symbol->name; ++symbol)\n    {\"\n\t    $SED 's/.*/      if (STREQ (symbol->name, \\\"&\\\")) symbol->address = (void *) \\&&;/' < \"$nlist\"I >> \"$output_objdir/$my_dlsyms\"\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n    }\n}\"\n\t  fi\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\nLT_DLSYM_CONST lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[] =\n{ {\\\"$my_originator\\\", (void *) 0},\"\n\n\t  if test -s \"$nlist\"I; then\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n  {\\\"@INIT@\\\", (void *) &lt_syminit},\"\n\t  fi\n\n\t  case $need_lib_prefix in\n\t  no)\n\t    eval \"$global_symbol_to_c_name_address\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  *)\n\t    eval \"$global_symbol_to_c_name_address_lib_prefix\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  esac\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt_${my_prefix}_LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\\\n\"\n\t} # !$opt_dry_run\n\n\tpic_flag_for_symtable=\n\tcase \"$compile_command \" in\n\t*\" -static \"*) ;;\n\t*)\n\t  case $host in\n\t  # compiling the symbol table file with pic_flag works around\n\t  # a FreeBSD bug that causes programs to crash when -lm is\n\t  # linked before any other PIC object.  But we must not use\n\t  # pic_flag when linking with -static.  The problem exists in\n\t  # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.\n\t  *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)\n\t    pic_flag_for_symtable=\" $pic_flag -DFREEBSD_WORKAROUND\" ;;\n\t  *-*-hpux*)\n\t    pic_flag_for_symtable=\" $pic_flag\"  ;;\n\t  *)\n\t    $my_pic_p && pic_flag_for_symtable=\" $pic_flag\"\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tsymtab_cflags=\n\tfor arg in $LTCFLAGS; do\n\t  case $arg in\n\t  -pie | -fpie | -fPIE) ;;\n\t  *) func_append symtab_cflags \" $arg\" ;;\n\t  esac\n\tdone\n\n\t# Now compile the dynamic symbol file.\n\tfunc_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable \"$my_dlsyms\")' 'exit $?'\n\n\t# Clean up the generated files.\n\tfunc_show_eval '$RM \"$output_objdir/$my_dlsyms\" \"$nlist\" \"${nlist}S\" \"${nlist}T\" \"${nlist}I\"'\n\n\t# Transform the symbol file into the correct name.\n\tsymfileobj=$output_objdir/${my_outputname}S.$objext\n\tcase $host in\n\t*cygwin* | *mingw* | *cegcc* )\n\t  if test -f \"$output_objdir/$my_outputname.def\"; then\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t  else\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  fi\n\t  ;;\n\t*)\n\t  compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  ;;\n\tesac\n\t;;\n      *)\n\tfunc_fatal_error \"unknown suffix for '$my_dlsyms'\"\n\t;;\n      esac\n    else\n      # We keep going just in case the user didn't refer to\n      # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe\n      # really was required.\n\n      # Nullify the symbol file.\n      compile_command=`$ECHO \"$compile_command\" | $SED \"s% @SYMFILE@%%\"`\n      finalize_command=`$ECHO \"$finalize_command\" | $SED \"s% @SYMFILE@%%\"`\n    fi\n}\n\n# func_cygming_gnu_implib_p ARG\n# This predicate returns with zero status (TRUE) if\n# ARG is a GNU/binutils-style import library. Returns\n# with nonzero status (FALSE) otherwise.\nfunc_cygming_gnu_implib_p ()\n{\n  $debug_cmd\n\n  func_to_tool_file \"$1\" func_convert_file_msys_to_w32\n  func_cygming_gnu_implib_tmp=`$NM \"$func_to_tool_file_result\" | eval \"$global_symbol_pipe\" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'`\n  test -n \"$func_cygming_gnu_implib_tmp\"\n}\n\n# func_cygming_ms_implib_p ARG\n# This predicate returns with zero status (TRUE) if\n# ARG is an MS-style import library. Returns\n# with nonzero status (FALSE) otherwise.\nfunc_cygming_ms_implib_p ()\n{\n  $debug_cmd\n\n  func_to_tool_file \"$1\" func_convert_file_msys_to_w32\n  func_cygming_ms_implib_tmp=`$NM \"$func_to_tool_file_result\" | eval \"$global_symbol_pipe\" | $GREP '_NULL_IMPORT_DESCRIPTOR'`\n  test -n \"$func_cygming_ms_implib_tmp\"\n}\n\n# func_win32_libid arg\n# return the library type of file 'arg'\n#\n# Need a lot of goo to handle *both* DLLs and import libs\n# Has to be a shell function in order to 'eat' the argument\n# that is supplied when $file_magic_command is called.\n# Despite the name, also deal with 64 bit binaries.\nfunc_win32_libid ()\n{\n  $debug_cmd\n\n  win32_libid_type=unknown\n  win32_fileres=`file -L $1 2>/dev/null`\n  case $win32_fileres in\n  *ar\\ archive\\ import\\ library*) # definitely import\n    win32_libid_type=\"x86 archive import\"\n    ;;\n  *ar\\ archive*) # could be an import, or static\n    # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.\n    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |\n       $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then\n      case $nm_interface in\n      \"MS dumpbin\")\n\tif func_cygming_ms_implib_p \"$1\" ||\n\t   func_cygming_gnu_implib_p \"$1\"\n\tthen\n\t  win32_nmres=import\n\telse\n\t  win32_nmres=\n\tfi\n\t;;\n      *)\n\tfunc_to_tool_file \"$1\" func_convert_file_msys_to_w32\n\twin32_nmres=`eval $NM -f posix -A \\\"$func_to_tool_file_result\\\" |\n\t  $SED -n -e '\n\t    1,100{\n\t\t/ I /{\n\t\t    s|.*|import|\n\t\t    p\n\t\t    q\n\t\t}\n\t    }'`\n\t;;\n      esac\n      case $win32_nmres in\n      import*)  win32_libid_type=\"x86 archive import\";;\n      *)        win32_libid_type=\"x86 archive static\";;\n      esac\n    fi\n    ;;\n  *DLL*)\n    win32_libid_type=\"x86 DLL\"\n    ;;\n  *executable*) # but shell scripts are \"executable\" too...\n    case $win32_fileres in\n    *MS\\ Windows\\ PE\\ Intel*)\n      win32_libid_type=\"x86 DLL\"\n      ;;\n    esac\n    ;;\n  esac\n  $ECHO \"$win32_libid_type\"\n}\n\n# func_cygming_dll_for_implib ARG\n#\n# Platform-specific function to extract the\n# name of the DLL associated with the specified\n# import library ARG.\n# Invoked by eval'ing the libtool variable\n#    $sharedlib_from_linklib_cmd\n# Result is available in the variable\n#    $sharedlib_from_linklib_result\nfunc_cygming_dll_for_implib ()\n{\n  $debug_cmd\n\n  sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify \"$1\"`\n}\n\n# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs\n#\n# The is the core of a fallback implementation of a\n# platform-specific function to extract the name of the\n# DLL associated with the specified import library LIBNAME.\n#\n# SECTION_NAME is either .idata$6 or .idata$7, depending\n# on the platform and compiler that created the implib.\n#\n# Echos the name of the DLL associated with the\n# specified import library.\nfunc_cygming_dll_for_implib_fallback_core ()\n{\n  $debug_cmd\n\n  match_literal=`$ECHO \"$1\" | $SED \"$sed_make_literal_regex\"`\n  $OBJDUMP -s --section \"$1\" \"$2\" 2>/dev/null |\n    $SED '/^Contents of section '\"$match_literal\"':/{\n      # Place marker at beginning of archive member dllname section\n      s/.*/====MARK====/\n      p\n      d\n    }\n    # These lines can sometimes be longer than 43 characters, but\n    # are always uninteresting\n    /:[\t ]*file format pe[i]\\{,1\\}-/d\n    /^In archive [^:]*:/d\n    # Ensure marker is printed\n    /^====MARK====/p\n    # Remove all lines with less than 43 characters\n    /^.\\{43\\}/!d\n    # From remaining lines, remove first 43 characters\n    s/^.\\{43\\}//' |\n    $SED -n '\n      # Join marker and all lines until next marker into a single line\n      /^====MARK====/ b para\n      H\n      $ b para\n      b\n      :para\n      x\n      s/\\n//g\n      # Remove the marker\n      s/^====MARK====//\n      # Remove trailing dots and whitespace\n      s/[\\. \\t]*$//\n      # Print\n      /./p' |\n    # we now have a list, one entry per line, of the stringified\n    # contents of the appropriate section of all members of the\n    # archive that possess that section. Heuristic: eliminate\n    # all those that have a first or second character that is\n    # a '.' (that is, objdump's representation of an unprintable\n    # character.) This should work for all archives with less than\n    # 0x302f exports -- but will fail for DLLs whose name actually\n    # begins with a literal '.' or a single character followed by\n    # a '.'.\n    #\n    # Of those that remain, print the first one.\n    $SED -e '/^\\./d;/^.\\./d;q'\n}\n\n# func_cygming_dll_for_implib_fallback ARG\n# Platform-specific function to extract the\n# name of the DLL associated with the specified\n# import library ARG.\n#\n# This fallback implementation is for use when $DLLTOOL\n# does not support the --identify-strict option.\n# Invoked by eval'ing the libtool variable\n#    $sharedlib_from_linklib_cmd\n# Result is available in the variable\n#    $sharedlib_from_linklib_result\nfunc_cygming_dll_for_implib_fallback ()\n{\n  $debug_cmd\n\n  if func_cygming_gnu_implib_p \"$1\"; then\n    # binutils import library\n    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' \"$1\"`\n  elif func_cygming_ms_implib_p \"$1\"; then\n    # ms-generated import library\n    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' \"$1\"`\n  else\n    # unknown\n    sharedlib_from_linklib_result=\n  fi\n}\n\n\n# func_extract_an_archive dir oldlib\nfunc_extract_an_archive ()\n{\n    $debug_cmd\n\n    f_ex_an_ar_dir=$1; shift\n    f_ex_an_ar_oldlib=$1\n    if test yes = \"$lock_old_archive_extraction\"; then\n      lockfile=$f_ex_an_ar_oldlib.lock\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    fi\n    func_show_eval \"(cd \\$f_ex_an_ar_dir && $AR x \\\"\\$f_ex_an_ar_oldlib\\\")\" \\\n\t\t   'stat=$?; rm -f \"$lockfile\"; exit $stat'\n    if test yes = \"$lock_old_archive_extraction\"; then\n      $opt_dry_run || rm -f \"$lockfile\"\n    fi\n    if ($AR t \"$f_ex_an_ar_oldlib\" | sort | sort -uc >/dev/null 2>&1); then\n     :\n    else\n      func_fatal_error \"object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib\"\n    fi\n}\n\n\n# func_extract_archives gentop oldlib ...\nfunc_extract_archives ()\n{\n    $debug_cmd\n\n    my_gentop=$1; shift\n    my_oldlibs=${1+\"$@\"}\n    my_oldobjs=\n    my_xlib=\n    my_xabs=\n    my_xdir=\n\n    for my_xlib in $my_oldlibs; do\n      # Extract the objects.\n      case $my_xlib in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) my_xabs=$my_xlib ;;\n\t*) my_xabs=`pwd`\"/$my_xlib\" ;;\n      esac\n      func_basename \"$my_xlib\"\n      my_xlib=$func_basename_result\n      my_xlib_u=$my_xlib\n      while :; do\n        case \" $extracted_archives \" in\n\t*\" $my_xlib_u \"*)\n\t  func_arith $extracted_serial + 1\n\t  extracted_serial=$func_arith_result\n\t  my_xlib_u=lt$extracted_serial-$my_xlib ;;\n\t*) break ;;\n\tesac\n      done\n      extracted_archives=\"$extracted_archives $my_xlib_u\"\n      my_xdir=$my_gentop/$my_xlib_u\n\n      func_mkdir_p \"$my_xdir\"\n\n      case $host in\n      *-darwin*)\n\tfunc_verbose \"Extracting $my_xabs\"\n\t# Do not bother doing anything if just a dry run\n\t$opt_dry_run || {\n\t  darwin_orig_dir=`pwd`\n\t  cd $my_xdir || exit $?\n\t  darwin_archive=$my_xabs\n\t  darwin_curdir=`pwd`\n\t  func_basename \"$darwin_archive\"\n\t  darwin_base_archive=$func_basename_result\n\t  darwin_arches=`$LIPO -info \"$darwin_archive\" 2>/dev/null | $GREP Architectures 2>/dev/null || true`\n\t  if test -n \"$darwin_arches\"; then\n\t    darwin_arches=`$ECHO \"$darwin_arches\" | $SED -e 's/.*are://'`\n\t    darwin_arch=\n\t    func_verbose \"$darwin_base_archive has multiple architectures $darwin_arches\"\n\t    for darwin_arch in  $darwin_arches; do\n\t      func_mkdir_p \"unfat-$$/$darwin_base_archive-$darwin_arch\"\n\t      $LIPO -thin $darwin_arch -output \"unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive\" \"$darwin_archive\"\n\t      cd \"unfat-$$/$darwin_base_archive-$darwin_arch\"\n\t      func_extract_an_archive \"`pwd`\" \"$darwin_base_archive\"\n\t      cd \"$darwin_curdir\"\n\t      $RM \"unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive\"\n\t    done # $darwin_arches\n            ## Okay now we've a bunch of thin objects, gotta fatten them up :)\n\t    darwin_filelist=`find unfat-$$ -type f -name \\*.o -print -o -name \\*.lo -print | $SED -e \"$sed_basename\" | sort -u`\n\t    darwin_file=\n\t    darwin_files=\n\t    for darwin_file in $darwin_filelist; do\n\t      darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`\n\t      $LIPO -create -output \"$darwin_file\" $darwin_files\n\t    done # $darwin_filelist\n\t    $RM -rf unfat-$$\n\t    cd \"$darwin_orig_dir\"\n\t  else\n\t    cd $darwin_orig_dir\n\t    func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t  fi # $darwin_arches\n\t} # !$opt_dry_run\n\t;;\n      *)\n        func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t;;\n      esac\n      my_oldobjs=\"$my_oldobjs \"`find $my_xdir -name \\*.$objext -print -o -name \\*.lo -print | sort | $NL2SP`\n    done\n\n    func_extract_archives_result=$my_oldobjs\n}\n\n\n# func_emit_wrapper [arg=no]\n#\n# Emit a libtool wrapper script on stdout.\n# Don't directly open a file because we may want to\n# incorporate the script contents within a cygwin/mingw\n# wrapper executable.  Must ONLY be called from within\n# func_mode_link because it depends on a number of variables\n# set therein.\n#\n# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\n# variable will take.  If 'yes', then the emitted script\n# will assume that the directory where it is stored is\n# the $objdir directory.  This is a cygwin/mingw-specific\n# behavior.\nfunc_emit_wrapper ()\n{\n\tfunc_emit_wrapper_arg1=${1-no}\n\n\t$ECHO \"\\\n#! $SHELL\n\n# $output - temporary wrapper script for $objdir/$outputname\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# The $output program cannot be directly executed until all the libtool\n# libraries that it depends on are installed.\n#\n# This wrapper script should never be moved out of the build directory.\n# If it is, it will not operate correctly.\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='$sed_quote_subst'\n\n# Be Bourne compatible\nif test -n \\\"\\${ZSH_VERSION+set}\\\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on \\${1+\\\"\\$@\\\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '\\${1+\\\"\\$@\\\"}'='\\\"\\$@\\\"'\n  setopt NO_GLOB_SUBST\nelse\n  case \\`(set -o) 2>/dev/null\\` in *posix*) set -o posix;; esac\nfi\nBIN_SH=xpg4; export BIN_SH # for Tru64\nDUALCASE=1; export DUALCASE # for MKS sh\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nrelink_command=\\\"$relink_command\\\"\n\n# This environment variable determines our operation mode.\nif test \\\"\\$libtool_install_magic\\\" = \\\"$magic\\\"; then\n  # install mode needs the following variables:\n  generated_by_libtool_version='$macro_version'\n  notinst_deplibs='$notinst_deplibs'\nelse\n  # When we are sourced in execute mode, \\$file and \\$ECHO are already set.\n  if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n    file=\\\"\\$0\\\"\"\n\n    qECHO=`$ECHO \"$ECHO\" | $SED \"$sed_quote_subst\"`\n    $ECHO \"\\\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$1\n_LTECHO_EOF'\n}\n    ECHO=\\\"$qECHO\\\"\n  fi\n\n# Very basic option parsing. These options are (a) specific to\n# the libtool wrapper, (b) are identical between the wrapper\n# /script/ and the wrapper /executable/ that is used only on\n# windows platforms, and (c) all begin with the string \"--lt-\"\n# (application programs are unlikely to have options that match\n# this pattern).\n#\n# There are only two supported options: --lt-debug and\n# --lt-dump-script. There is, deliberately, no --lt-help.\n#\n# The first argument to this parsing function should be the\n# script's $0 value, followed by \"$@\".\nlt_option_debug=\nfunc_parse_lt_options ()\n{\n  lt_script_arg0=\\$0\n  shift\n  for lt_opt\n  do\n    case \\\"\\$lt_opt\\\" in\n    --lt-debug) lt_option_debug=1 ;;\n    --lt-dump-script)\n        lt_dump_D=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\\`\n        test \\\"X\\$lt_dump_D\\\" = \\\"X\\$lt_script_arg0\\\" && lt_dump_D=.\n        lt_dump_F=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%^.*/%%'\\`\n        cat \\\"\\$lt_dump_D/\\$lt_dump_F\\\"\n        exit 0\n      ;;\n    --lt-*)\n        \\$ECHO \\\"Unrecognized --lt- option: '\\$lt_opt'\\\" 1>&2\n        exit 1\n      ;;\n    esac\n  done\n\n  # Print the debug banner immediately:\n  if test -n \\\"\\$lt_option_debug\\\"; then\n    echo \\\"$outputname:$output:\\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\\\" 1>&2\n  fi\n}\n\n# Used when --lt-debug. Prints its arguments to stdout\n# (redirection is the responsibility of the caller)\nfunc_lt_dump_args ()\n{\n  lt_dump_args_N=1;\n  for lt_arg\n  do\n    \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[\\$lt_dump_args_N]: \\$lt_arg\\\"\n    lt_dump_args_N=\\`expr \\$lt_dump_args_N + 1\\`\n  done\n}\n\n# Core function for launching the target application\nfunc_exec_program_core ()\n{\n\"\n  case $host in\n  # Backslashes separate directories on plain windows\n  *-*-mingw | *-*-os2* | *-cegcc*)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[0]: \\$progdir\\\\\\\\\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir\\\\\\\\\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n\n  *)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[0]: \\$progdir/\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir/\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n  esac\n  $ECHO \"\\\n      \\$ECHO \\\"\\$0: cannot exec \\$program \\$*\\\" 1>&2\n      exit 1\n}\n\n# A function to encapsulate launching the target application\n# Strips options in the --lt-* namespace from \\$@ and\n# launches target application with the remaining arguments.\nfunc_exec_program ()\n{\n  case \\\" \\$* \\\" in\n  *\\\\ --lt-*)\n    for lt_wr_arg\n    do\n      case \\$lt_wr_arg in\n      --lt-*) ;;\n      *) set x \\\"\\$@\\\" \\\"\\$lt_wr_arg\\\"; shift;;\n      esac\n      shift\n    done ;;\n  esac\n  func_exec_program_core \\${1+\\\"\\$@\\\"}\n}\n\n  # Parse options\n  func_parse_lt_options \\\"\\$0\\\" \\${1+\\\"\\$@\\\"}\n\n  # Find the directory that this script lives in.\n  thisdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*$%%'\\`\n  test \\\"x\\$thisdir\\\" = \\\"x\\$file\\\" && thisdir=.\n\n  # Follow symbolic links until we get to the real thisdir.\n  file=\\`ls -ld \\\"\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  while test -n \\\"\\$file\\\"; do\n    destdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*\\$%%'\\`\n\n    # If there was a directory component, then change thisdir.\n    if test \\\"x\\$destdir\\\" != \\\"x\\$file\\\"; then\n      case \\\"\\$destdir\\\" in\n      [\\\\\\\\/]* | [A-Za-z]:[\\\\\\\\/]*) thisdir=\\\"\\$destdir\\\" ;;\n      *) thisdir=\\\"\\$thisdir/\\$destdir\\\" ;;\n      esac\n    fi\n\n    file=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%^.*/%%'\\`\n    file=\\`ls -ld \\\"\\$thisdir/\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  done\n\n  # Usually 'no', except on cygwin/mingw when embedded into\n  # the cwrapper.\n  WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1\n  if test \\\"\\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\\\" = \\\"yes\\\"; then\n    # special case for '.'\n    if test \\\"\\$thisdir\\\" = \\\".\\\"; then\n      thisdir=\\`pwd\\`\n    fi\n    # remove .libs from thisdir\n    case \\\"\\$thisdir\\\" in\n    *[\\\\\\\\/]$objdir ) thisdir=\\`\\$ECHO \\\"\\$thisdir\\\" | $SED 's%[\\\\\\\\/][^\\\\\\\\/]*$%%'\\` ;;\n    $objdir )   thisdir=. ;;\n    esac\n  fi\n\n  # Try to get the absolute directory name.\n  absdir=\\`cd \\\"\\$thisdir\\\" && pwd\\`\n  test -n \\\"\\$absdir\\\" && thisdir=\\\"\\$absdir\\\"\n\"\n\n\tif test yes = \"$fast_install\"; then\n\t  $ECHO \"\\\n  program=lt-'$outputname'$exeext\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\n  if test ! -f \\\"\\$progdir/\\$program\\\" ||\n     { file=\\`ls -1dt \\\"\\$progdir/\\$program\\\" \\\"\\$progdir/../\\$program\\\" 2>/dev/null | $SED 1q\\`; \\\\\n       test \\\"X\\$file\\\" != \\\"X\\$progdir/\\$program\\\"; }; then\n\n    file=\\\"\\$\\$-\\$program\\\"\n\n    if test ! -d \\\"\\$progdir\\\"; then\n      $MKDIR \\\"\\$progdir\\\"\n    else\n      $RM \\\"\\$progdir/\\$file\\\"\n    fi\"\n\n\t  $ECHO \"\\\n\n    # relink executable if necessary\n    if test -n \\\"\\$relink_command\\\"; then\n      if relink_command_output=\\`eval \\$relink_command 2>&1\\`; then :\n      else\n\t\\$ECHO \\\"\\$relink_command_output\\\" >&2\n\t$RM \\\"\\$progdir/\\$file\\\"\n\texit 1\n      fi\n    fi\n\n    $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\" 2>/dev/null ||\n    { $RM \\\"\\$progdir/\\$program\\\";\n      $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\"; }\n    $RM \\\"\\$progdir/\\$file\\\"\n  fi\"\n\telse\n\t  $ECHO \"\\\n  program='$outputname'\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\"\n\tfi\n\n\t$ECHO \"\\\n\n  if test -f \\\"\\$progdir/\\$program\\\"; then\"\n\n\t# fixup the dll searchpath if we need to.\n\t#\n\t# Fix the DLL searchpath if we need to.  Do this before prepending\n\t# to shlibpath, because on Windows, both are PATH and uninstalled\n\t# libraries must come first.\n\tif test -n \"$dllsearchpath\"; then\n\t  $ECHO \"\\\n    # Add the dll search path components to the executable PATH\n    PATH=$dllsearchpath:\\$PATH\n\"\n\tfi\n\n\t# Export our shlibpath_var if we have one.\n\tif test yes = \"$shlibpath_overrides_runpath\" && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n\t  $ECHO \"\\\n    # Add our own library path to $shlibpath_var\n    $shlibpath_var=\\\"$temp_rpath\\$$shlibpath_var\\\"\n\n    # Some systems cannot cope with colon-terminated $shlibpath_var\n    # The second colon is a workaround for a bug in BeOS R4 sed\n    $shlibpath_var=\\`\\$ECHO \\\"\\$$shlibpath_var\\\" | $SED 's/::*\\$//'\\`\n\n    export $shlibpath_var\n\"\n\tfi\n\n\t$ECHO \"\\\n    if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n      # Run the actual program with our arguments.\n      func_exec_program \\${1+\\\"\\$@\\\"}\n    fi\n  else\n    # The program doesn't exist.\n    \\$ECHO \\\"\\$0: error: '\\$progdir/\\$program' does not exist\\\" 1>&2\n    \\$ECHO \\\"This script is just a wrapper for \\$program.\\\" 1>&2\n    \\$ECHO \\\"See the $PACKAGE documentation for more information.\\\" 1>&2\n    exit 1\n  fi\nfi\\\n\"\n}\n\n\n# func_emit_cwrapperexe_src\n# emit the source code for a wrapper executable on stdout\n# Must ONLY be called from within func_mode_link because\n# it depends on a number of variable set therein.\nfunc_emit_cwrapperexe_src ()\n{\n\tcat <<EOF\n\n/* $cwrappersource - temporary wrapper executable for $objdir/$outputname\n   Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n\n   The $output program cannot be directly executed until all the libtool\n   libraries that it depends on are installed.\n\n   This wrapper executable should never be moved out of the build directory.\n   If it is, it will not operate correctly.\n*/\nEOF\n\t    cat <<\"EOF\"\n#ifdef _MSC_VER\n# define _CRT_SECURE_NO_DEPRECATE 1\n#endif\n#include <stdio.h>\n#include <stdlib.h>\n#ifdef _MSC_VER\n# include <direct.h>\n# include <process.h>\n# include <io.h>\n#else\n# include <unistd.h>\n# include <stdint.h>\n# ifdef __CYGWIN__\n#  include <io.h>\n# endif\n#endif\n#include <malloc.h>\n#include <stdarg.h>\n#include <assert.h>\n#include <string.h>\n#include <ctype.h>\n#include <errno.h>\n#include <fcntl.h>\n#include <sys/stat.h>\n\n#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)\n\n/* declarations of non-ANSI functions */\n#if defined __MINGW32__\n# ifdef __STRICT_ANSI__\nint _putenv (const char *);\n# endif\n#elif defined __CYGWIN__\n# ifdef __STRICT_ANSI__\nchar *realpath (const char *, char *);\nint putenv (char *);\nint setenv (const char *, const char *, int);\n# endif\n/* #elif defined other_platform || defined ... */\n#endif\n\n/* portability defines, excluding path handling macros */\n#if defined _MSC_VER\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n# define S_IXUSR _S_IEXEC\n#elif defined __MINGW32__\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n#elif defined __CYGWIN__\n# define HAVE_SETENV\n# define FOPEN_WB \"wb\"\n/* #elif defined other platforms ... */\n#endif\n\n#if defined PATH_MAX\n# define LT_PATHMAX PATH_MAX\n#elif defined MAXPATHLEN\n# define LT_PATHMAX MAXPATHLEN\n#else\n# define LT_PATHMAX 1024\n#endif\n\n#ifndef S_IXOTH\n# define S_IXOTH 0\n#endif\n#ifndef S_IXGRP\n# define S_IXGRP 0\n#endif\n\n/* path handling portability macros */\n#ifndef DIR_SEPARATOR\n# define DIR_SEPARATOR '/'\n# define PATH_SEPARATOR ':'\n#endif\n\n#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \\\n  defined __OS2__\n# define HAVE_DOS_BASED_FILE_SYSTEM\n# define FOPEN_WB \"wb\"\n# ifndef DIR_SEPARATOR_2\n#  define DIR_SEPARATOR_2 '\\\\'\n# endif\n# ifndef PATH_SEPARATOR_2\n#  define PATH_SEPARATOR_2 ';'\n# endif\n#endif\n\n#ifndef DIR_SEPARATOR_2\n# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)\n#else /* DIR_SEPARATOR_2 */\n# define IS_DIR_SEPARATOR(ch) \\\n\t(((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))\n#endif /* DIR_SEPARATOR_2 */\n\n#ifndef PATH_SEPARATOR_2\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)\n#else /* PATH_SEPARATOR_2 */\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)\n#endif /* PATH_SEPARATOR_2 */\n\n#ifndef FOPEN_WB\n# define FOPEN_WB \"w\"\n#endif\n#ifndef _O_BINARY\n# define _O_BINARY 0\n#endif\n\n#define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))\n#define XFREE(stale) do { \\\n  if (stale) { free (stale); stale = 0; } \\\n} while (0)\n\n#if defined LT_DEBUGWRAPPER\nstatic int lt_debug = 1;\n#else\nstatic int lt_debug = 0;\n#endif\n\nconst char *program_name = \"libtool-wrapper\"; /* in case xstrdup fails */\n\nvoid *xmalloc (size_t num);\nchar *xstrdup (const char *string);\nconst char *base_name (const char *name);\nchar *find_executable (const char *wrapper);\nchar *chase_symlinks (const char *pathspec);\nint make_executable (const char *path);\nint check_executable (const char *path);\nchar *strendzap (char *str, const char *pat);\nvoid lt_debugprintf (const char *file, int line, const char *fmt, ...);\nvoid lt_fatal (const char *file, int line, const char *message, ...);\nstatic const char *nonnull (const char *s);\nstatic const char *nonempty (const char *s);\nvoid lt_setenv (const char *name, const char *value);\nchar *lt_extend_str (const char *orig_value, const char *add, int to_end);\nvoid lt_update_exe_path (const char *name, const char *value);\nvoid lt_update_lib_path (const char *name, const char *value);\nchar **prepare_spawn (char **argv);\nvoid lt_dump_script (FILE *f);\nEOF\n\n\t    cat <<EOF\n#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5)\n# define externally_visible volatile\n#else\n# define externally_visible __attribute__((externally_visible)) volatile\n#endif\nexternally_visible const char * MAGIC_EXE = \"$magic_exe\";\nconst char * LIB_PATH_VARNAME = \"$shlibpath_var\";\nEOF\n\n\t    if test yes = \"$shlibpath_overrides_runpath\" && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n              func_to_host_path \"$temp_rpath\"\n\t      cat <<EOF\nconst char * LIB_PATH_VALUE   = \"$func_to_host_path_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * LIB_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test -n \"$dllsearchpath\"; then\n              func_to_host_path \"$dllsearchpath:\"\n\t      cat <<EOF\nconst char * EXE_PATH_VARNAME = \"PATH\";\nconst char * EXE_PATH_VALUE   = \"$func_to_host_path_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * EXE_PATH_VARNAME = \"\";\nconst char * EXE_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test yes = \"$fast_install\"; then\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"lt-$outputname\"; /* hopefully, no .exe */\nEOF\n\t    else\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"$outputname\"; /* hopefully, no .exe */\nEOF\n\t    fi\n\n\n\t    cat <<\"EOF\"\n\n#define LTWRAPPER_OPTION_PREFIX         \"--lt-\"\n\nstatic const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;\nstatic const char *dumpscript_opt       = LTWRAPPER_OPTION_PREFIX \"dump-script\";\nstatic const char *debug_opt            = LTWRAPPER_OPTION_PREFIX \"debug\";\n\nint\nmain (int argc, char *argv[])\n{\n  char **newargz;\n  int  newargc;\n  char *tmp_pathspec;\n  char *actual_cwrapper_path;\n  char *actual_cwrapper_name;\n  char *target_name;\n  char *lt_argv_zero;\n  int rval = 127;\n\n  int i;\n\n  program_name = (char *) xstrdup (base_name (argv[0]));\n  newargz = XMALLOC (char *, (size_t) argc + 1);\n\n  /* very simple arg parsing; don't want to rely on getopt\n   * also, copy all non cwrapper options to newargz, except\n   * argz[0], which is handled differently\n   */\n  newargc=0;\n  for (i = 1; i < argc; i++)\n    {\n      if (STREQ (argv[i], dumpscript_opt))\n\t{\nEOF\n\t    case $host in\n\t      *mingw* | *cygwin* )\n\t\t# make stdout use \"unix\" line endings\n\t\techo \"          setmode(1,_O_BINARY);\"\n\t\t;;\n\t      esac\n\n\t    cat <<\"EOF\"\n\t  lt_dump_script (stdout);\n\t  return 0;\n\t}\n      if (STREQ (argv[i], debug_opt))\n\t{\n          lt_debug = 1;\n          continue;\n\t}\n      if (STREQ (argv[i], ltwrapper_option_prefix))\n        {\n          /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX\n             namespace, but it is not one of the ones we know about and\n             have already dealt with, above (inluding dump-script), then\n             report an error. Otherwise, targets might begin to believe\n             they are allowed to use options in the LTWRAPPER_OPTION_PREFIX\n             namespace. The first time any user complains about this, we'll\n             need to make LTWRAPPER_OPTION_PREFIX a configure-time option\n             or a configure.ac-settable value.\n           */\n          lt_fatal (__FILE__, __LINE__,\n\t\t    \"unrecognized %s option: '%s'\",\n                    ltwrapper_option_prefix, argv[i]);\n        }\n      /* otherwise ... */\n      newargz[++newargc] = xstrdup (argv[i]);\n    }\n  newargz[++newargc] = NULL;\n\nEOF\n\t    cat <<EOF\n  /* The GNU banner must be the first non-error debug message */\n  lt_debugprintf (__FILE__, __LINE__, \"libtool wrapper (GNU $PACKAGE) $VERSION\\n\");\nEOF\n\t    cat <<\"EOF\"\n  lt_debugprintf (__FILE__, __LINE__, \"(main) argv[0]: %s\\n\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__, \"(main) program_name: %s\\n\", program_name);\n\n  tmp_pathspec = find_executable (argv[0]);\n  if (tmp_pathspec == NULL)\n    lt_fatal (__FILE__, __LINE__, \"couldn't find %s\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (before symlink chase) at: %s\\n\",\n\t\t  tmp_pathspec);\n\n  actual_cwrapper_path = chase_symlinks (tmp_pathspec);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (after symlink chase) at: %s\\n\",\n\t\t  actual_cwrapper_path);\n  XFREE (tmp_pathspec);\n\n  actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));\n  strendzap (actual_cwrapper_path, actual_cwrapper_name);\n\n  /* wrapper name transforms */\n  strendzap (actual_cwrapper_name, \".exe\");\n  tmp_pathspec = lt_extend_str (actual_cwrapper_name, \".exe\", 1);\n  XFREE (actual_cwrapper_name);\n  actual_cwrapper_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  /* target_name transforms -- use actual target program name; might have lt- prefix */\n  target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));\n  strendzap (target_name, \".exe\");\n  tmp_pathspec = lt_extend_str (target_name, \".exe\", 1);\n  XFREE (target_name);\n  target_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(main) libtool target name: %s\\n\",\n\t\t  target_name);\nEOF\n\n\t    cat <<EOF\n  newargz[0] =\n    XMALLOC (char, (strlen (actual_cwrapper_path) +\n\t\t    strlen (\"$objdir\") + 1 + strlen (actual_cwrapper_name) + 1));\n  strcpy (newargz[0], actual_cwrapper_path);\n  strcat (newargz[0], \"$objdir\");\n  strcat (newargz[0], \"/\");\nEOF\n\n\t    cat <<\"EOF\"\n  /* stop here, and copy so we don't have to do this twice */\n  tmp_pathspec = xstrdup (newargz[0]);\n\n  /* do NOT want the lt- prefix here, so use actual_cwrapper_name */\n  strcat (newargz[0], actual_cwrapper_name);\n\n  /* DO want the lt- prefix here if it exists, so use target_name */\n  lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);\n  XFREE (tmp_pathspec);\n  tmp_pathspec = NULL;\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t    cat <<\"EOF\"\n  {\n    char* p;\n    while ((p = strchr (newargz[0], '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n    while ((p = strchr (lt_argv_zero, '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n  }\nEOF\n\t    ;;\n\t    esac\n\n\t    cat <<\"EOF\"\n  XFREE (target_name);\n  XFREE (actual_cwrapper_path);\n  XFREE (actual_cwrapper_name);\n\n  lt_setenv (\"BIN_SH\", \"xpg4\"); /* for Tru64 */\n  lt_setenv (\"DUALCASE\", \"1\");  /* for MSK sh */\n  /* Update the DLL searchpath.  EXE_PATH_VALUE ($dllsearchpath) must\n     be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)\n     because on Windows, both *_VARNAMEs are PATH but uninstalled\n     libraries must come first. */\n  lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);\n  lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);\n\n  lt_debugprintf (__FILE__, __LINE__, \"(main) lt_argv_zero: %s\\n\",\n\t\t  nonnull (lt_argv_zero));\n  for (i = 0; i < newargc; i++)\n    {\n      lt_debugprintf (__FILE__, __LINE__, \"(main) newargz[%d]: %s\\n\",\n\t\t      i, nonnull (newargz[i]));\n    }\n\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n  /* execv doesn't actually work on mingw as expected on unix */\n  newargz = prepare_spawn (newargz);\n  rval = (int) _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);\n  if (rval == -1)\n    {\n      /* failed to start process */\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"(main) failed to launch target \\\"%s\\\": %s\\n\",\n\t\t      lt_argv_zero, nonnull (strerror (errno)));\n      return 127;\n    }\n  return rval;\nEOF\n\t\t;;\n\t      *)\n\t\tcat <<\"EOF\"\n  execv (lt_argv_zero, newargz);\n  return rval; /* =127, but avoids unused variable warning */\nEOF\n\t\t;;\n\t    esac\n\n\t    cat <<\"EOF\"\n}\n\nvoid *\nxmalloc (size_t num)\n{\n  void *p = (void *) malloc (num);\n  if (!p)\n    lt_fatal (__FILE__, __LINE__, \"memory exhausted\");\n\n  return p;\n}\n\nchar *\nxstrdup (const char *string)\n{\n  return string ? strcpy ((char *) xmalloc (strlen (string) + 1),\n\t\t\t  string) : NULL;\n}\n\nconst char *\nbase_name (const char *name)\n{\n  const char *base;\n\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n  /* Skip over the disk name in MSDOS pathnames. */\n  if (isalpha ((unsigned char) name[0]) && name[1] == ':')\n    name += 2;\n#endif\n\n  for (base = name; *name; name++)\n    if (IS_DIR_SEPARATOR (*name))\n      base = name + 1;\n  return base;\n}\n\nint\ncheck_executable (const char *path)\n{\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(check_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if ((stat (path, &st) >= 0)\n      && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))\n    return 1;\n  else\n    return 0;\n}\n\nint\nmake_executable (const char *path)\n{\n  int rval = 0;\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(make_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if (stat (path, &st) >= 0)\n    {\n      rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);\n    }\n  return rval;\n}\n\n/* Searches for the full path of the wrapper.  Returns\n   newly allocated full path name if found, NULL otherwise\n   Does not chase symlinks, even on platforms that support them.\n*/\nchar *\nfind_executable (const char *wrapper)\n{\n  int has_slash = 0;\n  const char *p;\n  const char *p_next;\n  /* static buffer for getcwd */\n  char tmp[LT_PATHMAX + 1];\n  size_t tmp_len;\n  char *concat_name;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(find_executable): %s\\n\",\n                  nonempty (wrapper));\n\n  if ((wrapper == NULL) || (*wrapper == '\\0'))\n    return NULL;\n\n  /* Absolute path? */\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n  if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')\n    {\n      concat_name = xstrdup (wrapper);\n      if (check_executable (concat_name))\n\treturn concat_name;\n      XFREE (concat_name);\n    }\n  else\n    {\n#endif\n      if (IS_DIR_SEPARATOR (wrapper[0]))\n\t{\n\t  concat_name = xstrdup (wrapper);\n\t  if (check_executable (concat_name))\n\t    return concat_name;\n\t  XFREE (concat_name);\n\t}\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n    }\n#endif\n\n  for (p = wrapper; *p; p++)\n    if (*p == '/')\n      {\n\thas_slash = 1;\n\tbreak;\n      }\n  if (!has_slash)\n    {\n      /* no slashes; search PATH */\n      const char *path = getenv (\"PATH\");\n      if (path != NULL)\n\t{\n\t  for (p = path; *p; p = p_next)\n\t    {\n\t      const char *q;\n\t      size_t p_len;\n\t      for (q = p; *q; q++)\n\t\tif (IS_PATH_SEPARATOR (*q))\n\t\t  break;\n\t      p_len = (size_t) (q - p);\n\t      p_next = (*q == '\\0' ? q : q + 1);\n\t      if (p_len == 0)\n\t\t{\n\t\t  /* empty path: current directory */\n\t\t  if (getcwd (tmp, LT_PATHMAX) == NULL)\n\t\t    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n                              nonnull (strerror (errno)));\n\t\t  tmp_len = strlen (tmp);\n\t\t  concat_name =\n\t\t    XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, tmp, tmp_len);\n\t\t  concat_name[tmp_len] = '/';\n\t\t  strcpy (concat_name + tmp_len + 1, wrapper);\n\t\t}\n\t      else\n\t\t{\n\t\t  concat_name =\n\t\t    XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, p, p_len);\n\t\t  concat_name[p_len] = '/';\n\t\t  strcpy (concat_name + p_len + 1, wrapper);\n\t\t}\n\t      if (check_executable (concat_name))\n\t\treturn concat_name;\n\t      XFREE (concat_name);\n\t    }\n\t}\n      /* not found in PATH; assume curdir */\n    }\n  /* Relative path | not found in path: prepend cwd */\n  if (getcwd (tmp, LT_PATHMAX) == NULL)\n    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n              nonnull (strerror (errno)));\n  tmp_len = strlen (tmp);\n  concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n  memcpy (concat_name, tmp, tmp_len);\n  concat_name[tmp_len] = '/';\n  strcpy (concat_name + tmp_len + 1, wrapper);\n\n  if (check_executable (concat_name))\n    return concat_name;\n  XFREE (concat_name);\n  return NULL;\n}\n\nchar *\nchase_symlinks (const char *pathspec)\n{\n#ifndef S_ISLNK\n  return xstrdup (pathspec);\n#else\n  char buf[LT_PATHMAX];\n  struct stat s;\n  char *tmp_pathspec = xstrdup (pathspec);\n  char *p;\n  int has_symlinks = 0;\n  while (strlen (tmp_pathspec) && !has_symlinks)\n    {\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"checking path component for symlinks: %s\\n\",\n\t\t      tmp_pathspec);\n      if (lstat (tmp_pathspec, &s) == 0)\n\t{\n\t  if (S_ISLNK (s.st_mode) != 0)\n\t    {\n\t      has_symlinks = 1;\n\t      break;\n\t    }\n\n\t  /* search backwards for last DIR_SEPARATOR */\n\t  p = tmp_pathspec + strlen (tmp_pathspec) - 1;\n\t  while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    p--;\n\t  if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    {\n\t      /* no more DIR_SEPARATORS left */\n\t      break;\n\t    }\n\t  *p = '\\0';\n\t}\n      else\n\t{\n\t  lt_fatal (__FILE__, __LINE__,\n\t\t    \"error accessing file \\\"%s\\\": %s\",\n\t\t    tmp_pathspec, nonnull (strerror (errno)));\n\t}\n    }\n  XFREE (tmp_pathspec);\n\n  if (!has_symlinks)\n    {\n      return xstrdup (pathspec);\n    }\n\n  tmp_pathspec = realpath (pathspec, buf);\n  if (tmp_pathspec == 0)\n    {\n      lt_fatal (__FILE__, __LINE__,\n\t\t\"could not follow symlinks for %s\", pathspec);\n    }\n  return xstrdup (tmp_pathspec);\n#endif\n}\n\nchar *\nstrendzap (char *str, const char *pat)\n{\n  size_t len, patlen;\n\n  assert (str != NULL);\n  assert (pat != NULL);\n\n  len = strlen (str);\n  patlen = strlen (pat);\n\n  if (patlen <= len)\n    {\n      str += len - patlen;\n      if (STREQ (str, pat))\n\t*str = '\\0';\n    }\n  return str;\n}\n\nvoid\nlt_debugprintf (const char *file, int line, const char *fmt, ...)\n{\n  va_list args;\n  if (lt_debug)\n    {\n      (void) fprintf (stderr, \"%s:%s:%d: \", program_name, file, line);\n      va_start (args, fmt);\n      (void) vfprintf (stderr, fmt, args);\n      va_end (args);\n    }\n}\n\nstatic void\nlt_error_core (int exit_status, const char *file,\n\t       int line, const char *mode,\n\t       const char *message, va_list ap)\n{\n  fprintf (stderr, \"%s:%s:%d: %s: \", program_name, file, line, mode);\n  vfprintf (stderr, message, ap);\n  fprintf (stderr, \".\\n\");\n\n  if (exit_status >= 0)\n    exit (exit_status);\n}\n\nvoid\nlt_fatal (const char *file, int line, const char *message, ...)\n{\n  va_list ap;\n  va_start (ap, message);\n  lt_error_core (EXIT_FAILURE, file, line, \"FATAL\", message, ap);\n  va_end (ap);\n}\n\nstatic const char *\nnonnull (const char *s)\n{\n  return s ? s : \"(null)\";\n}\n\nstatic const char *\nnonempty (const char *s)\n{\n  return (s && !*s) ? \"(empty)\" : nonnull (s);\n}\n\nvoid\nlt_setenv (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_setenv) setting '%s' to '%s'\\n\",\n                  nonnull (name), nonnull (value));\n  {\n#ifdef HAVE_SETENV\n    /* always make a copy, for consistency with !HAVE_SETENV */\n    char *str = xstrdup (value);\n    setenv (name, str, 1);\n#else\n    size_t len = strlen (name) + 1 + strlen (value) + 1;\n    char *str = XMALLOC (char, len);\n    sprintf (str, \"%s=%s\", name, value);\n    if (putenv (str) != EXIT_SUCCESS)\n      {\n        XFREE (str);\n      }\n#endif\n  }\n}\n\nchar *\nlt_extend_str (const char *orig_value, const char *add, int to_end)\n{\n  char *new_value;\n  if (orig_value && *orig_value)\n    {\n      size_t orig_value_len = strlen (orig_value);\n      size_t add_len = strlen (add);\n      new_value = XMALLOC (char, add_len + orig_value_len + 1);\n      if (to_end)\n        {\n          strcpy (new_value, orig_value);\n          strcpy (new_value + orig_value_len, add);\n        }\n      else\n        {\n          strcpy (new_value, add);\n          strcpy (new_value + add_len, orig_value);\n        }\n    }\n  else\n    {\n      new_value = xstrdup (add);\n    }\n  return new_value;\n}\n\nvoid\nlt_update_exe_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_exe_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      /* some systems can't cope with a ':'-terminated path #' */\n      size_t len = strlen (new_value);\n      while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1]))\n        {\n          new_value[--len] = '\\0';\n        }\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nvoid\nlt_update_lib_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_lib_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nEOF\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n\n/* Prepares an argument vector before calling spawn().\n   Note that spawn() does not by itself call the command interpreter\n     (getenv (\"COMSPEC\") != NULL ? getenv (\"COMSPEC\") :\n      ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);\n         GetVersionEx(&v);\n         v.dwPlatformId == VER_PLATFORM_WIN32_NT;\n      }) ? \"cmd.exe\" : \"command.com\").\n   Instead it simply concatenates the arguments, separated by ' ', and calls\n   CreateProcess().  We must quote the arguments since Win32 CreateProcess()\n   interprets characters like ' ', '\\t', '\\\\', '\"' (but not '<' and '>') in a\n   special way:\n   - Space and tab are interpreted as delimiters. They are not treated as\n     delimiters if they are surrounded by double quotes: \"...\".\n   - Unescaped double quotes are removed from the input. Their only effect is\n     that within double quotes, space and tab are treated like normal\n     characters.\n   - Backslashes not followed by double quotes are not special.\n   - But 2*n+1 backslashes followed by a double quote become\n     n backslashes followed by a double quote (n >= 0):\n       \\\" -> \"\n       \\\\\\\" -> \\\"\n       \\\\\\\\\\\" -> \\\\\"\n */\n#define SHELL_SPECIAL_CHARS \"\\\"\\\\ \\001\\002\\003\\004\\005\\006\\007\\010\\011\\012\\013\\014\\015\\016\\017\\020\\021\\022\\023\\024\\025\\026\\027\\030\\031\\032\\033\\034\\035\\036\\037\"\n#define SHELL_SPACE_CHARS \" \\001\\002\\003\\004\\005\\006\\007\\010\\011\\012\\013\\014\\015\\016\\017\\020\\021\\022\\023\\024\\025\\026\\027\\030\\031\\032\\033\\034\\035\\036\\037\"\nchar **\nprepare_spawn (char **argv)\n{\n  size_t argc;\n  char **new_argv;\n  size_t i;\n\n  /* Count number of arguments.  */\n  for (argc = 0; argv[argc] != NULL; argc++)\n    ;\n\n  /* Allocate new argument vector.  */\n  new_argv = XMALLOC (char *, argc + 1);\n\n  /* Put quoted arguments into the new argument vector.  */\n  for (i = 0; i < argc; i++)\n    {\n      const char *string = argv[i];\n\n      if (string[0] == '\\0')\n\tnew_argv[i] = xstrdup (\"\\\"\\\"\");\n      else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)\n\t{\n\t  int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);\n\t  size_t length;\n\t  unsigned int backslashes;\n\t  const char *s;\n\t  char *quoted_string;\n\t  char *p;\n\n\t  length = 0;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    length++;\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\tlength += backslashes + 1;\n\t      length++;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    length += backslashes + 1;\n\n\t  quoted_string = XMALLOC (char, length + 1);\n\n\t  p = quoted_string;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    *p++ = '\"';\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\t{\n\t\t  unsigned int j;\n\t\t  for (j = backslashes + 1; j > 0; j--)\n\t\t    *p++ = '\\\\';\n\t\t}\n\t      *p++ = c;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    {\n\t      unsigned int j;\n\t      for (j = backslashes; j > 0; j--)\n\t\t*p++ = '\\\\';\n\t      *p++ = '\"';\n\t    }\n\t  *p = '\\0';\n\n\t  new_argv[i] = quoted_string;\n\t}\n      else\n\tnew_argv[i] = (char *) string;\n    }\n  new_argv[argc] = NULL;\n\n  return new_argv;\n}\nEOF\n\t\t;;\n\t    esac\n\n            cat <<\"EOF\"\nvoid lt_dump_script (FILE* f)\n{\nEOF\n\t    func_emit_wrapper yes |\n\t      $SED -n -e '\ns/^\\(.\\{79\\}\\)\\(..*\\)/\\1\\\n\\2/\nh\ns/\\([\\\\\"]\\)/\\\\\\1/g\ns/$/\\\\n/\ns/\\([^\\n]*\\).*/  fputs (\"\\1\", f);/p\ng\nD'\n            cat <<\"EOF\"\n}\nEOF\n}\n# end: func_emit_cwrapperexe_src\n\n# func_win32_import_lib_p ARG\n# True if ARG is an import lib, as indicated by $file_magic_cmd\nfunc_win32_import_lib_p ()\n{\n    $debug_cmd\n\n    case `eval $file_magic_cmd \\\"\\$1\\\" 2>/dev/null | $SED -e 10q` in\n    *import*) : ;;\n    *) false ;;\n    esac\n}\n\n# func_suncc_cstd_abi\n# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!!\n# Several compiler flags select an ABI that is incompatible with the\n# Cstd library. Avoid specifying it if any are in CXXFLAGS.\nfunc_suncc_cstd_abi ()\n{\n    $debug_cmd\n\n    case \" $compile_command \" in\n    *\" -compat=g \"*|*\\ -std=c++[0-9][0-9]\\ *|*\" -library=stdcxx4 \"*|*\" -library=stlport4 \"*)\n      suncc_use_cstd_abi=no\n      ;;\n    *)\n      suncc_use_cstd_abi=yes\n      ;;\n    esac\n}\n\n# func_mode_link arg...\nfunc_mode_link ()\n{\n    $debug_cmd\n\n    case $host in\n    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n      # It is impossible to link a dll without this setting, and\n      # we shouldn't force the makefile maintainer to figure out\n      # what system we are compiling for in order to pass an extra\n      # flag for every libtool invocation.\n      # allow_undefined=no\n\n      # FIXME: Unfortunately, there are problems with the above when trying\n      # to make a dll that has undefined symbols, in which case not\n      # even a static library is built.  For now, we need to specify\n      # -no-undefined on the libtool link line when we can be certain\n      # that all symbols are satisfied, otherwise we get a static library.\n      allow_undefined=yes\n      ;;\n    *)\n      allow_undefined=yes\n      ;;\n    esac\n    libtool_args=$nonopt\n    base_compile=\"$nonopt $@\"\n    compile_command=$nonopt\n    finalize_command=$nonopt\n\n    compile_rpath=\n    finalize_rpath=\n    compile_shlibpath=\n    finalize_shlibpath=\n    convenience=\n    old_convenience=\n    deplibs=\n    old_deplibs=\n    compiler_flags=\n    linker_flags=\n    dllsearchpath=\n    lib_search_path=`pwd`\n    inst_prefix_dir=\n    new_inherited_linker_flags=\n\n    avoid_version=no\n    bindir=\n    dlfiles=\n    dlprefiles=\n    dlself=no\n    export_dynamic=no\n    export_symbols=\n    export_symbols_regex=\n    generated=\n    libobjs=\n    ltlibs=\n    module=no\n    no_install=no\n    objs=\n    os2dllname=\n    non_pic_objects=\n    precious_files_regex=\n    prefer_static_libs=no\n    preload=false\n    prev=\n    prevarg=\n    release=\n    rpath=\n    xrpath=\n    perm_rpath=\n    temp_rpath=\n    thread_safe=no\n    vinfo=\n    vinfo_number=no\n    weak_libs=\n    single_module=$wl-single_module\n    func_infer_tag $base_compile\n\n    # We need to know -static, to get the right output filenames.\n    for arg\n    do\n      case $arg in\n      -shared)\n\ttest yes != \"$build_libtool_libs\" \\\n\t  && func_fatal_configuration \"cannot build a shared library\"\n\tbuild_old_libs=no\n\tbreak\n\t;;\n      -all-static | -static | -static-libtool-libs)\n\tcase $arg in\n\t-all-static)\n\t  if test yes = \"$build_libtool_libs\" && test -z \"$link_static_flag\"; then\n\t    func_warning \"complete static linking is impossible in this configuration\"\n\t  fi\n\t  if test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\t-static)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=built\n\t  ;;\n\t-static-libtool-libs)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\tesac\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tbreak\n\t;;\n      esac\n    done\n\n    # See if our shared archives depend on static archives.\n    test -n \"$old_archive_from_new_cmds\" && build_old_libs=yes\n\n    # Go through the arguments, transforming them on the way.\n    while test \"$#\" -gt 0; do\n      arg=$1\n      shift\n      func_quote_for_eval \"$arg\"\n      qarg=$func_quote_for_eval_unquoted_result\n      func_append libtool_args \" $func_quote_for_eval_result\"\n\n      # If the previous option needs an argument, assign it.\n      if test -n \"$prev\"; then\n\tcase $prev in\n\toutput)\n\t  func_append compile_command \" @OUTPUT@\"\n\t  func_append finalize_command \" @OUTPUT@\"\n\t  ;;\n\tesac\n\n\tcase $prev in\n\tbindir)\n\t  bindir=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tdlfiles|dlprefiles)\n\t  $preload || {\n\t    # Add the symbol object into the linking commands.\n\t    func_append compile_command \" @SYMFILE@\"\n\t    func_append finalize_command \" @SYMFILE@\"\n\t    preload=:\n\t  }\n\t  case $arg in\n\t  *.la | *.lo) ;;  # We handle these cases below.\n\t  force)\n\t    if test no = \"$dlself\"; then\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  self)\n\t    if test dlprefiles = \"$prev\"; then\n\t      dlself=yes\n\t    elif test dlfiles = \"$prev\" && test yes != \"$dlopen_self\"; then\n\t      dlself=yes\n\t    else\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  *)\n\t    if test dlfiles = \"$prev\"; then\n\t      func_append dlfiles \" $arg\"\n\t    else\n\t      func_append dlprefiles \" $arg\"\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  esac\n\t  ;;\n\texpsyms)\n\t  export_symbols=$arg\n\t  test -f \"$arg\" \\\n\t    || func_fatal_error \"symbol file '$arg' does not exist\"\n\t  prev=\n\t  continue\n\t  ;;\n\texpsyms_regex)\n\t  export_symbols_regex=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tframework)\n\t  case $host in\n\t    *-*-darwin*)\n\t      case \"$deplibs \" in\n\t\t*\" $qarg.ltframework \"*) ;;\n\t\t*) func_append deplibs \" $qarg.ltframework\" # this is fixed later\n\t\t   ;;\n\t      esac\n\t      ;;\n\t  esac\n\t  prev=\n\t  continue\n\t  ;;\n\tinst_prefix)\n\t  inst_prefix_dir=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tmllvm)\n\t  # Clang does not use LLVM to link, so we can simply discard any\n\t  # '-mllvm $arg' options when doing the link step.\n\t  prev=\n\t  continue\n\t  ;;\n\tobjectlist)\n\t  if test -f \"$arg\"; then\n\t    save_arg=$arg\n\t    moreargs=\n\t    for fil in `cat \"$save_arg\"`\n\t    do\n#\t      func_append moreargs \" $fil\"\n\t      arg=$fil\n\t      # A libtool-controlled object.\n\n\t      # Check to see that this really is a libtool object.\n\t      if func_lalib_unsafe_p \"$arg\"; then\n\t\tpic_object=\n\t\tnon_pic_object=\n\n\t\t# Read the .lo file\n\t\tfunc_source \"$arg\"\n\n\t\tif test -z \"$pic_object\" ||\n\t\t   test -z \"$non_pic_object\" ||\n\t\t   test none = \"$pic_object\" &&\n\t\t   test none = \"$non_pic_object\"; then\n\t\t  func_fatal_error \"cannot find name of object for '$arg'\"\n\t\tfi\n\n\t\t# Extract subdirectory from the argument.\n\t\tfunc_dirname \"$arg\" \"/\" \"\"\n\t\txdir=$func_dirname_result\n\n\t\tif test none != \"$pic_object\"; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  pic_object=$xdir$pic_object\n\n\t\t  if test dlfiles = \"$prev\"; then\n\t\t    if test yes = \"$build_libtool_libs\" && test yes = \"$dlopen_support\"; then\n\t\t      func_append dlfiles \" $pic_object\"\n\t\t      prev=\n\t\t      continue\n\t\t    else\n\t\t      # If libtool objects are unsupported, then we need to preload.\n\t\t      prev=dlprefiles\n\t\t    fi\n\t\t  fi\n\n\t\t  # CHECK ME:  I think I busted this.  -Ossama\n\t\t  if test dlprefiles = \"$prev\"; then\n\t\t    # Preload the old-style object.\n\t\t    func_append dlprefiles \" $pic_object\"\n\t\t    prev=\n\t\t  fi\n\n\t\t  # A PIC object.\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  arg=$pic_object\n\t\tfi\n\n\t\t# Non-PIC object.\n\t\tif test none != \"$non_pic_object\"; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  non_pic_object=$xdir$non_pic_object\n\n\t\t  # A standard non-PIC object\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\t  if test -z \"$pic_object\" || test none = \"$pic_object\"; then\n\t\t    arg=$non_pic_object\n\t\t  fi\n\t\telse\n\t\t  # If the PIC object exists, use it instead.\n\t\t  # $xdir was prepended to $pic_object above.\n\t\t  non_pic_object=$pic_object\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\tfi\n\t      else\n\t\t# Only an error if not doing a dry-run.\n\t\tif $opt_dry_run; then\n\t\t  # Extract subdirectory from the argument.\n\t\t  func_dirname \"$arg\" \"/\" \"\"\n\t\t  xdir=$func_dirname_result\n\n\t\t  func_lo2o \"$arg\"\n\t\t  pic_object=$xdir$objdir/$func_lo2o_result\n\t\t  non_pic_object=$xdir$func_lo2o_result\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t        else\n\t\t  func_fatal_error \"'$arg' is not a valid libtool object\"\n\t\tfi\n\t      fi\n\t    done\n\t  else\n\t    func_fatal_error \"link input file '$arg' does not exist\"\n\t  fi\n\t  arg=$save_arg\n\t  prev=\n\t  continue\n\t  ;;\n\tos2dllname)\n\t  os2dllname=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tprecious_regex)\n\t  precious_files_regex=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\trelease)\n\t  release=-$arg\n\t  prev=\n\t  continue\n\t  ;;\n\trpath | xrpath)\n\t  # We need an absolute path.\n\t  case $arg in\n\t  [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t  *)\n\t    func_fatal_error \"only absolute run-paths are allowed\"\n\t    ;;\n\t  esac\n\t  if test rpath = \"$prev\"; then\n\t    case \"$rpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) func_append rpath \" $arg\" ;;\n\t    esac\n\t  else\n\t    case \"$xrpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) func_append xrpath \" $arg\" ;;\n\t    esac\n\t  fi\n\t  prev=\n\t  continue\n\t  ;;\n\tshrext)\n\t  shrext_cmds=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tweak)\n\t  func_append weak_libs \" $arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\txcclinker)\n\t  func_append linker_flags \" $qarg\"\n\t  func_append compiler_flags \" $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txcompiler)\n\t  func_append compiler_flags \" $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txlinker)\n\t  func_append linker_flags \" $qarg\"\n\t  func_append compiler_flags \" $wl$qarg\"\n\t  prev=\n\t  func_append compile_command \" $wl$qarg\"\n\t  func_append finalize_command \" $wl$qarg\"\n\t  continue\n\t  ;;\n\t*)\n\t  eval \"$prev=\\\"\\$arg\\\"\"\n\t  prev=\n\t  continue\n\t  ;;\n\tesac\n      fi # test -n \"$prev\"\n\n      prevarg=$arg\n\n      case $arg in\n      -all-static)\n\tif test -n \"$link_static_flag\"; then\n\t  # See comment for -static flag below, for more details.\n\t  func_append compile_command \" $link_static_flag\"\n\t  func_append finalize_command \" $link_static_flag\"\n\tfi\n\tcontinue\n\t;;\n\n      -allow-undefined)\n\t# FIXME: remove this flag sometime in the future.\n\tfunc_fatal_error \"'-allow-undefined' must not be used because it is the default\"\n\t;;\n\n      -avoid-version)\n\tavoid_version=yes\n\tcontinue\n\t;;\n\n      -bindir)\n\tprev=bindir\n\tcontinue\n\t;;\n\n      -dlopen)\n\tprev=dlfiles\n\tcontinue\n\t;;\n\n      -dlpreopen)\n\tprev=dlprefiles\n\tcontinue\n\t;;\n\n      -export-dynamic)\n\texport_dynamic=yes\n\tcontinue\n\t;;\n\n      -export-symbols | -export-symbols-regex)\n\tif test -n \"$export_symbols\" || test -n \"$export_symbols_regex\"; then\n\t  func_fatal_error \"more than one -exported-symbols argument is not allowed\"\n\tfi\n\tif test X-export-symbols = \"X$arg\"; then\n\t  prev=expsyms\n\telse\n\t  prev=expsyms_regex\n\tfi\n\tcontinue\n\t;;\n\n      -framework)\n\tprev=framework\n\tcontinue\n\t;;\n\n      -inst-prefix-dir)\n\tprev=inst_prefix\n\tcontinue\n\t;;\n\n      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*\n      # so, if we see these flags be careful not to treat them like -L\n      -L[A-Z][A-Z]*:*)\n\tcase $with_gcc/$host in\n\tno/*-*-irix* | /*-*-irix*)\n\t  func_append compile_command \" $arg\"\n\t  func_append finalize_command \" $arg\"\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -L*)\n\tfunc_stripname \"-L\" '' \"$arg\"\n\tif test -z \"$func_stripname_result\"; then\n\t  if test \"$#\" -gt 0; then\n\t    func_fatal_error \"require no space between '-L' and '$1'\"\n\t  else\n\t    func_fatal_error \"need path for '-L' option\"\n\t  fi\n\tfi\n\tfunc_resolve_sysroot \"$func_stripname_result\"\n\tdir=$func_resolve_sysroot_result\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t*)\n\t  absdir=`cd \"$dir\" && pwd`\n\t  test -z \"$absdir\" && \\\n\t    func_fatal_error \"cannot determine absolute directory name of '$dir'\"\n\t  dir=$absdir\n\t  ;;\n\tesac\n\tcase \"$deplibs \" in\n\t*\" -L$dir \"* | *\" $arg \"*)\n\t  # Will only happen for absolute or sysroot arguments\n\t  ;;\n\t*)\n\t  # Preserve sysroot, but never include relative directories\n\t  case $dir in\n\t    [\\\\/]* | [A-Za-z]:[\\\\/]* | =*) func_append deplibs \" $arg\" ;;\n\t    *) func_append deplibs \" -L$dir\" ;;\n\t  esac\n\t  func_append lib_search_path \" $dir\"\n\t  ;;\n\tesac\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`$ECHO \"$dir\" | $SED 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$dir:\"*) ;;\n\t  ::) dllsearchpath=$dir;;\n\t  *) func_append dllsearchpath \":$dir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) func_append dllsearchpath \":$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -l*)\n\tif test X-lc = \"X$arg\" || test X-lm = \"X$arg\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # These systems don't actually have a C or math library (as such)\n\t    continue\n\t    ;;\n\t  *-*-os2*)\n\t    # These systems don't actually have a C library (as such)\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C and math libraries are in the System framework\n\t    func_append deplibs \" System.ltframework\"\n\t    continue\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  esac\n\telif test X-lc_r = \"X$arg\"; then\n\t case $host in\n\t *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)\n\t   # Do not include libc_r directly, use -pthread flag.\n\t   continue\n\t   ;;\n\t esac\n\tfi\n\tfunc_append deplibs \" $arg\"\n\tcontinue\n\t;;\n\n      -mllvm)\n\tprev=mllvm\n\tcontinue\n\t;;\n\n      -module)\n\tmodule=yes\n\tcontinue\n\t;;\n\n      # Tru64 UNIX uses -model [arg] to determine the layout of C++\n      # classes, name mangling, and exception handling.\n      # Darwin uses the -arch flag to determine output architecture.\n      -model|-arch|-isysroot|--sysroot)\n\tfunc_append compiler_flags \" $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \\\n      |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)\n\tfunc_append compiler_flags \" $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tcase \"$new_inherited_linker_flags \" in\n\t    *\" $arg \"*) ;;\n\t    * ) func_append new_inherited_linker_flags \" $arg\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -multi_module)\n\tsingle_module=$wl-multi_module\n\tcontinue\n\t;;\n\n      -no-fast-install)\n\tfast_install=no\n\tcontinue\n\t;;\n\n      -no-install)\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)\n\t  # The PATH hackery in wrapper scripts is required on Windows\n\t  # and Darwin in order for the loader to find any dlls it needs.\n\t  func_warning \"'-no-install' is ignored for $host\"\n\t  func_warning \"assuming '-no-fast-install' instead\"\n\t  fast_install=no\n\t  ;;\n\t*) no_install=yes ;;\n\tesac\n\tcontinue\n\t;;\n\n      -no-undefined)\n\tallow_undefined=no\n\tcontinue\n\t;;\n\n      -objectlist)\n\tprev=objectlist\n\tcontinue\n\t;;\n\n      -os2dllname)\n\tprev=os2dllname\n\tcontinue\n\t;;\n\n      -o) prev=output ;;\n\n      -precious-files-regex)\n\tprev=precious_regex\n\tcontinue\n\t;;\n\n      -release)\n\tprev=release\n\tcontinue\n\t;;\n\n      -rpath)\n\tprev=rpath\n\tcontinue\n\t;;\n\n      -R)\n\tprev=xrpath\n\tcontinue\n\t;;\n\n      -R*)\n\tfunc_stripname '-R' '' \"$arg\"\n\tdir=$func_stripname_result\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t=*)\n\t  func_stripname '=' '' \"$dir\"\n\t  dir=$lt_sysroot$func_stripname_result\n\t  ;;\n\t*)\n\t  func_fatal_error \"only absolute run-paths are allowed\"\n\t  ;;\n\tesac\n\tcase \"$xrpath \" in\n\t*\" $dir \"*) ;;\n\t*) func_append xrpath \" $dir\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -shared)\n\t# The effects of -shared are defined in a previous loop.\n\tcontinue\n\t;;\n\n      -shrext)\n\tprev=shrext\n\tcontinue\n\t;;\n\n      -static | -static-libtool-libs)\n\t# The effects of -static are defined in a previous loop.\n\t# We used to do the same as -all-static on platforms that\n\t# didn't have a PIC flag, but the assumption that the effects\n\t# would be equivalent was wrong.  It would break on at least\n\t# Digital Unix and AIX.\n\tcontinue\n\t;;\n\n      -thread-safe)\n\tthread_safe=yes\n\tcontinue\n\t;;\n\n      -version-info)\n\tprev=vinfo\n\tcontinue\n\t;;\n\n      -version-number)\n\tprev=vinfo\n\tvinfo_number=yes\n\tcontinue\n\t;;\n\n      -weak)\n        prev=weak\n\tcontinue\n\t;;\n\n      -Wc,*)\n\tfunc_stripname '-Wc,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=$IFS; IFS=,\n\tfor flag in $args; do\n\t  IFS=$save_ifs\n          func_quote_for_eval \"$flag\"\n\t  func_append arg \" $func_quote_for_eval_result\"\n\t  func_append compiler_flags \" $func_quote_for_eval_result\"\n\tdone\n\tIFS=$save_ifs\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Wl,*)\n\tfunc_stripname '-Wl,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=$IFS; IFS=,\n\tfor flag in $args; do\n\t  IFS=$save_ifs\n          func_quote_for_eval \"$flag\"\n\t  func_append arg \" $wl$func_quote_for_eval_result\"\n\t  func_append compiler_flags \" $wl$func_quote_for_eval_result\"\n\t  func_append linker_flags \" $func_quote_for_eval_result\"\n\tdone\n\tIFS=$save_ifs\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Xcompiler)\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -Xlinker)\n\tprev=xlinker\n\tcontinue\n\t;;\n\n      -XCClinker)\n\tprev=xcclinker\n\tcontinue\n\t;;\n\n      # -msg_* for osf cc\n      -msg_*)\n\tfunc_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n\n      # Flags to be passed through unchanged, with rationale:\n      # -64, -mips[0-9]      enable 64-bit mode for the SGI compiler\n      # -r[0-9][0-9]*        specify processor for the SGI compiler\n      # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler\n      # +DA*, +DD*           enable 64-bit mode for the HP compiler\n      # -q*                  compiler args for the IBM compiler\n      # -m*, -t[45]*, -txscale* architecture-specific flags for GCC\n      # -F/path              path to uninstalled frameworks, gcc on darwin\n      # -p, -pg, --coverage, -fprofile-*  profiling flags for GCC\n      # -fstack-protector*   stack protector flags for GCC\n      # @file                GCC response files\n      # -tp=*                Portland pgcc target processor selection\n      # --sysroot=*          for sysroot support\n      # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization\n      # -stdlib=*            select c++ std lib with clang\n      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \\\n      -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \\\n      -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*)\n        func_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n        func_append compile_command \" $arg\"\n        func_append finalize_command \" $arg\"\n        func_append compiler_flags \" $arg\"\n        continue\n        ;;\n\n      -Z*)\n        if test os2 = \"`expr $host : '.*\\(os2\\)'`\"; then\n          # OS/2 uses -Zxxx to specify OS/2-specific options\n\t  compiler_flags=\"$compiler_flags $arg\"\n\t  func_append compile_command \" $arg\"\n\t  func_append finalize_command \" $arg\"\n\t  case $arg in\n\t  -Zlinker | -Zstack)\n\t    prev=xcompiler\n\t    ;;\n\t  esac\n\t  continue\n        else\n\t  # Otherwise treat like 'Some other compiler flag' below\n\t  func_quote_for_eval \"$arg\"\n\t  arg=$func_quote_for_eval_result\n        fi\n\t;;\n\n      # Some other compiler flag.\n      -* | +*)\n        func_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n\n      *.$objext)\n\t# A standard object.\n\tfunc_append objs \" $arg\"\n\t;;\n\n      *.lo)\n\t# A libtool-controlled object.\n\n\t# Check to see that this really is a libtool object.\n\tif func_lalib_unsafe_p \"$arg\"; then\n\t  pic_object=\n\t  non_pic_object=\n\n\t  # Read the .lo file\n\t  func_source \"$arg\"\n\n\t  if test -z \"$pic_object\" ||\n\t     test -z \"$non_pic_object\" ||\n\t     test none = \"$pic_object\" &&\n\t     test none = \"$non_pic_object\"; then\n\t    func_fatal_error \"cannot find name of object for '$arg'\"\n\t  fi\n\n\t  # Extract subdirectory from the argument.\n\t  func_dirname \"$arg\" \"/\" \"\"\n\t  xdir=$func_dirname_result\n\n\t  test none = \"$pic_object\" || {\n\t    # Prepend the subdirectory the object is found in.\n\t    pic_object=$xdir$pic_object\n\n\t    if test dlfiles = \"$prev\"; then\n\t      if test yes = \"$build_libtool_libs\" && test yes = \"$dlopen_support\"; then\n\t\tfunc_append dlfiles \" $pic_object\"\n\t\tprev=\n\t\tcontinue\n\t      else\n\t\t# If libtool objects are unsupported, then we need to preload.\n\t\tprev=dlprefiles\n\t      fi\n\t    fi\n\n\t    # CHECK ME:  I think I busted this.  -Ossama\n\t    if test dlprefiles = \"$prev\"; then\n\t      # Preload the old-style object.\n\t      func_append dlprefiles \" $pic_object\"\n\t      prev=\n\t    fi\n\n\t    # A PIC object.\n\t    func_append libobjs \" $pic_object\"\n\t    arg=$pic_object\n\t  }\n\n\t  # Non-PIC object.\n\t  if test none != \"$non_pic_object\"; then\n\t    # Prepend the subdirectory the object is found in.\n\t    non_pic_object=$xdir$non_pic_object\n\n\t    # A standard non-PIC object\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t    if test -z \"$pic_object\" || test none = \"$pic_object\"; then\n\t      arg=$non_pic_object\n\t    fi\n\t  else\n\t    # If the PIC object exists, use it instead.\n\t    # $xdir was prepended to $pic_object above.\n\t    non_pic_object=$pic_object\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  fi\n\telse\n\t  # Only an error if not doing a dry-run.\n\t  if $opt_dry_run; then\n\t    # Extract subdirectory from the argument.\n\t    func_dirname \"$arg\" \"/\" \"\"\n\t    xdir=$func_dirname_result\n\n\t    func_lo2o \"$arg\"\n\t    pic_object=$xdir$objdir/$func_lo2o_result\n\t    non_pic_object=$xdir$func_lo2o_result\n\t    func_append libobjs \" $pic_object\"\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  else\n\t    func_fatal_error \"'$arg' is not a valid libtool object\"\n\t  fi\n\tfi\n\t;;\n\n      *.$libext)\n\t# An archive.\n\tfunc_append deplibs \" $arg\"\n\tfunc_append old_deplibs \" $arg\"\n\tcontinue\n\t;;\n\n      *.la)\n\t# A libtool-controlled library.\n\n\tfunc_resolve_sysroot \"$arg\"\n\tif test dlfiles = \"$prev\"; then\n\t  # This library was specified with -dlopen.\n\t  func_append dlfiles \" $func_resolve_sysroot_result\"\n\t  prev=\n\telif test dlprefiles = \"$prev\"; then\n\t  # The library was specified with -dlpreopen.\n\t  func_append dlprefiles \" $func_resolve_sysroot_result\"\n\t  prev=\n\telse\n\t  func_append deplibs \" $func_resolve_sysroot_result\"\n\tfi\n\tcontinue\n\t;;\n\n      # Some other compiler argument.\n      *)\n\t# Unknown arguments in both finalize_command and compile_command need\n\t# to be aesthetically quoted because they are evaled later.\n\tfunc_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n      esac # arg\n\n      # Now actually substitute the argument into the commands.\n      if test -n \"$arg\"; then\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n      fi\n    done # argument parsing loop\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the '$prevarg' option requires an argument\"\n\n    if test yes = \"$export_dynamic\" && test -n \"$export_dynamic_flag_spec\"; then\n      eval arg=\\\"$export_dynamic_flag_spec\\\"\n      func_append compile_command \" $arg\"\n      func_append finalize_command \" $arg\"\n    fi\n\n    oldlibs=\n    # calculate the name of the file, without its directory\n    func_basename \"$output\"\n    outputname=$func_basename_result\n    libobjs_save=$libobjs\n\n    if test -n \"$shlibpath_var\"; then\n      # get the directories listed in $shlibpath_var\n      eval shlib_search_path=\\`\\$ECHO \\\"\\$$shlibpath_var\\\" \\| \\$SED \\'s/:/ /g\\'\\`\n    else\n      shlib_search_path=\n    fi\n    eval sys_lib_search_path=\\\"$sys_lib_search_path_spec\\\"\n    eval sys_lib_dlsearch_path=\\\"$sys_lib_dlsearch_path_spec\\\"\n\n    # Definition is injected by LT_CONFIG during libtool generation.\n    func_munge_path_list sys_lib_dlsearch_path \"$LT_SYS_LIBRARY_PATH\"\n\n    func_dirname \"$output\" \"/\" \"\"\n    output_objdir=$func_dirname_result$objdir\n    func_to_tool_file \"$output_objdir/\"\n    tool_output_objdir=$func_to_tool_file_result\n    # Create the object directory.\n    func_mkdir_p \"$output_objdir\"\n\n    # Determine the type of output\n    case $output in\n    \"\")\n      func_fatal_help \"you must specify an output file\"\n      ;;\n    *.$libext) linkmode=oldlib ;;\n    *.lo | *.$objext) linkmode=obj ;;\n    *.la) linkmode=lib ;;\n    *) linkmode=prog ;; # Anything else should be a program.\n    esac\n\n    specialdeplibs=\n\n    libs=\n    # Find all interdependent deplibs by searching for libraries\n    # that are linked more than once (e.g. -la -lb -la)\n    for deplib in $deplibs; do\n      if $opt_preserve_dup_deps; then\n\tcase \"$libs \" in\n\t*\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\tesac\n      fi\n      func_append libs \" $deplib\"\n    done\n\n    if test lib = \"$linkmode\"; then\n      libs=\"$predeps $libs $compiler_lib_search_path $postdeps\"\n\n      # Compute libraries that are listed more than once in $predeps\n      # $postdeps and mark them as special (i.e., whose duplicates are\n      # not to be eliminated).\n      pre_post_deps=\n      if $opt_duplicate_compiler_generated_deps; then\n\tfor pre_post_dep in $predeps $postdeps; do\n\t  case \"$pre_post_deps \" in\n\t  *\" $pre_post_dep \"*) func_append specialdeplibs \" $pre_post_deps\" ;;\n\t  esac\n\t  func_append pre_post_deps \" $pre_post_dep\"\n\tdone\n      fi\n      pre_post_deps=\n    fi\n\n    deplibs=\n    newdependency_libs=\n    newlib_search_path=\n    need_relink=no # whether we're linking any uninstalled libtool libraries\n    notinst_deplibs= # not-installed libtool libraries\n    notinst_path= # paths that contain not-installed libtool libraries\n\n    case $linkmode in\n    lib)\n\tpasses=\"conv dlpreopen link\"\n\tfor file in $dlfiles $dlprefiles; do\n\t  case $file in\n\t  *.la) ;;\n\t  *)\n\t    func_fatal_help \"libraries can '-dlopen' only libtool libraries: $file\"\n\t    ;;\n\t  esac\n\tdone\n\t;;\n    prog)\n\tcompile_deplibs=\n\tfinalize_deplibs=\n\talldeplibs=false\n\tnewdlfiles=\n\tnewdlprefiles=\n\tpasses=\"conv scan dlopen dlpreopen link\"\n\t;;\n    *)  passes=\"conv\"\n\t;;\n    esac\n\n    for pass in $passes; do\n      # The preopen pass in lib mode reverses $deplibs; put it back here\n      # so that -L comes before libs that need it for instance...\n      if test lib,link = \"$linkmode,$pass\"; then\n\t## FIXME: Find the place where the list is rebuilt in the wrong\n\t##        order, and fix it there properly\n        tmp_deplibs=\n\tfor deplib in $deplibs; do\n\t  tmp_deplibs=\"$deplib $tmp_deplibs\"\n\tdone\n\tdeplibs=$tmp_deplibs\n      fi\n\n      if test lib,link = \"$linkmode,$pass\" ||\n\t test prog,scan = \"$linkmode,$pass\"; then\n\tlibs=$deplibs\n\tdeplibs=\n      fi\n      if test prog = \"$linkmode\"; then\n\tcase $pass in\n\tdlopen) libs=$dlfiles ;;\n\tdlpreopen) libs=$dlprefiles ;;\n\tlink) libs=\"$deplibs %DEPLIBS% $dependency_libs\" ;;\n\tesac\n      fi\n      if test lib,dlpreopen = \"$linkmode,$pass\"; then\n\t# Collect and forward deplibs of preopened libtool libs\n\tfor lib in $dlprefiles; do\n\t  # Ignore non-libtool-libs\n\t  dependency_libs=\n\t  func_resolve_sysroot \"$lib\"\n\t  case $lib in\n\t  *.la)\tfunc_source \"$func_resolve_sysroot_result\" ;;\n\t  esac\n\n\t  # Collect preopened libtool deplibs, except any this library\n\t  # has declared as weak libs\n\t  for deplib in $dependency_libs; do\n\t    func_basename \"$deplib\"\n            deplib_base=$func_basename_result\n\t    case \" $weak_libs \" in\n\t    *\" $deplib_base \"*) ;;\n\t    *) func_append deplibs \" $deplib\" ;;\n\t    esac\n\t  done\n\tdone\n\tlibs=$dlprefiles\n      fi\n      if test dlopen = \"$pass\"; then\n\t# Collect dlpreopened libraries\n\tsave_deplibs=$deplibs\n\tdeplibs=\n      fi\n\n      for deplib in $libs; do\n\tlib=\n\tfound=false\n\tcase $deplib in\n\t-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \\\n        |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)\n\t  if test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    func_append compiler_flags \" $deplib\"\n\t    if test lib = \"$linkmode\"; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) func_append new_inherited_linker_flags \" $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-l*)\n\t  if test lib != \"$linkmode\" && test prog != \"$linkmode\"; then\n\t    func_warning \"'-l' is ignored for archives/objects\"\n\t    continue\n\t  fi\n\t  func_stripname '-l' '' \"$deplib\"\n\t  name=$func_stripname_result\n\t  if test lib = \"$linkmode\"; then\n\t    searchdirs=\"$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path\"\n\t  else\n\t    searchdirs=\"$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path\"\n\t  fi\n\t  for searchdir in $searchdirs; do\n\t    for search_ext in .la $std_shrext .so .a; do\n\t      # Search the libtool library\n\t      lib=$searchdir/lib$name$search_ext\n\t      if test -f \"$lib\"; then\n\t\tif test .la = \"$search_ext\"; then\n\t\t  found=:\n\t\telse\n\t\t  found=false\n\t\tfi\n\t\tbreak 2\n\t      fi\n\t    done\n\t  done\n\t  if $found; then\n\t    # deplib is a libtool library\n\t    # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,\n\t    # We need to do some special things here, and not later.\n\t    if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t      case \" $predeps $postdeps \" in\n\t      *\" $deplib \"*)\n\t\tif func_lalib_p \"$lib\"; then\n\t\t  library_names=\n\t\t  old_library=\n\t\t  func_source \"$lib\"\n\t\t  for l in $old_library $library_names; do\n\t\t    ll=$l\n\t\t  done\n\t\t  if test \"X$ll\" = \"X$old_library\"; then # only static version available\n\t\t    found=false\n\t\t    func_dirname \"$lib\" \"\" \".\"\n\t\t    ladir=$func_dirname_result\n\t\t    lib=$ladir/$old_library\n\t\t    if test prog,link = \"$linkmode,$pass\"; then\n\t\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t\t    else\n\t\t      deplibs=\"$deplib $deplibs\"\n\t\t      test lib = \"$linkmode\" && newdependency_libs=\"$deplib $newdependency_libs\"\n\t\t    fi\n\t\t    continue\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *) ;;\n\t      esac\n\t    fi\n\t  else\n\t    # deplib doesn't seem to be a libtool library\n\t    if test prog,link = \"$linkmode,$pass\"; then\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      deplibs=\"$deplib $deplibs\"\n\t      test lib = \"$linkmode\" && newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    continue\n\t  fi\n\t  ;; # -l\n\t*.ltframework)\n\t  if test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$deplib $deplibs\"\n\t    if test lib = \"$linkmode\"; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) func_append new_inherited_linker_flags \" $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-L*)\n\t  case $linkmode in\n\t  lib)\n\t    deplibs=\"$deplib $deplibs\"\n\t    test conv = \"$pass\" && continue\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    func_stripname '-L' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t    ;;\n\t  prog)\n\t    if test conv = \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t      continue\n\t    fi\n\t    if test scan = \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    func_stripname '-L' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t    ;;\n\t  *)\n\t    func_warning \"'-L' is ignored for archives/objects\"\n\t    ;;\n\t  esac # linkmode\n\t  continue\n\t  ;; # -L\n\t-R*)\n\t  if test link = \"$pass\"; then\n\t    func_stripname '-R' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    dir=$func_resolve_sysroot_result\n\t    # Make sure the xrpath contains only unique directories.\n\t    case \"$xrpath \" in\n\t    *\" $dir \"*) ;;\n\t    *) func_append xrpath \" $dir\" ;;\n\t    esac\n\t  fi\n\t  deplibs=\"$deplib $deplibs\"\n\t  continue\n\t  ;;\n\t*.la)\n\t  func_resolve_sysroot \"$deplib\"\n\t  lib=$func_resolve_sysroot_result\n\t  ;;\n\t*.$libext)\n\t  if test conv = \"$pass\"; then\n\t    deplibs=\"$deplib $deplibs\"\n\t    continue\n\t  fi\n\t  case $linkmode in\n\t  lib)\n\t    # Linking convenience modules into shared libraries is allowed,\n\t    # but linking other static libraries is non-portable.\n\t    case \" $dlpreconveniencelibs \" in\n\t    *\" $deplib \"*) ;;\n\t    *)\n\t      valid_a_lib=false\n\t      case $deplibs_check_method in\n\t\tmatch_pattern*)\n\t\t  set dummy $deplibs_check_method; shift\n\t\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t\t  if eval \"\\$ECHO \\\"$deplib\\\"\" 2>/dev/null | $SED 10q \\\n\t\t    | $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t    valid_a_lib=:\n\t\t  fi\n\t\t;;\n\t\tpass_all)\n\t\t  valid_a_lib=:\n\t\t;;\n\t      esac\n\t      if $valid_a_lib; then\n\t\techo\n\t\t$ECHO \"*** Warning: Linking the shared library $output against the\"\n\t\t$ECHO \"*** static library $deplib is not portable!\"\n\t\tdeplibs=\"$deplib $deplibs\"\n\t      else\n\t\techo\n\t\t$ECHO \"*** Warning: Trying to link with static lib archive $deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because the file extensions .$libext of this argument makes me believe\"\n\t\techo \"*** that it is just a static archive that I should not use here.\"\n\t      fi\n\t      ;;\n\t    esac\n\t    continue\n\t    ;;\n\t  prog)\n\t    if test link != \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    continue\n\t    ;;\n\t  esac # linkmode\n\t  ;; # *.$libext\n\t*.lo | *.$objext)\n\t  if test conv = \"$pass\"; then\n\t    deplibs=\"$deplib $deplibs\"\n\t  elif test prog = \"$linkmode\"; then\n\t    if test dlpreopen = \"$pass\" || test yes != \"$dlopen_support\" || test no = \"$build_libtool_libs\"; then\n\t      # If there is no dlopen support or we're linking statically,\n\t      # we need to preload.\n\t      func_append newdlprefiles \" $deplib\"\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      func_append newdlfiles \" $deplib\"\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t%DEPLIBS%)\n\t  alldeplibs=:\n\t  continue\n\t  ;;\n\tesac # case $deplib\n\n\t$found || test -f \"$lib\" \\\n\t  || func_fatal_error \"cannot find the library '$lib' or unhandled argument '$deplib'\"\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$lib\" \\\n\t  || func_fatal_error \"'$lib' is not a valid libtool archive\"\n\n\tfunc_dirname \"$lib\" \"\" \".\"\n\tladir=$func_dirname_result\n\n\tdlname=\n\tdlopen=\n\tdlpreopen=\n\tlibdir=\n\tlibrary_names=\n\told_library=\n\tinherited_linker_flags=\n\t# If the library was installed with an old release of libtool,\n\t# it will not redefine variables installed, or shouldnotlink\n\tinstalled=yes\n\tshouldnotlink=no\n\tavoidtemprpath=\n\n\n\t# Read the .la file\n\tfunc_source \"$lib\"\n\n\t# Convert \"-framework foo\" to \"foo.ltframework\"\n\tif test -n \"$inherited_linker_flags\"; then\n\t  tmp_inherited_linker_flags=`$ECHO \"$inherited_linker_flags\" | $SED 's/-framework \\([^ $]*\\)/\\1.ltframework/g'`\n\t  for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do\n\t    case \" $new_inherited_linker_flags \" in\n\t      *\" $tmp_inherited_linker_flag \"*) ;;\n\t      *) func_append new_inherited_linker_flags \" $tmp_inherited_linker_flag\";;\n\t    esac\n\t  done\n\tfi\n\tdependency_libs=`$ECHO \" $dependency_libs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tif test lib,link = \"$linkmode,$pass\" ||\n\t   test prog,scan = \"$linkmode,$pass\" ||\n\t   { test prog != \"$linkmode\" && test lib != \"$linkmode\"; }; then\n\t  test -n \"$dlopen\" && func_append dlfiles \" $dlopen\"\n\t  test -n \"$dlpreopen\" && func_append dlprefiles \" $dlpreopen\"\n\tfi\n\n\tif test conv = \"$pass\"; then\n\t  # Only check for convenience libraries\n\t  deplibs=\"$lib $deplibs\"\n\t  if test -z \"$libdir\"; then\n\t    if test -z \"$old_library\"; then\n\t      func_fatal_error \"cannot find name of link library for '$lib'\"\n\t    fi\n\t    # It is a libtool convenience library, so add in its objects.\n\t    func_append convenience \" $ladir/$objdir/$old_library\"\n\t    func_append old_convenience \" $ladir/$objdir/$old_library\"\n\t  elif test prog != \"$linkmode\" && test lib != \"$linkmode\"; then\n\t    func_fatal_error \"'$lib' is not a convenience library\"\n\t  fi\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    deplibs=\"$deplib $deplibs\"\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $deplib\"\n\t  done\n\t  continue\n\tfi # $pass = conv\n\n\n\t# Get the name of the library we link against.\n\tlinklib=\n\tif test -n \"$old_library\" &&\n\t   { test yes = \"$prefer_static_libs\" ||\n\t     test built,no = \"$prefer_static_libs,$installed\"; }; then\n\t  linklib=$old_library\n\telse\n\t  for l in $old_library $library_names; do\n\t    linklib=$l\n\t  done\n\tfi\n\tif test -z \"$linklib\"; then\n\t  func_fatal_error \"cannot find name of link library for '$lib'\"\n\tfi\n\n\t# This library was specified with -dlopen.\n\tif test dlopen = \"$pass\"; then\n\t  test -z \"$libdir\" \\\n\t    && func_fatal_error \"cannot -dlopen a convenience library: '$lib'\"\n\t  if test -z \"$dlname\" ||\n\t     test yes != \"$dlopen_support\" ||\n\t     test no = \"$build_libtool_libs\"\n\t  then\n\t    # If there is no dlname, no dlopen support or we're linking\n\t    # statically, we need to preload.  We also need to preload any\n\t    # dependent libraries so libltdl's deplib preloader doesn't\n\t    # bomb out in the load deplibs phase.\n\t    func_append dlprefiles \" $lib $dependency_libs\"\n\t  else\n\t    func_append newdlfiles \" $lib\"\n\t  fi\n\t  continue\n\tfi # $pass = dlopen\n\n\t# We need an absolute path.\n\tcase $ladir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs_ladir=$ladir ;;\n\t*)\n\t  abs_ladir=`cd \"$ladir\" && pwd`\n\t  if test -z \"$abs_ladir\"; then\n\t    func_warning \"cannot determine absolute directory name of '$ladir'\"\n\t    func_warning \"passing it literally to the linker, although it might fail\"\n\t    abs_ladir=$ladir\n\t  fi\n\t  ;;\n\tesac\n\tfunc_basename \"$lib\"\n\tlaname=$func_basename_result\n\n\t# Find the relevant object directory and library name.\n\tif test yes = \"$installed\"; then\n\t  if test ! -f \"$lt_sysroot$libdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    func_warning \"library '$lib' was moved.\"\n\t    dir=$ladir\n\t    absdir=$abs_ladir\n\t    libdir=$abs_ladir\n\t  else\n\t    dir=$lt_sysroot$libdir\n\t    absdir=$lt_sysroot$libdir\n\t  fi\n\t  test yes = \"$hardcode_automatic\" && avoidtemprpath=yes\n\telse\n\t  if test ! -f \"$ladir/$objdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    dir=$ladir\n\t    absdir=$abs_ladir\n\t    # Remove this search path later\n\t    func_append notinst_path \" $abs_ladir\"\n\t  else\n\t    dir=$ladir/$objdir\n\t    absdir=$abs_ladir/$objdir\n\t    # Remove this search path later\n\t    func_append notinst_path \" $abs_ladir\"\n\t  fi\n\tfi # $installed = yes\n\tfunc_stripname 'lib' '.la' \"$laname\"\n\tname=$func_stripname_result\n\n\t# This library was specified with -dlpreopen.\n\tif test dlpreopen = \"$pass\"; then\n\t  if test -z \"$libdir\" && test prog = \"$linkmode\"; then\n\t    func_fatal_error \"only libraries may -dlpreopen a convenience library: '$lib'\"\n\t  fi\n\t  case $host in\n\t    # special handling for platforms with PE-DLLs.\n\t    *cygwin* | *mingw* | *cegcc* )\n\t      # Linker will automatically link against shared library if both\n\t      # static and shared are present.  Therefore, ensure we extract\n\t      # symbols from the import library if a shared library is present\n\t      # (otherwise, the dlopen module name will be incorrect).  We do\n\t      # this by putting the import library name into $newdlprefiles.\n\t      # We recover the dlopen module name by 'saving' the la file\n\t      # name in a special purpose variable, and (later) extracting the\n\t      # dlname from the la file.\n\t      if test -n \"$dlname\"; then\n\t        func_tr_sh \"$dir/$linklib\"\n\t        eval \"libfile_$func_tr_sh_result=\\$abs_ladir/\\$laname\"\n\t        func_append newdlprefiles \" $dir/$linklib\"\n\t      else\n\t        func_append newdlprefiles \" $dir/$old_library\"\n\t        # Keep a list of preopened convenience libraries to check\n\t        # that they are being used correctly in the link pass.\n\t        test -z \"$libdir\" && \\\n\t          func_append dlpreconveniencelibs \" $dir/$old_library\"\n\t      fi\n\t    ;;\n\t    * )\n\t      # Prefer using a static library (so that no silly _DYNAMIC symbols\n\t      # are required to link).\n\t      if test -n \"$old_library\"; then\n\t        func_append newdlprefiles \" $dir/$old_library\"\n\t        # Keep a list of preopened convenience libraries to check\n\t        # that they are being used correctly in the link pass.\n\t        test -z \"$libdir\" && \\\n\t          func_append dlpreconveniencelibs \" $dir/$old_library\"\n\t      # Otherwise, use the dlname, so that lt_dlopen finds it.\n\t      elif test -n \"$dlname\"; then\n\t        func_append newdlprefiles \" $dir/$dlname\"\n\t      else\n\t        func_append newdlprefiles \" $dir/$linklib\"\n\t      fi\n\t    ;;\n\t  esac\n\tfi # $pass = dlpreopen\n\n\tif test -z \"$libdir\"; then\n\t  # Link the convenience library\n\t  if test lib = \"$linkmode\"; then\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t  elif test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$dir/$old_library $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$old_library $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$lib $deplibs\" # used for prog,scan pass\n\t  fi\n\t  continue\n\tfi\n\n\n\tif test prog = \"$linkmode\" && test link != \"$pass\"; then\n\t  func_append newlib_search_path \" $ladir\"\n\t  deplibs=\"$lib $deplibs\"\n\n\t  linkalldeplibs=false\n\t  if test no != \"$link_all_deplibs\" || test -z \"$library_names\" ||\n\t     test no = \"$build_libtool_libs\"; then\n\t    linkalldeplibs=:\n\t  fi\n\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    case $deplib in\n\t    -L*) func_stripname '-L' '' \"$deplib\"\n\t         func_resolve_sysroot \"$func_stripname_result\"\n\t         func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t\t ;;\n\t    esac\n\t    # Need to link against all dependency_libs?\n\t    if $linkalldeplibs; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      # Need to hardcode shared library paths\n\t      # or/and link against static libraries\n\t      newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $deplib\"\n\t  done # for deplib\n\t  continue\n\tfi # $linkmode = prog...\n\n\tif test prog,link = \"$linkmode,$pass\"; then\n\t  if test -n \"$library_names\" &&\n\t     { { test no = \"$prefer_static_libs\" ||\n\t         test built,yes = \"$prefer_static_libs,$installed\"; } ||\n\t       test -z \"$old_library\"; }; then\n\t    # We need to hardcode the library path\n\t    if test -n \"$shlibpath_var\" && test -z \"$avoidtemprpath\"; then\n\t      # Make sure the rpath contains only unique directories.\n\t      case $temp_rpath: in\n\t      *\"$absdir:\"*) ;;\n\t      *) func_append temp_rpath \"$absdir:\" ;;\n\t      esac\n\t    fi\n\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) func_append compile_rpath \" $absdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append finalize_rpath \" $libdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t  fi # $linkmode,$pass = prog,link...\n\n\t  if $alldeplibs &&\n\t     { test pass_all = \"$deplibs_check_method\" ||\n\t       { test yes = \"$build_libtool_libs\" &&\n\t\t test -n \"$library_names\"; }; }; then\n\t    # We only need to search for static libraries\n\t    continue\n\t  fi\n\tfi\n\n\tlink_static=no # Whether the deplib will be linked statically\n\tuse_static_libs=$prefer_static_libs\n\tif test built = \"$use_static_libs\" && test yes = \"$installed\"; then\n\t  use_static_libs=no\n\tfi\n\tif test -n \"$library_names\" &&\n\t   { test no = \"$use_static_libs\" || test -z \"$old_library\"; }; then\n\t  case $host in\n\t  *cygwin* | *mingw* | *cegcc* | *os2*)\n\t      # No point in relinking DLLs because paths are not encoded\n\t      func_append notinst_deplibs \" $lib\"\n\t      need_relink=no\n\t    ;;\n\t  *)\n\t    if test no = \"$installed\"; then\n\t      func_append notinst_deplibs \" $lib\"\n\t      need_relink=yes\n\t    fi\n\t    ;;\n\t  esac\n\t  # This is a shared library\n\n\t  # Warn about portability, can't link against -module's on some\n\t  # systems (darwin).  Don't bleat about dlopened modules though!\n\t  dlopenmodule=\n\t  for dlpremoduletest in $dlprefiles; do\n\t    if test \"X$dlpremoduletest\" = \"X$lib\"; then\n\t      dlopenmodule=$dlpremoduletest\n\t      break\n\t    fi\n\t  done\n\t  if test -z \"$dlopenmodule\" && test yes = \"$shouldnotlink\" && test link = \"$pass\"; then\n\t    echo\n\t    if test prog = \"$linkmode\"; then\n\t      $ECHO \"*** Warning: Linking the executable $output against the loadable module\"\n\t    else\n\t      $ECHO \"*** Warning: Linking the shared library $output against the loadable module\"\n\t    fi\n\t    $ECHO \"*** $linklib is not portable!\"\n\t  fi\n\t  if test lib = \"$linkmode\" &&\n\t     test yes = \"$hardcode_into_libs\"; then\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) func_append compile_rpath \" $absdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append finalize_rpath \" $libdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t  fi\n\n\t  if test -n \"$old_archive_from_expsyms_cmds\"; then\n\t    # figure out the soname\n\t    set dummy $library_names\n\t    shift\n\t    realname=$1\n\t    shift\n\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t    # use dlname if we got it. it's perfectly good, no?\n\t    if test -n \"$dlname\"; then\n\t      soname=$dlname\n\t    elif test -n \"$soname_spec\"; then\n\t      # bleh windows\n\t      case $host in\n\t      *cygwin* | mingw* | *cegcc* | *os2*)\n\t        func_arith $current - $age\n\t\tmajor=$func_arith_result\n\t\tversuffix=-$major\n\t\t;;\n\t      esac\n\t      eval soname=\\\"$soname_spec\\\"\n\t    else\n\t      soname=$realname\n\t    fi\n\n\t    # Make a new name for the extract_expsyms_cmds to use\n\t    soroot=$soname\n\t    func_basename \"$soroot\"\n\t    soname=$func_basename_result\n\t    func_stripname 'lib' '.dll' \"$soname\"\n\t    newlib=libimp-$func_stripname_result.a\n\n\t    # If the library has no export list, then create one now\n\t    if test -f \"$output_objdir/$soname-def\"; then :\n\t    else\n\t      func_verbose \"extracting exported symbol list from '$soname'\"\n\t      func_execute_cmds \"$extract_expsyms_cmds\" 'exit $?'\n\t    fi\n\n\t    # Create $newlib\n\t    if test -f \"$output_objdir/$newlib\"; then :; else\n\t      func_verbose \"generating import library for '$soname'\"\n\t      func_execute_cmds \"$old_archive_from_expsyms_cmds\" 'exit $?'\n\t    fi\n\t    # make sure the library variables are pointing to the new library\n\t    dir=$output_objdir\n\t    linklib=$newlib\n\t  fi # test -n \"$old_archive_from_expsyms_cmds\"\n\n\t  if test prog = \"$linkmode\" || test relink != \"$opt_mode\"; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    lib_linked=yes\n\t    case $hardcode_action in\n\t    immediate | unsupported)\n\t      if test no = \"$hardcode_direct\"; then\n\t\tadd=$dir/$linklib\n\t\tcase $host in\n\t\t  *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;;\n\t\t  *-*-sysv4*uw2*) add_dir=-L$dir ;;\n\t\t  *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \\\n\t\t    *-*-unixware7*) add_dir=-L$dir ;;\n\t\t  *-*-darwin* )\n\t\t    # if the lib is a (non-dlopened) module then we cannot\n\t\t    # link against it, someone is ignoring the earlier warnings\n\t\t    if /usr/bin/file -L $add 2> /dev/null |\n\t\t\t $GREP \": [^:]* bundle\" >/dev/null; then\n\t\t      if test \"X$dlopenmodule\" != \"X$lib\"; then\n\t\t\t$ECHO \"*** Warning: lib $linklib is a module, not a shared library\"\n\t\t\tif test -z \"$old_library\"; then\n\t\t\t  echo\n\t\t\t  echo \"*** And there doesn't seem to be a static archive available\"\n\t\t\t  echo \"*** The link will probably fail, sorry\"\n\t\t\telse\n\t\t\t  add=$dir/$old_library\n\t\t\tfi\n\t\t      elif test -n \"$old_library\"; then\n\t\t\tadd=$dir/$old_library\n\t\t      fi\n\t\t    fi\n\t\tesac\n\t      elif test no = \"$hardcode_minus_L\"; then\n\t\tcase $host in\n\t\t*-*-sunos*) add_shlibpath=$dir ;;\n\t\tesac\n\t\tadd_dir=-L$dir\n\t\tadd=-l$name\n\t      elif test no = \"$hardcode_shlibpath_var\"; then\n\t\tadd_shlibpath=$dir\n\t\tadd=-l$name\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    relink)\n\t      if test yes = \"$hardcode_direct\" &&\n\t         test no = \"$hardcode_direct_absolute\"; then\n\t\tadd=$dir/$linklib\n\t      elif test yes = \"$hardcode_minus_L\"; then\n\t\tadd_dir=-L$absdir\n\t\t# Try looking first in the location we're being installed to.\n\t\tif test -n \"$inst_prefix_dir\"; then\n\t\t  case $libdir in\n\t\t    [\\\\/]*)\n\t\t      func_append add_dir \" -L$inst_prefix_dir$libdir\"\n\t\t      ;;\n\t\t  esac\n\t\tfi\n\t\tadd=-l$name\n\t      elif test yes = \"$hardcode_shlibpath_var\"; then\n\t\tadd_shlibpath=$dir\n\t\tadd=-l$name\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    *) lib_linked=no ;;\n\t    esac\n\n\t    if test yes != \"$lib_linked\"; then\n\t      func_fatal_configuration \"unsupported hardcode properties\"\n\t    fi\n\n\t    if test -n \"$add_shlibpath\"; then\n\t      case :$compile_shlibpath: in\n\t      *\":$add_shlibpath:\"*) ;;\n\t      *) func_append compile_shlibpath \"$add_shlibpath:\" ;;\n\t      esac\n\t    fi\n\t    if test prog = \"$linkmode\"; then\n\t      test -n \"$add_dir\" && compile_deplibs=\"$add_dir $compile_deplibs\"\n\t      test -n \"$add\" && compile_deplibs=\"$add $compile_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t      if test yes != \"$hardcode_direct\" &&\n\t\t test yes != \"$hardcode_minus_L\" &&\n\t\t test yes = \"$hardcode_shlibpath_var\"; then\n\t\tcase :$finalize_shlibpath: in\n\t\t*\":$libdir:\"*) ;;\n\t\t*) func_append finalize_shlibpath \"$libdir:\" ;;\n\t\tesac\n\t      fi\n\t    fi\n\t  fi\n\n\t  if test prog = \"$linkmode\" || test relink = \"$opt_mode\"; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    # Finalize command for both is simple: just hardcode it.\n\t    if test yes = \"$hardcode_direct\" &&\n\t       test no = \"$hardcode_direct_absolute\"; then\n\t      add=$libdir/$linklib\n\t    elif test yes = \"$hardcode_minus_L\"; then\n\t      add_dir=-L$libdir\n\t      add=-l$name\n\t    elif test yes = \"$hardcode_shlibpath_var\"; then\n\t      case :$finalize_shlibpath: in\n\t      *\":$libdir:\"*) ;;\n\t      *) func_append finalize_shlibpath \"$libdir:\" ;;\n\t      esac\n\t      add=-l$name\n\t    elif test yes = \"$hardcode_automatic\"; then\n\t      if test -n \"$inst_prefix_dir\" &&\n\t\t test -f \"$inst_prefix_dir$libdir/$linklib\"; then\n\t\tadd=$inst_prefix_dir$libdir/$linklib\n\t      else\n\t\tadd=$libdir/$linklib\n\t      fi\n\t    else\n\t      # We cannot seem to hardcode it, guess we'll fake it.\n\t      add_dir=-L$libdir\n\t      # Try looking first in the location we're being installed to.\n\t      if test -n \"$inst_prefix_dir\"; then\n\t\tcase $libdir in\n\t\t  [\\\\/]*)\n\t\t    func_append add_dir \" -L$inst_prefix_dir$libdir\"\n\t\t    ;;\n\t\tesac\n\t      fi\n\t      add=-l$name\n\t    fi\n\n\t    if test prog = \"$linkmode\"; then\n\t      test -n \"$add_dir\" && finalize_deplibs=\"$add_dir $finalize_deplibs\"\n\t      test -n \"$add\" && finalize_deplibs=\"$add $finalize_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t    fi\n\t  fi\n\telif test prog = \"$linkmode\"; then\n\t  # Here we assume that one of hardcode_direct or hardcode_minus_L\n\t  # is not unsupported.  This is valid on all known static and\n\t  # shared platforms.\n\t  if test unsupported != \"$hardcode_direct\"; then\n\t    test -n \"$old_library\" && linklib=$old_library\n\t    compile_deplibs=\"$dir/$linklib $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$linklib $finalize_deplibs\"\n\t  else\n\t    compile_deplibs=\"-l$name -L$dir $compile_deplibs\"\n\t    finalize_deplibs=\"-l$name -L$dir $finalize_deplibs\"\n\t  fi\n\telif test yes = \"$build_libtool_libs\"; then\n\t  # Not a shared library\n\t  if test pass_all != \"$deplibs_check_method\"; then\n\t    # We're trying link a shared library against a static one\n\t    # but the system doesn't support it.\n\n\t    # Just print a warning and add the library to dependency_libs so\n\t    # that the program can be linked against the static library.\n\t    echo\n\t    $ECHO \"*** Warning: This system cannot link to static lib archive $lib.\"\n\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t    echo \"*** shared version of the library, which you do not appear to have.\"\n\t    if test yes = \"$module\"; then\n\t      echo \"*** But as you try to build a module library, libtool will still create \"\n\t      echo \"*** a static module, that should work as long as the dlopening application\"\n\t      echo \"*** is linked with the -dlopen flag to resolve symbols at runtime.\"\n\t      if test -z \"$global_symbol_pipe\"; then\n\t\techo\n\t\techo \"*** However, this would only work if libtool was able to extract symbol\"\n\t\techo \"*** lists from a program, using 'nm' or equivalent, but libtool could\"\n\t\techo \"*** not find such a program.  So, this module is probably useless.\"\n\t\techo \"*** 'nm' from GNU binutils and a full rebuild may help.\"\n\t      fi\n\t      if test no = \"$build_old_libs\"; then\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  else\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t    link_static=yes\n\t  fi\n\tfi # link shared/static library?\n\n\tif test lib = \"$linkmode\"; then\n\t  if test -n \"$dependency_libs\" &&\n\t     { test yes != \"$hardcode_into_libs\" ||\n\t       test yes = \"$build_old_libs\" ||\n\t       test yes = \"$link_static\"; }; then\n\t    # Extract -R from dependency_libs\n\t    temp_deplibs=\n\t    for libdir in $dependency_libs; do\n\t      case $libdir in\n\t      -R*) func_stripname '-R' '' \"$libdir\"\n\t           temp_xrpath=$func_stripname_result\n\t\t   case \" $xrpath \" in\n\t\t   *\" $temp_xrpath \"*) ;;\n\t\t   *) func_append xrpath \" $temp_xrpath\";;\n\t\t   esac;;\n\t      *) func_append temp_deplibs \" $libdir\";;\n\t      esac\n\t    done\n\t    dependency_libs=$temp_deplibs\n\t  fi\n\n\t  func_append newlib_search_path \" $absdir\"\n\t  # Link against this library\n\t  test no = \"$link_static\" && newdependency_libs=\"$abs_ladir/$laname $newdependency_libs\"\n\t  # ... and its dependency_libs\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    case $deplib in\n              -L*) func_stripname '-L' '' \"$deplib\"\n                   func_resolve_sysroot \"$func_stripname_result\";;\n              *) func_resolve_sysroot \"$deplib\" ;;\n            esac\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $func_resolve_sysroot_result \"*)\n                func_append specialdeplibs \" $func_resolve_sysroot_result\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $func_resolve_sysroot_result\"\n\t  done\n\n\t  if test no != \"$link_all_deplibs\"; then\n\t    # Add the search paths of all dependency libraries\n\t    for deplib in $dependency_libs; do\n\t      path=\n\t      case $deplib in\n\t      -L*) path=$deplib ;;\n\t      *.la)\n\t        func_resolve_sysroot \"$deplib\"\n\t        deplib=$func_resolve_sysroot_result\n\t        func_dirname \"$deplib\" \"\" \".\"\n\t\tdir=$func_dirname_result\n\t\t# We need an absolute path.\n\t\tcase $dir in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) absdir=$dir ;;\n\t\t*)\n\t\t  absdir=`cd \"$dir\" && pwd`\n\t\t  if test -z \"$absdir\"; then\n\t\t    func_warning \"cannot determine absolute directory name of '$dir'\"\n\t\t    absdir=$dir\n\t\t  fi\n\t\t  ;;\n\t\tesac\n\t\tif $GREP \"^installed=no\" $deplib > /dev/null; then\n\t\tcase $host in\n\t\t*-*-darwin*)\n\t\t  depdepl=\n\t\t  eval deplibrary_names=`$SED -n -e 's/^library_names=\\(.*\\)$/\\1/p' $deplib`\n\t\t  if test -n \"$deplibrary_names\"; then\n\t\t    for tmp in $deplibrary_names; do\n\t\t      depdepl=$tmp\n\t\t    done\n\t\t    if test -f \"$absdir/$objdir/$depdepl\"; then\n\t\t      depdepl=$absdir/$objdir/$depdepl\n\t\t      darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`\n                      if test -z \"$darwin_install_name\"; then\n                          darwin_install_name=`$OTOOL64 -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`\n                      fi\n\t\t      func_append compiler_flags \" $wl-dylib_file $wl$darwin_install_name:$depdepl\"\n\t\t      func_append linker_flags \" -dylib_file $darwin_install_name:$depdepl\"\n\t\t      path=\n\t\t    fi\n\t\t  fi\n\t\t  ;;\n\t\t*)\n\t\t  path=-L$absdir/$objdir\n\t\t  ;;\n\t\tesac\n\t\telse\n\t\t  eval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $deplib`\n\t\t  test -z \"$libdir\" && \\\n\t\t    func_fatal_error \"'$deplib' is not a valid libtool archive\"\n\t\t  test \"$absdir\" != \"$libdir\" && \\\n\t\t    func_warning \"'$deplib' seems to be moved\"\n\n\t\t  path=-L$absdir\n\t\tfi\n\t\t;;\n\t      esac\n\t      case \" $deplibs \" in\n\t      *\" $path \"*) ;;\n\t      *) deplibs=\"$path $deplibs\" ;;\n\t      esac\n\t    done\n\t  fi # link_all_deplibs != no\n\tfi # linkmode = lib\n      done # for deplib in $libs\n      if test link = \"$pass\"; then\n\tif test prog = \"$linkmode\"; then\n\t  compile_deplibs=\"$new_inherited_linker_flags $compile_deplibs\"\n\t  finalize_deplibs=\"$new_inherited_linker_flags $finalize_deplibs\"\n\telse\n\t  compiler_flags=\"$compiler_flags \"`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfi\n      fi\n      dependency_libs=$newdependency_libs\n      if test dlpreopen = \"$pass\"; then\n\t# Link the dlpreopened libraries before other libraries\n\tfor deplib in $save_deplibs; do\n\t  deplibs=\"$deplib $deplibs\"\n\tdone\n      fi\n      if test dlopen != \"$pass\"; then\n\ttest conv = \"$pass\" || {\n\t  # Make sure lib_search_path contains only unique directories.\n\t  lib_search_path=\n\t  for dir in $newlib_search_path; do\n\t    case \"$lib_search_path \" in\n\t    *\" $dir \"*) ;;\n\t    *) func_append lib_search_path \" $dir\" ;;\n\t    esac\n\t  done\n\t  newlib_search_path=\n\t}\n\n\tif test prog,link = \"$linkmode,$pass\"; then\n\t  vars=\"compile_deplibs finalize_deplibs\"\n\telse\n\t  vars=deplibs\n\tfi\n\tfor var in $vars dependency_libs; do\n\t  # Add libraries to $var in reverse order\n\t  eval tmp_libs=\\\"\\$$var\\\"\n\t  new_libs=\n\t  for deplib in $tmp_libs; do\n\t    # FIXME: Pedantically, this is the right thing to do, so\n\t    #        that some nasty dependency loop isn't accidentally\n\t    #        broken:\n\t    #new_libs=\"$deplib $new_libs\"\n\t    # Pragmatically, this seems to cause very few problems in\n\t    # practice:\n\t    case $deplib in\n\t    -L*) new_libs=\"$deplib $new_libs\" ;;\n\t    -R*) ;;\n\t    *)\n\t      # And here is the reason: when a library appears more\n\t      # than once as an explicit dependence of a library, or\n\t      # is implicitly linked in more than once by the\n\t      # compiler, it is considered special, and multiple\n\t      # occurrences thereof are not removed.  Compare this\n\t      # with having the same library being listed as a\n\t      # dependency of multiple other libraries: in this case,\n\t      # we know (pedantically, we assume) the library does not\n\t      # need to be listed more than once, so we keep only the\n\t      # last copy.  This is not always right, but it is rare\n\t      # enough that we require users that really mean to play\n\t      # such unportable linking tricks to link the library\n\t      # using -Wl,-lname, so that libtool does not consider it\n\t      # for duplicate removal.\n\t      case \" $specialdeplibs \" in\n\t      *\" $deplib \"*) new_libs=\"$deplib $new_libs\" ;;\n\t      *)\n\t\tcase \" $new_libs \" in\n\t\t*\" $deplib \"*) ;;\n\t\t*) new_libs=\"$deplib $new_libs\" ;;\n\t\tesac\n\t\t;;\n\t      esac\n\t      ;;\n\t    esac\n\t  done\n\t  tmp_libs=\n\t  for deplib in $new_libs; do\n\t    case $deplib in\n\t    -L*)\n\t      case \" $tmp_libs \" in\n\t      *\" $deplib \"*) ;;\n\t      *) func_append tmp_libs \" $deplib\" ;;\n\t      esac\n\t      ;;\n\t    *) func_append tmp_libs \" $deplib\" ;;\n\t    esac\n\t  done\n\t  eval $var=\\\"$tmp_libs\\\"\n\tdone # for var\n      fi\n\n      # Add Sun CC postdeps if required:\n      test CXX = \"$tagname\" && {\n        case $host_os in\n        linux*)\n          case `$CC -V 2>&1 | sed 5q` in\n          *Sun\\ C*) # Sun C++ 5.9\n            func_suncc_cstd_abi\n\n            if test no != \"$suncc_use_cstd_abi\"; then\n              func_append postdeps ' -library=Cstd -library=Crun'\n            fi\n            ;;\n          esac\n          ;;\n\n        solaris*)\n          func_cc_basename \"$CC\"\n          case $func_cc_basename_result in\n          CC* | sunCC*)\n            func_suncc_cstd_abi\n\n            if test no != \"$suncc_use_cstd_abi\"; then\n              func_append postdeps ' -library=Cstd -library=Crun'\n            fi\n            ;;\n          esac\n          ;;\n        esac\n      }\n\n      # Last step: remove runtime libs from dependency_libs\n      # (they stay in deplibs)\n      tmp_libs=\n      for i in $dependency_libs; do\n\tcase \" $predeps $postdeps $compiler_lib_search_path \" in\n\t*\" $i \"*)\n\t  i=\n\t  ;;\n\tesac\n\tif test -n \"$i\"; then\n\t  func_append tmp_libs \" $i\"\n\tfi\n      done\n      dependency_libs=$tmp_libs\n    done # for pass\n    if test prog = \"$linkmode\"; then\n      dlfiles=$newdlfiles\n    fi\n    if test prog = \"$linkmode\" || test lib = \"$linkmode\"; then\n      dlprefiles=$newdlprefiles\n    fi\n\n    case $linkmode in\n    oldlib)\n      if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n\tfunc_warning \"'-dlopen' is ignored for archives\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"'-l' and '-L' are ignored for archives\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"'-rpath' is ignored for archives\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"'-R' is ignored for archives\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info/-version-number' is ignored for archives\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for archives\"\n\n      test -n \"$export_symbols$export_symbols_regex\" && \\\n\tfunc_warning \"'-export-symbols' is ignored for archives\"\n\n      # Now set the variables for building old libraries.\n      build_libtool_libs=no\n      oldlibs=$output\n      func_append objs \"$old_deplibs\"\n      ;;\n\n    lib)\n      # Make sure we only generate libraries of the form 'libNAME.la'.\n      case $outputname in\n      lib*)\n\tfunc_stripname 'lib' '.la' \"$outputname\"\n\tname=$func_stripname_result\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval libname=\\\"$libname_spec\\\"\n\t;;\n      *)\n\ttest no = \"$module\" \\\n\t  && func_fatal_help \"libtool library '$output' must begin with 'lib'\"\n\n\tif test no != \"$need_lib_prefix\"; then\n\t  # Add the \"lib\" prefix for modules if required\n\t  func_stripname '' '.la' \"$outputname\"\n\t  name=$func_stripname_result\n\t  eval shared_ext=\\\"$shrext_cmds\\\"\n\t  eval libname=\\\"$libname_spec\\\"\n\telse\n\t  func_stripname '' '.la' \"$outputname\"\n\t  libname=$func_stripname_result\n\tfi\n\t;;\n      esac\n\n      if test -n \"$objs\"; then\n\tif test pass_all != \"$deplibs_check_method\"; then\n\t  func_fatal_error \"cannot build libtool library '$output' from non-libtool objects on this host:$objs\"\n\telse\n\t  echo\n\t  $ECHO \"*** Warning: Linking the shared library $output against the non-libtool\"\n\t  $ECHO \"*** objects $objs is not portable!\"\n\t  func_append libobjs \" $objs\"\n\tfi\n      fi\n\n      test no = \"$dlself\" \\\n\t|| func_warning \"'-dlopen self' is ignored for libtool libraries\"\n\n      set dummy $rpath\n      shift\n      test 1 -lt \"$#\" \\\n\t&& func_warning \"ignoring multiple '-rpath's for a libtool library\"\n\n      install_libdir=$1\n\n      oldlibs=\n      if test -z \"$rpath\"; then\n\tif test yes = \"$build_libtool_libs\"; then\n\t  # Building a libtool convenience library.\n\t  # Some compilers have problems with a '.al' extension so\n\t  # convenience libraries should have the same extension an\n\t  # archive normally would.\n\t  oldlibs=\"$output_objdir/$libname.$libext $oldlibs\"\n\t  build_libtool_libs=convenience\n\t  build_old_libs=yes\n\tfi\n\n\ttest -n \"$vinfo\" && \\\n\t  func_warning \"'-version-info/-version-number' is ignored for convenience libraries\"\n\n\ttest -n \"$release\" && \\\n\t  func_warning \"'-release' is ignored for convenience libraries\"\n      else\n\n\t# Parse the version information argument.\n\tsave_ifs=$IFS; IFS=:\n\tset dummy $vinfo 0 0 0\n\tshift\n\tIFS=$save_ifs\n\n\ttest -n \"$7\" && \\\n\t  func_fatal_help \"too many parameters to '-version-info'\"\n\n\t# convert absolute version numbers to libtool ages\n\t# this retains compatibility with .la files and attempts\n\t# to make the code below a bit more comprehensible\n\n\tcase $vinfo_number in\n\tyes)\n\t  number_major=$1\n\t  number_minor=$2\n\t  number_revision=$3\n\t  #\n\t  # There are really only two kinds -- those that\n\t  # use the current revision as the major version\n\t  # and those that subtract age and use age as\n\t  # a minor version.  But, then there is irix\n\t  # that has an extra 1 added just for fun\n\t  #\n\t  case $version_type in\n\t  # correct linux to gnu/linux during the next big refactor\n\t  darwin|freebsd-elf|linux|osf|windows|none)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=$number_minor\n\t    revision=$number_revision\n\t    ;;\n\t  freebsd-aout|qnx|sunos)\n\t    current=$number_major\n\t    revision=$number_minor\n\t    age=0\n\t    ;;\n\t  irix|nonstopux)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=$number_minor\n\t    revision=$number_minor\n\t    lt_irix_increment=no\n\t    ;;\n\t  esac\n\t  ;;\n\tno)\n\t  current=$1\n\t  revision=$2\n\t  age=$3\n\t  ;;\n\tesac\n\n\t# Check that each of the things are valid numbers.\n\tcase $current in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"CURRENT '$current' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $revision in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"REVISION '$revision' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $age in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"AGE '$age' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tif test \"$age\" -gt \"$current\"; then\n\t  func_error \"AGE '$age' is greater than the current interface number '$current'\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\tfi\n\n\t# Calculate the version variables.\n\tmajor=\n\tversuffix=\n\tverstring=\n\tcase $version_type in\n\tnone) ;;\n\n\tdarwin)\n\t  # Like Linux, but with the current version available in\n\t  # verstring for coding it into the library header\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  # Darwin ld doesn't like 0 for these options...\n\t  func_arith $current + 1\n\t  minor_current=$func_arith_result\n\t  xlcverstring=\"$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision\"\n\t  verstring=\"-compatibility_version $minor_current -current_version $minor_current.$revision\"\n          # On Darwin other compilers\n          case $CC in\n              nagfor*)\n                  verstring=\"$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision\"\n                  ;;\n              *)\n                  verstring=\"-compatibility_version $minor_current -current_version $minor_current.$revision\"\n                  ;;\n          esac\n\t  ;;\n\n\tfreebsd-aout)\n\t  major=.$current\n\t  versuffix=.$current.$revision\n\t  ;;\n\n\tfreebsd-elf)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  ;;\n\n\tirix | nonstopux)\n\t  if test no = \"$lt_irix_increment\"; then\n\t    func_arith $current - $age\n\t  else\n\t    func_arith $current - $age + 1\n\t  fi\n\t  major=$func_arith_result\n\n\t  case $version_type in\n\t    nonstopux) verstring_prefix=nonstopux ;;\n\t    *)         verstring_prefix=sgi ;;\n\t  esac\n\t  verstring=$verstring_prefix$major.$revision\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$revision\n\t  while test 0 -ne \"$loop\"; do\n\t    func_arith $revision - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=$verstring_prefix$major.$iface:$verstring\n\t  done\n\n\t  # Before this point, $major must not contain '.'.\n\t  major=.$major\n\t  versuffix=$major.$revision\n\t  ;;\n\n\tlinux) # correct to gnu/linux during the next big refactor\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  ;;\n\n\tosf)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=.$current.$age.$revision\n\t  verstring=$current.$age.$revision\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$age\n\t  while test 0 -ne \"$loop\"; do\n\t    func_arith $current - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=$verstring:$iface.0\n\t  done\n\n\t  # Make executables depend on our current version.\n\t  func_append verstring \":$current.0\"\n\t  ;;\n\n\tqnx)\n\t  major=.$current\n\t  versuffix=.$current\n\t  ;;\n\n\tsco)\n\t  major=.$current\n\t  versuffix=.$current\n\t  ;;\n\n\tsunos)\n\t  major=.$current\n\t  versuffix=.$current.$revision\n\t  ;;\n\n\twindows)\n\t  # Use '-' rather than '.', since we only want one\n\t  # extension on DOS 8.3 file systems.\n\t  func_arith $current - $age\n\t  major=$func_arith_result\n\t  versuffix=-$major\n\t  ;;\n\n\t*)\n\t  func_fatal_configuration \"unknown library version type '$version_type'\"\n\t  ;;\n\tesac\n\n\t# Clear the version info if we defaulted, and they specified a release.\n\tif test -z \"$vinfo\" && test -n \"$release\"; then\n\t  major=\n\t  case $version_type in\n\t  darwin)\n\t    # we can't check for \"0.0\" in archive_cmds due to quoting\n\t    # problems, so we reset it completely\n\t    verstring=\n\t    ;;\n\t  *)\n\t    verstring=0.0\n\t    ;;\n\t  esac\n\t  if test no = \"$need_version\"; then\n\t    versuffix=\n\t  else\n\t    versuffix=.0.0\n\t  fi\n\tfi\n\n\t# Remove version info from name if versioning should be avoided\n\tif test yes,no = \"$avoid_version,$need_version\"; then\n\t  major=\n\t  versuffix=\n\t  verstring=\n\tfi\n\n\t# Check to see if the archive will have undefined symbols.\n\tif test yes = \"$allow_undefined\"; then\n\t  if test unsupported = \"$allow_undefined_flag\"; then\n\t    if test yes = \"$build_old_libs\"; then\n\t      func_warning \"undefined symbols not allowed in $host shared libraries; building static only\"\n\t      build_libtool_libs=no\n\t    else\n\t      func_fatal_error \"can't build $host shared library unless -no-undefined is specified\"\n\t    fi\n\t  fi\n\telse\n\t  # Don't allow undefined symbols.\n\t  allow_undefined_flag=$no_undefined_flag\n\tfi\n\n      fi\n\n      func_generate_dlsyms \"$libname\" \"$libname\" :\n      func_append libobjs \" $symfileobj\"\n      test \" \" = \"$libobjs\" && libobjs=\n\n      if test relink != \"$opt_mode\"; then\n\t# Remove our outputs, but don't remove object files since they\n\t# may have been created when compiling PIC objects.\n\tremovelist=\n\ttempremovelist=`$ECHO \"$output_objdir/*\"`\n\tfor p in $tempremovelist; do\n\t  case $p in\n\t    *.$objext | *.gcno)\n\t       ;;\n\t    $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*)\n\t       if test -n \"$precious_files_regex\"; then\n\t\t if $ECHO \"$p\" | $EGREP -e \"$precious_files_regex\" >/dev/null 2>&1\n\t\t then\n\t\t   continue\n\t\t fi\n\t       fi\n\t       func_append removelist \" $p\"\n\t       ;;\n\t    *) ;;\n\t  esac\n\tdone\n\ttest -n \"$removelist\" && \\\n\t  func_show_eval \"${RM}r \\$removelist\"\n      fi\n\n      # Now set the variables for building old libraries.\n      if test yes = \"$build_old_libs\" && test convenience != \"$build_libtool_libs\"; then\n\tfunc_append oldlibs \" $output_objdir/$libname.$libext\"\n\n\t# Transform .lo files to .o files.\n\toldobjs=\"$objs \"`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.$libext$/d; $lo2o\" | $NL2SP`\n      fi\n\n      # Eliminate all temporary directories.\n      #for path in $notinst_path; do\n      #\tlib_search_path=`$ECHO \"$lib_search_path \" | $SED \"s% $path % %g\"`\n      #\tdeplibs=`$ECHO \"$deplibs \" | $SED \"s% -L$path % %g\"`\n      #\tdependency_libs=`$ECHO \"$dependency_libs \" | $SED \"s% -L$path % %g\"`\n      #done\n\n      if test -n \"$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\ttemp_xrpath=\n\tfor libdir in $xrpath; do\n\t  func_replace_sysroot \"$libdir\"\n\t  func_append temp_xrpath \" -R$func_replace_sysroot_result\"\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_rpath \" $libdir\" ;;\n\t  esac\n\tdone\n\tif test yes != \"$hardcode_into_libs\" || test yes = \"$build_old_libs\"; then\n\t  dependency_libs=\"$temp_xrpath $dependency_libs\"\n\tfi\n      fi\n\n      # Make sure dlfiles contains only unique files that won't be dlpreopened\n      old_dlfiles=$dlfiles\n      dlfiles=\n      for lib in $old_dlfiles; do\n\tcase \" $dlprefiles $dlfiles \" in\n\t*\" $lib \"*) ;;\n\t*) func_append dlfiles \" $lib\" ;;\n\tesac\n      done\n\n      # Make sure dlprefiles contains only unique files\n      old_dlprefiles=$dlprefiles\n      dlprefiles=\n      for lib in $old_dlprefiles; do\n\tcase \"$dlprefiles \" in\n\t*\" $lib \"*) ;;\n\t*) func_append dlprefiles \" $lib\" ;;\n\tesac\n      done\n\n      if test yes = \"$build_libtool_libs\"; then\n\tif test -n \"$rpath\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # these systems don't actually have a c library (as such)!\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C library is in the System framework\n\t    func_append deplibs \" System.ltframework\"\n\t    ;;\n\t  *-*-netbsd*)\n\t    # Don't link with libc until the a.out ld.so is fixed.\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    ;;\n\t  *)\n\t    # Add libc to deplibs on all other systems if necessary.\n\t    if test yes = \"$build_libtool_need_lc\"; then\n\t      func_append deplibs \" -lc\"\n\t    fi\n\t    ;;\n\t  esac\n\tfi\n\n\t# Transform deplibs into only deplibs that can be linked in shared.\n\tname_save=$name\n\tlibname_save=$libname\n\trelease_save=$release\n\tversuffix_save=$versuffix\n\tmajor_save=$major\n\t# I'm not sure if I'm treating the release correctly.  I think\n\t# release should show up in the -l (ie -lgmp5) so we don't want to\n\t# add it in twice.  Is that correct?\n\trelease=\n\tversuffix=\n\tmajor=\n\tnewdeplibs=\n\tdroppeddeps=no\n\tcase $deplibs_check_method in\n\tpass_all)\n\t  # Don't check for shared/static.  Everything works.\n\t  # This might be a little naive.  We might want to check\n\t  # whether the library exists or not.  But this is on\n\t  # osf3 & osf4 and I'm not really sure... Just\n\t  # implementing what was already the behavior.\n\t  newdeplibs=$deplibs\n\t  ;;\n\ttest_compile)\n\t  # This code stresses the \"libraries are programs\" paradigm to its\n\t  # limits. Maybe even breaks it.  We compile a program, linking it\n\t  # against the deplibs as a proxy for the library.  Then we can check\n\t  # whether they linked in statically or dynamically with ldd.\n\t  $opt_dry_run || $RM conftest.c\n\t  cat > conftest.c <<EOF\n\t  int main() { return 0; }\nEOF\n\t  $opt_dry_run || $RM conftest\n\t  if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then\n\t    ldd_output=`ldd conftest`\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\tif test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\t  case \" $predeps $postdeps \" in\n\t\t  *\" $i \"*)\n\t\t    func_append newdeplibs \" $i\"\n\t\t    i=\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t\tif test -n \"$i\"; then\n\t\t  libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t  deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t  set dummy $deplib_matches; shift\n\t\t  deplib_match=$1\n\t\t  if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0; then\n\t\t    func_append newdeplibs \" $i\"\n\t\t  else\n\t\t    droppeddeps=yes\n\t\t    echo\n\t\t    $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t    echo \"*** shared version of the library, which I believe you do not have\"\n\t\t    echo \"*** because a test_compile did reveal that the linker did not use it for\"\n\t\t    echo \"*** its dynamic dependency list that programs get resolved with at runtime.\"\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *)\n\t\tfunc_append newdeplibs \" $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  else\n\t    # Error occurred in the first compile.  Let's try to salvage\n\t    # the situation: Compile a separate program for each library.\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\t$opt_dry_run || $RM conftest\n\t\tif $LTCC $LTCFLAGS -o conftest conftest.c $i; then\n\t\t  ldd_output=`ldd conftest`\n\t\t  if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\t    case \" $predeps $postdeps \" in\n\t\t    *\" $i \"*)\n\t\t      func_append newdeplibs \" $i\"\n\t\t      i=\n\t\t      ;;\n\t\t    esac\n\t\t  fi\n\t\t  if test -n \"$i\"; then\n\t\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t    deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t    set dummy $deplib_matches; shift\n\t\t    deplib_match=$1\n\t\t    if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0; then\n\t\t      func_append newdeplibs \" $i\"\n\t\t    else\n\t\t      droppeddeps=yes\n\t\t      echo\n\t\t      $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t      echo \"*** I have the capability to make that library automatically link in when\"\n\t\t      echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t      echo \"*** shared version of the library, which you do not appear to have\"\n\t\t      echo \"*** because a test_compile did reveal that the linker did not use this one\"\n\t\t      echo \"*** as a dynamic dependency that programs can get resolved with at runtime.\"\n\t\t    fi\n\t\t  fi\n\t\telse\n\t\t  droppeddeps=yes\n\t\t  echo\n\t\t  $ECHO \"*** Warning!  Library $i is needed by this library but I was not able to\"\n\t\t  echo \"*** make it link in!  You will probably need to install it or some\"\n\t\t  echo \"*** library that it depends on before this library will be fully\"\n\t\t  echo \"*** functional.  Installing it before continuing would be even better.\"\n\t\tfi\n\t\t;;\n\t      *)\n\t\tfunc_append newdeplibs \" $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  fi\n\t  ;;\n\tfile_magic*)\n\t  set dummy $deplibs_check_method; shift\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  func_append newdeplibs \" $a_deplib\"\n\t\t  a_deplib=\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tif test -n \"$file_magic_glob\"; then\n\t\t  libnameglob=`func_echo_all \"$libname\" | $SED -e $file_magic_glob`\n\t\telse\n\t\t  libnameglob=$libname\n\t\tfi\n\t\ttest yes = \"$want_nocaseglob\" && nocaseglob=`shopt -p nocaseglob`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  if test yes = \"$want_nocaseglob\"; then\n\t\t    shopt -s nocaseglob\n\t\t    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`\n\t\t    $nocaseglob\n\t\t  else\n\t\t    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`\n\t\t  fi\n\t\t  for potent_lib in $potential_libs; do\n\t\t      # Follow soft links.\n\t\t      if ls -lLd \"$potent_lib\" 2>/dev/null |\n\t\t\t $GREP \" -> \" >/dev/null; then\n\t\t\tcontinue\n\t\t      fi\n\t\t      # The statement above tries to avoid entering an\n\t\t      # endless loop below, in case of cyclic links.\n\t\t      # We might still enter an endless loop, since a link\n\t\t      # loop can be closed while we follow links,\n\t\t      # but so what?\n\t\t      potlib=$potent_lib\n\t\t      while test -h \"$potlib\" 2>/dev/null; do\n\t\t\tpotliblink=`ls -ld $potlib | $SED 's/.* -> //'`\n\t\t\tcase $potliblink in\n\t\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) potlib=$potliblink;;\n\t\t\t*) potlib=`$ECHO \"$potlib\" | $SED 's|[^/]*$||'`\"$potliblink\";;\n\t\t\tesac\n\t\t      done\n\t\t      if eval $file_magic_cmd \\\"\\$potlib\\\" 2>/dev/null |\n\t\t\t $SED -e 10q |\n\t\t\t $EGREP \"$file_magic_regex\" > /dev/null; then\n\t\t\tfunc_append newdeplibs \" $a_deplib\"\n\t\t\ta_deplib=\n\t\t\tbreak 2\n\t\t      fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\"; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for file magic test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a file magic. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      func_append newdeplibs \" $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tmatch_pattern*)\n\t  set dummy $deplibs_check_method; shift\n\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  func_append newdeplibs \" $a_deplib\"\n\t\t  a_deplib=\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`\n\t\t  for potent_lib in $potential_libs; do\n\t\t    potlib=$potent_lib # see symlink-check above in file_magic test\n\t\t    if eval \"\\$ECHO \\\"$potent_lib\\\"\" 2>/dev/null | $SED 10q | \\\n\t\t       $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t      func_append newdeplibs \" $a_deplib\"\n\t\t      a_deplib=\n\t\t      break 2\n\t\t    fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\"; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for regex pattern test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a regex pattern. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      func_append newdeplibs \" $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tnone | unknown | *)\n\t  newdeplibs=\n\t  tmp_deplibs=`$ECHO \" $deplibs\" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`\n\t  if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t    for i in $predeps $postdeps; do\n\t      # can't use Xsed below, because $i might contain '/'\n\t      tmp_deplibs=`$ECHO \" $tmp_deplibs\" | $SED \"s|$i||\"`\n\t    done\n\t  fi\n\t  case $tmp_deplibs in\n\t  *[!\\\t\\ ]*)\n\t    echo\n\t    if test none = \"$deplibs_check_method\"; then\n\t      echo \"*** Warning: inter-library dependencies are not supported in this platform.\"\n\t    else\n\t      echo \"*** Warning: inter-library dependencies are not known to be supported.\"\n\t    fi\n\t    echo \"*** All declared inter-library dependencies are being dropped.\"\n\t    droppeddeps=yes\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tversuffix=$versuffix_save\n\tmajor=$major_save\n\trelease=$release_save\n\tlibname=$libname_save\n\tname=$name_save\n\n\tcase $host in\n\t*-*-rhapsody* | *-*-darwin1.[012])\n\t  # On Rhapsody replace the C library with the System framework\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t  ;;\n\tesac\n\n\tif test yes = \"$droppeddeps\"; then\n\t  if test yes = \"$module\"; then\n\t    echo\n\t    echo \"*** Warning: libtool could not satisfy all declared inter-library\"\n\t    $ECHO \"*** dependencies of module $libname.  Therefore, libtool will create\"\n\t    echo \"*** a static module, that should work as long as the dlopening\"\n\t    echo \"*** application is linked with the -dlopen flag.\"\n\t    if test -z \"$global_symbol_pipe\"; then\n\t      echo\n\t      echo \"*** However, this would only work if libtool was able to extract symbol\"\n\t      echo \"*** lists from a program, using 'nm' or equivalent, but libtool could\"\n\t      echo \"*** not find such a program.  So, this module is probably useless.\"\n\t      echo \"*** 'nm' from GNU binutils and a full rebuild may help.\"\n\t    fi\n\t    if test no = \"$build_old_libs\"; then\n\t      oldlibs=$output_objdir/$libname.$libext\n\t      build_libtool_libs=module\n\t      build_old_libs=yes\n\t    else\n\t      build_libtool_libs=no\n\t    fi\n\t  else\n\t    echo \"*** The inter-library dependencies that have been dropped here will be\"\n\t    echo \"*** automatically added whenever a program is linked with this library\"\n\t    echo \"*** or is declared to -dlopen it.\"\n\n\t    if test no = \"$allow_undefined\"; then\n\t      echo\n\t      echo \"*** Since this library must not contain undefined symbols,\"\n\t      echo \"*** because either the platform does not support them or\"\n\t      echo \"*** it was explicitly requested with -no-undefined,\"\n\t      echo \"*** libtool will only create a static version of it.\"\n\t      if test no = \"$build_old_libs\"; then\n\t\toldlibs=$output_objdir/$libname.$libext\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  fi\n\tfi\n\t# Done checking deplibs!\n\tdeplibs=$newdeplibs\n      fi\n      # Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n      case $host in\n\t*-*-darwin*)\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  new_inherited_linker_flags=`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  deplibs=`$ECHO \" $deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  ;;\n      esac\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    func_append new_libs \" -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) func_append new_libs \" $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) func_append new_libs \" $deplib\" ;;\n\tesac\n      done\n      deplibs=$new_libs\n\n      # All the library-specific variables (install_libdir is set above).\n      library_names=\n      old_library=\n      dlname=\n\n      # Test again, we may have decided not to build it any more\n      if test yes = \"$build_libtool_libs\"; then\n\t# Remove $wl instances when linking with ld.\n\t# FIXME: should test the right _cmds variable.\n\tcase $archive_cmds in\n\t  *\\$LD\\ *) wl= ;;\n        esac\n\tif test yes = \"$hardcode_into_libs\"; then\n\t  # Hardcode the library paths\n\t  hardcode_libdirs=\n\t  dep_rpath=\n\t  rpath=$finalize_rpath\n\t  test relink = \"$opt_mode\" || rpath=$compile_rpath$rpath\n\t  for libdir in $rpath; do\n\t    if test -n \"$hardcode_libdir_flag_spec\"; then\n\t      if test -n \"$hardcode_libdir_separator\"; then\n\t\tfunc_replace_sysroot \"$libdir\"\n\t\tlibdir=$func_replace_sysroot_result\n\t\tif test -z \"$hardcode_libdirs\"; then\n\t\t  hardcode_libdirs=$libdir\n\t\telse\n\t\t  # Just accumulate the unique libdirs.\n\t\t  case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t\t  *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t    ;;\n\t\t  *)\n\t\t    func_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t      else\n\t\teval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t\tfunc_append dep_rpath \" $flag\"\n\t      fi\n\t    elif test -n \"$runpath_var\"; then\n\t      case \"$perm_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append perm_rpath \" $libdir\" ;;\n\t      esac\n\t    fi\n\t  done\n\t  # Substitute the hardcoded libdirs into the rpath.\n\t  if test -n \"$hardcode_libdir_separator\" &&\n\t     test -n \"$hardcode_libdirs\"; then\n\t    libdir=$hardcode_libdirs\n\t    eval \"dep_rpath=\\\"$hardcode_libdir_flag_spec\\\"\"\n\t  fi\n\t  if test -n \"$runpath_var\" && test -n \"$perm_rpath\"; then\n\t    # We should set the runpath_var.\n\t    rpath=\n\t    for dir in $perm_rpath; do\n\t      func_append rpath \"$dir:\"\n\t    done\n\t    eval \"$runpath_var='$rpath\\$$runpath_var'; export $runpath_var\"\n\t  fi\n\t  test -n \"$dep_rpath\" && deplibs=\"$dep_rpath $deplibs\"\n\tfi\n\n\tshlibpath=$finalize_shlibpath\n\ttest relink = \"$opt_mode\" || shlibpath=$compile_shlibpath$shlibpath\n\tif test -n \"$shlibpath\"; then\n\t  eval \"$shlibpath_var='$shlibpath\\$$shlibpath_var'; export $shlibpath_var\"\n\tfi\n\n\t# Get the real and link names of the library.\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval library_names=\\\"$library_names_spec\\\"\n\tset dummy $library_names\n\tshift\n\trealname=$1\n\tshift\n\n\tif test -n \"$soname_spec\"; then\n\t  eval soname=\\\"$soname_spec\\\"\n\telse\n\t  soname=$realname\n\tfi\n\tif test -z \"$dlname\"; then\n\t  dlname=$soname\n\tfi\n\n\tlib=$output_objdir/$realname\n\tlinknames=\n\tfor link\n\tdo\n\t  func_append linknames \" $link\"\n\tdone\n\n\t# Use standard objects if they are pic\n\ttest -z \"$pic_flag\" && libobjs=`$ECHO \"$libobjs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\ttest \"X$libobjs\" = \"X \" && libobjs=\n\n\tdelfiles=\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  $opt_dry_run || cp \"$export_symbols\" \"$output_objdir/$libname.uexp\"\n\t  export_symbols=$output_objdir/$libname.uexp\n\t  func_append delfiles \" $export_symbols\"\n\tfi\n\n\torig_export_symbols=\n\tcase $host_os in\n\tcygwin* | mingw* | cegcc*)\n\t  if test -n \"$export_symbols\" && test -z \"$export_symbols_regex\"; then\n\t    # exporting using user supplied symfile\n\t    func_dll_def_p \"$export_symbols\" || {\n\t      # and it's NOT already a .def file. Must figure out\n\t      # which of the given symbols are data symbols and tag\n\t      # them as such. So, trigger use of export_symbols_cmds.\n\t      # export_symbols gets reassigned inside the \"prepare\n\t      # the list of exported symbols\" if statement, so the\n\t      # include_expsyms logic still works.\n\t      orig_export_symbols=$export_symbols\n\t      export_symbols=\n\t      always_export_symbols=yes\n\t    }\n\t  fi\n\t  ;;\n\tesac\n\n\t# Prepare the list of exported symbols\n\tif test -z \"$export_symbols\"; then\n\t  if test yes = \"$always_export_symbols\" || test -n \"$export_symbols_regex\"; then\n\t    func_verbose \"generating symbol list for '$libname.la'\"\n\t    export_symbols=$output_objdir/$libname.exp\n\t    $opt_dry_run || $RM $export_symbols\n\t    cmds=$export_symbols_cmds\n\t    save_ifs=$IFS; IFS='~'\n\t    for cmd1 in $cmds; do\n\t      IFS=$save_ifs\n\t      # Take the normal branch if the nm_file_list_spec branch\n\t      # doesn't work or if tool conversion is not needed.\n\t      case $nm_file_list_spec~$to_tool_file_cmd in\n\t\t*~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*)\n\t\t  try_normal_branch=yes\n\t\t  eval cmd=\\\"$cmd1\\\"\n\t\t  func_len \" $cmd\"\n\t\t  len=$func_len_result\n\t\t  ;;\n\t\t*)\n\t\t  try_normal_branch=no\n\t\t  ;;\n\t      esac\n\t      if test yes = \"$try_normal_branch\" \\\n\t\t && { test \"$len\" -lt \"$max_cmd_len\" \\\n\t\t      || test \"$max_cmd_len\" -le -1; }\n\t      then\n\t\tfunc_show_eval \"$cmd\" 'exit $?'\n\t\tskipped_export=false\n\t      elif test -n \"$nm_file_list_spec\"; then\n\t\tfunc_basename \"$output\"\n\t\toutput_la=$func_basename_result\n\t\tsave_libobjs=$libobjs\n\t\tsave_output=$output\n\t\toutput=$output_objdir/$output_la.nm\n\t\tfunc_to_tool_file \"$output\"\n\t\tlibobjs=$nm_file_list_spec$func_to_tool_file_result\n\t\tfunc_append delfiles \" $output\"\n\t\tfunc_verbose \"creating $NM input file list: $output\"\n\t\tfor obj in $save_libobjs; do\n\t\t  func_to_tool_file \"$obj\"\n\t\t  $ECHO \"$func_to_tool_file_result\"\n\t\tdone > \"$output\"\n\t\teval cmd=\\\"$cmd1\\\"\n\t\tfunc_show_eval \"$cmd\" 'exit $?'\n\t\toutput=$save_output\n\t\tlibobjs=$save_libobjs\n\t\tskipped_export=false\n\t      else\n\t\t# The command line is too long to execute in one step.\n\t\tfunc_verbose \"using reloadable object file for export list...\"\n\t\tskipped_export=:\n\t\t# Break out early, otherwise skipped_export may be\n\t\t# set to false by a later but shorter cmd.\n\t\tbreak\n\t      fi\n\t    done\n\t    IFS=$save_ifs\n\t    if test -n \"$export_symbols_regex\" && test : != \"$skipped_export\"; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  tmp_export_symbols=$export_symbols\n\t  test -n \"$orig_export_symbols\" && tmp_export_symbols=$orig_export_symbols\n\t  $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\tfi\n\n\tif test : != \"$skipped_export\" && test -n \"$orig_export_symbols\"; then\n\t  # The given exports_symbols file has to be filtered, so filter it.\n\t  func_verbose \"filter symbol list for '$libname.la' to tag DATA exports\"\n\t  # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t  # 's' commands, which not all seds can handle. GNU sed should be fine\n\t  # though. Also, the filter scales superlinearly with the number of\n\t  # global variables. join(1) would be nice here, but unfortunately\n\t  # isn't a blessed tool.\n\t  $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t  func_append delfiles \" $export_symbols $output_objdir/$libname.filter\"\n\t  export_symbols=$output_objdir/$libname.def\n\t  $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\tfi\n\n\ttmp_deplibs=\n\tfor test_deplib in $deplibs; do\n\t  case \" $convenience \" in\n\t  *\" $test_deplib \"*) ;;\n\t  *)\n\t    func_append tmp_deplibs \" $test_deplib\"\n\t    ;;\n\t  esac\n\tdone\n\tdeplibs=$tmp_deplibs\n\n\tif test -n \"$convenience\"; then\n\t  if test -n \"$whole_archive_flag_spec\" &&\n\t    test yes = \"$compiler_needs_object\" &&\n\t    test -z \"$libobjs\"; then\n\t    # extract the archives, so we have objects to list.\n\t    # TODO: could optimize this to just extract one archive.\n\t    whole_archive_flag_spec=\n\t  fi\n\t  if test -n \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  else\n\t    gentop=$output_objdir/${outputname}x\n\t    func_append generated \" $gentop\"\n\n\t    func_extract_archives $gentop $convenience\n\t    func_append libobjs \" $func_extract_archives_result\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\tfi\n\n\tif test yes = \"$thread_safe\" && test -n \"$thread_safe_flag_spec\"; then\n\t  eval flag=\\\"$thread_safe_flag_spec\\\"\n\t  func_append linker_flags \" $flag\"\n\tfi\n\n\t# Make a backup of the uninstalled library when relinking\n\tif test relink = \"$opt_mode\"; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?\n\tfi\n\n\t# Do each of the archive commands.\n\tif test yes = \"$module\" && test -n \"$module_cmds\"; then\n\t  if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$module_expsym_cmds\\\"\n\t    cmds=$module_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$module_cmds\\\"\n\t    cmds=$module_cmds\n\t  fi\n\telse\n\t  if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$archive_expsym_cmds\\\"\n\t    cmds=$archive_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$archive_cmds\\\"\n\t    cmds=$archive_cmds\n\t  fi\n\tfi\n\n\tif test : != \"$skipped_export\" &&\n\t   func_len \" $test_cmds\" &&\n\t   len=$func_len_result &&\n\t   test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  :\n\telse\n\t  # The command line is too long to link in one step, link piecewise\n\t  # or, if using GNU ld and skipped_export is not :, use a linker\n\t  # script.\n\n\t  # Save the value of $output and $libobjs because we want to\n\t  # use them later.  If we have whole_archive_flag_spec, we\n\t  # want to use save_libobjs as it was before\n\t  # whole_archive_flag_spec was expanded, because we can't\n\t  # assume the linker understands whole_archive_flag_spec.\n\t  # This may have to be revisited, in case too many\n\t  # convenience libraries get linked in and end up exceeding\n\t  # the spec.\n\t  if test -z \"$convenience\" || test -z \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t  fi\n\t  save_output=$output\n\t  func_basename \"$output\"\n\t  output_la=$func_basename_result\n\n\t  # Clear the reloadable object creation command queue and\n\t  # initialize k to one.\n\t  test_cmds=\n\t  concat_cmds=\n\t  objlist=\n\t  last_robj=\n\t  k=1\n\n\t  if test -n \"$save_libobjs\" && test : != \"$skipped_export\" && test yes = \"$with_gnu_ld\"; then\n\t    output=$output_objdir/$output_la.lnkscript\n\t    func_verbose \"creating GNU ld script: $output\"\n\t    echo 'INPUT (' > $output\n\t    for obj in $save_libobjs\n\t    do\n\t      func_to_tool_file \"$obj\"\n\t      $ECHO \"$func_to_tool_file_result\" >> $output\n\t    done\n\t    echo ')' >> $output\n\t    func_append delfiles \" $output\"\n\t    func_to_tool_file \"$output\"\n\t    output=$func_to_tool_file_result\n\t  elif test -n \"$save_libobjs\" && test : != \"$skipped_export\" && test -n \"$file_list_spec\"; then\n\t    output=$output_objdir/$output_la.lnk\n\t    func_verbose \"creating linker input file list: $output\"\n\t    : > $output\n\t    set x $save_libobjs\n\t    shift\n\t    firstobj=\n\t    if test yes = \"$compiler_needs_object\"; then\n\t      firstobj=\"$1 \"\n\t      shift\n\t    fi\n\t    for obj\n\t    do\n\t      func_to_tool_file \"$obj\"\n\t      $ECHO \"$func_to_tool_file_result\" >> $output\n\t    done\n\t    func_append delfiles \" $output\"\n\t    func_to_tool_file \"$output\"\n\t    output=$firstobj\\\"$file_list_spec$func_to_tool_file_result\\\"\n\t  else\n\t    if test -n \"$save_libobjs\"; then\n\t      func_verbose \"creating reloadable object files...\"\n\t      output=$output_objdir/$output_la-$k.$objext\n\t      eval test_cmds=\\\"$reload_cmds\\\"\n\t      func_len \" $test_cmds\"\n\t      len0=$func_len_result\n\t      len=$len0\n\n\t      # Loop over the list of objects to be linked.\n\t      for obj in $save_libobjs\n\t      do\n\t\tfunc_len \" $obj\"\n\t\tfunc_arith $len + $func_len_result\n\t\tlen=$func_arith_result\n\t\tif test -z \"$objlist\" ||\n\t\t   test \"$len\" -lt \"$max_cmd_len\"; then\n\t\t  func_append objlist \" $obj\"\n\t\telse\n\t\t  # The command $test_cmds is almost too long, add a\n\t\t  # command to the queue.\n\t\t  if test 1 -eq \"$k\"; then\n\t\t    # The first file doesn't have a previous command to add.\n\t\t    reload_objs=$objlist\n\t\t    eval concat_cmds=\\\"$reload_cmds\\\"\n\t\t  else\n\t\t    # All subsequent reloadable object files will link in\n\t\t    # the last one created.\n\t\t    reload_objs=\"$objlist $last_robj\"\n\t\t    eval concat_cmds=\\\"\\$concat_cmds~$reload_cmds~\\$RM $last_robj\\\"\n\t\t  fi\n\t\t  last_robj=$output_objdir/$output_la-$k.$objext\n\t\t  func_arith $k + 1\n\t\t  k=$func_arith_result\n\t\t  output=$output_objdir/$output_la-$k.$objext\n\t\t  objlist=\" $obj\"\n\t\t  func_len \" $last_robj\"\n\t\t  func_arith $len0 + $func_len_result\n\t\t  len=$func_arith_result\n\t\tfi\n\t      done\n\t      # Handle the remaining objects by creating one last\n\t      # reloadable object file.  All subsequent reloadable object\n\t      # files will link in the last one created.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      reload_objs=\"$objlist $last_robj\"\n\t      eval concat_cmds=\\\"\\$concat_cmds$reload_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t        eval concat_cmds=\\\"\\$concat_cmds~\\$RM $last_robj\\\"\n\t      fi\n\t      func_append delfiles \" $output\"\n\n\t    else\n\t      output=\n\t    fi\n\n\t    ${skipped_export-false} && {\n\t      func_verbose \"generating symbol list for '$libname.la'\"\n\t      export_symbols=$output_objdir/$libname.exp\n\t      $opt_dry_run || $RM $export_symbols\n\t      libobjs=$output\n\t      # Append the command to create the export file.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\$concat_cmds$export_symbols_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t\teval concat_cmds=\\\"\\$concat_cmds~\\$RM $last_robj\\\"\n\t      fi\n\t    }\n\n\t    test -n \"$save_libobjs\" &&\n\t      func_verbose \"creating a temporary reloadable object file: $output\"\n\n\t    # Loop through the commands generated above and execute them.\n\t    save_ifs=$IFS; IFS='~'\n\t    for cmd in $concat_cmds; do\n\t      IFS=$save_ifs\n\t      $opt_quiet || {\n\t\t  func_quote_for_expand \"$cmd\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t      }\n\t      $opt_dry_run || eval \"$cmd\" || {\n\t\tlt_exit=$?\n\n\t\t# Restore the uninstalled library and exit\n\t\tif test relink = \"$opt_mode\"; then\n\t\t  ( cd \"$output_objdir\" && \\\n\t\t    $RM \"${realname}T\" && \\\n\t\t    $MV \"${realname}U\" \"$realname\" )\n\t\tfi\n\n\t\texit $lt_exit\n\t      }\n\t    done\n\t    IFS=$save_ifs\n\n\t    if test -n \"$export_symbols_regex\" && ${skipped_export-false}; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\n          ${skipped_export-false} && {\n\t    if test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t      tmp_export_symbols=$export_symbols\n\t      test -n \"$orig_export_symbols\" && tmp_export_symbols=$orig_export_symbols\n\t      $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\t    fi\n\n\t    if test -n \"$orig_export_symbols\"; then\n\t      # The given exports_symbols file has to be filtered, so filter it.\n\t      func_verbose \"filter symbol list for '$libname.la' to tag DATA exports\"\n\t      # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t      # 's' commands, which not all seds can handle. GNU sed should be fine\n\t      # though. Also, the filter scales superlinearly with the number of\n\t      # global variables. join(1) would be nice here, but unfortunately\n\t      # isn't a blessed tool.\n\t      $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t      func_append delfiles \" $export_symbols $output_objdir/$libname.filter\"\n\t      export_symbols=$output_objdir/$libname.def\n\t      $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\t    fi\n\t  }\n\n\t  libobjs=$output\n\t  # Restore the value of output.\n\t  output=$save_output\n\n\t  if test -n \"$convenience\" && test -n \"$whole_archive_flag_spec\"; then\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\t  # Expand the library linking commands again to reset the\n\t  # value of $libobjs for piecewise linking.\n\n\t  # Do each of the archive commands.\n\t  if test yes = \"$module\" && test -n \"$module_cmds\"; then\n\t    if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t      cmds=$module_expsym_cmds\n\t    else\n\t      cmds=$module_cmds\n\t    fi\n\t  else\n\t    if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t      cmds=$archive_expsym_cmds\n\t    else\n\t      cmds=$archive_cmds\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$delfiles\"; then\n\t  # Append the command to remove temporary files to $cmds.\n\t  eval cmds=\\\"\\$cmds~\\$RM $delfiles\\\"\n\tfi\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  func_append libobjs \" $func_extract_archives_result\"\n\t  test \"X$libobjs\" = \"X \" && libobjs=\n\tfi\n\n\tsave_ifs=$IFS; IFS='~'\n\tfor cmd in $cmds; do\n\t  IFS=$sp$nl\n\t  eval cmd=\\\"$cmd\\\"\n\t  IFS=$save_ifs\n\t  $opt_quiet || {\n\t    func_quote_for_expand \"$cmd\"\n\t    eval \"func_echo $func_quote_for_expand_result\"\n\t  }\n\t  $opt_dry_run || eval \"$cmd\" || {\n\t    lt_exit=$?\n\n\t    # Restore the uninstalled library and exit\n\t    if test relink = \"$opt_mode\"; then\n\t      ( cd \"$output_objdir\" && \\\n\t        $RM \"${realname}T\" && \\\n\t\t$MV \"${realname}U\" \"$realname\" )\n\t    fi\n\n\t    exit $lt_exit\n\t  }\n\tdone\n\tIFS=$save_ifs\n\n\t# Restore the uninstalled library and exit\n\tif test relink = \"$opt_mode\"; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?\n\n\t  if test -n \"$convenience\"; then\n\t    if test -z \"$whole_archive_flag_spec\"; then\n\t      func_show_eval '${RM}r \"$gentop\"'\n\t    fi\n\t  fi\n\n\t  exit $EXIT_SUCCESS\n\tfi\n\n\t# Create links to the real library.\n\tfor linkname in $linknames; do\n\t  if test \"$realname\" != \"$linkname\"; then\n\t    func_show_eval '(cd \"$output_objdir\" && $RM \"$linkname\" && $LN_S \"$realname\" \"$linkname\")' 'exit $?'\n\t  fi\n\tdone\n\n\t# If -module or -export-dynamic was specified, set the dlname.\n\tif test yes = \"$module\" || test yes = \"$export_dynamic\"; then\n\t  # On all known operating systems, these are identical.\n\t  dlname=$soname\n\tfi\n      fi\n      ;;\n\n    obj)\n      if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n\tfunc_warning \"'-dlopen' is ignored for objects\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"'-l' and '-L' are ignored for objects\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"'-rpath' is ignored for objects\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"'-R' is ignored for objects\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info' is ignored for objects\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for objects\"\n\n      case $output in\n      *.lo)\n\ttest -n \"$objs$old_deplibs\" && \\\n\t  func_fatal_error \"cannot build library object '$output' from non-libtool objects\"\n\n\tlibobj=$output\n\tfunc_lo2o \"$libobj\"\n\tobj=$func_lo2o_result\n\t;;\n      *)\n\tlibobj=\n\tobj=$output\n\t;;\n      esac\n\n      # Delete the old objects.\n      $opt_dry_run || $RM $obj $libobj\n\n      # Objects from convenience libraries.  This assumes\n      # single-version convenience libraries.  Whenever we create\n      # different ones for PIC/non-PIC, this we'll have to duplicate\n      # the extraction.\n      reload_conv_objs=\n      gentop=\n      # if reload_cmds runs $LD directly, get rid of -Wl from\n      # whole_archive_flag_spec and hope we can get by with turning comma\n      # into space.\n      case $reload_cmds in\n        *\\$LD[\\ \\$]*) wl= ;;\n      esac\n      if test -n \"$convenience\"; then\n\tif test -n \"$whole_archive_flag_spec\"; then\n\t  eval tmp_whole_archive_flags=\\\"$whole_archive_flag_spec\\\"\n\t  test -n \"$wl\" || tmp_whole_archive_flags=`$ECHO \"$tmp_whole_archive_flags\" | $SED 's|,| |g'`\n\t  reload_conv_objs=$reload_objs\\ $tmp_whole_archive_flags\n\telse\n\t  gentop=$output_objdir/${obj}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $convenience\n\t  reload_conv_objs=\"$reload_objs $func_extract_archives_result\"\n\tfi\n      fi\n\n      # If we're not building shared, we need to use non_pic_objs\n      test yes = \"$build_libtool_libs\" || libobjs=$non_pic_objects\n\n      # Create the old-style object.\n      reload_objs=$objs$old_deplibs' '`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.$libext$/d; /\\.lib$/d; $lo2o\" | $NL2SP`' '$reload_conv_objs\n\n      output=$obj\n      func_execute_cmds \"$reload_cmds\" 'exit $?'\n\n      # Exit if we aren't doing a library object file.\n      if test -z \"$libobj\"; then\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\texit $EXIT_SUCCESS\n      fi\n\n      test yes = \"$build_libtool_libs\" || {\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\t# Create an invalid libtool object if no PIC, so that we don't\n\t# accidentally link it into a program.\n\t# $show \"echo timestamp > $libobj\"\n\t# $opt_dry_run || eval \"echo timestamp > $libobj\" || exit $?\n\texit $EXIT_SUCCESS\n      }\n\n      if test -n \"$pic_flag\" || test default != \"$pic_mode\"; then\n\t# Only do commands if we really have different PIC objects.\n\treload_objs=\"$libobjs $reload_conv_objs\"\n\toutput=$libobj\n\tfunc_execute_cmds \"$reload_cmds\" 'exit $?'\n      fi\n\n      if test -n \"$gentop\"; then\n\tfunc_show_eval '${RM}r \"$gentop\"'\n      fi\n\n      exit $EXIT_SUCCESS\n      ;;\n\n    prog)\n      case $host in\n\t*cygwin*) func_stripname '' '.exe' \"$output\"\n\t          output=$func_stripname_result.exe;;\n      esac\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info' is ignored for programs\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for programs\"\n\n      $preload \\\n\t&& test unknown,unknown,unknown = \"$dlopen_support,$dlopen_self,$dlopen_self_static\" \\\n\t&& func_warning \"'LT_INIT([dlopen])' not used. Assuming no dlopen support.\"\n\n      case $host in\n      *-*-rhapsody* | *-*-darwin1.[012])\n\t# On Rhapsody replace the C library is the System framework\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t;;\n      esac\n\n      case $host in\n      *-*-darwin*)\n\t# Don't allow lazy linking, it breaks C++ global constructors\n\t# But is supposedly fixed on 10.4 or later (yay!).\n\tif test CXX = \"$tagname\"; then\n\t  case ${MACOSX_DEPLOYMENT_TARGET-10.0} in\n\t    10.[0123])\n\t      func_append compile_command \" $wl-bind_at_load\"\n\t      func_append finalize_command \" $wl-bind_at_load\"\n\t    ;;\n\t  esac\n\tfi\n\t# Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t;;\n      esac\n\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $compile_deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    func_append new_libs \" -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $compile_deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) func_append new_libs \" $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) func_append new_libs \" $deplib\" ;;\n\tesac\n      done\n      compile_deplibs=$new_libs\n\n\n      func_append compile_command \" $compile_deplibs\"\n      func_append finalize_command \" $finalize_deplibs\"\n\n      if test -n \"$rpath$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\tfor libdir in $rpath $xrpath; do\n\t  # This is the magic to use -rpath.\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_rpath \" $libdir\" ;;\n\t  esac\n\tdone\n      fi\n\n      # Now hardcode the library paths\n      rpath=\n      hardcode_libdirs=\n      for libdir in $compile_rpath $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=$libdir\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\tfunc_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    func_append rpath \" $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append perm_rpath \" $libdir\" ;;\n\t  esac\n\tfi\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`$ECHO \"$libdir\" | $SED -e 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$libdir:\"*) ;;\n\t  ::) dllsearchpath=$libdir;;\n\t  *) func_append dllsearchpath \":$libdir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) func_append dllsearchpath \":$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=$hardcode_libdirs\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      compile_rpath=$rpath\n\n      rpath=\n      hardcode_libdirs=\n      for libdir in $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=$libdir\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\tfunc_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    func_append rpath \" $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$finalize_perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_perm_rpath \" $libdir\" ;;\n\t  esac\n\tfi\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=$hardcode_libdirs\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      finalize_rpath=$rpath\n\n      if test -n \"$libobjs\" && test yes = \"$build_old_libs\"; then\n\t# Transform all the library objects into standard objects.\n\tcompile_command=`$ECHO \"$compile_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\tfinalize_command=`$ECHO \"$finalize_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n      fi\n\n      func_generate_dlsyms \"$outputname\" \"@PROGRAM@\" false\n\n      # template prelinking step\n      if test -n \"$prelink_cmds\"; then\n\tfunc_execute_cmds \"$prelink_cmds\" 'exit $?'\n      fi\n\n      wrappers_required=:\n      case $host in\n      *cegcc* | *mingw32ce*)\n        # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.\n        wrappers_required=false\n        ;;\n      *cygwin* | *mingw* )\n        test yes = \"$build_libtool_libs\" || wrappers_required=false\n        ;;\n      *)\n        if test no = \"$need_relink\" || test yes != \"$build_libtool_libs\"; then\n          wrappers_required=false\n        fi\n        ;;\n      esac\n      $wrappers_required || {\n\t# Replace the output file specification.\n\tcompile_command=`$ECHO \"$compile_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\tlink_command=$compile_command$compile_rpath\n\n\t# We have no uninstalled library dependencies, so finalize right now.\n\texit_status=0\n\tfunc_show_eval \"$link_command\" 'exit_status=$?'\n\n\tif test -n \"$postlink_cmds\"; then\n\t  func_to_tool_file \"$output\"\n\t  postlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\t  func_execute_cmds \"$postlink_cmds\" 'exit $?'\n\tfi\n\n\t# Delete the generated files.\n\tif test -f \"$output_objdir/${outputname}S.$objext\"; then\n\t  func_show_eval '$RM \"$output_objdir/${outputname}S.$objext\"'\n\tfi\n\n\texit $exit_status\n      }\n\n      if test -n \"$compile_shlibpath$finalize_shlibpath\"; then\n\tcompile_command=\"$shlibpath_var=\\\"$compile_shlibpath$finalize_shlibpath\\$$shlibpath_var\\\" $compile_command\"\n      fi\n      if test -n \"$finalize_shlibpath\"; then\n\tfinalize_command=\"$shlibpath_var=\\\"$finalize_shlibpath\\$$shlibpath_var\\\" $finalize_command\"\n      fi\n\n      compile_var=\n      finalize_var=\n      if test -n \"$runpath_var\"; then\n\tif test -n \"$perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $perm_rpath; do\n\t    func_append rpath \"$dir:\"\n\t  done\n\t  compile_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n\tif test -n \"$finalize_perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $finalize_perm_rpath; do\n\t    func_append rpath \"$dir:\"\n\t  done\n\t  finalize_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n      fi\n\n      if test yes = \"$no_install\"; then\n\t# We don't need to create a wrapper script.\n\tlink_command=$compile_var$compile_command$compile_rpath\n\t# Replace the output file specification.\n\tlink_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\t# Delete the old output file.\n\t$opt_dry_run || $RM $output\n\t# Link the executable and exit\n\tfunc_show_eval \"$link_command\" 'exit $?'\n\n\tif test -n \"$postlink_cmds\"; then\n\t  func_to_tool_file \"$output\"\n\t  postlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\t  func_execute_cmds \"$postlink_cmds\" 'exit $?'\n\tfi\n\n\texit $EXIT_SUCCESS\n      fi\n\n      case $hardcode_action,$fast_install in\n        relink,*)\n\t  # Fast installation is not supported\n\t  link_command=$compile_var$compile_command$compile_rpath\n\t  relink_command=$finalize_var$finalize_command$finalize_rpath\n\n\t  func_warning \"this platform does not like uninstalled shared libraries\"\n\t  func_warning \"'$output' will be relinked during installation\"\n\t  ;;\n        *,yes)\n\t  link_command=$finalize_var$compile_command$finalize_rpath\n\t  relink_command=`$ECHO \"$compile_var$compile_command$compile_rpath\" | $SED 's%@OUTPUT@%\\$progdir/\\$file%g'`\n          ;;\n\t*,no)\n\t  link_command=$compile_var$compile_command$compile_rpath\n\t  relink_command=$finalize_var$finalize_command$finalize_rpath\n          ;;\n\t*,needless)\n\t  link_command=$finalize_var$compile_command$finalize_rpath\n\t  relink_command=\n          ;;\n      esac\n\n      # Replace the output file specification.\n      link_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output_objdir/$outputname\"'%g'`\n\n      # Delete the old output files.\n      $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname\n\n      func_show_eval \"$link_command\" 'exit $?'\n\n      if test -n \"$postlink_cmds\"; then\n\tfunc_to_tool_file \"$output_objdir/$outputname\"\n\tpostlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output_objdir/$outputname\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\tfunc_execute_cmds \"$postlink_cmds\" 'exit $?'\n      fi\n\n      # Now create the wrapper script.\n      func_verbose \"creating $output\"\n\n      # Quote the relink command for shipping.\n      if test -n \"$relink_command\"; then\n\t# Preserve any variables that may affect compiler behavior\n\tfor var in $variables_saved_for_relink; do\n\t  if eval test -z \\\"\\${$var+set}\\\"; then\n\t    relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\t  elif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t    relink_command=\"$var=; export $var; $relink_command\"\n\t  else\n\t    func_quote_for_eval \"$var_value\"\n\t    relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\t  fi\n\tdone\n\trelink_command=\"(cd `pwd`; $relink_command)\"\n\trelink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      fi\n\n      # Only actually do things if not in dry run mode.\n      $opt_dry_run || {\n\t# win32 will think the script is a binary if it has\n\t# a .exe suffix, so we strip it off here.\n\tcase $output in\n\t  *.exe) func_stripname '' '.exe' \"$output\"\n\t         output=$func_stripname_result ;;\n\tesac\n\t# test for cygwin because mv fails w/o .exe extensions\n\tcase $host in\n\t  *cygwin*)\n\t    exeext=.exe\n\t    func_stripname '' '.exe' \"$outputname\"\n\t    outputname=$func_stripname_result ;;\n\t  *) exeext= ;;\n\tesac\n\tcase $host in\n\t  *cygwin* | *mingw* )\n\t    func_dirname_and_basename \"$output\" \"\" \".\"\n\t    output_name=$func_basename_result\n\t    output_path=$func_dirname_result\n\t    cwrappersource=$output_path/$objdir/lt-$output_name.c\n\t    cwrapper=$output_path/$output_name.exe\n\t    $RM $cwrappersource $cwrapper\n\t    trap \"$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_cwrapperexe_src > $cwrappersource\n\n\t    # The wrapper executable is built using the $host compiler,\n\t    # because it contains $host paths and files. If cross-\n\t    # compiling, it, like the target executable, must be\n\t    # executed on the $host or under an emulation environment.\n\t    $opt_dry_run || {\n\t      $LTCC $LTCFLAGS -o $cwrapper $cwrappersource\n\t      $STRIP $cwrapper\n\t    }\n\n\t    # Now, create the wrapper script for func_source use:\n\t    func_ltwrapper_scriptname $cwrapper\n\t    $RM $func_ltwrapper_scriptname_result\n\t    trap \"$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE\" 1 2 15\n\t    $opt_dry_run || {\n\t      # note: this script will not be executed, so do not chmod.\n\t      if test \"x$build\" = \"x$host\"; then\n\t\t$cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result\n\t      else\n\t\tfunc_emit_wrapper no > $func_ltwrapper_scriptname_result\n\t      fi\n\t    }\n\t  ;;\n\t  * )\n\t    $RM $output\n\t    trap \"$RM $output; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_wrapper no > $output\n\t    chmod +x $output\n\t  ;;\n\tesac\n      }\n      exit $EXIT_SUCCESS\n      ;;\n    esac\n\n    # See if we need to build an old-fashioned archive.\n    for oldlib in $oldlibs; do\n\n      case $build_libtool_libs in\n        convenience)\n\t  oldobjs=\"$libobjs_save $symfileobj\"\n\t  addlibs=$convenience\n\t  build_libtool_libs=no\n\t  ;;\n\tmodule)\n\t  oldobjs=$libobjs_save\n\t  addlibs=$old_convenience\n\t  build_libtool_libs=no\n          ;;\n\t*)\n\t  oldobjs=\"$old_deplibs $non_pic_objects\"\n\t  $preload && test -f \"$symfileobj\" \\\n\t    && func_append oldobjs \" $symfileobj\"\n\t  addlibs=$old_convenience\n\t  ;;\n      esac\n\n      if test -n \"$addlibs\"; then\n\tgentop=$output_objdir/${outputname}x\n\tfunc_append generated \" $gentop\"\n\n\tfunc_extract_archives $gentop $addlibs\n\tfunc_append oldobjs \" $func_extract_archives_result\"\n      fi\n\n      # Do each command in the archive commands.\n      if test -n \"$old_archive_from_new_cmds\" && test yes = \"$build_libtool_libs\"; then\n\tcmds=$old_archive_from_new_cmds\n      else\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  func_append oldobjs \" $func_extract_archives_result\"\n\tfi\n\n\t# POSIX demands no paths to be encoded in archives.  We have\n\t# to avoid creating archives with duplicate basenames if we\n\t# might have to extract them afterwards, e.g., when creating a\n\t# static archive out of a convenience library, or when linking\n\t# the entirety of a libtool archive into another (currently\n\t# not supported by libtool).\n\tif (for obj in $oldobjs\n\t    do\n\t      func_basename \"$obj\"\n\t      $ECHO \"$func_basename_result\"\n\t    done | sort | sort -uc >/dev/null 2>&1); then\n\t  :\n\telse\n\t  echo \"copying selected object files to avoid basename conflicts...\"\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\t  func_mkdir_p \"$gentop\"\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  counter=1\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_basename \"$obj\"\n\t    objbase=$func_basename_result\n\t    case \" $oldobjs \" in\n\t    \" \") oldobjs=$obj ;;\n\t    *[\\ /]\"$objbase \"*)\n\t      while :; do\n\t\t# Make sure we don't pick an alternate name that also\n\t\t# overlaps.\n\t\tnewobj=lt$counter-$objbase\n\t\tfunc_arith $counter + 1\n\t\tcounter=$func_arith_result\n\t\tcase \" $oldobjs \" in\n\t\t*[\\ /]\"$newobj \"*) ;;\n\t\t*) if test ! -f \"$gentop/$newobj\"; then break; fi ;;\n\t\tesac\n\t      done\n\t      func_show_eval \"ln $obj $gentop/$newobj || cp $obj $gentop/$newobj\"\n\t      func_append oldobjs \" $gentop/$newobj\"\n\t      ;;\n\t    *) func_append oldobjs \" $obj\" ;;\n\t    esac\n\t  done\n\tfi\n\tfunc_to_tool_file \"$oldlib\" func_convert_file_msys_to_w32\n\ttool_oldlib=$func_to_tool_file_result\n\teval cmds=\\\"$old_archive_cmds\\\"\n\n\tfunc_len \" $cmds\"\n\tlen=$func_len_result\n\tif test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  cmds=$old_archive_cmds\n\telif test -n \"$archiver_list_spec\"; then\n\t  func_verbose \"using command file archive linking...\"\n\t  for obj in $oldobjs\n\t  do\n\t    func_to_tool_file \"$obj\"\n\t    $ECHO \"$func_to_tool_file_result\"\n\t  done > $output_objdir/$libname.libcmd\n\t  func_to_tool_file \"$output_objdir/$libname.libcmd\"\n\t  oldobjs=\" $archiver_list_spec$func_to_tool_file_result\"\n\t  cmds=$old_archive_cmds\n\telse\n\t  # the command line is too long to link in one step, link in parts\n\t  func_verbose \"using piecewise archive linking...\"\n\t  save_RANLIB=$RANLIB\n\t  RANLIB=:\n\t  objlist=\n\t  concat_cmds=\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  # Is there a better way of finding the last object in the list?\n\t  for obj in $save_oldobjs\n\t  do\n\t    last_oldobj=$obj\n\t  done\n\t  eval test_cmds=\\\"$old_archive_cmds\\\"\n\t  func_len \" $test_cmds\"\n\t  len0=$func_len_result\n\t  len=$len0\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_len \" $obj\"\n\t    func_arith $len + $func_len_result\n\t    len=$func_arith_result\n\t    func_append objlist \" $obj\"\n\t    if test \"$len\" -lt \"$max_cmd_len\"; then\n\t      :\n\t    else\n\t      # the above command should be used before it gets too long\n\t      oldobjs=$objlist\n\t      if test \"$obj\" = \"$last_oldobj\"; then\n\t\tRANLIB=$save_RANLIB\n\t      fi\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\$concat_cmds$old_archive_cmds\\\"\n\t      objlist=\n\t      len=$len0\n\t    fi\n\t  done\n\t  RANLIB=$save_RANLIB\n\t  oldobjs=$objlist\n\t  if test -z \"$oldobjs\"; then\n\t    eval cmds=\\\"\\$concat_cmds\\\"\n\t  else\n\t    eval cmds=\\\"\\$concat_cmds~\\$old_archive_cmds\\\"\n\t  fi\n\tfi\n      fi\n      func_execute_cmds \"$cmds\" 'exit $?'\n    done\n\n    test -n \"$generated\" && \\\n      func_show_eval \"${RM}r$generated\"\n\n    # Now create the libtool archive.\n    case $output in\n    *.la)\n      old_library=\n      test yes = \"$build_old_libs\" && old_library=$libname.$libext\n      func_verbose \"creating $output\"\n\n      # Preserve any variables that may affect compiler behavior\n      for var in $variables_saved_for_relink; do\n\tif eval test -z \\\"\\${$var+set}\\\"; then\n\t  relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\telif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t  relink_command=\"$var=; export $var; $relink_command\"\n\telse\n\t  func_quote_for_eval \"$var_value\"\n\t  relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\tfi\n      done\n      # Quote the link command for shipping.\n      relink_command=\"(cd `pwd`; $SHELL \\\"$progpath\\\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)\"\n      relink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      if test yes = \"$hardcode_automatic\"; then\n\trelink_command=\n      fi\n\n      # Only create the output if not a dry run.\n      $opt_dry_run || {\n\tfor installed in no yes; do\n\t  if test yes = \"$installed\"; then\n\t    if test -z \"$install_libdir\"; then\n\t      break\n\t    fi\n\t    output=$output_objdir/${outputname}i\n\t    # Replace all uninstalled libtool libraries with the installed ones\n\t    newdependency_libs=\n\t    for deplib in $dependency_libs; do\n\t      case $deplib in\n\t      *.la)\n\t\tfunc_basename \"$deplib\"\n\t\tname=$func_basename_result\n\t\tfunc_resolve_sysroot \"$deplib\"\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $func_resolve_sysroot_result`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$deplib' is not a valid libtool archive\"\n\t\tfunc_append newdependency_libs \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      -L*)\n\t\tfunc_stripname -L '' \"$deplib\"\n\t\tfunc_replace_sysroot \"$func_stripname_result\"\n\t\tfunc_append newdependency_libs \" -L$func_replace_sysroot_result\"\n\t\t;;\n\t      -R*)\n\t\tfunc_stripname -R '' \"$deplib\"\n\t\tfunc_replace_sysroot \"$func_stripname_result\"\n\t\tfunc_append newdependency_libs \" -R$func_replace_sysroot_result\"\n\t\t;;\n\t      *) func_append newdependency_libs \" $deplib\" ;;\n\t      esac\n\t    done\n\t    dependency_libs=$newdependency_libs\n\t    newdlfiles=\n\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t      *.la)\n\t        func_basename \"$lib\"\n\t\tname=$func_basename_result\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$lib' is not a valid libtool archive\"\n\t\tfunc_append newdlfiles \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      *) func_append newdlfiles \" $lib\" ;;\n\t      esac\n\t    done\n\t    dlfiles=$newdlfiles\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t      *.la)\n\t\t# Only pass preopened files to the pseudo-archive (for\n\t\t# eventual linking with the app. that links it) if we\n\t\t# didn't already link the preopened objects directly into\n\t\t# the library:\n\t\tfunc_basename \"$lib\"\n\t\tname=$func_basename_result\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$lib' is not a valid libtool archive\"\n\t\tfunc_append newdlprefiles \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      esac\n\t    done\n\t    dlprefiles=$newdlprefiles\n\t  else\n\t    newdlfiles=\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=$lib ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      func_append newdlfiles \" $abs\"\n\t    done\n\t    dlfiles=$newdlfiles\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=$lib ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      func_append newdlprefiles \" $abs\"\n\t    done\n\t    dlprefiles=$newdlprefiles\n\t  fi\n\t  $RM $output\n\t  # place dlname in correct position for cygwin\n\t  # In fact, it would be nice if we could use this code for all target\n\t  # systems that can't hard-code library paths into their executables\n\t  # and that have no shared library path variable independent of PATH,\n\t  # but it turns out we can't easily determine that from inspecting\n\t  # libtool variables, so we have to hard-code the OSs to which it\n\t  # applies here; at the moment, that means platforms that use the PE\n\t  # object format with DLL files.  See the long comment at the top of\n\t  # tests/bindir.at for full details.\n\t  tdlname=$dlname\n\t  case $host,$output,$installed,$module,$dlname in\n\t    *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)\n\t      # If a -bindir argument was supplied, place the dll there.\n\t      if test -n \"$bindir\"; then\n\t\tfunc_relative_path \"$install_libdir\" \"$bindir\"\n\t\ttdlname=$func_relative_path_result/$dlname\n\t      else\n\t\t# Otherwise fall back on heuristic.\n\t\ttdlname=../bin/$dlname\n\t      fi\n\t      ;;\n\t  esac\n\t  $ECHO > $output \"\\\n# $outputname - a libtool library file\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# The name that we can dlopen(3).\ndlname='$tdlname'\n\n# Names of this library.\nlibrary_names='$library_names'\n\n# The name of the static archive.\nold_library='$old_library'\n\n# Linker flags that cannot go in dependency_libs.\ninherited_linker_flags='$new_inherited_linker_flags'\n\n# Libraries that this one depends upon.\ndependency_libs='$dependency_libs'\n\n# Names of additional weak libraries provided by this library\nweak_library_names='$weak_libs'\n\n# Version information for $libname.\ncurrent=$current\nage=$age\nrevision=$revision\n\n# Is this an already installed library?\ninstalled=$installed\n\n# Should we warn about portability when linking against -modules?\nshouldnotlink=$module\n\n# Files to dlopen/dlpreopen\ndlopen='$dlfiles'\ndlpreopen='$dlprefiles'\n\n# Directory that this library needs to be installed in:\nlibdir='$install_libdir'\"\n\t  if test no,yes = \"$installed,$need_relink\"; then\n\t    $ECHO >> $output \"\\\nrelink_command=\\\"$relink_command\\\"\"\n\t  fi\n\tdone\n      }\n\n      # Do a symbolic link so that the libtool archive can be found in\n      # LD_LIBRARY_PATH before the program is installed.\n      func_show_eval '( cd \"$output_objdir\" && $RM \"$outputname\" && $LN_S \"../$outputname\" \"$outputname\" )' 'exit $?'\n      ;;\n    esac\n    exit $EXIT_SUCCESS\n}\n\nif test link = \"$opt_mode\" || test relink = \"$opt_mode\"; then\n  func_mode_link ${1+\"$@\"}\nfi\n\n\n# func_mode_uninstall arg...\nfunc_mode_uninstall ()\n{\n    $debug_cmd\n\n    RM=$nonopt\n    files=\n    rmforce=false\n    exit_status=0\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=$magic\n\n    for arg\n    do\n      case $arg in\n      -f) func_append RM \" $arg\"; rmforce=: ;;\n      -*) func_append RM \" $arg\" ;;\n      *) func_append files \" $arg\" ;;\n      esac\n    done\n\n    test -z \"$RM\" && \\\n      func_fatal_help \"you must specify an RM program\"\n\n    rmdirs=\n\n    for file in $files; do\n      func_dirname \"$file\" \"\" \".\"\n      dir=$func_dirname_result\n      if test . = \"$dir\"; then\n\todir=$objdir\n      else\n\todir=$dir/$objdir\n      fi\n      func_basename \"$file\"\n      name=$func_basename_result\n      test uninstall = \"$opt_mode\" && odir=$dir\n\n      # Remember odir for removal later, being careful to avoid duplicates\n      if test clean = \"$opt_mode\"; then\n\tcase \" $rmdirs \" in\n\t  *\" $odir \"*) ;;\n\t  *) func_append rmdirs \" $odir\" ;;\n\tesac\n      fi\n\n      # Don't error if the file doesn't exist and rm -f was used.\n      if { test -L \"$file\"; } >/dev/null 2>&1 ||\n\t { test -h \"$file\"; } >/dev/null 2>&1 ||\n\t test -f \"$file\"; then\n\t:\n      elif test -d \"$file\"; then\n\texit_status=1\n\tcontinue\n      elif $rmforce; then\n\tcontinue\n      fi\n\n      rmfiles=$file\n\n      case $name in\n      *.la)\n\t# Possibly a libtool archive, so verify it.\n\tif func_lalib_p \"$file\"; then\n\t  func_source $dir/$name\n\n\t  # Delete the libtool libraries and symlinks.\n\t  for n in $library_names; do\n\t    func_append rmfiles \" $odir/$n\"\n\t  done\n\t  test -n \"$old_library\" && func_append rmfiles \" $odir/$old_library\"\n\n\t  case $opt_mode in\n\t  clean)\n\t    case \" $library_names \" in\n\t    *\" $dlname \"*) ;;\n\t    *) test -n \"$dlname\" && func_append rmfiles \" $odir/$dlname\" ;;\n\t    esac\n\t    test -n \"$libdir\" && func_append rmfiles \" $odir/$name $odir/${name}i\"\n\t    ;;\n\t  uninstall)\n\t    if test -n \"$library_names\"; then\n\t      # Do each command in the postuninstall commands.\n\t      func_execute_cmds \"$postuninstall_cmds\" '$rmforce || exit_status=1'\n\t    fi\n\n\t    if test -n \"$old_library\"; then\n\t      # Do each command in the old_postuninstall commands.\n\t      func_execute_cmds \"$old_postuninstall_cmds\" '$rmforce || exit_status=1'\n\t    fi\n\t    # FIXME: should reinstall the best remaining shared library.\n\t    ;;\n\t  esac\n\tfi\n\t;;\n\n      *.lo)\n\t# Possibly a libtool object, so verify it.\n\tif func_lalib_p \"$file\"; then\n\n\t  # Read the .lo file\n\t  func_source $dir/$name\n\n\t  # Add PIC object to the list of files to remove.\n\t  if test -n \"$pic_object\" && test none != \"$pic_object\"; then\n\t    func_append rmfiles \" $dir/$pic_object\"\n\t  fi\n\n\t  # Add non-PIC object to the list of files to remove.\n\t  if test -n \"$non_pic_object\" && test none != \"$non_pic_object\"; then\n\t    func_append rmfiles \" $dir/$non_pic_object\"\n\t  fi\n\tfi\n\t;;\n\n      *)\n\tif test clean = \"$opt_mode\"; then\n\t  noexename=$name\n\t  case $file in\n\t  *.exe)\n\t    func_stripname '' '.exe' \"$file\"\n\t    file=$func_stripname_result\n\t    func_stripname '' '.exe' \"$name\"\n\t    noexename=$func_stripname_result\n\t    # $file with .exe has already been added to rmfiles,\n\t    # add $file without .exe\n\t    func_append rmfiles \" $file\"\n\t    ;;\n\t  esac\n\t  # Do a test to see if this is a libtool program.\n\t  if func_ltwrapper_p \"$file\"; then\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      relink_command=\n\t      func_source $func_ltwrapper_scriptname_result\n\t      func_append rmfiles \" $func_ltwrapper_scriptname_result\"\n\t    else\n\t      relink_command=\n\t      func_source $dir/$noexename\n\t    fi\n\n\t    # note $name still contains .exe if it was in $file originally\n\t    # as does the version of $file that was added into $rmfiles\n\t    func_append rmfiles \" $odir/$name $odir/${name}S.$objext\"\n\t    if test yes = \"$fast_install\" && test -n \"$relink_command\"; then\n\t      func_append rmfiles \" $odir/lt-$name\"\n\t    fi\n\t    if test \"X$noexename\" != \"X$name\"; then\n\t      func_append rmfiles \" $odir/lt-$noexename.c\"\n\t    fi\n\t  fi\n\tfi\n\t;;\n      esac\n      func_show_eval \"$RM $rmfiles\" 'exit_status=1'\n    done\n\n    # Try to remove the $objdir's in the directories where we deleted files\n    for dir in $rmdirs; do\n      if test -d \"$dir\"; then\n\tfunc_show_eval \"rmdir $dir >/dev/null 2>&1\"\n      fi\n    done\n\n    exit $exit_status\n}\n\nif test uninstall = \"$opt_mode\" || test clean = \"$opt_mode\"; then\n  func_mode_uninstall ${1+\"$@\"}\nfi\n\ntest -z \"$opt_mode\" && {\n  help=$generic_help\n  func_fatal_help \"you must specify a MODE\"\n}\n\ntest -z \"$exec_cmd\" && \\\n  func_fatal_help \"invalid operation mode '$opt_mode'\"\n\nif test -n \"$exec_cmd\"; then\n  eval exec \"$exec_cmd\"\n  exit $EXIT_FAILURE\nfi\n\nexit $exit_status\n\n\n# The TAGs below are defined such that we never get into a situation\n# where we disable both kinds of libraries.  Given conflicting\n# choices, we go for a static library, that is the most portable,\n# since we can't tell whether shared libraries were disabled because\n# the user asked for that or because the platform doesn't support\n# them.  This is particularly important on AIX, because we don't\n# support having both static and shared libraries enabled at the same\n# time on that platform, so we default to a shared-only configuration.\n# If a disable-shared tag is given, we'll fallback to a static-only\n# configuration.  But we'll never go from static-only to shared-only.\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-shared\nbuild_libtool_libs=no\nbuild_old_libs=yes\n# ### END LIBTOOL TAG CONFIG: disable-shared\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-static\nbuild_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`\n# ### END LIBTOOL TAG CONFIG: disable-static\n\n# Local Variables:\n# mode:shell-script\n# sh-indentation:2\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/m4/codeset.m4",
    "content": "# codeset.m4 serial 5 (gettext-0.18.2)\ndnl Copyright (C) 2000-2002, 2006, 2008-2014, 2016-2017 Free Software\ndnl Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\nAC_DEFUN([AM_LANGINFO_CODESET],\n[\n  AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset],\n    [AC_LINK_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <langinfo.h>]],\n          [[char* cs = nl_langinfo(CODESET); return !cs;]])],\n       [am_cv_langinfo_codeset=yes],\n       [am_cv_langinfo_codeset=no])\n    ])\n  if test $am_cv_langinfo_codeset = yes; then\n    AC_DEFINE([HAVE_LANGINFO_CODESET], [1],\n      [Define if you have <langinfo.h> and nl_langinfo(CODESET).])\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/m4/fcntl-o.m4",
    "content": "# fcntl-o.m4 serial 4\ndnl Copyright (C) 2006, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl Written by Paul Eggert.\n\n# Test whether the flags O_NOATIME and O_NOFOLLOW actually work.\n# Define HAVE_WORKING_O_NOATIME to 1 if O_NOATIME works, or to 0 otherwise.\n# Define HAVE_WORKING_O_NOFOLLOW to 1 if O_NOFOLLOW works, or to 0 otherwise.\nAC_DEFUN([gl_FCNTL_O_FLAGS],\n[\n  dnl Persuade glibc <fcntl.h> to define O_NOATIME and O_NOFOLLOW.\n  dnl AC_USE_SYSTEM_EXTENSIONS was introduced in autoconf 2.60 and obsoletes\n  dnl AC_GNU_SOURCE.\n  m4_ifdef([AC_USE_SYSTEM_EXTENSIONS],\n    [AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])],\n    [AC_REQUIRE([AC_GNU_SOURCE])])\n\n  AC_CHECK_HEADERS_ONCE([unistd.h])\n  AC_CHECK_FUNCS_ONCE([symlink])\n  AC_CACHE_CHECK([for working fcntl.h], [gl_cv_header_working_fcntl_h],\n    [AC_RUN_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <sys/types.h>\n           #include <sys/stat.h>\n           #if HAVE_UNISTD_H\n           # include <unistd.h>\n           #else /* on Windows with MSVC */\n           # include <io.h>\n           # include <stdlib.h>\n           # defined sleep(n) _sleep ((n) * 1000)\n           #endif\n           #include <fcntl.h>\n           #ifndef O_NOATIME\n            #define O_NOATIME 0\n           #endif\n           #ifndef O_NOFOLLOW\n            #define O_NOFOLLOW 0\n           #endif\n           static int const constants[] =\n            {\n              O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND,\n              O_NONBLOCK, O_SYNC, O_ACCMODE, O_RDONLY, O_RDWR, O_WRONLY\n            };\n          ]],\n          [[\n            int result = !constants;\n            #if HAVE_SYMLINK\n            {\n              static char const sym[] = \"conftest.sym\";\n              if (symlink (\"/dev/null\", sym) != 0)\n                result |= 2;\n              else\n                {\n                  int fd = open (sym, O_WRONLY | O_NOFOLLOW | O_CREAT, 0);\n                  if (fd >= 0)\n                    {\n                      close (fd);\n                      result |= 4;\n                    }\n                }\n              if (unlink (sym) != 0 || symlink (\".\", sym) != 0)\n                result |= 2;\n              else\n                {\n                  int fd = open (sym, O_RDONLY | O_NOFOLLOW);\n                  if (fd >= 0)\n                    {\n                      close (fd);\n                      result |= 4;\n                    }\n                }\n              unlink (sym);\n            }\n            #endif\n            {\n              static char const file[] = \"confdefs.h\";\n              int fd = open (file, O_RDONLY | O_NOATIME);\n              if (fd < 0)\n                result |= 8;\n              else\n                {\n                  struct stat st0;\n                  if (fstat (fd, &st0) != 0)\n                    result |= 16;\n                  else\n                    {\n                      char c;\n                      sleep (1);\n                      if (read (fd, &c, 1) != 1)\n                        result |= 24;\n                      else\n                        {\n                          if (close (fd) != 0)\n                            result |= 32;\n                          else\n                            {\n                              struct stat st1;\n                              if (stat (file, &st1) != 0)\n                                result |= 40;\n                              else\n                                if (st0.st_atime != st1.st_atime)\n                                  result |= 64;\n                            }\n                        }\n                    }\n                }\n            }\n            return result;]])],\n       [gl_cv_header_working_fcntl_h=yes],\n       [case $? in #(\n        4) gl_cv_header_working_fcntl_h='no (bad O_NOFOLLOW)';; #(\n        64) gl_cv_header_working_fcntl_h='no (bad O_NOATIME)';; #(\n        68) gl_cv_header_working_fcntl_h='no (bad O_NOATIME, O_NOFOLLOW)';; #(\n         *) gl_cv_header_working_fcntl_h='no';;\n        esac],\n       [gl_cv_header_working_fcntl_h=cross-compiling])])\n\n  case $gl_cv_header_working_fcntl_h in #(\n  *O_NOATIME* | no | cross-compiling) ac_val=0;; #(\n  *) ac_val=1;;\n  esac\n  AC_DEFINE_UNQUOTED([HAVE_WORKING_O_NOATIME], [$ac_val],\n    [Define to 1 if O_NOATIME works.])\n\n  case $gl_cv_header_working_fcntl_h in #(\n  *O_NOFOLLOW* | no | cross-compiling) ac_val=0;; #(\n  *) ac_val=1;;\n  esac\n  AC_DEFINE_UNQUOTED([HAVE_WORKING_O_NOFOLLOW], [$ac_val],\n    [Define to 1 if O_NOFOLLOW works.])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/m4/glibc21.m4",
    "content": "# glibc21.m4 serial 5\ndnl Copyright (C) 2000-2002, 2004, 2008, 2010-2017 Free Software Foundation,\ndnl Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\n# Test for the GNU C Library, version 2.1 or newer, or uClibc.\n# From Bruno Haible.\n\nAC_DEFUN([gl_GLIBC21],\n  [\n    AC_CACHE_CHECK([whether we are using the GNU C Library >= 2.1 or uClibc],\n      [ac_cv_gnu_library_2_1],\n      [AC_EGREP_CPP([Lucky],\n        [\n#include <features.h>\n#ifdef __GNU_LIBRARY__\n #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2)\n  Lucky GNU user\n #endif\n#endif\n#ifdef __UCLIBC__\n Lucky user\n#endif\n        ],\n        [ac_cv_gnu_library_2_1=yes],\n        [ac_cv_gnu_library_2_1=no])\n      ]\n    )\n    AC_SUBST([GLIBC21])\n    GLIBC21=\"$ac_cv_gnu_library_2_1\"\n  ]\n)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/m4/libtool.m4",
    "content": "# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-\n#\n#   Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc.\n#   Written by Gordon Matzigkeit, 1996\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\nm4_define([_LT_COPYING], [dnl\n# Copyright (C) 2014 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program or library that is built\n# using GNU Libtool, you may include this file under the  same\n# distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n])\n\n# serial 58 LT_INIT\n\n\n# LT_PREREQ(VERSION)\n# ------------------\n# Complain and exit if this libtool version is less that VERSION.\nm4_defun([LT_PREREQ],\n[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,\n       [m4_default([$3],\n\t\t   [m4_fatal([Libtool version $1 or higher is required],\n\t\t             63)])],\n       [$2])])\n\n\n# _LT_CHECK_BUILDDIR\n# ------------------\n# Complain if the absolute build directory name contains unusual characters\nm4_defun([_LT_CHECK_BUILDDIR],\n[case `pwd` in\n  *\\ * | *\\\t*)\n    AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;\nesac\n])\n\n\n# LT_INIT([OPTIONS])\n# ------------------\nAC_DEFUN([LT_INIT],\n[AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK\nAC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl\nAC_BEFORE([$0], [LT_LANG])dnl\nAC_BEFORE([$0], [LT_OUTPUT])dnl\nAC_BEFORE([$0], [LTDL_INIT])dnl\nm4_require([_LT_CHECK_BUILDDIR])dnl\n\ndnl Autoconf doesn't catch unexpanded LT_ macros by default:\nm4_pattern_forbid([^_?LT_[A-Z_]+$])dnl\nm4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl\ndnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4\ndnl unless we require an AC_DEFUNed macro:\nAC_REQUIRE([LTOPTIONS_VERSION])dnl\nAC_REQUIRE([LTSUGAR_VERSION])dnl\nAC_REQUIRE([LTVERSION_VERSION])dnl\nAC_REQUIRE([LTOBSOLETE_VERSION])dnl\nm4_require([_LT_PROG_LTMAIN])dnl\n\n_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])\n\ndnl Parse OPTIONS\n_LT_SET_OPTIONS([$0], [$1])\n\n# This can be used to rebuild libtool when needed\nLIBTOOL_DEPS=$ltmain\n\n# Always use our own libtool.\nLIBTOOL=\"${CONFIG_SHELL-$SHELL} \"'$(top_builddir)/libtool'\nAC_SUBST(LIBTOOL)dnl\n\n_LT_SETUP\n\n# Only expand once:\nm4_define([LT_INIT])\n])# LT_INIT\n\n# Old names:\nAU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT])\nAU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_PROG_LIBTOOL], [])\ndnl AC_DEFUN([AM_PROG_LIBTOOL], [])\n\n\n# _LT_PREPARE_CC_BASENAME\n# -----------------------\nm4_defun([_LT_PREPARE_CC_BASENAME], [\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in @S|@*\"\"; do\n      case $cc_temp in\n        compile | *[[\\\\/]]compile | ccache | *[[\\\\/]]ccache ) ;;\n        distcc | *[[\\\\/]]distcc | purify | *[[\\\\/]]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n])# _LT_PREPARE_CC_BASENAME\n\n\n# _LT_CC_BASENAME(CC)\n# -------------------\n# It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME,\n# but that macro is also expanded into generated libtool script, which\n# arranges for $SED and $ECHO to be set by different means.\nm4_defun([_LT_CC_BASENAME],\n[m4_require([_LT_PREPARE_CC_BASENAME])dnl\nAC_REQUIRE([_LT_DECL_SED])dnl\nAC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl\nfunc_cc_basename $1\ncc_basename=$func_cc_basename_result\n])\n\n\n# _LT_FILEUTILS_DEFAULTS\n# ----------------------\n# It is okay to use these file commands and assume they have been set\n# sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'.\nm4_defun([_LT_FILEUTILS_DEFAULTS],\n[: ${CP=\"cp -f\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n])# _LT_FILEUTILS_DEFAULTS\n\n\n# _LT_SETUP\n# ---------\nm4_defun([_LT_SETUP],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nAC_REQUIRE([AC_CANONICAL_BUILD])dnl\nAC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl\nAC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl\n\n_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl\ndnl\n_LT_DECL([], [host_alias], [0], [The host system])dnl\n_LT_DECL([], [host], [0])dnl\n_LT_DECL([], [host_os], [0])dnl\ndnl\n_LT_DECL([], [build_alias], [0], [The build system])dnl\n_LT_DECL([], [build], [0])dnl\n_LT_DECL([], [build_os], [0])dnl\ndnl\nAC_REQUIRE([AC_PROG_CC])dnl\nAC_REQUIRE([LT_PATH_LD])dnl\nAC_REQUIRE([LT_PATH_NM])dnl\ndnl\nAC_REQUIRE([AC_PROG_LN_S])dnl\ntest -z \"$LN_S\" && LN_S=\"ln -s\"\n_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl\ndnl\nAC_REQUIRE([LT_CMD_MAX_LEN])dnl\n_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally \"o\")])dnl\n_LT_DECL([], [exeext], [0], [Executable file suffix (normally \"\")])dnl\ndnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_CHECK_SHELL_FEATURES])dnl\nm4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl\nm4_require([_LT_CMD_RELOAD])dnl\nm4_require([_LT_CHECK_MAGIC_METHOD])dnl\nm4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl\nm4_require([_LT_CMD_OLD_ARCHIVE])dnl\nm4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl\nm4_require([_LT_WITH_SYSROOT])dnl\nm4_require([_LT_CMD_TRUNCATE])dnl\n\n_LT_CONFIG_LIBTOOL_INIT([\n# See if we are running on zsh, and set the options that allow our\n# commands through without removal of \\ escapes INIT.\nif test -n \"\\${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n])\nif test -n \"${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n\n_LT_CHECK_OBJDIR\n\nm4_require([_LT_TAG_COMPILER])dnl\n\ncase $host_os in\naix3*)\n  # AIX sometimes has problems with the GCC collect2 program.  For some\n  # reason, if we set the COLLECT_NAMES environment variable, the problems\n  # vanish in a puff of smoke.\n  if test set != \"${COLLECT_NAMES+set}\"; then\n    COLLECT_NAMES=\n    export COLLECT_NAMES\n  fi\n  ;;\nesac\n\n# Global variables:\nofile=libtool\ncan_build_shared=yes\n\n# All known linkers require a '.a' archive for static linking (except MSVC,\n# which needs '.lib').\nlibext=a\n\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n\nold_CC=$CC\nold_CFLAGS=$CFLAGS\n\n# Set sane defaults for various variables\ntest -z \"$CC\" && CC=cc\ntest -z \"$LTCC\" && LTCC=$CC\ntest -z \"$LTCFLAGS\" && LTCFLAGS=$CFLAGS\ntest -z \"$LD\" && LD=ld\ntest -z \"$ac_objext\" && ac_objext=o\n\n_LT_CC_BASENAME([$compiler])\n\n# Only perform the check for file, if the check method requires it\ntest -z \"$MAGIC_CMD\" && MAGIC_CMD=file\ncase $deplibs_check_method in\nfile_magic*)\n  if test \"$file_magic_cmd\" = '$MAGIC_CMD'; then\n    _LT_PATH_MAGIC\n  fi\n  ;;\nesac\n\n# Use C for the default configuration in the libtool script\nLT_SUPPORTED_TAG([CC])\n_LT_LANG_C_CONFIG\n_LT_LANG_DEFAULT_CONFIG\n_LT_CONFIG_COMMANDS\n])# _LT_SETUP\n\n\n# _LT_PREPARE_SED_QUOTE_VARS\n# --------------------------\n# Define a few sed substitution that help us do robust quoting.\nm4_defun([_LT_PREPARE_SED_QUOTE_VARS],\n[# Backslashify metacharacters that are still active within\n# double-quoted strings.\nsed_quote_subst='s/\\([[\"`$\\\\]]\\)/\\\\\\1/g'\n\n# Same as above, but do not quote variable references.\ndouble_quote_subst='s/\\([[\"`\\\\]]\\)/\\\\\\1/g'\n\n# Sed substitution to delay expansion of an escaped shell variable in a\n# double_quote_subst'ed string.\ndelay_variable_subst='s/\\\\\\\\\\\\\\\\\\\\\\$/\\\\\\\\\\\\$/g'\n\n# Sed substitution to delay expansion of an escaped single quote.\ndelay_single_quote_subst='s/'\\''/'\\'\\\\\\\\\\\\\\'\\''/g'\n\n# Sed substitution to avoid accidental globbing in evaled expressions\nno_glob_subst='s/\\*/\\\\\\*/g'\n])\n\n# _LT_PROG_LTMAIN\n# ---------------\n# Note that this code is called both from 'configure', and 'config.status'\n# now that we use AC_CONFIG_COMMANDS to generate libtool.  Notably,\n# 'config.status' has no value for ac_aux_dir unless we are using Automake,\n# so we pass a copy along to make sure it has a sensible value anyway.\nm4_defun([_LT_PROG_LTMAIN],\n[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl\n_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])\nltmain=$ac_aux_dir/ltmain.sh\n])# _LT_PROG_LTMAIN\n\n\n## ------------------------------------- ##\n## Accumulate code for creating libtool. ##\n## ------------------------------------- ##\n\n# So that we can recreate a full libtool script including additional\n# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS\n# in macros and then make a single call at the end using the 'libtool'\n# label.\n\n\n# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS])\n# ----------------------------------------\n# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later.\nm4_define([_LT_CONFIG_LIBTOOL_INIT],\n[m4_ifval([$1],\n          [m4_append([_LT_OUTPUT_LIBTOOL_INIT],\n                     [$1\n])])])\n\n# Initialize.\nm4_define([_LT_OUTPUT_LIBTOOL_INIT])\n\n\n# _LT_CONFIG_LIBTOOL([COMMANDS])\n# ------------------------------\n# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later.\nm4_define([_LT_CONFIG_LIBTOOL],\n[m4_ifval([$1],\n          [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS],\n                     [$1\n])])])\n\n# Initialize.\nm4_define([_LT_OUTPUT_LIBTOOL_COMMANDS])\n\n\n# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS])\n# -----------------------------------------------------\nm4_defun([_LT_CONFIG_SAVE_COMMANDS],\n[_LT_CONFIG_LIBTOOL([$1])\n_LT_CONFIG_LIBTOOL_INIT([$2])\n])\n\n\n# _LT_FORMAT_COMMENT([COMMENT])\n# -----------------------------\n# Add leading comment marks to the start of each line, and a trailing\n# full-stop to the whole comment if one is not present already.\nm4_define([_LT_FORMAT_COMMENT],\n[m4_ifval([$1], [\nm4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])],\n              [['`$\\]], [\\\\\\&])]m4_bmatch([$1], [[!?.]$], [], [.])\n)])\n\n\n\n## ------------------------ ##\n## FIXME: Eliminate VARNAME ##\n## ------------------------ ##\n\n\n# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])\n# -------------------------------------------------------------------\n# CONFIGNAME is the name given to the value in the libtool script.\n# VARNAME is the (base) name used in the configure script.\n# VALUE may be 0, 1 or 2 for a computed quote escaped value based on\n# VARNAME.  Any other value will be used directly.\nm4_define([_LT_DECL],\n[lt_if_append_uniq([lt_decl_varnames], [$2], [, ],\n    [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name],\n\t[m4_ifval([$1], [$1], [$2])])\n    lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3])\n    m4_ifval([$4],\n\t[lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])\n    lt_dict_add_subkey([lt_decl_dict], [$2],\n\t[tagged?], [m4_ifval([$5], [yes], [no])])])\n])\n\n\n# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])\n# --------------------------------------------------------\nm4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])\n\n\n# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])\n# ------------------------------------------------\nm4_define([lt_decl_tag_varnames],\n[_lt_decl_filter([tagged?], [yes], $@)])\n\n\n# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])\n# ---------------------------------------------------------\nm4_define([_lt_decl_filter],\n[m4_case([$#],\n  [0], [m4_fatal([$0: too few arguments: $#])],\n  [1], [m4_fatal([$0: too few arguments: $#: $1])],\n  [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)],\n  [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)],\n  [lt_dict_filter([lt_decl_dict], $@)])[]dnl\n])\n\n\n# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])\n# --------------------------------------------------\nm4_define([lt_decl_quote_varnames],\n[_lt_decl_filter([value], [1], $@)])\n\n\n# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])\n# ---------------------------------------------------\nm4_define([lt_decl_dquote_varnames],\n[_lt_decl_filter([value], [2], $@)])\n\n\n# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])\n# ---------------------------------------------------\nm4_define([lt_decl_varnames_tagged],\n[m4_assert([$# <= 2])dnl\n_$0(m4_quote(m4_default([$1], [[, ]])),\n    m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]),\n    m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))])\nm4_define([_lt_decl_varnames_tagged],\n[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])])\n\n\n# lt_decl_all_varnames([SEPARATOR], [VARNAME1...])\n# ------------------------------------------------\nm4_define([lt_decl_all_varnames],\n[_$0(m4_quote(m4_default([$1], [[, ]])),\n     m4_if([$2], [],\n\t   m4_quote(lt_decl_varnames),\n\tm4_quote(m4_shift($@))))[]dnl\n])\nm4_define([_lt_decl_all_varnames],\n[lt_join($@, lt_decl_varnames_tagged([$1],\n\t\t\tlt_decl_tag_varnames([[, ]], m4_shift($@))))dnl\n])\n\n\n# _LT_CONFIG_STATUS_DECLARE([VARNAME])\n# ------------------------------------\n# Quote a variable value, and forward it to 'config.status' so that its\n# declaration there will have the same value as in 'configure'.  VARNAME\n# must have a single quote delimited value for this to work.\nm4_define([_LT_CONFIG_STATUS_DECLARE],\n[$1='`$ECHO \"$][$1\" | $SED \"$delay_single_quote_subst\"`'])\n\n\n# _LT_CONFIG_STATUS_DECLARATIONS\n# ------------------------------\n# We delimit libtool config variables with single quotes, so when\n# we write them to config.status, we have to be sure to quote all\n# embedded single quotes properly.  In configure, this macro expands\n# each variable declared with _LT_DECL (and _LT_TAGDECL) into:\n#\n#    <var>='`$ECHO \"$<var>\" | $SED \"$delay_single_quote_subst\"`'\nm4_defun([_LT_CONFIG_STATUS_DECLARATIONS],\n[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),\n    [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])\n\n\n# _LT_LIBTOOL_TAGS\n# ----------------\n# Output comment and list of tags supported by the script\nm4_defun([_LT_LIBTOOL_TAGS],\n[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl\navailable_tags='_LT_TAGS'dnl\n])\n\n\n# _LT_LIBTOOL_DECLARE(VARNAME, [TAG])\n# -----------------------------------\n# Extract the dictionary values for VARNAME (optionally with TAG) and\n# expand to a commented shell variable setting:\n#\n#    # Some comment about what VAR is for.\n#    visible_name=$lt_internal_name\nm4_define([_LT_LIBTOOL_DECLARE],\n[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1],\n\t\t\t\t\t   [description])))[]dnl\nm4_pushdef([_libtool_name],\n    m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl\nm4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])),\n    [0], [_libtool_name=[$]$1],\n    [1], [_libtool_name=$lt_[]$1],\n    [2], [_libtool_name=$lt_[]$1],\n    [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl\nm4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl\n])\n\n\n# _LT_LIBTOOL_CONFIG_VARS\n# -----------------------\n# Produce commented declarations of non-tagged libtool config variables\n# suitable for insertion in the LIBTOOL CONFIG section of the 'libtool'\n# script.  Tagged libtool config variables (even for the LIBTOOL CONFIG\n# section) are produced by _LT_LIBTOOL_TAG_VARS.\nm4_defun([_LT_LIBTOOL_CONFIG_VARS],\n[m4_foreach([_lt_var],\n    m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)),\n    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])])\n\n\n# _LT_LIBTOOL_TAG_VARS(TAG)\n# -------------------------\nm4_define([_LT_LIBTOOL_TAG_VARS],\n[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames),\n    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])])\n\n\n# _LT_TAGVAR(VARNAME, [TAGNAME])\n# ------------------------------\nm4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])\n\n\n# _LT_CONFIG_COMMANDS\n# -------------------\n# Send accumulated output to $CONFIG_STATUS.  Thanks to the lists of\n# variables for single and double quote escaping we saved from calls\n# to _LT_DECL, we can put quote escaped variables declarations\n# into 'config.status', and then the shell code to quote escape them in\n# for loops in 'config.status'.  Finally, any additional code accumulated\n# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.\nm4_defun([_LT_CONFIG_COMMANDS],\n[AC_PROVIDE_IFELSE([LT_OUTPUT],\n\tdnl If the libtool generation code has been placed in $CONFIG_LT,\n\tdnl instead of duplicating it all over again into config.status,\n\tdnl then we will have config.status run $CONFIG_LT later, so it\n\tdnl needs to know what name is stored there:\n        [AC_CONFIG_COMMANDS([libtool],\n            [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])],\n    dnl If the libtool generation code is destined for config.status,\n    dnl expand the accumulated commands and init code now:\n    [AC_CONFIG_COMMANDS([libtool],\n        [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])])\n])#_LT_CONFIG_COMMANDS\n\n\n# Initialize.\nm4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT],\n[\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nsed_quote_subst='$sed_quote_subst'\ndouble_quote_subst='$double_quote_subst'\ndelay_variable_subst='$delay_variable_subst'\n_LT_CONFIG_STATUS_DECLARATIONS\nLTCC='$LTCC'\nLTCFLAGS='$LTCFLAGS'\ncompiler='$compiler_DEFAULT'\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$[]1\n_LTECHO_EOF'\n}\n\n# Quote evaled strings.\nfor var in lt_decl_all_varnames([[ \\\n]], lt_decl_quote_varnames); do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED \\\\\"\\\\\\$sed_quote_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\n# Double-quote double-evaled strings.\nfor var in lt_decl_all_varnames([[ \\\n]], lt_decl_dquote_varnames); do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED -e \\\\\"\\\\\\$double_quote_subst\\\\\" -e \\\\\"\\\\\\$sed_quote_subst\\\\\" -e \\\\\"\\\\\\$delay_variable_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\n_LT_OUTPUT_LIBTOOL_INIT\n])\n\n# _LT_GENERATED_FILE_INIT(FILE, [COMMENT])\n# ------------------------------------\n# Generate a child script FILE with all initialization necessary to\n# reuse the environment learned by the parent script, and make the\n# file executable.  If COMMENT is supplied, it is inserted after the\n# '#!' sequence but before initialization text begins.  After this\n# macro, additional text can be appended to FILE to form the body of\n# the child script.  The macro ends with non-zero status if the\n# file could not be fully written (such as if the disk is full).\nm4_ifdef([AS_INIT_GENERATED],\n[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])],\n[m4_defun([_LT_GENERATED_FILE_INIT],\n[m4_require([AS_PREPARE])]dnl\n[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl\n[lt_write_fail=0\ncat >$1 <<_ASEOF || lt_write_fail=1\n#! $SHELL\n# Generated by $as_me.\n$2\nSHELL=\\${CONFIG_SHELL-$SHELL}\nexport SHELL\n_ASEOF\ncat >>$1 <<\\_ASEOF || lt_write_fail=1\nAS_SHELL_SANITIZE\n_AS_PREPARE\nexec AS_MESSAGE_FD>&1\n_ASEOF\ntest 0 = \"$lt_write_fail\" && chmod +x $1[]dnl\nm4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT\n\n# LT_OUTPUT\n# ---------\n# This macro allows early generation of the libtool script (before\n# AC_OUTPUT is called), incase it is used in configure for compilation\n# tests.\nAC_DEFUN([LT_OUTPUT],\n[: ${CONFIG_LT=./config.lt}\nAC_MSG_NOTICE([creating $CONFIG_LT])\n_LT_GENERATED_FILE_INIT([\"$CONFIG_LT\"],\n[# Run this file to recreate a libtool stub with the current configuration.])\n\ncat >>\"$CONFIG_LT\" <<\\_LTEOF\nlt_cl_silent=false\nexec AS_MESSAGE_LOG_FD>>config.log\n{\n  echo\n  AS_BOX([Running $as_me.])\n} >&AS_MESSAGE_LOG_FD\n\nlt_cl_help=\"\\\n'$as_me' creates a local libtool stub from the current configuration,\nfor use in further configure time tests before the real libtool is\ngenerated.\n\nUsage: $[0] [[OPTIONS]]\n\n  -h, --help      print this help, then exit\n  -V, --version   print version number, then exit\n  -q, --quiet     do not print progress messages\n  -d, --debug     don't remove temporary files\n\nReport bugs to <bug-libtool@gnu.org>.\"\n\nlt_cl_version=\"\\\nm4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl\nm4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])\nconfigured by $[0], generated by m4_PACKAGE_STRING.\n\nCopyright (C) 2011 Free Software Foundation, Inc.\nThis config.lt script is free software; the Free Software Foundation\ngives unlimited permision to copy, distribute and modify it.\"\n\nwhile test 0 != $[#]\ndo\n  case $[1] in\n    --version | --v* | -V )\n      echo \"$lt_cl_version\"; exit 0 ;;\n    --help | --h* | -h )\n      echo \"$lt_cl_help\"; exit 0 ;;\n    --debug | --d* | -d )\n      debug=: ;;\n    --quiet | --q* | --silent | --s* | -q )\n      lt_cl_silent=: ;;\n\n    -*) AC_MSG_ERROR([unrecognized option: $[1]\nTry '$[0] --help' for more information.]) ;;\n\n    *) AC_MSG_ERROR([unrecognized argument: $[1]\nTry '$[0] --help' for more information.]) ;;\n  esac\n  shift\ndone\n\nif $lt_cl_silent; then\n  exec AS_MESSAGE_FD>/dev/null\nfi\n_LTEOF\n\ncat >>\"$CONFIG_LT\" <<_LTEOF\n_LT_OUTPUT_LIBTOOL_COMMANDS_INIT\n_LTEOF\n\ncat >>\"$CONFIG_LT\" <<\\_LTEOF\nAC_MSG_NOTICE([creating $ofile])\n_LT_OUTPUT_LIBTOOL_COMMANDS\nAS_EXIT(0)\n_LTEOF\nchmod +x \"$CONFIG_LT\"\n\n# configure is writing to config.log, but config.lt does its own redirection,\n# appending to config.log, which fails on DOS, as config.log is still kept\n# open by configure.  Here we exec the FD to /dev/null, effectively closing\n# config.log, so it can be properly (re)opened and appended to by config.lt.\nlt_cl_success=:\ntest yes = \"$silent\" &&\n  lt_config_lt_args=\"$lt_config_lt_args --quiet\"\nexec AS_MESSAGE_LOG_FD>/dev/null\n$SHELL \"$CONFIG_LT\" $lt_config_lt_args || lt_cl_success=false\nexec AS_MESSAGE_LOG_FD>>config.log\n$lt_cl_success || AS_EXIT(1)\n])# LT_OUTPUT\n\n\n# _LT_CONFIG(TAG)\n# ---------------\n# If TAG is the built-in tag, create an initial libtool script with a\n# default configuration from the untagged config vars.  Otherwise add code\n# to config.status for appending the configuration named by TAG from the\n# matching tagged config vars.\nm4_defun([_LT_CONFIG],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\n_LT_CONFIG_SAVE_COMMANDS([\n  m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl\n  m4_if(_LT_TAG, [C], [\n    # See if we are running on zsh, and set the options that allow our\n    # commands through without removal of \\ escapes.\n    if test -n \"${ZSH_VERSION+set}\"; then\n      setopt NO_GLOB_SUBST\n    fi\n\n    cfgfile=${ofile}T\n    trap \"$RM \\\"$cfgfile\\\"; exit 1\" 1 2 15\n    $RM \"$cfgfile\"\n\n    cat <<_LT_EOF >> \"$cfgfile\"\n#! $SHELL\n# Generated automatically by $as_me ($PACKAGE) $VERSION\n# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit, 1996\n\n_LT_COPYING\n_LT_LIBTOOL_TAGS\n\n# Configured defaults for sys_lib_dlsearch_path munging.\n: \\${LT_SYS_LIBRARY_PATH=\"$configure_time_lt_sys_library_path\"}\n\n# ### BEGIN LIBTOOL CONFIG\n_LT_LIBTOOL_CONFIG_VARS\n_LT_LIBTOOL_TAG_VARS\n# ### END LIBTOOL CONFIG\n\n_LT_EOF\n\n    cat <<'_LT_EOF' >> \"$cfgfile\"\n\n# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE\n\n_LT_PREPARE_MUNGE_PATH_LIST\n_LT_PREPARE_CC_BASENAME\n\n# ### END FUNCTIONS SHARED WITH CONFIGURE\n\n_LT_EOF\n\n  case $host_os in\n  aix3*)\n    cat <<\\_LT_EOF >> \"$cfgfile\"\n# AIX sometimes has problems with the GCC collect2 program.  For some\n# reason, if we set the COLLECT_NAMES environment variable, the problems\n# vanish in a puff of smoke.\nif test set != \"${COLLECT_NAMES+set}\"; then\n  COLLECT_NAMES=\n  export COLLECT_NAMES\nfi\n_LT_EOF\n    ;;\n  esac\n\n  _LT_PROG_LTMAIN\n\n  # We use sed instead of cat because bash on DJGPP gets confused if\n  # if finds mixed CR/LF and LF-only lines.  Since sed operates in\n  # text mode, it properly converts lines to CR/LF.  This bash problem\n  # is reportedly fixed, but why not run on old versions too?\n  sed '$q' \"$ltmain\" >> \"$cfgfile\" \\\n     || (rm -f \"$cfgfile\"; exit 1)\n\n   mv -f \"$cfgfile\" \"$ofile\" ||\n    (rm -f \"$ofile\" && cp \"$cfgfile\" \"$ofile\" && rm -f \"$cfgfile\")\n  chmod +x \"$ofile\"\n],\n[cat <<_LT_EOF >> \"$ofile\"\n\ndnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded\ndnl in a comment (ie after a #).\n# ### BEGIN LIBTOOL TAG CONFIG: $1\n_LT_LIBTOOL_TAG_VARS(_LT_TAG)\n# ### END LIBTOOL TAG CONFIG: $1\n_LT_EOF\n])dnl /m4_if\n],\n[m4_if([$1], [], [\n    PACKAGE='$PACKAGE'\n    VERSION='$VERSION'\n    RM='$RM'\n    ofile='$ofile'], [])\n])dnl /_LT_CONFIG_SAVE_COMMANDS\n])# _LT_CONFIG\n\n\n# LT_SUPPORTED_TAG(TAG)\n# ---------------------\n# Trace this macro to discover what tags are supported by the libtool\n# --tag option, using:\n#    autoconf --trace 'LT_SUPPORTED_TAG:$1'\nAC_DEFUN([LT_SUPPORTED_TAG], [])\n\n\n# C support is built-in for now\nm4_define([_LT_LANG_C_enabled], [])\nm4_define([_LT_TAGS], [])\n\n\n# LT_LANG(LANG)\n# -------------\n# Enable libtool support for the given language if not already enabled.\nAC_DEFUN([LT_LANG],\n[AC_BEFORE([$0], [LT_OUTPUT])dnl\nm4_case([$1],\n  [C],\t\t\t[_LT_LANG(C)],\n  [C++],\t\t[_LT_LANG(CXX)],\n  [Go],\t\t\t[_LT_LANG(GO)],\n  [Java],\t\t[_LT_LANG(GCJ)],\n  [Fortran 77],\t\t[_LT_LANG(F77)],\n  [Fortran],\t\t[_LT_LANG(FC)],\n  [Windows Resource],\t[_LT_LANG(RC)],\n  [m4_ifdef([_LT_LANG_]$1[_CONFIG],\n    [_LT_LANG($1)],\n    [m4_fatal([$0: unsupported language: \"$1\"])])])dnl\n])# LT_LANG\n\n\n# _LT_LANG(LANGNAME)\n# ------------------\nm4_defun([_LT_LANG],\n[m4_ifdef([_LT_LANG_]$1[_enabled], [],\n  [LT_SUPPORTED_TAG([$1])dnl\n  m4_append([_LT_TAGS], [$1 ])dnl\n  m4_define([_LT_LANG_]$1[_enabled], [])dnl\n  _LT_LANG_$1_CONFIG($1)])dnl\n])# _LT_LANG\n\n\nm4_ifndef([AC_PROG_GO], [\n############################################################\n# NOTE: This macro has been submitted for inclusion into   #\n#  GNU Autoconf as AC_PROG_GO.  When it is available in    #\n#  a released version of Autoconf we should remove this    #\n#  macro and use it instead.                               #\n############################################################\nm4_defun([AC_PROG_GO],\n[AC_LANG_PUSH(Go)dnl\nAC_ARG_VAR([GOC],     [Go compiler command])dnl\nAC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl\n_AC_ARG_VAR_LDFLAGS()dnl\nAC_CHECK_TOOL(GOC, gccgo)\nif test -z \"$GOC\"; then\n  if test -n \"$ac_tool_prefix\"; then\n    AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo])\n  fi\nfi\nif test -z \"$GOC\"; then\n  AC_CHECK_PROG(GOC, gccgo, gccgo, false)\nfi\n])#m4_defun\n])#m4_ifndef\n\n\n# _LT_LANG_DEFAULT_CONFIG\n# -----------------------\nm4_defun([_LT_LANG_DEFAULT_CONFIG],\n[AC_PROVIDE_IFELSE([AC_PROG_CXX],\n  [LT_LANG(CXX)],\n  [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])])\n\nAC_PROVIDE_IFELSE([AC_PROG_F77],\n  [LT_LANG(F77)],\n  [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])])\n\nAC_PROVIDE_IFELSE([AC_PROG_FC],\n  [LT_LANG(FC)],\n  [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])])\n\ndnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal\ndnl pulling things in needlessly.\nAC_PROVIDE_IFELSE([AC_PROG_GCJ],\n  [LT_LANG(GCJ)],\n  [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],\n    [LT_LANG(GCJ)],\n    [AC_PROVIDE_IFELSE([LT_PROG_GCJ],\n      [LT_LANG(GCJ)],\n      [m4_ifdef([AC_PROG_GCJ],\n\t[m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])])\n       m4_ifdef([A][M_PROG_GCJ],\n\t[m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])])\n       m4_ifdef([LT_PROG_GCJ],\n\t[m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])\n\nAC_PROVIDE_IFELSE([AC_PROG_GO],\n  [LT_LANG(GO)],\n  [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])])\n\nAC_PROVIDE_IFELSE([LT_PROG_RC],\n  [LT_LANG(RC)],\n  [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])\n])# _LT_LANG_DEFAULT_CONFIG\n\n# Obsolete macros:\nAU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])\nAU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])\nAU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])\nAU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])\nAU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_CXX], [])\ndnl AC_DEFUN([AC_LIBTOOL_F77], [])\ndnl AC_DEFUN([AC_LIBTOOL_FC], [])\ndnl AC_DEFUN([AC_LIBTOOL_GCJ], [])\ndnl AC_DEFUN([AC_LIBTOOL_RC], [])\n\n\n# _LT_TAG_COMPILER\n# ----------------\nm4_defun([_LT_TAG_COMPILER],\n[AC_REQUIRE([AC_PROG_CC])dnl\n\n_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl\n_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl\n_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl\n_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n])# _LT_TAG_COMPILER\n\n\n# _LT_COMPILER_BOILERPLATE\n# ------------------------\n# Check for compiler boilerplate output or warnings with\n# the simple compiler test code.\nm4_defun([_LT_COMPILER_BOILERPLATE],\n[m4_require([_LT_DECL_SED])dnl\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_compile_test_code\" >conftest.$ac_ext\neval \"$ac_compile\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_compiler_boilerplate=`cat conftest.err`\n$RM conftest*\n])# _LT_COMPILER_BOILERPLATE\n\n\n# _LT_LINKER_BOILERPLATE\n# ----------------------\n# Check for linker boilerplate output or warnings with\n# the simple link test code.\nm4_defun([_LT_LINKER_BOILERPLATE],\n[m4_require([_LT_DECL_SED])dnl\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_link_test_code\" >conftest.$ac_ext\neval \"$ac_link\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_linker_boilerplate=`cat conftest.err`\n$RM -r conftest*\n])# _LT_LINKER_BOILERPLATE\n\n# _LT_REQUIRED_DARWIN_CHECKS\n# -------------------------\nm4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[\n  case $host_os in\n    rhapsody* | darwin*)\n    AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])\n    AC_CHECK_TOOL([NMEDIT], [nmedit], [:])\n    AC_CHECK_TOOL([LIPO], [lipo], [:])\n    AC_CHECK_TOOL([OTOOL], [otool], [:])\n    AC_CHECK_TOOL([OTOOL64], [otool64], [:])\n    _LT_DECL([], [DSYMUTIL], [1],\n      [Tool to manipulate archived DWARF debug symbol files on Mac OS X])\n    _LT_DECL([], [NMEDIT], [1],\n      [Tool to change global to local symbols on Mac OS X])\n    _LT_DECL([], [LIPO], [1],\n      [Tool to manipulate fat objects and archives on Mac OS X])\n    _LT_DECL([], [OTOOL], [1],\n      [ldd/readelf like tool for Mach-O binaries on Mac OS X])\n    _LT_DECL([], [OTOOL64], [1],\n      [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])\n\n    AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],\n      [lt_cv_apple_cc_single_mod=no\n      if test -z \"$LT_MULTI_MODULE\"; then\n\t# By default we will add the -single_module flag. You can override\n\t# by either setting the environment variable LT_MULTI_MODULE\n\t# non-empty at configure time, or by adding -multi_module to the\n\t# link flags.\n\trm -rf libconftest.dylib*\n\techo \"int foo(void){return 1;}\" > conftest.c\n\techo \"$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n-dynamiclib -Wl,-single_module conftest.c\" >&AS_MESSAGE_LOG_FD\n\t$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n\t  -dynamiclib -Wl,-single_module conftest.c 2>conftest.err\n        _lt_result=$?\n\t# If there is a non-empty error log, and \"single_module\"\n\t# appears in it, assume the flag caused a linker warning\n        if test -s conftest.err && $GREP single_module conftest.err; then\n\t  cat conftest.err >&AS_MESSAGE_LOG_FD\n\t# Otherwise, if the output was created with a 0 exit code from\n\t# the compiler, it worked.\n\telif test -f libconftest.dylib && test 0 = \"$_lt_result\"; then\n\t  lt_cv_apple_cc_single_mod=yes\n\telse\n\t  cat conftest.err >&AS_MESSAGE_LOG_FD\n\tfi\n\trm -rf libconftest.dylib*\n\trm -f conftest.*\n      fi])\n\n    AC_CACHE_CHECK([for -exported_symbols_list linker flag],\n      [lt_cv_ld_exported_symbols_list],\n      [lt_cv_ld_exported_symbols_list=no\n      save_LDFLAGS=$LDFLAGS\n      echo \"_main\" > conftest.sym\n      LDFLAGS=\"$LDFLAGS -Wl,-exported_symbols_list,conftest.sym\"\n      AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],\n\t[lt_cv_ld_exported_symbols_list=yes],\n\t[lt_cv_ld_exported_symbols_list=no])\n\tLDFLAGS=$save_LDFLAGS\n    ])\n\n    AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load],\n      [lt_cv_ld_force_load=no\n      cat > conftest.c << _LT_EOF\nint forced_loaded() { return 2;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS -c -o conftest.o conftest.c\" >&AS_MESSAGE_LOG_FD\n      $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD\n      echo \"$AR cru libconftest.a conftest.o\" >&AS_MESSAGE_LOG_FD\n      $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD\n      echo \"$RANLIB libconftest.a\" >&AS_MESSAGE_LOG_FD\n      $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD\n      cat > conftest.c << _LT_EOF\nint main() { return 0;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a\" >&AS_MESSAGE_LOG_FD\n      $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err\n      _lt_result=$?\n      if test -s conftest.err && $GREP force_load conftest.err; then\n\tcat conftest.err >&AS_MESSAGE_LOG_FD\n      elif test -f conftest && test 0 = \"$_lt_result\" && $GREP forced_load conftest >/dev/null 2>&1; then\n\tlt_cv_ld_force_load=yes\n      else\n\tcat conftest.err >&AS_MESSAGE_LOG_FD\n      fi\n        rm -f conftest.err libconftest.a conftest conftest.c\n        rm -rf conftest.dSYM\n    ])\n    case $host_os in\n    rhapsody* | darwin1.[[012]])\n      _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;;\n    darwin1.*)\n      _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;\n    darwin*) # darwin 5.x on\n      # if running on 10.5 or later, the deployment target defaults\n      # to the OS version, if on x86, and 10.4, the deployment\n      # target defaults to 10.4. Don't you love it?\n      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in\n\t10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)\n\t  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;\n\t10.[[012]][[,.]]*)\n\t  _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;\n\t10.*)\n\t  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;\n      esac\n    ;;\n  esac\n    if test yes = \"$lt_cv_apple_cc_single_mod\"; then\n      _lt_dar_single_mod='$single_module'\n    fi\n    if test yes = \"$lt_cv_ld_exported_symbols_list\"; then\n      _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'\n    else\n      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib'\n    fi\n    if test : != \"$DSYMUTIL\" && test no = \"$lt_cv_ld_force_load\"; then\n      _lt_dsymutil='~$DSYMUTIL $lib || :'\n    else\n      _lt_dsymutil=\n    fi\n    ;;\n  esac\n])\n\n\n# _LT_DARWIN_LINKER_FEATURES([TAG])\n# ---------------------------------\n# Checks for linker and compiler features on darwin\nm4_defun([_LT_DARWIN_LINKER_FEATURES],\n[\n  m4_require([_LT_REQUIRED_DARWIN_CHECKS])\n  _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n  _LT_TAGVAR(hardcode_direct, $1)=no\n  _LT_TAGVAR(hardcode_automatic, $1)=yes\n  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported\n  if test yes = \"$lt_cv_ld_force_load\"; then\n    _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience $wl-force_load,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"`'\n    m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes],\n                  [FC],  [_LT_TAGVAR(compiler_needs_object, $1)=yes])\n  else\n    _LT_TAGVAR(whole_archive_flag_spec, $1)=''\n  fi\n  _LT_TAGVAR(link_all_deplibs, $1)=yes\n  _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined\n  case $cc_basename in\n     ifort*|nagfor*) _lt_dar_can_shared=yes ;;\n     *) _lt_dar_can_shared=$GCC ;;\n  esac\n  if test yes = \"$_lt_dar_can_shared\"; then\n    output_verbose_link_cmd=func_echo_all\n    _LT_TAGVAR(archive_cmds, $1)=\"\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod$_lt_dsymutil\"\n    _LT_TAGVAR(module_cmds, $1)=\"\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags$_lt_dsymutil\"\n    _LT_TAGVAR(archive_expsym_cmds, $1)=\"sed 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil\"\n    _LT_TAGVAR(module_expsym_cmds, $1)=\"sed -e 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags$_lt_dar_export_syms$_lt_dsymutil\"\n    m4_if([$1], [CXX],\n[   if test yes != \"$lt_cv_apple_cc_single_mod\"; then\n      _LT_TAGVAR(archive_cmds, $1)=\"\\$CC -r -keep_private_externs -nostdlib -o \\$lib-master.o \\$libobjs~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$lib-master.o \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring$_lt_dsymutil\"\n      _LT_TAGVAR(archive_expsym_cmds, $1)=\"sed 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC -r -keep_private_externs -nostdlib -o \\$lib-master.o \\$libobjs~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$lib-master.o \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring$_lt_dar_export_syms$_lt_dsymutil\"\n    fi\n],[])\n  else\n  _LT_TAGVAR(ld_shlibs, $1)=no\n  fi\n])\n\n# _LT_SYS_MODULE_PATH_AIX([TAGNAME])\n# ----------------------------------\n# Links a minimal program and checks the executable\n# for the system default hardcoded library path. In most cases,\n# this is /usr/lib:/lib, but when the MPI compilers are used\n# the location of the communication and MPI libs are included too.\n# If we don't find anything, use the default library path according\n# to the aix ld manual.\n# Store the results from the different compilers for each TAGNAME.\n# Allow to override them for all tags through lt_cv_aix_libpath.\nm4_defun([_LT_SYS_MODULE_PATH_AIX],\n[m4_require([_LT_DECL_SED])dnl\nif test set = \"${lt_cv_aix_libpath+set}\"; then\n  aix_libpath=$lt_cv_aix_libpath\nelse\n  AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])],\n  [AC_LINK_IFELSE([AC_LANG_PROGRAM],[\n  lt_aix_libpath_sed='[\n      /Import File Strings/,/^$/ {\n\t  /^0/ {\n\t      s/^0  *\\([^ ]*\\) *$/\\1/\n\t      p\n\t  }\n      }]'\n  _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  # Check for a 64-bit object if we didn't find anything.\n  if test -z \"$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])\"; then\n    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  fi],[])\n  if test -z \"$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])\"; then\n    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib\n  fi\n  ])\n  aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])\nfi\n])# _LT_SYS_MODULE_PATH_AIX\n\n\n# _LT_SHELL_INIT(ARG)\n# -------------------\nm4_define([_LT_SHELL_INIT],\n[m4_divert_text([M4SH-INIT], [$1\n])])# _LT_SHELL_INIT\n\n\n\n# _LT_PROG_ECHO_BACKSLASH\n# -----------------------\n# Find how we can fake an echo command that does not interpret backslash.\n# In particular, with Autoconf 2.60 or later we add some code to the start\n# of the generated configure script that will find a shell with a builtin\n# printf (that we can use as an echo command).\nm4_defun([_LT_PROG_ECHO_BACKSLASH],\n[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO\n\nAC_MSG_CHECKING([how to print strings])\n# Test print first, because it will be a builtin if present.\nif test \"X`( print -r -- -n ) 2>/dev/null`\" = X-n && \\\n   test \"X`print -r -- $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='print -r --'\nelif test \"X`printf %s $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='printf %s\\n'\nelse\n  # Use this function as a fallback that always works.\n  func_fallback_echo ()\n  {\n    eval 'cat <<_LTECHO_EOF\n$[]1\n_LTECHO_EOF'\n  }\n  ECHO='func_fallback_echo'\nfi\n\n# func_echo_all arg...\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"$*\"\n}\n\ncase $ECHO in\n  printf*) AC_MSG_RESULT([printf]) ;;\n  print*) AC_MSG_RESULT([print -r]) ;;\n  *) AC_MSG_RESULT([cat]) ;;\nesac\n\nm4_ifdef([_AS_DETECT_SUGGESTED],\n[_AS_DETECT_SUGGESTED([\n  test -n \"${ZSH_VERSION+set}${BASH_VERSION+set}\" || (\n    ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\n    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO\n    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO\n    PATH=/empty FPATH=/empty; export PATH FPATH\n    test \"X`printf %s $ECHO`\" = \"X$ECHO\" \\\n      || test \"X`print -r -- $ECHO`\" = \"X$ECHO\" )])])\n\n_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])\n_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes])\n])# _LT_PROG_ECHO_BACKSLASH\n\n\n# _LT_WITH_SYSROOT\n# ----------------\nAC_DEFUN([_LT_WITH_SYSROOT],\n[AC_MSG_CHECKING([for sysroot])\nAC_ARG_WITH([sysroot],\n[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],\n  [Search for dependent libraries within DIR (or the compiler's sysroot\n   if not specified).])],\n[], [with_sysroot=no])\n\ndnl lt_sysroot will always be passed unquoted.  We quote it here\ndnl in case the user passed a directory name.\nlt_sysroot=\ncase $with_sysroot in #(\n yes)\n   if test yes = \"$GCC\"; then\n     lt_sysroot=`$CC --print-sysroot 2>/dev/null`\n   fi\n   ;; #(\n /*)\n   lt_sysroot=`echo \"$with_sysroot\" | sed -e \"$sed_quote_subst\"`\n   ;; #(\n no|'')\n   ;; #(\n *)\n   AC_MSG_RESULT([$with_sysroot])\n   AC_MSG_ERROR([The sysroot must be an absolute path.])\n   ;;\nesac\n\n AC_MSG_RESULT([${lt_sysroot:-no}])\n_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl\n[dependent libraries, and where our libraries should be installed.])])\n\n# _LT_ENABLE_LOCK\n# ---------------\nm4_defun([_LT_ENABLE_LOCK],\n[AC_ARG_ENABLE([libtool-lock],\n  [AS_HELP_STRING([--disable-libtool-lock],\n    [avoid locking (might break parallel builds)])])\ntest no = \"$enable_libtool_lock\" || enable_libtool_lock=yes\n\n# Some flags need to be propagated to the compiler or linker for good\n# libtool support.\ncase $host in\nia64-*-hpux*)\n  # Find out what ABI is being produced by ac_compile, and set mode\n  # options accordingly.\n  echo 'int i;' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    case `/usr/bin/file conftest.$ac_objext` in\n      *ELF-32*)\n\tHPUX_IA64_MODE=32\n\t;;\n      *ELF-64*)\n\tHPUX_IA64_MODE=64\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n*-*-irix6*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo '[#]line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    if test yes = \"$lt_cv_prog_gnu_ld\"; then\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -melf32bsmip\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -melf32bmipn32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -melf64bmip\"\n\t;;\n      esac\n    else\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -32\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -n32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -64\"\n\t  ;;\n      esac\n    fi\n  fi\n  rm -rf conftest*\n  ;;\n\nmips64*-*linux*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo '[#]line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    emul=elf\n    case `/usr/bin/file conftest.$ac_objext` in\n      *32-bit*)\n\temul=\"${emul}32\"\n\t;;\n      *64-bit*)\n\temul=\"${emul}64\"\n\t;;\n    esac\n    case `/usr/bin/file conftest.$ac_objext` in\n      *MSB*)\n\temul=\"${emul}btsmip\"\n\t;;\n      *LSB*)\n\temul=\"${emul}ltsmip\"\n\t;;\n    esac\n    case `/usr/bin/file conftest.$ac_objext` in\n      *N32*)\n\temul=\"${emul}n32\"\n\t;;\n    esac\n    LD=\"${LD-ld} -m $emul\"\n  fi\n  rm -rf conftest*\n  ;;\n\nx86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \\\ns390*-*linux*|s390*-*tpf*|sparc*-*linux*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.  Note that the listed cases only cover the\n  # situations where additional linker options are needed (such as when\n  # doing 32-bit compilation for a host where ld defaults to 64-bit, or\n  # vice versa); the common cases where no linker options are needed do\n  # not appear in the list.\n  echo 'int i;' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    case `/usr/bin/file conftest.o` in\n      *32-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_i386_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    case `/usr/bin/file conftest.o` in\n\t      *x86-64*)\n\t\tLD=\"${LD-ld} -m elf32_x86_64\"\n\t\t;;\n\t      *)\n\t\tLD=\"${LD-ld} -m elf_i386\"\n\t\t;;\n\t    esac\n\t    ;;\n\t  powerpc64le-*linux*)\n\t    LD=\"${LD-ld} -m elf32lppclinux\"\n\t    ;;\n\t  powerpc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32ppclinux\"\n\t    ;;\n\t  s390x-*linux*)\n\t    LD=\"${LD-ld} -m elf_s390\"\n\t    ;;\n\t  sparc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32_sparc\"\n\t    ;;\n\tesac\n\t;;\n      *64-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_x86_64_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    LD=\"${LD-ld} -m elf_x86_64\"\n\t    ;;\n\t  powerpcle-*linux*)\n\t    LD=\"${LD-ld} -m elf64lppc\"\n\t    ;;\n\t  powerpc-*linux*)\n\t    LD=\"${LD-ld} -m elf64ppc\"\n\t    ;;\n\t  s390*-*linux*|s390*-*tpf*)\n\t    LD=\"${LD-ld} -m elf64_s390\"\n\t    ;;\n\t  sparc*-*linux*)\n\t    LD=\"${LD-ld} -m elf64_sparc\"\n\t    ;;\n\tesac\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n\n*-*-sco3.2v5*)\n  # On SCO OpenServer 5, we need -belf to get full-featured binaries.\n  SAVE_CFLAGS=$CFLAGS\n  CFLAGS=\"$CFLAGS -belf\"\n  AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,\n    [AC_LANG_PUSH(C)\n     AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])\n     AC_LANG_POP])\n  if test yes != \"$lt_cv_cc_needs_belf\"; then\n    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf\n    CFLAGS=$SAVE_CFLAGS\n  fi\n  ;;\n*-*solaris*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo 'int i;' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    case `/usr/bin/file conftest.o` in\n    *64-bit*)\n      case $lt_cv_prog_gnu_ld in\n      yes*)\n        case $host in\n        i?86-*-solaris*|x86_64-*-solaris*)\n          LD=\"${LD-ld} -m elf_x86_64\"\n          ;;\n        sparc*-*-solaris*)\n          LD=\"${LD-ld} -m elf64_sparc\"\n          ;;\n        esac\n        # GNU ld 2.21 introduced _sol2 emulations.  Use them if available.\n        if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then\n          LD=${LD-ld}_sol2\n        fi\n        ;;\n      *)\n\tif ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then\n\t  LD=\"${LD-ld} -64\"\n\tfi\n\t;;\n      esac\n      ;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\nesac\n\nneed_locks=$enable_libtool_lock\n])# _LT_ENABLE_LOCK\n\n\n# _LT_PROG_AR\n# -----------\nm4_defun([_LT_PROG_AR],\n[AC_CHECK_TOOLS(AR, [ar], false)\n: ${AR=ar}\n: ${AR_FLAGS=cru}\n_LT_DECL([], [AR], [1], [The archiver])\n_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive])\n\nAC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file],\n  [lt_cv_ar_at_file=no\n   AC_COMPILE_IFELSE([AC_LANG_PROGRAM],\n     [echo conftest.$ac_objext > conftest.lst\n      lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD'\n      AC_TRY_EVAL([lt_ar_try])\n      if test 0 -eq \"$ac_status\"; then\n\t# Ensure the archiver fails upon bogus file names.\n\trm -f conftest.$ac_objext libconftest.a\n\tAC_TRY_EVAL([lt_ar_try])\n\tif test 0 -ne \"$ac_status\"; then\n          lt_cv_ar_at_file=@\n        fi\n      fi\n      rm -f conftest.* libconftest.a\n     ])\n  ])\n\nif test no = \"$lt_cv_ar_at_file\"; then\n  archiver_list_spec=\nelse\n  archiver_list_spec=$lt_cv_ar_at_file\nfi\n_LT_DECL([], [archiver_list_spec], [1],\n  [How to feed a file listing to the archiver])\n])# _LT_PROG_AR\n\n\n# _LT_CMD_OLD_ARCHIVE\n# -------------------\nm4_defun([_LT_CMD_OLD_ARCHIVE],\n[_LT_PROG_AR\n\nAC_CHECK_TOOL(STRIP, strip, :)\ntest -z \"$STRIP\" && STRIP=:\n_LT_DECL([], [STRIP], [1], [A symbol stripping program])\n\nAC_CHECK_TOOL(RANLIB, ranlib, :)\ntest -z \"$RANLIB\" && RANLIB=:\n_LT_DECL([], [RANLIB], [1],\n    [Commands used to install an old-style archive])\n\n# Determine commands to create old-style static archives.\nold_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'\nold_postinstall_cmds='chmod 644 $oldlib'\nold_postuninstall_cmds=\n\nif test -n \"$RANLIB\"; then\n  case $host_os in\n  bitrig* | openbsd*)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB -t \\$tool_oldlib\"\n    ;;\n  *)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB \\$tool_oldlib\"\n    ;;\n  esac\n  old_archive_cmds=\"$old_archive_cmds~\\$RANLIB \\$tool_oldlib\"\nfi\n\ncase $host_os in\n  darwin*)\n    lock_old_archive_extraction=yes ;;\n  *)\n    lock_old_archive_extraction=no ;;\nesac\n_LT_DECL([], [old_postinstall_cmds], [2])\n_LT_DECL([], [old_postuninstall_cmds], [2])\n_LT_TAGDECL([], [old_archive_cmds], [2],\n    [Commands used to build an old-style archive])\n_LT_DECL([], [lock_old_archive_extraction], [0],\n    [Whether to use a lock for old archive extraction])\n])# _LT_CMD_OLD_ARCHIVE\n\n\n# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,\n#\t\t[OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])\n# ----------------------------------------------------------------\n# Check whether the given compiler option works\nAC_DEFUN([_LT_COMPILER_OPTION],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_SED])dnl\nAC_CACHE_CHECK([$1], [$2],\n  [$2=no\n   m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"$3\"  ## exclude from sc_useless_quotes_in_assignment\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [[^ ]]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&AS_MESSAGE_LOG_FD)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&AS_MESSAGE_LOG_FD\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&AS_MESSAGE_LOG_FD\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       $2=yes\n     fi\n   fi\n   $RM conftest*\n])\n\nif test yes = \"[$]$2\"; then\n    m4_if([$5], , :, [$5])\nelse\n    m4_if([$6], , :, [$6])\nfi\n])# _LT_COMPILER_OPTION\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [])\n\n\n# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,\n#                  [ACTION-SUCCESS], [ACTION-FAILURE])\n# ----------------------------------------------------\n# Check whether the given linker option works\nAC_DEFUN([_LT_LINKER_OPTION],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_SED])dnl\nAC_CACHE_CHECK([$1], [$2],\n  [$2=no\n   save_LDFLAGS=$LDFLAGS\n   LDFLAGS=\"$LDFLAGS $3\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&AS_MESSAGE_LOG_FD\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         $2=yes\n       fi\n     else\n       $2=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=$save_LDFLAGS\n])\n\nif test yes = \"[$]$2\"; then\n    m4_if([$4], , :, [$4])\nelse\n    m4_if([$5], , :, [$5])\nfi\n])# _LT_LINKER_OPTION\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [])\n\n\n# LT_CMD_MAX_LEN\n#---------------\nAC_DEFUN([LT_CMD_MAX_LEN],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\n# find the maximum length of command line arguments\nAC_MSG_CHECKING([the maximum length of command line arguments])\nAC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl\n  i=0\n  teststring=ABCD\n\n  case $build_os in\n  msdosdjgpp*)\n    # On DJGPP, this test can blow up pretty badly due to problems in libc\n    # (any single argument exceeding 2000 bytes causes a buffer overrun\n    # during glob expansion).  Even if it were fixed, the result of this\n    # check would be larger than it should be.\n    lt_cv_sys_max_cmd_len=12288;    # 12K is about right\n    ;;\n\n  gnu*)\n    # Under GNU Hurd, this test is not required because there is\n    # no limit to the length of command line arguments.\n    # Libtool will interpret -1 as no limit whatsoever\n    lt_cv_sys_max_cmd_len=-1;\n    ;;\n\n  cygwin* | mingw* | cegcc*)\n    # On Win9x/ME, this test blows up -- it succeeds, but takes\n    # about 5 minutes as the teststring grows exponentially.\n    # Worse, since 9x/ME are not pre-emptively multitasking,\n    # you end up with a \"frozen\" computer, even though with patience\n    # the test eventually succeeds (with a max line length of 256k).\n    # Instead, let's just punt: use the minimum linelength reported by\n    # all of the supported platforms: 8192 (on NT/2K/XP).\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  mint*)\n    # On MiNT this can take a long time and run out of memory.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  amigaos*)\n    # On AmigaOS with pdksh, this test takes hours, literally.\n    # So we just punt and use a minimum line length of 8192.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)\n    # This has been around since 386BSD, at least.  Likely further.\n    if test -x /sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`\n    elif test -x /usr/sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`\n    else\n      lt_cv_sys_max_cmd_len=65536\t# usable default for all BSDs\n    fi\n    # And add a safety zone\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    ;;\n\n  interix*)\n    # We know the value 262144 and hardcode it with a safety zone (like BSD)\n    lt_cv_sys_max_cmd_len=196608\n    ;;\n\n  os2*)\n    # The test takes a long time on OS/2.\n    lt_cv_sys_max_cmd_len=8192\n    ;;\n\n  osf*)\n    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure\n    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not\n    # nice to cause kernel panics so lets avoid the loop below.\n    # First set a reasonable default.\n    lt_cv_sys_max_cmd_len=16384\n    #\n    if test -x /sbin/sysconfig; then\n      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in\n        *1*) lt_cv_sys_max_cmd_len=-1 ;;\n      esac\n    fi\n    ;;\n  sco3.2v5*)\n    lt_cv_sys_max_cmd_len=102400\n    ;;\n  sysv5* | sco5v6* | sysv4.2uw2*)\n    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`\n    if test -n \"$kargmax\"; then\n      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[\t ]]//'`\n    else\n      lt_cv_sys_max_cmd_len=32768\n    fi\n    ;;\n  *)\n    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`\n    if test -n \"$lt_cv_sys_max_cmd_len\" && \\\n       test undefined != \"$lt_cv_sys_max_cmd_len\"; then\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    else\n      # Make teststring a little bigger before we do anything with it.\n      # a 1K string should be a reasonable start.\n      for i in 1 2 3 4 5 6 7 8; do\n        teststring=$teststring$teststring\n      done\n      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}\n      # If test is not a shell built-in, we'll probably end up computing a\n      # maximum length that is only half of the actual maximum length, but\n      # we can't tell.\n      while { test X`env echo \"$teststring$teststring\" 2>/dev/null` \\\n\t         = \"X$teststring$teststring\"; } >/dev/null 2>&1 &&\n\t      test 17 != \"$i\" # 1/2 MB should be enough\n      do\n        i=`expr $i + 1`\n        teststring=$teststring$teststring\n      done\n      # Only check the string length outside the loop.\n      lt_cv_sys_max_cmd_len=`expr \"X$teststring\" : \".*\" 2>&1`\n      teststring=\n      # Add a significant safety factor because C++ compilers can tack on\n      # massive amounts of additional arguments before passing them to the\n      # linker.  It appears as though 1/2 is a usable value.\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 2`\n    fi\n    ;;\n  esac\n])\nif test -n \"$lt_cv_sys_max_cmd_len\"; then\n  AC_MSG_RESULT($lt_cv_sys_max_cmd_len)\nelse\n  AC_MSG_RESULT(none)\nfi\nmax_cmd_len=$lt_cv_sys_max_cmd_len\n_LT_DECL([], [max_cmd_len], [0],\n    [What is the maximum length of a command?])\n])# LT_CMD_MAX_LEN\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])\n\n\n# _LT_HEADER_DLFCN\n# ----------------\nm4_defun([_LT_HEADER_DLFCN],\n[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl\n])# _LT_HEADER_DLFCN\n\n\n# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,\n#                      ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)\n# ----------------------------------------------------------------\nm4_defun([_LT_TRY_DLOPEN_SELF],\n[m4_require([_LT_HEADER_DLFCN])dnl\nif test yes = \"$cross_compiling\"; then :\n  [$4]\nelse\n  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2\n  lt_status=$lt_dlunknown\n  cat > conftest.$ac_ext <<_LT_EOF\n[#line $LINENO \"configure\"\n#include \"confdefs.h\"\n\n#if HAVE_DLFCN_H\n#include <dlfcn.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef RTLD_GLOBAL\n#  define LT_DLGLOBAL\t\tRTLD_GLOBAL\n#else\n#  ifdef DL_GLOBAL\n#    define LT_DLGLOBAL\t\tDL_GLOBAL\n#  else\n#    define LT_DLGLOBAL\t\t0\n#  endif\n#endif\n\n/* We may have to define LT_DLLAZY_OR_NOW in the command line if we\n   find out it does not work in some platform. */\n#ifndef LT_DLLAZY_OR_NOW\n#  ifdef RTLD_LAZY\n#    define LT_DLLAZY_OR_NOW\t\tRTLD_LAZY\n#  else\n#    ifdef DL_LAZY\n#      define LT_DLLAZY_OR_NOW\t\tDL_LAZY\n#    else\n#      ifdef RTLD_NOW\n#        define LT_DLLAZY_OR_NOW\tRTLD_NOW\n#      else\n#        ifdef DL_NOW\n#          define LT_DLLAZY_OR_NOW\tDL_NOW\n#        else\n#          define LT_DLLAZY_OR_NOW\t0\n#        endif\n#      endif\n#    endif\n#  endif\n#endif\n\n/* When -fvisibility=hidden is used, assume the code has been annotated\n   correspondingly for the symbols needed.  */\n#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))\nint fnord () __attribute__((visibility(\"default\")));\n#endif\n\nint fnord () { return 42; }\nint main ()\n{\n  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);\n  int status = $lt_dlunknown;\n\n  if (self)\n    {\n      if (dlsym (self,\"fnord\"))       status = $lt_dlno_uscore;\n      else\n        {\n\t  if (dlsym( self,\"_fnord\"))  status = $lt_dlneed_uscore;\n          else puts (dlerror ());\n\t}\n      /* dlclose (self); */\n    }\n  else\n    puts (dlerror ());\n\n  return status;\n}]\n_LT_EOF\n  if AC_TRY_EVAL(ac_link) && test -s \"conftest$ac_exeext\" 2>/dev/null; then\n    (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null\n    lt_status=$?\n    case x$lt_status in\n      x$lt_dlno_uscore) $1 ;;\n      x$lt_dlneed_uscore) $2 ;;\n      x$lt_dlunknown|x*) $3 ;;\n    esac\n  else :\n    # compilation failed\n    $3\n  fi\nfi\nrm -fr conftest*\n])# _LT_TRY_DLOPEN_SELF\n\n\n# LT_SYS_DLOPEN_SELF\n# ------------------\nAC_DEFUN([LT_SYS_DLOPEN_SELF],\n[m4_require([_LT_HEADER_DLFCN])dnl\nif test yes != \"$enable_dlopen\"; then\n  enable_dlopen=unknown\n  enable_dlopen_self=unknown\n  enable_dlopen_self_static=unknown\nelse\n  lt_cv_dlopen=no\n  lt_cv_dlopen_libs=\n\n  case $host_os in\n  beos*)\n    lt_cv_dlopen=load_add_on\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n    ;;\n\n  mingw* | pw32* | cegcc*)\n    lt_cv_dlopen=LoadLibrary\n    lt_cv_dlopen_libs=\n    ;;\n\n  cygwin*)\n    lt_cv_dlopen=dlopen\n    lt_cv_dlopen_libs=\n    ;;\n\n  darwin*)\n    # if libdl is installed we need to link against it\n    AC_CHECK_LIB([dl], [dlopen],\n\t\t[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[\n    lt_cv_dlopen=dyld\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n    ])\n    ;;\n\n  tpf*)\n    # Don't try to run any link tests for TPF.  We know it's impossible\n    # because TPF is a cross-compiler, and we know how we open DSOs.\n    lt_cv_dlopen=dlopen\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=no\n    ;;\n\n  *)\n    AC_CHECK_FUNC([shl_load],\n\t  [lt_cv_dlopen=shl_load],\n      [AC_CHECK_LIB([dld], [shl_load],\n\t    [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld],\n\t[AC_CHECK_FUNC([dlopen],\n\t      [lt_cv_dlopen=dlopen],\n\t  [AC_CHECK_LIB([dl], [dlopen],\n\t\t[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],\n\t    [AC_CHECK_LIB([svld], [dlopen],\n\t\t  [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld],\n\t      [AC_CHECK_LIB([dld], [dld_link],\n\t\t    [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld])\n\t      ])\n\t    ])\n\t  ])\n\t])\n      ])\n    ;;\n  esac\n\n  if test no = \"$lt_cv_dlopen\"; then\n    enable_dlopen=no\n  else\n    enable_dlopen=yes\n  fi\n\n  case $lt_cv_dlopen in\n  dlopen)\n    save_CPPFLAGS=$CPPFLAGS\n    test yes = \"$ac_cv_header_dlfcn_h\" && CPPFLAGS=\"$CPPFLAGS -DHAVE_DLFCN_H\"\n\n    save_LDFLAGS=$LDFLAGS\n    wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $export_dynamic_flag_spec\\\"\n\n    save_LIBS=$LIBS\n    LIBS=\"$lt_cv_dlopen_libs $LIBS\"\n\n    AC_CACHE_CHECK([whether a program can dlopen itself],\n\t  lt_cv_dlopen_self, [dnl\n\t  _LT_TRY_DLOPEN_SELF(\n\t    lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,\n\t    lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)\n    ])\n\n    if test yes = \"$lt_cv_dlopen_self\"; then\n      wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $lt_prog_compiler_static\\\"\n      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],\n\t  lt_cv_dlopen_self_static, [dnl\n\t  _LT_TRY_DLOPEN_SELF(\n\t    lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,\n\t    lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)\n      ])\n    fi\n\n    CPPFLAGS=$save_CPPFLAGS\n    LDFLAGS=$save_LDFLAGS\n    LIBS=$save_LIBS\n    ;;\n  esac\n\n  case $lt_cv_dlopen_self in\n  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;\n  *) enable_dlopen_self=unknown ;;\n  esac\n\n  case $lt_cv_dlopen_self_static in\n  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;\n  *) enable_dlopen_self_static=unknown ;;\n  esac\nfi\n_LT_DECL([dlopen_support], [enable_dlopen], [0],\n\t [Whether dlopen is supported])\n_LT_DECL([dlopen_self], [enable_dlopen_self], [0],\n\t [Whether dlopen of programs is supported])\n_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],\n\t [Whether dlopen of statically linked programs is supported])\n])# LT_SYS_DLOPEN_SELF\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])\n\n\n# _LT_COMPILER_C_O([TAGNAME])\n# ---------------------------\n# Check to see if options -c and -o are simultaneously supported by compiler.\n# This macro does not hard code the compiler like AC_PROG_CC_C_O.\nm4_defun([_LT_COMPILER_C_O],\n[m4_require([_LT_DECL_SED])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_TAG_COMPILER])dnl\nAC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],\n  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)],\n  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [[^ ]]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&AS_MESSAGE_LOG_FD)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&AS_MESSAGE_LOG_FD\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&AS_MESSAGE_LOG_FD\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes\n     fi\n   fi\n   chmod u+w . 2>&AS_MESSAGE_LOG_FD\n   $RM conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM conftest*\n])\n_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],\n\t[Does compiler simultaneously support -c and -o options?])\n])# _LT_COMPILER_C_O\n\n\n# _LT_COMPILER_FILE_LOCKS([TAGNAME])\n# ----------------------------------\n# Check to see if we can do hard links to lock some files if needed\nm4_defun([_LT_COMPILER_FILE_LOCKS],\n[m4_require([_LT_ENABLE_LOCK])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\n_LT_COMPILER_C_O([$1])\n\nhard_links=nottested\nif test no = \"$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)\" && test no != \"$need_locks\"; then\n  # do not overwrite the value of need_locks provided by the user\n  AC_MSG_CHECKING([if we can lock with hard links])\n  hard_links=yes\n  $RM conftest*\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  touch conftest.a\n  ln conftest.a conftest.b 2>&5 || hard_links=no\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  AC_MSG_RESULT([$hard_links])\n  if test no = \"$hard_links\"; then\n    AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe])\n    need_locks=warn\n  fi\nelse\n  need_locks=no\nfi\n_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])\n])# _LT_COMPILER_FILE_LOCKS\n\n\n# _LT_CHECK_OBJDIR\n# ----------------\nm4_defun([_LT_CHECK_OBJDIR],\n[AC_CACHE_CHECK([for objdir], [lt_cv_objdir],\n[rm -f .libs 2>/dev/null\nmkdir .libs 2>/dev/null\nif test -d .libs; then\n  lt_cv_objdir=.libs\nelse\n  # MS-DOS does not allow filenames that begin with a dot.\n  lt_cv_objdir=_libs\nfi\nrmdir .libs 2>/dev/null])\nobjdir=$lt_cv_objdir\n_LT_DECL([], [objdir], [0],\n         [The name of the directory that contains temporary libtool files])dnl\nm4_pattern_allow([LT_OBJDIR])dnl\nAC_DEFINE_UNQUOTED([LT_OBJDIR], \"$lt_cv_objdir/\",\n  [Define to the sub-directory where libtool stores uninstalled libraries.])\n])# _LT_CHECK_OBJDIR\n\n\n# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])\n# --------------------------------------\n# Check hardcoding attributes.\nm4_defun([_LT_LINKER_HARDCODE_LIBPATH],\n[AC_MSG_CHECKING([how to hardcode library paths into programs])\n_LT_TAGVAR(hardcode_action, $1)=\nif test -n \"$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\" ||\n   test -n \"$_LT_TAGVAR(runpath_var, $1)\" ||\n   test yes = \"$_LT_TAGVAR(hardcode_automatic, $1)\"; then\n\n  # We can hardcode non-existent directories.\n  if test no != \"$_LT_TAGVAR(hardcode_direct, $1)\" &&\n     # If the only mechanism to avoid hardcoding is shlibpath_var, we\n     # have to relink, otherwise we might link with an installed library\n     # when we should be linking with a yet-to-be-installed one\n     ## test no != \"$_LT_TAGVAR(hardcode_shlibpath_var, $1)\" &&\n     test no != \"$_LT_TAGVAR(hardcode_minus_L, $1)\"; then\n    # Linking always hardcodes the temporary library directory.\n    _LT_TAGVAR(hardcode_action, $1)=relink\n  else\n    # We can link without hardcoding, and we can hardcode nonexisting dirs.\n    _LT_TAGVAR(hardcode_action, $1)=immediate\n  fi\nelse\n  # We cannot hardcode anything, or else we can only hardcode existing\n  # directories.\n  _LT_TAGVAR(hardcode_action, $1)=unsupported\nfi\nAC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])\n\nif test relink = \"$_LT_TAGVAR(hardcode_action, $1)\" ||\n   test yes = \"$_LT_TAGVAR(inherit_rpath, $1)\"; then\n  # Fast installation is not supported\n  enable_fast_install=no\nelif test yes = \"$shlibpath_overrides_runpath\" ||\n     test no = \"$enable_shared\"; then\n  # Fast installation is not necessary\n  enable_fast_install=needless\nfi\n_LT_TAGDECL([], [hardcode_action], [0],\n    [How to hardcode a shared library path into an executable])\n])# _LT_LINKER_HARDCODE_LIBPATH\n\n\n# _LT_CMD_STRIPLIB\n# ----------------\nm4_defun([_LT_CMD_STRIPLIB],\n[m4_require([_LT_DECL_EGREP])\nstriplib=\nold_striplib=\nAC_MSG_CHECKING([whether stripping libraries is possible])\nif test -n \"$STRIP\" && $STRIP -V 2>&1 | $GREP \"GNU strip\" >/dev/null; then\n  test -z \"$old_striplib\" && old_striplib=\"$STRIP --strip-debug\"\n  test -z \"$striplib\" && striplib=\"$STRIP --strip-unneeded\"\n  AC_MSG_RESULT([yes])\nelse\n# FIXME - insert some real tests, host_os isn't really good enough\n  case $host_os in\n  darwin*)\n    if test -n \"$STRIP\"; then\n      striplib=\"$STRIP -x\"\n      old_striplib=\"$STRIP -S\"\n      AC_MSG_RESULT([yes])\n    else\n      AC_MSG_RESULT([no])\n    fi\n    ;;\n  *)\n    AC_MSG_RESULT([no])\n    ;;\n  esac\nfi\n_LT_DECL([], [old_striplib], [1], [Commands to strip libraries])\n_LT_DECL([], [striplib], [1])\n])# _LT_CMD_STRIPLIB\n\n\n# _LT_PREPARE_MUNGE_PATH_LIST\n# ---------------------------\n# Make sure func_munge_path_list() is defined correctly.\nm4_defun([_LT_PREPARE_MUNGE_PATH_LIST],\n[[# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x@S|@2 in\n    x)\n        ;;\n    *:)\n        eval @S|@1=\\\"`$ECHO @S|@2 | $SED 's/:/ /g'` \\@S|@@S|@1\\\"\n        ;;\n    x:*)\n        eval @S|@1=\\\"\\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval @S|@1=\\\"\\@S|@@S|@1\\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval @S|@1=\\\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\@S|@@S|@1\\\"\n        ;;\n    *)\n        eval @S|@1=\\\"`$ECHO @S|@2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n]])# _LT_PREPARE_PATH_LIST\n\n\n# _LT_SYS_DYNAMIC_LINKER([TAG])\n# -----------------------------\n# PORTME Fill in your ld.so characteristics\nm4_defun([_LT_SYS_DYNAMIC_LINKER],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_OBJDUMP])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_CHECK_SHELL_FEATURES])dnl\nm4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl\nAC_MSG_CHECKING([dynamic linker characteristics])\nm4_if([$1],\n\t[], [\nif test yes = \"$GCC\"; then\n  case $host_os in\n    darwin*) lt_awk_arg='/^libraries:/,/LR/' ;;\n    *) lt_awk_arg='/^libraries:/' ;;\n  esac\n  case $host_os in\n    mingw* | cegcc*) lt_sed_strip_eq='s|=\\([[A-Za-z]]:\\)|\\1|g' ;;\n    *) lt_sed_strip_eq='s|=/|/|g' ;;\n  esac\n  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e \"s/^libraries://\" -e $lt_sed_strip_eq`\n  case $lt_search_path_spec in\n  *\\;*)\n    # if the path contains \";\" then we assume it to be the separator\n    # otherwise default to the standard path separator (i.e. \":\") - it is\n    # assumed that no part of a normal pathname contains \";\" but that should\n    # okay in the real world where \";\" in dirpaths is itself problematic.\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED 's/;/ /g'`\n    ;;\n  *)\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED \"s/$PATH_SEPARATOR/ /g\"`\n    ;;\n  esac\n  # Ok, now we have the path, separated by spaces, we can step through it\n  # and add multilib dir if necessary...\n  lt_tmp_lt_search_path_spec=\n  lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`\n  # ...but if some path component already ends with the multilib dir we assume\n  # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer).\n  case \"$lt_multi_os_dir; $lt_search_path_spec \" in\n  \"/; \"* | \"/.; \"* | \"/./; \"* | *\"$lt_multi_os_dir \"* | *\"$lt_multi_os_dir/ \"*)\n    lt_multi_os_dir=\n    ;;\n  esac\n  for lt_sys_path in $lt_search_path_spec; do\n    if test -d \"$lt_sys_path$lt_multi_os_dir\"; then\n      lt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir\"\n    elif test -n \"$lt_multi_os_dir\"; then\n      test -d \"$lt_sys_path\" && \\\n\tlt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path\"\n    fi\n  done\n  lt_search_path_spec=`$ECHO \"$lt_tmp_lt_search_path_spec\" | awk '\nBEGIN {RS = \" \"; FS = \"/|\\n\";} {\n  lt_foo = \"\";\n  lt_count = 0;\n  for (lt_i = NF; lt_i > 0; lt_i--) {\n    if ($lt_i != \"\" && $lt_i != \".\") {\n      if ($lt_i == \"..\") {\n        lt_count++;\n      } else {\n        if (lt_count == 0) {\n          lt_foo = \"/\" $lt_i lt_foo;\n        } else {\n          lt_count--;\n        }\n      }\n    }\n  }\n  if (lt_foo != \"\") { lt_freq[[lt_foo]]++; }\n  if (lt_freq[[lt_foo]] == 1) { print lt_foo; }\n}'`\n  # AWK program above erroneously prepends '/' to C:/dos/paths\n  # for these hosts.\n  case $host_os in\n    mingw* | cegcc*) lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" |\\\n      $SED 's|/\\([[A-Za-z]]:\\)|\\1|g'` ;;\n  esac\n  sys_lib_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $lt_NL2SP`\nelse\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\nfi])\nlibrary_names_spec=\nlibname_spec='lib$name'\nsoname_spec=\nshrext_cmds=.so\npostinstall_cmds=\npostuninstall_cmds=\nfinish_cmds=\nfinish_eval=\nshlibpath_var=\nshlibpath_overrides_runpath=unknown\nversion_type=none\ndynamic_linker=\"$host_os ld.so\"\nsys_lib_dlsearch_path_spec=\"/lib /usr/lib\"\nneed_lib_prefix=unknown\nhardcode_into_libs=no\n\n# when you set need_version to no, make sure it does not cause -set_version\n# flags to be left without arguments\nneed_version=unknown\n\nAC_ARG_VAR([LT_SYS_LIBRARY_PATH],\n[User-defined run-time library search path.])\n\ncase $host_os in\naix3*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname.a'\n  shlibpath_var=LIBPATH\n\n  # AIX 3 has no versioning support, so we append a major version to the name.\n  soname_spec='$libname$release$shared_ext$major'\n  ;;\n\naix[[4-9]]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  hardcode_into_libs=yes\n  if test ia64 = \"$host_cpu\"; then\n    # AIX 5 supports IA64\n    library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext'\n    shlibpath_var=LD_LIBRARY_PATH\n  else\n    # With GCC up to 2.95.x, collect2 would create an import file\n    # for dependence libraries.  The import file would start with\n    # the line '#! .'.  This would cause the generated library to\n    # depend on '.', always an invalid library.  This was fixed in\n    # development snapshots of GCC prior to 3.0.\n    case $host_os in\n      aix4 | aix4.[[01]] | aix4.[[01]].*)\n      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'\n\t   echo ' yes '\n\t   echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then\n\t:\n      else\n\tcan_build_shared=no\n      fi\n      ;;\n    esac\n    # Using Import Files as archive members, it is possible to support\n    # filename-based versioning of shared library archives on AIX. While\n    # this would work for both with and without runtime linking, it will\n    # prevent static linking of such archives. So we do filename-based\n    # shared library versioning with .so extension only, which is used\n    # when both runtime linking and shared linking is enabled.\n    # Unfortunately, runtime linking may impact performance, so we do\n    # not want this to be the default eventually. Also, we use the\n    # versioned .so libs for executables only if there is the -brtl\n    # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only.\n    # To allow for filename-based versioning support, we need to create\n    # libNAME.so.V as an archive file, containing:\n    # *) an Import File, referring to the versioned filename of the\n    #    archive as well as the shared archive member, telling the\n    #    bitwidth (32 or 64) of that shared object, and providing the\n    #    list of exported symbols of that shared object, eventually\n    #    decorated with the 'weak' keyword\n    # *) the shared object with the F_LOADONLY flag set, to really avoid\n    #    it being seen by the linker.\n    # At run time we better use the real file rather than another symlink,\n    # but for link time we create the symlink libNAME.so -> libNAME.so.V\n\n    case $with_aix_soname,$aix_use_runtimelinking in\n    # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct\n    # soname into executable. Probably we can add versioning support to\n    # collect2, so additional links can be useful in future.\n    aix,yes) # traditional libtool\n      dynamic_linker='AIX unversionable lib.so'\n      # If using run time linking (on AIX 4.2 or later) use lib<name>.so\n      # instead of lib<name>.a to let people know that these are not\n      # typical AIX shared libraries.\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n      ;;\n    aix,no) # traditional AIX only\n      dynamic_linker='AIX lib.a[(]lib.so.V[)]'\n      # We preserve .a as extension for shared libraries through AIX4.2\n      # and later when we are not doing run time linking.\n      library_names_spec='$libname$release.a $libname.a'\n      soname_spec='$libname$release$shared_ext$major'\n      ;;\n    svr4,*) # full svr4 only\n      dynamic_linker=\"AIX lib.so.V[(]$shared_archive_member_spec.o[)]\"\n      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'\n      # We do not specify a path in Import Files, so LIBPATH fires.\n      shlibpath_overrides_runpath=yes\n      ;;\n    *,yes) # both, prefer svr4\n      dynamic_linker=\"AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]\"\n      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'\n      # unpreferred sharedlib libNAME.a needs extra handling\n      postinstall_cmds='test -n \"$linkname\" || linkname=\"$realname\"~func_stripname \"\" \".so\" \"$linkname\"~$install_shared_prog \"$dir/$func_stripname_result.$libext\" \"$destdir/$func_stripname_result.$libext\"~test -z \"$tstripme\" || test -z \"$striplib\" || $striplib \"$destdir/$func_stripname_result.$libext\"'\n      postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname \"\" \".so\" \"$n\"~test \"$func_stripname_result\" = \"$n\" || func_append rmfiles \" $odir/$func_stripname_result.$libext\"'\n      # We do not specify a path in Import Files, so LIBPATH fires.\n      shlibpath_overrides_runpath=yes\n      ;;\n    *,no) # both, prefer aix\n      dynamic_linker=\"AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]\"\n      library_names_spec='$libname$release.a $libname.a'\n      soname_spec='$libname$release$shared_ext$major'\n      # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling\n      postinstall_cmds='test -z \"$dlname\" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z \"$tstripme\" || test -z \"$striplib\" || $striplib $destdir/$dlname~test -n \"$linkname\" || linkname=$realname~func_stripname \"\" \".a\" \"$linkname\"~(cd \"$destdir\" && $LN_S -f $dlname $func_stripname_result.so)'\n      postuninstall_cmds='test -z \"$dlname\" || func_append rmfiles \" $odir/$dlname\"~for n in $old_library $library_names; do :; done~func_stripname \"\" \".a\" \"$n\"~func_append rmfiles \" $odir/$func_stripname_result.so\"'\n      ;;\n    esac\n    shlibpath_var=LIBPATH\n  fi\n  ;;\n\namigaos*)\n  case $host_cpu in\n  powerpc)\n    # Since July 2007 AmigaOS4 officially supports .so libraries.\n    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    ;;\n  m68k)\n    library_names_spec='$libname.ixlibrary $libname.a'\n    # Create ${libname}_ixlibrary.a entries in /sys/libs.\n    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all \"$lib\" | $SED '\\''s%^.*/\\([[^/]]*\\)\\.ixlibrary$%\\1%'\\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show \"cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a\"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'\n    ;;\n  esac\n  ;;\n\nbeos*)\n  library_names_spec='$libname$shared_ext'\n  dynamic_linker=\"$host_os ld.so\"\n  shlibpath_var=LIBRARY_PATH\n  ;;\n\nbsdi[[45]]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=\"/shlib /usr/lib /usr/local/lib\"\n  # the default ld.so.conf also contains /usr/contrib/lib and\n  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow\n  # libtool to hard-code these into programs\n  ;;\n\ncygwin* | mingw* | pw32* | cegcc*)\n  version_type=windows\n  shrext_cmds=.dll\n  need_version=no\n  need_lib_prefix=no\n\n  case $GCC,$cc_basename in\n  yes,*)\n    # gcc\n    library_names_spec='$libname.dll.a'\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\$file`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname~\n      chmod a+x \\$dldir/$dlname~\n      if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n        eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n      fi'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n\n    case $host_os in\n    cygwin*)\n      # Cygwin DLLs use 'cyg' prefix rather than 'lib'\n      soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'\nm4_if([$1], [],[\n      sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/lib/w32api\"])\n      ;;\n    mingw* | cegcc*)\n      # MinGW DLLs use traditional 'lib' prefix\n      soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'\n      ;;\n    pw32*)\n      # pw32 DLLs use 'pw' prefix rather than 'lib'\n      library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'\n      ;;\n    esac\n    dynamic_linker='Win32 ld.exe'\n    ;;\n\n  *,cl*)\n    # Native MSVC\n    libname_spec='$name'\n    soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'\n    library_names_spec='$libname.dll.lib'\n\n    case $build_os in\n    mingw*)\n      sys_lib_search_path_spec=\n      lt_save_ifs=$IFS\n      IFS=';'\n      for lt_path in $LIB\n      do\n        IFS=$lt_save_ifs\n        # Let DOS variable expansion print the short 8.3 style file name.\n        lt_path=`cd \"$lt_path\" 2>/dev/null && cmd //C \"for %i in (\".\") do @echo %~si\"`\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec $lt_path\"\n      done\n      IFS=$lt_save_ifs\n      # Convert to MSYS style.\n      sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | sed -e 's|\\\\\\\\|/|g' -e 's| \\\\([[a-zA-Z]]\\\\):| /\\\\1|g' -e 's|^ ||'`\n      ;;\n    cygwin*)\n      # Convert to unix form, then to dos form, then back to unix form\n      # but this time dos style (no spaces!) so that the unix form looks\n      # like /cygdrive/c/PROGRA~1:/cygdr...\n      sys_lib_search_path_spec=`cygpath --path --unix \"$LIB\"`\n      sys_lib_search_path_spec=`cygpath --path --dos \"$sys_lib_search_path_spec\" 2>/dev/null`\n      sys_lib_search_path_spec=`cygpath --path --unix \"$sys_lib_search_path_spec\" | $SED -e \"s/$PATH_SEPARATOR/ /g\"`\n      ;;\n    *)\n      sys_lib_search_path_spec=$LIB\n      if $ECHO \"$sys_lib_search_path_spec\" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then\n        # It is most probably a Windows format PATH.\n        sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | $SED -e 's/;/ /g'`\n      else\n        sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | $SED -e \"s/$PATH_SEPARATOR/ /g\"`\n      fi\n      # FIXME: find the short name or the path components, as spaces are\n      # common. (e.g. \"Program Files\" -> \"PROGRA~1\")\n      ;;\n    esac\n\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\$file`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n    dynamic_linker='Win32 link.exe'\n    ;;\n\n  *)\n    # Assume MSVC wrapper\n    library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib'\n    dynamic_linker='Win32 ld.exe'\n    ;;\n  esac\n  # FIXME: first we should search . and the directory the executable is in\n  shlibpath_var=PATH\n  ;;\n\ndarwin* | rhapsody*)\n  dynamic_linker=\"$host_os dyld\"\n  version_type=darwin\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$major$shared_ext $libname$shared_ext'\n  soname_spec='$libname$release$major$shared_ext'\n  shlibpath_overrides_runpath=yes\n  shlibpath_var=DYLD_LIBRARY_PATH\n  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'\nm4_if([$1], [],[\n  sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/local/lib\"])\n  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'\n  ;;\n\ndgux*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\nfreebsd* | dragonfly*)\n  # DragonFly does not have aout.  When/if they implement a new\n  # versioning mechanism, adjust this.\n  if test -x /usr/bin/objformat; then\n    objformat=`/usr/bin/objformat`\n  else\n    case $host_os in\n    freebsd[[23]].*) objformat=aout ;;\n    *) objformat=elf ;;\n    esac\n  fi\n  version_type=freebsd-$objformat\n  case $version_type in\n    freebsd-elf*)\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n      soname_spec='$libname$release$shared_ext$major'\n      need_version=no\n      need_lib_prefix=no\n      ;;\n    freebsd-*)\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n      need_version=yes\n      ;;\n  esac\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_os in\n  freebsd2.*)\n    shlibpath_overrides_runpath=yes\n    ;;\n  freebsd3.[[01]]* | freebsdelf3.[[01]]*)\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \\\n  freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)\n    shlibpath_overrides_runpath=no\n    hardcode_into_libs=yes\n    ;;\n  *) # from 4.6 on, and DragonFly\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  esac\n  ;;\n\nhaiku*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  dynamic_linker=\"$host_os runtime_loader\"\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'\n  hardcode_into_libs=yes\n  ;;\n\nhpux9* | hpux10* | hpux11*)\n  # Give a soname corresponding to the major version so that dld.sl refuses to\n  # link against other versions.\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  case $host_cpu in\n  ia64*)\n    shrext_cmds='.so'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.so\"\n    shlibpath_var=LD_LIBRARY_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    if test 32 = \"$HPUX_IA64_MODE\"; then\n      sys_lib_search_path_spec=\"/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib\"\n      sys_lib_dlsearch_path_spec=/usr/lib/hpux32\n    else\n      sys_lib_search_path_spec=\"/usr/lib/hpux64 /usr/local/lib/hpux64\"\n      sys_lib_dlsearch_path_spec=/usr/lib/hpux64\n    fi\n    ;;\n  hppa*64*)\n    shrext_cmds='.sl'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    sys_lib_search_path_spec=\"/usr/lib/pa20_64 /usr/ccs/lib/pa20_64\"\n    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n    ;;\n  *)\n    shrext_cmds='.sl'\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=SHLIB_PATH\n    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    ;;\n  esac\n  # HP-UX runs *really* slowly unless shared libraries are mode 555, ...\n  postinstall_cmds='chmod 555 $lib'\n  # or fails outright, so override atomically:\n  install_override_mode=555\n  ;;\n\ninterix[[3-9]]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $host_os in\n    nonstopux*) version_type=nonstopux ;;\n    *)\n\tif test yes = \"$lt_cv_prog_gnu_ld\"; then\n\t\tversion_type=linux # correct to gnu/linux during the next big refactor\n\telse\n\t\tversion_type=irix\n\tfi ;;\n  esac\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='$libname$release$shared_ext$major'\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext'\n  case $host_os in\n  irix5* | nonstopux*)\n    libsuff= shlibsuff=\n    ;;\n  *)\n    case $LD in # libtool.m4 will add one of these switches to LD\n    *-32|*\"-32 \"|*-melf32bsmip|*\"-melf32bsmip \")\n      libsuff= shlibsuff= libmagic=32-bit;;\n    *-n32|*\"-n32 \"|*-melf32bmipn32|*\"-melf32bmipn32 \")\n      libsuff=32 shlibsuff=N32 libmagic=N32;;\n    *-64|*\"-64 \"|*-melf64bmip|*\"-melf64bmip \")\n      libsuff=64 shlibsuff=64 libmagic=64-bit;;\n    *) libsuff= shlibsuff= libmagic=never-match;;\n    esac\n    ;;\n  esac\n  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_search_path_spec=\"/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff\"\n  sys_lib_dlsearch_path_spec=\"/usr/lib$libsuff /lib$libsuff\"\n  hardcode_into_libs=yes\n  ;;\n\n# No shared lib support for Linux oldld, aout, or coff.\nlinux*oldld* | linux*aout* | linux*coff*)\n  dynamic_linker=no\n  ;;\n\nlinux*android*)\n  version_type=none # Android doesn't support versioned libraries.\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext'\n  soname_spec='$libname$release$shared_ext'\n  finish_cmds=\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  dynamic_linker='Android linker'\n  # Don't embed -rpath directories since the linker doesn't support them.\n  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n  ;;\n\n# This must be glibc/ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -n $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n\n  # Some binutils ld are patched to set DT_RUNPATH\n  AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath],\n    [lt_cv_shlibpath_overrides_runpath=no\n    save_LDFLAGS=$LDFLAGS\n    save_libdir=$libdir\n    eval \"libdir=/foo; wl=\\\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\\\"; \\\n\t LDFLAGS=\\\"\\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\\\"\"\n    AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],\n      [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep \"RUNPATH.*$libdir\" >/dev/null],\n\t [lt_cv_shlibpath_overrides_runpath=yes])])\n    LDFLAGS=$save_LDFLAGS\n    libdir=$save_libdir\n    ])\n  shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  # Ideally, we could use ldconfig to report *all* directores which are\n  # searched for libraries, however this is still not possible.  Aside from not\n  # being certain /sbin/ldconfig is available, command\n  # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64,\n  # even though it is searched at run-time.  Try to do the best guess by\n  # appending ld.so.conf contents (and includes) to the search path.\n  if test -f /etc/ld.so.conf; then\n    lt_ld_extra=`awk '/^include / { system(sprintf(\"cd /etc; cat %s 2>/dev/null\", \\[$]2)); skip = 1; } { if (!skip) print \\[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[\t ]*hwcap[\t ]/d;s/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/\"//g;/^$/d' | tr '\\n' ' '`\n    sys_lib_dlsearch_path_spec=\"/lib /usr/lib $lt_ld_extra\"\n  fi\n\n  # We used to test for /lib/ld.so.1 and disable shared libraries on\n  # powerpc, because MkLinux only supported shared libraries with the\n  # GNU dynamic linker.  Since this was broken with cross compilers,\n  # most powerpc-linux boxes support dynamic linking these days and\n  # people can always --disable-shared, the test was removed, and we\n  # assume the GNU/Linux dynamic linker is in use.\n  dynamic_linker='GNU/Linux ld.so'\n  ;;\n\nnetbsd*)\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n    finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n    dynamic_linker='NetBSD (a.out) ld.so'\n  else\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    dynamic_linker='NetBSD ld.elf_so'\n  fi\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  ;;\n\nnewsos6)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\n*nto* | *qnx*)\n  version_type=qnx\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  dynamic_linker='ldqnx.so'\n  ;;\n\nopenbsd* | bitrig*)\n  version_type=sunos\n  sys_lib_dlsearch_path_spec=/usr/lib\n  need_lib_prefix=no\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n    need_version=no\n  else\n    need_version=yes\n  fi\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\nos2*)\n  libname_spec='$name'\n  version_type=windows\n  shrext_cmds=.dll\n  need_version=no\n  need_lib_prefix=no\n  # OS/2 can only load a DLL with a base name of 8 characters or less.\n  soname_spec='`test -n \"$os2dllname\" && libname=\"$os2dllname\";\n    v=$($ECHO $release$versuffix | tr -d .-);\n    n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _);\n    $ECHO $n$v`$shared_ext'\n  library_names_spec='${libname}_dll.$libext'\n  dynamic_linker='OS/2 ld.exe'\n  shlibpath_var=BEGINLIBPATH\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n  postinstall_cmds='base_file=`basename \\$file`~\n    dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; $ECHO \\$dlname'\\''`~\n    dldir=$destdir/`dirname \\$dlpath`~\n    test -d \\$dldir || mkdir -p \\$dldir~\n    $install_prog $dir/$dlname \\$dldir/$dlname~\n    chmod a+x \\$dldir/$dlname~\n    if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n      eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n    fi'\n  postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; $ECHO \\$dlname'\\''`~\n    dlpath=$dir/\\$dldll~\n    $RM \\$dlpath'\n  ;;\n\nosf3* | osf4* | osf5*)\n  version_type=osf\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='$libname$release$shared_ext$major'\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib\"\n  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n  ;;\n\nrdos*)\n  dynamic_linker=no\n  ;;\n\nsolaris*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  # ldd complains unless libraries are executable\n  postinstall_cmds='chmod +x $lib'\n  ;;\n\nsunos4*)\n  version_type=sunos\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/usr/etc\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  if test yes = \"$with_gnu_ld\"; then\n    need_lib_prefix=no\n  fi\n  need_version=yes\n  ;;\n\nsysv4 | sysv4.3*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_vendor in\n    sni)\n      shlibpath_overrides_runpath=no\n      need_lib_prefix=no\n      runpath_var=LD_RUN_PATH\n      ;;\n    siemens)\n      need_lib_prefix=no\n      ;;\n    motorola)\n      need_lib_prefix=no\n      need_version=no\n      shlibpath_overrides_runpath=no\n      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'\n      ;;\n  esac\n  ;;\n\nsysv4*MP*)\n  if test -d /usr/nec; then\n    version_type=linux # correct to gnu/linux during the next big refactor\n    library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext'\n    soname_spec='$libname$shared_ext.$major'\n    shlibpath_var=LD_LIBRARY_PATH\n  fi\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  version_type=sco\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  if test yes = \"$with_gnu_ld\"; then\n    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'\n  else\n    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'\n    case $host_os in\n      sco3.2v5*)\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec /lib\"\n\t;;\n    esac\n  fi\n  sys_lib_dlsearch_path_spec='/usr/lib'\n  ;;\n\ntpf*)\n  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nuts4*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\n*)\n  dynamic_linker=no\n  ;;\nesac\nAC_MSG_RESULT([$dynamic_linker])\ntest no = \"$dynamic_linker\" && can_build_shared=no\n\nvariables_saved_for_relink=\"PATH $shlibpath_var $runpath_var\"\nif test yes = \"$GCC\"; then\n  variables_saved_for_relink=\"$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH\"\nfi\n\nif test set = \"${lt_cv_sys_lib_search_path_spec+set}\"; then\n  sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec\nfi\n\nif test set = \"${lt_cv_sys_lib_dlsearch_path_spec+set}\"; then\n  sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec\nfi\n\n# remember unaugmented sys_lib_dlsearch_path content for libtool script decls...\nconfigure_time_dlsearch_path=$sys_lib_dlsearch_path_spec\n\n# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code\nfunc_munge_path_list sys_lib_dlsearch_path_spec \"$LT_SYS_LIBRARY_PATH\"\n\n# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool\nconfigure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH\n\n_LT_DECL([], [variables_saved_for_relink], [1],\n    [Variables whose values should be saved in libtool wrapper scripts and\n    restored at link time])\n_LT_DECL([], [need_lib_prefix], [0],\n    [Do we need the \"lib\" prefix for modules?])\n_LT_DECL([], [need_version], [0], [Do we need a version for libraries?])\n_LT_DECL([], [version_type], [0], [Library versioning type])\n_LT_DECL([], [runpath_var], [0],  [Shared library runtime path variable])\n_LT_DECL([], [shlibpath_var], [0],[Shared library path variable])\n_LT_DECL([], [shlibpath_overrides_runpath], [0],\n    [Is shlibpath searched before the hard-coded library search path?])\n_LT_DECL([], [libname_spec], [1], [Format of library name prefix])\n_LT_DECL([], [library_names_spec], [1],\n    [[List of archive names.  First name is the real one, the rest are links.\n    The last name is the one that the linker finds with -lNAME]])\n_LT_DECL([], [soname_spec], [1],\n    [[The coded name of the library, if different from the real name]])\n_LT_DECL([], [install_override_mode], [1],\n    [Permission mode override for installation of shared libraries])\n_LT_DECL([], [postinstall_cmds], [2],\n    [Command to use after installation of a shared archive])\n_LT_DECL([], [postuninstall_cmds], [2],\n    [Command to use after uninstallation of a shared archive])\n_LT_DECL([], [finish_cmds], [2],\n    [Commands used to finish a libtool library installation in a directory])\n_LT_DECL([], [finish_eval], [1],\n    [[As \"finish_cmds\", except a single script fragment to be evaled but\n    not shown]])\n_LT_DECL([], [hardcode_into_libs], [0],\n    [Whether we should hardcode library paths into libraries])\n_LT_DECL([], [sys_lib_search_path_spec], [2],\n    [Compile-time system search path for libraries])\n_LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2],\n    [Detected run-time system search path for libraries])\n_LT_DECL([], [configure_time_lt_sys_library_path], [2],\n    [Explicit LT_SYS_LIBRARY_PATH set during ./configure time])\n])# _LT_SYS_DYNAMIC_LINKER\n\n\n# _LT_PATH_TOOL_PREFIX(TOOL)\n# --------------------------\n# find a file program that can recognize shared library\nAC_DEFUN([_LT_PATH_TOOL_PREFIX],\n[m4_require([_LT_DECL_EGREP])dnl\nAC_MSG_CHECKING([for $1])\nAC_CACHE_VAL(lt_cv_path_MAGIC_CMD,\n[case $MAGIC_CMD in\n[[\\\\/*] |  ?:[\\\\/]*])\n  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.\n  ;;\n*)\n  lt_save_MAGIC_CMD=$MAGIC_CMD\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\ndnl $ac_dummy forces splitting on constant user-supplied paths.\ndnl POSIX.2 word splitting is done only on the output of word expansions,\ndnl not every word.  This closes a longstanding sh security hole.\n  ac_dummy=\"m4_if([$2], , $PATH, [$2])\"\n  for ac_dir in $ac_dummy; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$1\"; then\n      lt_cv_path_MAGIC_CMD=$ac_dir/\"$1\"\n      if test -n \"$file_magic_test_file\"; then\n\tcase $deplibs_check_method in\n\t\"file_magic \"*)\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"file_magic \\(.*\\)\"`\n\t  MAGIC_CMD=$lt_cv_path_MAGIC_CMD\n\t  if eval $file_magic_cmd \\$file_magic_test_file 2> /dev/null |\n\t    $EGREP \"$file_magic_regex\" > /dev/null; then\n\t    :\n\t  else\n\t    cat <<_LT_EOF 1>&2\n\n*** Warning: the command libtool uses to detect shared libraries,\n*** $file_magic_cmd, produces output that libtool cannot recognize.\n*** The result is that libtool may fail to recognize shared libraries\n*** as such.  This will affect the creation of libtool libraries that\n*** depend on shared libraries, but programs linked with such libtool\n*** libraries will work regardless of this problem.  Nevertheless, you\n*** may want to report the problem to your system manager and/or to\n*** bug-libtool@gnu.org\n\n_LT_EOF\n\t  fi ;;\n\tesac\n      fi\n      break\n    fi\n  done\n  IFS=$lt_save_ifs\n  MAGIC_CMD=$lt_save_MAGIC_CMD\n  ;;\nesac])\nMAGIC_CMD=$lt_cv_path_MAGIC_CMD\nif test -n \"$MAGIC_CMD\"; then\n  AC_MSG_RESULT($MAGIC_CMD)\nelse\n  AC_MSG_RESULT(no)\nfi\n_LT_DECL([], [MAGIC_CMD], [0],\n\t [Used to examine libraries when file_magic_cmd begins with \"file\"])dnl\n])# _LT_PATH_TOOL_PREFIX\n\n# Old name:\nAU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])\n\n\n# _LT_PATH_MAGIC\n# --------------\n# find a file program that can recognize a shared library\nm4_defun([_LT_PATH_MAGIC],\n[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)\nif test -z \"$lt_cv_path_MAGIC_CMD\"; then\n  if test -n \"$ac_tool_prefix\"; then\n    _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)\n  else\n    MAGIC_CMD=:\n  fi\nfi\n])# _LT_PATH_MAGIC\n\n\n# LT_PATH_LD\n# ----------\n# find the pathname to the GNU or non-GNU linker\nAC_DEFUN([LT_PATH_LD],\n[AC_REQUIRE([AC_PROG_CC])dnl\nAC_REQUIRE([AC_CANONICAL_HOST])dnl\nAC_REQUIRE([AC_CANONICAL_BUILD])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_PROG_ECHO_BACKSLASH])dnl\n\nAC_ARG_WITH([gnu-ld],\n    [AS_HELP_STRING([--with-gnu-ld],\n\t[assume the C compiler uses GNU ld @<:@default=no@:>@])],\n    [test no = \"$withval\" || with_gnu_ld=yes],\n    [with_gnu_ld=no])dnl\n\nac_prog=ld\nif test yes = \"$GCC\"; then\n  # Check if gcc -print-prog-name=ld gives a path.\n  AC_MSG_CHECKING([for ld used by $CC])\n  case $host in\n  *-*-mingw*)\n    # gcc leaves a trailing carriage return, which upsets mingw\n    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\\015'` ;;\n  *)\n    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;\n  esac\n  case $ac_prog in\n    # Accept absolute paths.\n    [[\\\\/]]* | ?:[[\\\\/]]*)\n      re_direlt='/[[^/]][[^/]]*/\\.\\./'\n      # Canonicalize the pathname of ld\n      ac_prog=`$ECHO \"$ac_prog\"| $SED 's%\\\\\\\\%/%g'`\n      while $ECHO \"$ac_prog\" | $GREP \"$re_direlt\" > /dev/null 2>&1; do\n\tac_prog=`$ECHO $ac_prog| $SED \"s%$re_direlt%/%\"`\n      done\n      test -z \"$LD\" && LD=$ac_prog\n      ;;\n  \"\")\n    # If it fails, then pretend we aren't using GCC.\n    ac_prog=ld\n    ;;\n  *)\n    # If it is relative, then search for the first ld in PATH.\n    with_gnu_ld=unknown\n    ;;\n  esac\nelif test yes = \"$with_gnu_ld\"; then\n  AC_MSG_CHECKING([for GNU ld])\nelse\n  AC_MSG_CHECKING([for non-GNU ld])\nfi\nAC_CACHE_VAL(lt_cv_path_LD,\n[if test -z \"$LD\"; then\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n  for ac_dir in $PATH; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$ac_prog\" || test -f \"$ac_dir/$ac_prog$ac_exeext\"; then\n      lt_cv_path_LD=$ac_dir/$ac_prog\n      # Check to see if the program is GNU ld.  I'd rather use --version,\n      # but apparently some variants of GNU ld only accept -v.\n      # Break only if it was the GNU/non-GNU ld that we prefer.\n      case `\"$lt_cv_path_LD\" -v 2>&1 </dev/null` in\n      *GNU* | *'with BFD'*)\n\ttest no != \"$with_gnu_ld\" && break\n\t;;\n      *)\n\ttest yes != \"$with_gnu_ld\" && break\n\t;;\n      esac\n    fi\n  done\n  IFS=$lt_save_ifs\nelse\n  lt_cv_path_LD=$LD # Let the user override the test with a path.\nfi])\nLD=$lt_cv_path_LD\nif test -n \"$LD\"; then\n  AC_MSG_RESULT($LD)\nelse\n  AC_MSG_RESULT(no)\nfi\ntest -z \"$LD\" && AC_MSG_ERROR([no acceptable ld found in \\$PATH])\n_LT_PATH_LD_GNU\nAC_SUBST([LD])\n\n_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])\n])# LT_PATH_LD\n\n# Old names:\nAU_ALIAS([AM_PROG_LD], [LT_PATH_LD])\nAU_ALIAS([AC_PROG_LD], [LT_PATH_LD])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_PROG_LD], [])\ndnl AC_DEFUN([AC_PROG_LD], [])\n\n\n# _LT_PATH_LD_GNU\n#- --------------\nm4_defun([_LT_PATH_LD_GNU],\n[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,\n[# I'd rather use --version here, but apparently some GNU lds only accept -v.\ncase `$LD -v 2>&1 </dev/null` in\n*GNU* | *'with BFD'*)\n  lt_cv_prog_gnu_ld=yes\n  ;;\n*)\n  lt_cv_prog_gnu_ld=no\n  ;;\nesac])\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n])# _LT_PATH_LD_GNU\n\n\n# _LT_CMD_RELOAD\n# --------------\n# find reload flag for linker\n#   -- PORTME Some linkers may need a different reload flag.\nm4_defun([_LT_CMD_RELOAD],\n[AC_CACHE_CHECK([for $LD option to reload object files],\n  lt_cv_ld_reload_flag,\n  [lt_cv_ld_reload_flag='-r'])\nreload_flag=$lt_cv_ld_reload_flag\ncase $reload_flag in\n\"\" | \" \"*) ;;\n*) reload_flag=\" $reload_flag\" ;;\nesac\nreload_cmds='$LD$reload_flag -o $output$reload_objs'\ncase $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    if test yes != \"$GCC\"; then\n      reload_cmds=false\n    fi\n    ;;\n  darwin*)\n    if test yes = \"$GCC\"; then\n      reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs'\n    else\n      reload_cmds='$LD$reload_flag -o $output$reload_objs'\n    fi\n    ;;\nesac\n_LT_TAGDECL([], [reload_flag], [1], [How to create reloadable object files])dnl\n_LT_TAGDECL([], [reload_cmds], [2])dnl\n])# _LT_CMD_RELOAD\n\n\n# _LT_PATH_DD\n# -----------\n# find a working dd\nm4_defun([_LT_PATH_DD],\n[AC_CACHE_CHECK([for a working dd], [ac_cv_path_lt_DD],\n[printf 0123456789abcdef0123456789abcdef >conftest.i\ncat conftest.i conftest.i >conftest2.i\n: ${lt_DD:=$DD}\nAC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd],\n[if \"$ac_path_lt_DD\" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then\n  cmp -s conftest.i conftest.out \\\n  && ac_cv_path_lt_DD=\"$ac_path_lt_DD\" ac_path_lt_DD_found=:\nfi])\nrm -f conftest.i conftest2.i conftest.out])\n])# _LT_PATH_DD\n\n\n# _LT_CMD_TRUNCATE\n# ----------------\n# find command to truncate a binary pipe\nm4_defun([_LT_CMD_TRUNCATE],\n[m4_require([_LT_PATH_DD])\nAC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin],\n[printf 0123456789abcdef0123456789abcdef >conftest.i\ncat conftest.i conftest.i >conftest2.i\nlt_cv_truncate_bin=\nif \"$ac_cv_path_lt_DD\" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then\n  cmp -s conftest.i conftest.out \\\n  && lt_cv_truncate_bin=\"$ac_cv_path_lt_DD bs=4096 count=1\"\nfi\nrm -f conftest.i conftest2.i conftest.out\ntest -z \"$lt_cv_truncate_bin\" && lt_cv_truncate_bin=\"$SED -e 4q\"])\n_LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1],\n  [Command to truncate a binary pipe])\n])# _LT_CMD_TRUNCATE\n\n\n# _LT_CHECK_MAGIC_METHOD\n# ----------------------\n# how to check for library dependencies\n#  -- PORTME fill in with the dynamic library characteristics\nm4_defun([_LT_CHECK_MAGIC_METHOD],\n[m4_require([_LT_DECL_EGREP])\nm4_require([_LT_DECL_OBJDUMP])\nAC_CACHE_CHECK([how to recognize dependent libraries],\nlt_cv_deplibs_check_method,\n[lt_cv_file_magic_cmd='$MAGIC_CMD'\nlt_cv_file_magic_test_file=\nlt_cv_deplibs_check_method='unknown'\n# Need to set the preceding variable on all platforms that support\n# interlibrary dependencies.\n# 'none' -- dependencies not supported.\n# 'unknown' -- same as none, but documents that we really don't know.\n# 'pass_all' -- all dependencies passed with no checks.\n# 'test_compile' -- check by making test program.\n# 'file_magic [[regex]]' -- check by looking for files in library path\n# that responds to the $file_magic_cmd with a given extended regex.\n# If you have 'file' or equivalent on your system and you're not sure\n# whether 'pass_all' will *always* work, you probably want this one.\n\ncase $host_os in\naix[[4-9]]*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbeos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbsdi[[45]]*)\n  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'\n  lt_cv_file_magic_cmd='/usr/bin/file -L'\n  lt_cv_file_magic_test_file=/shlib/libc.so\n  ;;\n\ncygwin*)\n  # func_win32_libid is a shell function defined in ltmain.sh\n  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n  lt_cv_file_magic_cmd='func_win32_libid'\n  ;;\n\nmingw* | pw32*)\n  # Base MSYS/MinGW do not provide the 'file' command needed by\n  # func_win32_libid shell function, so use a weaker test based on 'objdump',\n  # unless we find 'file', for example because we are cross-compiling.\n  if ( file / ) >/dev/null 2>&1; then\n    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n    lt_cv_file_magic_cmd='func_win32_libid'\n  else\n    # Keep this pattern in sync with the one in func_win32_libid.\n    lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'\n    lt_cv_file_magic_cmd='$OBJDUMP -f'\n  fi\n  ;;\n\ncegcc*)\n  # use the weaker test based on 'objdump'. See mingw*.\n  lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'\n  lt_cv_file_magic_cmd='$OBJDUMP -f'\n  ;;\n\ndarwin* | rhapsody*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nfreebsd* | dragonfly*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    case $host_cpu in\n    i*86 )\n      # Not sure whether the presence of OpenBSD here was a mistake.\n      # Let's accept both of them until this is cleared up.\n      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'\n      lt_cv_file_magic_cmd=/usr/bin/file\n      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`\n      ;;\n    esac\n  else\n    lt_cv_deplibs_check_method=pass_all\n  fi\n  ;;\n\nhaiku*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nhpux10.20* | hpux11*)\n  lt_cv_file_magic_cmd=/usr/bin/file\n  case $host_cpu in\n  ia64*)\n    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'\n    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so\n    ;;\n  hppa*64*)\n    [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\\.[0-9]']\n    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl\n    ;;\n  *)\n    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\\.[[0-9]]) shared library'\n    lt_cv_file_magic_test_file=/usr/lib/libc.sl\n    ;;\n  esac\n  ;;\n\ninterix[[3-9]]*)\n  # PIC code is broken on Interix 3.x, that's why |\\.a not |_pic\\.a here\n  lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so|\\.a)$'\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $LD in\n  *-32|*\"-32 \") libmagic=32-bit;;\n  *-n32|*\"-n32 \") libmagic=N32;;\n  *-64|*\"-64 \") libmagic=64-bit;;\n  *) libmagic=never-match;;\n  esac\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\n# This must be glibc/ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nnetbsd*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so\\.[[0-9]]+\\.[[0-9]]+|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so|_pic\\.a)$'\n  fi\n  ;;\n\nnewos6*)\n  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'\n  lt_cv_file_magic_cmd=/usr/bin/file\n  lt_cv_file_magic_test_file=/usr/lib/libnls.so\n  ;;\n\n*nto* | *qnx*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nopenbsd* | bitrig*)\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so\\.[[0-9]]+\\.[[0-9]]+|\\.so|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so\\.[[0-9]]+\\.[[0-9]]+|_pic\\.a)$'\n  fi\n  ;;\n\nosf3* | osf4* | osf5*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nrdos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsolaris*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv4 | sysv4.3*)\n  case $host_vendor in\n  motorola)\n    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'\n    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`\n    ;;\n  ncr)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  sequent)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'\n    ;;\n  sni)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method=\"file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib\"\n    lt_cv_file_magic_test_file=/lib/libc.so\n    ;;\n  siemens)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  pc)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  esac\n  ;;\n\ntpf*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nos2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nesac\n])\n\nfile_magic_glob=\nwant_nocaseglob=no\nif test \"$build\" = \"$host\"; then\n  case $host_os in\n  mingw* | pw32*)\n    if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then\n      want_nocaseglob=yes\n    else\n      file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e \"s/\\(..\\)/s\\/[[\\1]]\\/[[\\1]]\\/g;/g\"`\n    fi\n    ;;\n  esac\nfi\n\nfile_magic_cmd=$lt_cv_file_magic_cmd\ndeplibs_check_method=$lt_cv_deplibs_check_method\ntest -z \"$deplibs_check_method\" && deplibs_check_method=unknown\n\n_LT_DECL([], [deplibs_check_method], [1],\n    [Method to check whether dependent libraries are shared objects])\n_LT_DECL([], [file_magic_cmd], [1],\n    [Command to use when deplibs_check_method = \"file_magic\"])\n_LT_DECL([], [file_magic_glob], [1],\n    [How to find potential files when deplibs_check_method = \"file_magic\"])\n_LT_DECL([], [want_nocaseglob], [1],\n    [Find potential files using nocaseglob when deplibs_check_method = \"file_magic\"])\n])# _LT_CHECK_MAGIC_METHOD\n\n\n# LT_PATH_NM\n# ----------\n# find the pathname to a BSD- or MS-compatible name lister\nAC_DEFUN([LT_PATH_NM],\n[AC_REQUIRE([AC_PROG_CC])dnl\nAC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,\n[if test -n \"$NM\"; then\n  # Let the user override the test.\n  lt_cv_path_NM=$NM\nelse\n  lt_nm_to_check=${ac_tool_prefix}nm\n  if test -n \"$ac_tool_prefix\" && test \"$build\" = \"$host\"; then\n    lt_nm_to_check=\"$lt_nm_to_check nm\"\n  fi\n  for lt_tmp_nm in $lt_nm_to_check; do\n    lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do\n      IFS=$lt_save_ifs\n      test -z \"$ac_dir\" && ac_dir=.\n      tmp_nm=$ac_dir/$lt_tmp_nm\n      if test -f \"$tmp_nm\" || test -f \"$tmp_nm$ac_exeext\"; then\n\t# Check to see if the nm accepts a BSD-compat flag.\n\t# Adding the 'sed 1q' prevents false positives on HP-UX, which says:\n\t#   nm: unknown option \"B\" ignored\n\t# Tru64's nm complains that /dev/null is an invalid object file\n\t# MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty\n\tcase $build_os in\n\tmingw*) lt_bad_file=conftest.nm/nofile ;;\n\t*) lt_bad_file=/dev/null ;;\n\tesac\n\tcase `\"$tmp_nm\" -B $lt_bad_file 2>&1 | sed '1q'` in\n\t*$lt_bad_file* | *'Invalid file or object type'*)\n\t  lt_cv_path_NM=\"$tmp_nm -B\"\n\t  break 2\n\t  ;;\n\t*)\n\t  case `\"$tmp_nm\" -p /dev/null 2>&1 | sed '1q'` in\n\t  */dev/null*)\n\t    lt_cv_path_NM=\"$tmp_nm -p\"\n\t    break 2\n\t    ;;\n\t  *)\n\t    lt_cv_path_NM=${lt_cv_path_NM=\"$tmp_nm\"} # keep the first match, but\n\t    continue # so that we can try to find one that supports BSD flags\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n      fi\n    done\n    IFS=$lt_save_ifs\n  done\n  : ${lt_cv_path_NM=no}\nfi])\nif test no != \"$lt_cv_path_NM\"; then\n  NM=$lt_cv_path_NM\nelse\n  # Didn't find any BSD compatible name lister, look for dumpbin.\n  if test -n \"$DUMPBIN\"; then :\n    # Let the user override the test.\n  else\n    AC_CHECK_TOOLS(DUMPBIN, [dumpbin \"link -dump\"], :)\n    case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in\n    *COFF*)\n      DUMPBIN=\"$DUMPBIN -symbols -headers\"\n      ;;\n    *)\n      DUMPBIN=:\n      ;;\n    esac\n  fi\n  AC_SUBST([DUMPBIN])\n  if test : != \"$DUMPBIN\"; then\n    NM=$DUMPBIN\n  fi\nfi\ntest -z \"$NM\" && NM=nm\nAC_SUBST([NM])\n_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl\n\nAC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],\n  [lt_cv_nm_interface=\"BSD nm\"\n  echo \"int some_variable = 0;\" > conftest.$ac_ext\n  (eval echo \"\\\"\\$as_me:$LINENO: $ac_compile\\\"\" >&AS_MESSAGE_LOG_FD)\n  (eval \"$ac_compile\" 2>conftest.err)\n  cat conftest.err >&AS_MESSAGE_LOG_FD\n  (eval echo \"\\\"\\$as_me:$LINENO: $NM \\\\\\\"conftest.$ac_objext\\\\\\\"\\\"\" >&AS_MESSAGE_LOG_FD)\n  (eval \"$NM \\\"conftest.$ac_objext\\\"\" 2>conftest.err > conftest.out)\n  cat conftest.err >&AS_MESSAGE_LOG_FD\n  (eval echo \"\\\"\\$as_me:$LINENO: output\\\"\" >&AS_MESSAGE_LOG_FD)\n  cat conftest.out >&AS_MESSAGE_LOG_FD\n  if $GREP 'External.*some_variable' conftest.out > /dev/null; then\n    lt_cv_nm_interface=\"MS dumpbin\"\n  fi\n  rm -f conftest*])\n])# LT_PATH_NM\n\n# Old names:\nAU_ALIAS([AM_PROG_NM], [LT_PATH_NM])\nAU_ALIAS([AC_PROG_NM], [LT_PATH_NM])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_PROG_NM], [])\ndnl AC_DEFUN([AC_PROG_NM], [])\n\n# _LT_CHECK_SHAREDLIB_FROM_LINKLIB\n# --------------------------------\n# how to determine the name of the shared library\n# associated with a specific link library.\n#  -- PORTME fill in with the dynamic library characteristics\nm4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB],\n[m4_require([_LT_DECL_EGREP])\nm4_require([_LT_DECL_OBJDUMP])\nm4_require([_LT_DECL_DLLTOOL])\nAC_CACHE_CHECK([how to associate runtime and link libraries],\nlt_cv_sharedlib_from_linklib_cmd,\n[lt_cv_sharedlib_from_linklib_cmd='unknown'\n\ncase $host_os in\ncygwin* | mingw* | pw32* | cegcc*)\n  # two different shell functions defined in ltmain.sh;\n  # decide which one to use based on capabilities of $DLLTOOL\n  case `$DLLTOOL --help 2>&1` in\n  *--identify-strict*)\n    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib\n    ;;\n  *)\n    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback\n    ;;\n  esac\n  ;;\n*)\n  # fallback: assume linklib IS sharedlib\n  lt_cv_sharedlib_from_linklib_cmd=$ECHO\n  ;;\nesac\n])\nsharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd\ntest -z \"$sharedlib_from_linklib_cmd\" && sharedlib_from_linklib_cmd=$ECHO\n\n_LT_DECL([], [sharedlib_from_linklib_cmd], [1],\n    [Command to associate shared and link libraries])\n])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB\n\n\n# _LT_PATH_MANIFEST_TOOL\n# ----------------------\n# locate the manifest tool\nm4_defun([_LT_PATH_MANIFEST_TOOL],\n[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :)\ntest -z \"$MANIFEST_TOOL\" && MANIFEST_TOOL=mt\nAC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool],\n  [lt_cv_path_mainfest_tool=no\n  echo \"$as_me:$LINENO: $MANIFEST_TOOL '-?'\" >&AS_MESSAGE_LOG_FD\n  $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out\n  cat conftest.err >&AS_MESSAGE_LOG_FD\n  if $GREP 'Manifest Tool' conftest.out > /dev/null; then\n    lt_cv_path_mainfest_tool=yes\n  fi\n  rm -f conftest*])\nif test yes != \"$lt_cv_path_mainfest_tool\"; then\n  MANIFEST_TOOL=:\nfi\n_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl\n])# _LT_PATH_MANIFEST_TOOL\n\n\n# _LT_DLL_DEF_P([FILE])\n# ---------------------\n# True iff FILE is a Windows DLL '.def' file.\n# Keep in sync with func_dll_def_p in the libtool script\nAC_DEFUN([_LT_DLL_DEF_P],\n[dnl\n  test DEF = \"`$SED -n dnl\n    -e '\\''s/^[[\t ]]*//'\\'' dnl Strip leading whitespace\n    -e '\\''/^\\(;.*\\)*$/d'\\'' dnl      Delete empty lines and comments\n    -e '\\''s/^\\(EXPORTS\\|LIBRARY\\)\\([[\t ]].*\\)*$/DEF/p'\\'' dnl\n    -e q dnl                          Only consider the first \"real\" line\n    $1`\" dnl\n])# _LT_DLL_DEF_P\n\n\n# LT_LIB_M\n# --------\n# check for math library\nAC_DEFUN([LT_LIB_M],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nLIBM=\ncase $host in\n*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)\n  # These system don't have libm, or don't need it\n  ;;\n*-ncr-sysv4.3*)\n  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw)\n  AC_CHECK_LIB(m, cos, LIBM=\"$LIBM -lm\")\n  ;;\n*)\n  AC_CHECK_LIB(m, cos, LIBM=-lm)\n  ;;\nesac\nAC_SUBST([LIBM])\n])# LT_LIB_M\n\n# Old name:\nAU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_CHECK_LIBM], [])\n\n\n# _LT_COMPILER_NO_RTTI([TAGNAME])\n# -------------------------------\nm4_defun([_LT_COMPILER_NO_RTTI],\n[m4_require([_LT_TAG_COMPILER])dnl\n\n_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=\n\nif test yes = \"$GCC\"; then\n  case $cc_basename in\n  nvcc*)\n    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;;\n  *)\n    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;;\n  esac\n\n  _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],\n    lt_cv_prog_compiler_rtti_exceptions,\n    [-fno-rtti -fno-exceptions], [],\n    [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=\"$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions\"])\nfi\n_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],\n\t[Compiler flag to turn off builtin functions])\n])# _LT_COMPILER_NO_RTTI\n\n\n# _LT_CMD_GLOBAL_SYMBOLS\n# ----------------------\nm4_defun([_LT_CMD_GLOBAL_SYMBOLS],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nAC_REQUIRE([AC_PROG_CC])dnl\nAC_REQUIRE([AC_PROG_AWK])dnl\nAC_REQUIRE([LT_PATH_NM])dnl\nAC_REQUIRE([LT_PATH_LD])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_TAG_COMPILER])dnl\n\n# Check for command to grab the raw symbol name followed by C symbol from nm.\nAC_MSG_CHECKING([command to parse $NM output from $compiler object])\nAC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],\n[\n# These are sane defaults that work on at least a few old systems.\n# [They come from Ultrix.  What could be older than Ultrix?!! ;)]\n\n# Character class describing NM global symbol codes.\nsymcode='[[BCDEGRST]]'\n\n# Regexp to match symbols that can be accessed directly from C.\nsympat='\\([[_A-Za-z]][[_A-Za-z0-9]]*\\)'\n\n# Define system-specific variables.\ncase $host_os in\naix*)\n  symcode='[[BCDT]]'\n  ;;\ncygwin* | mingw* | pw32* | cegcc*)\n  symcode='[[ABCDGISTW]]'\n  ;;\nhpux*)\n  if test ia64 = \"$host_cpu\"; then\n    symcode='[[ABCDEGRST]]'\n  fi\n  ;;\nirix* | nonstopux*)\n  symcode='[[BCDEGRST]]'\n  ;;\nosf*)\n  symcode='[[BCDEGQRST]]'\n  ;;\nsolaris*)\n  symcode='[[BDRT]]'\n  ;;\nsco3.2v5*)\n  symcode='[[DT]]'\n  ;;\nsysv4.2uw2*)\n  symcode='[[DT]]'\n  ;;\nsysv5* | sco5v6* | unixware* | OpenUNIX*)\n  symcode='[[ABDT]]'\n  ;;\nsysv4)\n  symcode='[[DFNSTU]]'\n  ;;\nesac\n\n# If we're using GNU nm, then use its standard symbol codes.\ncase `$NM -V 2>&1` in\n*GNU* | *'with BFD'*)\n  symcode='[[ABCDGIRSTW]]' ;;\nesac\n\nif test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n  # Gets list of data symbols to import.\n  lt_cv_sys_global_symbol_to_import=\"sed -n -e 's/^I .* \\(.*\\)$/\\1/p'\"\n  # Adjust the below global symbol transforms to fixup imported variables.\n  lt_cdecl_hook=\" -e 's/^I .* \\(.*\\)$/extern __declspec(dllimport) char \\1;/p'\"\n  lt_c_name_hook=\" -e 's/^I .* \\(.*\\)$/  {\\\"\\1\\\", (void *) 0},/p'\"\n  lt_c_name_lib_hook=\"\\\n  -e 's/^I .* \\(lib.*\\)$/  {\\\"\\1\\\", (void *) 0},/p'\\\n  -e 's/^I .* \\(.*\\)$/  {\\\"lib\\1\\\", (void *) 0},/p'\"\nelse\n  # Disable hooks by default.\n  lt_cv_sys_global_symbol_to_import=\n  lt_cdecl_hook=\n  lt_c_name_hook=\n  lt_c_name_lib_hook=\nfi\n\n# Transform an extracted symbol line into a proper C declaration.\n# Some systems (esp. on ia64) link data and code symbols differently,\n# so use this general approach.\nlt_cv_sys_global_symbol_to_cdecl=\"sed -n\"\\\n$lt_cdecl_hook\\\n\" -e 's/^T .* \\(.*\\)$/extern int \\1();/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/extern char \\1;/p'\"\n\n# Transform an extracted symbol line into symbol name and symbol address\nlt_cv_sys_global_symbol_to_c_name_address=\"sed -n\"\\\n$lt_c_name_hook\\\n\" -e 's/^: \\(.*\\) .*$/  {\\\"\\1\\\", (void *) 0},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/p'\"\n\n# Transform an extracted symbol line into symbol name with lib prefix and\n# symbol address.\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix=\"sed -n\"\\\n$lt_c_name_lib_hook\\\n\" -e 's/^: \\(.*\\) .*$/  {\\\"\\1\\\", (void *) 0},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(lib.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/  {\\\"lib\\1\\\", (void *) \\&\\1},/p'\"\n\n# Handle CRLF in mingw tool chain\nopt_cr=\ncase $build_os in\nmingw*)\n  opt_cr=`$ECHO 'x\\{0,1\\}' | tr x '\\015'` # option cr in regexp\n  ;;\nesac\n\n# Try without a prefix underscore, then with it.\nfor ac_symprfx in \"\" \"_\"; do\n\n  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.\n  symxfrm=\"\\\\1 $ac_symprfx\\\\2 \\\\2\"\n\n  # Write the raw and C identifiers.\n  if test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n    # Fake it for dumpbin and say T for any non-static function,\n    # D for any global variable and I for any imported variable.\n    # Also find C++ and __fastcall symbols from MSVC++,\n    # which start with @ or ?.\n    lt_cv_sys_global_symbol_pipe=\"$AWK ['\"\\\n\"     {last_section=section; section=\\$ 3};\"\\\n\"     /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};\"\\\n\"     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};\"\\\n\"     /^ *Symbol name *: /{split(\\$ 0,sn,\\\":\\\"); si=substr(sn[2],2)};\"\\\n\"     /^ *Type *: code/{print \\\"T\\\",si,substr(si,length(prfx))};\"\\\n\"     /^ *Type *: data/{print \\\"I\\\",si,substr(si,length(prfx))};\"\\\n\"     \\$ 0!~/External *\\|/{next};\"\\\n\"     / 0+ UNDEF /{next}; / UNDEF \\([^|]\\)*()/{next};\"\\\n\"     {if(hide[section]) next};\"\\\n\"     {f=\\\"D\\\"}; \\$ 0~/\\(\\).*\\|/{f=\\\"T\\\"};\"\\\n\"     {split(\\$ 0,a,/\\||\\r/); split(a[2],s)};\"\\\n\"     s[1]~/^[@?]/{print f,s[1],s[1]; next};\"\\\n\"     s[1]~prfx {split(s[1],t,\\\"@\\\"); print f,t[1],substr(t[1],length(prfx))}\"\\\n\"     ' prfx=^$ac_symprfx]\"\n  else\n    lt_cv_sys_global_symbol_pipe=\"sed -n -e 's/^.*[[\t ]]\\($symcode$symcode*\\)[[\t ]][[\t ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'\"\n  fi\n  lt_cv_sys_global_symbol_pipe=\"$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'\"\n\n  # Check to see that the pipe works correctly.\n  pipe_works=no\n\n  rm -f conftest*\n  cat > conftest.$ac_ext <<_LT_EOF\n#ifdef __cplusplus\nextern \"C\" {\n#endif\nchar nm_test_var;\nvoid nm_test_func(void);\nvoid nm_test_func(void){}\n#ifdef __cplusplus\n}\n#endif\nint main(){nm_test_var='a';nm_test_func();return(0);}\n_LT_EOF\n\n  if AC_TRY_EVAL(ac_compile); then\n    # Now try to grab the symbols.\n    nlist=conftest.nm\n    if AC_TRY_EVAL(NM conftest.$ac_objext \\| \"$lt_cv_sys_global_symbol_pipe\" \\> $nlist) && test -s \"$nlist\"; then\n      # Try sorting and uniquifying the output.\n      if sort \"$nlist\" | uniq > \"$nlist\"T; then\n\tmv -f \"$nlist\"T \"$nlist\"\n      else\n\trm -f \"$nlist\"T\n      fi\n\n      # Make sure that we snagged all the symbols we need.\n      if $GREP ' nm_test_var$' \"$nlist\" >/dev/null; then\n\tif $GREP ' nm_test_func$' \"$nlist\" >/dev/null; then\n\t  cat <<_LT_EOF > conftest.$ac_ext\n/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */\n#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE\n/* DATA imports from DLLs on WIN32 can't be const, because runtime\n   relocations are performed -- see ld's documentation on pseudo-relocs.  */\n# define LT@&t@_DLSYM_CONST\n#elif defined __osf__\n/* This system does not cope well with relocations in const data.  */\n# define LT@&t@_DLSYM_CONST\n#else\n# define LT@&t@_DLSYM_CONST const\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n_LT_EOF\n\t  # Now generate the symbol file.\n\t  eval \"$lt_cv_sys_global_symbol_to_cdecl\"' < \"$nlist\" | $GREP -v main >> conftest.$ac_ext'\n\n\t  cat <<_LT_EOF >> conftest.$ac_ext\n\n/* The mapping between symbol names and symbols.  */\nLT@&t@_DLSYM_CONST struct {\n  const char *name;\n  void       *address;\n}\nlt__PROGRAM__LTX_preloaded_symbols[[]] =\n{\n  { \"@PROGRAM@\", (void *) 0 },\n_LT_EOF\n\t  $SED \"s/^$symcode$symcode* .* \\(.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/\" < \"$nlist\" | $GREP -v main >> conftest.$ac_ext\n\t  cat <<\\_LT_EOF >> conftest.$ac_ext\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt__PROGRAM__LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\n_LT_EOF\n\t  # Now try linking the two files.\n\t  mv conftest.$ac_objext conftstm.$ac_objext\n\t  lt_globsym_save_LIBS=$LIBS\n\t  lt_globsym_save_CFLAGS=$CFLAGS\n\t  LIBS=conftstm.$ac_objext\n\t  CFLAGS=\"$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)\"\n\t  if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then\n\t    pipe_works=yes\n\t  fi\n\t  LIBS=$lt_globsym_save_LIBS\n\t  CFLAGS=$lt_globsym_save_CFLAGS\n\telse\n\t  echo \"cannot find nm_test_func in $nlist\" >&AS_MESSAGE_LOG_FD\n\tfi\n      else\n\techo \"cannot find nm_test_var in $nlist\" >&AS_MESSAGE_LOG_FD\n      fi\n    else\n      echo \"cannot run $lt_cv_sys_global_symbol_pipe\" >&AS_MESSAGE_LOG_FD\n    fi\n  else\n    echo \"$progname: failed program was:\" >&AS_MESSAGE_LOG_FD\n    cat conftest.$ac_ext >&5\n  fi\n  rm -rf conftest* conftst*\n\n  # Do not use the global_symbol_pipe unless it works.\n  if test yes = \"$pipe_works\"; then\n    break\n  else\n    lt_cv_sys_global_symbol_pipe=\n  fi\ndone\n])\nif test -z \"$lt_cv_sys_global_symbol_pipe\"; then\n  lt_cv_sys_global_symbol_to_cdecl=\nfi\nif test -z \"$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl\"; then\n  AC_MSG_RESULT(failed)\nelse\n  AC_MSG_RESULT(ok)\nfi\n\n# Response file support.\nif test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n  nm_file_list_spec='@'\nelif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then\n  nm_file_list_spec='@'\nfi\n\n_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],\n    [Take the output of nm and produce a listing of raw symbols and C names])\n_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],\n    [Transform the output of nm in a proper C declaration])\n_LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1],\n    [Transform the output of nm into a list of symbols to manually relocate])\n_LT_DECL([global_symbol_to_c_name_address],\n    [lt_cv_sys_global_symbol_to_c_name_address], [1],\n    [Transform the output of nm in a C name address pair])\n_LT_DECL([global_symbol_to_c_name_address_lib_prefix],\n    [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],\n    [Transform the output of nm in a C name address pair when lib prefix is needed])\n_LT_DECL([nm_interface], [lt_cv_nm_interface], [1],\n    [The name lister interface])\n_LT_DECL([], [nm_file_list_spec], [1],\n    [Specify filename containing input files for $NM])\n]) # _LT_CMD_GLOBAL_SYMBOLS\n\n\n# _LT_COMPILER_PIC([TAGNAME])\n# ---------------------------\nm4_defun([_LT_COMPILER_PIC],\n[m4_require([_LT_TAG_COMPILER])dnl\n_LT_TAGVAR(lt_prog_compiler_wl, $1)=\n_LT_TAGVAR(lt_prog_compiler_pic, $1)=\n_LT_TAGVAR(lt_prog_compiler_static, $1)=\n\nm4_if([$1], [CXX], [\n  # C++ specific cases for pic, static, wl, etc.\n  if test yes = \"$GXX\"; then\n    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\n    case $host_os in\n    aix*)\n      # All AIX code is PIC.\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      fi\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n        ;;\n      m68k)\n            # FIXME: we need at least 68020 code to build shared libraries, but\n            # adding the '-m68020' flag to GCC prevents building anything better,\n            # like '-m68040'.\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'\n        ;;\n      esac\n      ;;\n\n    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)\n      # PIC is the default for these OSes.\n      ;;\n    mingw* | cygwin* | os2* | pw32* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      # Although the cygwin gcc ignores -fPIC, still need this for old-style\n      # (--disable-auto-import) libraries\n      m4_if([$1], [GCJ], [],\n\t[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])\n      case $host_os in\n      os2*)\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'\n\t;;\n      esac\n      ;;\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'\n      ;;\n    *djgpp*)\n      # DJGPP does not support shared libraries at all\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n      ;;\n    haiku*)\n      # PIC is the default for Haiku.\n      # The \"-static\" flag exists, but is broken.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)=\n      ;;\n    interix[[3-9]]*)\n      # Interix 3.x gcc -fpic/-fPIC options generate broken code.\n      # Instead, we relocate shared libraries at runtime.\n      ;;\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic\n      fi\n      ;;\n    hpux*)\n      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit\n      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag\n      # sets the default TLS model and affects inlining.\n      case $host_cpu in\n      hppa*64*)\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t;;\n      esac\n      ;;\n    *qnx* | *nto*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n      ;;\n    *)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n      ;;\n    esac\n  else\n    case $host_os in\n      aix[[4-9]]*)\n\t# All AIX code is PIC.\n\tif test ia64 = \"$host_cpu\"; then\n\t  # AIX 5 now supports IA64 processor\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\telse\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'\n\tfi\n\t;;\n      chorus*)\n\tcase $cc_basename in\n\tcxch68*)\n\t  # Green Hills C++ Compiler\n\t  # _LT_TAGVAR(lt_prog_compiler_static, $1)=\"--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a\"\n\t  ;;\n\tesac\n\t;;\n      mingw* | cygwin* | os2* | pw32* | cegcc*)\n\t# This hack is so that the source file can tell whether it is being\n\t# built for inclusion in a dll (and should export symbols for example).\n\tm4_if([$1], [GCJ], [],\n\t  [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])\n\t;;\n      dgux*)\n\tcase $cc_basename in\n\t  ec++*)\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    ;;\n\t  ghcx*)\n\t    # Green Hills C++ Compiler\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      freebsd* | dragonfly*)\n\t# FreeBSD uses GNU C++\n\t;;\n      hpux9* | hpux10* | hpux11*)\n\tcase $cc_basename in\n\t  CC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'\n\t    if test ia64 != \"$host_cpu\"; then\n\t      _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'\n\t    fi\n\t    ;;\n\t  aCC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'\n\t    case $host_cpu in\n\t    hppa*64*|ia64*)\n\t      # +Z the default\n\t      ;;\n\t    *)\n\t      _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'\n\t      ;;\n\t    esac\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      interix*)\n\t# This is c89, which is MS Visual C++ (no shared libs)\n\t# Anyone wants to do a port?\n\t;;\n      irix5* | irix6* | nonstopux*)\n\tcase $cc_basename in\n\t  CC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n\t    # CC pic flag -KPIC is the default.\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n\tcase $cc_basename in\n\t  KCC*)\n\t    # KAI C++ Compiler\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t    ;;\n\t  ecpc* )\n\t    # old Intel C++ for x86_64, which still supported -KPIC.\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\t    ;;\n\t  icpc* )\n\t    # Intel C++, used to be incompatible with GCC.\n\t    # ICC 10 doesn't accept -KPIC any more.\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\t    ;;\n\t  pgCC* | pgcpp*)\n\t    # Portland Group C++ compiler\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    ;;\n\t  cxx*)\n\t    # Compaq C++\n\t    # Make sure the PIC flag is empty.  It appears that all Alpha\n\t    # Linux and Compaq Tru64 Unix objects are PIC.\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n\t    ;;\n\t  xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*)\n\t    # IBM XL 8.0, 9.0 on PPC and BlueGene\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'\n\t    ;;\n\t  *)\n\t    case `$CC -V 2>&1 | sed 5q` in\n\t    *Sun\\ C*)\n\t      # Sun C++ 5.9\n\t      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '\n\t      ;;\n\t    esac\n\t    ;;\n\tesac\n\t;;\n      lynxos*)\n\t;;\n      m88k*)\n\t;;\n      mvs*)\n\tcase $cc_basename in\n\t  cxx*)\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      netbsd*)\n\t;;\n      *qnx* | *nto*)\n        # QNX uses GNU C++, but need to define -shared option too, otherwise\n        # it will coredump.\n        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n        ;;\n      osf3* | osf4* | osf5*)\n\tcase $cc_basename in\n\t  KCC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'\n\t    ;;\n\t  RCC*)\n\t    # Rational C++ 2.4.1\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    ;;\n\t  cxx*)\n\t    # Digital/Compaq C++\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    # Make sure the PIC flag is empty.  It appears that all Alpha\n\t    # Linux and Compaq Tru64 Unix objects are PIC.\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      psos*)\n\t;;\n      solaris*)\n\tcase $cc_basename in\n\t  CC* | sunCC*)\n\t    # Sun C++ 4.2, 5.x and Centerline C++\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '\n\t    ;;\n\t  gcx*)\n\t    # Green Hills C++ Compiler\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      sunos4*)\n\tcase $cc_basename in\n\t  CC*)\n\t    # Sun C++ 4.x\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    ;;\n\t  lcc*)\n\t    # Lucid\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n\tcase $cc_basename in\n\t  CC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    ;;\n\tesac\n\t;;\n      tandem*)\n\tcase $cc_basename in\n\t  NCC*)\n\t    # NonStop-UX NCC 3.20\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      vxworks*)\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n\t;;\n    esac\n  fi\n],\n[\n  if test yes = \"$GCC\"; then\n    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\n    case $host_os in\n      aix*)\n      # All AIX code is PIC.\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      fi\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n        ;;\n      m68k)\n            # FIXME: we need at least 68020 code to build shared libraries, but\n            # adding the '-m68020' flag to GCC prevents building anything better,\n            # like '-m68040'.\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'\n        ;;\n      esac\n      ;;\n\n    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)\n      # PIC is the default for these OSes.\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      # Although the cygwin gcc ignores -fPIC, still need this for old-style\n      # (--disable-auto-import) libraries\n      m4_if([$1], [GCJ], [],\n\t[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])\n      case $host_os in\n      os2*)\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'\n\t;;\n      esac\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'\n      ;;\n\n    haiku*)\n      # PIC is the default for Haiku.\n      # The \"-static\" flag exists, but is broken.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)=\n      ;;\n\n    hpux*)\n      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit\n      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag\n      # sets the default TLS model and affects inlining.\n      case $host_cpu in\n      hppa*64*)\n\t# +Z the default\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t;;\n      esac\n      ;;\n\n    interix[[3-9]]*)\n      # Interix 3.x gcc -fpic/-fPIC options generate broken code.\n      # Instead, we relocate shared libraries at runtime.\n      ;;\n\n    msdosdjgpp*)\n      # Just because we use GCC doesn't mean we suddenly get shared libraries\n      # on systems that don't support them.\n      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n      enable_shared=no\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic\n      fi\n      ;;\n\n    *)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n      ;;\n    esac\n\n    case $cc_basename in\n    nvcc*) # Cuda Compiler Driver 2.2\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker '\n      if test -n \"$_LT_TAGVAR(lt_prog_compiler_pic, $1)\"; then\n        _LT_TAGVAR(lt_prog_compiler_pic, $1)=\"-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)\"\n      fi\n      ;;\n    esac\n  else\n    # PORTME Check for flag to pass linker flags through the system compiler.\n    case $host_os in\n    aix*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      else\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'\n      fi\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'\n      case $cc_basename in\n      nagfor*)\n        # NAG Fortran compiler\n        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,'\n        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'\n        _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n        ;;\n      esac\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      m4_if([$1], [GCJ], [],\n\t[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])\n      case $host_os in\n      os2*)\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'\n\t;;\n      esac\n      ;;\n\n    hpux9* | hpux10* | hpux11*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but\n      # not for PA HP-UX.\n      case $host_cpu in\n      hppa*64*|ia64*)\n\t# +Z the default\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'\n\t;;\n      esac\n      # Is there a better lt_prog_compiler_static that works with the bundled CC?\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      # PIC (with -KPIC) is the default.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n      ;;\n\n    linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n      case $cc_basename in\n      # old Intel for x86_64, which still supported -KPIC.\n      ecc*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n        ;;\n      # icc used to be incompatible with GCC.\n      # ICC 10 doesn't accept -KPIC any more.\n      icc* | ifort*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n        ;;\n      # Lahey Fortran 8.1.\n      lf95*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='--static'\n\t;;\n      nagfor*)\n\t# NAG Fortran compiler\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t;;\n      tcc*)\n\t# Fabrice Bellard et al's Tiny C Compiler\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\t;;\n      pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)\n        # Portland Group compilers (*not* the Pentium gcc compiler,\n\t# which looks to be a dead project)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n        ;;\n      ccc*)\n        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n        # All Alpha code is PIC.\n        _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n        ;;\n      xl* | bgxl* | bgf* | mpixl*)\n\t# IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'\n\t;;\n      *)\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ Ceres\\ Fortran* | *Sun*Fortran*\\ [[1-7]].* | *Sun*Fortran*\\ 8.[[0-3]]*)\n\t  # Sun Fortran 8.3 passes all unrecognized flags to the linker\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)=''\n\t  ;;\n\t*Sun\\ F* | *Sun*Fortran*)\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '\n\t  ;;\n\t*Sun\\ C*)\n\t  # Sun C 5.9\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t  ;;\n        *Intel*\\ [[CF]]*Compiler*)\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\t  ;;\n\t*Portland\\ Group*)\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t  ;;\n\tesac\n\t;;\n      esac\n      ;;\n\n    newsos6)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n      ;;\n\n    osf3* | osf4* | osf5*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      # All OSF/1 code is PIC.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n      ;;\n\n    rdos*)\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n      ;;\n\n    solaris*)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      case $cc_basename in\n      f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;\n      esac\n      ;;\n\n    sunos4*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    sysv4 | sysv4.2uw2* | sysv4.3*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      fi\n      ;;\n\n    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    unicos*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n      ;;\n\n    uts4*)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    *)\n      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n      ;;\n    esac\n  fi\n])\ncase $host_os in\n  # For platforms that do not support PIC, -DPIC is meaningless:\n  *djgpp*)\n    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n    ;;\n  *)\n    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\"$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])\"\n    ;;\nesac\n\nAC_CACHE_CHECK([for $compiler option to produce PIC],\n  [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)],\n  [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)])\n_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)\n\n#\n# Check to make sure the PIC flag actually works.\n#\nif test -n \"$_LT_TAGVAR(lt_prog_compiler_pic, $1)\"; then\n  _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works],\n    [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)],\n    [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [],\n    [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in\n     \"\" | \" \"*) ;;\n     *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=\" $_LT_TAGVAR(lt_prog_compiler_pic, $1)\" ;;\n     esac],\n    [_LT_TAGVAR(lt_prog_compiler_pic, $1)=\n     _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])\nfi\n_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1],\n\t[Additional compiler flags for building library objects])\n\n_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1],\n\t[How to pass a linker flag through the compiler])\n#\n# Check to make sure the static flag actually works.\n#\nwl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\\\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\\\"\n_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],\n  _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1),\n  $lt_tmp_static_flag,\n  [],\n  [_LT_TAGVAR(lt_prog_compiler_static, $1)=])\n_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1],\n\t[Compiler flag to prevent dynamic linking])\n])# _LT_COMPILER_PIC\n\n\n# _LT_LINKER_SHLIBS([TAGNAME])\n# ----------------------------\n# See if the linker supports building shared libraries.\nm4_defun([_LT_LINKER_SHLIBS],\n[AC_REQUIRE([LT_PATH_LD])dnl\nAC_REQUIRE([LT_PATH_NM])dnl\nm4_require([_LT_PATH_MANIFEST_TOOL])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl\nm4_require([_LT_TAG_COMPILER])dnl\nAC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])\nm4_if([$1], [CXX], [\n  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']\n  case $host_os in\n  aix[[4-9]]*)\n    # If we're using GNU nm, then we don't want the \"-C\" option.\n    # -C means demangle to GNU nm, but means don't demangle to AIX nm.\n    # Without the \"-l\" option, or with the \"-B\" option, AIX nm treats\n    # weak defined symbols like other global defined symbols, whereas\n    # GNU nm marks them as \"W\".\n    # While the 'weak' keyword is ignored in the Export File, we need\n    # it in the Import File for the 'aix-soname' feature, so we have\n    # to replace the \"-B\" option with \"-P\" for AIX nm.\n    if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then\n      _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\")) && ([substr](\\$ 3,1,1) != \".\")) { if (\\$ 2 == \"W\") { print \\$ 3 \" weak\" } else { print \\$ 3 } } }'\\'' | sort -u > $export_symbols'\n    else\n      _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\\''s/B\\([[^B]]*\\)$/P\\1/'\\''` -PCpgl $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) && ([substr](\\$ 1,1,1) != \".\")) { if ((\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) { print \\$ 1 \" weak\" } else { print \\$ 1 } } }'\\'' | sort -u > $export_symbols'\n    fi\n    ;;\n  pw32*)\n    _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds\n    ;;\n  cygwin* | mingw* | cegcc*)\n    case $cc_basename in\n    cl*)\n      _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'\n      ;;\n    *)\n      _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\\([[^ ]]*\\)/\\1 DATA/;s/^.*[[ ]]__nm__\\([[^ ]]*\\)[[ ]][[^ ]]*/\\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\\'' | sort | uniq > $export_symbols'\n      _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']\n      ;;\n    esac\n    ;;\n  *)\n    _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n    ;;\n  esac\n], [\n  runpath_var=\n  _LT_TAGVAR(allow_undefined_flag, $1)=\n  _LT_TAGVAR(always_export_symbols, $1)=no\n  _LT_TAGVAR(archive_cmds, $1)=\n  _LT_TAGVAR(archive_expsym_cmds, $1)=\n  _LT_TAGVAR(compiler_needs_object, $1)=no\n  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n  _LT_TAGVAR(export_dynamic_flag_spec, $1)=\n  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  _LT_TAGVAR(hardcode_automatic, $1)=no\n  _LT_TAGVAR(hardcode_direct, $1)=no\n  _LT_TAGVAR(hardcode_direct_absolute, $1)=no\n  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n  _LT_TAGVAR(hardcode_libdir_separator, $1)=\n  _LT_TAGVAR(hardcode_minus_L, $1)=no\n  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported\n  _LT_TAGVAR(inherit_rpath, $1)=no\n  _LT_TAGVAR(link_all_deplibs, $1)=unknown\n  _LT_TAGVAR(module_cmds, $1)=\n  _LT_TAGVAR(module_expsym_cmds, $1)=\n  _LT_TAGVAR(old_archive_from_new_cmds, $1)=\n  _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)=\n  _LT_TAGVAR(thread_safe_flag_spec, $1)=\n  _LT_TAGVAR(whole_archive_flag_spec, $1)=\n  # include_expsyms should be a list of space-separated symbols to be *always*\n  # included in the symbol list\n  _LT_TAGVAR(include_expsyms, $1)=\n  # exclude_expsyms can be an extended regexp of symbols to exclude\n  # it will be wrapped by ' (' and ')$', so one must not match beginning or\n  # end of line.  Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc',\n  # as well as any symbol that contains 'd'.\n  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']\n  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out\n  # platforms (ab)use it in PIC code, but their linkers get confused if\n  # the symbol is explicitly referenced.  Since portable code cannot\n  # rely on this symbol name, it's probably fine to never include it in\n  # preloaded symbol tables.\n  # Exclude shared library initialization/finalization symbols.\ndnl Note also adjust exclude_expsyms for C++ above.\n  extract_expsyms_cmds=\n\n  case $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    # FIXME: the MSVC++ port hasn't been tested in a loooong time\n    # When not using gcc, we currently assume that we are using\n    # Microsoft Visual C++.\n    if test yes != \"$GCC\"; then\n      with_gnu_ld=no\n    fi\n    ;;\n  interix*)\n    # we just hope/assume this is gcc and not c89 (= MSVC++)\n    with_gnu_ld=yes\n    ;;\n  openbsd* | bitrig*)\n    with_gnu_ld=no\n    ;;\n  esac\n\n  _LT_TAGVAR(ld_shlibs, $1)=yes\n\n  # On some targets, GNU ld is compatible enough with the native linker\n  # that we're better off using the native interface for both.\n  lt_use_gnu_ld_interface=no\n  if test yes = \"$with_gnu_ld\"; then\n    case $host_os in\n      aix*)\n\t# The AIX port of GNU ld has always aspired to compatibility\n\t# with the native linker.  However, as the warning in the GNU ld\n\t# block says, versions before 2.19.5* couldn't really create working\n\t# shared libraries, regardless of the interface used.\n\tcase `$LD -v 2>&1` in\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.19.5*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.[[2-9]]*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ [[3-9]]*) ;;\n\t  *)\n\t    lt_use_gnu_ld_interface=yes\n\t    ;;\n\tesac\n\t;;\n      *)\n\tlt_use_gnu_ld_interface=yes\n\t;;\n    esac\n  fi\n\n  if test yes = \"$lt_use_gnu_ld_interface\"; then\n    # If archive_cmds runs LD, not CC, wlarc should be empty\n    wlarc='$wl'\n\n    # Set some defaults for GNU ld with shared library support. These\n    # are reset later if shared libraries are not supported. Putting them\n    # here allows them to be overridden if necessary.\n    runpath_var=LD_RUN_PATH\n    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n    # ancient GNU ld didn't support --whole-archive et. al.\n    if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then\n      _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'\n    else\n      _LT_TAGVAR(whole_archive_flag_spec, $1)=\n    fi\n    supports_anon_versioning=no\n    case `$LD -v | $SED -e 's/([^)]\\+)\\s\\+//' 2>&1` in\n      *GNU\\ gold*) supports_anon_versioning=yes ;;\n      *\\ [[01]].* | *\\ 2.[[0-9]].* | *\\ 2.10.*) ;; # catch versions < 2.11\n      *\\ 2.11.93.0.2\\ *) supports_anon_versioning=yes ;; # RH7.3 ...\n      *\\ 2.11.92.0.12\\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...\n      *\\ 2.11.*) ;; # other 2.11 versions\n      *) supports_anon_versioning=yes ;;\n    esac\n\n    # See if GNU ld supports shared libraries.\n    case $host_os in\n    aix[[3-9]]*)\n      # On AIX/PPC, the GNU linker is very broken\n      if test ia64 != \"$host_cpu\"; then\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: the GNU linker, at least up to release 2.19, is reported\n*** to be unable to reliably create shared libraries on AIX.\n*** Therefore, libtool is disabling shared libraries support.  If you\n*** really care for shared libraries, you may want to install binutils\n*** 2.20 or above, or modify your PATH so that a non-GNU linker is found.\n*** You will then need to restart the configuration process.\n\n_LT_EOF\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n            _LT_TAGVAR(archive_expsym_cmds, $1)=''\n        ;;\n      m68k)\n            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO \"#define NAME $libname\" > $output_objdir/a2ixlibrary.data~$ECHO \"#define LIBRARY_ID 1\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define VERSION $major\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define REVISION $revision\" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'\n            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n            _LT_TAGVAR(hardcode_minus_L, $1)=yes\n        ;;\n      esac\n      ;;\n\n    beos*)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t_LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t# Joseph Beckenbach <jrb3@best.com> says some releases of gcc\n\t# support --undefined.  This deserves some investigation.  FIXME\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,\n      # as there is no search path for DLLs.\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols'\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      _LT_TAGVAR(always_export_symbols, $1)=no\n      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n      _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\\([[^ ]]*\\)/\\1 DATA/;s/^.*[[ ]]__nm__\\([[^ ]]*\\)[[ ]][[^ ]]*/\\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\\'' | sort | uniq > $export_symbols'\n      _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']\n\n      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then\n        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n\t# If the export-symbols file already is a .def file, use it as\n\t# is; otherwise, prepend EXPORTS...\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then\n          cp $export_symbols $output_objdir/$soname.def;\n        else\n          echo EXPORTS > $output_objdir/$soname.def;\n          cat $export_symbols >> $output_objdir/$soname.def;\n        fi~\n        $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    haiku*)\n      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      ;;\n\n    os2*)\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      shrext_cmds=.dll\n      _LT_TAGVAR(archive_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\temxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\tprefix_cmds=\"$SED\"~\n\tif test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t  prefix_cmds=\"$prefix_cmds -e 1d\";\n\tfi~\n\tprefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\tcat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n      ;;\n\n    interix[[3-9]]*)\n      _LT_TAGVAR(hardcode_direct, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.\n      # Instead, shared libraries are loaded at an image base (0x10000000 by\n      # default) and relocated if they conflict, which is a slow very memory\n      # consuming and fragmenting process.  To avoid this, we pick a random,\n      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link\n      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.\n      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n      _LT_TAGVAR(archive_expsym_cmds, $1)='sed \"s|^|_|\" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n      ;;\n\n    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)\n      tmp_diet=no\n      if test linux-dietlibc = \"$host_os\"; then\n\tcase $cc_basename in\n\t  diet\\ *) tmp_diet=yes;;\t# linux-dietlibc with static linking (!diet-dyn)\n\tesac\n      fi\n      if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \\\n\t && test no = \"$tmp_diet\"\n      then\n\ttmp_addflag=' $pic_flag'\n\ttmp_sharedflag='-shared'\n\tcase $cc_basename,$host_cpu in\n        pgcc*)\t\t\t\t# Portland Group C compiler\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  tmp_addflag=' $pic_flag'\n\t  ;;\n\tpgf77* | pgf90* | pgf95* | pgfortran*)\n\t\t\t\t\t# Portland Group f77 and f90 compilers\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  tmp_addflag=' $pic_flag -Mnomain' ;;\n\tecc*,ia64* | icc*,ia64*)\t# Intel C compiler on ia64\n\t  tmp_addflag=' -i_dynamic' ;;\n\tefc*,ia64* | ifort*,ia64*)\t# Intel Fortran compiler on ia64\n\t  tmp_addflag=' -i_dynamic -nofor_main' ;;\n\tifc* | ifort*)\t\t\t# Intel Fortran compiler\n\t  tmp_addflag=' -nofor_main' ;;\n\tlf95*)\t\t\t\t# Lahey Fortran 8.1\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)=\n\t  tmp_sharedflag='--shared' ;;\n        nagfor*)                        # NAGFOR 5.3\n          tmp_sharedflag='-Wl,-shared' ;;\n\txl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below)\n\t  tmp_sharedflag='-qmkshrobj'\n\t  tmp_addflag= ;;\n\tnvcc*)\t# Cuda Compiler Driver 2.2\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  _LT_TAGVAR(compiler_needs_object, $1)=yes\n\t  ;;\n\tesac\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ C*)\t\t\t# Sun C 5.9\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\\\"\\\"; do test -z \\\"$conv\\\" || new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  _LT_TAGVAR(compiler_needs_object, $1)=yes\n\t  tmp_sharedflag='-G' ;;\n\t*Sun\\ F*)\t\t\t# Sun Fortran 8.3\n\t  tmp_sharedflag='-G' ;;\n\tesac\n\t_LT_TAGVAR(archive_cmds, $1)='$CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\n        if test yes = \"$supports_anon_versioning\"; then\n          _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $output_objdir/$libname.ver~\n            cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n            echo \"local: *; };\" >> $output_objdir/$libname.ver~\n            $CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'\n        fi\n\n\tcase $cc_basename in\n\ttcc*)\n\t  _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic'\n\t  ;;\n\txlf* | bgf* | bgxlf* | mpixlf*)\n\t  # IBM XL Fortran 10.1 on PPC cannot create shared libs itself\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'\n\t  if test yes = \"$supports_anon_versioning\"; then\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $output_objdir/$libname.ver~\n              cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n              echo \"local: *; };\" >> $output_objdir/$libname.ver~\n              $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'\n\t  fi\n\t  ;;\n\tesac\n      else\n        _LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'\n\twlarc=\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      fi\n      ;;\n\n    solaris*)\n      if $LD -v 2>&1 | $GREP 'BFD 2\\.8' > /dev/null; then\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: The releases 2.8.* of the GNU linker cannot reliably\n*** create shared libraries on Solaris systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.9.1 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)\n      case `$LD -v 2>&1` in\n        *\\ [[01]].* | *\\ 2.[[0-9]].* | *\\ 2.1[[0-5]].*)\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot\n*** reliably create shared libraries on SCO systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n\t;;\n\t*)\n\t  # For security reasons, it is highly recommended that you always\n\t  # use absolute paths for naming shared libraries, and exclude the\n\t  # DT_RUNPATH tag from executables and libraries.  But doing so\n\t  # requires that you compile everything twice, which is a pain.\n\t  if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t  else\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t  fi\n\t;;\n      esac\n      ;;\n\n    sunos4*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      wlarc=\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    *)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n    esac\n\n    if test no = \"$_LT_TAGVAR(ld_shlibs, $1)\"; then\n      runpath_var=\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)=\n      _LT_TAGVAR(whole_archive_flag_spec, $1)=\n    fi\n  else\n    # PORTME fill in a description of your system's linker (not GNU ld)\n    case $host_os in\n    aix3*)\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      _LT_TAGVAR(always_export_symbols, $1)=yes\n      _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'\n      # Note: this linker hardcodes the directories in LIBPATH if there\n      # are no directories specified by -L.\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      if test yes = \"$GCC\" && test -z \"$lt_prog_compiler_static\"; then\n\t# Neither direct hardcoding nor static linking is supported with a\n\t# broken collect2.\n\t_LT_TAGVAR(hardcode_direct, $1)=unsupported\n      fi\n      ;;\n\n    aix[[4-9]]*)\n      if test ia64 = \"$host_cpu\"; then\n\t# On IA64, the linker does run time linking by default, so we don't\n\t# have to do anything special.\n\taix_use_runtimelinking=no\n\texp_sym_flag='-Bexport'\n\tno_entry_flag=\n      else\n\t# If we're using GNU nm, then we don't want the \"-C\" option.\n\t# -C means demangle to GNU nm, but means don't demangle to AIX nm.\n\t# Without the \"-l\" option, or with the \"-B\" option, AIX nm treats\n\t# weak defined symbols like other global defined symbols, whereas\n\t# GNU nm marks them as \"W\".\n\t# While the 'weak' keyword is ignored in the Export File, we need\n\t# it in the Import File for the 'aix-soname' feature, so we have\n\t# to replace the \"-B\" option with \"-P\" for AIX nm.\n\tif $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then\n\t  _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\")) && ([substr](\\$ 3,1,1) != \".\")) { if (\\$ 2 == \"W\") { print \\$ 3 \" weak\" } else { print \\$ 3 } } }'\\'' | sort -u > $export_symbols'\n\telse\n\t  _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\\''s/B\\([[^B]]*\\)$/P\\1/'\\''` -PCpgl $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) && ([substr](\\$ 1,1,1) != \".\")) { if ((\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) { print \\$ 1 \" weak\" } else { print \\$ 1 } } }'\\'' | sort -u > $export_symbols'\n\tfi\n\taix_use_runtimelinking=no\n\n\t# Test if we are trying to use run time linking or normal\n\t# AIX style linking. If -brtl is somewhere in LDFLAGS, we\n\t# have runtime linking enabled, and use it for executables.\n\t# For shared libraries, we enable/disable runtime linking\n\t# depending on the kind of the shared library created -\n\t# when \"with_aix_soname,aix_use_runtimelinking\" is:\n\t# \"aix,no\"   lib.a(lib.so.V) shared, rtl:no,  for executables\n\t# \"aix,yes\"  lib.so          shared, rtl:yes, for executables\n\t#            lib.a           static archive\n\t# \"both,no\"  lib.so.V(shr.o) shared, rtl:yes\n\t#            lib.a(lib.so.V) shared, rtl:no,  for executables\n\t# \"both,yes\" lib.so.V(shr.o) shared, rtl:yes, for executables\n\t#            lib.a(lib.so.V) shared, rtl:no\n\t# \"svr4,*\"   lib.so.V(shr.o) shared, rtl:yes, for executables\n\t#            lib.a           static archive\n\tcase $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)\n\t  for ld_flag in $LDFLAGS; do\n\t  if (test x-brtl = \"x$ld_flag\" || test x-Wl,-brtl = \"x$ld_flag\"); then\n\t    aix_use_runtimelinking=yes\n\t    break\n\t  fi\n\t  done\n\t  if test svr4,no = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t    # With aix-soname=svr4, we create the lib.so.V shared archives only,\n\t    # so we don't have lib.a shared libs to link our executables.\n\t    # We have to force runtime linking in this case.\n\t    aix_use_runtimelinking=yes\n\t    LDFLAGS=\"$LDFLAGS -Wl,-brtl\"\n\t  fi\n\t  ;;\n\tesac\n\n\texp_sym_flag='-bexport'\n\tno_entry_flag='-bnoentry'\n      fi\n\n      # When large executables or shared objects are built, AIX ld can\n      # have problems creating the table of contents.  If linking a library\n      # or program results in \"error TOC overflow\" add -mminimal-toc to\n      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not\n      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.\n\n      _LT_TAGVAR(archive_cmds, $1)=''\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      _LT_TAGVAR(file_list_spec, $1)='$wl-f,'\n      case $with_aix_soname,$aix_use_runtimelinking in\n      aix,*) ;; # traditional, no import file\n      svr4,* | *,yes) # use import file\n\t# The Import File defines what to hardcode.\n\t_LT_TAGVAR(hardcode_direct, $1)=no\n\t_LT_TAGVAR(hardcode_direct_absolute, $1)=no\n\t;;\n      esac\n\n      if test yes = \"$GCC\"; then\n\tcase $host_os in aix4.[[012]]|aix4.[[012]].*)\n\t# We only want to do this on AIX 4.2 and lower, the check\n\t# below for broken collect2 doesn't work under 4.3+\n\t  collect2name=`$CC -print-prog-name=collect2`\n\t  if test -f \"$collect2name\" &&\n\t   strings \"$collect2name\" | $GREP resolve_lib_name >/dev/null\n\t  then\n\t  # We have reworked collect2\n\t  :\n\t  else\n\t  # We have old collect2\n\t  _LT_TAGVAR(hardcode_direct, $1)=unsupported\n\t  # It fails to find uninstalled libraries when the uninstalled\n\t  # path is not listed in the libpath.  Setting hardcode_minus_L\n\t  # to unsupported forces relinking\n\t  _LT_TAGVAR(hardcode_minus_L, $1)=yes\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n\t  _LT_TAGVAR(hardcode_libdir_separator, $1)=\n\t  fi\n\t  ;;\n\tesac\n\tshared_flag='-shared'\n\tif test yes = \"$aix_use_runtimelinking\"; then\n\t  shared_flag=\"$shared_flag \"'$wl-G'\n\tfi\n\t# Need to ensure runtime linking is disabled for the traditional\n\t# shared library, or the linker may eventually find shared libraries\n\t# /with/ Import File - we do not want to mix them.\n\tshared_flag_aix='-shared'\n\tshared_flag_svr4='-shared $wl-G'\n      else\n\t# not using gcc\n\tif test ia64 = \"$host_cpu\"; then\n\t# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release\n\t# chokes on -Wl,-G. The following line is correct:\n\t  shared_flag='-G'\n\telse\n\t  if test yes = \"$aix_use_runtimelinking\"; then\n\t    shared_flag='$wl-G'\n\t  else\n\t    shared_flag='$wl-bM:SRE'\n\t  fi\n\t  shared_flag_aix='$wl-bM:SRE'\n\t  shared_flag_svr4='$wl-G'\n\tfi\n      fi\n\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall'\n      # It seems that -bexpall does not export symbols beginning with\n      # underscore (_), so it is better to generate a list of symbols to export.\n      _LT_TAGVAR(always_export_symbols, $1)=yes\n      if test aix,yes = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t# Warning - without using the other runtime loading flags (-brtl),\n\t# -berok will link without error, but may produce a broken library.\n\t_LT_TAGVAR(allow_undefined_flag, $1)='-berok'\n        # Determine the default libpath from the value encoded in an\n        # empty executable.\n        _LT_SYS_MODULE_PATH_AIX([$1])\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'\"$aix_libpath\"\n        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n \"$allow_undefined_flag\"; then func_echo_all \"$wl$allow_undefined_flag\"; else :; fi` $wl'$exp_sym_flag:\\$export_symbols' '$shared_flag\n      else\n\tif test ia64 = \"$host_cpu\"; then\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib'\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=\"-z nodefs\"\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)=\"\\$CC $shared_flag\"' -o $output_objdir/$soname $libobjs $deplibs '\"\\$wl$no_entry_flag\"' $compiler_flags $wl$allow_undefined_flag '\"\\$wl$exp_sym_flag:\\$export_symbols\"\n\telse\n\t # Determine the default libpath from the value encoded in an\n\t # empty executable.\n\t _LT_SYS_MODULE_PATH_AIX([$1])\n\t _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'\"$aix_libpath\"\n\t  # Warning - without using the other run time loading flags,\n\t  # -berok will link without error, but may produce a broken library.\n\t  _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok'\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok'\n\t  if test yes = \"$with_gnu_ld\"; then\n\t    # We only use this code for GNU lds that support --whole-archive.\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'\n\t  else\n\t    # Exported symbols can be pulled into shared objects from archives\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'\n\t  fi\n\t  _LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'\n\t  # -brtl affects multiple linker settings, -berok does not and is overridden later\n\t  compiler_flags_filtered='`func_echo_all \"$compiler_flags \" | $SED -e \"s%-brtl\\\\([[, ]]\\\\)%-berok\\\\1%g\"`'\n\t  if test svr4 != \"$with_aix_soname\"; then\n\t    # This is similar to how AIX traditionally builds its shared libraries.\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'\n\t  fi\n\t  if test aix != \"$with_aix_soname\"; then\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all \"#! $soname($shared_archive_member_spec.o)\"; if test shr_64 = \"$shared_archive_member_spec\"; then func_echo_all \"# 64\"; else func_echo_all \"# 32\"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'\n\t  else\n\t    # used by -dlpreopen to get the symbols\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'\n\t  fi\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$RM -r $output_objdir/$realname.d'\n\tfi\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n            _LT_TAGVAR(archive_expsym_cmds, $1)=''\n        ;;\n      m68k)\n            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO \"#define NAME $libname\" > $output_objdir/a2ixlibrary.data~$ECHO \"#define LIBRARY_ID 1\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define VERSION $major\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define REVISION $revision\" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'\n            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n            _LT_TAGVAR(hardcode_minus_L, $1)=yes\n        ;;\n      esac\n      ;;\n\n    bsdi[[45]]*)\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # When not using gcc, we currently assume that we are using\n      # Microsoft Visual C++.\n      # hardcode_libdir_flag_spec is actually meaningless, as there is\n      # no search path for DLLs.\n      case $cc_basename in\n      cl*)\n\t# Native MSVC\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '\n\t_LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t_LT_TAGVAR(always_export_symbols, $1)=yes\n\t_LT_TAGVAR(file_list_spec, $1)='@'\n\t# Tell ltmain to make .lib files, not .a files.\n\tlibext=lib\n\t# Tell ltmain to make .dll files, not .so files.\n\tshrext_cmds=.dll\n\t# FIXME: Setting linknames here is a bad hack.\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~linknames='\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then\n            cp \"$export_symbols\" \"$output_objdir/$soname.def\";\n            echo \"$tool_output_objdir$soname.def\" > \"$output_objdir/$soname.exp\";\n          else\n            $SED -e '\\''s/^/-link -EXPORT:/'\\'' < $export_symbols > $output_objdir/$soname.exp;\n          fi~\n          $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs \"@$tool_output_objdir$soname.exp\" -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~\n          linknames='\n\t# The linker will not automatically build a static lib if we build a DLL.\n\t# _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'\n\t_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n\t_LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'\n\t_LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\\([[^ ]]*\\)/\\1,DATA/'\\'' | $SED -e '\\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\\'' | sort | uniq > $export_symbols'\n\t# Don't use ranlib\n\t_LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'\n\t_LT_TAGVAR(postlink_cmds, $1)='lt_outputfile=\"@OUTPUT@\"~\n          lt_tool_outputfile=\"@TOOL_OUTPUT@\"~\n          case $lt_outputfile in\n            *.exe|*.EXE) ;;\n            *)\n              lt_outputfile=$lt_outputfile.exe\n              lt_tool_outputfile=$lt_tool_outputfile.exe\n              ;;\n          esac~\n          if test : != \"$MANIFEST_TOOL\" && test -f \"$lt_outputfile.manifest\"; then\n            $MANIFEST_TOOL -manifest \"$lt_tool_outputfile.manifest\" -outputresource:\"$lt_tool_outputfile\" || exit 1;\n            $RM \"$lt_outputfile.manifest\";\n          fi'\n\t;;\n      *)\n\t# Assume MSVC wrapper\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '\n\t_LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t# Tell ltmain to make .lib files, not .a files.\n\tlibext=lib\n\t# Tell ltmain to make .dll files, not .so files.\n\tshrext_cmds=.dll\n\t# FIXME: Setting linknames here is a bad hack.\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all \"$deplibs\" | $SED '\\''s/ -lc$//'\\''` -link -dll~linknames='\n\t# The linker will automatically build a .lib file if we build a DLL.\n\t_LT_TAGVAR(old_archive_from_new_cmds, $1)='true'\n\t# FIXME: Should let the user specify the lib program.\n\t_LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'\n\t_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n\t;;\n      esac\n      ;;\n\n    darwin* | rhapsody*)\n      _LT_DARWIN_LINKER_FEATURES($1)\n      ;;\n\n    dgux*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor\n    # support.  Future versions do this automatically, but an explicit c++rt0.o\n    # does not break anything, and helps significantly (at the cost of a little\n    # extra space).\n    freebsd2.2*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    # Unfortunately, older versions of FreeBSD 2 do not have this feature.\n    freebsd2.*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.\n    freebsd* | dragonfly*)\n      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    hpux9*)\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n\n      # hardcode_minus_L: Not really in the search PATH,\n      # but as the default location of the library.\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n      ;;\n\n    hpux10*)\n      if test yes,no = \"$GCC,$with_gnu_ld\"; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      if test no = \"$with_gnu_ld\"; then\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'\n\t_LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\t_LT_TAGVAR(hardcode_direct, $1)=yes\n\t_LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n\t# hardcode_minus_L: Not really in the search PATH,\n\t# but as the default location of the library.\n\t_LT_TAGVAR(hardcode_minus_L, $1)=yes\n      fi\n      ;;\n\n    hpux11*)\n      if test yes,no = \"$GCC,$with_gnu_ld\"; then\n\tcase $host_cpu in\n\thppa*64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tesac\n      else\n\tcase $host_cpu in\n\thppa*64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\tm4_if($1, [], [\n\t  # Older versions of the 11.00 compiler do not understand -b yet\n\t  # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)\n\t  _LT_LINKER_OPTION([if $CC understands -b],\n\t    _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b],\n\t    [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'],\n\t    [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])],\n\t  [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'])\n\t  ;;\n\tesac\n      fi\n      if test no = \"$with_gnu_ld\"; then\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'\n\t_LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\tcase $host_cpu in\n\thppa*64*|ia64*)\n\t  _LT_TAGVAR(hardcode_direct, $1)=no\n\t  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t  ;;\n\t*)\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes\n\t  _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\t  _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n\n\t  # hardcode_minus_L: Not really in the search PATH,\n\t  # but as the default location of the library.\n\t  _LT_TAGVAR(hardcode_minus_L, $1)=yes\n\t  ;;\n\tesac\n      fi\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t# Try to use the -exported_symbol ld option, if it does not\n\t# work, assume that -exports_file does not work either and\n\t# implicitly export all symbols.\n\t# This should be the same for all languages, so no per-tag cache variable.\n\tAC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol],\n\t  [lt_cv_irix_exported_symbol],\n\t  [save_LDFLAGS=$LDFLAGS\n\t   LDFLAGS=\"$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null\"\n\t   AC_LINK_IFELSE(\n\t     [AC_LANG_SOURCE(\n\t        [AC_LANG_CASE([C], [[int foo (void) { return 0; }]],\n\t\t\t      [C++], [[int foo (void) { return 0; }]],\n\t\t\t      [Fortran 77], [[\n      subroutine foo\n      end]],\n\t\t\t      [Fortran], [[\n      subroutine foo\n      end]])])],\n\t      [lt_cv_irix_exported_symbol=yes],\n\t      [lt_cv_irix_exported_symbol=no])\n           LDFLAGS=$save_LDFLAGS])\n\tif test yes = \"$lt_cv_irix_exported_symbol\"; then\n          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib'\n\tfi\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib'\n      fi\n      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      _LT_TAGVAR(inherit_rpath, $1)=yes\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      ;;\n\n    linux*)\n      case $cc_basename in\n      tcc*)\n\t# Fabrice Bellard et al's Tiny C Compiler\n\t_LT_TAGVAR(ld_shlibs, $1)=yes\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t;;\n      esac\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    newsos6)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    *nto* | *qnx*)\n      ;;\n\n    openbsd* | bitrig*)\n      if test -f /usr/libexec/ld.so; then\n\t_LT_TAGVAR(hardcode_direct, $1)=yes\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t_LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\tif test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols'\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t  _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n\telse\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\tfi\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    os2*)\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      shrext_cmds=.dll\n      _LT_TAGVAR(archive_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\temxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\tprefix_cmds=\"$SED\"~\n\tif test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t  prefix_cmds=\"$prefix_cmds -e 1d\";\n\tfi~\n\tprefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\tcat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n      ;;\n\n    osf3*)\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\\*'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n      else\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \\*'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n      fi\n      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      ;;\n\n    osf4* | osf5*)\t# as osf3* with the addition of -msym flag\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\\*'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n      else\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \\*'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf \"%s %s\\\\n\" -exported_symbol \"\\$i\" >> $lib.exp; done; printf \"%s\\\\n\" \"-hidden\">> $lib.exp~\n          $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n \"$verstring\" && $ECHO \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp'\n\n\t# Both c and cxx compiler support -rpath directly\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'\n      fi\n      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      ;;\n\n    solaris*)\n      _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'\n      if test yes = \"$GCC\"; then\n\twlarc='$wl'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n          $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n      else\n\tcase `$CC -V 2>&1` in\n\t*\"Compilers 5.0\"*)\n\t  wlarc=''\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n            $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'\n\t  ;;\n\t*)\n\t  wlarc='$wl'\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n            $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n\t  ;;\n\tesac\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      case $host_os in\n      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;\n      *)\n\t# The compiler driver will combine and reorder linker options,\n\t# but understands '-z linker_flag'.  GCC discards it without '$wl',\n\t# but is careful enough not to reorder.\n\t# Supported since Solaris 2.6 (maybe 2.5.1?)\n\tif test yes = \"$GCC\"; then\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'\n\telse\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'\n\tfi\n\t;;\n      esac\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      ;;\n\n    sunos4*)\n      if test sequent = \"$host_vendor\"; then\n\t# Use $CC to link under sequent, because it throws in some extra .o\n\t# files that make .init and .fini sections work.\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    sysv4)\n      case $host_vendor in\n\tsni)\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true???\n\t;;\n\tsiemens)\n\t  ## LD is ld it makes a PLAMLIB\n\t  ## CC just makes a GrossModule.\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'\n\t  _LT_TAGVAR(hardcode_direct, $1)=no\n        ;;\n\tmotorola)\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie\n\t;;\n      esac\n      runpath_var='LD_RUN_PATH'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    sysv4.3*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\trunpath_var=LD_RUN_PATH\n\thardcode_runpath_var=yes\n\t_LT_TAGVAR(ld_shlibs, $1)=yes\n      fi\n      ;;\n\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)\n      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      runpath_var='LD_RUN_PATH'\n\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6*)\n      # Note: We CANNOT use -z defs as we might desire, because we do not\n      # link with -lc, and that would cause any symbols used from libc to\n      # always be unresolved, which means just about no library would\n      # ever link correctly.  If we're not using GNU ld we use -z text\n      # though, which does catch some bad symbols but isn't as heavy-handed\n      # as -z defs.\n      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'\n      _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs'\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport'\n      runpath_var='LD_RUN_PATH'\n\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    uts4*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    *)\n      _LT_TAGVAR(ld_shlibs, $1)=no\n      ;;\n    esac\n\n    if test sni = \"$host_vendor\"; then\n      case $host in\n      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym'\n\t;;\n      esac\n    fi\n  fi\n])\nAC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])\ntest no = \"$_LT_TAGVAR(ld_shlibs, $1)\" && can_build_shared=no\n\n_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld\n\n_LT_DECL([], [libext], [0], [Old archive suffix (normally \"a\")])dnl\n_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally \".so\")])dnl\n_LT_DECL([], [extract_expsyms_cmds], [2],\n    [The commands to extract the exported symbol list from a shared archive])\n\n#\n# Do we need to explicitly link libc?\n#\ncase \"x$_LT_TAGVAR(archive_cmds_need_lc, $1)\" in\nx|xyes)\n  # Assume -lc should be added\n  _LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\n  if test yes,yes = \"$GCC,$enable_shared\"; then\n    case $_LT_TAGVAR(archive_cmds, $1) in\n    *'~'*)\n      # FIXME: we may have to deal with multi-command sequences.\n      ;;\n    '$CC '*)\n      # Test whether the compiler implicitly links with -lc since on some\n      # systems, -lgcc has to come before -lc. If gcc already passes -lc\n      # to ld, don't add -lc before -lgcc.\n      AC_CACHE_CHECK([whether -lc should be explicitly linked in],\n\t[lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1),\n\t[$RM conftest*\n\techo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n\tif AC_TRY_EVAL(ac_compile) 2>conftest.err; then\n\t  soname=conftest\n\t  lib=conftest\n\t  libobjs=conftest.$ac_objext\n\t  deplibs=\n\t  wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1)\n\t  pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1)\n\t  compiler_flags=-v\n\t  linker_flags=-v\n\t  verstring=\n\t  output_objdir=.\n\t  libname=conftest\n\t  lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1)\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=\n\t  if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1)\n\t  then\n\t    lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\t  else\n\t    lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\t  fi\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag\n\telse\n\t  cat conftest.err 1>&5\n\tfi\n\t$RM conftest*\n\t])\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)\n      ;;\n    esac\n  fi\n  ;;\nesac\n\n_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0],\n    [Whether or not to add -lc for building shared libraries])\n_LT_TAGDECL([allow_libtool_libs_with_static_runtimes],\n    [enable_shared_with_static_runtimes], [0],\n    [Whether or not to disallow shared libs when runtime libs are static])\n_LT_TAGDECL([], [export_dynamic_flag_spec], [1],\n    [Compiler flag to allow reflexive dlopens])\n_LT_TAGDECL([], [whole_archive_flag_spec], [1],\n    [Compiler flag to generate shared objects directly from archives])\n_LT_TAGDECL([], [compiler_needs_object], [1],\n    [Whether the compiler copes with passing no objects directly])\n_LT_TAGDECL([], [old_archive_from_new_cmds], [2],\n    [Create an old-style archive from a shared archive])\n_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2],\n    [Create a temporary old-style archive to link instead of a shared archive])\n_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive])\n_LT_TAGDECL([], [archive_expsym_cmds], [2])\n_LT_TAGDECL([], [module_cmds], [2],\n    [Commands used to build a loadable module if different from building\n    a shared archive.])\n_LT_TAGDECL([], [module_expsym_cmds], [2])\n_LT_TAGDECL([], [with_gnu_ld], [1],\n    [Whether we are building with GNU ld or not])\n_LT_TAGDECL([], [allow_undefined_flag], [1],\n    [Flag that allows shared libraries with undefined symbols to be built])\n_LT_TAGDECL([], [no_undefined_flag], [1],\n    [Flag that enforces no undefined symbols])\n_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],\n    [Flag to hardcode $libdir into a binary during linking.\n    This must work even if $libdir does not exist])\n_LT_TAGDECL([], [hardcode_libdir_separator], [1],\n    [Whether we need a single \"-rpath\" flag with a separated argument])\n_LT_TAGDECL([], [hardcode_direct], [0],\n    [Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n    DIR into the resulting binary])\n_LT_TAGDECL([], [hardcode_direct_absolute], [0],\n    [Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n    DIR into the resulting binary and the resulting library dependency is\n    \"absolute\", i.e impossible to change by setting $shlibpath_var if the\n    library is relocated])\n_LT_TAGDECL([], [hardcode_minus_L], [0],\n    [Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n    into the resulting binary])\n_LT_TAGDECL([], [hardcode_shlibpath_var], [0],\n    [Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n    into the resulting binary])\n_LT_TAGDECL([], [hardcode_automatic], [0],\n    [Set to \"yes\" if building a shared library automatically hardcodes DIR\n    into the library and all subsequent libraries and executables linked\n    against it])\n_LT_TAGDECL([], [inherit_rpath], [0],\n    [Set to yes if linker adds runtime paths of dependent libraries\n    to runtime path list])\n_LT_TAGDECL([], [link_all_deplibs], [0],\n    [Whether libtool must link a program against all its dependency libraries])\n_LT_TAGDECL([], [always_export_symbols], [0],\n    [Set to \"yes\" if exported symbols are required])\n_LT_TAGDECL([], [export_symbols_cmds], [2],\n    [The commands to list exported symbols])\n_LT_TAGDECL([], [exclude_expsyms], [1],\n    [Symbols that should not be listed in the preloaded symbols])\n_LT_TAGDECL([], [include_expsyms], [1],\n    [Symbols that must always be exported])\n_LT_TAGDECL([], [prelink_cmds], [2],\n    [Commands necessary for linking programs (against libraries) with templates])\n_LT_TAGDECL([], [postlink_cmds], [2],\n    [Commands necessary for finishing linking programs])\n_LT_TAGDECL([], [file_list_spec], [1],\n    [Specify filename containing input files])\ndnl FIXME: Not yet implemented\ndnl _LT_TAGDECL([], [thread_safe_flag_spec], [1],\ndnl    [Compiler flag to generate thread safe objects])\n])# _LT_LINKER_SHLIBS\n\n\n# _LT_LANG_C_CONFIG([TAG])\n# ------------------------\n# Ensure that the configuration variables for a C compiler are suitably\n# defined.  These variables are subsequently used by _LT_CONFIG to write\n# the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_C_CONFIG],\n[m4_require([_LT_DECL_EGREP])dnl\nlt_save_CC=$CC\nAC_LANG_PUSH(C)\n\n# Source file extension for C test sources.\nac_ext=c\n\n# Object file extension for compiled C test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"int some_variable = 0;\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='int main(){return(0);}'\n\n_LT_TAG_COMPILER\n# Save the default compiler, since it gets overwritten when the other\n# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.\ncompiler_DEFAULT=$CC\n\n# save warnings/boilerplate of simple test code\n_LT_COMPILER_BOILERPLATE\n_LT_LINKER_BOILERPLATE\n\n## CAVEAT EMPTOR:\n## There is no encapsulation within the following macros, do not change\n## the running order or otherwise move them around unless you know exactly\n## what you are doing...\nif test -n \"$compiler\"; then\n  _LT_COMPILER_NO_RTTI($1)\n  _LT_COMPILER_PIC($1)\n  _LT_COMPILER_C_O($1)\n  _LT_COMPILER_FILE_LOCKS($1)\n  _LT_LINKER_SHLIBS($1)\n  _LT_SYS_DYNAMIC_LINKER($1)\n  _LT_LINKER_HARDCODE_LIBPATH($1)\n  LT_SYS_DLOPEN_SELF\n  _LT_CMD_STRIPLIB\n\n  # Report what library types will actually be built\n  AC_MSG_CHECKING([if libtool supports shared libraries])\n  AC_MSG_RESULT([$can_build_shared])\n\n  AC_MSG_CHECKING([whether to build shared libraries])\n  test no = \"$can_build_shared\" && enable_shared=no\n\n  # On AIX, shared libraries and static libraries use the same namespace, and\n  # are all built from PIC.\n  case $host_os in\n  aix3*)\n    test yes = \"$enable_shared\" && enable_static=no\n    if test -n \"$RANLIB\"; then\n      archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n      postinstall_cmds='$RANLIB $lib'\n    fi\n    ;;\n\n  aix[[4-9]]*)\n    if test ia64 != \"$host_cpu\"; then\n      case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in\n      yes,aix,yes) ;;\t\t\t# shared object as lib.so file only\n      yes,svr4,*) ;;\t\t\t# shared object as lib.so archive member only\n      yes,*) enable_static=no ;;\t# shared object in lib.a archive as well\n      esac\n    fi\n    ;;\n  esac\n  AC_MSG_RESULT([$enable_shared])\n\n  AC_MSG_CHECKING([whether to build static libraries])\n  # Make sure either enable_shared or enable_static is yes.\n  test yes = \"$enable_shared\" || enable_static=yes\n  AC_MSG_RESULT([$enable_static])\n\n  _LT_CONFIG($1)\nfi\nAC_LANG_POP\nCC=$lt_save_CC\n])# _LT_LANG_C_CONFIG\n\n\n# _LT_LANG_CXX_CONFIG([TAG])\n# --------------------------\n# Ensure that the configuration variables for a C++ compiler are suitably\n# defined.  These variables are subsequently used by _LT_CONFIG to write\n# the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_CXX_CONFIG],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_PATH_MANIFEST_TOOL])dnl\nif test -n \"$CXX\" && ( test no != \"$CXX\" &&\n    ( (test g++ = \"$CXX\" && `g++ -v >/dev/null 2>&1` ) ||\n    (test g++ != \"$CXX\"))); then\n  AC_PROG_CXXCPP\nelse\n  _lt_caught_CXX_error=yes\nfi\n\nAC_LANG_PUSH(C++)\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n_LT_TAGVAR(allow_undefined_flag, $1)=\n_LT_TAGVAR(always_export_symbols, $1)=no\n_LT_TAGVAR(archive_expsym_cmds, $1)=\n_LT_TAGVAR(compiler_needs_object, $1)=no\n_LT_TAGVAR(export_dynamic_flag_spec, $1)=\n_LT_TAGVAR(hardcode_direct, $1)=no\n_LT_TAGVAR(hardcode_direct_absolute, $1)=no\n_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n_LT_TAGVAR(hardcode_libdir_separator, $1)=\n_LT_TAGVAR(hardcode_minus_L, $1)=no\n_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported\n_LT_TAGVAR(hardcode_automatic, $1)=no\n_LT_TAGVAR(inherit_rpath, $1)=no\n_LT_TAGVAR(module_cmds, $1)=\n_LT_TAGVAR(module_expsym_cmds, $1)=\n_LT_TAGVAR(link_all_deplibs, $1)=unknown\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n_LT_TAGVAR(no_undefined_flag, $1)=\n_LT_TAGVAR(whole_archive_flag_spec, $1)=\n_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n\n# Source file extension for C++ test sources.\nac_ext=cpp\n\n# Object file extension for compiled C++ test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# No sense in running all these tests if we already determined that\n# the CXX compiler isn't working.  Some variables (like enable_shared)\n# are currently assumed to apply to all compilers on this platform,\n# and will be corrupted by setting them based on a non-working compiler.\nif test yes != \"$_lt_caught_CXX_error\"; then\n  # Code to be used in simple compile tests\n  lt_simple_compile_test_code=\"int some_variable = 0;\"\n\n  # Code to be used in simple link tests\n  lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'\n\n  # ltmain only uses $CC for tagged configurations so make sure $CC is set.\n  _LT_TAG_COMPILER\n\n  # save warnings/boilerplate of simple test code\n  _LT_COMPILER_BOILERPLATE\n  _LT_LINKER_BOILERPLATE\n\n  # Allow CC to be a program name with arguments.\n  lt_save_CC=$CC\n  lt_save_CFLAGS=$CFLAGS\n  lt_save_LD=$LD\n  lt_save_GCC=$GCC\n  GCC=$GXX\n  lt_save_with_gnu_ld=$with_gnu_ld\n  lt_save_path_LD=$lt_cv_path_LD\n  if test -n \"${lt_cv_prog_gnu_ldcxx+set}\"; then\n    lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx\n  else\n    $as_unset lt_cv_prog_gnu_ld\n  fi\n  if test -n \"${lt_cv_path_LDCXX+set}\"; then\n    lt_cv_path_LD=$lt_cv_path_LDCXX\n  else\n    $as_unset lt_cv_path_LD\n  fi\n  test -z \"${LDCXX+set}\" || LD=$LDCXX\n  CC=${CXX-\"c++\"}\n  CFLAGS=$CXXFLAGS\n  compiler=$CC\n  _LT_TAGVAR(compiler, $1)=$CC\n  _LT_CC_BASENAME([$compiler])\n\n  if test -n \"$compiler\"; then\n    # We don't want -fno-exception when compiling C++ code, so set the\n    # no_builtin_flag separately\n    if test yes = \"$GXX\"; then\n      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'\n    else\n      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=\n    fi\n\n    if test yes = \"$GXX\"; then\n      # Set up default GNU C++ configuration\n\n      LT_PATH_LD\n\n      # Check if GNU C++ uses GNU ld as the underlying linker, since the\n      # archiving commands below assume that GNU ld is being used.\n      if test yes = \"$with_gnu_ld\"; then\n        _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'\n        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n\n        # If archive_cmds runs LD, not CC, wlarc should be empty\n        # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to\n        #     investigate it a little bit more. (MM)\n        wlarc='$wl'\n\n        # ancient GNU ld didn't support --whole-archive et. al.\n        if eval \"`$CC -print-prog-name=ld` --help 2>&1\" |\n\t  $GREP 'no-whole-archive' > /dev/null; then\n          _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'\n        else\n          _LT_TAGVAR(whole_archive_flag_spec, $1)=\n        fi\n      else\n        with_gnu_ld=no\n        wlarc=\n\n        # A generic and very simple default shared library creation\n        # command for GNU C++ for the case where it uses the native\n        # linker, instead of GNU ld.  If possible, this setting should\n        # overridden to take advantage of the native linker features on\n        # the platform it is being used on.\n        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'\n      fi\n\n      # Commands to make compiler produce verbose output that lists\n      # what \"hidden\" libraries, object files and flags are used when\n      # linking a shared library.\n      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\n    else\n      GXX=no\n      with_gnu_ld=no\n      wlarc=\n    fi\n\n    # PORTME: fill in a description of your system's C++ link characteristics\n    AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])\n    _LT_TAGVAR(ld_shlibs, $1)=yes\n    case $host_os in\n      aix3*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n      aix[[4-9]]*)\n        if test ia64 = \"$host_cpu\"; then\n          # On IA64, the linker does run time linking by default, so we don't\n          # have to do anything special.\n          aix_use_runtimelinking=no\n          exp_sym_flag='-Bexport'\n          no_entry_flag=\n        else\n          aix_use_runtimelinking=no\n\n          # Test if we are trying to use run time linking or normal\n          # AIX style linking. If -brtl is somewhere in LDFLAGS, we\n          # have runtime linking enabled, and use it for executables.\n          # For shared libraries, we enable/disable runtime linking\n          # depending on the kind of the shared library created -\n          # when \"with_aix_soname,aix_use_runtimelinking\" is:\n          # \"aix,no\"   lib.a(lib.so.V) shared, rtl:no,  for executables\n          # \"aix,yes\"  lib.so          shared, rtl:yes, for executables\n          #            lib.a           static archive\n          # \"both,no\"  lib.so.V(shr.o) shared, rtl:yes\n          #            lib.a(lib.so.V) shared, rtl:no,  for executables\n          # \"both,yes\" lib.so.V(shr.o) shared, rtl:yes, for executables\n          #            lib.a(lib.so.V) shared, rtl:no\n          # \"svr4,*\"   lib.so.V(shr.o) shared, rtl:yes, for executables\n          #            lib.a           static archive\n          case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)\n\t    for ld_flag in $LDFLAGS; do\n\t      case $ld_flag in\n\t      *-brtl*)\n\t        aix_use_runtimelinking=yes\n\t        break\n\t        ;;\n\t      esac\n\t    done\n\t    if test svr4,no = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t      # With aix-soname=svr4, we create the lib.so.V shared archives only,\n\t      # so we don't have lib.a shared libs to link our executables.\n\t      # We have to force runtime linking in this case.\n\t      aix_use_runtimelinking=yes\n\t      LDFLAGS=\"$LDFLAGS -Wl,-brtl\"\n\t    fi\n\t    ;;\n          esac\n\n          exp_sym_flag='-bexport'\n          no_entry_flag='-bnoentry'\n        fi\n\n        # When large executables or shared objects are built, AIX ld can\n        # have problems creating the table of contents.  If linking a library\n        # or program results in \"error TOC overflow\" add -mminimal-toc to\n        # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not\n        # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.\n\n        _LT_TAGVAR(archive_cmds, $1)=''\n        _LT_TAGVAR(hardcode_direct, $1)=yes\n        _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n        _LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n        _LT_TAGVAR(link_all_deplibs, $1)=yes\n        _LT_TAGVAR(file_list_spec, $1)='$wl-f,'\n        case $with_aix_soname,$aix_use_runtimelinking in\n        aix,*) ;;\t# no import file\n        svr4,* | *,yes) # use import file\n          # The Import File defines what to hardcode.\n          _LT_TAGVAR(hardcode_direct, $1)=no\n          _LT_TAGVAR(hardcode_direct_absolute, $1)=no\n          ;;\n        esac\n\n        if test yes = \"$GXX\"; then\n          case $host_os in aix4.[[012]]|aix4.[[012]].*)\n          # We only want to do this on AIX 4.2 and lower, the check\n          # below for broken collect2 doesn't work under 4.3+\n\t  collect2name=`$CC -print-prog-name=collect2`\n\t  if test -f \"$collect2name\" &&\n\t     strings \"$collect2name\" | $GREP resolve_lib_name >/dev/null\n\t  then\n\t    # We have reworked collect2\n\t    :\n\t  else\n\t    # We have old collect2\n\t    _LT_TAGVAR(hardcode_direct, $1)=unsupported\n\t    # It fails to find uninstalled libraries when the uninstalled\n\t    # path is not listed in the libpath.  Setting hardcode_minus_L\n\t    # to unsupported forces relinking\n\t    _LT_TAGVAR(hardcode_minus_L, $1)=yes\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=\n\t  fi\n          esac\n          shared_flag='-shared'\n\t  if test yes = \"$aix_use_runtimelinking\"; then\n\t    shared_flag=$shared_flag' $wl-G'\n\t  fi\n\t  # Need to ensure runtime linking is disabled for the traditional\n\t  # shared library, or the linker may eventually find shared libraries\n\t  # /with/ Import File - we do not want to mix them.\n\t  shared_flag_aix='-shared'\n\t  shared_flag_svr4='-shared $wl-G'\n        else\n          # not using gcc\n          if test ia64 = \"$host_cpu\"; then\n\t  # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release\n\t  # chokes on -Wl,-G. The following line is correct:\n\t  shared_flag='-G'\n          else\n\t    if test yes = \"$aix_use_runtimelinking\"; then\n\t      shared_flag='$wl-G'\n\t    else\n\t      shared_flag='$wl-bM:SRE'\n\t    fi\n\t    shared_flag_aix='$wl-bM:SRE'\n\t    shared_flag_svr4='$wl-G'\n          fi\n        fi\n\n        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall'\n        # It seems that -bexpall does not export symbols beginning with\n        # underscore (_), so it is better to generate a list of symbols to\n\t# export.\n        _LT_TAGVAR(always_export_symbols, $1)=yes\n\tif test aix,yes = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n          # Warning - without using the other runtime loading flags (-brtl),\n          # -berok will link without error, but may produce a broken library.\n          # The \"-G\" linker flag allows undefined symbols.\n          _LT_TAGVAR(no_undefined_flag, $1)='-bernotok'\n          # Determine the default libpath from the value encoded in an empty\n          # executable.\n          _LT_SYS_MODULE_PATH_AIX([$1])\n          _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'\"$aix_libpath\"\n\n          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n \"$allow_undefined_flag\"; then func_echo_all \"$wl$allow_undefined_flag\"; else :; fi` $wl'$exp_sym_flag:\\$export_symbols' '$shared_flag\n        else\n          if test ia64 = \"$host_cpu\"; then\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib'\n\t    _LT_TAGVAR(allow_undefined_flag, $1)=\"-z nodefs\"\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)=\"\\$CC $shared_flag\"' -o $output_objdir/$soname $libobjs $deplibs '\"\\$wl$no_entry_flag\"' $compiler_flags $wl$allow_undefined_flag '\"\\$wl$exp_sym_flag:\\$export_symbols\"\n          else\n\t    # Determine the default libpath from the value encoded in an\n\t    # empty executable.\n\t    _LT_SYS_MODULE_PATH_AIX([$1])\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'\"$aix_libpath\"\n\t    # Warning - without using the other run time loading flags,\n\t    # -berok will link without error, but may produce a broken library.\n\t    _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok'\n\t    _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok'\n\t    if test yes = \"$with_gnu_ld\"; then\n\t      # We only use this code for GNU lds that support --whole-archive.\n\t      _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'\n\t    else\n\t      # Exported symbols can be pulled into shared objects from archives\n\t      _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'\n\t    fi\n\t    _LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'\n\t    # -brtl affects multiple linker settings, -berok does not and is overridden later\n\t    compiler_flags_filtered='`func_echo_all \"$compiler_flags \" | $SED -e \"s%-brtl\\\\([[, ]]\\\\)%-berok\\\\1%g\"`'\n\t    if test svr4 != \"$with_aix_soname\"; then\n\t      # This is similar to how AIX traditionally builds its shared\n\t      # libraries. Need -bnortl late, we may have -brtl in LDFLAGS.\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'\n\t    fi\n\t    if test aix != \"$with_aix_soname\"; then\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all \"#! $soname($shared_archive_member_spec.o)\"; if test shr_64 = \"$shared_archive_member_spec\"; then func_echo_all \"# 64\"; else func_echo_all \"# 32\"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'\n\t    else\n\t      # used by -dlpreopen to get the symbols\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'\n\t    fi\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$RM -r $output_objdir/$realname.d'\n          fi\n        fi\n        ;;\n\n      beos*)\n\tif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t  # Joseph Beckenbach <jrb3@best.com> says some releases of gcc\n\t  # support --undefined.  This deserves some investigation.  FIXME\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\telse\n\t  _LT_TAGVAR(ld_shlibs, $1)=no\n\tfi\n\t;;\n\n      chorus*)\n        case $cc_basename in\n          *)\n\t  # FIXME: insert proper C++ library support\n\t  _LT_TAGVAR(ld_shlibs, $1)=no\n\t  ;;\n        esac\n        ;;\n\n      cygwin* | mingw* | pw32* | cegcc*)\n\tcase $GXX,$cc_basename in\n\t,cl* | no,cl*)\n\t  # Native MSVC\n\t  # hardcode_libdir_flag_spec is actually meaningless, as there is\n\t  # no search path for DLLs.\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t  _LT_TAGVAR(always_export_symbols, $1)=yes\n\t  _LT_TAGVAR(file_list_spec, $1)='@'\n\t  # Tell ltmain to make .lib files, not .a files.\n\t  libext=lib\n\t  # Tell ltmain to make .dll files, not .so files.\n\t  shrext_cmds=.dll\n\t  # FIXME: Setting linknames here is a bad hack.\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~linknames='\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then\n              cp \"$export_symbols\" \"$output_objdir/$soname.def\";\n              echo \"$tool_output_objdir$soname.def\" > \"$output_objdir/$soname.exp\";\n            else\n              $SED -e '\\''s/^/-link -EXPORT:/'\\'' < $export_symbols > $output_objdir/$soname.exp;\n            fi~\n            $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs \"@$tool_output_objdir$soname.exp\" -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~\n            linknames='\n\t  # The linker will not automatically build a static lib if we build a DLL.\n\t  # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'\n\t  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n\t  # Don't use ranlib\n\t  _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'\n\t  _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile=\"@OUTPUT@\"~\n            lt_tool_outputfile=\"@TOOL_OUTPUT@\"~\n            case $lt_outputfile in\n              *.exe|*.EXE) ;;\n              *)\n                lt_outputfile=$lt_outputfile.exe\n                lt_tool_outputfile=$lt_tool_outputfile.exe\n                ;;\n            esac~\n            func_to_tool_file \"$lt_outputfile\"~\n            if test : != \"$MANIFEST_TOOL\" && test -f \"$lt_outputfile.manifest\"; then\n              $MANIFEST_TOOL -manifest \"$lt_tool_outputfile.manifest\" -outputresource:\"$lt_tool_outputfile\" || exit 1;\n              $RM \"$lt_outputfile.manifest\";\n            fi'\n\t  ;;\n\t*)\n\t  # g++\n\t  # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,\n\t  # as there is no search path for DLLs.\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n\t  _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols'\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t  _LT_TAGVAR(always_export_symbols, $1)=no\n\t  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n\n\t  if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n\t    # If the export-symbols file already is a .def file, use it as\n\t    # is; otherwise, prepend EXPORTS...\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then\n              cp $export_symbols $output_objdir/$soname.def;\n            else\n              echo EXPORTS > $output_objdir/$soname.def;\n              cat $export_symbols >> $output_objdir/$soname.def;\n            fi~\n            $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n\t  else\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t  fi\n\t  ;;\n\tesac\n\t;;\n      darwin* | rhapsody*)\n        _LT_DARWIN_LINKER_FEATURES($1)\n\t;;\n\n      os2*)\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n\t_LT_TAGVAR(hardcode_minus_L, $1)=yes\n\t_LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\tshrext_cmds=.dll\n\t_LT_TAGVAR(archive_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t  $ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t  $ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t  $ECHO EXPORTS >> $output_objdir/$libname.def~\n\t  emxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t  $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\t  emximp -o $lib $output_objdir/$libname.def'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t  $ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t  $ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t  $ECHO EXPORTS >> $output_objdir/$libname.def~\n\t  prefix_cmds=\"$SED\"~\n\t  if test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t    prefix_cmds=\"$prefix_cmds -e 1d\";\n\t  fi~\n\t  prefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\t  cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t  $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\t  emximp -o $lib $output_objdir/$libname.def'\n\t_LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n\t_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n\t;;\n\n      dgux*)\n        case $cc_basename in\n          ec++*)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          ghcx*)\n\t    # Green Hills C++ Compiler\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n        esac\n        ;;\n\n      freebsd2.*)\n        # C++ shared libraries reported to be fairly broken before\n\t# switch to ELF\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n\n      freebsd-elf*)\n        _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n        ;;\n\n      freebsd* | dragonfly*)\n        # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF\n        # conventions\n        _LT_TAGVAR(ld_shlibs, $1)=yes\n        ;;\n\n      haiku*)\n        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n        _LT_TAGVAR(link_all_deplibs, $1)=yes\n        ;;\n\n      hpux9*)\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'\n        _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n        _LT_TAGVAR(hardcode_direct, $1)=yes\n        _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,\n\t\t\t\t             # but as the default\n\t\t\t\t             # location of the library.\n\n        case $cc_basename in\n          CC*)\n            # FIXME: insert proper C++ library support\n            _LT_TAGVAR(ld_shlibs, $1)=no\n            ;;\n          aCC*)\n            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n            # Commands to make compiler produce verbose output that lists\n            # what \"hidden\" libraries, object files and flags are used when\n            # linking a shared library.\n            #\n            # There doesn't appear to be a way to prevent this compiler from\n            # explicitly linking system object files so we need to strip them\n            # from the output so that they don't get included in the library\n            # dependencies.\n            output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP \"\\-L\"`; list= ; for z in $templist; do case $z in conftest.$objext) list=\"$list $z\";; *.$objext);; *) list=\"$list $z\";;esac; done; func_echo_all \"$list\"'\n            ;;\n          *)\n            if test yes = \"$GXX\"; then\n              _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n            else\n              # FIXME: insert proper C++ library support\n              _LT_TAGVAR(ld_shlibs, $1)=no\n            fi\n            ;;\n        esac\n        ;;\n\n      hpux10*|hpux11*)\n        if test no = \"$with_gnu_ld\"; then\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'\n\t  _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n          case $host_cpu in\n            hppa*64*|ia64*)\n              ;;\n            *)\n\t      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n              ;;\n          esac\n        fi\n        case $host_cpu in\n          hppa*64*|ia64*)\n            _LT_TAGVAR(hardcode_direct, $1)=no\n            _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n            ;;\n          *)\n            _LT_TAGVAR(hardcode_direct, $1)=yes\n            _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n            _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,\n\t\t\t\t\t         # but as the default\n\t\t\t\t\t         # location of the library.\n            ;;\n        esac\n\n        case $cc_basename in\n          CC*)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          aCC*)\n\t    case $host_cpu in\n\t      hppa*64*)\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t        ;;\n\t      ia64*)\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t        ;;\n\t      *)\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t        ;;\n\t    esac\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP \"\\-L\"`; list= ; for z in $templist; do case $z in conftest.$objext) list=\"$list $z\";; *.$objext);; *) list=\"$list $z\";;esac; done; func_echo_all \"$list\"'\n\t    ;;\n          *)\n\t    if test yes = \"$GXX\"; then\n\t      if test no = \"$with_gnu_ld\"; then\n\t        case $host_cpu in\n\t          hppa*64*)\n\t            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t          ia64*)\n\t            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t          *)\n\t            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t        esac\n\t      fi\n\t    else\n\t      # FIXME: insert proper C++ library support\n\t      _LT_TAGVAR(ld_shlibs, $1)=no\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n      interix[[3-9]]*)\n\t_LT_TAGVAR(hardcode_direct, $1)=no\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n\t# Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.\n\t# Instead, shared libraries are loaded at an image base (0x10000000 by\n\t# default) and relocated if they conflict, which is a slow very memory\n\t# consuming and fragmenting process.  To avoid this, we pick a random,\n\t# 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link\n\t# time.  Moving up from 0x10000000 also allows more sbrk(2) space.\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='sed \"s|^|_|\" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n\t;;\n      irix5* | irix6*)\n        case $cc_basename in\n          CC*)\n\t    # SGI C++\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -ar\", where \"CC\" is the IRIX C++ compiler.  This is\n\t    # necessary to make sure instantiated templates are included\n\t    # in the archive.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'\n\t    ;;\n          *)\n\t    if test yes = \"$GXX\"; then\n\t      if test no = \"$with_gnu_ld\"; then\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t      else\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` -o $lib'\n\t      fi\n\t    fi\n\t    _LT_TAGVAR(link_all_deplibs, $1)=yes\n\t    ;;\n        esac\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n        _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n        _LT_TAGVAR(inherit_rpath, $1)=yes\n        ;;\n\n      linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n        case $cc_basename in\n          KCC*)\n\t    # Kuck and Associates, Inc. (KAI) C++ Compiler\n\n\t    # KCC will only create a shared library if the output file\n\t    # ends with \".so\" (or \".sl\" for HP-UX), so rename the library\n\t    # to its proper name (with version) after linking.\n\t    _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\\''s/\\([[^()0-9A-Za-z{}]]\\)/\\\\\\\\\\1/g'\\''`; templib=`echo $lib | $SED -e \"s/\\$tempext\\..*/.so/\"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \\$templib; mv \\$templib $lib'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\\''s/\\([[^()0-9A-Za-z{}]]\\)/\\\\\\\\\\1/g'\\''`; templib=`echo $lib | $SED -e \"s/\\$tempext\\..*/.so/\"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \\$templib $wl-retain-symbols-file,$export_symbols; mv \\$templib $lib'\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP \"ld\"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list=\"$list $z\";; *.$objext);; *) list=\"$list $z\";;esac; done; func_echo_all \"$list\"'\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -Bstatic\", where \"CC\" is the KAI C++ compiler.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'\n\t    ;;\n\t  icpc* | ecpc* )\n\t    # Intel C++\n\t    with_gnu_ld=yes\n\t    # version 8.0 and above of icpc choke on multiply defined symbols\n\t    # if we add $predep_objects and $postdep_objects, however 7.1 and\n\t    # earlier do not add the objects themselves.\n\t    case `$CC -V 2>&1` in\n\t      *\"Version 7.\"*)\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'\n\t\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t\t;;\n\t      *)  # Version 8.0 or newer\n\t        tmp_idyn=\n\t        case $host_cpu in\n\t\t  ia64*) tmp_idyn=' -i_dynamic';;\n\t\tesac\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared'\"$tmp_idyn\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'\"$tmp_idyn\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t\t;;\n\t    esac\n\t    _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'\n\t    ;;\n          pgCC* | pgcpp*)\n            # Portland Group C++ compiler\n\t    case `$CC -V` in\n\t    *pgCC\\ [[1-5]].* | *pgcpp\\ [[1-5]].*)\n\t      _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~\n               rm -rf $tpldir~\n               $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~\n               compile_command=\"$compile_command `find $tpldir -name \\*.o | sort | $NL2SP`\"'\n\t      _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~\n                rm -rf $tpldir~\n                $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~\n                $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \\*.o | sort | $NL2SP`~\n                $RANLIB $oldlib'\n\t      _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~\n                rm -rf $tpldir~\n                $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~\n                $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \\*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~\n                rm -rf $tpldir~\n                $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~\n                $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \\*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t      ;;\n\t    *) # Version 6 and above use weak symbols\n\t      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t      ;;\n\t    esac\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n            ;;\n\t  cxx*)\n\t    # Compaq C++\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname  -o $lib $wl-retain-symbols-file $wl$export_symbols'\n\n\t    runpath_var=LD_RUN_PATH\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP \"ld\"`; templist=`func_echo_all \"$templist\" | $SED \"s/\\(^.*ld.*\\)\\( .*ld .*$\\)/\\1/\"`; list= ; for z in $templist; do case $z in conftest.$objext) list=\"$list $z\";; *.$objext);; *) list=\"$list $z\";;esac; done; func_echo_all \"X$list\" | $Xsed'\n\t    ;;\n\t  xl* | mpixl* | bgxl*)\n\t    # IBM XL 8.0 on PPC, with GNU ld\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t    if test yes = \"$supports_anon_versioning\"; then\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $output_objdir/$libname.ver~\n                cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n                echo \"local: *; };\" >> $output_objdir/$libname.ver~\n                $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'\n\t    fi\n\t    ;;\n\t  *)\n\t    case `$CC -V 2>&1 | sed 5q` in\n\t    *Sun\\ C*)\n\t      # Sun C++ 5.9\n\t      _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'\n\t      _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols'\n\t      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n\t      _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\\\"\\\"; do test -z \\\"$conv\\\" || new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t      _LT_TAGVAR(compiler_needs_object, $1)=yes\n\n\t      # Not sure whether something based on\n\t      # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1\n\t      # would be better.\n\t      output_verbose_link_cmd='func_echo_all'\n\n\t      # Archives containing C++ object files must be created using\n\t      # \"CC -xar\", where \"CC\" is the Sun C++ compiler.  This is\n\t      # necessary to make sure instantiated templates are included\n\t      # in the archive.\n\t      _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'\n\t      ;;\n\t    esac\n\t    ;;\n\tesac\n\t;;\n\n      lynxos*)\n        # FIXME: insert proper C++ library support\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\t;;\n\n      m88k*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n\t;;\n\n      mvs*)\n        case $cc_basename in\n          cxx*)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n\t  *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n\tesac\n\t;;\n\n      netbsd*)\n        if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'\n\t  wlarc=\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes\n\t  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\tfi\n\t# Workaround some broken pre-1.5 toolchains\n\toutput_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e \"s:-lgcc -lc -lgcc::\"'\n\t;;\n\n      *nto* | *qnx*)\n        _LT_TAGVAR(ld_shlibs, $1)=yes\n\t;;\n\n      openbsd* | bitrig*)\n\tif test -f /usr/libexec/ld.so; then\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes\n\t  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t  _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t  if test -z \"`echo __ELF__ | $CC -E - | grep __ELF__`\"; then\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'\n\t  fi\n\t  output_verbose_link_cmd=func_echo_all\n\telse\n\t  _LT_TAGVAR(ld_shlibs, $1)=no\n\tfi\n\t;;\n\n      osf3* | osf4* | osf5*)\n        case $cc_basename in\n          KCC*)\n\t    # Kuck and Associates, Inc. (KAI) C++ Compiler\n\n\t    # KCC will only create a shared library if the output file\n\t    # ends with \".so\" (or \".sl\" for HP-UX), so rename the library\n\t    # to its proper name (with version) after linking.\n\t    _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\\''s/\\([[^()0-9A-Za-z{}]]\\)/\\\\\\\\\\1/g'\\''`; templib=`echo \"$lib\" | $SED -e \"s/\\$tempext\\..*/.so/\"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \\$templib; mv \\$templib $lib'\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t    # Archives containing C++ object files must be created using\n\t    # the KAI C++ compiler.\n\t    case $host in\n\t      osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;;\n\t      *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;;\n\t    esac\n\t    ;;\n          RCC*)\n\t    # Rational C++ 2.4.1\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          cxx*)\n\t    case $host in\n\t      osf3*)\n\t        _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\\*'\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\t        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n\t\t;;\n\t      *)\n\t        _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \\*'\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\t        _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf \"%s %s\\\\n\" -exported_symbol \"\\$i\" >> $lib.exp; done~\n                  echo \"-hidden\">> $lib.exp~\n                  $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp  `test -n \"$verstring\" && $ECHO \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib~\n                  $RM $lib.exp'\n\t        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'\n\t\t;;\n\t    esac\n\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP \"ld\" | $GREP -v \"ld:\"`; templist=`func_echo_all \"$templist\" | $SED \"s/\\(^.*ld.*\\)\\( .*ld.*$\\)/\\1/\"`; list= ; for z in $templist; do case $z in conftest.$objext) list=\"$list $z\";; *.$objext);; *) list=\"$list $z\";;esac; done; func_echo_all \"$list\"'\n\t    ;;\n\t  *)\n\t    if test yes,no = \"$GXX,$with_gnu_ld\"; then\n\t      _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\\*'\n\t      case $host in\n\t        osf3*)\n\t          _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t\t  ;;\n\t        *)\n\t          _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t\t  ;;\n\t      esac\n\n\t      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n\t      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t      # Commands to make compiler produce verbose output that lists\n\t      # what \"hidden\" libraries, object files and flags are used when\n\t      # linking a shared library.\n\t      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\n\t    else\n\t      # FIXME: insert proper C++ library support\n\t      _LT_TAGVAR(ld_shlibs, $1)=no\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n      psos*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n\n      sunos4*)\n        case $cc_basename in\n          CC*)\n\t    # Sun C++ 4.x\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          lcc*)\n\t    # Lucid\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n        esac\n        ;;\n\n      solaris*)\n        case $cc_basename in\n          CC* | sunCC*)\n\t    # Sun C++ 4.2, 5.x and Centerline C++\n            _LT_TAGVAR(archive_cmds_need_lc,$1)=yes\n\t    _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n              $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n\t    _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t    case $host_os in\n\t      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;\n\t      *)\n\t\t# The compiler driver will combine and reorder linker options,\n\t\t# but understands '-z linker_flag'.\n\t        # Supported since Solaris 2.6 (maybe 2.5.1?)\n\t\t_LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'\n\t        ;;\n\t    esac\n\t    _LT_TAGVAR(link_all_deplibs, $1)=yes\n\n\t    output_verbose_link_cmd='func_echo_all'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -xar\", where \"CC\" is the Sun C++ compiler.  This is\n\t    # necessary to make sure instantiated templates are included\n\t    # in the archive.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'\n\t    ;;\n          gcx*)\n\t    # Green Hills C++ Compiler\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'\n\n\t    # The C++ compiler must be used to create the archive.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'\n\t    ;;\n          *)\n\t    # GNU C++ compiler with Solaris linker\n\t    if test yes,no = \"$GXX,$with_gnu_ld\"; then\n\t      _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs'\n\t      if $CC --version | $GREP -v '^2\\.7' > /dev/null; then\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'\n\t        _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n                  $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'\n\n\t        # Commands to make compiler produce verbose output that lists\n\t        # what \"hidden\" libraries, object files and flags are used when\n\t        # linking a shared library.\n\t        output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\t      else\n\t        # g++ 2.7 appears to require '-G' NOT '-shared' on this\n\t        # platform.\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'\n\t        _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n                  $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'\n\n\t        # Commands to make compiler produce verbose output that lists\n\t        # what \"hidden\" libraries, object files and flags are used when\n\t        # linking a shared library.\n\t        output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\t      fi\n\n\t      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir'\n\t      case $host_os in\n\t\tsolaris2.[[0-5]] | solaris2.[[0-5]].*) ;;\n\t\t*)\n\t\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'\n\t\t  ;;\n\t      esac\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)\n      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      runpath_var='LD_RUN_PATH'\n\n      case $cc_basename in\n        CC*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n      esac\n      ;;\n\n      sysv5* | sco3.2v5* | sco5v6*)\n\t# Note: We CANNOT use -z defs as we might desire, because we do not\n\t# link with -lc, and that would cause any symbols used from libc to\n\t# always be unresolved, which means just about no library would\n\t# ever link correctly.  If we're not using GNU ld we use -z text\n\t# though, which does catch some bad symbols but isn't as heavy-handed\n\t# as -z defs.\n\t_LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'\n\t_LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs'\n\t_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir'\n\t_LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n\t_LT_TAGVAR(link_all_deplibs, $1)=yes\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport'\n\trunpath_var='LD_RUN_PATH'\n\n\tcase $cc_basename in\n          CC*)\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~\n              '\"$_LT_TAGVAR(old_archive_cmds, $1)\"\n\t    _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~\n              '\"$_LT_TAGVAR(reload_cmds, $1)\"\n\t    ;;\n\t  *)\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    ;;\n\tesac\n      ;;\n\n      tandem*)\n        case $cc_basename in\n          NCC*)\n\t    # NonStop-UX NCC 3.20\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n        esac\n        ;;\n\n      vxworks*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n\n      *)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n    esac\n\n    AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])\n    test no = \"$_LT_TAGVAR(ld_shlibs, $1)\" && can_build_shared=no\n\n    _LT_TAGVAR(GCC, $1)=$GXX\n    _LT_TAGVAR(LD, $1)=$LD\n\n    ## CAVEAT EMPTOR:\n    ## There is no encapsulation within the following macros, do not change\n    ## the running order or otherwise move them around unless you know exactly\n    ## what you are doing...\n    _LT_SYS_HIDDEN_LIBDEPS($1)\n    _LT_COMPILER_PIC($1)\n    _LT_COMPILER_C_O($1)\n    _LT_COMPILER_FILE_LOCKS($1)\n    _LT_LINKER_SHLIBS($1)\n    _LT_SYS_DYNAMIC_LINKER($1)\n    _LT_LINKER_HARDCODE_LIBPATH($1)\n\n    _LT_CONFIG($1)\n  fi # test -n \"$compiler\"\n\n  CC=$lt_save_CC\n  CFLAGS=$lt_save_CFLAGS\n  LDCXX=$LD\n  LD=$lt_save_LD\n  GCC=$lt_save_GCC\n  with_gnu_ld=$lt_save_with_gnu_ld\n  lt_cv_path_LDCXX=$lt_cv_path_LD\n  lt_cv_path_LD=$lt_save_path_LD\n  lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld\n  lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld\nfi # test yes != \"$_lt_caught_CXX_error\"\n\nAC_LANG_POP\n])# _LT_LANG_CXX_CONFIG\n\n\n# _LT_FUNC_STRIPNAME_CNF\n# ----------------------\n# func_stripname_cnf prefix suffix name\n# strip PREFIX and SUFFIX off of NAME.\n# PREFIX and SUFFIX must not contain globbing or regex special\n# characters, hashes, percent signs, but SUFFIX may contain a leading\n# dot (in which case that matches only a dot).\n#\n# This function is identical to the (non-XSI) version of func_stripname,\n# except this one can be used by m4 code that may be executed by configure,\n# rather than the libtool script.\nm4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl\nAC_REQUIRE([_LT_DECL_SED])\nAC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])\nfunc_stripname_cnf ()\n{\n  case @S|@2 in\n  .*) func_stripname_result=`$ECHO \"@S|@3\" | $SED \"s%^@S|@1%%; s%\\\\\\\\@S|@2\\$%%\"`;;\n  *)  func_stripname_result=`$ECHO \"@S|@3\" | $SED \"s%^@S|@1%%; s%@S|@2\\$%%\"`;;\n  esac\n} # func_stripname_cnf\n])# _LT_FUNC_STRIPNAME_CNF\n\n\n# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])\n# ---------------------------------\n# Figure out \"hidden\" library dependencies from verbose\n# compiler output when linking a shared library.\n# Parse the compiler output and extract the necessary\n# objects, libraries and library flags.\nm4_defun([_LT_SYS_HIDDEN_LIBDEPS],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\nAC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl\n# Dependencies to place before and after the object being linked:\n_LT_TAGVAR(predep_objects, $1)=\n_LT_TAGVAR(postdep_objects, $1)=\n_LT_TAGVAR(predeps, $1)=\n_LT_TAGVAR(postdeps, $1)=\n_LT_TAGVAR(compiler_lib_search_path, $1)=\n\ndnl we can't use the lt_simple_compile_test_code here,\ndnl because it contains code intended for an executable,\ndnl not a library.  It's possible we should let each\ndnl tag define a new lt_????_link_test_code variable,\ndnl but it's only used here...\nm4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF\nint a;\nvoid foo (void) { a = 0; }\n_LT_EOF\n], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF\nclass Foo\n{\npublic:\n  Foo (void) { a = 0; }\nprivate:\n  int a;\n};\n_LT_EOF\n], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF\n      subroutine foo\n      implicit none\n      integer*4 a\n      a=0\n      return\n      end\n_LT_EOF\n], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF\n      subroutine foo\n      implicit none\n      integer a\n      a=0\n      return\n      end\n_LT_EOF\n], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF\npublic class foo {\n  private int a;\n  public void bar (void) {\n    a = 0;\n  }\n};\n_LT_EOF\n], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF\npackage foo\nfunc foo() {\n}\n_LT_EOF\n])\n\n_lt_libdeps_save_CFLAGS=$CFLAGS\ncase \"$CC $CFLAGS \" in #(\n*\\ -flto*\\ *) CFLAGS=\"$CFLAGS -fno-lto\" ;;\n*\\ -fwhopr*\\ *) CFLAGS=\"$CFLAGS -fno-whopr\" ;;\n*\\ -fuse-linker-plugin*\\ *) CFLAGS=\"$CFLAGS -fno-use-linker-plugin\" ;;\nesac\n\ndnl Parse the compiler output and extract the necessary\ndnl objects, libraries and library flags.\nif AC_TRY_EVAL(ac_compile); then\n  # Parse the compiler output and extract the necessary\n  # objects, libraries and library flags.\n\n  # Sentinel used to keep track of whether or not we are before\n  # the conftest object file.\n  pre_test_object_deps_done=no\n\n  for p in `eval \"$output_verbose_link_cmd\"`; do\n    case $prev$p in\n\n    -L* | -R* | -l*)\n       # Some compilers place space between \"-{L,R}\" and the path.\n       # Remove the space.\n       if test x-L = \"$p\" ||\n          test x-R = \"$p\"; then\n\t prev=$p\n\t continue\n       fi\n\n       # Expand the sysroot to ease extracting the directories later.\n       if test -z \"$prev\"; then\n         case $p in\n         -L*) func_stripname_cnf '-L' '' \"$p\"; prev=-L; p=$func_stripname_result ;;\n         -R*) func_stripname_cnf '-R' '' \"$p\"; prev=-R; p=$func_stripname_result ;;\n         -l*) func_stripname_cnf '-l' '' \"$p\"; prev=-l; p=$func_stripname_result ;;\n         esac\n       fi\n       case $p in\n       =*) func_stripname_cnf '=' '' \"$p\"; p=$lt_sysroot$func_stripname_result ;;\n       esac\n       if test no = \"$pre_test_object_deps_done\"; then\n\t case $prev in\n\t -L | -R)\n\t   # Internal compiler library paths should come after those\n\t   # provided the user.  The postdeps already come after the\n\t   # user supplied libs so there is no need to process them.\n\t   if test -z \"$_LT_TAGVAR(compiler_lib_search_path, $1)\"; then\n\t     _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p\n\t   else\n\t     _LT_TAGVAR(compiler_lib_search_path, $1)=\"${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p\"\n\t   fi\n\t   ;;\n\t # The \"-l\" case would never come before the object being\n\t # linked, so don't bother handling this case.\n\t esac\n       else\n\t if test -z \"$_LT_TAGVAR(postdeps, $1)\"; then\n\t   _LT_TAGVAR(postdeps, $1)=$prev$p\n\t else\n\t   _LT_TAGVAR(postdeps, $1)=\"${_LT_TAGVAR(postdeps, $1)} $prev$p\"\n\t fi\n       fi\n       prev=\n       ;;\n\n    *.lto.$objext) ;; # Ignore GCC LTO objects\n    *.$objext)\n       # This assumes that the test object file only shows up\n       # once in the compiler output.\n       if test \"$p\" = \"conftest.$objext\"; then\n\t pre_test_object_deps_done=yes\n\t continue\n       fi\n\n       if test no = \"$pre_test_object_deps_done\"; then\n\t if test -z \"$_LT_TAGVAR(predep_objects, $1)\"; then\n\t   _LT_TAGVAR(predep_objects, $1)=$p\n\t else\n\t   _LT_TAGVAR(predep_objects, $1)=\"$_LT_TAGVAR(predep_objects, $1) $p\"\n\t fi\n       else\n\t if test -z \"$_LT_TAGVAR(postdep_objects, $1)\"; then\n\t   _LT_TAGVAR(postdep_objects, $1)=$p\n\t else\n\t   _LT_TAGVAR(postdep_objects, $1)=\"$_LT_TAGVAR(postdep_objects, $1) $p\"\n\t fi\n       fi\n       ;;\n\n    *) ;; # Ignore the rest.\n\n    esac\n  done\n\n  # Clean up.\n  rm -f a.out a.exe\nelse\n  echo \"libtool.m4: error: problem compiling $1 test program\"\nfi\n\n$RM -f confest.$objext\nCFLAGS=$_lt_libdeps_save_CFLAGS\n\n# PORTME: override above test on systems where it is broken\nm4_if([$1], [CXX],\n[case $host_os in\ninterix[[3-9]]*)\n  # Interix 3.5 installs completely hosed .la files for C++, so rather than\n  # hack all around it, let's just trust \"g++\" to DTRT.\n  _LT_TAGVAR(predep_objects,$1)=\n  _LT_TAGVAR(postdep_objects,$1)=\n  _LT_TAGVAR(postdeps,$1)=\n  ;;\nesac\n])\n\ncase \" $_LT_TAGVAR(postdeps, $1) \" in\n*\" -lc \"*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;;\nesac\n _LT_TAGVAR(compiler_lib_search_dirs, $1)=\nif test -n \"${_LT_TAGVAR(compiler_lib_search_path, $1)}\"; then\n _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo \" ${_LT_TAGVAR(compiler_lib_search_path, $1)}\" | $SED -e 's! -L! !g' -e 's!^ !!'`\nfi\n_LT_TAGDECL([], [compiler_lib_search_dirs], [1],\n    [The directories searched by this compiler when creating a shared library])\n_LT_TAGDECL([], [predep_objects], [1],\n    [Dependencies to place before and after the objects being linked to\n    create a shared library])\n_LT_TAGDECL([], [postdep_objects], [1])\n_LT_TAGDECL([], [predeps], [1])\n_LT_TAGDECL([], [postdeps], [1])\n_LT_TAGDECL([], [compiler_lib_search_path], [1],\n    [The library search path used internally by the compiler when linking\n    a shared library])\n])# _LT_SYS_HIDDEN_LIBDEPS\n\n\n# _LT_LANG_F77_CONFIG([TAG])\n# --------------------------\n# Ensure that the configuration variables for a Fortran 77 compiler are\n# suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_F77_CONFIG],\n[AC_LANG_PUSH(Fortran 77)\nif test -z \"$F77\" || test no = \"$F77\"; then\n  _lt_disable_F77=yes\nfi\n\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n_LT_TAGVAR(allow_undefined_flag, $1)=\n_LT_TAGVAR(always_export_symbols, $1)=no\n_LT_TAGVAR(archive_expsym_cmds, $1)=\n_LT_TAGVAR(export_dynamic_flag_spec, $1)=\n_LT_TAGVAR(hardcode_direct, $1)=no\n_LT_TAGVAR(hardcode_direct_absolute, $1)=no\n_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n_LT_TAGVAR(hardcode_libdir_separator, $1)=\n_LT_TAGVAR(hardcode_minus_L, $1)=no\n_LT_TAGVAR(hardcode_automatic, $1)=no\n_LT_TAGVAR(inherit_rpath, $1)=no\n_LT_TAGVAR(module_cmds, $1)=\n_LT_TAGVAR(module_expsym_cmds, $1)=\n_LT_TAGVAR(link_all_deplibs, $1)=unknown\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n_LT_TAGVAR(no_undefined_flag, $1)=\n_LT_TAGVAR(whole_archive_flag_spec, $1)=\n_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n\n# Source file extension for f77 test sources.\nac_ext=f\n\n# Object file extension for compiled f77 test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# No sense in running all these tests if we already determined that\n# the F77 compiler isn't working.  Some variables (like enable_shared)\n# are currently assumed to apply to all compilers on this platform,\n# and will be corrupted by setting them based on a non-working compiler.\nif test yes != \"$_lt_disable_F77\"; then\n  # Code to be used in simple compile tests\n  lt_simple_compile_test_code=\"\\\n      subroutine t\n      return\n      end\n\"\n\n  # Code to be used in simple link tests\n  lt_simple_link_test_code=\"\\\n      program t\n      end\n\"\n\n  # ltmain only uses $CC for tagged configurations so make sure $CC is set.\n  _LT_TAG_COMPILER\n\n  # save warnings/boilerplate of simple test code\n  _LT_COMPILER_BOILERPLATE\n  _LT_LINKER_BOILERPLATE\n\n  # Allow CC to be a program name with arguments.\n  lt_save_CC=$CC\n  lt_save_GCC=$GCC\n  lt_save_CFLAGS=$CFLAGS\n  CC=${F77-\"f77\"}\n  CFLAGS=$FFLAGS\n  compiler=$CC\n  _LT_TAGVAR(compiler, $1)=$CC\n  _LT_CC_BASENAME([$compiler])\n  GCC=$G77\n  if test -n \"$compiler\"; then\n    AC_MSG_CHECKING([if libtool supports shared libraries])\n    AC_MSG_RESULT([$can_build_shared])\n\n    AC_MSG_CHECKING([whether to build shared libraries])\n    test no = \"$can_build_shared\" && enable_shared=no\n\n    # On AIX, shared libraries and static libraries use the same namespace, and\n    # are all built from PIC.\n    case $host_os in\n      aix3*)\n        test yes = \"$enable_shared\" && enable_static=no\n        if test -n \"$RANLIB\"; then\n          archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n          postinstall_cmds='$RANLIB $lib'\n        fi\n        ;;\n      aix[[4-9]]*)\n\tif test ia64 != \"$host_cpu\"; then\n\t  case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in\n\t  yes,aix,yes) ;;\t\t# shared object as lib.so file only\n\t  yes,svr4,*) ;;\t\t# shared object as lib.so archive member only\n\t  yes,*) enable_static=no ;;\t# shared object in lib.a archive as well\n\t  esac\n\tfi\n        ;;\n    esac\n    AC_MSG_RESULT([$enable_shared])\n\n    AC_MSG_CHECKING([whether to build static libraries])\n    # Make sure either enable_shared or enable_static is yes.\n    test yes = \"$enable_shared\" || enable_static=yes\n    AC_MSG_RESULT([$enable_static])\n\n    _LT_TAGVAR(GCC, $1)=$G77\n    _LT_TAGVAR(LD, $1)=$LD\n\n    ## CAVEAT EMPTOR:\n    ## There is no encapsulation within the following macros, do not change\n    ## the running order or otherwise move them around unless you know exactly\n    ## what you are doing...\n    _LT_COMPILER_PIC($1)\n    _LT_COMPILER_C_O($1)\n    _LT_COMPILER_FILE_LOCKS($1)\n    _LT_LINKER_SHLIBS($1)\n    _LT_SYS_DYNAMIC_LINKER($1)\n    _LT_LINKER_HARDCODE_LIBPATH($1)\n\n    _LT_CONFIG($1)\n  fi # test -n \"$compiler\"\n\n  GCC=$lt_save_GCC\n  CC=$lt_save_CC\n  CFLAGS=$lt_save_CFLAGS\nfi # test yes != \"$_lt_disable_F77\"\n\nAC_LANG_POP\n])# _LT_LANG_F77_CONFIG\n\n\n# _LT_LANG_FC_CONFIG([TAG])\n# -------------------------\n# Ensure that the configuration variables for a Fortran compiler are\n# suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_FC_CONFIG],\n[AC_LANG_PUSH(Fortran)\n\nif test -z \"$FC\" || test no = \"$FC\"; then\n  _lt_disable_FC=yes\nfi\n\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n_LT_TAGVAR(allow_undefined_flag, $1)=\n_LT_TAGVAR(always_export_symbols, $1)=no\n_LT_TAGVAR(archive_expsym_cmds, $1)=\n_LT_TAGVAR(export_dynamic_flag_spec, $1)=\n_LT_TAGVAR(hardcode_direct, $1)=no\n_LT_TAGVAR(hardcode_direct_absolute, $1)=no\n_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n_LT_TAGVAR(hardcode_libdir_separator, $1)=\n_LT_TAGVAR(hardcode_minus_L, $1)=no\n_LT_TAGVAR(hardcode_automatic, $1)=no\n_LT_TAGVAR(inherit_rpath, $1)=no\n_LT_TAGVAR(module_cmds, $1)=\n_LT_TAGVAR(module_expsym_cmds, $1)=\n_LT_TAGVAR(link_all_deplibs, $1)=unknown\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n_LT_TAGVAR(no_undefined_flag, $1)=\n_LT_TAGVAR(whole_archive_flag_spec, $1)=\n_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n\n# Source file extension for fc test sources.\nac_ext=${ac_fc_srcext-f}\n\n# Object file extension for compiled fc test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# No sense in running all these tests if we already determined that\n# the FC compiler isn't working.  Some variables (like enable_shared)\n# are currently assumed to apply to all compilers on this platform,\n# and will be corrupted by setting them based on a non-working compiler.\nif test yes != \"$_lt_disable_FC\"; then\n  # Code to be used in simple compile tests\n  lt_simple_compile_test_code=\"\\\n      subroutine t\n      return\n      end\n\"\n\n  # Code to be used in simple link tests\n  lt_simple_link_test_code=\"\\\n      program t\n      end\n\"\n\n  # ltmain only uses $CC for tagged configurations so make sure $CC is set.\n  _LT_TAG_COMPILER\n\n  # save warnings/boilerplate of simple test code\n  _LT_COMPILER_BOILERPLATE\n  _LT_LINKER_BOILERPLATE\n\n  # Allow CC to be a program name with arguments.\n  lt_save_CC=$CC\n  lt_save_GCC=$GCC\n  lt_save_CFLAGS=$CFLAGS\n  CC=${FC-\"f95\"}\n  CFLAGS=$FCFLAGS\n  compiler=$CC\n  GCC=$ac_cv_fc_compiler_gnu\n\n  _LT_TAGVAR(compiler, $1)=$CC\n  _LT_CC_BASENAME([$compiler])\n\n  if test -n \"$compiler\"; then\n    AC_MSG_CHECKING([if libtool supports shared libraries])\n    AC_MSG_RESULT([$can_build_shared])\n\n    AC_MSG_CHECKING([whether to build shared libraries])\n    test no = \"$can_build_shared\" && enable_shared=no\n\n    # On AIX, shared libraries and static libraries use the same namespace, and\n    # are all built from PIC.\n    case $host_os in\n      aix3*)\n        test yes = \"$enable_shared\" && enable_static=no\n        if test -n \"$RANLIB\"; then\n          archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n          postinstall_cmds='$RANLIB $lib'\n        fi\n        ;;\n      aix[[4-9]]*)\n\tif test ia64 != \"$host_cpu\"; then\n\t  case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in\n\t  yes,aix,yes) ;;\t\t# shared object as lib.so file only\n\t  yes,svr4,*) ;;\t\t# shared object as lib.so archive member only\n\t  yes,*) enable_static=no ;;\t# shared object in lib.a archive as well\n\t  esac\n\tfi\n        ;;\n    esac\n    AC_MSG_RESULT([$enable_shared])\n\n    AC_MSG_CHECKING([whether to build static libraries])\n    # Make sure either enable_shared or enable_static is yes.\n    test yes = \"$enable_shared\" || enable_static=yes\n    AC_MSG_RESULT([$enable_static])\n\n    _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu\n    _LT_TAGVAR(LD, $1)=$LD\n\n    ## CAVEAT EMPTOR:\n    ## There is no encapsulation within the following macros, do not change\n    ## the running order or otherwise move them around unless you know exactly\n    ## what you are doing...\n    _LT_SYS_HIDDEN_LIBDEPS($1)\n    _LT_COMPILER_PIC($1)\n    _LT_COMPILER_C_O($1)\n    _LT_COMPILER_FILE_LOCKS($1)\n    _LT_LINKER_SHLIBS($1)\n    _LT_SYS_DYNAMIC_LINKER($1)\n    _LT_LINKER_HARDCODE_LIBPATH($1)\n\n    _LT_CONFIG($1)\n  fi # test -n \"$compiler\"\n\n  GCC=$lt_save_GCC\n  CC=$lt_save_CC\n  CFLAGS=$lt_save_CFLAGS\nfi # test yes != \"$_lt_disable_FC\"\n\nAC_LANG_POP\n])# _LT_LANG_FC_CONFIG\n\n\n# _LT_LANG_GCJ_CONFIG([TAG])\n# --------------------------\n# Ensure that the configuration variables for the GNU Java Compiler compiler\n# are suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_GCJ_CONFIG],\n[AC_REQUIRE([LT_PROG_GCJ])dnl\nAC_LANG_SAVE\n\n# Source file extension for Java test sources.\nac_ext=java\n\n# Object file extension for compiled Java test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"class foo {}\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'\n\n# ltmain only uses $CC for tagged configurations so make sure $CC is set.\n_LT_TAG_COMPILER\n\n# save warnings/boilerplate of simple test code\n_LT_COMPILER_BOILERPLATE\n_LT_LINKER_BOILERPLATE\n\n# Allow CC to be a program name with arguments.\nlt_save_CC=$CC\nlt_save_CFLAGS=$CFLAGS\nlt_save_GCC=$GCC\nGCC=yes\nCC=${GCJ-\"gcj\"}\nCFLAGS=$GCJFLAGS\ncompiler=$CC\n_LT_TAGVAR(compiler, $1)=$CC\n_LT_TAGVAR(LD, $1)=$LD\n_LT_CC_BASENAME([$compiler])\n\n# GCJ did not exist at the time GCC didn't implicitly link libc in.\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n\n## CAVEAT EMPTOR:\n## There is no encapsulation within the following macros, do not change\n## the running order or otherwise move them around unless you know exactly\n## what you are doing...\nif test -n \"$compiler\"; then\n  _LT_COMPILER_NO_RTTI($1)\n  _LT_COMPILER_PIC($1)\n  _LT_COMPILER_C_O($1)\n  _LT_COMPILER_FILE_LOCKS($1)\n  _LT_LINKER_SHLIBS($1)\n  _LT_LINKER_HARDCODE_LIBPATH($1)\n\n  _LT_CONFIG($1)\nfi\n\nAC_LANG_RESTORE\n\nGCC=$lt_save_GCC\nCC=$lt_save_CC\nCFLAGS=$lt_save_CFLAGS\n])# _LT_LANG_GCJ_CONFIG\n\n\n# _LT_LANG_GO_CONFIG([TAG])\n# --------------------------\n# Ensure that the configuration variables for the GNU Go compiler\n# are suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_GO_CONFIG],\n[AC_REQUIRE([LT_PROG_GO])dnl\nAC_LANG_SAVE\n\n# Source file extension for Go test sources.\nac_ext=go\n\n# Object file extension for compiled Go test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"package main; func main() { }\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='package main; func main() { }'\n\n# ltmain only uses $CC for tagged configurations so make sure $CC is set.\n_LT_TAG_COMPILER\n\n# save warnings/boilerplate of simple test code\n_LT_COMPILER_BOILERPLATE\n_LT_LINKER_BOILERPLATE\n\n# Allow CC to be a program name with arguments.\nlt_save_CC=$CC\nlt_save_CFLAGS=$CFLAGS\nlt_save_GCC=$GCC\nGCC=yes\nCC=${GOC-\"gccgo\"}\nCFLAGS=$GOFLAGS\ncompiler=$CC\n_LT_TAGVAR(compiler, $1)=$CC\n_LT_TAGVAR(LD, $1)=$LD\n_LT_CC_BASENAME([$compiler])\n\n# Go did not exist at the time GCC didn't implicitly link libc in.\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n\n## CAVEAT EMPTOR:\n## There is no encapsulation within the following macros, do not change\n## the running order or otherwise move them around unless you know exactly\n## what you are doing...\nif test -n \"$compiler\"; then\n  _LT_COMPILER_NO_RTTI($1)\n  _LT_COMPILER_PIC($1)\n  _LT_COMPILER_C_O($1)\n  _LT_COMPILER_FILE_LOCKS($1)\n  _LT_LINKER_SHLIBS($1)\n  _LT_LINKER_HARDCODE_LIBPATH($1)\n\n  _LT_CONFIG($1)\nfi\n\nAC_LANG_RESTORE\n\nGCC=$lt_save_GCC\nCC=$lt_save_CC\nCFLAGS=$lt_save_CFLAGS\n])# _LT_LANG_GO_CONFIG\n\n\n# _LT_LANG_RC_CONFIG([TAG])\n# -------------------------\n# Ensure that the configuration variables for the Windows resource compiler\n# are suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_RC_CONFIG],\n[AC_REQUIRE([LT_PROG_RC])dnl\nAC_LANG_SAVE\n\n# Source file extension for RC test sources.\nac_ext=rc\n\n# Object file extension for compiled RC test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code='sample MENU { MENUITEM \"&Soup\", 100, CHECKED }'\n\n# Code to be used in simple link tests\nlt_simple_link_test_code=$lt_simple_compile_test_code\n\n# ltmain only uses $CC for tagged configurations so make sure $CC is set.\n_LT_TAG_COMPILER\n\n# save warnings/boilerplate of simple test code\n_LT_COMPILER_BOILERPLATE\n_LT_LINKER_BOILERPLATE\n\n# Allow CC to be a program name with arguments.\nlt_save_CC=$CC\nlt_save_CFLAGS=$CFLAGS\nlt_save_GCC=$GCC\nGCC=\nCC=${RC-\"windres\"}\nCFLAGS=\ncompiler=$CC\n_LT_TAGVAR(compiler, $1)=$CC\n_LT_CC_BASENAME([$compiler])\n_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes\n\nif test -n \"$compiler\"; then\n  :\n  _LT_CONFIG($1)\nfi\n\nGCC=$lt_save_GCC\nAC_LANG_RESTORE\nCC=$lt_save_CC\nCFLAGS=$lt_save_CFLAGS\n])# _LT_LANG_RC_CONFIG\n\n\n# LT_PROG_GCJ\n# -----------\nAC_DEFUN([LT_PROG_GCJ],\n[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],\n  [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],\n    [AC_CHECK_TOOL(GCJ, gcj,)\n      test set = \"${GCJFLAGS+set}\" || GCJFLAGS=\"-g -O2\"\n      AC_SUBST(GCJFLAGS)])])[]dnl\n])\n\n# Old name:\nAU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([LT_AC_PROG_GCJ], [])\n\n\n# LT_PROG_GO\n# ----------\nAC_DEFUN([LT_PROG_GO],\n[AC_CHECK_TOOL(GOC, gccgo,)\n])\n\n\n# LT_PROG_RC\n# ----------\nAC_DEFUN([LT_PROG_RC],\n[AC_CHECK_TOOL(RC, windres,)\n])\n\n# Old name:\nAU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([LT_AC_PROG_RC], [])\n\n\n# _LT_DECL_EGREP\n# --------------\n# If we don't have a new enough Autoconf to choose the best grep\n# available, choose the one first in the user's PATH.\nm4_defun([_LT_DECL_EGREP],\n[AC_REQUIRE([AC_PROG_EGREP])dnl\nAC_REQUIRE([AC_PROG_FGREP])dnl\ntest -z \"$GREP\" && GREP=grep\n_LT_DECL([], [GREP], [1], [A grep program that handles long lines])\n_LT_DECL([], [EGREP], [1], [An ERE matcher])\n_LT_DECL([], [FGREP], [1], [A literal string matcher])\ndnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too\nAC_SUBST([GREP])\n])\n\n\n# _LT_DECL_OBJDUMP\n# --------------\n# If we don't have a new enough Autoconf to choose the best objdump\n# available, choose the one first in the user's PATH.\nm4_defun([_LT_DECL_OBJDUMP],\n[AC_CHECK_TOOL(OBJDUMP, objdump, false)\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper])\nAC_SUBST([OBJDUMP])\n])\n\n# _LT_DECL_DLLTOOL\n# ----------------\n# Ensure DLLTOOL variable is set.\nm4_defun([_LT_DECL_DLLTOOL],\n[AC_CHECK_TOOL(DLLTOOL, dlltool, false)\ntest -z \"$DLLTOOL\" && DLLTOOL=dlltool\n_LT_DECL([], [DLLTOOL], [1], [DLL creation program])\nAC_SUBST([DLLTOOL])\n])\n\n# _LT_DECL_SED\n# ------------\n# Check for a fully-functional sed program, that truncates\n# as few characters as possible.  Prefer GNU sed if found.\nm4_defun([_LT_DECL_SED],\n[AC_PROG_SED\ntest -z \"$SED\" && SED=sed\nXsed=\"$SED -e 1s/^X//\"\n_LT_DECL([], [SED], [1], [A sed program that does not truncate output])\n_LT_DECL([], [Xsed], [\"\\$SED -e 1s/^X//\"],\n    [Sed that helps us avoid accidentally triggering echo(1) options like -n])\n])# _LT_DECL_SED\n\nm4_ifndef([AC_PROG_SED], [\n############################################################\n# NOTE: This macro has been submitted for inclusion into   #\n#  GNU Autoconf as AC_PROG_SED.  When it is available in   #\n#  a released version of Autoconf we should remove this    #\n#  macro and use it instead.                               #\n############################################################\n\nm4_defun([AC_PROG_SED],\n[AC_MSG_CHECKING([for a sed that does not truncate output])\nAC_CACHE_VAL(lt_cv_path_SED,\n[# Loop through the user's path and test for sed and gsed.\n# Then use that list of sed's as ones to test for truncation.\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for lt_ac_prog in sed gsed; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      if $as_executable_p \"$as_dir/$lt_ac_prog$ac_exec_ext\"; then\n        lt_ac_sed_list=\"$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext\"\n      fi\n    done\n  done\ndone\nIFS=$as_save_IFS\nlt_ac_max=0\nlt_ac_count=0\n# Add /usr/xpg4/bin/sed as it is typically found on Solaris\n# along with /bin/sed that truncates output.\nfor lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do\n  test ! -f \"$lt_ac_sed\" && continue\n  cat /dev/null > conftest.in\n  lt_ac_count=0\n  echo $ECHO_N \"0123456789$ECHO_C\" >conftest.in\n  # Check for GNU sed and select it if it is found.\n  if \"$lt_ac_sed\" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then\n    lt_cv_path_SED=$lt_ac_sed\n    break\n  fi\n  while true; do\n    cat conftest.in conftest.in >conftest.tmp\n    mv conftest.tmp conftest.in\n    cp conftest.in conftest.nl\n    echo >>conftest.nl\n    $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break\n    cmp -s conftest.out conftest.nl || break\n    # 10000 chars as input seems more than enough\n    test 10 -lt \"$lt_ac_count\" && break\n    lt_ac_count=`expr $lt_ac_count + 1`\n    if test \"$lt_ac_count\" -gt \"$lt_ac_max\"; then\n      lt_ac_max=$lt_ac_count\n      lt_cv_path_SED=$lt_ac_sed\n    fi\n  done\ndone\n])\nSED=$lt_cv_path_SED\nAC_SUBST([SED])\nAC_MSG_RESULT([$SED])\n])#AC_PROG_SED\n])#m4_ifndef\n\n# Old name:\nAU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([LT_AC_PROG_SED], [])\n\n\n# _LT_CHECK_SHELL_FEATURES\n# ------------------------\n# Find out whether the shell is Bourne or XSI compatible,\n# or has some other useful features.\nm4_defun([_LT_CHECK_SHELL_FEATURES],\n[if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then\n  lt_unset=unset\nelse\n  lt_unset=false\nfi\n_LT_DECL([], [lt_unset], [0], [whether the shell understands \"unset\"])dnl\n\n# test EBCDIC or ASCII\ncase `echo X|tr X '\\101'` in\n A) # ASCII based system\n    # \\n is not interpreted correctly by Solaris 8 /usr/ucb/tr\n  lt_SP2NL='tr \\040 \\012'\n  lt_NL2SP='tr \\015\\012 \\040\\040'\n  ;;\n *) # EBCDIC based system\n  lt_SP2NL='tr \\100 \\n'\n  lt_NL2SP='tr \\r\\n \\100\\100'\n  ;;\nesac\n_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl\n_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl\n])# _LT_CHECK_SHELL_FEATURES\n\n\n# _LT_PATH_CONVERSION_FUNCTIONS\n# -----------------------------\n# Determine what file name conversion functions should be used by\n# func_to_host_file (and, implicitly, by func_to_host_path).  These are needed\n# for certain cross-compile configurations and native mingw.\nm4_defun([_LT_PATH_CONVERSION_FUNCTIONS],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nAC_REQUIRE([AC_CANONICAL_BUILD])dnl\nAC_MSG_CHECKING([how to convert $build file names to $host format])\nAC_CACHE_VAL(lt_cv_to_host_file_cmd,\n[case $host in\n  *-*-mingw* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32\n        ;;\n      *-*-cygwin* )\n        lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32\n        ;;\n      * ) # otherwise, assume *nix\n        lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32\n        ;;\n    esac\n    ;;\n  *-*-cygwin* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin\n        ;;\n      *-*-cygwin* )\n        lt_cv_to_host_file_cmd=func_convert_file_noop\n        ;;\n      * ) # otherwise, assume *nix\n        lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin\n        ;;\n    esac\n    ;;\n  * ) # unhandled hosts (and \"normal\" native builds)\n    lt_cv_to_host_file_cmd=func_convert_file_noop\n    ;;\nesac\n])\nto_host_file_cmd=$lt_cv_to_host_file_cmd\nAC_MSG_RESULT([$lt_cv_to_host_file_cmd])\n_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd],\n         [0], [convert $build file names to $host format])dnl\n\nAC_MSG_CHECKING([how to convert $build file names to toolchain format])\nAC_CACHE_VAL(lt_cv_to_tool_file_cmd,\n[#assume ordinary cross tools, or native build.\nlt_cv_to_tool_file_cmd=func_convert_file_noop\ncase $host in\n  *-*-mingw* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32\n        ;;\n    esac\n    ;;\nesac\n])\nto_tool_file_cmd=$lt_cv_to_tool_file_cmd\nAC_MSG_RESULT([$lt_cv_to_tool_file_cmd])\n_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd],\n         [0], [convert $build files to toolchain format])dnl\n])# _LT_PATH_CONVERSION_FUNCTIONS\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/m4/ltoptions.m4",
    "content": "# Helper functions for option handling.                    -*- Autoconf -*-\n#\n#   Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software\n#   Foundation, Inc.\n#   Written by Gary V. Vaughan, 2004\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# serial 8 ltoptions.m4\n\n# This is to help aclocal find these macros, as it can't see m4_define.\nAC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])\n\n\n# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)\n# ------------------------------------------\nm4_define([_LT_MANGLE_OPTION],\n[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])\n\n\n# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)\n# ---------------------------------------\n# Set option OPTION-NAME for macro MACRO-NAME, and if there is a\n# matching handler defined, dispatch to it.  Other OPTION-NAMEs are\n# saved as a flag.\nm4_define([_LT_SET_OPTION],\n[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl\nm4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),\n        _LT_MANGLE_DEFUN([$1], [$2]),\n    [m4_warning([Unknown $1 option '$2'])])[]dnl\n])\n\n\n# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])\n# ------------------------------------------------------------\n# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.\nm4_define([_LT_IF_OPTION],\n[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])\n\n\n# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)\n# -------------------------------------------------------\n# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME\n# are set.\nm4_define([_LT_UNLESS_OPTIONS],\n[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),\n\t    [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),\n\t\t      [m4_define([$0_found])])])[]dnl\nm4_ifdef([$0_found], [m4_undefine([$0_found])], [$3\n])[]dnl\n])\n\n\n# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)\n# ----------------------------------------\n# OPTION-LIST is a space-separated list of Libtool options associated\n# with MACRO-NAME.  If any OPTION has a matching handler declared with\n# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about\n# the unknown option and exit.\nm4_defun([_LT_SET_OPTIONS],\n[# Set options\nm4_foreach([_LT_Option], m4_split(m4_normalize([$2])),\n    [_LT_SET_OPTION([$1], _LT_Option)])\n\nm4_if([$1],[LT_INIT],[\n  dnl\n  dnl Simply set some default values (i.e off) if boolean options were not\n  dnl specified:\n  _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no\n  ])\n  _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no\n  ])\n  dnl\n  dnl If no reference was made to various pairs of opposing options, then\n  dnl we run the default mode handler for the pair.  For example, if neither\n  dnl 'shared' nor 'disable-shared' was passed, we enable building of shared\n  dnl archives by default:\n  _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])\n  _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])\n  _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])\n  _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],\n\t\t   [_LT_ENABLE_FAST_INSTALL])\n  _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4],\n\t\t   [_LT_WITH_AIX_SONAME([aix])])\n  ])\n])# _LT_SET_OPTIONS\n\n\n## --------------------------------- ##\n## Macros to handle LT_INIT options. ##\n## --------------------------------- ##\n\n# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)\n# -----------------------------------------\nm4_define([_LT_MANGLE_DEFUN],\n[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])\n\n\n# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)\n# -----------------------------------------------\nm4_define([LT_OPTION_DEFINE],\n[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl\n])# LT_OPTION_DEFINE\n\n\n# dlopen\n# ------\nLT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes\n])\n\nAU_DEFUN([AC_LIBTOOL_DLOPEN],\n[_LT_SET_OPTION([LT_INIT], [dlopen])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you\nput the 'dlopen' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])\n\n\n# win32-dll\n# ---------\n# Declare package support for building win32 dll's.\nLT_OPTION_DEFINE([LT_INIT], [win32-dll],\n[enable_win32_dll=yes\n\ncase $host in\n*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)\n  AC_CHECK_TOOL(AS, as, false)\n  AC_CHECK_TOOL(DLLTOOL, dlltool, false)\n  AC_CHECK_TOOL(OBJDUMP, objdump, false)\n  ;;\nesac\n\ntest -z \"$AS\" && AS=as\n_LT_DECL([], [AS],      [1], [Assembler program])dnl\n\ntest -z \"$DLLTOOL\" && DLLTOOL=dlltool\n_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl\n\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl\n])# win32-dll\n\nAU_DEFUN([AC_LIBTOOL_WIN32_DLL],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\n_LT_SET_OPTION([LT_INIT], [win32-dll])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you\nput the 'win32-dll' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])\n\n\n# _LT_ENABLE_SHARED([DEFAULT])\n# ----------------------------\n# implement the --enable-shared flag, and supports the 'shared' and\n# 'disable-shared' LT_INIT options.\n# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.\nm4_define([_LT_ENABLE_SHARED],\n[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl\nAC_ARG_ENABLE([shared],\n    [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],\n\t[build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],\n    [p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_shared=yes ;;\n    no) enable_shared=no ;;\n    *)\n      enable_shared=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_shared=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac],\n    [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)\n\n    _LT_DECL([build_libtool_libs], [enable_shared], [0],\n\t[Whether or not to build shared libraries])\n])# _LT_ENABLE_SHARED\n\nLT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])\nLT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])\n\n# Old names:\nAC_DEFUN([AC_ENABLE_SHARED],\n[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])\n])\n\nAC_DEFUN([AC_DISABLE_SHARED],\n[_LT_SET_OPTION([LT_INIT], [disable-shared])\n])\n\nAU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])\nAU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_ENABLE_SHARED], [])\ndnl AC_DEFUN([AM_DISABLE_SHARED], [])\n\n\n\n# _LT_ENABLE_STATIC([DEFAULT])\n# ----------------------------\n# implement the --enable-static flag, and support the 'static' and\n# 'disable-static' LT_INIT options.\n# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.\nm4_define([_LT_ENABLE_STATIC],\n[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl\nAC_ARG_ENABLE([static],\n    [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],\n\t[build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],\n    [p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_static=yes ;;\n    no) enable_static=no ;;\n    *)\n     enable_static=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_static=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac],\n    [enable_static=]_LT_ENABLE_STATIC_DEFAULT)\n\n    _LT_DECL([build_old_libs], [enable_static], [0],\n\t[Whether or not to build static libraries])\n])# _LT_ENABLE_STATIC\n\nLT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])\nLT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])\n\n# Old names:\nAC_DEFUN([AC_ENABLE_STATIC],\n[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])\n])\n\nAC_DEFUN([AC_DISABLE_STATIC],\n[_LT_SET_OPTION([LT_INIT], [disable-static])\n])\n\nAU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])\nAU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_ENABLE_STATIC], [])\ndnl AC_DEFUN([AM_DISABLE_STATIC], [])\n\n\n\n# _LT_ENABLE_FAST_INSTALL([DEFAULT])\n# ----------------------------------\n# implement the --enable-fast-install flag, and support the 'fast-install'\n# and 'disable-fast-install' LT_INIT options.\n# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.\nm4_define([_LT_ENABLE_FAST_INSTALL],\n[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl\nAC_ARG_ENABLE([fast-install],\n    [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],\n    [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],\n    [p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_fast_install=yes ;;\n    no) enable_fast_install=no ;;\n    *)\n      enable_fast_install=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_fast_install=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac],\n    [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)\n\n_LT_DECL([fast_install], [enable_fast_install], [0],\n\t [Whether or not to optimize for fast installation])dnl\n])# _LT_ENABLE_FAST_INSTALL\n\nLT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])\nLT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])\n\n# Old names:\nAU_DEFUN([AC_ENABLE_FAST_INSTALL],\n[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you put\nthe 'fast-install' option into LT_INIT's first parameter.])\n])\n\nAU_DEFUN([AC_DISABLE_FAST_INSTALL],\n[_LT_SET_OPTION([LT_INIT], [disable-fast-install])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you put\nthe 'disable-fast-install' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])\ndnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])\n\n\n# _LT_WITH_AIX_SONAME([DEFAULT])\n# ----------------------------------\n# implement the --with-aix-soname flag, and support the `aix-soname=aix'\n# and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT\n# is either `aix', `both' or `svr4'.  If omitted, it defaults to `aix'.\nm4_define([_LT_WITH_AIX_SONAME],\n[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl\nshared_archive_member_spec=\ncase $host,$enable_shared in\npower*-*-aix[[5-9]]*,yes)\n  AC_MSG_CHECKING([which variant of shared library versioning to provide])\n  AC_ARG_WITH([aix-soname],\n    [AS_HELP_STRING([--with-aix-soname=aix|svr4|both],\n      [shared library versioning (aka \"SONAME\") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])],\n    [case $withval in\n    aix|svr4|both)\n      ;;\n    *)\n      AC_MSG_ERROR([Unknown argument to --with-aix-soname])\n      ;;\n    esac\n    lt_cv_with_aix_soname=$with_aix_soname],\n    [AC_CACHE_VAL([lt_cv_with_aix_soname],\n      [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT)\n    with_aix_soname=$lt_cv_with_aix_soname])\n  AC_MSG_RESULT([$with_aix_soname])\n  if test aix != \"$with_aix_soname\"; then\n    # For the AIX way of multilib, we name the shared archive member\n    # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o',\n    # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File.\n    # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag,\n    # the AIX toolchain works better with OBJECT_MODE set (default 32).\n    if test 64 = \"${OBJECT_MODE-32}\"; then\n      shared_archive_member_spec=shr_64\n    else\n      shared_archive_member_spec=shr\n    fi\n  fi\n  ;;\n*)\n  with_aix_soname=aix\n  ;;\nesac\n\n_LT_DECL([], [shared_archive_member_spec], [0],\n    [Shared archive member basename, for filename based shared library versioning on AIX])dnl\n])# _LT_WITH_AIX_SONAME\n\nLT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])])\nLT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])])\nLT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])])\n\n\n# _LT_WITH_PIC([MODE])\n# --------------------\n# implement the --with-pic flag, and support the 'pic-only' and 'no-pic'\n# LT_INIT options.\n# MODE is either 'yes' or 'no'.  If omitted, it defaults to 'both'.\nm4_define([_LT_WITH_PIC],\n[AC_ARG_WITH([pic],\n    [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],\n\t[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],\n    [lt_p=${PACKAGE-default}\n    case $withval in\n    yes|no) pic_mode=$withval ;;\n    *)\n      pic_mode=default\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for lt_pkg in $withval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$lt_pkg\" = \"X$lt_p\"; then\n\t  pic_mode=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac],\n    [pic_mode=m4_default([$1], [default])])\n\n_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl\n])# _LT_WITH_PIC\n\nLT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])\nLT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])\n\n# Old name:\nAU_DEFUN([AC_LIBTOOL_PICMODE],\n[_LT_SET_OPTION([LT_INIT], [pic-only])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you\nput the 'pic-only' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])\n\n## ----------------- ##\n## LTDL_INIT Options ##\n## ----------------- ##\n\nm4_define([_LTDL_MODE], [])\nLT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],\n\t\t [m4_define([_LTDL_MODE], [nonrecursive])])\nLT_OPTION_DEFINE([LTDL_INIT], [recursive],\n\t\t [m4_define([_LTDL_MODE], [recursive])])\nLT_OPTION_DEFINE([LTDL_INIT], [subproject],\n\t\t [m4_define([_LTDL_MODE], [subproject])])\n\nm4_define([_LTDL_TYPE], [])\nLT_OPTION_DEFINE([LTDL_INIT], [installable],\n\t\t [m4_define([_LTDL_TYPE], [installable])])\nLT_OPTION_DEFINE([LTDL_INIT], [convenience],\n\t\t [m4_define([_LTDL_TYPE], [convenience])])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/m4/ltsugar.m4",
    "content": "# ltsugar.m4 -- libtool m4 base layer.                         -*-Autoconf-*-\n#\n# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.\n# Written by Gary V. Vaughan, 2004\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# serial 6 ltsugar.m4\n\n# This is to help aclocal find these macros, as it can't see m4_define.\nAC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])\n\n\n# lt_join(SEP, ARG1, [ARG2...])\n# -----------------------------\n# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their\n# associated separator.\n# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier\n# versions in m4sugar had bugs.\nm4_define([lt_join],\n[m4_if([$#], [1], [],\n       [$#], [2], [[$2]],\n       [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])\nm4_define([_lt_join],\n[m4_if([$#$2], [2], [],\n       [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])\n\n\n# lt_car(LIST)\n# lt_cdr(LIST)\n# ------------\n# Manipulate m4 lists.\n# These macros are necessary as long as will still need to support\n# Autoconf-2.59 which quotes differently.\nm4_define([lt_car], [[$1]])\nm4_define([lt_cdr],\n[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],\n       [$#], 1, [],\n       [m4_dquote(m4_shift($@))])])\nm4_define([lt_unquote], $1)\n\n\n# lt_append(MACRO-NAME, STRING, [SEPARATOR])\n# ------------------------------------------\n# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.\n# Note that neither SEPARATOR nor STRING are expanded; they are appended\n# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).\n# No SEPARATOR is output if MACRO-NAME was previously undefined (different\n# than defined and empty).\n#\n# This macro is needed until we can rely on Autoconf 2.62, since earlier\n# versions of m4sugar mistakenly expanded SEPARATOR but not STRING.\nm4_define([lt_append],\n[m4_define([$1],\n\t   m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])\n\n\n\n# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])\n# ----------------------------------------------------------\n# Produce a SEP delimited list of all paired combinations of elements of\n# PREFIX-LIST with SUFFIX1 through SUFFIXn.  Each element of the list\n# has the form PREFIXmINFIXSUFFIXn.\n# Needed until we can rely on m4_combine added in Autoconf 2.62.\nm4_define([lt_combine],\n[m4_if(m4_eval([$# > 3]), [1],\n       [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl\n[[m4_foreach([_Lt_prefix], [$2],\n\t     [m4_foreach([_Lt_suffix],\n\t\t]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,\n\t[_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])\n\n\n# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])\n# -----------------------------------------------------------------------\n# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited\n# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.\nm4_define([lt_if_append_uniq],\n[m4_ifdef([$1],\n\t  [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],\n\t\t [lt_append([$1], [$2], [$3])$4],\n\t\t [$5])],\n\t  [lt_append([$1], [$2], [$3])$4])])\n\n\n# lt_dict_add(DICT, KEY, VALUE)\n# -----------------------------\nm4_define([lt_dict_add],\n[m4_define([$1($2)], [$3])])\n\n\n# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)\n# --------------------------------------------\nm4_define([lt_dict_add_subkey],\n[m4_define([$1($2:$3)], [$4])])\n\n\n# lt_dict_fetch(DICT, KEY, [SUBKEY])\n# ----------------------------------\nm4_define([lt_dict_fetch],\n[m4_ifval([$3],\n\tm4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),\n    m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])\n\n\n# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])\n# -----------------------------------------------------------------\nm4_define([lt_if_dict_fetch],\n[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],\n\t[$5],\n    [$6])])\n\n\n# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])\n# --------------------------------------------------------------\nm4_define([lt_dict_filter],\n[m4_if([$5], [], [],\n  [lt_join(m4_quote(m4_default([$4], [[, ]])),\n           lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),\n\t\t      [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/m4/ltversion.m4",
    "content": "# ltversion.m4 -- version numbers\t\t\t-*- Autoconf -*-\n#\n#   Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc.\n#   Written by Scott James Remnant, 2004\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# @configure_input@\n\n# serial 4179 ltversion.m4\n# This file is part of GNU Libtool\n\nm4_define([LT_PACKAGE_VERSION], [2.4.6])\nm4_define([LT_PACKAGE_REVISION], [2.4.6])\n\nAC_DEFUN([LTVERSION_VERSION],\n[macro_version='2.4.6'\nmacro_revision='2.4.6'\n_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])\n_LT_DECL(, macro_revision, 0)\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/m4/lt~obsolete.m4",
    "content": "# lt~obsolete.m4 -- aclocal satisfying obsolete definitions.    -*-Autoconf-*-\n#\n#   Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.\n#   Written by Scott James Remnant, 2004.\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# serial 5 lt~obsolete.m4\n\n# These exist entirely to fool aclocal when bootstrapping libtool.\n#\n# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)\n# which have later been changed to m4_define as they aren't part of the\n# exported API, or moved to Autoconf or Automake where they belong.\n#\n# The trouble is, aclocal is a bit thick.  It'll see the old AC_DEFUN\n# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us\n# using a macro with the same name in our local m4/libtool.m4 it'll\n# pull the old libtool.m4 in (it doesn't see our shiny new m4_define\n# and doesn't know about Autoconf macros at all.)\n#\n# So we provide this file, which has a silly filename so it's always\n# included after everything else.  This provides aclocal with the\n# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything\n# because those macros already exist, or will be overwritten later.\n# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. \n#\n# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.\n# Yes, that means every name once taken will need to remain here until\n# we give up compatibility with versions before 1.7, at which point\n# we need to keep only those names which we still refer to.\n\n# This is to help aclocal find these macros, as it can't see m4_define.\nAC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])\n\nm4_ifndef([AC_LIBTOOL_LINKER_OPTION],\t[AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])\nm4_ifndef([AC_PROG_EGREP],\t\t[AC_DEFUN([AC_PROG_EGREP])])\nm4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH],\t[AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])\nm4_ifndef([_LT_AC_SHELL_INIT],\t\t[AC_DEFUN([_LT_AC_SHELL_INIT])])\nm4_ifndef([_LT_AC_SYS_LIBPATH_AIX],\t[AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])\nm4_ifndef([_LT_PROG_LTMAIN],\t\t[AC_DEFUN([_LT_PROG_LTMAIN])])\nm4_ifndef([_LT_AC_TAGVAR],\t\t[AC_DEFUN([_LT_AC_TAGVAR])])\nm4_ifndef([AC_LTDL_ENABLE_INSTALL],\t[AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])\nm4_ifndef([AC_LTDL_PREOPEN],\t\t[AC_DEFUN([AC_LTDL_PREOPEN])])\nm4_ifndef([_LT_AC_SYS_COMPILER],\t[AC_DEFUN([_LT_AC_SYS_COMPILER])])\nm4_ifndef([_LT_AC_LOCK],\t\t[AC_DEFUN([_LT_AC_LOCK])])\nm4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE],\t[AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])\nm4_ifndef([_LT_AC_TRY_DLOPEN_SELF],\t[AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])\nm4_ifndef([AC_LIBTOOL_PROG_CC_C_O],\t[AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])\nm4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])\nm4_ifndef([AC_LIBTOOL_OBJDIR],\t\t[AC_DEFUN([AC_LIBTOOL_OBJDIR])])\nm4_ifndef([AC_LTDL_OBJDIR],\t\t[AC_DEFUN([AC_LTDL_OBJDIR])])\nm4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])\nm4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP],\t[AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])\nm4_ifndef([AC_PATH_MAGIC],\t\t[AC_DEFUN([AC_PATH_MAGIC])])\nm4_ifndef([AC_PROG_LD_GNU],\t\t[AC_DEFUN([AC_PROG_LD_GNU])])\nm4_ifndef([AC_PROG_LD_RELOAD_FLAG],\t[AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])\nm4_ifndef([AC_DEPLIBS_CHECK_METHOD],\t[AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])\nm4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])\nm4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])\nm4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])\nm4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS],\t[AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])\nm4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP],\t[AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])\nm4_ifndef([LT_AC_PROG_EGREP],\t\t[AC_DEFUN([LT_AC_PROG_EGREP])])\nm4_ifndef([LT_AC_PROG_SED],\t\t[AC_DEFUN([LT_AC_PROG_SED])])\nm4_ifndef([_LT_CC_BASENAME],\t\t[AC_DEFUN([_LT_CC_BASENAME])])\nm4_ifndef([_LT_COMPILER_BOILERPLATE],\t[AC_DEFUN([_LT_COMPILER_BOILERPLATE])])\nm4_ifndef([_LT_LINKER_BOILERPLATE],\t[AC_DEFUN([_LT_LINKER_BOILERPLATE])])\nm4_ifndef([_AC_PROG_LIBTOOL],\t\t[AC_DEFUN([_AC_PROG_LIBTOOL])])\nm4_ifndef([AC_LIBTOOL_SETUP],\t\t[AC_DEFUN([AC_LIBTOOL_SETUP])])\nm4_ifndef([_LT_AC_CHECK_DLFCN],\t\t[AC_DEFUN([_LT_AC_CHECK_DLFCN])])\nm4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER],\t[AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])\nm4_ifndef([_LT_AC_TAGCONFIG],\t\t[AC_DEFUN([_LT_AC_TAGCONFIG])])\nm4_ifndef([AC_DISABLE_FAST_INSTALL],\t[AC_DEFUN([AC_DISABLE_FAST_INSTALL])])\nm4_ifndef([_LT_AC_LANG_CXX],\t\t[AC_DEFUN([_LT_AC_LANG_CXX])])\nm4_ifndef([_LT_AC_LANG_F77],\t\t[AC_DEFUN([_LT_AC_LANG_F77])])\nm4_ifndef([_LT_AC_LANG_GCJ],\t\t[AC_DEFUN([_LT_AC_LANG_GCJ])])\nm4_ifndef([AC_LIBTOOL_LANG_C_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])\nm4_ifndef([_LT_AC_LANG_C_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_C_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])\nm4_ifndef([_LT_AC_LANG_CXX_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])\nm4_ifndef([_LT_AC_LANG_F77_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])\nm4_ifndef([_LT_AC_LANG_GCJ_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])\nm4_ifndef([_LT_AC_LANG_RC_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])\nm4_ifndef([AC_LIBTOOL_CONFIG],\t\t[AC_DEFUN([AC_LIBTOOL_CONFIG])])\nm4_ifndef([_LT_AC_FILE_LTDLL_C],\t[AC_DEFUN([_LT_AC_FILE_LTDLL_C])])\nm4_ifndef([_LT_REQUIRED_DARWIN_CHECKS],\t[AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])\nm4_ifndef([_LT_AC_PROG_CXXCPP],\t\t[AC_DEFUN([_LT_AC_PROG_CXXCPP])])\nm4_ifndef([_LT_PREPARE_SED_QUOTE_VARS],\t[AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])\nm4_ifndef([_LT_PROG_ECHO_BACKSLASH],\t[AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])\nm4_ifndef([_LT_PROG_F77],\t\t[AC_DEFUN([_LT_PROG_F77])])\nm4_ifndef([_LT_PROG_FC],\t\t[AC_DEFUN([_LT_PROG_FC])])\nm4_ifndef([_LT_PROG_CXX],\t\t[AC_DEFUN([_LT_PROG_CXX])])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/m4/relocatable-lib.m4",
    "content": "# relocatable-lib.m4 serial 6\ndnl Copyright (C) 2003, 2005-2007, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\ndnl Support for relocatable libraries.\nAC_DEFUN([gl_RELOCATABLE_LIBRARY],\n[\n  AC_REQUIRE([gl_RELOCATABLE_LIBRARY_BODY])\n])\nAC_DEFUN([gl_RELOCATABLE_LIBRARY_BODY],\n[\n  AC_REQUIRE([gl_RELOCATABLE_NOP])\n  dnl Easier to put this here once, instead of into the DEFS of each Makefile.\n  if test \"X$prefix\" = \"XNONE\"; then\n    reloc_final_prefix=\"$ac_default_prefix\"\n  else\n    reloc_final_prefix=\"$prefix\"\n  fi\n  AC_DEFINE_UNQUOTED([INSTALLPREFIX], [\"${reloc_final_prefix}\"],\n    [Define to the value of ${prefix}, as a string.])\n  if test $RELOCATABLE = yes; then\n    AC_DEFINE([ENABLE_RELOCATABLE], [1],\n      [Define to 1 if the package shall run at any location in the file\n       system.])\n  fi\n])\n\ndnl Support for relocatable packages for which it is a nop.\nAC_DEFUN([gl_RELOCATABLE_NOP],\n[\n  AC_MSG_CHECKING([whether to activate relocatable installation])\n  AC_ARG_ENABLE([relocatable],\n    [AS_HELP_STRING([--enable-relocatable],\n      [install a package that can be moved in the file system])],\n    [if test \"$enableval\" != no; then\n       RELOCATABLE=yes\n     else\n       RELOCATABLE=no\n     fi\n    ], RELOCATABLE=no)\n  AC_SUBST([RELOCATABLE])\n  AC_MSG_RESULT([$RELOCATABLE])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/m4/visibility.m4",
    "content": "# visibility.m4 serial 5 (gettext-0.18.2)\ndnl Copyright (C) 2005, 2008, 2010-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\ndnl Tests whether the compiler supports the command-line option\ndnl -fvisibility=hidden and the function and variable attributes\ndnl __attribute__((__visibility__(\"hidden\"))) and\ndnl __attribute__((__visibility__(\"default\"))).\ndnl Does *not* test for __visibility__(\"protected\") - which has tricky\ndnl semantics (see the 'vismain' test in glibc) and does not exist e.g. on\ndnl Mac OS X.\ndnl Does *not* test for __visibility__(\"internal\") - which has processor\ndnl dependent semantics.\ndnl Does *not* test for #pragma GCC visibility push(hidden) - which is\ndnl \"really only recommended for legacy code\".\ndnl Set the variable CFLAG_VISIBILITY.\ndnl Defines and sets the variable HAVE_VISIBILITY.\n\nAC_DEFUN([gl_VISIBILITY],\n[\n  AC_REQUIRE([AC_PROG_CC])\n  CFLAG_VISIBILITY=\n  HAVE_VISIBILITY=0\n  if test -n \"$GCC\"; then\n    dnl First, check whether -Werror can be added to the command line, or\n    dnl whether it leads to an error because of some other option that the\n    dnl user has put into $CC $CFLAGS $CPPFLAGS.\n    AC_MSG_CHECKING([whether the -Werror option is usable])\n    AC_CACHE_VAL([gl_cv_cc_vis_werror], [\n      gl_save_CFLAGS=\"$CFLAGS\"\n      CFLAGS=\"$CFLAGS -Werror\"\n      AC_COMPILE_IFELSE(\n        [AC_LANG_PROGRAM([[]], [[]])],\n        [gl_cv_cc_vis_werror=yes],\n        [gl_cv_cc_vis_werror=no])\n      CFLAGS=\"$gl_save_CFLAGS\"])\n    AC_MSG_RESULT([$gl_cv_cc_vis_werror])\n    dnl Now check whether visibility declarations are supported.\n    AC_MSG_CHECKING([for simple visibility declarations])\n    AC_CACHE_VAL([gl_cv_cc_visibility], [\n      gl_save_CFLAGS=\"$CFLAGS\"\n      CFLAGS=\"$CFLAGS -fvisibility=hidden\"\n      dnl We use the option -Werror and a function dummyfunc, because on some\n      dnl platforms (Cygwin 1.7) the use of -fvisibility triggers a warning\n      dnl \"visibility attribute not supported in this configuration; ignored\"\n      dnl at the first function definition in every compilation unit, and we\n      dnl don't want to use the option in this case.\n      if test $gl_cv_cc_vis_werror = yes; then\n        CFLAGS=\"$CFLAGS -Werror\"\n      fi\n      AC_COMPILE_IFELSE(\n        [AC_LANG_PROGRAM(\n           [[extern __attribute__((__visibility__(\"hidden\"))) int hiddenvar;\n             extern __attribute__((__visibility__(\"default\"))) int exportedvar;\n             extern __attribute__((__visibility__(\"hidden\"))) int hiddenfunc (void);\n             extern __attribute__((__visibility__(\"default\"))) int exportedfunc (void);\n             void dummyfunc (void) {}\n           ]],\n           [[]])],\n        [gl_cv_cc_visibility=yes],\n        [gl_cv_cc_visibility=no])\n      CFLAGS=\"$gl_save_CFLAGS\"])\n    AC_MSG_RESULT([$gl_cv_cc_visibility])\n    if test $gl_cv_cc_visibility = yes; then\n      CFLAG_VISIBILITY=\"-fvisibility=hidden\"\n      HAVE_VISIBILITY=1\n    fi\n  fi\n  AC_SUBST([CFLAG_VISIBILITY])\n  AC_SUBST([HAVE_VISIBILITY])\n  AC_DEFINE_UNQUOTED([HAVE_VISIBILITY], [$HAVE_VISIBILITY],\n    [Define to 1 or 0, depending whether the compiler supports simple visibility declarations.])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/README",
    "content": "This directory contains tools for maintaining the config.charset file.\n\nThe main script is \"all-charsets\". Before using it, you must configure\nthis package. For all installed locales, it prints\n  - the result of the command \"locale charmap\",\n  - the result of \"nl_langinfo (CODESET)\",\n  - the result of \"locale_charset ()\".\n\nIt uses the following auxiliary scripts and programs:\n  - all-locales\n    Prints all usable locales in the system, one per line.\n  - locale_charmap\n    Executes \"locale charmap\".\n  - locale_codeset.c\n    Prints nl_langinfo (CODESET).\n  - locale_charset.c\n    Prints locale_charset().\n\nA second main script is \"all-charsets-X11\". It also prints the X11\nencoding name. Before using it, you must tweak the X11 paths needed\nfor compiling locale_x11encoding (a simple X11 program), and let your\nDISPLAY environment variable point to a running X11 screen.\n\nThe other files are test results from various operating systems.\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/aix-3.2.5",
    "content": "locale_charset.c:\n../../lib/localcharset.c:\nlocale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nEn_US.IBM-850    IBM-850           IBM-850           CP850             \nFr_FR.IBM-850    IBM-850           IBM-850           CP850             \nen_US.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_FR.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/aix-4.1.5",
    "content": "locale_charset.c:\n../../lib/localcharset.c:\nlocale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nAr_AA            IBM-1046          IBM-1046          CP1046            \nAr_AA.IBM-1046   IBM-1046          IBM-1046          CP1046            \nC                ISO8859-1         ISO8859-1         ISO-8859-1        \nCa_ES            IBM-850           IBM-850           CP850             \nCa_ES.IBM-850    IBM-850           IBM-850           CP850             \nDa_DK            IBM-850           IBM-850           CP850             \nDa_DK.IBM-850    IBM-850           IBM-850           CP850             \nDe_CH            IBM-850           IBM-850           CP850             \nDe_CH.IBM-850    IBM-850           IBM-850           CP850             \nDe_DE            IBM-850           IBM-850           CP850             \nDe_DE.IBM-850    IBM-850           IBM-850           CP850             \nEn_GB            IBM-850           IBM-850           CP850             \nEn_GB.IBM-850    IBM-850           IBM-850           CP850             \nEn_US            IBM-850           IBM-850           CP850             \nEn_US.IBM-850    IBM-850           IBM-850           CP850             \nEs_ES            IBM-850           IBM-850           CP850             \nEs_ES.IBM-850    IBM-850           IBM-850           CP850             \nFi_FI            IBM-850           IBM-850           CP850             \nFi_FI.IBM-850    IBM-850           IBM-850           CP850             \nFr_BE            IBM-850           IBM-850           CP850             \nFr_BE.IBM-850    IBM-850           IBM-850           CP850             \nFr_CA            IBM-850           IBM-850           CP850             \nFr_CA.IBM-850    IBM-850           IBM-850           CP850             \nFr_CH            IBM-850           IBM-850           CP850             \nFr_CH.IBM-850    IBM-850           IBM-850           CP850             \nFr_FR            IBM-850           IBM-850           CP850             \nFr_FR.IBM-850    IBM-850           IBM-850           CP850             \nIs_IS            IBM-850           IBM-850           CP850             \nIs_IS.IBM-850    IBM-850           IBM-850           CP850             \nIt_IT            IBM-850           IBM-850           CP850             \nIt_IT.IBM-850    IBM-850           IBM-850           CP850             \nIw_IL            IBM-856           IBM-856           CP856             \nIw_IL.IBM-856    IBM-856           IBM-856           CP856             \nJa_JP            IBM-932           IBM-932           CP932             \nJa_JP.IBM-932    IBM-932           IBM-932           CP932             \nNl_BE            IBM-850           IBM-850           CP850             \nNl_BE.IBM-850    IBM-850           IBM-850           CP850             \nNl_NL            IBM-850           IBM-850           CP850             \nNl_NL.IBM-850    IBM-850           IBM-850           CP850             \nNo_NO            IBM-850           IBM-850           CP850             \nNo_NO.IBM-850    IBM-850           IBM-850           CP850             \nPOSIX            ISO8859-1         ISO8859-1         ISO-8859-1        \nPt_PT            IBM-850           IBM-850           CP850             \nPt_PT.IBM-850    IBM-850           IBM-850           CP850             \nSv_SE            IBM-850           IBM-850           CP850             \nSv_SE.IBM-850    IBM-850           IBM-850           CP850             \nZH_CN            UTF-8             UTF-8             UTF-8             \nZH_CN.UTF-8      UTF-8             UTF-8             UTF-8             \nar_AA            ISO8859-6         ISO8859-6         ISO-8859-6        \nar_AA.ISO8859-6  ISO8859-6         ISO8859-6         ISO-8859-6        \nbg_BG            ISO8859-5         ISO8859-5         ISO-8859-5        \nbg_BG.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \ncs_CZ            ISO8859-2         ISO8859-2         ISO-8859-2        \ncs_CZ.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nfr_FR            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_FR.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nhr_HR            ISO8859-2         ISO8859-2         ISO-8859-2        \nhr_HR.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nhu_HU            ISO8859-2         ISO8859-2         ISO-8859-2        \nhu_HU.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \niw_IL            ISO8859-8         ISO8859-8         ISO-8859-8        \niw_IL.ISO8859-8  ISO8859-8         ISO8859-8         ISO-8859-8        \nja_JP.IBM-eucJP  IBM-eucJP         IBM-eucJP         EUC-JP            \nko_KR.IBM-eucKR  IBM-eucKR         IBM-eucKR         EUC-KR            \nmk_MK            ISO8859-5         ISO8859-5         ISO-8859-5        \nmk_MK.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \npl_PL            ISO8859-2         ISO8859-2         ISO-8859-2        \npl_PL.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nro_RO            ISO8859-2         ISO8859-2         ISO-8859-2        \nro_RO.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nru_RU            ISO8859-5         ISO8859-5         ISO-8859-5        \nru_RU.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nsh_SP            ISO8859-2         ISO8859-2         ISO-8859-2        \nsh_SP.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsk_SK            ISO8859-2         ISO8859-2         ISO-8859-2        \nsk_SK.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsl_SI            ISO8859-2         ISO8859-2         ISO-8859-2        \nsl_SI.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsr_SP            ISO8859-5         ISO8859-5         ISO-8859-5        \nsr_SP.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nzh_CN.IBM-eucCN  IBM-eucCN         IBM-eucCN         EUC-CN            \nzh_TW.IBM-eucTW  IBM-eucTW         IBM-eucTW         EUC-TW            \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/aix-4.2.0",
    "content": "locale_charset.c:\n../../lib/localcharset.c:\nlocale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nAr_AA            IBM-1046          IBM-1046          CP1046            \nAr_AA.IBM-1046   IBM-1046          IBM-1046          CP1046            \nC                ISO8859-1         ISO8859-1         ISO-8859-1        \nCa_ES            IBM-850           IBM-850           CP850             \nCa_ES.IBM-850    IBM-850           IBM-850           CP850             \nDa_DK            IBM-850           IBM-850           CP850             \nDa_DK.IBM-850    IBM-850           IBM-850           CP850             \nDe_CH            IBM-850           IBM-850           CP850             \nDe_CH.IBM-850    IBM-850           IBM-850           CP850             \nDe_DE            IBM-850           IBM-850           CP850             \nDe_DE.IBM-850    IBM-850           IBM-850           CP850             \nET_EE            UTF-8             UTF-8             UTF-8             \nET_EE.UTF-8      UTF-8             UTF-8             UTF-8             \nEn_GB            IBM-850           IBM-850           CP850             \nEn_GB.IBM-850    IBM-850           IBM-850           CP850             \nEn_US            IBM-850           IBM-850           CP850             \nEn_US.IBM-850    IBM-850           IBM-850           CP850             \nEs_ES            IBM-850           IBM-850           CP850             \nEs_ES.IBM-850    IBM-850           IBM-850           CP850             \nEt_EE            IBM-922           IBM-922           CP922             \nEt_EE.IBM-922    IBM-922           IBM-922           CP922             \nFi_FI            IBM-850           IBM-850           CP850             \nFi_FI.IBM-850    IBM-850           IBM-850           CP850             \nFr_BE            IBM-850           IBM-850           CP850             \nFr_BE.IBM-850    IBM-850           IBM-850           CP850             \nFr_CA            IBM-850           IBM-850           CP850             \nFr_CA.IBM-850    IBM-850           IBM-850           CP850             \nFr_CH            IBM-850           IBM-850           CP850             \nFr_CH.IBM-850    IBM-850           IBM-850           CP850             \nFr_FR            IBM-850           IBM-850           CP850             \nFr_FR.IBM-850    IBM-850           IBM-850           CP850             \nIs_IS            IBM-850           IBM-850           CP850             \nIs_IS.IBM-850    IBM-850           IBM-850           CP850             \nIt_IT            IBM-850           IBM-850           CP850             \nIt_IT.IBM-850    IBM-850           IBM-850           CP850             \nIw_IL            IBM-856           IBM-856           CP856             \nIw_IL.IBM-856    IBM-856           IBM-856           CP856             \nJa_JP            IBM-932           IBM-932           CP932             \nJa_JP.IBM-932    IBM-932           IBM-932           CP932             \nJp_JP            IBM-932           IBM-932           CP932             \nJp_JP.pc932      IBM-932           IBM-932           CP932             \nLT_LT            UTF-8             UTF-8             UTF-8             \nLT_LT.UTF-8      UTF-8             UTF-8             UTF-8             \nLV_LV            UTF-8             UTF-8             UTF-8             \nLV_LV.UTF-8      UTF-8             UTF-8             UTF-8             \nLt_LT            IBM-921           IBM-921           ISO-8859-13       \nLt_LT.IBM-921    IBM-921           IBM-921           ISO-8859-13       \nLv_LV            IBM-921           IBM-921           ISO-8859-13       \nLv_LV.IBM-921    IBM-921           IBM-921           ISO-8859-13       \nNl_BE            IBM-850           IBM-850           CP850             \nNl_BE.IBM-850    IBM-850           IBM-850           CP850             \nNl_NL            IBM-850           IBM-850           CP850             \nNl_NL.IBM-850    IBM-850           IBM-850           CP850             \nNo_NO            IBM-850           IBM-850           CP850             \nNo_NO.IBM-850    IBM-850           IBM-850           CP850             \nPOSIX            ISO8859-1         ISO8859-1         ISO-8859-1        \nPt_PT            IBM-850           IBM-850           CP850             \nPt_PT.IBM-850    IBM-850           IBM-850           CP850             \nSv_SE            IBM-850           IBM-850           CP850             \nSv_SE.IBM-850    IBM-850           IBM-850           CP850             \nZH_CN            UTF-8             UTF-8             UTF-8             \nZH_CN.UTF-8      UTF-8             UTF-8             UTF-8             \nZh_TW            big5              big5              BIG5              \nZh_TW.big5       big5              big5              BIG5              \nar_AA            ISO8859-6         ISO8859-6         ISO-8859-6        \nar_AA.ISO8859-6  ISO8859-6         ISO8859-6         ISO-8859-6        \nbg_BG            ISO8859-5         ISO8859-5         ISO-8859-5        \nbg_BG.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nca_ES            ISO8859-1         ISO8859-1         ISO-8859-1        \nca_ES.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \ncs_CZ            ISO8859-2         ISO8859-2         ISO-8859-2        \ncs_CZ.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nda_DK            ISO8859-1         ISO8859-1         ISO-8859-1        \nda_DK.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_DE            ISO8859-1         ISO8859-1         ISO-8859-1        \nde_DE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nel_GR            ISO8859-7         ISO8859-7         ISO-8859-7        \nel_GR.ISO8859-7  ISO8859-7         ISO8859-7         ISO-8859-7        \nen_GB            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_GB.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nes_ES            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_ES.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfi_FI            ISO8859-1         ISO8859-1         ISO-8859-1        \nfi_FI.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_FR            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_FR.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nhr_HR            ISO8859-2         ISO8859-2         ISO-8859-2        \nhr_HR.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nhu_HU            ISO8859-2         ISO8859-2         ISO-8859-2        \nhu_HU.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nis_IS            ISO8859-1         ISO8859-1         ISO-8859-1        \nis_IS.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nit_IT            ISO8859-1         ISO8859-1         ISO-8859-1        \nit_IT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \niw_IL            ISO8859-8         ISO8859-8         ISO-8859-8        \niw_IL.ISO8859-8  ISO8859-8         ISO8859-8         ISO-8859-8        \nja_JP            IBM-eucJP         IBM-eucJP         EUC-JP            \nja_JP.IBM-eucJP  IBM-eucJP         IBM-eucJP         EUC-JP            \nko_KR            IBM-eucKR         IBM-eucKR         EUC-KR            \nko_KR.IBM-eucKR  IBM-eucKR         IBM-eucKR         EUC-KR            \nmk_MK            ISO8859-5         ISO8859-5         ISO-8859-5        \nmk_MK.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nnl_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_NL            ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_NL.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nno_NO            ISO8859-1         ISO8859-1         ISO-8859-1        \nno_NO.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \npl_PL            ISO8859-2         ISO8859-2         ISO-8859-2        \npl_PL.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \npt_BR            ISO8859-1         ISO8859-1         ISO-8859-1        \npt_BR.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \npt_PT            ISO8859-1         ISO8859-1         ISO-8859-1        \npt_PT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nro_RO            ISO8859-2         ISO8859-2         ISO-8859-2        \nro_RO.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nru_RU            ISO8859-5         ISO8859-5         ISO-8859-5        \nru_RU.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nsh_SP            ISO8859-2         ISO8859-2         ISO-8859-2        \nsh_SP.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsk_SK            ISO8859-2         ISO8859-2         ISO-8859-2        \nsk_SK.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsl_SI            ISO8859-2         ISO8859-2         ISO-8859-2        \nsl_SI.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsq_AL            ISO8859-1         ISO8859-1         ISO-8859-1        \nsq_AL.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nsr_SP            ISO8859-5         ISO8859-5         ISO-8859-5        \nsr_SP.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nsv_SE            ISO8859-1         ISO8859-1         ISO-8859-1        \nsv_SE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \ntr_TR            ISO8859-9         ISO8859-9         ISO-8859-9        \ntr_TR.ISO8859-9  ISO8859-9         ISO8859-9         ISO-8859-9        \nzh_CN            IBM-eucCN         IBM-eucCN         EUC-CN            \nzh_CN.IBM-eucCN  IBM-eucCN         IBM-eucCN         EUC-CN            \nzh_TW            IBM-eucTW         IBM-eucTW         EUC-TW            \nzh_TW.IBM-eucTW  IBM-eucTW         IBM-eucTW         EUC-TW            \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/aix-4.3.2",
    "content": "locale_charset.c:\n../../lib/localcharset.c:\nlocale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nAR_AA            UTF-8             UTF-8             UTF-8             \nAR_AA.UTF-8      UTF-8             UTF-8             UTF-8             \nAr_AA            IBM-1046          IBM-1046          CP1046            \nAr_AA.IBM-1046   IBM-1046          IBM-1046          CP1046            \nBE_BY            UTF-8             UTF-8             UTF-8             \nBE_BY.UTF-8      UTF-8             UTF-8             UTF-8             \nBG_BG            UTF-8             UTF-8             UTF-8             \nBG_BG.UTF-8      UTF-8             UTF-8             UTF-8             \nC                ISO8859-1         ISO8859-1         ISO-8859-1        \nCA_ES            UTF-8             UTF-8             UTF-8             \nCA_ES.UTF-8      UTF-8             UTF-8             UTF-8             \nCA_ES.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nCA_ES@euro       UTF-8             UTF-8             UTF-8             \nCS_CZ            UTF-8             UTF-8             UTF-8             \nCS_CZ.UTF-8      UTF-8             UTF-8             UTF-8             \nCa_ES            IBM-850           IBM-850           CP850             \nCa_ES.IBM-850    IBM-850           IBM-850           CP850             \nDA_DK            UTF-8             UTF-8             UTF-8             \nDA_DK.UTF-8      UTF-8             UTF-8             UTF-8             \nDE_CH            UTF-8             UTF-8             UTF-8             \nDE_CH.UTF-8      UTF-8             UTF-8             UTF-8             \nDE_DE            UTF-8             UTF-8             UTF-8             \nDE_DE.UTF-8      UTF-8             UTF-8             UTF-8             \nDE_DE.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nDE_DE@euro       UTF-8             UTF-8             UTF-8             \nDa_DK            IBM-850           IBM-850           CP850             \nDa_DK.IBM-850    IBM-850           IBM-850           CP850             \nDe_CH            IBM-850           IBM-850           CP850             \nDe_CH.IBM-850    IBM-850           IBM-850           CP850             \nDe_DE            IBM-850           IBM-850           CP850             \nDe_DE.IBM-850    IBM-850           IBM-850           CP850             \nEL_GR            UTF-8             UTF-8             UTF-8             \nEL_GR.UTF-8      UTF-8             UTF-8             UTF-8             \nEN_AU            UTF-8             UTF-8             UTF-8             \nEN_AU.UTF-8      UTF-8             UTF-8             UTF-8             \nEN_BE            UTF-8             UTF-8             UTF-8             \nEN_BE.UTF-8      UTF-8             UTF-8             UTF-8             \nEN_BE.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nEN_BE@euro       UTF-8             UTF-8             UTF-8             \nEN_GB            UTF-8             UTF-8             UTF-8             \nEN_GB.UTF-8      UTF-8             UTF-8             UTF-8             \nEN_US            UTF-8             UTF-8             UTF-8             \nEN_US.UTF-8      UTF-8             UTF-8             UTF-8             \nEN_ZA            UTF-8             UTF-8             UTF-8             \nEN_ZA.UTF-8      UTF-8             UTF-8             UTF-8             \nES_ES            UTF-8             UTF-8             UTF-8             \nES_ES.UTF-8      UTF-8             UTF-8             UTF-8             \nES_ES.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nES_ES@euro       UTF-8             UTF-8             UTF-8             \nET_EE            UTF-8             UTF-8             UTF-8             \nET_EE.UTF-8      UTF-8             UTF-8             UTF-8             \nEn_GB            IBM-850           IBM-850           CP850             \nEn_GB.IBM-850    IBM-850           IBM-850           CP850             \nEn_US            IBM-850           IBM-850           CP850             \nEn_US.IBM-850    IBM-850           IBM-850           CP850             \nEs_ES            IBM-850           IBM-850           CP850             \nEs_ES.IBM-850    IBM-850           IBM-850           CP850             \nEt_EE            IBM-922           IBM-922           CP922             \nEt_EE.IBM-922    IBM-922           IBM-922           CP922             \nFI_FI            UTF-8             UTF-8             UTF-8             \nFI_FI.UTF-8      UTF-8             UTF-8             UTF-8             \nFI_FI.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nFI_FI@euro       UTF-8             UTF-8             UTF-8             \nFR_BE            UTF-8             UTF-8             UTF-8             \nFR_BE.UTF-8      UTF-8             UTF-8             UTF-8             \nFR_BE.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nFR_BE@euro       UTF-8             UTF-8             UTF-8             \nFR_CA            UTF-8             UTF-8             UTF-8             \nFR_CA.UTF-8      UTF-8             UTF-8             UTF-8             \nFR_CH            UTF-8             UTF-8             UTF-8             \nFR_CH.UTF-8      UTF-8             UTF-8             UTF-8             \nFR_FR            UTF-8             UTF-8             UTF-8             \nFR_FR.UTF-8      UTF-8             UTF-8             UTF-8             \nFR_FR.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nFR_FR@euro       UTF-8             UTF-8             UTF-8             \nFi_FI            IBM-850           IBM-850           CP850             \nFi_FI.IBM-850    IBM-850           IBM-850           CP850             \nFr_BE            IBM-850           IBM-850           CP850             \nFr_BE.IBM-850    IBM-850           IBM-850           CP850             \nFr_CA            IBM-850           IBM-850           CP850             \nFr_CA.IBM-850    IBM-850           IBM-850           CP850             \nFr_CH            IBM-850           IBM-850           CP850             \nFr_CH.IBM-850    IBM-850           IBM-850           CP850             \nFr_FR            IBM-850           IBM-850           CP850             \nFr_FR.IBM-850    IBM-850           IBM-850           CP850             \nHE_IL            UTF-8             UTF-8             UTF-8             \nHE_IL.UTF-8      UTF-8             UTF-8             UTF-8             \nHR_HR            UTF-8             UTF-8             UTF-8             \nHR_HR.UTF-8      UTF-8             UTF-8             UTF-8             \nHU_HU            UTF-8             UTF-8             UTF-8             \nHU_HU.UTF-8      UTF-8             UTF-8             UTF-8             \nIS_IS            UTF-8             UTF-8             UTF-8             \nIS_IS.UTF-8      UTF-8             UTF-8             UTF-8             \nIT_CH            UTF-8             UTF-8             UTF-8             \nIT_CH.UTF-8      UTF-8             UTF-8             UTF-8             \nIT_IT            UTF-8             UTF-8             UTF-8             \nIT_IT.UTF-8      UTF-8             UTF-8             UTF-8             \nIT_IT.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nIT_IT@euro       UTF-8             UTF-8             UTF-8             \nIs_IS            IBM-850           IBM-850           CP850             \nIs_IS.IBM-850    IBM-850           IBM-850           CP850             \nIt_IT            IBM-850           IBM-850           CP850             \nIt_IT.IBM-850    IBM-850           IBM-850           CP850             \nIw_IL            IBM-856           IBM-856           CP856             \nIw_IL.IBM-856    IBM-856           IBM-856           CP856             \nJA_JP            UTF-8             UTF-8             UTF-8             \nJA_JP.UTF-8      UTF-8             UTF-8             UTF-8             \nJa_JP            IBM-943           IBM-943           CP943             \nJa_JP.IBM-932    IBM-932           IBM-932           CP932             \nJa_JP.IBM-943    IBM-943           IBM-943           CP943             \nJp_JP            IBM-932           IBM-932           CP932             \nJp_JP.pc932      IBM-932           IBM-932           CP932             \nKO_KR            UTF-8             UTF-8             UTF-8             \nKO_KR.UTF-8      UTF-8             UTF-8             UTF-8             \nLT_LT            UTF-8             UTF-8             UTF-8             \nLT_LT.UTF-8      UTF-8             UTF-8             UTF-8             \nLV_LV            UTF-8             UTF-8             UTF-8             \nLV_LV.UTF-8      UTF-8             UTF-8             UTF-8             \nLt_LT            IBM-921           IBM-921           ISO-8859-13       \nLt_LT.IBM-921    IBM-921           IBM-921           ISO-8859-13       \nLv_LV            IBM-921           IBM-921           ISO-8859-13       \nLv_LV.IBM-921    IBM-921           IBM-921           ISO-8859-13       \nMK_MK            UTF-8             UTF-8             UTF-8             \nMK_MK.UTF-8      UTF-8             UTF-8             UTF-8             \nNL_BE            UTF-8             UTF-8             UTF-8             \nNL_BE.UTF-8      UTF-8             UTF-8             UTF-8             \nNL_BE.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nNL_BE@euro       UTF-8             UTF-8             UTF-8             \nNL_NL            UTF-8             UTF-8             UTF-8             \nNL_NL.UTF-8      UTF-8             UTF-8             UTF-8             \nNL_NL.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nNL_NL@euro       UTF-8             UTF-8             UTF-8             \nNO_NO            UTF-8             UTF-8             UTF-8             \nNO_NO.UTF-8      UTF-8             UTF-8             UTF-8             \nNl_BE            IBM-850           IBM-850           CP850             \nNl_BE.IBM-850    IBM-850           IBM-850           CP850             \nNl_NL            IBM-850           IBM-850           CP850             \nNl_NL.IBM-850    IBM-850           IBM-850           CP850             \nNo_NO            IBM-850           IBM-850           CP850             \nNo_NO.IBM-850    IBM-850           IBM-850           CP850             \nPL_PL            UTF-8             UTF-8             UTF-8             \nPL_PL.UTF-8      UTF-8             UTF-8             UTF-8             \nPOSIX            ISO8859-1         ISO8859-1         ISO-8859-1        \nPT_BR            UTF-8             UTF-8             UTF-8             \nPT_BR.UTF-8      UTF-8             UTF-8             UTF-8             \nPT_PT            UTF-8             UTF-8             UTF-8             \nPT_PT.UTF-8      UTF-8             UTF-8             UTF-8             \nPT_PT.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nPT_PT@euro       UTF-8             UTF-8             UTF-8             \nPt_PT            IBM-850           IBM-850           CP850             \nPt_PT.IBM-850    IBM-850           IBM-850           CP850             \nRO_RO            UTF-8             UTF-8             UTF-8             \nRO_RO.UTF-8      UTF-8             UTF-8             UTF-8             \nRU_RU            UTF-8             UTF-8             UTF-8             \nRU_RU.UTF-8      UTF-8             UTF-8             UTF-8             \nSH_SP            UTF-8             UTF-8             UTF-8             \nSH_SP.UTF-8      UTF-8             UTF-8             UTF-8             \nSK_SK            UTF-8             UTF-8             UTF-8             \nSK_SK.UTF-8      UTF-8             UTF-8             UTF-8             \nSL_SI            UTF-8             UTF-8             UTF-8             \nSL_SI.UTF-8      UTF-8             UTF-8             UTF-8             \nSQ_AL            UTF-8             UTF-8             UTF-8             \nSQ_AL.UTF-8      UTF-8             UTF-8             UTF-8             \nSR_SP            UTF-8             UTF-8             UTF-8             \nSR_SP.UTF-8      UTF-8             UTF-8             UTF-8             \nSV_SE            UTF-8             UTF-8             UTF-8             \nSV_SE.UTF-8      UTF-8             UTF-8             UTF-8             \nSv_SE            IBM-850           IBM-850           CP850             \nSv_SE.IBM-850    IBM-850           IBM-850           CP850             \nTH_TH            UTF-8             UTF-8             UTF-8             \nTH_TH.UTF-8      UTF-8             UTF-8             UTF-8             \nTR_TR            UTF-8             UTF-8             UTF-8             \nTR_TR.UTF-8      UTF-8             UTF-8             UTF-8             \nUK_UA            UTF-8             UTF-8             UTF-8             \nUK_UA.UTF-8      UTF-8             UTF-8             UTF-8             \nUk_UA            IBM-1124          IBM-1124          CP1124            \nUk_UA.IBM-1124   IBM-1124          IBM-1124          CP1124            \nVI_VN            UTF-8             UTF-8             UTF-8             \nVI_VN.UTF-8      UTF-8             UTF-8             UTF-8             \nVi_VN            IBM-1129          IBM-1129          CP1129            \nVi_VN.IBM-1129   IBM-1129          IBM-1129          CP1129            \nZH_CN            UTF-8             UTF-8             UTF-8             \nZH_CN.UTF-8      UTF-8             UTF-8             UTF-8             \nZH_TW            UTF-8             UTF-8             UTF-8             \nZH_TW.UTF-8      UTF-8             UTF-8             UTF-8             \nZh_CN            GBK               GBK               GBK               \nZh_CN.GBK        GBK               GBK               GBK               \nZh_TW            big5              big5              BIG5              \nZh_TW.big5       big5              big5              BIG5              \nar_AA            ISO8859-6         ISO8859-6         ISO-8859-6        \nar_AA.ISO8859-6  ISO8859-6         ISO8859-6         ISO-8859-6        \nbe_BY            ISO8859-5         ISO8859-5         ISO-8859-5        \nbe_BY.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nbg_BG            ISO8859-5         ISO8859-5         ISO-8859-5        \nbg_BG.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nca_ES            ISO8859-1         ISO8859-1         ISO-8859-1        \nca_ES.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nca_ES.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nca_ES.IBM-1252   IBM-1252          IBM-1252          CP1252            \nca_ES.IBM-1252@euro  IBM-1252          IBM-1252          CP1252            \nca_ES.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \ncs_CZ            ISO8859-2         ISO8859-2         ISO-8859-2        \ncs_CZ.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nda_DK            ISO8859-1         ISO8859-1         ISO-8859-1        \nda_DK.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nda_DK.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nde_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_DE            ISO8859-1         ISO8859-1         ISO-8859-1        \nde_DE.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nde_DE.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nde_DE.IBM-1252   IBM-1252          IBM-1252          CP1252            \nde_DE.IBM-1252@euro  IBM-1252          IBM-1252          CP1252            \nde_DE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nel_GR            ISO8859-7         ISO8859-7         ISO-8859-7        \nel_GR.ISO8859-7  ISO8859-7         ISO8859-7         ISO-8859-7        \nen_AU            ISO8859-15        ISO8859-15        ISO-8859-15       \nen_AU.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nen_BE            ISO8859-15        ISO8859-15        ISO-8859-15       \nen_BE.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nen_BE.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_GB            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_GB.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nen_GB.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_GB.IBM-1252   IBM-1252          IBM-1252          CP1252            \nen_GB.IBM-1252@euro  IBM-1252          IBM-1252          CP1252            \nen_GB.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nen_US.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_ZA            ISO8859-15        ISO8859-15        ISO-8859-15       \nen_ZA.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nes_ES            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_ES.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nes_ES.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nes_ES.IBM-1252   IBM-1252          IBM-1252          CP1252            \nes_ES.IBM-1252@euro  IBM-1252          IBM-1252          CP1252            \nes_ES.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfi_FI            ISO8859-1         ISO8859-1         ISO-8859-1        \nfi_FI.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nfi_FI.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nfi_FI.IBM-1252   IBM-1252          IBM-1252          CP1252            \nfi_FI.IBM-1252@euro  IBM-1252          IBM-1252          CP1252            \nfi_FI.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_BE.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_BE.IBM-1252   IBM-1252          IBM-1252          CP1252            \nfr_BE.IBM-1252@euro  IBM-1252          IBM-1252          CP1252            \nfr_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_CA.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_FR            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_FR.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_FR.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_FR.IBM-1252   IBM-1252          IBM-1252          CP1252            \nfr_FR.IBM-1252@euro  IBM-1252          IBM-1252          CP1252            \nfr_FR.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nhr_HR            ISO8859-2         ISO8859-2         ISO-8859-2        \nhr_HR.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nhu_HU            ISO8859-2         ISO8859-2         ISO-8859-2        \nhu_HU.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nis_IS            ISO8859-1         ISO8859-1         ISO-8859-1        \nis_IS.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nis_IS.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nit_CH            ISO8859-15        ISO8859-15        ISO-8859-15       \nit_CH.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nit_IT            ISO8859-1         ISO8859-1         ISO-8859-1        \nit_IT.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nit_IT.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nit_IT.IBM-1252   IBM-1252          IBM-1252          CP1252            \nit_IT.IBM-1252@euro  IBM-1252          IBM-1252          CP1252            \nit_IT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \niw_IL            ISO8859-8         ISO8859-8         ISO-8859-8        \niw_IL.ISO8859-8  ISO8859-8         ISO8859-8         ISO-8859-8        \nja_JP            IBM-eucJP         IBM-eucJP         EUC-JP            \nja_JP.IBM-eucJP  IBM-eucJP         IBM-eucJP         EUC-JP            \nko_KR            IBM-eucKR         IBM-eucKR         EUC-KR            \nko_KR.IBM-eucKR  IBM-eucKR         IBM-eucKR         EUC-KR            \nmk_MK            ISO8859-5         ISO8859-5         ISO-8859-5        \nmk_MK.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nnl_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_BE.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nnl_BE.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nnl_BE.IBM-1252   IBM-1252          IBM-1252          CP1252            \nnl_BE.IBM-1252@euro  IBM-1252          IBM-1252          CP1252            \nnl_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_NL            ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_NL.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nnl_NL.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nnl_NL.IBM-1252   IBM-1252          IBM-1252          CP1252            \nnl_NL.IBM-1252@euro  IBM-1252          IBM-1252          CP1252            \nnl_NL.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nno_NO            ISO8859-1         ISO8859-1         ISO-8859-1        \nno_NO.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nno_NO.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \npl_PL            ISO8859-2         ISO8859-2         ISO-8859-2        \npl_PL.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \npt_BR            ISO8859-1         ISO8859-1         ISO-8859-1        \npt_BR.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \npt_BR.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \npt_PT            ISO8859-1         ISO8859-1         ISO-8859-1        \npt_PT.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \npt_PT.8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \npt_PT.IBM-1252   IBM-1252          IBM-1252          CP1252            \npt_PT.IBM-1252@euro  IBM-1252          IBM-1252          CP1252            \npt_PT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nro_RO            ISO8859-2         ISO8859-2         ISO-8859-2        \nro_RO.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nru_RU            ISO8859-5         ISO8859-5         ISO-8859-5        \nru_RU.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nsh_SP            ISO8859-2         ISO8859-2         ISO-8859-2        \nsh_SP.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsk_SK            ISO8859-2         ISO8859-2         ISO-8859-2        \nsk_SK.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsl_SI            ISO8859-2         ISO8859-2         ISO-8859-2        \nsl_SI.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsq_AL            ISO8859-1         ISO8859-1         ISO-8859-1        \nsq_AL.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nsq_AL.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nsr_SP            ISO8859-5         ISO8859-5         ISO-8859-5        \nsr_SP.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nsv_SE            ISO8859-1         ISO8859-1         ISO-8859-1        \nsv_SE.8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nsv_SE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nth_TH            TIS-620           TIS-620           TIS-620           \nth_TH.TIS-620    TIS-620           TIS-620           TIS-620           \ntr_TR            ISO8859-9         ISO8859-9         ISO-8859-9        \ntr_TR.ISO8859-9  ISO8859-9         ISO8859-9         ISO-8859-9        \nzh_CN            IBM-eucCN         IBM-eucCN         EUC-CN            \nzh_CN.IBM-eucCN  IBM-eucCN         IBM-eucCN         EUC-CN            \nzh_TW            IBM-eucTW         IBM-eucTW         EUC-TW            \nzh_TW.IBM-eucTW  IBM-eucTW         IBM-eucTW         EUC-TW            \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/all-charsets",
    "content": "#! /bin/sh\n\n# Prints a table of the charsets (system dependent name and portable name)\n# for all locales.\n\n${CC-cc} -o locale_codeset locale_codeset.c\n${CC-cc} -o locale_charset -I../include locale_charset.c \\\n    -DHAVE_CONFIG_H -I.. -DLIBDIR='\"'`cd ../lib && pwd`'\"' \\\n    ../lib/localcharset.c\n\nprintf '%-15s%-17s%-17s %-17s\\n\\n' \\\n       \"locale name\" \"locale charmap\" \"nl_langinfo(CODESET)\" \"locale_charset()\"\nfor lc in `./all-locales | sort | uniq`\ndo\n  charmap=`LC_ALL=$lc ./locale_charmap 2>/dev/null || echo '<error>'`\n  codeset=`LC_ALL=$lc ./locale_codeset 2>/dev/null || echo '<error>'`\n  charset=`LC_ALL=$lc ./locale_charset 2>/dev/null || echo '<error>'`\n  case \"$charset\" in\n    ASCII | ANSI_X3.4-1968 | \\\n    ISO-8859-1 | ISO-8859-2 | ISO-8859-3 | ISO-8859-4 | ISO-8859-5 | ISO-8859-6 | \\\n    ISO-8859-7 | ISO-8859-8 | ISO-8859-9 | ISO-8859-13 | ISO-8859-14 | ISO-8859-15 | \\\n    KOI8-R | KOI8-U | KOI8-T | \\\n    CP437 | CP775 | CP850 | CP852 | CP855 | CP856 | CP857 | CP861 | CP862 | CP864 | CP865 | CP866 | CP869 | CP874 | CP922 | CP932 | CP943 | CP949 | CP950 | CP1046 | CP1124 | CP1125 | CP1129 | CP1131 | \\\n    CP1250 | CP1251 | CP1252 | CP1253 | CP1254 | CP1255 | CP1256 | CP1257 | \\\n    GB2312 | EUC-JP | EUC-KR | EUC-TW | BIG5 | BIG5-HKSCS | GBK | GB18030 | SHIFT_JIS | JOHAB | \\\n    TIS-620 | VISCII | TCVN5712-1 | ARMSCII-8 | GEORGIAN-PS | PT154 | \\\n    HP-ROMAN8 | HP-ARABIC8 | HP-GREEK8 | HP-HEBREW8 | HP-TURKISH8 | HP-KANA8 | \\\n    DEC-KANJI | DEC-HANYU | \\\n    UTF-8 ) comment=\"\";;\n    * ) comment=\"bug\";;\n  esac\n  printf '%-15s  %-17s %-17s %-17s %s\\n' \\\n         \"$lc\" \"$charmap\" \"$codeset\" \"$charset\" \"$comment\"\ndone\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/all-charsets-X11",
    "content": "#!/bin/sh\n\n# Prints a table of the charsets (system dependent name, portable name, and\n# X11 name) for all locales.\n\n${CC-cc} -o locale_codeset locale_codeset.c\n${CC-cc} -o locale_charset -I../include locale_charset.c \\\n    -DHAVE_CONFIG_H -I.. -DLIBDIR='\"'`cd ../lib && pwd`'\"' \\\n    ../lib/localcharset.c\n${CC-cc} -o locale_x11encoding locale_x11encoding.c \\\n    -I/usr/X11R6/include \\\n    -L/usr/X11R6/lib -lX11\n#${CC-cc} -o locale_x11encoding locale_x11encoding.c \\\n#    -I/packages/gnu/XFree86/include \\\n#    -L/packages/gnu/XFree86/lib -lX11 \\\n#    -Wl,-rpath,/packages/gnu/XFree86/lib\n\nprintf '%-15s%-17s%-17s %-17s %-17s\\n\\n' \\\n       \"locale name\" \"locale charmap\" \"nl_langinfo(CODESET)\" \"locale_charset()\" \"X11 encoding\"\nfor lc in `./all-locales | sort | uniq`\ndo\n  charmap=`LC_ALL=$lc ./locale_charmap 2>/dev/null || echo '<error>'`\n  codeset=`LC_ALL=$lc ./locale_codeset 2>/dev/null || echo '<error>'`\n  charset=`LC_ALL=$lc ./locale_charset 2>/dev/null || echo '<error>'`\n  x11encoding=`LC_ALL=$lc ./locale_x11encoding 2>/dev/null || echo '<error>'`\n  printf '%-15s  %-17s %-17s %-17s %-17s\\n' \\\n         \"$lc\" \"$charmap\" \"$codeset\" \"$charset\" \"$x11encoding\"\ndone\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/all-locales",
    "content": "#! /bin/sh\n# Prints the list of all locale names, one per line.\n\nlocale -a\ntest $? = 0 && exit 0\n\nhost=`/bin/sh ../build-aux/config.guess`\nhost_cpu=`echo $host | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\1/'`\nhost_vendor=`echo $host | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\2/'`\nhost_os=`echo $host | sed 's/^\\([^-]*\\)-\\([^-]*\\)-\\(.*\\)$/\\3/'`\n\ncase \"$host_os\" in\n  sunos* | solaris*)\n    cd /usr/lib/locale && ls -1\n    ;;\n  freebsd*)\n    cd /usr/share/locale && ls -1\n    ;;\n  darwin* | openbsd*)\n    echo C\n    cd /usr/share/locale && ls -1 */LC_CTYPE | sed -e 's,/LC_CTYPE$,,'\n    ;;\n  *)\n    echo \"Don't know how to determine list of locales on $host_os\" 1>&2\n    exit 1\n    ;;\nesac\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/beos-5",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset()\n\nC                <error>           <error>           UTF-8\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/cygwin-1.7.2",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nC.utf8           UTF-8             UTF-8             UTF-8             \nPOSIX            ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \naf_ZA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \naf_ZA.utf8       UTF-8             UTF-8             UTF-8             \nar_AE            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_AE.utf8       UTF-8             UTF-8             UTF-8             \nar_BH            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_BH.utf8       UTF-8             UTF-8             UTF-8             \nar_DZ            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_DZ.utf8       UTF-8             UTF-8             UTF-8             \nar_EG            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_EG.utf8       UTF-8             UTF-8             UTF-8             \nar_IQ            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_IQ.utf8       UTF-8             UTF-8             UTF-8             \nar_JO            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_JO.utf8       UTF-8             UTF-8             UTF-8             \nar_KW            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_KW.utf8       UTF-8             UTF-8             UTF-8             \nar_LB            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_LB.utf8       UTF-8             UTF-8             UTF-8             \nar_LY            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_LY.utf8       UTF-8             UTF-8             UTF-8             \nar_MA            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_MA.utf8       UTF-8             UTF-8             UTF-8             \nar_OM            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_OM.utf8       UTF-8             UTF-8             UTF-8             \nar_QA            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_QA.utf8       UTF-8             UTF-8             UTF-8             \nar_SA            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_SA.utf8       UTF-8             UTF-8             UTF-8             \nar_SY            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_SY.utf8       UTF-8             UTF-8             UTF-8             \nar_TN            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_TN.utf8       UTF-8             UTF-8             UTF-8             \nar_YE            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_YE.utf8       UTF-8             UTF-8             UTF-8             \narn_CL           ISO-8859-1        ISO-8859-1        ISO-8859-1        \narn_CL.utf8      UTF-8             UTF-8             UTF-8             \naz_AZ            UTF-8             UTF-8             UTF-8             \naz_AZ.utf8       UTF-8             UTF-8             UTF-8             \nbe_BY            CP1251            CP1251            CP1251            \nbe_BY.utf8       UTF-8             UTF-8             UTF-8             \nbe_BY@latin      UTF-8             UTF-8             UTF-8             \nbg_BG            CP1251            CP1251            CP1251            \nbg_BG.utf8       UTF-8             UTF-8             UTF-8             \nbn_IN            UTF-8             UTF-8             UTF-8             \nbn_IN.utf8       UTF-8             UTF-8             UTF-8             \nbokmal           ISO-8859-1        ISO-8859-1        ISO-8859-1        \nbokml           ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nbs_BA            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nbs_BA.utf8       UTF-8             UTF-8             UTF-8             \nca_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nca_ES.utf8       UTF-8             UTF-8             UTF-8             \nca_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \ncatalan          ISO-8859-1        ISO-8859-1        ISO-8859-1        \ncroatian         ISO-8859-2        ISO-8859-2        ISO-8859-2        \ncs_CZ            ISO-8859-2        ISO-8859-2        ISO-8859-2        \ncs_CZ.utf8       UTF-8             UTF-8             UTF-8             \ncy_GB            ISO-8859-14       ISO-8859-14       ISO-8859-14       \ncy_GB.utf8       UTF-8             UTF-8             UTF-8             \nczech            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nda_DK            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nda_DK.utf8       UTF-8             UTF-8             UTF-8             \ndanish           ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndansk            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_AT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_AT.utf8       UTF-8             UTF-8             UTF-8             \nde_AT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nde_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_CH.utf8       UTF-8             UTF-8             UTF-8             \nde_DE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_DE.utf8       UTF-8             UTF-8             UTF-8             \nde_DE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nde_LI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_LI.utf8       UTF-8             UTF-8             UTF-8             \nde_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_LU.utf8       UTF-8             UTF-8             UTF-8             \nde_LU@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \ndeutsch          ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndiv_MV           UTF-8             UTF-8             UTF-8             \ndiv_MV.utf8      UTF-8             UTF-8             UTF-8             \ndutch            ISO-8859-1        ISO-8859-1        ISO-8859-1        \neesti            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nel_GR            ISO-8859-7        ISO-8859-7        ISO-8859-7        \nel_GR.utf8       UTF-8             UTF-8             UTF-8             \nen_AU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_AU.utf8       UTF-8             UTF-8             UTF-8             \nen_BZ            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_BZ.utf8       UTF-8             UTF-8             UTF-8             \nen_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_CA.utf8       UTF-8             UTF-8             UTF-8             \nen_CB            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_CB.utf8       UTF-8             UTF-8             UTF-8             \nen_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_GB.utf8       UTF-8             UTF-8             UTF-8             \nen_IE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_IE.utf8       UTF-8             UTF-8             UTF-8             \nen_IE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nen_JM            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_JM.utf8       UTF-8             UTF-8             UTF-8             \nen_NZ            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_NZ.utf8       UTF-8             UTF-8             UTF-8             \nen_PH            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_PH.utf8       UTF-8             UTF-8             UTF-8             \nen_TT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_TT.utf8       UTF-8             UTF-8             UTF-8             \nen_US            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_US.utf8       UTF-8             UTF-8             UTF-8             \nen_ZA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_ZA.utf8       UTF-8             UTF-8             UTF-8             \nen_ZW            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_ZW.utf8       UTF-8             UTF-8             UTF-8             \nes_AR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_AR.utf8       UTF-8             UTF-8             UTF-8             \nes_BO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_BO.utf8       UTF-8             UTF-8             UTF-8             \nes_CL            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_CL.utf8       UTF-8             UTF-8             UTF-8             \nes_CO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_CO.utf8       UTF-8             UTF-8             UTF-8             \nes_CR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_CR.utf8       UTF-8             UTF-8             UTF-8             \nes_DO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_DO.utf8       UTF-8             UTF-8             UTF-8             \nes_EC            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_EC.utf8       UTF-8             UTF-8             UTF-8             \nes_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_ES.utf8       UTF-8             UTF-8             UTF-8             \nes_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nes_GT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_GT.utf8       UTF-8             UTF-8             UTF-8             \nes_HN            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_HN.utf8       UTF-8             UTF-8             UTF-8             \nes_MX            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_MX.utf8       UTF-8             UTF-8             UTF-8             \nes_NI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_NI.utf8       UTF-8             UTF-8             UTF-8             \nes_PA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_PA.utf8       UTF-8             UTF-8             UTF-8             \nes_PE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_PE.utf8       UTF-8             UTF-8             UTF-8             \nes_PR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_PR.utf8       UTF-8             UTF-8             UTF-8             \nes_PY            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_PY.utf8       UTF-8             UTF-8             UTF-8             \nes_SV            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_SV.utf8       UTF-8             UTF-8             UTF-8             \nes_UY            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_UY.utf8       UTF-8             UTF-8             UTF-8             \nes_VE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_VE.utf8       UTF-8             UTF-8             UTF-8             \nestonian         ISO-8859-1        ISO-8859-1        ISO-8859-1        \net_EE            ISO-8859-15       ISO-8859-15       ISO-8859-15       \net_EE.utf8       UTF-8             UTF-8             UTF-8             \neu_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \neu_ES.utf8       UTF-8             UTF-8             UTF-8             \neu_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nfa_IR            UTF-8             UTF-8             UTF-8             \nfa_IR.utf8       UTF-8             UTF-8             UTF-8             \nfi_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfi_FI.utf8       UTF-8             UTF-8             UTF-8             \nfi_FI@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nfil_PH           UTF-8             UTF-8             UTF-8             \nfil_PH.utf8      UTF-8             UTF-8             UTF-8             \nfinnish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfo_FO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfo_FO.utf8       UTF-8             UTF-8             UTF-8             \nfr_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_BE.utf8       UTF-8             UTF-8             UTF-8             \nfr_BE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nfr_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_CA.utf8       UTF-8             UTF-8             UTF-8             \nfr_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_CH.utf8       UTF-8             UTF-8             UTF-8             \nfr_FR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_FR.utf8       UTF-8             UTF-8             UTF-8             \nfr_FR@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nfr_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_LU.utf8       UTF-8             UTF-8             UTF-8             \nfr_LU@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nfr_MC            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_MC.utf8       UTF-8             UTF-8             UTF-8             \nfr_MC@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nfranais         ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nfrench           ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfy_NL            UTF-8             UTF-8             UTF-8             \nfy_NL.utf8       UTF-8             UTF-8             UTF-8             \nfy_NL@euro       UTF-8             UTF-8             UTF-8             \nga_IE            ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nga_IE.utf8       ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nga_IE@euro       ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \ngalego           ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngalician         ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngerman           ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngl_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngl_ES.utf8       UTF-8             UTF-8             UTF-8             \ngl_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \ngreek            ISO-8859-7        ISO-8859-7        ISO-8859-7        \ngu_IN            UTF-8             UTF-8             UTF-8             \ngu_IN.utf8       UTF-8             UTF-8             UTF-8             \nhe_IL            ISO-8859-8        ISO-8859-8        ISO-8859-8        \nhe_IL.utf8       UTF-8             UTF-8             UTF-8             \nhebrew           ISO-8859-8        ISO-8859-8        ISO-8859-8        \nhi_IN            UTF-8             UTF-8             UTF-8             \nhi_IN.utf8       UTF-8             UTF-8             UTF-8             \nhr_BA            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhr_BA.utf8       UTF-8             UTF-8             UTF-8             \nhr_HR            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhr_HR.utf8       UTF-8             UTF-8             UTF-8             \nhrvatski         ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhu_HU            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhu_HU.utf8       UTF-8             UTF-8             UTF-8             \nhungarian        ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhy_AM            UTF-8             UTF-8             UTF-8             \nhy_AM.utf8       UTF-8             UTF-8             UTF-8             \nicelandic        ISO-8859-1        ISO-8859-1        ISO-8859-1        \nid_ID            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nid_ID.utf8       UTF-8             UTF-8             UTF-8             \nis_IS            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nis_IS.utf8       UTF-8             UTF-8             UTF-8             \nit_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nit_CH.utf8       UTF-8             UTF-8             UTF-8             \nit_IT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nit_IT.utf8       UTF-8             UTF-8             UTF-8             \nit_IT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nitalian          ISO-8859-1        ISO-8859-1        ISO-8859-1        \niu_CA            ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \niu_CA.utf8       ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nja_JP            ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nja_JP.ujis       ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nja_JP.utf8       UTF-8             UTF-8             UTF-8             \nja_JP.utf8@cjknarrow  UTF-8             UTF-8             UTF-8             \nja_JP@cjknarrow  ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \njapanese         ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \njapanese.euc     ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \njapanese.sjis    CP932             CP932             CP932             \nka_GE            GEORGIAN-PS       GEORGIAN-PS       GEORGIAN-PS       \nka_GE.utf8       UTF-8             UTF-8             UTF-8             \nkk_KZ            ISO-8859-5        ISO-8859-5        ISO-8859-5        \nkk_KZ.utf8       UTF-8             UTF-8             UTF-8             \nkn_IN            UTF-8             UTF-8             UTF-8             \nkn_IN.utf8       UTF-8             UTF-8             UTF-8             \nko_KR            EUC-KR            EUC-KR            EUC-KR            \nko_KR.utf8       UTF-8             UTF-8             UTF-8             \nko_KR.utf8@cjknarrow  UTF-8             UTF-8             UTF-8             \nko_KR@cjknarrow  EUC-KR            EUC-KR            EUC-KR            \nkok_IN           UTF-8             UTF-8             UTF-8             \nkok_IN.utf8      UTF-8             UTF-8             UTF-8             \nkorean           EUC-KR            EUC-KR            EUC-KR            \nkorean.euc       EUC-KR            EUC-KR            EUC-KR            \nky_KG            UTF-8             UTF-8             UTF-8             \nky_KG.utf8       UTF-8             UTF-8             UTF-8             \nlb_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nlb_LU.utf8       UTF-8             UTF-8             UTF-8             \nlb_LU@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nlithuanian       ISO-8859-13       ISO-8859-13       ISO-8859-13       \nlt_LT            ISO-8859-13       ISO-8859-13       ISO-8859-13       \nlt_LT.utf8       UTF-8             UTF-8             UTF-8             \nlv_LV            ISO-8859-13       ISO-8859-13       ISO-8859-13       \nlv_LV.utf8       UTF-8             UTF-8             UTF-8             \nmi_NZ            ISO-8859-13       ISO-8859-13       ISO-8859-13       \nmi_NZ.utf8       UTF-8             UTF-8             UTF-8             \nmk_MK            ISO-8859-5        ISO-8859-5        ISO-8859-5        \nmk_MK.utf8       UTF-8             UTF-8             UTF-8             \nml_IN            UTF-8             UTF-8             UTF-8             \nml_IN.utf8       UTF-8             UTF-8             UTF-8             \nmn_MN            UTF-8             UTF-8             UTF-8             \nmn_MN.utf8       UTF-8             UTF-8             UTF-8             \nmoh_CA           ISO-8859-1        ISO-8859-1        ISO-8859-1        \nmoh_CA.utf8      UTF-8             UTF-8             UTF-8             \nmr_IN            UTF-8             UTF-8             UTF-8             \nmr_IN.utf8       UTF-8             UTF-8             UTF-8             \nms_BN            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nms_BN.utf8       UTF-8             UTF-8             UTF-8             \nms_MY            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nms_MY.utf8       UTF-8             UTF-8             UTF-8             \nmt_MT            ISO-8859-3        ISO-8859-3        ISO-8859-3        \nmt_MT.utf8       UTF-8             UTF-8             UTF-8             \nnb_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nnb_NO.utf8       UTF-8             UTF-8             UTF-8             \nne_NP            UTF-8             UTF-8             UTF-8             \nne_NP.utf8       UTF-8             UTF-8             UTF-8             \nnl_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nnl_BE.utf8       UTF-8             UTF-8             UTF-8             \nnl_BE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nnl_NL            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nnl_NL.utf8       UTF-8             UTF-8             UTF-8             \nnl_NL@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nnn_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nnn_NO.utf8       UTF-8             UTF-8             UTF-8             \nno_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nno_NO.ISO-8859-1  ISO-8859-1        ISO-8859-1        ISO-8859-1        \nnorwegian        ISO-8859-1        ISO-8859-1        ISO-8859-1        \nns_ZA            UTF-8             UTF-8             UTF-8             \nns_ZA.utf8       UTF-8             UTF-8             UTF-8             \nnynorsk          ISO-8859-1        ISO-8859-1        ISO-8859-1        \npa_IN            UTF-8             UTF-8             UTF-8             \npa_IN.utf8       UTF-8             UTF-8             UTF-8             \npl_PL            ISO-8859-2        ISO-8859-2        ISO-8859-2        \npl_PL.utf8       UTF-8             UTF-8             UTF-8             \npolish           ISO-8859-2        ISO-8859-2        ISO-8859-2        \nportuguese       ISO-8859-1        ISO-8859-1        ISO-8859-1        \nps_AF            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nps_AF.utf8       UTF-8             UTF-8             UTF-8             \npt_BR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \npt_BR.utf8       UTF-8             UTF-8             UTF-8             \npt_PT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \npt_PT.utf8       UTF-8             UTF-8             UTF-8             \npt_PT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nqu_BO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nqu_BO.utf8       UTF-8             UTF-8             UTF-8             \nqu_EC            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nqu_EC.utf8       UTF-8             UTF-8             UTF-8             \nqu_PE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nqu_PE.utf8       UTF-8             UTF-8             UTF-8             \nrm_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nrm_CH.utf8       UTF-8             UTF-8             UTF-8             \nro_RO            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nro_RO.utf8       UTF-8             UTF-8             UTF-8             \nromanian         ISO-8859-2        ISO-8859-2        ISO-8859-2        \nru_RU            ISO-8859-5        ISO-8859-5        ISO-8859-5        \nru_RU.utf8       UTF-8             UTF-8             UTF-8             \nrussian          ISO-8859-5        ISO-8859-5        ISO-8859-5        \nsa_IN            UTF-8             UTF-8             UTF-8             \nsa_IN.utf8       UTF-8             UTF-8             UTF-8             \nse_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nse_FI.utf8       UTF-8             UTF-8             UTF-8             \nse_FI@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nse_NO            UTF-8             UTF-8             UTF-8             \nse_NO.utf8       UTF-8             UTF-8             UTF-8             \nse_SE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nse_SE.utf8       UTF-8             UTF-8             UTF-8             \nsk_SK            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nsk_SK.utf8       UTF-8             UTF-8             UTF-8             \nsl_SI            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nsl_SI.utf8       UTF-8             UTF-8             UTF-8             \nslovak           ISO-8859-2        ISO-8859-2        ISO-8859-2        \nslovene          ISO-8859-2        ISO-8859-2        ISO-8859-2        \nslovenian        ISO-8859-2        ISO-8859-2        ISO-8859-2        \nspanish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsq_AL            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsq_AL.utf8       UTF-8             UTF-8             UTF-8             \nsr_BA            UTF-8             UTF-8             UTF-8             \nsr_BA.utf8       UTF-8             UTF-8             UTF-8             \nsr_BA@latin      UTF-8             UTF-8             UTF-8             \nsr_CS            UTF-8             UTF-8             UTF-8             \nsr_CS.utf8       UTF-8             UTF-8             UTF-8             \nsr_CS@latin      UTF-8             UTF-8             UTF-8             \nsr_ME            UTF-8             UTF-8             UTF-8             \nsr_ME.utf8       UTF-8             UTF-8             UTF-8             \nsr_ME@latin      UTF-8             UTF-8             UTF-8             \nsr_RS            UTF-8             UTF-8             UTF-8             \nsr_RS.utf8       UTF-8             UTF-8             UTF-8             \nsr_RS@latin      UTF-8             UTF-8             UTF-8             \nsv_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsv_FI.utf8       UTF-8             UTF-8             UTF-8             \nsv_FI@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nsv_SE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsv_SE.utf8       UTF-8             UTF-8             UTF-8             \nsw_KE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsw_KE.utf8       UTF-8             UTF-8             UTF-8             \nswedish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsyr_SY           UTF-8             UTF-8             UTF-8             \nsyr_SY.utf8      UTF-8             UTF-8             UTF-8             \nta_IN            UTF-8             UTF-8             UTF-8             \nta_IN.utf8       UTF-8             UTF-8             UTF-8             \nte_IN            UTF-8             UTF-8             UTF-8             \nte_IN.utf8       UTF-8             UTF-8             UTF-8             \nth_TH            TIS-620           TIS-620           TIS-620           \nth_TH.utf8       UTF-8             UTF-8             UTF-8             \nthai             TIS-620           TIS-620           TIS-620           \ntn_ZA            UTF-8             UTF-8             UTF-8             \ntn_ZA.utf8       UTF-8             UTF-8             UTF-8             \ntr_TR            ISO-8859-9        ISO-8859-9        ISO-8859-9        \ntr_TR.utf8       UTF-8             UTF-8             UTF-8             \ntt_RU            ISO-8859-5        ISO-8859-5        ISO-8859-5        \ntt_RU.utf8       UTF-8             UTF-8             UTF-8             \ntt_RU@iqtelif    UTF-8             UTF-8             UTF-8             \nturkish          ISO-8859-9        ISO-8859-9        ISO-8859-9        \nuk_UA            KOI8-U            KOI8-U            KOI8-U            \nuk_UA.utf8       UTF-8             UTF-8             UTF-8             \nur_PK            UTF-8             UTF-8             UTF-8             \nur_PK.utf8       UTF-8             UTF-8             UTF-8             \nuz_UZ            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nuz_UZ.utf8       UTF-8             UTF-8             UTF-8             \nuz_UZ@cyrillic   UTF-8             UTF-8             UTF-8             \nvi_VN            UTF-8             UTF-8             UTF-8             \nvi_VN.utf8       UTF-8             UTF-8             UTF-8             \nxh_ZA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nxh_ZA.utf8       UTF-8             UTF-8             UTF-8             \nzh_CN            GBK               GBK               GBK               \nzh_CN.utf8       UTF-8             UTF-8             UTF-8             \nzh_CN.utf8@cjknarrow  UTF-8             UTF-8             UTF-8             \nzh_CN@cjknarrow  GBK               GBK               GBK               \nzh_HK            BIG5              BIG5              BIG5              \nzh_HK.utf8       UTF-8             UTF-8             UTF-8             \nzh_HK.utf8@cjknarrow  UTF-8             UTF-8             UTF-8             \nzh_HK@cjknarrow  BIG5              BIG5              BIG5              \nzh_MO            BIG5              BIG5              BIG5              \nzh_MO.utf8       UTF-8             UTF-8             UTF-8             \nzh_MO.utf8@cjknarrow  UTF-8             UTF-8             UTF-8             \nzh_MO@cjknarrow  BIG5              BIG5              BIG5              \nzh_SG            GBK               GBK               GBK               \nzh_SG.utf8       UTF-8             UTF-8             UTF-8             \nzh_SG.utf8@cjknarrow  UTF-8             UTF-8             UTF-8             \nzh_SG@cjknarrow  GBK               GBK               GBK               \nzh_TW            BIG5              BIG5              BIG5              \nzh_TW.utf8       UTF-8             UTF-8             UTF-8             \nzh_TW.utf8@cjknarrow  UTF-8             UTF-8             UTF-8             \nzh_TW@cjknarrow  BIG5              BIG5              BIG5              \nzu_ZA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nzu_ZA.utf8       UTF-8             UTF-8             UTF-8             \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/darwin-6.8",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nbg_BG.CP1251     <error>           <error>           CP1251            \ncs_CZ.ISO8859-2  <error>           <error>           ISO-8859-2        \nda_DK            <error>           <error>           ISO-8859-1        \nda_DK.ISO8859-1  <error>           <error>           ISO-8859-1        \nda_DK.ISO8859-15  <error>           <error>           ISO-8859-15       \nde_AT            <error>           <error>           ISO-8859-1        \nde_AT.ISO8859-1  <error>           <error>           ISO-8859-1        \nde_AT.ISO8859-15  <error>           <error>           ISO-8859-15       \nde_CH            <error>           <error>           ISO-8859-1        \nde_CH.ISO8859-1  <error>           <error>           ISO-8859-1        \nde_CH.ISO8859-15  <error>           <error>           ISO-8859-15       \nde_DE            <error>           <error>           ISO-8859-1        \nde_DE.ISO8859-1  <error>           <error>           ISO-8859-1        \nde_DE.ISO8859-15  <error>           <error>           ISO-8859-15       \nen_AU            <error>           <error>           ISO-8859-1        \nen_AU.ISO8859-1  <error>           <error>           ISO-8859-1        \nen_AU.ISO8859-15  <error>           <error>           ISO-8859-15       \nen_AU.US-ASCII   <error>           <error>           ASCII             \nen_CA            <error>           <error>           ISO-8859-1        \nen_CA.ISO8859-1  <error>           <error>           ISO-8859-1        \nen_CA.ISO8859-15  <error>           <error>           ISO-8859-15       \nen_CA.US-ASCII   <error>           <error>           ASCII             \nen_GB            <error>           <error>           ISO-8859-1        \nen_GB.ISO8859-1  <error>           <error>           ISO-8859-1        \nen_GB.ISO8859-15  <error>           <error>           ISO-8859-15       \nen_GB.US-ASCII   <error>           <error>           ASCII             \nen_US            <error>           <error>           ISO-8859-1        \nen_US.ISO8859-1  <error>           <error>           ISO-8859-1        \nen_US.ISO8859-15  <error>           <error>           ISO-8859-15       \nen_US.US-ASCII   <error>           <error>           ASCII             \nes_ES            <error>           <error>           ISO-8859-1        \nes_ES.ISO8859-1  <error>           <error>           ISO-8859-1        \nes_ES.ISO8859-15  <error>           <error>           ISO-8859-15       \nfi_FI            <error>           <error>           ISO-8859-1        \nfi_FI.ISO8859-1  <error>           <error>           ISO-8859-1        \nfi_FI.ISO8859-15  <error>           <error>           ISO-8859-15       \nfr_BE            <error>           <error>           ISO-8859-1        \nfr_BE.ISO8859-1  <error>           <error>           ISO-8859-1        \nfr_BE.ISO8859-15  <error>           <error>           ISO-8859-15       \nfr_CA            <error>           <error>           ISO-8859-1        \nfr_CA.ISO8859-1  <error>           <error>           ISO-8859-1        \nfr_CA.ISO8859-15  <error>           <error>           ISO-8859-15       \nfr_CH            <error>           <error>           ISO-8859-1        \nfr_CH.ISO8859-1  <error>           <error>           ISO-8859-1        \nfr_CH.ISO8859-15  <error>           <error>           ISO-8859-15       \nfr_FR            <error>           <error>           ISO-8859-1        \nfr_FR.ISO8859-1  <error>           <error>           ISO-8859-1        \nfr_FR.ISO8859-15  <error>           <error>           ISO-8859-15       \nhr_HR.ISO8859-2  <error>           <error>           ISO-8859-2        \nhu_HU.ISO8859-2  <error>           <error>           ISO-8859-2        \nis_IS            <error>           <error>           ISO-8859-1        \nis_IS.ISO8859-1  <error>           <error>           ISO-8859-1        \nis_IS.ISO8859-15  <error>           <error>           ISO-8859-15       \nit_CH            <error>           <error>           ISO-8859-1        \nit_CH.ISO8859-1  <error>           <error>           ISO-8859-1        \nit_CH.ISO8859-15  <error>           <error>           ISO-8859-15       \nit_IT            <error>           <error>           ISO-8859-1        \nit_IT.ISO8859-1  <error>           <error>           ISO-8859-1        \nit_IT.ISO8859-15  <error>           <error>           ISO-8859-15       \nja_JP.EUC        <error>           <error>           EUC-JP            \nja_JP.SJIS       <error>           <error>           SHIFT_JIS         \nko_KR.EUC        <error>           <error>           EUC-KR            \nla_LN.ISO8859-1  <error>           <error>           ISO-8859-1        \nla_LN.ISO8859-15  <error>           <error>           ISO-8859-15       \nla_LN.ISO8859-2  <error>           <error>           ISO-8859-2        \nla_LN.ISO8859-4  <error>           <error>           ISO-8859-4        \nla_LN.US-ASCII   <error>           <error>           ASCII             \nlt_LT.ISO8859-4  <error>           <error>           ISO-8859-4        \nnl_BE            <error>           <error>           ISO-8859-1        \nnl_BE.ISO8859-1  <error>           <error>           ISO-8859-1        \nnl_BE.ISO8859-15  <error>           <error>           ISO-8859-15       \nnl_NL            <error>           <error>           ISO-8859-1        \nnl_NL.ISO8859-1  <error>           <error>           ISO-8859-1        \nnl_NL.ISO8859-15  <error>           <error>           ISO-8859-15       \nno_NO            <error>           <error>           ISO-8859-1        \nno_NO.ISO8859-1  <error>           <error>           ISO-8859-1        \nno_NO.ISO8859-15  <error>           <error>           ISO-8859-15       \npl_PL.ISO8859-2  <error>           <error>           ISO-8859-2        \npt_PT            <error>           <error>           ISO-8859-1        \npt_PT.ISO8859-1  <error>           <error>           ISO-8859-1        \npt_PT.ISO8859-15  <error>           <error>           ISO-8859-15       \nru_RU.CP866      <error>           <error>           CP866             \nru_RU.ISO8859-5  <error>           <error>           ISO-8859-5        \nru_RU.KOI8-R     <error>           <error>           KOI8-R            \nsl_SI.ISO8859-2  <error>           <error>           ISO-8859-2        \nsv_SE            <error>           <error>           ISO-8859-1        \nsv_SE.ISO8859-1  <error>           <error>           ISO-8859-1        \nsv_SE.ISO8859-15  <error>           <error>           ISO-8859-15       \nuk_UA.KOI8-U     <error>           <error>           KOI8-U            \nzh_CN.EUC        <error>           <error>           GB2312            \nzh_TW.Big5       <error>           <error>           BIG5              \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/darwin-7.5",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                <error>           US-ASCII          UTF-8             \naf_ZA            <error>                             UTF-8             \naf_ZA.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \naf_ZA.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \naf_ZA.UTF-8      <error>           UTF-8             UTF-8             \nbg_BG            <error>                             UTF-8             \nbg_BG.CP1251     <error>           CP1251            CP1251            \nbg_BG.UTF-8      <error>           UTF-8             UTF-8             \nca_ES            <error>                             UTF-8             \nca_ES.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nca_ES.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nca_ES.UTF-8      <error>           UTF-8             UTF-8             \ncs_CZ            <error>                             UTF-8             \ncs_CZ.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \ncs_CZ.UTF-8      <error>           UTF-8             UTF-8             \nda_DK            <error>                             UTF-8             \nda_DK.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nda_DK.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nda_DK.UTF-8      <error>           UTF-8             UTF-8             \nde_AT            <error>                             UTF-8             \nde_AT.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nde_AT.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nde_AT.UTF-8      <error>           UTF-8             UTF-8             \nde_CH            <error>                             UTF-8             \nde_CH.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nde_CH.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nde_CH.UTF-8      <error>           UTF-8             UTF-8             \nde_DE            <error>                             UTF-8             \nde_DE.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nde_DE.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nde_DE.UTF-8      <error>           UTF-8             UTF-8             \nel_GR            <error>                             UTF-8             \nel_GR.ISO8859-7  <error>           ISO8859-7         ISO-8859-7        \nel_GR.UTF-8      <error>           UTF-8             UTF-8             \nen_AU            <error>                             UTF-8             \nen_AU.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nen_AU.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nen_AU.US-ASCII   <error>           US-ASCII          UTF-8             \nen_AU.UTF-8      <error>           UTF-8             UTF-8             \nen_CA            <error>                             UTF-8             \nen_CA.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nen_CA.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nen_CA.US-ASCII   <error>           US-ASCII          UTF-8             \nen_CA.UTF-8      <error>           UTF-8             UTF-8             \nen_GB            <error>                             UTF-8             \nen_GB.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nen_GB.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nen_GB.US-ASCII   <error>           US-ASCII          UTF-8             \nen_GB.UTF-8      <error>           UTF-8             UTF-8             \nen_NZ            <error>                             UTF-8             \nen_NZ.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nen_NZ.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nen_NZ.US-ASCII   <error>           US-ASCII          UTF-8             \nen_NZ.UTF-8      <error>           UTF-8             UTF-8             \nen_US            <error>                             UTF-8             \nen_US.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nen_US.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nen_US.US-ASCII   <error>           US-ASCII          UTF-8             \nen_US.UTF-8      <error>           UTF-8             UTF-8             \nes_ES            <error>                             UTF-8             \nes_ES.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nes_ES.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nes_ES.UTF-8      <error>           UTF-8             UTF-8             \net_EE            <error>                             UTF-8             \net_EE.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \net_EE.UTF-8      <error>           UTF-8             UTF-8             \nfi_FI            <error>                             UTF-8             \nfi_FI.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nfi_FI.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nfi_FI.UTF-8      <error>           UTF-8             UTF-8             \nfr_BE            <error>                             UTF-8             \nfr_BE.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nfr_BE.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nfr_BE.UTF-8      <error>           UTF-8             UTF-8             \nfr_CA            <error>                             UTF-8             \nfr_CA.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nfr_CA.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nfr_CA.UTF-8      <error>           UTF-8             UTF-8             \nfr_CH            <error>                             UTF-8             \nfr_CH.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nfr_CH.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nfr_CH.UTF-8      <error>           UTF-8             UTF-8             \nfr_FR            <error>                             UTF-8             \nfr_FR.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nfr_FR.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nfr_FR.UTF-8      <error>           UTF-8             UTF-8             \nhi_IN.ISCII-DEV  <error>           ISCII-DEV         UTF-8             \nhr_HR            <error>                             UTF-8             \nhr_HR.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \nhr_HR.UTF-8      <error>           UTF-8             UTF-8             \nhu_HU            <error>                             UTF-8             \nhu_HU.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \nhu_HU.UTF-8      <error>           UTF-8             UTF-8             \nis_IS            <error>                             UTF-8             \nis_IS.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nis_IS.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nis_IS.UTF-8      <error>           UTF-8             UTF-8             \nit_CH            <error>                             UTF-8             \nit_CH.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nit_CH.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nit_CH.UTF-8      <error>           UTF-8             UTF-8             \nit_IT            <error>                             UTF-8             \nit_IT.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nit_IT.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nit_IT.UTF-8      <error>           UTF-8             UTF-8             \nja_JP            <error>                             UTF-8             \nja_JP.SJIS       <error>           SJIS              SHIFT_JIS         \nja_JP.UTF-8      <error>           UTF-8             UTF-8             \nja_JP.eucJP      <error>           eucJP             EUC-JP            \nko_KR            <error>                             UTF-8             \nko_KR.UTF-8      <error>           UTF-8             UTF-8             \nko_KR.eucKR      <error>           eucKR             EUC-KR            \nla_LN.ISO8859-1  <error>           US-ASCII          UTF-8             \nla_LN.ISO8859-15  <error>           US-ASCII          UTF-8             \nla_LN.ISO8859-2  <error>           US-ASCII          UTF-8             \nla_LN.ISO8859-4  <error>           US-ASCII          UTF-8             \nla_LN.US-ASCII   <error>           US-ASCII          UTF-8             \nla_LN.UTF-8      <error>           US-ASCII          UTF-8             \nlt_LT            <error>                             UTF-8             \nlt_LT.ISO8859-13  <error>           ISO8859-13        ISO-8859-13       \nlt_LT.ISO8859-4  <error>           ISO8859-4         ISO-8859-4        \nlt_LT.UTF-8      <error>           UTF-8             UTF-8             \nnl_BE            <error>                             UTF-8             \nnl_BE.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nnl_BE.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nnl_BE.UTF-8      <error>           UTF-8             UTF-8             \nnl_NL            <error>                             UTF-8             \nnl_NL.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nnl_NL.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nnl_NL.UTF-8      <error>           UTF-8             UTF-8             \nno_NO            <error>                             UTF-8             \nno_NO.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nno_NO.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nno_NO.UTF-8      <error>           UTF-8             UTF-8             \npl_PL            <error>                             UTF-8             \npl_PL.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \npl_PL.UTF-8      <error>           UTF-8             UTF-8             \npt_BR            <error>                             UTF-8             \npt_BR.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \npt_BR.UTF-8      <error>           UTF-8             UTF-8             \npt_PT            <error>                             UTF-8             \npt_PT.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \npt_PT.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \npt_PT.UTF-8      <error>           UTF-8             UTF-8             \nro_RO            <error>                             UTF-8             \nro_RO.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \nro_RO.UTF-8      <error>           UTF-8             UTF-8             \nru_RU            <error>                             UTF-8             \nru_RU.CP866      <error>           CP866             CP866             \nru_RU.ISO8859-5  <error>           ISO8859-5         ISO-8859-5        \nru_RU.KOI8-R     <error>           KOI8-R            KOI8-R            \nru_RU.UTF-8      <error>           UTF-8             UTF-8             \nsk_SK            <error>                             UTF-8             \nsk_SK.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \nsk_SK.UTF-8      <error>           UTF-8             UTF-8             \nsl_SI            <error>                             UTF-8             \nsl_SI.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \nsl_SI.UTF-8      <error>           UTF-8             UTF-8             \nsr_YU            <error>                             UTF-8             \nsr_YU.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \nsr_YU.ISO8859-5  <error>           ISO8859-5         ISO-8859-5        \nsr_YU.UTF-8      <error>           UTF-8             UTF-8             \nsv_SE            <error>                             UTF-8             \nsv_SE.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nsv_SE.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nsv_SE.UTF-8      <error>           UTF-8             UTF-8             \ntr_TR            <error>                             UTF-8             \ntr_TR.ISO8859-9  <error>           ISO8859-9         ISO-8859-9        \ntr_TR.UTF-8      <error>           UTF-8             UTF-8             \nuk_UA            <error>                             UTF-8             \nuk_UA.ISO8859-5  <error>           ISO8859-5         ISO-8859-5        \nuk_UA.KOI8-U     <error>           KOI8-U            KOI8-U            \nuk_UA.UTF-8      <error>           UTF-8             UTF-8             \nzh_CN            <error>                             UTF-8             \nzh_CN.UTF-8      <error>           UTF-8             UTF-8             \nzh_CN.eucCN      <error>           eucCN             GB2312            \nzh_TW            <error>                             UTF-8             \nzh_TW.Big5       <error>           Big5              BIG5              \nzh_TW.UTF-8      <error>           UTF-8             UTF-8             \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/darwin-9.5",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                                  US-ASCII          UTF-8             \nPOSIX                              US-ASCII          UTF-8             \naf_ZA                                                UTF-8             \naf_ZA.ISO8859-1                    ISO8859-1         ISO-8859-1        \naf_ZA.ISO8859-15                    ISO8859-15        ISO-8859-15       \naf_ZA.UTF-8                        UTF-8             UTF-8             \nam_ET                                                UTF-8             \nam_ET.UTF-8                        UTF-8             UTF-8             \nbe_BY                                                UTF-8             \nbe_BY.CP1131                       CP1131            CP1131            \nbe_BY.CP1251                       CP1251            CP1251            \nbe_BY.ISO8859-5                    ISO8859-5         ISO-8859-5        \nbe_BY.UTF-8                        UTF-8             UTF-8             \nbg_BG                                                UTF-8             \nbg_BG.CP1251                       CP1251            CP1251            \nbg_BG.UTF-8                        UTF-8             UTF-8             \nca_ES                                                UTF-8             \nca_ES.ISO8859-1                    ISO8859-1         ISO-8859-1        \nca_ES.ISO8859-15                    ISO8859-15        ISO-8859-15       \nca_ES.UTF-8                        UTF-8             UTF-8             \ncs_CZ                                                UTF-8             \ncs_CZ.ISO8859-2                    ISO8859-2         ISO-8859-2        \ncs_CZ.UTF-8                        UTF-8             UTF-8             \nda_DK                                                UTF-8             \nda_DK.ISO8859-1                    ISO8859-1         ISO-8859-1        \nda_DK.ISO8859-15                    ISO8859-15        ISO-8859-15       \nda_DK.UTF-8                        UTF-8             UTF-8             \nde_AT                                                UTF-8             \nde_AT.ISO8859-1                    ISO8859-1         ISO-8859-1        \nde_AT.ISO8859-15                    ISO8859-15        ISO-8859-15       \nde_AT.UTF-8                        UTF-8             UTF-8             \nde_CH                                                UTF-8             \nde_CH.ISO8859-1                    ISO8859-1         ISO-8859-1        \nde_CH.ISO8859-15                    ISO8859-15        ISO-8859-15       \nde_CH.UTF-8                        UTF-8             UTF-8             \nde_DE                                                UTF-8             \nde_DE.ISO8859-1                    ISO8859-1         ISO-8859-1        \nde_DE.ISO8859-15                    ISO8859-15        ISO-8859-15       \nde_DE.UTF-8                        UTF-8             UTF-8             \nel_GR                                                UTF-8             \nel_GR.ISO8859-7                    ISO8859-7         ISO-8859-7        \nel_GR.UTF-8                        UTF-8             UTF-8             \nen_AU                                                UTF-8             \nen_AU.ISO8859-1                    ISO8859-1         ISO-8859-1        \nen_AU.ISO8859-15                    ISO8859-15        ISO-8859-15       \nen_AU.US-ASCII                     US-ASCII          UTF-8             \nen_AU.UTF-8                        UTF-8             UTF-8             \nen_CA                                                UTF-8             \nen_CA.ISO8859-1                    ISO8859-1         ISO-8859-1        \nen_CA.ISO8859-15                    ISO8859-15        ISO-8859-15       \nen_CA.US-ASCII                     US-ASCII          UTF-8             \nen_CA.UTF-8                        UTF-8             UTF-8             \nen_GB                                                UTF-8             \nen_GB.ISO8859-1                    ISO8859-1         ISO-8859-1        \nen_GB.ISO8859-15                    ISO8859-15        ISO-8859-15       \nen_GB.US-ASCII                     US-ASCII          UTF-8             \nen_GB.UTF-8                        UTF-8             UTF-8             \nen_IE                                                UTF-8             \nen_IE.UTF-8                        UTF-8             UTF-8             \nen_NZ                                                UTF-8             \nen_NZ.ISO8859-1                    ISO8859-1         ISO-8859-1        \nen_NZ.ISO8859-15                    ISO8859-15        ISO-8859-15       \nen_NZ.US-ASCII                     US-ASCII          UTF-8             \nen_NZ.UTF-8                        UTF-8             UTF-8             \nen_US                                                UTF-8             \nen_US.ISO8859-1                    ISO8859-1         ISO-8859-1        \nen_US.ISO8859-15                    ISO8859-15        ISO-8859-15       \nen_US.US-ASCII                     US-ASCII          UTF-8             \nen_US.UTF-8                        UTF-8             UTF-8             \nes_ES                                                UTF-8             \nes_ES.ISO8859-1                    ISO8859-1         ISO-8859-1        \nes_ES.ISO8859-15                    ISO8859-15        ISO-8859-15       \nes_ES.UTF-8                        UTF-8             UTF-8             \net_EE                                                UTF-8             \net_EE.ISO8859-15                    ISO8859-15        ISO-8859-15       \net_EE.UTF-8                        UTF-8             UTF-8             \neu_ES                                                UTF-8             \neu_ES.ISO8859-1                    ISO8859-1         ISO-8859-1        \neu_ES.ISO8859-15                    ISO8859-15        ISO-8859-15       \neu_ES.UTF-8                        UTF-8             UTF-8             \nfi_FI                                                UTF-8             \nfi_FI.ISO8859-1                    ISO8859-1         ISO-8859-1        \nfi_FI.ISO8859-15                    ISO8859-15        ISO-8859-15       \nfi_FI.UTF-8                        UTF-8             UTF-8             \nfr_BE                                                UTF-8             \nfr_BE.ISO8859-1                    ISO8859-1         ISO-8859-1        \nfr_BE.ISO8859-15                    ISO8859-15        ISO-8859-15       \nfr_BE.UTF-8                        UTF-8             UTF-8             \nfr_CA                                                UTF-8             \nfr_CA.ISO8859-1                    ISO8859-1         ISO-8859-1        \nfr_CA.ISO8859-15                    ISO8859-15        ISO-8859-15       \nfr_CA.UTF-8                        UTF-8             UTF-8             \nfr_CH                                                UTF-8             \nfr_CH.ISO8859-1                    ISO8859-1         ISO-8859-1        \nfr_CH.ISO8859-15                    ISO8859-15        ISO-8859-15       \nfr_CH.UTF-8                        UTF-8             UTF-8             \nfr_FR                                                UTF-8             \nfr_FR.ISO8859-1                    ISO8859-1         ISO-8859-1        \nfr_FR.ISO8859-15                    ISO8859-15        ISO-8859-15       \nfr_FR.UTF-8                        UTF-8             UTF-8             \nhe_IL                                                UTF-8             \nhe_IL.UTF-8                        UTF-8             UTF-8             \nhi_IN.ISCII-DEV                    ISCII-DEV         UTF-8             \nhr_HR                                                UTF-8             \nhr_HR.ISO8859-2                    ISO8859-2         ISO-8859-2        \nhr_HR.UTF-8                        UTF-8             UTF-8             \nhu_HU                                                UTF-8             \nhu_HU.ISO8859-2                    ISO8859-2         ISO-8859-2        \nhu_HU.UTF-8                        UTF-8             UTF-8             \nhy_AM                                                UTF-8             \nhy_AM.ARMSCII-8                    ARMSCII-8         ARMSCII-8         \nhy_AM.UTF-8                        UTF-8             UTF-8             \nis_IS                                                UTF-8             \nis_IS.ISO8859-1                    ISO8859-1         ISO-8859-1        \nis_IS.ISO8859-15                    ISO8859-15        ISO-8859-15       \nis_IS.UTF-8                        UTF-8             UTF-8             \nit_CH                                                UTF-8             \nit_CH.ISO8859-1                    ISO8859-1         ISO-8859-1        \nit_CH.ISO8859-15                    ISO8859-15        ISO-8859-15       \nit_CH.UTF-8                        UTF-8             UTF-8             \nit_IT                                                UTF-8             \nit_IT.ISO8859-1                    ISO8859-1         ISO-8859-1        \nit_IT.ISO8859-15                    ISO8859-15        ISO-8859-15       \nit_IT.UTF-8                        UTF-8             UTF-8             \nja_JP                                                UTF-8             \nja_JP.SJIS                         SJIS              SHIFT_JIS         \nja_JP.UTF-8                        UTF-8             UTF-8             \nja_JP.eucJP                        eucJP             EUC-JP            \nkk_KZ                                                UTF-8             \nkk_KZ.PT154                        PT154             PT154             \nkk_KZ.UTF-8                        UTF-8             UTF-8             \nko_KR                                                UTF-8             \nko_KR.CP949                        CP949             CP949             \nko_KR.UTF-8                        UTF-8             UTF-8             \nko_KR.eucKR                        eucKR             EUC-KR            \nlt_LT                                                UTF-8             \nlt_LT.ISO8859-13                    ISO8859-13        ISO-8859-13       \nlt_LT.ISO8859-4                    ISO8859-4         ISO-8859-4        \nlt_LT.UTF-8                        UTF-8             UTF-8             \nnl_BE                                                UTF-8             \nnl_BE.ISO8859-1                    ISO8859-1         ISO-8859-1        \nnl_BE.ISO8859-15                    ISO8859-15        ISO-8859-15       \nnl_BE.UTF-8                        UTF-8             UTF-8             \nnl_NL                                                UTF-8             \nnl_NL.ISO8859-1                    ISO8859-1         ISO-8859-1        \nnl_NL.ISO8859-15                    ISO8859-15        ISO-8859-15       \nnl_NL.UTF-8                        UTF-8             UTF-8             \nno_NO                                                UTF-8             \nno_NO.ISO8859-1                    ISO8859-1         ISO-8859-1        \nno_NO.ISO8859-15                    ISO8859-15        ISO-8859-15       \nno_NO.UTF-8                        UTF-8             UTF-8             \npl_PL                                                UTF-8             \npl_PL.ISO8859-2                    ISO8859-2         ISO-8859-2        \npl_PL.UTF-8                        UTF-8             UTF-8             \npt_BR                                                UTF-8             \npt_BR.ISO8859-1                    ISO8859-1         ISO-8859-1        \npt_BR.UTF-8                        UTF-8             UTF-8             \npt_PT                                                UTF-8             \npt_PT.ISO8859-1                    ISO8859-1         ISO-8859-1        \npt_PT.ISO8859-15                    ISO8859-15        ISO-8859-15       \npt_PT.UTF-8                        UTF-8             UTF-8             \nro_RO                                                UTF-8             \nro_RO.ISO8859-2                    ISO8859-2         ISO-8859-2        \nro_RO.UTF-8                        UTF-8             UTF-8             \nru_RU                                                UTF-8             \nru_RU.CP1251                       CP1251            CP1251            \nru_RU.CP866                        CP866             CP866             \nru_RU.ISO8859-5                    ISO8859-5         ISO-8859-5        \nru_RU.KOI8-R                       KOI8-R            KOI8-R            \nru_RU.UTF-8                        UTF-8             UTF-8             \nsk_SK                                                UTF-8             \nsk_SK.ISO8859-2                    ISO8859-2         ISO-8859-2        \nsk_SK.UTF-8                        UTF-8             UTF-8             \nsl_SI                                                UTF-8             \nsl_SI.ISO8859-2                    ISO8859-2         ISO-8859-2        \nsl_SI.UTF-8                        UTF-8             UTF-8             \nsr_YU                                                UTF-8             \nsr_YU.ISO8859-2                    ISO8859-2         ISO-8859-2        \nsr_YU.ISO8859-5                    ISO8859-5         ISO-8859-5        \nsr_YU.UTF-8                        UTF-8             UTF-8             \nsv_SE                                                UTF-8             \nsv_SE.ISO8859-1                    ISO8859-1         ISO-8859-1        \nsv_SE.ISO8859-15                    ISO8859-15        ISO-8859-15       \nsv_SE.UTF-8                        UTF-8             UTF-8             \ntr_TR                                                UTF-8             \ntr_TR.ISO8859-9                    ISO8859-9         ISO-8859-9        \ntr_TR.UTF-8                        UTF-8             UTF-8             \nuk_UA                                                UTF-8             \nuk_UA.ISO8859-5                    ISO8859-5         ISO-8859-5        \nuk_UA.KOI8-U                       KOI8-U            KOI8-U            \nuk_UA.UTF-8                        UTF-8             UTF-8             \nzh_CN                                                UTF-8             \nzh_CN.GB18030                      GB18030           GB18030           \nzh_CN.GB2312                       GB2312            GB2312            \nzh_CN.GBK                          GBK               GBK               \nzh_CN.UTF-8                        UTF-8             UTF-8             \nzh_CN.eucCN                        eucCN             GB2312            \nzh_HK                                                UTF-8             \nzh_HK.Big5HKSCS                    Big5HKSCS         BIG5-HKSCS        \nzh_HK.UTF-8                        UTF-8             UTF-8             \nzh_TW                                                UTF-8             \nzh_TW.Big5                         Big5              BIG5              \nzh_TW.UTF-8                        UTF-8             UTF-8             \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/freebsd-3.3",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nASCII            <error>           <error>           ASCII             \nUS-ASCII         <error>           <error>           ASCII             \nda_DK.DIS_8859-15  <error>           <error>           ISO-8859-15       \nda_DK.ISO_8859-1  <error>           <error>           ISO-8859-1        \nde_AT.DIS_8859-15  <error>           <error>           ISO-8859-15       \nde_AT.ISO_8859-1  <error>           <error>           ISO-8859-1        \nde_CH.DIS_8859-15  <error>           <error>           ISO-8859-15       \nde_CH.ISO_8859-1  <error>           <error>           ISO-8859-1        \nde_DE.DIS_8859-15  <error>           <error>           ISO-8859-15       \nde_DE.ISO_8859-1  <error>           <error>           ISO-8859-1        \nen_AU.DIS_8859-15  <error>           <error>           ISO-8859-15       \nen_AU.ISO_8859-1  <error>           <error>           ISO-8859-1        \nen_CA.DIS_8859-15  <error>           <error>           ISO-8859-15       \nen_CA.ISO_8859-1  <error>           <error>           ISO-8859-1        \nen_GB.DIS_8859-15  <error>           <error>           ISO-8859-15       \nen_GB.ISO_8859-1  <error>           <error>           ISO-8859-1        \nen_US.DIS_8859-15  <error>           <error>           ISO-8859-15       \nen_US.ISO_8859-1  <error>           <error>           ISO-8859-1        \nes_ES.DIS_8859-15  <error>           <error>           ISO-8859-15       \nes_ES.ISO_8859-1  <error>           <error>           ISO-8859-1        \nfi_FI.DIS_8859-15  <error>           <error>           ISO-8859-15       \nfi_FI.ISO_8859-1  <error>           <error>           ISO-8859-1        \nfr_BE.DIS_8859-15  <error>           <error>           ISO-8859-15       \nfr_BE.ISO_8859-1  <error>           <error>           ISO-8859-1        \nfr_CA.DIS_8859-15  <error>           <error>           ISO-8859-15       \nfr_CA.ISO_8859-1  <error>           <error>           ISO-8859-1        \nfr_CH.DIS_8859-15  <error>           <error>           ISO-8859-15       \nfr_CH.ISO_8859-1  <error>           <error>           ISO-8859-1        \nfr_FR.DIS_8859-15  <error>           <error>           ISO-8859-15       \nfr_FR.ISO_8859-1  <error>           <error>           ISO-8859-1        \nhr_HR.ISO_8859-2  <error>           <error>           ISO-8859-2        \nhu_HU.ISO_8859-2  <error>           <error>           ISO-8859-2        \nis_IS.DIS_8859-15  <error>           <error>           ISO-8859-15       \nis_IS.ISO_8859-1  <error>           <error>           ISO-8859-1        \nit_CH.DIS_8859-15  <error>           <error>           ISO-8859-15       \nit_CH.ISO_8859-1  <error>           <error>           ISO-8859-1        \nit_IT.DIS_8859-15  <error>           <error>           ISO-8859-15       \nit_IT.ISO_8859-1  <error>           <error>           ISO-8859-1        \nja_JP.EUC        <error>           <error>           ASCII             \nja_JP.SJIS       <error>           <error>           ASCII             \nja_JP.Shift_JIS  <error>           <error>           ASCII             \nko_KR.EUC        <error>           <error>           ASCII             \nlt_LN.ASCII      <error>           <error>           ASCII             \nlt_LN.DIS_8859-15  <error>           <error>           ISO-8859-15       \nlt_LN.ISO_8859-1  <error>           <error>           ISO-8859-1        \nlt_LN.ISO_8859-2  <error>           <error>           ISO-8859-2        \nnl_BE.DIS_8859-15  <error>           <error>           ISO-8859-15       \nnl_BE.ISO_8859-1  <error>           <error>           ISO-8859-1        \nnl_NL.DIS_8859-15  <error>           <error>           ISO-8859-15       \nnl_NL.ISO_8859-1  <error>           <error>           ISO-8859-1        \nno_NO.DIS_8859-15  <error>           <error>           ISO-8859-15       \nno_NO.ISO_8859-1  <error>           <error>           ISO-8859-1        \npl_PL.ISO_8859-2  <error>           <error>           ISO-8859-2        \npt_PT.DIS_8859-15  <error>           <error>           ISO-8859-15       \npt_PT.ISO_8859-1  <error>           <error>           ISO-8859-1        \nru_RU.CP866      <error>           <error>           CP866             \nru_RU.KOI8-R     <error>           <error>           KOI8-R            \nru_SU.CP866      <error>           <error>           CP866             \nru_SU.KOI8-R     <error>           <error>           KOI8-R            \nsl_SI.ISO_8859-2  <error>           <error>           ISO-8859-2        \nsv_SE.DIS_8859-15  <error>           <error>           ISO-8859-15       \nsv_SE.ISO_8859-1  <error>           <error>           ISO-8859-1        \nzh_CN.EUC        <error>           <error>           ASCII             \nzh_TW.Big5       <error>           <error>           ASCII             \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/glibc-2.1.3",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nca               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nca_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ncroatian         ISO-8859-2        ISO-8859-2        ISO-8859-2        \ncs               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \ncs_CZ            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nczech            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nda               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nda_DK            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndanish           ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndansk            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nde_AT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_DE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_DE.UTF-8      UTF-8             UTF-8             UTF-8             \nde_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndeutsch          ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndutch            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nel               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nel_GR            ISO-8859-7        ISO-8859-7        ISO-8859-7        \nen               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nen_AU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_DK            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_IE            ISO-8859-1        ANSI_X3.4-1968    ISO-8859-1        \nen_US            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nes_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \net               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \net_EE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \neu               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \neu_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfi               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nfi_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfinnish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfo_FO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nfranais         ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_CH            ISO-8859-1        ANSI_X3.4-1968    ISO-8859-1        \nfrench           ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_FR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nga               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nga_IE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngerman           ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngreek            ISO-8859-7        ISO-8859-7        ISO-8859-7        \ngr_GR            ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nhebrew           ISO-8859-8        ISO-8859-8        ISO-8859-8        \nhr               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nhr_HR            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhrvatski         ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhu               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nhu_HU            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhungarian        ISO-8859-2        ISO-8859-2        ISO-8859-2        \nicelandic        ISO-8859-1        ISO-8859-1        ISO-8859-1        \nid               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nin_ID            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nis_IS            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nit               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nitalian          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nit_CH            ISO-8859-1        ANSI_X3.4-1968    ISO-8859-1        \nit_IT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \niw_IL            ISO-8859-8        ISO-8859-8        ISO-8859-8        \nja               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \njapanese         ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \njapanese.euc     ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nkl_GL            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nko               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nlt_LT            BALTIC            ISO-8859-13       ISO-8859-13       \nlv_LV            BALTIC            ISO-8859-13       ISO-8859-13       \nnl               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nnl_BE            ISO-8859-1        ANSI_X3.4-1968    ISO-8859-1        \nnl_NL            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nno               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nno_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nno@nynorsk       ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nnorwegian        ISO-8859-1        ISO-8859-1        ISO-8859-1        \npl               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \npl_PL            ISO-8859-2        ISO-8859-2        ISO-8859-2        \npolish           ISO-8859-2        ISO-8859-2        ISO-8859-2        \nportuguese       ISO-8859-1        ISO-8859-1        ISO-8859-1        \nPOSIX            ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \npt               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \npt_BR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \npt_PT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nro               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nromanian         ISO-8859-2        ISO-8859-2        ISO-8859-2        \nro_RO            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nru               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nru_RU            ISO-8859-5        ISO-8859-5        ISO-8859-5        \nru_RU.KOI8-R     KOI8-R            KOI8-R            KOI8-R            \nrussian          ISO-8859-5        ISO-8859-5        ISO-8859-5        \nru_UA            KOI8-U            KOI8-U            KOI8-U            \nsk               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nsk_SK            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nsl               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nslovak           ISO-8859-2        ISO-8859-2        ISO-8859-2        \nslovene          ISO-8859-2        ISO-8859-2        ISO-8859-2        \nslovenian        ISO-8859-2        ISO-8859-2        ISO-8859-2        \nsl_SI            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nspanish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsr               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nsr_YU            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nsv               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nsv_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsv_SE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nswedish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \ntr               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \ntr_TR            ISO-8859-9        ISO-8859-9        ISO-8859-9        \nturkish          ISO-8859-9        ISO-8859-9        ISO-8859-9        \nuk               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nuk_UA            KOI8-U            KOI8-U            KOI8-U            \nwa               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nzh               ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nzh_TW.Big5       ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/glibc-2.1.90",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\naf_ZA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nar_SA            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nbg_BG            CP1251            CP1251            CP1251            \nC                ANSI_X3.4-1968    ANSI_X3.4-1968    ASCII             \nca_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ncatalan          ISO-8859-1        ISO-8859-1        ISO-8859-1        \ncroatian         ISO-8859-2        ISO-8859-2        ISO-8859-2        \ncs_CZ            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nczech            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nda_DK            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndanish           ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndansk            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde               ANSI_X3.4-1968    ANSI_X3.4-1968    ASCII             \nde_AT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_DE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_DE.utf8       UTF-8             UTF-8             UTF-8             \nde_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndeutsch          ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndutch            ISO-8859-1        ISO-8859-1        ISO-8859-1        \neesti            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nel_GR            ISO-8859-7        ISO-8859-7        ISO-8859-7        \nen_AU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_DK            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_US            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nestonian         ISO-8859-1        ISO-8859-1        ISO-8859-1        \net_EE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \neu_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfi_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfinnish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfo_FO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr               ANSI_X3.4-1968    ANSI_X3.4-1968    ASCII             \nfranais         ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfrench           ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_FR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nga_IE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngalego           ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngalician         ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngerman           ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngl_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngreek            ISO-8859-7        ISO-8859-7        ISO-8859-7        \ngv_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nhebrew           ISO-8859-8        ISO-8859-8        ISO-8859-8        \nhr_HR            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhrvatski         ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhu_HU            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhungarian        ISO-8859-2        ISO-8859-2        ISO-8859-2        \nicelandic        ISO-8859-1        ISO-8859-1        ISO-8859-1        \nin_ID            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nis_IS            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nitalian          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nit_IT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \niw_IL            ISO-8859-8        ISO-8859-8        ISO-8859-8        \njapanese         ANSI_X3.4-1968    ANSI_X3.4-1968    ASCII             \njapanese.euc     ANSI_X3.4-1968    ANSI_X3.4-1968    ASCII             \nkl_GL            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nkw_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nlithuanian       ISO-8859-13       ISO-8859-13       ISO-8859-13       \nlt_LT            ISO-8859-13       ISO-8859-13       ISO-8859-13       \nlv_LV            ISO-8859-13       ISO-8859-13       ISO-8859-13       \nmk_MK            ISO-8859-5        ISO-8859-5        ISO-8859-5        \nnl               ANSI_X3.4-1968    ANSI_X3.4-1968    ASCII             \nnl_NL            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nno_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nnorwegian        ISO-8859-1        ISO-8859-1        ISO-8859-1        \npl_PL            ISO-8859-2        ISO-8859-2        ISO-8859-2        \npolish           ISO-8859-2        ISO-8859-2        ISO-8859-2        \nportuguese       ISO-8859-1        ISO-8859-1        ISO-8859-1        \nPOSIX            ANSI_X3.4-1968    ANSI_X3.4-1968    ASCII             \npt_BR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \npt_PT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nromanian         ISO-8859-2        ISO-8859-2        ISO-8859-2        \nro_RO            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nru_RU            ISO-8859-5        ISO-8859-5        ISO-8859-5        \nru_RU.KOI8-R     KOI8-R            KOI8-R            KOI8-R            \nrussian          ISO-8859-5        ISO-8859-5        ISO-8859-5        \nru_UA            KOI8-U            KOI8-U            KOI8-U            \nsk_SK            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nslovak           ISO-8859-2        ISO-8859-2        ISO-8859-2        \nslovene          ISO-8859-2        ISO-8859-2        ISO-8859-2        \nslovenian        ISO-8859-2        ISO-8859-2        ISO-8859-2        \nsl_SI            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nspanish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsr_YU            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nsv_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsv_SE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nswedish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \ntr_TR            ISO-8859-9        ISO-8859-9        ISO-8859-9        \nturkish          ISO-8859-9        ISO-8859-9        ISO-8859-9        \nuk_UA            KOI8-U            KOI8-U            KOI8-U            \nuk_UA.utf8       UTF-8             UTF-8             UTF-8             \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/glibc-2.2",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\naf_ZA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nar_AE            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_BH            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_DZ            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_EG            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_IQ            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_JO            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_KW            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_LB            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_LY            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_MA            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_OM            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_QA            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_SA            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_SD            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_SY            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_TN            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nar_YE            ISO-8859-6        ISO-8859-6        ISO-8859-6        \nbe_BY            CP1251            CP1251            CP1251            \nbg_BG            CP1251            CP1251            CP1251            \nbokmal           ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nbokml           ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nC                ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nca_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nca_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \ncatalan          ISO-8859-1        ISO-8859-1        ISO-8859-1        \ncroatian         ISO-8859-2        ISO-8859-2        ISO-8859-2        \ncs_CZ            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nczech            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nda_DK            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndanish           ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndansk            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_AT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_AT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nde_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_BE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nde_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_DE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_DE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nde_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nde_LU@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \ndeutsch          ISO-8859-1        ISO-8859-1        ISO-8859-1        \ndutch            ISO-8859-1        ISO-8859-1        ISO-8859-1        \neesti            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nel_GR            ISO-8859-7        ISO-8859-7        ISO-8859-7        \nen_AU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_BW            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_DK            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_IE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_IE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nen_NZ            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_US            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_ZA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nen_ZW            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_AR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_BO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_CL            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_CO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_CR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_DO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_EC            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nes_GT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_HN            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_MX            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_NI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_PA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_PE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_PR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_PY            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_SV            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nestonian         ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_US            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_UY            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nes_VE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \net_EE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \neu_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \neu_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nfa_IR            UTF-8             UTF-8             UTF-8             \nfi_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfi_FI@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nfinnish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfo_FO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfranais         ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_BE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nfr_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfrench           ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_FR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_FR@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nfr_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nfr_LU@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nga_IE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nga_IE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \ngalego           ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngalician         ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngerman           ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngl_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        \ngl_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \ngreek            ISO-8859-7        ISO-8859-7        ISO-8859-7        \ngv_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nhebrew           ISO-8859-8        ISO-8859-8        ISO-8859-8        \nhe_IL            ISO-8859-8        ISO-8859-8        ISO-8859-8        \nhi_IN            UTF-8             UTF-8             UTF-8             \nhr_HR            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhrvatski         ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhu_HU            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nhungarian        ISO-8859-2        ISO-8859-2        ISO-8859-2        \nicelandic        ISO-8859-1        ISO-8859-1        ISO-8859-1        \nid_ID            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nis_IS            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nitalian          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nit_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nit_IT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nit_IT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \niw_IL            ISO-8859-8        ISO-8859-8        ISO-8859-8        \nja_JP            EUC-JP            EUC-JP            EUC-JP            \nja_JP.eucjp      EUC-JP            EUC-JP            EUC-JP            \nja_JP.ujis       EUC-JP            EUC-JP            EUC-JP            \njapanese         EUC-JP            EUC-JP            EUC-JP            \njapanese.euc     EUC-JP            EUC-JP            EUC-JP            \njapanese.sjis    ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \nkl_GL            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nko_KR            EUC-KR            EUC-KR            EUC-KR            \nko_KR.euckr      EUC-KR            EUC-KR            EUC-KR            \nko_KR.utf8       UTF-8             UTF-8             UTF-8             \nkorean           EUC-KR            EUC-KR            EUC-KR            \nkorean.euc       EUC-KR            EUC-KR            EUC-KR            \nkw_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nlithuanian       ISO-8859-13       ISO-8859-13       ISO-8859-13       \nlt_LT            ISO-8859-13       ISO-8859-13       ISO-8859-13       \nlv_LV            ISO-8859-13       ISO-8859-13       ISO-8859-13       \nmk_MK            ISO-8859-5        ISO-8859-5        ISO-8859-5        \nmr_IN            UTF-8             UTF-8             UTF-8             \nmt_MT            ISO-8859-3        ISO-8859-3        ISO-8859-3        \nnb_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nnl_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nnl_BE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nnl_NL            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nnl_NL@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nnn_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nno_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nnorwegian        ISO-8859-1        ISO-8859-1        ISO-8859-1        \nnynorsk          ISO-8859-1        ISO-8859-1        ISO-8859-1        \npl_PL            ISO-8859-2        ISO-8859-2        ISO-8859-2        \npolish           ISO-8859-2        ISO-8859-2        ISO-8859-2        \nportuguese       ISO-8859-1        ISO-8859-1        ISO-8859-1        \nPOSIX            ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    \npt_BR            ISO-8859-1        ISO-8859-1        ISO-8859-1        \npt_PT            ISO-8859-1        ISO-8859-1        ISO-8859-1        \npt_PT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nromanian         ISO-8859-2        ISO-8859-2        ISO-8859-2        \nro_RO            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nru_RU            ISO-8859-5        ISO-8859-5        ISO-8859-5        \nru_RU.koi8r      KOI8-R            KOI8-R            KOI8-R            \nrussian          ISO-8859-5        ISO-8859-5        ISO-8859-5        \nru_UA            KOI8-U            KOI8-U            KOI8-U            \nsk_SK            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nslovak           ISO-8859-2        ISO-8859-2        ISO-8859-2        \nslovene          ISO-8859-2        ISO-8859-2        ISO-8859-2        \nslovenian        ISO-8859-2        ISO-8859-2        ISO-8859-2        \nsl_SI            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nspanish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsq_AL            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsr_YU            ISO-8859-2        ISO-8859-2        ISO-8859-2        \nsr_YU@cyrillic   ISO-8859-5        ISO-8859-5        ISO-8859-5        \nsv_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nsv_FI@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       \nsv_SE            ISO-8859-1        ISO-8859-1        ISO-8859-1        \nswedish          ISO-8859-1        ISO-8859-1        ISO-8859-1        \nth_TH            TIS-620           TIS-620           TIS-620           \ntr_TR            ISO-8859-9        ISO-8859-9        ISO-8859-9        \nturkish          ISO-8859-9        ISO-8859-9        ISO-8859-9        \nuk_UA            KOI8-U            KOI8-U            KOI8-U            \nvi_VN            UTF-8             UTF-8             UTF-8             \nzh_CN            GB2312            GB2312            GB2312            \nzh_CN.gb18030    GB18030           GB18030           GB18030           \nzh_HK            BIG5HKSCS         BIG5HKSCS         BIG5HKSCS         \nzh_TW            BIG5              BIG5              BIG5              \nzh_TW.euctw      EUC-TW            EUC-TW            EUC-TW            \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/glibc-2.2-XF86-3.3.6",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset()  X11 encoding     \n\naf_ZA            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nar_AE            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_BH            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_DZ            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_EG            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_IQ            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_JO            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_KW            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_LB            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_LY            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_MA            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_OM            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_QA            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_SA            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_SD            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_SY            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_TN            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_YE            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nbe_BY            CP1251            CP1251            CP1251            <error>          \nbg_BG            CP1251            CP1251            CP1251            ISO8859-5        \nbokmal           ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    STRING           \nbokml           ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    STRING           \nC                ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    STRING           \nca_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nca_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \ncatalan          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ncroatian         ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \ncs_CZ            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nczech            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nda_DK            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \ndanish           ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ndansk            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nde_AT            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nde_AT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nde_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nde_BE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nde_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nde_DE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nde_DE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nde_DE.utf8       UTF-8             UTF-8             UTF-8             <error>          \nde_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nde_LU@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \ndeutsch          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ndutch            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \neesti            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nel_GR            ISO-8859-7        ISO-8859-7        ISO-8859-7        ISO8859-7        \nen_AU            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_BW            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nen_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_DK            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nen_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_IE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_IE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nen_NZ            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_US            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_ZA            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nen_ZW            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_AR            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_BO            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_CL            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_CO            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_CR            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_DO            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_EC            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nes_GT            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_HN            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_MX            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_NI            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_PA            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_PE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_PR            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_PY            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_SV            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nestonian         ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_US            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_UY            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_VE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \net_EE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-4        \neu_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \neu_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nfa_IR            UTF-8             UTF-8             UTF-8             <error>          \nfi_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nfi_FI@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nfinnish          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nfo_FO            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nfranais         ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nfr_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nfr_BE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nfr_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nfr_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nfrench           ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nfr_FR            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nfr_FR@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nfr_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nfr_LU@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nga_IE            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nga_IE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \ngalego           ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ngalician         ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ngerman           ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ngl_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ngl_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \ngreek            ISO-8859-7        ISO-8859-7        ISO-8859-7        <error>          \ngv_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nhebrew           ISO-8859-8        ISO-8859-8        ISO-8859-8        <error>          \nhe_IL            ISO-8859-8        ISO-8859-8        ISO-8859-8        <error>          \nhi_IN            UTF-8             UTF-8             UTF-8             <error>          \nhr_HR            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nhrvatski         ISO-8859-2        ISO-8859-2        ISO-8859-2        <error>          \nhu_HU            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nhungarian        ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nicelandic        ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nid_ID            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nis_IS            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nitalian          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nit_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nit_IT            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nit_IT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \niw_IL            ISO-8859-8        ISO-8859-8        ISO-8859-8        ISO8859-8        \nja_JP            EUC-JP            EUC-JP            EUC-JP            ja.euc           \nja_JP.eucjp      EUC-JP            EUC-JP            EUC-JP            <error>          \nja_JP.ujis       EUC-JP            EUC-JP            EUC-JP            ja.euc           \njapanese         EUC-JP            EUC-JP            EUC-JP            ja.sjis          \njapanese.euc     EUC-JP            EUC-JP            EUC-JP            ja.euc           \njapanese.sjis    ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    STRING           \nkl_GL            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nko_KR            EUC-KR            EUC-KR            EUC-KR            ko.euc           \nko_KR.euckr      EUC-KR            EUC-KR            EUC-KR            <error>          \nko_KR.utf8       UTF-8             UTF-8             UTF-8             <error>          \nkorean           EUC-KR            EUC-KR            EUC-KR            ko.euc           \nkorean.euc       EUC-KR            EUC-KR            EUC-KR            <error>          \nkw_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nlithuanian       ISO-8859-13       ISO-8859-13       ISO-8859-13       <error>          \nlt_LT            ISO-8859-13       ISO-8859-13       ISO-8859-13       <error>          \nlv_LV            ISO-8859-13       ISO-8859-13       ISO-8859-13       <error>          \nmk_MK            ISO-8859-5        ISO-8859-5        ISO-8859-5        ISO8859-5        \nmr_IN            UTF-8             UTF-8             UTF-8             <error>          \nmt_MT            ISO-8859-3        ISO-8859-3        ISO-8859-3        <error>          \nnb_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nnl_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nnl_BE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nnl_NL            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nnl_NL@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nnn_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nno_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nnorwegian        ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nnynorsk          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \npl_PL            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \npolish           ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nportuguese       ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nPOSIX            ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    STRING           \npt_BR            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \npt_PT            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \npt_PT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nromanian         ISO-8859-2        ISO-8859-2        ISO-8859-2        <error>          \nro_RO            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nru_RU            ISO-8859-5        ISO-8859-5        ISO-8859-5        ISO8859-5        \nru_RU.koi8r      KOI8-R            KOI8-R            KOI8-R            <error>          \nrussian          ISO-8859-5        ISO-8859-5        ISO-8859-5        ISO8859-5        \nru_UA            KOI8-U            KOI8-U            KOI8-U            <error>          \nsk_SK            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nslovak           ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nslovene          ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nslovenian        ISO-8859-2        ISO-8859-2        ISO-8859-2        <error>          \nsl_SI            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nspanish          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nsq_AL            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nsr_YU            ISO-8859-2        ISO-8859-2        ISO-8859-2        <error>          \nsr_YU@cyrillic   ISO-8859-5        ISO-8859-5        ISO-8859-5        <error>          \nsv_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nsv_FI@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nsv_SE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nswedish          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nth_TH            TIS-620           TIS-620           TIS-620           <error>          \ntr_TR            ISO-8859-9        ISO-8859-9        ISO-8859-9        ISO8859-9        \nturkish          ISO-8859-9        ISO-8859-9        ISO-8859-9        <error>          \nuk_UA            KOI8-U            KOI8-U            KOI8-U            <error>          \nvi_VN            UTF-8             UTF-8             UTF-8             <error>          \nzh_CN            GB2312            GB2312            GB2312            zh.euc           \nzh_CN.gb18030    GB18030           GB18030           GB18030           <error>          \nzh_HK            BIG5HKSCS         BIG5HKSCS         BIG5HKSCS         <error>          \nzh_TW            BIG5              BIG5              BIG5              zh_TW.euc        \nzh_TW.euctw      EUC-TW            EUC-TW            EUC-TW            <error>          \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/glibc-2.2-XF86-4.0.1f",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset()  X11 encoding     \n\naf_ZA            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nar_AE            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_BH            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_DZ            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_EG            ISO-8859-6        ISO-8859-6        ISO-8859-6        ISO8859-6        \nar_IQ            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_JO            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_KW            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_LB            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_LY            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_MA            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_OM            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_QA            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_SA            ISO-8859-6        ISO-8859-6        ISO-8859-6        ISO8859-6        \nar_SD            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_SY            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_TN            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nar_YE            ISO-8859-6        ISO-8859-6        ISO-8859-6        <error>          \nbe_BY            CP1251            CP1251            CP1251            MICROSOFT-CP1251 \nbg_BG            CP1251            CP1251            CP1251            MICROSOFT-CP1251 \nbokmal           ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    STRING           \nbokml           ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    STRING           \nC                ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    STRING           \nca_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nca_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \ncatalan          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ncroatian         ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \ncs_CZ            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nczech            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nda_DK            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \ndanish           ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ndansk            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nde_AT            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nde_AT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nde_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nde_BE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nde_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nde_DE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nde_DE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nde_DE.utf8       UTF-8             UTF-8             UTF-8             <error>          \nde_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nde_LU@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \ndeutsch          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ndutch            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \neesti            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nel_GR            ISO-8859-7        ISO-8859-7        ISO-8859-7        ISO8859-7        \nen_AU            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_BW            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nen_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_DK            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nen_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_IE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_IE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nen_NZ            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_US            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nen_ZA            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nen_ZW            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_AR            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_BO            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_CL            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_CO            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_CR            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_DO            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_EC            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nes_GT            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_HN            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_MX            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_NI            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_PA            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_PE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_PR            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_PY            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_SV            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nestonian         ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_US            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nes_UY            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nes_VE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \net_EE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-15       \neu_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \neu_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nfa_IR            UTF-8             UTF-8             UTF-8             ISIRI-3342       \nfi_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-15       \nfi_FI@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nfinnish          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nfo_FO            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nfranais         ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nfr_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nfr_BE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nfr_CA            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nfr_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nfrench           ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nfr_FR            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nfr_FR@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nfr_LU            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nfr_LU@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nga_IE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nga_IE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \ngalego           ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ngalician         ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ngerman           ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \ngl_ES            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \ngl_ES@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \ngreek            ISO-8859-7        ISO-8859-7        ISO-8859-7        <error>          \ngv_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nhebrew           ISO-8859-8        ISO-8859-8        ISO-8859-8        <error>          \nhe_IL            ISO-8859-8        ISO-8859-8        ISO-8859-8        ISO8859-8        \nhi_IN            UTF-8             UTF-8             UTF-8             ISCII-DEV        \nhr_HR            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nhrvatski         ISO-8859-2        ISO-8859-2        ISO-8859-2        <error>          \nhu_HU            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nhungarian        ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nicelandic        ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nid_ID            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nis_IS            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nitalian          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nit_CH            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nit_IT            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nit_IT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \niw_IL            ISO-8859-8        ISO-8859-8        ISO-8859-8        ISO8859-8        \nja_JP            EUC-JP            EUC-JP            EUC-JP            ja.euc           \nja_JP.eucjp      EUC-JP            EUC-JP            EUC-JP            ja.euc           \nja_JP.ujis       EUC-JP            EUC-JP            EUC-JP            ja.euc           \njapanese         EUC-JP            EUC-JP            EUC-JP            ja.sjis          \njapanese.euc     EUC-JP            EUC-JP            EUC-JP            ja.euc           \njapanese.sjis    ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    STRING           \nkl_GL            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nko_KR            EUC-KR            EUC-KR            EUC-KR            ko.euc           \nko_KR.euckr      EUC-KR            EUC-KR            EUC-KR            ko.euc           \nko_KR.utf8       UTF-8             UTF-8             UTF-8             UTF-8            \nkorean           EUC-KR            EUC-KR            EUC-KR            ko.euc           \nkorean.euc       EUC-KR            EUC-KR            EUC-KR            <error>          \nkw_GB            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nlithuanian       ISO-8859-13       ISO-8859-13       ISO-8859-13       <error>          \nlt_LT            ISO-8859-13       ISO-8859-13       ISO-8859-13       ISO8859-13       \nlv_LV            ISO-8859-13       ISO-8859-13       ISO-8859-13       ISO8859-13       \nmk_MK            ISO-8859-5        ISO-8859-5        ISO-8859-5        ISO8859-5        \nmr_IN            UTF-8             UTF-8             UTF-8             <error>          \nmt_MT            ISO-8859-3        ISO-8859-3        ISO-8859-3        <error>          \nnb_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nnl_BE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nnl_BE@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nnl_NL            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nnl_NL@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nnn_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nno_NO            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nnorwegian        ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nnynorsk          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \npl_PL            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \npolish           ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nportuguese       ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nPOSIX            ANSI_X3.4-1968    ANSI_X3.4-1968    ANSI_X3.4-1968    STRING           \npt_BR            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \npt_PT            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \npt_PT@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nromanian         ISO-8859-2        ISO-8859-2        ISO-8859-2        <error>          \nro_RO            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nru_RU            ISO-8859-5        ISO-8859-5        ISO-8859-5        KOI8-R           \nru_RU.koi8r      KOI8-R            KOI8-R            KOI8-R            KOI8-R           \nrussian          ISO-8859-5        ISO-8859-5        ISO-8859-5        ISO8859-5        \nru_UA            KOI8-U            KOI8-U            KOI8-U            KOI8-U           \nsk_SK            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nslovak           ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nslovene          ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nslovenian        ISO-8859-2        ISO-8859-2        ISO-8859-2        <error>          \nsl_SI            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nspanish          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nsq_AL            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-2        \nsr_YU            ISO-8859-2        ISO-8859-2        ISO-8859-2        ISO8859-2        \nsr_YU@cyrillic   ISO-8859-5        ISO-8859-5        ISO-8859-5        <error>          \nsv_FI            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nsv_FI@euro       ISO-8859-15       ISO-8859-15       ISO-8859-15       <error>          \nsv_SE            ISO-8859-1        ISO-8859-1        ISO-8859-1        ISO8859-1        \nswedish          ISO-8859-1        ISO-8859-1        ISO-8859-1        <error>          \nth_TH            TIS-620           TIS-620           TIS-620           <error>          \ntr_TR            ISO-8859-9        ISO-8859-9        ISO-8859-9        ISO8859-9        \nturkish          ISO-8859-9        ISO-8859-9        ISO-8859-9        <error>          \nuk_UA            KOI8-U            KOI8-U            KOI8-U            KOI8-U           \nvi_VN            UTF-8             UTF-8             UTF-8             TCVN-5712        \nzh_CN            GB2312            GB2312            GB2312            zh.euc           \nzh_CN.gb18030    GB18030           GB18030           GB18030           <error>          \nzh_HK            BIG5HKSCS         BIG5HKSCS         BIG5HKSCS         <error>          \nzh_TW            BIG5              BIG5              BIG5              zh_TW.Big5       \nzh_TW.euctw      EUC-TW            EUC-TW            EUC-TW            <error>          \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/hpux-10.01",
    "content": "locale_charset.c:\n../../lib/localcharset.c:\nlocale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                \"\"                roman8            HP-ROMAN8         \nC.iso88591       \"iso88591.cm\"     iso88591          ISO-8859-1        \nPOSIX            \"\"                roman8            HP-ROMAN8         \nar_DZ.arabic8    \"arabic8.cm\"      arabic8           HP-ARABIC8        \nar_SA.arabic8    \"arabic8.cm\"      arabic8           HP-ARABIC8        \nar_SA.iso88596   \"iso88596.cm\"     iso88596          ISO-8859-6        \nbg_BG.iso88595   \"iso88595.cm\"     iso88595          ISO-8859-5        \ncs_CZ.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nda_DK.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nda_DK.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nde_DE.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nde_DE.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nel_GR.greek8     \"./data/greek8.cm\" greek8            HP-GREEK8         \nel_GR.iso88597   \"./data/iso88597.cm\" iso88597          ISO-8859-7        \nen_GB.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nen_GB.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nen_US.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nen_US.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nes_ES.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nes_ES.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nfi_FI.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nfi_FI.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nfr_CA.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nfr_CA.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nfr_FR.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nfr_FR.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nhr_HR.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nhu_HU.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nis_IS.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nis_IS.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nit_IT.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nit_IT.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \niw_IL.hebrew8    \"hebrew8.cm\"      hebrew8           HP-HEBREW8        \niw_IL.iso88598   \"iso88598.cm\"     iso88598          ISO-8859-8        \nnl_NL.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nnl_NL.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nno_NO.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nno_NO.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \npl_PL.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \npt_PT.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \npt_PT.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nro_RO.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nru_RU.iso88595   \"iso88595.cm\"     iso88595          ISO-8859-5        \nsk_SK.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nsl_SI.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nsv_SE.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nsv_SE.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nth_TH.tis620     \"tis620.cm\"       tis620            TIS-620           \ntr_TR.iso88599   \"iso88599.cm\"     iso88599          ISO-8859-9        \ntr_TR.turkish8   \"turkish8.cm\"     turkish8          HP-TURKISH8       \nzh_CN.hp15CN     \"./data/hp15CN.cm\" hp15CN            EUC-CN            \nzh_TW.eucTW      \"./data/eucTW.cm\" eucTW             EUC-TW            \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/hpux-10.20",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                \"\"                roman8            HP-ROMAN8         \nC.iso88591       \"iso88591.cm\"     iso88591          ISO-8859-1        \nC.iso885915      \"iso885915.cm\"    iso885915         ISO-8859-15       \nC.utf8           \"utf8.cm\"         utf8              UTF-8             \nPOSIX            \"\"                roman8            HP-ROMAN8         \nar_DZ.arabic8    \"arabic8.cm\"      arabic8           HP-ARABIC8        \nar_SA.arabic8    \"arabic8.cm\"      arabic8           HP-ARABIC8        \nar_SA.iso88596   \"iso88596.cm\"     iso88596          ISO-8859-6        \nbg_BG.iso88595   \"iso88595.cm\"     iso88595          ISO-8859-5        \ncs_CZ.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nda_DK.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nda_DK.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nda_DK.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nde_DE.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nde_DE.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nde_DE.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nel_GR.greek8     \"greek8.cm\"       greek8            HP-GREEK8         \nel_GR.iso88597   \"iso88597.cm\"     iso88597          ISO-8859-7        \nen_GB.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nen_GB.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nen_GB.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nen_US.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nen_US.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nes_ES.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nes_ES.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nes_ES.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nfi_FI.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nfi_FI.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nfi_FI.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nfr_CA.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nfr_CA.iso885915  \"iso885915.cm\"    iso885915         ISO-8859-15       \nfr_CA.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nfr_FR.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nfr_FR.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nfr_FR.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nhr_HR.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nhu_HU.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nis_IS.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nis_IS.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nis_IS.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nit_IT.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nit_IT.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nit_IT.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \niw_IL.hebrew8    \"hebrew8.cm\"      hebrew8           HP-HEBREW8        \niw_IL.iso88598   \"iso88598.cm\"     iso88598          ISO-8859-8        \nnl_NL.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nnl_NL.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nnl_NL.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nno_NO.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nno_NO.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nno_NO.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \npl_PL.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \npt_PT.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \npt_PT.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \npt_PT.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nro_RO.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nru_RU.iso88595   \"iso88595.cm\"     iso88595          ISO-8859-5        \nsk_SK.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nsl_SI.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nsv_SE.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nsv_SE.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nsv_SE.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nth_TH.tis620     \"tis620.cm\"       tis620            TIS-620           \ntr_TR.iso88599   \"iso88599.cm\"     iso88599          ISO-8859-9        \ntr_TR.turkish8   \"turkish8.cm\"     turkish8          HP-TURKISH8       \nuniv.utf8        \"utf8.cm\"         utf8              UTF-8             \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/hpux-11.00",
    "content": "locale_charset.c:\n../../lib/localcharset.c:\nlocale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                \"\"                roman8            HP-ROMAN8         \nC.iso88591       \"iso88591.cm\"     iso88591          ISO-8859-1        \nC.iso885915      \"iso885915.cm\"    iso885915         ISO-8859-15       \nC.utf8           \"utf8.cm\"         utf8              UTF-8             \nPOSIX            \"\"                roman8            HP-ROMAN8         \nar_DZ.arabic8    \"arabic8.cm\"      arabic8           HP-ARABIC8        \nar_SA.arabic8    \"arabic8.cm\"      arabic8           HP-ARABIC8        \nar_SA.iso88596   \"iso88596.cm\"     iso88596          ISO-8859-6        \nbg_BG.iso88595   \"iso88595.cm\"     iso88595          ISO-8859-5        \ncs_CZ.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nda_DK.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nda_DK.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nda_DK.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nde_DE.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nde_DE.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nde_DE.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nel_GR.greek8     \"greek8.cm\"       greek8            HP-GREEK8         \nel_GR.iso88597   \"iso88597.cm\"     iso88597          ISO-8859-7        \nen_GB.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nen_GB.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nen_GB.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nen_US.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nen_US.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nes_ES.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nes_ES.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nes_ES.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nfi_FI.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nfi_FI.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nfi_FI.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nfr_CA.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nfr_CA.iso885915  \"iso885915.cm\"    iso885915         ISO-8859-15       \nfr_CA.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nfr_FR.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nfr_FR.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nfr_FR.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nhr_HR.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nhu_HU.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nis_IS.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nis_IS.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nis_IS.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nit_IT.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nit_IT.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nit_IT.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \niw_IL.hebrew8    \"hebrew8.cm\"      hebrew8           HP-HEBREW8        \niw_IL.iso88598   \"iso88598.cm\"     iso88598          ISO-8859-8        \nja_JP.SJIS       \"SJIS.cm\"         SJIS              SJIS              \nja_JP.eucJP      \"eucJP.cm\"        eucJP             EUC-JP            \nja_JP.kana8      \"kana8.cm\"        kana8             HP-KANA8          \nko_KR.eucKR      \"eucKR.cm\"        eucKR             EUC-KR            \nnl_NL.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nnl_NL.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nnl_NL.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nno_NO.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nno_NO.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nno_NO.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \npl_PL.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \npt_PT.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \npt_PT.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \npt_PT.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nro_RO.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nru_RU.iso88595   \"iso88595.cm\"     iso88595          ISO-8859-5        \nsk_SK.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nsl_SI.iso88592   \"iso88592.cm\"     iso88592          ISO-8859-2        \nsv_SE.iso88591   \"iso88591.cm\"     iso88591          ISO-8859-1        \nsv_SE.iso885915@euro  \"iso885915.cm\"    iso885915         ISO-8859-15       \nsv_SE.roman8     \"roman8.cm\"       roman8            HP-ROMAN8         \nth_TH.tis620     \"tis620.cm\"       tis620            TIS-620           \ntr_TR.iso88599   \"iso88599.cm\"     iso88599          ISO-8859-9        \ntr_TR.turkish8   \"turkish8.cm\"     turkish8          HP-TURKISH8       \nuniv.utf8        \"utf8.cm\"         utf8              UTF-8             \nzh_CN.hp15CN     \"hp15CN.cm\"       hp15CN            EUC-CN            \nzh_TW.big5       \"big5.cm\"         big5              BIG5              \nzh_TW.ccdc       \"ccdc.cm\"         ccdc              ccdc              bug\nzh_TW.eucTW      \"eucTW.cm\"        eucTW             EUC-TW            \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/irix-6.5",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                ISO8859-1         ISO8859-1         ISO-8859-1        \nPOSIX            ISO8859-1         ISO8859-1         ISO-8859-1        \ncharmap          ISO8859-1         ISO8859-1         ISO-8859-1        \ncs               ISO8859-2         ISO8859-2         ISO-8859-2        \nda               ISO8859-1         ISO8859-1         ISO-8859-1        \nde               ISO8859-1         ISO8859-1         ISO-8859-1        \nde_AT            ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nel               ISO8859-7         ISO8859-7         ISO-8859-7        \nen               ISO8859-1         ISO8859-1         ISO-8859-1        \nen_AU            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_FR            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US            ISO8859-1         ISO8859-1         ISO-8859-1        \nes               ISO8859-1         ISO8859-1         ISO-8859-1        \nes_AR            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_MX            ISO8859-1         ISO8859-1         ISO-8859-1        \nfi               ISO8859-1         ISO8859-1         ISO-8859-1        \nfr               ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nhu               ISO8859-2         ISO8859-2         ISO-8859-2        \nis               ISO8859-1         ISO8859-1         ISO-8859-1        \nit               ISO8859-1         ISO8859-1         ISO-8859-1        \nit_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nja_JP.EUC        eucJP             eucJP             EUC-JP            \nko_KR.euc        eucKR             eucKR             EUC-KR            \nnl               ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nno               ISO8859-1         ISO8859-1         ISO-8859-1        \npl               ISO8859-2         ISO8859-2         ISO-8859-2        \npt               ISO8859-1         ISO8859-1         ISO-8859-1        \npt_BR            ISO8859-1         ISO8859-1         ISO-8859-1        \nru               ISO8859-5         ISO8859-5         ISO-8859-5        \nsk               ISO8859-2         ISO8859-2         ISO-8859-2        \nsv               ISO8859-1         ISO8859-1         ISO-8859-1        \ntr               ISO8859-9         ISO8859-9         ISO-8859-9        \nzh_CN.ugb        eucCN             eucCN             EUC-CN            \nzh_TW.ucns       eucTW             eucTW             EUC-TW            \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/locale_charmap",
    "content": "#! /bin/sh\n# Prints the system dependent name for the current locale's charmap.\n\nlocale charmap\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/locale_charset.c",
    "content": "/* Prints the portable name for the current locale's charset. */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <locale.h>\n#include \"localcharset.h\"\n\nint main ()\n{\n  setlocale(LC_ALL, \"\");\n  printf(\"%s\\n\", locale_charset());\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/locale_codeset.c",
    "content": "/* Prints the system dependent name for the current locale's codeset. */\n\n#define _XOPEN_SOURCE 500  /* Needed on AIX 3.2.5 */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <locale.h>\n#include <langinfo.h>\n\nint main ()\n{\n  setlocale(LC_ALL, \"\");\n  printf(\"%s\\n\", nl_langinfo(CODESET));\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/locale_monthnames.c",
    "content": "/* Prints the system dependent names for the 12 months in the current locale. */\n\n#define _XOPEN_SOURCE 500  /* Needed on AIX 3.2.5 */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <locale.h>\n#include <langinfo.h>\n\nint main ()\n{\n  setlocale(LC_ALL, \"\");\n  printf(\"%s\\n\", nl_langinfo(MON_1));\n  printf(\"%s\\n\", nl_langinfo(MON_2));\n  printf(\"%s\\n\", nl_langinfo(MON_3));\n  printf(\"%s\\n\", nl_langinfo(MON_4));\n  printf(\"%s\\n\", nl_langinfo(MON_5));\n  printf(\"%s\\n\", nl_langinfo(MON_6));\n  printf(\"%s\\n\", nl_langinfo(MON_7));\n  printf(\"%s\\n\", nl_langinfo(MON_8));\n  printf(\"%s\\n\", nl_langinfo(MON_9));\n  printf(\"%s\\n\", nl_langinfo(MON_10));\n  printf(\"%s\\n\", nl_langinfo(MON_11));\n  printf(\"%s\\n\", nl_langinfo(MON_12));\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/locale_x11encoding.c",
    "content": "/* Prints the locale's encoding via libX11. */\n\n#include <stdlib.h>\n#include <stdio.h>\n#include <assert.h>\n#include <locale.h>\n#include <X11/Xlib.h>\n#include <X11/Xutil.h>\n\nint main (int argc, char* argv[])\n{\n  Display* display;\n  XTextProperty textprop;\n  char* input;\n\n  if (argc != 1)\n    exit(1);\n\n  setlocale(LC_CTYPE,\"\");\n\n  display = XOpenDisplay(NULL);\n  if (display == NULL) {\n    fprintf(stderr,\"cannot open display\\n\");\n    exit(1);\n  }\n\n  input = \"\";\n  if (XmbTextListToTextProperty(display, &input, 1, XTextStyle, &textprop) != Success) {\n    fprintf(stderr,\"XmbTextListToTextProperty failed\\n\");\n    exit(1);\n  }\n  assert(textprop.format == 8);\n  assert(textprop.nitems == 0);\n\n  printf(\"%s\\n\", XGetAtomName(display, textprop.encoding));\n\n  XCloseDisplay(display);\n\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/netbsd-3.0",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                646               646               ASCII             \nPOSIX            646               646               ASCII             \nbg_BG.CP1251     CP1251            CP1251            CP1251            \nca               646               646               ASCII             \nca_ES.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nca_ES.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \ncs               646               646               ASCII             \ncs_CZ.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nda               646               646               ASCII             \nda_DK.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nda_DK.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nde               646               646               ASCII             \nde_AT            646               646               ASCII             \nde_AT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_AT.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nde_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nde_DE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_DE.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nel               646               646               ASCII             \nel_GR.ISO8859-7  ISO8859-7         ISO8859-7         ISO-8859-7        \nen_AU.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_AU.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_CA.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_CA.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_GB.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_GB.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_US.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_US.UTF-8      UTF-8             UTF-8             UTF-8             \neo               646               646               ASCII             \nes               646               646               ASCII             \nes_ES.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nes_ES.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \net               646               646               ASCII             \nfi_FI.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfi_FI.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr               646               646               ASCII             \nfr_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_CA.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_FR.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_FR.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \ngl               646               646               ASCII             \nhe               646               646               ASCII             \nhr               646               646               ASCII             \nhr_HR.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nhu_HU.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nhy_AM.ARMSCII-8  ARMSCII-8         ARMSCII-8         ARMSCII-8         bug\nid               646               646               ASCII             \nis_IS.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nis_IS.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nit               646               646               ASCII             \nit_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nit_CH.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nit_IT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nit_IT.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nja               646               646               ASCII             \nja_JP.ISO2022-JP  ISO2022-JP        ISO2022-JP        ISO2022-JP        bug\nja_JP.ISO2022-JP2  ISO2022-JP2       ISO2022-JP2       ISO2022-JP2       bug\nja_JP.SJIS       SJIS              SJIS              SHIFT_JIS         \nja_JP.ct         CTEXT             CTEXT             CTEXT             bug\nja_JP.eucJP      eucJP             eucJP             EUC-JP            \nko               646               646               ASCII             \nko_KR.eucKR      eucKR             eucKR             EUC-KR            \nlocale.alias     646               646               ASCII             \nlt_LT.ISO8859-13  ISO8859-13        ISO8859-13        ISO-8859-13       \nlt_LT.ISO8859-4  ISO8859-4         ISO8859-4         ISO-8859-4        \nnb               646               646               ASCII             \nnl               646               646               ASCII             \nnl_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_BE.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nnl_NL.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_NL.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nno               646               646               ASCII             \nno@nynorsk       646               646               ASCII             \nno_NO.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nno_NO.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \npl               646               646               ASCII             \npl_PL.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \npt               646               646               ASCII             \npt_BR            646               646               ASCII             \npt_PT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \npt_PT.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nro               646               646               ASCII             \nru               646               646               ASCII             \nru_RU.CP866      CP866             CP866             CP866             \nru_RU.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nru_RU.KOI8-R     KOI8-R            KOI8-R            KOI8-R            \nsk               646               646               ASCII             \nsk_SK.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsl               646               646               ASCII             \nsl_SI.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsv               646               646               ASCII             \nsv_SE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nsv_SE.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \ntr               646               646               ASCII             \nuk_UA.KOI8-U     KOI8-U            KOI8-U            KOI8-U            \nzh_CN            646               646               ASCII             \nzh_CN.GB18030    GB18030           GB18030           GB18030           \nzh_CN.eucCN      eucCN             eucCN             GB2312            \nzh_TW            646               646               ASCII             \nzh_TW.Big5       BIG5              BIG5              BIG5              \nzh_TW.eucTW      eucTW             eucTW             EUC-TW            \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/openbsd-4.1",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                <error>           646               646               \nbg_BG.CP1251     <error>           CP1251            CP1251            \nca_ES.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nca_ES.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \ncs_CZ.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \nda_DK.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nda_DK.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nde_AT.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nde_AT.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nde_CH.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nde_CH.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nde_DE.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nde_DE.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nel_GR.ISO8859-7  <error>           ISO8859-7         ISO-8859-7        \nen_AU.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nen_AU.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nen_CA.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nen_CA.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nen_GB.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nen_GB.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nen_US.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nen_US.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nes_ES.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nes_ES.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nfi_FI.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nfi_FI.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nfr_BE.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nfr_BE.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nfr_CA.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nfr_CA.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nfr_CH.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nfr_CH.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nfr_FR.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nfr_FR.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nhr_HR.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \nhu_HU.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \nhy_AM.ARMSCII-8  <error>           ARMSCII-8         ARMSCII-8         bug\nis_IS.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nis_IS.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nit_CH.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nit_CH.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nit_IT.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nit_IT.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nlt_LT.ISO8859-13  <error>           ISO8859-13        ISO-8859-13       \nlt_LT.ISO8859-4  <error>           ISO8859-4         ISO-8859-4        \nnl_BE.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nnl_BE.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nnl_NL.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nnl_NL.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nno_NO.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nno_NO.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \npl_PL.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \npt_PT.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \npt_PT.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nru_RU.CP866      <error>           CP866             CP866             \nru_RU.ISO8859-5  <error>           ISO8859-5         ISO-8859-5        \nru_RU.KOI8-R     <error>           KOI8-R            KOI8-R            \nsk_SK.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \nsl_SI.ISO8859-2  <error>           ISO8859-2         ISO-8859-2        \nsv_SE.ISO8859-1  <error>           ISO8859-1         ISO-8859-1        \nsv_SE.ISO8859-15  <error>           ISO8859-15        ISO-8859-15       \nuk_UA.KOI8-U     <error>           KOI8-U            KOI8-U            \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/osf1-4.0a",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nPOSIX            ISO8859-1         ISO8859-1         ISO-8859-1        \nda_DK.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_DE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nel_GR.ISO8859-7  ISO8859-7         ISO8859-7         ISO-8859-7        \nen_GB.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nes_ES.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfi_FI.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_FR.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nis_IS.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nit_IT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_NL.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nno_NO.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \npt_PT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nsv_SE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \ntr_TR.ISO8859-9  ISO8859-9         ISO8859-9         ISO-8859-9        \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/osf1-4.0d",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nPOSIX            ISO8859-1         ISO8859-1         ISO-8859-1        \nda_DK.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_DE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nel_GR.ISO8859-7  ISO8859-7         ISO8859-7         ISO-8859-7        \nen_GB.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US.cp850      cp850             cp850             CP850             \nes_ES.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfi_FI.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_FR.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nis_IS.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nit_IT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_NL.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nno_NO.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \npt_PT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nsv_SE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \ntr_TR.ISO8859-9  ISO8859-9         ISO8859-9         ISO-8859-9        \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/osf1-5.1",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nPOSIX            ISO8859-1         ISO8859-1         ISO-8859-1        \nca_ES            ISO8859-1         ISO8859-1         ISO-8859-1        \nca_ES.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nca_ES.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nca_ES.UTF-8      UTF-8             UTF-8             UTF-8             \ncs_CZ            ISO8859-2         ISO8859-2         ISO-8859-2        \ncs_CZ.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \ncs_CZ.ISO8859-2@ucs4  ISO8859-2         ISO8859-2         ISO-8859-2        \ncs_CZ@ucs4       ISO8859-2         ISO8859-2         ISO-8859-2        \nda_DK.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nda_DK.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nda_DK.UTF-8      UTF-8             UTF-8             UTF-8             \nde_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nde_CH.UTF-8      UTF-8             UTF-8             UTF-8             \nde_DE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nde_DE.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nde_DE.UTF-8      UTF-8             UTF-8             UTF-8             \nel_GR.ISO8859-7  ISO8859-7         ISO8859-7         ISO-8859-7        \nel_GR.ISO8859-7@ucs4  ISO8859-7         ISO8859-7         ISO-8859-7        \nen_EU.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nen_GB.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_GB.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_GB.UTF-8      UTF-8             UTF-8             UTF-8             \nen_US.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_US.UTF-8      UTF-8             UTF-8             UTF-8             \nen_US.UTF-8@euro  UTF-8             UTF-8             UTF-8             \nen_US.cp850      cp850             cp850             CP850             \nes_ES.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nes_ES.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nes_ES.UTF-8      UTF-8             UTF-8             UTF-8             \nfi_FI.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfi_FI.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nfi_FI.UTF-8      UTF-8             UTF-8             UTF-8             \nfr_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_BE.UTF-8      UTF-8             UTF-8             UTF-8             \nfr_CA.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_CA.UTF-8      UTF-8             UTF-8             UTF-8             \nfr_CH.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_CH.UTF-8      UTF-8             UTF-8             UTF-8             \nfr_FR.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_FR.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_FR.UTF-8      UTF-8             UTF-8             UTF-8             \nhe_IL            ISO8859-8         ISO8859-8         ISO-8859-8        \nhe_IL.ISO8859-8  ISO8859-8         ISO8859-8         ISO-8859-8        \nhe_IL.ISO8859-8@ucs4  ISO8859-8         ISO8859-8         ISO-8859-8        \nhe_IL@ucs4       ISO8859-8         ISO8859-8         ISO-8859-8        \nhu_HU            ISO8859-2         ISO8859-2         ISO-8859-2        \nhu_HU.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nhu_HU.ISO8859-2@ucs4  ISO8859-2         ISO8859-2         ISO-8859-2        \nhu_HU@ucs4       ISO8859-2         ISO8859-2         ISO-8859-2        \nis_IS.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nis_IS.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nit_IT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nit_IT.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nit_IT.UTF-8      UTF-8             UTF-8             UTF-8             \niw_IL            ISO8859-8         ISO8859-8         ISO-8859-8        \niw_IL.ISO8859-8  ISO8859-8         ISO8859-8         ISO-8859-8        \niw_IL.ISO8859-8@ucs4  ISO8859-8         ISO8859-8         ISO-8859-8        \niw_IL@ucs4       ISO8859-8         ISO8859-8         ISO-8859-8        \nja_JP            eucJP             eucJP             EUC-JP            \nja_JP.SJIS       SJIS              SJIS              SJIS              \nja_JP.SJIS@ucs4  SJIS              SJIS              SJIS              \nja_JP.UTF-8      UTF-8             UTF-8             UTF-8             \nja_JP.deckanji   deckanji          deckanji          DEC-KANJI         \nja_JP.deckanji@ucs4  deckanji          deckanji          DEC-KANJI         \nja_JP.eucJP      eucJP             eucJP             EUC-JP            \nja_JP.sdeckanji  sdeckanji         sdeckanji         EUC-JP            \nko_KR            deckorean         deckorean         EUC-KR            \nko_KR.KSC5601    KSC5601           KSC5601           CP949             \nko_KR.UTF-8      UTF-8             UTF-8             UTF-8             \nko_KR.deckorean  deckorean         deckorean         EUC-KR            \nko_KR.deckorean@ucs4  deckorean         deckorean         EUC-KR            \nko_KR.eucKR      eucKR             eucKR             EUC-KR            \nko_KR@ucs4       deckorean         deckorean         EUC-KR            \nlt_LT            ISO8859-4         ISO8859-4         ISO-8859-4        \nlt_LT.ISO8859-4  ISO8859-4         ISO8859-4         ISO-8859-4        \nnl_BE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_BE.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nnl_BE.UTF-8      UTF-8             UTF-8             UTF-8             \nnl_NL.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_NL.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nnl_NL.UTF-8      UTF-8             UTF-8             UTF-8             \nno_NO.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nno_NO.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nno_NO.UTF-8      UTF-8             UTF-8             UTF-8             \npl_PL            ISO8859-2         ISO8859-2         ISO-8859-2        \npl_PL.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \npl_PL.ISO8859-2@ucs4  ISO8859-2         ISO8859-2         ISO-8859-2        \npl_PL@ucs4       ISO8859-2         ISO8859-2         ISO-8859-2        \npt_PT.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \npt_PT.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \npt_PT.UTF-8      UTF-8             UTF-8             UTF-8             \nru_RU            ISO8859-5         ISO8859-5         ISO-8859-5        \nru_RU.ISO8859-5  ISO8859-5         ISO8859-5         ISO-8859-5        \nru_RU.ISO8859-5@ucs4  ISO8859-5         ISO8859-5         ISO-8859-5        \nru_RU@ucs4       ISO8859-5         ISO8859-5         ISO-8859-5        \nsk_SK            ISO8859-2         ISO8859-2         ISO-8859-2        \nsk_SK.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsk_SK.ISO8859-2@ucs4  ISO8859-2         ISO8859-2         ISO-8859-2        \nsk_SK@ucs4       ISO8859-2         ISO8859-2         ISO-8859-2        \nsl_SI            ISO8859-2         ISO8859-2         ISO-8859-2        \nsl_SI.ISO8859-2  ISO8859-2         ISO8859-2         ISO-8859-2        \nsv_SE.ISO8859-1  ISO8859-1         ISO8859-1         ISO-8859-1        \nsv_SE.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nsv_SE.UTF-8      UTF-8             UTF-8             UTF-8             \nth_TH            TACTIS            TACTIS            TIS-620           \nth_TH.TACTIS     TACTIS            TACTIS            TIS-620           \ntr_TR.ISO8859-9  ISO8859-9         ISO8859-9         ISO-8859-9        \ntr_TR.ISO8859-9@ucs4  ISO8859-9         ISO8859-9         ISO-8859-9        \nuniversal.UTF-8  UTF-8             UTF-8             UTF-8             \nuniversal.utf8@ucs4  UTF-8             UTF-8             UTF-8             \nzh_CN            dechanzi          dechanzi          GB2312            \nzh_CN.GBK        GBK               GBK               GBK               \nzh_CN.UTF-8      UTF-8             UTF-8             UTF-8             \nzh_CN.dechanzi   dechanzi          dechanzi          GB2312            \nzh_CN.dechanzi@pinyin  dechanzi          dechanzi          GB2312            \nzh_CN.dechanzi@pinyin@ucs4  dechanzi          dechanzi          GB2312            \nzh_CN.dechanzi@radical  dechanzi          dechanzi          GB2312            \nzh_CN.dechanzi@radical@ucs4  dechanzi          dechanzi          GB2312            \nzh_CN.dechanzi@stroke  dechanzi          dechanzi          GB2312            \nzh_CN.dechanzi@stroke@ucs4  dechanzi          dechanzi          GB2312            \nzh_CN.dechanzi@ucs4  dechanzi          dechanzi          GB2312            \nzh_CN@ucs4       dechanzi          dechanzi          GB2312            \nzh_HK.UTF-8      UTF-8             UTF-8             UTF-8             \nzh_HK.big5       big5              big5              BIG5              \nzh_HK.dechanyu   dechanyu          dechanyu          DEC-HANYU         \nzh_HK.dechanyu@ucs4  dechanyu          dechanyu          DEC-HANYU         \nzh_HK.dechanzi   dechanzi          dechanzi          GB2312            \nzh_HK.dechanzi@ucs4  dechanzi          dechanzi          GB2312            \nzh_HK.eucTW      eucTW             eucTW             EUC-TW            \nzh_HK.eucTW@ucs4  eucTW             eucTW             EUC-TW            \nzh_TW            eucTW             eucTW             EUC-TW            \nzh_TW.UTF-8      UTF-8             UTF-8             UTF-8             \nzh_TW.big5       big5              big5              BIG5              \nzh_TW.big5@chuyin  big5              big5              BIG5              \nzh_TW.big5@radical  big5              big5              BIG5              \nzh_TW.big5@stroke  big5              big5              BIG5              \nzh_TW.dechanyu   dechanyu          dechanyu          DEC-HANYU         \nzh_TW.dechanyu@chuyin  dechanyu          dechanyu          DEC-HANYU         \nzh_TW.dechanyu@chuyin@ucs4  dechanyu          dechanyu          DEC-HANYU         \nzh_TW.dechanyu@radical  dechanyu          dechanyu          DEC-HANYU         \nzh_TW.dechanyu@radical@ucs4  dechanyu          dechanyu          DEC-HANYU         \nzh_TW.dechanyu@stroke  dechanyu          dechanyu          DEC-HANYU         \nzh_TW.dechanyu@stroke@ucs4  dechanyu          dechanyu          DEC-HANYU         \nzh_TW.dechanyu@ucs4  dechanyu          dechanyu          DEC-HANYU         \nzh_TW.eucTW      eucTW             eucTW             EUC-TW            \nzh_TW.eucTW@chuyin  eucTW             eucTW             EUC-TW            \nzh_TW.eucTW@chuyin@ucs4  eucTW             eucTW             EUC-TW            \nzh_TW.eucTW@radical  eucTW             eucTW             EUC-TW            \nzh_TW.eucTW@radical@ucs4  eucTW             eucTW             EUC-TW            \nzh_TW.eucTW@stroke  eucTW             eucTW             EUC-TW            \nzh_TW.eucTW@stroke@ucs4  eucTW             eucTW             EUC-TW            \nzh_TW.eucTW@ucs4  eucTW             eucTW             EUC-TW            \nzh_TW@ucs4       dechanyu          dechanyu          DEC-HANYU         \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/solaris-2.4",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                <error>                                               bug\nPOSIX            <error>                                               bug\nde               <error>                                               bug\nen_US            <error>                                               bug\nes               <error>                                               bug\nfr               <error>                                               bug\niso_8859_1       <error>                                               bug\nit               <error>                                               bug\nsv               <error>                                               bug\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/solaris-2.5.1",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                                                                      bug\nPOSIX                                                                  bug\nat                                                                     bug\ncz                                                                     bug\nda               ISO8859-1         ISO8859-1         ISO-8859-1        \nde               ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nel                                                                     bug\nen_AU            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_IE            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_NZ            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_UK            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US            ISO8859-1         ISO8859-1         ISO-8859-1        \nes               ISO8859-1         ISO8859-1         ISO-8859-1        \nes_AR            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_BO            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CL            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CO            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CR            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_EC            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_GT            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_MX            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_NI            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PA            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PE            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PY            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_SV            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_UY            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_VE            ISO8859-1         ISO8859-1         ISO-8859-1        \net                                                                     bug\nfr               ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nhu                                                                     bug\nil                                                                     bug\niso_8859_1                                                             bug\nit               ISO8859-1         ISO8859-1         ISO-8859-1        \nlt                                                                     bug\nlv                                                                     bug\nnl               ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nno               ISO8859-1         ISO8859-1         ISO-8859-1        \npl                                                                     bug\npt               ISO8859-1         ISO8859-1         ISO-8859-1        \npt_BR            ISO8859-1         ISO8859-1         ISO-8859-1        \nru                                                                     bug\nsu               ISO8859-1         ISO8859-1         ISO-8859-1        \nsv               ISO8859-1         ISO8859-1         ISO-8859-1        \ntr                                                                     bug\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/solaris-2.6",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                                                                      bug\nPOSIX                                                                  bug\ncz               ISO8859-2         ISO8859-2         ISO-8859-2        \nda               ISO8859-1         ISO8859-1         ISO-8859-1        \nde               ISO8859-1         ISO8859-1         ISO-8859-1        \nde_AT            ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nel               ISO8859-7         ISO8859-7         ISO-8859-7        \nen_AU            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_IE            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_NZ            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_UK            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US.UTF-8      UTF-8             UTF-8             UTF-8             \nes               ISO8859-1         ISO8859-1         ISO-8859-1        \nes_AR            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_BO            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CL            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CO            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CR            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_EC            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_GT            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_MX            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_NI            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PA            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PE            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PY            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_SV            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_UY            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_VE            ISO8859-1         ISO8859-1         ISO-8859-1        \net               ISO8859-1         ISO8859-1         ISO-8859-1        \nfr               ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nhu               ISO8859-2         ISO8859-2         ISO-8859-2        \niso_8859_1                                                             bug\nit               ISO8859-1         ISO8859-1         ISO-8859-1        \nlt               ISO8859-4         ISO8859-4         ISO-8859-4        \nlv               ISO8859-4         ISO8859-4         ISO-8859-4        \nnl               ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nno               ISO8859-1         ISO8859-1         ISO-8859-1        \npl               ISO8859-2         ISO8859-2         ISO-8859-2        \npt               ISO8859-1         ISO8859-1         ISO-8859-1        \npt_BR            ISO8859-1         ISO8859-1         ISO-8859-1        \nru               ISO8859-5         ISO8859-5         ISO-8859-5        \nsu               ISO8859-1         ISO8859-1         ISO-8859-1        \nsv               ISO8859-1         ISO8859-1         ISO-8859-1        \ntr               ISO8859-9         ISO8859-9         ISO-8859-9        \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/solaris-2.6-cjk",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                                                                      bug\nPOSIX                                                                  bug\nchinese          gb2312            gb2312            EUC-CN            \ncz               ISO8859-2         ISO8859-2         ISO-8859-2        \nda               ISO8859-1         ISO8859-1         ISO-8859-1        \nde               ISO8859-1         ISO8859-1         ISO-8859-1        \nde_AT            ISO8859-1         ISO8859-1         ISO-8859-1        \nde_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nel               ISO8859-7         ISO8859-7         ISO-8859-7        \nen_AU            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_IE            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_NZ            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_UK            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US.UTF-8      UTF-8             UTF-8             UTF-8             \nes               ISO8859-1         ISO8859-1         ISO-8859-1        \nes_AR            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_BO            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CL            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CO            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CR            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_EC            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_GT            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_MX            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_NI            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PA            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PE            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PY            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_SV            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_UY            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_VE            ISO8859-1         ISO8859-1         ISO-8859-1        \net               ISO8859-1         ISO8859-1         ISO-8859-1        \nfr               ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nhu               ISO8859-2         ISO8859-2         ISO-8859-2        \niso_8859_1                                                             bug\nit               ISO8859-1         ISO8859-1         ISO-8859-1        \nja               eucJP             eucJP             EUC-JP            \nja_JP.PCK        PCK               PCK               SJIS              \njapanese         eucJP             eucJP             EUC-JP            \nko               5601              5601              EUC-KR            \nko.UTF-8         UTF-8             UTF-8             UTF-8             \nkorean           5601              5601              EUC-KR            \nlt               ISO8859-4         ISO8859-4         ISO-8859-4        \nlv               ISO8859-4         ISO8859-4         ISO-8859-4        \nnl               ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nno               ISO8859-1         ISO8859-1         ISO-8859-1        \npl               ISO8859-2         ISO8859-2         ISO-8859-2        \npt               ISO8859-1         ISO8859-1         ISO-8859-1        \npt_BR            ISO8859-1         ISO8859-1         ISO-8859-1        \nru               ISO8859-5         ISO8859-5         ISO-8859-5        \nsu               ISO8859-1         ISO8859-1         ISO-8859-1        \nsv               ISO8859-1         ISO8859-1         ISO-8859-1        \ntchinese         cns11643          cns11643          EUC-TW            \ntr               ISO8859-9         ISO8859-9         ISO-8859-9        \nzh               gb2312            gb2312            EUC-CN            \nzh_TW            cns11643          cns11643          EUC-TW            \nzh_TW.BIG5       BIG5              BIG5              BIG5              \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/solaris-2.7",
    "content": "locale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                646               646               ASCII             \nPOSIX            646               646               ASCII             \nar               ISO8859-6         ISO8859-6         ISO-8859-6        \nbg_BG            ISO8859-5         ISO8859-5         ISO-8859-5        \ncz               ISO8859-2         ISO8859-2         ISO-8859-2        \nda               ISO8859-1         ISO8859-1         ISO-8859-1        \nda.ISO8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nda.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nde               ISO8859-1         ISO8859-1         ISO-8859-1        \nde.ISO8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nde.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nde.UTF-8         UTF-8             UTF-8             UTF-8             \nde.UTF-8@euro    UTF-8             UTF-8             UTF-8             \nde_AT            ISO8859-1         ISO8859-1         ISO-8859-1        \nde_AT.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nde_AT.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nde_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nel               ISO8859-7         ISO8859-7         ISO-8859-7        \nel.sun_eu_greek  sun_eu_greek      sun_eu_greek      sun_eu_greek      bug\nel.sun_eu_greek@euro  sun_eu_greek      sun_eu_greek      sun_eu_greek      bug\nen_AU            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_GB            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_GB.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_GB.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_IE            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_IE.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_IE.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nen_NZ            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US            ISO8859-1         ISO8859-1         ISO-8859-1        \nen_US.UTF-8      UTF-8             UTF-8             UTF-8             \nes               ISO8859-1         ISO8859-1         ISO-8859-1        \nes.ISO8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nes.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nes.UTF-8         UTF-8             UTF-8             UTF-8             \nes.UTF-8@euro    UTF-8             UTF-8             UTF-8             \nes_AR            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_BO            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CL            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CO            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_CR            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_EC            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_GT            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_MX            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_NI            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PA            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PE            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_PY            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_SV            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_UY            ISO8859-1         ISO8859-1         ISO-8859-1        \nes_VE            ISO8859-1         ISO8859-1         ISO-8859-1        \net               ISO8859-1         ISO8859-1         ISO-8859-1        \nfi               ISO8859-1         ISO8859-1         ISO-8859-1        \nfi.ISO8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nfi.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr               ISO8859-1         ISO8859-1         ISO-8859-1        \nfr.ISO8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nfr.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr.UTF-8         UTF-8             UTF-8             UTF-8             \nfr.UTF-8@euro    UTF-8             UTF-8             UTF-8             \nfr_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_BE.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_BE.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nfr_CA            ISO8859-1         ISO8859-1         ISO-8859-1        \nfr_CH            ISO8859-1         ISO8859-1         ISO-8859-1        \nhe               ISO8859-8         ISO8859-8         ISO-8859-8        \nhe_IL            646               646               ASCII             \nhr_HR            ISO8859-2         ISO8859-2         ISO-8859-2        \nhu               ISO8859-2         ISO8859-2         ISO-8859-2        \niso_8859_1       646               646               ASCII             \nit               ISO8859-1         ISO8859-1         ISO-8859-1        \nit.ISO8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nit.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nit.UTF-8         UTF-8             UTF-8             UTF-8             \nit.UTF-8@euro    UTF-8             UTF-8             UTF-8             \nlt               ISO8859-4         ISO8859-4         ISO-8859-4        \nlv               ISO8859-4         ISO8859-4         ISO-8859-4        \nmk_MK            ISO8859-5         ISO8859-5         ISO-8859-5        \nnl               ISO8859-1         ISO8859-1         ISO-8859-1        \nnl.ISO8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nnl.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nnl_BE            ISO8859-1         ISO8859-1         ISO-8859-1        \nnl_BE.ISO8859-15  ISO8859-15        ISO8859-15        ISO-8859-15       \nnl_BE.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nno               ISO8859-1         ISO8859-1         ISO-8859-1        \nno_NY            ISO8859-1         ISO8859-1         ISO-8859-1        \nnr               ISO8859-2         ISO8859-2         ISO-8859-2        \npl               ISO8859-2         ISO8859-2         ISO-8859-2        \npt               ISO8859-1         ISO8859-1         ISO-8859-1        \npt.ISO8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \npt.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \npt_BR            ISO8859-1         ISO8859-1         ISO-8859-1        \nro_RO            ISO8859-2         ISO8859-2         ISO-8859-2        \nru               ISO8859-5         ISO8859-5         ISO-8859-5        \nru.koi8-r        koi8-r            koi8-r            KOI8-R            \nsk_SK            ISO8859-2         ISO8859-2         ISO-8859-2        \nsl_SI            ISO8859-2         ISO8859-2         ISO-8859-2        \nsq_AL            ISO8859-2         ISO8859-2         ISO-8859-2        \nsr_SP            ISO8859-5         ISO8859-5         ISO-8859-5        \nsv               ISO8859-1         ISO8859-1         ISO-8859-1        \nsv.ISO8859-15    ISO8859-15        ISO8859-15        ISO-8859-15       \nsv.ISO8859-15@euro  ISO8859-15        ISO8859-15        ISO-8859-15       \nsv.UTF-8         UTF-8             UTF-8             UTF-8             \nsv.UTF-8@euro    UTF-8             UTF-8             UTF-8             \nth               TIS620.2533       TIS620.2533       TIS-620           \nth_TH            TIS620.2533       TIS620.2533       TIS-620           \ntr               ISO8859-9         ISO8859-9         ISO-8859-9        \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/sunos-4.1.4",
    "content": "locale_charset.c:\n../../lib/localcharset.c:\nlocale name    locale charmap   nl_langinfo(CODESET) locale_charset() \n\nC                <error>           <error>           <error>           bug\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libcharset/tools/win32",
    "content": "Documentation mentions:\nCP874\nCP932\nCP936\nCP949\nCP950\nCP1200 - Unicode - UCS-2 or UTF-8 ?\nCP1250\nCP1251\nCP1252\nCP1253\nCP1254\nCP1255\nCP1256\nCP1257\nCP1361\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/libtool",
    "content": "#! /bin/sh\n# Generated automatically by config.status (libiconv) 1.15\n# Libtool was configured on host wanghaodeMacBook-Pro.local:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit, 1996\n\n# Copyright (C) 2014 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program or library that is built\n# using GNU Libtool, you may include this file under the  same\n# distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\n# The names of the tagged configurations supported by this script.\navailable_tags='RC '\n\n# Configured defaults for sys_lib_dlsearch_path munging.\n: ${LT_SYS_LIBRARY_PATH=\"\"}\n\n# ### BEGIN LIBTOOL CONFIG\n\n# Which release of libtool.m4 was used?\nmacro_version=2.4.6\nmacro_revision=2.4.6\n\n# Whether or not to build static libraries.\nbuild_old_libs=no\n\n# Assembler program.\nAS=\"as\"\n\n# DLL creation program.\nDLLTOOL=\"false\"\n\n# Object dumper program.\nOBJDUMP=\"objdump\"\n\n# Whether or not to build shared libraries.\nbuild_libtool_libs=yes\n\n# What type of objects to build.\npic_mode=default\n\n# Whether or not to optimize for fast installation.\nfast_install=needless\n\n# Shared archive member basename,for filename based shared library versioning on AIX.\nshared_archive_member_spec=\n\n# Shell to use when invoking shell scripts.\nSHELL=\"/bin/sh\"\n\n# An echo program that protects backslashes.\nECHO=\"printf %s\\\\n\"\n\n# The PATH separator for the build system.\nPATH_SEPARATOR=\":\"\n\n# The host system.\nhost_alias=\nhost=x86_64-apple-darwin16.6.0\nhost_os=darwin16.6.0\n\n# The build system.\nbuild_alias=\nbuild=x86_64-apple-darwin16.6.0\nbuild_os=darwin16.6.0\n\n# A sed program that does not truncate output.\nSED=\"/usr/bin/sed\"\n\n# Sed that helps us avoid accidentally triggering echo(1) options like -n.\nXsed=\"$SED -e 1s/^X//\"\n\n# A grep program that handles long lines.\nGREP=\"/usr/bin/grep\"\n\n# An ERE matcher.\nEGREP=\"/usr/bin/grep -E\"\n\n# A literal string matcher.\nFGREP=\"/usr/bin/grep -F\"\n\n# A BSD- or MS-compatible name lister.\nNM=\"/usr/bin/nm -B\"\n\n# Whether we need soft or hard links.\nLN_S=\"ln -s\"\n\n# What is the maximum length of a command?\nmax_cmd_len=196608\n\n# Object file suffix (normally \"o\").\nobjext=o\n\n# Executable file suffix (normally \"\").\nexeext=\n\n# whether the shell understands \"unset\".\nlt_unset=unset\n\n# turn spaces into newlines.\nSP2NL=\"tr \\\\040 \\\\012\"\n\n# turn newlines into spaces.\nNL2SP=\"tr \\\\015\\\\012 \\\\040\\\\040\"\n\n# convert $build file names to $host format.\nto_host_file_cmd=func_convert_file_noop\n\n# convert $build files to toolchain format.\nto_tool_file_cmd=func_convert_file_noop\n\n# Method to check whether dependent libraries are shared objects.\ndeplibs_check_method=\"pass_all\"\n\n# Command to use when deplibs_check_method = \"file_magic\".\nfile_magic_cmd=\"\\$MAGIC_CMD\"\n\n# How to find potential files when deplibs_check_method = \"file_magic\".\nfile_magic_glob=\"\"\n\n# Find potential files using nocaseglob when deplibs_check_method = \"file_magic\".\nwant_nocaseglob=\"no\"\n\n# Command to associate shared and link libraries.\nsharedlib_from_linklib_cmd=\"printf %s\\\\n\"\n\n# The archiver.\nAR=\"ar\"\n\n# Flags to create an archive.\nAR_FLAGS=\"cru\"\n\n# How to feed a file listing to the archiver.\narchiver_list_spec=\"\"\n\n# A symbol stripping program.\nSTRIP=\"/usr/bin/strip\"\n\n# Commands used to install an old-style archive.\nRANLIB=\"ranlib\"\nold_postinstall_cmds=\"chmod 644 \\$oldlib~\\$RANLIB \\$tool_oldlib\"\nold_postuninstall_cmds=\"\"\n\n# Whether to use a lock for old archive extraction.\nlock_old_archive_extraction=yes\n\n# A C compiler.\nLTCC=\"gcc\"\n\n# LTCC compiler flags.\nLTCFLAGS=\"-g -O2\"\n\n# Take the output of nm and produce a listing of raw symbols and C names.\nglobal_symbol_pipe=\"sed -n -e 's/^.*[\t ]\\\\([BCDEGRST][BCDEGRST]*\\\\)[\t ][\t ]*_\\\\([_A-Za-z][_A-Za-z0-9]*\\\\)\\$/\\\\1 _\\\\2 \\\\2/p' | sed '/ __gnu_lto/d'\"\n\n# Transform the output of nm in a proper C declaration.\nglobal_symbol_to_cdecl=\"sed -n -e 's/^T .* \\\\(.*\\\\)\\$/extern int \\\\1();/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(.*\\\\)\\$/extern char \\\\1;/p'\"\n\n# Transform the output of nm into a list of symbols to manually relocate.\nglobal_symbol_to_import=\"\"\n\n# Transform the output of nm in a C name address pair.\nglobal_symbol_to_c_name_address=\"sed -n -e 's/^: \\\\(.*\\\\) .*\\$/  {\\\"\\\\1\\\", (void *) 0},/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(.*\\\\)\\$/  {\\\"\\\\1\\\", (void *) \\\\&\\\\1},/p'\"\n\n# Transform the output of nm in a C name address pair when lib prefix is needed.\nglobal_symbol_to_c_name_address_lib_prefix=\"sed -n -e 's/^: \\\\(.*\\\\) .*\\$/  {\\\"\\\\1\\\", (void *) 0},/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(lib.*\\\\)\\$/  {\\\"\\\\1\\\", (void *) \\\\&\\\\1},/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(.*\\\\)\\$/  {\\\"lib\\\\1\\\", (void *) \\\\&\\\\1},/p'\"\n\n# The name lister interface.\nnm_interface=\"BSD nm\"\n\n# Specify filename containing input files for $NM.\nnm_file_list_spec=\"\"\n\n# The root where to search for dependent libraries,and where our libraries should be installed.\nlt_sysroot=\n\n# Command to truncate a binary pipe.\nlt_truncate_bin=\"/bin/dd bs=4096 count=1\"\n\n# The name of the directory that contains temporary libtool files.\nobjdir=.libs\n\n# Used to examine libraries when file_magic_cmd begins with \"file\".\nMAGIC_CMD=file\n\n# Must we lock files when doing compilation?\nneed_locks=\"no\"\n\n# Manifest tool.\nMANIFEST_TOOL=\":\"\n\n# Tool to manipulate archived DWARF debug symbol files on Mac OS X.\nDSYMUTIL=\"dsymutil\"\n\n# Tool to change global to local symbols on Mac OS X.\nNMEDIT=\"nmedit\"\n\n# Tool to manipulate fat objects and archives on Mac OS X.\nLIPO=\"lipo\"\n\n# ldd/readelf like tool for Mach-O binaries on Mac OS X.\nOTOOL=\"otool\"\n\n# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.\nOTOOL64=\":\"\n\n# Old archive suffix (normally \"a\").\nlibext=a\n\n# Shared library suffix (normally \".so\").\nshrext_cmds=\"\\`test .\\$module = .yes && echo .so || echo .dylib\\`\"\n\n# The commands to extract the exported symbol list from a shared archive.\nextract_expsyms_cmds=\"\"\n\n# Variables whose values should be saved in libtool wrapper scripts and\n# restored at link time.\nvariables_saved_for_relink=\"PATH DYLD_LIBRARY_PATH  GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH\"\n\n# Do we need the \"lib\" prefix for modules?\nneed_lib_prefix=no\n\n# Do we need a version for libraries?\nneed_version=no\n\n# Library versioning type.\nversion_type=darwin\n\n# Shared library runtime path variable.\nrunpath_var=\n\n# Shared library path variable.\nshlibpath_var=DYLD_LIBRARY_PATH\n\n# Is shlibpath searched before the hard-coded library search path?\nshlibpath_overrides_runpath=yes\n\n# Format of library name prefix.\nlibname_spec=\"lib\\$name\"\n\n# List of archive names.  First name is the real one, the rest are links.\n# The last name is the one that the linker finds with -lNAME\nlibrary_names_spec=\"\\$libname\\$release\\$major\\$shared_ext \\$libname\\$shared_ext\"\n\n# The coded name of the library, if different from the real name.\nsoname_spec=\"\\$libname\\$release\\$major\\$shared_ext\"\n\n# Permission mode override for installation of shared libraries.\ninstall_override_mode=\"\"\n\n# Command to use after installation of a shared archive.\npostinstall_cmds=\"\"\n\n# Command to use after uninstallation of a shared archive.\npostuninstall_cmds=\"\"\n\n# Commands used to finish a libtool library installation in a directory.\nfinish_cmds=\"\"\n\n# As \"finish_cmds\", except a single script fragment to be evaled but\n# not shown.\nfinish_eval=\"\"\n\n# Whether we should hardcode library paths into libraries.\nhardcode_into_libs=no\n\n# Compile-time system search path for libraries.\nsys_lib_search_path_spec=\"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.1.0  /usr/local/lib\"\n\n# Detected run-time system search path for libraries.\nsys_lib_dlsearch_path_spec=\"/usr/local/lib /lib /usr/lib\"\n\n# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.\nconfigure_time_lt_sys_library_path=\"\"\n\n# Whether dlopen is supported.\ndlopen_support=unknown\n\n# Whether dlopen of programs is supported.\ndlopen_self=unknown\n\n# Whether dlopen of statically linked programs is supported.\ndlopen_self_static=unknown\n\n# Commands to strip libraries.\nold_striplib=\"/usr/bin/strip -S\"\nstriplib=\"/usr/bin/strip -x\"\n\n\n# The linker used to build libraries.\nLD=\"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld\"\n\n# How to create reloadable object files.\nreload_flag=\" -r\"\nreload_cmds=\"\\$LTCC \\$LTCFLAGS -nostdlib \\$wl-r -o \\$output\\$reload_objs\"\n\n# Commands used to build an old-style archive.\nold_archive_cmds=\"\\$AR \\$AR_FLAGS \\$oldlib\\$oldobjs~\\$RANLIB \\$tool_oldlib\"\n\n# A language specific compiler.\nCC=\"gcc\"\n\n# Is the compiler the GNU compiler?\nwith_gcc=yes\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=\" -fno-builtin -fno-rtti -fno-exceptions\"\n\n# Additional compiler flags for building library objects.\npic_flag=\" -fno-common -DPIC\"\n\n# How to pass a linker flag through the compiler.\nwl=\"-Wl,\"\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=\"\"\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=\"yes\"\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=no\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=no\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=\"\"\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=\"\\`for conv in \\$convenience\\\\\\\"\\\\\\\"; do test  -n \\\\\\\"\\$conv\\\\\\\" && new_convenience=\\\\\\\"\\$new_convenience \\$wl-force_load,\\$conv\\\\\\\"; done; func_echo_all \\\\\\\"\\$new_convenience\\\\\\\"\\`\"\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=\"no\"\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=\"\"\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=\"\"\n\n# Commands used to build a shared archive.\narchive_cmds=\"\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring \\$single_module\"\narchive_expsym_cmds=\"sed 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring \\$single_module \\$wl-exported_symbols_list,\\$output_objdir/\\$libname-symbols.expsym\"\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=\"\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags\"\nmodule_expsym_cmds=\"sed -e 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags \\$wl-exported_symbols_list,\\$output_objdir/\\$libname-symbols.expsym\"\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=\"no\"\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=\"\\$wl-undefined \\${wl}dynamic_lookup\"\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=\"\"\n\n# Flag to hardcode $libdir into a binary during linking.\n# This must work even if $libdir does not exist\nhardcode_libdir_flag_spec=\"\"\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=\"\"\n\n# Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=no\n\n# Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting $shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=no\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=no\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=unsupported\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=yes\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=no\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=yes\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=no\n\n# The commands to list exported symbols.\nexport_symbols_cmds=\"\\$NM \\$libobjs \\$convenience | \\$global_symbol_pipe | \\$SED 's/.* //' | sort | uniq > \\$export_symbols\"\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=\"_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*\"\n\n# Symbols that must always be exported.\ninclude_expsyms=\"\"\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=\"\"\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=\"\"\n\n# Specify filename containing input files.\nfile_list_spec=\"\"\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=immediate\n\n# ### END LIBTOOL CONFIG\n\n\n# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n\n# ### END FUNCTIONS SHARED WITH CONFIGURE\n\n#! /bin/sh\n## DO NOT EDIT - This file generated from ./build-aux/ltmain.in\n##               by inline-source v2014-01-03.01\n\n# libtool (GNU libtool) 2.4.6\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996\n\n# Copyright (C) 1996-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License,\n# if you distribute this file as part of a program or library that\n# is built using GNU Libtool, you may include this file under the\n# same distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\nPROGRAM=libtool\nPACKAGE=libtool\nVERSION=2.4.6\npackage_revision=2.4.6\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# Run './libtool --help' for help with using this script from the\n# command line.\n\n\n## ------------------------------- ##\n## User overridable command paths. ##\n## ------------------------------- ##\n\n# After configure completes, it has a better idea of some of the\n# shell tools we need than the defaults used by the functions shared\n# with bootstrap, so set those here where they can still be over-\n# ridden by the user, but otherwise take precedence.\n\n: ${AUTOCONF=\"autoconf\"}\n: ${AUTOMAKE=\"automake\"}\n\n\n## -------------------------- ##\n## Source external libraries. ##\n## -------------------------- ##\n\n# Much of our low-level functionality needs to be sourced from external\n# libraries, which are installed to $pkgauxdir.\n\n# Set a version string for this script.\nscriptversion=2015-01-20.17; # UTC\n\n# General shell script boiler plate, and helper functions.\n# Written by Gary V. Vaughan, 2004\n\n# Copyright (C) 2004-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n\n# As a special exception to the GNU General Public License, if you distribute\n# this file as part of a program or library that is built using GNU Libtool,\n# you may include this file under the same distribution terms that you use\n# for the rest of that program.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU\n# General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program. If not, see <http://www.gnu.org/licenses/>.\n\n# Please report bugs or propose patches to gary@gnu.org.\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# Evaluate this file near the top of your script to gain access to\n# the functions and variables defined here:\n#\n#   . `echo \"$0\" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh\n#\n# If you need to override any of the default environment variable\n# settings, do that before evaluating this file.\n\n\n## -------------------- ##\n## Shell normalisation. ##\n## -------------------- ##\n\n# Some shells need a little help to be as Bourne compatible as possible.\n# Before doing anything else, make sure all that help has been provided!\n\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac\nfi\n\n# NLS nuisances: We save the old values in case they are required later.\n_G_user_locale=\n_G_safe_locale=\nfor _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\ndo\n  eval \"if test set = \\\"\\${$_G_var+set}\\\"; then\n          save_$_G_var=\\$$_G_var\n          $_G_var=C\n\t  export $_G_var\n\t  _G_user_locale=\\\"$_G_var=\\\\\\$save_\\$_G_var; \\$_G_user_locale\\\"\n\t  _G_safe_locale=\\\"$_G_var=C; \\$_G_safe_locale\\\"\n\tfi\"\ndone\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n# Make sure IFS has a sensible default\nsp=' '\nnl='\n'\nIFS=\"$sp\t$nl\"\n\n# There are apparently some retarded systems that use ';' as a PATH separator!\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n\n## ------------------------- ##\n## Locate command utilities. ##\n## ------------------------- ##\n\n\n# func_executable_p FILE\n# ----------------------\n# Check that FILE is an executable regular file.\nfunc_executable_p ()\n{\n    test -f \"$1\" && test -x \"$1\"\n}\n\n\n# func_path_progs PROGS_LIST CHECK_FUNC [PATH]\n# --------------------------------------------\n# Search for either a program that responds to --version with output\n# containing \"GNU\", or else returned by CHECK_FUNC otherwise, by\n# trying all the directories in PATH with each of the elements of\n# PROGS_LIST.\n#\n# CHECK_FUNC should accept the path to a candidate program, and\n# set $func_check_prog_result if it truncates its output less than\n# $_G_path_prog_max characters.\nfunc_path_progs ()\n{\n    _G_progs_list=$1\n    _G_check_func=$2\n    _G_PATH=${3-\"$PATH\"}\n\n    _G_path_prog_max=0\n    _G_path_prog_found=false\n    _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:}\n    for _G_dir in $_G_PATH; do\n      IFS=$_G_save_IFS\n      test -z \"$_G_dir\" && _G_dir=.\n      for _G_prog_name in $_G_progs_list; do\n        for _exeext in '' .EXE; do\n          _G_path_prog=$_G_dir/$_G_prog_name$_exeext\n          func_executable_p \"$_G_path_prog\" || continue\n          case `\"$_G_path_prog\" --version 2>&1` in\n            *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;;\n            *)     $_G_check_func $_G_path_prog\n\t\t   func_path_progs_result=$func_check_prog_result\n\t\t   ;;\n          esac\n          $_G_path_prog_found && break 3\n        done\n      done\n    done\n    IFS=$_G_save_IFS\n    test -z \"$func_path_progs_result\" && {\n      echo \"no acceptable sed could be found in \\$PATH\" >&2\n      exit 1\n    }\n}\n\n\n# We want to be able to use the functions in this file before configure\n# has figured out where the best binaries are kept, which means we have\n# to search for them ourselves - except when the results are already set\n# where we skip the searches.\n\n# Unless the user overrides by setting SED, search the path for either GNU\n# sed, or the sed that truncates its output the least.\ntest -z \"$SED\" && {\n  _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/\n  for _G_i in 1 2 3 4 5 6 7; do\n    _G_sed_script=$_G_sed_script$nl$_G_sed_script\n  done\n  echo \"$_G_sed_script\" 2>/dev/null | sed 99q >conftest.sed\n  _G_sed_script=\n\n  func_check_prog_sed ()\n  {\n    _G_path_prog=$1\n\n    _G_count=0\n    printf 0123456789 >conftest.in\n    while :\n    do\n      cat conftest.in conftest.in >conftest.tmp\n      mv conftest.tmp conftest.in\n      cp conftest.in conftest.nl\n      echo '' >> conftest.nl\n      \"$_G_path_prog\" -f conftest.sed <conftest.nl >conftest.out 2>/dev/null || break\n      diff conftest.out conftest.nl >/dev/null 2>&1 || break\n      _G_count=`expr $_G_count + 1`\n      if test \"$_G_count\" -gt \"$_G_path_prog_max\"; then\n        # Best one so far, save it but keep looking for a better one\n        func_check_prog_result=$_G_path_prog\n        _G_path_prog_max=$_G_count\n      fi\n      # 10*(2^10) chars as input seems more than enough\n      test 10 -lt \"$_G_count\" && break\n    done\n    rm -f conftest.in conftest.tmp conftest.nl conftest.out\n  }\n\n  func_path_progs \"sed gsed\" func_check_prog_sed $PATH:/usr/xpg4/bin\n  rm -f conftest.sed\n  SED=$func_path_progs_result\n}\n\n\n# Unless the user overrides by setting GREP, search the path for either GNU\n# grep, or the grep that truncates its output the least.\ntest -z \"$GREP\" && {\n  func_check_prog_grep ()\n  {\n    _G_path_prog=$1\n\n    _G_count=0\n    _G_path_prog_max=0\n    printf 0123456789 >conftest.in\n    while :\n    do\n      cat conftest.in conftest.in >conftest.tmp\n      mv conftest.tmp conftest.in\n      cp conftest.in conftest.nl\n      echo 'GREP' >> conftest.nl\n      \"$_G_path_prog\" -e 'GREP$' -e '-(cannot match)-' <conftest.nl >conftest.out 2>/dev/null || break\n      diff conftest.out conftest.nl >/dev/null 2>&1 || break\n      _G_count=`expr $_G_count + 1`\n      if test \"$_G_count\" -gt \"$_G_path_prog_max\"; then\n        # Best one so far, save it but keep looking for a better one\n        func_check_prog_result=$_G_path_prog\n        _G_path_prog_max=$_G_count\n      fi\n      # 10*(2^10) chars as input seems more than enough\n      test 10 -lt \"$_G_count\" && break\n    done\n    rm -f conftest.in conftest.tmp conftest.nl conftest.out\n  }\n\n  func_path_progs \"grep ggrep\" func_check_prog_grep $PATH:/usr/xpg4/bin\n  GREP=$func_path_progs_result\n}\n\n\n## ------------------------------- ##\n## User overridable command paths. ##\n## ------------------------------- ##\n\n# All uppercase variable names are used for environment variables.  These\n# variables can be overridden by the user before calling a script that\n# uses them if a suitable command of that name is not already available\n# in the command search PATH.\n\n: ${CP=\"cp -f\"}\n: ${ECHO=\"printf %s\\n\"}\n: ${EGREP=\"$GREP -E\"}\n: ${FGREP=\"$GREP -F\"}\n: ${LN_S=\"ln -s\"}\n: ${MAKE=\"make\"}\n: ${MKDIR=\"mkdir\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n: ${SHELL=\"${CONFIG_SHELL-/bin/sh}\"}\n\n\n## -------------------- ##\n## Useful sed snippets. ##\n## -------------------- ##\n\nsed_dirname='s|/[^/]*$||'\nsed_basename='s|^.*/||'\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='s|\\([`\"$\\\\]\\)|\\\\\\1|g'\n\n# Same as above, but do not quote variable references.\nsed_double_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\n\n# Sed substitution that turns a string into a regex matching for the\n# string literally.\nsed_make_literal_regex='s|[].[^$\\\\*\\/]|\\\\&|g'\n\n# Sed substitution that converts a w32 file name or path\n# that contains forward slashes, into one that contains\n# (escaped) backslashes.  A very naive implementation.\nsed_naive_backslashify='s|\\\\\\\\*|\\\\|g;s|/|\\\\|g;s|\\\\|\\\\\\\\|g'\n\n# Re-'\\' parameter expansions in output of sed_double_quote_subst that\n# were '\\'-ed in input to the same.  If an odd number of '\\' preceded a\n# '$' in input to sed_double_quote_subst, that '$' was protected from\n# expansion.  Since each input '\\' is now two '\\'s, look for any number\n# of runs of four '\\'s followed by two '\\'s and then a '$'.  '\\' that '$'.\n_G_bs='\\\\'\n_G_bs2='\\\\\\\\'\n_G_bs4='\\\\\\\\\\\\\\\\'\n_G_dollar='\\$'\nsed_double_backslash=\"\\\n  s/$_G_bs4/&\\\\\n/g\n  s/^$_G_bs2$_G_dollar/$_G_bs&/\n  s/\\\\([^$_G_bs]\\\\)$_G_bs2$_G_dollar/\\\\1$_G_bs2$_G_bs$_G_dollar/g\n  s/\\n//g\"\n\n\n## ----------------- ##\n## Global variables. ##\n## ----------------- ##\n\n# Except for the global variables explicitly listed below, the following\n# functions in the '^func_' namespace, and the '^require_' namespace\n# variables initialised in the 'Resource management' section, sourcing\n# this file will not pollute your global namespace with anything\n# else. There's no portable way to scope variables in Bourne shell\n# though, so actually running these functions will sometimes place\n# results into a variable named after the function, and often use\n# temporary variables in the '^_G_' namespace. If you are careful to\n# avoid using those namespaces casually in your sourcing script, things\n# should continue to work as you expect. And, of course, you can freely\n# overwrite any of the functions or variables defined here before\n# calling anything to customize them.\n\nEXIT_SUCCESS=0\nEXIT_FAILURE=1\nEXIT_MISMATCH=63  # $? = 63 is used to indicate version mismatch to missing.\nEXIT_SKIP=77\t  # $? = 77 is used to indicate a skipped test to automake.\n\n# Allow overriding, eg assuming that you follow the convention of\n# putting '$debug_cmd' at the start of all your functions, you can get\n# bash to show function call trace with:\n#\n#    debug_cmd='eval echo \"${FUNCNAME[0]} $*\" >&2' bash your-script-name\ndebug_cmd=${debug_cmd-\":\"}\nexit_cmd=:\n\n# By convention, finish your script with:\n#\n#    exit $exit_status\n#\n# so that you can set exit_status to non-zero if you want to indicate\n# something went wrong during execution without actually bailing out at\n# the point of failure.\nexit_status=$EXIT_SUCCESS\n\n# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh\n# is ksh but when the shell is invoked as \"sh\" and the current value of\n# the _XPG environment variable is not equal to 1 (one), the special\n# positional parameter $0, within a function call, is the name of the\n# function.\nprogpath=$0\n\n# The name of this program.\nprogname=`$ECHO \"$progpath\" |$SED \"$sed_basename\"`\n\n# Make sure we have an absolute progpath for reexecution:\ncase $progpath in\n  [\\\\/]*|[A-Za-z]:\\\\*) ;;\n  *[\\\\/]*)\n     progdir=`$ECHO \"$progpath\" |$SED \"$sed_dirname\"`\n     progdir=`cd \"$progdir\" && pwd`\n     progpath=$progdir/$progname\n     ;;\n  *)\n     _G_IFS=$IFS\n     IFS=${PATH_SEPARATOR-:}\n     for progdir in $PATH; do\n       IFS=$_G_IFS\n       test -x \"$progdir/$progname\" && break\n     done\n     IFS=$_G_IFS\n     test -n \"$progdir\" || progdir=`pwd`\n     progpath=$progdir/$progname\n     ;;\nesac\n\n\n## ----------------- ##\n## Standard options. ##\n## ----------------- ##\n\n# The following options affect the operation of the functions defined\n# below, and should be set appropriately depending on run-time para-\n# meters passed on the command line.\n\nopt_dry_run=false\nopt_quiet=false\nopt_verbose=false\n\n# Categories 'all' and 'none' are always available.  Append any others\n# you will pass as the first argument to func_warning from your own\n# code.\nwarning_categories=\n\n# By default, display warnings according to 'opt_warning_types'.  Set\n# 'warning_func'  to ':' to elide all warnings, or func_fatal_error to\n# treat the next displayed warning as a fatal error.\nwarning_func=func_warn_and_continue\n\n# Set to 'all' to display all warnings, 'none' to suppress all\n# warnings, or a space delimited list of some subset of\n# 'warning_categories' to display only the listed warnings.\nopt_warning_types=all\n\n\n## -------------------- ##\n## Resource management. ##\n## -------------------- ##\n\n# This section contains definitions for functions that each ensure a\n# particular resource (a file, or a non-empty configuration variable for\n# example) is available, and if appropriate to extract default values\n# from pertinent package files. Call them using their associated\n# 'require_*' variable to ensure that they are executed, at most, once.\n#\n# It's entirely deliberate that calling these functions can set\n# variables that don't obey the namespace limitations obeyed by the rest\n# of this file, in order that that they be as useful as possible to\n# callers.\n\n\n# require_term_colors\n# -------------------\n# Allow display of bold text on terminals that support it.\nrequire_term_colors=func_require_term_colors\nfunc_require_term_colors ()\n{\n    $debug_cmd\n\n    test -t 1 && {\n      # COLORTERM and USE_ANSI_COLORS environment variables take\n      # precedence, because most terminfo databases neglect to describe\n      # whether color sequences are supported.\n      test -n \"${COLORTERM+set}\" && : ${USE_ANSI_COLORS=\"1\"}\n\n      if test 1 = \"$USE_ANSI_COLORS\"; then\n        # Standard ANSI escape sequences\n        tc_reset='\u001b[0m'\n        tc_bold='\u001b[1m';   tc_standout='\u001b[7m'\n        tc_red='\u001b[31m';   tc_green='\u001b[32m'\n        tc_blue='\u001b[34m';  tc_cyan='\u001b[36m'\n      else\n        # Otherwise trust the terminfo database after all.\n        test -n \"`tput sgr0 2>/dev/null`\" && {\n          tc_reset=`tput sgr0`\n          test -n \"`tput bold 2>/dev/null`\" && tc_bold=`tput bold`\n          tc_standout=$tc_bold\n          test -n \"`tput smso 2>/dev/null`\" && tc_standout=`tput smso`\n          test -n \"`tput setaf 1 2>/dev/null`\" && tc_red=`tput setaf 1`\n          test -n \"`tput setaf 2 2>/dev/null`\" && tc_green=`tput setaf 2`\n          test -n \"`tput setaf 4 2>/dev/null`\" && tc_blue=`tput setaf 4`\n          test -n \"`tput setaf 5 2>/dev/null`\" && tc_cyan=`tput setaf 5`\n        }\n      fi\n    }\n\n    require_term_colors=:\n}\n\n\n## ----------------- ##\n## Function library. ##\n## ----------------- ##\n\n# This section contains a variety of useful functions to call in your\n# scripts. Take note of the portable wrappers for features provided by\n# some modern shells, which will fall back to slower equivalents on\n# less featureful shells.\n\n\n# func_append VAR VALUE\n# ---------------------\n# Append VALUE onto the existing contents of VAR.\n\n  # We should try to minimise forks, especially on Windows where they are\n  # unreasonably slow, so skip the feature probes when bash or zsh are\n  # being used:\n  if test set = \"${BASH_VERSION+set}${ZSH_VERSION+set}\"; then\n    : ${_G_HAVE_ARITH_OP=\"yes\"}\n    : ${_G_HAVE_XSI_OPS=\"yes\"}\n    # The += operator was introduced in bash 3.1\n    case $BASH_VERSION in\n      [12].* | 3.0 | 3.0*) ;;\n      *)\n        : ${_G_HAVE_PLUSEQ_OP=\"yes\"}\n        ;;\n    esac\n  fi\n\n  # _G_HAVE_PLUSEQ_OP\n  # Can be empty, in which case the shell is probed, \"yes\" if += is\n  # useable or anything else if it does not work.\n  test -z \"$_G_HAVE_PLUSEQ_OP\" \\\n    && (eval 'x=a; x+=\" b\"; test \"a b\" = \"$x\"') 2>/dev/null \\\n    && _G_HAVE_PLUSEQ_OP=yes\n\nif test yes = \"$_G_HAVE_PLUSEQ_OP\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_append ()\n  {\n    $debug_cmd\n\n    eval \"$1+=\\$2\"\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_append ()\n  {\n    $debug_cmd\n\n    eval \"$1=\\$$1\\$2\"\n  }\nfi\n\n\n# func_append_quoted VAR VALUE\n# ----------------------------\n# Quote VALUE and append to the end of shell variable VAR, separated\n# by a space.\nif test yes = \"$_G_HAVE_PLUSEQ_OP\"; then\n  eval 'func_append_quoted ()\n  {\n    $debug_cmd\n\n    func_quote_for_eval \"$2\"\n    eval \"$1+=\\\\ \\$func_quote_for_eval_result\"\n  }'\nelse\n  func_append_quoted ()\n  {\n    $debug_cmd\n\n    func_quote_for_eval \"$2\"\n    eval \"$1=\\$$1\\\\ \\$func_quote_for_eval_result\"\n  }\nfi\n\n\n# func_append_uniq VAR VALUE\n# --------------------------\n# Append unique VALUE onto the existing contents of VAR, assuming\n# entries are delimited by the first character of VALUE.  For example:\n#\n#   func_append_uniq options \" --another-option option-argument\"\n#\n# will only append to $options if \" --another-option option-argument \"\n# is not already present somewhere in $options already (note spaces at\n# each end implied by leading space in second argument).\nfunc_append_uniq ()\n{\n    $debug_cmd\n\n    eval _G_current_value='`$ECHO $'$1'`'\n    _G_delim=`expr \"$2\" : '\\(.\\)'`\n\n    case $_G_delim$_G_current_value$_G_delim in\n      *\"$2$_G_delim\"*) ;;\n      *) func_append \"$@\" ;;\n    esac\n}\n\n\n# func_arith TERM...\n# ------------------\n# Set func_arith_result to the result of evaluating TERMs.\n  test -z \"$_G_HAVE_ARITH_OP\" \\\n    && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \\\n    && _G_HAVE_ARITH_OP=yes\n\nif test yes = \"$_G_HAVE_ARITH_OP\"; then\n  eval 'func_arith ()\n  {\n    $debug_cmd\n\n    func_arith_result=$(( $* ))\n  }'\nelse\n  func_arith ()\n  {\n    $debug_cmd\n\n    func_arith_result=`expr \"$@\"`\n  }\nfi\n\n\n# func_basename FILE\n# ------------------\n# Set func_basename_result to FILE with everything up to and including\n# the last / stripped.\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  # If this shell supports suffix pattern removal, then use it to avoid\n  # forking. Hide the definitions single quotes in case the shell chokes\n  # on unsupported syntax...\n  _b='func_basename_result=${1##*/}'\n  _d='case $1 in\n        */*) func_dirname_result=${1%/*}$2 ;;\n        *  ) func_dirname_result=$3        ;;\n      esac'\n\nelse\n  # ...otherwise fall back to using sed.\n  _b='func_basename_result=`$ECHO \"$1\" |$SED \"$sed_basename\"`'\n  _d='func_dirname_result=`$ECHO \"$1\"  |$SED \"$sed_dirname\"`\n      if test \"X$func_dirname_result\" = \"X$1\"; then\n        func_dirname_result=$3\n      else\n        func_append func_dirname_result \"$2\"\n      fi'\nfi\n\neval 'func_basename ()\n{\n    $debug_cmd\n\n    '\"$_b\"'\n}'\n\n\n# func_dirname FILE APPEND NONDIR_REPLACEMENT\n# -------------------------------------------\n# Compute the dirname of FILE.  If nonempty, add APPEND to the result,\n# otherwise set result to NONDIR_REPLACEMENT.\neval 'func_dirname ()\n{\n    $debug_cmd\n\n    '\"$_d\"'\n}'\n\n\n# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT\n# --------------------------------------------------------\n# Perform func_basename and func_dirname in a single function\n# call:\n#   dirname:  Compute the dirname of FILE.  If nonempty,\n#             add APPEND to the result, otherwise set result\n#             to NONDIR_REPLACEMENT.\n#             value returned in \"$func_dirname_result\"\n#   basename: Compute filename of FILE.\n#             value retuned in \"$func_basename_result\"\n# For efficiency, we do not delegate to the functions above but instead\n# duplicate the functionality here.\neval 'func_dirname_and_basename ()\n{\n    $debug_cmd\n\n    '\"$_b\"'\n    '\"$_d\"'\n}'\n\n\n# func_echo ARG...\n# ----------------\n# Echo program name prefixed message.\nfunc_echo ()\n{\n    $debug_cmd\n\n    _G_message=$*\n\n    func_echo_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_IFS\n      $ECHO \"$progname: $_G_line\"\n    done\n    IFS=$func_echo_IFS\n}\n\n\n# func_echo_all ARG...\n# --------------------\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"$*\"\n}\n\n\n# func_echo_infix_1 INFIX ARG...\n# ------------------------------\n# Echo program name, followed by INFIX on the first line, with any\n# additional lines not showing INFIX.\nfunc_echo_infix_1 ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    _G_infix=$1; shift\n    _G_indent=$_G_infix\n    _G_prefix=\"$progname: $_G_infix: \"\n    _G_message=$*\n\n    # Strip color escape sequences before counting printable length\n    for _G_tc in \"$tc_reset\" \"$tc_bold\" \"$tc_standout\" \"$tc_red\" \"$tc_green\" \"$tc_blue\" \"$tc_cyan\"\n    do\n      test -n \"$_G_tc\" && {\n        _G_esc_tc=`$ECHO \"$_G_tc\" | $SED \"$sed_make_literal_regex\"`\n        _G_indent=`$ECHO \"$_G_indent\" | $SED \"s|$_G_esc_tc||g\"`\n      }\n    done\n    _G_indent=\"$progname: \"`echo \"$_G_indent\" | $SED 's|.| |g'`\"  \" ## exclude from sc_prohibit_nested_quotes\n\n    func_echo_infix_1_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_infix_1_IFS\n      $ECHO \"$_G_prefix$tc_bold$_G_line$tc_reset\" >&2\n      _G_prefix=$_G_indent\n    done\n    IFS=$func_echo_infix_1_IFS\n}\n\n\n# func_error ARG...\n# -----------------\n# Echo program name prefixed message to standard error.\nfunc_error ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    func_echo_infix_1 \"  $tc_standout${tc_red}error$tc_reset\" \"$*\" >&2\n}\n\n\n# func_fatal_error ARG...\n# -----------------------\n# Echo program name prefixed message to standard error, and exit.\nfunc_fatal_error ()\n{\n    $debug_cmd\n\n    func_error \"$*\"\n    exit $EXIT_FAILURE\n}\n\n\n# func_grep EXPRESSION FILENAME\n# -----------------------------\n# Check whether EXPRESSION matches any line of FILENAME, without output.\nfunc_grep ()\n{\n    $debug_cmd\n\n    $GREP \"$1\" \"$2\" >/dev/null 2>&1\n}\n\n\n# func_len STRING\n# ---------------\n# Set func_len_result to the length of STRING. STRING may not\n# start with a hyphen.\n  test -z \"$_G_HAVE_XSI_OPS\" \\\n    && (eval 'x=a/b/c;\n      test 5aa/bb/cc = \"${#x}${x%%/*}${x%/*}${x#*/}${x##*/}\"') 2>/dev/null \\\n    && _G_HAVE_XSI_OPS=yes\n\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_len ()\n  {\n    $debug_cmd\n\n    func_len_result=${#1}\n  }'\nelse\n  func_len ()\n  {\n    $debug_cmd\n\n    func_len_result=`expr \"$1\" : \".*\" 2>/dev/null || echo $max_cmd_len`\n  }\nfi\n\n\n# func_mkdir_p DIRECTORY-PATH\n# ---------------------------\n# Make sure the entire path to DIRECTORY-PATH is available.\nfunc_mkdir_p ()\n{\n    $debug_cmd\n\n    _G_directory_path=$1\n    _G_dir_list=\n\n    if test -n \"$_G_directory_path\" && test : != \"$opt_dry_run\"; then\n\n      # Protect directory names starting with '-'\n      case $_G_directory_path in\n        -*) _G_directory_path=./$_G_directory_path ;;\n      esac\n\n      # While some portion of DIR does not yet exist...\n      while test ! -d \"$_G_directory_path\"; do\n        # ...make a list in topmost first order.  Use a colon delimited\n\t# list incase some portion of path contains whitespace.\n        _G_dir_list=$_G_directory_path:$_G_dir_list\n\n        # If the last portion added has no slash in it, the list is done\n        case $_G_directory_path in */*) ;; *) break ;; esac\n\n        # ...otherwise throw away the child directory and loop\n        _G_directory_path=`$ECHO \"$_G_directory_path\" | $SED -e \"$sed_dirname\"`\n      done\n      _G_dir_list=`$ECHO \"$_G_dir_list\" | $SED 's|:*$||'`\n\n      func_mkdir_p_IFS=$IFS; IFS=:\n      for _G_dir in $_G_dir_list; do\n\tIFS=$func_mkdir_p_IFS\n        # mkdir can fail with a 'File exist' error if two processes\n        # try to create one of the directories concurrently.  Don't\n        # stop in that case!\n        $MKDIR \"$_G_dir\" 2>/dev/null || :\n      done\n      IFS=$func_mkdir_p_IFS\n\n      # Bail out if we (or some other process) failed to create a directory.\n      test -d \"$_G_directory_path\" || \\\n        func_fatal_error \"Failed to create '$1'\"\n    fi\n}\n\n\n# func_mktempdir [BASENAME]\n# -------------------------\n# Make a temporary directory that won't clash with other running\n# libtool processes, and avoids race conditions if possible.  If\n# given, BASENAME is the basename for that directory.\nfunc_mktempdir ()\n{\n    $debug_cmd\n\n    _G_template=${TMPDIR-/tmp}/${1-$progname}\n\n    if test : = \"$opt_dry_run\"; then\n      # Return a directory name, but don't create it in dry-run mode\n      _G_tmpdir=$_G_template-$$\n    else\n\n      # If mktemp works, use that first and foremost\n      _G_tmpdir=`mktemp -d \"$_G_template-XXXXXXXX\" 2>/dev/null`\n\n      if test ! -d \"$_G_tmpdir\"; then\n        # Failing that, at least try and use $RANDOM to avoid a race\n        _G_tmpdir=$_G_template-${RANDOM-0}$$\n\n        func_mktempdir_umask=`umask`\n        umask 0077\n        $MKDIR \"$_G_tmpdir\"\n        umask $func_mktempdir_umask\n      fi\n\n      # If we're not in dry-run mode, bomb out on failure\n      test -d \"$_G_tmpdir\" || \\\n        func_fatal_error \"cannot create temporary directory '$_G_tmpdir'\"\n    fi\n\n    $ECHO \"$_G_tmpdir\"\n}\n\n\n# func_normal_abspath PATH\n# ------------------------\n# Remove doubled-up and trailing slashes, \".\" path components,\n# and cancel out any \"..\" path components in PATH after making\n# it an absolute path.\nfunc_normal_abspath ()\n{\n    $debug_cmd\n\n    # These SED scripts presuppose an absolute path with a trailing slash.\n    _G_pathcar='s|^/\\([^/]*\\).*$|\\1|'\n    _G_pathcdr='s|^/[^/]*||'\n    _G_removedotparts=':dotsl\n\t\ts|/\\./|/|g\n\t\tt dotsl\n\t\ts|/\\.$|/|'\n    _G_collapseslashes='s|/\\{1,\\}|/|g'\n    _G_finalslash='s|/*$|/|'\n\n    # Start from root dir and reassemble the path.\n    func_normal_abspath_result=\n    func_normal_abspath_tpath=$1\n    func_normal_abspath_altnamespace=\n    case $func_normal_abspath_tpath in\n      \"\")\n        # Empty path, that just means $cwd.\n        func_stripname '' '/' \"`pwd`\"\n        func_normal_abspath_result=$func_stripname_result\n        return\n        ;;\n      # The next three entries are used to spot a run of precisely\n      # two leading slashes without using negated character classes;\n      # we take advantage of case's first-match behaviour.\n      ///*)\n        # Unusual form of absolute path, do nothing.\n        ;;\n      //*)\n        # Not necessarily an ordinary path; POSIX reserves leading '//'\n        # and for example Cygwin uses it to access remote file shares\n        # over CIFS/SMB, so we conserve a leading double slash if found.\n        func_normal_abspath_altnamespace=/\n        ;;\n      /*)\n        # Absolute path, do nothing.\n        ;;\n      *)\n        # Relative path, prepend $cwd.\n        func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath\n        ;;\n    esac\n\n    # Cancel out all the simple stuff to save iterations.  We also want\n    # the path to end with a slash for ease of parsing, so make sure\n    # there is one (and only one) here.\n    func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_removedotparts\" -e \"$_G_collapseslashes\" -e \"$_G_finalslash\"`\n    while :; do\n      # Processed it all yet?\n      if test / = \"$func_normal_abspath_tpath\"; then\n        # If we ascended to the root using \"..\" the result may be empty now.\n        if test -z \"$func_normal_abspath_result\"; then\n          func_normal_abspath_result=/\n        fi\n        break\n      fi\n      func_normal_abspath_tcomponent=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_pathcar\"`\n      func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_pathcdr\"`\n      # Figure out what to do with it\n      case $func_normal_abspath_tcomponent in\n        \"\")\n          # Trailing empty path component, ignore it.\n          ;;\n        ..)\n          # Parent dir; strip last assembled component from result.\n          func_dirname \"$func_normal_abspath_result\"\n          func_normal_abspath_result=$func_dirname_result\n          ;;\n        *)\n          # Actual path component, append it.\n          func_append func_normal_abspath_result \"/$func_normal_abspath_tcomponent\"\n          ;;\n      esac\n    done\n    # Restore leading double-slash if one was found on entry.\n    func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result\n}\n\n\n# func_notquiet ARG...\n# --------------------\n# Echo program name prefixed message only when not in quiet mode.\nfunc_notquiet ()\n{\n    $debug_cmd\n\n    $opt_quiet || func_echo ${1+\"$@\"}\n\n    # A bug in bash halts the script if the last line of a function\n    # fails when set -e is in force, so we need another command to\n    # work around that:\n    :\n}\n\n\n# func_relative_path SRCDIR DSTDIR\n# --------------------------------\n# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR.\nfunc_relative_path ()\n{\n    $debug_cmd\n\n    func_relative_path_result=\n    func_normal_abspath \"$1\"\n    func_relative_path_tlibdir=$func_normal_abspath_result\n    func_normal_abspath \"$2\"\n    func_relative_path_tbindir=$func_normal_abspath_result\n\n    # Ascend the tree starting from libdir\n    while :; do\n      # check if we have found a prefix of bindir\n      case $func_relative_path_tbindir in\n        $func_relative_path_tlibdir)\n          # found an exact match\n          func_relative_path_tcancelled=\n          break\n          ;;\n        $func_relative_path_tlibdir*)\n          # found a matching prefix\n          func_stripname \"$func_relative_path_tlibdir\" '' \"$func_relative_path_tbindir\"\n          func_relative_path_tcancelled=$func_stripname_result\n          if test -z \"$func_relative_path_result\"; then\n            func_relative_path_result=.\n          fi\n          break\n          ;;\n        *)\n          func_dirname $func_relative_path_tlibdir\n          func_relative_path_tlibdir=$func_dirname_result\n          if test -z \"$func_relative_path_tlibdir\"; then\n            # Have to descend all the way to the root!\n            func_relative_path_result=../$func_relative_path_result\n            func_relative_path_tcancelled=$func_relative_path_tbindir\n            break\n          fi\n          func_relative_path_result=../$func_relative_path_result\n          ;;\n      esac\n    done\n\n    # Now calculate path; take care to avoid doubling-up slashes.\n    func_stripname '' '/' \"$func_relative_path_result\"\n    func_relative_path_result=$func_stripname_result\n    func_stripname '/' '/' \"$func_relative_path_tcancelled\"\n    if test -n \"$func_stripname_result\"; then\n      func_append func_relative_path_result \"/$func_stripname_result\"\n    fi\n\n    # Normalisation. If bindir is libdir, return '.' else relative path.\n    if test -n \"$func_relative_path_result\"; then\n      func_stripname './' '' \"$func_relative_path_result\"\n      func_relative_path_result=$func_stripname_result\n    fi\n\n    test -n \"$func_relative_path_result\" || func_relative_path_result=.\n\n    :\n}\n\n\n# func_quote_for_eval ARG...\n# --------------------------\n# Aesthetically quote ARGs to be evaled later.\n# This function returns two values:\n#   i) func_quote_for_eval_result\n#      double-quoted, suitable for a subsequent eval\n#  ii) func_quote_for_eval_unquoted_result\n#      has all characters that are still active within double\n#      quotes backslashified.\nfunc_quote_for_eval ()\n{\n    $debug_cmd\n\n    func_quote_for_eval_unquoted_result=\n    func_quote_for_eval_result=\n    while test 0 -lt $#; do\n      case $1 in\n        *[\\\\\\`\\\"\\$]*)\n\t  _G_unquoted_arg=`printf '%s\\n' \"$1\" |$SED \"$sed_quote_subst\"` ;;\n        *)\n          _G_unquoted_arg=$1 ;;\n      esac\n      if test -n \"$func_quote_for_eval_unquoted_result\"; then\n\tfunc_append func_quote_for_eval_unquoted_result \" $_G_unquoted_arg\"\n      else\n        func_append func_quote_for_eval_unquoted_result \"$_G_unquoted_arg\"\n      fi\n\n      case $_G_unquoted_arg in\n        # Double-quote args containing shell metacharacters to delay\n        # word splitting, command substitution and variable expansion\n        # for a subsequent eval.\n        # Many Bourne shells cannot handle close brackets correctly\n        # in scan sets, so we specify it separately.\n        *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n          _G_quoted_arg=\\\"$_G_unquoted_arg\\\"\n          ;;\n        *)\n          _G_quoted_arg=$_G_unquoted_arg\n\t  ;;\n      esac\n\n      if test -n \"$func_quote_for_eval_result\"; then\n\tfunc_append func_quote_for_eval_result \" $_G_quoted_arg\"\n      else\n        func_append func_quote_for_eval_result \"$_G_quoted_arg\"\n      fi\n      shift\n    done\n}\n\n\n# func_quote_for_expand ARG\n# -------------------------\n# Aesthetically quote ARG to be evaled later; same as above,\n# but do not quote variable references.\nfunc_quote_for_expand ()\n{\n    $debug_cmd\n\n    case $1 in\n      *[\\\\\\`\\\"]*)\n\t_G_arg=`$ECHO \"$1\" | $SED \\\n\t    -e \"$sed_double_quote_subst\" -e \"$sed_double_backslash\"` ;;\n      *)\n        _G_arg=$1 ;;\n    esac\n\n    case $_G_arg in\n      # Double-quote args containing shell metacharacters to delay\n      # word splitting and command substitution for a subsequent eval.\n      # Many Bourne shells cannot handle close brackets correctly\n      # in scan sets, so we specify it separately.\n      *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n        _G_arg=\\\"$_G_arg\\\"\n        ;;\n    esac\n\n    func_quote_for_expand_result=$_G_arg\n}\n\n\n# func_stripname PREFIX SUFFIX NAME\n# ---------------------------------\n# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result.\n# PREFIX and SUFFIX must not contain globbing or regex special\n# characters, hashes, percent signs, but SUFFIX may contain a leading\n# dot (in which case that matches only a dot).\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_stripname ()\n  {\n    $debug_cmd\n\n    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\n    # positional parameters, so assign one to ordinary variable first.\n    func_stripname_result=$3\n    func_stripname_result=${func_stripname_result#\"$1\"}\n    func_stripname_result=${func_stripname_result%\"$2\"}\n  }'\nelse\n  func_stripname ()\n  {\n    $debug_cmd\n\n    case $2 in\n      .*) func_stripname_result=`$ECHO \"$3\" | $SED -e \"s%^$1%%\" -e \"s%\\\\\\\\$2\\$%%\"`;;\n      *)  func_stripname_result=`$ECHO \"$3\" | $SED -e \"s%^$1%%\" -e \"s%$2\\$%%\"`;;\n    esac\n  }\nfi\n\n\n# func_show_eval CMD [FAIL_EXP]\n# -----------------------------\n# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.\nfunc_show_eval ()\n{\n    $debug_cmd\n\n    _G_cmd=$1\n    _G_fail_exp=${2-':'}\n\n    func_quote_for_expand \"$_G_cmd\"\n    eval \"func_notquiet $func_quote_for_expand_result\"\n\n    $opt_dry_run || {\n      eval \"$_G_cmd\"\n      _G_status=$?\n      if test 0 -ne \"$_G_status\"; then\n\teval \"(exit $_G_status); $_G_fail_exp\"\n      fi\n    }\n}\n\n\n# func_show_eval_locale CMD [FAIL_EXP]\n# ------------------------------------\n# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.  Use the saved locale for evaluation.\nfunc_show_eval_locale ()\n{\n    $debug_cmd\n\n    _G_cmd=$1\n    _G_fail_exp=${2-':'}\n\n    $opt_quiet || {\n      func_quote_for_expand \"$_G_cmd\"\n      eval \"func_echo $func_quote_for_expand_result\"\n    }\n\n    $opt_dry_run || {\n      eval \"$_G_user_locale\n\t    $_G_cmd\"\n      _G_status=$?\n      eval \"$_G_safe_locale\"\n      if test 0 -ne \"$_G_status\"; then\n\teval \"(exit $_G_status); $_G_fail_exp\"\n      fi\n    }\n}\n\n\n# func_tr_sh\n# ----------\n# Turn $1 into a string suitable for a shell variable name.\n# Result is stored in $func_tr_sh_result.  All characters\n# not in the set a-zA-Z0-9_ are replaced with '_'. Further,\n# if $1 begins with a digit, a '_' is prepended as well.\nfunc_tr_sh ()\n{\n    $debug_cmd\n\n    case $1 in\n    [0-9]* | *[!a-zA-Z0-9_]*)\n      func_tr_sh_result=`$ECHO \"$1\" | $SED -e 's/^\\([0-9]\\)/_\\1/' -e 's/[^a-zA-Z0-9_]/_/g'`\n      ;;\n    * )\n      func_tr_sh_result=$1\n      ;;\n    esac\n}\n\n\n# func_verbose ARG...\n# -------------------\n# Echo program name prefixed message in verbose mode only.\nfunc_verbose ()\n{\n    $debug_cmd\n\n    $opt_verbose && func_echo \"$*\"\n\n    :\n}\n\n\n# func_warn_and_continue ARG...\n# -----------------------------\n# Echo program name prefixed warning message to standard error.\nfunc_warn_and_continue ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    func_echo_infix_1 \"${tc_red}warning$tc_reset\" \"$*\" >&2\n}\n\n\n# func_warning CATEGORY ARG...\n# ----------------------------\n# Echo program name prefixed warning message to standard error. Warning\n# messages can be filtered according to CATEGORY, where this function\n# elides messages where CATEGORY is not listed in the global variable\n# 'opt_warning_types'.\nfunc_warning ()\n{\n    $debug_cmd\n\n    # CATEGORY must be in the warning_categories list!\n    case \" $warning_categories \" in\n      *\" $1 \"*) ;;\n      *) func_internal_error \"invalid warning category '$1'\" ;;\n    esac\n\n    _G_category=$1\n    shift\n\n    case \" $opt_warning_types \" in\n      *\" $_G_category \"*) $warning_func ${1+\"$@\"} ;;\n    esac\n}\n\n\n# func_sort_ver VER1 VER2\n# -----------------------\n# 'sort -V' is not generally available.\n# Note this deviates from the version comparison in automake\n# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a\n# but this should suffice as we won't be specifying old\n# version formats or redundant trailing .0 in bootstrap.conf.\n# If we did want full compatibility then we should probably\n# use m4_version_compare from autoconf.\nfunc_sort_ver ()\n{\n    $debug_cmd\n\n    printf '%s\\n%s\\n' \"$1\" \"$2\" \\\n      | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n\n}\n\n# func_lt_ver PREV CURR\n# ---------------------\n# Return true if PREV and CURR are in the correct order according to\n# func_sort_ver, otherwise false.  Use it like this:\n#\n#  func_lt_ver \"$prev_ver\" \"$proposed_ver\" || func_fatal_error \"...\"\nfunc_lt_ver ()\n{\n    $debug_cmd\n\n    test \"x$1\" = x`func_sort_ver \"$1\" \"$2\" | $SED 1q`\n}\n\n\n# Local variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-pattern: \"10/scriptversion=%:y-%02m-%02d.%02H; # UTC\"\n# time-stamp-time-zone: \"UTC\"\n# End:\n#! /bin/sh\n\n# Set a version string for this script.\nscriptversion=2014-01-07.03; # UTC\n\n# A portable, pluggable option parser for Bourne shell.\n# Written by Gary V. Vaughan, 2010\n\n# Copyright (C) 2010-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n# Please report bugs or propose patches to gary@gnu.org.\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# This file is a library for parsing options in your shell scripts along\n# with assorted other useful supporting features that you can make use\n# of too.\n#\n# For the simplest scripts you might need only:\n#\n#   #!/bin/sh\n#   . relative/path/to/funclib.sh\n#   . relative/path/to/options-parser\n#   scriptversion=1.0\n#   func_options ${1+\"$@\"}\n#   eval set dummy \"$func_options_result\"; shift\n#   ...rest of your script...\n#\n# In order for the '--version' option to work, you will need to have a\n# suitably formatted comment like the one at the top of this file\n# starting with '# Written by ' and ending with '# warranty; '.\n#\n# For '-h' and '--help' to work, you will also need a one line\n# description of your script's purpose in a comment directly above the\n# '# Written by ' line, like the one at the top of this file.\n#\n# The default options also support '--debug', which will turn on shell\n# execution tracing (see the comment above debug_cmd below for another\n# use), and '--verbose' and the func_verbose function to allow your script\n# to display verbose messages only when your user has specified\n# '--verbose'.\n#\n# After sourcing this file, you can plug processing for additional\n# options by amending the variables from the 'Configuration' section\n# below, and following the instructions in the 'Option parsing'\n# section further down.\n\n## -------------- ##\n## Configuration. ##\n## -------------- ##\n\n# You should override these variables in your script after sourcing this\n# file so that they reflect the customisations you have added to the\n# option parser.\n\n# The usage line for option parsing errors and the start of '-h' and\n# '--help' output messages. You can embed shell variables for delayed\n# expansion at the time the message is displayed, but you will need to\n# quote other shell meta-characters carefully to prevent them being\n# expanded when the contents are evaled.\nusage='$progpath [OPTION]...'\n\n# Short help message in response to '-h' and '--help'.  Add to this or\n# override it after sourcing this library to reflect the full set of\n# options your script accepts.\nusage_message=\"\\\n       --debug        enable verbose shell tracing\n   -W, --warnings=CATEGORY\n                      report the warnings falling in CATEGORY [all]\n   -v, --verbose      verbosely report processing\n       --version      print version information and exit\n   -h, --help         print short or long help message and exit\n\"\n\n# Additional text appended to 'usage_message' in response to '--help'.\nlong_help_message=\"\nWarning categories include:\n       'all'          show all warnings\n       'none'         turn off all the warnings\n       'error'        warnings are treated as fatal errors\"\n\n# Help message printed before fatal option parsing errors.\nfatal_help=\"Try '\\$progname --help' for more information.\"\n\n\n\n## ------------------------- ##\n## Hook function management. ##\n## ------------------------- ##\n\n# This section contains functions for adding, removing, and running hooks\n# to the main code.  A hook is just a named list of of function, that can\n# be run in order later on.\n\n# func_hookable FUNC_NAME\n# -----------------------\n# Declare that FUNC_NAME will run hooks added with\n# 'func_add_hook FUNC_NAME ...'.\nfunc_hookable ()\n{\n    $debug_cmd\n\n    func_append hookable_fns \" $1\"\n}\n\n\n# func_add_hook FUNC_NAME HOOK_FUNC\n# ---------------------------------\n# Request that FUNC_NAME call HOOK_FUNC before it returns.  FUNC_NAME must\n# first have been declared \"hookable\" by a call to 'func_hookable'.\nfunc_add_hook ()\n{\n    $debug_cmd\n\n    case \" $hookable_fns \" in\n      *\" $1 \"*) ;;\n      *) func_fatal_error \"'$1' does not accept hook functions.\" ;;\n    esac\n\n    eval func_append ${1}_hooks '\" $2\"'\n}\n\n\n# func_remove_hook FUNC_NAME HOOK_FUNC\n# ------------------------------------\n# Remove HOOK_FUNC from the list of functions called by FUNC_NAME.\nfunc_remove_hook ()\n{\n    $debug_cmd\n\n    eval ${1}_hooks='`$ECHO \"\\$'$1'_hooks\" |$SED \"s| '$2'||\"`'\n}\n\n\n# func_run_hooks FUNC_NAME [ARG]...\n# ---------------------------------\n# Run all hook functions registered to FUNC_NAME.\n# It is assumed that the list of hook functions contains nothing more\n# than a whitespace-delimited list of legal shell function names, and\n# no effort is wasted trying to catch shell meta-characters or preserve\n# whitespace.\nfunc_run_hooks ()\n{\n    $debug_cmd\n\n    case \" $hookable_fns \" in\n      *\" $1 \"*) ;;\n      *) func_fatal_error \"'$1' does not support hook funcions.n\" ;;\n    esac\n\n    eval _G_hook_fns=\\$$1_hooks; shift\n\n    for _G_hook in $_G_hook_fns; do\n      eval $_G_hook '\"$@\"'\n\n      # store returned options list back into positional\n      # parameters for next 'cmd' execution.\n      eval _G_hook_result=\\$${_G_hook}_result\n      eval set dummy \"$_G_hook_result\"; shift\n    done\n\n    func_quote_for_eval ${1+\"$@\"}\n    func_run_hooks_result=$func_quote_for_eval_result\n}\n\n\n\n## --------------- ##\n## Option parsing. ##\n## --------------- ##\n\n# In order to add your own option parsing hooks, you must accept the\n# full positional parameter list in your hook function, remove any\n# options that you action, and then pass back the remaining unprocessed\n# options in '<hooked_function_name>_result', escaped suitably for\n# 'eval'.  Like this:\n#\n#    my_options_prep ()\n#    {\n#        $debug_cmd\n#\n#        # Extend the existing usage message.\n#        usage_message=$usage_message'\n#      -s, --silent       don'\\''t print informational messages\n#    '\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_options_prep_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_options_prep my_options_prep\n#\n#\n#    my_silent_option ()\n#    {\n#        $debug_cmd\n#\n#        # Note that for efficiency, we parse as many options as we can\n#        # recognise in a loop before passing the remainder back to the\n#        # caller on the first unrecognised argument we encounter.\n#        while test $# -gt 0; do\n#          opt=$1; shift\n#          case $opt in\n#            --silent|-s) opt_silent=: ;;\n#            # Separate non-argument short options:\n#            -s*)         func_split_short_opt \"$_G_opt\"\n#                         set dummy \"$func_split_short_opt_name\" \\\n#                             \"-$func_split_short_opt_arg\" ${1+\"$@\"}\n#                         shift\n#                         ;;\n#            *)            set dummy \"$_G_opt\" \"$*\"; shift; break ;;\n#          esac\n#        done\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_silent_option_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_parse_options my_silent_option\n#\n#\n#    my_option_validation ()\n#    {\n#        $debug_cmd\n#\n#        $opt_silent && $opt_verbose && func_fatal_help \"\\\n#    '--silent' and '--verbose' options are mutually exclusive.\"\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_option_validation_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_validate_options my_option_validation\n#\n# You'll alse need to manually amend $usage_message to reflect the extra\n# options you parse.  It's preferable to append if you can, so that\n# multiple option parsing hooks can be added safely.\n\n\n# func_options [ARG]...\n# ---------------------\n# All the functions called inside func_options are hookable. See the\n# individual implementations for details.\nfunc_hookable func_options\nfunc_options ()\n{\n    $debug_cmd\n\n    func_options_prep ${1+\"$@\"}\n    eval func_parse_options \\\n        ${func_options_prep_result+\"$func_options_prep_result\"}\n    eval func_validate_options \\\n        ${func_parse_options_result+\"$func_parse_options_result\"}\n\n    eval func_run_hooks func_options \\\n        ${func_validate_options_result+\"$func_validate_options_result\"}\n\n    # save modified positional parameters for caller\n    func_options_result=$func_run_hooks_result\n}\n\n\n# func_options_prep [ARG]...\n# --------------------------\n# All initialisations required before starting the option parse loop.\n# Note that when calling hook functions, we pass through the list of\n# positional parameters.  If a hook function modifies that list, and\n# needs to propogate that back to rest of this script, then the complete\n# modified list must be put in 'func_run_hooks_result' before\n# returning.\nfunc_hookable func_options_prep\nfunc_options_prep ()\n{\n    $debug_cmd\n\n    # Option defaults:\n    opt_verbose=false\n    opt_warning_types=\n\n    func_run_hooks func_options_prep ${1+\"$@\"}\n\n    # save modified positional parameters for caller\n    func_options_prep_result=$func_run_hooks_result\n}\n\n\n# func_parse_options [ARG]...\n# ---------------------------\n# The main option parsing loop.\nfunc_hookable func_parse_options\nfunc_parse_options ()\n{\n    $debug_cmd\n\n    func_parse_options_result=\n\n    # this just eases exit handling\n    while test $# -gt 0; do\n      # Defer to hook functions for initial option parsing, so they\n      # get priority in the event of reusing an option name.\n      func_run_hooks func_parse_options ${1+\"$@\"}\n\n      # Adjust func_parse_options positional parameters to match\n      eval set dummy \"$func_run_hooks_result\"; shift\n\n      # Break out of the loop if we already parsed every option.\n      test $# -gt 0 || break\n\n      _G_opt=$1\n      shift\n      case $_G_opt in\n        --debug|-x)   debug_cmd='set -x'\n                      func_echo \"enabling shell trace mode\"\n                      $debug_cmd\n                      ;;\n\n        --no-warnings|--no-warning|--no-warn)\n                      set dummy --warnings none ${1+\"$@\"}\n                      shift\n\t\t      ;;\n\n        --warnings|--warning|-W)\n                      test $# = 0 && func_missing_arg $_G_opt && break\n                      case \" $warning_categories $1\" in\n                        *\" $1 \"*)\n                          # trailing space prevents matching last $1 above\n                          func_append_uniq opt_warning_types \" $1\"\n                          ;;\n                        *all)\n                          opt_warning_types=$warning_categories\n                          ;;\n                        *none)\n                          opt_warning_types=none\n                          warning_func=:\n                          ;;\n                        *error)\n                          opt_warning_types=$warning_categories\n                          warning_func=func_fatal_error\n                          ;;\n                        *)\n                          func_fatal_error \\\n                             \"unsupported warning category: '$1'\"\n                          ;;\n                      esac\n                      shift\n                      ;;\n\n        --verbose|-v) opt_verbose=: ;;\n        --version)    func_version ;;\n        -\\?|-h)       func_usage ;;\n        --help)       func_help ;;\n\n\t# Separate optargs to long options (plugins may need this):\n\t--*=*)        func_split_equals \"$_G_opt\"\n\t              set dummy \"$func_split_equals_lhs\" \\\n                          \"$func_split_equals_rhs\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n       # Separate optargs to short options:\n        -W*)\n                      func_split_short_opt \"$_G_opt\"\n                      set dummy \"$func_split_short_opt_name\" \\\n                          \"$func_split_short_opt_arg\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n        # Separate non-argument short options:\n        -\\?*|-h*|-v*|-x*)\n                      func_split_short_opt \"$_G_opt\"\n                      set dummy \"$func_split_short_opt_name\" \\\n                          \"-$func_split_short_opt_arg\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n        --)           break ;;\n        -*)           func_fatal_help \"unrecognised option: '$_G_opt'\" ;;\n        *)            set dummy \"$_G_opt\" ${1+\"$@\"}; shift; break ;;\n      esac\n    done\n\n    # save modified positional parameters for caller\n    func_quote_for_eval ${1+\"$@\"}\n    func_parse_options_result=$func_quote_for_eval_result\n}\n\n\n# func_validate_options [ARG]...\n# ------------------------------\n# Perform any sanity checks on option settings and/or unconsumed\n# arguments.\nfunc_hookable func_validate_options\nfunc_validate_options ()\n{\n    $debug_cmd\n\n    # Display all warnings if -W was not given.\n    test -n \"$opt_warning_types\" || opt_warning_types=\" $warning_categories\"\n\n    func_run_hooks func_validate_options ${1+\"$@\"}\n\n    # Bail if the options were screwed!\n    $exit_cmd $EXIT_FAILURE\n\n    # save modified positional parameters for caller\n    func_validate_options_result=$func_run_hooks_result\n}\n\n\n\n## ----------------- ##\n## Helper functions. ##\n## ----------------- ##\n\n# This section contains the helper functions used by the rest of the\n# hookable option parser framework in ascii-betical order.\n\n\n# func_fatal_help ARG...\n# ----------------------\n# Echo program name prefixed message to standard error, followed by\n# a help hint, and exit.\nfunc_fatal_help ()\n{\n    $debug_cmd\n\n    eval \\$ECHO \\\"\"Usage: $usage\"\\\"\n    eval \\$ECHO \\\"\"$fatal_help\"\\\"\n    func_error ${1+\"$@\"}\n    exit $EXIT_FAILURE\n}\n\n\n# func_help\n# ---------\n# Echo long help message to standard output and exit.\nfunc_help ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"$long_help_message\"\n    exit 0\n}\n\n\n# func_missing_arg ARGNAME\n# ------------------------\n# Echo program name prefixed message to standard error and set global\n# exit_cmd.\nfunc_missing_arg ()\n{\n    $debug_cmd\n\n    func_error \"Missing argument for '$1'.\"\n    exit_cmd=exit\n}\n\n\n# func_split_equals STRING\n# ------------------------\n# Set func_split_equals_lhs and func_split_equals_rhs shell variables after\n# splitting STRING at the '=' sign.\ntest -z \"$_G_HAVE_XSI_OPS\" \\\n    && (eval 'x=a/b/c;\n      test 5aa/bb/cc = \"${#x}${x%%/*}${x%/*}${x#*/}${x##*/}\"') 2>/dev/null \\\n    && _G_HAVE_XSI_OPS=yes\n\nif test yes = \"$_G_HAVE_XSI_OPS\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_split_equals ()\n  {\n      $debug_cmd\n\n      func_split_equals_lhs=${1%%=*}\n      func_split_equals_rhs=${1#*=}\n      test \"x$func_split_equals_lhs\" = \"x$1\" \\\n        && func_split_equals_rhs=\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_split_equals ()\n  {\n      $debug_cmd\n\n      func_split_equals_lhs=`expr \"x$1\" : 'x\\([^=]*\\)'`\n      func_split_equals_rhs=\n      test \"x$func_split_equals_lhs\" = \"x$1\" \\\n        || func_split_equals_rhs=`expr \"x$1\" : 'x[^=]*=\\(.*\\)$'`\n  }\nfi #func_split_equals\n\n\n# func_split_short_opt SHORTOPT\n# -----------------------------\n# Set func_split_short_opt_name and func_split_short_opt_arg shell\n# variables after splitting SHORTOPT after the 2nd character.\nif test yes = \"$_G_HAVE_XSI_OPS\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_split_short_opt ()\n  {\n      $debug_cmd\n\n      func_split_short_opt_arg=${1#??}\n      func_split_short_opt_name=${1%\"$func_split_short_opt_arg\"}\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_split_short_opt ()\n  {\n      $debug_cmd\n\n      func_split_short_opt_name=`expr \"x$1\" : 'x-\\(.\\)'`\n      func_split_short_opt_arg=`expr \"x$1\" : 'x-.\\(.*\\)$'`\n  }\nfi #func_split_short_opt\n\n\n# func_usage\n# ----------\n# Echo short help message to standard output and exit.\nfunc_usage ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"Run '$progname --help |${PAGER-more}' for full usage\"\n    exit 0\n}\n\n\n# func_usage_message\n# ------------------\n# Echo short help message to standard output.\nfunc_usage_message ()\n{\n    $debug_cmd\n\n    eval \\$ECHO \\\"\"Usage: $usage\"\\\"\n    echo\n    $SED -n 's|^# ||\n        /^Written by/{\n          x;p;x\n        }\n\th\n\t/^Written by/q' < \"$progpath\"\n    echo\n    eval \\$ECHO \\\"\"$usage_message\"\\\"\n}\n\n\n# func_version\n# ------------\n# Echo version message to standard output and exit.\nfunc_version ()\n{\n    $debug_cmd\n\n    printf '%s\\n' \"$progname $scriptversion\"\n    $SED -n '\n        /(C)/!b go\n        :more\n        /\\./!{\n          N\n          s|\\n# | |\n          b more\n        }\n        :go\n        /^# Written by /,/# warranty; / {\n          s|^# ||\n          s|^# *$||\n          s|\\((C)\\)[ 0-9,-]*[ ,-]\\([1-9][0-9]* \\)|\\1 \\2|\n          p\n        }\n        /^# Written by / {\n          s|^# ||\n          p\n        }\n        /^warranty; /q' < \"$progpath\"\n\n    exit $?\n}\n\n\n# Local variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-pattern: \"10/scriptversion=%:y-%02m-%02d.%02H; # UTC\"\n# time-stamp-time-zone: \"UTC\"\n# End:\n\n# Set a version string.\nscriptversion='(GNU libtool) 2.4.6'\n\n\n# func_echo ARG...\n# ----------------\n# Libtool also displays the current mode in messages, so override\n# funclib.sh func_echo with this custom definition.\nfunc_echo ()\n{\n    $debug_cmd\n\n    _G_message=$*\n\n    func_echo_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_IFS\n      $ECHO \"$progname${opt_mode+: $opt_mode}: $_G_line\"\n    done\n    IFS=$func_echo_IFS\n}\n\n\n# func_warning ARG...\n# -------------------\n# Libtool warnings are not categorized, so override funclib.sh\n# func_warning with this simpler definition.\nfunc_warning ()\n{\n    $debug_cmd\n\n    $warning_func ${1+\"$@\"}\n}\n\n\n## ---------------- ##\n## Options parsing. ##\n## ---------------- ##\n\n# Hook in the functions to make sure our own options are parsed during\n# the option parsing loop.\n\nusage='$progpath [OPTION]... [MODE-ARG]...'\n\n# Short help message in response to '-h'.\nusage_message=\"Options:\n       --config             show all configuration variables\n       --debug              enable verbose shell tracing\n   -n, --dry-run            display commands without modifying any files\n       --features           display basic configuration information and exit\n       --mode=MODE          use operation mode MODE\n       --no-warnings        equivalent to '-Wnone'\n       --preserve-dup-deps  don't remove duplicate dependency libraries\n       --quiet, --silent    don't print informational messages\n       --tag=TAG            use configuration variables from tag TAG\n   -v, --verbose            print more informational messages than default\n       --version            print version information\n   -W, --warnings=CATEGORY  report the warnings falling in CATEGORY [all]\n   -h, --help, --help-all   print short, long, or detailed help message\n\"\n\n# Additional text appended to 'usage_message' in response to '--help'.\nfunc_help ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"$long_help_message\n\nMODE must be one of the following:\n\n       clean           remove files from the build directory\n       compile         compile a source file into a libtool object\n       execute         automatically set library path, then run a program\n       finish          complete the installation of libtool libraries\n       install         install libraries or executables\n       link            create a library or an executable\n       uninstall       remove libraries from an installed directory\n\nMODE-ARGS vary depending on the MODE.  When passed as first option,\n'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that.\nTry '$progname --help --mode=MODE' for a more detailed description of MODE.\n\nWhen reporting a bug, please describe a test case to reproduce it and\ninclude the following information:\n\n       host-triplet:   $host\n       shell:          $SHELL\n       compiler:       $LTCC\n       compiler flags: $LTCFLAGS\n       linker:         $LD (gnu? $with_gnu_ld)\n       version:        $progname (GNU libtool) 2.4.6\n       automake:       `($AUTOMAKE --version) 2>/dev/null |$SED 1q`\n       autoconf:       `($AUTOCONF --version) 2>/dev/null |$SED 1q`\n\nReport bugs to <bug-libtool@gnu.org>.\nGNU libtool home page: <http://www.gnu.org/software/libtool/>.\nGeneral help using GNU software: <http://www.gnu.org/gethelp/>.\"\n    exit 0\n}\n\n\n# func_lo2o OBJECT-NAME\n# ---------------------\n# Transform OBJECT-NAME from a '.lo' suffix to the platform specific\n# object suffix.\n\nlo2o=s/\\\\.lo\\$/.$objext/\no2lo=s/\\\\.$objext\\$/.lo/\n\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_lo2o ()\n  {\n    case $1 in\n      *.lo) func_lo2o_result=${1%.lo}.$objext ;;\n      *   ) func_lo2o_result=$1               ;;\n    esac\n  }'\n\n  # func_xform LIBOBJ-OR-SOURCE\n  # ---------------------------\n  # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise)\n  # suffix to a '.lo' libtool-object suffix.\n  eval 'func_xform ()\n  {\n    func_xform_result=${1%.*}.lo\n  }'\nelse\n  # ...otherwise fall back to using sed.\n  func_lo2o ()\n  {\n    func_lo2o_result=`$ECHO \"$1\" | $SED \"$lo2o\"`\n  }\n\n  func_xform ()\n  {\n    func_xform_result=`$ECHO \"$1\" | $SED 's|\\.[^.]*$|.lo|'`\n  }\nfi\n\n\n# func_fatal_configuration ARG...\n# -------------------------------\n# Echo program name prefixed message to standard error, followed by\n# a configuration failure hint, and exit.\nfunc_fatal_configuration ()\n{\n    func__fatal_error ${1+\"$@\"} \\\n      \"See the $PACKAGE documentation for more information.\" \\\n      \"Fatal configuration error.\"\n}\n\n\n# func_config\n# -----------\n# Display the configuration for all the tags in this script.\nfunc_config ()\n{\n    re_begincf='^# ### BEGIN LIBTOOL'\n    re_endcf='^# ### END LIBTOOL'\n\n    # Default configuration.\n    $SED \"1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\\$d\" < \"$progpath\"\n\n    # Now print the configurations for the tags.\n    for tagname in $taglist; do\n      $SED -n \"/$re_begincf TAG CONFIG: $tagname\\$/,/$re_endcf TAG CONFIG: $tagname\\$/p\" < \"$progpath\"\n    done\n\n    exit $?\n}\n\n\n# func_features\n# -------------\n# Display the features supported by this script.\nfunc_features ()\n{\n    echo \"host: $host\"\n    if test yes = \"$build_libtool_libs\"; then\n      echo \"enable shared libraries\"\n    else\n      echo \"disable shared libraries\"\n    fi\n    if test yes = \"$build_old_libs\"; then\n      echo \"enable static libraries\"\n    else\n      echo \"disable static libraries\"\n    fi\n\n    exit $?\n}\n\n\n# func_enable_tag TAGNAME\n# -----------------------\n# Verify that TAGNAME is valid, and either flag an error and exit, or\n# enable the TAGNAME tag.  We also add TAGNAME to the global $taglist\n# variable here.\nfunc_enable_tag ()\n{\n    # Global variable:\n    tagname=$1\n\n    re_begincf=\"^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\\$\"\n    re_endcf=\"^# ### END LIBTOOL TAG CONFIG: $tagname\\$\"\n    sed_extractcf=/$re_begincf/,/$re_endcf/p\n\n    # Validate tagname.\n    case $tagname in\n      *[!-_A-Za-z0-9,/]*)\n        func_fatal_error \"invalid tag name: $tagname\"\n        ;;\n    esac\n\n    # Don't test for the \"default\" C tag, as we know it's\n    # there but not specially marked.\n    case $tagname in\n        CC) ;;\n    *)\n        if $GREP \"$re_begincf\" \"$progpath\" >/dev/null 2>&1; then\n\t  taglist=\"$taglist $tagname\"\n\n\t  # Evaluate the configuration.  Be careful to quote the path\n\t  # and the sed script, to avoid splitting on whitespace, but\n\t  # also don't use non-portable quotes within backquotes within\n\t  # quotes we have to do it in 2 steps:\n\t  extractedcf=`$SED -n -e \"$sed_extractcf\" < \"$progpath\"`\n\t  eval \"$extractedcf\"\n        else\n\t  func_error \"ignoring unknown tag $tagname\"\n        fi\n        ;;\n    esac\n}\n\n\n# func_check_version_match\n# ------------------------\n# Ensure that we are using m4 macros, and libtool script from the same\n# release of libtool.\nfunc_check_version_match ()\n{\n    if test \"$package_revision\" != \"$macro_revision\"; then\n      if test \"$VERSION\" != \"$macro_version\"; then\n        if test -z \"$macro_version\"; then\n          cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from an older release.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n        else\n          cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from $PACKAGE $macro_version.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n        fi\n      else\n        cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, revision $package_revision,\n$progname: but the definition of this LT_INIT comes from revision $macro_revision.\n$progname: You should recreate aclocal.m4 with macros from revision $package_revision\n$progname: of $PACKAGE $VERSION and run autoconf again.\n_LT_EOF\n      fi\n\n      exit $EXIT_MISMATCH\n    fi\n}\n\n\n# libtool_options_prep [ARG]...\n# -----------------------------\n# Preparation for options parsed by libtool.\nlibtool_options_prep ()\n{\n    $debug_mode\n\n    # Option defaults:\n    opt_config=false\n    opt_dlopen=\n    opt_dry_run=false\n    opt_help=false\n    opt_mode=\n    opt_preserve_dup_deps=false\n    opt_quiet=false\n\n    nonopt=\n    preserve_args=\n\n    # Shorthand for --mode=foo, only valid as the first argument\n    case $1 in\n    clean|clea|cle|cl)\n      shift; set dummy --mode clean ${1+\"$@\"}; shift\n      ;;\n    compile|compil|compi|comp|com|co|c)\n      shift; set dummy --mode compile ${1+\"$@\"}; shift\n      ;;\n    execute|execut|execu|exec|exe|ex|e)\n      shift; set dummy --mode execute ${1+\"$@\"}; shift\n      ;;\n    finish|finis|fini|fin|fi|f)\n      shift; set dummy --mode finish ${1+\"$@\"}; shift\n      ;;\n    install|instal|insta|inst|ins|in|i)\n      shift; set dummy --mode install ${1+\"$@\"}; shift\n      ;;\n    link|lin|li|l)\n      shift; set dummy --mode link ${1+\"$@\"}; shift\n      ;;\n    uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)\n      shift; set dummy --mode uninstall ${1+\"$@\"}; shift\n      ;;\n    esac\n\n    # Pass back the list of options.\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_options_prep_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_options_prep libtool_options_prep\n\n\n# libtool_parse_options [ARG]...\n# ---------------------------------\n# Provide handling for libtool specific options.\nlibtool_parse_options ()\n{\n    $debug_cmd\n\n    # Perform our own loop to consume as many options as possible in\n    # each iteration.\n    while test $# -gt 0; do\n      _G_opt=$1\n      shift\n      case $_G_opt in\n        --dry-run|--dryrun|-n)\n                        opt_dry_run=:\n                        ;;\n\n        --config)       func_config ;;\n\n        --dlopen|-dlopen)\n                        opt_dlopen=\"${opt_dlopen+$opt_dlopen\n}$1\"\n                        shift\n                        ;;\n\n        --preserve-dup-deps)\n                        opt_preserve_dup_deps=: ;;\n\n        --features)     func_features ;;\n\n        --finish)       set dummy --mode finish ${1+\"$@\"}; shift ;;\n\n        --help)         opt_help=: ;;\n\n        --help-all)     opt_help=': help-all' ;;\n\n        --mode)         test $# = 0 && func_missing_arg $_G_opt && break\n                        opt_mode=$1\n                        case $1 in\n                          # Valid mode arguments:\n                          clean|compile|execute|finish|install|link|relink|uninstall) ;;\n\n                          # Catch anything else as an error\n                          *) func_error \"invalid argument for $_G_opt\"\n                             exit_cmd=exit\n                             break\n                             ;;\n                        esac\n                        shift\n                        ;;\n\n        --no-silent|--no-quiet)\n                        opt_quiet=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --no-warnings|--no-warning|--no-warn)\n                        opt_warning=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --no-verbose)\n                        opt_verbose=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --silent|--quiet)\n                        opt_quiet=:\n                        opt_verbose=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --tag)          test $# = 0 && func_missing_arg $_G_opt && break\n                        opt_tag=$1\n                        func_append preserve_args \" $_G_opt $1\"\n                        func_enable_tag \"$1\"\n                        shift\n                        ;;\n\n        --verbose|-v)   opt_quiet=false\n                        opt_verbose=:\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n\t# An option not handled by this hook function:\n        *)\t\tset dummy \"$_G_opt\" ${1+\"$@\"};\tshift; break  ;;\n      esac\n    done\n\n\n    # save modified positional parameters for caller\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_parse_options_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_parse_options libtool_parse_options\n\n\n\n# libtool_validate_options [ARG]...\n# ---------------------------------\n# Perform any sanity checks on option settings and/or unconsumed\n# arguments.\nlibtool_validate_options ()\n{\n    # save first non-option argument\n    if test 0 -lt $#; then\n      nonopt=$1\n      shift\n    fi\n\n    # preserve --debug\n    test : = \"$debug_cmd\" || func_append preserve_args \" --debug\"\n\n    case $host in\n      # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452\n      # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788\n      *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*)\n        # don't eliminate duplications in $postdeps and $predeps\n        opt_duplicate_compiler_generated_deps=:\n        ;;\n      *)\n        opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps\n        ;;\n    esac\n\n    $opt_help || {\n      # Sanity checks first:\n      func_check_version_match\n\n      test yes != \"$build_libtool_libs\" \\\n        && test yes != \"$build_old_libs\" \\\n        && func_fatal_configuration \"not configured to build any kind of library\"\n\n      # Darwin sucks\n      eval std_shrext=\\\"$shrext_cmds\\\"\n\n      # Only execute mode is allowed to have -dlopen flags.\n      if test -n \"$opt_dlopen\" && test execute != \"$opt_mode\"; then\n        func_error \"unrecognized option '-dlopen'\"\n        $ECHO \"$help\" 1>&2\n        exit $EXIT_FAILURE\n      fi\n\n      # Change the help message to a mode-specific one.\n      generic_help=$help\n      help=\"Try '$progname --help --mode=$opt_mode' for more information.\"\n    }\n\n    # Pass back the unparsed argument list\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_validate_options_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_validate_options libtool_validate_options\n\n\n# Process options as early as possible so that --help and --version\n# can return quickly.\nfunc_options ${1+\"$@\"}\neval set dummy \"$func_options_result\"; shift\n\n\n\n## ----------- ##\n##    Main.    ##\n## ----------- ##\n\nmagic='%%%MAGIC variable%%%'\nmagic_exe='%%%MAGIC EXE variable%%%'\n\n# Global variables.\nextracted_archives=\nextracted_serial=0\n\n# If this variable is set in any of the actions, the command in it\n# will be execed at the end.  This prevents here-documents from being\n# left over by shells.\nexec_cmd=\n\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n}\n\n# func_generated_by_libtool\n# True iff stdin has been generated by Libtool. This function is only\n# a basic sanity check; it will hardly flush out determined imposters.\nfunc_generated_by_libtool_p ()\n{\n  $GREP \"^# Generated by .*$PACKAGE\" > /dev/null 2>&1\n}\n\n# func_lalib_p file\n# True iff FILE is a libtool '.la' library or '.lo' object file.\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_lalib_p ()\n{\n    test -f \"$1\" &&\n      $SED -e 4q \"$1\" 2>/dev/null | func_generated_by_libtool_p\n}\n\n# func_lalib_unsafe_p file\n# True iff FILE is a libtool '.la' library or '.lo' object file.\n# This function implements the same check as func_lalib_p without\n# resorting to external programs.  To this end, it redirects stdin and\n# closes it afterwards, without saving the original file descriptor.\n# As a safety measure, use it only where a negative result would be\n# fatal anyway.  Works if 'file' does not exist.\nfunc_lalib_unsafe_p ()\n{\n    lalib_p=no\n    if test -f \"$1\" && test -r \"$1\" && exec 5<&0 <\"$1\"; then\n\tfor lalib_p_l in 1 2 3 4\n\tdo\n\t    read lalib_p_line\n\t    case $lalib_p_line in\n\t\t\\#\\ Generated\\ by\\ *$PACKAGE* ) lalib_p=yes; break;;\n\t    esac\n\tdone\n\texec 0<&5 5<&-\n    fi\n    test yes = \"$lalib_p\"\n}\n\n# func_ltwrapper_script_p file\n# True iff FILE is a libtool wrapper script\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_script_p ()\n{\n    test -f \"$1\" &&\n      $lt_truncate_bin < \"$1\" 2>/dev/null | func_generated_by_libtool_p\n}\n\n# func_ltwrapper_executable_p file\n# True iff FILE is a libtool wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_executable_p ()\n{\n    func_ltwrapper_exec_suffix=\n    case $1 in\n    *.exe) ;;\n    *) func_ltwrapper_exec_suffix=.exe ;;\n    esac\n    $GREP \"$magic_exe\" \"$1$func_ltwrapper_exec_suffix\" >/dev/null 2>&1\n}\n\n# func_ltwrapper_scriptname file\n# Assumes file is an ltwrapper_executable\n# uses $file to determine the appropriate filename for a\n# temporary ltwrapper_script.\nfunc_ltwrapper_scriptname ()\n{\n    func_dirname_and_basename \"$1\" \"\" \".\"\n    func_stripname '' '.exe' \"$func_basename_result\"\n    func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper\n}\n\n# func_ltwrapper_p file\n# True iff FILE is a libtool wrapper script or wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_p ()\n{\n    func_ltwrapper_script_p \"$1\" || func_ltwrapper_executable_p \"$1\"\n}\n\n\n# func_execute_cmds commands fail_cmd\n# Execute tilde-delimited COMMANDS.\n# If FAIL_CMD is given, eval that upon failure.\n# FAIL_CMD may read-access the current command in variable CMD!\nfunc_execute_cmds ()\n{\n    $debug_cmd\n\n    save_ifs=$IFS; IFS='~'\n    for cmd in $1; do\n      IFS=$sp$nl\n      eval cmd=\\\"$cmd\\\"\n      IFS=$save_ifs\n      func_show_eval \"$cmd\" \"${2-:}\"\n    done\n    IFS=$save_ifs\n}\n\n\n# func_source file\n# Source FILE, adding directory component if necessary.\n# Note that it is not necessary on cygwin/mingw to append a dot to\n# FILE even if both FILE and FILE.exe exist: automatic-append-.exe\n# behavior happens only for exec(3), not for open(2)!  Also, sourcing\n# 'FILE.' does not work on cygwin managed mounts.\nfunc_source ()\n{\n    $debug_cmd\n\n    case $1 in\n    */* | *\\\\*)\t. \"$1\" ;;\n    *)\t\t. \"./$1\" ;;\n    esac\n}\n\n\n# func_resolve_sysroot PATH\n# Replace a leading = in PATH with a sysroot.  Store the result into\n# func_resolve_sysroot_result\nfunc_resolve_sysroot ()\n{\n  func_resolve_sysroot_result=$1\n  case $func_resolve_sysroot_result in\n  =*)\n    func_stripname '=' '' \"$func_resolve_sysroot_result\"\n    func_resolve_sysroot_result=$lt_sysroot$func_stripname_result\n    ;;\n  esac\n}\n\n# func_replace_sysroot PATH\n# If PATH begins with the sysroot, replace it with = and\n# store the result into func_replace_sysroot_result.\nfunc_replace_sysroot ()\n{\n  case $lt_sysroot:$1 in\n  ?*:\"$lt_sysroot\"*)\n    func_stripname \"$lt_sysroot\" '' \"$1\"\n    func_replace_sysroot_result='='$func_stripname_result\n    ;;\n  *)\n    # Including no sysroot.\n    func_replace_sysroot_result=$1\n    ;;\n  esac\n}\n\n# func_infer_tag arg\n# Infer tagged configuration to use if any are available and\n# if one wasn't chosen via the \"--tag\" command line option.\n# Only attempt this if the compiler in the base compile\n# command doesn't match the default compiler.\n# arg is usually of the form 'gcc ...'\nfunc_infer_tag ()\n{\n    $debug_cmd\n\n    if test -n \"$available_tags\" && test -z \"$tagname\"; then\n      CC_quoted=\n      for arg in $CC; do\n\tfunc_append_quoted CC_quoted \"$arg\"\n      done\n      CC_expanded=`func_echo_all $CC`\n      CC_quoted_expanded=`func_echo_all $CC_quoted`\n      case $@ in\n      # Blanks in the command may have been stripped by the calling shell,\n      # but not from the CC environment variable when configure was run.\n      \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n      \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*) ;;\n      # Blanks at the start of $base_compile will cause this to fail\n      # if we don't check for them as well.\n      *)\n\tfor z in $available_tags; do\n\t  if $GREP \"^# ### BEGIN LIBTOOL TAG CONFIG: $z$\" < \"$progpath\" > /dev/null; then\n\t    # Evaluate the configuration.\n\t    eval \"`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`\"\n\t    CC_quoted=\n\t    for arg in $CC; do\n\t      # Double-quote args containing other shell metacharacters.\n\t      func_append_quoted CC_quoted \"$arg\"\n\t    done\n\t    CC_expanded=`func_echo_all $CC`\n\t    CC_quoted_expanded=`func_echo_all $CC_quoted`\n\t    case \"$@ \" in\n\t    \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n\t    \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*)\n\t      # The compiler in the base compile command matches\n\t      # the one in the tagged configuration.\n\t      # Assume this is the tagged configuration we want.\n\t      tagname=$z\n\t      break\n\t      ;;\n\t    esac\n\t  fi\n\tdone\n\t# If $tagname still isn't set, then no tagged configuration\n\t# was found and let the user know that the \"--tag\" command\n\t# line option must be used.\n\tif test -z \"$tagname\"; then\n\t  func_echo \"unable to infer tagged configuration\"\n\t  func_fatal_error \"specify a tag with '--tag'\"\n#\telse\n#\t  func_verbose \"using $tagname tagged configuration\"\n\tfi\n\t;;\n      esac\n    fi\n}\n\n\n\n# func_write_libtool_object output_name pic_name nonpic_name\n# Create a libtool object file (analogous to a \".la\" file),\n# but don't create it if we're doing a dry run.\nfunc_write_libtool_object ()\n{\n    write_libobj=$1\n    if test yes = \"$build_libtool_libs\"; then\n      write_lobj=\\'$2\\'\n    else\n      write_lobj=none\n    fi\n\n    if test yes = \"$build_old_libs\"; then\n      write_oldobj=\\'$3\\'\n    else\n      write_oldobj=none\n    fi\n\n    $opt_dry_run || {\n      cat >${write_libobj}T <<EOF\n# $write_libobj - a libtool object file\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# Name of the PIC object.\npic_object=$write_lobj\n\n# Name of the non-PIC object\nnon_pic_object=$write_oldobj\n\nEOF\n      $MV \"${write_libobj}T\" \"$write_libobj\"\n    }\n}\n\n\n##################################################\n# FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #\n##################################################\n\n# func_convert_core_file_wine_to_w32 ARG\n# Helper function used by file name conversion functions when $build is *nix,\n# and $host is mingw, cygwin, or some other w32 environment. Relies on a\n# correctly configured wine environment available, with the winepath program\n# in $build's $PATH.\n#\n# ARG is the $build file name to be converted to w32 format.\n# Result is available in $func_convert_core_file_wine_to_w32_result, and will\n# be empty on error (or when ARG is empty)\nfunc_convert_core_file_wine_to_w32 ()\n{\n  $debug_cmd\n\n  func_convert_core_file_wine_to_w32_result=$1\n  if test -n \"$1\"; then\n    # Unfortunately, winepath does not exit with a non-zero error code, so we\n    # are forced to check the contents of stdout. On the other hand, if the\n    # command is not found, the shell will set an exit code of 127 and print\n    # *an error message* to stdout. So we must check for both error code of\n    # zero AND non-empty stdout, which explains the odd construction:\n    func_convert_core_file_wine_to_w32_tmp=`winepath -w \"$1\" 2>/dev/null`\n    if test \"$?\" -eq 0 && test -n \"$func_convert_core_file_wine_to_w32_tmp\"; then\n      func_convert_core_file_wine_to_w32_result=`$ECHO \"$func_convert_core_file_wine_to_w32_tmp\" |\n        $SED -e \"$sed_naive_backslashify\"`\n    else\n      func_convert_core_file_wine_to_w32_result=\n    fi\n  fi\n}\n# end: func_convert_core_file_wine_to_w32\n\n\n# func_convert_core_path_wine_to_w32 ARG\n# Helper function used by path conversion functions when $build is *nix, and\n# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly\n# configured wine environment available, with the winepath program in $build's\n# $PATH. Assumes ARG has no leading or trailing path separator characters.\n#\n# ARG is path to be converted from $build format to win32.\n# Result is available in $func_convert_core_path_wine_to_w32_result.\n# Unconvertible file (directory) names in ARG are skipped; if no directory names\n# are convertible, then the result may be empty.\nfunc_convert_core_path_wine_to_w32 ()\n{\n  $debug_cmd\n\n  # unfortunately, winepath doesn't convert paths, only file names\n  func_convert_core_path_wine_to_w32_result=\n  if test -n \"$1\"; then\n    oldIFS=$IFS\n    IFS=:\n    for func_convert_core_path_wine_to_w32_f in $1; do\n      IFS=$oldIFS\n      func_convert_core_file_wine_to_w32 \"$func_convert_core_path_wine_to_w32_f\"\n      if test -n \"$func_convert_core_file_wine_to_w32_result\"; then\n        if test -z \"$func_convert_core_path_wine_to_w32_result\"; then\n          func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result\n        else\n          func_append func_convert_core_path_wine_to_w32_result \";$func_convert_core_file_wine_to_w32_result\"\n        fi\n      fi\n    done\n    IFS=$oldIFS\n  fi\n}\n# end: func_convert_core_path_wine_to_w32\n\n\n# func_cygpath ARGS...\n# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when\n# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)\n# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or\n# (2), returns the Cygwin file name or path in func_cygpath_result (input\n# file name or path is assumed to be in w32 format, as previously converted\n# from $build's *nix or MSYS format). In case (3), returns the w32 file name\n# or path in func_cygpath_result (input file name or path is assumed to be in\n# Cygwin format). Returns an empty string on error.\n#\n# ARGS are passed to cygpath, with the last one being the file name or path to\n# be converted.\n#\n# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH\n# environment variable; do not put it in $PATH.\nfunc_cygpath ()\n{\n  $debug_cmd\n\n  if test -n \"$LT_CYGPATH\" && test -f \"$LT_CYGPATH\"; then\n    func_cygpath_result=`$LT_CYGPATH \"$@\" 2>/dev/null`\n    if test \"$?\" -ne 0; then\n      # on failure, ensure result is empty\n      func_cygpath_result=\n    fi\n  else\n    func_cygpath_result=\n    func_error \"LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'\"\n  fi\n}\n#end: func_cygpath\n\n\n# func_convert_core_msys_to_w32 ARG\n# Convert file name or path ARG from MSYS format to w32 format.  Return\n# result in func_convert_core_msys_to_w32_result.\nfunc_convert_core_msys_to_w32 ()\n{\n  $debug_cmd\n\n  # awkward: cmd appends spaces to result\n  func_convert_core_msys_to_w32_result=`( cmd //c echo \"$1\" ) 2>/dev/null |\n    $SED -e 's/[ ]*$//' -e \"$sed_naive_backslashify\"`\n}\n#end: func_convert_core_msys_to_w32\n\n\n# func_convert_file_check ARG1 ARG2\n# Verify that ARG1 (a file name in $build format) was converted to $host\n# format in ARG2. Otherwise, emit an error message, but continue (resetting\n# func_to_host_file_result to ARG1).\nfunc_convert_file_check ()\n{\n  $debug_cmd\n\n  if test -z \"$2\" && test -n \"$1\"; then\n    func_error \"Could not determine host file name corresponding to\"\n    func_error \"  '$1'\"\n    func_error \"Continuing, but uninstalled executables may not work.\"\n    # Fallback:\n    func_to_host_file_result=$1\n  fi\n}\n# end func_convert_file_check\n\n\n# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH\n# Verify that FROM_PATH (a path in $build format) was converted to $host\n# format in TO_PATH. Otherwise, emit an error message, but continue, resetting\n# func_to_host_file_result to a simplistic fallback value (see below).\nfunc_convert_path_check ()\n{\n  $debug_cmd\n\n  if test -z \"$4\" && test -n \"$3\"; then\n    func_error \"Could not determine the host path corresponding to\"\n    func_error \"  '$3'\"\n    func_error \"Continuing, but uninstalled executables may not work.\"\n    # Fallback.  This is a deliberately simplistic \"conversion\" and\n    # should not be \"improved\".  See libtool.info.\n    if test \"x$1\" != \"x$2\"; then\n      lt_replace_pathsep_chars=\"s|$1|$2|g\"\n      func_to_host_path_result=`echo \"$3\" |\n        $SED -e \"$lt_replace_pathsep_chars\"`\n    else\n      func_to_host_path_result=$3\n    fi\n  fi\n}\n# end func_convert_path_check\n\n\n# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG\n# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT\n# and appending REPL if ORIG matches BACKPAT.\nfunc_convert_path_front_back_pathsep ()\n{\n  $debug_cmd\n\n  case $4 in\n  $1 ) func_to_host_path_result=$3$func_to_host_path_result\n    ;;\n  esac\n  case $4 in\n  $2 ) func_append func_to_host_path_result \"$3\"\n    ;;\n  esac\n}\n# end func_convert_path_front_back_pathsep\n\n\n##################################################\n# $build to $host FILE NAME CONVERSION FUNCTIONS #\n##################################################\n# invoked via '$to_host_file_cmd ARG'\n#\n# In each case, ARG is the path to be converted from $build to $host format.\n# Result will be available in $func_to_host_file_result.\n\n\n# func_to_host_file ARG\n# Converts the file name ARG from $build format to $host format. Return result\n# in func_to_host_file_result.\nfunc_to_host_file ()\n{\n  $debug_cmd\n\n  $to_host_file_cmd \"$1\"\n}\n# end func_to_host_file\n\n\n# func_to_tool_file ARG LAZY\n# converts the file name ARG from $build format to toolchain format. Return\n# result in func_to_tool_file_result.  If the conversion in use is listed\n# in (the comma separated) LAZY, no conversion takes place.\nfunc_to_tool_file ()\n{\n  $debug_cmd\n\n  case ,$2, in\n    *,\"$to_tool_file_cmd\",*)\n      func_to_tool_file_result=$1\n      ;;\n    *)\n      $to_tool_file_cmd \"$1\"\n      func_to_tool_file_result=$func_to_host_file_result\n      ;;\n  esac\n}\n# end func_to_tool_file\n\n\n# func_convert_file_noop ARG\n# Copy ARG to func_to_host_file_result.\nfunc_convert_file_noop ()\n{\n  func_to_host_file_result=$1\n}\n# end func_convert_file_noop\n\n\n# func_convert_file_msys_to_w32 ARG\n# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic\n# conversion to w32 is not available inside the cwrapper.  Returns result in\n# func_to_host_file_result.\nfunc_convert_file_msys_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_msys_to_w32 \"$1\"\n    func_to_host_file_result=$func_convert_core_msys_to_w32_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_msys_to_w32\n\n\n# func_convert_file_cygwin_to_w32 ARG\n# Convert file name ARG from Cygwin to w32 format.  Returns result in\n# func_to_host_file_result.\nfunc_convert_file_cygwin_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    # because $build is cygwin, we call \"the\" cygpath in $PATH; no need to use\n    # LT_CYGPATH in this case.\n    func_to_host_file_result=`cygpath -m \"$1\"`\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_cygwin_to_w32\n\n\n# func_convert_file_nix_to_w32 ARG\n# Convert file name ARG from *nix to w32 format.  Requires a wine environment\n# and a working winepath. Returns result in func_to_host_file_result.\nfunc_convert_file_nix_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_file_wine_to_w32 \"$1\"\n    func_to_host_file_result=$func_convert_core_file_wine_to_w32_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_nix_to_w32\n\n\n# func_convert_file_msys_to_cygwin ARG\n# Convert file name ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.\n# Returns result in func_to_host_file_result.\nfunc_convert_file_msys_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_msys_to_w32 \"$1\"\n    func_cygpath -u \"$func_convert_core_msys_to_w32_result\"\n    func_to_host_file_result=$func_cygpath_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_msys_to_cygwin\n\n\n# func_convert_file_nix_to_cygwin ARG\n# Convert file name ARG from *nix to Cygwin format.  Requires Cygwin installed\n# in a wine environment, working winepath, and LT_CYGPATH set.  Returns result\n# in func_to_host_file_result.\nfunc_convert_file_nix_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.\n    func_convert_core_file_wine_to_w32 \"$1\"\n    func_cygpath -u \"$func_convert_core_file_wine_to_w32_result\"\n    func_to_host_file_result=$func_cygpath_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_nix_to_cygwin\n\n\n#############################################\n# $build to $host PATH CONVERSION FUNCTIONS #\n#############################################\n# invoked via '$to_host_path_cmd ARG'\n#\n# In each case, ARG is the path to be converted from $build to $host format.\n# The result will be available in $func_to_host_path_result.\n#\n# Path separators are also converted from $build format to $host format.  If\n# ARG begins or ends with a path separator character, it is preserved (but\n# converted to $host format) on output.\n#\n# All path conversion functions are named using the following convention:\n#   file name conversion function    : func_convert_file_X_to_Y ()\n#   path conversion function         : func_convert_path_X_to_Y ()\n# where, for any given $build/$host combination the 'X_to_Y' value is the\n# same.  If conversion functions are added for new $build/$host combinations,\n# the two new functions must follow this pattern, or func_init_to_host_path_cmd\n# will break.\n\n\n# func_init_to_host_path_cmd\n# Ensures that function \"pointer\" variable $to_host_path_cmd is set to the\n# appropriate value, based on the value of $to_host_file_cmd.\nto_host_path_cmd=\nfunc_init_to_host_path_cmd ()\n{\n  $debug_cmd\n\n  if test -z \"$to_host_path_cmd\"; then\n    func_stripname 'func_convert_file_' '' \"$to_host_file_cmd\"\n    to_host_path_cmd=func_convert_path_$func_stripname_result\n  fi\n}\n\n\n# func_to_host_path ARG\n# Converts the path ARG from $build format to $host format. Return result\n# in func_to_host_path_result.\nfunc_to_host_path ()\n{\n  $debug_cmd\n\n  func_init_to_host_path_cmd\n  $to_host_path_cmd \"$1\"\n}\n# end func_to_host_path\n\n\n# func_convert_path_noop ARG\n# Copy ARG to func_to_host_path_result.\nfunc_convert_path_noop ()\n{\n  func_to_host_path_result=$1\n}\n# end func_convert_path_noop\n\n\n# func_convert_path_msys_to_w32 ARG\n# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic\n# conversion to w32 is not available inside the cwrapper.  Returns result in\n# func_to_host_path_result.\nfunc_convert_path_msys_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # Remove leading and trailing path separator characters from ARG.  MSYS\n    # behavior is inconsistent here; cygpath turns them into '.;' and ';.';\n    # and winepath ignores them completely.\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_msys_to_w32 \"$func_to_host_path_tmp1\"\n    func_to_host_path_result=$func_convert_core_msys_to_w32_result\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_msys_to_w32\n\n\n# func_convert_path_cygwin_to_w32 ARG\n# Convert path ARG from Cygwin to w32 format.  Returns result in\n# func_to_host_file_result.\nfunc_convert_path_cygwin_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_to_host_path_result=`cygpath -m -p \"$func_to_host_path_tmp1\"`\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_cygwin_to_w32\n\n\n# func_convert_path_nix_to_w32 ARG\n# Convert path ARG from *nix to w32 format.  Requires a wine environment and\n# a working winepath.  Returns result in func_to_host_file_result.\nfunc_convert_path_nix_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_path_wine_to_w32 \"$func_to_host_path_tmp1\"\n    func_to_host_path_result=$func_convert_core_path_wine_to_w32_result\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_nix_to_w32\n\n\n# func_convert_path_msys_to_cygwin ARG\n# Convert path ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.\n# Returns result in func_to_host_file_result.\nfunc_convert_path_msys_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_msys_to_w32 \"$func_to_host_path_tmp1\"\n    func_cygpath -u -p \"$func_convert_core_msys_to_w32_result\"\n    func_to_host_path_result=$func_cygpath_result\n    func_convert_path_check : : \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" : \"$1\"\n  fi\n}\n# end func_convert_path_msys_to_cygwin\n\n\n# func_convert_path_nix_to_cygwin ARG\n# Convert path ARG from *nix to Cygwin format.  Requires Cygwin installed in a\n# a wine environment, working winepath, and LT_CYGPATH set.  Returns result in\n# func_to_host_file_result.\nfunc_convert_path_nix_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # Remove leading and trailing path separator characters from\n    # ARG. msys behavior is inconsistent here, cygpath turns them\n    # into '.;' and ';.', and winepath ignores them completely.\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_path_wine_to_w32 \"$func_to_host_path_tmp1\"\n    func_cygpath -u -p \"$func_convert_core_path_wine_to_w32_result\"\n    func_to_host_path_result=$func_cygpath_result\n    func_convert_path_check : : \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" : \"$1\"\n  fi\n}\n# end func_convert_path_nix_to_cygwin\n\n\n# func_dll_def_p FILE\n# True iff FILE is a Windows DLL '.def' file.\n# Keep in sync with _LT_DLL_DEF_P in libtool.m4\nfunc_dll_def_p ()\n{\n  $debug_cmd\n\n  func_dll_def_p_tmp=`$SED -n \\\n    -e 's/^[\t ]*//' \\\n    -e '/^\\(;.*\\)*$/d' \\\n    -e 's/^\\(EXPORTS\\|LIBRARY\\)\\([\t ].*\\)*$/DEF/p' \\\n    -e q \\\n    \"$1\"`\n  test DEF = \"$func_dll_def_p_tmp\"\n}\n\n\n# func_mode_compile arg...\nfunc_mode_compile ()\n{\n    $debug_cmd\n\n    # Get the compilation command and the source file.\n    base_compile=\n    srcfile=$nonopt  #  always keep a non-empty value in \"srcfile\"\n    suppress_opt=yes\n    suppress_output=\n    arg_mode=normal\n    libobj=\n    later=\n    pie_flag=\n\n    for arg\n    do\n      case $arg_mode in\n      arg  )\n\t# do not \"continue\".  Instead, add this to base_compile\n\tlastarg=$arg\n\targ_mode=normal\n\t;;\n\n      target )\n\tlibobj=$arg\n\targ_mode=normal\n\tcontinue\n\t;;\n\n      normal )\n\t# Accept any command-line options.\n\tcase $arg in\n\t-o)\n\t  test -n \"$libobj\" && \\\n\t    func_fatal_error \"you cannot specify '-o' more than once\"\n\t  arg_mode=target\n\t  continue\n\t  ;;\n\n\t-pie | -fpie | -fPIE)\n          func_append pie_flag \" $arg\"\n\t  continue\n\t  ;;\n\n\t-shared | -static | -prefer-pic | -prefer-non-pic)\n\t  func_append later \" $arg\"\n\t  continue\n\t  ;;\n\n\t-no-suppress)\n\t  suppress_opt=no\n\t  continue\n\t  ;;\n\n\t-Xcompiler)\n\t  arg_mode=arg  #  the next one goes into the \"base_compile\" arg list\n\t  continue      #  The current \"srcfile\" will either be retained or\n\t  ;;            #  replaced later.  I would guess that would be a bug.\n\n\t-Wc,*)\n\t  func_stripname '-Wc,' '' \"$arg\"\n\t  args=$func_stripname_result\n\t  lastarg=\n\t  save_ifs=$IFS; IFS=,\n\t  for arg in $args; do\n\t    IFS=$save_ifs\n\t    func_append_quoted lastarg \"$arg\"\n\t  done\n\t  IFS=$save_ifs\n\t  func_stripname ' ' '' \"$lastarg\"\n\t  lastarg=$func_stripname_result\n\n\t  # Add the arguments to base_compile.\n\t  func_append base_compile \" $lastarg\"\n\t  continue\n\t  ;;\n\n\t*)\n\t  # Accept the current argument as the source file.\n\t  # The previous \"srcfile\" becomes the current argument.\n\t  #\n\t  lastarg=$srcfile\n\t  srcfile=$arg\n\t  ;;\n\tesac  #  case $arg\n\t;;\n      esac    #  case $arg_mode\n\n      # Aesthetically quote the previous argument.\n      func_append_quoted base_compile \"$lastarg\"\n    done # for arg\n\n    case $arg_mode in\n    arg)\n      func_fatal_error \"you must specify an argument for -Xcompile\"\n      ;;\n    target)\n      func_fatal_error \"you must specify a target with '-o'\"\n      ;;\n    *)\n      # Get the name of the library object.\n      test -z \"$libobj\" && {\n\tfunc_basename \"$srcfile\"\n\tlibobj=$func_basename_result\n      }\n      ;;\n    esac\n\n    # Recognize several different file suffixes.\n    # If the user specifies -o file.o, it is replaced with file.lo\n    case $libobj in\n    *.[cCFSifmso] | \\\n    *.ada | *.adb | *.ads | *.asm | \\\n    *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \\\n    *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)\n      func_xform \"$libobj\"\n      libobj=$func_xform_result\n      ;;\n    esac\n\n    case $libobj in\n    *.lo) func_lo2o \"$libobj\"; obj=$func_lo2o_result ;;\n    *)\n      func_fatal_error \"cannot determine name of library object from '$libobj'\"\n      ;;\n    esac\n\n    func_infer_tag $base_compile\n\n    for arg in $later; do\n      case $arg in\n      -shared)\n\ttest yes = \"$build_libtool_libs\" \\\n\t  || func_fatal_configuration \"cannot build a shared library\"\n\tbuild_old_libs=no\n\tcontinue\n\t;;\n\n      -static)\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tcontinue\n\t;;\n\n      -prefer-pic)\n\tpic_mode=yes\n\tcontinue\n\t;;\n\n      -prefer-non-pic)\n\tpic_mode=no\n\tcontinue\n\t;;\n      esac\n    done\n\n    func_quote_for_eval \"$libobj\"\n    test \"X$libobj\" != \"X$func_quote_for_eval_result\" \\\n      && $ECHO \"X$libobj\" | $GREP '[]~#^*{};<>?\"'\"'\"'\t &()|`$[]' \\\n      && func_warning \"libobj name '$libobj' may not contain shell special characters.\"\n    func_dirname_and_basename \"$obj\" \"/\" \"\"\n    objname=$func_basename_result\n    xdir=$func_dirname_result\n    lobj=$xdir$objdir/$objname\n\n    test -z \"$base_compile\" && \\\n      func_fatal_help \"you must specify a compilation command\"\n\n    # Delete any leftover library objects.\n    if test yes = \"$build_old_libs\"; then\n      removelist=\"$obj $lobj $libobj ${libobj}T\"\n    else\n      removelist=\"$lobj $libobj ${libobj}T\"\n    fi\n\n    # On Cygwin there's no \"real\" PIC flag so we must build both object types\n    case $host_os in\n    cygwin* | mingw* | pw32* | os2* | cegcc*)\n      pic_mode=default\n      ;;\n    esac\n    if test no = \"$pic_mode\" && test pass_all != \"$deplibs_check_method\"; then\n      # non-PIC code in shared libraries is not supported\n      pic_mode=default\n    fi\n\n    # Calculate the filename of the output object if compiler does\n    # not support -o with -c\n    if test no = \"$compiler_c_o\"; then\n      output_obj=`$ECHO \"$srcfile\" | $SED 's%^.*/%%; s%\\.[^.]*$%%'`.$objext\n      lockfile=$output_obj.lock\n    else\n      output_obj=\n      need_locks=no\n      lockfile=\n    fi\n\n    # Lock this critical section if it is needed\n    # We use this script file to make the link, it avoids creating a new file\n    if test yes = \"$need_locks\"; then\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    elif test warn = \"$need_locks\"; then\n      if test -f \"$lockfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile exists and contains:\n`cat $lockfile 2>/dev/null`\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n      func_append removelist \" $output_obj\"\n      $ECHO \"$srcfile\" > \"$lockfile\"\n    fi\n\n    $opt_dry_run || $RM $removelist\n    func_append removelist \" $lockfile\"\n    trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15\n\n    func_to_tool_file \"$srcfile\" func_convert_file_msys_to_w32\n    srcfile=$func_to_tool_file_result\n    func_quote_for_eval \"$srcfile\"\n    qsrcfile=$func_quote_for_eval_result\n\n    # Only build a PIC object if we are building libtool libraries.\n    if test yes = \"$build_libtool_libs\"; then\n      # Without this assignment, base_compile gets emptied.\n      fbsd_hideous_sh_bug=$base_compile\n\n      if test no != \"$pic_mode\"; then\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      else\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile\"\n      fi\n\n      func_mkdir_p \"$xdir$objdir\"\n\n      if test -z \"$output_obj\"; then\n\t# Place PIC objects in $objdir\n\tfunc_append command \" -o $lobj\"\n      fi\n\n      func_show_eval_locale \"$command\"\t\\\n          'test -n \"$output_obj\" && $RM $removelist; exit $EXIT_FAILURE'\n\n      if test warn = \"$need_locks\" &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed, then go on to compile the next one\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$lobj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$lobj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n\n      # Allow error messages only from the first compilation.\n      if test yes = \"$suppress_opt\"; then\n\tsuppress_output=' >/dev/null 2>&1'\n      fi\n    fi\n\n    # Only build a position-dependent object if we build old libraries.\n    if test yes = \"$build_old_libs\"; then\n      if test yes != \"$pic_mode\"; then\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile$pie_flag\"\n      else\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      fi\n      if test yes = \"$compiler_c_o\"; then\n\tfunc_append command \" -o $obj\"\n      fi\n\n      # Suppress compiler output if we already did a PIC compilation.\n      func_append command \"$suppress_output\"\n      func_show_eval_locale \"$command\" \\\n        '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'\n\n      if test warn = \"$need_locks\" &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$obj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$obj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n    fi\n\n    $opt_dry_run || {\n      func_write_libtool_object \"$libobj\" \"$objdir/$objname\" \"$objname\"\n\n      # Unlock the critical section if it was locked\n      if test no != \"$need_locks\"; then\n\tremovelist=$lockfile\n        $RM \"$lockfile\"\n      fi\n    }\n\n    exit $EXIT_SUCCESS\n}\n\n$opt_help || {\n  test compile = \"$opt_mode\" && func_mode_compile ${1+\"$@\"}\n}\n\nfunc_mode_help ()\n{\n    # We need to display help for each of the modes.\n    case $opt_mode in\n      \"\")\n        # Generic help is extracted from the usage comments\n        # at the start of this file.\n        func_help\n        ;;\n\n      clean)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...\n\nRemove files from the build directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed\nto RM.\n\nIf FILE is a libtool library, object or program, all the files associated\nwith it are deleted. Otherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      compile)\n      $ECHO \\\n\"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE\n\nCompile a source file into a libtool library object.\n\nThis mode accepts the following additional options:\n\n  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE\n  -no-suppress      do not suppress compiler output for multiple passes\n  -prefer-pic       try to build PIC objects only\n  -prefer-non-pic   try to build non-PIC objects only\n  -shared           do not build a '.o' file suitable for static linking\n  -static           only build a '.o' file suitable for static linking\n  -Wc,FLAG          pass FLAG directly to the compiler\n\nCOMPILE-COMMAND is a command to be used in creating a 'standard' object file\nfrom the given SOURCEFILE.\n\nThe output file name is determined by removing the directory component from\nSOURCEFILE, then substituting the C source code suffix '.c' with the\nlibrary object suffix, '.lo'.\"\n        ;;\n\n      execute)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...\n\nAutomatically set library path, then run a program.\n\nThis mode accepts the following additional options:\n\n  -dlopen FILE      add the directory containing FILE to the library path\n\nThis mode sets the library path environment variable according to '-dlopen'\nflags.\n\nIf any of the ARGS are libtool executable wrappers, then they are translated\ninto their corresponding uninstalled binary, and any of their required library\ndirectories are added to the library path.\n\nThen, COMMAND is executed, with ARGS as arguments.\"\n        ;;\n\n      finish)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=finish [LIBDIR]...\n\nComplete the installation of libtool libraries.\n\nEach LIBDIR is a directory that contains libtool libraries.\n\nThe commands that this mode executes may require superuser privileges.  Use\nthe '--dry-run' option if you just want to see what would be executed.\"\n        ;;\n\n      install)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...\n\nInstall executables or libraries.\n\nINSTALL-COMMAND is the installation command.  The first component should be\neither the 'install' or 'cp' program.\n\nThe following components of INSTALL-COMMAND are treated specially:\n\n  -inst-prefix-dir PREFIX-DIR  Use PREFIX-DIR as a staging area for installation\n\nThe rest of the components are interpreted as arguments to that command (only\nBSD-compatible install options are recognized).\"\n        ;;\n\n      link)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=link LINK-COMMAND...\n\nLink object files or libraries together to form another library, or to\ncreate an executable program.\n\nLINK-COMMAND is a command using the C compiler that you would use to create\na program from several object files.\n\nThe following components of LINK-COMMAND are treated specially:\n\n  -all-static       do not do any dynamic linking at all\n  -avoid-version    do not add a version suffix if possible\n  -bindir BINDIR    specify path to binaries directory (for systems where\n                    libraries must be found in the PATH setting at runtime)\n  -dlopen FILE      '-dlpreopen' FILE if it cannot be dlopened at runtime\n  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols\n  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)\n  -export-symbols SYMFILE\n                    try to export only the symbols listed in SYMFILE\n  -export-symbols-regex REGEX\n                    try to export only the symbols matching REGEX\n  -LLIBDIR          search LIBDIR for required installed libraries\n  -lNAME            OUTPUT-FILE requires the installed library libNAME\n  -module           build a library that can dlopened\n  -no-fast-install  disable the fast-install mode\n  -no-install       link a not-installable executable\n  -no-undefined     declare that a library does not refer to external symbols\n  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects\n  -objectlist FILE  use a list of object files found in FILE to specify objects\n  -os2dllname NAME  force a short DLL name on OS/2 (no effect on other OSes)\n  -precious-files-regex REGEX\n                    don't remove output files matching REGEX\n  -release RELEASE  specify package release information\n  -rpath LIBDIR     the created library will eventually be installed in LIBDIR\n  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries\n  -shared           only do dynamic linking of libtool libraries\n  -shrext SUFFIX    override the standard shared library file extension\n  -static           do not do any dynamic linking of uninstalled libtool libraries\n  -static-libtool-libs\n                    do not do any dynamic linking of libtool libraries\n  -version-info CURRENT[:REVISION[:AGE]]\n                    specify library version info [each variable defaults to 0]\n  -weak LIBNAME     declare that the target provides the LIBNAME interface\n  -Wc,FLAG\n  -Xcompiler FLAG   pass linker-specific FLAG directly to the compiler\n  -Wl,FLAG\n  -Xlinker FLAG     pass linker-specific FLAG directly to the linker\n  -XCClinker FLAG   pass link-specific FLAG to the compiler driver (CC)\n\nAll other options (arguments beginning with '-') are ignored.\n\nEvery other argument is treated as a filename.  Files ending in '.la' are\ntreated as uninstalled libtool libraries, other files are standard or library\nobject files.\n\nIf the OUTPUT-FILE ends in '.la', then a libtool library is created,\nonly library objects ('.lo' files) may be specified, and '-rpath' is\nrequired, except when creating a convenience library.\n\nIf OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created\nusing 'ar' and 'ranlib', or on Windows using 'lib'.\n\nIf OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file\nis created, otherwise an executable program is created.\"\n        ;;\n\n      uninstall)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...\n\nRemove libraries from an installation directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed\nto RM.\n\nIf FILE is a libtool library, all the files associated with it are deleted.\nOtherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      *)\n        func_fatal_help \"invalid operation mode '$opt_mode'\"\n        ;;\n    esac\n\n    echo\n    $ECHO \"Try '$progname --help' for more information about other modes.\"\n}\n\n# Now that we've collected a possible --mode arg, show help if necessary\nif $opt_help; then\n  if test : = \"$opt_help\"; then\n    func_mode_help\n  else\n    {\n      func_help noexit\n      for opt_mode in compile link execute install finish uninstall clean; do\n\tfunc_mode_help\n      done\n    } | $SED -n '1p; 2,$s/^Usage:/  or: /p'\n    {\n      func_help noexit\n      for opt_mode in compile link execute install finish uninstall clean; do\n\techo\n\tfunc_mode_help\n      done\n    } |\n    $SED '1d\n      /^When reporting/,/^Report/{\n\tH\n\td\n      }\n      $x\n      /information about other modes/d\n      /more detailed .*MODE/d\n      s/^Usage:.*--mode=\\([^ ]*\\) .*/Description of \\1 mode:/'\n  fi\n  exit $?\nfi\n\n\n# func_mode_execute arg...\nfunc_mode_execute ()\n{\n    $debug_cmd\n\n    # The first argument is the command name.\n    cmd=$nonopt\n    test -z \"$cmd\" && \\\n      func_fatal_help \"you must specify a COMMAND\"\n\n    # Handle -dlopen flags immediately.\n    for file in $opt_dlopen; do\n      test -f \"$file\" \\\n\t|| func_fatal_help \"'$file' is not a file\"\n\n      dir=\n      case $file in\n      *.la)\n\tfunc_resolve_sysroot \"$file\"\n\tfile=$func_resolve_sysroot_result\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"'$lib' is not a valid libtool archive\"\n\n\t# Read the libtool library.\n\tdlname=\n\tlibrary_names=\n\tfunc_source \"$file\"\n\n\t# Skip this library if it cannot be dlopened.\n\tif test -z \"$dlname\"; then\n\t  # Warn if it was a shared library.\n\t  test -n \"$library_names\" && \\\n\t    func_warning \"'$file' was not linked with '-export-dynamic'\"\n\t  continue\n\tfi\n\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=$func_dirname_result\n\n\tif test -f \"$dir/$objdir/$dlname\"; then\n\t  func_append dir \"/$objdir\"\n\telse\n\t  if test ! -f \"$dir/$dlname\"; then\n\t    func_fatal_error \"cannot find '$dlname' in '$dir' or '$dir/$objdir'\"\n\t  fi\n\tfi\n\t;;\n\n      *.lo)\n\t# Just add the directory containing the .lo file.\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=$func_dirname_result\n\t;;\n\n      *)\n\tfunc_warning \"'-dlopen' is ignored for non-libtool libraries and objects\"\n\tcontinue\n\t;;\n      esac\n\n      # Get the absolute pathname.\n      absdir=`cd \"$dir\" && pwd`\n      test -n \"$absdir\" && dir=$absdir\n\n      # Now add the directory to shlibpath_var.\n      if eval \"test -z \\\"\\$$shlibpath_var\\\"\"; then\n\teval \"$shlibpath_var=\\\"\\$dir\\\"\"\n      else\n\teval \"$shlibpath_var=\\\"\\$dir:\\$$shlibpath_var\\\"\"\n      fi\n    done\n\n    # This variable tells wrapper scripts just to set shlibpath_var\n    # rather than running their programs.\n    libtool_execute_magic=$magic\n\n    # Check if any of the arguments is a wrapper script.\n    args=\n    for file\n    do\n      case $file in\n      -* | *.la | *.lo ) ;;\n      *)\n\t# Do a test to see if this is really a libtool program.\n\tif func_ltwrapper_script_p \"$file\"; then\n\t  func_source \"$file\"\n\t  # Transform arg to wrapped name.\n\t  file=$progdir/$program\n\telif func_ltwrapper_executable_p \"$file\"; then\n\t  func_ltwrapper_scriptname \"$file\"\n\t  func_source \"$func_ltwrapper_scriptname_result\"\n\t  # Transform arg to wrapped name.\n\t  file=$progdir/$program\n\tfi\n\t;;\n      esac\n      # Quote arguments (to preserve shell metacharacters).\n      func_append_quoted args \"$file\"\n    done\n\n    if $opt_dry_run; then\n      # Display what would be done.\n      if test -n \"$shlibpath_var\"; then\n\teval \"\\$ECHO \\\"\\$shlibpath_var=\\$$shlibpath_var\\\"\"\n\techo \"export $shlibpath_var\"\n      fi\n      $ECHO \"$cmd$args\"\n      exit $EXIT_SUCCESS\n    else\n      if test -n \"$shlibpath_var\"; then\n\t# Export the shlibpath_var.\n\teval \"export $shlibpath_var\"\n      fi\n\n      # Restore saved environment variables\n      for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\n      do\n\teval \"if test \\\"\\${save_$lt_var+set}\\\" = set; then\n                $lt_var=\\$save_$lt_var; export $lt_var\n\t      else\n\t\t$lt_unset $lt_var\n\t      fi\"\n      done\n\n      # Now prepare to actually exec the command.\n      exec_cmd=\\$cmd$args\n    fi\n}\n\ntest execute = \"$opt_mode\" && func_mode_execute ${1+\"$@\"}\n\n\n# func_mode_finish arg...\nfunc_mode_finish ()\n{\n    $debug_cmd\n\n    libs=\n    libdirs=\n    admincmds=\n\n    for opt in \"$nonopt\" ${1+\"$@\"}\n    do\n      if test -d \"$opt\"; then\n\tfunc_append libdirs \" $opt\"\n\n      elif test -f \"$opt\"; then\n\tif func_lalib_unsafe_p \"$opt\"; then\n\t  func_append libs \" $opt\"\n\telse\n\t  func_warning \"'$opt' is not a valid libtool archive\"\n\tfi\n\n      else\n\tfunc_fatal_error \"invalid argument '$opt'\"\n      fi\n    done\n\n    if test -n \"$libs\"; then\n      if test -n \"$lt_sysroot\"; then\n        sysroot_regex=`$ECHO \"$lt_sysroot\" | $SED \"$sed_make_literal_regex\"`\n        sysroot_cmd=\"s/\\([ ']\\)$sysroot_regex/\\1/g;\"\n      else\n        sysroot_cmd=\n      fi\n\n      # Remove sysroot references\n      if $opt_dry_run; then\n        for lib in $libs; do\n          echo \"removing references to $lt_sysroot and '=' prefixes from $lib\"\n        done\n      else\n        tmpdir=`func_mktempdir`\n        for lib in $libs; do\n\t  $SED -e \"$sysroot_cmd s/\\([ ']-[LR]\\)=/\\1/g; s/\\([ ']\\)=/\\1/g\" $lib \\\n\t    > $tmpdir/tmp-la\n\t  mv -f $tmpdir/tmp-la $lib\n\tdone\n        ${RM}r \"$tmpdir\"\n      fi\n    fi\n\n    if test -n \"$finish_cmds$finish_eval\" && test -n \"$libdirs\"; then\n      for libdir in $libdirs; do\n\tif test -n \"$finish_cmds\"; then\n\t  # Do each command in the finish commands.\n\t  func_execute_cmds \"$finish_cmds\" 'admincmds=\"$admincmds\n'\"$cmd\"'\"'\n\tfi\n\tif test -n \"$finish_eval\"; then\n\t  # Do the single finish_eval.\n\t  eval cmds=\\\"$finish_eval\\\"\n\t  $opt_dry_run || eval \"$cmds\" || func_append admincmds \"\n       $cmds\"\n\tfi\n      done\n    fi\n\n    # Exit here if they wanted silent mode.\n    $opt_quiet && exit $EXIT_SUCCESS\n\n    if test -n \"$finish_cmds$finish_eval\" && test -n \"$libdirs\"; then\n      echo \"----------------------------------------------------------------------\"\n      echo \"Libraries have been installed in:\"\n      for libdir in $libdirs; do\n\t$ECHO \"   $libdir\"\n      done\n      echo\n      echo \"If you ever happen to want to link against installed libraries\"\n      echo \"in a given directory, LIBDIR, you must either use libtool, and\"\n      echo \"specify the full pathname of the library, or use the '-LLIBDIR'\"\n      echo \"flag during linking and do at least one of the following:\"\n      if test -n \"$shlibpath_var\"; then\n\techo \"   - add LIBDIR to the '$shlibpath_var' environment variable\"\n\techo \"     during execution\"\n      fi\n      if test -n \"$runpath_var\"; then\n\techo \"   - add LIBDIR to the '$runpath_var' environment variable\"\n\techo \"     during linking\"\n      fi\n      if test -n \"$hardcode_libdir_flag_spec\"; then\n\tlibdir=LIBDIR\n\teval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\n\t$ECHO \"   - use the '$flag' linker flag\"\n      fi\n      if test -n \"$admincmds\"; then\n\t$ECHO \"   - have your system administrator run these commands:$admincmds\"\n      fi\n      if test -f /etc/ld.so.conf; then\n\techo \"   - have your system administrator add LIBDIR to '/etc/ld.so.conf'\"\n      fi\n      echo\n\n      echo \"See any operating system documentation about shared libraries for\"\n      case $host in\n\tsolaris2.[6789]|solaris2.1[0-9])\n\t  echo \"more information, such as the ld(1), crle(1) and ld.so(8) manual\"\n\t  echo \"pages.\"\n\t  ;;\n\t*)\n\t  echo \"more information, such as the ld(1) and ld.so(8) manual pages.\"\n\t  ;;\n      esac\n      echo \"----------------------------------------------------------------------\"\n    fi\n    exit $EXIT_SUCCESS\n}\n\ntest finish = \"$opt_mode\" && func_mode_finish ${1+\"$@\"}\n\n\n# func_mode_install arg...\nfunc_mode_install ()\n{\n    $debug_cmd\n\n    # There may be an optional sh(1) argument at the beginning of\n    # install_prog (especially on Windows NT).\n    if test \"$SHELL\" = \"$nonopt\" || test /bin/sh = \"$nonopt\" ||\n       # Allow the use of GNU shtool's install command.\n       case $nonopt in *shtool*) :;; *) false;; esac\n    then\n      # Aesthetically quote it.\n      func_quote_for_eval \"$nonopt\"\n      install_prog=\"$func_quote_for_eval_result \"\n      arg=$1\n      shift\n    else\n      install_prog=\n      arg=$nonopt\n    fi\n\n    # The real first argument should be the name of the installation program.\n    # Aesthetically quote it.\n    func_quote_for_eval \"$arg\"\n    func_append install_prog \"$func_quote_for_eval_result\"\n    install_shared_prog=$install_prog\n    case \" $install_prog \" in\n      *[\\\\\\ /]cp\\ *) install_cp=: ;;\n      *) install_cp=false ;;\n    esac\n\n    # We need to accept at least all the BSD install flags.\n    dest=\n    files=\n    opts=\n    prev=\n    install_type=\n    isdir=false\n    stripme=\n    no_mode=:\n    for arg\n    do\n      arg2=\n      if test -n \"$dest\"; then\n\tfunc_append files \" $dest\"\n\tdest=$arg\n\tcontinue\n      fi\n\n      case $arg in\n      -d) isdir=: ;;\n      -f)\n\tif $install_cp; then :; else\n\t  prev=$arg\n\tfi\n\t;;\n      -g | -m | -o)\n\tprev=$arg\n\t;;\n      -s)\n\tstripme=\" -s\"\n\tcontinue\n\t;;\n      -*)\n\t;;\n      *)\n\t# If the previous option needed an argument, then skip it.\n\tif test -n \"$prev\"; then\n\t  if test X-m = \"X$prev\" && test -n \"$install_override_mode\"; then\n\t    arg2=$install_override_mode\n\t    no_mode=false\n\t  fi\n\t  prev=\n\telse\n\t  dest=$arg\n\t  continue\n\tfi\n\t;;\n      esac\n\n      # Aesthetically quote the argument.\n      func_quote_for_eval \"$arg\"\n      func_append install_prog \" $func_quote_for_eval_result\"\n      if test -n \"$arg2\"; then\n\tfunc_quote_for_eval \"$arg2\"\n      fi\n      func_append install_shared_prog \" $func_quote_for_eval_result\"\n    done\n\n    test -z \"$install_prog\" && \\\n      func_fatal_help \"you must specify an install program\"\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the '$prev' option requires an argument\"\n\n    if test -n \"$install_override_mode\" && $no_mode; then\n      if $install_cp; then :; else\n\tfunc_quote_for_eval \"$install_override_mode\"\n\tfunc_append install_shared_prog \" -m $func_quote_for_eval_result\"\n      fi\n    fi\n\n    if test -z \"$files\"; then\n      if test -z \"$dest\"; then\n\tfunc_fatal_help \"no file or destination specified\"\n      else\n\tfunc_fatal_help \"you must specify a destination\"\n      fi\n    fi\n\n    # Strip any trailing slash from the destination.\n    func_stripname '' '/' \"$dest\"\n    dest=$func_stripname_result\n\n    # Check to see that the destination is a directory.\n    test -d \"$dest\" && isdir=:\n    if $isdir; then\n      destdir=$dest\n      destname=\n    else\n      func_dirname_and_basename \"$dest\" \"\" \".\"\n      destdir=$func_dirname_result\n      destname=$func_basename_result\n\n      # Not a directory, so check to see that there is only one file specified.\n      set dummy $files; shift\n      test \"$#\" -gt 1 && \\\n\tfunc_fatal_help \"'$dest' is not a directory\"\n    fi\n    case $destdir in\n    [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n    *)\n      for file in $files; do\n\tcase $file in\n\t*.lo) ;;\n\t*)\n\t  func_fatal_help \"'$destdir' must be an absolute directory name\"\n\t  ;;\n\tesac\n      done\n      ;;\n    esac\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=$magic\n\n    staticlibs=\n    future_libdirs=\n    current_libdirs=\n    for file in $files; do\n\n      # Do each installation.\n      case $file in\n      *.$libext)\n\t# Do the static libraries later.\n\tfunc_append staticlibs \" $file\"\n\t;;\n\n      *.la)\n\tfunc_resolve_sysroot \"$file\"\n\tfile=$func_resolve_sysroot_result\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"'$file' is not a valid libtool archive\"\n\n\tlibrary_names=\n\told_library=\n\trelink_command=\n\tfunc_source \"$file\"\n\n\t# Add the libdir to current_libdirs if it is the destination.\n\tif test \"X$destdir\" = \"X$libdir\"; then\n\t  case \"$current_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append current_libdirs \" $libdir\" ;;\n\t  esac\n\telse\n\t  # Note the libdir as a future libdir.\n\t  case \"$future_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append future_libdirs \" $libdir\" ;;\n\t  esac\n\tfi\n\n\tfunc_dirname \"$file\" \"/\" \"\"\n\tdir=$func_dirname_result\n\tfunc_append dir \"$objdir\"\n\n\tif test -n \"$relink_command\"; then\n\t  # Determine the prefix the user has applied to our future dir.\n\t  inst_prefix_dir=`$ECHO \"$destdir\" | $SED -e \"s%$libdir\\$%%\"`\n\n\t  # Don't allow the user to place us outside of our expected\n\t  # location b/c this prevents finding dependent libraries that\n\t  # are installed to the same prefix.\n\t  # At present, this check doesn't affect windows .dll's that\n\t  # are installed into $libdir/../bin (currently, that works fine)\n\t  # but it's something to keep an eye on.\n\t  test \"$inst_prefix_dir\" = \"$destdir\" && \\\n\t    func_fatal_error \"error: cannot install '$file' to a directory not ending in $libdir\"\n\n\t  if test -n \"$inst_prefix_dir\"; then\n\t    # Stick the inst_prefix_dir data into the link command.\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%\"`\n\t  else\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%%\"`\n\t  fi\n\n\t  func_warning \"relinking '$file'\"\n\t  func_show_eval \"$relink_command\" \\\n\t    'func_fatal_error \"error: relink '\\''$file'\\'' with the above command before installing it\"'\n\tfi\n\n\t# See the names of the shared library.\n\tset dummy $library_names; shift\n\tif test -n \"$1\"; then\n\t  realname=$1\n\t  shift\n\n\t  srcname=$realname\n\t  test -n \"$relink_command\" && srcname=${realname}T\n\n\t  # Install the shared library and build the symlinks.\n\t  func_show_eval \"$install_shared_prog $dir/$srcname $destdir/$realname\" \\\n\t      'exit $?'\n\t  tstripme=$stripme\n\t  case $host_os in\n\t  cygwin* | mingw* | pw32* | cegcc*)\n\t    case $realname in\n\t    *.dll.a)\n\t      tstripme=\n\t      ;;\n\t    esac\n\t    ;;\n\t  os2*)\n\t    case $realname in\n\t    *_dll.a)\n\t      tstripme=\n\t      ;;\n\t    esac\n\t    ;;\n\t  esac\n\t  if test -n \"$tstripme\" && test -n \"$striplib\"; then\n\t    func_show_eval \"$striplib $destdir/$realname\" 'exit $?'\n\t  fi\n\n\t  if test \"$#\" -gt 0; then\n\t    # Delete the old symlinks, and create new ones.\n\t    # Try 'ln -sf' first, because the 'ln' binary might depend on\n\t    # the symlink we replace!  Solaris /bin/ln does not understand -f,\n\t    # so we also need to try rm && ln -s.\n\t    for linkname\n\t    do\n\t      test \"$linkname\" != \"$realname\" \\\n\t\t&& func_show_eval \"(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })\"\n\t    done\n\t  fi\n\n\t  # Do each command in the postinstall commands.\n\t  lib=$destdir/$realname\n\t  func_execute_cmds \"$postinstall_cmds\" 'exit $?'\n\tfi\n\n\t# Install the pseudo-library for information purposes.\n\tfunc_basename \"$file\"\n\tname=$func_basename_result\n\tinstname=$dir/${name}i\n\tfunc_show_eval \"$install_prog $instname $destdir/$name\" 'exit $?'\n\n\t# Maybe install the static library, too.\n\ttest -n \"$old_library\" && func_append staticlibs \" $dir/$old_library\"\n\t;;\n\n      *.lo)\n\t# Install (i.e. copy) a libtool object.\n\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=$destdir/$destname\n\telse\n\t  func_basename \"$file\"\n\t  destfile=$func_basename_result\n\t  destfile=$destdir/$destfile\n\tfi\n\n\t# Deduce the name of the destination old-style object file.\n\tcase $destfile in\n\t*.lo)\n\t  func_lo2o \"$destfile\"\n\t  staticdest=$func_lo2o_result\n\t  ;;\n\t*.$objext)\n\t  staticdest=$destfile\n\t  destfile=\n\t  ;;\n\t*)\n\t  func_fatal_help \"cannot copy a libtool object to '$destfile'\"\n\t  ;;\n\tesac\n\n\t# Install the libtool object if requested.\n\ttest -n \"$destfile\" && \\\n\t  func_show_eval \"$install_prog $file $destfile\" 'exit $?'\n\n\t# Install the old object if enabled.\n\tif test yes = \"$build_old_libs\"; then\n\t  # Deduce the name of the old-style object file.\n\t  func_lo2o \"$file\"\n\t  staticobj=$func_lo2o_result\n\t  func_show_eval \"$install_prog \\$staticobj \\$staticdest\" 'exit $?'\n\tfi\n\texit $EXIT_SUCCESS\n\t;;\n\n      *)\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=$destdir/$destname\n\telse\n\t  func_basename \"$file\"\n\t  destfile=$func_basename_result\n\t  destfile=$destdir/$destfile\n\tfi\n\n\t# If the file is missing, and there is a .exe on the end, strip it\n\t# because it is most likely a libtool script we actually want to\n\t# install\n\tstripped_ext=\n\tcase $file in\n\t  *.exe)\n\t    if test ! -f \"$file\"; then\n\t      func_stripname '' '.exe' \"$file\"\n\t      file=$func_stripname_result\n\t      stripped_ext=.exe\n\t    fi\n\t    ;;\n\tesac\n\n\t# Do a test to see if this is really a libtool program.\n\tcase $host in\n\t*cygwin* | *mingw*)\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      wrapper=$func_ltwrapper_scriptname_result\n\t    else\n\t      func_stripname '' '.exe' \"$file\"\n\t      wrapper=$func_stripname_result\n\t    fi\n\t    ;;\n\t*)\n\t    wrapper=$file\n\t    ;;\n\tesac\n\tif func_ltwrapper_script_p \"$wrapper\"; then\n\t  notinst_deplibs=\n\t  relink_command=\n\n\t  func_source \"$wrapper\"\n\n\t  # Check the variables that should have been set.\n\t  test -z \"$generated_by_libtool_version\" && \\\n\t    func_fatal_error \"invalid libtool wrapper script '$wrapper'\"\n\n\t  finalize=:\n\t  for lib in $notinst_deplibs; do\n\t    # Check to see that each library is installed.\n\t    libdir=\n\t    if test -f \"$lib\"; then\n\t      func_source \"$lib\"\n\t    fi\n\t    libfile=$libdir/`$ECHO \"$lib\" | $SED 's%^.*/%%g'`\n\t    if test -n \"$libdir\" && test ! -f \"$libfile\"; then\n\t      func_warning \"'$lib' has not been installed in '$libdir'\"\n\t      finalize=false\n\t    fi\n\t  done\n\n\t  relink_command=\n\t  func_source \"$wrapper\"\n\n\t  outputname=\n\t  if test no = \"$fast_install\" && test -n \"$relink_command\"; then\n\t    $opt_dry_run || {\n\t      if $finalize; then\n\t        tmpdir=`func_mktempdir`\n\t\tfunc_basename \"$file$stripped_ext\"\n\t\tfile=$func_basename_result\n\t        outputname=$tmpdir/$file\n\t        # Replace the output file specification.\n\t        relink_command=`$ECHO \"$relink_command\" | $SED 's%@OUTPUT@%'\"$outputname\"'%g'`\n\n\t        $opt_quiet || {\n\t          func_quote_for_expand \"$relink_command\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t        }\n\t        if eval \"$relink_command\"; then :\n\t          else\n\t\t  func_error \"error: relink '$file' with the above command before installing it\"\n\t\t  $opt_dry_run || ${RM}r \"$tmpdir\"\n\t\t  continue\n\t        fi\n\t        file=$outputname\n\t      else\n\t        func_warning \"cannot relink '$file'\"\n\t      fi\n\t    }\n\t  else\n\t    # Install the binary that we compiled earlier.\n\t    file=`$ECHO \"$file$stripped_ext\" | $SED \"s%\\([^/]*\\)$%$objdir/\\1%\"`\n\t  fi\n\tfi\n\n\t# remove .exe since cygwin /usr/bin/install will append another\n\t# one anyway\n\tcase $install_prog,$host in\n\t*/usr/bin/install*,*cygwin*)\n\t  case $file:$destfile in\n\t  *.exe:*.exe)\n\t    # this is ok\n\t    ;;\n\t  *.exe:*)\n\t    destfile=$destfile.exe\n\t    ;;\n\t  *:*.exe)\n\t    func_stripname '' '.exe' \"$destfile\"\n\t    destfile=$func_stripname_result\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tfunc_show_eval \"$install_prog\\$stripme \\$file \\$destfile\" 'exit $?'\n\t$opt_dry_run || if test -n \"$outputname\"; then\n\t  ${RM}r \"$tmpdir\"\n\tfi\n\t;;\n      esac\n    done\n\n    for file in $staticlibs; do\n      func_basename \"$file\"\n      name=$func_basename_result\n\n      # Set up the ranlib parameters.\n      oldlib=$destdir/$name\n      func_to_tool_file \"$oldlib\" func_convert_file_msys_to_w32\n      tool_oldlib=$func_to_tool_file_result\n\n      func_show_eval \"$install_prog \\$file \\$oldlib\" 'exit $?'\n\n      if test -n \"$stripme\" && test -n \"$old_striplib\"; then\n\tfunc_show_eval \"$old_striplib $tool_oldlib\" 'exit $?'\n      fi\n\n      # Do each command in the postinstall commands.\n      func_execute_cmds \"$old_postinstall_cmds\" 'exit $?'\n    done\n\n    test -n \"$future_libdirs\" && \\\n      func_warning \"remember to run '$progname --finish$future_libdirs'\"\n\n    if test -n \"$current_libdirs\"; then\n      # Maybe just do a dry run.\n      $opt_dry_run && current_libdirs=\" -n$current_libdirs\"\n      exec_cmd='$SHELL \"$progpath\" $preserve_args --finish$current_libdirs'\n    else\n      exit $EXIT_SUCCESS\n    fi\n}\n\ntest install = \"$opt_mode\" && func_mode_install ${1+\"$@\"}\n\n\n# func_generate_dlsyms outputname originator pic_p\n# Extract symbols from dlprefiles and create ${outputname}S.o with\n# a dlpreopen symbol table.\nfunc_generate_dlsyms ()\n{\n    $debug_cmd\n\n    my_outputname=$1\n    my_originator=$2\n    my_pic_p=${3-false}\n    my_prefix=`$ECHO \"$my_originator\" | $SED 's%[^a-zA-Z0-9]%_%g'`\n    my_dlsyms=\n\n    if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n      if test -n \"$NM\" && test -n \"$global_symbol_pipe\"; then\n\tmy_dlsyms=${my_outputname}S.c\n      else\n\tfunc_error \"not configured to extract global symbols from dlpreopened files\"\n      fi\n    fi\n\n    if test -n \"$my_dlsyms\"; then\n      case $my_dlsyms in\n      \"\") ;;\n      *.c)\n\t# Discover the nlist of each of the dlfiles.\n\tnlist=$output_objdir/$my_outputname.nm\n\n\tfunc_show_eval \"$RM $nlist ${nlist}S ${nlist}T\"\n\n\t# Parse the name list into a source file.\n\tfunc_verbose \"creating $output_objdir/$my_dlsyms\"\n\n\t$opt_dry_run || $ECHO > \"$output_objdir/$my_dlsyms\" \"\\\n/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */\n/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */\n\n#ifdef __cplusplus\nextern \\\"C\\\" {\n#endif\n\n#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))\n#pragma GCC diagnostic ignored \\\"-Wstrict-prototypes\\\"\n#endif\n\n/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */\n#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE\n/* DATA imports from DLLs on WIN32 can't be const, because runtime\n   relocations are performed -- see ld's documentation on pseudo-relocs.  */\n# define LT_DLSYM_CONST\n#elif defined __osf__\n/* This system does not cope well with relocations in const data.  */\n# define LT_DLSYM_CONST\n#else\n# define LT_DLSYM_CONST const\n#endif\n\n#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)\n\n/* External symbol declarations for the compiler. */\\\n\"\n\n\tif test yes = \"$dlself\"; then\n\t  func_verbose \"generating symbol list for '$output'\"\n\n\t  $opt_dry_run || echo ': @PROGRAM@ ' > \"$nlist\"\n\n\t  # Add our own program objects to the symbol list.\n\t  progfiles=`$ECHO \"$objs$old_deplibs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\t  for progfile in $progfiles; do\n\t    func_to_tool_file \"$progfile\" func_convert_file_msys_to_w32\n\t    func_verbose \"extracting global C symbols from '$func_to_tool_file_result'\"\n\t    $opt_dry_run || eval \"$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'\"\n\t  done\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  if test -n \"$export_symbols_regex\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -e \"$export_symbols_regex\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  # Prepare the list of exported symbols\n\t  if test -z \"$export_symbols\"; then\n\t    export_symbols=$output_objdir/$outputname.exp\n\t    $opt_dry_run || {\n\t      $RM $export_symbols\n\t      eval \"$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \\(.*\\)$/\\1/p' \"'< \"$nlist\" > \"$export_symbols\"'\n\t      case $host in\n\t      *cygwin* | *mingw* | *cegcc* )\n                eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n                eval 'cat \"$export_symbols\" >> \"$output_objdir/$outputname.def\"'\n\t        ;;\n\t      esac\n\t    }\n\t  else\n\t    $opt_dry_run || {\n\t      eval \"$SED -e 's/\\([].[*^$]\\)/\\\\\\\\\\1/g' -e 's/^/ /' -e 's/$/$/'\"' < \"$export_symbols\" > \"$output_objdir/$outputname.exp\"'\n\t      eval '$GREP -f \"$output_objdir/$outputname.exp\" < \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t      case $host in\n\t        *cygwin* | *mingw* | *cegcc* )\n\t          eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n\t          eval 'cat \"$nlist\" >> \"$output_objdir/$outputname.def\"'\n\t          ;;\n\t      esac\n\t    }\n\t  fi\n\tfi\n\n\tfor dlprefile in $dlprefiles; do\n\t  func_verbose \"extracting global C symbols from '$dlprefile'\"\n\t  func_basename \"$dlprefile\"\n\t  name=$func_basename_result\n          case $host in\n\t    *cygwin* | *mingw* | *cegcc* )\n\t      # if an import library, we need to obtain dlname\n\t      if func_win32_import_lib_p \"$dlprefile\"; then\n\t        func_tr_sh \"$dlprefile\"\n\t        eval \"curr_lafile=\\$libfile_$func_tr_sh_result\"\n\t        dlprefile_dlbasename=\n\t        if test -n \"$curr_lafile\" && func_lalib_p \"$curr_lafile\"; then\n\t          # Use subshell, to avoid clobbering current variable values\n\t          dlprefile_dlname=`source \"$curr_lafile\" && echo \"$dlname\"`\n\t          if test -n \"$dlprefile_dlname\"; then\n\t            func_basename \"$dlprefile_dlname\"\n\t            dlprefile_dlbasename=$func_basename_result\n\t          else\n\t            # no lafile. user explicitly requested -dlpreopen <import library>.\n\t            $sharedlib_from_linklib_cmd \"$dlprefile\"\n\t            dlprefile_dlbasename=$sharedlib_from_linklib_result\n\t          fi\n\t        fi\n\t        $opt_dry_run || {\n\t          if test -n \"$dlprefile_dlbasename\"; then\n\t            eval '$ECHO \": $dlprefile_dlbasename\" >> \"$nlist\"'\n\t          else\n\t            func_warning \"Could not compute DLL name from $name\"\n\t            eval '$ECHO \": $name \" >> \"$nlist\"'\n\t          fi\n\t          func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t          eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe |\n\t            $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'\"\n\t        }\n\t      else # not an import lib\n\t        $opt_dry_run || {\n\t          eval '$ECHO \": $name \" >> \"$nlist\"'\n\t          func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t          eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe >> '$nlist'\"\n\t        }\n\t      fi\n\t    ;;\n\t    *)\n\t      $opt_dry_run || {\n\t        eval '$ECHO \": $name \" >> \"$nlist\"'\n\t        func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t        eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe >> '$nlist'\"\n\t      }\n\t    ;;\n          esac\n\tdone\n\n\t$opt_dry_run || {\n\t  # Make sure we have at least an empty file.\n\t  test -f \"$nlist\" || : > \"$nlist\"\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T\n\t    $MV \"$nlist\"T \"$nlist\"\n\t  fi\n\n\t  # Try sorting and uniquifying the output.\n\t  if $GREP -v \"^: \" < \"$nlist\" |\n\t      if sort -k 3 </dev/null >/dev/null 2>&1; then\n\t\tsort -k 3\n\t      else\n\t\tsort +2\n\t      fi |\n\t      uniq > \"$nlist\"S; then\n\t    :\n\t  else\n\t    $GREP -v \"^: \" < \"$nlist\" > \"$nlist\"S\n\t  fi\n\n\t  if test -f \"$nlist\"S; then\n\t    eval \"$global_symbol_to_cdecl\"' < \"$nlist\"S >> \"$output_objdir/$my_dlsyms\"'\n\t  else\n\t    echo '/* NONE */' >> \"$output_objdir/$my_dlsyms\"\n\t  fi\n\n\t  func_show_eval '$RM \"${nlist}I\"'\n\t  if test -n \"$global_symbol_to_import\"; then\n\t    eval \"$global_symbol_to_import\"' < \"$nlist\"S > \"$nlist\"I'\n\t  fi\n\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n\n/* The mapping between symbol names and symbols.  */\ntypedef struct {\n  const char *name;\n  void *address;\n} lt_dlsymlist;\nextern LT_DLSYM_CONST lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[];\\\n\"\n\n\t  if test -s \"$nlist\"I; then\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\nstatic void lt_syminit(void)\n{\n  LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols;\n  for (; symbol->name; ++symbol)\n    {\"\n\t    $SED 's/.*/      if (STREQ (symbol->name, \\\"&\\\")) symbol->address = (void *) \\&&;/' < \"$nlist\"I >> \"$output_objdir/$my_dlsyms\"\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n    }\n}\"\n\t  fi\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\nLT_DLSYM_CONST lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[] =\n{ {\\\"$my_originator\\\", (void *) 0},\"\n\n\t  if test -s \"$nlist\"I; then\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n  {\\\"@INIT@\\\", (void *) &lt_syminit},\"\n\t  fi\n\n\t  case $need_lib_prefix in\n\t  no)\n\t    eval \"$global_symbol_to_c_name_address\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  *)\n\t    eval \"$global_symbol_to_c_name_address_lib_prefix\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  esac\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt_${my_prefix}_LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\\\n\"\n\t} # !$opt_dry_run\n\n\tpic_flag_for_symtable=\n\tcase \"$compile_command \" in\n\t*\" -static \"*) ;;\n\t*)\n\t  case $host in\n\t  # compiling the symbol table file with pic_flag works around\n\t  # a FreeBSD bug that causes programs to crash when -lm is\n\t  # linked before any other PIC object.  But we must not use\n\t  # pic_flag when linking with -static.  The problem exists in\n\t  # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.\n\t  *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)\n\t    pic_flag_for_symtable=\" $pic_flag -DFREEBSD_WORKAROUND\" ;;\n\t  *-*-hpux*)\n\t    pic_flag_for_symtable=\" $pic_flag\"  ;;\n\t  *)\n\t    $my_pic_p && pic_flag_for_symtable=\" $pic_flag\"\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tsymtab_cflags=\n\tfor arg in $LTCFLAGS; do\n\t  case $arg in\n\t  -pie | -fpie | -fPIE) ;;\n\t  *) func_append symtab_cflags \" $arg\" ;;\n\t  esac\n\tdone\n\n\t# Now compile the dynamic symbol file.\n\tfunc_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable \"$my_dlsyms\")' 'exit $?'\n\n\t# Clean up the generated files.\n\tfunc_show_eval '$RM \"$output_objdir/$my_dlsyms\" \"$nlist\" \"${nlist}S\" \"${nlist}T\" \"${nlist}I\"'\n\n\t# Transform the symbol file into the correct name.\n\tsymfileobj=$output_objdir/${my_outputname}S.$objext\n\tcase $host in\n\t*cygwin* | *mingw* | *cegcc* )\n\t  if test -f \"$output_objdir/$my_outputname.def\"; then\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t  else\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  fi\n\t  ;;\n\t*)\n\t  compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  ;;\n\tesac\n\t;;\n      *)\n\tfunc_fatal_error \"unknown suffix for '$my_dlsyms'\"\n\t;;\n      esac\n    else\n      # We keep going just in case the user didn't refer to\n      # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe\n      # really was required.\n\n      # Nullify the symbol file.\n      compile_command=`$ECHO \"$compile_command\" | $SED \"s% @SYMFILE@%%\"`\n      finalize_command=`$ECHO \"$finalize_command\" | $SED \"s% @SYMFILE@%%\"`\n    fi\n}\n\n# func_cygming_gnu_implib_p ARG\n# This predicate returns with zero status (TRUE) if\n# ARG is a GNU/binutils-style import library. Returns\n# with nonzero status (FALSE) otherwise.\nfunc_cygming_gnu_implib_p ()\n{\n  $debug_cmd\n\n  func_to_tool_file \"$1\" func_convert_file_msys_to_w32\n  func_cygming_gnu_implib_tmp=`$NM \"$func_to_tool_file_result\" | eval \"$global_symbol_pipe\" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'`\n  test -n \"$func_cygming_gnu_implib_tmp\"\n}\n\n# func_cygming_ms_implib_p ARG\n# This predicate returns with zero status (TRUE) if\n# ARG is an MS-style import library. Returns\n# with nonzero status (FALSE) otherwise.\nfunc_cygming_ms_implib_p ()\n{\n  $debug_cmd\n\n  func_to_tool_file \"$1\" func_convert_file_msys_to_w32\n  func_cygming_ms_implib_tmp=`$NM \"$func_to_tool_file_result\" | eval \"$global_symbol_pipe\" | $GREP '_NULL_IMPORT_DESCRIPTOR'`\n  test -n \"$func_cygming_ms_implib_tmp\"\n}\n\n# func_win32_libid arg\n# return the library type of file 'arg'\n#\n# Need a lot of goo to handle *both* DLLs and import libs\n# Has to be a shell function in order to 'eat' the argument\n# that is supplied when $file_magic_command is called.\n# Despite the name, also deal with 64 bit binaries.\nfunc_win32_libid ()\n{\n  $debug_cmd\n\n  win32_libid_type=unknown\n  win32_fileres=`file -L $1 2>/dev/null`\n  case $win32_fileres in\n  *ar\\ archive\\ import\\ library*) # definitely import\n    win32_libid_type=\"x86 archive import\"\n    ;;\n  *ar\\ archive*) # could be an import, or static\n    # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.\n    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |\n       $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then\n      case $nm_interface in\n      \"MS dumpbin\")\n\tif func_cygming_ms_implib_p \"$1\" ||\n\t   func_cygming_gnu_implib_p \"$1\"\n\tthen\n\t  win32_nmres=import\n\telse\n\t  win32_nmres=\n\tfi\n\t;;\n      *)\n\tfunc_to_tool_file \"$1\" func_convert_file_msys_to_w32\n\twin32_nmres=`eval $NM -f posix -A \\\"$func_to_tool_file_result\\\" |\n\t  $SED -n -e '\n\t    1,100{\n\t\t/ I /{\n\t\t    s|.*|import|\n\t\t    p\n\t\t    q\n\t\t}\n\t    }'`\n\t;;\n      esac\n      case $win32_nmres in\n      import*)  win32_libid_type=\"x86 archive import\";;\n      *)        win32_libid_type=\"x86 archive static\";;\n      esac\n    fi\n    ;;\n  *DLL*)\n    win32_libid_type=\"x86 DLL\"\n    ;;\n  *executable*) # but shell scripts are \"executable\" too...\n    case $win32_fileres in\n    *MS\\ Windows\\ PE\\ Intel*)\n      win32_libid_type=\"x86 DLL\"\n      ;;\n    esac\n    ;;\n  esac\n  $ECHO \"$win32_libid_type\"\n}\n\n# func_cygming_dll_for_implib ARG\n#\n# Platform-specific function to extract the\n# name of the DLL associated with the specified\n# import library ARG.\n# Invoked by eval'ing the libtool variable\n#    $sharedlib_from_linklib_cmd\n# Result is available in the variable\n#    $sharedlib_from_linklib_result\nfunc_cygming_dll_for_implib ()\n{\n  $debug_cmd\n\n  sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify \"$1\"`\n}\n\n# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs\n#\n# The is the core of a fallback implementation of a\n# platform-specific function to extract the name of the\n# DLL associated with the specified import library LIBNAME.\n#\n# SECTION_NAME is either .idata$6 or .idata$7, depending\n# on the platform and compiler that created the implib.\n#\n# Echos the name of the DLL associated with the\n# specified import library.\nfunc_cygming_dll_for_implib_fallback_core ()\n{\n  $debug_cmd\n\n  match_literal=`$ECHO \"$1\" | $SED \"$sed_make_literal_regex\"`\n  $OBJDUMP -s --section \"$1\" \"$2\" 2>/dev/null |\n    $SED '/^Contents of section '\"$match_literal\"':/{\n      # Place marker at beginning of archive member dllname section\n      s/.*/====MARK====/\n      p\n      d\n    }\n    # These lines can sometimes be longer than 43 characters, but\n    # are always uninteresting\n    /:[\t ]*file format pe[i]\\{,1\\}-/d\n    /^In archive [^:]*:/d\n    # Ensure marker is printed\n    /^====MARK====/p\n    # Remove all lines with less than 43 characters\n    /^.\\{43\\}/!d\n    # From remaining lines, remove first 43 characters\n    s/^.\\{43\\}//' |\n    $SED -n '\n      # Join marker and all lines until next marker into a single line\n      /^====MARK====/ b para\n      H\n      $ b para\n      b\n      :para\n      x\n      s/\\n//g\n      # Remove the marker\n      s/^====MARK====//\n      # Remove trailing dots and whitespace\n      s/[\\. \\t]*$//\n      # Print\n      /./p' |\n    # we now have a list, one entry per line, of the stringified\n    # contents of the appropriate section of all members of the\n    # archive that possess that section. Heuristic: eliminate\n    # all those that have a first or second character that is\n    # a '.' (that is, objdump's representation of an unprintable\n    # character.) This should work for all archives with less than\n    # 0x302f exports -- but will fail for DLLs whose name actually\n    # begins with a literal '.' or a single character followed by\n    # a '.'.\n    #\n    # Of those that remain, print the first one.\n    $SED -e '/^\\./d;/^.\\./d;q'\n}\n\n# func_cygming_dll_for_implib_fallback ARG\n# Platform-specific function to extract the\n# name of the DLL associated with the specified\n# import library ARG.\n#\n# This fallback implementation is for use when $DLLTOOL\n# does not support the --identify-strict option.\n# Invoked by eval'ing the libtool variable\n#    $sharedlib_from_linklib_cmd\n# Result is available in the variable\n#    $sharedlib_from_linklib_result\nfunc_cygming_dll_for_implib_fallback ()\n{\n  $debug_cmd\n\n  if func_cygming_gnu_implib_p \"$1\"; then\n    # binutils import library\n    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' \"$1\"`\n  elif func_cygming_ms_implib_p \"$1\"; then\n    # ms-generated import library\n    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' \"$1\"`\n  else\n    # unknown\n    sharedlib_from_linklib_result=\n  fi\n}\n\n\n# func_extract_an_archive dir oldlib\nfunc_extract_an_archive ()\n{\n    $debug_cmd\n\n    f_ex_an_ar_dir=$1; shift\n    f_ex_an_ar_oldlib=$1\n    if test yes = \"$lock_old_archive_extraction\"; then\n      lockfile=$f_ex_an_ar_oldlib.lock\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    fi\n    func_show_eval \"(cd \\$f_ex_an_ar_dir && $AR x \\\"\\$f_ex_an_ar_oldlib\\\")\" \\\n\t\t   'stat=$?; rm -f \"$lockfile\"; exit $stat'\n    if test yes = \"$lock_old_archive_extraction\"; then\n      $opt_dry_run || rm -f \"$lockfile\"\n    fi\n    if ($AR t \"$f_ex_an_ar_oldlib\" | sort | sort -uc >/dev/null 2>&1); then\n     :\n    else\n      func_fatal_error \"object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib\"\n    fi\n}\n\n\n# func_extract_archives gentop oldlib ...\nfunc_extract_archives ()\n{\n    $debug_cmd\n\n    my_gentop=$1; shift\n    my_oldlibs=${1+\"$@\"}\n    my_oldobjs=\n    my_xlib=\n    my_xabs=\n    my_xdir=\n\n    for my_xlib in $my_oldlibs; do\n      # Extract the objects.\n      case $my_xlib in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) my_xabs=$my_xlib ;;\n\t*) my_xabs=`pwd`\"/$my_xlib\" ;;\n      esac\n      func_basename \"$my_xlib\"\n      my_xlib=$func_basename_result\n      my_xlib_u=$my_xlib\n      while :; do\n        case \" $extracted_archives \" in\n\t*\" $my_xlib_u \"*)\n\t  func_arith $extracted_serial + 1\n\t  extracted_serial=$func_arith_result\n\t  my_xlib_u=lt$extracted_serial-$my_xlib ;;\n\t*) break ;;\n\tesac\n      done\n      extracted_archives=\"$extracted_archives $my_xlib_u\"\n      my_xdir=$my_gentop/$my_xlib_u\n\n      func_mkdir_p \"$my_xdir\"\n\n      case $host in\n      *-darwin*)\n\tfunc_verbose \"Extracting $my_xabs\"\n\t# Do not bother doing anything if just a dry run\n\t$opt_dry_run || {\n\t  darwin_orig_dir=`pwd`\n\t  cd $my_xdir || exit $?\n\t  darwin_archive=$my_xabs\n\t  darwin_curdir=`pwd`\n\t  func_basename \"$darwin_archive\"\n\t  darwin_base_archive=$func_basename_result\n\t  darwin_arches=`$LIPO -info \"$darwin_archive\" 2>/dev/null | $GREP Architectures 2>/dev/null || true`\n\t  if test -n \"$darwin_arches\"; then\n\t    darwin_arches=`$ECHO \"$darwin_arches\" | $SED -e 's/.*are://'`\n\t    darwin_arch=\n\t    func_verbose \"$darwin_base_archive has multiple architectures $darwin_arches\"\n\t    for darwin_arch in  $darwin_arches; do\n\t      func_mkdir_p \"unfat-$$/$darwin_base_archive-$darwin_arch\"\n\t      $LIPO -thin $darwin_arch -output \"unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive\" \"$darwin_archive\"\n\t      cd \"unfat-$$/$darwin_base_archive-$darwin_arch\"\n\t      func_extract_an_archive \"`pwd`\" \"$darwin_base_archive\"\n\t      cd \"$darwin_curdir\"\n\t      $RM \"unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive\"\n\t    done # $darwin_arches\n            ## Okay now we've a bunch of thin objects, gotta fatten them up :)\n\t    darwin_filelist=`find unfat-$$ -type f -name \\*.o -print -o -name \\*.lo -print | $SED -e \"$sed_basename\" | sort -u`\n\t    darwin_file=\n\t    darwin_files=\n\t    for darwin_file in $darwin_filelist; do\n\t      darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`\n\t      $LIPO -create -output \"$darwin_file\" $darwin_files\n\t    done # $darwin_filelist\n\t    $RM -rf unfat-$$\n\t    cd \"$darwin_orig_dir\"\n\t  else\n\t    cd $darwin_orig_dir\n\t    func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t  fi # $darwin_arches\n\t} # !$opt_dry_run\n\t;;\n      *)\n        func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t;;\n      esac\n      my_oldobjs=\"$my_oldobjs \"`find $my_xdir -name \\*.$objext -print -o -name \\*.lo -print | sort | $NL2SP`\n    done\n\n    func_extract_archives_result=$my_oldobjs\n}\n\n\n# func_emit_wrapper [arg=no]\n#\n# Emit a libtool wrapper script on stdout.\n# Don't directly open a file because we may want to\n# incorporate the script contents within a cygwin/mingw\n# wrapper executable.  Must ONLY be called from within\n# func_mode_link because it depends on a number of variables\n# set therein.\n#\n# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\n# variable will take.  If 'yes', then the emitted script\n# will assume that the directory where it is stored is\n# the $objdir directory.  This is a cygwin/mingw-specific\n# behavior.\nfunc_emit_wrapper ()\n{\n\tfunc_emit_wrapper_arg1=${1-no}\n\n\t$ECHO \"\\\n#! $SHELL\n\n# $output - temporary wrapper script for $objdir/$outputname\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# The $output program cannot be directly executed until all the libtool\n# libraries that it depends on are installed.\n#\n# This wrapper script should never be moved out of the build directory.\n# If it is, it will not operate correctly.\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='$sed_quote_subst'\n\n# Be Bourne compatible\nif test -n \\\"\\${ZSH_VERSION+set}\\\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on \\${1+\\\"\\$@\\\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '\\${1+\\\"\\$@\\\"}'='\\\"\\$@\\\"'\n  setopt NO_GLOB_SUBST\nelse\n  case \\`(set -o) 2>/dev/null\\` in *posix*) set -o posix;; esac\nfi\nBIN_SH=xpg4; export BIN_SH # for Tru64\nDUALCASE=1; export DUALCASE # for MKS sh\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nrelink_command=\\\"$relink_command\\\"\n\n# This environment variable determines our operation mode.\nif test \\\"\\$libtool_install_magic\\\" = \\\"$magic\\\"; then\n  # install mode needs the following variables:\n  generated_by_libtool_version='$macro_version'\n  notinst_deplibs='$notinst_deplibs'\nelse\n  # When we are sourced in execute mode, \\$file and \\$ECHO are already set.\n  if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n    file=\\\"\\$0\\\"\"\n\n    qECHO=`$ECHO \"$ECHO\" | $SED \"$sed_quote_subst\"`\n    $ECHO \"\\\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$1\n_LTECHO_EOF'\n}\n    ECHO=\\\"$qECHO\\\"\n  fi\n\n# Very basic option parsing. These options are (a) specific to\n# the libtool wrapper, (b) are identical between the wrapper\n# /script/ and the wrapper /executable/ that is used only on\n# windows platforms, and (c) all begin with the string \"--lt-\"\n# (application programs are unlikely to have options that match\n# this pattern).\n#\n# There are only two supported options: --lt-debug and\n# --lt-dump-script. There is, deliberately, no --lt-help.\n#\n# The first argument to this parsing function should be the\n# script's $0 value, followed by \"$@\".\nlt_option_debug=\nfunc_parse_lt_options ()\n{\n  lt_script_arg0=\\$0\n  shift\n  for lt_opt\n  do\n    case \\\"\\$lt_opt\\\" in\n    --lt-debug) lt_option_debug=1 ;;\n    --lt-dump-script)\n        lt_dump_D=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\\`\n        test \\\"X\\$lt_dump_D\\\" = \\\"X\\$lt_script_arg0\\\" && lt_dump_D=.\n        lt_dump_F=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%^.*/%%'\\`\n        cat \\\"\\$lt_dump_D/\\$lt_dump_F\\\"\n        exit 0\n      ;;\n    --lt-*)\n        \\$ECHO \\\"Unrecognized --lt- option: '\\$lt_opt'\\\" 1>&2\n        exit 1\n      ;;\n    esac\n  done\n\n  # Print the debug banner immediately:\n  if test -n \\\"\\$lt_option_debug\\\"; then\n    echo \\\"$outputname:$output:\\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\\\" 1>&2\n  fi\n}\n\n# Used when --lt-debug. Prints its arguments to stdout\n# (redirection is the responsibility of the caller)\nfunc_lt_dump_args ()\n{\n  lt_dump_args_N=1;\n  for lt_arg\n  do\n    \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[\\$lt_dump_args_N]: \\$lt_arg\\\"\n    lt_dump_args_N=\\`expr \\$lt_dump_args_N + 1\\`\n  done\n}\n\n# Core function for launching the target application\nfunc_exec_program_core ()\n{\n\"\n  case $host in\n  # Backslashes separate directories on plain windows\n  *-*-mingw | *-*-os2* | *-cegcc*)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[0]: \\$progdir\\\\\\\\\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir\\\\\\\\\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n\n  *)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[0]: \\$progdir/\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir/\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n  esac\n  $ECHO \"\\\n      \\$ECHO \\\"\\$0: cannot exec \\$program \\$*\\\" 1>&2\n      exit 1\n}\n\n# A function to encapsulate launching the target application\n# Strips options in the --lt-* namespace from \\$@ and\n# launches target application with the remaining arguments.\nfunc_exec_program ()\n{\n  case \\\" \\$* \\\" in\n  *\\\\ --lt-*)\n    for lt_wr_arg\n    do\n      case \\$lt_wr_arg in\n      --lt-*) ;;\n      *) set x \\\"\\$@\\\" \\\"\\$lt_wr_arg\\\"; shift;;\n      esac\n      shift\n    done ;;\n  esac\n  func_exec_program_core \\${1+\\\"\\$@\\\"}\n}\n\n  # Parse options\n  func_parse_lt_options \\\"\\$0\\\" \\${1+\\\"\\$@\\\"}\n\n  # Find the directory that this script lives in.\n  thisdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*$%%'\\`\n  test \\\"x\\$thisdir\\\" = \\\"x\\$file\\\" && thisdir=.\n\n  # Follow symbolic links until we get to the real thisdir.\n  file=\\`ls -ld \\\"\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  while test -n \\\"\\$file\\\"; do\n    destdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*\\$%%'\\`\n\n    # If there was a directory component, then change thisdir.\n    if test \\\"x\\$destdir\\\" != \\\"x\\$file\\\"; then\n      case \\\"\\$destdir\\\" in\n      [\\\\\\\\/]* | [A-Za-z]:[\\\\\\\\/]*) thisdir=\\\"\\$destdir\\\" ;;\n      *) thisdir=\\\"\\$thisdir/\\$destdir\\\" ;;\n      esac\n    fi\n\n    file=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%^.*/%%'\\`\n    file=\\`ls -ld \\\"\\$thisdir/\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  done\n\n  # Usually 'no', except on cygwin/mingw when embedded into\n  # the cwrapper.\n  WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1\n  if test \\\"\\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\\\" = \\\"yes\\\"; then\n    # special case for '.'\n    if test \\\"\\$thisdir\\\" = \\\".\\\"; then\n      thisdir=\\`pwd\\`\n    fi\n    # remove .libs from thisdir\n    case \\\"\\$thisdir\\\" in\n    *[\\\\\\\\/]$objdir ) thisdir=\\`\\$ECHO \\\"\\$thisdir\\\" | $SED 's%[\\\\\\\\/][^\\\\\\\\/]*$%%'\\` ;;\n    $objdir )   thisdir=. ;;\n    esac\n  fi\n\n  # Try to get the absolute directory name.\n  absdir=\\`cd \\\"\\$thisdir\\\" && pwd\\`\n  test -n \\\"\\$absdir\\\" && thisdir=\\\"\\$absdir\\\"\n\"\n\n\tif test yes = \"$fast_install\"; then\n\t  $ECHO \"\\\n  program=lt-'$outputname'$exeext\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\n  if test ! -f \\\"\\$progdir/\\$program\\\" ||\n     { file=\\`ls -1dt \\\"\\$progdir/\\$program\\\" \\\"\\$progdir/../\\$program\\\" 2>/dev/null | $SED 1q\\`; \\\\\n       test \\\"X\\$file\\\" != \\\"X\\$progdir/\\$program\\\"; }; then\n\n    file=\\\"\\$\\$-\\$program\\\"\n\n    if test ! -d \\\"\\$progdir\\\"; then\n      $MKDIR \\\"\\$progdir\\\"\n    else\n      $RM \\\"\\$progdir/\\$file\\\"\n    fi\"\n\n\t  $ECHO \"\\\n\n    # relink executable if necessary\n    if test -n \\\"\\$relink_command\\\"; then\n      if relink_command_output=\\`eval \\$relink_command 2>&1\\`; then :\n      else\n\t\\$ECHO \\\"\\$relink_command_output\\\" >&2\n\t$RM \\\"\\$progdir/\\$file\\\"\n\texit 1\n      fi\n    fi\n\n    $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\" 2>/dev/null ||\n    { $RM \\\"\\$progdir/\\$program\\\";\n      $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\"; }\n    $RM \\\"\\$progdir/\\$file\\\"\n  fi\"\n\telse\n\t  $ECHO \"\\\n  program='$outputname'\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\"\n\tfi\n\n\t$ECHO \"\\\n\n  if test -f \\\"\\$progdir/\\$program\\\"; then\"\n\n\t# fixup the dll searchpath if we need to.\n\t#\n\t# Fix the DLL searchpath if we need to.  Do this before prepending\n\t# to shlibpath, because on Windows, both are PATH and uninstalled\n\t# libraries must come first.\n\tif test -n \"$dllsearchpath\"; then\n\t  $ECHO \"\\\n    # Add the dll search path components to the executable PATH\n    PATH=$dllsearchpath:\\$PATH\n\"\n\tfi\n\n\t# Export our shlibpath_var if we have one.\n\tif test yes = \"$shlibpath_overrides_runpath\" && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n\t  $ECHO \"\\\n    # Add our own library path to $shlibpath_var\n    $shlibpath_var=\\\"$temp_rpath\\$$shlibpath_var\\\"\n\n    # Some systems cannot cope with colon-terminated $shlibpath_var\n    # The second colon is a workaround for a bug in BeOS R4 sed\n    $shlibpath_var=\\`\\$ECHO \\\"\\$$shlibpath_var\\\" | $SED 's/::*\\$//'\\`\n\n    export $shlibpath_var\n\"\n\tfi\n\n\t$ECHO \"\\\n    if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n      # Run the actual program with our arguments.\n      func_exec_program \\${1+\\\"\\$@\\\"}\n    fi\n  else\n    # The program doesn't exist.\n    \\$ECHO \\\"\\$0: error: '\\$progdir/\\$program' does not exist\\\" 1>&2\n    \\$ECHO \\\"This script is just a wrapper for \\$program.\\\" 1>&2\n    \\$ECHO \\\"See the $PACKAGE documentation for more information.\\\" 1>&2\n    exit 1\n  fi\nfi\\\n\"\n}\n\n\n# func_emit_cwrapperexe_src\n# emit the source code for a wrapper executable on stdout\n# Must ONLY be called from within func_mode_link because\n# it depends on a number of variable set therein.\nfunc_emit_cwrapperexe_src ()\n{\n\tcat <<EOF\n\n/* $cwrappersource - temporary wrapper executable for $objdir/$outputname\n   Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n\n   The $output program cannot be directly executed until all the libtool\n   libraries that it depends on are installed.\n\n   This wrapper executable should never be moved out of the build directory.\n   If it is, it will not operate correctly.\n*/\nEOF\n\t    cat <<\"EOF\"\n#ifdef _MSC_VER\n# define _CRT_SECURE_NO_DEPRECATE 1\n#endif\n#include <stdio.h>\n#include <stdlib.h>\n#ifdef _MSC_VER\n# include <direct.h>\n# include <process.h>\n# include <io.h>\n#else\n# include <unistd.h>\n# include <stdint.h>\n# ifdef __CYGWIN__\n#  include <io.h>\n# endif\n#endif\n#include <malloc.h>\n#include <stdarg.h>\n#include <assert.h>\n#include <string.h>\n#include <ctype.h>\n#include <errno.h>\n#include <fcntl.h>\n#include <sys/stat.h>\n\n#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)\n\n/* declarations of non-ANSI functions */\n#if defined __MINGW32__\n# ifdef __STRICT_ANSI__\nint _putenv (const char *);\n# endif\n#elif defined __CYGWIN__\n# ifdef __STRICT_ANSI__\nchar *realpath (const char *, char *);\nint putenv (char *);\nint setenv (const char *, const char *, int);\n# endif\n/* #elif defined other_platform || defined ... */\n#endif\n\n/* portability defines, excluding path handling macros */\n#if defined _MSC_VER\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n# define S_IXUSR _S_IEXEC\n#elif defined __MINGW32__\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n#elif defined __CYGWIN__\n# define HAVE_SETENV\n# define FOPEN_WB \"wb\"\n/* #elif defined other platforms ... */\n#endif\n\n#if defined PATH_MAX\n# define LT_PATHMAX PATH_MAX\n#elif defined MAXPATHLEN\n# define LT_PATHMAX MAXPATHLEN\n#else\n# define LT_PATHMAX 1024\n#endif\n\n#ifndef S_IXOTH\n# define S_IXOTH 0\n#endif\n#ifndef S_IXGRP\n# define S_IXGRP 0\n#endif\n\n/* path handling portability macros */\n#ifndef DIR_SEPARATOR\n# define DIR_SEPARATOR '/'\n# define PATH_SEPARATOR ':'\n#endif\n\n#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \\\n  defined __OS2__\n# define HAVE_DOS_BASED_FILE_SYSTEM\n# define FOPEN_WB \"wb\"\n# ifndef DIR_SEPARATOR_2\n#  define DIR_SEPARATOR_2 '\\\\'\n# endif\n# ifndef PATH_SEPARATOR_2\n#  define PATH_SEPARATOR_2 ';'\n# endif\n#endif\n\n#ifndef DIR_SEPARATOR_2\n# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)\n#else /* DIR_SEPARATOR_2 */\n# define IS_DIR_SEPARATOR(ch) \\\n\t(((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))\n#endif /* DIR_SEPARATOR_2 */\n\n#ifndef PATH_SEPARATOR_2\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)\n#else /* PATH_SEPARATOR_2 */\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)\n#endif /* PATH_SEPARATOR_2 */\n\n#ifndef FOPEN_WB\n# define FOPEN_WB \"w\"\n#endif\n#ifndef _O_BINARY\n# define _O_BINARY 0\n#endif\n\n#define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))\n#define XFREE(stale) do { \\\n  if (stale) { free (stale); stale = 0; } \\\n} while (0)\n\n#if defined LT_DEBUGWRAPPER\nstatic int lt_debug = 1;\n#else\nstatic int lt_debug = 0;\n#endif\n\nconst char *program_name = \"libtool-wrapper\"; /* in case xstrdup fails */\n\nvoid *xmalloc (size_t num);\nchar *xstrdup (const char *string);\nconst char *base_name (const char *name);\nchar *find_executable (const char *wrapper);\nchar *chase_symlinks (const char *pathspec);\nint make_executable (const char *path);\nint check_executable (const char *path);\nchar *strendzap (char *str, const char *pat);\nvoid lt_debugprintf (const char *file, int line, const char *fmt, ...);\nvoid lt_fatal (const char *file, int line, const char *message, ...);\nstatic const char *nonnull (const char *s);\nstatic const char *nonempty (const char *s);\nvoid lt_setenv (const char *name, const char *value);\nchar *lt_extend_str (const char *orig_value, const char *add, int to_end);\nvoid lt_update_exe_path (const char *name, const char *value);\nvoid lt_update_lib_path (const char *name, const char *value);\nchar **prepare_spawn (char **argv);\nvoid lt_dump_script (FILE *f);\nEOF\n\n\t    cat <<EOF\n#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5)\n# define externally_visible volatile\n#else\n# define externally_visible __attribute__((externally_visible)) volatile\n#endif\nexternally_visible const char * MAGIC_EXE = \"$magic_exe\";\nconst char * LIB_PATH_VARNAME = \"$shlibpath_var\";\nEOF\n\n\t    if test yes = \"$shlibpath_overrides_runpath\" && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n              func_to_host_path \"$temp_rpath\"\n\t      cat <<EOF\nconst char * LIB_PATH_VALUE   = \"$func_to_host_path_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * LIB_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test -n \"$dllsearchpath\"; then\n              func_to_host_path \"$dllsearchpath:\"\n\t      cat <<EOF\nconst char * EXE_PATH_VARNAME = \"PATH\";\nconst char * EXE_PATH_VALUE   = \"$func_to_host_path_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * EXE_PATH_VARNAME = \"\";\nconst char * EXE_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test yes = \"$fast_install\"; then\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"lt-$outputname\"; /* hopefully, no .exe */\nEOF\n\t    else\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"$outputname\"; /* hopefully, no .exe */\nEOF\n\t    fi\n\n\n\t    cat <<\"EOF\"\n\n#define LTWRAPPER_OPTION_PREFIX         \"--lt-\"\n\nstatic const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;\nstatic const char *dumpscript_opt       = LTWRAPPER_OPTION_PREFIX \"dump-script\";\nstatic const char *debug_opt            = LTWRAPPER_OPTION_PREFIX \"debug\";\n\nint\nmain (int argc, char *argv[])\n{\n  char **newargz;\n  int  newargc;\n  char *tmp_pathspec;\n  char *actual_cwrapper_path;\n  char *actual_cwrapper_name;\n  char *target_name;\n  char *lt_argv_zero;\n  int rval = 127;\n\n  int i;\n\n  program_name = (char *) xstrdup (base_name (argv[0]));\n  newargz = XMALLOC (char *, (size_t) argc + 1);\n\n  /* very simple arg parsing; don't want to rely on getopt\n   * also, copy all non cwrapper options to newargz, except\n   * argz[0], which is handled differently\n   */\n  newargc=0;\n  for (i = 1; i < argc; i++)\n    {\n      if (STREQ (argv[i], dumpscript_opt))\n\t{\nEOF\n\t    case $host in\n\t      *mingw* | *cygwin* )\n\t\t# make stdout use \"unix\" line endings\n\t\techo \"          setmode(1,_O_BINARY);\"\n\t\t;;\n\t      esac\n\n\t    cat <<\"EOF\"\n\t  lt_dump_script (stdout);\n\t  return 0;\n\t}\n      if (STREQ (argv[i], debug_opt))\n\t{\n          lt_debug = 1;\n          continue;\n\t}\n      if (STREQ (argv[i], ltwrapper_option_prefix))\n        {\n          /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX\n             namespace, but it is not one of the ones we know about and\n             have already dealt with, above (inluding dump-script), then\n             report an error. Otherwise, targets might begin to believe\n             they are allowed to use options in the LTWRAPPER_OPTION_PREFIX\n             namespace. The first time any user complains about this, we'll\n             need to make LTWRAPPER_OPTION_PREFIX a configure-time option\n             or a configure.ac-settable value.\n           */\n          lt_fatal (__FILE__, __LINE__,\n\t\t    \"unrecognized %s option: '%s'\",\n                    ltwrapper_option_prefix, argv[i]);\n        }\n      /* otherwise ... */\n      newargz[++newargc] = xstrdup (argv[i]);\n    }\n  newargz[++newargc] = NULL;\n\nEOF\n\t    cat <<EOF\n  /* The GNU banner must be the first non-error debug message */\n  lt_debugprintf (__FILE__, __LINE__, \"libtool wrapper (GNU $PACKAGE) $VERSION\\n\");\nEOF\n\t    cat <<\"EOF\"\n  lt_debugprintf (__FILE__, __LINE__, \"(main) argv[0]: %s\\n\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__, \"(main) program_name: %s\\n\", program_name);\n\n  tmp_pathspec = find_executable (argv[0]);\n  if (tmp_pathspec == NULL)\n    lt_fatal (__FILE__, __LINE__, \"couldn't find %s\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (before symlink chase) at: %s\\n\",\n\t\t  tmp_pathspec);\n\n  actual_cwrapper_path = chase_symlinks (tmp_pathspec);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (after symlink chase) at: %s\\n\",\n\t\t  actual_cwrapper_path);\n  XFREE (tmp_pathspec);\n\n  actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));\n  strendzap (actual_cwrapper_path, actual_cwrapper_name);\n\n  /* wrapper name transforms */\n  strendzap (actual_cwrapper_name, \".exe\");\n  tmp_pathspec = lt_extend_str (actual_cwrapper_name, \".exe\", 1);\n  XFREE (actual_cwrapper_name);\n  actual_cwrapper_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  /* target_name transforms -- use actual target program name; might have lt- prefix */\n  target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));\n  strendzap (target_name, \".exe\");\n  tmp_pathspec = lt_extend_str (target_name, \".exe\", 1);\n  XFREE (target_name);\n  target_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(main) libtool target name: %s\\n\",\n\t\t  target_name);\nEOF\n\n\t    cat <<EOF\n  newargz[0] =\n    XMALLOC (char, (strlen (actual_cwrapper_path) +\n\t\t    strlen (\"$objdir\") + 1 + strlen (actual_cwrapper_name) + 1));\n  strcpy (newargz[0], actual_cwrapper_path);\n  strcat (newargz[0], \"$objdir\");\n  strcat (newargz[0], \"/\");\nEOF\n\n\t    cat <<\"EOF\"\n  /* stop here, and copy so we don't have to do this twice */\n  tmp_pathspec = xstrdup (newargz[0]);\n\n  /* do NOT want the lt- prefix here, so use actual_cwrapper_name */\n  strcat (newargz[0], actual_cwrapper_name);\n\n  /* DO want the lt- prefix here if it exists, so use target_name */\n  lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);\n  XFREE (tmp_pathspec);\n  tmp_pathspec = NULL;\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t    cat <<\"EOF\"\n  {\n    char* p;\n    while ((p = strchr (newargz[0], '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n    while ((p = strchr (lt_argv_zero, '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n  }\nEOF\n\t    ;;\n\t    esac\n\n\t    cat <<\"EOF\"\n  XFREE (target_name);\n  XFREE (actual_cwrapper_path);\n  XFREE (actual_cwrapper_name);\n\n  lt_setenv (\"BIN_SH\", \"xpg4\"); /* for Tru64 */\n  lt_setenv (\"DUALCASE\", \"1\");  /* for MSK sh */\n  /* Update the DLL searchpath.  EXE_PATH_VALUE ($dllsearchpath) must\n     be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)\n     because on Windows, both *_VARNAMEs are PATH but uninstalled\n     libraries must come first. */\n  lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);\n  lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);\n\n  lt_debugprintf (__FILE__, __LINE__, \"(main) lt_argv_zero: %s\\n\",\n\t\t  nonnull (lt_argv_zero));\n  for (i = 0; i < newargc; i++)\n    {\n      lt_debugprintf (__FILE__, __LINE__, \"(main) newargz[%d]: %s\\n\",\n\t\t      i, nonnull (newargz[i]));\n    }\n\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n  /* execv doesn't actually work on mingw as expected on unix */\n  newargz = prepare_spawn (newargz);\n  rval = (int) _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);\n  if (rval == -1)\n    {\n      /* failed to start process */\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"(main) failed to launch target \\\"%s\\\": %s\\n\",\n\t\t      lt_argv_zero, nonnull (strerror (errno)));\n      return 127;\n    }\n  return rval;\nEOF\n\t\t;;\n\t      *)\n\t\tcat <<\"EOF\"\n  execv (lt_argv_zero, newargz);\n  return rval; /* =127, but avoids unused variable warning */\nEOF\n\t\t;;\n\t    esac\n\n\t    cat <<\"EOF\"\n}\n\nvoid *\nxmalloc (size_t num)\n{\n  void *p = (void *) malloc (num);\n  if (!p)\n    lt_fatal (__FILE__, __LINE__, \"memory exhausted\");\n\n  return p;\n}\n\nchar *\nxstrdup (const char *string)\n{\n  return string ? strcpy ((char *) xmalloc (strlen (string) + 1),\n\t\t\t  string) : NULL;\n}\n\nconst char *\nbase_name (const char *name)\n{\n  const char *base;\n\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n  /* Skip over the disk name in MSDOS pathnames. */\n  if (isalpha ((unsigned char) name[0]) && name[1] == ':')\n    name += 2;\n#endif\n\n  for (base = name; *name; name++)\n    if (IS_DIR_SEPARATOR (*name))\n      base = name + 1;\n  return base;\n}\n\nint\ncheck_executable (const char *path)\n{\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(check_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if ((stat (path, &st) >= 0)\n      && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))\n    return 1;\n  else\n    return 0;\n}\n\nint\nmake_executable (const char *path)\n{\n  int rval = 0;\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(make_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if (stat (path, &st) >= 0)\n    {\n      rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);\n    }\n  return rval;\n}\n\n/* Searches for the full path of the wrapper.  Returns\n   newly allocated full path name if found, NULL otherwise\n   Does not chase symlinks, even on platforms that support them.\n*/\nchar *\nfind_executable (const char *wrapper)\n{\n  int has_slash = 0;\n  const char *p;\n  const char *p_next;\n  /* static buffer for getcwd */\n  char tmp[LT_PATHMAX + 1];\n  size_t tmp_len;\n  char *concat_name;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(find_executable): %s\\n\",\n                  nonempty (wrapper));\n\n  if ((wrapper == NULL) || (*wrapper == '\\0'))\n    return NULL;\n\n  /* Absolute path? */\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n  if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')\n    {\n      concat_name = xstrdup (wrapper);\n      if (check_executable (concat_name))\n\treturn concat_name;\n      XFREE (concat_name);\n    }\n  else\n    {\n#endif\n      if (IS_DIR_SEPARATOR (wrapper[0]))\n\t{\n\t  concat_name = xstrdup (wrapper);\n\t  if (check_executable (concat_name))\n\t    return concat_name;\n\t  XFREE (concat_name);\n\t}\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n    }\n#endif\n\n  for (p = wrapper; *p; p++)\n    if (*p == '/')\n      {\n\thas_slash = 1;\n\tbreak;\n      }\n  if (!has_slash)\n    {\n      /* no slashes; search PATH */\n      const char *path = getenv (\"PATH\");\n      if (path != NULL)\n\t{\n\t  for (p = path; *p; p = p_next)\n\t    {\n\t      const char *q;\n\t      size_t p_len;\n\t      for (q = p; *q; q++)\n\t\tif (IS_PATH_SEPARATOR (*q))\n\t\t  break;\n\t      p_len = (size_t) (q - p);\n\t      p_next = (*q == '\\0' ? q : q + 1);\n\t      if (p_len == 0)\n\t\t{\n\t\t  /* empty path: current directory */\n\t\t  if (getcwd (tmp, LT_PATHMAX) == NULL)\n\t\t    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n                              nonnull (strerror (errno)));\n\t\t  tmp_len = strlen (tmp);\n\t\t  concat_name =\n\t\t    XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, tmp, tmp_len);\n\t\t  concat_name[tmp_len] = '/';\n\t\t  strcpy (concat_name + tmp_len + 1, wrapper);\n\t\t}\n\t      else\n\t\t{\n\t\t  concat_name =\n\t\t    XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, p, p_len);\n\t\t  concat_name[p_len] = '/';\n\t\t  strcpy (concat_name + p_len + 1, wrapper);\n\t\t}\n\t      if (check_executable (concat_name))\n\t\treturn concat_name;\n\t      XFREE (concat_name);\n\t    }\n\t}\n      /* not found in PATH; assume curdir */\n    }\n  /* Relative path | not found in path: prepend cwd */\n  if (getcwd (tmp, LT_PATHMAX) == NULL)\n    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n              nonnull (strerror (errno)));\n  tmp_len = strlen (tmp);\n  concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n  memcpy (concat_name, tmp, tmp_len);\n  concat_name[tmp_len] = '/';\n  strcpy (concat_name + tmp_len + 1, wrapper);\n\n  if (check_executable (concat_name))\n    return concat_name;\n  XFREE (concat_name);\n  return NULL;\n}\n\nchar *\nchase_symlinks (const char *pathspec)\n{\n#ifndef S_ISLNK\n  return xstrdup (pathspec);\n#else\n  char buf[LT_PATHMAX];\n  struct stat s;\n  char *tmp_pathspec = xstrdup (pathspec);\n  char *p;\n  int has_symlinks = 0;\n  while (strlen (tmp_pathspec) && !has_symlinks)\n    {\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"checking path component for symlinks: %s\\n\",\n\t\t      tmp_pathspec);\n      if (lstat (tmp_pathspec, &s) == 0)\n\t{\n\t  if (S_ISLNK (s.st_mode) != 0)\n\t    {\n\t      has_symlinks = 1;\n\t      break;\n\t    }\n\n\t  /* search backwards for last DIR_SEPARATOR */\n\t  p = tmp_pathspec + strlen (tmp_pathspec) - 1;\n\t  while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    p--;\n\t  if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    {\n\t      /* no more DIR_SEPARATORS left */\n\t      break;\n\t    }\n\t  *p = '\\0';\n\t}\n      else\n\t{\n\t  lt_fatal (__FILE__, __LINE__,\n\t\t    \"error accessing file \\\"%s\\\": %s\",\n\t\t    tmp_pathspec, nonnull (strerror (errno)));\n\t}\n    }\n  XFREE (tmp_pathspec);\n\n  if (!has_symlinks)\n    {\n      return xstrdup (pathspec);\n    }\n\n  tmp_pathspec = realpath (pathspec, buf);\n  if (tmp_pathspec == 0)\n    {\n      lt_fatal (__FILE__, __LINE__,\n\t\t\"could not follow symlinks for %s\", pathspec);\n    }\n  return xstrdup (tmp_pathspec);\n#endif\n}\n\nchar *\nstrendzap (char *str, const char *pat)\n{\n  size_t len, patlen;\n\n  assert (str != NULL);\n  assert (pat != NULL);\n\n  len = strlen (str);\n  patlen = strlen (pat);\n\n  if (patlen <= len)\n    {\n      str += len - patlen;\n      if (STREQ (str, pat))\n\t*str = '\\0';\n    }\n  return str;\n}\n\nvoid\nlt_debugprintf (const char *file, int line, const char *fmt, ...)\n{\n  va_list args;\n  if (lt_debug)\n    {\n      (void) fprintf (stderr, \"%s:%s:%d: \", program_name, file, line);\n      va_start (args, fmt);\n      (void) vfprintf (stderr, fmt, args);\n      va_end (args);\n    }\n}\n\nstatic void\nlt_error_core (int exit_status, const char *file,\n\t       int line, const char *mode,\n\t       const char *message, va_list ap)\n{\n  fprintf (stderr, \"%s:%s:%d: %s: \", program_name, file, line, mode);\n  vfprintf (stderr, message, ap);\n  fprintf (stderr, \".\\n\");\n\n  if (exit_status >= 0)\n    exit (exit_status);\n}\n\nvoid\nlt_fatal (const char *file, int line, const char *message, ...)\n{\n  va_list ap;\n  va_start (ap, message);\n  lt_error_core (EXIT_FAILURE, file, line, \"FATAL\", message, ap);\n  va_end (ap);\n}\n\nstatic const char *\nnonnull (const char *s)\n{\n  return s ? s : \"(null)\";\n}\n\nstatic const char *\nnonempty (const char *s)\n{\n  return (s && !*s) ? \"(empty)\" : nonnull (s);\n}\n\nvoid\nlt_setenv (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_setenv) setting '%s' to '%s'\\n\",\n                  nonnull (name), nonnull (value));\n  {\n#ifdef HAVE_SETENV\n    /* always make a copy, for consistency with !HAVE_SETENV */\n    char *str = xstrdup (value);\n    setenv (name, str, 1);\n#else\n    size_t len = strlen (name) + 1 + strlen (value) + 1;\n    char *str = XMALLOC (char, len);\n    sprintf (str, \"%s=%s\", name, value);\n    if (putenv (str) != EXIT_SUCCESS)\n      {\n        XFREE (str);\n      }\n#endif\n  }\n}\n\nchar *\nlt_extend_str (const char *orig_value, const char *add, int to_end)\n{\n  char *new_value;\n  if (orig_value && *orig_value)\n    {\n      size_t orig_value_len = strlen (orig_value);\n      size_t add_len = strlen (add);\n      new_value = XMALLOC (char, add_len + orig_value_len + 1);\n      if (to_end)\n        {\n          strcpy (new_value, orig_value);\n          strcpy (new_value + orig_value_len, add);\n        }\n      else\n        {\n          strcpy (new_value, add);\n          strcpy (new_value + add_len, orig_value);\n        }\n    }\n  else\n    {\n      new_value = xstrdup (add);\n    }\n  return new_value;\n}\n\nvoid\nlt_update_exe_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_exe_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      /* some systems can't cope with a ':'-terminated path #' */\n      size_t len = strlen (new_value);\n      while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1]))\n        {\n          new_value[--len] = '\\0';\n        }\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nvoid\nlt_update_lib_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_lib_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nEOF\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n\n/* Prepares an argument vector before calling spawn().\n   Note that spawn() does not by itself call the command interpreter\n     (getenv (\"COMSPEC\") != NULL ? getenv (\"COMSPEC\") :\n      ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);\n         GetVersionEx(&v);\n         v.dwPlatformId == VER_PLATFORM_WIN32_NT;\n      }) ? \"cmd.exe\" : \"command.com\").\n   Instead it simply concatenates the arguments, separated by ' ', and calls\n   CreateProcess().  We must quote the arguments since Win32 CreateProcess()\n   interprets characters like ' ', '\\t', '\\\\', '\"' (but not '<' and '>') in a\n   special way:\n   - Space and tab are interpreted as delimiters. They are not treated as\n     delimiters if they are surrounded by double quotes: \"...\".\n   - Unescaped double quotes are removed from the input. Their only effect is\n     that within double quotes, space and tab are treated like normal\n     characters.\n   - Backslashes not followed by double quotes are not special.\n   - But 2*n+1 backslashes followed by a double quote become\n     n backslashes followed by a double quote (n >= 0):\n       \\\" -> \"\n       \\\\\\\" -> \\\"\n       \\\\\\\\\\\" -> \\\\\"\n */\n#define SHELL_SPECIAL_CHARS \"\\\"\\\\ \\001\\002\\003\\004\\005\\006\\007\\010\\011\\012\\013\\014\\015\\016\\017\\020\\021\\022\\023\\024\\025\\026\\027\\030\\031\\032\\033\\034\\035\\036\\037\"\n#define SHELL_SPACE_CHARS \" \\001\\002\\003\\004\\005\\006\\007\\010\\011\\012\\013\\014\\015\\016\\017\\020\\021\\022\\023\\024\\025\\026\\027\\030\\031\\032\\033\\034\\035\\036\\037\"\nchar **\nprepare_spawn (char **argv)\n{\n  size_t argc;\n  char **new_argv;\n  size_t i;\n\n  /* Count number of arguments.  */\n  for (argc = 0; argv[argc] != NULL; argc++)\n    ;\n\n  /* Allocate new argument vector.  */\n  new_argv = XMALLOC (char *, argc + 1);\n\n  /* Put quoted arguments into the new argument vector.  */\n  for (i = 0; i < argc; i++)\n    {\n      const char *string = argv[i];\n\n      if (string[0] == '\\0')\n\tnew_argv[i] = xstrdup (\"\\\"\\\"\");\n      else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)\n\t{\n\t  int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);\n\t  size_t length;\n\t  unsigned int backslashes;\n\t  const char *s;\n\t  char *quoted_string;\n\t  char *p;\n\n\t  length = 0;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    length++;\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\tlength += backslashes + 1;\n\t      length++;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    length += backslashes + 1;\n\n\t  quoted_string = XMALLOC (char, length + 1);\n\n\t  p = quoted_string;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    *p++ = '\"';\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\t{\n\t\t  unsigned int j;\n\t\t  for (j = backslashes + 1; j > 0; j--)\n\t\t    *p++ = '\\\\';\n\t\t}\n\t      *p++ = c;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    {\n\t      unsigned int j;\n\t      for (j = backslashes; j > 0; j--)\n\t\t*p++ = '\\\\';\n\t      *p++ = '\"';\n\t    }\n\t  *p = '\\0';\n\n\t  new_argv[i] = quoted_string;\n\t}\n      else\n\tnew_argv[i] = (char *) string;\n    }\n  new_argv[argc] = NULL;\n\n  return new_argv;\n}\nEOF\n\t\t;;\n\t    esac\n\n            cat <<\"EOF\"\nvoid lt_dump_script (FILE* f)\n{\nEOF\n\t    func_emit_wrapper yes |\n\t      $SED -n -e '\ns/^\\(.\\{79\\}\\)\\(..*\\)/\\1\\\n\\2/\nh\ns/\\([\\\\\"]\\)/\\\\\\1/g\ns/$/\\\\n/\ns/\\([^\\n]*\\).*/  fputs (\"\\1\", f);/p\ng\nD'\n            cat <<\"EOF\"\n}\nEOF\n}\n# end: func_emit_cwrapperexe_src\n\n# func_win32_import_lib_p ARG\n# True if ARG is an import lib, as indicated by $file_magic_cmd\nfunc_win32_import_lib_p ()\n{\n    $debug_cmd\n\n    case `eval $file_magic_cmd \\\"\\$1\\\" 2>/dev/null | $SED -e 10q` in\n    *import*) : ;;\n    *) false ;;\n    esac\n}\n\n# func_suncc_cstd_abi\n# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!!\n# Several compiler flags select an ABI that is incompatible with the\n# Cstd library. Avoid specifying it if any are in CXXFLAGS.\nfunc_suncc_cstd_abi ()\n{\n    $debug_cmd\n\n    case \" $compile_command \" in\n    *\" -compat=g \"*|*\\ -std=c++[0-9][0-9]\\ *|*\" -library=stdcxx4 \"*|*\" -library=stlport4 \"*)\n      suncc_use_cstd_abi=no\n      ;;\n    *)\n      suncc_use_cstd_abi=yes\n      ;;\n    esac\n}\n\n# func_mode_link arg...\nfunc_mode_link ()\n{\n    $debug_cmd\n\n    case $host in\n    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n      # It is impossible to link a dll without this setting, and\n      # we shouldn't force the makefile maintainer to figure out\n      # what system we are compiling for in order to pass an extra\n      # flag for every libtool invocation.\n      # allow_undefined=no\n\n      # FIXME: Unfortunately, there are problems with the above when trying\n      # to make a dll that has undefined symbols, in which case not\n      # even a static library is built.  For now, we need to specify\n      # -no-undefined on the libtool link line when we can be certain\n      # that all symbols are satisfied, otherwise we get a static library.\n      allow_undefined=yes\n      ;;\n    *)\n      allow_undefined=yes\n      ;;\n    esac\n    libtool_args=$nonopt\n    base_compile=\"$nonopt $@\"\n    compile_command=$nonopt\n    finalize_command=$nonopt\n\n    compile_rpath=\n    finalize_rpath=\n    compile_shlibpath=\n    finalize_shlibpath=\n    convenience=\n    old_convenience=\n    deplibs=\n    old_deplibs=\n    compiler_flags=\n    linker_flags=\n    dllsearchpath=\n    lib_search_path=`pwd`\n    inst_prefix_dir=\n    new_inherited_linker_flags=\n\n    avoid_version=no\n    bindir=\n    dlfiles=\n    dlprefiles=\n    dlself=no\n    export_dynamic=no\n    export_symbols=\n    export_symbols_regex=\n    generated=\n    libobjs=\n    ltlibs=\n    module=no\n    no_install=no\n    objs=\n    os2dllname=\n    non_pic_objects=\n    precious_files_regex=\n    prefer_static_libs=no\n    preload=false\n    prev=\n    prevarg=\n    release=\n    rpath=\n    xrpath=\n    perm_rpath=\n    temp_rpath=\n    thread_safe=no\n    vinfo=\n    vinfo_number=no\n    weak_libs=\n    single_module=$wl-single_module\n    func_infer_tag $base_compile\n\n    # We need to know -static, to get the right output filenames.\n    for arg\n    do\n      case $arg in\n      -shared)\n\ttest yes != \"$build_libtool_libs\" \\\n\t  && func_fatal_configuration \"cannot build a shared library\"\n\tbuild_old_libs=no\n\tbreak\n\t;;\n      -all-static | -static | -static-libtool-libs)\n\tcase $arg in\n\t-all-static)\n\t  if test yes = \"$build_libtool_libs\" && test -z \"$link_static_flag\"; then\n\t    func_warning \"complete static linking is impossible in this configuration\"\n\t  fi\n\t  if test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\t-static)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=built\n\t  ;;\n\t-static-libtool-libs)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\tesac\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tbreak\n\t;;\n      esac\n    done\n\n    # See if our shared archives depend on static archives.\n    test -n \"$old_archive_from_new_cmds\" && build_old_libs=yes\n\n    # Go through the arguments, transforming them on the way.\n    while test \"$#\" -gt 0; do\n      arg=$1\n      shift\n      func_quote_for_eval \"$arg\"\n      qarg=$func_quote_for_eval_unquoted_result\n      func_append libtool_args \" $func_quote_for_eval_result\"\n\n      # If the previous option needs an argument, assign it.\n      if test -n \"$prev\"; then\n\tcase $prev in\n\toutput)\n\t  func_append compile_command \" @OUTPUT@\"\n\t  func_append finalize_command \" @OUTPUT@\"\n\t  ;;\n\tesac\n\n\tcase $prev in\n\tbindir)\n\t  bindir=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tdlfiles|dlprefiles)\n\t  $preload || {\n\t    # Add the symbol object into the linking commands.\n\t    func_append compile_command \" @SYMFILE@\"\n\t    func_append finalize_command \" @SYMFILE@\"\n\t    preload=:\n\t  }\n\t  case $arg in\n\t  *.la | *.lo) ;;  # We handle these cases below.\n\t  force)\n\t    if test no = \"$dlself\"; then\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  self)\n\t    if test dlprefiles = \"$prev\"; then\n\t      dlself=yes\n\t    elif test dlfiles = \"$prev\" && test yes != \"$dlopen_self\"; then\n\t      dlself=yes\n\t    else\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  *)\n\t    if test dlfiles = \"$prev\"; then\n\t      func_append dlfiles \" $arg\"\n\t    else\n\t      func_append dlprefiles \" $arg\"\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  esac\n\t  ;;\n\texpsyms)\n\t  export_symbols=$arg\n\t  test -f \"$arg\" \\\n\t    || func_fatal_error \"symbol file '$arg' does not exist\"\n\t  prev=\n\t  continue\n\t  ;;\n\texpsyms_regex)\n\t  export_symbols_regex=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tframework)\n\t  case $host in\n\t    *-*-darwin*)\n\t      case \"$deplibs \" in\n\t\t*\" $qarg.ltframework \"*) ;;\n\t\t*) func_append deplibs \" $qarg.ltframework\" # this is fixed later\n\t\t   ;;\n\t      esac\n\t      ;;\n\t  esac\n\t  prev=\n\t  continue\n\t  ;;\n\tinst_prefix)\n\t  inst_prefix_dir=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tmllvm)\n\t  # Clang does not use LLVM to link, so we can simply discard any\n\t  # '-mllvm $arg' options when doing the link step.\n\t  prev=\n\t  continue\n\t  ;;\n\tobjectlist)\n\t  if test -f \"$arg\"; then\n\t    save_arg=$arg\n\t    moreargs=\n\t    for fil in `cat \"$save_arg\"`\n\t    do\n#\t      func_append moreargs \" $fil\"\n\t      arg=$fil\n\t      # A libtool-controlled object.\n\n\t      # Check to see that this really is a libtool object.\n\t      if func_lalib_unsafe_p \"$arg\"; then\n\t\tpic_object=\n\t\tnon_pic_object=\n\n\t\t# Read the .lo file\n\t\tfunc_source \"$arg\"\n\n\t\tif test -z \"$pic_object\" ||\n\t\t   test -z \"$non_pic_object\" ||\n\t\t   test none = \"$pic_object\" &&\n\t\t   test none = \"$non_pic_object\"; then\n\t\t  func_fatal_error \"cannot find name of object for '$arg'\"\n\t\tfi\n\n\t\t# Extract subdirectory from the argument.\n\t\tfunc_dirname \"$arg\" \"/\" \"\"\n\t\txdir=$func_dirname_result\n\n\t\tif test none != \"$pic_object\"; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  pic_object=$xdir$pic_object\n\n\t\t  if test dlfiles = \"$prev\"; then\n\t\t    if test yes = \"$build_libtool_libs\" && test yes = \"$dlopen_support\"; then\n\t\t      func_append dlfiles \" $pic_object\"\n\t\t      prev=\n\t\t      continue\n\t\t    else\n\t\t      # If libtool objects are unsupported, then we need to preload.\n\t\t      prev=dlprefiles\n\t\t    fi\n\t\t  fi\n\n\t\t  # CHECK ME:  I think I busted this.  -Ossama\n\t\t  if test dlprefiles = \"$prev\"; then\n\t\t    # Preload the old-style object.\n\t\t    func_append dlprefiles \" $pic_object\"\n\t\t    prev=\n\t\t  fi\n\n\t\t  # A PIC object.\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  arg=$pic_object\n\t\tfi\n\n\t\t# Non-PIC object.\n\t\tif test none != \"$non_pic_object\"; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  non_pic_object=$xdir$non_pic_object\n\n\t\t  # A standard non-PIC object\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\t  if test -z \"$pic_object\" || test none = \"$pic_object\"; then\n\t\t    arg=$non_pic_object\n\t\t  fi\n\t\telse\n\t\t  # If the PIC object exists, use it instead.\n\t\t  # $xdir was prepended to $pic_object above.\n\t\t  non_pic_object=$pic_object\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\tfi\n\t      else\n\t\t# Only an error if not doing a dry-run.\n\t\tif $opt_dry_run; then\n\t\t  # Extract subdirectory from the argument.\n\t\t  func_dirname \"$arg\" \"/\" \"\"\n\t\t  xdir=$func_dirname_result\n\n\t\t  func_lo2o \"$arg\"\n\t\t  pic_object=$xdir$objdir/$func_lo2o_result\n\t\t  non_pic_object=$xdir$func_lo2o_result\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t        else\n\t\t  func_fatal_error \"'$arg' is not a valid libtool object\"\n\t\tfi\n\t      fi\n\t    done\n\t  else\n\t    func_fatal_error \"link input file '$arg' does not exist\"\n\t  fi\n\t  arg=$save_arg\n\t  prev=\n\t  continue\n\t  ;;\n\tos2dllname)\n\t  os2dllname=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tprecious_regex)\n\t  precious_files_regex=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\trelease)\n\t  release=-$arg\n\t  prev=\n\t  continue\n\t  ;;\n\trpath | xrpath)\n\t  # We need an absolute path.\n\t  case $arg in\n\t  [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t  *)\n\t    func_fatal_error \"only absolute run-paths are allowed\"\n\t    ;;\n\t  esac\n\t  if test rpath = \"$prev\"; then\n\t    case \"$rpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) func_append rpath \" $arg\" ;;\n\t    esac\n\t  else\n\t    case \"$xrpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) func_append xrpath \" $arg\" ;;\n\t    esac\n\t  fi\n\t  prev=\n\t  continue\n\t  ;;\n\tshrext)\n\t  shrext_cmds=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tweak)\n\t  func_append weak_libs \" $arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\txcclinker)\n\t  func_append linker_flags \" $qarg\"\n\t  func_append compiler_flags \" $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txcompiler)\n\t  func_append compiler_flags \" $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txlinker)\n\t  func_append linker_flags \" $qarg\"\n\t  func_append compiler_flags \" $wl$qarg\"\n\t  prev=\n\t  func_append compile_command \" $wl$qarg\"\n\t  func_append finalize_command \" $wl$qarg\"\n\t  continue\n\t  ;;\n\t*)\n\t  eval \"$prev=\\\"\\$arg\\\"\"\n\t  prev=\n\t  continue\n\t  ;;\n\tesac\n      fi # test -n \"$prev\"\n\n      prevarg=$arg\n\n      case $arg in\n      -all-static)\n\tif test -n \"$link_static_flag\"; then\n\t  # See comment for -static flag below, for more details.\n\t  func_append compile_command \" $link_static_flag\"\n\t  func_append finalize_command \" $link_static_flag\"\n\tfi\n\tcontinue\n\t;;\n\n      -allow-undefined)\n\t# FIXME: remove this flag sometime in the future.\n\tfunc_fatal_error \"'-allow-undefined' must not be used because it is the default\"\n\t;;\n\n      -avoid-version)\n\tavoid_version=yes\n\tcontinue\n\t;;\n\n      -bindir)\n\tprev=bindir\n\tcontinue\n\t;;\n\n      -dlopen)\n\tprev=dlfiles\n\tcontinue\n\t;;\n\n      -dlpreopen)\n\tprev=dlprefiles\n\tcontinue\n\t;;\n\n      -export-dynamic)\n\texport_dynamic=yes\n\tcontinue\n\t;;\n\n      -export-symbols | -export-symbols-regex)\n\tif test -n \"$export_symbols\" || test -n \"$export_symbols_regex\"; then\n\t  func_fatal_error \"more than one -exported-symbols argument is not allowed\"\n\tfi\n\tif test X-export-symbols = \"X$arg\"; then\n\t  prev=expsyms\n\telse\n\t  prev=expsyms_regex\n\tfi\n\tcontinue\n\t;;\n\n      -framework)\n\tprev=framework\n\tcontinue\n\t;;\n\n      -inst-prefix-dir)\n\tprev=inst_prefix\n\tcontinue\n\t;;\n\n      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*\n      # so, if we see these flags be careful not to treat them like -L\n      -L[A-Z][A-Z]*:*)\n\tcase $with_gcc/$host in\n\tno/*-*-irix* | /*-*-irix*)\n\t  func_append compile_command \" $arg\"\n\t  func_append finalize_command \" $arg\"\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -L*)\n\tfunc_stripname \"-L\" '' \"$arg\"\n\tif test -z \"$func_stripname_result\"; then\n\t  if test \"$#\" -gt 0; then\n\t    func_fatal_error \"require no space between '-L' and '$1'\"\n\t  else\n\t    func_fatal_error \"need path for '-L' option\"\n\t  fi\n\tfi\n\tfunc_resolve_sysroot \"$func_stripname_result\"\n\tdir=$func_resolve_sysroot_result\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t*)\n\t  absdir=`cd \"$dir\" && pwd`\n\t  test -z \"$absdir\" && \\\n\t    func_fatal_error \"cannot determine absolute directory name of '$dir'\"\n\t  dir=$absdir\n\t  ;;\n\tesac\n\tcase \"$deplibs \" in\n\t*\" -L$dir \"* | *\" $arg \"*)\n\t  # Will only happen for absolute or sysroot arguments\n\t  ;;\n\t*)\n\t  # Preserve sysroot, but never include relative directories\n\t  case $dir in\n\t    [\\\\/]* | [A-Za-z]:[\\\\/]* | =*) func_append deplibs \" $arg\" ;;\n\t    *) func_append deplibs \" -L$dir\" ;;\n\t  esac\n\t  func_append lib_search_path \" $dir\"\n\t  ;;\n\tesac\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`$ECHO \"$dir\" | $SED 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$dir:\"*) ;;\n\t  ::) dllsearchpath=$dir;;\n\t  *) func_append dllsearchpath \":$dir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) func_append dllsearchpath \":$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -l*)\n\tif test X-lc = \"X$arg\" || test X-lm = \"X$arg\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # These systems don't actually have a C or math library (as such)\n\t    continue\n\t    ;;\n\t  *-*-os2*)\n\t    # These systems don't actually have a C library (as such)\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C and math libraries are in the System framework\n\t    func_append deplibs \" System.ltframework\"\n\t    continue\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  esac\n\telif test X-lc_r = \"X$arg\"; then\n\t case $host in\n\t *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)\n\t   # Do not include libc_r directly, use -pthread flag.\n\t   continue\n\t   ;;\n\t esac\n\tfi\n\tfunc_append deplibs \" $arg\"\n\tcontinue\n\t;;\n\n      -mllvm)\n\tprev=mllvm\n\tcontinue\n\t;;\n\n      -module)\n\tmodule=yes\n\tcontinue\n\t;;\n\n      # Tru64 UNIX uses -model [arg] to determine the layout of C++\n      # classes, name mangling, and exception handling.\n      # Darwin uses the -arch flag to determine output architecture.\n      -model|-arch|-isysroot|--sysroot)\n\tfunc_append compiler_flags \" $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \\\n      |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)\n\tfunc_append compiler_flags \" $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tcase \"$new_inherited_linker_flags \" in\n\t    *\" $arg \"*) ;;\n\t    * ) func_append new_inherited_linker_flags \" $arg\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -multi_module)\n\tsingle_module=$wl-multi_module\n\tcontinue\n\t;;\n\n      -no-fast-install)\n\tfast_install=no\n\tcontinue\n\t;;\n\n      -no-install)\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)\n\t  # The PATH hackery in wrapper scripts is required on Windows\n\t  # and Darwin in order for the loader to find any dlls it needs.\n\t  func_warning \"'-no-install' is ignored for $host\"\n\t  func_warning \"assuming '-no-fast-install' instead\"\n\t  fast_install=no\n\t  ;;\n\t*) no_install=yes ;;\n\tesac\n\tcontinue\n\t;;\n\n      -no-undefined)\n\tallow_undefined=no\n\tcontinue\n\t;;\n\n      -objectlist)\n\tprev=objectlist\n\tcontinue\n\t;;\n\n      -os2dllname)\n\tprev=os2dllname\n\tcontinue\n\t;;\n\n      -o) prev=output ;;\n\n      -precious-files-regex)\n\tprev=precious_regex\n\tcontinue\n\t;;\n\n      -release)\n\tprev=release\n\tcontinue\n\t;;\n\n      -rpath)\n\tprev=rpath\n\tcontinue\n\t;;\n\n      -R)\n\tprev=xrpath\n\tcontinue\n\t;;\n\n      -R*)\n\tfunc_stripname '-R' '' \"$arg\"\n\tdir=$func_stripname_result\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t=*)\n\t  func_stripname '=' '' \"$dir\"\n\t  dir=$lt_sysroot$func_stripname_result\n\t  ;;\n\t*)\n\t  func_fatal_error \"only absolute run-paths are allowed\"\n\t  ;;\n\tesac\n\tcase \"$xrpath \" in\n\t*\" $dir \"*) ;;\n\t*) func_append xrpath \" $dir\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -shared)\n\t# The effects of -shared are defined in a previous loop.\n\tcontinue\n\t;;\n\n      -shrext)\n\tprev=shrext\n\tcontinue\n\t;;\n\n      -static | -static-libtool-libs)\n\t# The effects of -static are defined in a previous loop.\n\t# We used to do the same as -all-static on platforms that\n\t# didn't have a PIC flag, but the assumption that the effects\n\t# would be equivalent was wrong.  It would break on at least\n\t# Digital Unix and AIX.\n\tcontinue\n\t;;\n\n      -thread-safe)\n\tthread_safe=yes\n\tcontinue\n\t;;\n\n      -version-info)\n\tprev=vinfo\n\tcontinue\n\t;;\n\n      -version-number)\n\tprev=vinfo\n\tvinfo_number=yes\n\tcontinue\n\t;;\n\n      -weak)\n        prev=weak\n\tcontinue\n\t;;\n\n      -Wc,*)\n\tfunc_stripname '-Wc,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=$IFS; IFS=,\n\tfor flag in $args; do\n\t  IFS=$save_ifs\n          func_quote_for_eval \"$flag\"\n\t  func_append arg \" $func_quote_for_eval_result\"\n\t  func_append compiler_flags \" $func_quote_for_eval_result\"\n\tdone\n\tIFS=$save_ifs\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Wl,*)\n\tfunc_stripname '-Wl,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=$IFS; IFS=,\n\tfor flag in $args; do\n\t  IFS=$save_ifs\n          func_quote_for_eval \"$flag\"\n\t  func_append arg \" $wl$func_quote_for_eval_result\"\n\t  func_append compiler_flags \" $wl$func_quote_for_eval_result\"\n\t  func_append linker_flags \" $func_quote_for_eval_result\"\n\tdone\n\tIFS=$save_ifs\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Xcompiler)\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -Xlinker)\n\tprev=xlinker\n\tcontinue\n\t;;\n\n      -XCClinker)\n\tprev=xcclinker\n\tcontinue\n\t;;\n\n      # -msg_* for osf cc\n      -msg_*)\n\tfunc_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n\n      # Flags to be passed through unchanged, with rationale:\n      # -64, -mips[0-9]      enable 64-bit mode for the SGI compiler\n      # -r[0-9][0-9]*        specify processor for the SGI compiler\n      # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler\n      # +DA*, +DD*           enable 64-bit mode for the HP compiler\n      # -q*                  compiler args for the IBM compiler\n      # -m*, -t[45]*, -txscale* architecture-specific flags for GCC\n      # -F/path              path to uninstalled frameworks, gcc on darwin\n      # -p, -pg, --coverage, -fprofile-*  profiling flags for GCC\n      # -fstack-protector*   stack protector flags for GCC\n      # @file                GCC response files\n      # -tp=*                Portland pgcc target processor selection\n      # --sysroot=*          for sysroot support\n      # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization\n      # -stdlib=*            select c++ std lib with clang\n      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \\\n      -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \\\n      -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*)\n        func_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n        func_append compile_command \" $arg\"\n        func_append finalize_command \" $arg\"\n        func_append compiler_flags \" $arg\"\n        continue\n        ;;\n\n      -Z*)\n        if test os2 = \"`expr $host : '.*\\(os2\\)'`\"; then\n          # OS/2 uses -Zxxx to specify OS/2-specific options\n\t  compiler_flags=\"$compiler_flags $arg\"\n\t  func_append compile_command \" $arg\"\n\t  func_append finalize_command \" $arg\"\n\t  case $arg in\n\t  -Zlinker | -Zstack)\n\t    prev=xcompiler\n\t    ;;\n\t  esac\n\t  continue\n        else\n\t  # Otherwise treat like 'Some other compiler flag' below\n\t  func_quote_for_eval \"$arg\"\n\t  arg=$func_quote_for_eval_result\n        fi\n\t;;\n\n      # Some other compiler flag.\n      -* | +*)\n        func_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n\n      *.$objext)\n\t# A standard object.\n\tfunc_append objs \" $arg\"\n\t;;\n\n      *.lo)\n\t# A libtool-controlled object.\n\n\t# Check to see that this really is a libtool object.\n\tif func_lalib_unsafe_p \"$arg\"; then\n\t  pic_object=\n\t  non_pic_object=\n\n\t  # Read the .lo file\n\t  func_source \"$arg\"\n\n\t  if test -z \"$pic_object\" ||\n\t     test -z \"$non_pic_object\" ||\n\t     test none = \"$pic_object\" &&\n\t     test none = \"$non_pic_object\"; then\n\t    func_fatal_error \"cannot find name of object for '$arg'\"\n\t  fi\n\n\t  # Extract subdirectory from the argument.\n\t  func_dirname \"$arg\" \"/\" \"\"\n\t  xdir=$func_dirname_result\n\n\t  test none = \"$pic_object\" || {\n\t    # Prepend the subdirectory the object is found in.\n\t    pic_object=$xdir$pic_object\n\n\t    if test dlfiles = \"$prev\"; then\n\t      if test yes = \"$build_libtool_libs\" && test yes = \"$dlopen_support\"; then\n\t\tfunc_append dlfiles \" $pic_object\"\n\t\tprev=\n\t\tcontinue\n\t      else\n\t\t# If libtool objects are unsupported, then we need to preload.\n\t\tprev=dlprefiles\n\t      fi\n\t    fi\n\n\t    # CHECK ME:  I think I busted this.  -Ossama\n\t    if test dlprefiles = \"$prev\"; then\n\t      # Preload the old-style object.\n\t      func_append dlprefiles \" $pic_object\"\n\t      prev=\n\t    fi\n\n\t    # A PIC object.\n\t    func_append libobjs \" $pic_object\"\n\t    arg=$pic_object\n\t  }\n\n\t  # Non-PIC object.\n\t  if test none != \"$non_pic_object\"; then\n\t    # Prepend the subdirectory the object is found in.\n\t    non_pic_object=$xdir$non_pic_object\n\n\t    # A standard non-PIC object\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t    if test -z \"$pic_object\" || test none = \"$pic_object\"; then\n\t      arg=$non_pic_object\n\t    fi\n\t  else\n\t    # If the PIC object exists, use it instead.\n\t    # $xdir was prepended to $pic_object above.\n\t    non_pic_object=$pic_object\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  fi\n\telse\n\t  # Only an error if not doing a dry-run.\n\t  if $opt_dry_run; then\n\t    # Extract subdirectory from the argument.\n\t    func_dirname \"$arg\" \"/\" \"\"\n\t    xdir=$func_dirname_result\n\n\t    func_lo2o \"$arg\"\n\t    pic_object=$xdir$objdir/$func_lo2o_result\n\t    non_pic_object=$xdir$func_lo2o_result\n\t    func_append libobjs \" $pic_object\"\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  else\n\t    func_fatal_error \"'$arg' is not a valid libtool object\"\n\t  fi\n\tfi\n\t;;\n\n      *.$libext)\n\t# An archive.\n\tfunc_append deplibs \" $arg\"\n\tfunc_append old_deplibs \" $arg\"\n\tcontinue\n\t;;\n\n      *.la)\n\t# A libtool-controlled library.\n\n\tfunc_resolve_sysroot \"$arg\"\n\tif test dlfiles = \"$prev\"; then\n\t  # This library was specified with -dlopen.\n\t  func_append dlfiles \" $func_resolve_sysroot_result\"\n\t  prev=\n\telif test dlprefiles = \"$prev\"; then\n\t  # The library was specified with -dlpreopen.\n\t  func_append dlprefiles \" $func_resolve_sysroot_result\"\n\t  prev=\n\telse\n\t  func_append deplibs \" $func_resolve_sysroot_result\"\n\tfi\n\tcontinue\n\t;;\n\n      # Some other compiler argument.\n      *)\n\t# Unknown arguments in both finalize_command and compile_command need\n\t# to be aesthetically quoted because they are evaled later.\n\tfunc_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n      esac # arg\n\n      # Now actually substitute the argument into the commands.\n      if test -n \"$arg\"; then\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n      fi\n    done # argument parsing loop\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the '$prevarg' option requires an argument\"\n\n    if test yes = \"$export_dynamic\" && test -n \"$export_dynamic_flag_spec\"; then\n      eval arg=\\\"$export_dynamic_flag_spec\\\"\n      func_append compile_command \" $arg\"\n      func_append finalize_command \" $arg\"\n    fi\n\n    oldlibs=\n    # calculate the name of the file, without its directory\n    func_basename \"$output\"\n    outputname=$func_basename_result\n    libobjs_save=$libobjs\n\n    if test -n \"$shlibpath_var\"; then\n      # get the directories listed in $shlibpath_var\n      eval shlib_search_path=\\`\\$ECHO \\\"\\$$shlibpath_var\\\" \\| \\$SED \\'s/:/ /g\\'\\`\n    else\n      shlib_search_path=\n    fi\n    eval sys_lib_search_path=\\\"$sys_lib_search_path_spec\\\"\n    eval sys_lib_dlsearch_path=\\\"$sys_lib_dlsearch_path_spec\\\"\n\n    # Definition is injected by LT_CONFIG during libtool generation.\n    func_munge_path_list sys_lib_dlsearch_path \"$LT_SYS_LIBRARY_PATH\"\n\n    func_dirname \"$output\" \"/\" \"\"\n    output_objdir=$func_dirname_result$objdir\n    func_to_tool_file \"$output_objdir/\"\n    tool_output_objdir=$func_to_tool_file_result\n    # Create the object directory.\n    func_mkdir_p \"$output_objdir\"\n\n    # Determine the type of output\n    case $output in\n    \"\")\n      func_fatal_help \"you must specify an output file\"\n      ;;\n    *.$libext) linkmode=oldlib ;;\n    *.lo | *.$objext) linkmode=obj ;;\n    *.la) linkmode=lib ;;\n    *) linkmode=prog ;; # Anything else should be a program.\n    esac\n\n    specialdeplibs=\n\n    libs=\n    # Find all interdependent deplibs by searching for libraries\n    # that are linked more than once (e.g. -la -lb -la)\n    for deplib in $deplibs; do\n      if $opt_preserve_dup_deps; then\n\tcase \"$libs \" in\n\t*\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\tesac\n      fi\n      func_append libs \" $deplib\"\n    done\n\n    if test lib = \"$linkmode\"; then\n      libs=\"$predeps $libs $compiler_lib_search_path $postdeps\"\n\n      # Compute libraries that are listed more than once in $predeps\n      # $postdeps and mark them as special (i.e., whose duplicates are\n      # not to be eliminated).\n      pre_post_deps=\n      if $opt_duplicate_compiler_generated_deps; then\n\tfor pre_post_dep in $predeps $postdeps; do\n\t  case \"$pre_post_deps \" in\n\t  *\" $pre_post_dep \"*) func_append specialdeplibs \" $pre_post_deps\" ;;\n\t  esac\n\t  func_append pre_post_deps \" $pre_post_dep\"\n\tdone\n      fi\n      pre_post_deps=\n    fi\n\n    deplibs=\n    newdependency_libs=\n    newlib_search_path=\n    need_relink=no # whether we're linking any uninstalled libtool libraries\n    notinst_deplibs= # not-installed libtool libraries\n    notinst_path= # paths that contain not-installed libtool libraries\n\n    case $linkmode in\n    lib)\n\tpasses=\"conv dlpreopen link\"\n\tfor file in $dlfiles $dlprefiles; do\n\t  case $file in\n\t  *.la) ;;\n\t  *)\n\t    func_fatal_help \"libraries can '-dlopen' only libtool libraries: $file\"\n\t    ;;\n\t  esac\n\tdone\n\t;;\n    prog)\n\tcompile_deplibs=\n\tfinalize_deplibs=\n\talldeplibs=false\n\tnewdlfiles=\n\tnewdlprefiles=\n\tpasses=\"conv scan dlopen dlpreopen link\"\n\t;;\n    *)  passes=\"conv\"\n\t;;\n    esac\n\n    for pass in $passes; do\n      # The preopen pass in lib mode reverses $deplibs; put it back here\n      # so that -L comes before libs that need it for instance...\n      if test lib,link = \"$linkmode,$pass\"; then\n\t## FIXME: Find the place where the list is rebuilt in the wrong\n\t##        order, and fix it there properly\n        tmp_deplibs=\n\tfor deplib in $deplibs; do\n\t  tmp_deplibs=\"$deplib $tmp_deplibs\"\n\tdone\n\tdeplibs=$tmp_deplibs\n      fi\n\n      if test lib,link = \"$linkmode,$pass\" ||\n\t test prog,scan = \"$linkmode,$pass\"; then\n\tlibs=$deplibs\n\tdeplibs=\n      fi\n      if test prog = \"$linkmode\"; then\n\tcase $pass in\n\tdlopen) libs=$dlfiles ;;\n\tdlpreopen) libs=$dlprefiles ;;\n\tlink) libs=\"$deplibs %DEPLIBS% $dependency_libs\" ;;\n\tesac\n      fi\n      if test lib,dlpreopen = \"$linkmode,$pass\"; then\n\t# Collect and forward deplibs of preopened libtool libs\n\tfor lib in $dlprefiles; do\n\t  # Ignore non-libtool-libs\n\t  dependency_libs=\n\t  func_resolve_sysroot \"$lib\"\n\t  case $lib in\n\t  *.la)\tfunc_source \"$func_resolve_sysroot_result\" ;;\n\t  esac\n\n\t  # Collect preopened libtool deplibs, except any this library\n\t  # has declared as weak libs\n\t  for deplib in $dependency_libs; do\n\t    func_basename \"$deplib\"\n            deplib_base=$func_basename_result\n\t    case \" $weak_libs \" in\n\t    *\" $deplib_base \"*) ;;\n\t    *) func_append deplibs \" $deplib\" ;;\n\t    esac\n\t  done\n\tdone\n\tlibs=$dlprefiles\n      fi\n      if test dlopen = \"$pass\"; then\n\t# Collect dlpreopened libraries\n\tsave_deplibs=$deplibs\n\tdeplibs=\n      fi\n\n      for deplib in $libs; do\n\tlib=\n\tfound=false\n\tcase $deplib in\n\t-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \\\n        |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)\n\t  if test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    func_append compiler_flags \" $deplib\"\n\t    if test lib = \"$linkmode\"; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) func_append new_inherited_linker_flags \" $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-l*)\n\t  if test lib != \"$linkmode\" && test prog != \"$linkmode\"; then\n\t    func_warning \"'-l' is ignored for archives/objects\"\n\t    continue\n\t  fi\n\t  func_stripname '-l' '' \"$deplib\"\n\t  name=$func_stripname_result\n\t  if test lib = \"$linkmode\"; then\n\t    searchdirs=\"$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path\"\n\t  else\n\t    searchdirs=\"$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path\"\n\t  fi\n\t  for searchdir in $searchdirs; do\n\t    for search_ext in .la $std_shrext .so .a; do\n\t      # Search the libtool library\n\t      lib=$searchdir/lib$name$search_ext\n\t      if test -f \"$lib\"; then\n\t\tif test .la = \"$search_ext\"; then\n\t\t  found=:\n\t\telse\n\t\t  found=false\n\t\tfi\n\t\tbreak 2\n\t      fi\n\t    done\n\t  done\n\t  if $found; then\n\t    # deplib is a libtool library\n\t    # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,\n\t    # We need to do some special things here, and not later.\n\t    if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t      case \" $predeps $postdeps \" in\n\t      *\" $deplib \"*)\n\t\tif func_lalib_p \"$lib\"; then\n\t\t  library_names=\n\t\t  old_library=\n\t\t  func_source \"$lib\"\n\t\t  for l in $old_library $library_names; do\n\t\t    ll=$l\n\t\t  done\n\t\t  if test \"X$ll\" = \"X$old_library\"; then # only static version available\n\t\t    found=false\n\t\t    func_dirname \"$lib\" \"\" \".\"\n\t\t    ladir=$func_dirname_result\n\t\t    lib=$ladir/$old_library\n\t\t    if test prog,link = \"$linkmode,$pass\"; then\n\t\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t\t    else\n\t\t      deplibs=\"$deplib $deplibs\"\n\t\t      test lib = \"$linkmode\" && newdependency_libs=\"$deplib $newdependency_libs\"\n\t\t    fi\n\t\t    continue\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *) ;;\n\t      esac\n\t    fi\n\t  else\n\t    # deplib doesn't seem to be a libtool library\n\t    if test prog,link = \"$linkmode,$pass\"; then\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      deplibs=\"$deplib $deplibs\"\n\t      test lib = \"$linkmode\" && newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    continue\n\t  fi\n\t  ;; # -l\n\t*.ltframework)\n\t  if test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$deplib $deplibs\"\n\t    if test lib = \"$linkmode\"; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) func_append new_inherited_linker_flags \" $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-L*)\n\t  case $linkmode in\n\t  lib)\n\t    deplibs=\"$deplib $deplibs\"\n\t    test conv = \"$pass\" && continue\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    func_stripname '-L' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t    ;;\n\t  prog)\n\t    if test conv = \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t      continue\n\t    fi\n\t    if test scan = \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    func_stripname '-L' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t    ;;\n\t  *)\n\t    func_warning \"'-L' is ignored for archives/objects\"\n\t    ;;\n\t  esac # linkmode\n\t  continue\n\t  ;; # -L\n\t-R*)\n\t  if test link = \"$pass\"; then\n\t    func_stripname '-R' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    dir=$func_resolve_sysroot_result\n\t    # Make sure the xrpath contains only unique directories.\n\t    case \"$xrpath \" in\n\t    *\" $dir \"*) ;;\n\t    *) func_append xrpath \" $dir\" ;;\n\t    esac\n\t  fi\n\t  deplibs=\"$deplib $deplibs\"\n\t  continue\n\t  ;;\n\t*.la)\n\t  func_resolve_sysroot \"$deplib\"\n\t  lib=$func_resolve_sysroot_result\n\t  ;;\n\t*.$libext)\n\t  if test conv = \"$pass\"; then\n\t    deplibs=\"$deplib $deplibs\"\n\t    continue\n\t  fi\n\t  case $linkmode in\n\t  lib)\n\t    # Linking convenience modules into shared libraries is allowed,\n\t    # but linking other static libraries is non-portable.\n\t    case \" $dlpreconveniencelibs \" in\n\t    *\" $deplib \"*) ;;\n\t    *)\n\t      valid_a_lib=false\n\t      case $deplibs_check_method in\n\t\tmatch_pattern*)\n\t\t  set dummy $deplibs_check_method; shift\n\t\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t\t  if eval \"\\$ECHO \\\"$deplib\\\"\" 2>/dev/null | $SED 10q \\\n\t\t    | $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t    valid_a_lib=:\n\t\t  fi\n\t\t;;\n\t\tpass_all)\n\t\t  valid_a_lib=:\n\t\t;;\n\t      esac\n\t      if $valid_a_lib; then\n\t\techo\n\t\t$ECHO \"*** Warning: Linking the shared library $output against the\"\n\t\t$ECHO \"*** static library $deplib is not portable!\"\n\t\tdeplibs=\"$deplib $deplibs\"\n\t      else\n\t\techo\n\t\t$ECHO \"*** Warning: Trying to link with static lib archive $deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because the file extensions .$libext of this argument makes me believe\"\n\t\techo \"*** that it is just a static archive that I should not use here.\"\n\t      fi\n\t      ;;\n\t    esac\n\t    continue\n\t    ;;\n\t  prog)\n\t    if test link != \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    continue\n\t    ;;\n\t  esac # linkmode\n\t  ;; # *.$libext\n\t*.lo | *.$objext)\n\t  if test conv = \"$pass\"; then\n\t    deplibs=\"$deplib $deplibs\"\n\t  elif test prog = \"$linkmode\"; then\n\t    if test dlpreopen = \"$pass\" || test yes != \"$dlopen_support\" || test no = \"$build_libtool_libs\"; then\n\t      # If there is no dlopen support or we're linking statically,\n\t      # we need to preload.\n\t      func_append newdlprefiles \" $deplib\"\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      func_append newdlfiles \" $deplib\"\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t%DEPLIBS%)\n\t  alldeplibs=:\n\t  continue\n\t  ;;\n\tesac # case $deplib\n\n\t$found || test -f \"$lib\" \\\n\t  || func_fatal_error \"cannot find the library '$lib' or unhandled argument '$deplib'\"\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$lib\" \\\n\t  || func_fatal_error \"'$lib' is not a valid libtool archive\"\n\n\tfunc_dirname \"$lib\" \"\" \".\"\n\tladir=$func_dirname_result\n\n\tdlname=\n\tdlopen=\n\tdlpreopen=\n\tlibdir=\n\tlibrary_names=\n\told_library=\n\tinherited_linker_flags=\n\t# If the library was installed with an old release of libtool,\n\t# it will not redefine variables installed, or shouldnotlink\n\tinstalled=yes\n\tshouldnotlink=no\n\tavoidtemprpath=\n\n\n\t# Read the .la file\n\tfunc_source \"$lib\"\n\n\t# Convert \"-framework foo\" to \"foo.ltframework\"\n\tif test -n \"$inherited_linker_flags\"; then\n\t  tmp_inherited_linker_flags=`$ECHO \"$inherited_linker_flags\" | $SED 's/-framework \\([^ $]*\\)/\\1.ltframework/g'`\n\t  for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do\n\t    case \" $new_inherited_linker_flags \" in\n\t      *\" $tmp_inherited_linker_flag \"*) ;;\n\t      *) func_append new_inherited_linker_flags \" $tmp_inherited_linker_flag\";;\n\t    esac\n\t  done\n\tfi\n\tdependency_libs=`$ECHO \" $dependency_libs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tif test lib,link = \"$linkmode,$pass\" ||\n\t   test prog,scan = \"$linkmode,$pass\" ||\n\t   { test prog != \"$linkmode\" && test lib != \"$linkmode\"; }; then\n\t  test -n \"$dlopen\" && func_append dlfiles \" $dlopen\"\n\t  test -n \"$dlpreopen\" && func_append dlprefiles \" $dlpreopen\"\n\tfi\n\n\tif test conv = \"$pass\"; then\n\t  # Only check for convenience libraries\n\t  deplibs=\"$lib $deplibs\"\n\t  if test -z \"$libdir\"; then\n\t    if test -z \"$old_library\"; then\n\t      func_fatal_error \"cannot find name of link library for '$lib'\"\n\t    fi\n\t    # It is a libtool convenience library, so add in its objects.\n\t    func_append convenience \" $ladir/$objdir/$old_library\"\n\t    func_append old_convenience \" $ladir/$objdir/$old_library\"\n\t  elif test prog != \"$linkmode\" && test lib != \"$linkmode\"; then\n\t    func_fatal_error \"'$lib' is not a convenience library\"\n\t  fi\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    deplibs=\"$deplib $deplibs\"\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $deplib\"\n\t  done\n\t  continue\n\tfi # $pass = conv\n\n\n\t# Get the name of the library we link against.\n\tlinklib=\n\tif test -n \"$old_library\" &&\n\t   { test yes = \"$prefer_static_libs\" ||\n\t     test built,no = \"$prefer_static_libs,$installed\"; }; then\n\t  linklib=$old_library\n\telse\n\t  for l in $old_library $library_names; do\n\t    linklib=$l\n\t  done\n\tfi\n\tif test -z \"$linklib\"; then\n\t  func_fatal_error \"cannot find name of link library for '$lib'\"\n\tfi\n\n\t# This library was specified with -dlopen.\n\tif test dlopen = \"$pass\"; then\n\t  test -z \"$libdir\" \\\n\t    && func_fatal_error \"cannot -dlopen a convenience library: '$lib'\"\n\t  if test -z \"$dlname\" ||\n\t     test yes != \"$dlopen_support\" ||\n\t     test no = \"$build_libtool_libs\"\n\t  then\n\t    # If there is no dlname, no dlopen support or we're linking\n\t    # statically, we need to preload.  We also need to preload any\n\t    # dependent libraries so libltdl's deplib preloader doesn't\n\t    # bomb out in the load deplibs phase.\n\t    func_append dlprefiles \" $lib $dependency_libs\"\n\t  else\n\t    func_append newdlfiles \" $lib\"\n\t  fi\n\t  continue\n\tfi # $pass = dlopen\n\n\t# We need an absolute path.\n\tcase $ladir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs_ladir=$ladir ;;\n\t*)\n\t  abs_ladir=`cd \"$ladir\" && pwd`\n\t  if test -z \"$abs_ladir\"; then\n\t    func_warning \"cannot determine absolute directory name of '$ladir'\"\n\t    func_warning \"passing it literally to the linker, although it might fail\"\n\t    abs_ladir=$ladir\n\t  fi\n\t  ;;\n\tesac\n\tfunc_basename \"$lib\"\n\tlaname=$func_basename_result\n\n\t# Find the relevant object directory and library name.\n\tif test yes = \"$installed\"; then\n\t  if test ! -f \"$lt_sysroot$libdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    func_warning \"library '$lib' was moved.\"\n\t    dir=$ladir\n\t    absdir=$abs_ladir\n\t    libdir=$abs_ladir\n\t  else\n\t    dir=$lt_sysroot$libdir\n\t    absdir=$lt_sysroot$libdir\n\t  fi\n\t  test yes = \"$hardcode_automatic\" && avoidtemprpath=yes\n\telse\n\t  if test ! -f \"$ladir/$objdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    dir=$ladir\n\t    absdir=$abs_ladir\n\t    # Remove this search path later\n\t    func_append notinst_path \" $abs_ladir\"\n\t  else\n\t    dir=$ladir/$objdir\n\t    absdir=$abs_ladir/$objdir\n\t    # Remove this search path later\n\t    func_append notinst_path \" $abs_ladir\"\n\t  fi\n\tfi # $installed = yes\n\tfunc_stripname 'lib' '.la' \"$laname\"\n\tname=$func_stripname_result\n\n\t# This library was specified with -dlpreopen.\n\tif test dlpreopen = \"$pass\"; then\n\t  if test -z \"$libdir\" && test prog = \"$linkmode\"; then\n\t    func_fatal_error \"only libraries may -dlpreopen a convenience library: '$lib'\"\n\t  fi\n\t  case $host in\n\t    # special handling for platforms with PE-DLLs.\n\t    *cygwin* | *mingw* | *cegcc* )\n\t      # Linker will automatically link against shared library if both\n\t      # static and shared are present.  Therefore, ensure we extract\n\t      # symbols from the import library if a shared library is present\n\t      # (otherwise, the dlopen module name will be incorrect).  We do\n\t      # this by putting the import library name into $newdlprefiles.\n\t      # We recover the dlopen module name by 'saving' the la file\n\t      # name in a special purpose variable, and (later) extracting the\n\t      # dlname from the la file.\n\t      if test -n \"$dlname\"; then\n\t        func_tr_sh \"$dir/$linklib\"\n\t        eval \"libfile_$func_tr_sh_result=\\$abs_ladir/\\$laname\"\n\t        func_append newdlprefiles \" $dir/$linklib\"\n\t      else\n\t        func_append newdlprefiles \" $dir/$old_library\"\n\t        # Keep a list of preopened convenience libraries to check\n\t        # that they are being used correctly in the link pass.\n\t        test -z \"$libdir\" && \\\n\t          func_append dlpreconveniencelibs \" $dir/$old_library\"\n\t      fi\n\t    ;;\n\t    * )\n\t      # Prefer using a static library (so that no silly _DYNAMIC symbols\n\t      # are required to link).\n\t      if test -n \"$old_library\"; then\n\t        func_append newdlprefiles \" $dir/$old_library\"\n\t        # Keep a list of preopened convenience libraries to check\n\t        # that they are being used correctly in the link pass.\n\t        test -z \"$libdir\" && \\\n\t          func_append dlpreconveniencelibs \" $dir/$old_library\"\n\t      # Otherwise, use the dlname, so that lt_dlopen finds it.\n\t      elif test -n \"$dlname\"; then\n\t        func_append newdlprefiles \" $dir/$dlname\"\n\t      else\n\t        func_append newdlprefiles \" $dir/$linklib\"\n\t      fi\n\t    ;;\n\t  esac\n\tfi # $pass = dlpreopen\n\n\tif test -z \"$libdir\"; then\n\t  # Link the convenience library\n\t  if test lib = \"$linkmode\"; then\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t  elif test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$dir/$old_library $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$old_library $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$lib $deplibs\" # used for prog,scan pass\n\t  fi\n\t  continue\n\tfi\n\n\n\tif test prog = \"$linkmode\" && test link != \"$pass\"; then\n\t  func_append newlib_search_path \" $ladir\"\n\t  deplibs=\"$lib $deplibs\"\n\n\t  linkalldeplibs=false\n\t  if test no != \"$link_all_deplibs\" || test -z \"$library_names\" ||\n\t     test no = \"$build_libtool_libs\"; then\n\t    linkalldeplibs=:\n\t  fi\n\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    case $deplib in\n\t    -L*) func_stripname '-L' '' \"$deplib\"\n\t         func_resolve_sysroot \"$func_stripname_result\"\n\t         func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t\t ;;\n\t    esac\n\t    # Need to link against all dependency_libs?\n\t    if $linkalldeplibs; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      # Need to hardcode shared library paths\n\t      # or/and link against static libraries\n\t      newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $deplib\"\n\t  done # for deplib\n\t  continue\n\tfi # $linkmode = prog...\n\n\tif test prog,link = \"$linkmode,$pass\"; then\n\t  if test -n \"$library_names\" &&\n\t     { { test no = \"$prefer_static_libs\" ||\n\t         test built,yes = \"$prefer_static_libs,$installed\"; } ||\n\t       test -z \"$old_library\"; }; then\n\t    # We need to hardcode the library path\n\t    if test -n \"$shlibpath_var\" && test -z \"$avoidtemprpath\"; then\n\t      # Make sure the rpath contains only unique directories.\n\t      case $temp_rpath: in\n\t      *\"$absdir:\"*) ;;\n\t      *) func_append temp_rpath \"$absdir:\" ;;\n\t      esac\n\t    fi\n\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) func_append compile_rpath \" $absdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append finalize_rpath \" $libdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t  fi # $linkmode,$pass = prog,link...\n\n\t  if $alldeplibs &&\n\t     { test pass_all = \"$deplibs_check_method\" ||\n\t       { test yes = \"$build_libtool_libs\" &&\n\t\t test -n \"$library_names\"; }; }; then\n\t    # We only need to search for static libraries\n\t    continue\n\t  fi\n\tfi\n\n\tlink_static=no # Whether the deplib will be linked statically\n\tuse_static_libs=$prefer_static_libs\n\tif test built = \"$use_static_libs\" && test yes = \"$installed\"; then\n\t  use_static_libs=no\n\tfi\n\tif test -n \"$library_names\" &&\n\t   { test no = \"$use_static_libs\" || test -z \"$old_library\"; }; then\n\t  case $host in\n\t  *cygwin* | *mingw* | *cegcc* | *os2*)\n\t      # No point in relinking DLLs because paths are not encoded\n\t      func_append notinst_deplibs \" $lib\"\n\t      need_relink=no\n\t    ;;\n\t  *)\n\t    if test no = \"$installed\"; then\n\t      func_append notinst_deplibs \" $lib\"\n\t      need_relink=yes\n\t    fi\n\t    ;;\n\t  esac\n\t  # This is a shared library\n\n\t  # Warn about portability, can't link against -module's on some\n\t  # systems (darwin).  Don't bleat about dlopened modules though!\n\t  dlopenmodule=\n\t  for dlpremoduletest in $dlprefiles; do\n\t    if test \"X$dlpremoduletest\" = \"X$lib\"; then\n\t      dlopenmodule=$dlpremoduletest\n\t      break\n\t    fi\n\t  done\n\t  if test -z \"$dlopenmodule\" && test yes = \"$shouldnotlink\" && test link = \"$pass\"; then\n\t    echo\n\t    if test prog = \"$linkmode\"; then\n\t      $ECHO \"*** Warning: Linking the executable $output against the loadable module\"\n\t    else\n\t      $ECHO \"*** Warning: Linking the shared library $output against the loadable module\"\n\t    fi\n\t    $ECHO \"*** $linklib is not portable!\"\n\t  fi\n\t  if test lib = \"$linkmode\" &&\n\t     test yes = \"$hardcode_into_libs\"; then\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) func_append compile_rpath \" $absdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append finalize_rpath \" $libdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t  fi\n\n\t  if test -n \"$old_archive_from_expsyms_cmds\"; then\n\t    # figure out the soname\n\t    set dummy $library_names\n\t    shift\n\t    realname=$1\n\t    shift\n\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t    # use dlname if we got it. it's perfectly good, no?\n\t    if test -n \"$dlname\"; then\n\t      soname=$dlname\n\t    elif test -n \"$soname_spec\"; then\n\t      # bleh windows\n\t      case $host in\n\t      *cygwin* | mingw* | *cegcc* | *os2*)\n\t        func_arith $current - $age\n\t\tmajor=$func_arith_result\n\t\tversuffix=-$major\n\t\t;;\n\t      esac\n\t      eval soname=\\\"$soname_spec\\\"\n\t    else\n\t      soname=$realname\n\t    fi\n\n\t    # Make a new name for the extract_expsyms_cmds to use\n\t    soroot=$soname\n\t    func_basename \"$soroot\"\n\t    soname=$func_basename_result\n\t    func_stripname 'lib' '.dll' \"$soname\"\n\t    newlib=libimp-$func_stripname_result.a\n\n\t    # If the library has no export list, then create one now\n\t    if test -f \"$output_objdir/$soname-def\"; then :\n\t    else\n\t      func_verbose \"extracting exported symbol list from '$soname'\"\n\t      func_execute_cmds \"$extract_expsyms_cmds\" 'exit $?'\n\t    fi\n\n\t    # Create $newlib\n\t    if test -f \"$output_objdir/$newlib\"; then :; else\n\t      func_verbose \"generating import library for '$soname'\"\n\t      func_execute_cmds \"$old_archive_from_expsyms_cmds\" 'exit $?'\n\t    fi\n\t    # make sure the library variables are pointing to the new library\n\t    dir=$output_objdir\n\t    linklib=$newlib\n\t  fi # test -n \"$old_archive_from_expsyms_cmds\"\n\n\t  if test prog = \"$linkmode\" || test relink != \"$opt_mode\"; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    lib_linked=yes\n\t    case $hardcode_action in\n\t    immediate | unsupported)\n\t      if test no = \"$hardcode_direct\"; then\n\t\tadd=$dir/$linklib\n\t\tcase $host in\n\t\t  *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;;\n\t\t  *-*-sysv4*uw2*) add_dir=-L$dir ;;\n\t\t  *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \\\n\t\t    *-*-unixware7*) add_dir=-L$dir ;;\n\t\t  *-*-darwin* )\n\t\t    # if the lib is a (non-dlopened) module then we cannot\n\t\t    # link against it, someone is ignoring the earlier warnings\n\t\t    if /usr/bin/file -L $add 2> /dev/null |\n\t\t\t $GREP \": [^:]* bundle\" >/dev/null; then\n\t\t      if test \"X$dlopenmodule\" != \"X$lib\"; then\n\t\t\t$ECHO \"*** Warning: lib $linklib is a module, not a shared library\"\n\t\t\tif test -z \"$old_library\"; then\n\t\t\t  echo\n\t\t\t  echo \"*** And there doesn't seem to be a static archive available\"\n\t\t\t  echo \"*** The link will probably fail, sorry\"\n\t\t\telse\n\t\t\t  add=$dir/$old_library\n\t\t\tfi\n\t\t      elif test -n \"$old_library\"; then\n\t\t\tadd=$dir/$old_library\n\t\t      fi\n\t\t    fi\n\t\tesac\n\t      elif test no = \"$hardcode_minus_L\"; then\n\t\tcase $host in\n\t\t*-*-sunos*) add_shlibpath=$dir ;;\n\t\tesac\n\t\tadd_dir=-L$dir\n\t\tadd=-l$name\n\t      elif test no = \"$hardcode_shlibpath_var\"; then\n\t\tadd_shlibpath=$dir\n\t\tadd=-l$name\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    relink)\n\t      if test yes = \"$hardcode_direct\" &&\n\t         test no = \"$hardcode_direct_absolute\"; then\n\t\tadd=$dir/$linklib\n\t      elif test yes = \"$hardcode_minus_L\"; then\n\t\tadd_dir=-L$absdir\n\t\t# Try looking first in the location we're being installed to.\n\t\tif test -n \"$inst_prefix_dir\"; then\n\t\t  case $libdir in\n\t\t    [\\\\/]*)\n\t\t      func_append add_dir \" -L$inst_prefix_dir$libdir\"\n\t\t      ;;\n\t\t  esac\n\t\tfi\n\t\tadd=-l$name\n\t      elif test yes = \"$hardcode_shlibpath_var\"; then\n\t\tadd_shlibpath=$dir\n\t\tadd=-l$name\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    *) lib_linked=no ;;\n\t    esac\n\n\t    if test yes != \"$lib_linked\"; then\n\t      func_fatal_configuration \"unsupported hardcode properties\"\n\t    fi\n\n\t    if test -n \"$add_shlibpath\"; then\n\t      case :$compile_shlibpath: in\n\t      *\":$add_shlibpath:\"*) ;;\n\t      *) func_append compile_shlibpath \"$add_shlibpath:\" ;;\n\t      esac\n\t    fi\n\t    if test prog = \"$linkmode\"; then\n\t      test -n \"$add_dir\" && compile_deplibs=\"$add_dir $compile_deplibs\"\n\t      test -n \"$add\" && compile_deplibs=\"$add $compile_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t      if test yes != \"$hardcode_direct\" &&\n\t\t test yes != \"$hardcode_minus_L\" &&\n\t\t test yes = \"$hardcode_shlibpath_var\"; then\n\t\tcase :$finalize_shlibpath: in\n\t\t*\":$libdir:\"*) ;;\n\t\t*) func_append finalize_shlibpath \"$libdir:\" ;;\n\t\tesac\n\t      fi\n\t    fi\n\t  fi\n\n\t  if test prog = \"$linkmode\" || test relink = \"$opt_mode\"; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    # Finalize command for both is simple: just hardcode it.\n\t    if test yes = \"$hardcode_direct\" &&\n\t       test no = \"$hardcode_direct_absolute\"; then\n\t      add=$libdir/$linklib\n\t    elif test yes = \"$hardcode_minus_L\"; then\n\t      add_dir=-L$libdir\n\t      add=-l$name\n\t    elif test yes = \"$hardcode_shlibpath_var\"; then\n\t      case :$finalize_shlibpath: in\n\t      *\":$libdir:\"*) ;;\n\t      *) func_append finalize_shlibpath \"$libdir:\" ;;\n\t      esac\n\t      add=-l$name\n\t    elif test yes = \"$hardcode_automatic\"; then\n\t      if test -n \"$inst_prefix_dir\" &&\n\t\t test -f \"$inst_prefix_dir$libdir/$linklib\"; then\n\t\tadd=$inst_prefix_dir$libdir/$linklib\n\t      else\n\t\tadd=$libdir/$linklib\n\t      fi\n\t    else\n\t      # We cannot seem to hardcode it, guess we'll fake it.\n\t      add_dir=-L$libdir\n\t      # Try looking first in the location we're being installed to.\n\t      if test -n \"$inst_prefix_dir\"; then\n\t\tcase $libdir in\n\t\t  [\\\\/]*)\n\t\t    func_append add_dir \" -L$inst_prefix_dir$libdir\"\n\t\t    ;;\n\t\tesac\n\t      fi\n\t      add=-l$name\n\t    fi\n\n\t    if test prog = \"$linkmode\"; then\n\t      test -n \"$add_dir\" && finalize_deplibs=\"$add_dir $finalize_deplibs\"\n\t      test -n \"$add\" && finalize_deplibs=\"$add $finalize_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t    fi\n\t  fi\n\telif test prog = \"$linkmode\"; then\n\t  # Here we assume that one of hardcode_direct or hardcode_minus_L\n\t  # is not unsupported.  This is valid on all known static and\n\t  # shared platforms.\n\t  if test unsupported != \"$hardcode_direct\"; then\n\t    test -n \"$old_library\" && linklib=$old_library\n\t    compile_deplibs=\"$dir/$linklib $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$linklib $finalize_deplibs\"\n\t  else\n\t    compile_deplibs=\"-l$name -L$dir $compile_deplibs\"\n\t    finalize_deplibs=\"-l$name -L$dir $finalize_deplibs\"\n\t  fi\n\telif test yes = \"$build_libtool_libs\"; then\n\t  # Not a shared library\n\t  if test pass_all != \"$deplibs_check_method\"; then\n\t    # We're trying link a shared library against a static one\n\t    # but the system doesn't support it.\n\n\t    # Just print a warning and add the library to dependency_libs so\n\t    # that the program can be linked against the static library.\n\t    echo\n\t    $ECHO \"*** Warning: This system cannot link to static lib archive $lib.\"\n\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t    echo \"*** shared version of the library, which you do not appear to have.\"\n\t    if test yes = \"$module\"; then\n\t      echo \"*** But as you try to build a module library, libtool will still create \"\n\t      echo \"*** a static module, that should work as long as the dlopening application\"\n\t      echo \"*** is linked with the -dlopen flag to resolve symbols at runtime.\"\n\t      if test -z \"$global_symbol_pipe\"; then\n\t\techo\n\t\techo \"*** However, this would only work if libtool was able to extract symbol\"\n\t\techo \"*** lists from a program, using 'nm' or equivalent, but libtool could\"\n\t\techo \"*** not find such a program.  So, this module is probably useless.\"\n\t\techo \"*** 'nm' from GNU binutils and a full rebuild may help.\"\n\t      fi\n\t      if test no = \"$build_old_libs\"; then\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  else\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t    link_static=yes\n\t  fi\n\tfi # link shared/static library?\n\n\tif test lib = \"$linkmode\"; then\n\t  if test -n \"$dependency_libs\" &&\n\t     { test yes != \"$hardcode_into_libs\" ||\n\t       test yes = \"$build_old_libs\" ||\n\t       test yes = \"$link_static\"; }; then\n\t    # Extract -R from dependency_libs\n\t    temp_deplibs=\n\t    for libdir in $dependency_libs; do\n\t      case $libdir in\n\t      -R*) func_stripname '-R' '' \"$libdir\"\n\t           temp_xrpath=$func_stripname_result\n\t\t   case \" $xrpath \" in\n\t\t   *\" $temp_xrpath \"*) ;;\n\t\t   *) func_append xrpath \" $temp_xrpath\";;\n\t\t   esac;;\n\t      *) func_append temp_deplibs \" $libdir\";;\n\t      esac\n\t    done\n\t    dependency_libs=$temp_deplibs\n\t  fi\n\n\t  func_append newlib_search_path \" $absdir\"\n\t  # Link against this library\n\t  test no = \"$link_static\" && newdependency_libs=\"$abs_ladir/$laname $newdependency_libs\"\n\t  # ... and its dependency_libs\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    case $deplib in\n              -L*) func_stripname '-L' '' \"$deplib\"\n                   func_resolve_sysroot \"$func_stripname_result\";;\n              *) func_resolve_sysroot \"$deplib\" ;;\n            esac\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $func_resolve_sysroot_result \"*)\n                func_append specialdeplibs \" $func_resolve_sysroot_result\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $func_resolve_sysroot_result\"\n\t  done\n\n\t  if test no != \"$link_all_deplibs\"; then\n\t    # Add the search paths of all dependency libraries\n\t    for deplib in $dependency_libs; do\n\t      path=\n\t      case $deplib in\n\t      -L*) path=$deplib ;;\n\t      *.la)\n\t        func_resolve_sysroot \"$deplib\"\n\t        deplib=$func_resolve_sysroot_result\n\t        func_dirname \"$deplib\" \"\" \".\"\n\t\tdir=$func_dirname_result\n\t\t# We need an absolute path.\n\t\tcase $dir in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) absdir=$dir ;;\n\t\t*)\n\t\t  absdir=`cd \"$dir\" && pwd`\n\t\t  if test -z \"$absdir\"; then\n\t\t    func_warning \"cannot determine absolute directory name of '$dir'\"\n\t\t    absdir=$dir\n\t\t  fi\n\t\t  ;;\n\t\tesac\n\t\tif $GREP \"^installed=no\" $deplib > /dev/null; then\n\t\tcase $host in\n\t\t*-*-darwin*)\n\t\t  depdepl=\n\t\t  eval deplibrary_names=`$SED -n -e 's/^library_names=\\(.*\\)$/\\1/p' $deplib`\n\t\t  if test -n \"$deplibrary_names\"; then\n\t\t    for tmp in $deplibrary_names; do\n\t\t      depdepl=$tmp\n\t\t    done\n\t\t    if test -f \"$absdir/$objdir/$depdepl\"; then\n\t\t      depdepl=$absdir/$objdir/$depdepl\n\t\t      darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`\n                      if test -z \"$darwin_install_name\"; then\n                          darwin_install_name=`$OTOOL64 -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`\n                      fi\n\t\t      func_append compiler_flags \" $wl-dylib_file $wl$darwin_install_name:$depdepl\"\n\t\t      func_append linker_flags \" -dylib_file $darwin_install_name:$depdepl\"\n\t\t      path=\n\t\t    fi\n\t\t  fi\n\t\t  ;;\n\t\t*)\n\t\t  path=-L$absdir/$objdir\n\t\t  ;;\n\t\tesac\n\t\telse\n\t\t  eval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $deplib`\n\t\t  test -z \"$libdir\" && \\\n\t\t    func_fatal_error \"'$deplib' is not a valid libtool archive\"\n\t\t  test \"$absdir\" != \"$libdir\" && \\\n\t\t    func_warning \"'$deplib' seems to be moved\"\n\n\t\t  path=-L$absdir\n\t\tfi\n\t\t;;\n\t      esac\n\t      case \" $deplibs \" in\n\t      *\" $path \"*) ;;\n\t      *) deplibs=\"$path $deplibs\" ;;\n\t      esac\n\t    done\n\t  fi # link_all_deplibs != no\n\tfi # linkmode = lib\n      done # for deplib in $libs\n      if test link = \"$pass\"; then\n\tif test prog = \"$linkmode\"; then\n\t  compile_deplibs=\"$new_inherited_linker_flags $compile_deplibs\"\n\t  finalize_deplibs=\"$new_inherited_linker_flags $finalize_deplibs\"\n\telse\n\t  compiler_flags=\"$compiler_flags \"`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfi\n      fi\n      dependency_libs=$newdependency_libs\n      if test dlpreopen = \"$pass\"; then\n\t# Link the dlpreopened libraries before other libraries\n\tfor deplib in $save_deplibs; do\n\t  deplibs=\"$deplib $deplibs\"\n\tdone\n      fi\n      if test dlopen != \"$pass\"; then\n\ttest conv = \"$pass\" || {\n\t  # Make sure lib_search_path contains only unique directories.\n\t  lib_search_path=\n\t  for dir in $newlib_search_path; do\n\t    case \"$lib_search_path \" in\n\t    *\" $dir \"*) ;;\n\t    *) func_append lib_search_path \" $dir\" ;;\n\t    esac\n\t  done\n\t  newlib_search_path=\n\t}\n\n\tif test prog,link = \"$linkmode,$pass\"; then\n\t  vars=\"compile_deplibs finalize_deplibs\"\n\telse\n\t  vars=deplibs\n\tfi\n\tfor var in $vars dependency_libs; do\n\t  # Add libraries to $var in reverse order\n\t  eval tmp_libs=\\\"\\$$var\\\"\n\t  new_libs=\n\t  for deplib in $tmp_libs; do\n\t    # FIXME: Pedantically, this is the right thing to do, so\n\t    #        that some nasty dependency loop isn't accidentally\n\t    #        broken:\n\t    #new_libs=\"$deplib $new_libs\"\n\t    # Pragmatically, this seems to cause very few problems in\n\t    # practice:\n\t    case $deplib in\n\t    -L*) new_libs=\"$deplib $new_libs\" ;;\n\t    -R*) ;;\n\t    *)\n\t      # And here is the reason: when a library appears more\n\t      # than once as an explicit dependence of a library, or\n\t      # is implicitly linked in more than once by the\n\t      # compiler, it is considered special, and multiple\n\t      # occurrences thereof are not removed.  Compare this\n\t      # with having the same library being listed as a\n\t      # dependency of multiple other libraries: in this case,\n\t      # we know (pedantically, we assume) the library does not\n\t      # need to be listed more than once, so we keep only the\n\t      # last copy.  This is not always right, but it is rare\n\t      # enough that we require users that really mean to play\n\t      # such unportable linking tricks to link the library\n\t      # using -Wl,-lname, so that libtool does not consider it\n\t      # for duplicate removal.\n\t      case \" $specialdeplibs \" in\n\t      *\" $deplib \"*) new_libs=\"$deplib $new_libs\" ;;\n\t      *)\n\t\tcase \" $new_libs \" in\n\t\t*\" $deplib \"*) ;;\n\t\t*) new_libs=\"$deplib $new_libs\" ;;\n\t\tesac\n\t\t;;\n\t      esac\n\t      ;;\n\t    esac\n\t  done\n\t  tmp_libs=\n\t  for deplib in $new_libs; do\n\t    case $deplib in\n\t    -L*)\n\t      case \" $tmp_libs \" in\n\t      *\" $deplib \"*) ;;\n\t      *) func_append tmp_libs \" $deplib\" ;;\n\t      esac\n\t      ;;\n\t    *) func_append tmp_libs \" $deplib\" ;;\n\t    esac\n\t  done\n\t  eval $var=\\\"$tmp_libs\\\"\n\tdone # for var\n      fi\n\n      # Add Sun CC postdeps if required:\n      test CXX = \"$tagname\" && {\n        case $host_os in\n        linux*)\n          case `$CC -V 2>&1 | sed 5q` in\n          *Sun\\ C*) # Sun C++ 5.9\n            func_suncc_cstd_abi\n\n            if test no != \"$suncc_use_cstd_abi\"; then\n              func_append postdeps ' -library=Cstd -library=Crun'\n            fi\n            ;;\n          esac\n          ;;\n\n        solaris*)\n          func_cc_basename \"$CC\"\n          case $func_cc_basename_result in\n          CC* | sunCC*)\n            func_suncc_cstd_abi\n\n            if test no != \"$suncc_use_cstd_abi\"; then\n              func_append postdeps ' -library=Cstd -library=Crun'\n            fi\n            ;;\n          esac\n          ;;\n        esac\n      }\n\n      # Last step: remove runtime libs from dependency_libs\n      # (they stay in deplibs)\n      tmp_libs=\n      for i in $dependency_libs; do\n\tcase \" $predeps $postdeps $compiler_lib_search_path \" in\n\t*\" $i \"*)\n\t  i=\n\t  ;;\n\tesac\n\tif test -n \"$i\"; then\n\t  func_append tmp_libs \" $i\"\n\tfi\n      done\n      dependency_libs=$tmp_libs\n    done # for pass\n    if test prog = \"$linkmode\"; then\n      dlfiles=$newdlfiles\n    fi\n    if test prog = \"$linkmode\" || test lib = \"$linkmode\"; then\n      dlprefiles=$newdlprefiles\n    fi\n\n    case $linkmode in\n    oldlib)\n      if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n\tfunc_warning \"'-dlopen' is ignored for archives\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"'-l' and '-L' are ignored for archives\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"'-rpath' is ignored for archives\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"'-R' is ignored for archives\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info/-version-number' is ignored for archives\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for archives\"\n\n      test -n \"$export_symbols$export_symbols_regex\" && \\\n\tfunc_warning \"'-export-symbols' is ignored for archives\"\n\n      # Now set the variables for building old libraries.\n      build_libtool_libs=no\n      oldlibs=$output\n      func_append objs \"$old_deplibs\"\n      ;;\n\n    lib)\n      # Make sure we only generate libraries of the form 'libNAME.la'.\n      case $outputname in\n      lib*)\n\tfunc_stripname 'lib' '.la' \"$outputname\"\n\tname=$func_stripname_result\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval libname=\\\"$libname_spec\\\"\n\t;;\n      *)\n\ttest no = \"$module\" \\\n\t  && func_fatal_help \"libtool library '$output' must begin with 'lib'\"\n\n\tif test no != \"$need_lib_prefix\"; then\n\t  # Add the \"lib\" prefix for modules if required\n\t  func_stripname '' '.la' \"$outputname\"\n\t  name=$func_stripname_result\n\t  eval shared_ext=\\\"$shrext_cmds\\\"\n\t  eval libname=\\\"$libname_spec\\\"\n\telse\n\t  func_stripname '' '.la' \"$outputname\"\n\t  libname=$func_stripname_result\n\tfi\n\t;;\n      esac\n\n      if test -n \"$objs\"; then\n\tif test pass_all != \"$deplibs_check_method\"; then\n\t  func_fatal_error \"cannot build libtool library '$output' from non-libtool objects on this host:$objs\"\n\telse\n\t  echo\n\t  $ECHO \"*** Warning: Linking the shared library $output against the non-libtool\"\n\t  $ECHO \"*** objects $objs is not portable!\"\n\t  func_append libobjs \" $objs\"\n\tfi\n      fi\n\n      test no = \"$dlself\" \\\n\t|| func_warning \"'-dlopen self' is ignored for libtool libraries\"\n\n      set dummy $rpath\n      shift\n      test 1 -lt \"$#\" \\\n\t&& func_warning \"ignoring multiple '-rpath's for a libtool library\"\n\n      install_libdir=$1\n\n      oldlibs=\n      if test -z \"$rpath\"; then\n\tif test yes = \"$build_libtool_libs\"; then\n\t  # Building a libtool convenience library.\n\t  # Some compilers have problems with a '.al' extension so\n\t  # convenience libraries should have the same extension an\n\t  # archive normally would.\n\t  oldlibs=\"$output_objdir/$libname.$libext $oldlibs\"\n\t  build_libtool_libs=convenience\n\t  build_old_libs=yes\n\tfi\n\n\ttest -n \"$vinfo\" && \\\n\t  func_warning \"'-version-info/-version-number' is ignored for convenience libraries\"\n\n\ttest -n \"$release\" && \\\n\t  func_warning \"'-release' is ignored for convenience libraries\"\n      else\n\n\t# Parse the version information argument.\n\tsave_ifs=$IFS; IFS=:\n\tset dummy $vinfo 0 0 0\n\tshift\n\tIFS=$save_ifs\n\n\ttest -n \"$7\" && \\\n\t  func_fatal_help \"too many parameters to '-version-info'\"\n\n\t# convert absolute version numbers to libtool ages\n\t# this retains compatibility with .la files and attempts\n\t# to make the code below a bit more comprehensible\n\n\tcase $vinfo_number in\n\tyes)\n\t  number_major=$1\n\t  number_minor=$2\n\t  number_revision=$3\n\t  #\n\t  # There are really only two kinds -- those that\n\t  # use the current revision as the major version\n\t  # and those that subtract age and use age as\n\t  # a minor version.  But, then there is irix\n\t  # that has an extra 1 added just for fun\n\t  #\n\t  case $version_type in\n\t  # correct linux to gnu/linux during the next big refactor\n\t  darwin|freebsd-elf|linux|osf|windows|none)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=$number_minor\n\t    revision=$number_revision\n\t    ;;\n\t  freebsd-aout|qnx|sunos)\n\t    current=$number_major\n\t    revision=$number_minor\n\t    age=0\n\t    ;;\n\t  irix|nonstopux)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=$number_minor\n\t    revision=$number_minor\n\t    lt_irix_increment=no\n\t    ;;\n\t  esac\n\t  ;;\n\tno)\n\t  current=$1\n\t  revision=$2\n\t  age=$3\n\t  ;;\n\tesac\n\n\t# Check that each of the things are valid numbers.\n\tcase $current in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"CURRENT '$current' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $revision in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"REVISION '$revision' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $age in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"AGE '$age' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tif test \"$age\" -gt \"$current\"; then\n\t  func_error \"AGE '$age' is greater than the current interface number '$current'\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\tfi\n\n\t# Calculate the version variables.\n\tmajor=\n\tversuffix=\n\tverstring=\n\tcase $version_type in\n\tnone) ;;\n\n\tdarwin)\n\t  # Like Linux, but with the current version available in\n\t  # verstring for coding it into the library header\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  # Darwin ld doesn't like 0 for these options...\n\t  func_arith $current + 1\n\t  minor_current=$func_arith_result\n\t  xlcverstring=\"$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision\"\n\t  verstring=\"-compatibility_version $minor_current -current_version $minor_current.$revision\"\n          # On Darwin other compilers\n          case $CC in\n              nagfor*)\n                  verstring=\"$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision\"\n                  ;;\n              *)\n                  verstring=\"-compatibility_version $minor_current -current_version $minor_current.$revision\"\n                  ;;\n          esac\n\t  ;;\n\n\tfreebsd-aout)\n\t  major=.$current\n\t  versuffix=.$current.$revision\n\t  ;;\n\n\tfreebsd-elf)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  ;;\n\n\tirix | nonstopux)\n\t  if test no = \"$lt_irix_increment\"; then\n\t    func_arith $current - $age\n\t  else\n\t    func_arith $current - $age + 1\n\t  fi\n\t  major=$func_arith_result\n\n\t  case $version_type in\n\t    nonstopux) verstring_prefix=nonstopux ;;\n\t    *)         verstring_prefix=sgi ;;\n\t  esac\n\t  verstring=$verstring_prefix$major.$revision\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$revision\n\t  while test 0 -ne \"$loop\"; do\n\t    func_arith $revision - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=$verstring_prefix$major.$iface:$verstring\n\t  done\n\n\t  # Before this point, $major must not contain '.'.\n\t  major=.$major\n\t  versuffix=$major.$revision\n\t  ;;\n\n\tlinux) # correct to gnu/linux during the next big refactor\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  ;;\n\n\tosf)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=.$current.$age.$revision\n\t  verstring=$current.$age.$revision\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$age\n\t  while test 0 -ne \"$loop\"; do\n\t    func_arith $current - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=$verstring:$iface.0\n\t  done\n\n\t  # Make executables depend on our current version.\n\t  func_append verstring \":$current.0\"\n\t  ;;\n\n\tqnx)\n\t  major=.$current\n\t  versuffix=.$current\n\t  ;;\n\n\tsco)\n\t  major=.$current\n\t  versuffix=.$current\n\t  ;;\n\n\tsunos)\n\t  major=.$current\n\t  versuffix=.$current.$revision\n\t  ;;\n\n\twindows)\n\t  # Use '-' rather than '.', since we only want one\n\t  # extension on DOS 8.3 file systems.\n\t  func_arith $current - $age\n\t  major=$func_arith_result\n\t  versuffix=-$major\n\t  ;;\n\n\t*)\n\t  func_fatal_configuration \"unknown library version type '$version_type'\"\n\t  ;;\n\tesac\n\n\t# Clear the version info if we defaulted, and they specified a release.\n\tif test -z \"$vinfo\" && test -n \"$release\"; then\n\t  major=\n\t  case $version_type in\n\t  darwin)\n\t    # we can't check for \"0.0\" in archive_cmds due to quoting\n\t    # problems, so we reset it completely\n\t    verstring=\n\t    ;;\n\t  *)\n\t    verstring=0.0\n\t    ;;\n\t  esac\n\t  if test no = \"$need_version\"; then\n\t    versuffix=\n\t  else\n\t    versuffix=.0.0\n\t  fi\n\tfi\n\n\t# Remove version info from name if versioning should be avoided\n\tif test yes,no = \"$avoid_version,$need_version\"; then\n\t  major=\n\t  versuffix=\n\t  verstring=\n\tfi\n\n\t# Check to see if the archive will have undefined symbols.\n\tif test yes = \"$allow_undefined\"; then\n\t  if test unsupported = \"$allow_undefined_flag\"; then\n\t    if test yes = \"$build_old_libs\"; then\n\t      func_warning \"undefined symbols not allowed in $host shared libraries; building static only\"\n\t      build_libtool_libs=no\n\t    else\n\t      func_fatal_error \"can't build $host shared library unless -no-undefined is specified\"\n\t    fi\n\t  fi\n\telse\n\t  # Don't allow undefined symbols.\n\t  allow_undefined_flag=$no_undefined_flag\n\tfi\n\n      fi\n\n      func_generate_dlsyms \"$libname\" \"$libname\" :\n      func_append libobjs \" $symfileobj\"\n      test \" \" = \"$libobjs\" && libobjs=\n\n      if test relink != \"$opt_mode\"; then\n\t# Remove our outputs, but don't remove object files since they\n\t# may have been created when compiling PIC objects.\n\tremovelist=\n\ttempremovelist=`$ECHO \"$output_objdir/*\"`\n\tfor p in $tempremovelist; do\n\t  case $p in\n\t    *.$objext | *.gcno)\n\t       ;;\n\t    $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*)\n\t       if test -n \"$precious_files_regex\"; then\n\t\t if $ECHO \"$p\" | $EGREP -e \"$precious_files_regex\" >/dev/null 2>&1\n\t\t then\n\t\t   continue\n\t\t fi\n\t       fi\n\t       func_append removelist \" $p\"\n\t       ;;\n\t    *) ;;\n\t  esac\n\tdone\n\ttest -n \"$removelist\" && \\\n\t  func_show_eval \"${RM}r \\$removelist\"\n      fi\n\n      # Now set the variables for building old libraries.\n      if test yes = \"$build_old_libs\" && test convenience != \"$build_libtool_libs\"; then\n\tfunc_append oldlibs \" $output_objdir/$libname.$libext\"\n\n\t# Transform .lo files to .o files.\n\toldobjs=\"$objs \"`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.$libext$/d; $lo2o\" | $NL2SP`\n      fi\n\n      # Eliminate all temporary directories.\n      #for path in $notinst_path; do\n      #\tlib_search_path=`$ECHO \"$lib_search_path \" | $SED \"s% $path % %g\"`\n      #\tdeplibs=`$ECHO \"$deplibs \" | $SED \"s% -L$path % %g\"`\n      #\tdependency_libs=`$ECHO \"$dependency_libs \" | $SED \"s% -L$path % %g\"`\n      #done\n\n      if test -n \"$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\ttemp_xrpath=\n\tfor libdir in $xrpath; do\n\t  func_replace_sysroot \"$libdir\"\n\t  func_append temp_xrpath \" -R$func_replace_sysroot_result\"\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_rpath \" $libdir\" ;;\n\t  esac\n\tdone\n\tif test yes != \"$hardcode_into_libs\" || test yes = \"$build_old_libs\"; then\n\t  dependency_libs=\"$temp_xrpath $dependency_libs\"\n\tfi\n      fi\n\n      # Make sure dlfiles contains only unique files that won't be dlpreopened\n      old_dlfiles=$dlfiles\n      dlfiles=\n      for lib in $old_dlfiles; do\n\tcase \" $dlprefiles $dlfiles \" in\n\t*\" $lib \"*) ;;\n\t*) func_append dlfiles \" $lib\" ;;\n\tesac\n      done\n\n      # Make sure dlprefiles contains only unique files\n      old_dlprefiles=$dlprefiles\n      dlprefiles=\n      for lib in $old_dlprefiles; do\n\tcase \"$dlprefiles \" in\n\t*\" $lib \"*) ;;\n\t*) func_append dlprefiles \" $lib\" ;;\n\tesac\n      done\n\n      if test yes = \"$build_libtool_libs\"; then\n\tif test -n \"$rpath\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # these systems don't actually have a c library (as such)!\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C library is in the System framework\n\t    func_append deplibs \" System.ltframework\"\n\t    ;;\n\t  *-*-netbsd*)\n\t    # Don't link with libc until the a.out ld.so is fixed.\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    ;;\n\t  *)\n\t    # Add libc to deplibs on all other systems if necessary.\n\t    if test yes = \"$build_libtool_need_lc\"; then\n\t      func_append deplibs \" -lc\"\n\t    fi\n\t    ;;\n\t  esac\n\tfi\n\n\t# Transform deplibs into only deplibs that can be linked in shared.\n\tname_save=$name\n\tlibname_save=$libname\n\trelease_save=$release\n\tversuffix_save=$versuffix\n\tmajor_save=$major\n\t# I'm not sure if I'm treating the release correctly.  I think\n\t# release should show up in the -l (ie -lgmp5) so we don't want to\n\t# add it in twice.  Is that correct?\n\trelease=\n\tversuffix=\n\tmajor=\n\tnewdeplibs=\n\tdroppeddeps=no\n\tcase $deplibs_check_method in\n\tpass_all)\n\t  # Don't check for shared/static.  Everything works.\n\t  # This might be a little naive.  We might want to check\n\t  # whether the library exists or not.  But this is on\n\t  # osf3 & osf4 and I'm not really sure... Just\n\t  # implementing what was already the behavior.\n\t  newdeplibs=$deplibs\n\t  ;;\n\ttest_compile)\n\t  # This code stresses the \"libraries are programs\" paradigm to its\n\t  # limits. Maybe even breaks it.  We compile a program, linking it\n\t  # against the deplibs as a proxy for the library.  Then we can check\n\t  # whether they linked in statically or dynamically with ldd.\n\t  $opt_dry_run || $RM conftest.c\n\t  cat > conftest.c <<EOF\n\t  int main() { return 0; }\nEOF\n\t  $opt_dry_run || $RM conftest\n\t  if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then\n\t    ldd_output=`ldd conftest`\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\tif test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\t  case \" $predeps $postdeps \" in\n\t\t  *\" $i \"*)\n\t\t    func_append newdeplibs \" $i\"\n\t\t    i=\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t\tif test -n \"$i\"; then\n\t\t  libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t  deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t  set dummy $deplib_matches; shift\n\t\t  deplib_match=$1\n\t\t  if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0; then\n\t\t    func_append newdeplibs \" $i\"\n\t\t  else\n\t\t    droppeddeps=yes\n\t\t    echo\n\t\t    $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t    echo \"*** shared version of the library, which I believe you do not have\"\n\t\t    echo \"*** because a test_compile did reveal that the linker did not use it for\"\n\t\t    echo \"*** its dynamic dependency list that programs get resolved with at runtime.\"\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *)\n\t\tfunc_append newdeplibs \" $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  else\n\t    # Error occurred in the first compile.  Let's try to salvage\n\t    # the situation: Compile a separate program for each library.\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\t$opt_dry_run || $RM conftest\n\t\tif $LTCC $LTCFLAGS -o conftest conftest.c $i; then\n\t\t  ldd_output=`ldd conftest`\n\t\t  if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\t    case \" $predeps $postdeps \" in\n\t\t    *\" $i \"*)\n\t\t      func_append newdeplibs \" $i\"\n\t\t      i=\n\t\t      ;;\n\t\t    esac\n\t\t  fi\n\t\t  if test -n \"$i\"; then\n\t\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t    deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t    set dummy $deplib_matches; shift\n\t\t    deplib_match=$1\n\t\t    if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0; then\n\t\t      func_append newdeplibs \" $i\"\n\t\t    else\n\t\t      droppeddeps=yes\n\t\t      echo\n\t\t      $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t      echo \"*** I have the capability to make that library automatically link in when\"\n\t\t      echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t      echo \"*** shared version of the library, which you do not appear to have\"\n\t\t      echo \"*** because a test_compile did reveal that the linker did not use this one\"\n\t\t      echo \"*** as a dynamic dependency that programs can get resolved with at runtime.\"\n\t\t    fi\n\t\t  fi\n\t\telse\n\t\t  droppeddeps=yes\n\t\t  echo\n\t\t  $ECHO \"*** Warning!  Library $i is needed by this library but I was not able to\"\n\t\t  echo \"*** make it link in!  You will probably need to install it or some\"\n\t\t  echo \"*** library that it depends on before this library will be fully\"\n\t\t  echo \"*** functional.  Installing it before continuing would be even better.\"\n\t\tfi\n\t\t;;\n\t      *)\n\t\tfunc_append newdeplibs \" $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  fi\n\t  ;;\n\tfile_magic*)\n\t  set dummy $deplibs_check_method; shift\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  func_append newdeplibs \" $a_deplib\"\n\t\t  a_deplib=\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tif test -n \"$file_magic_glob\"; then\n\t\t  libnameglob=`func_echo_all \"$libname\" | $SED -e $file_magic_glob`\n\t\telse\n\t\t  libnameglob=$libname\n\t\tfi\n\t\ttest yes = \"$want_nocaseglob\" && nocaseglob=`shopt -p nocaseglob`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  if test yes = \"$want_nocaseglob\"; then\n\t\t    shopt -s nocaseglob\n\t\t    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`\n\t\t    $nocaseglob\n\t\t  else\n\t\t    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`\n\t\t  fi\n\t\t  for potent_lib in $potential_libs; do\n\t\t      # Follow soft links.\n\t\t      if ls -lLd \"$potent_lib\" 2>/dev/null |\n\t\t\t $GREP \" -> \" >/dev/null; then\n\t\t\tcontinue\n\t\t      fi\n\t\t      # The statement above tries to avoid entering an\n\t\t      # endless loop below, in case of cyclic links.\n\t\t      # We might still enter an endless loop, since a link\n\t\t      # loop can be closed while we follow links,\n\t\t      # but so what?\n\t\t      potlib=$potent_lib\n\t\t      while test -h \"$potlib\" 2>/dev/null; do\n\t\t\tpotliblink=`ls -ld $potlib | $SED 's/.* -> //'`\n\t\t\tcase $potliblink in\n\t\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) potlib=$potliblink;;\n\t\t\t*) potlib=`$ECHO \"$potlib\" | $SED 's|[^/]*$||'`\"$potliblink\";;\n\t\t\tesac\n\t\t      done\n\t\t      if eval $file_magic_cmd \\\"\\$potlib\\\" 2>/dev/null |\n\t\t\t $SED -e 10q |\n\t\t\t $EGREP \"$file_magic_regex\" > /dev/null; then\n\t\t\tfunc_append newdeplibs \" $a_deplib\"\n\t\t\ta_deplib=\n\t\t\tbreak 2\n\t\t      fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\"; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for file magic test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a file magic. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      func_append newdeplibs \" $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tmatch_pattern*)\n\t  set dummy $deplibs_check_method; shift\n\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  func_append newdeplibs \" $a_deplib\"\n\t\t  a_deplib=\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`\n\t\t  for potent_lib in $potential_libs; do\n\t\t    potlib=$potent_lib # see symlink-check above in file_magic test\n\t\t    if eval \"\\$ECHO \\\"$potent_lib\\\"\" 2>/dev/null | $SED 10q | \\\n\t\t       $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t      func_append newdeplibs \" $a_deplib\"\n\t\t      a_deplib=\n\t\t      break 2\n\t\t    fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\"; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for regex pattern test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a regex pattern. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      func_append newdeplibs \" $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tnone | unknown | *)\n\t  newdeplibs=\n\t  tmp_deplibs=`$ECHO \" $deplibs\" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`\n\t  if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t    for i in $predeps $postdeps; do\n\t      # can't use Xsed below, because $i might contain '/'\n\t      tmp_deplibs=`$ECHO \" $tmp_deplibs\" | $SED \"s|$i||\"`\n\t    done\n\t  fi\n\t  case $tmp_deplibs in\n\t  *[!\\\t\\ ]*)\n\t    echo\n\t    if test none = \"$deplibs_check_method\"; then\n\t      echo \"*** Warning: inter-library dependencies are not supported in this platform.\"\n\t    else\n\t      echo \"*** Warning: inter-library dependencies are not known to be supported.\"\n\t    fi\n\t    echo \"*** All declared inter-library dependencies are being dropped.\"\n\t    droppeddeps=yes\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tversuffix=$versuffix_save\n\tmajor=$major_save\n\trelease=$release_save\n\tlibname=$libname_save\n\tname=$name_save\n\n\tcase $host in\n\t*-*-rhapsody* | *-*-darwin1.[012])\n\t  # On Rhapsody replace the C library with the System framework\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t  ;;\n\tesac\n\n\tif test yes = \"$droppeddeps\"; then\n\t  if test yes = \"$module\"; then\n\t    echo\n\t    echo \"*** Warning: libtool could not satisfy all declared inter-library\"\n\t    $ECHO \"*** dependencies of module $libname.  Therefore, libtool will create\"\n\t    echo \"*** a static module, that should work as long as the dlopening\"\n\t    echo \"*** application is linked with the -dlopen flag.\"\n\t    if test -z \"$global_symbol_pipe\"; then\n\t      echo\n\t      echo \"*** However, this would only work if libtool was able to extract symbol\"\n\t      echo \"*** lists from a program, using 'nm' or equivalent, but libtool could\"\n\t      echo \"*** not find such a program.  So, this module is probably useless.\"\n\t      echo \"*** 'nm' from GNU binutils and a full rebuild may help.\"\n\t    fi\n\t    if test no = \"$build_old_libs\"; then\n\t      oldlibs=$output_objdir/$libname.$libext\n\t      build_libtool_libs=module\n\t      build_old_libs=yes\n\t    else\n\t      build_libtool_libs=no\n\t    fi\n\t  else\n\t    echo \"*** The inter-library dependencies that have been dropped here will be\"\n\t    echo \"*** automatically added whenever a program is linked with this library\"\n\t    echo \"*** or is declared to -dlopen it.\"\n\n\t    if test no = \"$allow_undefined\"; then\n\t      echo\n\t      echo \"*** Since this library must not contain undefined symbols,\"\n\t      echo \"*** because either the platform does not support them or\"\n\t      echo \"*** it was explicitly requested with -no-undefined,\"\n\t      echo \"*** libtool will only create a static version of it.\"\n\t      if test no = \"$build_old_libs\"; then\n\t\toldlibs=$output_objdir/$libname.$libext\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  fi\n\tfi\n\t# Done checking deplibs!\n\tdeplibs=$newdeplibs\n      fi\n      # Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n      case $host in\n\t*-*-darwin*)\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  new_inherited_linker_flags=`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  deplibs=`$ECHO \" $deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  ;;\n      esac\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    func_append new_libs \" -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) func_append new_libs \" $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) func_append new_libs \" $deplib\" ;;\n\tesac\n      done\n      deplibs=$new_libs\n\n      # All the library-specific variables (install_libdir is set above).\n      library_names=\n      old_library=\n      dlname=\n\n      # Test again, we may have decided not to build it any more\n      if test yes = \"$build_libtool_libs\"; then\n\t# Remove $wl instances when linking with ld.\n\t# FIXME: should test the right _cmds variable.\n\tcase $archive_cmds in\n\t  *\\$LD\\ *) wl= ;;\n        esac\n\tif test yes = \"$hardcode_into_libs\"; then\n\t  # Hardcode the library paths\n\t  hardcode_libdirs=\n\t  dep_rpath=\n\t  rpath=$finalize_rpath\n\t  test relink = \"$opt_mode\" || rpath=$compile_rpath$rpath\n\t  for libdir in $rpath; do\n\t    if test -n \"$hardcode_libdir_flag_spec\"; then\n\t      if test -n \"$hardcode_libdir_separator\"; then\n\t\tfunc_replace_sysroot \"$libdir\"\n\t\tlibdir=$func_replace_sysroot_result\n\t\tif test -z \"$hardcode_libdirs\"; then\n\t\t  hardcode_libdirs=$libdir\n\t\telse\n\t\t  # Just accumulate the unique libdirs.\n\t\t  case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t\t  *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t    ;;\n\t\t  *)\n\t\t    func_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t      else\n\t\teval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t\tfunc_append dep_rpath \" $flag\"\n\t      fi\n\t    elif test -n \"$runpath_var\"; then\n\t      case \"$perm_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append perm_rpath \" $libdir\" ;;\n\t      esac\n\t    fi\n\t  done\n\t  # Substitute the hardcoded libdirs into the rpath.\n\t  if test -n \"$hardcode_libdir_separator\" &&\n\t     test -n \"$hardcode_libdirs\"; then\n\t    libdir=$hardcode_libdirs\n\t    eval \"dep_rpath=\\\"$hardcode_libdir_flag_spec\\\"\"\n\t  fi\n\t  if test -n \"$runpath_var\" && test -n \"$perm_rpath\"; then\n\t    # We should set the runpath_var.\n\t    rpath=\n\t    for dir in $perm_rpath; do\n\t      func_append rpath \"$dir:\"\n\t    done\n\t    eval \"$runpath_var='$rpath\\$$runpath_var'; export $runpath_var\"\n\t  fi\n\t  test -n \"$dep_rpath\" && deplibs=\"$dep_rpath $deplibs\"\n\tfi\n\n\tshlibpath=$finalize_shlibpath\n\ttest relink = \"$opt_mode\" || shlibpath=$compile_shlibpath$shlibpath\n\tif test -n \"$shlibpath\"; then\n\t  eval \"$shlibpath_var='$shlibpath\\$$shlibpath_var'; export $shlibpath_var\"\n\tfi\n\n\t# Get the real and link names of the library.\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval library_names=\\\"$library_names_spec\\\"\n\tset dummy $library_names\n\tshift\n\trealname=$1\n\tshift\n\n\tif test -n \"$soname_spec\"; then\n\t  eval soname=\\\"$soname_spec\\\"\n\telse\n\t  soname=$realname\n\tfi\n\tif test -z \"$dlname\"; then\n\t  dlname=$soname\n\tfi\n\n\tlib=$output_objdir/$realname\n\tlinknames=\n\tfor link\n\tdo\n\t  func_append linknames \" $link\"\n\tdone\n\n\t# Use standard objects if they are pic\n\ttest -z \"$pic_flag\" && libobjs=`$ECHO \"$libobjs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\ttest \"X$libobjs\" = \"X \" && libobjs=\n\n\tdelfiles=\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  $opt_dry_run || cp \"$export_symbols\" \"$output_objdir/$libname.uexp\"\n\t  export_symbols=$output_objdir/$libname.uexp\n\t  func_append delfiles \" $export_symbols\"\n\tfi\n\n\torig_export_symbols=\n\tcase $host_os in\n\tcygwin* | mingw* | cegcc*)\n\t  if test -n \"$export_symbols\" && test -z \"$export_symbols_regex\"; then\n\t    # exporting using user supplied symfile\n\t    func_dll_def_p \"$export_symbols\" || {\n\t      # and it's NOT already a .def file. Must figure out\n\t      # which of the given symbols are data symbols and tag\n\t      # them as such. So, trigger use of export_symbols_cmds.\n\t      # export_symbols gets reassigned inside the \"prepare\n\t      # the list of exported symbols\" if statement, so the\n\t      # include_expsyms logic still works.\n\t      orig_export_symbols=$export_symbols\n\t      export_symbols=\n\t      always_export_symbols=yes\n\t    }\n\t  fi\n\t  ;;\n\tesac\n\n\t# Prepare the list of exported symbols\n\tif test -z \"$export_symbols\"; then\n\t  if test yes = \"$always_export_symbols\" || test -n \"$export_symbols_regex\"; then\n\t    func_verbose \"generating symbol list for '$libname.la'\"\n\t    export_symbols=$output_objdir/$libname.exp\n\t    $opt_dry_run || $RM $export_symbols\n\t    cmds=$export_symbols_cmds\n\t    save_ifs=$IFS; IFS='~'\n\t    for cmd1 in $cmds; do\n\t      IFS=$save_ifs\n\t      # Take the normal branch if the nm_file_list_spec branch\n\t      # doesn't work or if tool conversion is not needed.\n\t      case $nm_file_list_spec~$to_tool_file_cmd in\n\t\t*~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*)\n\t\t  try_normal_branch=yes\n\t\t  eval cmd=\\\"$cmd1\\\"\n\t\t  func_len \" $cmd\"\n\t\t  len=$func_len_result\n\t\t  ;;\n\t\t*)\n\t\t  try_normal_branch=no\n\t\t  ;;\n\t      esac\n\t      if test yes = \"$try_normal_branch\" \\\n\t\t && { test \"$len\" -lt \"$max_cmd_len\" \\\n\t\t      || test \"$max_cmd_len\" -le -1; }\n\t      then\n\t\tfunc_show_eval \"$cmd\" 'exit $?'\n\t\tskipped_export=false\n\t      elif test -n \"$nm_file_list_spec\"; then\n\t\tfunc_basename \"$output\"\n\t\toutput_la=$func_basename_result\n\t\tsave_libobjs=$libobjs\n\t\tsave_output=$output\n\t\toutput=$output_objdir/$output_la.nm\n\t\tfunc_to_tool_file \"$output\"\n\t\tlibobjs=$nm_file_list_spec$func_to_tool_file_result\n\t\tfunc_append delfiles \" $output\"\n\t\tfunc_verbose \"creating $NM input file list: $output\"\n\t\tfor obj in $save_libobjs; do\n\t\t  func_to_tool_file \"$obj\"\n\t\t  $ECHO \"$func_to_tool_file_result\"\n\t\tdone > \"$output\"\n\t\teval cmd=\\\"$cmd1\\\"\n\t\tfunc_show_eval \"$cmd\" 'exit $?'\n\t\toutput=$save_output\n\t\tlibobjs=$save_libobjs\n\t\tskipped_export=false\n\t      else\n\t\t# The command line is too long to execute in one step.\n\t\tfunc_verbose \"using reloadable object file for export list...\"\n\t\tskipped_export=:\n\t\t# Break out early, otherwise skipped_export may be\n\t\t# set to false by a later but shorter cmd.\n\t\tbreak\n\t      fi\n\t    done\n\t    IFS=$save_ifs\n\t    if test -n \"$export_symbols_regex\" && test : != \"$skipped_export\"; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  tmp_export_symbols=$export_symbols\n\t  test -n \"$orig_export_symbols\" && tmp_export_symbols=$orig_export_symbols\n\t  $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\tfi\n\n\tif test : != \"$skipped_export\" && test -n \"$orig_export_symbols\"; then\n\t  # The given exports_symbols file has to be filtered, so filter it.\n\t  func_verbose \"filter symbol list for '$libname.la' to tag DATA exports\"\n\t  # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t  # 's' commands, which not all seds can handle. GNU sed should be fine\n\t  # though. Also, the filter scales superlinearly with the number of\n\t  # global variables. join(1) would be nice here, but unfortunately\n\t  # isn't a blessed tool.\n\t  $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t  func_append delfiles \" $export_symbols $output_objdir/$libname.filter\"\n\t  export_symbols=$output_objdir/$libname.def\n\t  $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\tfi\n\n\ttmp_deplibs=\n\tfor test_deplib in $deplibs; do\n\t  case \" $convenience \" in\n\t  *\" $test_deplib \"*) ;;\n\t  *)\n\t    func_append tmp_deplibs \" $test_deplib\"\n\t    ;;\n\t  esac\n\tdone\n\tdeplibs=$tmp_deplibs\n\n\tif test -n \"$convenience\"; then\n\t  if test -n \"$whole_archive_flag_spec\" &&\n\t    test yes = \"$compiler_needs_object\" &&\n\t    test -z \"$libobjs\"; then\n\t    # extract the archives, so we have objects to list.\n\t    # TODO: could optimize this to just extract one archive.\n\t    whole_archive_flag_spec=\n\t  fi\n\t  if test -n \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  else\n\t    gentop=$output_objdir/${outputname}x\n\t    func_append generated \" $gentop\"\n\n\t    func_extract_archives $gentop $convenience\n\t    func_append libobjs \" $func_extract_archives_result\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\tfi\n\n\tif test yes = \"$thread_safe\" && test -n \"$thread_safe_flag_spec\"; then\n\t  eval flag=\\\"$thread_safe_flag_spec\\\"\n\t  func_append linker_flags \" $flag\"\n\tfi\n\n\t# Make a backup of the uninstalled library when relinking\n\tif test relink = \"$opt_mode\"; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?\n\tfi\n\n\t# Do each of the archive commands.\n\tif test yes = \"$module\" && test -n \"$module_cmds\"; then\n\t  if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$module_expsym_cmds\\\"\n\t    cmds=$module_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$module_cmds\\\"\n\t    cmds=$module_cmds\n\t  fi\n\telse\n\t  if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$archive_expsym_cmds\\\"\n\t    cmds=$archive_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$archive_cmds\\\"\n\t    cmds=$archive_cmds\n\t  fi\n\tfi\n\n\tif test : != \"$skipped_export\" &&\n\t   func_len \" $test_cmds\" &&\n\t   len=$func_len_result &&\n\t   test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  :\n\telse\n\t  # The command line is too long to link in one step, link piecewise\n\t  # or, if using GNU ld and skipped_export is not :, use a linker\n\t  # script.\n\n\t  # Save the value of $output and $libobjs because we want to\n\t  # use them later.  If we have whole_archive_flag_spec, we\n\t  # want to use save_libobjs as it was before\n\t  # whole_archive_flag_spec was expanded, because we can't\n\t  # assume the linker understands whole_archive_flag_spec.\n\t  # This may have to be revisited, in case too many\n\t  # convenience libraries get linked in and end up exceeding\n\t  # the spec.\n\t  if test -z \"$convenience\" || test -z \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t  fi\n\t  save_output=$output\n\t  func_basename \"$output\"\n\t  output_la=$func_basename_result\n\n\t  # Clear the reloadable object creation command queue and\n\t  # initialize k to one.\n\t  test_cmds=\n\t  concat_cmds=\n\t  objlist=\n\t  last_robj=\n\t  k=1\n\n\t  if test -n \"$save_libobjs\" && test : != \"$skipped_export\" && test yes = \"$with_gnu_ld\"; then\n\t    output=$output_objdir/$output_la.lnkscript\n\t    func_verbose \"creating GNU ld script: $output\"\n\t    echo 'INPUT (' > $output\n\t    for obj in $save_libobjs\n\t    do\n\t      func_to_tool_file \"$obj\"\n\t      $ECHO \"$func_to_tool_file_result\" >> $output\n\t    done\n\t    echo ')' >> $output\n\t    func_append delfiles \" $output\"\n\t    func_to_tool_file \"$output\"\n\t    output=$func_to_tool_file_result\n\t  elif test -n \"$save_libobjs\" && test : != \"$skipped_export\" && test -n \"$file_list_spec\"; then\n\t    output=$output_objdir/$output_la.lnk\n\t    func_verbose \"creating linker input file list: $output\"\n\t    : > $output\n\t    set x $save_libobjs\n\t    shift\n\t    firstobj=\n\t    if test yes = \"$compiler_needs_object\"; then\n\t      firstobj=\"$1 \"\n\t      shift\n\t    fi\n\t    for obj\n\t    do\n\t      func_to_tool_file \"$obj\"\n\t      $ECHO \"$func_to_tool_file_result\" >> $output\n\t    done\n\t    func_append delfiles \" $output\"\n\t    func_to_tool_file \"$output\"\n\t    output=$firstobj\\\"$file_list_spec$func_to_tool_file_result\\\"\n\t  else\n\t    if test -n \"$save_libobjs\"; then\n\t      func_verbose \"creating reloadable object files...\"\n\t      output=$output_objdir/$output_la-$k.$objext\n\t      eval test_cmds=\\\"$reload_cmds\\\"\n\t      func_len \" $test_cmds\"\n\t      len0=$func_len_result\n\t      len=$len0\n\n\t      # Loop over the list of objects to be linked.\n\t      for obj in $save_libobjs\n\t      do\n\t\tfunc_len \" $obj\"\n\t\tfunc_arith $len + $func_len_result\n\t\tlen=$func_arith_result\n\t\tif test -z \"$objlist\" ||\n\t\t   test \"$len\" -lt \"$max_cmd_len\"; then\n\t\t  func_append objlist \" $obj\"\n\t\telse\n\t\t  # The command $test_cmds is almost too long, add a\n\t\t  # command to the queue.\n\t\t  if test 1 -eq \"$k\"; then\n\t\t    # The first file doesn't have a previous command to add.\n\t\t    reload_objs=$objlist\n\t\t    eval concat_cmds=\\\"$reload_cmds\\\"\n\t\t  else\n\t\t    # All subsequent reloadable object files will link in\n\t\t    # the last one created.\n\t\t    reload_objs=\"$objlist $last_robj\"\n\t\t    eval concat_cmds=\\\"\\$concat_cmds~$reload_cmds~\\$RM $last_robj\\\"\n\t\t  fi\n\t\t  last_robj=$output_objdir/$output_la-$k.$objext\n\t\t  func_arith $k + 1\n\t\t  k=$func_arith_result\n\t\t  output=$output_objdir/$output_la-$k.$objext\n\t\t  objlist=\" $obj\"\n\t\t  func_len \" $last_robj\"\n\t\t  func_arith $len0 + $func_len_result\n\t\t  len=$func_arith_result\n\t\tfi\n\t      done\n\t      # Handle the remaining objects by creating one last\n\t      # reloadable object file.  All subsequent reloadable object\n\t      # files will link in the last one created.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      reload_objs=\"$objlist $last_robj\"\n\t      eval concat_cmds=\\\"\\$concat_cmds$reload_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t        eval concat_cmds=\\\"\\$concat_cmds~\\$RM $last_robj\\\"\n\t      fi\n\t      func_append delfiles \" $output\"\n\n\t    else\n\t      output=\n\t    fi\n\n\t    ${skipped_export-false} && {\n\t      func_verbose \"generating symbol list for '$libname.la'\"\n\t      export_symbols=$output_objdir/$libname.exp\n\t      $opt_dry_run || $RM $export_symbols\n\t      libobjs=$output\n\t      # Append the command to create the export file.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\$concat_cmds$export_symbols_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t\teval concat_cmds=\\\"\\$concat_cmds~\\$RM $last_robj\\\"\n\t      fi\n\t    }\n\n\t    test -n \"$save_libobjs\" &&\n\t      func_verbose \"creating a temporary reloadable object file: $output\"\n\n\t    # Loop through the commands generated above and execute them.\n\t    save_ifs=$IFS; IFS='~'\n\t    for cmd in $concat_cmds; do\n\t      IFS=$save_ifs\n\t      $opt_quiet || {\n\t\t  func_quote_for_expand \"$cmd\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t      }\n\t      $opt_dry_run || eval \"$cmd\" || {\n\t\tlt_exit=$?\n\n\t\t# Restore the uninstalled library and exit\n\t\tif test relink = \"$opt_mode\"; then\n\t\t  ( cd \"$output_objdir\" && \\\n\t\t    $RM \"${realname}T\" && \\\n\t\t    $MV \"${realname}U\" \"$realname\" )\n\t\tfi\n\n\t\texit $lt_exit\n\t      }\n\t    done\n\t    IFS=$save_ifs\n\n\t    if test -n \"$export_symbols_regex\" && ${skipped_export-false}; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\n          ${skipped_export-false} && {\n\t    if test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t      tmp_export_symbols=$export_symbols\n\t      test -n \"$orig_export_symbols\" && tmp_export_symbols=$orig_export_symbols\n\t      $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\t    fi\n\n\t    if test -n \"$orig_export_symbols\"; then\n\t      # The given exports_symbols file has to be filtered, so filter it.\n\t      func_verbose \"filter symbol list for '$libname.la' to tag DATA exports\"\n\t      # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t      # 's' commands, which not all seds can handle. GNU sed should be fine\n\t      # though. Also, the filter scales superlinearly with the number of\n\t      # global variables. join(1) would be nice here, but unfortunately\n\t      # isn't a blessed tool.\n\t      $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t      func_append delfiles \" $export_symbols $output_objdir/$libname.filter\"\n\t      export_symbols=$output_objdir/$libname.def\n\t      $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\t    fi\n\t  }\n\n\t  libobjs=$output\n\t  # Restore the value of output.\n\t  output=$save_output\n\n\t  if test -n \"$convenience\" && test -n \"$whole_archive_flag_spec\"; then\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\t  # Expand the library linking commands again to reset the\n\t  # value of $libobjs for piecewise linking.\n\n\t  # Do each of the archive commands.\n\t  if test yes = \"$module\" && test -n \"$module_cmds\"; then\n\t    if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t      cmds=$module_expsym_cmds\n\t    else\n\t      cmds=$module_cmds\n\t    fi\n\t  else\n\t    if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t      cmds=$archive_expsym_cmds\n\t    else\n\t      cmds=$archive_cmds\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$delfiles\"; then\n\t  # Append the command to remove temporary files to $cmds.\n\t  eval cmds=\\\"\\$cmds~\\$RM $delfiles\\\"\n\tfi\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  func_append libobjs \" $func_extract_archives_result\"\n\t  test \"X$libobjs\" = \"X \" && libobjs=\n\tfi\n\n\tsave_ifs=$IFS; IFS='~'\n\tfor cmd in $cmds; do\n\t  IFS=$sp$nl\n\t  eval cmd=\\\"$cmd\\\"\n\t  IFS=$save_ifs\n\t  $opt_quiet || {\n\t    func_quote_for_expand \"$cmd\"\n\t    eval \"func_echo $func_quote_for_expand_result\"\n\t  }\n\t  $opt_dry_run || eval \"$cmd\" || {\n\t    lt_exit=$?\n\n\t    # Restore the uninstalled library and exit\n\t    if test relink = \"$opt_mode\"; then\n\t      ( cd \"$output_objdir\" && \\\n\t        $RM \"${realname}T\" && \\\n\t\t$MV \"${realname}U\" \"$realname\" )\n\t    fi\n\n\t    exit $lt_exit\n\t  }\n\tdone\n\tIFS=$save_ifs\n\n\t# Restore the uninstalled library and exit\n\tif test relink = \"$opt_mode\"; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?\n\n\t  if test -n \"$convenience\"; then\n\t    if test -z \"$whole_archive_flag_spec\"; then\n\t      func_show_eval '${RM}r \"$gentop\"'\n\t    fi\n\t  fi\n\n\t  exit $EXIT_SUCCESS\n\tfi\n\n\t# Create links to the real library.\n\tfor linkname in $linknames; do\n\t  if test \"$realname\" != \"$linkname\"; then\n\t    func_show_eval '(cd \"$output_objdir\" && $RM \"$linkname\" && $LN_S \"$realname\" \"$linkname\")' 'exit $?'\n\t  fi\n\tdone\n\n\t# If -module or -export-dynamic was specified, set the dlname.\n\tif test yes = \"$module\" || test yes = \"$export_dynamic\"; then\n\t  # On all known operating systems, these are identical.\n\t  dlname=$soname\n\tfi\n      fi\n      ;;\n\n    obj)\n      if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n\tfunc_warning \"'-dlopen' is ignored for objects\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"'-l' and '-L' are ignored for objects\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"'-rpath' is ignored for objects\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"'-R' is ignored for objects\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info' is ignored for objects\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for objects\"\n\n      case $output in\n      *.lo)\n\ttest -n \"$objs$old_deplibs\" && \\\n\t  func_fatal_error \"cannot build library object '$output' from non-libtool objects\"\n\n\tlibobj=$output\n\tfunc_lo2o \"$libobj\"\n\tobj=$func_lo2o_result\n\t;;\n      *)\n\tlibobj=\n\tobj=$output\n\t;;\n      esac\n\n      # Delete the old objects.\n      $opt_dry_run || $RM $obj $libobj\n\n      # Objects from convenience libraries.  This assumes\n      # single-version convenience libraries.  Whenever we create\n      # different ones for PIC/non-PIC, this we'll have to duplicate\n      # the extraction.\n      reload_conv_objs=\n      gentop=\n      # if reload_cmds runs $LD directly, get rid of -Wl from\n      # whole_archive_flag_spec and hope we can get by with turning comma\n      # into space.\n      case $reload_cmds in\n        *\\$LD[\\ \\$]*) wl= ;;\n      esac\n      if test -n \"$convenience\"; then\n\tif test -n \"$whole_archive_flag_spec\"; then\n\t  eval tmp_whole_archive_flags=\\\"$whole_archive_flag_spec\\\"\n\t  test -n \"$wl\" || tmp_whole_archive_flags=`$ECHO \"$tmp_whole_archive_flags\" | $SED 's|,| |g'`\n\t  reload_conv_objs=$reload_objs\\ $tmp_whole_archive_flags\n\telse\n\t  gentop=$output_objdir/${obj}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $convenience\n\t  reload_conv_objs=\"$reload_objs $func_extract_archives_result\"\n\tfi\n      fi\n\n      # If we're not building shared, we need to use non_pic_objs\n      test yes = \"$build_libtool_libs\" || libobjs=$non_pic_objects\n\n      # Create the old-style object.\n      reload_objs=$objs$old_deplibs' '`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.$libext$/d; /\\.lib$/d; $lo2o\" | $NL2SP`' '$reload_conv_objs\n\n      output=$obj\n      func_execute_cmds \"$reload_cmds\" 'exit $?'\n\n      # Exit if we aren't doing a library object file.\n      if test -z \"$libobj\"; then\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\texit $EXIT_SUCCESS\n      fi\n\n      test yes = \"$build_libtool_libs\" || {\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\t# Create an invalid libtool object if no PIC, so that we don't\n\t# accidentally link it into a program.\n\t# $show \"echo timestamp > $libobj\"\n\t# $opt_dry_run || eval \"echo timestamp > $libobj\" || exit $?\n\texit $EXIT_SUCCESS\n      }\n\n      if test -n \"$pic_flag\" || test default != \"$pic_mode\"; then\n\t# Only do commands if we really have different PIC objects.\n\treload_objs=\"$libobjs $reload_conv_objs\"\n\toutput=$libobj\n\tfunc_execute_cmds \"$reload_cmds\" 'exit $?'\n      fi\n\n      if test -n \"$gentop\"; then\n\tfunc_show_eval '${RM}r \"$gentop\"'\n      fi\n\n      exit $EXIT_SUCCESS\n      ;;\n\n    prog)\n      case $host in\n\t*cygwin*) func_stripname '' '.exe' \"$output\"\n\t          output=$func_stripname_result.exe;;\n      esac\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info' is ignored for programs\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for programs\"\n\n      $preload \\\n\t&& test unknown,unknown,unknown = \"$dlopen_support,$dlopen_self,$dlopen_self_static\" \\\n\t&& func_warning \"'LT_INIT([dlopen])' not used. Assuming no dlopen support.\"\n\n      case $host in\n      *-*-rhapsody* | *-*-darwin1.[012])\n\t# On Rhapsody replace the C library is the System framework\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t;;\n      esac\n\n      case $host in\n      *-*-darwin*)\n\t# Don't allow lazy linking, it breaks C++ global constructors\n\t# But is supposedly fixed on 10.4 or later (yay!).\n\tif test CXX = \"$tagname\"; then\n\t  case ${MACOSX_DEPLOYMENT_TARGET-10.0} in\n\t    10.[0123])\n\t      func_append compile_command \" $wl-bind_at_load\"\n\t      func_append finalize_command \" $wl-bind_at_load\"\n\t    ;;\n\t  esac\n\tfi\n\t# Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t;;\n      esac\n\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $compile_deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    func_append new_libs \" -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $compile_deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) func_append new_libs \" $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) func_append new_libs \" $deplib\" ;;\n\tesac\n      done\n      compile_deplibs=$new_libs\n\n\n      func_append compile_command \" $compile_deplibs\"\n      func_append finalize_command \" $finalize_deplibs\"\n\n      if test -n \"$rpath$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\tfor libdir in $rpath $xrpath; do\n\t  # This is the magic to use -rpath.\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_rpath \" $libdir\" ;;\n\t  esac\n\tdone\n      fi\n\n      # Now hardcode the library paths\n      rpath=\n      hardcode_libdirs=\n      for libdir in $compile_rpath $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=$libdir\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\tfunc_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    func_append rpath \" $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append perm_rpath \" $libdir\" ;;\n\t  esac\n\tfi\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`$ECHO \"$libdir\" | $SED -e 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$libdir:\"*) ;;\n\t  ::) dllsearchpath=$libdir;;\n\t  *) func_append dllsearchpath \":$libdir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) func_append dllsearchpath \":$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=$hardcode_libdirs\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      compile_rpath=$rpath\n\n      rpath=\n      hardcode_libdirs=\n      for libdir in $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=$libdir\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\tfunc_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    func_append rpath \" $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$finalize_perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_perm_rpath \" $libdir\" ;;\n\t  esac\n\tfi\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=$hardcode_libdirs\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      finalize_rpath=$rpath\n\n      if test -n \"$libobjs\" && test yes = \"$build_old_libs\"; then\n\t# Transform all the library objects into standard objects.\n\tcompile_command=`$ECHO \"$compile_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\tfinalize_command=`$ECHO \"$finalize_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n      fi\n\n      func_generate_dlsyms \"$outputname\" \"@PROGRAM@\" false\n\n      # template prelinking step\n      if test -n \"$prelink_cmds\"; then\n\tfunc_execute_cmds \"$prelink_cmds\" 'exit $?'\n      fi\n\n      wrappers_required=:\n      case $host in\n      *cegcc* | *mingw32ce*)\n        # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.\n        wrappers_required=false\n        ;;\n      *cygwin* | *mingw* )\n        test yes = \"$build_libtool_libs\" || wrappers_required=false\n        ;;\n      *)\n        if test no = \"$need_relink\" || test yes != \"$build_libtool_libs\"; then\n          wrappers_required=false\n        fi\n        ;;\n      esac\n      $wrappers_required || {\n\t# Replace the output file specification.\n\tcompile_command=`$ECHO \"$compile_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\tlink_command=$compile_command$compile_rpath\n\n\t# We have no uninstalled library dependencies, so finalize right now.\n\texit_status=0\n\tfunc_show_eval \"$link_command\" 'exit_status=$?'\n\n\tif test -n \"$postlink_cmds\"; then\n\t  func_to_tool_file \"$output\"\n\t  postlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\t  func_execute_cmds \"$postlink_cmds\" 'exit $?'\n\tfi\n\n\t# Delete the generated files.\n\tif test -f \"$output_objdir/${outputname}S.$objext\"; then\n\t  func_show_eval '$RM \"$output_objdir/${outputname}S.$objext\"'\n\tfi\n\n\texit $exit_status\n      }\n\n      if test -n \"$compile_shlibpath$finalize_shlibpath\"; then\n\tcompile_command=\"$shlibpath_var=\\\"$compile_shlibpath$finalize_shlibpath\\$$shlibpath_var\\\" $compile_command\"\n      fi\n      if test -n \"$finalize_shlibpath\"; then\n\tfinalize_command=\"$shlibpath_var=\\\"$finalize_shlibpath\\$$shlibpath_var\\\" $finalize_command\"\n      fi\n\n      compile_var=\n      finalize_var=\n      if test -n \"$runpath_var\"; then\n\tif test -n \"$perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $perm_rpath; do\n\t    func_append rpath \"$dir:\"\n\t  done\n\t  compile_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n\tif test -n \"$finalize_perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $finalize_perm_rpath; do\n\t    func_append rpath \"$dir:\"\n\t  done\n\t  finalize_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n      fi\n\n      if test yes = \"$no_install\"; then\n\t# We don't need to create a wrapper script.\n\tlink_command=$compile_var$compile_command$compile_rpath\n\t# Replace the output file specification.\n\tlink_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\t# Delete the old output file.\n\t$opt_dry_run || $RM $output\n\t# Link the executable and exit\n\tfunc_show_eval \"$link_command\" 'exit $?'\n\n\tif test -n \"$postlink_cmds\"; then\n\t  func_to_tool_file \"$output\"\n\t  postlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\t  func_execute_cmds \"$postlink_cmds\" 'exit $?'\n\tfi\n\n\texit $EXIT_SUCCESS\n      fi\n\n      case $hardcode_action,$fast_install in\n        relink,*)\n\t  # Fast installation is not supported\n\t  link_command=$compile_var$compile_command$compile_rpath\n\t  relink_command=$finalize_var$finalize_command$finalize_rpath\n\n\t  func_warning \"this platform does not like uninstalled shared libraries\"\n\t  func_warning \"'$output' will be relinked during installation\"\n\t  ;;\n        *,yes)\n\t  link_command=$finalize_var$compile_command$finalize_rpath\n\t  relink_command=`$ECHO \"$compile_var$compile_command$compile_rpath\" | $SED 's%@OUTPUT@%\\$progdir/\\$file%g'`\n          ;;\n\t*,no)\n\t  link_command=$compile_var$compile_command$compile_rpath\n\t  relink_command=$finalize_var$finalize_command$finalize_rpath\n          ;;\n\t*,needless)\n\t  link_command=$finalize_var$compile_command$finalize_rpath\n\t  relink_command=\n          ;;\n      esac\n\n      # Replace the output file specification.\n      link_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output_objdir/$outputname\"'%g'`\n\n      # Delete the old output files.\n      $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname\n\n      func_show_eval \"$link_command\" 'exit $?'\n\n      if test -n \"$postlink_cmds\"; then\n\tfunc_to_tool_file \"$output_objdir/$outputname\"\n\tpostlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output_objdir/$outputname\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\tfunc_execute_cmds \"$postlink_cmds\" 'exit $?'\n      fi\n\n      # Now create the wrapper script.\n      func_verbose \"creating $output\"\n\n      # Quote the relink command for shipping.\n      if test -n \"$relink_command\"; then\n\t# Preserve any variables that may affect compiler behavior\n\tfor var in $variables_saved_for_relink; do\n\t  if eval test -z \\\"\\${$var+set}\\\"; then\n\t    relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\t  elif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t    relink_command=\"$var=; export $var; $relink_command\"\n\t  else\n\t    func_quote_for_eval \"$var_value\"\n\t    relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\t  fi\n\tdone\n\trelink_command=\"(cd `pwd`; $relink_command)\"\n\trelink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      fi\n\n      # Only actually do things if not in dry run mode.\n      $opt_dry_run || {\n\t# win32 will think the script is a binary if it has\n\t# a .exe suffix, so we strip it off here.\n\tcase $output in\n\t  *.exe) func_stripname '' '.exe' \"$output\"\n\t         output=$func_stripname_result ;;\n\tesac\n\t# test for cygwin because mv fails w/o .exe extensions\n\tcase $host in\n\t  *cygwin*)\n\t    exeext=.exe\n\t    func_stripname '' '.exe' \"$outputname\"\n\t    outputname=$func_stripname_result ;;\n\t  *) exeext= ;;\n\tesac\n\tcase $host in\n\t  *cygwin* | *mingw* )\n\t    func_dirname_and_basename \"$output\" \"\" \".\"\n\t    output_name=$func_basename_result\n\t    output_path=$func_dirname_result\n\t    cwrappersource=$output_path/$objdir/lt-$output_name.c\n\t    cwrapper=$output_path/$output_name.exe\n\t    $RM $cwrappersource $cwrapper\n\t    trap \"$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_cwrapperexe_src > $cwrappersource\n\n\t    # The wrapper executable is built using the $host compiler,\n\t    # because it contains $host paths and files. If cross-\n\t    # compiling, it, like the target executable, must be\n\t    # executed on the $host or under an emulation environment.\n\t    $opt_dry_run || {\n\t      $LTCC $LTCFLAGS -o $cwrapper $cwrappersource\n\t      $STRIP $cwrapper\n\t    }\n\n\t    # Now, create the wrapper script for func_source use:\n\t    func_ltwrapper_scriptname $cwrapper\n\t    $RM $func_ltwrapper_scriptname_result\n\t    trap \"$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE\" 1 2 15\n\t    $opt_dry_run || {\n\t      # note: this script will not be executed, so do not chmod.\n\t      if test \"x$build\" = \"x$host\"; then\n\t\t$cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result\n\t      else\n\t\tfunc_emit_wrapper no > $func_ltwrapper_scriptname_result\n\t      fi\n\t    }\n\t  ;;\n\t  * )\n\t    $RM $output\n\t    trap \"$RM $output; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_wrapper no > $output\n\t    chmod +x $output\n\t  ;;\n\tesac\n      }\n      exit $EXIT_SUCCESS\n      ;;\n    esac\n\n    # See if we need to build an old-fashioned archive.\n    for oldlib in $oldlibs; do\n\n      case $build_libtool_libs in\n        convenience)\n\t  oldobjs=\"$libobjs_save $symfileobj\"\n\t  addlibs=$convenience\n\t  build_libtool_libs=no\n\t  ;;\n\tmodule)\n\t  oldobjs=$libobjs_save\n\t  addlibs=$old_convenience\n\t  build_libtool_libs=no\n          ;;\n\t*)\n\t  oldobjs=\"$old_deplibs $non_pic_objects\"\n\t  $preload && test -f \"$symfileobj\" \\\n\t    && func_append oldobjs \" $symfileobj\"\n\t  addlibs=$old_convenience\n\t  ;;\n      esac\n\n      if test -n \"$addlibs\"; then\n\tgentop=$output_objdir/${outputname}x\n\tfunc_append generated \" $gentop\"\n\n\tfunc_extract_archives $gentop $addlibs\n\tfunc_append oldobjs \" $func_extract_archives_result\"\n      fi\n\n      # Do each command in the archive commands.\n      if test -n \"$old_archive_from_new_cmds\" && test yes = \"$build_libtool_libs\"; then\n\tcmds=$old_archive_from_new_cmds\n      else\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  func_append oldobjs \" $func_extract_archives_result\"\n\tfi\n\n\t# POSIX demands no paths to be encoded in archives.  We have\n\t# to avoid creating archives with duplicate basenames if we\n\t# might have to extract them afterwards, e.g., when creating a\n\t# static archive out of a convenience library, or when linking\n\t# the entirety of a libtool archive into another (currently\n\t# not supported by libtool).\n\tif (for obj in $oldobjs\n\t    do\n\t      func_basename \"$obj\"\n\t      $ECHO \"$func_basename_result\"\n\t    done | sort | sort -uc >/dev/null 2>&1); then\n\t  :\n\telse\n\t  echo \"copying selected object files to avoid basename conflicts...\"\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\t  func_mkdir_p \"$gentop\"\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  counter=1\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_basename \"$obj\"\n\t    objbase=$func_basename_result\n\t    case \" $oldobjs \" in\n\t    \" \") oldobjs=$obj ;;\n\t    *[\\ /]\"$objbase \"*)\n\t      while :; do\n\t\t# Make sure we don't pick an alternate name that also\n\t\t# overlaps.\n\t\tnewobj=lt$counter-$objbase\n\t\tfunc_arith $counter + 1\n\t\tcounter=$func_arith_result\n\t\tcase \" $oldobjs \" in\n\t\t*[\\ /]\"$newobj \"*) ;;\n\t\t*) if test ! -f \"$gentop/$newobj\"; then break; fi ;;\n\t\tesac\n\t      done\n\t      func_show_eval \"ln $obj $gentop/$newobj || cp $obj $gentop/$newobj\"\n\t      func_append oldobjs \" $gentop/$newobj\"\n\t      ;;\n\t    *) func_append oldobjs \" $obj\" ;;\n\t    esac\n\t  done\n\tfi\n\tfunc_to_tool_file \"$oldlib\" func_convert_file_msys_to_w32\n\ttool_oldlib=$func_to_tool_file_result\n\teval cmds=\\\"$old_archive_cmds\\\"\n\n\tfunc_len \" $cmds\"\n\tlen=$func_len_result\n\tif test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  cmds=$old_archive_cmds\n\telif test -n \"$archiver_list_spec\"; then\n\t  func_verbose \"using command file archive linking...\"\n\t  for obj in $oldobjs\n\t  do\n\t    func_to_tool_file \"$obj\"\n\t    $ECHO \"$func_to_tool_file_result\"\n\t  done > $output_objdir/$libname.libcmd\n\t  func_to_tool_file \"$output_objdir/$libname.libcmd\"\n\t  oldobjs=\" $archiver_list_spec$func_to_tool_file_result\"\n\t  cmds=$old_archive_cmds\n\telse\n\t  # the command line is too long to link in one step, link in parts\n\t  func_verbose \"using piecewise archive linking...\"\n\t  save_RANLIB=$RANLIB\n\t  RANLIB=:\n\t  objlist=\n\t  concat_cmds=\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  # Is there a better way of finding the last object in the list?\n\t  for obj in $save_oldobjs\n\t  do\n\t    last_oldobj=$obj\n\t  done\n\t  eval test_cmds=\\\"$old_archive_cmds\\\"\n\t  func_len \" $test_cmds\"\n\t  len0=$func_len_result\n\t  len=$len0\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_len \" $obj\"\n\t    func_arith $len + $func_len_result\n\t    len=$func_arith_result\n\t    func_append objlist \" $obj\"\n\t    if test \"$len\" -lt \"$max_cmd_len\"; then\n\t      :\n\t    else\n\t      # the above command should be used before it gets too long\n\t      oldobjs=$objlist\n\t      if test \"$obj\" = \"$last_oldobj\"; then\n\t\tRANLIB=$save_RANLIB\n\t      fi\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\$concat_cmds$old_archive_cmds\\\"\n\t      objlist=\n\t      len=$len0\n\t    fi\n\t  done\n\t  RANLIB=$save_RANLIB\n\t  oldobjs=$objlist\n\t  if test -z \"$oldobjs\"; then\n\t    eval cmds=\\\"\\$concat_cmds\\\"\n\t  else\n\t    eval cmds=\\\"\\$concat_cmds~\\$old_archive_cmds\\\"\n\t  fi\n\tfi\n      fi\n      func_execute_cmds \"$cmds\" 'exit $?'\n    done\n\n    test -n \"$generated\" && \\\n      func_show_eval \"${RM}r$generated\"\n\n    # Now create the libtool archive.\n    case $output in\n    *.la)\n      old_library=\n      test yes = \"$build_old_libs\" && old_library=$libname.$libext\n      func_verbose \"creating $output\"\n\n      # Preserve any variables that may affect compiler behavior\n      for var in $variables_saved_for_relink; do\n\tif eval test -z \\\"\\${$var+set}\\\"; then\n\t  relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\telif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t  relink_command=\"$var=; export $var; $relink_command\"\n\telse\n\t  func_quote_for_eval \"$var_value\"\n\t  relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\tfi\n      done\n      # Quote the link command for shipping.\n      relink_command=\"(cd `pwd`; $SHELL \\\"$progpath\\\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)\"\n      relink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      if test yes = \"$hardcode_automatic\"; then\n\trelink_command=\n      fi\n\n      # Only create the output if not a dry run.\n      $opt_dry_run || {\n\tfor installed in no yes; do\n\t  if test yes = \"$installed\"; then\n\t    if test -z \"$install_libdir\"; then\n\t      break\n\t    fi\n\t    output=$output_objdir/${outputname}i\n\t    # Replace all uninstalled libtool libraries with the installed ones\n\t    newdependency_libs=\n\t    for deplib in $dependency_libs; do\n\t      case $deplib in\n\t      *.la)\n\t\tfunc_basename \"$deplib\"\n\t\tname=$func_basename_result\n\t\tfunc_resolve_sysroot \"$deplib\"\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $func_resolve_sysroot_result`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$deplib' is not a valid libtool archive\"\n\t\tfunc_append newdependency_libs \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      -L*)\n\t\tfunc_stripname -L '' \"$deplib\"\n\t\tfunc_replace_sysroot \"$func_stripname_result\"\n\t\tfunc_append newdependency_libs \" -L$func_replace_sysroot_result\"\n\t\t;;\n\t      -R*)\n\t\tfunc_stripname -R '' \"$deplib\"\n\t\tfunc_replace_sysroot \"$func_stripname_result\"\n\t\tfunc_append newdependency_libs \" -R$func_replace_sysroot_result\"\n\t\t;;\n\t      *) func_append newdependency_libs \" $deplib\" ;;\n\t      esac\n\t    done\n\t    dependency_libs=$newdependency_libs\n\t    newdlfiles=\n\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t      *.la)\n\t        func_basename \"$lib\"\n\t\tname=$func_basename_result\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$lib' is not a valid libtool archive\"\n\t\tfunc_append newdlfiles \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      *) func_append newdlfiles \" $lib\" ;;\n\t      esac\n\t    done\n\t    dlfiles=$newdlfiles\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t      *.la)\n\t\t# Only pass preopened files to the pseudo-archive (for\n\t\t# eventual linking with the app. that links it) if we\n\t\t# didn't already link the preopened objects directly into\n\t\t# the library:\n\t\tfunc_basename \"$lib\"\n\t\tname=$func_basename_result\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$lib' is not a valid libtool archive\"\n\t\tfunc_append newdlprefiles \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      esac\n\t    done\n\t    dlprefiles=$newdlprefiles\n\t  else\n\t    newdlfiles=\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=$lib ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      func_append newdlfiles \" $abs\"\n\t    done\n\t    dlfiles=$newdlfiles\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=$lib ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      func_append newdlprefiles \" $abs\"\n\t    done\n\t    dlprefiles=$newdlprefiles\n\t  fi\n\t  $RM $output\n\t  # place dlname in correct position for cygwin\n\t  # In fact, it would be nice if we could use this code for all target\n\t  # systems that can't hard-code library paths into their executables\n\t  # and that have no shared library path variable independent of PATH,\n\t  # but it turns out we can't easily determine that from inspecting\n\t  # libtool variables, so we have to hard-code the OSs to which it\n\t  # applies here; at the moment, that means platforms that use the PE\n\t  # object format with DLL files.  See the long comment at the top of\n\t  # tests/bindir.at for full details.\n\t  tdlname=$dlname\n\t  case $host,$output,$installed,$module,$dlname in\n\t    *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)\n\t      # If a -bindir argument was supplied, place the dll there.\n\t      if test -n \"$bindir\"; then\n\t\tfunc_relative_path \"$install_libdir\" \"$bindir\"\n\t\ttdlname=$func_relative_path_result/$dlname\n\t      else\n\t\t# Otherwise fall back on heuristic.\n\t\ttdlname=../bin/$dlname\n\t      fi\n\t      ;;\n\t  esac\n\t  $ECHO > $output \"\\\n# $outputname - a libtool library file\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# The name that we can dlopen(3).\ndlname='$tdlname'\n\n# Names of this library.\nlibrary_names='$library_names'\n\n# The name of the static archive.\nold_library='$old_library'\n\n# Linker flags that cannot go in dependency_libs.\ninherited_linker_flags='$new_inherited_linker_flags'\n\n# Libraries that this one depends upon.\ndependency_libs='$dependency_libs'\n\n# Names of additional weak libraries provided by this library\nweak_library_names='$weak_libs'\n\n# Version information for $libname.\ncurrent=$current\nage=$age\nrevision=$revision\n\n# Is this an already installed library?\ninstalled=$installed\n\n# Should we warn about portability when linking against -modules?\nshouldnotlink=$module\n\n# Files to dlopen/dlpreopen\ndlopen='$dlfiles'\ndlpreopen='$dlprefiles'\n\n# Directory that this library needs to be installed in:\nlibdir='$install_libdir'\"\n\t  if test no,yes = \"$installed,$need_relink\"; then\n\t    $ECHO >> $output \"\\\nrelink_command=\\\"$relink_command\\\"\"\n\t  fi\n\tdone\n      }\n\n      # Do a symbolic link so that the libtool archive can be found in\n      # LD_LIBRARY_PATH before the program is installed.\n      func_show_eval '( cd \"$output_objdir\" && $RM \"$outputname\" && $LN_S \"../$outputname\" \"$outputname\" )' 'exit $?'\n      ;;\n    esac\n    exit $EXIT_SUCCESS\n}\n\nif test link = \"$opt_mode\" || test relink = \"$opt_mode\"; then\n  func_mode_link ${1+\"$@\"}\nfi\n\n\n# func_mode_uninstall arg...\nfunc_mode_uninstall ()\n{\n    $debug_cmd\n\n    RM=$nonopt\n    files=\n    rmforce=false\n    exit_status=0\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=$magic\n\n    for arg\n    do\n      case $arg in\n      -f) func_append RM \" $arg\"; rmforce=: ;;\n      -*) func_append RM \" $arg\" ;;\n      *) func_append files \" $arg\" ;;\n      esac\n    done\n\n    test -z \"$RM\" && \\\n      func_fatal_help \"you must specify an RM program\"\n\n    rmdirs=\n\n    for file in $files; do\n      func_dirname \"$file\" \"\" \".\"\n      dir=$func_dirname_result\n      if test . = \"$dir\"; then\n\todir=$objdir\n      else\n\todir=$dir/$objdir\n      fi\n      func_basename \"$file\"\n      name=$func_basename_result\n      test uninstall = \"$opt_mode\" && odir=$dir\n\n      # Remember odir for removal later, being careful to avoid duplicates\n      if test clean = \"$opt_mode\"; then\n\tcase \" $rmdirs \" in\n\t  *\" $odir \"*) ;;\n\t  *) func_append rmdirs \" $odir\" ;;\n\tesac\n      fi\n\n      # Don't error if the file doesn't exist and rm -f was used.\n      if { test -L \"$file\"; } >/dev/null 2>&1 ||\n\t { test -h \"$file\"; } >/dev/null 2>&1 ||\n\t test -f \"$file\"; then\n\t:\n      elif test -d \"$file\"; then\n\texit_status=1\n\tcontinue\n      elif $rmforce; then\n\tcontinue\n      fi\n\n      rmfiles=$file\n\n      case $name in\n      *.la)\n\t# Possibly a libtool archive, so verify it.\n\tif func_lalib_p \"$file\"; then\n\t  func_source $dir/$name\n\n\t  # Delete the libtool libraries and symlinks.\n\t  for n in $library_names; do\n\t    func_append rmfiles \" $odir/$n\"\n\t  done\n\t  test -n \"$old_library\" && func_append rmfiles \" $odir/$old_library\"\n\n\t  case $opt_mode in\n\t  clean)\n\t    case \" $library_names \" in\n\t    *\" $dlname \"*) ;;\n\t    *) test -n \"$dlname\" && func_append rmfiles \" $odir/$dlname\" ;;\n\t    esac\n\t    test -n \"$libdir\" && func_append rmfiles \" $odir/$name $odir/${name}i\"\n\t    ;;\n\t  uninstall)\n\t    if test -n \"$library_names\"; then\n\t      # Do each command in the postuninstall commands.\n\t      func_execute_cmds \"$postuninstall_cmds\" '$rmforce || exit_status=1'\n\t    fi\n\n\t    if test -n \"$old_library\"; then\n\t      # Do each command in the old_postuninstall commands.\n\t      func_execute_cmds \"$old_postuninstall_cmds\" '$rmforce || exit_status=1'\n\t    fi\n\t    # FIXME: should reinstall the best remaining shared library.\n\t    ;;\n\t  esac\n\tfi\n\t;;\n\n      *.lo)\n\t# Possibly a libtool object, so verify it.\n\tif func_lalib_p \"$file\"; then\n\n\t  # Read the .lo file\n\t  func_source $dir/$name\n\n\t  # Add PIC object to the list of files to remove.\n\t  if test -n \"$pic_object\" && test none != \"$pic_object\"; then\n\t    func_append rmfiles \" $dir/$pic_object\"\n\t  fi\n\n\t  # Add non-PIC object to the list of files to remove.\n\t  if test -n \"$non_pic_object\" && test none != \"$non_pic_object\"; then\n\t    func_append rmfiles \" $dir/$non_pic_object\"\n\t  fi\n\tfi\n\t;;\n\n      *)\n\tif test clean = \"$opt_mode\"; then\n\t  noexename=$name\n\t  case $file in\n\t  *.exe)\n\t    func_stripname '' '.exe' \"$file\"\n\t    file=$func_stripname_result\n\t    func_stripname '' '.exe' \"$name\"\n\t    noexename=$func_stripname_result\n\t    # $file with .exe has already been added to rmfiles,\n\t    # add $file without .exe\n\t    func_append rmfiles \" $file\"\n\t    ;;\n\t  esac\n\t  # Do a test to see if this is a libtool program.\n\t  if func_ltwrapper_p \"$file\"; then\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      relink_command=\n\t      func_source $func_ltwrapper_scriptname_result\n\t      func_append rmfiles \" $func_ltwrapper_scriptname_result\"\n\t    else\n\t      relink_command=\n\t      func_source $dir/$noexename\n\t    fi\n\n\t    # note $name still contains .exe if it was in $file originally\n\t    # as does the version of $file that was added into $rmfiles\n\t    func_append rmfiles \" $odir/$name $odir/${name}S.$objext\"\n\t    if test yes = \"$fast_install\" && test -n \"$relink_command\"; then\n\t      func_append rmfiles \" $odir/lt-$name\"\n\t    fi\n\t    if test \"X$noexename\" != \"X$name\"; then\n\t      func_append rmfiles \" $odir/lt-$noexename.c\"\n\t    fi\n\t  fi\n\tfi\n\t;;\n      esac\n      func_show_eval \"$RM $rmfiles\" 'exit_status=1'\n    done\n\n    # Try to remove the $objdir's in the directories where we deleted files\n    for dir in $rmdirs; do\n      if test -d \"$dir\"; then\n\tfunc_show_eval \"rmdir $dir >/dev/null 2>&1\"\n      fi\n    done\n\n    exit $exit_status\n}\n\nif test uninstall = \"$opt_mode\" || test clean = \"$opt_mode\"; then\n  func_mode_uninstall ${1+\"$@\"}\nfi\n\ntest -z \"$opt_mode\" && {\n  help=$generic_help\n  func_fatal_help \"you must specify a MODE\"\n}\n\ntest -z \"$exec_cmd\" && \\\n  func_fatal_help \"invalid operation mode '$opt_mode'\"\n\nif test -n \"$exec_cmd\"; then\n  eval exec \"$exec_cmd\"\n  exit $EXIT_FAILURE\nfi\n\nexit $exit_status\n\n\n# The TAGs below are defined such that we never get into a situation\n# where we disable both kinds of libraries.  Given conflicting\n# choices, we go for a static library, that is the most portable,\n# since we can't tell whether shared libraries were disabled because\n# the user asked for that or because the platform doesn't support\n# them.  This is particularly important on AIX, because we don't\n# support having both static and shared libraries enabled at the same\n# time on that platform, so we default to a shared-only configuration.\n# If a disable-shared tag is given, we'll fallback to a static-only\n# configuration.  But we'll never go from static-only to shared-only.\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-shared\nbuild_libtool_libs=no\nbuild_old_libs=yes\n# ### END LIBTOOL TAG CONFIG: disable-shared\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-static\nbuild_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`\n# ### END LIBTOOL TAG CONFIG: disable-static\n\n# Local Variables:\n# mode:shell-script\n# sh-indentation:2\n# End:\n\n# ### BEGIN LIBTOOL TAG CONFIG: RC\n\n# The linker used to build libraries.\nLD=\"\"\n\n# How to create reloadable object files.\nreload_flag=\"\"\nreload_cmds=\"\"\n\n# Commands used to build an old-style archive.\nold_archive_cmds=\"\"\n\n# A language specific compiler.\nCC=\"\"\n\n# Is the compiler the GNU compiler?\nwith_gcc=\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=\"\"\n\n# Additional compiler flags for building library objects.\npic_flag=\"\"\n\n# How to pass a linker flag through the compiler.\nwl=\"\"\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=\"\"\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=\"yes\"\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=\"\"\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=\"\"\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=\"\"\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=\"\"\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=\"\"\n\n# Commands used to build a shared archive.\narchive_cmds=\"\"\narchive_expsym_cmds=\"\"\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=\"\"\nmodule_expsym_cmds=\"\"\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=\"\"\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=\"\"\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=\"\"\n\n# Flag to hardcode $libdir into a binary during linking.\n# This must work even if $libdir does not exist\nhardcode_libdir_flag_spec=\"\"\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=\"\"\n\n# Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=\n\n# Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting $shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=\n\n# The commands to list exported symbols.\nexport_symbols_cmds=\"\"\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=\"\"\n\n# Symbols that must always be exported.\ninclude_expsyms=\"\"\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=\"\"\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=\"\"\n\n# Specify filename containing input files.\nfile_list_spec=\"\"\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=\n\n# ### END LIBTOOL TAG CONFIG: RC\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/m4/cp.m4",
    "content": "dnl Copyright (C) 1993-2002 Free Software Foundation, Inc.\ndnl This file is free software, distributed under the terms of the GNU\ndnl General Public License.  As a special exception to the GNU General\ndnl Public License, this file may be distributed as part of a program\ndnl that contains a configuration script generated by Autoconf, under\ndnl the same distribution terms as the rest of that program.\n\ndnl From Bruno Haible, Marcus Daniels.\n\nAC_PREREQ(2.13)\n\nAC_DEFUN([CL_PROG_CP],\n[AC_CACHE_CHECK(how to copy files, cl_cv_prog_cp, [\necho \"blabla\" > conftest.x\nerr=`/bin/sh -c \"cp -p conftest.x conftest.y 2>&1\"`\nif test -z \"$err\"; then\n  cl_cv_prog_cp='cp -p'\nelse\n  cl_cv_prog_cp='cp'\nfi\nrm -f conftest*\n])\nCP=\"$cl_cv_prog_cp\"\nAC_SUBST(CP)dnl\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/m4/eilseq.m4",
    "content": "#serial 1\n\nAC_PREREQ(2.50)\n\n# The EILSEQ errno value ought to be defined in <errno.h>, according to\n# ISO C 99 and POSIX.  But some systems (like SunOS 4) don't define it,\n# and some systems (like BSD/OS) define it in <wchar.h> not <errno.h>.\n\n# Define EILSEQ as a C macro and as a substituted macro in such a way that\n# 1. on all systems, after inclusion of <errno.h>, EILSEQ is usable,\n# 2. on systems where EILSEQ is defined elsewhere, we use the same numeric\n#    value.\n\nAC_DEFUN([AC_EILSEQ],\n[\n  AC_REQUIRE([AC_PROG_CC])dnl\n\n  dnl Check for any extra headers that could define EILSEQ.\n  AC_CHECK_HEADERS(wchar.h)\n\n  AC_CACHE_CHECK([for EILSEQ], ac_cv_decl_EILSEQ, [\n    AC_EGREP_CPP(yes,[\n#include <errno.h>\n#ifdef EILSEQ\nyes\n#endif\n      ], have_eilseq=1)\n    if test -n \"$have_eilseq\"; then\n      dnl EILSEQ exists in <errno.h>. Don't need to define EILSEQ ourselves.\n      ac_cv_decl_EILSEQ=yes\n    else\n      AC_EGREP_CPP(yes,[\n#include <errno.h>\n#if HAVE_WCHAR_H\n#include <wchar.h>\n#endif\n#ifdef EILSEQ\nyes\n#endif\n        ], have_eilseq=1)\n      if test -n \"$have_eilseq\"; then\n        dnl EILSEQ exists in some other system header.\n        dnl Define it to the same value.\n        _AC_COMPUTE_INT([EILSEQ], ac_cv_decl_EILSEQ, [\n#include <errno.h>\n#if HAVE_WCHAR_H\n#include <wchar.h>\n#endif\n/* The following two lines are a workaround against an autoconf-2.52 bug.  */\n#include <stdio.h>\n#include <stdlib.h>\n])\n      else\n        dnl EILSEQ isn't defined by the system. Define EILSEQ ourselves, but\n        dnl don't define it as EINVAL, because iconv() callers want to\n        dnl distinguish EINVAL and EILSEQ.\n        ac_cv_decl_EILSEQ=ENOENT\n      fi\n    fi\n  ])\n  if test \"$ac_cv_decl_EILSEQ\" != yes; then\n    AC_DEFINE_UNQUOTED([EILSEQ], [$ac_cv_decl_EILSEQ],\n                       [Define as good substitute value for EILSEQ.])\n    EILSEQ=\"$ac_cv_decl_EILSEQ\"\n    AC_SUBST(EILSEQ)\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/m4/endian.m4",
    "content": "dnl Copyright (C) 1993-2003 Free Software Foundation, Inc.\ndnl This file is free software, distributed under the terms of the GNU\ndnl General Public License.  As a special exception to the GNU General\ndnl Public License, this file may be distributed as part of a program\ndnl that contains a configuration script generated by Autoconf, under\ndnl the same distribution terms as the rest of that program.\n\ndnl From Bruno Haible, Marcus Daniels.\n\nAC_PREREQ(2.13)\n\nAC_DEFUN([CL_WORDS_LITTLEENDIAN],\n[AC_CACHE_CHECK(byte ordering, cl_cv_sys_endian, [\nAC_TRY_RUN([int main () {\n  /* Are we little or big endian?  From Harbison&Steele.  */\n  union\n  {\n    long l;\n    char c[sizeof (long)];\n  } u;\n  u.l = 1;\n  exit (u.c[0] == 1);\n}],\ncl_cv_sys_endian=\"big endian\",\ncl_cv_sys_endian=\"little endian\",\n: # must guess the endianness\n)\nif test -z \"$cl_cv_sys_endian\"; then\nAC_EGREP_CPP(yes,[#if defined(m68k) || defined(__m68k__) || defined(mc68000) || defined(mc68020) || defined(__mc68020__) || defined(sparc) || defined(__sparc__) || defined(MIPSEB) || defined(__MIPSEB__) || defined(hppa) || defined(__hppa) || defined(m88000) || defined(__m88k__)\n  yes\n#endif\n], cl_cv_sys_endian=\"big endian\")\nfi\nif test -z \"$cl_cv_sys_endian\"; then\nAC_EGREP_CPP(yes,[#if defined(i386) || defined(__i386) || defined(__i386__) || defined(_I386) || defined(MIPSEL) || defined(__MIPSEL__) || defined(__alpha)\n  yes\n#endif\n], cl_cv_sys_endian=\"little endian\")\nfi\nif test -z \"$cl_cv_sys_endian\"; then\ncl_cv_sys_endian=\"guessing little endian\"\nfi\n])\ncase \"$cl_cv_sys_endian\" in\n  *little*)\n    AC_DEFINE(WORDS_LITTLEENDIAN, 1,\n      [Define if the machine's byte ordering is little endian.]) ;;\n  *big*) ;;\nesac\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/m4/general.m4",
    "content": "dnl Copyright (C) 1993-2003 Free Software Foundation, Inc.\ndnl This file is free software, distributed under the terms of the GNU\ndnl General Public License.  As a special exception to the GNU General\ndnl Public License, this file may be distributed as part of a program\ndnl that contains a configuration script generated by Autoconf, under\ndnl the same distribution terms as the rest of that program.\n\ndnl From Bruno Haible, Marcus Daniels, Sam Steingold.\n\nAC_PREREQ(2.13)\n\ndnl without AC_MSG_...:   with AC_MSG_... and caching:\ndnl   AC_TRY_CPP          CL_CPP_CHECK\ndnl   AC_TRY_COMPILE      CL_COMPILE_CHECK\ndnl   AC_TRY_LINK         CL_LINK_CHECK\ndnl   AC_TRY_RUN          CL_RUN_CHECK - would require cross-compiling support\ndnl Usage:\ndnl AC_TRY_CPP(INCLUDES,\ndnl            ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND])\ndnl CL_CPP_CHECK(ECHO-TEXT, CACHE-ID,\ndnl              INCLUDES,\ndnl              ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND])\ndnl AC_TRY_xxx(INCLUDES, FUNCTION-BODY,\ndnl            ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND])\ndnl CL_xxx_CHECK(ECHO-TEXT, CACHE-ID,\ndnl              INCLUDES, FUNCTION-BODY,\ndnl              ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND])\n\nAC_DEFUN([CL_CPP_CHECK],\n[AC_MSG_CHECKING(for $1)\nAC_CACHE_VAL($2,[\nAC_TRY_CPP([$3], $2=yes, $2=no)\n])\nAC_MSG_RESULT([$]$2)\nif test [$]$2 = yes; then\n  ifelse([$4], , :, [$4])\nifelse([$5], , , [else\n  $5\n])dnl\nfi\n])\n\nAC_DEFUN([CL_COMPILE_CHECK],\n[AC_MSG_CHECKING(for $1)\nAC_CACHE_VAL($2,[\nAC_TRY_COMPILE([$3],[$4], $2=yes, $2=no)\n])\nAC_MSG_RESULT([$]$2)\nif test [$]$2 = yes; then\n  ifelse([$5], , :, [$5])\nifelse([$6], , , [else\n  $6\n])dnl\nfi\n])\n\nAC_DEFUN([CL_LINK_CHECK],\n[AC_MSG_CHECKING(for $1)\nAC_CACHE_VAL($2,[\nAC_TRY_LINK([$3],[$4], $2=yes, $2=no)\n])\nAC_MSG_RESULT([$]$2)\nif test [$]$2 = yes; then\n  ifelse([$5], , :, [$5])\nifelse([$6], , , [else\n  $6\n])dnl\nfi\n])\n\ndnl CL_SILENT(ACTION)\ndnl performs ACTION, with AC_MSG_CHECKING and AC_MSG_RESULT being defined away.\nAC_DEFUN([CL_SILENT],\n[pushdef([AC_MSG_CHECKING],[:])dnl\npushdef([AC_CHECKING],[:])dnl\npushdef([AC_MSG_RESULT],[:])dnl\n$1[]dnl\npopdef([AC_MSG_RESULT])dnl\npopdef([AC_CHECKING])dnl\npopdef([AC_MSG_CHECKING])dnl\n])\n\ndnl Expands to the \"extern ...\" prefix used for system declarations.\ndnl AC_LANG_EXTERN()\nAC_DEFUN([AC_LANG_EXTERN],\n[extern\n#ifdef __cplusplus\n\"C\"\n#endif\n])\n\nAC_DEFUN([CL_CC_WORKS],\n[AC_CACHE_CHECK(whether CC works at all, cl_cv_prog_cc_works, [\nAC_LANG_SAVE()\nAC_LANG_C()\nAC_TRY_RUN([int main() { exit(0); }],\ncl_cv_prog_cc_works=yes, cl_cv_prog_cc_works=no,\nAC_TRY_LINK([], [], cl_cv_prog_cc_works=yes, cl_cv_prog_cc_works=no))\nAC_LANG_RESTORE()\n])\ncase \"$cl_cv_prog_cc_works\" in\n  *no) echo \"Installation or configuration problem: C compiler cannot create executables.\"; exit 1;;\n  *yes) ;;\nesac\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/m4/libtool.m4",
    "content": "# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-\n#\n#   Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc.\n#   Written by Gordon Matzigkeit, 1996\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\nm4_define([_LT_COPYING], [dnl\n# Copyright (C) 2014 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program or library that is built\n# using GNU Libtool, you may include this file under the  same\n# distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n])\n\n# serial 58 LT_INIT\n\n\n# LT_PREREQ(VERSION)\n# ------------------\n# Complain and exit if this libtool version is less that VERSION.\nm4_defun([LT_PREREQ],\n[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,\n       [m4_default([$3],\n\t\t   [m4_fatal([Libtool version $1 or higher is required],\n\t\t             63)])],\n       [$2])])\n\n\n# _LT_CHECK_BUILDDIR\n# ------------------\n# Complain if the absolute build directory name contains unusual characters\nm4_defun([_LT_CHECK_BUILDDIR],\n[case `pwd` in\n  *\\ * | *\\\t*)\n    AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;\nesac\n])\n\n\n# LT_INIT([OPTIONS])\n# ------------------\nAC_DEFUN([LT_INIT],\n[AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK\nAC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl\nAC_BEFORE([$0], [LT_LANG])dnl\nAC_BEFORE([$0], [LT_OUTPUT])dnl\nAC_BEFORE([$0], [LTDL_INIT])dnl\nm4_require([_LT_CHECK_BUILDDIR])dnl\n\ndnl Autoconf doesn't catch unexpanded LT_ macros by default:\nm4_pattern_forbid([^_?LT_[A-Z_]+$])dnl\nm4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl\ndnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4\ndnl unless we require an AC_DEFUNed macro:\nAC_REQUIRE([LTOPTIONS_VERSION])dnl\nAC_REQUIRE([LTSUGAR_VERSION])dnl\nAC_REQUIRE([LTVERSION_VERSION])dnl\nAC_REQUIRE([LTOBSOLETE_VERSION])dnl\nm4_require([_LT_PROG_LTMAIN])dnl\n\n_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])\n\ndnl Parse OPTIONS\n_LT_SET_OPTIONS([$0], [$1])\n\n# This can be used to rebuild libtool when needed\nLIBTOOL_DEPS=$ltmain\n\n# Always use our own libtool.\nLIBTOOL=\"${CONFIG_SHELL-$SHELL} \"'$(top_builddir)/libtool'\nAC_SUBST(LIBTOOL)dnl\n\n_LT_SETUP\n\n# Only expand once:\nm4_define([LT_INIT])\n])# LT_INIT\n\n# Old names:\nAU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT])\nAU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_PROG_LIBTOOL], [])\ndnl AC_DEFUN([AM_PROG_LIBTOOL], [])\n\n\n# _LT_PREPARE_CC_BASENAME\n# -----------------------\nm4_defun([_LT_PREPARE_CC_BASENAME], [\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in @S|@*\"\"; do\n      case $cc_temp in\n        compile | *[[\\\\/]]compile | ccache | *[[\\\\/]]ccache ) ;;\n        distcc | *[[\\\\/]]distcc | purify | *[[\\\\/]]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n])# _LT_PREPARE_CC_BASENAME\n\n\n# _LT_CC_BASENAME(CC)\n# -------------------\n# It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME,\n# but that macro is also expanded into generated libtool script, which\n# arranges for $SED and $ECHO to be set by different means.\nm4_defun([_LT_CC_BASENAME],\n[m4_require([_LT_PREPARE_CC_BASENAME])dnl\nAC_REQUIRE([_LT_DECL_SED])dnl\nAC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl\nfunc_cc_basename $1\ncc_basename=$func_cc_basename_result\n])\n\n\n# _LT_FILEUTILS_DEFAULTS\n# ----------------------\n# It is okay to use these file commands and assume they have been set\n# sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'.\nm4_defun([_LT_FILEUTILS_DEFAULTS],\n[: ${CP=\"cp -f\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n])# _LT_FILEUTILS_DEFAULTS\n\n\n# _LT_SETUP\n# ---------\nm4_defun([_LT_SETUP],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nAC_REQUIRE([AC_CANONICAL_BUILD])dnl\nAC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl\nAC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl\n\n_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl\ndnl\n_LT_DECL([], [host_alias], [0], [The host system])dnl\n_LT_DECL([], [host], [0])dnl\n_LT_DECL([], [host_os], [0])dnl\ndnl\n_LT_DECL([], [build_alias], [0], [The build system])dnl\n_LT_DECL([], [build], [0])dnl\n_LT_DECL([], [build_os], [0])dnl\ndnl\nAC_REQUIRE([AC_PROG_CC])dnl\nAC_REQUIRE([LT_PATH_LD])dnl\nAC_REQUIRE([LT_PATH_NM])dnl\ndnl\nAC_REQUIRE([AC_PROG_LN_S])dnl\ntest -z \"$LN_S\" && LN_S=\"ln -s\"\n_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl\ndnl\nAC_REQUIRE([LT_CMD_MAX_LEN])dnl\n_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally \"o\")])dnl\n_LT_DECL([], [exeext], [0], [Executable file suffix (normally \"\")])dnl\ndnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_CHECK_SHELL_FEATURES])dnl\nm4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl\nm4_require([_LT_CMD_RELOAD])dnl\nm4_require([_LT_CHECK_MAGIC_METHOD])dnl\nm4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl\nm4_require([_LT_CMD_OLD_ARCHIVE])dnl\nm4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl\nm4_require([_LT_WITH_SYSROOT])dnl\nm4_require([_LT_CMD_TRUNCATE])dnl\n\n_LT_CONFIG_LIBTOOL_INIT([\n# See if we are running on zsh, and set the options that allow our\n# commands through without removal of \\ escapes INIT.\nif test -n \"\\${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n])\nif test -n \"${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n\n_LT_CHECK_OBJDIR\n\nm4_require([_LT_TAG_COMPILER])dnl\n\ncase $host_os in\naix3*)\n  # AIX sometimes has problems with the GCC collect2 program.  For some\n  # reason, if we set the COLLECT_NAMES environment variable, the problems\n  # vanish in a puff of smoke.\n  if test set != \"${COLLECT_NAMES+set}\"; then\n    COLLECT_NAMES=\n    export COLLECT_NAMES\n  fi\n  ;;\nesac\n\n# Global variables:\nofile=libtool\ncan_build_shared=yes\n\n# All known linkers require a '.a' archive for static linking (except MSVC,\n# which needs '.lib').\nlibext=a\n\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n\nold_CC=$CC\nold_CFLAGS=$CFLAGS\n\n# Set sane defaults for various variables\ntest -z \"$CC\" && CC=cc\ntest -z \"$LTCC\" && LTCC=$CC\ntest -z \"$LTCFLAGS\" && LTCFLAGS=$CFLAGS\ntest -z \"$LD\" && LD=ld\ntest -z \"$ac_objext\" && ac_objext=o\n\n_LT_CC_BASENAME([$compiler])\n\n# Only perform the check for file, if the check method requires it\ntest -z \"$MAGIC_CMD\" && MAGIC_CMD=file\ncase $deplibs_check_method in\nfile_magic*)\n  if test \"$file_magic_cmd\" = '$MAGIC_CMD'; then\n    _LT_PATH_MAGIC\n  fi\n  ;;\nesac\n\n# Use C for the default configuration in the libtool script\nLT_SUPPORTED_TAG([CC])\n_LT_LANG_C_CONFIG\n_LT_LANG_DEFAULT_CONFIG\n_LT_CONFIG_COMMANDS\n])# _LT_SETUP\n\n\n# _LT_PREPARE_SED_QUOTE_VARS\n# --------------------------\n# Define a few sed substitution that help us do robust quoting.\nm4_defun([_LT_PREPARE_SED_QUOTE_VARS],\n[# Backslashify metacharacters that are still active within\n# double-quoted strings.\nsed_quote_subst='s/\\([[\"`$\\\\]]\\)/\\\\\\1/g'\n\n# Same as above, but do not quote variable references.\ndouble_quote_subst='s/\\([[\"`\\\\]]\\)/\\\\\\1/g'\n\n# Sed substitution to delay expansion of an escaped shell variable in a\n# double_quote_subst'ed string.\ndelay_variable_subst='s/\\\\\\\\\\\\\\\\\\\\\\$/\\\\\\\\\\\\$/g'\n\n# Sed substitution to delay expansion of an escaped single quote.\ndelay_single_quote_subst='s/'\\''/'\\'\\\\\\\\\\\\\\'\\''/g'\n\n# Sed substitution to avoid accidental globbing in evaled expressions\nno_glob_subst='s/\\*/\\\\\\*/g'\n])\n\n# _LT_PROG_LTMAIN\n# ---------------\n# Note that this code is called both from 'configure', and 'config.status'\n# now that we use AC_CONFIG_COMMANDS to generate libtool.  Notably,\n# 'config.status' has no value for ac_aux_dir unless we are using Automake,\n# so we pass a copy along to make sure it has a sensible value anyway.\nm4_defun([_LT_PROG_LTMAIN],\n[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl\n_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])\nltmain=$ac_aux_dir/ltmain.sh\n])# _LT_PROG_LTMAIN\n\n\n## ------------------------------------- ##\n## Accumulate code for creating libtool. ##\n## ------------------------------------- ##\n\n# So that we can recreate a full libtool script including additional\n# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS\n# in macros and then make a single call at the end using the 'libtool'\n# label.\n\n\n# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS])\n# ----------------------------------------\n# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later.\nm4_define([_LT_CONFIG_LIBTOOL_INIT],\n[m4_ifval([$1],\n          [m4_append([_LT_OUTPUT_LIBTOOL_INIT],\n                     [$1\n])])])\n\n# Initialize.\nm4_define([_LT_OUTPUT_LIBTOOL_INIT])\n\n\n# _LT_CONFIG_LIBTOOL([COMMANDS])\n# ------------------------------\n# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later.\nm4_define([_LT_CONFIG_LIBTOOL],\n[m4_ifval([$1],\n          [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS],\n                     [$1\n])])])\n\n# Initialize.\nm4_define([_LT_OUTPUT_LIBTOOL_COMMANDS])\n\n\n# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS])\n# -----------------------------------------------------\nm4_defun([_LT_CONFIG_SAVE_COMMANDS],\n[_LT_CONFIG_LIBTOOL([$1])\n_LT_CONFIG_LIBTOOL_INIT([$2])\n])\n\n\n# _LT_FORMAT_COMMENT([COMMENT])\n# -----------------------------\n# Add leading comment marks to the start of each line, and a trailing\n# full-stop to the whole comment if one is not present already.\nm4_define([_LT_FORMAT_COMMENT],\n[m4_ifval([$1], [\nm4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])],\n              [['`$\\]], [\\\\\\&])]m4_bmatch([$1], [[!?.]$], [], [.])\n)])\n\n\n\n## ------------------------ ##\n## FIXME: Eliminate VARNAME ##\n## ------------------------ ##\n\n\n# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])\n# -------------------------------------------------------------------\n# CONFIGNAME is the name given to the value in the libtool script.\n# VARNAME is the (base) name used in the configure script.\n# VALUE may be 0, 1 or 2 for a computed quote escaped value based on\n# VARNAME.  Any other value will be used directly.\nm4_define([_LT_DECL],\n[lt_if_append_uniq([lt_decl_varnames], [$2], [, ],\n    [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name],\n\t[m4_ifval([$1], [$1], [$2])])\n    lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3])\n    m4_ifval([$4],\n\t[lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])\n    lt_dict_add_subkey([lt_decl_dict], [$2],\n\t[tagged?], [m4_ifval([$5], [yes], [no])])])\n])\n\n\n# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])\n# --------------------------------------------------------\nm4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])\n\n\n# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])\n# ------------------------------------------------\nm4_define([lt_decl_tag_varnames],\n[_lt_decl_filter([tagged?], [yes], $@)])\n\n\n# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])\n# ---------------------------------------------------------\nm4_define([_lt_decl_filter],\n[m4_case([$#],\n  [0], [m4_fatal([$0: too few arguments: $#])],\n  [1], [m4_fatal([$0: too few arguments: $#: $1])],\n  [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)],\n  [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)],\n  [lt_dict_filter([lt_decl_dict], $@)])[]dnl\n])\n\n\n# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])\n# --------------------------------------------------\nm4_define([lt_decl_quote_varnames],\n[_lt_decl_filter([value], [1], $@)])\n\n\n# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])\n# ---------------------------------------------------\nm4_define([lt_decl_dquote_varnames],\n[_lt_decl_filter([value], [2], $@)])\n\n\n# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])\n# ---------------------------------------------------\nm4_define([lt_decl_varnames_tagged],\n[m4_assert([$# <= 2])dnl\n_$0(m4_quote(m4_default([$1], [[, ]])),\n    m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]),\n    m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))])\nm4_define([_lt_decl_varnames_tagged],\n[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])])\n\n\n# lt_decl_all_varnames([SEPARATOR], [VARNAME1...])\n# ------------------------------------------------\nm4_define([lt_decl_all_varnames],\n[_$0(m4_quote(m4_default([$1], [[, ]])),\n     m4_if([$2], [],\n\t   m4_quote(lt_decl_varnames),\n\tm4_quote(m4_shift($@))))[]dnl\n])\nm4_define([_lt_decl_all_varnames],\n[lt_join($@, lt_decl_varnames_tagged([$1],\n\t\t\tlt_decl_tag_varnames([[, ]], m4_shift($@))))dnl\n])\n\n\n# _LT_CONFIG_STATUS_DECLARE([VARNAME])\n# ------------------------------------\n# Quote a variable value, and forward it to 'config.status' so that its\n# declaration there will have the same value as in 'configure'.  VARNAME\n# must have a single quote delimited value for this to work.\nm4_define([_LT_CONFIG_STATUS_DECLARE],\n[$1='`$ECHO \"$][$1\" | $SED \"$delay_single_quote_subst\"`'])\n\n\n# _LT_CONFIG_STATUS_DECLARATIONS\n# ------------------------------\n# We delimit libtool config variables with single quotes, so when\n# we write them to config.status, we have to be sure to quote all\n# embedded single quotes properly.  In configure, this macro expands\n# each variable declared with _LT_DECL (and _LT_TAGDECL) into:\n#\n#    <var>='`$ECHO \"$<var>\" | $SED \"$delay_single_quote_subst\"`'\nm4_defun([_LT_CONFIG_STATUS_DECLARATIONS],\n[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),\n    [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])\n\n\n# _LT_LIBTOOL_TAGS\n# ----------------\n# Output comment and list of tags supported by the script\nm4_defun([_LT_LIBTOOL_TAGS],\n[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl\navailable_tags='_LT_TAGS'dnl\n])\n\n\n# _LT_LIBTOOL_DECLARE(VARNAME, [TAG])\n# -----------------------------------\n# Extract the dictionary values for VARNAME (optionally with TAG) and\n# expand to a commented shell variable setting:\n#\n#    # Some comment about what VAR is for.\n#    visible_name=$lt_internal_name\nm4_define([_LT_LIBTOOL_DECLARE],\n[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1],\n\t\t\t\t\t   [description])))[]dnl\nm4_pushdef([_libtool_name],\n    m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl\nm4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])),\n    [0], [_libtool_name=[$]$1],\n    [1], [_libtool_name=$lt_[]$1],\n    [2], [_libtool_name=$lt_[]$1],\n    [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl\nm4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl\n])\n\n\n# _LT_LIBTOOL_CONFIG_VARS\n# -----------------------\n# Produce commented declarations of non-tagged libtool config variables\n# suitable for insertion in the LIBTOOL CONFIG section of the 'libtool'\n# script.  Tagged libtool config variables (even for the LIBTOOL CONFIG\n# section) are produced by _LT_LIBTOOL_TAG_VARS.\nm4_defun([_LT_LIBTOOL_CONFIG_VARS],\n[m4_foreach([_lt_var],\n    m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)),\n    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])])\n\n\n# _LT_LIBTOOL_TAG_VARS(TAG)\n# -------------------------\nm4_define([_LT_LIBTOOL_TAG_VARS],\n[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames),\n    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])])\n\n\n# _LT_TAGVAR(VARNAME, [TAGNAME])\n# ------------------------------\nm4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])\n\n\n# _LT_CONFIG_COMMANDS\n# -------------------\n# Send accumulated output to $CONFIG_STATUS.  Thanks to the lists of\n# variables for single and double quote escaping we saved from calls\n# to _LT_DECL, we can put quote escaped variables declarations\n# into 'config.status', and then the shell code to quote escape them in\n# for loops in 'config.status'.  Finally, any additional code accumulated\n# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.\nm4_defun([_LT_CONFIG_COMMANDS],\n[AC_PROVIDE_IFELSE([LT_OUTPUT],\n\tdnl If the libtool generation code has been placed in $CONFIG_LT,\n\tdnl instead of duplicating it all over again into config.status,\n\tdnl then we will have config.status run $CONFIG_LT later, so it\n\tdnl needs to know what name is stored there:\n        [AC_CONFIG_COMMANDS([libtool],\n            [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])],\n    dnl If the libtool generation code is destined for config.status,\n    dnl expand the accumulated commands and init code now:\n    [AC_CONFIG_COMMANDS([libtool],\n        [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])])\n])#_LT_CONFIG_COMMANDS\n\n\n# Initialize.\nm4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT],\n[\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nsed_quote_subst='$sed_quote_subst'\ndouble_quote_subst='$double_quote_subst'\ndelay_variable_subst='$delay_variable_subst'\n_LT_CONFIG_STATUS_DECLARATIONS\nLTCC='$LTCC'\nLTCFLAGS='$LTCFLAGS'\ncompiler='$compiler_DEFAULT'\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$[]1\n_LTECHO_EOF'\n}\n\n# Quote evaled strings.\nfor var in lt_decl_all_varnames([[ \\\n]], lt_decl_quote_varnames); do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED \\\\\"\\\\\\$sed_quote_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\n# Double-quote double-evaled strings.\nfor var in lt_decl_all_varnames([[ \\\n]], lt_decl_dquote_varnames); do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED -e \\\\\"\\\\\\$double_quote_subst\\\\\" -e \\\\\"\\\\\\$sed_quote_subst\\\\\" -e \\\\\"\\\\\\$delay_variable_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\n_LT_OUTPUT_LIBTOOL_INIT\n])\n\n# _LT_GENERATED_FILE_INIT(FILE, [COMMENT])\n# ------------------------------------\n# Generate a child script FILE with all initialization necessary to\n# reuse the environment learned by the parent script, and make the\n# file executable.  If COMMENT is supplied, it is inserted after the\n# '#!' sequence but before initialization text begins.  After this\n# macro, additional text can be appended to FILE to form the body of\n# the child script.  The macro ends with non-zero status if the\n# file could not be fully written (such as if the disk is full).\nm4_ifdef([AS_INIT_GENERATED],\n[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])],\n[m4_defun([_LT_GENERATED_FILE_INIT],\n[m4_require([AS_PREPARE])]dnl\n[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl\n[lt_write_fail=0\ncat >$1 <<_ASEOF || lt_write_fail=1\n#! $SHELL\n# Generated by $as_me.\n$2\nSHELL=\\${CONFIG_SHELL-$SHELL}\nexport SHELL\n_ASEOF\ncat >>$1 <<\\_ASEOF || lt_write_fail=1\nAS_SHELL_SANITIZE\n_AS_PREPARE\nexec AS_MESSAGE_FD>&1\n_ASEOF\ntest 0 = \"$lt_write_fail\" && chmod +x $1[]dnl\nm4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT\n\n# LT_OUTPUT\n# ---------\n# This macro allows early generation of the libtool script (before\n# AC_OUTPUT is called), incase it is used in configure for compilation\n# tests.\nAC_DEFUN([LT_OUTPUT],\n[: ${CONFIG_LT=./config.lt}\nAC_MSG_NOTICE([creating $CONFIG_LT])\n_LT_GENERATED_FILE_INIT([\"$CONFIG_LT\"],\n[# Run this file to recreate a libtool stub with the current configuration.])\n\ncat >>\"$CONFIG_LT\" <<\\_LTEOF\nlt_cl_silent=false\nexec AS_MESSAGE_LOG_FD>>config.log\n{\n  echo\n  AS_BOX([Running $as_me.])\n} >&AS_MESSAGE_LOG_FD\n\nlt_cl_help=\"\\\n'$as_me' creates a local libtool stub from the current configuration,\nfor use in further configure time tests before the real libtool is\ngenerated.\n\nUsage: $[0] [[OPTIONS]]\n\n  -h, --help      print this help, then exit\n  -V, --version   print version number, then exit\n  -q, --quiet     do not print progress messages\n  -d, --debug     don't remove temporary files\n\nReport bugs to <bug-libtool@gnu.org>.\"\n\nlt_cl_version=\"\\\nm4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl\nm4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])\nconfigured by $[0], generated by m4_PACKAGE_STRING.\n\nCopyright (C) 2011 Free Software Foundation, Inc.\nThis config.lt script is free software; the Free Software Foundation\ngives unlimited permision to copy, distribute and modify it.\"\n\nwhile test 0 != $[#]\ndo\n  case $[1] in\n    --version | --v* | -V )\n      echo \"$lt_cl_version\"; exit 0 ;;\n    --help | --h* | -h )\n      echo \"$lt_cl_help\"; exit 0 ;;\n    --debug | --d* | -d )\n      debug=: ;;\n    --quiet | --q* | --silent | --s* | -q )\n      lt_cl_silent=: ;;\n\n    -*) AC_MSG_ERROR([unrecognized option: $[1]\nTry '$[0] --help' for more information.]) ;;\n\n    *) AC_MSG_ERROR([unrecognized argument: $[1]\nTry '$[0] --help' for more information.]) ;;\n  esac\n  shift\ndone\n\nif $lt_cl_silent; then\n  exec AS_MESSAGE_FD>/dev/null\nfi\n_LTEOF\n\ncat >>\"$CONFIG_LT\" <<_LTEOF\n_LT_OUTPUT_LIBTOOL_COMMANDS_INIT\n_LTEOF\n\ncat >>\"$CONFIG_LT\" <<\\_LTEOF\nAC_MSG_NOTICE([creating $ofile])\n_LT_OUTPUT_LIBTOOL_COMMANDS\nAS_EXIT(0)\n_LTEOF\nchmod +x \"$CONFIG_LT\"\n\n# configure is writing to config.log, but config.lt does its own redirection,\n# appending to config.log, which fails on DOS, as config.log is still kept\n# open by configure.  Here we exec the FD to /dev/null, effectively closing\n# config.log, so it can be properly (re)opened and appended to by config.lt.\nlt_cl_success=:\ntest yes = \"$silent\" &&\n  lt_config_lt_args=\"$lt_config_lt_args --quiet\"\nexec AS_MESSAGE_LOG_FD>/dev/null\n$SHELL \"$CONFIG_LT\" $lt_config_lt_args || lt_cl_success=false\nexec AS_MESSAGE_LOG_FD>>config.log\n$lt_cl_success || AS_EXIT(1)\n])# LT_OUTPUT\n\n\n# _LT_CONFIG(TAG)\n# ---------------\n# If TAG is the built-in tag, create an initial libtool script with a\n# default configuration from the untagged config vars.  Otherwise add code\n# to config.status for appending the configuration named by TAG from the\n# matching tagged config vars.\nm4_defun([_LT_CONFIG],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\n_LT_CONFIG_SAVE_COMMANDS([\n  m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl\n  m4_if(_LT_TAG, [C], [\n    # See if we are running on zsh, and set the options that allow our\n    # commands through without removal of \\ escapes.\n    if test -n \"${ZSH_VERSION+set}\"; then\n      setopt NO_GLOB_SUBST\n    fi\n\n    cfgfile=${ofile}T\n    trap \"$RM \\\"$cfgfile\\\"; exit 1\" 1 2 15\n    $RM \"$cfgfile\"\n\n    cat <<_LT_EOF >> \"$cfgfile\"\n#! $SHELL\n# Generated automatically by $as_me ($PACKAGE) $VERSION\n# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit, 1996\n\n_LT_COPYING\n_LT_LIBTOOL_TAGS\n\n# Configured defaults for sys_lib_dlsearch_path munging.\n: \\${LT_SYS_LIBRARY_PATH=\"$configure_time_lt_sys_library_path\"}\n\n# ### BEGIN LIBTOOL CONFIG\n_LT_LIBTOOL_CONFIG_VARS\n_LT_LIBTOOL_TAG_VARS\n# ### END LIBTOOL CONFIG\n\n_LT_EOF\n\n    cat <<'_LT_EOF' >> \"$cfgfile\"\n\n# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE\n\n_LT_PREPARE_MUNGE_PATH_LIST\n_LT_PREPARE_CC_BASENAME\n\n# ### END FUNCTIONS SHARED WITH CONFIGURE\n\n_LT_EOF\n\n  case $host_os in\n  aix3*)\n    cat <<\\_LT_EOF >> \"$cfgfile\"\n# AIX sometimes has problems with the GCC collect2 program.  For some\n# reason, if we set the COLLECT_NAMES environment variable, the problems\n# vanish in a puff of smoke.\nif test set != \"${COLLECT_NAMES+set}\"; then\n  COLLECT_NAMES=\n  export COLLECT_NAMES\nfi\n_LT_EOF\n    ;;\n  esac\n\n  _LT_PROG_LTMAIN\n\n  # We use sed instead of cat because bash on DJGPP gets confused if\n  # if finds mixed CR/LF and LF-only lines.  Since sed operates in\n  # text mode, it properly converts lines to CR/LF.  This bash problem\n  # is reportedly fixed, but why not run on old versions too?\n  sed '$q' \"$ltmain\" >> \"$cfgfile\" \\\n     || (rm -f \"$cfgfile\"; exit 1)\n\n   mv -f \"$cfgfile\" \"$ofile\" ||\n    (rm -f \"$ofile\" && cp \"$cfgfile\" \"$ofile\" && rm -f \"$cfgfile\")\n  chmod +x \"$ofile\"\n],\n[cat <<_LT_EOF >> \"$ofile\"\n\ndnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded\ndnl in a comment (ie after a #).\n# ### BEGIN LIBTOOL TAG CONFIG: $1\n_LT_LIBTOOL_TAG_VARS(_LT_TAG)\n# ### END LIBTOOL TAG CONFIG: $1\n_LT_EOF\n])dnl /m4_if\n],\n[m4_if([$1], [], [\n    PACKAGE='$PACKAGE'\n    VERSION='$VERSION'\n    RM='$RM'\n    ofile='$ofile'], [])\n])dnl /_LT_CONFIG_SAVE_COMMANDS\n])# _LT_CONFIG\n\n\n# LT_SUPPORTED_TAG(TAG)\n# ---------------------\n# Trace this macro to discover what tags are supported by the libtool\n# --tag option, using:\n#    autoconf --trace 'LT_SUPPORTED_TAG:$1'\nAC_DEFUN([LT_SUPPORTED_TAG], [])\n\n\n# C support is built-in for now\nm4_define([_LT_LANG_C_enabled], [])\nm4_define([_LT_TAGS], [])\n\n\n# LT_LANG(LANG)\n# -------------\n# Enable libtool support for the given language if not already enabled.\nAC_DEFUN([LT_LANG],\n[AC_BEFORE([$0], [LT_OUTPUT])dnl\nm4_case([$1],\n  [C],\t\t\t[_LT_LANG(C)],\n  [C++],\t\t[_LT_LANG(CXX)],\n  [Go],\t\t\t[_LT_LANG(GO)],\n  [Java],\t\t[_LT_LANG(GCJ)],\n  [Fortran 77],\t\t[_LT_LANG(F77)],\n  [Fortran],\t\t[_LT_LANG(FC)],\n  [Windows Resource],\t[_LT_LANG(RC)],\n  [m4_ifdef([_LT_LANG_]$1[_CONFIG],\n    [_LT_LANG($1)],\n    [m4_fatal([$0: unsupported language: \"$1\"])])])dnl\n])# LT_LANG\n\n\n# _LT_LANG(LANGNAME)\n# ------------------\nm4_defun([_LT_LANG],\n[m4_ifdef([_LT_LANG_]$1[_enabled], [],\n  [LT_SUPPORTED_TAG([$1])dnl\n  m4_append([_LT_TAGS], [$1 ])dnl\n  m4_define([_LT_LANG_]$1[_enabled], [])dnl\n  _LT_LANG_$1_CONFIG($1)])dnl\n])# _LT_LANG\n\n\nm4_ifndef([AC_PROG_GO], [\n############################################################\n# NOTE: This macro has been submitted for inclusion into   #\n#  GNU Autoconf as AC_PROG_GO.  When it is available in    #\n#  a released version of Autoconf we should remove this    #\n#  macro and use it instead.                               #\n############################################################\nm4_defun([AC_PROG_GO],\n[AC_LANG_PUSH(Go)dnl\nAC_ARG_VAR([GOC],     [Go compiler command])dnl\nAC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl\n_AC_ARG_VAR_LDFLAGS()dnl\nAC_CHECK_TOOL(GOC, gccgo)\nif test -z \"$GOC\"; then\n  if test -n \"$ac_tool_prefix\"; then\n    AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo])\n  fi\nfi\nif test -z \"$GOC\"; then\n  AC_CHECK_PROG(GOC, gccgo, gccgo, false)\nfi\n])#m4_defun\n])#m4_ifndef\n\n\n# _LT_LANG_DEFAULT_CONFIG\n# -----------------------\nm4_defun([_LT_LANG_DEFAULT_CONFIG],\n[AC_PROVIDE_IFELSE([AC_PROG_CXX],\n  [LT_LANG(CXX)],\n  [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])])\n\nAC_PROVIDE_IFELSE([AC_PROG_F77],\n  [LT_LANG(F77)],\n  [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])])\n\nAC_PROVIDE_IFELSE([AC_PROG_FC],\n  [LT_LANG(FC)],\n  [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])])\n\ndnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal\ndnl pulling things in needlessly.\nAC_PROVIDE_IFELSE([AC_PROG_GCJ],\n  [LT_LANG(GCJ)],\n  [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],\n    [LT_LANG(GCJ)],\n    [AC_PROVIDE_IFELSE([LT_PROG_GCJ],\n      [LT_LANG(GCJ)],\n      [m4_ifdef([AC_PROG_GCJ],\n\t[m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])])\n       m4_ifdef([A][M_PROG_GCJ],\n\t[m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])])\n       m4_ifdef([LT_PROG_GCJ],\n\t[m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])\n\nAC_PROVIDE_IFELSE([AC_PROG_GO],\n  [LT_LANG(GO)],\n  [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])])\n\nAC_PROVIDE_IFELSE([LT_PROG_RC],\n  [LT_LANG(RC)],\n  [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])\n])# _LT_LANG_DEFAULT_CONFIG\n\n# Obsolete macros:\nAU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])\nAU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])\nAU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])\nAU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])\nAU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_CXX], [])\ndnl AC_DEFUN([AC_LIBTOOL_F77], [])\ndnl AC_DEFUN([AC_LIBTOOL_FC], [])\ndnl AC_DEFUN([AC_LIBTOOL_GCJ], [])\ndnl AC_DEFUN([AC_LIBTOOL_RC], [])\n\n\n# _LT_TAG_COMPILER\n# ----------------\nm4_defun([_LT_TAG_COMPILER],\n[AC_REQUIRE([AC_PROG_CC])dnl\n\n_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl\n_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl\n_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl\n_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n])# _LT_TAG_COMPILER\n\n\n# _LT_COMPILER_BOILERPLATE\n# ------------------------\n# Check for compiler boilerplate output or warnings with\n# the simple compiler test code.\nm4_defun([_LT_COMPILER_BOILERPLATE],\n[m4_require([_LT_DECL_SED])dnl\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_compile_test_code\" >conftest.$ac_ext\neval \"$ac_compile\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_compiler_boilerplate=`cat conftest.err`\n$RM conftest*\n])# _LT_COMPILER_BOILERPLATE\n\n\n# _LT_LINKER_BOILERPLATE\n# ----------------------\n# Check for linker boilerplate output or warnings with\n# the simple link test code.\nm4_defun([_LT_LINKER_BOILERPLATE],\n[m4_require([_LT_DECL_SED])dnl\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_link_test_code\" >conftest.$ac_ext\neval \"$ac_link\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_linker_boilerplate=`cat conftest.err`\n$RM -r conftest*\n])# _LT_LINKER_BOILERPLATE\n\n# _LT_REQUIRED_DARWIN_CHECKS\n# -------------------------\nm4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[\n  case $host_os in\n    rhapsody* | darwin*)\n    AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])\n    AC_CHECK_TOOL([NMEDIT], [nmedit], [:])\n    AC_CHECK_TOOL([LIPO], [lipo], [:])\n    AC_CHECK_TOOL([OTOOL], [otool], [:])\n    AC_CHECK_TOOL([OTOOL64], [otool64], [:])\n    _LT_DECL([], [DSYMUTIL], [1],\n      [Tool to manipulate archived DWARF debug symbol files on Mac OS X])\n    _LT_DECL([], [NMEDIT], [1],\n      [Tool to change global to local symbols on Mac OS X])\n    _LT_DECL([], [LIPO], [1],\n      [Tool to manipulate fat objects and archives on Mac OS X])\n    _LT_DECL([], [OTOOL], [1],\n      [ldd/readelf like tool for Mach-O binaries on Mac OS X])\n    _LT_DECL([], [OTOOL64], [1],\n      [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])\n\n    AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],\n      [lt_cv_apple_cc_single_mod=no\n      if test -z \"$LT_MULTI_MODULE\"; then\n\t# By default we will add the -single_module flag. You can override\n\t# by either setting the environment variable LT_MULTI_MODULE\n\t# non-empty at configure time, or by adding -multi_module to the\n\t# link flags.\n\trm -rf libconftest.dylib*\n\techo \"int foo(void){return 1;}\" > conftest.c\n\techo \"$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n-dynamiclib -Wl,-single_module conftest.c\" >&AS_MESSAGE_LOG_FD\n\t$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n\t  -dynamiclib -Wl,-single_module conftest.c 2>conftest.err\n        _lt_result=$?\n\t# If there is a non-empty error log, and \"single_module\"\n\t# appears in it, assume the flag caused a linker warning\n        if test -s conftest.err && $GREP single_module conftest.err; then\n\t  cat conftest.err >&AS_MESSAGE_LOG_FD\n\t# Otherwise, if the output was created with a 0 exit code from\n\t# the compiler, it worked.\n\telif test -f libconftest.dylib && test 0 = \"$_lt_result\"; then\n\t  lt_cv_apple_cc_single_mod=yes\n\telse\n\t  cat conftest.err >&AS_MESSAGE_LOG_FD\n\tfi\n\trm -rf libconftest.dylib*\n\trm -f conftest.*\n      fi])\n\n    AC_CACHE_CHECK([for -exported_symbols_list linker flag],\n      [lt_cv_ld_exported_symbols_list],\n      [lt_cv_ld_exported_symbols_list=no\n      save_LDFLAGS=$LDFLAGS\n      echo \"_main\" > conftest.sym\n      LDFLAGS=\"$LDFLAGS -Wl,-exported_symbols_list,conftest.sym\"\n      AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],\n\t[lt_cv_ld_exported_symbols_list=yes],\n\t[lt_cv_ld_exported_symbols_list=no])\n\tLDFLAGS=$save_LDFLAGS\n    ])\n\n    AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load],\n      [lt_cv_ld_force_load=no\n      cat > conftest.c << _LT_EOF\nint forced_loaded() { return 2;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS -c -o conftest.o conftest.c\" >&AS_MESSAGE_LOG_FD\n      $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD\n      echo \"$AR cru libconftest.a conftest.o\" >&AS_MESSAGE_LOG_FD\n      $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD\n      echo \"$RANLIB libconftest.a\" >&AS_MESSAGE_LOG_FD\n      $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD\n      cat > conftest.c << _LT_EOF\nint main() { return 0;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a\" >&AS_MESSAGE_LOG_FD\n      $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err\n      _lt_result=$?\n      if test -s conftest.err && $GREP force_load conftest.err; then\n\tcat conftest.err >&AS_MESSAGE_LOG_FD\n      elif test -f conftest && test 0 = \"$_lt_result\" && $GREP forced_load conftest >/dev/null 2>&1; then\n\tlt_cv_ld_force_load=yes\n      else\n\tcat conftest.err >&AS_MESSAGE_LOG_FD\n      fi\n        rm -f conftest.err libconftest.a conftest conftest.c\n        rm -rf conftest.dSYM\n    ])\n    case $host_os in\n    rhapsody* | darwin1.[[012]])\n      _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;;\n    darwin1.*)\n      _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;\n    darwin*) # darwin 5.x on\n      # if running on 10.5 or later, the deployment target defaults\n      # to the OS version, if on x86, and 10.4, the deployment\n      # target defaults to 10.4. Don't you love it?\n      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in\n\t10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)\n\t  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;\n\t10.[[012]][[,.]]*)\n\t  _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;\n\t10.*)\n\t  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;\n      esac\n    ;;\n  esac\n    if test yes = \"$lt_cv_apple_cc_single_mod\"; then\n      _lt_dar_single_mod='$single_module'\n    fi\n    if test yes = \"$lt_cv_ld_exported_symbols_list\"; then\n      _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'\n    else\n      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib'\n    fi\n    if test : != \"$DSYMUTIL\" && test no = \"$lt_cv_ld_force_load\"; then\n      _lt_dsymutil='~$DSYMUTIL $lib || :'\n    else\n      _lt_dsymutil=\n    fi\n    ;;\n  esac\n])\n\n\n# _LT_DARWIN_LINKER_FEATURES([TAG])\n# ---------------------------------\n# Checks for linker and compiler features on darwin\nm4_defun([_LT_DARWIN_LINKER_FEATURES],\n[\n  m4_require([_LT_REQUIRED_DARWIN_CHECKS])\n  _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n  _LT_TAGVAR(hardcode_direct, $1)=no\n  _LT_TAGVAR(hardcode_automatic, $1)=yes\n  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported\n  if test yes = \"$lt_cv_ld_force_load\"; then\n    _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience $wl-force_load,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"`'\n    m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes],\n                  [FC],  [_LT_TAGVAR(compiler_needs_object, $1)=yes])\n  else\n    _LT_TAGVAR(whole_archive_flag_spec, $1)=''\n  fi\n  _LT_TAGVAR(link_all_deplibs, $1)=yes\n  _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined\n  case $cc_basename in\n     ifort*|nagfor*) _lt_dar_can_shared=yes ;;\n     *) _lt_dar_can_shared=$GCC ;;\n  esac\n  if test yes = \"$_lt_dar_can_shared\"; then\n    output_verbose_link_cmd=func_echo_all\n    _LT_TAGVAR(archive_cmds, $1)=\"\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod$_lt_dsymutil\"\n    _LT_TAGVAR(module_cmds, $1)=\"\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags$_lt_dsymutil\"\n    _LT_TAGVAR(archive_expsym_cmds, $1)=\"sed 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil\"\n    _LT_TAGVAR(module_expsym_cmds, $1)=\"sed -e 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags$_lt_dar_export_syms$_lt_dsymutil\"\n    m4_if([$1], [CXX],\n[   if test yes != \"$lt_cv_apple_cc_single_mod\"; then\n      _LT_TAGVAR(archive_cmds, $1)=\"\\$CC -r -keep_private_externs -nostdlib -o \\$lib-master.o \\$libobjs~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$lib-master.o \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring$_lt_dsymutil\"\n      _LT_TAGVAR(archive_expsym_cmds, $1)=\"sed 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC -r -keep_private_externs -nostdlib -o \\$lib-master.o \\$libobjs~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$lib-master.o \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring$_lt_dar_export_syms$_lt_dsymutil\"\n    fi\n],[])\n  else\n  _LT_TAGVAR(ld_shlibs, $1)=no\n  fi\n])\n\n# _LT_SYS_MODULE_PATH_AIX([TAGNAME])\n# ----------------------------------\n# Links a minimal program and checks the executable\n# for the system default hardcoded library path. In most cases,\n# this is /usr/lib:/lib, but when the MPI compilers are used\n# the location of the communication and MPI libs are included too.\n# If we don't find anything, use the default library path according\n# to the aix ld manual.\n# Store the results from the different compilers for each TAGNAME.\n# Allow to override them for all tags through lt_cv_aix_libpath.\nm4_defun([_LT_SYS_MODULE_PATH_AIX],\n[m4_require([_LT_DECL_SED])dnl\nif test set = \"${lt_cv_aix_libpath+set}\"; then\n  aix_libpath=$lt_cv_aix_libpath\nelse\n  AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])],\n  [AC_LINK_IFELSE([AC_LANG_PROGRAM],[\n  lt_aix_libpath_sed='[\n      /Import File Strings/,/^$/ {\n\t  /^0/ {\n\t      s/^0  *\\([^ ]*\\) *$/\\1/\n\t      p\n\t  }\n      }]'\n  _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  # Check for a 64-bit object if we didn't find anything.\n  if test -z \"$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])\"; then\n    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  fi],[])\n  if test -z \"$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])\"; then\n    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib\n  fi\n  ])\n  aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])\nfi\n])# _LT_SYS_MODULE_PATH_AIX\n\n\n# _LT_SHELL_INIT(ARG)\n# -------------------\nm4_define([_LT_SHELL_INIT],\n[m4_divert_text([M4SH-INIT], [$1\n])])# _LT_SHELL_INIT\n\n\n\n# _LT_PROG_ECHO_BACKSLASH\n# -----------------------\n# Find how we can fake an echo command that does not interpret backslash.\n# In particular, with Autoconf 2.60 or later we add some code to the start\n# of the generated configure script that will find a shell with a builtin\n# printf (that we can use as an echo command).\nm4_defun([_LT_PROG_ECHO_BACKSLASH],\n[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO\n\nAC_MSG_CHECKING([how to print strings])\n# Test print first, because it will be a builtin if present.\nif test \"X`( print -r -- -n ) 2>/dev/null`\" = X-n && \\\n   test \"X`print -r -- $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='print -r --'\nelif test \"X`printf %s $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='printf %s\\n'\nelse\n  # Use this function as a fallback that always works.\n  func_fallback_echo ()\n  {\n    eval 'cat <<_LTECHO_EOF\n$[]1\n_LTECHO_EOF'\n  }\n  ECHO='func_fallback_echo'\nfi\n\n# func_echo_all arg...\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"$*\"\n}\n\ncase $ECHO in\n  printf*) AC_MSG_RESULT([printf]) ;;\n  print*) AC_MSG_RESULT([print -r]) ;;\n  *) AC_MSG_RESULT([cat]) ;;\nesac\n\nm4_ifdef([_AS_DETECT_SUGGESTED],\n[_AS_DETECT_SUGGESTED([\n  test -n \"${ZSH_VERSION+set}${BASH_VERSION+set}\" || (\n    ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\n    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO\n    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO\n    PATH=/empty FPATH=/empty; export PATH FPATH\n    test \"X`printf %s $ECHO`\" = \"X$ECHO\" \\\n      || test \"X`print -r -- $ECHO`\" = \"X$ECHO\" )])])\n\n_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])\n_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes])\n])# _LT_PROG_ECHO_BACKSLASH\n\n\n# _LT_WITH_SYSROOT\n# ----------------\nAC_DEFUN([_LT_WITH_SYSROOT],\n[AC_MSG_CHECKING([for sysroot])\nAC_ARG_WITH([sysroot],\n[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],\n  [Search for dependent libraries within DIR (or the compiler's sysroot\n   if not specified).])],\n[], [with_sysroot=no])\n\ndnl lt_sysroot will always be passed unquoted.  We quote it here\ndnl in case the user passed a directory name.\nlt_sysroot=\ncase $with_sysroot in #(\n yes)\n   if test yes = \"$GCC\"; then\n     lt_sysroot=`$CC --print-sysroot 2>/dev/null`\n   fi\n   ;; #(\n /*)\n   lt_sysroot=`echo \"$with_sysroot\" | sed -e \"$sed_quote_subst\"`\n   ;; #(\n no|'')\n   ;; #(\n *)\n   AC_MSG_RESULT([$with_sysroot])\n   AC_MSG_ERROR([The sysroot must be an absolute path.])\n   ;;\nesac\n\n AC_MSG_RESULT([${lt_sysroot:-no}])\n_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl\n[dependent libraries, and where our libraries should be installed.])])\n\n# _LT_ENABLE_LOCK\n# ---------------\nm4_defun([_LT_ENABLE_LOCK],\n[AC_ARG_ENABLE([libtool-lock],\n  [AS_HELP_STRING([--disable-libtool-lock],\n    [avoid locking (might break parallel builds)])])\ntest no = \"$enable_libtool_lock\" || enable_libtool_lock=yes\n\n# Some flags need to be propagated to the compiler or linker for good\n# libtool support.\ncase $host in\nia64-*-hpux*)\n  # Find out what ABI is being produced by ac_compile, and set mode\n  # options accordingly.\n  echo 'int i;' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    case `/usr/bin/file conftest.$ac_objext` in\n      *ELF-32*)\n\tHPUX_IA64_MODE=32\n\t;;\n      *ELF-64*)\n\tHPUX_IA64_MODE=64\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n*-*-irix6*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo '[#]line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    if test yes = \"$lt_cv_prog_gnu_ld\"; then\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -melf32bsmip\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -melf32bmipn32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -melf64bmip\"\n\t;;\n      esac\n    else\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -32\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -n32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -64\"\n\t  ;;\n      esac\n    fi\n  fi\n  rm -rf conftest*\n  ;;\n\nmips64*-*linux*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo '[#]line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    emul=elf\n    case `/usr/bin/file conftest.$ac_objext` in\n      *32-bit*)\n\temul=\"${emul}32\"\n\t;;\n      *64-bit*)\n\temul=\"${emul}64\"\n\t;;\n    esac\n    case `/usr/bin/file conftest.$ac_objext` in\n      *MSB*)\n\temul=\"${emul}btsmip\"\n\t;;\n      *LSB*)\n\temul=\"${emul}ltsmip\"\n\t;;\n    esac\n    case `/usr/bin/file conftest.$ac_objext` in\n      *N32*)\n\temul=\"${emul}n32\"\n\t;;\n    esac\n    LD=\"${LD-ld} -m $emul\"\n  fi\n  rm -rf conftest*\n  ;;\n\nx86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \\\ns390*-*linux*|s390*-*tpf*|sparc*-*linux*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.  Note that the listed cases only cover the\n  # situations where additional linker options are needed (such as when\n  # doing 32-bit compilation for a host where ld defaults to 64-bit, or\n  # vice versa); the common cases where no linker options are needed do\n  # not appear in the list.\n  echo 'int i;' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    case `/usr/bin/file conftest.o` in\n      *32-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_i386_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    case `/usr/bin/file conftest.o` in\n\t      *x86-64*)\n\t\tLD=\"${LD-ld} -m elf32_x86_64\"\n\t\t;;\n\t      *)\n\t\tLD=\"${LD-ld} -m elf_i386\"\n\t\t;;\n\t    esac\n\t    ;;\n\t  powerpc64le-*linux*)\n\t    LD=\"${LD-ld} -m elf32lppclinux\"\n\t    ;;\n\t  powerpc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32ppclinux\"\n\t    ;;\n\t  s390x-*linux*)\n\t    LD=\"${LD-ld} -m elf_s390\"\n\t    ;;\n\t  sparc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32_sparc\"\n\t    ;;\n\tesac\n\t;;\n      *64-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_x86_64_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    LD=\"${LD-ld} -m elf_x86_64\"\n\t    ;;\n\t  powerpcle-*linux*)\n\t    LD=\"${LD-ld} -m elf64lppc\"\n\t    ;;\n\t  powerpc-*linux*)\n\t    LD=\"${LD-ld} -m elf64ppc\"\n\t    ;;\n\t  s390*-*linux*|s390*-*tpf*)\n\t    LD=\"${LD-ld} -m elf64_s390\"\n\t    ;;\n\t  sparc*-*linux*)\n\t    LD=\"${LD-ld} -m elf64_sparc\"\n\t    ;;\n\tesac\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n\n*-*-sco3.2v5*)\n  # On SCO OpenServer 5, we need -belf to get full-featured binaries.\n  SAVE_CFLAGS=$CFLAGS\n  CFLAGS=\"$CFLAGS -belf\"\n  AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,\n    [AC_LANG_PUSH(C)\n     AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])\n     AC_LANG_POP])\n  if test yes != \"$lt_cv_cc_needs_belf\"; then\n    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf\n    CFLAGS=$SAVE_CFLAGS\n  fi\n  ;;\n*-*solaris*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo 'int i;' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    case `/usr/bin/file conftest.o` in\n    *64-bit*)\n      case $lt_cv_prog_gnu_ld in\n      yes*)\n        case $host in\n        i?86-*-solaris*|x86_64-*-solaris*)\n          LD=\"${LD-ld} -m elf_x86_64\"\n          ;;\n        sparc*-*-solaris*)\n          LD=\"${LD-ld} -m elf64_sparc\"\n          ;;\n        esac\n        # GNU ld 2.21 introduced _sol2 emulations.  Use them if available.\n        if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then\n          LD=${LD-ld}_sol2\n        fi\n        ;;\n      *)\n\tif ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then\n\t  LD=\"${LD-ld} -64\"\n\tfi\n\t;;\n      esac\n      ;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\nesac\n\nneed_locks=$enable_libtool_lock\n])# _LT_ENABLE_LOCK\n\n\n# _LT_PROG_AR\n# -----------\nm4_defun([_LT_PROG_AR],\n[AC_CHECK_TOOLS(AR, [ar], false)\n: ${AR=ar}\n: ${AR_FLAGS=cru}\n_LT_DECL([], [AR], [1], [The archiver])\n_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive])\n\nAC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file],\n  [lt_cv_ar_at_file=no\n   AC_COMPILE_IFELSE([AC_LANG_PROGRAM],\n     [echo conftest.$ac_objext > conftest.lst\n      lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD'\n      AC_TRY_EVAL([lt_ar_try])\n      if test 0 -eq \"$ac_status\"; then\n\t# Ensure the archiver fails upon bogus file names.\n\trm -f conftest.$ac_objext libconftest.a\n\tAC_TRY_EVAL([lt_ar_try])\n\tif test 0 -ne \"$ac_status\"; then\n          lt_cv_ar_at_file=@\n        fi\n      fi\n      rm -f conftest.* libconftest.a\n     ])\n  ])\n\nif test no = \"$lt_cv_ar_at_file\"; then\n  archiver_list_spec=\nelse\n  archiver_list_spec=$lt_cv_ar_at_file\nfi\n_LT_DECL([], [archiver_list_spec], [1],\n  [How to feed a file listing to the archiver])\n])# _LT_PROG_AR\n\n\n# _LT_CMD_OLD_ARCHIVE\n# -------------------\nm4_defun([_LT_CMD_OLD_ARCHIVE],\n[_LT_PROG_AR\n\nAC_CHECK_TOOL(STRIP, strip, :)\ntest -z \"$STRIP\" && STRIP=:\n_LT_DECL([], [STRIP], [1], [A symbol stripping program])\n\nAC_CHECK_TOOL(RANLIB, ranlib, :)\ntest -z \"$RANLIB\" && RANLIB=:\n_LT_DECL([], [RANLIB], [1],\n    [Commands used to install an old-style archive])\n\n# Determine commands to create old-style static archives.\nold_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'\nold_postinstall_cmds='chmod 644 $oldlib'\nold_postuninstall_cmds=\n\nif test -n \"$RANLIB\"; then\n  case $host_os in\n  bitrig* | openbsd*)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB -t \\$tool_oldlib\"\n    ;;\n  *)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB \\$tool_oldlib\"\n    ;;\n  esac\n  old_archive_cmds=\"$old_archive_cmds~\\$RANLIB \\$tool_oldlib\"\nfi\n\ncase $host_os in\n  darwin*)\n    lock_old_archive_extraction=yes ;;\n  *)\n    lock_old_archive_extraction=no ;;\nesac\n_LT_DECL([], [old_postinstall_cmds], [2])\n_LT_DECL([], [old_postuninstall_cmds], [2])\n_LT_TAGDECL([], [old_archive_cmds], [2],\n    [Commands used to build an old-style archive])\n_LT_DECL([], [lock_old_archive_extraction], [0],\n    [Whether to use a lock for old archive extraction])\n])# _LT_CMD_OLD_ARCHIVE\n\n\n# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,\n#\t\t[OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])\n# ----------------------------------------------------------------\n# Check whether the given compiler option works\nAC_DEFUN([_LT_COMPILER_OPTION],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_SED])dnl\nAC_CACHE_CHECK([$1], [$2],\n  [$2=no\n   m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"$3\"  ## exclude from sc_useless_quotes_in_assignment\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [[^ ]]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&AS_MESSAGE_LOG_FD)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&AS_MESSAGE_LOG_FD\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&AS_MESSAGE_LOG_FD\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       $2=yes\n     fi\n   fi\n   $RM conftest*\n])\n\nif test yes = \"[$]$2\"; then\n    m4_if([$5], , :, [$5])\nelse\n    m4_if([$6], , :, [$6])\nfi\n])# _LT_COMPILER_OPTION\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [])\n\n\n# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,\n#                  [ACTION-SUCCESS], [ACTION-FAILURE])\n# ----------------------------------------------------\n# Check whether the given linker option works\nAC_DEFUN([_LT_LINKER_OPTION],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_SED])dnl\nAC_CACHE_CHECK([$1], [$2],\n  [$2=no\n   save_LDFLAGS=$LDFLAGS\n   LDFLAGS=\"$LDFLAGS $3\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&AS_MESSAGE_LOG_FD\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         $2=yes\n       fi\n     else\n       $2=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=$save_LDFLAGS\n])\n\nif test yes = \"[$]$2\"; then\n    m4_if([$4], , :, [$4])\nelse\n    m4_if([$5], , :, [$5])\nfi\n])# _LT_LINKER_OPTION\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [])\n\n\n# LT_CMD_MAX_LEN\n#---------------\nAC_DEFUN([LT_CMD_MAX_LEN],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\n# find the maximum length of command line arguments\nAC_MSG_CHECKING([the maximum length of command line arguments])\nAC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl\n  i=0\n  teststring=ABCD\n\n  case $build_os in\n  msdosdjgpp*)\n    # On DJGPP, this test can blow up pretty badly due to problems in libc\n    # (any single argument exceeding 2000 bytes causes a buffer overrun\n    # during glob expansion).  Even if it were fixed, the result of this\n    # check would be larger than it should be.\n    lt_cv_sys_max_cmd_len=12288;    # 12K is about right\n    ;;\n\n  gnu*)\n    # Under GNU Hurd, this test is not required because there is\n    # no limit to the length of command line arguments.\n    # Libtool will interpret -1 as no limit whatsoever\n    lt_cv_sys_max_cmd_len=-1;\n    ;;\n\n  cygwin* | mingw* | cegcc*)\n    # On Win9x/ME, this test blows up -- it succeeds, but takes\n    # about 5 minutes as the teststring grows exponentially.\n    # Worse, since 9x/ME are not pre-emptively multitasking,\n    # you end up with a \"frozen\" computer, even though with patience\n    # the test eventually succeeds (with a max line length of 256k).\n    # Instead, let's just punt: use the minimum linelength reported by\n    # all of the supported platforms: 8192 (on NT/2K/XP).\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  mint*)\n    # On MiNT this can take a long time and run out of memory.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  amigaos*)\n    # On AmigaOS with pdksh, this test takes hours, literally.\n    # So we just punt and use a minimum line length of 8192.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)\n    # This has been around since 386BSD, at least.  Likely further.\n    if test -x /sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`\n    elif test -x /usr/sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`\n    else\n      lt_cv_sys_max_cmd_len=65536\t# usable default for all BSDs\n    fi\n    # And add a safety zone\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    ;;\n\n  interix*)\n    # We know the value 262144 and hardcode it with a safety zone (like BSD)\n    lt_cv_sys_max_cmd_len=196608\n    ;;\n\n  os2*)\n    # The test takes a long time on OS/2.\n    lt_cv_sys_max_cmd_len=8192\n    ;;\n\n  osf*)\n    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure\n    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not\n    # nice to cause kernel panics so lets avoid the loop below.\n    # First set a reasonable default.\n    lt_cv_sys_max_cmd_len=16384\n    #\n    if test -x /sbin/sysconfig; then\n      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in\n        *1*) lt_cv_sys_max_cmd_len=-1 ;;\n      esac\n    fi\n    ;;\n  sco3.2v5*)\n    lt_cv_sys_max_cmd_len=102400\n    ;;\n  sysv5* | sco5v6* | sysv4.2uw2*)\n    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`\n    if test -n \"$kargmax\"; then\n      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[\t ]]//'`\n    else\n      lt_cv_sys_max_cmd_len=32768\n    fi\n    ;;\n  *)\n    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`\n    if test -n \"$lt_cv_sys_max_cmd_len\" && \\\n       test undefined != \"$lt_cv_sys_max_cmd_len\"; then\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    else\n      # Make teststring a little bigger before we do anything with it.\n      # a 1K string should be a reasonable start.\n      for i in 1 2 3 4 5 6 7 8; do\n        teststring=$teststring$teststring\n      done\n      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}\n      # If test is not a shell built-in, we'll probably end up computing a\n      # maximum length that is only half of the actual maximum length, but\n      # we can't tell.\n      while { test X`env echo \"$teststring$teststring\" 2>/dev/null` \\\n\t         = \"X$teststring$teststring\"; } >/dev/null 2>&1 &&\n\t      test 17 != \"$i\" # 1/2 MB should be enough\n      do\n        i=`expr $i + 1`\n        teststring=$teststring$teststring\n      done\n      # Only check the string length outside the loop.\n      lt_cv_sys_max_cmd_len=`expr \"X$teststring\" : \".*\" 2>&1`\n      teststring=\n      # Add a significant safety factor because C++ compilers can tack on\n      # massive amounts of additional arguments before passing them to the\n      # linker.  It appears as though 1/2 is a usable value.\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 2`\n    fi\n    ;;\n  esac\n])\nif test -n \"$lt_cv_sys_max_cmd_len\"; then\n  AC_MSG_RESULT($lt_cv_sys_max_cmd_len)\nelse\n  AC_MSG_RESULT(none)\nfi\nmax_cmd_len=$lt_cv_sys_max_cmd_len\n_LT_DECL([], [max_cmd_len], [0],\n    [What is the maximum length of a command?])\n])# LT_CMD_MAX_LEN\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])\n\n\n# _LT_HEADER_DLFCN\n# ----------------\nm4_defun([_LT_HEADER_DLFCN],\n[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl\n])# _LT_HEADER_DLFCN\n\n\n# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,\n#                      ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)\n# ----------------------------------------------------------------\nm4_defun([_LT_TRY_DLOPEN_SELF],\n[m4_require([_LT_HEADER_DLFCN])dnl\nif test yes = \"$cross_compiling\"; then :\n  [$4]\nelse\n  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2\n  lt_status=$lt_dlunknown\n  cat > conftest.$ac_ext <<_LT_EOF\n[#line $LINENO \"configure\"\n#include \"confdefs.h\"\n\n#if HAVE_DLFCN_H\n#include <dlfcn.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef RTLD_GLOBAL\n#  define LT_DLGLOBAL\t\tRTLD_GLOBAL\n#else\n#  ifdef DL_GLOBAL\n#    define LT_DLGLOBAL\t\tDL_GLOBAL\n#  else\n#    define LT_DLGLOBAL\t\t0\n#  endif\n#endif\n\n/* We may have to define LT_DLLAZY_OR_NOW in the command line if we\n   find out it does not work in some platform. */\n#ifndef LT_DLLAZY_OR_NOW\n#  ifdef RTLD_LAZY\n#    define LT_DLLAZY_OR_NOW\t\tRTLD_LAZY\n#  else\n#    ifdef DL_LAZY\n#      define LT_DLLAZY_OR_NOW\t\tDL_LAZY\n#    else\n#      ifdef RTLD_NOW\n#        define LT_DLLAZY_OR_NOW\tRTLD_NOW\n#      else\n#        ifdef DL_NOW\n#          define LT_DLLAZY_OR_NOW\tDL_NOW\n#        else\n#          define LT_DLLAZY_OR_NOW\t0\n#        endif\n#      endif\n#    endif\n#  endif\n#endif\n\n/* When -fvisibility=hidden is used, assume the code has been annotated\n   correspondingly for the symbols needed.  */\n#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))\nint fnord () __attribute__((visibility(\"default\")));\n#endif\n\nint fnord () { return 42; }\nint main ()\n{\n  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);\n  int status = $lt_dlunknown;\n\n  if (self)\n    {\n      if (dlsym (self,\"fnord\"))       status = $lt_dlno_uscore;\n      else\n        {\n\t  if (dlsym( self,\"_fnord\"))  status = $lt_dlneed_uscore;\n          else puts (dlerror ());\n\t}\n      /* dlclose (self); */\n    }\n  else\n    puts (dlerror ());\n\n  return status;\n}]\n_LT_EOF\n  if AC_TRY_EVAL(ac_link) && test -s \"conftest$ac_exeext\" 2>/dev/null; then\n    (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null\n    lt_status=$?\n    case x$lt_status in\n      x$lt_dlno_uscore) $1 ;;\n      x$lt_dlneed_uscore) $2 ;;\n      x$lt_dlunknown|x*) $3 ;;\n    esac\n  else :\n    # compilation failed\n    $3\n  fi\nfi\nrm -fr conftest*\n])# _LT_TRY_DLOPEN_SELF\n\n\n# LT_SYS_DLOPEN_SELF\n# ------------------\nAC_DEFUN([LT_SYS_DLOPEN_SELF],\n[m4_require([_LT_HEADER_DLFCN])dnl\nif test yes != \"$enable_dlopen\"; then\n  enable_dlopen=unknown\n  enable_dlopen_self=unknown\n  enable_dlopen_self_static=unknown\nelse\n  lt_cv_dlopen=no\n  lt_cv_dlopen_libs=\n\n  case $host_os in\n  beos*)\n    lt_cv_dlopen=load_add_on\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n    ;;\n\n  mingw* | pw32* | cegcc*)\n    lt_cv_dlopen=LoadLibrary\n    lt_cv_dlopen_libs=\n    ;;\n\n  cygwin*)\n    lt_cv_dlopen=dlopen\n    lt_cv_dlopen_libs=\n    ;;\n\n  darwin*)\n    # if libdl is installed we need to link against it\n    AC_CHECK_LIB([dl], [dlopen],\n\t\t[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[\n    lt_cv_dlopen=dyld\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n    ])\n    ;;\n\n  tpf*)\n    # Don't try to run any link tests for TPF.  We know it's impossible\n    # because TPF is a cross-compiler, and we know how we open DSOs.\n    lt_cv_dlopen=dlopen\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=no\n    ;;\n\n  *)\n    AC_CHECK_FUNC([shl_load],\n\t  [lt_cv_dlopen=shl_load],\n      [AC_CHECK_LIB([dld], [shl_load],\n\t    [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld],\n\t[AC_CHECK_FUNC([dlopen],\n\t      [lt_cv_dlopen=dlopen],\n\t  [AC_CHECK_LIB([dl], [dlopen],\n\t\t[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],\n\t    [AC_CHECK_LIB([svld], [dlopen],\n\t\t  [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld],\n\t      [AC_CHECK_LIB([dld], [dld_link],\n\t\t    [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld])\n\t      ])\n\t    ])\n\t  ])\n\t])\n      ])\n    ;;\n  esac\n\n  if test no = \"$lt_cv_dlopen\"; then\n    enable_dlopen=no\n  else\n    enable_dlopen=yes\n  fi\n\n  case $lt_cv_dlopen in\n  dlopen)\n    save_CPPFLAGS=$CPPFLAGS\n    test yes = \"$ac_cv_header_dlfcn_h\" && CPPFLAGS=\"$CPPFLAGS -DHAVE_DLFCN_H\"\n\n    save_LDFLAGS=$LDFLAGS\n    wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $export_dynamic_flag_spec\\\"\n\n    save_LIBS=$LIBS\n    LIBS=\"$lt_cv_dlopen_libs $LIBS\"\n\n    AC_CACHE_CHECK([whether a program can dlopen itself],\n\t  lt_cv_dlopen_self, [dnl\n\t  _LT_TRY_DLOPEN_SELF(\n\t    lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,\n\t    lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)\n    ])\n\n    if test yes = \"$lt_cv_dlopen_self\"; then\n      wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $lt_prog_compiler_static\\\"\n      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],\n\t  lt_cv_dlopen_self_static, [dnl\n\t  _LT_TRY_DLOPEN_SELF(\n\t    lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,\n\t    lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)\n      ])\n    fi\n\n    CPPFLAGS=$save_CPPFLAGS\n    LDFLAGS=$save_LDFLAGS\n    LIBS=$save_LIBS\n    ;;\n  esac\n\n  case $lt_cv_dlopen_self in\n  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;\n  *) enable_dlopen_self=unknown ;;\n  esac\n\n  case $lt_cv_dlopen_self_static in\n  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;\n  *) enable_dlopen_self_static=unknown ;;\n  esac\nfi\n_LT_DECL([dlopen_support], [enable_dlopen], [0],\n\t [Whether dlopen is supported])\n_LT_DECL([dlopen_self], [enable_dlopen_self], [0],\n\t [Whether dlopen of programs is supported])\n_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],\n\t [Whether dlopen of statically linked programs is supported])\n])# LT_SYS_DLOPEN_SELF\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])\n\n\n# _LT_COMPILER_C_O([TAGNAME])\n# ---------------------------\n# Check to see if options -c and -o are simultaneously supported by compiler.\n# This macro does not hard code the compiler like AC_PROG_CC_C_O.\nm4_defun([_LT_COMPILER_C_O],\n[m4_require([_LT_DECL_SED])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_TAG_COMPILER])dnl\nAC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],\n  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)],\n  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [[^ ]]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&AS_MESSAGE_LOG_FD)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&AS_MESSAGE_LOG_FD\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&AS_MESSAGE_LOG_FD\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes\n     fi\n   fi\n   chmod u+w . 2>&AS_MESSAGE_LOG_FD\n   $RM conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM conftest*\n])\n_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],\n\t[Does compiler simultaneously support -c and -o options?])\n])# _LT_COMPILER_C_O\n\n\n# _LT_COMPILER_FILE_LOCKS([TAGNAME])\n# ----------------------------------\n# Check to see if we can do hard links to lock some files if needed\nm4_defun([_LT_COMPILER_FILE_LOCKS],\n[m4_require([_LT_ENABLE_LOCK])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\n_LT_COMPILER_C_O([$1])\n\nhard_links=nottested\nif test no = \"$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)\" && test no != \"$need_locks\"; then\n  # do not overwrite the value of need_locks provided by the user\n  AC_MSG_CHECKING([if we can lock with hard links])\n  hard_links=yes\n  $RM conftest*\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  touch conftest.a\n  ln conftest.a conftest.b 2>&5 || hard_links=no\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  AC_MSG_RESULT([$hard_links])\n  if test no = \"$hard_links\"; then\n    AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe])\n    need_locks=warn\n  fi\nelse\n  need_locks=no\nfi\n_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])\n])# _LT_COMPILER_FILE_LOCKS\n\n\n# _LT_CHECK_OBJDIR\n# ----------------\nm4_defun([_LT_CHECK_OBJDIR],\n[AC_CACHE_CHECK([for objdir], [lt_cv_objdir],\n[rm -f .libs 2>/dev/null\nmkdir .libs 2>/dev/null\nif test -d .libs; then\n  lt_cv_objdir=.libs\nelse\n  # MS-DOS does not allow filenames that begin with a dot.\n  lt_cv_objdir=_libs\nfi\nrmdir .libs 2>/dev/null])\nobjdir=$lt_cv_objdir\n_LT_DECL([], [objdir], [0],\n         [The name of the directory that contains temporary libtool files])dnl\nm4_pattern_allow([LT_OBJDIR])dnl\nAC_DEFINE_UNQUOTED([LT_OBJDIR], \"$lt_cv_objdir/\",\n  [Define to the sub-directory where libtool stores uninstalled libraries.])\n])# _LT_CHECK_OBJDIR\n\n\n# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])\n# --------------------------------------\n# Check hardcoding attributes.\nm4_defun([_LT_LINKER_HARDCODE_LIBPATH],\n[AC_MSG_CHECKING([how to hardcode library paths into programs])\n_LT_TAGVAR(hardcode_action, $1)=\nif test -n \"$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\" ||\n   test -n \"$_LT_TAGVAR(runpath_var, $1)\" ||\n   test yes = \"$_LT_TAGVAR(hardcode_automatic, $1)\"; then\n\n  # We can hardcode non-existent directories.\n  if test no != \"$_LT_TAGVAR(hardcode_direct, $1)\" &&\n     # If the only mechanism to avoid hardcoding is shlibpath_var, we\n     # have to relink, otherwise we might link with an installed library\n     # when we should be linking with a yet-to-be-installed one\n     ## test no != \"$_LT_TAGVAR(hardcode_shlibpath_var, $1)\" &&\n     test no != \"$_LT_TAGVAR(hardcode_minus_L, $1)\"; then\n    # Linking always hardcodes the temporary library directory.\n    _LT_TAGVAR(hardcode_action, $1)=relink\n  else\n    # We can link without hardcoding, and we can hardcode nonexisting dirs.\n    _LT_TAGVAR(hardcode_action, $1)=immediate\n  fi\nelse\n  # We cannot hardcode anything, or else we can only hardcode existing\n  # directories.\n  _LT_TAGVAR(hardcode_action, $1)=unsupported\nfi\nAC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])\n\nif test relink = \"$_LT_TAGVAR(hardcode_action, $1)\" ||\n   test yes = \"$_LT_TAGVAR(inherit_rpath, $1)\"; then\n  # Fast installation is not supported\n  enable_fast_install=no\nelif test yes = \"$shlibpath_overrides_runpath\" ||\n     test no = \"$enable_shared\"; then\n  # Fast installation is not necessary\n  enable_fast_install=needless\nfi\n_LT_TAGDECL([], [hardcode_action], [0],\n    [How to hardcode a shared library path into an executable])\n])# _LT_LINKER_HARDCODE_LIBPATH\n\n\n# _LT_CMD_STRIPLIB\n# ----------------\nm4_defun([_LT_CMD_STRIPLIB],\n[m4_require([_LT_DECL_EGREP])\nstriplib=\nold_striplib=\nAC_MSG_CHECKING([whether stripping libraries is possible])\nif test -n \"$STRIP\" && $STRIP -V 2>&1 | $GREP \"GNU strip\" >/dev/null; then\n  test -z \"$old_striplib\" && old_striplib=\"$STRIP --strip-debug\"\n  test -z \"$striplib\" && striplib=\"$STRIP --strip-unneeded\"\n  AC_MSG_RESULT([yes])\nelse\n# FIXME - insert some real tests, host_os isn't really good enough\n  case $host_os in\n  darwin*)\n    if test -n \"$STRIP\"; then\n      striplib=\"$STRIP -x\"\n      old_striplib=\"$STRIP -S\"\n      AC_MSG_RESULT([yes])\n    else\n      AC_MSG_RESULT([no])\n    fi\n    ;;\n  *)\n    AC_MSG_RESULT([no])\n    ;;\n  esac\nfi\n_LT_DECL([], [old_striplib], [1], [Commands to strip libraries])\n_LT_DECL([], [striplib], [1])\n])# _LT_CMD_STRIPLIB\n\n\n# _LT_PREPARE_MUNGE_PATH_LIST\n# ---------------------------\n# Make sure func_munge_path_list() is defined correctly.\nm4_defun([_LT_PREPARE_MUNGE_PATH_LIST],\n[[# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x@S|@2 in\n    x)\n        ;;\n    *:)\n        eval @S|@1=\\\"`$ECHO @S|@2 | $SED 's/:/ /g'` \\@S|@@S|@1\\\"\n        ;;\n    x:*)\n        eval @S|@1=\\\"\\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval @S|@1=\\\"\\@S|@@S|@1\\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval @S|@1=\\\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\@S|@@S|@1\\\"\n        ;;\n    *)\n        eval @S|@1=\\\"`$ECHO @S|@2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n]])# _LT_PREPARE_PATH_LIST\n\n\n# _LT_SYS_DYNAMIC_LINKER([TAG])\n# -----------------------------\n# PORTME Fill in your ld.so characteristics\nm4_defun([_LT_SYS_DYNAMIC_LINKER],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_OBJDUMP])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_CHECK_SHELL_FEATURES])dnl\nm4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl\nAC_MSG_CHECKING([dynamic linker characteristics])\nm4_if([$1],\n\t[], [\nif test yes = \"$GCC\"; then\n  case $host_os in\n    darwin*) lt_awk_arg='/^libraries:/,/LR/' ;;\n    *) lt_awk_arg='/^libraries:/' ;;\n  esac\n  case $host_os in\n    mingw* | cegcc*) lt_sed_strip_eq='s|=\\([[A-Za-z]]:\\)|\\1|g' ;;\n    *) lt_sed_strip_eq='s|=/|/|g' ;;\n  esac\n  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e \"s/^libraries://\" -e $lt_sed_strip_eq`\n  case $lt_search_path_spec in\n  *\\;*)\n    # if the path contains \";\" then we assume it to be the separator\n    # otherwise default to the standard path separator (i.e. \":\") - it is\n    # assumed that no part of a normal pathname contains \";\" but that should\n    # okay in the real world where \";\" in dirpaths is itself problematic.\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED 's/;/ /g'`\n    ;;\n  *)\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED \"s/$PATH_SEPARATOR/ /g\"`\n    ;;\n  esac\n  # Ok, now we have the path, separated by spaces, we can step through it\n  # and add multilib dir if necessary...\n  lt_tmp_lt_search_path_spec=\n  lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`\n  # ...but if some path component already ends with the multilib dir we assume\n  # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer).\n  case \"$lt_multi_os_dir; $lt_search_path_spec \" in\n  \"/; \"* | \"/.; \"* | \"/./; \"* | *\"$lt_multi_os_dir \"* | *\"$lt_multi_os_dir/ \"*)\n    lt_multi_os_dir=\n    ;;\n  esac\n  for lt_sys_path in $lt_search_path_spec; do\n    if test -d \"$lt_sys_path$lt_multi_os_dir\"; then\n      lt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir\"\n    elif test -n \"$lt_multi_os_dir\"; then\n      test -d \"$lt_sys_path\" && \\\n\tlt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path\"\n    fi\n  done\n  lt_search_path_spec=`$ECHO \"$lt_tmp_lt_search_path_spec\" | awk '\nBEGIN {RS = \" \"; FS = \"/|\\n\";} {\n  lt_foo = \"\";\n  lt_count = 0;\n  for (lt_i = NF; lt_i > 0; lt_i--) {\n    if ($lt_i != \"\" && $lt_i != \".\") {\n      if ($lt_i == \"..\") {\n        lt_count++;\n      } else {\n        if (lt_count == 0) {\n          lt_foo = \"/\" $lt_i lt_foo;\n        } else {\n          lt_count--;\n        }\n      }\n    }\n  }\n  if (lt_foo != \"\") { lt_freq[[lt_foo]]++; }\n  if (lt_freq[[lt_foo]] == 1) { print lt_foo; }\n}'`\n  # AWK program above erroneously prepends '/' to C:/dos/paths\n  # for these hosts.\n  case $host_os in\n    mingw* | cegcc*) lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" |\\\n      $SED 's|/\\([[A-Za-z]]:\\)|\\1|g'` ;;\n  esac\n  sys_lib_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $lt_NL2SP`\nelse\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\nfi])\nlibrary_names_spec=\nlibname_spec='lib$name'\nsoname_spec=\nshrext_cmds=.so\npostinstall_cmds=\npostuninstall_cmds=\nfinish_cmds=\nfinish_eval=\nshlibpath_var=\nshlibpath_overrides_runpath=unknown\nversion_type=none\ndynamic_linker=\"$host_os ld.so\"\nsys_lib_dlsearch_path_spec=\"/lib /usr/lib\"\nneed_lib_prefix=unknown\nhardcode_into_libs=no\n\n# when you set need_version to no, make sure it does not cause -set_version\n# flags to be left without arguments\nneed_version=unknown\n\nAC_ARG_VAR([LT_SYS_LIBRARY_PATH],\n[User-defined run-time library search path.])\n\ncase $host_os in\naix3*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname.a'\n  shlibpath_var=LIBPATH\n\n  # AIX 3 has no versioning support, so we append a major version to the name.\n  soname_spec='$libname$release$shared_ext$major'\n  ;;\n\naix[[4-9]]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  hardcode_into_libs=yes\n  if test ia64 = \"$host_cpu\"; then\n    # AIX 5 supports IA64\n    library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext'\n    shlibpath_var=LD_LIBRARY_PATH\n  else\n    # With GCC up to 2.95.x, collect2 would create an import file\n    # for dependence libraries.  The import file would start with\n    # the line '#! .'.  This would cause the generated library to\n    # depend on '.', always an invalid library.  This was fixed in\n    # development snapshots of GCC prior to 3.0.\n    case $host_os in\n      aix4 | aix4.[[01]] | aix4.[[01]].*)\n      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'\n\t   echo ' yes '\n\t   echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then\n\t:\n      else\n\tcan_build_shared=no\n      fi\n      ;;\n    esac\n    # Using Import Files as archive members, it is possible to support\n    # filename-based versioning of shared library archives on AIX. While\n    # this would work for both with and without runtime linking, it will\n    # prevent static linking of such archives. So we do filename-based\n    # shared library versioning with .so extension only, which is used\n    # when both runtime linking and shared linking is enabled.\n    # Unfortunately, runtime linking may impact performance, so we do\n    # not want this to be the default eventually. Also, we use the\n    # versioned .so libs for executables only if there is the -brtl\n    # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only.\n    # To allow for filename-based versioning support, we need to create\n    # libNAME.so.V as an archive file, containing:\n    # *) an Import File, referring to the versioned filename of the\n    #    archive as well as the shared archive member, telling the\n    #    bitwidth (32 or 64) of that shared object, and providing the\n    #    list of exported symbols of that shared object, eventually\n    #    decorated with the 'weak' keyword\n    # *) the shared object with the F_LOADONLY flag set, to really avoid\n    #    it being seen by the linker.\n    # At run time we better use the real file rather than another symlink,\n    # but for link time we create the symlink libNAME.so -> libNAME.so.V\n\n    case $with_aix_soname,$aix_use_runtimelinking in\n    # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct\n    # soname into executable. Probably we can add versioning support to\n    # collect2, so additional links can be useful in future.\n    aix,yes) # traditional libtool\n      dynamic_linker='AIX unversionable lib.so'\n      # If using run time linking (on AIX 4.2 or later) use lib<name>.so\n      # instead of lib<name>.a to let people know that these are not\n      # typical AIX shared libraries.\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n      ;;\n    aix,no) # traditional AIX only\n      dynamic_linker='AIX lib.a[(]lib.so.V[)]'\n      # We preserve .a as extension for shared libraries through AIX4.2\n      # and later when we are not doing run time linking.\n      library_names_spec='$libname$release.a $libname.a'\n      soname_spec='$libname$release$shared_ext$major'\n      ;;\n    svr4,*) # full svr4 only\n      dynamic_linker=\"AIX lib.so.V[(]$shared_archive_member_spec.o[)]\"\n      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'\n      # We do not specify a path in Import Files, so LIBPATH fires.\n      shlibpath_overrides_runpath=yes\n      ;;\n    *,yes) # both, prefer svr4\n      dynamic_linker=\"AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]\"\n      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'\n      # unpreferred sharedlib libNAME.a needs extra handling\n      postinstall_cmds='test -n \"$linkname\" || linkname=\"$realname\"~func_stripname \"\" \".so\" \"$linkname\"~$install_shared_prog \"$dir/$func_stripname_result.$libext\" \"$destdir/$func_stripname_result.$libext\"~test -z \"$tstripme\" || test -z \"$striplib\" || $striplib \"$destdir/$func_stripname_result.$libext\"'\n      postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname \"\" \".so\" \"$n\"~test \"$func_stripname_result\" = \"$n\" || func_append rmfiles \" $odir/$func_stripname_result.$libext\"'\n      # We do not specify a path in Import Files, so LIBPATH fires.\n      shlibpath_overrides_runpath=yes\n      ;;\n    *,no) # both, prefer aix\n      dynamic_linker=\"AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]\"\n      library_names_spec='$libname$release.a $libname.a'\n      soname_spec='$libname$release$shared_ext$major'\n      # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling\n      postinstall_cmds='test -z \"$dlname\" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z \"$tstripme\" || test -z \"$striplib\" || $striplib $destdir/$dlname~test -n \"$linkname\" || linkname=$realname~func_stripname \"\" \".a\" \"$linkname\"~(cd \"$destdir\" && $LN_S -f $dlname $func_stripname_result.so)'\n      postuninstall_cmds='test -z \"$dlname\" || func_append rmfiles \" $odir/$dlname\"~for n in $old_library $library_names; do :; done~func_stripname \"\" \".a\" \"$n\"~func_append rmfiles \" $odir/$func_stripname_result.so\"'\n      ;;\n    esac\n    shlibpath_var=LIBPATH\n  fi\n  ;;\n\namigaos*)\n  case $host_cpu in\n  powerpc)\n    # Since July 2007 AmigaOS4 officially supports .so libraries.\n    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    ;;\n  m68k)\n    library_names_spec='$libname.ixlibrary $libname.a'\n    # Create ${libname}_ixlibrary.a entries in /sys/libs.\n    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all \"$lib\" | $SED '\\''s%^.*/\\([[^/]]*\\)\\.ixlibrary$%\\1%'\\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show \"cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a\"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'\n    ;;\n  esac\n  ;;\n\nbeos*)\n  library_names_spec='$libname$shared_ext'\n  dynamic_linker=\"$host_os ld.so\"\n  shlibpath_var=LIBRARY_PATH\n  ;;\n\nbsdi[[45]]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=\"/shlib /usr/lib /usr/local/lib\"\n  # the default ld.so.conf also contains /usr/contrib/lib and\n  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow\n  # libtool to hard-code these into programs\n  ;;\n\ncygwin* | mingw* | pw32* | cegcc*)\n  version_type=windows\n  shrext_cmds=.dll\n  need_version=no\n  need_lib_prefix=no\n\n  case $GCC,$cc_basename in\n  yes,*)\n    # gcc\n    library_names_spec='$libname.dll.a'\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\$file`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname~\n      chmod a+x \\$dldir/$dlname~\n      if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n        eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n      fi'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n\n    case $host_os in\n    cygwin*)\n      # Cygwin DLLs use 'cyg' prefix rather than 'lib'\n      soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'\nm4_if([$1], [],[\n      sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/lib/w32api\"])\n      ;;\n    mingw* | cegcc*)\n      # MinGW DLLs use traditional 'lib' prefix\n      soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'\n      ;;\n    pw32*)\n      # pw32 DLLs use 'pw' prefix rather than 'lib'\n      library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'\n      ;;\n    esac\n    dynamic_linker='Win32 ld.exe'\n    ;;\n\n  *,cl*)\n    # Native MSVC\n    libname_spec='$name'\n    soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'\n    library_names_spec='$libname.dll.lib'\n\n    case $build_os in\n    mingw*)\n      sys_lib_search_path_spec=\n      lt_save_ifs=$IFS\n      IFS=';'\n      for lt_path in $LIB\n      do\n        IFS=$lt_save_ifs\n        # Let DOS variable expansion print the short 8.3 style file name.\n        lt_path=`cd \"$lt_path\" 2>/dev/null && cmd //C \"for %i in (\".\") do @echo %~si\"`\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec $lt_path\"\n      done\n      IFS=$lt_save_ifs\n      # Convert to MSYS style.\n      sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | sed -e 's|\\\\\\\\|/|g' -e 's| \\\\([[a-zA-Z]]\\\\):| /\\\\1|g' -e 's|^ ||'`\n      ;;\n    cygwin*)\n      # Convert to unix form, then to dos form, then back to unix form\n      # but this time dos style (no spaces!) so that the unix form looks\n      # like /cygdrive/c/PROGRA~1:/cygdr...\n      sys_lib_search_path_spec=`cygpath --path --unix \"$LIB\"`\n      sys_lib_search_path_spec=`cygpath --path --dos \"$sys_lib_search_path_spec\" 2>/dev/null`\n      sys_lib_search_path_spec=`cygpath --path --unix \"$sys_lib_search_path_spec\" | $SED -e \"s/$PATH_SEPARATOR/ /g\"`\n      ;;\n    *)\n      sys_lib_search_path_spec=$LIB\n      if $ECHO \"$sys_lib_search_path_spec\" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then\n        # It is most probably a Windows format PATH.\n        sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | $SED -e 's/;/ /g'`\n      else\n        sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | $SED -e \"s/$PATH_SEPARATOR/ /g\"`\n      fi\n      # FIXME: find the short name or the path components, as spaces are\n      # common. (e.g. \"Program Files\" -> \"PROGRA~1\")\n      ;;\n    esac\n\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\$file`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n    dynamic_linker='Win32 link.exe'\n    ;;\n\n  *)\n    # Assume MSVC wrapper\n    library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib'\n    dynamic_linker='Win32 ld.exe'\n    ;;\n  esac\n  # FIXME: first we should search . and the directory the executable is in\n  shlibpath_var=PATH\n  ;;\n\ndarwin* | rhapsody*)\n  dynamic_linker=\"$host_os dyld\"\n  version_type=darwin\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$major$shared_ext $libname$shared_ext'\n  soname_spec='$libname$release$major$shared_ext'\n  shlibpath_overrides_runpath=yes\n  shlibpath_var=DYLD_LIBRARY_PATH\n  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'\nm4_if([$1], [],[\n  sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/local/lib\"])\n  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'\n  ;;\n\ndgux*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\nfreebsd* | dragonfly*)\n  # DragonFly does not have aout.  When/if they implement a new\n  # versioning mechanism, adjust this.\n  if test -x /usr/bin/objformat; then\n    objformat=`/usr/bin/objformat`\n  else\n    case $host_os in\n    freebsd[[23]].*) objformat=aout ;;\n    *) objformat=elf ;;\n    esac\n  fi\n  version_type=freebsd-$objformat\n  case $version_type in\n    freebsd-elf*)\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n      soname_spec='$libname$release$shared_ext$major'\n      need_version=no\n      need_lib_prefix=no\n      ;;\n    freebsd-*)\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n      need_version=yes\n      ;;\n  esac\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_os in\n  freebsd2.*)\n    shlibpath_overrides_runpath=yes\n    ;;\n  freebsd3.[[01]]* | freebsdelf3.[[01]]*)\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \\\n  freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)\n    shlibpath_overrides_runpath=no\n    hardcode_into_libs=yes\n    ;;\n  *) # from 4.6 on, and DragonFly\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  esac\n  ;;\n\nhaiku*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  dynamic_linker=\"$host_os runtime_loader\"\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'\n  hardcode_into_libs=yes\n  ;;\n\nhpux9* | hpux10* | hpux11*)\n  # Give a soname corresponding to the major version so that dld.sl refuses to\n  # link against other versions.\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  case $host_cpu in\n  ia64*)\n    shrext_cmds='.so'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.so\"\n    shlibpath_var=LD_LIBRARY_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    if test 32 = \"$HPUX_IA64_MODE\"; then\n      sys_lib_search_path_spec=\"/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib\"\n      sys_lib_dlsearch_path_spec=/usr/lib/hpux32\n    else\n      sys_lib_search_path_spec=\"/usr/lib/hpux64 /usr/local/lib/hpux64\"\n      sys_lib_dlsearch_path_spec=/usr/lib/hpux64\n    fi\n    ;;\n  hppa*64*)\n    shrext_cmds='.sl'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    sys_lib_search_path_spec=\"/usr/lib/pa20_64 /usr/ccs/lib/pa20_64\"\n    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n    ;;\n  *)\n    shrext_cmds='.sl'\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=SHLIB_PATH\n    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    ;;\n  esac\n  # HP-UX runs *really* slowly unless shared libraries are mode 555, ...\n  postinstall_cmds='chmod 555 $lib'\n  # or fails outright, so override atomically:\n  install_override_mode=555\n  ;;\n\ninterix[[3-9]]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $host_os in\n    nonstopux*) version_type=nonstopux ;;\n    *)\n\tif test yes = \"$lt_cv_prog_gnu_ld\"; then\n\t\tversion_type=linux # correct to gnu/linux during the next big refactor\n\telse\n\t\tversion_type=irix\n\tfi ;;\n  esac\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='$libname$release$shared_ext$major'\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext'\n  case $host_os in\n  irix5* | nonstopux*)\n    libsuff= shlibsuff=\n    ;;\n  *)\n    case $LD in # libtool.m4 will add one of these switches to LD\n    *-32|*\"-32 \"|*-melf32bsmip|*\"-melf32bsmip \")\n      libsuff= shlibsuff= libmagic=32-bit;;\n    *-n32|*\"-n32 \"|*-melf32bmipn32|*\"-melf32bmipn32 \")\n      libsuff=32 shlibsuff=N32 libmagic=N32;;\n    *-64|*\"-64 \"|*-melf64bmip|*\"-melf64bmip \")\n      libsuff=64 shlibsuff=64 libmagic=64-bit;;\n    *) libsuff= shlibsuff= libmagic=never-match;;\n    esac\n    ;;\n  esac\n  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_search_path_spec=\"/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff\"\n  sys_lib_dlsearch_path_spec=\"/usr/lib$libsuff /lib$libsuff\"\n  hardcode_into_libs=yes\n  ;;\n\n# No shared lib support for Linux oldld, aout, or coff.\nlinux*oldld* | linux*aout* | linux*coff*)\n  dynamic_linker=no\n  ;;\n\nlinux*android*)\n  version_type=none # Android doesn't support versioned libraries.\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext'\n  soname_spec='$libname$release$shared_ext'\n  finish_cmds=\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  dynamic_linker='Android linker'\n  # Don't embed -rpath directories since the linker doesn't support them.\n  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n  ;;\n\n# This must be glibc/ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -n $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n\n  # Some binutils ld are patched to set DT_RUNPATH\n  AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath],\n    [lt_cv_shlibpath_overrides_runpath=no\n    save_LDFLAGS=$LDFLAGS\n    save_libdir=$libdir\n    eval \"libdir=/foo; wl=\\\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\\\"; \\\n\t LDFLAGS=\\\"\\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\\\"\"\n    AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],\n      [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep \"RUNPATH.*$libdir\" >/dev/null],\n\t [lt_cv_shlibpath_overrides_runpath=yes])])\n    LDFLAGS=$save_LDFLAGS\n    libdir=$save_libdir\n    ])\n  shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  # Ideally, we could use ldconfig to report *all* directores which are\n  # searched for libraries, however this is still not possible.  Aside from not\n  # being certain /sbin/ldconfig is available, command\n  # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64,\n  # even though it is searched at run-time.  Try to do the best guess by\n  # appending ld.so.conf contents (and includes) to the search path.\n  if test -f /etc/ld.so.conf; then\n    lt_ld_extra=`awk '/^include / { system(sprintf(\"cd /etc; cat %s 2>/dev/null\", \\[$]2)); skip = 1; } { if (!skip) print \\[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[\t ]*hwcap[\t ]/d;s/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/\"//g;/^$/d' | tr '\\n' ' '`\n    sys_lib_dlsearch_path_spec=\"/lib /usr/lib $lt_ld_extra\"\n  fi\n\n  # We used to test for /lib/ld.so.1 and disable shared libraries on\n  # powerpc, because MkLinux only supported shared libraries with the\n  # GNU dynamic linker.  Since this was broken with cross compilers,\n  # most powerpc-linux boxes support dynamic linking these days and\n  # people can always --disable-shared, the test was removed, and we\n  # assume the GNU/Linux dynamic linker is in use.\n  dynamic_linker='GNU/Linux ld.so'\n  ;;\n\nnetbsd*)\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n    finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n    dynamic_linker='NetBSD (a.out) ld.so'\n  else\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    dynamic_linker='NetBSD ld.elf_so'\n  fi\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  ;;\n\nnewsos6)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\n*nto* | *qnx*)\n  version_type=qnx\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  dynamic_linker='ldqnx.so'\n  ;;\n\nopenbsd* | bitrig*)\n  version_type=sunos\n  sys_lib_dlsearch_path_spec=/usr/lib\n  need_lib_prefix=no\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n    need_version=no\n  else\n    need_version=yes\n  fi\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\nos2*)\n  libname_spec='$name'\n  version_type=windows\n  shrext_cmds=.dll\n  need_version=no\n  need_lib_prefix=no\n  # OS/2 can only load a DLL with a base name of 8 characters or less.\n  soname_spec='`test -n \"$os2dllname\" && libname=\"$os2dllname\";\n    v=$($ECHO $release$versuffix | tr -d .-);\n    n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _);\n    $ECHO $n$v`$shared_ext'\n  library_names_spec='${libname}_dll.$libext'\n  dynamic_linker='OS/2 ld.exe'\n  shlibpath_var=BEGINLIBPATH\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n  postinstall_cmds='base_file=`basename \\$file`~\n    dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; $ECHO \\$dlname'\\''`~\n    dldir=$destdir/`dirname \\$dlpath`~\n    test -d \\$dldir || mkdir -p \\$dldir~\n    $install_prog $dir/$dlname \\$dldir/$dlname~\n    chmod a+x \\$dldir/$dlname~\n    if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n      eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n    fi'\n  postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; $ECHO \\$dlname'\\''`~\n    dlpath=$dir/\\$dldll~\n    $RM \\$dlpath'\n  ;;\n\nosf3* | osf4* | osf5*)\n  version_type=osf\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='$libname$release$shared_ext$major'\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib\"\n  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n  ;;\n\nrdos*)\n  dynamic_linker=no\n  ;;\n\nsolaris*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  # ldd complains unless libraries are executable\n  postinstall_cmds='chmod +x $lib'\n  ;;\n\nsunos4*)\n  version_type=sunos\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/usr/etc\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  if test yes = \"$with_gnu_ld\"; then\n    need_lib_prefix=no\n  fi\n  need_version=yes\n  ;;\n\nsysv4 | sysv4.3*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_vendor in\n    sni)\n      shlibpath_overrides_runpath=no\n      need_lib_prefix=no\n      runpath_var=LD_RUN_PATH\n      ;;\n    siemens)\n      need_lib_prefix=no\n      ;;\n    motorola)\n      need_lib_prefix=no\n      need_version=no\n      shlibpath_overrides_runpath=no\n      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'\n      ;;\n  esac\n  ;;\n\nsysv4*MP*)\n  if test -d /usr/nec; then\n    version_type=linux # correct to gnu/linux during the next big refactor\n    library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext'\n    soname_spec='$libname$shared_ext.$major'\n    shlibpath_var=LD_LIBRARY_PATH\n  fi\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  version_type=sco\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  if test yes = \"$with_gnu_ld\"; then\n    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'\n  else\n    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'\n    case $host_os in\n      sco3.2v5*)\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec /lib\"\n\t;;\n    esac\n  fi\n  sys_lib_dlsearch_path_spec='/usr/lib'\n  ;;\n\ntpf*)\n  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nuts4*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\n*)\n  dynamic_linker=no\n  ;;\nesac\nAC_MSG_RESULT([$dynamic_linker])\ntest no = \"$dynamic_linker\" && can_build_shared=no\n\nvariables_saved_for_relink=\"PATH $shlibpath_var $runpath_var\"\nif test yes = \"$GCC\"; then\n  variables_saved_for_relink=\"$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH\"\nfi\n\nif test set = \"${lt_cv_sys_lib_search_path_spec+set}\"; then\n  sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec\nfi\n\nif test set = \"${lt_cv_sys_lib_dlsearch_path_spec+set}\"; then\n  sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec\nfi\n\n# remember unaugmented sys_lib_dlsearch_path content for libtool script decls...\nconfigure_time_dlsearch_path=$sys_lib_dlsearch_path_spec\n\n# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code\nfunc_munge_path_list sys_lib_dlsearch_path_spec \"$LT_SYS_LIBRARY_PATH\"\n\n# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool\nconfigure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH\n\n_LT_DECL([], [variables_saved_for_relink], [1],\n    [Variables whose values should be saved in libtool wrapper scripts and\n    restored at link time])\n_LT_DECL([], [need_lib_prefix], [0],\n    [Do we need the \"lib\" prefix for modules?])\n_LT_DECL([], [need_version], [0], [Do we need a version for libraries?])\n_LT_DECL([], [version_type], [0], [Library versioning type])\n_LT_DECL([], [runpath_var], [0],  [Shared library runtime path variable])\n_LT_DECL([], [shlibpath_var], [0],[Shared library path variable])\n_LT_DECL([], [shlibpath_overrides_runpath], [0],\n    [Is shlibpath searched before the hard-coded library search path?])\n_LT_DECL([], [libname_spec], [1], [Format of library name prefix])\n_LT_DECL([], [library_names_spec], [1],\n    [[List of archive names.  First name is the real one, the rest are links.\n    The last name is the one that the linker finds with -lNAME]])\n_LT_DECL([], [soname_spec], [1],\n    [[The coded name of the library, if different from the real name]])\n_LT_DECL([], [install_override_mode], [1],\n    [Permission mode override for installation of shared libraries])\n_LT_DECL([], [postinstall_cmds], [2],\n    [Command to use after installation of a shared archive])\n_LT_DECL([], [postuninstall_cmds], [2],\n    [Command to use after uninstallation of a shared archive])\n_LT_DECL([], [finish_cmds], [2],\n    [Commands used to finish a libtool library installation in a directory])\n_LT_DECL([], [finish_eval], [1],\n    [[As \"finish_cmds\", except a single script fragment to be evaled but\n    not shown]])\n_LT_DECL([], [hardcode_into_libs], [0],\n    [Whether we should hardcode library paths into libraries])\n_LT_DECL([], [sys_lib_search_path_spec], [2],\n    [Compile-time system search path for libraries])\n_LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2],\n    [Detected run-time system search path for libraries])\n_LT_DECL([], [configure_time_lt_sys_library_path], [2],\n    [Explicit LT_SYS_LIBRARY_PATH set during ./configure time])\n])# _LT_SYS_DYNAMIC_LINKER\n\n\n# _LT_PATH_TOOL_PREFIX(TOOL)\n# --------------------------\n# find a file program that can recognize shared library\nAC_DEFUN([_LT_PATH_TOOL_PREFIX],\n[m4_require([_LT_DECL_EGREP])dnl\nAC_MSG_CHECKING([for $1])\nAC_CACHE_VAL(lt_cv_path_MAGIC_CMD,\n[case $MAGIC_CMD in\n[[\\\\/*] |  ?:[\\\\/]*])\n  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.\n  ;;\n*)\n  lt_save_MAGIC_CMD=$MAGIC_CMD\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\ndnl $ac_dummy forces splitting on constant user-supplied paths.\ndnl POSIX.2 word splitting is done only on the output of word expansions,\ndnl not every word.  This closes a longstanding sh security hole.\n  ac_dummy=\"m4_if([$2], , $PATH, [$2])\"\n  for ac_dir in $ac_dummy; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$1\"; then\n      lt_cv_path_MAGIC_CMD=$ac_dir/\"$1\"\n      if test -n \"$file_magic_test_file\"; then\n\tcase $deplibs_check_method in\n\t\"file_magic \"*)\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"file_magic \\(.*\\)\"`\n\t  MAGIC_CMD=$lt_cv_path_MAGIC_CMD\n\t  if eval $file_magic_cmd \\$file_magic_test_file 2> /dev/null |\n\t    $EGREP \"$file_magic_regex\" > /dev/null; then\n\t    :\n\t  else\n\t    cat <<_LT_EOF 1>&2\n\n*** Warning: the command libtool uses to detect shared libraries,\n*** $file_magic_cmd, produces output that libtool cannot recognize.\n*** The result is that libtool may fail to recognize shared libraries\n*** as such.  This will affect the creation of libtool libraries that\n*** depend on shared libraries, but programs linked with such libtool\n*** libraries will work regardless of this problem.  Nevertheless, you\n*** may want to report the problem to your system manager and/or to\n*** bug-libtool@gnu.org\n\n_LT_EOF\n\t  fi ;;\n\tesac\n      fi\n      break\n    fi\n  done\n  IFS=$lt_save_ifs\n  MAGIC_CMD=$lt_save_MAGIC_CMD\n  ;;\nesac])\nMAGIC_CMD=$lt_cv_path_MAGIC_CMD\nif test -n \"$MAGIC_CMD\"; then\n  AC_MSG_RESULT($MAGIC_CMD)\nelse\n  AC_MSG_RESULT(no)\nfi\n_LT_DECL([], [MAGIC_CMD], [0],\n\t [Used to examine libraries when file_magic_cmd begins with \"file\"])dnl\n])# _LT_PATH_TOOL_PREFIX\n\n# Old name:\nAU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])\n\n\n# _LT_PATH_MAGIC\n# --------------\n# find a file program that can recognize a shared library\nm4_defun([_LT_PATH_MAGIC],\n[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)\nif test -z \"$lt_cv_path_MAGIC_CMD\"; then\n  if test -n \"$ac_tool_prefix\"; then\n    _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)\n  else\n    MAGIC_CMD=:\n  fi\nfi\n])# _LT_PATH_MAGIC\n\n\n# LT_PATH_LD\n# ----------\n# find the pathname to the GNU or non-GNU linker\nAC_DEFUN([LT_PATH_LD],\n[AC_REQUIRE([AC_PROG_CC])dnl\nAC_REQUIRE([AC_CANONICAL_HOST])dnl\nAC_REQUIRE([AC_CANONICAL_BUILD])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_PROG_ECHO_BACKSLASH])dnl\n\nAC_ARG_WITH([gnu-ld],\n    [AS_HELP_STRING([--with-gnu-ld],\n\t[assume the C compiler uses GNU ld @<:@default=no@:>@])],\n    [test no = \"$withval\" || with_gnu_ld=yes],\n    [with_gnu_ld=no])dnl\n\nac_prog=ld\nif test yes = \"$GCC\"; then\n  # Check if gcc -print-prog-name=ld gives a path.\n  AC_MSG_CHECKING([for ld used by $CC])\n  case $host in\n  *-*-mingw*)\n    # gcc leaves a trailing carriage return, which upsets mingw\n    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\\015'` ;;\n  *)\n    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;\n  esac\n  case $ac_prog in\n    # Accept absolute paths.\n    [[\\\\/]]* | ?:[[\\\\/]]*)\n      re_direlt='/[[^/]][[^/]]*/\\.\\./'\n      # Canonicalize the pathname of ld\n      ac_prog=`$ECHO \"$ac_prog\"| $SED 's%\\\\\\\\%/%g'`\n      while $ECHO \"$ac_prog\" | $GREP \"$re_direlt\" > /dev/null 2>&1; do\n\tac_prog=`$ECHO $ac_prog| $SED \"s%$re_direlt%/%\"`\n      done\n      test -z \"$LD\" && LD=$ac_prog\n      ;;\n  \"\")\n    # If it fails, then pretend we aren't using GCC.\n    ac_prog=ld\n    ;;\n  *)\n    # If it is relative, then search for the first ld in PATH.\n    with_gnu_ld=unknown\n    ;;\n  esac\nelif test yes = \"$with_gnu_ld\"; then\n  AC_MSG_CHECKING([for GNU ld])\nelse\n  AC_MSG_CHECKING([for non-GNU ld])\nfi\nAC_CACHE_VAL(lt_cv_path_LD,\n[if test -z \"$LD\"; then\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n  for ac_dir in $PATH; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$ac_prog\" || test -f \"$ac_dir/$ac_prog$ac_exeext\"; then\n      lt_cv_path_LD=$ac_dir/$ac_prog\n      # Check to see if the program is GNU ld.  I'd rather use --version,\n      # but apparently some variants of GNU ld only accept -v.\n      # Break only if it was the GNU/non-GNU ld that we prefer.\n      case `\"$lt_cv_path_LD\" -v 2>&1 </dev/null` in\n      *GNU* | *'with BFD'*)\n\ttest no != \"$with_gnu_ld\" && break\n\t;;\n      *)\n\ttest yes != \"$with_gnu_ld\" && break\n\t;;\n      esac\n    fi\n  done\n  IFS=$lt_save_ifs\nelse\n  lt_cv_path_LD=$LD # Let the user override the test with a path.\nfi])\nLD=$lt_cv_path_LD\nif test -n \"$LD\"; then\n  AC_MSG_RESULT($LD)\nelse\n  AC_MSG_RESULT(no)\nfi\ntest -z \"$LD\" && AC_MSG_ERROR([no acceptable ld found in \\$PATH])\n_LT_PATH_LD_GNU\nAC_SUBST([LD])\n\n_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])\n])# LT_PATH_LD\n\n# Old names:\nAU_ALIAS([AM_PROG_LD], [LT_PATH_LD])\nAU_ALIAS([AC_PROG_LD], [LT_PATH_LD])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_PROG_LD], [])\ndnl AC_DEFUN([AC_PROG_LD], [])\n\n\n# _LT_PATH_LD_GNU\n#- --------------\nm4_defun([_LT_PATH_LD_GNU],\n[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,\n[# I'd rather use --version here, but apparently some GNU lds only accept -v.\ncase `$LD -v 2>&1 </dev/null` in\n*GNU* | *'with BFD'*)\n  lt_cv_prog_gnu_ld=yes\n  ;;\n*)\n  lt_cv_prog_gnu_ld=no\n  ;;\nesac])\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n])# _LT_PATH_LD_GNU\n\n\n# _LT_CMD_RELOAD\n# --------------\n# find reload flag for linker\n#   -- PORTME Some linkers may need a different reload flag.\nm4_defun([_LT_CMD_RELOAD],\n[AC_CACHE_CHECK([for $LD option to reload object files],\n  lt_cv_ld_reload_flag,\n  [lt_cv_ld_reload_flag='-r'])\nreload_flag=$lt_cv_ld_reload_flag\ncase $reload_flag in\n\"\" | \" \"*) ;;\n*) reload_flag=\" $reload_flag\" ;;\nesac\nreload_cmds='$LD$reload_flag -o $output$reload_objs'\ncase $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    if test yes != \"$GCC\"; then\n      reload_cmds=false\n    fi\n    ;;\n  darwin*)\n    if test yes = \"$GCC\"; then\n      reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs'\n    else\n      reload_cmds='$LD$reload_flag -o $output$reload_objs'\n    fi\n    ;;\nesac\n_LT_TAGDECL([], [reload_flag], [1], [How to create reloadable object files])dnl\n_LT_TAGDECL([], [reload_cmds], [2])dnl\n])# _LT_CMD_RELOAD\n\n\n# _LT_PATH_DD\n# -----------\n# find a working dd\nm4_defun([_LT_PATH_DD],\n[AC_CACHE_CHECK([for a working dd], [ac_cv_path_lt_DD],\n[printf 0123456789abcdef0123456789abcdef >conftest.i\ncat conftest.i conftest.i >conftest2.i\n: ${lt_DD:=$DD}\nAC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd],\n[if \"$ac_path_lt_DD\" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then\n  cmp -s conftest.i conftest.out \\\n  && ac_cv_path_lt_DD=\"$ac_path_lt_DD\" ac_path_lt_DD_found=:\nfi])\nrm -f conftest.i conftest2.i conftest.out])\n])# _LT_PATH_DD\n\n\n# _LT_CMD_TRUNCATE\n# ----------------\n# find command to truncate a binary pipe\nm4_defun([_LT_CMD_TRUNCATE],\n[m4_require([_LT_PATH_DD])\nAC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin],\n[printf 0123456789abcdef0123456789abcdef >conftest.i\ncat conftest.i conftest.i >conftest2.i\nlt_cv_truncate_bin=\nif \"$ac_cv_path_lt_DD\" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then\n  cmp -s conftest.i conftest.out \\\n  && lt_cv_truncate_bin=\"$ac_cv_path_lt_DD bs=4096 count=1\"\nfi\nrm -f conftest.i conftest2.i conftest.out\ntest -z \"$lt_cv_truncate_bin\" && lt_cv_truncate_bin=\"$SED -e 4q\"])\n_LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1],\n  [Command to truncate a binary pipe])\n])# _LT_CMD_TRUNCATE\n\n\n# _LT_CHECK_MAGIC_METHOD\n# ----------------------\n# how to check for library dependencies\n#  -- PORTME fill in with the dynamic library characteristics\nm4_defun([_LT_CHECK_MAGIC_METHOD],\n[m4_require([_LT_DECL_EGREP])\nm4_require([_LT_DECL_OBJDUMP])\nAC_CACHE_CHECK([how to recognize dependent libraries],\nlt_cv_deplibs_check_method,\n[lt_cv_file_magic_cmd='$MAGIC_CMD'\nlt_cv_file_magic_test_file=\nlt_cv_deplibs_check_method='unknown'\n# Need to set the preceding variable on all platforms that support\n# interlibrary dependencies.\n# 'none' -- dependencies not supported.\n# 'unknown' -- same as none, but documents that we really don't know.\n# 'pass_all' -- all dependencies passed with no checks.\n# 'test_compile' -- check by making test program.\n# 'file_magic [[regex]]' -- check by looking for files in library path\n# that responds to the $file_magic_cmd with a given extended regex.\n# If you have 'file' or equivalent on your system and you're not sure\n# whether 'pass_all' will *always* work, you probably want this one.\n\ncase $host_os in\naix[[4-9]]*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbeos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbsdi[[45]]*)\n  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'\n  lt_cv_file_magic_cmd='/usr/bin/file -L'\n  lt_cv_file_magic_test_file=/shlib/libc.so\n  ;;\n\ncygwin*)\n  # func_win32_libid is a shell function defined in ltmain.sh\n  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n  lt_cv_file_magic_cmd='func_win32_libid'\n  ;;\n\nmingw* | pw32*)\n  # Base MSYS/MinGW do not provide the 'file' command needed by\n  # func_win32_libid shell function, so use a weaker test based on 'objdump',\n  # unless we find 'file', for example because we are cross-compiling.\n  if ( file / ) >/dev/null 2>&1; then\n    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n    lt_cv_file_magic_cmd='func_win32_libid'\n  else\n    # Keep this pattern in sync with the one in func_win32_libid.\n    lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'\n    lt_cv_file_magic_cmd='$OBJDUMP -f'\n  fi\n  ;;\n\ncegcc*)\n  # use the weaker test based on 'objdump'. See mingw*.\n  lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'\n  lt_cv_file_magic_cmd='$OBJDUMP -f'\n  ;;\n\ndarwin* | rhapsody*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nfreebsd* | dragonfly*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    case $host_cpu in\n    i*86 )\n      # Not sure whether the presence of OpenBSD here was a mistake.\n      # Let's accept both of them until this is cleared up.\n      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'\n      lt_cv_file_magic_cmd=/usr/bin/file\n      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`\n      ;;\n    esac\n  else\n    lt_cv_deplibs_check_method=pass_all\n  fi\n  ;;\n\nhaiku*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nhpux10.20* | hpux11*)\n  lt_cv_file_magic_cmd=/usr/bin/file\n  case $host_cpu in\n  ia64*)\n    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'\n    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so\n    ;;\n  hppa*64*)\n    [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\\.[0-9]']\n    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl\n    ;;\n  *)\n    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\\.[[0-9]]) shared library'\n    lt_cv_file_magic_test_file=/usr/lib/libc.sl\n    ;;\n  esac\n  ;;\n\ninterix[[3-9]]*)\n  # PIC code is broken on Interix 3.x, that's why |\\.a not |_pic\\.a here\n  lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so|\\.a)$'\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $LD in\n  *-32|*\"-32 \") libmagic=32-bit;;\n  *-n32|*\"-n32 \") libmagic=N32;;\n  *-64|*\"-64 \") libmagic=64-bit;;\n  *) libmagic=never-match;;\n  esac\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\n# This must be glibc/ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nnetbsd*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so\\.[[0-9]]+\\.[[0-9]]+|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so|_pic\\.a)$'\n  fi\n  ;;\n\nnewos6*)\n  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'\n  lt_cv_file_magic_cmd=/usr/bin/file\n  lt_cv_file_magic_test_file=/usr/lib/libnls.so\n  ;;\n\n*nto* | *qnx*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nopenbsd* | bitrig*)\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so\\.[[0-9]]+\\.[[0-9]]+|\\.so|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so\\.[[0-9]]+\\.[[0-9]]+|_pic\\.a)$'\n  fi\n  ;;\n\nosf3* | osf4* | osf5*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nrdos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsolaris*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv4 | sysv4.3*)\n  case $host_vendor in\n  motorola)\n    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'\n    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`\n    ;;\n  ncr)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  sequent)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'\n    ;;\n  sni)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method=\"file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib\"\n    lt_cv_file_magic_test_file=/lib/libc.so\n    ;;\n  siemens)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  pc)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  esac\n  ;;\n\ntpf*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nos2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nesac\n])\n\nfile_magic_glob=\nwant_nocaseglob=no\nif test \"$build\" = \"$host\"; then\n  case $host_os in\n  mingw* | pw32*)\n    if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then\n      want_nocaseglob=yes\n    else\n      file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e \"s/\\(..\\)/s\\/[[\\1]]\\/[[\\1]]\\/g;/g\"`\n    fi\n    ;;\n  esac\nfi\n\nfile_magic_cmd=$lt_cv_file_magic_cmd\ndeplibs_check_method=$lt_cv_deplibs_check_method\ntest -z \"$deplibs_check_method\" && deplibs_check_method=unknown\n\n_LT_DECL([], [deplibs_check_method], [1],\n    [Method to check whether dependent libraries are shared objects])\n_LT_DECL([], [file_magic_cmd], [1],\n    [Command to use when deplibs_check_method = \"file_magic\"])\n_LT_DECL([], [file_magic_glob], [1],\n    [How to find potential files when deplibs_check_method = \"file_magic\"])\n_LT_DECL([], [want_nocaseglob], [1],\n    [Find potential files using nocaseglob when deplibs_check_method = \"file_magic\"])\n])# _LT_CHECK_MAGIC_METHOD\n\n\n# LT_PATH_NM\n# ----------\n# find the pathname to a BSD- or MS-compatible name lister\nAC_DEFUN([LT_PATH_NM],\n[AC_REQUIRE([AC_PROG_CC])dnl\nAC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,\n[if test -n \"$NM\"; then\n  # Let the user override the test.\n  lt_cv_path_NM=$NM\nelse\n  lt_nm_to_check=${ac_tool_prefix}nm\n  if test -n \"$ac_tool_prefix\" && test \"$build\" = \"$host\"; then\n    lt_nm_to_check=\"$lt_nm_to_check nm\"\n  fi\n  for lt_tmp_nm in $lt_nm_to_check; do\n    lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do\n      IFS=$lt_save_ifs\n      test -z \"$ac_dir\" && ac_dir=.\n      tmp_nm=$ac_dir/$lt_tmp_nm\n      if test -f \"$tmp_nm\" || test -f \"$tmp_nm$ac_exeext\"; then\n\t# Check to see if the nm accepts a BSD-compat flag.\n\t# Adding the 'sed 1q' prevents false positives on HP-UX, which says:\n\t#   nm: unknown option \"B\" ignored\n\t# Tru64's nm complains that /dev/null is an invalid object file\n\t# MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty\n\tcase $build_os in\n\tmingw*) lt_bad_file=conftest.nm/nofile ;;\n\t*) lt_bad_file=/dev/null ;;\n\tesac\n\tcase `\"$tmp_nm\" -B $lt_bad_file 2>&1 | sed '1q'` in\n\t*$lt_bad_file* | *'Invalid file or object type'*)\n\t  lt_cv_path_NM=\"$tmp_nm -B\"\n\t  break 2\n\t  ;;\n\t*)\n\t  case `\"$tmp_nm\" -p /dev/null 2>&1 | sed '1q'` in\n\t  */dev/null*)\n\t    lt_cv_path_NM=\"$tmp_nm -p\"\n\t    break 2\n\t    ;;\n\t  *)\n\t    lt_cv_path_NM=${lt_cv_path_NM=\"$tmp_nm\"} # keep the first match, but\n\t    continue # so that we can try to find one that supports BSD flags\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n      fi\n    done\n    IFS=$lt_save_ifs\n  done\n  : ${lt_cv_path_NM=no}\nfi])\nif test no != \"$lt_cv_path_NM\"; then\n  NM=$lt_cv_path_NM\nelse\n  # Didn't find any BSD compatible name lister, look for dumpbin.\n  if test -n \"$DUMPBIN\"; then :\n    # Let the user override the test.\n  else\n    AC_CHECK_TOOLS(DUMPBIN, [dumpbin \"link -dump\"], :)\n    case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in\n    *COFF*)\n      DUMPBIN=\"$DUMPBIN -symbols -headers\"\n      ;;\n    *)\n      DUMPBIN=:\n      ;;\n    esac\n  fi\n  AC_SUBST([DUMPBIN])\n  if test : != \"$DUMPBIN\"; then\n    NM=$DUMPBIN\n  fi\nfi\ntest -z \"$NM\" && NM=nm\nAC_SUBST([NM])\n_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl\n\nAC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],\n  [lt_cv_nm_interface=\"BSD nm\"\n  echo \"int some_variable = 0;\" > conftest.$ac_ext\n  (eval echo \"\\\"\\$as_me:$LINENO: $ac_compile\\\"\" >&AS_MESSAGE_LOG_FD)\n  (eval \"$ac_compile\" 2>conftest.err)\n  cat conftest.err >&AS_MESSAGE_LOG_FD\n  (eval echo \"\\\"\\$as_me:$LINENO: $NM \\\\\\\"conftest.$ac_objext\\\\\\\"\\\"\" >&AS_MESSAGE_LOG_FD)\n  (eval \"$NM \\\"conftest.$ac_objext\\\"\" 2>conftest.err > conftest.out)\n  cat conftest.err >&AS_MESSAGE_LOG_FD\n  (eval echo \"\\\"\\$as_me:$LINENO: output\\\"\" >&AS_MESSAGE_LOG_FD)\n  cat conftest.out >&AS_MESSAGE_LOG_FD\n  if $GREP 'External.*some_variable' conftest.out > /dev/null; then\n    lt_cv_nm_interface=\"MS dumpbin\"\n  fi\n  rm -f conftest*])\n])# LT_PATH_NM\n\n# Old names:\nAU_ALIAS([AM_PROG_NM], [LT_PATH_NM])\nAU_ALIAS([AC_PROG_NM], [LT_PATH_NM])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_PROG_NM], [])\ndnl AC_DEFUN([AC_PROG_NM], [])\n\n# _LT_CHECK_SHAREDLIB_FROM_LINKLIB\n# --------------------------------\n# how to determine the name of the shared library\n# associated with a specific link library.\n#  -- PORTME fill in with the dynamic library characteristics\nm4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB],\n[m4_require([_LT_DECL_EGREP])\nm4_require([_LT_DECL_OBJDUMP])\nm4_require([_LT_DECL_DLLTOOL])\nAC_CACHE_CHECK([how to associate runtime and link libraries],\nlt_cv_sharedlib_from_linklib_cmd,\n[lt_cv_sharedlib_from_linklib_cmd='unknown'\n\ncase $host_os in\ncygwin* | mingw* | pw32* | cegcc*)\n  # two different shell functions defined in ltmain.sh;\n  # decide which one to use based on capabilities of $DLLTOOL\n  case `$DLLTOOL --help 2>&1` in\n  *--identify-strict*)\n    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib\n    ;;\n  *)\n    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback\n    ;;\n  esac\n  ;;\n*)\n  # fallback: assume linklib IS sharedlib\n  lt_cv_sharedlib_from_linklib_cmd=$ECHO\n  ;;\nesac\n])\nsharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd\ntest -z \"$sharedlib_from_linklib_cmd\" && sharedlib_from_linklib_cmd=$ECHO\n\n_LT_DECL([], [sharedlib_from_linklib_cmd], [1],\n    [Command to associate shared and link libraries])\n])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB\n\n\n# _LT_PATH_MANIFEST_TOOL\n# ----------------------\n# locate the manifest tool\nm4_defun([_LT_PATH_MANIFEST_TOOL],\n[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :)\ntest -z \"$MANIFEST_TOOL\" && MANIFEST_TOOL=mt\nAC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool],\n  [lt_cv_path_mainfest_tool=no\n  echo \"$as_me:$LINENO: $MANIFEST_TOOL '-?'\" >&AS_MESSAGE_LOG_FD\n  $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out\n  cat conftest.err >&AS_MESSAGE_LOG_FD\n  if $GREP 'Manifest Tool' conftest.out > /dev/null; then\n    lt_cv_path_mainfest_tool=yes\n  fi\n  rm -f conftest*])\nif test yes != \"$lt_cv_path_mainfest_tool\"; then\n  MANIFEST_TOOL=:\nfi\n_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl\n])# _LT_PATH_MANIFEST_TOOL\n\n\n# _LT_DLL_DEF_P([FILE])\n# ---------------------\n# True iff FILE is a Windows DLL '.def' file.\n# Keep in sync with func_dll_def_p in the libtool script\nAC_DEFUN([_LT_DLL_DEF_P],\n[dnl\n  test DEF = \"`$SED -n dnl\n    -e '\\''s/^[[\t ]]*//'\\'' dnl Strip leading whitespace\n    -e '\\''/^\\(;.*\\)*$/d'\\'' dnl      Delete empty lines and comments\n    -e '\\''s/^\\(EXPORTS\\|LIBRARY\\)\\([[\t ]].*\\)*$/DEF/p'\\'' dnl\n    -e q dnl                          Only consider the first \"real\" line\n    $1`\" dnl\n])# _LT_DLL_DEF_P\n\n\n# LT_LIB_M\n# --------\n# check for math library\nAC_DEFUN([LT_LIB_M],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nLIBM=\ncase $host in\n*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)\n  # These system don't have libm, or don't need it\n  ;;\n*-ncr-sysv4.3*)\n  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw)\n  AC_CHECK_LIB(m, cos, LIBM=\"$LIBM -lm\")\n  ;;\n*)\n  AC_CHECK_LIB(m, cos, LIBM=-lm)\n  ;;\nesac\nAC_SUBST([LIBM])\n])# LT_LIB_M\n\n# Old name:\nAU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_CHECK_LIBM], [])\n\n\n# _LT_COMPILER_NO_RTTI([TAGNAME])\n# -------------------------------\nm4_defun([_LT_COMPILER_NO_RTTI],\n[m4_require([_LT_TAG_COMPILER])dnl\n\n_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=\n\nif test yes = \"$GCC\"; then\n  case $cc_basename in\n  nvcc*)\n    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;;\n  *)\n    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;;\n  esac\n\n  _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],\n    lt_cv_prog_compiler_rtti_exceptions,\n    [-fno-rtti -fno-exceptions], [],\n    [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=\"$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions\"])\nfi\n_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],\n\t[Compiler flag to turn off builtin functions])\n])# _LT_COMPILER_NO_RTTI\n\n\n# _LT_CMD_GLOBAL_SYMBOLS\n# ----------------------\nm4_defun([_LT_CMD_GLOBAL_SYMBOLS],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nAC_REQUIRE([AC_PROG_CC])dnl\nAC_REQUIRE([AC_PROG_AWK])dnl\nAC_REQUIRE([LT_PATH_NM])dnl\nAC_REQUIRE([LT_PATH_LD])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_TAG_COMPILER])dnl\n\n# Check for command to grab the raw symbol name followed by C symbol from nm.\nAC_MSG_CHECKING([command to parse $NM output from $compiler object])\nAC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],\n[\n# These are sane defaults that work on at least a few old systems.\n# [They come from Ultrix.  What could be older than Ultrix?!! ;)]\n\n# Character class describing NM global symbol codes.\nsymcode='[[BCDEGRST]]'\n\n# Regexp to match symbols that can be accessed directly from C.\nsympat='\\([[_A-Za-z]][[_A-Za-z0-9]]*\\)'\n\n# Define system-specific variables.\ncase $host_os in\naix*)\n  symcode='[[BCDT]]'\n  ;;\ncygwin* | mingw* | pw32* | cegcc*)\n  symcode='[[ABCDGISTW]]'\n  ;;\nhpux*)\n  if test ia64 = \"$host_cpu\"; then\n    symcode='[[ABCDEGRST]]'\n  fi\n  ;;\nirix* | nonstopux*)\n  symcode='[[BCDEGRST]]'\n  ;;\nosf*)\n  symcode='[[BCDEGQRST]]'\n  ;;\nsolaris*)\n  symcode='[[BDRT]]'\n  ;;\nsco3.2v5*)\n  symcode='[[DT]]'\n  ;;\nsysv4.2uw2*)\n  symcode='[[DT]]'\n  ;;\nsysv5* | sco5v6* | unixware* | OpenUNIX*)\n  symcode='[[ABDT]]'\n  ;;\nsysv4)\n  symcode='[[DFNSTU]]'\n  ;;\nesac\n\n# If we're using GNU nm, then use its standard symbol codes.\ncase `$NM -V 2>&1` in\n*GNU* | *'with BFD'*)\n  symcode='[[ABCDGIRSTW]]' ;;\nesac\n\nif test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n  # Gets list of data symbols to import.\n  lt_cv_sys_global_symbol_to_import=\"sed -n -e 's/^I .* \\(.*\\)$/\\1/p'\"\n  # Adjust the below global symbol transforms to fixup imported variables.\n  lt_cdecl_hook=\" -e 's/^I .* \\(.*\\)$/extern __declspec(dllimport) char \\1;/p'\"\n  lt_c_name_hook=\" -e 's/^I .* \\(.*\\)$/  {\\\"\\1\\\", (void *) 0},/p'\"\n  lt_c_name_lib_hook=\"\\\n  -e 's/^I .* \\(lib.*\\)$/  {\\\"\\1\\\", (void *) 0},/p'\\\n  -e 's/^I .* \\(.*\\)$/  {\\\"lib\\1\\\", (void *) 0},/p'\"\nelse\n  # Disable hooks by default.\n  lt_cv_sys_global_symbol_to_import=\n  lt_cdecl_hook=\n  lt_c_name_hook=\n  lt_c_name_lib_hook=\nfi\n\n# Transform an extracted symbol line into a proper C declaration.\n# Some systems (esp. on ia64) link data and code symbols differently,\n# so use this general approach.\nlt_cv_sys_global_symbol_to_cdecl=\"sed -n\"\\\n$lt_cdecl_hook\\\n\" -e 's/^T .* \\(.*\\)$/extern int \\1();/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/extern char \\1;/p'\"\n\n# Transform an extracted symbol line into symbol name and symbol address\nlt_cv_sys_global_symbol_to_c_name_address=\"sed -n\"\\\n$lt_c_name_hook\\\n\" -e 's/^: \\(.*\\) .*$/  {\\\"\\1\\\", (void *) 0},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/p'\"\n\n# Transform an extracted symbol line into symbol name with lib prefix and\n# symbol address.\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix=\"sed -n\"\\\n$lt_c_name_lib_hook\\\n\" -e 's/^: \\(.*\\) .*$/  {\\\"\\1\\\", (void *) 0},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(lib.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/  {\\\"lib\\1\\\", (void *) \\&\\1},/p'\"\n\n# Handle CRLF in mingw tool chain\nopt_cr=\ncase $build_os in\nmingw*)\n  opt_cr=`$ECHO 'x\\{0,1\\}' | tr x '\\015'` # option cr in regexp\n  ;;\nesac\n\n# Try without a prefix underscore, then with it.\nfor ac_symprfx in \"\" \"_\"; do\n\n  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.\n  symxfrm=\"\\\\1 $ac_symprfx\\\\2 \\\\2\"\n\n  # Write the raw and C identifiers.\n  if test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n    # Fake it for dumpbin and say T for any non-static function,\n    # D for any global variable and I for any imported variable.\n    # Also find C++ and __fastcall symbols from MSVC++,\n    # which start with @ or ?.\n    lt_cv_sys_global_symbol_pipe=\"$AWK ['\"\\\n\"     {last_section=section; section=\\$ 3};\"\\\n\"     /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};\"\\\n\"     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};\"\\\n\"     /^ *Symbol name *: /{split(\\$ 0,sn,\\\":\\\"); si=substr(sn[2],2)};\"\\\n\"     /^ *Type *: code/{print \\\"T\\\",si,substr(si,length(prfx))};\"\\\n\"     /^ *Type *: data/{print \\\"I\\\",si,substr(si,length(prfx))};\"\\\n\"     \\$ 0!~/External *\\|/{next};\"\\\n\"     / 0+ UNDEF /{next}; / UNDEF \\([^|]\\)*()/{next};\"\\\n\"     {if(hide[section]) next};\"\\\n\"     {f=\\\"D\\\"}; \\$ 0~/\\(\\).*\\|/{f=\\\"T\\\"};\"\\\n\"     {split(\\$ 0,a,/\\||\\r/); split(a[2],s)};\"\\\n\"     s[1]~/^[@?]/{print f,s[1],s[1]; next};\"\\\n\"     s[1]~prfx {split(s[1],t,\\\"@\\\"); print f,t[1],substr(t[1],length(prfx))}\"\\\n\"     ' prfx=^$ac_symprfx]\"\n  else\n    lt_cv_sys_global_symbol_pipe=\"sed -n -e 's/^.*[[\t ]]\\($symcode$symcode*\\)[[\t ]][[\t ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'\"\n  fi\n  lt_cv_sys_global_symbol_pipe=\"$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'\"\n\n  # Check to see that the pipe works correctly.\n  pipe_works=no\n\n  rm -f conftest*\n  cat > conftest.$ac_ext <<_LT_EOF\n#ifdef __cplusplus\nextern \"C\" {\n#endif\nchar nm_test_var;\nvoid nm_test_func(void);\nvoid nm_test_func(void){}\n#ifdef __cplusplus\n}\n#endif\nint main(){nm_test_var='a';nm_test_func();return(0);}\n_LT_EOF\n\n  if AC_TRY_EVAL(ac_compile); then\n    # Now try to grab the symbols.\n    nlist=conftest.nm\n    if AC_TRY_EVAL(NM conftest.$ac_objext \\| \"$lt_cv_sys_global_symbol_pipe\" \\> $nlist) && test -s \"$nlist\"; then\n      # Try sorting and uniquifying the output.\n      if sort \"$nlist\" | uniq > \"$nlist\"T; then\n\tmv -f \"$nlist\"T \"$nlist\"\n      else\n\trm -f \"$nlist\"T\n      fi\n\n      # Make sure that we snagged all the symbols we need.\n      if $GREP ' nm_test_var$' \"$nlist\" >/dev/null; then\n\tif $GREP ' nm_test_func$' \"$nlist\" >/dev/null; then\n\t  cat <<_LT_EOF > conftest.$ac_ext\n/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */\n#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE\n/* DATA imports from DLLs on WIN32 can't be const, because runtime\n   relocations are performed -- see ld's documentation on pseudo-relocs.  */\n# define LT@&t@_DLSYM_CONST\n#elif defined __osf__\n/* This system does not cope well with relocations in const data.  */\n# define LT@&t@_DLSYM_CONST\n#else\n# define LT@&t@_DLSYM_CONST const\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n_LT_EOF\n\t  # Now generate the symbol file.\n\t  eval \"$lt_cv_sys_global_symbol_to_cdecl\"' < \"$nlist\" | $GREP -v main >> conftest.$ac_ext'\n\n\t  cat <<_LT_EOF >> conftest.$ac_ext\n\n/* The mapping between symbol names and symbols.  */\nLT@&t@_DLSYM_CONST struct {\n  const char *name;\n  void       *address;\n}\nlt__PROGRAM__LTX_preloaded_symbols[[]] =\n{\n  { \"@PROGRAM@\", (void *) 0 },\n_LT_EOF\n\t  $SED \"s/^$symcode$symcode* .* \\(.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/\" < \"$nlist\" | $GREP -v main >> conftest.$ac_ext\n\t  cat <<\\_LT_EOF >> conftest.$ac_ext\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt__PROGRAM__LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\n_LT_EOF\n\t  # Now try linking the two files.\n\t  mv conftest.$ac_objext conftstm.$ac_objext\n\t  lt_globsym_save_LIBS=$LIBS\n\t  lt_globsym_save_CFLAGS=$CFLAGS\n\t  LIBS=conftstm.$ac_objext\n\t  CFLAGS=\"$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)\"\n\t  if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then\n\t    pipe_works=yes\n\t  fi\n\t  LIBS=$lt_globsym_save_LIBS\n\t  CFLAGS=$lt_globsym_save_CFLAGS\n\telse\n\t  echo \"cannot find nm_test_func in $nlist\" >&AS_MESSAGE_LOG_FD\n\tfi\n      else\n\techo \"cannot find nm_test_var in $nlist\" >&AS_MESSAGE_LOG_FD\n      fi\n    else\n      echo \"cannot run $lt_cv_sys_global_symbol_pipe\" >&AS_MESSAGE_LOG_FD\n    fi\n  else\n    echo \"$progname: failed program was:\" >&AS_MESSAGE_LOG_FD\n    cat conftest.$ac_ext >&5\n  fi\n  rm -rf conftest* conftst*\n\n  # Do not use the global_symbol_pipe unless it works.\n  if test yes = \"$pipe_works\"; then\n    break\n  else\n    lt_cv_sys_global_symbol_pipe=\n  fi\ndone\n])\nif test -z \"$lt_cv_sys_global_symbol_pipe\"; then\n  lt_cv_sys_global_symbol_to_cdecl=\nfi\nif test -z \"$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl\"; then\n  AC_MSG_RESULT(failed)\nelse\n  AC_MSG_RESULT(ok)\nfi\n\n# Response file support.\nif test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n  nm_file_list_spec='@'\nelif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then\n  nm_file_list_spec='@'\nfi\n\n_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],\n    [Take the output of nm and produce a listing of raw symbols and C names])\n_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],\n    [Transform the output of nm in a proper C declaration])\n_LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1],\n    [Transform the output of nm into a list of symbols to manually relocate])\n_LT_DECL([global_symbol_to_c_name_address],\n    [lt_cv_sys_global_symbol_to_c_name_address], [1],\n    [Transform the output of nm in a C name address pair])\n_LT_DECL([global_symbol_to_c_name_address_lib_prefix],\n    [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],\n    [Transform the output of nm in a C name address pair when lib prefix is needed])\n_LT_DECL([nm_interface], [lt_cv_nm_interface], [1],\n    [The name lister interface])\n_LT_DECL([], [nm_file_list_spec], [1],\n    [Specify filename containing input files for $NM])\n]) # _LT_CMD_GLOBAL_SYMBOLS\n\n\n# _LT_COMPILER_PIC([TAGNAME])\n# ---------------------------\nm4_defun([_LT_COMPILER_PIC],\n[m4_require([_LT_TAG_COMPILER])dnl\n_LT_TAGVAR(lt_prog_compiler_wl, $1)=\n_LT_TAGVAR(lt_prog_compiler_pic, $1)=\n_LT_TAGVAR(lt_prog_compiler_static, $1)=\n\nm4_if([$1], [CXX], [\n  # C++ specific cases for pic, static, wl, etc.\n  if test yes = \"$GXX\"; then\n    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\n    case $host_os in\n    aix*)\n      # All AIX code is PIC.\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      fi\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n        ;;\n      m68k)\n            # FIXME: we need at least 68020 code to build shared libraries, but\n            # adding the '-m68020' flag to GCC prevents building anything better,\n            # like '-m68040'.\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'\n        ;;\n      esac\n      ;;\n\n    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)\n      # PIC is the default for these OSes.\n      ;;\n    mingw* | cygwin* | os2* | pw32* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      # Although the cygwin gcc ignores -fPIC, still need this for old-style\n      # (--disable-auto-import) libraries\n      m4_if([$1], [GCJ], [],\n\t[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])\n      case $host_os in\n      os2*)\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'\n\t;;\n      esac\n      ;;\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'\n      ;;\n    *djgpp*)\n      # DJGPP does not support shared libraries at all\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n      ;;\n    haiku*)\n      # PIC is the default for Haiku.\n      # The \"-static\" flag exists, but is broken.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)=\n      ;;\n    interix[[3-9]]*)\n      # Interix 3.x gcc -fpic/-fPIC options generate broken code.\n      # Instead, we relocate shared libraries at runtime.\n      ;;\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic\n      fi\n      ;;\n    hpux*)\n      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit\n      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag\n      # sets the default TLS model and affects inlining.\n      case $host_cpu in\n      hppa*64*)\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t;;\n      esac\n      ;;\n    *qnx* | *nto*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n      ;;\n    *)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n      ;;\n    esac\n  else\n    case $host_os in\n      aix[[4-9]]*)\n\t# All AIX code is PIC.\n\tif test ia64 = \"$host_cpu\"; then\n\t  # AIX 5 now supports IA64 processor\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\telse\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'\n\tfi\n\t;;\n      chorus*)\n\tcase $cc_basename in\n\tcxch68*)\n\t  # Green Hills C++ Compiler\n\t  # _LT_TAGVAR(lt_prog_compiler_static, $1)=\"--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a\"\n\t  ;;\n\tesac\n\t;;\n      mingw* | cygwin* | os2* | pw32* | cegcc*)\n\t# This hack is so that the source file can tell whether it is being\n\t# built for inclusion in a dll (and should export symbols for example).\n\tm4_if([$1], [GCJ], [],\n\t  [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])\n\t;;\n      dgux*)\n\tcase $cc_basename in\n\t  ec++*)\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    ;;\n\t  ghcx*)\n\t    # Green Hills C++ Compiler\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      freebsd* | dragonfly*)\n\t# FreeBSD uses GNU C++\n\t;;\n      hpux9* | hpux10* | hpux11*)\n\tcase $cc_basename in\n\t  CC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'\n\t    if test ia64 != \"$host_cpu\"; then\n\t      _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'\n\t    fi\n\t    ;;\n\t  aCC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'\n\t    case $host_cpu in\n\t    hppa*64*|ia64*)\n\t      # +Z the default\n\t      ;;\n\t    *)\n\t      _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'\n\t      ;;\n\t    esac\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      interix*)\n\t# This is c89, which is MS Visual C++ (no shared libs)\n\t# Anyone wants to do a port?\n\t;;\n      irix5* | irix6* | nonstopux*)\n\tcase $cc_basename in\n\t  CC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n\t    # CC pic flag -KPIC is the default.\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n\tcase $cc_basename in\n\t  KCC*)\n\t    # KAI C++ Compiler\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t    ;;\n\t  ecpc* )\n\t    # old Intel C++ for x86_64, which still supported -KPIC.\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\t    ;;\n\t  icpc* )\n\t    # Intel C++, used to be incompatible with GCC.\n\t    # ICC 10 doesn't accept -KPIC any more.\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\t    ;;\n\t  pgCC* | pgcpp*)\n\t    # Portland Group C++ compiler\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    ;;\n\t  cxx*)\n\t    # Compaq C++\n\t    # Make sure the PIC flag is empty.  It appears that all Alpha\n\t    # Linux and Compaq Tru64 Unix objects are PIC.\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n\t    ;;\n\t  xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*)\n\t    # IBM XL 8.0, 9.0 on PPC and BlueGene\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'\n\t    ;;\n\t  *)\n\t    case `$CC -V 2>&1 | sed 5q` in\n\t    *Sun\\ C*)\n\t      # Sun C++ 5.9\n\t      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '\n\t      ;;\n\t    esac\n\t    ;;\n\tesac\n\t;;\n      lynxos*)\n\t;;\n      m88k*)\n\t;;\n      mvs*)\n\tcase $cc_basename in\n\t  cxx*)\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      netbsd*)\n\t;;\n      *qnx* | *nto*)\n        # QNX uses GNU C++, but need to define -shared option too, otherwise\n        # it will coredump.\n        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n        ;;\n      osf3* | osf4* | osf5*)\n\tcase $cc_basename in\n\t  KCC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'\n\t    ;;\n\t  RCC*)\n\t    # Rational C++ 2.4.1\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    ;;\n\t  cxx*)\n\t    # Digital/Compaq C++\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    # Make sure the PIC flag is empty.  It appears that all Alpha\n\t    # Linux and Compaq Tru64 Unix objects are PIC.\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      psos*)\n\t;;\n      solaris*)\n\tcase $cc_basename in\n\t  CC* | sunCC*)\n\t    # Sun C++ 4.2, 5.x and Centerline C++\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '\n\t    ;;\n\t  gcx*)\n\t    # Green Hills C++ Compiler\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      sunos4*)\n\tcase $cc_basename in\n\t  CC*)\n\t    # Sun C++ 4.x\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    ;;\n\t  lcc*)\n\t    # Lucid\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n\tcase $cc_basename in\n\t  CC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    ;;\n\tesac\n\t;;\n      tandem*)\n\tcase $cc_basename in\n\t  NCC*)\n\t    # NonStop-UX NCC 3.20\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      vxworks*)\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n\t;;\n    esac\n  fi\n],\n[\n  if test yes = \"$GCC\"; then\n    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\n    case $host_os in\n      aix*)\n      # All AIX code is PIC.\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      fi\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n        ;;\n      m68k)\n            # FIXME: we need at least 68020 code to build shared libraries, but\n            # adding the '-m68020' flag to GCC prevents building anything better,\n            # like '-m68040'.\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'\n        ;;\n      esac\n      ;;\n\n    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)\n      # PIC is the default for these OSes.\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      # Although the cygwin gcc ignores -fPIC, still need this for old-style\n      # (--disable-auto-import) libraries\n      m4_if([$1], [GCJ], [],\n\t[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])\n      case $host_os in\n      os2*)\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'\n\t;;\n      esac\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'\n      ;;\n\n    haiku*)\n      # PIC is the default for Haiku.\n      # The \"-static\" flag exists, but is broken.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)=\n      ;;\n\n    hpux*)\n      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit\n      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag\n      # sets the default TLS model and affects inlining.\n      case $host_cpu in\n      hppa*64*)\n\t# +Z the default\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t;;\n      esac\n      ;;\n\n    interix[[3-9]]*)\n      # Interix 3.x gcc -fpic/-fPIC options generate broken code.\n      # Instead, we relocate shared libraries at runtime.\n      ;;\n\n    msdosdjgpp*)\n      # Just because we use GCC doesn't mean we suddenly get shared libraries\n      # on systems that don't support them.\n      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n      enable_shared=no\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic\n      fi\n      ;;\n\n    *)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n      ;;\n    esac\n\n    case $cc_basename in\n    nvcc*) # Cuda Compiler Driver 2.2\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker '\n      if test -n \"$_LT_TAGVAR(lt_prog_compiler_pic, $1)\"; then\n        _LT_TAGVAR(lt_prog_compiler_pic, $1)=\"-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)\"\n      fi\n      ;;\n    esac\n  else\n    # PORTME Check for flag to pass linker flags through the system compiler.\n    case $host_os in\n    aix*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      else\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'\n      fi\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'\n      case $cc_basename in\n      nagfor*)\n        # NAG Fortran compiler\n        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,'\n        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'\n        _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n        ;;\n      esac\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      m4_if([$1], [GCJ], [],\n\t[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])\n      case $host_os in\n      os2*)\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'\n\t;;\n      esac\n      ;;\n\n    hpux9* | hpux10* | hpux11*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but\n      # not for PA HP-UX.\n      case $host_cpu in\n      hppa*64*|ia64*)\n\t# +Z the default\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'\n\t;;\n      esac\n      # Is there a better lt_prog_compiler_static that works with the bundled CC?\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      # PIC (with -KPIC) is the default.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n      ;;\n\n    linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n      case $cc_basename in\n      # old Intel for x86_64, which still supported -KPIC.\n      ecc*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n        ;;\n      # icc used to be incompatible with GCC.\n      # ICC 10 doesn't accept -KPIC any more.\n      icc* | ifort*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n        ;;\n      # Lahey Fortran 8.1.\n      lf95*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='--static'\n\t;;\n      nagfor*)\n\t# NAG Fortran compiler\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t;;\n      tcc*)\n\t# Fabrice Bellard et al's Tiny C Compiler\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\t;;\n      pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)\n        # Portland Group compilers (*not* the Pentium gcc compiler,\n\t# which looks to be a dead project)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n        ;;\n      ccc*)\n        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n        # All Alpha code is PIC.\n        _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n        ;;\n      xl* | bgxl* | bgf* | mpixl*)\n\t# IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'\n\t;;\n      *)\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ Ceres\\ Fortran* | *Sun*Fortran*\\ [[1-7]].* | *Sun*Fortran*\\ 8.[[0-3]]*)\n\t  # Sun Fortran 8.3 passes all unrecognized flags to the linker\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)=''\n\t  ;;\n\t*Sun\\ F* | *Sun*Fortran*)\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '\n\t  ;;\n\t*Sun\\ C*)\n\t  # Sun C 5.9\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t  ;;\n        *Intel*\\ [[CF]]*Compiler*)\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\t  ;;\n\t*Portland\\ Group*)\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t  ;;\n\tesac\n\t;;\n      esac\n      ;;\n\n    newsos6)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n      ;;\n\n    osf3* | osf4* | osf5*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      # All OSF/1 code is PIC.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n      ;;\n\n    rdos*)\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n      ;;\n\n    solaris*)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      case $cc_basename in\n      f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;\n      esac\n      ;;\n\n    sunos4*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    sysv4 | sysv4.2uw2* | sysv4.3*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      fi\n      ;;\n\n    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    unicos*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n      ;;\n\n    uts4*)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    *)\n      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n      ;;\n    esac\n  fi\n])\ncase $host_os in\n  # For platforms that do not support PIC, -DPIC is meaningless:\n  *djgpp*)\n    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n    ;;\n  *)\n    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\"$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])\"\n    ;;\nesac\n\nAC_CACHE_CHECK([for $compiler option to produce PIC],\n  [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)],\n  [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)])\n_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)\n\n#\n# Check to make sure the PIC flag actually works.\n#\nif test -n \"$_LT_TAGVAR(lt_prog_compiler_pic, $1)\"; then\n  _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works],\n    [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)],\n    [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [],\n    [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in\n     \"\" | \" \"*) ;;\n     *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=\" $_LT_TAGVAR(lt_prog_compiler_pic, $1)\" ;;\n     esac],\n    [_LT_TAGVAR(lt_prog_compiler_pic, $1)=\n     _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])\nfi\n_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1],\n\t[Additional compiler flags for building library objects])\n\n_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1],\n\t[How to pass a linker flag through the compiler])\n#\n# Check to make sure the static flag actually works.\n#\nwl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\\\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\\\"\n_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],\n  _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1),\n  $lt_tmp_static_flag,\n  [],\n  [_LT_TAGVAR(lt_prog_compiler_static, $1)=])\n_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1],\n\t[Compiler flag to prevent dynamic linking])\n])# _LT_COMPILER_PIC\n\n\n# _LT_LINKER_SHLIBS([TAGNAME])\n# ----------------------------\n# See if the linker supports building shared libraries.\nm4_defun([_LT_LINKER_SHLIBS],\n[AC_REQUIRE([LT_PATH_LD])dnl\nAC_REQUIRE([LT_PATH_NM])dnl\nm4_require([_LT_PATH_MANIFEST_TOOL])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl\nm4_require([_LT_TAG_COMPILER])dnl\nAC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])\nm4_if([$1], [CXX], [\n  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']\n  case $host_os in\n  aix[[4-9]]*)\n    # If we're using GNU nm, then we don't want the \"-C\" option.\n    # -C means demangle to GNU nm, but means don't demangle to AIX nm.\n    # Without the \"-l\" option, or with the \"-B\" option, AIX nm treats\n    # weak defined symbols like other global defined symbols, whereas\n    # GNU nm marks them as \"W\".\n    # While the 'weak' keyword is ignored in the Export File, we need\n    # it in the Import File for the 'aix-soname' feature, so we have\n    # to replace the \"-B\" option with \"-P\" for AIX nm.\n    if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then\n      _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\")) && ([substr](\\$ 3,1,1) != \".\")) { if (\\$ 2 == \"W\") { print \\$ 3 \" weak\" } else { print \\$ 3 } } }'\\'' | sort -u > $export_symbols'\n    else\n      _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\\''s/B\\([[^B]]*\\)$/P\\1/'\\''` -PCpgl $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) && ([substr](\\$ 1,1,1) != \".\")) { if ((\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) { print \\$ 1 \" weak\" } else { print \\$ 1 } } }'\\'' | sort -u > $export_symbols'\n    fi\n    ;;\n  pw32*)\n    _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds\n    ;;\n  cygwin* | mingw* | cegcc*)\n    case $cc_basename in\n    cl*)\n      _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'\n      ;;\n    *)\n      _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\\([[^ ]]*\\)/\\1 DATA/;s/^.*[[ ]]__nm__\\([[^ ]]*\\)[[ ]][[^ ]]*/\\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\\'' | sort | uniq > $export_symbols'\n      _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']\n      ;;\n    esac\n    ;;\n  *)\n    _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n    ;;\n  esac\n], [\n  runpath_var=\n  _LT_TAGVAR(allow_undefined_flag, $1)=\n  _LT_TAGVAR(always_export_symbols, $1)=no\n  _LT_TAGVAR(archive_cmds, $1)=\n  _LT_TAGVAR(archive_expsym_cmds, $1)=\n  _LT_TAGVAR(compiler_needs_object, $1)=no\n  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n  _LT_TAGVAR(export_dynamic_flag_spec, $1)=\n  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  _LT_TAGVAR(hardcode_automatic, $1)=no\n  _LT_TAGVAR(hardcode_direct, $1)=no\n  _LT_TAGVAR(hardcode_direct_absolute, $1)=no\n  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n  _LT_TAGVAR(hardcode_libdir_separator, $1)=\n  _LT_TAGVAR(hardcode_minus_L, $1)=no\n  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported\n  _LT_TAGVAR(inherit_rpath, $1)=no\n  _LT_TAGVAR(link_all_deplibs, $1)=unknown\n  _LT_TAGVAR(module_cmds, $1)=\n  _LT_TAGVAR(module_expsym_cmds, $1)=\n  _LT_TAGVAR(old_archive_from_new_cmds, $1)=\n  _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)=\n  _LT_TAGVAR(thread_safe_flag_spec, $1)=\n  _LT_TAGVAR(whole_archive_flag_spec, $1)=\n  # include_expsyms should be a list of space-separated symbols to be *always*\n  # included in the symbol list\n  _LT_TAGVAR(include_expsyms, $1)=\n  # exclude_expsyms can be an extended regexp of symbols to exclude\n  # it will be wrapped by ' (' and ')$', so one must not match beginning or\n  # end of line.  Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc',\n  # as well as any symbol that contains 'd'.\n  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']\n  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out\n  # platforms (ab)use it in PIC code, but their linkers get confused if\n  # the symbol is explicitly referenced.  Since portable code cannot\n  # rely on this symbol name, it's probably fine to never include it in\n  # preloaded symbol tables.\n  # Exclude shared library initialization/finalization symbols.\ndnl Note also adjust exclude_expsyms for C++ above.\n  extract_expsyms_cmds=\n\n  case $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    # FIXME: the MSVC++ port hasn't been tested in a loooong time\n    # When not using gcc, we currently assume that we are using\n    # Microsoft Visual C++.\n    if test yes != \"$GCC\"; then\n      with_gnu_ld=no\n    fi\n    ;;\n  interix*)\n    # we just hope/assume this is gcc and not c89 (= MSVC++)\n    with_gnu_ld=yes\n    ;;\n  openbsd* | bitrig*)\n    with_gnu_ld=no\n    ;;\n  esac\n\n  _LT_TAGVAR(ld_shlibs, $1)=yes\n\n  # On some targets, GNU ld is compatible enough with the native linker\n  # that we're better off using the native interface for both.\n  lt_use_gnu_ld_interface=no\n  if test yes = \"$with_gnu_ld\"; then\n    case $host_os in\n      aix*)\n\t# The AIX port of GNU ld has always aspired to compatibility\n\t# with the native linker.  However, as the warning in the GNU ld\n\t# block says, versions before 2.19.5* couldn't really create working\n\t# shared libraries, regardless of the interface used.\n\tcase `$LD -v 2>&1` in\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.19.5*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.[[2-9]]*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ [[3-9]]*) ;;\n\t  *)\n\t    lt_use_gnu_ld_interface=yes\n\t    ;;\n\tesac\n\t;;\n      *)\n\tlt_use_gnu_ld_interface=yes\n\t;;\n    esac\n  fi\n\n  if test yes = \"$lt_use_gnu_ld_interface\"; then\n    # If archive_cmds runs LD, not CC, wlarc should be empty\n    wlarc='$wl'\n\n    # Set some defaults for GNU ld with shared library support. These\n    # are reset later if shared libraries are not supported. Putting them\n    # here allows them to be overridden if necessary.\n    runpath_var=LD_RUN_PATH\n    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n    # ancient GNU ld didn't support --whole-archive et. al.\n    if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then\n      _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'\n    else\n      _LT_TAGVAR(whole_archive_flag_spec, $1)=\n    fi\n    supports_anon_versioning=no\n    case `$LD -v | $SED -e 's/([^)]\\+)\\s\\+//' 2>&1` in\n      *GNU\\ gold*) supports_anon_versioning=yes ;;\n      *\\ [[01]].* | *\\ 2.[[0-9]].* | *\\ 2.10.*) ;; # catch versions < 2.11\n      *\\ 2.11.93.0.2\\ *) supports_anon_versioning=yes ;; # RH7.3 ...\n      *\\ 2.11.92.0.12\\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...\n      *\\ 2.11.*) ;; # other 2.11 versions\n      *) supports_anon_versioning=yes ;;\n    esac\n\n    # See if GNU ld supports shared libraries.\n    case $host_os in\n    aix[[3-9]]*)\n      # On AIX/PPC, the GNU linker is very broken\n      if test ia64 != \"$host_cpu\"; then\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: the GNU linker, at least up to release 2.19, is reported\n*** to be unable to reliably create shared libraries on AIX.\n*** Therefore, libtool is disabling shared libraries support.  If you\n*** really care for shared libraries, you may want to install binutils\n*** 2.20 or above, or modify your PATH so that a non-GNU linker is found.\n*** You will then need to restart the configuration process.\n\n_LT_EOF\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n            _LT_TAGVAR(archive_expsym_cmds, $1)=''\n        ;;\n      m68k)\n            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO \"#define NAME $libname\" > $output_objdir/a2ixlibrary.data~$ECHO \"#define LIBRARY_ID 1\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define VERSION $major\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define REVISION $revision\" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'\n            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n            _LT_TAGVAR(hardcode_minus_L, $1)=yes\n        ;;\n      esac\n      ;;\n\n    beos*)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t_LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t# Joseph Beckenbach <jrb3@best.com> says some releases of gcc\n\t# support --undefined.  This deserves some investigation.  FIXME\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,\n      # as there is no search path for DLLs.\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols'\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      _LT_TAGVAR(always_export_symbols, $1)=no\n      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n      _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\\([[^ ]]*\\)/\\1 DATA/;s/^.*[[ ]]__nm__\\([[^ ]]*\\)[[ ]][[^ ]]*/\\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\\'' | sort | uniq > $export_symbols'\n      _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']\n\n      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then\n        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n\t# If the export-symbols file already is a .def file, use it as\n\t# is; otherwise, prepend EXPORTS...\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then\n          cp $export_symbols $output_objdir/$soname.def;\n        else\n          echo EXPORTS > $output_objdir/$soname.def;\n          cat $export_symbols >> $output_objdir/$soname.def;\n        fi~\n        $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    haiku*)\n      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      ;;\n\n    os2*)\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      shrext_cmds=.dll\n      _LT_TAGVAR(archive_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\temxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\tprefix_cmds=\"$SED\"~\n\tif test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t  prefix_cmds=\"$prefix_cmds -e 1d\";\n\tfi~\n\tprefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\tcat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n      ;;\n\n    interix[[3-9]]*)\n      _LT_TAGVAR(hardcode_direct, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.\n      # Instead, shared libraries are loaded at an image base (0x10000000 by\n      # default) and relocated if they conflict, which is a slow very memory\n      # consuming and fragmenting process.  To avoid this, we pick a random,\n      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link\n      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.\n      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n      _LT_TAGVAR(archive_expsym_cmds, $1)='sed \"s|^|_|\" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n      ;;\n\n    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)\n      tmp_diet=no\n      if test linux-dietlibc = \"$host_os\"; then\n\tcase $cc_basename in\n\t  diet\\ *) tmp_diet=yes;;\t# linux-dietlibc with static linking (!diet-dyn)\n\tesac\n      fi\n      if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \\\n\t && test no = \"$tmp_diet\"\n      then\n\ttmp_addflag=' $pic_flag'\n\ttmp_sharedflag='-shared'\n\tcase $cc_basename,$host_cpu in\n        pgcc*)\t\t\t\t# Portland Group C compiler\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  tmp_addflag=' $pic_flag'\n\t  ;;\n\tpgf77* | pgf90* | pgf95* | pgfortran*)\n\t\t\t\t\t# Portland Group f77 and f90 compilers\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  tmp_addflag=' $pic_flag -Mnomain' ;;\n\tecc*,ia64* | icc*,ia64*)\t# Intel C compiler on ia64\n\t  tmp_addflag=' -i_dynamic' ;;\n\tefc*,ia64* | ifort*,ia64*)\t# Intel Fortran compiler on ia64\n\t  tmp_addflag=' -i_dynamic -nofor_main' ;;\n\tifc* | ifort*)\t\t\t# Intel Fortran compiler\n\t  tmp_addflag=' -nofor_main' ;;\n\tlf95*)\t\t\t\t# Lahey Fortran 8.1\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)=\n\t  tmp_sharedflag='--shared' ;;\n        nagfor*)                        # NAGFOR 5.3\n          tmp_sharedflag='-Wl,-shared' ;;\n\txl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below)\n\t  tmp_sharedflag='-qmkshrobj'\n\t  tmp_addflag= ;;\n\tnvcc*)\t# Cuda Compiler Driver 2.2\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  _LT_TAGVAR(compiler_needs_object, $1)=yes\n\t  ;;\n\tesac\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ C*)\t\t\t# Sun C 5.9\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\\\"\\\"; do test -z \\\"$conv\\\" || new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  _LT_TAGVAR(compiler_needs_object, $1)=yes\n\t  tmp_sharedflag='-G' ;;\n\t*Sun\\ F*)\t\t\t# Sun Fortran 8.3\n\t  tmp_sharedflag='-G' ;;\n\tesac\n\t_LT_TAGVAR(archive_cmds, $1)='$CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\n        if test yes = \"$supports_anon_versioning\"; then\n          _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $output_objdir/$libname.ver~\n            cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n            echo \"local: *; };\" >> $output_objdir/$libname.ver~\n            $CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'\n        fi\n\n\tcase $cc_basename in\n\ttcc*)\n\t  _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic'\n\t  ;;\n\txlf* | bgf* | bgxlf* | mpixlf*)\n\t  # IBM XL Fortran 10.1 on PPC cannot create shared libs itself\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'\n\t  if test yes = \"$supports_anon_versioning\"; then\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $output_objdir/$libname.ver~\n              cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n              echo \"local: *; };\" >> $output_objdir/$libname.ver~\n              $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'\n\t  fi\n\t  ;;\n\tesac\n      else\n        _LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'\n\twlarc=\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      fi\n      ;;\n\n    solaris*)\n      if $LD -v 2>&1 | $GREP 'BFD 2\\.8' > /dev/null; then\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: The releases 2.8.* of the GNU linker cannot reliably\n*** create shared libraries on Solaris systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.9.1 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)\n      case `$LD -v 2>&1` in\n        *\\ [[01]].* | *\\ 2.[[0-9]].* | *\\ 2.1[[0-5]].*)\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot\n*** reliably create shared libraries on SCO systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n\t;;\n\t*)\n\t  # For security reasons, it is highly recommended that you always\n\t  # use absolute paths for naming shared libraries, and exclude the\n\t  # DT_RUNPATH tag from executables and libraries.  But doing so\n\t  # requires that you compile everything twice, which is a pain.\n\t  if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t  else\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t  fi\n\t;;\n      esac\n      ;;\n\n    sunos4*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      wlarc=\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    *)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n    esac\n\n    if test no = \"$_LT_TAGVAR(ld_shlibs, $1)\"; then\n      runpath_var=\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)=\n      _LT_TAGVAR(whole_archive_flag_spec, $1)=\n    fi\n  else\n    # PORTME fill in a description of your system's linker (not GNU ld)\n    case $host_os in\n    aix3*)\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      _LT_TAGVAR(always_export_symbols, $1)=yes\n      _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'\n      # Note: this linker hardcodes the directories in LIBPATH if there\n      # are no directories specified by -L.\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      if test yes = \"$GCC\" && test -z \"$lt_prog_compiler_static\"; then\n\t# Neither direct hardcoding nor static linking is supported with a\n\t# broken collect2.\n\t_LT_TAGVAR(hardcode_direct, $1)=unsupported\n      fi\n      ;;\n\n    aix[[4-9]]*)\n      if test ia64 = \"$host_cpu\"; then\n\t# On IA64, the linker does run time linking by default, so we don't\n\t# have to do anything special.\n\taix_use_runtimelinking=no\n\texp_sym_flag='-Bexport'\n\tno_entry_flag=\n      else\n\t# If we're using GNU nm, then we don't want the \"-C\" option.\n\t# -C means demangle to GNU nm, but means don't demangle to AIX nm.\n\t# Without the \"-l\" option, or with the \"-B\" option, AIX nm treats\n\t# weak defined symbols like other global defined symbols, whereas\n\t# GNU nm marks them as \"W\".\n\t# While the 'weak' keyword is ignored in the Export File, we need\n\t# it in the Import File for the 'aix-soname' feature, so we have\n\t# to replace the \"-B\" option with \"-P\" for AIX nm.\n\tif $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then\n\t  _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\")) && ([substr](\\$ 3,1,1) != \".\")) { if (\\$ 2 == \"W\") { print \\$ 3 \" weak\" } else { print \\$ 3 } } }'\\'' | sort -u > $export_symbols'\n\telse\n\t  _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\\''s/B\\([[^B]]*\\)$/P\\1/'\\''` -PCpgl $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) && ([substr](\\$ 1,1,1) != \".\")) { if ((\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) { print \\$ 1 \" weak\" } else { print \\$ 1 } } }'\\'' | sort -u > $export_symbols'\n\tfi\n\taix_use_runtimelinking=no\n\n\t# Test if we are trying to use run time linking or normal\n\t# AIX style linking. If -brtl is somewhere in LDFLAGS, we\n\t# have runtime linking enabled, and use it for executables.\n\t# For shared libraries, we enable/disable runtime linking\n\t# depending on the kind of the shared library created -\n\t# when \"with_aix_soname,aix_use_runtimelinking\" is:\n\t# \"aix,no\"   lib.a(lib.so.V) shared, rtl:no,  for executables\n\t# \"aix,yes\"  lib.so          shared, rtl:yes, for executables\n\t#            lib.a           static archive\n\t# \"both,no\"  lib.so.V(shr.o) shared, rtl:yes\n\t#            lib.a(lib.so.V) shared, rtl:no,  for executables\n\t# \"both,yes\" lib.so.V(shr.o) shared, rtl:yes, for executables\n\t#            lib.a(lib.so.V) shared, rtl:no\n\t# \"svr4,*\"   lib.so.V(shr.o) shared, rtl:yes, for executables\n\t#            lib.a           static archive\n\tcase $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)\n\t  for ld_flag in $LDFLAGS; do\n\t  if (test x-brtl = \"x$ld_flag\" || test x-Wl,-brtl = \"x$ld_flag\"); then\n\t    aix_use_runtimelinking=yes\n\t    break\n\t  fi\n\t  done\n\t  if test svr4,no = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t    # With aix-soname=svr4, we create the lib.so.V shared archives only,\n\t    # so we don't have lib.a shared libs to link our executables.\n\t    # We have to force runtime linking in this case.\n\t    aix_use_runtimelinking=yes\n\t    LDFLAGS=\"$LDFLAGS -Wl,-brtl\"\n\t  fi\n\t  ;;\n\tesac\n\n\texp_sym_flag='-bexport'\n\tno_entry_flag='-bnoentry'\n      fi\n\n      # When large executables or shared objects are built, AIX ld can\n      # have problems creating the table of contents.  If linking a library\n      # or program results in \"error TOC overflow\" add -mminimal-toc to\n      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not\n      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.\n\n      _LT_TAGVAR(archive_cmds, $1)=''\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      _LT_TAGVAR(file_list_spec, $1)='$wl-f,'\n      case $with_aix_soname,$aix_use_runtimelinking in\n      aix,*) ;; # traditional, no import file\n      svr4,* | *,yes) # use import file\n\t# The Import File defines what to hardcode.\n\t_LT_TAGVAR(hardcode_direct, $1)=no\n\t_LT_TAGVAR(hardcode_direct_absolute, $1)=no\n\t;;\n      esac\n\n      if test yes = \"$GCC\"; then\n\tcase $host_os in aix4.[[012]]|aix4.[[012]].*)\n\t# We only want to do this on AIX 4.2 and lower, the check\n\t# below for broken collect2 doesn't work under 4.3+\n\t  collect2name=`$CC -print-prog-name=collect2`\n\t  if test -f \"$collect2name\" &&\n\t   strings \"$collect2name\" | $GREP resolve_lib_name >/dev/null\n\t  then\n\t  # We have reworked collect2\n\t  :\n\t  else\n\t  # We have old collect2\n\t  _LT_TAGVAR(hardcode_direct, $1)=unsupported\n\t  # It fails to find uninstalled libraries when the uninstalled\n\t  # path is not listed in the libpath.  Setting hardcode_minus_L\n\t  # to unsupported forces relinking\n\t  _LT_TAGVAR(hardcode_minus_L, $1)=yes\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n\t  _LT_TAGVAR(hardcode_libdir_separator, $1)=\n\t  fi\n\t  ;;\n\tesac\n\tshared_flag='-shared'\n\tif test yes = \"$aix_use_runtimelinking\"; then\n\t  shared_flag=\"$shared_flag \"'$wl-G'\n\tfi\n\t# Need to ensure runtime linking is disabled for the traditional\n\t# shared library, or the linker may eventually find shared libraries\n\t# /with/ Import File - we do not want to mix them.\n\tshared_flag_aix='-shared'\n\tshared_flag_svr4='-shared $wl-G'\n      else\n\t# not using gcc\n\tif test ia64 = \"$host_cpu\"; then\n\t# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release\n\t# chokes on -Wl,-G. The following line is correct:\n\t  shared_flag='-G'\n\telse\n\t  if test yes = \"$aix_use_runtimelinking\"; then\n\t    shared_flag='$wl-G'\n\t  else\n\t    shared_flag='$wl-bM:SRE'\n\t  fi\n\t  shared_flag_aix='$wl-bM:SRE'\n\t  shared_flag_svr4='$wl-G'\n\tfi\n      fi\n\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall'\n      # It seems that -bexpall does not export symbols beginning with\n      # underscore (_), so it is better to generate a list of symbols to export.\n      _LT_TAGVAR(always_export_symbols, $1)=yes\n      if test aix,yes = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t# Warning - without using the other runtime loading flags (-brtl),\n\t# -berok will link without error, but may produce a broken library.\n\t_LT_TAGVAR(allow_undefined_flag, $1)='-berok'\n        # Determine the default libpath from the value encoded in an\n        # empty executable.\n        _LT_SYS_MODULE_PATH_AIX([$1])\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'\"$aix_libpath\"\n        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n \"$allow_undefined_flag\"; then func_echo_all \"$wl$allow_undefined_flag\"; else :; fi` $wl'$exp_sym_flag:\\$export_symbols' '$shared_flag\n      else\n\tif test ia64 = \"$host_cpu\"; then\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib'\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=\"-z nodefs\"\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)=\"\\$CC $shared_flag\"' -o $output_objdir/$soname $libobjs $deplibs '\"\\$wl$no_entry_flag\"' $compiler_flags $wl$allow_undefined_flag '\"\\$wl$exp_sym_flag:\\$export_symbols\"\n\telse\n\t # Determine the default libpath from the value encoded in an\n\t # empty executable.\n\t _LT_SYS_MODULE_PATH_AIX([$1])\n\t _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'\"$aix_libpath\"\n\t  # Warning - without using the other run time loading flags,\n\t  # -berok will link without error, but may produce a broken library.\n\t  _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok'\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok'\n\t  if test yes = \"$with_gnu_ld\"; then\n\t    # We only use this code for GNU lds that support --whole-archive.\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'\n\t  else\n\t    # Exported symbols can be pulled into shared objects from archives\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'\n\t  fi\n\t  _LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'\n\t  # -brtl affects multiple linker settings, -berok does not and is overridden later\n\t  compiler_flags_filtered='`func_echo_all \"$compiler_flags \" | $SED -e \"s%-brtl\\\\([[, ]]\\\\)%-berok\\\\1%g\"`'\n\t  if test svr4 != \"$with_aix_soname\"; then\n\t    # This is similar to how AIX traditionally builds its shared libraries.\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'\n\t  fi\n\t  if test aix != \"$with_aix_soname\"; then\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all \"#! $soname($shared_archive_member_spec.o)\"; if test shr_64 = \"$shared_archive_member_spec\"; then func_echo_all \"# 64\"; else func_echo_all \"# 32\"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'\n\t  else\n\t    # used by -dlpreopen to get the symbols\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'\n\t  fi\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$RM -r $output_objdir/$realname.d'\n\tfi\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n            _LT_TAGVAR(archive_expsym_cmds, $1)=''\n        ;;\n      m68k)\n            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO \"#define NAME $libname\" > $output_objdir/a2ixlibrary.data~$ECHO \"#define LIBRARY_ID 1\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define VERSION $major\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define REVISION $revision\" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'\n            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n            _LT_TAGVAR(hardcode_minus_L, $1)=yes\n        ;;\n      esac\n      ;;\n\n    bsdi[[45]]*)\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # When not using gcc, we currently assume that we are using\n      # Microsoft Visual C++.\n      # hardcode_libdir_flag_spec is actually meaningless, as there is\n      # no search path for DLLs.\n      case $cc_basename in\n      cl*)\n\t# Native MSVC\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '\n\t_LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t_LT_TAGVAR(always_export_symbols, $1)=yes\n\t_LT_TAGVAR(file_list_spec, $1)='@'\n\t# Tell ltmain to make .lib files, not .a files.\n\tlibext=lib\n\t# Tell ltmain to make .dll files, not .so files.\n\tshrext_cmds=.dll\n\t# FIXME: Setting linknames here is a bad hack.\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~linknames='\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then\n            cp \"$export_symbols\" \"$output_objdir/$soname.def\";\n            echo \"$tool_output_objdir$soname.def\" > \"$output_objdir/$soname.exp\";\n          else\n            $SED -e '\\''s/^/-link -EXPORT:/'\\'' < $export_symbols > $output_objdir/$soname.exp;\n          fi~\n          $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs \"@$tool_output_objdir$soname.exp\" -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~\n          linknames='\n\t# The linker will not automatically build a static lib if we build a DLL.\n\t# _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'\n\t_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n\t_LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'\n\t_LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\\([[^ ]]*\\)/\\1,DATA/'\\'' | $SED -e '\\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\\'' | sort | uniq > $export_symbols'\n\t# Don't use ranlib\n\t_LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'\n\t_LT_TAGVAR(postlink_cmds, $1)='lt_outputfile=\"@OUTPUT@\"~\n          lt_tool_outputfile=\"@TOOL_OUTPUT@\"~\n          case $lt_outputfile in\n            *.exe|*.EXE) ;;\n            *)\n              lt_outputfile=$lt_outputfile.exe\n              lt_tool_outputfile=$lt_tool_outputfile.exe\n              ;;\n          esac~\n          if test : != \"$MANIFEST_TOOL\" && test -f \"$lt_outputfile.manifest\"; then\n            $MANIFEST_TOOL -manifest \"$lt_tool_outputfile.manifest\" -outputresource:\"$lt_tool_outputfile\" || exit 1;\n            $RM \"$lt_outputfile.manifest\";\n          fi'\n\t;;\n      *)\n\t# Assume MSVC wrapper\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '\n\t_LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t# Tell ltmain to make .lib files, not .a files.\n\tlibext=lib\n\t# Tell ltmain to make .dll files, not .so files.\n\tshrext_cmds=.dll\n\t# FIXME: Setting linknames here is a bad hack.\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all \"$deplibs\" | $SED '\\''s/ -lc$//'\\''` -link -dll~linknames='\n\t# The linker will automatically build a .lib file if we build a DLL.\n\t_LT_TAGVAR(old_archive_from_new_cmds, $1)='true'\n\t# FIXME: Should let the user specify the lib program.\n\t_LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'\n\t_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n\t;;\n      esac\n      ;;\n\n    darwin* | rhapsody*)\n      _LT_DARWIN_LINKER_FEATURES($1)\n      ;;\n\n    dgux*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor\n    # support.  Future versions do this automatically, but an explicit c++rt0.o\n    # does not break anything, and helps significantly (at the cost of a little\n    # extra space).\n    freebsd2.2*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    # Unfortunately, older versions of FreeBSD 2 do not have this feature.\n    freebsd2.*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.\n    freebsd* | dragonfly*)\n      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    hpux9*)\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n\n      # hardcode_minus_L: Not really in the search PATH,\n      # but as the default location of the library.\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n      ;;\n\n    hpux10*)\n      if test yes,no = \"$GCC,$with_gnu_ld\"; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      if test no = \"$with_gnu_ld\"; then\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'\n\t_LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\t_LT_TAGVAR(hardcode_direct, $1)=yes\n\t_LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n\t# hardcode_minus_L: Not really in the search PATH,\n\t# but as the default location of the library.\n\t_LT_TAGVAR(hardcode_minus_L, $1)=yes\n      fi\n      ;;\n\n    hpux11*)\n      if test yes,no = \"$GCC,$with_gnu_ld\"; then\n\tcase $host_cpu in\n\thppa*64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tesac\n      else\n\tcase $host_cpu in\n\thppa*64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\tm4_if($1, [], [\n\t  # Older versions of the 11.00 compiler do not understand -b yet\n\t  # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)\n\t  _LT_LINKER_OPTION([if $CC understands -b],\n\t    _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b],\n\t    [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'],\n\t    [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])],\n\t  [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'])\n\t  ;;\n\tesac\n      fi\n      if test no = \"$with_gnu_ld\"; then\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'\n\t_LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\tcase $host_cpu in\n\thppa*64*|ia64*)\n\t  _LT_TAGVAR(hardcode_direct, $1)=no\n\t  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t  ;;\n\t*)\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes\n\t  _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\t  _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n\n\t  # hardcode_minus_L: Not really in the search PATH,\n\t  # but as the default location of the library.\n\t  _LT_TAGVAR(hardcode_minus_L, $1)=yes\n\t  ;;\n\tesac\n      fi\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t# Try to use the -exported_symbol ld option, if it does not\n\t# work, assume that -exports_file does not work either and\n\t# implicitly export all symbols.\n\t# This should be the same for all languages, so no per-tag cache variable.\n\tAC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol],\n\t  [lt_cv_irix_exported_symbol],\n\t  [save_LDFLAGS=$LDFLAGS\n\t   LDFLAGS=\"$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null\"\n\t   AC_LINK_IFELSE(\n\t     [AC_LANG_SOURCE(\n\t        [AC_LANG_CASE([C], [[int foo (void) { return 0; }]],\n\t\t\t      [C++], [[int foo (void) { return 0; }]],\n\t\t\t      [Fortran 77], [[\n      subroutine foo\n      end]],\n\t\t\t      [Fortran], [[\n      subroutine foo\n      end]])])],\n\t      [lt_cv_irix_exported_symbol=yes],\n\t      [lt_cv_irix_exported_symbol=no])\n           LDFLAGS=$save_LDFLAGS])\n\tif test yes = \"$lt_cv_irix_exported_symbol\"; then\n          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib'\n\tfi\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib'\n      fi\n      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      _LT_TAGVAR(inherit_rpath, $1)=yes\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      ;;\n\n    linux*)\n      case $cc_basename in\n      tcc*)\n\t# Fabrice Bellard et al's Tiny C Compiler\n\t_LT_TAGVAR(ld_shlibs, $1)=yes\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t;;\n      esac\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    newsos6)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    *nto* | *qnx*)\n      ;;\n\n    openbsd* | bitrig*)\n      if test -f /usr/libexec/ld.so; then\n\t_LT_TAGVAR(hardcode_direct, $1)=yes\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t_LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\tif test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols'\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t  _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n\telse\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\tfi\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    os2*)\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      shrext_cmds=.dll\n      _LT_TAGVAR(archive_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\temxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\tprefix_cmds=\"$SED\"~\n\tif test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t  prefix_cmds=\"$prefix_cmds -e 1d\";\n\tfi~\n\tprefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\tcat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n      ;;\n\n    osf3*)\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\\*'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n      else\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \\*'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n      fi\n      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      ;;\n\n    osf4* | osf5*)\t# as osf3* with the addition of -msym flag\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\\*'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n      else\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \\*'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf \"%s %s\\\\n\" -exported_symbol \"\\$i\" >> $lib.exp; done; printf \"%s\\\\n\" \"-hidden\">> $lib.exp~\n          $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n \"$verstring\" && $ECHO \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp'\n\n\t# Both c and cxx compiler support -rpath directly\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'\n      fi\n      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      ;;\n\n    solaris*)\n      _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'\n      if test yes = \"$GCC\"; then\n\twlarc='$wl'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n          $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n      else\n\tcase `$CC -V 2>&1` in\n\t*\"Compilers 5.0\"*)\n\t  wlarc=''\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n            $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'\n\t  ;;\n\t*)\n\t  wlarc='$wl'\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n            $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n\t  ;;\n\tesac\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      case $host_os in\n      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;\n      *)\n\t# The compiler driver will combine and reorder linker options,\n\t# but understands '-z linker_flag'.  GCC discards it without '$wl',\n\t# but is careful enough not to reorder.\n\t# Supported since Solaris 2.6 (maybe 2.5.1?)\n\tif test yes = \"$GCC\"; then\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'\n\telse\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'\n\tfi\n\t;;\n      esac\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      ;;\n\n    sunos4*)\n      if test sequent = \"$host_vendor\"; then\n\t# Use $CC to link under sequent, because it throws in some extra .o\n\t# files that make .init and .fini sections work.\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    sysv4)\n      case $host_vendor in\n\tsni)\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true???\n\t;;\n\tsiemens)\n\t  ## LD is ld it makes a PLAMLIB\n\t  ## CC just makes a GrossModule.\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'\n\t  _LT_TAGVAR(hardcode_direct, $1)=no\n        ;;\n\tmotorola)\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie\n\t;;\n      esac\n      runpath_var='LD_RUN_PATH'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    sysv4.3*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\trunpath_var=LD_RUN_PATH\n\thardcode_runpath_var=yes\n\t_LT_TAGVAR(ld_shlibs, $1)=yes\n      fi\n      ;;\n\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)\n      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      runpath_var='LD_RUN_PATH'\n\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6*)\n      # Note: We CANNOT use -z defs as we might desire, because we do not\n      # link with -lc, and that would cause any symbols used from libc to\n      # always be unresolved, which means just about no library would\n      # ever link correctly.  If we're not using GNU ld we use -z text\n      # though, which does catch some bad symbols but isn't as heavy-handed\n      # as -z defs.\n      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'\n      _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs'\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport'\n      runpath_var='LD_RUN_PATH'\n\n      if test yes = \"$GCC\"; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    uts4*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    *)\n      _LT_TAGVAR(ld_shlibs, $1)=no\n      ;;\n    esac\n\n    if test sni = \"$host_vendor\"; then\n      case $host in\n      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym'\n\t;;\n      esac\n    fi\n  fi\n])\nAC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])\ntest no = \"$_LT_TAGVAR(ld_shlibs, $1)\" && can_build_shared=no\n\n_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld\n\n_LT_DECL([], [libext], [0], [Old archive suffix (normally \"a\")])dnl\n_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally \".so\")])dnl\n_LT_DECL([], [extract_expsyms_cmds], [2],\n    [The commands to extract the exported symbol list from a shared archive])\n\n#\n# Do we need to explicitly link libc?\n#\ncase \"x$_LT_TAGVAR(archive_cmds_need_lc, $1)\" in\nx|xyes)\n  # Assume -lc should be added\n  _LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\n  if test yes,yes = \"$GCC,$enable_shared\"; then\n    case $_LT_TAGVAR(archive_cmds, $1) in\n    *'~'*)\n      # FIXME: we may have to deal with multi-command sequences.\n      ;;\n    '$CC '*)\n      # Test whether the compiler implicitly links with -lc since on some\n      # systems, -lgcc has to come before -lc. If gcc already passes -lc\n      # to ld, don't add -lc before -lgcc.\n      AC_CACHE_CHECK([whether -lc should be explicitly linked in],\n\t[lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1),\n\t[$RM conftest*\n\techo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n\tif AC_TRY_EVAL(ac_compile) 2>conftest.err; then\n\t  soname=conftest\n\t  lib=conftest\n\t  libobjs=conftest.$ac_objext\n\t  deplibs=\n\t  wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1)\n\t  pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1)\n\t  compiler_flags=-v\n\t  linker_flags=-v\n\t  verstring=\n\t  output_objdir=.\n\t  libname=conftest\n\t  lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1)\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=\n\t  if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1)\n\t  then\n\t    lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\t  else\n\t    lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\t  fi\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag\n\telse\n\t  cat conftest.err 1>&5\n\tfi\n\t$RM conftest*\n\t])\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)\n      ;;\n    esac\n  fi\n  ;;\nesac\n\n_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0],\n    [Whether or not to add -lc for building shared libraries])\n_LT_TAGDECL([allow_libtool_libs_with_static_runtimes],\n    [enable_shared_with_static_runtimes], [0],\n    [Whether or not to disallow shared libs when runtime libs are static])\n_LT_TAGDECL([], [export_dynamic_flag_spec], [1],\n    [Compiler flag to allow reflexive dlopens])\n_LT_TAGDECL([], [whole_archive_flag_spec], [1],\n    [Compiler flag to generate shared objects directly from archives])\n_LT_TAGDECL([], [compiler_needs_object], [1],\n    [Whether the compiler copes with passing no objects directly])\n_LT_TAGDECL([], [old_archive_from_new_cmds], [2],\n    [Create an old-style archive from a shared archive])\n_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2],\n    [Create a temporary old-style archive to link instead of a shared archive])\n_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive])\n_LT_TAGDECL([], [archive_expsym_cmds], [2])\n_LT_TAGDECL([], [module_cmds], [2],\n    [Commands used to build a loadable module if different from building\n    a shared archive.])\n_LT_TAGDECL([], [module_expsym_cmds], [2])\n_LT_TAGDECL([], [with_gnu_ld], [1],\n    [Whether we are building with GNU ld or not])\n_LT_TAGDECL([], [allow_undefined_flag], [1],\n    [Flag that allows shared libraries with undefined symbols to be built])\n_LT_TAGDECL([], [no_undefined_flag], [1],\n    [Flag that enforces no undefined symbols])\n_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],\n    [Flag to hardcode $libdir into a binary during linking.\n    This must work even if $libdir does not exist])\n_LT_TAGDECL([], [hardcode_libdir_separator], [1],\n    [Whether we need a single \"-rpath\" flag with a separated argument])\n_LT_TAGDECL([], [hardcode_direct], [0],\n    [Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n    DIR into the resulting binary])\n_LT_TAGDECL([], [hardcode_direct_absolute], [0],\n    [Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n    DIR into the resulting binary and the resulting library dependency is\n    \"absolute\", i.e impossible to change by setting $shlibpath_var if the\n    library is relocated])\n_LT_TAGDECL([], [hardcode_minus_L], [0],\n    [Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n    into the resulting binary])\n_LT_TAGDECL([], [hardcode_shlibpath_var], [0],\n    [Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n    into the resulting binary])\n_LT_TAGDECL([], [hardcode_automatic], [0],\n    [Set to \"yes\" if building a shared library automatically hardcodes DIR\n    into the library and all subsequent libraries and executables linked\n    against it])\n_LT_TAGDECL([], [inherit_rpath], [0],\n    [Set to yes if linker adds runtime paths of dependent libraries\n    to runtime path list])\n_LT_TAGDECL([], [link_all_deplibs], [0],\n    [Whether libtool must link a program against all its dependency libraries])\n_LT_TAGDECL([], [always_export_symbols], [0],\n    [Set to \"yes\" if exported symbols are required])\n_LT_TAGDECL([], [export_symbols_cmds], [2],\n    [The commands to list exported symbols])\n_LT_TAGDECL([], [exclude_expsyms], [1],\n    [Symbols that should not be listed in the preloaded symbols])\n_LT_TAGDECL([], [include_expsyms], [1],\n    [Symbols that must always be exported])\n_LT_TAGDECL([], [prelink_cmds], [2],\n    [Commands necessary for linking programs (against libraries) with templates])\n_LT_TAGDECL([], [postlink_cmds], [2],\n    [Commands necessary for finishing linking programs])\n_LT_TAGDECL([], [file_list_spec], [1],\n    [Specify filename containing input files])\ndnl FIXME: Not yet implemented\ndnl _LT_TAGDECL([], [thread_safe_flag_spec], [1],\ndnl    [Compiler flag to generate thread safe objects])\n])# _LT_LINKER_SHLIBS\n\n\n# _LT_LANG_C_CONFIG([TAG])\n# ------------------------\n# Ensure that the configuration variables for a C compiler are suitably\n# defined.  These variables are subsequently used by _LT_CONFIG to write\n# the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_C_CONFIG],\n[m4_require([_LT_DECL_EGREP])dnl\nlt_save_CC=$CC\nAC_LANG_PUSH(C)\n\n# Source file extension for C test sources.\nac_ext=c\n\n# Object file extension for compiled C test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"int some_variable = 0;\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='int main(){return(0);}'\n\n_LT_TAG_COMPILER\n# Save the default compiler, since it gets overwritten when the other\n# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.\ncompiler_DEFAULT=$CC\n\n# save warnings/boilerplate of simple test code\n_LT_COMPILER_BOILERPLATE\n_LT_LINKER_BOILERPLATE\n\n## CAVEAT EMPTOR:\n## There is no encapsulation within the following macros, do not change\n## the running order or otherwise move them around unless you know exactly\n## what you are doing...\nif test -n \"$compiler\"; then\n  _LT_COMPILER_NO_RTTI($1)\n  _LT_COMPILER_PIC($1)\n  _LT_COMPILER_C_O($1)\n  _LT_COMPILER_FILE_LOCKS($1)\n  _LT_LINKER_SHLIBS($1)\n  _LT_SYS_DYNAMIC_LINKER($1)\n  _LT_LINKER_HARDCODE_LIBPATH($1)\n  LT_SYS_DLOPEN_SELF\n  _LT_CMD_STRIPLIB\n\n  # Report what library types will actually be built\n  AC_MSG_CHECKING([if libtool supports shared libraries])\n  AC_MSG_RESULT([$can_build_shared])\n\n  AC_MSG_CHECKING([whether to build shared libraries])\n  test no = \"$can_build_shared\" && enable_shared=no\n\n  # On AIX, shared libraries and static libraries use the same namespace, and\n  # are all built from PIC.\n  case $host_os in\n  aix3*)\n    test yes = \"$enable_shared\" && enable_static=no\n    if test -n \"$RANLIB\"; then\n      archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n      postinstall_cmds='$RANLIB $lib'\n    fi\n    ;;\n\n  aix[[4-9]]*)\n    if test ia64 != \"$host_cpu\"; then\n      case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in\n      yes,aix,yes) ;;\t\t\t# shared object as lib.so file only\n      yes,svr4,*) ;;\t\t\t# shared object as lib.so archive member only\n      yes,*) enable_static=no ;;\t# shared object in lib.a archive as well\n      esac\n    fi\n    ;;\n  esac\n  AC_MSG_RESULT([$enable_shared])\n\n  AC_MSG_CHECKING([whether to build static libraries])\n  # Make sure either enable_shared or enable_static is yes.\n  test yes = \"$enable_shared\" || enable_static=yes\n  AC_MSG_RESULT([$enable_static])\n\n  _LT_CONFIG($1)\nfi\nAC_LANG_POP\nCC=$lt_save_CC\n])# _LT_LANG_C_CONFIG\n\n\n# _LT_LANG_CXX_CONFIG([TAG])\n# --------------------------\n# Ensure that the configuration variables for a C++ compiler are suitably\n# defined.  These variables are subsequently used by _LT_CONFIG to write\n# the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_CXX_CONFIG],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_PATH_MANIFEST_TOOL])dnl\nif test -n \"$CXX\" && ( test no != \"$CXX\" &&\n    ( (test g++ = \"$CXX\" && `g++ -v >/dev/null 2>&1` ) ||\n    (test g++ != \"$CXX\"))); then\n  AC_PROG_CXXCPP\nelse\n  _lt_caught_CXX_error=yes\nfi\n\nAC_LANG_PUSH(C++)\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n_LT_TAGVAR(allow_undefined_flag, $1)=\n_LT_TAGVAR(always_export_symbols, $1)=no\n_LT_TAGVAR(archive_expsym_cmds, $1)=\n_LT_TAGVAR(compiler_needs_object, $1)=no\n_LT_TAGVAR(export_dynamic_flag_spec, $1)=\n_LT_TAGVAR(hardcode_direct, $1)=no\n_LT_TAGVAR(hardcode_direct_absolute, $1)=no\n_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n_LT_TAGVAR(hardcode_libdir_separator, $1)=\n_LT_TAGVAR(hardcode_minus_L, $1)=no\n_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported\n_LT_TAGVAR(hardcode_automatic, $1)=no\n_LT_TAGVAR(inherit_rpath, $1)=no\n_LT_TAGVAR(module_cmds, $1)=\n_LT_TAGVAR(module_expsym_cmds, $1)=\n_LT_TAGVAR(link_all_deplibs, $1)=unknown\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n_LT_TAGVAR(no_undefined_flag, $1)=\n_LT_TAGVAR(whole_archive_flag_spec, $1)=\n_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n\n# Source file extension for C++ test sources.\nac_ext=cpp\n\n# Object file extension for compiled C++ test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# No sense in running all these tests if we already determined that\n# the CXX compiler isn't working.  Some variables (like enable_shared)\n# are currently assumed to apply to all compilers on this platform,\n# and will be corrupted by setting them based on a non-working compiler.\nif test yes != \"$_lt_caught_CXX_error\"; then\n  # Code to be used in simple compile tests\n  lt_simple_compile_test_code=\"int some_variable = 0;\"\n\n  # Code to be used in simple link tests\n  lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'\n\n  # ltmain only uses $CC for tagged configurations so make sure $CC is set.\n  _LT_TAG_COMPILER\n\n  # save warnings/boilerplate of simple test code\n  _LT_COMPILER_BOILERPLATE\n  _LT_LINKER_BOILERPLATE\n\n  # Allow CC to be a program name with arguments.\n  lt_save_CC=$CC\n  lt_save_CFLAGS=$CFLAGS\n  lt_save_LD=$LD\n  lt_save_GCC=$GCC\n  GCC=$GXX\n  lt_save_with_gnu_ld=$with_gnu_ld\n  lt_save_path_LD=$lt_cv_path_LD\n  if test -n \"${lt_cv_prog_gnu_ldcxx+set}\"; then\n    lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx\n  else\n    $as_unset lt_cv_prog_gnu_ld\n  fi\n  if test -n \"${lt_cv_path_LDCXX+set}\"; then\n    lt_cv_path_LD=$lt_cv_path_LDCXX\n  else\n    $as_unset lt_cv_path_LD\n  fi\n  test -z \"${LDCXX+set}\" || LD=$LDCXX\n  CC=${CXX-\"c++\"}\n  CFLAGS=$CXXFLAGS\n  compiler=$CC\n  _LT_TAGVAR(compiler, $1)=$CC\n  _LT_CC_BASENAME([$compiler])\n\n  if test -n \"$compiler\"; then\n    # We don't want -fno-exception when compiling C++ code, so set the\n    # no_builtin_flag separately\n    if test yes = \"$GXX\"; then\n      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'\n    else\n      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=\n    fi\n\n    if test yes = \"$GXX\"; then\n      # Set up default GNU C++ configuration\n\n      LT_PATH_LD\n\n      # Check if GNU C++ uses GNU ld as the underlying linker, since the\n      # archiving commands below assume that GNU ld is being used.\n      if test yes = \"$with_gnu_ld\"; then\n        _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'\n        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n\n        # If archive_cmds runs LD, not CC, wlarc should be empty\n        # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to\n        #     investigate it a little bit more. (MM)\n        wlarc='$wl'\n\n        # ancient GNU ld didn't support --whole-archive et. al.\n        if eval \"`$CC -print-prog-name=ld` --help 2>&1\" |\n\t  $GREP 'no-whole-archive' > /dev/null; then\n          _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'\n        else\n          _LT_TAGVAR(whole_archive_flag_spec, $1)=\n        fi\n      else\n        with_gnu_ld=no\n        wlarc=\n\n        # A generic and very simple default shared library creation\n        # command for GNU C++ for the case where it uses the native\n        # linker, instead of GNU ld.  If possible, this setting should\n        # overridden to take advantage of the native linker features on\n        # the platform it is being used on.\n        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'\n      fi\n\n      # Commands to make compiler produce verbose output that lists\n      # what \"hidden\" libraries, object files and flags are used when\n      # linking a shared library.\n      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\n    else\n      GXX=no\n      with_gnu_ld=no\n      wlarc=\n    fi\n\n    # PORTME: fill in a description of your system's C++ link characteristics\n    AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])\n    _LT_TAGVAR(ld_shlibs, $1)=yes\n    case $host_os in\n      aix3*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n      aix[[4-9]]*)\n        if test ia64 = \"$host_cpu\"; then\n          # On IA64, the linker does run time linking by default, so we don't\n          # have to do anything special.\n          aix_use_runtimelinking=no\n          exp_sym_flag='-Bexport'\n          no_entry_flag=\n        else\n          aix_use_runtimelinking=no\n\n          # Test if we are trying to use run time linking or normal\n          # AIX style linking. If -brtl is somewhere in LDFLAGS, we\n          # have runtime linking enabled, and use it for executables.\n          # For shared libraries, we enable/disable runtime linking\n          # depending on the kind of the shared library created -\n          # when \"with_aix_soname,aix_use_runtimelinking\" is:\n          # \"aix,no\"   lib.a(lib.so.V) shared, rtl:no,  for executables\n          # \"aix,yes\"  lib.so          shared, rtl:yes, for executables\n          #            lib.a           static archive\n          # \"both,no\"  lib.so.V(shr.o) shared, rtl:yes\n          #            lib.a(lib.so.V) shared, rtl:no,  for executables\n          # \"both,yes\" lib.so.V(shr.o) shared, rtl:yes, for executables\n          #            lib.a(lib.so.V) shared, rtl:no\n          # \"svr4,*\"   lib.so.V(shr.o) shared, rtl:yes, for executables\n          #            lib.a           static archive\n          case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)\n\t    for ld_flag in $LDFLAGS; do\n\t      case $ld_flag in\n\t      *-brtl*)\n\t        aix_use_runtimelinking=yes\n\t        break\n\t        ;;\n\t      esac\n\t    done\n\t    if test svr4,no = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t      # With aix-soname=svr4, we create the lib.so.V shared archives only,\n\t      # so we don't have lib.a shared libs to link our executables.\n\t      # We have to force runtime linking in this case.\n\t      aix_use_runtimelinking=yes\n\t      LDFLAGS=\"$LDFLAGS -Wl,-brtl\"\n\t    fi\n\t    ;;\n          esac\n\n          exp_sym_flag='-bexport'\n          no_entry_flag='-bnoentry'\n        fi\n\n        # When large executables or shared objects are built, AIX ld can\n        # have problems creating the table of contents.  If linking a library\n        # or program results in \"error TOC overflow\" add -mminimal-toc to\n        # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not\n        # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.\n\n        _LT_TAGVAR(archive_cmds, $1)=''\n        _LT_TAGVAR(hardcode_direct, $1)=yes\n        _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n        _LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n        _LT_TAGVAR(link_all_deplibs, $1)=yes\n        _LT_TAGVAR(file_list_spec, $1)='$wl-f,'\n        case $with_aix_soname,$aix_use_runtimelinking in\n        aix,*) ;;\t# no import file\n        svr4,* | *,yes) # use import file\n          # The Import File defines what to hardcode.\n          _LT_TAGVAR(hardcode_direct, $1)=no\n          _LT_TAGVAR(hardcode_direct_absolute, $1)=no\n          ;;\n        esac\n\n        if test yes = \"$GXX\"; then\n          case $host_os in aix4.[[012]]|aix4.[[012]].*)\n          # We only want to do this on AIX 4.2 and lower, the check\n          # below for broken collect2 doesn't work under 4.3+\n\t  collect2name=`$CC -print-prog-name=collect2`\n\t  if test -f \"$collect2name\" &&\n\t     strings \"$collect2name\" | $GREP resolve_lib_name >/dev/null\n\t  then\n\t    # We have reworked collect2\n\t    :\n\t  else\n\t    # We have old collect2\n\t    _LT_TAGVAR(hardcode_direct, $1)=unsupported\n\t    # It fails to find uninstalled libraries when the uninstalled\n\t    # path is not listed in the libpath.  Setting hardcode_minus_L\n\t    # to unsupported forces relinking\n\t    _LT_TAGVAR(hardcode_minus_L, $1)=yes\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=\n\t  fi\n          esac\n          shared_flag='-shared'\n\t  if test yes = \"$aix_use_runtimelinking\"; then\n\t    shared_flag=$shared_flag' $wl-G'\n\t  fi\n\t  # Need to ensure runtime linking is disabled for the traditional\n\t  # shared library, or the linker may eventually find shared libraries\n\t  # /with/ Import File - we do not want to mix them.\n\t  shared_flag_aix='-shared'\n\t  shared_flag_svr4='-shared $wl-G'\n        else\n          # not using gcc\n          if test ia64 = \"$host_cpu\"; then\n\t  # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release\n\t  # chokes on -Wl,-G. The following line is correct:\n\t  shared_flag='-G'\n          else\n\t    if test yes = \"$aix_use_runtimelinking\"; then\n\t      shared_flag='$wl-G'\n\t    else\n\t      shared_flag='$wl-bM:SRE'\n\t    fi\n\t    shared_flag_aix='$wl-bM:SRE'\n\t    shared_flag_svr4='$wl-G'\n          fi\n        fi\n\n        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall'\n        # It seems that -bexpall does not export symbols beginning with\n        # underscore (_), so it is better to generate a list of symbols to\n\t# export.\n        _LT_TAGVAR(always_export_symbols, $1)=yes\n\tif test aix,yes = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n          # Warning - without using the other runtime loading flags (-brtl),\n          # -berok will link without error, but may produce a broken library.\n          # The \"-G\" linker flag allows undefined symbols.\n          _LT_TAGVAR(no_undefined_flag, $1)='-bernotok'\n          # Determine the default libpath from the value encoded in an empty\n          # executable.\n          _LT_SYS_MODULE_PATH_AIX([$1])\n          _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'\"$aix_libpath\"\n\n          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n \"$allow_undefined_flag\"; then func_echo_all \"$wl$allow_undefined_flag\"; else :; fi` $wl'$exp_sym_flag:\\$export_symbols' '$shared_flag\n        else\n          if test ia64 = \"$host_cpu\"; then\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib'\n\t    _LT_TAGVAR(allow_undefined_flag, $1)=\"-z nodefs\"\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)=\"\\$CC $shared_flag\"' -o $output_objdir/$soname $libobjs $deplibs '\"\\$wl$no_entry_flag\"' $compiler_flags $wl$allow_undefined_flag '\"\\$wl$exp_sym_flag:\\$export_symbols\"\n          else\n\t    # Determine the default libpath from the value encoded in an\n\t    # empty executable.\n\t    _LT_SYS_MODULE_PATH_AIX([$1])\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'\"$aix_libpath\"\n\t    # Warning - without using the other run time loading flags,\n\t    # -berok will link without error, but may produce a broken library.\n\t    _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok'\n\t    _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok'\n\t    if test yes = \"$with_gnu_ld\"; then\n\t      # We only use this code for GNU lds that support --whole-archive.\n\t      _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'\n\t    else\n\t      # Exported symbols can be pulled into shared objects from archives\n\t      _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'\n\t    fi\n\t    _LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'\n\t    # -brtl affects multiple linker settings, -berok does not and is overridden later\n\t    compiler_flags_filtered='`func_echo_all \"$compiler_flags \" | $SED -e \"s%-brtl\\\\([[, ]]\\\\)%-berok\\\\1%g\"`'\n\t    if test svr4 != \"$with_aix_soname\"; then\n\t      # This is similar to how AIX traditionally builds its shared\n\t      # libraries. Need -bnortl late, we may have -brtl in LDFLAGS.\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'\n\t    fi\n\t    if test aix != \"$with_aix_soname\"; then\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all \"#! $soname($shared_archive_member_spec.o)\"; if test shr_64 = \"$shared_archive_member_spec\"; then func_echo_all \"# 64\"; else func_echo_all \"# 32\"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'\n\t    else\n\t      # used by -dlpreopen to get the symbols\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'\n\t    fi\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)=\"$_LT_TAGVAR(archive_expsym_cmds, $1)\"'~$RM -r $output_objdir/$realname.d'\n          fi\n        fi\n        ;;\n\n      beos*)\n\tif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t  # Joseph Beckenbach <jrb3@best.com> says some releases of gcc\n\t  # support --undefined.  This deserves some investigation.  FIXME\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\telse\n\t  _LT_TAGVAR(ld_shlibs, $1)=no\n\tfi\n\t;;\n\n      chorus*)\n        case $cc_basename in\n          *)\n\t  # FIXME: insert proper C++ library support\n\t  _LT_TAGVAR(ld_shlibs, $1)=no\n\t  ;;\n        esac\n        ;;\n\n      cygwin* | mingw* | pw32* | cegcc*)\n\tcase $GXX,$cc_basename in\n\t,cl* | no,cl*)\n\t  # Native MSVC\n\t  # hardcode_libdir_flag_spec is actually meaningless, as there is\n\t  # no search path for DLLs.\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t  _LT_TAGVAR(always_export_symbols, $1)=yes\n\t  _LT_TAGVAR(file_list_spec, $1)='@'\n\t  # Tell ltmain to make .lib files, not .a files.\n\t  libext=lib\n\t  # Tell ltmain to make .dll files, not .so files.\n\t  shrext_cmds=.dll\n\t  # FIXME: Setting linknames here is a bad hack.\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~linknames='\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then\n              cp \"$export_symbols\" \"$output_objdir/$soname.def\";\n              echo \"$tool_output_objdir$soname.def\" > \"$output_objdir/$soname.exp\";\n            else\n              $SED -e '\\''s/^/-link -EXPORT:/'\\'' < $export_symbols > $output_objdir/$soname.exp;\n            fi~\n            $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs \"@$tool_output_objdir$soname.exp\" -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~\n            linknames='\n\t  # The linker will not automatically build a static lib if we build a DLL.\n\t  # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'\n\t  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n\t  # Don't use ranlib\n\t  _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'\n\t  _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile=\"@OUTPUT@\"~\n            lt_tool_outputfile=\"@TOOL_OUTPUT@\"~\n            case $lt_outputfile in\n              *.exe|*.EXE) ;;\n              *)\n                lt_outputfile=$lt_outputfile.exe\n                lt_tool_outputfile=$lt_tool_outputfile.exe\n                ;;\n            esac~\n            func_to_tool_file \"$lt_outputfile\"~\n            if test : != \"$MANIFEST_TOOL\" && test -f \"$lt_outputfile.manifest\"; then\n              $MANIFEST_TOOL -manifest \"$lt_tool_outputfile.manifest\" -outputresource:\"$lt_tool_outputfile\" || exit 1;\n              $RM \"$lt_outputfile.manifest\";\n            fi'\n\t  ;;\n\t*)\n\t  # g++\n\t  # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,\n\t  # as there is no search path for DLLs.\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n\t  _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols'\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t  _LT_TAGVAR(always_export_symbols, $1)=no\n\t  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n\n\t  if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n\t    # If the export-symbols file already is a .def file, use it as\n\t    # is; otherwise, prepend EXPORTS...\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then\n              cp $export_symbols $output_objdir/$soname.def;\n            else\n              echo EXPORTS > $output_objdir/$soname.def;\n              cat $export_symbols >> $output_objdir/$soname.def;\n            fi~\n            $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n\t  else\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t  fi\n\t  ;;\n\tesac\n\t;;\n      darwin* | rhapsody*)\n        _LT_DARWIN_LINKER_FEATURES($1)\n\t;;\n\n      os2*)\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n\t_LT_TAGVAR(hardcode_minus_L, $1)=yes\n\t_LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\tshrext_cmds=.dll\n\t_LT_TAGVAR(archive_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t  $ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t  $ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t  $ECHO EXPORTS >> $output_objdir/$libname.def~\n\t  emxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t  $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\t  emximp -o $lib $output_objdir/$libname.def'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t  $ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t  $ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t  $ECHO EXPORTS >> $output_objdir/$libname.def~\n\t  prefix_cmds=\"$SED\"~\n\t  if test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t    prefix_cmds=\"$prefix_cmds -e 1d\";\n\t  fi~\n\t  prefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\t  cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t  $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\t  emximp -o $lib $output_objdir/$libname.def'\n\t_LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n\t_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n\t;;\n\n      dgux*)\n        case $cc_basename in\n          ec++*)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          ghcx*)\n\t    # Green Hills C++ Compiler\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n        esac\n        ;;\n\n      freebsd2.*)\n        # C++ shared libraries reported to be fairly broken before\n\t# switch to ELF\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n\n      freebsd-elf*)\n        _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n        ;;\n\n      freebsd* | dragonfly*)\n        # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF\n        # conventions\n        _LT_TAGVAR(ld_shlibs, $1)=yes\n        ;;\n\n      haiku*)\n        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n        _LT_TAGVAR(link_all_deplibs, $1)=yes\n        ;;\n\n      hpux9*)\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'\n        _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n        _LT_TAGVAR(hardcode_direct, $1)=yes\n        _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,\n\t\t\t\t             # but as the default\n\t\t\t\t             # location of the library.\n\n        case $cc_basename in\n          CC*)\n            # FIXME: insert proper C++ library support\n            _LT_TAGVAR(ld_shlibs, $1)=no\n            ;;\n          aCC*)\n            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n            # Commands to make compiler produce verbose output that lists\n            # what \"hidden\" libraries, object files and flags are used when\n            # linking a shared library.\n            #\n            # There doesn't appear to be a way to prevent this compiler from\n            # explicitly linking system object files so we need to strip them\n            # from the output so that they don't get included in the library\n            # dependencies.\n            output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP \"\\-L\"`; list= ; for z in $templist; do case $z in conftest.$objext) list=\"$list $z\";; *.$objext);; *) list=\"$list $z\";;esac; done; func_echo_all \"$list\"'\n            ;;\n          *)\n            if test yes = \"$GXX\"; then\n              _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n            else\n              # FIXME: insert proper C++ library support\n              _LT_TAGVAR(ld_shlibs, $1)=no\n            fi\n            ;;\n        esac\n        ;;\n\n      hpux10*|hpux11*)\n        if test no = \"$with_gnu_ld\"; then\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'\n\t  _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n          case $host_cpu in\n            hppa*64*|ia64*)\n              ;;\n            *)\n\t      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n              ;;\n          esac\n        fi\n        case $host_cpu in\n          hppa*64*|ia64*)\n            _LT_TAGVAR(hardcode_direct, $1)=no\n            _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n            ;;\n          *)\n            _LT_TAGVAR(hardcode_direct, $1)=yes\n            _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n            _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,\n\t\t\t\t\t         # but as the default\n\t\t\t\t\t         # location of the library.\n            ;;\n        esac\n\n        case $cc_basename in\n          CC*)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          aCC*)\n\t    case $host_cpu in\n\t      hppa*64*)\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t        ;;\n\t      ia64*)\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t        ;;\n\t      *)\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t        ;;\n\t    esac\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP \"\\-L\"`; list= ; for z in $templist; do case $z in conftest.$objext) list=\"$list $z\";; *.$objext);; *) list=\"$list $z\";;esac; done; func_echo_all \"$list\"'\n\t    ;;\n          *)\n\t    if test yes = \"$GXX\"; then\n\t      if test no = \"$with_gnu_ld\"; then\n\t        case $host_cpu in\n\t          hppa*64*)\n\t            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t          ia64*)\n\t            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t          *)\n\t            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t        esac\n\t      fi\n\t    else\n\t      # FIXME: insert proper C++ library support\n\t      _LT_TAGVAR(ld_shlibs, $1)=no\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n      interix[[3-9]]*)\n\t_LT_TAGVAR(hardcode_direct, $1)=no\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n\t# Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.\n\t# Instead, shared libraries are loaded at an image base (0x10000000 by\n\t# default) and relocated if they conflict, which is a slow very memory\n\t# consuming and fragmenting process.  To avoid this, we pick a random,\n\t# 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link\n\t# time.  Moving up from 0x10000000 also allows more sbrk(2) space.\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='sed \"s|^|_|\" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n\t;;\n      irix5* | irix6*)\n        case $cc_basename in\n          CC*)\n\t    # SGI C++\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -ar\", where \"CC\" is the IRIX C++ compiler.  This is\n\t    # necessary to make sure instantiated templates are included\n\t    # in the archive.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'\n\t    ;;\n          *)\n\t    if test yes = \"$GXX\"; then\n\t      if test no = \"$with_gnu_ld\"; then\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t      else\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` -o $lib'\n\t      fi\n\t    fi\n\t    _LT_TAGVAR(link_all_deplibs, $1)=yes\n\t    ;;\n        esac\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n        _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n        _LT_TAGVAR(inherit_rpath, $1)=yes\n        ;;\n\n      linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n        case $cc_basename in\n          KCC*)\n\t    # Kuck and Associates, Inc. (KAI) C++ Compiler\n\n\t    # KCC will only create a shared library if the output file\n\t    # ends with \".so\" (or \".sl\" for HP-UX), so rename the library\n\t    # to its proper name (with version) after linking.\n\t    _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\\''s/\\([[^()0-9A-Za-z{}]]\\)/\\\\\\\\\\1/g'\\''`; templib=`echo $lib | $SED -e \"s/\\$tempext\\..*/.so/\"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \\$templib; mv \\$templib $lib'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\\''s/\\([[^()0-9A-Za-z{}]]\\)/\\\\\\\\\\1/g'\\''`; templib=`echo $lib | $SED -e \"s/\\$tempext\\..*/.so/\"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \\$templib $wl-retain-symbols-file,$export_symbols; mv \\$templib $lib'\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP \"ld\"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list=\"$list $z\";; *.$objext);; *) list=\"$list $z\";;esac; done; func_echo_all \"$list\"'\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -Bstatic\", where \"CC\" is the KAI C++ compiler.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'\n\t    ;;\n\t  icpc* | ecpc* )\n\t    # Intel C++\n\t    with_gnu_ld=yes\n\t    # version 8.0 and above of icpc choke on multiply defined symbols\n\t    # if we add $predep_objects and $postdep_objects, however 7.1 and\n\t    # earlier do not add the objects themselves.\n\t    case `$CC -V 2>&1` in\n\t      *\"Version 7.\"*)\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'\n\t\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t\t;;\n\t      *)  # Version 8.0 or newer\n\t        tmp_idyn=\n\t        case $host_cpu in\n\t\t  ia64*) tmp_idyn=' -i_dynamic';;\n\t\tesac\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared'\"$tmp_idyn\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'\"$tmp_idyn\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t\t;;\n\t    esac\n\t    _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'\n\t    ;;\n          pgCC* | pgcpp*)\n            # Portland Group C++ compiler\n\t    case `$CC -V` in\n\t    *pgCC\\ [[1-5]].* | *pgcpp\\ [[1-5]].*)\n\t      _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~\n               rm -rf $tpldir~\n               $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~\n               compile_command=\"$compile_command `find $tpldir -name \\*.o | sort | $NL2SP`\"'\n\t      _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~\n                rm -rf $tpldir~\n                $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~\n                $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \\*.o | sort | $NL2SP`~\n                $RANLIB $oldlib'\n\t      _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~\n                rm -rf $tpldir~\n                $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~\n                $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \\*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~\n                rm -rf $tpldir~\n                $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~\n                $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \\*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t      ;;\n\t    *) # Version 6 and above use weak symbols\n\t      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t      ;;\n\t    esac\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n            ;;\n\t  cxx*)\n\t    # Compaq C++\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname  -o $lib $wl-retain-symbols-file $wl$export_symbols'\n\n\t    runpath_var=LD_RUN_PATH\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP \"ld\"`; templist=`func_echo_all \"$templist\" | $SED \"s/\\(^.*ld.*\\)\\( .*ld .*$\\)/\\1/\"`; list= ; for z in $templist; do case $z in conftest.$objext) list=\"$list $z\";; *.$objext);; *) list=\"$list $z\";;esac; done; func_echo_all \"X$list\" | $Xsed'\n\t    ;;\n\t  xl* | mpixl* | bgxl*)\n\t    # IBM XL 8.0 on PPC, with GNU ld\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t    if test yes = \"$supports_anon_versioning\"; then\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $output_objdir/$libname.ver~\n                cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n                echo \"local: *; };\" >> $output_objdir/$libname.ver~\n                $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'\n\t    fi\n\t    ;;\n\t  *)\n\t    case `$CC -V 2>&1 | sed 5q` in\n\t    *Sun\\ C*)\n\t      # Sun C++ 5.9\n\t      _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'\n\t      _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols'\n\t      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n\t      _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\\\"\\\"; do test -z \\\"$conv\\\" || new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t      _LT_TAGVAR(compiler_needs_object, $1)=yes\n\n\t      # Not sure whether something based on\n\t      # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1\n\t      # would be better.\n\t      output_verbose_link_cmd='func_echo_all'\n\n\t      # Archives containing C++ object files must be created using\n\t      # \"CC -xar\", where \"CC\" is the Sun C++ compiler.  This is\n\t      # necessary to make sure instantiated templates are included\n\t      # in the archive.\n\t      _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'\n\t      ;;\n\t    esac\n\t    ;;\n\tesac\n\t;;\n\n      lynxos*)\n        # FIXME: insert proper C++ library support\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\t;;\n\n      m88k*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n\t;;\n\n      mvs*)\n        case $cc_basename in\n          cxx*)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n\t  *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n\tesac\n\t;;\n\n      netbsd*)\n        if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'\n\t  wlarc=\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes\n\t  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\tfi\n\t# Workaround some broken pre-1.5 toolchains\n\toutput_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e \"s:-lgcc -lc -lgcc::\"'\n\t;;\n\n      *nto* | *qnx*)\n        _LT_TAGVAR(ld_shlibs, $1)=yes\n\t;;\n\n      openbsd* | bitrig*)\n\tif test -f /usr/libexec/ld.so; then\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes\n\t  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t  _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t  if test -z \"`echo __ELF__ | $CC -E - | grep __ELF__`\"; then\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'\n\t  fi\n\t  output_verbose_link_cmd=func_echo_all\n\telse\n\t  _LT_TAGVAR(ld_shlibs, $1)=no\n\tfi\n\t;;\n\n      osf3* | osf4* | osf5*)\n        case $cc_basename in\n          KCC*)\n\t    # Kuck and Associates, Inc. (KAI) C++ Compiler\n\n\t    # KCC will only create a shared library if the output file\n\t    # ends with \".so\" (or \".sl\" for HP-UX), so rename the library\n\t    # to its proper name (with version) after linking.\n\t    _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\\''s/\\([[^()0-9A-Za-z{}]]\\)/\\\\\\\\\\1/g'\\''`; templib=`echo \"$lib\" | $SED -e \"s/\\$tempext\\..*/.so/\"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \\$templib; mv \\$templib $lib'\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t    # Archives containing C++ object files must be created using\n\t    # the KAI C++ compiler.\n\t    case $host in\n\t      osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;;\n\t      *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;;\n\t    esac\n\t    ;;\n          RCC*)\n\t    # Rational C++ 2.4.1\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          cxx*)\n\t    case $host in\n\t      osf3*)\n\t        _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\\*'\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\t        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n\t\t;;\n\t      *)\n\t        _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \\*'\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\t        _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf \"%s %s\\\\n\" -exported_symbol \"\\$i\" >> $lib.exp; done~\n                  echo \"-hidden\">> $lib.exp~\n                  $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp  `test -n \"$verstring\" && $ECHO \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib~\n                  $RM $lib.exp'\n\t        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'\n\t\t;;\n\t    esac\n\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP \"ld\" | $GREP -v \"ld:\"`; templist=`func_echo_all \"$templist\" | $SED \"s/\\(^.*ld.*\\)\\( .*ld.*$\\)/\\1/\"`; list= ; for z in $templist; do case $z in conftest.$objext) list=\"$list $z\";; *.$objext);; *) list=\"$list $z\";;esac; done; func_echo_all \"$list\"'\n\t    ;;\n\t  *)\n\t    if test yes,no = \"$GXX,$with_gnu_ld\"; then\n\t      _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\\*'\n\t      case $host in\n\t        osf3*)\n\t          _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t\t  ;;\n\t        *)\n\t          _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t\t  ;;\n\t      esac\n\n\t      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'\n\t      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t      # Commands to make compiler produce verbose output that lists\n\t      # what \"hidden\" libraries, object files and flags are used when\n\t      # linking a shared library.\n\t      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\n\t    else\n\t      # FIXME: insert proper C++ library support\n\t      _LT_TAGVAR(ld_shlibs, $1)=no\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n      psos*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n\n      sunos4*)\n        case $cc_basename in\n          CC*)\n\t    # Sun C++ 4.x\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          lcc*)\n\t    # Lucid\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n        esac\n        ;;\n\n      solaris*)\n        case $cc_basename in\n          CC* | sunCC*)\n\t    # Sun C++ 4.2, 5.x and Centerline C++\n            _LT_TAGVAR(archive_cmds_need_lc,$1)=yes\n\t    _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n              $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n\t    _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t    case $host_os in\n\t      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;\n\t      *)\n\t\t# The compiler driver will combine and reorder linker options,\n\t\t# but understands '-z linker_flag'.\n\t        # Supported since Solaris 2.6 (maybe 2.5.1?)\n\t\t_LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'\n\t        ;;\n\t    esac\n\t    _LT_TAGVAR(link_all_deplibs, $1)=yes\n\n\t    output_verbose_link_cmd='func_echo_all'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -xar\", where \"CC\" is the Sun C++ compiler.  This is\n\t    # necessary to make sure instantiated templates are included\n\t    # in the archive.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'\n\t    ;;\n          gcx*)\n\t    # Green Hills C++ Compiler\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'\n\n\t    # The C++ compiler must be used to create the archive.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'\n\t    ;;\n          *)\n\t    # GNU C++ compiler with Solaris linker\n\t    if test yes,no = \"$GXX,$with_gnu_ld\"; then\n\t      _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs'\n\t      if $CC --version | $GREP -v '^2\\.7' > /dev/null; then\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'\n\t        _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n                  $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'\n\n\t        # Commands to make compiler produce verbose output that lists\n\t        # what \"hidden\" libraries, object files and flags are used when\n\t        # linking a shared library.\n\t        output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\t      else\n\t        # g++ 2.7 appears to require '-G' NOT '-shared' on this\n\t        # platform.\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'\n\t        _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n                  $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'\n\n\t        # Commands to make compiler produce verbose output that lists\n\t        # what \"hidden\" libraries, object files and flags are used when\n\t        # linking a shared library.\n\t        output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\t      fi\n\n\t      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir'\n\t      case $host_os in\n\t\tsolaris2.[[0-5]] | solaris2.[[0-5]].*) ;;\n\t\t*)\n\t\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'\n\t\t  ;;\n\t      esac\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)\n      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      runpath_var='LD_RUN_PATH'\n\n      case $cc_basename in\n        CC*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n      esac\n      ;;\n\n      sysv5* | sco3.2v5* | sco5v6*)\n\t# Note: We CANNOT use -z defs as we might desire, because we do not\n\t# link with -lc, and that would cause any symbols used from libc to\n\t# always be unresolved, which means just about no library would\n\t# ever link correctly.  If we're not using GNU ld we use -z text\n\t# though, which does catch some bad symbols but isn't as heavy-handed\n\t# as -z defs.\n\t_LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'\n\t_LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs'\n\t_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir'\n\t_LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n\t_LT_TAGVAR(link_all_deplibs, $1)=yes\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport'\n\trunpath_var='LD_RUN_PATH'\n\n\tcase $cc_basename in\n          CC*)\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~\n              '\"$_LT_TAGVAR(old_archive_cmds, $1)\"\n\t    _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~\n              '\"$_LT_TAGVAR(reload_cmds, $1)\"\n\t    ;;\n\t  *)\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    ;;\n\tesac\n      ;;\n\n      tandem*)\n        case $cc_basename in\n          NCC*)\n\t    # NonStop-UX NCC 3.20\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n        esac\n        ;;\n\n      vxworks*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n\n      *)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n    esac\n\n    AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])\n    test no = \"$_LT_TAGVAR(ld_shlibs, $1)\" && can_build_shared=no\n\n    _LT_TAGVAR(GCC, $1)=$GXX\n    _LT_TAGVAR(LD, $1)=$LD\n\n    ## CAVEAT EMPTOR:\n    ## There is no encapsulation within the following macros, do not change\n    ## the running order or otherwise move them around unless you know exactly\n    ## what you are doing...\n    _LT_SYS_HIDDEN_LIBDEPS($1)\n    _LT_COMPILER_PIC($1)\n    _LT_COMPILER_C_O($1)\n    _LT_COMPILER_FILE_LOCKS($1)\n    _LT_LINKER_SHLIBS($1)\n    _LT_SYS_DYNAMIC_LINKER($1)\n    _LT_LINKER_HARDCODE_LIBPATH($1)\n\n    _LT_CONFIG($1)\n  fi # test -n \"$compiler\"\n\n  CC=$lt_save_CC\n  CFLAGS=$lt_save_CFLAGS\n  LDCXX=$LD\n  LD=$lt_save_LD\n  GCC=$lt_save_GCC\n  with_gnu_ld=$lt_save_with_gnu_ld\n  lt_cv_path_LDCXX=$lt_cv_path_LD\n  lt_cv_path_LD=$lt_save_path_LD\n  lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld\n  lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld\nfi # test yes != \"$_lt_caught_CXX_error\"\n\nAC_LANG_POP\n])# _LT_LANG_CXX_CONFIG\n\n\n# _LT_FUNC_STRIPNAME_CNF\n# ----------------------\n# func_stripname_cnf prefix suffix name\n# strip PREFIX and SUFFIX off of NAME.\n# PREFIX and SUFFIX must not contain globbing or regex special\n# characters, hashes, percent signs, but SUFFIX may contain a leading\n# dot (in which case that matches only a dot).\n#\n# This function is identical to the (non-XSI) version of func_stripname,\n# except this one can be used by m4 code that may be executed by configure,\n# rather than the libtool script.\nm4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl\nAC_REQUIRE([_LT_DECL_SED])\nAC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])\nfunc_stripname_cnf ()\n{\n  case @S|@2 in\n  .*) func_stripname_result=`$ECHO \"@S|@3\" | $SED \"s%^@S|@1%%; s%\\\\\\\\@S|@2\\$%%\"`;;\n  *)  func_stripname_result=`$ECHO \"@S|@3\" | $SED \"s%^@S|@1%%; s%@S|@2\\$%%\"`;;\n  esac\n} # func_stripname_cnf\n])# _LT_FUNC_STRIPNAME_CNF\n\n\n# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])\n# ---------------------------------\n# Figure out \"hidden\" library dependencies from verbose\n# compiler output when linking a shared library.\n# Parse the compiler output and extract the necessary\n# objects, libraries and library flags.\nm4_defun([_LT_SYS_HIDDEN_LIBDEPS],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\nAC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl\n# Dependencies to place before and after the object being linked:\n_LT_TAGVAR(predep_objects, $1)=\n_LT_TAGVAR(postdep_objects, $1)=\n_LT_TAGVAR(predeps, $1)=\n_LT_TAGVAR(postdeps, $1)=\n_LT_TAGVAR(compiler_lib_search_path, $1)=\n\ndnl we can't use the lt_simple_compile_test_code here,\ndnl because it contains code intended for an executable,\ndnl not a library.  It's possible we should let each\ndnl tag define a new lt_????_link_test_code variable,\ndnl but it's only used here...\nm4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF\nint a;\nvoid foo (void) { a = 0; }\n_LT_EOF\n], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF\nclass Foo\n{\npublic:\n  Foo (void) { a = 0; }\nprivate:\n  int a;\n};\n_LT_EOF\n], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF\n      subroutine foo\n      implicit none\n      integer*4 a\n      a=0\n      return\n      end\n_LT_EOF\n], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF\n      subroutine foo\n      implicit none\n      integer a\n      a=0\n      return\n      end\n_LT_EOF\n], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF\npublic class foo {\n  private int a;\n  public void bar (void) {\n    a = 0;\n  }\n};\n_LT_EOF\n], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF\npackage foo\nfunc foo() {\n}\n_LT_EOF\n])\n\n_lt_libdeps_save_CFLAGS=$CFLAGS\ncase \"$CC $CFLAGS \" in #(\n*\\ -flto*\\ *) CFLAGS=\"$CFLAGS -fno-lto\" ;;\n*\\ -fwhopr*\\ *) CFLAGS=\"$CFLAGS -fno-whopr\" ;;\n*\\ -fuse-linker-plugin*\\ *) CFLAGS=\"$CFLAGS -fno-use-linker-plugin\" ;;\nesac\n\ndnl Parse the compiler output and extract the necessary\ndnl objects, libraries and library flags.\nif AC_TRY_EVAL(ac_compile); then\n  # Parse the compiler output and extract the necessary\n  # objects, libraries and library flags.\n\n  # Sentinel used to keep track of whether or not we are before\n  # the conftest object file.\n  pre_test_object_deps_done=no\n\n  for p in `eval \"$output_verbose_link_cmd\"`; do\n    case $prev$p in\n\n    -L* | -R* | -l*)\n       # Some compilers place space between \"-{L,R}\" and the path.\n       # Remove the space.\n       if test x-L = \"$p\" ||\n          test x-R = \"$p\"; then\n\t prev=$p\n\t continue\n       fi\n\n       # Expand the sysroot to ease extracting the directories later.\n       if test -z \"$prev\"; then\n         case $p in\n         -L*) func_stripname_cnf '-L' '' \"$p\"; prev=-L; p=$func_stripname_result ;;\n         -R*) func_stripname_cnf '-R' '' \"$p\"; prev=-R; p=$func_stripname_result ;;\n         -l*) func_stripname_cnf '-l' '' \"$p\"; prev=-l; p=$func_stripname_result ;;\n         esac\n       fi\n       case $p in\n       =*) func_stripname_cnf '=' '' \"$p\"; p=$lt_sysroot$func_stripname_result ;;\n       esac\n       if test no = \"$pre_test_object_deps_done\"; then\n\t case $prev in\n\t -L | -R)\n\t   # Internal compiler library paths should come after those\n\t   # provided the user.  The postdeps already come after the\n\t   # user supplied libs so there is no need to process them.\n\t   if test -z \"$_LT_TAGVAR(compiler_lib_search_path, $1)\"; then\n\t     _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p\n\t   else\n\t     _LT_TAGVAR(compiler_lib_search_path, $1)=\"${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p\"\n\t   fi\n\t   ;;\n\t # The \"-l\" case would never come before the object being\n\t # linked, so don't bother handling this case.\n\t esac\n       else\n\t if test -z \"$_LT_TAGVAR(postdeps, $1)\"; then\n\t   _LT_TAGVAR(postdeps, $1)=$prev$p\n\t else\n\t   _LT_TAGVAR(postdeps, $1)=\"${_LT_TAGVAR(postdeps, $1)} $prev$p\"\n\t fi\n       fi\n       prev=\n       ;;\n\n    *.lto.$objext) ;; # Ignore GCC LTO objects\n    *.$objext)\n       # This assumes that the test object file only shows up\n       # once in the compiler output.\n       if test \"$p\" = \"conftest.$objext\"; then\n\t pre_test_object_deps_done=yes\n\t continue\n       fi\n\n       if test no = \"$pre_test_object_deps_done\"; then\n\t if test -z \"$_LT_TAGVAR(predep_objects, $1)\"; then\n\t   _LT_TAGVAR(predep_objects, $1)=$p\n\t else\n\t   _LT_TAGVAR(predep_objects, $1)=\"$_LT_TAGVAR(predep_objects, $1) $p\"\n\t fi\n       else\n\t if test -z \"$_LT_TAGVAR(postdep_objects, $1)\"; then\n\t   _LT_TAGVAR(postdep_objects, $1)=$p\n\t else\n\t   _LT_TAGVAR(postdep_objects, $1)=\"$_LT_TAGVAR(postdep_objects, $1) $p\"\n\t fi\n       fi\n       ;;\n\n    *) ;; # Ignore the rest.\n\n    esac\n  done\n\n  # Clean up.\n  rm -f a.out a.exe\nelse\n  echo \"libtool.m4: error: problem compiling $1 test program\"\nfi\n\n$RM -f confest.$objext\nCFLAGS=$_lt_libdeps_save_CFLAGS\n\n# PORTME: override above test on systems where it is broken\nm4_if([$1], [CXX],\n[case $host_os in\ninterix[[3-9]]*)\n  # Interix 3.5 installs completely hosed .la files for C++, so rather than\n  # hack all around it, let's just trust \"g++\" to DTRT.\n  _LT_TAGVAR(predep_objects,$1)=\n  _LT_TAGVAR(postdep_objects,$1)=\n  _LT_TAGVAR(postdeps,$1)=\n  ;;\nesac\n])\n\ncase \" $_LT_TAGVAR(postdeps, $1) \" in\n*\" -lc \"*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;;\nesac\n _LT_TAGVAR(compiler_lib_search_dirs, $1)=\nif test -n \"${_LT_TAGVAR(compiler_lib_search_path, $1)}\"; then\n _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo \" ${_LT_TAGVAR(compiler_lib_search_path, $1)}\" | $SED -e 's! -L! !g' -e 's!^ !!'`\nfi\n_LT_TAGDECL([], [compiler_lib_search_dirs], [1],\n    [The directories searched by this compiler when creating a shared library])\n_LT_TAGDECL([], [predep_objects], [1],\n    [Dependencies to place before and after the objects being linked to\n    create a shared library])\n_LT_TAGDECL([], [postdep_objects], [1])\n_LT_TAGDECL([], [predeps], [1])\n_LT_TAGDECL([], [postdeps], [1])\n_LT_TAGDECL([], [compiler_lib_search_path], [1],\n    [The library search path used internally by the compiler when linking\n    a shared library])\n])# _LT_SYS_HIDDEN_LIBDEPS\n\n\n# _LT_LANG_F77_CONFIG([TAG])\n# --------------------------\n# Ensure that the configuration variables for a Fortran 77 compiler are\n# suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_F77_CONFIG],\n[AC_LANG_PUSH(Fortran 77)\nif test -z \"$F77\" || test no = \"$F77\"; then\n  _lt_disable_F77=yes\nfi\n\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n_LT_TAGVAR(allow_undefined_flag, $1)=\n_LT_TAGVAR(always_export_symbols, $1)=no\n_LT_TAGVAR(archive_expsym_cmds, $1)=\n_LT_TAGVAR(export_dynamic_flag_spec, $1)=\n_LT_TAGVAR(hardcode_direct, $1)=no\n_LT_TAGVAR(hardcode_direct_absolute, $1)=no\n_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n_LT_TAGVAR(hardcode_libdir_separator, $1)=\n_LT_TAGVAR(hardcode_minus_L, $1)=no\n_LT_TAGVAR(hardcode_automatic, $1)=no\n_LT_TAGVAR(inherit_rpath, $1)=no\n_LT_TAGVAR(module_cmds, $1)=\n_LT_TAGVAR(module_expsym_cmds, $1)=\n_LT_TAGVAR(link_all_deplibs, $1)=unknown\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n_LT_TAGVAR(no_undefined_flag, $1)=\n_LT_TAGVAR(whole_archive_flag_spec, $1)=\n_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n\n# Source file extension for f77 test sources.\nac_ext=f\n\n# Object file extension for compiled f77 test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# No sense in running all these tests if we already determined that\n# the F77 compiler isn't working.  Some variables (like enable_shared)\n# are currently assumed to apply to all compilers on this platform,\n# and will be corrupted by setting them based on a non-working compiler.\nif test yes != \"$_lt_disable_F77\"; then\n  # Code to be used in simple compile tests\n  lt_simple_compile_test_code=\"\\\n      subroutine t\n      return\n      end\n\"\n\n  # Code to be used in simple link tests\n  lt_simple_link_test_code=\"\\\n      program t\n      end\n\"\n\n  # ltmain only uses $CC for tagged configurations so make sure $CC is set.\n  _LT_TAG_COMPILER\n\n  # save warnings/boilerplate of simple test code\n  _LT_COMPILER_BOILERPLATE\n  _LT_LINKER_BOILERPLATE\n\n  # Allow CC to be a program name with arguments.\n  lt_save_CC=$CC\n  lt_save_GCC=$GCC\n  lt_save_CFLAGS=$CFLAGS\n  CC=${F77-\"f77\"}\n  CFLAGS=$FFLAGS\n  compiler=$CC\n  _LT_TAGVAR(compiler, $1)=$CC\n  _LT_CC_BASENAME([$compiler])\n  GCC=$G77\n  if test -n \"$compiler\"; then\n    AC_MSG_CHECKING([if libtool supports shared libraries])\n    AC_MSG_RESULT([$can_build_shared])\n\n    AC_MSG_CHECKING([whether to build shared libraries])\n    test no = \"$can_build_shared\" && enable_shared=no\n\n    # On AIX, shared libraries and static libraries use the same namespace, and\n    # are all built from PIC.\n    case $host_os in\n      aix3*)\n        test yes = \"$enable_shared\" && enable_static=no\n        if test -n \"$RANLIB\"; then\n          archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n          postinstall_cmds='$RANLIB $lib'\n        fi\n        ;;\n      aix[[4-9]]*)\n\tif test ia64 != \"$host_cpu\"; then\n\t  case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in\n\t  yes,aix,yes) ;;\t\t# shared object as lib.so file only\n\t  yes,svr4,*) ;;\t\t# shared object as lib.so archive member only\n\t  yes,*) enable_static=no ;;\t# shared object in lib.a archive as well\n\t  esac\n\tfi\n        ;;\n    esac\n    AC_MSG_RESULT([$enable_shared])\n\n    AC_MSG_CHECKING([whether to build static libraries])\n    # Make sure either enable_shared or enable_static is yes.\n    test yes = \"$enable_shared\" || enable_static=yes\n    AC_MSG_RESULT([$enable_static])\n\n    _LT_TAGVAR(GCC, $1)=$G77\n    _LT_TAGVAR(LD, $1)=$LD\n\n    ## CAVEAT EMPTOR:\n    ## There is no encapsulation within the following macros, do not change\n    ## the running order or otherwise move them around unless you know exactly\n    ## what you are doing...\n    _LT_COMPILER_PIC($1)\n    _LT_COMPILER_C_O($1)\n    _LT_COMPILER_FILE_LOCKS($1)\n    _LT_LINKER_SHLIBS($1)\n    _LT_SYS_DYNAMIC_LINKER($1)\n    _LT_LINKER_HARDCODE_LIBPATH($1)\n\n    _LT_CONFIG($1)\n  fi # test -n \"$compiler\"\n\n  GCC=$lt_save_GCC\n  CC=$lt_save_CC\n  CFLAGS=$lt_save_CFLAGS\nfi # test yes != \"$_lt_disable_F77\"\n\nAC_LANG_POP\n])# _LT_LANG_F77_CONFIG\n\n\n# _LT_LANG_FC_CONFIG([TAG])\n# -------------------------\n# Ensure that the configuration variables for a Fortran compiler are\n# suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_FC_CONFIG],\n[AC_LANG_PUSH(Fortran)\n\nif test -z \"$FC\" || test no = \"$FC\"; then\n  _lt_disable_FC=yes\nfi\n\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n_LT_TAGVAR(allow_undefined_flag, $1)=\n_LT_TAGVAR(always_export_symbols, $1)=no\n_LT_TAGVAR(archive_expsym_cmds, $1)=\n_LT_TAGVAR(export_dynamic_flag_spec, $1)=\n_LT_TAGVAR(hardcode_direct, $1)=no\n_LT_TAGVAR(hardcode_direct_absolute, $1)=no\n_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n_LT_TAGVAR(hardcode_libdir_separator, $1)=\n_LT_TAGVAR(hardcode_minus_L, $1)=no\n_LT_TAGVAR(hardcode_automatic, $1)=no\n_LT_TAGVAR(inherit_rpath, $1)=no\n_LT_TAGVAR(module_cmds, $1)=\n_LT_TAGVAR(module_expsym_cmds, $1)=\n_LT_TAGVAR(link_all_deplibs, $1)=unknown\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n_LT_TAGVAR(no_undefined_flag, $1)=\n_LT_TAGVAR(whole_archive_flag_spec, $1)=\n_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n\n# Source file extension for fc test sources.\nac_ext=${ac_fc_srcext-f}\n\n# Object file extension for compiled fc test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# No sense in running all these tests if we already determined that\n# the FC compiler isn't working.  Some variables (like enable_shared)\n# are currently assumed to apply to all compilers on this platform,\n# and will be corrupted by setting them based on a non-working compiler.\nif test yes != \"$_lt_disable_FC\"; then\n  # Code to be used in simple compile tests\n  lt_simple_compile_test_code=\"\\\n      subroutine t\n      return\n      end\n\"\n\n  # Code to be used in simple link tests\n  lt_simple_link_test_code=\"\\\n      program t\n      end\n\"\n\n  # ltmain only uses $CC for tagged configurations so make sure $CC is set.\n  _LT_TAG_COMPILER\n\n  # save warnings/boilerplate of simple test code\n  _LT_COMPILER_BOILERPLATE\n  _LT_LINKER_BOILERPLATE\n\n  # Allow CC to be a program name with arguments.\n  lt_save_CC=$CC\n  lt_save_GCC=$GCC\n  lt_save_CFLAGS=$CFLAGS\n  CC=${FC-\"f95\"}\n  CFLAGS=$FCFLAGS\n  compiler=$CC\n  GCC=$ac_cv_fc_compiler_gnu\n\n  _LT_TAGVAR(compiler, $1)=$CC\n  _LT_CC_BASENAME([$compiler])\n\n  if test -n \"$compiler\"; then\n    AC_MSG_CHECKING([if libtool supports shared libraries])\n    AC_MSG_RESULT([$can_build_shared])\n\n    AC_MSG_CHECKING([whether to build shared libraries])\n    test no = \"$can_build_shared\" && enable_shared=no\n\n    # On AIX, shared libraries and static libraries use the same namespace, and\n    # are all built from PIC.\n    case $host_os in\n      aix3*)\n        test yes = \"$enable_shared\" && enable_static=no\n        if test -n \"$RANLIB\"; then\n          archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n          postinstall_cmds='$RANLIB $lib'\n        fi\n        ;;\n      aix[[4-9]]*)\n\tif test ia64 != \"$host_cpu\"; then\n\t  case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in\n\t  yes,aix,yes) ;;\t\t# shared object as lib.so file only\n\t  yes,svr4,*) ;;\t\t# shared object as lib.so archive member only\n\t  yes,*) enable_static=no ;;\t# shared object in lib.a archive as well\n\t  esac\n\tfi\n        ;;\n    esac\n    AC_MSG_RESULT([$enable_shared])\n\n    AC_MSG_CHECKING([whether to build static libraries])\n    # Make sure either enable_shared or enable_static is yes.\n    test yes = \"$enable_shared\" || enable_static=yes\n    AC_MSG_RESULT([$enable_static])\n\n    _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu\n    _LT_TAGVAR(LD, $1)=$LD\n\n    ## CAVEAT EMPTOR:\n    ## There is no encapsulation within the following macros, do not change\n    ## the running order or otherwise move them around unless you know exactly\n    ## what you are doing...\n    _LT_SYS_HIDDEN_LIBDEPS($1)\n    _LT_COMPILER_PIC($1)\n    _LT_COMPILER_C_O($1)\n    _LT_COMPILER_FILE_LOCKS($1)\n    _LT_LINKER_SHLIBS($1)\n    _LT_SYS_DYNAMIC_LINKER($1)\n    _LT_LINKER_HARDCODE_LIBPATH($1)\n\n    _LT_CONFIG($1)\n  fi # test -n \"$compiler\"\n\n  GCC=$lt_save_GCC\n  CC=$lt_save_CC\n  CFLAGS=$lt_save_CFLAGS\nfi # test yes != \"$_lt_disable_FC\"\n\nAC_LANG_POP\n])# _LT_LANG_FC_CONFIG\n\n\n# _LT_LANG_GCJ_CONFIG([TAG])\n# --------------------------\n# Ensure that the configuration variables for the GNU Java Compiler compiler\n# are suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_GCJ_CONFIG],\n[AC_REQUIRE([LT_PROG_GCJ])dnl\nAC_LANG_SAVE\n\n# Source file extension for Java test sources.\nac_ext=java\n\n# Object file extension for compiled Java test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"class foo {}\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'\n\n# ltmain only uses $CC for tagged configurations so make sure $CC is set.\n_LT_TAG_COMPILER\n\n# save warnings/boilerplate of simple test code\n_LT_COMPILER_BOILERPLATE\n_LT_LINKER_BOILERPLATE\n\n# Allow CC to be a program name with arguments.\nlt_save_CC=$CC\nlt_save_CFLAGS=$CFLAGS\nlt_save_GCC=$GCC\nGCC=yes\nCC=${GCJ-\"gcj\"}\nCFLAGS=$GCJFLAGS\ncompiler=$CC\n_LT_TAGVAR(compiler, $1)=$CC\n_LT_TAGVAR(LD, $1)=$LD\n_LT_CC_BASENAME([$compiler])\n\n# GCJ did not exist at the time GCC didn't implicitly link libc in.\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n\n## CAVEAT EMPTOR:\n## There is no encapsulation within the following macros, do not change\n## the running order or otherwise move them around unless you know exactly\n## what you are doing...\nif test -n \"$compiler\"; then\n  _LT_COMPILER_NO_RTTI($1)\n  _LT_COMPILER_PIC($1)\n  _LT_COMPILER_C_O($1)\n  _LT_COMPILER_FILE_LOCKS($1)\n  _LT_LINKER_SHLIBS($1)\n  _LT_LINKER_HARDCODE_LIBPATH($1)\n\n  _LT_CONFIG($1)\nfi\n\nAC_LANG_RESTORE\n\nGCC=$lt_save_GCC\nCC=$lt_save_CC\nCFLAGS=$lt_save_CFLAGS\n])# _LT_LANG_GCJ_CONFIG\n\n\n# _LT_LANG_GO_CONFIG([TAG])\n# --------------------------\n# Ensure that the configuration variables for the GNU Go compiler\n# are suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_GO_CONFIG],\n[AC_REQUIRE([LT_PROG_GO])dnl\nAC_LANG_SAVE\n\n# Source file extension for Go test sources.\nac_ext=go\n\n# Object file extension for compiled Go test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"package main; func main() { }\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='package main; func main() { }'\n\n# ltmain only uses $CC for tagged configurations so make sure $CC is set.\n_LT_TAG_COMPILER\n\n# save warnings/boilerplate of simple test code\n_LT_COMPILER_BOILERPLATE\n_LT_LINKER_BOILERPLATE\n\n# Allow CC to be a program name with arguments.\nlt_save_CC=$CC\nlt_save_CFLAGS=$CFLAGS\nlt_save_GCC=$GCC\nGCC=yes\nCC=${GOC-\"gccgo\"}\nCFLAGS=$GOFLAGS\ncompiler=$CC\n_LT_TAGVAR(compiler, $1)=$CC\n_LT_TAGVAR(LD, $1)=$LD\n_LT_CC_BASENAME([$compiler])\n\n# Go did not exist at the time GCC didn't implicitly link libc in.\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n\n## CAVEAT EMPTOR:\n## There is no encapsulation within the following macros, do not change\n## the running order or otherwise move them around unless you know exactly\n## what you are doing...\nif test -n \"$compiler\"; then\n  _LT_COMPILER_NO_RTTI($1)\n  _LT_COMPILER_PIC($1)\n  _LT_COMPILER_C_O($1)\n  _LT_COMPILER_FILE_LOCKS($1)\n  _LT_LINKER_SHLIBS($1)\n  _LT_LINKER_HARDCODE_LIBPATH($1)\n\n  _LT_CONFIG($1)\nfi\n\nAC_LANG_RESTORE\n\nGCC=$lt_save_GCC\nCC=$lt_save_CC\nCFLAGS=$lt_save_CFLAGS\n])# _LT_LANG_GO_CONFIG\n\n\n# _LT_LANG_RC_CONFIG([TAG])\n# -------------------------\n# Ensure that the configuration variables for the Windows resource compiler\n# are suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to 'libtool'.\nm4_defun([_LT_LANG_RC_CONFIG],\n[AC_REQUIRE([LT_PROG_RC])dnl\nAC_LANG_SAVE\n\n# Source file extension for RC test sources.\nac_ext=rc\n\n# Object file extension for compiled RC test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code='sample MENU { MENUITEM \"&Soup\", 100, CHECKED }'\n\n# Code to be used in simple link tests\nlt_simple_link_test_code=$lt_simple_compile_test_code\n\n# ltmain only uses $CC for tagged configurations so make sure $CC is set.\n_LT_TAG_COMPILER\n\n# save warnings/boilerplate of simple test code\n_LT_COMPILER_BOILERPLATE\n_LT_LINKER_BOILERPLATE\n\n# Allow CC to be a program name with arguments.\nlt_save_CC=$CC\nlt_save_CFLAGS=$CFLAGS\nlt_save_GCC=$GCC\nGCC=\nCC=${RC-\"windres\"}\nCFLAGS=\ncompiler=$CC\n_LT_TAGVAR(compiler, $1)=$CC\n_LT_CC_BASENAME([$compiler])\n_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes\n\nif test -n \"$compiler\"; then\n  :\n  _LT_CONFIG($1)\nfi\n\nGCC=$lt_save_GCC\nAC_LANG_RESTORE\nCC=$lt_save_CC\nCFLAGS=$lt_save_CFLAGS\n])# _LT_LANG_RC_CONFIG\n\n\n# LT_PROG_GCJ\n# -----------\nAC_DEFUN([LT_PROG_GCJ],\n[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],\n  [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],\n    [AC_CHECK_TOOL(GCJ, gcj,)\n      test set = \"${GCJFLAGS+set}\" || GCJFLAGS=\"-g -O2\"\n      AC_SUBST(GCJFLAGS)])])[]dnl\n])\n\n# Old name:\nAU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([LT_AC_PROG_GCJ], [])\n\n\n# LT_PROG_GO\n# ----------\nAC_DEFUN([LT_PROG_GO],\n[AC_CHECK_TOOL(GOC, gccgo,)\n])\n\n\n# LT_PROG_RC\n# ----------\nAC_DEFUN([LT_PROG_RC],\n[AC_CHECK_TOOL(RC, windres,)\n])\n\n# Old name:\nAU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([LT_AC_PROG_RC], [])\n\n\n# _LT_DECL_EGREP\n# --------------\n# If we don't have a new enough Autoconf to choose the best grep\n# available, choose the one first in the user's PATH.\nm4_defun([_LT_DECL_EGREP],\n[AC_REQUIRE([AC_PROG_EGREP])dnl\nAC_REQUIRE([AC_PROG_FGREP])dnl\ntest -z \"$GREP\" && GREP=grep\n_LT_DECL([], [GREP], [1], [A grep program that handles long lines])\n_LT_DECL([], [EGREP], [1], [An ERE matcher])\n_LT_DECL([], [FGREP], [1], [A literal string matcher])\ndnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too\nAC_SUBST([GREP])\n])\n\n\n# _LT_DECL_OBJDUMP\n# --------------\n# If we don't have a new enough Autoconf to choose the best objdump\n# available, choose the one first in the user's PATH.\nm4_defun([_LT_DECL_OBJDUMP],\n[AC_CHECK_TOOL(OBJDUMP, objdump, false)\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper])\nAC_SUBST([OBJDUMP])\n])\n\n# _LT_DECL_DLLTOOL\n# ----------------\n# Ensure DLLTOOL variable is set.\nm4_defun([_LT_DECL_DLLTOOL],\n[AC_CHECK_TOOL(DLLTOOL, dlltool, false)\ntest -z \"$DLLTOOL\" && DLLTOOL=dlltool\n_LT_DECL([], [DLLTOOL], [1], [DLL creation program])\nAC_SUBST([DLLTOOL])\n])\n\n# _LT_DECL_SED\n# ------------\n# Check for a fully-functional sed program, that truncates\n# as few characters as possible.  Prefer GNU sed if found.\nm4_defun([_LT_DECL_SED],\n[AC_PROG_SED\ntest -z \"$SED\" && SED=sed\nXsed=\"$SED -e 1s/^X//\"\n_LT_DECL([], [SED], [1], [A sed program that does not truncate output])\n_LT_DECL([], [Xsed], [\"\\$SED -e 1s/^X//\"],\n    [Sed that helps us avoid accidentally triggering echo(1) options like -n])\n])# _LT_DECL_SED\n\nm4_ifndef([AC_PROG_SED], [\n############################################################\n# NOTE: This macro has been submitted for inclusion into   #\n#  GNU Autoconf as AC_PROG_SED.  When it is available in   #\n#  a released version of Autoconf we should remove this    #\n#  macro and use it instead.                               #\n############################################################\n\nm4_defun([AC_PROG_SED],\n[AC_MSG_CHECKING([for a sed that does not truncate output])\nAC_CACHE_VAL(lt_cv_path_SED,\n[# Loop through the user's path and test for sed and gsed.\n# Then use that list of sed's as ones to test for truncation.\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for lt_ac_prog in sed gsed; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      if $as_executable_p \"$as_dir/$lt_ac_prog$ac_exec_ext\"; then\n        lt_ac_sed_list=\"$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext\"\n      fi\n    done\n  done\ndone\nIFS=$as_save_IFS\nlt_ac_max=0\nlt_ac_count=0\n# Add /usr/xpg4/bin/sed as it is typically found on Solaris\n# along with /bin/sed that truncates output.\nfor lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do\n  test ! -f \"$lt_ac_sed\" && continue\n  cat /dev/null > conftest.in\n  lt_ac_count=0\n  echo $ECHO_N \"0123456789$ECHO_C\" >conftest.in\n  # Check for GNU sed and select it if it is found.\n  if \"$lt_ac_sed\" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then\n    lt_cv_path_SED=$lt_ac_sed\n    break\n  fi\n  while true; do\n    cat conftest.in conftest.in >conftest.tmp\n    mv conftest.tmp conftest.in\n    cp conftest.in conftest.nl\n    echo >>conftest.nl\n    $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break\n    cmp -s conftest.out conftest.nl || break\n    # 10000 chars as input seems more than enough\n    test 10 -lt \"$lt_ac_count\" && break\n    lt_ac_count=`expr $lt_ac_count + 1`\n    if test \"$lt_ac_count\" -gt \"$lt_ac_max\"; then\n      lt_ac_max=$lt_ac_count\n      lt_cv_path_SED=$lt_ac_sed\n    fi\n  done\ndone\n])\nSED=$lt_cv_path_SED\nAC_SUBST([SED])\nAC_MSG_RESULT([$SED])\n])#AC_PROG_SED\n])#m4_ifndef\n\n# Old name:\nAU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([LT_AC_PROG_SED], [])\n\n\n# _LT_CHECK_SHELL_FEATURES\n# ------------------------\n# Find out whether the shell is Bourne or XSI compatible,\n# or has some other useful features.\nm4_defun([_LT_CHECK_SHELL_FEATURES],\n[if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then\n  lt_unset=unset\nelse\n  lt_unset=false\nfi\n_LT_DECL([], [lt_unset], [0], [whether the shell understands \"unset\"])dnl\n\n# test EBCDIC or ASCII\ncase `echo X|tr X '\\101'` in\n A) # ASCII based system\n    # \\n is not interpreted correctly by Solaris 8 /usr/ucb/tr\n  lt_SP2NL='tr \\040 \\012'\n  lt_NL2SP='tr \\015\\012 \\040\\040'\n  ;;\n *) # EBCDIC based system\n  lt_SP2NL='tr \\100 \\n'\n  lt_NL2SP='tr \\r\\n \\100\\100'\n  ;;\nesac\n_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl\n_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl\n])# _LT_CHECK_SHELL_FEATURES\n\n\n# _LT_PATH_CONVERSION_FUNCTIONS\n# -----------------------------\n# Determine what file name conversion functions should be used by\n# func_to_host_file (and, implicitly, by func_to_host_path).  These are needed\n# for certain cross-compile configurations and native mingw.\nm4_defun([_LT_PATH_CONVERSION_FUNCTIONS],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nAC_REQUIRE([AC_CANONICAL_BUILD])dnl\nAC_MSG_CHECKING([how to convert $build file names to $host format])\nAC_CACHE_VAL(lt_cv_to_host_file_cmd,\n[case $host in\n  *-*-mingw* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32\n        ;;\n      *-*-cygwin* )\n        lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32\n        ;;\n      * ) # otherwise, assume *nix\n        lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32\n        ;;\n    esac\n    ;;\n  *-*-cygwin* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin\n        ;;\n      *-*-cygwin* )\n        lt_cv_to_host_file_cmd=func_convert_file_noop\n        ;;\n      * ) # otherwise, assume *nix\n        lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin\n        ;;\n    esac\n    ;;\n  * ) # unhandled hosts (and \"normal\" native builds)\n    lt_cv_to_host_file_cmd=func_convert_file_noop\n    ;;\nesac\n])\nto_host_file_cmd=$lt_cv_to_host_file_cmd\nAC_MSG_RESULT([$lt_cv_to_host_file_cmd])\n_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd],\n         [0], [convert $build file names to $host format])dnl\n\nAC_MSG_CHECKING([how to convert $build file names to toolchain format])\nAC_CACHE_VAL(lt_cv_to_tool_file_cmd,\n[#assume ordinary cross tools, or native build.\nlt_cv_to_tool_file_cmd=func_convert_file_noop\ncase $host in\n  *-*-mingw* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32\n        ;;\n    esac\n    ;;\nesac\n])\nto_tool_file_cmd=$lt_cv_to_tool_file_cmd\nAC_MSG_RESULT([$lt_cv_to_tool_file_cmd])\n_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd],\n         [0], [convert $build files to toolchain format])dnl\n])# _LT_PATH_CONVERSION_FUNCTIONS\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/m4/ln.m4",
    "content": "dnl Copyright (C) 1993-2002 Free Software Foundation, Inc.\ndnl This file is free software, distributed under the terms of the GNU\ndnl General Public License.  As a special exception to the GNU General\ndnl Public License, this file may be distributed as part of a program\ndnl that contains a configuration script generated by Autoconf, under\ndnl the same distribution terms as the rest of that program.\n\ndnl From Bruno Haible, Marcus Daniels.\n\nAC_PREREQ(2.13)\n\nAC_DEFUN([CL_PROG_LN],\n[AC_REQUIRE([CL_PROG_CP])dnl\nAC_CACHE_CHECK(how to make hard links, cl_cv_prog_LN, [\nrm -f conftestdata conftestfile\necho data > conftestfile\nif ln conftestfile conftestdata 2>/dev/null; then\n  cl_cv_prog_LN=ln\nelse\n  cl_cv_prog_LN=\"$cl_cv_prog_cp\"\nfi\nrm -f conftestdata conftestfile\n])\nLN=\"$cl_cv_prog_LN\"\nAC_SUBST(LN)dnl\n])\n\nAC_DEFUN([CL_PROG_LN_S],\n[AC_REQUIRE([CL_PROG_LN])dnl\ndnl Make a symlink if possible; otherwise try a hard link. On filesystems\ndnl which support neither symlink nor hard link, use a plain copy.\nAC_MSG_CHECKING(whether ln -s works)\nAC_CACHE_VAL(cl_cv_prog_LN_S, [\nrm -f conftestdata\nif ln -s X conftestdata 2>/dev/null; then\n  cl_cv_prog_LN_S=\"ln -s\"\nelse\n  cl_cv_prog_LN_S=\"$cl_cv_prog_LN\"\nfi\nrm -f conftestdata\n])dnl\nif test \"$cl_cv_prog_LN_S\" = \"ln -s\"; then\n  AC_MSG_RESULT(yes)\nelse\n  AC_MSG_RESULT(no)\nfi\nLN_S=\"$cl_cv_prog_LN_S\"\nAC_SUBST(LN_S)dnl\n])\n\nAC_DEFUN([CL_PROG_HLN],\n[AC_REQUIRE([CL_PROG_LN_S])dnl\ndnl SVR4 \"ln\" makes hard links to symbolic links, instead of resolving the\ndnl symbolic link. To avoid this, use the \"hln\" program.\nAC_CACHE_CHECK(how to make hard links to symlinks, cl_cv_prog_hln, [\ncl_cv_prog_hln=\"ln\"\nif test \"$cl_cv_prog_LN_S\" = \"ln -s\"; then\necho \"blabla\" > conftest.x\nln -s conftest.x conftest.y\nln conftest.y conftest.z 2>&AC_FD_CC\nrm -f conftest.x\nif cat conftest.z > /dev/null 2>&1 ; then\n  # ln is usable.\n  cl_cv_prog_hln=\"ln\"\nelse\n  # conftest.z is a symbolic link to the non-existent conftest.x\n  cl_cv_prog_hln=\"hln\"\nfi\nelse\n# If there are no symbolic links, the problem cannot occur.\ncl_cv_prog_hln=\"ln\"\nfi\nrm -f conftest*\n])\nHLN=\"$cl_cv_prog_hln\"\nAC_SUBST(HLN)dnl\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/m4/ltoptions.m4",
    "content": "# Helper functions for option handling.                    -*- Autoconf -*-\n#\n#   Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software\n#   Foundation, Inc.\n#   Written by Gary V. Vaughan, 2004\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# serial 8 ltoptions.m4\n\n# This is to help aclocal find these macros, as it can't see m4_define.\nAC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])\n\n\n# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)\n# ------------------------------------------\nm4_define([_LT_MANGLE_OPTION],\n[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])\n\n\n# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)\n# ---------------------------------------\n# Set option OPTION-NAME for macro MACRO-NAME, and if there is a\n# matching handler defined, dispatch to it.  Other OPTION-NAMEs are\n# saved as a flag.\nm4_define([_LT_SET_OPTION],\n[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl\nm4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),\n        _LT_MANGLE_DEFUN([$1], [$2]),\n    [m4_warning([Unknown $1 option '$2'])])[]dnl\n])\n\n\n# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])\n# ------------------------------------------------------------\n# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.\nm4_define([_LT_IF_OPTION],\n[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])\n\n\n# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)\n# -------------------------------------------------------\n# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME\n# are set.\nm4_define([_LT_UNLESS_OPTIONS],\n[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),\n\t    [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),\n\t\t      [m4_define([$0_found])])])[]dnl\nm4_ifdef([$0_found], [m4_undefine([$0_found])], [$3\n])[]dnl\n])\n\n\n# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)\n# ----------------------------------------\n# OPTION-LIST is a space-separated list of Libtool options associated\n# with MACRO-NAME.  If any OPTION has a matching handler declared with\n# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about\n# the unknown option and exit.\nm4_defun([_LT_SET_OPTIONS],\n[# Set options\nm4_foreach([_LT_Option], m4_split(m4_normalize([$2])),\n    [_LT_SET_OPTION([$1], _LT_Option)])\n\nm4_if([$1],[LT_INIT],[\n  dnl\n  dnl Simply set some default values (i.e off) if boolean options were not\n  dnl specified:\n  _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no\n  ])\n  _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no\n  ])\n  dnl\n  dnl If no reference was made to various pairs of opposing options, then\n  dnl we run the default mode handler for the pair.  For example, if neither\n  dnl 'shared' nor 'disable-shared' was passed, we enable building of shared\n  dnl archives by default:\n  _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])\n  _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])\n  _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])\n  _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],\n\t\t   [_LT_ENABLE_FAST_INSTALL])\n  _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4],\n\t\t   [_LT_WITH_AIX_SONAME([aix])])\n  ])\n])# _LT_SET_OPTIONS\n\n\n## --------------------------------- ##\n## Macros to handle LT_INIT options. ##\n## --------------------------------- ##\n\n# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)\n# -----------------------------------------\nm4_define([_LT_MANGLE_DEFUN],\n[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])\n\n\n# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)\n# -----------------------------------------------\nm4_define([LT_OPTION_DEFINE],\n[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl\n])# LT_OPTION_DEFINE\n\n\n# dlopen\n# ------\nLT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes\n])\n\nAU_DEFUN([AC_LIBTOOL_DLOPEN],\n[_LT_SET_OPTION([LT_INIT], [dlopen])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you\nput the 'dlopen' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])\n\n\n# win32-dll\n# ---------\n# Declare package support for building win32 dll's.\nLT_OPTION_DEFINE([LT_INIT], [win32-dll],\n[enable_win32_dll=yes\n\ncase $host in\n*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)\n  AC_CHECK_TOOL(AS, as, false)\n  AC_CHECK_TOOL(DLLTOOL, dlltool, false)\n  AC_CHECK_TOOL(OBJDUMP, objdump, false)\n  ;;\nesac\n\ntest -z \"$AS\" && AS=as\n_LT_DECL([], [AS],      [1], [Assembler program])dnl\n\ntest -z \"$DLLTOOL\" && DLLTOOL=dlltool\n_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl\n\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl\n])# win32-dll\n\nAU_DEFUN([AC_LIBTOOL_WIN32_DLL],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\n_LT_SET_OPTION([LT_INIT], [win32-dll])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you\nput the 'win32-dll' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])\n\n\n# _LT_ENABLE_SHARED([DEFAULT])\n# ----------------------------\n# implement the --enable-shared flag, and supports the 'shared' and\n# 'disable-shared' LT_INIT options.\n# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.\nm4_define([_LT_ENABLE_SHARED],\n[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl\nAC_ARG_ENABLE([shared],\n    [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],\n\t[build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],\n    [p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_shared=yes ;;\n    no) enable_shared=no ;;\n    *)\n      enable_shared=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_shared=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac],\n    [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)\n\n    _LT_DECL([build_libtool_libs], [enable_shared], [0],\n\t[Whether or not to build shared libraries])\n])# _LT_ENABLE_SHARED\n\nLT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])\nLT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])\n\n# Old names:\nAC_DEFUN([AC_ENABLE_SHARED],\n[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])\n])\n\nAC_DEFUN([AC_DISABLE_SHARED],\n[_LT_SET_OPTION([LT_INIT], [disable-shared])\n])\n\nAU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])\nAU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_ENABLE_SHARED], [])\ndnl AC_DEFUN([AM_DISABLE_SHARED], [])\n\n\n\n# _LT_ENABLE_STATIC([DEFAULT])\n# ----------------------------\n# implement the --enable-static flag, and support the 'static' and\n# 'disable-static' LT_INIT options.\n# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.\nm4_define([_LT_ENABLE_STATIC],\n[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl\nAC_ARG_ENABLE([static],\n    [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],\n\t[build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],\n    [p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_static=yes ;;\n    no) enable_static=no ;;\n    *)\n     enable_static=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_static=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac],\n    [enable_static=]_LT_ENABLE_STATIC_DEFAULT)\n\n    _LT_DECL([build_old_libs], [enable_static], [0],\n\t[Whether or not to build static libraries])\n])# _LT_ENABLE_STATIC\n\nLT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])\nLT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])\n\n# Old names:\nAC_DEFUN([AC_ENABLE_STATIC],\n[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])\n])\n\nAC_DEFUN([AC_DISABLE_STATIC],\n[_LT_SET_OPTION([LT_INIT], [disable-static])\n])\n\nAU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])\nAU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_ENABLE_STATIC], [])\ndnl AC_DEFUN([AM_DISABLE_STATIC], [])\n\n\n\n# _LT_ENABLE_FAST_INSTALL([DEFAULT])\n# ----------------------------------\n# implement the --enable-fast-install flag, and support the 'fast-install'\n# and 'disable-fast-install' LT_INIT options.\n# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.\nm4_define([_LT_ENABLE_FAST_INSTALL],\n[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl\nAC_ARG_ENABLE([fast-install],\n    [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],\n    [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],\n    [p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_fast_install=yes ;;\n    no) enable_fast_install=no ;;\n    *)\n      enable_fast_install=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_fast_install=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac],\n    [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)\n\n_LT_DECL([fast_install], [enable_fast_install], [0],\n\t [Whether or not to optimize for fast installation])dnl\n])# _LT_ENABLE_FAST_INSTALL\n\nLT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])\nLT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])\n\n# Old names:\nAU_DEFUN([AC_ENABLE_FAST_INSTALL],\n[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you put\nthe 'fast-install' option into LT_INIT's first parameter.])\n])\n\nAU_DEFUN([AC_DISABLE_FAST_INSTALL],\n[_LT_SET_OPTION([LT_INIT], [disable-fast-install])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you put\nthe 'disable-fast-install' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])\ndnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])\n\n\n# _LT_WITH_AIX_SONAME([DEFAULT])\n# ----------------------------------\n# implement the --with-aix-soname flag, and support the `aix-soname=aix'\n# and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT\n# is either `aix', `both' or `svr4'.  If omitted, it defaults to `aix'.\nm4_define([_LT_WITH_AIX_SONAME],\n[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl\nshared_archive_member_spec=\ncase $host,$enable_shared in\npower*-*-aix[[5-9]]*,yes)\n  AC_MSG_CHECKING([which variant of shared library versioning to provide])\n  AC_ARG_WITH([aix-soname],\n    [AS_HELP_STRING([--with-aix-soname=aix|svr4|both],\n      [shared library versioning (aka \"SONAME\") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])],\n    [case $withval in\n    aix|svr4|both)\n      ;;\n    *)\n      AC_MSG_ERROR([Unknown argument to --with-aix-soname])\n      ;;\n    esac\n    lt_cv_with_aix_soname=$with_aix_soname],\n    [AC_CACHE_VAL([lt_cv_with_aix_soname],\n      [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT)\n    with_aix_soname=$lt_cv_with_aix_soname])\n  AC_MSG_RESULT([$with_aix_soname])\n  if test aix != \"$with_aix_soname\"; then\n    # For the AIX way of multilib, we name the shared archive member\n    # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o',\n    # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File.\n    # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag,\n    # the AIX toolchain works better with OBJECT_MODE set (default 32).\n    if test 64 = \"${OBJECT_MODE-32}\"; then\n      shared_archive_member_spec=shr_64\n    else\n      shared_archive_member_spec=shr\n    fi\n  fi\n  ;;\n*)\n  with_aix_soname=aix\n  ;;\nesac\n\n_LT_DECL([], [shared_archive_member_spec], [0],\n    [Shared archive member basename, for filename based shared library versioning on AIX])dnl\n])# _LT_WITH_AIX_SONAME\n\nLT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])])\nLT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])])\nLT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])])\n\n\n# _LT_WITH_PIC([MODE])\n# --------------------\n# implement the --with-pic flag, and support the 'pic-only' and 'no-pic'\n# LT_INIT options.\n# MODE is either 'yes' or 'no'.  If omitted, it defaults to 'both'.\nm4_define([_LT_WITH_PIC],\n[AC_ARG_WITH([pic],\n    [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],\n\t[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],\n    [lt_p=${PACKAGE-default}\n    case $withval in\n    yes|no) pic_mode=$withval ;;\n    *)\n      pic_mode=default\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for lt_pkg in $withval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$lt_pkg\" = \"X$lt_p\"; then\n\t  pic_mode=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac],\n    [pic_mode=m4_default([$1], [default])])\n\n_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl\n])# _LT_WITH_PIC\n\nLT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])\nLT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])\n\n# Old name:\nAU_DEFUN([AC_LIBTOOL_PICMODE],\n[_LT_SET_OPTION([LT_INIT], [pic-only])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you\nput the 'pic-only' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])\n\n## ----------------- ##\n## LTDL_INIT Options ##\n## ----------------- ##\n\nm4_define([_LTDL_MODE], [])\nLT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],\n\t\t [m4_define([_LTDL_MODE], [nonrecursive])])\nLT_OPTION_DEFINE([LTDL_INIT], [recursive],\n\t\t [m4_define([_LTDL_MODE], [recursive])])\nLT_OPTION_DEFINE([LTDL_INIT], [subproject],\n\t\t [m4_define([_LTDL_MODE], [subproject])])\n\nm4_define([_LTDL_TYPE], [])\nLT_OPTION_DEFINE([LTDL_INIT], [installable],\n\t\t [m4_define([_LTDL_TYPE], [installable])])\nLT_OPTION_DEFINE([LTDL_INIT], [convenience],\n\t\t [m4_define([_LTDL_TYPE], [convenience])])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/m4/ltsugar.m4",
    "content": "# ltsugar.m4 -- libtool m4 base layer.                         -*-Autoconf-*-\n#\n# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.\n# Written by Gary V. Vaughan, 2004\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# serial 6 ltsugar.m4\n\n# This is to help aclocal find these macros, as it can't see m4_define.\nAC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])\n\n\n# lt_join(SEP, ARG1, [ARG2...])\n# -----------------------------\n# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their\n# associated separator.\n# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier\n# versions in m4sugar had bugs.\nm4_define([lt_join],\n[m4_if([$#], [1], [],\n       [$#], [2], [[$2]],\n       [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])\nm4_define([_lt_join],\n[m4_if([$#$2], [2], [],\n       [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])\n\n\n# lt_car(LIST)\n# lt_cdr(LIST)\n# ------------\n# Manipulate m4 lists.\n# These macros are necessary as long as will still need to support\n# Autoconf-2.59 which quotes differently.\nm4_define([lt_car], [[$1]])\nm4_define([lt_cdr],\n[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],\n       [$#], 1, [],\n       [m4_dquote(m4_shift($@))])])\nm4_define([lt_unquote], $1)\n\n\n# lt_append(MACRO-NAME, STRING, [SEPARATOR])\n# ------------------------------------------\n# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.\n# Note that neither SEPARATOR nor STRING are expanded; they are appended\n# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).\n# No SEPARATOR is output if MACRO-NAME was previously undefined (different\n# than defined and empty).\n#\n# This macro is needed until we can rely on Autoconf 2.62, since earlier\n# versions of m4sugar mistakenly expanded SEPARATOR but not STRING.\nm4_define([lt_append],\n[m4_define([$1],\n\t   m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])\n\n\n\n# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])\n# ----------------------------------------------------------\n# Produce a SEP delimited list of all paired combinations of elements of\n# PREFIX-LIST with SUFFIX1 through SUFFIXn.  Each element of the list\n# has the form PREFIXmINFIXSUFFIXn.\n# Needed until we can rely on m4_combine added in Autoconf 2.62.\nm4_define([lt_combine],\n[m4_if(m4_eval([$# > 3]), [1],\n       [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl\n[[m4_foreach([_Lt_prefix], [$2],\n\t     [m4_foreach([_Lt_suffix],\n\t\t]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,\n\t[_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])\n\n\n# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])\n# -----------------------------------------------------------------------\n# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited\n# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.\nm4_define([lt_if_append_uniq],\n[m4_ifdef([$1],\n\t  [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],\n\t\t [lt_append([$1], [$2], [$3])$4],\n\t\t [$5])],\n\t  [lt_append([$1], [$2], [$3])$4])])\n\n\n# lt_dict_add(DICT, KEY, VALUE)\n# -----------------------------\nm4_define([lt_dict_add],\n[m4_define([$1($2)], [$3])])\n\n\n# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)\n# --------------------------------------------\nm4_define([lt_dict_add_subkey],\n[m4_define([$1($2:$3)], [$4])])\n\n\n# lt_dict_fetch(DICT, KEY, [SUBKEY])\n# ----------------------------------\nm4_define([lt_dict_fetch],\n[m4_ifval([$3],\n\tm4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),\n    m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])\n\n\n# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])\n# -----------------------------------------------------------------\nm4_define([lt_if_dict_fetch],\n[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],\n\t[$5],\n    [$6])])\n\n\n# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])\n# --------------------------------------------------------------\nm4_define([lt_dict_filter],\n[m4_if([$5], [], [],\n  [lt_join(m4_quote(m4_default([$4], [[, ]])),\n           lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),\n\t\t      [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/m4/ltversion.m4",
    "content": "# ltversion.m4 -- version numbers\t\t\t-*- Autoconf -*-\n#\n#   Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc.\n#   Written by Scott James Remnant, 2004\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# @configure_input@\n\n# serial 4179 ltversion.m4\n# This file is part of GNU Libtool\n\nm4_define([LT_PACKAGE_VERSION], [2.4.6])\nm4_define([LT_PACKAGE_REVISION], [2.4.6])\n\nAC_DEFUN([LTVERSION_VERSION],\n[macro_version='2.4.6'\nmacro_revision='2.4.6'\n_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])\n_LT_DECL(, macro_revision, 0)\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/m4/lt~obsolete.m4",
    "content": "# lt~obsolete.m4 -- aclocal satisfying obsolete definitions.    -*-Autoconf-*-\n#\n#   Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.\n#   Written by Scott James Remnant, 2004.\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# serial 5 lt~obsolete.m4\n\n# These exist entirely to fool aclocal when bootstrapping libtool.\n#\n# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)\n# which have later been changed to m4_define as they aren't part of the\n# exported API, or moved to Autoconf or Automake where they belong.\n#\n# The trouble is, aclocal is a bit thick.  It'll see the old AC_DEFUN\n# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us\n# using a macro with the same name in our local m4/libtool.m4 it'll\n# pull the old libtool.m4 in (it doesn't see our shiny new m4_define\n# and doesn't know about Autoconf macros at all.)\n#\n# So we provide this file, which has a silly filename so it's always\n# included after everything else.  This provides aclocal with the\n# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything\n# because those macros already exist, or will be overwritten later.\n# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. \n#\n# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.\n# Yes, that means every name once taken will need to remain here until\n# we give up compatibility with versions before 1.7, at which point\n# we need to keep only those names which we still refer to.\n\n# This is to help aclocal find these macros, as it can't see m4_define.\nAC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])\n\nm4_ifndef([AC_LIBTOOL_LINKER_OPTION],\t[AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])\nm4_ifndef([AC_PROG_EGREP],\t\t[AC_DEFUN([AC_PROG_EGREP])])\nm4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH],\t[AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])\nm4_ifndef([_LT_AC_SHELL_INIT],\t\t[AC_DEFUN([_LT_AC_SHELL_INIT])])\nm4_ifndef([_LT_AC_SYS_LIBPATH_AIX],\t[AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])\nm4_ifndef([_LT_PROG_LTMAIN],\t\t[AC_DEFUN([_LT_PROG_LTMAIN])])\nm4_ifndef([_LT_AC_TAGVAR],\t\t[AC_DEFUN([_LT_AC_TAGVAR])])\nm4_ifndef([AC_LTDL_ENABLE_INSTALL],\t[AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])\nm4_ifndef([AC_LTDL_PREOPEN],\t\t[AC_DEFUN([AC_LTDL_PREOPEN])])\nm4_ifndef([_LT_AC_SYS_COMPILER],\t[AC_DEFUN([_LT_AC_SYS_COMPILER])])\nm4_ifndef([_LT_AC_LOCK],\t\t[AC_DEFUN([_LT_AC_LOCK])])\nm4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE],\t[AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])\nm4_ifndef([_LT_AC_TRY_DLOPEN_SELF],\t[AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])\nm4_ifndef([AC_LIBTOOL_PROG_CC_C_O],\t[AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])\nm4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])\nm4_ifndef([AC_LIBTOOL_OBJDIR],\t\t[AC_DEFUN([AC_LIBTOOL_OBJDIR])])\nm4_ifndef([AC_LTDL_OBJDIR],\t\t[AC_DEFUN([AC_LTDL_OBJDIR])])\nm4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])\nm4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP],\t[AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])\nm4_ifndef([AC_PATH_MAGIC],\t\t[AC_DEFUN([AC_PATH_MAGIC])])\nm4_ifndef([AC_PROG_LD_GNU],\t\t[AC_DEFUN([AC_PROG_LD_GNU])])\nm4_ifndef([AC_PROG_LD_RELOAD_FLAG],\t[AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])\nm4_ifndef([AC_DEPLIBS_CHECK_METHOD],\t[AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])\nm4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])\nm4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])\nm4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])\nm4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS],\t[AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])\nm4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP],\t[AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])\nm4_ifndef([LT_AC_PROG_EGREP],\t\t[AC_DEFUN([LT_AC_PROG_EGREP])])\nm4_ifndef([LT_AC_PROG_SED],\t\t[AC_DEFUN([LT_AC_PROG_SED])])\nm4_ifndef([_LT_CC_BASENAME],\t\t[AC_DEFUN([_LT_CC_BASENAME])])\nm4_ifndef([_LT_COMPILER_BOILERPLATE],\t[AC_DEFUN([_LT_COMPILER_BOILERPLATE])])\nm4_ifndef([_LT_LINKER_BOILERPLATE],\t[AC_DEFUN([_LT_LINKER_BOILERPLATE])])\nm4_ifndef([_AC_PROG_LIBTOOL],\t\t[AC_DEFUN([_AC_PROG_LIBTOOL])])\nm4_ifndef([AC_LIBTOOL_SETUP],\t\t[AC_DEFUN([AC_LIBTOOL_SETUP])])\nm4_ifndef([_LT_AC_CHECK_DLFCN],\t\t[AC_DEFUN([_LT_AC_CHECK_DLFCN])])\nm4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER],\t[AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])\nm4_ifndef([_LT_AC_TAGCONFIG],\t\t[AC_DEFUN([_LT_AC_TAGCONFIG])])\nm4_ifndef([AC_DISABLE_FAST_INSTALL],\t[AC_DEFUN([AC_DISABLE_FAST_INSTALL])])\nm4_ifndef([_LT_AC_LANG_CXX],\t\t[AC_DEFUN([_LT_AC_LANG_CXX])])\nm4_ifndef([_LT_AC_LANG_F77],\t\t[AC_DEFUN([_LT_AC_LANG_F77])])\nm4_ifndef([_LT_AC_LANG_GCJ],\t\t[AC_DEFUN([_LT_AC_LANG_GCJ])])\nm4_ifndef([AC_LIBTOOL_LANG_C_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])\nm4_ifndef([_LT_AC_LANG_C_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_C_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])\nm4_ifndef([_LT_AC_LANG_CXX_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])\nm4_ifndef([_LT_AC_LANG_F77_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])\nm4_ifndef([_LT_AC_LANG_GCJ_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])\nm4_ifndef([_LT_AC_LANG_RC_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])\nm4_ifndef([AC_LIBTOOL_CONFIG],\t\t[AC_DEFUN([AC_LIBTOOL_CONFIG])])\nm4_ifndef([_LT_AC_FILE_LTDLL_C],\t[AC_DEFUN([_LT_AC_FILE_LTDLL_C])])\nm4_ifndef([_LT_REQUIRED_DARWIN_CHECKS],\t[AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])\nm4_ifndef([_LT_AC_PROG_CXXCPP],\t\t[AC_DEFUN([_LT_AC_PROG_CXXCPP])])\nm4_ifndef([_LT_PREPARE_SED_QUOTE_VARS],\t[AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])\nm4_ifndef([_LT_PROG_ECHO_BACKSLASH],\t[AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])\nm4_ifndef([_LT_PROG_F77],\t\t[AC_DEFUN([_LT_PROG_F77])])\nm4_ifndef([_LT_PROG_FC],\t\t[AC_DEFUN([_LT_PROG_FC])])\nm4_ifndef([_LT_PROG_CXX],\t\t[AC_DEFUN([_LT_PROG_CXX])])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/m4/proto.m4",
    "content": "dnl Copyright (C) 1993-2002 Free Software Foundation, Inc.\ndnl This file is free software, distributed under the terms of the GNU\ndnl General Public License.  As a special exception to the GNU General\ndnl Public License, this file may be distributed as part of a program\ndnl that contains a configuration script generated by Autoconf, under\ndnl the same distribution terms as the rest of that program.\n\ndnl From Bruno Haible, Marcus Daniels.\n\nAC_PREREQ(2.13)\n\ndnl CL_PROTO(IDENTIFIER, ACTION-IF-NOT-FOUND, FINAL-PROTOTYPE)\nAC_DEFUN([CL_PROTO],\n[AC_MSG_CHECKING([for $1 declaration])\nAC_CACHE_VAL(cl_cv_proto_[$1], [$2\ncl_cv_proto_$1=\"$3\"])\ncl_cv_proto_$1=`echo \"[$]cl_cv_proto_$1\" | tr -s ' ' | sed -e 's/( /(/'`\nAC_MSG_RESULT([$]{ac_t:-\n         }[$]cl_cv_proto_$1)\n])\n\ndnl CL_PROTO_RET(INCLUDES, DECL, CACHE-ID, TYPE-IF-OK, TYPE-IF-FAILS)\nAC_DEFUN([CL_PROTO_RET],\n[AC_TRY_COMPILE([$1]\nAC_LANG_EXTERN[$2\n], [], $3=\"$4\", $3=\"$5\")\n])\n\ndnl CL_PROTO_TRY(INCLUDES, ANSI-DECL, TRAD-DECL, ACTION-IF-OK, ACTION-IF-FAILS)\nAC_DEFUN([CL_PROTO_TRY],\n[AC_TRY_COMPILE([$1]\nAC_LANG_EXTERN\n[#if defined(__STDC__) || defined(__cplusplus)\n$2\n#else\n$3\n#endif\n], [], [$4], [$5])\n])\n\ndnl CL_PROTO_CONST(INCLUDES, ANSI-DECL, TRAD-DECL, CACHE-ID)\nAC_DEFUN([CL_PROTO_CONST],\n[CL_PROTO_TRY([$1], [$2], [$3], $4=\"\", $4=\"const\")]\n)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/Makefile",
    "content": "# Makefile for libiconv/man\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = .\n\n# Directories used by \"make install\":\nprefix = /usr/local\nlocal_prefix = /usr/local\nexec_prefix = ${prefix}\ndatarootdir = ${prefix}/share\ndatadir = ${datarootdir}\nmandir = ${datarootdir}/man\ndocdir = ${datarootdir}/doc/${PACKAGE_TARNAME}\nhtmldir = ${docdir}\n\n# Programs used by \"make\":\nRM = rm -f\n\n\n# Programs used by \"make install\":\nINSTALL = /usr/bin/install -c\nINSTALL_PROGRAM = ${INSTALL}\nINSTALL_DATA = ${INSTALL} -m 644\nmkinstalldirs = $(SHELL) ../build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\n# Used by docdir.\nPACKAGE = libiconv\n\nall :\n\ninstall : force\n\tif [ ! -d $(DESTDIR)$(mandir)/man1 ] ; then $(mkinstalldirs) $(DESTDIR)$(mandir)/man1 ; fi\n\tbuilddir=\"`pwd`\"; cd $(srcdir) && for f in *.1 ; do (cd \"$$builddir\"; echo $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(mandir)/man1/$$f ; $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(mandir)/man1/$$f) ; done\n\tif [ ! -d $(DESTDIR)$(mandir)/man3 ] ; then $(mkinstalldirs) $(DESTDIR)$(mandir)/man3 ; fi\n\tbuilddir=\"`pwd`\"; cd $(srcdir) && for f in *.3 ; do (cd \"$$builddir\"; echo $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(mandir)/man3/$$f ; $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(mandir)/man3/$$f) ; done\n\tif [ ! -d $(DESTDIR)$(htmldir) ] ; then $(mkinstalldirs) $(DESTDIR)$(htmldir) ; fi\n\tbuilddir=\"`pwd`\"; cd $(srcdir) && for f in *.html ; do (cd \"$$builddir\"; echo $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(htmldir)/$$f ; $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(htmldir)/$$f) ; done\n\ninstall-strip : install\n\ninstalldirs : force\n\tif [ ! -d $(DESTDIR)$(mandir)/man1 ] ; then $(mkinstalldirs) $(DESTDIR)$(mandir)/man1 ; fi\n\tif [ ! -d $(DESTDIR)$(mandir)/man3 ] ; then $(mkinstalldirs) $(DESTDIR)$(mandir)/man3 ; fi\n\tif [ ! -d $(DESTDIR)$(htmldir) ] ; then $(mkinstalldirs) $(DESTDIR)$(htmldir) ; fi\n\nuninstall : force\n\tcd $(srcdir) && for f in *.1 ; do echo $(RM) $(DESTDIR)$(mandir)/man1/$$f ; $(RM) $(DESTDIR)$(mandir)/man1/$$f ; done\n\tcd $(srcdir) && for f in *.3 ; do echo $(RM) $(DESTDIR)$(mandir)/man3/$$f ; $(RM) $(DESTDIR)$(mandir)/man3/$$f ; done\n\tcd $(srcdir) && for f in *.html ; do echo $(RM) $(DESTDIR)$(htmldir)/$$f ; $(RM) $(DESTDIR)$(htmldir)/$$f ; done\n\ncheck :\n\nmostlyclean :\n\nclean :\n\ndistclean : force\n\t$(RM) Makefile\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  Makefile.in \\\n  iconv.1 \\\n  iconv.3 \\\n  iconv_close.3 \\\n  iconv_open.3 \\\n  iconvctl.3 \\\n  iconv_open_into.3\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES = \\\n  iconv.1.html \\\n  iconv.3.html \\\n  iconv_close.3.html \\\n  iconv_open.3.html \\\n  iconvctl.3.html \\\n  iconv_open_into.3.html\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/Makefile.in",
    "content": "# Makefile for libiconv/man\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = @srcdir@\n\n# Directories used by \"make install\":\nprefix = @prefix@\nlocal_prefix = /usr/local\nexec_prefix = @exec_prefix@\ndatarootdir = @datarootdir@\ndatadir = @datadir@\nmandir = @mandir@\ndocdir = @docdir@\nhtmldir = @htmldir@\n\n# Programs used by \"make\":\nRM = rm -f\n@SET_MAKE@\n\n# Programs used by \"make install\":\nINSTALL = @INSTALL@\nINSTALL_PROGRAM = @INSTALL_PROGRAM@\nINSTALL_DATA = @INSTALL_DATA@\nmkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\n# Used by docdir.\nPACKAGE = @PACKAGE@\n\nall :\n\ninstall : force\n\tif [ ! -d $(DESTDIR)$(mandir)/man1 ] ; then $(mkinstalldirs) $(DESTDIR)$(mandir)/man1 ; fi\n\tbuilddir=\"`pwd`\"; cd $(srcdir) && for f in *.1 ; do (cd \"$$builddir\"; echo $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(mandir)/man1/$$f ; $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(mandir)/man1/$$f) ; done\n\tif [ ! -d $(DESTDIR)$(mandir)/man3 ] ; then $(mkinstalldirs) $(DESTDIR)$(mandir)/man3 ; fi\n\tbuilddir=\"`pwd`\"; cd $(srcdir) && for f in *.3 ; do (cd \"$$builddir\"; echo $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(mandir)/man3/$$f ; $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(mandir)/man3/$$f) ; done\n\tif [ ! -d $(DESTDIR)$(htmldir) ] ; then $(mkinstalldirs) $(DESTDIR)$(htmldir) ; fi\n\tbuilddir=\"`pwd`\"; cd $(srcdir) && for f in *.html ; do (cd \"$$builddir\"; echo $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(htmldir)/$$f ; $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(htmldir)/$$f) ; done\n\ninstall-strip : install\n\ninstalldirs : force\n\tif [ ! -d $(DESTDIR)$(mandir)/man1 ] ; then $(mkinstalldirs) $(DESTDIR)$(mandir)/man1 ; fi\n\tif [ ! -d $(DESTDIR)$(mandir)/man3 ] ; then $(mkinstalldirs) $(DESTDIR)$(mandir)/man3 ; fi\n\tif [ ! -d $(DESTDIR)$(htmldir) ] ; then $(mkinstalldirs) $(DESTDIR)$(htmldir) ; fi\n\nuninstall : force\n\tcd $(srcdir) && for f in *.1 ; do echo $(RM) $(DESTDIR)$(mandir)/man1/$$f ; $(RM) $(DESTDIR)$(mandir)/man1/$$f ; done\n\tcd $(srcdir) && for f in *.3 ; do echo $(RM) $(DESTDIR)$(mandir)/man3/$$f ; $(RM) $(DESTDIR)$(mandir)/man3/$$f ; done\n\tcd $(srcdir) && for f in *.html ; do echo $(RM) $(DESTDIR)$(htmldir)/$$f ; $(RM) $(DESTDIR)$(htmldir)/$$f ; done\n\ncheck :\n\nmostlyclean :\n\nclean :\n\ndistclean : force\n\t$(RM) Makefile\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  Makefile.in \\\n  iconv.1 \\\n  iconv.3 \\\n  iconv_close.3 \\\n  iconv_open.3 \\\n  iconvctl.3 \\\n  iconv_open_into.3\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES = \\\n  iconv.1.html \\\n  iconv.3.html \\\n  iconv_close.3.html \\\n  iconv_open.3.html \\\n  iconvctl.3.html \\\n  iconv_open_into.3.html\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconv.1",
    "content": ".\\\" Copyright (c) Free Software Foundation, Inc.\n.\\\"\n.\\\" This is free documentation; you can redistribute it and/or\n.\\\" modify it under the terms of the GNU General Public License as\n.\\\" published by the Free Software Foundation; either version 3 of\n.\\\" the License, or (at your option) any later version.\n.\\\"\n.\\\" References consulted:\n.\\\"   OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html\n.\\\"   POSIX 2001 draft6\n.\\\"\n.TH ICONV 1  \"March 31, 2007\" \"GNU\" \"Linux Programmer's Manual\"\n.SH NAME\niconv \\- character set conversion\n.SH SYNOPSIS\n.nf\niconv [\\fIOPTION\\fP...] [\\fB\\-f\\fP \\fIencoding\\fP] [\\fB\\-t\\fP \\fIencoding\\fP] [\\fIinputfile\\fP ...]\niconv \\fB\\-l\\fP\n.fi\n.SH DESCRIPTION\nThe \\fBiconv\\fP program converts text from one encoding to another encoding.\nMore precisely, it converts \\fBfrom\\fP the encoding given for the \\fB\\-f\\fP\noption \\fBto\\fP the encoding given for the \\fB\\-t\\fP option. Either of these\nencodings defaults to the encoding of the current locale. All the\n\\fIinputfile\\fPs are read and converted in turn; if no \\fIinputfile\\fP is\ngiven, the standard input is used. The converted text is printed to standard\noutput.\n.PP\nThe encodings permitted are system dependent. For the libiconv implementation,\nthey are listed in the iconv_open(3) manual page.\n.PP\nOptions controlling the input and output format:\n.TP\n\\fB\\-f\\fP \\fIencoding\\fP, \\fB\\-\\-from\\-code=\\fP\\fIencoding\\fP\nSpecifies the encoding of the input.\n.TP\n\\fB\\-t\\fP \\fIencoding\\fP, \\fB\\-\\-to\\-code=\\fP\\fIencoding\\fP\nSpecifies the encoding of the output.\n.PP\nOptions controlling conversion problems:\n.TP\n\\fB\\-c\\fP\nWhen this option is given, characters that cannot be converted are silently\ndiscarded, instead of leading to a conversion error.\n.TP\n\\fB\\-\\-unicode\\-subst=\\fP\\fIformatstring\\fP\nWhen this option is given, Unicode characters that cannot be represented in\nthe target encoding are replaced with a placeholder string that is constructed\nfrom the given \\fIformatstring\\fP, applied to the Unicode code point. The\n\\fIformatstring\\fP must be a format string in the same format as for the\n.I printf\ncommand or the\n.I printf()\nfunction, taking either no argument or exactly one unsigned integer argument.\n.TP\n\\fB\\-\\-byte\\-subst=\\fP\\fIformatstring\\fP\nWhen this option is given, bytes in the input that are not valid in the source\nencoding are replaced with a placeholder string that is constructed from the\ngiven \\fIformatstring\\fP, applied to the byte's value. The \\fIformatstring\\fP\nmust be a format string in the same format as for the\n.I printf\ncommand or the\n.I printf()\nfunction, taking either no argument or exactly one unsigned integer argument.\n.TP\n\\fB\\-\\-widechar\\-subst=\\fP\\fIformatstring\\fP\nWhen this option is given, wide characters in the input that are not valid in\nthe source encoding are replaced with a placeholder string that is constructed\nfrom the given \\fIformatstring\\fP, applied to the byte's value. The\n\\fIformatstring\\fP must be a format string in the same format as for the\n.I printf\ncommand or the\n.I printf()\nfunction, taking either no argument or exactly one unsigned integer argument.\n.PP\nOptions controlling error output:\n.TP\n\\fB\\-s\\fP, \\fB\\-\\-silent\\fP\nWhen this option is given, error messages about invalid or unconvertible\ncharacters are omitted, but the actual converted text is unaffected.\n.PP\nThe \\fBiconv \\-l\\fP or \\fBiconv \\-\\-list\\fP command lists the names of the\nsupported encodings, in a system dependent format. For the libiconv\nimplementation, the names are printed in upper case, separated by whitespace,\nand alias names of an encoding are listed on the same line as the encoding\nitself.\n.SH EXAMPLES\n.TP\n\\fBiconv \\-f ISO\\-8859\\-1 \\-t UTF\\-8\\fP\nconverts input from the old West-European encoding ISO\\-8859\\-1 to Unicode.\n.PP\n.nf\n\\fBiconv \\-f KOI8\\-R \\-\\-byte\\-subst=\"<0x%x>\"\\fP\n\\fB                \\-\\-unicode\\-subst=\"<U+%04X>\"\\fP\n.fi\n.RS\nconverts input from the old Russian encoding KOI8\\-R to the locale encoding,\nsubstituting an angle bracket notation with hexadecimal numbers for invalid\nbytes and for valid but unconvertible characters.\n.RE\n.TP\n\\fBiconv \\-\\-list\\fP\nlists the supported encodings.\n.SH \"CONFORMING TO\"\nPOSIX:2001\n.SH \"SEE ALSO\"\n.BR iconv_open (3),\n.BR locale (7)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconv.1.html",
    "content": "<!-- Creator     : groff version 1.22.3 -->\n<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n\"http://www.w3.org/TR/html4/loose.dtd\">\n<html>\n<head>\n<meta name=\"generator\" content=\"groff -Thtml, see www.gnu.org\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=US-ASCII\">\n<meta name=\"Content-Style\" content=\"text/css\">\n<style type=\"text/css\">\n       p       { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       pre     { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       table   { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       h1      { text-align: center }\n</style>\n<title>ICONV</title>\n\n</head>\n<body>\n\n<h1 align=\"center\">ICONV</h1>\n\n<a href=\"#NAME\">NAME</a><br>\n<a href=\"#SYNOPSIS\">SYNOPSIS</a><br>\n<a href=\"#DESCRIPTION\">DESCRIPTION</a><br>\n<a href=\"#EXAMPLES\">EXAMPLES</a><br>\n<a href=\"#CONFORMING TO\">CONFORMING TO</a><br>\n<a href=\"#SEE ALSO\">SEE ALSO</a><br>\n\n<hr>\n\n\n<h2>NAME\n<a name=\"NAME\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">iconv &minus;\ncharacter set conversion</p>\n\n<h2>SYNOPSIS\n<a name=\"SYNOPSIS\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">iconv\n[<i>OPTION</i>...] [<b>&minus;f</b> <i>encoding</i>]\n[<b>&minus;t</b> <i>encoding</i>] [<i>inputfile</i> ...]\n<br>\niconv <b>&minus;l</b></p>\n\n<h2>DESCRIPTION\n<a name=\"DESCRIPTION\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The\n<b>iconv</b> program converts text from one encoding to\nanother encoding. More precisely, it converts <b>from</b>\nthe encoding given for the <b>&minus;f</b> option <b>to</b>\nthe encoding given for the <b>&minus;t</b> option. Either of\nthese encodings defaults to the encoding of the current\nlocale. All the <i>inputfile</i>s are read and converted in\nturn; if no <i>inputfile</i> is given, the standard input is\nused. The converted text is printed to standard output.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">The encodings\npermitted are system dependent. For the libiconv\nimplementation, they are listed in the iconv_open(3) manual\npage.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">Options\ncontrolling the input and output format: <b><br>\n&minus;f</b> <i>encoding</i>,\n<b>&minus;&minus;from&minus;code=</b><i>encoding</i></p>\n\n<p style=\"margin-left:22%;\">Specifies the encoding of the\ninput.</p>\n\n<p style=\"margin-left:11%;\"><b>&minus;t</b>\n<i>encoding</i>,\n<b>&minus;&minus;to&minus;code=</b><i>encoding</i></p>\n\n<p style=\"margin-left:22%;\">Specifies the encoding of the\noutput.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">Options\ncontrolling conversion problems:</p>\n\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\"\n       cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"></td>\n<td width=\"3%\">\n\n\n<p><b>&minus;c</b></p></td>\n<td width=\"8%\"></td>\n<td width=\"78%\">\n\n\n<p>When this option is given, characters that cannot be\nconverted are silently discarded, instead of leading to a\nconversion error.</p></td></tr>\n</table>\n\n\n<p style=\"margin-left:11%;\"><b>&minus;&minus;unicode&minus;subst=</b><i>formatstring</i></p>\n\n<p style=\"margin-left:22%;\">When this option is given,\nUnicode characters that cannot be represented in the target\nencoding are replaced with a placeholder string that is\nconstructed from the given <i>formatstring</i>, applied to\nthe Unicode code point. The <i>formatstring</i> must be a\nformat string in the same format as for the <i>printf</i>\ncommand or the <i>printf()</i> function, taking either no\nargument or exactly one unsigned integer argument.</p>\n\n\n<p style=\"margin-left:11%;\"><b>&minus;&minus;byte&minus;subst=</b><i>formatstring</i></p>\n\n<p style=\"margin-left:22%;\">When this option is given,\nbytes in the input that are not valid in the source encoding\nare replaced with a placeholder string that is constructed\nfrom the given <i>formatstring</i>, applied to the\nbyte&rsquo;s value. The <i>formatstring</i> must be a format\nstring in the same format as for the <i>printf</i> command\nor the <i>printf()</i> function, taking either no argument\nor exactly one unsigned integer argument.</p>\n\n\n<p style=\"margin-left:11%;\"><b>&minus;&minus;widechar&minus;subst=</b><i>formatstring</i></p>\n\n<p style=\"margin-left:22%;\">When this option is given, wide\ncharacters in the input that are not valid in the source\nencoding are replaced with a placeholder string that is\nconstructed from the given <i>formatstring</i>, applied to\nthe byte&rsquo;s value. The <i>formatstring</i> must be a\nformat string in the same format as for the <i>printf</i>\ncommand or the <i>printf()</i> function, taking either no\nargument or exactly one unsigned integer argument.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">Options\ncontrolling error output: <b><br>\n&minus;s</b>, <b>&minus;&minus;silent</b></p>\n\n<p style=\"margin-left:22%;\">When this option is given,\nerror messages about invalid or unconvertible characters are\nomitted, but the actual converted text is unaffected.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">The <b>iconv\n&minus;l</b> or <b>iconv &minus;&minus;list</b> command\nlists the names of the supported encodings, in a system\ndependent format. For the libiconv implementation, the names\nare printed in upper case, separated by whitespace, and\nalias names of an encoding are listed on the same line as\nthe encoding itself.</p>\n\n<h2>EXAMPLES\n<a name=\"EXAMPLES\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>iconv\n&minus;f ISO&minus;8859&minus;1 &minus;t UTF&minus;8</b></p>\n\n<p style=\"margin-left:22%;\">converts input from the old\nWest-European encoding ISO&minus;8859&minus;1 to\nUnicode.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>iconv\n&minus;f KOI8&minus;R\n&minus;&minus;byte&minus;subst=&quot;&lt;0x%x&gt;&quot; <br>\n\n&minus;&minus;unicode&minus;subst=&quot;&lt;U+%04X&gt;&quot;</b></p>\n\n<p style=\"margin-left:22%;\">converts input from the old\nRussian encoding KOI8&minus;R to the locale encoding,\nsubstituting an angle bracket notation with hexadecimal\nnumbers for invalid bytes and for valid but unconvertible\ncharacters.</p>\n\n<p style=\"margin-left:11%;\"><b>iconv\n&minus;&minus;list</b></p>\n\n<p style=\"margin-left:22%;\">lists the supported\nencodings.</p>\n\n<h2>CONFORMING TO\n<a name=\"CONFORMING TO\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">POSIX:2001</p>\n\n<h2>SEE ALSO\n<a name=\"SEE ALSO\"></a>\n</h2>\n\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>iconv_open</b>(3),\n<b>locale</b>(7)</p>\n<hr>\n</body>\n</html>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconv.3",
    "content": ".\\\" Copyright (c) Free Software Foundation, Inc.\n.\\\"\n.\\\" This is free documentation; you can redistribute it and/or\n.\\\" modify it under the terms of the GNU General Public License as\n.\\\" published by the Free Software Foundation; either version 3 of\n.\\\" the License, or (at your option) any later version.\n.\\\"\n.\\\" References consulted:\n.\\\"   GNU glibc-2 source code and manual\n.\\\"   OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html\n.\\\"\n.TH ICONV 3  \"September 7, 2008\" \"GNU\" \"Linux Programmer's Manual\"\n.SH NAME\niconv \\- perform character set conversion\n.SH SYNOPSIS\n.nf\n.B #include <iconv.h>\n.sp\n.BI \"size_t iconv (iconv_t \" cd ,\n.BI \"              const char* * \" inbuf \", size_t * \"inbytesleft ,\n.BI \"              char* * \" outbuf \", size_t * \"outbytesleft );\n.fi\n.SH DESCRIPTION\nThe argument \\fIcd\\fP must be a conversion descriptor created using the\nfunction \\fBiconv_open\\fP.\n.PP\nThe main case is when \\fIinbuf\\fP is not NULL and \\fI*inbuf\\fP is not NULL.\nIn this case, the \\fBiconv\\fP function converts the multibyte sequence\nstarting at \\fI*inbuf\\fP to a multibyte sequence starting at \\fI*outbuf\\fP.\nAt most \\fI*inbytesleft\\fP bytes, starting at \\fI*inbuf\\fP, will be read.\nAt most \\fI*outbytesleft\\fP bytes, starting at \\fI*outbuf\\fP, will be written.\n.PP\nThe \\fBiconv\\fP function converts one multibyte character at a time, and for\neach character conversion it increments \\fI*inbuf\\fP and decrements\n\\fI*inbytesleft\\fP by the number of converted input bytes, it increments\n\\fI*outbuf\\fP and decrements \\fI*outbytesleft\\fP by the number of converted\noutput bytes, and it updates the conversion state contained in \\fIcd\\fP.\nIf the character encoding of the input is stateful, the \\fBiconv\\fP function\ncan also convert a sequence of input bytes to an update of the conversion state\nwithout producing any output bytes; such input is called a \\fIshift sequence\\fP.\nThe conversion can stop for four reasons:\n.PP\n1. An invalid multibyte sequence is encountered in the input. In this case\nit sets \\fBerrno\\fP to \\fBEILSEQ\\fP and returns (size_t)(\\-1). \\fI*inbuf\\fP\nis left pointing to the beginning of the invalid multibyte sequence.\n.PP\n2. The input byte sequence has been entirely converted, i.e. \\fI*inbytesleft\\fP\nhas gone down to 0. In this case \\fBiconv\\fP returns the number of\nnon-reversible conversions performed during this call.\n.PP\n3. An incomplete multibyte sequence is encountered in the input, and the\ninput byte sequence terminates after it. In this case it sets \\fBerrno\\fP to\n\\fBEINVAL\\fP and returns (size_t)(\\-1). \\fI*inbuf\\fP is left pointing to the\nbeginning of the incomplete multibyte sequence.\n.PP\n4. The output buffer has no more room for the next converted character. In\nthis case it sets \\fBerrno\\fP to \\fBE2BIG\\fP and returns (size_t)(\\-1).\n.PP\nA different case is when \\fIinbuf\\fP is NULL or \\fI*inbuf\\fP is NULL, but\n\\fIoutbuf\\fP is not NULL and \\fI*outbuf\\fP is not NULL. In this case, the\n\\fBiconv\\fP function attempts to set \\fIcd\\fP's conversion state to the\ninitial state and store a corresponding shift sequence at \\fI*outbuf\\fP.\nAt most \\fI*outbytesleft\\fP bytes, starting at \\fI*outbuf\\fP, will be written.\nIf the output buffer has no more room for this reset sequence, it sets\n\\fBerrno\\fP to \\fBE2BIG\\fP and returns (size_t)(\\-1). Otherwise it increments\n\\fI*outbuf\\fP and decrements \\fI*outbytesleft\\fP by the number of bytes\nwritten.\n.PP\nA third case is when \\fIinbuf\\fP is NULL or \\fI*inbuf\\fP is NULL, and\n\\fIoutbuf\\fP is NULL or \\fI*outbuf\\fP is NULL. In this case, the \\fBiconv\\fP\nfunction sets \\fIcd\\fP's conversion state to the initial state.\n.SH \"RETURN VALUE\"\nThe \\fBiconv\\fP function returns the number of characters converted in a\nnon-reversible way during this call; reversible conversions are not counted.\nIn case of error, it sets \\fBerrno\\fP and returns (size_t)(\\-1).\n.SH ERRORS\nThe following errors can occur, among others:\n.TP\n.B E2BIG\nThere is not sufficient room at \\fI*outbuf\\fP.\n.TP\n.B EILSEQ\nAn invalid multibyte sequence has been encountered in the input.\n.TP\n.B EINVAL\nAn incomplete multibyte sequence has been encountered in the input.\n.SH \"CONFORMING TO\"\nPOSIX:2001\n.SH \"SEE ALSO\"\n.BR iconv_open (3),\n.BR iconvctl (3)\n.BR iconv_close (3)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconv.3.html",
    "content": "<!-- Creator     : groff version 1.22.3 -->\n<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n\"http://www.w3.org/TR/html4/loose.dtd\">\n<html>\n<head>\n<meta name=\"generator\" content=\"groff -Thtml, see www.gnu.org\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=US-ASCII\">\n<meta name=\"Content-Style\" content=\"text/css\">\n<style type=\"text/css\">\n       p       { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       pre     { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       table   { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       h1      { text-align: center }\n</style>\n<title>ICONV</title>\n\n</head>\n<body>\n\n<h1 align=\"center\">ICONV</h1>\n\n<a href=\"#NAME\">NAME</a><br>\n<a href=\"#SYNOPSIS\">SYNOPSIS</a><br>\n<a href=\"#DESCRIPTION\">DESCRIPTION</a><br>\n<a href=\"#RETURN VALUE\">RETURN VALUE</a><br>\n<a href=\"#ERRORS\">ERRORS</a><br>\n<a href=\"#CONFORMING TO\">CONFORMING TO</a><br>\n<a href=\"#SEE ALSO\">SEE ALSO</a><br>\n\n<hr>\n\n\n<h2>NAME\n<a name=\"NAME\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">iconv &minus;\nperform character set conversion</p>\n\n<h2>SYNOPSIS\n<a name=\"SYNOPSIS\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>#include\n&lt;iconv.h&gt;</b></p>\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>size_t iconv\n(iconv_t</b> <i>cd</i><b>, <br>\nconst char* *</b> <i>inbuf</i><b>, size_t *</b>\n<i>inbytesleft</i><b>, <br>\nchar* *</b> <i>outbuf</i><b>, size_t *</b>\n<i>outbytesleft</i><b>);</b></p>\n\n<h2>DESCRIPTION\n<a name=\"DESCRIPTION\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The argument\n<i>cd</i> must be a conversion descriptor created using the\nfunction <b>iconv_open</b>.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">The main case\nis when <i>inbuf</i> is not NULL and <i>*inbuf</i> is not\nNULL. In this case, the <b>iconv</b> function converts the\nmultibyte sequence starting at <i>*inbuf</i> to a multibyte\nsequence starting at <i>*outbuf</i>. At most\n<i>*inbytesleft</i> bytes, starting at <i>*inbuf</i>, will\nbe read. At most <i>*outbytesleft</i> bytes, starting at\n<i>*outbuf</i>, will be written.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">The\n<b>iconv</b> function converts one multibyte character at a\ntime, and for each character conversion it increments\n<i>*inbuf</i> and decrements <i>*inbytesleft</i> by the\nnumber of converted input bytes, it increments\n<i>*outbuf</i> and decrements <i>*outbytesleft</i> by the\nnumber of converted output bytes, and it updates the\nconversion state contained in <i>cd</i>. If the character\nencoding of the input is stateful, the <b>iconv</b> function\ncan also convert a sequence of input bytes to an update of\nthe conversion state without producing any output bytes;\nsuch input is called a <i>shift sequence</i>. The conversion\ncan stop for four reasons:</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">1. An invalid\nmultibyte sequence is encountered in the input. In this case\nit sets <b>errno</b> to <b>EILSEQ</b> and returns\n(size_t)(&minus;1). <i>*inbuf</i> is left pointing to the\nbeginning of the invalid multibyte sequence.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">2. The input\nbyte sequence has been entirely converted, i.e.\n<i>*inbytesleft</i> has gone down to 0. In this case\n<b>iconv</b> returns the number of non-reversible\nconversions performed during this call.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">3. An\nincomplete multibyte sequence is encountered in the input,\nand the input byte sequence terminates after it. In this\ncase it sets <b>errno</b> to <b>EINVAL</b> and returns\n(size_t)(&minus;1). <i>*inbuf</i> is left pointing to the\nbeginning of the incomplete multibyte sequence.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">4. The output\nbuffer has no more room for the next converted character. In\nthis case it sets <b>errno</b> to <b>E2BIG</b> and returns\n(size_t)(&minus;1).</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">A different\ncase is when <i>inbuf</i> is NULL or <i>*inbuf</i> is NULL,\nbut <i>outbuf</i> is not NULL and <i>*outbuf</i> is not\nNULL. In this case, the <b>iconv</b> function attempts to\nset <i>cd</i>&rsquo;s conversion state to the initial state\nand store a corresponding shift sequence at <i>*outbuf</i>.\nAt most <i>*outbytesleft</i> bytes, starting at\n<i>*outbuf</i>, will be written. If the output buffer has no\nmore room for this reset sequence, it sets <b>errno</b> to\n<b>E2BIG</b> and returns (size_t)(&minus;1). Otherwise it\nincrements <i>*outbuf</i> and decrements\n<i>*outbytesleft</i> by the number of bytes written.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">A third case is\nwhen <i>inbuf</i> is NULL or <i>*inbuf</i> is NULL, and\n<i>outbuf</i> is NULL or <i>*outbuf</i> is NULL. In this\ncase, the <b>iconv</b> function sets <i>cd</i>&rsquo;s\nconversion state to the initial state.</p>\n\n<h2>RETURN VALUE\n<a name=\"RETURN VALUE\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The\n<b>iconv</b> function returns the number of characters\nconverted in a non-reversible way during this call;\nreversible conversions are not counted. In case of error, it\nsets <b>errno</b> and returns (size_t)(&minus;1).</p>\n\n<h2>ERRORS\n<a name=\"ERRORS\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The following\nerrors can occur, among others:</p>\n\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\"\n       cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"></td>\n<td width=\"9%\">\n\n\n<p><b>E2BIG</b></p></td>\n<td width=\"2%\"></td>\n<td width=\"78%\">\n\n\n<p>There is not sufficient room at <i>*outbuf</i>.</p></td></tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"></td>\n<td width=\"9%\">\n\n\n<p><b>EILSEQ</b></p></td>\n<td width=\"2%\"></td>\n<td width=\"78%\">\n\n\n<p>An invalid multibyte sequence has been encountered in\nthe input.</p></td></tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"></td>\n<td width=\"9%\">\n\n\n<p><b>EINVAL</b></p></td>\n<td width=\"2%\"></td>\n<td width=\"78%\">\n\n\n<p>An incomplete multibyte sequence has been encountered in\nthe input.</p></td></tr>\n</table>\n\n<h2>CONFORMING TO\n<a name=\"CONFORMING TO\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">POSIX:2001</p>\n\n<h2>SEE ALSO\n<a name=\"SEE ALSO\"></a>\n</h2>\n\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>iconv_open</b>(3),\n<b>iconvctl</b>(3) <b>iconv_close</b>(3)</p>\n<hr>\n</body>\n</html>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconv_close.3",
    "content": ".\\\" Copyright (c) Free Software Foundation, Inc.\n.\\\"\n.\\\" This is free documentation; you can redistribute it and/or\n.\\\" modify it under the terms of the GNU General Public License as\n.\\\" published by the Free Software Foundation; either version 3 of\n.\\\" the License, or (at your option) any later version.\n.\\\"\n.\\\" References consulted:\n.\\\"   GNU glibc-2 source code and manual\n.\\\"   OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html\n.\\\"\n.TH ICONV_CLOSE 3  \"March 31, 2007\" \"GNU\" \"Linux Programmer's Manual\"\n.SH NAME\niconv_close \\- deallocate descriptor for character set conversion\n.SH SYNOPSIS\n.nf\n.B #include <iconv.h>\n.sp\n.BI \"int iconv_close (iconv_t \" cd );\n.fi\n.SH DESCRIPTION\nThe \\fBiconv_close\\fP function deallocates a conversion descriptor \\fIcd\\fP\npreviously allocated using \\fBiconv_open\\fP.\n.SH \"RETURN VALUE\"\nWhen successful, the \\fBiconv_close\\fP function returns 0. In case of error,\nit sets \\fBerrno\\fP and returns \\-1.\n.SH \"CONFORMING TO\"\nPOSIX:2001\n.SH \"SEE ALSO\"\n.BR iconv_open (3)\n.BR iconv (3)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconv_close.3.html",
    "content": "<!-- Creator     : groff version 1.22.3 -->\n<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n\"http://www.w3.org/TR/html4/loose.dtd\">\n<html>\n<head>\n<meta name=\"generator\" content=\"groff -Thtml, see www.gnu.org\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=US-ASCII\">\n<meta name=\"Content-Style\" content=\"text/css\">\n<style type=\"text/css\">\n       p       { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       pre     { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       table   { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       h1      { text-align: center }\n</style>\n<title>ICONV_CLOSE</title>\n\n</head>\n<body>\n\n<h1 align=\"center\">ICONV_CLOSE</h1>\n\n<a href=\"#NAME\">NAME</a><br>\n<a href=\"#SYNOPSIS\">SYNOPSIS</a><br>\n<a href=\"#DESCRIPTION\">DESCRIPTION</a><br>\n<a href=\"#RETURN VALUE\">RETURN VALUE</a><br>\n<a href=\"#CONFORMING TO\">CONFORMING TO</a><br>\n<a href=\"#SEE ALSO\">SEE ALSO</a><br>\n\n<hr>\n\n\n<h2>NAME\n<a name=\"NAME\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">iconv_close\n&minus; deallocate descriptor for character set\nconversion</p>\n\n<h2>SYNOPSIS\n<a name=\"SYNOPSIS\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>#include\n&lt;iconv.h&gt;</b></p>\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>int\niconv_close (iconv_t</b> <i>cd</i><b>);</b></p>\n\n<h2>DESCRIPTION\n<a name=\"DESCRIPTION\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The\n<b>iconv_close</b> function deallocates a conversion\ndescriptor <i>cd</i> previously allocated using\n<b>iconv_open</b>.</p>\n\n<h2>RETURN VALUE\n<a name=\"RETURN VALUE\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">When\nsuccessful, the <b>iconv_close</b> function returns 0. In\ncase of error, it sets <b>errno</b> and returns\n&minus;1.</p>\n\n<h2>CONFORMING TO\n<a name=\"CONFORMING TO\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">POSIX:2001</p>\n\n<h2>SEE ALSO\n<a name=\"SEE ALSO\"></a>\n</h2>\n\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>iconv_open</b>(3)\n<b>iconv</b>(3)</p>\n<hr>\n</body>\n</html>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconv_open.3",
    "content": ".\\\" Copyright (c) Free Software Foundation, Inc.\n.\\\"\n.\\\" This is free documentation; you can redistribute it and/or\n.\\\" modify it under the terms of the GNU General Public License as\n.\\\" published by the Free Software Foundation; either version 3 of\n.\\\" the License, or (at your option) any later version.\n.\\\"\n.\\\" References consulted:\n.\\\"   GNU glibc-2 source code and manual\n.\\\"   OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html\n.\\\"\n.TH ICONV_OPEN 3  \"October 23, 2011\" \"GNU\" \"Linux Programmer's Manual\"\n.SH NAME\niconv_open \\- allocate descriptor for character set conversion\n.SH SYNOPSIS\n.nf\n.B #include <iconv.h>\n.sp\n.BI \"iconv_t iconv_open (const char* \" tocode \", const char* \" fromcode );\n.fi\n.SH DESCRIPTION\nThe \\fBiconv_open\\fP function allocates a conversion descriptor suitable\nfor converting byte sequences from character encoding \\fIfromcode\\fP to\ncharacter encoding \\fItocode\\fP.\n.PP\nThe values permitted for \\fIfromcode\\fP and \\fItocode\\fP and the supported\ncombinations are system dependent. For the libiconv library, the following\nencodings are supported, in all combinations.\n.TP\nEuropean languages\n.nf\n.fi\nASCII, ISO\\-8859\\-{1,2,3,4,5,7,9,10,13,14,15,16},\nKOI8\\-R, KOI8\\-U, KOI8\\-RU,\nCP{1250,1251,1252,1253,1254,1257}, CP{850,866,1131},\nMac{Roman,CentralEurope,Iceland,Croatian,Romania},\nMac{Cyrillic,Ukraine,Greek,Turkish},\nMacintosh\n.TP\nSemitic languages\n.nf\n.fi\nISO\\-8859\\-{6,8}, CP{1255,1256}, CP862, Mac{Hebrew,Arabic}\n.TP\nJapanese\n.nf\n.fi\nEUC\\-JP, SHIFT_JIS, CP932, ISO\\-2022\\-JP, ISO\\-2022\\-JP\\-2, ISO\\-2022\\-JP\\-1,\nISO-2022\\-JP\\-MS\n.TP\nChinese\n.nf\n.fi\nEUC\\-CN, HZ, GBK, CP936, GB18030, EUC\\-TW, BIG5, CP950, BIG5\\-HKSCS,\nBIG5\\-HKSCS:2004, BIG5\\-HKSCS:2001, BIG5\\-HKSCS:1999, ISO\\-2022\\-CN,\nISO\\-2022\\-CN\\-EXT\n.TP\nKorean\n.nf\n.fi\nEUC\\-KR, CP949, ISO\\-2022\\-KR, JOHAB\n.TP\nArmenian\n.nf\n.fi\nARMSCII\\-8\n.TP\nGeorgian\n.nf\n.fi\nGeorgian\\-Academy, Georgian\\-PS\n.TP\nTajik\n.nf\n.fi\nKOI8\\-T\n.TP\nKazakh\n.nf\n.fi\nPT154, RK1048\n.TP\nThai\n.nf\n.fi\nTIS\\-620, CP874, MacThai\n.TP\nLaotian\n.nf\n.fi\nMuleLao\\-1, CP1133\n.TP\nVietnamese\n.nf\n.fi\nVISCII, TCVN, CP1258\n.TP\nPlatform specifics\n.nf\n.fi\nHP\\-ROMAN8, NEXTSTEP\n.TP\nFull Unicode\n.nf\n.fi\nUTF\\-8\n.nf\n.fi\nUCS\\-2, UCS\\-2BE, UCS\\-2LE\n.nf\n.fi\nUCS\\-4, UCS\\-4BE, UCS\\-4LE\n.nf\n.fi\nUTF\\-16, UTF\\-16BE, UTF\\-16LE\n.nf\n.fi\nUTF\\-32, UTF\\-32BE, UTF\\-32LE\n.nf\n.fi\nUTF\\-7\n.nf\n.fi\nC99, JAVA\n.TP\nFull Unicode, in terms of \\fBuint16_t\\fP or \\fBuint32_t\\fP\n(with machine dependent endianness and alignment)\n.nf\n.fi\nUCS\\-2\\-INTERNAL, UCS\\-4\\-INTERNAL\n.TP\nLocale dependent, in terms of \\fBchar\\fP or \\fBwchar_t\\fP\n(with machine dependent endianness and alignment, and with semantics\ndepending on the OS and the current LC_CTYPE locale facet)\n.nf\n.fi\nchar, wchar_t\n.PP\nWhen configured with the option \\fB\\-\\-enable\\-extra\\-encodings\\fP, it also\nprovides support for a few extra encodings:\n.TP\nEuropean languages\n.nf\nCP{437,737,775,852,853,855,857,858,860,861,863,865,869,1125}\n.fi\n.TP\nSemitic languages\n.nf\n.fi\nCP864\n.TP\nJapanese\n.nf\n.fi\nEUC\\-JISX0213, Shift_JISX0213, ISO\\-2022\\-JP\\-3\n.TP\nChinese\n.nf\n.fi\nBIG5\\-2003 (experimental)\n.TP\nTurkmen\n.nf\n.fi\nTDS565\n.TP\nPlatform specifics\n.nf\n.fi\nATARIST, RISCOS\\-LATIN1\n.PP\nThe empty encoding name \"\" is equivalent to \"char\": it denotes the\nlocale dependent character encoding.\n.PP\nWhen the string \"//TRANSLIT\" is appended to \\fItocode\\fP, transliteration\nis activated. This means that when a character cannot be represented in the\ntarget character set, it can be approximated through one or several characters\nthat look similar to the original character.\n.PP\nWhen the string \"//IGNORE\" is appended to \\fItocode\\fP, characters that\ncannot be represented in the target character set will be silently discarded.\n.PP\nThe resulting conversion descriptor can be used with \\fBiconv\\fP any number\nof times. It remains valid until deallocated using \\fBiconv_close\\fP.\n.PP\nA conversion descriptor contains a conversion state. After creation using\n\\fBiconv_open\\fP, the state is in the initial state. Using \\fBiconv\\fP\nmodifies the descriptor's conversion state. (This implies that a conversion\ndescriptor can not be used in multiple threads simultaneously.) To bring the\nstate back to the initial state, use \\fBiconv\\fP with NULL as \\fIinbuf\\fP\nargument.\n.SH \"RETURN VALUE\"\nThe \\fBiconv_open\\fP function returns a freshly allocated conversion\ndescriptor. In case of error, it sets \\fBerrno\\fP and returns (iconv_t)(\\-1).\n.SH ERRORS\nThe following error can occur, among others:\n.TP\n.B EINVAL\nThe conversion from \\fIfromcode\\fP to \\fItocode\\fP is not supported by the\nimplementation.\n.SH \"CONFORMING TO\"\nPOSIX:2001\n.SH \"SEE ALSO\"\n.BR iconv (3)\n.BR iconvctl (3)\n.BR iconv_close (3)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconv_open.3.html",
    "content": "<!-- Creator     : groff version 1.22.3 -->\n<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n\"http://www.w3.org/TR/html4/loose.dtd\">\n<html>\n<head>\n<meta name=\"generator\" content=\"groff -Thtml, see www.gnu.org\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=US-ASCII\">\n<meta name=\"Content-Style\" content=\"text/css\">\n<style type=\"text/css\">\n       p       { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       pre     { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       table   { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       h1      { text-align: center }\n</style>\n<title>ICONV_OPEN</title>\n\n</head>\n<body>\n\n<h1 align=\"center\">ICONV_OPEN</h1>\n\n<a href=\"#NAME\">NAME</a><br>\n<a href=\"#SYNOPSIS\">SYNOPSIS</a><br>\n<a href=\"#DESCRIPTION\">DESCRIPTION</a><br>\n<a href=\"#RETURN VALUE\">RETURN VALUE</a><br>\n<a href=\"#ERRORS\">ERRORS</a><br>\n<a href=\"#CONFORMING TO\">CONFORMING TO</a><br>\n<a href=\"#SEE ALSO\">SEE ALSO</a><br>\n\n<hr>\n\n\n<h2>NAME\n<a name=\"NAME\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">iconv_open\n&minus; allocate descriptor for character set conversion</p>\n\n<h2>SYNOPSIS\n<a name=\"SYNOPSIS\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>#include\n&lt;iconv.h&gt;</b></p>\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>iconv_t\niconv_open (const char*</b> <i>tocode</i><b>, const\nchar*</b> <i>fromcode</i><b>);</b></p>\n\n<h2>DESCRIPTION\n<a name=\"DESCRIPTION\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The\n<b>iconv_open</b> function allocates a conversion descriptor\nsuitable for converting byte sequences from character\nencoding <i>fromcode</i> to character encoding\n<i>tocode</i>.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">The values\npermitted for <i>fromcode</i> and <i>tocode</i> and the\nsupported combinations are system dependent. For the\nlibiconv library, the following encodings are supported, in\nall combinations. <br>\nEuropean languages</p>\n\n<p style=\"margin-left:22%;\">ASCII,\nISO&minus;8859&minus;{1,2,3,4,5,7,9,10,13,14,15,16},\nKOI8&minus;R, KOI8&minus;U, KOI8&minus;RU,\nCP{1250,1251,1252,1253,1254,1257}, CP{850,866,1131},\nMac{Roman,CentralEurope,Iceland,Croatian,Romania},\nMac{Cyrillic,Ukraine,Greek,Turkish}, Macintosh</p>\n\n<p style=\"margin-left:11%;\">Semitic languages</p>\n\n<p style=\"margin-left:22%;\">ISO&minus;8859&minus;{6,8},\nCP{1255,1256}, CP862, Mac{Hebrew,Arabic}</p>\n\n<p style=\"margin-left:11%;\">Japanese</p>\n\n<p style=\"margin-left:22%;\">EUC&minus;JP, SHIFT_JIS, CP932,\nISO&minus;2022&minus;JP, ISO&minus;2022&minus;JP&minus;2,\nISO&minus;2022&minus;JP&minus;1,\nISO-2022&minus;JP&minus;MS</p>\n\n<p style=\"margin-left:11%;\">Chinese</p>\n\n<p style=\"margin-left:22%;\">EUC&minus;CN, HZ, GBK, CP936,\nGB18030, EUC&minus;TW, BIG5, CP950, BIG5&minus;HKSCS,\nBIG5&minus;HKSCS:2004, BIG5&minus;HKSCS:2001,\nBIG5&minus;HKSCS:1999, ISO&minus;2022&minus;CN,\nISO&minus;2022&minus;CN&minus;EXT</p>\n\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\"\n       cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"></td>\n<td width=\"9%\">\n\n\n<p>Korean</p></td>\n<td width=\"2%\"></td>\n<td width=\"50%\">\n\n\n<p>EUC&minus;KR, CP949, ISO&minus;2022&minus;KR, JOHAB</p></td>\n<td width=\"28%\">\n</td></tr>\n</table>\n\n<p style=\"margin-left:11%;\">Armenian</p>\n\n<p style=\"margin-left:22%;\">ARMSCII&minus;8</p>\n\n<p style=\"margin-left:11%;\">Georgian</p>\n\n<p style=\"margin-left:22%;\">Georgian&minus;Academy,\nGeorgian&minus;PS</p>\n\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\"\n       cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"></td>\n<td width=\"9%\">\n\n\n<p>Tajik</p></td>\n<td width=\"2%\"></td>\n<td width=\"35%\">\n\n\n<p>KOI8&minus;T</p></td>\n<td width=\"43%\">\n</td></tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"></td>\n<td width=\"9%\">\n\n\n<p>Kazakh</p></td>\n<td width=\"2%\"></td>\n<td width=\"35%\">\n\n\n<p>PT154, RK1048</p></td>\n<td width=\"43%\">\n</td></tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"></td>\n<td width=\"9%\">\n\n\n<p>Thai</p></td>\n<td width=\"2%\"></td>\n<td width=\"35%\">\n\n\n<p>TIS&minus;620, CP874, MacThai</p></td>\n<td width=\"43%\">\n</td></tr>\n</table>\n\n<p style=\"margin-left:11%;\">Laotian</p>\n\n<p style=\"margin-left:22%;\">MuleLao&minus;1, CP1133</p>\n\n<p style=\"margin-left:11%;\">Vietnamese</p>\n\n<p style=\"margin-left:22%;\">VISCII, TCVN, CP1258</p>\n\n<p style=\"margin-left:11%;\">Platform specifics</p>\n\n<p style=\"margin-left:22%;\">HP&minus;ROMAN8, NEXTSTEP</p>\n\n<p style=\"margin-left:11%;\">Full Unicode</p>\n\n<p style=\"margin-left:22%;\">UTF&minus;8 <br>\nUCS&minus;2, UCS&minus;2BE, UCS&minus;2LE <br>\nUCS&minus;4, UCS&minus;4BE, UCS&minus;4LE <br>\nUTF&minus;16, UTF&minus;16BE, UTF&minus;16LE <br>\nUTF&minus;32, UTF&minus;32BE, UTF&minus;32LE <br>\nUTF&minus;7 <br>\nC99, JAVA</p>\n\n<p style=\"margin-left:11%;\">Full Unicode, in terms of\n<b>uint16_t</b> or <b>uint32_t</b></p>\n\n<p style=\"margin-left:22%;\">(with machine dependent\nendianness and alignment) <br>\nUCS&minus;2&minus;INTERNAL, UCS&minus;4&minus;INTERNAL</p>\n\n<p style=\"margin-left:11%;\">Locale dependent, in terms of\n<b>char</b> or <b>wchar_t</b></p>\n\n<p style=\"margin-left:22%;\">(with machine dependent\nendianness and alignment, and with semantics depending on\nthe OS and the current LC_CTYPE locale facet) <br>\nchar, wchar_t</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">When configured\nwith the option\n<b>&minus;&minus;enable&minus;extra&minus;encodings</b>, it\nalso provides support for a few extra encodings: <br>\nEuropean languages</p>\n\n\n<p style=\"margin-left:22%;\">CP{437,737,775,852,853,855,857,858,860,861,863,865,869,1125}</p>\n\n<p style=\"margin-left:11%;\">Semitic languages</p>\n\n<p style=\"margin-left:22%;\">CP864</p>\n\n<p style=\"margin-left:11%;\">Japanese</p>\n\n<p style=\"margin-left:22%;\">EUC&minus;JISX0213,\nShift_JISX0213, ISO&minus;2022&minus;JP&minus;3</p>\n\n<p style=\"margin-left:11%;\">Chinese</p>\n\n<p style=\"margin-left:22%;\">BIG5&minus;2003\n(experimental)</p>\n\n<p style=\"margin-left:11%;\">Turkmen</p>\n\n<p style=\"margin-left:22%;\">TDS565</p>\n\n<p style=\"margin-left:11%;\">Platform specifics</p>\n\n<p style=\"margin-left:22%;\">ATARIST,\nRISCOS&minus;LATIN1</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">The empty\nencoding name &quot;&quot; is equivalent to\n&quot;char&quot;: it denotes the locale dependent character\nencoding.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">When the string\n&quot;//TRANSLIT&quot; is appended to <i>tocode</i>,\ntransliteration is activated. This means that when a\ncharacter cannot be represented in the target character set,\nit can be approximated through one or several characters\nthat look similar to the original character.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">When the string\n&quot;//IGNORE&quot; is appended to <i>tocode</i>,\ncharacters that cannot be represented in the target\ncharacter set will be silently discarded.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">The resulting\nconversion descriptor can be used with <b>iconv</b> any\nnumber of times. It remains valid until deallocated using\n<b>iconv_close</b>.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">A conversion\ndescriptor contains a conversion state. After creation using\n<b>iconv_open</b>, the state is in the initial state. Using\n<b>iconv</b> modifies the descriptor&rsquo;s conversion\nstate. (This implies that a conversion descriptor can not be\nused in multiple threads simultaneously.) To bring the state\nback to the initial state, use <b>iconv</b> with NULL as\n<i>inbuf</i> argument.</p>\n\n<h2>RETURN VALUE\n<a name=\"RETURN VALUE\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The\n<b>iconv_open</b> function returns a freshly allocated\nconversion descriptor. In case of error, it sets\n<b>errno</b> and returns (iconv_t)(&minus;1).</p>\n\n<h2>ERRORS\n<a name=\"ERRORS\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The following\nerror can occur, among others:</p>\n\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\"\n       cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"></td>\n<td width=\"9%\">\n\n\n<p><b>EINVAL</b></p></td>\n<td width=\"2%\"></td>\n<td width=\"78%\">\n\n\n<p>The conversion from <i>fromcode</i> to <i>tocode</i> is\nnot supported by the implementation.</p></td></tr>\n</table>\n\n<h2>CONFORMING TO\n<a name=\"CONFORMING TO\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">POSIX:2001</p>\n\n<h2>SEE ALSO\n<a name=\"SEE ALSO\"></a>\n</h2>\n\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>iconv</b>(3)\n<b>iconvctl</b>(3) <b>iconv_close</b>(3)</p>\n<hr>\n</body>\n</html>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconv_open_into.3",
    "content": ".\\\" Copyright (c) Free Software Foundation, Inc.\n.\\\"\n.\\\" This is free documentation; you can redistribute it and/or\n.\\\" modify it under the terms of the GNU General Public License as\n.\\\" published by the Free Software Foundation; either version 3 of\n.\\\" the License, or (at your option) any later version.\n.\\\"\n.\\\" References consulted:\n.\\\"   iconv.h\n.\\\"\n.TH ICONV_OPEN_INTO 3  \"September 21, 2008\" \"GNU\" \"Linux Programmer's Manual\"\n.SH NAME\niconv_open_into \\- initialize descriptor for character set conversion\n.SH SYNOPSIS\n.nf\n.B #include <iconv.h>\n.sp\n.BI \"int iconv_open_into (const char* \" tocode \", const char* \" fromcode \",\"\n.BI \"                     iconv_allocation_t* \" resultp );\n.fi\n.SH DESCRIPTION\nThe \\fBiconv_open_into\\fP function initializes a conversion descriptor suitable\nfor converting byte sequences from character encoding \\fIfromcode\\fP to\ncharacter encoding \\fItocode\\fP.  The conversion descriptor is stored in the\nmemory pointed to by \\fIresultp\\fP.\n.PP\nThe values permitted for \\fIfromcode\\fP and \\fItocode\\fP are the same as for\nthe function \\fBiconv_open\\fP.\n.PP\nAfter a successful return from this function, \\fIresultp\\fP can be be used\nas an \\fBiconv_t\\fP object with the \\fBiconv\\fP function.\n.SH \"RETURN VALUE\"\nThe \\fBiconv_open_into\\fP function fills \\fB*\\fP\\fIresultp\\fP and returns 0 if\nit succeeds. In case of error, it sets \\fBerrno\\fP and returns \\-1.\n.SH ERRORS\nThe following error can occur, among others:\n.TP\n.B EINVAL\nThe conversion from \\fIfromcode\\fP to \\fItocode\\fP is not supported by the\nimplementation.\n.SH \"CONFORMING TO\"\nThis function is implemented only in GNU libiconv and not in other \\fBiconv\\fP\nimplementations. It is not backed by a standard. You can test for its presence\nthrough \\fB(_LIBICONV_VERSION >= 0x010D)\\fP.\n.SH \"SEE ALSO\"\n.BR iconv_open (3)\n.BR iconv (3)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconv_open_into.3.html",
    "content": "<!-- Creator     : groff version 1.22.3 -->\n<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n\"http://www.w3.org/TR/html4/loose.dtd\">\n<html>\n<head>\n<meta name=\"generator\" content=\"groff -Thtml, see www.gnu.org\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=US-ASCII\">\n<meta name=\"Content-Style\" content=\"text/css\">\n<style type=\"text/css\">\n       p       { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       pre     { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       table   { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       h1      { text-align: center }\n</style>\n<title>ICONV_OPEN_INTO</title>\n\n</head>\n<body>\n\n<h1 align=\"center\">ICONV_OPEN_INTO</h1>\n\n<a href=\"#NAME\">NAME</a><br>\n<a href=\"#SYNOPSIS\">SYNOPSIS</a><br>\n<a href=\"#DESCRIPTION\">DESCRIPTION</a><br>\n<a href=\"#RETURN VALUE\">RETURN VALUE</a><br>\n<a href=\"#ERRORS\">ERRORS</a><br>\n<a href=\"#CONFORMING TO\">CONFORMING TO</a><br>\n<a href=\"#SEE ALSO\">SEE ALSO</a><br>\n\n<hr>\n\n\n<h2>NAME\n<a name=\"NAME\"></a>\n</h2>\n\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">iconv_open_into\n&minus; initialize descriptor for character set\nconversion</p>\n\n<h2>SYNOPSIS\n<a name=\"SYNOPSIS\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>#include\n&lt;iconv.h&gt;</b></p>\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>int\niconv_open_into (const char*</b> <i>tocode</i><b>, const\nchar*</b> <i>fromcode</i><b>, <br>\niconv_allocation_t*</b> <i>resultp</i><b>);</b></p>\n\n<h2>DESCRIPTION\n<a name=\"DESCRIPTION\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The\n<b>iconv_open_into</b> function initializes a conversion\ndescriptor suitable for converting byte sequences from\ncharacter encoding <i>fromcode</i> to character encoding\n<i>tocode</i>. The conversion descriptor is stored in the\nmemory pointed to by <i>resultp</i>.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">The values\npermitted for <i>fromcode</i> and <i>tocode</i> are the same\nas for the function <b>iconv_open</b>.</p>\n\n<p style=\"margin-left:11%; margin-top: 1em\">After a\nsuccessful return from this function, <i>resultp</i> can be\nbe used as an <b>iconv_t</b> object with the <b>iconv</b>\nfunction.</p>\n\n<h2>RETURN VALUE\n<a name=\"RETURN VALUE\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The\n<b>iconv_open_into</b> function fills <b>*</b><i>resultp</i>\nand returns 0 if it succeeds. In case of error, it sets\n<b>errno</b> and returns &minus;1.</p>\n\n<h2>ERRORS\n<a name=\"ERRORS\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The following\nerror can occur, among others:</p>\n\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\"\n       cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"></td>\n<td width=\"9%\">\n\n\n<p><b>EINVAL</b></p></td>\n<td width=\"2%\"></td>\n<td width=\"78%\">\n\n\n<p>The conversion from <i>fromcode</i> to <i>tocode</i> is\nnot supported by the implementation.</p></td></tr>\n</table>\n\n<h2>CONFORMING TO\n<a name=\"CONFORMING TO\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">This function\nis implemented only in GNU libiconv and not in other\n<b>iconv</b> implementations. It is not backed by a\nstandard. You can test for its presence through\n<b>(_LIBICONV_VERSION &gt;= 0x010D)</b>.</p>\n\n<h2>SEE ALSO\n<a name=\"SEE ALSO\"></a>\n</h2>\n\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>iconv_open</b>(3)\n<b>iconv</b>(3)</p>\n<hr>\n</body>\n</html>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconvctl.3",
    "content": ".\\\" Copyright (c) Perry Rapp\n.\\\" Copyright (c) Free Software Foundation, Inc.\n.\\\"\n.\\\" This is free documentation; you can redistribute it and/or\n.\\\" modify it under the terms of the GNU General Public License as\n.\\\" published by the Free Software Foundation; either version 3 of\n.\\\" the License, or (at your option) any later version.\n.\\\"\n.\\\" References consulted:\n.\\\"   iconv.h\n.\\\"\n.TH ICONVCTL 3  \"March 31, 2007\" \"GNU\" \"Linux Programmer's Manual\"\n.SH NAME\niconvctl \\- control iconv behavior\n.SH SYNOPSIS\n.nf\n.B #include <iconv.h>\n.sp\n.BI \"int iconvctl (iconv_t \" cd \" , int \" request \", void * \" argument );\n.fi\n.SH DESCRIPTION\nThe argument \\fIcd\\fP must be a conversion descriptor created using the\nfunction \\fBiconv_open\\fP.\n.PP\n\\fBiconvctl\\fP queries or adjusts the behavior of the \\fBiconv\\fP function,\nwhen invoked with the specified conversion descriptor, depending on the\nrequest value.\n.SH \"REQUEST VALUES\"\nThe following are permissible values for the \\fIrequest\\fP parameter.\n.TP\n.B ICONV_TRIVIALP\n\\fIargument\\fP should be an \\fBint *\\fP which will receive 1 if the\nconversion is trivial, or 0 otherwise.\n.TP\n.B ICONV_GET_TRANSLITERATE\n\\fIargument\\fP should be an \\fBint *\\fP which will receive 1 if \ntransliteration is enabled in the conversion, or 0 otherwise.\n.TP\n.B ICONV_SET_TRANSLITERATE\n\\fIargument\\fP should be a \\fBconst int *\\fP, pointing to an \\fBint\\fP value.\nA non-zero value is used to enable transliteration in the conversion. A zero\nvalue disables it.\n.TP\n.B ICONV_GET_DISCARD_ILSEQ\n\\fIargument\\fP should be an \\fBint *\\fP which will receive 1 if \n\"illegal sequence discard and continue\" is enabled in the conversion,\nor 0 otherwise.\n.TP\n.B ICONV_SET_DISCARD_ILSEQ\n\\fIargument\\fP should be a \\fBconst int *\\fP, pointing to an \\fBint\\fP value.\nA non-zero value is used to enable \"illegal sequence discard and continue\"\nin the conversion. A zero value disables it.\n.SH \"RETURN VALUE\"\nThe \\fBiconvctl\\fP function returns 0 if it succeeds. In case of error, it sets\n\\fBerrno\\fP and returns \\-1.\n.SH ERRORS\nThe following errors can occur, among others:\n.TP\n.B EINVAL\nThe request is invalid.\n.SH \"CONFORMING TO\"\nThis function is implemented only in GNU libiconv and not in other \\fBiconv\\fP\nimplementations. It is not backed by a standard. You can test for its presence\nthrough \\fB(_LIBICONV_VERSION >= 0x0108)\\fP.\n.SH \"SEE ALSO\"\n.BR iconv_open (3)\n.BR iconv (3)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/man/iconvctl.3.html",
    "content": "<!-- Creator     : groff version 1.22.3 -->\n<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n\"http://www.w3.org/TR/html4/loose.dtd\">\n<html>\n<head>\n<meta name=\"generator\" content=\"groff -Thtml, see www.gnu.org\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=US-ASCII\">\n<meta name=\"Content-Style\" content=\"text/css\">\n<style type=\"text/css\">\n       p       { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       pre     { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       table   { margin-top: 0; margin-bottom: 0; vertical-align: top }\n       h1      { text-align: center }\n</style>\n<title>ICONVCTL</title>\n\n</head>\n<body>\n\n<h1 align=\"center\">ICONVCTL</h1>\n\n<a href=\"#NAME\">NAME</a><br>\n<a href=\"#SYNOPSIS\">SYNOPSIS</a><br>\n<a href=\"#DESCRIPTION\">DESCRIPTION</a><br>\n<a href=\"#REQUEST VALUES\">REQUEST VALUES</a><br>\n<a href=\"#RETURN VALUE\">RETURN VALUE</a><br>\n<a href=\"#ERRORS\">ERRORS</a><br>\n<a href=\"#CONFORMING TO\">CONFORMING TO</a><br>\n<a href=\"#SEE ALSO\">SEE ALSO</a><br>\n\n<hr>\n\n\n<h2>NAME\n<a name=\"NAME\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">iconvctl\n&minus; control iconv behavior</p>\n\n<h2>SYNOPSIS\n<a name=\"SYNOPSIS\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>#include\n&lt;iconv.h&gt;</b></p>\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>int iconvctl\n(iconv_t</b> <i>cd</i> <b>, int</b> <i>request</i><b>, void\n*</b> <i>argument</i><b>);</b></p>\n\n<h2>DESCRIPTION\n<a name=\"DESCRIPTION\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The argument\n<i>cd</i> must be a conversion descriptor created using the\nfunction <b>iconv_open</b>.</p>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>iconvctl</b>\nqueries or adjusts the behavior of the <b>iconv</b>\nfunction, when invoked with the specified conversion\ndescriptor, depending on the request value.</p>\n\n<h2>REQUEST VALUES\n<a name=\"REQUEST VALUES\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The following\nare permissible values for the <i>request</i> parameter.\n<b><br>\nICONV_TRIVIALP</b></p>\n\n<p style=\"margin-left:22%;\"><i>argument</i> should be an\n<b>int *</b> which will receive 1 if the conversion is\ntrivial, or 0 otherwise.</p>\n\n\n<p style=\"margin-left:11%;\"><b>ICONV_GET_TRANSLITERATE</b></p>\n\n<p style=\"margin-left:22%;\"><i>argument</i> should be an\n<b>int *</b> which will receive 1 if transliteration is\nenabled in the conversion, or 0 otherwise.</p>\n\n\n<p style=\"margin-left:11%;\"><b>ICONV_SET_TRANSLITERATE</b></p>\n\n<p style=\"margin-left:22%;\"><i>argument</i> should be a\n<b>const int *</b>, pointing to an <b>int</b> value. A\nnon-zero value is used to enable transliteration in the\nconversion. A zero value disables it.</p>\n\n\n<p style=\"margin-left:11%;\"><b>ICONV_GET_DISCARD_ILSEQ</b></p>\n\n<p style=\"margin-left:22%;\"><i>argument</i> should be an\n<b>int *</b> which will receive 1 if &quot;illegal sequence\ndiscard and continue&quot; is enabled in the conversion, or\n0 otherwise.</p>\n\n\n<p style=\"margin-left:11%;\"><b>ICONV_SET_DISCARD_ILSEQ</b></p>\n\n<p style=\"margin-left:22%;\"><i>argument</i> should be a\n<b>const int *</b>, pointing to an <b>int</b> value. A\nnon-zero value is used to enable &quot;illegal sequence\ndiscard and continue&quot; in the conversion. A zero value\ndisables it.</p>\n\n<h2>RETURN VALUE\n<a name=\"RETURN VALUE\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The\n<b>iconvctl</b> function returns 0 if it succeeds. In case\nof error, it sets <b>errno</b> and returns &minus;1.</p>\n\n<h2>ERRORS\n<a name=\"ERRORS\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">The following\nerrors can occur, among others:</p>\n\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\"\n       cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"></td>\n<td width=\"9%\">\n\n\n<p><b>EINVAL</b></p></td>\n<td width=\"2%\"></td>\n<td width=\"35%\">\n\n\n<p>The request is invalid.</p></td>\n<td width=\"43%\">\n</td></tr>\n</table>\n\n<h2>CONFORMING TO\n<a name=\"CONFORMING TO\"></a>\n</h2>\n\n\n<p style=\"margin-left:11%; margin-top: 1em\">This function\nis implemented only in GNU libiconv and not in other\n<b>iconv</b> implementations. It is not backed by a\nstandard. You can test for its presence through\n<b>(_LIBICONV_VERSION &gt;= 0x0108)</b>.</p>\n\n<h2>SEE ALSO\n<a name=\"SEE ALSO\"></a>\n</h2>\n\n\n\n<p style=\"margin-left:11%; margin-top: 1em\"><b>iconv_open</b>(3)\n<b>iconv</b>(3)</p>\n<hr>\n</body>\n</html>\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/os2/iconv.def",
    "content": "; iconv.def (emx+gcc)\nLIBRARY ICONV \nDESCRIPTION 'OS/2 port of libiconv <http://www.gnu.org/software/libiconv/>'\nEXPORTS\n\tlibiconv_open\t@1\n\tlibiconv\t@2\n\tlibiconv_close\t@3\n\tlibiconvctl\t@4\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/ChangeLog",
    "content": "2017-01-30  Bruno Haible  <bruno@clisp.org>\n\n\t* bg.po: Update from Roumen Petrov <transl@roumenpetrov.info>.\n\t* cs.po: Update from Petr Pisar <petr.pisar@atlas.cz>.\n\t* de.po: Update from Mario Blättermann <mario.blaettermann@gmail.com>.\n\t* eo.po: Update from Felipe Castro <fefcas@gmail.com>.\n\t* et.po: Update from Toomas Soome <tsoome@me.com>.\n\t* fr.po: Update from Stéphane Aulery <lkppo@free.fr>.\n\t* ga.po: Update from Kevin Scannell <kscanne@gmail.com>.\n\t* it.po: Update from Milo Casagrande <milo@milo.name>.\n\t* ja.po: Update from Takeshi Hamasaki <hmatrjp@users.sourceforge.jp>.\n\t* nl.po: Update from Benno Schulenberg <benno@vertaalt.nl>.\n\t* pl.po: Update from Jakub Bogusz <qboosh@pld-linux.org>.\n\t* pt_BR.po: Update from Rafael Fontenelle <rffontenelle@gmail.com>.\n\t* sk.po: Update from Marcel Telka <marcel@telka.sk>.\n\t* sr.po: Update from Мирослав Николић <miroslavnikolic@rocketmail.com>.\n\t* uk.po: Update from Yuri Chornoivan <yurchor@ukr.net>.\n\t* vi.po: Update from Trần Ngọc Quân <vnwildman@gmail.com>.\n\n2016-10-01  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in.in: Upgrade to gettext-0.19.8.1.\n\t* Makevars: Upgrade to gettext-0.19.8.1, keeping modifications.\n\t* Rules-quot: Upgrade to gettext-0.19.8.1.\n\n2016-10-01  Bruno Haible  <bruno@clisp.org>\n\n\t* es.po: Update from Santiago Vila Doncel <sanvila@unex.es>.\n\t* gl.po: Update from Leandro Regueiro <leandro.regueiro@gmail.com>.\n\t* hu.po: Update from Balázs Úr <urbalazs@gmail.com>.\n\t* pt_BR.po: Update from Rafael Ferreira <rafael.f.f1@gmail.com>.\n\t* zh_TW.po: Update from Wei-Lun Chao <bluebat@member.fsf.org>.\n\t* zh_CN.po: Update Language-Team address.\n\n2012-12-07  Bruno Haible  <bruno@clisp.org>\n\n\t* gl.po: Update from Leandro Regueiro <leandro.regueiro@gmail.com>.\n\n2012-06-03  Bruno Haible  <bruno@clisp.org>\n\n\t* hr.po: Update from Tomislav Krznar <tomislav.krznar@gmail.com>.\n\n2012-02-19  Bruno Haible  <bruno@clisp.org>\n\n\t* sr.po: Update from Мирослав Николић <miroslavnikolic@rocketmail.com>.\n\n2011-06-04  Bruno Haible  <bruno@clisp.org>\n\n\t* uk.po: Update from Yuri Chornoivan <yurchor@ukr.net>.\n\n2010-08-24  Bruno Haible  <bruno@clisp.org>\n\n\t* ja.po: Update from Yasuaki Taniguchi <yasuakit@gmail.com>.\n\n2010-08-04  Bruno Haible  <bruno@clisp.org>\n\n\t* et.po: Update from Toomas Soome <Toomas.Soome@microlink.ee>.\n\n2010-06-04  Bruno Haible  <bruno@clisp.org>\n\n\t* Makevars (MSGMERGE_OPTIONS): Define to empty.\n\n2010-06-04  gettextize  <bug-gnu-gettext@gnu.org>\n\n\t* Makefile.in.in: Upgrade to gettext-0.18.1.\n\t* Rules-quot: Upgrade to gettext-0.18.1.\n\n2010-03-08  Bruno Haible  <bruno@clisp.org>\n\n\t* ja.po: New file, from Yasuaki Taniguchi <yasuakit@gmail.com>.\n\t* LINGUAS: Add ja.\n\n2009-12-06  Bruno Haible  <bruno@clisp.org>\n\n\t* da.po: Update from Keld Simonsen <keld@keldix.com>.\n\n2009-11-28  Bruno Haible  <bruno@clisp.org>\n\n\t* da.po: Update from Keld Simonsen <keld@keldix.com>.\n\n2009-07-21  Bruno Haible  <bruno@clisp.org>\n\n\t* cs.po: New file, from Petr Pisar <petr.pisar@atlas.cz>.\n\t* LINGUAS: Add cs.\n\n2009-03-24  Bruno Haible  <bruno@clisp.org>\n\n\t* bg.po: New file, from Roumen Petrov <transl@roumenpetrov.info>.\n\t* LINGUAS: Add bg.\n\n2009-01-24  Bruno Haible  <bruno@clisp.org>\n\n\t* id.po: Update from Arif E. Nugroho <arif_endro@yahoo.com>.\n\t* it.po: Update from Milo Casagrande <milo_casagrande@yahoo.it>.\n\n2008-11-11  Bruno Haible  <bruno@clisp.org>\n\n\t* zh_CN.po: Update from Ji ZhengYu <zhengyuji@gmail.com>.\n\n2008-05-18  Bruno Haible  <bruno@clisp.org>\n\n\t* zh_CN.po: Update from Ji ZhengYu <zhengyuji@gmail.com>.\n\n2008-04-27  Bruno Haible  <bruno@clisp.org>\n\n\t* sl.po: Update from\n\tPrimož Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>.\n\n2008-03-30  Bruno Haible  <bruno@clisp.org>\n\n\t* fr.po: Update from François-Xavier Coudert <fxcoudert@gmail.com>.\n\n2008-02-18  Bruno Haible  <bruno@clisp.org>\n\n\t* ga.po: Update from Kevin Scannell <kscanne@gmail.com>.\n\n2008-02-09  Bruno Haible  <bruno@clisp.org>\n\n\t* sv.po: Update from Daniel Nylander <po@danielnylander.se>.\n\n2008-01-31  Bruno Haible  <bruno@clisp.org>\n\n\t* sk.po: Update from Marcel Telka <marcel@telka.sk>.\n\n2008-01-08  Bruno Haible  <bruno@clisp.org>\n\n\t* de.po: Update from Bruno Haible <bruno@clisp.org>.\n\t* eo.po: Update from Edmund Grimley Evans <edmundo@rano.org>.\n\t* fi.po: Update from Jorma Karvonen <karvjorm@users.sf.net>.\n\t* nl.po: Update from Tim Van Holder <tim.van.holder@telenet.be>.\n\t* pl.po: Update from Jakub Bogusz <qboosh@pld-linux.org>.\n\t* vi.po: Update from Clytie Siddall <clytie@riverland.net.au>.\n\n2007-11-30  Bruno Haible  <bruno@clisp.org>\n\n\t* pl.po: Update from Jakub Bogusz <qboosh@pld-linux.org>.\n\n2007-11-11  gettextize  <bug-gnu-gettext@gnu.org>\n\n\t* Makefile.in.in: Upgrade to gettext-0.17.\n\t* Rules-quot: Upgrade to gettext-0.17.\n\n2007-10-24  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in.in: Update from gettext-0.16.2.\n\n2007-10-24  Bruno Haible  <bruno@clisp.org>\n\n\t* fi.po: Update from Jorma Karvonen <karvjorm@users.sf.net>.\n\n2007-10-15  Bruno Haible  <bruno@clisp.org>\n\n\t* sl.po: Update from\n\tPrimož Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>.\n\n2007-09-15  Bruno Haible  <bruno@clisp.org>\n\n\t* eo.po: Update from Edmund Grimley Evans <edmundo@rano.org>.\n\t* ga.po: Update from Kevin Scannell <kscanne@gmail.com>.\n\t* nl.po: Update from Tim Van Holder <tim.van.holder@telenet.be>.\n\t* sv.po: Update from Daniel Nylander <po@danielnylander.se>.\n\t* vi.po: Update from Clytie Siddall <clytie@riverland.net.au>.\n\t* wa.po: Update from Pablo Saratxaga <pablo@walon.org>.\n\n2007-05-30  Bruno Haible  <bruno@clisp.org>\n\n\t* sv.po: Update from Daniel Nylander <po@danielnylander.se>.\n\n2006-10-02  Bruno Haible  <bruno@clisp.org>\n\n\t* sl.po: Update from\n\tPrimož Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>.\n\n2006-09-28  Bruno Haible  <bruno@clisp.org>\n\n\t* et.po: Update from Toomas Soome <Toomas.Soome@microlink.ee>.\n\t* sr.po: Update from Aleksandar Jelenak <jelenak@verizon.net>.\n\n2006-07-19  Bruno Haible  <bruno@clisp.org>\n\n\t* de.po: Update.\n\t* ga.po: Update from Kevin Patrick Scannell <scannell@slu.edu>.\n\n2006-07-03  Bruno Haible  <bruno@clisp.org>\n\n\t* eo.po: Update from Edmund Grimley Evans <edmundo@rano.org>.\n\n2006-06-23  Bruno Haible  <bruno@clisp.org>\n\n\t* vi.po: Update from Clytie Siddall <clytie@riverland.net.au>.\n\n2006-05-16  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.in.in: Update from GNU gettext.\n\t* Makevars (XGETTEXT_OPTIONS): Add more flags.\n\t(USE_MSGCTXT): New variable.\n\n2005-12-29  Bruno Haible  <bruno@clisp.org>\n\n\t* zh_TW.po: New file, from Wei-Lun Chao <chaoweilun@pcmail.com.tw>.\n\t* LINGUAS: Add zh_TW.\n\n2005-02-11  Bruno Haible  <bruno@clisp.org>\n\n\t* rm.po: New file, from Florian Verdet <fvgoto@linuxbourg.ch>.\n\t* vi.po: New file, from Clytie Siddall <clytie@riverland.net.au>.\n\t* LINGUAS: Add rm, vi.\n\n2005-01-10  Bruno Haible  <bruno@clisp.org>\n\n\t* el.po: New file, from Balaskas Euaggelos <ebalaskas@ebalaskas.gr>.\n\t* LINGUAS: Add el.\n\n2005-01-06  Bruno Haible  <bruno@clisp.org>\n\n\t* sq.po: New file, from Laurent Dhima <laurenti@alblinux.net>.\n\t* fr.po: Update from Michel Robitaille <robitail@iro.umontreal.ca>.\n\t* wa.po: Update from Pablo Saratxaga <pablo@walon.org>.\n\t* LINGUAS: Add sq.\n\n2004-03-21  Bruno Haible  <bruno@clisp.org>\n\n\t* af.po: New file, from Petri Jooste <rkwjpj@puk.ac.za>.\n\t* ca.po: Update from Ivan Vilata i Balaguer <ivan@selidor.net>.\n\t* LINGUAS: Add af.\n\n2003-11-13  Bruno Haible  <bruno@clisp.org>\n\n\t* sr.po: New file, from Aleksandar Jelenak <jelenak@netlinkplus.net>.\n\t* LINGUAS: Add sr.\n\n2003-10-14  Bruno Haible  <bruno@clisp.org>\n\n\t* pl.po: New file, from Arkadiusz Lipiec <A.Lipiec@elka.pw.edu.pl>.\n\t* LINGUAS: Add pl.\n\n2003-08-22  Bruno Haible  <bruno@clisp.org>\n\n\t* wa.po: New file, from Pablo Saratxaga <pablo@walon.org>.\n\t* LINGUAS: Add wa.\n\n2003-08-05  Bruno Haible  <bruno@clisp.org>\n\n\t* nl.po: Update from Elros Cyriatan <cyriatan@fastmail.fm>.\n\n2003-07-31  Bruno Haible  <bruno@clisp.org>\n\n\t* nl.po: New file, from Taco Witte <T.C.Witte@phys.uu.nl>.\n\t* LINGUAS: Add nl.\n\n2003-06-11  Bruno Haible  <bruno@clisp.org>\n\n\t* et.po: New file, from Toomas Soome <Toomas.Soome@microlink.ee>.\n\t* ro.po: Update from Eugen Hoanca <eugenh@urban-grafx.ro>.\n\t* ru.po: Update from Dmitry S. Sivachenko <mitya@cavia.pp.ru>.\n\t* zh_CN.po: New file, from Wang Jian <lark@linux.net.cn>.\n\t* LINGUAS: Add et and zh_CN.\n\n2003-05-07  Bruno Haible  <bruno@clisp.org>\n\n\t* ga.po: Update from Kevin Patrick Scannell <scannell@slu.edu>.\n\n2003-05-06  Bruno Haible  <bruno@clisp.org>\n\n\t* ga.po: New file, from Kevin Patrick Scannell <scannell@slu.edu>.\n\t* LINGUAS: Add it.\n\n2003-04-22  Bruno Haible  <bruno@clisp.org>\n\n\t* ro.po: New file, from Eugen Hoanca <eugenh@urban-grafx.ro>.\n\t* LINGUAS: Add it.\n\n2003-04-05  Bruno Haible  <bruno@clisp.org>\n\n\t* Makefile.msvc.sh (PREFIX): New variable.\n\t(prefix): Use it.\n\t(clean): Drop Unix specific removal.\n\n2003-04-09  Bruno Haible  <bruno@clisp.org>\n\n\t* Makevars (MSGID_BUGS_ADDRESS): New variable.\n\n2003-04-09  gettextize  <bug-gnu-gettext@gnu.org>\n\n\t* Makefile.in.in: Upgrade to gettext-0.12-pre3.\n\n2003-03-17  Bruno Haible  <bruno@clisp.org>\n\n\tImproved MSVC support.\n\t* Makefile.msvc.sh: New file.\n\t* Rules-msvc: New file.\n\n2003-02-10  Bruno Haible  <bruno@clisp.org>\n\n\t* uk.po: New file, from Volodymyr M. Lisivka <lvm@mystery.lviv.net>.\n\t* LINGUAS: Add it.\n\n2002-12-05  Bruno Haible  <bruno@clisp.org>\n\n\t* it.po: New file, from Marco Parrone <marc0@autistici.org>.\n\t* LINGUAS: Add it.\n\n2002-11-12  Bruno Haible  <bruno@clisp.org>\n\n\t* da.po: New file, from Keld Simonsen <keld@dkuug.dk>.\n\t* LINGUAS: Add da.\n\n2002-10-29  Bruno Haible  <bruno@clisp.org>\n\n\t* id.po: New file, from Tedi Heriyanto <tedi_h@gmx.net>.\n\t* LINGUAS: Add id.\n\n2002-08-23  Bruno Haible  <bruno@clisp.org>\n\n\t* fi.po: New file, from Matti Koskimies <matti@apulanta.fi>.\n\t* fr.po: New file, from Michel Robitaille <robitail@iro.umontreal.ca>.\n\t* pt_BR.po: Update from\n\tAlexandre Folle de Menezes <afmenez@terra.com.br>.\n\t* ru.po: New file, from Dmitry S. Sivachenko <mitya@cavia.pp.ru>.\n\t* sl.po: New file, from\n\tPrimož Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>.\n\t* tr.po: New file, from Deniz Akkus Kanca <deniz@arayan.com>.\n\t* LINGUAS: Add fi, fr, ru, sl, tr.\n\n2002-06-20  Bruno Haible  <bruno@clisp.org>\n\n\t* es.po: New file, from Santiago Vila Doncel <sanvila@unex.es>.\n\t* LINGUAS: Add es.\n\n2002-06-14  Bruno Haible  <bruno@clisp.org>\n\n\t* hr.po: New file, from Denis Lackovic <delacko@fly.srk.fer.hr>.\n\t* LINGUAS: Add hr.\n\n2002-06-14  Bruno Haible  <bruno@clisp.org>\n\n\t* pt_BR.po: Update from\n\tAlexandre Folle de Menezes <afmenez@terra.com.br>.\n\n2002-06-11  Bruno Haible  <bruno@clisp.org>\n\n\t* sv.po: New file, from Christian Rose <menthos@menthos.com>.\n\t* LINGUAS: Add sv.\n\n2002-06-05  Bruno Haible  <bruno@clisp.org>\n\n\t* pt_BR.po: New file, from\n\tAlexandre Folle de Menezes <afmenez@terra.com.br>.\n\t* LINGUAS: Add pt_BR.\n\n2002-06-03  Bruno Haible  <bruno@clisp.org>\n\n\t* gl.po: New file, from Jacobo Tarrio <jtarrio@trasno.net>.\n\t* LINGUAS: Add gl.\n\n2002-05-31  Bruno Haible  <bruno@clisp.org>\n\n\t* ca.po: New file, from Ivan Vilata i Balaguer <ivan@selidor.net>.\n\t* eo.po: New file, from Edmund Grimley Evans <edmundo@rano.org>.\n\t* hu.po: New file, from Emese Kovacs <emese@gnome.hu>.\n\t* sk.po: New file, from Marcel Telka <marcel@telka.sk>.\n\t* LINGUAS: Add ca, eo, hu, sk.\n\n2002-04-27  gettextize  <bug-gnu-gettext@gnu.org>\n\n\t* Makefile.in.in: New file, from gettext-0.11.1.\n\t* Rules-quot: New file, from gettext-0.11.1.\n\t* boldquot.sed: New file, from gettext-0.11.1.\n\t* en@boldquot.header: New file, from gettext-0.11.1.\n\t* en@quot.header: New file, from gettext-0.11.1.\n\t* insert-header.sin: New file, from gettext-0.11.1.\n\t* quot.sed: New file, from gettext-0.11.1.\n\t* remove-potcdate.sin: New file, from gettext-0.11.1.\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/LINGUAS",
    "content": "# Set of available languages.\naf bg ca cs da de el eo es et fi fr ga gl hr hu id it ja nl pl pt_BR rm ro ru sk sl sq sr sv tr uk vi wa zh_CN zh_TW\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/Makefile",
    "content": "# Makefile for PO directory in any package using GNU gettext.\n# Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper <drepper@gnu.ai.mit.edu>\n#\n# Copying and distribution of this file, with or without modification,\n# are permitted in any medium without royalty provided the copyright\n# notice and this notice are preserved.  This file is offered as-is,\n# without any warranty.\n#\n# Origin: gettext-0.19.8\nGETTEXT_MACRO_VERSION = 0.19\n\nPACKAGE = libiconv\nVERSION = 1.15\nPACKAGE_BUGREPORT = \n\nSED = /usr/bin/sed\nSHELL = /bin/sh\n\n\nsrcdir = .\ntop_srcdir = ..\n\n\nprefix = /usr/local\nexec_prefix = ${prefix}\ndatarootdir = ${prefix}/share\ndatadir = ${datarootdir}\nlocaledir = ${datarootdir}/locale\ngettextsrcdir = $(datadir)/gettext/po\n\nINSTALL = /usr/bin/install -c\nINSTALL_DATA = ${INSTALL} -m 644\n\n# We use $(mkdir_p).\n# In automake <= 1.9.x, $(mkdir_p) is defined either as \"mkdir -p --\" or as\n# \"$(mkinstalldirs)\" or as \"$(install_sh) -d\". For these automake versions,\n# ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/install-sh does not start with $(SHELL), so we add it.\n# In automake >= 1.10, $(MKDIR_P) is derived from ${MKDIR_P}, which is defined\n# either as \"/path/to/mkdir -p\" or \".../install-sh -c -d\". For these automake\n# versions, $(mkinstalldirs) and $(install_sh) are unused.\nmkinstalldirs = $(SHELL) ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/install-sh -d\ninstall_sh = $(SHELL) ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/install-sh\nMKDIR_P = ../build-aux/install-sh -c -d\nmkdir_p = $(MKDIR_P)\n\n# When building gettext-tools, we prefer to use the built programs\n# rather than installed programs.  However, we can't do that when we\n# are cross compiling.\nCROSS_COMPILING = @CROSS_COMPILING@\n\nGMSGFMT_ = :\nGMSGFMT_no = :\nGMSGFMT_yes = :\nGMSGFMT = $(GMSGFMT_$(USE_MSGCTXT))\nMSGFMT_ = :\nMSGFMT_no = :\nMSGFMT_yes = :\nMSGFMT = $(MSGFMT_$(USE_MSGCTXT))\nXGETTEXT_ = :\nXGETTEXT_no = :\nXGETTEXT_yes = :\nXGETTEXT = $(XGETTEXT_$(USE_MSGCTXT))\nMSGMERGE = msgmerge\nMSGMERGE_UPDATE = : --update\nMSGINIT = msginit\nMSGCONV = msgconv\nMSGFILTER = msgfilter\n\nPOFILES =  af.po bg.po ca.po cs.po da.po de.po el.po eo.po es.po et.po fi.po fr.po ga.po gl.po hr.po hu.po id.po it.po ja.po nl.po pl.po pt_BR.po rm.po ro.po ru.po sk.po sl.po sq.po sr.po sv.po tr.po uk.po vi.po wa.po zh_CN.po zh_TW.po\nGMOFILES =  af.gmo bg.gmo ca.gmo cs.gmo da.gmo de.gmo el.gmo eo.gmo es.gmo et.gmo fi.gmo fr.gmo ga.gmo gl.gmo hr.gmo hu.gmo id.gmo it.gmo ja.gmo nl.gmo pl.gmo pt_BR.gmo rm.gmo ro.gmo ru.gmo sk.gmo sl.gmo sq.gmo sr.gmo sv.gmo tr.gmo uk.gmo vi.gmo wa.gmo zh_CN.gmo zh_TW.gmo\nUPDATEPOFILES =  af.po-update bg.po-update ca.po-update cs.po-update da.po-update de.po-update el.po-update eo.po-update es.po-update et.po-update fi.po-update fr.po-update ga.po-update gl.po-update hr.po-update hu.po-update id.po-update it.po-update ja.po-update nl.po-update pl.po-update pt_BR.po-update rm.po-update ro.po-update ru.po-update sk.po-update sl.po-update sq.po-update sr.po-update sv.po-update tr.po-update uk.po-update vi.po-update wa.po-update zh_CN.po-update zh_TW.po-update\nDUMMYPOFILES =  af.nop bg.nop ca.nop cs.nop da.nop de.nop el.nop eo.nop es.nop et.nop fi.nop fr.nop ga.nop gl.nop hr.nop hu.nop id.nop it.nop ja.nop nl.nop pl.nop pt_BR.nop rm.nop ro.nop ru.nop sk.nop sl.nop sq.nop sr.nop sv.nop tr.nop uk.nop vi.nop wa.nop zh_CN.nop zh_TW.nop\nDISTFILES.common = Makefile.in.in remove-potcdate.sin \\\n$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3)\nDISTFILES = $(DISTFILES.common) Makevars POTFILES.in \\\n$(POFILES) $(GMOFILES) \\\n$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3)\n\nPOTFILES = \\\n     ../src/iconv.c\n\nCATALOGS =  af.gmo bg.gmo ca.gmo cs.gmo da.gmo de.gmo el.gmo eo.gmo es.gmo et.gmo fi.gmo fr.gmo ga.gmo gl.gmo hr.gmo hu.gmo id.gmo it.gmo ja.gmo nl.gmo pl.gmo pt_BR.gmo rm.gmo ro.gmo ru.gmo sk.gmo sl.gmo sq.gmo sr.gmo sv.gmo tr.gmo uk.gmo vi.gmo wa.gmo zh_CN.gmo zh_TW.gmo\n\nPOFILESDEPS_ = $(srcdir)/$(DOMAIN).pot\nPOFILESDEPS_yes = $(POFILESDEPS_)\nPOFILESDEPS_no =\nPOFILESDEPS = $(POFILESDEPS_$(PO_DEPENDS_ON_POT))\n\nDISTFILESDEPS_ = update-po\nDISTFILESDEPS_yes = $(DISTFILESDEPS_)\nDISTFILESDEPS_no =\nDISTFILESDEPS = $(DISTFILESDEPS_$(DIST_DEPENDS_ON_UPDATE_PO))\n\n# Makevars gets inserted here. (Don't remove this line!)\n# Makefile variables for libiconv/po.\n\n# Usually the message domain is the same as the package name.\nDOMAIN = $(PACKAGE)\n\n# These two variables depend on the location of this directory.\nsubdir = po\ntop_builddir = ..\n\n# These options get passed to xgettext.\nXGETTEXT_OPTIONS = \\\n  --keyword=_ --flag=_:1:pass-c-format \\\n  --keyword=N_ --flag=N_:1:pass-c-format \\\n  --flag=error:3:c-format --flag=error_at_line:5:c-format\n\n# This is the copyright holder that gets inserted into the header of the\n# $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding\n# package.  (Note that the msgstr strings, extracted from the package's\n# sources, belong to the copyright holder of the package.)  Translators are\n# expected to transfer the copyright for their translations to this person\n# or entity, or to disclaim their copyright.  The empty string stands for\n# the public domain; in this case the translators are expected to disclaim\n# their copyright.\nCOPYRIGHT_HOLDER = Free Software Foundation, Inc.\n\n# This tells whether or not to prepend \"GNU \" prefix to the package\n# name that gets inserted into the header of the $(DOMAIN).pot file.\n# Possible values are \"yes\", \"no\", or empty.  If it is empty, try to\n# detect it automatically by scanning the files in $(top_srcdir) for\n# \"GNU packagename\" string.\nPACKAGE_GNU = yes\n\n# This is the email address or URL to which the translators shall report\n# bugs in the untranslated strings:\n# - Strings which are not entire sentences, see the maintainer guidelines\n#   in the GNU gettext documentation, section 'Preparing Strings'.\n# - Strings which use unclear terms or require additional context to be\n#   understood.\n# - Strings which make invalid assumptions about notation of date, time or\n#   money.\n# - Pluralisation problems.\n# - Incorrect English spelling.\n# - Incorrect formatting.\n# It can be your email address, or a mailing list address where translators\n# can write to without being subscribed, or the URL of a web page through\n# which the translators can contact you.\nMSGID_BUGS_ADDRESS = bug-gnu-libiconv@gnu.org\n\n# This is the list of locale categories, beyond LC_MESSAGES, for which the\n# message catalogs shall be used.  It is usually empty.\nEXTRA_LOCALE_CATEGORIES =\n\n# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'\n# context.  Possible values are \"yes\" and \"no\".  Set this to yes if the\n# package uses functions taking also a message context, like pgettext(), or\n# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.\nUSE_MSGCTXT = no\n\n# These options get passed to msgmerge.\n# Useful options are in particular:\n#   --previous            to keep previous msgids of translated messages,\n#   --quiet               to reduce the verbosity.\nMSGMERGE_OPTIONS =\n\n# These options get passed to msginit.\n# If you want to disable line wrapping when writing PO files, add\n# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and\n# MSGINIT_OPTIONS.\nMSGINIT_OPTIONS =\n\n# This tells whether or not to regenerate a PO file when $(DOMAIN).pot\n# has changed.  Possible values are \"yes\" and \"no\".  Set this to no if\n# the POT file is checked in the repository and the version control\n# program ignores timestamps.\nPO_DEPENDS_ON_POT = yes\n\n# This tells whether or not to forcibly update $(DOMAIN).pot and\n# regenerate PO files on \"make dist\".  Possible values are \"yes\" and\n# \"no\".  Set this to no if the POT file and PO files are maintained\n# externally.\nDIST_DEPENDS_ON_UPDATE_PO = yes\n\n.SUFFIXES:\n.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update\n\n.po.mo:\n\t@echo \"$(MSGFMT) -c -o $@ $<\"; \\\n\t$(MSGFMT) -c -o t-$@ $< && mv t-$@ $@\n\n.po.gmo:\n\t@lang=`echo $* | sed -e 's,.*/,,'`; \\\n\ttest \"$(srcdir)\" = . && cdcmd=\"\" || cdcmd=\"cd $(srcdir) && \"; \\\n\techo \"$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.po\"; \\\n\tcd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo\n\n.sin.sed:\n\tsed -e '/^#/d' $< > t-$@\n\tmv t-$@ $@\n\n\nall: all-no\n\nall-yes: stamp-po\nall-no:\n\n# Ensure that the gettext macros and this Makefile.in.in are in sync.\nCHECK_MACRO_VERSION = \\\n\ttest \"$(GETTEXT_MACRO_VERSION)\" = \"0.19\" \\\n\t  || { echo \"*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version 0.19\" 1>&2; \\\n\t       exit 1; \\\n\t     }\n\n# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no\n# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because\n# we don't want to bother translators with empty POT files). We assume that\n# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty.\n# In this case, stamp-po is a nop (i.e. a phony target).\n\n# stamp-po is a timestamp denoting the last time at which the CATALOGS have\n# been loosely updated. Its purpose is that when a developer or translator\n# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS,\n# \"make\" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent\n# invocations of \"make\" will do nothing. This timestamp would not be necessary\n# if updating the $(CATALOGS) would always touch them; however, the rule for\n# $(POFILES) has been designed to not touch files that don't need to be\n# changed.\nstamp-po: $(srcdir)/$(DOMAIN).pot\n\t@$(CHECK_MACRO_VERSION)\n\ttest ! -f $(srcdir)/$(DOMAIN).pot || \\\n\t  test -z \"$(GMOFILES)\" || $(MAKE) $(GMOFILES)\n\t@test ! -f $(srcdir)/$(DOMAIN).pot || { \\\n\t  echo \"touch stamp-po\" && \\\n\t  echo timestamp > stamp-poT && \\\n\t  mv stamp-poT stamp-po; \\\n\t}\n\n# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update',\n# otherwise packages like GCC can not be built if only parts of the source\n# have been downloaded.\n\n# This target rebuilds $(DOMAIN).pot; it is an expensive operation.\n# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed.\n# The determination of whether the package xyz is a GNU one is based on the\n# heuristic whether some file in the top level directory mentions \"GNU xyz\".\n# If GNU 'find' is available, we avoid grepping through monster files.\n$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed\n\tpackage_gnu=\"$(PACKAGE_GNU)\"; \\\n\ttest -n \"$$package_gnu\" || { \\\n\t  if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \\\n\t\t LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f \\\n\t\t\t       -size -10000000c -exec grep 'GNU libiconv' \\\n\t\t\t       /dev/null '{}' ';' 2>/dev/null; \\\n\t       else \\\n\t\t LC_ALL=C grep 'GNU libiconv' $(top_srcdir)/* 2>/dev/null; \\\n\t       fi; \\\n\t     } | grep -v 'libtool:' >/dev/null; then \\\n\t     package_gnu=yes; \\\n\t   else \\\n\t     package_gnu=no; \\\n\t   fi; \\\n\t}; \\\n\tif test \"$$package_gnu\" = \"yes\"; then \\\n\t  package_prefix='GNU '; \\\n\telse \\\n\t  package_prefix=''; \\\n\tfi; \\\n\tif test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \\\n\t  msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \\\n\telse \\\n\t  msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \\\n\tfi; \\\n\tcase `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \\\n\t  '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \\\n\t    $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \\\n\t      --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS)  --flag=error:3:c-format --flag=error_at_line:5:c-format \\\n\t      --files-from=$(srcdir)/POTFILES.in \\\n\t      --copyright-holder='$(COPYRIGHT_HOLDER)' \\\n\t      --msgid-bugs-address=\"$$msgid_bugs_address\" \\\n\t    ;; \\\n\t  *) \\\n\t    $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \\\n\t      --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS)  --flag=error:3:c-format --flag=error_at_line:5:c-format \\\n\t      --files-from=$(srcdir)/POTFILES.in \\\n\t      --copyright-holder='$(COPYRIGHT_HOLDER)' \\\n\t      --package-name=\"$${package_prefix}libiconv\" \\\n\t      --package-version='1.15' \\\n\t      --msgid-bugs-address=\"$$msgid_bugs_address\" \\\n\t    ;; \\\n\tesac\n\ttest ! -f $(DOMAIN).po || { \\\n\t  if test -f $(srcdir)/$(DOMAIN).pot-header; then \\\n\t    sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \\\n\t    cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po; \\\n\t    rm -f $(DOMAIN).1po; \\\n\t  fi; \\\n\t  if test -f $(srcdir)/$(DOMAIN).pot; then \\\n\t    sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \\\n\t    sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \\\n\t    if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \\\n\t      rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \\\n\t    else \\\n\t      rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \\\n\t      mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \\\n\t    fi; \\\n\t  else \\\n\t    mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \\\n\t  fi; \\\n\t}\n\n# This rule has no dependencies: we don't need to update $(DOMAIN).pot at\n# every \"make\" invocation, only create it when it is missing.\n# Only \"make $(DOMAIN).pot-update\" or \"make dist\" will force an update.\n$(srcdir)/$(DOMAIN).pot:\n\t$(MAKE) $(DOMAIN).pot-update\n\n# This target rebuilds a PO file if $(DOMAIN).pot has changed.\n# Note that a PO file is not touched if it doesn't need to be changed.\n$(POFILES): $(POFILESDEPS)\n\t@lang=`echo $@ | sed -e 's,.*/,,' -e 's/\\.po$$//'`; \\\n\tif test -f \"$(srcdir)/$${lang}.po\"; then \\\n\t  test -f $(srcdir)/$(DOMAIN).pot || $(MAKE) $(srcdir)/$(DOMAIN).pot; \\\n\t  test \"$(srcdir)\" = . && cdcmd=\"\" || cdcmd=\"cd $(srcdir) && \"; \\\n\t  echo \"$${cdcmd}$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot\"; \\\n\t  cd $(srcdir) \\\n\t    && { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \\\n\t           '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \\\n\t             $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \\\n\t           *) \\\n\t             $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot;; \\\n\t         esac; \\\n\t       }; \\\n\telse \\\n\t  $(MAKE) $${lang}.po-create; \\\n\tfi\n\n\ninstall: install-exec install-data\ninstall-exec:\ninstall-data: install-data-no\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \\\n\t  for file in $(DISTFILES.common) Makevars.template; do \\\n\t    $(INSTALL_DATA) $(srcdir)/$$file \\\n\t\t\t    $(DESTDIR)$(gettextsrcdir)/$$file; \\\n\t  done; \\\n\t  for file in Makevars; do \\\n\t    rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \\\n\t  done; \\\n\telse \\\n\t  : ; \\\n\tfi\ninstall-data-no: all\ninstall-data-yes: all\n\t@catalogs='$(CATALOGS)'; \\\n\tfor cat in $$catalogs; do \\\n\t  cat=`basename $$cat`; \\\n\t  lang=`echo $$cat | sed -e 's/\\.gmo$$//'`; \\\n\t  dir=$(localedir)/$$lang/LC_MESSAGES; \\\n\t  $(mkdir_p) $(DESTDIR)$$dir; \\\n\t  if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \\\n\t  $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \\\n\t  echo \"installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo\"; \\\n\t  for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \\\n\t    if test -n \"$$lc\"; then \\\n\t      if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \\\n\t        link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \\\n\t        mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t        mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \\\n\t         for file in *; do \\\n\t           if test -f $$file; then \\\n\t             ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \\\n\t           fi; \\\n\t         done); \\\n\t        rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t      else \\\n\t        if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \\\n\t          :; \\\n\t        else \\\n\t          rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t          mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        fi; \\\n\t      fi; \\\n\t      rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \\\n\t      ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \\\n\t      ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \\\n\t      cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \\\n\t      echo \"installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo\"; \\\n\t    fi; \\\n\t  done; \\\n\tdone\n\ninstall-strip: install\n\ninstalldirs: installdirs-exec installdirs-data\ninstalldirs-exec:\ninstalldirs-data: installdirs-data-no\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \\\n\telse \\\n\t  : ; \\\n\tfi\ninstalldirs-data-no:\ninstalldirs-data-yes:\n\t@catalogs='$(CATALOGS)'; \\\n\tfor cat in $$catalogs; do \\\n\t  cat=`basename $$cat`; \\\n\t  lang=`echo $$cat | sed -e 's/\\.gmo$$//'`; \\\n\t  dir=$(localedir)/$$lang/LC_MESSAGES; \\\n\t  $(mkdir_p) $(DESTDIR)$$dir; \\\n\t  for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \\\n\t    if test -n \"$$lc\"; then \\\n\t      if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \\\n\t        link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \\\n\t        mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t        mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \\\n\t         for file in *; do \\\n\t           if test -f $$file; then \\\n\t             ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \\\n\t           fi; \\\n\t         done); \\\n\t        rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t      else \\\n\t        if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \\\n\t          :; \\\n\t        else \\\n\t          rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t          mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        fi; \\\n\t      fi; \\\n\t    fi; \\\n\t  done; \\\n\tdone\n\n# Define this as empty until I found a useful application.\ninstallcheck:\n\nuninstall: uninstall-exec uninstall-data\nuninstall-exec:\nuninstall-data: uninstall-data-no\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  for file in $(DISTFILES.common) Makevars.template; do \\\n\t    rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \\\n\t  done; \\\n\telse \\\n\t  : ; \\\n\tfi\nuninstall-data-no:\nuninstall-data-yes:\n\tcatalogs='$(CATALOGS)'; \\\n\tfor cat in $$catalogs; do \\\n\t  cat=`basename $$cat`; \\\n\t  lang=`echo $$cat | sed -e 's/\\.gmo$$//'`; \\\n\t  for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \\\n\t    rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \\\n\t  done; \\\n\tdone\n\ncheck: all\n\ninfo dvi ps pdf html tags TAGS ctags CTAGS ID:\n\nmostlyclean:\n\trm -f remove-potcdate.sed\n\trm -f stamp-poT\n\trm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po\n\trm -fr *.o\n\nclean: mostlyclean\n\ndistclean: clean\n\trm -f Makefile Makefile.in POTFILES *.mo\n\nmaintainer-clean: distclean\n\t@echo \"This command is intended for maintainers to use;\"\n\t@echo \"it deletes files that may require special tools to rebuild.\"\n\trm -f stamp-po $(GMOFILES)\n\ndistdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)\ndist distdir:\n\ttest -z \"$(DISTFILESDEPS)\" || $(MAKE) $(DISTFILESDEPS)\n\t@$(MAKE) dist2\n# This is a separate target because 'update-po' must be executed before.\ndist2: stamp-po $(DISTFILES)\n\tdists=\"$(DISTFILES)\"; \\\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  dists=\"$$dists Makevars.template\"; \\\n\tfi; \\\n\tif test -f $(srcdir)/$(DOMAIN).pot; then \\\n\t  dists=\"$$dists $(DOMAIN).pot stamp-po\"; \\\n\tfi; \\\n\tif test -f $(srcdir)/ChangeLog; then \\\n\t  dists=\"$$dists ChangeLog\"; \\\n\tfi; \\\n\tfor i in 0 1 2 3 4 5 6 7 8 9; do \\\n\t  if test -f $(srcdir)/ChangeLog.$$i; then \\\n\t    dists=\"$$dists ChangeLog.$$i\"; \\\n\t  fi; \\\n\tdone; \\\n\tif test -f $(srcdir)/LINGUAS; then dists=\"$$dists LINGUAS\"; fi; \\\n\tfor file in $$dists; do \\\n\t  if test -f $$file; then \\\n\t    cp -p $$file $(distdir) || exit 1; \\\n\t  else \\\n\t    cp -p $(srcdir)/$$file $(distdir) || exit 1; \\\n\t  fi; \\\n\tdone\n\nupdate-po: Makefile\n\t$(MAKE) $(DOMAIN).pot-update\n\ttest -z \"$(UPDATEPOFILES)\" || $(MAKE) $(UPDATEPOFILES)\n\t$(MAKE) update-gmo\n\n# General rule for creating PO files.\n\n.nop.po-create:\n\t@lang=`echo $@ | sed -e 's/\\.po-create$$//'`; \\\n\techo \"File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'.\" 1>&2; \\\n\texit 1\n\n# General rule for updating PO files.\n\n.nop.po-update:\n\t@lang=`echo $@ | sed -e 's/\\.po-update$$//'`; \\\n\tif test \"$(PACKAGE)\" = \"gettext-tools\" && test \"$(CROSS_COMPILING)\" != \"yes\"; then PATH=`pwd`/../src:$$PATH; fi; \\\n\ttmpdir=`pwd`; \\\n\techo \"$$lang:\"; \\\n\ttest \"$(srcdir)\" = . && cdcmd=\"\" || cdcmd=\"cd $(srcdir) && \"; \\\n\techo \"$${cdcmd}$(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang $$lang.po $(DOMAIN).pot -o $$lang.new.po\"; \\\n\tcd $(srcdir); \\\n\tif { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \\\n\t       '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \\\n\t         $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \\\n\t       *) \\\n\t         $(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \\\n\t     esac; \\\n\t   }; then \\\n\t  if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \\\n\t    rm -f $$tmpdir/$$lang.new.po; \\\n\t  else \\\n\t    if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \\\n\t      :; \\\n\t    else \\\n\t      echo \"msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po\" 1>&2; \\\n\t      exit 1; \\\n\t    fi; \\\n\t  fi; \\\n\telse \\\n\t  echo \"msgmerge for $$lang.po failed!\" 1>&2; \\\n\t  rm -f $$tmpdir/$$lang.new.po; \\\n\tfi\n\n$(DUMMYPOFILES):\n\nupdate-gmo: Makefile $(GMOFILES)\n\t@:\n\n# Recreate Makefile by invoking config.status. Explicitly invoke the shell,\n# because execution permission bits may not work on the current file system.\n# Use /bin/sh, which is the shell determined by autoconf for the use by its\n# scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient.\nMakefile: Makefile.in.in Makevars $(top_builddir)/config.status POTFILES.in LINGUAS\n\tcd $(top_builddir) \\\n\t  && /bin/sh ./config.status $(subdir)/$@.in po-directories\n\nforce:\n\n# Tell versions [3.59,3.63) of GNU make not to export all variables.\n# Otherwise a system limit (for SysV at least) may be exceeded.\n.NOEXPORT:\n# This file, Rules-quot, can be copied and used freely without restrictions.\n# Special Makefile rules for English message catalogs with quotation marks.\n\nDISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot\n\n.SUFFIXES: .insert-header .po-update-en\n\nen@quot.po-create:\n\t$(MAKE) en@quot.po-update\nen@boldquot.po-create:\n\t$(MAKE) en@boldquot.po-update\n\nen@quot.po-update: en@quot.po-update-en\nen@boldquot.po-update: en@boldquot.po-update-en\n\n.insert-header.po-update-en:\n\t@lang=`echo $@ | sed -e 's/\\.po-update-en$$//'`; \\\n\tif test \"$(PACKAGE)\" = \"gettext-tools\" && test \"$(CROSS_COMPILING)\" != \"yes\"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \\\n\ttmpdir=`pwd`; \\\n\techo \"$$lang:\"; \\\n\tll=`echo $$lang | sed -e 's/@.*//'`; \\\n\tLC_ALL=C; export LC_ALL; \\\n\tcd $(srcdir); \\\n\tif $(MSGINIT) $(MSGINIT_OPTIONS) -i $(DOMAIN).pot --no-translator -l $$lang -o - 2>/dev/null \\\n\t   | $(SED) -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | \\\n\t   { case `$(MSGFILTER) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \\\n\t     '' | 0.[0-9] | 0.[0-9].* | 0.1[0-8] | 0.1[0-8].*) \\\n\t       $(MSGFILTER) $(SED) -f `echo $$lang | sed -e 's/.*@//'`.sed \\\n\t       ;; \\\n\t     *) \\\n\t       $(MSGFILTER) `echo $$lang | sed -e 's/.*@//'` \\\n\t       ;; \\\n\t     esac } 2>/dev/null > $$tmpdir/$$lang.new.po \\\n\t     ; then \\\n\t  if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \\\n\t    rm -f $$tmpdir/$$lang.new.po; \\\n\t  else \\\n\t    if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \\\n\t      :; \\\n\t    else \\\n\t      echo \"creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po\" 1>&2; \\\n\t      exit 1; \\\n\t    fi; \\\n\t  fi; \\\n\telse \\\n\t  echo \"creation of $$lang.po failed!\" 1>&2; \\\n\t  rm -f $$tmpdir/$$lang.new.po; \\\n\tfi\n\nen@quot.insert-header: insert-header.sin\n\tsed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header\n\nen@boldquot.insert-header: insert-header.sin\n\tsed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header\n\nmostlyclean: mostlyclean-quot\nmostlyclean-quot:\n\trm -f *.insert-header\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/Makefile.in",
    "content": "# Makefile for PO directory in any package using GNU gettext.\n# Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper <drepper@gnu.ai.mit.edu>\n#\n# Copying and distribution of this file, with or without modification,\n# are permitted in any medium without royalty provided the copyright\n# notice and this notice are preserved.  This file is offered as-is,\n# without any warranty.\n#\n# Origin: gettext-0.19.8\nGETTEXT_MACRO_VERSION = 0.19\n\nPACKAGE = libiconv\nVERSION = 1.15\nPACKAGE_BUGREPORT = \n\nSED = /usr/bin/sed\nSHELL = /bin/sh\n\n\nsrcdir = .\ntop_srcdir = ..\n\n\nprefix = /usr/local\nexec_prefix = ${prefix}\ndatarootdir = ${prefix}/share\ndatadir = ${datarootdir}\nlocaledir = ${datarootdir}/locale\ngettextsrcdir = $(datadir)/gettext/po\n\nINSTALL = /usr/bin/install -c\nINSTALL_DATA = ${INSTALL} -m 644\n\n# We use $(mkdir_p).\n# In automake <= 1.9.x, $(mkdir_p) is defined either as \"mkdir -p --\" or as\n# \"$(mkinstalldirs)\" or as \"$(install_sh) -d\". For these automake versions,\n# ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/install-sh does not start with $(SHELL), so we add it.\n# In automake >= 1.10, $(MKDIR_P) is derived from ${MKDIR_P}, which is defined\n# either as \"/path/to/mkdir -p\" or \".../install-sh -c -d\". For these automake\n# versions, $(mkinstalldirs) and $(install_sh) are unused.\nmkinstalldirs = $(SHELL) ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/install-sh -d\ninstall_sh = $(SHELL) ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/install-sh\nMKDIR_P = ../build-aux/install-sh -c -d\nmkdir_p = $(MKDIR_P)\n\n# When building gettext-tools, we prefer to use the built programs\n# rather than installed programs.  However, we can't do that when we\n# are cross compiling.\nCROSS_COMPILING = @CROSS_COMPILING@\n\nGMSGFMT_ = :\nGMSGFMT_no = :\nGMSGFMT_yes = :\nGMSGFMT = $(GMSGFMT_$(USE_MSGCTXT))\nMSGFMT_ = :\nMSGFMT_no = :\nMSGFMT_yes = :\nMSGFMT = $(MSGFMT_$(USE_MSGCTXT))\nXGETTEXT_ = :\nXGETTEXT_no = :\nXGETTEXT_yes = :\nXGETTEXT = $(XGETTEXT_$(USE_MSGCTXT))\nMSGMERGE = msgmerge\nMSGMERGE_UPDATE = : --update\nMSGINIT = msginit\nMSGCONV = msgconv\nMSGFILTER = msgfilter\n\nPOFILES = @POFILES@\nGMOFILES = @GMOFILES@\nUPDATEPOFILES = @UPDATEPOFILES@\nDUMMYPOFILES = @DUMMYPOFILES@\nDISTFILES.common = Makefile.in.in remove-potcdate.sin \\\n$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3)\nDISTFILES = $(DISTFILES.common) Makevars POTFILES.in \\\n$(POFILES) $(GMOFILES) \\\n$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3)\n\nPOTFILES = \\\n\nCATALOGS = @CATALOGS@\n\nPOFILESDEPS_ = $(srcdir)/$(DOMAIN).pot\nPOFILESDEPS_yes = $(POFILESDEPS_)\nPOFILESDEPS_no =\nPOFILESDEPS = $(POFILESDEPS_$(PO_DEPENDS_ON_POT))\n\nDISTFILESDEPS_ = update-po\nDISTFILESDEPS_yes = $(DISTFILESDEPS_)\nDISTFILESDEPS_no =\nDISTFILESDEPS = $(DISTFILESDEPS_$(DIST_DEPENDS_ON_UPDATE_PO))\n\n# Makevars gets inserted here. (Don't remove this line!)\n\n.SUFFIXES:\n.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update\n\n.po.mo:\n\t@echo \"$(MSGFMT) -c -o $@ $<\"; \\\n\t$(MSGFMT) -c -o t-$@ $< && mv t-$@ $@\n\n.po.gmo:\n\t@lang=`echo $* | sed -e 's,.*/,,'`; \\\n\ttest \"$(srcdir)\" = . && cdcmd=\"\" || cdcmd=\"cd $(srcdir) && \"; \\\n\techo \"$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.po\"; \\\n\tcd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo\n\n.sin.sed:\n\tsed -e '/^#/d' $< > t-$@\n\tmv t-$@ $@\n\n\nall: all-no\n\nall-yes: stamp-po\nall-no:\n\n# Ensure that the gettext macros and this Makefile.in.in are in sync.\nCHECK_MACRO_VERSION = \\\n\ttest \"$(GETTEXT_MACRO_VERSION)\" = \"0.19\" \\\n\t  || { echo \"*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version 0.19\" 1>&2; \\\n\t       exit 1; \\\n\t     }\n\n# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no\n# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because\n# we don't want to bother translators with empty POT files). We assume that\n# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty.\n# In this case, stamp-po is a nop (i.e. a phony target).\n\n# stamp-po is a timestamp denoting the last time at which the CATALOGS have\n# been loosely updated. Its purpose is that when a developer or translator\n# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS,\n# \"make\" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent\n# invocations of \"make\" will do nothing. This timestamp would not be necessary\n# if updating the $(CATALOGS) would always touch them; however, the rule for\n# $(POFILES) has been designed to not touch files that don't need to be\n# changed.\nstamp-po: $(srcdir)/$(DOMAIN).pot\n\t@$(CHECK_MACRO_VERSION)\n\ttest ! -f $(srcdir)/$(DOMAIN).pot || \\\n\t  test -z \"$(GMOFILES)\" || $(MAKE) $(GMOFILES)\n\t@test ! -f $(srcdir)/$(DOMAIN).pot || { \\\n\t  echo \"touch stamp-po\" && \\\n\t  echo timestamp > stamp-poT && \\\n\t  mv stamp-poT stamp-po; \\\n\t}\n\n# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update',\n# otherwise packages like GCC can not be built if only parts of the source\n# have been downloaded.\n\n# This target rebuilds $(DOMAIN).pot; it is an expensive operation.\n# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed.\n# The determination of whether the package xyz is a GNU one is based on the\n# heuristic whether some file in the top level directory mentions \"GNU xyz\".\n# If GNU 'find' is available, we avoid grepping through monster files.\n$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed\n\tpackage_gnu=\"$(PACKAGE_GNU)\"; \\\n\ttest -n \"$$package_gnu\" || { \\\n\t  if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \\\n\t\t LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f \\\n\t\t\t       -size -10000000c -exec grep 'GNU libiconv' \\\n\t\t\t       /dev/null '{}' ';' 2>/dev/null; \\\n\t       else \\\n\t\t LC_ALL=C grep 'GNU libiconv' $(top_srcdir)/* 2>/dev/null; \\\n\t       fi; \\\n\t     } | grep -v 'libtool:' >/dev/null; then \\\n\t     package_gnu=yes; \\\n\t   else \\\n\t     package_gnu=no; \\\n\t   fi; \\\n\t}; \\\n\tif test \"$$package_gnu\" = \"yes\"; then \\\n\t  package_prefix='GNU '; \\\n\telse \\\n\t  package_prefix=''; \\\n\tfi; \\\n\tif test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \\\n\t  msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \\\n\telse \\\n\t  msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \\\n\tfi; \\\n\tcase `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \\\n\t  '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \\\n\t    $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \\\n\t      --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS)  --flag=error:3:c-format --flag=error_at_line:5:c-format \\\n\t      --files-from=$(srcdir)/POTFILES.in \\\n\t      --copyright-holder='$(COPYRIGHT_HOLDER)' \\\n\t      --msgid-bugs-address=\"$$msgid_bugs_address\" \\\n\t    ;; \\\n\t  *) \\\n\t    $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \\\n\t      --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS)  --flag=error:3:c-format --flag=error_at_line:5:c-format \\\n\t      --files-from=$(srcdir)/POTFILES.in \\\n\t      --copyright-holder='$(COPYRIGHT_HOLDER)' \\\n\t      --package-name=\"$${package_prefix}libiconv\" \\\n\t      --package-version='1.15' \\\n\t      --msgid-bugs-address=\"$$msgid_bugs_address\" \\\n\t    ;; \\\n\tesac\n\ttest ! -f $(DOMAIN).po || { \\\n\t  if test -f $(srcdir)/$(DOMAIN).pot-header; then \\\n\t    sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \\\n\t    cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po; \\\n\t    rm -f $(DOMAIN).1po; \\\n\t  fi; \\\n\t  if test -f $(srcdir)/$(DOMAIN).pot; then \\\n\t    sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \\\n\t    sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \\\n\t    if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \\\n\t      rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \\\n\t    else \\\n\t      rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \\\n\t      mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \\\n\t    fi; \\\n\t  else \\\n\t    mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \\\n\t  fi; \\\n\t}\n\n# This rule has no dependencies: we don't need to update $(DOMAIN).pot at\n# every \"make\" invocation, only create it when it is missing.\n# Only \"make $(DOMAIN).pot-update\" or \"make dist\" will force an update.\n$(srcdir)/$(DOMAIN).pot:\n\t$(MAKE) $(DOMAIN).pot-update\n\n# This target rebuilds a PO file if $(DOMAIN).pot has changed.\n# Note that a PO file is not touched if it doesn't need to be changed.\n$(POFILES): $(POFILESDEPS)\n\t@lang=`echo $@ | sed -e 's,.*/,,' -e 's/\\.po$$//'`; \\\n\tif test -f \"$(srcdir)/$${lang}.po\"; then \\\n\t  test -f $(srcdir)/$(DOMAIN).pot || $(MAKE) $(srcdir)/$(DOMAIN).pot; \\\n\t  test \"$(srcdir)\" = . && cdcmd=\"\" || cdcmd=\"cd $(srcdir) && \"; \\\n\t  echo \"$${cdcmd}$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot\"; \\\n\t  cd $(srcdir) \\\n\t    && { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \\\n\t           '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \\\n\t             $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \\\n\t           *) \\\n\t             $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot;; \\\n\t         esac; \\\n\t       }; \\\n\telse \\\n\t  $(MAKE) $${lang}.po-create; \\\n\tfi\n\n\ninstall: install-exec install-data\ninstall-exec:\ninstall-data: install-data-no\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \\\n\t  for file in $(DISTFILES.common) Makevars.template; do \\\n\t    $(INSTALL_DATA) $(srcdir)/$$file \\\n\t\t\t    $(DESTDIR)$(gettextsrcdir)/$$file; \\\n\t  done; \\\n\t  for file in Makevars; do \\\n\t    rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \\\n\t  done; \\\n\telse \\\n\t  : ; \\\n\tfi\ninstall-data-no: all\ninstall-data-yes: all\n\t@catalogs='$(CATALOGS)'; \\\n\tfor cat in $$catalogs; do \\\n\t  cat=`basename $$cat`; \\\n\t  lang=`echo $$cat | sed -e 's/\\.gmo$$//'`; \\\n\t  dir=$(localedir)/$$lang/LC_MESSAGES; \\\n\t  $(mkdir_p) $(DESTDIR)$$dir; \\\n\t  if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \\\n\t  $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \\\n\t  echo \"installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo\"; \\\n\t  for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \\\n\t    if test -n \"$$lc\"; then \\\n\t      if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \\\n\t        link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \\\n\t        mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t        mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \\\n\t         for file in *; do \\\n\t           if test -f $$file; then \\\n\t             ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \\\n\t           fi; \\\n\t         done); \\\n\t        rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t      else \\\n\t        if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \\\n\t          :; \\\n\t        else \\\n\t          rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t          mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        fi; \\\n\t      fi; \\\n\t      rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \\\n\t      ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \\\n\t      ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \\\n\t      cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \\\n\t      echo \"installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo\"; \\\n\t    fi; \\\n\t  done; \\\n\tdone\n\ninstall-strip: install\n\ninstalldirs: installdirs-exec installdirs-data\ninstalldirs-exec:\ninstalldirs-data: installdirs-data-no\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \\\n\telse \\\n\t  : ; \\\n\tfi\ninstalldirs-data-no:\ninstalldirs-data-yes:\n\t@catalogs='$(CATALOGS)'; \\\n\tfor cat in $$catalogs; do \\\n\t  cat=`basename $$cat`; \\\n\t  lang=`echo $$cat | sed -e 's/\\.gmo$$//'`; \\\n\t  dir=$(localedir)/$$lang/LC_MESSAGES; \\\n\t  $(mkdir_p) $(DESTDIR)$$dir; \\\n\t  for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \\\n\t    if test -n \"$$lc\"; then \\\n\t      if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \\\n\t        link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \\\n\t        mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t        mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \\\n\t         for file in *; do \\\n\t           if test -f $$file; then \\\n\t             ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \\\n\t           fi; \\\n\t         done); \\\n\t        rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t      else \\\n\t        if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \\\n\t          :; \\\n\t        else \\\n\t          rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t          mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        fi; \\\n\t      fi; \\\n\t    fi; \\\n\t  done; \\\n\tdone\n\n# Define this as empty until I found a useful application.\ninstallcheck:\n\nuninstall: uninstall-exec uninstall-data\nuninstall-exec:\nuninstall-data: uninstall-data-no\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  for file in $(DISTFILES.common) Makevars.template; do \\\n\t    rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \\\n\t  done; \\\n\telse \\\n\t  : ; \\\n\tfi\nuninstall-data-no:\nuninstall-data-yes:\n\tcatalogs='$(CATALOGS)'; \\\n\tfor cat in $$catalogs; do \\\n\t  cat=`basename $$cat`; \\\n\t  lang=`echo $$cat | sed -e 's/\\.gmo$$//'`; \\\n\t  for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \\\n\t    rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \\\n\t  done; \\\n\tdone\n\ncheck: all\n\ninfo dvi ps pdf html tags TAGS ctags CTAGS ID:\n\nmostlyclean:\n\trm -f remove-potcdate.sed\n\trm -f stamp-poT\n\trm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po\n\trm -fr *.o\n\nclean: mostlyclean\n\ndistclean: clean\n\trm -f Makefile Makefile.in POTFILES *.mo\n\nmaintainer-clean: distclean\n\t@echo \"This command is intended for maintainers to use;\"\n\t@echo \"it deletes files that may require special tools to rebuild.\"\n\trm -f stamp-po $(GMOFILES)\n\ndistdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)\ndist distdir:\n\ttest -z \"$(DISTFILESDEPS)\" || $(MAKE) $(DISTFILESDEPS)\n\t@$(MAKE) dist2\n# This is a separate target because 'update-po' must be executed before.\ndist2: stamp-po $(DISTFILES)\n\tdists=\"$(DISTFILES)\"; \\\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  dists=\"$$dists Makevars.template\"; \\\n\tfi; \\\n\tif test -f $(srcdir)/$(DOMAIN).pot; then \\\n\t  dists=\"$$dists $(DOMAIN).pot stamp-po\"; \\\n\tfi; \\\n\tif test -f $(srcdir)/ChangeLog; then \\\n\t  dists=\"$$dists ChangeLog\"; \\\n\tfi; \\\n\tfor i in 0 1 2 3 4 5 6 7 8 9; do \\\n\t  if test -f $(srcdir)/ChangeLog.$$i; then \\\n\t    dists=\"$$dists ChangeLog.$$i\"; \\\n\t  fi; \\\n\tdone; \\\n\tif test -f $(srcdir)/LINGUAS; then dists=\"$$dists LINGUAS\"; fi; \\\n\tfor file in $$dists; do \\\n\t  if test -f $$file; then \\\n\t    cp -p $$file $(distdir) || exit 1; \\\n\t  else \\\n\t    cp -p $(srcdir)/$$file $(distdir) || exit 1; \\\n\t  fi; \\\n\tdone\n\nupdate-po: Makefile\n\t$(MAKE) $(DOMAIN).pot-update\n\ttest -z \"$(UPDATEPOFILES)\" || $(MAKE) $(UPDATEPOFILES)\n\t$(MAKE) update-gmo\n\n# General rule for creating PO files.\n\n.nop.po-create:\n\t@lang=`echo $@ | sed -e 's/\\.po-create$$//'`; \\\n\techo \"File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'.\" 1>&2; \\\n\texit 1\n\n# General rule for updating PO files.\n\n.nop.po-update:\n\t@lang=`echo $@ | sed -e 's/\\.po-update$$//'`; \\\n\tif test \"$(PACKAGE)\" = \"gettext-tools\" && test \"$(CROSS_COMPILING)\" != \"yes\"; then PATH=`pwd`/../src:$$PATH; fi; \\\n\ttmpdir=`pwd`; \\\n\techo \"$$lang:\"; \\\n\ttest \"$(srcdir)\" = . && cdcmd=\"\" || cdcmd=\"cd $(srcdir) && \"; \\\n\techo \"$${cdcmd}$(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang $$lang.po $(DOMAIN).pot -o $$lang.new.po\"; \\\n\tcd $(srcdir); \\\n\tif { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \\\n\t       '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \\\n\t         $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \\\n\t       *) \\\n\t         $(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \\\n\t     esac; \\\n\t   }; then \\\n\t  if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \\\n\t    rm -f $$tmpdir/$$lang.new.po; \\\n\t  else \\\n\t    if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \\\n\t      :; \\\n\t    else \\\n\t      echo \"msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po\" 1>&2; \\\n\t      exit 1; \\\n\t    fi; \\\n\t  fi; \\\n\telse \\\n\t  echo \"msgmerge for $$lang.po failed!\" 1>&2; \\\n\t  rm -f $$tmpdir/$$lang.new.po; \\\n\tfi\n\n$(DUMMYPOFILES):\n\nupdate-gmo: Makefile $(GMOFILES)\n\t@:\n\n# Recreate Makefile by invoking config.status. Explicitly invoke the shell,\n# because execution permission bits may not work on the current file system.\n# Use /bin/sh, which is the shell determined by autoconf for the use by its\n# scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient.\nMakefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@\n\tcd $(top_builddir) \\\n\t  && /bin/sh ./config.status $(subdir)/$@.in po-directories\n\nforce:\n\n# Tell versions [3.59,3.63) of GNU make not to export all variables.\n# Otherwise a system limit (for SysV at least) may be exceeded.\n.NOEXPORT:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/Makefile.in.in",
    "content": "# Makefile for PO directory in any package using GNU gettext.\n# Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper <drepper@gnu.ai.mit.edu>\n#\n# Copying and distribution of this file, with or without modification,\n# are permitted in any medium without royalty provided the copyright\n# notice and this notice are preserved.  This file is offered as-is,\n# without any warranty.\n#\n# Origin: gettext-0.19.8\nGETTEXT_MACRO_VERSION = 0.19\n\nPACKAGE = @PACKAGE@\nVERSION = @VERSION@\nPACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@\n\nSED = @SED@\nSHELL = /bin/sh\n@SET_MAKE@\n\nsrcdir = @srcdir@\ntop_srcdir = @top_srcdir@\nVPATH = @srcdir@\n\nprefix = @prefix@\nexec_prefix = @exec_prefix@\ndatarootdir = @datarootdir@\ndatadir = @datadir@\nlocaledir = @localedir@\ngettextsrcdir = $(datadir)/gettext/po\n\nINSTALL = @INSTALL@\nINSTALL_DATA = @INSTALL_DATA@\n\n# We use $(mkdir_p).\n# In automake <= 1.9.x, $(mkdir_p) is defined either as \"mkdir -p --\" or as\n# \"$(mkinstalldirs)\" or as \"$(install_sh) -d\". For these automake versions,\n# @install_sh@ does not start with $(SHELL), so we add it.\n# In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined\n# either as \"/path/to/mkdir -p\" or \".../install-sh -c -d\". For these automake\n# versions, $(mkinstalldirs) and $(install_sh) are unused.\nmkinstalldirs = $(SHELL) @install_sh@ -d\ninstall_sh = $(SHELL) @install_sh@\nMKDIR_P = @MKDIR_P@\nmkdir_p = @mkdir_p@\n\n# When building gettext-tools, we prefer to use the built programs\n# rather than installed programs.  However, we can't do that when we\n# are cross compiling.\nCROSS_COMPILING = @CROSS_COMPILING@\n\nGMSGFMT_ = @GMSGFMT@\nGMSGFMT_no = @GMSGFMT@\nGMSGFMT_yes = @GMSGFMT_015@\nGMSGFMT = $(GMSGFMT_$(USE_MSGCTXT))\nMSGFMT_ = @MSGFMT@\nMSGFMT_no = @MSGFMT@\nMSGFMT_yes = @MSGFMT_015@\nMSGFMT = $(MSGFMT_$(USE_MSGCTXT))\nXGETTEXT_ = @XGETTEXT@\nXGETTEXT_no = @XGETTEXT@\nXGETTEXT_yes = @XGETTEXT_015@\nXGETTEXT = $(XGETTEXT_$(USE_MSGCTXT))\nMSGMERGE = msgmerge\nMSGMERGE_UPDATE = @MSGMERGE@ --update\nMSGINIT = msginit\nMSGCONV = msgconv\nMSGFILTER = msgfilter\n\nPOFILES = @POFILES@\nGMOFILES = @GMOFILES@\nUPDATEPOFILES = @UPDATEPOFILES@\nDUMMYPOFILES = @DUMMYPOFILES@\nDISTFILES.common = Makefile.in.in remove-potcdate.sin \\\n$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3)\nDISTFILES = $(DISTFILES.common) Makevars POTFILES.in \\\n$(POFILES) $(GMOFILES) \\\n$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3)\n\nPOTFILES = \\\n\nCATALOGS = @CATALOGS@\n\nPOFILESDEPS_ = $(srcdir)/$(DOMAIN).pot\nPOFILESDEPS_yes = $(POFILESDEPS_)\nPOFILESDEPS_no =\nPOFILESDEPS = $(POFILESDEPS_$(PO_DEPENDS_ON_POT))\n\nDISTFILESDEPS_ = update-po\nDISTFILESDEPS_yes = $(DISTFILESDEPS_)\nDISTFILESDEPS_no =\nDISTFILESDEPS = $(DISTFILESDEPS_$(DIST_DEPENDS_ON_UPDATE_PO))\n\n# Makevars gets inserted here. (Don't remove this line!)\n\n.SUFFIXES:\n.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update\n\n.po.mo:\n\t@echo \"$(MSGFMT) -c -o $@ $<\"; \\\n\t$(MSGFMT) -c -o t-$@ $< && mv t-$@ $@\n\n.po.gmo:\n\t@lang=`echo $* | sed -e 's,.*/,,'`; \\\n\ttest \"$(srcdir)\" = . && cdcmd=\"\" || cdcmd=\"cd $(srcdir) && \"; \\\n\techo \"$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.po\"; \\\n\tcd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo\n\n.sin.sed:\n\tsed -e '/^#/d' $< > t-$@\n\tmv t-$@ $@\n\n\nall: all-@USE_NLS@\n\nall-yes: stamp-po\nall-no:\n\n# Ensure that the gettext macros and this Makefile.in.in are in sync.\nCHECK_MACRO_VERSION = \\\n\ttest \"$(GETTEXT_MACRO_VERSION)\" = \"@GETTEXT_MACRO_VERSION@\" \\\n\t  || { echo \"*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version @GETTEXT_MACRO_VERSION@\" 1>&2; \\\n\t       exit 1; \\\n\t     }\n\n# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no\n# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because\n# we don't want to bother translators with empty POT files). We assume that\n# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty.\n# In this case, stamp-po is a nop (i.e. a phony target).\n\n# stamp-po is a timestamp denoting the last time at which the CATALOGS have\n# been loosely updated. Its purpose is that when a developer or translator\n# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS,\n# \"make\" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent\n# invocations of \"make\" will do nothing. This timestamp would not be necessary\n# if updating the $(CATALOGS) would always touch them; however, the rule for\n# $(POFILES) has been designed to not touch files that don't need to be\n# changed.\nstamp-po: $(srcdir)/$(DOMAIN).pot\n\t@$(CHECK_MACRO_VERSION)\n\ttest ! -f $(srcdir)/$(DOMAIN).pot || \\\n\t  test -z \"$(GMOFILES)\" || $(MAKE) $(GMOFILES)\n\t@test ! -f $(srcdir)/$(DOMAIN).pot || { \\\n\t  echo \"touch stamp-po\" && \\\n\t  echo timestamp > stamp-poT && \\\n\t  mv stamp-poT stamp-po; \\\n\t}\n\n# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update',\n# otherwise packages like GCC can not be built if only parts of the source\n# have been downloaded.\n\n# This target rebuilds $(DOMAIN).pot; it is an expensive operation.\n# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed.\n# The determination of whether the package xyz is a GNU one is based on the\n# heuristic whether some file in the top level directory mentions \"GNU xyz\".\n# If GNU 'find' is available, we avoid grepping through monster files.\n$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed\n\tpackage_gnu=\"$(PACKAGE_GNU)\"; \\\n\ttest -n \"$$package_gnu\" || { \\\n\t  if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \\\n\t\t LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f \\\n\t\t\t       -size -10000000c -exec grep 'GNU @PACKAGE@' \\\n\t\t\t       /dev/null '{}' ';' 2>/dev/null; \\\n\t       else \\\n\t\t LC_ALL=C grep 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null; \\\n\t       fi; \\\n\t     } | grep -v 'libtool:' >/dev/null; then \\\n\t     package_gnu=yes; \\\n\t   else \\\n\t     package_gnu=no; \\\n\t   fi; \\\n\t}; \\\n\tif test \"$$package_gnu\" = \"yes\"; then \\\n\t  package_prefix='GNU '; \\\n\telse \\\n\t  package_prefix=''; \\\n\tfi; \\\n\tif test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \\\n\t  msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \\\n\telse \\\n\t  msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \\\n\tfi; \\\n\tcase `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \\\n\t  '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \\\n\t    $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \\\n\t      --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \\\n\t      --files-from=$(srcdir)/POTFILES.in \\\n\t      --copyright-holder='$(COPYRIGHT_HOLDER)' \\\n\t      --msgid-bugs-address=\"$$msgid_bugs_address\" \\\n\t    ;; \\\n\t  *) \\\n\t    $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \\\n\t      --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \\\n\t      --files-from=$(srcdir)/POTFILES.in \\\n\t      --copyright-holder='$(COPYRIGHT_HOLDER)' \\\n\t      --package-name=\"$${package_prefix}@PACKAGE@\" \\\n\t      --package-version='@VERSION@' \\\n\t      --msgid-bugs-address=\"$$msgid_bugs_address\" \\\n\t    ;; \\\n\tesac\n\ttest ! -f $(DOMAIN).po || { \\\n\t  if test -f $(srcdir)/$(DOMAIN).pot-header; then \\\n\t    sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \\\n\t    cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po; \\\n\t    rm -f $(DOMAIN).1po; \\\n\t  fi; \\\n\t  if test -f $(srcdir)/$(DOMAIN).pot; then \\\n\t    sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \\\n\t    sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \\\n\t    if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \\\n\t      rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \\\n\t    else \\\n\t      rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \\\n\t      mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \\\n\t    fi; \\\n\t  else \\\n\t    mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \\\n\t  fi; \\\n\t}\n\n# This rule has no dependencies: we don't need to update $(DOMAIN).pot at\n# every \"make\" invocation, only create it when it is missing.\n# Only \"make $(DOMAIN).pot-update\" or \"make dist\" will force an update.\n$(srcdir)/$(DOMAIN).pot:\n\t$(MAKE) $(DOMAIN).pot-update\n\n# This target rebuilds a PO file if $(DOMAIN).pot has changed.\n# Note that a PO file is not touched if it doesn't need to be changed.\n$(POFILES): $(POFILESDEPS)\n\t@lang=`echo $@ | sed -e 's,.*/,,' -e 's/\\.po$$//'`; \\\n\tif test -f \"$(srcdir)/$${lang}.po\"; then \\\n\t  test -f $(srcdir)/$(DOMAIN).pot || $(MAKE) $(srcdir)/$(DOMAIN).pot; \\\n\t  test \"$(srcdir)\" = . && cdcmd=\"\" || cdcmd=\"cd $(srcdir) && \"; \\\n\t  echo \"$${cdcmd}$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot\"; \\\n\t  cd $(srcdir) \\\n\t    && { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \\\n\t           '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \\\n\t             $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \\\n\t           *) \\\n\t             $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot;; \\\n\t         esac; \\\n\t       }; \\\n\telse \\\n\t  $(MAKE) $${lang}.po-create; \\\n\tfi\n\n\ninstall: install-exec install-data\ninstall-exec:\ninstall-data: install-data-@USE_NLS@\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \\\n\t  for file in $(DISTFILES.common) Makevars.template; do \\\n\t    $(INSTALL_DATA) $(srcdir)/$$file \\\n\t\t\t    $(DESTDIR)$(gettextsrcdir)/$$file; \\\n\t  done; \\\n\t  for file in Makevars; do \\\n\t    rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \\\n\t  done; \\\n\telse \\\n\t  : ; \\\n\tfi\ninstall-data-no: all\ninstall-data-yes: all\n\t@catalogs='$(CATALOGS)'; \\\n\tfor cat in $$catalogs; do \\\n\t  cat=`basename $$cat`; \\\n\t  lang=`echo $$cat | sed -e 's/\\.gmo$$//'`; \\\n\t  dir=$(localedir)/$$lang/LC_MESSAGES; \\\n\t  $(mkdir_p) $(DESTDIR)$$dir; \\\n\t  if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \\\n\t  $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \\\n\t  echo \"installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo\"; \\\n\t  for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \\\n\t    if test -n \"$$lc\"; then \\\n\t      if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \\\n\t        link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \\\n\t        mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t        mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \\\n\t         for file in *; do \\\n\t           if test -f $$file; then \\\n\t             ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \\\n\t           fi; \\\n\t         done); \\\n\t        rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t      else \\\n\t        if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \\\n\t          :; \\\n\t        else \\\n\t          rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t          mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        fi; \\\n\t      fi; \\\n\t      rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \\\n\t      ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \\\n\t      ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \\\n\t      cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \\\n\t      echo \"installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo\"; \\\n\t    fi; \\\n\t  done; \\\n\tdone\n\ninstall-strip: install\n\ninstalldirs: installdirs-exec installdirs-data\ninstalldirs-exec:\ninstalldirs-data: installdirs-data-@USE_NLS@\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \\\n\telse \\\n\t  : ; \\\n\tfi\ninstalldirs-data-no:\ninstalldirs-data-yes:\n\t@catalogs='$(CATALOGS)'; \\\n\tfor cat in $$catalogs; do \\\n\t  cat=`basename $$cat`; \\\n\t  lang=`echo $$cat | sed -e 's/\\.gmo$$//'`; \\\n\t  dir=$(localedir)/$$lang/LC_MESSAGES; \\\n\t  $(mkdir_p) $(DESTDIR)$$dir; \\\n\t  for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \\\n\t    if test -n \"$$lc\"; then \\\n\t      if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \\\n\t        link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \\\n\t        mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t        mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \\\n\t         for file in *; do \\\n\t           if test -f $$file; then \\\n\t             ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \\\n\t           fi; \\\n\t         done); \\\n\t        rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \\\n\t      else \\\n\t        if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \\\n\t          :; \\\n\t        else \\\n\t          rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t          mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \\\n\t        fi; \\\n\t      fi; \\\n\t    fi; \\\n\t  done; \\\n\tdone\n\n# Define this as empty until I found a useful application.\ninstallcheck:\n\nuninstall: uninstall-exec uninstall-data\nuninstall-exec:\nuninstall-data: uninstall-data-@USE_NLS@\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  for file in $(DISTFILES.common) Makevars.template; do \\\n\t    rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \\\n\t  done; \\\n\telse \\\n\t  : ; \\\n\tfi\nuninstall-data-no:\nuninstall-data-yes:\n\tcatalogs='$(CATALOGS)'; \\\n\tfor cat in $$catalogs; do \\\n\t  cat=`basename $$cat`; \\\n\t  lang=`echo $$cat | sed -e 's/\\.gmo$$//'`; \\\n\t  for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \\\n\t    rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \\\n\t  done; \\\n\tdone\n\ncheck: all\n\ninfo dvi ps pdf html tags TAGS ctags CTAGS ID:\n\nmostlyclean:\n\trm -f remove-potcdate.sed\n\trm -f stamp-poT\n\trm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po\n\trm -fr *.o\n\nclean: mostlyclean\n\ndistclean: clean\n\trm -f Makefile Makefile.in POTFILES *.mo\n\nmaintainer-clean: distclean\n\t@echo \"This command is intended for maintainers to use;\"\n\t@echo \"it deletes files that may require special tools to rebuild.\"\n\trm -f stamp-po $(GMOFILES)\n\ndistdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)\ndist distdir:\n\ttest -z \"$(DISTFILESDEPS)\" || $(MAKE) $(DISTFILESDEPS)\n\t@$(MAKE) dist2\n# This is a separate target because 'update-po' must be executed before.\ndist2: stamp-po $(DISTFILES)\n\tdists=\"$(DISTFILES)\"; \\\n\tif test \"$(PACKAGE)\" = \"gettext-tools\"; then \\\n\t  dists=\"$$dists Makevars.template\"; \\\n\tfi; \\\n\tif test -f $(srcdir)/$(DOMAIN).pot; then \\\n\t  dists=\"$$dists $(DOMAIN).pot stamp-po\"; \\\n\tfi; \\\n\tif test -f $(srcdir)/ChangeLog; then \\\n\t  dists=\"$$dists ChangeLog\"; \\\n\tfi; \\\n\tfor i in 0 1 2 3 4 5 6 7 8 9; do \\\n\t  if test -f $(srcdir)/ChangeLog.$$i; then \\\n\t    dists=\"$$dists ChangeLog.$$i\"; \\\n\t  fi; \\\n\tdone; \\\n\tif test -f $(srcdir)/LINGUAS; then dists=\"$$dists LINGUAS\"; fi; \\\n\tfor file in $$dists; do \\\n\t  if test -f $$file; then \\\n\t    cp -p $$file $(distdir) || exit 1; \\\n\t  else \\\n\t    cp -p $(srcdir)/$$file $(distdir) || exit 1; \\\n\t  fi; \\\n\tdone\n\nupdate-po: Makefile\n\t$(MAKE) $(DOMAIN).pot-update\n\ttest -z \"$(UPDATEPOFILES)\" || $(MAKE) $(UPDATEPOFILES)\n\t$(MAKE) update-gmo\n\n# General rule for creating PO files.\n\n.nop.po-create:\n\t@lang=`echo $@ | sed -e 's/\\.po-create$$//'`; \\\n\techo \"File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'.\" 1>&2; \\\n\texit 1\n\n# General rule for updating PO files.\n\n.nop.po-update:\n\t@lang=`echo $@ | sed -e 's/\\.po-update$$//'`; \\\n\tif test \"$(PACKAGE)\" = \"gettext-tools\" && test \"$(CROSS_COMPILING)\" != \"yes\"; then PATH=`pwd`/../src:$$PATH; fi; \\\n\ttmpdir=`pwd`; \\\n\techo \"$$lang:\"; \\\n\ttest \"$(srcdir)\" = . && cdcmd=\"\" || cdcmd=\"cd $(srcdir) && \"; \\\n\techo \"$${cdcmd}$(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang $$lang.po $(DOMAIN).pot -o $$lang.new.po\"; \\\n\tcd $(srcdir); \\\n\tif { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \\\n\t       '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \\\n\t         $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \\\n\t       *) \\\n\t         $(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \\\n\t     esac; \\\n\t   }; then \\\n\t  if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \\\n\t    rm -f $$tmpdir/$$lang.new.po; \\\n\t  else \\\n\t    if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \\\n\t      :; \\\n\t    else \\\n\t      echo \"msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po\" 1>&2; \\\n\t      exit 1; \\\n\t    fi; \\\n\t  fi; \\\n\telse \\\n\t  echo \"msgmerge for $$lang.po failed!\" 1>&2; \\\n\t  rm -f $$tmpdir/$$lang.new.po; \\\n\tfi\n\n$(DUMMYPOFILES):\n\nupdate-gmo: Makefile $(GMOFILES)\n\t@:\n\n# Recreate Makefile by invoking config.status. Explicitly invoke the shell,\n# because execution permission bits may not work on the current file system.\n# Use @SHELL@, which is the shell determined by autoconf for the use by its\n# scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient.\nMakefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@\n\tcd $(top_builddir) \\\n\t  && @SHELL@ ./config.status $(subdir)/$@.in po-directories\n\nforce:\n\n# Tell versions [3.59,3.63) of GNU make not to export all variables.\n# Otherwise a system limit (for SysV at least) may be exceeded.\n.NOEXPORT:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/Makevars",
    "content": "# Makefile variables for libiconv/po.\n\n# Usually the message domain is the same as the package name.\nDOMAIN = $(PACKAGE)\n\n# These two variables depend on the location of this directory.\nsubdir = po\ntop_builddir = ..\n\n# These options get passed to xgettext.\nXGETTEXT_OPTIONS = \\\n  --keyword=_ --flag=_:1:pass-c-format \\\n  --keyword=N_ --flag=N_:1:pass-c-format \\\n  --flag=error:3:c-format --flag=error_at_line:5:c-format\n\n# This is the copyright holder that gets inserted into the header of the\n# $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding\n# package.  (Note that the msgstr strings, extracted from the package's\n# sources, belong to the copyright holder of the package.)  Translators are\n# expected to transfer the copyright for their translations to this person\n# or entity, or to disclaim their copyright.  The empty string stands for\n# the public domain; in this case the translators are expected to disclaim\n# their copyright.\nCOPYRIGHT_HOLDER = Free Software Foundation, Inc.\n\n# This tells whether or not to prepend \"GNU \" prefix to the package\n# name that gets inserted into the header of the $(DOMAIN).pot file.\n# Possible values are \"yes\", \"no\", or empty.  If it is empty, try to\n# detect it automatically by scanning the files in $(top_srcdir) for\n# \"GNU packagename\" string.\nPACKAGE_GNU = yes\n\n# This is the email address or URL to which the translators shall report\n# bugs in the untranslated strings:\n# - Strings which are not entire sentences, see the maintainer guidelines\n#   in the GNU gettext documentation, section 'Preparing Strings'.\n# - Strings which use unclear terms or require additional context to be\n#   understood.\n# - Strings which make invalid assumptions about notation of date, time or\n#   money.\n# - Pluralisation problems.\n# - Incorrect English spelling.\n# - Incorrect formatting.\n# It can be your email address, or a mailing list address where translators\n# can write to without being subscribed, or the URL of a web page through\n# which the translators can contact you.\nMSGID_BUGS_ADDRESS = bug-gnu-libiconv@gnu.org\n\n# This is the list of locale categories, beyond LC_MESSAGES, for which the\n# message catalogs shall be used.  It is usually empty.\nEXTRA_LOCALE_CATEGORIES =\n\n# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'\n# context.  Possible values are \"yes\" and \"no\".  Set this to yes if the\n# package uses functions taking also a message context, like pgettext(), or\n# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.\nUSE_MSGCTXT = no\n\n# These options get passed to msgmerge.\n# Useful options are in particular:\n#   --previous            to keep previous msgids of translated messages,\n#   --quiet               to reduce the verbosity.\nMSGMERGE_OPTIONS =\n\n# These options get passed to msginit.\n# If you want to disable line wrapping when writing PO files, add\n# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and\n# MSGINIT_OPTIONS.\nMSGINIT_OPTIONS =\n\n# This tells whether or not to regenerate a PO file when $(DOMAIN).pot\n# has changed.  Possible values are \"yes\" and \"no\".  Set this to no if\n# the POT file is checked in the repository and the version control\n# program ignores timestamps.\nPO_DEPENDS_ON_POT = yes\n\n# This tells whether or not to forcibly update $(DOMAIN).pot and\n# regenerate PO files on \"make dist\".  Possible values are \"yes\" and\n# \"no\".  Set this to no if the POT file and PO files are maintained\n# externally.\nDIST_DEPENDS_ON_UPDATE_PO = yes\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/POTFILES",
    "content": "     ../src/iconv.c\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/POTFILES.in",
    "content": "# List of files which contain translatable strings.\n# Copyright (C) 2002 Free Software Foundation, Inc.\n\nsrc/iconv.c\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/Rules-quot",
    "content": "# This file, Rules-quot, can be copied and used freely without restrictions.\n# Special Makefile rules for English message catalogs with quotation marks.\n\nDISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot\n\n.SUFFIXES: .insert-header .po-update-en\n\nen@quot.po-create:\n\t$(MAKE) en@quot.po-update\nen@boldquot.po-create:\n\t$(MAKE) en@boldquot.po-update\n\nen@quot.po-update: en@quot.po-update-en\nen@boldquot.po-update: en@boldquot.po-update-en\n\n.insert-header.po-update-en:\n\t@lang=`echo $@ | sed -e 's/\\.po-update-en$$//'`; \\\n\tif test \"$(PACKAGE)\" = \"gettext-tools\" && test \"$(CROSS_COMPILING)\" != \"yes\"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \\\n\ttmpdir=`pwd`; \\\n\techo \"$$lang:\"; \\\n\tll=`echo $$lang | sed -e 's/@.*//'`; \\\n\tLC_ALL=C; export LC_ALL; \\\n\tcd $(srcdir); \\\n\tif $(MSGINIT) $(MSGINIT_OPTIONS) -i $(DOMAIN).pot --no-translator -l $$lang -o - 2>/dev/null \\\n\t   | $(SED) -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | \\\n\t   { case `$(MSGFILTER) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \\\n\t     '' | 0.[0-9] | 0.[0-9].* | 0.1[0-8] | 0.1[0-8].*) \\\n\t       $(MSGFILTER) $(SED) -f `echo $$lang | sed -e 's/.*@//'`.sed \\\n\t       ;; \\\n\t     *) \\\n\t       $(MSGFILTER) `echo $$lang | sed -e 's/.*@//'` \\\n\t       ;; \\\n\t     esac } 2>/dev/null > $$tmpdir/$$lang.new.po \\\n\t     ; then \\\n\t  if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \\\n\t    rm -f $$tmpdir/$$lang.new.po; \\\n\t  else \\\n\t    if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \\\n\t      :; \\\n\t    else \\\n\t      echo \"creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po\" 1>&2; \\\n\t      exit 1; \\\n\t    fi; \\\n\t  fi; \\\n\telse \\\n\t  echo \"creation of $$lang.po failed!\" 1>&2; \\\n\t  rm -f $$tmpdir/$$lang.new.po; \\\n\tfi\n\nen@quot.insert-header: insert-header.sin\n\tsed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header\n\nen@boldquot.insert-header: insert-header.sin\n\tsed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header\n\nmostlyclean: mostlyclean-quot\nmostlyclean-quot:\n\trm -f *.insert-header\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/af.po",
    "content": "# libiconv Afrikaans\n# Copyright (C) 2004 Free Software Foundation, Inc.\n# This file is distributed under the same license as the PACKAGE package.\n# Petri Jooste <rkwjpj@puknet.puk.ac.za>, 2004.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.9.1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2004-03-08 13:42+0200\\n\"\n\"Last-Translator: Petri Jooste <rkwjpj@puk.ac.za>\\n\"\n\"Language-Team: Afrikaans <i18n@af.org.za>\\n\"\n\"Language: af\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=iso-8859-1\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Gebruik so: iconv [-c] [-s] [-f vanaf-kode] [-t na-kode] [ler ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"of:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, fuzzy, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"of:    iconv -l\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Geskryf deur %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"iconv: %s: kan nie omskakeling doen nie\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"iconv: %s: onvolledige karakter of skuifreeks\\n\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, fuzzy, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"iconv: %s: T/A-fout\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, fuzzy, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"iconv: omskakeling van %s word nie ondersteun nie\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, fuzzy, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"iconv: omskakeling na %s word nie ondersteun nie\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, fuzzy, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"iconv: omskakeling van %s na %s word nie ondersteun nie\\n\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, fuzzy, c-format\nmsgid \"I/O error\"\nmsgstr \"iconv: T/A-fout\\n\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Gebruik so: iconv [--binary] [-c] [-s] [-f vanaf-kode] [-t na-kode] \"\n#~ \"[ler ...]\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Hierdie is gratis programmatuur; kyk in die bronkode vir \"\n#~ \"kopiervoorwaardes.  Daar is GEEN\\n\"\n#~ \"waarborg nie; selfs nie vir VERKOOPBAARHEID of GESKIKTHEID VIR 'N \"\n#~ \"SPESIFIEKE DOEL nie.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/bg.po",
    "content": "# Bulgarian translation of libiconv po-file.\n# Copyright (C) 2008, 2009 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Roumen Petrov <transl@roumenpetrov.info>, 2008, 2009, 2016.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-12 23:42+0200\\n\"\n\"Last-Translator: Roumen Petrov <transl@roumenpetrov.info>\\n\"\n\"Language-Team: Bulgarian <dict@ludost.net>\\n\"\n\"Language: bg\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"\"\n\"Употреба: iconv [-c] [-s] [-f от_кодиране] [-t към_кодиране] [файл ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"или:      iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"За повече сведения '%s --help'.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Употреба: %s [АРГУМЕНТИ...] [-f КОДИРАНЕ] [-t КОДИРАНЕ] [ВХОДЕН_ФАЙЛ...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"или:      %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Преобразува текст от едно кодиране към друго.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Аргументи задаващи входния и изходния формати:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f КОДИРАНЕ, --from-code=КОДИРАНЕ\\n\"\n\"                              кодиране на входните данни\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t КОДИРАНЕ, --to-code=КОДИРАНЕ\\n\"\n\"                              кодиране на изходните данни\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Аргументи управляващи проблеми при преобразуване:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          пренебрегване на непреобразуваеми знаци\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=ФОРМАТИРАЩ_НИЗ\\n\"\n\"                              заместител на непреобразуваеми знаци от Уникод\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\"  --byte-subst=ФОРМАТИРАЩ_НИЗ\\n\"\n\"                              заместител на непреобразуваеми байтове\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=ФОРМАТИРАЩ_НИЗ\\n\"\n\"                              заместител на непреобразуваеми широки знаци\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Аргументи задаващи извеждането на грешки:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"\"\n\"  -s, --silent                подтискане на съобщенията за грешки при\\n\"\n\"                              преобразуване\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Извеждане на сведение:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  изброяване на поддържаните кодирания\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      показване на тази помощ и изход от програмата\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"\"\n\"  --version                   извеждане на сведение за версията и изход от\\n\"\n\"                              програмата\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"Подавайте доклади за грешки в програмата на <bug-gnu-libiconv@gnu.org>.\\n\"\n\"Подавайте доклади за грешки в превода на <dict@ludost.net>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Разрешително GPLv3+: Версия 3 на GNU GPL или следваща <http://gnu.org/licenses/gpl.html>\\n\"\n\"Това е свободен програмен продукт: свободни сте да го променяте и разпространя-\\n\"\n\"вате.  Не се дават НИКАКВИ ГАРАНЦИИ до степента позволена от закона.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Автори: %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"%s аргумент: не е позволена директива за форматиране с променлива ширина.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"%s аргумент: не е позволена директива за форматиране с променлива точност.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"%s аргумент: не е позволена директива за форматиране с размер.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"%s аргумент: низът завършва по средата на директивата.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"%s аргумент: знакът '%c' не е правилен определител за преобразуване.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"%s аргумент: знакът, завършващ директивата за форматиране, не е правилен \"\n\"определител за преобразуване.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"%s аргумент: форматиращият низ използва повече от един аргумент: %u аргумент.\"\nmsgstr[1] \"\"\n\"%s аргумент: форматиращият низ използва повече от един аргумент: %u \"\n\"аргумента.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"заместителят за байт към Уникод не може да се преобразува: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\"заместителят за Уникод не може да се преобразува към резултатното кодиране: \"\n\"%s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\"заместителят за байт в Уникод не може да се преобразува в широк знак: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\"заместителят за широк знак не може да се преобразува към резултатното \"\n\"кодиране: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\"заместителят за байт не може да се преобразува в резултатното кодиране: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: не може да се преобразува\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: непълен знак или изместваща последователност\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: входно/изходна грешка\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"не се поддържа преобразуване от %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"не се поддържа преобразуване към %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"не се поддържа преобразуване от %s към %s\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"опитайте с '%s -l', за да получите списък с поддържаните кодирания\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(стандартен вход)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"входно/изходна грешка\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/boldquot.sed",
    "content": "s/\"\\([^\"]*\\)\"/“\\1”/g\ns/`\\([^`']*\\)'/‘\\1’/g\ns/ '\\([^`']*\\)' / ‘\\1’ /g\ns/ '\\([^`']*\\)'$/ ‘\\1’/g\ns/^'\\([^`']*\\)' /‘\\1’ /g\ns/“”/\"\"/g\ns/“/“\u001b[1m/g\ns/”/\u001b[0m”/g\ns/‘/‘\u001b[1m/g\ns/’/\u001b[0m’/g\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/ca.po",
    "content": "# Catalan messages for GNU libiconv.\n# Copyright (C) 2002 Free Software Foundation, Inc.\n# Ivan Vilata i Balaguer <ivan@selidor.net>, 2002, 2004.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.9.1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2004-03-20 16:18+0100\\n\"\n\"Last-Translator: Ivan Vilata i Balaguer <ivan@selidor.net>\\n\"\n\"Language-Team: Catalan <ca@dodds.net>\\n\"\n\"Language: ca\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"\"\n\"Forma d'ús: iconv [-c] [-s] [-f CODIF_ORIG] [-t CODIF_DEST] [FITXER ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"o:          iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, fuzzy, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"o:          iconv -l\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Escrit per %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"iconv: %s: no s'ha pogut convertir\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"iconv: %s: hi ha un caràcter o seqüència de desplaçament incompleta\\n\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, fuzzy, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"iconv: %s: error d'E/S\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, fuzzy, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"iconv: la conversió des de «%s» no és suportada\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, fuzzy, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"iconv: la conversió fins a «%s» no és suportada\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, fuzzy, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"iconv: la conversió des de «%s» fins a «%s» no és suportada\\n\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(entrada estàndard)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, fuzzy, c-format\nmsgid \"I/O error\"\nmsgstr \"iconv: error d'E/S\\n\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Forma d'ús: iconv [--binary] [-c] [-s] [-f CODIF_ORIG] [-t CODIF_DEST]\\n\"\n#~ \"                  [FITXER ...]\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Aquest és programari lliure; vegeu el codi font per les condicions de \"\n#~ \"còpia.\\n\"\n#~ \"No hi ha CAP garantia; ni tan sols de COMERCIABILITAT o ADEQUACIÓ PER UN\\n\"\n#~ \"PROPÒSIT PARTICULAR.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/cs.po",
    "content": "# Czech translation for libiconv.\n# Copyright (C) 2009 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Petr Pisar <petr.pisar@atlas.cz>, 2009, 2016.\n#\n# Založeno na doméně libc.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-12 16:37+01:00\\n\"\n\"Last-Translator: Petr Pisar <petr.pisar@atlas.cz>\\n\"\n\"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\\n\"\n\"Language: cs\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"\"\n\"Použití: iconv [-c] [-s] [-f VSTUP_KÓDOVÁNÍ] [-t VÝST_KÓDOVÁNÍ] [SOUBOR…]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"nebo:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Více informací získáte příkazem „%s --help“.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Použití: %s [PŘEPÍNAČE…] [-f KÓDOVÁNÍ] [-t KÓDOVÁNÍ] [VSTUPNÍ_SOUBOR…]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"or:      %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Konvertuje text z jednoho kódování do druhého.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Přepínače řídící vstupní a výstupní formát:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KÓDOVÁNÍ, --from-code=KÓDOVÁNÍ\\n\"\n\"                              kódování vstupu\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KÓDOVÁNÍ, --to-code=KÓDOVÁNÍ\\n\"\n\"                              kódování výstupu\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Přepínače řídící řešení potíží při převodu:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          zahodí nepřeveditelné znaky\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=FORMÁTOVACÍ_ŘETĚZEC\\n\"\n\"                              nahrazení nepřeveditelných znaků Unicode\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\"  --byte-subst=FORMÁTOVACÍ_ŘETĚZEC\\n\"\n\"                              nahrazení nepřeveditelných bajtů\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=FORMÁTOVACÍ_ŘETĚZEC\\n\"\n\"                              nahrazení nepřeveditelných širokých znaků\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Přepínače řídící chybový výstup:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                potlačí chybová hlášení o potížích při převodu\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Informativní výstup:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  vypíše seznam podporovaných kódování\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      zobrazí tuto nápovědu a skončí\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   zobrazí informace o verzi a skončí\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"Chyby hlaste na <bug-gnu-libiconv@gnu.org> (anglicky).\\n\"\n\"Chyby v překladu hlaste na <translation-team-cs@lists.sourceforge.net> \"\n\"(česky).\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Licence GPLv3+: GNU GPL verze 2 nebo novější <http://gnu.org/licenses/gpl.html>\\n\"\n\"Toto je svobodné programové vybavení: můžete jej měnit a šířit.\\n\"\n\"Není poskytována ŽÁDNÁ ZÁRUKA, jak jen zákon dovoluje.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Autor: %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"Argument %s: Direktiva formátu s proměnnou šířkou zde není povolena.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"Argument %s: Direktiva formátu s proměnnou přesností zde není povolena.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"Argument %s: Direktiva formátu s velikostí zde není povolena.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"Argument %s: Řetězec končí uprostřed direktivy.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"Argument %s: Znak „%c“ není platným vyhrazeným konverzním znakem.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"Argument %s: Znak, který zakončuje formátovací direktivu, není platným \"\n\"vyhrazeným konverzním znakem.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"Argument %s: Formátovací řetězec potřebuje více než jeden argument: %u \"\n\"argument.\"\nmsgstr[1] \"\"\n\"Argument %s: Formátovací řetězec potřebuje více než jeden argument: %u \"\n\"argumenty.\"\nmsgstr[2] \"\"\n\"Argument %s: Formátovací řetězec potřebuje více než jeden argument: %u \"\n\"argumentů.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"nahrazení bajtu nelze převést do Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"nahrazení unicodu nelze převést do cílového kódování: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"nahrazení bajtu nelze převést do řetězce širokých znaků: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"nahrazení širokého znaku nelze převést do cílového kódování: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"nahrazení bajtu nelze převést do cílového kódování: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: nelze převést\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: neúplný znak nebo posunovací posloupnost\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: chyba I/0\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"převod z %s není podporován\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"převod do %s není podporován\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"převod z %s do %s není podporován\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"seznam podporovaných kódování získáte příkazem „%s -l“\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(standardní vstup)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n# Vzdálená V/V chyba\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"Chyba vstupu/výstupu\"\n\n#~ msgid \"\"\n#~ \"  --unicode-subst=formatstring\\n\"\n#~ \"                              substitution for unconvertible Unicode \"\n#~ \"characters\\n\"\n#~ msgstr \"\"\n#~ \"  --unicode-subst=FORMÁTOVACÍ_ŘETĚZEC\\n\"\n#~ \"                              nahrazení nepřeveditelných znaků Unicodu\\n\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/da.po",
    "content": "# translation of libiconv-1.12.po to Danish\n# Copyright (C) 2002, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n#\n# Christian Rose <menthos@menthos.com>, 2002.\n# Daniel Nylander <po@danielnylander.se>, 2006, 2007, 2008.\n# Keld Simonsen <keld@keldix.com>, 2009.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv-1.12\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2009-12-03 16:31+0100\\n\"\n\"Last-Translator: Keld Simonsen <keld@keldix.com>\\n\"\n\"Language-Team: Danish <dansk@dansk-gruppen.dk>\\n\"\n\"Language: da\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=iso-8859-1\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms:  nplurals=2; plural=(n != 1);\\n\"\n\"X-Generator: KBabel 1.11.4\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Brug: iconv [-c] [-s] [-f fra-kode] [-t til-kode] [fil ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"eller: iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Prv \\\"%s --help\\\" for mere information.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Brug: %s [FLAG...] [-f KODNING] [-t KODNING] [INPUTFIL...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"eller: %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Konverterer tekst fra n kodning til en anden kodning.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Flag som styrer formatet p inddata og uddata:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KODNING,  --from-code=KODNING\\n\"\n\"                              kodningen p inddata\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KODNING,  --to-code=KODNING\\n\"\n\"                              kodningen p uddata\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Flag som kontrollerer konverteringsproblemer:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          smid tegn vk som ikke kan konverteres\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=FORMATSTRENG\\n\"\n\"                              erstatning af UCS-tegn som ikke kan konverteres\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=FORMATSTRENG   erstatning for ikke konverterbare byte\\n\"\n\n# Breda tegn? Finns det bedre ord?\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=FORMATSTRENG\\n\"\n\"                              erstatning for ikke konverterbare brede tegn\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Flag som kontrollerer fejludskrift:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                undertryk fejlmeddelelser om konverteringsproblemer\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Informativt uddata:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  list de kodninger som understttes\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      vis denne hjlpetekst og afslut\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   udskriv versionsinformation og afslut\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"Meddel fejl til <bug-gnu-libiconv@gnu.org>.\\n\"\n\"Send synspunkter p oversttelsen til <dansk@dansk-gruppen.dk>.\\n\"\n\n#: src/iconv.c:196\n#, fuzzy, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Licens GPLv2+: GNU GPL version 2 eller senere <http://gnu.org/licenses/gpl.html>\\n\"\n\"Dette er frit programmel: du kan ndre og distribuere den.\\n\"\n\"Der gives INGEN GARANTI, s vidt lov tillader.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Skrevet af %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"Argument %s: Et formatdirektiv med en variabel bredde tillades ikke her.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"Argument %s: Et formatdirektiv med en variabel prcision tillades ikke her.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"Argument %s: Et formatdirektiv med en strrelse tillades ikke her.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"Argument %s: Strengen stopper midt i et direktiv.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\"Argument %s: Tegnet \\\"%c\\\" er ikke en gyldig konverteringsspecificering.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"Argument %s: Tegnet som afslutter formatdirektivet er ikke en gyldig \"\n\"konverteringsspecificering.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"Argument %s: Formatstrengen forbruger mere end t argument: %u argument.\"\nmsgstr[1] \"\"\n\"Argument %s: Formatstrengen forbruger mere end t argument: %u argumenter.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"kan ikke konvertere byte-erstatning til UCS: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"kan ikke konvertere UCS-erstatning til mlkodning: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"kan ikke konvertere byte-erstatning til bred streng: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"kan ikke konvertere bredtegns-erstatning til mlkodning: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"kan ikke konvertere byte-erstatning til mlkodning: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: kan ikke konvertere\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: ufuldstndigt tegn eller skiftesekvens\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: Ind/ud-fejl\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"konvertering fra %s understttes ikke\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"konvertering til %s understttes ikke\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"konvertering fra %s til %s understttes ikke\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"prv \\\"%s -l\\\" for at f vist listen af understttede kodninger\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(standard ind)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"Ind/ud-fejl\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/de.po",
    "content": "# German translation of libiconv\n# German messages for GNU libiconv.\n# Copyright (C) 2002, 2006, 2008 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Bruno Haible <bruno@clisp.org>, 2002, 2006, 2008.\n# Mario Blättermann <mario.blaettermann@gmail.com>, 2016.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: GNU libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-12 16:23+0100\\n\"\n\"Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>\\n\"\n\"Language-Team: German <translation-team-de@lists.sourceforge.net>\\n\"\n\"Language: de\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\"X-Generator: Poedit 1.8.11\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"\"\n\"Aufruf: iconv [-c] [-s] [-f AUSGANGS-KODIERUNG] [-t ZIEL-KODIERUNG] \"\n\"[DATEI ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"oder:   iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"»%s --help« gibt weitere Informationen.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Aufruf: %s [OPTION...] [-f KODIERUNG] [-t KODIERUNG] [EINBABEDATEI...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"oder:   %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Wandelt Text von einer Kodierung in eine andere Kodierung um.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Optionen für das Ein- und Ausgabeformat:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KODIERUNG, --from-code=KODIERUNG\\n\"\n\"                              die Kodierung der Eingabe\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KODIERUNG, --to-code=KODIERUNG\\n\"\n\"                              die Kodierung der Ausgabe\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Optionen für die Behandlung von Umwandlungsproblemen:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"\"\n\"  -c                          Zeichen, die nicht umgewandelt werden können,\\n\"\n\"                                verwerfen\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=FORMATZEICHENKETTE\\n\"\n\"                              Ersatz für Unicode-Zeichen, die nicht umgewandelt\\n\"\n\"                                werden können\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\"  --byte-subst=FORMATZEICHENKETTE\\n\"\n\"                              Ersatz für Bytes, die nicht umgewandelt werden\\n\"\n\"                                können\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=FORMATZEICHENKETTE\\n\"\n\"                              Ersatz für »wide«-Zeichen, die nicht umgewandelt\\n\"\n\"                                werden können\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Optionen für die Ausgabe von Fehlern:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"\"\n\"  -s, --silent                Fehlermeldungen über Probleme bei der Umwandlung\\n\"\n\"                                unterdrücken\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Informative Ausgabe:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  die unterstützten Kodierungen anzeigen\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      diese Hilfe anzeigen und beenden\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   Versionsinformation anzeigen und beenden\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"Fehler bitte (auf Englisch, mit LC_ALL=C) an <bug-gnu-libiconv@gnu.org>\\n\"\n\"melden.\\n\"\n\"Für die deutsche Übersetzung ist die Mailingliste\\n\"\n\"<translation-team-de@lists.sourceforge.net> zuständig.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Lizenz: GPLv3+, d.h. GNU GPL ab Version 3 <http://gnu.org/licenses/gpl.html>\\n\"\n\"Dieses Programm ist freie Software: Sie dürfen es ändern und weitergeben.\\n\"\n\"Es gibt KEINERLEI GARANTIE, so weit das Gesetz es erlaubt.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Geschrieben von %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"»%s«-Argument: Eine Formatierungsanweisung mit variabler Breite ist hier \"\n\"nicht erlaubt.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"»%s«-Argument: Eine Formatierungsanweisung mit variabler Genauigkeit ist \"\n\"hier nicht erlaubt.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"»%s«-Argument: Eine Formatierungsanweisung mit Größenangabe ist hier nicht \"\n\"erlaubt.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"»%s«-Argument: Die Zeichenkette endet mitten in einer Anweisung.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"»%s«-Argument: Das Zeichen »%c« bezeichnet keine gültige Umwandlung.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"»%s«-Argument: Das Zeichen am Ende der Formatierungsanweisung bezeichnet \"\n\"keine gültige Umwandlung.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"»%s«-Argument: Die Formatzeichenkette verbraucht mehr als ein Argument: %u \"\n\"Argument.\"\nmsgstr[1] \"\"\n\"»%s«-Argument: Die Formatzeichenkette verbraucht mehr als ein Argument: %u \"\n\"Argumente.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"Byte-Ersatz kann nicht in Unicode umgewandelt werden: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\"Unicode-Zeichen-Ersatz kann nicht in die Zielkodierung umgewandelt werden: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\"Byte-Ersatz kann nicht in eine »wide«-Zeichenkette umgewandelt werden: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\"»wide«-Zeichen-Ersatz kann nicht in die Zielkodierung umgewandelt werden: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"Byte-Ersatz kann nicht in die Zielkodierung umgewandelt werden: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: Umwandeln nicht möglich.\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: unvollständiges Zeichen oder unvollständige Umschaltfolge\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: Ein-/Ausgabefehler\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"Umwandlung ausgehend von %s ist nicht unterstützt.\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"Umwandlung nach %s ist nicht unterstützt.\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"Umwandlung von %s nach %s ist nicht unterstützt.\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\"Versuchen Sie »%s -l«, um eine Liste aller unterstützten Kodierungen zu \"\n\"erhalten.\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(Standard-Eingabe)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"Ein-/Ausgabefehler\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/el.po",
    "content": "# Greek translation of libiconv.\n# Copyright (C) 2005 Free Software Foundation, Inc.\n# Balaskas Euaggelos <ebalaskas@cs.teiath.gr>, 2004.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.9.1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2004-12-25 22:15+0200\\n\"\n\"Last-Translator: Balaskas Euaggelos <ebalaskas@ebalaskas.gr>\\n\"\n\"Language-Team: Greek <nls@tux.hellug.gr>\\n\"\n\"Language: el\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Χρήση: iconv [-c] [-s] [-f από_κώδικα] [-t tocode] [αρχείο...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"είτε: iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, fuzzy, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"είτε: iconv -l\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Γράφτηκε από τον %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"iconv: %s: δεν μπορεί να γίνει η μετατροπή\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"iconv: %s: μη ολοκληρωμένος χαρακτήρας ή shift συνέχεια\\n\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, fuzzy, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"iconv: %s: I/O σφάλμα\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, fuzzy, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"iconv: μετατροπή από %s μη υποστηριζόμενη\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, fuzzy, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"iconv: μετατροπή σε %s μη υποστηριζόμενη\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, fuzzy, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"iconv: μετατροπή από %s σε %s μη υποστηριζόμενη\\n\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, fuzzy, c-format\nmsgid \"I/O error\"\nmsgstr \"iconv: I/O σφάλμα\\n\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Χρήση: iconv [--binary] [-c] [-s] [-f από_κώδικα] [-t tocode] [αρχείο...]\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Αυτό είναι ένα χωρίς χρέωση πρόγραμμα΄ δείτε τον κώδικα για αντιγραφή \"\n#~ \"συνθηκών. Δεν υπάρχει ΚΑΜΙΑ\\n\"\n#~ \" εγγύηση' ούτε ακόμα για ΕΜΠΟΡΕΥΜΑΤΟΠΟΙΗΣΗ ή ΚΑΤΑΛΗΛΟΤΗΤΑ ΓΙΑ ΕΝΑΝ \"\n#~ \"ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/en@boldquot.header",
    "content": "# All this catalog \"translates\" are quotation characters.\n# The msgids must be ASCII and therefore cannot contain real quotation\n# characters, only substitutes like grave accent (0x60), apostrophe (0x27)\n# and double quote (0x22). These substitutes look strange; see\n# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html\n#\n# This catalog translates grave accent (0x60) and apostrophe (0x27) to\n# left single quotation mark (U+2018) and right single quotation mark (U+2019).\n# It also translates pairs of apostrophe (0x27) to\n# left single quotation mark (U+2018) and right single quotation mark (U+2019)\n# and pairs of quotation mark (0x22) to\n# left double quotation mark (U+201C) and right double quotation mark (U+201D).\n#\n# When output to an UTF-8 terminal, the quotation characters appear perfectly.\n# When output to an ISO-8859-1 terminal, the single quotation marks are\n# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to\n# grave/acute accent (by libiconv), and the double quotation marks are\n# transliterated to 0x22.\n# When output to an ASCII terminal, the single quotation marks are\n# transliterated to apostrophes, and the double quotation marks are\n# transliterated to 0x22.\n#\n# This catalog furthermore displays the text between the quotation marks in\n# bold face, assuming the VT100/XTerm escape sequences.\n#\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/en@quot.header",
    "content": "# All this catalog \"translates\" are quotation characters.\n# The msgids must be ASCII and therefore cannot contain real quotation\n# characters, only substitutes like grave accent (0x60), apostrophe (0x27)\n# and double quote (0x22). These substitutes look strange; see\n# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html\n#\n# This catalog translates grave accent (0x60) and apostrophe (0x27) to\n# left single quotation mark (U+2018) and right single quotation mark (U+2019).\n# It also translates pairs of apostrophe (0x27) to\n# left single quotation mark (U+2018) and right single quotation mark (U+2019)\n# and pairs of quotation mark (0x22) to\n# left double quotation mark (U+201C) and right double quotation mark (U+201D).\n#\n# When output to an UTF-8 terminal, the quotation characters appear perfectly.\n# When output to an ISO-8859-1 terminal, the single quotation marks are\n# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to\n# grave/acute accent (by libiconv), and the double quotation marks are\n# transliterated to 0x22.\n# When output to an ASCII terminal, the single quotation marks are\n# transliterated to apostrophes, and the double quotation marks are\n# transliterated to 0x22.\n#\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/eo.po",
    "content": "# Mesaĝoj por la biblioteko \"libiconv\".\n# Copyright © 2002, 2006, 2007, 2017 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Edmund GRIMLEY EVANS <edmundo@rano.org>, 2002, 2006-2007.\n# Felipe Castro <fefcas@gmail.com>, 2017.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2017-01-27 23:17-0300\\n\"\n\"Last-Translator: Felipe Castro <fefcas@gmail.com>\\n\"\n\"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\\n\"\n\"Language: eo\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\"X-Generator: Poedit 1.5.4\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Uzmaniero: iconv [-c] [-s] [-f fontkodo] [-t celkodo] [dosiero ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"aŭ:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Provu '%s --help' por pli da informoj.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Uzmaniero: %s [OPCIO...] [-f KODO] [-t KODO] [ENIGDOSIERO...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"aŭ:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Konvertas tekston de unu kodo al alia kodo.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Opcioj, kiuj regas la formon de enigo kaj eligo:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KODO, --from-code=KODO\\n\"\n\"                              la kodo de la enigo\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KODO, --to-code=KODO\\n\"\n\"                              la kodo de la eligo\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Opcioj, kiuj regas konvertoproblemojn:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          forĵeti nekonverteblajn signojn\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=FORMATĈENO\\n\"\n\"                              substituado de nekonverteblaj unikodaj signoj\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=FORMATĈENO     substituado de nekonverteblaj bitokoj\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=FORMATĈENO\\n\"\n\"                              substituado de nekonverteblaj larĝaj signoj\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Opcioj, kiuj regas eligon de eraroj:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                subpremi eraromesaĝojn pri konvertoproblemoj\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Informa eligo:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  listigi la konatajn kodojn\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      montri ĉi tiun helpon kaj eliri\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  -version                    eligi informon pri la versio kaj eliri\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Raportu cimojn al <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Permeso GPLv3+: GNU-GPL versio 3 aŭ posta <http://gnu.org/licenses/gpl.html>\\n\"\n\"Ĉi tio estas libera programo: vi rajtas ŝanĝi ĝin kaj pludoni kopiojn.\\n\"\n\"Estas NENIA GARANTIO, laŭ la grado leĝe permesata.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Verkita de %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"%s argumento: formodirektivo kun variabla larĝo ne estas permesata ĉi tie.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"%s argumento: formodirektivo kun variabla precizo ne estas permesata ĉi tie.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"%s argumento: formodirektivo kun grando ne estas permesata ĉi tie.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"%s argumento: la signoĉeno finiĝas meze de direktivo.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"%s argumento: la signo '%c' ne estas valida konvertospecifo.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"%s argumento: la signo, kiu finas la formatdirektivon ne estas valida \"\n\"konvertospecifo.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"%s argumento: la formatoĉeno konsumas pli ol unu argumenton: %u argumento.\"\nmsgstr[1] \"\"\n\"%s argumento: la formatoĉeno konsumas pli ol unu argumenton: %u argumentoj.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"ne povas konverti bitoksubstituon al Unikodo: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"ne povas konverti unikodan substituon al celkodo: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"ne povas konverti bitoksubstituon al larĝa signoĉeno: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"ne povas konverti larĝasignan substituon al celkodo: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"ne povas konverti bitoksubstituon al celkodo: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: ne povas konverti\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: malkompleta signo aŭ reĝimŝanĝa kodo\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: leg/skrib-eraro\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"konvertado de %s ne estas subtenata\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"konvertado al %s ne estas subtenata\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"konvertado de %s al %s ne estas subtenata\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"provu '%s -l' por ricevi liston de konataj kodoj\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(normala enigo)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"leg/skrib-eraro\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/es.po",
    "content": "# Mensajes en español para GNU libiconv.\n# Copyright (C) 2002, 2014 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Santiago Vila Doncel <sanvila@unex.es>, 2002, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: GNU libiconv 1.12\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2014-07-13 11:14+0200\\n\"\n\"Last-Translator: Santiago Vila Doncel <sanvila@unex.es>\\n\"\n\"Language-Team: Spanish <es@tp.org.es>\\n\"\n\"Language: es\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8-bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Modo de empleo: iconv [-c] [-s] [-f desde] [-t hasta] [fichero ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"o bien: iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Pruebe `%s --help' para más información.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Modo de empleo: %s [OPCIÓN...] [-f CODIFICACIÓN] [-t CODIFICACIÓN] [FICHEROENTRADA...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"o bien: %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Convierte texto de una codificación a otra.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Opciones para controlar el formato de entrada y de salida:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f CODIFICACIÓN, --from-code=CODIFICACIÓN\\n\"\n\"                              codificación de la entrada\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t CODIFICACIÓN, --to-code=CONDIFICACIÓN\\n\"\n\"                              codificación de la salida\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Opciones para controlar los problemas de conversión:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          descarta los caracteres no convertibles\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=CADENADEFORMATO\\n\"\n\"                              sustitución para los caracteres Unicode no convertibles\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=CADENADEFORMATO  sustitución para los bytes no convertibles\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=CADENADEFORMATO\\n\"\n\"                              sustitución para los caracteres anchos no convertibles\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Opciones para controlar la salida de error:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                suprime los mensajes de error sobre problemas de conversión\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Salida informativa:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  lista las codificaciones admitidas\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      muestra esta ayuda y sale\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   muestra la versión y sale\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Comunicar errores a <bug-gnu-libiconv@gnu.org>.\\n\"\n\n# Esta cadena es para libiconv 1.14\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"License GPLv3+: GPL de GNU versión 3 o posterior <http://gnu.org/licenses/gpl.html>\\n\"\n\"Esto es software libre: usted es libre de cambiarlo y redistribuirlo.\\n\"\n\"No hay NINGUNA GARANTÍA, hasta donde permite la ley.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Escrito por %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"argumento %s: No se permite un especificador de formato con ancho variable.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"argumento %s: No se permite un especificador de formato con precisión \"\n\"variable.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"argumento %s: No se permite un especificador de formato con tamaño.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"argumento %s: La cadena termina en mitad de un especificador.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\"argumento %s: El carácter '%c' no es un especificador de conversión válido.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"argumento %s: El carácter que termina la directiva de formato no es un \"\n\"especificador de conversión válido.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"argumento %s: La cadena de formato consume más de un argumento: %u argumento.\"\nmsgstr[1] \"\"\n\"argumento %s: La cadena de formato consume más de un argumento: %u \"\n\"argumentos.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"no se puede convertir la sustitución de bytes a Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\"no se puede convertir la sustitución unicode a la codificación de destino: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"no se puede convertir la sustitución de bytes a cadena ancha: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\"no se puede convertir la sustitución de carácter ancho a la codificación de \"\n\"destino: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\"no se puede convertir la sustitución de bytes a la codificación de destino: \"\n\"%s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: no se puede convertir\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: carácter o secuencia de desplazamiento incompleta\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: error de E/S\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"no se admite la conversión de %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"no se admite la conversión a %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"no se admite la conversión de %s a %s\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"pruebe '%s -l' para obtener la lista de codificaciones admitidas\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(entrada estándar)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"error de E/S\"\n\n#~ msgid \"\"\n#~ \"License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.\"\n#~ \"html>\\n\"\n#~ \"This is free software: you are free to change and redistribute it.\\n\"\n#~ \"There is NO WARRANTY, to the extent permitted by law.\\n\"\n#~ msgstr \"\"\n#~ \"License GPLv2+: GPL de GNU versión 2 o posterior <http://gnu.org/licenses/\"\n#~ \"gpl.html>\\n\"\n#~ \"Esto es software libre: usted es libre de cambiarlo y redistribuirlo.\\n\"\n#~ \"No hay NINGUNA GARANTÍA, hasta donde permite la ley.\\n\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Esto es software libre; vea el código fuente para las condiciones de \"\n#~ \"copia.\\n\"\n#~ \"No hay NINGUNA garantía; ni siquiera de COMERCIABILIDAD o IDONEIDAD PARA \"\n#~ \"UN\\n\"\n#~ \"FIN DETERMINADO.\\n\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/et.po",
    "content": "# Estonian translations for libiconv.\n# Copyright (C) 2003 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Toomas Soome <tsoome@me.com>, 2016.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-12 13:23+0200\\n\"\n\"Last-Translator: Toomas Soome <tsoome@me.com>\\n\"\n\"Language-Team: Estonian <linux-ee@lists.eenet.ee>\\n\"\n\"Language: et\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=ISO-8859-15\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Kasutamine: iconv [-c] [-s] [-f koodist] [-t koodi] [fail ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"vi:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Lisainfo saamiseks kasutage '%s --help'.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Kasutamine: %s [VTI...] [-f KODEERING] [-t KODEERING] [SISENDFAIL...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"vi:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Teisendab teksti hest kooditabelist teise.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Sisendi ja vljundi vormingut kontrollivad vtmed:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KODEERING, --from-code=KODEERING\\n\"\n\"                              sisendi kooditabel\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KODEERING, --to-code=KODEERING\\n\"\n\"                              vljundi kooditabel\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Teisendamisel tekkivate probleemide kontrolli vtmed:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          eemalda mitteteisendatavad smbolid\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=VORMING\\n\"\n\"                              mitteteisendavate Unikoodi smbolite asendus\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=VORMING        mitteteisendatavate baitide asendus\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=VORMING\\n\"\n\"                              mitteteisendatavate mitmebaidi smbolite asendus\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Vigade vljundi kontrollimise vtmed:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                keela probleemidest teatamine\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Infovljund:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  vljasta toetatud kooditabelite nimekiri\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      vljasta see abiinfo ja lpeta t\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   vljasta versiooni info ja lpeta t\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Vigadest teatage palun aadressil <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Litsents GPLv3+: GNU GPL versioon 3 vi uuem <http://gnu.org/licenses/gpl.html>\\n\"\n\"See on vaba tarkvara: teil on lubatud seda muuta ja levitada.\\n\"\n\"GARANTII PUDUB, vastavalt seadusega lubatud piiridele.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Kirjutanud %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"%s argument: Muutuva pikkusega vorming ei ole siin lubatud.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"%s argument: Muutuva tpsusega vorming ei ole siin lubatud.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"%s argument: Suuruse mranguga vorming ei ole siin lubatud.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"%s argument: Sne lppeb keset direktiivi.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"%s argument: Smbol '%c' ei ole lubatud teisenduses.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"%s argument: Vormingi direktiivi lpetav smbol ei ole teisenduses lubatud.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"%s argument: Vormingu sne nuab enam kui hte argumenti: %u argument.\"\nmsgstr[1] \"\"\n\"%s argument: Vormingu sne nuab enam kui hte argumenti: %u argumenti.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"baidiasendust ei saa Unikoodi teisendada: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"unikoodi asendust ei saa sihttabelisse teisendada: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"baidiasendust ei saa mitmebaidiliste smbolitega sneks teisendada: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"widechar smboleid ei saa sihttabelisse teisendada: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"baitide asendust ei saa sihttabelisse teisendada: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: ei saa teisendada\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: mittetielik smbol vi nihkejrjend\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: S/V viga\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"teisendust tabelist %s ei toetata\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"teisendust tabelisse %s ei toetata\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"teisendust tabelist %s tabelisse %s ei toetata\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"Toetatud kooditabelite niekirja saate ksuga '%s -l'\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(standardsisend)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"S/V viga\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/fi.po",
    "content": "# translation of libiconv-1.12.pot to Finnish\n# Finnish translation of iconv.\n# Copyright © 2002, 2007, 2008 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n#\n# Matti Koskimies <matti@apulanta.fi>, 2002.\n# Jorma Karvonen <karvjorm@users.sf.net>, 2007,2008.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.12\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2008-01-02 07:55+0200\\n\"\n\"Last-Translator: Jorma Karvonen <karvjorm@users.sf.net>\\n\"\n\"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\\n\"\n\"Language: fi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\"X-Generator: KBabel 1.11.4\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"\"\n\"Käyttö: iconv [-c] [-s] [-f syötekoodaus] [-t tulostekoodaus] [tiedosto ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"tai:    iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Katso lisäohjeet valitsimella ”%s --help”.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Käyttö: %s [VALITSIN...] [-f KOODAUS] [-t KOODAUS] [SYÖTETIEDOSTO...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"tai:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Muuntaa tekstin yhdestä koodauksesta toiseksi koodaukseksi.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Valitsimet, jotka ohjaavat syötteen ja tulosteen muotoa:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KOODAUS, --from-code=KOODAUS\\n\"\n\"                              syötteen koodaus\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KOODAUS --to-code=KOODAUS\\n\"\n\"                              tulosteen koodaus\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Valitsimet, jotka ohjaavat muunnospulmia:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          hylkää ei-muunnettavat merkit\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=MUOTOMERKKIJONO\\n\"\n\"                              korvaus ei-muunnettaville Unicode-merkeille\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=MUOTOMERKKIJONO   korvaus ei-muunnettaville tavuille\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=MUOTOMERKKIJONO\\n\"\n\"                              korvaus ei-muunnettaville wide-merkeille\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Valitsimet, jotka ohjaavat virhetulostetta:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                vaimenna virheilmoitukset muunnospulmista\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Tiedotetuloste:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  luettele tuetut koodaukset\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      näytä tämä opaste ja poistu\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   tulosta versiotiedot ja poistu\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Ilmoita ohjelmistovioista osoitteeseen <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, fuzzy, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Lisenssi GPLv2+: GNU GPL versio 2 tai myöhäisempi <http://gnu.org/licenses/gpl.html>\\n\"\n\"Tämä on vapaa ohjelma: voit vapaasti muuttaa sitä ja jakaa sitä edelleen.\\n\"\n\"Ohjelmalla EI OLE TAKUUta siinä laajuudessa kuin laki sallii.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Kirjoittanut %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"%s-argumentti: Muotodirektiivi vaihtelevalla leveydellä ei ole sallittu \"\n\"tässä.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"%s-argumentti: Muotodirektiivi vaihtelevalla tarkkuudella ei ole sallittu \"\n\"tässä.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"%s-argumentti: Muotodirektivii koolla ei ole sallittu tässä.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"%s-argumentti: Merkkijono loppuu direktiivin keskellä.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"%s-argumentti: Merkki ”%c” ei ole voimassa oleva muunnosmäärite.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"%s-argumentti: Merkki, joka päättää muotodirektiivin, ei ole voimassa olevan \"\n\"muunnosmäärite.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"%s-argumentti: Muotoilumerkkijono kuluttaa enemmän kuin yhden argumentin: %u \"\n\"argumentti.\"\nmsgstr[1] \"\"\n\"%s-argumentti: Muotoilumerkkijono kuluttaa enemmän kuin yhden argumentin: %u \"\n\"argumenttia.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"ei voida muuntaa tavukorvausta Unicode-merkiksi: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"ei voida muuntaa Unicode-korvausta kohdekoodaukseksi: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"ei voida muuntaa tavukorvausta wide-merkkijonoksi: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"ei voida muuntaa wide-merkkikorvausta kohdekoodaukseksi: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"ei voida muuntaa tavukorvausta kohdekoodaukseksi: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: ei voida muuntaa\"\n\n#  Tästä en ole aivan varma, että tarkoittaako tämä näppäimistön shift-näppäimellä tehtyä merkkiä vai sivuttaissiirtoa bittikentässä.\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: epätäydellinen merkki tai shift-sekvenssi\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: Siirräntävirhe\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"muunnos %s-koodauksesta ei ole tuettu\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"muunnos %s-koodaukseen ei tuettu\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"muunnos %s-koodauksesta %s-koodaukseen ei ole tuettu\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"katso luettelo tuetuista koodauksista valitsimella ”%s -l”\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(vakiosyöte)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"Siirräntävirhe\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/fr.po",
    "content": "# Messages français pour GNU concernant libiconv.\n# This file is distributed under the same license as the libiconv package.\n# Copyright © 2004, 2008 Free Software Foundation, Inc.\n# Michel Robitaille <robitail@IRO.UMontreal.CA>, traducteur depuis/since 1996.\n# François-Xavier Coudert <fxcoudert@gmail.com>, 2008.\n# Stéphane Aulery <lkppo@free.fr>, 2016.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: GNU libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-23 20:58+0100\\n\"\n\"Last-Translator: Stéphane Aulery <lkppo@free.fr>\\n\"\n\"Language-Team: French <traduc@traduc.org>\\n\"\n\"Language: fr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8-bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Usage: iconv [-c] [-s] [-f code_source] [-t code_cible] [fichier ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"ou:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Essayez « %s --help » pour plus d'informations.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"ou:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Convertit du texte d'un codage à un autre codage.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Options contrôlant les formats d'entrée et de sortie :\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f CODAGE, --from-code=CODAGE\\n\"\n\"                              codage en entrée\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t CODAGE, --to-code=CODAGE\\n\"\n\"                              codage en sortie\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Options contrôlant les problèmes de conversion :\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          écarte les caractères non convertissables\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=FORMAT\\n\"\n\"                              substitution pour les caractères Unicode non convertissables\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=FORMAT         substitution pour les octets non convertissables\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=FORMAT\\n\"\n\"                              substitution pour les caractères larges non convertissables\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Options contrôlant l'affichage des erreurs :\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                supprime les messages d'erreur concernant les problèmes de conversion\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Options d'aide:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  afficher les codages supportés\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      affiche ce message d'aide et terminer\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   affiche les informations de version et terminer\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Soumettre les rapports d'anomalies à <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Licence GPLv3+: GNU GPL version 4 ou ultérieure <http://gnu.org/licenses/gpl.html>\\n\"\n\"Ce logiciel est libre: vous pouvez le modifier et le redistribuer.\\n\"\n\"Il n'y a PAS DE GARANTIE, selon les limites permises par la loi..\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Écrit pas %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"argument %s: Une directive de format avec largeur variable n'est pas \"\n\"autorisée ici.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"argument %s: Une directive de format avec précision variable n'est pas \"\n\"autorisée ici.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"argument %s: Une directive de format comportant une taille n'est pas \"\n\"autorisée à cet endroit.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"argument %s: La chaîne se termine au milieu d'une directive.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\"argument %s: Le caractère « %c » n'est pas un spécificateur de conversion \"\n\"valide.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"argument %s: Le caractère qui termine le format n'est pas un spécificateur \"\n\"de conversion valide.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"argument %s: La chaîne de format consomme plus d'un argument: %u argument.\"\nmsgstr[1] \"\"\n\"argument %s: La chaîne de format consomme plus d'un argument: %u arguments.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"ne peut convertir les octets de substitution vers Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"ne peut convertir la substitution Unicode dans le codage de sortie: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"ne peut convertir les octets de substitution en chaîne large: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\"ne peut convertir les caractères larges de substitution dans le codage de \"\n\"sortie: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\"ne peut convertir les octets de substitution dans le codage de sortie: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: ne peut convertir\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: caractère incomplet ou séquence de décalage\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: erreur E/S\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"conversion à partir de %s non supportée\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"conversion vers %s non supportée\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"conversion à partir de %s vers %s non supportée\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"essayez « %s -l » pour obtenir la liste des codages supportés\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"erreur E/S\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/ga.po",
    "content": "# Irish translations for libiconv \n# Copyright (C) 2003 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Kevin Patrick Scannell <scannell@SLU.EDU>, 2003, 2006, 2007, 2008, 2017.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2017-01-08 14:58-0500\\n\"\n\"Last-Translator: Kevin Scannell <kscanne@gmail.com>\\n\"\n\"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\\n\"\n\"Language: ga\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 : \"\n\"(n>6 && n <11) ? 3 : 4;\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Úsáid: iconv [-c] [-s] [-f cód] [-t cód] [comhad ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"nó:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Bain triail as '%s --help' chun tuilleadh eolais a fháil.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Úsáid: %s [ROGHA...] [-f IONCHÓDÚ] [-t IONCHÓDÚ] [INCHOMHAD...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"nó:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Tiontaigh ó ionchódú go ceann eile.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Roghanna a rialaíonn formáid ionchurtha/aschurtha:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f IONCHÓDÚ, --from-code=IONCHÓDÚ\\n\"\n\"                              ionchódú an ionchuir\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t IONCHÓDÚ, --to-code=IONCHÓDÚ\\n\"\n\"                              ionchódú an aschuir\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Roghanna a rialaíonn fadhbanna tiontaithe:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                        ná coinnigh carachtair dhothiontaithe\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=TEAGHRÁN\\n\"\n\"                              ionadaíocht do charachtair dhothiontaithe Unicode\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=TEAGHRÁN       ionadaíocht do bhearta dothiontaithe\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=TEAGHRÁN\\n\"\n\"                             ionadaíocht do charachtair leathana dhothiontaithe\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Roghanna a rialaíonn aschur d'earráidí:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                ná taispeáin teachtaireachtaí faoi fhadhbanna tiontaithe\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Aschur faisnéiseach:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  taispeáin na hionchóduithe a dtacaítear leo\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      taispeáin an chabhair seo agus scoir\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   taispeáin eolas faoin leagan agus scoir\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Seol tuairiscí fabhtanna chuig <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Ceadúnas GPLv3+: GNU GPL leagan 3 nó níos déanaí <http://gnu.org/licenses/gpl.html>\\n\"\n\"Is saorbhogearra é seo: ceadaítear duit é a athrú agus a athdháileadh.\\n\"\n\"Níl baránta AR BITH ann, an oiread atá ceadaithe de réir dlí.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Le %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"argóint %s: Ní cheadaítear treoir fhormáidithe le leithead athraitheach \"\n\"anseo.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"argóint %s: Ní cheadaítear treoir fhormáidithe le beachtas athraitheach \"\n\"anseo.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"argóint %s: Ní cheadaítear treoir fhormáidithe le méid anseo.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"argóint %s: Deireadh an teaghráin i lár treorach.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"argóint %s: Níl carachtar '%c' bailí mar shonraitheoir tiontaithe.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"argóint %s: An carachtar ag deireadh na treorach formáidithe, níl sé bailí \"\n\"mar shonraitheoir tiontaithe.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"argóint %s: Úsáideann an teaghrán formáidithe níos mó ná aon argóint amháin: \"\n\"%u argóint.\"\nmsgstr[1] \"\"\n\"argóint %s: Úsáideann an teaghrán formáidithe níos mó ná aon argóint amháin: \"\n\"%u argóint.\"\nmsgstr[2] \"\"\n\"argóint %s: Úsáideann an teaghrán formáidithe níos mó ná aon argóint amháin: \"\n\"%u argóint.\"\nmsgstr[3] \"\"\n\"argóint %s: Úsáideann an teaghrán formáidithe níos mó ná aon argóint amháin: \"\n\"%u n-argóint.\"\nmsgstr[4] \"\"\n\"argóint %s: Úsáideann an teaghrán formáidithe níos mó ná aon argóint amháin: \"\n\"%u argóint.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"ní féidir ionadaíocht bhirt a thiontú go Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"ní féidir ionadaíocht unicode a thiontú go dtí an sprioc-ionchódú: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"ní féidir ionadaíocht bhirt a thiontú go teaghrán leathan: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"ní féidir ionadaíocht widechar a thiontú go dtí an sprioc-ionchódú: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"ní féidir ionadaíocht bhirt a thiontú go dtí an sprioc-ionchódú: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: ní féidir tiontú\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: carachtar nó seicheamh neamhiomlán\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: Earráid I/A\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"ní thacaítear le tiontú ó %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"ní thacaítear le tiontú go %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"ní thacaítear le tiontú ó %s go %s\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\"bain triail as '%s -l' chun liosta de na hionchóduithe a dtacaítear leo a \"\n\"thaispeáint\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"Earráid I/A\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Is saorbhogearra an ríomhchlár seo; féach ar an bhunchód le haghaidh\\n\"\n#~ \"coinníollacha cóipeála.  Níl baránta ar bith ann; go fiú níl baránta ann\\n\"\n#~ \"d'INDÍOLTACHT nó FEILIÚNACHT D'FHEIDHM AR LEITH.\\n\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"Úsáid: iconv [--binary] [-c] [-s] [-f cód] [-t cód] [comhad ...]\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/gl.po",
    "content": "# Galician translation of libiconv\n# This file is distributed under the same license as the libiconv package.\n# Copyright (C) 2002 Free Software Foundation, Inc.\n# Copyright (C) 2012, 2013 Leandro Regueiro.\n#\n# Jacobo Tarrio <jtarrio@trasno.net>, 2002.\n# Leandro Regueiro <leandro.regueiro@gmail.com>, 2012, 2013.\n#\n# Proxecto Trasno - Adaptación do software libre á lingua galega:  Se desexas\n# colaborar connosco, podes atopar máis información en http://www.trasno.net\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.12\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2013-01-05 17:00+0200\\n\"\n\"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\\n\"\n\"Language-Team: Galician <proxecto@trasno.net>\\n\"\n\"Language: gl\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Emprego: iconv [-c] [-s] [-f desdecódigo] [-t acódigo] [ficheiro ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"ou:    iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Execute «%s --help» para obter máis información.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Emprego: %s [OPCIÓN...] [-f CODIFICACIÓN] [-t CODIFICACIÓN] [FICHEIROENTRADA...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"ou:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Converte texto desde unha codificación a outra codificación.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Opcións que controlan o formato de entrada e de saída:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f CODIFICACIÓN, --from-code=CODIFICACIÓN\\n\"\n\"                              a codificación da entrada\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t CODIFICACIÓN, --to-code=CODIFICACIÓN\\n\"\n\"                              a codificación da saída\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Opcións que controlan os problemas de conversión:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          desbotar os caracteres non convertíbeis\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=CADEA_DE_FORMATO\\n\"\n\"                              substitución para os caracteres Unicode non convertíbeis\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\"  --byte-subst=CADEA_DE_FORMATO\\n\"\n\"                              substitución para bytes non convertíbeis\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=CADEA_DE_FORMATO\\n\"\n\"                              substitución para caracteres amplos non convertíbeis\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Opcións que controlan a saída de erro:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                suprime mensaxes de erro sobre problemas de conversión\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Saída informativa:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  Lista das codificacións admitidas\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      Mostra esta mensaxe de axuda e sae\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   Mostra a información da versión e sae\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Envíe informes de fallo a <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, fuzzy, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Licenza GPLv2+: GNU GPL versión 2 ou posterior <http://gnu.org/licenses/gpl.html>\\n\"\n\"Isto é software libre: pode modificalo e redistribuílo.\\n\"\n\"Non hai NINGUNHA GARANTÍA, ata onde o permita a lei.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Escrito por %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"Argumento %s: aquí non se permiten directivas de formato cun ancho variábel.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"Argumento %s: aquí non se permiten directivas de formato cunha precisión \"\n\"variábel.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"Argumento %s: aquí non se permiten directivas de formato que teñan un tamaño.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"Argumento %s: a cadea remata no medio dunha directiva.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\"Argumento %s: o carácter «%c» non é un especificador de conversión correcto.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"Argumento %s: o carácter no que remata a directiva de formato non é un \"\n\"especificador de conversión correcto.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"Argumento %s: a cadea de formato ocupa máis dun argumento: %u argumento.\"\nmsgstr[1] \"\"\n\"Argumento %s: a cadea de formato ocupa máis dun argumento: %u argumentos.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"non é posíbel converter a substitución de bytes a Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\"non é posíbel converter a substitución de unicode á codificación destino: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"non é posíbel converter a substitución de bytes a cadea ampla: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\"non é posíbel converter a substitución de caracteres amplos á codificación \"\n\"destino: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\"non é posíbel converter a substitución de bytes á codificación destino: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: non foi posíbel converter\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: secuencia de caracteres ou desprazamentos incompleta\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: erro de E/S\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"non se admite a conversión desde %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"non se admite a conversión a %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"non se admite a conversión de %s a %s\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"execute «%s -l» para obter a lista das codificacións admitidas\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(entrada estándar)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"Erro de E/S\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/hr.po",
    "content": "# Translation of libiconv to Croatian.\n# Copyright (C) 2002, 2012 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Denis Lackovic <delacko@fly.srk.fer.hr>, 2002.\n# Tomislav Krznar <tomislav.krznar@gmail.com>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.12\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2012-04-16 16:14+0200\\n\"\n\"Last-Translator: Tomislav Krznar <tomislav.krznar@gmail.com>\\n\"\n\"Language-Team: Croatian <lokalizacija@linux.hr>\\n\"\n\"Language: hr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n\"\n\"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\\n\"\n\"X-Generator: TransDict server\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Uporaba: iconv [-c] [-s] [-f izkoda] [-t ukod] [datoteka ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"ili:    iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Pokušajte „%s --help” za više informacija.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Uporaba: %s [OPCIJA...] [-f KODIRANJE] [-t KODIRANJE] [ULAZNADATOTEKA...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"ili:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Pretvara tekst iz jednog kodiranja u drugo.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Opcije za kontroliranje ulaznog i izlaznog oblika:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KODIRANJE, --from-code=KODIRANJE\\n\"\n\"                              kodiranje ulaza\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KODIRANJE, --to-code=KODIRANJE\\n\"\n\"                              kodiranje izlaza\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Opcije za kontroliranje problema pretvaranja:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          odbaci nepretvorive znakove\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              zamjena za nepretvorive Unicode znakove\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=FORMATSTRING   zamjena za nepretvorive bajtove\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              zamjena za nepretvorive široke znakove\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Opcije za kontroliranje ispisa grešaka:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                izostavi poruke grešaka o problemima pretvaranja\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Informativni izlaz:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  ispiši podržana kodiranja\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      prikaži ovu pomoć i izađi\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   ispiši informacije o inačici i izađi\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"Prijavite greške na <bug-gnu-libiconv@gnu.org>.\\n\"\n\"Prijavite greške prijevoda na <lokalizacija@linux.hr>.\\n\"\n\n#: src/iconv.c:196\n#, fuzzy, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Licenca GPLv2+: GNU GPL inačica 2 ili kasnija <http://gnu.org/licenses/gpl.html>.\\n\"\n\"Ovo je slobodan softver: slobodno ga smijete mijenjati i dijeliti.\\n\"\n\"NEMA JAMSTAVA, do krajnje mjere dozvoljene zakonom.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Napisao %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"%s argument: Propis oblika s promjenjivom širinom ovdje nije dozvoljen.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"%s argument: Propis oblika s promjenjivom preciznošću ovdje nije dozvoljen.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"%s argument: Propis oblika s veličinom ovdje nije dozvoljen.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"%s argument: Znakovni niz završava u sredini propisa.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"%s argument: Znak „%c” nije ispravna oznaka pretvaranja.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"%s argument: Znak koji završava propis oblika nije ispravna oznaka \"\n\"pretvaranja.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"%s argument: Znakovni niz oblika sadrži više od jednog argumenta: %u \"\n\"argument.\"\nmsgstr[1] \"\"\n\"%s argument: Znakovni niz oblika sadrži više od jednog argumenta: %u \"\n\"argumenta.\"\nmsgstr[2] \"\"\n\"%s argument: Znakovni niz oblika sadrži više od jednog argumenta: %u \"\n\"argumenata.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"ne mogu pretvoriti bajtovnu zamjenu u Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"ne mogu pretvoriti unicode zamjenu u odredišno kodiranje: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"ne mogu pretvoriti bajtovnu zamjenu u široki niz: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"ne mogu pretvoriti širokoznačnu zamjenu u odredišno kodiranje: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"ne mogu pretvoriti bajtovnu zamjenu u odredišno kodiranje: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: ne mogu pretvoriti\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: nepotpun znakovni ili pomačni niz\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: U/I greška\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"pretvaranje iz %s nije podržano\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"pretvaranje u %s nije podržano\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"pretvaranje iz %s u %s nije podržano\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"pokušajte „%s -l” za prikaz popisa podržanih kodiranja\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"U/I greška\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Uporaba: iconv [--binary] [-c] [-s] [-f izkoda] [-t ukod] [datoteka ...]\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Ovo je slobodni softver; pogledajte kod kako biste doznali uvjete \"\n#~ \"kopiranja.  NEMA\\n\"\n#~ \"garancije; čak ni tvrdnje o ISPLATIVOSTI ili POGODNOSTI ZA NEKU SVRHU.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/hu.po",
    "content": "# Hungarian translation of libiconv.\n# Copyright (C) 2002 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n#\n# Emese Kovács <emese@gnome.hu>, 2002.\n# Balázs Úr <urbalazs@gmail.com>, 2014.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.12\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2014-05-28 22:00+0200\\n\"\n\"Last-Translator: Balázs Úr <urbalazs@gmail.com>\\n\"\n\"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\\n\"\n\"Language: hu\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\"X-Generator: Lokalize 1.5\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Használat: iconv [-c] [-s] [-f kódolásról] [-t kódolásra] [fájl …]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"vagy:    iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"További információkért próbálja a(z) „%s --help” parancsot.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Használat: %s [KAPCSOLÓ…] [-f KÓDOLÁS] [-t KÓDOLÁS] [BEMENETFÁJL…]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"vagy:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Átalakítja a szöveget egy adott kódolásról egy másik kódolásra.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"A bemeneti és kimeneti formátumokat vezérlő kapcsolók:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KÓDOLÁS, --from-code=KÓDOLÁS\\n\"\n\"                              a bemenet kódolása\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KÓDOLÁS, --to-code=KÓDOLÁS\\n\"\n\"                              a kimenet kódolása\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Átalakítási problémákat vezérlő kapcsolók:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          átalakíthatatlan karakterek eldobása\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=FORMÁTUMSZÖVEG\\n\"\n\"                              helyettesítés az átalakíthatatlan Unicode karakterekhez\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=FORMÁTUMSZÖVEG   helyettesítés az átalakíthatatlan byte-okhoz\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=FORMÁTUMSZÖVEG\\n\"\n\"                              helyettesítés az átalakíthatatlan széles karakterekhez\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"A hibakimenetet vezérlő kapcsolók:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                az átalakítási problémákról szóló hibaüzenetek elnyomása\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Tájékoztató kimenet:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  a támogatott kódolások felsorolása\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      ezen súgó megjelenítése és kilépés\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   verzióinformációk kiírása és kilépés\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"A hibákat ezen a címen jelentse: <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, fuzzy, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Licenc GPLv2+: GNU GPL 2. vagy későbbi verzió <http://gnu.org/licenses/gpl.html>\\n\"\n\"Ez egy szabad szoftver: szabadon módosíthatja és terjesztheti.\\n\"\n\"Nincs SEMMIFÉLE GARANCIA, a törvény által megengedett mértékben.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Írta %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"%s argumentum: Egy formátum utasítás egy változó szélességgel itt nem \"\n\"engedélyezett.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"%s argumentum: Egy formátum utasítás egy változó pontossággal itt nem \"\n\"engedélyezett.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"%s argumentum: Egy formátum utasítás egy mérettel itt nem engedélyezett.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"%s argumentum: A szöveg befejeződik egy utasítás közepén.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\"%s argumentum: A(z) „%c” karakter nem érvényes átalakítási meghatározó.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"%s argumentum: Az a karakter, amely megszakítja a formátum utasítást, nem \"\n\"érvényes átalakítási meghatározó.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"%s argumentum: A formátumszöveg több mint egy argumentumot fogyaszt: %u \"\n\"argumentum.\"\nmsgstr[1] \"\"\n\"%s argumentum: A formátumszöveg több mint egy argumentumot fogyaszt: %u \"\n\"argumentum.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"nem sikerült átalakítani a byte helyettesítést Unicode kódolásra: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"nem sikerült átalakítani a Unicode helyettesítést a cél kódolásra: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"nem sikerült átalakítani a byte helyettesítést széles szövegre: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\"nem sikerült átalakítani a széles karakter helyettesítést a cél kódolásra: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"nem sikerült átalakítani a byte helyettesítést a cél kódolásra: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: nem sikerült átalakítani\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: nem teljes karakter vagy eltolási szekvencia\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: I/O hiba\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"az átalakítás %s kódolásról nem támogatott\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"az átalakítás %s kódolásra nem támogatott\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"az átalakítás %s kódolásról %s kódolásra nem támogatott\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"próbálja a(z) „%s -l” parancsot a támogatott kódolások listájához\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"I/O hiba\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Használat: iconv [--binary] [-c] [-s] [-f kódolásról] [-t kódolásra] \"\n#~ \"[fájl ...]\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Ez szabad szoftver; a sokszorosításra vonatkozó feltételeket lásd a \"\n#~ \"forrásban.\\n\"\n#~ \"SEMMILYEN garanciát nem vállalunk, még azt sem állítjuk, hogy ez a \"\n#~ \"program\\n\"\n#~ \"KERESKEDELMI CÉLOKRA ALKALMAS vagy HASZNÁLHATÓ EGY ADOTT FELADATRA.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/id.po",
    "content": "# Pesan bahasa indonesia untuk libiconv.\n# Copyright (C) 2002 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Tedi Heriyanto <tedi_h@gmx.net>, 2002.\n# Arif E. Nugroho <arif_endro@yahoo.com>, 2008.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.12\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2008-12-31 14:30+0700\\n\"\n\"Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>\\n\"\n\"Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\\n\"\n\"Language: id\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Penggunaan: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"atau:    iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Coba `%s --help' untuk informasi lebih lanjut.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Penggunaan: %s [OPSI...] [-f PENGKODEAN] [-e PENGKODEAN] [BERKAS MASUKAN...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"atau:  %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Ubah teks dari satu pengkodean ke pengkodean yang lain.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Opsi mengontrol format masukan dan keluaran:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f PENGKODEAN, --from-code=PENGKODEAN\\n\"\n\"                              pengkodean dari masukan\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t PENGKODEAN, --to-code=PENGKODEAN\\n\"\n\"                              pengkodean dari keluaran\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Opsi mengontrol masalah pengubahan:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          abaikan karakter yang tidak dapat diubah\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitusi untuk karakter Unicode yang tidak dapat diubah\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=FORMATSTRING   substitusi untuk byte tidak terubah\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitusi untuk karakter lebar tidak terubah\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Opsi mengontrol keluaran error:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                tekan pesan error mengenai masalah konversi\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Keluaran informasi:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  daftar dari pengkodean yang didukung\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      tampilkan bantuan ini dan keluar\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   keluarkan informasi versi dan keluar\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Laporkan bugs ke <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, fuzzy, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Lisensi GPLv2+: GNU GPL versi 2 atau selanjutnya <http://gnu.org/licenses/gpl.html>\\n\"\n\"Ini adalah piranti lunak bebas: anda bebas untuk mengubah dan meredistribusikannya.\\n\"\n\"TIDAK ADA GARANSI, sampai batas yang diijinkan oleh hukum yang berlaku.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Ditulis oleh %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"%s argumen: Sebuah format direktif dengan sebuah lebar variabel tidak \"\n\"diijinkan disini.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"%s argumen: Sebuah format direktif dengan sebuah variabel presisi tidak \"\n\"diijinkan disini.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"%s argumen: Sebuah format direktif dengan sebuah ukuran tidak diijinkan \"\n\"disini.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"%s argumen: String berakhir ditengah dari sebuah direktif.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\"%s argumen: Karakter '%c' bukan sebuah penspesifikasi konversi yang valid.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"%s argumen: Karakter yang diselesaikan dengan format direktif bukan sebuah \"\n\"penspesifikasi konversi yang valid.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"%s argumen: Format string mengambil lebih dari satu argumen: %u argumen.\"\nmsgstr[1] \"\"\n\"%s argumen: Format string mengambil lebih dari satu argumen: %u argumen.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"tidak dapat mengubah substitusi byte ke Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"tidak dapat mengubah substitusi unicode ke target pengkodean: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"tidak dapat mengubah pengganti byte ke string lebar: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"tidak dapat mengubah pengganti widechar ke target pengkodean: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"tidak dapat mengubah pengganti byte ke target pengkodean: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: tidak dapat mengkonversi\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: karakter atau urutan shift tidak lengkap\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: I/O error\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"konversi dari %s tidak didukung\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"konversi ke %s tidak didukung\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"konversi dari %s to %s tidak didukung\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"coba '%s -l' untuk mendapatkan daftar dari pengkodean yang didukung\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"I/O error\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Penggunaan: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] \"\n#~ \"[file ...]\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/insert-header.sin",
    "content": "# Sed script that inserts the file called HEADER before the header entry.\n#\n# At each occurrence of a line starting with \"msgid \", we execute the following\n# commands. At the first occurrence, insert the file. At the following\n# occurrences, do nothing. The distinction between the first and the following\n# occurrences is achieved by looking at the hold space.\n/^msgid /{\nx\n# Test if the hold space is empty.\ns/m/m/\nta\n# Yes it was empty. First occurrence. Read the file.\nr HEADER\n# Output the file's contents by reading the next line. But don't lose the\n# current line while doing this.\ng\nN\nbb\n:a\n# The hold space was nonempty. Following occurrences. Do nothing.\nx\n:b\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/it.po",
    "content": "# Italian translation for libiconv.\n# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Marco Parrone <marc0@autistici.org>, 2002.\n# Milo Casagrande <milo_casagrande@yahoo.it>, 2008-2009\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-13 12:17+0100\\n\"\n\"Last-Translator: Milo Casagrande <milo@milo.name>\\n\"\n\"Language-Team: Italian <tp@lists.linux.it>\\n\"\n\"Language: it\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\"X-Generator: Poedit 1.8.11\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Uso: iconv [-c] [-s] [-f DAL_CODICE] [-t AL_CODICE] [FILE...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"o:   iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Usare \\\"%s --help\\\" per ulteriori informazioni.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Uso: %s [OPZIONI...] [-f CODIFICA] [-t CODIFICA] [FILE...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"o:   %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Converte il testo da una codifica a un'altra.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Opzioni per il controllo del formato di input e di output:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f CODIFICA, --from-code=CODIFICA\\n\"\n\"                              La codifica dell'input\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t CODIFICA, --to-code=CODIFICA\\n\"\n\"                              La codifica dell'output\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Opzioni per il controllo dei problemi di conversione:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          Tralascia i caratteri non convertibili\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=STRINGA_FORMATO\\n\"\n\"                              Sostituzione per i caratteri Unicode non convertibili\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\"  --byte-subst=STRINGA_FORMATO\\n\"\n\"                              Sostituzione per i byte non convertibili\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=STRINGA_FORMATO\\n\"\n\"                              Sostituzione per i caratteri wide non convertibili\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Opzioni per il controllo degli errori di output:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                Tralascia i messaggi di errore dei problemi di conversione\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Output informativo:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  Elenca le codifiche supportate\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      Visualizza questo aiuto ed esce\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   Stampa la versione ed esce\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"Segnalare i bug a <bug-gnu-libiconv@gnu.org>.\\n\"\n\"Segnalare gli errori di traduzione a <tp@lists.linux.it>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Licenza GPLv3+: GNU GPL versione 3 o successiva <http://gnu.org/licenses/gpl.html>\\n\"\n\"Questo è software libero: siete liberi di modificarlo e ridistribuirlo\\n\"\n\"Non c'è ALCUNA GARANZIA, per quanto consentito dalle vigenti normative.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Scritto da %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"argomento %s: una direttiva di formato con una larghezza variabile non è \"\n\"consentita.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"argomento %s: una direttiva di formato con una precisione variabile non è \"\n\"consentita.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"argomento %s: una direttiva di formato con una dimensione non è consentita.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"argomento %s: la stringa termina a metà di una direttiva.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\"argomento %s: il carattere \\\"%c\\\" non è uno specificatore di conversione \"\n\"valido.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"argomento %s: il carattere terminante della direttiva di formato non è uno \"\n\"specificatore di conversione valido.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"argomento %s: la stringa di formato utilizza più di un argomento: %u \"\n\"argomento.\"\nmsgstr[1] \"\"\n\"argomento %s: la stringa di formato utilizza più di un argomento: %u \"\n\"argomenti.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"impossibile convertire la sostituzione byte in Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\"impossibile convertire la sostituzione Unicode nella codifica finale: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"impossibile convertire la sostituzione byte con una stringa wide: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\"impossibile convertire il carattere wide di sostituzione alla codifica \"\n\"finale: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"impossibile convertire la sostituzione byte alla codifica finale: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: impossibile convertire\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: carattere o sequenza di shift incompleto\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: errore di I/O\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"conversione da %s non supportata\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"conversione a %s non supportata\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"conversione da %s a %s non supportata\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"usare \\\"%s -l\\\" per un elenco delle codifiche supportate\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"Errore di I/O\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/ja.po",
    "content": "# Japanese message of libiconv\n# Copyright (C) 2016 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Yasuaki Taniguchi <yasuakit@gmail.com>, 2010.\n# Takeshi Hamasaki <hmatrjp@users.sourceforge.jp>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: GNU libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-30 08:27+0900\\n\"\n\"Last-Translator: Takeshi Hamasaki <hmatrjp@users.sourceforge.jp>\\n\"\n\"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\\n\"\n\"Language: ja\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\"X-Generator: Poedit 1.8.11\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"\"\n\"使用法: iconv [-c] [-s] [-f 変換元コード] [-t 変換先コード] [ファイル名 ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"または:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"さらに情報が必要な場合は '%s --help' と入力してください。\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"使用法: %s [オプション...] [-f 文字コード] [-t 文字コード] [入力ファイル...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"または:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"ある文字コードから別の文字コードへテキストを変換します。\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"入出力形式を制御するオプション:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f 文字コード, --from-code=文字コード\\n\"\n\"                              入力の文字コード\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t 文字コード, --to-code=文字コード\\n\"\n\"                              出力の文字コード\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"変換の問題を制御するオプション:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          変換できない文字を破棄する\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=書式文字列\\n\"\n\"                              変換できない Unicode 文字の置換\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=書式文字列   変換できないバイトの置換\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=書式文字列\\n\"\n\"                              変換できないワイド文字の置換\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"エラー出力を制御するオプション:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                変換問題のエラーメッセージ出力を抑止する\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"情報の出力:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  サポートする文字コード一覧を表示する\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      このヘルプを表示して終了する\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   バージョン情報を表示して終了する\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"バグレポート先 <bug-gnu-libiconv@gnu.org>\\n\"\n\"翻訳問題レポート先 <translation-team-ja@lists.sourceforge.net>\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"%sライセンス GPLv3+: GNU GPL バージョン 3 以降 <http://gnu.org/licenses/gpl.html>\\n\"\n\"%sこれはフリーソフトウェアです: 自由に変更および配布できます.\\n\"\n\"%s法律の許す限り、　無保証　です.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"作成者 %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"引数 %s : ここでは可変幅の書式指定を使用できません。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"引数 %s : ここでは可変精度の書式指定を使用できません。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"引数 %s : ここではサイズ指定を行う書式指定を使用できません。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"引数 %s : 書式指定の中間で文字列が終了しました。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"引数 %s : 文字 '%c' は無効な変換指定です。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"引数 %s : 書式指定を終端させる文字は有効な変換指定ではありません。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"引数 %s : 書式文字列が2つ以上の引数を消費します: %u 個の引数。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"バイトから Unicode へ置換をおこなう変換ができません: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"Unicodeから変換先文字コードへの置換を行う変換ができません: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"バイトからワイド文字への置換を行う変換ができません: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"ワイド文字から変換先文字コードへの置換を行う変換ができません: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"バイトから変換先文字コードへ置換を行う変換ができません: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u行:%u列: 変換できません\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u行:%u列: 不完全な文字またはシフトシーケンスです\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u行:%u列\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: I/O エラー\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"%s からの変換はサポートされていません\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"%s への変換はサポートされていません\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"%s から %s への変換はサポートされていません\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"サポートする文字コード一覧は '%s -l' と入力してください。\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(標準入力)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"I/O エラー\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/libiconv.pot",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR Free Software Foundation, Inc.\n# This file is distributed under the same license as the PACKAGE package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\n#\n#, fuzzy\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: GNU libiconv 1.15\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=CHARSET\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/nl.po",
    "content": "# Dutch messages for GNU libiconv.\n# Copyright (C) 2016 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n#\n# \"Things change, and they never go back to what they were before.\"\n#\n# Taco Witte <info@tacowitte.nl>, 2003.\n# Elros Cyriatan <cyriatan@fastmail.fm>, 2003.\n# Tim Van Holder <tim.van.holder@telenet.be>, 2007.\n# Benno Schulenberg <benno@vertaalt.nl>, 2017.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2017-01-07 15:41+0100\\n\"\n\"Last-Translator: Benno Schulenberg <benno@vertaalt.nl>\\n\"\n\"Language-Team: Dutch <vertaling@vrijschrift.org>\\n\"\n\"Language: nl\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\"X-Generator: Lokalize 1.0\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Gebruik: iconv [-c] [-s] [-f VANCODE] [-t NAARCODE] [BESTAND...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"of:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Typ '%s --help' voor meer informatie.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Gebruik: %s [OPTIE...] [-f CODERING] [-t CODERING] [INVOERBESTAND...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"of:    %s -l\\n\"\n\n# Weet niet of \"codering\" herhaald hoeft te worden.\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Zet tekst om van één codering naar een andere.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Opties voor de codering van in- en uitvoer:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f CODERING, --from-code=CODERING\\n\"\n\"                              de codering van de invoer\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t CODERING, --to-code=CODERING\\n\"\n\"                              de codering van de uitvoer\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Opties voor omzettingsproblemen:\\n\"\n\n# of misschien \"gooi ... weg\"\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          onomzetbare tekens weglaten\\n\"\n\n# Of iets als FORMATTERINGSTEKST?\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"  --unicode-subst=TEKST       vervanging voor onomzetbare Unicode-tekens\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=TEKST          vervanging voor onomzetbare bytes\\n\"\n\n# iets beters dan \"brede tekens\"?\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"  --widechar-subst=TEKST      vervanging voor onomzetbare brede tekens\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Opties voor foutmeldingen:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                meldingen van omzettingsproblemen onderdrukken\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Opties voor informatieve uitvoer:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  een lijst van ondersteunde coderingen tonen\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      deze hulptekst tonen stoppen\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   programmaversie tonen en stoppen\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"Rapporteer gebreken in het programma aan <bug-gnu-libiconv@gnu.org>;\\n\"\n\"meld fouten in de vertaling aan <vertaling@vrijschrift.org>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Dit is vrije software: u mag het vrijelijk wijzigen en verder verspreiden.\\n\"\n\"De precieze licentie is GPL-3+: GNU General Public License versie 3 of later.\\n\"\n\"Zie http://gnu.org/licenses/gpl.html voor de volledige (Engelse) tekst.\\n\"\n\"Deze software kent GEEN GARANTIE, voor zover de wet dit toestaat.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Geschreven door %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"%s argument: Een formatteringscommando met variabele breedte is hier niet \"\n\"toegestaan.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"%s argument: Een formatteringscommando met variabele precisie is hier niet \"\n\"toegestaan.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"%s argument: Een formatteringscommando met een grootte is hier niet \"\n\"toegestaan.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"%s argument: De tekst stopt midden in een commando.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"%s argument: Het teken '%c' is geen geldige omzettingsspecificatie.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"%s argument: Het teken dat het formatteringscommando afsluit is geen geldige \"\n\"omzettingsspecificatie.\"\n\n# \"meer dan één argument (%u argumenten om precies te zijn).\" leest beter, maar\n# dan wordt de boodschap jammer genoeg te lang voor een typische regel van 80\n# tekens...\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"%s argument: De tekst verbruikt meer dan één argument: %u argument.\"\nmsgstr[1] \"\"\n\"%s argument: De tekst verbruikt meer dan één argument: %u argumenten.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"kan byte-vervanging niet omzetten naar Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"kan Unicode-vervanging niet omzetten naar de doelcodering: %s\"\n\n# \"brede tekenreeks\" klinkt mij nogal vreemd...\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"kan byte-vervanging niet omzetten naar een brede tekenreeks: %s\"\n\n# \"brede tekenvervanging\" klinkt slecht...\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"kan breedteken-vervanging niet omzetten naar de doelcodering: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"kan byte-vervanging niet omzetten naar de doelcodering: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: omzetting is onmogelijk\"\n\n# \"shift sequence\" was eerst als \"verschuivingsreeks\" vertaald, maar als heel specifiek jargon laat ik het liever onvertaald\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: onvolledig teken of onvolledige shift-sequentie\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: Invoer-/uitvoerfout\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"omzetting vanuit %s wordt niet ondersteund\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"omzetting naar %s wordt niet ondersteund\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"omzetting van %s naar %s wordt niet ondersteund\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"Typ '%s -l' voor een lijst van ondersteunde coderingen.\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(standaardinvoer)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"Invoer-/uitvoerfout\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/pl.po",
    "content": "# Polish translation for libiconv.\n# Copyright (C) 2003, 2006, 2016 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>, 2003.\n# Jakub Bogusz <qboosh@pld-linux.org>, 2006-2016.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-12 16:30+0100\\n\"\n\"Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>\\n\"\n\"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\\n\"\n\"Language: pl\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 \"\n\"|| n%100>=20) ? 1 : 2);\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Składnia: iconv [-c] [-s] [f z_kodu] [-t do_kodu] [plik ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"lub:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Polecenie '%s --help' pozwoli uzyskać więcej informacji.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Składnia: %s [OPCJA...] [-f KODOWANIE] [-t KODOWANIE] [PLIK_WEJ...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"lub:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Konwersja tekstu z jednego kodowania do innego.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Opcje sterujące formatem wejścia i wyjścia:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KODOWANIE, --from-code=KODOWANIE\\n\"\n\"                              kodowanie wejścia\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KODOWANIE, --to-code=KODOWANIE\\n\"\n\"                              kodowanie wyjścia\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Opcje sterujące zagadnieniami konwersji:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          pominięcie niekonwertowalnych znaków\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=ŁAŃCUCH_FORMATUJĄCY\\n\"\n\"                              zamiennik dla niekonwertowalnych znaków Unicode\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=ŁAŃCUCH_FORMATUJĄCY   zamiennik dla niekonwertowalnych bajtów\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=ŁAŃCUCH_FORMATUJĄCY\\n\"\n\"                              zamiennik dla niekonwertowalnych znaków szerokich\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Opcje sterujące wyjściem błędów:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                pominięcie komunikatów błędów dotyczących konwersji\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Wyjście informacyjne:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  wypisanie obsługiwanych kodowań\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      wyświetlenie tego opisu i zakończenie\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   wyświetlenie informacji o wersji i zakończenie\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Błędy proszę zgłaszać na adres <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Licencja GPLv3+: GNU GPL wersja 3 lub późniejsza <http://gnu.org/licenses/gpl.html>\\n\"\n\"To jest oprogramowanie wolnodostępne: można je modyfikować i rozpowszechniać.\\n\"\n\"Nie ma ŻADNEJ GWARANCJI w zakresie dopuszczalnym przez prawo.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Napisane przez %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"Argument %s: dyrektywa formatująca o zmiennej szerokości nie jest tutaj \"\n\"dozwolona.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"Argument %s: dyrektywa formatująca o zmiennej precyzji nie jest tutaj \"\n\"dozwolona.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"Argument %s: dyrektywa formatująca z rozmiarem nie jest tutaj dozwolona.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"Argument %s: łańcuch kończy się w środku dyrektywy.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"Argument %s: znak '%c' nie jest poprawnym określeniem konwersji.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"Argument %s: znak kończący dyrektywę formatującą nie jest poprawnym \"\n\"określeniem konwersji.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"Argument %s: łańcuch formatujący pobiera więcej niż jeden argument: %u \"\n\"argument.\"\nmsgstr[1] \"\"\n\"Argument %s: łańcuch formatujący pobiera więcej niż jeden argument: %u \"\n\"argumenty.\"\nmsgstr[2] \"\"\n\"Argument %s: łańcuch formatujący pobiera więcej niż jeden argument: %u \"\n\"argumentów.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"nie można przekonwertować zamiennika bajtu na Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"nie można przekonwertować zamiennika unicode na kodowanie docelowe: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"nie można przekonwertować zamiennika bajtu na łańcuch szeroki: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\"nie można przekonwertować zamiennika znaku szerokiego na kodowanie docelowe: \"\n\"%s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"nie można przekonwertować zamiennika bajtu na kodowanie docelowe: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: nie można skonwertować\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u niedokończony znak lub sekwencja shift\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: błąd wej./wyj.\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"konwersja z kodu %s jest nieobsługiwana\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"konwersja do kodu %s jest nieobsługiwana\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"konwersja z kodu %s do kodu %s jest nieobsługiwana\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"'%s -l' poda listę obsługiwanych kodowań\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"błąd wej./wyj.\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/pt_BR.po",
    "content": "# Brazilian Portuguese translation for libiconv\n# Copyright (C) 2016 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# based on the translation to Galician (gl) by\n# Jacobo Tarrio Barreiro <jtarrio@trasno.net>, 2002.\n# Alexandre Folle de Menezes <afmenez@terra.com.br>, 2002.\n# Rafael Fontenelle <rffontenelle@gmail.com>, 2014, 2016.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-12 10:58-0200\\n\"\n\"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>\\n\"\n\"Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge.\"\n\"net>\\n\"\n\"Language: pt_BR\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\"X-Generator: Virtaal 1.0.0-beta1\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Uso: iconv [-c] [-s] [-f fromcode] [-t tocode] [arquivo ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"ou:  iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Tente \\\"%s --help\\\" para mais informações.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Uso: %s [OPÇÃO...] [-f CODIFICAÇÃO] [-t CODIFICAÇÃO] [ENTRADA...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"ou:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Converte texto de uma codificação para outra.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Opções para controlar os formatos de entrada e saída:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f CODIFICAÇÃO, --from-code=CODIFICAÇÃO\\n\"\n\"                              a codificação de entrada\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t CODIFICAÇÃO, --to-code=CODIFICAÇÃO\\n\"\n\"                              a codificação da saída\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Opções para controlar problemas de conversão:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          descarta caracteres não conversíveis\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=TEXTOFORMATO\\n\"\n\"                              substituição de caracteres Unicode no conversíveis\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=TEXTOFORMATO   substituição para bytes não conversíveis\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=TEXTOFORMATO\\n\"\n\"                              substituição para caracteres amplos não conversíveis\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Opções para controlar saída de erro:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                suprime mensagens de erro sobre problemas de conversão\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Saída informativa:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  lista das codificações com suporte\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      exibe esta ajuda e sai\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   exibe informação da versão e sai\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Relate problemas para <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Licença GPLv3+: GNU GPL versão 3 ou posterior <http://gnu.org/licenses/gpl.html>\\n\"\n\"Esse é um software livre: você está livre para modificá-lo e redistribuí-lo.\\n\"\n\"NÃO HÁ GARANTIA, não extensão permitida pela lei.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Escrito por %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"argumento de %s: Uma diretiva de formato com uma variável de largura não \"\n\"permitida aqui.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"argumento de %s: Uma diretiva de formato com uma variável de precisão não \"\n\"permitida aqui.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"argumento de %s: Uma diretiva de formato com um tamanho não permitida aqui.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"argumento de %s: A string termina no meio de uma diretiva.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\"argumento de %s: O caractere \\\"%c\\\" não é uma especificação de conversão \"\n\"válida.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"argumento de %s: O caractere que termina a diretiva de formato não é uma \"\n\"especificação de conversão válida.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"argumento de %s: O texto de formato consume mais do que um argumento: %u \"\n\"argumento.\"\nmsgstr[1] \"\"\n\"argumento de %s: O texto de formato consume mais do que um argumento: %u \"\n\"argumentos.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"não foi possível converter substituição de bytes para Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"não foi possível converter unicode para codificação desejada: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"não foi possível converter substituição de bytes para texto amplo: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"não foi possível converter widechar para codificação desejada: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\"não foi possível converter substituição de bytes para codificação desejada: \"\n\"%s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: impossível converter\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: sequência de caracteres ou deslocamentos incompleta\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: erro de E/S\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"não há suporte à conversão de %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"não há suporte à conversão para %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"não há suporte à conversão de %s para %s\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"tente \\\"%s -l\\\" para obter a lista de codificações sem suporte\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"erro de E/S\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Uso: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [arquivo ...]\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Este é um software livre; veja o código fonte para condições de \"\n#~ \"copyright. Não\\n\"\n#~ \"existe NENHUMA garantia; nem mesmo a garantia implícita de \"\n#~ \"COMERCIABILIDADE ou\\n\"\n#~ \"ADEQUAÇÃO À QUALQUER FINALIDADE PARTICULAR.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/quot.sed",
    "content": "s/\"\\([^\"]*\\)\"/“\\1”/g\ns/`\\([^`']*\\)'/‘\\1’/g\ns/ '\\([^`']*\\)' / ‘\\1’ /g\ns/ '\\([^`']*\\)'$/ ‘\\1’/g\ns/^'\\([^`']*\\)' /‘\\1’ /g\ns/“”/\"\"/g\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/remove-potcdate.sin",
    "content": "# Sed script that remove the POT-Creation-Date line in the header entry\n# from a POT file.\n#\n# The distinction between the first and the following occurrences of the\n# pattern is achieved by looking at the hold space.\n/^\"POT-Creation-Date: .*\"$/{\nx\n# Test if the hold space is empty.\ns/P/P/\nta\n# Yes it was empty. First occurrence. Remove the line.\ng\nd\nbb\n:a\n# The hold space was nonempty. Following occurrences. Do nothing.\nx\n:b\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/rm.po",
    "content": "# translation of libiconv-1.9.1.po to Rumantsch (Rhaeto-Romance) [rm]\n# Copyright (C) 2005 Free Software Foundation, Inc.\n# This file is distributed under the same license as the PACKAGE package.\n# Florian Verdet _goto <fvgoto@linuxbourg.ch>, 2005.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.9.1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2005-02-06 15:27+0100\\n\"\n\"Last-Translator: Florian Verdet _goto <fvgoto@linuxbourg.ch>\\n\"\n\"Language-Team: Rhaeto-Romance <gnu-rumantsch@guglielmtux.ch>\\n\"\n\"Language: rm\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Generator: KBabel 1.2\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"\"\n\"Adöver: iconv [-c] [-s] [-f codificaziun d'origin] [-t codificaziun da \"\n\"destinaziun] [datoteca ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"obain:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, fuzzy, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"obain:    iconv -l\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Scrit da %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"iconv: %s: nu poss convertir\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"iconv: %s: segn incumplet o sequenza da translocaziun\\n\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, fuzzy, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"iconv: %s: \"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, fuzzy, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"iconv: %s: sbagl d'I/O\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, fuzzy, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"iconv: conversiun davent da %s na sustgnida\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, fuzzy, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"iconv: conversiun vers %s na sustgnida\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, fuzzy, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"iconv: conversiun da %s vers %s na sustgnida\\n\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, fuzzy, c-format\nmsgid \"I/O error\"\nmsgstr \"iconv: sbagl I/O\\n\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Quist es ün program liber; guarda ils texts da funtana pellas cundiziuns \"\n#~ \"da copcha.\\n\"\n#~ \"I nu da INGÜNA garanzia; neir na per MARCHADANTIBILITÀ o per\\n\"\n#~ \"l'OPPORTUNITÀ PER ÜN BÖT PARTICULAR.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Adöver: iconv [--binary] [-c] [-s] [-f codificaziun d'origin] [-t \"\n#~ \"codificaziun da destinaziun] [datoteca ...]\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/ro.po",
    "content": "# Mesajele n limba romn pentru pachetul libiconv.\n# Copyright (C) 2003 Free Software Foundation, Inc.\n# Eugen Hoanca <eugenh@urban-grafx.ro>, 2003.\n# Acest fiier este distribuit sub aceeai licen ca i pachetul libiconv\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv-1.9.1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2003-05-17 15:15+0300\\n\"\n\"Last-Translator: Eugen Hoanca <eugenh@urban-grafx.ro>\\n\"\n\"Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\\n\"\n\"Language: ro\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=ISO-8859-2\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Folosire: iconv [-c] [-s] [-f din_cod] [-t n_cod] [fiier ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"sau:   iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, fuzzy, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"sau:   iconv -l\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Scris de %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"iconv: %s: nu pot converti\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"iconv: %s: caracter sau secven de shift incomplete\\n\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, fuzzy, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"iconv: %s: erori I/O\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, fuzzy, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"iconv: conversia din %s nu este suportat\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, fuzzy, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"iconv: conversia n %s nu este suportat\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, fuzzy, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"iconv: conversia din %s n %s nu este suportat\\n\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, fuzzy, c-format\nmsgid \"I/O error\"\nmsgstr \"iconv: eroare I/O\\n\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Folosire: iconv [--binary] [-c] [-s] [-f din_cod] [-t n_cod] [fiier ...]\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Acesta este software free; citii surselepentru condiiile de copiere. \"\n#~ \"NU\\n\"\n#~ \"exist nici o garanie; nici mcarVANDABILITATEA sau MODIFICAREA NTR-UN\\n\"\n#~ \"SCOP PRIVAT.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/ru.po",
    "content": "#  libiconv.\n# Copyright (C) 2002 Free Software Foundation, Inc.\n# Dmitry S. Sivachenko <mitya@cavia.pp.ru>, 2002,2003.\n# This file is distributed under the same license as the libiconv package.\n# Dmitry S. Sivachenko <mitya@cavia.pp.ru>, 2002,2003.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.9.1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2003-06-03 17:53+0400\\n\"\n\"Last-Translator: Dmitry S. Sivachenko <mitya@cavia.pp.ru>\\n\"\n\"Language-Team: Russian <ru@li.org>\\n\"\n\"Language: ru\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=koi8-r\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \": iconv [-c] [-s] [-f fromcode] [-t tocode] [ ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \":   iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, fuzzy, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \":   iconv -l\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \": %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"iconv: %s:   \\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"iconv: %s:     \\n\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, fuzzy, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"iconv: %s:  -\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, fuzzy, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"iconv:   %s  \\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, fuzzy, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"iconv:   %s  \\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, fuzzy, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"iconv:   %s  %s  \\n\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, fuzzy, c-format\nmsgid \"I/O error\"\nmsgstr \"incov:  -\\n\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \": iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] \"\n#~ \"[ ...]\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"   ;    \\n\"\n#~ \"  .    ;   \"\n#~ \"\\n\"\n#~ \"     .\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/sk.po",
    "content": "# Slovak translation of the libiconv.\n# Copyright (C) 2002, 2003, 2008, 2016 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Marcel Telka <marcel@telka.sk>, 2002, 2003, 2008, 2016.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-13 00:02+0100\\n\"\n\"Last-Translator: Marcel Telka <marcel@telka.sk>\\n\"\n\"Language-Team: Slovak <sk-i18n@lists.linux.sk>\\n\"\n\"Language: sk\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=3; plural= (n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Použitie: iconv [-c] [-s] [-f zkódovania] [-t dokódovania] [súbor ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"alebo:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Pre viac informácií skúste použiť '%s --help'.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Použitie: %s [VOĽBA...] [-f KÓDOVANIA] [-t KÓDOVANIE] [VSTUPNÝSÚBOR...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"alebo:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Konvertuje text z jedného kódovania do iného kódovania.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Voľby ovplyvňujúce vstupný a výstupný formát:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KÓDOVANIE, --from-code=KÓDOVANIE\\n\"\n\"                              kódovanie vstupu\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KÓDOVANIE, --to-code=KÓDOVANIE\\n\"\n\"                              kódovanie výstupu\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Voľby ovplyvňujúce problémy s konverziou:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          vynechať nekonvertovateľné znaky\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=FORMÁTOVÝREŤAZEC\\n\"\n\"                              náhrada pre nekonvertovateľné znaky Unicode\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=FORMÁTOVÝREŤAZEC   náhrada pre nekonvertovateľné bajty\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=FORMÁTOVÝREŤAZEC\\n\"\n\"                              náhrada pre nekonvertovateľné široké znaky\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Voľby ovplyvňujúce chybový výstup:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                potlačí chybové správy o problémoch s konverziou\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Infomatívny výstup:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  zoznam podporovaných kódovaní\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      zobraziť túto pomoc a skončiť\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   vypísať informáciu o verzii a skončiť\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"Chyby môžete oznamovať na adresu <bug-gnu-libiconv@gnu.org> (iba anglicky).\\n\"\n\"Komentáre k slovenskému prekladu zasielajte na adresu <sk-i18n@lists.linux.\"\n\"sk>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Licencia GPLv3+: GNU GPL verzia 3 alebo novšia <http://gnu.org/licenses/gpl.html>\\n\"\n\"Toto je slobodný softvér: môžete ho voľne meniť a šíriť ďalej.\\n\"\n\"Neposkytuje sa ŽIADNA ZÁRUKA, v rozsahu povolenom zákonmi.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Napísal %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"Parameter %s: Formátovacia direktíva s premenlivou šírkou tu nie je \"\n\"prípustná.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"Parameter %s: Formátovacia direktíva s premenlivou presnosťou tu nie je \"\n\"prípustná.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"Parameter %s: Formátovacia direktíva s určením šírky tu nie je prípustná.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"Parameter %s: Reťazec končí v strede direktívy.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"Parameter %s: Znak '%c' nie je platným konverzným špecifikátorom.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"Parameter %s: Znak, ktorý ukončuje formátovaciu direktívu nie je platným \"\n\"konverzným špecifikátorom.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"Parameter %s: Formátovací reťazec pohltí viac ako jeden parameter: %u \"\n\"parametrov.\"\nmsgstr[1] \"\"\n\"Parameter %s: Formátovací reťazec pohltí viac ako jeden parameter: %u \"\n\"parameter.\"\nmsgstr[2] \"\"\n\"Parameter %s: Formátovací reťazec pohltí viac ako jeden parameter: %u \"\n\"parametre.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"nie je možné konvertovať náhradu bajtov do Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"nie je možné konvertovať náhradu Unicode do cieľového kódovania: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"nie je možné konvertovať náhradu bajtov na široký reťazec: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\"nie je možné konvertovať náhradu širokého znaku do cieľového kódovania: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"nie je možné konvertovať náhradu bajtov do cieľového kódovania: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: nie je možné konvertovať\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: nekompletný znak alebo preraďovacia sekvencia\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: V/V chyba\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"konverzia z %s nie je podporovaná\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"konverzia do %s nie je podporovaná\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"konverzia z %s do %s nie je podporovaná\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"skúste '%s -l' aby ste získali zoznam podporovaných kódovaní\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(štandardný vstup)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"V/V chyba\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/sl.po",
    "content": "# -*- mode:po; coding:utf-8; -*- Slovenian messages for libiconv.\n# Copyright (C) 2002, 2006, 2007, 2008 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Primož Peterlin <primozz.peterlin@gmail.com>, 2002, 2006, 2007, 2008.\n# $Id: libiconv-1.12.sl.po 1.3 2008/04/27 19:23:24 Primoz Exp $\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.12\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2008-04-26 09:48+0200\\n\"\n\"Last-Translator: Primož Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>\\n\"\n\"Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\\n\"\n\"Language: sl\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n\"\n\"%100==4 ? 3 : 0);\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Uporaba: iconv [-c] [-s] [-f vh_nabor] [-t izh_nabor] [datoteka ...]<\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"ali:     iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Poskusite »%s --help« za več informacij.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Uporaba: %s [IZBIRA...] [-f KODIRANJE] [-t KODIRANJE] [DATOTEKA...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"ali:     %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Pretvori besedilo iz enega kodnega nabora v drugega.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Izbire, ki določajo vhodni in izhodni zapis:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KODIRANJE, --from-code=KODIRANJE\\n\"\n\"                              kodni nabor vhoda\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KODIRANJE, --to-code=KODIRANJE\\n\"\n\"                              kodni nabor izhoda\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Izbire, ki določajo odziv na težave pri pretvorbi:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          zavrzi znake, ki jih ni mogoče pretvoriti\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=OBLIKOVNI_NIZ\\n\"\n\"                              zamenjava za nepretvorljive unikodne znake\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=OBLIKOVNI_NIZ  zamenjava za nepretvorljive bajte\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=OBLIKOVNI_NIZ\\n\"\n\"                              zamenjava za nepretvorljive široke znake\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Izbire, ki določajo izpis napak:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                brez poročil o napakah pri pretvorbi\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Informativni izpis:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  izpiši podprte nabore znakov\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      izpiši ta navodila in končaj\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   izpiši informacijo o različici in končaj\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Napake javite na <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, fuzzy, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"GPLv2+: GNU GPL, 2. izdaja ali poznejša <http://www.gnu.org/licenses/gpl.html>\\n\"\n\"To je prosto programje; lahko ga redistribuirate in/ali spreminjate.\\n\"\n\"Za izdelek ni NOBENEGA JAMSTVA, do z zakonom dovoljene meje.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Avtor %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"argument %s: oblikovna direktiva z nestalno širino tu ni dovoljena.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"argument %s: oblikovna direktiva z nestalno natančnostjo tu ni dovoljena.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"argument %s: oblikovna direktiva z velikostjo tu ni dovoljena.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"argument %s: niz se konča sredi direktive.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"argument %s: znak %c ni veljavno določilo pretvorbe.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"argument %s: znak, ki zaključuje oblikovno direktivo, ni veljavno določilo \"\n\"pretvorbe.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"argument %s: oblikovni niz porabi več kot en argument: %u argumentov.\"\nmsgstr[1] \"argument %s: oblikovni niz porabi več kot en argument: %u argument.\"\nmsgstr[2] \"\"\n\"argument %s: oblikovni niz porabi več kot en argument: %u argumenta.\"\nmsgstr[3] \"\"\n\"argument %s: oblikovni niz porabi več kot en argument: %u argumente.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"nadomestnega bajta ni mogoče pretvoriti v unikod: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"nadomestnega unikoda ni mogoče pretvoriti v ciljni nabor: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"nadomestnega bajta ni mogoče pretvoriti v široki niz: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"pretvorba nadomestnega širokega znaka v ciljni nabor ni mogoča: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"pretvorba nadomestnega bajta v ciljni nabor ni mogoča: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u pretvorba ni mogoča\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u nepopolni znak ali pomično zaporedje\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: V/I napaka\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"pretvorba iz nabora %s ni podprta\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"pretvorba v nabor %s ni podprta\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"pretvorba iz nabora %s v nabor %s ni podprta\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"poskusite »%s -l« za seznam podprtih naborov znakov\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"V/I napaka\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"To je prost program; pogoji, pod katerimi ga lahko razmnožujete in\\n\"\n#~ \"razširjate, so navedeni v izvorni kodi. Za program ni NOBENEGA jamstva,\\n\"\n#~ \"niti jamstev USTREZNOSTI ZA PRODAJO ali PRIMERNOSTI ZA UPORABO.\\n\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Uporaba: iconv [--binary] [-c] [-s] [-f vh_nabor] [-t izh_nabor] \"\n#~ \"[datoteka ...]\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/sq.po",
    "content": "# Përkthimi i mesazheve të libiconv në shqip.\n# Copyright (C) 2004 Free Software Foundation, Inc.\n# Laurent Dhima <laurenti@alblinux.net>, 2004.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.9.1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2004-08-08 00:36+0200\\n\"\n\"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\\n\"\n\"Language-Team: Albanian <translation-team-sq@lists.sourceforge.net>\\n\"\n\"Language: sq\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Përdorimi: iconv [-c] [-s] [-f ngakodi] [-t tekkodi] [file ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"ose:    iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, fuzzy, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"ose:    iconv -l\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Shkruar nga %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"iconv: %s: konvertimi është i pamundur\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"iconv: %s: simbol apo sekuencë ndryshuesish e paplotë\\n\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, fuzzy, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"iconv: %s: gabim I/O\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, fuzzy, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"iconv: konvertimi nga %s nuk suportohet\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, fuzzy, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"iconv: konvertimi në %s nuk suportohet\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, fuzzy, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"iconv: konvertimi nga %s në %s nuk suportohet\\n\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(stdin)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, fuzzy, c-format\nmsgid \"I/O error\"\nmsgstr \"iconv: gabim I/O\\n\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Përdorimi: iconv [--binary] [-c] [-s] [-f ngakodi] [-t tekkodi] [file ...]\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Ky është software i lirë; shiko burimin për kushtet e kopjimit.  NUK \"\n#~ \"jepet asnjë\\n\"\n#~ \"garanci; as për TREGËTI apo PËRDORIM PËR NJË QËLLIM TË VEÇANTË.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/sr.po",
    "content": "# Serbian translation of libiconv.\n# Copyright © 2017 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Aleksandar Jelenak <jelenak@verizon.net>, 2006.\n# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2012—2017.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv-1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2017-01-27 06:37+0200\\n\"\n\"Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\\n\"\n\"Language-Team: Serbian <(nothing)>\\n\"\n\"Language: sr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n\"\n\"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Употреба: iconv [-c] [-s] [-f из_кода] [-t у_код] [датотека ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"или:      iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Покушајте „%s --help“ за више информација.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Употреба: %s [ОПЦИЈА...] [-f КОДИРАЊЕ] [-t КОДИРАЊЕ] [УЛАЗНАДАТОТЕКА...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"или:      %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Претвара текст из једног кодирања у друго.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Опције за одређивање улазног и излазног формата:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f КОДИРАЊЕ, --from-code=КОДИРАЊЕ\\n\"\n\"                              улазно кодирање\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t КОДИРАЊЕ, --to-code=КОДИРАЊЕ\\n\"\n\"                              излазно кодирање\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Опције за управљање проблемима претварања:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          одбацује непретворљиве знакове\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=ФОРМАТНИСКА\\n\"\n\"                              замена за непретворљиве знакове Уникода\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=ФОРМАТНИСКА    замена за непретворљиве бајтове\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=ФОРМАТНИСКА\\n\"\n\"                              замена за непретворљиве широке знакове\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Опције за управљање исписа грешака:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                потискује поруке грешака о проблемима претварања\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Информативни испис:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  приказује подржана кодирања\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      приказује ову помоћ и излази\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   исписује издање и излази\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Пријавите грешке на <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Лиценца ОЈЛв3+: ГНУ ОЈЛ издање 3 или новије <http://gnu.org/licenses/gpl.html>.\\n\"\n\"Ово је слободан софтвер: слободни сте да га мењате и расподељујете.\\n\"\n\"Не постоји НИКАКВА ГАРАНЦИЈА, у оквирима дозвољеним законом.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Написао је %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"%s аргумент: Наредба формата са променљивом ширином овде није дозвољена.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"%s аргумент: Наредба формата за променљивом тачношћу овде није дозвољена.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"%s аргумент: Наредба формата са величином овде није дозвољена.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"%s аргумент: Ниска је завршила у сред наредбе.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"%s аргумент: Знак „%c“ није исправан одредник претварања.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"%s аргумент: Завршни знак наредбе формата није важећи за задавање претварања.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"%s аргумент: Ниска формата троши више од једног аргумента: %u аргумент.\"\nmsgstr[1] \"\"\n\"%s аргумент: Ниска формата троши више од једног аргумента: %u аргумента.\"\nmsgstr[2] \"\"\n\"%s аргумент: Ниска формата троши више од једног аргумента: %u аргумената.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"не могу да претворим замену бајта у Уникод: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"не могу да претворим замену уникода у циљно кодирање: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"не могу да претворим замену бајта у широку ниску: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"не могу да претворим замену широког знака у циљно кодирање: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"не могу да претворим замену бајта у циљно кодирање: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: не могу да претворим\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: непотпуни низ знака или поераја\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: У/И грешка\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"претварање из %s није подржано\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"претварање у %s није подржано\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"претварање из %s у %s није подржано\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"покушајте „%s -l“ да добијете списак подржаних кодирања\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(стдул)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"У/И грешка\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Ово је слободан софтвер; видети изворни кôд за услове умножавања. НЕ \"\n#~ \"постоји\\n\"\n#~ \"гаранција; чак ни о ТРЖИШНОЈ ВРЕДНОСТИ или ИСПУЊАВАЊУ ОДРЕЂЕНЕ ПОТРЕБЕ.\\n\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/stamp-po",
    "content": "timestamp\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/sv.po",
    "content": "# Swedish messages for libiconv.\n# Copyright (C) 2002, 2006, 2007, 2008 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Christian Rose <menthos@menthos.com>, 2002.\n# Daniel Nylander <po@danielnylander.se>, 2006, 2007, 2008.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.12\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2008-02-09 20:58+0100\\n\"\n\"Last-Translator: Daniel Nylander <po@danielnylander.se>\\n\"\n\"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\\n\"\n\"Language: sv\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=utf-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Användning: iconv [-c] [-s] [-f frånkod] [-t tillkod] [fil ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"eller: iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Prova \\\"%s --help\\\" för mer information.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Användning: %s [FLAGGA...] [-f KODNING] [-t KODNING] [INMATNINGSFIL...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"eller: %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Konverterar text från en kodning till en annan kodning.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Flaggor som styr formatet på inmatning och utmatning:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f KODNING,  --from-code=KODNING\\n\"\n\"                              kodningen på inmatningen\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t KODNING,  --to-code=KODNING\\n\"\n\"                              kodningen på utmatningen\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Flaggor som kontrollerar konverteringsproblem:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          förkasta tecken som inte går att konvertera\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=FORMATSTRÄNG\\n\"\n\"                              ersättning av Unicode-tecken som inte går att konvertera\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=FORMATSTRÄNG   ersättning av inte konverterbara byte\\n\"\n\n# Breda tecken? Finns det bättre ord?\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=FORMATSTRÄNG\\n\"\n\"                              ersättning av inte konverterbara breda tecken\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Flaggor som kontrollerar felutskrift:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                tysta felmeddelanden om konverteringsproblem\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Informativ utmatning:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  lista kodningar som stöds\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      visa denna hjälp och avsluta\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   skriv ut versionsinformation och avsluta\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"Rapportera fel till <bug-gnu-libiconv@gnu.org>.\\n\"\n\"Skicka synpunkter på översättningen till <tp-sv@listor.tp-sv.se>.\\n\"\n\n#: src/iconv.c:196\n#, fuzzy, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Licens GPLv2+: GNU GPL version 2 eller senare <http://gnu.org/licenses/gpl.html>\\n\"\n\"Det här är fri programvara: du kan ändra och distribuera den.\\n\"\n\"Det finns INGEN GARANTI, så långt lagen tillåter.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Skrivet av %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"Argument %s: Ett formatdirektiv med en variabel bredd tillåts inte här.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"Argument %s: Ett formatdirektiv med en variabel precision tillåts inte här.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"Argument %s: Ett formatdirektiv med en storlek tillåts inte här.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"Argument %s: Strängen slutar mitt i ett direktiv.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"Argument %s: Tecknet \\\"%c\\\" är inte en giltig konverteringsangivare.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"Argument %s: Tecknet som avslutar formatdirektivet är inte en giltig \"\n\"konverteringsangivare.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"Argument %s: Formatsträngen konsumerar fler än ett argument: %u argument.\"\nmsgstr[1] \"\"\n\"Argument %s: Formatsträngen konsumerar fler än ett argument: %u argument.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"kan inte konvertera byte-ersättning till Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"kan inte konvertera unicode-ersättning till målkodning: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"kan inte konvertera byte-ersättning till bred sträng: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"kan inte konvertera bredteckenersättning till målkodning: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"kan inte konvertera byte-ersättning till målkodning: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: kan inte konvertera\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: ofullständigt tecken eller skiftsekvens\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: In-/Ut-fel\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"konvertering från %s stöds inte\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"konvertering till %s stöds inte\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"konvertering från %s till %s stöds inte\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"prova \\\"%s -l\\\" för att få listan på kodningar som stöds\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(standard in)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"In-/Ut-fel\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Detta är fri programvara; se källkoden för kopieringsvillkor. Det finns\\n\"\n#~ \"INGEN garanti; inte ens för SÄLJBARHET eller LÄMPLIGHET FÖR NÅGOT\\n\"\n#~ \"SPECIELLT ÄNDAMÅL.\\n\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Användning: iconv [--binary] [-c] [-s] [-f frånkod] [-t tillkod] [fil ...]\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/tr.po",
    "content": "# libiconv Turkish translation.\n# Copyright (C) 2002 Free Software Foundation, Inc.\n# Deniz Akkus Kanca <deniz@arayan.com>, 2002.\n# This file is distributed under the same license as the libiconv package.\n# Deniz Akkus Kanca <deniz@arayan.com>, 2002.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.8\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2002-06-28 11:00+0200\\n\"\n\"Last-Translator: Deniz Akkus Kanca <deniz@arayan.com>\\n\"\n\"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\\n\"\n\"Language: tr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Kullanım: iconv [-c] [-s] [-f kaynakkod] [-t hedefkod] [dosya ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"veya:  iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, fuzzy, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"veya:  iconv -l\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Yazan: %s\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"iconv: %s: dönüştürülemedi\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, fuzzy, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"iconv: %s: eksik karakter ya da shift dizisi\\n\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, fuzzy, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"iconv: %s: I/O hatası\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, fuzzy, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"iconv: %s'den dönüşüm desteklenmiyor\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, fuzzy, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"iconv: %s'e dönüşüm desteklenmiyor\\n\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, fuzzy, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"iconv: %s'den %s'e dönüşüm desteklenmiyor\\n\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(standart girdi)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, fuzzy, c-format\nmsgid \"I/O error\"\nmsgstr \"iconv: I/O hatası\\n\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Kullanım: iconv [--binary] [-c] [-s] [-f kaynakkod] [-t hedefkod] \"\n#~ \"[dosya ...]\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Bu bir serbest yazılımdır; kopyalama kuralları için kaynak koduna \"\n#~ \"bakınız.\\n\"\n#~ \"HİÇ BİR garantisi yoktur; hatta SATILABİLİRLİĞİ veya HERHANGİ BİR AMACA\\n\"\n#~ \"UYGUNLUĞU için dahi garanti verilmez.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/uk.po",
    "content": "# Ukrainian translation of libiconv.\n# Copyright (C) 2003 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n#\n# Volodymyr M. Lisivka <lvm@mystery.lviv.net>, 2003.\n# Yuri Chornoivan <yurchor@ukr.net>, 2011, 2016.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-12 14:39+0200\\n\"\n\"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\\n\"\n\"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\\n\"\n\"Language: uk\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n\"\n\"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\"X-Generator: Lokalize 1.5\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"\"\n\"Використання: iconv [-c] [-s] [-f з_кодування] [-t у_кодування] [файл ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"або:   iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Щоб дізнатися більше, віддайте команду «%s --help».\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Використання: %s [ПАРАМЕТР...] [-f КОДУВАННЯ] [-t КОДУВАННЯ] [ФАЙЛ ВХІДНИХ ДАНИХ...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"або:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Перетворює текст у одному кодуванні на текст у іншому кодуванні.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Параметри керування форматом вхідних та вихідних даних:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f КОДУВАННЯ, --from-code=КОДУВАННЯ\\n\"\n\"                              кодування вхідних даних\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t КОДУВАННЯ, --to-code=КОДУВАННЯ\\n\"\n\"                              кодування вихідних даних\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Параметри керування обробкою помилок під час перетворення:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          викидати символи, непридатні до перетворення\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=РЯДОК_ФОРМАТУВАННЯ\\n\"\n\"                              заміна непридатних до перетворення символів Unicode\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=РЯДОК_ФОРМАТУВАННЯ заміна непридатних до перетворення байтів\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --wide-subst=РЯДОК_ФОРМАТУВАННЯ\\n\"\n\"                              заміна непридатних до перетворення «широких» символів\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Параметри керування показом повідомлень про помилки:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                придушити повідомлення щодо проблем під час перетворення\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Показ інформації:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  показати список підтримуваних кодувань\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      показати ці довідкові дані і завершити роботу\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   показати дані щодо версії і завершити роботу\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Про вади слід повідомляти на адресу <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Умови ліцензування викладено у GPLv3+: GNU GPL версії 3 або новішій, <http://gnuorg/licenses/gpl.html>\\n\"\n\"Це вільне програмне забезпечення: ви можете вільно змінювати і поширювати його.\\n\"\n\"Вам не надається ЖОДНИХ ГАРАНТІЙ, окрім гарантій передбачених законодавством.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Автор — %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"Аргумент %s: тут не можна використовувати команду форматування з визначенням \"\n\"ширини змінної.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"Аргумент %s: тут не можна використовувати команду форматування з визначенням \"\n\"точності змінної.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"Аргумент %s: тут не можна використовувати команду форматування з визначенням \"\n\"розміру.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"Аргумент %s: завершення рядка посередині команди.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\"Аргумент %s: символ «%c» не є коректним символом визначення перетворення.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"Аргумент %s: символ, що перериває команду форматування не є коректним \"\n\"символом визначення перетворення.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"Аргумент %s: слід вказати декілька аргументів, а саме %u аргументів.\"\nmsgstr[1] \"\"\n\"Аргумент %s: слід вказати декілька аргументів, а саме %u аргументів.\"\nmsgstr[2] \"\"\n\"Аргумент %s: слід вказати декілька аргументів, а саме %u аргументів.\"\nmsgstr[3] \"\"\n\"Аргумент %s: слід вказати декілька аргументів, а саме %u аргументів.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"не вдалося перетворити замінник байтів у символ Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"не вдалося перетворити замінник unicode у кодування призначення: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"не вдалося перетворити замінник байтів у «широкий» рядок: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"\"\n\"не вдалося перетворити замінник «широкого» символу у кодування призначення: \"\n\"%s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"не вдалося перетворити замінник байтів у кодування призначення: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: не вдалося перетворити\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: незавершений символ чи послідовність зміни регістру\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: помилка вводу-виводу\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"підтримки перетворення з %s не передбачено\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"підтримки перетворення у %s не передбачено\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"підтримки перетворення з %s у %s не передбачено\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"\"\n\"список кодувань, які підтримуються програмою, можна отримати командою «%s -l»\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(стд. ввід)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"помилка вводу-виводу\"\n\n#~ msgid \"\"\n#~ \"Usage: iconv [--binary] [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\n#~ msgstr \"\"\n#~ \"Використання:\\n\"\n#~ \"  iconv [--binary] [-c] [-s] [-f з_кодування] [-t у_кодування] [файл ...]\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Це вільне програмне забезпечення; умови копіювання приведені у\\n\"\n#~ \"джерельних текстах програми.  Нема НІЯКИХ гарантій; навіть гарантії \"\n#~ \"КОМЕРЦІЙНОЇ\\n\"\n#~ \"ЦІННОСТІ або ПРИДАТНОСТІ ДЛЯ КОНКРЕТНОЇ ЦІЛІ.\\n\"\n\n#~ msgid \"iconv: %s: \"\n#~ msgstr \"iconv: %s: \"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/vi.po",
    "content": "# Vietnamese Translation for Libiconv.\n# Bản dịch tiếng Việt dành cho gói libiconv.\n# Copyright © 2007 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Clytie Siddall <clytie@riverland.net.au>, 2005-2007.\n# Trần Ngọc Quân <vnwildman@gmail.com>, 2016.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.15-pre1\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2016-12-13 07:27+0700\\n\"\n\"Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\\n\"\n\"Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\"X-Generator: Gtranslator 2.91.7\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"Cách dùng: iconv [-c] [-s] [-f từ_mã] [-t đến_mã] [tập_tin …]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"hoặc:      iconv -l\"\n\n#: src/iconv.c:110\n#, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Hãy chạy lệnh “%s --help” để biết thêm thông tin.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Cách dùng: %s [TÙY_CHỌN…] [-f BẢNG_MÃ] [-t BẢNG_MÃ] [TẬP_TIN_NHẬP…]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"hoặc:      %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Chuyển đổi văn bản từ bảng mã này sang bảng mã khác.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Các tùy chọn điều khiển định dạng nhập vào và xuất ra:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f BẢNG_MÃ, --from-code=BẢNG_MÃ\\n\"\n\"                              bảng mã của đầu vào\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t BẢNG_MÃ, --to-code=BẢNG_MÃ\\n\"\n\"                              bảng mã của đầu ra\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Các tùy chọn điều khiển vấn đề chuyển đổi:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          loại bỏ các ký tự không thể chuyển đổi\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=CHUỖI_ĐỊNH_DẠNG\\n\"\n\"                              thay thế các ký tự Unicode không thể chuyển đổi\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=CHUỖI_ĐỊNH_DẠNG      thay thế các byte không thể chuyển đổi\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=CHUỖI_ĐỊNH_DẠNG\\n\"\n\"                              thay thế các ký tự rộng không thể chuyển đổi\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Các tùy chọn điều khiển kết xuất lỗi:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                thu hồi các thông điệp về vấn đề chuyển đổi\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Xuất thông tin:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  liệt kê các bảng mã được hỗ trợ\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      hiển thị trợ giúp này rồi thoát\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   hiển thị thông tin về phiên bản rồi thoát\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"Thông báo lỗi cho <bug-gnu-libiconv@gnu.org>.\\n\"\n\"Thông báo lỗi dịch cho: <http://translationproject.org/team/vi.html>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"Giấy phép GPL pb3+ : Giấy phép Công cộng GNU phiên bản 3 hay sau <http://gnu.org/licenses/gpl.html>\\n\"\n\"Đây là phần mềm tự do: bạn có quyền sửa đổi và phát hành lại nó.\\n\"\n\"KHÔNG CÓ BẢO HÀNH GÌ CẢ, với điều khiển được pháp luật cho phép.\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Viết bởi %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"Đối số %s: ở đây không cho phép chỉ thị định dạng có độ rộng thay đổi.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"Đối số %s: ở đây không cho phép chỉ thị định dạng có độ chính xác thay đổi.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"Đối số %s: ở đây không cho phép chỉ thị định dạng có kích cỡ.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"Đối số %s: chuỗi kết thúc ở giữa chỉ thị.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"Đối số %s: ký tự “%c” không phải là bộ xác định chuyển đổi hợp lệ.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"Đối số %s: ký tự kết thúc chỉ thị định dạng không phải là bộ xác định chuyển \"\n\"đổi hợp lệ.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"%s đối số : chuỗi định dạng ăn nhiều đối số : %u đối số.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"không thể chuyển đổi sự thay thế byte sang Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"không thể chuyển đổi sự thay thế Unicode sang bảng mã đích: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"không thể chuyển đổi sự thay thế byte sang chuỗi rộng: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"không thể chuyển đổi sự thay thế ký tự rộng sang bảng mã đích: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"không thể chuyển đổi sự thay thế byte sang bảng mã đích: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: không thể chuyển đổi\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: dây kiểu ký tự hay dịch chưa hoàn thành\"\n\n# Variable: don't translate / Biến: đừng dịch\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: lỗi V/R\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"không hỗ trợ khả năng chuyển đổi từ %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"không hỗ trợ khả năng chuyển đổi sang %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"không hỗ trợ khả năng chuyển đổi từ %s sang %s\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"hãy thử lệnh “%s -l” để xem danh sách các bảng mã được hỗ trợ\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(đầu vào tiêu chuẩn)\"\n\n# Variable: don't translate / Biến: đừng dịch\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"Lỗi V/R\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Chương trình này là phần mềm tự do; xem mã nguồn để tìm điều kiện sao \"\n#~ \"chép.\\n\"\n#~ \"KHÔNG CÓ BẢO HÀNH GÌ CẢ, THẬM CHÍ KHÔNG CÓ BẢO ĐẢM ĐƯỢC NGỤ Ý\\n\"\n#~ \"KHẢ NĂNG BÁN HAY KHẢ NĂNG LÀM ĐƯỢC VIỆC DỨT KHOÁT.\\n\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/wa.po",
    "content": "# Translation of tuxpaint into the walloon language.\n# Copyright (C) 2003 Free Software Foundation, Inc.\n# Pablo Saratxaga <pablo@walon.org>, 2003, 2004, 2007.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.11\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2007-08-28 15:50+0200\\n\"\n\"Last-Translator: Pablo Saratxaga <pablo@walon.org>\\n\"\n\"Language-Team: Walloon <linux-wa@walon.org>\\n\"\n\"Language: wa\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Generator: KBabel 1.10.2\\n\"\n\"Plural-Forms: nplurals=2; plural=n > 1;\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"\"\n\"Po s' è siervi: iconv [-c] [-s] [-f ecôd._sourd] [-t ecôd._såme] [fitchî...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"oudonbén:       iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"Sayîz «%s --help» po pus di racsegnes.\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"Po s' è siervi: %s [TCHUZE...] [-f ECÔDAEDJE] [FITCHÎ_INTRÊYE...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"oudonbén:    %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"Kiviersaedje di tecse d' èn ecôdaedje a èn ôte ecôdaedje.\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"Tchuzes po controler li cogne di l' intrêye et l' rexhowe:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f ECÔDAEDJE, --from-code=ECÔDAEDJE\\n\"\n\"                              l' ecôdaedje do tecse d' intrêye\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t ECÔDAEDJE, --to-code=ECÔDAEDJE\\n\"\n\"                              l' ecôdaedje do tecse e rexhowe\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"Tchuzes po controler les problinmes di kiviersaedje:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          leyî toumer les caracteres ki n' polèt nén esse kiviersés\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=TCHINNE_FORMAT\\n\"\n\"                              replaeçaedje po les caracteres unicôde ki n' polèt nén esse kiviersés\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=TCHINNE_FORMAT   replaeçaedje po les octets ki n' polèt nén esse kiviersés\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=TCHINNE_FORMAT\\n\"\n\"                              replaeçaedje po les caracteres wchar ki n' polèt nén esse kiviersés\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"Tchuzes po controler li rexhowe d' arokes:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                èn nén håyner les messaedjes d' aroke so les probinmes di cviersaedje\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"Rexhowe d' informåcion:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  djivêye des ecôdaedjes sopoirtés\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      mostere ci messaedje d' aidance chal.\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   mostere des informåcions sol modêye do programe\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"Evoyîz les rapoirts di bugs a <bug-gnu-libiconv@gnu.org>.\\n\"\n\n#: src/iconv.c:196\n#, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"Sicrît pa %s.\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"\"\n\"årgumint «%s»: Ene directive di format avou ene lårdjeu variåve ni s' pout \"\n\"nén eployî chal.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"\"\n\"årgumint «%s»: Ene directive di format avou ene precizion variåve ni s' pout \"\n\"nén eployî chal.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"\"\n\"årgumint «%s»: Ene directive di format avou ene grandeu ni s' pout nén \"\n\"eployî chal.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"årgumint «%s»: Li tchinne finixh e plin mitan d' ene directive.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"\"\n\"årgumint «%s»: Li caractere «%c» n' est nén on specifieu d' kiviersaedje \"\n\"valide.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"\"\n\"årgumint «%s»: Li caractere ki finixh li directive di format n' est nén on \"\n\"specifieu d' kiviersaedje valide.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"\"\n\"årgumint «%s»: Li tchinne di format eploye pus d' èn årgumint: %u årgumint.\"\nmsgstr[1] \"\"\n\"årgumint «%s»: Li tchinne di format eploye pus d' èn årgumint: %u årgumints.\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"dji n' sai cvierser des replaeçaedjes d' octets viè unicôde: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"\"\n\"dji n' sai cvierser des replaeçaedjes unicôde viè l' ecôdaedje såme: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"\"\n\"dji n' sai cvierser des replaeçaedjes d' octets viè des tchinnes wchar: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"dji n' sai cvierser des replaeçaedjes wchar viè l' ecôdaedje såme: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"\"\n\"dji n' sai cvierser des replaeçaedjes d' octets viè l' ecôdaedje såme: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: dji n' sai fé l' kiviersaedje\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s: %u:%u: caractere ou secwince di candjmint nén complete\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: aroke d' intrêye/rexhowe\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"li cviersaedje a pårti d' l' ecôdaedje %s n' est nén sopoirté\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"li cviersaedje viè l' ecôdaedje %s n' est nén sopoirté\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"li cviersaedje di l' ecôdaedje %s viè %s n' est nén sopoirté\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"sayîz «%s -l» po-z aveur li djivêye des ecôdaedjes sopoirtés\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(intrêye sitandård)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"Aroke d' I/R\"\n\n#~ msgid \"\"\n#~ \"This is free software; see the source for copying conditions.  There is \"\n#~ \"NO\\n\"\n#~ \"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR \"\n#~ \"PURPOSE.\\n\"\n#~ msgstr \"\"\n#~ \"Çouchal, c' est on libe programe; vos l' poloz bén spåde et sel poloz vs\\n\"\n#~ \"bén candjî tot shuvant li Licince Publike Djeneråle (GPL)\\n\"\n#~ \"I n' a NOLE WAERANTEYE; nén minme ki vos VINDRÎZ bén\\n\"\n#~ \"li programe ou ki vos vs è SIEVRÎZ BÉN PO ENE SÔRE OU L' ÔTE.\\n\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/zh_CN.po",
    "content": "# libiconv Simplified Chinese translation\n# Copyright (C) 2003 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Wang Jian <lark@linux.net.cn>, 2003\n# Ji ZhengYu <zhengyuji@gmail.com>, 2008\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.12\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2008-11-12 09:51+0800\\n\"\n\"Last-Translator: Ji ZhengYu <zhengyuji@gmail.com>\\n\"\n\"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\\n\"\n\"Language: zh_CN\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"用法：iconv [-c] [-s] [-f 输入编码] [-t 输出编码] [文件 ...]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"或：  iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"尝试‘%s --help’以获得更多信息。\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"用法: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"或者: %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"将文本从一种编码转换成另一种编码。\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"控制输入输出格式的选项:\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              输入编码\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              输出编码\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"控制字符转换的选项:\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          忽略不可转换的字符\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              替代不可转换的 Unicode 字符\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=FORMATSTRING   替代不可转换的字节\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              替代不可转换的宽字符\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"控制错误输出的选项:\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                不显示有关转换出错的信息\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"输出信息:\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  列出支持的编码\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      显示此帮助并退出\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   显示版本信息并退出\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"请发送错误报告至 <bug-gnu-libiconv@gnu.org>。\\n\"\n\"请将翻译错误发送至 <translation-team-zh-cn@lists.sourceforge.net>。\\n\"\n\n#: src/iconv.c:196\n#, fuzzy, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"GPLv2+ 版权协议: GNU GPL 版本 2 或更高版本 <http://gnu.org/licenses/gpl.html>\\n\"\n\"此软件为自由软件: 您可自由得更改并重新分布它。\\n\"\n\"在法律所允许的范围内，没有任何担保。\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"作者 %s。\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"%s 参数: 此处不允许用可变长度的命令格式。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"%s 参数: 此处不允许用可变精度的命令格式。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"%s 参数: 此处不允许用含大小的命令格式。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"%s 参数: 字符串在命令中部终止。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"%s 参数: 字符‘%c’不是有效的转义符。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"%s 参数: 用于终止命令格式的字符不是有效的转义符。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"%s 参数: 格式字符串需要更多的参数: %u 参数。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"无法将欲替换字节转换成 Unicode: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"无法将欲替换 unicode 字元转换成目标编码: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"无法将欲替换字节转换成宽字符串: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"无法将欲替换的宽字符转换成目标编码: %s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"无法将欲替换字节转换成目标编码: %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u: 无法转换\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u: 不完整的字符或者替换序列\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s: 输入/输出错误\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"不支持从 %s 进行转换\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"不支持转换到 %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"不支持从 %s 转换到 %s\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"尝试用‘%s -l’获取所支持的编码列表\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(标准输入)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"输入/输出错误\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/po/zh_TW.po",
    "content": "# Traditional Chinese Messages for libiconv.\n# Copyright (C) 2003, 05 Free Software Foundation, Inc.\n# This file is distributed under the same license as the libiconv package.\n# Wang Jian <lark@linux.net.cn>, 2003.\n# Wei-Lun Chao <bluebat@member.fsf.org>, 2005, 2013.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: libiconv 1.12\\n\"\n\"Report-Msgid-Bugs-To: bug-gnu-libiconv@gnu.org\\n\"\n\"POT-Creation-Date: 2016-12-04 17:16+0100\\n\"\n\"PO-Revision-Date: 2013-05-31 23:39+0800\\n\"\n\"Last-Translator: Wei-Lun Chao <bluebat@member.fsf.org>\\n\"\n\"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\\n\"\n\"Language: zh_TW\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Bugs: Report translation errors to the Language-Team address.\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#. TRANSLATORS: The first line of the short usage message.\n#: src/iconv.c:104\nmsgid \"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\"\nmsgstr \"用法：iconv [-c] [-s] [-f 來源編碼] [-t 目的編碼] [檔案 …]\"\n\n#. TRANSLATORS: The second line of the short usage message.\n#. Align it correctly against the first line.\n#: src/iconv.c:108\nmsgid \"or:    iconv -l\"\nmsgstr \"或：  iconv -l\"\n\n#: src/iconv.c:110\n#, fuzzy, c-format\nmsgid \"Try '%s --help' for more information.\\n\"\nmsgstr \"嘗試 %s --help 以獲得更多資訊。\\n\"\n\n#. TRANSLATORS: The first line of the long usage message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:115\n#, c-format, no-wrap\nmsgid \"Usage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"\nmsgstr \"用法：%s [選項…] [-f 編碼] [-t 編碼] [輸入檔…]\\n\"\n\n#. TRANSLATORS: The second line of the long usage message.\n#. Align it correctly against the first line.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:122\n#, c-format, no-wrap\nmsgid \"or:    %s -l\\n\"\nmsgstr \"或：   %s -l\\n\"\n\n#. TRANSLATORS: Description of the iconv program.\n#: src/iconv.c:128\n#, c-format, no-wrap\nmsgid \"Converts text from one encoding to another encoding.\\n\"\nmsgstr \"將文字從一種編碼轉換到另一種編碼。\\n\"\n\n#: src/iconv.c:132\n#, c-format, no-wrap\nmsgid \"Options controlling the input and output format:\\n\"\nmsgstr \"控制輸入與輸出格式的選項：\\n\"\n\n#: src/iconv.c:135\n#, c-format, no-wrap\nmsgid \"\"\n\"  -f ENCODING, --from-code=ENCODING\\n\"\n\"                              the encoding of the input\\n\"\nmsgstr \"\"\n\"  -f 編碼, --from-code=編碼\\n\"\n\"                              輸入的編碼\\n\"\n\n#: src/iconv.c:139\n#, c-format, no-wrap\nmsgid \"\"\n\"  -t ENCODING, --to-code=ENCODING\\n\"\n\"                              the encoding of the output\\n\"\nmsgstr \"\"\n\"  -t 編碼, --to-code=編碼\\n\"\n\"                              輸出的編碼\\n\"\n\n#: src/iconv.c:144\n#, c-format, no-wrap\nmsgid \"Options controlling conversion problems:\\n\"\nmsgstr \"控制轉換問題的選項：\\n\"\n\n#: src/iconv.c:147\n#, c-format, no-wrap\nmsgid \"  -c                          discard unconvertible characters\\n\"\nmsgstr \"  -c                          捨棄無法轉換的字元\\n\"\n\n#: src/iconv.c:150\n#, c-format, no-wrap\nmsgid \"\"\n\"  --unicode-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible Unicode characters\\n\"\nmsgstr \"\"\n\"  --unicode-subst=格式字串\\n\"\n\"                              做為無法轉換的萬國碼替代字元\\n\"\n\n#: src/iconv.c:154\n#, c-format, no-wrap\nmsgid \"  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"\nmsgstr \"  --byte-subst=格式字串       做為無法轉換的替代位元組\\n\"\n\n#: src/iconv.c:157\n#, c-format, no-wrap\nmsgid \"\"\n\"  --widechar-subst=FORMATSTRING\\n\"\n\"                              substitution for unconvertible wide characters\\n\"\nmsgstr \"\"\n\"  --widechar-subst=格式字串\\n\"\n\"                              做為無法轉換的替代寬字元\\n\"\n\n#: src/iconv.c:162\n#, c-format, no-wrap\nmsgid \"Options controlling error output:\\n\"\nmsgstr \"控制錯誤輸出的選項：\\n\"\n\n#: src/iconv.c:165\n#, c-format, no-wrap\nmsgid \"  -s, --silent                suppress error messages about conversion problems\\n\"\nmsgstr \"  -s, --silent                抑制關於轉換問題的錯誤訊息\\n\"\n\n#: src/iconv.c:169\n#, c-format, no-wrap\nmsgid \"Informative output:\\n\"\nmsgstr \"詳細資訊的輸出：\\n\"\n\n#: src/iconv.c:172\n#, c-format, no-wrap\nmsgid \"  -l, --list                  list the supported encodings\\n\"\nmsgstr \"  -l, --list                  清單支援的編碼\\n\"\n\n#: src/iconv.c:175\n#, c-format, no-wrap\nmsgid \"  --help                      display this help and exit\\n\"\nmsgstr \"  --help                      顯示這份說明然後離開\\n\"\n\n#: src/iconv.c:178\n#, c-format, no-wrap\nmsgid \"  --version                   output version information and exit\\n\"\nmsgstr \"  --version                   輸出版本資訊然後離開\\n\"\n\n#. TRANSLATORS: The placeholder indicates the bug-reporting address\n#. for this package.  Please add _another line_ saying\n#. \"Report translation bugs to <...>\\n\" with the address for translation\n#. bugs (typically your translation team's web or email address).\n#: src/iconv.c:185\nmsgid \"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"\nmsgstr \"\"\n\"將錯誤通報給 <bug-gnu-libiconv@gnu.org>，\\n\"\n\"翻譯錯誤通報給 <zh-l10n@linux.org.tw>，\\n\"\n\n#: src/iconv.c:196\n#, fuzzy, no-wrap\nmsgid \"\"\n\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\"\n\"This is free software: you are free to change and redistribute it.\\n\"\n\"There is NO WARRANTY, to the extent permitted by law.\\n\"\nmsgstr \"\"\n\"授權 GPLv2+: GNU GPL 第二版或後續版本 <http://gnu.org/licenses/gpl.html>\\n\"\n\"這是自由軟體：您可以自由變更和再次散布它。\\n\"\n\"在法律所允許的範圍內不做任何擔保。\\n\"\n\n#. TRANSLATORS: The %s placeholder expands to an author's name.\n#: src/iconv.c:202\n#, c-format\nmsgid \"Written by %s.\\n\"\nmsgstr \"作者 %s。\\n\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:296\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable width is not allowed here.\"\nmsgstr \"%s 引數：這裡不允許具備可變寬度的格式指令。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:311\n#, c-format\nmsgid \"\"\n\"%s argument: A format directive with a variable precision is not allowed \"\n\"here.\"\nmsgstr \"%s 引數：這裡不允許具備可變精確度的格式指令。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:327\n#, c-format\nmsgid \"%s argument: A format directive with a size is not allowed here.\"\nmsgstr \"%s 引數：這裡不允許具備大小的格式指令。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:369\n#, c-format\nmsgid \"%s argument: The string ends in the middle of a directive.\"\nmsgstr \"%s 引數：字串結束於指令中間。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %c placeholder expands to an unknown format directive.\n#: src/iconv.c:376\n#, c-format\nmsgid \"%s argument: The character '%c' is not a valid conversion specifier.\"\nmsgstr \"%s 引數：字元 %c 並非有效的轉換符號。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#: src/iconv.c:382\n#, c-format\nmsgid \"\"\n\"%s argument: The character that terminates the format directive is not a \"\n\"valid conversion specifier.\"\nmsgstr \"%s 引數：終止格式指令的字元並非有效的轉換符號。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a command-line option.\n#. The %u placeholder expands to the number of arguments consumed by the format string.\n#: src/iconv.c:398\n#, c-format\nmsgid \"\"\n\"%s argument: The format string consumes more than one argument: %u argument.\"\nmsgid_plural \"\"\n\"%s argument: The format string consumes more than one argument: %u arguments.\"\nmsgstr[0] \"%s 引數：格式字串耗用超過一個引數：%u 個引數。\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:456\n#, c-format\nmsgid \"cannot convert byte substitution to Unicode: %s\"\nmsgstr \"無法轉換替代位元組到萬國碼：%s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --unicode-subst.\n#: src/iconv.c:496\n#, c-format\nmsgid \"cannot convert unicode substitution to target encoding: %s\"\nmsgstr \"無法轉換替代萬國碼到目標編碼：%s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:537\n#, c-format\nmsgid \"cannot convert byte substitution to wide string: %s\"\nmsgstr \"無法轉換替代位元組到寬字串：%s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --widechar-subst.\n#: src/iconv.c:578\n#, c-format\nmsgid \"cannot convert widechar substitution to target encoding: %s\"\nmsgstr \"無法轉換替代寬字元到目標編碼：%s\"\n\n#. TRANSLATORS: An error message.\n#. The %s placeholder expands to a piece of text, specified through --byte-subst.\n#: src/iconv.c:619\n#, c-format\nmsgid \"cannot convert byte substitution to target encoding: %s\"\nmsgstr \"無法轉換替代位元組到目標編碼：%s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:638\n#, c-format\nmsgid \"%s:%u:%u: cannot convert\"\nmsgstr \"%s:%u:%u：無法轉換\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#. A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n#. this concept exists only for \"stateful\" encodings like ISO-2022-JP.\n#: src/iconv.c:652\n#, c-format\nmsgid \"%s:%u:%u: incomplete character or shift sequence\"\nmsgstr \"%s:%u:%u：不完整的字元或是換碼序列\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The placeholders expand to the input file name, a line number, and a column number.\n#: src/iconv.c:665\n#, c-format\nmsgid \"%s:%u:%u\"\nmsgstr \"%s:%u:%u\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the input file name.\n#: src/iconv.c:826\n#, c-format\nmsgid \"%s: I/O error\"\nmsgstr \"%s：輸入輸出錯誤\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --from-code.\n#: src/iconv.c:1015\n#, c-format\nmsgid \"conversion from %s unsupported\"\nmsgstr \"不支援從 %s 進行轉換\"\n\n#. TRANSLATORS: An error message.\n#. The placeholder expands to the encoding name, specified through --to-code.\n#: src/iconv.c:1021\n#, c-format\nmsgid \"conversion to %s unsupported\"\nmsgstr \"不支援轉換到 %s\"\n\n#. TRANSLATORS: An error message.\n#. The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.\n#: src/iconv.c:1027\n#, c-format\nmsgid \"conversion from %s to %s unsupported\"\nmsgstr \"不支援從 %s 轉換到 %s\"\n\n#. TRANSLATORS: Additional advice after an error message.\n#. The %s placeholder expands to the program name.\n#: src/iconv.c:1032\n#, c-format\nmsgid \"try '%s -l' to get the list of supported encodings\"\nmsgstr \"嘗試 %s -l 以獲得支援的編碼清單\"\n\n#. TRANSLATORS: A filename substitute denoting standard input.\n#: src/iconv.c:1089\nmsgid \"(stdin)\"\nmsgstr \"(標準輸入)\"\n\n#. TRANSLATORS: The first part of an error message.\n#. It is followed by a colon and a detail message.\n#. The %s placeholder expands to the input file name.\n#: src/iconv.c:1101\n#, c-format\nmsgid \"%s\"\nmsgstr \"%s\"\n\n#. TRANSLATORS: An error message.\n#: src/iconv.c:1115\n#, c-format\nmsgid \"I/O error\"\nmsgstr \"輸入輸出錯誤\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/preload/Makefile",
    "content": "# Makefile for libiconv/preload\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = .\n\n# Directories used by \"make install\":\nprefix = /usr/local\nlocal_prefix = /usr/local\nexec_prefix = ${prefix}\nlibdir = ${exec_prefix}/lib\n\n# Programs used by \"make\":\nCC = gcc\nCFLAGS = -g -O2 -fvisibility=hidden\nCPPFLAGS = \nLDFLAGS = \nINCLUDES = -I../lib -I$(srcdir)/../lib -I../include -I$(srcdir)/../include -I.. -I$(srcdir)/..\n# -DBUILDING_LIBICONV: Change expansion of LIBICONV_DLL_EXPORTED macro.\n# -DBUILDING_DLL: Change expansion of RELOCATABLE_DLL_EXPORTED macro.\nDEFS = -DLIBDIR=\\\"$(libdir)\\\" -DBUILDING_LIBICONV -DBUILDING_DLL \\\n-DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\\\"$(libdir)\\\" -DNO_XMALLOC \\\n-Dset_relocation_prefix=libiconv_set_relocation_prefix \\\n-Drelocate=libiconv_relocate -DPACKAGE_NAME=\\\"libiconv\\\" -DPACKAGE_TARNAME=\\\"libiconv\\\" -DPACKAGE_VERSION=\\\"0\\\" -DPACKAGE_STRING=\\\"libiconv\\ 0\\\" -DPACKAGE_BUGREPORT=\\\"\\\" -DPACKAGE_URL=\\\"\\\" -DINSTALLPREFIX=\\\"/usr/local\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -D__EXTENSIONS__=1 -D_ALL_SOURCE=1 -D_DARWIN_C_SOURCE=1 -D_GNU_SOURCE=1 -D_POSIX_PTHREAD_SEMANTICS=1 -D__STDC_WANT_IEC_60559_ATTRIBS_EXT__=1 -D__STDC_WANT_IEC_60559_BFP_EXT__=1 -D__STDC_WANT_IEC_60559_DFP_EXT__=1 -D__STDC_WANT_IEC_60559_FUNCS_EXT__=1 -D__STDC_WANT_IEC_60559_TYPES_EXT__=1 -D__STDC_WANT_LIB_EXT2__=1 -D__STDC_WANT_MATH_SPEC_FUNCS__=1 -D_TANDEM_SOURCE=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\\\".libs/\\\" -DHAVE_VISIBILITY=1\nLIBTOOL = /bin/sh $(top_builddir)/libtool\nLIBTOOL_COMPILE = $(LIBTOOL) --mode=compile\nLIBTOOL_LINK = $(LIBTOOL) --mode=link\nLN_S = ln -s\nRM = rm -f\n\n# Programs used by \"make install\":\nINSTALL = /usr/bin/install -c\nINSTALL_PROGRAM = ${INSTALL}\nINSTALL_DATA = ${INSTALL} -m 644\nmkinstalldirs = $(SHELL) ./build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\n# Needed by $(LIBTOOL).\ntop_builddir = .\n\nSOURCES = $(srcdir)/../lib/iconv.c $(srcdir)/../libcharset/lib/localcharset.c $(srcdir)/../lib/relocatable.c\n\nall : \n\npreloadable_libiconv.so : $(SOURCES)\n\t$(RM) -r objects\n\tmkdir objects && \\\n\tfor f in $(SOURCES); do \\\n\t  $(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEFS) -DLIBICONV_PLUG -c $$f -o objects/`basename $$f | sed -e 's,\\.c$$,.o,'` || exit 1; \\\n\tdone && \\\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) -o libiconv.la -rpath $(libdir) -no-undefined objects/*.lo && \\\n\t$(RM) -r objects\n\tcp .libs/libiconv.so preloadable_libiconv.so\n\ninstall : all force\n\tif [ ! -d $(DESTDIR)$(libdir) ] ; then $(mkinstalldirs) $(DESTDIR)$(libdir) ; fi\n\tif test -n \"\"; then $(INSTALL_DATA)  $(DESTDIR)$(libdir)/.new && mv $(DESTDIR)$(libdir)/.new $(DESTDIR)$(libdir)/ ; fi\n\ninstall-strip : install\n\ninstalldirs : force\n\tif [ ! -d $(DESTDIR)$(libdir) ] ; then $(mkinstalldirs) $(DESTDIR)$(libdir) ; fi\n\nuninstall : force\n\tif test -n \"\"; then $(RM) $(DESTDIR)$(libdir)/ ; fi\n\ncheck : all\n\nmostlyclean : clean\n\nclean : force\n\t$(RM) *.o *.lo *.a *.la preloadable_libiconv* core *.stackdump so_locations\n\t$(RM) -r .libs _libs objects\n\ndistclean : clean\n\t$(RM) config.status config.log config.cache Makefile libtool\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  configure.ac Makefile.in Makefile.devel\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES = \\\n  aclocal.m4 configure\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/preload/Makefile.devel",
    "content": "# This is the developer's makefile, not the user's makefile.\n# Don't use it unless you know exactly what you do!\n\nSHELL = /bin/sh\nMAKE = make\nAUTOCONF = autoconf-2.69\nACLOCAL = aclocal-1.15\nCP = cp\nRM = rm -f\n\nall : configures\n\naclocal.m4 : $(wildcard ../m4/*.m4)\n\t$(ACLOCAL) -I ../m4 -I ../srcm4 --output=$@\n\nconfigures : configure\n\nconfigure : configure.ac aclocal.m4\n\t$(AUTOCONF)\n\ntotally-clean : all\n\trm -f aclocal.m4 configure\n\nforce :\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/preload/Makefile.in",
    "content": "# Makefile for libiconv/preload\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = @srcdir@\n\n# Directories used by \"make install\":\nprefix = @prefix@\nlocal_prefix = /usr/local\nexec_prefix = @exec_prefix@\nlibdir = @libdir@\n\n# Programs used by \"make\":\nCC = @CC@\nCFLAGS = @CFLAGS@ @CFLAG_VISIBILITY@\nCPPFLAGS = @CPPFLAGS@\nLDFLAGS = @LDFLAGS@\nINCLUDES = -I../lib -I$(srcdir)/../lib -I../include -I$(srcdir)/../include -I.. -I$(srcdir)/..\n# -DBUILDING_LIBICONV: Change expansion of LIBICONV_DLL_EXPORTED macro.\n# -DBUILDING_DLL: Change expansion of RELOCATABLE_DLL_EXPORTED macro.\nDEFS = -DLIBDIR=\\\"$(libdir)\\\" -DBUILDING_LIBICONV -DBUILDING_DLL \\\n-DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\\\"$(libdir)\\\" -DNO_XMALLOC \\\n-Dset_relocation_prefix=libiconv_set_relocation_prefix \\\n-Drelocate=libiconv_relocate @DEFS@\nLIBTOOL = @LIBTOOL@\nLIBTOOL_COMPILE = $(LIBTOOL) --mode=compile\nLIBTOOL_LINK = $(LIBTOOL) --mode=link\nLN_S = @LN_S@\nRM = rm -f\n\n# Programs used by \"make install\":\nINSTALL = @INSTALL@\nINSTALL_PROGRAM = @INSTALL_PROGRAM@\nINSTALL_DATA = @INSTALL_DATA@\nmkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\n# Needed by $(LIBTOOL).\ntop_builddir = .\n\nSOURCES = $(srcdir)/../lib/iconv.c $(srcdir)/../libcharset/lib/localcharset.c $(srcdir)/../lib/relocatable.c\n\nall : @PLUGLIB@\n\npreloadable_libiconv.so : $(SOURCES)\n\t$(RM) -r objects\n\tmkdir objects && \\\n\tfor f in $(SOURCES); do \\\n\t  $(LIBTOOL_COMPILE) $(CC) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEFS) -DLIBICONV_PLUG -c $$f -o objects/`basename $$f | sed -e 's,\\.c$$,.o,'` || exit 1; \\\n\tdone && \\\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) -o libiconv.la -rpath $(libdir) -no-undefined objects/*.lo && \\\n\t$(RM) -r objects\n\tcp .libs/libiconv.so preloadable_libiconv.so\n\ninstall : all force\n\tif [ ! -d $(DESTDIR)$(libdir) ] ; then $(mkinstalldirs) $(DESTDIR)$(libdir) ; fi\n\tif test -n \"@PLUGLIB@\"; then $(INSTALL_DATA) @PLUGLIB@ $(DESTDIR)$(libdir)/@PLUGLIB@.new && mv $(DESTDIR)$(libdir)/@PLUGLIB@.new $(DESTDIR)$(libdir)/@PLUGLIB@ ; fi\n\ninstall-strip : install\n\ninstalldirs : force\n\tif [ ! -d $(DESTDIR)$(libdir) ] ; then $(mkinstalldirs) $(DESTDIR)$(libdir) ; fi\n\nuninstall : force\n\tif test -n \"@PLUGLIB@\"; then $(RM) $(DESTDIR)$(libdir)/@PLUGLIB@ ; fi\n\ncheck : all\n\nmostlyclean : clean\n\nclean : force\n\t$(RM) *.o *.lo *.a *.la preloadable_libiconv* core *.stackdump so_locations\n\t$(RM) -r .libs _libs objects\n\ndistclean : clean\n\t$(RM) config.status config.log config.cache Makefile libtool\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  configure.ac Makefile.in Makefile.devel\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES = \\\n  aclocal.m4 configure\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/preload/aclocal.m4",
    "content": "# generated automatically by aclocal 1.15 -*- Autoconf -*-\n\n# Copyright (C) 1996-2014 Free Software Foundation, Inc.\n\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n# even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n# PARTICULAR PURPOSE.\n\nm4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])\nm4_include([../srcm4/extensions.m4])\nm4_include([../srcm4/relocatable-lib.m4])\nm4_include([../srcm4/visibility.m4])\nm4_include([../m4/libtool.m4])\nm4_include([../m4/ltoptions.m4])\nm4_include([../m4/ltsugar.m4])\nm4_include([../m4/ltversion.m4])\nm4_include([../m4/lt~obsolete.m4])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/preload/config.status",
    "content": "#! /bin/sh\n# Generated by configure.\n# Run this file to recreate the current configuration.\n# Compiler output produced by configure, useful for debugging\n# configure, is in config.log if it exists.\n\ndebug=false\nac_cs_recheck=false\nac_cs_silent=false\n\nSHELL=${CONFIG_SHELL-/bin/sh}\nexport SHELL\n## -------------------- ##\n## M4sh Initialization. ##\n## -------------------- ##\n\n# Be more Bourne compatible\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\n\nas_nl='\n'\nexport as_nl\n# Printing a long string crashes Solaris 7 /usr/bin/printf.\nas_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo\n# Prefer a ksh shell builtin over an external printf program on Solaris,\n# but without wasting forks for bash or zsh.\nif test -z \"$BASH_VERSION$ZSH_VERSION\" \\\n    && (test \"X`print -r -- $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='print -r --'\n  as_echo_n='print -rn --'\nelif (test \"X`printf %s $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='printf %s\\n'\n  as_echo_n='printf %s'\nelse\n  if test \"X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`\" = \"X-n $as_echo\"; then\n    as_echo_body='eval /usr/ucb/echo -n \"$1$as_nl\"'\n    as_echo_n='/usr/ucb/echo -n'\n  else\n    as_echo_body='eval expr \"X$1\" : \"X\\\\(.*\\\\)\"'\n    as_echo_n_body='eval\n      arg=$1;\n      case $arg in #(\n      *\"$as_nl\"*)\n\texpr \"X$arg\" : \"X\\\\(.*\\\\)$as_nl\";\n\targ=`expr \"X$arg\" : \".*$as_nl\\\\(.*\\\\)\"`;;\n      esac;\n      expr \"X$arg\" : \"X\\\\(.*\\\\)\" | tr -d \"$as_nl\"\n    '\n    export as_echo_n_body\n    as_echo_n='sh -c $as_echo_n_body as_echo'\n  fi\n  export as_echo_body\n  as_echo='sh -c $as_echo_body as_echo'\nfi\n\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n# IFS\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent editors from complaining about space-tab.\n# (If _AS_PATH_WALK were called with IFS unset, it would disable word\n# splitting by setting IFS to empty value.)\nIFS=\" \"\"\t$as_nl\"\n\n# Find who we are.  Look in the path if we contain no directory separator.\nas_myself=\ncase $0 in #((\n  *[\\\\/]* ) as_myself=$0 ;;\n  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    test -r \"$as_dir/$0\" && as_myself=$as_dir/$0 && break\n  done\nIFS=$as_save_IFS\n\n     ;;\nesac\n# We did not find ourselves, most probably we were run as `sh COMMAND'\n# in which case we are not to be found in the path.\nif test \"x$as_myself\" = x; then\n  as_myself=$0\nfi\nif test ! -f \"$as_myself\"; then\n  $as_echo \"$as_myself: error: cannot find myself; rerun with an absolute file name\" >&2\n  exit 1\nfi\n\n# Unset variables that we do not need and which cause bugs (e.g. in\n# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the \"|| exit 1\"\n# suppresses any \"Segmentation fault\" message there.  '((' could\n# trigger a bug in pdksh 5.2.14.\nfor as_var in BASH_ENV ENV MAIL MAILPATH\ndo eval test x\\${$as_var+set} = xset \\\n  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :\ndone\nPS1='$ '\nPS2='> '\nPS4='+ '\n\n# NLS nuisances.\nLC_ALL=C\nexport LC_ALL\nLANGUAGE=C\nexport LANGUAGE\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n\n# as_fn_error STATUS ERROR [LINENO LOG_FD]\n# ----------------------------------------\n# Output \"`basename $0`: error: ERROR\" to stderr. If LINENO and LOG_FD are\n# provided, also output the error to LOG_FD, referencing LINENO. Then exit the\n# script with STATUS, using 1 if that was 0.\nas_fn_error ()\n{\n  as_status=$1; test $as_status -eq 0 && as_status=1\n  if test \"$4\"; then\n    as_lineno=${as_lineno-\"$3\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n    $as_echo \"$as_me:${as_lineno-$LINENO}: error: $2\" >&$4\n  fi\n  $as_echo \"$as_me: error: $2\" >&2\n  as_fn_exit $as_status\n} # as_fn_error\n\n\n# as_fn_set_status STATUS\n# -----------------------\n# Set $? to STATUS, without forking.\nas_fn_set_status ()\n{\n  return $1\n} # as_fn_set_status\n\n# as_fn_exit STATUS\n# -----------------\n# Exit the shell with STATUS, even in a \"trap 0\" or \"set -e\" context.\nas_fn_exit ()\n{\n  set +e\n  as_fn_set_status $1\n  exit $1\n} # as_fn_exit\n\n# as_fn_unset VAR\n# ---------------\n# Portably unset VAR.\nas_fn_unset ()\n{\n  { eval $1=; unset $1;}\n}\nas_unset=as_fn_unset\n# as_fn_append VAR VALUE\n# ----------------------\n# Append the text in VALUE to the end of the definition contained in VAR. Take\n# advantage of any shell optimizations that allow amortized linear growth over\n# repeated appends, instead of the typical quadratic growth present in naive\n# implementations.\nif (eval \"as_var=1; as_var+=2; test x\\$as_var = x12\") 2>/dev/null; then :\n  eval 'as_fn_append ()\n  {\n    eval $1+=\\$2\n  }'\nelse\n  as_fn_append ()\n  {\n    eval $1=\\$$1\\$2\n  }\nfi # as_fn_append\n\n# as_fn_arith ARG...\n# ------------------\n# Perform arithmetic evaluation on the ARGs, and store the result in the\n# global $as_val. Take advantage of shells that can avoid forks. The arguments\n# must be portable across $(()) and expr.\nif (eval \"test \\$(( 1 + 1 )) = 2\") 2>/dev/null; then :\n  eval 'as_fn_arith ()\n  {\n    as_val=$(( $* ))\n  }'\nelse\n  as_fn_arith ()\n  {\n    as_val=`expr \"$@\" || test $? -eq 1`\n  }\nfi # as_fn_arith\n\n\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nif (basename -- /) >/dev/null 2>&1 && test \"X`basename -- / 2>&1`\" = \"X/\"; then\n  as_basename=basename\nelse\n  as_basename=false\nfi\n\nif (as_dir=`dirname -- /` && test \"X$as_dir\" = X/) >/dev/null 2>&1; then\n  as_dirname=dirname\nelse\n  as_dirname=false\nfi\n\nas_me=`$as_basename -- \"$0\" ||\n$as_expr X/\"$0\" : '.*/\\([^/][^/]*\\)/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X/\"$0\" |\n    sed '/^.*\\/\\([^/][^/]*\\)\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n\n# Avoid depending upon Character Ranges.\nas_cr_letters='abcdefghijklmnopqrstuvwxyz'\nas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nas_cr_Letters=$as_cr_letters$as_cr_LETTERS\nas_cr_digits='0123456789'\nas_cr_alnum=$as_cr_Letters$as_cr_digits\n\nECHO_C= ECHO_N= ECHO_T=\ncase `echo -n x` in #(((((\n-n*)\n  case `echo 'xy\\c'` in\n  *c*) ECHO_T='\t';;\t# ECHO_T is single tab character.\n  xy)  ECHO_C='\\c';;\n  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null\n       ECHO_T='\t';;\n  esac;;\n*)\n  ECHO_N='-n';;\nesac\n\nrm -f conf$$ conf$$.exe conf$$.file\nif test -d conf$$.dir; then\n  rm -f conf$$.dir/conf$$.file\nelse\n  rm -f conf$$.dir\n  mkdir conf$$.dir 2>/dev/null\nfi\nif (echo >conf$$.file) 2>/dev/null; then\n  if ln -s conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s='ln -s'\n    # ... but there are two gotchas:\n    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.\n    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.\n    # In both cases, we have to default to `cp -pR'.\n    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||\n      as_ln_s='cp -pR'\n  elif ln conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s=ln\n  else\n    as_ln_s='cp -pR'\n  fi\nelse\n  as_ln_s='cp -pR'\nfi\nrm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file\nrmdir conf$$.dir 2>/dev/null\n\n\n# as_fn_mkdir_p\n# -------------\n# Create \"$as_dir\" as a directory, including parents if necessary.\nas_fn_mkdir_p ()\n{\n\n  case $as_dir in #(\n  -*) as_dir=./$as_dir;;\n  esac\n  test -d \"$as_dir\" || eval $as_mkdir_p || {\n    as_dirs=\n    while :; do\n      case $as_dir in #(\n      *\\'*) as_qdir=`$as_echo \"$as_dir\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; #'(\n      *) as_qdir=$as_dir;;\n      esac\n      as_dirs=\"'$as_qdir' $as_dirs\"\n      as_dir=`$as_dirname -- \"$as_dir\" ||\n$as_expr X\"$as_dir\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_dir\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_dir\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      test -d \"$as_dir\" && break\n    done\n    test -z \"$as_dirs\" || eval \"mkdir $as_dirs\"\n  } || test -d \"$as_dir\" || as_fn_error $? \"cannot create directory $as_dir\"\n\n\n} # as_fn_mkdir_p\nif mkdir -p . 2>/dev/null; then\n  as_mkdir_p='mkdir -p \"$as_dir\"'\nelse\n  test -d ./-p && rmdir ./-p\n  as_mkdir_p=false\nfi\n\n\n# as_fn_executable_p FILE\n# -----------------------\n# Test if FILE is an executable regular file.\nas_fn_executable_p ()\n{\n  test -f \"$1\" && test -x \"$1\"\n} # as_fn_executable_p\nas_test_x='test -x'\nas_executable_p=as_fn_executable_p\n\n# Sed expression to map a string onto a valid CPP name.\nas_tr_cpp=\"eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'\"\n\n# Sed expression to map a string onto a valid variable name.\nas_tr_sh=\"eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'\"\n\n\nexec 6>&1\n## ----------------------------------- ##\n## Main body of $CONFIG_STATUS script. ##\n## ----------------------------------- ##\n# Save the log message, to keep $0 and so on meaningful, and to\n# report actual input values of CONFIG_FILES etc. instead of their\n# values after options handling.\nac_log=\"\nThis file was extended by libiconv $as_me 0, which was\ngenerated by GNU Autoconf 2.69.  Invocation command line was\n\n  CONFIG_FILES    = $CONFIG_FILES\n  CONFIG_HEADERS  = $CONFIG_HEADERS\n  CONFIG_LINKS    = $CONFIG_LINKS\n  CONFIG_COMMANDS = $CONFIG_COMMANDS\n  $ $0 $@\n\non `(hostname || uname -n) 2>/dev/null | sed 1q`\n\"\n\n# Files that config.status was made for.\nconfig_files=\" Makefile\"\nconfig_commands=\" libtool\"\n\nac_cs_usage=\"\\\n\\`$as_me' instantiates files and other configuration actions\nfrom templates according to the current configuration.  Unless the files\nand actions are specified as TAGs, all are instantiated by default.\n\nUsage: $0 [OPTION]... [TAG]...\n\n  -h, --help       print this help, then exit\n  -V, --version    print version number and configuration settings, then exit\n      --config     print configuration, then exit\n  -q, --quiet, --silent\n                   do not print progress messages\n  -d, --debug      don't remove temporary files\n      --recheck    update $as_me by reconfiguring in the same conditions\n      --file=FILE[:TEMPLATE]\n                   instantiate the configuration file FILE\n\nConfiguration files:\n$config_files\n\nConfiguration commands:\n$config_commands\n\nReport bugs to the package provider.\"\n\nac_cs_config=\"'--disable-option-checking' '--prefix=/usr/local' '--cache-file=/dev/null' '--srcdir=.'\"\nac_cs_version=\"\\\nlibiconv config.status 0\nconfigured by ./configure, generated by GNU Autoconf 2.69,\n  with options \\\"$ac_cs_config\\\"\n\nCopyright (C) 2012 Free Software Foundation, Inc.\nThis config.status script is free software; the Free Software Foundation\ngives unlimited permission to copy, distribute and modify it.\"\n\nac_pwd='/Users/wanghao/Desktop/demo/zbar/libiconv-1.15/preload'\nsrcdir='.'\nINSTALL='/usr/bin/install -c'\nAWK='awk'\ntest -n \"$AWK\" || AWK=awk\n# The default lists apply if the user does not specify any file.\nac_need_defaults=:\nwhile test $# != 0\ndo\n  case $1 in\n  --*=?*)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=`expr \"X$1\" : 'X[^=]*=\\(.*\\)'`\n    ac_shift=:\n    ;;\n  --*=)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=\n    ac_shift=:\n    ;;\n  *)\n    ac_option=$1\n    ac_optarg=$2\n    ac_shift=shift\n    ;;\n  esac\n\n  case $ac_option in\n  # Handling of the options.\n  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)\n    ac_cs_recheck=: ;;\n  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )\n    $as_echo \"$ac_cs_version\"; exit ;;\n  --config | --confi | --conf | --con | --co | --c )\n    $as_echo \"$ac_cs_config\"; exit ;;\n  --debug | --debu | --deb | --de | --d | -d )\n    debug=: ;;\n  --file | --fil | --fi | --f )\n    $ac_shift\n    case $ac_optarg in\n    *\\'*) ac_optarg=`$as_echo \"$ac_optarg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    '') as_fn_error $? \"missing file argument\" ;;\n    esac\n    as_fn_append CONFIG_FILES \" '$ac_optarg'\"\n    ac_need_defaults=false;;\n  --he | --h |  --help | --hel | -h )\n    $as_echo \"$ac_cs_usage\"; exit ;;\n  -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n  | -silent | --silent | --silen | --sile | --sil | --si | --s)\n    ac_cs_silent=: ;;\n\n  # This is an error.\n  -*) as_fn_error $? \"unrecognized option: \\`$1'\nTry \\`$0 --help' for more information.\" ;;\n\n  *) as_fn_append ac_config_targets \" $1\"\n     ac_need_defaults=false ;;\n\n  esac\n  shift\ndone\n\nac_configure_extra_args=\n\nif $ac_cs_silent; then\n  exec 6>/dev/null\n  ac_configure_extra_args=\"$ac_configure_extra_args --silent\"\nfi\n\nif $ac_cs_recheck; then\n  set X /bin/sh './configure'  '--disable-option-checking' '--prefix=/usr/local' '--cache-file=/dev/null' '--srcdir=.' $ac_configure_extra_args --no-create --no-recursion\n  shift\n  $as_echo \"running CONFIG_SHELL=/bin/sh $*\" >&6\n  CONFIG_SHELL='/bin/sh'\n  export CONFIG_SHELL\n  exec \"$@\"\nfi\n\nexec 5>>config.log\n{\n  echo\n  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX\n## Running $as_me. ##\n_ASBOX\n  $as_echo \"$ac_log\"\n} >&5\n\n#\n# INIT-COMMANDS\n#\n\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nsed_quote_subst='s/\\([\"`$\\\\]\\)/\\\\\\1/g'\ndouble_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\ndelay_variable_subst='s/\\\\\\\\\\\\\\\\\\\\\\$/\\\\\\\\\\\\$/g'\nmacro_version='2.4.6'\nmacro_revision='2.4.6'\nAS='as'\nDLLTOOL='false'\nOBJDUMP='objdump'\nenable_shared='yes'\nenable_static='no'\npic_mode='default'\nenable_fast_install='needless'\nshared_archive_member_spec=''\nSHELL='/bin/sh'\nECHO='printf %s\\n'\nPATH_SEPARATOR=':'\nhost_alias=''\nhost='x86_64-apple-darwin16.6.0'\nhost_os='darwin16.6.0'\nbuild_alias=''\nbuild='x86_64-apple-darwin16.6.0'\nbuild_os='darwin16.6.0'\nSED='/usr/bin/sed'\nXsed='/usr/bin/sed -e 1s/^X//'\nGREP='/usr/bin/grep'\nEGREP='/usr/bin/grep -E'\nFGREP='/usr/bin/grep -F'\nLD='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld'\nNM='/usr/bin/nm -B'\nLN_S='ln -s'\nmax_cmd_len='196608'\nac_objext='o'\nexeext=''\nlt_unset='unset'\nlt_SP2NL='tr \\040 \\012'\nlt_NL2SP='tr \\015\\012 \\040\\040'\nlt_cv_to_host_file_cmd='func_convert_file_noop'\nlt_cv_to_tool_file_cmd='func_convert_file_noop'\nreload_flag=' -r'\nreload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs'\ndeplibs_check_method='pass_all'\nfile_magic_cmd='$MAGIC_CMD'\nfile_magic_glob=''\nwant_nocaseglob='no'\nsharedlib_from_linklib_cmd='printf %s\\n'\nAR='ar'\nAR_FLAGS='cru'\narchiver_list_spec=''\nSTRIP='strip'\nRANLIB='ranlib'\nold_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib'\nold_postuninstall_cmds=''\nold_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'\nlock_old_archive_extraction='yes'\nCC='gcc'\nCFLAGS='-g -O2'\ncompiler='gcc'\nGCC='yes'\nlt_cv_sys_global_symbol_pipe='sed -n -e '\\''s/^.*[\t ]\\([BCDEGRST][BCDEGRST]*\\)[\t ][\t ]*_\\([_A-Za-z][_A-Za-z0-9]*\\)$/\\1 _\\2 \\2/p'\\'' | sed '\\''/ __gnu_lto/d'\\'''\nlt_cv_sys_global_symbol_to_cdecl='sed -n -e '\\''s/^T .* \\(.*\\)$/extern int \\1();/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(.*\\)$/extern char \\1;/p'\\'''\nlt_cv_sys_global_symbol_to_import=''\nlt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\\''s/^: \\(.*\\) .*$/  {\"\\1\", (void *) 0},/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(.*\\)$/  {\"\\1\", (void *) \\&\\1},/p'\\'''\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\\''s/^: \\(.*\\) .*$/  {\"\\1\", (void *) 0},/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(lib.*\\)$/  {\"\\1\", (void *) \\&\\1},/p'\\'' -e '\\''s/^[BCDEGRST][BCDEGRST]* .* \\(.*\\)$/  {\"lib\\1\", (void *) \\&\\1},/p'\\'''\nlt_cv_nm_interface='BSD nm'\nnm_file_list_spec=''\nlt_sysroot=''\nlt_cv_truncate_bin='/bin/dd bs=4096 count=1'\nobjdir='.libs'\nMAGIC_CMD='file'\nlt_prog_compiler_no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions'\nlt_prog_compiler_pic=' -fno-common -DPIC'\nlt_prog_compiler_wl='-Wl,'\nlt_prog_compiler_static=''\nlt_cv_prog_compiler_c_o='yes'\nneed_locks='no'\nMANIFEST_TOOL=':'\nDSYMUTIL='dsymutil'\nNMEDIT='nmedit'\nLIPO='lipo'\nOTOOL='otool'\nOTOOL64=':'\nlibext='a'\nshrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'\nextract_expsyms_cmds=''\narchive_cmds_need_lc='no'\nenable_shared_with_static_runtimes='no'\nexport_dynamic_flag_spec=''\nwhole_archive_flag_spec='`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience $wl-force_load,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"`'\ncompiler_needs_object='no'\nold_archive_from_new_cmds=''\nold_archive_from_expsyms_cmds=''\narchive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring $single_module'\narchive_expsym_cmds='sed '\\''s|^|_|'\\'' < $export_symbols > $output_objdir/$libname-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring $single_module $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'\nmodule_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags'\nmodule_expsym_cmds='sed -e '\\''s|^|_|'\\'' < $export_symbols > $output_objdir/$libname-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'\nwith_gnu_ld='no'\nallow_undefined_flag='$wl-undefined ${wl}dynamic_lookup'\nno_undefined_flag=''\nhardcode_libdir_flag_spec=''\nhardcode_libdir_separator=''\nhardcode_direct='no'\nhardcode_direct_absolute='no'\nhardcode_minus_L='no'\nhardcode_shlibpath_var='unsupported'\nhardcode_automatic='yes'\ninherit_rpath='no'\nlink_all_deplibs='yes'\nalways_export_symbols='no'\nexport_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\nexclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'\ninclude_expsyms=''\nprelink_cmds=''\npostlink_cmds=''\nfile_list_spec=''\nvariables_saved_for_relink='PATH DYLD_LIBRARY_PATH  GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'\nneed_lib_prefix='no'\nneed_version='no'\nversion_type='darwin'\nrunpath_var=''\nshlibpath_var='DYLD_LIBRARY_PATH'\nshlibpath_overrides_runpath='yes'\nlibname_spec='lib$name'\nlibrary_names_spec='$libname$release$major$shared_ext $libname$shared_ext'\nsoname_spec='$libname$release$major$shared_ext'\ninstall_override_mode=''\npostinstall_cmds=''\npostuninstall_cmds=''\nfinish_cmds=''\nfinish_eval=''\nhardcode_into_libs='no'\nsys_lib_search_path_spec='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.1.0  /usr/local/lib'\nconfigure_time_dlsearch_path='/usr/local/lib /lib /usr/lib'\nconfigure_time_lt_sys_library_path=''\nhardcode_action='immediate'\nenable_dlopen='unknown'\nenable_dlopen_self='unknown'\nenable_dlopen_self_static='unknown'\nold_striplib='strip -S'\nstriplib='strip -x'\n\nLTCC='gcc'\nLTCFLAGS='-g -O2'\ncompiler='gcc'\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n}\n\n# Quote evaled strings.\nfor var in AS DLLTOOL OBJDUMP SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface nm_file_list_spec lt_cv_truncate_bin lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib; do\n    case `eval \\\\$ECHO \\\\\"\"\\\\$$var\"\\\\\"` in\n    *[\\\\\\`\\\"\\$]*)\n      eval \"lt_$var=\\\\\\\"\\`\\$ECHO \\\"\\$$var\\\" | \\$SED \\\"\\$sed_quote_subst\\\"\\`\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_$var=\\\\\\\"\\$$var\\\\\\\"\"\n      ;;\n    esac\ndone\n\n# Double-quote double-evaled strings.\nfor var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec configure_time_dlsearch_path configure_time_lt_sys_library_path; do\n    case `eval \\\\$ECHO \\\\\"\"\\\\$$var\"\\\\\"` in\n    *[\\\\\\`\\\"\\$]*)\n      eval \"lt_$var=\\\\\\\"\\`\\$ECHO \\\"\\$$var\\\" | \\$SED -e \\\"\\$double_quote_subst\\\" -e \\\"\\$sed_quote_subst\\\" -e \\\"\\$delay_variable_subst\\\"\\`\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_$var=\\\\\\\"\\$$var\\\\\\\"\"\n      ;;\n    esac\ndone\n\nac_aux_dir='../build-aux'\n\n# See if we are running on zsh, and set the options that allow our\n# commands through without removal of \\ escapes INIT.\nif test -n \"${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n\n\n    PACKAGE=''\n    VERSION=''\n    RM='rm -f'\n    ofile='libtool'\n\n\n\n\n\n# Handling of arguments.\nfor ac_config_target in $ac_config_targets\ndo\n  case $ac_config_target in\n    \"libtool\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS libtool\" ;;\n    \"Makefile\") CONFIG_FILES=\"$CONFIG_FILES Makefile\" ;;\n\n  *) as_fn_error $? \"invalid argument: \\`$ac_config_target'\" \"$LINENO\" 5;;\n  esac\ndone\n\n\n# If the user did not use the arguments to specify the items to instantiate,\n# then the envvar interface is used.  Set only those that are not.\n# We use the long form for the default assignment because of an extremely\n# bizarre bug on SunOS 4.1.3.\nif $ac_need_defaults; then\n  test \"${CONFIG_FILES+set}\" = set || CONFIG_FILES=$config_files\n  test \"${CONFIG_COMMANDS+set}\" = set || CONFIG_COMMANDS=$config_commands\nfi\n\n# Have a temporary directory for convenience.  Make it in the build tree\n# simply because there is no reason against having it here, and in addition,\n# creating and moving files from /tmp can sometimes cause problems.\n# Hook for its removal unless debugging.\n# Note that there is a small window in which the directory will not be cleaned:\n# after its creation but before its name has been assigned to `$tmp'.\n$debug ||\n{\n  tmp= ac_tmp=\n  trap 'exit_status=$?\n  : \"${ac_tmp:=$tmp}\"\n  { test ! -d \"$ac_tmp\" || rm -fr \"$ac_tmp\"; } && exit $exit_status\n' 0\n  trap 'as_fn_exit 1' 1 2 13 15\n}\n# Create a (secure) tmp directory for tmp files.\n\n{\n  tmp=`(umask 077 && mktemp -d \"./confXXXXXX\") 2>/dev/null` &&\n  test -d \"$tmp\"\n}  ||\n{\n  tmp=./conf$$-$RANDOM\n  (umask 077 && mkdir \"$tmp\")\n} || as_fn_error $? \"cannot create a temporary directory in .\" \"$LINENO\" 5\nac_tmp=$tmp\n\n# Set up the scripts for CONFIG_FILES section.\n# No need to generate them if there are no CONFIG_FILES.\n# This happens for instance with `./config.status config.h'.\nif test -n \"$CONFIG_FILES\"; then\n\n\nac_cr=`echo X | tr X '\\015'`\n# On cygwin, bash can eat \\r inside `` if the user requested igncr.\n# But we know of no other shell where ac_cr would be empty at this\n# point, so we can use a bashism as a fallback.\nif test \"x$ac_cr\" = x; then\n  eval ac_cr=\\$\\'\\\\r\\'\nfi\nac_cs_awk_cr=`$AWK 'BEGIN { print \"a\\rb\" }' </dev/null 2>/dev/null`\nif test \"$ac_cs_awk_cr\" = \"a${ac_cr}b\"; then\n  ac_cs_awk_cr='\\\\r'\nelse\n  ac_cs_awk_cr=$ac_cr\nfi\n\necho 'BEGIN {' >\"$ac_tmp/subs1.awk\" &&\ncat >>\"$ac_tmp/subs1.awk\" <<\\_ACAWK &&\nS[\"LTLIBOBJS\"]=\"\"\nS[\"LIBOBJS\"]=\"\"\nS[\"PLUGLIB\"]=\"\"\nS[\"HAVE_VISIBILITY\"]=\"1\"\nS[\"CFLAG_VISIBILITY\"]=\"-fvisibility=hidden\"\nS[\"LT_SYS_LIBRARY_PATH\"]=\"\"\nS[\"OTOOL64\"]=\":\"\nS[\"OTOOL\"]=\"otool\"\nS[\"LIPO\"]=\"lipo\"\nS[\"NMEDIT\"]=\"nmedit\"\nS[\"DSYMUTIL\"]=\"dsymutil\"\nS[\"MANIFEST_TOOL\"]=\":\"\nS[\"AWK\"]=\"awk\"\nS[\"RANLIB\"]=\"ranlib\"\nS[\"STRIP\"]=\"strip\"\nS[\"ac_ct_AR\"]=\"ar\"\nS[\"AR\"]=\"ar\"\nS[\"NM\"]=\"/usr/bin/nm -B\"\nS[\"ac_ct_DUMPBIN\"]=\"\"\nS[\"DUMPBIN\"]=\"\"\nS[\"LD\"]=\"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld\"\nS[\"FGREP\"]=\"/usr/bin/grep -F\"\nS[\"SED\"]=\"/usr/bin/sed\"\nS[\"LIBTOOL\"]=\"/bin/sh $(top_builddir)/libtool\"\nS[\"OBJDUMP\"]=\"objdump\"\nS[\"DLLTOOL\"]=\"false\"\nS[\"AS\"]=\"as\"\nS[\"EGREP\"]=\"/usr/bin/grep -E\"\nS[\"GREP\"]=\"/usr/bin/grep\"\nS[\"LN_S\"]=\"ln -s\"\nS[\"RELOCATABLE\"]=\"no\"\nS[\"host_os\"]=\"darwin16.6.0\"\nS[\"host_vendor\"]=\"apple\"\nS[\"host_cpu\"]=\"x86_64\"\nS[\"host\"]=\"x86_64-apple-darwin16.6.0\"\nS[\"build_os\"]=\"darwin16.6.0\"\nS[\"build_vendor\"]=\"apple\"\nS[\"build_cpu\"]=\"x86_64\"\nS[\"build\"]=\"x86_64-apple-darwin16.6.0\"\nS[\"INSTALL_DATA\"]=\"${INSTALL} -m 644\"\nS[\"INSTALL_SCRIPT\"]=\"${INSTALL}\"\nS[\"INSTALL_PROGRAM\"]=\"${INSTALL}\"\nS[\"CPP\"]=\"gcc -E\"\nS[\"OBJEXT\"]=\"o\"\nS[\"EXEEXT\"]=\"\"\nS[\"ac_ct_CC\"]=\"gcc\"\nS[\"CPPFLAGS\"]=\"\"\nS[\"LDFLAGS\"]=\"\"\nS[\"CFLAGS\"]=\"-g -O2\"\nS[\"CC\"]=\"gcc\"\nS[\"SET_MAKE\"]=\"\"\nS[\"target_alias\"]=\"\"\nS[\"host_alias\"]=\"\"\nS[\"build_alias\"]=\"\"\nS[\"LIBS\"]=\"\"\nS[\"ECHO_T\"]=\"\"\nS[\"ECHO_N\"]=\"\"\nS[\"ECHO_C\"]=\"\\\\c\"\nS[\"DEFS\"]=\"-DPACKAGE_NAME=\\\\\\\"libiconv\\\\\\\" -DPACKAGE_TARNAME=\\\\\\\"libiconv\\\\\\\" -DPACKAGE_VERSION=\\\\\\\"0\\\\\\\" -DPACKAGE_STRING=\\\\\\\"libiconv\\\\ 0\\\\\\\" -DPACKAGE_BUGREPORT=\\\\\\\"\\\\\\\" -DPACKA\"\\\n\"GE_URL=\\\\\\\"\\\\\\\" -DINSTALLPREFIX=\\\\\\\"/usr/local\\\\\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMO\"\\\n\"RY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -D__EXTENSIONS__=1 -D_ALL_SOURCE=1 -D_DARWIN_C_SOURCE=1 -D_GNU_SOU\"\\\n\"RCE=1 -D_POSIX_PTHREAD_SEMANTICS=1 -D__STDC_WANT_IEC_60559_ATTRIBS_EXT__=1 -D__STDC_WANT_IEC_60559_BFP_EXT__=1 -D__STDC_WANT_IEC_60559_DFP_EXT__=1 -\"\\\n\"D__STDC_WANT_IEC_60559_FUNCS_EXT__=1 -D__STDC_WANT_IEC_60559_TYPES_EXT__=1 -D__STDC_WANT_LIB_EXT2__=1 -D__STDC_WANT_MATH_SPEC_FUNCS__=1 -D_TANDEM_SO\"\\\n\"URCE=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\\\\\\\".libs/\\\\\\\" -DHAVE_VISIBILITY=1\"\nS[\"mandir\"]=\"${datarootdir}/man\"\nS[\"localedir\"]=\"${datarootdir}/locale\"\nS[\"libdir\"]=\"${exec_prefix}/lib\"\nS[\"psdir\"]=\"${docdir}\"\nS[\"pdfdir\"]=\"${docdir}\"\nS[\"dvidir\"]=\"${docdir}\"\nS[\"htmldir\"]=\"${docdir}\"\nS[\"infodir\"]=\"${datarootdir}/info\"\nS[\"docdir\"]=\"${datarootdir}/doc/${PACKAGE_TARNAME}\"\nS[\"oldincludedir\"]=\"/usr/include\"\nS[\"includedir\"]=\"${prefix}/include\"\nS[\"localstatedir\"]=\"${prefix}/var\"\nS[\"sharedstatedir\"]=\"${prefix}/com\"\nS[\"sysconfdir\"]=\"${prefix}/etc\"\nS[\"datadir\"]=\"${datarootdir}\"\nS[\"datarootdir\"]=\"${prefix}/share\"\nS[\"libexecdir\"]=\"${exec_prefix}/libexec\"\nS[\"sbindir\"]=\"${exec_prefix}/sbin\"\nS[\"bindir\"]=\"${exec_prefix}/bin\"\nS[\"program_transform_name\"]=\"s,x,x,\"\nS[\"prefix\"]=\"/usr/local\"\nS[\"exec_prefix\"]=\"${prefix}\"\nS[\"PACKAGE_URL\"]=\"\"\nS[\"PACKAGE_BUGREPORT\"]=\"\"\nS[\"PACKAGE_STRING\"]=\"libiconv 0\"\nS[\"PACKAGE_VERSION\"]=\"0\"\nS[\"PACKAGE_TARNAME\"]=\"libiconv\"\nS[\"PACKAGE_NAME\"]=\"libiconv\"\nS[\"PATH_SEPARATOR\"]=\":\"\nS[\"SHELL\"]=\"/bin/sh\"\n_ACAWK\ncat >>\"$ac_tmp/subs1.awk\" <<_ACAWK &&\n  for (key in S) S_is_set[key] = 1\n  FS = \"\u0007\"\n\n}\n{\n  line = $ 0\n  nfields = split(line, field, \"@\")\n  substed = 0\n  len = length(field[1])\n  for (i = 2; i < nfields; i++) {\n    key = field[i]\n    keylen = length(key)\n    if (S_is_set[key]) {\n      value = S[key]\n      line = substr(line, 1, len) \"\" value \"\" substr(line, len + keylen + 3)\n      len += length(value) + length(field[++i])\n      substed = 1\n    } else\n      len += 1 + keylen\n  }\n\n  print line\n}\n\n_ACAWK\nif sed \"s/$ac_cr//\" < /dev/null > /dev/null 2>&1; then\n  sed \"s/$ac_cr\\$//; s/$ac_cr/$ac_cs_awk_cr/g\"\nelse\n  cat\nfi < \"$ac_tmp/subs1.awk\" > \"$ac_tmp/subs.awk\" \\\n  || as_fn_error $? \"could not setup config files machinery\" \"$LINENO\" 5\nfi # test -n \"$CONFIG_FILES\"\n\n\neval set X \"  :F $CONFIG_FILES      :C $CONFIG_COMMANDS\"\nshift\nfor ac_tag\ndo\n  case $ac_tag in\n  :[FHLC]) ac_mode=$ac_tag; continue;;\n  esac\n  case $ac_mode$ac_tag in\n  :[FHL]*:*);;\n  :L* | :C*:*) as_fn_error $? \"invalid tag \\`$ac_tag'\" \"$LINENO\" 5;;\n  :[FH]-) ac_tag=-:-;;\n  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;\n  esac\n  ac_save_IFS=$IFS\n  IFS=:\n  set x $ac_tag\n  IFS=$ac_save_IFS\n  shift\n  ac_file=$1\n  shift\n\n  case $ac_mode in\n  :L) ac_source=$1;;\n  :[FH])\n    ac_file_inputs=\n    for ac_f\n    do\n      case $ac_f in\n      -) ac_f=\"$ac_tmp/stdin\";;\n      *) # Look for the file first in the build tree, then in the source tree\n\t # (if the path is not absolute).  The absolute path cannot be DOS-style,\n\t # because $ac_f cannot contain `:'.\n\t test -f \"$ac_f\" ||\n\t   case $ac_f in\n\t   [\\\\/$]*) false;;\n\t   *) test -f \"$srcdir/$ac_f\" && ac_f=\"$srcdir/$ac_f\";;\n\t   esac ||\n\t   as_fn_error 1 \"cannot find input file: \\`$ac_f'\" \"$LINENO\" 5;;\n      esac\n      case $ac_f in *\\'*) ac_f=`$as_echo \"$ac_f\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; esac\n      as_fn_append ac_file_inputs \" '$ac_f'\"\n    done\n\n    # Let's still pretend it is `configure' which instantiates (i.e., don't\n    # use $as_me), people would be surprised to read:\n    #    /* config.h.  Generated by config.status.  */\n    configure_input='Generated from '`\n\t  $as_echo \"$*\" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'\n\t`' by configure.'\n    if test x\"$ac_file\" != x-; then\n      configure_input=\"$ac_file.  $configure_input\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: creating $ac_file\" >&5\n$as_echo \"$as_me: creating $ac_file\" >&6;}\n    fi\n    # Neutralize special characters interpreted by sed in replacement strings.\n    case $configure_input in #(\n    *\\&* | *\\|* | *\\\\* )\n       ac_sed_conf_input=`$as_echo \"$configure_input\" |\n       sed 's/[\\\\\\\\&|]/\\\\\\\\&/g'`;; #(\n    *) ac_sed_conf_input=$configure_input;;\n    esac\n\n    case $ac_tag in\n    *:-:* | *:-) cat >\"$ac_tmp/stdin\" \\\n      || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5 ;;\n    esac\n    ;;\n  esac\n\n  ac_dir=`$as_dirname -- \"$ac_file\" ||\n$as_expr X\"$ac_file\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)$' \\| \\\n\t X\"$ac_file\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$ac_file\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  as_dir=\"$ac_dir\"; as_fn_mkdir_p\n  ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`$as_echo \"$ac_dir\" | sed 's|^\\.[\\\\/]||'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`$as_echo \"$ac_dir_suffix\" | sed 's|/[^\\\\/]*|/..|g;s|/||'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n\n  case $ac_mode in\n  :F)\n  #\n  # CONFIG_FILE\n  #\n\n  case $INSTALL in\n  [\\\\/$]* | ?:[\\\\/]* ) ac_INSTALL=$INSTALL ;;\n  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;\n  esac\n# If the template does not know about datarootdir, expand it.\n# FIXME: This hack should be removed a few years after 2.60.\nac_datarootdir_hack=; ac_datarootdir_seen=\nac_sed_dataroot='\n/datarootdir/ {\n  p\n  q\n}\n/@datadir@/p\n/@docdir@/p\n/@infodir@/p\n/@localedir@/p\n/@mandir@/p'\ncase `eval \"sed -n \\\"\\$ac_sed_dataroot\\\" $ac_file_inputs\"` in\n*datarootdir*) ac_datarootdir_seen=yes;;\n*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&5\n$as_echo \"$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&2;}\n  ac_datarootdir_hack='\n  s&@datadir@&${datarootdir}&g\n  s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g\n  s&@infodir@&${datarootdir}/info&g\n  s&@localedir@&${datarootdir}/locale&g\n  s&@mandir@&${datarootdir}/man&g\n  s&\\${datarootdir}&${prefix}/share&g' ;;\nesac\nac_sed_extra=\"/^[\t ]*VPATH[\t ]*=[\t ]*/{\nh\ns///\ns/^/:/\ns/[\t ]*$/:/\ns/:\\$(srcdir):/:/g\ns/:\\${srcdir}:/:/g\ns/:@srcdir@:/:/g\ns/^:*//\ns/:*$//\nx\ns/\\(=[\t ]*\\).*/\\1/\nG\ns/\\n//\ns/^[^=]*=[\t ]*$//\n}\n\n:t\n/@[a-zA-Z_][a-zA-Z_0-9]*@/!b\ns|@configure_input@|$ac_sed_conf_input|;t t\ns&@top_builddir@&$ac_top_builddir_sub&;t t\ns&@top_build_prefix@&$ac_top_build_prefix&;t t\ns&@srcdir@&$ac_srcdir&;t t\ns&@abs_srcdir@&$ac_abs_srcdir&;t t\ns&@top_srcdir@&$ac_top_srcdir&;t t\ns&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t\ns&@builddir@&$ac_builddir&;t t\ns&@abs_builddir@&$ac_abs_builddir&;t t\ns&@abs_top_builddir@&$ac_abs_top_builddir&;t t\ns&@INSTALL@&$ac_INSTALL&;t t\n$ac_datarootdir_hack\n\"\neval sed \\\"\\$ac_sed_extra\\\" \"$ac_file_inputs\" | $AWK -f \"$ac_tmp/subs.awk\" \\\n  >$ac_tmp/out || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n\ntest -z \"$ac_datarootdir_hack$ac_datarootdir_seen\" &&\n  { ac_out=`sed -n '/\\${datarootdir}/p' \"$ac_tmp/out\"`; test -n \"$ac_out\"; } &&\n  { ac_out=`sed -n '/^[\t ]*datarootdir[\t ]*:*=/p' \\\n      \"$ac_tmp/out\"`; test -z \"$ac_out\"; } &&\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&5\n$as_echo \"$as_me: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&2;}\n\n  rm -f \"$ac_tmp/stdin\"\n  case $ac_file in\n  -) cat \"$ac_tmp/out\" && rm -f \"$ac_tmp/out\";;\n  *) rm -f \"$ac_file\" && mv \"$ac_tmp/out\" \"$ac_file\";;\n  esac \\\n  || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n ;;\n\n\n  :C)  { $as_echo \"$as_me:${as_lineno-$LINENO}: executing $ac_file commands\" >&5\n$as_echo \"$as_me: executing $ac_file commands\" >&6;}\n ;;\n  esac\n\n\n  case $ac_file$ac_mode in\n    \"libtool\":C)\n\n    # See if we are running on zsh, and set the options that allow our\n    # commands through without removal of \\ escapes.\n    if test -n \"${ZSH_VERSION+set}\"; then\n      setopt NO_GLOB_SUBST\n    fi\n\n    cfgfile=${ofile}T\n    trap \"$RM \\\"$cfgfile\\\"; exit 1\" 1 2 15\n    $RM \"$cfgfile\"\n\n    cat <<_LT_EOF >> \"$cfgfile\"\n#! $SHELL\n# Generated automatically by $as_me ($PACKAGE) $VERSION\n# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit, 1996\n\n# Copyright (C) 2014 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program or library that is built\n# using GNU Libtool, you may include this file under the  same\n# distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\n# The names of the tagged configurations supported by this script.\navailable_tags=''\n\n# Configured defaults for sys_lib_dlsearch_path munging.\n: \\${LT_SYS_LIBRARY_PATH=\"$configure_time_lt_sys_library_path\"}\n\n# ### BEGIN LIBTOOL CONFIG\n\n# Which release of libtool.m4 was used?\nmacro_version=$macro_version\nmacro_revision=$macro_revision\n\n# Assembler program.\nAS=$lt_AS\n\n# DLL creation program.\nDLLTOOL=$lt_DLLTOOL\n\n# Object dumper program.\nOBJDUMP=$lt_OBJDUMP\n\n# Whether or not to build shared libraries.\nbuild_libtool_libs=$enable_shared\n\n# Whether or not to build static libraries.\nbuild_old_libs=$enable_static\n\n# What type of objects to build.\npic_mode=$pic_mode\n\n# Whether or not to optimize for fast installation.\nfast_install=$enable_fast_install\n\n# Shared archive member basename,for filename based shared library versioning on AIX.\nshared_archive_member_spec=$shared_archive_member_spec\n\n# Shell to use when invoking shell scripts.\nSHELL=$lt_SHELL\n\n# An echo program that protects backslashes.\nECHO=$lt_ECHO\n\n# The PATH separator for the build system.\nPATH_SEPARATOR=$lt_PATH_SEPARATOR\n\n# The host system.\nhost_alias=$host_alias\nhost=$host\nhost_os=$host_os\n\n# The build system.\nbuild_alias=$build_alias\nbuild=$build\nbuild_os=$build_os\n\n# A sed program that does not truncate output.\nSED=$lt_SED\n\n# Sed that helps us avoid accidentally triggering echo(1) options like -n.\nXsed=\"\\$SED -e 1s/^X//\"\n\n# A grep program that handles long lines.\nGREP=$lt_GREP\n\n# An ERE matcher.\nEGREP=$lt_EGREP\n\n# A literal string matcher.\nFGREP=$lt_FGREP\n\n# A BSD- or MS-compatible name lister.\nNM=$lt_NM\n\n# Whether we need soft or hard links.\nLN_S=$lt_LN_S\n\n# What is the maximum length of a command?\nmax_cmd_len=$max_cmd_len\n\n# Object file suffix (normally \"o\").\nobjext=$ac_objext\n\n# Executable file suffix (normally \"\").\nexeext=$exeext\n\n# whether the shell understands \"unset\".\nlt_unset=$lt_unset\n\n# turn spaces into newlines.\nSP2NL=$lt_lt_SP2NL\n\n# turn newlines into spaces.\nNL2SP=$lt_lt_NL2SP\n\n# convert \\$build file names to \\$host format.\nto_host_file_cmd=$lt_cv_to_host_file_cmd\n\n# convert \\$build files to toolchain format.\nto_tool_file_cmd=$lt_cv_to_tool_file_cmd\n\n# Method to check whether dependent libraries are shared objects.\ndeplibs_check_method=$lt_deplibs_check_method\n\n# Command to use when deplibs_check_method = \"file_magic\".\nfile_magic_cmd=$lt_file_magic_cmd\n\n# How to find potential files when deplibs_check_method = \"file_magic\".\nfile_magic_glob=$lt_file_magic_glob\n\n# Find potential files using nocaseglob when deplibs_check_method = \"file_magic\".\nwant_nocaseglob=$lt_want_nocaseglob\n\n# Command to associate shared and link libraries.\nsharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd\n\n# The archiver.\nAR=$lt_AR\n\n# Flags to create an archive.\nAR_FLAGS=$lt_AR_FLAGS\n\n# How to feed a file listing to the archiver.\narchiver_list_spec=$lt_archiver_list_spec\n\n# A symbol stripping program.\nSTRIP=$lt_STRIP\n\n# Commands used to install an old-style archive.\nRANLIB=$lt_RANLIB\nold_postinstall_cmds=$lt_old_postinstall_cmds\nold_postuninstall_cmds=$lt_old_postuninstall_cmds\n\n# Whether to use a lock for old archive extraction.\nlock_old_archive_extraction=$lock_old_archive_extraction\n\n# A C compiler.\nLTCC=$lt_CC\n\n# LTCC compiler flags.\nLTCFLAGS=$lt_CFLAGS\n\n# Take the output of nm and produce a listing of raw symbols and C names.\nglobal_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe\n\n# Transform the output of nm in a proper C declaration.\nglobal_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl\n\n# Transform the output of nm into a list of symbols to manually relocate.\nglobal_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import\n\n# Transform the output of nm in a C name address pair.\nglobal_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address\n\n# Transform the output of nm in a C name address pair when lib prefix is needed.\nglobal_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix\n\n# The name lister interface.\nnm_interface=$lt_lt_cv_nm_interface\n\n# Specify filename containing input files for \\$NM.\nnm_file_list_spec=$lt_nm_file_list_spec\n\n# The root where to search for dependent libraries,and where our libraries should be installed.\nlt_sysroot=$lt_sysroot\n\n# Command to truncate a binary pipe.\nlt_truncate_bin=$lt_lt_cv_truncate_bin\n\n# The name of the directory that contains temporary libtool files.\nobjdir=$objdir\n\n# Used to examine libraries when file_magic_cmd begins with \"file\".\nMAGIC_CMD=$MAGIC_CMD\n\n# Must we lock files when doing compilation?\nneed_locks=$lt_need_locks\n\n# Manifest tool.\nMANIFEST_TOOL=$lt_MANIFEST_TOOL\n\n# Tool to manipulate archived DWARF debug symbol files on Mac OS X.\nDSYMUTIL=$lt_DSYMUTIL\n\n# Tool to change global to local symbols on Mac OS X.\nNMEDIT=$lt_NMEDIT\n\n# Tool to manipulate fat objects and archives on Mac OS X.\nLIPO=$lt_LIPO\n\n# ldd/readelf like tool for Mach-O binaries on Mac OS X.\nOTOOL=$lt_OTOOL\n\n# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.\nOTOOL64=$lt_OTOOL64\n\n# Old archive suffix (normally \"a\").\nlibext=$libext\n\n# Shared library suffix (normally \".so\").\nshrext_cmds=$lt_shrext_cmds\n\n# The commands to extract the exported symbol list from a shared archive.\nextract_expsyms_cmds=$lt_extract_expsyms_cmds\n\n# Variables whose values should be saved in libtool wrapper scripts and\n# restored at link time.\nvariables_saved_for_relink=$lt_variables_saved_for_relink\n\n# Do we need the \"lib\" prefix for modules?\nneed_lib_prefix=$need_lib_prefix\n\n# Do we need a version for libraries?\nneed_version=$need_version\n\n# Library versioning type.\nversion_type=$version_type\n\n# Shared library runtime path variable.\nrunpath_var=$runpath_var\n\n# Shared library path variable.\nshlibpath_var=$shlibpath_var\n\n# Is shlibpath searched before the hard-coded library search path?\nshlibpath_overrides_runpath=$shlibpath_overrides_runpath\n\n# Format of library name prefix.\nlibname_spec=$lt_libname_spec\n\n# List of archive names.  First name is the real one, the rest are links.\n# The last name is the one that the linker finds with -lNAME\nlibrary_names_spec=$lt_library_names_spec\n\n# The coded name of the library, if different from the real name.\nsoname_spec=$lt_soname_spec\n\n# Permission mode override for installation of shared libraries.\ninstall_override_mode=$lt_install_override_mode\n\n# Command to use after installation of a shared archive.\npostinstall_cmds=$lt_postinstall_cmds\n\n# Command to use after uninstallation of a shared archive.\npostuninstall_cmds=$lt_postuninstall_cmds\n\n# Commands used to finish a libtool library installation in a directory.\nfinish_cmds=$lt_finish_cmds\n\n# As \"finish_cmds\", except a single script fragment to be evaled but\n# not shown.\nfinish_eval=$lt_finish_eval\n\n# Whether we should hardcode library paths into libraries.\nhardcode_into_libs=$hardcode_into_libs\n\n# Compile-time system search path for libraries.\nsys_lib_search_path_spec=$lt_sys_lib_search_path_spec\n\n# Detected run-time system search path for libraries.\nsys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path\n\n# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.\nconfigure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path\n\n# Whether dlopen is supported.\ndlopen_support=$enable_dlopen\n\n# Whether dlopen of programs is supported.\ndlopen_self=$enable_dlopen_self\n\n# Whether dlopen of statically linked programs is supported.\ndlopen_self_static=$enable_dlopen_self_static\n\n# Commands to strip libraries.\nold_striplib=$lt_old_striplib\nstriplib=$lt_striplib\n\n\n# The linker used to build libraries.\nLD=$lt_LD\n\n# How to create reloadable object files.\nreload_flag=$lt_reload_flag\nreload_cmds=$lt_reload_cmds\n\n# Commands used to build an old-style archive.\nold_archive_cmds=$lt_old_archive_cmds\n\n# A language specific compiler.\nCC=$lt_compiler\n\n# Is the compiler the GNU compiler?\nwith_gcc=$GCC\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag\n\n# Additional compiler flags for building library objects.\npic_flag=$lt_lt_prog_compiler_pic\n\n# How to pass a linker flag through the compiler.\nwl=$lt_lt_prog_compiler_wl\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=$lt_lt_prog_compiler_static\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=$lt_lt_cv_prog_compiler_c_o\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=$archive_cmds_need_lc\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=$lt_export_dynamic_flag_spec\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=$lt_whole_archive_flag_spec\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=$lt_compiler_needs_object\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=$lt_old_archive_from_new_cmds\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds\n\n# Commands used to build a shared archive.\narchive_cmds=$lt_archive_cmds\narchive_expsym_cmds=$lt_archive_expsym_cmds\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=$lt_module_cmds\nmodule_expsym_cmds=$lt_module_expsym_cmds\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=$lt_with_gnu_ld\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=$lt_allow_undefined_flag\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=$lt_no_undefined_flag\n\n# Flag to hardcode \\$libdir into a binary during linking.\n# This must work even if \\$libdir does not exist\nhardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=$lt_hardcode_libdir_separator\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=$hardcode_direct\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting \\$shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=$hardcode_direct_absolute\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=$hardcode_minus_L\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=$hardcode_shlibpath_var\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=$hardcode_automatic\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=$inherit_rpath\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=$link_all_deplibs\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=$always_export_symbols\n\n# The commands to list exported symbols.\nexport_symbols_cmds=$lt_export_symbols_cmds\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=$lt_exclude_expsyms\n\n# Symbols that must always be exported.\ninclude_expsyms=$lt_include_expsyms\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=$lt_prelink_cmds\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=$lt_postlink_cmds\n\n# Specify filename containing input files.\nfile_list_spec=$lt_file_list_spec\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=$hardcode_action\n\n# ### END LIBTOOL CONFIG\n\n_LT_EOF\n\n    cat <<'_LT_EOF' >> \"$cfgfile\"\n\n# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n\n# ### END FUNCTIONS SHARED WITH CONFIGURE\n\n_LT_EOF\n\n  case $host_os in\n  aix3*)\n    cat <<\\_LT_EOF >> \"$cfgfile\"\n# AIX sometimes has problems with the GCC collect2 program.  For some\n# reason, if we set the COLLECT_NAMES environment variable, the problems\n# vanish in a puff of smoke.\nif test set != \"${COLLECT_NAMES+set}\"; then\n  COLLECT_NAMES=\n  export COLLECT_NAMES\nfi\n_LT_EOF\n    ;;\n  esac\n\n\nltmain=$ac_aux_dir/ltmain.sh\n\n\n  # We use sed instead of cat because bash on DJGPP gets confused if\n  # if finds mixed CR/LF and LF-only lines.  Since sed operates in\n  # text mode, it properly converts lines to CR/LF.  This bash problem\n  # is reportedly fixed, but why not run on old versions too?\n  sed '$q' \"$ltmain\" >> \"$cfgfile\" \\\n     || (rm -f \"$cfgfile\"; exit 1)\n\n   mv -f \"$cfgfile\" \"$ofile\" ||\n    (rm -f \"$ofile\" && cp \"$cfgfile\" \"$ofile\" && rm -f \"$cfgfile\")\n  chmod +x \"$ofile\"\n\n ;;\n\n  esac\ndone # for ac_tag\n\n\nas_fn_exit 0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/preload/configure",
    "content": "#! /bin/sh\n# Guess values for system-dependent variables and create Makefiles.\n# Generated by GNU Autoconf 2.69 for libiconv 0.\n#\n#\n# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.\n#\n#\n# This configure script is free software; the Free Software Foundation\n# gives unlimited permission to copy, distribute and modify it.\n## -------------------- ##\n## M4sh Initialization. ##\n## -------------------- ##\n\n# Be more Bourne compatible\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\n\nas_nl='\n'\nexport as_nl\n# Printing a long string crashes Solaris 7 /usr/bin/printf.\nas_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo\n# Prefer a ksh shell builtin over an external printf program on Solaris,\n# but without wasting forks for bash or zsh.\nif test -z \"$BASH_VERSION$ZSH_VERSION\" \\\n    && (test \"X`print -r -- $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='print -r --'\n  as_echo_n='print -rn --'\nelif (test \"X`printf %s $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='printf %s\\n'\n  as_echo_n='printf %s'\nelse\n  if test \"X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`\" = \"X-n $as_echo\"; then\n    as_echo_body='eval /usr/ucb/echo -n \"$1$as_nl\"'\n    as_echo_n='/usr/ucb/echo -n'\n  else\n    as_echo_body='eval expr \"X$1\" : \"X\\\\(.*\\\\)\"'\n    as_echo_n_body='eval\n      arg=$1;\n      case $arg in #(\n      *\"$as_nl\"*)\n\texpr \"X$arg\" : \"X\\\\(.*\\\\)$as_nl\";\n\targ=`expr \"X$arg\" : \".*$as_nl\\\\(.*\\\\)\"`;;\n      esac;\n      expr \"X$arg\" : \"X\\\\(.*\\\\)\" | tr -d \"$as_nl\"\n    '\n    export as_echo_n_body\n    as_echo_n='sh -c $as_echo_n_body as_echo'\n  fi\n  export as_echo_body\n  as_echo='sh -c $as_echo_body as_echo'\nfi\n\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n# IFS\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent editors from complaining about space-tab.\n# (If _AS_PATH_WALK were called with IFS unset, it would disable word\n# splitting by setting IFS to empty value.)\nIFS=\" \"\"\t$as_nl\"\n\n# Find who we are.  Look in the path if we contain no directory separator.\nas_myself=\ncase $0 in #((\n  *[\\\\/]* ) as_myself=$0 ;;\n  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    test -r \"$as_dir/$0\" && as_myself=$as_dir/$0 && break\n  done\nIFS=$as_save_IFS\n\n     ;;\nesac\n# We did not find ourselves, most probably we were run as `sh COMMAND'\n# in which case we are not to be found in the path.\nif test \"x$as_myself\" = x; then\n  as_myself=$0\nfi\nif test ! -f \"$as_myself\"; then\n  $as_echo \"$as_myself: error: cannot find myself; rerun with an absolute file name\" >&2\n  exit 1\nfi\n\n# Unset variables that we do not need and which cause bugs (e.g. in\n# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the \"|| exit 1\"\n# suppresses any \"Segmentation fault\" message there.  '((' could\n# trigger a bug in pdksh 5.2.14.\nfor as_var in BASH_ENV ENV MAIL MAILPATH\ndo eval test x\\${$as_var+set} = xset \\\n  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :\ndone\nPS1='$ '\nPS2='> '\nPS4='+ '\n\n# NLS nuisances.\nLC_ALL=C\nexport LC_ALL\nLANGUAGE=C\nexport LANGUAGE\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n# Use a proper internal environment variable to ensure we don't fall\n  # into an infinite loop, continuously re-executing ourselves.\n  if test x\"${_as_can_reexec}\" != xno && test \"x$CONFIG_SHELL\" != x; then\n    _as_can_reexec=no; export _as_can_reexec;\n    # We cannot yet assume a decent shell, so we have to provide a\n# neutralization value for shells without unset; and this also\n# works around shells that cannot unset nonexistent variables.\n# Preserve -v and -x to the replacement shell.\nBASH_ENV=/dev/null\nENV=/dev/null\n(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV\ncase $- in # ((((\n  *v*x* | *x*v* ) as_opts=-vx ;;\n  *v* ) as_opts=-v ;;\n  *x* ) as_opts=-x ;;\n  * ) as_opts= ;;\nesac\nexec $CONFIG_SHELL $as_opts \"$as_myself\" ${1+\"$@\"}\n# Admittedly, this is quite paranoid, since all the known shells bail\n# out after a failed `exec'.\n$as_echo \"$0: could not re-execute with $CONFIG_SHELL\" >&2\nas_fn_exit 255\n  fi\n  # We don't want this to propagate to other subprocesses.\n          { _as_can_reexec=; unset _as_can_reexec;}\nif test \"x$CONFIG_SHELL\" = x; then\n  as_bourne_compatible=\"if test -n \\\"\\${ZSH_VERSION+set}\\\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on \\${1+\\\"\\$@\\\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '\\${1+\\\"\\$@\\\"}'='\\\"\\$@\\\"'\n  setopt NO_GLOB_SUBST\nelse\n  case \\`(set -o) 2>/dev/null\\` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\"\n  as_required=\"as_fn_return () { (exit \\$1); }\nas_fn_success () { as_fn_return 0; }\nas_fn_failure () { as_fn_return 1; }\nas_fn_ret_success () { return 0; }\nas_fn_ret_failure () { return 1; }\n\nexitcode=0\nas_fn_success || { exitcode=1; echo as_fn_success failed.; }\nas_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }\nas_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }\nas_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }\nif ( set x; as_fn_ret_success y && test x = \\\"\\$1\\\" ); then :\n\nelse\n  exitcode=1; echo positional parameters were not saved.\nfi\ntest x\\$exitcode = x0 || exit 1\ntest -x / || exit 1\"\n  as_suggested=\"  as_lineno_1=\";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested\" as_lineno_1a=\\$LINENO\n  as_lineno_2=\";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested\" as_lineno_2a=\\$LINENO\n  eval 'test \\\"x\\$as_lineno_1'\\$as_run'\\\" != \\\"x\\$as_lineno_2'\\$as_run'\\\" &&\n  test \\\"x\\`expr \\$as_lineno_1'\\$as_run' + 1\\`\\\" = \\\"x\\$as_lineno_2'\\$as_run'\\\"' || exit 1\ntest \\$(( 1 + 1 )) = 2 || exit 1\n\n  test -n \\\"\\${ZSH_VERSION+set}\\${BASH_VERSION+set}\\\" || (\n    ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\n    ECHO=\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\n    ECHO=\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\n    PATH=/empty FPATH=/empty; export PATH FPATH\n    test \\\"X\\`printf %s \\$ECHO\\`\\\" = \\\"X\\$ECHO\\\" \\\\\n      || test \\\"X\\`print -r -- \\$ECHO\\`\\\" = \\\"X\\$ECHO\\\" ) || exit 1\"\n  if (eval \"$as_required\") 2>/dev/null; then :\n  as_have_required=yes\nelse\n  as_have_required=no\nfi\n  if test x$as_have_required = xyes && (eval \"$as_suggested\") 2>/dev/null; then :\n\nelse\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nas_found=false\nfor as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  as_found=:\n  case $as_dir in #(\n\t /*)\n\t   for as_base in sh bash ksh sh5; do\n\t     # Try only shells that exist, to save several forks.\n\t     as_shell=$as_dir/$as_base\n\t     if { test -f \"$as_shell\" || test -f \"$as_shell.exe\"; } &&\n\t\t    { $as_echo \"$as_bourne_compatible\"\"$as_required\" | as_run=a \"$as_shell\"; } 2>/dev/null; then :\n  CONFIG_SHELL=$as_shell as_have_required=yes\n\t\t   if { $as_echo \"$as_bourne_compatible\"\"$as_suggested\" | as_run=a \"$as_shell\"; } 2>/dev/null; then :\n  break 2\nfi\nfi\n\t   done;;\n       esac\n  as_found=false\ndone\n$as_found || { if { test -f \"$SHELL\" || test -f \"$SHELL.exe\"; } &&\n\t      { $as_echo \"$as_bourne_compatible\"\"$as_required\" | as_run=a \"$SHELL\"; } 2>/dev/null; then :\n  CONFIG_SHELL=$SHELL as_have_required=yes\nfi; }\nIFS=$as_save_IFS\n\n\n      if test \"x$CONFIG_SHELL\" != x; then :\n  export CONFIG_SHELL\n             # We cannot yet assume a decent shell, so we have to provide a\n# neutralization value for shells without unset; and this also\n# works around shells that cannot unset nonexistent variables.\n# Preserve -v and -x to the replacement shell.\nBASH_ENV=/dev/null\nENV=/dev/null\n(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV\ncase $- in # ((((\n  *v*x* | *x*v* ) as_opts=-vx ;;\n  *v* ) as_opts=-v ;;\n  *x* ) as_opts=-x ;;\n  * ) as_opts= ;;\nesac\nexec $CONFIG_SHELL $as_opts \"$as_myself\" ${1+\"$@\"}\n# Admittedly, this is quite paranoid, since all the known shells bail\n# out after a failed `exec'.\n$as_echo \"$0: could not re-execute with $CONFIG_SHELL\" >&2\nexit 255\nfi\n\n    if test x$as_have_required = xno; then :\n  $as_echo \"$0: This script requires a shell more modern than all\"\n  $as_echo \"$0: the shells that I found on your system.\"\n  if test x${ZSH_VERSION+set} = xset ; then\n    $as_echo \"$0: In particular, zsh $ZSH_VERSION has bugs and should\"\n    $as_echo \"$0: be upgraded to zsh 4.3.4 or later.\"\n  else\n    $as_echo \"$0: Please tell bug-autoconf@gnu.org about your system,\n$0: including any error possibly output before this\n$0: message. Then install a modern shell, or manually run\n$0: the script under such a shell if you do have one.\"\n  fi\n  exit 1\nfi\nfi\nfi\nSHELL=${CONFIG_SHELL-/bin/sh}\nexport SHELL\n# Unset more variables known to interfere with behavior of common tools.\nCLICOLOR_FORCE= GREP_OPTIONS=\nunset CLICOLOR_FORCE GREP_OPTIONS\n\n## --------------------- ##\n## M4sh Shell Functions. ##\n## --------------------- ##\n# as_fn_unset VAR\n# ---------------\n# Portably unset VAR.\nas_fn_unset ()\n{\n  { eval $1=; unset $1;}\n}\nas_unset=as_fn_unset\n\n# as_fn_set_status STATUS\n# -----------------------\n# Set $? to STATUS, without forking.\nas_fn_set_status ()\n{\n  return $1\n} # as_fn_set_status\n\n# as_fn_exit STATUS\n# -----------------\n# Exit the shell with STATUS, even in a \"trap 0\" or \"set -e\" context.\nas_fn_exit ()\n{\n  set +e\n  as_fn_set_status $1\n  exit $1\n} # as_fn_exit\n\n# as_fn_mkdir_p\n# -------------\n# Create \"$as_dir\" as a directory, including parents if necessary.\nas_fn_mkdir_p ()\n{\n\n  case $as_dir in #(\n  -*) as_dir=./$as_dir;;\n  esac\n  test -d \"$as_dir\" || eval $as_mkdir_p || {\n    as_dirs=\n    while :; do\n      case $as_dir in #(\n      *\\'*) as_qdir=`$as_echo \"$as_dir\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; #'(\n      *) as_qdir=$as_dir;;\n      esac\n      as_dirs=\"'$as_qdir' $as_dirs\"\n      as_dir=`$as_dirname -- \"$as_dir\" ||\n$as_expr X\"$as_dir\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_dir\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_dir\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      test -d \"$as_dir\" && break\n    done\n    test -z \"$as_dirs\" || eval \"mkdir $as_dirs\"\n  } || test -d \"$as_dir\" || as_fn_error $? \"cannot create directory $as_dir\"\n\n\n} # as_fn_mkdir_p\n\n# as_fn_executable_p FILE\n# -----------------------\n# Test if FILE is an executable regular file.\nas_fn_executable_p ()\n{\n  test -f \"$1\" && test -x \"$1\"\n} # as_fn_executable_p\n# as_fn_append VAR VALUE\n# ----------------------\n# Append the text in VALUE to the end of the definition contained in VAR. Take\n# advantage of any shell optimizations that allow amortized linear growth over\n# repeated appends, instead of the typical quadratic growth present in naive\n# implementations.\nif (eval \"as_var=1; as_var+=2; test x\\$as_var = x12\") 2>/dev/null; then :\n  eval 'as_fn_append ()\n  {\n    eval $1+=\\$2\n  }'\nelse\n  as_fn_append ()\n  {\n    eval $1=\\$$1\\$2\n  }\nfi # as_fn_append\n\n# as_fn_arith ARG...\n# ------------------\n# Perform arithmetic evaluation on the ARGs, and store the result in the\n# global $as_val. Take advantage of shells that can avoid forks. The arguments\n# must be portable across $(()) and expr.\nif (eval \"test \\$(( 1 + 1 )) = 2\") 2>/dev/null; then :\n  eval 'as_fn_arith ()\n  {\n    as_val=$(( $* ))\n  }'\nelse\n  as_fn_arith ()\n  {\n    as_val=`expr \"$@\" || test $? -eq 1`\n  }\nfi # as_fn_arith\n\n\n# as_fn_error STATUS ERROR [LINENO LOG_FD]\n# ----------------------------------------\n# Output \"`basename $0`: error: ERROR\" to stderr. If LINENO and LOG_FD are\n# provided, also output the error to LOG_FD, referencing LINENO. Then exit the\n# script with STATUS, using 1 if that was 0.\nas_fn_error ()\n{\n  as_status=$1; test $as_status -eq 0 && as_status=1\n  if test \"$4\"; then\n    as_lineno=${as_lineno-\"$3\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n    $as_echo \"$as_me:${as_lineno-$LINENO}: error: $2\" >&$4\n  fi\n  $as_echo \"$as_me: error: $2\" >&2\n  as_fn_exit $as_status\n} # as_fn_error\n\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nif (basename -- /) >/dev/null 2>&1 && test \"X`basename -- / 2>&1`\" = \"X/\"; then\n  as_basename=basename\nelse\n  as_basename=false\nfi\n\nif (as_dir=`dirname -- /` && test \"X$as_dir\" = X/) >/dev/null 2>&1; then\n  as_dirname=dirname\nelse\n  as_dirname=false\nfi\n\nas_me=`$as_basename -- \"$0\" ||\n$as_expr X/\"$0\" : '.*/\\([^/][^/]*\\)/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X/\"$0\" |\n    sed '/^.*\\/\\([^/][^/]*\\)\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n\n# Avoid depending upon Character Ranges.\nas_cr_letters='abcdefghijklmnopqrstuvwxyz'\nas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nas_cr_Letters=$as_cr_letters$as_cr_LETTERS\nas_cr_digits='0123456789'\nas_cr_alnum=$as_cr_Letters$as_cr_digits\n\n\n  as_lineno_1=$LINENO as_lineno_1a=$LINENO\n  as_lineno_2=$LINENO as_lineno_2a=$LINENO\n  eval 'test \"x$as_lineno_1'$as_run'\" != \"x$as_lineno_2'$as_run'\" &&\n  test \"x`expr $as_lineno_1'$as_run' + 1`\" = \"x$as_lineno_2'$as_run'\"' || {\n  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)\n  sed -n '\n    p\n    /[$]LINENO/=\n  ' <$as_myself |\n    sed '\n      s/[$]LINENO.*/&-/\n      t lineno\n      b\n      :lineno\n      N\n      :loop\n      s/[$]LINENO\\([^'$as_cr_alnum'_].*\\n\\)\\(.*\\)/\\2\\1\\2/\n      t loop\n      s/-\\n.*//\n    ' >$as_me.lineno &&\n  chmod +x \"$as_me.lineno\" ||\n    { $as_echo \"$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell\" >&2; as_fn_exit 1; }\n\n  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have\n  # already done that, so ensure we don't try to do so again and fall\n  # in an infinite loop.  This has already happened in practice.\n  _as_can_reexec=no; export _as_can_reexec\n  # Don't try to exec as it changes $[0], causing all sort of problems\n  # (the dirname of $[0] is not the place where we might find the\n  # original and so on.  Autoconf is especially sensitive to this).\n  . \"./$as_me.lineno\"\n  # Exit status is that of the last command.\n  exit\n}\n\nECHO_C= ECHO_N= ECHO_T=\ncase `echo -n x` in #(((((\n-n*)\n  case `echo 'xy\\c'` in\n  *c*) ECHO_T='\t';;\t# ECHO_T is single tab character.\n  xy)  ECHO_C='\\c';;\n  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null\n       ECHO_T='\t';;\n  esac;;\n*)\n  ECHO_N='-n';;\nesac\n\nrm -f conf$$ conf$$.exe conf$$.file\nif test -d conf$$.dir; then\n  rm -f conf$$.dir/conf$$.file\nelse\n  rm -f conf$$.dir\n  mkdir conf$$.dir 2>/dev/null\nfi\nif (echo >conf$$.file) 2>/dev/null; then\n  if ln -s conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s='ln -s'\n    # ... but there are two gotchas:\n    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.\n    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.\n    # In both cases, we have to default to `cp -pR'.\n    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||\n      as_ln_s='cp -pR'\n  elif ln conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s=ln\n  else\n    as_ln_s='cp -pR'\n  fi\nelse\n  as_ln_s='cp -pR'\nfi\nrm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file\nrmdir conf$$.dir 2>/dev/null\n\nif mkdir -p . 2>/dev/null; then\n  as_mkdir_p='mkdir -p \"$as_dir\"'\nelse\n  test -d ./-p && rmdir ./-p\n  as_mkdir_p=false\nfi\n\nas_test_x='test -x'\nas_executable_p=as_fn_executable_p\n\n# Sed expression to map a string onto a valid CPP name.\nas_tr_cpp=\"eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'\"\n\n# Sed expression to map a string onto a valid variable name.\nas_tr_sh=\"eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'\"\n\nSHELL=${CONFIG_SHELL-/bin/sh}\n\n\ntest -n \"$DJDIR\" || exec 7<&0 </dev/null\nexec 6>&1\n\n# Name of the host.\n# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,\n# so uname gets run too.\nac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`\n\n#\n# Initializations.\n#\nac_default_prefix=/usr/local\nac_clean_files=\nac_config_libobj_dir=.\nLIBOBJS=\ncross_compiling=no\nsubdirs=\nMFLAGS=\nMAKEFLAGS=\n\n# Identity of this package.\nPACKAGE_NAME='libiconv'\nPACKAGE_TARNAME='libiconv'\nPACKAGE_VERSION='0'\nPACKAGE_STRING='libiconv 0'\nPACKAGE_BUGREPORT=''\nPACKAGE_URL=''\n\nac_unique_file=\"configure.ac\"\n# Factoring default headers for most tests.\nac_includes_default=\"\\\n#include <stdio.h>\n#ifdef HAVE_SYS_TYPES_H\n# include <sys/types.h>\n#endif\n#ifdef HAVE_SYS_STAT_H\n# include <sys/stat.h>\n#endif\n#ifdef STDC_HEADERS\n# include <stdlib.h>\n# include <stddef.h>\n#else\n# ifdef HAVE_STDLIB_H\n#  include <stdlib.h>\n# endif\n#endif\n#ifdef HAVE_STRING_H\n# if !defined STDC_HEADERS && defined HAVE_MEMORY_H\n#  include <memory.h>\n# endif\n# include <string.h>\n#endif\n#ifdef HAVE_STRINGS_H\n# include <strings.h>\n#endif\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#ifdef HAVE_STDINT_H\n# include <stdint.h>\n#endif\n#ifdef HAVE_UNISTD_H\n# include <unistd.h>\n#endif\"\n\nac_subst_vars='LTLIBOBJS\nLIBOBJS\nPLUGLIB\nHAVE_VISIBILITY\nCFLAG_VISIBILITY\nLT_SYS_LIBRARY_PATH\nOTOOL64\nOTOOL\nLIPO\nNMEDIT\nDSYMUTIL\nMANIFEST_TOOL\nAWK\nRANLIB\nSTRIP\nac_ct_AR\nAR\nNM\nac_ct_DUMPBIN\nDUMPBIN\nLD\nFGREP\nSED\nLIBTOOL\nOBJDUMP\nDLLTOOL\nAS\nEGREP\nGREP\nLN_S\nRELOCATABLE\nhost_os\nhost_vendor\nhost_cpu\nhost\nbuild_os\nbuild_vendor\nbuild_cpu\nbuild\nINSTALL_DATA\nINSTALL_SCRIPT\nINSTALL_PROGRAM\nCPP\nOBJEXT\nEXEEXT\nac_ct_CC\nCPPFLAGS\nLDFLAGS\nCFLAGS\nCC\nSET_MAKE\ntarget_alias\nhost_alias\nbuild_alias\nLIBS\nECHO_T\nECHO_N\nECHO_C\nDEFS\nmandir\nlocaledir\nlibdir\npsdir\npdfdir\ndvidir\nhtmldir\ninfodir\ndocdir\noldincludedir\nincludedir\nlocalstatedir\nsharedstatedir\nsysconfdir\ndatadir\ndatarootdir\nlibexecdir\nsbindir\nbindir\nprogram_transform_name\nprefix\nexec_prefix\nPACKAGE_URL\nPACKAGE_BUGREPORT\nPACKAGE_STRING\nPACKAGE_VERSION\nPACKAGE_TARNAME\nPACKAGE_NAME\nPATH_SEPARATOR\nSHELL'\nac_subst_files=''\nac_user_opts='\nenable_option_checking\nenable_relocatable\nenable_shared\nenable_static\nwith_pic\nenable_fast_install\nwith_aix_soname\nwith_gnu_ld\nwith_sysroot\nenable_libtool_lock\n'\n      ac_precious_vars='build_alias\nhost_alias\ntarget_alias\nCC\nCFLAGS\nLDFLAGS\nLIBS\nCPPFLAGS\nCPP\nLT_SYS_LIBRARY_PATH'\n\n\n# Initialize some variables set by options.\nac_init_help=\nac_init_version=false\nac_unrecognized_opts=\nac_unrecognized_sep=\n# The variables have the same names as the options, with\n# dashes changed to underlines.\ncache_file=/dev/null\nexec_prefix=NONE\nno_create=\nno_recursion=\nprefix=NONE\nprogram_prefix=NONE\nprogram_suffix=NONE\nprogram_transform_name=s,x,x,\nsilent=\nsite=\nsrcdir=\nverbose=\nx_includes=NONE\nx_libraries=NONE\n\n# Installation directory options.\n# These are left unexpanded so users can \"make install exec_prefix=/foo\"\n# and all the variables that are supposed to be based on exec_prefix\n# by default will actually change.\n# Use braces instead of parens because sh, perl, etc. also accept them.\n# (The list follows the same order as the GNU Coding Standards.)\nbindir='${exec_prefix}/bin'\nsbindir='${exec_prefix}/sbin'\nlibexecdir='${exec_prefix}/libexec'\ndatarootdir='${prefix}/share'\ndatadir='${datarootdir}'\nsysconfdir='${prefix}/etc'\nsharedstatedir='${prefix}/com'\nlocalstatedir='${prefix}/var'\nincludedir='${prefix}/include'\noldincludedir='/usr/include'\ndocdir='${datarootdir}/doc/${PACKAGE_TARNAME}'\ninfodir='${datarootdir}/info'\nhtmldir='${docdir}'\ndvidir='${docdir}'\npdfdir='${docdir}'\npsdir='${docdir}'\nlibdir='${exec_prefix}/lib'\nlocaledir='${datarootdir}/locale'\nmandir='${datarootdir}/man'\n\nac_prev=\nac_dashdash=\nfor ac_option\ndo\n  # If the previous option needs an argument, assign it.\n  if test -n \"$ac_prev\"; then\n    eval $ac_prev=\\$ac_option\n    ac_prev=\n    continue\n  fi\n\n  case $ac_option in\n  *=?*) ac_optarg=`expr \"X$ac_option\" : '[^=]*=\\(.*\\)'` ;;\n  *=)   ac_optarg= ;;\n  *)    ac_optarg=yes ;;\n  esac\n\n  # Accept the important Cygnus configure options, so we can diagnose typos.\n\n  case $ac_dashdash$ac_option in\n  --)\n    ac_dashdash=yes ;;\n\n  -bindir | --bindir | --bindi | --bind | --bin | --bi)\n    ac_prev=bindir ;;\n  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)\n    bindir=$ac_optarg ;;\n\n  -build | --build | --buil | --bui | --bu)\n    ac_prev=build_alias ;;\n  -build=* | --build=* | --buil=* | --bui=* | --bu=*)\n    build_alias=$ac_optarg ;;\n\n  -cache-file | --cache-file | --cache-fil | --cache-fi \\\n  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)\n    ac_prev=cache_file ;;\n  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \\\n  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)\n    cache_file=$ac_optarg ;;\n\n  --config-cache | -C)\n    cache_file=config.cache ;;\n\n  -datadir | --datadir | --datadi | --datad)\n    ac_prev=datadir ;;\n  -datadir=* | --datadir=* | --datadi=* | --datad=*)\n    datadir=$ac_optarg ;;\n\n  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \\\n  | --dataroo | --dataro | --datar)\n    ac_prev=datarootdir ;;\n  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \\\n  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)\n    datarootdir=$ac_optarg ;;\n\n  -disable-* | --disable-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*disable-\\(.*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid feature name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"enable_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval enable_$ac_useropt=no ;;\n\n  -docdir | --docdir | --docdi | --doc | --do)\n    ac_prev=docdir ;;\n  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)\n    docdir=$ac_optarg ;;\n\n  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)\n    ac_prev=dvidir ;;\n  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)\n    dvidir=$ac_optarg ;;\n\n  -enable-* | --enable-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*enable-\\([^=]*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid feature name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"enable_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval enable_$ac_useropt=\\$ac_optarg ;;\n\n  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \\\n  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \\\n  | --exec | --exe | --ex)\n    ac_prev=exec_prefix ;;\n  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \\\n  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \\\n  | --exec=* | --exe=* | --ex=*)\n    exec_prefix=$ac_optarg ;;\n\n  -gas | --gas | --ga | --g)\n    # Obsolete; use --with-gas.\n    with_gas=yes ;;\n\n  -help | --help | --hel | --he | -h)\n    ac_init_help=long ;;\n  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)\n    ac_init_help=recursive ;;\n  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)\n    ac_init_help=short ;;\n\n  -host | --host | --hos | --ho)\n    ac_prev=host_alias ;;\n  -host=* | --host=* | --hos=* | --ho=*)\n    host_alias=$ac_optarg ;;\n\n  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)\n    ac_prev=htmldir ;;\n  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \\\n  | --ht=*)\n    htmldir=$ac_optarg ;;\n\n  -includedir | --includedir | --includedi | --included | --include \\\n  | --includ | --inclu | --incl | --inc)\n    ac_prev=includedir ;;\n  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \\\n  | --includ=* | --inclu=* | --incl=* | --inc=*)\n    includedir=$ac_optarg ;;\n\n  -infodir | --infodir | --infodi | --infod | --info | --inf)\n    ac_prev=infodir ;;\n  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)\n    infodir=$ac_optarg ;;\n\n  -libdir | --libdir | --libdi | --libd)\n    ac_prev=libdir ;;\n  -libdir=* | --libdir=* | --libdi=* | --libd=*)\n    libdir=$ac_optarg ;;\n\n  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \\\n  | --libexe | --libex | --libe)\n    ac_prev=libexecdir ;;\n  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \\\n  | --libexe=* | --libex=* | --libe=*)\n    libexecdir=$ac_optarg ;;\n\n  -localedir | --localedir | --localedi | --localed | --locale)\n    ac_prev=localedir ;;\n  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)\n    localedir=$ac_optarg ;;\n\n  -localstatedir | --localstatedir | --localstatedi | --localstated \\\n  | --localstate | --localstat | --localsta | --localst | --locals)\n    ac_prev=localstatedir ;;\n  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \\\n  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)\n    localstatedir=$ac_optarg ;;\n\n  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)\n    ac_prev=mandir ;;\n  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)\n    mandir=$ac_optarg ;;\n\n  -nfp | --nfp | --nf)\n    # Obsolete; use --without-fp.\n    with_fp=no ;;\n\n  -no-create | --no-create | --no-creat | --no-crea | --no-cre \\\n  | --no-cr | --no-c | -n)\n    no_create=yes ;;\n\n  -no-recursion | --no-recursion | --no-recursio | --no-recursi \\\n  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)\n    no_recursion=yes ;;\n\n  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \\\n  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \\\n  | --oldin | --oldi | --old | --ol | --o)\n    ac_prev=oldincludedir ;;\n  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \\\n  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \\\n  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)\n    oldincludedir=$ac_optarg ;;\n\n  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)\n    ac_prev=prefix ;;\n  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)\n    prefix=$ac_optarg ;;\n\n  -program-prefix | --program-prefix | --program-prefi | --program-pref \\\n  | --program-pre | --program-pr | --program-p)\n    ac_prev=program_prefix ;;\n  -program-prefix=* | --program-prefix=* | --program-prefi=* \\\n  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)\n    program_prefix=$ac_optarg ;;\n\n  -program-suffix | --program-suffix | --program-suffi | --program-suff \\\n  | --program-suf | --program-su | --program-s)\n    ac_prev=program_suffix ;;\n  -program-suffix=* | --program-suffix=* | --program-suffi=* \\\n  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)\n    program_suffix=$ac_optarg ;;\n\n  -program-transform-name | --program-transform-name \\\n  | --program-transform-nam | --program-transform-na \\\n  | --program-transform-n | --program-transform- \\\n  | --program-transform | --program-transfor \\\n  | --program-transfo | --program-transf \\\n  | --program-trans | --program-tran \\\n  | --progr-tra | --program-tr | --program-t)\n    ac_prev=program_transform_name ;;\n  -program-transform-name=* | --program-transform-name=* \\\n  | --program-transform-nam=* | --program-transform-na=* \\\n  | --program-transform-n=* | --program-transform-=* \\\n  | --program-transform=* | --program-transfor=* \\\n  | --program-transfo=* | --program-transf=* \\\n  | --program-trans=* | --program-tran=* \\\n  | --progr-tra=* | --program-tr=* | --program-t=*)\n    program_transform_name=$ac_optarg ;;\n\n  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)\n    ac_prev=pdfdir ;;\n  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)\n    pdfdir=$ac_optarg ;;\n\n  -psdir | --psdir | --psdi | --psd | --ps)\n    ac_prev=psdir ;;\n  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)\n    psdir=$ac_optarg ;;\n\n  -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n  | -silent | --silent | --silen | --sile | --sil)\n    silent=yes ;;\n\n  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)\n    ac_prev=sbindir ;;\n  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \\\n  | --sbi=* | --sb=*)\n    sbindir=$ac_optarg ;;\n\n  -sharedstatedir | --sharedstatedir | --sharedstatedi \\\n  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \\\n  | --sharedst | --shareds | --shared | --share | --shar \\\n  | --sha | --sh)\n    ac_prev=sharedstatedir ;;\n  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \\\n  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \\\n  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \\\n  | --sha=* | --sh=*)\n    sharedstatedir=$ac_optarg ;;\n\n  -site | --site | --sit)\n    ac_prev=site ;;\n  -site=* | --site=* | --sit=*)\n    site=$ac_optarg ;;\n\n  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)\n    ac_prev=srcdir ;;\n  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)\n    srcdir=$ac_optarg ;;\n\n  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \\\n  | --syscon | --sysco | --sysc | --sys | --sy)\n    ac_prev=sysconfdir ;;\n  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \\\n  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)\n    sysconfdir=$ac_optarg ;;\n\n  -target | --target | --targe | --targ | --tar | --ta | --t)\n    ac_prev=target_alias ;;\n  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)\n    target_alias=$ac_optarg ;;\n\n  -v | -verbose | --verbose | --verbos | --verbo | --verb)\n    verbose=yes ;;\n\n  -version | --version | --versio | --versi | --vers | -V)\n    ac_init_version=: ;;\n\n  -with-* | --with-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*with-\\([^=]*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid package name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"with_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval with_$ac_useropt=\\$ac_optarg ;;\n\n  -without-* | --without-*)\n    ac_useropt=`expr \"x$ac_option\" : 'x-*without-\\(.*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_useropt\" : \".*[^-+._$as_cr_alnum]\" >/dev/null &&\n      as_fn_error $? \"invalid package name: $ac_useropt\"\n    ac_useropt_orig=$ac_useropt\n    ac_useropt=`$as_echo \"$ac_useropt\" | sed 's/[-+.]/_/g'`\n    case $ac_user_opts in\n      *\"\n\"with_$ac_useropt\"\n\"*) ;;\n      *) ac_unrecognized_opts=\"$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig\"\n\t ac_unrecognized_sep=', ';;\n    esac\n    eval with_$ac_useropt=no ;;\n\n  --x)\n    # Obsolete; use --with-x.\n    with_x=yes ;;\n\n  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \\\n  | --x-incl | --x-inc | --x-in | --x-i)\n    ac_prev=x_includes ;;\n  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \\\n  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)\n    x_includes=$ac_optarg ;;\n\n  -x-libraries | --x-libraries | --x-librarie | --x-librari \\\n  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)\n    ac_prev=x_libraries ;;\n  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \\\n  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)\n    x_libraries=$ac_optarg ;;\n\n  -*) as_fn_error $? \"unrecognized option: \\`$ac_option'\nTry \\`$0 --help' for more information\"\n    ;;\n\n  *=*)\n    ac_envvar=`expr \"x$ac_option\" : 'x\\([^=]*\\)='`\n    # Reject names that are not valid shell variable names.\n    case $ac_envvar in #(\n      '' | [0-9]* | *[!_$as_cr_alnum]* )\n      as_fn_error $? \"invalid variable name: \\`$ac_envvar'\" ;;\n    esac\n    eval $ac_envvar=\\$ac_optarg\n    export $ac_envvar ;;\n\n  *)\n    # FIXME: should be removed in autoconf 3.0.\n    $as_echo \"$as_me: WARNING: you should use --build, --host, --target\" >&2\n    expr \"x$ac_option\" : \".*[^-._$as_cr_alnum]\" >/dev/null &&\n      $as_echo \"$as_me: WARNING: invalid host type: $ac_option\" >&2\n    : \"${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}\"\n    ;;\n\n  esac\ndone\n\nif test -n \"$ac_prev\"; then\n  ac_option=--`echo $ac_prev | sed 's/_/-/g'`\n  as_fn_error $? \"missing argument to $ac_option\"\nfi\n\nif test -n \"$ac_unrecognized_opts\"; then\n  case $enable_option_checking in\n    no) ;;\n    fatal) as_fn_error $? \"unrecognized options: $ac_unrecognized_opts\" ;;\n    *)     $as_echo \"$as_me: WARNING: unrecognized options: $ac_unrecognized_opts\" >&2 ;;\n  esac\nfi\n\n# Check all directory arguments for consistency.\nfor ac_var in\texec_prefix prefix bindir sbindir libexecdir datarootdir \\\n\t\tdatadir sysconfdir sharedstatedir localstatedir includedir \\\n\t\toldincludedir docdir infodir htmldir dvidir pdfdir psdir \\\n\t\tlibdir localedir mandir\ndo\n  eval ac_val=\\$$ac_var\n  # Remove trailing slashes.\n  case $ac_val in\n    */ )\n      ac_val=`expr \"X$ac_val\" : 'X\\(.*[^/]\\)' \\| \"X$ac_val\" : 'X\\(.*\\)'`\n      eval $ac_var=\\$ac_val;;\n  esac\n  # Be sure to have absolute directory names.\n  case $ac_val in\n    [\\\\/$]* | ?:[\\\\/]* )  continue;;\n    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;\n  esac\n  as_fn_error $? \"expected an absolute directory name for --$ac_var: $ac_val\"\ndone\n\n# There might be people who depend on the old broken behavior: `$host'\n# used to hold the argument of --host etc.\n# FIXME: To remove some day.\nbuild=$build_alias\nhost=$host_alias\ntarget=$target_alias\n\n# FIXME: To remove some day.\nif test \"x$host_alias\" != x; then\n  if test \"x$build_alias\" = x; then\n    cross_compiling=maybe\n  elif test \"x$build_alias\" != \"x$host_alias\"; then\n    cross_compiling=yes\n  fi\nfi\n\nac_tool_prefix=\ntest -n \"$host_alias\" && ac_tool_prefix=$host_alias-\n\ntest \"$silent\" = yes && exec 6>/dev/null\n\n\nac_pwd=`pwd` && test -n \"$ac_pwd\" &&\nac_ls_di=`ls -di .` &&\nac_pwd_ls_di=`cd \"$ac_pwd\" && ls -di .` ||\n  as_fn_error $? \"working directory cannot be determined\"\ntest \"X$ac_ls_di\" = \"X$ac_pwd_ls_di\" ||\n  as_fn_error $? \"pwd does not report name of working directory\"\n\n\n# Find the source files, if location was not specified.\nif test -z \"$srcdir\"; then\n  ac_srcdir_defaulted=yes\n  # Try the directory containing this script, then the parent directory.\n  ac_confdir=`$as_dirname -- \"$as_myself\" ||\n$as_expr X\"$as_myself\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_myself\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_myself\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_myself\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_myself\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  srcdir=$ac_confdir\n  if test ! -r \"$srcdir/$ac_unique_file\"; then\n    srcdir=..\n  fi\nelse\n  ac_srcdir_defaulted=no\nfi\nif test ! -r \"$srcdir/$ac_unique_file\"; then\n  test \"$ac_srcdir_defaulted\" = yes && srcdir=\"$ac_confdir or ..\"\n  as_fn_error $? \"cannot find sources ($ac_unique_file) in $srcdir\"\nfi\nac_msg=\"sources are in $srcdir, but \\`cd $srcdir' does not work\"\nac_abs_confdir=`(\n\tcd \"$srcdir\" && test -r \"./$ac_unique_file\" || as_fn_error $? \"$ac_msg\"\n\tpwd)`\n# When building in place, set srcdir=.\nif test \"$ac_abs_confdir\" = \"$ac_pwd\"; then\n  srcdir=.\nfi\n# Remove unnecessary trailing slashes from srcdir.\n# Double slashes in file names in object file debugging info\n# mess up M-x gdb in Emacs.\ncase $srcdir in\n*/) srcdir=`expr \"X$srcdir\" : 'X\\(.*[^/]\\)' \\| \"X$srcdir\" : 'X\\(.*\\)'`;;\nesac\nfor ac_var in $ac_precious_vars; do\n  eval ac_env_${ac_var}_set=\\${${ac_var}+set}\n  eval ac_env_${ac_var}_value=\\$${ac_var}\n  eval ac_cv_env_${ac_var}_set=\\${${ac_var}+set}\n  eval ac_cv_env_${ac_var}_value=\\$${ac_var}\ndone\n\n#\n# Report the --help message.\n#\nif test \"$ac_init_help\" = \"long\"; then\n  # Omit some internal or obsolete options to make the list less imposing.\n  # This message is too long to be a string in the A/UX 3.1 sh.\n  cat <<_ACEOF\n\\`configure' configures libiconv 0 to adapt to many kinds of systems.\n\nUsage: $0 [OPTION]... [VAR=VALUE]...\n\nTo assign environment variables (e.g., CC, CFLAGS...), specify them as\nVAR=VALUE.  See below for descriptions of some of the useful variables.\n\nDefaults for the options are specified in brackets.\n\nConfiguration:\n  -h, --help              display this help and exit\n      --help=short        display options specific to this package\n      --help=recursive    display the short help of all the included packages\n  -V, --version           display version information and exit\n  -q, --quiet, --silent   do not print \\`checking ...' messages\n      --cache-file=FILE   cache test results in FILE [disabled]\n  -C, --config-cache      alias for \\`--cache-file=config.cache'\n  -n, --no-create         do not create output files\n      --srcdir=DIR        find the sources in DIR [configure dir or \\`..']\n\nInstallation directories:\n  --prefix=PREFIX         install architecture-independent files in PREFIX\n                          [$ac_default_prefix]\n  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX\n                          [PREFIX]\n\nBy default, \\`make install' will install all the files in\n\\`$ac_default_prefix/bin', \\`$ac_default_prefix/lib' etc.  You can specify\nan installation prefix other than \\`$ac_default_prefix' using \\`--prefix',\nfor instance \\`--prefix=\\$HOME'.\n\nFor better control, use the options below.\n\nFine tuning of the installation directories:\n  --bindir=DIR            user executables [EPREFIX/bin]\n  --sbindir=DIR           system admin executables [EPREFIX/sbin]\n  --libexecdir=DIR        program executables [EPREFIX/libexec]\n  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]\n  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]\n  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]\n  --libdir=DIR            object code libraries [EPREFIX/lib]\n  --includedir=DIR        C header files [PREFIX/include]\n  --oldincludedir=DIR     C header files for non-gcc [/usr/include]\n  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]\n  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]\n  --infodir=DIR           info documentation [DATAROOTDIR/info]\n  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]\n  --mandir=DIR            man documentation [DATAROOTDIR/man]\n  --docdir=DIR            documentation root [DATAROOTDIR/doc/libiconv]\n  --htmldir=DIR           html documentation [DOCDIR]\n  --dvidir=DIR            dvi documentation [DOCDIR]\n  --pdfdir=DIR            pdf documentation [DOCDIR]\n  --psdir=DIR             ps documentation [DOCDIR]\n_ACEOF\n\n  cat <<\\_ACEOF\n\nSystem types:\n  --build=BUILD     configure for building on BUILD [guessed]\n  --host=HOST       cross-compile to build programs to run on HOST [BUILD]\n_ACEOF\nfi\n\nif test -n \"$ac_init_help\"; then\n  case $ac_init_help in\n     short | recursive ) echo \"Configuration of libiconv 0:\";;\n   esac\n  cat <<\\_ACEOF\n\nOptional Features:\n  --disable-option-checking  ignore unrecognized --enable/--with options\n  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)\n  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]\n  --enable-relocatable    install a package that can be moved in the file\n                          system\n  --enable-shared[=PKGS]  build shared libraries [default=yes]\n  --enable-static[=PKGS]  build static libraries [default=yes]\n  --enable-fast-install[=PKGS]\n                          optimize for fast installation [default=yes]\n  --disable-libtool-lock  avoid locking (might break parallel builds)\n\nOptional Packages:\n  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]\n  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)\n  --with-pic[=PKGS]       try to use only PIC/non-PIC objects [default=use\n                          both]\n  --with-aix-soname=aix|svr4|both\n                          shared library versioning (aka \"SONAME\") variant to\n                          provide on AIX, [default=aix].\n  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]\n  --with-sysroot[=DIR]    Search for dependent libraries within DIR (or the\n                          compiler's sysroot if not specified).\n\nSome influential environment variables:\n  CC          C compiler command\n  CFLAGS      C compiler flags\n  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a\n              nonstandard directory <lib dir>\n  LIBS        libraries to pass to the linker, e.g. -l<library>\n  CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if\n              you have headers in a nonstandard directory <include dir>\n  CPP         C preprocessor\n  LT_SYS_LIBRARY_PATH\n              User-defined run-time library search path.\n\nUse these variables to override the choices made by `configure' or to help\nit to find libraries and programs with nonstandard names/locations.\n\nReport bugs to the package provider.\n_ACEOF\nac_status=$?\nfi\n\nif test \"$ac_init_help\" = \"recursive\"; then\n  # If there are subdirs, report their specific --help.\n  for ac_dir in : $ac_subdirs_all; do test \"x$ac_dir\" = x: && continue\n    test -d \"$ac_dir\" ||\n      { cd \"$srcdir\" && ac_pwd=`pwd` && srcdir=. && test -d \"$ac_dir\"; } ||\n      continue\n    ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`$as_echo \"$ac_dir\" | sed 's|^\\.[\\\\/]||'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`$as_echo \"$ac_dir_suffix\" | sed 's|/[^\\\\/]*|/..|g;s|/||'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n    cd \"$ac_dir\" || { ac_status=$?; continue; }\n    # Check for guested configure.\n    if test -f \"$ac_srcdir/configure.gnu\"; then\n      echo &&\n      $SHELL \"$ac_srcdir/configure.gnu\" --help=recursive\n    elif test -f \"$ac_srcdir/configure\"; then\n      echo &&\n      $SHELL \"$ac_srcdir/configure\" --help=recursive\n    else\n      $as_echo \"$as_me: WARNING: no configuration information is in $ac_dir\" >&2\n    fi || ac_status=$?\n    cd \"$ac_pwd\" || { ac_status=$?; break; }\n  done\nfi\n\ntest -n \"$ac_init_help\" && exit $ac_status\nif $ac_init_version; then\n  cat <<\\_ACEOF\nlibiconv configure 0\ngenerated by GNU Autoconf 2.69\n\nCopyright (C) 2012 Free Software Foundation, Inc.\nThis configure script is free software; the Free Software Foundation\ngives unlimited permission to copy, distribute and modify it.\n_ACEOF\n  exit\nfi\n\n## ------------------------ ##\n## Autoconf initialization. ##\n## ------------------------ ##\n\n# ac_fn_c_try_compile LINENO\n# --------------------------\n# Try to compile conftest.$ac_ext, and return whether this succeeded.\nac_fn_c_try_compile ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  rm -f conftest.$ac_objext\n  if { { ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_compile\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    grep -v '^ *+' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n    mv -f conftest.er1 conftest.err\n  fi\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_retval=1\nfi\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_compile\n\n# ac_fn_c_try_cpp LINENO\n# ----------------------\n# Try to preprocess conftest.$ac_ext, and return whether this succeeded.\nac_fn_c_try_cpp ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  if { { ac_try=\"$ac_cpp conftest.$ac_ext\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_cpp conftest.$ac_ext\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    grep -v '^ *+' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n    mv -f conftest.er1 conftest.err\n  fi\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } > conftest.i && {\n\t test -z \"$ac_c_preproc_warn_flag$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       }; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n    ac_retval=1\nfi\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_cpp\n\n# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES\n# -------------------------------------------------------\n# Tests whether HEADER exists, giving a warning if it cannot be compiled using\n# the include files in INCLUDES and setting the cache variable VAR\n# accordingly.\nac_fn_c_check_header_mongrel ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  if eval \\${$3+:} false; then :\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\nelse\n  # Is the header compilable?\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking $2 usability\" >&5\n$as_echo_n \"checking $2 usability... \" >&6; }\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\n#include <$2>\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_header_compiler=yes\nelse\n  ac_header_compiler=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler\" >&5\n$as_echo \"$ac_header_compiler\" >&6; }\n\n# Is the header present?\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking $2 presence\" >&5\n$as_echo_n \"checking $2 presence... \" >&6; }\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <$2>\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n  ac_header_preproc=yes\nelse\n  ac_header_preproc=no\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc\" >&5\n$as_echo \"$ac_header_preproc\" >&6; }\n\n# So?  What about this header?\ncase $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((\n  yes:no: )\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!\" >&5\n$as_echo \"$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result\" >&5\n$as_echo \"$as_me: WARNING: $2: proceeding with the compiler's result\" >&2;}\n    ;;\n  no:yes:* )\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled\" >&5\n$as_echo \"$as_me: WARNING: $2: present but cannot be compiled\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2:     check for missing prerequisite headers?\" >&5\n$as_echo \"$as_me: WARNING: $2:     check for missing prerequisite headers?\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation\" >&5\n$as_echo \"$as_me: WARNING: $2: see the Autoconf documentation\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2:     section \\\"Present But Cannot Be Compiled\\\"\" >&5\n$as_echo \"$as_me: WARNING: $2:     section \\\"Present But Cannot Be Compiled\\\"\" >&2;}\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result\" >&5\n$as_echo \"$as_me: WARNING: $2: proceeding with the compiler's result\" >&2;}\n    ;;\nesac\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  eval \"$3=\\$ac_header_compiler\"\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\nfi\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n\n} # ac_fn_c_check_header_mongrel\n\n# ac_fn_c_try_run LINENO\n# ----------------------\n# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes\n# that executables *can* be run.\nac_fn_c_try_run ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  if { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'\n  { { case \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_try\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; }; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: program exited with status $ac_status\" >&5\n       $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n       ac_retval=$ac_status\nfi\n  rm -rf conftest.dSYM conftest_ipa8_conftest.oo\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_run\n\n# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES\n# -------------------------------------------------------\n# Tests whether HEADER exists and can be compiled using the include files in\n# INCLUDES, setting the cache variable VAR accordingly.\nac_fn_c_check_header_compile ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n$4\n#include <$2>\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  eval \"$3=yes\"\nelse\n  eval \"$3=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n\n} # ac_fn_c_check_header_compile\n\n# ac_fn_c_try_link LINENO\n# -----------------------\n# Try to link conftest.$ac_ext, and return whether this succeeded.\nac_fn_c_try_link ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  rm -f conftest.$ac_objext conftest$ac_exeext\n  if { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    grep -v '^ *+' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n    mv -f conftest.er1 conftest.err\n  fi\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext && {\n\t test \"$cross_compiling\" = yes ||\n\t test -x conftest$ac_exeext\n       }; then :\n  ac_retval=0\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_retval=1\nfi\n  # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information\n  # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would\n  # interfere with the next link command; also delete a directory that is\n  # left behind by Apple's compiler.  We do this before executing the actions.\n  rm -rf conftest.dSYM conftest_ipa8_conftest.oo\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n  as_fn_set_status $ac_retval\n\n} # ac_fn_c_try_link\n\n# ac_fn_c_check_func LINENO FUNC VAR\n# ----------------------------------\n# Tests whether FUNC exists, setting the cache variable VAR accordingly\nac_fn_c_check_func ()\n{\n  as_lineno=${as_lineno-\"$1\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $2\" >&5\n$as_echo_n \"checking for $2... \" >&6; }\nif eval \\${$3+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n/* Define $2 to an innocuous variant, in case <limits.h> declares $2.\n   For example, HP-UX 11i <limits.h> declares gettimeofday.  */\n#define $2 innocuous_$2\n\n/* System header to define __stub macros and hopefully few prototypes,\n    which can conflict with char $2 (); below.\n    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n    <limits.h> exists even on freestanding compilers.  */\n\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\n#undef $2\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar $2 ();\n/* The GNU C library defines this for functions which it implements\n    to always fail with ENOSYS.  Some functions are actually named\n    something starting with __ and the normal name is an alias.  */\n#if defined __stub_$2 || defined __stub___$2\nchoke me\n#endif\n\nint\nmain ()\n{\nreturn $2 ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  eval \"$3=yes\"\nelse\n  eval \"$3=no\"\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nfi\neval ac_res=\\$$3\n\t       { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_res\" >&5\n$as_echo \"$ac_res\" >&6; }\n  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno\n\n} # ac_fn_c_check_func\ncat >config.log <<_ACEOF\nThis file contains any messages produced by compilers while\nrunning configure, to aid debugging if configure makes a mistake.\n\nIt was created by libiconv $as_me 0, which was\ngenerated by GNU Autoconf 2.69.  Invocation command line was\n\n  $ $0 $@\n\n_ACEOF\nexec 5>>config.log\n{\ncat <<_ASUNAME\n## --------- ##\n## Platform. ##\n## --------- ##\n\nhostname = `(hostname || uname -n) 2>/dev/null | sed 1q`\nuname -m = `(uname -m) 2>/dev/null || echo unknown`\nuname -r = `(uname -r) 2>/dev/null || echo unknown`\nuname -s = `(uname -s) 2>/dev/null || echo unknown`\nuname -v = `(uname -v) 2>/dev/null || echo unknown`\n\n/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`\n/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`\n\n/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`\n/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`\n/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`\n/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`\n/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`\n/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`\n/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`\n\n_ASUNAME\n\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    $as_echo \"PATH: $as_dir\"\n  done\nIFS=$as_save_IFS\n\n} >&5\n\ncat >&5 <<_ACEOF\n\n\n## ----------- ##\n## Core tests. ##\n## ----------- ##\n\n_ACEOF\n\n\n# Keep a trace of the command line.\n# Strip out --no-create and --no-recursion so they do not pile up.\n# Strip out --silent because we don't want to record it for future runs.\n# Also quote any args containing shell meta-characters.\n# Make two passes to allow for proper duplicate-argument suppression.\nac_configure_args=\nac_configure_args0=\nac_configure_args1=\nac_must_keep_next=false\nfor ac_pass in 1 2\ndo\n  for ac_arg\n  do\n    case $ac_arg in\n    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;\n    -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n    | -silent | --silent | --silen | --sile | --sil)\n      continue ;;\n    *\\'*)\n      ac_arg=`$as_echo \"$ac_arg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    esac\n    case $ac_pass in\n    1) as_fn_append ac_configure_args0 \" '$ac_arg'\" ;;\n    2)\n      as_fn_append ac_configure_args1 \" '$ac_arg'\"\n      if test $ac_must_keep_next = true; then\n\tac_must_keep_next=false # Got value, back to normal.\n      else\n\tcase $ac_arg in\n\t  *=* | --config-cache | -C | -disable-* | --disable-* \\\n\t  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \\\n\t  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \\\n\t  | -with-* | --with-* | -without-* | --without-* | --x)\n\t    case \"$ac_configure_args0 \" in\n\t      \"$ac_configure_args1\"*\" '$ac_arg' \"* ) continue ;;\n\t    esac\n\t    ;;\n\t  -* ) ac_must_keep_next=true ;;\n\tesac\n      fi\n      as_fn_append ac_configure_args \" '$ac_arg'\"\n      ;;\n    esac\n  done\ndone\n{ ac_configure_args0=; unset ac_configure_args0;}\n{ ac_configure_args1=; unset ac_configure_args1;}\n\n# When interrupted or exit'd, cleanup temporary files, and complete\n# config.log.  We remove comments because anyway the quotes in there\n# would cause problems or look ugly.\n# WARNING: Use '\\'' to represent an apostrophe within the trap.\n# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.\ntrap 'exit_status=$?\n  # Save into config.log some information that might help in debugging.\n  {\n    echo\n\n    $as_echo \"## ---------------- ##\n## Cache variables. ##\n## ---------------- ##\"\n    echo\n    # The following way of writing the cache mishandles newlines in values,\n(\n  for ac_var in `(set) 2>&1 | sed -n '\\''s/^\\([a-zA-Z_][a-zA-Z0-9_]*\\)=.*/\\1/p'\\''`; do\n    eval ac_val=\\$$ac_var\n    case $ac_val in #(\n    *${as_nl}*)\n      case $ac_var in #(\n      *_cv_*) { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline\" >&5\n$as_echo \"$as_me: WARNING: cache variable $ac_var contains a newline\" >&2;} ;;\n      esac\n      case $ac_var in #(\n      _ | IFS | as_nl) ;; #(\n      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(\n      *) { eval $ac_var=; unset $ac_var;} ;;\n      esac ;;\n    esac\n  done\n  (set) 2>&1 |\n    case $as_nl`(ac_space='\\'' '\\''; set) 2>&1` in #(\n    *${as_nl}ac_space=\\ *)\n      sed -n \\\n\t\"s/'\\''/'\\''\\\\\\\\'\\'''\\''/g;\n\t  s/^\\\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\\\)=\\\\(.*\\\\)/\\\\1='\\''\\\\2'\\''/p\"\n      ;; #(\n    *)\n      sed -n \"/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p\"\n      ;;\n    esac |\n    sort\n)\n    echo\n\n    $as_echo \"## ----------------- ##\n## Output variables. ##\n## ----------------- ##\"\n    echo\n    for ac_var in $ac_subst_vars\n    do\n      eval ac_val=\\$$ac_var\n      case $ac_val in\n      *\\'\\''*) ac_val=`$as_echo \"$ac_val\" | sed \"s/'\\''/'\\''\\\\\\\\\\\\\\\\'\\'''\\''/g\"`;;\n      esac\n      $as_echo \"$ac_var='\\''$ac_val'\\''\"\n    done | sort\n    echo\n\n    if test -n \"$ac_subst_files\"; then\n      $as_echo \"## ------------------- ##\n## File substitutions. ##\n## ------------------- ##\"\n      echo\n      for ac_var in $ac_subst_files\n      do\n\teval ac_val=\\$$ac_var\n\tcase $ac_val in\n\t*\\'\\''*) ac_val=`$as_echo \"$ac_val\" | sed \"s/'\\''/'\\''\\\\\\\\\\\\\\\\'\\'''\\''/g\"`;;\n\tesac\n\t$as_echo \"$ac_var='\\''$ac_val'\\''\"\n      done | sort\n      echo\n    fi\n\n    if test -s confdefs.h; then\n      $as_echo \"## ----------- ##\n## confdefs.h. ##\n## ----------- ##\"\n      echo\n      cat confdefs.h\n      echo\n    fi\n    test \"$ac_signal\" != 0 &&\n      $as_echo \"$as_me: caught signal $ac_signal\"\n    $as_echo \"$as_me: exit $exit_status\"\n  } >&5\n  rm -f core *.core core.conftest.* &&\n    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&\n    exit $exit_status\n' 0\nfor ac_signal in 1 2 13 15; do\n  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal\ndone\nac_signal=0\n\n# confdefs.h avoids OS command line length limits that DEFS can exceed.\nrm -f -r conftest* confdefs.h\n\n$as_echo \"/* confdefs.h */\" > confdefs.h\n\n# Predefined preprocessor variables.\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_NAME \"$PACKAGE_NAME\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_VERSION \"$PACKAGE_VERSION\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_STRING \"$PACKAGE_STRING\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"\n_ACEOF\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_URL \"$PACKAGE_URL\"\n_ACEOF\n\n\n# Let the site file select an alternate cache file if it wants to.\n# Prefer an explicitly selected file to automatically selected ones.\nac_site_file1=NONE\nac_site_file2=NONE\nif test -n \"$CONFIG_SITE\"; then\n  # We do not want a PATH search for config.site.\n  case $CONFIG_SITE in #((\n    -*)  ac_site_file1=./$CONFIG_SITE;;\n    */*) ac_site_file1=$CONFIG_SITE;;\n    *)   ac_site_file1=./$CONFIG_SITE;;\n  esac\nelif test \"x$prefix\" != xNONE; then\n  ac_site_file1=$prefix/share/config.site\n  ac_site_file2=$prefix/etc/config.site\nelse\n  ac_site_file1=$ac_default_prefix/share/config.site\n  ac_site_file2=$ac_default_prefix/etc/config.site\nfi\nfor ac_site_file in \"$ac_site_file1\" \"$ac_site_file2\"\ndo\n  test \"x$ac_site_file\" = xNONE && continue\n  if test /dev/null != \"$ac_site_file\" && test -r \"$ac_site_file\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file\" >&5\n$as_echo \"$as_me: loading site script $ac_site_file\" >&6;}\n    sed 's/^/| /' \"$ac_site_file\" >&5\n    . \"$ac_site_file\" \\\n      || { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"failed to load site script $ac_site_file\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\n  fi\ndone\n\nif test -r \"$cache_file\"; then\n  # Some versions of bash will fail to source /dev/null (special files\n  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.\n  if test /dev/null != \"$cache_file\" && test -f \"$cache_file\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: loading cache $cache_file\" >&5\n$as_echo \"$as_me: loading cache $cache_file\" >&6;}\n    case $cache_file in\n      [\\\\/]* | ?:[\\\\/]* ) . \"$cache_file\";;\n      *)                      . \"./$cache_file\";;\n    esac\n  fi\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: creating cache $cache_file\" >&5\n$as_echo \"$as_me: creating cache $cache_file\" >&6;}\n  >$cache_file\nfi\n\n# Check that the precious variables saved in the cache have kept the same\n# value.\nac_cache_corrupted=false\nfor ac_var in $ac_precious_vars; do\n  eval ac_old_set=\\$ac_cv_env_${ac_var}_set\n  eval ac_new_set=\\$ac_env_${ac_var}_set\n  eval ac_old_val=\\$ac_cv_env_${ac_var}_value\n  eval ac_new_val=\\$ac_env_${ac_var}_value\n  case $ac_old_set,$ac_new_set in\n    set,)\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: error: \\`$ac_var' was set to \\`$ac_old_val' in the previous run\" >&5\n$as_echo \"$as_me: error: \\`$ac_var' was set to \\`$ac_old_val' in the previous run\" >&2;}\n      ac_cache_corrupted=: ;;\n    ,set)\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: error: \\`$ac_var' was not set in the previous run\" >&5\n$as_echo \"$as_me: error: \\`$ac_var' was not set in the previous run\" >&2;}\n      ac_cache_corrupted=: ;;\n    ,);;\n    *)\n      if test \"x$ac_old_val\" != \"x$ac_new_val\"; then\n\t# differences in whitespace do not lead to failure.\n\tac_old_val_w=`echo x $ac_old_val`\n\tac_new_val_w=`echo x $ac_new_val`\n\tif test \"$ac_old_val_w\" != \"$ac_new_val_w\"; then\n\t  { $as_echo \"$as_me:${as_lineno-$LINENO}: error: \\`$ac_var' has changed since the previous run:\" >&5\n$as_echo \"$as_me: error: \\`$ac_var' has changed since the previous run:\" >&2;}\n\t  ac_cache_corrupted=:\n\telse\n\t  { $as_echo \"$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \\`$ac_var' since the previous run:\" >&5\n$as_echo \"$as_me: warning: ignoring whitespace changes in \\`$ac_var' since the previous run:\" >&2;}\n\t  eval $ac_var=\\$ac_old_val\n\tfi\n\t{ $as_echo \"$as_me:${as_lineno-$LINENO}:   former value:  \\`$ac_old_val'\" >&5\n$as_echo \"$as_me:   former value:  \\`$ac_old_val'\" >&2;}\n\t{ $as_echo \"$as_me:${as_lineno-$LINENO}:   current value: \\`$ac_new_val'\" >&5\n$as_echo \"$as_me:   current value: \\`$ac_new_val'\" >&2;}\n      fi;;\n  esac\n  # Pass precious variables to config.status.\n  if test \"$ac_new_set\" = set; then\n    case $ac_new_val in\n    *\\'*) ac_arg=$ac_var=`$as_echo \"$ac_new_val\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    *) ac_arg=$ac_var=$ac_new_val ;;\n    esac\n    case \" $ac_configure_args \" in\n      *\" '$ac_arg' \"*) ;; # Avoid dups.  Use of quotes ensures accuracy.\n      *) as_fn_append ac_configure_args \" '$ac_arg'\" ;;\n    esac\n  fi\ndone\nif $ac_cache_corrupted; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build\" >&5\n$as_echo \"$as_me: error: changes in the environment can compromise the build\" >&2;}\n  as_fn_error $? \"run \\`make distclean' and/or \\`rm $cache_file' and start over\" \"$LINENO\" 5\nfi\n## -------------------- ##\n## Main body of script. ##\n## -------------------- ##\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n\n\nac_aux_dir=\nfor ac_dir in ../build-aux \"$srcdir\"/../build-aux; do\n  if test -f \"$ac_dir/install-sh\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/install-sh -c\"\n    break\n  elif test -f \"$ac_dir/install.sh\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/install.sh -c\"\n    break\n  elif test -f \"$ac_dir/shtool\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/shtool install -c\"\n    break\n  fi\ndone\nif test -z \"$ac_aux_dir\"; then\n  as_fn_error $? \"cannot find install-sh, install.sh, or shtool in ../build-aux \\\"$srcdir\\\"/../build-aux\" \"$LINENO\" 5\nfi\n\n# These three variables are undocumented and unsupported,\n# and are intended to be withdrawn in a future Autoconf release.\n# They can cause serious problems if a builder's source tree is in a directory\n# whose full name contains unusual characters.\nac_config_guess=\"$SHELL $ac_aux_dir/config.guess\"  # Please don't use this var.\nac_config_sub=\"$SHELL $ac_aux_dir/config.sub\"  # Please don't use this var.\nac_configure=\"$SHELL $ac_aux_dir/configure\"  # Please don't use this var.\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \\$(MAKE)\" >&5\n$as_echo_n \"checking whether ${MAKE-make} sets \\$(MAKE)... \" >&6; }\nset x ${MAKE-make}\nac_make=`$as_echo \"$2\" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`\nif eval \\${ac_cv_prog_make_${ac_make}_set+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat >conftest.make <<\\_ACEOF\nSHELL = /bin/sh\nall:\n\t@echo '@@@%%%=$(MAKE)=@@@%%%'\n_ACEOF\n# GNU make sometimes prints \"make[1]: Entering ...\", which would confuse us.\ncase `${MAKE-make} -f conftest.make 2>/dev/null` in\n  *@@@%%%=?*=@@@%%%*)\n    eval ac_cv_prog_make_${ac_make}_set=yes;;\n  *)\n    eval ac_cv_prog_make_${ac_make}_set=no;;\nesac\nrm -f conftest.make\nfi\nif eval test \\$ac_cv_prog_make_${ac_make}_set = yes; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\n  SET_MAKE=\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n  SET_MAKE=\"MAKE=${MAKE-make}\"\nfi\n\n\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}gcc\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}gcc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_CC=\"${ac_tool_prefix}gcc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_CC\"; then\n  ac_ct_CC=$CC\n  # Extract the first word of \"gcc\", so it can be a program name with args.\nset dummy gcc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_CC\"; then\n  ac_cv_prog_ac_ct_CC=\"$ac_ct_CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_CC=\"gcc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_CC=$ac_cv_prog_ac_ct_CC\nif test -n \"$ac_ct_CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC\" >&5\n$as_echo \"$ac_ct_CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_CC\" = x; then\n    CC=\"\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    CC=$ac_ct_CC\n  fi\nelse\n  CC=\"$ac_cv_prog_CC\"\nfi\n\nif test -z \"$CC\"; then\n          if test -n \"$ac_tool_prefix\"; then\n    # Extract the first word of \"${ac_tool_prefix}cc\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}cc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_CC=\"${ac_tool_prefix}cc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  fi\nfi\nif test -z \"$CC\"; then\n  # Extract the first word of \"cc\", so it can be a program name with args.\nset dummy cc; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\n  ac_prog_rejected=no\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    if test \"$as_dir/$ac_word$ac_exec_ext\" = \"/usr/ucb/cc\"; then\n       ac_prog_rejected=yes\n       continue\n     fi\n    ac_cv_prog_CC=\"cc\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nif test $ac_prog_rejected = yes; then\n  # We found a bogon in the path, so make sure we never use it.\n  set dummy $ac_cv_prog_CC\n  shift\n  if test $# != 0; then\n    # We chose a different compiler from the bogus one.\n    # However, it has the same basename, so the bogon will be chosen\n    # first if we set CC to just the basename; use the full file name.\n    shift\n    ac_cv_prog_CC=\"$as_dir/$ac_word${1+' '}$@\"\n  fi\nfi\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$CC\"; then\n  if test -n \"$ac_tool_prefix\"; then\n  for ac_prog in cl.exe\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_CC=\"$ac_tool_prefix$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CC\" >&5\n$as_echo \"$CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n    test -n \"$CC\" && break\n  done\nfi\nif test -z \"$CC\"; then\n  ac_ct_CC=$CC\n  for ac_prog in cl.exe\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_CC+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_CC\"; then\n  ac_cv_prog_ac_ct_CC=\"$ac_ct_CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_CC=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_CC=$ac_cv_prog_ac_ct_CC\nif test -n \"$ac_ct_CC\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC\" >&5\n$as_echo \"$ac_ct_CC\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_CC\" && break\ndone\n\n  if test \"x$ac_ct_CC\" = x; then\n    CC=\"\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    CC=$ac_ct_CC\n  fi\nfi\n\nfi\n\n\ntest -z \"$CC\" && { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"no acceptable C compiler found in \\$PATH\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\n\n# Provide some information about the compiler.\n$as_echo \"$as_me:${as_lineno-$LINENO}: checking for C compiler version\" >&5\nset X $ac_compile\nac_compiler=$2\nfor ac_option in --version -v -V -qversion; do\n  { { ac_try=\"$ac_compiler $ac_option >&5\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_compiler $ac_option >&5\") 2>conftest.err\n  ac_status=$?\n  if test -s conftest.err; then\n    sed '10a\\\n... rest of stderr output deleted ...\n         10q' conftest.err >conftest.er1\n    cat conftest.er1 >&5\n  fi\n  rm -f conftest.er1 conftest.err\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\ndone\n\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nac_clean_files_save=$ac_clean_files\nac_clean_files=\"$ac_clean_files a.out a.out.dSYM a.exe b.out\"\n# Try to create an executable without -o first, disregard a.out.\n# It will help us diagnose broken compilers, and finding out an intuition\n# of exeext.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the C compiler works\" >&5\n$as_echo_n \"checking whether the C compiler works... \" >&6; }\nac_link_default=`$as_echo \"$ac_link\" | sed 's/ -o *conftest[^ ]*//'`\n\n# The possible output files:\nac_files=\"a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*\"\n\nac_rmfiles=\nfor ac_file in $ac_files\ndo\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;\n    * ) ac_rmfiles=\"$ac_rmfiles $ac_file\";;\n  esac\ndone\nrm -f $ac_rmfiles\n\nif { { ac_try=\"$ac_link_default\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link_default\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then :\n  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.\n# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'\n# in a Makefile.  We should not override ac_cv_exeext if it was cached,\n# so that the user can short-circuit this test for compilers unknown to\n# Autoconf.\nfor ac_file in $ac_files ''\ndo\n  test -f \"$ac_file\" || continue\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )\n\t;;\n    [ab].out )\n\t# We found the default executable, but exeext='' is most\n\t# certainly right.\n\tbreak;;\n    *.* )\n\tif test \"${ac_cv_exeext+set}\" = set && test \"$ac_cv_exeext\" != no;\n\tthen :; else\n\t   ac_cv_exeext=`expr \"$ac_file\" : '[^.]*\\(\\..*\\)'`\n\tfi\n\t# We set ac_cv_exeext here because the later test for it is not\n\t# safe: cross compilers may not add the suffix if given an `-o'\n\t# argument, so we may need to know it at that point already.\n\t# Even if this section looks crufty: it has the advantage of\n\t# actually working.\n\tbreak;;\n    * )\n\tbreak;;\n  esac\ndone\ntest \"$ac_cv_exeext\" = no && ac_cv_exeext=\n\nelse\n  ac_file=''\nfi\nif test -z \"$ac_file\"; then :\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n$as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n{ { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error 77 \"C compiler cannot create executables\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name\" >&5\n$as_echo_n \"checking for C compiler default output file name... \" >&6; }\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_file\" >&5\n$as_echo \"$ac_file\" >&6; }\nac_exeext=$ac_cv_exeext\n\nrm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out\nac_clean_files=$ac_clean_files_save\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for suffix of executables\" >&5\n$as_echo_n \"checking for suffix of executables... \" >&6; }\nif { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then :\n  # If both `conftest.exe' and `conftest' are `present' (well, observable)\n# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will\n# work properly (i.e., refer to `conftest.exe'), while it won't with\n# `rm'.\nfor ac_file in conftest.exe conftest conftest.*; do\n  test -f \"$ac_file\" || continue\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;\n    *.* ) ac_cv_exeext=`expr \"$ac_file\" : '[^.]*\\(\\..*\\)'`\n\t  break;;\n    * ) break;;\n  esac\ndone\nelse\n  { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"cannot compute suffix of executables: cannot compile and link\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nfi\nrm -f conftest conftest$ac_cv_exeext\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext\" >&5\n$as_echo \"$ac_cv_exeext\" >&6; }\n\nrm -f conftest.$ac_ext\nEXEEXT=$ac_cv_exeext\nac_exeext=$EXEEXT\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdio.h>\nint\nmain ()\n{\nFILE *f = fopen (\"conftest.out\", \"w\");\n return ferror (f) || fclose (f) != 0;\n\n  ;\n  return 0;\n}\n_ACEOF\nac_clean_files=\"$ac_clean_files conftest.out\"\n# Check that the compiler produces executables we can run.  If not, either\n# the compiler is broken, or we cross compile.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling\" >&5\n$as_echo_n \"checking whether we are cross compiling... \" >&6; }\nif test \"$cross_compiling\" != yes; then\n  { { ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n  if { ac_try='./conftest$ac_cv_exeext'\n  { { case \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_try\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; }; then\n    cross_compiling=no\n  else\n    if test \"$cross_compiling\" = maybe; then\n\tcross_compiling=yes\n    else\n\t{ { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"cannot run C compiled programs.\nIf you meant to cross compile, use \\`--host'.\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\n    fi\n  fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $cross_compiling\" >&5\n$as_echo \"$cross_compiling\" >&6; }\n\nrm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out\nac_clean_files=$ac_clean_files_save\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for suffix of object files\" >&5\n$as_echo_n \"checking for suffix of object files... \" >&6; }\nif ${ac_cv_objext+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.o conftest.obj\nif { { ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval ac_try_echo=\"\\\"\\$as_me:${as_lineno-$LINENO}: $ac_try_echo\\\"\"\n$as_echo \"$ac_try_echo\"; } >&5\n  (eval \"$ac_compile\") 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then :\n  for ac_file in conftest.o conftest.obj conftest.*; do\n  test -f \"$ac_file\" || continue;\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;\n    *) ac_cv_objext=`expr \"$ac_file\" : '.*\\.\\(.*\\)'`\n       break;;\n  esac\ndone\nelse\n  $as_echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n{ { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"cannot compute suffix of object files: cannot compile\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nfi\nrm -f conftest.$ac_cv_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext\" >&5\n$as_echo \"$ac_cv_objext\" >&6; }\nOBJEXT=$ac_cv_objext\nac_objext=$OBJEXT\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler\" >&5\n$as_echo_n \"checking whether we are using the GNU C compiler... \" >&6; }\nif ${ac_cv_c_compiler_gnu+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n#ifndef __GNUC__\n       choke me\n#endif\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_compiler_gnu=yes\nelse\n  ac_compiler_gnu=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nac_cv_c_compiler_gnu=$ac_compiler_gnu\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu\" >&5\n$as_echo \"$ac_cv_c_compiler_gnu\" >&6; }\nif test $ac_compiler_gnu = yes; then\n  GCC=yes\nelse\n  GCC=\nfi\nac_test_CFLAGS=${CFLAGS+set}\nac_save_CFLAGS=$CFLAGS\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g\" >&5\n$as_echo_n \"checking whether $CC accepts -g... \" >&6; }\nif ${ac_cv_prog_cc_g+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_save_c_werror_flag=$ac_c_werror_flag\n   ac_c_werror_flag=yes\n   ac_cv_prog_cc_g=no\n   CFLAGS=\"-g\"\n   cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_prog_cc_g=yes\nelse\n  CFLAGS=\"\"\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n\nelse\n  ac_c_werror_flag=$ac_save_c_werror_flag\n\t CFLAGS=\"-g\"\n\t cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_prog_cc_g=yes\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n   ac_c_werror_flag=$ac_save_c_werror_flag\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g\" >&5\n$as_echo \"$ac_cv_prog_cc_g\" >&6; }\nif test \"$ac_test_CFLAGS\" = set; then\n  CFLAGS=$ac_save_CFLAGS\nelif test $ac_cv_prog_cc_g = yes; then\n  if test \"$GCC\" = yes; then\n    CFLAGS=\"-g -O2\"\n  else\n    CFLAGS=\"-g\"\n  fi\nelse\n  if test \"$GCC\" = yes; then\n    CFLAGS=\"-O2\"\n  else\n    CFLAGS=\n  fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89\" >&5\n$as_echo_n \"checking for $CC option to accept ISO C89... \" >&6; }\nif ${ac_cv_prog_cc_c89+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_cv_prog_cc_c89=no\nac_save_CC=$CC\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdarg.h>\n#include <stdio.h>\nstruct stat;\n/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */\nstruct buf { int x; };\nFILE * (*rcsopen) (struct buf *, struct stat *, int);\nstatic char *e (p, i)\n     char **p;\n     int i;\n{\n  return p[i];\n}\nstatic char *f (char * (*g) (char **, int), char **p, ...)\n{\n  char *s;\n  va_list v;\n  va_start (v,p);\n  s = g (p, va_arg (v,int));\n  va_end (v);\n  return s;\n}\n\n/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has\n   function prototypes and stuff, but not '\\xHH' hex character constants.\n   These don't provoke an error unfortunately, instead are silently treated\n   as 'x'.  The following induces an error, until -std is added to get\n   proper ANSI mode.  Curiously '\\x00'!='x' always comes out true, for an\n   array size at least.  It's necessary to write '\\x00'==0 to get something\n   that's true only with -std.  */\nint osf4_cc_array ['\\x00' == 0 ? 1 : -1];\n\n/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters\n   inside strings and character constants.  */\n#define FOO(x) 'x'\nint xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];\n\nint test (int i, double x);\nstruct s1 {int (*f) (int a);};\nstruct s2 {int (*f) (double a);};\nint pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);\nint argc;\nchar **argv;\nint\nmain ()\n{\nreturn f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];\n  ;\n  return 0;\n}\n_ACEOF\nfor ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \\\n\t-Ae \"-Aa -D_HPUX_SOURCE\" \"-Xc -D__EXTENSIONS__\"\ndo\n  CC=\"$ac_save_CC $ac_arg\"\n  if ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_prog_cc_c89=$ac_arg\nfi\nrm -f core conftest.err conftest.$ac_objext\n  test \"x$ac_cv_prog_cc_c89\" != \"xno\" && break\ndone\nrm -f conftest.$ac_ext\nCC=$ac_save_CC\n\nfi\n# AC_CACHE_VAL\ncase \"x$ac_cv_prog_cc_c89\" in\n  x)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: none needed\" >&5\n$as_echo \"none needed\" >&6; } ;;\n  xno)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: unsupported\" >&5\n$as_echo \"unsupported\" >&6; } ;;\n  *)\n    CC=\"$CC $ac_cv_prog_cc_c89\"\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89\" >&5\n$as_echo \"$ac_cv_prog_cc_c89\" >&6; } ;;\nesac\nif test \"x$ac_cv_prog_cc_c89\" != xno; then :\n\nfi\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor\" >&5\n$as_echo_n \"checking how to run the C preprocessor... \" >&6; }\n# On Suns, sometimes $CPP names a directory.\nif test -n \"$CPP\" && test -d \"$CPP\"; then\n  CPP=\nfi\nif test -z \"$CPP\"; then\n  if ${ac_cv_prog_CPP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n      # Double quotes because CPP needs to be expanded\n    for CPP in \"$CC -E\" \"$CC -E -traditional-cpp\" \"/lib/cpp\"\n    do\n      ac_preproc_ok=false\nfor ac_c_preproc_warn_flag in '' yes\ndo\n  # Use a header file that comes with gcc, so configuring glibc\n  # with a fresh cross-compiler works.\n  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n  # <limits.h> exists even on freestanding compilers.\n  # On the NeXT, cc -E runs the code through the compiler's parser,\n  # not just through cpp. \"Syntax error\" is here to catch this case.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\t\t     Syntax error\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n\nelse\n  # Broken: fails on valid input.\ncontinue\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\n  # OK, works on sane cases.  Now check whether nonexistent headers\n  # can be detected and how.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <ac_nonexistent.h>\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n  # Broken: success on invalid input.\ncontinue\nelse\n  # Passes both tests.\nac_preproc_ok=:\nbreak\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\ndone\n# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.\nrm -f conftest.i conftest.err conftest.$ac_ext\nif $ac_preproc_ok; then :\n  break\nfi\n\n    done\n    ac_cv_prog_CPP=$CPP\n\nfi\n  CPP=$ac_cv_prog_CPP\nelse\n  ac_cv_prog_CPP=$CPP\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $CPP\" >&5\n$as_echo \"$CPP\" >&6; }\nac_preproc_ok=false\nfor ac_c_preproc_warn_flag in '' yes\ndo\n  # Use a header file that comes with gcc, so configuring glibc\n  # with a fresh cross-compiler works.\n  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n  # <limits.h> exists even on freestanding compilers.\n  # On the NeXT, cc -E runs the code through the compiler's parser,\n  # not just through cpp. \"Syntax error\" is here to catch this case.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\t\t     Syntax error\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n\nelse\n  # Broken: fails on valid input.\ncontinue\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\n  # OK, works on sane cases.  Now check whether nonexistent headers\n  # can be detected and how.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <ac_nonexistent.h>\n_ACEOF\nif ac_fn_c_try_cpp \"$LINENO\"; then :\n  # Broken: success on invalid input.\ncontinue\nelse\n  # Passes both tests.\nac_preproc_ok=:\nbreak\nfi\nrm -f conftest.err conftest.i conftest.$ac_ext\n\ndone\n# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.\nrm -f conftest.i conftest.err conftest.$ac_ext\nif $ac_preproc_ok; then :\n\nelse\n  { { $as_echo \"$as_me:${as_lineno-$LINENO}: error: in \\`$ac_pwd':\" >&5\n$as_echo \"$as_me: error: in \\`$ac_pwd':\" >&2;}\nas_fn_error $? \"C preprocessor \\\"$CPP\\\" fails sanity check\nSee \\`config.log' for more details\" \"$LINENO\" 5; }\nfi\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n# Find a good install program.  We prefer a C program (faster),\n# so one script is as good as another.  But avoid the broken or\n# incompatible versions:\n# SysV /etc/install, /usr/sbin/install\n# SunOS /usr/etc/install\n# IRIX /sbin/install\n# AIX /bin/install\n# AmigaOS /C/install, which installs bootblocks on floppy discs\n# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag\n# AFS /usr/afsws/bin/install, which mishandles nonexistent args\n# SVR4 /usr/ucb/install, which tries to use the nonexistent group \"staff\"\n# OS/2's system install, which has a completely different semantic\n# ./install, which can be erroneously created by make from ./install.sh.\n# Reject install programs that cannot install multiple files.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install\" >&5\n$as_echo_n \"checking for a BSD-compatible install... \" >&6; }\nif test -z \"$INSTALL\"; then\nif ${ac_cv_path_install+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    # Account for people who put trailing slashes in PATH elements.\ncase $as_dir/ in #((\n  ./ | .// | /[cC]/* | \\\n  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \\\n  ?:[\\\\/]os2[\\\\/]install[\\\\/]* | ?:[\\\\/]OS2[\\\\/]INSTALL[\\\\/]* | \\\n  /usr/ucb/* ) ;;\n  *)\n    # OSF1 and SCO ODT 3.0 have their own names for install.\n    # Don't use installbsd from OSF since it installs stuff as root\n    # by default.\n    for ac_prog in ginstall scoinst install; do\n      for ac_exec_ext in '' $ac_executable_extensions; do\n\tif as_fn_executable_p \"$as_dir/$ac_prog$ac_exec_ext\"; then\n\t  if test $ac_prog = install &&\n\t    grep dspmsg \"$as_dir/$ac_prog$ac_exec_ext\" >/dev/null 2>&1; then\n\t    # AIX install.  It has an incompatible calling convention.\n\t    :\n\t  elif test $ac_prog = install &&\n\t    grep pwplus \"$as_dir/$ac_prog$ac_exec_ext\" >/dev/null 2>&1; then\n\t    # program-specific install script used by HP pwplus--don't use.\n\t    :\n\t  else\n\t    rm -rf conftest.one conftest.two conftest.dir\n\t    echo one > conftest.one\n\t    echo two > conftest.two\n\t    mkdir conftest.dir\n\t    if \"$as_dir/$ac_prog$ac_exec_ext\" -c conftest.one conftest.two \"`pwd`/conftest.dir\" &&\n\t      test -s conftest.one && test -s conftest.two &&\n\t      test -s conftest.dir/conftest.one &&\n\t      test -s conftest.dir/conftest.two\n\t    then\n\t      ac_cv_path_install=\"$as_dir/$ac_prog$ac_exec_ext -c\"\n\t      break 3\n\t    fi\n\t  fi\n\tfi\n      done\n    done\n    ;;\nesac\n\n  done\nIFS=$as_save_IFS\n\nrm -rf conftest.one conftest.two conftest.dir\n\nfi\n  if test \"${ac_cv_path_install+set}\" = set; then\n    INSTALL=$ac_cv_path_install\n  else\n    # As a last resort, use the slow shell script.  Don't cache a\n    # value for INSTALL within a source directory, because that will\n    # break other packages using the cache if that directory is\n    # removed, or if the value is a relative name.\n    INSTALL=$ac_install_sh\n  fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $INSTALL\" >&5\n$as_echo \"$INSTALL\" >&6; }\n\n# Use test -z because SunOS4 sh mishandles braces in ${var-val}.\n# It thinks the first close brace ends the variable substitution.\ntest -z \"$INSTALL_PROGRAM\" && INSTALL_PROGRAM='${INSTALL}'\n\ntest -z \"$INSTALL_SCRIPT\" && INSTALL_SCRIPT='${INSTALL}'\n\ntest -z \"$INSTALL_DATA\" && INSTALL_DATA='${INSTALL} -m 644'\n\n\n\n# Make sure we can run config.sub.\n$SHELL \"$ac_aux_dir/config.sub\" sun4 >/dev/null 2>&1 ||\n  as_fn_error $? \"cannot run $SHELL $ac_aux_dir/config.sub\" \"$LINENO\" 5\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking build system type\" >&5\n$as_echo_n \"checking build system type... \" >&6; }\nif ${ac_cv_build+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_build_alias=$build_alias\ntest \"x$ac_build_alias\" = x &&\n  ac_build_alias=`$SHELL \"$ac_aux_dir/config.guess\"`\ntest \"x$ac_build_alias\" = x &&\n  as_fn_error $? \"cannot guess build type; you must specify one\" \"$LINENO\" 5\nac_cv_build=`$SHELL \"$ac_aux_dir/config.sub\" $ac_build_alias` ||\n  as_fn_error $? \"$SHELL $ac_aux_dir/config.sub $ac_build_alias failed\" \"$LINENO\" 5\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_build\" >&5\n$as_echo \"$ac_cv_build\" >&6; }\ncase $ac_cv_build in\n*-*-*) ;;\n*) as_fn_error $? \"invalid value of canonical build\" \"$LINENO\" 5;;\nesac\nbuild=$ac_cv_build\nac_save_IFS=$IFS; IFS='-'\nset x $ac_cv_build\nshift\nbuild_cpu=$1\nbuild_vendor=$2\nshift; shift\n# Remember, the first character of IFS is used to create $*,\n# except with old shells:\nbuild_os=$*\nIFS=$ac_save_IFS\ncase $build_os in *\\ *) build_os=`echo \"$build_os\" | sed 's/ /-/g'`;; esac\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking host system type\" >&5\n$as_echo_n \"checking host system type... \" >&6; }\nif ${ac_cv_host+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test \"x$host_alias\" = x; then\n  ac_cv_host=$ac_cv_build\nelse\n  ac_cv_host=`$SHELL \"$ac_aux_dir/config.sub\" $host_alias` ||\n    as_fn_error $? \"$SHELL $ac_aux_dir/config.sub $host_alias failed\" \"$LINENO\" 5\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_host\" >&5\n$as_echo \"$ac_cv_host\" >&6; }\ncase $ac_cv_host in\n*-*-*) ;;\n*) as_fn_error $? \"invalid value of canonical host\" \"$LINENO\" 5;;\nesac\nhost=$ac_cv_host\nac_save_IFS=$IFS; IFS='-'\nset x $ac_cv_host\nshift\nhost_cpu=$1\nhost_vendor=$2\nshift; shift\n# Remember, the first character of IFS is used to create $*,\n# except with old shells:\nhost_os=$*\nIFS=$ac_save_IFS\ncase $host_os in *\\ *) host_os=`echo \"$host_os\" | sed 's/ /-/g'`;; esac\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether to activate relocatable installation\" >&5\n$as_echo_n \"checking whether to activate relocatable installation... \" >&6; }\n  # Check whether --enable-relocatable was given.\nif test \"${enable_relocatable+set}\" = set; then :\n  enableval=$enable_relocatable; if test \"$enableval\" != no; then\n       RELOCATABLE=yes\n     else\n       RELOCATABLE=no\n     fi\n\nelse\n  RELOCATABLE=no\nfi\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $RELOCATABLE\" >&5\n$as_echo \"$RELOCATABLE\" >&6; }\n\n\n\n    if test \"X$prefix\" = \"XNONE\"; then\n    reloc_final_prefix=\"$ac_default_prefix\"\n  else\n    reloc_final_prefix=\"$prefix\"\n  fi\n\ncat >>confdefs.h <<_ACEOF\n#define INSTALLPREFIX \"${reloc_final_prefix}\"\n_ACEOF\n\n  if test $RELOCATABLE = yes; then\n\n$as_echo \"#define ENABLE_RELOCATABLE 1\" >>confdefs.h\n\n  fi\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether ln -s works\" >&5\n$as_echo_n \"checking whether ln -s works... \" >&6; }\nLN_S=$as_ln_s\nif test \"$LN_S\" = \"ln -s\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no, using $LN_S\" >&5\n$as_echo \"no, using $LN_S\" >&6; }\nfi\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e\" >&5\n$as_echo_n \"checking for grep that handles long lines and -e... \" >&6; }\nif ${ac_cv_path_GREP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -z \"$GREP\"; then\n  ac_path_GREP_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in grep ggrep; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_GREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_GREP\" || continue\n# Check for GNU ac_path_GREP and select it if it is found.\n  # Check for GNU $ac_path_GREP\ncase `\"$ac_path_GREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_GREP=\"$ac_path_GREP\" ac_path_GREP_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo 'GREP' >> \"conftest.nl\"\n    \"$ac_path_GREP\" -e 'GREP$' -e '-(cannot match)-' < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_GREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_GREP=\"$ac_path_GREP\"\n      ac_path_GREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_GREP_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_GREP\"; then\n    as_fn_error $? \"no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_GREP=$GREP\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP\" >&5\n$as_echo \"$ac_cv_path_GREP\" >&6; }\n GREP=\"$ac_cv_path_GREP\"\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for egrep\" >&5\n$as_echo_n \"checking for egrep... \" >&6; }\nif ${ac_cv_path_EGREP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1\n   then ac_cv_path_EGREP=\"$GREP -E\"\n   else\n     if test -z \"$EGREP\"; then\n  ac_path_EGREP_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in egrep; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_EGREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_EGREP\" || continue\n# Check for GNU ac_path_EGREP and select it if it is found.\n  # Check for GNU $ac_path_EGREP\ncase `\"$ac_path_EGREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_EGREP=\"$ac_path_EGREP\" ac_path_EGREP_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo 'EGREP' >> \"conftest.nl\"\n    \"$ac_path_EGREP\" 'EGREP$' < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_EGREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_EGREP=\"$ac_path_EGREP\"\n      ac_path_EGREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_EGREP_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_EGREP\"; then\n    as_fn_error $? \"no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_EGREP=$EGREP\nfi\n\n   fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP\" >&5\n$as_echo \"$ac_cv_path_EGREP\" >&6; }\n EGREP=\"$ac_cv_path_EGREP\"\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ANSI C header files\" >&5\n$as_echo_n \"checking for ANSI C header files... \" >&6; }\nif ${ac_cv_header_stdc+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdlib.h>\n#include <stdarg.h>\n#include <string.h>\n#include <float.h>\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_header_stdc=yes\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nif test $ac_cv_header_stdc = yes; then\n  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <string.h>\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"memchr\" >/dev/null 2>&1; then :\n\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f conftest*\n\nfi\n\nif test $ac_cv_header_stdc = yes; then\n  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <stdlib.h>\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"free\" >/dev/null 2>&1; then :\n\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f conftest*\n\nfi\n\nif test $ac_cv_header_stdc = yes; then\n  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.\n  if test \"$cross_compiling\" = yes; then :\n  :\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n#include <ctype.h>\n#include <stdlib.h>\n#if ((' ' & 0x0FF) == 0x020)\n# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')\n# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))\n#else\n# define ISLOWER(c) \\\n\t\t   (('a' <= (c) && (c) <= 'i') \\\n\t\t     || ('j' <= (c) && (c) <= 'r') \\\n\t\t     || ('s' <= (c) && (c) <= 'z'))\n# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))\n#endif\n\n#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))\nint\nmain ()\n{\n  int i;\n  for (i = 0; i < 256; i++)\n    if (XOR (islower (i), ISLOWER (i))\n\t|| toupper (i) != TOUPPER (i))\n      return 2;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_run \"$LINENO\"; then :\n\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \\\n  conftest.$ac_objext conftest.beam conftest.$ac_ext\nfi\n\nfi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc\" >&5\n$as_echo \"$ac_cv_header_stdc\" >&6; }\nif test $ac_cv_header_stdc = yes; then\n\n$as_echo \"#define STDC_HEADERS 1\" >>confdefs.h\n\nfi\n\n# On IRIX 5.3, sys/types and inttypes.h are conflicting.\nfor ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \\\n\t\t  inttypes.h stdint.h unistd.h\ndo :\n  as_ac_Header=`$as_echo \"ac_cv_header_$ac_header\" | $as_tr_sh`\nac_fn_c_check_header_compile \"$LINENO\" \"$ac_header\" \"$as_ac_Header\" \"$ac_includes_default\n\"\nif eval test \\\"x\\$\"$as_ac_Header\"\\\" = x\"yes\"; then :\n  cat >>confdefs.h <<_ACEOF\n#define `$as_echo \"HAVE_$ac_header\" | $as_tr_cpp` 1\n_ACEOF\n\nfi\n\ndone\n\n\n\n  ac_fn_c_check_header_mongrel \"$LINENO\" \"minix/config.h\" \"ac_cv_header_minix_config_h\" \"$ac_includes_default\"\nif test \"x$ac_cv_header_minix_config_h\" = xyes; then :\n  MINIX=yes\nelse\n  MINIX=\nfi\n\n\n  if test \"$MINIX\" = yes; then\n\n$as_echo \"#define _POSIX_SOURCE 1\" >>confdefs.h\n\n\n$as_echo \"#define _POSIX_1_SOURCE 2\" >>confdefs.h\n\n\n$as_echo \"#define _MINIX 1\" >>confdefs.h\n\n\n$as_echo \"#define _NETBSD_SOURCE 1\" >>confdefs.h\n\n  fi\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__\" >&5\n$as_echo_n \"checking whether it is safe to define __EXTENSIONS__... \" >&6; }\nif ${ac_cv_safe_to_define___extensions__+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n#         define __EXTENSIONS__ 1\n          $ac_includes_default\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_safe_to_define___extensions__=yes\nelse\n  ac_cv_safe_to_define___extensions__=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__\" >&5\n$as_echo \"$ac_cv_safe_to_define___extensions__\" >&6; }\n  test $ac_cv_safe_to_define___extensions__ = yes &&\n    $as_echo \"#define __EXTENSIONS__ 1\" >>confdefs.h\n\n  $as_echo \"#define _ALL_SOURCE 1\" >>confdefs.h\n\n  $as_echo \"#define _DARWIN_C_SOURCE 1\" >>confdefs.h\n\n  $as_echo \"#define _GNU_SOURCE 1\" >>confdefs.h\n\n  $as_echo \"#define _POSIX_PTHREAD_SEMANTICS 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_IEC_60559_BFP_EXT__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_IEC_60559_DFP_EXT__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_IEC_60559_TYPES_EXT__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_LIB_EXT2__ 1\" >>confdefs.h\n\n  $as_echo \"#define __STDC_WANT_MATH_SPEC_FUNCS__ 1\" >>confdefs.h\n\n  $as_echo \"#define _TANDEM_SOURCE 1\" >>confdefs.h\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether _XOPEN_SOURCE should be defined\" >&5\n$as_echo_n \"checking whether _XOPEN_SOURCE should be defined... \" >&6; }\nif ${ac_cv_should_define__xopen_source+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_cv_should_define__xopen_source=no\n     cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n          #include <wchar.h>\n          mbstate_t x;\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n             #define _XOPEN_SOURCE 500\n             #include <wchar.h>\n             mbstate_t x;\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  ac_cv_should_define__xopen_source=yes\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_should_define__xopen_source\" >&5\n$as_echo \"$ac_cv_should_define__xopen_source\" >&6; }\n  test $ac_cv_should_define__xopen_source = yes &&\n    $as_echo \"#define _XOPEN_SOURCE 500\" >>confdefs.h\n\n\n\n\n\n\n\n\nenable_shared=yes\nenable_static=no\ncase `pwd` in\n  *\\ * | *\\\t*)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \\`pwd\\`\" >&5\n$as_echo \"$as_me: WARNING: Libtool does not cope well with whitespace in \\`pwd\\`\" >&2;} ;;\nesac\n\n\n\nmacro_version='2.4.6'\nmacro_revision='2.4.6'\n\n\n\n\n\n\n\n\n\n\n\n\n\nltmain=$ac_aux_dir/ltmain.sh\n\n# Backslashify metacharacters that are still active within\n# double-quoted strings.\nsed_quote_subst='s/\\([\"`$\\\\]\\)/\\\\\\1/g'\n\n# Same as above, but do not quote variable references.\ndouble_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\n\n# Sed substitution to delay expansion of an escaped shell variable in a\n# double_quote_subst'ed string.\ndelay_variable_subst='s/\\\\\\\\\\\\\\\\\\\\\\$/\\\\\\\\\\\\$/g'\n\n# Sed substitution to delay expansion of an escaped single quote.\ndelay_single_quote_subst='s/'\\''/'\\'\\\\\\\\\\\\\\'\\''/g'\n\n# Sed substitution to avoid accidental globbing in evaled expressions\nno_glob_subst='s/\\*/\\\\\\*/g'\n\nECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to print strings\" >&5\n$as_echo_n \"checking how to print strings... \" >&6; }\n# Test print first, because it will be a builtin if present.\nif test \"X`( print -r -- -n ) 2>/dev/null`\" = X-n && \\\n   test \"X`print -r -- $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='print -r --'\nelif test \"X`printf %s $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='printf %s\\n'\nelse\n  # Use this function as a fallback that always works.\n  func_fallback_echo ()\n  {\n    eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n  }\n  ECHO='func_fallback_echo'\nfi\n\n# func_echo_all arg...\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"\"\n}\n\ncase $ECHO in\n  printf*) { $as_echo \"$as_me:${as_lineno-$LINENO}: result: printf\" >&5\n$as_echo \"printf\" >&6; } ;;\n  print*) { $as_echo \"$as_me:${as_lineno-$LINENO}: result: print -r\" >&5\n$as_echo \"print -r\" >&6; } ;;\n  *) { $as_echo \"$as_me:${as_lineno-$LINENO}: result: cat\" >&5\n$as_echo \"cat\" >&6; } ;;\nesac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output\" >&5\n$as_echo_n \"checking for a sed that does not truncate output... \" >&6; }\nif ${ac_cv_path_SED+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n            ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/\n     for ac_i in 1 2 3 4 5 6 7; do\n       ac_script=\"$ac_script$as_nl$ac_script\"\n     done\n     echo \"$ac_script\" 2>/dev/null | sed 99q >conftest.sed\n     { ac_script=; unset ac_script;}\n     if test -z \"$SED\"; then\n  ac_path_SED_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in sed gsed; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_SED=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_SED\" || continue\n# Check for GNU ac_path_SED and select it if it is found.\n  # Check for GNU $ac_path_SED\ncase `\"$ac_path_SED\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_SED=\"$ac_path_SED\" ac_path_SED_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo '' >> \"conftest.nl\"\n    \"$ac_path_SED\" -f conftest.sed < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_SED_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_SED=\"$ac_path_SED\"\n      ac_path_SED_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_SED_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_SED\"; then\n    as_fn_error $? \"no acceptable sed could be found in \\$PATH\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_SED=$SED\nfi\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED\" >&5\n$as_echo \"$ac_cv_path_SED\" >&6; }\n SED=\"$ac_cv_path_SED\"\n  rm -f conftest.sed\n\ntest -z \"$SED\" && SED=sed\nXsed=\"$SED -e 1s/^X//\"\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for fgrep\" >&5\n$as_echo_n \"checking for fgrep... \" >&6; }\nif ${ac_cv_path_FGREP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1\n   then ac_cv_path_FGREP=\"$GREP -F\"\n   else\n     if test -z \"$FGREP\"; then\n  ac_path_FGREP_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in fgrep; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_FGREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_FGREP\" || continue\n# Check for GNU ac_path_FGREP and select it if it is found.\n  # Check for GNU $ac_path_FGREP\ncase `\"$ac_path_FGREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_FGREP=\"$ac_path_FGREP\" ac_path_FGREP_found=:;;\n*)\n  ac_count=0\n  $as_echo_n 0123456789 >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    $as_echo 'FGREP' >> \"conftest.nl\"\n    \"$ac_path_FGREP\" FGREP < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    as_fn_arith $ac_count + 1 && ac_count=$as_val\n    if test $ac_count -gt ${ac_path_FGREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_FGREP=\"$ac_path_FGREP\"\n      ac_path_FGREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n      $ac_path_FGREP_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_FGREP\"; then\n    as_fn_error $? \"no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" \"$LINENO\" 5\n  fi\nelse\n  ac_cv_path_FGREP=$FGREP\nfi\n\n   fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP\" >&5\n$as_echo \"$ac_cv_path_FGREP\" >&6; }\n FGREP=\"$ac_cv_path_FGREP\"\n\n\ntest -z \"$GREP\" && GREP=grep\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# Check whether --with-gnu-ld was given.\nif test \"${with_gnu_ld+set}\" = set; then :\n  withval=$with_gnu_ld; test no = \"$withval\" || with_gnu_ld=yes\nelse\n  with_gnu_ld=no\nfi\n\nac_prog=ld\nif test yes = \"$GCC\"; then\n  # Check if gcc -print-prog-name=ld gives a path.\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ld used by $CC\" >&5\n$as_echo_n \"checking for ld used by $CC... \" >&6; }\n  case $host in\n  *-*-mingw*)\n    # gcc leaves a trailing carriage return, which upsets mingw\n    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\\015'` ;;\n  *)\n    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;\n  esac\n  case $ac_prog in\n    # Accept absolute paths.\n    [\\\\/]* | ?:[\\\\/]*)\n      re_direlt='/[^/][^/]*/\\.\\./'\n      # Canonicalize the pathname of ld\n      ac_prog=`$ECHO \"$ac_prog\"| $SED 's%\\\\\\\\%/%g'`\n      while $ECHO \"$ac_prog\" | $GREP \"$re_direlt\" > /dev/null 2>&1; do\n\tac_prog=`$ECHO $ac_prog| $SED \"s%$re_direlt%/%\"`\n      done\n      test -z \"$LD\" && LD=$ac_prog\n      ;;\n  \"\")\n    # If it fails, then pretend we aren't using GCC.\n    ac_prog=ld\n    ;;\n  *)\n    # If it is relative, then search for the first ld in PATH.\n    with_gnu_ld=unknown\n    ;;\n  esac\nelif test yes = \"$with_gnu_ld\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for GNU ld\" >&5\n$as_echo_n \"checking for GNU ld... \" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for non-GNU ld\" >&5\n$as_echo_n \"checking for non-GNU ld... \" >&6; }\nfi\nif ${lt_cv_path_LD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -z \"$LD\"; then\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n  for ac_dir in $PATH; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$ac_prog\" || test -f \"$ac_dir/$ac_prog$ac_exeext\"; then\n      lt_cv_path_LD=$ac_dir/$ac_prog\n      # Check to see if the program is GNU ld.  I'd rather use --version,\n      # but apparently some variants of GNU ld only accept -v.\n      # Break only if it was the GNU/non-GNU ld that we prefer.\n      case `\"$lt_cv_path_LD\" -v 2>&1 </dev/null` in\n      *GNU* | *'with BFD'*)\n\ttest no != \"$with_gnu_ld\" && break\n\t;;\n      *)\n\ttest yes != \"$with_gnu_ld\" && break\n\t;;\n      esac\n    fi\n  done\n  IFS=$lt_save_ifs\nelse\n  lt_cv_path_LD=$LD # Let the user override the test with a path.\nfi\nfi\n\nLD=$lt_cv_path_LD\nif test -n \"$LD\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $LD\" >&5\n$as_echo \"$LD\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\ntest -z \"$LD\" && as_fn_error $? \"no acceptable ld found in \\$PATH\" \"$LINENO\" 5\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld\" >&5\n$as_echo_n \"checking if the linker ($LD) is GNU ld... \" >&6; }\nif ${lt_cv_prog_gnu_ld+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  # I'd rather use --version here, but apparently some GNU lds only accept -v.\ncase `$LD -v 2>&1 </dev/null` in\n*GNU* | *'with BFD'*)\n  lt_cv_prog_gnu_ld=yes\n  ;;\n*)\n  lt_cv_prog_gnu_ld=no\n  ;;\nesac\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_gnu_ld\" >&5\n$as_echo \"$lt_cv_prog_gnu_ld\" >&6; }\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)\" >&5\n$as_echo_n \"checking for BSD- or MS-compatible name lister (nm)... \" >&6; }\nif ${lt_cv_path_NM+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$NM\"; then\n  # Let the user override the test.\n  lt_cv_path_NM=$NM\nelse\n  lt_nm_to_check=${ac_tool_prefix}nm\n  if test -n \"$ac_tool_prefix\" && test \"$build\" = \"$host\"; then\n    lt_nm_to_check=\"$lt_nm_to_check nm\"\n  fi\n  for lt_tmp_nm in $lt_nm_to_check; do\n    lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do\n      IFS=$lt_save_ifs\n      test -z \"$ac_dir\" && ac_dir=.\n      tmp_nm=$ac_dir/$lt_tmp_nm\n      if test -f \"$tmp_nm\" || test -f \"$tmp_nm$ac_exeext\"; then\n\t# Check to see if the nm accepts a BSD-compat flag.\n\t# Adding the 'sed 1q' prevents false positives on HP-UX, which says:\n\t#   nm: unknown option \"B\" ignored\n\t# Tru64's nm complains that /dev/null is an invalid object file\n\t# MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty\n\tcase $build_os in\n\tmingw*) lt_bad_file=conftest.nm/nofile ;;\n\t*) lt_bad_file=/dev/null ;;\n\tesac\n\tcase `\"$tmp_nm\" -B $lt_bad_file 2>&1 | sed '1q'` in\n\t*$lt_bad_file* | *'Invalid file or object type'*)\n\t  lt_cv_path_NM=\"$tmp_nm -B\"\n\t  break 2\n\t  ;;\n\t*)\n\t  case `\"$tmp_nm\" -p /dev/null 2>&1 | sed '1q'` in\n\t  */dev/null*)\n\t    lt_cv_path_NM=\"$tmp_nm -p\"\n\t    break 2\n\t    ;;\n\t  *)\n\t    lt_cv_path_NM=${lt_cv_path_NM=\"$tmp_nm\"} # keep the first match, but\n\t    continue # so that we can try to find one that supports BSD flags\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n      fi\n    done\n    IFS=$lt_save_ifs\n  done\n  : ${lt_cv_path_NM=no}\nfi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM\" >&5\n$as_echo \"$lt_cv_path_NM\" >&6; }\nif test no != \"$lt_cv_path_NM\"; then\n  NM=$lt_cv_path_NM\nelse\n  # Didn't find any BSD compatible name lister, look for dumpbin.\n  if test -n \"$DUMPBIN\"; then :\n    # Let the user override the test.\n  else\n    if test -n \"$ac_tool_prefix\"; then\n  for ac_prog in dumpbin \"link -dump\"\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DUMPBIN+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DUMPBIN\"; then\n  ac_cv_prog_DUMPBIN=\"$DUMPBIN\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DUMPBIN=\"$ac_tool_prefix$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDUMPBIN=$ac_cv_prog_DUMPBIN\nif test -n \"$DUMPBIN\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DUMPBIN\" >&5\n$as_echo \"$DUMPBIN\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n    test -n \"$DUMPBIN\" && break\n  done\nfi\nif test -z \"$DUMPBIN\"; then\n  ac_ct_DUMPBIN=$DUMPBIN\n  for ac_prog in dumpbin \"link -dump\"\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DUMPBIN\"; then\n  ac_cv_prog_ac_ct_DUMPBIN=\"$ac_ct_DUMPBIN\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DUMPBIN=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN\nif test -n \"$ac_ct_DUMPBIN\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN\" >&5\n$as_echo \"$ac_ct_DUMPBIN\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_DUMPBIN\" && break\ndone\n\n  if test \"x$ac_ct_DUMPBIN\" = x; then\n    DUMPBIN=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DUMPBIN=$ac_ct_DUMPBIN\n  fi\nfi\n\n    case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in\n    *COFF*)\n      DUMPBIN=\"$DUMPBIN -symbols -headers\"\n      ;;\n    *)\n      DUMPBIN=:\n      ;;\n    esac\n  fi\n\n  if test : != \"$DUMPBIN\"; then\n    NM=$DUMPBIN\n  fi\nfi\ntest -z \"$NM\" && NM=nm\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface\" >&5\n$as_echo_n \"checking the name lister ($NM) interface... \" >&6; }\nif ${lt_cv_nm_interface+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_nm_interface=\"BSD nm\"\n  echo \"int some_variable = 0;\" > conftest.$ac_ext\n  (eval echo \"\\\"\\$as_me:$LINENO: $ac_compile\\\"\" >&5)\n  (eval \"$ac_compile\" 2>conftest.err)\n  cat conftest.err >&5\n  (eval echo \"\\\"\\$as_me:$LINENO: $NM \\\\\\\"conftest.$ac_objext\\\\\\\"\\\"\" >&5)\n  (eval \"$NM \\\"conftest.$ac_objext\\\"\" 2>conftest.err > conftest.out)\n  cat conftest.err >&5\n  (eval echo \"\\\"\\$as_me:$LINENO: output\\\"\" >&5)\n  cat conftest.out >&5\n  if $GREP 'External.*some_variable' conftest.out > /dev/null; then\n    lt_cv_nm_interface=\"MS dumpbin\"\n  fi\n  rm -f conftest*\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface\" >&5\n$as_echo \"$lt_cv_nm_interface\" >&6; }\n\n# find the maximum length of command line arguments\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments\" >&5\n$as_echo_n \"checking the maximum length of command line arguments... \" >&6; }\nif ${lt_cv_sys_max_cmd_len+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n    i=0\n  teststring=ABCD\n\n  case $build_os in\n  msdosdjgpp*)\n    # On DJGPP, this test can blow up pretty badly due to problems in libc\n    # (any single argument exceeding 2000 bytes causes a buffer overrun\n    # during glob expansion).  Even if it were fixed, the result of this\n    # check would be larger than it should be.\n    lt_cv_sys_max_cmd_len=12288;    # 12K is about right\n    ;;\n\n  gnu*)\n    # Under GNU Hurd, this test is not required because there is\n    # no limit to the length of command line arguments.\n    # Libtool will interpret -1 as no limit whatsoever\n    lt_cv_sys_max_cmd_len=-1;\n    ;;\n\n  cygwin* | mingw* | cegcc*)\n    # On Win9x/ME, this test blows up -- it succeeds, but takes\n    # about 5 minutes as the teststring grows exponentially.\n    # Worse, since 9x/ME are not pre-emptively multitasking,\n    # you end up with a \"frozen\" computer, even though with patience\n    # the test eventually succeeds (with a max line length of 256k).\n    # Instead, let's just punt: use the minimum linelength reported by\n    # all of the supported platforms: 8192 (on NT/2K/XP).\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  mint*)\n    # On MiNT this can take a long time and run out of memory.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  amigaos*)\n    # On AmigaOS with pdksh, this test takes hours, literally.\n    # So we just punt and use a minimum line length of 8192.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)\n    # This has been around since 386BSD, at least.  Likely further.\n    if test -x /sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`\n    elif test -x /usr/sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`\n    else\n      lt_cv_sys_max_cmd_len=65536\t# usable default for all BSDs\n    fi\n    # And add a safety zone\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    ;;\n\n  interix*)\n    # We know the value 262144 and hardcode it with a safety zone (like BSD)\n    lt_cv_sys_max_cmd_len=196608\n    ;;\n\n  os2*)\n    # The test takes a long time on OS/2.\n    lt_cv_sys_max_cmd_len=8192\n    ;;\n\n  osf*)\n    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure\n    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not\n    # nice to cause kernel panics so lets avoid the loop below.\n    # First set a reasonable default.\n    lt_cv_sys_max_cmd_len=16384\n    #\n    if test -x /sbin/sysconfig; then\n      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in\n        *1*) lt_cv_sys_max_cmd_len=-1 ;;\n      esac\n    fi\n    ;;\n  sco3.2v5*)\n    lt_cv_sys_max_cmd_len=102400\n    ;;\n  sysv5* | sco5v6* | sysv4.2uw2*)\n    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`\n    if test -n \"$kargmax\"; then\n      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[\t ]//'`\n    else\n      lt_cv_sys_max_cmd_len=32768\n    fi\n    ;;\n  *)\n    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`\n    if test -n \"$lt_cv_sys_max_cmd_len\" && \\\n       test undefined != \"$lt_cv_sys_max_cmd_len\"; then\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    else\n      # Make teststring a little bigger before we do anything with it.\n      # a 1K string should be a reasonable start.\n      for i in 1 2 3 4 5 6 7 8; do\n        teststring=$teststring$teststring\n      done\n      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}\n      # If test is not a shell built-in, we'll probably end up computing a\n      # maximum length that is only half of the actual maximum length, but\n      # we can't tell.\n      while { test X`env echo \"$teststring$teststring\" 2>/dev/null` \\\n\t         = \"X$teststring$teststring\"; } >/dev/null 2>&1 &&\n\t      test 17 != \"$i\" # 1/2 MB should be enough\n      do\n        i=`expr $i + 1`\n        teststring=$teststring$teststring\n      done\n      # Only check the string length outside the loop.\n      lt_cv_sys_max_cmd_len=`expr \"X$teststring\" : \".*\" 2>&1`\n      teststring=\n      # Add a significant safety factor because C++ compilers can tack on\n      # massive amounts of additional arguments before passing them to the\n      # linker.  It appears as though 1/2 is a usable value.\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 2`\n    fi\n    ;;\n  esac\n\nfi\n\nif test -n \"$lt_cv_sys_max_cmd_len\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len\" >&5\n$as_echo \"$lt_cv_sys_max_cmd_len\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: none\" >&5\n$as_echo \"none\" >&6; }\nfi\nmax_cmd_len=$lt_cv_sys_max_cmd_len\n\n\n\n\n\n\n: ${CP=\"cp -f\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n\nif ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then\n  lt_unset=unset\nelse\n  lt_unset=false\nfi\n\n\n\n\n\n# test EBCDIC or ASCII\ncase `echo X|tr X '\\101'` in\n A) # ASCII based system\n    # \\n is not interpreted correctly by Solaris 8 /usr/ucb/tr\n  lt_SP2NL='tr \\040 \\012'\n  lt_NL2SP='tr \\015\\012 \\040\\040'\n  ;;\n *) # EBCDIC based system\n  lt_SP2NL='tr \\100 \\n'\n  lt_NL2SP='tr \\r\\n \\100\\100'\n  ;;\nesac\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format\" >&5\n$as_echo_n \"checking how to convert $build file names to $host format... \" >&6; }\nif ${lt_cv_to_host_file_cmd+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case $host in\n  *-*-mingw* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32\n        ;;\n      *-*-cygwin* )\n        lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32\n        ;;\n      * ) # otherwise, assume *nix\n        lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32\n        ;;\n    esac\n    ;;\n  *-*-cygwin* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin\n        ;;\n      *-*-cygwin* )\n        lt_cv_to_host_file_cmd=func_convert_file_noop\n        ;;\n      * ) # otherwise, assume *nix\n        lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin\n        ;;\n    esac\n    ;;\n  * ) # unhandled hosts (and \"normal\" native builds)\n    lt_cv_to_host_file_cmd=func_convert_file_noop\n    ;;\nesac\n\nfi\n\nto_host_file_cmd=$lt_cv_to_host_file_cmd\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd\" >&5\n$as_echo \"$lt_cv_to_host_file_cmd\" >&6; }\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format\" >&5\n$as_echo_n \"checking how to convert $build file names to toolchain format... \" >&6; }\nif ${lt_cv_to_tool_file_cmd+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  #assume ordinary cross tools, or native build.\nlt_cv_to_tool_file_cmd=func_convert_file_noop\ncase $host in\n  *-*-mingw* )\n    case $build in\n      *-*-mingw* ) # actually msys\n        lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32\n        ;;\n    esac\n    ;;\nesac\n\nfi\n\nto_tool_file_cmd=$lt_cv_to_tool_file_cmd\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd\" >&5\n$as_echo \"$lt_cv_to_tool_file_cmd\" >&6; }\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files\" >&5\n$as_echo_n \"checking for $LD option to reload object files... \" >&6; }\nif ${lt_cv_ld_reload_flag+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ld_reload_flag='-r'\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag\" >&5\n$as_echo \"$lt_cv_ld_reload_flag\" >&6; }\nreload_flag=$lt_cv_ld_reload_flag\ncase $reload_flag in\n\"\" | \" \"*) ;;\n*) reload_flag=\" $reload_flag\" ;;\nesac\nreload_cmds='$LD$reload_flag -o $output$reload_objs'\ncase $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    if test yes != \"$GCC\"; then\n      reload_cmds=false\n    fi\n    ;;\n  darwin*)\n    if test yes = \"$GCC\"; then\n      reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs'\n    else\n      reload_cmds='$LD$reload_flag -o $output$reload_objs'\n    fi\n    ;;\nesac\n\n\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}objdump\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OBJDUMP\"; then\n  ac_cv_prog_OBJDUMP=\"$OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OBJDUMP=\"${ac_tool_prefix}objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOBJDUMP=$ac_cv_prog_OBJDUMP\nif test -n \"$OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OBJDUMP\" >&5\n$as_echo \"$OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OBJDUMP\"; then\n  ac_ct_OBJDUMP=$OBJDUMP\n  # Extract the first word of \"objdump\", so it can be a program name with args.\nset dummy objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OBJDUMP\"; then\n  ac_cv_prog_ac_ct_OBJDUMP=\"$ac_ct_OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OBJDUMP=\"objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP\nif test -n \"$ac_ct_OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP\" >&5\n$as_echo \"$ac_ct_OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OBJDUMP\" = x; then\n    OBJDUMP=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OBJDUMP=$ac_ct_OBJDUMP\n  fi\nelse\n  OBJDUMP=\"$ac_cv_prog_OBJDUMP\"\nfi\n\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries\" >&5\n$as_echo_n \"checking how to recognize dependent libraries... \" >&6; }\nif ${lt_cv_deplibs_check_method+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_file_magic_cmd='$MAGIC_CMD'\nlt_cv_file_magic_test_file=\nlt_cv_deplibs_check_method='unknown'\n# Need to set the preceding variable on all platforms that support\n# interlibrary dependencies.\n# 'none' -- dependencies not supported.\n# 'unknown' -- same as none, but documents that we really don't know.\n# 'pass_all' -- all dependencies passed with no checks.\n# 'test_compile' -- check by making test program.\n# 'file_magic [[regex]]' -- check by looking for files in library path\n# that responds to the $file_magic_cmd with a given extended regex.\n# If you have 'file' or equivalent on your system and you're not sure\n# whether 'pass_all' will *always* work, you probably want this one.\n\ncase $host_os in\naix[4-9]*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbeos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbsdi[45]*)\n  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'\n  lt_cv_file_magic_cmd='/usr/bin/file -L'\n  lt_cv_file_magic_test_file=/shlib/libc.so\n  ;;\n\ncygwin*)\n  # func_win32_libid is a shell function defined in ltmain.sh\n  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n  lt_cv_file_magic_cmd='func_win32_libid'\n  ;;\n\nmingw* | pw32*)\n  # Base MSYS/MinGW do not provide the 'file' command needed by\n  # func_win32_libid shell function, so use a weaker test based on 'objdump',\n  # unless we find 'file', for example because we are cross-compiling.\n  if ( file / ) >/dev/null 2>&1; then\n    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n    lt_cv_file_magic_cmd='func_win32_libid'\n  else\n    # Keep this pattern in sync with the one in func_win32_libid.\n    lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'\n    lt_cv_file_magic_cmd='$OBJDUMP -f'\n  fi\n  ;;\n\ncegcc*)\n  # use the weaker test based on 'objdump'. See mingw*.\n  lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'\n  lt_cv_file_magic_cmd='$OBJDUMP -f'\n  ;;\n\ndarwin* | rhapsody*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nfreebsd* | dragonfly*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    case $host_cpu in\n    i*86 )\n      # Not sure whether the presence of OpenBSD here was a mistake.\n      # Let's accept both of them until this is cleared up.\n      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library'\n      lt_cv_file_magic_cmd=/usr/bin/file\n      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`\n      ;;\n    esac\n  else\n    lt_cv_deplibs_check_method=pass_all\n  fi\n  ;;\n\nhaiku*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nhpux10.20* | hpux11*)\n  lt_cv_file_magic_cmd=/usr/bin/file\n  case $host_cpu in\n  ia64*)\n    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'\n    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so\n    ;;\n  hppa*64*)\n    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\\.[0-9]'\n    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl\n    ;;\n  *)\n    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\\.[0-9]) shared library'\n    lt_cv_file_magic_test_file=/usr/lib/libc.sl\n    ;;\n  esac\n  ;;\n\ninterix[3-9]*)\n  # PIC code is broken on Interix 3.x, that's why |\\.a not |_pic\\.a here\n  lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so|\\.a)$'\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $LD in\n  *-32|*\"-32 \") libmagic=32-bit;;\n  *-n32|*\"-n32 \") libmagic=N32;;\n  *-64|*\"-64 \") libmagic=64-bit;;\n  *) libmagic=never-match;;\n  esac\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\n# This must be glibc/ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nnetbsd*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so|_pic\\.a)$'\n  fi\n  ;;\n\nnewos6*)\n  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)'\n  lt_cv_file_magic_cmd=/usr/bin/file\n  lt_cv_file_magic_test_file=/usr/lib/libnls.so\n  ;;\n\n*nto* | *qnx*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nopenbsd* | bitrig*)\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|\\.so|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|_pic\\.a)$'\n  fi\n  ;;\n\nosf3* | osf4* | osf5*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nrdos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsolaris*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv4 | sysv4.3*)\n  case $host_vendor in\n  motorola)\n    lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]'\n    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`\n    ;;\n  ncr)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  sequent)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )'\n    ;;\n  sni)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method=\"file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib\"\n    lt_cv_file_magic_test_file=/lib/libc.so\n    ;;\n  siemens)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  pc)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  esac\n  ;;\n\ntpf*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nos2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nesac\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method\" >&5\n$as_echo \"$lt_cv_deplibs_check_method\" >&6; }\n\nfile_magic_glob=\nwant_nocaseglob=no\nif test \"$build\" = \"$host\"; then\n  case $host_os in\n  mingw* | pw32*)\n    if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then\n      want_nocaseglob=yes\n    else\n      file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e \"s/\\(..\\)/s\\/[\\1]\\/[\\1]\\/g;/g\"`\n    fi\n    ;;\n  esac\nfi\n\nfile_magic_cmd=$lt_cv_file_magic_cmd\ndeplibs_check_method=$lt_cv_deplibs_check_method\ntest -z \"$deplibs_check_method\" && deplibs_check_method=unknown\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}dlltool\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DLLTOOL\"; then\n  ac_cv_prog_DLLTOOL=\"$DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DLLTOOL=\"${ac_tool_prefix}dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDLLTOOL=$ac_cv_prog_DLLTOOL\nif test -n \"$DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DLLTOOL\" >&5\n$as_echo \"$DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_DLLTOOL\"; then\n  ac_ct_DLLTOOL=$DLLTOOL\n  # Extract the first word of \"dlltool\", so it can be a program name with args.\nset dummy dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DLLTOOL\"; then\n  ac_cv_prog_ac_ct_DLLTOOL=\"$ac_ct_DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DLLTOOL=\"dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL\nif test -n \"$ac_ct_DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL\" >&5\n$as_echo \"$ac_ct_DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_DLLTOOL\" = x; then\n    DLLTOOL=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DLLTOOL=$ac_ct_DLLTOOL\n  fi\nelse\n  DLLTOOL=\"$ac_cv_prog_DLLTOOL\"\nfi\n\ntest -z \"$DLLTOOL\" && DLLTOOL=dlltool\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries\" >&5\n$as_echo_n \"checking how to associate runtime and link libraries... \" >&6; }\nif ${lt_cv_sharedlib_from_linklib_cmd+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_sharedlib_from_linklib_cmd='unknown'\n\ncase $host_os in\ncygwin* | mingw* | pw32* | cegcc*)\n  # two different shell functions defined in ltmain.sh;\n  # decide which one to use based on capabilities of $DLLTOOL\n  case `$DLLTOOL --help 2>&1` in\n  *--identify-strict*)\n    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib\n    ;;\n  *)\n    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback\n    ;;\n  esac\n  ;;\n*)\n  # fallback: assume linklib IS sharedlib\n  lt_cv_sharedlib_from_linklib_cmd=$ECHO\n  ;;\nesac\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd\" >&5\n$as_echo \"$lt_cv_sharedlib_from_linklib_cmd\" >&6; }\nsharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd\ntest -z \"$sharedlib_from_linklib_cmd\" && sharedlib_from_linklib_cmd=$ECHO\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  for ac_prog in ar\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_AR+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$AR\"; then\n  ac_cv_prog_AR=\"$AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_AR=\"$ac_tool_prefix$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nAR=$ac_cv_prog_AR\nif test -n \"$AR\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $AR\" >&5\n$as_echo \"$AR\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n    test -n \"$AR\" && break\n  done\nfi\nif test -z \"$AR\"; then\n  ac_ct_AR=$AR\n  for ac_prog in ar\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_AR+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_AR\"; then\n  ac_cv_prog_ac_ct_AR=\"$ac_ct_AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_AR=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_AR=$ac_cv_prog_ac_ct_AR\nif test -n \"$ac_ct_AR\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR\" >&5\n$as_echo \"$ac_ct_AR\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_AR\" && break\ndone\n\n  if test \"x$ac_ct_AR\" = x; then\n    AR=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    AR=$ac_ct_AR\n  fi\nfi\n\n: ${AR=ar}\n: ${AR_FLAGS=cru}\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support\" >&5\n$as_echo_n \"checking for archiver @FILE support... \" >&6; }\nif ${lt_cv_ar_at_file+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ar_at_file=no\n   cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  echo conftest.$ac_objext > conftest.lst\n      lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5'\n      { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$lt_ar_try\\\"\"; } >&5\n  (eval $lt_ar_try) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n      if test 0 -eq \"$ac_status\"; then\n\t# Ensure the archiver fails upon bogus file names.\n\trm -f conftest.$ac_objext libconftest.a\n\t{ { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$lt_ar_try\\\"\"; } >&5\n  (eval $lt_ar_try) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n\tif test 0 -ne \"$ac_status\"; then\n          lt_cv_ar_at_file=@\n        fi\n      fi\n      rm -f conftest.* libconftest.a\n\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file\" >&5\n$as_echo \"$lt_cv_ar_at_file\" >&6; }\n\nif test no = \"$lt_cv_ar_at_file\"; then\n  archiver_list_spec=\nelse\n  archiver_list_spec=$lt_cv_ar_at_file\nfi\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}strip\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}strip; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_STRIP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$STRIP\"; then\n  ac_cv_prog_STRIP=\"$STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_STRIP=\"${ac_tool_prefix}strip\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nSTRIP=$ac_cv_prog_STRIP\nif test -n \"$STRIP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $STRIP\" >&5\n$as_echo \"$STRIP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_STRIP\"; then\n  ac_ct_STRIP=$STRIP\n  # Extract the first word of \"strip\", so it can be a program name with args.\nset dummy strip; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_STRIP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_STRIP\"; then\n  ac_cv_prog_ac_ct_STRIP=\"$ac_ct_STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_STRIP=\"strip\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP\nif test -n \"$ac_ct_STRIP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP\" >&5\n$as_echo \"$ac_ct_STRIP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_STRIP\" = x; then\n    STRIP=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    STRIP=$ac_ct_STRIP\n  fi\nelse\n  STRIP=\"$ac_cv_prog_STRIP\"\nfi\n\ntest -z \"$STRIP\" && STRIP=:\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}ranlib\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}ranlib; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_RANLIB+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$RANLIB\"; then\n  ac_cv_prog_RANLIB=\"$RANLIB\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_RANLIB=\"${ac_tool_prefix}ranlib\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nRANLIB=$ac_cv_prog_RANLIB\nif test -n \"$RANLIB\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $RANLIB\" >&5\n$as_echo \"$RANLIB\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_RANLIB\"; then\n  ac_ct_RANLIB=$RANLIB\n  # Extract the first word of \"ranlib\", so it can be a program name with args.\nset dummy ranlib; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_RANLIB+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_RANLIB\"; then\n  ac_cv_prog_ac_ct_RANLIB=\"$ac_ct_RANLIB\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_RANLIB=\"ranlib\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB\nif test -n \"$ac_ct_RANLIB\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB\" >&5\n$as_echo \"$ac_ct_RANLIB\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_RANLIB\" = x; then\n    RANLIB=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    RANLIB=$ac_ct_RANLIB\n  fi\nelse\n  RANLIB=\"$ac_cv_prog_RANLIB\"\nfi\n\ntest -z \"$RANLIB\" && RANLIB=:\n\n\n\n\n\n\n# Determine commands to create old-style static archives.\nold_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'\nold_postinstall_cmds='chmod 644 $oldlib'\nold_postuninstall_cmds=\n\nif test -n \"$RANLIB\"; then\n  case $host_os in\n  bitrig* | openbsd*)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB -t \\$tool_oldlib\"\n    ;;\n  *)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB \\$tool_oldlib\"\n    ;;\n  esac\n  old_archive_cmds=\"$old_archive_cmds~\\$RANLIB \\$tool_oldlib\"\nfi\n\ncase $host_os in\n  darwin*)\n    lock_old_archive_extraction=yes ;;\n  *)\n    lock_old_archive_extraction=no ;;\nesac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nfor ac_prog in gawk mawk nawk awk\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_AWK+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$AWK\"; then\n  ac_cv_prog_AWK=\"$AWK\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_AWK=\"$ac_prog\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nAWK=$ac_cv_prog_AWK\nif test -n \"$AWK\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $AWK\" >&5\n$as_echo \"$AWK\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  test -n \"$AWK\" && break\ndone\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n\n\n# Check for command to grab the raw symbol name followed by C symbol from nm.\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object\" >&5\n$as_echo_n \"checking command to parse $NM output from $compiler object... \" >&6; }\nif ${lt_cv_sys_global_symbol_pipe+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n# These are sane defaults that work on at least a few old systems.\n# [They come from Ultrix.  What could be older than Ultrix?!! ;)]\n\n# Character class describing NM global symbol codes.\nsymcode='[BCDEGRST]'\n\n# Regexp to match symbols that can be accessed directly from C.\nsympat='\\([_A-Za-z][_A-Za-z0-9]*\\)'\n\n# Define system-specific variables.\ncase $host_os in\naix*)\n  symcode='[BCDT]'\n  ;;\ncygwin* | mingw* | pw32* | cegcc*)\n  symcode='[ABCDGISTW]'\n  ;;\nhpux*)\n  if test ia64 = \"$host_cpu\"; then\n    symcode='[ABCDEGRST]'\n  fi\n  ;;\nirix* | nonstopux*)\n  symcode='[BCDEGRST]'\n  ;;\nosf*)\n  symcode='[BCDEGQRST]'\n  ;;\nsolaris*)\n  symcode='[BDRT]'\n  ;;\nsco3.2v5*)\n  symcode='[DT]'\n  ;;\nsysv4.2uw2*)\n  symcode='[DT]'\n  ;;\nsysv5* | sco5v6* | unixware* | OpenUNIX*)\n  symcode='[ABDT]'\n  ;;\nsysv4)\n  symcode='[DFNSTU]'\n  ;;\nesac\n\n# If we're using GNU nm, then use its standard symbol codes.\ncase `$NM -V 2>&1` in\n*GNU* | *'with BFD'*)\n  symcode='[ABCDGIRSTW]' ;;\nesac\n\nif test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n  # Gets list of data symbols to import.\n  lt_cv_sys_global_symbol_to_import=\"sed -n -e 's/^I .* \\(.*\\)$/\\1/p'\"\n  # Adjust the below global symbol transforms to fixup imported variables.\n  lt_cdecl_hook=\" -e 's/^I .* \\(.*\\)$/extern __declspec(dllimport) char \\1;/p'\"\n  lt_c_name_hook=\" -e 's/^I .* \\(.*\\)$/  {\\\"\\1\\\", (void *) 0},/p'\"\n  lt_c_name_lib_hook=\"\\\n  -e 's/^I .* \\(lib.*\\)$/  {\\\"\\1\\\", (void *) 0},/p'\\\n  -e 's/^I .* \\(.*\\)$/  {\\\"lib\\1\\\", (void *) 0},/p'\"\nelse\n  # Disable hooks by default.\n  lt_cv_sys_global_symbol_to_import=\n  lt_cdecl_hook=\n  lt_c_name_hook=\n  lt_c_name_lib_hook=\nfi\n\n# Transform an extracted symbol line into a proper C declaration.\n# Some systems (esp. on ia64) link data and code symbols differently,\n# so use this general approach.\nlt_cv_sys_global_symbol_to_cdecl=\"sed -n\"\\\n$lt_cdecl_hook\\\n\" -e 's/^T .* \\(.*\\)$/extern int \\1();/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/extern char \\1;/p'\"\n\n# Transform an extracted symbol line into symbol name and symbol address\nlt_cv_sys_global_symbol_to_c_name_address=\"sed -n\"\\\n$lt_c_name_hook\\\n\" -e 's/^: \\(.*\\) .*$/  {\\\"\\1\\\", (void *) 0},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/p'\"\n\n# Transform an extracted symbol line into symbol name with lib prefix and\n# symbol address.\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix=\"sed -n\"\\\n$lt_c_name_lib_hook\\\n\" -e 's/^: \\(.*\\) .*$/  {\\\"\\1\\\", (void *) 0},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(lib.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/p'\"\\\n\" -e 's/^$symcode$symcode* .* \\(.*\\)$/  {\\\"lib\\1\\\", (void *) \\&\\1},/p'\"\n\n# Handle CRLF in mingw tool chain\nopt_cr=\ncase $build_os in\nmingw*)\n  opt_cr=`$ECHO 'x\\{0,1\\}' | tr x '\\015'` # option cr in regexp\n  ;;\nesac\n\n# Try without a prefix underscore, then with it.\nfor ac_symprfx in \"\" \"_\"; do\n\n  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.\n  symxfrm=\"\\\\1 $ac_symprfx\\\\2 \\\\2\"\n\n  # Write the raw and C identifiers.\n  if test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n    # Fake it for dumpbin and say T for any non-static function,\n    # D for any global variable and I for any imported variable.\n    # Also find C++ and __fastcall symbols from MSVC++,\n    # which start with @ or ?.\n    lt_cv_sys_global_symbol_pipe=\"$AWK '\"\\\n\"     {last_section=section; section=\\$ 3};\"\\\n\"     /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};\"\\\n\"     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};\"\\\n\"     /^ *Symbol name *: /{split(\\$ 0,sn,\\\":\\\"); si=substr(sn[2],2)};\"\\\n\"     /^ *Type *: code/{print \\\"T\\\",si,substr(si,length(prfx))};\"\\\n\"     /^ *Type *: data/{print \\\"I\\\",si,substr(si,length(prfx))};\"\\\n\"     \\$ 0!~/External *\\|/{next};\"\\\n\"     / 0+ UNDEF /{next}; / UNDEF \\([^|]\\)*()/{next};\"\\\n\"     {if(hide[section]) next};\"\\\n\"     {f=\\\"D\\\"}; \\$ 0~/\\(\\).*\\|/{f=\\\"T\\\"};\"\\\n\"     {split(\\$ 0,a,/\\||\\r/); split(a[2],s)};\"\\\n\"     s[1]~/^[@?]/{print f,s[1],s[1]; next};\"\\\n\"     s[1]~prfx {split(s[1],t,\\\"@\\\"); print f,t[1],substr(t[1],length(prfx))}\"\\\n\"     ' prfx=^$ac_symprfx\"\n  else\n    lt_cv_sys_global_symbol_pipe=\"sed -n -e 's/^.*[\t ]\\($symcode$symcode*\\)[\t ][\t ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'\"\n  fi\n  lt_cv_sys_global_symbol_pipe=\"$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'\"\n\n  # Check to see that the pipe works correctly.\n  pipe_works=no\n\n  rm -f conftest*\n  cat > conftest.$ac_ext <<_LT_EOF\n#ifdef __cplusplus\nextern \"C\" {\n#endif\nchar nm_test_var;\nvoid nm_test_func(void);\nvoid nm_test_func(void){}\n#ifdef __cplusplus\n}\n#endif\nint main(){nm_test_var='a';nm_test_func();return(0);}\n_LT_EOF\n\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    # Now try to grab the symbols.\n    nlist=conftest.nm\n    if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$NM conftest.$ac_objext \\| \"$lt_cv_sys_global_symbol_pipe\" \\> $nlist\\\"\"; } >&5\n  (eval $NM conftest.$ac_objext \\| \"$lt_cv_sys_global_symbol_pipe\" \\> $nlist) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s \"$nlist\"; then\n      # Try sorting and uniquifying the output.\n      if sort \"$nlist\" | uniq > \"$nlist\"T; then\n\tmv -f \"$nlist\"T \"$nlist\"\n      else\n\trm -f \"$nlist\"T\n      fi\n\n      # Make sure that we snagged all the symbols we need.\n      if $GREP ' nm_test_var$' \"$nlist\" >/dev/null; then\n\tif $GREP ' nm_test_func$' \"$nlist\" >/dev/null; then\n\t  cat <<_LT_EOF > conftest.$ac_ext\n/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */\n#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE\n/* DATA imports from DLLs on WIN32 can't be const, because runtime\n   relocations are performed -- see ld's documentation on pseudo-relocs.  */\n# define LT_DLSYM_CONST\n#elif defined __osf__\n/* This system does not cope well with relocations in const data.  */\n# define LT_DLSYM_CONST\n#else\n# define LT_DLSYM_CONST const\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n_LT_EOF\n\t  # Now generate the symbol file.\n\t  eval \"$lt_cv_sys_global_symbol_to_cdecl\"' < \"$nlist\" | $GREP -v main >> conftest.$ac_ext'\n\n\t  cat <<_LT_EOF >> conftest.$ac_ext\n\n/* The mapping between symbol names and symbols.  */\nLT_DLSYM_CONST struct {\n  const char *name;\n  void       *address;\n}\nlt__PROGRAM__LTX_preloaded_symbols[] =\n{\n  { \"@PROGRAM@\", (void *) 0 },\n_LT_EOF\n\t  $SED \"s/^$symcode$symcode* .* \\(.*\\)$/  {\\\"\\1\\\", (void *) \\&\\1},/\" < \"$nlist\" | $GREP -v main >> conftest.$ac_ext\n\t  cat <<\\_LT_EOF >> conftest.$ac_ext\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt__PROGRAM__LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\n_LT_EOF\n\t  # Now try linking the two files.\n\t  mv conftest.$ac_objext conftstm.$ac_objext\n\t  lt_globsym_save_LIBS=$LIBS\n\t  lt_globsym_save_CFLAGS=$CFLAGS\n\t  LIBS=conftstm.$ac_objext\n\t  CFLAGS=\"$CFLAGS$lt_prog_compiler_no_builtin_flag\"\n\t  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_link\\\"\"; } >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s conftest$ac_exeext; then\n\t    pipe_works=yes\n\t  fi\n\t  LIBS=$lt_globsym_save_LIBS\n\t  CFLAGS=$lt_globsym_save_CFLAGS\n\telse\n\t  echo \"cannot find nm_test_func in $nlist\" >&5\n\tfi\n      else\n\techo \"cannot find nm_test_var in $nlist\" >&5\n      fi\n    else\n      echo \"cannot run $lt_cv_sys_global_symbol_pipe\" >&5\n    fi\n  else\n    echo \"$progname: failed program was:\" >&5\n    cat conftest.$ac_ext >&5\n  fi\n  rm -rf conftest* conftst*\n\n  # Do not use the global_symbol_pipe unless it works.\n  if test yes = \"$pipe_works\"; then\n    break\n  else\n    lt_cv_sys_global_symbol_pipe=\n  fi\ndone\n\nfi\n\nif test -z \"$lt_cv_sys_global_symbol_pipe\"; then\n  lt_cv_sys_global_symbol_to_cdecl=\nfi\nif test -z \"$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: failed\" >&5\n$as_echo \"failed\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: ok\" >&5\n$as_echo \"ok\" >&6; }\nfi\n\n# Response file support.\nif test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n  nm_file_list_spec='@'\nelif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then\n  nm_file_list_spec='@'\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for sysroot\" >&5\n$as_echo_n \"checking for sysroot... \" >&6; }\n\n# Check whether --with-sysroot was given.\nif test \"${with_sysroot+set}\" = set; then :\n  withval=$with_sysroot;\nelse\n  with_sysroot=no\nfi\n\n\nlt_sysroot=\ncase $with_sysroot in #(\n yes)\n   if test yes = \"$GCC\"; then\n     lt_sysroot=`$CC --print-sysroot 2>/dev/null`\n   fi\n   ;; #(\n /*)\n   lt_sysroot=`echo \"$with_sysroot\" | sed -e \"$sed_quote_subst\"`\n   ;; #(\n no|'')\n   ;; #(\n *)\n   { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $with_sysroot\" >&5\n$as_echo \"$with_sysroot\" >&6; }\n   as_fn_error $? \"The sysroot must be an absolute path.\" \"$LINENO\" 5\n   ;;\nesac\n\n { $as_echo \"$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}\" >&5\n$as_echo \"${lt_sysroot:-no}\" >&6; }\n\n\n\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for a working dd\" >&5\n$as_echo_n \"checking for a working dd... \" >&6; }\nif ${ac_cv_path_lt_DD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  printf 0123456789abcdef0123456789abcdef >conftest.i\ncat conftest.i conftest.i >conftest2.i\n: ${lt_DD:=$DD}\nif test -z \"$lt_DD\"; then\n  ac_path_lt_DD_found=false\n  # Loop through the user's path and test for each of PROGNAME-LIST\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_prog in dd; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      ac_path_lt_DD=\"$as_dir/$ac_prog$ac_exec_ext\"\n      as_fn_executable_p \"$ac_path_lt_DD\" || continue\nif \"$ac_path_lt_DD\" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then\n  cmp -s conftest.i conftest.out \\\n  && ac_cv_path_lt_DD=\"$ac_path_lt_DD\" ac_path_lt_DD_found=:\nfi\n      $ac_path_lt_DD_found && break 3\n    done\n  done\n  done\nIFS=$as_save_IFS\n  if test -z \"$ac_cv_path_lt_DD\"; then\n    :\n  fi\nelse\n  ac_cv_path_lt_DD=$lt_DD\nfi\n\nrm -f conftest.i conftest2.i conftest.out\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD\" >&5\n$as_echo \"$ac_cv_path_lt_DD\" >&6; }\n\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes\" >&5\n$as_echo_n \"checking how to truncate binary pipes... \" >&6; }\nif ${lt_cv_truncate_bin+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  printf 0123456789abcdef0123456789abcdef >conftest.i\ncat conftest.i conftest.i >conftest2.i\nlt_cv_truncate_bin=\nif \"$ac_cv_path_lt_DD\" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then\n  cmp -s conftest.i conftest.out \\\n  && lt_cv_truncate_bin=\"$ac_cv_path_lt_DD bs=4096 count=1\"\nfi\nrm -f conftest.i conftest2.i conftest.out\ntest -z \"$lt_cv_truncate_bin\" && lt_cv_truncate_bin=\"$SED -e 4q\"\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin\" >&5\n$as_echo \"$lt_cv_truncate_bin\" >&6; }\n\n\n\n\n\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n# Check whether --enable-libtool-lock was given.\nif test \"${enable_libtool_lock+set}\" = set; then :\n  enableval=$enable_libtool_lock;\nfi\n\ntest no = \"$enable_libtool_lock\" || enable_libtool_lock=yes\n\n# Some flags need to be propagated to the compiler or linker for good\n# libtool support.\ncase $host in\nia64-*-hpux*)\n  # Find out what ABI is being produced by ac_compile, and set mode\n  # options accordingly.\n  echo 'int i;' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    case `/usr/bin/file conftest.$ac_objext` in\n      *ELF-32*)\n\tHPUX_IA64_MODE=32\n\t;;\n      *ELF-64*)\n\tHPUX_IA64_MODE=64\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n*-*-irix6*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo '#line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    if test yes = \"$lt_cv_prog_gnu_ld\"; then\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -melf32bsmip\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -melf32bmipn32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -melf64bmip\"\n\t;;\n      esac\n    else\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -32\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -n32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -64\"\n\t  ;;\n      esac\n    fi\n  fi\n  rm -rf conftest*\n  ;;\n\nmips64*-*linux*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo '#line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    emul=elf\n    case `/usr/bin/file conftest.$ac_objext` in\n      *32-bit*)\n\temul=\"${emul}32\"\n\t;;\n      *64-bit*)\n\temul=\"${emul}64\"\n\t;;\n    esac\n    case `/usr/bin/file conftest.$ac_objext` in\n      *MSB*)\n\temul=\"${emul}btsmip\"\n\t;;\n      *LSB*)\n\temul=\"${emul}ltsmip\"\n\t;;\n    esac\n    case `/usr/bin/file conftest.$ac_objext` in\n      *N32*)\n\temul=\"${emul}n32\"\n\t;;\n    esac\n    LD=\"${LD-ld} -m $emul\"\n  fi\n  rm -rf conftest*\n  ;;\n\nx86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \\\ns390*-*linux*|s390*-*tpf*|sparc*-*linux*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.  Note that the listed cases only cover the\n  # situations where additional linker options are needed (such as when\n  # doing 32-bit compilation for a host where ld defaults to 64-bit, or\n  # vice versa); the common cases where no linker options are needed do\n  # not appear in the list.\n  echo 'int i;' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    case `/usr/bin/file conftest.o` in\n      *32-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_i386_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    case `/usr/bin/file conftest.o` in\n\t      *x86-64*)\n\t\tLD=\"${LD-ld} -m elf32_x86_64\"\n\t\t;;\n\t      *)\n\t\tLD=\"${LD-ld} -m elf_i386\"\n\t\t;;\n\t    esac\n\t    ;;\n\t  powerpc64le-*linux*)\n\t    LD=\"${LD-ld} -m elf32lppclinux\"\n\t    ;;\n\t  powerpc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32ppclinux\"\n\t    ;;\n\t  s390x-*linux*)\n\t    LD=\"${LD-ld} -m elf_s390\"\n\t    ;;\n\t  sparc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32_sparc\"\n\t    ;;\n\tesac\n\t;;\n      *64-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_x86_64_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    LD=\"${LD-ld} -m elf_x86_64\"\n\t    ;;\n\t  powerpcle-*linux*)\n\t    LD=\"${LD-ld} -m elf64lppc\"\n\t    ;;\n\t  powerpc-*linux*)\n\t    LD=\"${LD-ld} -m elf64ppc\"\n\t    ;;\n\t  s390*-*linux*|s390*-*tpf*)\n\t    LD=\"${LD-ld} -m elf64_s390\"\n\t    ;;\n\t  sparc*-*linux*)\n\t    LD=\"${LD-ld} -m elf64_sparc\"\n\t    ;;\n\tesac\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n\n*-*-sco3.2v5*)\n  # On SCO OpenServer 5, we need -belf to get full-featured binaries.\n  SAVE_CFLAGS=$CFLAGS\n  CFLAGS=\"$CFLAGS -belf\"\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf\" >&5\n$as_echo_n \"checking whether the C compiler needs -belf... \" >&6; }\nif ${lt_cv_cc_needs_belf+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n     cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  lt_cv_cc_needs_belf=yes\nelse\n  lt_cv_cc_needs_belf=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n     ac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf\" >&5\n$as_echo \"$lt_cv_cc_needs_belf\" >&6; }\n  if test yes != \"$lt_cv_cc_needs_belf\"; then\n    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf\n    CFLAGS=$SAVE_CFLAGS\n  fi\n  ;;\n*-*solaris*)\n  # Find out what ABI is being produced by ac_compile, and set linker\n  # options accordingly.\n  echo 'int i;' > conftest.$ac_ext\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }; then\n    case `/usr/bin/file conftest.o` in\n    *64-bit*)\n      case $lt_cv_prog_gnu_ld in\n      yes*)\n        case $host in\n        i?86-*-solaris*|x86_64-*-solaris*)\n          LD=\"${LD-ld} -m elf_x86_64\"\n          ;;\n        sparc*-*-solaris*)\n          LD=\"${LD-ld} -m elf64_sparc\"\n          ;;\n        esac\n        # GNU ld 2.21 introduced _sol2 emulations.  Use them if available.\n        if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then\n          LD=${LD-ld}_sol2\n        fi\n        ;;\n      *)\n\tif ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then\n\t  LD=\"${LD-ld} -64\"\n\tfi\n\t;;\n      esac\n      ;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\nesac\n\nneed_locks=$enable_libtool_lock\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}mt\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}mt; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_MANIFEST_TOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$MANIFEST_TOOL\"; then\n  ac_cv_prog_MANIFEST_TOOL=\"$MANIFEST_TOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_MANIFEST_TOOL=\"${ac_tool_prefix}mt\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nMANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL\nif test -n \"$MANIFEST_TOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL\" >&5\n$as_echo \"$MANIFEST_TOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_MANIFEST_TOOL\"; then\n  ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL\n  # Extract the first word of \"mt\", so it can be a program name with args.\nset dummy mt; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_MANIFEST_TOOL\"; then\n  ac_cv_prog_ac_ct_MANIFEST_TOOL=\"$ac_ct_MANIFEST_TOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_MANIFEST_TOOL=\"mt\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL\nif test -n \"$ac_ct_MANIFEST_TOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL\" >&5\n$as_echo \"$ac_ct_MANIFEST_TOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_MANIFEST_TOOL\" = x; then\n    MANIFEST_TOOL=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL\n  fi\nelse\n  MANIFEST_TOOL=\"$ac_cv_prog_MANIFEST_TOOL\"\nfi\n\ntest -z \"$MANIFEST_TOOL\" && MANIFEST_TOOL=mt\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool\" >&5\n$as_echo_n \"checking if $MANIFEST_TOOL is a manifest tool... \" >&6; }\nif ${lt_cv_path_mainfest_tool+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_path_mainfest_tool=no\n  echo \"$as_me:$LINENO: $MANIFEST_TOOL '-?'\" >&5\n  $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out\n  cat conftest.err >&5\n  if $GREP 'Manifest Tool' conftest.out > /dev/null; then\n    lt_cv_path_mainfest_tool=yes\n  fi\n  rm -f conftest*\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool\" >&5\n$as_echo \"$lt_cv_path_mainfest_tool\" >&6; }\nif test yes != \"$lt_cv_path_mainfest_tool\"; then\n  MANIFEST_TOOL=:\nfi\n\n\n\n\n\n\n  case $host_os in\n    rhapsody* | darwin*)\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}dsymutil\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}dsymutil; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DSYMUTIL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DSYMUTIL\"; then\n  ac_cv_prog_DSYMUTIL=\"$DSYMUTIL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DSYMUTIL=\"${ac_tool_prefix}dsymutil\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDSYMUTIL=$ac_cv_prog_DSYMUTIL\nif test -n \"$DSYMUTIL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL\" >&5\n$as_echo \"$DSYMUTIL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_DSYMUTIL\"; then\n  ac_ct_DSYMUTIL=$DSYMUTIL\n  # Extract the first word of \"dsymutil\", so it can be a program name with args.\nset dummy dsymutil; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DSYMUTIL\"; then\n  ac_cv_prog_ac_ct_DSYMUTIL=\"$ac_ct_DSYMUTIL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DSYMUTIL=\"dsymutil\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL\nif test -n \"$ac_ct_DSYMUTIL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL\" >&5\n$as_echo \"$ac_ct_DSYMUTIL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_DSYMUTIL\" = x; then\n    DSYMUTIL=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DSYMUTIL=$ac_ct_DSYMUTIL\n  fi\nelse\n  DSYMUTIL=\"$ac_cv_prog_DSYMUTIL\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}nmedit\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}nmedit; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_NMEDIT+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$NMEDIT\"; then\n  ac_cv_prog_NMEDIT=\"$NMEDIT\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_NMEDIT=\"${ac_tool_prefix}nmedit\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nNMEDIT=$ac_cv_prog_NMEDIT\nif test -n \"$NMEDIT\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $NMEDIT\" >&5\n$as_echo \"$NMEDIT\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_NMEDIT\"; then\n  ac_ct_NMEDIT=$NMEDIT\n  # Extract the first word of \"nmedit\", so it can be a program name with args.\nset dummy nmedit; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_NMEDIT+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_NMEDIT\"; then\n  ac_cv_prog_ac_ct_NMEDIT=\"$ac_ct_NMEDIT\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_NMEDIT=\"nmedit\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT\nif test -n \"$ac_ct_NMEDIT\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT\" >&5\n$as_echo \"$ac_ct_NMEDIT\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_NMEDIT\" = x; then\n    NMEDIT=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    NMEDIT=$ac_ct_NMEDIT\n  fi\nelse\n  NMEDIT=\"$ac_cv_prog_NMEDIT\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}lipo\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}lipo; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_LIPO+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$LIPO\"; then\n  ac_cv_prog_LIPO=\"$LIPO\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_LIPO=\"${ac_tool_prefix}lipo\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nLIPO=$ac_cv_prog_LIPO\nif test -n \"$LIPO\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $LIPO\" >&5\n$as_echo \"$LIPO\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_LIPO\"; then\n  ac_ct_LIPO=$LIPO\n  # Extract the first word of \"lipo\", so it can be a program name with args.\nset dummy lipo; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_LIPO+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_LIPO\"; then\n  ac_cv_prog_ac_ct_LIPO=\"$ac_ct_LIPO\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_LIPO=\"lipo\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO\nif test -n \"$ac_ct_LIPO\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO\" >&5\n$as_echo \"$ac_ct_LIPO\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_LIPO\" = x; then\n    LIPO=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    LIPO=$ac_ct_LIPO\n  fi\nelse\n  LIPO=\"$ac_cv_prog_LIPO\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}otool\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}otool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OTOOL\"; then\n  ac_cv_prog_OTOOL=\"$OTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OTOOL=\"${ac_tool_prefix}otool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOTOOL=$ac_cv_prog_OTOOL\nif test -n \"$OTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OTOOL\" >&5\n$as_echo \"$OTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OTOOL\"; then\n  ac_ct_OTOOL=$OTOOL\n  # Extract the first word of \"otool\", so it can be a program name with args.\nset dummy otool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OTOOL\"; then\n  ac_cv_prog_ac_ct_OTOOL=\"$ac_ct_OTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OTOOL=\"otool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL\nif test -n \"$ac_ct_OTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL\" >&5\n$as_echo \"$ac_ct_OTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OTOOL\" = x; then\n    OTOOL=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OTOOL=$ac_ct_OTOOL\n  fi\nelse\n  OTOOL=\"$ac_cv_prog_OTOOL\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}otool64\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}otool64; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OTOOL64+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OTOOL64\"; then\n  ac_cv_prog_OTOOL64=\"$OTOOL64\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OTOOL64=\"${ac_tool_prefix}otool64\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOTOOL64=$ac_cv_prog_OTOOL64\nif test -n \"$OTOOL64\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OTOOL64\" >&5\n$as_echo \"$OTOOL64\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OTOOL64\"; then\n  ac_ct_OTOOL64=$OTOOL64\n  # Extract the first word of \"otool64\", so it can be a program name with args.\nset dummy otool64; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OTOOL64+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OTOOL64\"; then\n  ac_cv_prog_ac_ct_OTOOL64=\"$ac_ct_OTOOL64\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OTOOL64=\"otool64\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64\nif test -n \"$ac_ct_OTOOL64\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64\" >&5\n$as_echo \"$ac_ct_OTOOL64\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OTOOL64\" = x; then\n    OTOOL64=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OTOOL64=$ac_ct_OTOOL64\n  fi\nelse\n  OTOOL64=\"$ac_cv_prog_OTOOL64\"\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag\" >&5\n$as_echo_n \"checking for -single_module linker flag... \" >&6; }\nif ${lt_cv_apple_cc_single_mod+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_apple_cc_single_mod=no\n      if test -z \"$LT_MULTI_MODULE\"; then\n\t# By default we will add the -single_module flag. You can override\n\t# by either setting the environment variable LT_MULTI_MODULE\n\t# non-empty at configure time, or by adding -multi_module to the\n\t# link flags.\n\trm -rf libconftest.dylib*\n\techo \"int foo(void){return 1;}\" > conftest.c\n\techo \"$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n-dynamiclib -Wl,-single_module conftest.c\" >&5\n\t$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n\t  -dynamiclib -Wl,-single_module conftest.c 2>conftest.err\n        _lt_result=$?\n\t# If there is a non-empty error log, and \"single_module\"\n\t# appears in it, assume the flag caused a linker warning\n        if test -s conftest.err && $GREP single_module conftest.err; then\n\t  cat conftest.err >&5\n\t# Otherwise, if the output was created with a 0 exit code from\n\t# the compiler, it worked.\n\telif test -f libconftest.dylib && test 0 = \"$_lt_result\"; then\n\t  lt_cv_apple_cc_single_mod=yes\n\telse\n\t  cat conftest.err >&5\n\tfi\n\trm -rf libconftest.dylib*\n\trm -f conftest.*\n      fi\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod\" >&5\n$as_echo \"$lt_cv_apple_cc_single_mod\" >&6; }\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag\" >&5\n$as_echo_n \"checking for -exported_symbols_list linker flag... \" >&6; }\nif ${lt_cv_ld_exported_symbols_list+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ld_exported_symbols_list=no\n      save_LDFLAGS=$LDFLAGS\n      echo \"_main\" > conftest.sym\n      LDFLAGS=\"$LDFLAGS -Wl,-exported_symbols_list,conftest.sym\"\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  lt_cv_ld_exported_symbols_list=yes\nelse\n  lt_cv_ld_exported_symbols_list=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n\tLDFLAGS=$save_LDFLAGS\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list\" >&5\n$as_echo \"$lt_cv_ld_exported_symbols_list\" >&6; }\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag\" >&5\n$as_echo_n \"checking for -force_load linker flag... \" >&6; }\nif ${lt_cv_ld_force_load+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_ld_force_load=no\n      cat > conftest.c << _LT_EOF\nint forced_loaded() { return 2;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS -c -o conftest.o conftest.c\" >&5\n      $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5\n      echo \"$AR cru libconftest.a conftest.o\" >&5\n      $AR cru libconftest.a conftest.o 2>&5\n      echo \"$RANLIB libconftest.a\" >&5\n      $RANLIB libconftest.a 2>&5\n      cat > conftest.c << _LT_EOF\nint main() { return 0;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a\" >&5\n      $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err\n      _lt_result=$?\n      if test -s conftest.err && $GREP force_load conftest.err; then\n\tcat conftest.err >&5\n      elif test -f conftest && test 0 = \"$_lt_result\" && $GREP forced_load conftest >/dev/null 2>&1; then\n\tlt_cv_ld_force_load=yes\n      else\n\tcat conftest.err >&5\n      fi\n        rm -f conftest.err libconftest.a conftest conftest.c\n        rm -rf conftest.dSYM\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load\" >&5\n$as_echo \"$lt_cv_ld_force_load\" >&6; }\n    case $host_os in\n    rhapsody* | darwin1.[012])\n      _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;;\n    darwin1.*)\n      _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;\n    darwin*) # darwin 5.x on\n      # if running on 10.5 or later, the deployment target defaults\n      # to the OS version, if on x86, and 10.4, the deployment\n      # target defaults to 10.4. Don't you love it?\n      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in\n\t10.0,*86*-darwin8*|10.0,*-darwin[91]*)\n\t  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;\n\t10.[012][,.]*)\n\t  _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;\n\t10.*)\n\t  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;\n      esac\n    ;;\n  esac\n    if test yes = \"$lt_cv_apple_cc_single_mod\"; then\n      _lt_dar_single_mod='$single_module'\n    fi\n    if test yes = \"$lt_cv_ld_exported_symbols_list\"; then\n      _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'\n    else\n      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib'\n    fi\n    if test : != \"$DSYMUTIL\" && test no = \"$lt_cv_ld_force_load\"; then\n      _lt_dsymutil='~$DSYMUTIL $lib || :'\n    else\n      _lt_dsymutil=\n    fi\n    ;;\n  esac\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\nfor ac_header in dlfcn.h\ndo :\n  ac_fn_c_check_header_compile \"$LINENO\" \"dlfcn.h\" \"ac_cv_header_dlfcn_h\" \"$ac_includes_default\n\"\nif test \"x$ac_cv_header_dlfcn_h\" = xyes; then :\n  cat >>confdefs.h <<_ACEOF\n#define HAVE_DLFCN_H 1\n_ACEOF\n\nfi\n\ndone\n\n\n\n\n\n# Set options\nenable_win32_dll=yes\n\ncase $host in\n*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}as\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}as; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_AS+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$AS\"; then\n  ac_cv_prog_AS=\"$AS\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_AS=\"${ac_tool_prefix}as\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nAS=$ac_cv_prog_AS\nif test -n \"$AS\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $AS\" >&5\n$as_echo \"$AS\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_AS\"; then\n  ac_ct_AS=$AS\n  # Extract the first word of \"as\", so it can be a program name with args.\nset dummy as; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_AS+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_AS\"; then\n  ac_cv_prog_ac_ct_AS=\"$ac_ct_AS\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_AS=\"as\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_AS=$ac_cv_prog_ac_ct_AS\nif test -n \"$ac_ct_AS\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS\" >&5\n$as_echo \"$ac_ct_AS\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_AS\" = x; then\n    AS=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    AS=$ac_ct_AS\n  fi\nelse\n  AS=\"$ac_cv_prog_AS\"\nfi\n\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}dlltool\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$DLLTOOL\"; then\n  ac_cv_prog_DLLTOOL=\"$DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_DLLTOOL=\"${ac_tool_prefix}dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nDLLTOOL=$ac_cv_prog_DLLTOOL\nif test -n \"$DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $DLLTOOL\" >&5\n$as_echo \"$DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_DLLTOOL\"; then\n  ac_ct_DLLTOOL=$DLLTOOL\n  # Extract the first word of \"dlltool\", so it can be a program name with args.\nset dummy dlltool; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_DLLTOOL\"; then\n  ac_cv_prog_ac_ct_DLLTOOL=\"$ac_ct_DLLTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_DLLTOOL=\"dlltool\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL\nif test -n \"$ac_ct_DLLTOOL\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL\" >&5\n$as_echo \"$ac_ct_DLLTOOL\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_DLLTOOL\" = x; then\n    DLLTOOL=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DLLTOOL=$ac_ct_DLLTOOL\n  fi\nelse\n  DLLTOOL=\"$ac_cv_prog_DLLTOOL\"\nfi\n\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}objdump\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$OBJDUMP\"; then\n  ac_cv_prog_OBJDUMP=\"$OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_OBJDUMP=\"${ac_tool_prefix}objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nOBJDUMP=$ac_cv_prog_OBJDUMP\nif test -n \"$OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $OBJDUMP\" >&5\n$as_echo \"$OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OBJDUMP\"; then\n  ac_ct_OBJDUMP=$OBJDUMP\n  # Extract the first word of \"objdump\", so it can be a program name with args.\nset dummy objdump; ac_word=$2\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $ac_word\" >&5\n$as_echo_n \"checking for $ac_word... \" >&6; }\nif ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  if test -n \"$ac_ct_OBJDUMP\"; then\n  ac_cv_prog_ac_ct_OBJDUMP=\"$ac_ct_OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    for ac_exec_ext in '' $ac_executable_extensions; do\n  if as_fn_executable_p \"$as_dir/$ac_word$ac_exec_ext\"; then\n    ac_cv_prog_ac_ct_OBJDUMP=\"objdump\"\n    $as_echo \"$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\n  done\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP\nif test -n \"$ac_ct_OBJDUMP\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP\" >&5\n$as_echo \"$ac_ct_OBJDUMP\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OBJDUMP\" = x; then\n    OBJDUMP=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet\" >&5\n$as_echo \"$as_me: WARNING: using cross tools not prefixed with host triplet\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OBJDUMP=$ac_ct_OBJDUMP\n  fi\nelse\n  OBJDUMP=\"$ac_cv_prog_OBJDUMP\"\nfi\n\n  ;;\nesac\n\ntest -z \"$AS\" && AS=as\n\n\n\n\n\ntest -z \"$DLLTOOL\" && DLLTOOL=dlltool\n\n\n\n\n\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n\n\n\n\n\n\n\n        enable_dlopen=no\n\n\n\n            # Check whether --enable-shared was given.\nif test \"${enable_shared+set}\" = set; then :\n  enableval=$enable_shared; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_shared=yes ;;\n    no) enable_shared=no ;;\n    *)\n      enable_shared=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_shared=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  enable_shared=yes\nfi\n\n\n\n\n\n\n\n\n\n  # Check whether --enable-static was given.\nif test \"${enable_static+set}\" = set; then :\n  enableval=$enable_static; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_static=yes ;;\n    no) enable_static=no ;;\n    *)\n     enable_static=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_static=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  enable_static=yes\nfi\n\n\n\n\n\n\n\n\n\n\n# Check whether --with-pic was given.\nif test \"${with_pic+set}\" = set; then :\n  withval=$with_pic; lt_p=${PACKAGE-default}\n    case $withval in\n    yes|no) pic_mode=$withval ;;\n    *)\n      pic_mode=default\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for lt_pkg in $withval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$lt_pkg\" = \"X$lt_p\"; then\n\t  pic_mode=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  pic_mode=default\nfi\n\n\n\n\n\n\n\n\n  # Check whether --enable-fast-install was given.\nif test \"${enable_fast_install+set}\" = set; then :\n  enableval=$enable_fast_install; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_fast_install=yes ;;\n    no) enable_fast_install=no ;;\n    *)\n      enable_fast_install=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,\n      for pkg in $enableval; do\n\tIFS=$lt_save_ifs\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_fast_install=yes\n\tfi\n      done\n      IFS=$lt_save_ifs\n      ;;\n    esac\nelse\n  enable_fast_install=yes\nfi\n\n\n\n\n\n\n\n\n  shared_archive_member_spec=\ncase $host,$enable_shared in\npower*-*-aix[5-9]*,yes)\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide\" >&5\n$as_echo_n \"checking which variant of shared library versioning to provide... \" >&6; }\n\n# Check whether --with-aix-soname was given.\nif test \"${with_aix_soname+set}\" = set; then :\n  withval=$with_aix_soname; case $withval in\n    aix|svr4|both)\n      ;;\n    *)\n      as_fn_error $? \"Unknown argument to --with-aix-soname\" \"$LINENO\" 5\n      ;;\n    esac\n    lt_cv_with_aix_soname=$with_aix_soname\nelse\n  if ${lt_cv_with_aix_soname+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_with_aix_soname=aix\nfi\n\n    with_aix_soname=$lt_cv_with_aix_soname\nfi\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $with_aix_soname\" >&5\n$as_echo \"$with_aix_soname\" >&6; }\n  if test aix != \"$with_aix_soname\"; then\n    # For the AIX way of multilib, we name the shared archive member\n    # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o',\n    # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File.\n    # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag,\n    # the AIX toolchain works better with OBJECT_MODE set (default 32).\n    if test 64 = \"${OBJECT_MODE-32}\"; then\n      shared_archive_member_spec=shr_64\n    else\n      shared_archive_member_spec=shr\n    fi\n  fi\n  ;;\n*)\n  with_aix_soname=aix\n  ;;\nesac\n\n\n\n\n\n\n\n\n\n\n# This can be used to rebuild libtool when needed\nLIBTOOL_DEPS=$ltmain\n\n# Always use our own libtool.\nLIBTOOL=\"${CONFIG_SHELL-$SHELL} \"'$(top_builddir)/libtool'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ntest -z \"$LN_S\" && LN_S=\"ln -s\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nif test -n \"${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for objdir\" >&5\n$as_echo_n \"checking for objdir... \" >&6; }\nif ${lt_cv_objdir+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  rm -f .libs 2>/dev/null\nmkdir .libs 2>/dev/null\nif test -d .libs; then\n  lt_cv_objdir=.libs\nelse\n  # MS-DOS does not allow filenames that begin with a dot.\n  lt_cv_objdir=_libs\nfi\nrmdir .libs 2>/dev/null\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir\" >&5\n$as_echo \"$lt_cv_objdir\" >&6; }\nobjdir=$lt_cv_objdir\n\n\n\n\n\ncat >>confdefs.h <<_ACEOF\n#define LT_OBJDIR \"$lt_cv_objdir/\"\n_ACEOF\n\n\n\n\ncase $host_os in\naix3*)\n  # AIX sometimes has problems with the GCC collect2 program.  For some\n  # reason, if we set the COLLECT_NAMES environment variable, the problems\n  # vanish in a puff of smoke.\n  if test set != \"${COLLECT_NAMES+set}\"; then\n    COLLECT_NAMES=\n    export COLLECT_NAMES\n  fi\n  ;;\nesac\n\n# Global variables:\nofile=libtool\ncan_build_shared=yes\n\n# All known linkers require a '.a' archive for static linking (except MSVC,\n# which needs '.lib').\nlibext=a\n\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n\nold_CC=$CC\nold_CFLAGS=$CFLAGS\n\n# Set sane defaults for various variables\ntest -z \"$CC\" && CC=cc\ntest -z \"$LTCC\" && LTCC=$CC\ntest -z \"$LTCFLAGS\" && LTCFLAGS=$CFLAGS\ntest -z \"$LD\" && LD=ld\ntest -z \"$ac_objext\" && ac_objext=o\n\nfunc_cc_basename $compiler\ncc_basename=$func_cc_basename_result\n\n\n# Only perform the check for file, if the check method requires it\ntest -z \"$MAGIC_CMD\" && MAGIC_CMD=file\ncase $deplibs_check_method in\nfile_magic*)\n  if test \"$file_magic_cmd\" = '$MAGIC_CMD'; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file\" >&5\n$as_echo_n \"checking for ${ac_tool_prefix}file... \" >&6; }\nif ${lt_cv_path_MAGIC_CMD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case $MAGIC_CMD in\n[\\\\/*] |  ?:[\\\\/]*)\n  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.\n  ;;\n*)\n  lt_save_MAGIC_CMD=$MAGIC_CMD\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n  ac_dummy=\"/usr/bin$PATH_SEPARATOR$PATH\"\n  for ac_dir in $ac_dummy; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/${ac_tool_prefix}file\"; then\n      lt_cv_path_MAGIC_CMD=$ac_dir/\"${ac_tool_prefix}file\"\n      if test -n \"$file_magic_test_file\"; then\n\tcase $deplibs_check_method in\n\t\"file_magic \"*)\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"file_magic \\(.*\\)\"`\n\t  MAGIC_CMD=$lt_cv_path_MAGIC_CMD\n\t  if eval $file_magic_cmd \\$file_magic_test_file 2> /dev/null |\n\t    $EGREP \"$file_magic_regex\" > /dev/null; then\n\t    :\n\t  else\n\t    cat <<_LT_EOF 1>&2\n\n*** Warning: the command libtool uses to detect shared libraries,\n*** $file_magic_cmd, produces output that libtool cannot recognize.\n*** The result is that libtool may fail to recognize shared libraries\n*** as such.  This will affect the creation of libtool libraries that\n*** depend on shared libraries, but programs linked with such libtool\n*** libraries will work regardless of this problem.  Nevertheless, you\n*** may want to report the problem to your system manager and/or to\n*** bug-libtool@gnu.org\n\n_LT_EOF\n\t  fi ;;\n\tesac\n      fi\n      break\n    fi\n  done\n  IFS=$lt_save_ifs\n  MAGIC_CMD=$lt_save_MAGIC_CMD\n  ;;\nesac\nfi\n\nMAGIC_CMD=$lt_cv_path_MAGIC_CMD\nif test -n \"$MAGIC_CMD\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD\" >&5\n$as_echo \"$MAGIC_CMD\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n\n\n\nif test -z \"$lt_cv_path_MAGIC_CMD\"; then\n  if test -n \"$ac_tool_prefix\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for file\" >&5\n$as_echo_n \"checking for file... \" >&6; }\nif ${lt_cv_path_MAGIC_CMD+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  case $MAGIC_CMD in\n[\\\\/*] |  ?:[\\\\/]*)\n  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.\n  ;;\n*)\n  lt_save_MAGIC_CMD=$MAGIC_CMD\n  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR\n  ac_dummy=\"/usr/bin$PATH_SEPARATOR$PATH\"\n  for ac_dir in $ac_dummy; do\n    IFS=$lt_save_ifs\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/file\"; then\n      lt_cv_path_MAGIC_CMD=$ac_dir/\"file\"\n      if test -n \"$file_magic_test_file\"; then\n\tcase $deplibs_check_method in\n\t\"file_magic \"*)\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"file_magic \\(.*\\)\"`\n\t  MAGIC_CMD=$lt_cv_path_MAGIC_CMD\n\t  if eval $file_magic_cmd \\$file_magic_test_file 2> /dev/null |\n\t    $EGREP \"$file_magic_regex\" > /dev/null; then\n\t    :\n\t  else\n\t    cat <<_LT_EOF 1>&2\n\n*** Warning: the command libtool uses to detect shared libraries,\n*** $file_magic_cmd, produces output that libtool cannot recognize.\n*** The result is that libtool may fail to recognize shared libraries\n*** as such.  This will affect the creation of libtool libraries that\n*** depend on shared libraries, but programs linked with such libtool\n*** libraries will work regardless of this problem.  Nevertheless, you\n*** may want to report the problem to your system manager and/or to\n*** bug-libtool@gnu.org\n\n_LT_EOF\n\t  fi ;;\n\tesac\n      fi\n      break\n    fi\n  done\n  IFS=$lt_save_ifs\n  MAGIC_CMD=$lt_save_MAGIC_CMD\n  ;;\nesac\nfi\n\nMAGIC_CMD=$lt_cv_path_MAGIC_CMD\nif test -n \"$MAGIC_CMD\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD\" >&5\n$as_echo \"$MAGIC_CMD\" >&6; }\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\nfi\n\n\n  else\n    MAGIC_CMD=:\n  fi\nfi\n\n  fi\n  ;;\nesac\n\n# Use C for the default configuration in the libtool script\n\nlt_save_CC=$CC\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n\n# Source file extension for C test sources.\nac_ext=c\n\n# Object file extension for compiled C test sources.\nobjext=o\nobjext=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"int some_variable = 0;\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='int main(){return(0);}'\n\n\n\n\n\n\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n\n# Save the default compiler, since it gets overwritten when the other\n# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.\ncompiler_DEFAULT=$CC\n\n# save warnings/boilerplate of simple test code\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_compile_test_code\" >conftest.$ac_ext\neval \"$ac_compile\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_compiler_boilerplate=`cat conftest.err`\n$RM conftest*\n\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_link_test_code\" >conftest.$ac_ext\neval \"$ac_link\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_linker_boilerplate=`cat conftest.err`\n$RM -r conftest*\n\n\n## CAVEAT EMPTOR:\n## There is no encapsulation within the following macros, do not change\n## the running order or otherwise move them around unless you know exactly\n## what you are doing...\nif test -n \"$compiler\"; then\n\nlt_prog_compiler_no_builtin_flag=\n\nif test yes = \"$GCC\"; then\n  case $cc_basename in\n  nvcc*)\n    lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;;\n  *)\n    lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;;\n  esac\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions\" >&5\n$as_echo_n \"checking if $compiler supports -fno-rtti -fno-exceptions... \" >&6; }\nif ${lt_cv_prog_compiler_rtti_exceptions+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_rtti_exceptions=no\n   ac_outfile=conftest.$ac_objext\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"-fno-rtti -fno-exceptions\"  ## exclude from sc_useless_quotes_in_assignment\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_rtti_exceptions=yes\n     fi\n   fi\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions\" >&5\n$as_echo \"$lt_cv_prog_compiler_rtti_exceptions\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler_rtti_exceptions\"; then\n    lt_prog_compiler_no_builtin_flag=\"$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions\"\nelse\n    :\nfi\n\nfi\n\n\n\n\n\n\n  lt_prog_compiler_wl=\nlt_prog_compiler_pic=\nlt_prog_compiler_static=\n\n\n  if test yes = \"$GCC\"; then\n    lt_prog_compiler_wl='-Wl,'\n    lt_prog_compiler_static='-static'\n\n    case $host_os in\n      aix*)\n      # All AIX code is PIC.\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\tlt_prog_compiler_static='-Bstatic'\n      fi\n      lt_prog_compiler_pic='-fPIC'\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            lt_prog_compiler_pic='-fPIC'\n        ;;\n      m68k)\n            # FIXME: we need at least 68020 code to build shared libraries, but\n            # adding the '-m68020' flag to GCC prevents building anything better,\n            # like '-m68040'.\n            lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4'\n        ;;\n      esac\n      ;;\n\n    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)\n      # PIC is the default for these OSes.\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      # Although the cygwin gcc ignores -fPIC, still need this for old-style\n      # (--disable-auto-import) libraries\n      lt_prog_compiler_pic='-DDLL_EXPORT'\n      case $host_os in\n      os2*)\n\tlt_prog_compiler_static='$wl-static'\n\t;;\n      esac\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      lt_prog_compiler_pic='-fno-common'\n      ;;\n\n    haiku*)\n      # PIC is the default for Haiku.\n      # The \"-static\" flag exists, but is broken.\n      lt_prog_compiler_static=\n      ;;\n\n    hpux*)\n      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit\n      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag\n      # sets the default TLS model and affects inlining.\n      case $host_cpu in\n      hppa*64*)\n\t# +Z the default\n\t;;\n      *)\n\tlt_prog_compiler_pic='-fPIC'\n\t;;\n      esac\n      ;;\n\n    interix[3-9]*)\n      # Interix 3.x gcc -fpic/-fPIC options generate broken code.\n      # Instead, we relocate shared libraries at runtime.\n      ;;\n\n    msdosdjgpp*)\n      # Just because we use GCC doesn't mean we suddenly get shared libraries\n      # on systems that don't support them.\n      lt_prog_compiler_can_build_shared=no\n      enable_shared=no\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      lt_prog_compiler_pic='-fPIC -shared'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tlt_prog_compiler_pic=-Kconform_pic\n      fi\n      ;;\n\n    *)\n      lt_prog_compiler_pic='-fPIC'\n      ;;\n    esac\n\n    case $cc_basename in\n    nvcc*) # Cuda Compiler Driver 2.2\n      lt_prog_compiler_wl='-Xlinker '\n      if test -n \"$lt_prog_compiler_pic\"; then\n        lt_prog_compiler_pic=\"-Xcompiler $lt_prog_compiler_pic\"\n      fi\n      ;;\n    esac\n  else\n    # PORTME Check for flag to pass linker flags through the system compiler.\n    case $host_os in\n    aix*)\n      lt_prog_compiler_wl='-Wl,'\n      if test ia64 = \"$host_cpu\"; then\n\t# AIX 5 now supports IA64 processor\n\tlt_prog_compiler_static='-Bstatic'\n      else\n\tlt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp'\n      fi\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      lt_prog_compiler_pic='-fno-common'\n      case $cc_basename in\n      nagfor*)\n        # NAG Fortran compiler\n        lt_prog_compiler_wl='-Wl,-Wl,,'\n        lt_prog_compiler_pic='-PIC'\n        lt_prog_compiler_static='-Bstatic'\n        ;;\n      esac\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      lt_prog_compiler_pic='-DDLL_EXPORT'\n      case $host_os in\n      os2*)\n\tlt_prog_compiler_static='$wl-static'\n\t;;\n      esac\n      ;;\n\n    hpux9* | hpux10* | hpux11*)\n      lt_prog_compiler_wl='-Wl,'\n      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but\n      # not for PA HP-UX.\n      case $host_cpu in\n      hppa*64*|ia64*)\n\t# +Z the default\n\t;;\n      *)\n\tlt_prog_compiler_pic='+Z'\n\t;;\n      esac\n      # Is there a better lt_prog_compiler_static that works with the bundled CC?\n      lt_prog_compiler_static='$wl-a ${wl}archive'\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      lt_prog_compiler_wl='-Wl,'\n      # PIC (with -KPIC) is the default.\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n      case $cc_basename in\n      # old Intel for x86_64, which still supported -KPIC.\n      ecc*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-KPIC'\n\tlt_prog_compiler_static='-static'\n        ;;\n      # icc used to be incompatible with GCC.\n      # ICC 10 doesn't accept -KPIC any more.\n      icc* | ifort*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-fPIC'\n\tlt_prog_compiler_static='-static'\n        ;;\n      # Lahey Fortran 8.1.\n      lf95*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='--shared'\n\tlt_prog_compiler_static='--static'\n\t;;\n      nagfor*)\n\t# NAG Fortran compiler\n\tlt_prog_compiler_wl='-Wl,-Wl,,'\n\tlt_prog_compiler_pic='-PIC'\n\tlt_prog_compiler_static='-Bstatic'\n\t;;\n      tcc*)\n\t# Fabrice Bellard et al's Tiny C Compiler\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-fPIC'\n\tlt_prog_compiler_static='-static'\n\t;;\n      pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)\n        # Portland Group compilers (*not* the Pentium gcc compiler,\n\t# which looks to be a dead project)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-fpic'\n\tlt_prog_compiler_static='-Bstatic'\n        ;;\n      ccc*)\n        lt_prog_compiler_wl='-Wl,'\n        # All Alpha code is PIC.\n        lt_prog_compiler_static='-non_shared'\n        ;;\n      xl* | bgxl* | bgf* | mpixl*)\n\t# IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-qpic'\n\tlt_prog_compiler_static='-qstaticlink'\n\t;;\n      *)\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ Ceres\\ Fortran* | *Sun*Fortran*\\ [1-7].* | *Sun*Fortran*\\ 8.[0-3]*)\n\t  # Sun Fortran 8.3 passes all unrecognized flags to the linker\n\t  lt_prog_compiler_pic='-KPIC'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  lt_prog_compiler_wl=''\n\t  ;;\n\t*Sun\\ F* | *Sun*Fortran*)\n\t  lt_prog_compiler_pic='-KPIC'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  lt_prog_compiler_wl='-Qoption ld '\n\t  ;;\n\t*Sun\\ C*)\n\t  # Sun C 5.9\n\t  lt_prog_compiler_pic='-KPIC'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  lt_prog_compiler_wl='-Wl,'\n\t  ;;\n        *Intel*\\ [CF]*Compiler*)\n\t  lt_prog_compiler_wl='-Wl,'\n\t  lt_prog_compiler_pic='-fPIC'\n\t  lt_prog_compiler_static='-static'\n\t  ;;\n\t*Portland\\ Group*)\n\t  lt_prog_compiler_wl='-Wl,'\n\t  lt_prog_compiler_pic='-fpic'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  ;;\n\tesac\n\t;;\n      esac\n      ;;\n\n    newsos6)\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      lt_prog_compiler_pic='-fPIC -shared'\n      ;;\n\n    osf3* | osf4* | osf5*)\n      lt_prog_compiler_wl='-Wl,'\n      # All OSF/1 code is PIC.\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    rdos*)\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    solaris*)\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      case $cc_basename in\n      f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)\n\tlt_prog_compiler_wl='-Qoption ld ';;\n      *)\n\tlt_prog_compiler_wl='-Wl,';;\n      esac\n      ;;\n\n    sunos4*)\n      lt_prog_compiler_wl='-Qoption ld '\n      lt_prog_compiler_pic='-PIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    sysv4 | sysv4.2uw2* | sysv4.3*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tlt_prog_compiler_pic='-Kconform_pic'\n\tlt_prog_compiler_static='-Bstatic'\n      fi\n      ;;\n\n    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    unicos*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_can_build_shared=no\n      ;;\n\n    uts4*)\n      lt_prog_compiler_pic='-pic'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    *)\n      lt_prog_compiler_can_build_shared=no\n      ;;\n    esac\n  fi\n\ncase $host_os in\n  # For platforms that do not support PIC, -DPIC is meaningless:\n  *djgpp*)\n    lt_prog_compiler_pic=\n    ;;\n  *)\n    lt_prog_compiler_pic=\"$lt_prog_compiler_pic -DPIC\"\n    ;;\nesac\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC\" >&5\n$as_echo_n \"checking for $compiler option to produce PIC... \" >&6; }\nif ${lt_cv_prog_compiler_pic+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_pic=$lt_prog_compiler_pic\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic\" >&5\n$as_echo \"$lt_cv_prog_compiler_pic\" >&6; }\nlt_prog_compiler_pic=$lt_cv_prog_compiler_pic\n\n#\n# Check to make sure the PIC flag actually works.\n#\nif test -n \"$lt_prog_compiler_pic\"; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works\" >&5\n$as_echo_n \"checking if $compiler PIC flag $lt_prog_compiler_pic works... \" >&6; }\nif ${lt_cv_prog_compiler_pic_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_pic_works=no\n   ac_outfile=conftest.$ac_objext\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"$lt_prog_compiler_pic -DPIC\"  ## exclude from sc_useless_quotes_in_assignment\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_pic_works=yes\n     fi\n   fi\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works\" >&5\n$as_echo \"$lt_cv_prog_compiler_pic_works\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler_pic_works\"; then\n    case $lt_prog_compiler_pic in\n     \"\" | \" \"*) ;;\n     *) lt_prog_compiler_pic=\" $lt_prog_compiler_pic\" ;;\n     esac\nelse\n    lt_prog_compiler_pic=\n     lt_prog_compiler_can_build_shared=no\nfi\n\nfi\n\n\n\n\n\n\n\n\n\n\n\n#\n# Check to make sure the static flag actually works.\n#\nwl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\\\"$lt_prog_compiler_static\\\"\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works\" >&5\n$as_echo_n \"checking if $compiler static flag $lt_tmp_static_flag works... \" >&6; }\nif ${lt_cv_prog_compiler_static_works+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_static_works=no\n   save_LDFLAGS=$LDFLAGS\n   LDFLAGS=\"$LDFLAGS $lt_tmp_static_flag\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&5\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         lt_cv_prog_compiler_static_works=yes\n       fi\n     else\n       lt_cv_prog_compiler_static_works=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=$save_LDFLAGS\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works\" >&5\n$as_echo \"$lt_cv_prog_compiler_static_works\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler_static_works\"; then\n    :\nelse\n    lt_prog_compiler_static=\nfi\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext\" >&5\n$as_echo_n \"checking if $compiler supports -c -o file.$ac_objext... \" >&6; }\nif ${lt_cv_prog_compiler_c_o+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_c_o=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_c_o=yes\n     fi\n   fi\n   chmod u+w . 2>&5\n   $RM conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o\" >&5\n$as_echo \"$lt_cv_prog_compiler_c_o\" >&6; }\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext\" >&5\n$as_echo_n \"checking if $compiler supports -c -o file.$ac_objext... \" >&6; }\nif ${lt_cv_prog_compiler_c_o+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler_c_o=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_c_o=yes\n     fi\n   fi\n   chmod u+w . 2>&5\n   $RM conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o\" >&5\n$as_echo \"$lt_cv_prog_compiler_c_o\" >&6; }\n\n\n\n\nhard_links=nottested\nif test no = \"$lt_cv_prog_compiler_c_o\" && test no != \"$need_locks\"; then\n  # do not overwrite the value of need_locks provided by the user\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links\" >&5\n$as_echo_n \"checking if we can lock with hard links... \" >&6; }\n  hard_links=yes\n  $RM conftest*\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  touch conftest.a\n  ln conftest.a conftest.b 2>&5 || hard_links=no\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $hard_links\" >&5\n$as_echo \"$hard_links\" >&6; }\n  if test no = \"$hard_links\"; then\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe\" >&5\n$as_echo \"$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe\" >&2;}\n    need_locks=warn\n  fi\nelse\n  need_locks=no\nfi\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries\" >&5\n$as_echo_n \"checking whether the $compiler linker ($LD) supports shared libraries... \" >&6; }\n\n  runpath_var=\n  allow_undefined_flag=\n  always_export_symbols=no\n  archive_cmds=\n  archive_expsym_cmds=\n  compiler_needs_object=no\n  enable_shared_with_static_runtimes=no\n  export_dynamic_flag_spec=\n  export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  hardcode_automatic=no\n  hardcode_direct=no\n  hardcode_direct_absolute=no\n  hardcode_libdir_flag_spec=\n  hardcode_libdir_separator=\n  hardcode_minus_L=no\n  hardcode_shlibpath_var=unsupported\n  inherit_rpath=no\n  link_all_deplibs=unknown\n  module_cmds=\n  module_expsym_cmds=\n  old_archive_from_new_cmds=\n  old_archive_from_expsyms_cmds=\n  thread_safe_flag_spec=\n  whole_archive_flag_spec=\n  # include_expsyms should be a list of space-separated symbols to be *always*\n  # included in the symbol list\n  include_expsyms=\n  # exclude_expsyms can be an extended regexp of symbols to exclude\n  # it will be wrapped by ' (' and ')$', so one must not match beginning or\n  # end of line.  Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc',\n  # as well as any symbol that contains 'd'.\n  exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'\n  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out\n  # platforms (ab)use it in PIC code, but their linkers get confused if\n  # the symbol is explicitly referenced.  Since portable code cannot\n  # rely on this symbol name, it's probably fine to never include it in\n  # preloaded symbol tables.\n  # Exclude shared library initialization/finalization symbols.\n  extract_expsyms_cmds=\n\n  case $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    # FIXME: the MSVC++ port hasn't been tested in a loooong time\n    # When not using gcc, we currently assume that we are using\n    # Microsoft Visual C++.\n    if test yes != \"$GCC\"; then\n      with_gnu_ld=no\n    fi\n    ;;\n  interix*)\n    # we just hope/assume this is gcc and not c89 (= MSVC++)\n    with_gnu_ld=yes\n    ;;\n  openbsd* | bitrig*)\n    with_gnu_ld=no\n    ;;\n  esac\n\n  ld_shlibs=yes\n\n  # On some targets, GNU ld is compatible enough with the native linker\n  # that we're better off using the native interface for both.\n  lt_use_gnu_ld_interface=no\n  if test yes = \"$with_gnu_ld\"; then\n    case $host_os in\n      aix*)\n\t# The AIX port of GNU ld has always aspired to compatibility\n\t# with the native linker.  However, as the warning in the GNU ld\n\t# block says, versions before 2.19.5* couldn't really create working\n\t# shared libraries, regardless of the interface used.\n\tcase `$LD -v 2>&1` in\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.19.5*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.[2-9]*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ [3-9]*) ;;\n\t  *)\n\t    lt_use_gnu_ld_interface=yes\n\t    ;;\n\tesac\n\t;;\n      *)\n\tlt_use_gnu_ld_interface=yes\n\t;;\n    esac\n  fi\n\n  if test yes = \"$lt_use_gnu_ld_interface\"; then\n    # If archive_cmds runs LD, not CC, wlarc should be empty\n    wlarc='$wl'\n\n    # Set some defaults for GNU ld with shared library support. These\n    # are reset later if shared libraries are not supported. Putting them\n    # here allows them to be overridden if necessary.\n    runpath_var=LD_RUN_PATH\n    hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n    export_dynamic_flag_spec='$wl--export-dynamic'\n    # ancient GNU ld didn't support --whole-archive et. al.\n    if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then\n      whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'\n    else\n      whole_archive_flag_spec=\n    fi\n    supports_anon_versioning=no\n    case `$LD -v | $SED -e 's/(^)\\+)\\s\\+//' 2>&1` in\n      *GNU\\ gold*) supports_anon_versioning=yes ;;\n      *\\ [01].* | *\\ 2.[0-9].* | *\\ 2.10.*) ;; # catch versions < 2.11\n      *\\ 2.11.93.0.2\\ *) supports_anon_versioning=yes ;; # RH7.3 ...\n      *\\ 2.11.92.0.12\\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...\n      *\\ 2.11.*) ;; # other 2.11 versions\n      *) supports_anon_versioning=yes ;;\n    esac\n\n    # See if GNU ld supports shared libraries.\n    case $host_os in\n    aix[3-9]*)\n      # On AIX/PPC, the GNU linker is very broken\n      if test ia64 != \"$host_cpu\"; then\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: the GNU linker, at least up to release 2.19, is reported\n*** to be unable to reliably create shared libraries on AIX.\n*** Therefore, libtool is disabling shared libraries support.  If you\n*** really care for shared libraries, you may want to install binutils\n*** 2.20 or above, or modify your PATH so that a non-GNU linker is found.\n*** You will then need to restart the configuration process.\n\n_LT_EOF\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n            archive_expsym_cmds=''\n        ;;\n      m68k)\n            archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO \"#define NAME $libname\" > $output_objdir/a2ixlibrary.data~$ECHO \"#define LIBRARY_ID 1\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define VERSION $major\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define REVISION $revision\" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'\n            hardcode_libdir_flag_spec='-L$libdir'\n            hardcode_minus_L=yes\n        ;;\n      esac\n      ;;\n\n    beos*)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tallow_undefined_flag=unsupported\n\t# Joseph Beckenbach <jrb3@best.com> says some releases of gcc\n\t# support --undefined.  This deserves some investigation.  FIXME\n\tarchive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless,\n      # as there is no search path for DLLs.\n      hardcode_libdir_flag_spec='-L$libdir'\n      export_dynamic_flag_spec='$wl--export-all-symbols'\n      allow_undefined_flag=unsupported\n      always_export_symbols=no\n      enable_shared_with_static_runtimes=yes\n      export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[BCDGRS][ ]/s/.*[ ]\\([^ ]*\\)/\\1 DATA/;s/^.*[ ]__nm__\\([^ ]*\\)[ ][^ ]*/\\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\\'' | sort | uniq > $export_symbols'\n      exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'\n\n      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then\n        archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n\t# If the export-symbols file already is a .def file, use it as\n\t# is; otherwise, prepend EXPORTS...\n\tarchive_expsym_cmds='if   test DEF = \"`$SED -n     -e '\\''s/^[\t ]*//'\\''     -e '\\''/^\\(;.*\\)*$/d'\\''     -e '\\''s/^\\(EXPORTS\\|LIBRARY\\)\\([\t ].*\\)*$/DEF/p'\\''     -e q     $export_symbols`\" ; then\n          cp $export_symbols $output_objdir/$soname.def;\n        else\n          echo EXPORTS > $output_objdir/$soname.def;\n          cat $export_symbols >> $output_objdir/$soname.def;\n        fi~\n        $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    haiku*)\n      archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n      link_all_deplibs=yes\n      ;;\n\n    os2*)\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_minus_L=yes\n      allow_undefined_flag=unsupported\n      shrext_cmds=.dll\n      archive_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\temxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      archive_expsym_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\tprefix_cmds=\"$SED\"~\n\tif test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t  prefix_cmds=\"$prefix_cmds -e 1d\";\n\tfi~\n\tprefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\tcat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n      enable_shared_with_static_runtimes=yes\n      ;;\n\n    interix[3-9]*)\n      hardcode_direct=no\n      hardcode_shlibpath_var=no\n      hardcode_libdir_flag_spec='$wl-rpath,$libdir'\n      export_dynamic_flag_spec='$wl-E'\n      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.\n      # Instead, shared libraries are loaded at an image base (0x10000000 by\n      # default) and relocated if they conflict, which is a slow very memory\n      # consuming and fragmenting process.  To avoid this, we pick a random,\n      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link\n      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.\n      archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n      archive_expsym_cmds='sed \"s|^|_|\" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n      ;;\n\n    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)\n      tmp_diet=no\n      if test linux-dietlibc = \"$host_os\"; then\n\tcase $cc_basename in\n\t  diet\\ *) tmp_diet=yes;;\t# linux-dietlibc with static linking (!diet-dyn)\n\tesac\n      fi\n      if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \\\n\t && test no = \"$tmp_diet\"\n      then\n\ttmp_addflag=' $pic_flag'\n\ttmp_sharedflag='-shared'\n\tcase $cc_basename,$host_cpu in\n        pgcc*)\t\t\t\t# Portland Group C compiler\n\t  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  tmp_addflag=' $pic_flag'\n\t  ;;\n\tpgf77* | pgf90* | pgf95* | pgfortran*)\n\t\t\t\t\t# Portland Group f77 and f90 compilers\n\t  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  tmp_addflag=' $pic_flag -Mnomain' ;;\n\tecc*,ia64* | icc*,ia64*)\t# Intel C compiler on ia64\n\t  tmp_addflag=' -i_dynamic' ;;\n\tefc*,ia64* | ifort*,ia64*)\t# Intel Fortran compiler on ia64\n\t  tmp_addflag=' -i_dynamic -nofor_main' ;;\n\tifc* | ifort*)\t\t\t# Intel Fortran compiler\n\t  tmp_addflag=' -nofor_main' ;;\n\tlf95*)\t\t\t\t# Lahey Fortran 8.1\n\t  whole_archive_flag_spec=\n\t  tmp_sharedflag='--shared' ;;\n        nagfor*)                        # NAGFOR 5.3\n          tmp_sharedflag='-Wl,-shared' ;;\n\txl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)\n\t  tmp_sharedflag='-qmkshrobj'\n\t  tmp_addflag= ;;\n\tnvcc*)\t# Cuda Compiler Driver 2.2\n\t  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  compiler_needs_object=yes\n\t  ;;\n\tesac\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ C*)\t\t\t# Sun C 5.9\n\t  whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\\\"\\\"; do test -z \\\"$conv\\\" || new_convenience=\\\"$new_convenience,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"` $wl--no-whole-archive'\n\t  compiler_needs_object=yes\n\t  tmp_sharedflag='-G' ;;\n\t*Sun\\ F*)\t\t\t# Sun Fortran 8.3\n\t  tmp_sharedflag='-G' ;;\n\tesac\n\tarchive_cmds='$CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\n        if test yes = \"$supports_anon_versioning\"; then\n          archive_expsym_cmds='echo \"{ global:\" > $output_objdir/$libname.ver~\n            cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n            echo \"local: *; };\" >> $output_objdir/$libname.ver~\n            $CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'\n        fi\n\n\tcase $cc_basename in\n\ttcc*)\n\t  export_dynamic_flag_spec='-rdynamic'\n\t  ;;\n\txlf* | bgf* | bgxlf* | mpixlf*)\n\t  # IBM XL Fortran 10.1 on PPC cannot create shared libs itself\n\t  whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive'\n\t  hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n\t  archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'\n\t  if test yes = \"$supports_anon_versioning\"; then\n\t    archive_expsym_cmds='echo \"{ global:\" > $output_objdir/$libname.ver~\n              cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n              echo \"local: *; };\" >> $output_objdir/$libname.ver~\n              $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'\n\t  fi\n\t  ;;\n\tesac\n      else\n        ld_shlibs=no\n      fi\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\tarchive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'\n\twlarc=\n      else\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      fi\n      ;;\n\n    solaris*)\n      if $LD -v 2>&1 | $GREP 'BFD 2\\.8' > /dev/null; then\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: The releases 2.8.* of the GNU linker cannot reliably\n*** create shared libraries on Solaris systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.9.1 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)\n      case `$LD -v 2>&1` in\n        *\\ [01].* | *\\ 2.[0-9].* | *\\ 2.1[0-5].*)\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot\n*** reliably create shared libraries on SCO systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n\t;;\n\t*)\n\t  # For security reasons, it is highly recommended that you always\n\t  # use absolute paths for naming shared libraries, and exclude the\n\t  # DT_RUNPATH tag from executables and libraries.  But doing so\n\t  # requires that you compile everything twice, which is a pain.\n\t  if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t    hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n\t    archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\t    archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n\t  else\n\t    ld_shlibs=no\n\t  fi\n\t;;\n      esac\n      ;;\n\n    sunos4*)\n      archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      wlarc=\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    *)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n    esac\n\n    if test no = \"$ld_shlibs\"; then\n      runpath_var=\n      hardcode_libdir_flag_spec=\n      export_dynamic_flag_spec=\n      whole_archive_flag_spec=\n    fi\n  else\n    # PORTME fill in a description of your system's linker (not GNU ld)\n    case $host_os in\n    aix3*)\n      allow_undefined_flag=unsupported\n      always_export_symbols=yes\n      archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'\n      # Note: this linker hardcodes the directories in LIBPATH if there\n      # are no directories specified by -L.\n      hardcode_minus_L=yes\n      if test yes = \"$GCC\" && test -z \"$lt_prog_compiler_static\"; then\n\t# Neither direct hardcoding nor static linking is supported with a\n\t# broken collect2.\n\thardcode_direct=unsupported\n      fi\n      ;;\n\n    aix[4-9]*)\n      if test ia64 = \"$host_cpu\"; then\n\t# On IA64, the linker does run time linking by default, so we don't\n\t# have to do anything special.\n\taix_use_runtimelinking=no\n\texp_sym_flag='-Bexport'\n\tno_entry_flag=\n      else\n\t# If we're using GNU nm, then we don't want the \"-C\" option.\n\t# -C means demangle to GNU nm, but means don't demangle to AIX nm.\n\t# Without the \"-l\" option, or with the \"-B\" option, AIX nm treats\n\t# weak defined symbols like other global defined symbols, whereas\n\t# GNU nm marks them as \"W\".\n\t# While the 'weak' keyword is ignored in the Export File, we need\n\t# it in the Import File for the 'aix-soname' feature, so we have\n\t# to replace the \"-B\" option with \"-P\" for AIX nm.\n\tif $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then\n\t  export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\")) && (substr(\\$ 3,1,1) != \".\")) { if (\\$ 2 == \"W\") { print \\$ 3 \" weak\" } else { print \\$ 3 } } }'\\'' | sort -u > $export_symbols'\n\telse\n\t  export_symbols_cmds='`func_echo_all $NM | $SED -e '\\''s/B\\([^B]*\\)$/P\\1/'\\''` -PCpgl $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) && (substr(\\$ 1,1,1) != \".\")) { if ((\\$ 2 == \"W\") || (\\$ 2 == \"V\") || (\\$ 2 == \"Z\")) { print \\$ 1 \" weak\" } else { print \\$ 1 } } }'\\'' | sort -u > $export_symbols'\n\tfi\n\taix_use_runtimelinking=no\n\n\t# Test if we are trying to use run time linking or normal\n\t# AIX style linking. If -brtl is somewhere in LDFLAGS, we\n\t# have runtime linking enabled, and use it for executables.\n\t# For shared libraries, we enable/disable runtime linking\n\t# depending on the kind of the shared library created -\n\t# when \"with_aix_soname,aix_use_runtimelinking\" is:\n\t# \"aix,no\"   lib.a(lib.so.V) shared, rtl:no,  for executables\n\t# \"aix,yes\"  lib.so          shared, rtl:yes, for executables\n\t#            lib.a           static archive\n\t# \"both,no\"  lib.so.V(shr.o) shared, rtl:yes\n\t#            lib.a(lib.so.V) shared, rtl:no,  for executables\n\t# \"both,yes\" lib.so.V(shr.o) shared, rtl:yes, for executables\n\t#            lib.a(lib.so.V) shared, rtl:no\n\t# \"svr4,*\"   lib.so.V(shr.o) shared, rtl:yes, for executables\n\t#            lib.a           static archive\n\tcase $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)\n\t  for ld_flag in $LDFLAGS; do\n\t  if (test x-brtl = \"x$ld_flag\" || test x-Wl,-brtl = \"x$ld_flag\"); then\n\t    aix_use_runtimelinking=yes\n\t    break\n\t  fi\n\t  done\n\t  if test svr4,no = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t    # With aix-soname=svr4, we create the lib.so.V shared archives only,\n\t    # so we don't have lib.a shared libs to link our executables.\n\t    # We have to force runtime linking in this case.\n\t    aix_use_runtimelinking=yes\n\t    LDFLAGS=\"$LDFLAGS -Wl,-brtl\"\n\t  fi\n\t  ;;\n\tesac\n\n\texp_sym_flag='-bexport'\n\tno_entry_flag='-bnoentry'\n      fi\n\n      # When large executables or shared objects are built, AIX ld can\n      # have problems creating the table of contents.  If linking a library\n      # or program results in \"error TOC overflow\" add -mminimal-toc to\n      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not\n      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.\n\n      archive_cmds=''\n      hardcode_direct=yes\n      hardcode_direct_absolute=yes\n      hardcode_libdir_separator=':'\n      link_all_deplibs=yes\n      file_list_spec='$wl-f,'\n      case $with_aix_soname,$aix_use_runtimelinking in\n      aix,*) ;; # traditional, no import file\n      svr4,* | *,yes) # use import file\n\t# The Import File defines what to hardcode.\n\thardcode_direct=no\n\thardcode_direct_absolute=no\n\t;;\n      esac\n\n      if test yes = \"$GCC\"; then\n\tcase $host_os in aix4.[012]|aix4.[012].*)\n\t# We only want to do this on AIX 4.2 and lower, the check\n\t# below for broken collect2 doesn't work under 4.3+\n\t  collect2name=`$CC -print-prog-name=collect2`\n\t  if test -f \"$collect2name\" &&\n\t   strings \"$collect2name\" | $GREP resolve_lib_name >/dev/null\n\t  then\n\t  # We have reworked collect2\n\t  :\n\t  else\n\t  # We have old collect2\n\t  hardcode_direct=unsupported\n\t  # It fails to find uninstalled libraries when the uninstalled\n\t  # path is not listed in the libpath.  Setting hardcode_minus_L\n\t  # to unsupported forces relinking\n\t  hardcode_minus_L=yes\n\t  hardcode_libdir_flag_spec='-L$libdir'\n\t  hardcode_libdir_separator=\n\t  fi\n\t  ;;\n\tesac\n\tshared_flag='-shared'\n\tif test yes = \"$aix_use_runtimelinking\"; then\n\t  shared_flag=\"$shared_flag \"'$wl-G'\n\tfi\n\t# Need to ensure runtime linking is disabled for the traditional\n\t# shared library, or the linker may eventually find shared libraries\n\t# /with/ Import File - we do not want to mix them.\n\tshared_flag_aix='-shared'\n\tshared_flag_svr4='-shared $wl-G'\n      else\n\t# not using gcc\n\tif test ia64 = \"$host_cpu\"; then\n\t# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release\n\t# chokes on -Wl,-G. The following line is correct:\n\t  shared_flag='-G'\n\telse\n\t  if test yes = \"$aix_use_runtimelinking\"; then\n\t    shared_flag='$wl-G'\n\t  else\n\t    shared_flag='$wl-bM:SRE'\n\t  fi\n\t  shared_flag_aix='$wl-bM:SRE'\n\t  shared_flag_svr4='$wl-G'\n\tfi\n      fi\n\n      export_dynamic_flag_spec='$wl-bexpall'\n      # It seems that -bexpall does not export symbols beginning with\n      # underscore (_), so it is better to generate a list of symbols to export.\n      always_export_symbols=yes\n      if test aix,yes = \"$with_aix_soname,$aix_use_runtimelinking\"; then\n\t# Warning - without using the other runtime loading flags (-brtl),\n\t# -berok will link without error, but may produce a broken library.\n\tallow_undefined_flag='-berok'\n        # Determine the default libpath from the value encoded in an\n        # empty executable.\n        if test set = \"${lt_cv_aix_libpath+set}\"; then\n  aix_libpath=$lt_cv_aix_libpath\nelse\n  if ${lt_cv_aix_libpath_+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n\n  lt_aix_libpath_sed='\n      /Import File Strings/,/^$/ {\n\t  /^0/ {\n\t      s/^0  *\\([^ ]*\\) *$/\\1/\n\t      p\n\t  }\n      }'\n  lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  # Check for a 64-bit object if we didn't find anything.\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  fi\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=/usr/lib:/lib\n  fi\n\nfi\n\n  aix_libpath=$lt_cv_aix_libpath_\nfi\n\n        hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'\"$aix_libpath\"\n        archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n \"$allow_undefined_flag\"; then func_echo_all \"$wl$allow_undefined_flag\"; else :; fi` $wl'$exp_sym_flag:\\$export_symbols' '$shared_flag\n      else\n\tif test ia64 = \"$host_cpu\"; then\n\t  hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib'\n\t  allow_undefined_flag=\"-z nodefs\"\n\t  archive_expsym_cmds=\"\\$CC $shared_flag\"' -o $output_objdir/$soname $libobjs $deplibs '\"\\$wl$no_entry_flag\"' $compiler_flags $wl$allow_undefined_flag '\"\\$wl$exp_sym_flag:\\$export_symbols\"\n\telse\n\t # Determine the default libpath from the value encoded in an\n\t # empty executable.\n\t if test set = \"${lt_cv_aix_libpath+set}\"; then\n  aix_libpath=$lt_cv_aix_libpath\nelse\n  if ${lt_cv_aix_libpath_+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n\n  lt_aix_libpath_sed='\n      /Import File Strings/,/^$/ {\n\t  /^0/ {\n\t      s/^0  *\\([^ ]*\\) *$/\\1/\n\t      p\n\t  }\n      }'\n  lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  # Check for a 64-bit object if we didn't find anything.\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n  fi\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n  if test -z \"$lt_cv_aix_libpath_\"; then\n    lt_cv_aix_libpath_=/usr/lib:/lib\n  fi\n\nfi\n\n  aix_libpath=$lt_cv_aix_libpath_\nfi\n\n\t hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'\"$aix_libpath\"\n\t  # Warning - without using the other run time loading flags,\n\t  # -berok will link without error, but may produce a broken library.\n\t  no_undefined_flag=' $wl-bernotok'\n\t  allow_undefined_flag=' $wl-berok'\n\t  if test yes = \"$with_gnu_ld\"; then\n\t    # We only use this code for GNU lds that support --whole-archive.\n\t    whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive'\n\t  else\n\t    # Exported symbols can be pulled into shared objects from archives\n\t    whole_archive_flag_spec='$convenience'\n\t  fi\n\t  archive_cmds_need_lc=yes\n\t  archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'\n\t  # -brtl affects multiple linker settings, -berok does not and is overridden later\n\t  compiler_flags_filtered='`func_echo_all \"$compiler_flags \" | $SED -e \"s%-brtl\\\\([, ]\\\\)%-berok\\\\1%g\"`'\n\t  if test svr4 != \"$with_aix_soname\"; then\n\t    # This is similar to how AIX traditionally builds its shared libraries.\n\t    archive_expsym_cmds=\"$archive_expsym_cmds\"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'\n\t  fi\n\t  if test aix != \"$with_aix_soname\"; then\n\t    archive_expsym_cmds=\"$archive_expsym_cmds\"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all \"#! $soname($shared_archive_member_spec.o)\"; if test shr_64 = \"$shared_archive_member_spec\"; then func_echo_all \"# 64\"; else func_echo_all \"# 32\"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'\n\t  else\n\t    # used by -dlpreopen to get the symbols\n\t    archive_expsym_cmds=\"$archive_expsym_cmds\"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'\n\t  fi\n\t  archive_expsym_cmds=\"$archive_expsym_cmds\"'~$RM -r $output_objdir/$realname.d'\n\tfi\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'\n            archive_expsym_cmds=''\n        ;;\n      m68k)\n            archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO \"#define NAME $libname\" > $output_objdir/a2ixlibrary.data~$ECHO \"#define LIBRARY_ID 1\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define VERSION $major\" >> $output_objdir/a2ixlibrary.data~$ECHO \"#define REVISION $revision\" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'\n            hardcode_libdir_flag_spec='-L$libdir'\n            hardcode_minus_L=yes\n        ;;\n      esac\n      ;;\n\n    bsdi[45]*)\n      export_dynamic_flag_spec=-rdynamic\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # When not using gcc, we currently assume that we are using\n      # Microsoft Visual C++.\n      # hardcode_libdir_flag_spec is actually meaningless, as there is\n      # no search path for DLLs.\n      case $cc_basename in\n      cl*)\n\t# Native MSVC\n\thardcode_libdir_flag_spec=' '\n\tallow_undefined_flag=unsupported\n\talways_export_symbols=yes\n\tfile_list_spec='@'\n\t# Tell ltmain to make .lib files, not .a files.\n\tlibext=lib\n\t# Tell ltmain to make .dll files, not .so files.\n\tshrext_cmds=.dll\n\t# FIXME: Setting linknames here is a bad hack.\n\tarchive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~linknames='\n\tarchive_expsym_cmds='if   test DEF = \"`$SED -n     -e '\\''s/^[\t ]*//'\\''     -e '\\''/^\\(;.*\\)*$/d'\\''     -e '\\''s/^\\(EXPORTS\\|LIBRARY\\)\\([\t ].*\\)*$/DEF/p'\\''     -e q     $export_symbols`\" ; then\n            cp \"$export_symbols\" \"$output_objdir/$soname.def\";\n            echo \"$tool_output_objdir$soname.def\" > \"$output_objdir/$soname.exp\";\n          else\n            $SED -e '\\''s/^/-link -EXPORT:/'\\'' < $export_symbols > $output_objdir/$soname.exp;\n          fi~\n          $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs \"@$tool_output_objdir$soname.exp\" -Wl,-DLL,-IMPLIB:\"$tool_output_objdir$libname.dll.lib\"~\n          linknames='\n\t# The linker will not automatically build a static lib if we build a DLL.\n\t# _LT_TAGVAR(old_archive_from_new_cmds, )='true'\n\tenable_shared_with_static_runtimes=yes\n\texclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'\n\texport_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[BCDGRS][ ]/s/.*[ ]\\([^ ]*\\)/\\1,DATA/'\\'' | $SED -e '\\''/^[AITW][ ]/s/.*[ ]//'\\'' | sort | uniq > $export_symbols'\n\t# Don't use ranlib\n\told_postinstall_cmds='chmod 644 $oldlib'\n\tpostlink_cmds='lt_outputfile=\"@OUTPUT@\"~\n          lt_tool_outputfile=\"@TOOL_OUTPUT@\"~\n          case $lt_outputfile in\n            *.exe|*.EXE) ;;\n            *)\n              lt_outputfile=$lt_outputfile.exe\n              lt_tool_outputfile=$lt_tool_outputfile.exe\n              ;;\n          esac~\n          if test : != \"$MANIFEST_TOOL\" && test -f \"$lt_outputfile.manifest\"; then\n            $MANIFEST_TOOL -manifest \"$lt_tool_outputfile.manifest\" -outputresource:\"$lt_tool_outputfile\" || exit 1;\n            $RM \"$lt_outputfile.manifest\";\n          fi'\n\t;;\n      *)\n\t# Assume MSVC wrapper\n\thardcode_libdir_flag_spec=' '\n\tallow_undefined_flag=unsupported\n\t# Tell ltmain to make .lib files, not .a files.\n\tlibext=lib\n\t# Tell ltmain to make .dll files, not .so files.\n\tshrext_cmds=.dll\n\t# FIXME: Setting linknames here is a bad hack.\n\tarchive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all \"$deplibs\" | $SED '\\''s/ -lc$//'\\''` -link -dll~linknames='\n\t# The linker will automatically build a .lib file if we build a DLL.\n\told_archive_from_new_cmds='true'\n\t# FIXME: Should let the user specify the lib program.\n\told_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs'\n\tenable_shared_with_static_runtimes=yes\n\t;;\n      esac\n      ;;\n\n    darwin* | rhapsody*)\n\n\n  archive_cmds_need_lc=no\n  hardcode_direct=no\n  hardcode_automatic=yes\n  hardcode_shlibpath_var=unsupported\n  if test yes = \"$lt_cv_ld_force_load\"; then\n    whole_archive_flag_spec='`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience $wl-force_load,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"`'\n\n  else\n    whole_archive_flag_spec=''\n  fi\n  link_all_deplibs=yes\n  allow_undefined_flag=$_lt_dar_allow_undefined\n  case $cc_basename in\n     ifort*|nagfor*) _lt_dar_can_shared=yes ;;\n     *) _lt_dar_can_shared=$GCC ;;\n  esac\n  if test yes = \"$_lt_dar_can_shared\"; then\n    output_verbose_link_cmd=func_echo_all\n    archive_cmds=\"\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod$_lt_dsymutil\"\n    module_cmds=\"\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags$_lt_dsymutil\"\n    archive_expsym_cmds=\"sed 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil\"\n    module_expsym_cmds=\"sed -e 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags$_lt_dar_export_syms$_lt_dsymutil\"\n\n  else\n  ld_shlibs=no\n  fi\n\n      ;;\n\n    dgux*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_shlibpath_var=no\n      ;;\n\n    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor\n    # support.  Future versions do this automatically, but an explicit c++rt0.o\n    # does not break anything, and helps significantly (at the cost of a little\n    # extra space).\n    freebsd2.2*)\n      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    # Unfortunately, older versions of FreeBSD 2 do not have this feature.\n    freebsd2.*)\n      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_direct=yes\n      hardcode_minus_L=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.\n    freebsd* | dragonfly*)\n      archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    hpux9*)\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n      else\n\tarchive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test \"x$output_objdir/$soname\" = \"x$lib\" || mv $output_objdir/$soname $lib'\n      fi\n      hardcode_libdir_flag_spec='$wl+b $wl$libdir'\n      hardcode_libdir_separator=:\n      hardcode_direct=yes\n\n      # hardcode_minus_L: Not really in the search PATH,\n      # but as the default location of the library.\n      hardcode_minus_L=yes\n      export_dynamic_flag_spec='$wl-E'\n      ;;\n\n    hpux10*)\n      if test yes,no = \"$GCC,$with_gnu_ld\"; then\n\tarchive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      if test no = \"$with_gnu_ld\"; then\n\thardcode_libdir_flag_spec='$wl+b $wl$libdir'\n\thardcode_libdir_separator=:\n\thardcode_direct=yes\n\thardcode_direct_absolute=yes\n\texport_dynamic_flag_spec='$wl-E'\n\t# hardcode_minus_L: Not really in the search PATH,\n\t# but as the default location of the library.\n\thardcode_minus_L=yes\n      fi\n      ;;\n\n    hpux11*)\n      if test yes,no = \"$GCC,$with_gnu_ld\"; then\n\tcase $host_cpu in\n\thppa*64*)\n\t  archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\t  archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tesac\n      else\n\tcase $host_cpu in\n\thppa*64*)\n\t  archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\n\t  # Older versions of the 11.00 compiler do not understand -b yet\n\t  # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)\n\t  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if $CC understands -b\" >&5\n$as_echo_n \"checking if $CC understands -b... \" >&6; }\nif ${lt_cv_prog_compiler__b+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_prog_compiler__b=no\n   save_LDFLAGS=$LDFLAGS\n   LDFLAGS=\"$LDFLAGS -b\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&5\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         lt_cv_prog_compiler__b=yes\n       fi\n     else\n       lt_cv_prog_compiler__b=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=$save_LDFLAGS\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b\" >&5\n$as_echo \"$lt_cv_prog_compiler__b\" >&6; }\n\nif test yes = \"$lt_cv_prog_compiler__b\"; then\n    archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\nelse\n    archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'\nfi\n\n\t  ;;\n\tesac\n      fi\n      if test no = \"$with_gnu_ld\"; then\n\thardcode_libdir_flag_spec='$wl+b $wl$libdir'\n\thardcode_libdir_separator=:\n\n\tcase $host_cpu in\n\thppa*64*|ia64*)\n\t  hardcode_direct=no\n\t  hardcode_shlibpath_var=no\n\t  ;;\n\t*)\n\t  hardcode_direct=yes\n\t  hardcode_direct_absolute=yes\n\t  export_dynamic_flag_spec='$wl-E'\n\n\t  # hardcode_minus_L: Not really in the search PATH,\n\t  # but as the default location of the library.\n\t  hardcode_minus_L=yes\n\t  ;;\n\tesac\n      fi\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\t# Try to use the -exported_symbol ld option, if it does not\n\t# work, assume that -exports_file does not work either and\n\t# implicitly export all symbols.\n\t# This should be the same for all languages, so no per-tag cache variable.\n\t{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol\" >&5\n$as_echo_n \"checking whether the $host_os linker accepts -exported_symbol... \" >&6; }\nif ${lt_cv_irix_exported_symbol+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  save_LDFLAGS=$LDFLAGS\n\t   LDFLAGS=\"$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null\"\n\t   cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\nint foo (void) { return 0; }\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  lt_cv_irix_exported_symbol=yes\nelse\n  lt_cv_irix_exported_symbol=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n           LDFLAGS=$save_LDFLAGS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol\" >&5\n$as_echo \"$lt_cv_irix_exported_symbol\" >&6; }\n\tif test yes = \"$lt_cv_irix_exported_symbol\"; then\n          archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib'\n\tfi\n      else\n\tarchive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\tarchive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      hardcode_libdir_separator=:\n      inherit_rpath=yes\n      link_all_deplibs=yes\n      ;;\n\n    linux*)\n      case $cc_basename in\n      tcc*)\n\t# Fabrice Bellard et al's Tiny C Compiler\n\tld_shlibs=yes\n\tarchive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t;;\n      esac\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\tarchive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out\n      else\n\tarchive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF\n      fi\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    newsos6)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_direct=yes\n      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      hardcode_libdir_separator=:\n      hardcode_shlibpath_var=no\n      ;;\n\n    *nto* | *qnx*)\n      ;;\n\n    openbsd* | bitrig*)\n      if test -f /usr/libexec/ld.so; then\n\thardcode_direct=yes\n\thardcode_shlibpath_var=no\n\thardcode_direct_absolute=yes\n\tif test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n\t  archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols'\n\t  hardcode_libdir_flag_spec='$wl-rpath,$libdir'\n\t  export_dynamic_flag_spec='$wl-E'\n\telse\n\t  archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  hardcode_libdir_flag_spec='$wl-rpath,$libdir'\n\tfi\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    os2*)\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_minus_L=yes\n      allow_undefined_flag=unsupported\n      shrext_cmds=.dll\n      archive_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\temxexp $libobjs | $SED /\"_DLL_InitTerm\"/d >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      archive_expsym_cmds='$ECHO \"LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE\" > $output_objdir/$libname.def~\n\t$ECHO \"DESCRIPTION \\\"$libname\\\"\" >> $output_objdir/$libname.def~\n\t$ECHO \"DATA MULTIPLE NONSHARED\" >> $output_objdir/$libname.def~\n\t$ECHO EXPORTS >> $output_objdir/$libname.def~\n\tprefix_cmds=\"$SED\"~\n\tif test EXPORTS = \"`$SED 1q $export_symbols`\"; then\n\t  prefix_cmds=\"$prefix_cmds -e 1d\";\n\tfi~\n\tprefix_cmds=\"$prefix_cmds -e \\\"s/^\\(.*\\)$/_\\1/g\\\"\"~\n\tcat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~\n\t$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~\n\temximp -o $lib $output_objdir/$libname.def'\n      old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'\n      enable_shared_with_static_runtimes=yes\n      ;;\n\n    osf3*)\n      if test yes = \"$GCC\"; then\n\tallow_undefined_flag=' $wl-expect_unresolved $wl\\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n      else\n\tallow_undefined_flag=' -expect_unresolved \\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      hardcode_libdir_separator=:\n      ;;\n\n    osf4* | osf5*)\t# as osf3* with the addition of -msym flag\n      if test yes = \"$GCC\"; then\n\tallow_undefined_flag=' $wl-expect_unresolved $wl\\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n \"$verstring\" && func_echo_all \"$wl-set_version $wl$verstring\"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'\n\thardcode_libdir_flag_spec='$wl-rpath $wl$libdir'\n      else\n\tallow_undefined_flag=' -expect_unresolved \\*'\n\tarchive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n \"$verstring\" && func_echo_all \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib'\n\tarchive_expsym_cmds='for i in `cat $export_symbols`; do printf \"%s %s\\\\n\" -exported_symbol \"\\$i\" >> $lib.exp; done; printf \"%s\\\\n\" \"-hidden\">> $lib.exp~\n          $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n \"$verstring\" && $ECHO \"-set_version $verstring\"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp'\n\n\t# Both c and cxx compiler support -rpath directly\n\thardcode_libdir_flag_spec='-rpath $libdir'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_separator=:\n      ;;\n\n    solaris*)\n      no_undefined_flag=' -z defs'\n      if test yes = \"$GCC\"; then\n\twlarc='$wl'\n\tarchive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n          $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n      else\n\tcase `$CC -V 2>&1` in\n\t*\"Compilers 5.0\"*)\n\t  wlarc=''\n\t  archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  archive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n            $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'\n\t  ;;\n\t*)\n\t  wlarc='$wl'\n\t  archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  archive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n            $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n\t  ;;\n\tesac\n      fi\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_shlibpath_var=no\n      case $host_os in\n      solaris2.[0-5] | solaris2.[0-5].*) ;;\n      *)\n\t# The compiler driver will combine and reorder linker options,\n\t# but understands '-z linker_flag'.  GCC discards it without '$wl',\n\t# but is careful enough not to reorder.\n\t# Supported since Solaris 2.6 (maybe 2.5.1?)\n\tif test yes = \"$GCC\"; then\n\t  whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'\n\telse\n\t  whole_archive_flag_spec='-z allextract$convenience -z defaultextract'\n\tfi\n\t;;\n      esac\n      link_all_deplibs=yes\n      ;;\n\n    sunos4*)\n      if test sequent = \"$host_vendor\"; then\n\t# Use $CC to link under sequent, because it throws in some extra .o\n\t# files that make .init and .fini sections work.\n\tarchive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_direct=yes\n      hardcode_minus_L=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    sysv4)\n      case $host_vendor in\n\tsni)\n\t  archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  hardcode_direct=yes # is this really true???\n\t;;\n\tsiemens)\n\t  ## LD is ld it makes a PLAMLIB\n\t  ## CC just makes a GrossModule.\n\t  archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags'\n\t  reload_cmds='$CC -r -o $output$reload_objs'\n\t  hardcode_direct=no\n        ;;\n\tmotorola)\n\t  archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  hardcode_direct=no #Motorola manual says yes, but my tests say they lie\n\t;;\n      esac\n      runpath_var='LD_RUN_PATH'\n      hardcode_shlibpath_var=no\n      ;;\n\n    sysv4.3*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_shlibpath_var=no\n      export_dynamic_flag_spec='-Bexport'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tarchive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\thardcode_shlibpath_var=no\n\trunpath_var=LD_RUN_PATH\n\thardcode_runpath_var=yes\n\tld_shlibs=yes\n      fi\n      ;;\n\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)\n      no_undefined_flag='$wl-z,text'\n      archive_cmds_need_lc=no\n      hardcode_shlibpath_var=no\n      runpath_var='LD_RUN_PATH'\n\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6*)\n      # Note: We CANNOT use -z defs as we might desire, because we do not\n      # link with -lc, and that would cause any symbols used from libc to\n      # always be unresolved, which means just about no library would\n      # ever link correctly.  If we're not using GNU ld we use -z text\n      # though, which does catch some bad symbols but isn't as heavy-handed\n      # as -z defs.\n      no_undefined_flag='$wl-z,text'\n      allow_undefined_flag='$wl-z,nodefs'\n      archive_cmds_need_lc=no\n      hardcode_shlibpath_var=no\n      hardcode_libdir_flag_spec='$wl-R,$libdir'\n      hardcode_libdir_separator=':'\n      link_all_deplibs=yes\n      export_dynamic_flag_spec='$wl-Bexport'\n      runpath_var='LD_RUN_PATH'\n\n      if test yes = \"$GCC\"; then\n\tarchive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    uts4*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_shlibpath_var=no\n      ;;\n\n    *)\n      ld_shlibs=no\n      ;;\n    esac\n\n    if test sni = \"$host_vendor\"; then\n      case $host in\n      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)\n\texport_dynamic_flag_spec='$wl-Blargedynsym'\n\t;;\n      esac\n    fi\n  fi\n\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ld_shlibs\" >&5\n$as_echo \"$ld_shlibs\" >&6; }\ntest no = \"$ld_shlibs\" && can_build_shared=no\n\nwith_gnu_ld=$with_gnu_ld\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#\n# Do we need to explicitly link libc?\n#\ncase \"x$archive_cmds_need_lc\" in\nx|xyes)\n  # Assume -lc should be added\n  archive_cmds_need_lc=yes\n\n  if test yes,yes = \"$GCC,$enable_shared\"; then\n    case $archive_cmds in\n    *'~'*)\n      # FIXME: we may have to deal with multi-command sequences.\n      ;;\n    '$CC '*)\n      # Test whether the compiler implicitly links with -lc since on some\n      # systems, -lgcc has to come before -lc. If gcc already passes -lc\n      # to ld, don't add -lc before -lgcc.\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in\" >&5\n$as_echo_n \"checking whether -lc should be explicitly linked in... \" >&6; }\nif ${lt_cv_archive_cmds_need_lc+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  $RM conftest*\n\techo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n\tif { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_compile\\\"\"; } >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } 2>conftest.err; then\n\t  soname=conftest\n\t  lib=conftest\n\t  libobjs=conftest.$ac_objext\n\t  deplibs=\n\t  wl=$lt_prog_compiler_wl\n\t  pic_flag=$lt_prog_compiler_pic\n\t  compiler_flags=-v\n\t  linker_flags=-v\n\t  verstring=\n\t  output_objdir=.\n\t  libname=conftest\n\t  lt_save_allow_undefined_flag=$allow_undefined_flag\n\t  allow_undefined_flag=\n\t  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$archive_cmds 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1\\\"\"; } >&5\n  (eval $archive_cmds 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; }\n\t  then\n\t    lt_cv_archive_cmds_need_lc=no\n\t  else\n\t    lt_cv_archive_cmds_need_lc=yes\n\t  fi\n\t  allow_undefined_flag=$lt_save_allow_undefined_flag\n\telse\n\t  cat conftest.err 1>&5\n\tfi\n\t$RM conftest*\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc\" >&5\n$as_echo \"$lt_cv_archive_cmds_need_lc\" >&6; }\n      archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc\n      ;;\n    esac\n  fi\n  ;;\nesac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics\" >&5\n$as_echo_n \"checking dynamic linker characteristics... \" >&6; }\n\nif test yes = \"$GCC\"; then\n  case $host_os in\n    darwin*) lt_awk_arg='/^libraries:/,/LR/' ;;\n    *) lt_awk_arg='/^libraries:/' ;;\n  esac\n  case $host_os in\n    mingw* | cegcc*) lt_sed_strip_eq='s|=\\([A-Za-z]:\\)|\\1|g' ;;\n    *) lt_sed_strip_eq='s|=/|/|g' ;;\n  esac\n  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e \"s/^libraries://\" -e $lt_sed_strip_eq`\n  case $lt_search_path_spec in\n  *\\;*)\n    # if the path contains \";\" then we assume it to be the separator\n    # otherwise default to the standard path separator (i.e. \":\") - it is\n    # assumed that no part of a normal pathname contains \";\" but that should\n    # okay in the real world where \";\" in dirpaths is itself problematic.\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED 's/;/ /g'`\n    ;;\n  *)\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED \"s/$PATH_SEPARATOR/ /g\"`\n    ;;\n  esac\n  # Ok, now we have the path, separated by spaces, we can step through it\n  # and add multilib dir if necessary...\n  lt_tmp_lt_search_path_spec=\n  lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`\n  # ...but if some path component already ends with the multilib dir we assume\n  # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer).\n  case \"$lt_multi_os_dir; $lt_search_path_spec \" in\n  \"/; \"* | \"/.; \"* | \"/./; \"* | *\"$lt_multi_os_dir \"* | *\"$lt_multi_os_dir/ \"*)\n    lt_multi_os_dir=\n    ;;\n  esac\n  for lt_sys_path in $lt_search_path_spec; do\n    if test -d \"$lt_sys_path$lt_multi_os_dir\"; then\n      lt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir\"\n    elif test -n \"$lt_multi_os_dir\"; then\n      test -d \"$lt_sys_path\" && \\\n\tlt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path\"\n    fi\n  done\n  lt_search_path_spec=`$ECHO \"$lt_tmp_lt_search_path_spec\" | awk '\nBEGIN {RS = \" \"; FS = \"/|\\n\";} {\n  lt_foo = \"\";\n  lt_count = 0;\n  for (lt_i = NF; lt_i > 0; lt_i--) {\n    if ($lt_i != \"\" && $lt_i != \".\") {\n      if ($lt_i == \"..\") {\n        lt_count++;\n      } else {\n        if (lt_count == 0) {\n          lt_foo = \"/\" $lt_i lt_foo;\n        } else {\n          lt_count--;\n        }\n      }\n    }\n  }\n  if (lt_foo != \"\") { lt_freq[lt_foo]++; }\n  if (lt_freq[lt_foo] == 1) { print lt_foo; }\n}'`\n  # AWK program above erroneously prepends '/' to C:/dos/paths\n  # for these hosts.\n  case $host_os in\n    mingw* | cegcc*) lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" |\\\n      $SED 's|/\\([A-Za-z]:\\)|\\1|g'` ;;\n  esac\n  sys_lib_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $lt_NL2SP`\nelse\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\nfi\nlibrary_names_spec=\nlibname_spec='lib$name'\nsoname_spec=\nshrext_cmds=.so\npostinstall_cmds=\npostuninstall_cmds=\nfinish_cmds=\nfinish_eval=\nshlibpath_var=\nshlibpath_overrides_runpath=unknown\nversion_type=none\ndynamic_linker=\"$host_os ld.so\"\nsys_lib_dlsearch_path_spec=\"/lib /usr/lib\"\nneed_lib_prefix=unknown\nhardcode_into_libs=no\n\n# when you set need_version to no, make sure it does not cause -set_version\n# flags to be left without arguments\nneed_version=unknown\n\n\n\ncase $host_os in\naix3*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname.a'\n  shlibpath_var=LIBPATH\n\n  # AIX 3 has no versioning support, so we append a major version to the name.\n  soname_spec='$libname$release$shared_ext$major'\n  ;;\n\naix[4-9]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  hardcode_into_libs=yes\n  if test ia64 = \"$host_cpu\"; then\n    # AIX 5 supports IA64\n    library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext'\n    shlibpath_var=LD_LIBRARY_PATH\n  else\n    # With GCC up to 2.95.x, collect2 would create an import file\n    # for dependence libraries.  The import file would start with\n    # the line '#! .'.  This would cause the generated library to\n    # depend on '.', always an invalid library.  This was fixed in\n    # development snapshots of GCC prior to 3.0.\n    case $host_os in\n      aix4 | aix4.[01] | aix4.[01].*)\n      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'\n\t   echo ' yes '\n\t   echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then\n\t:\n      else\n\tcan_build_shared=no\n      fi\n      ;;\n    esac\n    # Using Import Files as archive members, it is possible to support\n    # filename-based versioning of shared library archives on AIX. While\n    # this would work for both with and without runtime linking, it will\n    # prevent static linking of such archives. So we do filename-based\n    # shared library versioning with .so extension only, which is used\n    # when both runtime linking and shared linking is enabled.\n    # Unfortunately, runtime linking may impact performance, so we do\n    # not want this to be the default eventually. Also, we use the\n    # versioned .so libs for executables only if there is the -brtl\n    # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only.\n    # To allow for filename-based versioning support, we need to create\n    # libNAME.so.V as an archive file, containing:\n    # *) an Import File, referring to the versioned filename of the\n    #    archive as well as the shared archive member, telling the\n    #    bitwidth (32 or 64) of that shared object, and providing the\n    #    list of exported symbols of that shared object, eventually\n    #    decorated with the 'weak' keyword\n    # *) the shared object with the F_LOADONLY flag set, to really avoid\n    #    it being seen by the linker.\n    # At run time we better use the real file rather than another symlink,\n    # but for link time we create the symlink libNAME.so -> libNAME.so.V\n\n    case $with_aix_soname,$aix_use_runtimelinking in\n    # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct\n    # soname into executable. Probably we can add versioning support to\n    # collect2, so additional links can be useful in future.\n    aix,yes) # traditional libtool\n      dynamic_linker='AIX unversionable lib.so'\n      # If using run time linking (on AIX 4.2 or later) use lib<name>.so\n      # instead of lib<name>.a to let people know that these are not\n      # typical AIX shared libraries.\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n      ;;\n    aix,no) # traditional AIX only\n      dynamic_linker='AIX lib.a(lib.so.V)'\n      # We preserve .a as extension for shared libraries through AIX4.2\n      # and later when we are not doing run time linking.\n      library_names_spec='$libname$release.a $libname.a'\n      soname_spec='$libname$release$shared_ext$major'\n      ;;\n    svr4,*) # full svr4 only\n      dynamic_linker=\"AIX lib.so.V($shared_archive_member_spec.o)\"\n      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'\n      # We do not specify a path in Import Files, so LIBPATH fires.\n      shlibpath_overrides_runpath=yes\n      ;;\n    *,yes) # both, prefer svr4\n      dynamic_linker=\"AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)\"\n      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'\n      # unpreferred sharedlib libNAME.a needs extra handling\n      postinstall_cmds='test -n \"$linkname\" || linkname=\"$realname\"~func_stripname \"\" \".so\" \"$linkname\"~$install_shared_prog \"$dir/$func_stripname_result.$libext\" \"$destdir/$func_stripname_result.$libext\"~test -z \"$tstripme\" || test -z \"$striplib\" || $striplib \"$destdir/$func_stripname_result.$libext\"'\n      postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname \"\" \".so\" \"$n\"~test \"$func_stripname_result\" = \"$n\" || func_append rmfiles \" $odir/$func_stripname_result.$libext\"'\n      # We do not specify a path in Import Files, so LIBPATH fires.\n      shlibpath_overrides_runpath=yes\n      ;;\n    *,no) # both, prefer aix\n      dynamic_linker=\"AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)\"\n      library_names_spec='$libname$release.a $libname.a'\n      soname_spec='$libname$release$shared_ext$major'\n      # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling\n      postinstall_cmds='test -z \"$dlname\" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z \"$tstripme\" || test -z \"$striplib\" || $striplib $destdir/$dlname~test -n \"$linkname\" || linkname=$realname~func_stripname \"\" \".a\" \"$linkname\"~(cd \"$destdir\" && $LN_S -f $dlname $func_stripname_result.so)'\n      postuninstall_cmds='test -z \"$dlname\" || func_append rmfiles \" $odir/$dlname\"~for n in $old_library $library_names; do :; done~func_stripname \"\" \".a\" \"$n\"~func_append rmfiles \" $odir/$func_stripname_result.so\"'\n      ;;\n    esac\n    shlibpath_var=LIBPATH\n  fi\n  ;;\n\namigaos*)\n  case $host_cpu in\n  powerpc)\n    # Since July 2007 AmigaOS4 officially supports .so libraries.\n    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    ;;\n  m68k)\n    library_names_spec='$libname.ixlibrary $libname.a'\n    # Create ${libname}_ixlibrary.a entries in /sys/libs.\n    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all \"$lib\" | $SED '\\''s%^.*/\\([^/]*\\)\\.ixlibrary$%\\1%'\\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show \"cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a\"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'\n    ;;\n  esac\n  ;;\n\nbeos*)\n  library_names_spec='$libname$shared_ext'\n  dynamic_linker=\"$host_os ld.so\"\n  shlibpath_var=LIBRARY_PATH\n  ;;\n\nbsdi[45]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=\"/shlib /usr/lib /usr/local/lib\"\n  # the default ld.so.conf also contains /usr/contrib/lib and\n  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow\n  # libtool to hard-code these into programs\n  ;;\n\ncygwin* | mingw* | pw32* | cegcc*)\n  version_type=windows\n  shrext_cmds=.dll\n  need_version=no\n  need_lib_prefix=no\n\n  case $GCC,$cc_basename in\n  yes,*)\n    # gcc\n    library_names_spec='$libname.dll.a'\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\$file`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname~\n      chmod a+x \\$dldir/$dlname~\n      if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n        eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n      fi'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n\n    case $host_os in\n    cygwin*)\n      # Cygwin DLLs use 'cyg' prefix rather than 'lib'\n      soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n\n      sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/lib/w32api\"\n      ;;\n    mingw* | cegcc*)\n      # MinGW DLLs use traditional 'lib' prefix\n      soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n      ;;\n    pw32*)\n      # pw32 DLLs use 'pw' prefix rather than 'lib'\n      library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n      ;;\n    esac\n    dynamic_linker='Win32 ld.exe'\n    ;;\n\n  *,cl*)\n    # Native MSVC\n    libname_spec='$name'\n    soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'\n    library_names_spec='$libname.dll.lib'\n\n    case $build_os in\n    mingw*)\n      sys_lib_search_path_spec=\n      lt_save_ifs=$IFS\n      IFS=';'\n      for lt_path in $LIB\n      do\n        IFS=$lt_save_ifs\n        # Let DOS variable expansion print the short 8.3 style file name.\n        lt_path=`cd \"$lt_path\" 2>/dev/null && cmd //C \"for %i in (\".\") do @echo %~si\"`\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec $lt_path\"\n      done\n      IFS=$lt_save_ifs\n      # Convert to MSYS style.\n      sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | sed -e 's|\\\\\\\\|/|g' -e 's| \\\\([a-zA-Z]\\\\):| /\\\\1|g' -e 's|^ ||'`\n      ;;\n    cygwin*)\n      # Convert to unix form, then to dos form, then back to unix form\n      # but this time dos style (no spaces!) so that the unix form looks\n      # like /cygdrive/c/PROGRA~1:/cygdr...\n      sys_lib_search_path_spec=`cygpath --path --unix \"$LIB\"`\n      sys_lib_search_path_spec=`cygpath --path --dos \"$sys_lib_search_path_spec\" 2>/dev/null`\n      sys_lib_search_path_spec=`cygpath --path --unix \"$sys_lib_search_path_spec\" | $SED -e \"s/$PATH_SEPARATOR/ /g\"`\n      ;;\n    *)\n      sys_lib_search_path_spec=$LIB\n      if $ECHO \"$sys_lib_search_path_spec\" | $GREP ';[c-zC-Z]:/' >/dev/null; then\n        # It is most probably a Windows format PATH.\n        sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | $SED -e 's/;/ /g'`\n      else\n        sys_lib_search_path_spec=`$ECHO \"$sys_lib_search_path_spec\" | $SED -e \"s/$PATH_SEPARATOR/ /g\"`\n      fi\n      # FIXME: find the short name or the path components, as spaces are\n      # common. (e.g. \"Program Files\" -> \"PROGRA~1\")\n      ;;\n    esac\n\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\$file`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n    dynamic_linker='Win32 link.exe'\n    ;;\n\n  *)\n    # Assume MSVC wrapper\n    library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib'\n    dynamic_linker='Win32 ld.exe'\n    ;;\n  esac\n  # FIXME: first we should search . and the directory the executable is in\n  shlibpath_var=PATH\n  ;;\n\ndarwin* | rhapsody*)\n  dynamic_linker=\"$host_os dyld\"\n  version_type=darwin\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$major$shared_ext $libname$shared_ext'\n  soname_spec='$libname$release$major$shared_ext'\n  shlibpath_overrides_runpath=yes\n  shlibpath_var=DYLD_LIBRARY_PATH\n  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'\n\n  sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/local/lib\"\n  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'\n  ;;\n\ndgux*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\nfreebsd* | dragonfly*)\n  # DragonFly does not have aout.  When/if they implement a new\n  # versioning mechanism, adjust this.\n  if test -x /usr/bin/objformat; then\n    objformat=`/usr/bin/objformat`\n  else\n    case $host_os in\n    freebsd[23].*) objformat=aout ;;\n    *) objformat=elf ;;\n    esac\n  fi\n  version_type=freebsd-$objformat\n  case $version_type in\n    freebsd-elf*)\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n      soname_spec='$libname$release$shared_ext$major'\n      need_version=no\n      need_lib_prefix=no\n      ;;\n    freebsd-*)\n      library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n      need_version=yes\n      ;;\n  esac\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_os in\n  freebsd2.*)\n    shlibpath_overrides_runpath=yes\n    ;;\n  freebsd3.[01]* | freebsdelf3.[01]*)\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  freebsd3.[2-9]* | freebsdelf3.[2-9]* | \\\n  freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1)\n    shlibpath_overrides_runpath=no\n    hardcode_into_libs=yes\n    ;;\n  *) # from 4.6 on, and DragonFly\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  esac\n  ;;\n\nhaiku*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  dynamic_linker=\"$host_os runtime_loader\"\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'\n  hardcode_into_libs=yes\n  ;;\n\nhpux9* | hpux10* | hpux11*)\n  # Give a soname corresponding to the major version so that dld.sl refuses to\n  # link against other versions.\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  case $host_cpu in\n  ia64*)\n    shrext_cmds='.so'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.so\"\n    shlibpath_var=LD_LIBRARY_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    if test 32 = \"$HPUX_IA64_MODE\"; then\n      sys_lib_search_path_spec=\"/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib\"\n      sys_lib_dlsearch_path_spec=/usr/lib/hpux32\n    else\n      sys_lib_search_path_spec=\"/usr/lib/hpux64 /usr/local/lib/hpux64\"\n      sys_lib_dlsearch_path_spec=/usr/lib/hpux64\n    fi\n    ;;\n  hppa*64*)\n    shrext_cmds='.sl'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    sys_lib_search_path_spec=\"/usr/lib/pa20_64 /usr/ccs/lib/pa20_64\"\n    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n    ;;\n  *)\n    shrext_cmds='.sl'\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=SHLIB_PATH\n    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    ;;\n  esac\n  # HP-UX runs *really* slowly unless shared libraries are mode 555, ...\n  postinstall_cmds='chmod 555 $lib'\n  # or fails outright, so override atomically:\n  install_override_mode=555\n  ;;\n\ninterix[3-9]*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $host_os in\n    nonstopux*) version_type=nonstopux ;;\n    *)\n\tif test yes = \"$lt_cv_prog_gnu_ld\"; then\n\t\tversion_type=linux # correct to gnu/linux during the next big refactor\n\telse\n\t\tversion_type=irix\n\tfi ;;\n  esac\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='$libname$release$shared_ext$major'\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext'\n  case $host_os in\n  irix5* | nonstopux*)\n    libsuff= shlibsuff=\n    ;;\n  *)\n    case $LD in # libtool.m4 will add one of these switches to LD\n    *-32|*\"-32 \"|*-melf32bsmip|*\"-melf32bsmip \")\n      libsuff= shlibsuff= libmagic=32-bit;;\n    *-n32|*\"-n32 \"|*-melf32bmipn32|*\"-melf32bmipn32 \")\n      libsuff=32 shlibsuff=N32 libmagic=N32;;\n    *-64|*\"-64 \"|*-melf64bmip|*\"-melf64bmip \")\n      libsuff=64 shlibsuff=64 libmagic=64-bit;;\n    *) libsuff= shlibsuff= libmagic=never-match;;\n    esac\n    ;;\n  esac\n  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_search_path_spec=\"/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff\"\n  sys_lib_dlsearch_path_spec=\"/usr/lib$libsuff /lib$libsuff\"\n  hardcode_into_libs=yes\n  ;;\n\n# No shared lib support for Linux oldld, aout, or coff.\nlinux*oldld* | linux*aout* | linux*coff*)\n  dynamic_linker=no\n  ;;\n\nlinux*android*)\n  version_type=none # Android doesn't support versioned libraries.\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext'\n  soname_spec='$libname$release$shared_ext'\n  finish_cmds=\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  dynamic_linker='Android linker'\n  # Don't embed -rpath directories since the linker doesn't support them.\n  hardcode_libdir_flag_spec='-L$libdir'\n  ;;\n\n# This must be glibc/ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -n $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n\n  # Some binutils ld are patched to set DT_RUNPATH\n  if ${lt_cv_shlibpath_overrides_runpath+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  lt_cv_shlibpath_overrides_runpath=no\n    save_LDFLAGS=$LDFLAGS\n    save_libdir=$libdir\n    eval \"libdir=/foo; wl=\\\"$lt_prog_compiler_wl\\\"; \\\n\t LDFLAGS=\\\"\\$LDFLAGS $hardcode_libdir_flag_spec\\\"\"\n    cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  if  ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep \"RUNPATH.*$libdir\" >/dev/null; then :\n  lt_cv_shlibpath_overrides_runpath=yes\nfi\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\n    LDFLAGS=$save_LDFLAGS\n    libdir=$save_libdir\n\nfi\n\n  shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  # Ideally, we could use ldconfig to report *all* directores which are\n  # searched for libraries, however this is still not possible.  Aside from not\n  # being certain /sbin/ldconfig is available, command\n  # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64,\n  # even though it is searched at run-time.  Try to do the best guess by\n  # appending ld.so.conf contents (and includes) to the search path.\n  if test -f /etc/ld.so.conf; then\n    lt_ld_extra=`awk '/^include / { system(sprintf(\"cd /etc; cat %s 2>/dev/null\", \\$2)); skip = 1; } { if (!skip) print \\$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[\t ]*hwcap[\t ]/d;s/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/\"//g;/^$/d' | tr '\\n' ' '`\n    sys_lib_dlsearch_path_spec=\"/lib /usr/lib $lt_ld_extra\"\n  fi\n\n  # We used to test for /lib/ld.so.1 and disable shared libraries on\n  # powerpc, because MkLinux only supported shared libraries with the\n  # GNU dynamic linker.  Since this was broken with cross compilers,\n  # most powerpc-linux boxes support dynamic linking these days and\n  # people can always --disable-shared, the test was removed, and we\n  # assume the GNU/Linux dynamic linker is in use.\n  dynamic_linker='GNU/Linux ld.so'\n  ;;\n\nnetbsd*)\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n    finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n    dynamic_linker='NetBSD (a.out) ld.so'\n  else\n    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n    soname_spec='$libname$release$shared_ext$major'\n    dynamic_linker='NetBSD ld.elf_so'\n  fi\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  ;;\n\nnewsos6)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\n*nto* | *qnx*)\n  version_type=qnx\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  dynamic_linker='ldqnx.so'\n  ;;\n\nopenbsd* | bitrig*)\n  version_type=sunos\n  sys_lib_dlsearch_path_spec=/usr/lib\n  need_lib_prefix=no\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\"; then\n    need_version=no\n  else\n    need_version=yes\n  fi\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\nos2*)\n  libname_spec='$name'\n  version_type=windows\n  shrext_cmds=.dll\n  need_version=no\n  need_lib_prefix=no\n  # OS/2 can only load a DLL with a base name of 8 characters or less.\n  soname_spec='`test -n \"$os2dllname\" && libname=\"$os2dllname\";\n    v=$($ECHO $release$versuffix | tr -d .-);\n    n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _);\n    $ECHO $n$v`$shared_ext'\n  library_names_spec='${libname}_dll.$libext'\n  dynamic_linker='OS/2 ld.exe'\n  shlibpath_var=BEGINLIBPATH\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n  postinstall_cmds='base_file=`basename \\$file`~\n    dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\$base_file'\\''i; $ECHO \\$dlname'\\''`~\n    dldir=$destdir/`dirname \\$dlpath`~\n    test -d \\$dldir || mkdir -p \\$dldir~\n    $install_prog $dir/$dlname \\$dldir/$dlname~\n    chmod a+x \\$dldir/$dlname~\n    if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n      eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n    fi'\n  postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; $ECHO \\$dlname'\\''`~\n    dlpath=$dir/\\$dldll~\n    $RM \\$dlpath'\n  ;;\n\nosf3* | osf4* | osf5*)\n  version_type=osf\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='$libname$release$shared_ext$major'\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib\"\n  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n  ;;\n\nrdos*)\n  dynamic_linker=no\n  ;;\n\nsolaris*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  # ldd complains unless libraries are executable\n  postinstall_cmds='chmod +x $lib'\n  ;;\n\nsunos4*)\n  version_type=sunos\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/usr/etc\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  if test yes = \"$with_gnu_ld\"; then\n    need_lib_prefix=no\n  fi\n  need_version=yes\n  ;;\n\nsysv4 | sysv4.3*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_vendor in\n    sni)\n      shlibpath_overrides_runpath=no\n      need_lib_prefix=no\n      runpath_var=LD_RUN_PATH\n      ;;\n    siemens)\n      need_lib_prefix=no\n      ;;\n    motorola)\n      need_lib_prefix=no\n      need_version=no\n      shlibpath_overrides_runpath=no\n      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'\n      ;;\n  esac\n  ;;\n\nsysv4*MP*)\n  if test -d /usr/nec; then\n    version_type=linux # correct to gnu/linux during the next big refactor\n    library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext'\n    soname_spec='$libname$shared_ext.$major'\n    shlibpath_var=LD_LIBRARY_PATH\n  fi\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  version_type=sco\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  if test yes = \"$with_gnu_ld\"; then\n    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'\n  else\n    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'\n    case $host_os in\n      sco3.2v5*)\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec /lib\"\n\t;;\n    esac\n  fi\n  sys_lib_dlsearch_path_spec='/usr/lib'\n  ;;\n\ntpf*)\n  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.\n  version_type=linux # correct to gnu/linux during the next big refactor\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nuts4*)\n  version_type=linux # correct to gnu/linux during the next big refactor\n  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'\n  soname_spec='$libname$release$shared_ext$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\n*)\n  dynamic_linker=no\n  ;;\nesac\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $dynamic_linker\" >&5\n$as_echo \"$dynamic_linker\" >&6; }\ntest no = \"$dynamic_linker\" && can_build_shared=no\n\nvariables_saved_for_relink=\"PATH $shlibpath_var $runpath_var\"\nif test yes = \"$GCC\"; then\n  variables_saved_for_relink=\"$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH\"\nfi\n\nif test set = \"${lt_cv_sys_lib_search_path_spec+set}\"; then\n  sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec\nfi\n\nif test set = \"${lt_cv_sys_lib_dlsearch_path_spec+set}\"; then\n  sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec\nfi\n\n# remember unaugmented sys_lib_dlsearch_path content for libtool script decls...\nconfigure_time_dlsearch_path=$sys_lib_dlsearch_path_spec\n\n# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code\nfunc_munge_path_list sys_lib_dlsearch_path_spec \"$LT_SYS_LIBRARY_PATH\"\n\n# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool\nconfigure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs\" >&5\n$as_echo_n \"checking how to hardcode library paths into programs... \" >&6; }\nhardcode_action=\nif test -n \"$hardcode_libdir_flag_spec\" ||\n   test -n \"$runpath_var\" ||\n   test yes = \"$hardcode_automatic\"; then\n\n  # We can hardcode non-existent directories.\n  if test no != \"$hardcode_direct\" &&\n     # If the only mechanism to avoid hardcoding is shlibpath_var, we\n     # have to relink, otherwise we might link with an installed library\n     # when we should be linking with a yet-to-be-installed one\n     ## test no != \"$_LT_TAGVAR(hardcode_shlibpath_var, )\" &&\n     test no != \"$hardcode_minus_L\"; then\n    # Linking always hardcodes the temporary library directory.\n    hardcode_action=relink\n  else\n    # We can link without hardcoding, and we can hardcode nonexisting dirs.\n    hardcode_action=immediate\n  fi\nelse\n  # We cannot hardcode anything, or else we can only hardcode existing\n  # directories.\n  hardcode_action=unsupported\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $hardcode_action\" >&5\n$as_echo \"$hardcode_action\" >&6; }\n\nif test relink = \"$hardcode_action\" ||\n   test yes = \"$inherit_rpath\"; then\n  # Fast installation is not supported\n  enable_fast_install=no\nelif test yes = \"$shlibpath_overrides_runpath\" ||\n     test no = \"$enable_shared\"; then\n  # Fast installation is not necessary\n  enable_fast_install=needless\nfi\n\n\n\n\n\n\n  if test yes != \"$enable_dlopen\"; then\n  enable_dlopen=unknown\n  enable_dlopen_self=unknown\n  enable_dlopen_self_static=unknown\nelse\n  lt_cv_dlopen=no\n  lt_cv_dlopen_libs=\n\n  case $host_os in\n  beos*)\n    lt_cv_dlopen=load_add_on\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n    ;;\n\n  mingw* | pw32* | cegcc*)\n    lt_cv_dlopen=LoadLibrary\n    lt_cv_dlopen_libs=\n    ;;\n\n  cygwin*)\n    lt_cv_dlopen=dlopen\n    lt_cv_dlopen_libs=\n    ;;\n\n  darwin*)\n    # if libdl is installed we need to link against it\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl\" >&5\n$as_echo_n \"checking for dlopen in -ldl... \" >&6; }\nif ${ac_cv_lib_dl_dlopen+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldl  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dl_dlopen=yes\nelse\n  ac_cv_lib_dl_dlopen=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen\" >&5\n$as_echo \"$ac_cv_lib_dl_dlopen\" >&6; }\nif test \"x$ac_cv_lib_dl_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl\nelse\n\n    lt_cv_dlopen=dyld\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n\nfi\n\n    ;;\n\n  tpf*)\n    # Don't try to run any link tests for TPF.  We know it's impossible\n    # because TPF is a cross-compiler, and we know how we open DSOs.\n    lt_cv_dlopen=dlopen\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=no\n    ;;\n\n  *)\n    ac_fn_c_check_func \"$LINENO\" \"shl_load\" \"ac_cv_func_shl_load\"\nif test \"x$ac_cv_func_shl_load\" = xyes; then :\n  lt_cv_dlopen=shl_load\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld\" >&5\n$as_echo_n \"checking for shl_load in -ldld... \" >&6; }\nif ${ac_cv_lib_dld_shl_load+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldld  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar shl_load ();\nint\nmain ()\n{\nreturn shl_load ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dld_shl_load=yes\nelse\n  ac_cv_lib_dld_shl_load=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load\" >&5\n$as_echo \"$ac_cv_lib_dld_shl_load\" >&6; }\nif test \"x$ac_cv_lib_dld_shl_load\" = xyes; then :\n  lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld\nelse\n  ac_fn_c_check_func \"$LINENO\" \"dlopen\" \"ac_cv_func_dlopen\"\nif test \"x$ac_cv_func_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl\" >&5\n$as_echo_n \"checking for dlopen in -ldl... \" >&6; }\nif ${ac_cv_lib_dl_dlopen+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldl  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dl_dlopen=yes\nelse\n  ac_cv_lib_dl_dlopen=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen\" >&5\n$as_echo \"$ac_cv_lib_dl_dlopen\" >&6; }\nif test \"x$ac_cv_lib_dl_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld\" >&5\n$as_echo_n \"checking for dlopen in -lsvld... \" >&6; }\nif ${ac_cv_lib_svld_dlopen+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-lsvld  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_svld_dlopen=yes\nelse\n  ac_cv_lib_svld_dlopen=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen\" >&5\n$as_echo \"$ac_cv_lib_svld_dlopen\" >&6; }\nif test \"x$ac_cv_lib_svld_dlopen\" = xyes; then :\n  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld\nelse\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld\" >&5\n$as_echo_n \"checking for dld_link in -ldld... \" >&6; }\nif ${ac_cv_lib_dld_dld_link+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldld  $LIBS\"\ncat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dld_link ();\nint\nmain ()\n{\nreturn dld_link ();\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_link \"$LINENO\"; then :\n  ac_cv_lib_dld_dld_link=yes\nelse\n  ac_cv_lib_dld_dld_link=no\nfi\nrm -f core conftest.err conftest.$ac_objext \\\n    conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link\" >&5\n$as_echo \"$ac_cv_lib_dld_dld_link\" >&6; }\nif test \"x$ac_cv_lib_dld_dld_link\" = xyes; then :\n  lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n    ;;\n  esac\n\n  if test no = \"$lt_cv_dlopen\"; then\n    enable_dlopen=no\n  else\n    enable_dlopen=yes\n  fi\n\n  case $lt_cv_dlopen in\n  dlopen)\n    save_CPPFLAGS=$CPPFLAGS\n    test yes = \"$ac_cv_header_dlfcn_h\" && CPPFLAGS=\"$CPPFLAGS -DHAVE_DLFCN_H\"\n\n    save_LDFLAGS=$LDFLAGS\n    wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $export_dynamic_flag_spec\\\"\n\n    save_LIBS=$LIBS\n    LIBS=\"$lt_cv_dlopen_libs $LIBS\"\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself\" >&5\n$as_echo_n \"checking whether a program can dlopen itself... \" >&6; }\nif ${lt_cv_dlopen_self+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  \t  if test yes = \"$cross_compiling\"; then :\n  lt_cv_dlopen_self=cross\nelse\n  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2\n  lt_status=$lt_dlunknown\n  cat > conftest.$ac_ext <<_LT_EOF\n#line $LINENO \"configure\"\n#include \"confdefs.h\"\n\n#if HAVE_DLFCN_H\n#include <dlfcn.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef RTLD_GLOBAL\n#  define LT_DLGLOBAL\t\tRTLD_GLOBAL\n#else\n#  ifdef DL_GLOBAL\n#    define LT_DLGLOBAL\t\tDL_GLOBAL\n#  else\n#    define LT_DLGLOBAL\t\t0\n#  endif\n#endif\n\n/* We may have to define LT_DLLAZY_OR_NOW in the command line if we\n   find out it does not work in some platform. */\n#ifndef LT_DLLAZY_OR_NOW\n#  ifdef RTLD_LAZY\n#    define LT_DLLAZY_OR_NOW\t\tRTLD_LAZY\n#  else\n#    ifdef DL_LAZY\n#      define LT_DLLAZY_OR_NOW\t\tDL_LAZY\n#    else\n#      ifdef RTLD_NOW\n#        define LT_DLLAZY_OR_NOW\tRTLD_NOW\n#      else\n#        ifdef DL_NOW\n#          define LT_DLLAZY_OR_NOW\tDL_NOW\n#        else\n#          define LT_DLLAZY_OR_NOW\t0\n#        endif\n#      endif\n#    endif\n#  endif\n#endif\n\n/* When -fvisibility=hidden is used, assume the code has been annotated\n   correspondingly for the symbols needed.  */\n#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))\nint fnord () __attribute__((visibility(\"default\")));\n#endif\n\nint fnord () { return 42; }\nint main ()\n{\n  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);\n  int status = $lt_dlunknown;\n\n  if (self)\n    {\n      if (dlsym (self,\"fnord\"))       status = $lt_dlno_uscore;\n      else\n        {\n\t  if (dlsym( self,\"_fnord\"))  status = $lt_dlneed_uscore;\n          else puts (dlerror ());\n\t}\n      /* dlclose (self); */\n    }\n  else\n    puts (dlerror ());\n\n  return status;\n}\n_LT_EOF\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_link\\\"\"; } >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s \"conftest$ac_exeext\" 2>/dev/null; then\n    (./conftest; exit; ) >&5 2>/dev/null\n    lt_status=$?\n    case x$lt_status in\n      x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;\n      x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;\n      x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;;\n    esac\n  else :\n    # compilation failed\n    lt_cv_dlopen_self=no\n  fi\nfi\nrm -fr conftest*\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self\" >&5\n$as_echo \"$lt_cv_dlopen_self\" >&6; }\n\n    if test yes = \"$lt_cv_dlopen_self\"; then\n      wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $lt_prog_compiler_static\\\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself\" >&5\n$as_echo_n \"checking whether a statically linked program can dlopen itself... \" >&6; }\nif ${lt_cv_dlopen_self_static+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n  \t  if test yes = \"$cross_compiling\"; then :\n  lt_cv_dlopen_self_static=cross\nelse\n  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2\n  lt_status=$lt_dlunknown\n  cat > conftest.$ac_ext <<_LT_EOF\n#line $LINENO \"configure\"\n#include \"confdefs.h\"\n\n#if HAVE_DLFCN_H\n#include <dlfcn.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef RTLD_GLOBAL\n#  define LT_DLGLOBAL\t\tRTLD_GLOBAL\n#else\n#  ifdef DL_GLOBAL\n#    define LT_DLGLOBAL\t\tDL_GLOBAL\n#  else\n#    define LT_DLGLOBAL\t\t0\n#  endif\n#endif\n\n/* We may have to define LT_DLLAZY_OR_NOW in the command line if we\n   find out it does not work in some platform. */\n#ifndef LT_DLLAZY_OR_NOW\n#  ifdef RTLD_LAZY\n#    define LT_DLLAZY_OR_NOW\t\tRTLD_LAZY\n#  else\n#    ifdef DL_LAZY\n#      define LT_DLLAZY_OR_NOW\t\tDL_LAZY\n#    else\n#      ifdef RTLD_NOW\n#        define LT_DLLAZY_OR_NOW\tRTLD_NOW\n#      else\n#        ifdef DL_NOW\n#          define LT_DLLAZY_OR_NOW\tDL_NOW\n#        else\n#          define LT_DLLAZY_OR_NOW\t0\n#        endif\n#      endif\n#    endif\n#  endif\n#endif\n\n/* When -fvisibility=hidden is used, assume the code has been annotated\n   correspondingly for the symbols needed.  */\n#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))\nint fnord () __attribute__((visibility(\"default\")));\n#endif\n\nint fnord () { return 42; }\nint main ()\n{\n  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);\n  int status = $lt_dlunknown;\n\n  if (self)\n    {\n      if (dlsym (self,\"fnord\"))       status = $lt_dlno_uscore;\n      else\n        {\n\t  if (dlsym( self,\"_fnord\"))  status = $lt_dlneed_uscore;\n          else puts (dlerror ());\n\t}\n      /* dlclose (self); */\n    }\n  else\n    puts (dlerror ());\n\n  return status;\n}\n_LT_EOF\n  if { { eval echo \"\\\"\\$as_me\\\":${as_lineno-$LINENO}: \\\"$ac_link\\\"\"; } >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  $as_echo \"$as_me:${as_lineno-$LINENO}: \\$? = $ac_status\" >&5\n  test $ac_status = 0; } && test -s \"conftest$ac_exeext\" 2>/dev/null; then\n    (./conftest; exit; ) >&5 2>/dev/null\n    lt_status=$?\n    case x$lt_status in\n      x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;\n      x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;\n      x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;;\n    esac\n  else :\n    # compilation failed\n    lt_cv_dlopen_self_static=no\n  fi\nfi\nrm -fr conftest*\n\n\nfi\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static\" >&5\n$as_echo \"$lt_cv_dlopen_self_static\" >&6; }\n    fi\n\n    CPPFLAGS=$save_CPPFLAGS\n    LDFLAGS=$save_LDFLAGS\n    LIBS=$save_LIBS\n    ;;\n  esac\n\n  case $lt_cv_dlopen_self in\n  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;\n  *) enable_dlopen_self=unknown ;;\n  esac\n\n  case $lt_cv_dlopen_self_static in\n  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;\n  *) enable_dlopen_self_static=unknown ;;\n  esac\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nstriplib=\nold_striplib=\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible\" >&5\n$as_echo_n \"checking whether stripping libraries is possible... \" >&6; }\nif test -n \"$STRIP\" && $STRIP -V 2>&1 | $GREP \"GNU strip\" >/dev/null; then\n  test -z \"$old_striplib\" && old_striplib=\"$STRIP --strip-debug\"\n  test -z \"$striplib\" && striplib=\"$STRIP --strip-unneeded\"\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\nelse\n# FIXME - insert some real tests, host_os isn't really good enough\n  case $host_os in\n  darwin*)\n    if test -n \"$STRIP\"; then\n      striplib=\"$STRIP -x\"\n      old_striplib=\"$STRIP -S\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: result: yes\" >&5\n$as_echo \"yes\" >&6; }\n    else\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n    fi\n    ;;\n  *)\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: no\" >&5\n$as_echo \"no\" >&6; }\n    ;;\n  esac\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n  # Report what library types will actually be built\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries\" >&5\n$as_echo_n \"checking if libtool supports shared libraries... \" >&6; }\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $can_build_shared\" >&5\n$as_echo \"$can_build_shared\" >&6; }\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries\" >&5\n$as_echo_n \"checking whether to build shared libraries... \" >&6; }\n  test no = \"$can_build_shared\" && enable_shared=no\n\n  # On AIX, shared libraries and static libraries use the same namespace, and\n  # are all built from PIC.\n  case $host_os in\n  aix3*)\n    test yes = \"$enable_shared\" && enable_static=no\n    if test -n \"$RANLIB\"; then\n      archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n      postinstall_cmds='$RANLIB $lib'\n    fi\n    ;;\n\n  aix[4-9]*)\n    if test ia64 != \"$host_cpu\"; then\n      case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in\n      yes,aix,yes) ;;\t\t\t# shared object as lib.so file only\n      yes,svr4,*) ;;\t\t\t# shared object as lib.so archive member only\n      yes,*) enable_static=no ;;\t# shared object in lib.a archive as well\n      esac\n    fi\n    ;;\n  esac\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $enable_shared\" >&5\n$as_echo \"$enable_shared\" >&6; }\n\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether to build static libraries\" >&5\n$as_echo_n \"checking whether to build static libraries... \" >&6; }\n  # Make sure either enable_shared or enable_static is yes.\n  test yes = \"$enable_shared\" || enable_static=yes\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $enable_static\" >&5\n$as_echo \"$enable_static\" >&6; }\n\n\n\n\nfi\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nCC=$lt_save_CC\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n        ac_config_commands=\"$ac_config_commands libtool\"\n\n\n\n\n# Only expand once:\n\n\n\n\n  CFLAG_VISIBILITY=\n  HAVE_VISIBILITY=0\n  if test -n \"$GCC\"; then\n                { $as_echo \"$as_me:${as_lineno-$LINENO}: checking whether the -Werror option is usable\" >&5\n$as_echo_n \"checking whether the -Werror option is usable... \" >&6; }\n    if ${gl_cv_cc_vis_werror+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n      gl_save_CFLAGS=\"$CFLAGS\"\n      CFLAGS=\"$CFLAGS -Werror\"\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_cc_vis_werror=yes\nelse\n  gl_cv_cc_vis_werror=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n      CFLAGS=\"$gl_save_CFLAGS\"\nfi\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_cc_vis_werror\" >&5\n$as_echo \"$gl_cv_cc_vis_werror\" >&6; }\n        { $as_echo \"$as_me:${as_lineno-$LINENO}: checking for simple visibility declarations\" >&5\n$as_echo_n \"checking for simple visibility declarations... \" >&6; }\n    if ${gl_cv_cc_visibility+:} false; then :\n  $as_echo_n \"(cached) \" >&6\nelse\n\n      gl_save_CFLAGS=\"$CFLAGS\"\n      CFLAGS=\"$CFLAGS -fvisibility=hidden\"\n                                    if test $gl_cv_cc_vis_werror = yes; then\n        CFLAGS=\"$CFLAGS -Werror\"\n      fi\n      cat confdefs.h - <<_ACEOF >conftest.$ac_ext\n/* end confdefs.h.  */\nextern __attribute__((__visibility__(\"hidden\"))) int hiddenvar;\n             extern __attribute__((__visibility__(\"default\"))) int exportedvar;\n             extern __attribute__((__visibility__(\"hidden\"))) int hiddenfunc (void);\n             extern __attribute__((__visibility__(\"default\"))) int exportedfunc (void);\n             void dummyfunc (void) {}\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nif ac_fn_c_try_compile \"$LINENO\"; then :\n  gl_cv_cc_visibility=yes\nelse\n  gl_cv_cc_visibility=no\nfi\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n      CFLAGS=\"$gl_save_CFLAGS\"\nfi\n\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: result: $gl_cv_cc_visibility\" >&5\n$as_echo \"$gl_cv_cc_visibility\" >&6; }\n    if test $gl_cv_cc_visibility = yes; then\n      CFLAG_VISIBILITY=\"-fvisibility=hidden\"\n      HAVE_VISIBILITY=1\n    fi\n  fi\n\n\n\ncat >>confdefs.h <<_ACEOF\n#define HAVE_VISIBILITY $HAVE_VISIBILITY\n_ACEOF\n\n\n\n\ncase \"$host_os\" in\n  linux* | solaris* | osf*)\n    PLUGLIB=\"preloadable_libiconv.so\" ;;\n  *)\n    PLUGLIB=\"\"\nesac\n\n\nac_config_files=\"$ac_config_files Makefile\"\n\ncat >confcache <<\\_ACEOF\n# This file is a shell script that caches the results of configure\n# tests run on this system so they can be shared between configure\n# scripts and configure runs, see configure's option --config-cache.\n# It is not useful on other systems.  If it contains results you don't\n# want to keep, you may remove or edit it.\n#\n# config.status only pays attention to the cache file if you give it\n# the --recheck option to rerun configure.\n#\n# `ac_cv_env_foo' variables (set or unset) will be overridden when\n# loading this file, other *unset* `ac_cv_foo' will be assigned the\n# following values.\n\n_ACEOF\n\n# The following way of writing the cache mishandles newlines in values,\n# but we know of no workaround that is simple, portable, and efficient.\n# So, we kill variables containing newlines.\n# Ultrix sh set writes to stderr and can't be redirected directly,\n# and sets the high bit in the cache file unless we assign to the vars.\n(\n  for ac_var in `(set) 2>&1 | sed -n 's/^\\([a-zA-Z_][a-zA-Z0-9_]*\\)=.*/\\1/p'`; do\n    eval ac_val=\\$$ac_var\n    case $ac_val in #(\n    *${as_nl}*)\n      case $ac_var in #(\n      *_cv_*) { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline\" >&5\n$as_echo \"$as_me: WARNING: cache variable $ac_var contains a newline\" >&2;} ;;\n      esac\n      case $ac_var in #(\n      _ | IFS | as_nl) ;; #(\n      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(\n      *) { eval $ac_var=; unset $ac_var;} ;;\n      esac ;;\n    esac\n  done\n\n  (set) 2>&1 |\n    case $as_nl`(ac_space=' '; set) 2>&1` in #(\n    *${as_nl}ac_space=\\ *)\n      # `set' does not quote correctly, so add quotes: double-quote\n      # substitution turns \\\\\\\\ into \\\\, and sed turns \\\\ into \\.\n      sed -n \\\n\t\"s/'/'\\\\\\\\''/g;\n\t  s/^\\\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\\\)=\\\\(.*\\\\)/\\\\1='\\\\2'/p\"\n      ;; #(\n    *)\n      # `set' quotes correctly as required by POSIX, so do not add quotes.\n      sed -n \"/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p\"\n      ;;\n    esac |\n    sort\n) |\n  sed '\n     /^ac_cv_env_/b end\n     t clear\n     :clear\n     s/^\\([^=]*\\)=\\(.*[{}].*\\)$/test \"${\\1+set}\" = set || &/\n     t end\n     s/^\\([^=]*\\)=\\(.*\\)$/\\1=${\\1=\\2}/\n     :end' >>confcache\nif diff \"$cache_file\" confcache >/dev/null 2>&1; then :; else\n  if test -w \"$cache_file\"; then\n    if test \"x$cache_file\" != \"x/dev/null\"; then\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: updating cache $cache_file\" >&5\n$as_echo \"$as_me: updating cache $cache_file\" >&6;}\n      if test ! -f \"$cache_file\" || test -h \"$cache_file\"; then\n\tcat confcache >\"$cache_file\"\n      else\n        case $cache_file in #(\n        */* | ?:*)\n\t  mv -f confcache \"$cache_file\"$$ &&\n\t  mv -f \"$cache_file\"$$ \"$cache_file\" ;; #(\n        *)\n\t  mv -f confcache \"$cache_file\" ;;\n\tesac\n      fi\n    fi\n  else\n    { $as_echo \"$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file\" >&5\n$as_echo \"$as_me: not updating unwritable cache $cache_file\" >&6;}\n  fi\nfi\nrm -f confcache\n\ntest \"x$prefix\" = xNONE && prefix=$ac_default_prefix\n# Let make expand exec_prefix.\ntest \"x$exec_prefix\" = xNONE && exec_prefix='${prefix}'\n\n# Transform confdefs.h into DEFS.\n# Protect against shell expansion while executing Makefile rules.\n# Protect against Makefile macro expansion.\n#\n# If the first sed substitution is executed (which looks for macros that\n# take arguments), then branch to the quote section.  Otherwise,\n# look for a macro that doesn't take arguments.\nac_script='\n:mline\n/\\\\$/{\n N\n s,\\\\\\n,,\n b mline\n}\nt clear\n:clear\ns/^[\t ]*#[\t ]*define[\t ][\t ]*\\([^\t (][^\t (]*([^)]*)\\)[\t ]*\\(.*\\)/-D\\1=\\2/g\nt quote\ns/^[\t ]*#[\t ]*define[\t ][\t ]*\\([^\t ][^\t ]*\\)[\t ]*\\(.*\\)/-D\\1=\\2/g\nt quote\nb any\n:quote\ns/[\t `~#$^&*(){}\\\\|;'\\''\"<>?]/\\\\&/g\ns/\\[/\\\\&/g\ns/\\]/\\\\&/g\ns/\\$/$$/g\nH\n:any\n${\n\tg\n\ts/^\\n//\n\ts/\\n/ /g\n\tp\n}\n'\nDEFS=`sed -n \"$ac_script\" confdefs.h`\n\n\nac_libobjs=\nac_ltlibobjs=\nU=\nfor ac_i in : $LIBOBJS; do test \"x$ac_i\" = x: && continue\n  # 1. Remove the extension, and $U if already installed.\n  ac_script='s/\\$U\\././;s/\\.o$//;s/\\.obj$//'\n  ac_i=`$as_echo \"$ac_i\" | sed \"$ac_script\"`\n  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR\n  #    will be set to the directory where LIBOBJS objects are built.\n  as_fn_append ac_libobjs \" \\${LIBOBJDIR}$ac_i\\$U.$ac_objext\"\n  as_fn_append ac_ltlibobjs \" \\${LIBOBJDIR}$ac_i\"'$U.lo'\ndone\nLIBOBJS=$ac_libobjs\n\nLTLIBOBJS=$ac_ltlibobjs\n\n\n\n: \"${CONFIG_STATUS=./config.status}\"\nac_write_fail=0\nac_clean_files_save=$ac_clean_files\nac_clean_files=\"$ac_clean_files $CONFIG_STATUS\"\n{ $as_echo \"$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS\" >&5\n$as_echo \"$as_me: creating $CONFIG_STATUS\" >&6;}\nas_write_fail=0\ncat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1\n#! $SHELL\n# Generated by $as_me.\n# Run this file to recreate the current configuration.\n# Compiler output produced by configure, useful for debugging\n# configure, is in config.log if it exists.\n\ndebug=false\nac_cs_recheck=false\nac_cs_silent=false\n\nSHELL=\\${CONFIG_SHELL-$SHELL}\nexport SHELL\n_ASEOF\ncat >>$CONFIG_STATUS <<\\_ASEOF || as_write_fail=1\n## -------------------- ##\n## M4sh Initialization. ##\n## -------------------- ##\n\n# Be more Bourne compatible\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in #(\n  *posix*) :\n    set -o posix ;; #(\n  *) :\n     ;;\nesac\nfi\n\n\nas_nl='\n'\nexport as_nl\n# Printing a long string crashes Solaris 7 /usr/bin/printf.\nas_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo\nas_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo\n# Prefer a ksh shell builtin over an external printf program on Solaris,\n# but without wasting forks for bash or zsh.\nif test -z \"$BASH_VERSION$ZSH_VERSION\" \\\n    && (test \"X`print -r -- $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='print -r --'\n  as_echo_n='print -rn --'\nelif (test \"X`printf %s $as_echo`\" = \"X$as_echo\") 2>/dev/null; then\n  as_echo='printf %s\\n'\n  as_echo_n='printf %s'\nelse\n  if test \"X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`\" = \"X-n $as_echo\"; then\n    as_echo_body='eval /usr/ucb/echo -n \"$1$as_nl\"'\n    as_echo_n='/usr/ucb/echo -n'\n  else\n    as_echo_body='eval expr \"X$1\" : \"X\\\\(.*\\\\)\"'\n    as_echo_n_body='eval\n      arg=$1;\n      case $arg in #(\n      *\"$as_nl\"*)\n\texpr \"X$arg\" : \"X\\\\(.*\\\\)$as_nl\";\n\targ=`expr \"X$arg\" : \".*$as_nl\\\\(.*\\\\)\"`;;\n      esac;\n      expr \"X$arg\" : \"X\\\\(.*\\\\)\" | tr -d \"$as_nl\"\n    '\n    export as_echo_n_body\n    as_echo_n='sh -c $as_echo_n_body as_echo'\n  fi\n  export as_echo_body\n  as_echo='sh -c $as_echo_body as_echo'\nfi\n\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n# IFS\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent editors from complaining about space-tab.\n# (If _AS_PATH_WALK were called with IFS unset, it would disable word\n# splitting by setting IFS to empty value.)\nIFS=\" \"\"\t$as_nl\"\n\n# Find who we are.  Look in the path if we contain no directory separator.\nas_myself=\ncase $0 in #((\n  *[\\\\/]* ) as_myself=$0 ;;\n  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n    test -r \"$as_dir/$0\" && as_myself=$as_dir/$0 && break\n  done\nIFS=$as_save_IFS\n\n     ;;\nesac\n# We did not find ourselves, most probably we were run as `sh COMMAND'\n# in which case we are not to be found in the path.\nif test \"x$as_myself\" = x; then\n  as_myself=$0\nfi\nif test ! -f \"$as_myself\"; then\n  $as_echo \"$as_myself: error: cannot find myself; rerun with an absolute file name\" >&2\n  exit 1\nfi\n\n# Unset variables that we do not need and which cause bugs (e.g. in\n# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the \"|| exit 1\"\n# suppresses any \"Segmentation fault\" message there.  '((' could\n# trigger a bug in pdksh 5.2.14.\nfor as_var in BASH_ENV ENV MAIL MAILPATH\ndo eval test x\\${$as_var+set} = xset \\\n  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :\ndone\nPS1='$ '\nPS2='> '\nPS4='+ '\n\n# NLS nuisances.\nLC_ALL=C\nexport LC_ALL\nLANGUAGE=C\nexport LANGUAGE\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n\n# as_fn_error STATUS ERROR [LINENO LOG_FD]\n# ----------------------------------------\n# Output \"`basename $0`: error: ERROR\" to stderr. If LINENO and LOG_FD are\n# provided, also output the error to LOG_FD, referencing LINENO. Then exit the\n# script with STATUS, using 1 if that was 0.\nas_fn_error ()\n{\n  as_status=$1; test $as_status -eq 0 && as_status=1\n  if test \"$4\"; then\n    as_lineno=${as_lineno-\"$3\"} as_lineno_stack=as_lineno_stack=$as_lineno_stack\n    $as_echo \"$as_me:${as_lineno-$LINENO}: error: $2\" >&$4\n  fi\n  $as_echo \"$as_me: error: $2\" >&2\n  as_fn_exit $as_status\n} # as_fn_error\n\n\n# as_fn_set_status STATUS\n# -----------------------\n# Set $? to STATUS, without forking.\nas_fn_set_status ()\n{\n  return $1\n} # as_fn_set_status\n\n# as_fn_exit STATUS\n# -----------------\n# Exit the shell with STATUS, even in a \"trap 0\" or \"set -e\" context.\nas_fn_exit ()\n{\n  set +e\n  as_fn_set_status $1\n  exit $1\n} # as_fn_exit\n\n# as_fn_unset VAR\n# ---------------\n# Portably unset VAR.\nas_fn_unset ()\n{\n  { eval $1=; unset $1;}\n}\nas_unset=as_fn_unset\n# as_fn_append VAR VALUE\n# ----------------------\n# Append the text in VALUE to the end of the definition contained in VAR. Take\n# advantage of any shell optimizations that allow amortized linear growth over\n# repeated appends, instead of the typical quadratic growth present in naive\n# implementations.\nif (eval \"as_var=1; as_var+=2; test x\\$as_var = x12\") 2>/dev/null; then :\n  eval 'as_fn_append ()\n  {\n    eval $1+=\\$2\n  }'\nelse\n  as_fn_append ()\n  {\n    eval $1=\\$$1\\$2\n  }\nfi # as_fn_append\n\n# as_fn_arith ARG...\n# ------------------\n# Perform arithmetic evaluation on the ARGs, and store the result in the\n# global $as_val. Take advantage of shells that can avoid forks. The arguments\n# must be portable across $(()) and expr.\nif (eval \"test \\$(( 1 + 1 )) = 2\") 2>/dev/null; then :\n  eval 'as_fn_arith ()\n  {\n    as_val=$(( $* ))\n  }'\nelse\n  as_fn_arith ()\n  {\n    as_val=`expr \"$@\" || test $? -eq 1`\n  }\nfi # as_fn_arith\n\n\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nif (basename -- /) >/dev/null 2>&1 && test \"X`basename -- / 2>&1`\" = \"X/\"; then\n  as_basename=basename\nelse\n  as_basename=false\nfi\n\nif (as_dir=`dirname -- /` && test \"X$as_dir\" = X/) >/dev/null 2>&1; then\n  as_dirname=dirname\nelse\n  as_dirname=false\nfi\n\nas_me=`$as_basename -- \"$0\" ||\n$as_expr X/\"$0\" : '.*/\\([^/][^/]*\\)/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X/\"$0\" |\n    sed '/^.*\\/\\([^/][^/]*\\)\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n\n# Avoid depending upon Character Ranges.\nas_cr_letters='abcdefghijklmnopqrstuvwxyz'\nas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nas_cr_Letters=$as_cr_letters$as_cr_LETTERS\nas_cr_digits='0123456789'\nas_cr_alnum=$as_cr_Letters$as_cr_digits\n\nECHO_C= ECHO_N= ECHO_T=\ncase `echo -n x` in #(((((\n-n*)\n  case `echo 'xy\\c'` in\n  *c*) ECHO_T='\t';;\t# ECHO_T is single tab character.\n  xy)  ECHO_C='\\c';;\n  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null\n       ECHO_T='\t';;\n  esac;;\n*)\n  ECHO_N='-n';;\nesac\n\nrm -f conf$$ conf$$.exe conf$$.file\nif test -d conf$$.dir; then\n  rm -f conf$$.dir/conf$$.file\nelse\n  rm -f conf$$.dir\n  mkdir conf$$.dir 2>/dev/null\nfi\nif (echo >conf$$.file) 2>/dev/null; then\n  if ln -s conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s='ln -s'\n    # ... but there are two gotchas:\n    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.\n    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.\n    # In both cases, we have to default to `cp -pR'.\n    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||\n      as_ln_s='cp -pR'\n  elif ln conf$$.file conf$$ 2>/dev/null; then\n    as_ln_s=ln\n  else\n    as_ln_s='cp -pR'\n  fi\nelse\n  as_ln_s='cp -pR'\nfi\nrm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file\nrmdir conf$$.dir 2>/dev/null\n\n\n# as_fn_mkdir_p\n# -------------\n# Create \"$as_dir\" as a directory, including parents if necessary.\nas_fn_mkdir_p ()\n{\n\n  case $as_dir in #(\n  -*) as_dir=./$as_dir;;\n  esac\n  test -d \"$as_dir\" || eval $as_mkdir_p || {\n    as_dirs=\n    while :; do\n      case $as_dir in #(\n      *\\'*) as_qdir=`$as_echo \"$as_dir\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; #'(\n      *) as_qdir=$as_dir;;\n      esac\n      as_dirs=\"'$as_qdir' $as_dirs\"\n      as_dir=`$as_dirname -- \"$as_dir\" ||\n$as_expr X\"$as_dir\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_dir\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$as_dir\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      test -d \"$as_dir\" && break\n    done\n    test -z \"$as_dirs\" || eval \"mkdir $as_dirs\"\n  } || test -d \"$as_dir\" || as_fn_error $? \"cannot create directory $as_dir\"\n\n\n} # as_fn_mkdir_p\nif mkdir -p . 2>/dev/null; then\n  as_mkdir_p='mkdir -p \"$as_dir\"'\nelse\n  test -d ./-p && rmdir ./-p\n  as_mkdir_p=false\nfi\n\n\n# as_fn_executable_p FILE\n# -----------------------\n# Test if FILE is an executable regular file.\nas_fn_executable_p ()\n{\n  test -f \"$1\" && test -x \"$1\"\n} # as_fn_executable_p\nas_test_x='test -x'\nas_executable_p=as_fn_executable_p\n\n# Sed expression to map a string onto a valid CPP name.\nas_tr_cpp=\"eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'\"\n\n# Sed expression to map a string onto a valid variable name.\nas_tr_sh=\"eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'\"\n\n\nexec 6>&1\n## ----------------------------------- ##\n## Main body of $CONFIG_STATUS script. ##\n## ----------------------------------- ##\n_ASEOF\ntest $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n# Save the log message, to keep $0 and so on meaningful, and to\n# report actual input values of CONFIG_FILES etc. instead of their\n# values after options handling.\nac_log=\"\nThis file was extended by libiconv $as_me 0, which was\ngenerated by GNU Autoconf 2.69.  Invocation command line was\n\n  CONFIG_FILES    = $CONFIG_FILES\n  CONFIG_HEADERS  = $CONFIG_HEADERS\n  CONFIG_LINKS    = $CONFIG_LINKS\n  CONFIG_COMMANDS = $CONFIG_COMMANDS\n  $ $0 $@\n\non `(hostname || uname -n) 2>/dev/null | sed 1q`\n\"\n\n_ACEOF\n\ncase $ac_config_files in *\"\n\"*) set x $ac_config_files; shift; ac_config_files=$*;;\nesac\n\n\n\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n# Files that config.status was made for.\nconfig_files=\"$ac_config_files\"\nconfig_commands=\"$ac_config_commands\"\n\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nac_cs_usage=\"\\\n\\`$as_me' instantiates files and other configuration actions\nfrom templates according to the current configuration.  Unless the files\nand actions are specified as TAGs, all are instantiated by default.\n\nUsage: $0 [OPTION]... [TAG]...\n\n  -h, --help       print this help, then exit\n  -V, --version    print version number and configuration settings, then exit\n      --config     print configuration, then exit\n  -q, --quiet, --silent\n                   do not print progress messages\n  -d, --debug      don't remove temporary files\n      --recheck    update $as_me by reconfiguring in the same conditions\n      --file=FILE[:TEMPLATE]\n                   instantiate the configuration file FILE\n\nConfiguration files:\n$config_files\n\nConfiguration commands:\n$config_commands\n\nReport bugs to the package provider.\"\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\nac_cs_config=\"`$as_echo \"$ac_configure_args\" | sed 's/^ //; s/[\\\\\"\"\\`\\$]/\\\\\\\\&/g'`\"\nac_cs_version=\"\\\\\nlibiconv config.status 0\nconfigured by $0, generated by GNU Autoconf 2.69,\n  with options \\\\\"\\$ac_cs_config\\\\\"\n\nCopyright (C) 2012 Free Software Foundation, Inc.\nThis config.status script is free software; the Free Software Foundation\ngives unlimited permission to copy, distribute and modify it.\"\n\nac_pwd='$ac_pwd'\nsrcdir='$srcdir'\nINSTALL='$INSTALL'\nAWK='$AWK'\ntest -n \"\\$AWK\" || AWK=awk\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n# The default lists apply if the user does not specify any file.\nac_need_defaults=:\nwhile test $# != 0\ndo\n  case $1 in\n  --*=?*)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=`expr \"X$1\" : 'X[^=]*=\\(.*\\)'`\n    ac_shift=:\n    ;;\n  --*=)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=\n    ac_shift=:\n    ;;\n  *)\n    ac_option=$1\n    ac_optarg=$2\n    ac_shift=shift\n    ;;\n  esac\n\n  case $ac_option in\n  # Handling of the options.\n  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)\n    ac_cs_recheck=: ;;\n  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )\n    $as_echo \"$ac_cs_version\"; exit ;;\n  --config | --confi | --conf | --con | --co | --c )\n    $as_echo \"$ac_cs_config\"; exit ;;\n  --debug | --debu | --deb | --de | --d | -d )\n    debug=: ;;\n  --file | --fil | --fi | --f )\n    $ac_shift\n    case $ac_optarg in\n    *\\'*) ac_optarg=`$as_echo \"$ac_optarg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    '') as_fn_error $? \"missing file argument\" ;;\n    esac\n    as_fn_append CONFIG_FILES \" '$ac_optarg'\"\n    ac_need_defaults=false;;\n  --he | --h |  --help | --hel | -h )\n    $as_echo \"$ac_cs_usage\"; exit ;;\n  -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n  | -silent | --silent | --silen | --sile | --sil | --si | --s)\n    ac_cs_silent=: ;;\n\n  # This is an error.\n  -*) as_fn_error $? \"unrecognized option: \\`$1'\nTry \\`$0 --help' for more information.\" ;;\n\n  *) as_fn_append ac_config_targets \" $1\"\n     ac_need_defaults=false ;;\n\n  esac\n  shift\ndone\n\nac_configure_extra_args=\n\nif $ac_cs_silent; then\n  exec 6>/dev/null\n  ac_configure_extra_args=\"$ac_configure_extra_args --silent\"\nfi\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\nif \\$ac_cs_recheck; then\n  set X $SHELL '$0' $ac_configure_args \\$ac_configure_extra_args --no-create --no-recursion\n  shift\n  \\$as_echo \"running CONFIG_SHELL=$SHELL \\$*\" >&6\n  CONFIG_SHELL='$SHELL'\n  export CONFIG_SHELL\n  exec \"\\$@\"\nfi\n\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nexec 5>>config.log\n{\n  echo\n  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX\n## Running $as_me. ##\n_ASBOX\n  $as_echo \"$ac_log\"\n} >&5\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n#\n# INIT-COMMANDS\n#\n\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nsed_quote_subst='$sed_quote_subst'\ndouble_quote_subst='$double_quote_subst'\ndelay_variable_subst='$delay_variable_subst'\nmacro_version='`$ECHO \"$macro_version\" | $SED \"$delay_single_quote_subst\"`'\nmacro_revision='`$ECHO \"$macro_revision\" | $SED \"$delay_single_quote_subst\"`'\nAS='`$ECHO \"$AS\" | $SED \"$delay_single_quote_subst\"`'\nDLLTOOL='`$ECHO \"$DLLTOOL\" | $SED \"$delay_single_quote_subst\"`'\nOBJDUMP='`$ECHO \"$OBJDUMP\" | $SED \"$delay_single_quote_subst\"`'\nenable_shared='`$ECHO \"$enable_shared\" | $SED \"$delay_single_quote_subst\"`'\nenable_static='`$ECHO \"$enable_static\" | $SED \"$delay_single_quote_subst\"`'\npic_mode='`$ECHO \"$pic_mode\" | $SED \"$delay_single_quote_subst\"`'\nenable_fast_install='`$ECHO \"$enable_fast_install\" | $SED \"$delay_single_quote_subst\"`'\nshared_archive_member_spec='`$ECHO \"$shared_archive_member_spec\" | $SED \"$delay_single_quote_subst\"`'\nSHELL='`$ECHO \"$SHELL\" | $SED \"$delay_single_quote_subst\"`'\nECHO='`$ECHO \"$ECHO\" | $SED \"$delay_single_quote_subst\"`'\nPATH_SEPARATOR='`$ECHO \"$PATH_SEPARATOR\" | $SED \"$delay_single_quote_subst\"`'\nhost_alias='`$ECHO \"$host_alias\" | $SED \"$delay_single_quote_subst\"`'\nhost='`$ECHO \"$host\" | $SED \"$delay_single_quote_subst\"`'\nhost_os='`$ECHO \"$host_os\" | $SED \"$delay_single_quote_subst\"`'\nbuild_alias='`$ECHO \"$build_alias\" | $SED \"$delay_single_quote_subst\"`'\nbuild='`$ECHO \"$build\" | $SED \"$delay_single_quote_subst\"`'\nbuild_os='`$ECHO \"$build_os\" | $SED \"$delay_single_quote_subst\"`'\nSED='`$ECHO \"$SED\" | $SED \"$delay_single_quote_subst\"`'\nXsed='`$ECHO \"$Xsed\" | $SED \"$delay_single_quote_subst\"`'\nGREP='`$ECHO \"$GREP\" | $SED \"$delay_single_quote_subst\"`'\nEGREP='`$ECHO \"$EGREP\" | $SED \"$delay_single_quote_subst\"`'\nFGREP='`$ECHO \"$FGREP\" | $SED \"$delay_single_quote_subst\"`'\nLD='`$ECHO \"$LD\" | $SED \"$delay_single_quote_subst\"`'\nNM='`$ECHO \"$NM\" | $SED \"$delay_single_quote_subst\"`'\nLN_S='`$ECHO \"$LN_S\" | $SED \"$delay_single_quote_subst\"`'\nmax_cmd_len='`$ECHO \"$max_cmd_len\" | $SED \"$delay_single_quote_subst\"`'\nac_objext='`$ECHO \"$ac_objext\" | $SED \"$delay_single_quote_subst\"`'\nexeext='`$ECHO \"$exeext\" | $SED \"$delay_single_quote_subst\"`'\nlt_unset='`$ECHO \"$lt_unset\" | $SED \"$delay_single_quote_subst\"`'\nlt_SP2NL='`$ECHO \"$lt_SP2NL\" | $SED \"$delay_single_quote_subst\"`'\nlt_NL2SP='`$ECHO \"$lt_NL2SP\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_to_host_file_cmd='`$ECHO \"$lt_cv_to_host_file_cmd\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_to_tool_file_cmd='`$ECHO \"$lt_cv_to_tool_file_cmd\" | $SED \"$delay_single_quote_subst\"`'\nreload_flag='`$ECHO \"$reload_flag\" | $SED \"$delay_single_quote_subst\"`'\nreload_cmds='`$ECHO \"$reload_cmds\" | $SED \"$delay_single_quote_subst\"`'\ndeplibs_check_method='`$ECHO \"$deplibs_check_method\" | $SED \"$delay_single_quote_subst\"`'\nfile_magic_cmd='`$ECHO \"$file_magic_cmd\" | $SED \"$delay_single_quote_subst\"`'\nfile_magic_glob='`$ECHO \"$file_magic_glob\" | $SED \"$delay_single_quote_subst\"`'\nwant_nocaseglob='`$ECHO \"$want_nocaseglob\" | $SED \"$delay_single_quote_subst\"`'\nsharedlib_from_linklib_cmd='`$ECHO \"$sharedlib_from_linklib_cmd\" | $SED \"$delay_single_quote_subst\"`'\nAR='`$ECHO \"$AR\" | $SED \"$delay_single_quote_subst\"`'\nAR_FLAGS='`$ECHO \"$AR_FLAGS\" | $SED \"$delay_single_quote_subst\"`'\narchiver_list_spec='`$ECHO \"$archiver_list_spec\" | $SED \"$delay_single_quote_subst\"`'\nSTRIP='`$ECHO \"$STRIP\" | $SED \"$delay_single_quote_subst\"`'\nRANLIB='`$ECHO \"$RANLIB\" | $SED \"$delay_single_quote_subst\"`'\nold_postinstall_cmds='`$ECHO \"$old_postinstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_postuninstall_cmds='`$ECHO \"$old_postuninstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_cmds='`$ECHO \"$old_archive_cmds\" | $SED \"$delay_single_quote_subst\"`'\nlock_old_archive_extraction='`$ECHO \"$lock_old_archive_extraction\" | $SED \"$delay_single_quote_subst\"`'\nCC='`$ECHO \"$CC\" | $SED \"$delay_single_quote_subst\"`'\nCFLAGS='`$ECHO \"$CFLAGS\" | $SED \"$delay_single_quote_subst\"`'\ncompiler='`$ECHO \"$compiler\" | $SED \"$delay_single_quote_subst\"`'\nGCC='`$ECHO \"$GCC\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_pipe='`$ECHO \"$lt_cv_sys_global_symbol_pipe\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_cdecl='`$ECHO \"$lt_cv_sys_global_symbol_to_cdecl\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_import='`$ECHO \"$lt_cv_sys_global_symbol_to_import\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_c_name_address='`$ECHO \"$lt_cv_sys_global_symbol_to_c_name_address\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO \"$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_nm_interface='`$ECHO \"$lt_cv_nm_interface\" | $SED \"$delay_single_quote_subst\"`'\nnm_file_list_spec='`$ECHO \"$nm_file_list_spec\" | $SED \"$delay_single_quote_subst\"`'\nlt_sysroot='`$ECHO \"$lt_sysroot\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_truncate_bin='`$ECHO \"$lt_cv_truncate_bin\" | $SED \"$delay_single_quote_subst\"`'\nobjdir='`$ECHO \"$objdir\" | $SED \"$delay_single_quote_subst\"`'\nMAGIC_CMD='`$ECHO \"$MAGIC_CMD\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_no_builtin_flag='`$ECHO \"$lt_prog_compiler_no_builtin_flag\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_pic='`$ECHO \"$lt_prog_compiler_pic\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_wl='`$ECHO \"$lt_prog_compiler_wl\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_static='`$ECHO \"$lt_prog_compiler_static\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_prog_compiler_c_o='`$ECHO \"$lt_cv_prog_compiler_c_o\" | $SED \"$delay_single_quote_subst\"`'\nneed_locks='`$ECHO \"$need_locks\" | $SED \"$delay_single_quote_subst\"`'\nMANIFEST_TOOL='`$ECHO \"$MANIFEST_TOOL\" | $SED \"$delay_single_quote_subst\"`'\nDSYMUTIL='`$ECHO \"$DSYMUTIL\" | $SED \"$delay_single_quote_subst\"`'\nNMEDIT='`$ECHO \"$NMEDIT\" | $SED \"$delay_single_quote_subst\"`'\nLIPO='`$ECHO \"$LIPO\" | $SED \"$delay_single_quote_subst\"`'\nOTOOL='`$ECHO \"$OTOOL\" | $SED \"$delay_single_quote_subst\"`'\nOTOOL64='`$ECHO \"$OTOOL64\" | $SED \"$delay_single_quote_subst\"`'\nlibext='`$ECHO \"$libext\" | $SED \"$delay_single_quote_subst\"`'\nshrext_cmds='`$ECHO \"$shrext_cmds\" | $SED \"$delay_single_quote_subst\"`'\nextract_expsyms_cmds='`$ECHO \"$extract_expsyms_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds_need_lc='`$ECHO \"$archive_cmds_need_lc\" | $SED \"$delay_single_quote_subst\"`'\nenable_shared_with_static_runtimes='`$ECHO \"$enable_shared_with_static_runtimes\" | $SED \"$delay_single_quote_subst\"`'\nexport_dynamic_flag_spec='`$ECHO \"$export_dynamic_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\nwhole_archive_flag_spec='`$ECHO \"$whole_archive_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_needs_object='`$ECHO \"$compiler_needs_object\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_new_cmds='`$ECHO \"$old_archive_from_new_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_expsyms_cmds='`$ECHO \"$old_archive_from_expsyms_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds='`$ECHO \"$archive_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_expsym_cmds='`$ECHO \"$archive_expsym_cmds\" | $SED \"$delay_single_quote_subst\"`'\nmodule_cmds='`$ECHO \"$module_cmds\" | $SED \"$delay_single_quote_subst\"`'\nmodule_expsym_cmds='`$ECHO \"$module_expsym_cmds\" | $SED \"$delay_single_quote_subst\"`'\nwith_gnu_ld='`$ECHO \"$with_gnu_ld\" | $SED \"$delay_single_quote_subst\"`'\nallow_undefined_flag='`$ECHO \"$allow_undefined_flag\" | $SED \"$delay_single_quote_subst\"`'\nno_undefined_flag='`$ECHO \"$no_undefined_flag\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_flag_spec='`$ECHO \"$hardcode_libdir_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_separator='`$ECHO \"$hardcode_libdir_separator\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct='`$ECHO \"$hardcode_direct\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct_absolute='`$ECHO \"$hardcode_direct_absolute\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_minus_L='`$ECHO \"$hardcode_minus_L\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_shlibpath_var='`$ECHO \"$hardcode_shlibpath_var\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_automatic='`$ECHO \"$hardcode_automatic\" | $SED \"$delay_single_quote_subst\"`'\ninherit_rpath='`$ECHO \"$inherit_rpath\" | $SED \"$delay_single_quote_subst\"`'\nlink_all_deplibs='`$ECHO \"$link_all_deplibs\" | $SED \"$delay_single_quote_subst\"`'\nalways_export_symbols='`$ECHO \"$always_export_symbols\" | $SED \"$delay_single_quote_subst\"`'\nexport_symbols_cmds='`$ECHO \"$export_symbols_cmds\" | $SED \"$delay_single_quote_subst\"`'\nexclude_expsyms='`$ECHO \"$exclude_expsyms\" | $SED \"$delay_single_quote_subst\"`'\ninclude_expsyms='`$ECHO \"$include_expsyms\" | $SED \"$delay_single_quote_subst\"`'\nprelink_cmds='`$ECHO \"$prelink_cmds\" | $SED \"$delay_single_quote_subst\"`'\npostlink_cmds='`$ECHO \"$postlink_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfile_list_spec='`$ECHO \"$file_list_spec\" | $SED \"$delay_single_quote_subst\"`'\nvariables_saved_for_relink='`$ECHO \"$variables_saved_for_relink\" | $SED \"$delay_single_quote_subst\"`'\nneed_lib_prefix='`$ECHO \"$need_lib_prefix\" | $SED \"$delay_single_quote_subst\"`'\nneed_version='`$ECHO \"$need_version\" | $SED \"$delay_single_quote_subst\"`'\nversion_type='`$ECHO \"$version_type\" | $SED \"$delay_single_quote_subst\"`'\nrunpath_var='`$ECHO \"$runpath_var\" | $SED \"$delay_single_quote_subst\"`'\nshlibpath_var='`$ECHO \"$shlibpath_var\" | $SED \"$delay_single_quote_subst\"`'\nshlibpath_overrides_runpath='`$ECHO \"$shlibpath_overrides_runpath\" | $SED \"$delay_single_quote_subst\"`'\nlibname_spec='`$ECHO \"$libname_spec\" | $SED \"$delay_single_quote_subst\"`'\nlibrary_names_spec='`$ECHO \"$library_names_spec\" | $SED \"$delay_single_quote_subst\"`'\nsoname_spec='`$ECHO \"$soname_spec\" | $SED \"$delay_single_quote_subst\"`'\ninstall_override_mode='`$ECHO \"$install_override_mode\" | $SED \"$delay_single_quote_subst\"`'\npostinstall_cmds='`$ECHO \"$postinstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\npostuninstall_cmds='`$ECHO \"$postuninstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfinish_cmds='`$ECHO \"$finish_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfinish_eval='`$ECHO \"$finish_eval\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_into_libs='`$ECHO \"$hardcode_into_libs\" | $SED \"$delay_single_quote_subst\"`'\nsys_lib_search_path_spec='`$ECHO \"$sys_lib_search_path_spec\" | $SED \"$delay_single_quote_subst\"`'\nconfigure_time_dlsearch_path='`$ECHO \"$configure_time_dlsearch_path\" | $SED \"$delay_single_quote_subst\"`'\nconfigure_time_lt_sys_library_path='`$ECHO \"$configure_time_lt_sys_library_path\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_action='`$ECHO \"$hardcode_action\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen='`$ECHO \"$enable_dlopen\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen_self='`$ECHO \"$enable_dlopen_self\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen_self_static='`$ECHO \"$enable_dlopen_self_static\" | $SED \"$delay_single_quote_subst\"`'\nold_striplib='`$ECHO \"$old_striplib\" | $SED \"$delay_single_quote_subst\"`'\nstriplib='`$ECHO \"$striplib\" | $SED \"$delay_single_quote_subst\"`'\n\nLTCC='$LTCC'\nLTCFLAGS='$LTCFLAGS'\ncompiler='$compiler_DEFAULT'\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$1\n_LTECHO_EOF'\n}\n\n# Quote evaled strings.\nfor var in AS \\\nDLLTOOL \\\nOBJDUMP \\\nSHELL \\\nECHO \\\nPATH_SEPARATOR \\\nSED \\\nGREP \\\nEGREP \\\nFGREP \\\nLD \\\nNM \\\nLN_S \\\nlt_SP2NL \\\nlt_NL2SP \\\nreload_flag \\\ndeplibs_check_method \\\nfile_magic_cmd \\\nfile_magic_glob \\\nwant_nocaseglob \\\nsharedlib_from_linklib_cmd \\\nAR \\\nAR_FLAGS \\\narchiver_list_spec \\\nSTRIP \\\nRANLIB \\\nCC \\\nCFLAGS \\\ncompiler \\\nlt_cv_sys_global_symbol_pipe \\\nlt_cv_sys_global_symbol_to_cdecl \\\nlt_cv_sys_global_symbol_to_import \\\nlt_cv_sys_global_symbol_to_c_name_address \\\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix \\\nlt_cv_nm_interface \\\nnm_file_list_spec \\\nlt_cv_truncate_bin \\\nlt_prog_compiler_no_builtin_flag \\\nlt_prog_compiler_pic \\\nlt_prog_compiler_wl \\\nlt_prog_compiler_static \\\nlt_cv_prog_compiler_c_o \\\nneed_locks \\\nMANIFEST_TOOL \\\nDSYMUTIL \\\nNMEDIT \\\nLIPO \\\nOTOOL \\\nOTOOL64 \\\nshrext_cmds \\\nexport_dynamic_flag_spec \\\nwhole_archive_flag_spec \\\ncompiler_needs_object \\\nwith_gnu_ld \\\nallow_undefined_flag \\\nno_undefined_flag \\\nhardcode_libdir_flag_spec \\\nhardcode_libdir_separator \\\nexclude_expsyms \\\ninclude_expsyms \\\nfile_list_spec \\\nvariables_saved_for_relink \\\nlibname_spec \\\nlibrary_names_spec \\\nsoname_spec \\\ninstall_override_mode \\\nfinish_eval \\\nold_striplib \\\nstriplib; do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED \\\\\"\\\\\\$sed_quote_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\n# Double-quote double-evaled strings.\nfor var in reload_cmds \\\nold_postinstall_cmds \\\nold_postuninstall_cmds \\\nold_archive_cmds \\\nextract_expsyms_cmds \\\nold_archive_from_new_cmds \\\nold_archive_from_expsyms_cmds \\\narchive_cmds \\\narchive_expsym_cmds \\\nmodule_cmds \\\nmodule_expsym_cmds \\\nexport_symbols_cmds \\\nprelink_cmds \\\npostlink_cmds \\\npostinstall_cmds \\\npostuninstall_cmds \\\nfinish_cmds \\\nsys_lib_search_path_spec \\\nconfigure_time_dlsearch_path \\\nconfigure_time_lt_sys_library_path; do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED -e \\\\\"\\\\\\$double_quote_subst\\\\\" -e \\\\\"\\\\\\$sed_quote_subst\\\\\" -e \\\\\"\\\\\\$delay_variable_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\" ## exclude from sc_prohibit_nested_quotes\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\nac_aux_dir='$ac_aux_dir'\n\n# See if we are running on zsh, and set the options that allow our\n# commands through without removal of \\ escapes INIT.\nif test -n \"\\${ZSH_VERSION+set}\"; then\n   setopt NO_GLOB_SUBST\nfi\n\n\n    PACKAGE='$PACKAGE'\n    VERSION='$VERSION'\n    RM='$RM'\n    ofile='$ofile'\n\n\n\n\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n\n# Handling of arguments.\nfor ac_config_target in $ac_config_targets\ndo\n  case $ac_config_target in\n    \"libtool\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS libtool\" ;;\n    \"Makefile\") CONFIG_FILES=\"$CONFIG_FILES Makefile\" ;;\n\n  *) as_fn_error $? \"invalid argument: \\`$ac_config_target'\" \"$LINENO\" 5;;\n  esac\ndone\n\n\n# If the user did not use the arguments to specify the items to instantiate,\n# then the envvar interface is used.  Set only those that are not.\n# We use the long form for the default assignment because of an extremely\n# bizarre bug on SunOS 4.1.3.\nif $ac_need_defaults; then\n  test \"${CONFIG_FILES+set}\" = set || CONFIG_FILES=$config_files\n  test \"${CONFIG_COMMANDS+set}\" = set || CONFIG_COMMANDS=$config_commands\nfi\n\n# Have a temporary directory for convenience.  Make it in the build tree\n# simply because there is no reason against having it here, and in addition,\n# creating and moving files from /tmp can sometimes cause problems.\n# Hook for its removal unless debugging.\n# Note that there is a small window in which the directory will not be cleaned:\n# after its creation but before its name has been assigned to `$tmp'.\n$debug ||\n{\n  tmp= ac_tmp=\n  trap 'exit_status=$?\n  : \"${ac_tmp:=$tmp}\"\n  { test ! -d \"$ac_tmp\" || rm -fr \"$ac_tmp\"; } && exit $exit_status\n' 0\n  trap 'as_fn_exit 1' 1 2 13 15\n}\n# Create a (secure) tmp directory for tmp files.\n\n{\n  tmp=`(umask 077 && mktemp -d \"./confXXXXXX\") 2>/dev/null` &&\n  test -d \"$tmp\"\n}  ||\n{\n  tmp=./conf$$-$RANDOM\n  (umask 077 && mkdir \"$tmp\")\n} || as_fn_error $? \"cannot create a temporary directory in .\" \"$LINENO\" 5\nac_tmp=$tmp\n\n# Set up the scripts for CONFIG_FILES section.\n# No need to generate them if there are no CONFIG_FILES.\n# This happens for instance with `./config.status config.h'.\nif test -n \"$CONFIG_FILES\"; then\n\n\nac_cr=`echo X | tr X '\\015'`\n# On cygwin, bash can eat \\r inside `` if the user requested igncr.\n# But we know of no other shell where ac_cr would be empty at this\n# point, so we can use a bashism as a fallback.\nif test \"x$ac_cr\" = x; then\n  eval ac_cr=\\$\\'\\\\r\\'\nfi\nac_cs_awk_cr=`$AWK 'BEGIN { print \"a\\rb\" }' </dev/null 2>/dev/null`\nif test \"$ac_cs_awk_cr\" = \"a${ac_cr}b\"; then\n  ac_cs_awk_cr='\\\\r'\nelse\n  ac_cs_awk_cr=$ac_cr\nfi\n\necho 'BEGIN {' >\"$ac_tmp/subs1.awk\" &&\n_ACEOF\n\n\n{\n  echo \"cat >conf$$subs.awk <<_ACEOF\" &&\n  echo \"$ac_subst_vars\" | sed 's/.*/&!$&$ac_delim/' &&\n  echo \"_ACEOF\"\n} >conf$$subs.sh ||\n  as_fn_error $? \"could not make $CONFIG_STATUS\" \"$LINENO\" 5\nac_delim_num=`echo \"$ac_subst_vars\" | grep -c '^'`\nac_delim='%!_!# '\nfor ac_last_try in false false false false false :; do\n  . ./conf$$subs.sh ||\n    as_fn_error $? \"could not make $CONFIG_STATUS\" \"$LINENO\" 5\n\n  ac_delim_n=`sed -n \"s/.*$ac_delim\\$/X/p\" conf$$subs.awk | grep -c X`\n  if test $ac_delim_n = $ac_delim_num; then\n    break\n  elif $ac_last_try; then\n    as_fn_error $? \"could not make $CONFIG_STATUS\" \"$LINENO\" 5\n  else\n    ac_delim=\"$ac_delim!$ac_delim _$ac_delim!! \"\n  fi\ndone\nrm -f conf$$subs.sh\n\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\ncat >>\"\\$ac_tmp/subs1.awk\" <<\\\\_ACAWK &&\n_ACEOF\nsed -n '\nh\ns/^/S[\"/; s/!.*/\"]=/\np\ng\ns/^[^!]*!//\n:repl\nt repl\ns/'\"$ac_delim\"'$//\nt delim\n:nl\nh\ns/\\(.\\{148\\}\\)..*/\\1/\nt more1\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\\\\n\"\\\\/\np\nn\nb repl\n:more1\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\"\\\\/\np\ng\ns/.\\{148\\}//\nt nl\n:delim\nh\ns/\\(.\\{148\\}\\)..*/\\1/\nt more2\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\"/\np\nb\n:more2\ns/[\"\\\\]/\\\\&/g; s/^/\"/; s/$/\"\\\\/\np\ng\ns/.\\{148\\}//\nt delim\n' <conf$$subs.awk | sed '\n/^[^\"\"]/{\n  N\n  s/\\n//\n}\n' >>$CONFIG_STATUS || ac_write_fail=1\nrm -f conf$$subs.awk\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n_ACAWK\ncat >>\"\\$ac_tmp/subs1.awk\" <<_ACAWK &&\n  for (key in S) S_is_set[key] = 1\n  FS = \"\u0007\"\n\n}\n{\n  line = $ 0\n  nfields = split(line, field, \"@\")\n  substed = 0\n  len = length(field[1])\n  for (i = 2; i < nfields; i++) {\n    key = field[i]\n    keylen = length(key)\n    if (S_is_set[key]) {\n      value = S[key]\n      line = substr(line, 1, len) \"\" value \"\" substr(line, len + keylen + 3)\n      len += length(value) + length(field[++i])\n      substed = 1\n    } else\n      len += 1 + keylen\n  }\n\n  print line\n}\n\n_ACAWK\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nif sed \"s/$ac_cr//\" < /dev/null > /dev/null 2>&1; then\n  sed \"s/$ac_cr\\$//; s/$ac_cr/$ac_cs_awk_cr/g\"\nelse\n  cat\nfi < \"$ac_tmp/subs1.awk\" > \"$ac_tmp/subs.awk\" \\\n  || as_fn_error $? \"could not setup config files machinery\" \"$LINENO\" 5\n_ACEOF\n\n# VPATH may cause trouble with some makes, so we remove sole $(srcdir),\n# ${srcdir} and @srcdir@ entries from VPATH if srcdir is \".\", strip leading and\n# trailing colons and then remove the whole line if VPATH becomes empty\n# (actually we leave an empty line to preserve line numbers).\nif test \"x$srcdir\" = x.; then\n  ac_vpsub='/^[\t ]*VPATH[\t ]*=[\t ]*/{\nh\ns///\ns/^/:/\ns/[\t ]*$/:/\ns/:\\$(srcdir):/:/g\ns/:\\${srcdir}:/:/g\ns/:@srcdir@:/:/g\ns/^:*//\ns/:*$//\nx\ns/\\(=[\t ]*\\).*/\\1/\nG\ns/\\n//\ns/^[^=]*=[\t ]*$//\n}'\nfi\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\nfi # test -n \"$CONFIG_FILES\"\n\n\neval set X \"  :F $CONFIG_FILES      :C $CONFIG_COMMANDS\"\nshift\nfor ac_tag\ndo\n  case $ac_tag in\n  :[FHLC]) ac_mode=$ac_tag; continue;;\n  esac\n  case $ac_mode$ac_tag in\n  :[FHL]*:*);;\n  :L* | :C*:*) as_fn_error $? \"invalid tag \\`$ac_tag'\" \"$LINENO\" 5;;\n  :[FH]-) ac_tag=-:-;;\n  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;\n  esac\n  ac_save_IFS=$IFS\n  IFS=:\n  set x $ac_tag\n  IFS=$ac_save_IFS\n  shift\n  ac_file=$1\n  shift\n\n  case $ac_mode in\n  :L) ac_source=$1;;\n  :[FH])\n    ac_file_inputs=\n    for ac_f\n    do\n      case $ac_f in\n      -) ac_f=\"$ac_tmp/stdin\";;\n      *) # Look for the file first in the build tree, then in the source tree\n\t # (if the path is not absolute).  The absolute path cannot be DOS-style,\n\t # because $ac_f cannot contain `:'.\n\t test -f \"$ac_f\" ||\n\t   case $ac_f in\n\t   [\\\\/$]*) false;;\n\t   *) test -f \"$srcdir/$ac_f\" && ac_f=\"$srcdir/$ac_f\";;\n\t   esac ||\n\t   as_fn_error 1 \"cannot find input file: \\`$ac_f'\" \"$LINENO\" 5;;\n      esac\n      case $ac_f in *\\'*) ac_f=`$as_echo \"$ac_f\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; esac\n      as_fn_append ac_file_inputs \" '$ac_f'\"\n    done\n\n    # Let's still pretend it is `configure' which instantiates (i.e., don't\n    # use $as_me), people would be surprised to read:\n    #    /* config.h.  Generated by config.status.  */\n    configure_input='Generated from '`\n\t  $as_echo \"$*\" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'\n\t`' by configure.'\n    if test x\"$ac_file\" != x-; then\n      configure_input=\"$ac_file.  $configure_input\"\n      { $as_echo \"$as_me:${as_lineno-$LINENO}: creating $ac_file\" >&5\n$as_echo \"$as_me: creating $ac_file\" >&6;}\n    fi\n    # Neutralize special characters interpreted by sed in replacement strings.\n    case $configure_input in #(\n    *\\&* | *\\|* | *\\\\* )\n       ac_sed_conf_input=`$as_echo \"$configure_input\" |\n       sed 's/[\\\\\\\\&|]/\\\\\\\\&/g'`;; #(\n    *) ac_sed_conf_input=$configure_input;;\n    esac\n\n    case $ac_tag in\n    *:-:* | *:-) cat >\"$ac_tmp/stdin\" \\\n      || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5 ;;\n    esac\n    ;;\n  esac\n\n  ac_dir=`$as_dirname -- \"$ac_file\" ||\n$as_expr X\"$ac_file\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)$' \\| \\\n\t X\"$ac_file\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n$as_echo X\"$ac_file\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  as_dir=\"$ac_dir\"; as_fn_mkdir_p\n  ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`$as_echo \"$ac_dir\" | sed 's|^\\.[\\\\/]||'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`$as_echo \"$ac_dir_suffix\" | sed 's|/[^\\\\/]*|/..|g;s|/||'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n\n  case $ac_mode in\n  :F)\n  #\n  # CONFIG_FILE\n  #\n\n  case $INSTALL in\n  [\\\\/$]* | ?:[\\\\/]* ) ac_INSTALL=$INSTALL ;;\n  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;\n  esac\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n# If the template does not know about datarootdir, expand it.\n# FIXME: This hack should be removed a few years after 2.60.\nac_datarootdir_hack=; ac_datarootdir_seen=\nac_sed_dataroot='\n/datarootdir/ {\n  p\n  q\n}\n/@datadir@/p\n/@docdir@/p\n/@infodir@/p\n/@localedir@/p\n/@mandir@/p'\ncase `eval \"sed -n \\\"\\$ac_sed_dataroot\\\" $ac_file_inputs\"` in\n*datarootdir*) ac_datarootdir_seen=yes;;\n*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&5\n$as_echo \"$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&2;}\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\n  ac_datarootdir_hack='\n  s&@datadir@&$datadir&g\n  s&@docdir@&$docdir&g\n  s&@infodir@&$infodir&g\n  s&@localedir@&$localedir&g\n  s&@mandir@&$mandir&g\n  s&\\\\\\${datarootdir}&$datarootdir&g' ;;\nesac\n_ACEOF\n\n# Neutralize VPATH when `$srcdir' = `.'.\n# Shell code in configure.ac might set extrasub.\n# FIXME: do we really want to maintain this feature?\ncat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1\nac_sed_extra=\"$ac_vpsub\n$extrasub\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF || ac_write_fail=1\n:t\n/@[a-zA-Z_][a-zA-Z_0-9]*@/!b\ns|@configure_input@|$ac_sed_conf_input|;t t\ns&@top_builddir@&$ac_top_builddir_sub&;t t\ns&@top_build_prefix@&$ac_top_build_prefix&;t t\ns&@srcdir@&$ac_srcdir&;t t\ns&@abs_srcdir@&$ac_abs_srcdir&;t t\ns&@top_srcdir@&$ac_top_srcdir&;t t\ns&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t\ns&@builddir@&$ac_builddir&;t t\ns&@abs_builddir@&$ac_abs_builddir&;t t\ns&@abs_top_builddir@&$ac_abs_top_builddir&;t t\ns&@INSTALL@&$ac_INSTALL&;t t\n$ac_datarootdir_hack\n\"\neval sed \\\"\\$ac_sed_extra\\\" \"$ac_file_inputs\" | $AWK -f \"$ac_tmp/subs.awk\" \\\n  >$ac_tmp/out || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n\ntest -z \"$ac_datarootdir_hack$ac_datarootdir_seen\" &&\n  { ac_out=`sed -n '/\\${datarootdir}/p' \"$ac_tmp/out\"`; test -n \"$ac_out\"; } &&\n  { ac_out=`sed -n '/^[\t ]*datarootdir[\t ]*:*=/p' \\\n      \"$ac_tmp/out\"`; test -z \"$ac_out\"; } &&\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&5\n$as_echo \"$as_me: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined\" >&2;}\n\n  rm -f \"$ac_tmp/stdin\"\n  case $ac_file in\n  -) cat \"$ac_tmp/out\" && rm -f \"$ac_tmp/out\";;\n  *) rm -f \"$ac_file\" && mv \"$ac_tmp/out\" \"$ac_file\";;\n  esac \\\n  || as_fn_error $? \"could not create $ac_file\" \"$LINENO\" 5\n ;;\n\n\n  :C)  { $as_echo \"$as_me:${as_lineno-$LINENO}: executing $ac_file commands\" >&5\n$as_echo \"$as_me: executing $ac_file commands\" >&6;}\n ;;\n  esac\n\n\n  case $ac_file$ac_mode in\n    \"libtool\":C)\n\n    # See if we are running on zsh, and set the options that allow our\n    # commands through without removal of \\ escapes.\n    if test -n \"${ZSH_VERSION+set}\"; then\n      setopt NO_GLOB_SUBST\n    fi\n\n    cfgfile=${ofile}T\n    trap \"$RM \\\"$cfgfile\\\"; exit 1\" 1 2 15\n    $RM \"$cfgfile\"\n\n    cat <<_LT_EOF >> \"$cfgfile\"\n#! $SHELL\n# Generated automatically by $as_me ($PACKAGE) $VERSION\n# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit, 1996\n\n# Copyright (C) 2014 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program or library that is built\n# using GNU Libtool, you may include this file under the  same\n# distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\n# The names of the tagged configurations supported by this script.\navailable_tags=''\n\n# Configured defaults for sys_lib_dlsearch_path munging.\n: \\${LT_SYS_LIBRARY_PATH=\"$configure_time_lt_sys_library_path\"}\n\n# ### BEGIN LIBTOOL CONFIG\n\n# Which release of libtool.m4 was used?\nmacro_version=$macro_version\nmacro_revision=$macro_revision\n\n# Assembler program.\nAS=$lt_AS\n\n# DLL creation program.\nDLLTOOL=$lt_DLLTOOL\n\n# Object dumper program.\nOBJDUMP=$lt_OBJDUMP\n\n# Whether or not to build shared libraries.\nbuild_libtool_libs=$enable_shared\n\n# Whether or not to build static libraries.\nbuild_old_libs=$enable_static\n\n# What type of objects to build.\npic_mode=$pic_mode\n\n# Whether or not to optimize for fast installation.\nfast_install=$enable_fast_install\n\n# Shared archive member basename,for filename based shared library versioning on AIX.\nshared_archive_member_spec=$shared_archive_member_spec\n\n# Shell to use when invoking shell scripts.\nSHELL=$lt_SHELL\n\n# An echo program that protects backslashes.\nECHO=$lt_ECHO\n\n# The PATH separator for the build system.\nPATH_SEPARATOR=$lt_PATH_SEPARATOR\n\n# The host system.\nhost_alias=$host_alias\nhost=$host\nhost_os=$host_os\n\n# The build system.\nbuild_alias=$build_alias\nbuild=$build\nbuild_os=$build_os\n\n# A sed program that does not truncate output.\nSED=$lt_SED\n\n# Sed that helps us avoid accidentally triggering echo(1) options like -n.\nXsed=\"\\$SED -e 1s/^X//\"\n\n# A grep program that handles long lines.\nGREP=$lt_GREP\n\n# An ERE matcher.\nEGREP=$lt_EGREP\n\n# A literal string matcher.\nFGREP=$lt_FGREP\n\n# A BSD- or MS-compatible name lister.\nNM=$lt_NM\n\n# Whether we need soft or hard links.\nLN_S=$lt_LN_S\n\n# What is the maximum length of a command?\nmax_cmd_len=$max_cmd_len\n\n# Object file suffix (normally \"o\").\nobjext=$ac_objext\n\n# Executable file suffix (normally \"\").\nexeext=$exeext\n\n# whether the shell understands \"unset\".\nlt_unset=$lt_unset\n\n# turn spaces into newlines.\nSP2NL=$lt_lt_SP2NL\n\n# turn newlines into spaces.\nNL2SP=$lt_lt_NL2SP\n\n# convert \\$build file names to \\$host format.\nto_host_file_cmd=$lt_cv_to_host_file_cmd\n\n# convert \\$build files to toolchain format.\nto_tool_file_cmd=$lt_cv_to_tool_file_cmd\n\n# Method to check whether dependent libraries are shared objects.\ndeplibs_check_method=$lt_deplibs_check_method\n\n# Command to use when deplibs_check_method = \"file_magic\".\nfile_magic_cmd=$lt_file_magic_cmd\n\n# How to find potential files when deplibs_check_method = \"file_magic\".\nfile_magic_glob=$lt_file_magic_glob\n\n# Find potential files using nocaseglob when deplibs_check_method = \"file_magic\".\nwant_nocaseglob=$lt_want_nocaseglob\n\n# Command to associate shared and link libraries.\nsharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd\n\n# The archiver.\nAR=$lt_AR\n\n# Flags to create an archive.\nAR_FLAGS=$lt_AR_FLAGS\n\n# How to feed a file listing to the archiver.\narchiver_list_spec=$lt_archiver_list_spec\n\n# A symbol stripping program.\nSTRIP=$lt_STRIP\n\n# Commands used to install an old-style archive.\nRANLIB=$lt_RANLIB\nold_postinstall_cmds=$lt_old_postinstall_cmds\nold_postuninstall_cmds=$lt_old_postuninstall_cmds\n\n# Whether to use a lock for old archive extraction.\nlock_old_archive_extraction=$lock_old_archive_extraction\n\n# A C compiler.\nLTCC=$lt_CC\n\n# LTCC compiler flags.\nLTCFLAGS=$lt_CFLAGS\n\n# Take the output of nm and produce a listing of raw symbols and C names.\nglobal_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe\n\n# Transform the output of nm in a proper C declaration.\nglobal_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl\n\n# Transform the output of nm into a list of symbols to manually relocate.\nglobal_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import\n\n# Transform the output of nm in a C name address pair.\nglobal_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address\n\n# Transform the output of nm in a C name address pair when lib prefix is needed.\nglobal_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix\n\n# The name lister interface.\nnm_interface=$lt_lt_cv_nm_interface\n\n# Specify filename containing input files for \\$NM.\nnm_file_list_spec=$lt_nm_file_list_spec\n\n# The root where to search for dependent libraries,and where our libraries should be installed.\nlt_sysroot=$lt_sysroot\n\n# Command to truncate a binary pipe.\nlt_truncate_bin=$lt_lt_cv_truncate_bin\n\n# The name of the directory that contains temporary libtool files.\nobjdir=$objdir\n\n# Used to examine libraries when file_magic_cmd begins with \"file\".\nMAGIC_CMD=$MAGIC_CMD\n\n# Must we lock files when doing compilation?\nneed_locks=$lt_need_locks\n\n# Manifest tool.\nMANIFEST_TOOL=$lt_MANIFEST_TOOL\n\n# Tool to manipulate archived DWARF debug symbol files on Mac OS X.\nDSYMUTIL=$lt_DSYMUTIL\n\n# Tool to change global to local symbols on Mac OS X.\nNMEDIT=$lt_NMEDIT\n\n# Tool to manipulate fat objects and archives on Mac OS X.\nLIPO=$lt_LIPO\n\n# ldd/readelf like tool for Mach-O binaries on Mac OS X.\nOTOOL=$lt_OTOOL\n\n# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.\nOTOOL64=$lt_OTOOL64\n\n# Old archive suffix (normally \"a\").\nlibext=$libext\n\n# Shared library suffix (normally \".so\").\nshrext_cmds=$lt_shrext_cmds\n\n# The commands to extract the exported symbol list from a shared archive.\nextract_expsyms_cmds=$lt_extract_expsyms_cmds\n\n# Variables whose values should be saved in libtool wrapper scripts and\n# restored at link time.\nvariables_saved_for_relink=$lt_variables_saved_for_relink\n\n# Do we need the \"lib\" prefix for modules?\nneed_lib_prefix=$need_lib_prefix\n\n# Do we need a version for libraries?\nneed_version=$need_version\n\n# Library versioning type.\nversion_type=$version_type\n\n# Shared library runtime path variable.\nrunpath_var=$runpath_var\n\n# Shared library path variable.\nshlibpath_var=$shlibpath_var\n\n# Is shlibpath searched before the hard-coded library search path?\nshlibpath_overrides_runpath=$shlibpath_overrides_runpath\n\n# Format of library name prefix.\nlibname_spec=$lt_libname_spec\n\n# List of archive names.  First name is the real one, the rest are links.\n# The last name is the one that the linker finds with -lNAME\nlibrary_names_spec=$lt_library_names_spec\n\n# The coded name of the library, if different from the real name.\nsoname_spec=$lt_soname_spec\n\n# Permission mode override for installation of shared libraries.\ninstall_override_mode=$lt_install_override_mode\n\n# Command to use after installation of a shared archive.\npostinstall_cmds=$lt_postinstall_cmds\n\n# Command to use after uninstallation of a shared archive.\npostuninstall_cmds=$lt_postuninstall_cmds\n\n# Commands used to finish a libtool library installation in a directory.\nfinish_cmds=$lt_finish_cmds\n\n# As \"finish_cmds\", except a single script fragment to be evaled but\n# not shown.\nfinish_eval=$lt_finish_eval\n\n# Whether we should hardcode library paths into libraries.\nhardcode_into_libs=$hardcode_into_libs\n\n# Compile-time system search path for libraries.\nsys_lib_search_path_spec=$lt_sys_lib_search_path_spec\n\n# Detected run-time system search path for libraries.\nsys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path\n\n# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.\nconfigure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path\n\n# Whether dlopen is supported.\ndlopen_support=$enable_dlopen\n\n# Whether dlopen of programs is supported.\ndlopen_self=$enable_dlopen_self\n\n# Whether dlopen of statically linked programs is supported.\ndlopen_self_static=$enable_dlopen_self_static\n\n# Commands to strip libraries.\nold_striplib=$lt_old_striplib\nstriplib=$lt_striplib\n\n\n# The linker used to build libraries.\nLD=$lt_LD\n\n# How to create reloadable object files.\nreload_flag=$lt_reload_flag\nreload_cmds=$lt_reload_cmds\n\n# Commands used to build an old-style archive.\nold_archive_cmds=$lt_old_archive_cmds\n\n# A language specific compiler.\nCC=$lt_compiler\n\n# Is the compiler the GNU compiler?\nwith_gcc=$GCC\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag\n\n# Additional compiler flags for building library objects.\npic_flag=$lt_lt_prog_compiler_pic\n\n# How to pass a linker flag through the compiler.\nwl=$lt_lt_prog_compiler_wl\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=$lt_lt_prog_compiler_static\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=$lt_lt_cv_prog_compiler_c_o\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=$archive_cmds_need_lc\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=$lt_export_dynamic_flag_spec\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=$lt_whole_archive_flag_spec\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=$lt_compiler_needs_object\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=$lt_old_archive_from_new_cmds\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds\n\n# Commands used to build a shared archive.\narchive_cmds=$lt_archive_cmds\narchive_expsym_cmds=$lt_archive_expsym_cmds\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=$lt_module_cmds\nmodule_expsym_cmds=$lt_module_expsym_cmds\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=$lt_with_gnu_ld\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=$lt_allow_undefined_flag\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=$lt_no_undefined_flag\n\n# Flag to hardcode \\$libdir into a binary during linking.\n# This must work even if \\$libdir does not exist\nhardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=$lt_hardcode_libdir_separator\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=$hardcode_direct\n\n# Set to \"yes\" if using DIR/libNAME\\$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting \\$shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=$hardcode_direct_absolute\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=$hardcode_minus_L\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=$hardcode_shlibpath_var\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=$hardcode_automatic\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=$inherit_rpath\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=$link_all_deplibs\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=$always_export_symbols\n\n# The commands to list exported symbols.\nexport_symbols_cmds=$lt_export_symbols_cmds\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=$lt_exclude_expsyms\n\n# Symbols that must always be exported.\ninclude_expsyms=$lt_include_expsyms\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=$lt_prelink_cmds\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=$lt_postlink_cmds\n\n# Specify filename containing input files.\nfile_list_spec=$lt_file_list_spec\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=$hardcode_action\n\n# ### END LIBTOOL CONFIG\n\n_LT_EOF\n\n    cat <<'_LT_EOF' >> \"$cfgfile\"\n\n# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n\n# ### END FUNCTIONS SHARED WITH CONFIGURE\n\n_LT_EOF\n\n  case $host_os in\n  aix3*)\n    cat <<\\_LT_EOF >> \"$cfgfile\"\n# AIX sometimes has problems with the GCC collect2 program.  For some\n# reason, if we set the COLLECT_NAMES environment variable, the problems\n# vanish in a puff of smoke.\nif test set != \"${COLLECT_NAMES+set}\"; then\n  COLLECT_NAMES=\n  export COLLECT_NAMES\nfi\n_LT_EOF\n    ;;\n  esac\n\n\nltmain=$ac_aux_dir/ltmain.sh\n\n\n  # We use sed instead of cat because bash on DJGPP gets confused if\n  # if finds mixed CR/LF and LF-only lines.  Since sed operates in\n  # text mode, it properly converts lines to CR/LF.  This bash problem\n  # is reportedly fixed, but why not run on old versions too?\n  sed '$q' \"$ltmain\" >> \"$cfgfile\" \\\n     || (rm -f \"$cfgfile\"; exit 1)\n\n   mv -f \"$cfgfile\" \"$ofile\" ||\n    (rm -f \"$ofile\" && cp \"$cfgfile\" \"$ofile\" && rm -f \"$cfgfile\")\n  chmod +x \"$ofile\"\n\n ;;\n\n  esac\ndone # for ac_tag\n\n\nas_fn_exit 0\n_ACEOF\nac_clean_files=$ac_clean_files_save\n\ntest $ac_write_fail = 0 ||\n  as_fn_error $? \"write failure creating $CONFIG_STATUS\" \"$LINENO\" 5\n\n\n# configure is writing to config.log, and then calls config.status.\n# config.status does its own redirection, appending to config.log.\n# Unfortunately, on DOS this fails, as config.log is still kept open\n# by configure, so config.status won't be able to write to it; its\n# output is simply discarded.  So we exec the FD to /dev/null,\n# effectively closing config.log, so it can be properly (re)opened and\n# appended to by config.status.  When coming back to configure, we\n# need to make the FD available again.\nif test \"$no_create\" != yes; then\n  ac_cs_success=:\n  ac_config_status_args=\n  test \"$silent\" = yes &&\n    ac_config_status_args=\"$ac_config_status_args --quiet\"\n  exec 5>/dev/null\n  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false\n  exec 5>>config.log\n  # Use ||, not &&, to avoid exiting from the if with $? = 1, which\n  # would make configure fail if this is the last instruction.\n  $ac_cs_success || as_fn_exit 1\nfi\nif test -n \"$ac_unrecognized_opts\" && test \"$enable_option_checking\" != no; then\n  { $as_echo \"$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts\" >&5\n$as_echo \"$as_me: WARNING: unrecognized options: $ac_unrecognized_opts\" >&2;}\nfi\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/preload/configure.ac",
    "content": "dnl Copyright (C) 1999-2009, 2016 Free Software Foundation, Inc.\ndnl This file is part of the GNU LIBICONV Library.\ndnl\ndnl The GNU LIBICONV Library is free software; you can redistribute it and/or\ndnl modify it under the terms of the GNU Library General Public License as\ndnl published by the Free Software Foundation; either version 2 of the\ndnl License, or (at your option) any later version.\ndnl\ndnl The GNU LIBICONV Library is distributed in the hope that it will be useful,\ndnl but WITHOUT ANY WARRANTY; without even the implied warranty of\ndnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\ndnl Library General Public License for more details.\ndnl\ndnl You should have received a copy of the GNU Library General Public License\ndnl along with the GNU LIBICONV Library; see the file COPYING.LIB.  If not,\ndnl see <http://www.gnu.org/licenses/>.\n\nAC_PREREQ([2.60])\nAC_INIT([libiconv], [0])\nAC_CONFIG_SRCDIR([configure.ac])\nAC_CONFIG_AUX_DIR([../build-aux])\nAC_PROG_MAKE_SET\n\ndnl           checks for basic programs\n\nAC_PROG_CC\nAC_PROG_CPP\nAC_PROG_INSTALL\n\ndnl           check for host type\n\nAC_CANONICAL_HOST\n\ndnl           checks for installer options\n\ngl_RELOCATABLE_LIBRARY\n\ndnl           checks for programs\n\nAC_PROG_LN_S\n\ndnl           checks for UNIX variants that set DEFS\n\nAC_USE_SYSTEM_EXTENSIONS\n\ndnl           checks for compiler output filename suffixes\n\nAC_OBJEXT\nAC_EXEEXT\n\ndnl           check for build configuration\n\ndnl Here we need to build shared object files, regardless whether the user\ndnl wants to the libiconv library itself to be installed shared or static or\ndnl both.\nenable_shared=yes\nenable_static=no\nLT_INIT([win32-dll])\ngl_VISIBILITY\n\ndnl           check whether OS supports plug libraries\n\ncase \"$host_os\" in\n  linux* | solaris* | osf*)\n    PLUGLIB=\"preloadable_libiconv.so\" ;;\n  *)\n    PLUGLIB=\"\"\nesac\nAC_SUBST([PLUGLIB])\n\nAC_CONFIG_FILES([Makefile])\nAC_OUTPUT\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/preload/libtool",
    "content": "#! /bin/sh\n# Generated automatically by config.status () \n# Libtool was configured on host wanghaodeMacBook-Pro.local:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit, 1996\n\n# Copyright (C) 2014 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program or library that is built\n# using GNU Libtool, you may include this file under the  same\n# distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\n# The names of the tagged configurations supported by this script.\navailable_tags=''\n\n# Configured defaults for sys_lib_dlsearch_path munging.\n: ${LT_SYS_LIBRARY_PATH=\"\"}\n\n# ### BEGIN LIBTOOL CONFIG\n\n# Which release of libtool.m4 was used?\nmacro_version=2.4.6\nmacro_revision=2.4.6\n\n# Assembler program.\nAS=\"as\"\n\n# DLL creation program.\nDLLTOOL=\"false\"\n\n# Object dumper program.\nOBJDUMP=\"objdump\"\n\n# Whether or not to build shared libraries.\nbuild_libtool_libs=yes\n\n# Whether or not to build static libraries.\nbuild_old_libs=no\n\n# What type of objects to build.\npic_mode=default\n\n# Whether or not to optimize for fast installation.\nfast_install=needless\n\n# Shared archive member basename,for filename based shared library versioning on AIX.\nshared_archive_member_spec=\n\n# Shell to use when invoking shell scripts.\nSHELL=\"/bin/sh\"\n\n# An echo program that protects backslashes.\nECHO=\"printf %s\\\\n\"\n\n# The PATH separator for the build system.\nPATH_SEPARATOR=\":\"\n\n# The host system.\nhost_alias=\nhost=x86_64-apple-darwin16.6.0\nhost_os=darwin16.6.0\n\n# The build system.\nbuild_alias=\nbuild=x86_64-apple-darwin16.6.0\nbuild_os=darwin16.6.0\n\n# A sed program that does not truncate output.\nSED=\"/usr/bin/sed\"\n\n# Sed that helps us avoid accidentally triggering echo(1) options like -n.\nXsed=\"$SED -e 1s/^X//\"\n\n# A grep program that handles long lines.\nGREP=\"/usr/bin/grep\"\n\n# An ERE matcher.\nEGREP=\"/usr/bin/grep -E\"\n\n# A literal string matcher.\nFGREP=\"/usr/bin/grep -F\"\n\n# A BSD- or MS-compatible name lister.\nNM=\"/usr/bin/nm -B\"\n\n# Whether we need soft or hard links.\nLN_S=\"ln -s\"\n\n# What is the maximum length of a command?\nmax_cmd_len=196608\n\n# Object file suffix (normally \"o\").\nobjext=o\n\n# Executable file suffix (normally \"\").\nexeext=\n\n# whether the shell understands \"unset\".\nlt_unset=unset\n\n# turn spaces into newlines.\nSP2NL=\"tr \\\\040 \\\\012\"\n\n# turn newlines into spaces.\nNL2SP=\"tr \\\\015\\\\012 \\\\040\\\\040\"\n\n# convert $build file names to $host format.\nto_host_file_cmd=func_convert_file_noop\n\n# convert $build files to toolchain format.\nto_tool_file_cmd=func_convert_file_noop\n\n# Method to check whether dependent libraries are shared objects.\ndeplibs_check_method=\"pass_all\"\n\n# Command to use when deplibs_check_method = \"file_magic\".\nfile_magic_cmd=\"\\$MAGIC_CMD\"\n\n# How to find potential files when deplibs_check_method = \"file_magic\".\nfile_magic_glob=\"\"\n\n# Find potential files using nocaseglob when deplibs_check_method = \"file_magic\".\nwant_nocaseglob=\"no\"\n\n# Command to associate shared and link libraries.\nsharedlib_from_linklib_cmd=\"printf %s\\\\n\"\n\n# The archiver.\nAR=\"ar\"\n\n# Flags to create an archive.\nAR_FLAGS=\"cru\"\n\n# How to feed a file listing to the archiver.\narchiver_list_spec=\"\"\n\n# A symbol stripping program.\nSTRIP=\"strip\"\n\n# Commands used to install an old-style archive.\nRANLIB=\"ranlib\"\nold_postinstall_cmds=\"chmod 644 \\$oldlib~\\$RANLIB \\$tool_oldlib\"\nold_postuninstall_cmds=\"\"\n\n# Whether to use a lock for old archive extraction.\nlock_old_archive_extraction=yes\n\n# A C compiler.\nLTCC=\"gcc\"\n\n# LTCC compiler flags.\nLTCFLAGS=\"-g -O2\"\n\n# Take the output of nm and produce a listing of raw symbols and C names.\nglobal_symbol_pipe=\"sed -n -e 's/^.*[\t ]\\\\([BCDEGRST][BCDEGRST]*\\\\)[\t ][\t ]*_\\\\([_A-Za-z][_A-Za-z0-9]*\\\\)\\$/\\\\1 _\\\\2 \\\\2/p' | sed '/ __gnu_lto/d'\"\n\n# Transform the output of nm in a proper C declaration.\nglobal_symbol_to_cdecl=\"sed -n -e 's/^T .* \\\\(.*\\\\)\\$/extern int \\\\1();/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(.*\\\\)\\$/extern char \\\\1;/p'\"\n\n# Transform the output of nm into a list of symbols to manually relocate.\nglobal_symbol_to_import=\"\"\n\n# Transform the output of nm in a C name address pair.\nglobal_symbol_to_c_name_address=\"sed -n -e 's/^: \\\\(.*\\\\) .*\\$/  {\\\"\\\\1\\\", (void *) 0},/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(.*\\\\)\\$/  {\\\"\\\\1\\\", (void *) \\\\&\\\\1},/p'\"\n\n# Transform the output of nm in a C name address pair when lib prefix is needed.\nglobal_symbol_to_c_name_address_lib_prefix=\"sed -n -e 's/^: \\\\(.*\\\\) .*\\$/  {\\\"\\\\1\\\", (void *) 0},/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(lib.*\\\\)\\$/  {\\\"\\\\1\\\", (void *) \\\\&\\\\1},/p' -e 's/^[BCDEGRST][BCDEGRST]* .* \\\\(.*\\\\)\\$/  {\\\"lib\\\\1\\\", (void *) \\\\&\\\\1},/p'\"\n\n# The name lister interface.\nnm_interface=\"BSD nm\"\n\n# Specify filename containing input files for $NM.\nnm_file_list_spec=\"\"\n\n# The root where to search for dependent libraries,and where our libraries should be installed.\nlt_sysroot=\n\n# Command to truncate a binary pipe.\nlt_truncate_bin=\"/bin/dd bs=4096 count=1\"\n\n# The name of the directory that contains temporary libtool files.\nobjdir=.libs\n\n# Used to examine libraries when file_magic_cmd begins with \"file\".\nMAGIC_CMD=file\n\n# Must we lock files when doing compilation?\nneed_locks=\"no\"\n\n# Manifest tool.\nMANIFEST_TOOL=\":\"\n\n# Tool to manipulate archived DWARF debug symbol files on Mac OS X.\nDSYMUTIL=\"dsymutil\"\n\n# Tool to change global to local symbols on Mac OS X.\nNMEDIT=\"nmedit\"\n\n# Tool to manipulate fat objects and archives on Mac OS X.\nLIPO=\"lipo\"\n\n# ldd/readelf like tool for Mach-O binaries on Mac OS X.\nOTOOL=\"otool\"\n\n# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.\nOTOOL64=\":\"\n\n# Old archive suffix (normally \"a\").\nlibext=a\n\n# Shared library suffix (normally \".so\").\nshrext_cmds=\"\\`test .\\$module = .yes && echo .so || echo .dylib\\`\"\n\n# The commands to extract the exported symbol list from a shared archive.\nextract_expsyms_cmds=\"\"\n\n# Variables whose values should be saved in libtool wrapper scripts and\n# restored at link time.\nvariables_saved_for_relink=\"PATH DYLD_LIBRARY_PATH  GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH\"\n\n# Do we need the \"lib\" prefix for modules?\nneed_lib_prefix=no\n\n# Do we need a version for libraries?\nneed_version=no\n\n# Library versioning type.\nversion_type=darwin\n\n# Shared library runtime path variable.\nrunpath_var=\n\n# Shared library path variable.\nshlibpath_var=DYLD_LIBRARY_PATH\n\n# Is shlibpath searched before the hard-coded library search path?\nshlibpath_overrides_runpath=yes\n\n# Format of library name prefix.\nlibname_spec=\"lib\\$name\"\n\n# List of archive names.  First name is the real one, the rest are links.\n# The last name is the one that the linker finds with -lNAME\nlibrary_names_spec=\"\\$libname\\$release\\$major\\$shared_ext \\$libname\\$shared_ext\"\n\n# The coded name of the library, if different from the real name.\nsoname_spec=\"\\$libname\\$release\\$major\\$shared_ext\"\n\n# Permission mode override for installation of shared libraries.\ninstall_override_mode=\"\"\n\n# Command to use after installation of a shared archive.\npostinstall_cmds=\"\"\n\n# Command to use after uninstallation of a shared archive.\npostuninstall_cmds=\"\"\n\n# Commands used to finish a libtool library installation in a directory.\nfinish_cmds=\"\"\n\n# As \"finish_cmds\", except a single script fragment to be evaled but\n# not shown.\nfinish_eval=\"\"\n\n# Whether we should hardcode library paths into libraries.\nhardcode_into_libs=no\n\n# Compile-time system search path for libraries.\nsys_lib_search_path_spec=\"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.1.0  /usr/local/lib\"\n\n# Detected run-time system search path for libraries.\nsys_lib_dlsearch_path_spec=\"/usr/local/lib /lib /usr/lib\"\n\n# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.\nconfigure_time_lt_sys_library_path=\"\"\n\n# Whether dlopen is supported.\ndlopen_support=unknown\n\n# Whether dlopen of programs is supported.\ndlopen_self=unknown\n\n# Whether dlopen of statically linked programs is supported.\ndlopen_self_static=unknown\n\n# Commands to strip libraries.\nold_striplib=\"strip -S\"\nstriplib=\"strip -x\"\n\n\n# The linker used to build libraries.\nLD=\"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld\"\n\n# How to create reloadable object files.\nreload_flag=\" -r\"\nreload_cmds=\"\\$LTCC \\$LTCFLAGS -nostdlib \\$wl-r -o \\$output\\$reload_objs\"\n\n# Commands used to build an old-style archive.\nold_archive_cmds=\"\\$AR \\$AR_FLAGS \\$oldlib\\$oldobjs~\\$RANLIB \\$tool_oldlib\"\n\n# A language specific compiler.\nCC=\"gcc\"\n\n# Is the compiler the GNU compiler?\nwith_gcc=yes\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=\" -fno-builtin -fno-rtti -fno-exceptions\"\n\n# Additional compiler flags for building library objects.\npic_flag=\" -fno-common -DPIC\"\n\n# How to pass a linker flag through the compiler.\nwl=\"-Wl,\"\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=\"\"\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=\"yes\"\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=no\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=no\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=\"\"\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=\"\\`for conv in \\$convenience\\\\\\\"\\\\\\\"; do test  -n \\\\\\\"\\$conv\\\\\\\" && new_convenience=\\\\\\\"\\$new_convenience \\$wl-force_load,\\$conv\\\\\\\"; done; func_echo_all \\\\\\\"\\$new_convenience\\\\\\\"\\`\"\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=\"no\"\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=\"\"\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=\"\"\n\n# Commands used to build a shared archive.\narchive_cmds=\"\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring \\$single_module\"\narchive_expsym_cmds=\"sed 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring \\$single_module \\$wl-exported_symbols_list,\\$output_objdir/\\$libname-symbols.expsym\"\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=\"\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags\"\nmodule_expsym_cmds=\"sed -e 's|^|_|' < \\$export_symbols > \\$output_objdir/\\$libname-symbols.expsym~\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags \\$wl-exported_symbols_list,\\$output_objdir/\\$libname-symbols.expsym\"\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=\"no\"\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=\"\\$wl-undefined \\${wl}dynamic_lookup\"\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=\"\"\n\n# Flag to hardcode $libdir into a binary during linking.\n# This must work even if $libdir does not exist\nhardcode_libdir_flag_spec=\"\"\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=\"\"\n\n# Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=no\n\n# Set to \"yes\" if using DIR/libNAME$shared_ext during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting $shlibpath_var if the\n# library is relocated.\nhardcode_direct_absolute=no\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=no\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=unsupported\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=yes\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=no\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=yes\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=no\n\n# The commands to list exported symbols.\nexport_symbols_cmds=\"\\$NM \\$libobjs \\$convenience | \\$global_symbol_pipe | \\$SED 's/.* //' | sort | uniq > \\$export_symbols\"\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=\"_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*\"\n\n# Symbols that must always be exported.\ninclude_expsyms=\"\"\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=\"\"\n\n# Commands necessary for finishing linking programs.\npostlink_cmds=\"\"\n\n# Specify filename containing input files.\nfile_list_spec=\"\"\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=immediate\n\n# ### END LIBTOOL CONFIG\n\n\n# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE\n\n# func_munge_path_list VARIABLE PATH\n# -----------------------------------\n# VARIABLE is name of variable containing _space_ separated list of\n# directories to be munged by the contents of PATH, which is string\n# having a format:\n# \"DIR[:DIR]:\"\n#       string \"DIR[ DIR]\" will be prepended to VARIABLE\n# \":DIR[:DIR]\"\n#       string \"DIR[ DIR]\" will be appended to VARIABLE\n# \"DIRP[:DIRP]::[DIRA:]DIRA\"\n#       string \"DIRP[ DIRP]\" will be prepended to VARIABLE and string\n#       \"DIRA[ DIRA]\" will be appended to VARIABLE\n# \"DIR[:DIR]\"\n#       VARIABLE will be replaced by \"DIR[ DIR]\"\nfunc_munge_path_list ()\n{\n    case x$2 in\n    x)\n        ;;\n    *:)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'` \\$$1\\\"\n        ;;\n    x:*)\n        eval $1=\\\"\\$$1 `$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    *::*)\n        eval $1=\\\"\\$$1\\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\\\"\n        eval $1=\\\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\\ \\$$1\\\"\n        ;;\n    *)\n        eval $1=\\\"`$ECHO $2 | $SED 's/:/ /g'`\\\"\n        ;;\n    esac\n}\n\n\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nfunc_cc_basename ()\n{\n    for cc_temp in $*\"\"; do\n      case $cc_temp in\n        compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n        distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n        \\-*) ;;\n        *) break;;\n      esac\n    done\n    func_cc_basename_result=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n}\n\n\n# ### END FUNCTIONS SHARED WITH CONFIGURE\n\n#! /bin/sh\n## DO NOT EDIT - This file generated from ./build-aux/ltmain.in\n##               by inline-source v2014-01-03.01\n\n# libtool (GNU libtool) 2.4.6\n# Provide generalized library-building support services.\n# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996\n\n# Copyright (C) 1996-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License,\n# if you distribute this file as part of a program or library that\n# is built using GNU Libtool, you may include this file under the\n# same distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n\nPROGRAM=libtool\nPACKAGE=libtool\nVERSION=2.4.6\npackage_revision=2.4.6\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# Run './libtool --help' for help with using this script from the\n# command line.\n\n\n## ------------------------------- ##\n## User overridable command paths. ##\n## ------------------------------- ##\n\n# After configure completes, it has a better idea of some of the\n# shell tools we need than the defaults used by the functions shared\n# with bootstrap, so set those here where they can still be over-\n# ridden by the user, but otherwise take precedence.\n\n: ${AUTOCONF=\"autoconf\"}\n: ${AUTOMAKE=\"automake\"}\n\n\n## -------------------------- ##\n## Source external libraries. ##\n## -------------------------- ##\n\n# Much of our low-level functionality needs to be sourced from external\n# libraries, which are installed to $pkgauxdir.\n\n# Set a version string for this script.\nscriptversion=2015-01-20.17; # UTC\n\n# General shell script boiler plate, and helper functions.\n# Written by Gary V. Vaughan, 2004\n\n# Copyright (C) 2004-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n\n# As a special exception to the GNU General Public License, if you distribute\n# this file as part of a program or library that is built using GNU Libtool,\n# you may include this file under the same distribution terms that you use\n# for the rest of that program.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU\n# General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program. If not, see <http://www.gnu.org/licenses/>.\n\n# Please report bugs or propose patches to gary@gnu.org.\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# Evaluate this file near the top of your script to gain access to\n# the functions and variables defined here:\n#\n#   . `echo \"$0\" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh\n#\n# If you need to override any of the default environment variable\n# settings, do that before evaluating this file.\n\n\n## -------------------- ##\n## Shell normalisation. ##\n## -------------------- ##\n\n# Some shells need a little help to be as Bourne compatible as possible.\n# Before doing anything else, make sure all that help has been provided!\n\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :\n  emulate sh\n  NULLCMD=:\n  # Pre-4.2 versions of Zsh do word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac\nfi\n\n# NLS nuisances: We save the old values in case they are required later.\n_G_user_locale=\n_G_safe_locale=\nfor _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\ndo\n  eval \"if test set = \\\"\\${$_G_var+set}\\\"; then\n          save_$_G_var=\\$$_G_var\n          $_G_var=C\n\t  export $_G_var\n\t  _G_user_locale=\\\"$_G_var=\\\\\\$save_\\$_G_var; \\$_G_user_locale\\\"\n\t  _G_safe_locale=\\\"$_G_var=C; \\$_G_safe_locale\\\"\n\tfi\"\ndone\n\n# CDPATH.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\n# Make sure IFS has a sensible default\nsp=' '\nnl='\n'\nIFS=\"$sp\t$nl\"\n\n# There are apparently some retarded systems that use ';' as a PATH separator!\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {\n    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||\n      PATH_SEPARATOR=';'\n  }\nfi\n\n\n\n## ------------------------- ##\n## Locate command utilities. ##\n## ------------------------- ##\n\n\n# func_executable_p FILE\n# ----------------------\n# Check that FILE is an executable regular file.\nfunc_executable_p ()\n{\n    test -f \"$1\" && test -x \"$1\"\n}\n\n\n# func_path_progs PROGS_LIST CHECK_FUNC [PATH]\n# --------------------------------------------\n# Search for either a program that responds to --version with output\n# containing \"GNU\", or else returned by CHECK_FUNC otherwise, by\n# trying all the directories in PATH with each of the elements of\n# PROGS_LIST.\n#\n# CHECK_FUNC should accept the path to a candidate program, and\n# set $func_check_prog_result if it truncates its output less than\n# $_G_path_prog_max characters.\nfunc_path_progs ()\n{\n    _G_progs_list=$1\n    _G_check_func=$2\n    _G_PATH=${3-\"$PATH\"}\n\n    _G_path_prog_max=0\n    _G_path_prog_found=false\n    _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:}\n    for _G_dir in $_G_PATH; do\n      IFS=$_G_save_IFS\n      test -z \"$_G_dir\" && _G_dir=.\n      for _G_prog_name in $_G_progs_list; do\n        for _exeext in '' .EXE; do\n          _G_path_prog=$_G_dir/$_G_prog_name$_exeext\n          func_executable_p \"$_G_path_prog\" || continue\n          case `\"$_G_path_prog\" --version 2>&1` in\n            *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;;\n            *)     $_G_check_func $_G_path_prog\n\t\t   func_path_progs_result=$func_check_prog_result\n\t\t   ;;\n          esac\n          $_G_path_prog_found && break 3\n        done\n      done\n    done\n    IFS=$_G_save_IFS\n    test -z \"$func_path_progs_result\" && {\n      echo \"no acceptable sed could be found in \\$PATH\" >&2\n      exit 1\n    }\n}\n\n\n# We want to be able to use the functions in this file before configure\n# has figured out where the best binaries are kept, which means we have\n# to search for them ourselves - except when the results are already set\n# where we skip the searches.\n\n# Unless the user overrides by setting SED, search the path for either GNU\n# sed, or the sed that truncates its output the least.\ntest -z \"$SED\" && {\n  _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/\n  for _G_i in 1 2 3 4 5 6 7; do\n    _G_sed_script=$_G_sed_script$nl$_G_sed_script\n  done\n  echo \"$_G_sed_script\" 2>/dev/null | sed 99q >conftest.sed\n  _G_sed_script=\n\n  func_check_prog_sed ()\n  {\n    _G_path_prog=$1\n\n    _G_count=0\n    printf 0123456789 >conftest.in\n    while :\n    do\n      cat conftest.in conftest.in >conftest.tmp\n      mv conftest.tmp conftest.in\n      cp conftest.in conftest.nl\n      echo '' >> conftest.nl\n      \"$_G_path_prog\" -f conftest.sed <conftest.nl >conftest.out 2>/dev/null || break\n      diff conftest.out conftest.nl >/dev/null 2>&1 || break\n      _G_count=`expr $_G_count + 1`\n      if test \"$_G_count\" -gt \"$_G_path_prog_max\"; then\n        # Best one so far, save it but keep looking for a better one\n        func_check_prog_result=$_G_path_prog\n        _G_path_prog_max=$_G_count\n      fi\n      # 10*(2^10) chars as input seems more than enough\n      test 10 -lt \"$_G_count\" && break\n    done\n    rm -f conftest.in conftest.tmp conftest.nl conftest.out\n  }\n\n  func_path_progs \"sed gsed\" func_check_prog_sed $PATH:/usr/xpg4/bin\n  rm -f conftest.sed\n  SED=$func_path_progs_result\n}\n\n\n# Unless the user overrides by setting GREP, search the path for either GNU\n# grep, or the grep that truncates its output the least.\ntest -z \"$GREP\" && {\n  func_check_prog_grep ()\n  {\n    _G_path_prog=$1\n\n    _G_count=0\n    _G_path_prog_max=0\n    printf 0123456789 >conftest.in\n    while :\n    do\n      cat conftest.in conftest.in >conftest.tmp\n      mv conftest.tmp conftest.in\n      cp conftest.in conftest.nl\n      echo 'GREP' >> conftest.nl\n      \"$_G_path_prog\" -e 'GREP$' -e '-(cannot match)-' <conftest.nl >conftest.out 2>/dev/null || break\n      diff conftest.out conftest.nl >/dev/null 2>&1 || break\n      _G_count=`expr $_G_count + 1`\n      if test \"$_G_count\" -gt \"$_G_path_prog_max\"; then\n        # Best one so far, save it but keep looking for a better one\n        func_check_prog_result=$_G_path_prog\n        _G_path_prog_max=$_G_count\n      fi\n      # 10*(2^10) chars as input seems more than enough\n      test 10 -lt \"$_G_count\" && break\n    done\n    rm -f conftest.in conftest.tmp conftest.nl conftest.out\n  }\n\n  func_path_progs \"grep ggrep\" func_check_prog_grep $PATH:/usr/xpg4/bin\n  GREP=$func_path_progs_result\n}\n\n\n## ------------------------------- ##\n## User overridable command paths. ##\n## ------------------------------- ##\n\n# All uppercase variable names are used for environment variables.  These\n# variables can be overridden by the user before calling a script that\n# uses them if a suitable command of that name is not already available\n# in the command search PATH.\n\n: ${CP=\"cp -f\"}\n: ${ECHO=\"printf %s\\n\"}\n: ${EGREP=\"$GREP -E\"}\n: ${FGREP=\"$GREP -F\"}\n: ${LN_S=\"ln -s\"}\n: ${MAKE=\"make\"}\n: ${MKDIR=\"mkdir\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n: ${SHELL=\"${CONFIG_SHELL-/bin/sh}\"}\n\n\n## -------------------- ##\n## Useful sed snippets. ##\n## -------------------- ##\n\nsed_dirname='s|/[^/]*$||'\nsed_basename='s|^.*/||'\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='s|\\([`\"$\\\\]\\)|\\\\\\1|g'\n\n# Same as above, but do not quote variable references.\nsed_double_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\n\n# Sed substitution that turns a string into a regex matching for the\n# string literally.\nsed_make_literal_regex='s|[].[^$\\\\*\\/]|\\\\&|g'\n\n# Sed substitution that converts a w32 file name or path\n# that contains forward slashes, into one that contains\n# (escaped) backslashes.  A very naive implementation.\nsed_naive_backslashify='s|\\\\\\\\*|\\\\|g;s|/|\\\\|g;s|\\\\|\\\\\\\\|g'\n\n# Re-'\\' parameter expansions in output of sed_double_quote_subst that\n# were '\\'-ed in input to the same.  If an odd number of '\\' preceded a\n# '$' in input to sed_double_quote_subst, that '$' was protected from\n# expansion.  Since each input '\\' is now two '\\'s, look for any number\n# of runs of four '\\'s followed by two '\\'s and then a '$'.  '\\' that '$'.\n_G_bs='\\\\'\n_G_bs2='\\\\\\\\'\n_G_bs4='\\\\\\\\\\\\\\\\'\n_G_dollar='\\$'\nsed_double_backslash=\"\\\n  s/$_G_bs4/&\\\\\n/g\n  s/^$_G_bs2$_G_dollar/$_G_bs&/\n  s/\\\\([^$_G_bs]\\\\)$_G_bs2$_G_dollar/\\\\1$_G_bs2$_G_bs$_G_dollar/g\n  s/\\n//g\"\n\n\n## ----------------- ##\n## Global variables. ##\n## ----------------- ##\n\n# Except for the global variables explicitly listed below, the following\n# functions in the '^func_' namespace, and the '^require_' namespace\n# variables initialised in the 'Resource management' section, sourcing\n# this file will not pollute your global namespace with anything\n# else. There's no portable way to scope variables in Bourne shell\n# though, so actually running these functions will sometimes place\n# results into a variable named after the function, and often use\n# temporary variables in the '^_G_' namespace. If you are careful to\n# avoid using those namespaces casually in your sourcing script, things\n# should continue to work as you expect. And, of course, you can freely\n# overwrite any of the functions or variables defined here before\n# calling anything to customize them.\n\nEXIT_SUCCESS=0\nEXIT_FAILURE=1\nEXIT_MISMATCH=63  # $? = 63 is used to indicate version mismatch to missing.\nEXIT_SKIP=77\t  # $? = 77 is used to indicate a skipped test to automake.\n\n# Allow overriding, eg assuming that you follow the convention of\n# putting '$debug_cmd' at the start of all your functions, you can get\n# bash to show function call trace with:\n#\n#    debug_cmd='eval echo \"${FUNCNAME[0]} $*\" >&2' bash your-script-name\ndebug_cmd=${debug_cmd-\":\"}\nexit_cmd=:\n\n# By convention, finish your script with:\n#\n#    exit $exit_status\n#\n# so that you can set exit_status to non-zero if you want to indicate\n# something went wrong during execution without actually bailing out at\n# the point of failure.\nexit_status=$EXIT_SUCCESS\n\n# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh\n# is ksh but when the shell is invoked as \"sh\" and the current value of\n# the _XPG environment variable is not equal to 1 (one), the special\n# positional parameter $0, within a function call, is the name of the\n# function.\nprogpath=$0\n\n# The name of this program.\nprogname=`$ECHO \"$progpath\" |$SED \"$sed_basename\"`\n\n# Make sure we have an absolute progpath for reexecution:\ncase $progpath in\n  [\\\\/]*|[A-Za-z]:\\\\*) ;;\n  *[\\\\/]*)\n     progdir=`$ECHO \"$progpath\" |$SED \"$sed_dirname\"`\n     progdir=`cd \"$progdir\" && pwd`\n     progpath=$progdir/$progname\n     ;;\n  *)\n     _G_IFS=$IFS\n     IFS=${PATH_SEPARATOR-:}\n     for progdir in $PATH; do\n       IFS=$_G_IFS\n       test -x \"$progdir/$progname\" && break\n     done\n     IFS=$_G_IFS\n     test -n \"$progdir\" || progdir=`pwd`\n     progpath=$progdir/$progname\n     ;;\nesac\n\n\n## ----------------- ##\n## Standard options. ##\n## ----------------- ##\n\n# The following options affect the operation of the functions defined\n# below, and should be set appropriately depending on run-time para-\n# meters passed on the command line.\n\nopt_dry_run=false\nopt_quiet=false\nopt_verbose=false\n\n# Categories 'all' and 'none' are always available.  Append any others\n# you will pass as the first argument to func_warning from your own\n# code.\nwarning_categories=\n\n# By default, display warnings according to 'opt_warning_types'.  Set\n# 'warning_func'  to ':' to elide all warnings, or func_fatal_error to\n# treat the next displayed warning as a fatal error.\nwarning_func=func_warn_and_continue\n\n# Set to 'all' to display all warnings, 'none' to suppress all\n# warnings, or a space delimited list of some subset of\n# 'warning_categories' to display only the listed warnings.\nopt_warning_types=all\n\n\n## -------------------- ##\n## Resource management. ##\n## -------------------- ##\n\n# This section contains definitions for functions that each ensure a\n# particular resource (a file, or a non-empty configuration variable for\n# example) is available, and if appropriate to extract default values\n# from pertinent package files. Call them using their associated\n# 'require_*' variable to ensure that they are executed, at most, once.\n#\n# It's entirely deliberate that calling these functions can set\n# variables that don't obey the namespace limitations obeyed by the rest\n# of this file, in order that that they be as useful as possible to\n# callers.\n\n\n# require_term_colors\n# -------------------\n# Allow display of bold text on terminals that support it.\nrequire_term_colors=func_require_term_colors\nfunc_require_term_colors ()\n{\n    $debug_cmd\n\n    test -t 1 && {\n      # COLORTERM and USE_ANSI_COLORS environment variables take\n      # precedence, because most terminfo databases neglect to describe\n      # whether color sequences are supported.\n      test -n \"${COLORTERM+set}\" && : ${USE_ANSI_COLORS=\"1\"}\n\n      if test 1 = \"$USE_ANSI_COLORS\"; then\n        # Standard ANSI escape sequences\n        tc_reset='\u001b[0m'\n        tc_bold='\u001b[1m';   tc_standout='\u001b[7m'\n        tc_red='\u001b[31m';   tc_green='\u001b[32m'\n        tc_blue='\u001b[34m';  tc_cyan='\u001b[36m'\n      else\n        # Otherwise trust the terminfo database after all.\n        test -n \"`tput sgr0 2>/dev/null`\" && {\n          tc_reset=`tput sgr0`\n          test -n \"`tput bold 2>/dev/null`\" && tc_bold=`tput bold`\n          tc_standout=$tc_bold\n          test -n \"`tput smso 2>/dev/null`\" && tc_standout=`tput smso`\n          test -n \"`tput setaf 1 2>/dev/null`\" && tc_red=`tput setaf 1`\n          test -n \"`tput setaf 2 2>/dev/null`\" && tc_green=`tput setaf 2`\n          test -n \"`tput setaf 4 2>/dev/null`\" && tc_blue=`tput setaf 4`\n          test -n \"`tput setaf 5 2>/dev/null`\" && tc_cyan=`tput setaf 5`\n        }\n      fi\n    }\n\n    require_term_colors=:\n}\n\n\n## ----------------- ##\n## Function library. ##\n## ----------------- ##\n\n# This section contains a variety of useful functions to call in your\n# scripts. Take note of the portable wrappers for features provided by\n# some modern shells, which will fall back to slower equivalents on\n# less featureful shells.\n\n\n# func_append VAR VALUE\n# ---------------------\n# Append VALUE onto the existing contents of VAR.\n\n  # We should try to minimise forks, especially on Windows where they are\n  # unreasonably slow, so skip the feature probes when bash or zsh are\n  # being used:\n  if test set = \"${BASH_VERSION+set}${ZSH_VERSION+set}\"; then\n    : ${_G_HAVE_ARITH_OP=\"yes\"}\n    : ${_G_HAVE_XSI_OPS=\"yes\"}\n    # The += operator was introduced in bash 3.1\n    case $BASH_VERSION in\n      [12].* | 3.0 | 3.0*) ;;\n      *)\n        : ${_G_HAVE_PLUSEQ_OP=\"yes\"}\n        ;;\n    esac\n  fi\n\n  # _G_HAVE_PLUSEQ_OP\n  # Can be empty, in which case the shell is probed, \"yes\" if += is\n  # useable or anything else if it does not work.\n  test -z \"$_G_HAVE_PLUSEQ_OP\" \\\n    && (eval 'x=a; x+=\" b\"; test \"a b\" = \"$x\"') 2>/dev/null \\\n    && _G_HAVE_PLUSEQ_OP=yes\n\nif test yes = \"$_G_HAVE_PLUSEQ_OP\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_append ()\n  {\n    $debug_cmd\n\n    eval \"$1+=\\$2\"\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_append ()\n  {\n    $debug_cmd\n\n    eval \"$1=\\$$1\\$2\"\n  }\nfi\n\n\n# func_append_quoted VAR VALUE\n# ----------------------------\n# Quote VALUE and append to the end of shell variable VAR, separated\n# by a space.\nif test yes = \"$_G_HAVE_PLUSEQ_OP\"; then\n  eval 'func_append_quoted ()\n  {\n    $debug_cmd\n\n    func_quote_for_eval \"$2\"\n    eval \"$1+=\\\\ \\$func_quote_for_eval_result\"\n  }'\nelse\n  func_append_quoted ()\n  {\n    $debug_cmd\n\n    func_quote_for_eval \"$2\"\n    eval \"$1=\\$$1\\\\ \\$func_quote_for_eval_result\"\n  }\nfi\n\n\n# func_append_uniq VAR VALUE\n# --------------------------\n# Append unique VALUE onto the existing contents of VAR, assuming\n# entries are delimited by the first character of VALUE.  For example:\n#\n#   func_append_uniq options \" --another-option option-argument\"\n#\n# will only append to $options if \" --another-option option-argument \"\n# is not already present somewhere in $options already (note spaces at\n# each end implied by leading space in second argument).\nfunc_append_uniq ()\n{\n    $debug_cmd\n\n    eval _G_current_value='`$ECHO $'$1'`'\n    _G_delim=`expr \"$2\" : '\\(.\\)'`\n\n    case $_G_delim$_G_current_value$_G_delim in\n      *\"$2$_G_delim\"*) ;;\n      *) func_append \"$@\" ;;\n    esac\n}\n\n\n# func_arith TERM...\n# ------------------\n# Set func_arith_result to the result of evaluating TERMs.\n  test -z \"$_G_HAVE_ARITH_OP\" \\\n    && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \\\n    && _G_HAVE_ARITH_OP=yes\n\nif test yes = \"$_G_HAVE_ARITH_OP\"; then\n  eval 'func_arith ()\n  {\n    $debug_cmd\n\n    func_arith_result=$(( $* ))\n  }'\nelse\n  func_arith ()\n  {\n    $debug_cmd\n\n    func_arith_result=`expr \"$@\"`\n  }\nfi\n\n\n# func_basename FILE\n# ------------------\n# Set func_basename_result to FILE with everything up to and including\n# the last / stripped.\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  # If this shell supports suffix pattern removal, then use it to avoid\n  # forking. Hide the definitions single quotes in case the shell chokes\n  # on unsupported syntax...\n  _b='func_basename_result=${1##*/}'\n  _d='case $1 in\n        */*) func_dirname_result=${1%/*}$2 ;;\n        *  ) func_dirname_result=$3        ;;\n      esac'\n\nelse\n  # ...otherwise fall back to using sed.\n  _b='func_basename_result=`$ECHO \"$1\" |$SED \"$sed_basename\"`'\n  _d='func_dirname_result=`$ECHO \"$1\"  |$SED \"$sed_dirname\"`\n      if test \"X$func_dirname_result\" = \"X$1\"; then\n        func_dirname_result=$3\n      else\n        func_append func_dirname_result \"$2\"\n      fi'\nfi\n\neval 'func_basename ()\n{\n    $debug_cmd\n\n    '\"$_b\"'\n}'\n\n\n# func_dirname FILE APPEND NONDIR_REPLACEMENT\n# -------------------------------------------\n# Compute the dirname of FILE.  If nonempty, add APPEND to the result,\n# otherwise set result to NONDIR_REPLACEMENT.\neval 'func_dirname ()\n{\n    $debug_cmd\n\n    '\"$_d\"'\n}'\n\n\n# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT\n# --------------------------------------------------------\n# Perform func_basename and func_dirname in a single function\n# call:\n#   dirname:  Compute the dirname of FILE.  If nonempty,\n#             add APPEND to the result, otherwise set result\n#             to NONDIR_REPLACEMENT.\n#             value returned in \"$func_dirname_result\"\n#   basename: Compute filename of FILE.\n#             value retuned in \"$func_basename_result\"\n# For efficiency, we do not delegate to the functions above but instead\n# duplicate the functionality here.\neval 'func_dirname_and_basename ()\n{\n    $debug_cmd\n\n    '\"$_b\"'\n    '\"$_d\"'\n}'\n\n\n# func_echo ARG...\n# ----------------\n# Echo program name prefixed message.\nfunc_echo ()\n{\n    $debug_cmd\n\n    _G_message=$*\n\n    func_echo_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_IFS\n      $ECHO \"$progname: $_G_line\"\n    done\n    IFS=$func_echo_IFS\n}\n\n\n# func_echo_all ARG...\n# --------------------\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"$*\"\n}\n\n\n# func_echo_infix_1 INFIX ARG...\n# ------------------------------\n# Echo program name, followed by INFIX on the first line, with any\n# additional lines not showing INFIX.\nfunc_echo_infix_1 ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    _G_infix=$1; shift\n    _G_indent=$_G_infix\n    _G_prefix=\"$progname: $_G_infix: \"\n    _G_message=$*\n\n    # Strip color escape sequences before counting printable length\n    for _G_tc in \"$tc_reset\" \"$tc_bold\" \"$tc_standout\" \"$tc_red\" \"$tc_green\" \"$tc_blue\" \"$tc_cyan\"\n    do\n      test -n \"$_G_tc\" && {\n        _G_esc_tc=`$ECHO \"$_G_tc\" | $SED \"$sed_make_literal_regex\"`\n        _G_indent=`$ECHO \"$_G_indent\" | $SED \"s|$_G_esc_tc||g\"`\n      }\n    done\n    _G_indent=\"$progname: \"`echo \"$_G_indent\" | $SED 's|.| |g'`\"  \" ## exclude from sc_prohibit_nested_quotes\n\n    func_echo_infix_1_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_infix_1_IFS\n      $ECHO \"$_G_prefix$tc_bold$_G_line$tc_reset\" >&2\n      _G_prefix=$_G_indent\n    done\n    IFS=$func_echo_infix_1_IFS\n}\n\n\n# func_error ARG...\n# -----------------\n# Echo program name prefixed message to standard error.\nfunc_error ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    func_echo_infix_1 \"  $tc_standout${tc_red}error$tc_reset\" \"$*\" >&2\n}\n\n\n# func_fatal_error ARG...\n# -----------------------\n# Echo program name prefixed message to standard error, and exit.\nfunc_fatal_error ()\n{\n    $debug_cmd\n\n    func_error \"$*\"\n    exit $EXIT_FAILURE\n}\n\n\n# func_grep EXPRESSION FILENAME\n# -----------------------------\n# Check whether EXPRESSION matches any line of FILENAME, without output.\nfunc_grep ()\n{\n    $debug_cmd\n\n    $GREP \"$1\" \"$2\" >/dev/null 2>&1\n}\n\n\n# func_len STRING\n# ---------------\n# Set func_len_result to the length of STRING. STRING may not\n# start with a hyphen.\n  test -z \"$_G_HAVE_XSI_OPS\" \\\n    && (eval 'x=a/b/c;\n      test 5aa/bb/cc = \"${#x}${x%%/*}${x%/*}${x#*/}${x##*/}\"') 2>/dev/null \\\n    && _G_HAVE_XSI_OPS=yes\n\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_len ()\n  {\n    $debug_cmd\n\n    func_len_result=${#1}\n  }'\nelse\n  func_len ()\n  {\n    $debug_cmd\n\n    func_len_result=`expr \"$1\" : \".*\" 2>/dev/null || echo $max_cmd_len`\n  }\nfi\n\n\n# func_mkdir_p DIRECTORY-PATH\n# ---------------------------\n# Make sure the entire path to DIRECTORY-PATH is available.\nfunc_mkdir_p ()\n{\n    $debug_cmd\n\n    _G_directory_path=$1\n    _G_dir_list=\n\n    if test -n \"$_G_directory_path\" && test : != \"$opt_dry_run\"; then\n\n      # Protect directory names starting with '-'\n      case $_G_directory_path in\n        -*) _G_directory_path=./$_G_directory_path ;;\n      esac\n\n      # While some portion of DIR does not yet exist...\n      while test ! -d \"$_G_directory_path\"; do\n        # ...make a list in topmost first order.  Use a colon delimited\n\t# list incase some portion of path contains whitespace.\n        _G_dir_list=$_G_directory_path:$_G_dir_list\n\n        # If the last portion added has no slash in it, the list is done\n        case $_G_directory_path in */*) ;; *) break ;; esac\n\n        # ...otherwise throw away the child directory and loop\n        _G_directory_path=`$ECHO \"$_G_directory_path\" | $SED -e \"$sed_dirname\"`\n      done\n      _G_dir_list=`$ECHO \"$_G_dir_list\" | $SED 's|:*$||'`\n\n      func_mkdir_p_IFS=$IFS; IFS=:\n      for _G_dir in $_G_dir_list; do\n\tIFS=$func_mkdir_p_IFS\n        # mkdir can fail with a 'File exist' error if two processes\n        # try to create one of the directories concurrently.  Don't\n        # stop in that case!\n        $MKDIR \"$_G_dir\" 2>/dev/null || :\n      done\n      IFS=$func_mkdir_p_IFS\n\n      # Bail out if we (or some other process) failed to create a directory.\n      test -d \"$_G_directory_path\" || \\\n        func_fatal_error \"Failed to create '$1'\"\n    fi\n}\n\n\n# func_mktempdir [BASENAME]\n# -------------------------\n# Make a temporary directory that won't clash with other running\n# libtool processes, and avoids race conditions if possible.  If\n# given, BASENAME is the basename for that directory.\nfunc_mktempdir ()\n{\n    $debug_cmd\n\n    _G_template=${TMPDIR-/tmp}/${1-$progname}\n\n    if test : = \"$opt_dry_run\"; then\n      # Return a directory name, but don't create it in dry-run mode\n      _G_tmpdir=$_G_template-$$\n    else\n\n      # If mktemp works, use that first and foremost\n      _G_tmpdir=`mktemp -d \"$_G_template-XXXXXXXX\" 2>/dev/null`\n\n      if test ! -d \"$_G_tmpdir\"; then\n        # Failing that, at least try and use $RANDOM to avoid a race\n        _G_tmpdir=$_G_template-${RANDOM-0}$$\n\n        func_mktempdir_umask=`umask`\n        umask 0077\n        $MKDIR \"$_G_tmpdir\"\n        umask $func_mktempdir_umask\n      fi\n\n      # If we're not in dry-run mode, bomb out on failure\n      test -d \"$_G_tmpdir\" || \\\n        func_fatal_error \"cannot create temporary directory '$_G_tmpdir'\"\n    fi\n\n    $ECHO \"$_G_tmpdir\"\n}\n\n\n# func_normal_abspath PATH\n# ------------------------\n# Remove doubled-up and trailing slashes, \".\" path components,\n# and cancel out any \"..\" path components in PATH after making\n# it an absolute path.\nfunc_normal_abspath ()\n{\n    $debug_cmd\n\n    # These SED scripts presuppose an absolute path with a trailing slash.\n    _G_pathcar='s|^/\\([^/]*\\).*$|\\1|'\n    _G_pathcdr='s|^/[^/]*||'\n    _G_removedotparts=':dotsl\n\t\ts|/\\./|/|g\n\t\tt dotsl\n\t\ts|/\\.$|/|'\n    _G_collapseslashes='s|/\\{1,\\}|/|g'\n    _G_finalslash='s|/*$|/|'\n\n    # Start from root dir and reassemble the path.\n    func_normal_abspath_result=\n    func_normal_abspath_tpath=$1\n    func_normal_abspath_altnamespace=\n    case $func_normal_abspath_tpath in\n      \"\")\n        # Empty path, that just means $cwd.\n        func_stripname '' '/' \"`pwd`\"\n        func_normal_abspath_result=$func_stripname_result\n        return\n        ;;\n      # The next three entries are used to spot a run of precisely\n      # two leading slashes without using negated character classes;\n      # we take advantage of case's first-match behaviour.\n      ///*)\n        # Unusual form of absolute path, do nothing.\n        ;;\n      //*)\n        # Not necessarily an ordinary path; POSIX reserves leading '//'\n        # and for example Cygwin uses it to access remote file shares\n        # over CIFS/SMB, so we conserve a leading double slash if found.\n        func_normal_abspath_altnamespace=/\n        ;;\n      /*)\n        # Absolute path, do nothing.\n        ;;\n      *)\n        # Relative path, prepend $cwd.\n        func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath\n        ;;\n    esac\n\n    # Cancel out all the simple stuff to save iterations.  We also want\n    # the path to end with a slash for ease of parsing, so make sure\n    # there is one (and only one) here.\n    func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_removedotparts\" -e \"$_G_collapseslashes\" -e \"$_G_finalslash\"`\n    while :; do\n      # Processed it all yet?\n      if test / = \"$func_normal_abspath_tpath\"; then\n        # If we ascended to the root using \"..\" the result may be empty now.\n        if test -z \"$func_normal_abspath_result\"; then\n          func_normal_abspath_result=/\n        fi\n        break\n      fi\n      func_normal_abspath_tcomponent=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_pathcar\"`\n      func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n          -e \"$_G_pathcdr\"`\n      # Figure out what to do with it\n      case $func_normal_abspath_tcomponent in\n        \"\")\n          # Trailing empty path component, ignore it.\n          ;;\n        ..)\n          # Parent dir; strip last assembled component from result.\n          func_dirname \"$func_normal_abspath_result\"\n          func_normal_abspath_result=$func_dirname_result\n          ;;\n        *)\n          # Actual path component, append it.\n          func_append func_normal_abspath_result \"/$func_normal_abspath_tcomponent\"\n          ;;\n      esac\n    done\n    # Restore leading double-slash if one was found on entry.\n    func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result\n}\n\n\n# func_notquiet ARG...\n# --------------------\n# Echo program name prefixed message only when not in quiet mode.\nfunc_notquiet ()\n{\n    $debug_cmd\n\n    $opt_quiet || func_echo ${1+\"$@\"}\n\n    # A bug in bash halts the script if the last line of a function\n    # fails when set -e is in force, so we need another command to\n    # work around that:\n    :\n}\n\n\n# func_relative_path SRCDIR DSTDIR\n# --------------------------------\n# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR.\nfunc_relative_path ()\n{\n    $debug_cmd\n\n    func_relative_path_result=\n    func_normal_abspath \"$1\"\n    func_relative_path_tlibdir=$func_normal_abspath_result\n    func_normal_abspath \"$2\"\n    func_relative_path_tbindir=$func_normal_abspath_result\n\n    # Ascend the tree starting from libdir\n    while :; do\n      # check if we have found a prefix of bindir\n      case $func_relative_path_tbindir in\n        $func_relative_path_tlibdir)\n          # found an exact match\n          func_relative_path_tcancelled=\n          break\n          ;;\n        $func_relative_path_tlibdir*)\n          # found a matching prefix\n          func_stripname \"$func_relative_path_tlibdir\" '' \"$func_relative_path_tbindir\"\n          func_relative_path_tcancelled=$func_stripname_result\n          if test -z \"$func_relative_path_result\"; then\n            func_relative_path_result=.\n          fi\n          break\n          ;;\n        *)\n          func_dirname $func_relative_path_tlibdir\n          func_relative_path_tlibdir=$func_dirname_result\n          if test -z \"$func_relative_path_tlibdir\"; then\n            # Have to descend all the way to the root!\n            func_relative_path_result=../$func_relative_path_result\n            func_relative_path_tcancelled=$func_relative_path_tbindir\n            break\n          fi\n          func_relative_path_result=../$func_relative_path_result\n          ;;\n      esac\n    done\n\n    # Now calculate path; take care to avoid doubling-up slashes.\n    func_stripname '' '/' \"$func_relative_path_result\"\n    func_relative_path_result=$func_stripname_result\n    func_stripname '/' '/' \"$func_relative_path_tcancelled\"\n    if test -n \"$func_stripname_result\"; then\n      func_append func_relative_path_result \"/$func_stripname_result\"\n    fi\n\n    # Normalisation. If bindir is libdir, return '.' else relative path.\n    if test -n \"$func_relative_path_result\"; then\n      func_stripname './' '' \"$func_relative_path_result\"\n      func_relative_path_result=$func_stripname_result\n    fi\n\n    test -n \"$func_relative_path_result\" || func_relative_path_result=.\n\n    :\n}\n\n\n# func_quote_for_eval ARG...\n# --------------------------\n# Aesthetically quote ARGs to be evaled later.\n# This function returns two values:\n#   i) func_quote_for_eval_result\n#      double-quoted, suitable for a subsequent eval\n#  ii) func_quote_for_eval_unquoted_result\n#      has all characters that are still active within double\n#      quotes backslashified.\nfunc_quote_for_eval ()\n{\n    $debug_cmd\n\n    func_quote_for_eval_unquoted_result=\n    func_quote_for_eval_result=\n    while test 0 -lt $#; do\n      case $1 in\n        *[\\\\\\`\\\"\\$]*)\n\t  _G_unquoted_arg=`printf '%s\\n' \"$1\" |$SED \"$sed_quote_subst\"` ;;\n        *)\n          _G_unquoted_arg=$1 ;;\n      esac\n      if test -n \"$func_quote_for_eval_unquoted_result\"; then\n\tfunc_append func_quote_for_eval_unquoted_result \" $_G_unquoted_arg\"\n      else\n        func_append func_quote_for_eval_unquoted_result \"$_G_unquoted_arg\"\n      fi\n\n      case $_G_unquoted_arg in\n        # Double-quote args containing shell metacharacters to delay\n        # word splitting, command substitution and variable expansion\n        # for a subsequent eval.\n        # Many Bourne shells cannot handle close brackets correctly\n        # in scan sets, so we specify it separately.\n        *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n          _G_quoted_arg=\\\"$_G_unquoted_arg\\\"\n          ;;\n        *)\n          _G_quoted_arg=$_G_unquoted_arg\n\t  ;;\n      esac\n\n      if test -n \"$func_quote_for_eval_result\"; then\n\tfunc_append func_quote_for_eval_result \" $_G_quoted_arg\"\n      else\n        func_append func_quote_for_eval_result \"$_G_quoted_arg\"\n      fi\n      shift\n    done\n}\n\n\n# func_quote_for_expand ARG\n# -------------------------\n# Aesthetically quote ARG to be evaled later; same as above,\n# but do not quote variable references.\nfunc_quote_for_expand ()\n{\n    $debug_cmd\n\n    case $1 in\n      *[\\\\\\`\\\"]*)\n\t_G_arg=`$ECHO \"$1\" | $SED \\\n\t    -e \"$sed_double_quote_subst\" -e \"$sed_double_backslash\"` ;;\n      *)\n        _G_arg=$1 ;;\n    esac\n\n    case $_G_arg in\n      # Double-quote args containing shell metacharacters to delay\n      # word splitting and command substitution for a subsequent eval.\n      # Many Bourne shells cannot handle close brackets correctly\n      # in scan sets, so we specify it separately.\n      *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n        _G_arg=\\\"$_G_arg\\\"\n        ;;\n    esac\n\n    func_quote_for_expand_result=$_G_arg\n}\n\n\n# func_stripname PREFIX SUFFIX NAME\n# ---------------------------------\n# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result.\n# PREFIX and SUFFIX must not contain globbing or regex special\n# characters, hashes, percent signs, but SUFFIX may contain a leading\n# dot (in which case that matches only a dot).\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_stripname ()\n  {\n    $debug_cmd\n\n    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\n    # positional parameters, so assign one to ordinary variable first.\n    func_stripname_result=$3\n    func_stripname_result=${func_stripname_result#\"$1\"}\n    func_stripname_result=${func_stripname_result%\"$2\"}\n  }'\nelse\n  func_stripname ()\n  {\n    $debug_cmd\n\n    case $2 in\n      .*) func_stripname_result=`$ECHO \"$3\" | $SED -e \"s%^$1%%\" -e \"s%\\\\\\\\$2\\$%%\"`;;\n      *)  func_stripname_result=`$ECHO \"$3\" | $SED -e \"s%^$1%%\" -e \"s%$2\\$%%\"`;;\n    esac\n  }\nfi\n\n\n# func_show_eval CMD [FAIL_EXP]\n# -----------------------------\n# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.\nfunc_show_eval ()\n{\n    $debug_cmd\n\n    _G_cmd=$1\n    _G_fail_exp=${2-':'}\n\n    func_quote_for_expand \"$_G_cmd\"\n    eval \"func_notquiet $func_quote_for_expand_result\"\n\n    $opt_dry_run || {\n      eval \"$_G_cmd\"\n      _G_status=$?\n      if test 0 -ne \"$_G_status\"; then\n\teval \"(exit $_G_status); $_G_fail_exp\"\n      fi\n    }\n}\n\n\n# func_show_eval_locale CMD [FAIL_EXP]\n# ------------------------------------\n# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.  Use the saved locale for evaluation.\nfunc_show_eval_locale ()\n{\n    $debug_cmd\n\n    _G_cmd=$1\n    _G_fail_exp=${2-':'}\n\n    $opt_quiet || {\n      func_quote_for_expand \"$_G_cmd\"\n      eval \"func_echo $func_quote_for_expand_result\"\n    }\n\n    $opt_dry_run || {\n      eval \"$_G_user_locale\n\t    $_G_cmd\"\n      _G_status=$?\n      eval \"$_G_safe_locale\"\n      if test 0 -ne \"$_G_status\"; then\n\teval \"(exit $_G_status); $_G_fail_exp\"\n      fi\n    }\n}\n\n\n# func_tr_sh\n# ----------\n# Turn $1 into a string suitable for a shell variable name.\n# Result is stored in $func_tr_sh_result.  All characters\n# not in the set a-zA-Z0-9_ are replaced with '_'. Further,\n# if $1 begins with a digit, a '_' is prepended as well.\nfunc_tr_sh ()\n{\n    $debug_cmd\n\n    case $1 in\n    [0-9]* | *[!a-zA-Z0-9_]*)\n      func_tr_sh_result=`$ECHO \"$1\" | $SED -e 's/^\\([0-9]\\)/_\\1/' -e 's/[^a-zA-Z0-9_]/_/g'`\n      ;;\n    * )\n      func_tr_sh_result=$1\n      ;;\n    esac\n}\n\n\n# func_verbose ARG...\n# -------------------\n# Echo program name prefixed message in verbose mode only.\nfunc_verbose ()\n{\n    $debug_cmd\n\n    $opt_verbose && func_echo \"$*\"\n\n    :\n}\n\n\n# func_warn_and_continue ARG...\n# -----------------------------\n# Echo program name prefixed warning message to standard error.\nfunc_warn_and_continue ()\n{\n    $debug_cmd\n\n    $require_term_colors\n\n    func_echo_infix_1 \"${tc_red}warning$tc_reset\" \"$*\" >&2\n}\n\n\n# func_warning CATEGORY ARG...\n# ----------------------------\n# Echo program name prefixed warning message to standard error. Warning\n# messages can be filtered according to CATEGORY, where this function\n# elides messages where CATEGORY is not listed in the global variable\n# 'opt_warning_types'.\nfunc_warning ()\n{\n    $debug_cmd\n\n    # CATEGORY must be in the warning_categories list!\n    case \" $warning_categories \" in\n      *\" $1 \"*) ;;\n      *) func_internal_error \"invalid warning category '$1'\" ;;\n    esac\n\n    _G_category=$1\n    shift\n\n    case \" $opt_warning_types \" in\n      *\" $_G_category \"*) $warning_func ${1+\"$@\"} ;;\n    esac\n}\n\n\n# func_sort_ver VER1 VER2\n# -----------------------\n# 'sort -V' is not generally available.\n# Note this deviates from the version comparison in automake\n# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a\n# but this should suffice as we won't be specifying old\n# version formats or redundant trailing .0 in bootstrap.conf.\n# If we did want full compatibility then we should probably\n# use m4_version_compare from autoconf.\nfunc_sort_ver ()\n{\n    $debug_cmd\n\n    printf '%s\\n%s\\n' \"$1\" \"$2\" \\\n      | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n\n}\n\n# func_lt_ver PREV CURR\n# ---------------------\n# Return true if PREV and CURR are in the correct order according to\n# func_sort_ver, otherwise false.  Use it like this:\n#\n#  func_lt_ver \"$prev_ver\" \"$proposed_ver\" || func_fatal_error \"...\"\nfunc_lt_ver ()\n{\n    $debug_cmd\n\n    test \"x$1\" = x`func_sort_ver \"$1\" \"$2\" | $SED 1q`\n}\n\n\n# Local variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-pattern: \"10/scriptversion=%:y-%02m-%02d.%02H; # UTC\"\n# time-stamp-time-zone: \"UTC\"\n# End:\n#! /bin/sh\n\n# Set a version string for this script.\nscriptversion=2014-01-07.03; # UTC\n\n# A portable, pluggable option parser for Bourne shell.\n# Written by Gary V. Vaughan, 2010\n\n# Copyright (C) 2010-2015 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n# Please report bugs or propose patches to gary@gnu.org.\n\n\n## ------ ##\n## Usage. ##\n## ------ ##\n\n# This file is a library for parsing options in your shell scripts along\n# with assorted other useful supporting features that you can make use\n# of too.\n#\n# For the simplest scripts you might need only:\n#\n#   #!/bin/sh\n#   . relative/path/to/funclib.sh\n#   . relative/path/to/options-parser\n#   scriptversion=1.0\n#   func_options ${1+\"$@\"}\n#   eval set dummy \"$func_options_result\"; shift\n#   ...rest of your script...\n#\n# In order for the '--version' option to work, you will need to have a\n# suitably formatted comment like the one at the top of this file\n# starting with '# Written by ' and ending with '# warranty; '.\n#\n# For '-h' and '--help' to work, you will also need a one line\n# description of your script's purpose in a comment directly above the\n# '# Written by ' line, like the one at the top of this file.\n#\n# The default options also support '--debug', which will turn on shell\n# execution tracing (see the comment above debug_cmd below for another\n# use), and '--verbose' and the func_verbose function to allow your script\n# to display verbose messages only when your user has specified\n# '--verbose'.\n#\n# After sourcing this file, you can plug processing for additional\n# options by amending the variables from the 'Configuration' section\n# below, and following the instructions in the 'Option parsing'\n# section further down.\n\n## -------------- ##\n## Configuration. ##\n## -------------- ##\n\n# You should override these variables in your script after sourcing this\n# file so that they reflect the customisations you have added to the\n# option parser.\n\n# The usage line for option parsing errors and the start of '-h' and\n# '--help' output messages. You can embed shell variables for delayed\n# expansion at the time the message is displayed, but you will need to\n# quote other shell meta-characters carefully to prevent them being\n# expanded when the contents are evaled.\nusage='$progpath [OPTION]...'\n\n# Short help message in response to '-h' and '--help'.  Add to this or\n# override it after sourcing this library to reflect the full set of\n# options your script accepts.\nusage_message=\"\\\n       --debug        enable verbose shell tracing\n   -W, --warnings=CATEGORY\n                      report the warnings falling in CATEGORY [all]\n   -v, --verbose      verbosely report processing\n       --version      print version information and exit\n   -h, --help         print short or long help message and exit\n\"\n\n# Additional text appended to 'usage_message' in response to '--help'.\nlong_help_message=\"\nWarning categories include:\n       'all'          show all warnings\n       'none'         turn off all the warnings\n       'error'        warnings are treated as fatal errors\"\n\n# Help message printed before fatal option parsing errors.\nfatal_help=\"Try '\\$progname --help' for more information.\"\n\n\n\n## ------------------------- ##\n## Hook function management. ##\n## ------------------------- ##\n\n# This section contains functions for adding, removing, and running hooks\n# to the main code.  A hook is just a named list of of function, that can\n# be run in order later on.\n\n# func_hookable FUNC_NAME\n# -----------------------\n# Declare that FUNC_NAME will run hooks added with\n# 'func_add_hook FUNC_NAME ...'.\nfunc_hookable ()\n{\n    $debug_cmd\n\n    func_append hookable_fns \" $1\"\n}\n\n\n# func_add_hook FUNC_NAME HOOK_FUNC\n# ---------------------------------\n# Request that FUNC_NAME call HOOK_FUNC before it returns.  FUNC_NAME must\n# first have been declared \"hookable\" by a call to 'func_hookable'.\nfunc_add_hook ()\n{\n    $debug_cmd\n\n    case \" $hookable_fns \" in\n      *\" $1 \"*) ;;\n      *) func_fatal_error \"'$1' does not accept hook functions.\" ;;\n    esac\n\n    eval func_append ${1}_hooks '\" $2\"'\n}\n\n\n# func_remove_hook FUNC_NAME HOOK_FUNC\n# ------------------------------------\n# Remove HOOK_FUNC from the list of functions called by FUNC_NAME.\nfunc_remove_hook ()\n{\n    $debug_cmd\n\n    eval ${1}_hooks='`$ECHO \"\\$'$1'_hooks\" |$SED \"s| '$2'||\"`'\n}\n\n\n# func_run_hooks FUNC_NAME [ARG]...\n# ---------------------------------\n# Run all hook functions registered to FUNC_NAME.\n# It is assumed that the list of hook functions contains nothing more\n# than a whitespace-delimited list of legal shell function names, and\n# no effort is wasted trying to catch shell meta-characters or preserve\n# whitespace.\nfunc_run_hooks ()\n{\n    $debug_cmd\n\n    case \" $hookable_fns \" in\n      *\" $1 \"*) ;;\n      *) func_fatal_error \"'$1' does not support hook funcions.n\" ;;\n    esac\n\n    eval _G_hook_fns=\\$$1_hooks; shift\n\n    for _G_hook in $_G_hook_fns; do\n      eval $_G_hook '\"$@\"'\n\n      # store returned options list back into positional\n      # parameters for next 'cmd' execution.\n      eval _G_hook_result=\\$${_G_hook}_result\n      eval set dummy \"$_G_hook_result\"; shift\n    done\n\n    func_quote_for_eval ${1+\"$@\"}\n    func_run_hooks_result=$func_quote_for_eval_result\n}\n\n\n\n## --------------- ##\n## Option parsing. ##\n## --------------- ##\n\n# In order to add your own option parsing hooks, you must accept the\n# full positional parameter list in your hook function, remove any\n# options that you action, and then pass back the remaining unprocessed\n# options in '<hooked_function_name>_result', escaped suitably for\n# 'eval'.  Like this:\n#\n#    my_options_prep ()\n#    {\n#        $debug_cmd\n#\n#        # Extend the existing usage message.\n#        usage_message=$usage_message'\n#      -s, --silent       don'\\''t print informational messages\n#    '\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_options_prep_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_options_prep my_options_prep\n#\n#\n#    my_silent_option ()\n#    {\n#        $debug_cmd\n#\n#        # Note that for efficiency, we parse as many options as we can\n#        # recognise in a loop before passing the remainder back to the\n#        # caller on the first unrecognised argument we encounter.\n#        while test $# -gt 0; do\n#          opt=$1; shift\n#          case $opt in\n#            --silent|-s) opt_silent=: ;;\n#            # Separate non-argument short options:\n#            -s*)         func_split_short_opt \"$_G_opt\"\n#                         set dummy \"$func_split_short_opt_name\" \\\n#                             \"-$func_split_short_opt_arg\" ${1+\"$@\"}\n#                         shift\n#                         ;;\n#            *)            set dummy \"$_G_opt\" \"$*\"; shift; break ;;\n#          esac\n#        done\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_silent_option_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_parse_options my_silent_option\n#\n#\n#    my_option_validation ()\n#    {\n#        $debug_cmd\n#\n#        $opt_silent && $opt_verbose && func_fatal_help \"\\\n#    '--silent' and '--verbose' options are mutually exclusive.\"\n#\n#        func_quote_for_eval ${1+\"$@\"}\n#        my_option_validation_result=$func_quote_for_eval_result\n#    }\n#    func_add_hook func_validate_options my_option_validation\n#\n# You'll alse need to manually amend $usage_message to reflect the extra\n# options you parse.  It's preferable to append if you can, so that\n# multiple option parsing hooks can be added safely.\n\n\n# func_options [ARG]...\n# ---------------------\n# All the functions called inside func_options are hookable. See the\n# individual implementations for details.\nfunc_hookable func_options\nfunc_options ()\n{\n    $debug_cmd\n\n    func_options_prep ${1+\"$@\"}\n    eval func_parse_options \\\n        ${func_options_prep_result+\"$func_options_prep_result\"}\n    eval func_validate_options \\\n        ${func_parse_options_result+\"$func_parse_options_result\"}\n\n    eval func_run_hooks func_options \\\n        ${func_validate_options_result+\"$func_validate_options_result\"}\n\n    # save modified positional parameters for caller\n    func_options_result=$func_run_hooks_result\n}\n\n\n# func_options_prep [ARG]...\n# --------------------------\n# All initialisations required before starting the option parse loop.\n# Note that when calling hook functions, we pass through the list of\n# positional parameters.  If a hook function modifies that list, and\n# needs to propogate that back to rest of this script, then the complete\n# modified list must be put in 'func_run_hooks_result' before\n# returning.\nfunc_hookable func_options_prep\nfunc_options_prep ()\n{\n    $debug_cmd\n\n    # Option defaults:\n    opt_verbose=false\n    opt_warning_types=\n\n    func_run_hooks func_options_prep ${1+\"$@\"}\n\n    # save modified positional parameters for caller\n    func_options_prep_result=$func_run_hooks_result\n}\n\n\n# func_parse_options [ARG]...\n# ---------------------------\n# The main option parsing loop.\nfunc_hookable func_parse_options\nfunc_parse_options ()\n{\n    $debug_cmd\n\n    func_parse_options_result=\n\n    # this just eases exit handling\n    while test $# -gt 0; do\n      # Defer to hook functions for initial option parsing, so they\n      # get priority in the event of reusing an option name.\n      func_run_hooks func_parse_options ${1+\"$@\"}\n\n      # Adjust func_parse_options positional parameters to match\n      eval set dummy \"$func_run_hooks_result\"; shift\n\n      # Break out of the loop if we already parsed every option.\n      test $# -gt 0 || break\n\n      _G_opt=$1\n      shift\n      case $_G_opt in\n        --debug|-x)   debug_cmd='set -x'\n                      func_echo \"enabling shell trace mode\"\n                      $debug_cmd\n                      ;;\n\n        --no-warnings|--no-warning|--no-warn)\n                      set dummy --warnings none ${1+\"$@\"}\n                      shift\n\t\t      ;;\n\n        --warnings|--warning|-W)\n                      test $# = 0 && func_missing_arg $_G_opt && break\n                      case \" $warning_categories $1\" in\n                        *\" $1 \"*)\n                          # trailing space prevents matching last $1 above\n                          func_append_uniq opt_warning_types \" $1\"\n                          ;;\n                        *all)\n                          opt_warning_types=$warning_categories\n                          ;;\n                        *none)\n                          opt_warning_types=none\n                          warning_func=:\n                          ;;\n                        *error)\n                          opt_warning_types=$warning_categories\n                          warning_func=func_fatal_error\n                          ;;\n                        *)\n                          func_fatal_error \\\n                             \"unsupported warning category: '$1'\"\n                          ;;\n                      esac\n                      shift\n                      ;;\n\n        --verbose|-v) opt_verbose=: ;;\n        --version)    func_version ;;\n        -\\?|-h)       func_usage ;;\n        --help)       func_help ;;\n\n\t# Separate optargs to long options (plugins may need this):\n\t--*=*)        func_split_equals \"$_G_opt\"\n\t              set dummy \"$func_split_equals_lhs\" \\\n                          \"$func_split_equals_rhs\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n       # Separate optargs to short options:\n        -W*)\n                      func_split_short_opt \"$_G_opt\"\n                      set dummy \"$func_split_short_opt_name\" \\\n                          \"$func_split_short_opt_arg\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n        # Separate non-argument short options:\n        -\\?*|-h*|-v*|-x*)\n                      func_split_short_opt \"$_G_opt\"\n                      set dummy \"$func_split_short_opt_name\" \\\n                          \"-$func_split_short_opt_arg\" ${1+\"$@\"}\n                      shift\n                      ;;\n\n        --)           break ;;\n        -*)           func_fatal_help \"unrecognised option: '$_G_opt'\" ;;\n        *)            set dummy \"$_G_opt\" ${1+\"$@\"}; shift; break ;;\n      esac\n    done\n\n    # save modified positional parameters for caller\n    func_quote_for_eval ${1+\"$@\"}\n    func_parse_options_result=$func_quote_for_eval_result\n}\n\n\n# func_validate_options [ARG]...\n# ------------------------------\n# Perform any sanity checks on option settings and/or unconsumed\n# arguments.\nfunc_hookable func_validate_options\nfunc_validate_options ()\n{\n    $debug_cmd\n\n    # Display all warnings if -W was not given.\n    test -n \"$opt_warning_types\" || opt_warning_types=\" $warning_categories\"\n\n    func_run_hooks func_validate_options ${1+\"$@\"}\n\n    # Bail if the options were screwed!\n    $exit_cmd $EXIT_FAILURE\n\n    # save modified positional parameters for caller\n    func_validate_options_result=$func_run_hooks_result\n}\n\n\n\n## ----------------- ##\n## Helper functions. ##\n## ----------------- ##\n\n# This section contains the helper functions used by the rest of the\n# hookable option parser framework in ascii-betical order.\n\n\n# func_fatal_help ARG...\n# ----------------------\n# Echo program name prefixed message to standard error, followed by\n# a help hint, and exit.\nfunc_fatal_help ()\n{\n    $debug_cmd\n\n    eval \\$ECHO \\\"\"Usage: $usage\"\\\"\n    eval \\$ECHO \\\"\"$fatal_help\"\\\"\n    func_error ${1+\"$@\"}\n    exit $EXIT_FAILURE\n}\n\n\n# func_help\n# ---------\n# Echo long help message to standard output and exit.\nfunc_help ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"$long_help_message\"\n    exit 0\n}\n\n\n# func_missing_arg ARGNAME\n# ------------------------\n# Echo program name prefixed message to standard error and set global\n# exit_cmd.\nfunc_missing_arg ()\n{\n    $debug_cmd\n\n    func_error \"Missing argument for '$1'.\"\n    exit_cmd=exit\n}\n\n\n# func_split_equals STRING\n# ------------------------\n# Set func_split_equals_lhs and func_split_equals_rhs shell variables after\n# splitting STRING at the '=' sign.\ntest -z \"$_G_HAVE_XSI_OPS\" \\\n    && (eval 'x=a/b/c;\n      test 5aa/bb/cc = \"${#x}${x%%/*}${x%/*}${x#*/}${x##*/}\"') 2>/dev/null \\\n    && _G_HAVE_XSI_OPS=yes\n\nif test yes = \"$_G_HAVE_XSI_OPS\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_split_equals ()\n  {\n      $debug_cmd\n\n      func_split_equals_lhs=${1%%=*}\n      func_split_equals_rhs=${1#*=}\n      test \"x$func_split_equals_lhs\" = \"x$1\" \\\n        && func_split_equals_rhs=\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_split_equals ()\n  {\n      $debug_cmd\n\n      func_split_equals_lhs=`expr \"x$1\" : 'x\\([^=]*\\)'`\n      func_split_equals_rhs=\n      test \"x$func_split_equals_lhs\" = \"x$1\" \\\n        || func_split_equals_rhs=`expr \"x$1\" : 'x[^=]*=\\(.*\\)$'`\n  }\nfi #func_split_equals\n\n\n# func_split_short_opt SHORTOPT\n# -----------------------------\n# Set func_split_short_opt_name and func_split_short_opt_arg shell\n# variables after splitting SHORTOPT after the 2nd character.\nif test yes = \"$_G_HAVE_XSI_OPS\"\nthen\n  # This is an XSI compatible shell, allowing a faster implementation...\n  eval 'func_split_short_opt ()\n  {\n      $debug_cmd\n\n      func_split_short_opt_arg=${1#??}\n      func_split_short_opt_name=${1%\"$func_split_short_opt_arg\"}\n  }'\nelse\n  # ...otherwise fall back to using expr, which is often a shell builtin.\n  func_split_short_opt ()\n  {\n      $debug_cmd\n\n      func_split_short_opt_name=`expr \"x$1\" : 'x-\\(.\\)'`\n      func_split_short_opt_arg=`expr \"x$1\" : 'x-.\\(.*\\)$'`\n  }\nfi #func_split_short_opt\n\n\n# func_usage\n# ----------\n# Echo short help message to standard output and exit.\nfunc_usage ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"Run '$progname --help |${PAGER-more}' for full usage\"\n    exit 0\n}\n\n\n# func_usage_message\n# ------------------\n# Echo short help message to standard output.\nfunc_usage_message ()\n{\n    $debug_cmd\n\n    eval \\$ECHO \\\"\"Usage: $usage\"\\\"\n    echo\n    $SED -n 's|^# ||\n        /^Written by/{\n          x;p;x\n        }\n\th\n\t/^Written by/q' < \"$progpath\"\n    echo\n    eval \\$ECHO \\\"\"$usage_message\"\\\"\n}\n\n\n# func_version\n# ------------\n# Echo version message to standard output and exit.\nfunc_version ()\n{\n    $debug_cmd\n\n    printf '%s\\n' \"$progname $scriptversion\"\n    $SED -n '\n        /(C)/!b go\n        :more\n        /\\./!{\n          N\n          s|\\n# | |\n          b more\n        }\n        :go\n        /^# Written by /,/# warranty; / {\n          s|^# ||\n          s|^# *$||\n          s|\\((C)\\)[ 0-9,-]*[ ,-]\\([1-9][0-9]* \\)|\\1 \\2|\n          p\n        }\n        /^# Written by / {\n          s|^# ||\n          p\n        }\n        /^warranty; /q' < \"$progpath\"\n\n    exit $?\n}\n\n\n# Local variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-pattern: \"10/scriptversion=%:y-%02m-%02d.%02H; # UTC\"\n# time-stamp-time-zone: \"UTC\"\n# End:\n\n# Set a version string.\nscriptversion='(GNU libtool) 2.4.6'\n\n\n# func_echo ARG...\n# ----------------\n# Libtool also displays the current mode in messages, so override\n# funclib.sh func_echo with this custom definition.\nfunc_echo ()\n{\n    $debug_cmd\n\n    _G_message=$*\n\n    func_echo_IFS=$IFS\n    IFS=$nl\n    for _G_line in $_G_message; do\n      IFS=$func_echo_IFS\n      $ECHO \"$progname${opt_mode+: $opt_mode}: $_G_line\"\n    done\n    IFS=$func_echo_IFS\n}\n\n\n# func_warning ARG...\n# -------------------\n# Libtool warnings are not categorized, so override funclib.sh\n# func_warning with this simpler definition.\nfunc_warning ()\n{\n    $debug_cmd\n\n    $warning_func ${1+\"$@\"}\n}\n\n\n## ---------------- ##\n## Options parsing. ##\n## ---------------- ##\n\n# Hook in the functions to make sure our own options are parsed during\n# the option parsing loop.\n\nusage='$progpath [OPTION]... [MODE-ARG]...'\n\n# Short help message in response to '-h'.\nusage_message=\"Options:\n       --config             show all configuration variables\n       --debug              enable verbose shell tracing\n   -n, --dry-run            display commands without modifying any files\n       --features           display basic configuration information and exit\n       --mode=MODE          use operation mode MODE\n       --no-warnings        equivalent to '-Wnone'\n       --preserve-dup-deps  don't remove duplicate dependency libraries\n       --quiet, --silent    don't print informational messages\n       --tag=TAG            use configuration variables from tag TAG\n   -v, --verbose            print more informational messages than default\n       --version            print version information\n   -W, --warnings=CATEGORY  report the warnings falling in CATEGORY [all]\n   -h, --help, --help-all   print short, long, or detailed help message\n\"\n\n# Additional text appended to 'usage_message' in response to '--help'.\nfunc_help ()\n{\n    $debug_cmd\n\n    func_usage_message\n    $ECHO \"$long_help_message\n\nMODE must be one of the following:\n\n       clean           remove files from the build directory\n       compile         compile a source file into a libtool object\n       execute         automatically set library path, then run a program\n       finish          complete the installation of libtool libraries\n       install         install libraries or executables\n       link            create a library or an executable\n       uninstall       remove libraries from an installed directory\n\nMODE-ARGS vary depending on the MODE.  When passed as first option,\n'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that.\nTry '$progname --help --mode=MODE' for a more detailed description of MODE.\n\nWhen reporting a bug, please describe a test case to reproduce it and\ninclude the following information:\n\n       host-triplet:   $host\n       shell:          $SHELL\n       compiler:       $LTCC\n       compiler flags: $LTCFLAGS\n       linker:         $LD (gnu? $with_gnu_ld)\n       version:        $progname (GNU libtool) 2.4.6\n       automake:       `($AUTOMAKE --version) 2>/dev/null |$SED 1q`\n       autoconf:       `($AUTOCONF --version) 2>/dev/null |$SED 1q`\n\nReport bugs to <bug-libtool@gnu.org>.\nGNU libtool home page: <http://www.gnu.org/software/libtool/>.\nGeneral help using GNU software: <http://www.gnu.org/gethelp/>.\"\n    exit 0\n}\n\n\n# func_lo2o OBJECT-NAME\n# ---------------------\n# Transform OBJECT-NAME from a '.lo' suffix to the platform specific\n# object suffix.\n\nlo2o=s/\\\\.lo\\$/.$objext/\no2lo=s/\\\\.$objext\\$/.lo/\n\nif test yes = \"$_G_HAVE_XSI_OPS\"; then\n  eval 'func_lo2o ()\n  {\n    case $1 in\n      *.lo) func_lo2o_result=${1%.lo}.$objext ;;\n      *   ) func_lo2o_result=$1               ;;\n    esac\n  }'\n\n  # func_xform LIBOBJ-OR-SOURCE\n  # ---------------------------\n  # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise)\n  # suffix to a '.lo' libtool-object suffix.\n  eval 'func_xform ()\n  {\n    func_xform_result=${1%.*}.lo\n  }'\nelse\n  # ...otherwise fall back to using sed.\n  func_lo2o ()\n  {\n    func_lo2o_result=`$ECHO \"$1\" | $SED \"$lo2o\"`\n  }\n\n  func_xform ()\n  {\n    func_xform_result=`$ECHO \"$1\" | $SED 's|\\.[^.]*$|.lo|'`\n  }\nfi\n\n\n# func_fatal_configuration ARG...\n# -------------------------------\n# Echo program name prefixed message to standard error, followed by\n# a configuration failure hint, and exit.\nfunc_fatal_configuration ()\n{\n    func__fatal_error ${1+\"$@\"} \\\n      \"See the $PACKAGE documentation for more information.\" \\\n      \"Fatal configuration error.\"\n}\n\n\n# func_config\n# -----------\n# Display the configuration for all the tags in this script.\nfunc_config ()\n{\n    re_begincf='^# ### BEGIN LIBTOOL'\n    re_endcf='^# ### END LIBTOOL'\n\n    # Default configuration.\n    $SED \"1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\\$d\" < \"$progpath\"\n\n    # Now print the configurations for the tags.\n    for tagname in $taglist; do\n      $SED -n \"/$re_begincf TAG CONFIG: $tagname\\$/,/$re_endcf TAG CONFIG: $tagname\\$/p\" < \"$progpath\"\n    done\n\n    exit $?\n}\n\n\n# func_features\n# -------------\n# Display the features supported by this script.\nfunc_features ()\n{\n    echo \"host: $host\"\n    if test yes = \"$build_libtool_libs\"; then\n      echo \"enable shared libraries\"\n    else\n      echo \"disable shared libraries\"\n    fi\n    if test yes = \"$build_old_libs\"; then\n      echo \"enable static libraries\"\n    else\n      echo \"disable static libraries\"\n    fi\n\n    exit $?\n}\n\n\n# func_enable_tag TAGNAME\n# -----------------------\n# Verify that TAGNAME is valid, and either flag an error and exit, or\n# enable the TAGNAME tag.  We also add TAGNAME to the global $taglist\n# variable here.\nfunc_enable_tag ()\n{\n    # Global variable:\n    tagname=$1\n\n    re_begincf=\"^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\\$\"\n    re_endcf=\"^# ### END LIBTOOL TAG CONFIG: $tagname\\$\"\n    sed_extractcf=/$re_begincf/,/$re_endcf/p\n\n    # Validate tagname.\n    case $tagname in\n      *[!-_A-Za-z0-9,/]*)\n        func_fatal_error \"invalid tag name: $tagname\"\n        ;;\n    esac\n\n    # Don't test for the \"default\" C tag, as we know it's\n    # there but not specially marked.\n    case $tagname in\n        CC) ;;\n    *)\n        if $GREP \"$re_begincf\" \"$progpath\" >/dev/null 2>&1; then\n\t  taglist=\"$taglist $tagname\"\n\n\t  # Evaluate the configuration.  Be careful to quote the path\n\t  # and the sed script, to avoid splitting on whitespace, but\n\t  # also don't use non-portable quotes within backquotes within\n\t  # quotes we have to do it in 2 steps:\n\t  extractedcf=`$SED -n -e \"$sed_extractcf\" < \"$progpath\"`\n\t  eval \"$extractedcf\"\n        else\n\t  func_error \"ignoring unknown tag $tagname\"\n        fi\n        ;;\n    esac\n}\n\n\n# func_check_version_match\n# ------------------------\n# Ensure that we are using m4 macros, and libtool script from the same\n# release of libtool.\nfunc_check_version_match ()\n{\n    if test \"$package_revision\" != \"$macro_revision\"; then\n      if test \"$VERSION\" != \"$macro_version\"; then\n        if test -z \"$macro_version\"; then\n          cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from an older release.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n        else\n          cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from $PACKAGE $macro_version.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n        fi\n      else\n        cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, revision $package_revision,\n$progname: but the definition of this LT_INIT comes from revision $macro_revision.\n$progname: You should recreate aclocal.m4 with macros from revision $package_revision\n$progname: of $PACKAGE $VERSION and run autoconf again.\n_LT_EOF\n      fi\n\n      exit $EXIT_MISMATCH\n    fi\n}\n\n\n# libtool_options_prep [ARG]...\n# -----------------------------\n# Preparation for options parsed by libtool.\nlibtool_options_prep ()\n{\n    $debug_mode\n\n    # Option defaults:\n    opt_config=false\n    opt_dlopen=\n    opt_dry_run=false\n    opt_help=false\n    opt_mode=\n    opt_preserve_dup_deps=false\n    opt_quiet=false\n\n    nonopt=\n    preserve_args=\n\n    # Shorthand for --mode=foo, only valid as the first argument\n    case $1 in\n    clean|clea|cle|cl)\n      shift; set dummy --mode clean ${1+\"$@\"}; shift\n      ;;\n    compile|compil|compi|comp|com|co|c)\n      shift; set dummy --mode compile ${1+\"$@\"}; shift\n      ;;\n    execute|execut|execu|exec|exe|ex|e)\n      shift; set dummy --mode execute ${1+\"$@\"}; shift\n      ;;\n    finish|finis|fini|fin|fi|f)\n      shift; set dummy --mode finish ${1+\"$@\"}; shift\n      ;;\n    install|instal|insta|inst|ins|in|i)\n      shift; set dummy --mode install ${1+\"$@\"}; shift\n      ;;\n    link|lin|li|l)\n      shift; set dummy --mode link ${1+\"$@\"}; shift\n      ;;\n    uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)\n      shift; set dummy --mode uninstall ${1+\"$@\"}; shift\n      ;;\n    esac\n\n    # Pass back the list of options.\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_options_prep_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_options_prep libtool_options_prep\n\n\n# libtool_parse_options [ARG]...\n# ---------------------------------\n# Provide handling for libtool specific options.\nlibtool_parse_options ()\n{\n    $debug_cmd\n\n    # Perform our own loop to consume as many options as possible in\n    # each iteration.\n    while test $# -gt 0; do\n      _G_opt=$1\n      shift\n      case $_G_opt in\n        --dry-run|--dryrun|-n)\n                        opt_dry_run=:\n                        ;;\n\n        --config)       func_config ;;\n\n        --dlopen|-dlopen)\n                        opt_dlopen=\"${opt_dlopen+$opt_dlopen\n}$1\"\n                        shift\n                        ;;\n\n        --preserve-dup-deps)\n                        opt_preserve_dup_deps=: ;;\n\n        --features)     func_features ;;\n\n        --finish)       set dummy --mode finish ${1+\"$@\"}; shift ;;\n\n        --help)         opt_help=: ;;\n\n        --help-all)     opt_help=': help-all' ;;\n\n        --mode)         test $# = 0 && func_missing_arg $_G_opt && break\n                        opt_mode=$1\n                        case $1 in\n                          # Valid mode arguments:\n                          clean|compile|execute|finish|install|link|relink|uninstall) ;;\n\n                          # Catch anything else as an error\n                          *) func_error \"invalid argument for $_G_opt\"\n                             exit_cmd=exit\n                             break\n                             ;;\n                        esac\n                        shift\n                        ;;\n\n        --no-silent|--no-quiet)\n                        opt_quiet=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --no-warnings|--no-warning|--no-warn)\n                        opt_warning=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --no-verbose)\n                        opt_verbose=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --silent|--quiet)\n                        opt_quiet=:\n                        opt_verbose=false\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n        --tag)          test $# = 0 && func_missing_arg $_G_opt && break\n                        opt_tag=$1\n                        func_append preserve_args \" $_G_opt $1\"\n                        func_enable_tag \"$1\"\n                        shift\n                        ;;\n\n        --verbose|-v)   opt_quiet=false\n                        opt_verbose=:\n                        func_append preserve_args \" $_G_opt\"\n                        ;;\n\n\t# An option not handled by this hook function:\n        *)\t\tset dummy \"$_G_opt\" ${1+\"$@\"};\tshift; break  ;;\n      esac\n    done\n\n\n    # save modified positional parameters for caller\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_parse_options_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_parse_options libtool_parse_options\n\n\n\n# libtool_validate_options [ARG]...\n# ---------------------------------\n# Perform any sanity checks on option settings and/or unconsumed\n# arguments.\nlibtool_validate_options ()\n{\n    # save first non-option argument\n    if test 0 -lt $#; then\n      nonopt=$1\n      shift\n    fi\n\n    # preserve --debug\n    test : = \"$debug_cmd\" || func_append preserve_args \" --debug\"\n\n    case $host in\n      # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452\n      # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788\n      *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*)\n        # don't eliminate duplications in $postdeps and $predeps\n        opt_duplicate_compiler_generated_deps=:\n        ;;\n      *)\n        opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps\n        ;;\n    esac\n\n    $opt_help || {\n      # Sanity checks first:\n      func_check_version_match\n\n      test yes != \"$build_libtool_libs\" \\\n        && test yes != \"$build_old_libs\" \\\n        && func_fatal_configuration \"not configured to build any kind of library\"\n\n      # Darwin sucks\n      eval std_shrext=\\\"$shrext_cmds\\\"\n\n      # Only execute mode is allowed to have -dlopen flags.\n      if test -n \"$opt_dlopen\" && test execute != \"$opt_mode\"; then\n        func_error \"unrecognized option '-dlopen'\"\n        $ECHO \"$help\" 1>&2\n        exit $EXIT_FAILURE\n      fi\n\n      # Change the help message to a mode-specific one.\n      generic_help=$help\n      help=\"Try '$progname --help --mode=$opt_mode' for more information.\"\n    }\n\n    # Pass back the unparsed argument list\n    func_quote_for_eval ${1+\"$@\"}\n    libtool_validate_options_result=$func_quote_for_eval_result\n}\nfunc_add_hook func_validate_options libtool_validate_options\n\n\n# Process options as early as possible so that --help and --version\n# can return quickly.\nfunc_options ${1+\"$@\"}\neval set dummy \"$func_options_result\"; shift\n\n\n\n## ----------- ##\n##    Main.    ##\n## ----------- ##\n\nmagic='%%%MAGIC variable%%%'\nmagic_exe='%%%MAGIC EXE variable%%%'\n\n# Global variables.\nextracted_archives=\nextracted_serial=0\n\n# If this variable is set in any of the actions, the command in it\n# will be execed at the end.  This prevents here-documents from being\n# left over by shells.\nexec_cmd=\n\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n}\n\n# func_generated_by_libtool\n# True iff stdin has been generated by Libtool. This function is only\n# a basic sanity check; it will hardly flush out determined imposters.\nfunc_generated_by_libtool_p ()\n{\n  $GREP \"^# Generated by .*$PACKAGE\" > /dev/null 2>&1\n}\n\n# func_lalib_p file\n# True iff FILE is a libtool '.la' library or '.lo' object file.\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_lalib_p ()\n{\n    test -f \"$1\" &&\n      $SED -e 4q \"$1\" 2>/dev/null | func_generated_by_libtool_p\n}\n\n# func_lalib_unsafe_p file\n# True iff FILE is a libtool '.la' library or '.lo' object file.\n# This function implements the same check as func_lalib_p without\n# resorting to external programs.  To this end, it redirects stdin and\n# closes it afterwards, without saving the original file descriptor.\n# As a safety measure, use it only where a negative result would be\n# fatal anyway.  Works if 'file' does not exist.\nfunc_lalib_unsafe_p ()\n{\n    lalib_p=no\n    if test -f \"$1\" && test -r \"$1\" && exec 5<&0 <\"$1\"; then\n\tfor lalib_p_l in 1 2 3 4\n\tdo\n\t    read lalib_p_line\n\t    case $lalib_p_line in\n\t\t\\#\\ Generated\\ by\\ *$PACKAGE* ) lalib_p=yes; break;;\n\t    esac\n\tdone\n\texec 0<&5 5<&-\n    fi\n    test yes = \"$lalib_p\"\n}\n\n# func_ltwrapper_script_p file\n# True iff FILE is a libtool wrapper script\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_script_p ()\n{\n    test -f \"$1\" &&\n      $lt_truncate_bin < \"$1\" 2>/dev/null | func_generated_by_libtool_p\n}\n\n# func_ltwrapper_executable_p file\n# True iff FILE is a libtool wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_executable_p ()\n{\n    func_ltwrapper_exec_suffix=\n    case $1 in\n    *.exe) ;;\n    *) func_ltwrapper_exec_suffix=.exe ;;\n    esac\n    $GREP \"$magic_exe\" \"$1$func_ltwrapper_exec_suffix\" >/dev/null 2>&1\n}\n\n# func_ltwrapper_scriptname file\n# Assumes file is an ltwrapper_executable\n# uses $file to determine the appropriate filename for a\n# temporary ltwrapper_script.\nfunc_ltwrapper_scriptname ()\n{\n    func_dirname_and_basename \"$1\" \"\" \".\"\n    func_stripname '' '.exe' \"$func_basename_result\"\n    func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper\n}\n\n# func_ltwrapper_p file\n# True iff FILE is a libtool wrapper script or wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_p ()\n{\n    func_ltwrapper_script_p \"$1\" || func_ltwrapper_executable_p \"$1\"\n}\n\n\n# func_execute_cmds commands fail_cmd\n# Execute tilde-delimited COMMANDS.\n# If FAIL_CMD is given, eval that upon failure.\n# FAIL_CMD may read-access the current command in variable CMD!\nfunc_execute_cmds ()\n{\n    $debug_cmd\n\n    save_ifs=$IFS; IFS='~'\n    for cmd in $1; do\n      IFS=$sp$nl\n      eval cmd=\\\"$cmd\\\"\n      IFS=$save_ifs\n      func_show_eval \"$cmd\" \"${2-:}\"\n    done\n    IFS=$save_ifs\n}\n\n\n# func_source file\n# Source FILE, adding directory component if necessary.\n# Note that it is not necessary on cygwin/mingw to append a dot to\n# FILE even if both FILE and FILE.exe exist: automatic-append-.exe\n# behavior happens only for exec(3), not for open(2)!  Also, sourcing\n# 'FILE.' does not work on cygwin managed mounts.\nfunc_source ()\n{\n    $debug_cmd\n\n    case $1 in\n    */* | *\\\\*)\t. \"$1\" ;;\n    *)\t\t. \"./$1\" ;;\n    esac\n}\n\n\n# func_resolve_sysroot PATH\n# Replace a leading = in PATH with a sysroot.  Store the result into\n# func_resolve_sysroot_result\nfunc_resolve_sysroot ()\n{\n  func_resolve_sysroot_result=$1\n  case $func_resolve_sysroot_result in\n  =*)\n    func_stripname '=' '' \"$func_resolve_sysroot_result\"\n    func_resolve_sysroot_result=$lt_sysroot$func_stripname_result\n    ;;\n  esac\n}\n\n# func_replace_sysroot PATH\n# If PATH begins with the sysroot, replace it with = and\n# store the result into func_replace_sysroot_result.\nfunc_replace_sysroot ()\n{\n  case $lt_sysroot:$1 in\n  ?*:\"$lt_sysroot\"*)\n    func_stripname \"$lt_sysroot\" '' \"$1\"\n    func_replace_sysroot_result='='$func_stripname_result\n    ;;\n  *)\n    # Including no sysroot.\n    func_replace_sysroot_result=$1\n    ;;\n  esac\n}\n\n# func_infer_tag arg\n# Infer tagged configuration to use if any are available and\n# if one wasn't chosen via the \"--tag\" command line option.\n# Only attempt this if the compiler in the base compile\n# command doesn't match the default compiler.\n# arg is usually of the form 'gcc ...'\nfunc_infer_tag ()\n{\n    $debug_cmd\n\n    if test -n \"$available_tags\" && test -z \"$tagname\"; then\n      CC_quoted=\n      for arg in $CC; do\n\tfunc_append_quoted CC_quoted \"$arg\"\n      done\n      CC_expanded=`func_echo_all $CC`\n      CC_quoted_expanded=`func_echo_all $CC_quoted`\n      case $@ in\n      # Blanks in the command may have been stripped by the calling shell,\n      # but not from the CC environment variable when configure was run.\n      \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n      \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*) ;;\n      # Blanks at the start of $base_compile will cause this to fail\n      # if we don't check for them as well.\n      *)\n\tfor z in $available_tags; do\n\t  if $GREP \"^# ### BEGIN LIBTOOL TAG CONFIG: $z$\" < \"$progpath\" > /dev/null; then\n\t    # Evaluate the configuration.\n\t    eval \"`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`\"\n\t    CC_quoted=\n\t    for arg in $CC; do\n\t      # Double-quote args containing other shell metacharacters.\n\t      func_append_quoted CC_quoted \"$arg\"\n\t    done\n\t    CC_expanded=`func_echo_all $CC`\n\t    CC_quoted_expanded=`func_echo_all $CC_quoted`\n\t    case \"$@ \" in\n\t    \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n\t    \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*)\n\t      # The compiler in the base compile command matches\n\t      # the one in the tagged configuration.\n\t      # Assume this is the tagged configuration we want.\n\t      tagname=$z\n\t      break\n\t      ;;\n\t    esac\n\t  fi\n\tdone\n\t# If $tagname still isn't set, then no tagged configuration\n\t# was found and let the user know that the \"--tag\" command\n\t# line option must be used.\n\tif test -z \"$tagname\"; then\n\t  func_echo \"unable to infer tagged configuration\"\n\t  func_fatal_error \"specify a tag with '--tag'\"\n#\telse\n#\t  func_verbose \"using $tagname tagged configuration\"\n\tfi\n\t;;\n      esac\n    fi\n}\n\n\n\n# func_write_libtool_object output_name pic_name nonpic_name\n# Create a libtool object file (analogous to a \".la\" file),\n# but don't create it if we're doing a dry run.\nfunc_write_libtool_object ()\n{\n    write_libobj=$1\n    if test yes = \"$build_libtool_libs\"; then\n      write_lobj=\\'$2\\'\n    else\n      write_lobj=none\n    fi\n\n    if test yes = \"$build_old_libs\"; then\n      write_oldobj=\\'$3\\'\n    else\n      write_oldobj=none\n    fi\n\n    $opt_dry_run || {\n      cat >${write_libobj}T <<EOF\n# $write_libobj - a libtool object file\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# Name of the PIC object.\npic_object=$write_lobj\n\n# Name of the non-PIC object\nnon_pic_object=$write_oldobj\n\nEOF\n      $MV \"${write_libobj}T\" \"$write_libobj\"\n    }\n}\n\n\n##################################################\n# FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #\n##################################################\n\n# func_convert_core_file_wine_to_w32 ARG\n# Helper function used by file name conversion functions when $build is *nix,\n# and $host is mingw, cygwin, or some other w32 environment. Relies on a\n# correctly configured wine environment available, with the winepath program\n# in $build's $PATH.\n#\n# ARG is the $build file name to be converted to w32 format.\n# Result is available in $func_convert_core_file_wine_to_w32_result, and will\n# be empty on error (or when ARG is empty)\nfunc_convert_core_file_wine_to_w32 ()\n{\n  $debug_cmd\n\n  func_convert_core_file_wine_to_w32_result=$1\n  if test -n \"$1\"; then\n    # Unfortunately, winepath does not exit with a non-zero error code, so we\n    # are forced to check the contents of stdout. On the other hand, if the\n    # command is not found, the shell will set an exit code of 127 and print\n    # *an error message* to stdout. So we must check for both error code of\n    # zero AND non-empty stdout, which explains the odd construction:\n    func_convert_core_file_wine_to_w32_tmp=`winepath -w \"$1\" 2>/dev/null`\n    if test \"$?\" -eq 0 && test -n \"$func_convert_core_file_wine_to_w32_tmp\"; then\n      func_convert_core_file_wine_to_w32_result=`$ECHO \"$func_convert_core_file_wine_to_w32_tmp\" |\n        $SED -e \"$sed_naive_backslashify\"`\n    else\n      func_convert_core_file_wine_to_w32_result=\n    fi\n  fi\n}\n# end: func_convert_core_file_wine_to_w32\n\n\n# func_convert_core_path_wine_to_w32 ARG\n# Helper function used by path conversion functions when $build is *nix, and\n# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly\n# configured wine environment available, with the winepath program in $build's\n# $PATH. Assumes ARG has no leading or trailing path separator characters.\n#\n# ARG is path to be converted from $build format to win32.\n# Result is available in $func_convert_core_path_wine_to_w32_result.\n# Unconvertible file (directory) names in ARG are skipped; if no directory names\n# are convertible, then the result may be empty.\nfunc_convert_core_path_wine_to_w32 ()\n{\n  $debug_cmd\n\n  # unfortunately, winepath doesn't convert paths, only file names\n  func_convert_core_path_wine_to_w32_result=\n  if test -n \"$1\"; then\n    oldIFS=$IFS\n    IFS=:\n    for func_convert_core_path_wine_to_w32_f in $1; do\n      IFS=$oldIFS\n      func_convert_core_file_wine_to_w32 \"$func_convert_core_path_wine_to_w32_f\"\n      if test -n \"$func_convert_core_file_wine_to_w32_result\"; then\n        if test -z \"$func_convert_core_path_wine_to_w32_result\"; then\n          func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result\n        else\n          func_append func_convert_core_path_wine_to_w32_result \";$func_convert_core_file_wine_to_w32_result\"\n        fi\n      fi\n    done\n    IFS=$oldIFS\n  fi\n}\n# end: func_convert_core_path_wine_to_w32\n\n\n# func_cygpath ARGS...\n# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when\n# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)\n# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or\n# (2), returns the Cygwin file name or path in func_cygpath_result (input\n# file name or path is assumed to be in w32 format, as previously converted\n# from $build's *nix or MSYS format). In case (3), returns the w32 file name\n# or path in func_cygpath_result (input file name or path is assumed to be in\n# Cygwin format). Returns an empty string on error.\n#\n# ARGS are passed to cygpath, with the last one being the file name or path to\n# be converted.\n#\n# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH\n# environment variable; do not put it in $PATH.\nfunc_cygpath ()\n{\n  $debug_cmd\n\n  if test -n \"$LT_CYGPATH\" && test -f \"$LT_CYGPATH\"; then\n    func_cygpath_result=`$LT_CYGPATH \"$@\" 2>/dev/null`\n    if test \"$?\" -ne 0; then\n      # on failure, ensure result is empty\n      func_cygpath_result=\n    fi\n  else\n    func_cygpath_result=\n    func_error \"LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'\"\n  fi\n}\n#end: func_cygpath\n\n\n# func_convert_core_msys_to_w32 ARG\n# Convert file name or path ARG from MSYS format to w32 format.  Return\n# result in func_convert_core_msys_to_w32_result.\nfunc_convert_core_msys_to_w32 ()\n{\n  $debug_cmd\n\n  # awkward: cmd appends spaces to result\n  func_convert_core_msys_to_w32_result=`( cmd //c echo \"$1\" ) 2>/dev/null |\n    $SED -e 's/[ ]*$//' -e \"$sed_naive_backslashify\"`\n}\n#end: func_convert_core_msys_to_w32\n\n\n# func_convert_file_check ARG1 ARG2\n# Verify that ARG1 (a file name in $build format) was converted to $host\n# format in ARG2. Otherwise, emit an error message, but continue (resetting\n# func_to_host_file_result to ARG1).\nfunc_convert_file_check ()\n{\n  $debug_cmd\n\n  if test -z \"$2\" && test -n \"$1\"; then\n    func_error \"Could not determine host file name corresponding to\"\n    func_error \"  '$1'\"\n    func_error \"Continuing, but uninstalled executables may not work.\"\n    # Fallback:\n    func_to_host_file_result=$1\n  fi\n}\n# end func_convert_file_check\n\n\n# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH\n# Verify that FROM_PATH (a path in $build format) was converted to $host\n# format in TO_PATH. Otherwise, emit an error message, but continue, resetting\n# func_to_host_file_result to a simplistic fallback value (see below).\nfunc_convert_path_check ()\n{\n  $debug_cmd\n\n  if test -z \"$4\" && test -n \"$3\"; then\n    func_error \"Could not determine the host path corresponding to\"\n    func_error \"  '$3'\"\n    func_error \"Continuing, but uninstalled executables may not work.\"\n    # Fallback.  This is a deliberately simplistic \"conversion\" and\n    # should not be \"improved\".  See libtool.info.\n    if test \"x$1\" != \"x$2\"; then\n      lt_replace_pathsep_chars=\"s|$1|$2|g\"\n      func_to_host_path_result=`echo \"$3\" |\n        $SED -e \"$lt_replace_pathsep_chars\"`\n    else\n      func_to_host_path_result=$3\n    fi\n  fi\n}\n# end func_convert_path_check\n\n\n# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG\n# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT\n# and appending REPL if ORIG matches BACKPAT.\nfunc_convert_path_front_back_pathsep ()\n{\n  $debug_cmd\n\n  case $4 in\n  $1 ) func_to_host_path_result=$3$func_to_host_path_result\n    ;;\n  esac\n  case $4 in\n  $2 ) func_append func_to_host_path_result \"$3\"\n    ;;\n  esac\n}\n# end func_convert_path_front_back_pathsep\n\n\n##################################################\n# $build to $host FILE NAME CONVERSION FUNCTIONS #\n##################################################\n# invoked via '$to_host_file_cmd ARG'\n#\n# In each case, ARG is the path to be converted from $build to $host format.\n# Result will be available in $func_to_host_file_result.\n\n\n# func_to_host_file ARG\n# Converts the file name ARG from $build format to $host format. Return result\n# in func_to_host_file_result.\nfunc_to_host_file ()\n{\n  $debug_cmd\n\n  $to_host_file_cmd \"$1\"\n}\n# end func_to_host_file\n\n\n# func_to_tool_file ARG LAZY\n# converts the file name ARG from $build format to toolchain format. Return\n# result in func_to_tool_file_result.  If the conversion in use is listed\n# in (the comma separated) LAZY, no conversion takes place.\nfunc_to_tool_file ()\n{\n  $debug_cmd\n\n  case ,$2, in\n    *,\"$to_tool_file_cmd\",*)\n      func_to_tool_file_result=$1\n      ;;\n    *)\n      $to_tool_file_cmd \"$1\"\n      func_to_tool_file_result=$func_to_host_file_result\n      ;;\n  esac\n}\n# end func_to_tool_file\n\n\n# func_convert_file_noop ARG\n# Copy ARG to func_to_host_file_result.\nfunc_convert_file_noop ()\n{\n  func_to_host_file_result=$1\n}\n# end func_convert_file_noop\n\n\n# func_convert_file_msys_to_w32 ARG\n# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic\n# conversion to w32 is not available inside the cwrapper.  Returns result in\n# func_to_host_file_result.\nfunc_convert_file_msys_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_msys_to_w32 \"$1\"\n    func_to_host_file_result=$func_convert_core_msys_to_w32_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_msys_to_w32\n\n\n# func_convert_file_cygwin_to_w32 ARG\n# Convert file name ARG from Cygwin to w32 format.  Returns result in\n# func_to_host_file_result.\nfunc_convert_file_cygwin_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    # because $build is cygwin, we call \"the\" cygpath in $PATH; no need to use\n    # LT_CYGPATH in this case.\n    func_to_host_file_result=`cygpath -m \"$1\"`\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_cygwin_to_w32\n\n\n# func_convert_file_nix_to_w32 ARG\n# Convert file name ARG from *nix to w32 format.  Requires a wine environment\n# and a working winepath. Returns result in func_to_host_file_result.\nfunc_convert_file_nix_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_file_wine_to_w32 \"$1\"\n    func_to_host_file_result=$func_convert_core_file_wine_to_w32_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_nix_to_w32\n\n\n# func_convert_file_msys_to_cygwin ARG\n# Convert file name ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.\n# Returns result in func_to_host_file_result.\nfunc_convert_file_msys_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    func_convert_core_msys_to_w32 \"$1\"\n    func_cygpath -u \"$func_convert_core_msys_to_w32_result\"\n    func_to_host_file_result=$func_cygpath_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_msys_to_cygwin\n\n\n# func_convert_file_nix_to_cygwin ARG\n# Convert file name ARG from *nix to Cygwin format.  Requires Cygwin installed\n# in a wine environment, working winepath, and LT_CYGPATH set.  Returns result\n# in func_to_host_file_result.\nfunc_convert_file_nix_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_file_result=$1\n  if test -n \"$1\"; then\n    # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.\n    func_convert_core_file_wine_to_w32 \"$1\"\n    func_cygpath -u \"$func_convert_core_file_wine_to_w32_result\"\n    func_to_host_file_result=$func_cygpath_result\n  fi\n  func_convert_file_check \"$1\" \"$func_to_host_file_result\"\n}\n# end func_convert_file_nix_to_cygwin\n\n\n#############################################\n# $build to $host PATH CONVERSION FUNCTIONS #\n#############################################\n# invoked via '$to_host_path_cmd ARG'\n#\n# In each case, ARG is the path to be converted from $build to $host format.\n# The result will be available in $func_to_host_path_result.\n#\n# Path separators are also converted from $build format to $host format.  If\n# ARG begins or ends with a path separator character, it is preserved (but\n# converted to $host format) on output.\n#\n# All path conversion functions are named using the following convention:\n#   file name conversion function    : func_convert_file_X_to_Y ()\n#   path conversion function         : func_convert_path_X_to_Y ()\n# where, for any given $build/$host combination the 'X_to_Y' value is the\n# same.  If conversion functions are added for new $build/$host combinations,\n# the two new functions must follow this pattern, or func_init_to_host_path_cmd\n# will break.\n\n\n# func_init_to_host_path_cmd\n# Ensures that function \"pointer\" variable $to_host_path_cmd is set to the\n# appropriate value, based on the value of $to_host_file_cmd.\nto_host_path_cmd=\nfunc_init_to_host_path_cmd ()\n{\n  $debug_cmd\n\n  if test -z \"$to_host_path_cmd\"; then\n    func_stripname 'func_convert_file_' '' \"$to_host_file_cmd\"\n    to_host_path_cmd=func_convert_path_$func_stripname_result\n  fi\n}\n\n\n# func_to_host_path ARG\n# Converts the path ARG from $build format to $host format. Return result\n# in func_to_host_path_result.\nfunc_to_host_path ()\n{\n  $debug_cmd\n\n  func_init_to_host_path_cmd\n  $to_host_path_cmd \"$1\"\n}\n# end func_to_host_path\n\n\n# func_convert_path_noop ARG\n# Copy ARG to func_to_host_path_result.\nfunc_convert_path_noop ()\n{\n  func_to_host_path_result=$1\n}\n# end func_convert_path_noop\n\n\n# func_convert_path_msys_to_w32 ARG\n# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic\n# conversion to w32 is not available inside the cwrapper.  Returns result in\n# func_to_host_path_result.\nfunc_convert_path_msys_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # Remove leading and trailing path separator characters from ARG.  MSYS\n    # behavior is inconsistent here; cygpath turns them into '.;' and ';.';\n    # and winepath ignores them completely.\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_msys_to_w32 \"$func_to_host_path_tmp1\"\n    func_to_host_path_result=$func_convert_core_msys_to_w32_result\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_msys_to_w32\n\n\n# func_convert_path_cygwin_to_w32 ARG\n# Convert path ARG from Cygwin to w32 format.  Returns result in\n# func_to_host_file_result.\nfunc_convert_path_cygwin_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_to_host_path_result=`cygpath -m -p \"$func_to_host_path_tmp1\"`\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_cygwin_to_w32\n\n\n# func_convert_path_nix_to_w32 ARG\n# Convert path ARG from *nix to w32 format.  Requires a wine environment and\n# a working winepath.  Returns result in func_to_host_file_result.\nfunc_convert_path_nix_to_w32 ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_path_wine_to_w32 \"$func_to_host_path_tmp1\"\n    func_to_host_path_result=$func_convert_core_path_wine_to_w32_result\n    func_convert_path_check : \";\" \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" \";\" \"$1\"\n  fi\n}\n# end func_convert_path_nix_to_w32\n\n\n# func_convert_path_msys_to_cygwin ARG\n# Convert path ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.\n# Returns result in func_to_host_file_result.\nfunc_convert_path_msys_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # See func_convert_path_msys_to_w32:\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_msys_to_w32 \"$func_to_host_path_tmp1\"\n    func_cygpath -u -p \"$func_convert_core_msys_to_w32_result\"\n    func_to_host_path_result=$func_cygpath_result\n    func_convert_path_check : : \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" : \"$1\"\n  fi\n}\n# end func_convert_path_msys_to_cygwin\n\n\n# func_convert_path_nix_to_cygwin ARG\n# Convert path ARG from *nix to Cygwin format.  Requires Cygwin installed in a\n# a wine environment, working winepath, and LT_CYGPATH set.  Returns result in\n# func_to_host_file_result.\nfunc_convert_path_nix_to_cygwin ()\n{\n  $debug_cmd\n\n  func_to_host_path_result=$1\n  if test -n \"$1\"; then\n    # Remove leading and trailing path separator characters from\n    # ARG. msys behavior is inconsistent here, cygpath turns them\n    # into '.;' and ';.', and winepath ignores them completely.\n    func_stripname : : \"$1\"\n    func_to_host_path_tmp1=$func_stripname_result\n    func_convert_core_path_wine_to_w32 \"$func_to_host_path_tmp1\"\n    func_cygpath -u -p \"$func_convert_core_path_wine_to_w32_result\"\n    func_to_host_path_result=$func_cygpath_result\n    func_convert_path_check : : \\\n      \"$func_to_host_path_tmp1\" \"$func_to_host_path_result\"\n    func_convert_path_front_back_pathsep \":*\" \"*:\" : \"$1\"\n  fi\n}\n# end func_convert_path_nix_to_cygwin\n\n\n# func_dll_def_p FILE\n# True iff FILE is a Windows DLL '.def' file.\n# Keep in sync with _LT_DLL_DEF_P in libtool.m4\nfunc_dll_def_p ()\n{\n  $debug_cmd\n\n  func_dll_def_p_tmp=`$SED -n \\\n    -e 's/^[\t ]*//' \\\n    -e '/^\\(;.*\\)*$/d' \\\n    -e 's/^\\(EXPORTS\\|LIBRARY\\)\\([\t ].*\\)*$/DEF/p' \\\n    -e q \\\n    \"$1\"`\n  test DEF = \"$func_dll_def_p_tmp\"\n}\n\n\n# func_mode_compile arg...\nfunc_mode_compile ()\n{\n    $debug_cmd\n\n    # Get the compilation command and the source file.\n    base_compile=\n    srcfile=$nonopt  #  always keep a non-empty value in \"srcfile\"\n    suppress_opt=yes\n    suppress_output=\n    arg_mode=normal\n    libobj=\n    later=\n    pie_flag=\n\n    for arg\n    do\n      case $arg_mode in\n      arg  )\n\t# do not \"continue\".  Instead, add this to base_compile\n\tlastarg=$arg\n\targ_mode=normal\n\t;;\n\n      target )\n\tlibobj=$arg\n\targ_mode=normal\n\tcontinue\n\t;;\n\n      normal )\n\t# Accept any command-line options.\n\tcase $arg in\n\t-o)\n\t  test -n \"$libobj\" && \\\n\t    func_fatal_error \"you cannot specify '-o' more than once\"\n\t  arg_mode=target\n\t  continue\n\t  ;;\n\n\t-pie | -fpie | -fPIE)\n          func_append pie_flag \" $arg\"\n\t  continue\n\t  ;;\n\n\t-shared | -static | -prefer-pic | -prefer-non-pic)\n\t  func_append later \" $arg\"\n\t  continue\n\t  ;;\n\n\t-no-suppress)\n\t  suppress_opt=no\n\t  continue\n\t  ;;\n\n\t-Xcompiler)\n\t  arg_mode=arg  #  the next one goes into the \"base_compile\" arg list\n\t  continue      #  The current \"srcfile\" will either be retained or\n\t  ;;            #  replaced later.  I would guess that would be a bug.\n\n\t-Wc,*)\n\t  func_stripname '-Wc,' '' \"$arg\"\n\t  args=$func_stripname_result\n\t  lastarg=\n\t  save_ifs=$IFS; IFS=,\n\t  for arg in $args; do\n\t    IFS=$save_ifs\n\t    func_append_quoted lastarg \"$arg\"\n\t  done\n\t  IFS=$save_ifs\n\t  func_stripname ' ' '' \"$lastarg\"\n\t  lastarg=$func_stripname_result\n\n\t  # Add the arguments to base_compile.\n\t  func_append base_compile \" $lastarg\"\n\t  continue\n\t  ;;\n\n\t*)\n\t  # Accept the current argument as the source file.\n\t  # The previous \"srcfile\" becomes the current argument.\n\t  #\n\t  lastarg=$srcfile\n\t  srcfile=$arg\n\t  ;;\n\tesac  #  case $arg\n\t;;\n      esac    #  case $arg_mode\n\n      # Aesthetically quote the previous argument.\n      func_append_quoted base_compile \"$lastarg\"\n    done # for arg\n\n    case $arg_mode in\n    arg)\n      func_fatal_error \"you must specify an argument for -Xcompile\"\n      ;;\n    target)\n      func_fatal_error \"you must specify a target with '-o'\"\n      ;;\n    *)\n      # Get the name of the library object.\n      test -z \"$libobj\" && {\n\tfunc_basename \"$srcfile\"\n\tlibobj=$func_basename_result\n      }\n      ;;\n    esac\n\n    # Recognize several different file suffixes.\n    # If the user specifies -o file.o, it is replaced with file.lo\n    case $libobj in\n    *.[cCFSifmso] | \\\n    *.ada | *.adb | *.ads | *.asm | \\\n    *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \\\n    *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)\n      func_xform \"$libobj\"\n      libobj=$func_xform_result\n      ;;\n    esac\n\n    case $libobj in\n    *.lo) func_lo2o \"$libobj\"; obj=$func_lo2o_result ;;\n    *)\n      func_fatal_error \"cannot determine name of library object from '$libobj'\"\n      ;;\n    esac\n\n    func_infer_tag $base_compile\n\n    for arg in $later; do\n      case $arg in\n      -shared)\n\ttest yes = \"$build_libtool_libs\" \\\n\t  || func_fatal_configuration \"cannot build a shared library\"\n\tbuild_old_libs=no\n\tcontinue\n\t;;\n\n      -static)\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tcontinue\n\t;;\n\n      -prefer-pic)\n\tpic_mode=yes\n\tcontinue\n\t;;\n\n      -prefer-non-pic)\n\tpic_mode=no\n\tcontinue\n\t;;\n      esac\n    done\n\n    func_quote_for_eval \"$libobj\"\n    test \"X$libobj\" != \"X$func_quote_for_eval_result\" \\\n      && $ECHO \"X$libobj\" | $GREP '[]~#^*{};<>?\"'\"'\"'\t &()|`$[]' \\\n      && func_warning \"libobj name '$libobj' may not contain shell special characters.\"\n    func_dirname_and_basename \"$obj\" \"/\" \"\"\n    objname=$func_basename_result\n    xdir=$func_dirname_result\n    lobj=$xdir$objdir/$objname\n\n    test -z \"$base_compile\" && \\\n      func_fatal_help \"you must specify a compilation command\"\n\n    # Delete any leftover library objects.\n    if test yes = \"$build_old_libs\"; then\n      removelist=\"$obj $lobj $libobj ${libobj}T\"\n    else\n      removelist=\"$lobj $libobj ${libobj}T\"\n    fi\n\n    # On Cygwin there's no \"real\" PIC flag so we must build both object types\n    case $host_os in\n    cygwin* | mingw* | pw32* | os2* | cegcc*)\n      pic_mode=default\n      ;;\n    esac\n    if test no = \"$pic_mode\" && test pass_all != \"$deplibs_check_method\"; then\n      # non-PIC code in shared libraries is not supported\n      pic_mode=default\n    fi\n\n    # Calculate the filename of the output object if compiler does\n    # not support -o with -c\n    if test no = \"$compiler_c_o\"; then\n      output_obj=`$ECHO \"$srcfile\" | $SED 's%^.*/%%; s%\\.[^.]*$%%'`.$objext\n      lockfile=$output_obj.lock\n    else\n      output_obj=\n      need_locks=no\n      lockfile=\n    fi\n\n    # Lock this critical section if it is needed\n    # We use this script file to make the link, it avoids creating a new file\n    if test yes = \"$need_locks\"; then\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    elif test warn = \"$need_locks\"; then\n      if test -f \"$lockfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile exists and contains:\n`cat $lockfile 2>/dev/null`\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n      func_append removelist \" $output_obj\"\n      $ECHO \"$srcfile\" > \"$lockfile\"\n    fi\n\n    $opt_dry_run || $RM $removelist\n    func_append removelist \" $lockfile\"\n    trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15\n\n    func_to_tool_file \"$srcfile\" func_convert_file_msys_to_w32\n    srcfile=$func_to_tool_file_result\n    func_quote_for_eval \"$srcfile\"\n    qsrcfile=$func_quote_for_eval_result\n\n    # Only build a PIC object if we are building libtool libraries.\n    if test yes = \"$build_libtool_libs\"; then\n      # Without this assignment, base_compile gets emptied.\n      fbsd_hideous_sh_bug=$base_compile\n\n      if test no != \"$pic_mode\"; then\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      else\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile\"\n      fi\n\n      func_mkdir_p \"$xdir$objdir\"\n\n      if test -z \"$output_obj\"; then\n\t# Place PIC objects in $objdir\n\tfunc_append command \" -o $lobj\"\n      fi\n\n      func_show_eval_locale \"$command\"\t\\\n          'test -n \"$output_obj\" && $RM $removelist; exit $EXIT_FAILURE'\n\n      if test warn = \"$need_locks\" &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed, then go on to compile the next one\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$lobj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$lobj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n\n      # Allow error messages only from the first compilation.\n      if test yes = \"$suppress_opt\"; then\n\tsuppress_output=' >/dev/null 2>&1'\n      fi\n    fi\n\n    # Only build a position-dependent object if we build old libraries.\n    if test yes = \"$build_old_libs\"; then\n      if test yes != \"$pic_mode\"; then\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile$pie_flag\"\n      else\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      fi\n      if test yes = \"$compiler_c_o\"; then\n\tfunc_append command \" -o $obj\"\n      fi\n\n      # Suppress compiler output if we already did a PIC compilation.\n      func_append command \"$suppress_output\"\n      func_show_eval_locale \"$command\" \\\n        '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'\n\n      if test warn = \"$need_locks\" &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support '-c' and '-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$obj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$obj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n    fi\n\n    $opt_dry_run || {\n      func_write_libtool_object \"$libobj\" \"$objdir/$objname\" \"$objname\"\n\n      # Unlock the critical section if it was locked\n      if test no != \"$need_locks\"; then\n\tremovelist=$lockfile\n        $RM \"$lockfile\"\n      fi\n    }\n\n    exit $EXIT_SUCCESS\n}\n\n$opt_help || {\n  test compile = \"$opt_mode\" && func_mode_compile ${1+\"$@\"}\n}\n\nfunc_mode_help ()\n{\n    # We need to display help for each of the modes.\n    case $opt_mode in\n      \"\")\n        # Generic help is extracted from the usage comments\n        # at the start of this file.\n        func_help\n        ;;\n\n      clean)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...\n\nRemove files from the build directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed\nto RM.\n\nIf FILE is a libtool library, object or program, all the files associated\nwith it are deleted. Otherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      compile)\n      $ECHO \\\n\"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE\n\nCompile a source file into a libtool library object.\n\nThis mode accepts the following additional options:\n\n  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE\n  -no-suppress      do not suppress compiler output for multiple passes\n  -prefer-pic       try to build PIC objects only\n  -prefer-non-pic   try to build non-PIC objects only\n  -shared           do not build a '.o' file suitable for static linking\n  -static           only build a '.o' file suitable for static linking\n  -Wc,FLAG          pass FLAG directly to the compiler\n\nCOMPILE-COMMAND is a command to be used in creating a 'standard' object file\nfrom the given SOURCEFILE.\n\nThe output file name is determined by removing the directory component from\nSOURCEFILE, then substituting the C source code suffix '.c' with the\nlibrary object suffix, '.lo'.\"\n        ;;\n\n      execute)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...\n\nAutomatically set library path, then run a program.\n\nThis mode accepts the following additional options:\n\n  -dlopen FILE      add the directory containing FILE to the library path\n\nThis mode sets the library path environment variable according to '-dlopen'\nflags.\n\nIf any of the ARGS are libtool executable wrappers, then they are translated\ninto their corresponding uninstalled binary, and any of their required library\ndirectories are added to the library path.\n\nThen, COMMAND is executed, with ARGS as arguments.\"\n        ;;\n\n      finish)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=finish [LIBDIR]...\n\nComplete the installation of libtool libraries.\n\nEach LIBDIR is a directory that contains libtool libraries.\n\nThe commands that this mode executes may require superuser privileges.  Use\nthe '--dry-run' option if you just want to see what would be executed.\"\n        ;;\n\n      install)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...\n\nInstall executables or libraries.\n\nINSTALL-COMMAND is the installation command.  The first component should be\neither the 'install' or 'cp' program.\n\nThe following components of INSTALL-COMMAND are treated specially:\n\n  -inst-prefix-dir PREFIX-DIR  Use PREFIX-DIR as a staging area for installation\n\nThe rest of the components are interpreted as arguments to that command (only\nBSD-compatible install options are recognized).\"\n        ;;\n\n      link)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=link LINK-COMMAND...\n\nLink object files or libraries together to form another library, or to\ncreate an executable program.\n\nLINK-COMMAND is a command using the C compiler that you would use to create\na program from several object files.\n\nThe following components of LINK-COMMAND are treated specially:\n\n  -all-static       do not do any dynamic linking at all\n  -avoid-version    do not add a version suffix if possible\n  -bindir BINDIR    specify path to binaries directory (for systems where\n                    libraries must be found in the PATH setting at runtime)\n  -dlopen FILE      '-dlpreopen' FILE if it cannot be dlopened at runtime\n  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols\n  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)\n  -export-symbols SYMFILE\n                    try to export only the symbols listed in SYMFILE\n  -export-symbols-regex REGEX\n                    try to export only the symbols matching REGEX\n  -LLIBDIR          search LIBDIR for required installed libraries\n  -lNAME            OUTPUT-FILE requires the installed library libNAME\n  -module           build a library that can dlopened\n  -no-fast-install  disable the fast-install mode\n  -no-install       link a not-installable executable\n  -no-undefined     declare that a library does not refer to external symbols\n  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects\n  -objectlist FILE  use a list of object files found in FILE to specify objects\n  -os2dllname NAME  force a short DLL name on OS/2 (no effect on other OSes)\n  -precious-files-regex REGEX\n                    don't remove output files matching REGEX\n  -release RELEASE  specify package release information\n  -rpath LIBDIR     the created library will eventually be installed in LIBDIR\n  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries\n  -shared           only do dynamic linking of libtool libraries\n  -shrext SUFFIX    override the standard shared library file extension\n  -static           do not do any dynamic linking of uninstalled libtool libraries\n  -static-libtool-libs\n                    do not do any dynamic linking of libtool libraries\n  -version-info CURRENT[:REVISION[:AGE]]\n                    specify library version info [each variable defaults to 0]\n  -weak LIBNAME     declare that the target provides the LIBNAME interface\n  -Wc,FLAG\n  -Xcompiler FLAG   pass linker-specific FLAG directly to the compiler\n  -Wl,FLAG\n  -Xlinker FLAG     pass linker-specific FLAG directly to the linker\n  -XCClinker FLAG   pass link-specific FLAG to the compiler driver (CC)\n\nAll other options (arguments beginning with '-') are ignored.\n\nEvery other argument is treated as a filename.  Files ending in '.la' are\ntreated as uninstalled libtool libraries, other files are standard or library\nobject files.\n\nIf the OUTPUT-FILE ends in '.la', then a libtool library is created,\nonly library objects ('.lo' files) may be specified, and '-rpath' is\nrequired, except when creating a convenience library.\n\nIf OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created\nusing 'ar' and 'ranlib', or on Windows using 'lib'.\n\nIf OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file\nis created, otherwise an executable program is created.\"\n        ;;\n\n      uninstall)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...\n\nRemove libraries from an installation directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed\nto RM.\n\nIf FILE is a libtool library, all the files associated with it are deleted.\nOtherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      *)\n        func_fatal_help \"invalid operation mode '$opt_mode'\"\n        ;;\n    esac\n\n    echo\n    $ECHO \"Try '$progname --help' for more information about other modes.\"\n}\n\n# Now that we've collected a possible --mode arg, show help if necessary\nif $opt_help; then\n  if test : = \"$opt_help\"; then\n    func_mode_help\n  else\n    {\n      func_help noexit\n      for opt_mode in compile link execute install finish uninstall clean; do\n\tfunc_mode_help\n      done\n    } | $SED -n '1p; 2,$s/^Usage:/  or: /p'\n    {\n      func_help noexit\n      for opt_mode in compile link execute install finish uninstall clean; do\n\techo\n\tfunc_mode_help\n      done\n    } |\n    $SED '1d\n      /^When reporting/,/^Report/{\n\tH\n\td\n      }\n      $x\n      /information about other modes/d\n      /more detailed .*MODE/d\n      s/^Usage:.*--mode=\\([^ ]*\\) .*/Description of \\1 mode:/'\n  fi\n  exit $?\nfi\n\n\n# func_mode_execute arg...\nfunc_mode_execute ()\n{\n    $debug_cmd\n\n    # The first argument is the command name.\n    cmd=$nonopt\n    test -z \"$cmd\" && \\\n      func_fatal_help \"you must specify a COMMAND\"\n\n    # Handle -dlopen flags immediately.\n    for file in $opt_dlopen; do\n      test -f \"$file\" \\\n\t|| func_fatal_help \"'$file' is not a file\"\n\n      dir=\n      case $file in\n      *.la)\n\tfunc_resolve_sysroot \"$file\"\n\tfile=$func_resolve_sysroot_result\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"'$lib' is not a valid libtool archive\"\n\n\t# Read the libtool library.\n\tdlname=\n\tlibrary_names=\n\tfunc_source \"$file\"\n\n\t# Skip this library if it cannot be dlopened.\n\tif test -z \"$dlname\"; then\n\t  # Warn if it was a shared library.\n\t  test -n \"$library_names\" && \\\n\t    func_warning \"'$file' was not linked with '-export-dynamic'\"\n\t  continue\n\tfi\n\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=$func_dirname_result\n\n\tif test -f \"$dir/$objdir/$dlname\"; then\n\t  func_append dir \"/$objdir\"\n\telse\n\t  if test ! -f \"$dir/$dlname\"; then\n\t    func_fatal_error \"cannot find '$dlname' in '$dir' or '$dir/$objdir'\"\n\t  fi\n\tfi\n\t;;\n\n      *.lo)\n\t# Just add the directory containing the .lo file.\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=$func_dirname_result\n\t;;\n\n      *)\n\tfunc_warning \"'-dlopen' is ignored for non-libtool libraries and objects\"\n\tcontinue\n\t;;\n      esac\n\n      # Get the absolute pathname.\n      absdir=`cd \"$dir\" && pwd`\n      test -n \"$absdir\" && dir=$absdir\n\n      # Now add the directory to shlibpath_var.\n      if eval \"test -z \\\"\\$$shlibpath_var\\\"\"; then\n\teval \"$shlibpath_var=\\\"\\$dir\\\"\"\n      else\n\teval \"$shlibpath_var=\\\"\\$dir:\\$$shlibpath_var\\\"\"\n      fi\n    done\n\n    # This variable tells wrapper scripts just to set shlibpath_var\n    # rather than running their programs.\n    libtool_execute_magic=$magic\n\n    # Check if any of the arguments is a wrapper script.\n    args=\n    for file\n    do\n      case $file in\n      -* | *.la | *.lo ) ;;\n      *)\n\t# Do a test to see if this is really a libtool program.\n\tif func_ltwrapper_script_p \"$file\"; then\n\t  func_source \"$file\"\n\t  # Transform arg to wrapped name.\n\t  file=$progdir/$program\n\telif func_ltwrapper_executable_p \"$file\"; then\n\t  func_ltwrapper_scriptname \"$file\"\n\t  func_source \"$func_ltwrapper_scriptname_result\"\n\t  # Transform arg to wrapped name.\n\t  file=$progdir/$program\n\tfi\n\t;;\n      esac\n      # Quote arguments (to preserve shell metacharacters).\n      func_append_quoted args \"$file\"\n    done\n\n    if $opt_dry_run; then\n      # Display what would be done.\n      if test -n \"$shlibpath_var\"; then\n\teval \"\\$ECHO \\\"\\$shlibpath_var=\\$$shlibpath_var\\\"\"\n\techo \"export $shlibpath_var\"\n      fi\n      $ECHO \"$cmd$args\"\n      exit $EXIT_SUCCESS\n    else\n      if test -n \"$shlibpath_var\"; then\n\t# Export the shlibpath_var.\n\teval \"export $shlibpath_var\"\n      fi\n\n      # Restore saved environment variables\n      for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\n      do\n\teval \"if test \\\"\\${save_$lt_var+set}\\\" = set; then\n                $lt_var=\\$save_$lt_var; export $lt_var\n\t      else\n\t\t$lt_unset $lt_var\n\t      fi\"\n      done\n\n      # Now prepare to actually exec the command.\n      exec_cmd=\\$cmd$args\n    fi\n}\n\ntest execute = \"$opt_mode\" && func_mode_execute ${1+\"$@\"}\n\n\n# func_mode_finish arg...\nfunc_mode_finish ()\n{\n    $debug_cmd\n\n    libs=\n    libdirs=\n    admincmds=\n\n    for opt in \"$nonopt\" ${1+\"$@\"}\n    do\n      if test -d \"$opt\"; then\n\tfunc_append libdirs \" $opt\"\n\n      elif test -f \"$opt\"; then\n\tif func_lalib_unsafe_p \"$opt\"; then\n\t  func_append libs \" $opt\"\n\telse\n\t  func_warning \"'$opt' is not a valid libtool archive\"\n\tfi\n\n      else\n\tfunc_fatal_error \"invalid argument '$opt'\"\n      fi\n    done\n\n    if test -n \"$libs\"; then\n      if test -n \"$lt_sysroot\"; then\n        sysroot_regex=`$ECHO \"$lt_sysroot\" | $SED \"$sed_make_literal_regex\"`\n        sysroot_cmd=\"s/\\([ ']\\)$sysroot_regex/\\1/g;\"\n      else\n        sysroot_cmd=\n      fi\n\n      # Remove sysroot references\n      if $opt_dry_run; then\n        for lib in $libs; do\n          echo \"removing references to $lt_sysroot and '=' prefixes from $lib\"\n        done\n      else\n        tmpdir=`func_mktempdir`\n        for lib in $libs; do\n\t  $SED -e \"$sysroot_cmd s/\\([ ']-[LR]\\)=/\\1/g; s/\\([ ']\\)=/\\1/g\" $lib \\\n\t    > $tmpdir/tmp-la\n\t  mv -f $tmpdir/tmp-la $lib\n\tdone\n        ${RM}r \"$tmpdir\"\n      fi\n    fi\n\n    if test -n \"$finish_cmds$finish_eval\" && test -n \"$libdirs\"; then\n      for libdir in $libdirs; do\n\tif test -n \"$finish_cmds\"; then\n\t  # Do each command in the finish commands.\n\t  func_execute_cmds \"$finish_cmds\" 'admincmds=\"$admincmds\n'\"$cmd\"'\"'\n\tfi\n\tif test -n \"$finish_eval\"; then\n\t  # Do the single finish_eval.\n\t  eval cmds=\\\"$finish_eval\\\"\n\t  $opt_dry_run || eval \"$cmds\" || func_append admincmds \"\n       $cmds\"\n\tfi\n      done\n    fi\n\n    # Exit here if they wanted silent mode.\n    $opt_quiet && exit $EXIT_SUCCESS\n\n    if test -n \"$finish_cmds$finish_eval\" && test -n \"$libdirs\"; then\n      echo \"----------------------------------------------------------------------\"\n      echo \"Libraries have been installed in:\"\n      for libdir in $libdirs; do\n\t$ECHO \"   $libdir\"\n      done\n      echo\n      echo \"If you ever happen to want to link against installed libraries\"\n      echo \"in a given directory, LIBDIR, you must either use libtool, and\"\n      echo \"specify the full pathname of the library, or use the '-LLIBDIR'\"\n      echo \"flag during linking and do at least one of the following:\"\n      if test -n \"$shlibpath_var\"; then\n\techo \"   - add LIBDIR to the '$shlibpath_var' environment variable\"\n\techo \"     during execution\"\n      fi\n      if test -n \"$runpath_var\"; then\n\techo \"   - add LIBDIR to the '$runpath_var' environment variable\"\n\techo \"     during linking\"\n      fi\n      if test -n \"$hardcode_libdir_flag_spec\"; then\n\tlibdir=LIBDIR\n\teval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\n\t$ECHO \"   - use the '$flag' linker flag\"\n      fi\n      if test -n \"$admincmds\"; then\n\t$ECHO \"   - have your system administrator run these commands:$admincmds\"\n      fi\n      if test -f /etc/ld.so.conf; then\n\techo \"   - have your system administrator add LIBDIR to '/etc/ld.so.conf'\"\n      fi\n      echo\n\n      echo \"See any operating system documentation about shared libraries for\"\n      case $host in\n\tsolaris2.[6789]|solaris2.1[0-9])\n\t  echo \"more information, such as the ld(1), crle(1) and ld.so(8) manual\"\n\t  echo \"pages.\"\n\t  ;;\n\t*)\n\t  echo \"more information, such as the ld(1) and ld.so(8) manual pages.\"\n\t  ;;\n      esac\n      echo \"----------------------------------------------------------------------\"\n    fi\n    exit $EXIT_SUCCESS\n}\n\ntest finish = \"$opt_mode\" && func_mode_finish ${1+\"$@\"}\n\n\n# func_mode_install arg...\nfunc_mode_install ()\n{\n    $debug_cmd\n\n    # There may be an optional sh(1) argument at the beginning of\n    # install_prog (especially on Windows NT).\n    if test \"$SHELL\" = \"$nonopt\" || test /bin/sh = \"$nonopt\" ||\n       # Allow the use of GNU shtool's install command.\n       case $nonopt in *shtool*) :;; *) false;; esac\n    then\n      # Aesthetically quote it.\n      func_quote_for_eval \"$nonopt\"\n      install_prog=\"$func_quote_for_eval_result \"\n      arg=$1\n      shift\n    else\n      install_prog=\n      arg=$nonopt\n    fi\n\n    # The real first argument should be the name of the installation program.\n    # Aesthetically quote it.\n    func_quote_for_eval \"$arg\"\n    func_append install_prog \"$func_quote_for_eval_result\"\n    install_shared_prog=$install_prog\n    case \" $install_prog \" in\n      *[\\\\\\ /]cp\\ *) install_cp=: ;;\n      *) install_cp=false ;;\n    esac\n\n    # We need to accept at least all the BSD install flags.\n    dest=\n    files=\n    opts=\n    prev=\n    install_type=\n    isdir=false\n    stripme=\n    no_mode=:\n    for arg\n    do\n      arg2=\n      if test -n \"$dest\"; then\n\tfunc_append files \" $dest\"\n\tdest=$arg\n\tcontinue\n      fi\n\n      case $arg in\n      -d) isdir=: ;;\n      -f)\n\tif $install_cp; then :; else\n\t  prev=$arg\n\tfi\n\t;;\n      -g | -m | -o)\n\tprev=$arg\n\t;;\n      -s)\n\tstripme=\" -s\"\n\tcontinue\n\t;;\n      -*)\n\t;;\n      *)\n\t# If the previous option needed an argument, then skip it.\n\tif test -n \"$prev\"; then\n\t  if test X-m = \"X$prev\" && test -n \"$install_override_mode\"; then\n\t    arg2=$install_override_mode\n\t    no_mode=false\n\t  fi\n\t  prev=\n\telse\n\t  dest=$arg\n\t  continue\n\tfi\n\t;;\n      esac\n\n      # Aesthetically quote the argument.\n      func_quote_for_eval \"$arg\"\n      func_append install_prog \" $func_quote_for_eval_result\"\n      if test -n \"$arg2\"; then\n\tfunc_quote_for_eval \"$arg2\"\n      fi\n      func_append install_shared_prog \" $func_quote_for_eval_result\"\n    done\n\n    test -z \"$install_prog\" && \\\n      func_fatal_help \"you must specify an install program\"\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the '$prev' option requires an argument\"\n\n    if test -n \"$install_override_mode\" && $no_mode; then\n      if $install_cp; then :; else\n\tfunc_quote_for_eval \"$install_override_mode\"\n\tfunc_append install_shared_prog \" -m $func_quote_for_eval_result\"\n      fi\n    fi\n\n    if test -z \"$files\"; then\n      if test -z \"$dest\"; then\n\tfunc_fatal_help \"no file or destination specified\"\n      else\n\tfunc_fatal_help \"you must specify a destination\"\n      fi\n    fi\n\n    # Strip any trailing slash from the destination.\n    func_stripname '' '/' \"$dest\"\n    dest=$func_stripname_result\n\n    # Check to see that the destination is a directory.\n    test -d \"$dest\" && isdir=:\n    if $isdir; then\n      destdir=$dest\n      destname=\n    else\n      func_dirname_and_basename \"$dest\" \"\" \".\"\n      destdir=$func_dirname_result\n      destname=$func_basename_result\n\n      # Not a directory, so check to see that there is only one file specified.\n      set dummy $files; shift\n      test \"$#\" -gt 1 && \\\n\tfunc_fatal_help \"'$dest' is not a directory\"\n    fi\n    case $destdir in\n    [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n    *)\n      for file in $files; do\n\tcase $file in\n\t*.lo) ;;\n\t*)\n\t  func_fatal_help \"'$destdir' must be an absolute directory name\"\n\t  ;;\n\tesac\n      done\n      ;;\n    esac\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=$magic\n\n    staticlibs=\n    future_libdirs=\n    current_libdirs=\n    for file in $files; do\n\n      # Do each installation.\n      case $file in\n      *.$libext)\n\t# Do the static libraries later.\n\tfunc_append staticlibs \" $file\"\n\t;;\n\n      *.la)\n\tfunc_resolve_sysroot \"$file\"\n\tfile=$func_resolve_sysroot_result\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"'$file' is not a valid libtool archive\"\n\n\tlibrary_names=\n\told_library=\n\trelink_command=\n\tfunc_source \"$file\"\n\n\t# Add the libdir to current_libdirs if it is the destination.\n\tif test \"X$destdir\" = \"X$libdir\"; then\n\t  case \"$current_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append current_libdirs \" $libdir\" ;;\n\t  esac\n\telse\n\t  # Note the libdir as a future libdir.\n\t  case \"$future_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append future_libdirs \" $libdir\" ;;\n\t  esac\n\tfi\n\n\tfunc_dirname \"$file\" \"/\" \"\"\n\tdir=$func_dirname_result\n\tfunc_append dir \"$objdir\"\n\n\tif test -n \"$relink_command\"; then\n\t  # Determine the prefix the user has applied to our future dir.\n\t  inst_prefix_dir=`$ECHO \"$destdir\" | $SED -e \"s%$libdir\\$%%\"`\n\n\t  # Don't allow the user to place us outside of our expected\n\t  # location b/c this prevents finding dependent libraries that\n\t  # are installed to the same prefix.\n\t  # At present, this check doesn't affect windows .dll's that\n\t  # are installed into $libdir/../bin (currently, that works fine)\n\t  # but it's something to keep an eye on.\n\t  test \"$inst_prefix_dir\" = \"$destdir\" && \\\n\t    func_fatal_error \"error: cannot install '$file' to a directory not ending in $libdir\"\n\n\t  if test -n \"$inst_prefix_dir\"; then\n\t    # Stick the inst_prefix_dir data into the link command.\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%\"`\n\t  else\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%%\"`\n\t  fi\n\n\t  func_warning \"relinking '$file'\"\n\t  func_show_eval \"$relink_command\" \\\n\t    'func_fatal_error \"error: relink '\\''$file'\\'' with the above command before installing it\"'\n\tfi\n\n\t# See the names of the shared library.\n\tset dummy $library_names; shift\n\tif test -n \"$1\"; then\n\t  realname=$1\n\t  shift\n\n\t  srcname=$realname\n\t  test -n \"$relink_command\" && srcname=${realname}T\n\n\t  # Install the shared library and build the symlinks.\n\t  func_show_eval \"$install_shared_prog $dir/$srcname $destdir/$realname\" \\\n\t      'exit $?'\n\t  tstripme=$stripme\n\t  case $host_os in\n\t  cygwin* | mingw* | pw32* | cegcc*)\n\t    case $realname in\n\t    *.dll.a)\n\t      tstripme=\n\t      ;;\n\t    esac\n\t    ;;\n\t  os2*)\n\t    case $realname in\n\t    *_dll.a)\n\t      tstripme=\n\t      ;;\n\t    esac\n\t    ;;\n\t  esac\n\t  if test -n \"$tstripme\" && test -n \"$striplib\"; then\n\t    func_show_eval \"$striplib $destdir/$realname\" 'exit $?'\n\t  fi\n\n\t  if test \"$#\" -gt 0; then\n\t    # Delete the old symlinks, and create new ones.\n\t    # Try 'ln -sf' first, because the 'ln' binary might depend on\n\t    # the symlink we replace!  Solaris /bin/ln does not understand -f,\n\t    # so we also need to try rm && ln -s.\n\t    for linkname\n\t    do\n\t      test \"$linkname\" != \"$realname\" \\\n\t\t&& func_show_eval \"(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })\"\n\t    done\n\t  fi\n\n\t  # Do each command in the postinstall commands.\n\t  lib=$destdir/$realname\n\t  func_execute_cmds \"$postinstall_cmds\" 'exit $?'\n\tfi\n\n\t# Install the pseudo-library for information purposes.\n\tfunc_basename \"$file\"\n\tname=$func_basename_result\n\tinstname=$dir/${name}i\n\tfunc_show_eval \"$install_prog $instname $destdir/$name\" 'exit $?'\n\n\t# Maybe install the static library, too.\n\ttest -n \"$old_library\" && func_append staticlibs \" $dir/$old_library\"\n\t;;\n\n      *.lo)\n\t# Install (i.e. copy) a libtool object.\n\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=$destdir/$destname\n\telse\n\t  func_basename \"$file\"\n\t  destfile=$func_basename_result\n\t  destfile=$destdir/$destfile\n\tfi\n\n\t# Deduce the name of the destination old-style object file.\n\tcase $destfile in\n\t*.lo)\n\t  func_lo2o \"$destfile\"\n\t  staticdest=$func_lo2o_result\n\t  ;;\n\t*.$objext)\n\t  staticdest=$destfile\n\t  destfile=\n\t  ;;\n\t*)\n\t  func_fatal_help \"cannot copy a libtool object to '$destfile'\"\n\t  ;;\n\tesac\n\n\t# Install the libtool object if requested.\n\ttest -n \"$destfile\" && \\\n\t  func_show_eval \"$install_prog $file $destfile\" 'exit $?'\n\n\t# Install the old object if enabled.\n\tif test yes = \"$build_old_libs\"; then\n\t  # Deduce the name of the old-style object file.\n\t  func_lo2o \"$file\"\n\t  staticobj=$func_lo2o_result\n\t  func_show_eval \"$install_prog \\$staticobj \\$staticdest\" 'exit $?'\n\tfi\n\texit $EXIT_SUCCESS\n\t;;\n\n      *)\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=$destdir/$destname\n\telse\n\t  func_basename \"$file\"\n\t  destfile=$func_basename_result\n\t  destfile=$destdir/$destfile\n\tfi\n\n\t# If the file is missing, and there is a .exe on the end, strip it\n\t# because it is most likely a libtool script we actually want to\n\t# install\n\tstripped_ext=\n\tcase $file in\n\t  *.exe)\n\t    if test ! -f \"$file\"; then\n\t      func_stripname '' '.exe' \"$file\"\n\t      file=$func_stripname_result\n\t      stripped_ext=.exe\n\t    fi\n\t    ;;\n\tesac\n\n\t# Do a test to see if this is really a libtool program.\n\tcase $host in\n\t*cygwin* | *mingw*)\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      wrapper=$func_ltwrapper_scriptname_result\n\t    else\n\t      func_stripname '' '.exe' \"$file\"\n\t      wrapper=$func_stripname_result\n\t    fi\n\t    ;;\n\t*)\n\t    wrapper=$file\n\t    ;;\n\tesac\n\tif func_ltwrapper_script_p \"$wrapper\"; then\n\t  notinst_deplibs=\n\t  relink_command=\n\n\t  func_source \"$wrapper\"\n\n\t  # Check the variables that should have been set.\n\t  test -z \"$generated_by_libtool_version\" && \\\n\t    func_fatal_error \"invalid libtool wrapper script '$wrapper'\"\n\n\t  finalize=:\n\t  for lib in $notinst_deplibs; do\n\t    # Check to see that each library is installed.\n\t    libdir=\n\t    if test -f \"$lib\"; then\n\t      func_source \"$lib\"\n\t    fi\n\t    libfile=$libdir/`$ECHO \"$lib\" | $SED 's%^.*/%%g'`\n\t    if test -n \"$libdir\" && test ! -f \"$libfile\"; then\n\t      func_warning \"'$lib' has not been installed in '$libdir'\"\n\t      finalize=false\n\t    fi\n\t  done\n\n\t  relink_command=\n\t  func_source \"$wrapper\"\n\n\t  outputname=\n\t  if test no = \"$fast_install\" && test -n \"$relink_command\"; then\n\t    $opt_dry_run || {\n\t      if $finalize; then\n\t        tmpdir=`func_mktempdir`\n\t\tfunc_basename \"$file$stripped_ext\"\n\t\tfile=$func_basename_result\n\t        outputname=$tmpdir/$file\n\t        # Replace the output file specification.\n\t        relink_command=`$ECHO \"$relink_command\" | $SED 's%@OUTPUT@%'\"$outputname\"'%g'`\n\n\t        $opt_quiet || {\n\t          func_quote_for_expand \"$relink_command\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t        }\n\t        if eval \"$relink_command\"; then :\n\t          else\n\t\t  func_error \"error: relink '$file' with the above command before installing it\"\n\t\t  $opt_dry_run || ${RM}r \"$tmpdir\"\n\t\t  continue\n\t        fi\n\t        file=$outputname\n\t      else\n\t        func_warning \"cannot relink '$file'\"\n\t      fi\n\t    }\n\t  else\n\t    # Install the binary that we compiled earlier.\n\t    file=`$ECHO \"$file$stripped_ext\" | $SED \"s%\\([^/]*\\)$%$objdir/\\1%\"`\n\t  fi\n\tfi\n\n\t# remove .exe since cygwin /usr/bin/install will append another\n\t# one anyway\n\tcase $install_prog,$host in\n\t*/usr/bin/install*,*cygwin*)\n\t  case $file:$destfile in\n\t  *.exe:*.exe)\n\t    # this is ok\n\t    ;;\n\t  *.exe:*)\n\t    destfile=$destfile.exe\n\t    ;;\n\t  *:*.exe)\n\t    func_stripname '' '.exe' \"$destfile\"\n\t    destfile=$func_stripname_result\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tfunc_show_eval \"$install_prog\\$stripme \\$file \\$destfile\" 'exit $?'\n\t$opt_dry_run || if test -n \"$outputname\"; then\n\t  ${RM}r \"$tmpdir\"\n\tfi\n\t;;\n      esac\n    done\n\n    for file in $staticlibs; do\n      func_basename \"$file\"\n      name=$func_basename_result\n\n      # Set up the ranlib parameters.\n      oldlib=$destdir/$name\n      func_to_tool_file \"$oldlib\" func_convert_file_msys_to_w32\n      tool_oldlib=$func_to_tool_file_result\n\n      func_show_eval \"$install_prog \\$file \\$oldlib\" 'exit $?'\n\n      if test -n \"$stripme\" && test -n \"$old_striplib\"; then\n\tfunc_show_eval \"$old_striplib $tool_oldlib\" 'exit $?'\n      fi\n\n      # Do each command in the postinstall commands.\n      func_execute_cmds \"$old_postinstall_cmds\" 'exit $?'\n    done\n\n    test -n \"$future_libdirs\" && \\\n      func_warning \"remember to run '$progname --finish$future_libdirs'\"\n\n    if test -n \"$current_libdirs\"; then\n      # Maybe just do a dry run.\n      $opt_dry_run && current_libdirs=\" -n$current_libdirs\"\n      exec_cmd='$SHELL \"$progpath\" $preserve_args --finish$current_libdirs'\n    else\n      exit $EXIT_SUCCESS\n    fi\n}\n\ntest install = \"$opt_mode\" && func_mode_install ${1+\"$@\"}\n\n\n# func_generate_dlsyms outputname originator pic_p\n# Extract symbols from dlprefiles and create ${outputname}S.o with\n# a dlpreopen symbol table.\nfunc_generate_dlsyms ()\n{\n    $debug_cmd\n\n    my_outputname=$1\n    my_originator=$2\n    my_pic_p=${3-false}\n    my_prefix=`$ECHO \"$my_originator\" | $SED 's%[^a-zA-Z0-9]%_%g'`\n    my_dlsyms=\n\n    if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n      if test -n \"$NM\" && test -n \"$global_symbol_pipe\"; then\n\tmy_dlsyms=${my_outputname}S.c\n      else\n\tfunc_error \"not configured to extract global symbols from dlpreopened files\"\n      fi\n    fi\n\n    if test -n \"$my_dlsyms\"; then\n      case $my_dlsyms in\n      \"\") ;;\n      *.c)\n\t# Discover the nlist of each of the dlfiles.\n\tnlist=$output_objdir/$my_outputname.nm\n\n\tfunc_show_eval \"$RM $nlist ${nlist}S ${nlist}T\"\n\n\t# Parse the name list into a source file.\n\tfunc_verbose \"creating $output_objdir/$my_dlsyms\"\n\n\t$opt_dry_run || $ECHO > \"$output_objdir/$my_dlsyms\" \"\\\n/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */\n/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */\n\n#ifdef __cplusplus\nextern \\\"C\\\" {\n#endif\n\n#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))\n#pragma GCC diagnostic ignored \\\"-Wstrict-prototypes\\\"\n#endif\n\n/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */\n#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE\n/* DATA imports from DLLs on WIN32 can't be const, because runtime\n   relocations are performed -- see ld's documentation on pseudo-relocs.  */\n# define LT_DLSYM_CONST\n#elif defined __osf__\n/* This system does not cope well with relocations in const data.  */\n# define LT_DLSYM_CONST\n#else\n# define LT_DLSYM_CONST const\n#endif\n\n#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)\n\n/* External symbol declarations for the compiler. */\\\n\"\n\n\tif test yes = \"$dlself\"; then\n\t  func_verbose \"generating symbol list for '$output'\"\n\n\t  $opt_dry_run || echo ': @PROGRAM@ ' > \"$nlist\"\n\n\t  # Add our own program objects to the symbol list.\n\t  progfiles=`$ECHO \"$objs$old_deplibs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\t  for progfile in $progfiles; do\n\t    func_to_tool_file \"$progfile\" func_convert_file_msys_to_w32\n\t    func_verbose \"extracting global C symbols from '$func_to_tool_file_result'\"\n\t    $opt_dry_run || eval \"$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'\"\n\t  done\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  if test -n \"$export_symbols_regex\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -e \"$export_symbols_regex\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  # Prepare the list of exported symbols\n\t  if test -z \"$export_symbols\"; then\n\t    export_symbols=$output_objdir/$outputname.exp\n\t    $opt_dry_run || {\n\t      $RM $export_symbols\n\t      eval \"$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \\(.*\\)$/\\1/p' \"'< \"$nlist\" > \"$export_symbols\"'\n\t      case $host in\n\t      *cygwin* | *mingw* | *cegcc* )\n                eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n                eval 'cat \"$export_symbols\" >> \"$output_objdir/$outputname.def\"'\n\t        ;;\n\t      esac\n\t    }\n\t  else\n\t    $opt_dry_run || {\n\t      eval \"$SED -e 's/\\([].[*^$]\\)/\\\\\\\\\\1/g' -e 's/^/ /' -e 's/$/$/'\"' < \"$export_symbols\" > \"$output_objdir/$outputname.exp\"'\n\t      eval '$GREP -f \"$output_objdir/$outputname.exp\" < \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t      case $host in\n\t        *cygwin* | *mingw* | *cegcc* )\n\t          eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n\t          eval 'cat \"$nlist\" >> \"$output_objdir/$outputname.def\"'\n\t          ;;\n\t      esac\n\t    }\n\t  fi\n\tfi\n\n\tfor dlprefile in $dlprefiles; do\n\t  func_verbose \"extracting global C symbols from '$dlprefile'\"\n\t  func_basename \"$dlprefile\"\n\t  name=$func_basename_result\n          case $host in\n\t    *cygwin* | *mingw* | *cegcc* )\n\t      # if an import library, we need to obtain dlname\n\t      if func_win32_import_lib_p \"$dlprefile\"; then\n\t        func_tr_sh \"$dlprefile\"\n\t        eval \"curr_lafile=\\$libfile_$func_tr_sh_result\"\n\t        dlprefile_dlbasename=\n\t        if test -n \"$curr_lafile\" && func_lalib_p \"$curr_lafile\"; then\n\t          # Use subshell, to avoid clobbering current variable values\n\t          dlprefile_dlname=`source \"$curr_lafile\" && echo \"$dlname\"`\n\t          if test -n \"$dlprefile_dlname\"; then\n\t            func_basename \"$dlprefile_dlname\"\n\t            dlprefile_dlbasename=$func_basename_result\n\t          else\n\t            # no lafile. user explicitly requested -dlpreopen <import library>.\n\t            $sharedlib_from_linklib_cmd \"$dlprefile\"\n\t            dlprefile_dlbasename=$sharedlib_from_linklib_result\n\t          fi\n\t        fi\n\t        $opt_dry_run || {\n\t          if test -n \"$dlprefile_dlbasename\"; then\n\t            eval '$ECHO \": $dlprefile_dlbasename\" >> \"$nlist\"'\n\t          else\n\t            func_warning \"Could not compute DLL name from $name\"\n\t            eval '$ECHO \": $name \" >> \"$nlist\"'\n\t          fi\n\t          func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t          eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe |\n\t            $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'\"\n\t        }\n\t      else # not an import lib\n\t        $opt_dry_run || {\n\t          eval '$ECHO \": $name \" >> \"$nlist\"'\n\t          func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t          eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe >> '$nlist'\"\n\t        }\n\t      fi\n\t    ;;\n\t    *)\n\t      $opt_dry_run || {\n\t        eval '$ECHO \": $name \" >> \"$nlist\"'\n\t        func_to_tool_file \"$dlprefile\" func_convert_file_msys_to_w32\n\t        eval \"$NM \\\"$func_to_tool_file_result\\\" 2>/dev/null | $global_symbol_pipe >> '$nlist'\"\n\t      }\n\t    ;;\n          esac\n\tdone\n\n\t$opt_dry_run || {\n\t  # Make sure we have at least an empty file.\n\t  test -f \"$nlist\" || : > \"$nlist\"\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T\n\t    $MV \"$nlist\"T \"$nlist\"\n\t  fi\n\n\t  # Try sorting and uniquifying the output.\n\t  if $GREP -v \"^: \" < \"$nlist\" |\n\t      if sort -k 3 </dev/null >/dev/null 2>&1; then\n\t\tsort -k 3\n\t      else\n\t\tsort +2\n\t      fi |\n\t      uniq > \"$nlist\"S; then\n\t    :\n\t  else\n\t    $GREP -v \"^: \" < \"$nlist\" > \"$nlist\"S\n\t  fi\n\n\t  if test -f \"$nlist\"S; then\n\t    eval \"$global_symbol_to_cdecl\"' < \"$nlist\"S >> \"$output_objdir/$my_dlsyms\"'\n\t  else\n\t    echo '/* NONE */' >> \"$output_objdir/$my_dlsyms\"\n\t  fi\n\n\t  func_show_eval '$RM \"${nlist}I\"'\n\t  if test -n \"$global_symbol_to_import\"; then\n\t    eval \"$global_symbol_to_import\"' < \"$nlist\"S > \"$nlist\"I'\n\t  fi\n\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n\n/* The mapping between symbol names and symbols.  */\ntypedef struct {\n  const char *name;\n  void *address;\n} lt_dlsymlist;\nextern LT_DLSYM_CONST lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[];\\\n\"\n\n\t  if test -s \"$nlist\"I; then\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\nstatic void lt_syminit(void)\n{\n  LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols;\n  for (; symbol->name; ++symbol)\n    {\"\n\t    $SED 's/.*/      if (STREQ (symbol->name, \\\"&\\\")) symbol->address = (void *) \\&&;/' < \"$nlist\"I >> \"$output_objdir/$my_dlsyms\"\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n    }\n}\"\n\t  fi\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\nLT_DLSYM_CONST lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[] =\n{ {\\\"$my_originator\\\", (void *) 0},\"\n\n\t  if test -s \"$nlist\"I; then\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n  {\\\"@INIT@\\\", (void *) &lt_syminit},\"\n\t  fi\n\n\t  case $need_lib_prefix in\n\t  no)\n\t    eval \"$global_symbol_to_c_name_address\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  *)\n\t    eval \"$global_symbol_to_c_name_address_lib_prefix\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  esac\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt_${my_prefix}_LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\\\n\"\n\t} # !$opt_dry_run\n\n\tpic_flag_for_symtable=\n\tcase \"$compile_command \" in\n\t*\" -static \"*) ;;\n\t*)\n\t  case $host in\n\t  # compiling the symbol table file with pic_flag works around\n\t  # a FreeBSD bug that causes programs to crash when -lm is\n\t  # linked before any other PIC object.  But we must not use\n\t  # pic_flag when linking with -static.  The problem exists in\n\t  # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.\n\t  *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)\n\t    pic_flag_for_symtable=\" $pic_flag -DFREEBSD_WORKAROUND\" ;;\n\t  *-*-hpux*)\n\t    pic_flag_for_symtable=\" $pic_flag\"  ;;\n\t  *)\n\t    $my_pic_p && pic_flag_for_symtable=\" $pic_flag\"\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tsymtab_cflags=\n\tfor arg in $LTCFLAGS; do\n\t  case $arg in\n\t  -pie | -fpie | -fPIE) ;;\n\t  *) func_append symtab_cflags \" $arg\" ;;\n\t  esac\n\tdone\n\n\t# Now compile the dynamic symbol file.\n\tfunc_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable \"$my_dlsyms\")' 'exit $?'\n\n\t# Clean up the generated files.\n\tfunc_show_eval '$RM \"$output_objdir/$my_dlsyms\" \"$nlist\" \"${nlist}S\" \"${nlist}T\" \"${nlist}I\"'\n\n\t# Transform the symbol file into the correct name.\n\tsymfileobj=$output_objdir/${my_outputname}S.$objext\n\tcase $host in\n\t*cygwin* | *mingw* | *cegcc* )\n\t  if test -f \"$output_objdir/$my_outputname.def\"; then\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t  else\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  fi\n\t  ;;\n\t*)\n\t  compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  ;;\n\tesac\n\t;;\n      *)\n\tfunc_fatal_error \"unknown suffix for '$my_dlsyms'\"\n\t;;\n      esac\n    else\n      # We keep going just in case the user didn't refer to\n      # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe\n      # really was required.\n\n      # Nullify the symbol file.\n      compile_command=`$ECHO \"$compile_command\" | $SED \"s% @SYMFILE@%%\"`\n      finalize_command=`$ECHO \"$finalize_command\" | $SED \"s% @SYMFILE@%%\"`\n    fi\n}\n\n# func_cygming_gnu_implib_p ARG\n# This predicate returns with zero status (TRUE) if\n# ARG is a GNU/binutils-style import library. Returns\n# with nonzero status (FALSE) otherwise.\nfunc_cygming_gnu_implib_p ()\n{\n  $debug_cmd\n\n  func_to_tool_file \"$1\" func_convert_file_msys_to_w32\n  func_cygming_gnu_implib_tmp=`$NM \"$func_to_tool_file_result\" | eval \"$global_symbol_pipe\" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'`\n  test -n \"$func_cygming_gnu_implib_tmp\"\n}\n\n# func_cygming_ms_implib_p ARG\n# This predicate returns with zero status (TRUE) if\n# ARG is an MS-style import library. Returns\n# with nonzero status (FALSE) otherwise.\nfunc_cygming_ms_implib_p ()\n{\n  $debug_cmd\n\n  func_to_tool_file \"$1\" func_convert_file_msys_to_w32\n  func_cygming_ms_implib_tmp=`$NM \"$func_to_tool_file_result\" | eval \"$global_symbol_pipe\" | $GREP '_NULL_IMPORT_DESCRIPTOR'`\n  test -n \"$func_cygming_ms_implib_tmp\"\n}\n\n# func_win32_libid arg\n# return the library type of file 'arg'\n#\n# Need a lot of goo to handle *both* DLLs and import libs\n# Has to be a shell function in order to 'eat' the argument\n# that is supplied when $file_magic_command is called.\n# Despite the name, also deal with 64 bit binaries.\nfunc_win32_libid ()\n{\n  $debug_cmd\n\n  win32_libid_type=unknown\n  win32_fileres=`file -L $1 2>/dev/null`\n  case $win32_fileres in\n  *ar\\ archive\\ import\\ library*) # definitely import\n    win32_libid_type=\"x86 archive import\"\n    ;;\n  *ar\\ archive*) # could be an import, or static\n    # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.\n    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |\n       $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then\n      case $nm_interface in\n      \"MS dumpbin\")\n\tif func_cygming_ms_implib_p \"$1\" ||\n\t   func_cygming_gnu_implib_p \"$1\"\n\tthen\n\t  win32_nmres=import\n\telse\n\t  win32_nmres=\n\tfi\n\t;;\n      *)\n\tfunc_to_tool_file \"$1\" func_convert_file_msys_to_w32\n\twin32_nmres=`eval $NM -f posix -A \\\"$func_to_tool_file_result\\\" |\n\t  $SED -n -e '\n\t    1,100{\n\t\t/ I /{\n\t\t    s|.*|import|\n\t\t    p\n\t\t    q\n\t\t}\n\t    }'`\n\t;;\n      esac\n      case $win32_nmres in\n      import*)  win32_libid_type=\"x86 archive import\";;\n      *)        win32_libid_type=\"x86 archive static\";;\n      esac\n    fi\n    ;;\n  *DLL*)\n    win32_libid_type=\"x86 DLL\"\n    ;;\n  *executable*) # but shell scripts are \"executable\" too...\n    case $win32_fileres in\n    *MS\\ Windows\\ PE\\ Intel*)\n      win32_libid_type=\"x86 DLL\"\n      ;;\n    esac\n    ;;\n  esac\n  $ECHO \"$win32_libid_type\"\n}\n\n# func_cygming_dll_for_implib ARG\n#\n# Platform-specific function to extract the\n# name of the DLL associated with the specified\n# import library ARG.\n# Invoked by eval'ing the libtool variable\n#    $sharedlib_from_linklib_cmd\n# Result is available in the variable\n#    $sharedlib_from_linklib_result\nfunc_cygming_dll_for_implib ()\n{\n  $debug_cmd\n\n  sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify \"$1\"`\n}\n\n# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs\n#\n# The is the core of a fallback implementation of a\n# platform-specific function to extract the name of the\n# DLL associated with the specified import library LIBNAME.\n#\n# SECTION_NAME is either .idata$6 or .idata$7, depending\n# on the platform and compiler that created the implib.\n#\n# Echos the name of the DLL associated with the\n# specified import library.\nfunc_cygming_dll_for_implib_fallback_core ()\n{\n  $debug_cmd\n\n  match_literal=`$ECHO \"$1\" | $SED \"$sed_make_literal_regex\"`\n  $OBJDUMP -s --section \"$1\" \"$2\" 2>/dev/null |\n    $SED '/^Contents of section '\"$match_literal\"':/{\n      # Place marker at beginning of archive member dllname section\n      s/.*/====MARK====/\n      p\n      d\n    }\n    # These lines can sometimes be longer than 43 characters, but\n    # are always uninteresting\n    /:[\t ]*file format pe[i]\\{,1\\}-/d\n    /^In archive [^:]*:/d\n    # Ensure marker is printed\n    /^====MARK====/p\n    # Remove all lines with less than 43 characters\n    /^.\\{43\\}/!d\n    # From remaining lines, remove first 43 characters\n    s/^.\\{43\\}//' |\n    $SED -n '\n      # Join marker and all lines until next marker into a single line\n      /^====MARK====/ b para\n      H\n      $ b para\n      b\n      :para\n      x\n      s/\\n//g\n      # Remove the marker\n      s/^====MARK====//\n      # Remove trailing dots and whitespace\n      s/[\\. \\t]*$//\n      # Print\n      /./p' |\n    # we now have a list, one entry per line, of the stringified\n    # contents of the appropriate section of all members of the\n    # archive that possess that section. Heuristic: eliminate\n    # all those that have a first or second character that is\n    # a '.' (that is, objdump's representation of an unprintable\n    # character.) This should work for all archives with less than\n    # 0x302f exports -- but will fail for DLLs whose name actually\n    # begins with a literal '.' or a single character followed by\n    # a '.'.\n    #\n    # Of those that remain, print the first one.\n    $SED -e '/^\\./d;/^.\\./d;q'\n}\n\n# func_cygming_dll_for_implib_fallback ARG\n# Platform-specific function to extract the\n# name of the DLL associated with the specified\n# import library ARG.\n#\n# This fallback implementation is for use when $DLLTOOL\n# does not support the --identify-strict option.\n# Invoked by eval'ing the libtool variable\n#    $sharedlib_from_linklib_cmd\n# Result is available in the variable\n#    $sharedlib_from_linklib_result\nfunc_cygming_dll_for_implib_fallback ()\n{\n  $debug_cmd\n\n  if func_cygming_gnu_implib_p \"$1\"; then\n    # binutils import library\n    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' \"$1\"`\n  elif func_cygming_ms_implib_p \"$1\"; then\n    # ms-generated import library\n    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' \"$1\"`\n  else\n    # unknown\n    sharedlib_from_linklib_result=\n  fi\n}\n\n\n# func_extract_an_archive dir oldlib\nfunc_extract_an_archive ()\n{\n    $debug_cmd\n\n    f_ex_an_ar_dir=$1; shift\n    f_ex_an_ar_oldlib=$1\n    if test yes = \"$lock_old_archive_extraction\"; then\n      lockfile=$f_ex_an_ar_oldlib.lock\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    fi\n    func_show_eval \"(cd \\$f_ex_an_ar_dir && $AR x \\\"\\$f_ex_an_ar_oldlib\\\")\" \\\n\t\t   'stat=$?; rm -f \"$lockfile\"; exit $stat'\n    if test yes = \"$lock_old_archive_extraction\"; then\n      $opt_dry_run || rm -f \"$lockfile\"\n    fi\n    if ($AR t \"$f_ex_an_ar_oldlib\" | sort | sort -uc >/dev/null 2>&1); then\n     :\n    else\n      func_fatal_error \"object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib\"\n    fi\n}\n\n\n# func_extract_archives gentop oldlib ...\nfunc_extract_archives ()\n{\n    $debug_cmd\n\n    my_gentop=$1; shift\n    my_oldlibs=${1+\"$@\"}\n    my_oldobjs=\n    my_xlib=\n    my_xabs=\n    my_xdir=\n\n    for my_xlib in $my_oldlibs; do\n      # Extract the objects.\n      case $my_xlib in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) my_xabs=$my_xlib ;;\n\t*) my_xabs=`pwd`\"/$my_xlib\" ;;\n      esac\n      func_basename \"$my_xlib\"\n      my_xlib=$func_basename_result\n      my_xlib_u=$my_xlib\n      while :; do\n        case \" $extracted_archives \" in\n\t*\" $my_xlib_u \"*)\n\t  func_arith $extracted_serial + 1\n\t  extracted_serial=$func_arith_result\n\t  my_xlib_u=lt$extracted_serial-$my_xlib ;;\n\t*) break ;;\n\tesac\n      done\n      extracted_archives=\"$extracted_archives $my_xlib_u\"\n      my_xdir=$my_gentop/$my_xlib_u\n\n      func_mkdir_p \"$my_xdir\"\n\n      case $host in\n      *-darwin*)\n\tfunc_verbose \"Extracting $my_xabs\"\n\t# Do not bother doing anything if just a dry run\n\t$opt_dry_run || {\n\t  darwin_orig_dir=`pwd`\n\t  cd $my_xdir || exit $?\n\t  darwin_archive=$my_xabs\n\t  darwin_curdir=`pwd`\n\t  func_basename \"$darwin_archive\"\n\t  darwin_base_archive=$func_basename_result\n\t  darwin_arches=`$LIPO -info \"$darwin_archive\" 2>/dev/null | $GREP Architectures 2>/dev/null || true`\n\t  if test -n \"$darwin_arches\"; then\n\t    darwin_arches=`$ECHO \"$darwin_arches\" | $SED -e 's/.*are://'`\n\t    darwin_arch=\n\t    func_verbose \"$darwin_base_archive has multiple architectures $darwin_arches\"\n\t    for darwin_arch in  $darwin_arches; do\n\t      func_mkdir_p \"unfat-$$/$darwin_base_archive-$darwin_arch\"\n\t      $LIPO -thin $darwin_arch -output \"unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive\" \"$darwin_archive\"\n\t      cd \"unfat-$$/$darwin_base_archive-$darwin_arch\"\n\t      func_extract_an_archive \"`pwd`\" \"$darwin_base_archive\"\n\t      cd \"$darwin_curdir\"\n\t      $RM \"unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive\"\n\t    done # $darwin_arches\n            ## Okay now we've a bunch of thin objects, gotta fatten them up :)\n\t    darwin_filelist=`find unfat-$$ -type f -name \\*.o -print -o -name \\*.lo -print | $SED -e \"$sed_basename\" | sort -u`\n\t    darwin_file=\n\t    darwin_files=\n\t    for darwin_file in $darwin_filelist; do\n\t      darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`\n\t      $LIPO -create -output \"$darwin_file\" $darwin_files\n\t    done # $darwin_filelist\n\t    $RM -rf unfat-$$\n\t    cd \"$darwin_orig_dir\"\n\t  else\n\t    cd $darwin_orig_dir\n\t    func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t  fi # $darwin_arches\n\t} # !$opt_dry_run\n\t;;\n      *)\n        func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t;;\n      esac\n      my_oldobjs=\"$my_oldobjs \"`find $my_xdir -name \\*.$objext -print -o -name \\*.lo -print | sort | $NL2SP`\n    done\n\n    func_extract_archives_result=$my_oldobjs\n}\n\n\n# func_emit_wrapper [arg=no]\n#\n# Emit a libtool wrapper script on stdout.\n# Don't directly open a file because we may want to\n# incorporate the script contents within a cygwin/mingw\n# wrapper executable.  Must ONLY be called from within\n# func_mode_link because it depends on a number of variables\n# set therein.\n#\n# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\n# variable will take.  If 'yes', then the emitted script\n# will assume that the directory where it is stored is\n# the $objdir directory.  This is a cygwin/mingw-specific\n# behavior.\nfunc_emit_wrapper ()\n{\n\tfunc_emit_wrapper_arg1=${1-no}\n\n\t$ECHO \"\\\n#! $SHELL\n\n# $output - temporary wrapper script for $objdir/$outputname\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# The $output program cannot be directly executed until all the libtool\n# libraries that it depends on are installed.\n#\n# This wrapper script should never be moved out of the build directory.\n# If it is, it will not operate correctly.\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='$sed_quote_subst'\n\n# Be Bourne compatible\nif test -n \\\"\\${ZSH_VERSION+set}\\\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on \\${1+\\\"\\$@\\\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '\\${1+\\\"\\$@\\\"}'='\\\"\\$@\\\"'\n  setopt NO_GLOB_SUBST\nelse\n  case \\`(set -o) 2>/dev/null\\` in *posix*) set -o posix;; esac\nfi\nBIN_SH=xpg4; export BIN_SH # for Tru64\nDUALCASE=1; export DUALCASE # for MKS sh\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nrelink_command=\\\"$relink_command\\\"\n\n# This environment variable determines our operation mode.\nif test \\\"\\$libtool_install_magic\\\" = \\\"$magic\\\"; then\n  # install mode needs the following variables:\n  generated_by_libtool_version='$macro_version'\n  notinst_deplibs='$notinst_deplibs'\nelse\n  # When we are sourced in execute mode, \\$file and \\$ECHO are already set.\n  if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n    file=\\\"\\$0\\\"\"\n\n    qECHO=`$ECHO \"$ECHO\" | $SED \"$sed_quote_subst\"`\n    $ECHO \"\\\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$1\n_LTECHO_EOF'\n}\n    ECHO=\\\"$qECHO\\\"\n  fi\n\n# Very basic option parsing. These options are (a) specific to\n# the libtool wrapper, (b) are identical between the wrapper\n# /script/ and the wrapper /executable/ that is used only on\n# windows platforms, and (c) all begin with the string \"--lt-\"\n# (application programs are unlikely to have options that match\n# this pattern).\n#\n# There are only two supported options: --lt-debug and\n# --lt-dump-script. There is, deliberately, no --lt-help.\n#\n# The first argument to this parsing function should be the\n# script's $0 value, followed by \"$@\".\nlt_option_debug=\nfunc_parse_lt_options ()\n{\n  lt_script_arg0=\\$0\n  shift\n  for lt_opt\n  do\n    case \\\"\\$lt_opt\\\" in\n    --lt-debug) lt_option_debug=1 ;;\n    --lt-dump-script)\n        lt_dump_D=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\\`\n        test \\\"X\\$lt_dump_D\\\" = \\\"X\\$lt_script_arg0\\\" && lt_dump_D=.\n        lt_dump_F=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%^.*/%%'\\`\n        cat \\\"\\$lt_dump_D/\\$lt_dump_F\\\"\n        exit 0\n      ;;\n    --lt-*)\n        \\$ECHO \\\"Unrecognized --lt- option: '\\$lt_opt'\\\" 1>&2\n        exit 1\n      ;;\n    esac\n  done\n\n  # Print the debug banner immediately:\n  if test -n \\\"\\$lt_option_debug\\\"; then\n    echo \\\"$outputname:$output:\\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\\\" 1>&2\n  fi\n}\n\n# Used when --lt-debug. Prints its arguments to stdout\n# (redirection is the responsibility of the caller)\nfunc_lt_dump_args ()\n{\n  lt_dump_args_N=1;\n  for lt_arg\n  do\n    \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[\\$lt_dump_args_N]: \\$lt_arg\\\"\n    lt_dump_args_N=\\`expr \\$lt_dump_args_N + 1\\`\n  done\n}\n\n# Core function for launching the target application\nfunc_exec_program_core ()\n{\n\"\n  case $host in\n  # Backslashes separate directories on plain windows\n  *-*-mingw | *-*-os2* | *-cegcc*)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[0]: \\$progdir\\\\\\\\\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir\\\\\\\\\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n\n  *)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"$outputname:$output:\\$LINENO: newargv[0]: \\$progdir/\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir/\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n  esac\n  $ECHO \"\\\n      \\$ECHO \\\"\\$0: cannot exec \\$program \\$*\\\" 1>&2\n      exit 1\n}\n\n# A function to encapsulate launching the target application\n# Strips options in the --lt-* namespace from \\$@ and\n# launches target application with the remaining arguments.\nfunc_exec_program ()\n{\n  case \\\" \\$* \\\" in\n  *\\\\ --lt-*)\n    for lt_wr_arg\n    do\n      case \\$lt_wr_arg in\n      --lt-*) ;;\n      *) set x \\\"\\$@\\\" \\\"\\$lt_wr_arg\\\"; shift;;\n      esac\n      shift\n    done ;;\n  esac\n  func_exec_program_core \\${1+\\\"\\$@\\\"}\n}\n\n  # Parse options\n  func_parse_lt_options \\\"\\$0\\\" \\${1+\\\"\\$@\\\"}\n\n  # Find the directory that this script lives in.\n  thisdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*$%%'\\`\n  test \\\"x\\$thisdir\\\" = \\\"x\\$file\\\" && thisdir=.\n\n  # Follow symbolic links until we get to the real thisdir.\n  file=\\`ls -ld \\\"\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  while test -n \\\"\\$file\\\"; do\n    destdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*\\$%%'\\`\n\n    # If there was a directory component, then change thisdir.\n    if test \\\"x\\$destdir\\\" != \\\"x\\$file\\\"; then\n      case \\\"\\$destdir\\\" in\n      [\\\\\\\\/]* | [A-Za-z]:[\\\\\\\\/]*) thisdir=\\\"\\$destdir\\\" ;;\n      *) thisdir=\\\"\\$thisdir/\\$destdir\\\" ;;\n      esac\n    fi\n\n    file=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%^.*/%%'\\`\n    file=\\`ls -ld \\\"\\$thisdir/\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  done\n\n  # Usually 'no', except on cygwin/mingw when embedded into\n  # the cwrapper.\n  WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1\n  if test \\\"\\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\\\" = \\\"yes\\\"; then\n    # special case for '.'\n    if test \\\"\\$thisdir\\\" = \\\".\\\"; then\n      thisdir=\\`pwd\\`\n    fi\n    # remove .libs from thisdir\n    case \\\"\\$thisdir\\\" in\n    *[\\\\\\\\/]$objdir ) thisdir=\\`\\$ECHO \\\"\\$thisdir\\\" | $SED 's%[\\\\\\\\/][^\\\\\\\\/]*$%%'\\` ;;\n    $objdir )   thisdir=. ;;\n    esac\n  fi\n\n  # Try to get the absolute directory name.\n  absdir=\\`cd \\\"\\$thisdir\\\" && pwd\\`\n  test -n \\\"\\$absdir\\\" && thisdir=\\\"\\$absdir\\\"\n\"\n\n\tif test yes = \"$fast_install\"; then\n\t  $ECHO \"\\\n  program=lt-'$outputname'$exeext\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\n  if test ! -f \\\"\\$progdir/\\$program\\\" ||\n     { file=\\`ls -1dt \\\"\\$progdir/\\$program\\\" \\\"\\$progdir/../\\$program\\\" 2>/dev/null | $SED 1q\\`; \\\\\n       test \\\"X\\$file\\\" != \\\"X\\$progdir/\\$program\\\"; }; then\n\n    file=\\\"\\$\\$-\\$program\\\"\n\n    if test ! -d \\\"\\$progdir\\\"; then\n      $MKDIR \\\"\\$progdir\\\"\n    else\n      $RM \\\"\\$progdir/\\$file\\\"\n    fi\"\n\n\t  $ECHO \"\\\n\n    # relink executable if necessary\n    if test -n \\\"\\$relink_command\\\"; then\n      if relink_command_output=\\`eval \\$relink_command 2>&1\\`; then :\n      else\n\t\\$ECHO \\\"\\$relink_command_output\\\" >&2\n\t$RM \\\"\\$progdir/\\$file\\\"\n\texit 1\n      fi\n    fi\n\n    $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\" 2>/dev/null ||\n    { $RM \\\"\\$progdir/\\$program\\\";\n      $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\"; }\n    $RM \\\"\\$progdir/\\$file\\\"\n  fi\"\n\telse\n\t  $ECHO \"\\\n  program='$outputname'\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\"\n\tfi\n\n\t$ECHO \"\\\n\n  if test -f \\\"\\$progdir/\\$program\\\"; then\"\n\n\t# fixup the dll searchpath if we need to.\n\t#\n\t# Fix the DLL searchpath if we need to.  Do this before prepending\n\t# to shlibpath, because on Windows, both are PATH and uninstalled\n\t# libraries must come first.\n\tif test -n \"$dllsearchpath\"; then\n\t  $ECHO \"\\\n    # Add the dll search path components to the executable PATH\n    PATH=$dllsearchpath:\\$PATH\n\"\n\tfi\n\n\t# Export our shlibpath_var if we have one.\n\tif test yes = \"$shlibpath_overrides_runpath\" && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n\t  $ECHO \"\\\n    # Add our own library path to $shlibpath_var\n    $shlibpath_var=\\\"$temp_rpath\\$$shlibpath_var\\\"\n\n    # Some systems cannot cope with colon-terminated $shlibpath_var\n    # The second colon is a workaround for a bug in BeOS R4 sed\n    $shlibpath_var=\\`\\$ECHO \\\"\\$$shlibpath_var\\\" | $SED 's/::*\\$//'\\`\n\n    export $shlibpath_var\n\"\n\tfi\n\n\t$ECHO \"\\\n    if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n      # Run the actual program with our arguments.\n      func_exec_program \\${1+\\\"\\$@\\\"}\n    fi\n  else\n    # The program doesn't exist.\n    \\$ECHO \\\"\\$0: error: '\\$progdir/\\$program' does not exist\\\" 1>&2\n    \\$ECHO \\\"This script is just a wrapper for \\$program.\\\" 1>&2\n    \\$ECHO \\\"See the $PACKAGE documentation for more information.\\\" 1>&2\n    exit 1\n  fi\nfi\\\n\"\n}\n\n\n# func_emit_cwrapperexe_src\n# emit the source code for a wrapper executable on stdout\n# Must ONLY be called from within func_mode_link because\n# it depends on a number of variable set therein.\nfunc_emit_cwrapperexe_src ()\n{\n\tcat <<EOF\n\n/* $cwrappersource - temporary wrapper executable for $objdir/$outputname\n   Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n\n   The $output program cannot be directly executed until all the libtool\n   libraries that it depends on are installed.\n\n   This wrapper executable should never be moved out of the build directory.\n   If it is, it will not operate correctly.\n*/\nEOF\n\t    cat <<\"EOF\"\n#ifdef _MSC_VER\n# define _CRT_SECURE_NO_DEPRECATE 1\n#endif\n#include <stdio.h>\n#include <stdlib.h>\n#ifdef _MSC_VER\n# include <direct.h>\n# include <process.h>\n# include <io.h>\n#else\n# include <unistd.h>\n# include <stdint.h>\n# ifdef __CYGWIN__\n#  include <io.h>\n# endif\n#endif\n#include <malloc.h>\n#include <stdarg.h>\n#include <assert.h>\n#include <string.h>\n#include <ctype.h>\n#include <errno.h>\n#include <fcntl.h>\n#include <sys/stat.h>\n\n#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)\n\n/* declarations of non-ANSI functions */\n#if defined __MINGW32__\n# ifdef __STRICT_ANSI__\nint _putenv (const char *);\n# endif\n#elif defined __CYGWIN__\n# ifdef __STRICT_ANSI__\nchar *realpath (const char *, char *);\nint putenv (char *);\nint setenv (const char *, const char *, int);\n# endif\n/* #elif defined other_platform || defined ... */\n#endif\n\n/* portability defines, excluding path handling macros */\n#if defined _MSC_VER\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n# define S_IXUSR _S_IEXEC\n#elif defined __MINGW32__\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n#elif defined __CYGWIN__\n# define HAVE_SETENV\n# define FOPEN_WB \"wb\"\n/* #elif defined other platforms ... */\n#endif\n\n#if defined PATH_MAX\n# define LT_PATHMAX PATH_MAX\n#elif defined MAXPATHLEN\n# define LT_PATHMAX MAXPATHLEN\n#else\n# define LT_PATHMAX 1024\n#endif\n\n#ifndef S_IXOTH\n# define S_IXOTH 0\n#endif\n#ifndef S_IXGRP\n# define S_IXGRP 0\n#endif\n\n/* path handling portability macros */\n#ifndef DIR_SEPARATOR\n# define DIR_SEPARATOR '/'\n# define PATH_SEPARATOR ':'\n#endif\n\n#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \\\n  defined __OS2__\n# define HAVE_DOS_BASED_FILE_SYSTEM\n# define FOPEN_WB \"wb\"\n# ifndef DIR_SEPARATOR_2\n#  define DIR_SEPARATOR_2 '\\\\'\n# endif\n# ifndef PATH_SEPARATOR_2\n#  define PATH_SEPARATOR_2 ';'\n# endif\n#endif\n\n#ifndef DIR_SEPARATOR_2\n# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)\n#else /* DIR_SEPARATOR_2 */\n# define IS_DIR_SEPARATOR(ch) \\\n\t(((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))\n#endif /* DIR_SEPARATOR_2 */\n\n#ifndef PATH_SEPARATOR_2\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)\n#else /* PATH_SEPARATOR_2 */\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)\n#endif /* PATH_SEPARATOR_2 */\n\n#ifndef FOPEN_WB\n# define FOPEN_WB \"w\"\n#endif\n#ifndef _O_BINARY\n# define _O_BINARY 0\n#endif\n\n#define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))\n#define XFREE(stale) do { \\\n  if (stale) { free (stale); stale = 0; } \\\n} while (0)\n\n#if defined LT_DEBUGWRAPPER\nstatic int lt_debug = 1;\n#else\nstatic int lt_debug = 0;\n#endif\n\nconst char *program_name = \"libtool-wrapper\"; /* in case xstrdup fails */\n\nvoid *xmalloc (size_t num);\nchar *xstrdup (const char *string);\nconst char *base_name (const char *name);\nchar *find_executable (const char *wrapper);\nchar *chase_symlinks (const char *pathspec);\nint make_executable (const char *path);\nint check_executable (const char *path);\nchar *strendzap (char *str, const char *pat);\nvoid lt_debugprintf (const char *file, int line, const char *fmt, ...);\nvoid lt_fatal (const char *file, int line, const char *message, ...);\nstatic const char *nonnull (const char *s);\nstatic const char *nonempty (const char *s);\nvoid lt_setenv (const char *name, const char *value);\nchar *lt_extend_str (const char *orig_value, const char *add, int to_end);\nvoid lt_update_exe_path (const char *name, const char *value);\nvoid lt_update_lib_path (const char *name, const char *value);\nchar **prepare_spawn (char **argv);\nvoid lt_dump_script (FILE *f);\nEOF\n\n\t    cat <<EOF\n#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5)\n# define externally_visible volatile\n#else\n# define externally_visible __attribute__((externally_visible)) volatile\n#endif\nexternally_visible const char * MAGIC_EXE = \"$magic_exe\";\nconst char * LIB_PATH_VARNAME = \"$shlibpath_var\";\nEOF\n\n\t    if test yes = \"$shlibpath_overrides_runpath\" && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n              func_to_host_path \"$temp_rpath\"\n\t      cat <<EOF\nconst char * LIB_PATH_VALUE   = \"$func_to_host_path_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * LIB_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test -n \"$dllsearchpath\"; then\n              func_to_host_path \"$dllsearchpath:\"\n\t      cat <<EOF\nconst char * EXE_PATH_VARNAME = \"PATH\";\nconst char * EXE_PATH_VALUE   = \"$func_to_host_path_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * EXE_PATH_VARNAME = \"\";\nconst char * EXE_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test yes = \"$fast_install\"; then\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"lt-$outputname\"; /* hopefully, no .exe */\nEOF\n\t    else\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"$outputname\"; /* hopefully, no .exe */\nEOF\n\t    fi\n\n\n\t    cat <<\"EOF\"\n\n#define LTWRAPPER_OPTION_PREFIX         \"--lt-\"\n\nstatic const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;\nstatic const char *dumpscript_opt       = LTWRAPPER_OPTION_PREFIX \"dump-script\";\nstatic const char *debug_opt            = LTWRAPPER_OPTION_PREFIX \"debug\";\n\nint\nmain (int argc, char *argv[])\n{\n  char **newargz;\n  int  newargc;\n  char *tmp_pathspec;\n  char *actual_cwrapper_path;\n  char *actual_cwrapper_name;\n  char *target_name;\n  char *lt_argv_zero;\n  int rval = 127;\n\n  int i;\n\n  program_name = (char *) xstrdup (base_name (argv[0]));\n  newargz = XMALLOC (char *, (size_t) argc + 1);\n\n  /* very simple arg parsing; don't want to rely on getopt\n   * also, copy all non cwrapper options to newargz, except\n   * argz[0], which is handled differently\n   */\n  newargc=0;\n  for (i = 1; i < argc; i++)\n    {\n      if (STREQ (argv[i], dumpscript_opt))\n\t{\nEOF\n\t    case $host in\n\t      *mingw* | *cygwin* )\n\t\t# make stdout use \"unix\" line endings\n\t\techo \"          setmode(1,_O_BINARY);\"\n\t\t;;\n\t      esac\n\n\t    cat <<\"EOF\"\n\t  lt_dump_script (stdout);\n\t  return 0;\n\t}\n      if (STREQ (argv[i], debug_opt))\n\t{\n          lt_debug = 1;\n          continue;\n\t}\n      if (STREQ (argv[i], ltwrapper_option_prefix))\n        {\n          /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX\n             namespace, but it is not one of the ones we know about and\n             have already dealt with, above (inluding dump-script), then\n             report an error. Otherwise, targets might begin to believe\n             they are allowed to use options in the LTWRAPPER_OPTION_PREFIX\n             namespace. The first time any user complains about this, we'll\n             need to make LTWRAPPER_OPTION_PREFIX a configure-time option\n             or a configure.ac-settable value.\n           */\n          lt_fatal (__FILE__, __LINE__,\n\t\t    \"unrecognized %s option: '%s'\",\n                    ltwrapper_option_prefix, argv[i]);\n        }\n      /* otherwise ... */\n      newargz[++newargc] = xstrdup (argv[i]);\n    }\n  newargz[++newargc] = NULL;\n\nEOF\n\t    cat <<EOF\n  /* The GNU banner must be the first non-error debug message */\n  lt_debugprintf (__FILE__, __LINE__, \"libtool wrapper (GNU $PACKAGE) $VERSION\\n\");\nEOF\n\t    cat <<\"EOF\"\n  lt_debugprintf (__FILE__, __LINE__, \"(main) argv[0]: %s\\n\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__, \"(main) program_name: %s\\n\", program_name);\n\n  tmp_pathspec = find_executable (argv[0]);\n  if (tmp_pathspec == NULL)\n    lt_fatal (__FILE__, __LINE__, \"couldn't find %s\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (before symlink chase) at: %s\\n\",\n\t\t  tmp_pathspec);\n\n  actual_cwrapper_path = chase_symlinks (tmp_pathspec);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (after symlink chase) at: %s\\n\",\n\t\t  actual_cwrapper_path);\n  XFREE (tmp_pathspec);\n\n  actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));\n  strendzap (actual_cwrapper_path, actual_cwrapper_name);\n\n  /* wrapper name transforms */\n  strendzap (actual_cwrapper_name, \".exe\");\n  tmp_pathspec = lt_extend_str (actual_cwrapper_name, \".exe\", 1);\n  XFREE (actual_cwrapper_name);\n  actual_cwrapper_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  /* target_name transforms -- use actual target program name; might have lt- prefix */\n  target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));\n  strendzap (target_name, \".exe\");\n  tmp_pathspec = lt_extend_str (target_name, \".exe\", 1);\n  XFREE (target_name);\n  target_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(main) libtool target name: %s\\n\",\n\t\t  target_name);\nEOF\n\n\t    cat <<EOF\n  newargz[0] =\n    XMALLOC (char, (strlen (actual_cwrapper_path) +\n\t\t    strlen (\"$objdir\") + 1 + strlen (actual_cwrapper_name) + 1));\n  strcpy (newargz[0], actual_cwrapper_path);\n  strcat (newargz[0], \"$objdir\");\n  strcat (newargz[0], \"/\");\nEOF\n\n\t    cat <<\"EOF\"\n  /* stop here, and copy so we don't have to do this twice */\n  tmp_pathspec = xstrdup (newargz[0]);\n\n  /* do NOT want the lt- prefix here, so use actual_cwrapper_name */\n  strcat (newargz[0], actual_cwrapper_name);\n\n  /* DO want the lt- prefix here if it exists, so use target_name */\n  lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);\n  XFREE (tmp_pathspec);\n  tmp_pathspec = NULL;\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t    cat <<\"EOF\"\n  {\n    char* p;\n    while ((p = strchr (newargz[0], '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n    while ((p = strchr (lt_argv_zero, '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n  }\nEOF\n\t    ;;\n\t    esac\n\n\t    cat <<\"EOF\"\n  XFREE (target_name);\n  XFREE (actual_cwrapper_path);\n  XFREE (actual_cwrapper_name);\n\n  lt_setenv (\"BIN_SH\", \"xpg4\"); /* for Tru64 */\n  lt_setenv (\"DUALCASE\", \"1\");  /* for MSK sh */\n  /* Update the DLL searchpath.  EXE_PATH_VALUE ($dllsearchpath) must\n     be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)\n     because on Windows, both *_VARNAMEs are PATH but uninstalled\n     libraries must come first. */\n  lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);\n  lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);\n\n  lt_debugprintf (__FILE__, __LINE__, \"(main) lt_argv_zero: %s\\n\",\n\t\t  nonnull (lt_argv_zero));\n  for (i = 0; i < newargc; i++)\n    {\n      lt_debugprintf (__FILE__, __LINE__, \"(main) newargz[%d]: %s\\n\",\n\t\t      i, nonnull (newargz[i]));\n    }\n\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n  /* execv doesn't actually work on mingw as expected on unix */\n  newargz = prepare_spawn (newargz);\n  rval = (int) _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);\n  if (rval == -1)\n    {\n      /* failed to start process */\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"(main) failed to launch target \\\"%s\\\": %s\\n\",\n\t\t      lt_argv_zero, nonnull (strerror (errno)));\n      return 127;\n    }\n  return rval;\nEOF\n\t\t;;\n\t      *)\n\t\tcat <<\"EOF\"\n  execv (lt_argv_zero, newargz);\n  return rval; /* =127, but avoids unused variable warning */\nEOF\n\t\t;;\n\t    esac\n\n\t    cat <<\"EOF\"\n}\n\nvoid *\nxmalloc (size_t num)\n{\n  void *p = (void *) malloc (num);\n  if (!p)\n    lt_fatal (__FILE__, __LINE__, \"memory exhausted\");\n\n  return p;\n}\n\nchar *\nxstrdup (const char *string)\n{\n  return string ? strcpy ((char *) xmalloc (strlen (string) + 1),\n\t\t\t  string) : NULL;\n}\n\nconst char *\nbase_name (const char *name)\n{\n  const char *base;\n\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n  /* Skip over the disk name in MSDOS pathnames. */\n  if (isalpha ((unsigned char) name[0]) && name[1] == ':')\n    name += 2;\n#endif\n\n  for (base = name; *name; name++)\n    if (IS_DIR_SEPARATOR (*name))\n      base = name + 1;\n  return base;\n}\n\nint\ncheck_executable (const char *path)\n{\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(check_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if ((stat (path, &st) >= 0)\n      && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))\n    return 1;\n  else\n    return 0;\n}\n\nint\nmake_executable (const char *path)\n{\n  int rval = 0;\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(make_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if (stat (path, &st) >= 0)\n    {\n      rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);\n    }\n  return rval;\n}\n\n/* Searches for the full path of the wrapper.  Returns\n   newly allocated full path name if found, NULL otherwise\n   Does not chase symlinks, even on platforms that support them.\n*/\nchar *\nfind_executable (const char *wrapper)\n{\n  int has_slash = 0;\n  const char *p;\n  const char *p_next;\n  /* static buffer for getcwd */\n  char tmp[LT_PATHMAX + 1];\n  size_t tmp_len;\n  char *concat_name;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(find_executable): %s\\n\",\n                  nonempty (wrapper));\n\n  if ((wrapper == NULL) || (*wrapper == '\\0'))\n    return NULL;\n\n  /* Absolute path? */\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n  if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')\n    {\n      concat_name = xstrdup (wrapper);\n      if (check_executable (concat_name))\n\treturn concat_name;\n      XFREE (concat_name);\n    }\n  else\n    {\n#endif\n      if (IS_DIR_SEPARATOR (wrapper[0]))\n\t{\n\t  concat_name = xstrdup (wrapper);\n\t  if (check_executable (concat_name))\n\t    return concat_name;\n\t  XFREE (concat_name);\n\t}\n#if defined HAVE_DOS_BASED_FILE_SYSTEM\n    }\n#endif\n\n  for (p = wrapper; *p; p++)\n    if (*p == '/')\n      {\n\thas_slash = 1;\n\tbreak;\n      }\n  if (!has_slash)\n    {\n      /* no slashes; search PATH */\n      const char *path = getenv (\"PATH\");\n      if (path != NULL)\n\t{\n\t  for (p = path; *p; p = p_next)\n\t    {\n\t      const char *q;\n\t      size_t p_len;\n\t      for (q = p; *q; q++)\n\t\tif (IS_PATH_SEPARATOR (*q))\n\t\t  break;\n\t      p_len = (size_t) (q - p);\n\t      p_next = (*q == '\\0' ? q : q + 1);\n\t      if (p_len == 0)\n\t\t{\n\t\t  /* empty path: current directory */\n\t\t  if (getcwd (tmp, LT_PATHMAX) == NULL)\n\t\t    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n                              nonnull (strerror (errno)));\n\t\t  tmp_len = strlen (tmp);\n\t\t  concat_name =\n\t\t    XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, tmp, tmp_len);\n\t\t  concat_name[tmp_len] = '/';\n\t\t  strcpy (concat_name + tmp_len + 1, wrapper);\n\t\t}\n\t      else\n\t\t{\n\t\t  concat_name =\n\t\t    XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, p, p_len);\n\t\t  concat_name[p_len] = '/';\n\t\t  strcpy (concat_name + p_len + 1, wrapper);\n\t\t}\n\t      if (check_executable (concat_name))\n\t\treturn concat_name;\n\t      XFREE (concat_name);\n\t    }\n\t}\n      /* not found in PATH; assume curdir */\n    }\n  /* Relative path | not found in path: prepend cwd */\n  if (getcwd (tmp, LT_PATHMAX) == NULL)\n    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n              nonnull (strerror (errno)));\n  tmp_len = strlen (tmp);\n  concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n  memcpy (concat_name, tmp, tmp_len);\n  concat_name[tmp_len] = '/';\n  strcpy (concat_name + tmp_len + 1, wrapper);\n\n  if (check_executable (concat_name))\n    return concat_name;\n  XFREE (concat_name);\n  return NULL;\n}\n\nchar *\nchase_symlinks (const char *pathspec)\n{\n#ifndef S_ISLNK\n  return xstrdup (pathspec);\n#else\n  char buf[LT_PATHMAX];\n  struct stat s;\n  char *tmp_pathspec = xstrdup (pathspec);\n  char *p;\n  int has_symlinks = 0;\n  while (strlen (tmp_pathspec) && !has_symlinks)\n    {\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"checking path component for symlinks: %s\\n\",\n\t\t      tmp_pathspec);\n      if (lstat (tmp_pathspec, &s) == 0)\n\t{\n\t  if (S_ISLNK (s.st_mode) != 0)\n\t    {\n\t      has_symlinks = 1;\n\t      break;\n\t    }\n\n\t  /* search backwards for last DIR_SEPARATOR */\n\t  p = tmp_pathspec + strlen (tmp_pathspec) - 1;\n\t  while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    p--;\n\t  if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    {\n\t      /* no more DIR_SEPARATORS left */\n\t      break;\n\t    }\n\t  *p = '\\0';\n\t}\n      else\n\t{\n\t  lt_fatal (__FILE__, __LINE__,\n\t\t    \"error accessing file \\\"%s\\\": %s\",\n\t\t    tmp_pathspec, nonnull (strerror (errno)));\n\t}\n    }\n  XFREE (tmp_pathspec);\n\n  if (!has_symlinks)\n    {\n      return xstrdup (pathspec);\n    }\n\n  tmp_pathspec = realpath (pathspec, buf);\n  if (tmp_pathspec == 0)\n    {\n      lt_fatal (__FILE__, __LINE__,\n\t\t\"could not follow symlinks for %s\", pathspec);\n    }\n  return xstrdup (tmp_pathspec);\n#endif\n}\n\nchar *\nstrendzap (char *str, const char *pat)\n{\n  size_t len, patlen;\n\n  assert (str != NULL);\n  assert (pat != NULL);\n\n  len = strlen (str);\n  patlen = strlen (pat);\n\n  if (patlen <= len)\n    {\n      str += len - patlen;\n      if (STREQ (str, pat))\n\t*str = '\\0';\n    }\n  return str;\n}\n\nvoid\nlt_debugprintf (const char *file, int line, const char *fmt, ...)\n{\n  va_list args;\n  if (lt_debug)\n    {\n      (void) fprintf (stderr, \"%s:%s:%d: \", program_name, file, line);\n      va_start (args, fmt);\n      (void) vfprintf (stderr, fmt, args);\n      va_end (args);\n    }\n}\n\nstatic void\nlt_error_core (int exit_status, const char *file,\n\t       int line, const char *mode,\n\t       const char *message, va_list ap)\n{\n  fprintf (stderr, \"%s:%s:%d: %s: \", program_name, file, line, mode);\n  vfprintf (stderr, message, ap);\n  fprintf (stderr, \".\\n\");\n\n  if (exit_status >= 0)\n    exit (exit_status);\n}\n\nvoid\nlt_fatal (const char *file, int line, const char *message, ...)\n{\n  va_list ap;\n  va_start (ap, message);\n  lt_error_core (EXIT_FAILURE, file, line, \"FATAL\", message, ap);\n  va_end (ap);\n}\n\nstatic const char *\nnonnull (const char *s)\n{\n  return s ? s : \"(null)\";\n}\n\nstatic const char *\nnonempty (const char *s)\n{\n  return (s && !*s) ? \"(empty)\" : nonnull (s);\n}\n\nvoid\nlt_setenv (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_setenv) setting '%s' to '%s'\\n\",\n                  nonnull (name), nonnull (value));\n  {\n#ifdef HAVE_SETENV\n    /* always make a copy, for consistency with !HAVE_SETENV */\n    char *str = xstrdup (value);\n    setenv (name, str, 1);\n#else\n    size_t len = strlen (name) + 1 + strlen (value) + 1;\n    char *str = XMALLOC (char, len);\n    sprintf (str, \"%s=%s\", name, value);\n    if (putenv (str) != EXIT_SUCCESS)\n      {\n        XFREE (str);\n      }\n#endif\n  }\n}\n\nchar *\nlt_extend_str (const char *orig_value, const char *add, int to_end)\n{\n  char *new_value;\n  if (orig_value && *orig_value)\n    {\n      size_t orig_value_len = strlen (orig_value);\n      size_t add_len = strlen (add);\n      new_value = XMALLOC (char, add_len + orig_value_len + 1);\n      if (to_end)\n        {\n          strcpy (new_value, orig_value);\n          strcpy (new_value + orig_value_len, add);\n        }\n      else\n        {\n          strcpy (new_value, add);\n          strcpy (new_value + add_len, orig_value);\n        }\n    }\n  else\n    {\n      new_value = xstrdup (add);\n    }\n  return new_value;\n}\n\nvoid\nlt_update_exe_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_exe_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      /* some systems can't cope with a ':'-terminated path #' */\n      size_t len = strlen (new_value);\n      while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1]))\n        {\n          new_value[--len] = '\\0';\n        }\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nvoid\nlt_update_lib_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_lib_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nEOF\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n\n/* Prepares an argument vector before calling spawn().\n   Note that spawn() does not by itself call the command interpreter\n     (getenv (\"COMSPEC\") != NULL ? getenv (\"COMSPEC\") :\n      ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);\n         GetVersionEx(&v);\n         v.dwPlatformId == VER_PLATFORM_WIN32_NT;\n      }) ? \"cmd.exe\" : \"command.com\").\n   Instead it simply concatenates the arguments, separated by ' ', and calls\n   CreateProcess().  We must quote the arguments since Win32 CreateProcess()\n   interprets characters like ' ', '\\t', '\\\\', '\"' (but not '<' and '>') in a\n   special way:\n   - Space and tab are interpreted as delimiters. They are not treated as\n     delimiters if they are surrounded by double quotes: \"...\".\n   - Unescaped double quotes are removed from the input. Their only effect is\n     that within double quotes, space and tab are treated like normal\n     characters.\n   - Backslashes not followed by double quotes are not special.\n   - But 2*n+1 backslashes followed by a double quote become\n     n backslashes followed by a double quote (n >= 0):\n       \\\" -> \"\n       \\\\\\\" -> \\\"\n       \\\\\\\\\\\" -> \\\\\"\n */\n#define SHELL_SPECIAL_CHARS \"\\\"\\\\ \\001\\002\\003\\004\\005\\006\\007\\010\\011\\012\\013\\014\\015\\016\\017\\020\\021\\022\\023\\024\\025\\026\\027\\030\\031\\032\\033\\034\\035\\036\\037\"\n#define SHELL_SPACE_CHARS \" \\001\\002\\003\\004\\005\\006\\007\\010\\011\\012\\013\\014\\015\\016\\017\\020\\021\\022\\023\\024\\025\\026\\027\\030\\031\\032\\033\\034\\035\\036\\037\"\nchar **\nprepare_spawn (char **argv)\n{\n  size_t argc;\n  char **new_argv;\n  size_t i;\n\n  /* Count number of arguments.  */\n  for (argc = 0; argv[argc] != NULL; argc++)\n    ;\n\n  /* Allocate new argument vector.  */\n  new_argv = XMALLOC (char *, argc + 1);\n\n  /* Put quoted arguments into the new argument vector.  */\n  for (i = 0; i < argc; i++)\n    {\n      const char *string = argv[i];\n\n      if (string[0] == '\\0')\n\tnew_argv[i] = xstrdup (\"\\\"\\\"\");\n      else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)\n\t{\n\t  int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);\n\t  size_t length;\n\t  unsigned int backslashes;\n\t  const char *s;\n\t  char *quoted_string;\n\t  char *p;\n\n\t  length = 0;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    length++;\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\tlength += backslashes + 1;\n\t      length++;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    length += backslashes + 1;\n\n\t  quoted_string = XMALLOC (char, length + 1);\n\n\t  p = quoted_string;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    *p++ = '\"';\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\t{\n\t\t  unsigned int j;\n\t\t  for (j = backslashes + 1; j > 0; j--)\n\t\t    *p++ = '\\\\';\n\t\t}\n\t      *p++ = c;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    {\n\t      unsigned int j;\n\t      for (j = backslashes; j > 0; j--)\n\t\t*p++ = '\\\\';\n\t      *p++ = '\"';\n\t    }\n\t  *p = '\\0';\n\n\t  new_argv[i] = quoted_string;\n\t}\n      else\n\tnew_argv[i] = (char *) string;\n    }\n  new_argv[argc] = NULL;\n\n  return new_argv;\n}\nEOF\n\t\t;;\n\t    esac\n\n            cat <<\"EOF\"\nvoid lt_dump_script (FILE* f)\n{\nEOF\n\t    func_emit_wrapper yes |\n\t      $SED -n -e '\ns/^\\(.\\{79\\}\\)\\(..*\\)/\\1\\\n\\2/\nh\ns/\\([\\\\\"]\\)/\\\\\\1/g\ns/$/\\\\n/\ns/\\([^\\n]*\\).*/  fputs (\"\\1\", f);/p\ng\nD'\n            cat <<\"EOF\"\n}\nEOF\n}\n# end: func_emit_cwrapperexe_src\n\n# func_win32_import_lib_p ARG\n# True if ARG is an import lib, as indicated by $file_magic_cmd\nfunc_win32_import_lib_p ()\n{\n    $debug_cmd\n\n    case `eval $file_magic_cmd \\\"\\$1\\\" 2>/dev/null | $SED -e 10q` in\n    *import*) : ;;\n    *) false ;;\n    esac\n}\n\n# func_suncc_cstd_abi\n# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!!\n# Several compiler flags select an ABI that is incompatible with the\n# Cstd library. Avoid specifying it if any are in CXXFLAGS.\nfunc_suncc_cstd_abi ()\n{\n    $debug_cmd\n\n    case \" $compile_command \" in\n    *\" -compat=g \"*|*\\ -std=c++[0-9][0-9]\\ *|*\" -library=stdcxx4 \"*|*\" -library=stlport4 \"*)\n      suncc_use_cstd_abi=no\n      ;;\n    *)\n      suncc_use_cstd_abi=yes\n      ;;\n    esac\n}\n\n# func_mode_link arg...\nfunc_mode_link ()\n{\n    $debug_cmd\n\n    case $host in\n    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n      # It is impossible to link a dll without this setting, and\n      # we shouldn't force the makefile maintainer to figure out\n      # what system we are compiling for in order to pass an extra\n      # flag for every libtool invocation.\n      # allow_undefined=no\n\n      # FIXME: Unfortunately, there are problems with the above when trying\n      # to make a dll that has undefined symbols, in which case not\n      # even a static library is built.  For now, we need to specify\n      # -no-undefined on the libtool link line when we can be certain\n      # that all symbols are satisfied, otherwise we get a static library.\n      allow_undefined=yes\n      ;;\n    *)\n      allow_undefined=yes\n      ;;\n    esac\n    libtool_args=$nonopt\n    base_compile=\"$nonopt $@\"\n    compile_command=$nonopt\n    finalize_command=$nonopt\n\n    compile_rpath=\n    finalize_rpath=\n    compile_shlibpath=\n    finalize_shlibpath=\n    convenience=\n    old_convenience=\n    deplibs=\n    old_deplibs=\n    compiler_flags=\n    linker_flags=\n    dllsearchpath=\n    lib_search_path=`pwd`\n    inst_prefix_dir=\n    new_inherited_linker_flags=\n\n    avoid_version=no\n    bindir=\n    dlfiles=\n    dlprefiles=\n    dlself=no\n    export_dynamic=no\n    export_symbols=\n    export_symbols_regex=\n    generated=\n    libobjs=\n    ltlibs=\n    module=no\n    no_install=no\n    objs=\n    os2dllname=\n    non_pic_objects=\n    precious_files_regex=\n    prefer_static_libs=no\n    preload=false\n    prev=\n    prevarg=\n    release=\n    rpath=\n    xrpath=\n    perm_rpath=\n    temp_rpath=\n    thread_safe=no\n    vinfo=\n    vinfo_number=no\n    weak_libs=\n    single_module=$wl-single_module\n    func_infer_tag $base_compile\n\n    # We need to know -static, to get the right output filenames.\n    for arg\n    do\n      case $arg in\n      -shared)\n\ttest yes != \"$build_libtool_libs\" \\\n\t  && func_fatal_configuration \"cannot build a shared library\"\n\tbuild_old_libs=no\n\tbreak\n\t;;\n      -all-static | -static | -static-libtool-libs)\n\tcase $arg in\n\t-all-static)\n\t  if test yes = \"$build_libtool_libs\" && test -z \"$link_static_flag\"; then\n\t    func_warning \"complete static linking is impossible in this configuration\"\n\t  fi\n\t  if test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\t-static)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=built\n\t  ;;\n\t-static-libtool-libs)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\tesac\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tbreak\n\t;;\n      esac\n    done\n\n    # See if our shared archives depend on static archives.\n    test -n \"$old_archive_from_new_cmds\" && build_old_libs=yes\n\n    # Go through the arguments, transforming them on the way.\n    while test \"$#\" -gt 0; do\n      arg=$1\n      shift\n      func_quote_for_eval \"$arg\"\n      qarg=$func_quote_for_eval_unquoted_result\n      func_append libtool_args \" $func_quote_for_eval_result\"\n\n      # If the previous option needs an argument, assign it.\n      if test -n \"$prev\"; then\n\tcase $prev in\n\toutput)\n\t  func_append compile_command \" @OUTPUT@\"\n\t  func_append finalize_command \" @OUTPUT@\"\n\t  ;;\n\tesac\n\n\tcase $prev in\n\tbindir)\n\t  bindir=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tdlfiles|dlprefiles)\n\t  $preload || {\n\t    # Add the symbol object into the linking commands.\n\t    func_append compile_command \" @SYMFILE@\"\n\t    func_append finalize_command \" @SYMFILE@\"\n\t    preload=:\n\t  }\n\t  case $arg in\n\t  *.la | *.lo) ;;  # We handle these cases below.\n\t  force)\n\t    if test no = \"$dlself\"; then\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  self)\n\t    if test dlprefiles = \"$prev\"; then\n\t      dlself=yes\n\t    elif test dlfiles = \"$prev\" && test yes != \"$dlopen_self\"; then\n\t      dlself=yes\n\t    else\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  *)\n\t    if test dlfiles = \"$prev\"; then\n\t      func_append dlfiles \" $arg\"\n\t    else\n\t      func_append dlprefiles \" $arg\"\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  esac\n\t  ;;\n\texpsyms)\n\t  export_symbols=$arg\n\t  test -f \"$arg\" \\\n\t    || func_fatal_error \"symbol file '$arg' does not exist\"\n\t  prev=\n\t  continue\n\t  ;;\n\texpsyms_regex)\n\t  export_symbols_regex=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tframework)\n\t  case $host in\n\t    *-*-darwin*)\n\t      case \"$deplibs \" in\n\t\t*\" $qarg.ltframework \"*) ;;\n\t\t*) func_append deplibs \" $qarg.ltframework\" # this is fixed later\n\t\t   ;;\n\t      esac\n\t      ;;\n\t  esac\n\t  prev=\n\t  continue\n\t  ;;\n\tinst_prefix)\n\t  inst_prefix_dir=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tmllvm)\n\t  # Clang does not use LLVM to link, so we can simply discard any\n\t  # '-mllvm $arg' options when doing the link step.\n\t  prev=\n\t  continue\n\t  ;;\n\tobjectlist)\n\t  if test -f \"$arg\"; then\n\t    save_arg=$arg\n\t    moreargs=\n\t    for fil in `cat \"$save_arg\"`\n\t    do\n#\t      func_append moreargs \" $fil\"\n\t      arg=$fil\n\t      # A libtool-controlled object.\n\n\t      # Check to see that this really is a libtool object.\n\t      if func_lalib_unsafe_p \"$arg\"; then\n\t\tpic_object=\n\t\tnon_pic_object=\n\n\t\t# Read the .lo file\n\t\tfunc_source \"$arg\"\n\n\t\tif test -z \"$pic_object\" ||\n\t\t   test -z \"$non_pic_object\" ||\n\t\t   test none = \"$pic_object\" &&\n\t\t   test none = \"$non_pic_object\"; then\n\t\t  func_fatal_error \"cannot find name of object for '$arg'\"\n\t\tfi\n\n\t\t# Extract subdirectory from the argument.\n\t\tfunc_dirname \"$arg\" \"/\" \"\"\n\t\txdir=$func_dirname_result\n\n\t\tif test none != \"$pic_object\"; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  pic_object=$xdir$pic_object\n\n\t\t  if test dlfiles = \"$prev\"; then\n\t\t    if test yes = \"$build_libtool_libs\" && test yes = \"$dlopen_support\"; then\n\t\t      func_append dlfiles \" $pic_object\"\n\t\t      prev=\n\t\t      continue\n\t\t    else\n\t\t      # If libtool objects are unsupported, then we need to preload.\n\t\t      prev=dlprefiles\n\t\t    fi\n\t\t  fi\n\n\t\t  # CHECK ME:  I think I busted this.  -Ossama\n\t\t  if test dlprefiles = \"$prev\"; then\n\t\t    # Preload the old-style object.\n\t\t    func_append dlprefiles \" $pic_object\"\n\t\t    prev=\n\t\t  fi\n\n\t\t  # A PIC object.\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  arg=$pic_object\n\t\tfi\n\n\t\t# Non-PIC object.\n\t\tif test none != \"$non_pic_object\"; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  non_pic_object=$xdir$non_pic_object\n\n\t\t  # A standard non-PIC object\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\t  if test -z \"$pic_object\" || test none = \"$pic_object\"; then\n\t\t    arg=$non_pic_object\n\t\t  fi\n\t\telse\n\t\t  # If the PIC object exists, use it instead.\n\t\t  # $xdir was prepended to $pic_object above.\n\t\t  non_pic_object=$pic_object\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\tfi\n\t      else\n\t\t# Only an error if not doing a dry-run.\n\t\tif $opt_dry_run; then\n\t\t  # Extract subdirectory from the argument.\n\t\t  func_dirname \"$arg\" \"/\" \"\"\n\t\t  xdir=$func_dirname_result\n\n\t\t  func_lo2o \"$arg\"\n\t\t  pic_object=$xdir$objdir/$func_lo2o_result\n\t\t  non_pic_object=$xdir$func_lo2o_result\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t        else\n\t\t  func_fatal_error \"'$arg' is not a valid libtool object\"\n\t\tfi\n\t      fi\n\t    done\n\t  else\n\t    func_fatal_error \"link input file '$arg' does not exist\"\n\t  fi\n\t  arg=$save_arg\n\t  prev=\n\t  continue\n\t  ;;\n\tos2dllname)\n\t  os2dllname=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tprecious_regex)\n\t  precious_files_regex=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\trelease)\n\t  release=-$arg\n\t  prev=\n\t  continue\n\t  ;;\n\trpath | xrpath)\n\t  # We need an absolute path.\n\t  case $arg in\n\t  [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t  *)\n\t    func_fatal_error \"only absolute run-paths are allowed\"\n\t    ;;\n\t  esac\n\t  if test rpath = \"$prev\"; then\n\t    case \"$rpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) func_append rpath \" $arg\" ;;\n\t    esac\n\t  else\n\t    case \"$xrpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) func_append xrpath \" $arg\" ;;\n\t    esac\n\t  fi\n\t  prev=\n\t  continue\n\t  ;;\n\tshrext)\n\t  shrext_cmds=$arg\n\t  prev=\n\t  continue\n\t  ;;\n\tweak)\n\t  func_append weak_libs \" $arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\txcclinker)\n\t  func_append linker_flags \" $qarg\"\n\t  func_append compiler_flags \" $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txcompiler)\n\t  func_append compiler_flags \" $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txlinker)\n\t  func_append linker_flags \" $qarg\"\n\t  func_append compiler_flags \" $wl$qarg\"\n\t  prev=\n\t  func_append compile_command \" $wl$qarg\"\n\t  func_append finalize_command \" $wl$qarg\"\n\t  continue\n\t  ;;\n\t*)\n\t  eval \"$prev=\\\"\\$arg\\\"\"\n\t  prev=\n\t  continue\n\t  ;;\n\tesac\n      fi # test -n \"$prev\"\n\n      prevarg=$arg\n\n      case $arg in\n      -all-static)\n\tif test -n \"$link_static_flag\"; then\n\t  # See comment for -static flag below, for more details.\n\t  func_append compile_command \" $link_static_flag\"\n\t  func_append finalize_command \" $link_static_flag\"\n\tfi\n\tcontinue\n\t;;\n\n      -allow-undefined)\n\t# FIXME: remove this flag sometime in the future.\n\tfunc_fatal_error \"'-allow-undefined' must not be used because it is the default\"\n\t;;\n\n      -avoid-version)\n\tavoid_version=yes\n\tcontinue\n\t;;\n\n      -bindir)\n\tprev=bindir\n\tcontinue\n\t;;\n\n      -dlopen)\n\tprev=dlfiles\n\tcontinue\n\t;;\n\n      -dlpreopen)\n\tprev=dlprefiles\n\tcontinue\n\t;;\n\n      -export-dynamic)\n\texport_dynamic=yes\n\tcontinue\n\t;;\n\n      -export-symbols | -export-symbols-regex)\n\tif test -n \"$export_symbols\" || test -n \"$export_symbols_regex\"; then\n\t  func_fatal_error \"more than one -exported-symbols argument is not allowed\"\n\tfi\n\tif test X-export-symbols = \"X$arg\"; then\n\t  prev=expsyms\n\telse\n\t  prev=expsyms_regex\n\tfi\n\tcontinue\n\t;;\n\n      -framework)\n\tprev=framework\n\tcontinue\n\t;;\n\n      -inst-prefix-dir)\n\tprev=inst_prefix\n\tcontinue\n\t;;\n\n      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*\n      # so, if we see these flags be careful not to treat them like -L\n      -L[A-Z][A-Z]*:*)\n\tcase $with_gcc/$host in\n\tno/*-*-irix* | /*-*-irix*)\n\t  func_append compile_command \" $arg\"\n\t  func_append finalize_command \" $arg\"\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -L*)\n\tfunc_stripname \"-L\" '' \"$arg\"\n\tif test -z \"$func_stripname_result\"; then\n\t  if test \"$#\" -gt 0; then\n\t    func_fatal_error \"require no space between '-L' and '$1'\"\n\t  else\n\t    func_fatal_error \"need path for '-L' option\"\n\t  fi\n\tfi\n\tfunc_resolve_sysroot \"$func_stripname_result\"\n\tdir=$func_resolve_sysroot_result\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t*)\n\t  absdir=`cd \"$dir\" && pwd`\n\t  test -z \"$absdir\" && \\\n\t    func_fatal_error \"cannot determine absolute directory name of '$dir'\"\n\t  dir=$absdir\n\t  ;;\n\tesac\n\tcase \"$deplibs \" in\n\t*\" -L$dir \"* | *\" $arg \"*)\n\t  # Will only happen for absolute or sysroot arguments\n\t  ;;\n\t*)\n\t  # Preserve sysroot, but never include relative directories\n\t  case $dir in\n\t    [\\\\/]* | [A-Za-z]:[\\\\/]* | =*) func_append deplibs \" $arg\" ;;\n\t    *) func_append deplibs \" -L$dir\" ;;\n\t  esac\n\t  func_append lib_search_path \" $dir\"\n\t  ;;\n\tesac\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`$ECHO \"$dir\" | $SED 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$dir:\"*) ;;\n\t  ::) dllsearchpath=$dir;;\n\t  *) func_append dllsearchpath \":$dir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) func_append dllsearchpath \":$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -l*)\n\tif test X-lc = \"X$arg\" || test X-lm = \"X$arg\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # These systems don't actually have a C or math library (as such)\n\t    continue\n\t    ;;\n\t  *-*-os2*)\n\t    # These systems don't actually have a C library (as such)\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C and math libraries are in the System framework\n\t    func_append deplibs \" System.ltframework\"\n\t    continue\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    test X-lc = \"X$arg\" && continue\n\t    ;;\n\t  esac\n\telif test X-lc_r = \"X$arg\"; then\n\t case $host in\n\t *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)\n\t   # Do not include libc_r directly, use -pthread flag.\n\t   continue\n\t   ;;\n\t esac\n\tfi\n\tfunc_append deplibs \" $arg\"\n\tcontinue\n\t;;\n\n      -mllvm)\n\tprev=mllvm\n\tcontinue\n\t;;\n\n      -module)\n\tmodule=yes\n\tcontinue\n\t;;\n\n      # Tru64 UNIX uses -model [arg] to determine the layout of C++\n      # classes, name mangling, and exception handling.\n      # Darwin uses the -arch flag to determine output architecture.\n      -model|-arch|-isysroot|--sysroot)\n\tfunc_append compiler_flags \" $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \\\n      |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)\n\tfunc_append compiler_flags \" $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tcase \"$new_inherited_linker_flags \" in\n\t    *\" $arg \"*) ;;\n\t    * ) func_append new_inherited_linker_flags \" $arg\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -multi_module)\n\tsingle_module=$wl-multi_module\n\tcontinue\n\t;;\n\n      -no-fast-install)\n\tfast_install=no\n\tcontinue\n\t;;\n\n      -no-install)\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)\n\t  # The PATH hackery in wrapper scripts is required on Windows\n\t  # and Darwin in order for the loader to find any dlls it needs.\n\t  func_warning \"'-no-install' is ignored for $host\"\n\t  func_warning \"assuming '-no-fast-install' instead\"\n\t  fast_install=no\n\t  ;;\n\t*) no_install=yes ;;\n\tesac\n\tcontinue\n\t;;\n\n      -no-undefined)\n\tallow_undefined=no\n\tcontinue\n\t;;\n\n      -objectlist)\n\tprev=objectlist\n\tcontinue\n\t;;\n\n      -os2dllname)\n\tprev=os2dllname\n\tcontinue\n\t;;\n\n      -o) prev=output ;;\n\n      -precious-files-regex)\n\tprev=precious_regex\n\tcontinue\n\t;;\n\n      -release)\n\tprev=release\n\tcontinue\n\t;;\n\n      -rpath)\n\tprev=rpath\n\tcontinue\n\t;;\n\n      -R)\n\tprev=xrpath\n\tcontinue\n\t;;\n\n      -R*)\n\tfunc_stripname '-R' '' \"$arg\"\n\tdir=$func_stripname_result\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t=*)\n\t  func_stripname '=' '' \"$dir\"\n\t  dir=$lt_sysroot$func_stripname_result\n\t  ;;\n\t*)\n\t  func_fatal_error \"only absolute run-paths are allowed\"\n\t  ;;\n\tesac\n\tcase \"$xrpath \" in\n\t*\" $dir \"*) ;;\n\t*) func_append xrpath \" $dir\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -shared)\n\t# The effects of -shared are defined in a previous loop.\n\tcontinue\n\t;;\n\n      -shrext)\n\tprev=shrext\n\tcontinue\n\t;;\n\n      -static | -static-libtool-libs)\n\t# The effects of -static are defined in a previous loop.\n\t# We used to do the same as -all-static on platforms that\n\t# didn't have a PIC flag, but the assumption that the effects\n\t# would be equivalent was wrong.  It would break on at least\n\t# Digital Unix and AIX.\n\tcontinue\n\t;;\n\n      -thread-safe)\n\tthread_safe=yes\n\tcontinue\n\t;;\n\n      -version-info)\n\tprev=vinfo\n\tcontinue\n\t;;\n\n      -version-number)\n\tprev=vinfo\n\tvinfo_number=yes\n\tcontinue\n\t;;\n\n      -weak)\n        prev=weak\n\tcontinue\n\t;;\n\n      -Wc,*)\n\tfunc_stripname '-Wc,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=$IFS; IFS=,\n\tfor flag in $args; do\n\t  IFS=$save_ifs\n          func_quote_for_eval \"$flag\"\n\t  func_append arg \" $func_quote_for_eval_result\"\n\t  func_append compiler_flags \" $func_quote_for_eval_result\"\n\tdone\n\tIFS=$save_ifs\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Wl,*)\n\tfunc_stripname '-Wl,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=$IFS; IFS=,\n\tfor flag in $args; do\n\t  IFS=$save_ifs\n          func_quote_for_eval \"$flag\"\n\t  func_append arg \" $wl$func_quote_for_eval_result\"\n\t  func_append compiler_flags \" $wl$func_quote_for_eval_result\"\n\t  func_append linker_flags \" $func_quote_for_eval_result\"\n\tdone\n\tIFS=$save_ifs\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Xcompiler)\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -Xlinker)\n\tprev=xlinker\n\tcontinue\n\t;;\n\n      -XCClinker)\n\tprev=xcclinker\n\tcontinue\n\t;;\n\n      # -msg_* for osf cc\n      -msg_*)\n\tfunc_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n\n      # Flags to be passed through unchanged, with rationale:\n      # -64, -mips[0-9]      enable 64-bit mode for the SGI compiler\n      # -r[0-9][0-9]*        specify processor for the SGI compiler\n      # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler\n      # +DA*, +DD*           enable 64-bit mode for the HP compiler\n      # -q*                  compiler args for the IBM compiler\n      # -m*, -t[45]*, -txscale* architecture-specific flags for GCC\n      # -F/path              path to uninstalled frameworks, gcc on darwin\n      # -p, -pg, --coverage, -fprofile-*  profiling flags for GCC\n      # -fstack-protector*   stack protector flags for GCC\n      # @file                GCC response files\n      # -tp=*                Portland pgcc target processor selection\n      # --sysroot=*          for sysroot support\n      # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization\n      # -stdlib=*            select c++ std lib with clang\n      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \\\n      -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \\\n      -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*)\n        func_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n        func_append compile_command \" $arg\"\n        func_append finalize_command \" $arg\"\n        func_append compiler_flags \" $arg\"\n        continue\n        ;;\n\n      -Z*)\n        if test os2 = \"`expr $host : '.*\\(os2\\)'`\"; then\n          # OS/2 uses -Zxxx to specify OS/2-specific options\n\t  compiler_flags=\"$compiler_flags $arg\"\n\t  func_append compile_command \" $arg\"\n\t  func_append finalize_command \" $arg\"\n\t  case $arg in\n\t  -Zlinker | -Zstack)\n\t    prev=xcompiler\n\t    ;;\n\t  esac\n\t  continue\n        else\n\t  # Otherwise treat like 'Some other compiler flag' below\n\t  func_quote_for_eval \"$arg\"\n\t  arg=$func_quote_for_eval_result\n        fi\n\t;;\n\n      # Some other compiler flag.\n      -* | +*)\n        func_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n\n      *.$objext)\n\t# A standard object.\n\tfunc_append objs \" $arg\"\n\t;;\n\n      *.lo)\n\t# A libtool-controlled object.\n\n\t# Check to see that this really is a libtool object.\n\tif func_lalib_unsafe_p \"$arg\"; then\n\t  pic_object=\n\t  non_pic_object=\n\n\t  # Read the .lo file\n\t  func_source \"$arg\"\n\n\t  if test -z \"$pic_object\" ||\n\t     test -z \"$non_pic_object\" ||\n\t     test none = \"$pic_object\" &&\n\t     test none = \"$non_pic_object\"; then\n\t    func_fatal_error \"cannot find name of object for '$arg'\"\n\t  fi\n\n\t  # Extract subdirectory from the argument.\n\t  func_dirname \"$arg\" \"/\" \"\"\n\t  xdir=$func_dirname_result\n\n\t  test none = \"$pic_object\" || {\n\t    # Prepend the subdirectory the object is found in.\n\t    pic_object=$xdir$pic_object\n\n\t    if test dlfiles = \"$prev\"; then\n\t      if test yes = \"$build_libtool_libs\" && test yes = \"$dlopen_support\"; then\n\t\tfunc_append dlfiles \" $pic_object\"\n\t\tprev=\n\t\tcontinue\n\t      else\n\t\t# If libtool objects are unsupported, then we need to preload.\n\t\tprev=dlprefiles\n\t      fi\n\t    fi\n\n\t    # CHECK ME:  I think I busted this.  -Ossama\n\t    if test dlprefiles = \"$prev\"; then\n\t      # Preload the old-style object.\n\t      func_append dlprefiles \" $pic_object\"\n\t      prev=\n\t    fi\n\n\t    # A PIC object.\n\t    func_append libobjs \" $pic_object\"\n\t    arg=$pic_object\n\t  }\n\n\t  # Non-PIC object.\n\t  if test none != \"$non_pic_object\"; then\n\t    # Prepend the subdirectory the object is found in.\n\t    non_pic_object=$xdir$non_pic_object\n\n\t    # A standard non-PIC object\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t    if test -z \"$pic_object\" || test none = \"$pic_object\"; then\n\t      arg=$non_pic_object\n\t    fi\n\t  else\n\t    # If the PIC object exists, use it instead.\n\t    # $xdir was prepended to $pic_object above.\n\t    non_pic_object=$pic_object\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  fi\n\telse\n\t  # Only an error if not doing a dry-run.\n\t  if $opt_dry_run; then\n\t    # Extract subdirectory from the argument.\n\t    func_dirname \"$arg\" \"/\" \"\"\n\t    xdir=$func_dirname_result\n\n\t    func_lo2o \"$arg\"\n\t    pic_object=$xdir$objdir/$func_lo2o_result\n\t    non_pic_object=$xdir$func_lo2o_result\n\t    func_append libobjs \" $pic_object\"\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  else\n\t    func_fatal_error \"'$arg' is not a valid libtool object\"\n\t  fi\n\tfi\n\t;;\n\n      *.$libext)\n\t# An archive.\n\tfunc_append deplibs \" $arg\"\n\tfunc_append old_deplibs \" $arg\"\n\tcontinue\n\t;;\n\n      *.la)\n\t# A libtool-controlled library.\n\n\tfunc_resolve_sysroot \"$arg\"\n\tif test dlfiles = \"$prev\"; then\n\t  # This library was specified with -dlopen.\n\t  func_append dlfiles \" $func_resolve_sysroot_result\"\n\t  prev=\n\telif test dlprefiles = \"$prev\"; then\n\t  # The library was specified with -dlpreopen.\n\t  func_append dlprefiles \" $func_resolve_sysroot_result\"\n\t  prev=\n\telse\n\t  func_append deplibs \" $func_resolve_sysroot_result\"\n\tfi\n\tcontinue\n\t;;\n\n      # Some other compiler argument.\n      *)\n\t# Unknown arguments in both finalize_command and compile_command need\n\t# to be aesthetically quoted because they are evaled later.\n\tfunc_quote_for_eval \"$arg\"\n\targ=$func_quote_for_eval_result\n\t;;\n      esac # arg\n\n      # Now actually substitute the argument into the commands.\n      if test -n \"$arg\"; then\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n      fi\n    done # argument parsing loop\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the '$prevarg' option requires an argument\"\n\n    if test yes = \"$export_dynamic\" && test -n \"$export_dynamic_flag_spec\"; then\n      eval arg=\\\"$export_dynamic_flag_spec\\\"\n      func_append compile_command \" $arg\"\n      func_append finalize_command \" $arg\"\n    fi\n\n    oldlibs=\n    # calculate the name of the file, without its directory\n    func_basename \"$output\"\n    outputname=$func_basename_result\n    libobjs_save=$libobjs\n\n    if test -n \"$shlibpath_var\"; then\n      # get the directories listed in $shlibpath_var\n      eval shlib_search_path=\\`\\$ECHO \\\"\\$$shlibpath_var\\\" \\| \\$SED \\'s/:/ /g\\'\\`\n    else\n      shlib_search_path=\n    fi\n    eval sys_lib_search_path=\\\"$sys_lib_search_path_spec\\\"\n    eval sys_lib_dlsearch_path=\\\"$sys_lib_dlsearch_path_spec\\\"\n\n    # Definition is injected by LT_CONFIG during libtool generation.\n    func_munge_path_list sys_lib_dlsearch_path \"$LT_SYS_LIBRARY_PATH\"\n\n    func_dirname \"$output\" \"/\" \"\"\n    output_objdir=$func_dirname_result$objdir\n    func_to_tool_file \"$output_objdir/\"\n    tool_output_objdir=$func_to_tool_file_result\n    # Create the object directory.\n    func_mkdir_p \"$output_objdir\"\n\n    # Determine the type of output\n    case $output in\n    \"\")\n      func_fatal_help \"you must specify an output file\"\n      ;;\n    *.$libext) linkmode=oldlib ;;\n    *.lo | *.$objext) linkmode=obj ;;\n    *.la) linkmode=lib ;;\n    *) linkmode=prog ;; # Anything else should be a program.\n    esac\n\n    specialdeplibs=\n\n    libs=\n    # Find all interdependent deplibs by searching for libraries\n    # that are linked more than once (e.g. -la -lb -la)\n    for deplib in $deplibs; do\n      if $opt_preserve_dup_deps; then\n\tcase \"$libs \" in\n\t*\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\tesac\n      fi\n      func_append libs \" $deplib\"\n    done\n\n    if test lib = \"$linkmode\"; then\n      libs=\"$predeps $libs $compiler_lib_search_path $postdeps\"\n\n      # Compute libraries that are listed more than once in $predeps\n      # $postdeps and mark them as special (i.e., whose duplicates are\n      # not to be eliminated).\n      pre_post_deps=\n      if $opt_duplicate_compiler_generated_deps; then\n\tfor pre_post_dep in $predeps $postdeps; do\n\t  case \"$pre_post_deps \" in\n\t  *\" $pre_post_dep \"*) func_append specialdeplibs \" $pre_post_deps\" ;;\n\t  esac\n\t  func_append pre_post_deps \" $pre_post_dep\"\n\tdone\n      fi\n      pre_post_deps=\n    fi\n\n    deplibs=\n    newdependency_libs=\n    newlib_search_path=\n    need_relink=no # whether we're linking any uninstalled libtool libraries\n    notinst_deplibs= # not-installed libtool libraries\n    notinst_path= # paths that contain not-installed libtool libraries\n\n    case $linkmode in\n    lib)\n\tpasses=\"conv dlpreopen link\"\n\tfor file in $dlfiles $dlprefiles; do\n\t  case $file in\n\t  *.la) ;;\n\t  *)\n\t    func_fatal_help \"libraries can '-dlopen' only libtool libraries: $file\"\n\t    ;;\n\t  esac\n\tdone\n\t;;\n    prog)\n\tcompile_deplibs=\n\tfinalize_deplibs=\n\talldeplibs=false\n\tnewdlfiles=\n\tnewdlprefiles=\n\tpasses=\"conv scan dlopen dlpreopen link\"\n\t;;\n    *)  passes=\"conv\"\n\t;;\n    esac\n\n    for pass in $passes; do\n      # The preopen pass in lib mode reverses $deplibs; put it back here\n      # so that -L comes before libs that need it for instance...\n      if test lib,link = \"$linkmode,$pass\"; then\n\t## FIXME: Find the place where the list is rebuilt in the wrong\n\t##        order, and fix it there properly\n        tmp_deplibs=\n\tfor deplib in $deplibs; do\n\t  tmp_deplibs=\"$deplib $tmp_deplibs\"\n\tdone\n\tdeplibs=$tmp_deplibs\n      fi\n\n      if test lib,link = \"$linkmode,$pass\" ||\n\t test prog,scan = \"$linkmode,$pass\"; then\n\tlibs=$deplibs\n\tdeplibs=\n      fi\n      if test prog = \"$linkmode\"; then\n\tcase $pass in\n\tdlopen) libs=$dlfiles ;;\n\tdlpreopen) libs=$dlprefiles ;;\n\tlink) libs=\"$deplibs %DEPLIBS% $dependency_libs\" ;;\n\tesac\n      fi\n      if test lib,dlpreopen = \"$linkmode,$pass\"; then\n\t# Collect and forward deplibs of preopened libtool libs\n\tfor lib in $dlprefiles; do\n\t  # Ignore non-libtool-libs\n\t  dependency_libs=\n\t  func_resolve_sysroot \"$lib\"\n\t  case $lib in\n\t  *.la)\tfunc_source \"$func_resolve_sysroot_result\" ;;\n\t  esac\n\n\t  # Collect preopened libtool deplibs, except any this library\n\t  # has declared as weak libs\n\t  for deplib in $dependency_libs; do\n\t    func_basename \"$deplib\"\n            deplib_base=$func_basename_result\n\t    case \" $weak_libs \" in\n\t    *\" $deplib_base \"*) ;;\n\t    *) func_append deplibs \" $deplib\" ;;\n\t    esac\n\t  done\n\tdone\n\tlibs=$dlprefiles\n      fi\n      if test dlopen = \"$pass\"; then\n\t# Collect dlpreopened libraries\n\tsave_deplibs=$deplibs\n\tdeplibs=\n      fi\n\n      for deplib in $libs; do\n\tlib=\n\tfound=false\n\tcase $deplib in\n\t-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \\\n        |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)\n\t  if test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    func_append compiler_flags \" $deplib\"\n\t    if test lib = \"$linkmode\"; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) func_append new_inherited_linker_flags \" $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-l*)\n\t  if test lib != \"$linkmode\" && test prog != \"$linkmode\"; then\n\t    func_warning \"'-l' is ignored for archives/objects\"\n\t    continue\n\t  fi\n\t  func_stripname '-l' '' \"$deplib\"\n\t  name=$func_stripname_result\n\t  if test lib = \"$linkmode\"; then\n\t    searchdirs=\"$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path\"\n\t  else\n\t    searchdirs=\"$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path\"\n\t  fi\n\t  for searchdir in $searchdirs; do\n\t    for search_ext in .la $std_shrext .so .a; do\n\t      # Search the libtool library\n\t      lib=$searchdir/lib$name$search_ext\n\t      if test -f \"$lib\"; then\n\t\tif test .la = \"$search_ext\"; then\n\t\t  found=:\n\t\telse\n\t\t  found=false\n\t\tfi\n\t\tbreak 2\n\t      fi\n\t    done\n\t  done\n\t  if $found; then\n\t    # deplib is a libtool library\n\t    # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,\n\t    # We need to do some special things here, and not later.\n\t    if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t      case \" $predeps $postdeps \" in\n\t      *\" $deplib \"*)\n\t\tif func_lalib_p \"$lib\"; then\n\t\t  library_names=\n\t\t  old_library=\n\t\t  func_source \"$lib\"\n\t\t  for l in $old_library $library_names; do\n\t\t    ll=$l\n\t\t  done\n\t\t  if test \"X$ll\" = \"X$old_library\"; then # only static version available\n\t\t    found=false\n\t\t    func_dirname \"$lib\" \"\" \".\"\n\t\t    ladir=$func_dirname_result\n\t\t    lib=$ladir/$old_library\n\t\t    if test prog,link = \"$linkmode,$pass\"; then\n\t\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t\t    else\n\t\t      deplibs=\"$deplib $deplibs\"\n\t\t      test lib = \"$linkmode\" && newdependency_libs=\"$deplib $newdependency_libs\"\n\t\t    fi\n\t\t    continue\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *) ;;\n\t      esac\n\t    fi\n\t  else\n\t    # deplib doesn't seem to be a libtool library\n\t    if test prog,link = \"$linkmode,$pass\"; then\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      deplibs=\"$deplib $deplibs\"\n\t      test lib = \"$linkmode\" && newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    continue\n\t  fi\n\t  ;; # -l\n\t*.ltframework)\n\t  if test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$deplib $deplibs\"\n\t    if test lib = \"$linkmode\"; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) func_append new_inherited_linker_flags \" $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-L*)\n\t  case $linkmode in\n\t  lib)\n\t    deplibs=\"$deplib $deplibs\"\n\t    test conv = \"$pass\" && continue\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    func_stripname '-L' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t    ;;\n\t  prog)\n\t    if test conv = \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t      continue\n\t    fi\n\t    if test scan = \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    func_stripname '-L' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t    ;;\n\t  *)\n\t    func_warning \"'-L' is ignored for archives/objects\"\n\t    ;;\n\t  esac # linkmode\n\t  continue\n\t  ;; # -L\n\t-R*)\n\t  if test link = \"$pass\"; then\n\t    func_stripname '-R' '' \"$deplib\"\n\t    func_resolve_sysroot \"$func_stripname_result\"\n\t    dir=$func_resolve_sysroot_result\n\t    # Make sure the xrpath contains only unique directories.\n\t    case \"$xrpath \" in\n\t    *\" $dir \"*) ;;\n\t    *) func_append xrpath \" $dir\" ;;\n\t    esac\n\t  fi\n\t  deplibs=\"$deplib $deplibs\"\n\t  continue\n\t  ;;\n\t*.la)\n\t  func_resolve_sysroot \"$deplib\"\n\t  lib=$func_resolve_sysroot_result\n\t  ;;\n\t*.$libext)\n\t  if test conv = \"$pass\"; then\n\t    deplibs=\"$deplib $deplibs\"\n\t    continue\n\t  fi\n\t  case $linkmode in\n\t  lib)\n\t    # Linking convenience modules into shared libraries is allowed,\n\t    # but linking other static libraries is non-portable.\n\t    case \" $dlpreconveniencelibs \" in\n\t    *\" $deplib \"*) ;;\n\t    *)\n\t      valid_a_lib=false\n\t      case $deplibs_check_method in\n\t\tmatch_pattern*)\n\t\t  set dummy $deplibs_check_method; shift\n\t\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t\t  if eval \"\\$ECHO \\\"$deplib\\\"\" 2>/dev/null | $SED 10q \\\n\t\t    | $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t    valid_a_lib=:\n\t\t  fi\n\t\t;;\n\t\tpass_all)\n\t\t  valid_a_lib=:\n\t\t;;\n\t      esac\n\t      if $valid_a_lib; then\n\t\techo\n\t\t$ECHO \"*** Warning: Linking the shared library $output against the\"\n\t\t$ECHO \"*** static library $deplib is not portable!\"\n\t\tdeplibs=\"$deplib $deplibs\"\n\t      else\n\t\techo\n\t\t$ECHO \"*** Warning: Trying to link with static lib archive $deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because the file extensions .$libext of this argument makes me believe\"\n\t\techo \"*** that it is just a static archive that I should not use here.\"\n\t      fi\n\t      ;;\n\t    esac\n\t    continue\n\t    ;;\n\t  prog)\n\t    if test link != \"$pass\"; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    continue\n\t    ;;\n\t  esac # linkmode\n\t  ;; # *.$libext\n\t*.lo | *.$objext)\n\t  if test conv = \"$pass\"; then\n\t    deplibs=\"$deplib $deplibs\"\n\t  elif test prog = \"$linkmode\"; then\n\t    if test dlpreopen = \"$pass\" || test yes != \"$dlopen_support\" || test no = \"$build_libtool_libs\"; then\n\t      # If there is no dlopen support or we're linking statically,\n\t      # we need to preload.\n\t      func_append newdlprefiles \" $deplib\"\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      func_append newdlfiles \" $deplib\"\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t%DEPLIBS%)\n\t  alldeplibs=:\n\t  continue\n\t  ;;\n\tesac # case $deplib\n\n\t$found || test -f \"$lib\" \\\n\t  || func_fatal_error \"cannot find the library '$lib' or unhandled argument '$deplib'\"\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$lib\" \\\n\t  || func_fatal_error \"'$lib' is not a valid libtool archive\"\n\n\tfunc_dirname \"$lib\" \"\" \".\"\n\tladir=$func_dirname_result\n\n\tdlname=\n\tdlopen=\n\tdlpreopen=\n\tlibdir=\n\tlibrary_names=\n\told_library=\n\tinherited_linker_flags=\n\t# If the library was installed with an old release of libtool,\n\t# it will not redefine variables installed, or shouldnotlink\n\tinstalled=yes\n\tshouldnotlink=no\n\tavoidtemprpath=\n\n\n\t# Read the .la file\n\tfunc_source \"$lib\"\n\n\t# Convert \"-framework foo\" to \"foo.ltframework\"\n\tif test -n \"$inherited_linker_flags\"; then\n\t  tmp_inherited_linker_flags=`$ECHO \"$inherited_linker_flags\" | $SED 's/-framework \\([^ $]*\\)/\\1.ltframework/g'`\n\t  for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do\n\t    case \" $new_inherited_linker_flags \" in\n\t      *\" $tmp_inherited_linker_flag \"*) ;;\n\t      *) func_append new_inherited_linker_flags \" $tmp_inherited_linker_flag\";;\n\t    esac\n\t  done\n\tfi\n\tdependency_libs=`$ECHO \" $dependency_libs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tif test lib,link = \"$linkmode,$pass\" ||\n\t   test prog,scan = \"$linkmode,$pass\" ||\n\t   { test prog != \"$linkmode\" && test lib != \"$linkmode\"; }; then\n\t  test -n \"$dlopen\" && func_append dlfiles \" $dlopen\"\n\t  test -n \"$dlpreopen\" && func_append dlprefiles \" $dlpreopen\"\n\tfi\n\n\tif test conv = \"$pass\"; then\n\t  # Only check for convenience libraries\n\t  deplibs=\"$lib $deplibs\"\n\t  if test -z \"$libdir\"; then\n\t    if test -z \"$old_library\"; then\n\t      func_fatal_error \"cannot find name of link library for '$lib'\"\n\t    fi\n\t    # It is a libtool convenience library, so add in its objects.\n\t    func_append convenience \" $ladir/$objdir/$old_library\"\n\t    func_append old_convenience \" $ladir/$objdir/$old_library\"\n\t  elif test prog != \"$linkmode\" && test lib != \"$linkmode\"; then\n\t    func_fatal_error \"'$lib' is not a convenience library\"\n\t  fi\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    deplibs=\"$deplib $deplibs\"\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $deplib\"\n\t  done\n\t  continue\n\tfi # $pass = conv\n\n\n\t# Get the name of the library we link against.\n\tlinklib=\n\tif test -n \"$old_library\" &&\n\t   { test yes = \"$prefer_static_libs\" ||\n\t     test built,no = \"$prefer_static_libs,$installed\"; }; then\n\t  linklib=$old_library\n\telse\n\t  for l in $old_library $library_names; do\n\t    linklib=$l\n\t  done\n\tfi\n\tif test -z \"$linklib\"; then\n\t  func_fatal_error \"cannot find name of link library for '$lib'\"\n\tfi\n\n\t# This library was specified with -dlopen.\n\tif test dlopen = \"$pass\"; then\n\t  test -z \"$libdir\" \\\n\t    && func_fatal_error \"cannot -dlopen a convenience library: '$lib'\"\n\t  if test -z \"$dlname\" ||\n\t     test yes != \"$dlopen_support\" ||\n\t     test no = \"$build_libtool_libs\"\n\t  then\n\t    # If there is no dlname, no dlopen support or we're linking\n\t    # statically, we need to preload.  We also need to preload any\n\t    # dependent libraries so libltdl's deplib preloader doesn't\n\t    # bomb out in the load deplibs phase.\n\t    func_append dlprefiles \" $lib $dependency_libs\"\n\t  else\n\t    func_append newdlfiles \" $lib\"\n\t  fi\n\t  continue\n\tfi # $pass = dlopen\n\n\t# We need an absolute path.\n\tcase $ladir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs_ladir=$ladir ;;\n\t*)\n\t  abs_ladir=`cd \"$ladir\" && pwd`\n\t  if test -z \"$abs_ladir\"; then\n\t    func_warning \"cannot determine absolute directory name of '$ladir'\"\n\t    func_warning \"passing it literally to the linker, although it might fail\"\n\t    abs_ladir=$ladir\n\t  fi\n\t  ;;\n\tesac\n\tfunc_basename \"$lib\"\n\tlaname=$func_basename_result\n\n\t# Find the relevant object directory and library name.\n\tif test yes = \"$installed\"; then\n\t  if test ! -f \"$lt_sysroot$libdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    func_warning \"library '$lib' was moved.\"\n\t    dir=$ladir\n\t    absdir=$abs_ladir\n\t    libdir=$abs_ladir\n\t  else\n\t    dir=$lt_sysroot$libdir\n\t    absdir=$lt_sysroot$libdir\n\t  fi\n\t  test yes = \"$hardcode_automatic\" && avoidtemprpath=yes\n\telse\n\t  if test ! -f \"$ladir/$objdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    dir=$ladir\n\t    absdir=$abs_ladir\n\t    # Remove this search path later\n\t    func_append notinst_path \" $abs_ladir\"\n\t  else\n\t    dir=$ladir/$objdir\n\t    absdir=$abs_ladir/$objdir\n\t    # Remove this search path later\n\t    func_append notinst_path \" $abs_ladir\"\n\t  fi\n\tfi # $installed = yes\n\tfunc_stripname 'lib' '.la' \"$laname\"\n\tname=$func_stripname_result\n\n\t# This library was specified with -dlpreopen.\n\tif test dlpreopen = \"$pass\"; then\n\t  if test -z \"$libdir\" && test prog = \"$linkmode\"; then\n\t    func_fatal_error \"only libraries may -dlpreopen a convenience library: '$lib'\"\n\t  fi\n\t  case $host in\n\t    # special handling for platforms with PE-DLLs.\n\t    *cygwin* | *mingw* | *cegcc* )\n\t      # Linker will automatically link against shared library if both\n\t      # static and shared are present.  Therefore, ensure we extract\n\t      # symbols from the import library if a shared library is present\n\t      # (otherwise, the dlopen module name will be incorrect).  We do\n\t      # this by putting the import library name into $newdlprefiles.\n\t      # We recover the dlopen module name by 'saving' the la file\n\t      # name in a special purpose variable, and (later) extracting the\n\t      # dlname from the la file.\n\t      if test -n \"$dlname\"; then\n\t        func_tr_sh \"$dir/$linklib\"\n\t        eval \"libfile_$func_tr_sh_result=\\$abs_ladir/\\$laname\"\n\t        func_append newdlprefiles \" $dir/$linklib\"\n\t      else\n\t        func_append newdlprefiles \" $dir/$old_library\"\n\t        # Keep a list of preopened convenience libraries to check\n\t        # that they are being used correctly in the link pass.\n\t        test -z \"$libdir\" && \\\n\t          func_append dlpreconveniencelibs \" $dir/$old_library\"\n\t      fi\n\t    ;;\n\t    * )\n\t      # Prefer using a static library (so that no silly _DYNAMIC symbols\n\t      # are required to link).\n\t      if test -n \"$old_library\"; then\n\t        func_append newdlprefiles \" $dir/$old_library\"\n\t        # Keep a list of preopened convenience libraries to check\n\t        # that they are being used correctly in the link pass.\n\t        test -z \"$libdir\" && \\\n\t          func_append dlpreconveniencelibs \" $dir/$old_library\"\n\t      # Otherwise, use the dlname, so that lt_dlopen finds it.\n\t      elif test -n \"$dlname\"; then\n\t        func_append newdlprefiles \" $dir/$dlname\"\n\t      else\n\t        func_append newdlprefiles \" $dir/$linklib\"\n\t      fi\n\t    ;;\n\t  esac\n\tfi # $pass = dlpreopen\n\n\tif test -z \"$libdir\"; then\n\t  # Link the convenience library\n\t  if test lib = \"$linkmode\"; then\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t  elif test prog,link = \"$linkmode,$pass\"; then\n\t    compile_deplibs=\"$dir/$old_library $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$old_library $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$lib $deplibs\" # used for prog,scan pass\n\t  fi\n\t  continue\n\tfi\n\n\n\tif test prog = \"$linkmode\" && test link != \"$pass\"; then\n\t  func_append newlib_search_path \" $ladir\"\n\t  deplibs=\"$lib $deplibs\"\n\n\t  linkalldeplibs=false\n\t  if test no != \"$link_all_deplibs\" || test -z \"$library_names\" ||\n\t     test no = \"$build_libtool_libs\"; then\n\t    linkalldeplibs=:\n\t  fi\n\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    case $deplib in\n\t    -L*) func_stripname '-L' '' \"$deplib\"\n\t         func_resolve_sysroot \"$func_stripname_result\"\n\t         func_append newlib_search_path \" $func_resolve_sysroot_result\"\n\t\t ;;\n\t    esac\n\t    # Need to link against all dependency_libs?\n\t    if $linkalldeplibs; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      # Need to hardcode shared library paths\n\t      # or/and link against static libraries\n\t      newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) func_append specialdeplibs \" $deplib\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $deplib\"\n\t  done # for deplib\n\t  continue\n\tfi # $linkmode = prog...\n\n\tif test prog,link = \"$linkmode,$pass\"; then\n\t  if test -n \"$library_names\" &&\n\t     { { test no = \"$prefer_static_libs\" ||\n\t         test built,yes = \"$prefer_static_libs,$installed\"; } ||\n\t       test -z \"$old_library\"; }; then\n\t    # We need to hardcode the library path\n\t    if test -n \"$shlibpath_var\" && test -z \"$avoidtemprpath\"; then\n\t      # Make sure the rpath contains only unique directories.\n\t      case $temp_rpath: in\n\t      *\"$absdir:\"*) ;;\n\t      *) func_append temp_rpath \"$absdir:\" ;;\n\t      esac\n\t    fi\n\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) func_append compile_rpath \" $absdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append finalize_rpath \" $libdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t  fi # $linkmode,$pass = prog,link...\n\n\t  if $alldeplibs &&\n\t     { test pass_all = \"$deplibs_check_method\" ||\n\t       { test yes = \"$build_libtool_libs\" &&\n\t\t test -n \"$library_names\"; }; }; then\n\t    # We only need to search for static libraries\n\t    continue\n\t  fi\n\tfi\n\n\tlink_static=no # Whether the deplib will be linked statically\n\tuse_static_libs=$prefer_static_libs\n\tif test built = \"$use_static_libs\" && test yes = \"$installed\"; then\n\t  use_static_libs=no\n\tfi\n\tif test -n \"$library_names\" &&\n\t   { test no = \"$use_static_libs\" || test -z \"$old_library\"; }; then\n\t  case $host in\n\t  *cygwin* | *mingw* | *cegcc* | *os2*)\n\t      # No point in relinking DLLs because paths are not encoded\n\t      func_append notinst_deplibs \" $lib\"\n\t      need_relink=no\n\t    ;;\n\t  *)\n\t    if test no = \"$installed\"; then\n\t      func_append notinst_deplibs \" $lib\"\n\t      need_relink=yes\n\t    fi\n\t    ;;\n\t  esac\n\t  # This is a shared library\n\n\t  # Warn about portability, can't link against -module's on some\n\t  # systems (darwin).  Don't bleat about dlopened modules though!\n\t  dlopenmodule=\n\t  for dlpremoduletest in $dlprefiles; do\n\t    if test \"X$dlpremoduletest\" = \"X$lib\"; then\n\t      dlopenmodule=$dlpremoduletest\n\t      break\n\t    fi\n\t  done\n\t  if test -z \"$dlopenmodule\" && test yes = \"$shouldnotlink\" && test link = \"$pass\"; then\n\t    echo\n\t    if test prog = \"$linkmode\"; then\n\t      $ECHO \"*** Warning: Linking the executable $output against the loadable module\"\n\t    else\n\t      $ECHO \"*** Warning: Linking the shared library $output against the loadable module\"\n\t    fi\n\t    $ECHO \"*** $linklib is not portable!\"\n\t  fi\n\t  if test lib = \"$linkmode\" &&\n\t     test yes = \"$hardcode_into_libs\"; then\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) func_append compile_rpath \" $absdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append finalize_rpath \" $libdir\" ;;\n\t      esac\n\t      ;;\n\t    esac\n\t  fi\n\n\t  if test -n \"$old_archive_from_expsyms_cmds\"; then\n\t    # figure out the soname\n\t    set dummy $library_names\n\t    shift\n\t    realname=$1\n\t    shift\n\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t    # use dlname if we got it. it's perfectly good, no?\n\t    if test -n \"$dlname\"; then\n\t      soname=$dlname\n\t    elif test -n \"$soname_spec\"; then\n\t      # bleh windows\n\t      case $host in\n\t      *cygwin* | mingw* | *cegcc* | *os2*)\n\t        func_arith $current - $age\n\t\tmajor=$func_arith_result\n\t\tversuffix=-$major\n\t\t;;\n\t      esac\n\t      eval soname=\\\"$soname_spec\\\"\n\t    else\n\t      soname=$realname\n\t    fi\n\n\t    # Make a new name for the extract_expsyms_cmds to use\n\t    soroot=$soname\n\t    func_basename \"$soroot\"\n\t    soname=$func_basename_result\n\t    func_stripname 'lib' '.dll' \"$soname\"\n\t    newlib=libimp-$func_stripname_result.a\n\n\t    # If the library has no export list, then create one now\n\t    if test -f \"$output_objdir/$soname-def\"; then :\n\t    else\n\t      func_verbose \"extracting exported symbol list from '$soname'\"\n\t      func_execute_cmds \"$extract_expsyms_cmds\" 'exit $?'\n\t    fi\n\n\t    # Create $newlib\n\t    if test -f \"$output_objdir/$newlib\"; then :; else\n\t      func_verbose \"generating import library for '$soname'\"\n\t      func_execute_cmds \"$old_archive_from_expsyms_cmds\" 'exit $?'\n\t    fi\n\t    # make sure the library variables are pointing to the new library\n\t    dir=$output_objdir\n\t    linklib=$newlib\n\t  fi # test -n \"$old_archive_from_expsyms_cmds\"\n\n\t  if test prog = \"$linkmode\" || test relink != \"$opt_mode\"; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    lib_linked=yes\n\t    case $hardcode_action in\n\t    immediate | unsupported)\n\t      if test no = \"$hardcode_direct\"; then\n\t\tadd=$dir/$linklib\n\t\tcase $host in\n\t\t  *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;;\n\t\t  *-*-sysv4*uw2*) add_dir=-L$dir ;;\n\t\t  *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \\\n\t\t    *-*-unixware7*) add_dir=-L$dir ;;\n\t\t  *-*-darwin* )\n\t\t    # if the lib is a (non-dlopened) module then we cannot\n\t\t    # link against it, someone is ignoring the earlier warnings\n\t\t    if /usr/bin/file -L $add 2> /dev/null |\n\t\t\t $GREP \": [^:]* bundle\" >/dev/null; then\n\t\t      if test \"X$dlopenmodule\" != \"X$lib\"; then\n\t\t\t$ECHO \"*** Warning: lib $linklib is a module, not a shared library\"\n\t\t\tif test -z \"$old_library\"; then\n\t\t\t  echo\n\t\t\t  echo \"*** And there doesn't seem to be a static archive available\"\n\t\t\t  echo \"*** The link will probably fail, sorry\"\n\t\t\telse\n\t\t\t  add=$dir/$old_library\n\t\t\tfi\n\t\t      elif test -n \"$old_library\"; then\n\t\t\tadd=$dir/$old_library\n\t\t      fi\n\t\t    fi\n\t\tesac\n\t      elif test no = \"$hardcode_minus_L\"; then\n\t\tcase $host in\n\t\t*-*-sunos*) add_shlibpath=$dir ;;\n\t\tesac\n\t\tadd_dir=-L$dir\n\t\tadd=-l$name\n\t      elif test no = \"$hardcode_shlibpath_var\"; then\n\t\tadd_shlibpath=$dir\n\t\tadd=-l$name\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    relink)\n\t      if test yes = \"$hardcode_direct\" &&\n\t         test no = \"$hardcode_direct_absolute\"; then\n\t\tadd=$dir/$linklib\n\t      elif test yes = \"$hardcode_minus_L\"; then\n\t\tadd_dir=-L$absdir\n\t\t# Try looking first in the location we're being installed to.\n\t\tif test -n \"$inst_prefix_dir\"; then\n\t\t  case $libdir in\n\t\t    [\\\\/]*)\n\t\t      func_append add_dir \" -L$inst_prefix_dir$libdir\"\n\t\t      ;;\n\t\t  esac\n\t\tfi\n\t\tadd=-l$name\n\t      elif test yes = \"$hardcode_shlibpath_var\"; then\n\t\tadd_shlibpath=$dir\n\t\tadd=-l$name\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    *) lib_linked=no ;;\n\t    esac\n\n\t    if test yes != \"$lib_linked\"; then\n\t      func_fatal_configuration \"unsupported hardcode properties\"\n\t    fi\n\n\t    if test -n \"$add_shlibpath\"; then\n\t      case :$compile_shlibpath: in\n\t      *\":$add_shlibpath:\"*) ;;\n\t      *) func_append compile_shlibpath \"$add_shlibpath:\" ;;\n\t      esac\n\t    fi\n\t    if test prog = \"$linkmode\"; then\n\t      test -n \"$add_dir\" && compile_deplibs=\"$add_dir $compile_deplibs\"\n\t      test -n \"$add\" && compile_deplibs=\"$add $compile_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t      if test yes != \"$hardcode_direct\" &&\n\t\t test yes != \"$hardcode_minus_L\" &&\n\t\t test yes = \"$hardcode_shlibpath_var\"; then\n\t\tcase :$finalize_shlibpath: in\n\t\t*\":$libdir:\"*) ;;\n\t\t*) func_append finalize_shlibpath \"$libdir:\" ;;\n\t\tesac\n\t      fi\n\t    fi\n\t  fi\n\n\t  if test prog = \"$linkmode\" || test relink = \"$opt_mode\"; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    # Finalize command for both is simple: just hardcode it.\n\t    if test yes = \"$hardcode_direct\" &&\n\t       test no = \"$hardcode_direct_absolute\"; then\n\t      add=$libdir/$linklib\n\t    elif test yes = \"$hardcode_minus_L\"; then\n\t      add_dir=-L$libdir\n\t      add=-l$name\n\t    elif test yes = \"$hardcode_shlibpath_var\"; then\n\t      case :$finalize_shlibpath: in\n\t      *\":$libdir:\"*) ;;\n\t      *) func_append finalize_shlibpath \"$libdir:\" ;;\n\t      esac\n\t      add=-l$name\n\t    elif test yes = \"$hardcode_automatic\"; then\n\t      if test -n \"$inst_prefix_dir\" &&\n\t\t test -f \"$inst_prefix_dir$libdir/$linklib\"; then\n\t\tadd=$inst_prefix_dir$libdir/$linklib\n\t      else\n\t\tadd=$libdir/$linklib\n\t      fi\n\t    else\n\t      # We cannot seem to hardcode it, guess we'll fake it.\n\t      add_dir=-L$libdir\n\t      # Try looking first in the location we're being installed to.\n\t      if test -n \"$inst_prefix_dir\"; then\n\t\tcase $libdir in\n\t\t  [\\\\/]*)\n\t\t    func_append add_dir \" -L$inst_prefix_dir$libdir\"\n\t\t    ;;\n\t\tesac\n\t      fi\n\t      add=-l$name\n\t    fi\n\n\t    if test prog = \"$linkmode\"; then\n\t      test -n \"$add_dir\" && finalize_deplibs=\"$add_dir $finalize_deplibs\"\n\t      test -n \"$add\" && finalize_deplibs=\"$add $finalize_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t    fi\n\t  fi\n\telif test prog = \"$linkmode\"; then\n\t  # Here we assume that one of hardcode_direct or hardcode_minus_L\n\t  # is not unsupported.  This is valid on all known static and\n\t  # shared platforms.\n\t  if test unsupported != \"$hardcode_direct\"; then\n\t    test -n \"$old_library\" && linklib=$old_library\n\t    compile_deplibs=\"$dir/$linklib $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$linklib $finalize_deplibs\"\n\t  else\n\t    compile_deplibs=\"-l$name -L$dir $compile_deplibs\"\n\t    finalize_deplibs=\"-l$name -L$dir $finalize_deplibs\"\n\t  fi\n\telif test yes = \"$build_libtool_libs\"; then\n\t  # Not a shared library\n\t  if test pass_all != \"$deplibs_check_method\"; then\n\t    # We're trying link a shared library against a static one\n\t    # but the system doesn't support it.\n\n\t    # Just print a warning and add the library to dependency_libs so\n\t    # that the program can be linked against the static library.\n\t    echo\n\t    $ECHO \"*** Warning: This system cannot link to static lib archive $lib.\"\n\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t    echo \"*** shared version of the library, which you do not appear to have.\"\n\t    if test yes = \"$module\"; then\n\t      echo \"*** But as you try to build a module library, libtool will still create \"\n\t      echo \"*** a static module, that should work as long as the dlopening application\"\n\t      echo \"*** is linked with the -dlopen flag to resolve symbols at runtime.\"\n\t      if test -z \"$global_symbol_pipe\"; then\n\t\techo\n\t\techo \"*** However, this would only work if libtool was able to extract symbol\"\n\t\techo \"*** lists from a program, using 'nm' or equivalent, but libtool could\"\n\t\techo \"*** not find such a program.  So, this module is probably useless.\"\n\t\techo \"*** 'nm' from GNU binutils and a full rebuild may help.\"\n\t      fi\n\t      if test no = \"$build_old_libs\"; then\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  else\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t    link_static=yes\n\t  fi\n\tfi # link shared/static library?\n\n\tif test lib = \"$linkmode\"; then\n\t  if test -n \"$dependency_libs\" &&\n\t     { test yes != \"$hardcode_into_libs\" ||\n\t       test yes = \"$build_old_libs\" ||\n\t       test yes = \"$link_static\"; }; then\n\t    # Extract -R from dependency_libs\n\t    temp_deplibs=\n\t    for libdir in $dependency_libs; do\n\t      case $libdir in\n\t      -R*) func_stripname '-R' '' \"$libdir\"\n\t           temp_xrpath=$func_stripname_result\n\t\t   case \" $xrpath \" in\n\t\t   *\" $temp_xrpath \"*) ;;\n\t\t   *) func_append xrpath \" $temp_xrpath\";;\n\t\t   esac;;\n\t      *) func_append temp_deplibs \" $libdir\";;\n\t      esac\n\t    done\n\t    dependency_libs=$temp_deplibs\n\t  fi\n\n\t  func_append newlib_search_path \" $absdir\"\n\t  # Link against this library\n\t  test no = \"$link_static\" && newdependency_libs=\"$abs_ladir/$laname $newdependency_libs\"\n\t  # ... and its dependency_libs\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    case $deplib in\n              -L*) func_stripname '-L' '' \"$deplib\"\n                   func_resolve_sysroot \"$func_stripname_result\";;\n              *) func_resolve_sysroot \"$deplib\" ;;\n            esac\n\t    if $opt_preserve_dup_deps; then\n\t      case \"$tmp_libs \" in\n\t      *\" $func_resolve_sysroot_result \"*)\n                func_append specialdeplibs \" $func_resolve_sysroot_result\" ;;\n\t      esac\n\t    fi\n\t    func_append tmp_libs \" $func_resolve_sysroot_result\"\n\t  done\n\n\t  if test no != \"$link_all_deplibs\"; then\n\t    # Add the search paths of all dependency libraries\n\t    for deplib in $dependency_libs; do\n\t      path=\n\t      case $deplib in\n\t      -L*) path=$deplib ;;\n\t      *.la)\n\t        func_resolve_sysroot \"$deplib\"\n\t        deplib=$func_resolve_sysroot_result\n\t        func_dirname \"$deplib\" \"\" \".\"\n\t\tdir=$func_dirname_result\n\t\t# We need an absolute path.\n\t\tcase $dir in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) absdir=$dir ;;\n\t\t*)\n\t\t  absdir=`cd \"$dir\" && pwd`\n\t\t  if test -z \"$absdir\"; then\n\t\t    func_warning \"cannot determine absolute directory name of '$dir'\"\n\t\t    absdir=$dir\n\t\t  fi\n\t\t  ;;\n\t\tesac\n\t\tif $GREP \"^installed=no\" $deplib > /dev/null; then\n\t\tcase $host in\n\t\t*-*-darwin*)\n\t\t  depdepl=\n\t\t  eval deplibrary_names=`$SED -n -e 's/^library_names=\\(.*\\)$/\\1/p' $deplib`\n\t\t  if test -n \"$deplibrary_names\"; then\n\t\t    for tmp in $deplibrary_names; do\n\t\t      depdepl=$tmp\n\t\t    done\n\t\t    if test -f \"$absdir/$objdir/$depdepl\"; then\n\t\t      depdepl=$absdir/$objdir/$depdepl\n\t\t      darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`\n                      if test -z \"$darwin_install_name\"; then\n                          darwin_install_name=`$OTOOL64 -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`\n                      fi\n\t\t      func_append compiler_flags \" $wl-dylib_file $wl$darwin_install_name:$depdepl\"\n\t\t      func_append linker_flags \" -dylib_file $darwin_install_name:$depdepl\"\n\t\t      path=\n\t\t    fi\n\t\t  fi\n\t\t  ;;\n\t\t*)\n\t\t  path=-L$absdir/$objdir\n\t\t  ;;\n\t\tesac\n\t\telse\n\t\t  eval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $deplib`\n\t\t  test -z \"$libdir\" && \\\n\t\t    func_fatal_error \"'$deplib' is not a valid libtool archive\"\n\t\t  test \"$absdir\" != \"$libdir\" && \\\n\t\t    func_warning \"'$deplib' seems to be moved\"\n\n\t\t  path=-L$absdir\n\t\tfi\n\t\t;;\n\t      esac\n\t      case \" $deplibs \" in\n\t      *\" $path \"*) ;;\n\t      *) deplibs=\"$path $deplibs\" ;;\n\t      esac\n\t    done\n\t  fi # link_all_deplibs != no\n\tfi # linkmode = lib\n      done # for deplib in $libs\n      if test link = \"$pass\"; then\n\tif test prog = \"$linkmode\"; then\n\t  compile_deplibs=\"$new_inherited_linker_flags $compile_deplibs\"\n\t  finalize_deplibs=\"$new_inherited_linker_flags $finalize_deplibs\"\n\telse\n\t  compiler_flags=\"$compiler_flags \"`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfi\n      fi\n      dependency_libs=$newdependency_libs\n      if test dlpreopen = \"$pass\"; then\n\t# Link the dlpreopened libraries before other libraries\n\tfor deplib in $save_deplibs; do\n\t  deplibs=\"$deplib $deplibs\"\n\tdone\n      fi\n      if test dlopen != \"$pass\"; then\n\ttest conv = \"$pass\" || {\n\t  # Make sure lib_search_path contains only unique directories.\n\t  lib_search_path=\n\t  for dir in $newlib_search_path; do\n\t    case \"$lib_search_path \" in\n\t    *\" $dir \"*) ;;\n\t    *) func_append lib_search_path \" $dir\" ;;\n\t    esac\n\t  done\n\t  newlib_search_path=\n\t}\n\n\tif test prog,link = \"$linkmode,$pass\"; then\n\t  vars=\"compile_deplibs finalize_deplibs\"\n\telse\n\t  vars=deplibs\n\tfi\n\tfor var in $vars dependency_libs; do\n\t  # Add libraries to $var in reverse order\n\t  eval tmp_libs=\\\"\\$$var\\\"\n\t  new_libs=\n\t  for deplib in $tmp_libs; do\n\t    # FIXME: Pedantically, this is the right thing to do, so\n\t    #        that some nasty dependency loop isn't accidentally\n\t    #        broken:\n\t    #new_libs=\"$deplib $new_libs\"\n\t    # Pragmatically, this seems to cause very few problems in\n\t    # practice:\n\t    case $deplib in\n\t    -L*) new_libs=\"$deplib $new_libs\" ;;\n\t    -R*) ;;\n\t    *)\n\t      # And here is the reason: when a library appears more\n\t      # than once as an explicit dependence of a library, or\n\t      # is implicitly linked in more than once by the\n\t      # compiler, it is considered special, and multiple\n\t      # occurrences thereof are not removed.  Compare this\n\t      # with having the same library being listed as a\n\t      # dependency of multiple other libraries: in this case,\n\t      # we know (pedantically, we assume) the library does not\n\t      # need to be listed more than once, so we keep only the\n\t      # last copy.  This is not always right, but it is rare\n\t      # enough that we require users that really mean to play\n\t      # such unportable linking tricks to link the library\n\t      # using -Wl,-lname, so that libtool does not consider it\n\t      # for duplicate removal.\n\t      case \" $specialdeplibs \" in\n\t      *\" $deplib \"*) new_libs=\"$deplib $new_libs\" ;;\n\t      *)\n\t\tcase \" $new_libs \" in\n\t\t*\" $deplib \"*) ;;\n\t\t*) new_libs=\"$deplib $new_libs\" ;;\n\t\tesac\n\t\t;;\n\t      esac\n\t      ;;\n\t    esac\n\t  done\n\t  tmp_libs=\n\t  for deplib in $new_libs; do\n\t    case $deplib in\n\t    -L*)\n\t      case \" $tmp_libs \" in\n\t      *\" $deplib \"*) ;;\n\t      *) func_append tmp_libs \" $deplib\" ;;\n\t      esac\n\t      ;;\n\t    *) func_append tmp_libs \" $deplib\" ;;\n\t    esac\n\t  done\n\t  eval $var=\\\"$tmp_libs\\\"\n\tdone # for var\n      fi\n\n      # Add Sun CC postdeps if required:\n      test CXX = \"$tagname\" && {\n        case $host_os in\n        linux*)\n          case `$CC -V 2>&1 | sed 5q` in\n          *Sun\\ C*) # Sun C++ 5.9\n            func_suncc_cstd_abi\n\n            if test no != \"$suncc_use_cstd_abi\"; then\n              func_append postdeps ' -library=Cstd -library=Crun'\n            fi\n            ;;\n          esac\n          ;;\n\n        solaris*)\n          func_cc_basename \"$CC\"\n          case $func_cc_basename_result in\n          CC* | sunCC*)\n            func_suncc_cstd_abi\n\n            if test no != \"$suncc_use_cstd_abi\"; then\n              func_append postdeps ' -library=Cstd -library=Crun'\n            fi\n            ;;\n          esac\n          ;;\n        esac\n      }\n\n      # Last step: remove runtime libs from dependency_libs\n      # (they stay in deplibs)\n      tmp_libs=\n      for i in $dependency_libs; do\n\tcase \" $predeps $postdeps $compiler_lib_search_path \" in\n\t*\" $i \"*)\n\t  i=\n\t  ;;\n\tesac\n\tif test -n \"$i\"; then\n\t  func_append tmp_libs \" $i\"\n\tfi\n      done\n      dependency_libs=$tmp_libs\n    done # for pass\n    if test prog = \"$linkmode\"; then\n      dlfiles=$newdlfiles\n    fi\n    if test prog = \"$linkmode\" || test lib = \"$linkmode\"; then\n      dlprefiles=$newdlprefiles\n    fi\n\n    case $linkmode in\n    oldlib)\n      if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n\tfunc_warning \"'-dlopen' is ignored for archives\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"'-l' and '-L' are ignored for archives\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"'-rpath' is ignored for archives\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"'-R' is ignored for archives\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info/-version-number' is ignored for archives\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for archives\"\n\n      test -n \"$export_symbols$export_symbols_regex\" && \\\n\tfunc_warning \"'-export-symbols' is ignored for archives\"\n\n      # Now set the variables for building old libraries.\n      build_libtool_libs=no\n      oldlibs=$output\n      func_append objs \"$old_deplibs\"\n      ;;\n\n    lib)\n      # Make sure we only generate libraries of the form 'libNAME.la'.\n      case $outputname in\n      lib*)\n\tfunc_stripname 'lib' '.la' \"$outputname\"\n\tname=$func_stripname_result\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval libname=\\\"$libname_spec\\\"\n\t;;\n      *)\n\ttest no = \"$module\" \\\n\t  && func_fatal_help \"libtool library '$output' must begin with 'lib'\"\n\n\tif test no != \"$need_lib_prefix\"; then\n\t  # Add the \"lib\" prefix for modules if required\n\t  func_stripname '' '.la' \"$outputname\"\n\t  name=$func_stripname_result\n\t  eval shared_ext=\\\"$shrext_cmds\\\"\n\t  eval libname=\\\"$libname_spec\\\"\n\telse\n\t  func_stripname '' '.la' \"$outputname\"\n\t  libname=$func_stripname_result\n\tfi\n\t;;\n      esac\n\n      if test -n \"$objs\"; then\n\tif test pass_all != \"$deplibs_check_method\"; then\n\t  func_fatal_error \"cannot build libtool library '$output' from non-libtool objects on this host:$objs\"\n\telse\n\t  echo\n\t  $ECHO \"*** Warning: Linking the shared library $output against the non-libtool\"\n\t  $ECHO \"*** objects $objs is not portable!\"\n\t  func_append libobjs \" $objs\"\n\tfi\n      fi\n\n      test no = \"$dlself\" \\\n\t|| func_warning \"'-dlopen self' is ignored for libtool libraries\"\n\n      set dummy $rpath\n      shift\n      test 1 -lt \"$#\" \\\n\t&& func_warning \"ignoring multiple '-rpath's for a libtool library\"\n\n      install_libdir=$1\n\n      oldlibs=\n      if test -z \"$rpath\"; then\n\tif test yes = \"$build_libtool_libs\"; then\n\t  # Building a libtool convenience library.\n\t  # Some compilers have problems with a '.al' extension so\n\t  # convenience libraries should have the same extension an\n\t  # archive normally would.\n\t  oldlibs=\"$output_objdir/$libname.$libext $oldlibs\"\n\t  build_libtool_libs=convenience\n\t  build_old_libs=yes\n\tfi\n\n\ttest -n \"$vinfo\" && \\\n\t  func_warning \"'-version-info/-version-number' is ignored for convenience libraries\"\n\n\ttest -n \"$release\" && \\\n\t  func_warning \"'-release' is ignored for convenience libraries\"\n      else\n\n\t# Parse the version information argument.\n\tsave_ifs=$IFS; IFS=:\n\tset dummy $vinfo 0 0 0\n\tshift\n\tIFS=$save_ifs\n\n\ttest -n \"$7\" && \\\n\t  func_fatal_help \"too many parameters to '-version-info'\"\n\n\t# convert absolute version numbers to libtool ages\n\t# this retains compatibility with .la files and attempts\n\t# to make the code below a bit more comprehensible\n\n\tcase $vinfo_number in\n\tyes)\n\t  number_major=$1\n\t  number_minor=$2\n\t  number_revision=$3\n\t  #\n\t  # There are really only two kinds -- those that\n\t  # use the current revision as the major version\n\t  # and those that subtract age and use age as\n\t  # a minor version.  But, then there is irix\n\t  # that has an extra 1 added just for fun\n\t  #\n\t  case $version_type in\n\t  # correct linux to gnu/linux during the next big refactor\n\t  darwin|freebsd-elf|linux|osf|windows|none)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=$number_minor\n\t    revision=$number_revision\n\t    ;;\n\t  freebsd-aout|qnx|sunos)\n\t    current=$number_major\n\t    revision=$number_minor\n\t    age=0\n\t    ;;\n\t  irix|nonstopux)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=$number_minor\n\t    revision=$number_minor\n\t    lt_irix_increment=no\n\t    ;;\n\t  esac\n\t  ;;\n\tno)\n\t  current=$1\n\t  revision=$2\n\t  age=$3\n\t  ;;\n\tesac\n\n\t# Check that each of the things are valid numbers.\n\tcase $current in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"CURRENT '$current' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $revision in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"REVISION '$revision' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $age in\n\t0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;\n\t*)\n\t  func_error \"AGE '$age' must be a nonnegative integer\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tif test \"$age\" -gt \"$current\"; then\n\t  func_error \"AGE '$age' is greater than the current interface number '$current'\"\n\t  func_fatal_error \"'$vinfo' is not valid version information\"\n\tfi\n\n\t# Calculate the version variables.\n\tmajor=\n\tversuffix=\n\tverstring=\n\tcase $version_type in\n\tnone) ;;\n\n\tdarwin)\n\t  # Like Linux, but with the current version available in\n\t  # verstring for coding it into the library header\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  # Darwin ld doesn't like 0 for these options...\n\t  func_arith $current + 1\n\t  minor_current=$func_arith_result\n\t  xlcverstring=\"$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision\"\n\t  verstring=\"-compatibility_version $minor_current -current_version $minor_current.$revision\"\n          # On Darwin other compilers\n          case $CC in\n              nagfor*)\n                  verstring=\"$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision\"\n                  ;;\n              *)\n                  verstring=\"-compatibility_version $minor_current -current_version $minor_current.$revision\"\n                  ;;\n          esac\n\t  ;;\n\n\tfreebsd-aout)\n\t  major=.$current\n\t  versuffix=.$current.$revision\n\t  ;;\n\n\tfreebsd-elf)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  ;;\n\n\tirix | nonstopux)\n\t  if test no = \"$lt_irix_increment\"; then\n\t    func_arith $current - $age\n\t  else\n\t    func_arith $current - $age + 1\n\t  fi\n\t  major=$func_arith_result\n\n\t  case $version_type in\n\t    nonstopux) verstring_prefix=nonstopux ;;\n\t    *)         verstring_prefix=sgi ;;\n\t  esac\n\t  verstring=$verstring_prefix$major.$revision\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$revision\n\t  while test 0 -ne \"$loop\"; do\n\t    func_arith $revision - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=$verstring_prefix$major.$iface:$verstring\n\t  done\n\n\t  # Before this point, $major must not contain '.'.\n\t  major=.$major\n\t  versuffix=$major.$revision\n\t  ;;\n\n\tlinux) # correct to gnu/linux during the next big refactor\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=$major.$age.$revision\n\t  ;;\n\n\tosf)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=.$current.$age.$revision\n\t  verstring=$current.$age.$revision\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$age\n\t  while test 0 -ne \"$loop\"; do\n\t    func_arith $current - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=$verstring:$iface.0\n\t  done\n\n\t  # Make executables depend on our current version.\n\t  func_append verstring \":$current.0\"\n\t  ;;\n\n\tqnx)\n\t  major=.$current\n\t  versuffix=.$current\n\t  ;;\n\n\tsco)\n\t  major=.$current\n\t  versuffix=.$current\n\t  ;;\n\n\tsunos)\n\t  major=.$current\n\t  versuffix=.$current.$revision\n\t  ;;\n\n\twindows)\n\t  # Use '-' rather than '.', since we only want one\n\t  # extension on DOS 8.3 file systems.\n\t  func_arith $current - $age\n\t  major=$func_arith_result\n\t  versuffix=-$major\n\t  ;;\n\n\t*)\n\t  func_fatal_configuration \"unknown library version type '$version_type'\"\n\t  ;;\n\tesac\n\n\t# Clear the version info if we defaulted, and they specified a release.\n\tif test -z \"$vinfo\" && test -n \"$release\"; then\n\t  major=\n\t  case $version_type in\n\t  darwin)\n\t    # we can't check for \"0.0\" in archive_cmds due to quoting\n\t    # problems, so we reset it completely\n\t    verstring=\n\t    ;;\n\t  *)\n\t    verstring=0.0\n\t    ;;\n\t  esac\n\t  if test no = \"$need_version\"; then\n\t    versuffix=\n\t  else\n\t    versuffix=.0.0\n\t  fi\n\tfi\n\n\t# Remove version info from name if versioning should be avoided\n\tif test yes,no = \"$avoid_version,$need_version\"; then\n\t  major=\n\t  versuffix=\n\t  verstring=\n\tfi\n\n\t# Check to see if the archive will have undefined symbols.\n\tif test yes = \"$allow_undefined\"; then\n\t  if test unsupported = \"$allow_undefined_flag\"; then\n\t    if test yes = \"$build_old_libs\"; then\n\t      func_warning \"undefined symbols not allowed in $host shared libraries; building static only\"\n\t      build_libtool_libs=no\n\t    else\n\t      func_fatal_error \"can't build $host shared library unless -no-undefined is specified\"\n\t    fi\n\t  fi\n\telse\n\t  # Don't allow undefined symbols.\n\t  allow_undefined_flag=$no_undefined_flag\n\tfi\n\n      fi\n\n      func_generate_dlsyms \"$libname\" \"$libname\" :\n      func_append libobjs \" $symfileobj\"\n      test \" \" = \"$libobjs\" && libobjs=\n\n      if test relink != \"$opt_mode\"; then\n\t# Remove our outputs, but don't remove object files since they\n\t# may have been created when compiling PIC objects.\n\tremovelist=\n\ttempremovelist=`$ECHO \"$output_objdir/*\"`\n\tfor p in $tempremovelist; do\n\t  case $p in\n\t    *.$objext | *.gcno)\n\t       ;;\n\t    $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*)\n\t       if test -n \"$precious_files_regex\"; then\n\t\t if $ECHO \"$p\" | $EGREP -e \"$precious_files_regex\" >/dev/null 2>&1\n\t\t then\n\t\t   continue\n\t\t fi\n\t       fi\n\t       func_append removelist \" $p\"\n\t       ;;\n\t    *) ;;\n\t  esac\n\tdone\n\ttest -n \"$removelist\" && \\\n\t  func_show_eval \"${RM}r \\$removelist\"\n      fi\n\n      # Now set the variables for building old libraries.\n      if test yes = \"$build_old_libs\" && test convenience != \"$build_libtool_libs\"; then\n\tfunc_append oldlibs \" $output_objdir/$libname.$libext\"\n\n\t# Transform .lo files to .o files.\n\toldobjs=\"$objs \"`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.$libext$/d; $lo2o\" | $NL2SP`\n      fi\n\n      # Eliminate all temporary directories.\n      #for path in $notinst_path; do\n      #\tlib_search_path=`$ECHO \"$lib_search_path \" | $SED \"s% $path % %g\"`\n      #\tdeplibs=`$ECHO \"$deplibs \" | $SED \"s% -L$path % %g\"`\n      #\tdependency_libs=`$ECHO \"$dependency_libs \" | $SED \"s% -L$path % %g\"`\n      #done\n\n      if test -n \"$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\ttemp_xrpath=\n\tfor libdir in $xrpath; do\n\t  func_replace_sysroot \"$libdir\"\n\t  func_append temp_xrpath \" -R$func_replace_sysroot_result\"\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_rpath \" $libdir\" ;;\n\t  esac\n\tdone\n\tif test yes != \"$hardcode_into_libs\" || test yes = \"$build_old_libs\"; then\n\t  dependency_libs=\"$temp_xrpath $dependency_libs\"\n\tfi\n      fi\n\n      # Make sure dlfiles contains only unique files that won't be dlpreopened\n      old_dlfiles=$dlfiles\n      dlfiles=\n      for lib in $old_dlfiles; do\n\tcase \" $dlprefiles $dlfiles \" in\n\t*\" $lib \"*) ;;\n\t*) func_append dlfiles \" $lib\" ;;\n\tesac\n      done\n\n      # Make sure dlprefiles contains only unique files\n      old_dlprefiles=$dlprefiles\n      dlprefiles=\n      for lib in $old_dlprefiles; do\n\tcase \"$dlprefiles \" in\n\t*\" $lib \"*) ;;\n\t*) func_append dlprefiles \" $lib\" ;;\n\tesac\n      done\n\n      if test yes = \"$build_libtool_libs\"; then\n\tif test -n \"$rpath\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # these systems don't actually have a c library (as such)!\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C library is in the System framework\n\t    func_append deplibs \" System.ltframework\"\n\t    ;;\n\t  *-*-netbsd*)\n\t    # Don't link with libc until the a.out ld.so is fixed.\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    ;;\n\t  *)\n\t    # Add libc to deplibs on all other systems if necessary.\n\t    if test yes = \"$build_libtool_need_lc\"; then\n\t      func_append deplibs \" -lc\"\n\t    fi\n\t    ;;\n\t  esac\n\tfi\n\n\t# Transform deplibs into only deplibs that can be linked in shared.\n\tname_save=$name\n\tlibname_save=$libname\n\trelease_save=$release\n\tversuffix_save=$versuffix\n\tmajor_save=$major\n\t# I'm not sure if I'm treating the release correctly.  I think\n\t# release should show up in the -l (ie -lgmp5) so we don't want to\n\t# add it in twice.  Is that correct?\n\trelease=\n\tversuffix=\n\tmajor=\n\tnewdeplibs=\n\tdroppeddeps=no\n\tcase $deplibs_check_method in\n\tpass_all)\n\t  # Don't check for shared/static.  Everything works.\n\t  # This might be a little naive.  We might want to check\n\t  # whether the library exists or not.  But this is on\n\t  # osf3 & osf4 and I'm not really sure... Just\n\t  # implementing what was already the behavior.\n\t  newdeplibs=$deplibs\n\t  ;;\n\ttest_compile)\n\t  # This code stresses the \"libraries are programs\" paradigm to its\n\t  # limits. Maybe even breaks it.  We compile a program, linking it\n\t  # against the deplibs as a proxy for the library.  Then we can check\n\t  # whether they linked in statically or dynamically with ldd.\n\t  $opt_dry_run || $RM conftest.c\n\t  cat > conftest.c <<EOF\n\t  int main() { return 0; }\nEOF\n\t  $opt_dry_run || $RM conftest\n\t  if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then\n\t    ldd_output=`ldd conftest`\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\tif test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\t  case \" $predeps $postdeps \" in\n\t\t  *\" $i \"*)\n\t\t    func_append newdeplibs \" $i\"\n\t\t    i=\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t\tif test -n \"$i\"; then\n\t\t  libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t  deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t  set dummy $deplib_matches; shift\n\t\t  deplib_match=$1\n\t\t  if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0; then\n\t\t    func_append newdeplibs \" $i\"\n\t\t  else\n\t\t    droppeddeps=yes\n\t\t    echo\n\t\t    $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t    echo \"*** shared version of the library, which I believe you do not have\"\n\t\t    echo \"*** because a test_compile did reveal that the linker did not use it for\"\n\t\t    echo \"*** its dynamic dependency list that programs get resolved with at runtime.\"\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *)\n\t\tfunc_append newdeplibs \" $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  else\n\t    # Error occurred in the first compile.  Let's try to salvage\n\t    # the situation: Compile a separate program for each library.\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\t$opt_dry_run || $RM conftest\n\t\tif $LTCC $LTCFLAGS -o conftest conftest.c $i; then\n\t\t  ldd_output=`ldd conftest`\n\t\t  if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\t    case \" $predeps $postdeps \" in\n\t\t    *\" $i \"*)\n\t\t      func_append newdeplibs \" $i\"\n\t\t      i=\n\t\t      ;;\n\t\t    esac\n\t\t  fi\n\t\t  if test -n \"$i\"; then\n\t\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t    deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t    set dummy $deplib_matches; shift\n\t\t    deplib_match=$1\n\t\t    if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0; then\n\t\t      func_append newdeplibs \" $i\"\n\t\t    else\n\t\t      droppeddeps=yes\n\t\t      echo\n\t\t      $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t      echo \"*** I have the capability to make that library automatically link in when\"\n\t\t      echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t      echo \"*** shared version of the library, which you do not appear to have\"\n\t\t      echo \"*** because a test_compile did reveal that the linker did not use this one\"\n\t\t      echo \"*** as a dynamic dependency that programs can get resolved with at runtime.\"\n\t\t    fi\n\t\t  fi\n\t\telse\n\t\t  droppeddeps=yes\n\t\t  echo\n\t\t  $ECHO \"*** Warning!  Library $i is needed by this library but I was not able to\"\n\t\t  echo \"*** make it link in!  You will probably need to install it or some\"\n\t\t  echo \"*** library that it depends on before this library will be fully\"\n\t\t  echo \"*** functional.  Installing it before continuing would be even better.\"\n\t\tfi\n\t\t;;\n\t      *)\n\t\tfunc_append newdeplibs \" $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  fi\n\t  ;;\n\tfile_magic*)\n\t  set dummy $deplibs_check_method; shift\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  func_append newdeplibs \" $a_deplib\"\n\t\t  a_deplib=\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tif test -n \"$file_magic_glob\"; then\n\t\t  libnameglob=`func_echo_all \"$libname\" | $SED -e $file_magic_glob`\n\t\telse\n\t\t  libnameglob=$libname\n\t\tfi\n\t\ttest yes = \"$want_nocaseglob\" && nocaseglob=`shopt -p nocaseglob`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  if test yes = \"$want_nocaseglob\"; then\n\t\t    shopt -s nocaseglob\n\t\t    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`\n\t\t    $nocaseglob\n\t\t  else\n\t\t    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`\n\t\t  fi\n\t\t  for potent_lib in $potential_libs; do\n\t\t      # Follow soft links.\n\t\t      if ls -lLd \"$potent_lib\" 2>/dev/null |\n\t\t\t $GREP \" -> \" >/dev/null; then\n\t\t\tcontinue\n\t\t      fi\n\t\t      # The statement above tries to avoid entering an\n\t\t      # endless loop below, in case of cyclic links.\n\t\t      # We might still enter an endless loop, since a link\n\t\t      # loop can be closed while we follow links,\n\t\t      # but so what?\n\t\t      potlib=$potent_lib\n\t\t      while test -h \"$potlib\" 2>/dev/null; do\n\t\t\tpotliblink=`ls -ld $potlib | $SED 's/.* -> //'`\n\t\t\tcase $potliblink in\n\t\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) potlib=$potliblink;;\n\t\t\t*) potlib=`$ECHO \"$potlib\" | $SED 's|[^/]*$||'`\"$potliblink\";;\n\t\t\tesac\n\t\t      done\n\t\t      if eval $file_magic_cmd \\\"\\$potlib\\\" 2>/dev/null |\n\t\t\t $SED -e 10q |\n\t\t\t $EGREP \"$file_magic_regex\" > /dev/null; then\n\t\t\tfunc_append newdeplibs \" $a_deplib\"\n\t\t\ta_deplib=\n\t\t\tbreak 2\n\t\t      fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\"; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for file magic test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a file magic. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      func_append newdeplibs \" $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tmatch_pattern*)\n\t  set dummy $deplibs_check_method; shift\n\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  func_append newdeplibs \" $a_deplib\"\n\t\t  a_deplib=\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`\n\t\t  for potent_lib in $potential_libs; do\n\t\t    potlib=$potent_lib # see symlink-check above in file_magic test\n\t\t    if eval \"\\$ECHO \\\"$potent_lib\\\"\" 2>/dev/null | $SED 10q | \\\n\t\t       $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t      func_append newdeplibs \" $a_deplib\"\n\t\t      a_deplib=\n\t\t      break 2\n\t\t    fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\"; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\"; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for regex pattern test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a regex pattern. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      func_append newdeplibs \" $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tnone | unknown | *)\n\t  newdeplibs=\n\t  tmp_deplibs=`$ECHO \" $deplibs\" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`\n\t  if test yes = \"$allow_libtool_libs_with_static_runtimes\"; then\n\t    for i in $predeps $postdeps; do\n\t      # can't use Xsed below, because $i might contain '/'\n\t      tmp_deplibs=`$ECHO \" $tmp_deplibs\" | $SED \"s|$i||\"`\n\t    done\n\t  fi\n\t  case $tmp_deplibs in\n\t  *[!\\\t\\ ]*)\n\t    echo\n\t    if test none = \"$deplibs_check_method\"; then\n\t      echo \"*** Warning: inter-library dependencies are not supported in this platform.\"\n\t    else\n\t      echo \"*** Warning: inter-library dependencies are not known to be supported.\"\n\t    fi\n\t    echo \"*** All declared inter-library dependencies are being dropped.\"\n\t    droppeddeps=yes\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tversuffix=$versuffix_save\n\tmajor=$major_save\n\trelease=$release_save\n\tlibname=$libname_save\n\tname=$name_save\n\n\tcase $host in\n\t*-*-rhapsody* | *-*-darwin1.[012])\n\t  # On Rhapsody replace the C library with the System framework\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t  ;;\n\tesac\n\n\tif test yes = \"$droppeddeps\"; then\n\t  if test yes = \"$module\"; then\n\t    echo\n\t    echo \"*** Warning: libtool could not satisfy all declared inter-library\"\n\t    $ECHO \"*** dependencies of module $libname.  Therefore, libtool will create\"\n\t    echo \"*** a static module, that should work as long as the dlopening\"\n\t    echo \"*** application is linked with the -dlopen flag.\"\n\t    if test -z \"$global_symbol_pipe\"; then\n\t      echo\n\t      echo \"*** However, this would only work if libtool was able to extract symbol\"\n\t      echo \"*** lists from a program, using 'nm' or equivalent, but libtool could\"\n\t      echo \"*** not find such a program.  So, this module is probably useless.\"\n\t      echo \"*** 'nm' from GNU binutils and a full rebuild may help.\"\n\t    fi\n\t    if test no = \"$build_old_libs\"; then\n\t      oldlibs=$output_objdir/$libname.$libext\n\t      build_libtool_libs=module\n\t      build_old_libs=yes\n\t    else\n\t      build_libtool_libs=no\n\t    fi\n\t  else\n\t    echo \"*** The inter-library dependencies that have been dropped here will be\"\n\t    echo \"*** automatically added whenever a program is linked with this library\"\n\t    echo \"*** or is declared to -dlopen it.\"\n\n\t    if test no = \"$allow_undefined\"; then\n\t      echo\n\t      echo \"*** Since this library must not contain undefined symbols,\"\n\t      echo \"*** because either the platform does not support them or\"\n\t      echo \"*** it was explicitly requested with -no-undefined,\"\n\t      echo \"*** libtool will only create a static version of it.\"\n\t      if test no = \"$build_old_libs\"; then\n\t\toldlibs=$output_objdir/$libname.$libext\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  fi\n\tfi\n\t# Done checking deplibs!\n\tdeplibs=$newdeplibs\n      fi\n      # Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n      case $host in\n\t*-*-darwin*)\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  new_inherited_linker_flags=`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  deplibs=`$ECHO \" $deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  ;;\n      esac\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    func_append new_libs \" -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) func_append new_libs \" $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) func_append new_libs \" $deplib\" ;;\n\tesac\n      done\n      deplibs=$new_libs\n\n      # All the library-specific variables (install_libdir is set above).\n      library_names=\n      old_library=\n      dlname=\n\n      # Test again, we may have decided not to build it any more\n      if test yes = \"$build_libtool_libs\"; then\n\t# Remove $wl instances when linking with ld.\n\t# FIXME: should test the right _cmds variable.\n\tcase $archive_cmds in\n\t  *\\$LD\\ *) wl= ;;\n        esac\n\tif test yes = \"$hardcode_into_libs\"; then\n\t  # Hardcode the library paths\n\t  hardcode_libdirs=\n\t  dep_rpath=\n\t  rpath=$finalize_rpath\n\t  test relink = \"$opt_mode\" || rpath=$compile_rpath$rpath\n\t  for libdir in $rpath; do\n\t    if test -n \"$hardcode_libdir_flag_spec\"; then\n\t      if test -n \"$hardcode_libdir_separator\"; then\n\t\tfunc_replace_sysroot \"$libdir\"\n\t\tlibdir=$func_replace_sysroot_result\n\t\tif test -z \"$hardcode_libdirs\"; then\n\t\t  hardcode_libdirs=$libdir\n\t\telse\n\t\t  # Just accumulate the unique libdirs.\n\t\t  case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t\t  *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t    ;;\n\t\t  *)\n\t\t    func_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t      else\n\t\teval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t\tfunc_append dep_rpath \" $flag\"\n\t      fi\n\t    elif test -n \"$runpath_var\"; then\n\t      case \"$perm_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) func_append perm_rpath \" $libdir\" ;;\n\t      esac\n\t    fi\n\t  done\n\t  # Substitute the hardcoded libdirs into the rpath.\n\t  if test -n \"$hardcode_libdir_separator\" &&\n\t     test -n \"$hardcode_libdirs\"; then\n\t    libdir=$hardcode_libdirs\n\t    eval \"dep_rpath=\\\"$hardcode_libdir_flag_spec\\\"\"\n\t  fi\n\t  if test -n \"$runpath_var\" && test -n \"$perm_rpath\"; then\n\t    # We should set the runpath_var.\n\t    rpath=\n\t    for dir in $perm_rpath; do\n\t      func_append rpath \"$dir:\"\n\t    done\n\t    eval \"$runpath_var='$rpath\\$$runpath_var'; export $runpath_var\"\n\t  fi\n\t  test -n \"$dep_rpath\" && deplibs=\"$dep_rpath $deplibs\"\n\tfi\n\n\tshlibpath=$finalize_shlibpath\n\ttest relink = \"$opt_mode\" || shlibpath=$compile_shlibpath$shlibpath\n\tif test -n \"$shlibpath\"; then\n\t  eval \"$shlibpath_var='$shlibpath\\$$shlibpath_var'; export $shlibpath_var\"\n\tfi\n\n\t# Get the real and link names of the library.\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval library_names=\\\"$library_names_spec\\\"\n\tset dummy $library_names\n\tshift\n\trealname=$1\n\tshift\n\n\tif test -n \"$soname_spec\"; then\n\t  eval soname=\\\"$soname_spec\\\"\n\telse\n\t  soname=$realname\n\tfi\n\tif test -z \"$dlname\"; then\n\t  dlname=$soname\n\tfi\n\n\tlib=$output_objdir/$realname\n\tlinknames=\n\tfor link\n\tdo\n\t  func_append linknames \" $link\"\n\tdone\n\n\t# Use standard objects if they are pic\n\ttest -z \"$pic_flag\" && libobjs=`$ECHO \"$libobjs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\ttest \"X$libobjs\" = \"X \" && libobjs=\n\n\tdelfiles=\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  $opt_dry_run || cp \"$export_symbols\" \"$output_objdir/$libname.uexp\"\n\t  export_symbols=$output_objdir/$libname.uexp\n\t  func_append delfiles \" $export_symbols\"\n\tfi\n\n\torig_export_symbols=\n\tcase $host_os in\n\tcygwin* | mingw* | cegcc*)\n\t  if test -n \"$export_symbols\" && test -z \"$export_symbols_regex\"; then\n\t    # exporting using user supplied symfile\n\t    func_dll_def_p \"$export_symbols\" || {\n\t      # and it's NOT already a .def file. Must figure out\n\t      # which of the given symbols are data symbols and tag\n\t      # them as such. So, trigger use of export_symbols_cmds.\n\t      # export_symbols gets reassigned inside the \"prepare\n\t      # the list of exported symbols\" if statement, so the\n\t      # include_expsyms logic still works.\n\t      orig_export_symbols=$export_symbols\n\t      export_symbols=\n\t      always_export_symbols=yes\n\t    }\n\t  fi\n\t  ;;\n\tesac\n\n\t# Prepare the list of exported symbols\n\tif test -z \"$export_symbols\"; then\n\t  if test yes = \"$always_export_symbols\" || test -n \"$export_symbols_regex\"; then\n\t    func_verbose \"generating symbol list for '$libname.la'\"\n\t    export_symbols=$output_objdir/$libname.exp\n\t    $opt_dry_run || $RM $export_symbols\n\t    cmds=$export_symbols_cmds\n\t    save_ifs=$IFS; IFS='~'\n\t    for cmd1 in $cmds; do\n\t      IFS=$save_ifs\n\t      # Take the normal branch if the nm_file_list_spec branch\n\t      # doesn't work or if tool conversion is not needed.\n\t      case $nm_file_list_spec~$to_tool_file_cmd in\n\t\t*~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*)\n\t\t  try_normal_branch=yes\n\t\t  eval cmd=\\\"$cmd1\\\"\n\t\t  func_len \" $cmd\"\n\t\t  len=$func_len_result\n\t\t  ;;\n\t\t*)\n\t\t  try_normal_branch=no\n\t\t  ;;\n\t      esac\n\t      if test yes = \"$try_normal_branch\" \\\n\t\t && { test \"$len\" -lt \"$max_cmd_len\" \\\n\t\t      || test \"$max_cmd_len\" -le -1; }\n\t      then\n\t\tfunc_show_eval \"$cmd\" 'exit $?'\n\t\tskipped_export=false\n\t      elif test -n \"$nm_file_list_spec\"; then\n\t\tfunc_basename \"$output\"\n\t\toutput_la=$func_basename_result\n\t\tsave_libobjs=$libobjs\n\t\tsave_output=$output\n\t\toutput=$output_objdir/$output_la.nm\n\t\tfunc_to_tool_file \"$output\"\n\t\tlibobjs=$nm_file_list_spec$func_to_tool_file_result\n\t\tfunc_append delfiles \" $output\"\n\t\tfunc_verbose \"creating $NM input file list: $output\"\n\t\tfor obj in $save_libobjs; do\n\t\t  func_to_tool_file \"$obj\"\n\t\t  $ECHO \"$func_to_tool_file_result\"\n\t\tdone > \"$output\"\n\t\teval cmd=\\\"$cmd1\\\"\n\t\tfunc_show_eval \"$cmd\" 'exit $?'\n\t\toutput=$save_output\n\t\tlibobjs=$save_libobjs\n\t\tskipped_export=false\n\t      else\n\t\t# The command line is too long to execute in one step.\n\t\tfunc_verbose \"using reloadable object file for export list...\"\n\t\tskipped_export=:\n\t\t# Break out early, otherwise skipped_export may be\n\t\t# set to false by a later but shorter cmd.\n\t\tbreak\n\t      fi\n\t    done\n\t    IFS=$save_ifs\n\t    if test -n \"$export_symbols_regex\" && test : != \"$skipped_export\"; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  tmp_export_symbols=$export_symbols\n\t  test -n \"$orig_export_symbols\" && tmp_export_symbols=$orig_export_symbols\n\t  $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\tfi\n\n\tif test : != \"$skipped_export\" && test -n \"$orig_export_symbols\"; then\n\t  # The given exports_symbols file has to be filtered, so filter it.\n\t  func_verbose \"filter symbol list for '$libname.la' to tag DATA exports\"\n\t  # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t  # 's' commands, which not all seds can handle. GNU sed should be fine\n\t  # though. Also, the filter scales superlinearly with the number of\n\t  # global variables. join(1) would be nice here, but unfortunately\n\t  # isn't a blessed tool.\n\t  $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t  func_append delfiles \" $export_symbols $output_objdir/$libname.filter\"\n\t  export_symbols=$output_objdir/$libname.def\n\t  $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\tfi\n\n\ttmp_deplibs=\n\tfor test_deplib in $deplibs; do\n\t  case \" $convenience \" in\n\t  *\" $test_deplib \"*) ;;\n\t  *)\n\t    func_append tmp_deplibs \" $test_deplib\"\n\t    ;;\n\t  esac\n\tdone\n\tdeplibs=$tmp_deplibs\n\n\tif test -n \"$convenience\"; then\n\t  if test -n \"$whole_archive_flag_spec\" &&\n\t    test yes = \"$compiler_needs_object\" &&\n\t    test -z \"$libobjs\"; then\n\t    # extract the archives, so we have objects to list.\n\t    # TODO: could optimize this to just extract one archive.\n\t    whole_archive_flag_spec=\n\t  fi\n\t  if test -n \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  else\n\t    gentop=$output_objdir/${outputname}x\n\t    func_append generated \" $gentop\"\n\n\t    func_extract_archives $gentop $convenience\n\t    func_append libobjs \" $func_extract_archives_result\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\tfi\n\n\tif test yes = \"$thread_safe\" && test -n \"$thread_safe_flag_spec\"; then\n\t  eval flag=\\\"$thread_safe_flag_spec\\\"\n\t  func_append linker_flags \" $flag\"\n\tfi\n\n\t# Make a backup of the uninstalled library when relinking\n\tif test relink = \"$opt_mode\"; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?\n\tfi\n\n\t# Do each of the archive commands.\n\tif test yes = \"$module\" && test -n \"$module_cmds\"; then\n\t  if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$module_expsym_cmds\\\"\n\t    cmds=$module_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$module_cmds\\\"\n\t    cmds=$module_cmds\n\t  fi\n\telse\n\t  if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$archive_expsym_cmds\\\"\n\t    cmds=$archive_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$archive_cmds\\\"\n\t    cmds=$archive_cmds\n\t  fi\n\tfi\n\n\tif test : != \"$skipped_export\" &&\n\t   func_len \" $test_cmds\" &&\n\t   len=$func_len_result &&\n\t   test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  :\n\telse\n\t  # The command line is too long to link in one step, link piecewise\n\t  # or, if using GNU ld and skipped_export is not :, use a linker\n\t  # script.\n\n\t  # Save the value of $output and $libobjs because we want to\n\t  # use them later.  If we have whole_archive_flag_spec, we\n\t  # want to use save_libobjs as it was before\n\t  # whole_archive_flag_spec was expanded, because we can't\n\t  # assume the linker understands whole_archive_flag_spec.\n\t  # This may have to be revisited, in case too many\n\t  # convenience libraries get linked in and end up exceeding\n\t  # the spec.\n\t  if test -z \"$convenience\" || test -z \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t  fi\n\t  save_output=$output\n\t  func_basename \"$output\"\n\t  output_la=$func_basename_result\n\n\t  # Clear the reloadable object creation command queue and\n\t  # initialize k to one.\n\t  test_cmds=\n\t  concat_cmds=\n\t  objlist=\n\t  last_robj=\n\t  k=1\n\n\t  if test -n \"$save_libobjs\" && test : != \"$skipped_export\" && test yes = \"$with_gnu_ld\"; then\n\t    output=$output_objdir/$output_la.lnkscript\n\t    func_verbose \"creating GNU ld script: $output\"\n\t    echo 'INPUT (' > $output\n\t    for obj in $save_libobjs\n\t    do\n\t      func_to_tool_file \"$obj\"\n\t      $ECHO \"$func_to_tool_file_result\" >> $output\n\t    done\n\t    echo ')' >> $output\n\t    func_append delfiles \" $output\"\n\t    func_to_tool_file \"$output\"\n\t    output=$func_to_tool_file_result\n\t  elif test -n \"$save_libobjs\" && test : != \"$skipped_export\" && test -n \"$file_list_spec\"; then\n\t    output=$output_objdir/$output_la.lnk\n\t    func_verbose \"creating linker input file list: $output\"\n\t    : > $output\n\t    set x $save_libobjs\n\t    shift\n\t    firstobj=\n\t    if test yes = \"$compiler_needs_object\"; then\n\t      firstobj=\"$1 \"\n\t      shift\n\t    fi\n\t    for obj\n\t    do\n\t      func_to_tool_file \"$obj\"\n\t      $ECHO \"$func_to_tool_file_result\" >> $output\n\t    done\n\t    func_append delfiles \" $output\"\n\t    func_to_tool_file \"$output\"\n\t    output=$firstobj\\\"$file_list_spec$func_to_tool_file_result\\\"\n\t  else\n\t    if test -n \"$save_libobjs\"; then\n\t      func_verbose \"creating reloadable object files...\"\n\t      output=$output_objdir/$output_la-$k.$objext\n\t      eval test_cmds=\\\"$reload_cmds\\\"\n\t      func_len \" $test_cmds\"\n\t      len0=$func_len_result\n\t      len=$len0\n\n\t      # Loop over the list of objects to be linked.\n\t      for obj in $save_libobjs\n\t      do\n\t\tfunc_len \" $obj\"\n\t\tfunc_arith $len + $func_len_result\n\t\tlen=$func_arith_result\n\t\tif test -z \"$objlist\" ||\n\t\t   test \"$len\" -lt \"$max_cmd_len\"; then\n\t\t  func_append objlist \" $obj\"\n\t\telse\n\t\t  # The command $test_cmds is almost too long, add a\n\t\t  # command to the queue.\n\t\t  if test 1 -eq \"$k\"; then\n\t\t    # The first file doesn't have a previous command to add.\n\t\t    reload_objs=$objlist\n\t\t    eval concat_cmds=\\\"$reload_cmds\\\"\n\t\t  else\n\t\t    # All subsequent reloadable object files will link in\n\t\t    # the last one created.\n\t\t    reload_objs=\"$objlist $last_robj\"\n\t\t    eval concat_cmds=\\\"\\$concat_cmds~$reload_cmds~\\$RM $last_robj\\\"\n\t\t  fi\n\t\t  last_robj=$output_objdir/$output_la-$k.$objext\n\t\t  func_arith $k + 1\n\t\t  k=$func_arith_result\n\t\t  output=$output_objdir/$output_la-$k.$objext\n\t\t  objlist=\" $obj\"\n\t\t  func_len \" $last_robj\"\n\t\t  func_arith $len0 + $func_len_result\n\t\t  len=$func_arith_result\n\t\tfi\n\t      done\n\t      # Handle the remaining objects by creating one last\n\t      # reloadable object file.  All subsequent reloadable object\n\t      # files will link in the last one created.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      reload_objs=\"$objlist $last_robj\"\n\t      eval concat_cmds=\\\"\\$concat_cmds$reload_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t        eval concat_cmds=\\\"\\$concat_cmds~\\$RM $last_robj\\\"\n\t      fi\n\t      func_append delfiles \" $output\"\n\n\t    else\n\t      output=\n\t    fi\n\n\t    ${skipped_export-false} && {\n\t      func_verbose \"generating symbol list for '$libname.la'\"\n\t      export_symbols=$output_objdir/$libname.exp\n\t      $opt_dry_run || $RM $export_symbols\n\t      libobjs=$output\n\t      # Append the command to create the export file.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\$concat_cmds$export_symbols_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t\teval concat_cmds=\\\"\\$concat_cmds~\\$RM $last_robj\\\"\n\t      fi\n\t    }\n\n\t    test -n \"$save_libobjs\" &&\n\t      func_verbose \"creating a temporary reloadable object file: $output\"\n\n\t    # Loop through the commands generated above and execute them.\n\t    save_ifs=$IFS; IFS='~'\n\t    for cmd in $concat_cmds; do\n\t      IFS=$save_ifs\n\t      $opt_quiet || {\n\t\t  func_quote_for_expand \"$cmd\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t      }\n\t      $opt_dry_run || eval \"$cmd\" || {\n\t\tlt_exit=$?\n\n\t\t# Restore the uninstalled library and exit\n\t\tif test relink = \"$opt_mode\"; then\n\t\t  ( cd \"$output_objdir\" && \\\n\t\t    $RM \"${realname}T\" && \\\n\t\t    $MV \"${realname}U\" \"$realname\" )\n\t\tfi\n\n\t\texit $lt_exit\n\t      }\n\t    done\n\t    IFS=$save_ifs\n\n\t    if test -n \"$export_symbols_regex\" && ${skipped_export-false}; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\n          ${skipped_export-false} && {\n\t    if test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t      tmp_export_symbols=$export_symbols\n\t      test -n \"$orig_export_symbols\" && tmp_export_symbols=$orig_export_symbols\n\t      $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\t    fi\n\n\t    if test -n \"$orig_export_symbols\"; then\n\t      # The given exports_symbols file has to be filtered, so filter it.\n\t      func_verbose \"filter symbol list for '$libname.la' to tag DATA exports\"\n\t      # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t      # 's' commands, which not all seds can handle. GNU sed should be fine\n\t      # though. Also, the filter scales superlinearly with the number of\n\t      # global variables. join(1) would be nice here, but unfortunately\n\t      # isn't a blessed tool.\n\t      $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t      func_append delfiles \" $export_symbols $output_objdir/$libname.filter\"\n\t      export_symbols=$output_objdir/$libname.def\n\t      $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\t    fi\n\t  }\n\n\t  libobjs=$output\n\t  # Restore the value of output.\n\t  output=$save_output\n\n\t  if test -n \"$convenience\" && test -n \"$whole_archive_flag_spec\"; then\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\t  # Expand the library linking commands again to reset the\n\t  # value of $libobjs for piecewise linking.\n\n\t  # Do each of the archive commands.\n\t  if test yes = \"$module\" && test -n \"$module_cmds\"; then\n\t    if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t      cmds=$module_expsym_cmds\n\t    else\n\t      cmds=$module_cmds\n\t    fi\n\t  else\n\t    if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t      cmds=$archive_expsym_cmds\n\t    else\n\t      cmds=$archive_cmds\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$delfiles\"; then\n\t  # Append the command to remove temporary files to $cmds.\n\t  eval cmds=\\\"\\$cmds~\\$RM $delfiles\\\"\n\tfi\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  func_append libobjs \" $func_extract_archives_result\"\n\t  test \"X$libobjs\" = \"X \" && libobjs=\n\tfi\n\n\tsave_ifs=$IFS; IFS='~'\n\tfor cmd in $cmds; do\n\t  IFS=$sp$nl\n\t  eval cmd=\\\"$cmd\\\"\n\t  IFS=$save_ifs\n\t  $opt_quiet || {\n\t    func_quote_for_expand \"$cmd\"\n\t    eval \"func_echo $func_quote_for_expand_result\"\n\t  }\n\t  $opt_dry_run || eval \"$cmd\" || {\n\t    lt_exit=$?\n\n\t    # Restore the uninstalled library and exit\n\t    if test relink = \"$opt_mode\"; then\n\t      ( cd \"$output_objdir\" && \\\n\t        $RM \"${realname}T\" && \\\n\t\t$MV \"${realname}U\" \"$realname\" )\n\t    fi\n\n\t    exit $lt_exit\n\t  }\n\tdone\n\tIFS=$save_ifs\n\n\t# Restore the uninstalled library and exit\n\tif test relink = \"$opt_mode\"; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?\n\n\t  if test -n \"$convenience\"; then\n\t    if test -z \"$whole_archive_flag_spec\"; then\n\t      func_show_eval '${RM}r \"$gentop\"'\n\t    fi\n\t  fi\n\n\t  exit $EXIT_SUCCESS\n\tfi\n\n\t# Create links to the real library.\n\tfor linkname in $linknames; do\n\t  if test \"$realname\" != \"$linkname\"; then\n\t    func_show_eval '(cd \"$output_objdir\" && $RM \"$linkname\" && $LN_S \"$realname\" \"$linkname\")' 'exit $?'\n\t  fi\n\tdone\n\n\t# If -module or -export-dynamic was specified, set the dlname.\n\tif test yes = \"$module\" || test yes = \"$export_dynamic\"; then\n\t  # On all known operating systems, these are identical.\n\t  dlname=$soname\n\tfi\n      fi\n      ;;\n\n    obj)\n      if test -n \"$dlfiles$dlprefiles\" || test no != \"$dlself\"; then\n\tfunc_warning \"'-dlopen' is ignored for objects\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"'-l' and '-L' are ignored for objects\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"'-rpath' is ignored for objects\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"'-R' is ignored for objects\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info' is ignored for objects\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for objects\"\n\n      case $output in\n      *.lo)\n\ttest -n \"$objs$old_deplibs\" && \\\n\t  func_fatal_error \"cannot build library object '$output' from non-libtool objects\"\n\n\tlibobj=$output\n\tfunc_lo2o \"$libobj\"\n\tobj=$func_lo2o_result\n\t;;\n      *)\n\tlibobj=\n\tobj=$output\n\t;;\n      esac\n\n      # Delete the old objects.\n      $opt_dry_run || $RM $obj $libobj\n\n      # Objects from convenience libraries.  This assumes\n      # single-version convenience libraries.  Whenever we create\n      # different ones for PIC/non-PIC, this we'll have to duplicate\n      # the extraction.\n      reload_conv_objs=\n      gentop=\n      # if reload_cmds runs $LD directly, get rid of -Wl from\n      # whole_archive_flag_spec and hope we can get by with turning comma\n      # into space.\n      case $reload_cmds in\n        *\\$LD[\\ \\$]*) wl= ;;\n      esac\n      if test -n \"$convenience\"; then\n\tif test -n \"$whole_archive_flag_spec\"; then\n\t  eval tmp_whole_archive_flags=\\\"$whole_archive_flag_spec\\\"\n\t  test -n \"$wl\" || tmp_whole_archive_flags=`$ECHO \"$tmp_whole_archive_flags\" | $SED 's|,| |g'`\n\t  reload_conv_objs=$reload_objs\\ $tmp_whole_archive_flags\n\telse\n\t  gentop=$output_objdir/${obj}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $convenience\n\t  reload_conv_objs=\"$reload_objs $func_extract_archives_result\"\n\tfi\n      fi\n\n      # If we're not building shared, we need to use non_pic_objs\n      test yes = \"$build_libtool_libs\" || libobjs=$non_pic_objects\n\n      # Create the old-style object.\n      reload_objs=$objs$old_deplibs' '`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.$libext$/d; /\\.lib$/d; $lo2o\" | $NL2SP`' '$reload_conv_objs\n\n      output=$obj\n      func_execute_cmds \"$reload_cmds\" 'exit $?'\n\n      # Exit if we aren't doing a library object file.\n      if test -z \"$libobj\"; then\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\texit $EXIT_SUCCESS\n      fi\n\n      test yes = \"$build_libtool_libs\" || {\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\t# Create an invalid libtool object if no PIC, so that we don't\n\t# accidentally link it into a program.\n\t# $show \"echo timestamp > $libobj\"\n\t# $opt_dry_run || eval \"echo timestamp > $libobj\" || exit $?\n\texit $EXIT_SUCCESS\n      }\n\n      if test -n \"$pic_flag\" || test default != \"$pic_mode\"; then\n\t# Only do commands if we really have different PIC objects.\n\treload_objs=\"$libobjs $reload_conv_objs\"\n\toutput=$libobj\n\tfunc_execute_cmds \"$reload_cmds\" 'exit $?'\n      fi\n\n      if test -n \"$gentop\"; then\n\tfunc_show_eval '${RM}r \"$gentop\"'\n      fi\n\n      exit $EXIT_SUCCESS\n      ;;\n\n    prog)\n      case $host in\n\t*cygwin*) func_stripname '' '.exe' \"$output\"\n\t          output=$func_stripname_result.exe;;\n      esac\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"'-version-info' is ignored for programs\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"'-release' is ignored for programs\"\n\n      $preload \\\n\t&& test unknown,unknown,unknown = \"$dlopen_support,$dlopen_self,$dlopen_self_static\" \\\n\t&& func_warning \"'LT_INIT([dlopen])' not used. Assuming no dlopen support.\"\n\n      case $host in\n      *-*-rhapsody* | *-*-darwin1.[012])\n\t# On Rhapsody replace the C library is the System framework\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t;;\n      esac\n\n      case $host in\n      *-*-darwin*)\n\t# Don't allow lazy linking, it breaks C++ global constructors\n\t# But is supposedly fixed on 10.4 or later (yay!).\n\tif test CXX = \"$tagname\"; then\n\t  case ${MACOSX_DEPLOYMENT_TARGET-10.0} in\n\t    10.[0123])\n\t      func_append compile_command \" $wl-bind_at_load\"\n\t      func_append finalize_command \" $wl-bind_at_load\"\n\t    ;;\n\t  esac\n\tfi\n\t# Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t;;\n      esac\n\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $compile_deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    func_append new_libs \" -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $compile_deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) func_append new_libs \" $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) func_append new_libs \" $deplib\" ;;\n\tesac\n      done\n      compile_deplibs=$new_libs\n\n\n      func_append compile_command \" $compile_deplibs\"\n      func_append finalize_command \" $finalize_deplibs\"\n\n      if test -n \"$rpath$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\tfor libdir in $rpath $xrpath; do\n\t  # This is the magic to use -rpath.\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_rpath \" $libdir\" ;;\n\t  esac\n\tdone\n      fi\n\n      # Now hardcode the library paths\n      rpath=\n      hardcode_libdirs=\n      for libdir in $compile_rpath $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=$libdir\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\tfunc_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    func_append rpath \" $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append perm_rpath \" $libdir\" ;;\n\t  esac\n\tfi\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`$ECHO \"$libdir\" | $SED -e 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$libdir:\"*) ;;\n\t  ::) dllsearchpath=$libdir;;\n\t  *) func_append dllsearchpath \":$libdir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) func_append dllsearchpath \":$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=$hardcode_libdirs\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      compile_rpath=$rpath\n\n      rpath=\n      hardcode_libdirs=\n      for libdir in $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=$libdir\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\tfunc_append hardcode_libdirs \"$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    func_append rpath \" $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$finalize_perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) func_append finalize_perm_rpath \" $libdir\" ;;\n\t  esac\n\tfi\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=$hardcode_libdirs\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      finalize_rpath=$rpath\n\n      if test -n \"$libobjs\" && test yes = \"$build_old_libs\"; then\n\t# Transform all the library objects into standard objects.\n\tcompile_command=`$ECHO \"$compile_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\tfinalize_command=`$ECHO \"$finalize_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n      fi\n\n      func_generate_dlsyms \"$outputname\" \"@PROGRAM@\" false\n\n      # template prelinking step\n      if test -n \"$prelink_cmds\"; then\n\tfunc_execute_cmds \"$prelink_cmds\" 'exit $?'\n      fi\n\n      wrappers_required=:\n      case $host in\n      *cegcc* | *mingw32ce*)\n        # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.\n        wrappers_required=false\n        ;;\n      *cygwin* | *mingw* )\n        test yes = \"$build_libtool_libs\" || wrappers_required=false\n        ;;\n      *)\n        if test no = \"$need_relink\" || test yes != \"$build_libtool_libs\"; then\n          wrappers_required=false\n        fi\n        ;;\n      esac\n      $wrappers_required || {\n\t# Replace the output file specification.\n\tcompile_command=`$ECHO \"$compile_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\tlink_command=$compile_command$compile_rpath\n\n\t# We have no uninstalled library dependencies, so finalize right now.\n\texit_status=0\n\tfunc_show_eval \"$link_command\" 'exit_status=$?'\n\n\tif test -n \"$postlink_cmds\"; then\n\t  func_to_tool_file \"$output\"\n\t  postlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\t  func_execute_cmds \"$postlink_cmds\" 'exit $?'\n\tfi\n\n\t# Delete the generated files.\n\tif test -f \"$output_objdir/${outputname}S.$objext\"; then\n\t  func_show_eval '$RM \"$output_objdir/${outputname}S.$objext\"'\n\tfi\n\n\texit $exit_status\n      }\n\n      if test -n \"$compile_shlibpath$finalize_shlibpath\"; then\n\tcompile_command=\"$shlibpath_var=\\\"$compile_shlibpath$finalize_shlibpath\\$$shlibpath_var\\\" $compile_command\"\n      fi\n      if test -n \"$finalize_shlibpath\"; then\n\tfinalize_command=\"$shlibpath_var=\\\"$finalize_shlibpath\\$$shlibpath_var\\\" $finalize_command\"\n      fi\n\n      compile_var=\n      finalize_var=\n      if test -n \"$runpath_var\"; then\n\tif test -n \"$perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $perm_rpath; do\n\t    func_append rpath \"$dir:\"\n\t  done\n\t  compile_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n\tif test -n \"$finalize_perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $finalize_perm_rpath; do\n\t    func_append rpath \"$dir:\"\n\t  done\n\t  finalize_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n      fi\n\n      if test yes = \"$no_install\"; then\n\t# We don't need to create a wrapper script.\n\tlink_command=$compile_var$compile_command$compile_rpath\n\t# Replace the output file specification.\n\tlink_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\t# Delete the old output file.\n\t$opt_dry_run || $RM $output\n\t# Link the executable and exit\n\tfunc_show_eval \"$link_command\" 'exit $?'\n\n\tif test -n \"$postlink_cmds\"; then\n\t  func_to_tool_file \"$output\"\n\t  postlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\t  func_execute_cmds \"$postlink_cmds\" 'exit $?'\n\tfi\n\n\texit $EXIT_SUCCESS\n      fi\n\n      case $hardcode_action,$fast_install in\n        relink,*)\n\t  # Fast installation is not supported\n\t  link_command=$compile_var$compile_command$compile_rpath\n\t  relink_command=$finalize_var$finalize_command$finalize_rpath\n\n\t  func_warning \"this platform does not like uninstalled shared libraries\"\n\t  func_warning \"'$output' will be relinked during installation\"\n\t  ;;\n        *,yes)\n\t  link_command=$finalize_var$compile_command$finalize_rpath\n\t  relink_command=`$ECHO \"$compile_var$compile_command$compile_rpath\" | $SED 's%@OUTPUT@%\\$progdir/\\$file%g'`\n          ;;\n\t*,no)\n\t  link_command=$compile_var$compile_command$compile_rpath\n\t  relink_command=$finalize_var$finalize_command$finalize_rpath\n          ;;\n\t*,needless)\n\t  link_command=$finalize_var$compile_command$finalize_rpath\n\t  relink_command=\n          ;;\n      esac\n\n      # Replace the output file specification.\n      link_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output_objdir/$outputname\"'%g'`\n\n      # Delete the old output files.\n      $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname\n\n      func_show_eval \"$link_command\" 'exit $?'\n\n      if test -n \"$postlink_cmds\"; then\n\tfunc_to_tool_file \"$output_objdir/$outputname\"\n\tpostlink_cmds=`func_echo_all \"$postlink_cmds\" | $SED -e 's%@OUTPUT@%'\"$output_objdir/$outputname\"'%g' -e 's%@TOOL_OUTPUT@%'\"$func_to_tool_file_result\"'%g'`\n\tfunc_execute_cmds \"$postlink_cmds\" 'exit $?'\n      fi\n\n      # Now create the wrapper script.\n      func_verbose \"creating $output\"\n\n      # Quote the relink command for shipping.\n      if test -n \"$relink_command\"; then\n\t# Preserve any variables that may affect compiler behavior\n\tfor var in $variables_saved_for_relink; do\n\t  if eval test -z \\\"\\${$var+set}\\\"; then\n\t    relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\t  elif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t    relink_command=\"$var=; export $var; $relink_command\"\n\t  else\n\t    func_quote_for_eval \"$var_value\"\n\t    relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\t  fi\n\tdone\n\trelink_command=\"(cd `pwd`; $relink_command)\"\n\trelink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      fi\n\n      # Only actually do things if not in dry run mode.\n      $opt_dry_run || {\n\t# win32 will think the script is a binary if it has\n\t# a .exe suffix, so we strip it off here.\n\tcase $output in\n\t  *.exe) func_stripname '' '.exe' \"$output\"\n\t         output=$func_stripname_result ;;\n\tesac\n\t# test for cygwin because mv fails w/o .exe extensions\n\tcase $host in\n\t  *cygwin*)\n\t    exeext=.exe\n\t    func_stripname '' '.exe' \"$outputname\"\n\t    outputname=$func_stripname_result ;;\n\t  *) exeext= ;;\n\tesac\n\tcase $host in\n\t  *cygwin* | *mingw* )\n\t    func_dirname_and_basename \"$output\" \"\" \".\"\n\t    output_name=$func_basename_result\n\t    output_path=$func_dirname_result\n\t    cwrappersource=$output_path/$objdir/lt-$output_name.c\n\t    cwrapper=$output_path/$output_name.exe\n\t    $RM $cwrappersource $cwrapper\n\t    trap \"$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_cwrapperexe_src > $cwrappersource\n\n\t    # The wrapper executable is built using the $host compiler,\n\t    # because it contains $host paths and files. If cross-\n\t    # compiling, it, like the target executable, must be\n\t    # executed on the $host or under an emulation environment.\n\t    $opt_dry_run || {\n\t      $LTCC $LTCFLAGS -o $cwrapper $cwrappersource\n\t      $STRIP $cwrapper\n\t    }\n\n\t    # Now, create the wrapper script for func_source use:\n\t    func_ltwrapper_scriptname $cwrapper\n\t    $RM $func_ltwrapper_scriptname_result\n\t    trap \"$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE\" 1 2 15\n\t    $opt_dry_run || {\n\t      # note: this script will not be executed, so do not chmod.\n\t      if test \"x$build\" = \"x$host\"; then\n\t\t$cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result\n\t      else\n\t\tfunc_emit_wrapper no > $func_ltwrapper_scriptname_result\n\t      fi\n\t    }\n\t  ;;\n\t  * )\n\t    $RM $output\n\t    trap \"$RM $output; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_wrapper no > $output\n\t    chmod +x $output\n\t  ;;\n\tesac\n      }\n      exit $EXIT_SUCCESS\n      ;;\n    esac\n\n    # See if we need to build an old-fashioned archive.\n    for oldlib in $oldlibs; do\n\n      case $build_libtool_libs in\n        convenience)\n\t  oldobjs=\"$libobjs_save $symfileobj\"\n\t  addlibs=$convenience\n\t  build_libtool_libs=no\n\t  ;;\n\tmodule)\n\t  oldobjs=$libobjs_save\n\t  addlibs=$old_convenience\n\t  build_libtool_libs=no\n          ;;\n\t*)\n\t  oldobjs=\"$old_deplibs $non_pic_objects\"\n\t  $preload && test -f \"$symfileobj\" \\\n\t    && func_append oldobjs \" $symfileobj\"\n\t  addlibs=$old_convenience\n\t  ;;\n      esac\n\n      if test -n \"$addlibs\"; then\n\tgentop=$output_objdir/${outputname}x\n\tfunc_append generated \" $gentop\"\n\n\tfunc_extract_archives $gentop $addlibs\n\tfunc_append oldobjs \" $func_extract_archives_result\"\n      fi\n\n      # Do each command in the archive commands.\n      if test -n \"$old_archive_from_new_cmds\" && test yes = \"$build_libtool_libs\"; then\n\tcmds=$old_archive_from_new_cmds\n      else\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  func_append oldobjs \" $func_extract_archives_result\"\n\tfi\n\n\t# POSIX demands no paths to be encoded in archives.  We have\n\t# to avoid creating archives with duplicate basenames if we\n\t# might have to extract them afterwards, e.g., when creating a\n\t# static archive out of a convenience library, or when linking\n\t# the entirety of a libtool archive into another (currently\n\t# not supported by libtool).\n\tif (for obj in $oldobjs\n\t    do\n\t      func_basename \"$obj\"\n\t      $ECHO \"$func_basename_result\"\n\t    done | sort | sort -uc >/dev/null 2>&1); then\n\t  :\n\telse\n\t  echo \"copying selected object files to avoid basename conflicts...\"\n\t  gentop=$output_objdir/${outputname}x\n\t  func_append generated \" $gentop\"\n\t  func_mkdir_p \"$gentop\"\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  counter=1\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_basename \"$obj\"\n\t    objbase=$func_basename_result\n\t    case \" $oldobjs \" in\n\t    \" \") oldobjs=$obj ;;\n\t    *[\\ /]\"$objbase \"*)\n\t      while :; do\n\t\t# Make sure we don't pick an alternate name that also\n\t\t# overlaps.\n\t\tnewobj=lt$counter-$objbase\n\t\tfunc_arith $counter + 1\n\t\tcounter=$func_arith_result\n\t\tcase \" $oldobjs \" in\n\t\t*[\\ /]\"$newobj \"*) ;;\n\t\t*) if test ! -f \"$gentop/$newobj\"; then break; fi ;;\n\t\tesac\n\t      done\n\t      func_show_eval \"ln $obj $gentop/$newobj || cp $obj $gentop/$newobj\"\n\t      func_append oldobjs \" $gentop/$newobj\"\n\t      ;;\n\t    *) func_append oldobjs \" $obj\" ;;\n\t    esac\n\t  done\n\tfi\n\tfunc_to_tool_file \"$oldlib\" func_convert_file_msys_to_w32\n\ttool_oldlib=$func_to_tool_file_result\n\teval cmds=\\\"$old_archive_cmds\\\"\n\n\tfunc_len \" $cmds\"\n\tlen=$func_len_result\n\tif test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  cmds=$old_archive_cmds\n\telif test -n \"$archiver_list_spec\"; then\n\t  func_verbose \"using command file archive linking...\"\n\t  for obj in $oldobjs\n\t  do\n\t    func_to_tool_file \"$obj\"\n\t    $ECHO \"$func_to_tool_file_result\"\n\t  done > $output_objdir/$libname.libcmd\n\t  func_to_tool_file \"$output_objdir/$libname.libcmd\"\n\t  oldobjs=\" $archiver_list_spec$func_to_tool_file_result\"\n\t  cmds=$old_archive_cmds\n\telse\n\t  # the command line is too long to link in one step, link in parts\n\t  func_verbose \"using piecewise archive linking...\"\n\t  save_RANLIB=$RANLIB\n\t  RANLIB=:\n\t  objlist=\n\t  concat_cmds=\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  # Is there a better way of finding the last object in the list?\n\t  for obj in $save_oldobjs\n\t  do\n\t    last_oldobj=$obj\n\t  done\n\t  eval test_cmds=\\\"$old_archive_cmds\\\"\n\t  func_len \" $test_cmds\"\n\t  len0=$func_len_result\n\t  len=$len0\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_len \" $obj\"\n\t    func_arith $len + $func_len_result\n\t    len=$func_arith_result\n\t    func_append objlist \" $obj\"\n\t    if test \"$len\" -lt \"$max_cmd_len\"; then\n\t      :\n\t    else\n\t      # the above command should be used before it gets too long\n\t      oldobjs=$objlist\n\t      if test \"$obj\" = \"$last_oldobj\"; then\n\t\tRANLIB=$save_RANLIB\n\t      fi\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\$concat_cmds$old_archive_cmds\\\"\n\t      objlist=\n\t      len=$len0\n\t    fi\n\t  done\n\t  RANLIB=$save_RANLIB\n\t  oldobjs=$objlist\n\t  if test -z \"$oldobjs\"; then\n\t    eval cmds=\\\"\\$concat_cmds\\\"\n\t  else\n\t    eval cmds=\\\"\\$concat_cmds~\\$old_archive_cmds\\\"\n\t  fi\n\tfi\n      fi\n      func_execute_cmds \"$cmds\" 'exit $?'\n    done\n\n    test -n \"$generated\" && \\\n      func_show_eval \"${RM}r$generated\"\n\n    # Now create the libtool archive.\n    case $output in\n    *.la)\n      old_library=\n      test yes = \"$build_old_libs\" && old_library=$libname.$libext\n      func_verbose \"creating $output\"\n\n      # Preserve any variables that may affect compiler behavior\n      for var in $variables_saved_for_relink; do\n\tif eval test -z \\\"\\${$var+set}\\\"; then\n\t  relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\telif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t  relink_command=\"$var=; export $var; $relink_command\"\n\telse\n\t  func_quote_for_eval \"$var_value\"\n\t  relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\tfi\n      done\n      # Quote the link command for shipping.\n      relink_command=\"(cd `pwd`; $SHELL \\\"$progpath\\\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)\"\n      relink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      if test yes = \"$hardcode_automatic\"; then\n\trelink_command=\n      fi\n\n      # Only create the output if not a dry run.\n      $opt_dry_run || {\n\tfor installed in no yes; do\n\t  if test yes = \"$installed\"; then\n\t    if test -z \"$install_libdir\"; then\n\t      break\n\t    fi\n\t    output=$output_objdir/${outputname}i\n\t    # Replace all uninstalled libtool libraries with the installed ones\n\t    newdependency_libs=\n\t    for deplib in $dependency_libs; do\n\t      case $deplib in\n\t      *.la)\n\t\tfunc_basename \"$deplib\"\n\t\tname=$func_basename_result\n\t\tfunc_resolve_sysroot \"$deplib\"\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $func_resolve_sysroot_result`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$deplib' is not a valid libtool archive\"\n\t\tfunc_append newdependency_libs \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      -L*)\n\t\tfunc_stripname -L '' \"$deplib\"\n\t\tfunc_replace_sysroot \"$func_stripname_result\"\n\t\tfunc_append newdependency_libs \" -L$func_replace_sysroot_result\"\n\t\t;;\n\t      -R*)\n\t\tfunc_stripname -R '' \"$deplib\"\n\t\tfunc_replace_sysroot \"$func_stripname_result\"\n\t\tfunc_append newdependency_libs \" -R$func_replace_sysroot_result\"\n\t\t;;\n\t      *) func_append newdependency_libs \" $deplib\" ;;\n\t      esac\n\t    done\n\t    dependency_libs=$newdependency_libs\n\t    newdlfiles=\n\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t      *.la)\n\t        func_basename \"$lib\"\n\t\tname=$func_basename_result\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$lib' is not a valid libtool archive\"\n\t\tfunc_append newdlfiles \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      *) func_append newdlfiles \" $lib\" ;;\n\t      esac\n\t    done\n\t    dlfiles=$newdlfiles\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t      *.la)\n\t\t# Only pass preopened files to the pseudo-archive (for\n\t\t# eventual linking with the app. that links it) if we\n\t\t# didn't already link the preopened objects directly into\n\t\t# the library:\n\t\tfunc_basename \"$lib\"\n\t\tname=$func_basename_result\n\t\teval libdir=`$SED -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"'$lib' is not a valid libtool archive\"\n\t\tfunc_append newdlprefiles \" ${lt_sysroot:+=}$libdir/$name\"\n\t\t;;\n\t      esac\n\t    done\n\t    dlprefiles=$newdlprefiles\n\t  else\n\t    newdlfiles=\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=$lib ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      func_append newdlfiles \" $abs\"\n\t    done\n\t    dlfiles=$newdlfiles\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=$lib ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      func_append newdlprefiles \" $abs\"\n\t    done\n\t    dlprefiles=$newdlprefiles\n\t  fi\n\t  $RM $output\n\t  # place dlname in correct position for cygwin\n\t  # In fact, it would be nice if we could use this code for all target\n\t  # systems that can't hard-code library paths into their executables\n\t  # and that have no shared library path variable independent of PATH,\n\t  # but it turns out we can't easily determine that from inspecting\n\t  # libtool variables, so we have to hard-code the OSs to which it\n\t  # applies here; at the moment, that means platforms that use the PE\n\t  # object format with DLL files.  See the long comment at the top of\n\t  # tests/bindir.at for full details.\n\t  tdlname=$dlname\n\t  case $host,$output,$installed,$module,$dlname in\n\t    *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)\n\t      # If a -bindir argument was supplied, place the dll there.\n\t      if test -n \"$bindir\"; then\n\t\tfunc_relative_path \"$install_libdir\" \"$bindir\"\n\t\ttdlname=$func_relative_path_result/$dlname\n\t      else\n\t\t# Otherwise fall back on heuristic.\n\t\ttdlname=../bin/$dlname\n\t      fi\n\t      ;;\n\t  esac\n\t  $ECHO > $output \"\\\n# $outputname - a libtool library file\n# Generated by $PROGRAM (GNU $PACKAGE) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# The name that we can dlopen(3).\ndlname='$tdlname'\n\n# Names of this library.\nlibrary_names='$library_names'\n\n# The name of the static archive.\nold_library='$old_library'\n\n# Linker flags that cannot go in dependency_libs.\ninherited_linker_flags='$new_inherited_linker_flags'\n\n# Libraries that this one depends upon.\ndependency_libs='$dependency_libs'\n\n# Names of additional weak libraries provided by this library\nweak_library_names='$weak_libs'\n\n# Version information for $libname.\ncurrent=$current\nage=$age\nrevision=$revision\n\n# Is this an already installed library?\ninstalled=$installed\n\n# Should we warn about portability when linking against -modules?\nshouldnotlink=$module\n\n# Files to dlopen/dlpreopen\ndlopen='$dlfiles'\ndlpreopen='$dlprefiles'\n\n# Directory that this library needs to be installed in:\nlibdir='$install_libdir'\"\n\t  if test no,yes = \"$installed,$need_relink\"; then\n\t    $ECHO >> $output \"\\\nrelink_command=\\\"$relink_command\\\"\"\n\t  fi\n\tdone\n      }\n\n      # Do a symbolic link so that the libtool archive can be found in\n      # LD_LIBRARY_PATH before the program is installed.\n      func_show_eval '( cd \"$output_objdir\" && $RM \"$outputname\" && $LN_S \"../$outputname\" \"$outputname\" )' 'exit $?'\n      ;;\n    esac\n    exit $EXIT_SUCCESS\n}\n\nif test link = \"$opt_mode\" || test relink = \"$opt_mode\"; then\n  func_mode_link ${1+\"$@\"}\nfi\n\n\n# func_mode_uninstall arg...\nfunc_mode_uninstall ()\n{\n    $debug_cmd\n\n    RM=$nonopt\n    files=\n    rmforce=false\n    exit_status=0\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=$magic\n\n    for arg\n    do\n      case $arg in\n      -f) func_append RM \" $arg\"; rmforce=: ;;\n      -*) func_append RM \" $arg\" ;;\n      *) func_append files \" $arg\" ;;\n      esac\n    done\n\n    test -z \"$RM\" && \\\n      func_fatal_help \"you must specify an RM program\"\n\n    rmdirs=\n\n    for file in $files; do\n      func_dirname \"$file\" \"\" \".\"\n      dir=$func_dirname_result\n      if test . = \"$dir\"; then\n\todir=$objdir\n      else\n\todir=$dir/$objdir\n      fi\n      func_basename \"$file\"\n      name=$func_basename_result\n      test uninstall = \"$opt_mode\" && odir=$dir\n\n      # Remember odir for removal later, being careful to avoid duplicates\n      if test clean = \"$opt_mode\"; then\n\tcase \" $rmdirs \" in\n\t  *\" $odir \"*) ;;\n\t  *) func_append rmdirs \" $odir\" ;;\n\tesac\n      fi\n\n      # Don't error if the file doesn't exist and rm -f was used.\n      if { test -L \"$file\"; } >/dev/null 2>&1 ||\n\t { test -h \"$file\"; } >/dev/null 2>&1 ||\n\t test -f \"$file\"; then\n\t:\n      elif test -d \"$file\"; then\n\texit_status=1\n\tcontinue\n      elif $rmforce; then\n\tcontinue\n      fi\n\n      rmfiles=$file\n\n      case $name in\n      *.la)\n\t# Possibly a libtool archive, so verify it.\n\tif func_lalib_p \"$file\"; then\n\t  func_source $dir/$name\n\n\t  # Delete the libtool libraries and symlinks.\n\t  for n in $library_names; do\n\t    func_append rmfiles \" $odir/$n\"\n\t  done\n\t  test -n \"$old_library\" && func_append rmfiles \" $odir/$old_library\"\n\n\t  case $opt_mode in\n\t  clean)\n\t    case \" $library_names \" in\n\t    *\" $dlname \"*) ;;\n\t    *) test -n \"$dlname\" && func_append rmfiles \" $odir/$dlname\" ;;\n\t    esac\n\t    test -n \"$libdir\" && func_append rmfiles \" $odir/$name $odir/${name}i\"\n\t    ;;\n\t  uninstall)\n\t    if test -n \"$library_names\"; then\n\t      # Do each command in the postuninstall commands.\n\t      func_execute_cmds \"$postuninstall_cmds\" '$rmforce || exit_status=1'\n\t    fi\n\n\t    if test -n \"$old_library\"; then\n\t      # Do each command in the old_postuninstall commands.\n\t      func_execute_cmds \"$old_postuninstall_cmds\" '$rmforce || exit_status=1'\n\t    fi\n\t    # FIXME: should reinstall the best remaining shared library.\n\t    ;;\n\t  esac\n\tfi\n\t;;\n\n      *.lo)\n\t# Possibly a libtool object, so verify it.\n\tif func_lalib_p \"$file\"; then\n\n\t  # Read the .lo file\n\t  func_source $dir/$name\n\n\t  # Add PIC object to the list of files to remove.\n\t  if test -n \"$pic_object\" && test none != \"$pic_object\"; then\n\t    func_append rmfiles \" $dir/$pic_object\"\n\t  fi\n\n\t  # Add non-PIC object to the list of files to remove.\n\t  if test -n \"$non_pic_object\" && test none != \"$non_pic_object\"; then\n\t    func_append rmfiles \" $dir/$non_pic_object\"\n\t  fi\n\tfi\n\t;;\n\n      *)\n\tif test clean = \"$opt_mode\"; then\n\t  noexename=$name\n\t  case $file in\n\t  *.exe)\n\t    func_stripname '' '.exe' \"$file\"\n\t    file=$func_stripname_result\n\t    func_stripname '' '.exe' \"$name\"\n\t    noexename=$func_stripname_result\n\t    # $file with .exe has already been added to rmfiles,\n\t    # add $file without .exe\n\t    func_append rmfiles \" $file\"\n\t    ;;\n\t  esac\n\t  # Do a test to see if this is a libtool program.\n\t  if func_ltwrapper_p \"$file\"; then\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      relink_command=\n\t      func_source $func_ltwrapper_scriptname_result\n\t      func_append rmfiles \" $func_ltwrapper_scriptname_result\"\n\t    else\n\t      relink_command=\n\t      func_source $dir/$noexename\n\t    fi\n\n\t    # note $name still contains .exe if it was in $file originally\n\t    # as does the version of $file that was added into $rmfiles\n\t    func_append rmfiles \" $odir/$name $odir/${name}S.$objext\"\n\t    if test yes = \"$fast_install\" && test -n \"$relink_command\"; then\n\t      func_append rmfiles \" $odir/lt-$name\"\n\t    fi\n\t    if test \"X$noexename\" != \"X$name\"; then\n\t      func_append rmfiles \" $odir/lt-$noexename.c\"\n\t    fi\n\t  fi\n\tfi\n\t;;\n      esac\n      func_show_eval \"$RM $rmfiles\" 'exit_status=1'\n    done\n\n    # Try to remove the $objdir's in the directories where we deleted files\n    for dir in $rmdirs; do\n      if test -d \"$dir\"; then\n\tfunc_show_eval \"rmdir $dir >/dev/null 2>&1\"\n      fi\n    done\n\n    exit $exit_status\n}\n\nif test uninstall = \"$opt_mode\" || test clean = \"$opt_mode\"; then\n  func_mode_uninstall ${1+\"$@\"}\nfi\n\ntest -z \"$opt_mode\" && {\n  help=$generic_help\n  func_fatal_help \"you must specify a MODE\"\n}\n\ntest -z \"$exec_cmd\" && \\\n  func_fatal_help \"invalid operation mode '$opt_mode'\"\n\nif test -n \"$exec_cmd\"; then\n  eval exec \"$exec_cmd\"\n  exit $EXIT_FAILURE\nfi\n\nexit $exit_status\n\n\n# The TAGs below are defined such that we never get into a situation\n# where we disable both kinds of libraries.  Given conflicting\n# choices, we go for a static library, that is the most portable,\n# since we can't tell whether shared libraries were disabled because\n# the user asked for that or because the platform doesn't support\n# them.  This is particularly important on AIX, because we don't\n# support having both static and shared libraries enabled at the same\n# time on that platform, so we default to a shared-only configuration.\n# If a disable-shared tag is given, we'll fallback to a static-only\n# configuration.  But we'll never go from static-only to shared-only.\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-shared\nbuild_libtool_libs=no\nbuild_old_libs=yes\n# ### END LIBTOOL TAG CONFIG: disable-shared\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-static\nbuild_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`\n# ### END LIBTOOL TAG CONFIG: disable-static\n\n# Local Variables:\n# mode:shell-script\n# sh-indentation:2\n# End:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/src/Makefile",
    "content": "# Makefile for libiconv/src\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = .\ntop_srcdir = ..\n\n# Directories used by \"make install\":\nprefix = /usr/local\nlocal_prefix = /usr/local\nexec_prefix = ${prefix}\nbindir = ${exec_prefix}/bin\nlibdir = ${exec_prefix}/lib\ndatarootdir = ${prefix}/share\ndatadir = ${datarootdir}\nlocaledir = ${datarootdir}/locale\n\n# Programs used by \"make\":\nCC = gcc\nCFLAGS = -g -O2\nCPPFLAGS = \nLDFLAGS = \nINCLUDES = -I. -I$(srcdir) -I.. -I../include -I$(srcdir)/../include -I../srclib -I$(srcdir)/../srclib\nLIBTOOL = /bin/sh $(top_builddir)/libtool\nLIBTOOL_COMPILE = $(LIBTOOL) --mode=compile\nLIBTOOL_LINK = $(LIBTOOL) --mode=link\nLIBTOOL_INSTALL = $(LIBTOOL) --mode=install\nLIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall\nWINDRES = \nRM = rm -f\n\n\n# Programs used by \"make install\":\nINSTALL = /usr/bin/install -c\nINSTALL_PROGRAM = ${INSTALL}\nINSTALL_DATA = ${INSTALL} -m 644\nmkinstalldirs = $(SHELL) ../build-aux/mkinstalldirs\n\n# Programs used by \"make install-strip\":\nSTRIP = /usr/bin/strip\nINSTALL_STRIP_PROGRAM = $(install_sh) -c -s\ninstall_sh = ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/install-sh\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\nPACKAGE_VERSION = 1.15\n\n# Needed by $(LIBTOOL).\ntop_builddir = ..\n\n# Needed by SET_RELOCATABLE.\nEXEEXT = \n\n# Needed by RELOCATABLE_LDFLAGS.\nhost = x86_64-apple-darwin16.6.0\n\nOBJECTS_RES_yes = iconv.res\nOBJECTS_RES_no =\n\n# We cannot link with libintl until libiconv is installed. (When we call\n# libtool with arguments \"../lib/libiconv.la -lintl\", libtool will call ld\n# with \"../lib/.libs/libiconv.so $libdir/libintl.so $libdir/libiconv.so\",\n# (remember that $libdir/libintl.la lists $libdir/libiconv.so as a dependency),\n# and this gives a fatal linker error on Solaris because the two libiconv.so\n# files are different but have the same soname.\n# So we can link the iconv executable only after we have installed libiconv,\n# i.e. during \"make install\". The intermediate 'iconv' executable is built\n# without internationalization and not linked with libintl.\n\nall : iconv_no_i18n$(EXEEXT) iconv.o $(OBJECTS_RES_no)\n\ttest `ls -ld . | sed -e 's/^d\\(.........\\).*/\\1/'` = rwxrwxrwx || chmod 777 .\n\n# This is the temporary iconv executable, without internationalization.\niconv_no_i18n$(EXEEXT) : iconv_no_i18n.o ../lib/libiconv.la $(OBJECTS_RES_no)\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) iconv_no_i18n.o ../srclib/libicrt.a ../lib/libiconv.la $(OBJECTS_RES_no) -o $@\n\niconv_no_i18n.o : $(srcdir)/iconv_no_i18n.c $(srcdir)/iconv.c\n\t$(CC) -c $(INCLUDES) -I../lib $(CFLAGS) $(CPPFLAGS) -DINSTALLDIR=\\\"$(bindir)\\\" -DLOCALEDIR=\\\"$(localedir)\\\" $(srcdir)/iconv_no_i18n.c\n\niconv.o : $(srcdir)/iconv.c\n\t$(CC) -c $(INCLUDES) -I../lib $(CFLAGS) $(CPPFLAGS) -DINSTALLDIR=\\\"$(bindir)\\\" -DLOCALEDIR=\\\"$(localedir)\\\" $(srcdir)/iconv.c\n\niconv.res : $(srcdir)/../windows/iconv.rc\n\t$(WINDRES) `$(SHELL) $(srcdir)/../windows/windres-options --escape $(PACKAGE_VERSION)` -i $(srcdir)/../windows/iconv.rc -o iconv.res --output-format=coff\n\n# The following rule is necessary to avoid a toplevel \"make -n check\" failure.\n../lib/libiconv.la :\n\tcd ../lib && $(MAKE) libiconv.la\n\n# Support for relocatability.\nRELOCATABLE_LIBRARY_PATH = $(libdir)\nRELOCATABLE_SRC_DIR = $(top_srcdir)/srclib\nRELOCATABLE_BUILD_DIR = ../srclib\nRELOCATABLE_CONFIG_H_DIR = ..\nRELOCATABLE_LDFLAGS = \nRELOCATABLE_STRIP = :\nINSTALL_PROGRAM_ENV = \niconv_LDFLAGS = `if test -n '$(RELOCATABLE_LDFLAGS)'; then $(RELOCATABLE_LDFLAGS) $(bindir); fi`\n\n# During \"make install\", we can build the final iconv executable.\n# On HP-UX, in order to ensure that the new libiconv.sl will override the old\n# one that is hardcoded in libintl.sl, we need to mention libiconv.sl before\n# libintl.sl on the link command line. We have to bypass libtool in order to\n# achieve this.\n# On Solaris, the linker gives an error if we are using libintl.so and it\n# refers to a libiconv.so in $prefix/lib since then it sees two libiconv.so's,\n# one in $prefix/lib and one in ../lib/.libs. So we have to avoid using\n# ../lib/libiconv.la entirely.\ninstall : all force\n\tif [ ! -d $(DESTDIR)$(bindir) ] ; then $(mkinstalldirs) $(DESTDIR)$(bindir) ; fi\n\tcase \"darwin16.6.0\" in \\\n\t  hpux*) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.o ../srclib/libicrt.a -L$(DESTDIR)$(libdir) -liconv  $(OBJECTS_RES_no) `if test -n '$(DESTDIR)'; then echo \" -Wl,+b -Wl,$(libdir)\"; fi` -o iconv$(EXEEXT);; \\\n\t  *) $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.o ../srclib/libicrt.a $(DESTDIR)$(libdir)/libiconv.la  $(OBJECTS_RES_no) -o iconv$(EXEEXT);; \\\n\tesac\n\t$(INSTALL_PROGRAM_ENV) $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) iconv$(EXEEXT) $(DESTDIR)$(bindir)/iconv$(EXEEXT)\n\ninstall-strip : force\n\tcase '$(INSTALL_PROGRAM)' in \\\n\t  */install-reloc) \\\n\t    $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)' RELOCATABLE_STRIP='$(STRIP)' ;; \\\n\t  *) \\\n\t    $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)' INSTALL_PROGRAM='$(INSTALL_STRIP_PROGRAM)' ;; \\\n\tesac\n\ninstalldirs : force\n\tif [ ! -d $(DESTDIR)$(bindir) ] ; then $(mkinstalldirs) $(DESTDIR)$(bindir) ; fi\n\nuninstall : force\n\t$(LIBTOOL_UNINSTALL) $(RM) $(DESTDIR)$(bindir)/iconv$(EXEEXT)\n\ncheck : all\n\nmostlyclean : clean\n\nclean : force\n\t$(RM) *.o *.lo iconv.res iconv_no_i18n iconv_no_i18n$(EXEEXT) iconv$(EXEEXT) core *.stackdump\n\t$(RM) -r .libs _libs\n\ndistclean : clean\n\t$(RM) Makefile\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  Makefile.in \\\n  iconv.c iconv_no_i18n.c\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES =\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/src/Makefile.in",
    "content": "# Makefile for libiconv/src\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = @srcdir@\ntop_srcdir = @top_srcdir@\n\n# Directories used by \"make install\":\nprefix = @prefix@\nlocal_prefix = /usr/local\nexec_prefix = @exec_prefix@\nbindir = @bindir@\nlibdir = @libdir@\ndatarootdir = @datarootdir@\ndatadir = @datadir@\nlocaledir = @localedir@\n\n# Programs used by \"make\":\nCC = @CC@\nCFLAGS = @CFLAGS@\nCPPFLAGS = @CPPFLAGS@\nLDFLAGS = @LDFLAGS@\nINCLUDES = -I. -I$(srcdir) -I.. -I../include -I$(srcdir)/../include -I../srclib -I$(srcdir)/../srclib\nLIBTOOL = @LIBTOOL@\nLIBTOOL_COMPILE = $(LIBTOOL) --mode=compile\nLIBTOOL_LINK = $(LIBTOOL) --mode=link\nLIBTOOL_INSTALL = $(LIBTOOL) --mode=install\nLIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall\nWINDRES = @WINDRES@\nRM = rm -f\n@SET_MAKE@\n\n# Programs used by \"make install\":\nINSTALL = @INSTALL@\nINSTALL_PROGRAM = @INSTALL_PROGRAM@\nINSTALL_DATA = @INSTALL_DATA@\nmkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs\n\n# Programs used by \"make install-strip\":\nSTRIP = @STRIP@\nINSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@\ninstall_sh = @install_sh@\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\nPACKAGE_VERSION = @VERSION@\n\n# Needed by $(LIBTOOL).\ntop_builddir = ..\n\n# Needed by SET_RELOCATABLE.\nEXEEXT = @EXEEXT@\n\n# Needed by RELOCATABLE_LDFLAGS.\nhost = @host@\n\nOBJECTS_RES_yes = iconv.res\nOBJECTS_RES_no =\n\n# We cannot link with libintl until libiconv is installed. (When we call\n# libtool with arguments \"../lib/libiconv.la -lintl\", libtool will call ld\n# with \"../lib/.libs/libiconv.so $libdir/libintl.so $libdir/libiconv.so\",\n# (remember that $libdir/libintl.la lists $libdir/libiconv.so as a dependency),\n# and this gives a fatal linker error on Solaris because the two libiconv.so\n# files are different but have the same soname.\n# So we can link the iconv executable only after we have installed libiconv,\n# i.e. during \"make install\". The intermediate 'iconv' executable is built\n# without internationalization and not linked with libintl.\n\nall : iconv_no_i18n$(EXEEXT) iconv.@OBJEXT@ $(OBJECTS_RES_@WOE32@)\n\ttest `ls -ld . | sed -e 's/^d\\(.........\\).*/\\1/'` = rwxrwxrwx || chmod 777 .\n\n# This is the temporary iconv executable, without internationalization.\niconv_no_i18n$(EXEEXT) : iconv_no_i18n.@OBJEXT@ ../lib/libiconv.la $(OBJECTS_RES_@WOE32@)\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) iconv_no_i18n.@OBJEXT@ ../srclib/libicrt.a ../lib/libiconv.la $(OBJECTS_RES_@WOE32@) -o $@\n\niconv_no_i18n.@OBJEXT@ : $(srcdir)/iconv_no_i18n.c $(srcdir)/iconv.c\n\t$(CC) -c $(INCLUDES) -I../lib $(CFLAGS) $(CPPFLAGS) -DINSTALLDIR=\\\"$(bindir)\\\" -DLOCALEDIR=\\\"$(localedir)\\\" $(srcdir)/iconv_no_i18n.c\n\niconv.@OBJEXT@ : $(srcdir)/iconv.c\n\t$(CC) -c $(INCLUDES) -I../lib $(CFLAGS) $(CPPFLAGS) -DINSTALLDIR=\\\"$(bindir)\\\" -DLOCALEDIR=\\\"$(localedir)\\\" $(srcdir)/iconv.c\n\niconv.res : $(srcdir)/../windows/iconv.rc\n\t$(WINDRES) `$(SHELL) $(srcdir)/../windows/windres-options --escape $(PACKAGE_VERSION)` -i $(srcdir)/../windows/iconv.rc -o iconv.res --output-format=coff\n\n# The following rule is necessary to avoid a toplevel \"make -n check\" failure.\n../lib/libiconv.la :\n\tcd ../lib && $(MAKE) libiconv.la\n\n# Support for relocatability.\nRELOCATABLE_LIBRARY_PATH = $(libdir)\nRELOCATABLE_SRC_DIR = $(top_srcdir)/srclib\nRELOCATABLE_BUILD_DIR = ../srclib\nRELOCATABLE_CONFIG_H_DIR = ..\nRELOCATABLE_LDFLAGS = @RELOCATABLE_LDFLAGS@\nRELOCATABLE_STRIP = :\nINSTALL_PROGRAM_ENV = @INSTALL_PROGRAM_ENV@\niconv_LDFLAGS = `if test -n '$(RELOCATABLE_LDFLAGS)'; then $(RELOCATABLE_LDFLAGS) $(bindir); fi`\n\n# During \"make install\", we can build the final iconv executable.\n# On HP-UX, in order to ensure that the new libiconv.sl will override the old\n# one that is hardcoded in libintl.sl, we need to mention libiconv.sl before\n# libintl.sl on the link command line. We have to bypass libtool in order to\n# achieve this.\n# On Solaris, the linker gives an error if we are using libintl.so and it\n# refers to a libiconv.so in $prefix/lib since then it sees two libiconv.so's,\n# one in $prefix/lib and one in ../lib/.libs. So we have to avoid using\n# ../lib/libiconv.la entirely.\ninstall : all force\n\tif [ ! -d $(DESTDIR)$(bindir) ] ; then $(mkinstalldirs) $(DESTDIR)$(bindir) ; fi\n\tcase \"@host_os@\" in \\\n\t  hpux*) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a -L$(DESTDIR)$(libdir) -liconv @LIBINTL@ $(OBJECTS_RES_@WOE32@) `if test -n '$(DESTDIR)'; then echo \" -Wl,+b -Wl,$(libdir)\"; fi` -o iconv$(EXEEXT);; \\\n\t  *) $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a $(DESTDIR)$(libdir)/libiconv.la @LTLIBINTL@ $(OBJECTS_RES_@WOE32@) -o iconv$(EXEEXT);; \\\n\tesac\n\t$(INSTALL_PROGRAM_ENV) $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) iconv$(EXEEXT) $(DESTDIR)$(bindir)/iconv$(EXEEXT)\n\ninstall-strip : force\n\tcase '$(INSTALL_PROGRAM)' in \\\n\t  */install-reloc) \\\n\t    $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)' RELOCATABLE_STRIP='$(STRIP)' ;; \\\n\t  *) \\\n\t    $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)' INSTALL_PROGRAM='$(INSTALL_STRIP_PROGRAM)' ;; \\\n\tesac\n\ninstalldirs : force\n\tif [ ! -d $(DESTDIR)$(bindir) ] ; then $(mkinstalldirs) $(DESTDIR)$(bindir) ; fi\n\nuninstall : force\n\t$(LIBTOOL_UNINSTALL) $(RM) $(DESTDIR)$(bindir)/iconv$(EXEEXT)\n\ncheck : all\n\nmostlyclean : clean\n\nclean : force\n\t$(RM) *.@OBJEXT@ *.lo iconv.res iconv_no_i18n iconv_no_i18n$(EXEEXT) iconv$(EXEEXT) core *.stackdump\n\t$(RM) -r .libs _libs\n\ndistclean : clean\n\t$(RM) Makefile\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  Makefile.in \\\n  iconv.c iconv_no_i18n.c\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES =\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/src/iconv.c",
    "content": "/* Copyright (C) 2000-2009, 2011-2012, 2016-2017 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include \"config.h\"\n#ifndef ICONV_CONST\n# define ICONV_CONST\n#endif\n\n#include <limits.h>\n#include <stddef.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <iconv.h>\n#include <errno.h>\n#include <locale.h>\n#include <fcntl.h>\n\n/* Ensure that iconv_no_i18n does not depend on libintl.  */\n#ifdef NO_I18N\n# undef ENABLE_NLS\n# undef ENABLE_RELOCATABLE\n#endif\n\n#include \"binary-io.h\"\n#include \"progname.h\"\n#include \"relocatable.h\"\n#include \"safe-read.h\"\n#include \"xalloc.h\"\n#include \"uniwidth.h\"\n#include \"uniwidth/cjk.h\"\n\n/* Ensure that iconv_no_i18n does not depend on libintl.  */\n#ifdef NO_I18N\n#include <stdarg.h>\nstatic void\nerror (int status, int errnum, const char *message, ...)\n{\n  va_list args;\n\n  fflush(stdout);\n  fprintf(stderr,\"%s: \",program_name);\n  va_start(args,message);\n  vfprintf(stderr,message,args);\n  va_end(args);\n  if (errnum) {\n    const char *s = strerror(errnum);\n    if (s == NULL)\n      s = \"Unknown system error\";\n  }\n  putc('\\n',stderr);\n  fflush(stderr);\n  if (status)\n    exit(status);\n}\n#else\n# include \"error.h\"\n#endif\n\n#include \"gettext.h\"\n\n#define _(str) gettext(str)\n\n/* Ensure that iconv_no_i18n does not depend on libintl.  */\n#ifdef NO_I18N\n# define xmalloc malloc\n# define xalloc_die abort\n#endif\n\n/* Locale independent test for a decimal digit.\n   Argument can be  'char' or 'unsigned char'.  (Whereas the argument of\n   <ctype.h> isdigit must be an 'unsigned char'.)  */\n#undef isdigit\n#define isdigit(c) ((unsigned int) ((c) - '0') < 10)\n\n/* Locale independent test for a printable character.\n   Argument can be  'char' or 'unsigned char'.  (Whereas the argument of\n   <ctype.h> isdigit must be an 'unsigned char'.)  */\n#define c_isprint(c) ((c) >= ' ' && (c) <= '~')\n\n/* ========================================================================= */\n\nstatic int discard_unconvertible = 0;\nstatic int silent = 0;\n\nstatic void usage (int exitcode)\n{\n  if (exitcode != 0) {\n    const char* helpstring1 =\n      /* TRANSLATORS: The first line of the short usage message.  */\n      _(\"Usage: iconv [-c] [-s] [-f fromcode] [-t tocode] [file ...]\");\n    const char* helpstring2 =\n      /* TRANSLATORS: The second line of the short usage message.\n         Align it correctly against the first line.  */\n      _(\"or:    iconv -l\");\n    fprintf(stderr, \"%s\\n%s\\n\", helpstring1, helpstring2);\n    fprintf(stderr, _(\"Try '%s --help' for more information.\\n\"), program_name);\n  } else {\n    /* xgettext: no-wrap */\n    /* TRANSLATORS: The first line of the long usage message.\n       The %s placeholder expands to the program name.  */\n    printf(_(\"\\\nUsage: %s [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]\\n\"),\n           program_name);\n    /* xgettext: no-wrap */\n    /* TRANSLATORS: The second line of the long usage message.\n       Align it correctly against the first line.\n       The %s placeholder expands to the program name.  */\n    printf(_(\"\\\nor:    %s -l\\n\"),\n           program_name);\n    printf(\"\\n\");\n    /* xgettext: no-wrap */\n    /* TRANSLATORS: Description of the iconv program.  */\n    printf(_(\"\\\nConverts text from one encoding to another encoding.\\n\"));\n    printf(\"\\n\");\n    /* xgettext: no-wrap */\n    printf(_(\"\\\nOptions controlling the input and output format:\\n\"));\n    /* xgettext: no-wrap */\n    printf(_(\"\\\n  -f ENCODING, --from-code=ENCODING\\n\\\n                              the encoding of the input\\n\"));\n    /* xgettext: no-wrap */\n    printf(_(\"\\\n  -t ENCODING, --to-code=ENCODING\\n\\\n                              the encoding of the output\\n\"));\n    printf(\"\\n\");\n    /* xgettext: no-wrap */\n    printf(_(\"\\\nOptions controlling conversion problems:\\n\"));\n    /* xgettext: no-wrap */\n    printf(_(\"\\\n  -c                          discard unconvertible characters\\n\"));\n    /* xgettext: no-wrap */\n    printf(_(\"\\\n  --unicode-subst=FORMATSTRING\\n\\\n                              substitution for unconvertible Unicode characters\\n\"));\n    /* xgettext: no-wrap */\n    printf(_(\"\\\n  --byte-subst=FORMATSTRING   substitution for unconvertible bytes\\n\"));\n    /* xgettext: no-wrap */\n    printf(_(\"\\\n  --widechar-subst=FORMATSTRING\\n\\\n                              substitution for unconvertible wide characters\\n\"));\n    printf(\"\\n\");\n    /* xgettext: no-wrap */\n    printf(_(\"\\\nOptions controlling error output:\\n\"));\n    /* xgettext: no-wrap */\n    printf(_(\"\\\n  -s, --silent                suppress error messages about conversion problems\\n\"));\n    printf(\"\\n\");\n    /* xgettext: no-wrap */\n    printf(_(\"\\\nInformative output:\\n\"));\n    /* xgettext: no-wrap */\n    printf(_(\"\\\n  -l, --list                  list the supported encodings\\n\"));\n    /* xgettext: no-wrap */\n    printf(_(\"\\\n  --help                      display this help and exit\\n\"));\n    /* xgettext: no-wrap */\n    printf(_(\"\\\n  --version                   output version information and exit\\n\"));\n    printf(\"\\n\");\n    /* TRANSLATORS: The placeholder indicates the bug-reporting address\n       for this package.  Please add _another line_ saying\n       \"Report translation bugs to <...>\\n\" with the address for translation\n       bugs (typically your translation team's web or email address).  */\n    fputs(_(\"Report bugs to <bug-gnu-libiconv@gnu.org>.\\n\"),stdout);\n  }\n  exit(exitcode);\n}\n\nstatic void print_version (void)\n{\n  printf(\"iconv (GNU libiconv %d.%d)\\n\",\n         _libiconv_version >> 8, _libiconv_version & 0xff);\n  printf(\"Copyright (C) %s Free Software Foundation, Inc.\\n\", \"2000-2017\");\n  /* xgettext: no-wrap */\n  fputs (_(\"\\\nLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\n\\\nThis is free software: you are free to change and redistribute it.\\n\\\nThere is NO WARRANTY, to the extent permitted by law.\\n\\\n\"),stdout);\n  /* TRANSLATORS: The %s placeholder expands to an author's name.  */\n  printf(_(\"Written by %s.\\n\"),\"Bruno Haible\");\n  exit(EXIT_SUCCESS);\n}\n\nstatic int print_one (unsigned int namescount, const char * const * names,\n                      void* data)\n{\n  unsigned int i;\n  (void)data;\n  for (i = 0; i < namescount; i++) {\n    if (i > 0)\n      putc(' ',stdout);\n    fputs(names[i],stdout);\n  }\n  putc('\\n',stdout);\n  return 0;\n}\n\n/* ========================================================================= */\n\n/* Line number and column position. */\nstatic unsigned int line;\nstatic unsigned int column;\nstatic const char* cjkcode;\n/* Update the line number and column position after a character was\n   successfully converted. */\nstatic void update_line_column (unsigned int uc, void* data)\n{\n  if (uc == 0x000A) {\n    line++;\n    column = 0;\n  } else {\n    int width = uc_width(uc, cjkcode);\n    if (width >= 0)\n      column += width;\n    else if (uc == 0x0009)\n      column += 8 - (column % 8);\n  }\n}\n\n/* ========================================================================= */\n\n/* Production of placeholder strings as fallback for unconvertible\n   characters. */\n\n/* Check that the argument is a format string taking either no argument\n   or exactly one unsigned integer argument. Returns the maximum output\n   size of the format string. */\nstatic size_t check_subst_formatstring (const char *format, const char *param_name)\n{\n  /* C format strings are described in POSIX (IEEE P1003.1 2001), section\n     XSH 3 fprintf().  See also Linux fprintf(3) manual page.\n     For simplicity, we don't accept\n       - the '%m$' reordering syntax,\n       - the 'I' flag,\n       - width specifications referring to an argument,\n       - precision specifications referring to an argument,\n       - size specifiers,\n       - format specifiers other than 'o', 'u', 'x', 'X'.\n     What remains?\n     A directive\n       - starts with '%',\n       - is optionally followed by any of the characters '#', '0', '-', ' ',\n         '+', \"'\", each of which acts as a flag,\n       - is optionally followed by a width specification: a nonempty digit\n         sequence,\n       - is optionally followed by '.' and a precision specification: a\n         nonempty digit sequence,\n       - is finished by a specifier\n         - '%', that needs no argument,\n         - 'o', 'u', 'x', 'X', that need an unsigned integer argument.\n   */\n  size_t maxsize = 0;\n  unsigned int unnumbered_arg_count = 0;\n\n  for (; *format != '\\0';) {\n    if (*format++ == '%') {\n      /* A directive. */\n      unsigned int width = 0;\n      unsigned int precision = 0;\n      unsigned int length;\n      /* Parse flags. */\n      for (;;) {\n        if (*format == ' ' || *format == '+' || *format == '-'\n            || *format == '#' || *format == '0' || *format == '\\'')\n          format++;\n        else\n          break;\n      }\n      /* Parse width. */\n      if (*format == '*')\n        error(EXIT_FAILURE,0,\n              /* TRANSLATORS: An error message.\n                 The %s placeholder expands to a command-line option.  */\n              _(\"%s argument: A format directive with a variable width is not allowed here.\"),\n              param_name);\n      if (isdigit (*format)) {\n        do {\n          width = 10*width + (*format - '0');\n          format++;\n        } while (isdigit (*format));\n      }\n      /* Parse precision. */\n      if (*format == '.') {\n        format++;\n        if (*format == '*')\n          error(EXIT_FAILURE,0,\n                /* TRANSLATORS: An error message.\n                   The %s placeholder expands to a command-line option.  */\n                _(\"%s argument: A format directive with a variable precision is not allowed here.\"),\n                param_name);\n        if (isdigit (*format)) {\n          do {\n            precision = 10*precision + (*format - '0');\n            format++;\n          } while (isdigit (*format));\n        }\n      }\n      /* Parse size. */\n      switch (*format) {\n        case 'h': case 'l': case 'L': case 'q':\n        case 'j': case 'z': case 'Z': case 't':\n          error(EXIT_FAILURE,0,\n                /* TRANSLATORS: An error message.\n                   The %s placeholder expands to a command-line option.  */\n                _(\"%s argument: A format directive with a size is not allowed here.\"),\n                param_name);\n      }\n      /* Parse end of directive. */\n      switch (*format) {\n        case '%':\n          length = 1;\n          break;\n        case 'u': case 'o': case 'x': case 'X':\n          if (*format == 'u') {\n            length = (unsigned int) (sizeof (unsigned int) * CHAR_BIT\n                                     * 0.30103 /* binary -> decimal */\n                                    )\n                     + 1; /* turn floor into ceil */\n            if (length < precision)\n              length = precision;\n            length *= 2; /* estimate for FLAG_GROUP */\n            length += 1; /* account for leading sign */\n          } else if (*format == 'o') {\n            length = (unsigned int) (sizeof (unsigned int) * CHAR_BIT\n                                     * 0.333334 /* binary -> octal */\n                                    )\n                     + 1; /* turn floor into ceil */\n            if (length < precision)\n              length = precision;\n            length += 1; /* account for leading sign */\n          } else { /* 'x', 'X' */\n            length = (unsigned int) (sizeof (unsigned int) * CHAR_BIT\n                                     * 0.25 /* binary -> hexadecimal */\n                                    )\n                     + 1; /* turn floor into ceil */\n            if (length < precision)\n              length = precision;\n            length += 2; /* account for leading sign or alternate form */\n          }\n          unnumbered_arg_count++;\n          break;\n        default:\n          if (*format == '\\0')\n            error(EXIT_FAILURE,0,\n                  /* TRANSLATORS: An error message.\n                     The %s placeholder expands to a command-line option.  */\n                  _(\"%s argument: The string ends in the middle of a directive.\"),\n                  param_name);\n          else if (c_isprint(*format))\n            error(EXIT_FAILURE,0,\n                  /* TRANSLATORS: An error message.\n                     The %s placeholder expands to a command-line option.\n                     The %c placeholder expands to an unknown format directive.  */\n                  _(\"%s argument: The character '%c' is not a valid conversion specifier.\"),\n                  param_name,*format);\n          else\n            error(EXIT_FAILURE,0,\n                  /* TRANSLATORS: An error message.\n                     The %s placeholder expands to a command-line option.  */\n                  _(\"%s argument: The character that terminates the format directive is not a valid conversion specifier.\"),\n                  param_name);\n          abort(); /*NOTREACHED*/\n      }\n      format++;\n      if (length < width)\n        length = width;\n      maxsize += length;\n    } else\n      maxsize++;\n  }\n  if (unnumbered_arg_count > 1)\n    error(EXIT_FAILURE,0,\n          /* TRANSLATORS: An error message.\n             The %s placeholder expands to a command-line option.\n             The %u placeholder expands to the number of arguments consumed by the format string.  */\n          ngettext(\"%s argument: The format string consumes more than one argument: %u argument.\",\n                   \"%s argument: The format string consumes more than one argument: %u arguments.\",\n                   unnumbered_arg_count),\n          param_name,unnumbered_arg_count);\n  return maxsize;\n}\n\n/* Format strings. */\nstatic const char* ilseq_byte_subst;\nstatic const char* ilseq_wchar_subst;\nstatic const char* ilseq_unicode_subst;\n\n/* Maximum result size for each format string. */\nstatic size_t ilseq_byte_subst_size;\nstatic size_t ilseq_wchar_subst_size;\nstatic size_t ilseq_unicode_subst_size;\n\n/* Buffer of size ilseq_byte_subst_size+1. */\nstatic char* ilseq_byte_subst_buffer;\n#if HAVE_WCHAR_T\n/* Buffer of size ilseq_wchar_subst_size+1. */\nstatic char* ilseq_wchar_subst_buffer;\n#endif\n/* Buffer of size ilseq_unicode_subst_size+1. */\nstatic char* ilseq_unicode_subst_buffer;\n\n/* Auxiliary variables for subst_mb_to_uc_fallback. */\n/* Converter from locale encoding to UCS-4. */\nstatic iconv_t subst_mb_to_uc_cd;\n/* Buffer of size ilseq_byte_subst_size. */\nstatic unsigned int* subst_mb_to_uc_temp_buffer;\n\nstatic void subst_mb_to_uc_fallback\n            (const char* inbuf, size_t inbufsize,\n             void (*write_replacement) (const unsigned int *buf, size_t buflen,\n                                        void* callback_arg),\n             void* callback_arg,\n             void* data)\n{\n  for (; inbufsize > 0; inbuf++, inbufsize--) {\n    const char* inptr;\n    size_t inbytesleft;\n    char* outptr;\n    size_t outbytesleft;\n    sprintf(ilseq_byte_subst_buffer,\n            ilseq_byte_subst, (unsigned int)(unsigned char)*inbuf);\n    inptr = ilseq_byte_subst_buffer;\n    inbytesleft = strlen(ilseq_byte_subst_buffer);\n    outptr = (char*)subst_mb_to_uc_temp_buffer;\n    outbytesleft = ilseq_byte_subst_size*sizeof(unsigned int);\n    iconv(subst_mb_to_uc_cd,NULL,NULL,NULL,NULL);\n    if (iconv(subst_mb_to_uc_cd, (ICONV_CONST char**)&inptr,&inbytesleft, &outptr,&outbytesleft)\n        == (size_t)(-1)\n        || iconv(subst_mb_to_uc_cd, NULL,NULL, &outptr,&outbytesleft)\n           == (size_t)(-1))\n      error(EXIT_FAILURE,0,\n            /* TRANSLATORS: An error message.\n               The %s placeholder expands to a piece of text, specified through --byte-subst.  */\n            _(\"cannot convert byte substitution to Unicode: %s\"),\n            ilseq_byte_subst_buffer);\n    if (!(outbytesleft%sizeof(unsigned int) == 0))\n      abort();\n    write_replacement(subst_mb_to_uc_temp_buffer,\n                      ilseq_byte_subst_size-(outbytesleft/sizeof(unsigned int)),\n                      callback_arg);\n  }\n}\n\n/* Auxiliary variables for subst_uc_to_mb_fallback. */\n/* Converter from locale encoding to target encoding. */\nstatic iconv_t subst_uc_to_mb_cd;\n/* Buffer of size ilseq_unicode_subst_size*4. */\nstatic char* subst_uc_to_mb_temp_buffer;\n\nstatic void subst_uc_to_mb_fallback\n            (unsigned int code,\n             void (*write_replacement) (const char *buf, size_t buflen,\n                                        void* callback_arg),\n             void* callback_arg,\n             void* data)\n{\n  const char* inptr;\n  size_t inbytesleft;\n  char* outptr;\n  size_t outbytesleft;\n  sprintf(ilseq_unicode_subst_buffer, ilseq_unicode_subst, code);\n  inptr = ilseq_unicode_subst_buffer;\n  inbytesleft = strlen(ilseq_unicode_subst_buffer);\n  outptr = subst_uc_to_mb_temp_buffer;\n  outbytesleft = ilseq_unicode_subst_size*4;\n  iconv(subst_uc_to_mb_cd,NULL,NULL,NULL,NULL);\n  if (iconv(subst_uc_to_mb_cd, (ICONV_CONST char**)&inptr,&inbytesleft, &outptr,&outbytesleft)\n      == (size_t)(-1)\n      || iconv(subst_uc_to_mb_cd, NULL,NULL, &outptr,&outbytesleft)\n         == (size_t)(-1))\n    error(EXIT_FAILURE,0,\n          /* TRANSLATORS: An error message.\n             The %s placeholder expands to a piece of text, specified through --unicode-subst.  */\n          _(\"cannot convert unicode substitution to target encoding: %s\"),\n          ilseq_unicode_subst_buffer);\n  write_replacement(subst_uc_to_mb_temp_buffer,\n                    ilseq_unicode_subst_size*4-outbytesleft,\n                    callback_arg);\n}\n\n#if HAVE_WCHAR_T\n\n/* Auxiliary variables for subst_mb_to_wc_fallback. */\n/* Converter from locale encoding to wchar_t. */\nstatic iconv_t subst_mb_to_wc_cd;\n/* Buffer of size ilseq_byte_subst_size. */\nstatic wchar_t* subst_mb_to_wc_temp_buffer;\n\nstatic void subst_mb_to_wc_fallback\n            (const char* inbuf, size_t inbufsize,\n             void (*write_replacement) (const wchar_t *buf, size_t buflen,\n                                        void* callback_arg),\n             void* callback_arg,\n             void* data)\n{\n  for (; inbufsize > 0; inbuf++, inbufsize--) {\n    const char* inptr;\n    size_t inbytesleft;\n    char* outptr;\n    size_t outbytesleft;\n    sprintf(ilseq_byte_subst_buffer,\n            ilseq_byte_subst, (unsigned int)(unsigned char)*inbuf);\n    inptr = ilseq_byte_subst_buffer;\n    inbytesleft = strlen(ilseq_byte_subst_buffer);\n    outptr = (char*)subst_mb_to_wc_temp_buffer;\n    outbytesleft = ilseq_byte_subst_size*sizeof(wchar_t);\n    iconv(subst_mb_to_wc_cd,NULL,NULL,NULL,NULL);\n    if (iconv(subst_mb_to_wc_cd, (ICONV_CONST char**)&inptr,&inbytesleft, &outptr,&outbytesleft)\n        == (size_t)(-1)\n        || iconv(subst_mb_to_wc_cd, NULL,NULL, &outptr,&outbytesleft)\n           == (size_t)(-1))\n      error(EXIT_FAILURE,0,\n            /* TRANSLATORS: An error message.\n               The %s placeholder expands to a piece of text, specified through --byte-subst.  */\n            _(\"cannot convert byte substitution to wide string: %s\"),\n            ilseq_byte_subst_buffer);\n    if (!(outbytesleft%sizeof(wchar_t) == 0))\n      abort();\n    write_replacement(subst_mb_to_wc_temp_buffer,\n                      ilseq_byte_subst_size-(outbytesleft/sizeof(wchar_t)),\n                      callback_arg);\n  }\n}\n\n/* Auxiliary variables for subst_wc_to_mb_fallback. */\n/* Converter from locale encoding to target encoding. */\nstatic iconv_t subst_wc_to_mb_cd;\n/* Buffer of size ilseq_wchar_subst_size*4.\n   Hardcode factor 4, because MB_LEN_MAX is not reliable on some platforms. */\nstatic char* subst_wc_to_mb_temp_buffer;\n\nstatic void subst_wc_to_mb_fallback\n            (wchar_t code,\n             void (*write_replacement) (const char *buf, size_t buflen,\n                                        void* callback_arg),\n             void* callback_arg,\n             void* data)\n{\n  const char* inptr;\n  size_t inbytesleft;\n  char* outptr;\n  size_t outbytesleft;\n  sprintf(ilseq_wchar_subst_buffer, ilseq_wchar_subst, (unsigned int) code);\n  inptr = ilseq_wchar_subst_buffer;\n  inbytesleft = strlen(ilseq_wchar_subst_buffer);\n  outptr = subst_wc_to_mb_temp_buffer;\n  outbytesleft = ilseq_wchar_subst_size*4;\n  iconv(subst_wc_to_mb_cd,NULL,NULL,NULL,NULL);\n  if (iconv(subst_wc_to_mb_cd, (ICONV_CONST char**)&inptr,&inbytesleft, &outptr,&outbytesleft)\n      == (size_t)(-1)\n      || iconv(subst_wc_to_mb_cd, NULL,NULL, &outptr,&outbytesleft)\n         == (size_t)(-1))\n    error(EXIT_FAILURE,0,\n          /* TRANSLATORS: An error message.\n             The %s placeholder expands to a piece of text, specified through --widechar-subst.  */\n          _(\"cannot convert widechar substitution to target encoding: %s\"),\n          ilseq_wchar_subst_buffer);\n  write_replacement(subst_wc_to_mb_temp_buffer,\n                    ilseq_wchar_subst_size*4-outbytesleft,\n                    callback_arg);\n}\n\n#else\n\n#define subst_mb_to_wc_fallback NULL\n#define subst_wc_to_mb_fallback NULL\n\n#endif\n\n/* Auxiliary variables for subst_mb_to_mb_fallback. */\n/* Converter from locale encoding to target encoding. */\nstatic iconv_t subst_mb_to_mb_cd;\n/* Buffer of size ilseq_byte_subst_size*4. */\nstatic char* subst_mb_to_mb_temp_buffer;\n\nstatic void subst_mb_to_mb_fallback (const char* inbuf, size_t inbufsize)\n{\n  for (; inbufsize > 0; inbuf++, inbufsize--) {\n    const char* inptr;\n    size_t inbytesleft;\n    char* outptr;\n    size_t outbytesleft;\n    sprintf(ilseq_byte_subst_buffer,\n            ilseq_byte_subst, (unsigned int)(unsigned char)*inbuf);\n    inptr = ilseq_byte_subst_buffer;\n    inbytesleft = strlen(ilseq_byte_subst_buffer);\n    outptr = subst_mb_to_mb_temp_buffer;\n    outbytesleft = ilseq_byte_subst_size*4;\n    iconv(subst_mb_to_mb_cd,NULL,NULL,NULL,NULL);\n    if (iconv(subst_mb_to_mb_cd, (ICONV_CONST char**)&inptr,&inbytesleft, &outptr,&outbytesleft)\n        == (size_t)(-1)\n        || iconv(subst_mb_to_mb_cd, NULL,NULL, &outptr,&outbytesleft)\n           == (size_t)(-1))\n      error(EXIT_FAILURE,0,\n            /* TRANSLATORS: An error message.\n               The %s placeholder expands to a piece of text, specified through --byte-subst.  */\n            _(\"cannot convert byte substitution to target encoding: %s\"),\n            ilseq_byte_subst_buffer);\n    fwrite(subst_mb_to_mb_temp_buffer,1,ilseq_byte_subst_size*4-outbytesleft,\n           stdout);\n  }\n}\n\n/* ========================================================================= */\n\n/* Error messages during conversion.  */\n\nstatic void conversion_error_EILSEQ (const char* infilename)\n{\n  fflush(stdout);\n  if (column > 0)\n    putc('\\n',stderr);\n  error(0,0,\n        /* TRANSLATORS: An error message.\n           The placeholders expand to the input file name, a line number, and a column number.  */\n        _(\"%s:%u:%u: cannot convert\"),\n        infilename,line,column);\n}\n\nstatic void conversion_error_EINVAL (const char* infilename)\n{\n  fflush(stdout);\n  if (column > 0)\n    putc('\\n',stderr);\n  error(0,0,\n        /* TRANSLATORS: An error message.\n           The placeholders expand to the input file name, a line number, and a column number.\n           A \"shift sequence\" is a sequence of bytes that changes the state of the converter;\n           this concept exists only for \"stateful\" encodings like ISO-2022-JP.  */\n        _(\"%s:%u:%u: incomplete character or shift sequence\"),\n        infilename,line,column);\n}\n\nstatic void conversion_error_other (int errnum, const char* infilename)\n{\n  fflush(stdout);\n  if (column > 0)\n    putc('\\n',stderr);\n  error(0,errnum,\n        /* TRANSLATORS: The first part of an error message.\n           It is followed by a colon and a detail message.\n           The placeholders expand to the input file name, a line number, and a column number.  */\n        _(\"%s:%u:%u\"),\n        infilename,line,column);\n}\n\n/* Convert the input given in infile.  */\n\nstatic int convert (iconv_t cd, int infile, const char* infilename)\n{\n  char inbuf[4096+4096];\n  size_t inbufrest = 0;\n  int infile_error = 0;\n  char initial_outbuf[4096];\n  char *outbuf = initial_outbuf;\n  size_t outbufsize = sizeof(initial_outbuf);\n  int status = 0;\n\n#if O_BINARY\n  SET_BINARY(infile);\n#endif\n  line = 1; column = 0;\n  iconv(cd,NULL,NULL,NULL,NULL);\n  for (;;) {\n    size_t inbufsize;\n    /* Transfer the accumulated output to its destination, in case the\n       safe_read() call will block. */\n    fflush(stdout);\n    inbufsize = safe_read(infile,inbuf+4096,4096);\n    if (inbufsize == 0 || inbufsize == SAFE_READ_ERROR) {\n      infile_error = (inbufsize == SAFE_READ_ERROR ? errno : 0);\n      if (inbufrest == 0)\n        break;\n      else {\n        if (ilseq_byte_subst != NULL)\n          subst_mb_to_mb_fallback(inbuf+4096-inbufrest, inbufrest);\n        if (!silent)\n          conversion_error_EINVAL(infilename);\n        status = 1;\n        goto done;\n      }\n    } else {\n      const char* inptr = inbuf+4096-inbufrest;\n      size_t insize = inbufrest+inbufsize;\n      inbufrest = 0;\n      while (insize > 0) {\n        char* outptr = outbuf;\n        size_t outsize = outbufsize;\n        size_t res = iconv(cd,(ICONV_CONST char**)&inptr,&insize,&outptr,&outsize);\n        if (outptr != outbuf) {\n          int saved_errno = errno;\n          if (fwrite(outbuf,1,outptr-outbuf,stdout) < outptr-outbuf) {\n            status = 1;\n            goto done;\n          }\n          errno = saved_errno;\n        }\n        if (res == (size_t)(-1)) {\n          if (errno == EILSEQ) {\n            if (discard_unconvertible == 1) {\n              int one = 1;\n              iconvctl(cd,ICONV_SET_DISCARD_ILSEQ,&one);\n              discard_unconvertible = 2;\n              status = 1;\n            } else {\n              if (!silent)\n                conversion_error_EILSEQ(infilename);\n              status = 1;\n              goto done;\n            }\n          } else if (errno == EINVAL) {\n            if (inbufsize == 0 || insize > 4096) {\n              if (!silent)\n                conversion_error_EINVAL(infilename);\n              status = 1;\n              goto done;\n            } else {\n              inbufrest = insize;\n              if (insize > 0) {\n                /* Like memcpy(inbuf+4096-insize,inptr,insize), except that\n                   we cannot use memcpy here, because source and destination\n                   regions may overlap. */\n                char* restptr = inbuf+4096-insize;\n                do { *restptr++ = *inptr++; } while (--insize > 0);\n              }\n              break;\n            }\n          } else if (errno == E2BIG) {\n            if (outptr==outbuf) {\n              /* outbuf is too small. Double its size. */\n              if (outbuf != initial_outbuf)\n                free(outbuf);\n              outbufsize = 2*outbufsize;\n              if (outbufsize==0) /* integer overflow? */\n                xalloc_die();\n              outbuf = (char*)xmalloc(outbufsize);\n            }\n          } else {\n            if (!silent)\n              conversion_error_other(errno,infilename);\n            status = 1;\n            goto done;\n          }\n        }\n      }\n    }\n  }\n  for (;;) {\n    char* outptr = outbuf;\n    size_t outsize = outbufsize;\n    size_t res = iconv(cd,NULL,NULL,&outptr,&outsize);\n    if (outptr != outbuf) {\n      int saved_errno = errno;\n      if (fwrite(outbuf,1,outptr-outbuf,stdout) < outptr-outbuf) {\n        status = 1;\n        goto done;\n      }\n      errno = saved_errno;\n    }\n    if (res == (size_t)(-1)) {\n      if (errno == EILSEQ) {\n        if (discard_unconvertible == 1) {\n          int one = 1;\n          iconvctl(cd,ICONV_SET_DISCARD_ILSEQ,&one);\n          discard_unconvertible = 2;\n          status = 1;\n        } else {\n          if (!silent)\n            conversion_error_EILSEQ(infilename);\n          status = 1;\n          goto done;\n        }\n      } else if (errno == EINVAL) {\n        if (!silent)\n          conversion_error_EINVAL(infilename);\n        status = 1;\n        goto done;\n      } else if (errno == E2BIG) {\n        if (outptr==outbuf) {\n          /* outbuf is too small. Double its size. */\n          if (outbuf != initial_outbuf)\n            free(outbuf);\n          outbufsize = 2*outbufsize;\n          if (outbufsize==0) /* integer overflow? */\n            xalloc_die();\n          outbuf = (char*)xmalloc(outbufsize);\n        }\n      } else {\n        if (!silent)\n          conversion_error_other(errno,infilename);\n        status = 1;\n        goto done;\n      }\n    } else\n      break;\n  }\n  if (infile_error) {\n    fflush(stdout);\n    if (column > 0)\n      putc('\\n',stderr);\n    error(0,infile_error,\n          /* TRANSLATORS: An error message.\n             The placeholder expands to the input file name.  */\n          _(\"%s: I/O error\"),\n          infilename);\n    status = 1;\n    goto done;\n  }\n done:\n  if (outbuf != initial_outbuf)\n    free(outbuf);\n  return status;\n}\n\n/* ========================================================================= */\n\nint main (int argc, char* argv[])\n{\n  const char* fromcode = NULL;\n  const char* tocode = NULL;\n  int do_list = 0;\n  iconv_t cd;\n  struct iconv_fallbacks fallbacks;\n  struct iconv_hooks hooks;\n  int i;\n  int status;\n\n  set_program_name (argv[0]);\n#if HAVE_SETLOCALE\n  /* Needed for the locale dependent encodings, \"char\" and \"wchar_t\",\n     and for gettext. */\n  setlocale(LC_CTYPE,\"\");\n#if ENABLE_NLS\n  /* Needed for gettext. */\n  setlocale(LC_MESSAGES,\"\");\n#endif\n#endif\n#if ENABLE_NLS\n  bindtextdomain(\"libiconv\",relocate(LOCALEDIR));\n#endif\n  textdomain(\"libiconv\");\n  for (i = 1; i < argc;) {\n    size_t len = strlen(argv[i]);\n    if (!strcmp(argv[i],\"--\")) {\n      i++;\n      break;\n    }\n    if (!strcmp(argv[i],\"-f\")\n        /* --f ... --from-code */\n        || (len >= 3 && len <= 11 && !strncmp(argv[i],\"--from-code\",len))\n        /* --from-code=... */\n        || (len >= 12 && !strncmp(argv[i],\"--from-code=\",12))) {\n      if (len < 12)\n        if (i == argc-1) usage(1);\n      if (fromcode != NULL) usage(1);\n      if (len < 12) {\n        fromcode = argv[i+1];\n        i += 2;\n      } else {\n        fromcode = argv[i]+12;\n        i++;\n      }\n      continue;\n    }\n    if (!strcmp(argv[i],\"-t\")\n        /* --t ... --to-code */\n        || (len >= 3 && len <= 9 && !strncmp(argv[i],\"--to-code\",len))\n        /* --from-code=... */\n        || (len >= 10 && !strncmp(argv[i],\"--to-code=\",10))) {\n      if (len < 10)\n        if (i == argc-1) usage(1);\n      if (tocode != NULL) usage(1);\n      if (len < 10) {\n        tocode = argv[i+1];\n        i += 2;\n      } else {\n        tocode = argv[i]+10;\n        i++;\n      }\n      continue;\n    }\n    if (!strcmp(argv[i],\"-l\")\n        /* --l ... --list */\n        || (len >= 3 && len <= 6 && !strncmp(argv[i],\"--list\",len))) {\n      do_list = 1;\n      i++;\n      continue;\n    }\n    if (/* --by ... --byte-subst */\n        (len >= 4 && len <= 12 && !strncmp(argv[i],\"--byte-subst\",len))\n        /* --byte-subst=... */\n        || (len >= 13 && !strncmp(argv[i],\"--byte-subst=\",13))) {\n      if (len < 13) {\n        if (i == argc-1) usage(1);\n        ilseq_byte_subst = argv[i+1];\n        i += 2;\n      } else {\n        ilseq_byte_subst = argv[i]+13;\n        i++;\n      }\n      ilseq_byte_subst_size =\n        check_subst_formatstring(ilseq_byte_subst, \"--byte-subst\");\n      continue;\n    }\n    if (/* --w ... --widechar-subst */\n        (len >= 3 && len <= 16 && !strncmp(argv[i],\"--widechar-subst\",len))\n        /* --widechar-subst=... */\n        || (len >= 17 && !strncmp(argv[i],\"--widechar-subst=\",17))) {\n      if (len < 17) {\n        if (i == argc-1) usage(1);\n        ilseq_wchar_subst = argv[i+1];\n        i += 2;\n      } else {\n        ilseq_wchar_subst = argv[i]+17;\n        i++;\n      }\n      ilseq_wchar_subst_size =\n        check_subst_formatstring(ilseq_wchar_subst, \"--widechar-subst\");\n      continue;\n    }\n    if (/* --u ... --unicode-subst */\n        (len >= 3 && len <= 15 && !strncmp(argv[i],\"--unicode-subst\",len))\n        /* --unicode-subst=... */\n        || (len >= 16 && !strncmp(argv[i],\"--unicode-subst=\",16))) {\n      if (len < 16) {\n        if (i == argc-1) usage(1);\n        ilseq_unicode_subst = argv[i+1];\n        i += 2;\n      } else {\n        ilseq_unicode_subst = argv[i]+16;\n        i++;\n      }\n      ilseq_unicode_subst_size =\n        check_subst_formatstring(ilseq_unicode_subst, \"--unicode-subst\");\n      continue;\n    }\n    if /* --s ... --silent */\n       (len >= 3 && len <= 8 && !strncmp(argv[i],\"--silent\",len)) {\n      silent = 1;\n      i++;\n      continue;\n    }\n    if /* --h ... --help */\n       (len >= 3 && len <= 6 && !strncmp(argv[i],\"--help\",len)) {\n      usage(0);\n    }\n    if /* --v ... --version */\n       (len >= 3 && len <= 9 && !strncmp(argv[i],\"--version\",len)) {\n      print_version();\n    }\n#if O_BINARY\n    /* Backward compatibility with iconv <= 1.9.1. */\n    if /* --bi ... --binary */\n       (len >= 4 && len <= 8 && !strncmp(argv[i],\"--binary\",len)) {\n      i++;\n      continue;\n    }\n#endif\n    if (argv[i][0] == '-') {\n      const char *option = argv[i] + 1;\n      if (*option == '\\0')\n        usage(1);\n      for (; *option; option++)\n        switch (*option) {\n          case 'c': discard_unconvertible = 1; break;\n          case 's': silent = 1; break;\n          default: usage(1);\n        }\n      i++;\n      continue;\n    }\n    break;\n  }\n  if (do_list) {\n    if (i != 2 || i != argc)\n      usage(1);\n    iconvlist(print_one,NULL);\n    status = 0;\n  } else {\n#if O_BINARY\n    SET_BINARY(fileno(stdout));\n#endif\n    if (fromcode == NULL)\n      fromcode = \"char\";\n    if (tocode == NULL)\n      tocode = \"char\";\n    cd = iconv_open(tocode,fromcode);\n    if (cd == (iconv_t)(-1)) {\n      if (iconv_open(\"UCS-4\",fromcode) == (iconv_t)(-1))\n        error(0,0,\n              /* TRANSLATORS: An error message.\n                 The placeholder expands to the encoding name, specified through --from-code.  */\n              _(\"conversion from %s unsupported\"),\n              fromcode);\n      else if (iconv_open(tocode,\"UCS-4\") == (iconv_t)(-1))\n        error(0,0,\n              /* TRANSLATORS: An error message.\n                 The placeholder expands to the encoding name, specified through --to-code.  */\n              _(\"conversion to %s unsupported\"),\n              tocode);\n      else\n        error(0,0,\n              /* TRANSLATORS: An error message.\n                 The placeholders expand to the encoding names, specified through --from-code and --to-code, respectively.  */\n              _(\"conversion from %s to %s unsupported\"),\n              fromcode,tocode);\n      error(EXIT_FAILURE,0,\n            /* TRANSLATORS: Additional advice after an error message.\n               The %s placeholder expands to the program name.  */\n            _(\"try '%s -l' to get the list of supported encodings\"),\n            program_name);\n    }\n    /* Look at fromcode and tocode, to determine whether character widths\n       should be determined according to legacy CJK conventions. */\n    cjkcode = iconv_canonicalize(tocode);\n    if (!is_cjk_encoding(cjkcode))\n      cjkcode = iconv_canonicalize(fromcode);\n    /* Set up fallback routines for handling impossible conversions. */\n    if (ilseq_byte_subst != NULL)\n      ilseq_byte_subst_buffer = (char*)xmalloc((ilseq_byte_subst_size+1)*sizeof(char));\n    if (!discard_unconvertible) {\n      #if HAVE_WCHAR_T\n      if (ilseq_wchar_subst != NULL)\n        ilseq_wchar_subst_buffer = (char*)xmalloc((ilseq_wchar_subst_size+1)*sizeof(char));\n      #endif\n      if (ilseq_unicode_subst != NULL)\n        ilseq_unicode_subst_buffer = (char*)xmalloc((ilseq_unicode_subst_size+1)*sizeof(char));\n      if (ilseq_byte_subst != NULL) {\n        subst_mb_to_uc_cd = iconv_open(\"UCS-4-INTERNAL\",\"char\");\n        subst_mb_to_uc_temp_buffer = (unsigned int*)xmalloc(ilseq_byte_subst_size*sizeof(unsigned int));\n        #if HAVE_WCHAR_T\n        subst_mb_to_wc_cd = iconv_open(\"wchar_t\",\"char\");\n        subst_mb_to_wc_temp_buffer = (wchar_t*)xmalloc(ilseq_byte_subst_size*sizeof(wchar_t));\n        #endif\n        subst_mb_to_mb_cd = iconv_open(tocode,\"char\");\n        subst_mb_to_mb_temp_buffer = (char*)xmalloc(ilseq_byte_subst_size*4);\n      }\n      #if HAVE_WCHAR_T\n      if (ilseq_wchar_subst != NULL) {\n        subst_wc_to_mb_cd = iconv_open(tocode,\"char\");\n        subst_wc_to_mb_temp_buffer = (char*)xmalloc(ilseq_wchar_subst_size*4);\n      }\n      #endif\n      if (ilseq_unicode_subst != NULL) {\n        subst_uc_to_mb_cd = iconv_open(tocode,\"char\");\n        subst_uc_to_mb_temp_buffer = (char*)xmalloc(ilseq_unicode_subst_size*4);\n      }\n      fallbacks.mb_to_uc_fallback =\n        (ilseq_byte_subst != NULL ? subst_mb_to_uc_fallback : NULL);\n      fallbacks.uc_to_mb_fallback =\n        (ilseq_unicode_subst != NULL ? subst_uc_to_mb_fallback : NULL);\n      fallbacks.mb_to_wc_fallback =\n        (ilseq_byte_subst != NULL ? subst_mb_to_wc_fallback : NULL);\n      fallbacks.wc_to_mb_fallback =\n        (ilseq_wchar_subst != NULL ? subst_wc_to_mb_fallback : NULL);\n      fallbacks.data = NULL;\n      iconvctl(cd, ICONV_SET_FALLBACKS, &fallbacks);\n    }\n    /* Set up hooks for updating the line and column position. */\n    hooks.uc_hook = update_line_column;\n    hooks.wc_hook = NULL;\n    hooks.data = NULL;\n    iconvctl(cd, ICONV_SET_HOOKS, &hooks);\n    if (i == argc)\n      status = convert(cd,fileno(stdin),\n                       /* TRANSLATORS: A filename substitute denoting standard input.  */\n                       _(\"(stdin)\"));\n    else {\n      status = 0;\n      for (; i < argc; i++) {\n        const char* infilename = argv[i];\n        FILE* infile = fopen(infilename,\"r\");\n        if (infile == NULL) {\n          int saved_errno = errno;\n          error(0,saved_errno,\n                /* TRANSLATORS: The first part of an error message.\n                   It is followed by a colon and a detail message.\n                   The %s placeholder expands to the input file name.  */\n                _(\"%s\"),\n                infilename);\n          status = 1;\n        } else {\n          status |= convert(cd,fileno(infile),infilename);\n          fclose(infile);\n        }\n      }\n    }\n    iconv_close(cd);\n  }\n  if (ferror(stdout) || fclose(stdout)) {\n    error(0,0,\n          /* TRANSLATORS: An error message.  */\n          _(\"I/O error\"));\n    status = 1;\n  }\n  exit(status);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/src/iconv_no_i18n",
    "content": "#! /bin/sh\n\n# iconv_no_i18n - temporary wrapper script for .libs/iconv_no_i18n\n# Generated by libtool (GNU libtool) 2.4.6\n#\n# The iconv_no_i18n program cannot be directly executed until all the libtool\n# libraries that it depends on are installed.\n#\n# This wrapper script should never be moved out of the build directory.\n# If it is, it will not operate correctly.\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='s|\\([`\"$\\\\]\\)|\\\\\\1|g'\n\n# Be Bourne compatible\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac\nfi\nBIN_SH=xpg4; export BIN_SH # for Tru64\nDUALCASE=1; export DUALCASE # for MKS sh\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nrelink_command=\"\"\n\n# This environment variable determines our operation mode.\nif test \"$libtool_install_magic\" = \"%%%MAGIC variable%%%\"; then\n  # install mode needs the following variables:\n  generated_by_libtool_version='2.4.6'\n  notinst_deplibs=' ../lib/libiconv.la'\nelse\n  # When we are sourced in execute mode, $file and $ECHO are already set.\n  if test \"$libtool_execute_magic\" != \"%%%MAGIC variable%%%\"; then\n    file=\"$0\"\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n}\n    ECHO=\"printf %s\\\\n\"\n  fi\n\n# Very basic option parsing. These options are (a) specific to\n# the libtool wrapper, (b) are identical between the wrapper\n# /script/ and the wrapper /executable/ that is used only on\n# windows platforms, and (c) all begin with the string --lt-\n# (application programs are unlikely to have options that match\n# this pattern).\n#\n# There are only two supported options: --lt-debug and\n# --lt-dump-script. There is, deliberately, no --lt-help.\n#\n# The first argument to this parsing function should be the\n# script's ../libtool value, followed by no.\nlt_option_debug=\nfunc_parse_lt_options ()\n{\n  lt_script_arg0=$0\n  shift\n  for lt_opt\n  do\n    case \"$lt_opt\" in\n    --lt-debug) lt_option_debug=1 ;;\n    --lt-dump-script)\n        lt_dump_D=`$ECHO \"X$lt_script_arg0\" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`\n        test \"X$lt_dump_D\" = \"X$lt_script_arg0\" && lt_dump_D=.\n        lt_dump_F=`$ECHO \"X$lt_script_arg0\" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'`\n        cat \"$lt_dump_D/$lt_dump_F\"\n        exit 0\n      ;;\n    --lt-*)\n        $ECHO \"Unrecognized --lt- option: '$lt_opt'\" 1>&2\n        exit 1\n      ;;\n    esac\n  done\n\n  # Print the debug banner immediately:\n  if test -n \"$lt_option_debug\"; then\n    echo \"iconv_no_i18n:iconv_no_i18n:$LINENO: libtool wrapper (GNU libtool) 2.4.6\" 1>&2\n  fi\n}\n\n# Used when --lt-debug. Prints its arguments to stdout\n# (redirection is the responsibility of the caller)\nfunc_lt_dump_args ()\n{\n  lt_dump_args_N=1;\n  for lt_arg\n  do\n    $ECHO \"iconv_no_i18n:iconv_no_i18n:$LINENO: newargv[$lt_dump_args_N]: $lt_arg\"\n    lt_dump_args_N=`expr $lt_dump_args_N + 1`\n  done\n}\n\n# Core function for launching the target application\nfunc_exec_program_core ()\n{\n\n      if test -n \"$lt_option_debug\"; then\n        $ECHO \"iconv_no_i18n:iconv_no_i18n:$LINENO: newargv[0]: $progdir/$program\" 1>&2\n        func_lt_dump_args ${1+\"$@\"} 1>&2\n      fi\n      exec \"$progdir/$program\" ${1+\"$@\"}\n\n      $ECHO \"$0: cannot exec $program $*\" 1>&2\n      exit 1\n}\n\n# A function to encapsulate launching the target application\n# Strips options in the --lt-* namespace from $@ and\n# launches target application with the remaining arguments.\nfunc_exec_program ()\n{\n  case \" $* \" in\n  *\\ --lt-*)\n    for lt_wr_arg\n    do\n      case $lt_wr_arg in\n      --lt-*) ;;\n      *) set x \"$@\" \"$lt_wr_arg\"; shift;;\n      esac\n      shift\n    done ;;\n  esac\n  func_exec_program_core ${1+\"$@\"}\n}\n\n  # Parse options\n  func_parse_lt_options \"$0\" ${1+\"$@\"}\n\n  # Find the directory that this script lives in.\n  thisdir=`$ECHO \"$file\" | /usr/bin/sed 's%/[^/]*$%%'`\n  test \"x$thisdir\" = \"x$file\" && thisdir=.\n\n  # Follow symbolic links until we get to the real thisdir.\n  file=`ls -ld \"$file\" | /usr/bin/sed -n 's/.*-> //p'`\n  while test -n \"$file\"; do\n    destdir=`$ECHO \"$file\" | /usr/bin/sed 's%/[^/]*$%%'`\n\n    # If there was a directory component, then change thisdir.\n    if test \"x$destdir\" != \"x$file\"; then\n      case \"$destdir\" in\n      [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"$destdir\" ;;\n      *) thisdir=\"$thisdir/$destdir\" ;;\n      esac\n    fi\n\n    file=`$ECHO \"$file\" | /usr/bin/sed 's%^.*/%%'`\n    file=`ls -ld \"$thisdir/$file\" | /usr/bin/sed -n 's/.*-> //p'`\n  done\n\n  # Usually 'no', except on cygwin/mingw when embedded into\n  # the cwrapper.\n  WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no\n  if test \"$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then\n    # special case for '.'\n    if test \"$thisdir\" = \".\"; then\n      thisdir=`pwd`\n    fi\n    # remove .libs from thisdir\n    case \"$thisdir\" in\n    *[\\\\/].libs ) thisdir=`$ECHO \"$thisdir\" | /usr/bin/sed 's%[\\\\/][^\\\\/]*$%%'` ;;\n    .libs )   thisdir=. ;;\n    esac\n  fi\n\n  # Try to get the absolute directory name.\n  absdir=`cd \"$thisdir\" && pwd`\n  test -n \"$absdir\" && thisdir=\"$absdir\"\n\n  program='iconv_no_i18n'\n  progdir=\"$thisdir/.libs\"\n\n\n  if test -f \"$progdir/$program\"; then\n    # Add our own library path to DYLD_LIBRARY_PATH\n    DYLD_LIBRARY_PATH=\"/Users/wanghao/Desktop/demo/zbar/libiconv-1.15/lib/.libs:$DYLD_LIBRARY_PATH\"\n\n    # Some systems cannot cope with colon-terminated DYLD_LIBRARY_PATH\n    # The second colon is a workaround for a bug in BeOS R4 sed\n    DYLD_LIBRARY_PATH=`$ECHO \"$DYLD_LIBRARY_PATH\" | /usr/bin/sed 's/::*$//'`\n\n    export DYLD_LIBRARY_PATH\n\n    if test \"$libtool_execute_magic\" != \"%%%MAGIC variable%%%\"; then\n      # Run the actual program with our arguments.\n      func_exec_program ${1+\"$@\"}\n    fi\n  else\n    # The program doesn't exist.\n    $ECHO \"$0: error: '$progdir/$program' does not exist\" 1>&2\n    $ECHO \"This script is just a wrapper for $program.\" 1>&2\n    $ECHO \"See the libtool documentation for more information.\" 1>&2\n    exit 1\n  fi\nfi\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/src/iconv_no_i18n.c",
    "content": "#define NO_I18N\n#include \"iconv.c\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/Makefile",
    "content": "# Makefile.in generated by automake 1.15 from Makefile.am.\n# srclib/Makefile.  Generated from Makefile.in by configure.\n\n# Copyright (C) 1994-2014 Free Software Foundation, Inc.\n\n# This Makefile.in is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n# even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n# PARTICULAR PURPOSE.\n\n\n\n# Copyright (C) 2002-2017 Free Software Foundation, Inc.\n#\n# This file is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This file is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this file.  If not, see <http://www.gnu.org/licenses/>.\n#\n# As a special exception to the GNU General Public License,\n# this file may be distributed as part of a program that\n# contains a configuration script generated by Autoconf, under\n# the same distribution terms as the rest of that program.\n#\n# Generated by gnulib-tool.\n# Reproduce by: gnulib-tool --import --local-dir=gnulib-local --lib=libicrt --source-base=srclib --m4-base=srcm4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --makefile-name=Makefile.gnulib --no-conditional-dependencies --no-libtool --macro-prefix=gl --no-vc-files binary-io error gettext gettext-h libiconv-misc mbstate progname relocatable-prog safe-read sigpipe stdio stdlib strerror unistd uniwidth/width unlocked-io xalloc\n\n\nam__is_gnu_make = { \\\n  if test -z '$(MAKELEVEL)'; then \\\n    false; \\\n  elif test -n '$(MAKE_HOST)'; then \\\n    true; \\\n  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \\\n    true; \\\n  else \\\n    false; \\\n  fi; \\\n}\nam__make_running_with_option = \\\n  case $${target_option-} in \\\n      ?) ;; \\\n      *) echo \"am__make_running_with_option: internal error: invalid\" \\\n              \"target option '$${target_option-}' specified\" >&2; \\\n         exit 1;; \\\n  esac; \\\n  has_opt=no; \\\n  sane_makeflags=$$MAKEFLAGS; \\\n  if $(am__is_gnu_make); then \\\n    sane_makeflags=$$MFLAGS; \\\n  else \\\n    case $$MAKEFLAGS in \\\n      *\\\\[\\ \\\t]*) \\\n        bs=\\\\; \\\n        sane_makeflags=`printf '%s\\n' \"$$MAKEFLAGS\" \\\n          | sed \"s/$$bs$$bs[$$bs $$bs\t]*//g\"`;; \\\n    esac; \\\n  fi; \\\n  skip_next=no; \\\n  strip_trailopt () \\\n  { \\\n    flg=`printf '%s\\n' \"$$flg\" | sed \"s/$$1.*$$//\"`; \\\n  }; \\\n  for flg in $$sane_makeflags; do \\\n    test $$skip_next = yes && { skip_next=no; continue; }; \\\n    case $$flg in \\\n      *=*|--*) continue;; \\\n        -*I) strip_trailopt 'I'; skip_next=yes;; \\\n      -*I?*) strip_trailopt 'I';; \\\n        -*O) strip_trailopt 'O'; skip_next=yes;; \\\n      -*O?*) strip_trailopt 'O';; \\\n        -*l) strip_trailopt 'l'; skip_next=yes;; \\\n      -*l?*) strip_trailopt 'l';; \\\n      -[dEDm]) skip_next=yes;; \\\n      -[JT]) skip_next=yes;; \\\n    esac; \\\n    case $$flg in \\\n      *$$target_option*) has_opt=yes; break;; \\\n    esac; \\\n  done; \\\n  test $$has_opt = yes\nam__make_dryrun = (target_option=n; $(am__make_running_with_option))\nam__make_keepgoing = (target_option=k; $(am__make_running_with_option))\npkgdatadir = $(datadir)/libiconv\npkgincludedir = $(includedir)/libiconv\npkglibdir = $(libdir)/libiconv\npkglibexecdir = $(libexecdir)/libiconv\nam__cd = CDPATH=\"$${ZSH_VERSION+.}$(PATH_SEPARATOR)\" && cd\ninstall_sh_DATA = $(install_sh) -c -m 644\ninstall_sh_PROGRAM = $(install_sh) -c\ninstall_sh_SCRIPT = $(install_sh) -c\nINSTALL_HEADER = $(INSTALL_DATA)\ntransform = $(program_transform_name)\nNORMAL_INSTALL = :\nPRE_INSTALL = :\nPOST_INSTALL = :\nNORMAL_UNINSTALL = :\nPRE_UNINSTALL = :\nPOST_UNINSTALL = :\nbuild_triplet = x86_64-apple-darwin16.6.0\nhost_triplet = x86_64-apple-darwin16.6.0\nam__append_1 = uniwidth/width.c\nsubdir = srclib\nACLOCAL_M4 = $(top_srcdir)/aclocal.m4\nam__aclocal_m4_deps = $(top_srcdir)/srcm4/00gnulib.m4 \\\n\t$(top_srcdir)/srcm4/absolute-header.m4 \\\n\t$(top_srcdir)/srcm4/alloca.m4 \\\n\t$(top_srcdir)/srcm4/asm-underscore.m4 \\\n\t$(top_srcdir)/srcm4/canonicalize.m4 \\\n\t$(top_srcdir)/srcm4/codeset.m4 $(top_srcdir)/srcm4/dirname.m4 \\\n\t$(top_srcdir)/srcm4/double-slash-root.m4 \\\n\t$(top_srcdir)/srcm4/eealloc.m4 $(top_srcdir)/srcm4/environ.m4 \\\n\t$(top_srcdir)/srcm4/errno_h.m4 $(top_srcdir)/srcm4/error.m4 \\\n\t$(top_srcdir)/srcm4/extensions.m4 \\\n\t$(top_srcdir)/srcm4/extern-inline.m4 \\\n\t$(top_srcdir)/srcm4/fcntl-o.m4 $(top_srcdir)/srcm4/fcntl_h.m4 \\\n\t$(top_srcdir)/srcm4/getprogname.m4 \\\n\t$(top_srcdir)/srcm4/gettext.m4 \\\n\t$(top_srcdir)/srcm4/gettimeofday.m4 \\\n\t$(top_srcdir)/srcm4/gnulib-common.m4 \\\n\t$(top_srcdir)/srcm4/gnulib-comp.m4 \\\n\t$(top_srcdir)/srcm4/iconv.m4 \\\n\t$(top_srcdir)/srcm4/include_next.m4 \\\n\t$(top_srcdir)/srcm4/intlmacosx.m4 \\\n\t$(top_srcdir)/srcm4/largefile.m4 $(top_srcdir)/srcm4/lib-ld.m4 \\\n\t$(top_srcdir)/srcm4/lib-link.m4 \\\n\t$(top_srcdir)/srcm4/lib-prefix.m4 \\\n\t$(top_srcdir)/srcm4/libunistring-base.m4 \\\n\t$(top_srcdir)/srcm4/limits-h.m4 \\\n\t$(top_srcdir)/srcm4/longlong.m4 $(top_srcdir)/srcm4/lstat.m4 \\\n\t$(top_srcdir)/srcm4/malloc.m4 $(top_srcdir)/srcm4/malloca.m4 \\\n\t$(top_srcdir)/srcm4/mbstate_t.m4 \\\n\t$(top_srcdir)/srcm4/msvc-inval.m4 \\\n\t$(top_srcdir)/srcm4/msvc-nothrow.m4 \\\n\t$(top_srcdir)/srcm4/multiarch.m4 $(top_srcdir)/srcm4/nls.m4 \\\n\t$(top_srcdir)/srcm4/nocrash.m4 $(top_srcdir)/srcm4/off_t.m4 \\\n\t$(top_srcdir)/srcm4/pathmax.m4 $(top_srcdir)/srcm4/po.m4 \\\n\t$(top_srcdir)/srcm4/progtest.m4 $(top_srcdir)/srcm4/raise.m4 \\\n\t$(top_srcdir)/srcm4/read.m4 $(top_srcdir)/srcm4/readlink.m4 \\\n\t$(top_srcdir)/srcm4/relocatable-lib.m4 \\\n\t$(top_srcdir)/srcm4/relocatable.m4 \\\n\t$(top_srcdir)/srcm4/safe-read.m4 $(top_srcdir)/srcm4/setenv.m4 \\\n\t$(top_srcdir)/srcm4/signal_h.m4 \\\n\t$(top_srcdir)/srcm4/signalblocking.m4 \\\n\t$(top_srcdir)/srcm4/sigpipe.m4 $(top_srcdir)/srcm4/ssize_t.m4 \\\n\t$(top_srcdir)/srcm4/stat.m4 $(top_srcdir)/srcm4/stdbool.m4 \\\n\t$(top_srcdir)/srcm4/stddef_h.m4 $(top_srcdir)/srcm4/stdint.m4 \\\n\t$(top_srcdir)/srcm4/stdio_h.m4 $(top_srcdir)/srcm4/stdlib_h.m4 \\\n\t$(top_srcdir)/srcm4/strerror.m4 \\\n\t$(top_srcdir)/srcm4/string_h.m4 \\\n\t$(top_srcdir)/srcm4/sys_socket_h.m4 \\\n\t$(top_srcdir)/srcm4/sys_stat_h.m4 \\\n\t$(top_srcdir)/srcm4/sys_time_h.m4 \\\n\t$(top_srcdir)/srcm4/sys_types_h.m4 \\\n\t$(top_srcdir)/srcm4/time_h.m4 $(top_srcdir)/srcm4/unistd_h.m4 \\\n\t$(top_srcdir)/srcm4/unlocked-io.m4 \\\n\t$(top_srcdir)/srcm4/visibility.m4 \\\n\t$(top_srcdir)/srcm4/warn-on-use.m4 \\\n\t$(top_srcdir)/srcm4/wchar_t.m4 $(top_srcdir)/srcm4/wint_t.m4 \\\n\t$(top_srcdir)/m4/cp.m4 $(top_srcdir)/m4/eilseq.m4 \\\n\t$(top_srcdir)/m4/endian.m4 $(top_srcdir)/m4/libtool.m4 \\\n\t$(top_srcdir)/m4/ln.m4 $(top_srcdir)/m4/ltoptions.m4 \\\n\t$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \\\n\t$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac\nam__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \\\n\t$(ACLOCAL_M4)\nDIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)\nmkinstalldirs = $(SHELL) $(top_srcdir)/build-aux/mkinstalldirs\nCONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/lib/config.h\nCONFIG_CLEAN_FILES =\nCONFIG_CLEAN_VPATH_FILES =\nLIBRARIES = $(noinst_LIBRARIES)\nAM_V_AR = $(am__v_AR_$(V))\nam__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY))\nam__v_AR_0 = @echo \"  AR      \" $@;\nam__v_AR_1 = \nlibicrt_a_AR = $(AR) $(ARFLAGS)\nam__DEPENDENCIES_1 =\nam__libicrt_a_SOURCES_DIST = allocator.c areadlink.c binary-io.h \\\n\tbinary-io.c careadlinkat.c dirname-lgpl.c basename-lgpl.c \\\n\tstripslash.c getprogname.h getprogname.c gettext.h malloca.c \\\n\tprogname.h progname.c safe-read.c unistd.c uniwidth/width.c \\\n\txalloc.h xmalloc.c xstrdup.c xreadlink.c\nam__dirstamp = $(am__leading_dot)dirstamp\nam__objects_1 = uniwidth/width.$(OBJEXT)\nam_libicrt_a_OBJECTS = allocator.$(OBJEXT) areadlink.$(OBJEXT) \\\n\tbinary-io.$(OBJEXT) careadlinkat.$(OBJEXT) \\\n\tdirname-lgpl.$(OBJEXT) basename-lgpl.$(OBJEXT) \\\n\tstripslash.$(OBJEXT) getprogname.$(OBJEXT) malloca.$(OBJEXT) \\\n\tprogname.$(OBJEXT) safe-read.$(OBJEXT) unistd.$(OBJEXT) \\\n\t$(am__objects_1) xmalloc.$(OBJEXT) xstrdup.$(OBJEXT) \\\n\txreadlink.$(OBJEXT)\nlibicrt_a_OBJECTS = $(am_libicrt_a_OBJECTS)\nAM_V_P = $(am__v_P_$(V))\nam__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))\nam__v_P_0 = false\nam__v_P_1 = :\nAM_V_GEN = $(am__v_GEN_$(V))\nam__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))\nam__v_GEN_0 = @echo \"  GEN     \" $@;\nam__v_GEN_1 = \nAM_V_at = $(am__v_at_$(V))\nam__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))\nam__v_at_0 = @\nam__v_at_1 = \nDEFAULT_INCLUDES = -I. -I$(top_builddir) -I$(top_builddir)/lib\ndepcomp =\nam__depfiles_maybe =\nCOMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \\\n\t$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)\nAM_V_lt = $(am__v_lt_$(V))\nam__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))\nam__v_lt_0 = --silent\nam__v_lt_1 = \nLTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \\\n\t$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \\\n\t$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \\\n\t$(AM_CFLAGS) $(CFLAGS)\nAM_V_CC = $(am__v_CC_$(V))\nam__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))\nam__v_CC_0 = @echo \"  CC      \" $@;\nam__v_CC_1 = \nCCLD = $(CC)\nLINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \\\n\t$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \\\n\t$(AM_LDFLAGS) $(LDFLAGS) -o $@\nAM_V_CCLD = $(am__v_CCLD_$(V))\nam__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))\nam__v_CCLD_0 = @echo \"  CCLD    \" $@;\nam__v_CCLD_1 = \nSOURCES = $(libicrt_a_SOURCES) $(EXTRA_libicrt_a_SOURCES)\nDIST_SOURCES = $(am__libicrt_a_SOURCES_DIST) \\\n\t$(EXTRA_libicrt_a_SOURCES)\nam__can_run_installinfo = \\\n  case $$AM_UPDATE_INFO_DIR in \\\n    n|no|NO) false;; \\\n    *) (install-info --version) >/dev/null 2>&1;; \\\n  esac\nam__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)\n# Read a list of newline-separated strings from the standard input,\n# and print each of them once, without duplicates.  Input order is\n# *not* preserved.\nam__uniquify_input = $(AWK) '\\\n  BEGIN { nonempty = 0; } \\\n  { items[$$0] = 1; nonempty = 1; } \\\n  END { if (nonempty) { for (i in items) print i; }; } \\\n'\n# Make sure the list of sources is unique.  This is necessary because,\n# e.g., the same source file might be shared among _SOURCES variables\n# for different programs/libraries.\nam__define_uniq_tagged_files = \\\n  list='$(am__tagged_files)'; \\\n  unique=`for i in $$list; do \\\n    if test -f \"$$i\"; then echo $$i; else echo $(srcdir)/$$i; fi; \\\n  done | $(am__uniquify_input)`\nETAGS = etags\nCTAGS = ctags\nam__DIST_COMMON = $(srcdir)/Makefile.gnulib $(srcdir)/Makefile.in \\\n\t$(top_srcdir)/build-aux/mkinstalldirs\nDISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)\nACLOCAL = ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/missing aclocal-1.15\nALLOCA = \nALLOCA_H = alloca.h\nAMTAR = $${TAR-tar}\nAM_DEFAULT_VERBOSITY = 1\nAPPLE_UNIVERSAL_BUILD = 0\nAR = ar\nARFLAGS = cr\nAS = as\nASM_SYMBOL_PREFIX = \"_\"\nAUTOCONF = ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/missing autoconf\nAUTOHEADER = ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/missing autoheader\nAUTOMAKE = ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/missing automake-1.15\nAWK = awk\nBITSIZEOF_PTRDIFF_T = 64\nBITSIZEOF_SIG_ATOMIC_T = 32\nBITSIZEOF_SIZE_T = 64\nBITSIZEOF_WCHAR_T = 32\nBITSIZEOF_WINT_T = 32\nBROKEN_WCHAR_H = 0\nCC = gcc\nCCDEPMODE = depmode=none\nCFLAGS = -g -O2\nCFLAG_VISIBILITY = -fvisibility=hidden\nCP = cp -p\nCPP = gcc -E\nCPPFLAGS = \nCYGPATH_W = echo\nDEFS = -DHAVE_CONFIG_H -DEXEEXT=\\\"\\\"\nDEPDIR = .deps\nDLLTOOL = false\nDLL_VARIABLE = \nDSYMUTIL = dsymutil\nDUMPBIN = \nECHO_C = \\c\nECHO_N = \nECHO_T = \nEGREP = /usr/bin/grep -E\nEILSEQ = \nEMULTIHOP_HIDDEN = \nEMULTIHOP_VALUE = \nENOLINK_HIDDEN = \nENOLINK_VALUE = \nEOVERFLOW_HIDDEN = \nEOVERFLOW_VALUE = \nERRNO_H = \nEXEEXT = \nFGREP = /usr/bin/grep -F\nGETTEXT_MACRO_VERSION = 0.19\nGMSGFMT = :\nGMSGFMT_015 = :\nGNULIB_ATOLL = 0\nGNULIB_CALLOC_POSIX = 0\nGNULIB_CANONICALIZE_FILE_NAME = 1\nGNULIB_CHDIR = 0\nGNULIB_CHOWN = 0\nGNULIB_CLOSE = 0\nGNULIB_DPRINTF = 0\nGNULIB_DUP = 0\nGNULIB_DUP2 = 0\nGNULIB_DUP3 = 0\nGNULIB_ENVIRON = 1\nGNULIB_EUIDACCESS = 0\nGNULIB_FACCESSAT = 0\nGNULIB_FCHDIR = 0\nGNULIB_FCHMODAT = 0\nGNULIB_FCHOWNAT = 0\nGNULIB_FCLOSE = 0\nGNULIB_FCNTL = 0\nGNULIB_FDATASYNC = 0\nGNULIB_FDOPEN = 0\nGNULIB_FFLUSH = 0\nGNULIB_FFSL = 0\nGNULIB_FFSLL = 0\nGNULIB_FGETC = 1\nGNULIB_FGETS = 1\nGNULIB_FOPEN = 0\nGNULIB_FPRINTF = 1\nGNULIB_FPRINTF_POSIX = 0\nGNULIB_FPURGE = 0\nGNULIB_FPUTC = 1\nGNULIB_FPUTS = 1\nGNULIB_FREAD = 1\nGNULIB_FREOPEN = 0\nGNULIB_FSCANF = 1\nGNULIB_FSEEK = 0\nGNULIB_FSEEKO = 0\nGNULIB_FSTAT = 0\nGNULIB_FSTATAT = 0\nGNULIB_FSYNC = 0\nGNULIB_FTELL = 0\nGNULIB_FTELLO = 0\nGNULIB_FTRUNCATE = 0\nGNULIB_FUTIMENS = 0\nGNULIB_FWRITE = 1\nGNULIB_GETC = 1\nGNULIB_GETCHAR = 1\nGNULIB_GETCWD = 0\nGNULIB_GETDELIM = 0\nGNULIB_GETDOMAINNAME = 0\nGNULIB_GETDTABLESIZE = 0\nGNULIB_GETGROUPS = 0\nGNULIB_GETHOSTNAME = 0\nGNULIB_GETLINE = 0\nGNULIB_GETLOADAVG = 0\nGNULIB_GETLOGIN = 0\nGNULIB_GETLOGIN_R = 0\nGNULIB_GETPAGESIZE = 0\nGNULIB_GETSUBOPT = 0\nGNULIB_GETTIMEOFDAY = 1\nGNULIB_GETUSERSHELL = 0\nGNULIB_GRANTPT = 0\nGNULIB_GROUP_MEMBER = 0\nGNULIB_ISATTY = 0\nGNULIB_LCHMOD = 0\nGNULIB_LCHOWN = 0\nGNULIB_LINK = 0\nGNULIB_LINKAT = 0\nGNULIB_LSEEK = 0\nGNULIB_LSTAT = 1\nGNULIB_MALLOC_POSIX = 1\nGNULIB_MBSCASECMP = 0\nGNULIB_MBSCASESTR = 0\nGNULIB_MBSCHR = 0\nGNULIB_MBSCSPN = 0\nGNULIB_MBSLEN = 0\nGNULIB_MBSNCASECMP = 0\nGNULIB_MBSNLEN = 0\nGNULIB_MBSPBRK = 0\nGNULIB_MBSPCASECMP = 0\nGNULIB_MBSRCHR = 0\nGNULIB_MBSSEP = 0\nGNULIB_MBSSPN = 0\nGNULIB_MBSSTR = 0\nGNULIB_MBSTOK_R = 0\nGNULIB_MBTOWC = 0\nGNULIB_MEMCHR = 0\nGNULIB_MEMMEM = 0\nGNULIB_MEMPCPY = 0\nGNULIB_MEMRCHR = 0\nGNULIB_MKDIRAT = 0\nGNULIB_MKDTEMP = 0\nGNULIB_MKFIFO = 0\nGNULIB_MKFIFOAT = 0\nGNULIB_MKNOD = 0\nGNULIB_MKNODAT = 0\nGNULIB_MKOSTEMP = 0\nGNULIB_MKOSTEMPS = 0\nGNULIB_MKSTEMP = 0\nGNULIB_MKSTEMPS = 0\nGNULIB_MKTIME = 0\nGNULIB_NANOSLEEP = 0\nGNULIB_NONBLOCKING = 0\nGNULIB_OBSTACK_PRINTF = 0\nGNULIB_OBSTACK_PRINTF_POSIX = 0\nGNULIB_OPEN = 0\nGNULIB_OPENAT = 0\nGNULIB_OVERRIDES_WINT_T = 0\nGNULIB_PCLOSE = 0\nGNULIB_PERROR = 0\nGNULIB_PIPE = 0\nGNULIB_PIPE2 = 0\nGNULIB_POPEN = 0\nGNULIB_POSIX_OPENPT = 0\nGNULIB_PREAD = 0\nGNULIB_PRINTF = 1\nGNULIB_PRINTF_POSIX = 0\nGNULIB_PTHREAD_SIGMASK = 0\nGNULIB_PTSNAME = 0\nGNULIB_PTSNAME_R = 0\nGNULIB_PUTC = 1\nGNULIB_PUTCHAR = 1\nGNULIB_PUTENV = 0\nGNULIB_PUTS = 1\nGNULIB_PWRITE = 0\nGNULIB_QSORT_R = 0\nGNULIB_RAISE = 1\nGNULIB_RANDOM = 0\nGNULIB_RANDOM_R = 0\nGNULIB_RAWMEMCHR = 0\nGNULIB_READ = 1\nGNULIB_READLINK = 1\nGNULIB_READLINKAT = 0\nGNULIB_REALLOC_POSIX = 0\nGNULIB_REALPATH = 1\nGNULIB_REMOVE = 0\nGNULIB_RENAME = 0\nGNULIB_RENAMEAT = 0\nGNULIB_RMDIR = 0\nGNULIB_RPMATCH = 0\nGNULIB_SCANF = 1\nGNULIB_SECURE_GETENV = 0\nGNULIB_SETENV = 0\nGNULIB_SETHOSTNAME = 0\nGNULIB_SIGACTION = 0\nGNULIB_SIGNAL_H_SIGPIPE = 1\nGNULIB_SIGPROCMASK = 1\nGNULIB_SLEEP = 0\nGNULIB_SNPRINTF = 0\nGNULIB_SPRINTF_POSIX = 0\nGNULIB_STAT = 1\nGNULIB_STDIO_H_NONBLOCKING = 0\nGNULIB_STDIO_H_SIGPIPE = 1\nGNULIB_STPCPY = 0\nGNULIB_STPNCPY = 0\nGNULIB_STRCASESTR = 0\nGNULIB_STRCHRNUL = 0\nGNULIB_STRDUP = 0\nGNULIB_STRERROR = 1\nGNULIB_STRERROR_R = 0\nGNULIB_STRNCAT = 0\nGNULIB_STRNDUP = 0\nGNULIB_STRNLEN = 0\nGNULIB_STRPBRK = 0\nGNULIB_STRPTIME = 0\nGNULIB_STRSEP = 0\nGNULIB_STRSIGNAL = 0\nGNULIB_STRSTR = 0\nGNULIB_STRTOD = 0\nGNULIB_STRTOK_R = 0\nGNULIB_STRTOLL = 0\nGNULIB_STRTOULL = 0\nGNULIB_STRVERSCMP = 0\nGNULIB_SYMLINK = 0\nGNULIB_SYMLINKAT = 0\nGNULIB_SYSTEM_POSIX = 0\nGNULIB_TIMEGM = 0\nGNULIB_TIME_R = 0\nGNULIB_TIME_RZ = 0\nGNULIB_TMPFILE = 0\nGNULIB_TTYNAME_R = 0\nGNULIB_UNISTD_H_NONBLOCKING = 0\nGNULIB_UNISTD_H_SIGPIPE = 1\nGNULIB_UNLINK = 0\nGNULIB_UNLINKAT = 0\nGNULIB_UNLOCKPT = 0\nGNULIB_UNSETENV = 0\nGNULIB_USLEEP = 0\nGNULIB_UTIMENSAT = 0\nGNULIB_VASPRINTF = 0\nGNULIB_VDPRINTF = 0\nGNULIB_VFPRINTF = 1\nGNULIB_VFPRINTF_POSIX = 0\nGNULIB_VFSCANF = 0\nGNULIB_VPRINTF = 1\nGNULIB_VPRINTF_POSIX = 0\nGNULIB_VSCANF = 0\nGNULIB_VSNPRINTF = 0\nGNULIB_VSPRINTF_POSIX = 0\nGNULIB_WCTOMB = 0\nGNULIB_WRITE = 0\nGNULIB__EXIT = 0\nGREP = /usr/bin/grep\nHAVE_ATOLL = 1\nHAVE_C99_STDINT_H = 0\nHAVE_CANONICALIZE_FILE_NAME = 0\nHAVE_CHOWN = 1\nHAVE_DECL_ENVIRON = 0\nHAVE_DECL_FCHDIR = 1\nHAVE_DECL_FDATASYNC = 1\nHAVE_DECL_FPURGE = 1\nHAVE_DECL_FSEEKO = 1\nHAVE_DECL_FTELLO = 1\nHAVE_DECL_GETDELIM = 1\nHAVE_DECL_GETDOMAINNAME = 1\nHAVE_DECL_GETLINE = 1\nHAVE_DECL_GETLOADAVG = 1\nHAVE_DECL_GETLOGIN = 1\nHAVE_DECL_GETLOGIN_R = 1\nHAVE_DECL_GETPAGESIZE = 1\nHAVE_DECL_GETUSERSHELL = 1\nHAVE_DECL_LOCALTIME_R = 1\nHAVE_DECL_MEMMEM = 1\nHAVE_DECL_MEMRCHR = 1\nHAVE_DECL_OBSTACK_PRINTF = 1\nHAVE_DECL_SETENV = 1\nHAVE_DECL_SETHOSTNAME = 1\nHAVE_DECL_SNPRINTF = 1\nHAVE_DECL_STRDUP = 1\nHAVE_DECL_STRERROR_R = 1\nHAVE_DECL_STRNDUP = 1\nHAVE_DECL_STRNLEN = 1\nHAVE_DECL_STRSIGNAL = 1\nHAVE_DECL_STRTOK_R = 1\nHAVE_DECL_TTYNAME_R = 1\nHAVE_DECL_UNSETENV = 1\nHAVE_DECL_VSNPRINTF = 1\nHAVE_DPRINTF = 1\nHAVE_DUP2 = 1\nHAVE_DUP3 = 1\nHAVE_EUIDACCESS = 1\nHAVE_FACCESSAT = 1\nHAVE_FCHDIR = 1\nHAVE_FCHMODAT = 1\nHAVE_FCHOWNAT = 1\nHAVE_FCNTL = 1\nHAVE_FDATASYNC = 1\nHAVE_FFSL = 1\nHAVE_FFSLL = 1\nHAVE_FSEEKO = 1\nHAVE_FSTATAT = 1\nHAVE_FSYNC = 1\nHAVE_FTELLO = 1\nHAVE_FTRUNCATE = 1\nHAVE_FUTIMENS = 1\nHAVE_GETDTABLESIZE = 1\nHAVE_GETGROUPS = 1\nHAVE_GETHOSTNAME = 1\nHAVE_GETLOGIN = 1\nHAVE_GETPAGESIZE = 1\nHAVE_GETSUBOPT = 1\nHAVE_GETTIMEOFDAY = 1\nHAVE_GRANTPT = 1\nHAVE_GROUP_MEMBER = 1\nHAVE_INTTYPES_H = 1\nHAVE_LCHMOD = 1\nHAVE_LCHOWN = 1\nHAVE_LINK = 1\nHAVE_LINKAT = 1\nHAVE_LONG_LONG_INT = 1\nHAVE_LSTAT = 1\nHAVE_MAX_ALIGN_T = 1\nHAVE_MBSLEN = 0\nHAVE_MEMCHR = 1\nHAVE_MEMPCPY = 1\nHAVE_MKDIRAT = 1\nHAVE_MKDTEMP = 1\nHAVE_MKFIFO = 1\nHAVE_MKFIFOAT = 1\nHAVE_MKNOD = 1\nHAVE_MKNODAT = 1\nHAVE_MKOSTEMP = 1\nHAVE_MKOSTEMPS = 1\nHAVE_MKSTEMP = 1\nHAVE_MKSTEMPS = 1\nHAVE_MSVC_INVALID_PARAMETER_HANDLER = 0\nHAVE_NANOSLEEP = 1\nHAVE_OPENAT = 1\nHAVE_OS_H = 0\nHAVE_PCLOSE = 1\nHAVE_PIPE = 1\nHAVE_PIPE2 = 1\nHAVE_POPEN = 1\nHAVE_POSIX_OPENPT = 1\nHAVE_POSIX_SIGNALBLOCKING = 1\nHAVE_PREAD = 1\nHAVE_PTHREAD_SIGMASK = 1\nHAVE_PTSNAME = 1\nHAVE_PTSNAME_R = 1\nHAVE_PWRITE = 1\nHAVE_QSORT_R = 1\nHAVE_RAISE = 1\nHAVE_RANDOM = 1\nHAVE_RANDOM_H = 1\nHAVE_RANDOM_R = 1\nHAVE_RAWMEMCHR = 1\nHAVE_READLINK = 1\nHAVE_READLINKAT = 1\nHAVE_REALPATH = 1\nHAVE_RENAMEAT = 1\nHAVE_RPMATCH = 1\nHAVE_SECURE_GETENV = 1\nHAVE_SETENV = 1\nHAVE_SETHOSTNAME = 1\nHAVE_SIGACTION = 1\nHAVE_SIGHANDLER_T = 0\nHAVE_SIGINFO_T = 1\nHAVE_SIGNED_SIG_ATOMIC_T = 1\nHAVE_SIGNED_WCHAR_T = 1\nHAVE_SIGNED_WINT_T = 1\nHAVE_SIGSET_T = 1\nHAVE_SLEEP = 1\nHAVE_STDINT_H = 1\nHAVE_STPCPY = 1\nHAVE_STPNCPY = 1\nHAVE_STRCASESTR = 1\nHAVE_STRCHRNUL = 1\nHAVE_STRPBRK = 1\nHAVE_STRPTIME = 1\nHAVE_STRSEP = 1\nHAVE_STRTOD = 1\nHAVE_STRTOLL = 1\nHAVE_STRTOULL = 1\nHAVE_STRUCT_RANDOM_DATA = 1\nHAVE_STRUCT_SIGACTION_SA_SIGACTION = 1\nHAVE_STRUCT_TIMEVAL = 1\nHAVE_STRVERSCMP = 1\nHAVE_SYMLINK = 1\nHAVE_SYMLINKAT = 1\nHAVE_SYS_BITYPES_H = 0\nHAVE_SYS_INTTYPES_H = 0\nHAVE_SYS_LOADAVG_H = 0\nHAVE_SYS_PARAM_H = 0\nHAVE_SYS_TIME_H = 1\nHAVE_SYS_TYPES_H = 1\nHAVE_TIMEGM = 1\nHAVE_TIMEZONE_T = 0\nHAVE_TYPE_VOLATILE_SIG_ATOMIC_T = 1\nHAVE_UNISTD_H = 1\nHAVE_UNLINKAT = 1\nHAVE_UNLOCKPT = 1\nHAVE_UNSIGNED_LONG_LONG_INT = 1\nHAVE_USLEEP = 1\nHAVE_UTIMENSAT = 1\nHAVE_VASPRINTF = 1\nHAVE_VDPRINTF = 1\nHAVE_VISIBILITY = 1\nHAVE_WCHAR_H = 1\nHAVE_WCHAR_T = 1\nHAVE_WINSOCK2_H = 0\nHAVE__BOOL = 1\nHAVE__EXIT = 1\nICONV_CONST = \nINCLUDE_NEXT = include_next\nINCLUDE_NEXT_AS_FIRST_DIRECTIVE = include_next\nINSTALL = /usr/bin/install -c\nINSTALL_DATA = ${INSTALL} -m 644\nINSTALL_PROGRAM = ${INSTALL}\nINSTALL_PROGRAM_ENV = \nINSTALL_SCRIPT = ${INSTALL}\nINSTALL_STRIP_PROGRAM = $(install_sh) -c -s\nINTLLIBS = \nINTL_MACOSX_LIBS = -Wl,-framework -Wl,CoreFoundation\nLD = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld\nLDFLAGS = \nLIBICONV = -liconv\nLIBICRT_LIBDEPS = \nLIBICRT_LTLIBDEPS = \nLIBINTL = \nLIBOBJS = \nLIBS = \nLIBTOOL = /bin/sh $(top_builddir)/libtool\nLIBUNISTRING_UNITYPES_H = unitypes.h\nLIBUNISTRING_UNIWIDTH_H = uniwidth.h\nLIMITS_H = limits.h\nLIPO = lipo\nLN = ln\nLN_S = ln -s\nLTLIBICONV = -liconv\nLTLIBINTL = \nLTLIBOBJS = \nLT_SYS_LIBRARY_PATH = \nMAKEINFO = ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/missing makeinfo\nMANIFEST_TOOL = :\nMKDIR_P = ../build-aux/install-sh -c -d\nMSGFMT = :\nMSGFMT_015 = :\nMSGMERGE = :\nNEXT_AS_FIRST_DIRECTIVE_ERRNO_H = \nNEXT_AS_FIRST_DIRECTIVE_FCNTL_H = <fcntl.h>\nNEXT_AS_FIRST_DIRECTIVE_LIMITS_H = <limits.h>\nNEXT_AS_FIRST_DIRECTIVE_SIGNAL_H = <signal.h>\nNEXT_AS_FIRST_DIRECTIVE_STDDEF_H = \nNEXT_AS_FIRST_DIRECTIVE_STDINT_H = <stdint.h>\nNEXT_AS_FIRST_DIRECTIVE_STDIO_H = <stdio.h>\nNEXT_AS_FIRST_DIRECTIVE_STDLIB_H = <stdlib.h>\nNEXT_AS_FIRST_DIRECTIVE_STRING_H = <string.h>\nNEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H = <sys/stat.h>\nNEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H = <sys/time.h>\nNEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = <sys/types.h>\nNEXT_AS_FIRST_DIRECTIVE_TIME_H = <time.h>\nNEXT_AS_FIRST_DIRECTIVE_UNISTD_H = <unistd.h>\nNEXT_ERRNO_H = \nNEXT_FCNTL_H = <fcntl.h>\nNEXT_LIMITS_H = <limits.h>\nNEXT_SIGNAL_H = <signal.h>\nNEXT_STDDEF_H = \nNEXT_STDINT_H = <stdint.h>\nNEXT_STDIO_H = <stdio.h>\nNEXT_STDLIB_H = <stdlib.h>\nNEXT_STRING_H = <string.h>\nNEXT_SYS_STAT_H = <sys/stat.h>\nNEXT_SYS_TIME_H = <sys/time.h>\nNEXT_SYS_TYPES_H = <sys/types.h>\nNEXT_TIME_H = <time.h>\nNEXT_UNISTD_H = <unistd.h>\nNM = /usr/bin/nm -B\nNMEDIT = nmedit\nOBJDUMP = objdump\nOBJEXT = o\nOTOOL = otool\nOTOOL64 = :\nPACKAGE = libiconv\nPACKAGE_BUGREPORT = \nPACKAGE_NAME = libiconv\nPACKAGE_STRING = libiconv 1.15\nPACKAGE_TARNAME = libiconv\nPACKAGE_URL = \nPACKAGE_VERSION = 1.15\nPATH_SEPARATOR = :\nPOSUB = \nPRAGMA_COLUMNS = \nPRAGMA_SYSTEM_HEADER = #pragma GCC system_header\nPTHREAD_H_DEFINES_STRUCT_TIMESPEC = 0\nPTRDIFF_T_SUFFIX = l\nRANLIB = ranlib\nRC = \nRELOCATABLE = no\nRELOCATABLE_BUILD_DIR = $(top_builddir)/srclib\nRELOCATABLE_CONFIG_H_DIR = $(top_builddir)\nRELOCATABLE_LDFLAGS = \nRELOCATABLE_LIBRARY_PATH = \nRELOCATABLE_SRC_DIR = $(top_srcdir)/srclib\nRELOCATABLE_STRIP = :\nREPLACE_CALLOC = 0\nREPLACE_CANONICALIZE_FILE_NAME = 0\nREPLACE_CHOWN = 0\nREPLACE_CLOSE = 0\nREPLACE_DPRINTF = 0\nREPLACE_DUP = 0\nREPLACE_DUP2 = 0\nREPLACE_FCHOWNAT = 0\nREPLACE_FCLOSE = 0\nREPLACE_FCNTL = 0\nREPLACE_FDOPEN = 0\nREPLACE_FFLUSH = 0\nREPLACE_FOPEN = 0\nREPLACE_FPRINTF = 0\nREPLACE_FPURGE = 0\nREPLACE_FREOPEN = 0\nREPLACE_FSEEK = 0\nREPLACE_FSEEKO = 0\nREPLACE_FSTAT = 0\nREPLACE_FSTATAT = 0\nREPLACE_FTELL = 0\nREPLACE_FTELLO = 0\nREPLACE_FTRUNCATE = 0\nREPLACE_FUTIMENS = 0\nREPLACE_GETCWD = 0\nREPLACE_GETDELIM = 0\nREPLACE_GETDOMAINNAME = 0\nREPLACE_GETDTABLESIZE = 0\nREPLACE_GETGROUPS = 0\nREPLACE_GETLINE = 0\nREPLACE_GETLOGIN_R = 0\nREPLACE_GETPAGESIZE = 0\nREPLACE_GETTIMEOFDAY = 0\nREPLACE_GMTIME = 0\nREPLACE_ISATTY = 0\nREPLACE_LCHOWN = 0\nREPLACE_LINK = 0\nREPLACE_LINKAT = 0\nREPLACE_LOCALTIME = 0\nREPLACE_LOCALTIME_R = GNULIB_PORTCHECK\nREPLACE_LSEEK = 0\nREPLACE_LSTAT = 1\nREPLACE_MALLOC = 0\nREPLACE_MBTOWC = 0\nREPLACE_MEMCHR = 0\nREPLACE_MEMMEM = 0\nREPLACE_MKDIR = 0\nREPLACE_MKFIFO = 0\nREPLACE_MKNOD = 0\nREPLACE_MKSTEMP = 0\nREPLACE_MKTIME = GNULIB_PORTCHECK\nREPLACE_NANOSLEEP = GNULIB_PORTCHECK\nREPLACE_NULL = 0\nREPLACE_OBSTACK_PRINTF = 0\nREPLACE_OPEN = 0\nREPLACE_OPENAT = 0\nREPLACE_PERROR = 0\nREPLACE_POPEN = 0\nREPLACE_PREAD = 0\nREPLACE_PRINTF = 0\nREPLACE_PTHREAD_SIGMASK = 0\nREPLACE_PTSNAME = 0\nREPLACE_PTSNAME_R = 0\nREPLACE_PUTENV = 0\nREPLACE_PWRITE = 0\nREPLACE_QSORT_R = 0\nREPLACE_RAISE = 0\nREPLACE_RANDOM_R = 0\nREPLACE_READ = 0\nREPLACE_READLINK = 1\nREPLACE_READLINKAT = 0\nREPLACE_REALLOC = 0\nREPLACE_REALPATH = 1\nREPLACE_REMOVE = 0\nREPLACE_RENAME = 0\nREPLACE_RENAMEAT = 0\nREPLACE_RMDIR = 0\nREPLACE_SETENV = 0\nREPLACE_SLEEP = 0\nREPLACE_SNPRINTF = 0\nREPLACE_SPRINTF = 0\nREPLACE_STAT = 1\nREPLACE_STDIO_READ_FUNCS = 0\nREPLACE_STDIO_WRITE_FUNCS = 0\nREPLACE_STPNCPY = 0\nREPLACE_STRCASESTR = 0\nREPLACE_STRCHRNUL = 0\nREPLACE_STRDUP = 0\nREPLACE_STRERROR = 1\nREPLACE_STRERROR_R = 0\nREPLACE_STRNCAT = 0\nREPLACE_STRNDUP = 0\nREPLACE_STRNLEN = 0\nREPLACE_STRSIGNAL = 0\nREPLACE_STRSTR = 0\nREPLACE_STRTOD = 0\nREPLACE_STRTOK_R = 0\nREPLACE_STRUCT_TIMEVAL = 0\nREPLACE_SYMLINK = 0\nREPLACE_SYMLINKAT = 0\nREPLACE_TIMEGM = GNULIB_PORTCHECK\nREPLACE_TMPFILE = 0\nREPLACE_TTYNAME_R = 0\nREPLACE_UNLINK = 0\nREPLACE_UNLINKAT = 0\nREPLACE_UNSETENV = 0\nREPLACE_USLEEP = 0\nREPLACE_UTIMENSAT = 0\nREPLACE_VASPRINTF = 0\nREPLACE_VDPRINTF = 0\nREPLACE_VFPRINTF = 0\nREPLACE_VPRINTF = 0\nREPLACE_VSNPRINTF = 0\nREPLACE_VSPRINTF = 0\nREPLACE_WCTOMB = 0\nREPLACE_WRITE = 0\nSED = /usr/bin/sed\nSET_MAKE = \nSHELL = /bin/sh\nSIG_ATOMIC_T_SUFFIX = \nSIZE_T_SUFFIX = ul\nSRCLIBOBJS = \nSTDBOOL_H = \nSTDDEF_H = \nSTDINT_H = stdint.h\nSTRIP = /usr/bin/strip\nSYS_TIME_H_DEFINES_STRUCT_TIMESPEC = 0\nTIME_H_DEFINES_STRUCT_TIMESPEC = 1\nUNDEFINE_STRTOK_R = 0\nUNISTD_H_DEFINES_STRUCT_TIMESPEC = 0\nUNISTD_H_HAVE_WINSOCK2_H = 0\nUNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = 0\nUSE_EXTRA_ENCODINGS = no\nUSE_MBSTATE_T = 1\nUSE_NLS = no\nVERSION = 1.15\nWCHAR_T_SUFFIX = \nWINDOWS_64_BIT_OFF_T = 0\nWINDOWS_64_BIT_ST_SIZE = 0\nWINDRES = \nWINT_T_SUFFIX = \nWOE32 = no\nWOE32DLL = no\nXGETTEXT = :\nXGETTEXT_015 = :\nXGETTEXT_EXTRA_OPTIONS =  --flag=error:3:c-format --flag=error_at_line:5:c-format\nabs_builddir = /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/srclib\nabs_srcdir = /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/srclib\nabs_top_builddir = /Users/wanghao/Desktop/demo/zbar/libiconv-1.15\nabs_top_srcdir = /Users/wanghao/Desktop/demo/zbar/libiconv-1.15\nac_ct_AR = ar\nac_ct_CC = gcc\nac_ct_DUMPBIN = \nam__include = include\nam__leading_dot = .\nam__quote = \nam__tar = $${TAR-tar} chof - \"$$tardir\"\nam__untar = $${TAR-tar} xf -\nbindir = ${exec_prefix}/bin\nbuild = x86_64-apple-darwin16.6.0\nbuild_alias = \nbuild_cpu = x86_64\nbuild_os = darwin16.6.0\nbuild_vendor = apple\nbuilddir = .\ndatadir = ${datarootdir}\ndatarootdir = ${prefix}/share\ndocdir = ${datarootdir}/doc/${PACKAGE_TARNAME}\ndvidir = ${docdir}\nexec_prefix = ${prefix}\ngl_LIBOBJS =  canonicalize-lgpl.o error.o lstat.o readlink.o stat.o strerror.o strerror-override.o\ngl_LTLIBOBJS =  canonicalize-lgpl.lo error.lo lstat.lo readlink.lo stat.lo strerror.lo strerror-override.lo\ngltests_LIBOBJS = \ngltests_LTLIBOBJS = \ngltests_WITNESS = IN_LIBICONV_GNULIB_TESTS\nhost = x86_64-apple-darwin16.6.0\nhost_alias = \nhost_cpu = x86_64\nhost_os = darwin16.6.0\nhost_vendor = apple\nhtmldir = ${docdir}\nincludedir = ${prefix}/include\ninfodir = ${datarootdir}/info\ninstall_sh = ${SHELL} /Users/wanghao/Desktop/demo/zbar/libiconv-1.15/build-aux/install-sh\nlibdir = ${exec_prefix}/lib\nlibexecdir = ${exec_prefix}/libexec\nlocaledir = ${datarootdir}/locale\nlocalstatedir = ${prefix}/var\nmandir = ${datarootdir}/man\nmkdir_p = $(MKDIR_P)\noldincludedir = /usr/include\npdfdir = ${docdir}\nprefix = /usr/local\nprogram_transform_name = s,x,x,\npsdir = ${docdir}\nsbindir = ${exec_prefix}/sbin\nsharedstatedir = ${prefix}/com\nsrcdir = .\nsubdirs =  libcharset preload\nsysconfdir = ${prefix}/etc\ntarget_alias = \ntop_build_prefix = ../\ntop_builddir = ..\ntop_srcdir = ..\nAUTOMAKE_OPTIONS = 1.5 gnits subdir-objects no-dependencies\n\n# If your project uses \"gettextize --intl\" to put a source-code\n# copy of libintl into the package, every Makefile.am needs\n# -I$(top_builddir)/intl, so that <libintl.h> can be found in this directory.\n# Here's one way to do this:\n#AM_CPPFLAGS += -I$(top_builddir)/intl\n# This option has no effect when the user disables NLS (because then\n# the intl directory contains no libintl.h file).  This option is not\n# enabled by default because the intl directory might not exist if\n# your project does not use \"gettext --intl\", and some compilers\n# complain about -I options applied to nonexistent directories.\nEXTRA_DIST = alloca.in.h allocator.h areadlink.h canonicalize-lgpl.c \\\n\tcareadlinkat.h dirname.h dosname.h errno.in.h error.c error.h \\\n\tfcntl.in.h $(top_srcdir)/build-aux/config.rpath gettimeofday.c \\\n\t$(top_srcdir)/build-aux/config.rpath intprops.h limits.in.h \\\n\tlstat.c malloc.c malloca.h malloca.valgrind msvc-inval.c \\\n\tmsvc-inval.h msvc-nothrow.c msvc-nothrow.h pathmax.h raise.c \\\n\tread.c readlink.c progreloc.c relocatable.c relocatable.h \\\n\t$(top_srcdir)/build-aux/config.libpath \\\n\t$(top_srcdir)/build-aux/reloc-ldflags allocator.c allocator.h \\\n\tareadlink.c areadlink.h c-ctype.c c-ctype.h \\\n\tcanonicalize-lgpl.c careadlinkat.c careadlinkat.h lstat.c \\\n\tmalloca.c malloca.h progname.c progname.h progreloc.c \\\n\treadlink.c relocatable.c relocatable.h relocwrapper.c setenv.c \\\n\tstat.c $(top_srcdir)/build-aux/install-reloc safe-read.h \\\n\tsignal.in.h stdio-write.c sigprocmask.c \\\n\t$(top_srcdir)/build-aux/snippet/_Noreturn.h \\\n\t$(top_srcdir)/build-aux/snippet/arg-nonnull.h \\\n\t$(top_srcdir)/build-aux/snippet/c++defs.h \\\n\t$(top_srcdir)/build-aux/snippet/warn-on-use.h stat.c \\\n\tstdbool.in.h stddef.in.h stdint.in.h stdio.in.h stdlib.in.h \\\n\tstreq.h strerror.c strerror-override.c strerror-override.h \\\n\tstring.in.h sys_stat.in.h sys_time.in.h sys_types.in.h \\\n\ttime.in.h unistd.in.h unitypes.in.h localcharset.h \\\n\tuniwidth.in.h uniwidth/cjk.h unlocked-io.h verify.h \\\n\txalloc-oversized.h xreadlink.h\n\n# The BUILT_SOURCES created by this Makefile snippet are not used via #include\n# statements but through direct file reference. Therefore this snippet must be\n# present in all Makefile.am that need it. This is ensured by the applicability\n# 'all' defined above.\n\n# The BUILT_SOURCES created by this Makefile snippet are not used via #include\n# statements but through direct file reference. Therefore this snippet must be\n# present in all Makefile.am that need it. This is ensured by the applicability\n# 'all' defined above.\nBUILT_SOURCES = $(ALLOCA_H) $(ERRNO_H) fcntl.h $(LIMITS_H) signal.h \\\n\targ-nonnull.h c++defs.h warn-on-use.h $(STDBOOL_H) $(STDDEF_H) \\\n\t$(STDINT_H) stdio.h stdlib.h string.h sys/stat.h sys/time.h \\\n\tsys/types.h time.h unistd.h $(LIBUNISTRING_UNITYPES_H) \\\n\t$(LIBUNISTRING_UNIWIDTH_H)\nMOSTLYCLEANFILES = core *.stackdump core *.stackdump alloca.h \\\n\talloca.h-t errno.h errno.h-t fcntl.h fcntl.h-t limits.h \\\n\tlimits.h-t signal.h signal.h-t arg-nonnull.h arg-nonnull.h-t \\\n\tc++defs.h c++defs.h-t warn-on-use.h warn-on-use.h-t stdbool.h \\\n\tstdbool.h-t stddef.h stddef.h-t stdint.h stdint.h-t stdio.h \\\n\tstdio.h-t stdlib.h stdlib.h-t string.h string.h-t sys/stat.h \\\n\tsys/stat.h-t sys/time.h sys/time.h-t sys/types.h sys/types.h-t \\\n\ttime.h time.h-t unistd.h unistd.h-t unitypes.h unitypes.h-t \\\n\tuniwidth.h uniwidth.h-t\nMOSTLYCLEANDIRS = sys\nnoinst_LIBRARIES = libicrt.a\n\n# Parametrization of the 'relocatable' module.\nAM_CPPFLAGS = -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1\nlibicrt_a_SOURCES = allocator.c areadlink.c binary-io.h binary-io.c \\\n\tcareadlinkat.c dirname-lgpl.c basename-lgpl.c stripslash.c \\\n\tgetprogname.h getprogname.c gettext.h malloca.c progname.h \\\n\tprogname.c safe-read.c unistd.c $(am__append_1) xalloc.h \\\n\txmalloc.c xstrdup.c xreadlink.c\nlibicrt_a_LIBADD = $(gl_LIBOBJS)\nlibicrt_a_DEPENDENCIES = $(gl_LIBOBJS)\nEXTRA_libicrt_a_SOURCES = canonicalize-lgpl.c error.c gettimeofday.c \\\n\tlstat.c malloc.c msvc-inval.c msvc-nothrow.c raise.c read.c \\\n\treadlink.c progreloc.c relocatable.c stdio-write.c \\\n\tsigprocmask.c stat.c strerror.c strerror-override.c\n\n# Use this preprocessor expression to decide whether #include_next works.\n# Do not rely on a 'configure'-time test for this, since the expression\n# might appear in an installed header, which is used by some other compiler.\nHAVE_INCLUDE_NEXT = (__GNUC__ || 60000000 <= __DECC_VER)\n\n# Because this Makefile snippet defines a variable used by other\n# gnulib Makefile snippets, it must be present in all Makefile.am that\n# need it. This is ensured by the applicability 'all' defined above.\n_NORETURN_H = $(top_srcdir)/build-aux/snippet/_Noreturn.h\nARG_NONNULL_H = arg-nonnull.h\nCXXDEFS_H = c++defs.h\nWARN_ON_USE_H = warn-on-use.h\nall: $(BUILT_SOURCES)\n\t$(MAKE) $(AM_MAKEFLAGS) all-am\n\n.SUFFIXES:\n.SUFFIXES: .c .lo .o .obj\n$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(srcdir)/Makefile.gnulib $(am__configure_deps)\n\t@for dep in $?; do \\\n\t  case '$(am__configure_deps)' in \\\n\t    *$$dep*) \\\n\t      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \\\n\t        && { if test -f $@; then exit 0; else break; fi; }; \\\n\t      exit 1;; \\\n\t  esac; \\\n\tdone; \\\n\techo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits srclib/Makefile'; \\\n\t$(am__cd) $(top_srcdir) && \\\n\t  $(AUTOMAKE) --gnits srclib/Makefile\nMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status\n\t@case '$?' in \\\n\t  *config.status*) \\\n\t    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \\\n\t  *) \\\n\t    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \\\n\t    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \\\n\tesac;\n$(srcdir)/Makefile.gnulib $(am__empty):\n\n$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)\n\tcd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh\n\n$(top_srcdir)/configure:  $(am__configure_deps)\n\tcd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh\n$(ACLOCAL_M4):  $(am__aclocal_m4_deps)\n\tcd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh\n$(am__aclocal_m4_deps):\n\nclean-noinstLIBRARIES:\n\t-test -z \"$(noinst_LIBRARIES)\" || rm -f $(noinst_LIBRARIES)\nuniwidth/$(am__dirstamp):\n\t@$(MKDIR_P) uniwidth\n\t@: > uniwidth/$(am__dirstamp)\nuniwidth/width.$(OBJEXT): uniwidth/$(am__dirstamp)\n\nlibicrt.a: $(libicrt_a_OBJECTS) $(libicrt_a_DEPENDENCIES) $(EXTRA_libicrt_a_DEPENDENCIES) \n\t$(AM_V_at)-rm -f libicrt.a\n\t$(AM_V_AR)$(libicrt_a_AR) libicrt.a $(libicrt_a_OBJECTS) $(libicrt_a_LIBADD)\n\t$(AM_V_at)$(RANLIB) libicrt.a\n\nmostlyclean-compile:\n\t-rm -f *.$(OBJEXT)\n\t-rm -f uniwidth/*.$(OBJEXT)\n\ndistclean-compile:\n\t-rm -f *.tab.c\n\n.c.o:\n\t$(AM_V_CC)$(COMPILE) -c -o $@ $<\n\n.c.obj:\n\t$(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`\n\n.c.lo:\n\t$(AM_V_CC)$(LTCOMPILE) -c -o $@ $<\n\nmostlyclean-libtool:\n\t-rm -f *.lo\n\nclean-libtool:\n\t-rm -rf .libs _libs\n\nID: $(am__tagged_files)\n\t$(am__define_uniq_tagged_files); mkid -fID $$unique\ntags: tags-am\nTAGS: tags\n\ntags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)\n\tset x; \\\n\there=`pwd`; \\\n\t$(am__define_uniq_tagged_files); \\\n\tshift; \\\n\tif test -z \"$(ETAGS_ARGS)$$*$$unique\"; then :; else \\\n\t  test -n \"$$unique\" || unique=$$empty_fix; \\\n\t  if test $$# -gt 0; then \\\n\t    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \\\n\t      \"$$@\" $$unique; \\\n\t  else \\\n\t    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \\\n\t      $$unique; \\\n\t  fi; \\\n\tfi\nctags: ctags-am\n\nCTAGS: ctags\nctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)\n\t$(am__define_uniq_tagged_files); \\\n\ttest -z \"$(CTAGS_ARGS)$$unique\" \\\n\t  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \\\n\t     $$unique\n\nGTAGS:\n\there=`$(am__cd) $(top_builddir) && pwd` \\\n\t  && $(am__cd) $(top_srcdir) \\\n\t  && gtags -i $(GTAGS_ARGS) \"$$here\"\ncscopelist: cscopelist-am\n\ncscopelist-am: $(am__tagged_files)\n\tlist='$(am__tagged_files)'; \\\n\tcase \"$(srcdir)\" in \\\n\t  [\\\\/]* | ?:[\\\\/]*) sdir=\"$(srcdir)\" ;; \\\n\t  *) sdir=$(subdir)/$(srcdir) ;; \\\n\tesac; \\\n\tfor i in $$list; do \\\n\t  if test -f \"$$i\"; then \\\n\t    echo \"$(subdir)/$$i\"; \\\n\t  else \\\n\t    echo \"$$sdir/$$i\"; \\\n\t  fi; \\\n\tdone >> $(top_builddir)/cscope.files\n\ndistclean-tags:\n\t-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags\n\ndistdir: $(DISTFILES)\n\t@srcdirstrip=`echo \"$(srcdir)\" | sed 's/[].[^$$\\\\*]/\\\\\\\\&/g'`; \\\n\ttopsrcdirstrip=`echo \"$(top_srcdir)\" | sed 's/[].[^$$\\\\*]/\\\\\\\\&/g'`; \\\n\tlist='$(DISTFILES)'; \\\n\t  dist_files=`for file in $$list; do echo $$file; done | \\\n\t  sed -e \"s|^$$srcdirstrip/||;t\" \\\n\t      -e \"s|^$$topsrcdirstrip/|$(top_builddir)/|;t\"`; \\\n\tcase $$dist_files in \\\n\t  */*) $(MKDIR_P) `echo \"$$dist_files\" | \\\n\t\t\t   sed '/\\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \\\n\t\t\t   sort -u` ;; \\\n\tesac; \\\n\tfor file in $$dist_files; do \\\n\t  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \\\n\t  if test -d $$d/$$file; then \\\n\t    dir=`echo \"/$$file\" | sed -e 's,/[^/]*$$,,'`; \\\n\t    if test -d \"$(distdir)/$$file\"; then \\\n\t      find \"$(distdir)/$$file\" -type d ! -perm -700 -exec chmod u+rwx {} \\;; \\\n\t    fi; \\\n\t    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \\\n\t      cp -fpR $(srcdir)/$$file \"$(distdir)$$dir\" || exit 1; \\\n\t      find \"$(distdir)/$$file\" -type d ! -perm -700 -exec chmod u+rwx {} \\;; \\\n\t    fi; \\\n\t    cp -fpR $$d/$$file \"$(distdir)$$dir\" || exit 1; \\\n\t  else \\\n\t    test -f \"$(distdir)/$$file\" \\\n\t    || cp -p $$d/$$file \"$(distdir)/$$file\" \\\n\t    || exit 1; \\\n\t  fi; \\\n\tdone\ncheck-am: all-am\ncheck: $(BUILT_SOURCES)\n\t$(MAKE) $(AM_MAKEFLAGS) check-am\nall-am: Makefile $(LIBRARIES)\ninstalldirs:\ninstall: $(BUILT_SOURCES)\n\t$(MAKE) $(AM_MAKEFLAGS) install-am\ninstall-exec: install-exec-am\ninstall-data: install-data-am\nuninstall: uninstall-am\n\ninstall-am: all-am\n\t@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am\n\ninstallcheck: installcheck-am\ninstall-strip:\n\tif test -z '$(STRIP)'; then \\\n\t  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM=\"$(INSTALL_STRIP_PROGRAM)\" \\\n\t    install_sh_PROGRAM=\"$(INSTALL_STRIP_PROGRAM)\" INSTALL_STRIP_FLAG=-s \\\n\t      install; \\\n\telse \\\n\t  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM=\"$(INSTALL_STRIP_PROGRAM)\" \\\n\t    install_sh_PROGRAM=\"$(INSTALL_STRIP_PROGRAM)\" INSTALL_STRIP_FLAG=-s \\\n\t    \"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'\" install; \\\n\tfi\nmostlyclean-generic:\n\t-test -z \"$(MOSTLYCLEANFILES)\" || rm -f $(MOSTLYCLEANFILES)\n\nclean-generic:\n\ndistclean-generic:\n\t-test -z \"$(CONFIG_CLEAN_FILES)\" || rm -f $(CONFIG_CLEAN_FILES)\n\t-test . = \"$(srcdir)\" || test -z \"$(CONFIG_CLEAN_VPATH_FILES)\" || rm -f $(CONFIG_CLEAN_VPATH_FILES)\n\t-rm -f uniwidth/$(am__dirstamp)\n\nmaintainer-clean-generic:\n\t@echo \"This command is intended for maintainers to use\"\n\t@echo \"it deletes files that may require special tools to rebuild.\"\n\t-test -z \"$(BUILT_SOURCES)\" || rm -f $(BUILT_SOURCES)\nuninstall-hook:\nclean: clean-am\n\nclean-am: clean-generic clean-libtool clean-noinstLIBRARIES \\\n\tmostlyclean-am\n\ndistclean: distclean-am\n\t-rm -f Makefile\ndistclean-am: clean-am distclean-compile distclean-generic \\\n\tdistclean-tags\n\ndvi: dvi-am\n\ndvi-am:\n\nhtml: html-am\n\nhtml-am:\n\ninfo: info-am\n\ninfo-am:\n\ninstall-data-am:\n\ninstall-dvi: install-dvi-am\n\ninstall-dvi-am:\n\ninstall-exec-am:\n\ninstall-html: install-html-am\n\ninstall-html-am:\n\ninstall-info: install-info-am\n\ninstall-info-am:\n\ninstall-man:\n\ninstall-pdf: install-pdf-am\n\ninstall-pdf-am:\n\ninstall-ps: install-ps-am\n\ninstall-ps-am:\n\ninstallcheck-am:\n\nmaintainer-clean: maintainer-clean-am\n\t-rm -f Makefile\nmaintainer-clean-am: distclean-am maintainer-clean-generic\n\nmostlyclean: mostlyclean-am\n\nmostlyclean-am: mostlyclean-compile mostlyclean-generic \\\n\tmostlyclean-libtool mostlyclean-local\n\npdf: pdf-am\n\npdf-am:\n\nps: ps-am\n\nps-am:\n\nuninstall-am:\n\t@$(NORMAL_INSTALL)\n\t$(MAKE) $(AM_MAKEFLAGS) uninstall-hook\n.MAKE: all check install install-am install-strip uninstall-am\n\n.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \\\n\tclean-libtool clean-noinstLIBRARIES cscopelist-am ctags \\\n\tctags-am distclean distclean-compile distclean-generic \\\n\tdistclean-libtool distclean-tags distdir dvi dvi-am html \\\n\thtml-am info info-am install install-am install-data \\\n\tinstall-data-am install-dvi install-dvi-am install-exec \\\n\tinstall-exec-am install-html install-html-am install-info \\\n\tinstall-info-am install-man install-pdf install-pdf-am \\\n\tinstall-ps install-ps-am install-strip installcheck \\\n\tinstallcheck-am installdirs maintainer-clean \\\n\tmaintainer-clean-generic mostlyclean mostlyclean-compile \\\n\tmostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \\\n\tpdf-am ps ps-am tags tags-am uninstall uninstall-am \\\n\tuninstall-hook\n\n.PRECIOUS: Makefile\n\n\n# We need the following in order to create <alloca.h> when the system\n# doesn't have one that works with the given compiler.\nalloca.h: alloca.in.h $(top_builddir)/config.status\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  cat $(srcdir)/alloca.in.h; \\\n\t} > $@-t && \\\n\tmv -f $@-t $@\n#alloca.h: $(top_builddir)/config.status\n#\trm -f $@\n\n# We need the following in order to create <errno.h> when the system\n# doesn't have one that is POSIX compliant.\n#errno.h: errno.in.h $(top_builddir)/config.status\n#\t$(AM_V_GEN)rm -f $@-t $@ && \\\n#\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n#\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n#\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n#\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n#\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n#\t      -e 's|@''NEXT_ERRNO_H''@|$(NEXT_ERRNO_H)|g' \\\n#\t      -e 's|@''EMULTIHOP_HIDDEN''@|$(EMULTIHOP_HIDDEN)|g' \\\n#\t      -e 's|@''EMULTIHOP_VALUE''@|$(EMULTIHOP_VALUE)|g' \\\n#\t      -e 's|@''ENOLINK_HIDDEN''@|$(ENOLINK_HIDDEN)|g' \\\n#\t      -e 's|@''ENOLINK_VALUE''@|$(ENOLINK_VALUE)|g' \\\n#\t      -e 's|@''EOVERFLOW_HIDDEN''@|$(EOVERFLOW_HIDDEN)|g' \\\n#\t      -e 's|@''EOVERFLOW_VALUE''@|$(EOVERFLOW_VALUE)|g' \\\n#\t      < $(srcdir)/errno.in.h; \\\n#\t} > $@-t && \\\n#\tmv $@-t $@\nerrno.h: $(top_builddir)/config.status\n\trm -f $@\n\n# We need the following in order to create <fcntl.h> when the system\n# doesn't have one that works with the given compiler.\nfcntl.h: fcntl.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_FCNTL_H''@|$(NEXT_FCNTL_H)|g' \\\n\t      -e 's/@''GNULIB_FCNTL''@/$(GNULIB_FCNTL)/g' \\\n\t      -e 's/@''GNULIB_NONBLOCKING''@/$(GNULIB_NONBLOCKING)/g' \\\n\t      -e 's/@''GNULIB_OPEN''@/$(GNULIB_OPEN)/g' \\\n\t      -e 's/@''GNULIB_OPENAT''@/$(GNULIB_OPENAT)/g' \\\n\t      -e 's|@''HAVE_FCNTL''@|$(HAVE_FCNTL)|g' \\\n\t      -e 's|@''HAVE_OPENAT''@|$(HAVE_OPENAT)|g' \\\n\t      -e 's|@''REPLACE_FCNTL''@|$(REPLACE_FCNTL)|g' \\\n\t      -e 's|@''REPLACE_OPEN''@|$(REPLACE_OPEN)|g' \\\n\t      -e 's|@''REPLACE_OPENAT''@|$(REPLACE_OPENAT)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/fcntl.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <limits.h> when the system\n# doesn't have one that is compatible with GNU.\nlimits.h: limits.in.h $(top_builddir)/config.status\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_LIMITS_H''@|$(NEXT_LIMITS_H)|g' \\\n\t      < $(srcdir)/limits.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n#limits.h: $(top_builddir)/config.status\n#\trm -f $@\n#uninstall-hook: uninstall-relocwrapper\n#uninstall-relocwrapper:\n#\tif test $(RELOCATABLE) = yes; then \\\n#\t  case '$(EXEEXT)' in \\\n#\t    .bin*) ;; \\\n#\t    *) cd $(top_builddir) && \\\n#\t       $(MAKE) $(AM_MAKEFLAGS) EXEEXT=.bin$(EXEEXT) \\\n#\t\t       AM_MAKEFLAGS='$(AM_MAKEFLAGS) EXEEXT=.bin$(EXEEXT)' \\\n#\t\t       uninstall ;; \\\n#\t  esac; \\\n#\tfi\n#.PHONY: uninstall-relocwrapper\n\n# We need the following in order to create <signal.h> when the system\n# doesn't have a complete one.\nsignal.h: signal.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_SIGNAL_H''@|$(NEXT_SIGNAL_H)|g' \\\n\t      -e 's|@''GNULIB_PTHREAD_SIGMASK''@|$(GNULIB_PTHREAD_SIGMASK)|g' \\\n\t      -e 's|@''GNULIB_RAISE''@|$(GNULIB_RAISE)|g' \\\n\t      -e 's/@''GNULIB_SIGNAL_H_SIGPIPE''@/$(GNULIB_SIGNAL_H_SIGPIPE)/g' \\\n\t      -e 's/@''GNULIB_SIGPROCMASK''@/$(GNULIB_SIGPROCMASK)/g' \\\n\t      -e 's/@''GNULIB_SIGACTION''@/$(GNULIB_SIGACTION)/g' \\\n\t      -e 's|@''HAVE_POSIX_SIGNALBLOCKING''@|$(HAVE_POSIX_SIGNALBLOCKING)|g' \\\n\t      -e 's|@''HAVE_PTHREAD_SIGMASK''@|$(HAVE_PTHREAD_SIGMASK)|g' \\\n\t      -e 's|@''HAVE_RAISE''@|$(HAVE_RAISE)|g' \\\n\t      -e 's|@''HAVE_SIGSET_T''@|$(HAVE_SIGSET_T)|g' \\\n\t      -e 's|@''HAVE_SIGINFO_T''@|$(HAVE_SIGINFO_T)|g' \\\n\t      -e 's|@''HAVE_SIGACTION''@|$(HAVE_SIGACTION)|g' \\\n\t      -e 's|@''HAVE_STRUCT_SIGACTION_SA_SIGACTION''@|$(HAVE_STRUCT_SIGACTION_SA_SIGACTION)|g' \\\n\t      -e 's|@''HAVE_TYPE_VOLATILE_SIG_ATOMIC_T''@|$(HAVE_TYPE_VOLATILE_SIG_ATOMIC_T)|g' \\\n\t      -e 's|@''HAVE_SIGHANDLER_T''@|$(HAVE_SIGHANDLER_T)|g' \\\n\t      -e 's|@''REPLACE_PTHREAD_SIGMASK''@|$(REPLACE_PTHREAD_SIGMASK)|g' \\\n\t      -e 's|@''REPLACE_RAISE''@|$(REPLACE_RAISE)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/signal.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n# The arg-nonnull.h that gets inserted into generated .h files is the same as\n# build-aux/snippet/arg-nonnull.h, except that it has the copyright header cut\n# off.\narg-nonnull.h: $(top_srcdir)/build-aux/snippet/arg-nonnull.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\tsed -n -e '/GL_ARG_NONNULL/,$$p' \\\n\t  < $(top_srcdir)/build-aux/snippet/arg-nonnull.h \\\n\t  > $@-t && \\\n\tmv $@-t $@\n# The c++defs.h that gets inserted into generated .h files is the same as\n# build-aux/snippet/c++defs.h, except that it has the copyright header cut off.\nc++defs.h: $(top_srcdir)/build-aux/snippet/c++defs.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\tsed -n -e '/_GL_CXXDEFS/,$$p' \\\n\t  < $(top_srcdir)/build-aux/snippet/c++defs.h \\\n\t  > $@-t && \\\n\tmv $@-t $@\n# The warn-on-use.h that gets inserted into generated .h files is the same as\n# build-aux/snippet/warn-on-use.h, except that it has the copyright header cut\n# off.\nwarn-on-use.h: $(top_srcdir)/build-aux/snippet/warn-on-use.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\tsed -n -e '/^.ifndef/,$$p' \\\n\t  < $(top_srcdir)/build-aux/snippet/warn-on-use.h \\\n\t  > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <stdbool.h> when the system\n# doesn't have one that works.\n#stdbool.h: stdbool.in.h $(top_builddir)/config.status\n#\t$(AM_V_GEN)rm -f $@-t $@ && \\\n#\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n#\t  sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool.in.h; \\\n#\t} > $@-t && \\\n#\tmv $@-t $@\nstdbool.h: $(top_builddir)/config.status\n\trm -f $@\n\n# We need the following in order to create <stddef.h> when the system\n# doesn't have one that works with the given compiler.\n#stddef.h: stddef.in.h $(top_builddir)/config.status\n#\t$(AM_V_GEN)rm -f $@-t $@ && \\\n#\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n#\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n#\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n#\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n#\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n#\t      -e 's|@''NEXT_STDDEF_H''@|$(NEXT_STDDEF_H)|g' \\\n#\t      -e 's|@''HAVE_MAX_ALIGN_T''@|$(HAVE_MAX_ALIGN_T)|g' \\\n#\t      -e 's|@''HAVE_WCHAR_T''@|$(HAVE_WCHAR_T)|g' \\\n#\t      -e 's|@''REPLACE_NULL''@|$(REPLACE_NULL)|g' \\\n#\t      < $(srcdir)/stddef.in.h; \\\n#\t} > $@-t && \\\n#\tmv $@-t $@\nstddef.h: $(top_builddir)/config.status\n\trm -f $@\n\n# We need the following in order to create <stdint.h> when the system\n# doesn't have one that works with the given compiler.\nstdint.h: stdint.in.h $(top_builddir)/config.status\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_STDINT_H''@|$(NEXT_STDINT_H)|g' \\\n\t      -e 's/@''HAVE_C99_STDINT_H''@/$(HAVE_C99_STDINT_H)/g' \\\n\t      -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \\\n\t      -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \\\n\t      -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \\\n\t      -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \\\n\t      -e 's/@''HAVE_WCHAR_H''@/$(HAVE_WCHAR_H)/g' \\\n\t      -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \\\n\t      -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \\\n\t      -e 's/@''APPLE_UNIVERSAL_BUILD''@/$(APPLE_UNIVERSAL_BUILD)/g' \\\n\t      -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \\\n\t      -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \\\n\t      -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \\\n\t      -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \\\n\t      -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \\\n\t      -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \\\n\t      -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \\\n\t      -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \\\n\t      -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \\\n\t      -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \\\n\t      -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \\\n\t      -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \\\n\t      -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \\\n\t      -e 's/@''GNULIB_OVERRIDES_WINT_T''@/$(GNULIB_OVERRIDES_WINT_T)/g' \\\n\t      < $(srcdir)/stdint.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n#stdint.h: $(top_builddir)/config.status\n#\trm -f $@\n\n# We need the following in order to create <stdio.h> when the system\n# doesn't have one that works with the given compiler.\nstdio.h: stdio.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_STDIO_H''@|$(NEXT_STDIO_H)|g' \\\n\t      -e 's/@''GNULIB_DPRINTF''@/$(GNULIB_DPRINTF)/g' \\\n\t      -e 's/@''GNULIB_FCLOSE''@/$(GNULIB_FCLOSE)/g' \\\n\t      -e 's/@''GNULIB_FDOPEN''@/$(GNULIB_FDOPEN)/g' \\\n\t      -e 's/@''GNULIB_FFLUSH''@/$(GNULIB_FFLUSH)/g' \\\n\t      -e 's/@''GNULIB_FGETC''@/$(GNULIB_FGETC)/g' \\\n\t      -e 's/@''GNULIB_FGETS''@/$(GNULIB_FGETS)/g' \\\n\t      -e 's/@''GNULIB_FOPEN''@/$(GNULIB_FOPEN)/g' \\\n\t      -e 's/@''GNULIB_FPRINTF''@/$(GNULIB_FPRINTF)/g' \\\n\t      -e 's/@''GNULIB_FPRINTF_POSIX''@/$(GNULIB_FPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_FPURGE''@/$(GNULIB_FPURGE)/g' \\\n\t      -e 's/@''GNULIB_FPUTC''@/$(GNULIB_FPUTC)/g' \\\n\t      -e 's/@''GNULIB_FPUTS''@/$(GNULIB_FPUTS)/g' \\\n\t      -e 's/@''GNULIB_FREAD''@/$(GNULIB_FREAD)/g' \\\n\t      -e 's/@''GNULIB_FREOPEN''@/$(GNULIB_FREOPEN)/g' \\\n\t      -e 's/@''GNULIB_FSCANF''@/$(GNULIB_FSCANF)/g' \\\n\t      -e 's/@''GNULIB_FSEEK''@/$(GNULIB_FSEEK)/g' \\\n\t      -e 's/@''GNULIB_FSEEKO''@/$(GNULIB_FSEEKO)/g' \\\n\t      -e 's/@''GNULIB_FTELL''@/$(GNULIB_FTELL)/g' \\\n\t      -e 's/@''GNULIB_FTELLO''@/$(GNULIB_FTELLO)/g' \\\n\t      -e 's/@''GNULIB_FWRITE''@/$(GNULIB_FWRITE)/g' \\\n\t      -e 's/@''GNULIB_GETC''@/$(GNULIB_GETC)/g' \\\n\t      -e 's/@''GNULIB_GETCHAR''@/$(GNULIB_GETCHAR)/g' \\\n\t      -e 's/@''GNULIB_GETDELIM''@/$(GNULIB_GETDELIM)/g' \\\n\t      -e 's/@''GNULIB_GETLINE''@/$(GNULIB_GETLINE)/g' \\\n\t      -e 's/@''GNULIB_OBSTACK_PRINTF''@/$(GNULIB_OBSTACK_PRINTF)/g' \\\n\t      -e 's/@''GNULIB_OBSTACK_PRINTF_POSIX''@/$(GNULIB_OBSTACK_PRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_PCLOSE''@/$(GNULIB_PCLOSE)/g' \\\n\t      -e 's/@''GNULIB_PERROR''@/$(GNULIB_PERROR)/g' \\\n\t      -e 's/@''GNULIB_POPEN''@/$(GNULIB_POPEN)/g' \\\n\t      -e 's/@''GNULIB_PRINTF''@/$(GNULIB_PRINTF)/g' \\\n\t      -e 's/@''GNULIB_PRINTF_POSIX''@/$(GNULIB_PRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_PUTC''@/$(GNULIB_PUTC)/g' \\\n\t      -e 's/@''GNULIB_PUTCHAR''@/$(GNULIB_PUTCHAR)/g' \\\n\t      -e 's/@''GNULIB_PUTS''@/$(GNULIB_PUTS)/g' \\\n\t      -e 's/@''GNULIB_REMOVE''@/$(GNULIB_REMOVE)/g' \\\n\t      -e 's/@''GNULIB_RENAME''@/$(GNULIB_RENAME)/g' \\\n\t      -e 's/@''GNULIB_RENAMEAT''@/$(GNULIB_RENAMEAT)/g' \\\n\t      -e 's/@''GNULIB_SCANF''@/$(GNULIB_SCANF)/g' \\\n\t      -e 's/@''GNULIB_SNPRINTF''@/$(GNULIB_SNPRINTF)/g' \\\n\t      -e 's/@''GNULIB_SPRINTF_POSIX''@/$(GNULIB_SPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_STDIO_H_NONBLOCKING''@/$(GNULIB_STDIO_H_NONBLOCKING)/g' \\\n\t      -e 's/@''GNULIB_STDIO_H_SIGPIPE''@/$(GNULIB_STDIO_H_SIGPIPE)/g' \\\n\t      -e 's/@''GNULIB_TMPFILE''@/$(GNULIB_TMPFILE)/g' \\\n\t      -e 's/@''GNULIB_VASPRINTF''@/$(GNULIB_VASPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VDPRINTF''@/$(GNULIB_VDPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VFPRINTF''@/$(GNULIB_VFPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VFPRINTF_POSIX''@/$(GNULIB_VFPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_VFSCANF''@/$(GNULIB_VFSCANF)/g' \\\n\t      -e 's/@''GNULIB_VSCANF''@/$(GNULIB_VSCANF)/g' \\\n\t      -e 's/@''GNULIB_VPRINTF''@/$(GNULIB_VPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VPRINTF_POSIX''@/$(GNULIB_VPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_VSNPRINTF''@/$(GNULIB_VSNPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VSPRINTF_POSIX''@/$(GNULIB_VSPRINTF_POSIX)/g' \\\n\t      < $(srcdir)/stdio.in.h | \\\n\t  sed -e 's|@''HAVE_DECL_FPURGE''@|$(HAVE_DECL_FPURGE)|g' \\\n\t      -e 's|@''HAVE_DECL_FSEEKO''@|$(HAVE_DECL_FSEEKO)|g' \\\n\t      -e 's|@''HAVE_DECL_FTELLO''@|$(HAVE_DECL_FTELLO)|g' \\\n\t      -e 's|@''HAVE_DECL_GETDELIM''@|$(HAVE_DECL_GETDELIM)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLINE''@|$(HAVE_DECL_GETLINE)|g' \\\n\t      -e 's|@''HAVE_DECL_OBSTACK_PRINTF''@|$(HAVE_DECL_OBSTACK_PRINTF)|g' \\\n\t      -e 's|@''HAVE_DECL_SNPRINTF''@|$(HAVE_DECL_SNPRINTF)|g' \\\n\t      -e 's|@''HAVE_DECL_VSNPRINTF''@|$(HAVE_DECL_VSNPRINTF)|g' \\\n\t      -e 's|@''HAVE_DPRINTF''@|$(HAVE_DPRINTF)|g' \\\n\t      -e 's|@''HAVE_FSEEKO''@|$(HAVE_FSEEKO)|g' \\\n\t      -e 's|@''HAVE_FTELLO''@|$(HAVE_FTELLO)|g' \\\n\t      -e 's|@''HAVE_PCLOSE''@|$(HAVE_PCLOSE)|g' \\\n\t      -e 's|@''HAVE_POPEN''@|$(HAVE_POPEN)|g' \\\n\t      -e 's|@''HAVE_RENAMEAT''@|$(HAVE_RENAMEAT)|g' \\\n\t      -e 's|@''HAVE_VASPRINTF''@|$(HAVE_VASPRINTF)|g' \\\n\t      -e 's|@''HAVE_VDPRINTF''@|$(HAVE_VDPRINTF)|g' \\\n\t      -e 's|@''REPLACE_DPRINTF''@|$(REPLACE_DPRINTF)|g' \\\n\t      -e 's|@''REPLACE_FCLOSE''@|$(REPLACE_FCLOSE)|g' \\\n\t      -e 's|@''REPLACE_FDOPEN''@|$(REPLACE_FDOPEN)|g' \\\n\t      -e 's|@''REPLACE_FFLUSH''@|$(REPLACE_FFLUSH)|g' \\\n\t      -e 's|@''REPLACE_FOPEN''@|$(REPLACE_FOPEN)|g' \\\n\t      -e 's|@''REPLACE_FPRINTF''@|$(REPLACE_FPRINTF)|g' \\\n\t      -e 's|@''REPLACE_FPURGE''@|$(REPLACE_FPURGE)|g' \\\n\t      -e 's|@''REPLACE_FREOPEN''@|$(REPLACE_FREOPEN)|g' \\\n\t      -e 's|@''REPLACE_FSEEK''@|$(REPLACE_FSEEK)|g' \\\n\t      -e 's|@''REPLACE_FSEEKO''@|$(REPLACE_FSEEKO)|g' \\\n\t      -e 's|@''REPLACE_FTELL''@|$(REPLACE_FTELL)|g' \\\n\t      -e 's|@''REPLACE_FTELLO''@|$(REPLACE_FTELLO)|g' \\\n\t      -e 's|@''REPLACE_GETDELIM''@|$(REPLACE_GETDELIM)|g' \\\n\t      -e 's|@''REPLACE_GETLINE''@|$(REPLACE_GETLINE)|g' \\\n\t      -e 's|@''REPLACE_OBSTACK_PRINTF''@|$(REPLACE_OBSTACK_PRINTF)|g' \\\n\t      -e 's|@''REPLACE_PERROR''@|$(REPLACE_PERROR)|g' \\\n\t      -e 's|@''REPLACE_POPEN''@|$(REPLACE_POPEN)|g' \\\n\t      -e 's|@''REPLACE_PRINTF''@|$(REPLACE_PRINTF)|g' \\\n\t      -e 's|@''REPLACE_REMOVE''@|$(REPLACE_REMOVE)|g' \\\n\t      -e 's|@''REPLACE_RENAME''@|$(REPLACE_RENAME)|g' \\\n\t      -e 's|@''REPLACE_RENAMEAT''@|$(REPLACE_RENAMEAT)|g' \\\n\t      -e 's|@''REPLACE_SNPRINTF''@|$(REPLACE_SNPRINTF)|g' \\\n\t      -e 's|@''REPLACE_SPRINTF''@|$(REPLACE_SPRINTF)|g' \\\n\t      -e 's|@''REPLACE_STDIO_READ_FUNCS''@|$(REPLACE_STDIO_READ_FUNCS)|g' \\\n\t      -e 's|@''REPLACE_STDIO_WRITE_FUNCS''@|$(REPLACE_STDIO_WRITE_FUNCS)|g' \\\n\t      -e 's|@''REPLACE_TMPFILE''@|$(REPLACE_TMPFILE)|g' \\\n\t      -e 's|@''REPLACE_VASPRINTF''@|$(REPLACE_VASPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VDPRINTF''@|$(REPLACE_VDPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VFPRINTF''@|$(REPLACE_VFPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VPRINTF''@|$(REPLACE_VPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VSNPRINTF''@|$(REPLACE_VSNPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VSPRINTF''@|$(REPLACE_VSPRINTF)|g' \\\n\t      -e 's|@''ASM_SYMBOL_PREFIX''@|$(ASM_SYMBOL_PREFIX)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <stdlib.h> when the system\n# doesn't have one that works with the given compiler.\nstdlib.h: stdlib.in.h $(top_builddir)/config.status $(CXXDEFS_H) \\\n  $(_NORETURN_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_STDLIB_H''@|$(NEXT_STDLIB_H)|g' \\\n\t      -e 's/@''GNULIB__EXIT''@/$(GNULIB__EXIT)/g' \\\n\t      -e 's/@''GNULIB_ATOLL''@/$(GNULIB_ATOLL)/g' \\\n\t      -e 's/@''GNULIB_CALLOC_POSIX''@/$(GNULIB_CALLOC_POSIX)/g' \\\n\t      -e 's/@''GNULIB_CANONICALIZE_FILE_NAME''@/$(GNULIB_CANONICALIZE_FILE_NAME)/g' \\\n\t      -e 's/@''GNULIB_GETLOADAVG''@/$(GNULIB_GETLOADAVG)/g' \\\n\t      -e 's/@''GNULIB_GETSUBOPT''@/$(GNULIB_GETSUBOPT)/g' \\\n\t      -e 's/@''GNULIB_GRANTPT''@/$(GNULIB_GRANTPT)/g' \\\n\t      -e 's/@''GNULIB_MALLOC_POSIX''@/$(GNULIB_MALLOC_POSIX)/g' \\\n\t      -e 's/@''GNULIB_MBTOWC''@/$(GNULIB_MBTOWC)/g' \\\n\t      -e 's/@''GNULIB_MKDTEMP''@/$(GNULIB_MKDTEMP)/g' \\\n\t      -e 's/@''GNULIB_MKOSTEMP''@/$(GNULIB_MKOSTEMP)/g' \\\n\t      -e 's/@''GNULIB_MKOSTEMPS''@/$(GNULIB_MKOSTEMPS)/g' \\\n\t      -e 's/@''GNULIB_MKSTEMP''@/$(GNULIB_MKSTEMP)/g' \\\n\t      -e 's/@''GNULIB_MKSTEMPS''@/$(GNULIB_MKSTEMPS)/g' \\\n\t      -e 's/@''GNULIB_POSIX_OPENPT''@/$(GNULIB_POSIX_OPENPT)/g' \\\n\t      -e 's/@''GNULIB_PTSNAME''@/$(GNULIB_PTSNAME)/g' \\\n\t      -e 's/@''GNULIB_PTSNAME_R''@/$(GNULIB_PTSNAME_R)/g' \\\n\t      -e 's/@''GNULIB_PUTENV''@/$(GNULIB_PUTENV)/g' \\\n\t      -e 's/@''GNULIB_QSORT_R''@/$(GNULIB_QSORT_R)/g' \\\n\t      -e 's/@''GNULIB_RANDOM''@/$(GNULIB_RANDOM)/g' \\\n\t      -e 's/@''GNULIB_RANDOM_R''@/$(GNULIB_RANDOM_R)/g' \\\n\t      -e 's/@''GNULIB_REALLOC_POSIX''@/$(GNULIB_REALLOC_POSIX)/g' \\\n\t      -e 's/@''GNULIB_REALPATH''@/$(GNULIB_REALPATH)/g' \\\n\t      -e 's/@''GNULIB_RPMATCH''@/$(GNULIB_RPMATCH)/g' \\\n\t      -e 's/@''GNULIB_SECURE_GETENV''@/$(GNULIB_SECURE_GETENV)/g' \\\n\t      -e 's/@''GNULIB_SETENV''@/$(GNULIB_SETENV)/g' \\\n\t      -e 's/@''GNULIB_STRTOD''@/$(GNULIB_STRTOD)/g' \\\n\t      -e 's/@''GNULIB_STRTOLL''@/$(GNULIB_STRTOLL)/g' \\\n\t      -e 's/@''GNULIB_STRTOULL''@/$(GNULIB_STRTOULL)/g' \\\n\t      -e 's/@''GNULIB_SYSTEM_POSIX''@/$(GNULIB_SYSTEM_POSIX)/g' \\\n\t      -e 's/@''GNULIB_UNLOCKPT''@/$(GNULIB_UNLOCKPT)/g' \\\n\t      -e 's/@''GNULIB_UNSETENV''@/$(GNULIB_UNSETENV)/g' \\\n\t      -e 's/@''GNULIB_WCTOMB''@/$(GNULIB_WCTOMB)/g' \\\n\t      < $(srcdir)/stdlib.in.h | \\\n\t  sed -e 's|@''HAVE__EXIT''@|$(HAVE__EXIT)|g' \\\n\t      -e 's|@''HAVE_ATOLL''@|$(HAVE_ATOLL)|g' \\\n\t      -e 's|@''HAVE_CANONICALIZE_FILE_NAME''@|$(HAVE_CANONICALIZE_FILE_NAME)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLOADAVG''@|$(HAVE_DECL_GETLOADAVG)|g' \\\n\t      -e 's|@''HAVE_GETSUBOPT''@|$(HAVE_GETSUBOPT)|g' \\\n\t      -e 's|@''HAVE_GRANTPT''@|$(HAVE_GRANTPT)|g' \\\n\t      -e 's|@''HAVE_MKDTEMP''@|$(HAVE_MKDTEMP)|g' \\\n\t      -e 's|@''HAVE_MKOSTEMP''@|$(HAVE_MKOSTEMP)|g' \\\n\t      -e 's|@''HAVE_MKOSTEMPS''@|$(HAVE_MKOSTEMPS)|g' \\\n\t      -e 's|@''HAVE_MKSTEMP''@|$(HAVE_MKSTEMP)|g' \\\n\t      -e 's|@''HAVE_MKSTEMPS''@|$(HAVE_MKSTEMPS)|g' \\\n\t      -e 's|@''HAVE_POSIX_OPENPT''@|$(HAVE_POSIX_OPENPT)|g' \\\n\t      -e 's|@''HAVE_PTSNAME''@|$(HAVE_PTSNAME)|g' \\\n\t      -e 's|@''HAVE_PTSNAME_R''@|$(HAVE_PTSNAME_R)|g' \\\n\t      -e 's|@''HAVE_QSORT_R''@|$(HAVE_QSORT_R)|g' \\\n\t      -e 's|@''HAVE_RANDOM''@|$(HAVE_RANDOM)|g' \\\n\t      -e 's|@''HAVE_RANDOM_H''@|$(HAVE_RANDOM_H)|g' \\\n\t      -e 's|@''HAVE_RANDOM_R''@|$(HAVE_RANDOM_R)|g' \\\n\t      -e 's|@''HAVE_REALPATH''@|$(HAVE_REALPATH)|g' \\\n\t      -e 's|@''HAVE_RPMATCH''@|$(HAVE_RPMATCH)|g' \\\n\t      -e 's|@''HAVE_SECURE_GETENV''@|$(HAVE_SECURE_GETENV)|g' \\\n\t      -e 's|@''HAVE_DECL_SETENV''@|$(HAVE_DECL_SETENV)|g' \\\n\t      -e 's|@''HAVE_STRTOD''@|$(HAVE_STRTOD)|g' \\\n\t      -e 's|@''HAVE_STRTOLL''@|$(HAVE_STRTOLL)|g' \\\n\t      -e 's|@''HAVE_STRTOULL''@|$(HAVE_STRTOULL)|g' \\\n\t      -e 's|@''HAVE_STRUCT_RANDOM_DATA''@|$(HAVE_STRUCT_RANDOM_DATA)|g' \\\n\t      -e 's|@''HAVE_SYS_LOADAVG_H''@|$(HAVE_SYS_LOADAVG_H)|g' \\\n\t      -e 's|@''HAVE_UNLOCKPT''@|$(HAVE_UNLOCKPT)|g' \\\n\t      -e 's|@''HAVE_DECL_UNSETENV''@|$(HAVE_DECL_UNSETENV)|g' \\\n\t      -e 's|@''REPLACE_CALLOC''@|$(REPLACE_CALLOC)|g' \\\n\t      -e 's|@''REPLACE_CANONICALIZE_FILE_NAME''@|$(REPLACE_CANONICALIZE_FILE_NAME)|g' \\\n\t      -e 's|@''REPLACE_MALLOC''@|$(REPLACE_MALLOC)|g' \\\n\t      -e 's|@''REPLACE_MBTOWC''@|$(REPLACE_MBTOWC)|g' \\\n\t      -e 's|@''REPLACE_MKSTEMP''@|$(REPLACE_MKSTEMP)|g' \\\n\t      -e 's|@''REPLACE_PTSNAME''@|$(REPLACE_PTSNAME)|g' \\\n\t      -e 's|@''REPLACE_PTSNAME_R''@|$(REPLACE_PTSNAME_R)|g' \\\n\t      -e 's|@''REPLACE_PUTENV''@|$(REPLACE_PUTENV)|g' \\\n\t      -e 's|@''REPLACE_QSORT_R''@|$(REPLACE_QSORT_R)|g' \\\n\t      -e 's|@''REPLACE_RANDOM_R''@|$(REPLACE_RANDOM_R)|g' \\\n\t      -e 's|@''REPLACE_REALLOC''@|$(REPLACE_REALLOC)|g' \\\n\t      -e 's|@''REPLACE_REALPATH''@|$(REPLACE_REALPATH)|g' \\\n\t      -e 's|@''REPLACE_SETENV''@|$(REPLACE_SETENV)|g' \\\n\t      -e 's|@''REPLACE_STRTOD''@|$(REPLACE_STRTOD)|g' \\\n\t      -e 's|@''REPLACE_UNSETENV''@|$(REPLACE_UNSETENV)|g' \\\n\t      -e 's|@''REPLACE_WCTOMB''@|$(REPLACE_WCTOMB)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _Noreturn/r $(_NORETURN_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <string.h> when the system\n# doesn't have one that works with the given compiler.\nstring.h: string.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_STRING_H''@|$(NEXT_STRING_H)|g' \\\n\t      -e 's/@''GNULIB_FFSL''@/$(GNULIB_FFSL)/g' \\\n\t      -e 's/@''GNULIB_FFSLL''@/$(GNULIB_FFSLL)/g' \\\n\t      -e 's/@''GNULIB_MBSLEN''@/$(GNULIB_MBSLEN)/g' \\\n\t      -e 's/@''GNULIB_MBSNLEN''@/$(GNULIB_MBSNLEN)/g' \\\n\t      -e 's/@''GNULIB_MBSCHR''@/$(GNULIB_MBSCHR)/g' \\\n\t      -e 's/@''GNULIB_MBSRCHR''@/$(GNULIB_MBSRCHR)/g' \\\n\t      -e 's/@''GNULIB_MBSSTR''@/$(GNULIB_MBSSTR)/g' \\\n\t      -e 's/@''GNULIB_MBSCASECMP''@/$(GNULIB_MBSCASECMP)/g' \\\n\t      -e 's/@''GNULIB_MBSNCASECMP''@/$(GNULIB_MBSNCASECMP)/g' \\\n\t      -e 's/@''GNULIB_MBSPCASECMP''@/$(GNULIB_MBSPCASECMP)/g' \\\n\t      -e 's/@''GNULIB_MBSCASESTR''@/$(GNULIB_MBSCASESTR)/g' \\\n\t      -e 's/@''GNULIB_MBSCSPN''@/$(GNULIB_MBSCSPN)/g' \\\n\t      -e 's/@''GNULIB_MBSPBRK''@/$(GNULIB_MBSPBRK)/g' \\\n\t      -e 's/@''GNULIB_MBSSPN''@/$(GNULIB_MBSSPN)/g' \\\n\t      -e 's/@''GNULIB_MBSSEP''@/$(GNULIB_MBSSEP)/g' \\\n\t      -e 's/@''GNULIB_MBSTOK_R''@/$(GNULIB_MBSTOK_R)/g' \\\n\t      -e 's/@''GNULIB_MEMCHR''@/$(GNULIB_MEMCHR)/g' \\\n\t      -e 's/@''GNULIB_MEMMEM''@/$(GNULIB_MEMMEM)/g' \\\n\t      -e 's/@''GNULIB_MEMPCPY''@/$(GNULIB_MEMPCPY)/g' \\\n\t      -e 's/@''GNULIB_MEMRCHR''@/$(GNULIB_MEMRCHR)/g' \\\n\t      -e 's/@''GNULIB_RAWMEMCHR''@/$(GNULIB_RAWMEMCHR)/g' \\\n\t      -e 's/@''GNULIB_STPCPY''@/$(GNULIB_STPCPY)/g' \\\n\t      -e 's/@''GNULIB_STPNCPY''@/$(GNULIB_STPNCPY)/g' \\\n\t      -e 's/@''GNULIB_STRCHRNUL''@/$(GNULIB_STRCHRNUL)/g' \\\n\t      -e 's/@''GNULIB_STRDUP''@/$(GNULIB_STRDUP)/g' \\\n\t      -e 's/@''GNULIB_STRNCAT''@/$(GNULIB_STRNCAT)/g' \\\n\t      -e 's/@''GNULIB_STRNDUP''@/$(GNULIB_STRNDUP)/g' \\\n\t      -e 's/@''GNULIB_STRNLEN''@/$(GNULIB_STRNLEN)/g' \\\n\t      -e 's/@''GNULIB_STRPBRK''@/$(GNULIB_STRPBRK)/g' \\\n\t      -e 's/@''GNULIB_STRSEP''@/$(GNULIB_STRSEP)/g' \\\n\t      -e 's/@''GNULIB_STRSTR''@/$(GNULIB_STRSTR)/g' \\\n\t      -e 's/@''GNULIB_STRCASESTR''@/$(GNULIB_STRCASESTR)/g' \\\n\t      -e 's/@''GNULIB_STRTOK_R''@/$(GNULIB_STRTOK_R)/g' \\\n\t      -e 's/@''GNULIB_STRERROR''@/$(GNULIB_STRERROR)/g' \\\n\t      -e 's/@''GNULIB_STRERROR_R''@/$(GNULIB_STRERROR_R)/g' \\\n\t      -e 's/@''GNULIB_STRSIGNAL''@/$(GNULIB_STRSIGNAL)/g' \\\n\t      -e 's/@''GNULIB_STRVERSCMP''@/$(GNULIB_STRVERSCMP)/g' \\\n\t      < $(srcdir)/string.in.h | \\\n\t  sed -e 's|@''HAVE_FFSL''@|$(HAVE_FFSL)|g' \\\n\t      -e 's|@''HAVE_FFSLL''@|$(HAVE_FFSLL)|g' \\\n\t      -e 's|@''HAVE_MBSLEN''@|$(HAVE_MBSLEN)|g' \\\n\t      -e 's|@''HAVE_MEMCHR''@|$(HAVE_MEMCHR)|g' \\\n\t      -e 's|@''HAVE_DECL_MEMMEM''@|$(HAVE_DECL_MEMMEM)|g' \\\n\t      -e 's|@''HAVE_MEMPCPY''@|$(HAVE_MEMPCPY)|g' \\\n\t      -e 's|@''HAVE_DECL_MEMRCHR''@|$(HAVE_DECL_MEMRCHR)|g' \\\n\t      -e 's|@''HAVE_RAWMEMCHR''@|$(HAVE_RAWMEMCHR)|g' \\\n\t      -e 's|@''HAVE_STPCPY''@|$(HAVE_STPCPY)|g' \\\n\t      -e 's|@''HAVE_STPNCPY''@|$(HAVE_STPNCPY)|g' \\\n\t      -e 's|@''HAVE_STRCHRNUL''@|$(HAVE_STRCHRNUL)|g' \\\n\t      -e 's|@''HAVE_DECL_STRDUP''@|$(HAVE_DECL_STRDUP)|g' \\\n\t      -e 's|@''HAVE_DECL_STRNDUP''@|$(HAVE_DECL_STRNDUP)|g' \\\n\t      -e 's|@''HAVE_DECL_STRNLEN''@|$(HAVE_DECL_STRNLEN)|g' \\\n\t      -e 's|@''HAVE_STRPBRK''@|$(HAVE_STRPBRK)|g' \\\n\t      -e 's|@''HAVE_STRSEP''@|$(HAVE_STRSEP)|g' \\\n\t      -e 's|@''HAVE_STRCASESTR''@|$(HAVE_STRCASESTR)|g' \\\n\t      -e 's|@''HAVE_DECL_STRTOK_R''@|$(HAVE_DECL_STRTOK_R)|g' \\\n\t      -e 's|@''HAVE_DECL_STRERROR_R''@|$(HAVE_DECL_STRERROR_R)|g' \\\n\t      -e 's|@''HAVE_DECL_STRSIGNAL''@|$(HAVE_DECL_STRSIGNAL)|g' \\\n\t      -e 's|@''HAVE_STRVERSCMP''@|$(HAVE_STRVERSCMP)|g' \\\n\t      -e 's|@''REPLACE_STPNCPY''@|$(REPLACE_STPNCPY)|g' \\\n\t      -e 's|@''REPLACE_MEMCHR''@|$(REPLACE_MEMCHR)|g' \\\n\t      -e 's|@''REPLACE_MEMMEM''@|$(REPLACE_MEMMEM)|g' \\\n\t      -e 's|@''REPLACE_STRCASESTR''@|$(REPLACE_STRCASESTR)|g' \\\n\t      -e 's|@''REPLACE_STRCHRNUL''@|$(REPLACE_STRCHRNUL)|g' \\\n\t      -e 's|@''REPLACE_STRDUP''@|$(REPLACE_STRDUP)|g' \\\n\t      -e 's|@''REPLACE_STRSTR''@|$(REPLACE_STRSTR)|g' \\\n\t      -e 's|@''REPLACE_STRERROR''@|$(REPLACE_STRERROR)|g' \\\n\t      -e 's|@''REPLACE_STRERROR_R''@|$(REPLACE_STRERROR_R)|g' \\\n\t      -e 's|@''REPLACE_STRNCAT''@|$(REPLACE_STRNCAT)|g' \\\n\t      -e 's|@''REPLACE_STRNDUP''@|$(REPLACE_STRNDUP)|g' \\\n\t      -e 's|@''REPLACE_STRNLEN''@|$(REPLACE_STRNLEN)|g' \\\n\t      -e 's|@''REPLACE_STRSIGNAL''@|$(REPLACE_STRSIGNAL)|g' \\\n\t      -e 's|@''REPLACE_STRTOK_R''@|$(REPLACE_STRTOK_R)|g' \\\n\t      -e 's|@''UNDEFINE_STRTOK_R''@|$(UNDEFINE_STRTOK_R)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t      < $(srcdir)/string.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <sys/stat.h> when the system\n# has one that is incomplete.\nsys/stat.h: sys_stat.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_at)$(MKDIR_P) sys\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_SYS_STAT_H''@|$(NEXT_SYS_STAT_H)|g' \\\n\t      -e 's|@''WINDOWS_64_BIT_ST_SIZE''@|$(WINDOWS_64_BIT_ST_SIZE)|g' \\\n\t      -e 's/@''GNULIB_FCHMODAT''@/$(GNULIB_FCHMODAT)/g' \\\n\t      -e 's/@''GNULIB_FSTAT''@/$(GNULIB_FSTAT)/g' \\\n\t      -e 's/@''GNULIB_FSTATAT''@/$(GNULIB_FSTATAT)/g' \\\n\t      -e 's/@''GNULIB_FUTIMENS''@/$(GNULIB_FUTIMENS)/g' \\\n\t      -e 's/@''GNULIB_LCHMOD''@/$(GNULIB_LCHMOD)/g' \\\n\t      -e 's/@''GNULIB_LSTAT''@/$(GNULIB_LSTAT)/g' \\\n\t      -e 's/@''GNULIB_MKDIRAT''@/$(GNULIB_MKDIRAT)/g' \\\n\t      -e 's/@''GNULIB_MKFIFO''@/$(GNULIB_MKFIFO)/g' \\\n\t      -e 's/@''GNULIB_MKFIFOAT''@/$(GNULIB_MKFIFOAT)/g' \\\n\t      -e 's/@''GNULIB_MKNOD''@/$(GNULIB_MKNOD)/g' \\\n\t      -e 's/@''GNULIB_MKNODAT''@/$(GNULIB_MKNODAT)/g' \\\n\t      -e 's/@''GNULIB_STAT''@/$(GNULIB_STAT)/g' \\\n\t      -e 's/@''GNULIB_UTIMENSAT''@/$(GNULIB_UTIMENSAT)/g' \\\n\t      -e 's|@''HAVE_FCHMODAT''@|$(HAVE_FCHMODAT)|g' \\\n\t      -e 's|@''HAVE_FSTATAT''@|$(HAVE_FSTATAT)|g' \\\n\t      -e 's|@''HAVE_FUTIMENS''@|$(HAVE_FUTIMENS)|g' \\\n\t      -e 's|@''HAVE_LCHMOD''@|$(HAVE_LCHMOD)|g' \\\n\t      -e 's|@''HAVE_LSTAT''@|$(HAVE_LSTAT)|g' \\\n\t      -e 's|@''HAVE_MKDIRAT''@|$(HAVE_MKDIRAT)|g' \\\n\t      -e 's|@''HAVE_MKFIFO''@|$(HAVE_MKFIFO)|g' \\\n\t      -e 's|@''HAVE_MKFIFOAT''@|$(HAVE_MKFIFOAT)|g' \\\n\t      -e 's|@''HAVE_MKNOD''@|$(HAVE_MKNOD)|g' \\\n\t      -e 's|@''HAVE_MKNODAT''@|$(HAVE_MKNODAT)|g' \\\n\t      -e 's|@''HAVE_UTIMENSAT''@|$(HAVE_UTIMENSAT)|g' \\\n\t      -e 's|@''REPLACE_FSTAT''@|$(REPLACE_FSTAT)|g' \\\n\t      -e 's|@''REPLACE_FSTATAT''@|$(REPLACE_FSTATAT)|g' \\\n\t      -e 's|@''REPLACE_FUTIMENS''@|$(REPLACE_FUTIMENS)|g' \\\n\t      -e 's|@''REPLACE_LSTAT''@|$(REPLACE_LSTAT)|g' \\\n\t      -e 's|@''REPLACE_MKDIR''@|$(REPLACE_MKDIR)|g' \\\n\t      -e 's|@''REPLACE_MKFIFO''@|$(REPLACE_MKFIFO)|g' \\\n\t      -e 's|@''REPLACE_MKNOD''@|$(REPLACE_MKNOD)|g' \\\n\t      -e 's|@''REPLACE_STAT''@|$(REPLACE_STAT)|g' \\\n\t      -e 's|@''REPLACE_UTIMENSAT''@|$(REPLACE_UTIMENSAT)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/sys_stat.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <sys/time.h> when the system\n# doesn't have one that works with the given compiler.\nsys/time.h: sys_time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_at)$(MKDIR_P) sys\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's/@''HAVE_SYS_TIME_H''@/$(HAVE_SYS_TIME_H)/g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_SYS_TIME_H''@|$(NEXT_SYS_TIME_H)|g' \\\n\t      -e 's/@''GNULIB_GETTIMEOFDAY''@/$(GNULIB_GETTIMEOFDAY)/g' \\\n\t      -e 's|@''HAVE_WINSOCK2_H''@|$(HAVE_WINSOCK2_H)|g' \\\n\t      -e 's/@''HAVE_GETTIMEOFDAY''@/$(HAVE_GETTIMEOFDAY)/g' \\\n\t      -e 's/@''HAVE_STRUCT_TIMEVAL''@/$(HAVE_STRUCT_TIMEVAL)/g' \\\n\t      -e 's/@''REPLACE_GETTIMEOFDAY''@/$(REPLACE_GETTIMEOFDAY)/g' \\\n\t      -e 's/@''REPLACE_STRUCT_TIMEVAL''@/$(REPLACE_STRUCT_TIMEVAL)/g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/sys_time.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <sys/types.h> when the system\n# doesn't have one that works with the given compiler.\nsys/types.h: sys_types.in.h $(top_builddir)/config.status\n\t$(AM_V_at)$(MKDIR_P) sys\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \\\n\t      -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \\\n\t      < $(srcdir)/sys_types.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <time.h> when the system\n# doesn't have one that works with the given compiler.\ntime.h: time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_TIME_H''@|$(NEXT_TIME_H)|g' \\\n\t      -e 's/@''GNULIB_GETTIMEOFDAY''@/$(GNULIB_GETTIMEOFDAY)/g' \\\n\t      -e 's/@''GNULIB_MKTIME''@/$(GNULIB_MKTIME)/g' \\\n\t      -e 's/@''GNULIB_NANOSLEEP''@/$(GNULIB_NANOSLEEP)/g' \\\n\t      -e 's/@''GNULIB_STRPTIME''@/$(GNULIB_STRPTIME)/g' \\\n\t      -e 's/@''GNULIB_TIMEGM''@/$(GNULIB_TIMEGM)/g' \\\n\t      -e 's/@''GNULIB_TIME_R''@/$(GNULIB_TIME_R)/g' \\\n\t      -e 's/@''GNULIB_TIME_RZ''@/$(GNULIB_TIME_RZ)/g' \\\n\t      -e 's|@''HAVE_DECL_LOCALTIME_R''@|$(HAVE_DECL_LOCALTIME_R)|g' \\\n\t      -e 's|@''HAVE_NANOSLEEP''@|$(HAVE_NANOSLEEP)|g' \\\n\t      -e 's|@''HAVE_STRPTIME''@|$(HAVE_STRPTIME)|g' \\\n\t      -e 's|@''HAVE_TIMEGM''@|$(HAVE_TIMEGM)|g' \\\n\t      -e 's|@''HAVE_TIMEZONE_T''@|$(HAVE_TIMEZONE_T)|g' \\\n\t      -e 's|@''REPLACE_GMTIME''@|$(REPLACE_GMTIME)|g' \\\n\t      -e 's|@''REPLACE_LOCALTIME''@|$(REPLACE_LOCALTIME)|g' \\\n\t      -e 's|@''REPLACE_LOCALTIME_R''@|$(REPLACE_LOCALTIME_R)|g' \\\n\t      -e 's|@''REPLACE_MKTIME''@|$(REPLACE_MKTIME)|g' \\\n\t      -e 's|@''REPLACE_NANOSLEEP''@|$(REPLACE_NANOSLEEP)|g' \\\n\t      -e 's|@''REPLACE_TIMEGM''@|$(REPLACE_TIMEGM)|g' \\\n\t      -e 's|@''PTHREAD_H_DEFINES_STRUCT_TIMESPEC''@|$(PTHREAD_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e 's|@''SYS_TIME_H_DEFINES_STRUCT_TIMESPEC''@|$(SYS_TIME_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e 's|@''TIME_H_DEFINES_STRUCT_TIMESPEC''@|$(TIME_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e 's|@''UNISTD_H_DEFINES_STRUCT_TIMESPEC''@|$(UNISTD_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/time.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create an empty placeholder for\n# <unistd.h> when the system doesn't have one.\nunistd.h: unistd.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@||g' \\\n\t      -e 's|@''NEXT_UNISTD_H''@|$(NEXT_UNISTD_H)|g' \\\n\t      -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \\\n\t      -e 's/@''GNULIB_CHDIR''@/$(GNULIB_CHDIR)/g' \\\n\t      -e 's/@''GNULIB_CHOWN''@/$(GNULIB_CHOWN)/g' \\\n\t      -e 's/@''GNULIB_CLOSE''@/$(GNULIB_CLOSE)/g' \\\n\t      -e 's/@''GNULIB_DUP''@/$(GNULIB_DUP)/g' \\\n\t      -e 's/@''GNULIB_DUP2''@/$(GNULIB_DUP2)/g' \\\n\t      -e 's/@''GNULIB_DUP3''@/$(GNULIB_DUP3)/g' \\\n\t      -e 's/@''GNULIB_ENVIRON''@/$(GNULIB_ENVIRON)/g' \\\n\t      -e 's/@''GNULIB_EUIDACCESS''@/$(GNULIB_EUIDACCESS)/g' \\\n\t      -e 's/@''GNULIB_FACCESSAT''@/$(GNULIB_FACCESSAT)/g' \\\n\t      -e 's/@''GNULIB_FCHDIR''@/$(GNULIB_FCHDIR)/g' \\\n\t      -e 's/@''GNULIB_FCHOWNAT''@/$(GNULIB_FCHOWNAT)/g' \\\n\t      -e 's/@''GNULIB_FDATASYNC''@/$(GNULIB_FDATASYNC)/g' \\\n\t      -e 's/@''GNULIB_FSYNC''@/$(GNULIB_FSYNC)/g' \\\n\t      -e 's/@''GNULIB_FTRUNCATE''@/$(GNULIB_FTRUNCATE)/g' \\\n\t      -e 's/@''GNULIB_GETCWD''@/$(GNULIB_GETCWD)/g' \\\n\t      -e 's/@''GNULIB_GETDOMAINNAME''@/$(GNULIB_GETDOMAINNAME)/g' \\\n\t      -e 's/@''GNULIB_GETDTABLESIZE''@/$(GNULIB_GETDTABLESIZE)/g' \\\n\t      -e 's/@''GNULIB_GETGROUPS''@/$(GNULIB_GETGROUPS)/g' \\\n\t      -e 's/@''GNULIB_GETHOSTNAME''@/$(GNULIB_GETHOSTNAME)/g' \\\n\t      -e 's/@''GNULIB_GETLOGIN''@/$(GNULIB_GETLOGIN)/g' \\\n\t      -e 's/@''GNULIB_GETLOGIN_R''@/$(GNULIB_GETLOGIN_R)/g' \\\n\t      -e 's/@''GNULIB_GETPAGESIZE''@/$(GNULIB_GETPAGESIZE)/g' \\\n\t      -e 's/@''GNULIB_GETUSERSHELL''@/$(GNULIB_GETUSERSHELL)/g' \\\n\t      -e 's/@''GNULIB_GROUP_MEMBER''@/$(GNULIB_GROUP_MEMBER)/g' \\\n\t      -e 's/@''GNULIB_ISATTY''@/$(GNULIB_ISATTY)/g' \\\n\t      -e 's/@''GNULIB_LCHOWN''@/$(GNULIB_LCHOWN)/g' \\\n\t      -e 's/@''GNULIB_LINK''@/$(GNULIB_LINK)/g' \\\n\t      -e 's/@''GNULIB_LINKAT''@/$(GNULIB_LINKAT)/g' \\\n\t      -e 's/@''GNULIB_LSEEK''@/$(GNULIB_LSEEK)/g' \\\n\t      -e 's/@''GNULIB_PIPE''@/$(GNULIB_PIPE)/g' \\\n\t      -e 's/@''GNULIB_PIPE2''@/$(GNULIB_PIPE2)/g' \\\n\t      -e 's/@''GNULIB_PREAD''@/$(GNULIB_PREAD)/g' \\\n\t      -e 's/@''GNULIB_PWRITE''@/$(GNULIB_PWRITE)/g' \\\n\t      -e 's/@''GNULIB_READ''@/$(GNULIB_READ)/g' \\\n\t      -e 's/@''GNULIB_READLINK''@/$(GNULIB_READLINK)/g' \\\n\t      -e 's/@''GNULIB_READLINKAT''@/$(GNULIB_READLINKAT)/g' \\\n\t      -e 's/@''GNULIB_RMDIR''@/$(GNULIB_RMDIR)/g' \\\n\t      -e 's/@''GNULIB_SETHOSTNAME''@/$(GNULIB_SETHOSTNAME)/g' \\\n\t      -e 's/@''GNULIB_SLEEP''@/$(GNULIB_SLEEP)/g' \\\n\t      -e 's/@''GNULIB_SYMLINK''@/$(GNULIB_SYMLINK)/g' \\\n\t      -e 's/@''GNULIB_SYMLINKAT''@/$(GNULIB_SYMLINKAT)/g' \\\n\t      -e 's/@''GNULIB_TTYNAME_R''@/$(GNULIB_TTYNAME_R)/g' \\\n\t      -e 's/@''GNULIB_UNISTD_H_GETOPT''@/0$(GNULIB_GL_UNISTD_H_GETOPT)/g' \\\n\t      -e 's/@''GNULIB_UNISTD_H_NONBLOCKING''@/$(GNULIB_UNISTD_H_NONBLOCKING)/g' \\\n\t      -e 's/@''GNULIB_UNISTD_H_SIGPIPE''@/$(GNULIB_UNISTD_H_SIGPIPE)/g' \\\n\t      -e 's/@''GNULIB_UNLINK''@/$(GNULIB_UNLINK)/g' \\\n\t      -e 's/@''GNULIB_UNLINKAT''@/$(GNULIB_UNLINKAT)/g' \\\n\t      -e 's/@''GNULIB_USLEEP''@/$(GNULIB_USLEEP)/g' \\\n\t      -e 's/@''GNULIB_WRITE''@/$(GNULIB_WRITE)/g' \\\n\t      < $(srcdir)/unistd.in.h | \\\n\t  sed -e 's|@''HAVE_CHOWN''@|$(HAVE_CHOWN)|g' \\\n\t      -e 's|@''HAVE_DUP2''@|$(HAVE_DUP2)|g' \\\n\t      -e 's|@''HAVE_DUP3''@|$(HAVE_DUP3)|g' \\\n\t      -e 's|@''HAVE_EUIDACCESS''@|$(HAVE_EUIDACCESS)|g' \\\n\t      -e 's|@''HAVE_FACCESSAT''@|$(HAVE_FACCESSAT)|g' \\\n\t      -e 's|@''HAVE_FCHDIR''@|$(HAVE_FCHDIR)|g' \\\n\t      -e 's|@''HAVE_FCHOWNAT''@|$(HAVE_FCHOWNAT)|g' \\\n\t      -e 's|@''HAVE_FDATASYNC''@|$(HAVE_FDATASYNC)|g' \\\n\t      -e 's|@''HAVE_FSYNC''@|$(HAVE_FSYNC)|g' \\\n\t      -e 's|@''HAVE_FTRUNCATE''@|$(HAVE_FTRUNCATE)|g' \\\n\t      -e 's|@''HAVE_GETDTABLESIZE''@|$(HAVE_GETDTABLESIZE)|g' \\\n\t      -e 's|@''HAVE_GETGROUPS''@|$(HAVE_GETGROUPS)|g' \\\n\t      -e 's|@''HAVE_GETHOSTNAME''@|$(HAVE_GETHOSTNAME)|g' \\\n\t      -e 's|@''HAVE_GETPAGESIZE''@|$(HAVE_GETPAGESIZE)|g' \\\n\t      -e 's|@''HAVE_GROUP_MEMBER''@|$(HAVE_GROUP_MEMBER)|g' \\\n\t      -e 's|@''HAVE_LCHOWN''@|$(HAVE_LCHOWN)|g' \\\n\t      -e 's|@''HAVE_LINK''@|$(HAVE_LINK)|g' \\\n\t      -e 's|@''HAVE_LINKAT''@|$(HAVE_LINKAT)|g' \\\n\t      -e 's|@''HAVE_PIPE''@|$(HAVE_PIPE)|g' \\\n\t      -e 's|@''HAVE_PIPE2''@|$(HAVE_PIPE2)|g' \\\n\t      -e 's|@''HAVE_PREAD''@|$(HAVE_PREAD)|g' \\\n\t      -e 's|@''HAVE_PWRITE''@|$(HAVE_PWRITE)|g' \\\n\t      -e 's|@''HAVE_READLINK''@|$(HAVE_READLINK)|g' \\\n\t      -e 's|@''HAVE_READLINKAT''@|$(HAVE_READLINKAT)|g' \\\n\t      -e 's|@''HAVE_SETHOSTNAME''@|$(HAVE_SETHOSTNAME)|g' \\\n\t      -e 's|@''HAVE_SLEEP''@|$(HAVE_SLEEP)|g' \\\n\t      -e 's|@''HAVE_SYMLINK''@|$(HAVE_SYMLINK)|g' \\\n\t      -e 's|@''HAVE_SYMLINKAT''@|$(HAVE_SYMLINKAT)|g' \\\n\t      -e 's|@''HAVE_UNLINKAT''@|$(HAVE_UNLINKAT)|g' \\\n\t      -e 's|@''HAVE_USLEEP''@|$(HAVE_USLEEP)|g' \\\n\t      -e 's|@''HAVE_DECL_ENVIRON''@|$(HAVE_DECL_ENVIRON)|g' \\\n\t      -e 's|@''HAVE_DECL_FCHDIR''@|$(HAVE_DECL_FCHDIR)|g' \\\n\t      -e 's|@''HAVE_DECL_FDATASYNC''@|$(HAVE_DECL_FDATASYNC)|g' \\\n\t      -e 's|@''HAVE_DECL_GETDOMAINNAME''@|$(HAVE_DECL_GETDOMAINNAME)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLOGIN''@|$(HAVE_DECL_GETLOGIN)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLOGIN_R''@|$(HAVE_DECL_GETLOGIN_R)|g' \\\n\t      -e 's|@''HAVE_DECL_GETPAGESIZE''@|$(HAVE_DECL_GETPAGESIZE)|g' \\\n\t      -e 's|@''HAVE_DECL_GETUSERSHELL''@|$(HAVE_DECL_GETUSERSHELL)|g' \\\n\t      -e 's|@''HAVE_DECL_SETHOSTNAME''@|$(HAVE_DECL_SETHOSTNAME)|g' \\\n\t      -e 's|@''HAVE_DECL_TTYNAME_R''@|$(HAVE_DECL_TTYNAME_R)|g' \\\n\t      -e 's|@''HAVE_OS_H''@|$(HAVE_OS_H)|g' \\\n\t      -e 's|@''HAVE_SYS_PARAM_H''@|$(HAVE_SYS_PARAM_H)|g' \\\n\t  | \\\n\t  sed -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \\\n\t      -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \\\n\t      -e 's|@''REPLACE_DUP''@|$(REPLACE_DUP)|g' \\\n\t      -e 's|@''REPLACE_DUP2''@|$(REPLACE_DUP2)|g' \\\n\t      -e 's|@''REPLACE_FCHOWNAT''@|$(REPLACE_FCHOWNAT)|g' \\\n\t      -e 's|@''REPLACE_FTRUNCATE''@|$(REPLACE_FTRUNCATE)|g' \\\n\t      -e 's|@''REPLACE_GETCWD''@|$(REPLACE_GETCWD)|g' \\\n\t      -e 's|@''REPLACE_GETDOMAINNAME''@|$(REPLACE_GETDOMAINNAME)|g' \\\n\t      -e 's|@''REPLACE_GETDTABLESIZE''@|$(REPLACE_GETDTABLESIZE)|g' \\\n\t      -e 's|@''REPLACE_GETLOGIN_R''@|$(REPLACE_GETLOGIN_R)|g' \\\n\t      -e 's|@''REPLACE_GETGROUPS''@|$(REPLACE_GETGROUPS)|g' \\\n\t      -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \\\n\t      -e 's|@''REPLACE_ISATTY''@|$(REPLACE_ISATTY)|g' \\\n\t      -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \\\n\t      -e 's|@''REPLACE_LINK''@|$(REPLACE_LINK)|g' \\\n\t      -e 's|@''REPLACE_LINKAT''@|$(REPLACE_LINKAT)|g' \\\n\t      -e 's|@''REPLACE_LSEEK''@|$(REPLACE_LSEEK)|g' \\\n\t      -e 's|@''REPLACE_PREAD''@|$(REPLACE_PREAD)|g' \\\n\t      -e 's|@''REPLACE_PWRITE''@|$(REPLACE_PWRITE)|g' \\\n\t      -e 's|@''REPLACE_READ''@|$(REPLACE_READ)|g' \\\n\t      -e 's|@''REPLACE_READLINK''@|$(REPLACE_READLINK)|g' \\\n\t      -e 's|@''REPLACE_READLINKAT''@|$(REPLACE_READLINKAT)|g' \\\n\t      -e 's|@''REPLACE_RMDIR''@|$(REPLACE_RMDIR)|g' \\\n\t      -e 's|@''REPLACE_SLEEP''@|$(REPLACE_SLEEP)|g' \\\n\t      -e 's|@''REPLACE_SYMLINK''@|$(REPLACE_SYMLINK)|g' \\\n\t      -e 's|@''REPLACE_SYMLINKAT''@|$(REPLACE_SYMLINKAT)|g' \\\n\t      -e 's|@''REPLACE_TTYNAME_R''@|$(REPLACE_TTYNAME_R)|g' \\\n\t      -e 's|@''REPLACE_UNLINK''@|$(REPLACE_UNLINK)|g' \\\n\t      -e 's|@''REPLACE_UNLINKAT''@|$(REPLACE_UNLINKAT)|g' \\\n\t      -e 's|@''REPLACE_USLEEP''@|$(REPLACE_USLEEP)|g' \\\n\t      -e 's|@''REPLACE_WRITE''@|$(REPLACE_WRITE)|g' \\\n\t      -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|$(UNISTD_H_HAVE_WINSOCK2_H)|g' \\\n\t      -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|$(UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\nunitypes.h: unitypes.in.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  cat $(srcdir)/unitypes.in.h; \\\n\t} > $@-t && \\\n\tmv -f $@-t $@\n\nuniwidth.h: uniwidth.in.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  cat $(srcdir)/uniwidth.in.h; \\\n\t} > $@-t && \\\n\tmv -f $@-t $@\n\nmostlyclean-local: mostlyclean-generic\n\t@for dir in '' $(MOSTLYCLEANDIRS); do \\\n\t  if test -n \"$$dir\" && test -d $$dir; then \\\n\t    echo \"rmdir $$dir\"; rmdir $$dir; \\\n\t  fi; \\\n\tdone; \\\n\t:\n\n# Tell versions [3.59,3.63) of GNU make to not export all variables.\n# Otherwise a system limit (for SysV at least) may be exceeded.\n.NOEXPORT:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/Makefile.am",
    "content": "## Makefile for the srclib subdirectory of GNU libiconv\n## Copyright (C) 2003-2006, 2009, 2016 Free Software Foundation, Inc.\n##\n## This program is free software; you can redistribute it and/or modify\n## it under the terms of the GNU General Public License as published by\n## the Free Software Foundation; either version 2, or (at your option)\n## any later version.\n##\n## This program is distributed in the hope that it will be useful,\n## but WITHOUT ANY WARRANTY; without even the implied warranty of\n## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n## GNU General Public License for more details.\n##\n## You should have received a copy of the GNU General Public License\n## along with this program; if not, see <http://www.gnu.org/licenses/>.\n\n## Process this file with automake to produce Makefile.in.\n\nAUTOMAKE_OPTIONS = 1.5 gnits subdir-objects no-dependencies\nEXTRA_DIST =\nBUILT_SOURCES =\nMOSTLYCLEANFILES = core *.stackdump\nMOSTLYCLEANDIRS =\n\nnoinst_LIBRARIES =\n\nAM_CPPFLAGS =\n\ninclude Makefile.gnulib\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/Makefile.gnulib",
    "content": "## DO NOT EDIT! GENERATED AUTOMATICALLY!\n## Process this file with automake to produce Makefile.in.\n# Copyright (C) 2002-2017 Free Software Foundation, Inc.\n#\n# This file is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This file is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this file.  If not, see <http://www.gnu.org/licenses/>.\n#\n# As a special exception to the GNU General Public License,\n# this file may be distributed as part of a program that\n# contains a configuration script generated by Autoconf, under\n# the same distribution terms as the rest of that program.\n#\n# Generated by gnulib-tool.\n# Reproduce by: gnulib-tool --import --local-dir=gnulib-local --lib=libicrt --source-base=srclib --m4-base=srcm4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --makefile-name=Makefile.gnulib --no-conditional-dependencies --no-libtool --macro-prefix=gl --no-vc-files binary-io error gettext gettext-h libiconv-misc mbstate progname relocatable-prog safe-read sigpipe stdio stdlib strerror unistd uniwidth/width unlocked-io xalloc\n\n\nMOSTLYCLEANFILES += core *.stackdump\n\nnoinst_LIBRARIES += libicrt.a\n\nlibicrt_a_SOURCES =\nlibicrt_a_LIBADD = $(gl_LIBOBJS)\nlibicrt_a_DEPENDENCIES = $(gl_LIBOBJS)\nEXTRA_libicrt_a_SOURCES =\n\n## begin gnulib module absolute-header\n\n# Use this preprocessor expression to decide whether #include_next works.\n# Do not rely on a 'configure'-time test for this, since the expression\n# might appear in an installed header, which is used by some other compiler.\nHAVE_INCLUDE_NEXT = (__GNUC__ || 60000000 <= __DECC_VER)\n\n## end   gnulib module absolute-header\n\n## begin gnulib module alloca-opt\n\nBUILT_SOURCES += $(ALLOCA_H)\n\n# We need the following in order to create <alloca.h> when the system\n# doesn't have one that works with the given compiler.\nif GL_GENERATE_ALLOCA_H\nalloca.h: alloca.in.h $(top_builddir)/config.status\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  cat $(srcdir)/alloca.in.h; \\\n\t} > $@-t && \\\n\tmv -f $@-t $@\nelse\nalloca.h: $(top_builddir)/config.status\n\trm -f $@\nendif\nMOSTLYCLEANFILES += alloca.h alloca.h-t\n\nEXTRA_DIST += alloca.in.h\n\n## end   gnulib module alloca-opt\n\n## begin gnulib module allocator\n\nlibicrt_a_SOURCES += allocator.c\n\nEXTRA_DIST += allocator.h\n\n## end   gnulib module allocator\n\n## begin gnulib module areadlink\n\nlibicrt_a_SOURCES += areadlink.c\n\nEXTRA_DIST += areadlink.h\n\n## end   gnulib module areadlink\n\n## begin gnulib module binary-io\n\nlibicrt_a_SOURCES += binary-io.h binary-io.c\n\n## end   gnulib module binary-io\n\n## begin gnulib module canonicalize-lgpl\n\n\nEXTRA_DIST += canonicalize-lgpl.c\n\nEXTRA_libicrt_a_SOURCES += canonicalize-lgpl.c\n\n## end   gnulib module canonicalize-lgpl\n\n## begin gnulib module careadlinkat\n\nlibicrt_a_SOURCES += careadlinkat.c\n\nEXTRA_DIST += careadlinkat.h\n\n## end   gnulib module careadlinkat\n\n## begin gnulib module dirname-lgpl\n\nlibicrt_a_SOURCES += dirname-lgpl.c basename-lgpl.c stripslash.c\n\nEXTRA_DIST += dirname.h\n\n## end   gnulib module dirname-lgpl\n\n## begin gnulib module dosname\n\n\nEXTRA_DIST += dosname.h\n\n## end   gnulib module dosname\n\n## begin gnulib module errno\n\nBUILT_SOURCES += $(ERRNO_H)\n\n# We need the following in order to create <errno.h> when the system\n# doesn't have one that is POSIX compliant.\nif GL_GENERATE_ERRNO_H\nerrno.h: errno.in.h $(top_builddir)/config.status\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_ERRNO_H''@|$(NEXT_ERRNO_H)|g' \\\n\t      -e 's|@''EMULTIHOP_HIDDEN''@|$(EMULTIHOP_HIDDEN)|g' \\\n\t      -e 's|@''EMULTIHOP_VALUE''@|$(EMULTIHOP_VALUE)|g' \\\n\t      -e 's|@''ENOLINK_HIDDEN''@|$(ENOLINK_HIDDEN)|g' \\\n\t      -e 's|@''ENOLINK_VALUE''@|$(ENOLINK_VALUE)|g' \\\n\t      -e 's|@''EOVERFLOW_HIDDEN''@|$(EOVERFLOW_HIDDEN)|g' \\\n\t      -e 's|@''EOVERFLOW_VALUE''@|$(EOVERFLOW_VALUE)|g' \\\n\t      < $(srcdir)/errno.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nelse\nerrno.h: $(top_builddir)/config.status\n\trm -f $@\nendif\nMOSTLYCLEANFILES += errno.h errno.h-t\n\nEXTRA_DIST += errno.in.h\n\n## end   gnulib module errno\n\n## begin gnulib module error\n\n\nEXTRA_DIST += error.c error.h\n\nEXTRA_libicrt_a_SOURCES += error.c\n\n## end   gnulib module error\n\n## begin gnulib module fcntl-h\n\nBUILT_SOURCES += fcntl.h\n\n# We need the following in order to create <fcntl.h> when the system\n# doesn't have one that works with the given compiler.\nfcntl.h: fcntl.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_FCNTL_H''@|$(NEXT_FCNTL_H)|g' \\\n\t      -e 's/@''GNULIB_FCNTL''@/$(GNULIB_FCNTL)/g' \\\n\t      -e 's/@''GNULIB_NONBLOCKING''@/$(GNULIB_NONBLOCKING)/g' \\\n\t      -e 's/@''GNULIB_OPEN''@/$(GNULIB_OPEN)/g' \\\n\t      -e 's/@''GNULIB_OPENAT''@/$(GNULIB_OPENAT)/g' \\\n\t      -e 's|@''HAVE_FCNTL''@|$(HAVE_FCNTL)|g' \\\n\t      -e 's|@''HAVE_OPENAT''@|$(HAVE_OPENAT)|g' \\\n\t      -e 's|@''REPLACE_FCNTL''@|$(REPLACE_FCNTL)|g' \\\n\t      -e 's|@''REPLACE_OPEN''@|$(REPLACE_OPEN)|g' \\\n\t      -e 's|@''REPLACE_OPENAT''@|$(REPLACE_OPENAT)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/fcntl.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += fcntl.h fcntl.h-t\n\nEXTRA_DIST += fcntl.in.h\n\n## end   gnulib module fcntl-h\n\n## begin gnulib module getprogname\n\nlibicrt_a_SOURCES += getprogname.h getprogname.c\n\n## end   gnulib module getprogname\n\n## begin gnulib module gettext\n\n# If your project uses \"gettextize --intl\" to put a source-code\n# copy of libintl into the package, every Makefile.am needs\n# -I$(top_builddir)/intl, so that <libintl.h> can be found in this directory.\n# Here's one way to do this:\n#AM_CPPFLAGS += -I$(top_builddir)/intl\n# This option has no effect when the user disables NLS (because then\n# the intl directory contains no libintl.h file).  This option is not\n# enabled by default because the intl directory might not exist if\n# your project does not use \"gettext --intl\", and some compilers\n# complain about -I options applied to nonexistent directories.\n\nEXTRA_DIST += $(top_srcdir)/build-aux/config.rpath\n\n## end   gnulib module gettext\n\n## begin gnulib module gettext-h\n\nlibicrt_a_SOURCES += gettext.h\n\n## end   gnulib module gettext-h\n\n## begin gnulib module gettimeofday\n\n\nEXTRA_DIST += gettimeofday.c\n\nEXTRA_libicrt_a_SOURCES += gettimeofday.c\n\n## end   gnulib module gettimeofday\n\n## begin gnulib module havelib\n\n\nEXTRA_DIST += $(top_srcdir)/build-aux/config.rpath\n\n## end   gnulib module havelib\n\n## begin gnulib module intprops\n\n\nEXTRA_DIST += intprops.h\n\n## end   gnulib module intprops\n\n## begin gnulib module libiconv-misc\n\n# Parametrization of the 'relocatable' module.\nAM_CPPFLAGS += -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1\n\n## end   gnulib module libiconv-misc\n\n## begin gnulib module limits-h\n\nBUILT_SOURCES += $(LIMITS_H)\n\n# We need the following in order to create <limits.h> when the system\n# doesn't have one that is compatible with GNU.\nif GL_GENERATE_LIMITS_H\nlimits.h: limits.in.h $(top_builddir)/config.status\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_LIMITS_H''@|$(NEXT_LIMITS_H)|g' \\\n\t      < $(srcdir)/limits.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nelse\nlimits.h: $(top_builddir)/config.status\n\trm -f $@\nendif\nMOSTLYCLEANFILES += limits.h limits.h-t\n\nEXTRA_DIST += limits.in.h\n\n## end   gnulib module limits-h\n\n## begin gnulib module lstat\n\n\nEXTRA_DIST += lstat.c\n\nEXTRA_libicrt_a_SOURCES += lstat.c\n\n## end   gnulib module lstat\n\n## begin gnulib module malloc-posix\n\n\nEXTRA_DIST += malloc.c\n\nEXTRA_libicrt_a_SOURCES += malloc.c\n\n## end   gnulib module malloc-posix\n\n## begin gnulib module malloca\n\nlibicrt_a_SOURCES += malloca.c\n\nEXTRA_DIST += malloca.h malloca.valgrind\n\n## end   gnulib module malloca\n\n## begin gnulib module msvc-inval\n\n\nEXTRA_DIST += msvc-inval.c msvc-inval.h\n\nEXTRA_libicrt_a_SOURCES += msvc-inval.c\n\n## end   gnulib module msvc-inval\n\n## begin gnulib module msvc-nothrow\n\n\nEXTRA_DIST += msvc-nothrow.c msvc-nothrow.h\n\nEXTRA_libicrt_a_SOURCES += msvc-nothrow.c\n\n## end   gnulib module msvc-nothrow\n\n## begin gnulib module pathmax\n\n\nEXTRA_DIST += pathmax.h\n\n## end   gnulib module pathmax\n\n## begin gnulib module progname\n\nlibicrt_a_SOURCES += progname.h progname.c\n\n## end   gnulib module progname\n\n## begin gnulib module raise\n\n\nEXTRA_DIST += raise.c\n\nEXTRA_libicrt_a_SOURCES += raise.c\n\n## end   gnulib module raise\n\n## begin gnulib module read\n\n\nEXTRA_DIST += read.c\n\nEXTRA_libicrt_a_SOURCES += read.c\n\n## end   gnulib module read\n\n## begin gnulib module readlink\n\n\nEXTRA_DIST += readlink.c\n\nEXTRA_libicrt_a_SOURCES += readlink.c\n\n## end   gnulib module readlink\n\n## begin gnulib module relocatable-prog\n\nDEFS += -DEXEEXT=\\\"@EXEEXT@\\\"\nif RELOCATABLE_VIA_WRAPPER\nuninstall-hook: uninstall-relocwrapper\nuninstall-relocwrapper:\n\tif test $(RELOCATABLE) = yes; then \\\n\t  case '$(EXEEXT)' in \\\n\t    .bin*) ;; \\\n\t    *) cd $(top_builddir) && \\\n\t       $(MAKE) $(AM_MAKEFLAGS) EXEEXT=.bin$(EXEEXT) \\\n\t\t       AM_MAKEFLAGS='$(AM_MAKEFLAGS) EXEEXT=.bin$(EXEEXT)' \\\n\t\t       uninstall ;; \\\n\t  esac; \\\n\tfi\n.PHONY: uninstall-relocwrapper\nendif\n\nEXTRA_DIST += progreloc.c relocatable.c relocatable.h\n\nEXTRA_libicrt_a_SOURCES += progreloc.c relocatable.c\n\nEXTRA_DIST += $(top_srcdir)/build-aux/config.libpath $(top_srcdir)/build-aux/reloc-ldflags\n\n## end   gnulib module relocatable-prog\n\n## begin gnulib module relocatable-prog-wrapper\n\n\nEXTRA_DIST += allocator.c allocator.h areadlink.c areadlink.h c-ctype.c c-ctype.h canonicalize-lgpl.c careadlinkat.c careadlinkat.h lstat.c malloca.c malloca.h progname.c progname.h progreloc.c readlink.c relocatable.c relocatable.h relocwrapper.c setenv.c stat.c\n\nEXTRA_DIST += $(top_srcdir)/build-aux/install-reloc\n\n## end   gnulib module relocatable-prog-wrapper\n\n## begin gnulib module safe-read\n\nlibicrt_a_SOURCES += safe-read.c\n\nEXTRA_DIST += safe-read.h\n\n## end   gnulib module safe-read\n\n## begin gnulib module signal-h\n\nBUILT_SOURCES += signal.h\n\n# We need the following in order to create <signal.h> when the system\n# doesn't have a complete one.\nsignal.h: signal.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_SIGNAL_H''@|$(NEXT_SIGNAL_H)|g' \\\n\t      -e 's|@''GNULIB_PTHREAD_SIGMASK''@|$(GNULIB_PTHREAD_SIGMASK)|g' \\\n\t      -e 's|@''GNULIB_RAISE''@|$(GNULIB_RAISE)|g' \\\n\t      -e 's/@''GNULIB_SIGNAL_H_SIGPIPE''@/$(GNULIB_SIGNAL_H_SIGPIPE)/g' \\\n\t      -e 's/@''GNULIB_SIGPROCMASK''@/$(GNULIB_SIGPROCMASK)/g' \\\n\t      -e 's/@''GNULIB_SIGACTION''@/$(GNULIB_SIGACTION)/g' \\\n\t      -e 's|@''HAVE_POSIX_SIGNALBLOCKING''@|$(HAVE_POSIX_SIGNALBLOCKING)|g' \\\n\t      -e 's|@''HAVE_PTHREAD_SIGMASK''@|$(HAVE_PTHREAD_SIGMASK)|g' \\\n\t      -e 's|@''HAVE_RAISE''@|$(HAVE_RAISE)|g' \\\n\t      -e 's|@''HAVE_SIGSET_T''@|$(HAVE_SIGSET_T)|g' \\\n\t      -e 's|@''HAVE_SIGINFO_T''@|$(HAVE_SIGINFO_T)|g' \\\n\t      -e 's|@''HAVE_SIGACTION''@|$(HAVE_SIGACTION)|g' \\\n\t      -e 's|@''HAVE_STRUCT_SIGACTION_SA_SIGACTION''@|$(HAVE_STRUCT_SIGACTION_SA_SIGACTION)|g' \\\n\t      -e 's|@''HAVE_TYPE_VOLATILE_SIG_ATOMIC_T''@|$(HAVE_TYPE_VOLATILE_SIG_ATOMIC_T)|g' \\\n\t      -e 's|@''HAVE_SIGHANDLER_T''@|$(HAVE_SIGHANDLER_T)|g' \\\n\t      -e 's|@''REPLACE_PTHREAD_SIGMASK''@|$(REPLACE_PTHREAD_SIGMASK)|g' \\\n\t      -e 's|@''REPLACE_RAISE''@|$(REPLACE_RAISE)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/signal.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += signal.h signal.h-t\n\nEXTRA_DIST += signal.in.h\n\n## end   gnulib module signal-h\n\n## begin gnulib module sigpipe\n\n\nEXTRA_DIST += stdio-write.c\n\nEXTRA_libicrt_a_SOURCES += stdio-write.c\n\n## end   gnulib module sigpipe\n\n## begin gnulib module sigprocmask\n\n\nEXTRA_DIST += sigprocmask.c\n\nEXTRA_libicrt_a_SOURCES += sigprocmask.c\n\n## end   gnulib module sigprocmask\n\n## begin gnulib module snippet/_Noreturn\n\n# Because this Makefile snippet defines a variable used by other\n# gnulib Makefile snippets, it must be present in all Makefile.am that\n# need it. This is ensured by the applicability 'all' defined above.\n\n_NORETURN_H=$(top_srcdir)/build-aux/snippet/_Noreturn.h\n\nEXTRA_DIST += $(top_srcdir)/build-aux/snippet/_Noreturn.h\n\n## end   gnulib module snippet/_Noreturn\n\n## begin gnulib module snippet/arg-nonnull\n\n# The BUILT_SOURCES created by this Makefile snippet are not used via #include\n# statements but through direct file reference. Therefore this snippet must be\n# present in all Makefile.am that need it. This is ensured by the applicability\n# 'all' defined above.\n\nBUILT_SOURCES += arg-nonnull.h\n# The arg-nonnull.h that gets inserted into generated .h files is the same as\n# build-aux/snippet/arg-nonnull.h, except that it has the copyright header cut\n# off.\narg-nonnull.h: $(top_srcdir)/build-aux/snippet/arg-nonnull.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\tsed -n -e '/GL_ARG_NONNULL/,$$p' \\\n\t  < $(top_srcdir)/build-aux/snippet/arg-nonnull.h \\\n\t  > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += arg-nonnull.h arg-nonnull.h-t\n\nARG_NONNULL_H=arg-nonnull.h\n\nEXTRA_DIST += $(top_srcdir)/build-aux/snippet/arg-nonnull.h\n\n## end   gnulib module snippet/arg-nonnull\n\n## begin gnulib module snippet/c++defs\n\n# The BUILT_SOURCES created by this Makefile snippet are not used via #include\n# statements but through direct file reference. Therefore this snippet must be\n# present in all Makefile.am that need it. This is ensured by the applicability\n# 'all' defined above.\n\nBUILT_SOURCES += c++defs.h\n# The c++defs.h that gets inserted into generated .h files is the same as\n# build-aux/snippet/c++defs.h, except that it has the copyright header cut off.\nc++defs.h: $(top_srcdir)/build-aux/snippet/c++defs.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\tsed -n -e '/_GL_CXXDEFS/,$$p' \\\n\t  < $(top_srcdir)/build-aux/snippet/c++defs.h \\\n\t  > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += c++defs.h c++defs.h-t\n\nCXXDEFS_H=c++defs.h\n\nEXTRA_DIST += $(top_srcdir)/build-aux/snippet/c++defs.h\n\n## end   gnulib module snippet/c++defs\n\n## begin gnulib module snippet/warn-on-use\n\nBUILT_SOURCES += warn-on-use.h\n# The warn-on-use.h that gets inserted into generated .h files is the same as\n# build-aux/snippet/warn-on-use.h, except that it has the copyright header cut\n# off.\nwarn-on-use.h: $(top_srcdir)/build-aux/snippet/warn-on-use.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\tsed -n -e '/^.ifndef/,$$p' \\\n\t  < $(top_srcdir)/build-aux/snippet/warn-on-use.h \\\n\t  > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += warn-on-use.h warn-on-use.h-t\n\nWARN_ON_USE_H=warn-on-use.h\n\nEXTRA_DIST += $(top_srcdir)/build-aux/snippet/warn-on-use.h\n\n## end   gnulib module snippet/warn-on-use\n\n## begin gnulib module stat\n\n\nEXTRA_DIST += stat.c\n\nEXTRA_libicrt_a_SOURCES += stat.c\n\n## end   gnulib module stat\n\n## begin gnulib module stdbool\n\nBUILT_SOURCES += $(STDBOOL_H)\n\n# We need the following in order to create <stdbool.h> when the system\n# doesn't have one that works.\nif GL_GENERATE_STDBOOL_H\nstdbool.h: stdbool.in.h $(top_builddir)/config.status\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nelse\nstdbool.h: $(top_builddir)/config.status\n\trm -f $@\nendif\nMOSTLYCLEANFILES += stdbool.h stdbool.h-t\n\nEXTRA_DIST += stdbool.in.h\n\n## end   gnulib module stdbool\n\n## begin gnulib module stddef\n\nBUILT_SOURCES += $(STDDEF_H)\n\n# We need the following in order to create <stddef.h> when the system\n# doesn't have one that works with the given compiler.\nif GL_GENERATE_STDDEF_H\nstddef.h: stddef.in.h $(top_builddir)/config.status\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_STDDEF_H''@|$(NEXT_STDDEF_H)|g' \\\n\t      -e 's|@''HAVE_MAX_ALIGN_T''@|$(HAVE_MAX_ALIGN_T)|g' \\\n\t      -e 's|@''HAVE_WCHAR_T''@|$(HAVE_WCHAR_T)|g' \\\n\t      -e 's|@''REPLACE_NULL''@|$(REPLACE_NULL)|g' \\\n\t      < $(srcdir)/stddef.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nelse\nstddef.h: $(top_builddir)/config.status\n\trm -f $@\nendif\nMOSTLYCLEANFILES += stddef.h stddef.h-t\n\nEXTRA_DIST += stddef.in.h\n\n## end   gnulib module stddef\n\n## begin gnulib module stdint\n\nBUILT_SOURCES += $(STDINT_H)\n\n# We need the following in order to create <stdint.h> when the system\n# doesn't have one that works with the given compiler.\nif GL_GENERATE_STDINT_H\nstdint.h: stdint.in.h $(top_builddir)/config.status\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_STDINT_H''@|$(NEXT_STDINT_H)|g' \\\n\t      -e 's/@''HAVE_C99_STDINT_H''@/$(HAVE_C99_STDINT_H)/g' \\\n\t      -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \\\n\t      -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \\\n\t      -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \\\n\t      -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \\\n\t      -e 's/@''HAVE_WCHAR_H''@/$(HAVE_WCHAR_H)/g' \\\n\t      -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \\\n\t      -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \\\n\t      -e 's/@''APPLE_UNIVERSAL_BUILD''@/$(APPLE_UNIVERSAL_BUILD)/g' \\\n\t      -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \\\n\t      -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \\\n\t      -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \\\n\t      -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \\\n\t      -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \\\n\t      -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \\\n\t      -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \\\n\t      -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \\\n\t      -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \\\n\t      -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \\\n\t      -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \\\n\t      -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \\\n\t      -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \\\n\t      -e 's/@''GNULIB_OVERRIDES_WINT_T''@/$(GNULIB_OVERRIDES_WINT_T)/g' \\\n\t      < $(srcdir)/stdint.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nelse\nstdint.h: $(top_builddir)/config.status\n\trm -f $@\nendif\nMOSTLYCLEANFILES += stdint.h stdint.h-t\n\nEXTRA_DIST += stdint.in.h\n\n## end   gnulib module stdint\n\n## begin gnulib module stdio\n\nBUILT_SOURCES += stdio.h\n\n# We need the following in order to create <stdio.h> when the system\n# doesn't have one that works with the given compiler.\nstdio.h: stdio.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_STDIO_H''@|$(NEXT_STDIO_H)|g' \\\n\t      -e 's/@''GNULIB_DPRINTF''@/$(GNULIB_DPRINTF)/g' \\\n\t      -e 's/@''GNULIB_FCLOSE''@/$(GNULIB_FCLOSE)/g' \\\n\t      -e 's/@''GNULIB_FDOPEN''@/$(GNULIB_FDOPEN)/g' \\\n\t      -e 's/@''GNULIB_FFLUSH''@/$(GNULIB_FFLUSH)/g' \\\n\t      -e 's/@''GNULIB_FGETC''@/$(GNULIB_FGETC)/g' \\\n\t      -e 's/@''GNULIB_FGETS''@/$(GNULIB_FGETS)/g' \\\n\t      -e 's/@''GNULIB_FOPEN''@/$(GNULIB_FOPEN)/g' \\\n\t      -e 's/@''GNULIB_FPRINTF''@/$(GNULIB_FPRINTF)/g' \\\n\t      -e 's/@''GNULIB_FPRINTF_POSIX''@/$(GNULIB_FPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_FPURGE''@/$(GNULIB_FPURGE)/g' \\\n\t      -e 's/@''GNULIB_FPUTC''@/$(GNULIB_FPUTC)/g' \\\n\t      -e 's/@''GNULIB_FPUTS''@/$(GNULIB_FPUTS)/g' \\\n\t      -e 's/@''GNULIB_FREAD''@/$(GNULIB_FREAD)/g' \\\n\t      -e 's/@''GNULIB_FREOPEN''@/$(GNULIB_FREOPEN)/g' \\\n\t      -e 's/@''GNULIB_FSCANF''@/$(GNULIB_FSCANF)/g' \\\n\t      -e 's/@''GNULIB_FSEEK''@/$(GNULIB_FSEEK)/g' \\\n\t      -e 's/@''GNULIB_FSEEKO''@/$(GNULIB_FSEEKO)/g' \\\n\t      -e 's/@''GNULIB_FTELL''@/$(GNULIB_FTELL)/g' \\\n\t      -e 's/@''GNULIB_FTELLO''@/$(GNULIB_FTELLO)/g' \\\n\t      -e 's/@''GNULIB_FWRITE''@/$(GNULIB_FWRITE)/g' \\\n\t      -e 's/@''GNULIB_GETC''@/$(GNULIB_GETC)/g' \\\n\t      -e 's/@''GNULIB_GETCHAR''@/$(GNULIB_GETCHAR)/g' \\\n\t      -e 's/@''GNULIB_GETDELIM''@/$(GNULIB_GETDELIM)/g' \\\n\t      -e 's/@''GNULIB_GETLINE''@/$(GNULIB_GETLINE)/g' \\\n\t      -e 's/@''GNULIB_OBSTACK_PRINTF''@/$(GNULIB_OBSTACK_PRINTF)/g' \\\n\t      -e 's/@''GNULIB_OBSTACK_PRINTF_POSIX''@/$(GNULIB_OBSTACK_PRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_PCLOSE''@/$(GNULIB_PCLOSE)/g' \\\n\t      -e 's/@''GNULIB_PERROR''@/$(GNULIB_PERROR)/g' \\\n\t      -e 's/@''GNULIB_POPEN''@/$(GNULIB_POPEN)/g' \\\n\t      -e 's/@''GNULIB_PRINTF''@/$(GNULIB_PRINTF)/g' \\\n\t      -e 's/@''GNULIB_PRINTF_POSIX''@/$(GNULIB_PRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_PUTC''@/$(GNULIB_PUTC)/g' \\\n\t      -e 's/@''GNULIB_PUTCHAR''@/$(GNULIB_PUTCHAR)/g' \\\n\t      -e 's/@''GNULIB_PUTS''@/$(GNULIB_PUTS)/g' \\\n\t      -e 's/@''GNULIB_REMOVE''@/$(GNULIB_REMOVE)/g' \\\n\t      -e 's/@''GNULIB_RENAME''@/$(GNULIB_RENAME)/g' \\\n\t      -e 's/@''GNULIB_RENAMEAT''@/$(GNULIB_RENAMEAT)/g' \\\n\t      -e 's/@''GNULIB_SCANF''@/$(GNULIB_SCANF)/g' \\\n\t      -e 's/@''GNULIB_SNPRINTF''@/$(GNULIB_SNPRINTF)/g' \\\n\t      -e 's/@''GNULIB_SPRINTF_POSIX''@/$(GNULIB_SPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_STDIO_H_NONBLOCKING''@/$(GNULIB_STDIO_H_NONBLOCKING)/g' \\\n\t      -e 's/@''GNULIB_STDIO_H_SIGPIPE''@/$(GNULIB_STDIO_H_SIGPIPE)/g' \\\n\t      -e 's/@''GNULIB_TMPFILE''@/$(GNULIB_TMPFILE)/g' \\\n\t      -e 's/@''GNULIB_VASPRINTF''@/$(GNULIB_VASPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VDPRINTF''@/$(GNULIB_VDPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VFPRINTF''@/$(GNULIB_VFPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VFPRINTF_POSIX''@/$(GNULIB_VFPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_VFSCANF''@/$(GNULIB_VFSCANF)/g' \\\n\t      -e 's/@''GNULIB_VSCANF''@/$(GNULIB_VSCANF)/g' \\\n\t      -e 's/@''GNULIB_VPRINTF''@/$(GNULIB_VPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VPRINTF_POSIX''@/$(GNULIB_VPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_VSNPRINTF''@/$(GNULIB_VSNPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VSPRINTF_POSIX''@/$(GNULIB_VSPRINTF_POSIX)/g' \\\n\t      < $(srcdir)/stdio.in.h | \\\n\t  sed -e 's|@''HAVE_DECL_FPURGE''@|$(HAVE_DECL_FPURGE)|g' \\\n\t      -e 's|@''HAVE_DECL_FSEEKO''@|$(HAVE_DECL_FSEEKO)|g' \\\n\t      -e 's|@''HAVE_DECL_FTELLO''@|$(HAVE_DECL_FTELLO)|g' \\\n\t      -e 's|@''HAVE_DECL_GETDELIM''@|$(HAVE_DECL_GETDELIM)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLINE''@|$(HAVE_DECL_GETLINE)|g' \\\n\t      -e 's|@''HAVE_DECL_OBSTACK_PRINTF''@|$(HAVE_DECL_OBSTACK_PRINTF)|g' \\\n\t      -e 's|@''HAVE_DECL_SNPRINTF''@|$(HAVE_DECL_SNPRINTF)|g' \\\n\t      -e 's|@''HAVE_DECL_VSNPRINTF''@|$(HAVE_DECL_VSNPRINTF)|g' \\\n\t      -e 's|@''HAVE_DPRINTF''@|$(HAVE_DPRINTF)|g' \\\n\t      -e 's|@''HAVE_FSEEKO''@|$(HAVE_FSEEKO)|g' \\\n\t      -e 's|@''HAVE_FTELLO''@|$(HAVE_FTELLO)|g' \\\n\t      -e 's|@''HAVE_PCLOSE''@|$(HAVE_PCLOSE)|g' \\\n\t      -e 's|@''HAVE_POPEN''@|$(HAVE_POPEN)|g' \\\n\t      -e 's|@''HAVE_RENAMEAT''@|$(HAVE_RENAMEAT)|g' \\\n\t      -e 's|@''HAVE_VASPRINTF''@|$(HAVE_VASPRINTF)|g' \\\n\t      -e 's|@''HAVE_VDPRINTF''@|$(HAVE_VDPRINTF)|g' \\\n\t      -e 's|@''REPLACE_DPRINTF''@|$(REPLACE_DPRINTF)|g' \\\n\t      -e 's|@''REPLACE_FCLOSE''@|$(REPLACE_FCLOSE)|g' \\\n\t      -e 's|@''REPLACE_FDOPEN''@|$(REPLACE_FDOPEN)|g' \\\n\t      -e 's|@''REPLACE_FFLUSH''@|$(REPLACE_FFLUSH)|g' \\\n\t      -e 's|@''REPLACE_FOPEN''@|$(REPLACE_FOPEN)|g' \\\n\t      -e 's|@''REPLACE_FPRINTF''@|$(REPLACE_FPRINTF)|g' \\\n\t      -e 's|@''REPLACE_FPURGE''@|$(REPLACE_FPURGE)|g' \\\n\t      -e 's|@''REPLACE_FREOPEN''@|$(REPLACE_FREOPEN)|g' \\\n\t      -e 's|@''REPLACE_FSEEK''@|$(REPLACE_FSEEK)|g' \\\n\t      -e 's|@''REPLACE_FSEEKO''@|$(REPLACE_FSEEKO)|g' \\\n\t      -e 's|@''REPLACE_FTELL''@|$(REPLACE_FTELL)|g' \\\n\t      -e 's|@''REPLACE_FTELLO''@|$(REPLACE_FTELLO)|g' \\\n\t      -e 's|@''REPLACE_GETDELIM''@|$(REPLACE_GETDELIM)|g' \\\n\t      -e 's|@''REPLACE_GETLINE''@|$(REPLACE_GETLINE)|g' \\\n\t      -e 's|@''REPLACE_OBSTACK_PRINTF''@|$(REPLACE_OBSTACK_PRINTF)|g' \\\n\t      -e 's|@''REPLACE_PERROR''@|$(REPLACE_PERROR)|g' \\\n\t      -e 's|@''REPLACE_POPEN''@|$(REPLACE_POPEN)|g' \\\n\t      -e 's|@''REPLACE_PRINTF''@|$(REPLACE_PRINTF)|g' \\\n\t      -e 's|@''REPLACE_REMOVE''@|$(REPLACE_REMOVE)|g' \\\n\t      -e 's|@''REPLACE_RENAME''@|$(REPLACE_RENAME)|g' \\\n\t      -e 's|@''REPLACE_RENAMEAT''@|$(REPLACE_RENAMEAT)|g' \\\n\t      -e 's|@''REPLACE_SNPRINTF''@|$(REPLACE_SNPRINTF)|g' \\\n\t      -e 's|@''REPLACE_SPRINTF''@|$(REPLACE_SPRINTF)|g' \\\n\t      -e 's|@''REPLACE_STDIO_READ_FUNCS''@|$(REPLACE_STDIO_READ_FUNCS)|g' \\\n\t      -e 's|@''REPLACE_STDIO_WRITE_FUNCS''@|$(REPLACE_STDIO_WRITE_FUNCS)|g' \\\n\t      -e 's|@''REPLACE_TMPFILE''@|$(REPLACE_TMPFILE)|g' \\\n\t      -e 's|@''REPLACE_VASPRINTF''@|$(REPLACE_VASPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VDPRINTF''@|$(REPLACE_VDPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VFPRINTF''@|$(REPLACE_VFPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VPRINTF''@|$(REPLACE_VPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VSNPRINTF''@|$(REPLACE_VSNPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VSPRINTF''@|$(REPLACE_VSPRINTF)|g' \\\n\t      -e 's|@''ASM_SYMBOL_PREFIX''@|$(ASM_SYMBOL_PREFIX)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += stdio.h stdio.h-t\n\nEXTRA_DIST += stdio.in.h\n\n## end   gnulib module stdio\n\n## begin gnulib module stdlib\n\nBUILT_SOURCES += stdlib.h\n\n# We need the following in order to create <stdlib.h> when the system\n# doesn't have one that works with the given compiler.\nstdlib.h: stdlib.in.h $(top_builddir)/config.status $(CXXDEFS_H) \\\n  $(_NORETURN_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_STDLIB_H''@|$(NEXT_STDLIB_H)|g' \\\n\t      -e 's/@''GNULIB__EXIT''@/$(GNULIB__EXIT)/g' \\\n\t      -e 's/@''GNULIB_ATOLL''@/$(GNULIB_ATOLL)/g' \\\n\t      -e 's/@''GNULIB_CALLOC_POSIX''@/$(GNULIB_CALLOC_POSIX)/g' \\\n\t      -e 's/@''GNULIB_CANONICALIZE_FILE_NAME''@/$(GNULIB_CANONICALIZE_FILE_NAME)/g' \\\n\t      -e 's/@''GNULIB_GETLOADAVG''@/$(GNULIB_GETLOADAVG)/g' \\\n\t      -e 's/@''GNULIB_GETSUBOPT''@/$(GNULIB_GETSUBOPT)/g' \\\n\t      -e 's/@''GNULIB_GRANTPT''@/$(GNULIB_GRANTPT)/g' \\\n\t      -e 's/@''GNULIB_MALLOC_POSIX''@/$(GNULIB_MALLOC_POSIX)/g' \\\n\t      -e 's/@''GNULIB_MBTOWC''@/$(GNULIB_MBTOWC)/g' \\\n\t      -e 's/@''GNULIB_MKDTEMP''@/$(GNULIB_MKDTEMP)/g' \\\n\t      -e 's/@''GNULIB_MKOSTEMP''@/$(GNULIB_MKOSTEMP)/g' \\\n\t      -e 's/@''GNULIB_MKOSTEMPS''@/$(GNULIB_MKOSTEMPS)/g' \\\n\t      -e 's/@''GNULIB_MKSTEMP''@/$(GNULIB_MKSTEMP)/g' \\\n\t      -e 's/@''GNULIB_MKSTEMPS''@/$(GNULIB_MKSTEMPS)/g' \\\n\t      -e 's/@''GNULIB_POSIX_OPENPT''@/$(GNULIB_POSIX_OPENPT)/g' \\\n\t      -e 's/@''GNULIB_PTSNAME''@/$(GNULIB_PTSNAME)/g' \\\n\t      -e 's/@''GNULIB_PTSNAME_R''@/$(GNULIB_PTSNAME_R)/g' \\\n\t      -e 's/@''GNULIB_PUTENV''@/$(GNULIB_PUTENV)/g' \\\n\t      -e 's/@''GNULIB_QSORT_R''@/$(GNULIB_QSORT_R)/g' \\\n\t      -e 's/@''GNULIB_RANDOM''@/$(GNULIB_RANDOM)/g' \\\n\t      -e 's/@''GNULIB_RANDOM_R''@/$(GNULIB_RANDOM_R)/g' \\\n\t      -e 's/@''GNULIB_REALLOC_POSIX''@/$(GNULIB_REALLOC_POSIX)/g' \\\n\t      -e 's/@''GNULIB_REALPATH''@/$(GNULIB_REALPATH)/g' \\\n\t      -e 's/@''GNULIB_RPMATCH''@/$(GNULIB_RPMATCH)/g' \\\n\t      -e 's/@''GNULIB_SECURE_GETENV''@/$(GNULIB_SECURE_GETENV)/g' \\\n\t      -e 's/@''GNULIB_SETENV''@/$(GNULIB_SETENV)/g' \\\n\t      -e 's/@''GNULIB_STRTOD''@/$(GNULIB_STRTOD)/g' \\\n\t      -e 's/@''GNULIB_STRTOLL''@/$(GNULIB_STRTOLL)/g' \\\n\t      -e 's/@''GNULIB_STRTOULL''@/$(GNULIB_STRTOULL)/g' \\\n\t      -e 's/@''GNULIB_SYSTEM_POSIX''@/$(GNULIB_SYSTEM_POSIX)/g' \\\n\t      -e 's/@''GNULIB_UNLOCKPT''@/$(GNULIB_UNLOCKPT)/g' \\\n\t      -e 's/@''GNULIB_UNSETENV''@/$(GNULIB_UNSETENV)/g' \\\n\t      -e 's/@''GNULIB_WCTOMB''@/$(GNULIB_WCTOMB)/g' \\\n\t      < $(srcdir)/stdlib.in.h | \\\n\t  sed -e 's|@''HAVE__EXIT''@|$(HAVE__EXIT)|g' \\\n\t      -e 's|@''HAVE_ATOLL''@|$(HAVE_ATOLL)|g' \\\n\t      -e 's|@''HAVE_CANONICALIZE_FILE_NAME''@|$(HAVE_CANONICALIZE_FILE_NAME)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLOADAVG''@|$(HAVE_DECL_GETLOADAVG)|g' \\\n\t      -e 's|@''HAVE_GETSUBOPT''@|$(HAVE_GETSUBOPT)|g' \\\n\t      -e 's|@''HAVE_GRANTPT''@|$(HAVE_GRANTPT)|g' \\\n\t      -e 's|@''HAVE_MKDTEMP''@|$(HAVE_MKDTEMP)|g' \\\n\t      -e 's|@''HAVE_MKOSTEMP''@|$(HAVE_MKOSTEMP)|g' \\\n\t      -e 's|@''HAVE_MKOSTEMPS''@|$(HAVE_MKOSTEMPS)|g' \\\n\t      -e 's|@''HAVE_MKSTEMP''@|$(HAVE_MKSTEMP)|g' \\\n\t      -e 's|@''HAVE_MKSTEMPS''@|$(HAVE_MKSTEMPS)|g' \\\n\t      -e 's|@''HAVE_POSIX_OPENPT''@|$(HAVE_POSIX_OPENPT)|g' \\\n\t      -e 's|@''HAVE_PTSNAME''@|$(HAVE_PTSNAME)|g' \\\n\t      -e 's|@''HAVE_PTSNAME_R''@|$(HAVE_PTSNAME_R)|g' \\\n\t      -e 's|@''HAVE_QSORT_R''@|$(HAVE_QSORT_R)|g' \\\n\t      -e 's|@''HAVE_RANDOM''@|$(HAVE_RANDOM)|g' \\\n\t      -e 's|@''HAVE_RANDOM_H''@|$(HAVE_RANDOM_H)|g' \\\n\t      -e 's|@''HAVE_RANDOM_R''@|$(HAVE_RANDOM_R)|g' \\\n\t      -e 's|@''HAVE_REALPATH''@|$(HAVE_REALPATH)|g' \\\n\t      -e 's|@''HAVE_RPMATCH''@|$(HAVE_RPMATCH)|g' \\\n\t      -e 's|@''HAVE_SECURE_GETENV''@|$(HAVE_SECURE_GETENV)|g' \\\n\t      -e 's|@''HAVE_DECL_SETENV''@|$(HAVE_DECL_SETENV)|g' \\\n\t      -e 's|@''HAVE_STRTOD''@|$(HAVE_STRTOD)|g' \\\n\t      -e 's|@''HAVE_STRTOLL''@|$(HAVE_STRTOLL)|g' \\\n\t      -e 's|@''HAVE_STRTOULL''@|$(HAVE_STRTOULL)|g' \\\n\t      -e 's|@''HAVE_STRUCT_RANDOM_DATA''@|$(HAVE_STRUCT_RANDOM_DATA)|g' \\\n\t      -e 's|@''HAVE_SYS_LOADAVG_H''@|$(HAVE_SYS_LOADAVG_H)|g' \\\n\t      -e 's|@''HAVE_UNLOCKPT''@|$(HAVE_UNLOCKPT)|g' \\\n\t      -e 's|@''HAVE_DECL_UNSETENV''@|$(HAVE_DECL_UNSETENV)|g' \\\n\t      -e 's|@''REPLACE_CALLOC''@|$(REPLACE_CALLOC)|g' \\\n\t      -e 's|@''REPLACE_CANONICALIZE_FILE_NAME''@|$(REPLACE_CANONICALIZE_FILE_NAME)|g' \\\n\t      -e 's|@''REPLACE_MALLOC''@|$(REPLACE_MALLOC)|g' \\\n\t      -e 's|@''REPLACE_MBTOWC''@|$(REPLACE_MBTOWC)|g' \\\n\t      -e 's|@''REPLACE_MKSTEMP''@|$(REPLACE_MKSTEMP)|g' \\\n\t      -e 's|@''REPLACE_PTSNAME''@|$(REPLACE_PTSNAME)|g' \\\n\t      -e 's|@''REPLACE_PTSNAME_R''@|$(REPLACE_PTSNAME_R)|g' \\\n\t      -e 's|@''REPLACE_PUTENV''@|$(REPLACE_PUTENV)|g' \\\n\t      -e 's|@''REPLACE_QSORT_R''@|$(REPLACE_QSORT_R)|g' \\\n\t      -e 's|@''REPLACE_RANDOM_R''@|$(REPLACE_RANDOM_R)|g' \\\n\t      -e 's|@''REPLACE_REALLOC''@|$(REPLACE_REALLOC)|g' \\\n\t      -e 's|@''REPLACE_REALPATH''@|$(REPLACE_REALPATH)|g' \\\n\t      -e 's|@''REPLACE_SETENV''@|$(REPLACE_SETENV)|g' \\\n\t      -e 's|@''REPLACE_STRTOD''@|$(REPLACE_STRTOD)|g' \\\n\t      -e 's|@''REPLACE_UNSETENV''@|$(REPLACE_UNSETENV)|g' \\\n\t      -e 's|@''REPLACE_WCTOMB''@|$(REPLACE_WCTOMB)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _Noreturn/r $(_NORETURN_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += stdlib.h stdlib.h-t\n\nEXTRA_DIST += stdlib.in.h\n\n## end   gnulib module stdlib\n\n## begin gnulib module streq\n\n\nEXTRA_DIST += streq.h\n\n## end   gnulib module streq\n\n## begin gnulib module strerror\n\n\nEXTRA_DIST += strerror.c\n\nEXTRA_libicrt_a_SOURCES += strerror.c\n\n## end   gnulib module strerror\n\n## begin gnulib module strerror-override\n\n\nEXTRA_DIST += strerror-override.c strerror-override.h\n\nEXTRA_libicrt_a_SOURCES += strerror-override.c\n\n## end   gnulib module strerror-override\n\n## begin gnulib module string\n\nBUILT_SOURCES += string.h\n\n# We need the following in order to create <string.h> when the system\n# doesn't have one that works with the given compiler.\nstring.h: string.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_STRING_H''@|$(NEXT_STRING_H)|g' \\\n\t      -e 's/@''GNULIB_FFSL''@/$(GNULIB_FFSL)/g' \\\n\t      -e 's/@''GNULIB_FFSLL''@/$(GNULIB_FFSLL)/g' \\\n\t      -e 's/@''GNULIB_MBSLEN''@/$(GNULIB_MBSLEN)/g' \\\n\t      -e 's/@''GNULIB_MBSNLEN''@/$(GNULIB_MBSNLEN)/g' \\\n\t      -e 's/@''GNULIB_MBSCHR''@/$(GNULIB_MBSCHR)/g' \\\n\t      -e 's/@''GNULIB_MBSRCHR''@/$(GNULIB_MBSRCHR)/g' \\\n\t      -e 's/@''GNULIB_MBSSTR''@/$(GNULIB_MBSSTR)/g' \\\n\t      -e 's/@''GNULIB_MBSCASECMP''@/$(GNULIB_MBSCASECMP)/g' \\\n\t      -e 's/@''GNULIB_MBSNCASECMP''@/$(GNULIB_MBSNCASECMP)/g' \\\n\t      -e 's/@''GNULIB_MBSPCASECMP''@/$(GNULIB_MBSPCASECMP)/g' \\\n\t      -e 's/@''GNULIB_MBSCASESTR''@/$(GNULIB_MBSCASESTR)/g' \\\n\t      -e 's/@''GNULIB_MBSCSPN''@/$(GNULIB_MBSCSPN)/g' \\\n\t      -e 's/@''GNULIB_MBSPBRK''@/$(GNULIB_MBSPBRK)/g' \\\n\t      -e 's/@''GNULIB_MBSSPN''@/$(GNULIB_MBSSPN)/g' \\\n\t      -e 's/@''GNULIB_MBSSEP''@/$(GNULIB_MBSSEP)/g' \\\n\t      -e 's/@''GNULIB_MBSTOK_R''@/$(GNULIB_MBSTOK_R)/g' \\\n\t      -e 's/@''GNULIB_MEMCHR''@/$(GNULIB_MEMCHR)/g' \\\n\t      -e 's/@''GNULIB_MEMMEM''@/$(GNULIB_MEMMEM)/g' \\\n\t      -e 's/@''GNULIB_MEMPCPY''@/$(GNULIB_MEMPCPY)/g' \\\n\t      -e 's/@''GNULIB_MEMRCHR''@/$(GNULIB_MEMRCHR)/g' \\\n\t      -e 's/@''GNULIB_RAWMEMCHR''@/$(GNULIB_RAWMEMCHR)/g' \\\n\t      -e 's/@''GNULIB_STPCPY''@/$(GNULIB_STPCPY)/g' \\\n\t      -e 's/@''GNULIB_STPNCPY''@/$(GNULIB_STPNCPY)/g' \\\n\t      -e 's/@''GNULIB_STRCHRNUL''@/$(GNULIB_STRCHRNUL)/g' \\\n\t      -e 's/@''GNULIB_STRDUP''@/$(GNULIB_STRDUP)/g' \\\n\t      -e 's/@''GNULIB_STRNCAT''@/$(GNULIB_STRNCAT)/g' \\\n\t      -e 's/@''GNULIB_STRNDUP''@/$(GNULIB_STRNDUP)/g' \\\n\t      -e 's/@''GNULIB_STRNLEN''@/$(GNULIB_STRNLEN)/g' \\\n\t      -e 's/@''GNULIB_STRPBRK''@/$(GNULIB_STRPBRK)/g' \\\n\t      -e 's/@''GNULIB_STRSEP''@/$(GNULIB_STRSEP)/g' \\\n\t      -e 's/@''GNULIB_STRSTR''@/$(GNULIB_STRSTR)/g' \\\n\t      -e 's/@''GNULIB_STRCASESTR''@/$(GNULIB_STRCASESTR)/g' \\\n\t      -e 's/@''GNULIB_STRTOK_R''@/$(GNULIB_STRTOK_R)/g' \\\n\t      -e 's/@''GNULIB_STRERROR''@/$(GNULIB_STRERROR)/g' \\\n\t      -e 's/@''GNULIB_STRERROR_R''@/$(GNULIB_STRERROR_R)/g' \\\n\t      -e 's/@''GNULIB_STRSIGNAL''@/$(GNULIB_STRSIGNAL)/g' \\\n\t      -e 's/@''GNULIB_STRVERSCMP''@/$(GNULIB_STRVERSCMP)/g' \\\n\t      < $(srcdir)/string.in.h | \\\n\t  sed -e 's|@''HAVE_FFSL''@|$(HAVE_FFSL)|g' \\\n\t      -e 's|@''HAVE_FFSLL''@|$(HAVE_FFSLL)|g' \\\n\t      -e 's|@''HAVE_MBSLEN''@|$(HAVE_MBSLEN)|g' \\\n\t      -e 's|@''HAVE_MEMCHR''@|$(HAVE_MEMCHR)|g' \\\n\t      -e 's|@''HAVE_DECL_MEMMEM''@|$(HAVE_DECL_MEMMEM)|g' \\\n\t      -e 's|@''HAVE_MEMPCPY''@|$(HAVE_MEMPCPY)|g' \\\n\t      -e 's|@''HAVE_DECL_MEMRCHR''@|$(HAVE_DECL_MEMRCHR)|g' \\\n\t      -e 's|@''HAVE_RAWMEMCHR''@|$(HAVE_RAWMEMCHR)|g' \\\n\t      -e 's|@''HAVE_STPCPY''@|$(HAVE_STPCPY)|g' \\\n\t      -e 's|@''HAVE_STPNCPY''@|$(HAVE_STPNCPY)|g' \\\n\t      -e 's|@''HAVE_STRCHRNUL''@|$(HAVE_STRCHRNUL)|g' \\\n\t      -e 's|@''HAVE_DECL_STRDUP''@|$(HAVE_DECL_STRDUP)|g' \\\n\t      -e 's|@''HAVE_DECL_STRNDUP''@|$(HAVE_DECL_STRNDUP)|g' \\\n\t      -e 's|@''HAVE_DECL_STRNLEN''@|$(HAVE_DECL_STRNLEN)|g' \\\n\t      -e 's|@''HAVE_STRPBRK''@|$(HAVE_STRPBRK)|g' \\\n\t      -e 's|@''HAVE_STRSEP''@|$(HAVE_STRSEP)|g' \\\n\t      -e 's|@''HAVE_STRCASESTR''@|$(HAVE_STRCASESTR)|g' \\\n\t      -e 's|@''HAVE_DECL_STRTOK_R''@|$(HAVE_DECL_STRTOK_R)|g' \\\n\t      -e 's|@''HAVE_DECL_STRERROR_R''@|$(HAVE_DECL_STRERROR_R)|g' \\\n\t      -e 's|@''HAVE_DECL_STRSIGNAL''@|$(HAVE_DECL_STRSIGNAL)|g' \\\n\t      -e 's|@''HAVE_STRVERSCMP''@|$(HAVE_STRVERSCMP)|g' \\\n\t      -e 's|@''REPLACE_STPNCPY''@|$(REPLACE_STPNCPY)|g' \\\n\t      -e 's|@''REPLACE_MEMCHR''@|$(REPLACE_MEMCHR)|g' \\\n\t      -e 's|@''REPLACE_MEMMEM''@|$(REPLACE_MEMMEM)|g' \\\n\t      -e 's|@''REPLACE_STRCASESTR''@|$(REPLACE_STRCASESTR)|g' \\\n\t      -e 's|@''REPLACE_STRCHRNUL''@|$(REPLACE_STRCHRNUL)|g' \\\n\t      -e 's|@''REPLACE_STRDUP''@|$(REPLACE_STRDUP)|g' \\\n\t      -e 's|@''REPLACE_STRSTR''@|$(REPLACE_STRSTR)|g' \\\n\t      -e 's|@''REPLACE_STRERROR''@|$(REPLACE_STRERROR)|g' \\\n\t      -e 's|@''REPLACE_STRERROR_R''@|$(REPLACE_STRERROR_R)|g' \\\n\t      -e 's|@''REPLACE_STRNCAT''@|$(REPLACE_STRNCAT)|g' \\\n\t      -e 's|@''REPLACE_STRNDUP''@|$(REPLACE_STRNDUP)|g' \\\n\t      -e 's|@''REPLACE_STRNLEN''@|$(REPLACE_STRNLEN)|g' \\\n\t      -e 's|@''REPLACE_STRSIGNAL''@|$(REPLACE_STRSIGNAL)|g' \\\n\t      -e 's|@''REPLACE_STRTOK_R''@|$(REPLACE_STRTOK_R)|g' \\\n\t      -e 's|@''UNDEFINE_STRTOK_R''@|$(UNDEFINE_STRTOK_R)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t      < $(srcdir)/string.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += string.h string.h-t\n\nEXTRA_DIST += string.in.h\n\n## end   gnulib module string\n\n## begin gnulib module sys_stat\n\nBUILT_SOURCES += sys/stat.h\n\n# We need the following in order to create <sys/stat.h> when the system\n# has one that is incomplete.\nsys/stat.h: sys_stat.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_at)$(MKDIR_P) sys\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_SYS_STAT_H''@|$(NEXT_SYS_STAT_H)|g' \\\n\t      -e 's|@''WINDOWS_64_BIT_ST_SIZE''@|$(WINDOWS_64_BIT_ST_SIZE)|g' \\\n\t      -e 's/@''GNULIB_FCHMODAT''@/$(GNULIB_FCHMODAT)/g' \\\n\t      -e 's/@''GNULIB_FSTAT''@/$(GNULIB_FSTAT)/g' \\\n\t      -e 's/@''GNULIB_FSTATAT''@/$(GNULIB_FSTATAT)/g' \\\n\t      -e 's/@''GNULIB_FUTIMENS''@/$(GNULIB_FUTIMENS)/g' \\\n\t      -e 's/@''GNULIB_LCHMOD''@/$(GNULIB_LCHMOD)/g' \\\n\t      -e 's/@''GNULIB_LSTAT''@/$(GNULIB_LSTAT)/g' \\\n\t      -e 's/@''GNULIB_MKDIRAT''@/$(GNULIB_MKDIRAT)/g' \\\n\t      -e 's/@''GNULIB_MKFIFO''@/$(GNULIB_MKFIFO)/g' \\\n\t      -e 's/@''GNULIB_MKFIFOAT''@/$(GNULIB_MKFIFOAT)/g' \\\n\t      -e 's/@''GNULIB_MKNOD''@/$(GNULIB_MKNOD)/g' \\\n\t      -e 's/@''GNULIB_MKNODAT''@/$(GNULIB_MKNODAT)/g' \\\n\t      -e 's/@''GNULIB_STAT''@/$(GNULIB_STAT)/g' \\\n\t      -e 's/@''GNULIB_UTIMENSAT''@/$(GNULIB_UTIMENSAT)/g' \\\n\t      -e 's|@''HAVE_FCHMODAT''@|$(HAVE_FCHMODAT)|g' \\\n\t      -e 's|@''HAVE_FSTATAT''@|$(HAVE_FSTATAT)|g' \\\n\t      -e 's|@''HAVE_FUTIMENS''@|$(HAVE_FUTIMENS)|g' \\\n\t      -e 's|@''HAVE_LCHMOD''@|$(HAVE_LCHMOD)|g' \\\n\t      -e 's|@''HAVE_LSTAT''@|$(HAVE_LSTAT)|g' \\\n\t      -e 's|@''HAVE_MKDIRAT''@|$(HAVE_MKDIRAT)|g' \\\n\t      -e 's|@''HAVE_MKFIFO''@|$(HAVE_MKFIFO)|g' \\\n\t      -e 's|@''HAVE_MKFIFOAT''@|$(HAVE_MKFIFOAT)|g' \\\n\t      -e 's|@''HAVE_MKNOD''@|$(HAVE_MKNOD)|g' \\\n\t      -e 's|@''HAVE_MKNODAT''@|$(HAVE_MKNODAT)|g' \\\n\t      -e 's|@''HAVE_UTIMENSAT''@|$(HAVE_UTIMENSAT)|g' \\\n\t      -e 's|@''REPLACE_FSTAT''@|$(REPLACE_FSTAT)|g' \\\n\t      -e 's|@''REPLACE_FSTATAT''@|$(REPLACE_FSTATAT)|g' \\\n\t      -e 's|@''REPLACE_FUTIMENS''@|$(REPLACE_FUTIMENS)|g' \\\n\t      -e 's|@''REPLACE_LSTAT''@|$(REPLACE_LSTAT)|g' \\\n\t      -e 's|@''REPLACE_MKDIR''@|$(REPLACE_MKDIR)|g' \\\n\t      -e 's|@''REPLACE_MKFIFO''@|$(REPLACE_MKFIFO)|g' \\\n\t      -e 's|@''REPLACE_MKNOD''@|$(REPLACE_MKNOD)|g' \\\n\t      -e 's|@''REPLACE_STAT''@|$(REPLACE_STAT)|g' \\\n\t      -e 's|@''REPLACE_UTIMENSAT''@|$(REPLACE_UTIMENSAT)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/sys_stat.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += sys/stat.h sys/stat.h-t\nMOSTLYCLEANDIRS += sys\n\nEXTRA_DIST += sys_stat.in.h\n\n## end   gnulib module sys_stat\n\n## begin gnulib module sys_time\n\nBUILT_SOURCES += sys/time.h\n\n# We need the following in order to create <sys/time.h> when the system\n# doesn't have one that works with the given compiler.\nsys/time.h: sys_time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_at)$(MKDIR_P) sys\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's/@''HAVE_SYS_TIME_H''@/$(HAVE_SYS_TIME_H)/g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_SYS_TIME_H''@|$(NEXT_SYS_TIME_H)|g' \\\n\t      -e 's/@''GNULIB_GETTIMEOFDAY''@/$(GNULIB_GETTIMEOFDAY)/g' \\\n\t      -e 's|@''HAVE_WINSOCK2_H''@|$(HAVE_WINSOCK2_H)|g' \\\n\t      -e 's/@''HAVE_GETTIMEOFDAY''@/$(HAVE_GETTIMEOFDAY)/g' \\\n\t      -e 's/@''HAVE_STRUCT_TIMEVAL''@/$(HAVE_STRUCT_TIMEVAL)/g' \\\n\t      -e 's/@''REPLACE_GETTIMEOFDAY''@/$(REPLACE_GETTIMEOFDAY)/g' \\\n\t      -e 's/@''REPLACE_STRUCT_TIMEVAL''@/$(REPLACE_STRUCT_TIMEVAL)/g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/sys_time.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += sys/time.h sys/time.h-t\n\nEXTRA_DIST += sys_time.in.h\n\n## end   gnulib module sys_time\n\n## begin gnulib module sys_types\n\nBUILT_SOURCES += sys/types.h\n\n# We need the following in order to create <sys/types.h> when the system\n# doesn't have one that works with the given compiler.\nsys/types.h: sys_types.in.h $(top_builddir)/config.status\n\t$(AM_V_at)$(MKDIR_P) sys\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \\\n\t      -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \\\n\t      < $(srcdir)/sys_types.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += sys/types.h sys/types.h-t\n\nEXTRA_DIST += sys_types.in.h\n\n## end   gnulib module sys_types\n\n## begin gnulib module time\n\nBUILT_SOURCES += time.h\n\n# We need the following in order to create <time.h> when the system\n# doesn't have one that works with the given compiler.\ntime.h: time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_TIME_H''@|$(NEXT_TIME_H)|g' \\\n\t      -e 's/@''GNULIB_GETTIMEOFDAY''@/$(GNULIB_GETTIMEOFDAY)/g' \\\n\t      -e 's/@''GNULIB_MKTIME''@/$(GNULIB_MKTIME)/g' \\\n\t      -e 's/@''GNULIB_NANOSLEEP''@/$(GNULIB_NANOSLEEP)/g' \\\n\t      -e 's/@''GNULIB_STRPTIME''@/$(GNULIB_STRPTIME)/g' \\\n\t      -e 's/@''GNULIB_TIMEGM''@/$(GNULIB_TIMEGM)/g' \\\n\t      -e 's/@''GNULIB_TIME_R''@/$(GNULIB_TIME_R)/g' \\\n\t      -e 's/@''GNULIB_TIME_RZ''@/$(GNULIB_TIME_RZ)/g' \\\n\t      -e 's|@''HAVE_DECL_LOCALTIME_R''@|$(HAVE_DECL_LOCALTIME_R)|g' \\\n\t      -e 's|@''HAVE_NANOSLEEP''@|$(HAVE_NANOSLEEP)|g' \\\n\t      -e 's|@''HAVE_STRPTIME''@|$(HAVE_STRPTIME)|g' \\\n\t      -e 's|@''HAVE_TIMEGM''@|$(HAVE_TIMEGM)|g' \\\n\t      -e 's|@''HAVE_TIMEZONE_T''@|$(HAVE_TIMEZONE_T)|g' \\\n\t      -e 's|@''REPLACE_GMTIME''@|$(REPLACE_GMTIME)|g' \\\n\t      -e 's|@''REPLACE_LOCALTIME''@|$(REPLACE_LOCALTIME)|g' \\\n\t      -e 's|@''REPLACE_LOCALTIME_R''@|$(REPLACE_LOCALTIME_R)|g' \\\n\t      -e 's|@''REPLACE_MKTIME''@|$(REPLACE_MKTIME)|g' \\\n\t      -e 's|@''REPLACE_NANOSLEEP''@|$(REPLACE_NANOSLEEP)|g' \\\n\t      -e 's|@''REPLACE_TIMEGM''@|$(REPLACE_TIMEGM)|g' \\\n\t      -e 's|@''PTHREAD_H_DEFINES_STRUCT_TIMESPEC''@|$(PTHREAD_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e 's|@''SYS_TIME_H_DEFINES_STRUCT_TIMESPEC''@|$(SYS_TIME_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e 's|@''TIME_H_DEFINES_STRUCT_TIMESPEC''@|$(TIME_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e 's|@''UNISTD_H_DEFINES_STRUCT_TIMESPEC''@|$(UNISTD_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/time.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += time.h time.h-t\n\nEXTRA_DIST += time.in.h\n\n## end   gnulib module time\n\n## begin gnulib module unistd\n\nBUILT_SOURCES += unistd.h\nlibicrt_a_SOURCES += unistd.c\n\n# We need the following in order to create an empty placeholder for\n# <unistd.h> when the system doesn't have one.\nunistd.h: unistd.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_UNISTD_H''@|$(NEXT_UNISTD_H)|g' \\\n\t      -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \\\n\t      -e 's/@''GNULIB_CHDIR''@/$(GNULIB_CHDIR)/g' \\\n\t      -e 's/@''GNULIB_CHOWN''@/$(GNULIB_CHOWN)/g' \\\n\t      -e 's/@''GNULIB_CLOSE''@/$(GNULIB_CLOSE)/g' \\\n\t      -e 's/@''GNULIB_DUP''@/$(GNULIB_DUP)/g' \\\n\t      -e 's/@''GNULIB_DUP2''@/$(GNULIB_DUP2)/g' \\\n\t      -e 's/@''GNULIB_DUP3''@/$(GNULIB_DUP3)/g' \\\n\t      -e 's/@''GNULIB_ENVIRON''@/$(GNULIB_ENVIRON)/g' \\\n\t      -e 's/@''GNULIB_EUIDACCESS''@/$(GNULIB_EUIDACCESS)/g' \\\n\t      -e 's/@''GNULIB_FACCESSAT''@/$(GNULIB_FACCESSAT)/g' \\\n\t      -e 's/@''GNULIB_FCHDIR''@/$(GNULIB_FCHDIR)/g' \\\n\t      -e 's/@''GNULIB_FCHOWNAT''@/$(GNULIB_FCHOWNAT)/g' \\\n\t      -e 's/@''GNULIB_FDATASYNC''@/$(GNULIB_FDATASYNC)/g' \\\n\t      -e 's/@''GNULIB_FSYNC''@/$(GNULIB_FSYNC)/g' \\\n\t      -e 's/@''GNULIB_FTRUNCATE''@/$(GNULIB_FTRUNCATE)/g' \\\n\t      -e 's/@''GNULIB_GETCWD''@/$(GNULIB_GETCWD)/g' \\\n\t      -e 's/@''GNULIB_GETDOMAINNAME''@/$(GNULIB_GETDOMAINNAME)/g' \\\n\t      -e 's/@''GNULIB_GETDTABLESIZE''@/$(GNULIB_GETDTABLESIZE)/g' \\\n\t      -e 's/@''GNULIB_GETGROUPS''@/$(GNULIB_GETGROUPS)/g' \\\n\t      -e 's/@''GNULIB_GETHOSTNAME''@/$(GNULIB_GETHOSTNAME)/g' \\\n\t      -e 's/@''GNULIB_GETLOGIN''@/$(GNULIB_GETLOGIN)/g' \\\n\t      -e 's/@''GNULIB_GETLOGIN_R''@/$(GNULIB_GETLOGIN_R)/g' \\\n\t      -e 's/@''GNULIB_GETPAGESIZE''@/$(GNULIB_GETPAGESIZE)/g' \\\n\t      -e 's/@''GNULIB_GETUSERSHELL''@/$(GNULIB_GETUSERSHELL)/g' \\\n\t      -e 's/@''GNULIB_GROUP_MEMBER''@/$(GNULIB_GROUP_MEMBER)/g' \\\n\t      -e 's/@''GNULIB_ISATTY''@/$(GNULIB_ISATTY)/g' \\\n\t      -e 's/@''GNULIB_LCHOWN''@/$(GNULIB_LCHOWN)/g' \\\n\t      -e 's/@''GNULIB_LINK''@/$(GNULIB_LINK)/g' \\\n\t      -e 's/@''GNULIB_LINKAT''@/$(GNULIB_LINKAT)/g' \\\n\t      -e 's/@''GNULIB_LSEEK''@/$(GNULIB_LSEEK)/g' \\\n\t      -e 's/@''GNULIB_PIPE''@/$(GNULIB_PIPE)/g' \\\n\t      -e 's/@''GNULIB_PIPE2''@/$(GNULIB_PIPE2)/g' \\\n\t      -e 's/@''GNULIB_PREAD''@/$(GNULIB_PREAD)/g' \\\n\t      -e 's/@''GNULIB_PWRITE''@/$(GNULIB_PWRITE)/g' \\\n\t      -e 's/@''GNULIB_READ''@/$(GNULIB_READ)/g' \\\n\t      -e 's/@''GNULIB_READLINK''@/$(GNULIB_READLINK)/g' \\\n\t      -e 's/@''GNULIB_READLINKAT''@/$(GNULIB_READLINKAT)/g' \\\n\t      -e 's/@''GNULIB_RMDIR''@/$(GNULIB_RMDIR)/g' \\\n\t      -e 's/@''GNULIB_SETHOSTNAME''@/$(GNULIB_SETHOSTNAME)/g' \\\n\t      -e 's/@''GNULIB_SLEEP''@/$(GNULIB_SLEEP)/g' \\\n\t      -e 's/@''GNULIB_SYMLINK''@/$(GNULIB_SYMLINK)/g' \\\n\t      -e 's/@''GNULIB_SYMLINKAT''@/$(GNULIB_SYMLINKAT)/g' \\\n\t      -e 's/@''GNULIB_TTYNAME_R''@/$(GNULIB_TTYNAME_R)/g' \\\n\t      -e 's/@''GNULIB_UNISTD_H_GETOPT''@/0$(GNULIB_GL_UNISTD_H_GETOPT)/g' \\\n\t      -e 's/@''GNULIB_UNISTD_H_NONBLOCKING''@/$(GNULIB_UNISTD_H_NONBLOCKING)/g' \\\n\t      -e 's/@''GNULIB_UNISTD_H_SIGPIPE''@/$(GNULIB_UNISTD_H_SIGPIPE)/g' \\\n\t      -e 's/@''GNULIB_UNLINK''@/$(GNULIB_UNLINK)/g' \\\n\t      -e 's/@''GNULIB_UNLINKAT''@/$(GNULIB_UNLINKAT)/g' \\\n\t      -e 's/@''GNULIB_USLEEP''@/$(GNULIB_USLEEP)/g' \\\n\t      -e 's/@''GNULIB_WRITE''@/$(GNULIB_WRITE)/g' \\\n\t      < $(srcdir)/unistd.in.h | \\\n\t  sed -e 's|@''HAVE_CHOWN''@|$(HAVE_CHOWN)|g' \\\n\t      -e 's|@''HAVE_DUP2''@|$(HAVE_DUP2)|g' \\\n\t      -e 's|@''HAVE_DUP3''@|$(HAVE_DUP3)|g' \\\n\t      -e 's|@''HAVE_EUIDACCESS''@|$(HAVE_EUIDACCESS)|g' \\\n\t      -e 's|@''HAVE_FACCESSAT''@|$(HAVE_FACCESSAT)|g' \\\n\t      -e 's|@''HAVE_FCHDIR''@|$(HAVE_FCHDIR)|g' \\\n\t      -e 's|@''HAVE_FCHOWNAT''@|$(HAVE_FCHOWNAT)|g' \\\n\t      -e 's|@''HAVE_FDATASYNC''@|$(HAVE_FDATASYNC)|g' \\\n\t      -e 's|@''HAVE_FSYNC''@|$(HAVE_FSYNC)|g' \\\n\t      -e 's|@''HAVE_FTRUNCATE''@|$(HAVE_FTRUNCATE)|g' \\\n\t      -e 's|@''HAVE_GETDTABLESIZE''@|$(HAVE_GETDTABLESIZE)|g' \\\n\t      -e 's|@''HAVE_GETGROUPS''@|$(HAVE_GETGROUPS)|g' \\\n\t      -e 's|@''HAVE_GETHOSTNAME''@|$(HAVE_GETHOSTNAME)|g' \\\n\t      -e 's|@''HAVE_GETPAGESIZE''@|$(HAVE_GETPAGESIZE)|g' \\\n\t      -e 's|@''HAVE_GROUP_MEMBER''@|$(HAVE_GROUP_MEMBER)|g' \\\n\t      -e 's|@''HAVE_LCHOWN''@|$(HAVE_LCHOWN)|g' \\\n\t      -e 's|@''HAVE_LINK''@|$(HAVE_LINK)|g' \\\n\t      -e 's|@''HAVE_LINKAT''@|$(HAVE_LINKAT)|g' \\\n\t      -e 's|@''HAVE_PIPE''@|$(HAVE_PIPE)|g' \\\n\t      -e 's|@''HAVE_PIPE2''@|$(HAVE_PIPE2)|g' \\\n\t      -e 's|@''HAVE_PREAD''@|$(HAVE_PREAD)|g' \\\n\t      -e 's|@''HAVE_PWRITE''@|$(HAVE_PWRITE)|g' \\\n\t      -e 's|@''HAVE_READLINK''@|$(HAVE_READLINK)|g' \\\n\t      -e 's|@''HAVE_READLINKAT''@|$(HAVE_READLINKAT)|g' \\\n\t      -e 's|@''HAVE_SETHOSTNAME''@|$(HAVE_SETHOSTNAME)|g' \\\n\t      -e 's|@''HAVE_SLEEP''@|$(HAVE_SLEEP)|g' \\\n\t      -e 's|@''HAVE_SYMLINK''@|$(HAVE_SYMLINK)|g' \\\n\t      -e 's|@''HAVE_SYMLINKAT''@|$(HAVE_SYMLINKAT)|g' \\\n\t      -e 's|@''HAVE_UNLINKAT''@|$(HAVE_UNLINKAT)|g' \\\n\t      -e 's|@''HAVE_USLEEP''@|$(HAVE_USLEEP)|g' \\\n\t      -e 's|@''HAVE_DECL_ENVIRON''@|$(HAVE_DECL_ENVIRON)|g' \\\n\t      -e 's|@''HAVE_DECL_FCHDIR''@|$(HAVE_DECL_FCHDIR)|g' \\\n\t      -e 's|@''HAVE_DECL_FDATASYNC''@|$(HAVE_DECL_FDATASYNC)|g' \\\n\t      -e 's|@''HAVE_DECL_GETDOMAINNAME''@|$(HAVE_DECL_GETDOMAINNAME)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLOGIN''@|$(HAVE_DECL_GETLOGIN)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLOGIN_R''@|$(HAVE_DECL_GETLOGIN_R)|g' \\\n\t      -e 's|@''HAVE_DECL_GETPAGESIZE''@|$(HAVE_DECL_GETPAGESIZE)|g' \\\n\t      -e 's|@''HAVE_DECL_GETUSERSHELL''@|$(HAVE_DECL_GETUSERSHELL)|g' \\\n\t      -e 's|@''HAVE_DECL_SETHOSTNAME''@|$(HAVE_DECL_SETHOSTNAME)|g' \\\n\t      -e 's|@''HAVE_DECL_TTYNAME_R''@|$(HAVE_DECL_TTYNAME_R)|g' \\\n\t      -e 's|@''HAVE_OS_H''@|$(HAVE_OS_H)|g' \\\n\t      -e 's|@''HAVE_SYS_PARAM_H''@|$(HAVE_SYS_PARAM_H)|g' \\\n\t  | \\\n\t  sed -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \\\n\t      -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \\\n\t      -e 's|@''REPLACE_DUP''@|$(REPLACE_DUP)|g' \\\n\t      -e 's|@''REPLACE_DUP2''@|$(REPLACE_DUP2)|g' \\\n\t      -e 's|@''REPLACE_FCHOWNAT''@|$(REPLACE_FCHOWNAT)|g' \\\n\t      -e 's|@''REPLACE_FTRUNCATE''@|$(REPLACE_FTRUNCATE)|g' \\\n\t      -e 's|@''REPLACE_GETCWD''@|$(REPLACE_GETCWD)|g' \\\n\t      -e 's|@''REPLACE_GETDOMAINNAME''@|$(REPLACE_GETDOMAINNAME)|g' \\\n\t      -e 's|@''REPLACE_GETDTABLESIZE''@|$(REPLACE_GETDTABLESIZE)|g' \\\n\t      -e 's|@''REPLACE_GETLOGIN_R''@|$(REPLACE_GETLOGIN_R)|g' \\\n\t      -e 's|@''REPLACE_GETGROUPS''@|$(REPLACE_GETGROUPS)|g' \\\n\t      -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \\\n\t      -e 's|@''REPLACE_ISATTY''@|$(REPLACE_ISATTY)|g' \\\n\t      -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \\\n\t      -e 's|@''REPLACE_LINK''@|$(REPLACE_LINK)|g' \\\n\t      -e 's|@''REPLACE_LINKAT''@|$(REPLACE_LINKAT)|g' \\\n\t      -e 's|@''REPLACE_LSEEK''@|$(REPLACE_LSEEK)|g' \\\n\t      -e 's|@''REPLACE_PREAD''@|$(REPLACE_PREAD)|g' \\\n\t      -e 's|@''REPLACE_PWRITE''@|$(REPLACE_PWRITE)|g' \\\n\t      -e 's|@''REPLACE_READ''@|$(REPLACE_READ)|g' \\\n\t      -e 's|@''REPLACE_READLINK''@|$(REPLACE_READLINK)|g' \\\n\t      -e 's|@''REPLACE_READLINKAT''@|$(REPLACE_READLINKAT)|g' \\\n\t      -e 's|@''REPLACE_RMDIR''@|$(REPLACE_RMDIR)|g' \\\n\t      -e 's|@''REPLACE_SLEEP''@|$(REPLACE_SLEEP)|g' \\\n\t      -e 's|@''REPLACE_SYMLINK''@|$(REPLACE_SYMLINK)|g' \\\n\t      -e 's|@''REPLACE_SYMLINKAT''@|$(REPLACE_SYMLINKAT)|g' \\\n\t      -e 's|@''REPLACE_TTYNAME_R''@|$(REPLACE_TTYNAME_R)|g' \\\n\t      -e 's|@''REPLACE_UNLINK''@|$(REPLACE_UNLINK)|g' \\\n\t      -e 's|@''REPLACE_UNLINKAT''@|$(REPLACE_UNLINKAT)|g' \\\n\t      -e 's|@''REPLACE_USLEEP''@|$(REPLACE_USLEEP)|g' \\\n\t      -e 's|@''REPLACE_WRITE''@|$(REPLACE_WRITE)|g' \\\n\t      -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|$(UNISTD_H_HAVE_WINSOCK2_H)|g' \\\n\t      -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|$(UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t} > $@-t && \\\n\tmv $@-t $@\nMOSTLYCLEANFILES += unistd.h unistd.h-t\n\nEXTRA_DIST += unistd.in.h\n\n## end   gnulib module unistd\n\n## begin gnulib module unitypes\n\nBUILT_SOURCES += $(LIBUNISTRING_UNITYPES_H)\n\nunitypes.h: unitypes.in.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  cat $(srcdir)/unitypes.in.h; \\\n\t} > $@-t && \\\n\tmv -f $@-t $@\nMOSTLYCLEANFILES += unitypes.h unitypes.h-t\n\nEXTRA_DIST += unitypes.in.h\n\n## end   gnulib module unitypes\n\n## begin gnulib module uniwidth/base\n\nBUILT_SOURCES += $(LIBUNISTRING_UNIWIDTH_H)\n\nuniwidth.h: uniwidth.in.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  cat $(srcdir)/uniwidth.in.h; \\\n\t} > $@-t && \\\n\tmv -f $@-t $@\nMOSTLYCLEANFILES += uniwidth.h uniwidth.h-t\n\nEXTRA_DIST += localcharset.h uniwidth.in.h\n\n## end   gnulib module uniwidth/base\n\n## begin gnulib module uniwidth/width\n\nif LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH\nlibicrt_a_SOURCES += uniwidth/width.c\nendif\n\nEXTRA_DIST += uniwidth/cjk.h\n\n## end   gnulib module uniwidth/width\n\n## begin gnulib module unlocked-io\n\n\nEXTRA_DIST += unlocked-io.h\n\n## end   gnulib module unlocked-io\n\n## begin gnulib module verify\n\n\nEXTRA_DIST += verify.h\n\n## end   gnulib module verify\n\n## begin gnulib module xalloc\n\nlibicrt_a_SOURCES += xalloc.h xmalloc.c xstrdup.c\n\n## end   gnulib module xalloc\n\n## begin gnulib module xalloc-oversized\n\n\nEXTRA_DIST += xalloc-oversized.h\n\n## end   gnulib module xalloc-oversized\n\n## begin gnulib module xreadlink\n\nlibicrt_a_SOURCES += xreadlink.c\n\nEXTRA_DIST += xreadlink.h\n\n## end   gnulib module xreadlink\n\n\nmostlyclean-local: mostlyclean-generic\n\t@for dir in '' $(MOSTLYCLEANDIRS); do \\\n\t  if test -n \"$$dir\" && test -d $$dir; then \\\n\t    echo \"rmdir $$dir\"; rmdir $$dir; \\\n\t  fi; \\\n\tdone; \\\n\t:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/Makefile.in",
    "content": "# Makefile.in generated by automake 1.15 from Makefile.am.\n# @configure_input@\n\n# Copyright (C) 1994-2014 Free Software Foundation, Inc.\n\n# This Makefile.in is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n# even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n# PARTICULAR PURPOSE.\n\n@SET_MAKE@\n\n# Copyright (C) 2002-2017 Free Software Foundation, Inc.\n#\n# This file is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This file is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this file.  If not, see <http://www.gnu.org/licenses/>.\n#\n# As a special exception to the GNU General Public License,\n# this file may be distributed as part of a program that\n# contains a configuration script generated by Autoconf, under\n# the same distribution terms as the rest of that program.\n#\n# Generated by gnulib-tool.\n# Reproduce by: gnulib-tool --import --local-dir=gnulib-local --lib=libicrt --source-base=srclib --m4-base=srcm4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --makefile-name=Makefile.gnulib --no-conditional-dependencies --no-libtool --macro-prefix=gl --no-vc-files binary-io error gettext gettext-h libiconv-misc mbstate progname relocatable-prog safe-read sigpipe stdio stdlib strerror unistd uniwidth/width unlocked-io xalloc\n\nVPATH = @srcdir@\nam__is_gnu_make = { \\\n  if test -z '$(MAKELEVEL)'; then \\\n    false; \\\n  elif test -n '$(MAKE_HOST)'; then \\\n    true; \\\n  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \\\n    true; \\\n  else \\\n    false; \\\n  fi; \\\n}\nam__make_running_with_option = \\\n  case $${target_option-} in \\\n      ?) ;; \\\n      *) echo \"am__make_running_with_option: internal error: invalid\" \\\n              \"target option '$${target_option-}' specified\" >&2; \\\n         exit 1;; \\\n  esac; \\\n  has_opt=no; \\\n  sane_makeflags=$$MAKEFLAGS; \\\n  if $(am__is_gnu_make); then \\\n    sane_makeflags=$$MFLAGS; \\\n  else \\\n    case $$MAKEFLAGS in \\\n      *\\\\[\\ \\\t]*) \\\n        bs=\\\\; \\\n        sane_makeflags=`printf '%s\\n' \"$$MAKEFLAGS\" \\\n          | sed \"s/$$bs$$bs[$$bs $$bs\t]*//g\"`;; \\\n    esac; \\\n  fi; \\\n  skip_next=no; \\\n  strip_trailopt () \\\n  { \\\n    flg=`printf '%s\\n' \"$$flg\" | sed \"s/$$1.*$$//\"`; \\\n  }; \\\n  for flg in $$sane_makeflags; do \\\n    test $$skip_next = yes && { skip_next=no; continue; }; \\\n    case $$flg in \\\n      *=*|--*) continue;; \\\n        -*I) strip_trailopt 'I'; skip_next=yes;; \\\n      -*I?*) strip_trailopt 'I';; \\\n        -*O) strip_trailopt 'O'; skip_next=yes;; \\\n      -*O?*) strip_trailopt 'O';; \\\n        -*l) strip_trailopt 'l'; skip_next=yes;; \\\n      -*l?*) strip_trailopt 'l';; \\\n      -[dEDm]) skip_next=yes;; \\\n      -[JT]) skip_next=yes;; \\\n    esac; \\\n    case $$flg in \\\n      *$$target_option*) has_opt=yes; break;; \\\n    esac; \\\n  done; \\\n  test $$has_opt = yes\nam__make_dryrun = (target_option=n; $(am__make_running_with_option))\nam__make_keepgoing = (target_option=k; $(am__make_running_with_option))\npkgdatadir = $(datadir)/@PACKAGE@\npkgincludedir = $(includedir)/@PACKAGE@\npkglibdir = $(libdir)/@PACKAGE@\npkglibexecdir = $(libexecdir)/@PACKAGE@\nam__cd = CDPATH=\"$${ZSH_VERSION+.}$(PATH_SEPARATOR)\" && cd\ninstall_sh_DATA = $(install_sh) -c -m 644\ninstall_sh_PROGRAM = $(install_sh) -c\ninstall_sh_SCRIPT = $(install_sh) -c\nINSTALL_HEADER = $(INSTALL_DATA)\ntransform = $(program_transform_name)\nNORMAL_INSTALL = :\nPRE_INSTALL = :\nPOST_INSTALL = :\nNORMAL_UNINSTALL = :\nPRE_UNINSTALL = :\nPOST_UNINSTALL = :\nbuild_triplet = @build@\nhost_triplet = @host@\n@LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE@am__append_1 = uniwidth/width.c\nsubdir = srclib\nACLOCAL_M4 = $(top_srcdir)/aclocal.m4\nam__aclocal_m4_deps = $(top_srcdir)/srcm4/00gnulib.m4 \\\n\t$(top_srcdir)/srcm4/absolute-header.m4 \\\n\t$(top_srcdir)/srcm4/alloca.m4 \\\n\t$(top_srcdir)/srcm4/asm-underscore.m4 \\\n\t$(top_srcdir)/srcm4/canonicalize.m4 \\\n\t$(top_srcdir)/srcm4/codeset.m4 $(top_srcdir)/srcm4/dirname.m4 \\\n\t$(top_srcdir)/srcm4/double-slash-root.m4 \\\n\t$(top_srcdir)/srcm4/eealloc.m4 $(top_srcdir)/srcm4/environ.m4 \\\n\t$(top_srcdir)/srcm4/errno_h.m4 $(top_srcdir)/srcm4/error.m4 \\\n\t$(top_srcdir)/srcm4/extensions.m4 \\\n\t$(top_srcdir)/srcm4/extern-inline.m4 \\\n\t$(top_srcdir)/srcm4/fcntl-o.m4 $(top_srcdir)/srcm4/fcntl_h.m4 \\\n\t$(top_srcdir)/srcm4/getprogname.m4 \\\n\t$(top_srcdir)/srcm4/gettext.m4 \\\n\t$(top_srcdir)/srcm4/gettimeofday.m4 \\\n\t$(top_srcdir)/srcm4/gnulib-common.m4 \\\n\t$(top_srcdir)/srcm4/gnulib-comp.m4 \\\n\t$(top_srcdir)/srcm4/iconv.m4 \\\n\t$(top_srcdir)/srcm4/include_next.m4 \\\n\t$(top_srcdir)/srcm4/intlmacosx.m4 \\\n\t$(top_srcdir)/srcm4/largefile.m4 $(top_srcdir)/srcm4/lib-ld.m4 \\\n\t$(top_srcdir)/srcm4/lib-link.m4 \\\n\t$(top_srcdir)/srcm4/lib-prefix.m4 \\\n\t$(top_srcdir)/srcm4/libunistring-base.m4 \\\n\t$(top_srcdir)/srcm4/limits-h.m4 \\\n\t$(top_srcdir)/srcm4/longlong.m4 $(top_srcdir)/srcm4/lstat.m4 \\\n\t$(top_srcdir)/srcm4/malloc.m4 $(top_srcdir)/srcm4/malloca.m4 \\\n\t$(top_srcdir)/srcm4/mbstate_t.m4 \\\n\t$(top_srcdir)/srcm4/msvc-inval.m4 \\\n\t$(top_srcdir)/srcm4/msvc-nothrow.m4 \\\n\t$(top_srcdir)/srcm4/multiarch.m4 $(top_srcdir)/srcm4/nls.m4 \\\n\t$(top_srcdir)/srcm4/nocrash.m4 $(top_srcdir)/srcm4/off_t.m4 \\\n\t$(top_srcdir)/srcm4/pathmax.m4 $(top_srcdir)/srcm4/po.m4 \\\n\t$(top_srcdir)/srcm4/progtest.m4 $(top_srcdir)/srcm4/raise.m4 \\\n\t$(top_srcdir)/srcm4/read.m4 $(top_srcdir)/srcm4/readlink.m4 \\\n\t$(top_srcdir)/srcm4/relocatable-lib.m4 \\\n\t$(top_srcdir)/srcm4/relocatable.m4 \\\n\t$(top_srcdir)/srcm4/safe-read.m4 $(top_srcdir)/srcm4/setenv.m4 \\\n\t$(top_srcdir)/srcm4/signal_h.m4 \\\n\t$(top_srcdir)/srcm4/signalblocking.m4 \\\n\t$(top_srcdir)/srcm4/sigpipe.m4 $(top_srcdir)/srcm4/ssize_t.m4 \\\n\t$(top_srcdir)/srcm4/stat.m4 $(top_srcdir)/srcm4/stdbool.m4 \\\n\t$(top_srcdir)/srcm4/stddef_h.m4 $(top_srcdir)/srcm4/stdint.m4 \\\n\t$(top_srcdir)/srcm4/stdio_h.m4 $(top_srcdir)/srcm4/stdlib_h.m4 \\\n\t$(top_srcdir)/srcm4/strerror.m4 \\\n\t$(top_srcdir)/srcm4/string_h.m4 \\\n\t$(top_srcdir)/srcm4/sys_socket_h.m4 \\\n\t$(top_srcdir)/srcm4/sys_stat_h.m4 \\\n\t$(top_srcdir)/srcm4/sys_time_h.m4 \\\n\t$(top_srcdir)/srcm4/sys_types_h.m4 \\\n\t$(top_srcdir)/srcm4/time_h.m4 $(top_srcdir)/srcm4/unistd_h.m4 \\\n\t$(top_srcdir)/srcm4/unlocked-io.m4 \\\n\t$(top_srcdir)/srcm4/visibility.m4 \\\n\t$(top_srcdir)/srcm4/warn-on-use.m4 \\\n\t$(top_srcdir)/srcm4/wchar_t.m4 $(top_srcdir)/srcm4/wint_t.m4 \\\n\t$(top_srcdir)/m4/cp.m4 $(top_srcdir)/m4/eilseq.m4 \\\n\t$(top_srcdir)/m4/endian.m4 $(top_srcdir)/m4/libtool.m4 \\\n\t$(top_srcdir)/m4/ln.m4 $(top_srcdir)/m4/ltoptions.m4 \\\n\t$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \\\n\t$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac\nam__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \\\n\t$(ACLOCAL_M4)\nDIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)\nmkinstalldirs = $(SHELL) $(top_srcdir)/build-aux/mkinstalldirs\nCONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/lib/config.h\nCONFIG_CLEAN_FILES =\nCONFIG_CLEAN_VPATH_FILES =\nLIBRARIES = $(noinst_LIBRARIES)\nAM_V_AR = $(am__v_AR_@AM_V@)\nam__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@)\nam__v_AR_0 = @echo \"  AR      \" $@;\nam__v_AR_1 = \nlibicrt_a_AR = $(AR) $(ARFLAGS)\nam__DEPENDENCIES_1 =\nam__libicrt_a_SOURCES_DIST = allocator.c areadlink.c binary-io.h \\\n\tbinary-io.c careadlinkat.c dirname-lgpl.c basename-lgpl.c \\\n\tstripslash.c getprogname.h getprogname.c gettext.h malloca.c \\\n\tprogname.h progname.c safe-read.c unistd.c uniwidth/width.c \\\n\txalloc.h xmalloc.c xstrdup.c xreadlink.c\nam__dirstamp = $(am__leading_dot)dirstamp\n@LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE@am__objects_1 = uniwidth/width.$(OBJEXT)\nam_libicrt_a_OBJECTS = allocator.$(OBJEXT) areadlink.$(OBJEXT) \\\n\tbinary-io.$(OBJEXT) careadlinkat.$(OBJEXT) \\\n\tdirname-lgpl.$(OBJEXT) basename-lgpl.$(OBJEXT) \\\n\tstripslash.$(OBJEXT) getprogname.$(OBJEXT) malloca.$(OBJEXT) \\\n\tprogname.$(OBJEXT) safe-read.$(OBJEXT) unistd.$(OBJEXT) \\\n\t$(am__objects_1) xmalloc.$(OBJEXT) xstrdup.$(OBJEXT) \\\n\txreadlink.$(OBJEXT)\nlibicrt_a_OBJECTS = $(am_libicrt_a_OBJECTS)\nAM_V_P = $(am__v_P_@AM_V@)\nam__v_P_ = $(am__v_P_@AM_DEFAULT_V@)\nam__v_P_0 = false\nam__v_P_1 = :\nAM_V_GEN = $(am__v_GEN_@AM_V@)\nam__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)\nam__v_GEN_0 = @echo \"  GEN     \" $@;\nam__v_GEN_1 = \nAM_V_at = $(am__v_at_@AM_V@)\nam__v_at_ = $(am__v_at_@AM_DEFAULT_V@)\nam__v_at_0 = @\nam__v_at_1 = \nDEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -I$(top_builddir)/lib\ndepcomp =\nam__depfiles_maybe =\nCOMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \\\n\t$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)\nAM_V_lt = $(am__v_lt_@AM_V@)\nam__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)\nam__v_lt_0 = --silent\nam__v_lt_1 = \nLTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \\\n\t$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \\\n\t$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \\\n\t$(AM_CFLAGS) $(CFLAGS)\nAM_V_CC = $(am__v_CC_@AM_V@)\nam__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)\nam__v_CC_0 = @echo \"  CC      \" $@;\nam__v_CC_1 = \nCCLD = $(CC)\nLINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \\\n\t$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \\\n\t$(AM_LDFLAGS) $(LDFLAGS) -o $@\nAM_V_CCLD = $(am__v_CCLD_@AM_V@)\nam__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)\nam__v_CCLD_0 = @echo \"  CCLD    \" $@;\nam__v_CCLD_1 = \nSOURCES = $(libicrt_a_SOURCES) $(EXTRA_libicrt_a_SOURCES)\nDIST_SOURCES = $(am__libicrt_a_SOURCES_DIST) \\\n\t$(EXTRA_libicrt_a_SOURCES)\nam__can_run_installinfo = \\\n  case $$AM_UPDATE_INFO_DIR in \\\n    n|no|NO) false;; \\\n    *) (install-info --version) >/dev/null 2>&1;; \\\n  esac\nam__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)\n# Read a list of newline-separated strings from the standard input,\n# and print each of them once, without duplicates.  Input order is\n# *not* preserved.\nam__uniquify_input = $(AWK) '\\\n  BEGIN { nonempty = 0; } \\\n  { items[$$0] = 1; nonempty = 1; } \\\n  END { if (nonempty) { for (i in items) print i; }; } \\\n'\n# Make sure the list of sources is unique.  This is necessary because,\n# e.g., the same source file might be shared among _SOURCES variables\n# for different programs/libraries.\nam__define_uniq_tagged_files = \\\n  list='$(am__tagged_files)'; \\\n  unique=`for i in $$list; do \\\n    if test -f \"$$i\"; then echo $$i; else echo $(srcdir)/$$i; fi; \\\n  done | $(am__uniquify_input)`\nETAGS = etags\nCTAGS = ctags\nam__DIST_COMMON = $(srcdir)/Makefile.gnulib $(srcdir)/Makefile.in \\\n\t$(top_srcdir)/build-aux/mkinstalldirs\nDISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)\nACLOCAL = @ACLOCAL@\nALLOCA = @ALLOCA@\nALLOCA_H = @ALLOCA_H@\nAMTAR = @AMTAR@\nAM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@\nAPPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@\nAR = @AR@\nARFLAGS = @ARFLAGS@\nAS = @AS@\nASM_SYMBOL_PREFIX = @ASM_SYMBOL_PREFIX@\nAUTOCONF = @AUTOCONF@\nAUTOHEADER = @AUTOHEADER@\nAUTOMAKE = @AUTOMAKE@\nAWK = @AWK@\nBITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@\nBITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@\nBITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@\nBITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@\nBITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@\nBROKEN_WCHAR_H = @BROKEN_WCHAR_H@\nCC = @CC@\nCCDEPMODE = @CCDEPMODE@\nCFLAGS = @CFLAGS@\nCFLAG_VISIBILITY = @CFLAG_VISIBILITY@\nCP = @CP@\nCPP = @CPP@\nCPPFLAGS = @CPPFLAGS@\nCYGPATH_W = @CYGPATH_W@\nDEFS = @DEFS@ -DEXEEXT=\\\"@EXEEXT@\\\"\nDEPDIR = @DEPDIR@\nDLLTOOL = @DLLTOOL@\nDLL_VARIABLE = @DLL_VARIABLE@\nDSYMUTIL = @DSYMUTIL@\nDUMPBIN = @DUMPBIN@\nECHO_C = @ECHO_C@\nECHO_N = @ECHO_N@\nECHO_T = @ECHO_T@\nEGREP = @EGREP@\nEILSEQ = @EILSEQ@\nEMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@\nEMULTIHOP_VALUE = @EMULTIHOP_VALUE@\nENOLINK_HIDDEN = @ENOLINK_HIDDEN@\nENOLINK_VALUE = @ENOLINK_VALUE@\nEOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@\nEOVERFLOW_VALUE = @EOVERFLOW_VALUE@\nERRNO_H = @ERRNO_H@\nEXEEXT = @EXEEXT@\nFGREP = @FGREP@\nGETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@\nGMSGFMT = @GMSGFMT@\nGMSGFMT_015 = @GMSGFMT_015@\nGNULIB_ATOLL = @GNULIB_ATOLL@\nGNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@\nGNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@\nGNULIB_CHDIR = @GNULIB_CHDIR@\nGNULIB_CHOWN = @GNULIB_CHOWN@\nGNULIB_CLOSE = @GNULIB_CLOSE@\nGNULIB_DPRINTF = @GNULIB_DPRINTF@\nGNULIB_DUP = @GNULIB_DUP@\nGNULIB_DUP2 = @GNULIB_DUP2@\nGNULIB_DUP3 = @GNULIB_DUP3@\nGNULIB_ENVIRON = @GNULIB_ENVIRON@\nGNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@\nGNULIB_FACCESSAT = @GNULIB_FACCESSAT@\nGNULIB_FCHDIR = @GNULIB_FCHDIR@\nGNULIB_FCHMODAT = @GNULIB_FCHMODAT@\nGNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@\nGNULIB_FCLOSE = @GNULIB_FCLOSE@\nGNULIB_FCNTL = @GNULIB_FCNTL@\nGNULIB_FDATASYNC = @GNULIB_FDATASYNC@\nGNULIB_FDOPEN = @GNULIB_FDOPEN@\nGNULIB_FFLUSH = @GNULIB_FFLUSH@\nGNULIB_FFSL = @GNULIB_FFSL@\nGNULIB_FFSLL = @GNULIB_FFSLL@\nGNULIB_FGETC = @GNULIB_FGETC@\nGNULIB_FGETS = @GNULIB_FGETS@\nGNULIB_FOPEN = @GNULIB_FOPEN@\nGNULIB_FPRINTF = @GNULIB_FPRINTF@\nGNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@\nGNULIB_FPURGE = @GNULIB_FPURGE@\nGNULIB_FPUTC = @GNULIB_FPUTC@\nGNULIB_FPUTS = @GNULIB_FPUTS@\nGNULIB_FREAD = @GNULIB_FREAD@\nGNULIB_FREOPEN = @GNULIB_FREOPEN@\nGNULIB_FSCANF = @GNULIB_FSCANF@\nGNULIB_FSEEK = @GNULIB_FSEEK@\nGNULIB_FSEEKO = @GNULIB_FSEEKO@\nGNULIB_FSTAT = @GNULIB_FSTAT@\nGNULIB_FSTATAT = @GNULIB_FSTATAT@\nGNULIB_FSYNC = @GNULIB_FSYNC@\nGNULIB_FTELL = @GNULIB_FTELL@\nGNULIB_FTELLO = @GNULIB_FTELLO@\nGNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@\nGNULIB_FUTIMENS = @GNULIB_FUTIMENS@\nGNULIB_FWRITE = @GNULIB_FWRITE@\nGNULIB_GETC = @GNULIB_GETC@\nGNULIB_GETCHAR = @GNULIB_GETCHAR@\nGNULIB_GETCWD = @GNULIB_GETCWD@\nGNULIB_GETDELIM = @GNULIB_GETDELIM@\nGNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@\nGNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@\nGNULIB_GETGROUPS = @GNULIB_GETGROUPS@\nGNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@\nGNULIB_GETLINE = @GNULIB_GETLINE@\nGNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@\nGNULIB_GETLOGIN = @GNULIB_GETLOGIN@\nGNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@\nGNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@\nGNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@\nGNULIB_GETTIMEOFDAY = @GNULIB_GETTIMEOFDAY@\nGNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@\nGNULIB_GRANTPT = @GNULIB_GRANTPT@\nGNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@\nGNULIB_ISATTY = @GNULIB_ISATTY@\nGNULIB_LCHMOD = @GNULIB_LCHMOD@\nGNULIB_LCHOWN = @GNULIB_LCHOWN@\nGNULIB_LINK = @GNULIB_LINK@\nGNULIB_LINKAT = @GNULIB_LINKAT@\nGNULIB_LSEEK = @GNULIB_LSEEK@\nGNULIB_LSTAT = @GNULIB_LSTAT@\nGNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@\nGNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@\nGNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@\nGNULIB_MBSCHR = @GNULIB_MBSCHR@\nGNULIB_MBSCSPN = @GNULIB_MBSCSPN@\nGNULIB_MBSLEN = @GNULIB_MBSLEN@\nGNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@\nGNULIB_MBSNLEN = @GNULIB_MBSNLEN@\nGNULIB_MBSPBRK = @GNULIB_MBSPBRK@\nGNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@\nGNULIB_MBSRCHR = @GNULIB_MBSRCHR@\nGNULIB_MBSSEP = @GNULIB_MBSSEP@\nGNULIB_MBSSPN = @GNULIB_MBSSPN@\nGNULIB_MBSSTR = @GNULIB_MBSSTR@\nGNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@\nGNULIB_MBTOWC = @GNULIB_MBTOWC@\nGNULIB_MEMCHR = @GNULIB_MEMCHR@\nGNULIB_MEMMEM = @GNULIB_MEMMEM@\nGNULIB_MEMPCPY = @GNULIB_MEMPCPY@\nGNULIB_MEMRCHR = @GNULIB_MEMRCHR@\nGNULIB_MKDIRAT = @GNULIB_MKDIRAT@\nGNULIB_MKDTEMP = @GNULIB_MKDTEMP@\nGNULIB_MKFIFO = @GNULIB_MKFIFO@\nGNULIB_MKFIFOAT = @GNULIB_MKFIFOAT@\nGNULIB_MKNOD = @GNULIB_MKNOD@\nGNULIB_MKNODAT = @GNULIB_MKNODAT@\nGNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@\nGNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@\nGNULIB_MKSTEMP = @GNULIB_MKSTEMP@\nGNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@\nGNULIB_MKTIME = @GNULIB_MKTIME@\nGNULIB_NANOSLEEP = @GNULIB_NANOSLEEP@\nGNULIB_NONBLOCKING = @GNULIB_NONBLOCKING@\nGNULIB_OBSTACK_PRINTF = @GNULIB_OBSTACK_PRINTF@\nGNULIB_OBSTACK_PRINTF_POSIX = @GNULIB_OBSTACK_PRINTF_POSIX@\nGNULIB_OPEN = @GNULIB_OPEN@\nGNULIB_OPENAT = @GNULIB_OPENAT@\nGNULIB_OVERRIDES_WINT_T = @GNULIB_OVERRIDES_WINT_T@\nGNULIB_PCLOSE = @GNULIB_PCLOSE@\nGNULIB_PERROR = @GNULIB_PERROR@\nGNULIB_PIPE = @GNULIB_PIPE@\nGNULIB_PIPE2 = @GNULIB_PIPE2@\nGNULIB_POPEN = @GNULIB_POPEN@\nGNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@\nGNULIB_PREAD = @GNULIB_PREAD@\nGNULIB_PRINTF = @GNULIB_PRINTF@\nGNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@\nGNULIB_PTHREAD_SIGMASK = @GNULIB_PTHREAD_SIGMASK@\nGNULIB_PTSNAME = @GNULIB_PTSNAME@\nGNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@\nGNULIB_PUTC = @GNULIB_PUTC@\nGNULIB_PUTCHAR = @GNULIB_PUTCHAR@\nGNULIB_PUTENV = @GNULIB_PUTENV@\nGNULIB_PUTS = @GNULIB_PUTS@\nGNULIB_PWRITE = @GNULIB_PWRITE@\nGNULIB_QSORT_R = @GNULIB_QSORT_R@\nGNULIB_RAISE = @GNULIB_RAISE@\nGNULIB_RANDOM = @GNULIB_RANDOM@\nGNULIB_RANDOM_R = @GNULIB_RANDOM_R@\nGNULIB_RAWMEMCHR = @GNULIB_RAWMEMCHR@\nGNULIB_READ = @GNULIB_READ@\nGNULIB_READLINK = @GNULIB_READLINK@\nGNULIB_READLINKAT = @GNULIB_READLINKAT@\nGNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@\nGNULIB_REALPATH = @GNULIB_REALPATH@\nGNULIB_REMOVE = @GNULIB_REMOVE@\nGNULIB_RENAME = @GNULIB_RENAME@\nGNULIB_RENAMEAT = @GNULIB_RENAMEAT@\nGNULIB_RMDIR = @GNULIB_RMDIR@\nGNULIB_RPMATCH = @GNULIB_RPMATCH@\nGNULIB_SCANF = @GNULIB_SCANF@\nGNULIB_SECURE_GETENV = @GNULIB_SECURE_GETENV@\nGNULIB_SETENV = @GNULIB_SETENV@\nGNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@\nGNULIB_SIGACTION = @GNULIB_SIGACTION@\nGNULIB_SIGNAL_H_SIGPIPE = @GNULIB_SIGNAL_H_SIGPIPE@\nGNULIB_SIGPROCMASK = @GNULIB_SIGPROCMASK@\nGNULIB_SLEEP = @GNULIB_SLEEP@\nGNULIB_SNPRINTF = @GNULIB_SNPRINTF@\nGNULIB_SPRINTF_POSIX = @GNULIB_SPRINTF_POSIX@\nGNULIB_STAT = @GNULIB_STAT@\nGNULIB_STDIO_H_NONBLOCKING = @GNULIB_STDIO_H_NONBLOCKING@\nGNULIB_STDIO_H_SIGPIPE = @GNULIB_STDIO_H_SIGPIPE@\nGNULIB_STPCPY = @GNULIB_STPCPY@\nGNULIB_STPNCPY = @GNULIB_STPNCPY@\nGNULIB_STRCASESTR = @GNULIB_STRCASESTR@\nGNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@\nGNULIB_STRDUP = @GNULIB_STRDUP@\nGNULIB_STRERROR = @GNULIB_STRERROR@\nGNULIB_STRERROR_R = @GNULIB_STRERROR_R@\nGNULIB_STRNCAT = @GNULIB_STRNCAT@\nGNULIB_STRNDUP = @GNULIB_STRNDUP@\nGNULIB_STRNLEN = @GNULIB_STRNLEN@\nGNULIB_STRPBRK = @GNULIB_STRPBRK@\nGNULIB_STRPTIME = @GNULIB_STRPTIME@\nGNULIB_STRSEP = @GNULIB_STRSEP@\nGNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@\nGNULIB_STRSTR = @GNULIB_STRSTR@\nGNULIB_STRTOD = @GNULIB_STRTOD@\nGNULIB_STRTOK_R = @GNULIB_STRTOK_R@\nGNULIB_STRTOLL = @GNULIB_STRTOLL@\nGNULIB_STRTOULL = @GNULIB_STRTOULL@\nGNULIB_STRVERSCMP = @GNULIB_STRVERSCMP@\nGNULIB_SYMLINK = @GNULIB_SYMLINK@\nGNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@\nGNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@\nGNULIB_TIMEGM = @GNULIB_TIMEGM@\nGNULIB_TIME_R = @GNULIB_TIME_R@\nGNULIB_TIME_RZ = @GNULIB_TIME_RZ@\nGNULIB_TMPFILE = @GNULIB_TMPFILE@\nGNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@\nGNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@\nGNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@\nGNULIB_UNLINK = @GNULIB_UNLINK@\nGNULIB_UNLINKAT = @GNULIB_UNLINKAT@\nGNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@\nGNULIB_UNSETENV = @GNULIB_UNSETENV@\nGNULIB_USLEEP = @GNULIB_USLEEP@\nGNULIB_UTIMENSAT = @GNULIB_UTIMENSAT@\nGNULIB_VASPRINTF = @GNULIB_VASPRINTF@\nGNULIB_VDPRINTF = @GNULIB_VDPRINTF@\nGNULIB_VFPRINTF = @GNULIB_VFPRINTF@\nGNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@\nGNULIB_VFSCANF = @GNULIB_VFSCANF@\nGNULIB_VPRINTF = @GNULIB_VPRINTF@\nGNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@\nGNULIB_VSCANF = @GNULIB_VSCANF@\nGNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@\nGNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@\nGNULIB_WCTOMB = @GNULIB_WCTOMB@\nGNULIB_WRITE = @GNULIB_WRITE@\nGNULIB__EXIT = @GNULIB__EXIT@\nGREP = @GREP@\nHAVE_ATOLL = @HAVE_ATOLL@\nHAVE_C99_STDINT_H = @HAVE_C99_STDINT_H@\nHAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@\nHAVE_CHOWN = @HAVE_CHOWN@\nHAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@\nHAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@\nHAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@\nHAVE_DECL_FPURGE = @HAVE_DECL_FPURGE@\nHAVE_DECL_FSEEKO = @HAVE_DECL_FSEEKO@\nHAVE_DECL_FTELLO = @HAVE_DECL_FTELLO@\nHAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@\nHAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@\nHAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@\nHAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@\nHAVE_DECL_GETLOGIN = @HAVE_DECL_GETLOGIN@\nHAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@\nHAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@\nHAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@\nHAVE_DECL_LOCALTIME_R = @HAVE_DECL_LOCALTIME_R@\nHAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@\nHAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@\nHAVE_DECL_OBSTACK_PRINTF = @HAVE_DECL_OBSTACK_PRINTF@\nHAVE_DECL_SETENV = @HAVE_DECL_SETENV@\nHAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@\nHAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@\nHAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@\nHAVE_DECL_STRERROR_R = @HAVE_DECL_STRERROR_R@\nHAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@\nHAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@\nHAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@\nHAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@\nHAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@\nHAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@\nHAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@\nHAVE_DPRINTF = @HAVE_DPRINTF@\nHAVE_DUP2 = @HAVE_DUP2@\nHAVE_DUP3 = @HAVE_DUP3@\nHAVE_EUIDACCESS = @HAVE_EUIDACCESS@\nHAVE_FACCESSAT = @HAVE_FACCESSAT@\nHAVE_FCHDIR = @HAVE_FCHDIR@\nHAVE_FCHMODAT = @HAVE_FCHMODAT@\nHAVE_FCHOWNAT = @HAVE_FCHOWNAT@\nHAVE_FCNTL = @HAVE_FCNTL@\nHAVE_FDATASYNC = @HAVE_FDATASYNC@\nHAVE_FFSL = @HAVE_FFSL@\nHAVE_FFSLL = @HAVE_FFSLL@\nHAVE_FSEEKO = @HAVE_FSEEKO@\nHAVE_FSTATAT = @HAVE_FSTATAT@\nHAVE_FSYNC = @HAVE_FSYNC@\nHAVE_FTELLO = @HAVE_FTELLO@\nHAVE_FTRUNCATE = @HAVE_FTRUNCATE@\nHAVE_FUTIMENS = @HAVE_FUTIMENS@\nHAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@\nHAVE_GETGROUPS = @HAVE_GETGROUPS@\nHAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@\nHAVE_GETLOGIN = @HAVE_GETLOGIN@\nHAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@\nHAVE_GETSUBOPT = @HAVE_GETSUBOPT@\nHAVE_GETTIMEOFDAY = @HAVE_GETTIMEOFDAY@\nHAVE_GRANTPT = @HAVE_GRANTPT@\nHAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@\nHAVE_INTTYPES_H = @HAVE_INTTYPES_H@\nHAVE_LCHMOD = @HAVE_LCHMOD@\nHAVE_LCHOWN = @HAVE_LCHOWN@\nHAVE_LINK = @HAVE_LINK@\nHAVE_LINKAT = @HAVE_LINKAT@\nHAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@\nHAVE_LSTAT = @HAVE_LSTAT@\nHAVE_MAX_ALIGN_T = @HAVE_MAX_ALIGN_T@\nHAVE_MBSLEN = @HAVE_MBSLEN@\nHAVE_MEMCHR = @HAVE_MEMCHR@\nHAVE_MEMPCPY = @HAVE_MEMPCPY@\nHAVE_MKDIRAT = @HAVE_MKDIRAT@\nHAVE_MKDTEMP = @HAVE_MKDTEMP@\nHAVE_MKFIFO = @HAVE_MKFIFO@\nHAVE_MKFIFOAT = @HAVE_MKFIFOAT@\nHAVE_MKNOD = @HAVE_MKNOD@\nHAVE_MKNODAT = @HAVE_MKNODAT@\nHAVE_MKOSTEMP = @HAVE_MKOSTEMP@\nHAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@\nHAVE_MKSTEMP = @HAVE_MKSTEMP@\nHAVE_MKSTEMPS = @HAVE_MKSTEMPS@\nHAVE_MSVC_INVALID_PARAMETER_HANDLER = @HAVE_MSVC_INVALID_PARAMETER_HANDLER@\nHAVE_NANOSLEEP = @HAVE_NANOSLEEP@\nHAVE_OPENAT = @HAVE_OPENAT@\nHAVE_OS_H = @HAVE_OS_H@\nHAVE_PCLOSE = @HAVE_PCLOSE@\nHAVE_PIPE = @HAVE_PIPE@\nHAVE_PIPE2 = @HAVE_PIPE2@\nHAVE_POPEN = @HAVE_POPEN@\nHAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@\nHAVE_POSIX_SIGNALBLOCKING = @HAVE_POSIX_SIGNALBLOCKING@\nHAVE_PREAD = @HAVE_PREAD@\nHAVE_PTHREAD_SIGMASK = @HAVE_PTHREAD_SIGMASK@\nHAVE_PTSNAME = @HAVE_PTSNAME@\nHAVE_PTSNAME_R = @HAVE_PTSNAME_R@\nHAVE_PWRITE = @HAVE_PWRITE@\nHAVE_QSORT_R = @HAVE_QSORT_R@\nHAVE_RAISE = @HAVE_RAISE@\nHAVE_RANDOM = @HAVE_RANDOM@\nHAVE_RANDOM_H = @HAVE_RANDOM_H@\nHAVE_RANDOM_R = @HAVE_RANDOM_R@\nHAVE_RAWMEMCHR = @HAVE_RAWMEMCHR@\nHAVE_READLINK = @HAVE_READLINK@\nHAVE_READLINKAT = @HAVE_READLINKAT@\nHAVE_REALPATH = @HAVE_REALPATH@\nHAVE_RENAMEAT = @HAVE_RENAMEAT@\nHAVE_RPMATCH = @HAVE_RPMATCH@\nHAVE_SECURE_GETENV = @HAVE_SECURE_GETENV@\nHAVE_SETENV = @HAVE_SETENV@\nHAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@\nHAVE_SIGACTION = @HAVE_SIGACTION@\nHAVE_SIGHANDLER_T = @HAVE_SIGHANDLER_T@\nHAVE_SIGINFO_T = @HAVE_SIGINFO_T@\nHAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@\nHAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@\nHAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@\nHAVE_SIGSET_T = @HAVE_SIGSET_T@\nHAVE_SLEEP = @HAVE_SLEEP@\nHAVE_STDINT_H = @HAVE_STDINT_H@\nHAVE_STPCPY = @HAVE_STPCPY@\nHAVE_STPNCPY = @HAVE_STPNCPY@\nHAVE_STRCASESTR = @HAVE_STRCASESTR@\nHAVE_STRCHRNUL = @HAVE_STRCHRNUL@\nHAVE_STRPBRK = @HAVE_STRPBRK@\nHAVE_STRPTIME = @HAVE_STRPTIME@\nHAVE_STRSEP = @HAVE_STRSEP@\nHAVE_STRTOD = @HAVE_STRTOD@\nHAVE_STRTOLL = @HAVE_STRTOLL@\nHAVE_STRTOULL = @HAVE_STRTOULL@\nHAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@\nHAVE_STRUCT_SIGACTION_SA_SIGACTION = @HAVE_STRUCT_SIGACTION_SA_SIGACTION@\nHAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@\nHAVE_STRVERSCMP = @HAVE_STRVERSCMP@\nHAVE_SYMLINK = @HAVE_SYMLINK@\nHAVE_SYMLINKAT = @HAVE_SYMLINKAT@\nHAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@\nHAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@\nHAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@\nHAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@\nHAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@\nHAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@\nHAVE_TIMEGM = @HAVE_TIMEGM@\nHAVE_TIMEZONE_T = @HAVE_TIMEZONE_T@\nHAVE_TYPE_VOLATILE_SIG_ATOMIC_T = @HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@\nHAVE_UNISTD_H = @HAVE_UNISTD_H@\nHAVE_UNLINKAT = @HAVE_UNLINKAT@\nHAVE_UNLOCKPT = @HAVE_UNLOCKPT@\nHAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@\nHAVE_USLEEP = @HAVE_USLEEP@\nHAVE_UTIMENSAT = @HAVE_UTIMENSAT@\nHAVE_VASPRINTF = @HAVE_VASPRINTF@\nHAVE_VDPRINTF = @HAVE_VDPRINTF@\nHAVE_VISIBILITY = @HAVE_VISIBILITY@\nHAVE_WCHAR_H = @HAVE_WCHAR_H@\nHAVE_WCHAR_T = @HAVE_WCHAR_T@\nHAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@\nHAVE__BOOL = @HAVE__BOOL@\nHAVE__EXIT = @HAVE__EXIT@\nICONV_CONST = @ICONV_CONST@\nINCLUDE_NEXT = @INCLUDE_NEXT@\nINCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@\nINSTALL = @INSTALL@\nINSTALL_DATA = @INSTALL_DATA@\nINSTALL_PROGRAM = @INSTALL_PROGRAM@\nINSTALL_PROGRAM_ENV = @INSTALL_PROGRAM_ENV@\nINSTALL_SCRIPT = @INSTALL_SCRIPT@\nINSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@\nINTLLIBS = @INTLLIBS@\nINTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@\nLD = @LD@\nLDFLAGS = @LDFLAGS@\nLIBICONV = @LIBICONV@\nLIBICRT_LIBDEPS = @LIBICRT_LIBDEPS@\nLIBICRT_LTLIBDEPS = @LIBICRT_LTLIBDEPS@\nLIBINTL = @LIBINTL@\nLIBOBJS = @LIBOBJS@\nLIBS = @LIBS@\nLIBTOOL = @LIBTOOL@\nLIBUNISTRING_UNITYPES_H = @LIBUNISTRING_UNITYPES_H@\nLIBUNISTRING_UNIWIDTH_H = @LIBUNISTRING_UNIWIDTH_H@\nLIMITS_H = @LIMITS_H@\nLIPO = @LIPO@\nLN = @LN@\nLN_S = @LN_S@\nLTLIBICONV = @LTLIBICONV@\nLTLIBINTL = @LTLIBINTL@\nLTLIBOBJS = @LTLIBOBJS@\nLT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@\nMAKEINFO = @MAKEINFO@\nMANIFEST_TOOL = @MANIFEST_TOOL@\nMKDIR_P = @MKDIR_P@\nMSGFMT = @MSGFMT@\nMSGFMT_015 = @MSGFMT_015@\nMSGMERGE = @MSGMERGE@\nNEXT_AS_FIRST_DIRECTIVE_ERRNO_H = @NEXT_AS_FIRST_DIRECTIVE_ERRNO_H@\nNEXT_AS_FIRST_DIRECTIVE_FCNTL_H = @NEXT_AS_FIRST_DIRECTIVE_FCNTL_H@\nNEXT_AS_FIRST_DIRECTIVE_LIMITS_H = @NEXT_AS_FIRST_DIRECTIVE_LIMITS_H@\nNEXT_AS_FIRST_DIRECTIVE_SIGNAL_H = @NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H@\nNEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@\nNEXT_AS_FIRST_DIRECTIVE_STDINT_H = @NEXT_AS_FIRST_DIRECTIVE_STDINT_H@\nNEXT_AS_FIRST_DIRECTIVE_STDIO_H = @NEXT_AS_FIRST_DIRECTIVE_STDIO_H@\nNEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@\nNEXT_AS_FIRST_DIRECTIVE_STRING_H = @NEXT_AS_FIRST_DIRECTIVE_STRING_H@\nNEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H@\nNEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H@\nNEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@\nNEXT_AS_FIRST_DIRECTIVE_TIME_H = @NEXT_AS_FIRST_DIRECTIVE_TIME_H@\nNEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@\nNEXT_ERRNO_H = @NEXT_ERRNO_H@\nNEXT_FCNTL_H = @NEXT_FCNTL_H@\nNEXT_LIMITS_H = @NEXT_LIMITS_H@\nNEXT_SIGNAL_H = @NEXT_SIGNAL_H@\nNEXT_STDDEF_H = @NEXT_STDDEF_H@\nNEXT_STDINT_H = @NEXT_STDINT_H@\nNEXT_STDIO_H = @NEXT_STDIO_H@\nNEXT_STDLIB_H = @NEXT_STDLIB_H@\nNEXT_STRING_H = @NEXT_STRING_H@\nNEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@\nNEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@\nNEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@\nNEXT_TIME_H = @NEXT_TIME_H@\nNEXT_UNISTD_H = @NEXT_UNISTD_H@\nNM = @NM@\nNMEDIT = @NMEDIT@\nOBJDUMP = @OBJDUMP@\nOBJEXT = @OBJEXT@\nOTOOL = @OTOOL@\nOTOOL64 = @OTOOL64@\nPACKAGE = @PACKAGE@\nPACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@\nPACKAGE_NAME = @PACKAGE_NAME@\nPACKAGE_STRING = @PACKAGE_STRING@\nPACKAGE_TARNAME = @PACKAGE_TARNAME@\nPACKAGE_URL = @PACKAGE_URL@\nPACKAGE_VERSION = @PACKAGE_VERSION@\nPATH_SEPARATOR = @PATH_SEPARATOR@\nPOSUB = @POSUB@\nPRAGMA_COLUMNS = @PRAGMA_COLUMNS@\nPRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@\nPTHREAD_H_DEFINES_STRUCT_TIMESPEC = @PTHREAD_H_DEFINES_STRUCT_TIMESPEC@\nPTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@\nRANLIB = @RANLIB@\nRC = @RC@\nRELOCATABLE = @RELOCATABLE@\nRELOCATABLE_BUILD_DIR = @RELOCATABLE_BUILD_DIR@\nRELOCATABLE_CONFIG_H_DIR = @RELOCATABLE_CONFIG_H_DIR@\nRELOCATABLE_LDFLAGS = @RELOCATABLE_LDFLAGS@\nRELOCATABLE_LIBRARY_PATH = @RELOCATABLE_LIBRARY_PATH@\nRELOCATABLE_SRC_DIR = @RELOCATABLE_SRC_DIR@\nRELOCATABLE_STRIP = @RELOCATABLE_STRIP@\nREPLACE_CALLOC = @REPLACE_CALLOC@\nREPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@\nREPLACE_CHOWN = @REPLACE_CHOWN@\nREPLACE_CLOSE = @REPLACE_CLOSE@\nREPLACE_DPRINTF = @REPLACE_DPRINTF@\nREPLACE_DUP = @REPLACE_DUP@\nREPLACE_DUP2 = @REPLACE_DUP2@\nREPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@\nREPLACE_FCLOSE = @REPLACE_FCLOSE@\nREPLACE_FCNTL = @REPLACE_FCNTL@\nREPLACE_FDOPEN = @REPLACE_FDOPEN@\nREPLACE_FFLUSH = @REPLACE_FFLUSH@\nREPLACE_FOPEN = @REPLACE_FOPEN@\nREPLACE_FPRINTF = @REPLACE_FPRINTF@\nREPLACE_FPURGE = @REPLACE_FPURGE@\nREPLACE_FREOPEN = @REPLACE_FREOPEN@\nREPLACE_FSEEK = @REPLACE_FSEEK@\nREPLACE_FSEEKO = @REPLACE_FSEEKO@\nREPLACE_FSTAT = @REPLACE_FSTAT@\nREPLACE_FSTATAT = @REPLACE_FSTATAT@\nREPLACE_FTELL = @REPLACE_FTELL@\nREPLACE_FTELLO = @REPLACE_FTELLO@\nREPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@\nREPLACE_FUTIMENS = @REPLACE_FUTIMENS@\nREPLACE_GETCWD = @REPLACE_GETCWD@\nREPLACE_GETDELIM = @REPLACE_GETDELIM@\nREPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@\nREPLACE_GETDTABLESIZE = @REPLACE_GETDTABLESIZE@\nREPLACE_GETGROUPS = @REPLACE_GETGROUPS@\nREPLACE_GETLINE = @REPLACE_GETLINE@\nREPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@\nREPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@\nREPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@\nREPLACE_GMTIME = @REPLACE_GMTIME@\nREPLACE_ISATTY = @REPLACE_ISATTY@\nREPLACE_LCHOWN = @REPLACE_LCHOWN@\nREPLACE_LINK = @REPLACE_LINK@\nREPLACE_LINKAT = @REPLACE_LINKAT@\nREPLACE_LOCALTIME = @REPLACE_LOCALTIME@\nREPLACE_LOCALTIME_R = @REPLACE_LOCALTIME_R@\nREPLACE_LSEEK = @REPLACE_LSEEK@\nREPLACE_LSTAT = @REPLACE_LSTAT@\nREPLACE_MALLOC = @REPLACE_MALLOC@\nREPLACE_MBTOWC = @REPLACE_MBTOWC@\nREPLACE_MEMCHR = @REPLACE_MEMCHR@\nREPLACE_MEMMEM = @REPLACE_MEMMEM@\nREPLACE_MKDIR = @REPLACE_MKDIR@\nREPLACE_MKFIFO = @REPLACE_MKFIFO@\nREPLACE_MKNOD = @REPLACE_MKNOD@\nREPLACE_MKSTEMP = @REPLACE_MKSTEMP@\nREPLACE_MKTIME = @REPLACE_MKTIME@\nREPLACE_NANOSLEEP = @REPLACE_NANOSLEEP@\nREPLACE_NULL = @REPLACE_NULL@\nREPLACE_OBSTACK_PRINTF = @REPLACE_OBSTACK_PRINTF@\nREPLACE_OPEN = @REPLACE_OPEN@\nREPLACE_OPENAT = @REPLACE_OPENAT@\nREPLACE_PERROR = @REPLACE_PERROR@\nREPLACE_POPEN = @REPLACE_POPEN@\nREPLACE_PREAD = @REPLACE_PREAD@\nREPLACE_PRINTF = @REPLACE_PRINTF@\nREPLACE_PTHREAD_SIGMASK = @REPLACE_PTHREAD_SIGMASK@\nREPLACE_PTSNAME = @REPLACE_PTSNAME@\nREPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@\nREPLACE_PUTENV = @REPLACE_PUTENV@\nREPLACE_PWRITE = @REPLACE_PWRITE@\nREPLACE_QSORT_R = @REPLACE_QSORT_R@\nREPLACE_RAISE = @REPLACE_RAISE@\nREPLACE_RANDOM_R = @REPLACE_RANDOM_R@\nREPLACE_READ = @REPLACE_READ@\nREPLACE_READLINK = @REPLACE_READLINK@\nREPLACE_READLINKAT = @REPLACE_READLINKAT@\nREPLACE_REALLOC = @REPLACE_REALLOC@\nREPLACE_REALPATH = @REPLACE_REALPATH@\nREPLACE_REMOVE = @REPLACE_REMOVE@\nREPLACE_RENAME = @REPLACE_RENAME@\nREPLACE_RENAMEAT = @REPLACE_RENAMEAT@\nREPLACE_RMDIR = @REPLACE_RMDIR@\nREPLACE_SETENV = @REPLACE_SETENV@\nREPLACE_SLEEP = @REPLACE_SLEEP@\nREPLACE_SNPRINTF = @REPLACE_SNPRINTF@\nREPLACE_SPRINTF = @REPLACE_SPRINTF@\nREPLACE_STAT = @REPLACE_STAT@\nREPLACE_STDIO_READ_FUNCS = @REPLACE_STDIO_READ_FUNCS@\nREPLACE_STDIO_WRITE_FUNCS = @REPLACE_STDIO_WRITE_FUNCS@\nREPLACE_STPNCPY = @REPLACE_STPNCPY@\nREPLACE_STRCASESTR = @REPLACE_STRCASESTR@\nREPLACE_STRCHRNUL = @REPLACE_STRCHRNUL@\nREPLACE_STRDUP = @REPLACE_STRDUP@\nREPLACE_STRERROR = @REPLACE_STRERROR@\nREPLACE_STRERROR_R = @REPLACE_STRERROR_R@\nREPLACE_STRNCAT = @REPLACE_STRNCAT@\nREPLACE_STRNDUP = @REPLACE_STRNDUP@\nREPLACE_STRNLEN = @REPLACE_STRNLEN@\nREPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@\nREPLACE_STRSTR = @REPLACE_STRSTR@\nREPLACE_STRTOD = @REPLACE_STRTOD@\nREPLACE_STRTOK_R = @REPLACE_STRTOK_R@\nREPLACE_STRUCT_TIMEVAL = @REPLACE_STRUCT_TIMEVAL@\nREPLACE_SYMLINK = @REPLACE_SYMLINK@\nREPLACE_SYMLINKAT = @REPLACE_SYMLINKAT@\nREPLACE_TIMEGM = @REPLACE_TIMEGM@\nREPLACE_TMPFILE = @REPLACE_TMPFILE@\nREPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@\nREPLACE_UNLINK = @REPLACE_UNLINK@\nREPLACE_UNLINKAT = @REPLACE_UNLINKAT@\nREPLACE_UNSETENV = @REPLACE_UNSETENV@\nREPLACE_USLEEP = @REPLACE_USLEEP@\nREPLACE_UTIMENSAT = @REPLACE_UTIMENSAT@\nREPLACE_VASPRINTF = @REPLACE_VASPRINTF@\nREPLACE_VDPRINTF = @REPLACE_VDPRINTF@\nREPLACE_VFPRINTF = @REPLACE_VFPRINTF@\nREPLACE_VPRINTF = @REPLACE_VPRINTF@\nREPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@\nREPLACE_VSPRINTF = @REPLACE_VSPRINTF@\nREPLACE_WCTOMB = @REPLACE_WCTOMB@\nREPLACE_WRITE = @REPLACE_WRITE@\nSED = @SED@\nSET_MAKE = @SET_MAKE@\nSHELL = @SHELL@\nSIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@\nSIZE_T_SUFFIX = @SIZE_T_SUFFIX@\nSRCLIBOBJS = @SRCLIBOBJS@\nSTDBOOL_H = @STDBOOL_H@\nSTDDEF_H = @STDDEF_H@\nSTDINT_H = @STDINT_H@\nSTRIP = @STRIP@\nSYS_TIME_H_DEFINES_STRUCT_TIMESPEC = @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@\nTIME_H_DEFINES_STRUCT_TIMESPEC = @TIME_H_DEFINES_STRUCT_TIMESPEC@\nUNDEFINE_STRTOK_R = @UNDEFINE_STRTOK_R@\nUNISTD_H_DEFINES_STRUCT_TIMESPEC = @UNISTD_H_DEFINES_STRUCT_TIMESPEC@\nUNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@\nUNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@\nUSE_EXTRA_ENCODINGS = @USE_EXTRA_ENCODINGS@\nUSE_MBSTATE_T = @USE_MBSTATE_T@\nUSE_NLS = @USE_NLS@\nVERSION = @VERSION@\nWCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@\nWINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@\nWINDOWS_64_BIT_ST_SIZE = @WINDOWS_64_BIT_ST_SIZE@\nWINDRES = @WINDRES@\nWINT_T_SUFFIX = @WINT_T_SUFFIX@\nWOE32 = @WOE32@\nWOE32DLL = @WOE32DLL@\nXGETTEXT = @XGETTEXT@\nXGETTEXT_015 = @XGETTEXT_015@\nXGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@\nabs_builddir = @abs_builddir@\nabs_srcdir = @abs_srcdir@\nabs_top_builddir = @abs_top_builddir@\nabs_top_srcdir = @abs_top_srcdir@\nac_ct_AR = @ac_ct_AR@\nac_ct_CC = @ac_ct_CC@\nac_ct_DUMPBIN = @ac_ct_DUMPBIN@\nam__include = @am__include@\nam__leading_dot = @am__leading_dot@\nam__quote = @am__quote@\nam__tar = @am__tar@\nam__untar = @am__untar@\nbindir = @bindir@\nbuild = @build@\nbuild_alias = @build_alias@\nbuild_cpu = @build_cpu@\nbuild_os = @build_os@\nbuild_vendor = @build_vendor@\nbuilddir = @builddir@\ndatadir = @datadir@\ndatarootdir = @datarootdir@\ndocdir = @docdir@\ndvidir = @dvidir@\nexec_prefix = @exec_prefix@\ngl_LIBOBJS = @gl_LIBOBJS@\ngl_LTLIBOBJS = @gl_LTLIBOBJS@\ngltests_LIBOBJS = @gltests_LIBOBJS@\ngltests_LTLIBOBJS = @gltests_LTLIBOBJS@\ngltests_WITNESS = @gltests_WITNESS@\nhost = @host@\nhost_alias = @host_alias@\nhost_cpu = @host_cpu@\nhost_os = @host_os@\nhost_vendor = @host_vendor@\nhtmldir = @htmldir@\nincludedir = @includedir@\ninfodir = @infodir@\ninstall_sh = @install_sh@\nlibdir = @libdir@\nlibexecdir = @libexecdir@\nlocaledir = @localedir@\nlocalstatedir = @localstatedir@\nmandir = @mandir@\nmkdir_p = @mkdir_p@\noldincludedir = @oldincludedir@\npdfdir = @pdfdir@\nprefix = @prefix@\nprogram_transform_name = @program_transform_name@\npsdir = @psdir@\nsbindir = @sbindir@\nsharedstatedir = @sharedstatedir@\nsrcdir = @srcdir@\nsubdirs = @subdirs@\nsysconfdir = @sysconfdir@\ntarget_alias = @target_alias@\ntop_build_prefix = @top_build_prefix@\ntop_builddir = @top_builddir@\ntop_srcdir = @top_srcdir@\nAUTOMAKE_OPTIONS = 1.5 gnits subdir-objects no-dependencies\n\n# If your project uses \"gettextize --intl\" to put a source-code\n# copy of libintl into the package, every Makefile.am needs\n# -I$(top_builddir)/intl, so that <libintl.h> can be found in this directory.\n# Here's one way to do this:\n#AM_CPPFLAGS += -I$(top_builddir)/intl\n# This option has no effect when the user disables NLS (because then\n# the intl directory contains no libintl.h file).  This option is not\n# enabled by default because the intl directory might not exist if\n# your project does not use \"gettext --intl\", and some compilers\n# complain about -I options applied to nonexistent directories.\nEXTRA_DIST = alloca.in.h allocator.h areadlink.h canonicalize-lgpl.c \\\n\tcareadlinkat.h dirname.h dosname.h errno.in.h error.c error.h \\\n\tfcntl.in.h $(top_srcdir)/build-aux/config.rpath gettimeofday.c \\\n\t$(top_srcdir)/build-aux/config.rpath intprops.h limits.in.h \\\n\tlstat.c malloc.c malloca.h malloca.valgrind msvc-inval.c \\\n\tmsvc-inval.h msvc-nothrow.c msvc-nothrow.h pathmax.h raise.c \\\n\tread.c readlink.c progreloc.c relocatable.c relocatable.h \\\n\t$(top_srcdir)/build-aux/config.libpath \\\n\t$(top_srcdir)/build-aux/reloc-ldflags allocator.c allocator.h \\\n\tareadlink.c areadlink.h c-ctype.c c-ctype.h \\\n\tcanonicalize-lgpl.c careadlinkat.c careadlinkat.h lstat.c \\\n\tmalloca.c malloca.h progname.c progname.h progreloc.c \\\n\treadlink.c relocatable.c relocatable.h relocwrapper.c setenv.c \\\n\tstat.c $(top_srcdir)/build-aux/install-reloc safe-read.h \\\n\tsignal.in.h stdio-write.c sigprocmask.c \\\n\t$(top_srcdir)/build-aux/snippet/_Noreturn.h \\\n\t$(top_srcdir)/build-aux/snippet/arg-nonnull.h \\\n\t$(top_srcdir)/build-aux/snippet/c++defs.h \\\n\t$(top_srcdir)/build-aux/snippet/warn-on-use.h stat.c \\\n\tstdbool.in.h stddef.in.h stdint.in.h stdio.in.h stdlib.in.h \\\n\tstreq.h strerror.c strerror-override.c strerror-override.h \\\n\tstring.in.h sys_stat.in.h sys_time.in.h sys_types.in.h \\\n\ttime.in.h unistd.in.h unitypes.in.h localcharset.h \\\n\tuniwidth.in.h uniwidth/cjk.h unlocked-io.h verify.h \\\n\txalloc-oversized.h xreadlink.h\n\n# The BUILT_SOURCES created by this Makefile snippet are not used via #include\n# statements but through direct file reference. Therefore this snippet must be\n# present in all Makefile.am that need it. This is ensured by the applicability\n# 'all' defined above.\n\n# The BUILT_SOURCES created by this Makefile snippet are not used via #include\n# statements but through direct file reference. Therefore this snippet must be\n# present in all Makefile.am that need it. This is ensured by the applicability\n# 'all' defined above.\nBUILT_SOURCES = $(ALLOCA_H) $(ERRNO_H) fcntl.h $(LIMITS_H) signal.h \\\n\targ-nonnull.h c++defs.h warn-on-use.h $(STDBOOL_H) $(STDDEF_H) \\\n\t$(STDINT_H) stdio.h stdlib.h string.h sys/stat.h sys/time.h \\\n\tsys/types.h time.h unistd.h $(LIBUNISTRING_UNITYPES_H) \\\n\t$(LIBUNISTRING_UNIWIDTH_H)\nMOSTLYCLEANFILES = core *.stackdump core *.stackdump alloca.h \\\n\talloca.h-t errno.h errno.h-t fcntl.h fcntl.h-t limits.h \\\n\tlimits.h-t signal.h signal.h-t arg-nonnull.h arg-nonnull.h-t \\\n\tc++defs.h c++defs.h-t warn-on-use.h warn-on-use.h-t stdbool.h \\\n\tstdbool.h-t stddef.h stddef.h-t stdint.h stdint.h-t stdio.h \\\n\tstdio.h-t stdlib.h stdlib.h-t string.h string.h-t sys/stat.h \\\n\tsys/stat.h-t sys/time.h sys/time.h-t sys/types.h sys/types.h-t \\\n\ttime.h time.h-t unistd.h unistd.h-t unitypes.h unitypes.h-t \\\n\tuniwidth.h uniwidth.h-t\nMOSTLYCLEANDIRS = sys\nnoinst_LIBRARIES = libicrt.a\n\n# Parametrization of the 'relocatable' module.\nAM_CPPFLAGS = -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1\nlibicrt_a_SOURCES = allocator.c areadlink.c binary-io.h binary-io.c \\\n\tcareadlinkat.c dirname-lgpl.c basename-lgpl.c stripslash.c \\\n\tgetprogname.h getprogname.c gettext.h malloca.c progname.h \\\n\tprogname.c safe-read.c unistd.c $(am__append_1) xalloc.h \\\n\txmalloc.c xstrdup.c xreadlink.c\nlibicrt_a_LIBADD = $(gl_LIBOBJS)\nlibicrt_a_DEPENDENCIES = $(gl_LIBOBJS)\nEXTRA_libicrt_a_SOURCES = canonicalize-lgpl.c error.c gettimeofday.c \\\n\tlstat.c malloc.c msvc-inval.c msvc-nothrow.c raise.c read.c \\\n\treadlink.c progreloc.c relocatable.c stdio-write.c \\\n\tsigprocmask.c stat.c strerror.c strerror-override.c\n\n# Use this preprocessor expression to decide whether #include_next works.\n# Do not rely on a 'configure'-time test for this, since the expression\n# might appear in an installed header, which is used by some other compiler.\nHAVE_INCLUDE_NEXT = (__GNUC__ || 60000000 <= __DECC_VER)\n\n# Because this Makefile snippet defines a variable used by other\n# gnulib Makefile snippets, it must be present in all Makefile.am that\n# need it. This is ensured by the applicability 'all' defined above.\n_NORETURN_H = $(top_srcdir)/build-aux/snippet/_Noreturn.h\nARG_NONNULL_H = arg-nonnull.h\nCXXDEFS_H = c++defs.h\nWARN_ON_USE_H = warn-on-use.h\nall: $(BUILT_SOURCES)\n\t$(MAKE) $(AM_MAKEFLAGS) all-am\n\n.SUFFIXES:\n.SUFFIXES: .c .lo .o .obj\n$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(srcdir)/Makefile.gnulib $(am__configure_deps)\n\t@for dep in $?; do \\\n\t  case '$(am__configure_deps)' in \\\n\t    *$$dep*) \\\n\t      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \\\n\t        && { if test -f $@; then exit 0; else break; fi; }; \\\n\t      exit 1;; \\\n\t  esac; \\\n\tdone; \\\n\techo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits srclib/Makefile'; \\\n\t$(am__cd) $(top_srcdir) && \\\n\t  $(AUTOMAKE) --gnits srclib/Makefile\nMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status\n\t@case '$?' in \\\n\t  *config.status*) \\\n\t    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \\\n\t  *) \\\n\t    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \\\n\t    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \\\n\tesac;\n$(srcdir)/Makefile.gnulib $(am__empty):\n\n$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)\n\tcd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh\n\n$(top_srcdir)/configure:  $(am__configure_deps)\n\tcd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh\n$(ACLOCAL_M4):  $(am__aclocal_m4_deps)\n\tcd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh\n$(am__aclocal_m4_deps):\n\nclean-noinstLIBRARIES:\n\t-test -z \"$(noinst_LIBRARIES)\" || rm -f $(noinst_LIBRARIES)\nuniwidth/$(am__dirstamp):\n\t@$(MKDIR_P) uniwidth\n\t@: > uniwidth/$(am__dirstamp)\nuniwidth/width.$(OBJEXT): uniwidth/$(am__dirstamp)\n\nlibicrt.a: $(libicrt_a_OBJECTS) $(libicrt_a_DEPENDENCIES) $(EXTRA_libicrt_a_DEPENDENCIES) \n\t$(AM_V_at)-rm -f libicrt.a\n\t$(AM_V_AR)$(libicrt_a_AR) libicrt.a $(libicrt_a_OBJECTS) $(libicrt_a_LIBADD)\n\t$(AM_V_at)$(RANLIB) libicrt.a\n\nmostlyclean-compile:\n\t-rm -f *.$(OBJEXT)\n\t-rm -f uniwidth/*.$(OBJEXT)\n\ndistclean-compile:\n\t-rm -f *.tab.c\n\n.c.o:\n\t$(AM_V_CC)$(COMPILE) -c -o $@ $<\n\n.c.obj:\n\t$(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`\n\n.c.lo:\n\t$(AM_V_CC)$(LTCOMPILE) -c -o $@ $<\n\nmostlyclean-libtool:\n\t-rm -f *.lo\n\nclean-libtool:\n\t-rm -rf .libs _libs\n\nID: $(am__tagged_files)\n\t$(am__define_uniq_tagged_files); mkid -fID $$unique\ntags: tags-am\nTAGS: tags\n\ntags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)\n\tset x; \\\n\there=`pwd`; \\\n\t$(am__define_uniq_tagged_files); \\\n\tshift; \\\n\tif test -z \"$(ETAGS_ARGS)$$*$$unique\"; then :; else \\\n\t  test -n \"$$unique\" || unique=$$empty_fix; \\\n\t  if test $$# -gt 0; then \\\n\t    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \\\n\t      \"$$@\" $$unique; \\\n\t  else \\\n\t    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \\\n\t      $$unique; \\\n\t  fi; \\\n\tfi\nctags: ctags-am\n\nCTAGS: ctags\nctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)\n\t$(am__define_uniq_tagged_files); \\\n\ttest -z \"$(CTAGS_ARGS)$$unique\" \\\n\t  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \\\n\t     $$unique\n\nGTAGS:\n\there=`$(am__cd) $(top_builddir) && pwd` \\\n\t  && $(am__cd) $(top_srcdir) \\\n\t  && gtags -i $(GTAGS_ARGS) \"$$here\"\ncscopelist: cscopelist-am\n\ncscopelist-am: $(am__tagged_files)\n\tlist='$(am__tagged_files)'; \\\n\tcase \"$(srcdir)\" in \\\n\t  [\\\\/]* | ?:[\\\\/]*) sdir=\"$(srcdir)\" ;; \\\n\t  *) sdir=$(subdir)/$(srcdir) ;; \\\n\tesac; \\\n\tfor i in $$list; do \\\n\t  if test -f \"$$i\"; then \\\n\t    echo \"$(subdir)/$$i\"; \\\n\t  else \\\n\t    echo \"$$sdir/$$i\"; \\\n\t  fi; \\\n\tdone >> $(top_builddir)/cscope.files\n\ndistclean-tags:\n\t-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags\n\ndistdir: $(DISTFILES)\n\t@srcdirstrip=`echo \"$(srcdir)\" | sed 's/[].[^$$\\\\*]/\\\\\\\\&/g'`; \\\n\ttopsrcdirstrip=`echo \"$(top_srcdir)\" | sed 's/[].[^$$\\\\*]/\\\\\\\\&/g'`; \\\n\tlist='$(DISTFILES)'; \\\n\t  dist_files=`for file in $$list; do echo $$file; done | \\\n\t  sed -e \"s|^$$srcdirstrip/||;t\" \\\n\t      -e \"s|^$$topsrcdirstrip/|$(top_builddir)/|;t\"`; \\\n\tcase $$dist_files in \\\n\t  */*) $(MKDIR_P) `echo \"$$dist_files\" | \\\n\t\t\t   sed '/\\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \\\n\t\t\t   sort -u` ;; \\\n\tesac; \\\n\tfor file in $$dist_files; do \\\n\t  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \\\n\t  if test -d $$d/$$file; then \\\n\t    dir=`echo \"/$$file\" | sed -e 's,/[^/]*$$,,'`; \\\n\t    if test -d \"$(distdir)/$$file\"; then \\\n\t      find \"$(distdir)/$$file\" -type d ! -perm -700 -exec chmod u+rwx {} \\;; \\\n\t    fi; \\\n\t    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \\\n\t      cp -fpR $(srcdir)/$$file \"$(distdir)$$dir\" || exit 1; \\\n\t      find \"$(distdir)/$$file\" -type d ! -perm -700 -exec chmod u+rwx {} \\;; \\\n\t    fi; \\\n\t    cp -fpR $$d/$$file \"$(distdir)$$dir\" || exit 1; \\\n\t  else \\\n\t    test -f \"$(distdir)/$$file\" \\\n\t    || cp -p $$d/$$file \"$(distdir)/$$file\" \\\n\t    || exit 1; \\\n\t  fi; \\\n\tdone\ncheck-am: all-am\ncheck: $(BUILT_SOURCES)\n\t$(MAKE) $(AM_MAKEFLAGS) check-am\nall-am: Makefile $(LIBRARIES)\ninstalldirs:\ninstall: $(BUILT_SOURCES)\n\t$(MAKE) $(AM_MAKEFLAGS) install-am\ninstall-exec: install-exec-am\ninstall-data: install-data-am\nuninstall: uninstall-am\n\ninstall-am: all-am\n\t@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am\n\ninstallcheck: installcheck-am\ninstall-strip:\n\tif test -z '$(STRIP)'; then \\\n\t  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM=\"$(INSTALL_STRIP_PROGRAM)\" \\\n\t    install_sh_PROGRAM=\"$(INSTALL_STRIP_PROGRAM)\" INSTALL_STRIP_FLAG=-s \\\n\t      install; \\\n\telse \\\n\t  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM=\"$(INSTALL_STRIP_PROGRAM)\" \\\n\t    install_sh_PROGRAM=\"$(INSTALL_STRIP_PROGRAM)\" INSTALL_STRIP_FLAG=-s \\\n\t    \"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'\" install; \\\n\tfi\nmostlyclean-generic:\n\t-test -z \"$(MOSTLYCLEANFILES)\" || rm -f $(MOSTLYCLEANFILES)\n\nclean-generic:\n\ndistclean-generic:\n\t-test -z \"$(CONFIG_CLEAN_FILES)\" || rm -f $(CONFIG_CLEAN_FILES)\n\t-test . = \"$(srcdir)\" || test -z \"$(CONFIG_CLEAN_VPATH_FILES)\" || rm -f $(CONFIG_CLEAN_VPATH_FILES)\n\t-rm -f uniwidth/$(am__dirstamp)\n\nmaintainer-clean-generic:\n\t@echo \"This command is intended for maintainers to use\"\n\t@echo \"it deletes files that may require special tools to rebuild.\"\n\t-test -z \"$(BUILT_SOURCES)\" || rm -f $(BUILT_SOURCES)\n@RELOCATABLE_VIA_WRAPPER_FALSE@uninstall-hook:\nclean: clean-am\n\nclean-am: clean-generic clean-libtool clean-noinstLIBRARIES \\\n\tmostlyclean-am\n\ndistclean: distclean-am\n\t-rm -f Makefile\ndistclean-am: clean-am distclean-compile distclean-generic \\\n\tdistclean-tags\n\ndvi: dvi-am\n\ndvi-am:\n\nhtml: html-am\n\nhtml-am:\n\ninfo: info-am\n\ninfo-am:\n\ninstall-data-am:\n\ninstall-dvi: install-dvi-am\n\ninstall-dvi-am:\n\ninstall-exec-am:\n\ninstall-html: install-html-am\n\ninstall-html-am:\n\ninstall-info: install-info-am\n\ninstall-info-am:\n\ninstall-man:\n\ninstall-pdf: install-pdf-am\n\ninstall-pdf-am:\n\ninstall-ps: install-ps-am\n\ninstall-ps-am:\n\ninstallcheck-am:\n\nmaintainer-clean: maintainer-clean-am\n\t-rm -f Makefile\nmaintainer-clean-am: distclean-am maintainer-clean-generic\n\nmostlyclean: mostlyclean-am\n\nmostlyclean-am: mostlyclean-compile mostlyclean-generic \\\n\tmostlyclean-libtool mostlyclean-local\n\npdf: pdf-am\n\npdf-am:\n\nps: ps-am\n\nps-am:\n\nuninstall-am:\n\t@$(NORMAL_INSTALL)\n\t$(MAKE) $(AM_MAKEFLAGS) uninstall-hook\n.MAKE: all check install install-am install-strip uninstall-am\n\n.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \\\n\tclean-libtool clean-noinstLIBRARIES cscopelist-am ctags \\\n\tctags-am distclean distclean-compile distclean-generic \\\n\tdistclean-libtool distclean-tags distdir dvi dvi-am html \\\n\thtml-am info info-am install install-am install-data \\\n\tinstall-data-am install-dvi install-dvi-am install-exec \\\n\tinstall-exec-am install-html install-html-am install-info \\\n\tinstall-info-am install-man install-pdf install-pdf-am \\\n\tinstall-ps install-ps-am install-strip installcheck \\\n\tinstallcheck-am installdirs maintainer-clean \\\n\tmaintainer-clean-generic mostlyclean mostlyclean-compile \\\n\tmostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \\\n\tpdf-am ps ps-am tags tags-am uninstall uninstall-am \\\n\tuninstall-hook\n\n.PRECIOUS: Makefile\n\n\n# We need the following in order to create <alloca.h> when the system\n# doesn't have one that works with the given compiler.\n@GL_GENERATE_ALLOCA_H_TRUE@alloca.h: alloca.in.h $(top_builddir)/config.status\n@GL_GENERATE_ALLOCA_H_TRUE@\t$(AM_V_GEN)rm -f $@-t $@ && \\\n@GL_GENERATE_ALLOCA_H_TRUE@\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n@GL_GENERATE_ALLOCA_H_TRUE@\t  cat $(srcdir)/alloca.in.h; \\\n@GL_GENERATE_ALLOCA_H_TRUE@\t} > $@-t && \\\n@GL_GENERATE_ALLOCA_H_TRUE@\tmv -f $@-t $@\n@GL_GENERATE_ALLOCA_H_FALSE@alloca.h: $(top_builddir)/config.status\n@GL_GENERATE_ALLOCA_H_FALSE@\trm -f $@\n\n# We need the following in order to create <errno.h> when the system\n# doesn't have one that is POSIX compliant.\n@GL_GENERATE_ERRNO_H_TRUE@errno.h: errno.in.h $(top_builddir)/config.status\n@GL_GENERATE_ERRNO_H_TRUE@\t$(AM_V_GEN)rm -f $@-t $@ && \\\n@GL_GENERATE_ERRNO_H_TRUE@\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n@GL_GENERATE_ERRNO_H_TRUE@\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n@GL_GENERATE_ERRNO_H_TRUE@\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n@GL_GENERATE_ERRNO_H_TRUE@\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n@GL_GENERATE_ERRNO_H_TRUE@\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n@GL_GENERATE_ERRNO_H_TRUE@\t      -e 's|@''NEXT_ERRNO_H''@|$(NEXT_ERRNO_H)|g' \\\n@GL_GENERATE_ERRNO_H_TRUE@\t      -e 's|@''EMULTIHOP_HIDDEN''@|$(EMULTIHOP_HIDDEN)|g' \\\n@GL_GENERATE_ERRNO_H_TRUE@\t      -e 's|@''EMULTIHOP_VALUE''@|$(EMULTIHOP_VALUE)|g' \\\n@GL_GENERATE_ERRNO_H_TRUE@\t      -e 's|@''ENOLINK_HIDDEN''@|$(ENOLINK_HIDDEN)|g' \\\n@GL_GENERATE_ERRNO_H_TRUE@\t      -e 's|@''ENOLINK_VALUE''@|$(ENOLINK_VALUE)|g' \\\n@GL_GENERATE_ERRNO_H_TRUE@\t      -e 's|@''EOVERFLOW_HIDDEN''@|$(EOVERFLOW_HIDDEN)|g' \\\n@GL_GENERATE_ERRNO_H_TRUE@\t      -e 's|@''EOVERFLOW_VALUE''@|$(EOVERFLOW_VALUE)|g' \\\n@GL_GENERATE_ERRNO_H_TRUE@\t      < $(srcdir)/errno.in.h; \\\n@GL_GENERATE_ERRNO_H_TRUE@\t} > $@-t && \\\n@GL_GENERATE_ERRNO_H_TRUE@\tmv $@-t $@\n@GL_GENERATE_ERRNO_H_FALSE@errno.h: $(top_builddir)/config.status\n@GL_GENERATE_ERRNO_H_FALSE@\trm -f $@\n\n# We need the following in order to create <fcntl.h> when the system\n# doesn't have one that works with the given compiler.\nfcntl.h: fcntl.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_FCNTL_H''@|$(NEXT_FCNTL_H)|g' \\\n\t      -e 's/@''GNULIB_FCNTL''@/$(GNULIB_FCNTL)/g' \\\n\t      -e 's/@''GNULIB_NONBLOCKING''@/$(GNULIB_NONBLOCKING)/g' \\\n\t      -e 's/@''GNULIB_OPEN''@/$(GNULIB_OPEN)/g' \\\n\t      -e 's/@''GNULIB_OPENAT''@/$(GNULIB_OPENAT)/g' \\\n\t      -e 's|@''HAVE_FCNTL''@|$(HAVE_FCNTL)|g' \\\n\t      -e 's|@''HAVE_OPENAT''@|$(HAVE_OPENAT)|g' \\\n\t      -e 's|@''REPLACE_FCNTL''@|$(REPLACE_FCNTL)|g' \\\n\t      -e 's|@''REPLACE_OPEN''@|$(REPLACE_OPEN)|g' \\\n\t      -e 's|@''REPLACE_OPENAT''@|$(REPLACE_OPENAT)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/fcntl.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <limits.h> when the system\n# doesn't have one that is compatible with GNU.\n@GL_GENERATE_LIMITS_H_TRUE@limits.h: limits.in.h $(top_builddir)/config.status\n@GL_GENERATE_LIMITS_H_TRUE@\t$(AM_V_GEN)rm -f $@-t $@ && \\\n@GL_GENERATE_LIMITS_H_TRUE@\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n@GL_GENERATE_LIMITS_H_TRUE@\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n@GL_GENERATE_LIMITS_H_TRUE@\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n@GL_GENERATE_LIMITS_H_TRUE@\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n@GL_GENERATE_LIMITS_H_TRUE@\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n@GL_GENERATE_LIMITS_H_TRUE@\t      -e 's|@''NEXT_LIMITS_H''@|$(NEXT_LIMITS_H)|g' \\\n@GL_GENERATE_LIMITS_H_TRUE@\t      < $(srcdir)/limits.in.h; \\\n@GL_GENERATE_LIMITS_H_TRUE@\t} > $@-t && \\\n@GL_GENERATE_LIMITS_H_TRUE@\tmv $@-t $@\n@GL_GENERATE_LIMITS_H_FALSE@limits.h: $(top_builddir)/config.status\n@GL_GENERATE_LIMITS_H_FALSE@\trm -f $@\n@RELOCATABLE_VIA_WRAPPER_TRUE@uninstall-hook: uninstall-relocwrapper\n@RELOCATABLE_VIA_WRAPPER_TRUE@uninstall-relocwrapper:\n@RELOCATABLE_VIA_WRAPPER_TRUE@\tif test $(RELOCATABLE) = yes; then \\\n@RELOCATABLE_VIA_WRAPPER_TRUE@\t  case '$(EXEEXT)' in \\\n@RELOCATABLE_VIA_WRAPPER_TRUE@\t    .bin*) ;; \\\n@RELOCATABLE_VIA_WRAPPER_TRUE@\t    *) cd $(top_builddir) && \\\n@RELOCATABLE_VIA_WRAPPER_TRUE@\t       $(MAKE) $(AM_MAKEFLAGS) EXEEXT=.bin$(EXEEXT) \\\n@RELOCATABLE_VIA_WRAPPER_TRUE@\t\t       AM_MAKEFLAGS='$(AM_MAKEFLAGS) EXEEXT=.bin$(EXEEXT)' \\\n@RELOCATABLE_VIA_WRAPPER_TRUE@\t\t       uninstall ;; \\\n@RELOCATABLE_VIA_WRAPPER_TRUE@\t  esac; \\\n@RELOCATABLE_VIA_WRAPPER_TRUE@\tfi\n@RELOCATABLE_VIA_WRAPPER_TRUE@.PHONY: uninstall-relocwrapper\n\n# We need the following in order to create <signal.h> when the system\n# doesn't have a complete one.\nsignal.h: signal.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_SIGNAL_H''@|$(NEXT_SIGNAL_H)|g' \\\n\t      -e 's|@''GNULIB_PTHREAD_SIGMASK''@|$(GNULIB_PTHREAD_SIGMASK)|g' \\\n\t      -e 's|@''GNULIB_RAISE''@|$(GNULIB_RAISE)|g' \\\n\t      -e 's/@''GNULIB_SIGNAL_H_SIGPIPE''@/$(GNULIB_SIGNAL_H_SIGPIPE)/g' \\\n\t      -e 's/@''GNULIB_SIGPROCMASK''@/$(GNULIB_SIGPROCMASK)/g' \\\n\t      -e 's/@''GNULIB_SIGACTION''@/$(GNULIB_SIGACTION)/g' \\\n\t      -e 's|@''HAVE_POSIX_SIGNALBLOCKING''@|$(HAVE_POSIX_SIGNALBLOCKING)|g' \\\n\t      -e 's|@''HAVE_PTHREAD_SIGMASK''@|$(HAVE_PTHREAD_SIGMASK)|g' \\\n\t      -e 's|@''HAVE_RAISE''@|$(HAVE_RAISE)|g' \\\n\t      -e 's|@''HAVE_SIGSET_T''@|$(HAVE_SIGSET_T)|g' \\\n\t      -e 's|@''HAVE_SIGINFO_T''@|$(HAVE_SIGINFO_T)|g' \\\n\t      -e 's|@''HAVE_SIGACTION''@|$(HAVE_SIGACTION)|g' \\\n\t      -e 's|@''HAVE_STRUCT_SIGACTION_SA_SIGACTION''@|$(HAVE_STRUCT_SIGACTION_SA_SIGACTION)|g' \\\n\t      -e 's|@''HAVE_TYPE_VOLATILE_SIG_ATOMIC_T''@|$(HAVE_TYPE_VOLATILE_SIG_ATOMIC_T)|g' \\\n\t      -e 's|@''HAVE_SIGHANDLER_T''@|$(HAVE_SIGHANDLER_T)|g' \\\n\t      -e 's|@''REPLACE_PTHREAD_SIGMASK''@|$(REPLACE_PTHREAD_SIGMASK)|g' \\\n\t      -e 's|@''REPLACE_RAISE''@|$(REPLACE_RAISE)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/signal.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n# The arg-nonnull.h that gets inserted into generated .h files is the same as\n# build-aux/snippet/arg-nonnull.h, except that it has the copyright header cut\n# off.\narg-nonnull.h: $(top_srcdir)/build-aux/snippet/arg-nonnull.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\tsed -n -e '/GL_ARG_NONNULL/,$$p' \\\n\t  < $(top_srcdir)/build-aux/snippet/arg-nonnull.h \\\n\t  > $@-t && \\\n\tmv $@-t $@\n# The c++defs.h that gets inserted into generated .h files is the same as\n# build-aux/snippet/c++defs.h, except that it has the copyright header cut off.\nc++defs.h: $(top_srcdir)/build-aux/snippet/c++defs.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\tsed -n -e '/_GL_CXXDEFS/,$$p' \\\n\t  < $(top_srcdir)/build-aux/snippet/c++defs.h \\\n\t  > $@-t && \\\n\tmv $@-t $@\n# The warn-on-use.h that gets inserted into generated .h files is the same as\n# build-aux/snippet/warn-on-use.h, except that it has the copyright header cut\n# off.\nwarn-on-use.h: $(top_srcdir)/build-aux/snippet/warn-on-use.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\tsed -n -e '/^.ifndef/,$$p' \\\n\t  < $(top_srcdir)/build-aux/snippet/warn-on-use.h \\\n\t  > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <stdbool.h> when the system\n# doesn't have one that works.\n@GL_GENERATE_STDBOOL_H_TRUE@stdbool.h: stdbool.in.h $(top_builddir)/config.status\n@GL_GENERATE_STDBOOL_H_TRUE@\t$(AM_V_GEN)rm -f $@-t $@ && \\\n@GL_GENERATE_STDBOOL_H_TRUE@\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n@GL_GENERATE_STDBOOL_H_TRUE@\t  sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool.in.h; \\\n@GL_GENERATE_STDBOOL_H_TRUE@\t} > $@-t && \\\n@GL_GENERATE_STDBOOL_H_TRUE@\tmv $@-t $@\n@GL_GENERATE_STDBOOL_H_FALSE@stdbool.h: $(top_builddir)/config.status\n@GL_GENERATE_STDBOOL_H_FALSE@\trm -f $@\n\n# We need the following in order to create <stddef.h> when the system\n# doesn't have one that works with the given compiler.\n@GL_GENERATE_STDDEF_H_TRUE@stddef.h: stddef.in.h $(top_builddir)/config.status\n@GL_GENERATE_STDDEF_H_TRUE@\t$(AM_V_GEN)rm -f $@-t $@ && \\\n@GL_GENERATE_STDDEF_H_TRUE@\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n@GL_GENERATE_STDDEF_H_TRUE@\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n@GL_GENERATE_STDDEF_H_TRUE@\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n@GL_GENERATE_STDDEF_H_TRUE@\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n@GL_GENERATE_STDDEF_H_TRUE@\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n@GL_GENERATE_STDDEF_H_TRUE@\t      -e 's|@''NEXT_STDDEF_H''@|$(NEXT_STDDEF_H)|g' \\\n@GL_GENERATE_STDDEF_H_TRUE@\t      -e 's|@''HAVE_MAX_ALIGN_T''@|$(HAVE_MAX_ALIGN_T)|g' \\\n@GL_GENERATE_STDDEF_H_TRUE@\t      -e 's|@''HAVE_WCHAR_T''@|$(HAVE_WCHAR_T)|g' \\\n@GL_GENERATE_STDDEF_H_TRUE@\t      -e 's|@''REPLACE_NULL''@|$(REPLACE_NULL)|g' \\\n@GL_GENERATE_STDDEF_H_TRUE@\t      < $(srcdir)/stddef.in.h; \\\n@GL_GENERATE_STDDEF_H_TRUE@\t} > $@-t && \\\n@GL_GENERATE_STDDEF_H_TRUE@\tmv $@-t $@\n@GL_GENERATE_STDDEF_H_FALSE@stddef.h: $(top_builddir)/config.status\n@GL_GENERATE_STDDEF_H_FALSE@\trm -f $@\n\n# We need the following in order to create <stdint.h> when the system\n# doesn't have one that works with the given compiler.\n@GL_GENERATE_STDINT_H_TRUE@stdint.h: stdint.in.h $(top_builddir)/config.status\n@GL_GENERATE_STDINT_H_TRUE@\t$(AM_V_GEN)rm -f $@-t $@ && \\\n@GL_GENERATE_STDINT_H_TRUE@\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n@GL_GENERATE_STDINT_H_TRUE@\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's|@''NEXT_STDINT_H''@|$(NEXT_STDINT_H)|g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_C99_STDINT_H''@/$(HAVE_C99_STDINT_H)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_WCHAR_H''@/$(HAVE_WCHAR_H)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''APPLE_UNIVERSAL_BUILD''@/$(APPLE_UNIVERSAL_BUILD)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      -e 's/@''GNULIB_OVERRIDES_WINT_T''@/$(GNULIB_OVERRIDES_WINT_T)/g' \\\n@GL_GENERATE_STDINT_H_TRUE@\t      < $(srcdir)/stdint.in.h; \\\n@GL_GENERATE_STDINT_H_TRUE@\t} > $@-t && \\\n@GL_GENERATE_STDINT_H_TRUE@\tmv $@-t $@\n@GL_GENERATE_STDINT_H_FALSE@stdint.h: $(top_builddir)/config.status\n@GL_GENERATE_STDINT_H_FALSE@\trm -f $@\n\n# We need the following in order to create <stdio.h> when the system\n# doesn't have one that works with the given compiler.\nstdio.h: stdio.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_STDIO_H''@|$(NEXT_STDIO_H)|g' \\\n\t      -e 's/@''GNULIB_DPRINTF''@/$(GNULIB_DPRINTF)/g' \\\n\t      -e 's/@''GNULIB_FCLOSE''@/$(GNULIB_FCLOSE)/g' \\\n\t      -e 's/@''GNULIB_FDOPEN''@/$(GNULIB_FDOPEN)/g' \\\n\t      -e 's/@''GNULIB_FFLUSH''@/$(GNULIB_FFLUSH)/g' \\\n\t      -e 's/@''GNULIB_FGETC''@/$(GNULIB_FGETC)/g' \\\n\t      -e 's/@''GNULIB_FGETS''@/$(GNULIB_FGETS)/g' \\\n\t      -e 's/@''GNULIB_FOPEN''@/$(GNULIB_FOPEN)/g' \\\n\t      -e 's/@''GNULIB_FPRINTF''@/$(GNULIB_FPRINTF)/g' \\\n\t      -e 's/@''GNULIB_FPRINTF_POSIX''@/$(GNULIB_FPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_FPURGE''@/$(GNULIB_FPURGE)/g' \\\n\t      -e 's/@''GNULIB_FPUTC''@/$(GNULIB_FPUTC)/g' \\\n\t      -e 's/@''GNULIB_FPUTS''@/$(GNULIB_FPUTS)/g' \\\n\t      -e 's/@''GNULIB_FREAD''@/$(GNULIB_FREAD)/g' \\\n\t      -e 's/@''GNULIB_FREOPEN''@/$(GNULIB_FREOPEN)/g' \\\n\t      -e 's/@''GNULIB_FSCANF''@/$(GNULIB_FSCANF)/g' \\\n\t      -e 's/@''GNULIB_FSEEK''@/$(GNULIB_FSEEK)/g' \\\n\t      -e 's/@''GNULIB_FSEEKO''@/$(GNULIB_FSEEKO)/g' \\\n\t      -e 's/@''GNULIB_FTELL''@/$(GNULIB_FTELL)/g' \\\n\t      -e 's/@''GNULIB_FTELLO''@/$(GNULIB_FTELLO)/g' \\\n\t      -e 's/@''GNULIB_FWRITE''@/$(GNULIB_FWRITE)/g' \\\n\t      -e 's/@''GNULIB_GETC''@/$(GNULIB_GETC)/g' \\\n\t      -e 's/@''GNULIB_GETCHAR''@/$(GNULIB_GETCHAR)/g' \\\n\t      -e 's/@''GNULIB_GETDELIM''@/$(GNULIB_GETDELIM)/g' \\\n\t      -e 's/@''GNULIB_GETLINE''@/$(GNULIB_GETLINE)/g' \\\n\t      -e 's/@''GNULIB_OBSTACK_PRINTF''@/$(GNULIB_OBSTACK_PRINTF)/g' \\\n\t      -e 's/@''GNULIB_OBSTACK_PRINTF_POSIX''@/$(GNULIB_OBSTACK_PRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_PCLOSE''@/$(GNULIB_PCLOSE)/g' \\\n\t      -e 's/@''GNULIB_PERROR''@/$(GNULIB_PERROR)/g' \\\n\t      -e 's/@''GNULIB_POPEN''@/$(GNULIB_POPEN)/g' \\\n\t      -e 's/@''GNULIB_PRINTF''@/$(GNULIB_PRINTF)/g' \\\n\t      -e 's/@''GNULIB_PRINTF_POSIX''@/$(GNULIB_PRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_PUTC''@/$(GNULIB_PUTC)/g' \\\n\t      -e 's/@''GNULIB_PUTCHAR''@/$(GNULIB_PUTCHAR)/g' \\\n\t      -e 's/@''GNULIB_PUTS''@/$(GNULIB_PUTS)/g' \\\n\t      -e 's/@''GNULIB_REMOVE''@/$(GNULIB_REMOVE)/g' \\\n\t      -e 's/@''GNULIB_RENAME''@/$(GNULIB_RENAME)/g' \\\n\t      -e 's/@''GNULIB_RENAMEAT''@/$(GNULIB_RENAMEAT)/g' \\\n\t      -e 's/@''GNULIB_SCANF''@/$(GNULIB_SCANF)/g' \\\n\t      -e 's/@''GNULIB_SNPRINTF''@/$(GNULIB_SNPRINTF)/g' \\\n\t      -e 's/@''GNULIB_SPRINTF_POSIX''@/$(GNULIB_SPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_STDIO_H_NONBLOCKING''@/$(GNULIB_STDIO_H_NONBLOCKING)/g' \\\n\t      -e 's/@''GNULIB_STDIO_H_SIGPIPE''@/$(GNULIB_STDIO_H_SIGPIPE)/g' \\\n\t      -e 's/@''GNULIB_TMPFILE''@/$(GNULIB_TMPFILE)/g' \\\n\t      -e 's/@''GNULIB_VASPRINTF''@/$(GNULIB_VASPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VDPRINTF''@/$(GNULIB_VDPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VFPRINTF''@/$(GNULIB_VFPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VFPRINTF_POSIX''@/$(GNULIB_VFPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_VFSCANF''@/$(GNULIB_VFSCANF)/g' \\\n\t      -e 's/@''GNULIB_VSCANF''@/$(GNULIB_VSCANF)/g' \\\n\t      -e 's/@''GNULIB_VPRINTF''@/$(GNULIB_VPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VPRINTF_POSIX''@/$(GNULIB_VPRINTF_POSIX)/g' \\\n\t      -e 's/@''GNULIB_VSNPRINTF''@/$(GNULIB_VSNPRINTF)/g' \\\n\t      -e 's/@''GNULIB_VSPRINTF_POSIX''@/$(GNULIB_VSPRINTF_POSIX)/g' \\\n\t      < $(srcdir)/stdio.in.h | \\\n\t  sed -e 's|@''HAVE_DECL_FPURGE''@|$(HAVE_DECL_FPURGE)|g' \\\n\t      -e 's|@''HAVE_DECL_FSEEKO''@|$(HAVE_DECL_FSEEKO)|g' \\\n\t      -e 's|@''HAVE_DECL_FTELLO''@|$(HAVE_DECL_FTELLO)|g' \\\n\t      -e 's|@''HAVE_DECL_GETDELIM''@|$(HAVE_DECL_GETDELIM)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLINE''@|$(HAVE_DECL_GETLINE)|g' \\\n\t      -e 's|@''HAVE_DECL_OBSTACK_PRINTF''@|$(HAVE_DECL_OBSTACK_PRINTF)|g' \\\n\t      -e 's|@''HAVE_DECL_SNPRINTF''@|$(HAVE_DECL_SNPRINTF)|g' \\\n\t      -e 's|@''HAVE_DECL_VSNPRINTF''@|$(HAVE_DECL_VSNPRINTF)|g' \\\n\t      -e 's|@''HAVE_DPRINTF''@|$(HAVE_DPRINTF)|g' \\\n\t      -e 's|@''HAVE_FSEEKO''@|$(HAVE_FSEEKO)|g' \\\n\t      -e 's|@''HAVE_FTELLO''@|$(HAVE_FTELLO)|g' \\\n\t      -e 's|@''HAVE_PCLOSE''@|$(HAVE_PCLOSE)|g' \\\n\t      -e 's|@''HAVE_POPEN''@|$(HAVE_POPEN)|g' \\\n\t      -e 's|@''HAVE_RENAMEAT''@|$(HAVE_RENAMEAT)|g' \\\n\t      -e 's|@''HAVE_VASPRINTF''@|$(HAVE_VASPRINTF)|g' \\\n\t      -e 's|@''HAVE_VDPRINTF''@|$(HAVE_VDPRINTF)|g' \\\n\t      -e 's|@''REPLACE_DPRINTF''@|$(REPLACE_DPRINTF)|g' \\\n\t      -e 's|@''REPLACE_FCLOSE''@|$(REPLACE_FCLOSE)|g' \\\n\t      -e 's|@''REPLACE_FDOPEN''@|$(REPLACE_FDOPEN)|g' \\\n\t      -e 's|@''REPLACE_FFLUSH''@|$(REPLACE_FFLUSH)|g' \\\n\t      -e 's|@''REPLACE_FOPEN''@|$(REPLACE_FOPEN)|g' \\\n\t      -e 's|@''REPLACE_FPRINTF''@|$(REPLACE_FPRINTF)|g' \\\n\t      -e 's|@''REPLACE_FPURGE''@|$(REPLACE_FPURGE)|g' \\\n\t      -e 's|@''REPLACE_FREOPEN''@|$(REPLACE_FREOPEN)|g' \\\n\t      -e 's|@''REPLACE_FSEEK''@|$(REPLACE_FSEEK)|g' \\\n\t      -e 's|@''REPLACE_FSEEKO''@|$(REPLACE_FSEEKO)|g' \\\n\t      -e 's|@''REPLACE_FTELL''@|$(REPLACE_FTELL)|g' \\\n\t      -e 's|@''REPLACE_FTELLO''@|$(REPLACE_FTELLO)|g' \\\n\t      -e 's|@''REPLACE_GETDELIM''@|$(REPLACE_GETDELIM)|g' \\\n\t      -e 's|@''REPLACE_GETLINE''@|$(REPLACE_GETLINE)|g' \\\n\t      -e 's|@''REPLACE_OBSTACK_PRINTF''@|$(REPLACE_OBSTACK_PRINTF)|g' \\\n\t      -e 's|@''REPLACE_PERROR''@|$(REPLACE_PERROR)|g' \\\n\t      -e 's|@''REPLACE_POPEN''@|$(REPLACE_POPEN)|g' \\\n\t      -e 's|@''REPLACE_PRINTF''@|$(REPLACE_PRINTF)|g' \\\n\t      -e 's|@''REPLACE_REMOVE''@|$(REPLACE_REMOVE)|g' \\\n\t      -e 's|@''REPLACE_RENAME''@|$(REPLACE_RENAME)|g' \\\n\t      -e 's|@''REPLACE_RENAMEAT''@|$(REPLACE_RENAMEAT)|g' \\\n\t      -e 's|@''REPLACE_SNPRINTF''@|$(REPLACE_SNPRINTF)|g' \\\n\t      -e 's|@''REPLACE_SPRINTF''@|$(REPLACE_SPRINTF)|g' \\\n\t      -e 's|@''REPLACE_STDIO_READ_FUNCS''@|$(REPLACE_STDIO_READ_FUNCS)|g' \\\n\t      -e 's|@''REPLACE_STDIO_WRITE_FUNCS''@|$(REPLACE_STDIO_WRITE_FUNCS)|g' \\\n\t      -e 's|@''REPLACE_TMPFILE''@|$(REPLACE_TMPFILE)|g' \\\n\t      -e 's|@''REPLACE_VASPRINTF''@|$(REPLACE_VASPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VDPRINTF''@|$(REPLACE_VDPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VFPRINTF''@|$(REPLACE_VFPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VPRINTF''@|$(REPLACE_VPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VSNPRINTF''@|$(REPLACE_VSNPRINTF)|g' \\\n\t      -e 's|@''REPLACE_VSPRINTF''@|$(REPLACE_VSPRINTF)|g' \\\n\t      -e 's|@''ASM_SYMBOL_PREFIX''@|$(ASM_SYMBOL_PREFIX)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <stdlib.h> when the system\n# doesn't have one that works with the given compiler.\nstdlib.h: stdlib.in.h $(top_builddir)/config.status $(CXXDEFS_H) \\\n  $(_NORETURN_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_STDLIB_H''@|$(NEXT_STDLIB_H)|g' \\\n\t      -e 's/@''GNULIB__EXIT''@/$(GNULIB__EXIT)/g' \\\n\t      -e 's/@''GNULIB_ATOLL''@/$(GNULIB_ATOLL)/g' \\\n\t      -e 's/@''GNULIB_CALLOC_POSIX''@/$(GNULIB_CALLOC_POSIX)/g' \\\n\t      -e 's/@''GNULIB_CANONICALIZE_FILE_NAME''@/$(GNULIB_CANONICALIZE_FILE_NAME)/g' \\\n\t      -e 's/@''GNULIB_GETLOADAVG''@/$(GNULIB_GETLOADAVG)/g' \\\n\t      -e 's/@''GNULIB_GETSUBOPT''@/$(GNULIB_GETSUBOPT)/g' \\\n\t      -e 's/@''GNULIB_GRANTPT''@/$(GNULIB_GRANTPT)/g' \\\n\t      -e 's/@''GNULIB_MALLOC_POSIX''@/$(GNULIB_MALLOC_POSIX)/g' \\\n\t      -e 's/@''GNULIB_MBTOWC''@/$(GNULIB_MBTOWC)/g' \\\n\t      -e 's/@''GNULIB_MKDTEMP''@/$(GNULIB_MKDTEMP)/g' \\\n\t      -e 's/@''GNULIB_MKOSTEMP''@/$(GNULIB_MKOSTEMP)/g' \\\n\t      -e 's/@''GNULIB_MKOSTEMPS''@/$(GNULIB_MKOSTEMPS)/g' \\\n\t      -e 's/@''GNULIB_MKSTEMP''@/$(GNULIB_MKSTEMP)/g' \\\n\t      -e 's/@''GNULIB_MKSTEMPS''@/$(GNULIB_MKSTEMPS)/g' \\\n\t      -e 's/@''GNULIB_POSIX_OPENPT''@/$(GNULIB_POSIX_OPENPT)/g' \\\n\t      -e 's/@''GNULIB_PTSNAME''@/$(GNULIB_PTSNAME)/g' \\\n\t      -e 's/@''GNULIB_PTSNAME_R''@/$(GNULIB_PTSNAME_R)/g' \\\n\t      -e 's/@''GNULIB_PUTENV''@/$(GNULIB_PUTENV)/g' \\\n\t      -e 's/@''GNULIB_QSORT_R''@/$(GNULIB_QSORT_R)/g' \\\n\t      -e 's/@''GNULIB_RANDOM''@/$(GNULIB_RANDOM)/g' \\\n\t      -e 's/@''GNULIB_RANDOM_R''@/$(GNULIB_RANDOM_R)/g' \\\n\t      -e 's/@''GNULIB_REALLOC_POSIX''@/$(GNULIB_REALLOC_POSIX)/g' \\\n\t      -e 's/@''GNULIB_REALPATH''@/$(GNULIB_REALPATH)/g' \\\n\t      -e 's/@''GNULIB_RPMATCH''@/$(GNULIB_RPMATCH)/g' \\\n\t      -e 's/@''GNULIB_SECURE_GETENV''@/$(GNULIB_SECURE_GETENV)/g' \\\n\t      -e 's/@''GNULIB_SETENV''@/$(GNULIB_SETENV)/g' \\\n\t      -e 's/@''GNULIB_STRTOD''@/$(GNULIB_STRTOD)/g' \\\n\t      -e 's/@''GNULIB_STRTOLL''@/$(GNULIB_STRTOLL)/g' \\\n\t      -e 's/@''GNULIB_STRTOULL''@/$(GNULIB_STRTOULL)/g' \\\n\t      -e 's/@''GNULIB_SYSTEM_POSIX''@/$(GNULIB_SYSTEM_POSIX)/g' \\\n\t      -e 's/@''GNULIB_UNLOCKPT''@/$(GNULIB_UNLOCKPT)/g' \\\n\t      -e 's/@''GNULIB_UNSETENV''@/$(GNULIB_UNSETENV)/g' \\\n\t      -e 's/@''GNULIB_WCTOMB''@/$(GNULIB_WCTOMB)/g' \\\n\t      < $(srcdir)/stdlib.in.h | \\\n\t  sed -e 's|@''HAVE__EXIT''@|$(HAVE__EXIT)|g' \\\n\t      -e 's|@''HAVE_ATOLL''@|$(HAVE_ATOLL)|g' \\\n\t      -e 's|@''HAVE_CANONICALIZE_FILE_NAME''@|$(HAVE_CANONICALIZE_FILE_NAME)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLOADAVG''@|$(HAVE_DECL_GETLOADAVG)|g' \\\n\t      -e 's|@''HAVE_GETSUBOPT''@|$(HAVE_GETSUBOPT)|g' \\\n\t      -e 's|@''HAVE_GRANTPT''@|$(HAVE_GRANTPT)|g' \\\n\t      -e 's|@''HAVE_MKDTEMP''@|$(HAVE_MKDTEMP)|g' \\\n\t      -e 's|@''HAVE_MKOSTEMP''@|$(HAVE_MKOSTEMP)|g' \\\n\t      -e 's|@''HAVE_MKOSTEMPS''@|$(HAVE_MKOSTEMPS)|g' \\\n\t      -e 's|@''HAVE_MKSTEMP''@|$(HAVE_MKSTEMP)|g' \\\n\t      -e 's|@''HAVE_MKSTEMPS''@|$(HAVE_MKSTEMPS)|g' \\\n\t      -e 's|@''HAVE_POSIX_OPENPT''@|$(HAVE_POSIX_OPENPT)|g' \\\n\t      -e 's|@''HAVE_PTSNAME''@|$(HAVE_PTSNAME)|g' \\\n\t      -e 's|@''HAVE_PTSNAME_R''@|$(HAVE_PTSNAME_R)|g' \\\n\t      -e 's|@''HAVE_QSORT_R''@|$(HAVE_QSORT_R)|g' \\\n\t      -e 's|@''HAVE_RANDOM''@|$(HAVE_RANDOM)|g' \\\n\t      -e 's|@''HAVE_RANDOM_H''@|$(HAVE_RANDOM_H)|g' \\\n\t      -e 's|@''HAVE_RANDOM_R''@|$(HAVE_RANDOM_R)|g' \\\n\t      -e 's|@''HAVE_REALPATH''@|$(HAVE_REALPATH)|g' \\\n\t      -e 's|@''HAVE_RPMATCH''@|$(HAVE_RPMATCH)|g' \\\n\t      -e 's|@''HAVE_SECURE_GETENV''@|$(HAVE_SECURE_GETENV)|g' \\\n\t      -e 's|@''HAVE_DECL_SETENV''@|$(HAVE_DECL_SETENV)|g' \\\n\t      -e 's|@''HAVE_STRTOD''@|$(HAVE_STRTOD)|g' \\\n\t      -e 's|@''HAVE_STRTOLL''@|$(HAVE_STRTOLL)|g' \\\n\t      -e 's|@''HAVE_STRTOULL''@|$(HAVE_STRTOULL)|g' \\\n\t      -e 's|@''HAVE_STRUCT_RANDOM_DATA''@|$(HAVE_STRUCT_RANDOM_DATA)|g' \\\n\t      -e 's|@''HAVE_SYS_LOADAVG_H''@|$(HAVE_SYS_LOADAVG_H)|g' \\\n\t      -e 's|@''HAVE_UNLOCKPT''@|$(HAVE_UNLOCKPT)|g' \\\n\t      -e 's|@''HAVE_DECL_UNSETENV''@|$(HAVE_DECL_UNSETENV)|g' \\\n\t      -e 's|@''REPLACE_CALLOC''@|$(REPLACE_CALLOC)|g' \\\n\t      -e 's|@''REPLACE_CANONICALIZE_FILE_NAME''@|$(REPLACE_CANONICALIZE_FILE_NAME)|g' \\\n\t      -e 's|@''REPLACE_MALLOC''@|$(REPLACE_MALLOC)|g' \\\n\t      -e 's|@''REPLACE_MBTOWC''@|$(REPLACE_MBTOWC)|g' \\\n\t      -e 's|@''REPLACE_MKSTEMP''@|$(REPLACE_MKSTEMP)|g' \\\n\t      -e 's|@''REPLACE_PTSNAME''@|$(REPLACE_PTSNAME)|g' \\\n\t      -e 's|@''REPLACE_PTSNAME_R''@|$(REPLACE_PTSNAME_R)|g' \\\n\t      -e 's|@''REPLACE_PUTENV''@|$(REPLACE_PUTENV)|g' \\\n\t      -e 's|@''REPLACE_QSORT_R''@|$(REPLACE_QSORT_R)|g' \\\n\t      -e 's|@''REPLACE_RANDOM_R''@|$(REPLACE_RANDOM_R)|g' \\\n\t      -e 's|@''REPLACE_REALLOC''@|$(REPLACE_REALLOC)|g' \\\n\t      -e 's|@''REPLACE_REALPATH''@|$(REPLACE_REALPATH)|g' \\\n\t      -e 's|@''REPLACE_SETENV''@|$(REPLACE_SETENV)|g' \\\n\t      -e 's|@''REPLACE_STRTOD''@|$(REPLACE_STRTOD)|g' \\\n\t      -e 's|@''REPLACE_UNSETENV''@|$(REPLACE_UNSETENV)|g' \\\n\t      -e 's|@''REPLACE_WCTOMB''@|$(REPLACE_WCTOMB)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _Noreturn/r $(_NORETURN_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <string.h> when the system\n# doesn't have one that works with the given compiler.\nstring.h: string.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_STRING_H''@|$(NEXT_STRING_H)|g' \\\n\t      -e 's/@''GNULIB_FFSL''@/$(GNULIB_FFSL)/g' \\\n\t      -e 's/@''GNULIB_FFSLL''@/$(GNULIB_FFSLL)/g' \\\n\t      -e 's/@''GNULIB_MBSLEN''@/$(GNULIB_MBSLEN)/g' \\\n\t      -e 's/@''GNULIB_MBSNLEN''@/$(GNULIB_MBSNLEN)/g' \\\n\t      -e 's/@''GNULIB_MBSCHR''@/$(GNULIB_MBSCHR)/g' \\\n\t      -e 's/@''GNULIB_MBSRCHR''@/$(GNULIB_MBSRCHR)/g' \\\n\t      -e 's/@''GNULIB_MBSSTR''@/$(GNULIB_MBSSTR)/g' \\\n\t      -e 's/@''GNULIB_MBSCASECMP''@/$(GNULIB_MBSCASECMP)/g' \\\n\t      -e 's/@''GNULIB_MBSNCASECMP''@/$(GNULIB_MBSNCASECMP)/g' \\\n\t      -e 's/@''GNULIB_MBSPCASECMP''@/$(GNULIB_MBSPCASECMP)/g' \\\n\t      -e 's/@''GNULIB_MBSCASESTR''@/$(GNULIB_MBSCASESTR)/g' \\\n\t      -e 's/@''GNULIB_MBSCSPN''@/$(GNULIB_MBSCSPN)/g' \\\n\t      -e 's/@''GNULIB_MBSPBRK''@/$(GNULIB_MBSPBRK)/g' \\\n\t      -e 's/@''GNULIB_MBSSPN''@/$(GNULIB_MBSSPN)/g' \\\n\t      -e 's/@''GNULIB_MBSSEP''@/$(GNULIB_MBSSEP)/g' \\\n\t      -e 's/@''GNULIB_MBSTOK_R''@/$(GNULIB_MBSTOK_R)/g' \\\n\t      -e 's/@''GNULIB_MEMCHR''@/$(GNULIB_MEMCHR)/g' \\\n\t      -e 's/@''GNULIB_MEMMEM''@/$(GNULIB_MEMMEM)/g' \\\n\t      -e 's/@''GNULIB_MEMPCPY''@/$(GNULIB_MEMPCPY)/g' \\\n\t      -e 's/@''GNULIB_MEMRCHR''@/$(GNULIB_MEMRCHR)/g' \\\n\t      -e 's/@''GNULIB_RAWMEMCHR''@/$(GNULIB_RAWMEMCHR)/g' \\\n\t      -e 's/@''GNULIB_STPCPY''@/$(GNULIB_STPCPY)/g' \\\n\t      -e 's/@''GNULIB_STPNCPY''@/$(GNULIB_STPNCPY)/g' \\\n\t      -e 's/@''GNULIB_STRCHRNUL''@/$(GNULIB_STRCHRNUL)/g' \\\n\t      -e 's/@''GNULIB_STRDUP''@/$(GNULIB_STRDUP)/g' \\\n\t      -e 's/@''GNULIB_STRNCAT''@/$(GNULIB_STRNCAT)/g' \\\n\t      -e 's/@''GNULIB_STRNDUP''@/$(GNULIB_STRNDUP)/g' \\\n\t      -e 's/@''GNULIB_STRNLEN''@/$(GNULIB_STRNLEN)/g' \\\n\t      -e 's/@''GNULIB_STRPBRK''@/$(GNULIB_STRPBRK)/g' \\\n\t      -e 's/@''GNULIB_STRSEP''@/$(GNULIB_STRSEP)/g' \\\n\t      -e 's/@''GNULIB_STRSTR''@/$(GNULIB_STRSTR)/g' \\\n\t      -e 's/@''GNULIB_STRCASESTR''@/$(GNULIB_STRCASESTR)/g' \\\n\t      -e 's/@''GNULIB_STRTOK_R''@/$(GNULIB_STRTOK_R)/g' \\\n\t      -e 's/@''GNULIB_STRERROR''@/$(GNULIB_STRERROR)/g' \\\n\t      -e 's/@''GNULIB_STRERROR_R''@/$(GNULIB_STRERROR_R)/g' \\\n\t      -e 's/@''GNULIB_STRSIGNAL''@/$(GNULIB_STRSIGNAL)/g' \\\n\t      -e 's/@''GNULIB_STRVERSCMP''@/$(GNULIB_STRVERSCMP)/g' \\\n\t      < $(srcdir)/string.in.h | \\\n\t  sed -e 's|@''HAVE_FFSL''@|$(HAVE_FFSL)|g' \\\n\t      -e 's|@''HAVE_FFSLL''@|$(HAVE_FFSLL)|g' \\\n\t      -e 's|@''HAVE_MBSLEN''@|$(HAVE_MBSLEN)|g' \\\n\t      -e 's|@''HAVE_MEMCHR''@|$(HAVE_MEMCHR)|g' \\\n\t      -e 's|@''HAVE_DECL_MEMMEM''@|$(HAVE_DECL_MEMMEM)|g' \\\n\t      -e 's|@''HAVE_MEMPCPY''@|$(HAVE_MEMPCPY)|g' \\\n\t      -e 's|@''HAVE_DECL_MEMRCHR''@|$(HAVE_DECL_MEMRCHR)|g' \\\n\t      -e 's|@''HAVE_RAWMEMCHR''@|$(HAVE_RAWMEMCHR)|g' \\\n\t      -e 's|@''HAVE_STPCPY''@|$(HAVE_STPCPY)|g' \\\n\t      -e 's|@''HAVE_STPNCPY''@|$(HAVE_STPNCPY)|g' \\\n\t      -e 's|@''HAVE_STRCHRNUL''@|$(HAVE_STRCHRNUL)|g' \\\n\t      -e 's|@''HAVE_DECL_STRDUP''@|$(HAVE_DECL_STRDUP)|g' \\\n\t      -e 's|@''HAVE_DECL_STRNDUP''@|$(HAVE_DECL_STRNDUP)|g' \\\n\t      -e 's|@''HAVE_DECL_STRNLEN''@|$(HAVE_DECL_STRNLEN)|g' \\\n\t      -e 's|@''HAVE_STRPBRK''@|$(HAVE_STRPBRK)|g' \\\n\t      -e 's|@''HAVE_STRSEP''@|$(HAVE_STRSEP)|g' \\\n\t      -e 's|@''HAVE_STRCASESTR''@|$(HAVE_STRCASESTR)|g' \\\n\t      -e 's|@''HAVE_DECL_STRTOK_R''@|$(HAVE_DECL_STRTOK_R)|g' \\\n\t      -e 's|@''HAVE_DECL_STRERROR_R''@|$(HAVE_DECL_STRERROR_R)|g' \\\n\t      -e 's|@''HAVE_DECL_STRSIGNAL''@|$(HAVE_DECL_STRSIGNAL)|g' \\\n\t      -e 's|@''HAVE_STRVERSCMP''@|$(HAVE_STRVERSCMP)|g' \\\n\t      -e 's|@''REPLACE_STPNCPY''@|$(REPLACE_STPNCPY)|g' \\\n\t      -e 's|@''REPLACE_MEMCHR''@|$(REPLACE_MEMCHR)|g' \\\n\t      -e 's|@''REPLACE_MEMMEM''@|$(REPLACE_MEMMEM)|g' \\\n\t      -e 's|@''REPLACE_STRCASESTR''@|$(REPLACE_STRCASESTR)|g' \\\n\t      -e 's|@''REPLACE_STRCHRNUL''@|$(REPLACE_STRCHRNUL)|g' \\\n\t      -e 's|@''REPLACE_STRDUP''@|$(REPLACE_STRDUP)|g' \\\n\t      -e 's|@''REPLACE_STRSTR''@|$(REPLACE_STRSTR)|g' \\\n\t      -e 's|@''REPLACE_STRERROR''@|$(REPLACE_STRERROR)|g' \\\n\t      -e 's|@''REPLACE_STRERROR_R''@|$(REPLACE_STRERROR_R)|g' \\\n\t      -e 's|@''REPLACE_STRNCAT''@|$(REPLACE_STRNCAT)|g' \\\n\t      -e 's|@''REPLACE_STRNDUP''@|$(REPLACE_STRNDUP)|g' \\\n\t      -e 's|@''REPLACE_STRNLEN''@|$(REPLACE_STRNLEN)|g' \\\n\t      -e 's|@''REPLACE_STRSIGNAL''@|$(REPLACE_STRSIGNAL)|g' \\\n\t      -e 's|@''REPLACE_STRTOK_R''@|$(REPLACE_STRTOK_R)|g' \\\n\t      -e 's|@''UNDEFINE_STRTOK_R''@|$(UNDEFINE_STRTOK_R)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t      < $(srcdir)/string.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <sys/stat.h> when the system\n# has one that is incomplete.\nsys/stat.h: sys_stat.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_at)$(MKDIR_P) sys\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_SYS_STAT_H''@|$(NEXT_SYS_STAT_H)|g' \\\n\t      -e 's|@''WINDOWS_64_BIT_ST_SIZE''@|$(WINDOWS_64_BIT_ST_SIZE)|g' \\\n\t      -e 's/@''GNULIB_FCHMODAT''@/$(GNULIB_FCHMODAT)/g' \\\n\t      -e 's/@''GNULIB_FSTAT''@/$(GNULIB_FSTAT)/g' \\\n\t      -e 's/@''GNULIB_FSTATAT''@/$(GNULIB_FSTATAT)/g' \\\n\t      -e 's/@''GNULIB_FUTIMENS''@/$(GNULIB_FUTIMENS)/g' \\\n\t      -e 's/@''GNULIB_LCHMOD''@/$(GNULIB_LCHMOD)/g' \\\n\t      -e 's/@''GNULIB_LSTAT''@/$(GNULIB_LSTAT)/g' \\\n\t      -e 's/@''GNULIB_MKDIRAT''@/$(GNULIB_MKDIRAT)/g' \\\n\t      -e 's/@''GNULIB_MKFIFO''@/$(GNULIB_MKFIFO)/g' \\\n\t      -e 's/@''GNULIB_MKFIFOAT''@/$(GNULIB_MKFIFOAT)/g' \\\n\t      -e 's/@''GNULIB_MKNOD''@/$(GNULIB_MKNOD)/g' \\\n\t      -e 's/@''GNULIB_MKNODAT''@/$(GNULIB_MKNODAT)/g' \\\n\t      -e 's/@''GNULIB_STAT''@/$(GNULIB_STAT)/g' \\\n\t      -e 's/@''GNULIB_UTIMENSAT''@/$(GNULIB_UTIMENSAT)/g' \\\n\t      -e 's|@''HAVE_FCHMODAT''@|$(HAVE_FCHMODAT)|g' \\\n\t      -e 's|@''HAVE_FSTATAT''@|$(HAVE_FSTATAT)|g' \\\n\t      -e 's|@''HAVE_FUTIMENS''@|$(HAVE_FUTIMENS)|g' \\\n\t      -e 's|@''HAVE_LCHMOD''@|$(HAVE_LCHMOD)|g' \\\n\t      -e 's|@''HAVE_LSTAT''@|$(HAVE_LSTAT)|g' \\\n\t      -e 's|@''HAVE_MKDIRAT''@|$(HAVE_MKDIRAT)|g' \\\n\t      -e 's|@''HAVE_MKFIFO''@|$(HAVE_MKFIFO)|g' \\\n\t      -e 's|@''HAVE_MKFIFOAT''@|$(HAVE_MKFIFOAT)|g' \\\n\t      -e 's|@''HAVE_MKNOD''@|$(HAVE_MKNOD)|g' \\\n\t      -e 's|@''HAVE_MKNODAT''@|$(HAVE_MKNODAT)|g' \\\n\t      -e 's|@''HAVE_UTIMENSAT''@|$(HAVE_UTIMENSAT)|g' \\\n\t      -e 's|@''REPLACE_FSTAT''@|$(REPLACE_FSTAT)|g' \\\n\t      -e 's|@''REPLACE_FSTATAT''@|$(REPLACE_FSTATAT)|g' \\\n\t      -e 's|@''REPLACE_FUTIMENS''@|$(REPLACE_FUTIMENS)|g' \\\n\t      -e 's|@''REPLACE_LSTAT''@|$(REPLACE_LSTAT)|g' \\\n\t      -e 's|@''REPLACE_MKDIR''@|$(REPLACE_MKDIR)|g' \\\n\t      -e 's|@''REPLACE_MKFIFO''@|$(REPLACE_MKFIFO)|g' \\\n\t      -e 's|@''REPLACE_MKNOD''@|$(REPLACE_MKNOD)|g' \\\n\t      -e 's|@''REPLACE_STAT''@|$(REPLACE_STAT)|g' \\\n\t      -e 's|@''REPLACE_UTIMENSAT''@|$(REPLACE_UTIMENSAT)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/sys_stat.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <sys/time.h> when the system\n# doesn't have one that works with the given compiler.\nsys/time.h: sys_time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_at)$(MKDIR_P) sys\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's/@''HAVE_SYS_TIME_H''@/$(HAVE_SYS_TIME_H)/g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_SYS_TIME_H''@|$(NEXT_SYS_TIME_H)|g' \\\n\t      -e 's/@''GNULIB_GETTIMEOFDAY''@/$(GNULIB_GETTIMEOFDAY)/g' \\\n\t      -e 's|@''HAVE_WINSOCK2_H''@|$(HAVE_WINSOCK2_H)|g' \\\n\t      -e 's/@''HAVE_GETTIMEOFDAY''@/$(HAVE_GETTIMEOFDAY)/g' \\\n\t      -e 's/@''HAVE_STRUCT_TIMEVAL''@/$(HAVE_STRUCT_TIMEVAL)/g' \\\n\t      -e 's/@''REPLACE_GETTIMEOFDAY''@/$(REPLACE_GETTIMEOFDAY)/g' \\\n\t      -e 's/@''REPLACE_STRUCT_TIMEVAL''@/$(REPLACE_STRUCT_TIMEVAL)/g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/sys_time.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <sys/types.h> when the system\n# doesn't have one that works with the given compiler.\nsys/types.h: sys_types.in.h $(top_builddir)/config.status\n\t$(AM_V_at)$(MKDIR_P) sys\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \\\n\t      -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \\\n\t      < $(srcdir)/sys_types.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create <time.h> when the system\n# doesn't have one that works with the given compiler.\ntime.h: time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_TIME_H''@|$(NEXT_TIME_H)|g' \\\n\t      -e 's/@''GNULIB_GETTIMEOFDAY''@/$(GNULIB_GETTIMEOFDAY)/g' \\\n\t      -e 's/@''GNULIB_MKTIME''@/$(GNULIB_MKTIME)/g' \\\n\t      -e 's/@''GNULIB_NANOSLEEP''@/$(GNULIB_NANOSLEEP)/g' \\\n\t      -e 's/@''GNULIB_STRPTIME''@/$(GNULIB_STRPTIME)/g' \\\n\t      -e 's/@''GNULIB_TIMEGM''@/$(GNULIB_TIMEGM)/g' \\\n\t      -e 's/@''GNULIB_TIME_R''@/$(GNULIB_TIME_R)/g' \\\n\t      -e 's/@''GNULIB_TIME_RZ''@/$(GNULIB_TIME_RZ)/g' \\\n\t      -e 's|@''HAVE_DECL_LOCALTIME_R''@|$(HAVE_DECL_LOCALTIME_R)|g' \\\n\t      -e 's|@''HAVE_NANOSLEEP''@|$(HAVE_NANOSLEEP)|g' \\\n\t      -e 's|@''HAVE_STRPTIME''@|$(HAVE_STRPTIME)|g' \\\n\t      -e 's|@''HAVE_TIMEGM''@|$(HAVE_TIMEGM)|g' \\\n\t      -e 's|@''HAVE_TIMEZONE_T''@|$(HAVE_TIMEZONE_T)|g' \\\n\t      -e 's|@''REPLACE_GMTIME''@|$(REPLACE_GMTIME)|g' \\\n\t      -e 's|@''REPLACE_LOCALTIME''@|$(REPLACE_LOCALTIME)|g' \\\n\t      -e 's|@''REPLACE_LOCALTIME_R''@|$(REPLACE_LOCALTIME_R)|g' \\\n\t      -e 's|@''REPLACE_MKTIME''@|$(REPLACE_MKTIME)|g' \\\n\t      -e 's|@''REPLACE_NANOSLEEP''@|$(REPLACE_NANOSLEEP)|g' \\\n\t      -e 's|@''REPLACE_TIMEGM''@|$(REPLACE_TIMEGM)|g' \\\n\t      -e 's|@''PTHREAD_H_DEFINES_STRUCT_TIMESPEC''@|$(PTHREAD_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e 's|@''SYS_TIME_H_DEFINES_STRUCT_TIMESPEC''@|$(SYS_TIME_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e 's|@''TIME_H_DEFINES_STRUCT_TIMESPEC''@|$(TIME_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e 's|@''UNISTD_H_DEFINES_STRUCT_TIMESPEC''@|$(UNISTD_H_DEFINES_STRUCT_TIMESPEC)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \\\n\t      < $(srcdir)/time.in.h; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\n# We need the following in order to create an empty placeholder for\n# <unistd.h> when the system doesn't have one.\nunistd.h: unistd.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  sed -e 's|@''GUARD_PREFIX''@|GL|g' \\\n\t      -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \\\n\t      -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \\\n\t      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \\\n\t      -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \\\n\t      -e 's|@''NEXT_UNISTD_H''@|$(NEXT_UNISTD_H)|g' \\\n\t      -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \\\n\t      -e 's/@''GNULIB_CHDIR''@/$(GNULIB_CHDIR)/g' \\\n\t      -e 's/@''GNULIB_CHOWN''@/$(GNULIB_CHOWN)/g' \\\n\t      -e 's/@''GNULIB_CLOSE''@/$(GNULIB_CLOSE)/g' \\\n\t      -e 's/@''GNULIB_DUP''@/$(GNULIB_DUP)/g' \\\n\t      -e 's/@''GNULIB_DUP2''@/$(GNULIB_DUP2)/g' \\\n\t      -e 's/@''GNULIB_DUP3''@/$(GNULIB_DUP3)/g' \\\n\t      -e 's/@''GNULIB_ENVIRON''@/$(GNULIB_ENVIRON)/g' \\\n\t      -e 's/@''GNULIB_EUIDACCESS''@/$(GNULIB_EUIDACCESS)/g' \\\n\t      -e 's/@''GNULIB_FACCESSAT''@/$(GNULIB_FACCESSAT)/g' \\\n\t      -e 's/@''GNULIB_FCHDIR''@/$(GNULIB_FCHDIR)/g' \\\n\t      -e 's/@''GNULIB_FCHOWNAT''@/$(GNULIB_FCHOWNAT)/g' \\\n\t      -e 's/@''GNULIB_FDATASYNC''@/$(GNULIB_FDATASYNC)/g' \\\n\t      -e 's/@''GNULIB_FSYNC''@/$(GNULIB_FSYNC)/g' \\\n\t      -e 's/@''GNULIB_FTRUNCATE''@/$(GNULIB_FTRUNCATE)/g' \\\n\t      -e 's/@''GNULIB_GETCWD''@/$(GNULIB_GETCWD)/g' \\\n\t      -e 's/@''GNULIB_GETDOMAINNAME''@/$(GNULIB_GETDOMAINNAME)/g' \\\n\t      -e 's/@''GNULIB_GETDTABLESIZE''@/$(GNULIB_GETDTABLESIZE)/g' \\\n\t      -e 's/@''GNULIB_GETGROUPS''@/$(GNULIB_GETGROUPS)/g' \\\n\t      -e 's/@''GNULIB_GETHOSTNAME''@/$(GNULIB_GETHOSTNAME)/g' \\\n\t      -e 's/@''GNULIB_GETLOGIN''@/$(GNULIB_GETLOGIN)/g' \\\n\t      -e 's/@''GNULIB_GETLOGIN_R''@/$(GNULIB_GETLOGIN_R)/g' \\\n\t      -e 's/@''GNULIB_GETPAGESIZE''@/$(GNULIB_GETPAGESIZE)/g' \\\n\t      -e 's/@''GNULIB_GETUSERSHELL''@/$(GNULIB_GETUSERSHELL)/g' \\\n\t      -e 's/@''GNULIB_GROUP_MEMBER''@/$(GNULIB_GROUP_MEMBER)/g' \\\n\t      -e 's/@''GNULIB_ISATTY''@/$(GNULIB_ISATTY)/g' \\\n\t      -e 's/@''GNULIB_LCHOWN''@/$(GNULIB_LCHOWN)/g' \\\n\t      -e 's/@''GNULIB_LINK''@/$(GNULIB_LINK)/g' \\\n\t      -e 's/@''GNULIB_LINKAT''@/$(GNULIB_LINKAT)/g' \\\n\t      -e 's/@''GNULIB_LSEEK''@/$(GNULIB_LSEEK)/g' \\\n\t      -e 's/@''GNULIB_PIPE''@/$(GNULIB_PIPE)/g' \\\n\t      -e 's/@''GNULIB_PIPE2''@/$(GNULIB_PIPE2)/g' \\\n\t      -e 's/@''GNULIB_PREAD''@/$(GNULIB_PREAD)/g' \\\n\t      -e 's/@''GNULIB_PWRITE''@/$(GNULIB_PWRITE)/g' \\\n\t      -e 's/@''GNULIB_READ''@/$(GNULIB_READ)/g' \\\n\t      -e 's/@''GNULIB_READLINK''@/$(GNULIB_READLINK)/g' \\\n\t      -e 's/@''GNULIB_READLINKAT''@/$(GNULIB_READLINKAT)/g' \\\n\t      -e 's/@''GNULIB_RMDIR''@/$(GNULIB_RMDIR)/g' \\\n\t      -e 's/@''GNULIB_SETHOSTNAME''@/$(GNULIB_SETHOSTNAME)/g' \\\n\t      -e 's/@''GNULIB_SLEEP''@/$(GNULIB_SLEEP)/g' \\\n\t      -e 's/@''GNULIB_SYMLINK''@/$(GNULIB_SYMLINK)/g' \\\n\t      -e 's/@''GNULIB_SYMLINKAT''@/$(GNULIB_SYMLINKAT)/g' \\\n\t      -e 's/@''GNULIB_TTYNAME_R''@/$(GNULIB_TTYNAME_R)/g' \\\n\t      -e 's/@''GNULIB_UNISTD_H_GETOPT''@/0$(GNULIB_GL_UNISTD_H_GETOPT)/g' \\\n\t      -e 's/@''GNULIB_UNISTD_H_NONBLOCKING''@/$(GNULIB_UNISTD_H_NONBLOCKING)/g' \\\n\t      -e 's/@''GNULIB_UNISTD_H_SIGPIPE''@/$(GNULIB_UNISTD_H_SIGPIPE)/g' \\\n\t      -e 's/@''GNULIB_UNLINK''@/$(GNULIB_UNLINK)/g' \\\n\t      -e 's/@''GNULIB_UNLINKAT''@/$(GNULIB_UNLINKAT)/g' \\\n\t      -e 's/@''GNULIB_USLEEP''@/$(GNULIB_USLEEP)/g' \\\n\t      -e 's/@''GNULIB_WRITE''@/$(GNULIB_WRITE)/g' \\\n\t      < $(srcdir)/unistd.in.h | \\\n\t  sed -e 's|@''HAVE_CHOWN''@|$(HAVE_CHOWN)|g' \\\n\t      -e 's|@''HAVE_DUP2''@|$(HAVE_DUP2)|g' \\\n\t      -e 's|@''HAVE_DUP3''@|$(HAVE_DUP3)|g' \\\n\t      -e 's|@''HAVE_EUIDACCESS''@|$(HAVE_EUIDACCESS)|g' \\\n\t      -e 's|@''HAVE_FACCESSAT''@|$(HAVE_FACCESSAT)|g' \\\n\t      -e 's|@''HAVE_FCHDIR''@|$(HAVE_FCHDIR)|g' \\\n\t      -e 's|@''HAVE_FCHOWNAT''@|$(HAVE_FCHOWNAT)|g' \\\n\t      -e 's|@''HAVE_FDATASYNC''@|$(HAVE_FDATASYNC)|g' \\\n\t      -e 's|@''HAVE_FSYNC''@|$(HAVE_FSYNC)|g' \\\n\t      -e 's|@''HAVE_FTRUNCATE''@|$(HAVE_FTRUNCATE)|g' \\\n\t      -e 's|@''HAVE_GETDTABLESIZE''@|$(HAVE_GETDTABLESIZE)|g' \\\n\t      -e 's|@''HAVE_GETGROUPS''@|$(HAVE_GETGROUPS)|g' \\\n\t      -e 's|@''HAVE_GETHOSTNAME''@|$(HAVE_GETHOSTNAME)|g' \\\n\t      -e 's|@''HAVE_GETPAGESIZE''@|$(HAVE_GETPAGESIZE)|g' \\\n\t      -e 's|@''HAVE_GROUP_MEMBER''@|$(HAVE_GROUP_MEMBER)|g' \\\n\t      -e 's|@''HAVE_LCHOWN''@|$(HAVE_LCHOWN)|g' \\\n\t      -e 's|@''HAVE_LINK''@|$(HAVE_LINK)|g' \\\n\t      -e 's|@''HAVE_LINKAT''@|$(HAVE_LINKAT)|g' \\\n\t      -e 's|@''HAVE_PIPE''@|$(HAVE_PIPE)|g' \\\n\t      -e 's|@''HAVE_PIPE2''@|$(HAVE_PIPE2)|g' \\\n\t      -e 's|@''HAVE_PREAD''@|$(HAVE_PREAD)|g' \\\n\t      -e 's|@''HAVE_PWRITE''@|$(HAVE_PWRITE)|g' \\\n\t      -e 's|@''HAVE_READLINK''@|$(HAVE_READLINK)|g' \\\n\t      -e 's|@''HAVE_READLINKAT''@|$(HAVE_READLINKAT)|g' \\\n\t      -e 's|@''HAVE_SETHOSTNAME''@|$(HAVE_SETHOSTNAME)|g' \\\n\t      -e 's|@''HAVE_SLEEP''@|$(HAVE_SLEEP)|g' \\\n\t      -e 's|@''HAVE_SYMLINK''@|$(HAVE_SYMLINK)|g' \\\n\t      -e 's|@''HAVE_SYMLINKAT''@|$(HAVE_SYMLINKAT)|g' \\\n\t      -e 's|@''HAVE_UNLINKAT''@|$(HAVE_UNLINKAT)|g' \\\n\t      -e 's|@''HAVE_USLEEP''@|$(HAVE_USLEEP)|g' \\\n\t      -e 's|@''HAVE_DECL_ENVIRON''@|$(HAVE_DECL_ENVIRON)|g' \\\n\t      -e 's|@''HAVE_DECL_FCHDIR''@|$(HAVE_DECL_FCHDIR)|g' \\\n\t      -e 's|@''HAVE_DECL_FDATASYNC''@|$(HAVE_DECL_FDATASYNC)|g' \\\n\t      -e 's|@''HAVE_DECL_GETDOMAINNAME''@|$(HAVE_DECL_GETDOMAINNAME)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLOGIN''@|$(HAVE_DECL_GETLOGIN)|g' \\\n\t      -e 's|@''HAVE_DECL_GETLOGIN_R''@|$(HAVE_DECL_GETLOGIN_R)|g' \\\n\t      -e 's|@''HAVE_DECL_GETPAGESIZE''@|$(HAVE_DECL_GETPAGESIZE)|g' \\\n\t      -e 's|@''HAVE_DECL_GETUSERSHELL''@|$(HAVE_DECL_GETUSERSHELL)|g' \\\n\t      -e 's|@''HAVE_DECL_SETHOSTNAME''@|$(HAVE_DECL_SETHOSTNAME)|g' \\\n\t      -e 's|@''HAVE_DECL_TTYNAME_R''@|$(HAVE_DECL_TTYNAME_R)|g' \\\n\t      -e 's|@''HAVE_OS_H''@|$(HAVE_OS_H)|g' \\\n\t      -e 's|@''HAVE_SYS_PARAM_H''@|$(HAVE_SYS_PARAM_H)|g' \\\n\t  | \\\n\t  sed -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \\\n\t      -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \\\n\t      -e 's|@''REPLACE_DUP''@|$(REPLACE_DUP)|g' \\\n\t      -e 's|@''REPLACE_DUP2''@|$(REPLACE_DUP2)|g' \\\n\t      -e 's|@''REPLACE_FCHOWNAT''@|$(REPLACE_FCHOWNAT)|g' \\\n\t      -e 's|@''REPLACE_FTRUNCATE''@|$(REPLACE_FTRUNCATE)|g' \\\n\t      -e 's|@''REPLACE_GETCWD''@|$(REPLACE_GETCWD)|g' \\\n\t      -e 's|@''REPLACE_GETDOMAINNAME''@|$(REPLACE_GETDOMAINNAME)|g' \\\n\t      -e 's|@''REPLACE_GETDTABLESIZE''@|$(REPLACE_GETDTABLESIZE)|g' \\\n\t      -e 's|@''REPLACE_GETLOGIN_R''@|$(REPLACE_GETLOGIN_R)|g' \\\n\t      -e 's|@''REPLACE_GETGROUPS''@|$(REPLACE_GETGROUPS)|g' \\\n\t      -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \\\n\t      -e 's|@''REPLACE_ISATTY''@|$(REPLACE_ISATTY)|g' \\\n\t      -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \\\n\t      -e 's|@''REPLACE_LINK''@|$(REPLACE_LINK)|g' \\\n\t      -e 's|@''REPLACE_LINKAT''@|$(REPLACE_LINKAT)|g' \\\n\t      -e 's|@''REPLACE_LSEEK''@|$(REPLACE_LSEEK)|g' \\\n\t      -e 's|@''REPLACE_PREAD''@|$(REPLACE_PREAD)|g' \\\n\t      -e 's|@''REPLACE_PWRITE''@|$(REPLACE_PWRITE)|g' \\\n\t      -e 's|@''REPLACE_READ''@|$(REPLACE_READ)|g' \\\n\t      -e 's|@''REPLACE_READLINK''@|$(REPLACE_READLINK)|g' \\\n\t      -e 's|@''REPLACE_READLINKAT''@|$(REPLACE_READLINKAT)|g' \\\n\t      -e 's|@''REPLACE_RMDIR''@|$(REPLACE_RMDIR)|g' \\\n\t      -e 's|@''REPLACE_SLEEP''@|$(REPLACE_SLEEP)|g' \\\n\t      -e 's|@''REPLACE_SYMLINK''@|$(REPLACE_SYMLINK)|g' \\\n\t      -e 's|@''REPLACE_SYMLINKAT''@|$(REPLACE_SYMLINKAT)|g' \\\n\t      -e 's|@''REPLACE_TTYNAME_R''@|$(REPLACE_TTYNAME_R)|g' \\\n\t      -e 's|@''REPLACE_UNLINK''@|$(REPLACE_UNLINK)|g' \\\n\t      -e 's|@''REPLACE_UNLINKAT''@|$(REPLACE_UNLINKAT)|g' \\\n\t      -e 's|@''REPLACE_USLEEP''@|$(REPLACE_USLEEP)|g' \\\n\t      -e 's|@''REPLACE_WRITE''@|$(REPLACE_WRITE)|g' \\\n\t      -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|$(UNISTD_H_HAVE_WINSOCK2_H)|g' \\\n\t      -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|$(UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS)|g' \\\n\t      -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \\\n\t      -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \\\n\t      -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \\\n\t} > $@-t && \\\n\tmv $@-t $@\n\nunitypes.h: unitypes.in.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  cat $(srcdir)/unitypes.in.h; \\\n\t} > $@-t && \\\n\tmv -f $@-t $@\n\nuniwidth.h: uniwidth.in.h\n\t$(AM_V_GEN)rm -f $@-t $@ && \\\n\t{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \\\n\t  cat $(srcdir)/uniwidth.in.h; \\\n\t} > $@-t && \\\n\tmv -f $@-t $@\n\nmostlyclean-local: mostlyclean-generic\n\t@for dir in '' $(MOSTLYCLEANDIRS); do \\\n\t  if test -n \"$$dir\" && test -d $$dir; then \\\n\t    echo \"rmdir $$dir\"; rmdir $$dir; \\\n\t  fi; \\\n\tdone; \\\n\t:\n\n# Tell versions [3.59,3.63) of GNU make to not export all variables.\n# Otherwise a system limit (for SysV at least) may be exceeded.\n.NOEXPORT:\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/alloca.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* Memory allocation on the stack.\n   Copyright (C) 1995, 1999, 2001-2007 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* When this file is included, it may be preceded only by preprocessor\n   declarations.  Thanks to AIX.  Therefore we include it right after\n   \"config.h\", not later.  */\n\n/* Avoid using the symbol _ALLOCA_H here, as Bison assumes _ALLOCA_H\n   means there is a real alloca function.  */\n#ifndef _GL_ALLOCA_H\n#define _GL_ALLOCA_H\n\n/* alloca(N) returns a pointer (void* or char*) to N bytes of memory\n   allocated on the stack, and which will last until the function returns.\n   Use of alloca should be avoided:\n     - inside arguments of function calls - undefined behaviour,\n     - in inline functions - the allocation may actually last until the\n       calling function returns,\n     - for huge N (say, N >= 65536) - you never know how large (or small)\n       the stack is, and when the stack cannot fulfill the memory allocation\n       request, the program just crashes.\n */\n\n#ifndef alloca\n# ifdef __GNUC__\n#   define alloca __builtin_alloca\n# else\n#  ifdef _MSC_VER\n#   include <malloc.h>\n#   define alloca _alloca\n#  else\n#   if HAVE_ALLOCA_H\n#    include <alloca.h>\n#   else\n#    ifdef _AIX\n #pragma alloca\n#    else\n#     ifdef __hpux /* This section must match that of bison generated files. */\n#      ifdef __cplusplus\nextern \"C\" void *alloca (unsigned int);\n#      else /* not __cplusplus */\nextern void *alloca ();\n#      endif /* not __cplusplus */\n#     else /* not __hpux */\n#      ifndef alloca\nextern char *alloca ();\n#      endif\n#     endif /* __hpux */\n#    endif\n#   endif\n#  endif\n# endif\n#endif\n\n#endif /* _GL_ALLOCA_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/alloca.in.h",
    "content": "/* Memory allocation on the stack.\n   Copyright (C) 1995, 1999, 2001-2007 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* When this file is included, it may be preceded only by preprocessor\n   declarations.  Thanks to AIX.  Therefore we include it right after\n   \"config.h\", not later.  */\n\n/* Avoid using the symbol _ALLOCA_H here, as Bison assumes _ALLOCA_H\n   means there is a real alloca function.  */\n#ifndef _GL_ALLOCA_H\n#define _GL_ALLOCA_H\n\n/* alloca(N) returns a pointer (void* or char*) to N bytes of memory\n   allocated on the stack, and which will last until the function returns.\n   Use of alloca should be avoided:\n     - inside arguments of function calls - undefined behaviour,\n     - in inline functions - the allocation may actually last until the\n       calling function returns,\n     - for huge N (say, N >= 65536) - you never know how large (or small)\n       the stack is, and when the stack cannot fulfill the memory allocation\n       request, the program just crashes.\n */\n\n#ifndef alloca\n# ifdef __GNUC__\n#   define alloca __builtin_alloca\n# else\n#  ifdef _MSC_VER\n#   include <malloc.h>\n#   define alloca _alloca\n#  else\n#   if HAVE_ALLOCA_H\n#    include <alloca.h>\n#   else\n#    ifdef _AIX\n #pragma alloca\n#    else\n#     ifdef __hpux /* This section must match that of bison generated files. */\n#      ifdef __cplusplus\nextern \"C\" void *alloca (unsigned int);\n#      else /* not __cplusplus */\nextern void *alloca ();\n#      endif /* not __cplusplus */\n#     else /* not __hpux */\n#      ifndef alloca\nextern char *alloca ();\n#      endif\n#     endif /* __hpux */\n#    endif\n#   endif\n#  endif\n# endif\n#endif\n\n#endif /* _GL_ALLOCA_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/allocator.c",
    "content": "#define _GL_USE_STDLIB_ALLOC 1\n#include <config.h>\n#include \"allocator.h\"\n#include <stdlib.h>\nstruct allocator const stdlib_allocator = { malloc, realloc, free, NULL };\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/allocator.h",
    "content": "/* Memory allocators such as malloc+free.\n\n   Copyright (C) 2011-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Paul Eggert.  */\n\n#ifndef _GL_ALLOCATOR_H\n#define _GL_ALLOCATOR_H\n\n#include <stddef.h>\n\n/* An object describing a memory allocator family.  */\n\nstruct allocator\n{\n  /* Do not use GCC attributes such as __attribute__ ((malloc)) with\n     the function types pointed at by these members, because these\n     attributes do not work with pointers to functions.  See\n     <http://lists.gnu.org/archive/html/bug-gnulib/2011-04/msg00007.html>.  */\n\n  /* Call ALLOCATE to allocate memory, like 'malloc'.  On failure ALLOCATE\n     should return NULL, though not necessarily set errno.  When given\n     a zero size it may return NULL even if successful.  */\n  void *(*allocate) (size_t);\n\n  /* If nonnull, call REALLOCATE to reallocate memory, like 'realloc'.\n     On failure REALLOCATE should return NULL, though not necessarily set\n     errno.  When given a zero size it may return NULL even if\n     successful.  */\n  void *(*reallocate) (void *, size_t);\n\n  /* Call FREE to free memory, like 'free'.  */\n  void (*free) (void *);\n\n  /* If nonnull, call DIE (SIZE) if MALLOC (SIZE) or REALLOC (...,\n     SIZE) fails.  DIE should not return.  SIZE should equal SIZE_MAX\n     if size_t overflow was detected while calculating sizes to be\n     passed to MALLOC or REALLOC.  */\n  void (*die) (size_t);\n};\n\n/* An allocator using the stdlib functions and a null DIE function.  */\nextern struct allocator const stdlib_allocator;\n\n#endif /* _GL_ALLOCATOR_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/areadlink.c",
    "content": "/* areadlink.c -- readlink wrapper to return the link name in malloc'd storage\n   Unlike xreadlink and xreadlink_with_size, don't ever call exit.\n\n   Copyright (C) 2001, 2003-2007, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Jim Meyering <jim@meyering.net>\n   and Bruno Haible <bruno@clisp.org>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include \"areadlink.h\"\n\n#include \"careadlinkat.h\"\n\n#include <stdlib.h>\n#include <unistd.h>\n\n/* Get the symbolic link value of FILENAME and put it into BUFFER, with\n   size BUFFER_SIZE.  This function acts like readlink but has\n   readlinkat's signature.  */\nstatic ssize_t\ncareadlinkatcwd (int fd, char const *filename, char *buffer,\n                 size_t buffer_size)\n{\n  /* FD must be AT_FDCWD here, otherwise the caller is using this\n     function in contexts it was not meant for.  */\n  if (fd != AT_FDCWD)\n    abort ();\n  return readlink (filename, buffer, buffer_size);\n}\n\n/* Call readlink to get the symbolic link value of FILENAME.\n   Return a pointer to that NUL-terminated string in malloc'd storage.\n   If readlink fails, return NULL and set errno.\n   If allocation fails, or if the link value is longer than SIZE_MAX :-),\n   return NULL and set errno to ENOMEM.  */\n\nchar *\nareadlink (char const *filename)\n{\n  return careadlinkat (AT_FDCWD, filename, NULL, 0, NULL, careadlinkatcwd);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/areadlink.h",
    "content": "/* Read symbolic links without size limitation.\n\n   Copyright (C) 2001, 2003-2004, 2007, 2009-2017 Free Software Foundation,\n   Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Jim Meyering <jim@meyering.net>  */\n\n#include <stddef.h>\n\nextern char *areadlink (char const *filename);\nextern char *areadlink_with_size (char const *filename, size_t size_hint);\n\n#if GNULIB_AREADLINKAT\nextern char *areadlinkat (int fd, char const *filename);\n#endif\n\n#if GNULIB_AREADLINKAT_WITH_SIZE\nextern char *areadlinkat_with_size (int fd, char const *filename,\n                                    size_t size_hint);\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/arg-nonnull.h",
    "content": "/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools\n   that the values passed as arguments n, ..., m must be non-NULL pointers.\n   n = 1 stands for the first argument, n = 2 for the second argument etc.  */\n#ifndef _GL_ARG_NONNULL\n# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3\n#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))\n# else\n#  define _GL_ARG_NONNULL(params)\n# endif\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/basename-lgpl.c",
    "content": "/* basename.c -- return the last element in a file name\n\n   Copyright (C) 1990, 1998-2001, 2003-2006, 2009-2017 Free Software\n   Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n#include \"dirname.h\"\n\n#include <string.h>\n\n/* Return the address of the last file name component of NAME.  If\n   NAME has no relative file name components because it is a file\n   system root, return the empty string.  */\n\nchar *\nlast_component (char const *name)\n{\n  char const *base = name + FILE_SYSTEM_PREFIX_LEN (name);\n  char const *p;\n  bool saw_slash = false;\n\n  while (ISSLASH (*base))\n    base++;\n\n  for (p = base; *p; p++)\n    {\n      if (ISSLASH (*p))\n        saw_slash = true;\n      else if (saw_slash)\n        {\n          base = p;\n          saw_slash = false;\n        }\n    }\n\n  return (char *) base;\n}\n\n/* Return the length of the basename NAME.  Typically NAME is the\n   value returned by base_name or last_component.  Act like strlen\n   (NAME), except omit all trailing slashes.  */\n\nsize_t\nbase_len (char const *name)\n{\n  size_t len;\n  size_t prefix_len = FILE_SYSTEM_PREFIX_LEN (name);\n\n  for (len = strlen (name);  1 < len && ISSLASH (name[len - 1]);  len--)\n    continue;\n\n  if (DOUBLE_SLASH_IS_DISTINCT_ROOT && len == 1\n      && ISSLASH (name[0]) && ISSLASH (name[1]) && ! name[2])\n    return 2;\n\n  if (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE && prefix_len\n      && len == prefix_len && ISSLASH (name[prefix_len]))\n    return prefix_len + 1;\n\n  return len;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/binary-io.c",
    "content": "#include <config.h>\n#define BINARY_IO_INLINE _GL_EXTERN_INLINE\n#include \"binary-io.h\"\ntypedef int dummy;\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/binary-io.h",
    "content": "/* Binary mode I/O.\n   Copyright (C) 2001, 2003, 2005, 2008-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _BINARY_H\n#define _BINARY_H\n\n/* For systems that distinguish between text and binary I/O.\n   O_BINARY is guaranteed by the gnulib <fcntl.h>. */\n#include <fcntl.h>\n\n/* The MSVC7 <stdio.h> doesn't like to be included after '#define fileno ...',\n   so we include it here first.  */\n#include <stdio.h>\n\n#ifndef _GL_INLINE_HEADER_BEGIN\n #error \"Please include config.h first.\"\n#endif\n_GL_INLINE_HEADER_BEGIN\n#ifndef BINARY_IO_INLINE\n# define BINARY_IO_INLINE _GL_INLINE\n#endif\n\n/* set_binary_mode (fd, mode)\n   sets the binary/text I/O mode of file descriptor fd to the given mode\n   (must be O_BINARY or O_TEXT) and returns the previous mode.  */\n#if O_BINARY\n# if defined __EMX__ || defined __DJGPP__ || defined __CYGWIN__\n#  include <io.h> /* declares setmode() */\n#  define set_binary_mode setmode\n# else\n#  define set_binary_mode _setmode\n#  undef fileno\n#  define fileno _fileno\n# endif\n#else\n  /* On reasonable systems, binary I/O is the only choice.  */\n  /* Use a function rather than a macro, to avoid gcc warnings\n     \"warning: statement with no effect\".  */\nBINARY_IO_INLINE int\nset_binary_mode (int fd, int mode)\n{\n  (void) fd;\n  (void) mode;\n  return O_BINARY;\n}\n#endif\n\n/* SET_BINARY (fd);\n   changes the file descriptor fd to perform binary I/O.  */\n#if defined __DJGPP__ || defined __EMX__\n# include <unistd.h> /* declares isatty() */\n  /* Avoid putting stdin/stdout in binary mode if it is connected to\n     the console, because that would make it impossible for the user\n     to interrupt the program through Ctrl-C or Ctrl-Break.  */\n# define SET_BINARY(fd) ((void) (!isatty (fd) ? (set_binary_mode (fd, O_BINARY), 0) : 0))\n#else\n# define SET_BINARY(fd) ((void) set_binary_mode (fd, O_BINARY))\n#endif\n\n_GL_INLINE_HEADER_END\n\n#endif /* _BINARY_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/c++defs.h",
    "content": "#ifndef _GL_CXXDEFS_H\n#define _GL_CXXDEFS_H\n\n/* Begin/end the GNULIB_NAMESPACE namespace.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {\n# define _GL_END_NAMESPACE }\n#else\n# define _GL_BEGIN_NAMESPACE\n# define _GL_END_NAMESPACE\n#endif\n\n/* The three most frequent use cases of these macros are:\n\n   * For providing a substitute for a function that is missing on some\n     platforms, but is declared and works fine on the platforms on which\n     it exists:\n\n       #if @GNULIB_FOO@\n       # if !@HAVE_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       # endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on all platforms,\n     but is broken/insufficient and needs to be replaced on some platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on some platforms\n     but is broken/insufficient and needs to be replaced on some of them and\n     is additionally either missing or undeclared on some other platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       #  endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n*/\n\n/* _GL_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#if defined __cplusplus\n# define _GL_EXTERN_C extern \"C\"\n#else\n# define _GL_EXTERN_C extern\n#endif\n\n/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);\n   declares a replacement function, named rpl_func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \\\n  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)\n#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype rpl_func parameters_and_attributes\n\n/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);\n   declares the system function, named func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype func parameters_and_attributes\n\n/* _GL_CXXALIAS_RPL (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.\n   Example:\n     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n\n   Wrapping rpl_func in an object with an inline conversion operator\n   avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#define _GL_CXXALIAS_RPL(func,rettype,parameters) \\\n  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::rpl_func;                                  \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);\n   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);\n   except that the C function rpl_func may have a slightly different\n   declaration.  A cast is used to silence the \"invalid conversion\" error\n   that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                     \\\n    {                                                              \\\n      static const struct _gl_ ## func ## _wrapper                 \\\n      {                                                            \\\n        typedef rettype (*type) parameters;                        \\\n                                                                   \\\n        inline operator type () const                              \\\n        {                                                          \\\n          return reinterpret_cast<type>(::rpl_func);               \\\n        }                                                          \\\n      } func = {};                                                 \\\n    }                                                              \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to the system provided function func, if GNULIB_NAMESPACE\n   is defined.\n   Example:\n     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n\n   Wrapping func in an object with an inline conversion operator\n   avoids a reference to func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS(func,rettype,parameters)            \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::func;                                      \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function func may have a slightly different declaration.\n   A cast is used to silence the \"invalid conversion\" error that would\n   otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                          \\\n    {                                                   \\\n      static const struct _gl_ ## func ## _wrapper      \\\n      {                                                 \\\n        typedef rettype (*type) parameters;             \\\n                                                        \\\n        inline operator type () const                   \\\n        {                                               \\\n          return reinterpret_cast<type>(::func);        \\\n        }                                               \\\n      } func = {};                                      \\\n    }                                                   \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function is picked among a set of overloaded functions,\n   namely the one with rettype2 and parameters2.  Two consecutive casts\n   are used to silence the \"cannot find a match\" and \"invalid conversion\"\n   errors that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n  /* The outer cast must be a reinterpret_cast.\n     The inner cast: When the function is defined as a set of overloaded\n     functions, it works as a static_cast<>, choosing the designated variant.\n     When the function is defined as a single variant, it works as a\n     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    namespace GNULIB_NAMESPACE                                                \\\n    {                                                                         \\\n      static const struct _gl_ ## func ## _wrapper                            \\\n      {                                                                       \\\n        typedef rettype (*type) parameters;                                   \\\n                                                                              \\\n        inline operator type () const                                         \\\n        {                                                                     \\\n          return reinterpret_cast<type>((rettype2 (*) parameters2)(::func));  \\\n        }                                                                     \\\n      } func = {};                                                            \\\n    }                                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN (func);\n   causes a warning to be emitted when ::func is used but not when\n   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded\n   variants.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN(func) \\\n   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN_1(func,namespace) \\\n   _GL_CXXALIASWARN_2 (func, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n    _GL_WARN_ON_USE (func, \\\n                     \"The symbol ::\" #func \" refers to the system function. \" \\\n                     \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN(func) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);\n   causes a warning to be emitted when the given overloaded variant of ::func\n   is used but not when GNULIB_NAMESPACE::func is used.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \\\n                        GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \\\n   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \\\n                         \"The symbol ::\" #func \" refers to the system function. \" \\\n                         \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n#endif /* _GL_CXXDEFS_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/c-ctype.c",
    "content": "#include <config.h>\n#define C_CTYPE_INLINE _GL_EXTERN_INLINE\n#include \"c-ctype.h\"\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/c-ctype.h",
    "content": "/* Character handling in C locale.\n\n   These functions work like the corresponding functions in <ctype.h>,\n   except that they have the C (POSIX) locale hardwired, whereas the\n   <ctype.h> functions' behaviour depends on the current locale set via\n   setlocale.\n\n   Copyright (C) 2000-2003, 2006, 2008-2017 Free Software Foundation, Inc.\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef C_CTYPE_H\n#define C_CTYPE_H\n\n#include <stdbool.h>\n\n#ifndef _GL_INLINE_HEADER_BEGIN\n #error \"Please include config.h first.\"\n#endif\n_GL_INLINE_HEADER_BEGIN\n#ifndef C_CTYPE_INLINE\n# define C_CTYPE_INLINE _GL_INLINE\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* The functions defined in this file assume the \"C\" locale and a character\n   set without diacritics (ASCII-US or EBCDIC-US or something like that).\n   Even if the \"C\" locale on a particular system is an extension of the ASCII\n   character set (like on BeOS, where it is UTF-8, or on AmigaOS, where it\n   is ISO-8859-1), the functions in this file recognize only the ASCII\n   characters.  */\n\n\n#if (' ' == 32) && ('!' == 33) && ('\"' == 34) && ('#' == 35) \\\n    && ('%' == 37) && ('&' == 38) && ('\\'' == 39) && ('(' == 40) \\\n    && (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \\\n    && ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \\\n    && ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \\\n    && ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \\\n    && ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \\\n    && ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \\\n    && ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \\\n    && ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \\\n    && ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \\\n    && ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \\\n    && ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \\\n    && ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \\\n    && ('Z' == 90) && ('[' == 91) && ('\\\\' == 92) && (']' == 93) \\\n    && ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \\\n    && ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \\\n    && ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \\\n    && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \\\n    && ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \\\n    && ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \\\n    && ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \\\n    && ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126)\n/* The character set is ASCII or one of its variants or extensions, not EBCDIC.\n   Testing the value of '\\n' and '\\r' is not relevant.  */\n# define C_CTYPE_ASCII 1\n#elif ! (' ' == '\\x40' && '0' == '\\xf0'                     \\\n         && 'A' == '\\xc1' && 'J' == '\\xd1' && 'S' == '\\xe2' \\\n         && 'a' == '\\x81' && 'j' == '\\x91' && 's' == '\\xa2')\n# error \"Only ASCII and EBCDIC are supported\"\n#endif\n\n#if 'A' < 0\n# error \"EBCDIC and char is signed -- not supported\"\n#endif\n\n/* Cases for control characters.  */\n\n#define _C_CTYPE_CNTRL \\\n   case '\\a': case '\\b': case '\\f': case '\\n': \\\n   case '\\r': case '\\t': case '\\v': \\\n   _C_CTYPE_OTHER_CNTRL\n\n/* ASCII control characters other than those with \\-letter escapes.  */\n\n#if C_CTYPE_ASCII\n# define _C_CTYPE_OTHER_CNTRL \\\n    case '\\x00': case '\\x01': case '\\x02': case '\\x03': \\\n    case '\\x04': case '\\x05': case '\\x06': case '\\x0e': \\\n    case '\\x0f': case '\\x10': case '\\x11': case '\\x12': \\\n    case '\\x13': case '\\x14': case '\\x15': case '\\x16': \\\n    case '\\x17': case '\\x18': case '\\x19': case '\\x1a': \\\n    case '\\x1b': case '\\x1c': case '\\x1d': case '\\x1e': \\\n    case '\\x1f': case '\\x7f'\n#else\n   /* Use EBCDIC code page 1047's assignments for ASCII control chars;\n      assume all EBCDIC code pages agree about these assignments.  */\n# define _C_CTYPE_OTHER_CNTRL \\\n    case '\\x00': case '\\x01': case '\\x02': case '\\x03': \\\n    case '\\x07': case '\\x0e': case '\\x0f': case '\\x10': \\\n    case '\\x11': case '\\x12': case '\\x13': case '\\x18': \\\n    case '\\x19': case '\\x1c': case '\\x1d': case '\\x1e': \\\n    case '\\x1f': case '\\x26': case '\\x27': case '\\x2d': \\\n    case '\\x2e': case '\\x32': case '\\x37': case '\\x3c': \\\n    case '\\x3d': case '\\x3f'\n#endif\n\n/* Cases for lowercase hex letters, and lowercase letters, all offset by N.  */\n\n#define _C_CTYPE_LOWER_A_THRU_F_N(n) \\\n   case 'a' + (n): case 'b' + (n): case 'c' + (n): case 'd' + (n): \\\n   case 'e' + (n): case 'f' + (n)\n#define _C_CTYPE_LOWER_N(n) \\\n   _C_CTYPE_LOWER_A_THRU_F_N(n): \\\n   case 'g' + (n): case 'h' + (n): case 'i' + (n): case 'j' + (n): \\\n   case 'k' + (n): case 'l' + (n): case 'm' + (n): case 'n' + (n): \\\n   case 'o' + (n): case 'p' + (n): case 'q' + (n): case 'r' + (n): \\\n   case 's' + (n): case 't' + (n): case 'u' + (n): case 'v' + (n): \\\n   case 'w' + (n): case 'x' + (n): case 'y' + (n): case 'z' + (n)\n\n/* Cases for hex letters, digits, lower, punct, and upper.  */\n\n#define _C_CTYPE_A_THRU_F \\\n   _C_CTYPE_LOWER_A_THRU_F_N (0): \\\n   _C_CTYPE_LOWER_A_THRU_F_N ('A' - 'a')\n#define _C_CTYPE_DIGIT                     \\\n   case '0': case '1': case '2': case '3': \\\n   case '4': case '5': case '6': case '7': \\\n   case '8': case '9'\n#define _C_CTYPE_LOWER _C_CTYPE_LOWER_N (0)\n#define _C_CTYPE_PUNCT \\\n   case '!': case '\"': case '#': case '$':  \\\n   case '%': case '&': case '\\'': case '(': \\\n   case ')': case '*': case '+': case ',':  \\\n   case '-': case '.': case '/': case ':':  \\\n   case ';': case '<': case '=': case '>':  \\\n   case '?': case '@': case '[': case '\\\\': \\\n   case ']': case '^': case '_': case '`':  \\\n   case '{': case '|': case '}': case '~'\n#define _C_CTYPE_UPPER _C_CTYPE_LOWER_N ('A' - 'a')\n\n\n/* Function definitions.  */\n\n/* Unlike the functions in <ctype.h>, which require an argument in the range\n   of the 'unsigned char' type, the functions here operate on values that are\n   in the 'unsigned char' range or in the 'char' range.  In other words,\n   when you have a 'char' value, you need to cast it before using it as\n   argument to a <ctype.h> function:\n\n         const char *s = ...;\n         if (isalpha ((unsigned char) *s)) ...\n\n   but you don't need to cast it for the functions defined in this file:\n\n         const char *s = ...;\n         if (c_isalpha (*s)) ...\n */\n\nC_CTYPE_INLINE bool\nc_isalnum (int c)\n{\n  switch (c)\n    {\n    _C_CTYPE_DIGIT:\n    _C_CTYPE_LOWER:\n    _C_CTYPE_UPPER:\n      return true;\n    default:\n      return false;\n    }\n}\n\nC_CTYPE_INLINE bool\nc_isalpha (int c)\n{\n  switch (c)\n    {\n    _C_CTYPE_LOWER:\n    _C_CTYPE_UPPER:\n      return true;\n    default:\n      return false;\n    }\n}\n\n/* The function isascii is not locale dependent.\n   Its use in EBCDIC is questionable. */\nC_CTYPE_INLINE bool\nc_isascii (int c)\n{\n  switch (c)\n    {\n    case ' ':\n    _C_CTYPE_CNTRL:\n    _C_CTYPE_DIGIT:\n    _C_CTYPE_LOWER:\n    _C_CTYPE_PUNCT:\n    _C_CTYPE_UPPER:\n      return true;\n    default:\n      return false;\n    }\n}\n\nC_CTYPE_INLINE bool\nc_isblank (int c)\n{\n  return c == ' ' || c == '\\t';\n}\n\nC_CTYPE_INLINE bool\nc_iscntrl (int c)\n{\n  switch (c)\n    {\n    _C_CTYPE_CNTRL:\n      return true;\n    default:\n      return false;\n    }\n}\n\nC_CTYPE_INLINE bool\nc_isdigit (int c)\n{\n  switch (c)\n    {\n    _C_CTYPE_DIGIT:\n      return true;\n    default:\n      return false;\n    }\n}\n\nC_CTYPE_INLINE bool\nc_isgraph (int c)\n{\n  switch (c)\n    {\n    _C_CTYPE_DIGIT:\n    _C_CTYPE_LOWER:\n    _C_CTYPE_PUNCT:\n    _C_CTYPE_UPPER:\n      return true;\n    default:\n      return false;\n    }\n}\n\nC_CTYPE_INLINE bool\nc_islower (int c)\n{\n  switch (c)\n    {\n    _C_CTYPE_LOWER:\n      return true;\n    default:\n      return false;\n    }\n}\n\nC_CTYPE_INLINE bool\nc_isprint (int c)\n{\n  switch (c)\n    {\n    case ' ':\n    _C_CTYPE_DIGIT:\n    _C_CTYPE_LOWER:\n    _C_CTYPE_PUNCT:\n    _C_CTYPE_UPPER:\n      return true;\n    default:\n      return false;\n    }\n}\n\nC_CTYPE_INLINE bool\nc_ispunct (int c)\n{\n  switch (c)\n    {\n    _C_CTYPE_PUNCT:\n      return true;\n    default:\n      return false;\n    }\n}\n\nC_CTYPE_INLINE bool\nc_isspace (int c)\n{\n  switch (c)\n    {\n    case ' ': case '\\t': case '\\n': case '\\v': case '\\f': case '\\r':\n      return true;\n    default:\n      return false;\n    }\n}\n\nC_CTYPE_INLINE bool\nc_isupper (int c)\n{\n  switch (c)\n    {\n    _C_CTYPE_UPPER:\n      return true;\n    default:\n      return false;\n    }\n}\n\nC_CTYPE_INLINE bool\nc_isxdigit (int c)\n{\n  switch (c)\n    {\n    _C_CTYPE_DIGIT:\n    _C_CTYPE_A_THRU_F:\n      return true;\n    default:\n      return false;\n    }\n}\n\nC_CTYPE_INLINE int\nc_tolower (int c)\n{\n  switch (c)\n    {\n    _C_CTYPE_UPPER:\n      return c - 'A' + 'a';\n    default:\n      return c;\n    }\n}\n\nC_CTYPE_INLINE int\nc_toupper (int c)\n{\n  switch (c)\n    {\n    _C_CTYPE_LOWER:\n      return c - 'a' + 'A';\n    default:\n      return c;\n    }\n}\n\n#ifdef __cplusplus\n}\n#endif\n\n_GL_INLINE_HEADER_END\n\n#endif /* C_CTYPE_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/canonicalize-lgpl.c",
    "content": "/* Return the canonical absolute name of a given file.\n   Copyright (C) 1996-2017 Free Software Foundation, Inc.\n   This file is part of the GNU C Library.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _LIBC\n/* Don't use __attribute__ __nonnull__ in this compilation unit.  Otherwise gcc\n   optimizes away the name == NULL test below.  */\n# define _GL_ARG_NONNULL(params)\n\n# define _GL_USE_STDLIB_ALLOC 1\n# include <config.h>\n#endif\n\n#if !HAVE_CANONICALIZE_FILE_NAME || !FUNC_REALPATH_WORKS || defined _LIBC\n\n/* Specification.  */\n#include <stdlib.h>\n\n#include <alloca.h>\n#include <string.h>\n#include <unistd.h>\n#include <limits.h>\n#if HAVE_SYS_PARAM_H || defined _LIBC\n# include <sys/param.h>\n#endif\n#include <sys/stat.h>\n#include <errno.h>\n#include <stddef.h>\n\n#ifdef _LIBC\n# include <shlib-compat.h>\n#else\n# define SHLIB_COMPAT(lib, introduced, obsoleted) 0\n# define versioned_symbol(lib, local, symbol, version) extern int dummy\n# define compat_symbol(lib, local, symbol, version)\n# define weak_alias(local, symbol)\n# define __canonicalize_file_name canonicalize_file_name\n# define __realpath realpath\n# include \"pathmax.h\"\n# include \"malloca.h\"\n# include \"dosname.h\"\n# if HAVE_GETCWD\n#  if IN_RELOCWRAPPER\n    /* When building the relocatable program wrapper, use the system's getcwd\n       function, not the gnulib override, otherwise we would get a link error.\n     */\n#   undef getcwd\n#  endif\n#  ifdef VMS\n    /* We want the directory in Unix syntax, not in VMS syntax.  */\n#   define __getcwd(buf, max) getcwd (buf, max, 0)\n#  else\n#   define __getcwd getcwd\n#  endif\n# else\n#  define __getcwd(buf, max) getwd (buf)\n# endif\n# define __readlink readlink\n# define __set_errno(e) errno = (e)\n# ifndef MAXSYMLINKS\n#  ifdef SYMLOOP_MAX\n#   define MAXSYMLINKS SYMLOOP_MAX\n#  else\n#   define MAXSYMLINKS 20\n#  endif\n# endif\n#endif\n\n#ifndef DOUBLE_SLASH_IS_DISTINCT_ROOT\n# define DOUBLE_SLASH_IS_DISTINCT_ROOT 0\n#endif\n\n/* Define this independently so that stdint.h is not a prerequisite.  */\n#ifndef SIZE_MAX\n# define SIZE_MAX ((size_t) -1)\n#endif\n\n#if !FUNC_REALPATH_WORKS || defined _LIBC\n\nstatic void\nalloc_failed (void)\n{\n#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n  /* Avoid errno problem without using the malloc or realloc modules; see:\n     http://lists.gnu.org/archive/html/bug-gnulib/2016-08/msg00025.html  */\n  errno = ENOMEM;\n#endif\n}\n\n/* Return the canonical absolute name of file NAME.  A canonical name\n   does not contain any \".\", \"..\" components nor any repeated path\n   separators ('/') or symlinks.  All path components must exist.  If\n   RESOLVED is null, the result is malloc'd; otherwise, if the\n   canonical name is PATH_MAX chars or more, returns null with 'errno'\n   set to ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars,\n   returns the name in RESOLVED.  If the name cannot be resolved and\n   RESOLVED is non-NULL, it contains the path of the first component\n   that cannot be resolved.  If the path can be resolved, RESOLVED\n   holds the same value as the value returned.  */\n\nchar *\n__realpath (const char *name, char *resolved)\n{\n  char *rpath, *dest, *extra_buf = NULL;\n  const char *start, *end, *rpath_limit;\n  long int path_max;\n  int num_links = 0;\n  size_t prefix_len;\n\n  if (name == NULL)\n    {\n      /* As per Single Unix Specification V2 we must return an error if\n         either parameter is a null pointer.  We extend this to allow\n         the RESOLVED parameter to be NULL in case the we are expected to\n         allocate the room for the return value.  */\n      __set_errno (EINVAL);\n      return NULL;\n    }\n\n  if (name[0] == '\\0')\n    {\n      /* As per Single Unix Specification V2 we must return an error if\n         the name argument points to an empty string.  */\n      __set_errno (ENOENT);\n      return NULL;\n    }\n\n#ifdef PATH_MAX\n  path_max = PATH_MAX;\n#else\n  path_max = pathconf (name, _PC_PATH_MAX);\n  if (path_max <= 0)\n    path_max = 8192;\n#endif\n\n  if (resolved == NULL)\n    {\n      rpath = malloc (path_max);\n      if (rpath == NULL)\n        {\n          alloc_failed ();\n          return NULL;\n        }\n    }\n  else\n    rpath = resolved;\n  rpath_limit = rpath + path_max;\n\n  /* This is always zero for Posix hosts, but can be 2 for MS-Windows\n     and MS-DOS X:/foo/bar file names.  */\n  prefix_len = FILE_SYSTEM_PREFIX_LEN (name);\n\n  if (!IS_ABSOLUTE_FILE_NAME (name))\n    {\n      if (!__getcwd (rpath, path_max))\n        {\n          rpath[0] = '\\0';\n          goto error;\n        }\n      dest = strchr (rpath, '\\0');\n      start = name;\n      prefix_len = FILE_SYSTEM_PREFIX_LEN (rpath);\n    }\n  else\n    {\n      dest = rpath;\n      if (prefix_len)\n        {\n          memcpy (rpath, name, prefix_len);\n          dest += prefix_len;\n        }\n      *dest++ = '/';\n      if (DOUBLE_SLASH_IS_DISTINCT_ROOT)\n        {\n          if (ISSLASH (name[1]) && !ISSLASH (name[2]) && !prefix_len)\n            *dest++ = '/';\n          *dest = '\\0';\n        }\n      start = name + prefix_len;\n    }\n\n  for (end = start; *start; start = end)\n    {\n#ifdef _LIBC\n      struct stat64 st;\n#else\n      struct stat st;\n#endif\n\n      /* Skip sequence of multiple path-separators.  */\n      while (ISSLASH (*start))\n        ++start;\n\n      /* Find end of path component.  */\n      for (end = start; *end && !ISSLASH (*end); ++end)\n        /* Nothing.  */;\n\n      if (end - start == 0)\n        break;\n      else if (end - start == 1 && start[0] == '.')\n        /* nothing */;\n      else if (end - start == 2 && start[0] == '.' && start[1] == '.')\n        {\n          /* Back up to previous component, ignore if at root already.  */\n          if (dest > rpath + prefix_len + 1)\n            for (--dest; dest > rpath && !ISSLASH (dest[-1]); --dest)\n              continue;\n          if (DOUBLE_SLASH_IS_DISTINCT_ROOT\n              && dest == rpath + 1 && !prefix_len\n              && ISSLASH (*dest) && !ISSLASH (dest[1]))\n            dest++;\n        }\n      else\n        {\n          size_t new_size;\n\n          if (!ISSLASH (dest[-1]))\n            *dest++ = '/';\n\n          if (dest + (end - start) >= rpath_limit)\n            {\n              ptrdiff_t dest_offset = dest - rpath;\n              char *new_rpath;\n\n              if (resolved)\n                {\n                  __set_errno (ENAMETOOLONG);\n                  if (dest > rpath + prefix_len + 1)\n                    dest--;\n                  *dest = '\\0';\n                  goto error;\n                }\n              new_size = rpath_limit - rpath;\n              if (end - start + 1 > path_max)\n                new_size += end - start + 1;\n              else\n                new_size += path_max;\n              new_rpath = (char *) realloc (rpath, new_size);\n              if (new_rpath == NULL)\n                {\n                  alloc_failed ();\n                  goto error;\n                }\n              rpath = new_rpath;\n              rpath_limit = rpath + new_size;\n\n              dest = rpath + dest_offset;\n            }\n\n#ifdef _LIBC\n          dest = __mempcpy (dest, start, end - start);\n#else\n          memcpy (dest, start, end - start);\n          dest += end - start;\n#endif\n          *dest = '\\0';\n\n#ifdef _LIBC\n          if (__lxstat64 (_STAT_VER, rpath, &st) < 0)\n#else\n          if (lstat (rpath, &st) < 0)\n#endif\n            goto error;\n\n          if (S_ISLNK (st.st_mode))\n            {\n              char *buf;\n              size_t len;\n              ssize_t n;\n\n              if (++num_links > MAXSYMLINKS)\n                {\n                  __set_errno (ELOOP);\n                  goto error;\n                }\n\n              buf = malloca (path_max);\n              if (!buf)\n                {\n                  __set_errno (ENOMEM);\n                  goto error;\n                }\n\n              n = __readlink (rpath, buf, path_max - 1);\n              if (n < 0)\n                {\n                  int saved_errno = errno;\n                  freea (buf);\n                  __set_errno (saved_errno);\n                  goto error;\n                }\n              buf[n] = '\\0';\n\n              if (!extra_buf)\n                {\n                  extra_buf = malloca (path_max);\n                  if (!extra_buf)\n                    {\n                      freea (buf);\n                      __set_errno (ENOMEM);\n                      goto error;\n                    }\n                }\n\n              len = strlen (end);\n              /* Check that n + len + 1 doesn't overflow and is <= path_max. */\n              if (n >= SIZE_MAX - len || n + len >= path_max)\n                {\n                  freea (buf);\n                  __set_errno (ENAMETOOLONG);\n                  goto error;\n                }\n\n              /* Careful here, end may be a pointer into extra_buf... */\n              memmove (&extra_buf[n], end, len + 1);\n              name = end = memcpy (extra_buf, buf, n);\n\n              if (IS_ABSOLUTE_FILE_NAME (buf))\n                {\n                  size_t pfxlen = FILE_SYSTEM_PREFIX_LEN (buf);\n\n                  if (pfxlen)\n                    memcpy (rpath, buf, pfxlen);\n                  dest = rpath + pfxlen;\n                  *dest++ = '/'; /* It's an absolute symlink */\n                  if (DOUBLE_SLASH_IS_DISTINCT_ROOT)\n                    {\n                      if (ISSLASH (buf[1]) && !ISSLASH (buf[2]) && !pfxlen)\n                        *dest++ = '/';\n                      *dest = '\\0';\n                    }\n                  /* Install the new prefix to be in effect hereafter.  */\n                  prefix_len = pfxlen;\n                }\n              else\n                {\n                  /* Back up to previous component, ignore if at root\n                     already: */\n                  if (dest > rpath + prefix_len + 1)\n                    for (--dest; dest > rpath && !ISSLASH (dest[-1]); --dest)\n                      continue;\n                  if (DOUBLE_SLASH_IS_DISTINCT_ROOT && dest == rpath + 1\n                      && ISSLASH (*dest) && !ISSLASH (dest[1]) && !prefix_len)\n                    dest++;\n                }\n            }\n          else if (!S_ISDIR (st.st_mode) && *end != '\\0')\n            {\n              __set_errno (ENOTDIR);\n              goto error;\n            }\n        }\n    }\n  if (dest > rpath + prefix_len + 1 && ISSLASH (dest[-1]))\n    --dest;\n  if (DOUBLE_SLASH_IS_DISTINCT_ROOT && dest == rpath + 1 && !prefix_len\n      && ISSLASH (*dest) && !ISSLASH (dest[1]))\n    dest++;\n  *dest = '\\0';\n\n  if (extra_buf)\n    freea (extra_buf);\n\n  return rpath;\n\nerror:\n  {\n    int saved_errno = errno;\n    if (extra_buf)\n      freea (extra_buf);\n    if (resolved == NULL)\n      free (rpath);\n    __set_errno (saved_errno);\n  }\n  return NULL;\n}\nversioned_symbol (libc, __realpath, realpath, GLIBC_2_3);\n#endif /* !FUNC_REALPATH_WORKS || defined _LIBC */\n\n\n#if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_3)\nchar *\nattribute_compat_text_section\n__old_realpath (const char *name, char *resolved)\n{\n  if (resolved == NULL)\n    {\n      __set_errno (EINVAL);\n      return NULL;\n    }\n\n  return __realpath (name, resolved);\n}\ncompat_symbol (libc, __old_realpath, realpath, GLIBC_2_0);\n#endif\n\n\nchar *\n__canonicalize_file_name (const char *name)\n{\n  return __realpath (name, NULL);\n}\nweak_alias (__canonicalize_file_name, canonicalize_file_name)\n\n#else\n\n/* This declaration is solely to ensure that after preprocessing\n   this file is never empty.  */\ntypedef int dummy;\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/careadlinkat.c",
    "content": "/* Read symbolic links into a buffer without size limitation, relative to fd.\n\n   Copyright (C) 2001, 2003-2004, 2007, 2009-2017 Free Software Foundation,\n   Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Paul Eggert, Bruno Haible, and Jim Meyering.  */\n\n#include <config.h>\n\n#include \"careadlinkat.h\"\n\n#include <errno.h>\n#include <limits.h>\n#include <string.h>\n#include <unistd.h>\n\n/* Define this independently so that stdint.h is not a prerequisite.  */\n#ifndef SIZE_MAX\n# define SIZE_MAX ((size_t) -1)\n#endif\n\n#ifndef SSIZE_MAX\n# define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))\n#endif\n\n#include \"allocator.h\"\n\n/* Assuming the current directory is FD, get the symbolic link value\n   of FILENAME as a null-terminated string and put it into a buffer.\n   If FD is AT_FDCWD, FILENAME is interpreted relative to the current\n   working directory, as in openat.\n\n   If the link is small enough to fit into BUFFER put it there.\n   BUFFER's size is BUFFER_SIZE, and BUFFER can be null\n   if BUFFER_SIZE is zero.\n\n   If the link is not small, put it into a dynamically allocated\n   buffer managed by ALLOC.  It is the caller's responsibility to free\n   the returned value if it is nonnull and is not BUFFER.  A null\n   ALLOC stands for the standard allocator.\n\n   The PREADLINKAT function specifies how to read links.  It operates\n   like POSIX readlinkat()\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/readlink.html>\n   but can assume that its first argument is the same as FD.\n\n   If successful, return the buffer address; otherwise return NULL and\n   set errno.  */\n\nchar *\ncareadlinkat (int fd, char const *filename,\n              char *buffer, size_t buffer_size,\n              struct allocator const *alloc,\n              ssize_t (*preadlinkat) (int, char const *, char *, size_t))\n{\n  char *buf;\n  size_t buf_size;\n  size_t buf_size_max =\n    SSIZE_MAX < SIZE_MAX ? (size_t) SSIZE_MAX + 1 : SIZE_MAX;\n  char stack_buf[1024];\n\n  if (! alloc)\n    alloc = &stdlib_allocator;\n\n  if (! buffer_size)\n    {\n      /* Allocate the initial buffer on the stack.  This way, in the\n         common case of a symlink of small size, we get away with a\n         single small malloc() instead of a big malloc() followed by a\n         shrinking realloc().  */\n      buffer = stack_buf;\n      buffer_size = sizeof stack_buf;\n    }\n\n  buf = buffer;\n  buf_size = buffer_size;\n\n  do\n    {\n      /* Attempt to read the link into the current buffer.  */\n      ssize_t link_length = preadlinkat (fd, filename, buf, buf_size);\n      size_t link_size;\n      if (link_length < 0)\n        {\n          /* On AIX 5L v5.3 and HP-UX 11i v2 04/09, readlink returns -1\n             with errno == ERANGE if the buffer is too small.  */\n          int readlinkat_errno = errno;\n          if (readlinkat_errno != ERANGE)\n            {\n              if (buf != buffer)\n                {\n                  alloc->free (buf);\n                  errno = readlinkat_errno;\n                }\n              return NULL;\n            }\n        }\n\n      link_size = link_length;\n\n      if (link_size < buf_size)\n        {\n          buf[link_size++] = '\\0';\n\n          if (buf == stack_buf)\n            {\n              char *b = (char *) alloc->allocate (link_size);\n              buf_size = link_size;\n              if (! b)\n                break;\n              memcpy (b, buf, link_size);\n              buf = b;\n            }\n          else if (link_size < buf_size && buf != buffer && alloc->reallocate)\n            {\n              /* Shrink BUF before returning it.  */\n              char *b = (char *) alloc->reallocate (buf, link_size);\n              if (b)\n                buf = b;\n            }\n\n          return buf;\n        }\n\n      if (buf != buffer)\n        alloc->free (buf);\n\n      if (buf_size <= buf_size_max / 2)\n        buf_size *= 2;\n      else if (buf_size < buf_size_max)\n        buf_size = buf_size_max;\n      else if (buf_size_max < SIZE_MAX)\n        {\n          errno = ENAMETOOLONG;\n          return NULL;\n        }\n      else\n        break;\n      buf = (char *) alloc->allocate (buf_size);\n    }\n  while (buf);\n\n  if (alloc->die)\n    alloc->die (buf_size);\n  errno = ENOMEM;\n  return NULL;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/careadlinkat.h",
    "content": "/* Read symbolic links into a buffer without size limitation, relative to fd.\n\n   Copyright (C) 2011-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Paul Eggert, Bruno Haible, and Jim Meyering.  */\n\n#ifndef _GL_CAREADLINKAT_H\n#define _GL_CAREADLINKAT_H\n\n#include <fcntl.h>\n#include <unistd.h>\n\nstruct allocator;\n\n/* Assuming the current directory is FD, get the symbolic link value\n   of FILENAME as a null-terminated string and put it into a buffer.\n   If FD is AT_FDCWD, FILENAME is interpreted relative to the current\n   working directory, as in openat.\n\n   If the link is small enough to fit into BUFFER put it there.\n   BUFFER's size is BUFFER_SIZE, and BUFFER can be null\n   if BUFFER_SIZE is zero.\n\n   If the link is not small, put it into a dynamically allocated\n   buffer managed by ALLOC.  It is the caller's responsibility to free\n   the returned value if it is nonnull and is not BUFFER.\n\n   The PREADLINKAT function specifies how to read links.  It operates\n   like POSIX readlinkat()\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/readlink.html>\n   but can assume that its first argument is the same as FD.\n\n   If successful, return the buffer address; otherwise return NULL and\n   set errno.  */\n\nchar *careadlinkat (int fd, char const *filename,\n                    char *buffer, size_t buffer_size,\n                    struct allocator const *alloc,\n                    ssize_t (*preadlinkat) (int, char const *,\n                                            char *, size_t));\n\n/* Suitable value for careadlinkat's FD argument.  */\n#if HAVE_READLINKAT\n/* AT_FDCWD is declared in <fcntl.h>.  */\n#else\n/* Define AT_FDCWD independently, so that the careadlinkat module does\n   not depend on the fcntl-h module.  We might as well use the same value\n   as fcntl-h.  */\n# ifndef AT_FDCWD\n#  define AT_FDCWD (-3041965)\n# endif\n#endif\n\n#endif /* _GL_CAREADLINKAT_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/dirname-lgpl.c",
    "content": "/* dirname.c -- return all but the last element in a file name\n\n   Copyright (C) 1990, 1998, 2000-2001, 2003-2006, 2009-2017 Free Software\n   Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n#include \"dirname.h\"\n\n#include <stdlib.h>\n#include <string.h>\n\n/* Return the length of the prefix of FILE that will be used by\n   dir_name.  If FILE is in the working directory, this returns zero\n   even though 'dir_name (FILE)' will return \".\".  Works properly even\n   if there are trailing slashes (by effectively ignoring them).  */\n\nsize_t\ndir_len (char const *file)\n{\n  size_t prefix_length = FILE_SYSTEM_PREFIX_LEN (file);\n  size_t length;\n\n  /* Advance prefix_length beyond important leading slashes.  */\n  prefix_length += (prefix_length != 0\n                    ? (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE\n                       && ISSLASH (file[prefix_length]))\n                    : (ISSLASH (file[0])\n                       ? ((DOUBLE_SLASH_IS_DISTINCT_ROOT\n                           && ISSLASH (file[1]) && ! ISSLASH (file[2])\n                           ? 2 : 1))\n                       : 0));\n\n  /* Strip the basename and any redundant slashes before it.  */\n  for (length = last_component (file) - file;\n       prefix_length < length; length--)\n    if (! ISSLASH (file[length - 1]))\n      break;\n  return length;\n}\n\n\n/* In general, we can't use the builtin 'dirname' function if available,\n   since it has different meanings in different environments.\n   In some environments the builtin 'dirname' modifies its argument.\n\n   Return the leading directories part of FILE, allocated with malloc.\n   Works properly even if there are trailing slashes (by effectively\n   ignoring them).  Return NULL on failure.\n\n   If lstat (FILE) would succeed, then { chdir (dir_name (FILE));\n   lstat (base_name (FILE)); } will access the same file.  Likewise,\n   if the sequence { chdir (dir_name (FILE));\n   rename (base_name (FILE), \"foo\"); } succeeds, you have renamed FILE\n   to \"foo\" in the same directory FILE was in.  */\n\nchar *\nmdir_name (char const *file)\n{\n  size_t length = dir_len (file);\n  bool append_dot = (length == 0\n                     || (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE\n                         && length == FILE_SYSTEM_PREFIX_LEN (file)\n                         && file[2] != '\\0' && ! ISSLASH (file[2])));\n  char *dir = malloc (length + append_dot + 1);\n  if (!dir)\n    return NULL;\n  memcpy (dir, file, length);\n  if (append_dot)\n    dir[length++] = '.';\n  dir[length] = '\\0';\n  return dir;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/dirname.h",
    "content": "/*  Take file names apart into directory and base names.\n\n    Copyright (C) 1998, 2001, 2003-2006, 2009-2017 Free Software Foundation,\n    Inc.\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation; either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef DIRNAME_H_\n# define DIRNAME_H_ 1\n\n# include <stdbool.h>\n# include <stddef.h>\n# include \"dosname.h\"\n\n# ifndef DIRECTORY_SEPARATOR\n#  define DIRECTORY_SEPARATOR '/'\n# endif\n\n# ifndef DOUBLE_SLASH_IS_DISTINCT_ROOT\n#  define DOUBLE_SLASH_IS_DISTINCT_ROOT 0\n# endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n# if GNULIB_DIRNAME\nchar *base_name (char const *file);\nchar *dir_name (char const *file);\n# endif\n\nchar *mdir_name (char const *file);\nsize_t base_len (char const *file) _GL_ATTRIBUTE_PURE;\nsize_t dir_len (char const *file) _GL_ATTRIBUTE_PURE;\nchar *last_component (char const *file) _GL_ATTRIBUTE_PURE;\n\nbool strip_trailing_slashes (char *file);\n\n#ifdef __cplusplus\n} /* extern \"C\" */\n#endif\n\n#endif /* not DIRNAME_H_ */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/dosname.h",
    "content": "/* File names on MS-DOS/Windows systems.\n\n   Copyright (C) 2000-2001, 2004-2006, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n   From Paul Eggert and Jim Meyering.  */\n\n#ifndef _DOSNAME_H\n#define _DOSNAME_H\n\n#if (defined _WIN32 || defined __WIN32__ ||     \\\n     defined __MSDOS__ || defined __CYGWIN__ || \\\n     defined __EMX__ || defined __DJGPP__)\n   /* This internal macro assumes ASCII, but all hosts that support drive\n      letters use ASCII.  */\n# define _IS_DRIVE_LETTER(C) (((unsigned int) (C) | ('a' - 'A')) - 'a'  \\\n                              <= 'z' - 'a')\n# define FILE_SYSTEM_PREFIX_LEN(Filename) \\\n          (_IS_DRIVE_LETTER ((Filename)[0]) && (Filename)[1] == ':' ? 2 : 0)\n# ifndef __CYGWIN__\n#  define FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE 1\n# endif\n# define ISSLASH(C) ((C) == '/' || (C) == '\\\\')\n#else\n# define FILE_SYSTEM_PREFIX_LEN(Filename) 0\n# define ISSLASH(C) ((C) == '/')\n#endif\n\n#ifndef FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE\n# define FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE 0\n#endif\n\n#if FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE\n#  define IS_ABSOLUTE_FILE_NAME(F) ISSLASH ((F)[FILE_SYSTEM_PREFIX_LEN (F)])\n# else\n#  define IS_ABSOLUTE_FILE_NAME(F)                              \\\n     (ISSLASH ((F)[0]) || FILE_SYSTEM_PREFIX_LEN (F) != 0)\n#endif\n#define IS_RELATIVE_FILE_NAME(F) (! IS_ABSOLUTE_FILE_NAME (F))\n\n#endif /* DOSNAME_H_ */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/errno.in.h",
    "content": "/* A POSIX-like <errno.h>.\n\n   Copyright (C) 2008-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _@GUARD_PREFIX@_ERRNO_H\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n/* The include_next requires a split double-inclusion guard.  */\n#@INCLUDE_NEXT@ @NEXT_ERRNO_H@\n\n#ifndef _@GUARD_PREFIX@_ERRNO_H\n#define _@GUARD_PREFIX@_ERRNO_H\n\n\n/* On native Windows platforms, many macros are not defined.  */\n# if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n\n/* These are the same values as defined by MSVC 10, for interoperability.  */\n\n#  ifndef ENOMSG\n#   define ENOMSG    122\n#   define GNULIB_defined_ENOMSG 1\n#  endif\n\n#  ifndef EIDRM\n#   define EIDRM     111\n#   define GNULIB_defined_EIDRM 1\n#  endif\n\n#  ifndef ENOLINK\n#   define ENOLINK   121\n#   define GNULIB_defined_ENOLINK 1\n#  endif\n\n#  ifndef EPROTO\n#   define EPROTO    134\n#   define GNULIB_defined_EPROTO 1\n#  endif\n\n#  ifndef EBADMSG\n#   define EBADMSG   104\n#   define GNULIB_defined_EBADMSG 1\n#  endif\n\n#  ifndef EOVERFLOW\n#   define EOVERFLOW 132\n#   define GNULIB_defined_EOVERFLOW 1\n#  endif\n\n#  ifndef ENOTSUP\n#   define ENOTSUP   129\n#   define GNULIB_defined_ENOTSUP 1\n#  endif\n\n#  ifndef ENETRESET\n#   define ENETRESET 117\n#   define GNULIB_defined_ENETRESET 1\n#  endif\n\n#  ifndef ECONNABORTED\n#   define ECONNABORTED 106\n#   define GNULIB_defined_ECONNABORTED 1\n#  endif\n\n#  ifndef ECANCELED\n#   define ECANCELED 105\n#   define GNULIB_defined_ECANCELED 1\n#  endif\n\n#  ifndef EOWNERDEAD\n#   define EOWNERDEAD 133\n#   define GNULIB_defined_EOWNERDEAD 1\n#  endif\n\n#  ifndef ENOTRECOVERABLE\n#   define ENOTRECOVERABLE 127\n#   define GNULIB_defined_ENOTRECOVERABLE 1\n#  endif\n\n#  ifndef EINPROGRESS\n#   define EINPROGRESS     112\n#   define EALREADY        103\n#   define ENOTSOCK        128\n#   define EDESTADDRREQ    109\n#   define EMSGSIZE        115\n#   define EPROTOTYPE      136\n#   define ENOPROTOOPT     123\n#   define EPROTONOSUPPORT 135\n#   define EOPNOTSUPP      130\n#   define EAFNOSUPPORT    102\n#   define EADDRINUSE      100\n#   define EADDRNOTAVAIL   101\n#   define ENETDOWN        116\n#   define ENETUNREACH     118\n#   define ECONNRESET      108\n#   define ENOBUFS         119\n#   define EISCONN         113\n#   define ENOTCONN        126\n#   define ETIMEDOUT       138\n#   define ECONNREFUSED    107\n#   define ELOOP           114\n#   define EHOSTUNREACH    110\n#   define EWOULDBLOCK     140\n#   define GNULIB_defined_ESOCK 1\n#  endif\n\n#  ifndef ETXTBSY\n#   define ETXTBSY         139\n#   define ENODATA         120  /* not required by POSIX */\n#   define ENOSR           124  /* not required by POSIX */\n#   define ENOSTR          125  /* not required by POSIX */\n#   define ETIME           137  /* not required by POSIX */\n#   define EOTHER          131  /* not required by POSIX */\n#   define GNULIB_defined_ESTREAMS 1\n#  endif\n\n/* These are intentionally the same values as the WSA* error numbers, defined\n   in <winsock2.h>.  */\n#  define ESOCKTNOSUPPORT 10044  /* not required by POSIX */\n#  define EPFNOSUPPORT    10046  /* not required by POSIX */\n#  define ESHUTDOWN       10058  /* not required by POSIX */\n#  define ETOOMANYREFS    10059  /* not required by POSIX */\n#  define EHOSTDOWN       10064  /* not required by POSIX */\n#  define EPROCLIM        10067  /* not required by POSIX */\n#  define EUSERS          10068  /* not required by POSIX */\n#  define EDQUOT          10069\n#  define ESTALE          10070\n#  define EREMOTE         10071  /* not required by POSIX */\n#  define GNULIB_defined_EWINSOCK 1\n\n# endif\n\n\n/* On OSF/1 5.1, when _XOPEN_SOURCE_EXTENDED is not defined, the macros\n   EMULTIHOP, ENOLINK, EOVERFLOW are not defined.  */\n# if @EMULTIHOP_HIDDEN@\n#  define EMULTIHOP @EMULTIHOP_VALUE@\n#  define GNULIB_defined_EMULTIHOP 1\n# endif\n# if @ENOLINK_HIDDEN@\n#  define ENOLINK   @ENOLINK_VALUE@\n#  define GNULIB_defined_ENOLINK 1\n# endif\n# if @EOVERFLOW_HIDDEN@\n#  define EOVERFLOW @EOVERFLOW_VALUE@\n#  define GNULIB_defined_EOVERFLOW 1\n# endif\n\n\n/* On OpenBSD 4.0 and on native Windows, the macros ENOMSG, EIDRM, ENOLINK,\n   EPROTO, EMULTIHOP, EBADMSG, EOVERFLOW, ENOTSUP, ECANCELED are not defined.\n   Likewise, on NonStop Kernel, EDQUOT is not defined.\n   Define them here.  Values >= 2000 seem safe to use: Solaris ESTALE = 151,\n   HP-UX EWOULDBLOCK = 246, IRIX EDQUOT = 1133.\n\n   Note: When one of these systems defines some of these macros some day,\n   binaries will have to be recompiled so that they recognizes the new\n   errno values from the system.  */\n\n# ifndef ENOMSG\n#  define ENOMSG    2000\n#  define GNULIB_defined_ENOMSG 1\n# endif\n\n# ifndef EIDRM\n#  define EIDRM     2001\n#  define GNULIB_defined_EIDRM 1\n# endif\n\n# ifndef ENOLINK\n#  define ENOLINK   2002\n#  define GNULIB_defined_ENOLINK 1\n# endif\n\n# ifndef EPROTO\n#  define EPROTO    2003\n#  define GNULIB_defined_EPROTO 1\n# endif\n\n# ifndef EMULTIHOP\n#  define EMULTIHOP 2004\n#  define GNULIB_defined_EMULTIHOP 1\n# endif\n\n# ifndef EBADMSG\n#  define EBADMSG   2005\n#  define GNULIB_defined_EBADMSG 1\n# endif\n\n# ifndef EOVERFLOW\n#  define EOVERFLOW 2006\n#  define GNULIB_defined_EOVERFLOW 1\n# endif\n\n# ifndef ENOTSUP\n#  define ENOTSUP   2007\n#  define GNULIB_defined_ENOTSUP 1\n# endif\n\n# ifndef ENETRESET\n#  define ENETRESET 2011\n#  define GNULIB_defined_ENETRESET 1\n# endif\n\n# ifndef ECONNABORTED\n#  define ECONNABORTED 2012\n#  define GNULIB_defined_ECONNABORTED 1\n# endif\n\n# ifndef ESTALE\n#  define ESTALE    2009\n#  define GNULIB_defined_ESTALE 1\n# endif\n\n# ifndef EDQUOT\n#  define EDQUOT 2010\n#  define GNULIB_defined_EDQUOT 1\n# endif\n\n# ifndef ECANCELED\n#  define ECANCELED 2008\n#  define GNULIB_defined_ECANCELED 1\n# endif\n\n/* On many platforms, the macros EOWNERDEAD and ENOTRECOVERABLE are not\n   defined.  */\n\n# ifndef EOWNERDEAD\n#  if defined __sun\n    /* Use the same values as defined for Solaris >= 8, for\n       interoperability.  */\n#   define EOWNERDEAD      58\n#   define ENOTRECOVERABLE 59\n#  elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n    /* We have a conflict here: pthreads-win32 defines these values\n       differently than MSVC 10.  It's hairy to decide which one to use.  */\n#   if defined __MINGW32__ && !defined USE_WINDOWS_THREADS\n     /* Use the same values as defined by pthreads-win32, for\n        interoperability.  */\n#    define EOWNERDEAD      43\n#    define ENOTRECOVERABLE 44\n#   else\n     /* Use the same values as defined by MSVC 10, for\n        interoperability.  */\n#    define EOWNERDEAD      133\n#    define ENOTRECOVERABLE 127\n#   endif\n#  else\n#   define EOWNERDEAD      2013\n#   define ENOTRECOVERABLE 2014\n#  endif\n#  define GNULIB_defined_EOWNERDEAD 1\n#  define GNULIB_defined_ENOTRECOVERABLE 1\n# endif\n\n# ifndef EILSEQ\n#  define EILSEQ 2015\n#  define GNULIB_defined_EILSEQ 1\n# endif\n\n#endif /* _@GUARD_PREFIX@_ERRNO_H */\n#endif /* _@GUARD_PREFIX@_ERRNO_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/error.c",
    "content": "/* Error handler for noninteractive utilities\n   Copyright (C) 1990-1998, 2000-2007, 2009-2017 Free Software Foundation, Inc.\n   This file is part of the GNU C Library.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by David MacKenzie <djm@gnu.ai.mit.edu>.  */\n\n#if !_LIBC\n# include <config.h>\n#endif\n\n#include \"error.h\"\n\n#include <stdarg.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n\n#if !_LIBC && ENABLE_NLS\n# include \"gettext.h\"\n# define _(msgid) gettext (msgid)\n#endif\n\n#ifdef _LIBC\n# include <libintl.h>\n# include <stdbool.h>\n# include <stdint.h>\n# include <wchar.h>\n# define mbsrtowcs __mbsrtowcs\n# define USE_UNLOCKED_IO 0\n# define _GL_ATTRIBUTE_FORMAT_PRINTF(a, b)\n# define _GL_ARG_NONNULL(a)\n#else\n# include \"getprogname.h\"\n#endif\n\n#if USE_UNLOCKED_IO\n# include \"unlocked-io.h\"\n#endif\n\n#ifndef _\n# define _(String) String\n#endif\n\n/* If NULL, error will flush stdout, then print on stderr the program\n   name, a colon and a space.  Otherwise, error will call this\n   function without parameters instead.  */\nvoid (*error_print_progname) (void);\n\n/* This variable is incremented each time 'error' is called.  */\nunsigned int error_message_count;\n\n#ifdef _LIBC\n/* In the GNU C library, there is a predefined variable for this.  */\n\n# define program_name program_invocation_name\n# include <errno.h>\n# include <limits.h>\n# include <libio/libioP.h>\n\n/* In GNU libc we want do not want to use the common name 'error' directly.\n   Instead make it a weak alias.  */\nextern void __error (int status, int errnum, const char *message, ...)\n     __attribute__ ((__format__ (__printf__, 3, 4)));\nextern void __error_at_line (int status, int errnum, const char *file_name,\n                             unsigned int line_number, const char *message,\n                             ...)\n     __attribute__ ((__format__ (__printf__, 5, 6)));\n# define error __error\n# define error_at_line __error_at_line\n\n# include <libio/iolibio.h>\n# define fflush(s) _IO_fflush (s)\n# undef putc\n# define putc(c, fp) _IO_putc (c, fp)\n\n# include <bits/libc-lock.h>\n\n#else /* not _LIBC */\n\n# include <fcntl.h>\n# include <unistd.h>\n\n# if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n/* Get declarations of the native Windows API functions.  */\n#  define WIN32_LEAN_AND_MEAN\n#  include <windows.h>\n/* Get _get_osfhandle.  */\n#  include \"msvc-nothrow.h\"\n# endif\n\n/* The gnulib override of fcntl is not needed in this file.  */\n# undef fcntl\n\n# if !HAVE_DECL_STRERROR_R\n#  ifndef HAVE_DECL_STRERROR_R\n\"this configure-time declaration test was not run\"\n#  endif\n#  if STRERROR_R_CHAR_P\nchar *strerror_r ();\n#  else\nint strerror_r ();\n#  endif\n# endif\n\n#define program_name getprogname ()\n\n# if HAVE_STRERROR_R || defined strerror_r\n#  define __strerror_r strerror_r\n# endif /* HAVE_STRERROR_R || defined strerror_r */\n#endif  /* not _LIBC */\n\n#if !_LIBC\n/* Return non-zero if FD is open.  */\nstatic int\nis_open (int fd)\n{\n# if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n  /* On native Windows: The initial state of unassigned standard file\n     descriptors is that they are open but point to an INVALID_HANDLE_VALUE.\n     There is no fcntl, and the gnulib replacement fcntl does not support\n     F_GETFL.  */\n  return (HANDLE) _get_osfhandle (fd) != INVALID_HANDLE_VALUE;\n# else\n#  ifndef F_GETFL\n#   error Please port fcntl to your platform\n#  endif\n  return 0 <= fcntl (fd, F_GETFL);\n# endif\n}\n#endif\n\nstatic void\nflush_stdout (void)\n{\n#if !_LIBC\n  int stdout_fd;\n\n# if GNULIB_FREOPEN_SAFER\n  /* Use of gnulib's freopen-safer module normally ensures that\n       fileno (stdout) == 1\n     whenever stdout is open.  */\n  stdout_fd = STDOUT_FILENO;\n# else\n  /* POSIX states that fileno (stdout) after fclose is unspecified.  But in\n     practice it is not a problem, because stdout is statically allocated and\n     the fd of a FILE stream is stored as a field in its allocated memory.  */\n  stdout_fd = fileno (stdout);\n# endif\n  /* POSIX states that fflush (stdout) after fclose is unspecified; it\n     is safe in glibc, but not on all other platforms.  fflush (NULL)\n     is always defined, but too draconian.  */\n  if (0 <= stdout_fd && is_open (stdout_fd))\n#endif\n    fflush (stdout);\n}\n\nstatic void\nprint_errno_message (int errnum)\n{\n  char const *s;\n\n#if defined HAVE_STRERROR_R || _LIBC\n  char errbuf[1024];\n# if _LIBC || STRERROR_R_CHAR_P\n  s = __strerror_r (errnum, errbuf, sizeof errbuf);\n# else\n  if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)\n    s = errbuf;\n  else\n    s = 0;\n# endif\n#else\n  s = strerror (errnum);\n#endif\n\n#if !_LIBC\n  if (! s)\n    s = _(\"Unknown system error\");\n#endif\n\n#if _LIBC\n  __fxprintf (NULL, \": %s\", s);\n#else\n  fprintf (stderr, \": %s\", s);\n#endif\n}\n\nstatic void _GL_ATTRIBUTE_FORMAT_PRINTF (3, 0) _GL_ARG_NONNULL ((3))\nerror_tail (int status, int errnum, const char *message, va_list args)\n{\n#if _LIBC\n  if (_IO_fwide (stderr, 0) > 0)\n    {\n      size_t len = strlen (message) + 1;\n      wchar_t *wmessage = NULL;\n      mbstate_t st;\n      size_t res;\n      const char *tmp;\n      bool use_malloc = false;\n\n      while (1)\n        {\n          if (__libc_use_alloca (len * sizeof (wchar_t)))\n            wmessage = (wchar_t *) alloca (len * sizeof (wchar_t));\n          else\n            {\n              if (!use_malloc)\n                wmessage = NULL;\n\n              wchar_t *p = (wchar_t *) realloc (wmessage,\n                                                len * sizeof (wchar_t));\n              if (p == NULL)\n                {\n                  free (wmessage);\n                  fputws_unlocked (L\"out of memory\\n\", stderr);\n                  return;\n                }\n              wmessage = p;\n              use_malloc = true;\n            }\n\n          memset (&st, '\\0', sizeof (st));\n          tmp = message;\n\n          res = mbsrtowcs (wmessage, &tmp, len, &st);\n          if (res != len)\n            break;\n\n          if (__builtin_expect (len >= SIZE_MAX / sizeof (wchar_t) / 2, 0))\n            {\n              /* This really should not happen if everything is fine.  */\n              res = (size_t) -1;\n              break;\n            }\n\n          len *= 2;\n        }\n\n      if (res == (size_t) -1)\n        {\n          /* The string cannot be converted.  */\n          if (use_malloc)\n            {\n              free (wmessage);\n              use_malloc = false;\n            }\n          wmessage = (wchar_t *) L\"???\";\n        }\n\n      __vfwprintf (stderr, wmessage, args);\n\n      if (use_malloc)\n        free (wmessage);\n    }\n  else\n#endif\n    vfprintf (stderr, message, args);\n  va_end (args);\n\n  ++error_message_count;\n  if (errnum)\n    print_errno_message (errnum);\n#if _LIBC\n  __fxprintf (NULL, \"\\n\");\n#else\n  putc ('\\n', stderr);\n#endif\n  fflush (stderr);\n  if (status)\n    exit (status);\n}\n\n\n/* Print the program name and error message MESSAGE, which is a printf-style\n   format string with optional args.\n   If ERRNUM is nonzero, print its corresponding system error message.\n   Exit with status STATUS if it is nonzero.  */\nvoid\nerror (int status, int errnum, const char *message, ...)\n{\n  va_list args;\n\n#if defined _LIBC && defined __libc_ptf_call\n  /* We do not want this call to be cut short by a thread\n     cancellation.  Therefore disable cancellation for now.  */\n  int state = PTHREAD_CANCEL_ENABLE;\n  __libc_ptf_call (pthread_setcancelstate, (PTHREAD_CANCEL_DISABLE, &state),\n                   0);\n#endif\n\n  flush_stdout ();\n#ifdef _LIBC\n  _IO_flockfile (stderr);\n#endif\n  if (error_print_progname)\n    (*error_print_progname) ();\n  else\n    {\n#if _LIBC\n      __fxprintf (NULL, \"%s: \", program_name);\n#else\n      fprintf (stderr, \"%s: \", program_name);\n#endif\n    }\n\n  va_start (args, message);\n  error_tail (status, errnum, message, args);\n\n#ifdef _LIBC\n  _IO_funlockfile (stderr);\n# ifdef __libc_ptf_call\n  __libc_ptf_call (pthread_setcancelstate, (state, NULL), 0);\n# endif\n#endif\n}\n\f\n/* Sometimes we want to have at most one error per line.  This\n   variable controls whether this mode is selected or not.  */\nint error_one_per_line;\n\nvoid\nerror_at_line (int status, int errnum, const char *file_name,\n               unsigned int line_number, const char *message, ...)\n{\n  va_list args;\n\n  if (error_one_per_line)\n    {\n      static const char *old_file_name;\n      static unsigned int old_line_number;\n\n      if (old_line_number == line_number\n          && (file_name == old_file_name\n              || (old_file_name != NULL\n                  && file_name != NULL\n                  && strcmp (old_file_name, file_name) == 0)))\n\n        /* Simply return and print nothing.  */\n        return;\n\n      old_file_name = file_name;\n      old_line_number = line_number;\n    }\n\n#if defined _LIBC && defined __libc_ptf_call\n  /* We do not want this call to be cut short by a thread\n     cancellation.  Therefore disable cancellation for now.  */\n  int state = PTHREAD_CANCEL_ENABLE;\n  __libc_ptf_call (pthread_setcancelstate, (PTHREAD_CANCEL_DISABLE, &state),\n                   0);\n#endif\n\n  flush_stdout ();\n#ifdef _LIBC\n  _IO_flockfile (stderr);\n#endif\n  if (error_print_progname)\n    (*error_print_progname) ();\n  else\n    {\n#if _LIBC\n      __fxprintf (NULL, \"%s:\", program_name);\n#else\n      fprintf (stderr, \"%s:\", program_name);\n#endif\n    }\n\n#if _LIBC\n  __fxprintf (NULL, file_name != NULL ? \"%s:%u: \" : \" \",\n              file_name, line_number);\n#else\n  fprintf (stderr, file_name != NULL ? \"%s:%u: \" : \" \",\n           file_name, line_number);\n#endif\n\n  va_start (args, message);\n  error_tail (status, errnum, message, args);\n\n#ifdef _LIBC\n  _IO_funlockfile (stderr);\n# ifdef __libc_ptf_call\n  __libc_ptf_call (pthread_setcancelstate, (state, NULL), 0);\n# endif\n#endif\n}\n\n#ifdef _LIBC\n/* Make the weak alias.  */\n# undef error\n# undef error_at_line\nweak_alias (__error, error)\nweak_alias (__error_at_line, error_at_line)\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/error.h",
    "content": "/* Declaration for error-reporting function\n   Copyright (C) 1995-1997, 2003, 2006, 2008-2017 Free Software Foundation,\n   Inc.\n   This file is part of the GNU C Library.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _ERROR_H\n#define _ERROR_H 1\n\n/* The __attribute__ feature is available in gcc versions 2.5 and later.\n   The __-protected variants of the attributes 'format' and 'printf' are\n   accepted by gcc versions 2.6.4 (effectively 2.7) and later.\n   We enable _GL_ATTRIBUTE_FORMAT only if these are supported too, because\n   gnulib and libintl do '#define printf __printf__' when they override\n   the 'printf' function.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)\n# define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))\n#else\n# define _GL_ATTRIBUTE_FORMAT(spec) /* empty */\n#endif\n\n/* On mingw, the flavor of printf depends on whether the extensions module\n * is in use; the check for <stdio.h> determines the witness macro.  */\n#ifndef _GL_ATTRIBUTE_SPEC_PRINTF\n# if GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU\n#  define _GL_ATTRIBUTE_SPEC_PRINTF __gnu_printf__\n# else\n#  define _GL_ATTRIBUTE_SPEC_PRINTF __printf__\n# endif\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/* Print a message with 'fprintf (stderr, FORMAT, ...)';\n   if ERRNUM is nonzero, follow it with \": \" and strerror (ERRNUM).\n   If STATUS is nonzero, terminate the program with 'exit (STATUS)'.  */\n\nextern void error (int __status, int __errnum, const char *__format, ...)\n     _GL_ATTRIBUTE_FORMAT ((_GL_ATTRIBUTE_SPEC_PRINTF, 3, 4));\n\nextern void error_at_line (int __status, int __errnum, const char *__fname,\n                           unsigned int __lineno, const char *__format, ...)\n     _GL_ATTRIBUTE_FORMAT ((_GL_ATTRIBUTE_SPEC_PRINTF, 5, 6));\n\n/* If NULL, error will flush stdout, then print on stderr the program\n   name, a colon and a space.  Otherwise, error will call this\n   function without parameters instead.  */\nextern DLL_VARIABLE void (*error_print_progname) (void);\n\n/* This variable is incremented each time 'error' is called.  */\nextern DLL_VARIABLE unsigned int error_message_count;\n\n/* Sometimes we want to have at most one error per line.  This\n   variable controls whether this mode is selected or not.  */\nextern DLL_VARIABLE int error_one_per_line;\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* error.h */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/fcntl.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* Like <fcntl.h>, but with non-working flags defined to 0.\n\n   Copyright (C) 2006-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* written by Paul Eggert */\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n#if defined __need_system_fcntl_h\n/* Special invocation convention.  */\n\n/* Needed before <sys/stat.h>.\n   May also define off_t to a 64-bit type on native Windows.  */\n#include <sys/types.h>\n/* On some systems other than glibc, <sys/stat.h> is a prerequisite of\n   <fcntl.h>.  On glibc systems, we would like to avoid namespace pollution.\n   But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an\n   extern \"C\" { ... } block, which leads to errors in C++ mode with the\n   overridden <sys/stat.h> from gnulib.  These errors are known to be gone\n   with g++ version >= 4.3.  */\n#if !(defined __GLIBC__ || defined __UCLIBC__) || (defined __cplusplus && defined GNULIB_NAMESPACE && (defined __ICC || !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))))\n# include <sys/stat.h>\n#endif\n#include_next <fcntl.h>\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _GL_FCNTL_H\n\n/* Needed before <sys/stat.h>.\n   May also define off_t to a 64-bit type on native Windows.  */\n#include <sys/types.h>\n/* On some systems other than glibc, <sys/stat.h> is a prerequisite of\n   <fcntl.h>.  On glibc systems, we would like to avoid namespace pollution.\n   But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an\n   extern \"C\" { ... } block, which leads to errors in C++ mode with the\n   overridden <sys/stat.h> from gnulib.  These errors are known to be gone\n   with g++ version >= 4.3.  */\n#if !(defined __GLIBC__ || defined __UCLIBC__) || (defined __cplusplus && defined GNULIB_NAMESPACE && (defined __ICC || !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))))\n# include <sys/stat.h>\n#endif\n/* The include_next requires a split double-inclusion guard.  */\n#include_next <fcntl.h>\n\n#ifndef _GL_FCNTL_H\n#define _GL_FCNTL_H\n\n#ifndef __GLIBC__ /* Avoid namespace pollution on glibc systems.  */\n# include <unistd.h>\n#endif\n\n/* Native Windows platforms declare open(), creat() in <io.h>.  */\n#if (0 || defined GNULIB_POSIXCHECK) \\\n    && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)\n# include <io.h>\n#endif\n\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n#ifndef _GL_CXXDEFS_H\n#define _GL_CXXDEFS_H\n\n/* Begin/end the GNULIB_NAMESPACE namespace.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {\n# define _GL_END_NAMESPACE }\n#else\n# define _GL_BEGIN_NAMESPACE\n# define _GL_END_NAMESPACE\n#endif\n\n/* The three most frequent use cases of these macros are:\n\n   * For providing a substitute for a function that is missing on some\n     platforms, but is declared and works fine on the platforms on which\n     it exists:\n\n       #if @GNULIB_FOO@\n       # if !@HAVE_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       # endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on all platforms,\n     but is broken/insufficient and needs to be replaced on some platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on some platforms\n     but is broken/insufficient and needs to be replaced on some of them and\n     is additionally either missing or undeclared on some other platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       #  endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n*/\n\n/* _GL_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#if defined __cplusplus\n# define _GL_EXTERN_C extern \"C\"\n#else\n# define _GL_EXTERN_C extern\n#endif\n\n/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);\n   declares a replacement function, named rpl_func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \\\n  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)\n#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype rpl_func parameters_and_attributes\n\n/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);\n   declares the system function, named func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype func parameters_and_attributes\n\n/* _GL_CXXALIAS_RPL (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.\n   Example:\n     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n\n   Wrapping rpl_func in an object with an inline conversion operator\n   avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#define _GL_CXXALIAS_RPL(func,rettype,parameters) \\\n  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::rpl_func;                                  \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);\n   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);\n   except that the C function rpl_func may have a slightly different\n   declaration.  A cast is used to silence the \"invalid conversion\" error\n   that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                     \\\n    {                                                              \\\n      static const struct _gl_ ## func ## _wrapper                 \\\n      {                                                            \\\n        typedef rettype (*type) parameters;                        \\\n                                                                   \\\n        inline operator type () const                              \\\n        {                                                          \\\n          return reinterpret_cast<type>(::rpl_func);               \\\n        }                                                          \\\n      } func = {};                                                 \\\n    }                                                              \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to the system provided function func, if GNULIB_NAMESPACE\n   is defined.\n   Example:\n     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n\n   Wrapping func in an object with an inline conversion operator\n   avoids a reference to func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS(func,rettype,parameters)            \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::func;                                      \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function func may have a slightly different declaration.\n   A cast is used to silence the \"invalid conversion\" error that would\n   otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                          \\\n    {                                                   \\\n      static const struct _gl_ ## func ## _wrapper      \\\n      {                                                 \\\n        typedef rettype (*type) parameters;             \\\n                                                        \\\n        inline operator type () const                   \\\n        {                                               \\\n          return reinterpret_cast<type>(::func);        \\\n        }                                               \\\n      } func = {};                                      \\\n    }                                                   \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function is picked among a set of overloaded functions,\n   namely the one with rettype2 and parameters2.  Two consecutive casts\n   are used to silence the \"cannot find a match\" and \"invalid conversion\"\n   errors that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n  /* The outer cast must be a reinterpret_cast.\n     The inner cast: When the function is defined as a set of overloaded\n     functions, it works as a static_cast<>, choosing the designated variant.\n     When the function is defined as a single variant, it works as a\n     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    namespace GNULIB_NAMESPACE                                                \\\n    {                                                                         \\\n      static const struct _gl_ ## func ## _wrapper                            \\\n      {                                                                       \\\n        typedef rettype (*type) parameters;                                   \\\n                                                                              \\\n        inline operator type () const                                         \\\n        {                                                                     \\\n          return reinterpret_cast<type>((rettype2 (*) parameters2)(::func));  \\\n        }                                                                     \\\n      } func = {};                                                            \\\n    }                                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN (func);\n   causes a warning to be emitted when ::func is used but not when\n   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded\n   variants.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN(func) \\\n   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN_1(func,namespace) \\\n   _GL_CXXALIASWARN_2 (func, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n    _GL_WARN_ON_USE (func, \\\n                     \"The symbol ::\" #func \" refers to the system function. \" \\\n                     \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN(func) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);\n   causes a warning to be emitted when the given overloaded variant of ::func\n   is used but not when GNULIB_NAMESPACE::func is used.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \\\n                        GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \\\n   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \\\n                         \"The symbol ::\" #func \" refers to the system function. \" \\\n                         \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n#endif /* _GL_CXXDEFS_H */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools\n   that the values passed as arguments n, ..., m must be non-NULL pointers.\n   n = 1 stands for the first argument, n = 2 for the second argument etc.  */\n#ifndef _GL_ARG_NONNULL\n# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3\n#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))\n# else\n#  define _GL_ARG_NONNULL(params)\n# endif\n#endif\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n#ifndef _GL_WARN_ON_USE\n\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n/* A compiler attribute is available in gcc versions 4.3.0 and later.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function __attribute__ ((__warning__ (message)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE(function, message) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, \"string\")\n   is like _GL_WARN_ON_USE (function, \"string\"), except that the function is\n   declared with the given prototype, consisting of return type, parameters,\n   and attributes.\n   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does\n   not work in this case.  */\n#ifndef _GL_WARN_ON_USE_CXX\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes \\\n     __attribute__ ((__warning__ (msg)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#ifndef _GL_WARN_EXTERN_C\n# if defined __cplusplus\n#  define _GL_WARN_EXTERN_C extern \"C\"\n# else\n#  define _GL_WARN_EXTERN_C extern\n# endif\n#endif\n\n\n/* Declare overridden functions.  */\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fcntl\n#   define fcntl rpl_fcntl\n#  endif\n_GL_FUNCDECL_RPL (fcntl, int, (int fd, int action, ...));\n_GL_CXXALIAS_RPL (fcntl, int, (int fd, int action, ...));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (fcntl, int, (int fd, int action, ...));\n#  endif\n_GL_CXXALIAS_SYS (fcntl, int, (int fd, int action, ...));\n# endif\n_GL_CXXALIASWARN (fcntl);\n#elif defined GNULIB_POSIXCHECK\n# undef fcntl\n# if HAVE_RAW_DECL_FCNTL\n_GL_WARN_ON_USE (fcntl, \"fcntl is not always POSIX compliant - \"\n                 \"use gnulib module fcntl for portability\");\n# endif\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef open\n#   define open rpl_open\n#  endif\n_GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                             _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n# else\n_GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n# endif\n/* On HP-UX 11, in C++ mode, open() is defined as an inline function with a\n   default argument.  _GL_CXXALIASWARN does not work in this case.  */\n# if !defined __hpux\n_GL_CXXALIASWARN (open);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef open\n/* Assume open is always declared.  */\n_GL_WARN_ON_USE (open, \"open is not always POSIX compliant - \"\n                 \"use gnulib module open for portability\");\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef openat\n#   define openat rpl_openat\n#  endif\n_GL_FUNCDECL_RPL (openat, int,\n                  (int fd, char const *file, int flags, /* mode_t mode */ ...)\n                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (openat, int,\n                  (int fd, char const *file, int flags, /* mode_t mode */ ...));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (openat, int,\n                  (int fd, char const *file, int flags, /* mode_t mode */ ...)\n                  _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (openat, int,\n                  (int fd, char const *file, int flags, /* mode_t mode */ ...));\n# endif\n_GL_CXXALIASWARN (openat);\n#elif defined GNULIB_POSIXCHECK\n# undef openat\n# if HAVE_RAW_DECL_OPENAT\n_GL_WARN_ON_USE (openat, \"openat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n/* Fix up the FD_* macros, only known to be missing on mingw.  */\n\n#ifndef FD_CLOEXEC\n# define FD_CLOEXEC 1\n#endif\n\n/* Fix up the supported F_* macros.  Intentionally leave other F_*\n   macros undefined.  Only known to be missing on mingw.  */\n\n#ifndef F_DUPFD_CLOEXEC\n# define F_DUPFD_CLOEXEC 0x40000000\n/* Witness variable: 1 if gnulib defined F_DUPFD_CLOEXEC, 0 otherwise.  */\n# define GNULIB_defined_F_DUPFD_CLOEXEC 1\n#else\n# define GNULIB_defined_F_DUPFD_CLOEXEC 0\n#endif\n\n#ifndef F_DUPFD\n# define F_DUPFD 1\n#endif\n\n#ifndef F_GETFD\n# define F_GETFD 2\n#endif\n\n/* Fix up the O_* macros.  */\n\n/* AIX 7.1 with XL C 12.1 defines O_CLOEXEC, O_NOFOLLOW, and O_TTY_INIT\n   to values outside 'int' range, so omit these misdefinitions.\n   But avoid namespace pollution on non-AIX systems.  */\n#ifdef _AIX\n# include <limits.h>\n# if defined O_CLOEXEC && ! (INT_MIN <= O_CLOEXEC && O_CLOEXEC <= INT_MAX)\n#  undef O_CLOEXEC\n# endif\n# if defined O_NOFOLLOW && ! (INT_MIN <= O_NOFOLLOW && O_NOFOLLOW <= INT_MAX)\n#  undef O_NOFOLLOW\n# endif\n# if defined O_TTY_INIT && ! (INT_MIN <= O_TTY_INIT && O_TTY_INIT <= INT_MAX)\n#  undef O_TTY_INIT\n# endif\n#endif\n\n#if !defined O_DIRECT && defined O_DIRECTIO\n/* Tru64 spells it 'O_DIRECTIO'.  */\n# define O_DIRECT O_DIRECTIO\n#endif\n\n#if !defined O_CLOEXEC && defined O_NOINHERIT\n/* Mingw spells it 'O_NOINHERIT'.  */\n# define O_CLOEXEC O_NOINHERIT\n#endif\n\n#ifndef O_CLOEXEC\n# define O_CLOEXEC 0\n#endif\n\n#ifndef O_DIRECT\n# define O_DIRECT 0\n#endif\n\n#ifndef O_DIRECTORY\n# define O_DIRECTORY 0\n#endif\n\n#ifndef O_DSYNC\n# define O_DSYNC 0\n#endif\n\n#ifndef O_EXEC\n# define O_EXEC O_RDONLY /* This is often close enough in older systems.  */\n#endif\n\n#ifndef O_IGNORE_CTTY\n# define O_IGNORE_CTTY 0\n#endif\n\n#ifndef O_NDELAY\n# define O_NDELAY 0\n#endif\n\n#ifndef O_NOATIME\n# define O_NOATIME 0\n#endif\n\n#ifndef O_NONBLOCK\n# define O_NONBLOCK O_NDELAY\n#endif\n\n/* If the gnulib module 'nonblocking' is in use, guarantee a working non-zero\n   value of O_NONBLOCK.  Otherwise, O_NONBLOCK is defined (above) to O_NDELAY\n   or to 0 as fallback.  */\n#if 0\n# if O_NONBLOCK\n#  define GNULIB_defined_O_NONBLOCK 0\n# else\n#  define GNULIB_defined_O_NONBLOCK 1\n#  undef O_NONBLOCK\n#  define O_NONBLOCK 0x40000000\n# endif\n#endif\n\n#ifndef O_NOCTTY\n# define O_NOCTTY 0\n#endif\n\n#ifndef O_NOFOLLOW\n# define O_NOFOLLOW 0\n#endif\n\n#ifndef O_NOLINK\n# define O_NOLINK 0\n#endif\n\n#ifndef O_NOLINKS\n# define O_NOLINKS 0\n#endif\n\n#ifndef O_NOTRANS\n# define O_NOTRANS 0\n#endif\n\n#ifndef O_RSYNC\n# define O_RSYNC 0\n#endif\n\n#ifndef O_SEARCH\n# define O_SEARCH O_RDONLY /* This is often close enough in older systems.  */\n#endif\n\n#ifndef O_SYNC\n# define O_SYNC 0\n#endif\n\n#ifndef O_TTY_INIT\n# define O_TTY_INIT 0\n#endif\n\n#if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH)\n# undef O_ACCMODE\n# define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH)\n#endif\n\n/* For systems that distinguish between text and binary I/O.\n   O_BINARY is usually declared in fcntl.h  */\n#if !defined O_BINARY && defined _O_BINARY\n  /* For MSC-compatible compilers.  */\n# define O_BINARY _O_BINARY\n# define O_TEXT _O_TEXT\n#endif\n\n#if defined __BEOS__ || defined __HAIKU__\n  /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect.  */\n# undef O_BINARY\n# undef O_TEXT\n#endif\n\n#ifndef O_BINARY\n# define O_BINARY 0\n# define O_TEXT 0\n#endif\n\n/* Fix up the AT_* macros.  */\n\n/* Work around a bug in Solaris 9 and 10: AT_FDCWD is positive.  Its\n   value exceeds INT_MAX, so its use as an int doesn't conform to the\n   C standard, and GCC and Sun C complain in some cases.  If the bug\n   is present, undef AT_FDCWD here, so it can be redefined below.  */\n#if 0 < AT_FDCWD && AT_FDCWD == 0xffd19553\n# undef AT_FDCWD\n#endif\n\n/* Use the same bit pattern as Solaris 9, but with the proper\n   signedness.  The bit pattern is important, in case this actually is\n   Solaris with the above workaround.  */\n#ifndef AT_FDCWD\n# define AT_FDCWD (-3041965)\n#endif\n\n/* Use the same values as Solaris 9.  This shouldn't matter, but\n   there's no real reason to differ.  */\n#ifndef AT_SYMLINK_NOFOLLOW\n# define AT_SYMLINK_NOFOLLOW 4096\n#endif\n\n#ifndef AT_REMOVEDIR\n# define AT_REMOVEDIR 1\n#endif\n\n/* Solaris 9 lacks these two, so just pick unique values.  */\n#ifndef AT_SYMLINK_FOLLOW\n# define AT_SYMLINK_FOLLOW 2\n#endif\n\n#ifndef AT_EACCESS\n# define AT_EACCESS 4\n#endif\n\n\n#endif /* _GL_FCNTL_H */\n#endif /* _GL_FCNTL_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/fcntl.in.h",
    "content": "/* Like <fcntl.h>, but with non-working flags defined to 0.\n\n   Copyright (C) 2006-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* written by Paul Eggert */\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n#if defined __need_system_fcntl_h\n/* Special invocation convention.  */\n\n/* Needed before <sys/stat.h>.\n   May also define off_t to a 64-bit type on native Windows.  */\n#include <sys/types.h>\n/* On some systems other than glibc, <sys/stat.h> is a prerequisite of\n   <fcntl.h>.  On glibc systems, we would like to avoid namespace pollution.\n   But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an\n   extern \"C\" { ... } block, which leads to errors in C++ mode with the\n   overridden <sys/stat.h> from gnulib.  These errors are known to be gone\n   with g++ version >= 4.3.  */\n#if !(defined __GLIBC__ || defined __UCLIBC__) || (defined __cplusplus && defined GNULIB_NAMESPACE && (defined __ICC || !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))))\n# include <sys/stat.h>\n#endif\n#@INCLUDE_NEXT@ @NEXT_FCNTL_H@\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _@GUARD_PREFIX@_FCNTL_H\n\n/* Needed before <sys/stat.h>.\n   May also define off_t to a 64-bit type on native Windows.  */\n#include <sys/types.h>\n/* On some systems other than glibc, <sys/stat.h> is a prerequisite of\n   <fcntl.h>.  On glibc systems, we would like to avoid namespace pollution.\n   But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an\n   extern \"C\" { ... } block, which leads to errors in C++ mode with the\n   overridden <sys/stat.h> from gnulib.  These errors are known to be gone\n   with g++ version >= 4.3.  */\n#if !(defined __GLIBC__ || defined __UCLIBC__) || (defined __cplusplus && defined GNULIB_NAMESPACE && (defined __ICC || !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))))\n# include <sys/stat.h>\n#endif\n/* The include_next requires a split double-inclusion guard.  */\n#@INCLUDE_NEXT@ @NEXT_FCNTL_H@\n\n#ifndef _@GUARD_PREFIX@_FCNTL_H\n#define _@GUARD_PREFIX@_FCNTL_H\n\n#ifndef __GLIBC__ /* Avoid namespace pollution on glibc systems.  */\n# include <unistd.h>\n#endif\n\n/* Native Windows platforms declare open(), creat() in <io.h>.  */\n#if (@GNULIB_OPEN@ || defined GNULIB_POSIXCHECK) \\\n    && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)\n# include <io.h>\n#endif\n\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n\n\n/* Declare overridden functions.  */\n\n#if @GNULIB_FCNTL@\n# if @REPLACE_FCNTL@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fcntl\n#   define fcntl rpl_fcntl\n#  endif\n_GL_FUNCDECL_RPL (fcntl, int, (int fd, int action, ...));\n_GL_CXXALIAS_RPL (fcntl, int, (int fd, int action, ...));\n# else\n#  if !@HAVE_FCNTL@\n_GL_FUNCDECL_SYS (fcntl, int, (int fd, int action, ...));\n#  endif\n_GL_CXXALIAS_SYS (fcntl, int, (int fd, int action, ...));\n# endif\n_GL_CXXALIASWARN (fcntl);\n#elif defined GNULIB_POSIXCHECK\n# undef fcntl\n# if HAVE_RAW_DECL_FCNTL\n_GL_WARN_ON_USE (fcntl, \"fcntl is not always POSIX compliant - \"\n                 \"use gnulib module fcntl for portability\");\n# endif\n#endif\n\n#if @GNULIB_OPEN@\n# if @REPLACE_OPEN@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef open\n#   define open rpl_open\n#  endif\n_GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                             _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n# else\n_GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n# endif\n/* On HP-UX 11, in C++ mode, open() is defined as an inline function with a\n   default argument.  _GL_CXXALIASWARN does not work in this case.  */\n# if !defined __hpux\n_GL_CXXALIASWARN (open);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef open\n/* Assume open is always declared.  */\n_GL_WARN_ON_USE (open, \"open is not always POSIX compliant - \"\n                 \"use gnulib module open for portability\");\n#endif\n\n#if @GNULIB_OPENAT@\n# if @REPLACE_OPENAT@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef openat\n#   define openat rpl_openat\n#  endif\n_GL_FUNCDECL_RPL (openat, int,\n                  (int fd, char const *file, int flags, /* mode_t mode */ ...)\n                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (openat, int,\n                  (int fd, char const *file, int flags, /* mode_t mode */ ...));\n# else\n#  if !@HAVE_OPENAT@\n_GL_FUNCDECL_SYS (openat, int,\n                  (int fd, char const *file, int flags, /* mode_t mode */ ...)\n                  _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (openat, int,\n                  (int fd, char const *file, int flags, /* mode_t mode */ ...));\n# endif\n_GL_CXXALIASWARN (openat);\n#elif defined GNULIB_POSIXCHECK\n# undef openat\n# if HAVE_RAW_DECL_OPENAT\n_GL_WARN_ON_USE (openat, \"openat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n/* Fix up the FD_* macros, only known to be missing on mingw.  */\n\n#ifndef FD_CLOEXEC\n# define FD_CLOEXEC 1\n#endif\n\n/* Fix up the supported F_* macros.  Intentionally leave other F_*\n   macros undefined.  Only known to be missing on mingw.  */\n\n#ifndef F_DUPFD_CLOEXEC\n# define F_DUPFD_CLOEXEC 0x40000000\n/* Witness variable: 1 if gnulib defined F_DUPFD_CLOEXEC, 0 otherwise.  */\n# define GNULIB_defined_F_DUPFD_CLOEXEC 1\n#else\n# define GNULIB_defined_F_DUPFD_CLOEXEC 0\n#endif\n\n#ifndef F_DUPFD\n# define F_DUPFD 1\n#endif\n\n#ifndef F_GETFD\n# define F_GETFD 2\n#endif\n\n/* Fix up the O_* macros.  */\n\n/* AIX 7.1 with XL C 12.1 defines O_CLOEXEC, O_NOFOLLOW, and O_TTY_INIT\n   to values outside 'int' range, so omit these misdefinitions.\n   But avoid namespace pollution on non-AIX systems.  */\n#ifdef _AIX\n# include <limits.h>\n# if defined O_CLOEXEC && ! (INT_MIN <= O_CLOEXEC && O_CLOEXEC <= INT_MAX)\n#  undef O_CLOEXEC\n# endif\n# if defined O_NOFOLLOW && ! (INT_MIN <= O_NOFOLLOW && O_NOFOLLOW <= INT_MAX)\n#  undef O_NOFOLLOW\n# endif\n# if defined O_TTY_INIT && ! (INT_MIN <= O_TTY_INIT && O_TTY_INIT <= INT_MAX)\n#  undef O_TTY_INIT\n# endif\n#endif\n\n#if !defined O_DIRECT && defined O_DIRECTIO\n/* Tru64 spells it 'O_DIRECTIO'.  */\n# define O_DIRECT O_DIRECTIO\n#endif\n\n#if !defined O_CLOEXEC && defined O_NOINHERIT\n/* Mingw spells it 'O_NOINHERIT'.  */\n# define O_CLOEXEC O_NOINHERIT\n#endif\n\n#ifndef O_CLOEXEC\n# define O_CLOEXEC 0\n#endif\n\n#ifndef O_DIRECT\n# define O_DIRECT 0\n#endif\n\n#ifndef O_DIRECTORY\n# define O_DIRECTORY 0\n#endif\n\n#ifndef O_DSYNC\n# define O_DSYNC 0\n#endif\n\n#ifndef O_EXEC\n# define O_EXEC O_RDONLY /* This is often close enough in older systems.  */\n#endif\n\n#ifndef O_IGNORE_CTTY\n# define O_IGNORE_CTTY 0\n#endif\n\n#ifndef O_NDELAY\n# define O_NDELAY 0\n#endif\n\n#ifndef O_NOATIME\n# define O_NOATIME 0\n#endif\n\n#ifndef O_NONBLOCK\n# define O_NONBLOCK O_NDELAY\n#endif\n\n/* If the gnulib module 'nonblocking' is in use, guarantee a working non-zero\n   value of O_NONBLOCK.  Otherwise, O_NONBLOCK is defined (above) to O_NDELAY\n   or to 0 as fallback.  */\n#if @GNULIB_NONBLOCKING@\n# if O_NONBLOCK\n#  define GNULIB_defined_O_NONBLOCK 0\n# else\n#  define GNULIB_defined_O_NONBLOCK 1\n#  undef O_NONBLOCK\n#  define O_NONBLOCK 0x40000000\n# endif\n#endif\n\n#ifndef O_NOCTTY\n# define O_NOCTTY 0\n#endif\n\n#ifndef O_NOFOLLOW\n# define O_NOFOLLOW 0\n#endif\n\n#ifndef O_NOLINK\n# define O_NOLINK 0\n#endif\n\n#ifndef O_NOLINKS\n# define O_NOLINKS 0\n#endif\n\n#ifndef O_NOTRANS\n# define O_NOTRANS 0\n#endif\n\n#ifndef O_RSYNC\n# define O_RSYNC 0\n#endif\n\n#ifndef O_SEARCH\n# define O_SEARCH O_RDONLY /* This is often close enough in older systems.  */\n#endif\n\n#ifndef O_SYNC\n# define O_SYNC 0\n#endif\n\n#ifndef O_TTY_INIT\n# define O_TTY_INIT 0\n#endif\n\n#if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH)\n# undef O_ACCMODE\n# define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH)\n#endif\n\n/* For systems that distinguish between text and binary I/O.\n   O_BINARY is usually declared in fcntl.h  */\n#if !defined O_BINARY && defined _O_BINARY\n  /* For MSC-compatible compilers.  */\n# define O_BINARY _O_BINARY\n# define O_TEXT _O_TEXT\n#endif\n\n#if defined __BEOS__ || defined __HAIKU__\n  /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect.  */\n# undef O_BINARY\n# undef O_TEXT\n#endif\n\n#ifndef O_BINARY\n# define O_BINARY 0\n# define O_TEXT 0\n#endif\n\n/* Fix up the AT_* macros.  */\n\n/* Work around a bug in Solaris 9 and 10: AT_FDCWD is positive.  Its\n   value exceeds INT_MAX, so its use as an int doesn't conform to the\n   C standard, and GCC and Sun C complain in some cases.  If the bug\n   is present, undef AT_FDCWD here, so it can be redefined below.  */\n#if 0 < AT_FDCWD && AT_FDCWD == 0xffd19553\n# undef AT_FDCWD\n#endif\n\n/* Use the same bit pattern as Solaris 9, but with the proper\n   signedness.  The bit pattern is important, in case this actually is\n   Solaris with the above workaround.  */\n#ifndef AT_FDCWD\n# define AT_FDCWD (-3041965)\n#endif\n\n/* Use the same values as Solaris 9.  This shouldn't matter, but\n   there's no real reason to differ.  */\n#ifndef AT_SYMLINK_NOFOLLOW\n# define AT_SYMLINK_NOFOLLOW 4096\n#endif\n\n#ifndef AT_REMOVEDIR\n# define AT_REMOVEDIR 1\n#endif\n\n/* Solaris 9 lacks these two, so just pick unique values.  */\n#ifndef AT_SYMLINK_FOLLOW\n# define AT_SYMLINK_FOLLOW 2\n#endif\n\n#ifndef AT_EACCESS\n# define AT_EACCESS 4\n#endif\n\n\n#endif /* _@GUARD_PREFIX@_FCNTL_H */\n#endif /* _@GUARD_PREFIX@_FCNTL_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/getprogname.c",
    "content": "/* Program name management.\n   Copyright (C) 2016-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include \"getprogname.h\"\n\n#include <errno.h> /* get program_invocation_name declaration */\n#include <stdlib.h> /* get __argv declaration */\n\n#ifdef _AIX\n# include <unistd.h>\n# include <procinfo.h>\n# include <string.h>\n#endif\n\n#ifdef __MVS__\n# ifndef _OPEN_SYS\n#  define _OPEN_SYS\n# endif\n# include <string.h>\n# include <sys/ps.h>\n#endif\n\n#ifdef __hpux\n# include <unistd.h>\n# include <sys/param.h>\n# include <sys/pstat.h>\n# include <string.h>\n#endif\n\n#include \"dirname.h\"\n\n#ifndef HAVE_GETPROGNAME             /* not Mac OS X, FreeBSD, NetBSD, OpenBSD >= 5.4, Cygwin */\nchar const *\ngetprogname (void)\n{\n# if HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME                /* glibc, BeOS */\n  /* https://www.gnu.org/software/libc/manual/html_node/Error-Messages.html */\n  return program_invocation_short_name;\n# elif HAVE_DECL_PROGRAM_INVOCATION_NAME                    /* glibc, BeOS */\n  /* https://www.gnu.org/software/libc/manual/html_node/Error-Messages.html */\n  return last_component (program_invocation_name);\n# elif HAVE_GETEXECNAME                                     /* Solaris */\n  /* http://docs.oracle.com/cd/E19253-01/816-5168/6mbb3hrb1/index.html */\n  const char *p = getexecname ();\n  if (!p)\n    p = \"?\";\n  return last_component (p);\n# elif HAVE_DECL___ARGV                                     /* mingw, MSVC */\n  /* https://msdn.microsoft.com/en-us/library/dn727674.aspx */\n  const char *p = __argv && __argv[0] ? __argv[0] : \"?\";\n  return last_component (p);\n# elif HAVE_VAR___PROGNAME                                  /* OpenBSD, QNX */\n  /* http://man.openbsd.org/style.9 */\n  /* http://www.qnx.de/developers/docs/6.5.0/index.jsp?topic=%2Fcom.qnx.doc.neutrino_lib_ref%2Fp%2F__progname.html */\n  /* Be careful to declare this only when we absolutely need it\n     (OpenBSD 5.1), rather than when it's available.  Otherwise,\n     its mere declaration makes program_invocation_short_name\n     malfunction (have zero length) with Fedora 25's glibc.  */\n  extern char *__progname;\n  const char *p = __progname;\n  return p && p[0] ? p : \"?\";\n# elif _AIX                                                 /* AIX */\n  /* Idea by Bastien ROUCARIÈS,\n     http://lists.gnu.org/archive/html/bug-gnulib/2010-12/msg00095.html\n     Reference: http://\n   ibm.biz/knowctr#ssw_aix_53/com.ibm.aix.basetechref/doc/basetrf1/getprocs.htm\n  */\n  static char *p;\n  static int first = 1;\n  if (first)\n    {\n      first = 0;\n      pid_t pid = getpid ();\n      struct procentry64 procs;\n      p = (0 < getprocs64 (&procs, sizeof procs, NULL, 0, &pid, 1)\n           ? strdup (procs.pi_comm)\n           : NULL);\n      if (!p)\n        p = \"?\";\n    }\n  return p;\n# elif defined __hpux\n  static char *p;\n  static int first = 1;\n  if (first)\n    {\n      first = 0;\n      pid_t pid = getpid ();\n      struct pst_status status;\n      p = (0 < pstat_getproc (&status, sizeof status, 0, pid)\n           ? strdup (status.pst_ucomm)\n           : NULL);\n      if (!p)\n        p = \"?\";\n    }\n  return p;\n# elif __MVS__                                              /* z/OS */\n  /* https://www.ibm.com/support/knowledgecenter/SSLTBW_2.1.0/com.ibm.zos.v2r1.bpxbd00/rtwgetp.htm */\n  static char *p = \"?\";\n  static int first = 1;\n  if (first)\n    {\n      pid_t pid = getpid ();\n      int token;\n      W_PSPROC buf;\n      first = 0;\n      memset (&buf, 0, sizeof(buf));\n      buf.ps_cmdptr    = (char *) malloc (buf.ps_cmdlen    = PS_CMDBLEN_LONG);\n      buf.ps_conttyptr = (char *) malloc (buf.ps_conttylen = PS_CONTTYBLEN);\n      buf.ps_pathptr   = (char *) malloc (buf.ps_pathlen   = PS_PATHBLEN);\n      if (buf.ps_cmdptr && buf.ps_conttyptr && buf.ps_pathptr)\n        {\n          for (token = 0; token >= 0;\n               token = w_getpsent (token, &buf, sizeof(buf)))\n            {\n              if (token > 0 && buf.ps_pid == pid)\n                {\n                  char *s = strdup (last_component (buf.ps_pathptr));\n                  if (s)\n                    p = s;\n                  break;\n                }\n            }\n        }\n      free (buf.ps_cmdptr);\n      free (buf.ps_conttyptr);\n      free (buf.ps_pathptr);\n    }\n  return p;\n# else\n#  error \"getprogname module not ported to this OS\"\n# endif\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/getprogname.h",
    "content": "/* Program name management.\n   Copyright (C) 2016-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _GL_GETPROGNAME_H\n#define _GL_GETPROGNAME_H\n\n#include <stdlib.h>\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/* Return the base name of the executing program.\n   On native Windows this will usually end in \".exe\" or \".EXE\". */\n#ifndef HAVE_GETPROGNAME\nextern char const *getprogname (void)\n# ifdef HAVE_DECL_PROGRAM_INVOCATION_NAME\n  _GL_ATTRIBUTE_PURE\n# endif\n  ;\n#endif\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/gettext.h",
    "content": "/* Convenience header for conditional use of GNU <libintl.h>.\n   Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009-2017 Free Software\n   Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License along\n   with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _LIBGETTEXT_H\n#define _LIBGETTEXT_H 1\n\n/* NLS can be disabled through the configure --disable-nls option.  */\n#if ENABLE_NLS\n\n/* Get declarations of GNU message catalog functions.  */\n# include <libintl.h>\n\n/* You can set the DEFAULT_TEXT_DOMAIN macro to specify the domain used by\n   the gettext() and ngettext() macros.  This is an alternative to calling\n   textdomain(), and is useful for libraries.  */\n# ifdef DEFAULT_TEXT_DOMAIN\n#  undef gettext\n#  define gettext(Msgid) \\\n     dgettext (DEFAULT_TEXT_DOMAIN, Msgid)\n#  undef ngettext\n#  define ngettext(Msgid1, Msgid2, N) \\\n     dngettext (DEFAULT_TEXT_DOMAIN, Msgid1, Msgid2, N)\n# endif\n\n#else\n\n/* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which\n   chokes if dcgettext is defined as a macro.  So include it now, to make\n   later inclusions of <locale.h> a NOP.  We don't include <libintl.h>\n   as well because people using \"gettext.h\" will not include <libintl.h>,\n   and also including <libintl.h> would fail on SunOS 4, whereas <locale.h>\n   is OK.  */\n#if defined(__sun)\n# include <locale.h>\n#endif\n\n/* Many header files from the libstdc++ coming with g++ 3.3 or newer include\n   <libintl.h>, which chokes if dcgettext is defined as a macro.  So include\n   it now, to make later inclusions of <libintl.h> a NOP.  */\n#if defined(__cplusplus) && defined(__GNUG__) && (__GNUC__ >= 3)\n# include <cstdlib>\n# if (__GLIBC__ >= 2 && !defined __UCLIBC__) || _GLIBCXX_HAVE_LIBINTL_H\n#  include <libintl.h>\n# endif\n#endif\n\n/* Disabled NLS.\n   The casts to 'const char *' serve the purpose of producing warnings\n   for invalid uses of the value returned from these functions.\n   On pre-ANSI systems without 'const', the config.h file is supposed to\n   contain \"#define const\".  */\n# undef gettext\n# define gettext(Msgid) ((const char *) (Msgid))\n# undef dgettext\n# define dgettext(Domainname, Msgid) ((void) (Domainname), gettext (Msgid))\n# undef dcgettext\n# define dcgettext(Domainname, Msgid, Category) \\\n    ((void) (Category), dgettext (Domainname, Msgid))\n# undef ngettext\n# define ngettext(Msgid1, Msgid2, N) \\\n    ((N) == 1 \\\n     ? ((void) (Msgid2), (const char *) (Msgid1)) \\\n     : ((void) (Msgid1), (const char *) (Msgid2)))\n# undef dngettext\n# define dngettext(Domainname, Msgid1, Msgid2, N) \\\n    ((void) (Domainname), ngettext (Msgid1, Msgid2, N))\n# undef dcngettext\n# define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \\\n    ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N))\n# undef textdomain\n# define textdomain(Domainname) ((const char *) (Domainname))\n# undef bindtextdomain\n# define bindtextdomain(Domainname, Dirname) \\\n    ((void) (Domainname), (const char *) (Dirname))\n# undef bind_textdomain_codeset\n# define bind_textdomain_codeset(Domainname, Codeset) \\\n    ((void) (Domainname), (const char *) (Codeset))\n\n#endif\n\n/* Prefer gnulib's setlocale override over libintl's setlocale override.  */\n#ifdef GNULIB_defined_setlocale\n# undef setlocale\n# define setlocale rpl_setlocale\n#endif\n\n/* A pseudo function call that serves as a marker for the automated\n   extraction of messages, but does not call gettext().  The run-time\n   translation is done at a different place in the code.\n   The argument, String, should be a literal string.  Concatenated strings\n   and other string expressions won't work.\n   The macro's expansion is not parenthesized, so that it is suitable as\n   initializer for static 'char[]' or 'const char[]' variables.  */\n#define gettext_noop(String) String\n\n/* The separator between msgctxt and msgid in a .mo file.  */\n#define GETTEXT_CONTEXT_GLUE \"\\004\"\n\n/* Pseudo function calls, taking a MSGCTXT and a MSGID instead of just a\n   MSGID.  MSGCTXT and MSGID must be string literals.  MSGCTXT should be\n   short and rarely need to change.\n   The letter 'p' stands for 'particular' or 'special'.  */\n#ifdef DEFAULT_TEXT_DOMAIN\n# define pgettext(Msgctxt, Msgid) \\\n   pgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)\n#else\n# define pgettext(Msgctxt, Msgid) \\\n   pgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)\n#endif\n#define dpgettext(Domainname, Msgctxt, Msgid) \\\n  pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)\n#define dcpgettext(Domainname, Msgctxt, Msgid, Category) \\\n  pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)\n#ifdef DEFAULT_TEXT_DOMAIN\n# define npgettext(Msgctxt, Msgid, MsgidPlural, N) \\\n   npgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)\n#else\n# define npgettext(Msgctxt, Msgid, MsgidPlural, N) \\\n   npgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)\n#endif\n#define dnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N) \\\n  npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)\n#define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \\\n  npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)\n\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic const char *\npgettext_aux (const char *domain,\n              const char *msg_ctxt_id, const char *msgid,\n              int category)\n{\n  const char *translation = dcgettext (domain, msg_ctxt_id, category);\n  if (translation == msg_ctxt_id)\n    return msgid;\n  else\n    return translation;\n}\n\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic const char *\nnpgettext_aux (const char *domain,\n               const char *msg_ctxt_id, const char *msgid,\n               const char *msgid_plural, unsigned long int n,\n               int category)\n{\n  const char *translation =\n    dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);\n  if (translation == msg_ctxt_id || translation == msgid_plural)\n    return (n == 1 ? msgid : msgid_plural);\n  else\n    return translation;\n}\n\n/* The same thing extended for non-constant arguments.  Here MSGCTXT and MSGID\n   can be arbitrary expressions.  But for string literals these macros are\n   less efficient than those above.  */\n\n#include <string.h>\n\n#if (((__GNUC__ >= 3 || __GNUG__ >= 2) && !defined __STRICT_ANSI__) \\\n     /* || __STDC_VERSION__ >= 199901L */ )\n# define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 1\n#else\n# define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 0\n#endif\n\n#if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS\n#include <stdlib.h>\n#endif\n\n#define pgettext_expr(Msgctxt, Msgid) \\\n  dcpgettext_expr (NULL, Msgctxt, Msgid, LC_MESSAGES)\n#define dpgettext_expr(Domainname, Msgctxt, Msgid) \\\n  dcpgettext_expr (Domainname, Msgctxt, Msgid, LC_MESSAGES)\n\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic const char *\ndcpgettext_expr (const char *domain,\n                 const char *msgctxt, const char *msgid,\n                 int category)\n{\n  size_t msgctxt_len = strlen (msgctxt) + 1;\n  size_t msgid_len = strlen (msgid) + 1;\n  const char *translation;\n#if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS\n  char msg_ctxt_id[msgctxt_len + msgid_len];\n#else\n  char buf[1024];\n  char *msg_ctxt_id =\n    (msgctxt_len + msgid_len <= sizeof (buf)\n     ? buf\n     : (char *) malloc (msgctxt_len + msgid_len));\n  if (msg_ctxt_id != NULL)\n#endif\n    {\n      int found_translation;\n      memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1);\n      msg_ctxt_id[msgctxt_len - 1] = '\\004';\n      memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len);\n      translation = dcgettext (domain, msg_ctxt_id, category);\n      found_translation = (translation != msg_ctxt_id);\n#if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS\n      if (msg_ctxt_id != buf)\n        free (msg_ctxt_id);\n#endif\n      if (found_translation)\n        return translation;\n    }\n  return msgid;\n}\n\n#define npgettext_expr(Msgctxt, Msgid, MsgidPlural, N) \\\n  dcnpgettext_expr (NULL, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)\n#define dnpgettext_expr(Domainname, Msgctxt, Msgid, MsgidPlural, N) \\\n  dcnpgettext_expr (Domainname, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)\n\n#ifdef __GNUC__\n__inline\n#else\n#ifdef __cplusplus\ninline\n#endif\n#endif\nstatic const char *\ndcnpgettext_expr (const char *domain,\n                  const char *msgctxt, const char *msgid,\n                  const char *msgid_plural, unsigned long int n,\n                  int category)\n{\n  size_t msgctxt_len = strlen (msgctxt) + 1;\n  size_t msgid_len = strlen (msgid) + 1;\n  const char *translation;\n#if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS\n  char msg_ctxt_id[msgctxt_len + msgid_len];\n#else\n  char buf[1024];\n  char *msg_ctxt_id =\n    (msgctxt_len + msgid_len <= sizeof (buf)\n     ? buf\n     : (char *) malloc (msgctxt_len + msgid_len));\n  if (msg_ctxt_id != NULL)\n#endif\n    {\n      int found_translation;\n      memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1);\n      msg_ctxt_id[msgctxt_len - 1] = '\\004';\n      memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len);\n      translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);\n      found_translation = !(translation == msg_ctxt_id || translation == msgid_plural);\n#if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS\n      if (msg_ctxt_id != buf)\n        free (msg_ctxt_id);\n#endif\n      if (found_translation)\n        return translation;\n    }\n  return (n == 1 ? msgid : msgid_plural);\n}\n\n#endif /* _LIBGETTEXT_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/gettimeofday.c",
    "content": "/* Provide gettimeofday for systems that don't have it or for which it's broken.\n\n   Copyright (C) 2001-2003, 2005-2007, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/* written by Jim Meyering */\n\n#include <config.h>\n\n/* Specification.  */\n#include <sys/time.h>\n\n#include <time.h>\n\n#if HAVE_SYS_TIMEB_H\n# include <sys/timeb.h>\n#endif\n\n#if GETTIMEOFDAY_CLOBBERS_LOCALTIME || TZSET_CLOBBERS_LOCALTIME\n\n/* Work around the bug in some systems whereby gettimeofday clobbers\n   the static buffer that localtime uses for its return value.  The\n   gettimeofday function from Mac OS X 10.0.4 (i.e., Darwin 1.3.7) has\n   this problem.  The tzset replacement is necessary for at least\n   Solaris 2.5, 2.5.1, and 2.6.  */\n\nstatic struct tm tm_zero_buffer;\nstatic struct tm *localtime_buffer_addr = &tm_zero_buffer;\n\n# undef localtime\nextern struct tm *localtime (time_t const *);\n\n# undef gmtime\nextern struct tm *gmtime (time_t const *);\n\n/* This is a wrapper for localtime.  It is used only on systems for which\n   gettimeofday clobbers the static buffer used for localtime's result.\n\n   On the first call, record the address of the static buffer that\n   localtime uses for its result.  */\n\nstruct tm *\nrpl_localtime (time_t const *timep)\n{\n  struct tm *tm = localtime (timep);\n\n  if (localtime_buffer_addr == &tm_zero_buffer)\n    localtime_buffer_addr = tm;\n\n  return tm;\n}\n\n/* Same as above, since gmtime and localtime use the same buffer.  */\nstruct tm *\nrpl_gmtime (time_t const *timep)\n{\n  struct tm *tm = gmtime (timep);\n\n  if (localtime_buffer_addr == &tm_zero_buffer)\n    localtime_buffer_addr = tm;\n\n  return tm;\n}\n\n#endif /* GETTIMEOFDAY_CLOBBERS_LOCALTIME || TZSET_CLOBBERS_LOCALTIME */\n\n#if TZSET_CLOBBERS_LOCALTIME\n\n# undef tzset\nextern void tzset (void);\n\n/* This is a wrapper for tzset, for systems on which tzset may clobber\n   the static buffer used for localtime's result.  */\nvoid\nrpl_tzset (void)\n{\n  /* Save and restore the contents of the buffer used for localtime's\n     result around the call to tzset.  */\n  struct tm save = *localtime_buffer_addr;\n  tzset ();\n  *localtime_buffer_addr = save;\n}\n#endif\n\n/* This is a wrapper for gettimeofday.  It is used only on systems\n   that lack this function, or whose implementation of this function\n   causes problems.  */\n\nint\ngettimeofday (struct timeval *restrict tv, void *restrict tz)\n{\n#undef gettimeofday\n#if HAVE_GETTIMEOFDAY\n# if GETTIMEOFDAY_CLOBBERS_LOCALTIME\n  /* Save and restore the contents of the buffer used for localtime's\n     result around the call to gettimeofday.  */\n  struct tm save = *localtime_buffer_addr;\n# endif\n\n# if defined timeval /* 'struct timeval' overridden by gnulib?  */\n#  undef timeval\n  struct timeval otv;\n  int result = gettimeofday (&otv, (struct timezone *) tz);\n  if (result == 0)\n    {\n      tv->tv_sec = otv.tv_sec;\n      tv->tv_usec = otv.tv_usec;\n    }\n# else\n  int result = gettimeofday (tv, (struct timezone *) tz);\n# endif\n\n# if GETTIMEOFDAY_CLOBBERS_LOCALTIME\n  *localtime_buffer_addr = save;\n# endif\n\n  return result;\n\n#else\n\n# if HAVE__FTIME\n\n  struct _timeb timebuf;\n  _ftime (&timebuf);\n  tv->tv_sec = timebuf.time;\n  tv->tv_usec = timebuf.millitm * 1000;\n\n# else\n\n#  if !defined OK_TO_USE_1S_CLOCK\n#   error \"Only 1-second nominal clock resolution found.  Is that intended?\" \\\n          \"If so, compile with the -DOK_TO_USE_1S_CLOCK option.\"\n#  endif\n  tv->tv_sec = time (NULL);\n  tv->tv_usec = 0;\n\n# endif\n\n  return 0;\n\n#endif\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/intprops.h",
    "content": "/* intprops.h -- properties of integer types\n\n   Copyright (C) 2001-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify it\n   under the terms of the GNU General Public License as published\n   by the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Paul Eggert.  */\n\n#ifndef _GL_INTPROPS_H\n#define _GL_INTPROPS_H\n\n#include <limits.h>\n#include <verify.h>\n\n#ifndef __has_builtin\n# define __has_builtin(x) 0\n#endif\n\n/* Return a value with the common real type of E and V and the value of V.  */\n#define _GL_INT_CONVERT(e, v) (0 * (e) + (v))\n\n/* Act like _GL_INT_CONVERT (E, -V) but work around a bug in IRIX 6.5 cc; see\n   <http://lists.gnu.org/archive/html/bug-gnulib/2011-05/msg00406.html>.  */\n#define _GL_INT_NEGATE_CONVERT(e, v) (0 * (e) - (v))\n\n/* The extra casts in the following macros work around compiler bugs,\n   e.g., in Cray C 5.0.3.0.  */\n\n/* True if the arithmetic type T is an integer type.  bool counts as\n   an integer.  */\n#define TYPE_IS_INTEGER(t) ((t) 1.5 == 1)\n\n/* True if the real type T is signed.  */\n#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))\n\n/* Return 1 if the real expression E, after promotion, has a\n   signed or floating type.  */\n#define EXPR_SIGNED(e) (_GL_INT_NEGATE_CONVERT (e, 1) < 0)\n\n\n/* Minimum and maximum values for integer types and expressions.  */\n\n/* The width in bits of the integer type or expression T.\n   Padding bits are not supported; this is checked at compile-time below.  */\n#define TYPE_WIDTH(t) (sizeof (t) * CHAR_BIT)\n\n/* The maximum and minimum values for the integer type T.  */\n#define TYPE_MINIMUM(t) ((t) ~ TYPE_MAXIMUM (t))\n#define TYPE_MAXIMUM(t)                                                 \\\n  ((t) (! TYPE_SIGNED (t)                                               \\\n        ? (t) -1                                                        \\\n        : ((((t) 1 << (TYPE_WIDTH (t) - 2)) - 1) * 2 + 1)))\n\n/* The maximum and minimum values for the type of the expression E,\n   after integer promotion.  E should not have side effects.  */\n#define _GL_INT_MINIMUM(e)                                              \\\n  (EXPR_SIGNED (e)                                                      \\\n   ? ~ _GL_SIGNED_INT_MAXIMUM (e)                                       \\\n   : _GL_INT_CONVERT (e, 0))\n#define _GL_INT_MAXIMUM(e)                                              \\\n  (EXPR_SIGNED (e)                                                      \\\n   ? _GL_SIGNED_INT_MAXIMUM (e)                                         \\\n   : _GL_INT_NEGATE_CONVERT (e, 1))\n#define _GL_SIGNED_INT_MAXIMUM(e)                                       \\\n  (((_GL_INT_CONVERT (e, 1) << (TYPE_WIDTH ((e) + 0) - 2)) - 1) * 2 + 1)\n\n/* Work around OpenVMS incompatibility with C99.  */\n#if !defined LLONG_MAX && defined __INT64_MAX\n# define LLONG_MAX __INT64_MAX\n# define LLONG_MIN __INT64_MIN\n#endif\n\n/* This include file assumes that signed types are two's complement without\n   padding bits; the above macros have undefined behavior otherwise.\n   If this is a problem for you, please let us know how to fix it for your host.\n   As a sanity check, test the assumption for some signed types that\n   <limits.h> bounds.  */\nverify (TYPE_MINIMUM (signed char) == SCHAR_MIN);\nverify (TYPE_MAXIMUM (signed char) == SCHAR_MAX);\nverify (TYPE_MINIMUM (short int) == SHRT_MIN);\nverify (TYPE_MAXIMUM (short int) == SHRT_MAX);\nverify (TYPE_MINIMUM (int) == INT_MIN);\nverify (TYPE_MAXIMUM (int) == INT_MAX);\nverify (TYPE_MINIMUM (long int) == LONG_MIN);\nverify (TYPE_MAXIMUM (long int) == LONG_MAX);\n#ifdef LLONG_MAX\nverify (TYPE_MINIMUM (long long int) == LLONG_MIN);\nverify (TYPE_MAXIMUM (long long int) == LLONG_MAX);\n#endif\n/* Similarly, sanity-check one ISO/IEC TS 18661-1:2014 macro if defined.  */\n#ifdef UINT_WIDTH\nverify (TYPE_WIDTH (unsigned int) == UINT_WIDTH);\n#endif\n\n/* Does the __typeof__ keyword work?  This could be done by\n   'configure', but for now it's easier to do it by hand.  */\n#if (2 <= __GNUC__ \\\n     || (1210 <= __IBMC__ && defined __IBM__TYPEOF__) \\\n     || (0x5110 <= __SUNPRO_C && !__STDC__))\n# define _GL_HAVE___TYPEOF__ 1\n#else\n# define _GL_HAVE___TYPEOF__ 0\n#endif\n\n/* Return 1 if the integer type or expression T might be signed.  Return 0\n   if it is definitely unsigned.  This macro does not evaluate its argument,\n   and expands to an integer constant expression.  */\n#if _GL_HAVE___TYPEOF__\n# define _GL_SIGNED_TYPE_OR_EXPR(t) TYPE_SIGNED (__typeof__ (t))\n#else\n# define _GL_SIGNED_TYPE_OR_EXPR(t) 1\n#endif\n\n/* Bound on length of the string representing an unsigned integer\n   value representable in B bits.  log10 (2.0) < 146/485.  The\n   smallest value of B where this bound is not tight is 2621.  */\n#define INT_BITS_STRLEN_BOUND(b) (((b) * 146 + 484) / 485)\n\n/* Bound on length of the string representing an integer type or expression T.\n   Subtract 1 for the sign bit if T is signed, and then add 1 more for\n   a minus sign if needed.\n\n   Because _GL_SIGNED_TYPE_OR_EXPR sometimes returns 0 when its argument is\n   signed, this macro may overestimate the true bound by one byte when\n   applied to unsigned types of size 2, 4, 16, ... bytes.  */\n#define INT_STRLEN_BOUND(t)                                     \\\n  (INT_BITS_STRLEN_BOUND (TYPE_WIDTH (t) - _GL_SIGNED_TYPE_OR_EXPR (t)) \\\n   + _GL_SIGNED_TYPE_OR_EXPR (t))\n\n/* Bound on buffer size needed to represent an integer type or expression T,\n   including the terminating null.  */\n#define INT_BUFSIZE_BOUND(t) (INT_STRLEN_BOUND (t) + 1)\n\n\n/* Range overflow checks.\n\n   The INT_<op>_RANGE_OVERFLOW macros return 1 if the corresponding C\n   operators might not yield numerically correct answers due to\n   arithmetic overflow.  They do not rely on undefined or\n   implementation-defined behavior.  Their implementations are simple\n   and straightforward, but they are a bit harder to use than the\n   INT_<op>_OVERFLOW macros described below.\n\n   Example usage:\n\n     long int i = ...;\n     long int j = ...;\n     if (INT_MULTIPLY_RANGE_OVERFLOW (i, j, LONG_MIN, LONG_MAX))\n       printf (\"multiply would overflow\");\n     else\n       printf (\"product is %ld\", i * j);\n\n   Restrictions on *_RANGE_OVERFLOW macros:\n\n   These macros do not check for all possible numerical problems or\n   undefined or unspecified behavior: they do not check for division\n   by zero, for bad shift counts, or for shifting negative numbers.\n\n   These macros may evaluate their arguments zero or multiple times,\n   so the arguments should not have side effects.  The arithmetic\n   arguments (including the MIN and MAX arguments) must be of the same\n   integer type after the usual arithmetic conversions, and the type\n   must have minimum value MIN and maximum MAX.  Unsigned types should\n   use a zero MIN of the proper type.\n\n   These macros are tuned for constant MIN and MAX.  For commutative\n   operations such as A + B, they are also tuned for constant B.  */\n\n/* Return 1 if A + B would overflow in [MIN,MAX] arithmetic.\n   See above for restrictions.  */\n#define INT_ADD_RANGE_OVERFLOW(a, b, min, max)          \\\n  ((b) < 0                                              \\\n   ? (a) < (min) - (b)                                  \\\n   : (max) - (b) < (a))\n\n/* Return 1 if A - B would overflow in [MIN,MAX] arithmetic.\n   See above for restrictions.  */\n#define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max)     \\\n  ((b) < 0                                              \\\n   ? (max) + (b) < (a)                                  \\\n   : (a) < (min) + (b))\n\n/* Return 1 if - A would overflow in [MIN,MAX] arithmetic.\n   See above for restrictions.  */\n#define INT_NEGATE_RANGE_OVERFLOW(a, min, max)          \\\n  ((min) < 0                                            \\\n   ? (a) < - (max)                                      \\\n   : 0 < (a))\n\n/* Return 1 if A * B would overflow in [MIN,MAX] arithmetic.\n   See above for restrictions.  Avoid && and || as they tickle\n   bugs in Sun C 5.11 2010/08/13 and other compilers; see\n   <http://lists.gnu.org/archive/html/bug-gnulib/2011-05/msg00401.html>.  */\n#define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max)     \\\n  ((b) < 0                                              \\\n   ? ((a) < 0                                           \\\n      ? (a) < (max) / (b)                               \\\n      : (b) == -1                                       \\\n      ? 0                                               \\\n      : (min) / (b) < (a))                              \\\n   : (b) == 0                                           \\\n   ? 0                                                  \\\n   : ((a) < 0                                           \\\n      ? (a) < (min) / (b)                               \\\n      : (max) / (b) < (a)))\n\n/* Return 1 if A / B would overflow in [MIN,MAX] arithmetic.\n   See above for restrictions.  Do not check for division by zero.  */\n#define INT_DIVIDE_RANGE_OVERFLOW(a, b, min, max)       \\\n  ((min) < 0 && (b) == -1 && (a) < - (max))\n\n/* Return 1 if A % B would overflow in [MIN,MAX] arithmetic.\n   See above for restrictions.  Do not check for division by zero.\n   Mathematically, % should never overflow, but on x86-like hosts\n   INT_MIN % -1 traps, and the C standard permits this, so treat this\n   as an overflow too.  */\n#define INT_REMAINDER_RANGE_OVERFLOW(a, b, min, max)    \\\n  INT_DIVIDE_RANGE_OVERFLOW (a, b, min, max)\n\n/* Return 1 if A << B would overflow in [MIN,MAX] arithmetic.\n   See above for restrictions.  Here, MIN and MAX are for A only, and B need\n   not be of the same type as the other arguments.  The C standard says that\n   behavior is undefined for shifts unless 0 <= B < wordwidth, and that when\n   A is negative then A << B has undefined behavior and A >> B has\n   implementation-defined behavior, but do not check these other\n   restrictions.  */\n#define INT_LEFT_SHIFT_RANGE_OVERFLOW(a, b, min, max)   \\\n  ((a) < 0                                              \\\n   ? (a) < (min) >> (b)                                 \\\n   : (max) >> (b) < (a))\n\n/* True if __builtin_add_overflow (A, B, P) works when P is non-null.  */\n#define _GL_HAS_BUILTIN_OVERFLOW \\\n  (5 <= __GNUC__ || __has_builtin (__builtin_add_overflow))\n\n/* True if __builtin_add_overflow_p (A, B, C) works.  */\n#define _GL_HAS_BUILTIN_OVERFLOW_P \\\n  (7 <= __GNUC__ || __has_builtin (__builtin_add_overflow_p))\n\n/* The _GL*_OVERFLOW macros have the same restrictions as the\n   *_RANGE_OVERFLOW macros, except that they do not assume that operands\n   (e.g., A and B) have the same type as MIN and MAX.  Instead, they assume\n   that the result (e.g., A + B) has that type.  */\n#if _GL_HAS_BUILTIN_OVERFLOW_P\n# define _GL_ADD_OVERFLOW(a, b, min, max)                               \\\n   __builtin_add_overflow_p (a, b, (__typeof__ ((a) + (b))) 0)\n# define _GL_SUBTRACT_OVERFLOW(a, b, min, max)                          \\\n   __builtin_sub_overflow_p (a, b, (__typeof__ ((a) - (b))) 0)\n# define _GL_MULTIPLY_OVERFLOW(a, b, min, max)                          \\\n   __builtin_mul_overflow_p (a, b, (__typeof__ ((a) * (b))) 0)\n#else\n# define _GL_ADD_OVERFLOW(a, b, min, max)                                \\\n   ((min) < 0 ? INT_ADD_RANGE_OVERFLOW (a, b, min, max)                  \\\n    : (a) < 0 ? (b) <= (a) + (b)                                         \\\n    : (b) < 0 ? (a) <= (a) + (b)                                         \\\n    : (a) + (b) < (b))\n# define _GL_SUBTRACT_OVERFLOW(a, b, min, max)                           \\\n   ((min) < 0 ? INT_SUBTRACT_RANGE_OVERFLOW (a, b, min, max)             \\\n    : (a) < 0 ? 1                                                        \\\n    : (b) < 0 ? (a) - (b) <= (a)                                         \\\n    : (a) < (b))\n# define _GL_MULTIPLY_OVERFLOW(a, b, min, max)                           \\\n   (((min) == 0 && (((a) < 0 && 0 < (b)) || ((b) < 0 && 0 < (a))))       \\\n    || INT_MULTIPLY_RANGE_OVERFLOW (a, b, min, max))\n#endif\n#define _GL_DIVIDE_OVERFLOW(a, b, min, max)                             \\\n  ((min) < 0 ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < - (max)  \\\n   : (a) < 0 ? (b) <= (a) + (b) - 1                                     \\\n   : (b) < 0 && (a) + (b) <= (a))\n#define _GL_REMAINDER_OVERFLOW(a, b, min, max)                          \\\n  ((min) < 0 ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < - (max)  \\\n   : (a) < 0 ? (a) % (b) != ((max) - (b) + 1) % (b)                     \\\n   : (b) < 0 && ! _GL_UNSIGNED_NEG_MULTIPLE (a, b, max))\n\n/* Return a nonzero value if A is a mathematical multiple of B, where\n   A is unsigned, B is negative, and MAX is the maximum value of A's\n   type.  A's type must be the same as (A % B)'s type.  Normally (A %\n   -B == 0) suffices, but things get tricky if -B would overflow.  */\n#define _GL_UNSIGNED_NEG_MULTIPLE(a, b, max)                            \\\n  (((b) < -_GL_SIGNED_INT_MAXIMUM (b)                                   \\\n    ? (_GL_SIGNED_INT_MAXIMUM (b) == (max)                              \\\n       ? (a)                                                            \\\n       : (a) % (_GL_INT_CONVERT (a, _GL_SIGNED_INT_MAXIMUM (b)) + 1))   \\\n    : (a) % - (b))                                                      \\\n   == 0)\n\n/* Check for integer overflow, and report low order bits of answer.\n\n   The INT_<op>_OVERFLOW macros return 1 if the corresponding C operators\n   might not yield numerically correct answers due to arithmetic overflow.\n   The INT_<op>_WRAPV macros also store the low-order bits of the answer.\n   These macros work correctly on all known practical hosts, and do not rely\n   on undefined behavior due to signed arithmetic overflow.\n\n   Example usage, assuming A and B are long int:\n\n     if (INT_MULTIPLY_OVERFLOW (a, b))\n       printf (\"result would overflow\\n\");\n     else\n       printf (\"result is %ld (no overflow)\\n\", a * b);\n\n   Example usage with WRAPV flavor:\n\n     long int result;\n     bool overflow = INT_MULTIPLY_WRAPV (a, b, &result);\n     printf (\"result is %ld (%s)\\n\", result,\n             overflow ? \"after overflow\" : \"no overflow\");\n\n   Restrictions on these macros:\n\n   These macros do not check for all possible numerical problems or\n   undefined or unspecified behavior: they do not check for division\n   by zero, for bad shift counts, or for shifting negative numbers.\n\n   These macros may evaluate their arguments zero or multiple times, so the\n   arguments should not have side effects.\n\n   The WRAPV macros are not constant expressions.  They support only\n   +, binary -, and *.  The result type must be signed.\n\n   These macros are tuned for their last argument being a constant.\n\n   Return 1 if the integer expressions A * B, A - B, -A, A * B, A / B,\n   A % B, and A << B would overflow, respectively.  */\n\n#define INT_ADD_OVERFLOW(a, b) \\\n  _GL_BINARY_OP_OVERFLOW (a, b, _GL_ADD_OVERFLOW)\n#define INT_SUBTRACT_OVERFLOW(a, b) \\\n  _GL_BINARY_OP_OVERFLOW (a, b, _GL_SUBTRACT_OVERFLOW)\n#if _GL_HAS_BUILTIN_OVERFLOW_P\n# define INT_NEGATE_OVERFLOW(a) INT_SUBTRACT_OVERFLOW (0, a)\n#else\n# define INT_NEGATE_OVERFLOW(a) \\\n   INT_NEGATE_RANGE_OVERFLOW (a, _GL_INT_MINIMUM (a), _GL_INT_MAXIMUM (a))\n#endif\n#define INT_MULTIPLY_OVERFLOW(a, b) \\\n  _GL_BINARY_OP_OVERFLOW (a, b, _GL_MULTIPLY_OVERFLOW)\n#define INT_DIVIDE_OVERFLOW(a, b) \\\n  _GL_BINARY_OP_OVERFLOW (a, b, _GL_DIVIDE_OVERFLOW)\n#define INT_REMAINDER_OVERFLOW(a, b) \\\n  _GL_BINARY_OP_OVERFLOW (a, b, _GL_REMAINDER_OVERFLOW)\n#define INT_LEFT_SHIFT_OVERFLOW(a, b) \\\n  INT_LEFT_SHIFT_RANGE_OVERFLOW (a, b, \\\n                                 _GL_INT_MINIMUM (a), _GL_INT_MAXIMUM (a))\n\n/* Return 1 if the expression A <op> B would overflow,\n   where OP_RESULT_OVERFLOW (A, B, MIN, MAX) does the actual test,\n   assuming MIN and MAX are the minimum and maximum for the result type.\n   Arguments should be free of side effects.  */\n#define _GL_BINARY_OP_OVERFLOW(a, b, op_result_overflow)        \\\n  op_result_overflow (a, b,                                     \\\n                      _GL_INT_MINIMUM (0 * (b) + (a)),          \\\n                      _GL_INT_MAXIMUM (0 * (b) + (a)))\n\n/* Store the low-order bits of A + B, A - B, A * B, respectively, into *R.\n   Return 1 if the result overflows.  See above for restrictions.  */\n#define INT_ADD_WRAPV(a, b, r) \\\n  _GL_INT_OP_WRAPV (a, b, r, +, __builtin_add_overflow, INT_ADD_OVERFLOW)\n#define INT_SUBTRACT_WRAPV(a, b, r) \\\n  _GL_INT_OP_WRAPV (a, b, r, -, __builtin_sub_overflow, INT_SUBTRACT_OVERFLOW)\n#define INT_MULTIPLY_WRAPV(a, b, r) \\\n  _GL_INT_OP_WRAPV (a, b, r, *, __builtin_mul_overflow, INT_MULTIPLY_OVERFLOW)\n\n/* Nonzero if this compiler has GCC bug 68193 or Clang bug 25390.  See:\n   https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68193\n   https://llvm.org/bugs/show_bug.cgi?id=25390\n   For now, assume all versions of GCC-like compilers generate bogus\n   warnings for _Generic.  This matters only for older compilers that\n   lack __builtin_add_overflow.  */\n#if __GNUC__\n# define _GL__GENERIC_BOGUS 1\n#else\n# define _GL__GENERIC_BOGUS 0\n#endif\n\n/* Store the low-order bits of A <op> B into *R, where OP specifies\n   the operation.  BUILTIN is the builtin operation, and OVERFLOW the\n   overflow predicate.  Return 1 if the result overflows.  See above\n   for restrictions.  */\n#if _GL_HAS_BUILTIN_OVERFLOW\n# define _GL_INT_OP_WRAPV(a, b, r, op, builtin, overflow) builtin (a, b, r)\n#elif 201112 <= __STDC_VERSION__ && !_GL__GENERIC_BOGUS\n# define _GL_INT_OP_WRAPV(a, b, r, op, builtin, overflow) \\\n   (_Generic \\\n    (*(r), \\\n     signed char: \\\n       _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned char, \\\n                        signed char, SCHAR_MIN, SCHAR_MAX), \\\n     short int: \\\n       _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned short int, \\\n                        short int, SHRT_MIN, SHRT_MAX), \\\n     int: \\\n       _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \\\n                        int, INT_MIN, INT_MAX), \\\n     long int: \\\n       _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \\\n                        long int, LONG_MIN, LONG_MAX), \\\n     long long int: \\\n       _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \\\n                        long long int, LLONG_MIN, LLONG_MAX)))\n#else\n# define _GL_INT_OP_WRAPV(a, b, r, op, builtin, overflow) \\\n   (sizeof *(r) == sizeof (signed char) \\\n    ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned char, \\\n                       signed char, SCHAR_MIN, SCHAR_MAX) \\\n    : sizeof *(r) == sizeof (short int) \\\n    ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned short int, \\\n                       short int, SHRT_MIN, SHRT_MAX) \\\n    : sizeof *(r) == sizeof (int) \\\n    ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \\\n                       int, INT_MIN, INT_MAX) \\\n    : _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow))\n# ifdef LLONG_MAX\n#  define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \\\n    (sizeof *(r) == sizeof (long int) \\\n     ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \\\n                        long int, LONG_MIN, LONG_MAX) \\\n     : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \\\n                        long long int, LLONG_MIN, LLONG_MAX))\n# else\n#  define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \\\n    _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \\\n                     long int, LONG_MIN, LONG_MAX)\n# endif\n#endif\n\n/* Store the low-order bits of A <op> B into *R, where the operation\n   is given by OP.  Use the unsigned type UT for calculation to avoid\n   overflow problems.  *R's type is T, with extremal values TMIN and\n   TMAX.  T must be a signed integer type.  Return 1 if the result\n   overflows.  */\n#define _GL_INT_OP_CALC(a, b, r, op, overflow, ut, t, tmin, tmax) \\\n  (sizeof ((a) op (b)) < sizeof (t) \\\n   ? _GL_INT_OP_CALC1 ((t) (a), (t) (b), r, op, overflow, ut, t, tmin, tmax) \\\n   : _GL_INT_OP_CALC1 (a, b, r, op, overflow, ut, t, tmin, tmax))\n#define _GL_INT_OP_CALC1(a, b, r, op, overflow, ut, t, tmin, tmax) \\\n  ((overflow (a, b) \\\n    || (EXPR_SIGNED ((a) op (b)) && ((a) op (b)) < (tmin)) \\\n    || (tmax) < ((a) op (b))) \\\n   ? (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, ut, t, tmin, tmax), 1) \\\n   : (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, ut, t, tmin, tmax), 0))\n\n/* Return A <op> B, where the operation is given by OP.  Use the\n   unsigned type UT for calculation to avoid overflow problems.\n   Convert the result to type T without overflow by subtracting TMIN\n   from large values before converting, and adding it afterwards.\n   Compilers can optimize all the operations except OP.  */\n#define _GL_INT_OP_WRAPV_VIA_UNSIGNED(a, b, op, ut, t, tmin, tmax) \\\n  (((ut) (a) op (ut) (b)) <= (tmax) \\\n   ? (t) ((ut) (a) op (ut) (b)) \\\n   : ((t) (((ut) (a) op (ut) (b)) - (tmin)) + (tmin)))\n\n#endif /* _GL_INTPROPS_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/limits.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* A GNU-like <limits.h>.\n\n   Copyright 2016-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or\n   modify it under the terms of the GNU General Public License\n   as published by the Free Software Foundation; either version 3, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _GL_LIMITS_H\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n/* The include_next requires a split double-inclusion guard.  */\n#include_next <limits.h>\n\n#ifndef _GL_LIMITS_H\n#define _GL_LIMITS_H\n\n/* The number of usable bits in an unsigned or signed integer type\n   with minimum value MIN and maximum value MAX, as an int expression\n   suitable in #if.  Cover all known practical hosts.  This\n   implementation exploits the fact that MAX is 1 less than a power of\n   2, and merely counts the number of 1 bits in MAX; \"COBn\" means\n   \"count the number of 1 bits in the low-order n bits\").  */\n#define _GL_INTEGER_WIDTH(min, max) (((min) < 0) + _GL_COB128 (max))\n#define _GL_COB128(n) (_GL_COB64 ((n) >> 31 >> 31 >> 2) + _GL_COB64 (n))\n#define _GL_COB64(n) (_GL_COB32 ((n) >> 31 >> 1) + _GL_COB32 (n))\n#define _GL_COB32(n) (_GL_COB16 ((n) >> 16) + _GL_COB16 (n))\n#define _GL_COB16(n) (_GL_COB8 ((n) >> 8) + _GL_COB8 (n))\n#define _GL_COB8(n) (_GL_COB4 ((n) >> 4) + _GL_COB4 (n))\n#define _GL_COB4(n) (!!((n) & 8) + !!((n) & 4) + !!((n) & 2) + !!((n) & 1))\n\n/* Macros specified by ISO/IEC TS 18661-1:2014.  */\n\n#if (! defined ULLONG_WIDTH                                             \\\n     && (defined _GNU_SOURCE || defined __STDC_WANT_IEC_60559_BFP_EXT__))\n# define CHAR_WIDTH _GL_INTEGER_WIDTH (CHAR_MIN, CHAR_MAX)\n# define SCHAR_WIDTH _GL_INTEGER_WIDTH (SCHAR_MIN, SCHAR_MAX)\n# define UCHAR_WIDTH _GL_INTEGER_WIDTH (0, UCHAR_MAX)\n# define SHRT_WIDTH _GL_INTEGER_WIDTH (SHRT_MIN, SHRT_MAX)\n# define USHRT_WIDTH _GL_INTEGER_WIDTH (0, USHRT_MAX)\n# define INT_WIDTH _GL_INTEGER_WIDTH (INT_MIN, INT_MAX)\n# define UINT_WIDTH _GL_INTEGER_WIDTH (0, UINT_MAX)\n# define LONG_WIDTH _GL_INTEGER_WIDTH (LONG_MIN, LONG_MAX)\n# define ULONG_WIDTH _GL_INTEGER_WIDTH (0, ULONG_MAX)\n# define LLONG_WIDTH _GL_INTEGER_WIDTH (LLONG_MIN, LLONG_MAX)\n# define ULLONG_WIDTH _GL_INTEGER_WIDTH (0, ULLONG_MAX)\n#endif /* !ULLONG_WIDTH && (_GNU_SOURCE || __STDC_WANT_IEC_60559_BFP_EXT__) */\n\n#endif /* _GL_LIMITS_H */\n#endif /* _GL_LIMITS_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/limits.in.h",
    "content": "/* A GNU-like <limits.h>.\n\n   Copyright 2016-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or\n   modify it under the terms of the GNU General Public License\n   as published by the Free Software Foundation; either version 3, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _@GUARD_PREFIX@_LIMITS_H\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n/* The include_next requires a split double-inclusion guard.  */\n#@INCLUDE_NEXT@ @NEXT_LIMITS_H@\n\n#ifndef _@GUARD_PREFIX@_LIMITS_H\n#define _@GUARD_PREFIX@_LIMITS_H\n\n/* The number of usable bits in an unsigned or signed integer type\n   with minimum value MIN and maximum value MAX, as an int expression\n   suitable in #if.  Cover all known practical hosts.  This\n   implementation exploits the fact that MAX is 1 less than a power of\n   2, and merely counts the number of 1 bits in MAX; \"COBn\" means\n   \"count the number of 1 bits in the low-order n bits\").  */\n#define _GL_INTEGER_WIDTH(min, max) (((min) < 0) + _GL_COB128 (max))\n#define _GL_COB128(n) (_GL_COB64 ((n) >> 31 >> 31 >> 2) + _GL_COB64 (n))\n#define _GL_COB64(n) (_GL_COB32 ((n) >> 31 >> 1) + _GL_COB32 (n))\n#define _GL_COB32(n) (_GL_COB16 ((n) >> 16) + _GL_COB16 (n))\n#define _GL_COB16(n) (_GL_COB8 ((n) >> 8) + _GL_COB8 (n))\n#define _GL_COB8(n) (_GL_COB4 ((n) >> 4) + _GL_COB4 (n))\n#define _GL_COB4(n) (!!((n) & 8) + !!((n) & 4) + !!((n) & 2) + !!((n) & 1))\n\n/* Macros specified by ISO/IEC TS 18661-1:2014.  */\n\n#if (! defined ULLONG_WIDTH                                             \\\n     && (defined _GNU_SOURCE || defined __STDC_WANT_IEC_60559_BFP_EXT__))\n# define CHAR_WIDTH _GL_INTEGER_WIDTH (CHAR_MIN, CHAR_MAX)\n# define SCHAR_WIDTH _GL_INTEGER_WIDTH (SCHAR_MIN, SCHAR_MAX)\n# define UCHAR_WIDTH _GL_INTEGER_WIDTH (0, UCHAR_MAX)\n# define SHRT_WIDTH _GL_INTEGER_WIDTH (SHRT_MIN, SHRT_MAX)\n# define USHRT_WIDTH _GL_INTEGER_WIDTH (0, USHRT_MAX)\n# define INT_WIDTH _GL_INTEGER_WIDTH (INT_MIN, INT_MAX)\n# define UINT_WIDTH _GL_INTEGER_WIDTH (0, UINT_MAX)\n# define LONG_WIDTH _GL_INTEGER_WIDTH (LONG_MIN, LONG_MAX)\n# define ULONG_WIDTH _GL_INTEGER_WIDTH (0, ULONG_MAX)\n# define LLONG_WIDTH _GL_INTEGER_WIDTH (LLONG_MIN, LLONG_MAX)\n# define ULLONG_WIDTH _GL_INTEGER_WIDTH (0, ULLONG_MAX)\n#endif /* !ULLONG_WIDTH && (_GNU_SOURCE || __STDC_WANT_IEC_60559_BFP_EXT__) */\n\n#endif /* _@GUARD_PREFIX@_LIMITS_H */\n#endif /* _@GUARD_PREFIX@_LIMITS_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/localcharset.h",
    "content": "/* Determine a canonical name for the current locale's character encoding.\n   Copyright (C) 2000-2003, 2009-2017 Free Software Foundation, Inc.\n   This file is part of the GNU CHARSET Library.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License along\n   with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _LOCALCHARSET_H\n#define _LOCALCHARSET_H\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Determine the current locale's character encoding, and canonicalize it\n   into one of the canonical names listed in config.charset.\n   The result must not be freed; it is statically allocated.\n   If the canonical name cannot be determined, the result is a non-canonical\n   name.  */\nextern const char * locale_charset (void);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _LOCALCHARSET_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/lstat.c",
    "content": "/* Work around a bug of lstat on some systems\n\n   Copyright (C) 1997-2006, 2008-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* written by Jim Meyering */\n\n/* If the user's config.h happens to include <sys/stat.h>, let it include only\n   the system's <sys/stat.h> here, so that orig_lstat doesn't recurse to\n   rpl_lstat.  */\n#define __need_system_sys_stat_h\n#include <config.h>\n\n#if !HAVE_LSTAT\n/* On systems that lack symlinks, our replacement <sys/stat.h> already\n   defined lstat as stat, so there is nothing further to do other than\n   avoid an empty file.  */\ntypedef int dummy;\n#else /* HAVE_LSTAT */\n\n/* Get the original definition of lstat.  It might be defined as a macro.  */\n# include <sys/types.h>\n# include <sys/stat.h>\n# undef __need_system_sys_stat_h\n\nstatic int\norig_lstat (const char *filename, struct stat *buf)\n{\n  return lstat (filename, buf);\n}\n\n/* Specification.  */\n/* Write \"sys/stat.h\" here, not <sys/stat.h>, otherwise OSF/1 5.1 DTK cc\n   eliminates this include because of the preliminary #include <sys/stat.h>\n   above.  */\n# include \"sys/stat.h\"\n\n# include <string.h>\n# include <errno.h>\n\n/* lstat works differently on Linux and Solaris systems.  POSIX (see\n   \"pathname resolution\" in the glossary) requires that programs like\n   'ls' take into consideration the fact that FILE has a trailing slash\n   when FILE is a symbolic link.  On Linux and Solaris 10 systems, the\n   lstat function already has the desired semantics (in treating\n   'lstat (\"symlink/\", sbuf)' just like 'lstat (\"symlink/.\", sbuf)',\n   but on Solaris 9 and earlier it does not.\n\n   If FILE has a trailing slash and specifies a symbolic link,\n   then use stat() to get more info on the referent of FILE.\n   If the referent is a non-directory, then set errno to ENOTDIR\n   and return -1.  Otherwise, return stat's result.  */\n\nint\nrpl_lstat (const char *file, struct stat *sbuf)\n{\n  size_t len;\n  int lstat_result = orig_lstat (file, sbuf);\n\n  if (lstat_result != 0)\n    return lstat_result;\n\n  /* This replacement file can blindly check against '/' rather than\n     using the ISSLASH macro, because all platforms with '\\\\' either\n     lack symlinks (mingw) or have working lstat (cygwin) and thus do\n     not compile this file.  0 len should have already been filtered\n     out above, with a failure return of ENOENT.  */\n  len = strlen (file);\n  if (file[len - 1] != '/' || S_ISDIR (sbuf->st_mode))\n    return 0;\n\n  /* At this point, a trailing slash is only permitted on\n     symlink-to-dir; but it should have found information on the\n     directory, not the symlink.  Call stat() to get info about the\n     link's referent.  Our replacement stat guarantees valid results,\n     even if the symlink is not pointing to a directory.  */\n  if (!S_ISLNK (sbuf->st_mode))\n    {\n      errno = ENOTDIR;\n      return -1;\n    }\n  return stat (file, sbuf);\n}\n\n#endif /* HAVE_LSTAT */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/malloc.c",
    "content": "/* malloc() function that is glibc compatible.\n\n   Copyright (C) 1997-1998, 2006-2007, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/* written by Jim Meyering and Bruno Haible */\n\n#define _GL_USE_STDLIB_ALLOC 1\n#include <config.h>\n/* Only the AC_FUNC_MALLOC macro defines 'malloc' already in config.h.  */\n#ifdef malloc\n# define NEED_MALLOC_GNU 1\n# undef malloc\n/* Whereas the gnulib module 'malloc-gnu' defines HAVE_MALLOC_GNU.  */\n#elif GNULIB_MALLOC_GNU && !HAVE_MALLOC_GNU\n# define NEED_MALLOC_GNU 1\n#endif\n\n#include <stdlib.h>\n\n#include <errno.h>\n\n/* Allocate an N-byte block of memory from the heap.\n   If N is zero, allocate a 1-byte block.  */\n\nvoid *\nrpl_malloc (size_t n)\n{\n  void *result;\n\n#if NEED_MALLOC_GNU\n  if (n == 0)\n    n = 1;\n#endif\n\n  result = malloc (n);\n\n#if !HAVE_MALLOC_POSIX\n  if (result == NULL)\n    errno = ENOMEM;\n#endif\n\n  return result;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/malloca.c",
    "content": "/* Safe automatic memory allocation.\n   Copyright (C) 2003, 2006-2007, 2009-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2003.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#define _GL_USE_STDLIB_ALLOC 1\n#include <config.h>\n\n/* Specification.  */\n#include \"malloca.h\"\n\n#include <stdint.h>\n\n#include \"verify.h\"\n\n/* The speed critical point in this file is freea() applied to an alloca()\n   result: it must be fast, to match the speed of alloca().  The speed of\n   mmalloca() and freea() in the other case are not critical, because they\n   are only invoked for big memory sizes.  */\n\n#if HAVE_ALLOCA\n\n/* Store the mmalloca() results in a hash table.  This is needed to reliably\n   distinguish a mmalloca() result and an alloca() result.\n\n   Although it is possible that the same pointer is returned by alloca() and\n   by mmalloca() at different times in the same application, it does not lead\n   to a bug in freea(), because:\n     - Before a pointer returned by alloca() can point into malloc()ed memory,\n       the function must return, and once this has happened the programmer must\n       not call freea() on it anyway.\n     - Before a pointer returned by mmalloca() can point into the stack, it\n       must be freed.  The only function that can free it is freea(), and\n       when freea() frees it, it also removes it from the hash table.  */\n\n#define MAGIC_NUMBER 0x1415fb4a\n#define MAGIC_SIZE sizeof (int)\n/* This is how the header info would look like without any alignment\n   considerations.  */\nstruct preliminary_header { void *next; int magic; };\n/* But the header's size must be a multiple of sa_alignment_max.  */\n#define HEADER_SIZE \\\n  (((sizeof (struct preliminary_header) + sa_alignment_max - 1) / sa_alignment_max) * sa_alignment_max)\nunion header {\n  void *next;\n  struct {\n    char room[HEADER_SIZE - MAGIC_SIZE];\n    int word;\n  } magic;\n};\nverify (HEADER_SIZE == sizeof (union header));\n/* We make the hash table quite big, so that during lookups the probability\n   of empty hash buckets is quite high.  There is no need to make the hash\n   table resizable, because when the hash table gets filled so much that the\n   lookup becomes slow, it means that the application has memory leaks.  */\n#define HASH_TABLE_SIZE 257\nstatic void * mmalloca_results[HASH_TABLE_SIZE];\n\n#endif\n\nvoid *\nmmalloca (size_t n)\n{\n#if HAVE_ALLOCA\n  /* Allocate one more word, that serves as an indicator for malloc()ed\n     memory, so that freea() of an alloca() result is fast.  */\n  size_t nplus = n + HEADER_SIZE;\n\n  if (nplus >= n)\n    {\n      void *p = malloc (nplus);\n\n      if (p != NULL)\n        {\n          size_t slot;\n          union header *h = p;\n\n          p = h + 1;\n\n          /* Put a magic number into the indicator word.  */\n          h->magic.word = MAGIC_NUMBER;\n\n          /* Enter p into the hash table.  */\n          slot = (uintptr_t) p % HASH_TABLE_SIZE;\n          h->next = mmalloca_results[slot];\n          mmalloca_results[slot] = p;\n\n          return p;\n        }\n    }\n  /* Out of memory.  */\n  return NULL;\n#else\n# if !MALLOC_0_IS_NONNULL\n  if (n == 0)\n    n = 1;\n# endif\n  return malloc (n);\n#endif\n}\n\n#if HAVE_ALLOCA\nvoid\nfreea (void *p)\n{\n  /* mmalloca() may have returned NULL.  */\n  if (p != NULL)\n    {\n      /* Attempt to quickly distinguish the mmalloca() result - which has\n         a magic indicator word - and the alloca() result - which has an\n         uninitialized indicator word.  It is for this test that sa_increment\n         additional bytes are allocated in the alloca() case.  */\n      if (((int *) p)[-1] == MAGIC_NUMBER)\n        {\n          /* Looks like a mmalloca() result.  To see whether it really is one,\n             perform a lookup in the hash table.  */\n          size_t slot = (uintptr_t) p % HASH_TABLE_SIZE;\n          void **chain = &mmalloca_results[slot];\n          for (; *chain != NULL;)\n            {\n              union header *h = p;\n              if (*chain == p)\n                {\n                  /* Found it.  Remove it from the hash table and free it.  */\n                  union header *p_begin = h - 1;\n                  *chain = p_begin->next;\n                  free (p_begin);\n                  return;\n                }\n              h = *chain;\n              chain = &h[-1].next;\n            }\n        }\n      /* At this point, we know it was not a mmalloca() result.  */\n    }\n}\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/malloca.h",
    "content": "/* Safe automatic memory allocation.\n   Copyright (C) 2003-2007, 2009-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2003.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _MALLOCA_H\n#define _MALLOCA_H\n\n#include <alloca.h>\n#include <stddef.h>\n#include <stdlib.h>\n#include <stdint.h>\n\n#include \"xalloc-oversized.h\"\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* safe_alloca(N) is equivalent to alloca(N) when it is safe to call\n   alloca(N); otherwise it returns NULL.  It either returns N bytes of\n   memory allocated on the stack, that lasts until the function returns,\n   or NULL.\n   Use of safe_alloca should be avoided:\n     - inside arguments of function calls - undefined behaviour,\n     - in inline functions - the allocation may actually last until the\n       calling function returns.\n*/\n#if HAVE_ALLOCA\n/* The OS usually guarantees only one guard page at the bottom of the stack,\n   and a page size can be as small as 4096 bytes.  So we cannot safely\n   allocate anything larger than 4096 bytes.  Also care for the possibility\n   of a few compiler-allocated temporary stack slots.\n   This must be a macro, not a function.  */\n# define safe_alloca(N) ((N) < 4032 ? alloca (N) : NULL)\n#else\n# define safe_alloca(N) ((void) (N), NULL)\n#endif\n\n/* malloca(N) is a safe variant of alloca(N).  It allocates N bytes of\n   memory allocated on the stack, that must be freed using freea() before\n   the function returns.  Upon failure, it returns NULL.  */\n#if HAVE_ALLOCA\n# define malloca(N) \\\n  ((N) < 4032 - sa_increment                                        \\\n   ? (void *) ((char *) alloca ((N) + sa_increment) + sa_increment) \\\n   : mmalloca (N))\n#else\n# define malloca(N) \\\n  mmalloca (N)\n#endif\nextern void * mmalloca (size_t n);\n\n/* Free a block of memory allocated through malloca().  */\n#if HAVE_ALLOCA\nextern void freea (void *p);\n#else\n# define freea free\n#endif\n\n/* nmalloca(N,S) is an overflow-safe variant of malloca (N * S).\n   It allocates an array of N objects, each with S bytes of memory,\n   on the stack.  S must be positive and N must be nonnegative.\n   The array must be freed using freea() before the function returns.  */\n#define nmalloca(n, s) (xalloc_oversized (n, s) ? NULL : malloca ((n) * (s)))\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n/* ------------------- Auxiliary, non-public definitions ------------------- */\n\n/* Determine the alignment of a type at compile time.  */\n#if defined __GNUC__ || defined __IBM__ALIGNOF__\n# define sa_alignof __alignof__\n#elif defined __cplusplus\n  template <class type> struct sa_alignof_helper { char __slot1; type __slot2; };\n# define sa_alignof(type) offsetof (sa_alignof_helper<type>, __slot2)\n#elif defined __hpux\n  /* Work around a HP-UX 10.20 cc bug with enums constants defined as offsetof\n     values.  */\n# define sa_alignof(type) (sizeof (type) <= 4 ? 4 : 8)\n#elif defined _AIX\n  /* Work around an AIX 3.2.5 xlc bug with enums constants defined as offsetof\n     values.  */\n# define sa_alignof(type) (sizeof (type) <= 4 ? 4 : 8)\n#else\n# define sa_alignof(type) offsetof (struct { char __slot1; type __slot2; }, __slot2)\n#endif\n\nenum\n{\n/* The desired alignment of memory allocations is the maximum alignment\n   among all elementary types.  */\n  sa_alignment_long = sa_alignof (long),\n  sa_alignment_double = sa_alignof (double),\n#if HAVE_LONG_LONG_INT\n  sa_alignment_longlong = sa_alignof (long long),\n#endif\n  sa_alignment_longdouble = sa_alignof (long double),\n  sa_alignment_max = ((sa_alignment_long - 1) | (sa_alignment_double - 1)\n#if HAVE_LONG_LONG_INT\n                      | (sa_alignment_longlong - 1)\n#endif\n                      | (sa_alignment_longdouble - 1)\n                     ) + 1,\n/* The increment that guarantees room for a magic word must be >= sizeof (int)\n   and a multiple of sa_alignment_max.  */\n  sa_increment = ((sizeof (int) + sa_alignment_max - 1) / sa_alignment_max) * sa_alignment_max\n};\n\n#endif /* _MALLOCA_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/malloca.valgrind",
    "content": "# Suppress a valgrind message about use of uninitialized memory in freea().\n# This use is OK because it provides only a speedup.\n{\n    freea\n    Memcheck:Cond\n    fun:freea\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/msvc-inval.c",
    "content": "/* Invalid parameter handler for MSVC runtime libraries.\n   Copyright (C) 2011-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License along\n   with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include \"msvc-inval.h\"\n\n#if HAVE_MSVC_INVALID_PARAMETER_HANDLER \\\n    && !(MSVC_INVALID_PARAMETER_HANDLING == SANE_LIBRARY_HANDLING)\n\n/* Get _invalid_parameter_handler type and _set_invalid_parameter_handler\n   declaration.  */\n# include <stdlib.h>\n\n# if MSVC_INVALID_PARAMETER_HANDLING == DEFAULT_HANDLING\n\nstatic void __cdecl\ngl_msvc_invalid_parameter_handler (const wchar_t *expression,\n                                   const wchar_t *function,\n                                   const wchar_t *file,\n                                   unsigned int line,\n                                   uintptr_t dummy)\n{\n}\n\n# else\n\n/* Get declarations of the native Windows API functions.  */\n#  define WIN32_LEAN_AND_MEAN\n#  include <windows.h>\n\n#  if defined _MSC_VER\n\nstatic void __cdecl\ngl_msvc_invalid_parameter_handler (const wchar_t *expression,\n                                   const wchar_t *function,\n                                   const wchar_t *file,\n                                   unsigned int line,\n                                   uintptr_t dummy)\n{\n  RaiseException (STATUS_GNULIB_INVALID_PARAMETER, 0, 0, NULL);\n}\n\n#  else\n\n/* An index to thread-local storage.  */\nstatic DWORD tls_index;\nstatic int tls_initialized /* = 0 */;\n\n/* Used as a fallback only.  */\nstatic struct gl_msvc_inval_per_thread not_per_thread;\n\nstruct gl_msvc_inval_per_thread *\ngl_msvc_inval_current (void)\n{\n  if (!tls_initialized)\n    {\n      tls_index = TlsAlloc ();\n      tls_initialized = 1;\n    }\n  if (tls_index == TLS_OUT_OF_INDEXES)\n    /* TlsAlloc had failed.  */\n    return &not_per_thread;\n  else\n    {\n      struct gl_msvc_inval_per_thread *pointer =\n        (struct gl_msvc_inval_per_thread *) TlsGetValue (tls_index);\n      if (pointer == NULL)\n        {\n          /* First call.  Allocate a new 'struct gl_msvc_inval_per_thread'.  */\n          pointer =\n            (struct gl_msvc_inval_per_thread *)\n            malloc (sizeof (struct gl_msvc_inval_per_thread));\n          if (pointer == NULL)\n            /* Could not allocate memory.  Use the global storage.  */\n            pointer = &not_per_thread;\n          TlsSetValue (tls_index, pointer);\n        }\n      return pointer;\n    }\n}\n\nstatic void __cdecl\ngl_msvc_invalid_parameter_handler (const wchar_t *expression,\n                                   const wchar_t *function,\n                                   const wchar_t *file,\n                                   unsigned int line,\n                                   uintptr_t dummy)\n{\n  struct gl_msvc_inval_per_thread *current = gl_msvc_inval_current ();\n  if (current->restart_valid)\n    longjmp (current->restart, 1);\n  else\n    /* An invalid parameter notification from outside the gnulib code.\n       Give the caller a chance to intervene.  */\n    RaiseException (STATUS_GNULIB_INVALID_PARAMETER, 0, 0, NULL);\n}\n\n#  endif\n\n# endif\n\nstatic int gl_msvc_inval_initialized /* = 0 */;\n\nvoid\ngl_msvc_inval_ensure_handler (void)\n{\n  if (gl_msvc_inval_initialized == 0)\n    {\n      _set_invalid_parameter_handler (gl_msvc_invalid_parameter_handler);\n      gl_msvc_inval_initialized = 1;\n    }\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/msvc-inval.h",
    "content": "/* Invalid parameter handler for MSVC runtime libraries.\n   Copyright (C) 2011-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License along\n   with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _MSVC_INVAL_H\n#define _MSVC_INVAL_H\n\n/* With MSVC runtime libraries with the \"invalid parameter handler\" concept,\n   functions like fprintf(), dup2(), or close() crash when the caller passes\n   an invalid argument.  But POSIX wants error codes (such as EINVAL or EBADF)\n   instead.\n   This file defines macros that turn such an invalid parameter notification\n   into a non-local exit.  An error code can then be produced at the target\n   of this exit.  You can thus write code like\n\n     TRY_MSVC_INVAL\n       {\n         <Code that can trigger an invalid parameter notification\n          but does not do 'return', 'break', 'continue', nor 'goto'.>\n       }\n     CATCH_MSVC_INVAL\n       {\n         <Code that handles an invalid parameter notification\n          but does not do 'return', 'break', 'continue', nor 'goto'.>\n       }\n     DONE_MSVC_INVAL;\n\n   This entire block expands to a single statement.\n\n   The handling of invalid parameters can be done in three ways:\n\n     * The default way, which is reasonable for programs (not libraries):\n       AC_DEFINE([MSVC_INVALID_PARAMETER_HANDLING], [DEFAULT_HANDLING])\n\n     * The way for libraries that make \"hairy\" calls (like close(-1), or\n       fclose(fp) where fileno(fp) is closed, or simply getdtablesize()):\n       AC_DEFINE([MSVC_INVALID_PARAMETER_HANDLING], [HAIRY_LIBRARY_HANDLING])\n\n     * The way for libraries that make no \"hairy\" calls:\n       AC_DEFINE([MSVC_INVALID_PARAMETER_HANDLING], [SANE_LIBRARY_HANDLING])\n */\n\n#define DEFAULT_HANDLING       0\n#define HAIRY_LIBRARY_HANDLING 1\n#define SANE_LIBRARY_HANDLING  2\n\n#if HAVE_MSVC_INVALID_PARAMETER_HANDLER \\\n    && !(MSVC_INVALID_PARAMETER_HANDLING == SANE_LIBRARY_HANDLING)\n/* A native Windows platform with the \"invalid parameter handler\" concept,\n   and either DEFAULT_HANDLING or HAIRY_LIBRARY_HANDLING.  */\n\n# if MSVC_INVALID_PARAMETER_HANDLING == DEFAULT_HANDLING\n/* Default handling.  */\n\n#  ifdef __cplusplus\nextern \"C\" {\n#  endif\n\n/* Ensure that the invalid parameter handler in installed that just returns.\n   Because we assume no other part of the program installs a different\n   invalid parameter handler, this solution is multithread-safe.  */\nextern void gl_msvc_inval_ensure_handler (void);\n\n#  ifdef __cplusplus\n}\n#  endif\n\n#  define TRY_MSVC_INVAL \\\n     do                                                                        \\\n       {                                                                       \\\n         gl_msvc_inval_ensure_handler ();                                      \\\n         if (1)\n#  define CATCH_MSVC_INVAL \\\n         else\n#  define DONE_MSVC_INVAL \\\n       }                                                                       \\\n     while (0)\n\n# else\n/* Handling for hairy libraries.  */\n\n#  include <excpt.h>\n\n/* Gnulib can define its own status codes, as described in the page\n   \"Raising Software Exceptions\" on microsoft.com\n   <http://msdn.microsoft.com/en-us/library/het71c37.aspx>.\n   Our status codes are composed of\n     - 0xE0000000, mandatory for all user-defined status codes,\n     - 0x474E550, a API identifier (\"GNU\"),\n     - 0, 1, 2, ..., used to distinguish different status codes from the\n       same API.  */\n#  define STATUS_GNULIB_INVALID_PARAMETER (0xE0000000 + 0x474E550 + 0)\n\n#  if defined _MSC_VER\n/* A compiler that supports __try/__except, as described in the page\n   \"try-except statement\" on microsoft.com\n   <http://msdn.microsoft.com/en-us/library/s58ftw19.aspx>.\n   With __try/__except, we can use the multithread-safe exception handling.  */\n\n#   ifdef __cplusplus\nextern \"C\" {\n#   endif\n\n/* Ensure that the invalid parameter handler in installed that raises a\n   software exception with code STATUS_GNULIB_INVALID_PARAMETER.\n   Because we assume no other part of the program installs a different\n   invalid parameter handler, this solution is multithread-safe.  */\nextern void gl_msvc_inval_ensure_handler (void);\n\n#   ifdef __cplusplus\n}\n#   endif\n\n#   define TRY_MSVC_INVAL \\\n      do                                                                       \\\n        {                                                                      \\\n          gl_msvc_inval_ensure_handler ();                                     \\\n          __try\n#   define CATCH_MSVC_INVAL \\\n          __except (GetExceptionCode () == STATUS_GNULIB_INVALID_PARAMETER     \\\n                    ? EXCEPTION_EXECUTE_HANDLER                                \\\n                    : EXCEPTION_CONTINUE_SEARCH)\n#   define DONE_MSVC_INVAL \\\n        }                                                                      \\\n      while (0)\n\n#  else\n/* Any compiler.\n   We can only use setjmp/longjmp.  */\n\n#   include <setjmp.h>\n\n#   ifdef __cplusplus\nextern \"C\" {\n#   endif\n\nstruct gl_msvc_inval_per_thread\n{\n  /* The restart that will resume execution at the code between\n     CATCH_MSVC_INVAL and DONE_MSVC_INVAL.  It is enabled only between\n     TRY_MSVC_INVAL and CATCH_MSVC_INVAL.  */\n  jmp_buf restart;\n\n  /* Tells whether the contents of restart is valid.  */\n  int restart_valid;\n};\n\n/* Ensure that the invalid parameter handler in installed that passes\n   control to the gl_msvc_inval_restart if it is valid, or raises a\n   software exception with code STATUS_GNULIB_INVALID_PARAMETER otherwise.\n   Because we assume no other part of the program installs a different\n   invalid parameter handler, this solution is multithread-safe.  */\nextern void gl_msvc_inval_ensure_handler (void);\n\n/* Return a pointer to the per-thread data for the current thread.  */\nextern struct gl_msvc_inval_per_thread *gl_msvc_inval_current (void);\n\n#   ifdef __cplusplus\n}\n#   endif\n\n#   define TRY_MSVC_INVAL \\\n      do                                                                       \\\n        {                                                                      \\\n          struct gl_msvc_inval_per_thread *msvc_inval_current;                 \\\n          gl_msvc_inval_ensure_handler ();                                     \\\n          msvc_inval_current = gl_msvc_inval_current ();                       \\\n          /* First, initialize gl_msvc_inval_restart.  */                      \\\n          if (setjmp (msvc_inval_current->restart) == 0)                       \\\n            {                                                                  \\\n              /* Then, mark it as valid.  */                                   \\\n              msvc_inval_current->restart_valid = 1;\n#   define CATCH_MSVC_INVAL \\\n              /* Execution completed.                                          \\\n                 Mark gl_msvc_inval_restart as invalid.  */                    \\\n              msvc_inval_current->restart_valid = 0;                           \\\n            }                                                                  \\\n          else                                                                 \\\n            {                                                                  \\\n              /* Execution triggered an invalid parameter notification.        \\\n                 Mark gl_msvc_inval_restart as invalid.  */                    \\\n              msvc_inval_current->restart_valid = 0;\n#   define DONE_MSVC_INVAL \\\n            }                                                                  \\\n        }                                                                      \\\n      while (0)\n\n#  endif\n\n# endif\n\n#else\n/* A platform that does not need to the invalid parameter handler,\n   or when SANE_LIBRARY_HANDLING is desired.  */\n\n/* The braces here avoid GCC warnings like\n   \"warning: suggest explicit braces to avoid ambiguous 'else'\".  */\n# define TRY_MSVC_INVAL \\\n    do                                                                         \\\n      {                                                                        \\\n        if (1)\n# define CATCH_MSVC_INVAL \\\n        else\n# define DONE_MSVC_INVAL \\\n      }                                                                        \\\n    while (0)\n\n#endif\n\n#endif /* _MSVC_INVAL_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/msvc-nothrow.c",
    "content": "/* Wrappers that don't throw invalid parameter notifications\n   with MSVC runtime libraries.\n   Copyright (C) 2011-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License along\n   with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include \"msvc-nothrow.h\"\n\n/* Get declarations of the native Windows API functions.  */\n#define WIN32_LEAN_AND_MEAN\n#include <windows.h>\n\n#include \"msvc-inval.h\"\n\n#undef _get_osfhandle\n\n#if HAVE_MSVC_INVALID_PARAMETER_HANDLER\nintptr_t\n_gl_nothrow_get_osfhandle (int fd)\n{\n  intptr_t result;\n\n  TRY_MSVC_INVAL\n    {\n      result = _get_osfhandle (fd);\n    }\n  CATCH_MSVC_INVAL\n    {\n      result = (intptr_t) INVALID_HANDLE_VALUE;\n    }\n  DONE_MSVC_INVAL;\n\n  return result;\n}\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/msvc-nothrow.h",
    "content": "/* Wrappers that don't throw invalid parameter notifications\n   with MSVC runtime libraries.\n   Copyright (C) 2011-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License along\n   with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _MSVC_NOTHROW_H\n#define _MSVC_NOTHROW_H\n\n/* With MSVC runtime libraries with the \"invalid parameter handler\" concept,\n   functions like fprintf(), dup2(), or close() crash when the caller passes\n   an invalid argument.  But POSIX wants error codes (such as EINVAL or EBADF)\n   instead.\n   This file defines wrappers that turn such an invalid parameter notification\n   into an error code.  */\n\n#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n\n/* Get original declaration of _get_osfhandle.  */\n# include <io.h>\n\n# if HAVE_MSVC_INVALID_PARAMETER_HANDLER\n\n/* Override _get_osfhandle.  */\nextern intptr_t _gl_nothrow_get_osfhandle (int fd);\n#  define _get_osfhandle _gl_nothrow_get_osfhandle\n\n# endif\n\n#endif\n\n#endif /* _MSVC_NOTHROW_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/pathmax.h",
    "content": "/* Define PATH_MAX somehow.  Requires sys/types.h.\n   Copyright (C) 1992, 1999, 2001, 2003, 2005, 2009-2017 Free Software\n   Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _PATHMAX_H\n# define _PATHMAX_H\n\n/* POSIX:2008 defines PATH_MAX to be the maximum number of bytes in a filename,\n   including the terminating NUL byte.\n   <http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/limits.h.html>\n   PATH_MAX is not defined on systems which have no limit on filename length,\n   such as GNU/Hurd.\n\n   This file does *not* define PATH_MAX always.  Programs that use this file\n   can handle the GNU/Hurd case in several ways:\n     - Either with a package-wide handling, or with a per-file handling,\n     - Either through a\n         #ifdef PATH_MAX\n       or through a fallback like\n         #ifndef PATH_MAX\n         # define PATH_MAX 8192\n         #endif\n       or through a fallback like\n         #ifndef PATH_MAX\n         # define PATH_MAX pathconf (\"/\", _PC_PATH_MAX)\n         #endif\n */\n\n# include <unistd.h>\n\n# include <limits.h>\n\n# ifndef _POSIX_PATH_MAX\n#  define _POSIX_PATH_MAX 256\n# endif\n\n/* Don't include sys/param.h if it already has been.  */\n# if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN\n#  include <sys/param.h>\n# endif\n\n# if !defined PATH_MAX && defined MAXPATHLEN\n#  define PATH_MAX MAXPATHLEN\n# endif\n\n# ifdef __hpux\n/* On HP-UX, PATH_MAX designates the maximum number of bytes in a filename,\n   *not* including the terminating NUL byte, and is set to 1023.\n   Additionally, when _XOPEN_SOURCE is defined to 500 or more, PATH_MAX is\n   not defined at all any more.  */\n#  undef PATH_MAX\n#  define PATH_MAX 1024\n# endif\n\n# if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n/* The page \"Naming Files, Paths, and Namespaces\" on msdn.microsoft.com,\n   section \"Maximum Path Length Limitation\",\n   <http://msdn.microsoft.com/en-us/library/aa365247(v=vs.85).aspx#maxpath>\n   explains that the maximum size of a filename, including the terminating\n   NUL byte, is 260 = 3 + 256 + 1.\n   This is the same value as\n     - FILENAME_MAX in <stdio.h>,\n     - _MAX_PATH in <stdlib.h>,\n     - MAX_PATH in <windef.h>.\n   Undefine the original value, because mingw's <limits.h> gets it wrong.  */\n#  undef PATH_MAX\n#  define PATH_MAX 260\n# endif\n\n#endif /* _PATHMAX_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/progname.c",
    "content": "/* Program name management.\n   Copyright (C) 2001-2003, 2005-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2001.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n\n#include <config.h>\n\n/* Specification.  */\n#undef ENABLE_RELOCATABLE /* avoid defining set_program_name as a macro */\n#include \"progname.h\"\n\n#include <errno.h> /* get program_invocation_name declaration */\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n\n\n/* String containing name the program is called with.\n   To be initialized by main().  */\nconst char *program_name = NULL;\n\n/* Set program_name, based on argv[0].\n   argv0 must be a string allocated with indefinite extent, and must not be\n   modified after this call.  */\nvoid\nset_program_name (const char *argv0)\n{\n  /* libtool creates a temporary executable whose name is sometimes prefixed\n     with \"lt-\" (depends on the platform).  It also makes argv[0] absolute.\n     But the name of the temporary executable is a detail that should not be\n     visible to the end user and to the test suite.\n     Remove this \"<dirname>/.libs/\" or \"<dirname>/.libs/lt-\" prefix here.  */\n  const char *slash;\n  const char *base;\n\n  /* Sanity check.  POSIX requires the invoking process to pass a non-NULL\n     argv[0].  */\n  if (argv0 == NULL)\n    {\n      /* It's a bug in the invoking program.  Help diagnosing it.  */\n      fputs (\"A NULL argv[0] was passed through an exec system call.\\n\",\n             stderr);\n      abort ();\n    }\n\n  slash = strrchr (argv0, '/');\n  base = (slash != NULL ? slash + 1 : argv0);\n  if (base - argv0 >= 7 && strncmp (base - 7, \"/.libs/\", 7) == 0)\n    {\n      argv0 = base;\n      if (strncmp (base, \"lt-\", 3) == 0)\n        {\n          argv0 = base + 3;\n          /* On glibc systems, remove the \"lt-\" prefix from the variable\n             program_invocation_short_name.  */\n#if HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME\n          program_invocation_short_name = (char *) argv0;\n#endif\n        }\n    }\n\n  /* But don't strip off a leading <dirname>/ in general, because when the user\n     runs\n         /some/hidden/place/bin/cp foo foo\n     he should get the error message\n         /some/hidden/place/bin/cp: `foo' and `foo' are the same file\n     not\n         cp: `foo' and `foo' are the same file\n   */\n\n  program_name = argv0;\n\n  /* On glibc systems, the error() function comes from libc and uses the\n     variable program_invocation_name, not program_name.  So set this variable\n     as well.  */\n#if HAVE_DECL_PROGRAM_INVOCATION_NAME\n  program_invocation_name = (char *) argv0;\n#endif\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/progname.h",
    "content": "/* Program name management.\n   Copyright (C) 2001-2004, 2006, 2009-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2001.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _PROGNAME_H\n#define _PROGNAME_H\n\n/* Programs using this file should do the following in main():\n     set_program_name (argv[0]);\n */\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* String containing name the program is called with.  */\nextern DLL_VARIABLE const char *program_name;\n\n/* Set program_name, based on argv[0].\n   argv0 must be a string allocated with indefinite extent, and must not be\n   modified after this call.  */\nextern void set_program_name (const char *argv0);\n\n#if ENABLE_RELOCATABLE\n\n/* Set program_name, based on argv[0], and original installation prefix and\n   directory, for relocatability.  */\nextern void set_program_name_and_installdir (const char *argv0,\n                                             const char *orig_installprefix,\n                                             const char *orig_installdir);\n#undef set_program_name\n#define set_program_name(ARG0) \\\n  set_program_name_and_installdir (ARG0, INSTALLPREFIX, INSTALLDIR)\n\n/* Return the full pathname of the current executable, based on the earlier\n   call to set_program_name_and_installdir.  Return NULL if unknown.  */\nextern char *get_full_program_name (void);\n\n#endif\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _PROGNAME_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/progreloc.c",
    "content": "/* Provide relocatable programs.\n   Copyright (C) 2003-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2003.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n\n#define _GL_USE_STDLIB_ALLOC 1\n#include <config.h>\n\n/* Specification.  */\n#include \"progname.h\"\n\n#include <stdbool.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <fcntl.h>\n#include <unistd.h>\n#include <sys/stat.h>\n\n/* Get declaration of _NSGetExecutablePath on Mac OS X 10.2 or newer.  */\n#if HAVE_MACH_O_DYLD_H\n# include <mach-o/dyld.h>\n#endif\n\n#if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__\n# define WINDOWS_NATIVE\n#endif\n\n#ifdef WINDOWS_NATIVE\n# define WIN32_LEAN_AND_MEAN\n# include <windows.h>\n#endif\n\n#ifdef __EMX__\n# define INCL_DOS\n# include <os2.h>\n#endif\n\n#include \"relocatable.h\"\n\n#ifdef NO_XMALLOC\n# include \"areadlink.h\"\n# define xreadlink areadlink\n#else\n# include \"xreadlink.h\"\n#endif\n\n#ifdef NO_XMALLOC\n# define xmalloc malloc\n# define xstrdup strdup\n#else\n# include \"xalloc.h\"\n#endif\n\n#ifndef O_EXEC\n# define O_EXEC O_RDONLY /* This is often close enough in older systems.  */\n#endif\n\n/* Declare canonicalize_file_name.\n   The <stdlib.h> included above may be the system's one, not the gnulib\n   one.  */\nextern char * canonicalize_file_name (const char *name);\n\n/* Pathname support.\n   ISSLASH(C)           tests whether C is a directory separator character.\n   IS_PATH_WITH_DIR(P)  tests whether P contains a directory specification.\n */\n#if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || defined __EMX__ || defined __DJGPP__\n  /* Native Windows, OS/2, DOS */\n# define ISSLASH(C) ((C) == '/' || (C) == '\\\\')\n# define HAS_DEVICE(P) \\\n    ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \\\n     && (P)[1] == ':')\n# define IS_PATH_WITH_DIR(P) \\\n    (strchr (P, '/') != NULL || strchr (P, '\\\\') != NULL || HAS_DEVICE (P))\n# define FILE_SYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0)\n#else\n  /* Unix */\n# define ISSLASH(C) ((C) == '/')\n# define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL)\n# define FILE_SYSTEM_PREFIX_LEN(P) 0\n#endif\n\n/* Use the system functions, not the gnulib overrides in this file.  */\n#undef sprintf\n\n#undef set_program_name\n\n\n#if ENABLE_RELOCATABLE\n\n#if defined __linux__ || defined __CYGWIN__\n/* File descriptor of the executable.\n   (Only used to verify that we find the correct executable.)  */\nstatic int executable_fd = -1;\n#endif\n\n/* Tests whether a given pathname may belong to the executable.  */\nstatic bool\nmaybe_executable (const char *filename)\n{\n  /* The native Windows API lacks the access() function.  */\n#if !defined WINDOWS_NATIVE\n  if (access (filename, X_OK) < 0)\n    return false;\n#endif\n\n#if defined __linux__ || defined __CYGWIN__\n  if (executable_fd >= 0)\n    {\n      /* If we already have an executable_fd, check that filename points to\n         the same inode.  */\n      struct stat statexe;\n      struct stat statfile;\n\n      if (fstat (executable_fd, &statexe) >= 0)\n        {\n          if (stat (filename, &statfile) < 0)\n            return false;\n          if (!(statfile.st_dev\n                && statfile.st_dev == statexe.st_dev\n                && statfile.st_ino == statexe.st_ino))\n            return false;\n        }\n    }\n#endif\n\n  return true;\n}\n\n/* Determine the full pathname of the current executable, freshly allocated.\n   Return NULL if unknown.\n   Guaranteed to work on Linux and native Windows.  Likely to work on the\n   other Unixes (maybe except BeOS), under most conditions.  */\nstatic char *\nfind_executable (const char *argv0)\n{\n#if defined WINDOWS_NATIVE\n  /* Native Windows only.\n     On Cygwin, it is better to use the Cygwin provided /proc interface, than\n     to use native Windows API and cygwin_conv_to_posix_path, because it\n     supports longer file names\n     (see <http://cygwin.com/ml/cygwin/2011-01/msg00410.html>).  */\n  char location[MAX_PATH];\n  int length = GetModuleFileName (NULL, location, sizeof (location));\n  if (length < 0)\n    return NULL;\n  if (!IS_PATH_WITH_DIR (location))\n    /* Shouldn't happen.  */\n    return NULL;\n  return xstrdup (location);\n#elif defined __EMX__\n  PPIB ppib;\n  char location[CCHMAXPATH];\n\n  /* See http://cyberkinetica.homeunix.net/os2tk45/cp1/619_L2H_DosGetInfoBlocksSynt.html\n     for specification of DosGetInfoBlocks().  */\n  if (DosGetInfoBlocks (NULL, &ppib))\n    return NULL;\n\n  /* See http://cyberkinetica.homeunix.net/os2tk45/cp1/1247_L2H_DosQueryModuleNameSy.html\n     for specification of DosQueryModuleName().  */\n  if (DosQueryModuleName (ppib->pib_hmte, sizeof (location), location))\n    return NULL;\n\n  _fnslashify (location);\n\n  return xstrdup (location);\n#else /* Unix */\n# ifdef __linux__\n  /* The executable is accessible as /proc/<pid>/exe.  In newer Linux\n     versions, also as /proc/self/exe.  Linux >= 2.1 provides a symlink\n     to the true pathname; older Linux versions give only device and ino,\n     enclosed in brackets, which we cannot use here.  */\n  {\n    char *link;\n\n    link = xreadlink (\"/proc/self/exe\");\n    if (link != NULL && link[0] != '[')\n      return link;\n    if (executable_fd < 0)\n      executable_fd = open (\"/proc/self/exe\", O_EXEC, 0);\n\n    {\n      char buf[6+10+5];\n      sprintf (buf, \"/proc/%d/exe\", getpid ());\n      link = xreadlink (buf);\n      if (link != NULL && link[0] != '[')\n        return link;\n      if (executable_fd < 0)\n        executable_fd = open (buf, O_EXEC, 0);\n    }\n  }\n# endif\n# ifdef __CYGWIN__\n  /* The executable is accessible as /proc/<pid>/exe, at least in\n     Cygwin >= 1.5.  */\n  {\n    char *link;\n\n    link = xreadlink (\"/proc/self/exe\");\n    if (link != NULL)\n      return link;\n    if (executable_fd < 0)\n      executable_fd = open (\"/proc/self/exe\", O_EXEC, 0);\n  }\n# endif\n# if HAVE_MACH_O_DYLD_H && HAVE__NSGETEXECUTABLEPATH\n  /* On Mac OS X 10.2 or newer, the function\n       int _NSGetExecutablePath (char *buf, uint32_t *bufsize);\n     can be used to retrieve the executable's full path.  */\n  char location[4096];\n  unsigned int length = sizeof (location);\n  if (_NSGetExecutablePath (location, &length) == 0\n      && location[0] == '/')\n    return canonicalize_file_name (location);\n# endif\n  /* Guess the executable's full path.  We assume the executable has been\n     called via execlp() or execvp() with properly set up argv[0].  The\n     login(1) convention to add a '-' prefix to argv[0] is not supported.  */\n  {\n    bool has_slash = false;\n    {\n      const char *p;\n      for (p = argv0; *p; p++)\n        if (*p == '/')\n          {\n            has_slash = true;\n            break;\n          }\n    }\n    if (!has_slash)\n      {\n        /* exec searches paths without slashes in the directory list given\n           by $PATH.  */\n        const char *path = getenv (\"PATH\");\n\n        if (path != NULL)\n          {\n            const char *p;\n            const char *p_next;\n\n            for (p = path; *p; p = p_next)\n              {\n                const char *q;\n                size_t p_len;\n                char *concat_name;\n\n                for (q = p; *q; q++)\n                  if (*q == ':')\n                    break;\n                p_len = q - p;\n                p_next = (*q == '\\0' ? q : q + 1);\n\n                /* We have a path item at p, of length p_len.\n                   Now concatenate the path item and argv0.  */\n                concat_name = (char *) xmalloc (p_len + strlen (argv0) + 2);\n# ifdef NO_XMALLOC\n                if (concat_name == NULL)\n                  return NULL;\n# endif\n                if (p_len == 0)\n                  /* An empty PATH element designates the current directory.  */\n                  strcpy (concat_name, argv0);\n                else\n                  {\n                    memcpy (concat_name, p, p_len);\n                    concat_name[p_len] = '/';\n                    strcpy (concat_name + p_len + 1, argv0);\n                  }\n                if (maybe_executable (concat_name))\n                  return canonicalize_file_name (concat_name);\n                free (concat_name);\n              }\n          }\n        /* Not found in the PATH, assume the current directory.  */\n      }\n    /* exec treats paths containing slashes as relative to the current\n       directory.  */\n    if (maybe_executable (argv0))\n      return canonicalize_file_name (argv0);\n  }\n  /* No way to find the executable.  */\n  return NULL;\n#endif\n}\n\n/* Full pathname of executable, or NULL.  */\nstatic char *executable_fullname;\n\nstatic void\nprepare_relocate (const char *orig_installprefix, const char *orig_installdir,\n                  const char *argv0)\n{\n  char *curr_prefix;\n\n  /* Determine the full pathname of the current executable.  */\n  executable_fullname = find_executable (argv0);\n\n  /* Determine the current installation prefix from it.  */\n  curr_prefix = compute_curr_prefix (orig_installprefix, orig_installdir,\n                                     executable_fullname);\n  if (curr_prefix != NULL)\n    {\n      /* Now pass this prefix to all copies of the relocate.c source file.  */\n      set_relocation_prefix (orig_installprefix, curr_prefix);\n\n      free (curr_prefix);\n    }\n}\n\n/* Set program_name, based on argv[0], and original installation prefix and\n   directory, for relocatability.  */\nvoid\nset_program_name_and_installdir (const char *argv0,\n                                 const char *orig_installprefix,\n                                 const char *orig_installdir)\n{\n  const char *argv0_stripped = argv0;\n\n  /* Relocatable programs are renamed to .bin by install-reloc.  Or, more\n     generally, their suffix is changed from $exeext to .bin$exeext.\n     Remove the \".bin\" here.  */\n  {\n    size_t argv0_len = strlen (argv0);\n    const size_t exeext_len = sizeof (EXEEXT) - sizeof (\"\");\n    if (argv0_len > 4 + exeext_len)\n      if (memcmp (argv0 + argv0_len - exeext_len - 4, \".bin\", 4) == 0)\n        {\n          if (sizeof (EXEEXT) > sizeof (\"\"))\n            {\n              /* Compare using an inlined copy of c_strncasecmp(), because\n                 the filenames may have undergone a case conversion since\n                 they were packaged.  In other words, EXEEXT may be \".exe\"\n                 on one system and \".EXE\" on another.  */\n              static const char exeext[] = EXEEXT;\n              const char *s1 = argv0 + argv0_len - exeext_len;\n              const char *s2 = exeext;\n              for (; *s1 != '\\0'; s1++, s2++)\n                {\n                  unsigned char c1 = *s1;\n                  unsigned char c2 = *s2;\n                  if ((c1 >= 'A' && c1 <= 'Z' ? c1 - 'A' + 'a' : c1)\n                      != (c2 >= 'A' && c2 <= 'Z' ? c2 - 'A' + 'a' : c2))\n                    goto done_stripping;\n                }\n            }\n          /* Remove \".bin\" before EXEEXT or its equivalent.  */\n          {\n            char *shorter = (char *) xmalloc (argv0_len - 4 + 1);\n#ifdef NO_XMALLOC\n            if (shorter != NULL)\n#endif\n              {\n                memcpy (shorter, argv0, argv0_len - exeext_len - 4);\n                if (sizeof (EXEEXT) > sizeof (\"\"))\n                  memcpy (shorter + argv0_len - exeext_len - 4,\n                          argv0 + argv0_len - exeext_len - 4,\n                          exeext_len);\n                shorter[argv0_len - 4] = '\\0';\n                argv0_stripped = shorter;\n              }\n          }\n         done_stripping: ;\n      }\n  }\n\n  set_program_name (argv0_stripped);\n\n  prepare_relocate (orig_installprefix, orig_installdir, argv0);\n}\n\n/* Return the full pathname of the current executable, based on the earlier\n   call to set_program_name_and_installdir.  Return NULL if unknown.  */\nchar *\nget_full_program_name (void)\n{\n  return executable_fullname;\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/raise.c",
    "content": "/* Provide a non-threads replacement for the POSIX raise function.\n\n   Copyright (C) 2002-2003, 2005-2006, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* written by Jim Meyering and Bruno Haible */\n\n#include <config.h>\n\n/* Specification.  */\n#include <signal.h>\n\n#if HAVE_RAISE\n/* Native Windows platform.  */\n\n# include <errno.h>\n\n# include \"msvc-inval.h\"\n\n# undef raise\n\n# if HAVE_MSVC_INVALID_PARAMETER_HANDLER\nstatic int\nraise_nothrow (int sig)\n{\n  int result;\n\n  TRY_MSVC_INVAL\n    {\n      result = raise (sig);\n    }\n  CATCH_MSVC_INVAL\n    {\n      result = -1;\n      errno = EINVAL;\n    }\n  DONE_MSVC_INVAL;\n\n  return result;\n}\n# else\n#  define raise_nothrow raise\n# endif\n\n#else\n/* An old Unix platform.  */\n\n# include <unistd.h>\n\n# define rpl_raise raise\n\n#endif\n\nint\nrpl_raise (int sig)\n{\n#if GNULIB_defined_signal_blocking && GNULIB_defined_SIGPIPE\n  if (sig == SIGPIPE)\n    return _gl_raise_SIGPIPE ();\n#endif\n\n#if HAVE_RAISE\n  return raise_nothrow (sig);\n#else\n  return kill (getpid (), sig);\n#endif\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/read.c",
    "content": "/* POSIX compatible read() function.\n   Copyright (C) 2008-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2011.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include <unistd.h>\n\n#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n\n# include <errno.h>\n# include <io.h>\n\n# define WIN32_LEAN_AND_MEAN  /* avoid including junk */\n# include <windows.h>\n\n# include \"msvc-inval.h\"\n# include \"msvc-nothrow.h\"\n\n# undef read\n\n# if HAVE_MSVC_INVALID_PARAMETER_HANDLER\nstatic ssize_t\nread_nothrow (int fd, void *buf, size_t count)\n{\n  ssize_t result;\n\n  TRY_MSVC_INVAL\n    {\n      result = read (fd, buf, count);\n    }\n  CATCH_MSVC_INVAL\n    {\n      result = -1;\n      errno = EBADF;\n    }\n  DONE_MSVC_INVAL;\n\n  return result;\n}\n# else\n#  define read_nothrow read\n# endif\n\nssize_t\nrpl_read (int fd, void *buf, size_t count)\n{\n  ssize_t ret = read_nothrow (fd, buf, count);\n\n# if GNULIB_NONBLOCKING\n  if (ret < 0\n      && GetLastError () == ERROR_NO_DATA)\n    {\n      HANDLE h = (HANDLE) _get_osfhandle (fd);\n      if (GetFileType (h) == FILE_TYPE_PIPE)\n        {\n          /* h is a pipe or socket.  */\n          DWORD state;\n          if (GetNamedPipeHandleState (h, &state, NULL, NULL, NULL, NULL, 0)\n              && (state & PIPE_NOWAIT) != 0)\n            /* h is a pipe in non-blocking mode.\n               Change errno from EINVAL to EAGAIN.  */\n            errno = EAGAIN;\n        }\n    }\n# endif\n\n  return ret;\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/readlink.c",
    "content": "/* Stub for readlink().\n   Copyright (C) 2003-2007, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include <unistd.h>\n\n#include <errno.h>\n#include <string.h>\n#include <sys/stat.h>\n\n#if !HAVE_READLINK\n\n/* readlink() substitute for systems that don't have a readlink() function,\n   such as DJGPP 2.03 and mingw32.  */\n\nssize_t\nreadlink (const char *name, char *buf _GL_UNUSED,\n          size_t bufsize _GL_UNUSED)\n{\n  struct stat statbuf;\n\n  /* In general we should use lstat() here, not stat().  But on platforms\n     without symbolic links, lstat() - if it exists - would be equivalent to\n     stat(), therefore we can use stat().  This saves us a configure check.  */\n  if (stat (name, &statbuf) >= 0)\n    errno = EINVAL;\n  return -1;\n}\n\n#else /* HAVE_READLINK */\n\n# undef readlink\n\n/* readlink() wrapper that uses correct types, for systems like cygwin\n   1.5.x where readlink returns int, and which rejects trailing slash,\n   for Solaris 9.  */\n\nssize_t\nrpl_readlink (const char *name, char *buf, size_t bufsize)\n{\n# if READLINK_TRAILING_SLASH_BUG\n  size_t len = strlen (name);\n  if (len && name[len - 1] == '/')\n    {\n      /* Even if name without the slash is a symlink to a directory,\n         both lstat() and stat() must resolve the trailing slash to\n         the directory rather than the symlink.  We can therefore\n         safely use stat() to distinguish between EINVAL and\n         ENOTDIR/ENOENT, avoiding extra overhead of rpl_lstat().  */\n      struct stat st;\n      if (stat (name, &st) == 0)\n        errno = EINVAL;\n      return -1;\n    }\n# endif /* READLINK_TRAILING_SLASH_BUG */\n  return readlink (name, buf, bufsize);\n}\n\n#endif /* HAVE_READLINK */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/relocatable.c",
    "content": "/* Provide relocatable packages.\n   Copyright (C) 2003-2006, 2008-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2003.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n\n/* Tell glibc's <stdio.h> to provide a prototype for getline().\n   This must come before <config.h> because <config.h> may include\n   <features.h>, and once <features.h> has been included, it's too late.  */\n#ifndef _GNU_SOURCE\n# define _GNU_SOURCE 1\n#endif\n\n#define _GL_USE_STDLIB_ALLOC 1\n#include <config.h>\n\n/* Specification.  */\n#include \"relocatable.h\"\n\n#if ENABLE_RELOCATABLE\n\n#include <stddef.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n\n#ifdef NO_XMALLOC\n# define xmalloc malloc\n#else\n# include \"xalloc.h\"\n#endif\n\n#if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__\n# define WIN32_LEAN_AND_MEAN\n# include <windows.h>\n#endif\n\n#ifdef __EMX__\n# define INCL_DOS\n# include <os2.h>\n\n# define strcmp  stricmp\n# define strncmp strnicmp\n#endif\n\n#if DEPENDS_ON_LIBCHARSET\n# include <libcharset.h>\n#endif\n#if DEPENDS_ON_LIBICONV && HAVE_ICONV\n# include <iconv.h>\n#endif\n#if DEPENDS_ON_LIBINTL && ENABLE_NLS\n# include <libintl.h>\n#endif\n\n/* Faked cheap 'bool'.  */\n#undef bool\n#undef false\n#undef true\n#define bool int\n#define false 0\n#define true 1\n\n/* Pathname support.\n   ISSLASH(C)           tests whether C is a directory separator character.\n   IS_PATH_WITH_DIR(P)  tests whether P contains a directory specification.\n */\n#if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || defined __EMX__ || defined __DJGPP__\n  /* Native Windows, OS/2, DOS */\n# define ISSLASH(C) ((C) == '/' || (C) == '\\\\')\n# define HAS_DEVICE(P) \\\n    ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \\\n     && (P)[1] == ':')\n# define IS_PATH_WITH_DIR(P) \\\n    (strchr (P, '/') != NULL || strchr (P, '\\\\') != NULL || HAS_DEVICE (P))\n# define FILE_SYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0)\n#else\n  /* Unix */\n# define ISSLASH(C) ((C) == '/')\n# define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL)\n# define FILE_SYSTEM_PREFIX_LEN(P) 0\n#endif\n\n/* Whether to enable the more costly support for relocatable libraries.\n   It allows libraries to be have been installed with a different original\n   prefix than the program.  But it is quite costly, especially on Cygwin\n   platforms, see below.  Therefore we enable it by default only on native\n   Windows platforms.  */\n#ifndef ENABLE_COSTLY_RELOCATABLE\n# if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__\n#  define ENABLE_COSTLY_RELOCATABLE 1\n# else\n#  define ENABLE_COSTLY_RELOCATABLE 0\n# endif\n#endif\n\n/* Original installation prefix.  */\nstatic char *orig_prefix;\nstatic size_t orig_prefix_len;\n/* Current installation prefix.  */\nstatic char *curr_prefix;\nstatic size_t curr_prefix_len;\n/* These prefixes do not end in a slash.  Anything that will be concatenated\n   to them must start with a slash.  */\n\n/* Sets the original and the current installation prefix of this module.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nstatic void\nset_this_relocation_prefix (const char *orig_prefix_arg,\n                            const char *curr_prefix_arg)\n{\n  if (orig_prefix_arg != NULL && curr_prefix_arg != NULL\n      /* Optimization: if orig_prefix and curr_prefix are equal, the\n         relocation is a nop.  */\n      && strcmp (orig_prefix_arg, curr_prefix_arg) != 0)\n    {\n      /* Duplicate the argument strings.  */\n      char *memory;\n\n      orig_prefix_len = strlen (orig_prefix_arg);\n      curr_prefix_len = strlen (curr_prefix_arg);\n      memory = (char *) xmalloc (orig_prefix_len + 1 + curr_prefix_len + 1);\n#ifdef NO_XMALLOC\n      if (memory != NULL)\n#endif\n        {\n          memcpy (memory, orig_prefix_arg, orig_prefix_len + 1);\n          orig_prefix = memory;\n          memory += orig_prefix_len + 1;\n          memcpy (memory, curr_prefix_arg, curr_prefix_len + 1);\n          curr_prefix = memory;\n          return;\n        }\n    }\n  orig_prefix = NULL;\n  curr_prefix = NULL;\n  /* Don't worry about wasted memory here - this function is usually only\n     called once.  */\n}\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nvoid\nset_relocation_prefix (const char *orig_prefix_arg, const char *curr_prefix_arg)\n{\n  set_this_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n\n  /* Now notify all dependent libraries.  */\n#if DEPENDS_ON_LIBCHARSET\n  libcharset_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n#endif\n#if DEPENDS_ON_LIBICONV && HAVE_ICONV && _LIBICONV_VERSION >= 0x0109\n  libiconv_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n#endif\n#if DEPENDS_ON_LIBINTL && ENABLE_NLS && defined libintl_set_relocation_prefix\n  libintl_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg);\n#endif\n}\n\n#if !defined IN_LIBRARY || (defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE)\n\n/* Convenience function:\n   Computes the current installation prefix, based on the original\n   installation prefix, the original installation directory of a particular\n   file, and the current pathname of this file.\n   Returns it, freshly allocated.  Returns NULL upon failure.  */\n#ifdef IN_LIBRARY\n#define compute_curr_prefix local_compute_curr_prefix\nstatic\n#endif\nchar *\ncompute_curr_prefix (const char *orig_installprefix,\n                     const char *orig_installdir,\n                     const char *curr_pathname)\n{\n  char *curr_installdir;\n  const char *rel_installdir;\n\n  if (curr_pathname == NULL)\n    return NULL;\n\n  /* Determine the relative installation directory, relative to the prefix.\n     This is simply the difference between orig_installprefix and\n     orig_installdir.  */\n  if (strncmp (orig_installprefix, orig_installdir, strlen (orig_installprefix))\n      != 0)\n    /* Shouldn't happen - nothing should be installed outside $(prefix).  */\n    return NULL;\n  rel_installdir = orig_installdir + strlen (orig_installprefix);\n\n  /* Determine the current installation directory.  */\n  {\n    const char *p_base = curr_pathname + FILE_SYSTEM_PREFIX_LEN (curr_pathname);\n    const char *p = curr_pathname + strlen (curr_pathname);\n    char *q;\n\n    while (p > p_base)\n      {\n        p--;\n        if (ISSLASH (*p))\n          break;\n      }\n\n    q = (char *) xmalloc (p - curr_pathname + 1);\n#ifdef NO_XMALLOC\n    if (q == NULL)\n      return NULL;\n#endif\n    memcpy (q, curr_pathname, p - curr_pathname);\n    q[p - curr_pathname] = '\\0';\n    curr_installdir = q;\n  }\n\n  /* Compute the current installation prefix by removing the trailing\n     rel_installdir from it.  */\n  {\n    const char *rp = rel_installdir + strlen (rel_installdir);\n    const char *cp = curr_installdir + strlen (curr_installdir);\n    const char *cp_base =\n      curr_installdir + FILE_SYSTEM_PREFIX_LEN (curr_installdir);\n\n    while (rp > rel_installdir && cp > cp_base)\n      {\n        bool same = false;\n        const char *rpi = rp;\n        const char *cpi = cp;\n\n        while (rpi > rel_installdir && cpi > cp_base)\n          {\n            rpi--;\n            cpi--;\n            if (ISSLASH (*rpi) || ISSLASH (*cpi))\n              {\n                if (ISSLASH (*rpi) && ISSLASH (*cpi))\n                  same = true;\n                break;\n              }\n            /* Do case-insensitive comparison if the file system is always or\n               often case-insensitive.  It's better to accept the comparison\n               if the difference is only in case, rather than to fail.  */\n#if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__\n            /* Native Windows, Cygwin, OS/2, DOS - case insignificant file system */\n            if ((*rpi >= 'a' && *rpi <= 'z' ? *rpi - 'a' + 'A' : *rpi)\n                != (*cpi >= 'a' && *cpi <= 'z' ? *cpi - 'a' + 'A' : *cpi))\n              break;\n#else\n            if (*rpi != *cpi)\n              break;\n#endif\n          }\n        if (!same)\n          break;\n        /* The last pathname component was the same.  opi and cpi now point\n           to the slash before it.  */\n        rp = rpi;\n        cp = cpi;\n      }\n\n    if (rp > rel_installdir)\n      {\n        /* Unexpected: The curr_installdir does not end with rel_installdir.  */\n        free (curr_installdir);\n        return NULL;\n      }\n\n    {\n      size_t curr_prefix_len = cp - curr_installdir;\n      char *curr_prefix;\n\n      curr_prefix = (char *) xmalloc (curr_prefix_len + 1);\n#ifdef NO_XMALLOC\n      if (curr_prefix == NULL)\n        {\n          free (curr_installdir);\n          return NULL;\n        }\n#endif\n      memcpy (curr_prefix, curr_installdir, curr_prefix_len);\n      curr_prefix[curr_prefix_len] = '\\0';\n\n      free (curr_installdir);\n\n      return curr_prefix;\n    }\n  }\n}\n\n#endif /* !IN_LIBRARY || PIC */\n\n#if defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE\n\n/* Full pathname of shared library, or NULL.  */\nstatic char *shared_library_fullname;\n\n#if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__\n/* Native Windows only.\n   On Cygwin, it is better to use the Cygwin provided /proc interface, than\n   to use native Windows API and cygwin_conv_to_posix_path, because it\n   supports longer file names\n   (see <http://cygwin.com/ml/cygwin/2011-01/msg00410.html>).  */\n\n/* Determine the full pathname of the shared library when it is loaded.  */\n\nBOOL WINAPI\nDllMain (HINSTANCE module_handle, DWORD event, LPVOID reserved)\n{\n  (void) reserved;\n\n  if (event == DLL_PROCESS_ATTACH)\n    {\n      /* The DLL is being loaded into an application's address range.  */\n      static char location[MAX_PATH];\n\n      if (!GetModuleFileName (module_handle, location, sizeof (location)))\n        /* Shouldn't happen.  */\n        return FALSE;\n\n      if (!IS_PATH_WITH_DIR (location))\n        /* Shouldn't happen.  */\n        return FALSE;\n\n      shared_library_fullname = strdup (location);\n    }\n\n  return TRUE;\n}\n\n#elif defined __EMX__\n\nextern int  _CRT_init (void);\nextern void _CRT_term (void);\nextern void __ctordtorInit (void);\nextern void __ctordtorTerm (void);\n\nunsigned long _System\n_DLL_InitTerm (unsigned long hModule, unsigned long ulFlag)\n{\n  static char location[CCHMAXPATH];\n\n  switch (ulFlag)\n    {\n      case 0:\n        if (_CRT_init () == -1)\n          return 0;\n\n        __ctordtorInit();\n\n        /* See http://cyberkinetica.homeunix.net/os2tk45/cp1/1247_L2H_DosQueryModuleNameSy.html\n           for specification of DosQueryModuleName(). */\n        if (DosQueryModuleName (hModule, sizeof (location), location))\n          return 0;\n\n        _fnslashify (location);\n        shared_library_fullname = strdup (location);\n        break;\n\n      case 1:\n        __ctordtorTerm();\n\n        _CRT_term ();\n        break;\n    }\n\n  return 1;\n}\n\n#else /* Unix */\n\nstatic void\nfind_shared_library_fullname ()\n{\n#if (defined __linux__ && (__GLIBC__ >= 2 || defined __UCLIBC__)) || defined __CYGWIN__\n  /* Linux has /proc/self/maps. glibc 2 and uClibc have the getline()\n     function.\n     Cygwin >= 1.5 has /proc/self/maps and the getline() function too.\n     But it is costly: ca. 0.3 ms on Linux, 3 ms on Cygwin 1.5, and 5 ms on\n     Cygwin 1.7.  */\n  FILE *fp;\n\n  /* Open the current process' maps file.  It describes one VMA per line.  */\n  fp = fopen (\"/proc/self/maps\", \"r\");\n  if (fp)\n    {\n      unsigned long address = (unsigned long) &find_shared_library_fullname;\n      for (;;)\n        {\n          unsigned long start, end;\n          int c;\n\n          if (fscanf (fp, \"%lx-%lx\", &start, &end) != 2)\n            break;\n          if (address >= start && address <= end - 1)\n            {\n              /* Found it.  Now see if this line contains a filename.  */\n              while (c = getc (fp), c != EOF && c != '\\n' && c != '/')\n                continue;\n              if (c == '/')\n                {\n                  size_t size;\n                  int len;\n\n                  ungetc (c, fp);\n                  shared_library_fullname = NULL; size = 0;\n                  len = getline (&shared_library_fullname, &size, fp);\n                  if (len >= 0)\n                    {\n                      /* Success: filled shared_library_fullname.  */\n                      if (len > 0 && shared_library_fullname[len - 1] == '\\n')\n                        shared_library_fullname[len - 1] = '\\0';\n                    }\n                }\n              break;\n            }\n          while (c = getc (fp), c != EOF && c != '\\n')\n            continue;\n        }\n      fclose (fp);\n    }\n#endif\n}\n\n#endif /* Native Windows / EMX / Unix */\n\n/* Return the full pathname of the current shared library.\n   Return NULL if unknown.\n   Guaranteed to work only on Linux, EMX, Cygwin, and native Windows.  */\nstatic char *\nget_shared_library_fullname ()\n{\n#if (!((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) \\\n     && !defined __EMX__)\n  static bool tried_find_shared_library_fullname;\n  if (!tried_find_shared_library_fullname)\n    {\n      find_shared_library_fullname ();\n      tried_find_shared_library_fullname = true;\n    }\n#endif\n  return shared_library_fullname;\n}\n\n#endif /* PIC */\n\n/* Returns the pathname, relocated according to the current installation\n   directory.\n   The returned string is either PATHNAME unmodified or a freshly allocated\n   string that you can free with free() after casting it to 'char *'.  */\nconst char *\nrelocate (const char *pathname)\n{\n#if defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE\n  static int initialized;\n\n  /* Initialization code for a shared library.  */\n  if (!initialized)\n    {\n      /* At this point, orig_prefix and curr_prefix likely have already been\n         set through the main program's set_program_name_and_installdir\n         function.  This is sufficient in the case that the library has\n         initially been installed in the same orig_prefix.  But we can do\n         better, to also cover the cases that 1. it has been installed\n         in a different prefix before being moved to orig_prefix and (later)\n         to curr_prefix, 2. unlike the program, it has not moved away from\n         orig_prefix.  */\n      const char *orig_installprefix = INSTALLPREFIX;\n      const char *orig_installdir = INSTALLDIR;\n      char *curr_prefix_better;\n\n      curr_prefix_better =\n        compute_curr_prefix (orig_installprefix, orig_installdir,\n                             get_shared_library_fullname ());\n\n      set_relocation_prefix (orig_installprefix,\n                             curr_prefix_better != NULL\n                             ? curr_prefix_better\n                             : curr_prefix);\n\n      if (curr_prefix_better != NULL)\n        free (curr_prefix_better);\n\n      initialized = 1;\n    }\n#endif\n\n  /* Note: It is not necessary to perform case insensitive comparison here,\n     even for DOS-like file systems, because the pathname argument was\n     typically created from the same Makefile variable as orig_prefix came\n     from.  */\n  if (orig_prefix != NULL && curr_prefix != NULL\n      && strncmp (pathname, orig_prefix, orig_prefix_len) == 0)\n    {\n      if (pathname[orig_prefix_len] == '\\0')\n        {\n          /* pathname equals orig_prefix.  */\n          char *result = (char *) xmalloc (strlen (curr_prefix) + 1);\n\n#ifdef NO_XMALLOC\n          if (result != NULL)\n#endif\n            {\n              strcpy (result, curr_prefix);\n              return result;\n            }\n        }\n      else if (ISSLASH (pathname[orig_prefix_len]))\n        {\n          /* pathname starts with orig_prefix.  */\n          const char *pathname_tail = &pathname[orig_prefix_len];\n          char *result =\n            (char *) xmalloc (curr_prefix_len + strlen (pathname_tail) + 1);\n\n#ifdef NO_XMALLOC\n          if (result != NULL)\n#endif\n            {\n              memcpy (result, curr_prefix, curr_prefix_len);\n              strcpy (result + curr_prefix_len, pathname_tail);\n              return result;\n            }\n        }\n    }\n\n#ifdef __EMX__\n# ifdef __KLIBC__\n#  undef strncmp\n\n  if (pathname && strncmp (pathname, \"/@unixroot\", 10) == 0\n      && (pathname[10] == '\\0' || pathname[10] == '/' || pathname[10] == '\\\\'))\n    {\n      /* kLIBC itself processes /@unixroot prefix */\n\n      return pathname;\n    }\n  else\n# endif\n  if (pathname && ISSLASH (pathname[0]))\n    {\n      const char *unixroot = getenv (\"UNIXROOT\");\n\n      if (unixroot && HAS_DEVICE (unixroot) && !unixroot[2])\n        {\n          char *result = (char *) xmalloc (2 + strlen (pathname) + 1);\n#ifdef NO_XMALLOC\n          if (result != NULL)\n#endif\n            {\n              strcpy (result, unixroot);\n              strcpy (result + 2, pathname);\n              return result;\n            }\n        }\n    }\n#endif\n\n  /* Nothing to relocate.  */\n  return pathname;\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/relocatable.h",
    "content": "/* Provide relocatable packages.\n   Copyright (C) 2003, 2005, 2008-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2003.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _RELOCATABLE_H\n#define _RELOCATABLE_H\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* This can be enabled through the configure --enable-relocatable option.  */\n#if ENABLE_RELOCATABLE\n\n/* When building a DLL, we must export some functions.  Note that because\n   this is a private .h file, we don't need to use __declspec(dllimport)\n   in any case.  */\n#if HAVE_VISIBILITY && BUILDING_DLL\n# define RELOCATABLE_DLL_EXPORTED __attribute__((__visibility__(\"default\")))\n#elif defined _MSC_VER && BUILDING_DLL\n# define RELOCATABLE_DLL_EXPORTED __declspec(dllexport)\n#else\n# define RELOCATABLE_DLL_EXPORTED\n#endif\n\n/* Sets the original and the current installation prefix of the package.\n   Relocation simply replaces a pathname starting with the original prefix\n   by the corresponding pathname with the current prefix instead.  Both\n   prefixes should be directory names without trailing slash (i.e. use \"\"\n   instead of \"/\").  */\nextern RELOCATABLE_DLL_EXPORTED void\n       set_relocation_prefix (const char *orig_prefix,\n                              const char *curr_prefix);\n\n/* Returns the pathname, relocated according to the current installation\n   directory.\n   The returned string is either PATHNAME unmodified or a freshly allocated\n   string that you can free with free() after casting it to 'char *'.  */\nextern const char * relocate (const char *pathname);\n\n/* Memory management: relocate() potentially allocates memory, because it has\n   to construct a fresh pathname.  If this is a problem because your program\n   calls relocate() frequently, think about caching the result.  Or free the\n   return value if it was different from the argument pathname.  */\n\n/* Convenience function:\n   Computes the current installation prefix, based on the original\n   installation prefix, the original installation directory of a particular\n   file, and the current pathname of this file.\n   Returns it, freshly allocated.  Returns NULL upon failure.  */\nextern char * compute_curr_prefix (const char *orig_installprefix,\n                                   const char *orig_installdir,\n                                   const char *curr_pathname);\n\n#else\n\n/* By default, we use the hardwired pathnames.  */\n#define relocate(pathname) (pathname)\n\n#endif\n\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* _RELOCATABLE_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/relocwrapper.c",
    "content": "/* Relocating wrapper program.\n   Copyright (C) 2003, 2005-2007, 2009-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2003.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Dependencies:\n   relocwrapper\n    -> progname\n    -> progreloc\n       -> areadlink\n          -> careadlinkat\n             -> allocator\n          -> readlink\n             -> stat\n                -> dosname\n                -> pathmax\n                -> verify\n       -> canonicalize-lgpl\n          -> malloca\n          -> lstat\n          -> readlink\n    -> relocatable\n    -> setenv\n       -> malloca\n    -> fprintf-posix [ignore, cut dependency tree here]\n    -> strerror [ignore, cut dependency tree here]\n    -> c-ctype\n\n   Macros that need to be set while compiling this file:\n     - ENABLE_RELOCATABLE 1\n     - INSTALLPREFIX the base installation directory\n     - INSTALLDIR the directory into which this program is installed\n     - LIBPATHVAR the platform dependent runtime library path variable\n     - LIBDIRS a comma-terminated list of strings representing the list of\n       directories that contain the libraries at installation time\n\n   We don't want to internationalize this wrapper because then it would\n   depend on libintl and therefore need relocation itself.  So use only\n   libc functions, no gettext(), no error(), no xmalloc(), no xsetenv().\n */\n\n#define _GL_USE_STDLIB_ALLOC 1\n#include <config.h>\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <unistd.h>\n#include <errno.h>\n\n#include \"progname.h\"\n#include \"relocatable.h\"\n#include \"c-ctype.h\"\n#include \"verify.h\"\n\n/* Use the system functions, not the gnulib overrides in this file.  */\n#undef fprintf\n#undef strerror\n\n/* Return a copy of the filename, with an extra \".bin\" at the end.\n   More generally, it replaces \"${EXEEXT}\" at the end with \".bin${EXEEXT}\".  */\nstatic char *\nadd_dotbin (const char *filename)\n{\n  size_t filename_len = strlen (filename);\n  char *result = (char *) malloc (filename_len + 4 + 1);\n\n  if (result != NULL)\n    {\n      if (sizeof (EXEEXT) > sizeof (\"\"))\n        {\n          /* EXEEXT handling.  */\n          const size_t exeext_len = sizeof (EXEEXT) - sizeof (\"\");\n          static const char exeext[] = EXEEXT;\n          if (filename_len > exeext_len)\n            {\n              /* Compare using an inlined copy of c_strncasecmp(), because\n                 the filenames may have undergone a case conversion since\n                 they were packaged.  In other words, EXEEXT may be \".exe\"\n                 on one system and \".EXE\" on another.  */\n              const char *s1 = filename + filename_len - exeext_len;\n              const char *s2 = exeext;\n              for (; *s1 != '\\0'; s1++, s2++)\n                {\n                  unsigned char c1 = *s1;\n                  unsigned char c2 = *s2;\n                  if (c_tolower (c1) != c_tolower (c2))\n                    goto simple_append;\n                }\n              /* Insert \".bin\" before EXEEXT or its equivalent.  */\n              memcpy (result, filename, filename_len - exeext_len);\n              memcpy (result + filename_len - exeext_len, \".bin\", 4);\n              memcpy (result + filename_len - exeext_len + 4,\n                      filename + filename_len - exeext_len,\n                      exeext_len + 1);\n              return result;\n            }\n        }\n     simple_append:\n      /* Simply append \".bin\".  */\n      memcpy (result, filename, filename_len);\n      memcpy (result + filename_len, \".bin\", 4 + 1);\n      return result;\n    }\n  else\n    {\n      fprintf (stderr, \"%s: %s\\n\", program_name, \"memory exhausted\");\n      exit (1);\n    }\n}\n\n/* List of directories that contain the libraries.  */\nstatic const char *libdirs[] = { LIBDIRS NULL };\n/* Verify that at least one directory is given.  */\nverify (sizeof (libdirs) / sizeof (libdirs[0]) > 1);\n\n/* Relocate the list of directories that contain the libraries.  */\nstatic void\nrelocate_libdirs ()\n{\n  size_t i;\n\n  for (i = 0; i < sizeof (libdirs) / sizeof (libdirs[0]) - 1; i++)\n    libdirs[i] = relocate (libdirs[i]);\n}\n\n/* Activate the list of directories in the LIBPATHVAR.  */\nstatic void\nactivate_libdirs ()\n{\n  const char *old_value;\n  size_t total;\n  size_t i;\n  char *value;\n  char *p;\n\n  old_value = getenv (LIBPATHVAR);\n  if (old_value == NULL)\n    old_value = \"\";\n\n  total = 0;\n  for (i = 0; i < sizeof (libdirs) / sizeof (libdirs[0]) - 1; i++)\n    total += strlen (libdirs[i]) + 1;\n  total += strlen (old_value) + 1;\n\n  value = (char *) malloc (total);\n  if (value == NULL)\n    {\n      fprintf (stderr, \"%s: %s\\n\", program_name, \"memory exhausted\");\n      exit (1);\n    }\n  p = value;\n  for (i = 0; i < sizeof (libdirs) / sizeof (libdirs[0]) - 1; i++)\n    {\n      size_t len = strlen (libdirs[i]);\n      memcpy (p, libdirs[i], len);\n      p += len;\n      *p++ = ':';\n    }\n  if (old_value[0] != '\\0')\n    strcpy (p, old_value);\n  else\n    p[-1] = '\\0';\n\n  if (setenv (LIBPATHVAR, value, 1) < 0)\n    {\n      fprintf (stderr, \"%s: %s\\n\", program_name, \"memory exhausted\");\n      exit (1);\n    }\n}\n\nint\nmain (int argc, char *argv[])\n{\n  char *full_program_name;\n\n  /* Set the program name and perform preparations for\n     get_full_program_name() and relocate().  */\n  set_program_name_and_installdir (argv[0], INSTALLPREFIX, INSTALLDIR);\n\n  /* Get the full program path.  (Important if accessed through a symlink.)  */\n  full_program_name = get_full_program_name ();\n  if (full_program_name == NULL)\n    full_program_name = argv[0];\n\n  /* Invoke the real program, with suffix \".bin\".  */\n  argv[0] = add_dotbin (full_program_name);\n  relocate_libdirs ();\n  activate_libdirs ();\n  execv (argv[0], argv);\n  fprintf (stderr, \"%s: could not execute %s: %s\\n\",\n           program_name, argv[0], strerror (errno));\n  exit (127);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/safe-read.c",
    "content": "/* An interface to read and write that retries after interrupts.\n\n   Copyright (C) 1993-1994, 1998, 2002-2006, 2009-2017 Free Software\n   Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#ifdef SAFE_WRITE\n# include \"safe-write.h\"\n#else\n# include \"safe-read.h\"\n#endif\n\n/* Get ssize_t.  */\n#include <sys/types.h>\n#include <unistd.h>\n\n#include <errno.h>\n\n#ifdef EINTR\n# define IS_EINTR(x) ((x) == EINTR)\n#else\n# define IS_EINTR(x) 0\n#endif\n\n#include <limits.h>\n\n#ifdef SAFE_WRITE\n# define safe_rw safe_write\n# define rw write\n#else\n# define safe_rw safe_read\n# define rw read\n# undef const\n# define const /* empty */\n#endif\n\n/* Read(write) up to COUNT bytes at BUF from(to) descriptor FD, retrying if\n   interrupted.  Return the actual number of bytes read(written), zero for EOF,\n   or SAFE_READ_ERROR(SAFE_WRITE_ERROR) upon error.  */\nsize_t\nsafe_rw (int fd, void const *buf, size_t count)\n{\n  /* Work around a bug in Tru64 5.1.  Attempting to read more than\n     INT_MAX bytes fails with errno == EINVAL.  See\n     <http://lists.gnu.org/archive/html/bug-gnu-utils/2002-04/msg00010.html>.\n     When decreasing COUNT, keep it block-aligned.  */\n  enum { BUGGY_READ_MAXIMUM = INT_MAX & ~8191 };\n\n  for (;;)\n    {\n      ssize_t result = rw (fd, buf, count);\n\n      if (0 <= result)\n        return result;\n      else if (IS_EINTR (errno))\n        continue;\n      else if (errno == EINVAL && BUGGY_READ_MAXIMUM < count)\n        count = BUGGY_READ_MAXIMUM;\n      else\n        return result;\n    }\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/safe-read.h",
    "content": "/* An interface to read() that retries after interrupts.\n   Copyright (C) 2002, 2006, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Some system calls may be interrupted and fail with errno = EINTR in the\n   following situations:\n     - The process is stopped and restarted (signal SIGSTOP and SIGCONT, user\n       types Ctrl-Z) on some platforms: Mac OS X.\n     - The process receives a signal for which a signal handler was installed\n       with sigaction() with an sa_flags field that does not contain\n       SA_RESTART.\n     - The process receives a signal for which a signal handler was installed\n       with signal() and for which no call to siginterrupt(sig,0) was done,\n       on some platforms: AIX, HP-UX, IRIX, OSF/1, Solaris.\n\n   This module provides a wrapper around read() that handles EINTR.  */\n\n#include <stddef.h>\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n#define SAFE_READ_ERROR ((size_t) -1)\n\n/* Read up to COUNT bytes at BUF from descriptor FD, retrying if interrupted.\n   Return the actual number of bytes read, zero for EOF, or SAFE_READ_ERROR\n   upon error.  */\nextern size_t safe_read (int fd, void *buf, size_t count);\n\n\n#ifdef __cplusplus\n}\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/setenv.c",
    "content": "/* Copyright (C) 1992, 1995-2003, 2005-2017 Free Software Foundation, Inc.\n   This file is part of the GNU C Library.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#if !_LIBC\n/* Don't use __attribute__ __nonnull__ in this compilation unit.  Otherwise gcc\n   optimizes away the name == NULL test below.  */\n# define _GL_ARG_NONNULL(params)\n\n# define _GL_USE_STDLIB_ALLOC 1\n# include <config.h>\n#endif\n\n#include <alloca.h>\n\n/* Specification.  */\n#include <stdlib.h>\n\n#include <errno.h>\n#ifndef __set_errno\n# define __set_errno(ev) ((errno) = (ev))\n#endif\n\n#include <string.h>\n#if _LIBC || HAVE_UNISTD_H\n# include <unistd.h>\n#endif\n\n#if !_LIBC\n# include \"malloca.h\"\n#endif\n\n#if _LIBC || !HAVE_SETENV\n\n#if !_LIBC\n# define __environ      environ\n#endif\n\n#if _LIBC\n/* This lock protects against simultaneous modifications of 'environ'.  */\n# include <bits/libc-lock.h>\n__libc_lock_define_initialized (static, envlock)\n# define LOCK   __libc_lock_lock (envlock)\n# define UNLOCK __libc_lock_unlock (envlock)\n#else\n# define LOCK\n# define UNLOCK\n#endif\n\n/* In the GNU C library we must keep the namespace clean.  */\n#ifdef _LIBC\n# define setenv __setenv\n# define clearenv __clearenv\n# define tfind __tfind\n# define tsearch __tsearch\n#endif\n\n/* In the GNU C library implementation we try to be more clever and\n   allow arbitrarily many changes of the environment given that the used\n   values are from a small set.  Outside glibc this will eat up all\n   memory after a while.  */\n#if defined _LIBC || (defined HAVE_SEARCH_H && defined HAVE_TSEARCH \\\n                      && defined __GNUC__)\n# define USE_TSEARCH    1\n# include <search.h>\ntypedef int (*compar_fn_t) (const void *, const void *);\n\n/* This is a pointer to the root of the search tree with the known\n   values.  */\nstatic void *known_values;\n\n# define KNOWN_VALUE(Str) \\\n  ({                                                                          \\\n    void *value = tfind (Str, &known_values, (compar_fn_t) strcmp);           \\\n    value != NULL ? *(char **) value : NULL;                                  \\\n  })\n# define STORE_VALUE(Str) \\\n  tsearch (Str, &known_values, (compar_fn_t) strcmp)\n\n#else\n# undef USE_TSEARCH\n\n# define KNOWN_VALUE(Str) NULL\n# define STORE_VALUE(Str) do { } while (0)\n\n#endif\n\n\n/* If this variable is not a null pointer we allocated the current\n   environment.  */\nstatic char **last_environ;\n\n\n/* This function is used by 'setenv' and 'putenv'.  The difference between\n   the two functions is that for the former must create a new string which\n   is then placed in the environment, while the argument of 'putenv'\n   must be used directly.  This is all complicated by the fact that we try\n   to reuse values once generated for a 'setenv' call since we can never\n   free the strings.  */\nint\n__add_to_environ (const char *name, const char *value, const char *combined,\n                  int replace)\n{\n  char **ep;\n  size_t size;\n  const size_t namelen = strlen (name);\n  const size_t vallen = value != NULL ? strlen (value) + 1 : 0;\n\n  LOCK;\n\n  /* We have to get the pointer now that we have the lock and not earlier\n     since another thread might have created a new environment.  */\n  ep = __environ;\n\n  size = 0;\n  if (ep != NULL)\n    {\n      for (; *ep != NULL; ++ep)\n        if (!strncmp (*ep, name, namelen) && (*ep)[namelen] == '=')\n          break;\n        else\n          ++size;\n    }\n\n  if (ep == NULL || *ep == NULL)\n    {\n      char **new_environ;\n#ifdef USE_TSEARCH\n      char *new_value;\n#endif\n\n      /* We allocated this space; we can extend it.  */\n      new_environ =\n        (char **) (last_environ == NULL\n                   ? malloc ((size + 2) * sizeof (char *))\n                   : realloc (last_environ, (size + 2) * sizeof (char *)));\n      if (new_environ == NULL)\n        {\n          /* It's easier to set errno to ENOMEM than to rely on the\n             'malloc-posix' and 'realloc-posix' gnulib modules.  */\n          __set_errno (ENOMEM);\n          UNLOCK;\n          return -1;\n        }\n\n      /* If the whole entry is given add it.  */\n      if (combined != NULL)\n        /* We must not add the string to the search tree since it belongs\n           to the user.  */\n        new_environ[size] = (char *) combined;\n      else\n        {\n          /* See whether the value is already known.  */\n#ifdef USE_TSEARCH\n# ifdef _LIBC\n          new_value = (char *) alloca (namelen + 1 + vallen);\n          __mempcpy (__mempcpy (__mempcpy (new_value, name, namelen), \"=\", 1),\n                     value, vallen);\n# else\n          new_value = (char *) malloca (namelen + 1 + vallen);\n          if (new_value == NULL)\n            {\n              __set_errno (ENOMEM);\n              UNLOCK;\n              return -1;\n            }\n          memcpy (new_value, name, namelen);\n          new_value[namelen] = '=';\n          memcpy (&new_value[namelen + 1], value, vallen);\n# endif\n\n          new_environ[size] = KNOWN_VALUE (new_value);\n          if (new_environ[size] == NULL)\n#endif\n            {\n              new_environ[size] = (char *) malloc (namelen + 1 + vallen);\n              if (new_environ[size] == NULL)\n                {\n#if defined USE_TSEARCH && !defined _LIBC\n                  freea (new_value);\n#endif\n                  __set_errno (ENOMEM);\n                  UNLOCK;\n                  return -1;\n                }\n\n#ifdef USE_TSEARCH\n              memcpy (new_environ[size], new_value, namelen + 1 + vallen);\n#else\n              memcpy (new_environ[size], name, namelen);\n              new_environ[size][namelen] = '=';\n              memcpy (&new_environ[size][namelen + 1], value, vallen);\n#endif\n              /* And save the value now.  We cannot do this when we remove\n                 the string since then we cannot decide whether it is a\n                 user string or not.  */\n              STORE_VALUE (new_environ[size]);\n            }\n#if defined USE_TSEARCH && !defined _LIBC\n          freea (new_value);\n#endif\n        }\n\n      if (__environ != last_environ)\n        memcpy ((char *) new_environ, (char *) __environ,\n                size * sizeof (char *));\n\n      new_environ[size + 1] = NULL;\n\n      last_environ = __environ = new_environ;\n    }\n  else if (replace)\n    {\n      char *np;\n\n      /* Use the user string if given.  */\n      if (combined != NULL)\n        np = (char *) combined;\n      else\n        {\n#ifdef USE_TSEARCH\n          char *new_value;\n# ifdef _LIBC\n          new_value = alloca (namelen + 1 + vallen);\n          __mempcpy (__mempcpy (__mempcpy (new_value, name, namelen), \"=\", 1),\n                     value, vallen);\n# else\n          new_value = malloca (namelen + 1 + vallen);\n          if (new_value == NULL)\n            {\n              __set_errno (ENOMEM);\n              UNLOCK;\n              return -1;\n            }\n          memcpy (new_value, name, namelen);\n          new_value[namelen] = '=';\n          memcpy (&new_value[namelen + 1], value, vallen);\n# endif\n\n          np = KNOWN_VALUE (new_value);\n          if (np == NULL)\n#endif\n            {\n              np = (char *) malloc (namelen + 1 + vallen);\n              if (np == NULL)\n                {\n#if defined USE_TSEARCH && !defined _LIBC\n                  freea (new_value);\n#endif\n                  __set_errno (ENOMEM);\n                  UNLOCK;\n                  return -1;\n                }\n\n#ifdef USE_TSEARCH\n              memcpy (np, new_value, namelen + 1 + vallen);\n#else\n              memcpy (np, name, namelen);\n              np[namelen] = '=';\n              memcpy (&np[namelen + 1], value, vallen);\n#endif\n              /* And remember the value.  */\n              STORE_VALUE (np);\n            }\n#if defined USE_TSEARCH && !defined _LIBC\n          freea (new_value);\n#endif\n        }\n\n      *ep = np;\n    }\n\n  UNLOCK;\n\n  return 0;\n}\n\nint\nsetenv (const char *name, const char *value, int replace)\n{\n  if (name == NULL || *name == '\\0' || strchr (name, '=') != NULL)\n    {\n      __set_errno (EINVAL);\n      return -1;\n    }\n\n  return __add_to_environ (name, value, NULL, replace);\n}\n\n/* The 'clearenv' was planned to be added to POSIX.1 but probably\n   never made it.  Nevertheless the POSIX.9 standard (POSIX bindings\n   for Fortran 77) requires this function.  */\nint\nclearenv (void)\n{\n  LOCK;\n\n  if (__environ == last_environ && __environ != NULL)\n    {\n      /* We allocated this environment so we can free it.  */\n      free (__environ);\n      last_environ = NULL;\n    }\n\n  /* Clear the environment pointer removes the whole environment.  */\n  __environ = NULL;\n\n  UNLOCK;\n\n  return 0;\n}\n\n#ifdef _LIBC\nstatic void\nfree_mem (void)\n{\n  /* Remove all traces.  */\n  clearenv ();\n\n  /* Now remove the search tree.  */\n  __tdestroy (known_values, free);\n  known_values = NULL;\n}\ntext_set_element (__libc_subfreeres, free_mem);\n\n\n# undef setenv\n# undef clearenv\nweak_alias (__setenv, setenv)\nweak_alias (__clearenv, clearenv)\n#endif\n\n#endif /* _LIBC || !HAVE_SETENV */\n\n/* The rest of this file is called into use when replacing an existing\n   but buggy setenv.  Known bugs include failure to diagnose invalid\n   name, and consuming a leading '=' from value.  */\n#if HAVE_SETENV\n\n# undef setenv\n# if !HAVE_DECL_SETENV\nextern int setenv (const char *, const char *, int);\n# endif\n# define STREQ(a, b) (strcmp (a, b) == 0)\n\nint\nrpl_setenv (const char *name, const char *value, int replace)\n{\n  int result;\n  if (!name || !*name || strchr (name, '='))\n    {\n      errno = EINVAL;\n      return -1;\n    }\n  /* Call the real setenv even if replace is 0, in case implementation\n     has underlying data to update, such as when environ changes.  */\n  result = setenv (name, value, replace);\n  if (result == 0 && replace && *value == '=')\n    {\n      char *tmp = getenv (name);\n      if (!STREQ (tmp, value))\n        {\n          int saved_errno;\n          size_t len = strlen (value);\n          tmp = malloca (len + 2);\n          /* Since leading '=' is eaten, double it up.  */\n          *tmp = '=';\n          memcpy (tmp + 1, value, len + 1);\n          result = setenv (name, tmp, replace);\n          saved_errno = errno;\n          freea (tmp);\n          errno = saved_errno;\n        }\n    }\n  return result;\n}\n\n#endif /* HAVE_SETENV */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/signal.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* A GNU-like <signal.h>.\n\n   Copyright (C) 2006-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n#if defined __need_sig_atomic_t || defined __need_sigset_t || defined _GL_ALREADY_INCLUDING_SIGNAL_H || (defined _SIGNAL_H && !defined __SIZEOF_PTHREAD_MUTEX_T)\n/* Special invocation convention:\n   - Inside glibc header files.\n   - On glibc systems we have a sequence of nested includes\n     <signal.h> -> <ucontext.h> -> <signal.h>.\n     In this situation, the functions are not yet declared, therefore we cannot\n     provide the C++ aliases.\n   - On glibc systems with GCC 4.3 we have a sequence of nested includes\n     <csignal> -> </usr/include/signal.h> -> <sys/ucontext.h> -> <signal.h>.\n     In this situation, some of the functions are not yet declared, therefore\n     we cannot provide the C++ aliases.  */\n\n# include_next <signal.h>\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _GL_SIGNAL_H\n\n#define _GL_ALREADY_INCLUDING_SIGNAL_H\n\n/* Define pid_t, uid_t.\n   Also, mingw defines sigset_t not in <signal.h>, but in <sys/types.h>.\n   On Solaris 10, <signal.h> includes <sys/types.h>, which eventually includes\n   us; so include <sys/types.h> now, before the second inclusion guard.  */\n#include <sys/types.h>\n\n/* The include_next requires a split double-inclusion guard.  */\n#include_next <signal.h>\n\n#undef _GL_ALREADY_INCLUDING_SIGNAL_H\n\n#ifndef _GL_SIGNAL_H\n#define _GL_SIGNAL_H\n\n/* Mac OS X 10.3, FreeBSD 6.4, OpenBSD 3.8, OSF/1 4.0, Solaris 2.6, Android\n   declare pthread_sigmask in <pthread.h>, not in <signal.h>.\n   But avoid namespace pollution on glibc systems.*/\n#if (0 || defined GNULIB_POSIXCHECK) \\\n    && ((defined __APPLE__ && defined __MACH__) \\\n        || defined __FreeBSD__ || defined __OpenBSD__ || defined __osf__ \\\n        || defined __sun || defined __ANDROID__) \\\n    && ! defined __GLIBC__\n# include <pthread.h>\n#endif\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n#ifndef _GL_CXXDEFS_H\n#define _GL_CXXDEFS_H\n\n/* Begin/end the GNULIB_NAMESPACE namespace.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {\n# define _GL_END_NAMESPACE }\n#else\n# define _GL_BEGIN_NAMESPACE\n# define _GL_END_NAMESPACE\n#endif\n\n/* The three most frequent use cases of these macros are:\n\n   * For providing a substitute for a function that is missing on some\n     platforms, but is declared and works fine on the platforms on which\n     it exists:\n\n       #if @GNULIB_FOO@\n       # if !@HAVE_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       # endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on all platforms,\n     but is broken/insufficient and needs to be replaced on some platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on some platforms\n     but is broken/insufficient and needs to be replaced on some of them and\n     is additionally either missing or undeclared on some other platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       #  endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n*/\n\n/* _GL_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#if defined __cplusplus\n# define _GL_EXTERN_C extern \"C\"\n#else\n# define _GL_EXTERN_C extern\n#endif\n\n/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);\n   declares a replacement function, named rpl_func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \\\n  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)\n#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype rpl_func parameters_and_attributes\n\n/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);\n   declares the system function, named func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype func parameters_and_attributes\n\n/* _GL_CXXALIAS_RPL (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.\n   Example:\n     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n\n   Wrapping rpl_func in an object with an inline conversion operator\n   avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#define _GL_CXXALIAS_RPL(func,rettype,parameters) \\\n  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::rpl_func;                                  \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);\n   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);\n   except that the C function rpl_func may have a slightly different\n   declaration.  A cast is used to silence the \"invalid conversion\" error\n   that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                     \\\n    {                                                              \\\n      static const struct _gl_ ## func ## _wrapper                 \\\n      {                                                            \\\n        typedef rettype (*type) parameters;                        \\\n                                                                   \\\n        inline operator type () const                              \\\n        {                                                          \\\n          return reinterpret_cast<type>(::rpl_func);               \\\n        }                                                          \\\n      } func = {};                                                 \\\n    }                                                              \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to the system provided function func, if GNULIB_NAMESPACE\n   is defined.\n   Example:\n     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n\n   Wrapping func in an object with an inline conversion operator\n   avoids a reference to func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS(func,rettype,parameters)            \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::func;                                      \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function func may have a slightly different declaration.\n   A cast is used to silence the \"invalid conversion\" error that would\n   otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                          \\\n    {                                                   \\\n      static const struct _gl_ ## func ## _wrapper      \\\n      {                                                 \\\n        typedef rettype (*type) parameters;             \\\n                                                        \\\n        inline operator type () const                   \\\n        {                                               \\\n          return reinterpret_cast<type>(::func);        \\\n        }                                               \\\n      } func = {};                                      \\\n    }                                                   \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function is picked among a set of overloaded functions,\n   namely the one with rettype2 and parameters2.  Two consecutive casts\n   are used to silence the \"cannot find a match\" and \"invalid conversion\"\n   errors that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n  /* The outer cast must be a reinterpret_cast.\n     The inner cast: When the function is defined as a set of overloaded\n     functions, it works as a static_cast<>, choosing the designated variant.\n     When the function is defined as a single variant, it works as a\n     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    namespace GNULIB_NAMESPACE                                                \\\n    {                                                                         \\\n      static const struct _gl_ ## func ## _wrapper                            \\\n      {                                                                       \\\n        typedef rettype (*type) parameters;                                   \\\n                                                                              \\\n        inline operator type () const                                         \\\n        {                                                                     \\\n          return reinterpret_cast<type>((rettype2 (*) parameters2)(::func));  \\\n        }                                                                     \\\n      } func = {};                                                            \\\n    }                                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN (func);\n   causes a warning to be emitted when ::func is used but not when\n   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded\n   variants.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN(func) \\\n   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN_1(func,namespace) \\\n   _GL_CXXALIASWARN_2 (func, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n    _GL_WARN_ON_USE (func, \\\n                     \"The symbol ::\" #func \" refers to the system function. \" \\\n                     \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN(func) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);\n   causes a warning to be emitted when the given overloaded variant of ::func\n   is used but not when GNULIB_NAMESPACE::func is used.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \\\n                        GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \\\n   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \\\n                         \"The symbol ::\" #func \" refers to the system function. \" \\\n                         \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n#endif /* _GL_CXXDEFS_H */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools\n   that the values passed as arguments n, ..., m must be non-NULL pointers.\n   n = 1 stands for the first argument, n = 2 for the second argument etc.  */\n#ifndef _GL_ARG_NONNULL\n# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3\n#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))\n# else\n#  define _GL_ARG_NONNULL(params)\n# endif\n#endif\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n#ifndef _GL_WARN_ON_USE\n\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n/* A compiler attribute is available in gcc versions 4.3.0 and later.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function __attribute__ ((__warning__ (message)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE(function, message) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, \"string\")\n   is like _GL_WARN_ON_USE (function, \"string\"), except that the function is\n   declared with the given prototype, consisting of return type, parameters,\n   and attributes.\n   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does\n   not work in this case.  */\n#ifndef _GL_WARN_ON_USE_CXX\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes \\\n     __attribute__ ((__warning__ (msg)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#ifndef _GL_WARN_EXTERN_C\n# if defined __cplusplus\n#  define _GL_WARN_EXTERN_C extern \"C\"\n# else\n#  define _GL_WARN_EXTERN_C extern\n# endif\n#endif\n\n/* On AIX, sig_atomic_t already includes volatile.  C99 requires that\n   'volatile sig_atomic_t' ignore the extra modifier, but C89 did not.\n   Hence, redefine this to a non-volatile type as needed.  */\n#if ! 1\n# if !GNULIB_defined_sig_atomic_t\ntypedef int rpl_sig_atomic_t;\n#  undef sig_atomic_t\n#  define sig_atomic_t rpl_sig_atomic_t\n#  define GNULIB_defined_sig_atomic_t 1\n# endif\n#endif\n\n/* A set or mask of signals.  */\n#if !1\n# if !GNULIB_defined_sigset_t\ntypedef unsigned int sigset_t;\n#  define GNULIB_defined_sigset_t 1\n# endif\n#endif\n\n/* Define sighandler_t, the type of signal handlers.  A GNU extension.  */\n#if !0\n# ifdef __cplusplus\nextern \"C\" {\n# endif\n# if !GNULIB_defined_sighandler_t\ntypedef void (*sighandler_t) (int);\n#  define GNULIB_defined_sighandler_t 1\n# endif\n# ifdef __cplusplus\n}\n# endif\n#endif\n\n\n#if 1\n# ifndef SIGPIPE\n/* Define SIGPIPE to a value that does not overlap with other signals.  */\n#  define SIGPIPE 13\n#  define GNULIB_defined_SIGPIPE 1\n/* To actually use SIGPIPE, you also need the gnulib modules 'sigprocmask',\n   'write', 'stdio'.  */\n# endif\n#endif\n\n\n/* Maximum signal number + 1.  */\n#ifndef NSIG\n# if defined __TANDEM\n#  define NSIG 32\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef pthread_sigmask\n#   define pthread_sigmask rpl_pthread_sigmask\n#  endif\n_GL_FUNCDECL_RPL (pthread_sigmask, int,\n                  (int how, const sigset_t *new_mask, sigset_t *old_mask));\n_GL_CXXALIAS_RPL (pthread_sigmask, int,\n                  (int how, const sigset_t *new_mask, sigset_t *old_mask));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (pthread_sigmask, int,\n                  (int how, const sigset_t *new_mask, sigset_t *old_mask));\n#  endif\n_GL_CXXALIAS_SYS (pthread_sigmask, int,\n                  (int how, const sigset_t *new_mask, sigset_t *old_mask));\n# endif\n_GL_CXXALIASWARN (pthread_sigmask);\n#elif defined GNULIB_POSIXCHECK\n# undef pthread_sigmask\n# if HAVE_RAW_DECL_PTHREAD_SIGMASK\n_GL_WARN_ON_USE (pthread_sigmask, \"pthread_sigmask is not portable - \"\n                 \"use gnulib module pthread_sigmask for portability\");\n# endif\n#endif\n\n\n#if 1\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef raise\n#   define raise rpl_raise\n#  endif\n_GL_FUNCDECL_RPL (raise, int, (int sig));\n_GL_CXXALIAS_RPL (raise, int, (int sig));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (raise, int, (int sig));\n#  endif\n_GL_CXXALIAS_SYS (raise, int, (int sig));\n# endif\n_GL_CXXALIASWARN (raise);\n#elif defined GNULIB_POSIXCHECK\n# undef raise\n/* Assume raise is always declared.  */\n_GL_WARN_ON_USE (raise, \"raise can crash on native Windows - \"\n                 \"use gnulib module raise for portability\");\n#endif\n\n\n#if 1\n# if !1\n\n#  ifndef GNULIB_defined_signal_blocking\n#   define GNULIB_defined_signal_blocking 1\n#  endif\n\n/* Maximum signal number + 1.  */\n#  ifndef NSIG\n#   define NSIG 32\n#  endif\n\n/* This code supports only 32 signals.  */\n#  if !GNULIB_defined_verify_NSIG_constraint\ntypedef int verify_NSIG_constraint[NSIG <= 32 ? 1 : -1];\n#   define GNULIB_defined_verify_NSIG_constraint 1\n#  endif\n\n# endif\n\n/* When also using extern inline, suppress the use of static inline in\n   standard headers of problematic Apple configurations, as Libc at\n   least through Libc-825.26 (2013-04-09) mishandles it; see, e.g.,\n   <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>.\n   Perhaps Apple will fix this some day.  */\n#if (defined _GL_EXTERN_INLINE_IN_USE && defined __APPLE__ \\\n     && (defined __i386__ || defined __x86_64__))\n# undef sigaddset\n# undef sigdelset\n# undef sigemptyset\n# undef sigfillset\n# undef sigismember\n#endif\n\n/* Test whether a given signal is contained in a signal set.  */\n# if 1\n/* This function is defined as a macro on Mac OS X.  */\n#  if defined __cplusplus && defined GNULIB_NAMESPACE\n#   undef sigismember\n#  endif\n# else\n_GL_FUNCDECL_SYS (sigismember, int, (const sigset_t *set, int sig)\n                                    _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigismember, int, (const sigset_t *set, int sig));\n_GL_CXXALIASWARN (sigismember);\n\n/* Initialize a signal set to the empty set.  */\n# if 1\n/* This function is defined as a macro on Mac OS X.  */\n#  if defined __cplusplus && defined GNULIB_NAMESPACE\n#   undef sigemptyset\n#  endif\n# else\n_GL_FUNCDECL_SYS (sigemptyset, int, (sigset_t *set) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigemptyset, int, (sigset_t *set));\n_GL_CXXALIASWARN (sigemptyset);\n\n/* Add a signal to a signal set.  */\n# if 1\n/* This function is defined as a macro on Mac OS X.  */\n#  if defined __cplusplus && defined GNULIB_NAMESPACE\n#   undef sigaddset\n#  endif\n# else\n_GL_FUNCDECL_SYS (sigaddset, int, (sigset_t *set, int sig)\n                                  _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigaddset, int, (sigset_t *set, int sig));\n_GL_CXXALIASWARN (sigaddset);\n\n/* Remove a signal from a signal set.  */\n# if 1\n/* This function is defined as a macro on Mac OS X.  */\n#  if defined __cplusplus && defined GNULIB_NAMESPACE\n#   undef sigdelset\n#  endif\n# else\n_GL_FUNCDECL_SYS (sigdelset, int, (sigset_t *set, int sig)\n                                  _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigdelset, int, (sigset_t *set, int sig));\n_GL_CXXALIASWARN (sigdelset);\n\n/* Fill a signal set with all possible signals.  */\n# if 1\n/* This function is defined as a macro on Mac OS X.  */\n#  if defined __cplusplus && defined GNULIB_NAMESPACE\n#   undef sigfillset\n#  endif\n# else\n_GL_FUNCDECL_SYS (sigfillset, int, (sigset_t *set) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigfillset, int, (sigset_t *set));\n_GL_CXXALIASWARN (sigfillset);\n\n/* Return the set of those blocked signals that are pending.  */\n# if !1\n_GL_FUNCDECL_SYS (sigpending, int, (sigset_t *set) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigpending, int, (sigset_t *set));\n_GL_CXXALIASWARN (sigpending);\n\n/* If OLD_SET is not NULL, put the current set of blocked signals in *OLD_SET.\n   Then, if SET is not NULL, affect the current set of blocked signals by\n   combining it with *SET as indicated in OPERATION.\n   In this implementation, you are not allowed to change a signal handler\n   while the signal is blocked.  */\n# if !1\n#  define SIG_BLOCK   0  /* blocked_set = blocked_set | *set; */\n#  define SIG_SETMASK 1  /* blocked_set = *set; */\n#  define SIG_UNBLOCK 2  /* blocked_set = blocked_set & ~*set; */\n_GL_FUNCDECL_SYS (sigprocmask, int,\n                  (int operation, const sigset_t *set, sigset_t *old_set));\n# endif\n_GL_CXXALIAS_SYS (sigprocmask, int,\n                  (int operation, const sigset_t *set, sigset_t *old_set));\n_GL_CXXALIASWARN (sigprocmask);\n\n/* Install the handler FUNC for signal SIG, and return the previous\n   handler.  */\n# ifdef __cplusplus\nextern \"C\" {\n# endif\n# if !GNULIB_defined_function_taking_int_returning_void_t\ntypedef void (*_gl_function_taking_int_returning_void_t) (int);\n#  define GNULIB_defined_function_taking_int_returning_void_t 1\n# endif\n# ifdef __cplusplus\n}\n# endif\n# if !1\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define signal rpl_signal\n#  endif\n_GL_FUNCDECL_RPL (signal, _gl_function_taking_int_returning_void_t,\n                  (int sig, _gl_function_taking_int_returning_void_t func));\n_GL_CXXALIAS_RPL (signal, _gl_function_taking_int_returning_void_t,\n                  (int sig, _gl_function_taking_int_returning_void_t func));\n# else\n_GL_CXXALIAS_SYS (signal, _gl_function_taking_int_returning_void_t,\n                  (int sig, _gl_function_taking_int_returning_void_t func));\n# endif\n_GL_CXXALIASWARN (signal);\n\n# if !1 && GNULIB_defined_SIGPIPE\n/* Raise signal SIGPIPE.  */\n_GL_EXTERN_C int _gl_raise_SIGPIPE (void);\n# endif\n\n#elif defined GNULIB_POSIXCHECK\n# undef sigaddset\n# if HAVE_RAW_DECL_SIGADDSET\n_GL_WARN_ON_USE (sigaddset, \"sigaddset is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigdelset\n# if HAVE_RAW_DECL_SIGDELSET\n_GL_WARN_ON_USE (sigdelset, \"sigdelset is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigemptyset\n# if HAVE_RAW_DECL_SIGEMPTYSET\n_GL_WARN_ON_USE (sigemptyset, \"sigemptyset is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigfillset\n# if HAVE_RAW_DECL_SIGFILLSET\n_GL_WARN_ON_USE (sigfillset, \"sigfillset is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigismember\n# if HAVE_RAW_DECL_SIGISMEMBER\n_GL_WARN_ON_USE (sigismember, \"sigismember is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigpending\n# if HAVE_RAW_DECL_SIGPENDING\n_GL_WARN_ON_USE (sigpending, \"sigpending is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigprocmask\n# if HAVE_RAW_DECL_SIGPROCMASK\n_GL_WARN_ON_USE (sigprocmask, \"sigprocmask is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n#endif /* 1 */\n\n\n#if 0\n# if !1\n\n#  if !1\n\n#   if !GNULIB_defined_siginfo_types\n\n/* Present to allow compilation, but unsupported by gnulib.  */\nunion sigval\n{\n  int sival_int;\n  void *sival_ptr;\n};\n\n/* Present to allow compilation, but unsupported by gnulib.  */\nstruct siginfo_t\n{\n  int si_signo;\n  int si_code;\n  int si_errno;\n  pid_t si_pid;\n  uid_t si_uid;\n  void *si_addr;\n  int si_status;\n  long si_band;\n  union sigval si_value;\n};\ntypedef struct siginfo_t siginfo_t;\n\n#    define GNULIB_defined_siginfo_types 1\n#   endif\n\n#  endif /* !1 */\n\n/* We assume that platforms which lack the sigaction() function also lack\n   the 'struct sigaction' type, and vice versa.  */\n\n#  if !GNULIB_defined_struct_sigaction\n\nstruct sigaction\n{\n  union\n  {\n    void (*_sa_handler) (int);\n    /* Present to allow compilation, but unsupported by gnulib.  POSIX\n       says that implementations may, but not must, make sa_sigaction\n       overlap with sa_handler, but we know of no implementation where\n       they do not overlap.  */\n    void (*_sa_sigaction) (int, siginfo_t *, void *);\n  } _sa_func;\n  sigset_t sa_mask;\n  /* Not all POSIX flags are supported.  */\n  int sa_flags;\n};\n#   define sa_handler _sa_func._sa_handler\n#   define sa_sigaction _sa_func._sa_sigaction\n/* Unsupported flags are not present.  */\n#   define SA_RESETHAND 1\n#   define SA_NODEFER 2\n#   define SA_RESTART 4\n\n#   define GNULIB_defined_struct_sigaction 1\n#  endif\n\n_GL_FUNCDECL_SYS (sigaction, int, (int, const struct sigaction *restrict,\n                                   struct sigaction *restrict));\n\n# elif !1\n\n#  define sa_sigaction sa_handler\n\n# endif /* !1, !1 */\n\n_GL_CXXALIAS_SYS (sigaction, int, (int, const struct sigaction *restrict,\n                                   struct sigaction *restrict));\n_GL_CXXALIASWARN (sigaction);\n\n#elif defined GNULIB_POSIXCHECK\n# undef sigaction\n# if HAVE_RAW_DECL_SIGACTION\n_GL_WARN_ON_USE (sigaction, \"sigaction is unportable - \"\n                 \"use the gnulib module sigaction for portability\");\n# endif\n#endif\n\n/* Some systems don't have SA_NODEFER.  */\n#ifndef SA_NODEFER\n# define SA_NODEFER 0\n#endif\n\n\n#endif /* _GL_SIGNAL_H */\n#endif /* _GL_SIGNAL_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/signal.in.h",
    "content": "/* A GNU-like <signal.h>.\n\n   Copyright (C) 2006-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n#if defined __need_sig_atomic_t || defined __need_sigset_t || defined _GL_ALREADY_INCLUDING_SIGNAL_H || (defined _SIGNAL_H && !defined __SIZEOF_PTHREAD_MUTEX_T)\n/* Special invocation convention:\n   - Inside glibc header files.\n   - On glibc systems we have a sequence of nested includes\n     <signal.h> -> <ucontext.h> -> <signal.h>.\n     In this situation, the functions are not yet declared, therefore we cannot\n     provide the C++ aliases.\n   - On glibc systems with GCC 4.3 we have a sequence of nested includes\n     <csignal> -> </usr/include/signal.h> -> <sys/ucontext.h> -> <signal.h>.\n     In this situation, some of the functions are not yet declared, therefore\n     we cannot provide the C++ aliases.  */\n\n# @INCLUDE_NEXT@ @NEXT_SIGNAL_H@\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _@GUARD_PREFIX@_SIGNAL_H\n\n#define _GL_ALREADY_INCLUDING_SIGNAL_H\n\n/* Define pid_t, uid_t.\n   Also, mingw defines sigset_t not in <signal.h>, but in <sys/types.h>.\n   On Solaris 10, <signal.h> includes <sys/types.h>, which eventually includes\n   us; so include <sys/types.h> now, before the second inclusion guard.  */\n#include <sys/types.h>\n\n/* The include_next requires a split double-inclusion guard.  */\n#@INCLUDE_NEXT@ @NEXT_SIGNAL_H@\n\n#undef _GL_ALREADY_INCLUDING_SIGNAL_H\n\n#ifndef _@GUARD_PREFIX@_SIGNAL_H\n#define _@GUARD_PREFIX@_SIGNAL_H\n\n/* Mac OS X 10.3, FreeBSD 6.4, OpenBSD 3.8, OSF/1 4.0, Solaris 2.6, Android\n   declare pthread_sigmask in <pthread.h>, not in <signal.h>.\n   But avoid namespace pollution on glibc systems.*/\n#if (@GNULIB_PTHREAD_SIGMASK@ || defined GNULIB_POSIXCHECK) \\\n    && ((defined __APPLE__ && defined __MACH__) \\\n        || defined __FreeBSD__ || defined __OpenBSD__ || defined __osf__ \\\n        || defined __sun || defined __ANDROID__) \\\n    && ! defined __GLIBC__\n# include <pthread.h>\n#endif\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n\n/* On AIX, sig_atomic_t already includes volatile.  C99 requires that\n   'volatile sig_atomic_t' ignore the extra modifier, but C89 did not.\n   Hence, redefine this to a non-volatile type as needed.  */\n#if ! @HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@\n# if !GNULIB_defined_sig_atomic_t\ntypedef int rpl_sig_atomic_t;\n#  undef sig_atomic_t\n#  define sig_atomic_t rpl_sig_atomic_t\n#  define GNULIB_defined_sig_atomic_t 1\n# endif\n#endif\n\n/* A set or mask of signals.  */\n#if !@HAVE_SIGSET_T@\n# if !GNULIB_defined_sigset_t\ntypedef unsigned int sigset_t;\n#  define GNULIB_defined_sigset_t 1\n# endif\n#endif\n\n/* Define sighandler_t, the type of signal handlers.  A GNU extension.  */\n#if !@HAVE_SIGHANDLER_T@\n# ifdef __cplusplus\nextern \"C\" {\n# endif\n# if !GNULIB_defined_sighandler_t\ntypedef void (*sighandler_t) (int);\n#  define GNULIB_defined_sighandler_t 1\n# endif\n# ifdef __cplusplus\n}\n# endif\n#endif\n\n\n#if @GNULIB_SIGNAL_H_SIGPIPE@\n# ifndef SIGPIPE\n/* Define SIGPIPE to a value that does not overlap with other signals.  */\n#  define SIGPIPE 13\n#  define GNULIB_defined_SIGPIPE 1\n/* To actually use SIGPIPE, you also need the gnulib modules 'sigprocmask',\n   'write', 'stdio'.  */\n# endif\n#endif\n\n\n/* Maximum signal number + 1.  */\n#ifndef NSIG\n# if defined __TANDEM\n#  define NSIG 32\n# endif\n#endif\n\n\n#if @GNULIB_PTHREAD_SIGMASK@\n# if @REPLACE_PTHREAD_SIGMASK@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef pthread_sigmask\n#   define pthread_sigmask rpl_pthread_sigmask\n#  endif\n_GL_FUNCDECL_RPL (pthread_sigmask, int,\n                  (int how, const sigset_t *new_mask, sigset_t *old_mask));\n_GL_CXXALIAS_RPL (pthread_sigmask, int,\n                  (int how, const sigset_t *new_mask, sigset_t *old_mask));\n# else\n#  if !@HAVE_PTHREAD_SIGMASK@\n_GL_FUNCDECL_SYS (pthread_sigmask, int,\n                  (int how, const sigset_t *new_mask, sigset_t *old_mask));\n#  endif\n_GL_CXXALIAS_SYS (pthread_sigmask, int,\n                  (int how, const sigset_t *new_mask, sigset_t *old_mask));\n# endif\n_GL_CXXALIASWARN (pthread_sigmask);\n#elif defined GNULIB_POSIXCHECK\n# undef pthread_sigmask\n# if HAVE_RAW_DECL_PTHREAD_SIGMASK\n_GL_WARN_ON_USE (pthread_sigmask, \"pthread_sigmask is not portable - \"\n                 \"use gnulib module pthread_sigmask for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_RAISE@\n# if @REPLACE_RAISE@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef raise\n#   define raise rpl_raise\n#  endif\n_GL_FUNCDECL_RPL (raise, int, (int sig));\n_GL_CXXALIAS_RPL (raise, int, (int sig));\n# else\n#  if !@HAVE_RAISE@\n_GL_FUNCDECL_SYS (raise, int, (int sig));\n#  endif\n_GL_CXXALIAS_SYS (raise, int, (int sig));\n# endif\n_GL_CXXALIASWARN (raise);\n#elif defined GNULIB_POSIXCHECK\n# undef raise\n/* Assume raise is always declared.  */\n_GL_WARN_ON_USE (raise, \"raise can crash on native Windows - \"\n                 \"use gnulib module raise for portability\");\n#endif\n\n\n#if @GNULIB_SIGPROCMASK@\n# if !@HAVE_POSIX_SIGNALBLOCKING@\n\n#  ifndef GNULIB_defined_signal_blocking\n#   define GNULIB_defined_signal_blocking 1\n#  endif\n\n/* Maximum signal number + 1.  */\n#  ifndef NSIG\n#   define NSIG 32\n#  endif\n\n/* This code supports only 32 signals.  */\n#  if !GNULIB_defined_verify_NSIG_constraint\ntypedef int verify_NSIG_constraint[NSIG <= 32 ? 1 : -1];\n#   define GNULIB_defined_verify_NSIG_constraint 1\n#  endif\n\n# endif\n\n/* When also using extern inline, suppress the use of static inline in\n   standard headers of problematic Apple configurations, as Libc at\n   least through Libc-825.26 (2013-04-09) mishandles it; see, e.g.,\n   <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>.\n   Perhaps Apple will fix this some day.  */\n#if (defined _GL_EXTERN_INLINE_IN_USE && defined __APPLE__ \\\n     && (defined __i386__ || defined __x86_64__))\n# undef sigaddset\n# undef sigdelset\n# undef sigemptyset\n# undef sigfillset\n# undef sigismember\n#endif\n\n/* Test whether a given signal is contained in a signal set.  */\n# if @HAVE_POSIX_SIGNALBLOCKING@\n/* This function is defined as a macro on Mac OS X.  */\n#  if defined __cplusplus && defined GNULIB_NAMESPACE\n#   undef sigismember\n#  endif\n# else\n_GL_FUNCDECL_SYS (sigismember, int, (const sigset_t *set, int sig)\n                                    _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigismember, int, (const sigset_t *set, int sig));\n_GL_CXXALIASWARN (sigismember);\n\n/* Initialize a signal set to the empty set.  */\n# if @HAVE_POSIX_SIGNALBLOCKING@\n/* This function is defined as a macro on Mac OS X.  */\n#  if defined __cplusplus && defined GNULIB_NAMESPACE\n#   undef sigemptyset\n#  endif\n# else\n_GL_FUNCDECL_SYS (sigemptyset, int, (sigset_t *set) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigemptyset, int, (sigset_t *set));\n_GL_CXXALIASWARN (sigemptyset);\n\n/* Add a signal to a signal set.  */\n# if @HAVE_POSIX_SIGNALBLOCKING@\n/* This function is defined as a macro on Mac OS X.  */\n#  if defined __cplusplus && defined GNULIB_NAMESPACE\n#   undef sigaddset\n#  endif\n# else\n_GL_FUNCDECL_SYS (sigaddset, int, (sigset_t *set, int sig)\n                                  _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigaddset, int, (sigset_t *set, int sig));\n_GL_CXXALIASWARN (sigaddset);\n\n/* Remove a signal from a signal set.  */\n# if @HAVE_POSIX_SIGNALBLOCKING@\n/* This function is defined as a macro on Mac OS X.  */\n#  if defined __cplusplus && defined GNULIB_NAMESPACE\n#   undef sigdelset\n#  endif\n# else\n_GL_FUNCDECL_SYS (sigdelset, int, (sigset_t *set, int sig)\n                                  _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigdelset, int, (sigset_t *set, int sig));\n_GL_CXXALIASWARN (sigdelset);\n\n/* Fill a signal set with all possible signals.  */\n# if @HAVE_POSIX_SIGNALBLOCKING@\n/* This function is defined as a macro on Mac OS X.  */\n#  if defined __cplusplus && defined GNULIB_NAMESPACE\n#   undef sigfillset\n#  endif\n# else\n_GL_FUNCDECL_SYS (sigfillset, int, (sigset_t *set) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigfillset, int, (sigset_t *set));\n_GL_CXXALIASWARN (sigfillset);\n\n/* Return the set of those blocked signals that are pending.  */\n# if !@HAVE_POSIX_SIGNALBLOCKING@\n_GL_FUNCDECL_SYS (sigpending, int, (sigset_t *set) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (sigpending, int, (sigset_t *set));\n_GL_CXXALIASWARN (sigpending);\n\n/* If OLD_SET is not NULL, put the current set of blocked signals in *OLD_SET.\n   Then, if SET is not NULL, affect the current set of blocked signals by\n   combining it with *SET as indicated in OPERATION.\n   In this implementation, you are not allowed to change a signal handler\n   while the signal is blocked.  */\n# if !@HAVE_POSIX_SIGNALBLOCKING@\n#  define SIG_BLOCK   0  /* blocked_set = blocked_set | *set; */\n#  define SIG_SETMASK 1  /* blocked_set = *set; */\n#  define SIG_UNBLOCK 2  /* blocked_set = blocked_set & ~*set; */\n_GL_FUNCDECL_SYS (sigprocmask, int,\n                  (int operation, const sigset_t *set, sigset_t *old_set));\n# endif\n_GL_CXXALIAS_SYS (sigprocmask, int,\n                  (int operation, const sigset_t *set, sigset_t *old_set));\n_GL_CXXALIASWARN (sigprocmask);\n\n/* Install the handler FUNC for signal SIG, and return the previous\n   handler.  */\n# ifdef __cplusplus\nextern \"C\" {\n# endif\n# if !GNULIB_defined_function_taking_int_returning_void_t\ntypedef void (*_gl_function_taking_int_returning_void_t) (int);\n#  define GNULIB_defined_function_taking_int_returning_void_t 1\n# endif\n# ifdef __cplusplus\n}\n# endif\n# if !@HAVE_POSIX_SIGNALBLOCKING@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define signal rpl_signal\n#  endif\n_GL_FUNCDECL_RPL (signal, _gl_function_taking_int_returning_void_t,\n                  (int sig, _gl_function_taking_int_returning_void_t func));\n_GL_CXXALIAS_RPL (signal, _gl_function_taking_int_returning_void_t,\n                  (int sig, _gl_function_taking_int_returning_void_t func));\n# else\n_GL_CXXALIAS_SYS (signal, _gl_function_taking_int_returning_void_t,\n                  (int sig, _gl_function_taking_int_returning_void_t func));\n# endif\n_GL_CXXALIASWARN (signal);\n\n# if !@HAVE_POSIX_SIGNALBLOCKING@ && GNULIB_defined_SIGPIPE\n/* Raise signal SIGPIPE.  */\n_GL_EXTERN_C int _gl_raise_SIGPIPE (void);\n# endif\n\n#elif defined GNULIB_POSIXCHECK\n# undef sigaddset\n# if HAVE_RAW_DECL_SIGADDSET\n_GL_WARN_ON_USE (sigaddset, \"sigaddset is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigdelset\n# if HAVE_RAW_DECL_SIGDELSET\n_GL_WARN_ON_USE (sigdelset, \"sigdelset is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigemptyset\n# if HAVE_RAW_DECL_SIGEMPTYSET\n_GL_WARN_ON_USE (sigemptyset, \"sigemptyset is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigfillset\n# if HAVE_RAW_DECL_SIGFILLSET\n_GL_WARN_ON_USE (sigfillset, \"sigfillset is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigismember\n# if HAVE_RAW_DECL_SIGISMEMBER\n_GL_WARN_ON_USE (sigismember, \"sigismember is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigpending\n# if HAVE_RAW_DECL_SIGPENDING\n_GL_WARN_ON_USE (sigpending, \"sigpending is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n# undef sigprocmask\n# if HAVE_RAW_DECL_SIGPROCMASK\n_GL_WARN_ON_USE (sigprocmask, \"sigprocmask is unportable - \"\n                 \"use the gnulib module sigprocmask for portability\");\n# endif\n#endif /* @GNULIB_SIGPROCMASK@ */\n\n\n#if @GNULIB_SIGACTION@\n# if !@HAVE_SIGACTION@\n\n#  if !@HAVE_SIGINFO_T@\n\n#   if !GNULIB_defined_siginfo_types\n\n/* Present to allow compilation, but unsupported by gnulib.  */\nunion sigval\n{\n  int sival_int;\n  void *sival_ptr;\n};\n\n/* Present to allow compilation, but unsupported by gnulib.  */\nstruct siginfo_t\n{\n  int si_signo;\n  int si_code;\n  int si_errno;\n  pid_t si_pid;\n  uid_t si_uid;\n  void *si_addr;\n  int si_status;\n  long si_band;\n  union sigval si_value;\n};\ntypedef struct siginfo_t siginfo_t;\n\n#    define GNULIB_defined_siginfo_types 1\n#   endif\n\n#  endif /* !@HAVE_SIGINFO_T@ */\n\n/* We assume that platforms which lack the sigaction() function also lack\n   the 'struct sigaction' type, and vice versa.  */\n\n#  if !GNULIB_defined_struct_sigaction\n\nstruct sigaction\n{\n  union\n  {\n    void (*_sa_handler) (int);\n    /* Present to allow compilation, but unsupported by gnulib.  POSIX\n       says that implementations may, but not must, make sa_sigaction\n       overlap with sa_handler, but we know of no implementation where\n       they do not overlap.  */\n    void (*_sa_sigaction) (int, siginfo_t *, void *);\n  } _sa_func;\n  sigset_t sa_mask;\n  /* Not all POSIX flags are supported.  */\n  int sa_flags;\n};\n#   define sa_handler _sa_func._sa_handler\n#   define sa_sigaction _sa_func._sa_sigaction\n/* Unsupported flags are not present.  */\n#   define SA_RESETHAND 1\n#   define SA_NODEFER 2\n#   define SA_RESTART 4\n\n#   define GNULIB_defined_struct_sigaction 1\n#  endif\n\n_GL_FUNCDECL_SYS (sigaction, int, (int, const struct sigaction *restrict,\n                                   struct sigaction *restrict));\n\n# elif !@HAVE_STRUCT_SIGACTION_SA_SIGACTION@\n\n#  define sa_sigaction sa_handler\n\n# endif /* !@HAVE_SIGACTION@, !@HAVE_STRUCT_SIGACTION_SA_SIGACTION@ */\n\n_GL_CXXALIAS_SYS (sigaction, int, (int, const struct sigaction *restrict,\n                                   struct sigaction *restrict));\n_GL_CXXALIASWARN (sigaction);\n\n#elif defined GNULIB_POSIXCHECK\n# undef sigaction\n# if HAVE_RAW_DECL_SIGACTION\n_GL_WARN_ON_USE (sigaction, \"sigaction is unportable - \"\n                 \"use the gnulib module sigaction for portability\");\n# endif\n#endif\n\n/* Some systems don't have SA_NODEFER.  */\n#ifndef SA_NODEFER\n# define SA_NODEFER 0\n#endif\n\n\n#endif /* _@GUARD_PREFIX@_SIGNAL_H */\n#endif /* _@GUARD_PREFIX@_SIGNAL_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/sigprocmask.c",
    "content": "/* POSIX compatible signal blocking.\n   Copyright (C) 2006-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2006.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include <signal.h>\n\n#include <errno.h>\n#include <stdint.h>\n#include <stdlib.h>\n\n#if HAVE_MSVC_INVALID_PARAMETER_HANDLER\n# include \"msvc-inval.h\"\n#endif\n\n/* We assume that a platform without POSIX signal blocking functions\n   also does not have the POSIX sigaction() function, only the\n   signal() function.  We also assume signal() has SysV semantics,\n   where any handler is uninstalled prior to being invoked.  This is\n   true for native Windows platforms.  */\n\n/* We use raw signal(), but also provide a wrapper rpl_signal() so\n   that applications can query or change a blocked signal.  */\n#undef signal\n\n/* Provide invalid signal numbers as fallbacks if the uncatchable\n   signals are not defined.  */\n#ifndef SIGKILL\n# define SIGKILL (-1)\n#endif\n#ifndef SIGSTOP\n# define SIGSTOP (-1)\n#endif\n\n/* On native Windows, as of 2008, the signal SIGABRT_COMPAT is an alias\n   for the signal SIGABRT.  Only one signal handler is stored for both\n   SIGABRT and SIGABRT_COMPAT.  SIGABRT_COMPAT is not a signal of its own.  */\n#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n# undef SIGABRT_COMPAT\n# define SIGABRT_COMPAT 6\n#endif\n#ifdef SIGABRT_COMPAT\n# define SIGABRT_COMPAT_MASK (1U << SIGABRT_COMPAT)\n#else\n# define SIGABRT_COMPAT_MASK 0\n#endif\n\ntypedef void (*handler_t) (int);\n\n#if HAVE_MSVC_INVALID_PARAMETER_HANDLER\nstatic handler_t\nsignal_nothrow (int sig, handler_t handler)\n{\n  handler_t result;\n\n  TRY_MSVC_INVAL\n    {\n      result = signal (sig, handler);\n    }\n  CATCH_MSVC_INVAL\n    {\n      result = SIG_ERR;\n      errno = EINVAL;\n    }\n  DONE_MSVC_INVAL;\n\n  return result;\n}\n# define signal signal_nothrow\n#endif\n\n/* Handling of gnulib defined signals.  */\n\n#if GNULIB_defined_SIGPIPE\nstatic handler_t SIGPIPE_handler = SIG_DFL;\n#endif\n\n#if GNULIB_defined_SIGPIPE\nstatic handler_t\next_signal (int sig, handler_t handler)\n{\n  switch (sig)\n    {\n    case SIGPIPE:\n      {\n        handler_t old_handler = SIGPIPE_handler;\n        SIGPIPE_handler = handler;\n        return old_handler;\n      }\n    default: /* System defined signal */\n      return signal (sig, handler);\n    }\n}\n# undef signal\n# define signal ext_signal\n#endif\n\nint\nsigismember (const sigset_t *set, int sig)\n{\n  if (sig >= 0 && sig < NSIG)\n    {\n      #ifdef SIGABRT_COMPAT\n      if (sig == SIGABRT_COMPAT)\n        sig = SIGABRT;\n      #endif\n\n      return (*set >> sig) & 1;\n    }\n  else\n    return 0;\n}\n\nint\nsigemptyset (sigset_t *set)\n{\n  *set = 0;\n  return 0;\n}\n\nint\nsigaddset (sigset_t *set, int sig)\n{\n  if (sig >= 0 && sig < NSIG)\n    {\n      #ifdef SIGABRT_COMPAT\n      if (sig == SIGABRT_COMPAT)\n        sig = SIGABRT;\n      #endif\n\n      *set |= 1U << sig;\n      return 0;\n    }\n  else\n    {\n      errno = EINVAL;\n      return -1;\n    }\n}\n\nint\nsigdelset (sigset_t *set, int sig)\n{\n  if (sig >= 0 && sig < NSIG)\n    {\n      #ifdef SIGABRT_COMPAT\n      if (sig == SIGABRT_COMPAT)\n        sig = SIGABRT;\n      #endif\n\n      *set &= ~(1U << sig);\n      return 0;\n    }\n  else\n    {\n      errno = EINVAL;\n      return -1;\n    }\n}\n\n\nint\nsigfillset (sigset_t *set)\n{\n  *set = ((2U << (NSIG - 1)) - 1) & ~ SIGABRT_COMPAT_MASK;\n  return 0;\n}\n\n/* Set of currently blocked signals.  */\nstatic volatile sigset_t blocked_set /* = 0 */;\n\n/* Set of currently blocked and pending signals.  */\nstatic volatile sig_atomic_t pending_array[NSIG] /* = { 0 } */;\n\n/* Signal handler that is installed for blocked signals.  */\nstatic void\nblocked_handler (int sig)\n{\n  /* Reinstall the handler, in case the signal occurs multiple times\n     while blocked.  There is an inherent race where an asynchronous\n     signal in between when the kernel uninstalled the handler and\n     when we reinstall it will trigger the default handler; oh\n     well.  */\n  signal (sig, blocked_handler);\n  if (sig >= 0 && sig < NSIG)\n    pending_array[sig] = 1;\n}\n\nint\nsigpending (sigset_t *set)\n{\n  sigset_t pending = 0;\n  int sig;\n\n  for (sig = 0; sig < NSIG; sig++)\n    if (pending_array[sig])\n      pending |= 1U << sig;\n  *set = pending;\n  return 0;\n}\n\n/* The previous signal handlers.\n   Only the array elements corresponding to blocked signals are relevant.  */\nstatic volatile handler_t old_handlers[NSIG];\n\nint\nsigprocmask (int operation, const sigset_t *set, sigset_t *old_set)\n{\n  if (old_set != NULL)\n    *old_set = blocked_set;\n\n  if (set != NULL)\n    {\n      sigset_t new_blocked_set;\n      sigset_t to_unblock;\n      sigset_t to_block;\n\n      switch (operation)\n        {\n        case SIG_BLOCK:\n          new_blocked_set = blocked_set | *set;\n          break;\n        case SIG_SETMASK:\n          new_blocked_set = *set;\n          break;\n        case SIG_UNBLOCK:\n          new_blocked_set = blocked_set & ~*set;\n          break;\n        default:\n          errno = EINVAL;\n          return -1;\n        }\n      to_unblock = blocked_set & ~new_blocked_set;\n      to_block = new_blocked_set & ~blocked_set;\n\n      if (to_block != 0)\n        {\n          int sig;\n\n          for (sig = 0; sig < NSIG; sig++)\n            if ((to_block >> sig) & 1)\n              {\n                pending_array[sig] = 0;\n                if ((old_handlers[sig] = signal (sig, blocked_handler)) != SIG_ERR)\n                  blocked_set |= 1U << sig;\n              }\n        }\n\n      if (to_unblock != 0)\n        {\n          sig_atomic_t received[NSIG];\n          int sig;\n\n          for (sig = 0; sig < NSIG; sig++)\n            if ((to_unblock >> sig) & 1)\n              {\n                if (signal (sig, old_handlers[sig]) != blocked_handler)\n                  /* The application changed a signal handler while the signal\n                     was blocked, bypassing our rpl_signal replacement.\n                     We don't support this.  */\n                  abort ();\n                received[sig] = pending_array[sig];\n                blocked_set &= ~(1U << sig);\n                pending_array[sig] = 0;\n              }\n            else\n              received[sig] = 0;\n\n          for (sig = 0; sig < NSIG; sig++)\n            if (received[sig])\n              raise (sig);\n        }\n    }\n  return 0;\n}\n\n/* Install the handler FUNC for signal SIG, and return the previous\n   handler.  */\nhandler_t\nrpl_signal (int sig, handler_t handler)\n{\n  /* We must provide a wrapper, so that a user can query what handler\n     they installed even if that signal is currently blocked.  */\n  if (sig >= 0 && sig < NSIG && sig != SIGKILL && sig != SIGSTOP\n      && handler != SIG_ERR)\n    {\n      #ifdef SIGABRT_COMPAT\n      if (sig == SIGABRT_COMPAT)\n        sig = SIGABRT;\n      #endif\n\n      if (blocked_set & (1U << sig))\n        {\n          /* POSIX states that sigprocmask and signal are both\n             async-signal-safe.  This is not true of our\n             implementation - there is a slight data race where an\n             asynchronous interrupt on signal A can occur after we\n             install blocked_handler but before we have updated\n             old_handlers for signal B, such that handler A can see\n             stale information if it calls signal(B).  Oh well -\n             signal handlers really shouldn't try to manipulate the\n             installed handlers of unrelated signals.  */\n          handler_t result = old_handlers[sig];\n          old_handlers[sig] = handler;\n          return result;\n        }\n      else\n        return signal (sig, handler);\n    }\n  else\n    {\n      errno = EINVAL;\n      return SIG_ERR;\n    }\n}\n\n#if GNULIB_defined_SIGPIPE\n/* Raise the signal SIGPIPE.  */\nint\n_gl_raise_SIGPIPE (void)\n{\n  if (blocked_set & (1U << SIGPIPE))\n    pending_array[SIGPIPE] = 1;\n  else\n    {\n      handler_t handler = SIGPIPE_handler;\n      if (handler == SIG_DFL)\n        exit (128 + SIGPIPE);\n      else if (handler != SIG_IGN)\n        (*handler) (SIGPIPE);\n    }\n  return 0;\n}\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/stat.c",
    "content": "/* Work around platform bugs in stat.\n   Copyright (C) 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* written by Eric Blake */\n\n/* If the user's config.h happens to include <sys/stat.h>, let it include only\n   the system's <sys/stat.h> here, so that orig_stat doesn't recurse to\n   rpl_stat.  */\n#define __need_system_sys_stat_h\n#include <config.h>\n\n/* Get the original definition of stat.  It might be defined as a macro.  */\n#include <sys/types.h>\n#include <sys/stat.h>\n#undef __need_system_sys_stat_h\n\n#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n# if _GL_WINDOWS_64_BIT_ST_SIZE\n#  undef stat /* avoid warning on mingw64 with _FILE_OFFSET_BITS=64 */\n#  define stat _stati64\n#  define REPLACE_FUNC_STAT_DIR 1\n#  undef REPLACE_FUNC_STAT_FILE\n# elif REPLACE_FUNC_STAT_FILE\n/* mingw64 has a broken stat() function, based on _stat(), in libmingwex.a.\n   Bypass it.  */\n#  define stat _stat\n#  define REPLACE_FUNC_STAT_DIR 1\n#  undef REPLACE_FUNC_STAT_FILE\n# endif\n#endif\n\nstatic int\norig_stat (const char *filename, struct stat *buf)\n{\n  return stat (filename, buf);\n}\n\n/* Specification.  */\n/* Write \"sys/stat.h\" here, not <sys/stat.h>, otherwise OSF/1 5.1 DTK cc\n   eliminates this include because of the preliminary #include <sys/stat.h>\n   above.  */\n#include \"sys/stat.h\"\n\n#include <errno.h>\n#include <limits.h>\n#include <stdbool.h>\n#include <string.h>\n#include \"dosname.h\"\n#include \"verify.h\"\n\n#if REPLACE_FUNC_STAT_DIR\n# include \"pathmax.h\"\n  /* The only known systems where REPLACE_FUNC_STAT_DIR is needed also\n     have a constant PATH_MAX.  */\n# ifndef PATH_MAX\n#  error \"Please port this replacement to your platform\"\n# endif\n#endif\n\n/* Store information about NAME into ST.  Work around bugs with\n   trailing slashes.  Mingw has other bugs (such as st_ino always\n   being 0 on success) which this wrapper does not work around.  But\n   at least this implementation provides the ability to emulate fchdir\n   correctly.  */\n\nint\nrpl_stat (char const *name, struct stat *st)\n{\n  int result = orig_stat (name, st);\n#if REPLACE_FUNC_STAT_FILE\n  /* Solaris 9 mistakenly succeeds when given a non-directory with a\n     trailing slash.  */\n  if (result == 0 && !S_ISDIR (st->st_mode))\n    {\n      size_t len = strlen (name);\n      if (ISSLASH (name[len - 1]))\n        {\n          errno = ENOTDIR;\n          return -1;\n        }\n    }\n#endif /* REPLACE_FUNC_STAT_FILE */\n#if REPLACE_FUNC_STAT_DIR\n\n  if (result == -1 && errno == ENOENT)\n    {\n      /* Due to mingw's oddities, there are some directories (like\n         c:\\) where stat() only succeeds with a trailing slash, and\n         other directories (like c:\\windows) where stat() only\n         succeeds without a trailing slash.  But we want the two to be\n         synonymous, since chdir() manages either style.  Likewise, Mingw also\n         reports ENOENT for names longer than PATH_MAX, when we want\n         ENAMETOOLONG, and for stat(\"file/\"), when we want ENOTDIR.\n         Fortunately, mingw PATH_MAX is small enough for stack\n         allocation.  */\n      char fixed_name[PATH_MAX + 1] = {0};\n      size_t len = strlen (name);\n      bool check_dir = false;\n      verify (PATH_MAX <= 4096);\n      if (PATH_MAX <= len)\n        errno = ENAMETOOLONG;\n      else if (len)\n        {\n          strcpy (fixed_name, name);\n          if (ISSLASH (fixed_name[len - 1]))\n            {\n              check_dir = true;\n              while (len && ISSLASH (fixed_name[len - 1]))\n                fixed_name[--len] = '\\0';\n              if (!len)\n                fixed_name[0] = '/';\n            }\n          else\n            fixed_name[len++] = '/';\n          result = orig_stat (fixed_name, st);\n          if (result == 0 && check_dir && !S_ISDIR (st->st_mode))\n            {\n              result = -1;\n              errno = ENOTDIR;\n            }\n        }\n    }\n#endif /* REPLACE_FUNC_STAT_DIR */\n  return result;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/stdbool.in.h",
    "content": "/* Copyright (C) 2001-2003, 2006-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <haible@clisp.cons.org>, 2001.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _GL_STDBOOL_H\n#define _GL_STDBOOL_H\n\n/* ISO C 99 <stdbool.h> for platforms that lack it.  */\n\n/* Usage suggestions:\n\n   Programs that use <stdbool.h> should be aware of some limitations\n   and standards compliance issues.\n\n   Standards compliance:\n\n       - <stdbool.h> must be #included before 'bool', 'false', 'true'\n         can be used.\n\n       - You cannot assume that sizeof (bool) == 1.\n\n       - Programs should not undefine the macros bool, true, and false,\n         as C99 lists that as an \"obsolescent feature\".\n\n   Limitations of this substitute, when used in a C89 environment:\n\n       - <stdbool.h> must be #included before the '_Bool' type can be used.\n\n       - You cannot assume that _Bool is a typedef; it might be a macro.\n\n       - Bit-fields of type 'bool' are not supported.  Portable code\n         should use 'unsigned int foo : 1;' rather than 'bool foo : 1;'.\n\n       - In C99, casts and automatic conversions to '_Bool' or 'bool' are\n         performed in such a way that every nonzero value gets converted\n         to 'true', and zero gets converted to 'false'.  This doesn't work\n         with this substitute.  With this substitute, only the values 0 and 1\n         give the expected result when converted to _Bool' or 'bool'.\n\n       - C99 allows the use of (_Bool)0.0 in constant expressions, but\n         this substitute cannot always provide this property.\n\n   Also, it is suggested that programs use 'bool' rather than '_Bool';\n   this isn't required, but 'bool' is more common.  */\n\n\n/* 7.16. Boolean type and values */\n\n/* BeOS <sys/socket.h> already #defines false 0, true 1.  We use the same\n   definitions below, but temporarily we have to #undef them.  */\n#if defined __BEOS__ && !defined __HAIKU__\n# include <OS.h> /* defines bool but not _Bool */\n# undef false\n# undef true\n#endif\n\n#ifdef __cplusplus\n# define _Bool bool\n# define bool bool\n#else\n# if defined __BEOS__ && !defined __HAIKU__\n  /* A compiler known to have 'bool'.  */\n  /* If the compiler already has both 'bool' and '_Bool', we can assume they\n     are the same types.  */\n#  if !@HAVE__BOOL@\ntypedef bool _Bool;\n#  endif\n# else\n#  if !defined __GNUC__\n   /* If @HAVE__BOOL@:\n        Some HP-UX cc and AIX IBM C compiler versions have compiler bugs when\n        the built-in _Bool type is used.  See\n          http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02303.html\n          http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00161.html\n          http://lists.gnu.org/archive/html/bug-coreutils/2005-10/msg00086.html\n        Similar bugs are likely with other compilers as well; this file\n        wouldn't be used if <stdbool.h> was working.\n        So we override the _Bool type.\n      If !@HAVE__BOOL@:\n        Need to define _Bool ourselves. As 'signed char' or as an enum type?\n        Use of a typedef, with SunPRO C, leads to a stupid\n          \"warning: _Bool is a keyword in ISO C99\".\n        Use of an enum type, with IRIX cc, leads to a stupid\n          \"warning(1185): enumerated type mixed with another type\".\n        Even the existence of an enum type, without a typedef,\n          \"Invalid enumerator. (badenum)\" with HP-UX cc on Tru64.\n        The only benefit of the enum, debuggability, is not important\n        with these compilers.  So use 'signed char' and no enum.  */\n#   define _Bool signed char\n#  else\n   /* With this compiler, trust the _Bool type if the compiler has it.  */\n#   if !@HAVE__BOOL@\n   /* For the sake of symbolic names in gdb, define true and false as\n      enum constants, not only as macros.\n      It is tempting to write\n         typedef enum { false = 0, true = 1 } _Bool;\n      so that gdb prints values of type 'bool' symbolically.  But then\n      values of type '_Bool' might promote to 'int' or 'unsigned int'\n      (see ISO C 99 6.7.2.2.(4)); however, '_Bool' must promote to 'int'\n      (see ISO C 99 6.3.1.1.(2)).  So add a negative value to the\n      enum; this ensures that '_Bool' promotes to 'int'.  */\ntypedef enum { _Bool_must_promote_to_int = -1, false = 0, true = 1 } _Bool;\n#   endif\n#  endif\n# endif\n# define bool _Bool\n#endif\n\n/* The other macros must be usable in preprocessor directives.  */\n#ifdef __cplusplus\n# define false false\n# define true true\n#else\n# define false 0\n# define true 1\n#endif\n\n#define __bool_true_false_are_defined 1\n\n#endif /* _GL_STDBOOL_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/stddef.in.h",
    "content": "/* A substitute for POSIX 2008 <stddef.h>, for platforms that have issues.\n\n   Copyright (C) 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Eric Blake.  */\n\n/*\n * POSIX 2008 <stddef.h> for platforms that have issues.\n * <http://www.opengroup.org/susv3xbd/stddef.h.html>\n */\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n#if defined __need_wchar_t || defined __need_size_t  \\\n  || defined __need_ptrdiff_t || defined __need_NULL \\\n  || defined __need_wint_t\n/* Special invocation convention inside gcc header files.  In\n   particular, gcc provides a version of <stddef.h> that blindly\n   redefines NULL even when __need_wint_t was defined, even though\n   wint_t is not normally provided by <stddef.h>.  Hence, we must\n   remember if special invocation has ever been used to obtain wint_t,\n   in which case we need to clean up NULL yet again.  */\n\n# if !(defined _@GUARD_PREFIX@_STDDEF_H && defined _GL_STDDEF_WINT_T)\n#  ifdef __need_wint_t\n#   define _GL_STDDEF_WINT_T\n#  endif\n#  @INCLUDE_NEXT@ @NEXT_STDDEF_H@\n# endif\n\n#else\n/* Normal invocation convention.  */\n\n# ifndef _@GUARD_PREFIX@_STDDEF_H\n\n/* The include_next requires a split double-inclusion guard.  */\n\n#  @INCLUDE_NEXT@ @NEXT_STDDEF_H@\n\n/* On NetBSD 5.0, the definition of NULL lacks proper parentheses.  */\n#  if (@REPLACE_NULL@ \\\n       && (!defined _@GUARD_PREFIX@_STDDEF_H || defined _GL_STDDEF_WINT_T))\n#   undef NULL\n#   ifdef __cplusplus\n   /* ISO C++ says that the macro NULL must expand to an integer constant\n      expression, hence '((void *) 0)' is not allowed in C++.  */\n#    if __GNUG__ >= 3\n    /* GNU C++ has a __null macro that behaves like an integer ('int' or\n       'long') but has the same size as a pointer.  Use that, to avoid\n       warnings.  */\n#     define NULL __null\n#    else\n#     define NULL 0L\n#    endif\n#   else\n#    define NULL ((void *) 0)\n#   endif\n#  endif\n\n#  ifndef _@GUARD_PREFIX@_STDDEF_H\n#   define _@GUARD_PREFIX@_STDDEF_H\n\n/* Some platforms lack wchar_t.  */\n#if !@HAVE_WCHAR_T@\n# define wchar_t int\n#endif\n\n/* Some platforms lack max_align_t.  The check for _GCC_MAX_ALIGN_T is\n   a hack in case the configure-time test was done with g++ even though\n   we are currently compiling with gcc.  */\n#if ! (@HAVE_MAX_ALIGN_T@ || defined _GCC_MAX_ALIGN_T)\n/* On the x86, the maximum storage alignment of double, long, etc. is 4,\n   but GCC's C11 ABI for x86 says that max_align_t has an alignment of 8,\n   and the C11 standard allows this.  Work around this problem by\n   using __alignof__ (which returns 8 for double) rather than _Alignof\n   (which returns 4), and align each union member accordingly.  */\n# ifdef __GNUC__\n#  define _GL_STDDEF_ALIGNAS(type) \\\n     __attribute__ ((__aligned__ (__alignof__ (type))))\n# else\n#  define _GL_STDDEF_ALIGNAS(type) /* */\n# endif\ntypedef union\n{\n  char *__p _GL_STDDEF_ALIGNAS (char *);\n  double __d _GL_STDDEF_ALIGNAS (double);\n  long double __ld _GL_STDDEF_ALIGNAS (long double);\n  long int __i _GL_STDDEF_ALIGNAS (long int);\n} max_align_t;\n#endif\n\n#  endif /* _@GUARD_PREFIX@_STDDEF_H */\n# endif /* _@GUARD_PREFIX@_STDDEF_H */\n#endif /* __need_XXX */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/stdint.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* Copyright (C) 2001-2002, 2004-2017 Free Software Foundation, Inc.\n   Written by Paul Eggert, Bruno Haible, Sam Steingold, Peter Burwood.\n   This file is part of gnulib.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/*\n * ISO C 99 <stdint.h> for platforms that lack it.\n * <http://www.opengroup.org/susv3xbd/stdint.h.html>\n */\n\n#ifndef _GL_STDINT_H\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n/* When including a system file that in turn includes <inttypes.h>,\n   use the system <inttypes.h>, not our substitute.  This avoids\n   problems with (for example) VMS, whose <sys/bitypes.h> includes\n   <inttypes.h>.  */\n#define _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H\n\n/* On Android (Bionic libc), <sys/types.h> includes this file before\n   having defined 'time_t'.  Therefore in this case avoid including\n   other system header files; just include the system's <stdint.h>.\n   Ideally we should test __BIONIC__ here, but it is only defined after\n   <sys/cdefs.h> has been included; hence test __ANDROID__ instead.  */\n#if defined __ANDROID__ && defined _GL_INCLUDING_SYS_TYPES_H\n# include_next <stdint.h>\n#else\n\n/* Get those types that are already defined in other system include\n   files, so that we can \"#define int8_t signed char\" below without\n   worrying about a later system include file containing a \"typedef\n   signed char int8_t;\" that will get messed up by our macro.  Our\n   macros should all be consistent with the system versions, except\n   for the \"fast\" types and macros, which we recommend against using\n   in public interfaces due to compiler differences.  */\n\n#if 1\n# if defined __sgi && ! defined __c99\n   /* Bypass IRIX's <stdint.h> if in C89 mode, since it merely annoys users\n      with \"This header file is to be used only for c99 mode compilations\"\n      diagnostics.  */\n#  define __STDINT_H__\n# endif\n\n  /* Some pre-C++11 <stdint.h> implementations need this.  */\n# ifdef __cplusplus\n#  ifndef __STDC_CONSTANT_MACROS\n#   define __STDC_CONSTANT_MACROS 1\n#  endif\n#  ifndef __STDC_LIMIT_MACROS\n#   define __STDC_LIMIT_MACROS 1\n#  endif\n# endif\n\n  /* Other systems may have an incomplete or buggy <stdint.h>.\n     Include it before <inttypes.h>, since any \"#include <stdint.h>\"\n     in <inttypes.h> would reinclude us, skipping our contents because\n     _GL_STDINT_H is defined.\n     The include_next requires a split double-inclusion guard.  */\n# include_next <stdint.h>\n#endif\n\n#if ! defined _GL_STDINT_H && ! defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H\n#define _GL_STDINT_H\n\n/* Get SCHAR_MIN, SCHAR_MAX, UCHAR_MAX, INT_MIN, INT_MAX,\n   LONG_MIN, LONG_MAX, ULONG_MAX, _GL_INTEGER_WIDTH.  */\n#include <limits.h>\n\n/* Override WINT_MIN and WINT_MAX if gnulib's <wchar.h> or <wctype.h> overrides\n   wint_t.  */\n#if 0\n# undef WINT_MIN\n# undef WINT_MAX\n# define WINT_MIN 0x0U\n# define WINT_MAX 0xffffffffU\n#endif\n\n#if ! 0\n\n/* <sys/types.h> defines some of the stdint.h types as well, on glibc,\n   IRIX 6.5, and OpenBSD 3.8 (via <machine/types.h>).\n   AIX 5.2 <sys/types.h> isn't needed and causes troubles.\n   Mac OS X 10.4.6 <sys/types.h> includes <stdint.h> (which is us), but\n   relies on the system <stdint.h> definitions, so include\n   <sys/types.h> after <stdint.h>.  */\n# if 1 && ! defined _AIX\n#  include <sys/types.h>\n# endif\n\n# if 1\n  /* In OpenBSD 3.8, <inttypes.h> includes <machine/types.h>, which defines\n     int{8,16,32,64}_t, uint{8,16,32,64}_t and __BIT_TYPES_DEFINED__.\n     <inttypes.h> also defines intptr_t and uintptr_t.  */\n#  include <inttypes.h>\n# elif 0\n  /* Solaris 7 <sys/inttypes.h> has the types except the *_fast*_t types, and\n     the macros except for *_FAST*_*, INTPTR_MIN, PTRDIFF_MIN, PTRDIFF_MAX.  */\n#  include <sys/inttypes.h>\n# endif\n\n# if 0 && ! defined __BIT_TYPES_DEFINED__\n  /* Linux libc4 >= 4.6.7 and libc5 have a <sys/bitypes.h> that defines\n     int{8,16,32,64}_t and __BIT_TYPES_DEFINED__.  In libc5 >= 5.2.2 it is\n     included by <sys/types.h>.  */\n#  include <sys/bitypes.h>\n# endif\n\n# undef _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H\n\n/* Minimum and maximum values for an integer type under the usual assumption.\n   Return an unspecified value if BITS == 0, adding a check to pacify\n   picky compilers.  */\n\n# define _STDINT_MIN(signed, bits, zero) \\\n    ((signed) ? ~ _STDINT_MAX (signed, bits, zero) : (zero))\n\n# define _STDINT_MAX(signed, bits, zero) \\\n    (((((zero) + 1) << ((bits) ? (bits) - 1 - (signed) : 0)) - 1) * 2 + 1)\n\n#if !GNULIB_defined_stdint_types\n\n/* 7.18.1.1. Exact-width integer types */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits.  */\n\n# undef int8_t\n# undef uint8_t\ntypedef signed char gl_int8_t;\ntypedef unsigned char gl_uint8_t;\n# define int8_t gl_int8_t\n# define uint8_t gl_uint8_t\n\n# undef int16_t\n# undef uint16_t\ntypedef short int gl_int16_t;\ntypedef unsigned short int gl_uint16_t;\n# define int16_t gl_int16_t\n# define uint16_t gl_uint16_t\n\n# undef int32_t\n# undef uint32_t\ntypedef int gl_int32_t;\ntypedef unsigned int gl_uint32_t;\n# define int32_t gl_int32_t\n# define uint32_t gl_uint32_t\n\n/* If the system defines INT64_MAX, assume int64_t works.  That way,\n   if the underlying platform defines int64_t to be a 64-bit long long\n   int, the code below won't mistakenly define it to be a 64-bit long\n   int, which would mess up C++ name mangling.  We must use #ifdef\n   rather than #if, to avoid an error with HP-UX 10.20 cc.  */\n\n# ifdef INT64_MAX\n#  define GL_INT64_T\n# else\n/* Do not undefine int64_t if gnulib is not being used with 64-bit\n   types, since otherwise it breaks platforms like Tandem/NSK.  */\n#  if LONG_MAX >> 31 >> 31 == 1\n#   undef int64_t\ntypedef long int gl_int64_t;\n#   define int64_t gl_int64_t\n#   define GL_INT64_T\n#  elif defined _MSC_VER\n#   undef int64_t\ntypedef __int64 gl_int64_t;\n#   define int64_t gl_int64_t\n#   define GL_INT64_T\n#  elif 1\n#   undef int64_t\ntypedef long long int gl_int64_t;\n#   define int64_t gl_int64_t\n#   define GL_INT64_T\n#  endif\n# endif\n\n# ifdef UINT64_MAX\n#  define GL_UINT64_T\n# else\n#  if ULONG_MAX >> 31 >> 31 >> 1 == 1\n#   undef uint64_t\ntypedef unsigned long int gl_uint64_t;\n#   define uint64_t gl_uint64_t\n#   define GL_UINT64_T\n#  elif defined _MSC_VER\n#   undef uint64_t\ntypedef unsigned __int64 gl_uint64_t;\n#   define uint64_t gl_uint64_t\n#   define GL_UINT64_T\n#  elif 1\n#   undef uint64_t\ntypedef unsigned long long int gl_uint64_t;\n#   define uint64_t gl_uint64_t\n#   define GL_UINT64_T\n#  endif\n# endif\n\n/* Avoid collision with Solaris 2.5.1 <pthread.h> etc.  */\n# define _UINT8_T\n# define _UINT32_T\n# define _UINT64_T\n\n\n/* 7.18.1.2. Minimum-width integer types */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types\n   are the same as the corresponding N_t types.  */\n\n# undef int_least8_t\n# undef uint_least8_t\n# undef int_least16_t\n# undef uint_least16_t\n# undef int_least32_t\n# undef uint_least32_t\n# undef int_least64_t\n# undef uint_least64_t\n# define int_least8_t int8_t\n# define uint_least8_t uint8_t\n# define int_least16_t int16_t\n# define uint_least16_t uint16_t\n# define int_least32_t int32_t\n# define uint_least32_t uint32_t\n# ifdef GL_INT64_T\n#  define int_least64_t int64_t\n# endif\n# ifdef GL_UINT64_T\n#  define uint_least64_t uint64_t\n# endif\n\n/* 7.18.1.3. Fastest minimum-width integer types */\n\n/* Note: Other <stdint.h> substitutes may define these types differently.\n   It is not recommended to use these types in public header files. */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types\n   are taken from the same list of types.  The following code normally\n   uses types consistent with glibc, as that lessens the chance of\n   incompatibility with older GNU hosts.  */\n\n# undef int_fast8_t\n# undef uint_fast8_t\n# undef int_fast16_t\n# undef uint_fast16_t\n# undef int_fast32_t\n# undef uint_fast32_t\n# undef int_fast64_t\n# undef uint_fast64_t\ntypedef signed char gl_int_fast8_t;\ntypedef unsigned char gl_uint_fast8_t;\n\n# ifdef __sun\n/* Define types compatible with SunOS 5.10, so that code compiled under\n   earlier SunOS versions works with code compiled under SunOS 5.10.  */\ntypedef int gl_int_fast32_t;\ntypedef unsigned int gl_uint_fast32_t;\n# else\ntypedef long int gl_int_fast32_t;\ntypedef unsigned long int gl_uint_fast32_t;\n# endif\ntypedef gl_int_fast32_t gl_int_fast16_t;\ntypedef gl_uint_fast32_t gl_uint_fast16_t;\n\n# define int_fast8_t gl_int_fast8_t\n# define uint_fast8_t gl_uint_fast8_t\n# define int_fast16_t gl_int_fast16_t\n# define uint_fast16_t gl_uint_fast16_t\n# define int_fast32_t gl_int_fast32_t\n# define uint_fast32_t gl_uint_fast32_t\n# ifdef GL_INT64_T\n#  define int_fast64_t int64_t\n# endif\n# ifdef GL_UINT64_T\n#  define uint_fast64_t uint64_t\n# endif\n\n/* 7.18.1.4. Integer types capable of holding object pointers */\n\n/* kLIBC's stdint.h defines _INTPTR_T_DECLARED and needs its own\n   definitions of intptr_t and uintptr_t (which use int and unsigned)\n   to avoid clashes with declarations of system functions like sbrk.  */\n# ifndef _INTPTR_T_DECLARED\n# undef intptr_t\n# undef uintptr_t\ntypedef long int gl_intptr_t;\ntypedef unsigned long int gl_uintptr_t;\n# define intptr_t gl_intptr_t\n# define uintptr_t gl_uintptr_t\n# endif\n\n/* 7.18.1.5. Greatest-width integer types */\n\n/* Note: These types are compiler dependent. It may be unwise to use them in\n   public header files. */\n\n/* If the system defines INTMAX_MAX, assume that intmax_t works, and\n   similarly for UINTMAX_MAX and uintmax_t.  This avoids problems with\n   assuming one type where another is used by the system.  */\n\n# ifndef INTMAX_MAX\n#  undef INTMAX_C\n#  undef intmax_t\n#  if 1 && LONG_MAX >> 30 == 1\ntypedef long long int gl_intmax_t;\n#   define intmax_t gl_intmax_t\n#  elif defined GL_INT64_T\n#   define intmax_t int64_t\n#  else\ntypedef long int gl_intmax_t;\n#   define intmax_t gl_intmax_t\n#  endif\n# endif\n\n# ifndef UINTMAX_MAX\n#  undef UINTMAX_C\n#  undef uintmax_t\n#  if 1 && ULONG_MAX >> 31 == 1\ntypedef unsigned long long int gl_uintmax_t;\n#   define uintmax_t gl_uintmax_t\n#  elif defined GL_UINT64_T\n#   define uintmax_t uint64_t\n#  else\ntypedef unsigned long int gl_uintmax_t;\n#   define uintmax_t gl_uintmax_t\n#  endif\n# endif\n\n/* Verify that intmax_t and uintmax_t have the same size.  Too much code\n   breaks if this is not the case.  If this check fails, the reason is likely\n   to be found in the autoconf macros.  */\ntypedef int _verify_intmax_size[sizeof (intmax_t) == sizeof (uintmax_t)\n                                ? 1 : -1];\n\n# define GNULIB_defined_stdint_types 1\n# endif /* !GNULIB_defined_stdint_types */\n\n/* 7.18.2. Limits of specified-width integer types */\n\n/* 7.18.2.1. Limits of exact-width integer types */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits.  */\n\n# undef INT8_MIN\n# undef INT8_MAX\n# undef UINT8_MAX\n# define INT8_MIN  (~ INT8_MAX)\n# define INT8_MAX  127\n# define UINT8_MAX  255\n\n# undef INT16_MIN\n# undef INT16_MAX\n# undef UINT16_MAX\n# define INT16_MIN  (~ INT16_MAX)\n# define INT16_MAX  32767\n# define UINT16_MAX  65535\n\n# undef INT32_MIN\n# undef INT32_MAX\n# undef UINT32_MAX\n# define INT32_MIN  (~ INT32_MAX)\n# define INT32_MAX  2147483647\n# define UINT32_MAX  4294967295U\n\n# if defined GL_INT64_T && ! defined INT64_MAX\n/* Prefer (- INTMAX_C (1) << 63) over (~ INT64_MAX) because SunPRO C 5.0\n   evaluates the latter incorrectly in preprocessor expressions.  */\n#  define INT64_MIN  (- INTMAX_C (1) << 63)\n#  define INT64_MAX  INTMAX_C (9223372036854775807)\n# endif\n\n# if defined GL_UINT64_T && ! defined UINT64_MAX\n#  define UINT64_MAX  UINTMAX_C (18446744073709551615)\n# endif\n\n/* 7.18.2.2. Limits of minimum-width integer types */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types\n   are the same as the corresponding N_t types.  */\n\n# undef INT_LEAST8_MIN\n# undef INT_LEAST8_MAX\n# undef UINT_LEAST8_MAX\n# define INT_LEAST8_MIN  INT8_MIN\n# define INT_LEAST8_MAX  INT8_MAX\n# define UINT_LEAST8_MAX  UINT8_MAX\n\n# undef INT_LEAST16_MIN\n# undef INT_LEAST16_MAX\n# undef UINT_LEAST16_MAX\n# define INT_LEAST16_MIN  INT16_MIN\n# define INT_LEAST16_MAX  INT16_MAX\n# define UINT_LEAST16_MAX  UINT16_MAX\n\n# undef INT_LEAST32_MIN\n# undef INT_LEAST32_MAX\n# undef UINT_LEAST32_MAX\n# define INT_LEAST32_MIN  INT32_MIN\n# define INT_LEAST32_MAX  INT32_MAX\n# define UINT_LEAST32_MAX  UINT32_MAX\n\n# undef INT_LEAST64_MIN\n# undef INT_LEAST64_MAX\n# ifdef GL_INT64_T\n#  define INT_LEAST64_MIN  INT64_MIN\n#  define INT_LEAST64_MAX  INT64_MAX\n# endif\n\n# undef UINT_LEAST64_MAX\n# ifdef GL_UINT64_T\n#  define UINT_LEAST64_MAX  UINT64_MAX\n# endif\n\n/* 7.18.2.3. Limits of fastest minimum-width integer types */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types\n   are taken from the same list of types.  */\n\n# undef INT_FAST8_MIN\n# undef INT_FAST8_MAX\n# undef UINT_FAST8_MAX\n# define INT_FAST8_MIN  SCHAR_MIN\n# define INT_FAST8_MAX  SCHAR_MAX\n# define UINT_FAST8_MAX  UCHAR_MAX\n\n# undef INT_FAST16_MIN\n# undef INT_FAST16_MAX\n# undef UINT_FAST16_MAX\n# define INT_FAST16_MIN  INT_FAST32_MIN\n# define INT_FAST16_MAX  INT_FAST32_MAX\n# define UINT_FAST16_MAX  UINT_FAST32_MAX\n\n# undef INT_FAST32_MIN\n# undef INT_FAST32_MAX\n# undef UINT_FAST32_MAX\n# ifdef __sun\n#  define INT_FAST32_MIN  INT_MIN\n#  define INT_FAST32_MAX  INT_MAX\n#  define UINT_FAST32_MAX  UINT_MAX\n# else\n#  define INT_FAST32_MIN  LONG_MIN\n#  define INT_FAST32_MAX  LONG_MAX\n#  define UINT_FAST32_MAX  ULONG_MAX\n# endif\n\n# undef INT_FAST64_MIN\n# undef INT_FAST64_MAX\n# ifdef GL_INT64_T\n#  define INT_FAST64_MIN  INT64_MIN\n#  define INT_FAST64_MAX  INT64_MAX\n# endif\n\n# undef UINT_FAST64_MAX\n# ifdef GL_UINT64_T\n#  define UINT_FAST64_MAX  UINT64_MAX\n# endif\n\n/* 7.18.2.4. Limits of integer types capable of holding object pointers */\n\n# undef INTPTR_MIN\n# undef INTPTR_MAX\n# undef UINTPTR_MAX\n# define INTPTR_MIN  LONG_MIN\n# define INTPTR_MAX  LONG_MAX\n# define UINTPTR_MAX  ULONG_MAX\n\n/* 7.18.2.5. Limits of greatest-width integer types */\n\n# ifndef INTMAX_MAX\n#  undef INTMAX_MIN\n#  ifdef INT64_MAX\n#   define INTMAX_MIN  INT64_MIN\n#   define INTMAX_MAX  INT64_MAX\n#  else\n#   define INTMAX_MIN  INT32_MIN\n#   define INTMAX_MAX  INT32_MAX\n#  endif\n# endif\n\n# ifndef UINTMAX_MAX\n#  ifdef UINT64_MAX\n#   define UINTMAX_MAX  UINT64_MAX\n#  else\n#   define UINTMAX_MAX  UINT32_MAX\n#  endif\n# endif\n\n/* 7.18.3. Limits of other integer types */\n\n/* ptrdiff_t limits */\n# undef PTRDIFF_MIN\n# undef PTRDIFF_MAX\n# if 0\n#  ifdef _LP64\n#   define PTRDIFF_MIN  _STDINT_MIN (1, 64, 0l)\n#   define PTRDIFF_MAX  _STDINT_MAX (1, 64, 0l)\n#  else\n#   define PTRDIFF_MIN  _STDINT_MIN (1, 32, 0)\n#   define PTRDIFF_MAX  _STDINT_MAX (1, 32, 0)\n#  endif\n# else\n#  define PTRDIFF_MIN  \\\n    _STDINT_MIN (1, 64, 0l)\n#  define PTRDIFF_MAX  \\\n    _STDINT_MAX (1, 64, 0l)\n# endif\n\n/* sig_atomic_t limits */\n# undef SIG_ATOMIC_MIN\n# undef SIG_ATOMIC_MAX\n# define SIG_ATOMIC_MIN  \\\n   _STDINT_MIN (1, 32, \\\n                0)\n# define SIG_ATOMIC_MAX  \\\n   _STDINT_MAX (1, 32, \\\n                0)\n\n\n/* size_t limit */\n# undef SIZE_MAX\n# if 0\n#  ifdef _LP64\n#   define SIZE_MAX  _STDINT_MAX (0, 64, 0ul)\n#  else\n#   define SIZE_MAX  _STDINT_MAX (0, 32, 0ul)\n#  endif\n# else\n#  define SIZE_MAX  _STDINT_MAX (0, 64, 0ul)\n# endif\n\n/* wchar_t limits */\n/* Get WCHAR_MIN, WCHAR_MAX.\n   This include is not on the top, above, because on OSF/1 4.0 we have a\n   sequence of nested includes\n   <wchar.h> -> <stdio.h> -> <getopt.h> -> <stdlib.h>, and the latter includes\n   <stdint.h> and assumes its types are already defined.  */\n# if 1 && ! (defined WCHAR_MIN && defined WCHAR_MAX)\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n#  include <stddef.h>\n#  include <stdio.h>\n#  include <time.h>\n#  define _GL_JUST_INCLUDE_SYSTEM_WCHAR_H\n#  include <wchar.h>\n#  undef _GL_JUST_INCLUDE_SYSTEM_WCHAR_H\n# endif\n# undef WCHAR_MIN\n# undef WCHAR_MAX\n# define WCHAR_MIN  \\\n   _STDINT_MIN (1, 32, 0)\n# define WCHAR_MAX  \\\n   _STDINT_MAX (1, 32, 0)\n\n/* wint_t limits */\n# undef WINT_MIN\n# undef WINT_MAX\n# define WINT_MIN  \\\n   _STDINT_MIN (1, 32, 0)\n# define WINT_MAX  \\\n   _STDINT_MAX (1, 32, 0)\n\n/* 7.18.4. Macros for integer constants */\n\n/* 7.18.4.1. Macros for minimum-width integer constants */\n/* According to ISO C 99 Technical Corrigendum 1 */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits, and int is 32 bits.  */\n\n# undef INT8_C\n# undef UINT8_C\n# define INT8_C(x) x\n# define UINT8_C(x) x\n\n# undef INT16_C\n# undef UINT16_C\n# define INT16_C(x) x\n# define UINT16_C(x) x\n\n# undef INT32_C\n# undef UINT32_C\n# define INT32_C(x) x\n# define UINT32_C(x) x ## U\n\n# undef INT64_C\n# undef UINT64_C\n# if LONG_MAX >> 31 >> 31 == 1\n#  define INT64_C(x) x##L\n# elif defined _MSC_VER\n#  define INT64_C(x) x##i64\n# elif 1\n#  define INT64_C(x) x##LL\n# endif\n# if ULONG_MAX >> 31 >> 31 >> 1 == 1\n#  define UINT64_C(x) x##UL\n# elif defined _MSC_VER\n#  define UINT64_C(x) x##ui64\n# elif 1\n#  define UINT64_C(x) x##ULL\n# endif\n\n/* 7.18.4.2. Macros for greatest-width integer constants */\n\n# ifndef INTMAX_C\n#  if 1 && LONG_MAX >> 30 == 1\n#   define INTMAX_C(x)   x##LL\n#  elif defined GL_INT64_T\n#   define INTMAX_C(x)   INT64_C(x)\n#  else\n#   define INTMAX_C(x)   x##L\n#  endif\n# endif\n\n# ifndef UINTMAX_C\n#  if 1 && ULONG_MAX >> 31 == 1\n#   define UINTMAX_C(x)  x##ULL\n#  elif defined GL_UINT64_T\n#   define UINTMAX_C(x)  UINT64_C(x)\n#  else\n#   define UINTMAX_C(x)  x##UL\n#  endif\n# endif\n\n#endif /* !0 */\n\n/* Macros specified by ISO/IEC TS 18661-1:2014.  */\n\n#if (!defined UINTMAX_WIDTH \\\n     && (defined _GNU_SOURCE || defined __STDC_WANT_IEC_60559_BFP_EXT__))\n# ifdef INT8_MAX\n#  define INT8_WIDTH _GL_INTEGER_WIDTH (INT8_MIN, INT8_MAX)\n# endif\n# ifdef UINT8_MAX\n#  define UINT8_WIDTH _GL_INTEGER_WIDTH (0, UINT8_MAX)\n# endif\n# ifdef INT16_MAX\n#  define INT16_WIDTH _GL_INTEGER_WIDTH (INT16_MIN, INT16_MAX)\n# endif\n# ifdef UINT16_MAX\n#  define UINT16_WIDTH _GL_INTEGER_WIDTH (0, UINT16_MAX)\n# endif\n# ifdef INT32_MAX\n#  define INT32_WIDTH _GL_INTEGER_WIDTH (INT32_MIN, INT32_MAX)\n# endif\n# ifdef UINT32_MAX\n#  define UINT32_WIDTH _GL_INTEGER_WIDTH (0, UINT32_MAX)\n# endif\n# ifdef INT64_MAX\n#  define INT64_WIDTH _GL_INTEGER_WIDTH (INT64_MIN, INT64_MAX)\n# endif\n# ifdef UINT64_MAX\n#  define UINT64_WIDTH _GL_INTEGER_WIDTH (0, UINT64_MAX)\n# endif\n# define INT_LEAST8_WIDTH _GL_INTEGER_WIDTH (INT_LEAST8_MIN, INT_LEAST8_MAX)\n# define UINT_LEAST8_WIDTH _GL_INTEGER_WIDTH (0, UINT_LEAST8_MAX)\n# define INT_LEAST16_WIDTH _GL_INTEGER_WIDTH (INT_LEAST16_MIN, INT_LEAST16_MAX)\n# define UINT_LEAST16_WIDTH _GL_INTEGER_WIDTH (0, UINT_LEAST16_MAX)\n# define INT_LEAST32_WIDTH _GL_INTEGER_WIDTH (INT_LEAST32_MIN, INT_LEAST32_MAX)\n# define UINT_LEAST32_WIDTH _GL_INTEGER_WIDTH (0, UINT_LEAST32_MAX)\n# define INT_LEAST64_WIDTH _GL_INTEGER_WIDTH (INT_LEAST64_MIN, INT_LEAST64_MAX)\n# define UINT_LEAST64_WIDTH _GL_INTEGER_WIDTH (0, UINT_LEAST64_MAX)\n# define INT_FAST8_WIDTH _GL_INTEGER_WIDTH (INT_FAST8_MIN, INT_FAST8_MAX)\n# define UINT_FAST8_WIDTH _GL_INTEGER_WIDTH (0, UINT_FAST8_MAX)\n# define INT_FAST16_WIDTH _GL_INTEGER_WIDTH (INT_FAST16_MIN, INT_FAST16_MAX)\n# define UINT_FAST16_WIDTH _GL_INTEGER_WIDTH (0, UINT_FAST16_MAX)\n# define INT_FAST32_WIDTH _GL_INTEGER_WIDTH (INT_FAST32_MIN, INT_FAST32_MAX)\n# define UINT_FAST32_WIDTH _GL_INTEGER_WIDTH (0, UINT_FAST32_MAX)\n# define INT_FAST64_WIDTH _GL_INTEGER_WIDTH (INT_FAST64_MIN, INT_FAST64_MAX)\n# define UINT_FAST64_WIDTH _GL_INTEGER_WIDTH (0, UINT_FAST64_MAX)\n# define INTPTR_WIDTH _GL_INTEGER_WIDTH (INTPTR_MIN, INTPTR_MAX)\n# define UINTPTR_WIDTH _GL_INTEGER_WIDTH (0, UINTPTR_MAX)\n# define INTMAX_WIDTH _GL_INTEGER_WIDTH (INTMAX_MIN, INTMAX_MAX)\n# define UINTMAX_WIDTH _GL_INTEGER_WIDTH (0, UINTMAX_MAX)\n# define PTRDIFF_WIDTH _GL_INTEGER_WIDTH (PTRDIFF_MIN, PTRDIFF_MAX)\n# define SIZE_WIDTH _GL_INTEGER_WIDTH (0, SIZE_MAX)\n# define WCHAR_WIDTH _GL_INTEGER_WIDTH (WCHAR_MIN, WCHAR_MAX)\n# ifdef WINT_MAX\n#  define WINT_WIDTH _GL_INTEGER_WIDTH (WINT_MIN, WINT_MAX)\n# endif\n# ifdef SIG_ATOMIC_MAX\n#  define SIG_ATOMIC_WIDTH _GL_INTEGER_WIDTH (SIG_ATOMIC_MIN, SIG_ATOMIC_MAX)\n# endif\n#endif /* !WINT_WIDTH && (_GNU_SOURCE || __STDC_WANT_IEC_60559_BFP_EXT__) */\n\n#endif /* _GL_STDINT_H */\n#endif /* !(defined __ANDROID__ && ...) */\n#endif /* !defined _GL_STDINT_H && !defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/stdint.in.h",
    "content": "/* Copyright (C) 2001-2002, 2004-2017 Free Software Foundation, Inc.\n   Written by Paul Eggert, Bruno Haible, Sam Steingold, Peter Burwood.\n   This file is part of gnulib.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/*\n * ISO C 99 <stdint.h> for platforms that lack it.\n * <http://www.opengroup.org/susv3xbd/stdint.h.html>\n */\n\n#ifndef _@GUARD_PREFIX@_STDINT_H\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n/* When including a system file that in turn includes <inttypes.h>,\n   use the system <inttypes.h>, not our substitute.  This avoids\n   problems with (for example) VMS, whose <sys/bitypes.h> includes\n   <inttypes.h>.  */\n#define _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H\n\n/* On Android (Bionic libc), <sys/types.h> includes this file before\n   having defined 'time_t'.  Therefore in this case avoid including\n   other system header files; just include the system's <stdint.h>.\n   Ideally we should test __BIONIC__ here, but it is only defined after\n   <sys/cdefs.h> has been included; hence test __ANDROID__ instead.  */\n#if defined __ANDROID__ && defined _GL_INCLUDING_SYS_TYPES_H\n# @INCLUDE_NEXT@ @NEXT_STDINT_H@\n#else\n\n/* Get those types that are already defined in other system include\n   files, so that we can \"#define int8_t signed char\" below without\n   worrying about a later system include file containing a \"typedef\n   signed char int8_t;\" that will get messed up by our macro.  Our\n   macros should all be consistent with the system versions, except\n   for the \"fast\" types and macros, which we recommend against using\n   in public interfaces due to compiler differences.  */\n\n#if @HAVE_STDINT_H@\n# if defined __sgi && ! defined __c99\n   /* Bypass IRIX's <stdint.h> if in C89 mode, since it merely annoys users\n      with \"This header file is to be used only for c99 mode compilations\"\n      diagnostics.  */\n#  define __STDINT_H__\n# endif\n\n  /* Some pre-C++11 <stdint.h> implementations need this.  */\n# ifdef __cplusplus\n#  ifndef __STDC_CONSTANT_MACROS\n#   define __STDC_CONSTANT_MACROS 1\n#  endif\n#  ifndef __STDC_LIMIT_MACROS\n#   define __STDC_LIMIT_MACROS 1\n#  endif\n# endif\n\n  /* Other systems may have an incomplete or buggy <stdint.h>.\n     Include it before <inttypes.h>, since any \"#include <stdint.h>\"\n     in <inttypes.h> would reinclude us, skipping our contents because\n     _@GUARD_PREFIX@_STDINT_H is defined.\n     The include_next requires a split double-inclusion guard.  */\n# @INCLUDE_NEXT@ @NEXT_STDINT_H@\n#endif\n\n#if ! defined _@GUARD_PREFIX@_STDINT_H && ! defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H\n#define _@GUARD_PREFIX@_STDINT_H\n\n/* Get SCHAR_MIN, SCHAR_MAX, UCHAR_MAX, INT_MIN, INT_MAX,\n   LONG_MIN, LONG_MAX, ULONG_MAX, _GL_INTEGER_WIDTH.  */\n#include <limits.h>\n\n/* Override WINT_MIN and WINT_MAX if gnulib's <wchar.h> or <wctype.h> overrides\n   wint_t.  */\n#if @GNULIB_OVERRIDES_WINT_T@\n# undef WINT_MIN\n# undef WINT_MAX\n# define WINT_MIN 0x0U\n# define WINT_MAX 0xffffffffU\n#endif\n\n#if ! @HAVE_C99_STDINT_H@\n\n/* <sys/types.h> defines some of the stdint.h types as well, on glibc,\n   IRIX 6.5, and OpenBSD 3.8 (via <machine/types.h>).\n   AIX 5.2 <sys/types.h> isn't needed and causes troubles.\n   Mac OS X 10.4.6 <sys/types.h> includes <stdint.h> (which is us), but\n   relies on the system <stdint.h> definitions, so include\n   <sys/types.h> after @NEXT_STDINT_H@.  */\n# if @HAVE_SYS_TYPES_H@ && ! defined _AIX\n#  include <sys/types.h>\n# endif\n\n# if @HAVE_INTTYPES_H@\n  /* In OpenBSD 3.8, <inttypes.h> includes <machine/types.h>, which defines\n     int{8,16,32,64}_t, uint{8,16,32,64}_t and __BIT_TYPES_DEFINED__.\n     <inttypes.h> also defines intptr_t and uintptr_t.  */\n#  include <inttypes.h>\n# elif @HAVE_SYS_INTTYPES_H@\n  /* Solaris 7 <sys/inttypes.h> has the types except the *_fast*_t types, and\n     the macros except for *_FAST*_*, INTPTR_MIN, PTRDIFF_MIN, PTRDIFF_MAX.  */\n#  include <sys/inttypes.h>\n# endif\n\n# if @HAVE_SYS_BITYPES_H@ && ! defined __BIT_TYPES_DEFINED__\n  /* Linux libc4 >= 4.6.7 and libc5 have a <sys/bitypes.h> that defines\n     int{8,16,32,64}_t and __BIT_TYPES_DEFINED__.  In libc5 >= 5.2.2 it is\n     included by <sys/types.h>.  */\n#  include <sys/bitypes.h>\n# endif\n\n# undef _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H\n\n/* Minimum and maximum values for an integer type under the usual assumption.\n   Return an unspecified value if BITS == 0, adding a check to pacify\n   picky compilers.  */\n\n# define _STDINT_MIN(signed, bits, zero) \\\n    ((signed) ? ~ _STDINT_MAX (signed, bits, zero) : (zero))\n\n# define _STDINT_MAX(signed, bits, zero) \\\n    (((((zero) + 1) << ((bits) ? (bits) - 1 - (signed) : 0)) - 1) * 2 + 1)\n\n#if !GNULIB_defined_stdint_types\n\n/* 7.18.1.1. Exact-width integer types */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits.  */\n\n# undef int8_t\n# undef uint8_t\ntypedef signed char gl_int8_t;\ntypedef unsigned char gl_uint8_t;\n# define int8_t gl_int8_t\n# define uint8_t gl_uint8_t\n\n# undef int16_t\n# undef uint16_t\ntypedef short int gl_int16_t;\ntypedef unsigned short int gl_uint16_t;\n# define int16_t gl_int16_t\n# define uint16_t gl_uint16_t\n\n# undef int32_t\n# undef uint32_t\ntypedef int gl_int32_t;\ntypedef unsigned int gl_uint32_t;\n# define int32_t gl_int32_t\n# define uint32_t gl_uint32_t\n\n/* If the system defines INT64_MAX, assume int64_t works.  That way,\n   if the underlying platform defines int64_t to be a 64-bit long long\n   int, the code below won't mistakenly define it to be a 64-bit long\n   int, which would mess up C++ name mangling.  We must use #ifdef\n   rather than #if, to avoid an error with HP-UX 10.20 cc.  */\n\n# ifdef INT64_MAX\n#  define GL_INT64_T\n# else\n/* Do not undefine int64_t if gnulib is not being used with 64-bit\n   types, since otherwise it breaks platforms like Tandem/NSK.  */\n#  if LONG_MAX >> 31 >> 31 == 1\n#   undef int64_t\ntypedef long int gl_int64_t;\n#   define int64_t gl_int64_t\n#   define GL_INT64_T\n#  elif defined _MSC_VER\n#   undef int64_t\ntypedef __int64 gl_int64_t;\n#   define int64_t gl_int64_t\n#   define GL_INT64_T\n#  elif @HAVE_LONG_LONG_INT@\n#   undef int64_t\ntypedef long long int gl_int64_t;\n#   define int64_t gl_int64_t\n#   define GL_INT64_T\n#  endif\n# endif\n\n# ifdef UINT64_MAX\n#  define GL_UINT64_T\n# else\n#  if ULONG_MAX >> 31 >> 31 >> 1 == 1\n#   undef uint64_t\ntypedef unsigned long int gl_uint64_t;\n#   define uint64_t gl_uint64_t\n#   define GL_UINT64_T\n#  elif defined _MSC_VER\n#   undef uint64_t\ntypedef unsigned __int64 gl_uint64_t;\n#   define uint64_t gl_uint64_t\n#   define GL_UINT64_T\n#  elif @HAVE_UNSIGNED_LONG_LONG_INT@\n#   undef uint64_t\ntypedef unsigned long long int gl_uint64_t;\n#   define uint64_t gl_uint64_t\n#   define GL_UINT64_T\n#  endif\n# endif\n\n/* Avoid collision with Solaris 2.5.1 <pthread.h> etc.  */\n# define _UINT8_T\n# define _UINT32_T\n# define _UINT64_T\n\n\n/* 7.18.1.2. Minimum-width integer types */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types\n   are the same as the corresponding N_t types.  */\n\n# undef int_least8_t\n# undef uint_least8_t\n# undef int_least16_t\n# undef uint_least16_t\n# undef int_least32_t\n# undef uint_least32_t\n# undef int_least64_t\n# undef uint_least64_t\n# define int_least8_t int8_t\n# define uint_least8_t uint8_t\n# define int_least16_t int16_t\n# define uint_least16_t uint16_t\n# define int_least32_t int32_t\n# define uint_least32_t uint32_t\n# ifdef GL_INT64_T\n#  define int_least64_t int64_t\n# endif\n# ifdef GL_UINT64_T\n#  define uint_least64_t uint64_t\n# endif\n\n/* 7.18.1.3. Fastest minimum-width integer types */\n\n/* Note: Other <stdint.h> substitutes may define these types differently.\n   It is not recommended to use these types in public header files. */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types\n   are taken from the same list of types.  The following code normally\n   uses types consistent with glibc, as that lessens the chance of\n   incompatibility with older GNU hosts.  */\n\n# undef int_fast8_t\n# undef uint_fast8_t\n# undef int_fast16_t\n# undef uint_fast16_t\n# undef int_fast32_t\n# undef uint_fast32_t\n# undef int_fast64_t\n# undef uint_fast64_t\ntypedef signed char gl_int_fast8_t;\ntypedef unsigned char gl_uint_fast8_t;\n\n# ifdef __sun\n/* Define types compatible with SunOS 5.10, so that code compiled under\n   earlier SunOS versions works with code compiled under SunOS 5.10.  */\ntypedef int gl_int_fast32_t;\ntypedef unsigned int gl_uint_fast32_t;\n# else\ntypedef long int gl_int_fast32_t;\ntypedef unsigned long int gl_uint_fast32_t;\n# endif\ntypedef gl_int_fast32_t gl_int_fast16_t;\ntypedef gl_uint_fast32_t gl_uint_fast16_t;\n\n# define int_fast8_t gl_int_fast8_t\n# define uint_fast8_t gl_uint_fast8_t\n# define int_fast16_t gl_int_fast16_t\n# define uint_fast16_t gl_uint_fast16_t\n# define int_fast32_t gl_int_fast32_t\n# define uint_fast32_t gl_uint_fast32_t\n# ifdef GL_INT64_T\n#  define int_fast64_t int64_t\n# endif\n# ifdef GL_UINT64_T\n#  define uint_fast64_t uint64_t\n# endif\n\n/* 7.18.1.4. Integer types capable of holding object pointers */\n\n/* kLIBC's stdint.h defines _INTPTR_T_DECLARED and needs its own\n   definitions of intptr_t and uintptr_t (which use int and unsigned)\n   to avoid clashes with declarations of system functions like sbrk.  */\n# ifndef _INTPTR_T_DECLARED\n# undef intptr_t\n# undef uintptr_t\ntypedef long int gl_intptr_t;\ntypedef unsigned long int gl_uintptr_t;\n# define intptr_t gl_intptr_t\n# define uintptr_t gl_uintptr_t\n# endif\n\n/* 7.18.1.5. Greatest-width integer types */\n\n/* Note: These types are compiler dependent. It may be unwise to use them in\n   public header files. */\n\n/* If the system defines INTMAX_MAX, assume that intmax_t works, and\n   similarly for UINTMAX_MAX and uintmax_t.  This avoids problems with\n   assuming one type where another is used by the system.  */\n\n# ifndef INTMAX_MAX\n#  undef INTMAX_C\n#  undef intmax_t\n#  if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1\ntypedef long long int gl_intmax_t;\n#   define intmax_t gl_intmax_t\n#  elif defined GL_INT64_T\n#   define intmax_t int64_t\n#  else\ntypedef long int gl_intmax_t;\n#   define intmax_t gl_intmax_t\n#  endif\n# endif\n\n# ifndef UINTMAX_MAX\n#  undef UINTMAX_C\n#  undef uintmax_t\n#  if @HAVE_UNSIGNED_LONG_LONG_INT@ && ULONG_MAX >> 31 == 1\ntypedef unsigned long long int gl_uintmax_t;\n#   define uintmax_t gl_uintmax_t\n#  elif defined GL_UINT64_T\n#   define uintmax_t uint64_t\n#  else\ntypedef unsigned long int gl_uintmax_t;\n#   define uintmax_t gl_uintmax_t\n#  endif\n# endif\n\n/* Verify that intmax_t and uintmax_t have the same size.  Too much code\n   breaks if this is not the case.  If this check fails, the reason is likely\n   to be found in the autoconf macros.  */\ntypedef int _verify_intmax_size[sizeof (intmax_t) == sizeof (uintmax_t)\n                                ? 1 : -1];\n\n# define GNULIB_defined_stdint_types 1\n# endif /* !GNULIB_defined_stdint_types */\n\n/* 7.18.2. Limits of specified-width integer types */\n\n/* 7.18.2.1. Limits of exact-width integer types */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits.  */\n\n# undef INT8_MIN\n# undef INT8_MAX\n# undef UINT8_MAX\n# define INT8_MIN  (~ INT8_MAX)\n# define INT8_MAX  127\n# define UINT8_MAX  255\n\n# undef INT16_MIN\n# undef INT16_MAX\n# undef UINT16_MAX\n# define INT16_MIN  (~ INT16_MAX)\n# define INT16_MAX  32767\n# define UINT16_MAX  65535\n\n# undef INT32_MIN\n# undef INT32_MAX\n# undef UINT32_MAX\n# define INT32_MIN  (~ INT32_MAX)\n# define INT32_MAX  2147483647\n# define UINT32_MAX  4294967295U\n\n# if defined GL_INT64_T && ! defined INT64_MAX\n/* Prefer (- INTMAX_C (1) << 63) over (~ INT64_MAX) because SunPRO C 5.0\n   evaluates the latter incorrectly in preprocessor expressions.  */\n#  define INT64_MIN  (- INTMAX_C (1) << 63)\n#  define INT64_MAX  INTMAX_C (9223372036854775807)\n# endif\n\n# if defined GL_UINT64_T && ! defined UINT64_MAX\n#  define UINT64_MAX  UINTMAX_C (18446744073709551615)\n# endif\n\n/* 7.18.2.2. Limits of minimum-width integer types */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types\n   are the same as the corresponding N_t types.  */\n\n# undef INT_LEAST8_MIN\n# undef INT_LEAST8_MAX\n# undef UINT_LEAST8_MAX\n# define INT_LEAST8_MIN  INT8_MIN\n# define INT_LEAST8_MAX  INT8_MAX\n# define UINT_LEAST8_MAX  UINT8_MAX\n\n# undef INT_LEAST16_MIN\n# undef INT_LEAST16_MAX\n# undef UINT_LEAST16_MAX\n# define INT_LEAST16_MIN  INT16_MIN\n# define INT_LEAST16_MAX  INT16_MAX\n# define UINT_LEAST16_MAX  UINT16_MAX\n\n# undef INT_LEAST32_MIN\n# undef INT_LEAST32_MAX\n# undef UINT_LEAST32_MAX\n# define INT_LEAST32_MIN  INT32_MIN\n# define INT_LEAST32_MAX  INT32_MAX\n# define UINT_LEAST32_MAX  UINT32_MAX\n\n# undef INT_LEAST64_MIN\n# undef INT_LEAST64_MAX\n# ifdef GL_INT64_T\n#  define INT_LEAST64_MIN  INT64_MIN\n#  define INT_LEAST64_MAX  INT64_MAX\n# endif\n\n# undef UINT_LEAST64_MAX\n# ifdef GL_UINT64_T\n#  define UINT_LEAST64_MAX  UINT64_MAX\n# endif\n\n/* 7.18.2.3. Limits of fastest minimum-width integer types */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types\n   are taken from the same list of types.  */\n\n# undef INT_FAST8_MIN\n# undef INT_FAST8_MAX\n# undef UINT_FAST8_MAX\n# define INT_FAST8_MIN  SCHAR_MIN\n# define INT_FAST8_MAX  SCHAR_MAX\n# define UINT_FAST8_MAX  UCHAR_MAX\n\n# undef INT_FAST16_MIN\n# undef INT_FAST16_MAX\n# undef UINT_FAST16_MAX\n# define INT_FAST16_MIN  INT_FAST32_MIN\n# define INT_FAST16_MAX  INT_FAST32_MAX\n# define UINT_FAST16_MAX  UINT_FAST32_MAX\n\n# undef INT_FAST32_MIN\n# undef INT_FAST32_MAX\n# undef UINT_FAST32_MAX\n# ifdef __sun\n#  define INT_FAST32_MIN  INT_MIN\n#  define INT_FAST32_MAX  INT_MAX\n#  define UINT_FAST32_MAX  UINT_MAX\n# else\n#  define INT_FAST32_MIN  LONG_MIN\n#  define INT_FAST32_MAX  LONG_MAX\n#  define UINT_FAST32_MAX  ULONG_MAX\n# endif\n\n# undef INT_FAST64_MIN\n# undef INT_FAST64_MAX\n# ifdef GL_INT64_T\n#  define INT_FAST64_MIN  INT64_MIN\n#  define INT_FAST64_MAX  INT64_MAX\n# endif\n\n# undef UINT_FAST64_MAX\n# ifdef GL_UINT64_T\n#  define UINT_FAST64_MAX  UINT64_MAX\n# endif\n\n/* 7.18.2.4. Limits of integer types capable of holding object pointers */\n\n# undef INTPTR_MIN\n# undef INTPTR_MAX\n# undef UINTPTR_MAX\n# define INTPTR_MIN  LONG_MIN\n# define INTPTR_MAX  LONG_MAX\n# define UINTPTR_MAX  ULONG_MAX\n\n/* 7.18.2.5. Limits of greatest-width integer types */\n\n# ifndef INTMAX_MAX\n#  undef INTMAX_MIN\n#  ifdef INT64_MAX\n#   define INTMAX_MIN  INT64_MIN\n#   define INTMAX_MAX  INT64_MAX\n#  else\n#   define INTMAX_MIN  INT32_MIN\n#   define INTMAX_MAX  INT32_MAX\n#  endif\n# endif\n\n# ifndef UINTMAX_MAX\n#  ifdef UINT64_MAX\n#   define UINTMAX_MAX  UINT64_MAX\n#  else\n#   define UINTMAX_MAX  UINT32_MAX\n#  endif\n# endif\n\n/* 7.18.3. Limits of other integer types */\n\n/* ptrdiff_t limits */\n# undef PTRDIFF_MIN\n# undef PTRDIFF_MAX\n# if @APPLE_UNIVERSAL_BUILD@\n#  ifdef _LP64\n#   define PTRDIFF_MIN  _STDINT_MIN (1, 64, 0l)\n#   define PTRDIFF_MAX  _STDINT_MAX (1, 64, 0l)\n#  else\n#   define PTRDIFF_MIN  _STDINT_MIN (1, 32, 0)\n#   define PTRDIFF_MAX  _STDINT_MAX (1, 32, 0)\n#  endif\n# else\n#  define PTRDIFF_MIN  \\\n    _STDINT_MIN (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@)\n#  define PTRDIFF_MAX  \\\n    _STDINT_MAX (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@)\n# endif\n\n/* sig_atomic_t limits */\n# undef SIG_ATOMIC_MIN\n# undef SIG_ATOMIC_MAX\n# define SIG_ATOMIC_MIN  \\\n   _STDINT_MIN (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \\\n                0@SIG_ATOMIC_T_SUFFIX@)\n# define SIG_ATOMIC_MAX  \\\n   _STDINT_MAX (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \\\n                0@SIG_ATOMIC_T_SUFFIX@)\n\n\n/* size_t limit */\n# undef SIZE_MAX\n# if @APPLE_UNIVERSAL_BUILD@\n#  ifdef _LP64\n#   define SIZE_MAX  _STDINT_MAX (0, 64, 0ul)\n#  else\n#   define SIZE_MAX  _STDINT_MAX (0, 32, 0ul)\n#  endif\n# else\n#  define SIZE_MAX  _STDINT_MAX (0, @BITSIZEOF_SIZE_T@, 0@SIZE_T_SUFFIX@)\n# endif\n\n/* wchar_t limits */\n/* Get WCHAR_MIN, WCHAR_MAX.\n   This include is not on the top, above, because on OSF/1 4.0 we have a\n   sequence of nested includes\n   <wchar.h> -> <stdio.h> -> <getopt.h> -> <stdlib.h>, and the latter includes\n   <stdint.h> and assumes its types are already defined.  */\n# if @HAVE_WCHAR_H@ && ! (defined WCHAR_MIN && defined WCHAR_MAX)\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n#  include <stddef.h>\n#  include <stdio.h>\n#  include <time.h>\n#  define _GL_JUST_INCLUDE_SYSTEM_WCHAR_H\n#  include <wchar.h>\n#  undef _GL_JUST_INCLUDE_SYSTEM_WCHAR_H\n# endif\n# undef WCHAR_MIN\n# undef WCHAR_MAX\n# define WCHAR_MIN  \\\n   _STDINT_MIN (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@)\n# define WCHAR_MAX  \\\n   _STDINT_MAX (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@)\n\n/* wint_t limits */\n# undef WINT_MIN\n# undef WINT_MAX\n# define WINT_MIN  \\\n   _STDINT_MIN (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@)\n# define WINT_MAX  \\\n   _STDINT_MAX (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@)\n\n/* 7.18.4. Macros for integer constants */\n\n/* 7.18.4.1. Macros for minimum-width integer constants */\n/* According to ISO C 99 Technical Corrigendum 1 */\n\n/* Here we assume a standard architecture where the hardware integer\n   types have 8, 16, 32, optionally 64 bits, and int is 32 bits.  */\n\n# undef INT8_C\n# undef UINT8_C\n# define INT8_C(x) x\n# define UINT8_C(x) x\n\n# undef INT16_C\n# undef UINT16_C\n# define INT16_C(x) x\n# define UINT16_C(x) x\n\n# undef INT32_C\n# undef UINT32_C\n# define INT32_C(x) x\n# define UINT32_C(x) x ## U\n\n# undef INT64_C\n# undef UINT64_C\n# if LONG_MAX >> 31 >> 31 == 1\n#  define INT64_C(x) x##L\n# elif defined _MSC_VER\n#  define INT64_C(x) x##i64\n# elif @HAVE_LONG_LONG_INT@\n#  define INT64_C(x) x##LL\n# endif\n# if ULONG_MAX >> 31 >> 31 >> 1 == 1\n#  define UINT64_C(x) x##UL\n# elif defined _MSC_VER\n#  define UINT64_C(x) x##ui64\n# elif @HAVE_UNSIGNED_LONG_LONG_INT@\n#  define UINT64_C(x) x##ULL\n# endif\n\n/* 7.18.4.2. Macros for greatest-width integer constants */\n\n# ifndef INTMAX_C\n#  if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1\n#   define INTMAX_C(x)   x##LL\n#  elif defined GL_INT64_T\n#   define INTMAX_C(x)   INT64_C(x)\n#  else\n#   define INTMAX_C(x)   x##L\n#  endif\n# endif\n\n# ifndef UINTMAX_C\n#  if @HAVE_UNSIGNED_LONG_LONG_INT@ && ULONG_MAX >> 31 == 1\n#   define UINTMAX_C(x)  x##ULL\n#  elif defined GL_UINT64_T\n#   define UINTMAX_C(x)  UINT64_C(x)\n#  else\n#   define UINTMAX_C(x)  x##UL\n#  endif\n# endif\n\n#endif /* !@HAVE_C99_STDINT_H@ */\n\n/* Macros specified by ISO/IEC TS 18661-1:2014.  */\n\n#if (!defined UINTMAX_WIDTH \\\n     && (defined _GNU_SOURCE || defined __STDC_WANT_IEC_60559_BFP_EXT__))\n# ifdef INT8_MAX\n#  define INT8_WIDTH _GL_INTEGER_WIDTH (INT8_MIN, INT8_MAX)\n# endif\n# ifdef UINT8_MAX\n#  define UINT8_WIDTH _GL_INTEGER_WIDTH (0, UINT8_MAX)\n# endif\n# ifdef INT16_MAX\n#  define INT16_WIDTH _GL_INTEGER_WIDTH (INT16_MIN, INT16_MAX)\n# endif\n# ifdef UINT16_MAX\n#  define UINT16_WIDTH _GL_INTEGER_WIDTH (0, UINT16_MAX)\n# endif\n# ifdef INT32_MAX\n#  define INT32_WIDTH _GL_INTEGER_WIDTH (INT32_MIN, INT32_MAX)\n# endif\n# ifdef UINT32_MAX\n#  define UINT32_WIDTH _GL_INTEGER_WIDTH (0, UINT32_MAX)\n# endif\n# ifdef INT64_MAX\n#  define INT64_WIDTH _GL_INTEGER_WIDTH (INT64_MIN, INT64_MAX)\n# endif\n# ifdef UINT64_MAX\n#  define UINT64_WIDTH _GL_INTEGER_WIDTH (0, UINT64_MAX)\n# endif\n# define INT_LEAST8_WIDTH _GL_INTEGER_WIDTH (INT_LEAST8_MIN, INT_LEAST8_MAX)\n# define UINT_LEAST8_WIDTH _GL_INTEGER_WIDTH (0, UINT_LEAST8_MAX)\n# define INT_LEAST16_WIDTH _GL_INTEGER_WIDTH (INT_LEAST16_MIN, INT_LEAST16_MAX)\n# define UINT_LEAST16_WIDTH _GL_INTEGER_WIDTH (0, UINT_LEAST16_MAX)\n# define INT_LEAST32_WIDTH _GL_INTEGER_WIDTH (INT_LEAST32_MIN, INT_LEAST32_MAX)\n# define UINT_LEAST32_WIDTH _GL_INTEGER_WIDTH (0, UINT_LEAST32_MAX)\n# define INT_LEAST64_WIDTH _GL_INTEGER_WIDTH (INT_LEAST64_MIN, INT_LEAST64_MAX)\n# define UINT_LEAST64_WIDTH _GL_INTEGER_WIDTH (0, UINT_LEAST64_MAX)\n# define INT_FAST8_WIDTH _GL_INTEGER_WIDTH (INT_FAST8_MIN, INT_FAST8_MAX)\n# define UINT_FAST8_WIDTH _GL_INTEGER_WIDTH (0, UINT_FAST8_MAX)\n# define INT_FAST16_WIDTH _GL_INTEGER_WIDTH (INT_FAST16_MIN, INT_FAST16_MAX)\n# define UINT_FAST16_WIDTH _GL_INTEGER_WIDTH (0, UINT_FAST16_MAX)\n# define INT_FAST32_WIDTH _GL_INTEGER_WIDTH (INT_FAST32_MIN, INT_FAST32_MAX)\n# define UINT_FAST32_WIDTH _GL_INTEGER_WIDTH (0, UINT_FAST32_MAX)\n# define INT_FAST64_WIDTH _GL_INTEGER_WIDTH (INT_FAST64_MIN, INT_FAST64_MAX)\n# define UINT_FAST64_WIDTH _GL_INTEGER_WIDTH (0, UINT_FAST64_MAX)\n# define INTPTR_WIDTH _GL_INTEGER_WIDTH (INTPTR_MIN, INTPTR_MAX)\n# define UINTPTR_WIDTH _GL_INTEGER_WIDTH (0, UINTPTR_MAX)\n# define INTMAX_WIDTH _GL_INTEGER_WIDTH (INTMAX_MIN, INTMAX_MAX)\n# define UINTMAX_WIDTH _GL_INTEGER_WIDTH (0, UINTMAX_MAX)\n# define PTRDIFF_WIDTH _GL_INTEGER_WIDTH (PTRDIFF_MIN, PTRDIFF_MAX)\n# define SIZE_WIDTH _GL_INTEGER_WIDTH (0, SIZE_MAX)\n# define WCHAR_WIDTH _GL_INTEGER_WIDTH (WCHAR_MIN, WCHAR_MAX)\n# ifdef WINT_MAX\n#  define WINT_WIDTH _GL_INTEGER_WIDTH (WINT_MIN, WINT_MAX)\n# endif\n# ifdef SIG_ATOMIC_MAX\n#  define SIG_ATOMIC_WIDTH _GL_INTEGER_WIDTH (SIG_ATOMIC_MIN, SIG_ATOMIC_MAX)\n# endif\n#endif /* !WINT_WIDTH && (_GNU_SOURCE || __STDC_WANT_IEC_60559_BFP_EXT__) */\n\n#endif /* _@GUARD_PREFIX@_STDINT_H */\n#endif /* !(defined __ANDROID__ && ...) */\n#endif /* !defined _@GUARD_PREFIX@_STDINT_H && !defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/stdio-write.c",
    "content": "/* POSIX compatible FILE stream write function.\n   Copyright (C) 2008-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2008.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include <stdio.h>\n\n/* Replace these functions only if module 'nonblocking' or module 'sigpipe' is\n   requested.  */\n#if GNULIB_NONBLOCKING || GNULIB_SIGPIPE\n\n/* On native Windows platforms, SIGPIPE does not exist.  When write() is\n   called on a pipe with no readers, WriteFile() fails with error\n   GetLastError() = ERROR_NO_DATA, and write() in consequence fails with\n   error EINVAL.  This write() function is at the basis of the function\n   which flushes the buffer of a FILE stream.  */\n\n# if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n\n#  include <errno.h>\n#  include <signal.h>\n#  include <io.h>\n\n#  define WIN32_LEAN_AND_MEAN  /* avoid including junk */\n#  include <windows.h>\n\n#  include \"msvc-nothrow.h\"\n\n#  if GNULIB_NONBLOCKING\n#   define CLEAR_ERRNO \\\n      errno = 0;\n#   define HANDLE_ENOSPC \\\n          if (errno == ENOSPC && ferror (stream))                             \\\n            {                                                                 \\\n              int fd = fileno (stream);                                       \\\n              if (fd >= 0)                                                    \\\n                {                                                             \\\n                  HANDLE h = (HANDLE) _get_osfhandle (fd);                    \\\n                  if (GetFileType (h) == FILE_TYPE_PIPE)                      \\\n                    {                                                         \\\n                      /* h is a pipe or socket.  */                           \\\n                      DWORD state;                                            \\\n                      if (GetNamedPipeHandleState (h, &state, NULL, NULL,     \\\n                                                   NULL, NULL, 0)             \\\n                          && (state & PIPE_NOWAIT) != 0)                      \\\n                        /* h is a pipe in non-blocking mode.                  \\\n                           Change errno from ENOSPC to EAGAIN.  */            \\\n                        errno = EAGAIN;                                       \\\n                    }                                                         \\\n                }                                                             \\\n            }                                                                 \\\n          else\n#  else\n#   define CLEAR_ERRNO\n#   define HANDLE_ENOSPC\n#  endif\n\n#  if GNULIB_SIGPIPE\n#   define CLEAR_LastError \\\n      SetLastError (0);\n#   define HANDLE_ERROR_NO_DATA \\\n          if (GetLastError () == ERROR_NO_DATA && ferror (stream))            \\\n            {                                                                 \\\n              int fd = fileno (stream);                                       \\\n              if (fd >= 0                                                     \\\n                  && GetFileType ((HANDLE) _get_osfhandle (fd))               \\\n                     == FILE_TYPE_PIPE)                                       \\\n                {                                                             \\\n                  /* Try to raise signal SIGPIPE.  */                         \\\n                  raise (SIGPIPE);                                            \\\n                  /* If it is currently blocked or ignored, change errno from \\\n                     EINVAL to EPIPE.  */                                     \\\n                  errno = EPIPE;                                              \\\n                }                                                             \\\n            }                                                                 \\\n          else\n#  else\n#   define CLEAR_LastError\n#   define HANDLE_ERROR_NO_DATA\n#  endif\n\n#  define CALL_WITH_SIGPIPE_EMULATION(RETTYPE, EXPRESSION, FAILED) \\\n  if (ferror (stream))                                                        \\\n    return (EXPRESSION);                                                      \\\n  else                                                                        \\\n    {                                                                         \\\n      RETTYPE ret;                                                            \\\n      CLEAR_ERRNO                                                             \\\n      CLEAR_LastError                                                         \\\n      ret = (EXPRESSION);                                                     \\\n      if (FAILED)                                                             \\\n        {                                                                     \\\n          HANDLE_ENOSPC                                                       \\\n          HANDLE_ERROR_NO_DATA                                                \\\n          ;                                                                   \\\n        }                                                                     \\\n      return ret;                                                             \\\n    }\n\n#  if !REPLACE_PRINTF_POSIX /* avoid collision with printf.c */\nint\nprintf (const char *format, ...)\n{\n  int retval;\n  va_list args;\n\n  va_start (args, format);\n  retval = vfprintf (stdout, format, args);\n  va_end (args);\n\n  return retval;\n}\n#  endif\n\n#  if !REPLACE_FPRINTF_POSIX /* avoid collision with fprintf.c */\nint\nfprintf (FILE *stream, const char *format, ...)\n{\n  int retval;\n  va_list args;\n\n  va_start (args, format);\n  retval = vfprintf (stream, format, args);\n  va_end (args);\n\n  return retval;\n}\n#  endif\n\n#  if !REPLACE_VPRINTF_POSIX /* avoid collision with vprintf.c */\nint\nvprintf (const char *format, va_list args)\n{\n  return vfprintf (stdout, format, args);\n}\n#  endif\n\n#  if !REPLACE_VFPRINTF_POSIX /* avoid collision with vfprintf.c */\nint\nvfprintf (FILE *stream, const char *format, va_list args)\n#undef vfprintf\n{\n  CALL_WITH_SIGPIPE_EMULATION (int, vfprintf (stream, format, args), ret == EOF)\n}\n#  endif\n\nint\nputchar (int c)\n{\n  return fputc (c, stdout);\n}\n\nint\nfputc (int c, FILE *stream)\n#undef fputc\n{\n  CALL_WITH_SIGPIPE_EMULATION (int, fputc (c, stream), ret == EOF)\n}\n\nint\nfputs (const char *string, FILE *stream)\n#undef fputs\n{\n  CALL_WITH_SIGPIPE_EMULATION (int, fputs (string, stream), ret == EOF)\n}\n\nint\nputs (const char *string)\n#undef puts\n{\n  FILE *stream = stdout;\n  CALL_WITH_SIGPIPE_EMULATION (int, puts (string), ret == EOF)\n}\n\nsize_t\nfwrite (const void *ptr, size_t s, size_t n, FILE *stream)\n#undef fwrite\n{\n  CALL_WITH_SIGPIPE_EMULATION (size_t, fwrite (ptr, s, n, stream), ret < n)\n}\n\n# endif\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/stdio.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* A GNU-like <stdio.h>.\n\n   Copyright (C) 2004, 2007-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n#if defined __need_FILE || defined __need___FILE || defined _GL_ALREADY_INCLUDING_STDIO_H\n/* Special invocation convention:\n   - Inside glibc header files.\n   - On OSF/1 5.1 we have a sequence of nested includes\n     <stdio.h> -> <getopt.h> -> <ctype.h> -> <sys/localedef.h> ->\n     <sys/lc_core.h> -> <nl_types.h> -> <mesg.h> -> <stdio.h>.\n     In this situation, the functions are not yet declared, therefore we cannot\n     provide the C++ aliases.  */\n\n#include_next <stdio.h>\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _GL_STDIO_H\n\n#define _GL_ALREADY_INCLUDING_STDIO_H\n\n/* The include_next requires a split double-inclusion guard.  */\n#include_next <stdio.h>\n\n#undef _GL_ALREADY_INCLUDING_STDIO_H\n\n#ifndef _GL_STDIO_H\n#define _GL_STDIO_H\n\n/* Get va_list.  Needed on many systems, including glibc 2.8.  */\n#include <stdarg.h>\n\n#include <stddef.h>\n\n/* Get off_t and ssize_t.  Needed on many systems, including glibc 2.8\n   and eglibc 2.11.2.\n   May also define off_t to a 64-bit type on native Windows.  */\n#include <sys/types.h>\n\n/* The __attribute__ feature is available in gcc versions 2.5 and later.\n   The __-protected variants of the attributes 'format' and 'printf' are\n   accepted by gcc versions 2.6.4 (effectively 2.7) and later.\n   We enable _GL_ATTRIBUTE_FORMAT only if these are supported too, because\n   gnulib and libintl do '#define printf __printf__' when they override\n   the 'printf' function.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)\n# define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))\n#else\n# define _GL_ATTRIBUTE_FORMAT(spec) /* empty */\n#endif\n\n/* _GL_ATTRIBUTE_FORMAT_PRINTF\n   indicates to GCC that the function takes a format string and arguments,\n   where the format string directives are the ones standardized by ISO C99\n   and POSIX.  */\n#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)\n# define _GL_ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \\\n   _GL_ATTRIBUTE_FORMAT ((__gnu_printf__, formatstring_parameter, first_argument))\n#else\n# define _GL_ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \\\n   _GL_ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument))\n#endif\n\n/* _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM is like _GL_ATTRIBUTE_FORMAT_PRINTF,\n   except that it indicates to GCC that the supported format string directives\n   are the ones of the system printf(), rather than the ones standardized by\n   ISO C99 and POSIX.  */\n#if GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU\n# define _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM(formatstring_parameter, first_argument) \\\n  _GL_ATTRIBUTE_FORMAT_PRINTF (formatstring_parameter, first_argument)\n#else\n# define _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM(formatstring_parameter, first_argument) \\\n  _GL_ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument))\n#endif\n\n/* _GL_ATTRIBUTE_FORMAT_SCANF\n   indicates to GCC that the function takes a format string and arguments,\n   where the format string directives are the ones standardized by ISO C99\n   and POSIX.  */\n#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)\n# define _GL_ATTRIBUTE_FORMAT_SCANF(formatstring_parameter, first_argument) \\\n   _GL_ATTRIBUTE_FORMAT ((__gnu_scanf__, formatstring_parameter, first_argument))\n#else\n# define _GL_ATTRIBUTE_FORMAT_SCANF(formatstring_parameter, first_argument) \\\n   _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument))\n#endif\n\n/* _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM is like _GL_ATTRIBUTE_FORMAT_SCANF,\n   except that it indicates to GCC that the supported format string directives\n   are the ones of the system scanf(), rather than the ones standardized by\n   ISO C99 and POSIX.  */\n#define _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM(formatstring_parameter, first_argument) \\\n  _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument))\n\n/* Solaris 10 declares renameat in <unistd.h>, not in <stdio.h>.  */\n/* But in any case avoid namespace pollution on glibc systems.  */\n#if (0 || defined GNULIB_POSIXCHECK) && defined __sun \\\n    && ! defined __GLIBC__\n# include <unistd.h>\n#endif\n\n/* MSVC declares 'perror' in <stdlib.h>, not in <stdio.h>.  We must include\n   it before we  #define perror rpl_perror.  */\n/* But in any case avoid namespace pollution on glibc systems.  */\n#if (0 || defined GNULIB_POSIXCHECK) \\\n    && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) \\\n    && ! defined __GLIBC__\n# include <stdlib.h>\n#endif\n\n/* MSVC declares 'remove' in <io.h>, not in <stdio.h>.  We must include\n   it before we  #define remove rpl_remove.  */\n/* MSVC declares 'rename' in <io.h>, not in <stdio.h>.  We must include\n   it before we  #define rename rpl_rename.  */\n/* But in any case avoid namespace pollution on glibc systems.  */\n#if (0 || 0 || defined GNULIB_POSIXCHECK) \\\n    && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) \\\n    && ! defined __GLIBC__\n# include <io.h>\n#endif\n\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n#ifndef _GL_CXXDEFS_H\n#define _GL_CXXDEFS_H\n\n/* Begin/end the GNULIB_NAMESPACE namespace.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {\n# define _GL_END_NAMESPACE }\n#else\n# define _GL_BEGIN_NAMESPACE\n# define _GL_END_NAMESPACE\n#endif\n\n/* The three most frequent use cases of these macros are:\n\n   * For providing a substitute for a function that is missing on some\n     platforms, but is declared and works fine on the platforms on which\n     it exists:\n\n       #if @GNULIB_FOO@\n       # if !@HAVE_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       # endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on all platforms,\n     but is broken/insufficient and needs to be replaced on some platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on some platforms\n     but is broken/insufficient and needs to be replaced on some of them and\n     is additionally either missing or undeclared on some other platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       #  endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n*/\n\n/* _GL_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#if defined __cplusplus\n# define _GL_EXTERN_C extern \"C\"\n#else\n# define _GL_EXTERN_C extern\n#endif\n\n/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);\n   declares a replacement function, named rpl_func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \\\n  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)\n#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype rpl_func parameters_and_attributes\n\n/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);\n   declares the system function, named func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype func parameters_and_attributes\n\n/* _GL_CXXALIAS_RPL (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.\n   Example:\n     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n\n   Wrapping rpl_func in an object with an inline conversion operator\n   avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#define _GL_CXXALIAS_RPL(func,rettype,parameters) \\\n  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::rpl_func;                                  \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);\n   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);\n   except that the C function rpl_func may have a slightly different\n   declaration.  A cast is used to silence the \"invalid conversion\" error\n   that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                     \\\n    {                                                              \\\n      static const struct _gl_ ## func ## _wrapper                 \\\n      {                                                            \\\n        typedef rettype (*type) parameters;                        \\\n                                                                   \\\n        inline operator type () const                              \\\n        {                                                          \\\n          return reinterpret_cast<type>(::rpl_func);               \\\n        }                                                          \\\n      } func = {};                                                 \\\n    }                                                              \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to the system provided function func, if GNULIB_NAMESPACE\n   is defined.\n   Example:\n     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n\n   Wrapping func in an object with an inline conversion operator\n   avoids a reference to func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS(func,rettype,parameters)            \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::func;                                      \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function func may have a slightly different declaration.\n   A cast is used to silence the \"invalid conversion\" error that would\n   otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                          \\\n    {                                                   \\\n      static const struct _gl_ ## func ## _wrapper      \\\n      {                                                 \\\n        typedef rettype (*type) parameters;             \\\n                                                        \\\n        inline operator type () const                   \\\n        {                                               \\\n          return reinterpret_cast<type>(::func);        \\\n        }                                               \\\n      } func = {};                                      \\\n    }                                                   \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function is picked among a set of overloaded functions,\n   namely the one with rettype2 and parameters2.  Two consecutive casts\n   are used to silence the \"cannot find a match\" and \"invalid conversion\"\n   errors that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n  /* The outer cast must be a reinterpret_cast.\n     The inner cast: When the function is defined as a set of overloaded\n     functions, it works as a static_cast<>, choosing the designated variant.\n     When the function is defined as a single variant, it works as a\n     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    namespace GNULIB_NAMESPACE                                                \\\n    {                                                                         \\\n      static const struct _gl_ ## func ## _wrapper                            \\\n      {                                                                       \\\n        typedef rettype (*type) parameters;                                   \\\n                                                                              \\\n        inline operator type () const                                         \\\n        {                                                                     \\\n          return reinterpret_cast<type>((rettype2 (*) parameters2)(::func));  \\\n        }                                                                     \\\n      } func = {};                                                            \\\n    }                                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN (func);\n   causes a warning to be emitted when ::func is used but not when\n   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded\n   variants.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN(func) \\\n   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN_1(func,namespace) \\\n   _GL_CXXALIASWARN_2 (func, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n    _GL_WARN_ON_USE (func, \\\n                     \"The symbol ::\" #func \" refers to the system function. \" \\\n                     \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN(func) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);\n   causes a warning to be emitted when the given overloaded variant of ::func\n   is used but not when GNULIB_NAMESPACE::func is used.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \\\n                        GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \\\n   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \\\n                         \"The symbol ::\" #func \" refers to the system function. \" \\\n                         \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n#endif /* _GL_CXXDEFS_H */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools\n   that the values passed as arguments n, ..., m must be non-NULL pointers.\n   n = 1 stands for the first argument, n = 2 for the second argument etc.  */\n#ifndef _GL_ARG_NONNULL\n# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3\n#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))\n# else\n#  define _GL_ARG_NONNULL(params)\n# endif\n#endif\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n#ifndef _GL_WARN_ON_USE\n\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n/* A compiler attribute is available in gcc versions 4.3.0 and later.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function __attribute__ ((__warning__ (message)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE(function, message) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, \"string\")\n   is like _GL_WARN_ON_USE (function, \"string\"), except that the function is\n   declared with the given prototype, consisting of return type, parameters,\n   and attributes.\n   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does\n   not work in this case.  */\n#ifndef _GL_WARN_ON_USE_CXX\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes \\\n     __attribute__ ((__warning__ (msg)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#ifndef _GL_WARN_EXTERN_C\n# if defined __cplusplus\n#  define _GL_WARN_EXTERN_C extern \"C\"\n# else\n#  define _GL_WARN_EXTERN_C extern\n# endif\n#endif\n\n/* Macros for stringification.  */\n#define _GL_STDIO_STRINGIZE(token) #token\n#define _GL_STDIO_MACROEXPAND_AND_STRINGIZE(token) _GL_STDIO_STRINGIZE(token)\n\n/* When also using extern inline, suppress the use of static inline in\n   standard headers of problematic Apple configurations, as Libc at\n   least through Libc-825.26 (2013-04-09) mishandles it; see, e.g.,\n   <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>.\n   Perhaps Apple will fix this some day.  */\n#if (defined _GL_EXTERN_INLINE_IN_USE && defined __APPLE__ \\\n     && defined __GNUC__ && defined __STDC__)\n# undef putc_unlocked\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define dprintf rpl_dprintf\n#  endif\n_GL_FUNCDECL_RPL (dprintf, int, (int fd, const char *format, ...)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                                _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (dprintf, int, (int fd, const char *format, ...));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (dprintf, int, (int fd, const char *format, ...)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                                _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (dprintf, int, (int fd, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (dprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef dprintf\n# if HAVE_RAW_DECL_DPRINTF\n_GL_WARN_ON_USE (dprintf, \"dprintf is unportable - \"\n                 \"use gnulib module dprintf for portability\");\n# endif\n#endif\n\n#if 0\n/* Close STREAM and its underlying file descriptor.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define fclose rpl_fclose\n#  endif\n_GL_FUNCDECL_RPL (fclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (fclose, int, (FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fclose, int, (FILE *stream));\n# endif\n_GL_CXXALIASWARN (fclose);\n#elif defined GNULIB_POSIXCHECK\n# undef fclose\n/* Assume fclose is always declared.  */\n_GL_WARN_ON_USE (fclose, \"fclose is not always POSIX compliant - \"\n                 \"use gnulib module fclose for portable POSIX compliance\");\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fdopen\n#   define fdopen rpl_fdopen\n#  endif\n_GL_FUNCDECL_RPL (fdopen, FILE *, (int fd, const char *mode)\n                                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (fdopen, FILE *, (int fd, const char *mode));\n# else\n_GL_CXXALIAS_SYS (fdopen, FILE *, (int fd, const char *mode));\n# endif\n_GL_CXXALIASWARN (fdopen);\n#elif defined GNULIB_POSIXCHECK\n# undef fdopen\n/* Assume fdopen is always declared.  */\n_GL_WARN_ON_USE (fdopen, \"fdopen on native Windows platforms is not POSIX compliant - \"\n                 \"use gnulib module fdopen for portability\");\n#endif\n\n#if 0\n/* Flush all pending data on STREAM according to POSIX rules.  Both\n   output and seekable input streams are supported.\n   Note! LOSS OF DATA can occur if fflush is applied on an input stream\n   that is _not_seekable_ or on an update stream that is _not_seekable_\n   and in which the most recent operation was input.  Seekability can\n   be tested with lseek(fileno(fp),0,SEEK_CUR).  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define fflush rpl_fflush\n#  endif\n_GL_FUNCDECL_RPL (fflush, int, (FILE *gl_stream));\n_GL_CXXALIAS_RPL (fflush, int, (FILE *gl_stream));\n# else\n_GL_CXXALIAS_SYS (fflush, int, (FILE *gl_stream));\n# endif\n_GL_CXXALIASWARN (fflush);\n#elif defined GNULIB_POSIXCHECK\n# undef fflush\n/* Assume fflush is always declared.  */\n_GL_WARN_ON_USE (fflush, \"fflush is not always POSIX compliant - \"\n                 \"use gnulib module fflush for portable POSIX compliance\");\n#endif\n\n#if 1\n# if 0 && 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fgetc\n#   define fgetc rpl_fgetc\n#  endif\n_GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (fgetc, int, (FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fgetc, int, (FILE *stream));\n# endif\n_GL_CXXALIASWARN (fgetc);\n#endif\n\n#if 1\n# if 0 && 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fgets\n#   define fgets rpl_fgets\n#  endif\n_GL_FUNCDECL_RPL (fgets, char *, (char *s, int n, FILE *stream)\n                                 _GL_ARG_NONNULL ((1, 3)));\n_GL_CXXALIAS_RPL (fgets, char *, (char *s, int n, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fgets, char *, (char *s, int n, FILE *stream));\n# endif\n_GL_CXXALIASWARN (fgets);\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fopen\n#   define fopen rpl_fopen\n#  endif\n_GL_FUNCDECL_RPL (fopen, FILE *, (const char *filename, const char *mode)\n                                 _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (fopen, FILE *, (const char *filename, const char *mode));\n# else\n_GL_CXXALIAS_SYS (fopen, FILE *, (const char *filename, const char *mode));\n# endif\n_GL_CXXALIASWARN (fopen);\n#elif defined GNULIB_POSIXCHECK\n# undef fopen\n/* Assume fopen is always declared.  */\n_GL_WARN_ON_USE (fopen, \"fopen on native Windows platforms is not POSIX compliant - \"\n                 \"use gnulib module fopen for portability\");\n#endif\n\n#if 0 || 1\n# if (0 && 0) \\\n     || (1 && 0 && (0 || 1))\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define fprintf rpl_fprintf\n#  endif\n#  define GNULIB_overrides_fprintf 1\n#  if 0 || 0\n_GL_FUNCDECL_RPL (fprintf, int, (FILE *fp, const char *format, ...)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                                _GL_ARG_NONNULL ((1, 2)));\n#  else\n_GL_FUNCDECL_RPL (fprintf, int, (FILE *fp, const char *format, ...)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (2, 3)\n                                _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_RPL (fprintf, int, (FILE *fp, const char *format, ...));\n# else\n_GL_CXXALIAS_SYS (fprintf, int, (FILE *fp, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (fprintf);\n#endif\n#if !0 && defined GNULIB_POSIXCHECK\n# if !GNULIB_overrides_fprintf\n#  undef fprintf\n# endif\n/* Assume fprintf is always declared.  */\n_GL_WARN_ON_USE (fprintf, \"fprintf is not always POSIX compliant - \"\n                 \"use gnulib module fprintf-posix for portable \"\n                 \"POSIX compliance\");\n#endif\n\n#if 0\n/* Discard all pending buffered I/O data on STREAM.\n   STREAM must not be wide-character oriented.\n   When discarding pending output, the file position is set back to where it\n   was before the write calls.  When discarding pending input, the file\n   position is advanced to match the end of the previously read input.\n   Return 0 if successful.  Upon error, return -1 and set errno.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define fpurge rpl_fpurge\n#  endif\n_GL_FUNCDECL_RPL (fpurge, int, (FILE *gl_stream) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (fpurge, int, (FILE *gl_stream));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (fpurge, int, (FILE *gl_stream) _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (fpurge, int, (FILE *gl_stream));\n# endif\n_GL_CXXALIASWARN (fpurge);\n#elif defined GNULIB_POSIXCHECK\n# undef fpurge\n# if HAVE_RAW_DECL_FPURGE\n_GL_WARN_ON_USE (fpurge, \"fpurge is not always present - \"\n                 \"use gnulib module fpurge for portability\");\n# endif\n#endif\n\n#if 1\n# if 0 && (0 || 1)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fputc\n#   define fputc rpl_fputc\n#  endif\n_GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (fputc, int, (int c, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fputc, int, (int c, FILE *stream));\n# endif\n_GL_CXXALIASWARN (fputc);\n#endif\n\n#if 1\n# if 0 && (0 || 1)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fputs\n#   define fputs rpl_fputs\n#  endif\n_GL_FUNCDECL_RPL (fputs, int, (const char *string, FILE *stream)\n                              _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (fputs, int, (const char *string, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fputs, int, (const char *string, FILE *stream));\n# endif\n_GL_CXXALIASWARN (fputs);\n#endif\n\n#if 1\n# if 0 && 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fread\n#   define fread rpl_fread\n#  endif\n_GL_FUNCDECL_RPL (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream)\n                                 _GL_ARG_NONNULL ((4)));\n_GL_CXXALIAS_RPL (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream));\n# endif\n_GL_CXXALIASWARN (fread);\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef freopen\n#   define freopen rpl_freopen\n#  endif\n_GL_FUNCDECL_RPL (freopen, FILE *,\n                  (const char *filename, const char *mode, FILE *stream)\n                  _GL_ARG_NONNULL ((2, 3)));\n_GL_CXXALIAS_RPL (freopen, FILE *,\n                  (const char *filename, const char *mode, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (freopen, FILE *,\n                  (const char *filename, const char *mode, FILE *stream));\n# endif\n_GL_CXXALIASWARN (freopen);\n#elif defined GNULIB_POSIXCHECK\n# undef freopen\n/* Assume freopen is always declared.  */\n_GL_WARN_ON_USE (freopen,\n                 \"freopen on native Windows platforms is not POSIX compliant - \"\n                 \"use gnulib module freopen for portability\");\n#endif\n\n#if 1\n# if 0 && 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fscanf\n#   define fscanf rpl_fscanf\n#  endif\n_GL_FUNCDECL_RPL (fscanf, int, (FILE *stream, const char *format, ...)\n                               _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (2, 3)\n                               _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (fscanf, int, (FILE *stream, const char *format, ...));\n# else\n_GL_CXXALIAS_SYS (fscanf, int, (FILE *stream, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (fscanf);\n#endif\n\n\n/* Set up the following warnings, based on which modules are in use.\n   GNU Coding Standards discourage the use of fseek, since it imposes\n   an arbitrary limitation on some 32-bit hosts.  Remember that the\n   fseek module depends on the fseeko module, so we only have three\n   cases to consider:\n\n   1. The developer is not using either module.  Issue a warning under\n   GNULIB_POSIXCHECK for both functions, to remind them that both\n   functions have bugs on some systems.  _GL_NO_LARGE_FILES has no\n   impact on this warning.\n\n   2. The developer is using both modules.  They may be unaware of the\n   arbitrary limitations of fseek, so issue a warning under\n   GNULIB_POSIXCHECK.  On the other hand, they may be using both\n   modules intentionally, so the developer can define\n   _GL_NO_LARGE_FILES in the compilation units where the use of fseek\n   is safe, to silence the warning.\n\n   3. The developer is using the fseeko module, but not fseek.  Gnulib\n   guarantees that fseek will still work around platform bugs in that\n   case, but we presume that the developer is aware of the pitfalls of\n   fseek and was trying to avoid it, so issue a warning even when\n   GNULIB_POSIXCHECK is undefined.  Again, _GL_NO_LARGE_FILES can be\n   defined to silence the warning in particular compilation units.\n   In C++ compilations with GNULIB_NAMESPACE, in order to avoid that\n   fseek gets defined as a macro, it is recommended that the developer\n   uses the fseek module, even if he is not calling the fseek function.\n\n   Most gnulib clients that perform stream operations should fall into\n   category 3.  */\n\n#if 0\n# if defined GNULIB_POSIXCHECK && !defined _GL_NO_LARGE_FILES\n#  define _GL_FSEEK_WARN /* Category 2, above.  */\n#  undef fseek\n# endif\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fseek\n#   define fseek rpl_fseek\n#  endif\n_GL_FUNCDECL_RPL (fseek, int, (FILE *fp, long offset, int whence)\n                              _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (fseek, int, (FILE *fp, long offset, int whence));\n# else\n_GL_CXXALIAS_SYS (fseek, int, (FILE *fp, long offset, int whence));\n# endif\n_GL_CXXALIASWARN (fseek);\n#endif\n\n#if 0\n# if !0 && !defined _GL_NO_LARGE_FILES\n#  define _GL_FSEEK_WARN /* Category 3, above.  */\n#  undef fseek\n# endif\n# if 0\n/* Provide an fseeko function that is aware of a preceding fflush(), and which\n   detects pipes.  */\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fseeko\n#   define fseeko rpl_fseeko\n#  endif\n_GL_FUNCDECL_RPL (fseeko, int, (FILE *fp, off_t offset, int whence)\n                               _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (fseeko, int, (FILE *fp, off_t offset, int whence));\n# else\n#  if ! 1\n_GL_FUNCDECL_SYS (fseeko, int, (FILE *fp, off_t offset, int whence)\n                               _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (fseeko, int, (FILE *fp, off_t offset, int whence));\n# endif\n_GL_CXXALIASWARN (fseeko);\n#elif defined GNULIB_POSIXCHECK\n# define _GL_FSEEK_WARN /* Category 1, above.  */\n# undef fseek\n# undef fseeko\n# if HAVE_RAW_DECL_FSEEKO\n_GL_WARN_ON_USE (fseeko, \"fseeko is unportable - \"\n                 \"use gnulib module fseeko for portability\");\n# endif\n#endif\n\n#ifdef _GL_FSEEK_WARN\n# undef _GL_FSEEK_WARN\n/* Here, either fseek is undefined (but C89 guarantees that it is\n   declared), or it is defined as rpl_fseek (declared above).  */\n_GL_WARN_ON_USE (fseek, \"fseek cannot handle files larger than 4 GB \"\n                 \"on 32-bit platforms - \"\n                 \"use fseeko function for handling of large files\");\n#endif\n\n\n/* ftell, ftello.  See the comments on fseek/fseeko.  */\n\n#if 0\n# if defined GNULIB_POSIXCHECK && !defined _GL_NO_LARGE_FILES\n#  define _GL_FTELL_WARN /* Category 2, above.  */\n#  undef ftell\n# endif\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ftell\n#   define ftell rpl_ftell\n#  endif\n_GL_FUNCDECL_RPL (ftell, long, (FILE *fp) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (ftell, long, (FILE *fp));\n# else\n_GL_CXXALIAS_SYS (ftell, long, (FILE *fp));\n# endif\n_GL_CXXALIASWARN (ftell);\n#endif\n\n#if 0\n# if !0 && !defined _GL_NO_LARGE_FILES\n#  define _GL_FTELL_WARN /* Category 3, above.  */\n#  undef ftell\n# endif\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ftello\n#   define ftello rpl_ftello\n#  endif\n_GL_FUNCDECL_RPL (ftello, off_t, (FILE *fp) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (ftello, off_t, (FILE *fp));\n# else\n#  if ! 1\n_GL_FUNCDECL_SYS (ftello, off_t, (FILE *fp) _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (ftello, off_t, (FILE *fp));\n# endif\n_GL_CXXALIASWARN (ftello);\n#elif defined GNULIB_POSIXCHECK\n# define _GL_FTELL_WARN /* Category 1, above.  */\n# undef ftell\n# undef ftello\n# if HAVE_RAW_DECL_FTELLO\n_GL_WARN_ON_USE (ftello, \"ftello is unportable - \"\n                 \"use gnulib module ftello for portability\");\n# endif\n#endif\n\n#ifdef _GL_FTELL_WARN\n# undef _GL_FTELL_WARN\n/* Here, either ftell is undefined (but C89 guarantees that it is\n   declared), or it is defined as rpl_ftell (declared above).  */\n_GL_WARN_ON_USE (ftell, \"ftell cannot handle files larger than 4 GB \"\n                 \"on 32-bit platforms - \"\n                 \"use ftello function for handling of large files\");\n#endif\n\n\n#if 1\n# if 0 && (0 || 1)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fwrite\n#   define fwrite rpl_fwrite\n#  endif\n_GL_FUNCDECL_RPL (fwrite, size_t,\n                  (const void *ptr, size_t s, size_t n, FILE *stream)\n                  _GL_ARG_NONNULL ((1, 4)));\n_GL_CXXALIAS_RPL (fwrite, size_t,\n                  (const void *ptr, size_t s, size_t n, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fwrite, size_t,\n                  (const void *ptr, size_t s, size_t n, FILE *stream));\n\n/* Work around bug 11959 when fortifying glibc 2.4 through 2.15\n   <http://sources.redhat.com/bugzilla/show_bug.cgi?id=11959>,\n   which sometimes causes an unwanted diagnostic for fwrite calls.\n   This affects only function declaration attributes under certain\n   versions of gcc and clang, and is not needed for C++.  */\n#  if (0 < __USE_FORTIFY_LEVEL                                          \\\n       && __GLIBC__ == 2 && 4 <= __GLIBC_MINOR__ && __GLIBC_MINOR__ <= 15 \\\n       && 3 < __GNUC__ + (4 <= __GNUC_MINOR__)                          \\\n       && !defined __cplusplus)\n#   undef fwrite\n#   undef fwrite_unlocked\nextern size_t __REDIRECT (rpl_fwrite,\n                          (const void *__restrict, size_t, size_t,\n                           FILE *__restrict),\n                          fwrite);\nextern size_t __REDIRECT (rpl_fwrite_unlocked,\n                          (const void *__restrict, size_t, size_t,\n                           FILE *__restrict),\n                          fwrite_unlocked);\n#   define fwrite rpl_fwrite\n#   define fwrite_unlocked rpl_fwrite_unlocked\n#  endif\n# endif\n_GL_CXXALIASWARN (fwrite);\n#endif\n\n#if 1\n# if 0 && 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getc\n#   define getc rpl_fgetc\n#  endif\n_GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL_1 (getc, rpl_fgetc, int, (FILE *stream));\n# else\n_GL_CXXALIAS_SYS (getc, int, (FILE *stream));\n# endif\n_GL_CXXALIASWARN (getc);\n#endif\n\n#if 1\n# if 0 && 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getchar\n#   define getchar rpl_getchar\n#  endif\n_GL_FUNCDECL_RPL (getchar, int, (void));\n_GL_CXXALIAS_RPL (getchar, int, (void));\n# else\n_GL_CXXALIAS_SYS (getchar, int, (void));\n# endif\n_GL_CXXALIASWARN (getchar);\n#endif\n\n#if 0\n/* Read input, up to (and including) the next occurrence of DELIMITER, from\n   STREAM, store it in *LINEPTR (and NUL-terminate it).\n   *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE\n   bytes of space.  It is realloc'd as necessary.\n   Return the number of bytes read and stored at *LINEPTR (not including the\n   NUL terminator), or -1 on error or EOF.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getdelim\n#   define getdelim rpl_getdelim\n#  endif\n_GL_FUNCDECL_RPL (getdelim, ssize_t,\n                  (char **lineptr, size_t *linesize, int delimiter,\n                   FILE *stream)\n                  _GL_ARG_NONNULL ((1, 2, 4)));\n_GL_CXXALIAS_RPL (getdelim, ssize_t,\n                  (char **lineptr, size_t *linesize, int delimiter,\n                   FILE *stream));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (getdelim, ssize_t,\n                  (char **lineptr, size_t *linesize, int delimiter,\n                   FILE *stream)\n                  _GL_ARG_NONNULL ((1, 2, 4)));\n#  endif\n_GL_CXXALIAS_SYS (getdelim, ssize_t,\n                  (char **lineptr, size_t *linesize, int delimiter,\n                   FILE *stream));\n# endif\n_GL_CXXALIASWARN (getdelim);\n#elif defined GNULIB_POSIXCHECK\n# undef getdelim\n# if HAVE_RAW_DECL_GETDELIM\n_GL_WARN_ON_USE (getdelim, \"getdelim is unportable - \"\n                 \"use gnulib module getdelim for portability\");\n# endif\n#endif\n\n#if 0\n/* Read a line, up to (and including) the next newline, from STREAM, store it\n   in *LINEPTR (and NUL-terminate it).\n   *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE\n   bytes of space.  It is realloc'd as necessary.\n   Return the number of bytes read and stored at *LINEPTR (not including the\n   NUL terminator), or -1 on error or EOF.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getline\n#   define getline rpl_getline\n#  endif\n_GL_FUNCDECL_RPL (getline, ssize_t,\n                  (char **lineptr, size_t *linesize, FILE *stream)\n                  _GL_ARG_NONNULL ((1, 2, 3)));\n_GL_CXXALIAS_RPL (getline, ssize_t,\n                  (char **lineptr, size_t *linesize, FILE *stream));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (getline, ssize_t,\n                  (char **lineptr, size_t *linesize, FILE *stream)\n                  _GL_ARG_NONNULL ((1, 2, 3)));\n#  endif\n_GL_CXXALIAS_SYS (getline, ssize_t,\n                  (char **lineptr, size_t *linesize, FILE *stream));\n# endif\n# if 1\n_GL_CXXALIASWARN (getline);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef getline\n# if HAVE_RAW_DECL_GETLINE\n_GL_WARN_ON_USE (getline, \"getline is unportable - \"\n                 \"use gnulib module getline for portability\");\n# endif\n#endif\n\n/* It is very rare that the developer ever has full control of stdin,\n   so any use of gets warrants an unconditional warning; besides, C11\n   removed it.  */\n#undef gets\n#if HAVE_RAW_DECL_GETS && !defined __cplusplus\n_GL_WARN_ON_USE (gets, \"gets is a security hole - use fgets instead\");\n#endif\n\n#if 0 || 0\nstruct obstack;\n/* Grow an obstack with formatted output.  Return the number of\n   bytes added to OBS.  No trailing nul byte is added, and the\n   object should be closed with obstack_finish before use.  Upon\n   memory allocation error, call obstack_alloc_failed_handler.  Upon\n   other error, return -1.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define obstack_printf rpl_obstack_printf\n#  endif\n_GL_FUNCDECL_RPL (obstack_printf, int,\n                  (struct obstack *obs, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (obstack_printf, int,\n                  (struct obstack *obs, const char *format, ...));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (obstack_printf, int,\n                  (struct obstack *obs, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (obstack_printf, int,\n                  (struct obstack *obs, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (obstack_printf);\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define obstack_vprintf rpl_obstack_vprintf\n#  endif\n_GL_FUNCDECL_RPL (obstack_vprintf, int,\n                  (struct obstack *obs, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (obstack_vprintf, int,\n                  (struct obstack *obs, const char *format, va_list args));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (obstack_vprintf, int,\n                  (struct obstack *obs, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (obstack_vprintf, int,\n                  (struct obstack *obs, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (obstack_vprintf);\n#endif\n\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (pclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (pclose, int, (FILE *stream));\n_GL_CXXALIASWARN (pclose);\n#elif defined GNULIB_POSIXCHECK\n# undef pclose\n# if HAVE_RAW_DECL_PCLOSE\n_GL_WARN_ON_USE (pclose, \"pclose is unportable - \"\n                 \"use gnulib module pclose for more portability\");\n# endif\n#endif\n\n#if 0\n/* Print a message to standard error, describing the value of ERRNO,\n   (if STRING is not NULL and not empty) prefixed with STRING and \": \",\n   and terminated with a newline.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define perror rpl_perror\n#  endif\n_GL_FUNCDECL_RPL (perror, void, (const char *string));\n_GL_CXXALIAS_RPL (perror, void, (const char *string));\n# else\n_GL_CXXALIAS_SYS (perror, void, (const char *string));\n# endif\n_GL_CXXALIASWARN (perror);\n#elif defined GNULIB_POSIXCHECK\n# undef perror\n/* Assume perror is always declared.  */\n_GL_WARN_ON_USE (perror, \"perror is not always POSIX compliant - \"\n                 \"use gnulib module perror for portability\");\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef popen\n#   define popen rpl_popen\n#  endif\n_GL_FUNCDECL_RPL (popen, FILE *, (const char *cmd, const char *mode)\n                                 _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (popen, FILE *, (const char *cmd, const char *mode));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (popen, FILE *, (const char *cmd, const char *mode)\n                                 _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (popen, FILE *, (const char *cmd, const char *mode));\n# endif\n_GL_CXXALIASWARN (popen);\n#elif defined GNULIB_POSIXCHECK\n# undef popen\n# if HAVE_RAW_DECL_POPEN\n_GL_WARN_ON_USE (popen, \"popen is buggy on some platforms - \"\n                 \"use gnulib module popen or pipe for more portability\");\n# endif\n#endif\n\n#if 0 || 1\n# if (0 && 0) \\\n     || (1 && 0 && (0 || 1))\n#  if defined __GNUC__\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n/* Don't break __attribute__((format(printf,M,N))).  */\n#    define printf __printf__\n#   endif\n#   if 0 || 0\n_GL_FUNCDECL_RPL_1 (__printf__, int,\n                    (const char *format, ...)\n                    __asm__ (\"_\"\n                             _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_printf))\n                    _GL_ATTRIBUTE_FORMAT_PRINTF (1, 2)\n                    _GL_ARG_NONNULL ((1)));\n#   else\n_GL_FUNCDECL_RPL_1 (__printf__, int,\n                    (const char *format, ...)\n                    __asm__ (\"_\"\n                             _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_printf))\n                    _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (1, 2)\n                    _GL_ARG_NONNULL ((1)));\n#   endif\n_GL_CXXALIAS_RPL_1 (printf, __printf__, int, (const char *format, ...));\n#  else\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    define printf rpl_printf\n#   endif\n_GL_FUNCDECL_RPL (printf, int,\n                  (const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (1, 2)\n                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (printf, int, (const char *format, ...));\n#  endif\n#  define GNULIB_overrides_printf 1\n# else\n_GL_CXXALIAS_SYS (printf, int, (const char *format, ...));\n# endif\n_GL_CXXALIASWARN (printf);\n#endif\n#if !0 && defined GNULIB_POSIXCHECK\n# if !GNULIB_overrides_printf\n#  undef printf\n# endif\n/* Assume printf is always declared.  */\n_GL_WARN_ON_USE (printf, \"printf is not always POSIX compliant - \"\n                 \"use gnulib module printf-posix for portable \"\n                 \"POSIX compliance\");\n#endif\n\n#if 1\n# if 0 && (0 || 1)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef putc\n#   define putc rpl_fputc\n#  endif\n_GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL_1 (putc, rpl_fputc, int, (int c, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (putc, int, (int c, FILE *stream));\n# endif\n_GL_CXXALIASWARN (putc);\n#endif\n\n#if 1\n# if 0 && (0 || 1)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef putchar\n#   define putchar rpl_putchar\n#  endif\n_GL_FUNCDECL_RPL (putchar, int, (int c));\n_GL_CXXALIAS_RPL (putchar, int, (int c));\n# else\n_GL_CXXALIAS_SYS (putchar, int, (int c));\n# endif\n_GL_CXXALIASWARN (putchar);\n#endif\n\n#if 1\n# if 0 && (0 || 1)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef puts\n#   define puts rpl_puts\n#  endif\n_GL_FUNCDECL_RPL (puts, int, (const char *string) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (puts, int, (const char *string));\n# else\n_GL_CXXALIAS_SYS (puts, int, (const char *string));\n# endif\n_GL_CXXALIASWARN (puts);\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef remove\n#   define remove rpl_remove\n#  endif\n_GL_FUNCDECL_RPL (remove, int, (const char *name) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (remove, int, (const char *name));\n# else\n_GL_CXXALIAS_SYS (remove, int, (const char *name));\n# endif\n_GL_CXXALIASWARN (remove);\n#elif defined GNULIB_POSIXCHECK\n# undef remove\n/* Assume remove is always declared.  */\n_GL_WARN_ON_USE (remove, \"remove cannot handle directories on some platforms - \"\n                 \"use gnulib module remove for more portability\");\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef rename\n#   define rename rpl_rename\n#  endif\n_GL_FUNCDECL_RPL (rename, int,\n                  (const char *old_filename, const char *new_filename)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (rename, int,\n                  (const char *old_filename, const char *new_filename));\n# else\n_GL_CXXALIAS_SYS (rename, int,\n                  (const char *old_filename, const char *new_filename));\n# endif\n_GL_CXXALIASWARN (rename);\n#elif defined GNULIB_POSIXCHECK\n# undef rename\n/* Assume rename is always declared.  */\n_GL_WARN_ON_USE (rename, \"rename is buggy on some platforms - \"\n                 \"use gnulib module rename for more portability\");\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef renameat\n#   define renameat rpl_renameat\n#  endif\n_GL_FUNCDECL_RPL (renameat, int,\n                  (int fd1, char const *file1, int fd2, char const *file2)\n                  _GL_ARG_NONNULL ((2, 4)));\n_GL_CXXALIAS_RPL (renameat, int,\n                  (int fd1, char const *file1, int fd2, char const *file2));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (renameat, int,\n                  (int fd1, char const *file1, int fd2, char const *file2)\n                  _GL_ARG_NONNULL ((2, 4)));\n#  endif\n_GL_CXXALIAS_SYS (renameat, int,\n                  (int fd1, char const *file1, int fd2, char const *file2));\n# endif\n_GL_CXXALIASWARN (renameat);\n#elif defined GNULIB_POSIXCHECK\n# undef renameat\n# if HAVE_RAW_DECL_RENAMEAT\n_GL_WARN_ON_USE (renameat, \"renameat is not portable - \"\n                 \"use gnulib module renameat for portability\");\n# endif\n#endif\n\n#if 1\n# if 0 && 0\n#  if defined __GNUC__\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef scanf\n/* Don't break __attribute__((format(scanf,M,N))).  */\n#    define scanf __scanf__\n#   endif\n_GL_FUNCDECL_RPL_1 (__scanf__, int,\n                    (const char *format, ...)\n                    __asm__ (\"_\"\n                             _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_scanf))\n                    _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 2)\n                    _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL_1 (scanf, __scanf__, int, (const char *format, ...));\n#  else\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef scanf\n#    define scanf rpl_scanf\n#   endif\n_GL_FUNCDECL_RPL (scanf, int, (const char *format, ...)\n                              _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 2)\n                              _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (scanf, int, (const char *format, ...));\n#  endif\n# else\n_GL_CXXALIAS_SYS (scanf, int, (const char *format, ...));\n# endif\n_GL_CXXALIASWARN (scanf);\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define snprintf rpl_snprintf\n#  endif\n_GL_FUNCDECL_RPL (snprintf, int,\n                  (char *str, size_t size, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (3, 4)\n                  _GL_ARG_NONNULL ((3)));\n_GL_CXXALIAS_RPL (snprintf, int,\n                  (char *str, size_t size, const char *format, ...));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (snprintf, int,\n                  (char *str, size_t size, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (3, 4)\n                  _GL_ARG_NONNULL ((3)));\n#  endif\n_GL_CXXALIAS_SYS (snprintf, int,\n                  (char *str, size_t size, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (snprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef snprintf\n# if HAVE_RAW_DECL_SNPRINTF\n_GL_WARN_ON_USE (snprintf, \"snprintf is unportable - \"\n                 \"use gnulib module snprintf for portability\");\n# endif\n#endif\n\n/* Some people would argue that all sprintf uses should be warned about\n   (for example, OpenBSD issues a link warning for it),\n   since it can cause security holes due to buffer overruns.\n   However, we believe that sprintf can be used safely, and is more\n   efficient than snprintf in those safe cases; and as proof of our\n   belief, we use sprintf in several gnulib modules.  So this header\n   intentionally avoids adding a warning to sprintf except when\n   GNULIB_POSIXCHECK is defined.  */\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define sprintf rpl_sprintf\n#  endif\n_GL_FUNCDECL_RPL (sprintf, int, (char *str, const char *format, ...)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                                _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (sprintf, int, (char *str, const char *format, ...));\n# else\n_GL_CXXALIAS_SYS (sprintf, int, (char *str, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (sprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef sprintf\n/* Assume sprintf is always declared.  */\n_GL_WARN_ON_USE (sprintf, \"sprintf is not always POSIX compliant - \"\n                 \"use gnulib module sprintf-posix for portable \"\n                 \"POSIX compliance\");\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define tmpfile rpl_tmpfile\n#  endif\n_GL_FUNCDECL_RPL (tmpfile, FILE *, (void));\n_GL_CXXALIAS_RPL (tmpfile, FILE *, (void));\n# else\n_GL_CXXALIAS_SYS (tmpfile, FILE *, (void));\n# endif\n_GL_CXXALIASWARN (tmpfile);\n#elif defined GNULIB_POSIXCHECK\n# undef tmpfile\n# if HAVE_RAW_DECL_TMPFILE\n_GL_WARN_ON_USE (tmpfile, \"tmpfile is not usable on mingw - \"\n                 \"use gnulib module tmpfile for portability\");\n# endif\n#endif\n\n#if 0\n/* Write formatted output to a string dynamically allocated with malloc().\n   If the memory allocation succeeds, store the address of the string in\n   *RESULT and return the number of resulting bytes, excluding the trailing\n   NUL.  Upon memory allocation error, or some other error, return -1.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define asprintf rpl_asprintf\n#  endif\n_GL_FUNCDECL_RPL (asprintf, int,\n                  (char **result, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (asprintf, int,\n                  (char **result, const char *format, ...));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (asprintf, int,\n                  (char **result, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (asprintf, int,\n                  (char **result, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (asprintf);\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vasprintf rpl_vasprintf\n#  endif\n_GL_FUNCDECL_RPL (vasprintf, int,\n                  (char **result, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (vasprintf, int,\n                  (char **result, const char *format, va_list args));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (vasprintf, int,\n                  (char **result, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (vasprintf, int,\n                  (char **result, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vasprintf);\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vdprintf rpl_vdprintf\n#  endif\n_GL_FUNCDECL_RPL (vdprintf, int, (int fd, const char *format, va_list args)\n                                 _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                                 _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (vdprintf, int, (int fd, const char *format, va_list args));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (vdprintf, int, (int fd, const char *format, va_list args)\n                                 _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                                 _GL_ARG_NONNULL ((2)));\n#  endif\n/* Need to cast, because on Solaris, the third parameter will likely be\n                                                    __va_list args.  */\n_GL_CXXALIAS_SYS_CAST (vdprintf, int,\n                       (int fd, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vdprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef vdprintf\n# if HAVE_RAW_DECL_VDPRINTF\n_GL_WARN_ON_USE (vdprintf, \"vdprintf is unportable - \"\n                 \"use gnulib module vdprintf for portability\");\n# endif\n#endif\n\n#if 0 || 1\n# if (0 && 0) \\\n     || (1 && 0 && (0 || 1))\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vfprintf rpl_vfprintf\n#  endif\n#  define GNULIB_overrides_vfprintf 1\n#  if 0\n_GL_FUNCDECL_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args)\n                                 _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                                 _GL_ARG_NONNULL ((1, 2)));\n#  else\n_GL_FUNCDECL_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args)\n                                 _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (2, 0)\n                                 _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args));\n# else\n/* Need to cast, because on Solaris, the third parameter is\n                                                      __va_list args\n   and GCC's fixincludes did not change this to __gnuc_va_list.  */\n_GL_CXXALIAS_SYS_CAST (vfprintf, int,\n                       (FILE *fp, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vfprintf);\n#endif\n#if !0 && defined GNULIB_POSIXCHECK\n# if !GNULIB_overrides_vfprintf\n#  undef vfprintf\n# endif\n/* Assume vfprintf is always declared.  */\n_GL_WARN_ON_USE (vfprintf, \"vfprintf is not always POSIX compliant - \"\n                 \"use gnulib module vfprintf-posix for portable \"\n                      \"POSIX compliance\");\n#endif\n\n#if 0\n# if 0 && 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef vfscanf\n#   define vfscanf rpl_vfscanf\n#  endif\n_GL_FUNCDECL_RPL (vfscanf, int,\n                  (FILE *stream, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (vfscanf, int,\n                  (FILE *stream, const char *format, va_list args));\n# else\n_GL_CXXALIAS_SYS (vfscanf, int,\n                  (FILE *stream, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vfscanf);\n#endif\n\n#if 0 || 1\n# if (0 && 0) \\\n     || (1 && 0 && (0 || 1))\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vprintf rpl_vprintf\n#  endif\n#  define GNULIB_overrides_vprintf 1\n#  if 0 || 0\n_GL_FUNCDECL_RPL (vprintf, int, (const char *format, va_list args)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF (1, 0)\n                                _GL_ARG_NONNULL ((1)));\n#  else\n_GL_FUNCDECL_RPL (vprintf, int, (const char *format, va_list args)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (1, 0)\n                                _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_RPL (vprintf, int, (const char *format, va_list args));\n# else\n/* Need to cast, because on Solaris, the second parameter is\n                                                          __va_list args\n   and GCC's fixincludes did not change this to __gnuc_va_list.  */\n_GL_CXXALIAS_SYS_CAST (vprintf, int, (const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vprintf);\n#endif\n#if !0 && defined GNULIB_POSIXCHECK\n# if !GNULIB_overrides_vprintf\n#  undef vprintf\n# endif\n/* Assume vprintf is always declared.  */\n_GL_WARN_ON_USE (vprintf, \"vprintf is not always POSIX compliant - \"\n                 \"use gnulib module vprintf-posix for portable \"\n                 \"POSIX compliance\");\n#endif\n\n#if 0\n# if 0 && 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef vscanf\n#   define vscanf rpl_vscanf\n#  endif\n_GL_FUNCDECL_RPL (vscanf, int, (const char *format, va_list args)\n                               _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 0)\n                               _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (vscanf, int, (const char *format, va_list args));\n# else\n_GL_CXXALIAS_SYS (vscanf, int, (const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vscanf);\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vsnprintf rpl_vsnprintf\n#  endif\n_GL_FUNCDECL_RPL (vsnprintf, int,\n                  (char *str, size_t size, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (3, 0)\n                  _GL_ARG_NONNULL ((3)));\n_GL_CXXALIAS_RPL (vsnprintf, int,\n                  (char *str, size_t size, const char *format, va_list args));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (vsnprintf, int,\n                  (char *str, size_t size, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (3, 0)\n                  _GL_ARG_NONNULL ((3)));\n#  endif\n_GL_CXXALIAS_SYS (vsnprintf, int,\n                  (char *str, size_t size, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vsnprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef vsnprintf\n# if HAVE_RAW_DECL_VSNPRINTF\n_GL_WARN_ON_USE (vsnprintf, \"vsnprintf is unportable - \"\n                 \"use gnulib module vsnprintf for portability\");\n# endif\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vsprintf rpl_vsprintf\n#  endif\n_GL_FUNCDECL_RPL (vsprintf, int,\n                  (char *str, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (vsprintf, int,\n                  (char *str, const char *format, va_list args));\n# else\n/* Need to cast, because on Solaris, the third parameter is\n                                                       __va_list args\n   and GCC's fixincludes did not change this to __gnuc_va_list.  */\n_GL_CXXALIAS_SYS_CAST (vsprintf, int,\n                       (char *str, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vsprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef vsprintf\n/* Assume vsprintf is always declared.  */\n_GL_WARN_ON_USE (vsprintf, \"vsprintf is not always POSIX compliant - \"\n                 \"use gnulib module vsprintf-posix for portable \"\n                      \"POSIX compliance\");\n#endif\n\n#endif /* _GL_STDIO_H */\n#endif /* _GL_STDIO_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/stdio.in.h",
    "content": "/* A GNU-like <stdio.h>.\n\n   Copyright (C) 2004, 2007-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n#if defined __need_FILE || defined __need___FILE || defined _GL_ALREADY_INCLUDING_STDIO_H\n/* Special invocation convention:\n   - Inside glibc header files.\n   - On OSF/1 5.1 we have a sequence of nested includes\n     <stdio.h> -> <getopt.h> -> <ctype.h> -> <sys/localedef.h> ->\n     <sys/lc_core.h> -> <nl_types.h> -> <mesg.h> -> <stdio.h>.\n     In this situation, the functions are not yet declared, therefore we cannot\n     provide the C++ aliases.  */\n\n#@INCLUDE_NEXT@ @NEXT_STDIO_H@\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _@GUARD_PREFIX@_STDIO_H\n\n#define _GL_ALREADY_INCLUDING_STDIO_H\n\n/* The include_next requires a split double-inclusion guard.  */\n#@INCLUDE_NEXT@ @NEXT_STDIO_H@\n\n#undef _GL_ALREADY_INCLUDING_STDIO_H\n\n#ifndef _@GUARD_PREFIX@_STDIO_H\n#define _@GUARD_PREFIX@_STDIO_H\n\n/* Get va_list.  Needed on many systems, including glibc 2.8.  */\n#include <stdarg.h>\n\n#include <stddef.h>\n\n/* Get off_t and ssize_t.  Needed on many systems, including glibc 2.8\n   and eglibc 2.11.2.\n   May also define off_t to a 64-bit type on native Windows.  */\n#include <sys/types.h>\n\n/* The __attribute__ feature is available in gcc versions 2.5 and later.\n   The __-protected variants of the attributes 'format' and 'printf' are\n   accepted by gcc versions 2.6.4 (effectively 2.7) and later.\n   We enable _GL_ATTRIBUTE_FORMAT only if these are supported too, because\n   gnulib and libintl do '#define printf __printf__' when they override\n   the 'printf' function.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)\n# define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))\n#else\n# define _GL_ATTRIBUTE_FORMAT(spec) /* empty */\n#endif\n\n/* _GL_ATTRIBUTE_FORMAT_PRINTF\n   indicates to GCC that the function takes a format string and arguments,\n   where the format string directives are the ones standardized by ISO C99\n   and POSIX.  */\n#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)\n# define _GL_ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \\\n   _GL_ATTRIBUTE_FORMAT ((__gnu_printf__, formatstring_parameter, first_argument))\n#else\n# define _GL_ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \\\n   _GL_ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument))\n#endif\n\n/* _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM is like _GL_ATTRIBUTE_FORMAT_PRINTF,\n   except that it indicates to GCC that the supported format string directives\n   are the ones of the system printf(), rather than the ones standardized by\n   ISO C99 and POSIX.  */\n#if GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU\n# define _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM(formatstring_parameter, first_argument) \\\n  _GL_ATTRIBUTE_FORMAT_PRINTF (formatstring_parameter, first_argument)\n#else\n# define _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM(formatstring_parameter, first_argument) \\\n  _GL_ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument))\n#endif\n\n/* _GL_ATTRIBUTE_FORMAT_SCANF\n   indicates to GCC that the function takes a format string and arguments,\n   where the format string directives are the ones standardized by ISO C99\n   and POSIX.  */\n#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)\n# define _GL_ATTRIBUTE_FORMAT_SCANF(formatstring_parameter, first_argument) \\\n   _GL_ATTRIBUTE_FORMAT ((__gnu_scanf__, formatstring_parameter, first_argument))\n#else\n# define _GL_ATTRIBUTE_FORMAT_SCANF(formatstring_parameter, first_argument) \\\n   _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument))\n#endif\n\n/* _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM is like _GL_ATTRIBUTE_FORMAT_SCANF,\n   except that it indicates to GCC that the supported format string directives\n   are the ones of the system scanf(), rather than the ones standardized by\n   ISO C99 and POSIX.  */\n#define _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM(formatstring_parameter, first_argument) \\\n  _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument))\n\n/* Solaris 10 declares renameat in <unistd.h>, not in <stdio.h>.  */\n/* But in any case avoid namespace pollution on glibc systems.  */\n#if (@GNULIB_RENAMEAT@ || defined GNULIB_POSIXCHECK) && defined __sun \\\n    && ! defined __GLIBC__\n# include <unistd.h>\n#endif\n\n/* MSVC declares 'perror' in <stdlib.h>, not in <stdio.h>.  We must include\n   it before we  #define perror rpl_perror.  */\n/* But in any case avoid namespace pollution on glibc systems.  */\n#if (@GNULIB_PERROR@ || defined GNULIB_POSIXCHECK) \\\n    && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) \\\n    && ! defined __GLIBC__\n# include <stdlib.h>\n#endif\n\n/* MSVC declares 'remove' in <io.h>, not in <stdio.h>.  We must include\n   it before we  #define remove rpl_remove.  */\n/* MSVC declares 'rename' in <io.h>, not in <stdio.h>.  We must include\n   it before we  #define rename rpl_rename.  */\n/* But in any case avoid namespace pollution on glibc systems.  */\n#if (@GNULIB_REMOVE@ || @GNULIB_RENAME@ || defined GNULIB_POSIXCHECK) \\\n    && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) \\\n    && ! defined __GLIBC__\n# include <io.h>\n#endif\n\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n\n/* Macros for stringification.  */\n#define _GL_STDIO_STRINGIZE(token) #token\n#define _GL_STDIO_MACROEXPAND_AND_STRINGIZE(token) _GL_STDIO_STRINGIZE(token)\n\n/* When also using extern inline, suppress the use of static inline in\n   standard headers of problematic Apple configurations, as Libc at\n   least through Libc-825.26 (2013-04-09) mishandles it; see, e.g.,\n   <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>.\n   Perhaps Apple will fix this some day.  */\n#if (defined _GL_EXTERN_INLINE_IN_USE && defined __APPLE__ \\\n     && defined __GNUC__ && defined __STDC__)\n# undef putc_unlocked\n#endif\n\n#if @GNULIB_DPRINTF@\n# if @REPLACE_DPRINTF@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define dprintf rpl_dprintf\n#  endif\n_GL_FUNCDECL_RPL (dprintf, int, (int fd, const char *format, ...)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                                _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (dprintf, int, (int fd, const char *format, ...));\n# else\n#  if !@HAVE_DPRINTF@\n_GL_FUNCDECL_SYS (dprintf, int, (int fd, const char *format, ...)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                                _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (dprintf, int, (int fd, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (dprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef dprintf\n# if HAVE_RAW_DECL_DPRINTF\n_GL_WARN_ON_USE (dprintf, \"dprintf is unportable - \"\n                 \"use gnulib module dprintf for portability\");\n# endif\n#endif\n\n#if @GNULIB_FCLOSE@\n/* Close STREAM and its underlying file descriptor.  */\n# if @REPLACE_FCLOSE@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define fclose rpl_fclose\n#  endif\n_GL_FUNCDECL_RPL (fclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (fclose, int, (FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fclose, int, (FILE *stream));\n# endif\n_GL_CXXALIASWARN (fclose);\n#elif defined GNULIB_POSIXCHECK\n# undef fclose\n/* Assume fclose is always declared.  */\n_GL_WARN_ON_USE (fclose, \"fclose is not always POSIX compliant - \"\n                 \"use gnulib module fclose for portable POSIX compliance\");\n#endif\n\n#if @GNULIB_FDOPEN@\n# if @REPLACE_FDOPEN@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fdopen\n#   define fdopen rpl_fdopen\n#  endif\n_GL_FUNCDECL_RPL (fdopen, FILE *, (int fd, const char *mode)\n                                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (fdopen, FILE *, (int fd, const char *mode));\n# else\n_GL_CXXALIAS_SYS (fdopen, FILE *, (int fd, const char *mode));\n# endif\n_GL_CXXALIASWARN (fdopen);\n#elif defined GNULIB_POSIXCHECK\n# undef fdopen\n/* Assume fdopen is always declared.  */\n_GL_WARN_ON_USE (fdopen, \"fdopen on native Windows platforms is not POSIX compliant - \"\n                 \"use gnulib module fdopen for portability\");\n#endif\n\n#if @GNULIB_FFLUSH@\n/* Flush all pending data on STREAM according to POSIX rules.  Both\n   output and seekable input streams are supported.\n   Note! LOSS OF DATA can occur if fflush is applied on an input stream\n   that is _not_seekable_ or on an update stream that is _not_seekable_\n   and in which the most recent operation was input.  Seekability can\n   be tested with lseek(fileno(fp),0,SEEK_CUR).  */\n# if @REPLACE_FFLUSH@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define fflush rpl_fflush\n#  endif\n_GL_FUNCDECL_RPL (fflush, int, (FILE *gl_stream));\n_GL_CXXALIAS_RPL (fflush, int, (FILE *gl_stream));\n# else\n_GL_CXXALIAS_SYS (fflush, int, (FILE *gl_stream));\n# endif\n_GL_CXXALIASWARN (fflush);\n#elif defined GNULIB_POSIXCHECK\n# undef fflush\n/* Assume fflush is always declared.  */\n_GL_WARN_ON_USE (fflush, \"fflush is not always POSIX compliant - \"\n                 \"use gnulib module fflush for portable POSIX compliance\");\n#endif\n\n#if @GNULIB_FGETC@\n# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fgetc\n#   define fgetc rpl_fgetc\n#  endif\n_GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (fgetc, int, (FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fgetc, int, (FILE *stream));\n# endif\n_GL_CXXALIASWARN (fgetc);\n#endif\n\n#if @GNULIB_FGETS@\n# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fgets\n#   define fgets rpl_fgets\n#  endif\n_GL_FUNCDECL_RPL (fgets, char *, (char *s, int n, FILE *stream)\n                                 _GL_ARG_NONNULL ((1, 3)));\n_GL_CXXALIAS_RPL (fgets, char *, (char *s, int n, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fgets, char *, (char *s, int n, FILE *stream));\n# endif\n_GL_CXXALIASWARN (fgets);\n#endif\n\n#if @GNULIB_FOPEN@\n# if @REPLACE_FOPEN@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fopen\n#   define fopen rpl_fopen\n#  endif\n_GL_FUNCDECL_RPL (fopen, FILE *, (const char *filename, const char *mode)\n                                 _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (fopen, FILE *, (const char *filename, const char *mode));\n# else\n_GL_CXXALIAS_SYS (fopen, FILE *, (const char *filename, const char *mode));\n# endif\n_GL_CXXALIASWARN (fopen);\n#elif defined GNULIB_POSIXCHECK\n# undef fopen\n/* Assume fopen is always declared.  */\n_GL_WARN_ON_USE (fopen, \"fopen on native Windows platforms is not POSIX compliant - \"\n                 \"use gnulib module fopen for portability\");\n#endif\n\n#if @GNULIB_FPRINTF_POSIX@ || @GNULIB_FPRINTF@\n# if (@GNULIB_FPRINTF_POSIX@ && @REPLACE_FPRINTF@) \\\n     || (@GNULIB_FPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define fprintf rpl_fprintf\n#  endif\n#  define GNULIB_overrides_fprintf 1\n#  if @GNULIB_FPRINTF_POSIX@ || @GNULIB_VFPRINTF_POSIX@\n_GL_FUNCDECL_RPL (fprintf, int, (FILE *fp, const char *format, ...)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                                _GL_ARG_NONNULL ((1, 2)));\n#  else\n_GL_FUNCDECL_RPL (fprintf, int, (FILE *fp, const char *format, ...)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (2, 3)\n                                _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_RPL (fprintf, int, (FILE *fp, const char *format, ...));\n# else\n_GL_CXXALIAS_SYS (fprintf, int, (FILE *fp, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (fprintf);\n#endif\n#if !@GNULIB_FPRINTF_POSIX@ && defined GNULIB_POSIXCHECK\n# if !GNULIB_overrides_fprintf\n#  undef fprintf\n# endif\n/* Assume fprintf is always declared.  */\n_GL_WARN_ON_USE (fprintf, \"fprintf is not always POSIX compliant - \"\n                 \"use gnulib module fprintf-posix for portable \"\n                 \"POSIX compliance\");\n#endif\n\n#if @GNULIB_FPURGE@\n/* Discard all pending buffered I/O data on STREAM.\n   STREAM must not be wide-character oriented.\n   When discarding pending output, the file position is set back to where it\n   was before the write calls.  When discarding pending input, the file\n   position is advanced to match the end of the previously read input.\n   Return 0 if successful.  Upon error, return -1 and set errno.  */\n# if @REPLACE_FPURGE@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define fpurge rpl_fpurge\n#  endif\n_GL_FUNCDECL_RPL (fpurge, int, (FILE *gl_stream) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (fpurge, int, (FILE *gl_stream));\n# else\n#  if !@HAVE_DECL_FPURGE@\n_GL_FUNCDECL_SYS (fpurge, int, (FILE *gl_stream) _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (fpurge, int, (FILE *gl_stream));\n# endif\n_GL_CXXALIASWARN (fpurge);\n#elif defined GNULIB_POSIXCHECK\n# undef fpurge\n# if HAVE_RAW_DECL_FPURGE\n_GL_WARN_ON_USE (fpurge, \"fpurge is not always present - \"\n                 \"use gnulib module fpurge for portability\");\n# endif\n#endif\n\n#if @GNULIB_FPUTC@\n# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fputc\n#   define fputc rpl_fputc\n#  endif\n_GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (fputc, int, (int c, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fputc, int, (int c, FILE *stream));\n# endif\n_GL_CXXALIASWARN (fputc);\n#endif\n\n#if @GNULIB_FPUTS@\n# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fputs\n#   define fputs rpl_fputs\n#  endif\n_GL_FUNCDECL_RPL (fputs, int, (const char *string, FILE *stream)\n                              _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (fputs, int, (const char *string, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fputs, int, (const char *string, FILE *stream));\n# endif\n_GL_CXXALIASWARN (fputs);\n#endif\n\n#if @GNULIB_FREAD@\n# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fread\n#   define fread rpl_fread\n#  endif\n_GL_FUNCDECL_RPL (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream)\n                                 _GL_ARG_NONNULL ((4)));\n_GL_CXXALIAS_RPL (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream));\n# endif\n_GL_CXXALIASWARN (fread);\n#endif\n\n#if @GNULIB_FREOPEN@\n# if @REPLACE_FREOPEN@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef freopen\n#   define freopen rpl_freopen\n#  endif\n_GL_FUNCDECL_RPL (freopen, FILE *,\n                  (const char *filename, const char *mode, FILE *stream)\n                  _GL_ARG_NONNULL ((2, 3)));\n_GL_CXXALIAS_RPL (freopen, FILE *,\n                  (const char *filename, const char *mode, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (freopen, FILE *,\n                  (const char *filename, const char *mode, FILE *stream));\n# endif\n_GL_CXXALIASWARN (freopen);\n#elif defined GNULIB_POSIXCHECK\n# undef freopen\n/* Assume freopen is always declared.  */\n_GL_WARN_ON_USE (freopen,\n                 \"freopen on native Windows platforms is not POSIX compliant - \"\n                 \"use gnulib module freopen for portability\");\n#endif\n\n#if @GNULIB_FSCANF@\n# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fscanf\n#   define fscanf rpl_fscanf\n#  endif\n_GL_FUNCDECL_RPL (fscanf, int, (FILE *stream, const char *format, ...)\n                               _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (2, 3)\n                               _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (fscanf, int, (FILE *stream, const char *format, ...));\n# else\n_GL_CXXALIAS_SYS (fscanf, int, (FILE *stream, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (fscanf);\n#endif\n\n\n/* Set up the following warnings, based on which modules are in use.\n   GNU Coding Standards discourage the use of fseek, since it imposes\n   an arbitrary limitation on some 32-bit hosts.  Remember that the\n   fseek module depends on the fseeko module, so we only have three\n   cases to consider:\n\n   1. The developer is not using either module.  Issue a warning under\n   GNULIB_POSIXCHECK for both functions, to remind them that both\n   functions have bugs on some systems.  _GL_NO_LARGE_FILES has no\n   impact on this warning.\n\n   2. The developer is using both modules.  They may be unaware of the\n   arbitrary limitations of fseek, so issue a warning under\n   GNULIB_POSIXCHECK.  On the other hand, they may be using both\n   modules intentionally, so the developer can define\n   _GL_NO_LARGE_FILES in the compilation units where the use of fseek\n   is safe, to silence the warning.\n\n   3. The developer is using the fseeko module, but not fseek.  Gnulib\n   guarantees that fseek will still work around platform bugs in that\n   case, but we presume that the developer is aware of the pitfalls of\n   fseek and was trying to avoid it, so issue a warning even when\n   GNULIB_POSIXCHECK is undefined.  Again, _GL_NO_LARGE_FILES can be\n   defined to silence the warning in particular compilation units.\n   In C++ compilations with GNULIB_NAMESPACE, in order to avoid that\n   fseek gets defined as a macro, it is recommended that the developer\n   uses the fseek module, even if he is not calling the fseek function.\n\n   Most gnulib clients that perform stream operations should fall into\n   category 3.  */\n\n#if @GNULIB_FSEEK@\n# if defined GNULIB_POSIXCHECK && !defined _GL_NO_LARGE_FILES\n#  define _GL_FSEEK_WARN /* Category 2, above.  */\n#  undef fseek\n# endif\n# if @REPLACE_FSEEK@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fseek\n#   define fseek rpl_fseek\n#  endif\n_GL_FUNCDECL_RPL (fseek, int, (FILE *fp, long offset, int whence)\n                              _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (fseek, int, (FILE *fp, long offset, int whence));\n# else\n_GL_CXXALIAS_SYS (fseek, int, (FILE *fp, long offset, int whence));\n# endif\n_GL_CXXALIASWARN (fseek);\n#endif\n\n#if @GNULIB_FSEEKO@\n# if !@GNULIB_FSEEK@ && !defined _GL_NO_LARGE_FILES\n#  define _GL_FSEEK_WARN /* Category 3, above.  */\n#  undef fseek\n# endif\n# if @REPLACE_FSEEKO@\n/* Provide an fseeko function that is aware of a preceding fflush(), and which\n   detects pipes.  */\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fseeko\n#   define fseeko rpl_fseeko\n#  endif\n_GL_FUNCDECL_RPL (fseeko, int, (FILE *fp, off_t offset, int whence)\n                               _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (fseeko, int, (FILE *fp, off_t offset, int whence));\n# else\n#  if ! @HAVE_DECL_FSEEKO@\n_GL_FUNCDECL_SYS (fseeko, int, (FILE *fp, off_t offset, int whence)\n                               _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (fseeko, int, (FILE *fp, off_t offset, int whence));\n# endif\n_GL_CXXALIASWARN (fseeko);\n#elif defined GNULIB_POSIXCHECK\n# define _GL_FSEEK_WARN /* Category 1, above.  */\n# undef fseek\n# undef fseeko\n# if HAVE_RAW_DECL_FSEEKO\n_GL_WARN_ON_USE (fseeko, \"fseeko is unportable - \"\n                 \"use gnulib module fseeko for portability\");\n# endif\n#endif\n\n#ifdef _GL_FSEEK_WARN\n# undef _GL_FSEEK_WARN\n/* Here, either fseek is undefined (but C89 guarantees that it is\n   declared), or it is defined as rpl_fseek (declared above).  */\n_GL_WARN_ON_USE (fseek, \"fseek cannot handle files larger than 4 GB \"\n                 \"on 32-bit platforms - \"\n                 \"use fseeko function for handling of large files\");\n#endif\n\n\n/* ftell, ftello.  See the comments on fseek/fseeko.  */\n\n#if @GNULIB_FTELL@\n# if defined GNULIB_POSIXCHECK && !defined _GL_NO_LARGE_FILES\n#  define _GL_FTELL_WARN /* Category 2, above.  */\n#  undef ftell\n# endif\n# if @REPLACE_FTELL@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ftell\n#   define ftell rpl_ftell\n#  endif\n_GL_FUNCDECL_RPL (ftell, long, (FILE *fp) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (ftell, long, (FILE *fp));\n# else\n_GL_CXXALIAS_SYS (ftell, long, (FILE *fp));\n# endif\n_GL_CXXALIASWARN (ftell);\n#endif\n\n#if @GNULIB_FTELLO@\n# if !@GNULIB_FTELL@ && !defined _GL_NO_LARGE_FILES\n#  define _GL_FTELL_WARN /* Category 3, above.  */\n#  undef ftell\n# endif\n# if @REPLACE_FTELLO@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ftello\n#   define ftello rpl_ftello\n#  endif\n_GL_FUNCDECL_RPL (ftello, off_t, (FILE *fp) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (ftello, off_t, (FILE *fp));\n# else\n#  if ! @HAVE_DECL_FTELLO@\n_GL_FUNCDECL_SYS (ftello, off_t, (FILE *fp) _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (ftello, off_t, (FILE *fp));\n# endif\n_GL_CXXALIASWARN (ftello);\n#elif defined GNULIB_POSIXCHECK\n# define _GL_FTELL_WARN /* Category 1, above.  */\n# undef ftell\n# undef ftello\n# if HAVE_RAW_DECL_FTELLO\n_GL_WARN_ON_USE (ftello, \"ftello is unportable - \"\n                 \"use gnulib module ftello for portability\");\n# endif\n#endif\n\n#ifdef _GL_FTELL_WARN\n# undef _GL_FTELL_WARN\n/* Here, either ftell is undefined (but C89 guarantees that it is\n   declared), or it is defined as rpl_ftell (declared above).  */\n_GL_WARN_ON_USE (ftell, \"ftell cannot handle files larger than 4 GB \"\n                 \"on 32-bit platforms - \"\n                 \"use ftello function for handling of large files\");\n#endif\n\n\n#if @GNULIB_FWRITE@\n# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fwrite\n#   define fwrite rpl_fwrite\n#  endif\n_GL_FUNCDECL_RPL (fwrite, size_t,\n                  (const void *ptr, size_t s, size_t n, FILE *stream)\n                  _GL_ARG_NONNULL ((1, 4)));\n_GL_CXXALIAS_RPL (fwrite, size_t,\n                  (const void *ptr, size_t s, size_t n, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (fwrite, size_t,\n                  (const void *ptr, size_t s, size_t n, FILE *stream));\n\n/* Work around bug 11959 when fortifying glibc 2.4 through 2.15\n   <http://sources.redhat.com/bugzilla/show_bug.cgi?id=11959>,\n   which sometimes causes an unwanted diagnostic for fwrite calls.\n   This affects only function declaration attributes under certain\n   versions of gcc and clang, and is not needed for C++.  */\n#  if (0 < __USE_FORTIFY_LEVEL                                          \\\n       && __GLIBC__ == 2 && 4 <= __GLIBC_MINOR__ && __GLIBC_MINOR__ <= 15 \\\n       && 3 < __GNUC__ + (4 <= __GNUC_MINOR__)                          \\\n       && !defined __cplusplus)\n#   undef fwrite\n#   undef fwrite_unlocked\nextern size_t __REDIRECT (rpl_fwrite,\n                          (const void *__restrict, size_t, size_t,\n                           FILE *__restrict),\n                          fwrite);\nextern size_t __REDIRECT (rpl_fwrite_unlocked,\n                          (const void *__restrict, size_t, size_t,\n                           FILE *__restrict),\n                          fwrite_unlocked);\n#   define fwrite rpl_fwrite\n#   define fwrite_unlocked rpl_fwrite_unlocked\n#  endif\n# endif\n_GL_CXXALIASWARN (fwrite);\n#endif\n\n#if @GNULIB_GETC@\n# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getc\n#   define getc rpl_fgetc\n#  endif\n_GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL_1 (getc, rpl_fgetc, int, (FILE *stream));\n# else\n_GL_CXXALIAS_SYS (getc, int, (FILE *stream));\n# endif\n_GL_CXXALIASWARN (getc);\n#endif\n\n#if @GNULIB_GETCHAR@\n# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getchar\n#   define getchar rpl_getchar\n#  endif\n_GL_FUNCDECL_RPL (getchar, int, (void));\n_GL_CXXALIAS_RPL (getchar, int, (void));\n# else\n_GL_CXXALIAS_SYS (getchar, int, (void));\n# endif\n_GL_CXXALIASWARN (getchar);\n#endif\n\n#if @GNULIB_GETDELIM@\n/* Read input, up to (and including) the next occurrence of DELIMITER, from\n   STREAM, store it in *LINEPTR (and NUL-terminate it).\n   *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE\n   bytes of space.  It is realloc'd as necessary.\n   Return the number of bytes read and stored at *LINEPTR (not including the\n   NUL terminator), or -1 on error or EOF.  */\n# if @REPLACE_GETDELIM@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getdelim\n#   define getdelim rpl_getdelim\n#  endif\n_GL_FUNCDECL_RPL (getdelim, ssize_t,\n                  (char **lineptr, size_t *linesize, int delimiter,\n                   FILE *stream)\n                  _GL_ARG_NONNULL ((1, 2, 4)));\n_GL_CXXALIAS_RPL (getdelim, ssize_t,\n                  (char **lineptr, size_t *linesize, int delimiter,\n                   FILE *stream));\n# else\n#  if !@HAVE_DECL_GETDELIM@\n_GL_FUNCDECL_SYS (getdelim, ssize_t,\n                  (char **lineptr, size_t *linesize, int delimiter,\n                   FILE *stream)\n                  _GL_ARG_NONNULL ((1, 2, 4)));\n#  endif\n_GL_CXXALIAS_SYS (getdelim, ssize_t,\n                  (char **lineptr, size_t *linesize, int delimiter,\n                   FILE *stream));\n# endif\n_GL_CXXALIASWARN (getdelim);\n#elif defined GNULIB_POSIXCHECK\n# undef getdelim\n# if HAVE_RAW_DECL_GETDELIM\n_GL_WARN_ON_USE (getdelim, \"getdelim is unportable - \"\n                 \"use gnulib module getdelim for portability\");\n# endif\n#endif\n\n#if @GNULIB_GETLINE@\n/* Read a line, up to (and including) the next newline, from STREAM, store it\n   in *LINEPTR (and NUL-terminate it).\n   *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE\n   bytes of space.  It is realloc'd as necessary.\n   Return the number of bytes read and stored at *LINEPTR (not including the\n   NUL terminator), or -1 on error or EOF.  */\n# if @REPLACE_GETLINE@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getline\n#   define getline rpl_getline\n#  endif\n_GL_FUNCDECL_RPL (getline, ssize_t,\n                  (char **lineptr, size_t *linesize, FILE *stream)\n                  _GL_ARG_NONNULL ((1, 2, 3)));\n_GL_CXXALIAS_RPL (getline, ssize_t,\n                  (char **lineptr, size_t *linesize, FILE *stream));\n# else\n#  if !@HAVE_DECL_GETLINE@\n_GL_FUNCDECL_SYS (getline, ssize_t,\n                  (char **lineptr, size_t *linesize, FILE *stream)\n                  _GL_ARG_NONNULL ((1, 2, 3)));\n#  endif\n_GL_CXXALIAS_SYS (getline, ssize_t,\n                  (char **lineptr, size_t *linesize, FILE *stream));\n# endif\n# if @HAVE_DECL_GETLINE@\n_GL_CXXALIASWARN (getline);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef getline\n# if HAVE_RAW_DECL_GETLINE\n_GL_WARN_ON_USE (getline, \"getline is unportable - \"\n                 \"use gnulib module getline for portability\");\n# endif\n#endif\n\n/* It is very rare that the developer ever has full control of stdin,\n   so any use of gets warrants an unconditional warning; besides, C11\n   removed it.  */\n#undef gets\n#if HAVE_RAW_DECL_GETS && !defined __cplusplus\n_GL_WARN_ON_USE (gets, \"gets is a security hole - use fgets instead\");\n#endif\n\n#if @GNULIB_OBSTACK_PRINTF@ || @GNULIB_OBSTACK_PRINTF_POSIX@\nstruct obstack;\n/* Grow an obstack with formatted output.  Return the number of\n   bytes added to OBS.  No trailing nul byte is added, and the\n   object should be closed with obstack_finish before use.  Upon\n   memory allocation error, call obstack_alloc_failed_handler.  Upon\n   other error, return -1.  */\n# if @REPLACE_OBSTACK_PRINTF@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define obstack_printf rpl_obstack_printf\n#  endif\n_GL_FUNCDECL_RPL (obstack_printf, int,\n                  (struct obstack *obs, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (obstack_printf, int,\n                  (struct obstack *obs, const char *format, ...));\n# else\n#  if !@HAVE_DECL_OBSTACK_PRINTF@\n_GL_FUNCDECL_SYS (obstack_printf, int,\n                  (struct obstack *obs, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (obstack_printf, int,\n                  (struct obstack *obs, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (obstack_printf);\n# if @REPLACE_OBSTACK_PRINTF@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define obstack_vprintf rpl_obstack_vprintf\n#  endif\n_GL_FUNCDECL_RPL (obstack_vprintf, int,\n                  (struct obstack *obs, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (obstack_vprintf, int,\n                  (struct obstack *obs, const char *format, va_list args));\n# else\n#  if !@HAVE_DECL_OBSTACK_PRINTF@\n_GL_FUNCDECL_SYS (obstack_vprintf, int,\n                  (struct obstack *obs, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (obstack_vprintf, int,\n                  (struct obstack *obs, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (obstack_vprintf);\n#endif\n\n#if @GNULIB_PCLOSE@\n# if !@HAVE_PCLOSE@\n_GL_FUNCDECL_SYS (pclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (pclose, int, (FILE *stream));\n_GL_CXXALIASWARN (pclose);\n#elif defined GNULIB_POSIXCHECK\n# undef pclose\n# if HAVE_RAW_DECL_PCLOSE\n_GL_WARN_ON_USE (pclose, \"pclose is unportable - \"\n                 \"use gnulib module pclose for more portability\");\n# endif\n#endif\n\n#if @GNULIB_PERROR@\n/* Print a message to standard error, describing the value of ERRNO,\n   (if STRING is not NULL and not empty) prefixed with STRING and \": \",\n   and terminated with a newline.  */\n# if @REPLACE_PERROR@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define perror rpl_perror\n#  endif\n_GL_FUNCDECL_RPL (perror, void, (const char *string));\n_GL_CXXALIAS_RPL (perror, void, (const char *string));\n# else\n_GL_CXXALIAS_SYS (perror, void, (const char *string));\n# endif\n_GL_CXXALIASWARN (perror);\n#elif defined GNULIB_POSIXCHECK\n# undef perror\n/* Assume perror is always declared.  */\n_GL_WARN_ON_USE (perror, \"perror is not always POSIX compliant - \"\n                 \"use gnulib module perror for portability\");\n#endif\n\n#if @GNULIB_POPEN@\n# if @REPLACE_POPEN@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef popen\n#   define popen rpl_popen\n#  endif\n_GL_FUNCDECL_RPL (popen, FILE *, (const char *cmd, const char *mode)\n                                 _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (popen, FILE *, (const char *cmd, const char *mode));\n# else\n#  if !@HAVE_POPEN@\n_GL_FUNCDECL_SYS (popen, FILE *, (const char *cmd, const char *mode)\n                                 _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (popen, FILE *, (const char *cmd, const char *mode));\n# endif\n_GL_CXXALIASWARN (popen);\n#elif defined GNULIB_POSIXCHECK\n# undef popen\n# if HAVE_RAW_DECL_POPEN\n_GL_WARN_ON_USE (popen, \"popen is buggy on some platforms - \"\n                 \"use gnulib module popen or pipe for more portability\");\n# endif\n#endif\n\n#if @GNULIB_PRINTF_POSIX@ || @GNULIB_PRINTF@\n# if (@GNULIB_PRINTF_POSIX@ && @REPLACE_PRINTF@) \\\n     || (@GNULIB_PRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))\n#  if defined __GNUC__\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n/* Don't break __attribute__((format(printf,M,N))).  */\n#    define printf __printf__\n#   endif\n#   if @GNULIB_PRINTF_POSIX@ || @GNULIB_VFPRINTF_POSIX@\n_GL_FUNCDECL_RPL_1 (__printf__, int,\n                    (const char *format, ...)\n                    __asm__ (@ASM_SYMBOL_PREFIX@\n                             _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_printf))\n                    _GL_ATTRIBUTE_FORMAT_PRINTF (1, 2)\n                    _GL_ARG_NONNULL ((1)));\n#   else\n_GL_FUNCDECL_RPL_1 (__printf__, int,\n                    (const char *format, ...)\n                    __asm__ (@ASM_SYMBOL_PREFIX@\n                             _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_printf))\n                    _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (1, 2)\n                    _GL_ARG_NONNULL ((1)));\n#   endif\n_GL_CXXALIAS_RPL_1 (printf, __printf__, int, (const char *format, ...));\n#  else\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    define printf rpl_printf\n#   endif\n_GL_FUNCDECL_RPL (printf, int,\n                  (const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (1, 2)\n                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (printf, int, (const char *format, ...));\n#  endif\n#  define GNULIB_overrides_printf 1\n# else\n_GL_CXXALIAS_SYS (printf, int, (const char *format, ...));\n# endif\n_GL_CXXALIASWARN (printf);\n#endif\n#if !@GNULIB_PRINTF_POSIX@ && defined GNULIB_POSIXCHECK\n# if !GNULIB_overrides_printf\n#  undef printf\n# endif\n/* Assume printf is always declared.  */\n_GL_WARN_ON_USE (printf, \"printf is not always POSIX compliant - \"\n                 \"use gnulib module printf-posix for portable \"\n                 \"POSIX compliance\");\n#endif\n\n#if @GNULIB_PUTC@\n# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef putc\n#   define putc rpl_fputc\n#  endif\n_GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL_1 (putc, rpl_fputc, int, (int c, FILE *stream));\n# else\n_GL_CXXALIAS_SYS (putc, int, (int c, FILE *stream));\n# endif\n_GL_CXXALIASWARN (putc);\n#endif\n\n#if @GNULIB_PUTCHAR@\n# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef putchar\n#   define putchar rpl_putchar\n#  endif\n_GL_FUNCDECL_RPL (putchar, int, (int c));\n_GL_CXXALIAS_RPL (putchar, int, (int c));\n# else\n_GL_CXXALIAS_SYS (putchar, int, (int c));\n# endif\n_GL_CXXALIASWARN (putchar);\n#endif\n\n#if @GNULIB_PUTS@\n# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef puts\n#   define puts rpl_puts\n#  endif\n_GL_FUNCDECL_RPL (puts, int, (const char *string) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (puts, int, (const char *string));\n# else\n_GL_CXXALIAS_SYS (puts, int, (const char *string));\n# endif\n_GL_CXXALIASWARN (puts);\n#endif\n\n#if @GNULIB_REMOVE@\n# if @REPLACE_REMOVE@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef remove\n#   define remove rpl_remove\n#  endif\n_GL_FUNCDECL_RPL (remove, int, (const char *name) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (remove, int, (const char *name));\n# else\n_GL_CXXALIAS_SYS (remove, int, (const char *name));\n# endif\n_GL_CXXALIASWARN (remove);\n#elif defined GNULIB_POSIXCHECK\n# undef remove\n/* Assume remove is always declared.  */\n_GL_WARN_ON_USE (remove, \"remove cannot handle directories on some platforms - \"\n                 \"use gnulib module remove for more portability\");\n#endif\n\n#if @GNULIB_RENAME@\n# if @REPLACE_RENAME@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef rename\n#   define rename rpl_rename\n#  endif\n_GL_FUNCDECL_RPL (rename, int,\n                  (const char *old_filename, const char *new_filename)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (rename, int,\n                  (const char *old_filename, const char *new_filename));\n# else\n_GL_CXXALIAS_SYS (rename, int,\n                  (const char *old_filename, const char *new_filename));\n# endif\n_GL_CXXALIASWARN (rename);\n#elif defined GNULIB_POSIXCHECK\n# undef rename\n/* Assume rename is always declared.  */\n_GL_WARN_ON_USE (rename, \"rename is buggy on some platforms - \"\n                 \"use gnulib module rename for more portability\");\n#endif\n\n#if @GNULIB_RENAMEAT@\n# if @REPLACE_RENAMEAT@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef renameat\n#   define renameat rpl_renameat\n#  endif\n_GL_FUNCDECL_RPL (renameat, int,\n                  (int fd1, char const *file1, int fd2, char const *file2)\n                  _GL_ARG_NONNULL ((2, 4)));\n_GL_CXXALIAS_RPL (renameat, int,\n                  (int fd1, char const *file1, int fd2, char const *file2));\n# else\n#  if !@HAVE_RENAMEAT@\n_GL_FUNCDECL_SYS (renameat, int,\n                  (int fd1, char const *file1, int fd2, char const *file2)\n                  _GL_ARG_NONNULL ((2, 4)));\n#  endif\n_GL_CXXALIAS_SYS (renameat, int,\n                  (int fd1, char const *file1, int fd2, char const *file2));\n# endif\n_GL_CXXALIASWARN (renameat);\n#elif defined GNULIB_POSIXCHECK\n# undef renameat\n# if HAVE_RAW_DECL_RENAMEAT\n_GL_WARN_ON_USE (renameat, \"renameat is not portable - \"\n                 \"use gnulib module renameat for portability\");\n# endif\n#endif\n\n#if @GNULIB_SCANF@\n# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@\n#  if defined __GNUC__\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef scanf\n/* Don't break __attribute__((format(scanf,M,N))).  */\n#    define scanf __scanf__\n#   endif\n_GL_FUNCDECL_RPL_1 (__scanf__, int,\n                    (const char *format, ...)\n                    __asm__ (@ASM_SYMBOL_PREFIX@\n                             _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_scanf))\n                    _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 2)\n                    _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL_1 (scanf, __scanf__, int, (const char *format, ...));\n#  else\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef scanf\n#    define scanf rpl_scanf\n#   endif\n_GL_FUNCDECL_RPL (scanf, int, (const char *format, ...)\n                              _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 2)\n                              _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (scanf, int, (const char *format, ...));\n#  endif\n# else\n_GL_CXXALIAS_SYS (scanf, int, (const char *format, ...));\n# endif\n_GL_CXXALIASWARN (scanf);\n#endif\n\n#if @GNULIB_SNPRINTF@\n# if @REPLACE_SNPRINTF@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define snprintf rpl_snprintf\n#  endif\n_GL_FUNCDECL_RPL (snprintf, int,\n                  (char *str, size_t size, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (3, 4)\n                  _GL_ARG_NONNULL ((3)));\n_GL_CXXALIAS_RPL (snprintf, int,\n                  (char *str, size_t size, const char *format, ...));\n# else\n#  if !@HAVE_DECL_SNPRINTF@\n_GL_FUNCDECL_SYS (snprintf, int,\n                  (char *str, size_t size, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (3, 4)\n                  _GL_ARG_NONNULL ((3)));\n#  endif\n_GL_CXXALIAS_SYS (snprintf, int,\n                  (char *str, size_t size, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (snprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef snprintf\n# if HAVE_RAW_DECL_SNPRINTF\n_GL_WARN_ON_USE (snprintf, \"snprintf is unportable - \"\n                 \"use gnulib module snprintf for portability\");\n# endif\n#endif\n\n/* Some people would argue that all sprintf uses should be warned about\n   (for example, OpenBSD issues a link warning for it),\n   since it can cause security holes due to buffer overruns.\n   However, we believe that sprintf can be used safely, and is more\n   efficient than snprintf in those safe cases; and as proof of our\n   belief, we use sprintf in several gnulib modules.  So this header\n   intentionally avoids adding a warning to sprintf except when\n   GNULIB_POSIXCHECK is defined.  */\n\n#if @GNULIB_SPRINTF_POSIX@\n# if @REPLACE_SPRINTF@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define sprintf rpl_sprintf\n#  endif\n_GL_FUNCDECL_RPL (sprintf, int, (char *str, const char *format, ...)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                                _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (sprintf, int, (char *str, const char *format, ...));\n# else\n_GL_CXXALIAS_SYS (sprintf, int, (char *str, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (sprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef sprintf\n/* Assume sprintf is always declared.  */\n_GL_WARN_ON_USE (sprintf, \"sprintf is not always POSIX compliant - \"\n                 \"use gnulib module sprintf-posix for portable \"\n                 \"POSIX compliance\");\n#endif\n\n#if @GNULIB_TMPFILE@\n# if @REPLACE_TMPFILE@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define tmpfile rpl_tmpfile\n#  endif\n_GL_FUNCDECL_RPL (tmpfile, FILE *, (void));\n_GL_CXXALIAS_RPL (tmpfile, FILE *, (void));\n# else\n_GL_CXXALIAS_SYS (tmpfile, FILE *, (void));\n# endif\n_GL_CXXALIASWARN (tmpfile);\n#elif defined GNULIB_POSIXCHECK\n# undef tmpfile\n# if HAVE_RAW_DECL_TMPFILE\n_GL_WARN_ON_USE (tmpfile, \"tmpfile is not usable on mingw - \"\n                 \"use gnulib module tmpfile for portability\");\n# endif\n#endif\n\n#if @GNULIB_VASPRINTF@\n/* Write formatted output to a string dynamically allocated with malloc().\n   If the memory allocation succeeds, store the address of the string in\n   *RESULT and return the number of resulting bytes, excluding the trailing\n   NUL.  Upon memory allocation error, or some other error, return -1.  */\n# if @REPLACE_VASPRINTF@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define asprintf rpl_asprintf\n#  endif\n_GL_FUNCDECL_RPL (asprintf, int,\n                  (char **result, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (asprintf, int,\n                  (char **result, const char *format, ...));\n# else\n#  if !@HAVE_VASPRINTF@\n_GL_FUNCDECL_SYS (asprintf, int,\n                  (char **result, const char *format, ...)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (asprintf, int,\n                  (char **result, const char *format, ...));\n# endif\n_GL_CXXALIASWARN (asprintf);\n# if @REPLACE_VASPRINTF@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vasprintf rpl_vasprintf\n#  endif\n_GL_FUNCDECL_RPL (vasprintf, int,\n                  (char **result, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (vasprintf, int,\n                  (char **result, const char *format, va_list args));\n# else\n#  if !@HAVE_VASPRINTF@\n_GL_FUNCDECL_SYS (vasprintf, int,\n                  (char **result, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (vasprintf, int,\n                  (char **result, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vasprintf);\n#endif\n\n#if @GNULIB_VDPRINTF@\n# if @REPLACE_VDPRINTF@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vdprintf rpl_vdprintf\n#  endif\n_GL_FUNCDECL_RPL (vdprintf, int, (int fd, const char *format, va_list args)\n                                 _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                                 _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (vdprintf, int, (int fd, const char *format, va_list args));\n# else\n#  if !@HAVE_VDPRINTF@\n_GL_FUNCDECL_SYS (vdprintf, int, (int fd, const char *format, va_list args)\n                                 _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                                 _GL_ARG_NONNULL ((2)));\n#  endif\n/* Need to cast, because on Solaris, the third parameter will likely be\n                                                    __va_list args.  */\n_GL_CXXALIAS_SYS_CAST (vdprintf, int,\n                       (int fd, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vdprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef vdprintf\n# if HAVE_RAW_DECL_VDPRINTF\n_GL_WARN_ON_USE (vdprintf, \"vdprintf is unportable - \"\n                 \"use gnulib module vdprintf for portability\");\n# endif\n#endif\n\n#if @GNULIB_VFPRINTF_POSIX@ || @GNULIB_VFPRINTF@\n# if (@GNULIB_VFPRINTF_POSIX@ && @REPLACE_VFPRINTF@) \\\n     || (@GNULIB_VFPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vfprintf rpl_vfprintf\n#  endif\n#  define GNULIB_overrides_vfprintf 1\n#  if @GNULIB_VFPRINTF_POSIX@\n_GL_FUNCDECL_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args)\n                                 _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                                 _GL_ARG_NONNULL ((1, 2)));\n#  else\n_GL_FUNCDECL_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args)\n                                 _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (2, 0)\n                                 _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args));\n# else\n/* Need to cast, because on Solaris, the third parameter is\n                                                      __va_list args\n   and GCC's fixincludes did not change this to __gnuc_va_list.  */\n_GL_CXXALIAS_SYS_CAST (vfprintf, int,\n                       (FILE *fp, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vfprintf);\n#endif\n#if !@GNULIB_VFPRINTF_POSIX@ && defined GNULIB_POSIXCHECK\n# if !GNULIB_overrides_vfprintf\n#  undef vfprintf\n# endif\n/* Assume vfprintf is always declared.  */\n_GL_WARN_ON_USE (vfprintf, \"vfprintf is not always POSIX compliant - \"\n                 \"use gnulib module vfprintf-posix for portable \"\n                      \"POSIX compliance\");\n#endif\n\n#if @GNULIB_VFSCANF@\n# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef vfscanf\n#   define vfscanf rpl_vfscanf\n#  endif\n_GL_FUNCDECL_RPL (vfscanf, int,\n                  (FILE *stream, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (vfscanf, int,\n                  (FILE *stream, const char *format, va_list args));\n# else\n_GL_CXXALIAS_SYS (vfscanf, int,\n                  (FILE *stream, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vfscanf);\n#endif\n\n#if @GNULIB_VPRINTF_POSIX@ || @GNULIB_VPRINTF@\n# if (@GNULIB_VPRINTF_POSIX@ && @REPLACE_VPRINTF@) \\\n     || (@GNULIB_VPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vprintf rpl_vprintf\n#  endif\n#  define GNULIB_overrides_vprintf 1\n#  if @GNULIB_VPRINTF_POSIX@ || @GNULIB_VFPRINTF_POSIX@\n_GL_FUNCDECL_RPL (vprintf, int, (const char *format, va_list args)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF (1, 0)\n                                _GL_ARG_NONNULL ((1)));\n#  else\n_GL_FUNCDECL_RPL (vprintf, int, (const char *format, va_list args)\n                                _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (1, 0)\n                                _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_RPL (vprintf, int, (const char *format, va_list args));\n# else\n/* Need to cast, because on Solaris, the second parameter is\n                                                          __va_list args\n   and GCC's fixincludes did not change this to __gnuc_va_list.  */\n_GL_CXXALIAS_SYS_CAST (vprintf, int, (const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vprintf);\n#endif\n#if !@GNULIB_VPRINTF_POSIX@ && defined GNULIB_POSIXCHECK\n# if !GNULIB_overrides_vprintf\n#  undef vprintf\n# endif\n/* Assume vprintf is always declared.  */\n_GL_WARN_ON_USE (vprintf, \"vprintf is not always POSIX compliant - \"\n                 \"use gnulib module vprintf-posix for portable \"\n                 \"POSIX compliance\");\n#endif\n\n#if @GNULIB_VSCANF@\n# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef vscanf\n#   define vscanf rpl_vscanf\n#  endif\n_GL_FUNCDECL_RPL (vscanf, int, (const char *format, va_list args)\n                               _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 0)\n                               _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (vscanf, int, (const char *format, va_list args));\n# else\n_GL_CXXALIAS_SYS (vscanf, int, (const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vscanf);\n#endif\n\n#if @GNULIB_VSNPRINTF@\n# if @REPLACE_VSNPRINTF@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vsnprintf rpl_vsnprintf\n#  endif\n_GL_FUNCDECL_RPL (vsnprintf, int,\n                  (char *str, size_t size, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (3, 0)\n                  _GL_ARG_NONNULL ((3)));\n_GL_CXXALIAS_RPL (vsnprintf, int,\n                  (char *str, size_t size, const char *format, va_list args));\n# else\n#  if !@HAVE_DECL_VSNPRINTF@\n_GL_FUNCDECL_SYS (vsnprintf, int,\n                  (char *str, size_t size, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (3, 0)\n                  _GL_ARG_NONNULL ((3)));\n#  endif\n_GL_CXXALIAS_SYS (vsnprintf, int,\n                  (char *str, size_t size, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vsnprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef vsnprintf\n# if HAVE_RAW_DECL_VSNPRINTF\n_GL_WARN_ON_USE (vsnprintf, \"vsnprintf is unportable - \"\n                 \"use gnulib module vsnprintf for portability\");\n# endif\n#endif\n\n#if @GNULIB_VSPRINTF_POSIX@\n# if @REPLACE_VSPRINTF@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define vsprintf rpl_vsprintf\n#  endif\n_GL_FUNCDECL_RPL (vsprintf, int,\n                  (char *str, const char *format, va_list args)\n                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (vsprintf, int,\n                  (char *str, const char *format, va_list args));\n# else\n/* Need to cast, because on Solaris, the third parameter is\n                                                       __va_list args\n   and GCC's fixincludes did not change this to __gnuc_va_list.  */\n_GL_CXXALIAS_SYS_CAST (vsprintf, int,\n                       (char *str, const char *format, va_list args));\n# endif\n_GL_CXXALIASWARN (vsprintf);\n#elif defined GNULIB_POSIXCHECK\n# undef vsprintf\n/* Assume vsprintf is always declared.  */\n_GL_WARN_ON_USE (vsprintf, \"vsprintf is not always POSIX compliant - \"\n                 \"use gnulib module vsprintf-posix for portable \"\n                      \"POSIX compliance\");\n#endif\n\n#endif /* _@GUARD_PREFIX@_STDIO_H */\n#endif /* _@GUARD_PREFIX@_STDIO_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/stdlib.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* A GNU-like <stdlib.h>.\n\n   Copyright (C) 1995, 2001-2004, 2006-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n#if defined __need_system_stdlib_h || defined __need_malloc_and_calloc\n/* Special invocation conventions inside some gnulib header files,\n   and inside some glibc header files, respectively.  */\n\n#include_next <stdlib.h>\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _GL_STDLIB_H\n\n/* The include_next requires a split double-inclusion guard.  */\n#include_next <stdlib.h>\n\n#ifndef _GL_STDLIB_H\n#define _GL_STDLIB_H\n\n/* NetBSD 5.0 mis-defines NULL.  */\n#include <stddef.h>\n\n/* MirBSD 10 defines WEXITSTATUS in <sys/wait.h>, not in <stdlib.h>.  */\n#if 0 && !defined WEXITSTATUS\n# include <sys/wait.h>\n#endif\n\n/* Solaris declares getloadavg() in <sys/loadavg.h>.  */\n#if (0 || defined GNULIB_POSIXCHECK) && 0\n# include <sys/loadavg.h>\n#endif\n\n/* Native Windows platforms declare mktemp() in <io.h>.  */\n#if 0 && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)\n# include <io.h>\n#endif\n\n#if 0\n\n/* OSF/1 5.1 declares 'struct random_data' in <random.h>, which is included\n   from <stdlib.h> if _REENTRANT is defined.  Include it whenever we need\n   'struct random_data'.  */\n# if 1\n#  include <random.h>\n# endif\n\n# if !1 || 0 || !1\n#  include <stdint.h>\n# endif\n\n# if !1\n/* Define 'struct random_data'.\n   But allow multiple gnulib generated <stdlib.h> replacements to coexist.  */\n#  if !GNULIB_defined_struct_random_data\nstruct random_data\n{\n  int32_t *fptr;                /* Front pointer.  */\n  int32_t *rptr;                /* Rear pointer.  */\n  int32_t *state;               /* Array of state values.  */\n  int rand_type;                /* Type of random number generator.  */\n  int rand_deg;                 /* Degree of random number generator.  */\n  int rand_sep;                 /* Distance between front and rear.  */\n  int32_t *end_ptr;             /* Pointer behind state table.  */\n};\n#   define GNULIB_defined_struct_random_data 1\n#  endif\n# endif\n#endif\n\n#if (0 || 0 || 0 || defined GNULIB_POSIXCHECK) && ! defined __GLIBC__ && !((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)\n/* On Mac OS X 10.3, only <unistd.h> declares mkstemp.  */\n/* On Mac OS X 10.5, only <unistd.h> declares mkstemps.  */\n/* On Cygwin 1.7.1, only <unistd.h> declares getsubopt.  */\n/* But avoid namespace pollution on glibc systems and native Windows.  */\n# include <unistd.h>\n#endif\n\n/* The __attribute__ feature is available in gcc versions 2.5 and later.\n   The attribute __pure__ was added in gcc 2.96.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)\n# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))\n#else\n# define _GL_ATTRIBUTE_PURE /* empty */\n#endif\n\n/* The definition of _Noreturn is copied here.  */\n#if !defined _Noreturn && __STDC_VERSION__ < 201112\n# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \\\n      || 0x5110 <= __SUNPRO_C)\n#  define _Noreturn __attribute__ ((__noreturn__))\n# elif 1200 <= _MSC_VER\n#  define _Noreturn __declspec (noreturn)\n# else\n#  define _Noreturn\n# endif\n#endif\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n#ifndef _GL_CXXDEFS_H\n#define _GL_CXXDEFS_H\n\n/* Begin/end the GNULIB_NAMESPACE namespace.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {\n# define _GL_END_NAMESPACE }\n#else\n# define _GL_BEGIN_NAMESPACE\n# define _GL_END_NAMESPACE\n#endif\n\n/* The three most frequent use cases of these macros are:\n\n   * For providing a substitute for a function that is missing on some\n     platforms, but is declared and works fine on the platforms on which\n     it exists:\n\n       #if @GNULIB_FOO@\n       # if !@HAVE_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       # endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on all platforms,\n     but is broken/insufficient and needs to be replaced on some platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on some platforms\n     but is broken/insufficient and needs to be replaced on some of them and\n     is additionally either missing or undeclared on some other platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       #  endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n*/\n\n/* _GL_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#if defined __cplusplus\n# define _GL_EXTERN_C extern \"C\"\n#else\n# define _GL_EXTERN_C extern\n#endif\n\n/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);\n   declares a replacement function, named rpl_func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \\\n  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)\n#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype rpl_func parameters_and_attributes\n\n/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);\n   declares the system function, named func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype func parameters_and_attributes\n\n/* _GL_CXXALIAS_RPL (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.\n   Example:\n     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n\n   Wrapping rpl_func in an object with an inline conversion operator\n   avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#define _GL_CXXALIAS_RPL(func,rettype,parameters) \\\n  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::rpl_func;                                  \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);\n   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);\n   except that the C function rpl_func may have a slightly different\n   declaration.  A cast is used to silence the \"invalid conversion\" error\n   that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                     \\\n    {                                                              \\\n      static const struct _gl_ ## func ## _wrapper                 \\\n      {                                                            \\\n        typedef rettype (*type) parameters;                        \\\n                                                                   \\\n        inline operator type () const                              \\\n        {                                                          \\\n          return reinterpret_cast<type>(::rpl_func);               \\\n        }                                                          \\\n      } func = {};                                                 \\\n    }                                                              \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to the system provided function func, if GNULIB_NAMESPACE\n   is defined.\n   Example:\n     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n\n   Wrapping func in an object with an inline conversion operator\n   avoids a reference to func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS(func,rettype,parameters)            \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::func;                                      \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function func may have a slightly different declaration.\n   A cast is used to silence the \"invalid conversion\" error that would\n   otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                          \\\n    {                                                   \\\n      static const struct _gl_ ## func ## _wrapper      \\\n      {                                                 \\\n        typedef rettype (*type) parameters;             \\\n                                                        \\\n        inline operator type () const                   \\\n        {                                               \\\n          return reinterpret_cast<type>(::func);        \\\n        }                                               \\\n      } func = {};                                      \\\n    }                                                   \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function is picked among a set of overloaded functions,\n   namely the one with rettype2 and parameters2.  Two consecutive casts\n   are used to silence the \"cannot find a match\" and \"invalid conversion\"\n   errors that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n  /* The outer cast must be a reinterpret_cast.\n     The inner cast: When the function is defined as a set of overloaded\n     functions, it works as a static_cast<>, choosing the designated variant.\n     When the function is defined as a single variant, it works as a\n     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    namespace GNULIB_NAMESPACE                                                \\\n    {                                                                         \\\n      static const struct _gl_ ## func ## _wrapper                            \\\n      {                                                                       \\\n        typedef rettype (*type) parameters;                                   \\\n                                                                              \\\n        inline operator type () const                                         \\\n        {                                                                     \\\n          return reinterpret_cast<type>((rettype2 (*) parameters2)(::func));  \\\n        }                                                                     \\\n      } func = {};                                                            \\\n    }                                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN (func);\n   causes a warning to be emitted when ::func is used but not when\n   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded\n   variants.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN(func) \\\n   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN_1(func,namespace) \\\n   _GL_CXXALIASWARN_2 (func, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n    _GL_WARN_ON_USE (func, \\\n                     \"The symbol ::\" #func \" refers to the system function. \" \\\n                     \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN(func) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);\n   causes a warning to be emitted when the given overloaded variant of ::func\n   is used but not when GNULIB_NAMESPACE::func is used.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \\\n                        GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \\\n   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \\\n                         \"The symbol ::\" #func \" refers to the system function. \" \\\n                         \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n#endif /* _GL_CXXDEFS_H */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools\n   that the values passed as arguments n, ..., m must be non-NULL pointers.\n   n = 1 stands for the first argument, n = 2 for the second argument etc.  */\n#ifndef _GL_ARG_NONNULL\n# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3\n#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))\n# else\n#  define _GL_ARG_NONNULL(params)\n# endif\n#endif\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n#ifndef _GL_WARN_ON_USE\n\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n/* A compiler attribute is available in gcc versions 4.3.0 and later.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function __attribute__ ((__warning__ (message)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE(function, message) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, \"string\")\n   is like _GL_WARN_ON_USE (function, \"string\"), except that the function is\n   declared with the given prototype, consisting of return type, parameters,\n   and attributes.\n   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does\n   not work in this case.  */\n#ifndef _GL_WARN_ON_USE_CXX\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes \\\n     __attribute__ ((__warning__ (msg)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#ifndef _GL_WARN_EXTERN_C\n# if defined __cplusplus\n#  define _GL_WARN_EXTERN_C extern \"C\"\n# else\n#  define _GL_WARN_EXTERN_C extern\n# endif\n#endif\n\n\n/* Some systems do not define EXIT_*, despite otherwise supporting C89.  */\n#ifndef EXIT_SUCCESS\n# define EXIT_SUCCESS 0\n#endif\n/* Tandem/NSK and other platforms that define EXIT_FAILURE as -1 interfere\n   with proper operation of xargs.  */\n#ifndef EXIT_FAILURE\n# define EXIT_FAILURE 1\n#elif EXIT_FAILURE != 1\n# undef EXIT_FAILURE\n# define EXIT_FAILURE 1\n#endif\n\n\n#if 0\n/* Terminate the current process with the given return code, without running\n   the 'atexit' handlers.  */\n# if !1\n_GL_FUNCDECL_SYS (_Exit, _Noreturn void, (int status));\n# endif\n_GL_CXXALIAS_SYS (_Exit, void, (int status));\n_GL_CXXALIASWARN (_Exit);\n#elif defined GNULIB_POSIXCHECK\n# undef _Exit\n# if HAVE_RAW_DECL__EXIT\n_GL_WARN_ON_USE (_Exit, \"_Exit is unportable - \"\n                 \"use gnulib module _Exit for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Parse a signed decimal integer.\n   Returns the value of the integer.  Errors are not detected.  */\n# if !1\n_GL_FUNCDECL_SYS (atoll, long long, (const char *string)\n                                    _GL_ATTRIBUTE_PURE\n                                    _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (atoll, long long, (const char *string));\n_GL_CXXALIASWARN (atoll);\n#elif defined GNULIB_POSIXCHECK\n# undef atoll\n# if HAVE_RAW_DECL_ATOLL\n_GL_WARN_ON_USE (atoll, \"atoll is unportable - \"\n                 \"use gnulib module atoll for portability\");\n# endif\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef calloc\n#   define calloc rpl_calloc\n#  endif\n_GL_FUNCDECL_RPL (calloc, void *, (size_t nmemb, size_t size));\n_GL_CXXALIAS_RPL (calloc, void *, (size_t nmemb, size_t size));\n# else\n_GL_CXXALIAS_SYS (calloc, void *, (size_t nmemb, size_t size));\n# endif\n_GL_CXXALIASWARN (calloc);\n#elif defined GNULIB_POSIXCHECK\n# undef calloc\n/* Assume calloc is always declared.  */\n_GL_WARN_ON_USE (calloc, \"calloc is not POSIX compliant everywhere - \"\n                 \"use gnulib module calloc-posix for portability\");\n#endif\n\n#if 1\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define canonicalize_file_name rpl_canonicalize_file_name\n#  endif\n_GL_FUNCDECL_RPL (canonicalize_file_name, char *, (const char *name)\n                                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (canonicalize_file_name, char *, (const char *name));\n# else\n#  if !0\n_GL_FUNCDECL_SYS (canonicalize_file_name, char *, (const char *name)\n                                                  _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (canonicalize_file_name, char *, (const char *name));\n# endif\n_GL_CXXALIASWARN (canonicalize_file_name);\n#elif defined GNULIB_POSIXCHECK\n# undef canonicalize_file_name\n# if HAVE_RAW_DECL_CANONICALIZE_FILE_NAME\n_GL_WARN_ON_USE (canonicalize_file_name,\n                 \"canonicalize_file_name is unportable - \"\n                 \"use gnulib module canonicalize-lgpl for portability\");\n# endif\n#endif\n\n#if 0\n/* Store max(NELEM,3) load average numbers in LOADAVG[].\n   The three numbers are the load average of the last 1 minute, the last 5\n   minutes, and the last 15 minutes, respectively.\n   LOADAVG is an array of NELEM numbers.  */\n# if !1\n_GL_FUNCDECL_SYS (getloadavg, int, (double loadavg[], int nelem)\n                                   _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (getloadavg, int, (double loadavg[], int nelem));\n_GL_CXXALIASWARN (getloadavg);\n#elif defined GNULIB_POSIXCHECK\n# undef getloadavg\n# if HAVE_RAW_DECL_GETLOADAVG\n_GL_WARN_ON_USE (getloadavg, \"getloadavg is not portable - \"\n                 \"use gnulib module getloadavg for portability\");\n# endif\n#endif\n\n#if 0\n/* Assuming *OPTIONP is a comma separated list of elements of the form\n   \"token\" or \"token=value\", getsubopt parses the first of these elements.\n   If the first element refers to a \"token\" that is member of the given\n   NULL-terminated array of tokens:\n     - It replaces the comma with a NUL byte, updates *OPTIONP to point past\n       the first option and the comma, sets *VALUEP to the value of the\n       element (or NULL if it doesn't contain an \"=\" sign),\n     - It returns the index of the \"token\" in the given array of tokens.\n   Otherwise it returns -1, and *OPTIONP and *VALUEP are undefined.\n   For more details see the POSIX:2001 specification.\n   http://www.opengroup.org/susv3xsh/getsubopt.html */\n# if !1\n_GL_FUNCDECL_SYS (getsubopt, int,\n                  (char **optionp, char *const *tokens, char **valuep)\n                  _GL_ARG_NONNULL ((1, 2, 3)));\n# endif\n_GL_CXXALIAS_SYS (getsubopt, int,\n                  (char **optionp, char *const *tokens, char **valuep));\n_GL_CXXALIASWARN (getsubopt);\n#elif defined GNULIB_POSIXCHECK\n# undef getsubopt\n# if HAVE_RAW_DECL_GETSUBOPT\n_GL_WARN_ON_USE (getsubopt, \"getsubopt is unportable - \"\n                 \"use gnulib module getsubopt for portability\");\n# endif\n#endif\n\n#if 0\n/* Change the ownership and access permission of the slave side of the\n   pseudo-terminal whose master side is specified by FD.  */\n# if !1\n_GL_FUNCDECL_SYS (grantpt, int, (int fd));\n# endif\n_GL_CXXALIAS_SYS (grantpt, int, (int fd));\n_GL_CXXALIASWARN (grantpt);\n#elif defined GNULIB_POSIXCHECK\n# undef grantpt\n# if HAVE_RAW_DECL_GRANTPT\n_GL_WARN_ON_USE (grantpt, \"grantpt is not portable - \"\n                 \"use gnulib module grantpt for portability\");\n# endif\n#endif\n\n/* If _GL_USE_STDLIB_ALLOC is nonzero, the including module does not\n   rely on GNU or POSIX semantics for malloc and realloc (for example,\n   by never specifying a zero size), so it does not need malloc or\n   realloc to be redefined.  */\n#if 1\n# if 0\n#  if !((defined __cplusplus && defined GNULIB_NAMESPACE) \\\n        || _GL_USE_STDLIB_ALLOC)\n#   undef malloc\n#   define malloc rpl_malloc\n#  endif\n_GL_FUNCDECL_RPL (malloc, void *, (size_t size));\n_GL_CXXALIAS_RPL (malloc, void *, (size_t size));\n# else\n_GL_CXXALIAS_SYS (malloc, void *, (size_t size));\n# endif\n_GL_CXXALIASWARN (malloc);\n#elif defined GNULIB_POSIXCHECK && !_GL_USE_STDLIB_ALLOC\n# undef malloc\n/* Assume malloc is always declared.  */\n_GL_WARN_ON_USE (malloc, \"malloc is not POSIX compliant everywhere - \"\n                 \"use gnulib module malloc-posix for portability\");\n#endif\n\n/* Convert a multibyte character to a wide character.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef mbtowc\n#   define mbtowc rpl_mbtowc\n#  endif\n_GL_FUNCDECL_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));\n_GL_CXXALIAS_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));\n# else\n_GL_CXXALIAS_SYS (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));\n# endif\n_GL_CXXALIASWARN (mbtowc);\n#endif\n\n#if 0\n/* Create a unique temporary directory from TEMPLATE.\n   The last six characters of TEMPLATE must be \"XXXXXX\";\n   they are replaced with a string that makes the directory name unique.\n   Returns TEMPLATE, or a null pointer if it cannot get a unique name.\n   The directory is created mode 700.  */\n# if !1\n_GL_FUNCDECL_SYS (mkdtemp, char *, (char * /*template*/) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (mkdtemp, char *, (char * /*template*/));\n_GL_CXXALIASWARN (mkdtemp);\n#elif defined GNULIB_POSIXCHECK\n# undef mkdtemp\n# if HAVE_RAW_DECL_MKDTEMP\n_GL_WARN_ON_USE (mkdtemp, \"mkdtemp is unportable - \"\n                 \"use gnulib module mkdtemp for portability\");\n# endif\n#endif\n\n#if 0\n/* Create a unique temporary file from TEMPLATE.\n   The last six characters of TEMPLATE must be \"XXXXXX\";\n   they are replaced with a string that makes the file name unique.\n   The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)\n   and O_TEXT, O_BINARY (defined in \"binary-io.h\").\n   The file is then created, with the specified flags, ensuring it didn't exist\n   before.\n   The file is created read-write (mask at least 0600 & ~umask), but it may be\n   world-readable and world-writable (mask 0666 & ~umask), depending on the\n   implementation.\n   Returns the open file descriptor if successful, otherwise -1 and errno\n   set.  */\n# if !1\n_GL_FUNCDECL_SYS (mkostemp, int, (char * /*template*/, int /*flags*/)\n                                 _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (mkostemp, int, (char * /*template*/, int /*flags*/));\n_GL_CXXALIASWARN (mkostemp);\n#elif defined GNULIB_POSIXCHECK\n# undef mkostemp\n# if HAVE_RAW_DECL_MKOSTEMP\n_GL_WARN_ON_USE (mkostemp, \"mkostemp is unportable - \"\n                 \"use gnulib module mkostemp for portability\");\n# endif\n#endif\n\n#if 0\n/* Create a unique temporary file from TEMPLATE.\n   The last six characters of TEMPLATE before a suffix of length\n   SUFFIXLEN must be \"XXXXXX\";\n   they are replaced with a string that makes the file name unique.\n   The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)\n   and O_TEXT, O_BINARY (defined in \"binary-io.h\").\n   The file is then created, with the specified flags, ensuring it didn't exist\n   before.\n   The file is created read-write (mask at least 0600 & ~umask), but it may be\n   world-readable and world-writable (mask 0666 & ~umask), depending on the\n   implementation.\n   Returns the open file descriptor if successful, otherwise -1 and errno\n   set.  */\n# if !1\n_GL_FUNCDECL_SYS (mkostemps, int,\n                  (char * /*template*/, int /*suffixlen*/, int /*flags*/)\n                  _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (mkostemps, int,\n                  (char * /*template*/, int /*suffixlen*/, int /*flags*/));\n_GL_CXXALIASWARN (mkostemps);\n#elif defined GNULIB_POSIXCHECK\n# undef mkostemps\n# if HAVE_RAW_DECL_MKOSTEMPS\n_GL_WARN_ON_USE (mkostemps, \"mkostemps is unportable - \"\n                 \"use gnulib module mkostemps for portability\");\n# endif\n#endif\n\n#if 0\n/* Create a unique temporary file from TEMPLATE.\n   The last six characters of TEMPLATE must be \"XXXXXX\";\n   they are replaced with a string that makes the file name unique.\n   The file is then created, ensuring it didn't exist before.\n   The file is created read-write (mask at least 0600 & ~umask), but it may be\n   world-readable and world-writable (mask 0666 & ~umask), depending on the\n   implementation.\n   Returns the open file descriptor if successful, otherwise -1 and errno\n   set.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mkstemp rpl_mkstemp\n#  endif\n_GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/));\n# else\n#  if ! 1\n_GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/));\n# endif\n_GL_CXXALIASWARN (mkstemp);\n#elif defined GNULIB_POSIXCHECK\n# undef mkstemp\n# if HAVE_RAW_DECL_MKSTEMP\n_GL_WARN_ON_USE (mkstemp, \"mkstemp is unportable - \"\n                 \"use gnulib module mkstemp for portability\");\n# endif\n#endif\n\n#if 0\n/* Create a unique temporary file from TEMPLATE.\n   The last six characters of TEMPLATE prior to a suffix of length\n   SUFFIXLEN must be \"XXXXXX\";\n   they are replaced with a string that makes the file name unique.\n   The file is then created, ensuring it didn't exist before.\n   The file is created read-write (mask at least 0600 & ~umask), but it may be\n   world-readable and world-writable (mask 0666 & ~umask), depending on the\n   implementation.\n   Returns the open file descriptor if successful, otherwise -1 and errno\n   set.  */\n# if !1\n_GL_FUNCDECL_SYS (mkstemps, int, (char * /*template*/, int /*suffixlen*/)\n                                 _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (mkstemps, int, (char * /*template*/, int /*suffixlen*/));\n_GL_CXXALIASWARN (mkstemps);\n#elif defined GNULIB_POSIXCHECK\n# undef mkstemps\n# if HAVE_RAW_DECL_MKSTEMPS\n_GL_WARN_ON_USE (mkstemps, \"mkstemps is unportable - \"\n                 \"use gnulib module mkstemps for portability\");\n# endif\n#endif\n\n#if 0\n/* Return an FD open to the master side of a pseudo-terminal.  Flags should\n   include O_RDWR, and may also include O_NOCTTY.  */\n# if !1\n_GL_FUNCDECL_SYS (posix_openpt, int, (int flags));\n# endif\n_GL_CXXALIAS_SYS (posix_openpt, int, (int flags));\n_GL_CXXALIASWARN (posix_openpt);\n#elif defined GNULIB_POSIXCHECK\n# undef posix_openpt\n# if HAVE_RAW_DECL_POSIX_OPENPT\n_GL_WARN_ON_USE (posix_openpt, \"posix_openpt is not portable - \"\n                 \"use gnulib module posix_openpt for portability\");\n# endif\n#endif\n\n#if 0\n/* Return the pathname of the pseudo-terminal slave associated with\n   the master FD is open on, or NULL on errors.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ptsname\n#   define ptsname rpl_ptsname\n#  endif\n_GL_FUNCDECL_RPL (ptsname, char *, (int fd));\n_GL_CXXALIAS_RPL (ptsname, char *, (int fd));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (ptsname, char *, (int fd));\n#  endif\n_GL_CXXALIAS_SYS (ptsname, char *, (int fd));\n# endif\n_GL_CXXALIASWARN (ptsname);\n#elif defined GNULIB_POSIXCHECK\n# undef ptsname\n# if HAVE_RAW_DECL_PTSNAME\n_GL_WARN_ON_USE (ptsname, \"ptsname is not portable - \"\n                 \"use gnulib module ptsname for portability\");\n# endif\n#endif\n\n#if 0\n/* Set the pathname of the pseudo-terminal slave associated with\n   the master FD is open on and return 0, or set errno and return\n   non-zero on errors.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ptsname_r\n#   define ptsname_r rpl_ptsname_r\n#  endif\n_GL_FUNCDECL_RPL (ptsname_r, int, (int fd, char *buf, size_t len));\n_GL_CXXALIAS_RPL (ptsname_r, int, (int fd, char *buf, size_t len));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (ptsname_r, int, (int fd, char *buf, size_t len));\n#  endif\n_GL_CXXALIAS_SYS (ptsname_r, int, (int fd, char *buf, size_t len));\n# endif\n_GL_CXXALIASWARN (ptsname_r);\n#elif defined GNULIB_POSIXCHECK\n# undef ptsname_r\n# if HAVE_RAW_DECL_PTSNAME_R\n_GL_WARN_ON_USE (ptsname_r, \"ptsname_r is not portable - \"\n                 \"use gnulib module ptsname_r for portability\");\n# endif\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef putenv\n#   define putenv rpl_putenv\n#  endif\n_GL_FUNCDECL_RPL (putenv, int, (char *string) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (putenv, int, (char *string));\n# else\n_GL_CXXALIAS_SYS (putenv, int, (char *string));\n# endif\n_GL_CXXALIASWARN (putenv);\n#endif\n\n#if 0\n/* Sort an array of NMEMB elements, starting at address BASE, each element\n   occupying SIZE bytes, in ascending order according to the comparison\n   function COMPARE.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef qsort_r\n#   define qsort_r rpl_qsort_r\n#  endif\n_GL_FUNCDECL_RPL (qsort_r, void, (void *base, size_t nmemb, size_t size,\n                                  int (*compare) (void const *, void const *,\n                                                  void *),\n                                  void *arg) _GL_ARG_NONNULL ((1, 4)));\n_GL_CXXALIAS_RPL (qsort_r, void, (void *base, size_t nmemb, size_t size,\n                                  int (*compare) (void const *, void const *,\n                                                  void *),\n                                  void *arg));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (qsort_r, void, (void *base, size_t nmemb, size_t size,\n                                  int (*compare) (void const *, void const *,\n                                                  void *),\n                                  void *arg) _GL_ARG_NONNULL ((1, 4)));\n#  endif\n_GL_CXXALIAS_SYS (qsort_r, void, (void *base, size_t nmemb, size_t size,\n                                  int (*compare) (void const *, void const *,\n                                                  void *),\n                                  void *arg));\n# endif\n_GL_CXXALIASWARN (qsort_r);\n#elif defined GNULIB_POSIXCHECK\n# undef qsort_r\n# if HAVE_RAW_DECL_QSORT_R\n_GL_WARN_ON_USE (qsort_r, \"qsort_r is not portable - \"\n                 \"use gnulib module qsort_r for portability\");\n# endif\n#endif\n\n\n#if 0\n# if !1\n#  ifndef RAND_MAX\n#   define RAND_MAX 2147483647\n#  endif\n# endif\n#endif\n\n\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (random, long, (void));\n# endif\n_GL_CXXALIAS_SYS (random, long, (void));\n_GL_CXXALIASWARN (random);\n#elif defined GNULIB_POSIXCHECK\n# undef random\n# if HAVE_RAW_DECL_RANDOM\n_GL_WARN_ON_USE (random, \"random is unportable - \"\n                 \"use gnulib module random for portability\");\n# endif\n#endif\n\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (srandom, void, (unsigned int seed));\n# endif\n_GL_CXXALIAS_SYS (srandom, void, (unsigned int seed));\n_GL_CXXALIASWARN (srandom);\n#elif defined GNULIB_POSIXCHECK\n# undef srandom\n# if HAVE_RAW_DECL_SRANDOM\n_GL_WARN_ON_USE (srandom, \"srandom is unportable - \"\n                 \"use gnulib module random for portability\");\n# endif\n#endif\n\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (initstate, char *,\n                  (unsigned int seed, char *buf, size_t buf_size)\n                  _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (initstate, char *,\n                  (unsigned int seed, char *buf, size_t buf_size));\n_GL_CXXALIASWARN (initstate);\n#elif defined GNULIB_POSIXCHECK\n# undef initstate\n# if HAVE_RAW_DECL_INITSTATE_R\n_GL_WARN_ON_USE (initstate, \"initstate is unportable - \"\n                 \"use gnulib module random for portability\");\n# endif\n#endif\n\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (setstate, char *, (char *arg_state) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (setstate, char *, (char *arg_state));\n_GL_CXXALIASWARN (setstate);\n#elif defined GNULIB_POSIXCHECK\n# undef setstate\n# if HAVE_RAW_DECL_SETSTATE_R\n_GL_WARN_ON_USE (setstate, \"setstate is unportable - \"\n                 \"use gnulib module random for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef random_r\n#   define random_r rpl_random_r\n#  endif\n_GL_FUNCDECL_RPL (random_r, int, (struct random_data *buf, int32_t *result)\n                                 _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (random_r, int, (struct random_data *buf, int32_t *result));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (random_r, int, (struct random_data *buf, int32_t *result)\n                                 _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (random_r, int, (struct random_data *buf, int32_t *result));\n# endif\n_GL_CXXALIASWARN (random_r);\n#elif defined GNULIB_POSIXCHECK\n# undef random_r\n# if HAVE_RAW_DECL_RANDOM_R\n_GL_WARN_ON_USE (random_r, \"random_r is unportable - \"\n                 \"use gnulib module random_r for portability\");\n# endif\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef srandom_r\n#   define srandom_r rpl_srandom_r\n#  endif\n_GL_FUNCDECL_RPL (srandom_r, int,\n                  (unsigned int seed, struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (srandom_r, int,\n                  (unsigned int seed, struct random_data *rand_state));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (srandom_r, int,\n                  (unsigned int seed, struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (srandom_r, int,\n                  (unsigned int seed, struct random_data *rand_state));\n# endif\n_GL_CXXALIASWARN (srandom_r);\n#elif defined GNULIB_POSIXCHECK\n# undef srandom_r\n# if HAVE_RAW_DECL_SRANDOM_R\n_GL_WARN_ON_USE (srandom_r, \"srandom_r is unportable - \"\n                 \"use gnulib module random_r for portability\");\n# endif\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef initstate_r\n#   define initstate_r rpl_initstate_r\n#  endif\n_GL_FUNCDECL_RPL (initstate_r, int,\n                  (unsigned int seed, char *buf, size_t buf_size,\n                   struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((2, 4)));\n_GL_CXXALIAS_RPL (initstate_r, int,\n                  (unsigned int seed, char *buf, size_t buf_size,\n                   struct random_data *rand_state));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (initstate_r, int,\n                  (unsigned int seed, char *buf, size_t buf_size,\n                   struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((2, 4)));\n#  endif\n_GL_CXXALIAS_SYS (initstate_r, int,\n                  (unsigned int seed, char *buf, size_t buf_size,\n                   struct random_data *rand_state));\n# endif\n_GL_CXXALIASWARN (initstate_r);\n#elif defined GNULIB_POSIXCHECK\n# undef initstate_r\n# if HAVE_RAW_DECL_INITSTATE_R\n_GL_WARN_ON_USE (initstate_r, \"initstate_r is unportable - \"\n                 \"use gnulib module random_r for portability\");\n# endif\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef setstate_r\n#   define setstate_r rpl_setstate_r\n#  endif\n_GL_FUNCDECL_RPL (setstate_r, int,\n                  (char *arg_state, struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (setstate_r, int,\n                  (char *arg_state, struct random_data *rand_state));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (setstate_r, int,\n                  (char *arg_state, struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (setstate_r, int,\n                  (char *arg_state, struct random_data *rand_state));\n# endif\n_GL_CXXALIASWARN (setstate_r);\n#elif defined GNULIB_POSIXCHECK\n# undef setstate_r\n# if HAVE_RAW_DECL_SETSTATE_R\n_GL_WARN_ON_USE (setstate_r, \"setstate_r is unportable - \"\n                 \"use gnulib module random_r for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !((defined __cplusplus && defined GNULIB_NAMESPACE) \\\n        || _GL_USE_STDLIB_ALLOC)\n#   undef realloc\n#   define realloc rpl_realloc\n#  endif\n_GL_FUNCDECL_RPL (realloc, void *, (void *ptr, size_t size));\n_GL_CXXALIAS_RPL (realloc, void *, (void *ptr, size_t size));\n# else\n_GL_CXXALIAS_SYS (realloc, void *, (void *ptr, size_t size));\n# endif\n_GL_CXXALIASWARN (realloc);\n#elif defined GNULIB_POSIXCHECK && !_GL_USE_STDLIB_ALLOC\n# undef realloc\n/* Assume realloc is always declared.  */\n_GL_WARN_ON_USE (realloc, \"realloc is not POSIX compliant everywhere - \"\n                 \"use gnulib module realloc-posix for portability\");\n#endif\n\n#if 1\n# if 1\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define realpath rpl_realpath\n#  endif\n_GL_FUNCDECL_RPL (realpath, char *, (const char *name, char *resolved)\n                                    _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (realpath, char *, (const char *name, char *resolved));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (realpath, char *, (const char *name, char *resolved)\n                                    _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (realpath, char *, (const char *name, char *resolved));\n# endif\n_GL_CXXALIASWARN (realpath);\n#elif defined GNULIB_POSIXCHECK\n# undef realpath\n# if HAVE_RAW_DECL_REALPATH\n_GL_WARN_ON_USE (realpath, \"realpath is unportable - use gnulib module \"\n                 \"canonicalize or canonicalize-lgpl for portability\");\n# endif\n#endif\n\n#if 0\n/* Test a user response to a question.\n   Return 1 if it is affirmative, 0 if it is negative, or -1 if not clear.  */\n# if !1\n_GL_FUNCDECL_SYS (rpmatch, int, (const char *response) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (rpmatch, int, (const char *response));\n_GL_CXXALIASWARN (rpmatch);\n#elif defined GNULIB_POSIXCHECK\n# undef rpmatch\n# if HAVE_RAW_DECL_RPMATCH\n_GL_WARN_ON_USE (rpmatch, \"rpmatch is unportable - \"\n                 \"use gnulib module rpmatch for portability\");\n# endif\n#endif\n\n#if 0\n/* Look up NAME in the environment, returning 0 in insecure situations.  */\n# if !1\n_GL_FUNCDECL_SYS (secure_getenv, char *,\n                  (char const *name) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (secure_getenv, char *, (char const *name));\n_GL_CXXALIASWARN (secure_getenv);\n#elif defined GNULIB_POSIXCHECK\n# undef secure_getenv\n# if HAVE_RAW_DECL_SECURE_GETENV\n_GL_WARN_ON_USE (secure_getenv, \"secure_getenv is unportable - \"\n                 \"use gnulib module secure_getenv for portability\");\n# endif\n#endif\n\n#if 0\n/* Set NAME to VALUE in the environment.\n   If REPLACE is nonzero, overwrite an existing value.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef setenv\n#   define setenv rpl_setenv\n#  endif\n_GL_FUNCDECL_RPL (setenv, int,\n                  (const char *name, const char *value, int replace)\n                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (setenv, int,\n                  (const char *name, const char *value, int replace));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (setenv, int,\n                  (const char *name, const char *value, int replace)\n                  _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (setenv, int,\n                  (const char *name, const char *value, int replace));\n# endif\n# if !(0 && !1)\n_GL_CXXALIASWARN (setenv);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef setenv\n# if HAVE_RAW_DECL_SETENV\n_GL_WARN_ON_USE (setenv, \"setenv is unportable - \"\n                 \"use gnulib module setenv for portability\");\n# endif\n#endif\n\n#if 0\n /* Parse a double from STRING, updating ENDP if appropriate.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define strtod rpl_strtod\n#  endif\n_GL_FUNCDECL_RPL (strtod, double, (const char *str, char **endp)\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (strtod, double, (const char *str, char **endp));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (strtod, double, (const char *str, char **endp)\n                                  _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (strtod, double, (const char *str, char **endp));\n# endif\n_GL_CXXALIASWARN (strtod);\n#elif defined GNULIB_POSIXCHECK\n# undef strtod\n# if HAVE_RAW_DECL_STRTOD\n_GL_WARN_ON_USE (strtod, \"strtod is unportable - \"\n                 \"use gnulib module strtod for portability\");\n# endif\n#endif\n\n#if 0\n/* Parse a signed integer whose textual representation starts at STRING.\n   The integer is expected to be in base BASE (2 <= BASE <= 36); if BASE == 0,\n   it may be decimal or octal (with prefix \"0\") or hexadecimal (with prefix\n   \"0x\").\n   If ENDPTR is not NULL, the address of the first byte after the integer is\n   stored in *ENDPTR.\n   Upon overflow, the return value is LLONG_MAX or LLONG_MIN, and errno is set\n   to ERANGE.  */\n# if !1\n_GL_FUNCDECL_SYS (strtoll, long long,\n                  (const char *string, char **endptr, int base)\n                  _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (strtoll, long long,\n                  (const char *string, char **endptr, int base));\n_GL_CXXALIASWARN (strtoll);\n#elif defined GNULIB_POSIXCHECK\n# undef strtoll\n# if HAVE_RAW_DECL_STRTOLL\n_GL_WARN_ON_USE (strtoll, \"strtoll is unportable - \"\n                 \"use gnulib module strtoll for portability\");\n# endif\n#endif\n\n#if 0\n/* Parse an unsigned integer whose textual representation starts at STRING.\n   The integer is expected to be in base BASE (2 <= BASE <= 36); if BASE == 0,\n   it may be decimal or octal (with prefix \"0\") or hexadecimal (with prefix\n   \"0x\").\n   If ENDPTR is not NULL, the address of the first byte after the integer is\n   stored in *ENDPTR.\n   Upon overflow, the return value is ULLONG_MAX, and errno is set to\n   ERANGE.  */\n# if !1\n_GL_FUNCDECL_SYS (strtoull, unsigned long long,\n                  (const char *string, char **endptr, int base)\n                  _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (strtoull, unsigned long long,\n                  (const char *string, char **endptr, int base));\n_GL_CXXALIASWARN (strtoull);\n#elif defined GNULIB_POSIXCHECK\n# undef strtoull\n# if HAVE_RAW_DECL_STRTOULL\n_GL_WARN_ON_USE (strtoull, \"strtoull is unportable - \"\n                 \"use gnulib module strtoull for portability\");\n# endif\n#endif\n\n#if 0\n/* Unlock the slave side of the pseudo-terminal whose master side is specified\n   by FD, so that it can be opened.  */\n# if !1\n_GL_FUNCDECL_SYS (unlockpt, int, (int fd));\n# endif\n_GL_CXXALIAS_SYS (unlockpt, int, (int fd));\n_GL_CXXALIASWARN (unlockpt);\n#elif defined GNULIB_POSIXCHECK\n# undef unlockpt\n# if HAVE_RAW_DECL_UNLOCKPT\n_GL_WARN_ON_USE (unlockpt, \"unlockpt is not portable - \"\n                 \"use gnulib module unlockpt for portability\");\n# endif\n#endif\n\n#if 0\n/* Remove the variable NAME from the environment.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef unsetenv\n#   define unsetenv rpl_unsetenv\n#  endif\n_GL_FUNCDECL_RPL (unsetenv, int, (const char *name) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (unsetenv, int, (const char *name));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (unsetenv, int, (const char *name) _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (unsetenv, int, (const char *name));\n# endif\n# if !(0 && !1)\n_GL_CXXALIASWARN (unsetenv);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef unsetenv\n# if HAVE_RAW_DECL_UNSETENV\n_GL_WARN_ON_USE (unsetenv, \"unsetenv is unportable - \"\n                 \"use gnulib module unsetenv for portability\");\n# endif\n#endif\n\n/* Convert a wide character to a multibyte character.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef wctomb\n#   define wctomb rpl_wctomb\n#  endif\n_GL_FUNCDECL_RPL (wctomb, int, (char *s, wchar_t wc));\n_GL_CXXALIAS_RPL (wctomb, int, (char *s, wchar_t wc));\n# else\n_GL_CXXALIAS_SYS (wctomb, int, (char *s, wchar_t wc));\n# endif\n_GL_CXXALIASWARN (wctomb);\n#endif\n\n\n#endif /* _GL_STDLIB_H */\n#endif /* _GL_STDLIB_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/stdlib.in.h",
    "content": "/* A GNU-like <stdlib.h>.\n\n   Copyright (C) 1995, 2001-2004, 2006-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n#if defined __need_system_stdlib_h || defined __need_malloc_and_calloc\n/* Special invocation conventions inside some gnulib header files,\n   and inside some glibc header files, respectively.  */\n\n#@INCLUDE_NEXT@ @NEXT_STDLIB_H@\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _@GUARD_PREFIX@_STDLIB_H\n\n/* The include_next requires a split double-inclusion guard.  */\n#@INCLUDE_NEXT@ @NEXT_STDLIB_H@\n\n#ifndef _@GUARD_PREFIX@_STDLIB_H\n#define _@GUARD_PREFIX@_STDLIB_H\n\n/* NetBSD 5.0 mis-defines NULL.  */\n#include <stddef.h>\n\n/* MirBSD 10 defines WEXITSTATUS in <sys/wait.h>, not in <stdlib.h>.  */\n#if @GNULIB_SYSTEM_POSIX@ && !defined WEXITSTATUS\n# include <sys/wait.h>\n#endif\n\n/* Solaris declares getloadavg() in <sys/loadavg.h>.  */\n#if (@GNULIB_GETLOADAVG@ || defined GNULIB_POSIXCHECK) && @HAVE_SYS_LOADAVG_H@\n# include <sys/loadavg.h>\n#endif\n\n/* Native Windows platforms declare mktemp() in <io.h>.  */\n#if 0 && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)\n# include <io.h>\n#endif\n\n#if @GNULIB_RANDOM_R@\n\n/* OSF/1 5.1 declares 'struct random_data' in <random.h>, which is included\n   from <stdlib.h> if _REENTRANT is defined.  Include it whenever we need\n   'struct random_data'.  */\n# if @HAVE_RANDOM_H@\n#  include <random.h>\n# endif\n\n# if !@HAVE_STRUCT_RANDOM_DATA@ || @REPLACE_RANDOM_R@ || !@HAVE_RANDOM_R@\n#  include <stdint.h>\n# endif\n\n# if !@HAVE_STRUCT_RANDOM_DATA@\n/* Define 'struct random_data'.\n   But allow multiple gnulib generated <stdlib.h> replacements to coexist.  */\n#  if !GNULIB_defined_struct_random_data\nstruct random_data\n{\n  int32_t *fptr;                /* Front pointer.  */\n  int32_t *rptr;                /* Rear pointer.  */\n  int32_t *state;               /* Array of state values.  */\n  int rand_type;                /* Type of random number generator.  */\n  int rand_deg;                 /* Degree of random number generator.  */\n  int rand_sep;                 /* Distance between front and rear.  */\n  int32_t *end_ptr;             /* Pointer behind state table.  */\n};\n#   define GNULIB_defined_struct_random_data 1\n#  endif\n# endif\n#endif\n\n#if (@GNULIB_MKSTEMP@ || @GNULIB_MKSTEMPS@ || @GNULIB_GETSUBOPT@ || defined GNULIB_POSIXCHECK) && ! defined __GLIBC__ && !((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)\n/* On Mac OS X 10.3, only <unistd.h> declares mkstemp.  */\n/* On Mac OS X 10.5, only <unistd.h> declares mkstemps.  */\n/* On Cygwin 1.7.1, only <unistd.h> declares getsubopt.  */\n/* But avoid namespace pollution on glibc systems and native Windows.  */\n# include <unistd.h>\n#endif\n\n/* The __attribute__ feature is available in gcc versions 2.5 and later.\n   The attribute __pure__ was added in gcc 2.96.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)\n# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))\n#else\n# define _GL_ATTRIBUTE_PURE /* empty */\n#endif\n\n/* The definition of _Noreturn is copied here.  */\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n\n\n/* Some systems do not define EXIT_*, despite otherwise supporting C89.  */\n#ifndef EXIT_SUCCESS\n# define EXIT_SUCCESS 0\n#endif\n/* Tandem/NSK and other platforms that define EXIT_FAILURE as -1 interfere\n   with proper operation of xargs.  */\n#ifndef EXIT_FAILURE\n# define EXIT_FAILURE 1\n#elif EXIT_FAILURE != 1\n# undef EXIT_FAILURE\n# define EXIT_FAILURE 1\n#endif\n\n\n#if @GNULIB__EXIT@\n/* Terminate the current process with the given return code, without running\n   the 'atexit' handlers.  */\n# if !@HAVE__EXIT@\n_GL_FUNCDECL_SYS (_Exit, _Noreturn void, (int status));\n# endif\n_GL_CXXALIAS_SYS (_Exit, void, (int status));\n_GL_CXXALIASWARN (_Exit);\n#elif defined GNULIB_POSIXCHECK\n# undef _Exit\n# if HAVE_RAW_DECL__EXIT\n_GL_WARN_ON_USE (_Exit, \"_Exit is unportable - \"\n                 \"use gnulib module _Exit for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_ATOLL@\n/* Parse a signed decimal integer.\n   Returns the value of the integer.  Errors are not detected.  */\n# if !@HAVE_ATOLL@\n_GL_FUNCDECL_SYS (atoll, long long, (const char *string)\n                                    _GL_ATTRIBUTE_PURE\n                                    _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (atoll, long long, (const char *string));\n_GL_CXXALIASWARN (atoll);\n#elif defined GNULIB_POSIXCHECK\n# undef atoll\n# if HAVE_RAW_DECL_ATOLL\n_GL_WARN_ON_USE (atoll, \"atoll is unportable - \"\n                 \"use gnulib module atoll for portability\");\n# endif\n#endif\n\n#if @GNULIB_CALLOC_POSIX@\n# if @REPLACE_CALLOC@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef calloc\n#   define calloc rpl_calloc\n#  endif\n_GL_FUNCDECL_RPL (calloc, void *, (size_t nmemb, size_t size));\n_GL_CXXALIAS_RPL (calloc, void *, (size_t nmemb, size_t size));\n# else\n_GL_CXXALIAS_SYS (calloc, void *, (size_t nmemb, size_t size));\n# endif\n_GL_CXXALIASWARN (calloc);\n#elif defined GNULIB_POSIXCHECK\n# undef calloc\n/* Assume calloc is always declared.  */\n_GL_WARN_ON_USE (calloc, \"calloc is not POSIX compliant everywhere - \"\n                 \"use gnulib module calloc-posix for portability\");\n#endif\n\n#if @GNULIB_CANONICALIZE_FILE_NAME@\n# if @REPLACE_CANONICALIZE_FILE_NAME@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define canonicalize_file_name rpl_canonicalize_file_name\n#  endif\n_GL_FUNCDECL_RPL (canonicalize_file_name, char *, (const char *name)\n                                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (canonicalize_file_name, char *, (const char *name));\n# else\n#  if !@HAVE_CANONICALIZE_FILE_NAME@\n_GL_FUNCDECL_SYS (canonicalize_file_name, char *, (const char *name)\n                                                  _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (canonicalize_file_name, char *, (const char *name));\n# endif\n_GL_CXXALIASWARN (canonicalize_file_name);\n#elif defined GNULIB_POSIXCHECK\n# undef canonicalize_file_name\n# if HAVE_RAW_DECL_CANONICALIZE_FILE_NAME\n_GL_WARN_ON_USE (canonicalize_file_name,\n                 \"canonicalize_file_name is unportable - \"\n                 \"use gnulib module canonicalize-lgpl for portability\");\n# endif\n#endif\n\n#if @GNULIB_GETLOADAVG@\n/* Store max(NELEM,3) load average numbers in LOADAVG[].\n   The three numbers are the load average of the last 1 minute, the last 5\n   minutes, and the last 15 minutes, respectively.\n   LOADAVG is an array of NELEM numbers.  */\n# if !@HAVE_DECL_GETLOADAVG@\n_GL_FUNCDECL_SYS (getloadavg, int, (double loadavg[], int nelem)\n                                   _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (getloadavg, int, (double loadavg[], int nelem));\n_GL_CXXALIASWARN (getloadavg);\n#elif defined GNULIB_POSIXCHECK\n# undef getloadavg\n# if HAVE_RAW_DECL_GETLOADAVG\n_GL_WARN_ON_USE (getloadavg, \"getloadavg is not portable - \"\n                 \"use gnulib module getloadavg for portability\");\n# endif\n#endif\n\n#if @GNULIB_GETSUBOPT@\n/* Assuming *OPTIONP is a comma separated list of elements of the form\n   \"token\" or \"token=value\", getsubopt parses the first of these elements.\n   If the first element refers to a \"token\" that is member of the given\n   NULL-terminated array of tokens:\n     - It replaces the comma with a NUL byte, updates *OPTIONP to point past\n       the first option and the comma, sets *VALUEP to the value of the\n       element (or NULL if it doesn't contain an \"=\" sign),\n     - It returns the index of the \"token\" in the given array of tokens.\n   Otherwise it returns -1, and *OPTIONP and *VALUEP are undefined.\n   For more details see the POSIX:2001 specification.\n   http://www.opengroup.org/susv3xsh/getsubopt.html */\n# if !@HAVE_GETSUBOPT@\n_GL_FUNCDECL_SYS (getsubopt, int,\n                  (char **optionp, char *const *tokens, char **valuep)\n                  _GL_ARG_NONNULL ((1, 2, 3)));\n# endif\n_GL_CXXALIAS_SYS (getsubopt, int,\n                  (char **optionp, char *const *tokens, char **valuep));\n_GL_CXXALIASWARN (getsubopt);\n#elif defined GNULIB_POSIXCHECK\n# undef getsubopt\n# if HAVE_RAW_DECL_GETSUBOPT\n_GL_WARN_ON_USE (getsubopt, \"getsubopt is unportable - \"\n                 \"use gnulib module getsubopt for portability\");\n# endif\n#endif\n\n#if @GNULIB_GRANTPT@\n/* Change the ownership and access permission of the slave side of the\n   pseudo-terminal whose master side is specified by FD.  */\n# if !@HAVE_GRANTPT@\n_GL_FUNCDECL_SYS (grantpt, int, (int fd));\n# endif\n_GL_CXXALIAS_SYS (grantpt, int, (int fd));\n_GL_CXXALIASWARN (grantpt);\n#elif defined GNULIB_POSIXCHECK\n# undef grantpt\n# if HAVE_RAW_DECL_GRANTPT\n_GL_WARN_ON_USE (grantpt, \"grantpt is not portable - \"\n                 \"use gnulib module grantpt for portability\");\n# endif\n#endif\n\n/* If _GL_USE_STDLIB_ALLOC is nonzero, the including module does not\n   rely on GNU or POSIX semantics for malloc and realloc (for example,\n   by never specifying a zero size), so it does not need malloc or\n   realloc to be redefined.  */\n#if @GNULIB_MALLOC_POSIX@\n# if @REPLACE_MALLOC@\n#  if !((defined __cplusplus && defined GNULIB_NAMESPACE) \\\n        || _GL_USE_STDLIB_ALLOC)\n#   undef malloc\n#   define malloc rpl_malloc\n#  endif\n_GL_FUNCDECL_RPL (malloc, void *, (size_t size));\n_GL_CXXALIAS_RPL (malloc, void *, (size_t size));\n# else\n_GL_CXXALIAS_SYS (malloc, void *, (size_t size));\n# endif\n_GL_CXXALIASWARN (malloc);\n#elif defined GNULIB_POSIXCHECK && !_GL_USE_STDLIB_ALLOC\n# undef malloc\n/* Assume malloc is always declared.  */\n_GL_WARN_ON_USE (malloc, \"malloc is not POSIX compliant everywhere - \"\n                 \"use gnulib module malloc-posix for portability\");\n#endif\n\n/* Convert a multibyte character to a wide character.  */\n#if @GNULIB_MBTOWC@\n# if @REPLACE_MBTOWC@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef mbtowc\n#   define mbtowc rpl_mbtowc\n#  endif\n_GL_FUNCDECL_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));\n_GL_CXXALIAS_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));\n# else\n_GL_CXXALIAS_SYS (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));\n# endif\n_GL_CXXALIASWARN (mbtowc);\n#endif\n\n#if @GNULIB_MKDTEMP@\n/* Create a unique temporary directory from TEMPLATE.\n   The last six characters of TEMPLATE must be \"XXXXXX\";\n   they are replaced with a string that makes the directory name unique.\n   Returns TEMPLATE, or a null pointer if it cannot get a unique name.\n   The directory is created mode 700.  */\n# if !@HAVE_MKDTEMP@\n_GL_FUNCDECL_SYS (mkdtemp, char *, (char * /*template*/) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (mkdtemp, char *, (char * /*template*/));\n_GL_CXXALIASWARN (mkdtemp);\n#elif defined GNULIB_POSIXCHECK\n# undef mkdtemp\n# if HAVE_RAW_DECL_MKDTEMP\n_GL_WARN_ON_USE (mkdtemp, \"mkdtemp is unportable - \"\n                 \"use gnulib module mkdtemp for portability\");\n# endif\n#endif\n\n#if @GNULIB_MKOSTEMP@\n/* Create a unique temporary file from TEMPLATE.\n   The last six characters of TEMPLATE must be \"XXXXXX\";\n   they are replaced with a string that makes the file name unique.\n   The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)\n   and O_TEXT, O_BINARY (defined in \"binary-io.h\").\n   The file is then created, with the specified flags, ensuring it didn't exist\n   before.\n   The file is created read-write (mask at least 0600 & ~umask), but it may be\n   world-readable and world-writable (mask 0666 & ~umask), depending on the\n   implementation.\n   Returns the open file descriptor if successful, otherwise -1 and errno\n   set.  */\n# if !@HAVE_MKOSTEMP@\n_GL_FUNCDECL_SYS (mkostemp, int, (char * /*template*/, int /*flags*/)\n                                 _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (mkostemp, int, (char * /*template*/, int /*flags*/));\n_GL_CXXALIASWARN (mkostemp);\n#elif defined GNULIB_POSIXCHECK\n# undef mkostemp\n# if HAVE_RAW_DECL_MKOSTEMP\n_GL_WARN_ON_USE (mkostemp, \"mkostemp is unportable - \"\n                 \"use gnulib module mkostemp for portability\");\n# endif\n#endif\n\n#if @GNULIB_MKOSTEMPS@\n/* Create a unique temporary file from TEMPLATE.\n   The last six characters of TEMPLATE before a suffix of length\n   SUFFIXLEN must be \"XXXXXX\";\n   they are replaced with a string that makes the file name unique.\n   The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)\n   and O_TEXT, O_BINARY (defined in \"binary-io.h\").\n   The file is then created, with the specified flags, ensuring it didn't exist\n   before.\n   The file is created read-write (mask at least 0600 & ~umask), but it may be\n   world-readable and world-writable (mask 0666 & ~umask), depending on the\n   implementation.\n   Returns the open file descriptor if successful, otherwise -1 and errno\n   set.  */\n# if !@HAVE_MKOSTEMPS@\n_GL_FUNCDECL_SYS (mkostemps, int,\n                  (char * /*template*/, int /*suffixlen*/, int /*flags*/)\n                  _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (mkostemps, int,\n                  (char * /*template*/, int /*suffixlen*/, int /*flags*/));\n_GL_CXXALIASWARN (mkostemps);\n#elif defined GNULIB_POSIXCHECK\n# undef mkostemps\n# if HAVE_RAW_DECL_MKOSTEMPS\n_GL_WARN_ON_USE (mkostemps, \"mkostemps is unportable - \"\n                 \"use gnulib module mkostemps for portability\");\n# endif\n#endif\n\n#if @GNULIB_MKSTEMP@\n/* Create a unique temporary file from TEMPLATE.\n   The last six characters of TEMPLATE must be \"XXXXXX\";\n   they are replaced with a string that makes the file name unique.\n   The file is then created, ensuring it didn't exist before.\n   The file is created read-write (mask at least 0600 & ~umask), but it may be\n   world-readable and world-writable (mask 0666 & ~umask), depending on the\n   implementation.\n   Returns the open file descriptor if successful, otherwise -1 and errno\n   set.  */\n# if @REPLACE_MKSTEMP@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mkstemp rpl_mkstemp\n#  endif\n_GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/));\n# else\n#  if ! @HAVE_MKSTEMP@\n_GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/));\n# endif\n_GL_CXXALIASWARN (mkstemp);\n#elif defined GNULIB_POSIXCHECK\n# undef mkstemp\n# if HAVE_RAW_DECL_MKSTEMP\n_GL_WARN_ON_USE (mkstemp, \"mkstemp is unportable - \"\n                 \"use gnulib module mkstemp for portability\");\n# endif\n#endif\n\n#if @GNULIB_MKSTEMPS@\n/* Create a unique temporary file from TEMPLATE.\n   The last six characters of TEMPLATE prior to a suffix of length\n   SUFFIXLEN must be \"XXXXXX\";\n   they are replaced with a string that makes the file name unique.\n   The file is then created, ensuring it didn't exist before.\n   The file is created read-write (mask at least 0600 & ~umask), but it may be\n   world-readable and world-writable (mask 0666 & ~umask), depending on the\n   implementation.\n   Returns the open file descriptor if successful, otherwise -1 and errno\n   set.  */\n# if !@HAVE_MKSTEMPS@\n_GL_FUNCDECL_SYS (mkstemps, int, (char * /*template*/, int /*suffixlen*/)\n                                 _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (mkstemps, int, (char * /*template*/, int /*suffixlen*/));\n_GL_CXXALIASWARN (mkstemps);\n#elif defined GNULIB_POSIXCHECK\n# undef mkstemps\n# if HAVE_RAW_DECL_MKSTEMPS\n_GL_WARN_ON_USE (mkstemps, \"mkstemps is unportable - \"\n                 \"use gnulib module mkstemps for portability\");\n# endif\n#endif\n\n#if @GNULIB_POSIX_OPENPT@\n/* Return an FD open to the master side of a pseudo-terminal.  Flags should\n   include O_RDWR, and may also include O_NOCTTY.  */\n# if !@HAVE_POSIX_OPENPT@\n_GL_FUNCDECL_SYS (posix_openpt, int, (int flags));\n# endif\n_GL_CXXALIAS_SYS (posix_openpt, int, (int flags));\n_GL_CXXALIASWARN (posix_openpt);\n#elif defined GNULIB_POSIXCHECK\n# undef posix_openpt\n# if HAVE_RAW_DECL_POSIX_OPENPT\n_GL_WARN_ON_USE (posix_openpt, \"posix_openpt is not portable - \"\n                 \"use gnulib module posix_openpt for portability\");\n# endif\n#endif\n\n#if @GNULIB_PTSNAME@\n/* Return the pathname of the pseudo-terminal slave associated with\n   the master FD is open on, or NULL on errors.  */\n# if @REPLACE_PTSNAME@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ptsname\n#   define ptsname rpl_ptsname\n#  endif\n_GL_FUNCDECL_RPL (ptsname, char *, (int fd));\n_GL_CXXALIAS_RPL (ptsname, char *, (int fd));\n# else\n#  if !@HAVE_PTSNAME@\n_GL_FUNCDECL_SYS (ptsname, char *, (int fd));\n#  endif\n_GL_CXXALIAS_SYS (ptsname, char *, (int fd));\n# endif\n_GL_CXXALIASWARN (ptsname);\n#elif defined GNULIB_POSIXCHECK\n# undef ptsname\n# if HAVE_RAW_DECL_PTSNAME\n_GL_WARN_ON_USE (ptsname, \"ptsname is not portable - \"\n                 \"use gnulib module ptsname for portability\");\n# endif\n#endif\n\n#if @GNULIB_PTSNAME_R@\n/* Set the pathname of the pseudo-terminal slave associated with\n   the master FD is open on and return 0, or set errno and return\n   non-zero on errors.  */\n# if @REPLACE_PTSNAME_R@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ptsname_r\n#   define ptsname_r rpl_ptsname_r\n#  endif\n_GL_FUNCDECL_RPL (ptsname_r, int, (int fd, char *buf, size_t len));\n_GL_CXXALIAS_RPL (ptsname_r, int, (int fd, char *buf, size_t len));\n# else\n#  if !@HAVE_PTSNAME_R@\n_GL_FUNCDECL_SYS (ptsname_r, int, (int fd, char *buf, size_t len));\n#  endif\n_GL_CXXALIAS_SYS (ptsname_r, int, (int fd, char *buf, size_t len));\n# endif\n_GL_CXXALIASWARN (ptsname_r);\n#elif defined GNULIB_POSIXCHECK\n# undef ptsname_r\n# if HAVE_RAW_DECL_PTSNAME_R\n_GL_WARN_ON_USE (ptsname_r, \"ptsname_r is not portable - \"\n                 \"use gnulib module ptsname_r for portability\");\n# endif\n#endif\n\n#if @GNULIB_PUTENV@\n# if @REPLACE_PUTENV@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef putenv\n#   define putenv rpl_putenv\n#  endif\n_GL_FUNCDECL_RPL (putenv, int, (char *string) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (putenv, int, (char *string));\n# else\n_GL_CXXALIAS_SYS (putenv, int, (char *string));\n# endif\n_GL_CXXALIASWARN (putenv);\n#endif\n\n#if @GNULIB_QSORT_R@\n/* Sort an array of NMEMB elements, starting at address BASE, each element\n   occupying SIZE bytes, in ascending order according to the comparison\n   function COMPARE.  */\n# if @REPLACE_QSORT_R@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef qsort_r\n#   define qsort_r rpl_qsort_r\n#  endif\n_GL_FUNCDECL_RPL (qsort_r, void, (void *base, size_t nmemb, size_t size,\n                                  int (*compare) (void const *, void const *,\n                                                  void *),\n                                  void *arg) _GL_ARG_NONNULL ((1, 4)));\n_GL_CXXALIAS_RPL (qsort_r, void, (void *base, size_t nmemb, size_t size,\n                                  int (*compare) (void const *, void const *,\n                                                  void *),\n                                  void *arg));\n# else\n#  if !@HAVE_QSORT_R@\n_GL_FUNCDECL_SYS (qsort_r, void, (void *base, size_t nmemb, size_t size,\n                                  int (*compare) (void const *, void const *,\n                                                  void *),\n                                  void *arg) _GL_ARG_NONNULL ((1, 4)));\n#  endif\n_GL_CXXALIAS_SYS (qsort_r, void, (void *base, size_t nmemb, size_t size,\n                                  int (*compare) (void const *, void const *,\n                                                  void *),\n                                  void *arg));\n# endif\n_GL_CXXALIASWARN (qsort_r);\n#elif defined GNULIB_POSIXCHECK\n# undef qsort_r\n# if HAVE_RAW_DECL_QSORT_R\n_GL_WARN_ON_USE (qsort_r, \"qsort_r is not portable - \"\n                 \"use gnulib module qsort_r for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_RANDOM_R@\n# if !@HAVE_RANDOM_R@\n#  ifndef RAND_MAX\n#   define RAND_MAX 2147483647\n#  endif\n# endif\n#endif\n\n\n#if @GNULIB_RANDOM@\n# if !@HAVE_RANDOM@\n_GL_FUNCDECL_SYS (random, long, (void));\n# endif\n_GL_CXXALIAS_SYS (random, long, (void));\n_GL_CXXALIASWARN (random);\n#elif defined GNULIB_POSIXCHECK\n# undef random\n# if HAVE_RAW_DECL_RANDOM\n_GL_WARN_ON_USE (random, \"random is unportable - \"\n                 \"use gnulib module random for portability\");\n# endif\n#endif\n\n#if @GNULIB_RANDOM@\n# if !@HAVE_RANDOM@\n_GL_FUNCDECL_SYS (srandom, void, (unsigned int seed));\n# endif\n_GL_CXXALIAS_SYS (srandom, void, (unsigned int seed));\n_GL_CXXALIASWARN (srandom);\n#elif defined GNULIB_POSIXCHECK\n# undef srandom\n# if HAVE_RAW_DECL_SRANDOM\n_GL_WARN_ON_USE (srandom, \"srandom is unportable - \"\n                 \"use gnulib module random for portability\");\n# endif\n#endif\n\n#if @GNULIB_RANDOM@\n# if !@HAVE_RANDOM@\n_GL_FUNCDECL_SYS (initstate, char *,\n                  (unsigned int seed, char *buf, size_t buf_size)\n                  _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (initstate, char *,\n                  (unsigned int seed, char *buf, size_t buf_size));\n_GL_CXXALIASWARN (initstate);\n#elif defined GNULIB_POSIXCHECK\n# undef initstate\n# if HAVE_RAW_DECL_INITSTATE_R\n_GL_WARN_ON_USE (initstate, \"initstate is unportable - \"\n                 \"use gnulib module random for portability\");\n# endif\n#endif\n\n#if @GNULIB_RANDOM@\n# if !@HAVE_RANDOM@\n_GL_FUNCDECL_SYS (setstate, char *, (char *arg_state) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (setstate, char *, (char *arg_state));\n_GL_CXXALIASWARN (setstate);\n#elif defined GNULIB_POSIXCHECK\n# undef setstate\n# if HAVE_RAW_DECL_SETSTATE_R\n_GL_WARN_ON_USE (setstate, \"setstate is unportable - \"\n                 \"use gnulib module random for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_RANDOM_R@\n# if @REPLACE_RANDOM_R@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef random_r\n#   define random_r rpl_random_r\n#  endif\n_GL_FUNCDECL_RPL (random_r, int, (struct random_data *buf, int32_t *result)\n                                 _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (random_r, int, (struct random_data *buf, int32_t *result));\n# else\n#  if !@HAVE_RANDOM_R@\n_GL_FUNCDECL_SYS (random_r, int, (struct random_data *buf, int32_t *result)\n                                 _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (random_r, int, (struct random_data *buf, int32_t *result));\n# endif\n_GL_CXXALIASWARN (random_r);\n#elif defined GNULIB_POSIXCHECK\n# undef random_r\n# if HAVE_RAW_DECL_RANDOM_R\n_GL_WARN_ON_USE (random_r, \"random_r is unportable - \"\n                 \"use gnulib module random_r for portability\");\n# endif\n#endif\n\n#if @GNULIB_RANDOM_R@\n# if @REPLACE_RANDOM_R@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef srandom_r\n#   define srandom_r rpl_srandom_r\n#  endif\n_GL_FUNCDECL_RPL (srandom_r, int,\n                  (unsigned int seed, struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (srandom_r, int,\n                  (unsigned int seed, struct random_data *rand_state));\n# else\n#  if !@HAVE_RANDOM_R@\n_GL_FUNCDECL_SYS (srandom_r, int,\n                  (unsigned int seed, struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (srandom_r, int,\n                  (unsigned int seed, struct random_data *rand_state));\n# endif\n_GL_CXXALIASWARN (srandom_r);\n#elif defined GNULIB_POSIXCHECK\n# undef srandom_r\n# if HAVE_RAW_DECL_SRANDOM_R\n_GL_WARN_ON_USE (srandom_r, \"srandom_r is unportable - \"\n                 \"use gnulib module random_r for portability\");\n# endif\n#endif\n\n#if @GNULIB_RANDOM_R@\n# if @REPLACE_RANDOM_R@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef initstate_r\n#   define initstate_r rpl_initstate_r\n#  endif\n_GL_FUNCDECL_RPL (initstate_r, int,\n                  (unsigned int seed, char *buf, size_t buf_size,\n                   struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((2, 4)));\n_GL_CXXALIAS_RPL (initstate_r, int,\n                  (unsigned int seed, char *buf, size_t buf_size,\n                   struct random_data *rand_state));\n# else\n#  if !@HAVE_RANDOM_R@\n_GL_FUNCDECL_SYS (initstate_r, int,\n                  (unsigned int seed, char *buf, size_t buf_size,\n                   struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((2, 4)));\n#  endif\n_GL_CXXALIAS_SYS (initstate_r, int,\n                  (unsigned int seed, char *buf, size_t buf_size,\n                   struct random_data *rand_state));\n# endif\n_GL_CXXALIASWARN (initstate_r);\n#elif defined GNULIB_POSIXCHECK\n# undef initstate_r\n# if HAVE_RAW_DECL_INITSTATE_R\n_GL_WARN_ON_USE (initstate_r, \"initstate_r is unportable - \"\n                 \"use gnulib module random_r for portability\");\n# endif\n#endif\n\n#if @GNULIB_RANDOM_R@\n# if @REPLACE_RANDOM_R@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef setstate_r\n#   define setstate_r rpl_setstate_r\n#  endif\n_GL_FUNCDECL_RPL (setstate_r, int,\n                  (char *arg_state, struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (setstate_r, int,\n                  (char *arg_state, struct random_data *rand_state));\n# else\n#  if !@HAVE_RANDOM_R@\n_GL_FUNCDECL_SYS (setstate_r, int,\n                  (char *arg_state, struct random_data *rand_state)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (setstate_r, int,\n                  (char *arg_state, struct random_data *rand_state));\n# endif\n_GL_CXXALIASWARN (setstate_r);\n#elif defined GNULIB_POSIXCHECK\n# undef setstate_r\n# if HAVE_RAW_DECL_SETSTATE_R\n_GL_WARN_ON_USE (setstate_r, \"setstate_r is unportable - \"\n                 \"use gnulib module random_r for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_REALLOC_POSIX@\n# if @REPLACE_REALLOC@\n#  if !((defined __cplusplus && defined GNULIB_NAMESPACE) \\\n        || _GL_USE_STDLIB_ALLOC)\n#   undef realloc\n#   define realloc rpl_realloc\n#  endif\n_GL_FUNCDECL_RPL (realloc, void *, (void *ptr, size_t size));\n_GL_CXXALIAS_RPL (realloc, void *, (void *ptr, size_t size));\n# else\n_GL_CXXALIAS_SYS (realloc, void *, (void *ptr, size_t size));\n# endif\n_GL_CXXALIASWARN (realloc);\n#elif defined GNULIB_POSIXCHECK && !_GL_USE_STDLIB_ALLOC\n# undef realloc\n/* Assume realloc is always declared.  */\n_GL_WARN_ON_USE (realloc, \"realloc is not POSIX compliant everywhere - \"\n                 \"use gnulib module realloc-posix for portability\");\n#endif\n\n#if @GNULIB_REALPATH@\n# if @REPLACE_REALPATH@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define realpath rpl_realpath\n#  endif\n_GL_FUNCDECL_RPL (realpath, char *, (const char *name, char *resolved)\n                                    _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (realpath, char *, (const char *name, char *resolved));\n# else\n#  if !@HAVE_REALPATH@\n_GL_FUNCDECL_SYS (realpath, char *, (const char *name, char *resolved)\n                                    _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (realpath, char *, (const char *name, char *resolved));\n# endif\n_GL_CXXALIASWARN (realpath);\n#elif defined GNULIB_POSIXCHECK\n# undef realpath\n# if HAVE_RAW_DECL_REALPATH\n_GL_WARN_ON_USE (realpath, \"realpath is unportable - use gnulib module \"\n                 \"canonicalize or canonicalize-lgpl for portability\");\n# endif\n#endif\n\n#if @GNULIB_RPMATCH@\n/* Test a user response to a question.\n   Return 1 if it is affirmative, 0 if it is negative, or -1 if not clear.  */\n# if !@HAVE_RPMATCH@\n_GL_FUNCDECL_SYS (rpmatch, int, (const char *response) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (rpmatch, int, (const char *response));\n_GL_CXXALIASWARN (rpmatch);\n#elif defined GNULIB_POSIXCHECK\n# undef rpmatch\n# if HAVE_RAW_DECL_RPMATCH\n_GL_WARN_ON_USE (rpmatch, \"rpmatch is unportable - \"\n                 \"use gnulib module rpmatch for portability\");\n# endif\n#endif\n\n#if @GNULIB_SECURE_GETENV@\n/* Look up NAME in the environment, returning 0 in insecure situations.  */\n# if !@HAVE_SECURE_GETENV@\n_GL_FUNCDECL_SYS (secure_getenv, char *,\n                  (char const *name) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (secure_getenv, char *, (char const *name));\n_GL_CXXALIASWARN (secure_getenv);\n#elif defined GNULIB_POSIXCHECK\n# undef secure_getenv\n# if HAVE_RAW_DECL_SECURE_GETENV\n_GL_WARN_ON_USE (secure_getenv, \"secure_getenv is unportable - \"\n                 \"use gnulib module secure_getenv for portability\");\n# endif\n#endif\n\n#if @GNULIB_SETENV@\n/* Set NAME to VALUE in the environment.\n   If REPLACE is nonzero, overwrite an existing value.  */\n# if @REPLACE_SETENV@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef setenv\n#   define setenv rpl_setenv\n#  endif\n_GL_FUNCDECL_RPL (setenv, int,\n                  (const char *name, const char *value, int replace)\n                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (setenv, int,\n                  (const char *name, const char *value, int replace));\n# else\n#  if !@HAVE_DECL_SETENV@\n_GL_FUNCDECL_SYS (setenv, int,\n                  (const char *name, const char *value, int replace)\n                  _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (setenv, int,\n                  (const char *name, const char *value, int replace));\n# endif\n# if !(@REPLACE_SETENV@ && !@HAVE_DECL_SETENV@)\n_GL_CXXALIASWARN (setenv);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef setenv\n# if HAVE_RAW_DECL_SETENV\n_GL_WARN_ON_USE (setenv, \"setenv is unportable - \"\n                 \"use gnulib module setenv for portability\");\n# endif\n#endif\n\n#if @GNULIB_STRTOD@\n /* Parse a double from STRING, updating ENDP if appropriate.  */\n# if @REPLACE_STRTOD@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define strtod rpl_strtod\n#  endif\n_GL_FUNCDECL_RPL (strtod, double, (const char *str, char **endp)\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (strtod, double, (const char *str, char **endp));\n# else\n#  if !@HAVE_STRTOD@\n_GL_FUNCDECL_SYS (strtod, double, (const char *str, char **endp)\n                                  _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (strtod, double, (const char *str, char **endp));\n# endif\n_GL_CXXALIASWARN (strtod);\n#elif defined GNULIB_POSIXCHECK\n# undef strtod\n# if HAVE_RAW_DECL_STRTOD\n_GL_WARN_ON_USE (strtod, \"strtod is unportable - \"\n                 \"use gnulib module strtod for portability\");\n# endif\n#endif\n\n#if @GNULIB_STRTOLL@\n/* Parse a signed integer whose textual representation starts at STRING.\n   The integer is expected to be in base BASE (2 <= BASE <= 36); if BASE == 0,\n   it may be decimal or octal (with prefix \"0\") or hexadecimal (with prefix\n   \"0x\").\n   If ENDPTR is not NULL, the address of the first byte after the integer is\n   stored in *ENDPTR.\n   Upon overflow, the return value is LLONG_MAX or LLONG_MIN, and errno is set\n   to ERANGE.  */\n# if !@HAVE_STRTOLL@\n_GL_FUNCDECL_SYS (strtoll, long long,\n                  (const char *string, char **endptr, int base)\n                  _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (strtoll, long long,\n                  (const char *string, char **endptr, int base));\n_GL_CXXALIASWARN (strtoll);\n#elif defined GNULIB_POSIXCHECK\n# undef strtoll\n# if HAVE_RAW_DECL_STRTOLL\n_GL_WARN_ON_USE (strtoll, \"strtoll is unportable - \"\n                 \"use gnulib module strtoll for portability\");\n# endif\n#endif\n\n#if @GNULIB_STRTOULL@\n/* Parse an unsigned integer whose textual representation starts at STRING.\n   The integer is expected to be in base BASE (2 <= BASE <= 36); if BASE == 0,\n   it may be decimal or octal (with prefix \"0\") or hexadecimal (with prefix\n   \"0x\").\n   If ENDPTR is not NULL, the address of the first byte after the integer is\n   stored in *ENDPTR.\n   Upon overflow, the return value is ULLONG_MAX, and errno is set to\n   ERANGE.  */\n# if !@HAVE_STRTOULL@\n_GL_FUNCDECL_SYS (strtoull, unsigned long long,\n                  (const char *string, char **endptr, int base)\n                  _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (strtoull, unsigned long long,\n                  (const char *string, char **endptr, int base));\n_GL_CXXALIASWARN (strtoull);\n#elif defined GNULIB_POSIXCHECK\n# undef strtoull\n# if HAVE_RAW_DECL_STRTOULL\n_GL_WARN_ON_USE (strtoull, \"strtoull is unportable - \"\n                 \"use gnulib module strtoull for portability\");\n# endif\n#endif\n\n#if @GNULIB_UNLOCKPT@\n/* Unlock the slave side of the pseudo-terminal whose master side is specified\n   by FD, so that it can be opened.  */\n# if !@HAVE_UNLOCKPT@\n_GL_FUNCDECL_SYS (unlockpt, int, (int fd));\n# endif\n_GL_CXXALIAS_SYS (unlockpt, int, (int fd));\n_GL_CXXALIASWARN (unlockpt);\n#elif defined GNULIB_POSIXCHECK\n# undef unlockpt\n# if HAVE_RAW_DECL_UNLOCKPT\n_GL_WARN_ON_USE (unlockpt, \"unlockpt is not portable - \"\n                 \"use gnulib module unlockpt for portability\");\n# endif\n#endif\n\n#if @GNULIB_UNSETENV@\n/* Remove the variable NAME from the environment.  */\n# if @REPLACE_UNSETENV@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef unsetenv\n#   define unsetenv rpl_unsetenv\n#  endif\n_GL_FUNCDECL_RPL (unsetenv, int, (const char *name) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (unsetenv, int, (const char *name));\n# else\n#  if !@HAVE_DECL_UNSETENV@\n_GL_FUNCDECL_SYS (unsetenv, int, (const char *name) _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (unsetenv, int, (const char *name));\n# endif\n# if !(@REPLACE_UNSETENV@ && !@HAVE_DECL_UNSETENV@)\n_GL_CXXALIASWARN (unsetenv);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef unsetenv\n# if HAVE_RAW_DECL_UNSETENV\n_GL_WARN_ON_USE (unsetenv, \"unsetenv is unportable - \"\n                 \"use gnulib module unsetenv for portability\");\n# endif\n#endif\n\n/* Convert a wide character to a multibyte character.  */\n#if @GNULIB_WCTOMB@\n# if @REPLACE_WCTOMB@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef wctomb\n#   define wctomb rpl_wctomb\n#  endif\n_GL_FUNCDECL_RPL (wctomb, int, (char *s, wchar_t wc));\n_GL_CXXALIAS_RPL (wctomb, int, (char *s, wchar_t wc));\n# else\n_GL_CXXALIAS_SYS (wctomb, int, (char *s, wchar_t wc));\n# endif\n_GL_CXXALIASWARN (wctomb);\n#endif\n\n\n#endif /* _@GUARD_PREFIX@_STDLIB_H */\n#endif /* _@GUARD_PREFIX@_STDLIB_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/streq.h",
    "content": "/* Optimized string comparison.\n   Copyright (C) 2001-2002, 2007, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify it\n   under the terms of the GNU General Public License as published\n   by the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Bruno Haible <bruno@clisp.org>.  */\n\n#ifndef _GL_STREQ_H\n#define _GL_STREQ_H\n\n#include <string.h>\n\n/* STREQ_OPT allows to optimize string comparison with a small literal string.\n     STREQ_OPT (s, \"EUC-KR\", 'E', 'U', 'C', '-', 'K', 'R', 0, 0, 0)\n   is semantically equivalent to\n     strcmp (s, \"EUC-KR\") == 0\n   just faster.  */\n\n/* Help GCC to generate good code for string comparisons with\n   immediate strings. */\n#if defined (__GNUC__) && defined (__OPTIMIZE__)\n\nstatic inline int\nstreq9 (const char *s1, const char *s2)\n{\n  return strcmp (s1 + 9, s2 + 9) == 0;\n}\n\nstatic inline int\nstreq8 (const char *s1, const char *s2, char s28)\n{\n  if (s1[8] == s28)\n    {\n      if (s28 == 0)\n        return 1;\n      else\n        return streq9 (s1, s2);\n    }\n  else\n    return 0;\n}\n\nstatic inline int\nstreq7 (const char *s1, const char *s2, char s27, char s28)\n{\n  if (s1[7] == s27)\n    {\n      if (s27 == 0)\n        return 1;\n      else\n        return streq8 (s1, s2, s28);\n    }\n  else\n    return 0;\n}\n\nstatic inline int\nstreq6 (const char *s1, const char *s2, char s26, char s27, char s28)\n{\n  if (s1[6] == s26)\n    {\n      if (s26 == 0)\n        return 1;\n      else\n        return streq7 (s1, s2, s27, s28);\n    }\n  else\n    return 0;\n}\n\nstatic inline int\nstreq5 (const char *s1, const char *s2, char s25, char s26, char s27, char s28)\n{\n  if (s1[5] == s25)\n    {\n      if (s25 == 0)\n        return 1;\n      else\n        return streq6 (s1, s2, s26, s27, s28);\n    }\n  else\n    return 0;\n}\n\nstatic inline int\nstreq4 (const char *s1, const char *s2, char s24, char s25, char s26, char s27, char s28)\n{\n  if (s1[4] == s24)\n    {\n      if (s24 == 0)\n        return 1;\n      else\n        return streq5 (s1, s2, s25, s26, s27, s28);\n    }\n  else\n    return 0;\n}\n\nstatic inline int\nstreq3 (const char *s1, const char *s2, char s23, char s24, char s25, char s26, char s27, char s28)\n{\n  if (s1[3] == s23)\n    {\n      if (s23 == 0)\n        return 1;\n      else\n        return streq4 (s1, s2, s24, s25, s26, s27, s28);\n    }\n  else\n    return 0;\n}\n\nstatic inline int\nstreq2 (const char *s1, const char *s2, char s22, char s23, char s24, char s25, char s26, char s27, char s28)\n{\n  if (s1[2] == s22)\n    {\n      if (s22 == 0)\n        return 1;\n      else\n        return streq3 (s1, s2, s23, s24, s25, s26, s27, s28);\n    }\n  else\n    return 0;\n}\n\nstatic inline int\nstreq1 (const char *s1, const char *s2, char s21, char s22, char s23, char s24, char s25, char s26, char s27, char s28)\n{\n  if (s1[1] == s21)\n    {\n      if (s21 == 0)\n        return 1;\n      else\n        return streq2 (s1, s2, s22, s23, s24, s25, s26, s27, s28);\n    }\n  else\n    return 0;\n}\n\nstatic inline int\nstreq0 (const char *s1, const char *s2, char s20, char s21, char s22, char s23, char s24, char s25, char s26, char s27, char s28)\n{\n  if (s1[0] == s20)\n    {\n      if (s20 == 0)\n        return 1;\n      else\n        return streq1 (s1, s2, s21, s22, s23, s24, s25, s26, s27, s28);\n    }\n  else\n    return 0;\n}\n\n#define STREQ_OPT(s1,s2,s20,s21,s22,s23,s24,s25,s26,s27,s28) \\\n  streq0 (s1, s2, s20, s21, s22, s23, s24, s25, s26, s27, s28)\n\n#else\n\n#define STREQ_OPT(s1,s2,s20,s21,s22,s23,s24,s25,s26,s27,s28) \\\n  (strcmp (s1, s2) == 0)\n\n#endif\n\n#endif /* _GL_STREQ_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/strerror-override.c",
    "content": "/* strerror-override.c --- POSIX compatible system error routine\n\n   Copyright (C) 2010-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Bruno Haible <bruno@clisp.org>, 2010.  */\n\n#include <config.h>\n\n#include \"strerror-override.h\"\n\n#include <errno.h>\n\n#if GNULIB_defined_EWINSOCK /* native Windows platforms */\n# if HAVE_WINSOCK2_H\n#  include <winsock2.h>\n# endif\n#endif\n\n/* If ERRNUM maps to an errno value defined by gnulib, return a string\n   describing the error.  Otherwise return NULL.  */\nconst char *\nstrerror_override (int errnum)\n{\n  /* These error messages are taken from glibc/sysdeps/gnu/errlist.c.  */\n  switch (errnum)\n    {\n#if REPLACE_STRERROR_0\n    case 0:\n      return \"Success\";\n#endif\n\n#if GNULIB_defined_ESOCK /* native Windows platforms with older <errno.h> */\n    case EINPROGRESS:\n      return \"Operation now in progress\";\n    case EALREADY:\n      return \"Operation already in progress\";\n    case ENOTSOCK:\n      return \"Socket operation on non-socket\";\n    case EDESTADDRREQ:\n      return \"Destination address required\";\n    case EMSGSIZE:\n      return \"Message too long\";\n    case EPROTOTYPE:\n      return \"Protocol wrong type for socket\";\n    case ENOPROTOOPT:\n      return \"Protocol not available\";\n    case EPROTONOSUPPORT:\n      return \"Protocol not supported\";\n    case EOPNOTSUPP:\n      return \"Operation not supported\";\n    case EAFNOSUPPORT:\n      return \"Address family not supported by protocol\";\n    case EADDRINUSE:\n      return \"Address already in use\";\n    case EADDRNOTAVAIL:\n      return \"Cannot assign requested address\";\n    case ENETDOWN:\n      return \"Network is down\";\n    case ENETUNREACH:\n      return \"Network is unreachable\";\n    case ECONNRESET:\n      return \"Connection reset by peer\";\n    case ENOBUFS:\n      return \"No buffer space available\";\n    case EISCONN:\n      return \"Transport endpoint is already connected\";\n    case ENOTCONN:\n      return \"Transport endpoint is not connected\";\n    case ETIMEDOUT:\n      return \"Connection timed out\";\n    case ECONNREFUSED:\n      return \"Connection refused\";\n    case ELOOP:\n      return \"Too many levels of symbolic links\";\n    case EHOSTUNREACH:\n      return \"No route to host\";\n    case EWOULDBLOCK:\n      return \"Operation would block\";\n#endif\n#if GNULIB_defined_ESTREAMS /* native Windows platforms with older <errno.h> */\n    case ETXTBSY:\n      return \"Text file busy\";\n    case ENODATA:\n      return \"No data available\";\n    case ENOSR:\n      return \"Out of streams resources\";\n    case ENOSTR:\n      return \"Device not a stream\";\n    case ETIME:\n      return \"Timer expired\";\n    case EOTHER:\n      return \"Other error\";\n#endif\n#if GNULIB_defined_EWINSOCK /* native Windows platforms */\n    case ESOCKTNOSUPPORT:\n      return \"Socket type not supported\";\n    case EPFNOSUPPORT:\n      return \"Protocol family not supported\";\n    case ESHUTDOWN:\n      return \"Cannot send after transport endpoint shutdown\";\n    case ETOOMANYREFS:\n      return \"Too many references: cannot splice\";\n    case EHOSTDOWN:\n      return \"Host is down\";\n    case EPROCLIM:\n      return \"Too many processes\";\n    case EUSERS:\n      return \"Too many users\";\n    case EDQUOT:\n      return \"Disk quota exceeded\";\n    case ESTALE:\n      return \"Stale NFS file handle\";\n    case EREMOTE:\n      return \"Object is remote\";\n# if HAVE_WINSOCK2_H\n      /* WSA_INVALID_HANDLE maps to EBADF */\n      /* WSA_NOT_ENOUGH_MEMORY maps to ENOMEM */\n      /* WSA_INVALID_PARAMETER maps to EINVAL */\n    case WSA_OPERATION_ABORTED:\n      return \"Overlapped operation aborted\";\n    case WSA_IO_INCOMPLETE:\n      return \"Overlapped I/O event object not in signaled state\";\n    case WSA_IO_PENDING:\n      return \"Overlapped operations will complete later\";\n      /* WSAEINTR maps to EINTR */\n      /* WSAEBADF maps to EBADF */\n      /* WSAEACCES maps to EACCES */\n      /* WSAEFAULT maps to EFAULT */\n      /* WSAEINVAL maps to EINVAL */\n      /* WSAEMFILE maps to EMFILE */\n      /* WSAEWOULDBLOCK maps to EWOULDBLOCK */\n      /* WSAEINPROGRESS maps to EINPROGRESS */\n      /* WSAEALREADY maps to EALREADY */\n      /* WSAENOTSOCK maps to ENOTSOCK */\n      /* WSAEDESTADDRREQ maps to EDESTADDRREQ */\n      /* WSAEMSGSIZE maps to EMSGSIZE */\n      /* WSAEPROTOTYPE maps to EPROTOTYPE */\n      /* WSAENOPROTOOPT maps to ENOPROTOOPT */\n      /* WSAEPROTONOSUPPORT maps to EPROTONOSUPPORT */\n      /* WSAESOCKTNOSUPPORT is ESOCKTNOSUPPORT */\n      /* WSAEOPNOTSUPP maps to EOPNOTSUPP */\n      /* WSAEPFNOSUPPORT is EPFNOSUPPORT */\n      /* WSAEAFNOSUPPORT maps to EAFNOSUPPORT */\n      /* WSAEADDRINUSE maps to EADDRINUSE */\n      /* WSAEADDRNOTAVAIL maps to EADDRNOTAVAIL */\n      /* WSAENETDOWN maps to ENETDOWN */\n      /* WSAENETUNREACH maps to ENETUNREACH */\n      /* WSAENETRESET maps to ENETRESET */\n      /* WSAECONNABORTED maps to ECONNABORTED */\n      /* WSAECONNRESET maps to ECONNRESET */\n      /* WSAENOBUFS maps to ENOBUFS */\n      /* WSAEISCONN maps to EISCONN */\n      /* WSAENOTCONN maps to ENOTCONN */\n      /* WSAESHUTDOWN is ESHUTDOWN */\n      /* WSAETOOMANYREFS is ETOOMANYREFS */\n      /* WSAETIMEDOUT maps to ETIMEDOUT */\n      /* WSAECONNREFUSED maps to ECONNREFUSED */\n      /* WSAELOOP maps to ELOOP */\n      /* WSAENAMETOOLONG maps to ENAMETOOLONG */\n      /* WSAEHOSTDOWN is EHOSTDOWN */\n      /* WSAEHOSTUNREACH maps to EHOSTUNREACH */\n      /* WSAENOTEMPTY maps to ENOTEMPTY */\n      /* WSAEPROCLIM is EPROCLIM */\n      /* WSAEUSERS is EUSERS */\n      /* WSAEDQUOT is EDQUOT */\n      /* WSAESTALE is ESTALE */\n      /* WSAEREMOTE is EREMOTE */\n    case WSASYSNOTREADY:\n      return \"Network subsystem is unavailable\";\n    case WSAVERNOTSUPPORTED:\n      return \"Winsock.dll version out of range\";\n    case WSANOTINITIALISED:\n      return \"Successful WSAStartup not yet performed\";\n    case WSAEDISCON:\n      return \"Graceful shutdown in progress\";\n    case WSAENOMORE: case WSA_E_NO_MORE:\n      return \"No more results\";\n    case WSAECANCELLED: case WSA_E_CANCELLED:\n      return \"Call was canceled\";\n    case WSAEINVALIDPROCTABLE:\n      return \"Procedure call table is invalid\";\n    case WSAEINVALIDPROVIDER:\n      return \"Service provider is invalid\";\n    case WSAEPROVIDERFAILEDINIT:\n      return \"Service provider failed to initialize\";\n    case WSASYSCALLFAILURE:\n      return \"System call failure\";\n    case WSASERVICE_NOT_FOUND:\n      return \"Service not found\";\n    case WSATYPE_NOT_FOUND:\n      return \"Class type not found\";\n    case WSAEREFUSED:\n      return \"Database query was refused\";\n    case WSAHOST_NOT_FOUND:\n      return \"Host not found\";\n    case WSATRY_AGAIN:\n      return \"Nonauthoritative host not found\";\n    case WSANO_RECOVERY:\n      return \"Nonrecoverable error\";\n    case WSANO_DATA:\n      return \"Valid name, no data record of requested type\";\n      /* WSA_QOS_* omitted */\n# endif\n#endif\n\n#if GNULIB_defined_ENOMSG\n    case ENOMSG:\n      return \"No message of desired type\";\n#endif\n\n#if GNULIB_defined_EIDRM\n    case EIDRM:\n      return \"Identifier removed\";\n#endif\n\n#if GNULIB_defined_ENOLINK\n    case ENOLINK:\n      return \"Link has been severed\";\n#endif\n\n#if GNULIB_defined_EPROTO\n    case EPROTO:\n      return \"Protocol error\";\n#endif\n\n#if GNULIB_defined_EMULTIHOP\n    case EMULTIHOP:\n      return \"Multihop attempted\";\n#endif\n\n#if GNULIB_defined_EBADMSG\n    case EBADMSG:\n      return \"Bad message\";\n#endif\n\n#if GNULIB_defined_EOVERFLOW\n    case EOVERFLOW:\n      return \"Value too large for defined data type\";\n#endif\n\n#if GNULIB_defined_ENOTSUP\n    case ENOTSUP:\n      return \"Not supported\";\n#endif\n\n#if GNULIB_defined_ENETRESET\n    case ENETRESET:\n      return \"Network dropped connection on reset\";\n#endif\n\n#if GNULIB_defined_ECONNABORTED\n    case ECONNABORTED:\n      return \"Software caused connection abort\";\n#endif\n\n#if GNULIB_defined_ESTALE\n    case ESTALE:\n      return \"Stale NFS file handle\";\n#endif\n\n#if GNULIB_defined_EDQUOT\n    case EDQUOT:\n      return \"Disk quota exceeded\";\n#endif\n\n#if GNULIB_defined_ECANCELED\n    case ECANCELED:\n      return \"Operation canceled\";\n#endif\n\n#if GNULIB_defined_EOWNERDEAD\n    case EOWNERDEAD:\n      return \"Owner died\";\n#endif\n\n#if GNULIB_defined_ENOTRECOVERABLE\n    case ENOTRECOVERABLE:\n      return \"State not recoverable\";\n#endif\n\n#if GNULIB_defined_EILSEQ\n    case EILSEQ:\n      return \"Invalid or incomplete multibyte or wide character\";\n#endif\n\n    default:\n      return NULL;\n    }\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/strerror-override.h",
    "content": "/* strerror-override.h --- POSIX compatible system error routine\n\n   Copyright (C) 2010-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _GL_STRERROR_OVERRIDE_H\n# define _GL_STRERROR_OVERRIDE_H\n\n# include <errno.h>\n# include <stddef.h>\n\n/* Reasonable buffer size that should never trigger ERANGE; if this\n   proves too small, we intentionally abort(), to remind us to fix\n   this value.  */\n# define STACKBUF_LEN 256\n\n/* If ERRNUM maps to an errno value defined by gnulib, return a string\n   describing the error.  Otherwise return NULL.  */\n# if REPLACE_STRERROR_0 \\\n     || GNULIB_defined_ESOCK \\\n     || GNULIB_defined_ESTREAMS \\\n     || GNULIB_defined_EWINSOCK \\\n     || GNULIB_defined_ENOMSG \\\n     || GNULIB_defined_EIDRM \\\n     || GNULIB_defined_ENOLINK \\\n     || GNULIB_defined_EPROTO \\\n     || GNULIB_defined_EMULTIHOP \\\n     || GNULIB_defined_EBADMSG \\\n     || GNULIB_defined_EOVERFLOW \\\n     || GNULIB_defined_ENOTSUP \\\n     || GNULIB_defined_ENETRESET \\\n     || GNULIB_defined_ECONNABORTED \\\n     || GNULIB_defined_ESTALE \\\n     || GNULIB_defined_EDQUOT \\\n     || GNULIB_defined_ECANCELED \\\n     || GNULIB_defined_EOWNERDEAD \\\n     || GNULIB_defined_ENOTRECOVERABLE \\\n     || GNULIB_defined_EILSEQ\nextern const char *strerror_override (int errnum) _GL_ATTRIBUTE_CONST;\n# else\n#  define strerror_override(ignored) NULL\n# endif\n\n#endif /* _GL_STRERROR_OVERRIDE_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/strerror.c",
    "content": "/* strerror.c --- POSIX compatible system error routine\n\n   Copyright (C) 2007-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include <string.h>\n\n#include <errno.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n\n#include \"intprops.h\"\n#include \"strerror-override.h\"\n#include \"verify.h\"\n\n/* Use the system functions, not the gnulib overrides in this file.  */\n#undef sprintf\n\nchar *\nstrerror (int n)\n#undef strerror\n{\n  static char buf[STACKBUF_LEN];\n  size_t len;\n\n  /* Cast away const, due to the historical signature of strerror;\n     callers should not be modifying the string.  */\n  const char *msg = strerror_override (n);\n  if (msg)\n    return (char *) msg;\n\n  msg = strerror (n);\n\n  /* Our strerror_r implementation might use the system's strerror\n     buffer, so all other clients of strerror have to see the error\n     copied into a buffer that we manage.  This is not thread-safe,\n     even if the system strerror is, but portable programs shouldn't\n     be using strerror if they care about thread-safety.  */\n  if (!msg || !*msg)\n    {\n      static char const fmt[] = \"Unknown error %d\";\n      verify (sizeof buf >= sizeof (fmt) + INT_STRLEN_BOUND (n));\n      sprintf (buf, fmt, n);\n      errno = EINVAL;\n      return buf;\n    }\n\n  /* Fix STACKBUF_LEN if this ever aborts.  */\n  len = strlen (msg);\n  if (sizeof buf <= len)\n    abort ();\n\n  memcpy (buf, msg, len + 1);\n  return buf;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/string.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* A GNU-like <string.h>.\n\n   Copyright (C) 1995-1996, 2001-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n#if defined _GL_ALREADY_INCLUDING_STRING_H\n/* Special invocation convention:\n   - On OS X/NetBSD we have a sequence of nested includes\n       <string.h> -> <strings.h> -> \"string.h\"\n     In this situation system _chk variants due to -D_FORTIFY_SOURCE\n     might be used after any replacements defined here.  */\n\n#include_next <string.h>\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _GL_STRING_H\n\n#define _GL_ALREADY_INCLUDING_STRING_H\n\n/* The include_next requires a split double-inclusion guard.  */\n#include_next <string.h>\n\n#undef _GL_ALREADY_INCLUDING_STRING_H\n\n#ifndef _GL_STRING_H\n#define _GL_STRING_H\n\n/* NetBSD 5.0 mis-defines NULL.  */\n#include <stddef.h>\n\n/* MirBSD defines mbslen as a macro.  */\n#if 0 && defined __MirBSD__\n# include <wchar.h>\n#endif\n\n/* The __attribute__ feature is available in gcc versions 2.5 and later.\n   The attribute __pure__ was added in gcc 2.96.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)\n# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))\n#else\n# define _GL_ATTRIBUTE_PURE /* empty */\n#endif\n\n/* NetBSD 5.0 declares strsignal in <unistd.h>, not in <string.h>.  */\n/* But in any case avoid namespace pollution on glibc systems.  */\n#if (0 || defined GNULIB_POSIXCHECK) && defined __NetBSD__ \\\n    && ! defined __GLIBC__\n# include <unistd.h>\n#endif\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n#ifndef _GL_CXXDEFS_H\n#define _GL_CXXDEFS_H\n\n/* Begin/end the GNULIB_NAMESPACE namespace.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {\n# define _GL_END_NAMESPACE }\n#else\n# define _GL_BEGIN_NAMESPACE\n# define _GL_END_NAMESPACE\n#endif\n\n/* The three most frequent use cases of these macros are:\n\n   * For providing a substitute for a function that is missing on some\n     platforms, but is declared and works fine on the platforms on which\n     it exists:\n\n       #if @GNULIB_FOO@\n       # if !@HAVE_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       # endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on all platforms,\n     but is broken/insufficient and needs to be replaced on some platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on some platforms\n     but is broken/insufficient and needs to be replaced on some of them and\n     is additionally either missing or undeclared on some other platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       #  endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n*/\n\n/* _GL_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#if defined __cplusplus\n# define _GL_EXTERN_C extern \"C\"\n#else\n# define _GL_EXTERN_C extern\n#endif\n\n/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);\n   declares a replacement function, named rpl_func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \\\n  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)\n#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype rpl_func parameters_and_attributes\n\n/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);\n   declares the system function, named func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype func parameters_and_attributes\n\n/* _GL_CXXALIAS_RPL (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.\n   Example:\n     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n\n   Wrapping rpl_func in an object with an inline conversion operator\n   avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#define _GL_CXXALIAS_RPL(func,rettype,parameters) \\\n  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::rpl_func;                                  \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);\n   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);\n   except that the C function rpl_func may have a slightly different\n   declaration.  A cast is used to silence the \"invalid conversion\" error\n   that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                     \\\n    {                                                              \\\n      static const struct _gl_ ## func ## _wrapper                 \\\n      {                                                            \\\n        typedef rettype (*type) parameters;                        \\\n                                                                   \\\n        inline operator type () const                              \\\n        {                                                          \\\n          return reinterpret_cast<type>(::rpl_func);               \\\n        }                                                          \\\n      } func = {};                                                 \\\n    }                                                              \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to the system provided function func, if GNULIB_NAMESPACE\n   is defined.\n   Example:\n     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n\n   Wrapping func in an object with an inline conversion operator\n   avoids a reference to func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS(func,rettype,parameters)            \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::func;                                      \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function func may have a slightly different declaration.\n   A cast is used to silence the \"invalid conversion\" error that would\n   otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                          \\\n    {                                                   \\\n      static const struct _gl_ ## func ## _wrapper      \\\n      {                                                 \\\n        typedef rettype (*type) parameters;             \\\n                                                        \\\n        inline operator type () const                   \\\n        {                                               \\\n          return reinterpret_cast<type>(::func);        \\\n        }                                               \\\n      } func = {};                                      \\\n    }                                                   \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function is picked among a set of overloaded functions,\n   namely the one with rettype2 and parameters2.  Two consecutive casts\n   are used to silence the \"cannot find a match\" and \"invalid conversion\"\n   errors that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n  /* The outer cast must be a reinterpret_cast.\n     The inner cast: When the function is defined as a set of overloaded\n     functions, it works as a static_cast<>, choosing the designated variant.\n     When the function is defined as a single variant, it works as a\n     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    namespace GNULIB_NAMESPACE                                                \\\n    {                                                                         \\\n      static const struct _gl_ ## func ## _wrapper                            \\\n      {                                                                       \\\n        typedef rettype (*type) parameters;                                   \\\n                                                                              \\\n        inline operator type () const                                         \\\n        {                                                                     \\\n          return reinterpret_cast<type>((rettype2 (*) parameters2)(::func));  \\\n        }                                                                     \\\n      } func = {};                                                            \\\n    }                                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN (func);\n   causes a warning to be emitted when ::func is used but not when\n   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded\n   variants.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN(func) \\\n   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN_1(func,namespace) \\\n   _GL_CXXALIASWARN_2 (func, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n    _GL_WARN_ON_USE (func, \\\n                     \"The symbol ::\" #func \" refers to the system function. \" \\\n                     \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN(func) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);\n   causes a warning to be emitted when the given overloaded variant of ::func\n   is used but not when GNULIB_NAMESPACE::func is used.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \\\n                        GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \\\n   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \\\n                         \"The symbol ::\" #func \" refers to the system function. \" \\\n                         \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n#endif /* _GL_CXXDEFS_H */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools\n   that the values passed as arguments n, ..., m must be non-NULL pointers.\n   n = 1 stands for the first argument, n = 2 for the second argument etc.  */\n#ifndef _GL_ARG_NONNULL\n# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3\n#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))\n# else\n#  define _GL_ARG_NONNULL(params)\n# endif\n#endif\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n#ifndef _GL_WARN_ON_USE\n\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n/* A compiler attribute is available in gcc versions 4.3.0 and later.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function __attribute__ ((__warning__ (message)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE(function, message) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, \"string\")\n   is like _GL_WARN_ON_USE (function, \"string\"), except that the function is\n   declared with the given prototype, consisting of return type, parameters,\n   and attributes.\n   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does\n   not work in this case.  */\n#ifndef _GL_WARN_ON_USE_CXX\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes \\\n     __attribute__ ((__warning__ (msg)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#ifndef _GL_WARN_EXTERN_C\n# if defined __cplusplus\n#  define _GL_WARN_EXTERN_C extern \"C\"\n# else\n#  define _GL_WARN_EXTERN_C extern\n# endif\n#endif\n\n\n/* Find the index of the least-significant set bit.  */\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (ffsl, int, (long int i));\n# endif\n_GL_CXXALIAS_SYS (ffsl, int, (long int i));\n_GL_CXXALIASWARN (ffsl);\n#elif defined GNULIB_POSIXCHECK\n# undef ffsl\n# if HAVE_RAW_DECL_FFSL\n_GL_WARN_ON_USE (ffsl, \"ffsl is not portable - use the ffsl module\");\n# endif\n#endif\n\n\n/* Find the index of the least-significant set bit.  */\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (ffsll, int, (long long int i));\n# endif\n_GL_CXXALIAS_SYS (ffsll, int, (long long int i));\n_GL_CXXALIASWARN (ffsll);\n#elif defined GNULIB_POSIXCHECK\n# undef ffsll\n# if HAVE_RAW_DECL_FFSLL\n_GL_WARN_ON_USE (ffsll, \"ffsll is not portable - use the ffsll module\");\n# endif\n#endif\n\n\n/* Return the first instance of C within N bytes of S, or NULL.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define memchr rpl_memchr\n#  endif\n_GL_FUNCDECL_RPL (memchr, void *, (void const *__s, int __c, size_t __n)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (memchr, void *, (void const *__s, int __c, size_t __n));\n# else\n#  if ! 1\n_GL_FUNCDECL_SYS (memchr, void *, (void const *__s, int __c, size_t __n)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n#  endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C\" { const void * std::memchr (const void *, int, size_t); }\n       extern \"C++\" { void * std::memchr (void *, int, size_t); }  */\n_GL_CXXALIAS_SYS_CAST2 (memchr,\n                        void *, (void const *__s, int __c, size_t __n),\n                        void const *, (void const *__s, int __c, size_t __n));\n# endif\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (memchr, void *, (void *__s, int __c, size_t __n));\n_GL_CXXALIASWARN1 (memchr, void const *,\n                   (void const *__s, int __c, size_t __n));\n# else\n_GL_CXXALIASWARN (memchr);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef memchr\n/* Assume memchr is always declared.  */\n_GL_WARN_ON_USE (memchr, \"memchr has platform-specific bugs - \"\n                 \"use gnulib module memchr for portability\" );\n#endif\n\n/* Return the first occurrence of NEEDLE in HAYSTACK.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define memmem rpl_memmem\n#  endif\n_GL_FUNCDECL_RPL (memmem, void *,\n                  (void const *__haystack, size_t __haystack_len,\n                   void const *__needle, size_t __needle_len)\n                  _GL_ATTRIBUTE_PURE\n                  _GL_ARG_NONNULL ((1, 3)));\n_GL_CXXALIAS_RPL (memmem, void *,\n                  (void const *__haystack, size_t __haystack_len,\n                   void const *__needle, size_t __needle_len));\n# else\n#  if ! 1\n_GL_FUNCDECL_SYS (memmem, void *,\n                  (void const *__haystack, size_t __haystack_len,\n                   void const *__needle, size_t __needle_len)\n                  _GL_ATTRIBUTE_PURE\n                  _GL_ARG_NONNULL ((1, 3)));\n#  endif\n_GL_CXXALIAS_SYS (memmem, void *,\n                  (void const *__haystack, size_t __haystack_len,\n                   void const *__needle, size_t __needle_len));\n# endif\n_GL_CXXALIASWARN (memmem);\n#elif defined GNULIB_POSIXCHECK\n# undef memmem\n# if HAVE_RAW_DECL_MEMMEM\n_GL_WARN_ON_USE (memmem, \"memmem is unportable and often quadratic - \"\n                 \"use gnulib module memmem-simple for portability, \"\n                 \"and module memmem for speed\" );\n# endif\n#endif\n\n/* Copy N bytes of SRC to DEST, return pointer to bytes after the\n   last written byte.  */\n#if 0\n# if ! 1\n_GL_FUNCDECL_SYS (mempcpy, void *,\n                  (void *restrict __dest, void const *restrict __src,\n                   size_t __n)\n                  _GL_ARG_NONNULL ((1, 2)));\n# endif\n_GL_CXXALIAS_SYS (mempcpy, void *,\n                  (void *restrict __dest, void const *restrict __src,\n                   size_t __n));\n_GL_CXXALIASWARN (mempcpy);\n#elif defined GNULIB_POSIXCHECK\n# undef mempcpy\n# if HAVE_RAW_DECL_MEMPCPY\n_GL_WARN_ON_USE (mempcpy, \"mempcpy is unportable - \"\n                 \"use gnulib module mempcpy for portability\");\n# endif\n#endif\n\n/* Search backwards through a block for a byte (specified as an int).  */\n#if 0\n# if ! 1\n_GL_FUNCDECL_SYS (memrchr, void *, (void const *, int, size_t)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1)));\n# endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C++\" { const void * std::memrchr (const void *, int, size_t); }\n       extern \"C++\" { void * std::memrchr (void *, int, size_t); }  */\n_GL_CXXALIAS_SYS_CAST2 (memrchr,\n                        void *, (void const *, int, size_t),\n                        void const *, (void const *, int, size_t));\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (memrchr, void *, (void *, int, size_t));\n_GL_CXXALIASWARN1 (memrchr, void const *, (void const *, int, size_t));\n# else\n_GL_CXXALIASWARN (memrchr);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef memrchr\n# if HAVE_RAW_DECL_MEMRCHR\n_GL_WARN_ON_USE (memrchr, \"memrchr is unportable - \"\n                 \"use gnulib module memrchr for portability\");\n# endif\n#endif\n\n/* Find the first occurrence of C in S.  More efficient than\n   memchr(S,C,N), at the expense of undefined behavior if C does not\n   occur within N bytes.  */\n#if 0\n# if ! 1\n_GL_FUNCDECL_SYS (rawmemchr, void *, (void const *__s, int __c_in)\n                                     _GL_ATTRIBUTE_PURE\n                                     _GL_ARG_NONNULL ((1)));\n# endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C++\" { const void * std::rawmemchr (const void *, int); }\n       extern \"C++\" { void * std::rawmemchr (void *, int); }  */\n_GL_CXXALIAS_SYS_CAST2 (rawmemchr,\n                        void *, (void const *__s, int __c_in),\n                        void const *, (void const *__s, int __c_in));\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (rawmemchr, void *, (void *__s, int __c_in));\n_GL_CXXALIASWARN1 (rawmemchr, void const *, (void const *__s, int __c_in));\n# else\n_GL_CXXALIASWARN (rawmemchr);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef rawmemchr\n# if HAVE_RAW_DECL_RAWMEMCHR\n_GL_WARN_ON_USE (rawmemchr, \"rawmemchr is unportable - \"\n                 \"use gnulib module rawmemchr for portability\");\n# endif\n#endif\n\n/* Copy SRC to DST, returning the address of the terminating '\\0' in DST.  */\n#if 0\n# if ! 1\n_GL_FUNCDECL_SYS (stpcpy, char *,\n                  (char *restrict __dst, char const *restrict __src)\n                  _GL_ARG_NONNULL ((1, 2)));\n# endif\n_GL_CXXALIAS_SYS (stpcpy, char *,\n                  (char *restrict __dst, char const *restrict __src));\n_GL_CXXALIASWARN (stpcpy);\n#elif defined GNULIB_POSIXCHECK\n# undef stpcpy\n# if HAVE_RAW_DECL_STPCPY\n_GL_WARN_ON_USE (stpcpy, \"stpcpy is unportable - \"\n                 \"use gnulib module stpcpy for portability\");\n# endif\n#endif\n\n/* Copy no more than N bytes of SRC to DST, returning a pointer past the\n   last non-NUL byte written into DST.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef stpncpy\n#   define stpncpy rpl_stpncpy\n#  endif\n_GL_FUNCDECL_RPL (stpncpy, char *,\n                  (char *restrict __dst, char const *restrict __src,\n                   size_t __n)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (stpncpy, char *,\n                  (char *restrict __dst, char const *restrict __src,\n                   size_t __n));\n# else\n#  if ! 1\n_GL_FUNCDECL_SYS (stpncpy, char *,\n                  (char *restrict __dst, char const *restrict __src,\n                   size_t __n)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (stpncpy, char *,\n                  (char *restrict __dst, char const *restrict __src,\n                   size_t __n));\n# endif\n_GL_CXXALIASWARN (stpncpy);\n#elif defined GNULIB_POSIXCHECK\n# undef stpncpy\n# if HAVE_RAW_DECL_STPNCPY\n_GL_WARN_ON_USE (stpncpy, \"stpncpy is unportable - \"\n                 \"use gnulib module stpncpy for portability\");\n# endif\n#endif\n\n#if defined GNULIB_POSIXCHECK\n/* strchr() does not work with multibyte strings if the locale encoding is\n   GB18030 and the character to be searched is a digit.  */\n# undef strchr\n/* Assume strchr is always declared.  */\n_GL_WARN_ON_USE (strchr, \"strchr cannot work correctly on character strings \"\n                 \"in some multibyte locales - \"\n                 \"use mbschr if you care about internationalization\");\n#endif\n\n/* Find the first occurrence of C in S or the final NUL byte.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define strchrnul rpl_strchrnul\n#  endif\n_GL_FUNCDECL_RPL (strchrnul, char *, (const char *__s, int __c_in)\n                                     _GL_ATTRIBUTE_PURE\n                                     _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (strchrnul, char *,\n                  (const char *str, int ch));\n# else\n#  if ! 1\n_GL_FUNCDECL_SYS (strchrnul, char *, (char const *__s, int __c_in)\n                                     _GL_ATTRIBUTE_PURE\n                                     _GL_ARG_NONNULL ((1)));\n#  endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C++\" { const char * std::strchrnul (const char *, int); }\n       extern \"C++\" { char * std::strchrnul (char *, int); }  */\n_GL_CXXALIAS_SYS_CAST2 (strchrnul,\n                        char *, (char const *__s, int __c_in),\n                        char const *, (char const *__s, int __c_in));\n# endif\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (strchrnul, char *, (char *__s, int __c_in));\n_GL_CXXALIASWARN1 (strchrnul, char const *, (char const *__s, int __c_in));\n# else\n_GL_CXXALIASWARN (strchrnul);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef strchrnul\n# if HAVE_RAW_DECL_STRCHRNUL\n_GL_WARN_ON_USE (strchrnul, \"strchrnul is unportable - \"\n                 \"use gnulib module strchrnul for portability\");\n# endif\n#endif\n\n/* Duplicate S, returning an identical malloc'd string.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strdup\n#   define strdup rpl_strdup\n#  endif\n_GL_FUNCDECL_RPL (strdup, char *, (char const *__s) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (strdup, char *, (char const *__s));\n# else\n#  if defined __cplusplus && defined GNULIB_NAMESPACE && defined strdup\n    /* strdup exists as a function and as a macro.  Get rid of the macro.  */\n#   undef strdup\n#  endif\n#  if !(1 || defined strdup)\n_GL_FUNCDECL_SYS (strdup, char *, (char const *__s) _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (strdup, char *, (char const *__s));\n# endif\n_GL_CXXALIASWARN (strdup);\n#elif defined GNULIB_POSIXCHECK\n# undef strdup\n# if HAVE_RAW_DECL_STRDUP\n_GL_WARN_ON_USE (strdup, \"strdup is unportable - \"\n                 \"use gnulib module strdup for portability\");\n# endif\n#endif\n\n/* Append no more than N characters from SRC onto DEST.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strncat\n#   define strncat rpl_strncat\n#  endif\n_GL_FUNCDECL_RPL (strncat, char *, (char *dest, const char *src, size_t n)\n                                   _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (strncat, char *, (char *dest, const char *src, size_t n));\n# else\n_GL_CXXALIAS_SYS (strncat, char *, (char *dest, const char *src, size_t n));\n# endif\n_GL_CXXALIASWARN (strncat);\n#elif defined GNULIB_POSIXCHECK\n# undef strncat\n# if HAVE_RAW_DECL_STRNCAT\n_GL_WARN_ON_USE (strncat, \"strncat is unportable - \"\n                 \"use gnulib module strncat for portability\");\n# endif\n#endif\n\n/* Return a newly allocated copy of at most N bytes of STRING.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strndup\n#   define strndup rpl_strndup\n#  endif\n_GL_FUNCDECL_RPL (strndup, char *, (char const *__s, size_t __n)\n                                   _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (strndup, char *, (char const *__s, size_t __n));\n# else\n#  if ! 1\n_GL_FUNCDECL_SYS (strndup, char *, (char const *__s, size_t __n)\n                                   _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (strndup, char *, (char const *__s, size_t __n));\n# endif\n_GL_CXXALIASWARN (strndup);\n#elif defined GNULIB_POSIXCHECK\n# undef strndup\n# if HAVE_RAW_DECL_STRNDUP\n_GL_WARN_ON_USE (strndup, \"strndup is unportable - \"\n                 \"use gnulib module strndup for portability\");\n# endif\n#endif\n\n/* Find the length (number of bytes) of STRING, but scan at most\n   MAXLEN bytes.  If no '\\0' terminator is found in that many bytes,\n   return MAXLEN.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strnlen\n#   define strnlen rpl_strnlen\n#  endif\n_GL_FUNCDECL_RPL (strnlen, size_t, (char const *__s, size_t __maxlen)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (strnlen, size_t, (char const *__s, size_t __maxlen));\n# else\n#  if ! 1\n_GL_FUNCDECL_SYS (strnlen, size_t, (char const *__s, size_t __maxlen)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (strnlen, size_t, (char const *__s, size_t __maxlen));\n# endif\n_GL_CXXALIASWARN (strnlen);\n#elif defined GNULIB_POSIXCHECK\n# undef strnlen\n# if HAVE_RAW_DECL_STRNLEN\n_GL_WARN_ON_USE (strnlen, \"strnlen is unportable - \"\n                 \"use gnulib module strnlen for portability\");\n# endif\n#endif\n\n#if defined GNULIB_POSIXCHECK\n/* strcspn() assumes the second argument is a list of single-byte characters.\n   Even in this simple case, it does not work with multibyte strings if the\n   locale encoding is GB18030 and one of the characters to be searched is a\n   digit.  */\n# undef strcspn\n/* Assume strcspn is always declared.  */\n_GL_WARN_ON_USE (strcspn, \"strcspn cannot work correctly on character strings \"\n                 \"in multibyte locales - \"\n                 \"use mbscspn if you care about internationalization\");\n#endif\n\n/* Find the first occurrence in S of any character in ACCEPT.  */\n#if 0\n# if ! 1\n_GL_FUNCDECL_SYS (strpbrk, char *, (char const *__s, char const *__accept)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1, 2)));\n# endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C\" { const char * strpbrk (const char *, const char *); }\n       extern \"C++\" { char * strpbrk (char *, const char *); }  */\n_GL_CXXALIAS_SYS_CAST2 (strpbrk,\n                        char *, (char const *__s, char const *__accept),\n                        const char *, (char const *__s, char const *__accept));\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (strpbrk, char *, (char *__s, char const *__accept));\n_GL_CXXALIASWARN1 (strpbrk, char const *,\n                   (char const *__s, char const *__accept));\n# else\n_GL_CXXALIASWARN (strpbrk);\n# endif\n# if defined GNULIB_POSIXCHECK\n/* strpbrk() assumes the second argument is a list of single-byte characters.\n   Even in this simple case, it does not work with multibyte strings if the\n   locale encoding is GB18030 and one of the characters to be searched is a\n   digit.  */\n#  undef strpbrk\n_GL_WARN_ON_USE (strpbrk, \"strpbrk cannot work correctly on character strings \"\n                 \"in multibyte locales - \"\n                 \"use mbspbrk if you care about internationalization\");\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef strpbrk\n# if HAVE_RAW_DECL_STRPBRK\n_GL_WARN_ON_USE (strpbrk, \"strpbrk is unportable - \"\n                 \"use gnulib module strpbrk for portability\");\n# endif\n#endif\n\n#if defined GNULIB_POSIXCHECK\n/* strspn() assumes the second argument is a list of single-byte characters.\n   Even in this simple case, it cannot work with multibyte strings.  */\n# undef strspn\n/* Assume strspn is always declared.  */\n_GL_WARN_ON_USE (strspn, \"strspn cannot work correctly on character strings \"\n                 \"in multibyte locales - \"\n                 \"use mbsspn if you care about internationalization\");\n#endif\n\n#if defined GNULIB_POSIXCHECK\n/* strrchr() does not work with multibyte strings if the locale encoding is\n   GB18030 and the character to be searched is a digit.  */\n# undef strrchr\n/* Assume strrchr is always declared.  */\n_GL_WARN_ON_USE (strrchr, \"strrchr cannot work correctly on character strings \"\n                 \"in some multibyte locales - \"\n                 \"use mbsrchr if you care about internationalization\");\n#endif\n\n/* Search the next delimiter (char listed in DELIM) starting at *STRINGP.\n   If one is found, overwrite it with a NUL, and advance *STRINGP\n   to point to the next char after it.  Otherwise, set *STRINGP to NULL.\n   If *STRINGP was already NULL, nothing happens.\n   Return the old value of *STRINGP.\n\n   This is a variant of strtok() that is multithread-safe and supports\n   empty fields.\n\n   Caveat: It modifies the original string.\n   Caveat: These functions cannot be used on constant strings.\n   Caveat: The identity of the delimiting character is lost.\n   Caveat: It doesn't work with multibyte strings unless all of the delimiter\n           characters are ASCII characters < 0x30.\n\n   See also strtok_r().  */\n#if 0\n# if ! 1\n_GL_FUNCDECL_SYS (strsep, char *,\n                  (char **restrict __stringp, char const *restrict __delim)\n                  _GL_ARG_NONNULL ((1, 2)));\n# endif\n_GL_CXXALIAS_SYS (strsep, char *,\n                  (char **restrict __stringp, char const *restrict __delim));\n_GL_CXXALIASWARN (strsep);\n# if defined GNULIB_POSIXCHECK\n#  undef strsep\n_GL_WARN_ON_USE (strsep, \"strsep cannot work correctly on character strings \"\n                 \"in multibyte locales - \"\n                 \"use mbssep if you care about internationalization\");\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef strsep\n# if HAVE_RAW_DECL_STRSEP\n_GL_WARN_ON_USE (strsep, \"strsep is unportable - \"\n                 \"use gnulib module strsep for portability\");\n# endif\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define strstr rpl_strstr\n#  endif\n_GL_FUNCDECL_RPL (strstr, char *, (const char *haystack, const char *needle)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (strstr, char *, (const char *haystack, const char *needle));\n# else\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C++\" { const char * strstr (const char *, const char *); }\n       extern \"C++\" { char * strstr (char *, const char *); }  */\n_GL_CXXALIAS_SYS_CAST2 (strstr,\n                        char *, (const char *haystack, const char *needle),\n                        const char *, (const char *haystack, const char *needle));\n# endif\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (strstr, char *, (char *haystack, const char *needle));\n_GL_CXXALIASWARN1 (strstr, const char *,\n                   (const char *haystack, const char *needle));\n# else\n_GL_CXXALIASWARN (strstr);\n# endif\n#elif defined GNULIB_POSIXCHECK\n/* strstr() does not work with multibyte strings if the locale encoding is\n   different from UTF-8:\n   POSIX says that it operates on \"strings\", and \"string\" in POSIX is defined\n   as a sequence of bytes, not of characters.  */\n# undef strstr\n/* Assume strstr is always declared.  */\n_GL_WARN_ON_USE (strstr, \"strstr is quadratic on many systems, and cannot \"\n                 \"work correctly on character strings in most \"\n                 \"multibyte locales - \"\n                 \"use mbsstr if you care about internationalization, \"\n                 \"or use strstr if you care about speed\");\n#endif\n\n/* Find the first occurrence of NEEDLE in HAYSTACK, using case-insensitive\n   comparison.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define strcasestr rpl_strcasestr\n#  endif\n_GL_FUNCDECL_RPL (strcasestr, char *,\n                  (const char *haystack, const char *needle)\n                  _GL_ATTRIBUTE_PURE\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (strcasestr, char *,\n                  (const char *haystack, const char *needle));\n# else\n#  if ! 1\n_GL_FUNCDECL_SYS (strcasestr, char *,\n                  (const char *haystack, const char *needle)\n                  _GL_ATTRIBUTE_PURE\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C++\" { const char * strcasestr (const char *, const char *); }\n       extern \"C++\" { char * strcasestr (char *, const char *); }  */\n_GL_CXXALIAS_SYS_CAST2 (strcasestr,\n                        char *, (const char *haystack, const char *needle),\n                        const char *, (const char *haystack, const char *needle));\n# endif\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (strcasestr, char *, (char *haystack, const char *needle));\n_GL_CXXALIASWARN1 (strcasestr, const char *,\n                   (const char *haystack, const char *needle));\n# else\n_GL_CXXALIASWARN (strcasestr);\n# endif\n#elif defined GNULIB_POSIXCHECK\n/* strcasestr() does not work with multibyte strings:\n   It is a glibc extension, and glibc implements it only for unibyte\n   locales.  */\n# undef strcasestr\n# if HAVE_RAW_DECL_STRCASESTR\n_GL_WARN_ON_USE (strcasestr, \"strcasestr does work correctly on character \"\n                 \"strings in multibyte locales - \"\n                 \"use mbscasestr if you care about \"\n                 \"internationalization, or use c-strcasestr if you want \"\n                 \"a locale independent function\");\n# endif\n#endif\n\n/* Parse S into tokens separated by characters in DELIM.\n   If S is NULL, the saved pointer in SAVE_PTR is used as\n   the next starting point.  For example:\n        char s[] = \"-abc-=-def\";\n        char *sp;\n        x = strtok_r(s, \"-\", &sp);      // x = \"abc\", sp = \"=-def\"\n        x = strtok_r(NULL, \"-=\", &sp);  // x = \"def\", sp = NULL\n        x = strtok_r(NULL, \"=\", &sp);   // x = NULL\n                // s = \"abc\\0-def\\0\"\n\n   This is a variant of strtok() that is multithread-safe.\n\n   For the POSIX documentation for this function, see:\n   http://www.opengroup.org/susv3xsh/strtok.html\n\n   Caveat: It modifies the original string.\n   Caveat: These functions cannot be used on constant strings.\n   Caveat: The identity of the delimiting character is lost.\n   Caveat: It doesn't work with multibyte strings unless all of the delimiter\n           characters are ASCII characters < 0x30.\n\n   See also strsep().  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strtok_r\n#   define strtok_r rpl_strtok_r\n#  endif\n_GL_FUNCDECL_RPL (strtok_r, char *,\n                  (char *restrict s, char const *restrict delim,\n                   char **restrict save_ptr)\n                  _GL_ARG_NONNULL ((2, 3)));\n_GL_CXXALIAS_RPL (strtok_r, char *,\n                  (char *restrict s, char const *restrict delim,\n                   char **restrict save_ptr));\n# else\n#  if 0 || defined GNULIB_POSIXCHECK\n#   undef strtok_r\n#  endif\n#  if ! 1\n_GL_FUNCDECL_SYS (strtok_r, char *,\n                  (char *restrict s, char const *restrict delim,\n                   char **restrict save_ptr)\n                  _GL_ARG_NONNULL ((2, 3)));\n#  endif\n_GL_CXXALIAS_SYS (strtok_r, char *,\n                  (char *restrict s, char const *restrict delim,\n                   char **restrict save_ptr));\n# endif\n_GL_CXXALIASWARN (strtok_r);\n# if defined GNULIB_POSIXCHECK\n_GL_WARN_ON_USE (strtok_r, \"strtok_r cannot work correctly on character \"\n                 \"strings in multibyte locales - \"\n                 \"use mbstok_r if you care about internationalization\");\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef strtok_r\n# if HAVE_RAW_DECL_STRTOK_R\n_GL_WARN_ON_USE (strtok_r, \"strtok_r is unportable - \"\n                 \"use gnulib module strtok_r for portability\");\n# endif\n#endif\n\n\n/* The following functions are not specified by POSIX.  They are gnulib\n   extensions.  */\n\n#if 0\n/* Return the number of multibyte characters in the character string STRING.\n   This considers multibyte characters, unlike strlen, which counts bytes.  */\n# ifdef __MirBSD__  /* MirBSD defines mbslen as a macro.  Override it.  */\n#  undef mbslen\n# endif\n# if 0  /* AIX, OSF/1, MirBSD define mbslen already in libc.  */\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mbslen rpl_mbslen\n#  endif\n_GL_FUNCDECL_RPL (mbslen, size_t, (const char *string)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mbslen, size_t, (const char *string));\n# else\n_GL_FUNCDECL_SYS (mbslen, size_t, (const char *string)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_SYS (mbslen, size_t, (const char *string));\n# endif\n_GL_CXXALIASWARN (mbslen);\n#endif\n\n#if 0\n/* Return the number of multibyte characters in the character string starting\n   at STRING and ending at STRING + LEN.  */\n_GL_EXTERN_C size_t mbsnlen (const char *string, size_t len)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1));\n#endif\n\n#if 0\n/* Locate the first single-byte character C in the character string STRING,\n   and return a pointer to it.  Return NULL if C is not found in STRING.\n   Unlike strchr(), this function works correctly in multibyte locales with\n   encodings such as GB18030.  */\n# if defined __hpux\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mbschr rpl_mbschr /* avoid collision with HP-UX function */\n#  endif\n_GL_FUNCDECL_RPL (mbschr, char *, (const char *string, int c)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mbschr, char *, (const char *string, int c));\n# else\n_GL_FUNCDECL_SYS (mbschr, char *, (const char *string, int c)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_SYS (mbschr, char *, (const char *string, int c));\n# endif\n_GL_CXXALIASWARN (mbschr);\n#endif\n\n#if 0\n/* Locate the last single-byte character C in the character string STRING,\n   and return a pointer to it.  Return NULL if C is not found in STRING.\n   Unlike strrchr(), this function works correctly in multibyte locales with\n   encodings such as GB18030.  */\n# if defined __hpux || defined __INTERIX\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mbsrchr rpl_mbsrchr /* avoid collision with system function */\n#  endif\n_GL_FUNCDECL_RPL (mbsrchr, char *, (const char *string, int c)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mbsrchr, char *, (const char *string, int c));\n# else\n_GL_FUNCDECL_SYS (mbsrchr, char *, (const char *string, int c)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_SYS (mbsrchr, char *, (const char *string, int c));\n# endif\n_GL_CXXALIASWARN (mbsrchr);\n#endif\n\n#if 0\n/* Find the first occurrence of the character string NEEDLE in the character\n   string HAYSTACK.  Return NULL if NEEDLE is not found in HAYSTACK.\n   Unlike strstr(), this function works correctly in multibyte locales with\n   encodings different from UTF-8.  */\n_GL_EXTERN_C char * mbsstr (const char *haystack, const char *needle)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if 0\n/* Compare the character strings S1 and S2, ignoring case, returning less than,\n   equal to or greater than zero if S1 is lexicographically less than, equal to\n   or greater than S2.\n   Note: This function may, in multibyte locales, return 0 for strings of\n   different lengths!\n   Unlike strcasecmp(), this function works correctly in multibyte locales.  */\n_GL_EXTERN_C int mbscasecmp (const char *s1, const char *s2)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if 0\n/* Compare the initial segment of the character string S1 consisting of at most\n   N characters with the initial segment of the character string S2 consisting\n   of at most N characters, ignoring case, returning less than, equal to or\n   greater than zero if the initial segment of S1 is lexicographically less\n   than, equal to or greater than the initial segment of S2.\n   Note: This function may, in multibyte locales, return 0 for initial segments\n   of different lengths!\n   Unlike strncasecmp(), this function works correctly in multibyte locales.\n   But beware that N is not a byte count but a character count!  */\n_GL_EXTERN_C int mbsncasecmp (const char *s1, const char *s2, size_t n)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if 0\n/* Compare the initial segment of the character string STRING consisting of\n   at most mbslen (PREFIX) characters with the character string PREFIX,\n   ignoring case.  If the two match, return a pointer to the first byte\n   after this prefix in STRING.  Otherwise, return NULL.\n   Note: This function may, in multibyte locales, return non-NULL if STRING\n   is of smaller length than PREFIX!\n   Unlike strncasecmp(), this function works correctly in multibyte\n   locales.  */\n_GL_EXTERN_C char * mbspcasecmp (const char *string, const char *prefix)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if 0\n/* Find the first occurrence of the character string NEEDLE in the character\n   string HAYSTACK, using case-insensitive comparison.\n   Note: This function may, in multibyte locales, return success even if\n   strlen (haystack) < strlen (needle) !\n   Unlike strcasestr(), this function works correctly in multibyte locales.  */\n_GL_EXTERN_C char * mbscasestr (const char *haystack, const char *needle)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if 0\n/* Find the first occurrence in the character string STRING of any character\n   in the character string ACCEPT.  Return the number of bytes from the\n   beginning of the string to this occurrence, or to the end of the string\n   if none exists.\n   Unlike strcspn(), this function works correctly in multibyte locales.  */\n_GL_EXTERN_C size_t mbscspn (const char *string, const char *accept)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if 0\n/* Find the first occurrence in the character string STRING of any character\n   in the character string ACCEPT.  Return the pointer to it, or NULL if none\n   exists.\n   Unlike strpbrk(), this function works correctly in multibyte locales.  */\n# if defined __hpux\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mbspbrk rpl_mbspbrk /* avoid collision with HP-UX function */\n#  endif\n_GL_FUNCDECL_RPL (mbspbrk, char *, (const char *string, const char *accept)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (mbspbrk, char *, (const char *string, const char *accept));\n# else\n_GL_FUNCDECL_SYS (mbspbrk, char *, (const char *string, const char *accept)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_SYS (mbspbrk, char *, (const char *string, const char *accept));\n# endif\n_GL_CXXALIASWARN (mbspbrk);\n#endif\n\n#if 0\n/* Find the first occurrence in the character string STRING of any character\n   not in the character string REJECT.  Return the number of bytes from the\n   beginning of the string to this occurrence, or to the end of the string\n   if none exists.\n   Unlike strspn(), this function works correctly in multibyte locales.  */\n_GL_EXTERN_C size_t mbsspn (const char *string, const char *reject)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if 0\n/* Search the next delimiter (multibyte character listed in the character\n   string DELIM) starting at the character string *STRINGP.\n   If one is found, overwrite it with a NUL, and advance *STRINGP to point\n   to the next multibyte character after it.  Otherwise, set *STRINGP to NULL.\n   If *STRINGP was already NULL, nothing happens.\n   Return the old value of *STRINGP.\n\n   This is a variant of mbstok_r() that supports empty fields.\n\n   Caveat: It modifies the original string.\n   Caveat: These functions cannot be used on constant strings.\n   Caveat: The identity of the delimiting character is lost.\n\n   See also mbstok_r().  */\n_GL_EXTERN_C char * mbssep (char **stringp, const char *delim)\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if 0\n/* Parse the character string STRING into tokens separated by characters in\n   the character string DELIM.\n   If STRING is NULL, the saved pointer in SAVE_PTR is used as\n   the next starting point.  For example:\n        char s[] = \"-abc-=-def\";\n        char *sp;\n        x = mbstok_r(s, \"-\", &sp);      // x = \"abc\", sp = \"=-def\"\n        x = mbstok_r(NULL, \"-=\", &sp);  // x = \"def\", sp = NULL\n        x = mbstok_r(NULL, \"=\", &sp);   // x = NULL\n                // s = \"abc\\0-def\\0\"\n\n   Caveat: It modifies the original string.\n   Caveat: These functions cannot be used on constant strings.\n   Caveat: The identity of the delimiting character is lost.\n\n   See also mbssep().  */\n_GL_EXTERN_C char * mbstok_r (char *string, const char *delim, char **save_ptr)\n     _GL_ARG_NONNULL ((2, 3));\n#endif\n\n/* Map any int, typically from errno, into an error message.  */\n#if 1\n# if 1\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strerror\n#   define strerror rpl_strerror\n#  endif\n_GL_FUNCDECL_RPL (strerror, char *, (int));\n_GL_CXXALIAS_RPL (strerror, char *, (int));\n# else\n_GL_CXXALIAS_SYS (strerror, char *, (int));\n# endif\n_GL_CXXALIASWARN (strerror);\n#elif defined GNULIB_POSIXCHECK\n# undef strerror\n/* Assume strerror is always declared.  */\n_GL_WARN_ON_USE (strerror, \"strerror is unportable - \"\n                 \"use gnulib module strerror to guarantee non-NULL result\");\n#endif\n\n/* Map any int, typically from errno, into an error message.  Multithread-safe.\n   Uses the POSIX declaration, not the glibc declaration.  */\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strerror_r\n#   define strerror_r rpl_strerror_r\n#  endif\n_GL_FUNCDECL_RPL (strerror_r, int, (int errnum, char *buf, size_t buflen)\n                                   _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (strerror_r, int, (int errnum, char *buf, size_t buflen));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (strerror_r, int, (int errnum, char *buf, size_t buflen)\n                                   _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (strerror_r, int, (int errnum, char *buf, size_t buflen));\n# endif\n# if 1\n_GL_CXXALIASWARN (strerror_r);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef strerror_r\n# if HAVE_RAW_DECL_STRERROR_R\n_GL_WARN_ON_USE (strerror_r, \"strerror_r is unportable - \"\n                 \"use gnulib module strerror_r-posix for portability\");\n# endif\n#endif\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define strsignal rpl_strsignal\n#  endif\n_GL_FUNCDECL_RPL (strsignal, char *, (int __sig));\n_GL_CXXALIAS_RPL (strsignal, char *, (int __sig));\n# else\n#  if ! 1\n_GL_FUNCDECL_SYS (strsignal, char *, (int __sig));\n#  endif\n/* Need to cast, because on Cygwin 1.5.x systems, the return type is\n   'const char *'.  */\n_GL_CXXALIAS_SYS_CAST (strsignal, char *, (int __sig));\n# endif\n_GL_CXXALIASWARN (strsignal);\n#elif defined GNULIB_POSIXCHECK\n# undef strsignal\n# if HAVE_RAW_DECL_STRSIGNAL\n_GL_WARN_ON_USE (strsignal, \"strsignal is unportable - \"\n                 \"use gnulib module strsignal for portability\");\n# endif\n#endif\n\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (strverscmp, int, (const char *, const char *)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1, 2)));\n# endif\n_GL_CXXALIAS_SYS (strverscmp, int, (const char *, const char *));\n_GL_CXXALIASWARN (strverscmp);\n#elif defined GNULIB_POSIXCHECK\n# undef strverscmp\n# if HAVE_RAW_DECL_STRVERSCMP\n_GL_WARN_ON_USE (strverscmp, \"strverscmp is unportable - \"\n                 \"use gnulib module strverscmp for portability\");\n# endif\n#endif\n\n\n#endif /* _GL_STRING_H */\n#endif /* _GL_STRING_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/string.in.h",
    "content": "/* A GNU-like <string.h>.\n\n   Copyright (C) 1995-1996, 2001-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n#if defined _GL_ALREADY_INCLUDING_STRING_H\n/* Special invocation convention:\n   - On OS X/NetBSD we have a sequence of nested includes\n       <string.h> -> <strings.h> -> \"string.h\"\n     In this situation system _chk variants due to -D_FORTIFY_SOURCE\n     might be used after any replacements defined here.  */\n\n#@INCLUDE_NEXT@ @NEXT_STRING_H@\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _@GUARD_PREFIX@_STRING_H\n\n#define _GL_ALREADY_INCLUDING_STRING_H\n\n/* The include_next requires a split double-inclusion guard.  */\n#@INCLUDE_NEXT@ @NEXT_STRING_H@\n\n#undef _GL_ALREADY_INCLUDING_STRING_H\n\n#ifndef _@GUARD_PREFIX@_STRING_H\n#define _@GUARD_PREFIX@_STRING_H\n\n/* NetBSD 5.0 mis-defines NULL.  */\n#include <stddef.h>\n\n/* MirBSD defines mbslen as a macro.  */\n#if @GNULIB_MBSLEN@ && defined __MirBSD__\n# include <wchar.h>\n#endif\n\n/* The __attribute__ feature is available in gcc versions 2.5 and later.\n   The attribute __pure__ was added in gcc 2.96.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)\n# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))\n#else\n# define _GL_ATTRIBUTE_PURE /* empty */\n#endif\n\n/* NetBSD 5.0 declares strsignal in <unistd.h>, not in <string.h>.  */\n/* But in any case avoid namespace pollution on glibc systems.  */\n#if (@GNULIB_STRSIGNAL@ || defined GNULIB_POSIXCHECK) && defined __NetBSD__ \\\n    && ! defined __GLIBC__\n# include <unistd.h>\n#endif\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n\n\n/* Find the index of the least-significant set bit.  */\n#if @GNULIB_FFSL@\n# if !@HAVE_FFSL@\n_GL_FUNCDECL_SYS (ffsl, int, (long int i));\n# endif\n_GL_CXXALIAS_SYS (ffsl, int, (long int i));\n_GL_CXXALIASWARN (ffsl);\n#elif defined GNULIB_POSIXCHECK\n# undef ffsl\n# if HAVE_RAW_DECL_FFSL\n_GL_WARN_ON_USE (ffsl, \"ffsl is not portable - use the ffsl module\");\n# endif\n#endif\n\n\n/* Find the index of the least-significant set bit.  */\n#if @GNULIB_FFSLL@\n# if !@HAVE_FFSLL@\n_GL_FUNCDECL_SYS (ffsll, int, (long long int i));\n# endif\n_GL_CXXALIAS_SYS (ffsll, int, (long long int i));\n_GL_CXXALIASWARN (ffsll);\n#elif defined GNULIB_POSIXCHECK\n# undef ffsll\n# if HAVE_RAW_DECL_FFSLL\n_GL_WARN_ON_USE (ffsll, \"ffsll is not portable - use the ffsll module\");\n# endif\n#endif\n\n\n/* Return the first instance of C within N bytes of S, or NULL.  */\n#if @GNULIB_MEMCHR@\n# if @REPLACE_MEMCHR@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define memchr rpl_memchr\n#  endif\n_GL_FUNCDECL_RPL (memchr, void *, (void const *__s, int __c, size_t __n)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (memchr, void *, (void const *__s, int __c, size_t __n));\n# else\n#  if ! @HAVE_MEMCHR@\n_GL_FUNCDECL_SYS (memchr, void *, (void const *__s, int __c, size_t __n)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n#  endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C\" { const void * std::memchr (const void *, int, size_t); }\n       extern \"C++\" { void * std::memchr (void *, int, size_t); }  */\n_GL_CXXALIAS_SYS_CAST2 (memchr,\n                        void *, (void const *__s, int __c, size_t __n),\n                        void const *, (void const *__s, int __c, size_t __n));\n# endif\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (memchr, void *, (void *__s, int __c, size_t __n));\n_GL_CXXALIASWARN1 (memchr, void const *,\n                   (void const *__s, int __c, size_t __n));\n# else\n_GL_CXXALIASWARN (memchr);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef memchr\n/* Assume memchr is always declared.  */\n_GL_WARN_ON_USE (memchr, \"memchr has platform-specific bugs - \"\n                 \"use gnulib module memchr for portability\" );\n#endif\n\n/* Return the first occurrence of NEEDLE in HAYSTACK.  */\n#if @GNULIB_MEMMEM@\n# if @REPLACE_MEMMEM@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define memmem rpl_memmem\n#  endif\n_GL_FUNCDECL_RPL (memmem, void *,\n                  (void const *__haystack, size_t __haystack_len,\n                   void const *__needle, size_t __needle_len)\n                  _GL_ATTRIBUTE_PURE\n                  _GL_ARG_NONNULL ((1, 3)));\n_GL_CXXALIAS_RPL (memmem, void *,\n                  (void const *__haystack, size_t __haystack_len,\n                   void const *__needle, size_t __needle_len));\n# else\n#  if ! @HAVE_DECL_MEMMEM@\n_GL_FUNCDECL_SYS (memmem, void *,\n                  (void const *__haystack, size_t __haystack_len,\n                   void const *__needle, size_t __needle_len)\n                  _GL_ATTRIBUTE_PURE\n                  _GL_ARG_NONNULL ((1, 3)));\n#  endif\n_GL_CXXALIAS_SYS (memmem, void *,\n                  (void const *__haystack, size_t __haystack_len,\n                   void const *__needle, size_t __needle_len));\n# endif\n_GL_CXXALIASWARN (memmem);\n#elif defined GNULIB_POSIXCHECK\n# undef memmem\n# if HAVE_RAW_DECL_MEMMEM\n_GL_WARN_ON_USE (memmem, \"memmem is unportable and often quadratic - \"\n                 \"use gnulib module memmem-simple for portability, \"\n                 \"and module memmem for speed\" );\n# endif\n#endif\n\n/* Copy N bytes of SRC to DEST, return pointer to bytes after the\n   last written byte.  */\n#if @GNULIB_MEMPCPY@\n# if ! @HAVE_MEMPCPY@\n_GL_FUNCDECL_SYS (mempcpy, void *,\n                  (void *restrict __dest, void const *restrict __src,\n                   size_t __n)\n                  _GL_ARG_NONNULL ((1, 2)));\n# endif\n_GL_CXXALIAS_SYS (mempcpy, void *,\n                  (void *restrict __dest, void const *restrict __src,\n                   size_t __n));\n_GL_CXXALIASWARN (mempcpy);\n#elif defined GNULIB_POSIXCHECK\n# undef mempcpy\n# if HAVE_RAW_DECL_MEMPCPY\n_GL_WARN_ON_USE (mempcpy, \"mempcpy is unportable - \"\n                 \"use gnulib module mempcpy for portability\");\n# endif\n#endif\n\n/* Search backwards through a block for a byte (specified as an int).  */\n#if @GNULIB_MEMRCHR@\n# if ! @HAVE_DECL_MEMRCHR@\n_GL_FUNCDECL_SYS (memrchr, void *, (void const *, int, size_t)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1)));\n# endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C++\" { const void * std::memrchr (const void *, int, size_t); }\n       extern \"C++\" { void * std::memrchr (void *, int, size_t); }  */\n_GL_CXXALIAS_SYS_CAST2 (memrchr,\n                        void *, (void const *, int, size_t),\n                        void const *, (void const *, int, size_t));\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (memrchr, void *, (void *, int, size_t));\n_GL_CXXALIASWARN1 (memrchr, void const *, (void const *, int, size_t));\n# else\n_GL_CXXALIASWARN (memrchr);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef memrchr\n# if HAVE_RAW_DECL_MEMRCHR\n_GL_WARN_ON_USE (memrchr, \"memrchr is unportable - \"\n                 \"use gnulib module memrchr for portability\");\n# endif\n#endif\n\n/* Find the first occurrence of C in S.  More efficient than\n   memchr(S,C,N), at the expense of undefined behavior if C does not\n   occur within N bytes.  */\n#if @GNULIB_RAWMEMCHR@\n# if ! @HAVE_RAWMEMCHR@\n_GL_FUNCDECL_SYS (rawmemchr, void *, (void const *__s, int __c_in)\n                                     _GL_ATTRIBUTE_PURE\n                                     _GL_ARG_NONNULL ((1)));\n# endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C++\" { const void * std::rawmemchr (const void *, int); }\n       extern \"C++\" { void * std::rawmemchr (void *, int); }  */\n_GL_CXXALIAS_SYS_CAST2 (rawmemchr,\n                        void *, (void const *__s, int __c_in),\n                        void const *, (void const *__s, int __c_in));\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (rawmemchr, void *, (void *__s, int __c_in));\n_GL_CXXALIASWARN1 (rawmemchr, void const *, (void const *__s, int __c_in));\n# else\n_GL_CXXALIASWARN (rawmemchr);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef rawmemchr\n# if HAVE_RAW_DECL_RAWMEMCHR\n_GL_WARN_ON_USE (rawmemchr, \"rawmemchr is unportable - \"\n                 \"use gnulib module rawmemchr for portability\");\n# endif\n#endif\n\n/* Copy SRC to DST, returning the address of the terminating '\\0' in DST.  */\n#if @GNULIB_STPCPY@\n# if ! @HAVE_STPCPY@\n_GL_FUNCDECL_SYS (stpcpy, char *,\n                  (char *restrict __dst, char const *restrict __src)\n                  _GL_ARG_NONNULL ((1, 2)));\n# endif\n_GL_CXXALIAS_SYS (stpcpy, char *,\n                  (char *restrict __dst, char const *restrict __src));\n_GL_CXXALIASWARN (stpcpy);\n#elif defined GNULIB_POSIXCHECK\n# undef stpcpy\n# if HAVE_RAW_DECL_STPCPY\n_GL_WARN_ON_USE (stpcpy, \"stpcpy is unportable - \"\n                 \"use gnulib module stpcpy for portability\");\n# endif\n#endif\n\n/* Copy no more than N bytes of SRC to DST, returning a pointer past the\n   last non-NUL byte written into DST.  */\n#if @GNULIB_STPNCPY@\n# if @REPLACE_STPNCPY@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef stpncpy\n#   define stpncpy rpl_stpncpy\n#  endif\n_GL_FUNCDECL_RPL (stpncpy, char *,\n                  (char *restrict __dst, char const *restrict __src,\n                   size_t __n)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (stpncpy, char *,\n                  (char *restrict __dst, char const *restrict __src,\n                   size_t __n));\n# else\n#  if ! @HAVE_STPNCPY@\n_GL_FUNCDECL_SYS (stpncpy, char *,\n                  (char *restrict __dst, char const *restrict __src,\n                   size_t __n)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (stpncpy, char *,\n                  (char *restrict __dst, char const *restrict __src,\n                   size_t __n));\n# endif\n_GL_CXXALIASWARN (stpncpy);\n#elif defined GNULIB_POSIXCHECK\n# undef stpncpy\n# if HAVE_RAW_DECL_STPNCPY\n_GL_WARN_ON_USE (stpncpy, \"stpncpy is unportable - \"\n                 \"use gnulib module stpncpy for portability\");\n# endif\n#endif\n\n#if defined GNULIB_POSIXCHECK\n/* strchr() does not work with multibyte strings if the locale encoding is\n   GB18030 and the character to be searched is a digit.  */\n# undef strchr\n/* Assume strchr is always declared.  */\n_GL_WARN_ON_USE (strchr, \"strchr cannot work correctly on character strings \"\n                 \"in some multibyte locales - \"\n                 \"use mbschr if you care about internationalization\");\n#endif\n\n/* Find the first occurrence of C in S or the final NUL byte.  */\n#if @GNULIB_STRCHRNUL@\n# if @REPLACE_STRCHRNUL@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define strchrnul rpl_strchrnul\n#  endif\n_GL_FUNCDECL_RPL (strchrnul, char *, (const char *__s, int __c_in)\n                                     _GL_ATTRIBUTE_PURE\n                                     _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (strchrnul, char *,\n                  (const char *str, int ch));\n# else\n#  if ! @HAVE_STRCHRNUL@\n_GL_FUNCDECL_SYS (strchrnul, char *, (char const *__s, int __c_in)\n                                     _GL_ATTRIBUTE_PURE\n                                     _GL_ARG_NONNULL ((1)));\n#  endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C++\" { const char * std::strchrnul (const char *, int); }\n       extern \"C++\" { char * std::strchrnul (char *, int); }  */\n_GL_CXXALIAS_SYS_CAST2 (strchrnul,\n                        char *, (char const *__s, int __c_in),\n                        char const *, (char const *__s, int __c_in));\n# endif\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (strchrnul, char *, (char *__s, int __c_in));\n_GL_CXXALIASWARN1 (strchrnul, char const *, (char const *__s, int __c_in));\n# else\n_GL_CXXALIASWARN (strchrnul);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef strchrnul\n# if HAVE_RAW_DECL_STRCHRNUL\n_GL_WARN_ON_USE (strchrnul, \"strchrnul is unportable - \"\n                 \"use gnulib module strchrnul for portability\");\n# endif\n#endif\n\n/* Duplicate S, returning an identical malloc'd string.  */\n#if @GNULIB_STRDUP@\n# if @REPLACE_STRDUP@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strdup\n#   define strdup rpl_strdup\n#  endif\n_GL_FUNCDECL_RPL (strdup, char *, (char const *__s) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (strdup, char *, (char const *__s));\n# else\n#  if defined __cplusplus && defined GNULIB_NAMESPACE && defined strdup\n    /* strdup exists as a function and as a macro.  Get rid of the macro.  */\n#   undef strdup\n#  endif\n#  if !(@HAVE_DECL_STRDUP@ || defined strdup)\n_GL_FUNCDECL_SYS (strdup, char *, (char const *__s) _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (strdup, char *, (char const *__s));\n# endif\n_GL_CXXALIASWARN (strdup);\n#elif defined GNULIB_POSIXCHECK\n# undef strdup\n# if HAVE_RAW_DECL_STRDUP\n_GL_WARN_ON_USE (strdup, \"strdup is unportable - \"\n                 \"use gnulib module strdup for portability\");\n# endif\n#endif\n\n/* Append no more than N characters from SRC onto DEST.  */\n#if @GNULIB_STRNCAT@\n# if @REPLACE_STRNCAT@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strncat\n#   define strncat rpl_strncat\n#  endif\n_GL_FUNCDECL_RPL (strncat, char *, (char *dest, const char *src, size_t n)\n                                   _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (strncat, char *, (char *dest, const char *src, size_t n));\n# else\n_GL_CXXALIAS_SYS (strncat, char *, (char *dest, const char *src, size_t n));\n# endif\n_GL_CXXALIASWARN (strncat);\n#elif defined GNULIB_POSIXCHECK\n# undef strncat\n# if HAVE_RAW_DECL_STRNCAT\n_GL_WARN_ON_USE (strncat, \"strncat is unportable - \"\n                 \"use gnulib module strncat for portability\");\n# endif\n#endif\n\n/* Return a newly allocated copy of at most N bytes of STRING.  */\n#if @GNULIB_STRNDUP@\n# if @REPLACE_STRNDUP@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strndup\n#   define strndup rpl_strndup\n#  endif\n_GL_FUNCDECL_RPL (strndup, char *, (char const *__s, size_t __n)\n                                   _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (strndup, char *, (char const *__s, size_t __n));\n# else\n#  if ! @HAVE_DECL_STRNDUP@\n_GL_FUNCDECL_SYS (strndup, char *, (char const *__s, size_t __n)\n                                   _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (strndup, char *, (char const *__s, size_t __n));\n# endif\n_GL_CXXALIASWARN (strndup);\n#elif defined GNULIB_POSIXCHECK\n# undef strndup\n# if HAVE_RAW_DECL_STRNDUP\n_GL_WARN_ON_USE (strndup, \"strndup is unportable - \"\n                 \"use gnulib module strndup for portability\");\n# endif\n#endif\n\n/* Find the length (number of bytes) of STRING, but scan at most\n   MAXLEN bytes.  If no '\\0' terminator is found in that many bytes,\n   return MAXLEN.  */\n#if @GNULIB_STRNLEN@\n# if @REPLACE_STRNLEN@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strnlen\n#   define strnlen rpl_strnlen\n#  endif\n_GL_FUNCDECL_RPL (strnlen, size_t, (char const *__s, size_t __maxlen)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (strnlen, size_t, (char const *__s, size_t __maxlen));\n# else\n#  if ! @HAVE_DECL_STRNLEN@\n_GL_FUNCDECL_SYS (strnlen, size_t, (char const *__s, size_t __maxlen)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (strnlen, size_t, (char const *__s, size_t __maxlen));\n# endif\n_GL_CXXALIASWARN (strnlen);\n#elif defined GNULIB_POSIXCHECK\n# undef strnlen\n# if HAVE_RAW_DECL_STRNLEN\n_GL_WARN_ON_USE (strnlen, \"strnlen is unportable - \"\n                 \"use gnulib module strnlen for portability\");\n# endif\n#endif\n\n#if defined GNULIB_POSIXCHECK\n/* strcspn() assumes the second argument is a list of single-byte characters.\n   Even in this simple case, it does not work with multibyte strings if the\n   locale encoding is GB18030 and one of the characters to be searched is a\n   digit.  */\n# undef strcspn\n/* Assume strcspn is always declared.  */\n_GL_WARN_ON_USE (strcspn, \"strcspn cannot work correctly on character strings \"\n                 \"in multibyte locales - \"\n                 \"use mbscspn if you care about internationalization\");\n#endif\n\n/* Find the first occurrence in S of any character in ACCEPT.  */\n#if @GNULIB_STRPBRK@\n# if ! @HAVE_STRPBRK@\n_GL_FUNCDECL_SYS (strpbrk, char *, (char const *__s, char const *__accept)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1, 2)));\n# endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C\" { const char * strpbrk (const char *, const char *); }\n       extern \"C++\" { char * strpbrk (char *, const char *); }  */\n_GL_CXXALIAS_SYS_CAST2 (strpbrk,\n                        char *, (char const *__s, char const *__accept),\n                        const char *, (char const *__s, char const *__accept));\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (strpbrk, char *, (char *__s, char const *__accept));\n_GL_CXXALIASWARN1 (strpbrk, char const *,\n                   (char const *__s, char const *__accept));\n# else\n_GL_CXXALIASWARN (strpbrk);\n# endif\n# if defined GNULIB_POSIXCHECK\n/* strpbrk() assumes the second argument is a list of single-byte characters.\n   Even in this simple case, it does not work with multibyte strings if the\n   locale encoding is GB18030 and one of the characters to be searched is a\n   digit.  */\n#  undef strpbrk\n_GL_WARN_ON_USE (strpbrk, \"strpbrk cannot work correctly on character strings \"\n                 \"in multibyte locales - \"\n                 \"use mbspbrk if you care about internationalization\");\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef strpbrk\n# if HAVE_RAW_DECL_STRPBRK\n_GL_WARN_ON_USE (strpbrk, \"strpbrk is unportable - \"\n                 \"use gnulib module strpbrk for portability\");\n# endif\n#endif\n\n#if defined GNULIB_POSIXCHECK\n/* strspn() assumes the second argument is a list of single-byte characters.\n   Even in this simple case, it cannot work with multibyte strings.  */\n# undef strspn\n/* Assume strspn is always declared.  */\n_GL_WARN_ON_USE (strspn, \"strspn cannot work correctly on character strings \"\n                 \"in multibyte locales - \"\n                 \"use mbsspn if you care about internationalization\");\n#endif\n\n#if defined GNULIB_POSIXCHECK\n/* strrchr() does not work with multibyte strings if the locale encoding is\n   GB18030 and the character to be searched is a digit.  */\n# undef strrchr\n/* Assume strrchr is always declared.  */\n_GL_WARN_ON_USE (strrchr, \"strrchr cannot work correctly on character strings \"\n                 \"in some multibyte locales - \"\n                 \"use mbsrchr if you care about internationalization\");\n#endif\n\n/* Search the next delimiter (char listed in DELIM) starting at *STRINGP.\n   If one is found, overwrite it with a NUL, and advance *STRINGP\n   to point to the next char after it.  Otherwise, set *STRINGP to NULL.\n   If *STRINGP was already NULL, nothing happens.\n   Return the old value of *STRINGP.\n\n   This is a variant of strtok() that is multithread-safe and supports\n   empty fields.\n\n   Caveat: It modifies the original string.\n   Caveat: These functions cannot be used on constant strings.\n   Caveat: The identity of the delimiting character is lost.\n   Caveat: It doesn't work with multibyte strings unless all of the delimiter\n           characters are ASCII characters < 0x30.\n\n   See also strtok_r().  */\n#if @GNULIB_STRSEP@\n# if ! @HAVE_STRSEP@\n_GL_FUNCDECL_SYS (strsep, char *,\n                  (char **restrict __stringp, char const *restrict __delim)\n                  _GL_ARG_NONNULL ((1, 2)));\n# endif\n_GL_CXXALIAS_SYS (strsep, char *,\n                  (char **restrict __stringp, char const *restrict __delim));\n_GL_CXXALIASWARN (strsep);\n# if defined GNULIB_POSIXCHECK\n#  undef strsep\n_GL_WARN_ON_USE (strsep, \"strsep cannot work correctly on character strings \"\n                 \"in multibyte locales - \"\n                 \"use mbssep if you care about internationalization\");\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef strsep\n# if HAVE_RAW_DECL_STRSEP\n_GL_WARN_ON_USE (strsep, \"strsep is unportable - \"\n                 \"use gnulib module strsep for portability\");\n# endif\n#endif\n\n#if @GNULIB_STRSTR@\n# if @REPLACE_STRSTR@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define strstr rpl_strstr\n#  endif\n_GL_FUNCDECL_RPL (strstr, char *, (const char *haystack, const char *needle)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (strstr, char *, (const char *haystack, const char *needle));\n# else\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C++\" { const char * strstr (const char *, const char *); }\n       extern \"C++\" { char * strstr (char *, const char *); }  */\n_GL_CXXALIAS_SYS_CAST2 (strstr,\n                        char *, (const char *haystack, const char *needle),\n                        const char *, (const char *haystack, const char *needle));\n# endif\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (strstr, char *, (char *haystack, const char *needle));\n_GL_CXXALIASWARN1 (strstr, const char *,\n                   (const char *haystack, const char *needle));\n# else\n_GL_CXXALIASWARN (strstr);\n# endif\n#elif defined GNULIB_POSIXCHECK\n/* strstr() does not work with multibyte strings if the locale encoding is\n   different from UTF-8:\n   POSIX says that it operates on \"strings\", and \"string\" in POSIX is defined\n   as a sequence of bytes, not of characters.  */\n# undef strstr\n/* Assume strstr is always declared.  */\n_GL_WARN_ON_USE (strstr, \"strstr is quadratic on many systems, and cannot \"\n                 \"work correctly on character strings in most \"\n                 \"multibyte locales - \"\n                 \"use mbsstr if you care about internationalization, \"\n                 \"or use strstr if you care about speed\");\n#endif\n\n/* Find the first occurrence of NEEDLE in HAYSTACK, using case-insensitive\n   comparison.  */\n#if @GNULIB_STRCASESTR@\n# if @REPLACE_STRCASESTR@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define strcasestr rpl_strcasestr\n#  endif\n_GL_FUNCDECL_RPL (strcasestr, char *,\n                  (const char *haystack, const char *needle)\n                  _GL_ATTRIBUTE_PURE\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (strcasestr, char *,\n                  (const char *haystack, const char *needle));\n# else\n#  if ! @HAVE_STRCASESTR@\n_GL_FUNCDECL_SYS (strcasestr, char *,\n                  (const char *haystack, const char *needle)\n                  _GL_ATTRIBUTE_PURE\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n  /* On some systems, this function is defined as an overloaded function:\n       extern \"C++\" { const char * strcasestr (const char *, const char *); }\n       extern \"C++\" { char * strcasestr (char *, const char *); }  */\n_GL_CXXALIAS_SYS_CAST2 (strcasestr,\n                        char *, (const char *haystack, const char *needle),\n                        const char *, (const char *haystack, const char *needle));\n# endif\n# if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \\\n     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n_GL_CXXALIASWARN1 (strcasestr, char *, (char *haystack, const char *needle));\n_GL_CXXALIASWARN1 (strcasestr, const char *,\n                   (const char *haystack, const char *needle));\n# else\n_GL_CXXALIASWARN (strcasestr);\n# endif\n#elif defined GNULIB_POSIXCHECK\n/* strcasestr() does not work with multibyte strings:\n   It is a glibc extension, and glibc implements it only for unibyte\n   locales.  */\n# undef strcasestr\n# if HAVE_RAW_DECL_STRCASESTR\n_GL_WARN_ON_USE (strcasestr, \"strcasestr does work correctly on character \"\n                 \"strings in multibyte locales - \"\n                 \"use mbscasestr if you care about \"\n                 \"internationalization, or use c-strcasestr if you want \"\n                 \"a locale independent function\");\n# endif\n#endif\n\n/* Parse S into tokens separated by characters in DELIM.\n   If S is NULL, the saved pointer in SAVE_PTR is used as\n   the next starting point.  For example:\n        char s[] = \"-abc-=-def\";\n        char *sp;\n        x = strtok_r(s, \"-\", &sp);      // x = \"abc\", sp = \"=-def\"\n        x = strtok_r(NULL, \"-=\", &sp);  // x = \"def\", sp = NULL\n        x = strtok_r(NULL, \"=\", &sp);   // x = NULL\n                // s = \"abc\\0-def\\0\"\n\n   This is a variant of strtok() that is multithread-safe.\n\n   For the POSIX documentation for this function, see:\n   http://www.opengroup.org/susv3xsh/strtok.html\n\n   Caveat: It modifies the original string.\n   Caveat: These functions cannot be used on constant strings.\n   Caveat: The identity of the delimiting character is lost.\n   Caveat: It doesn't work with multibyte strings unless all of the delimiter\n           characters are ASCII characters < 0x30.\n\n   See also strsep().  */\n#if @GNULIB_STRTOK_R@\n# if @REPLACE_STRTOK_R@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strtok_r\n#   define strtok_r rpl_strtok_r\n#  endif\n_GL_FUNCDECL_RPL (strtok_r, char *,\n                  (char *restrict s, char const *restrict delim,\n                   char **restrict save_ptr)\n                  _GL_ARG_NONNULL ((2, 3)));\n_GL_CXXALIAS_RPL (strtok_r, char *,\n                  (char *restrict s, char const *restrict delim,\n                   char **restrict save_ptr));\n# else\n#  if @UNDEFINE_STRTOK_R@ || defined GNULIB_POSIXCHECK\n#   undef strtok_r\n#  endif\n#  if ! @HAVE_DECL_STRTOK_R@\n_GL_FUNCDECL_SYS (strtok_r, char *,\n                  (char *restrict s, char const *restrict delim,\n                   char **restrict save_ptr)\n                  _GL_ARG_NONNULL ((2, 3)));\n#  endif\n_GL_CXXALIAS_SYS (strtok_r, char *,\n                  (char *restrict s, char const *restrict delim,\n                   char **restrict save_ptr));\n# endif\n_GL_CXXALIASWARN (strtok_r);\n# if defined GNULIB_POSIXCHECK\n_GL_WARN_ON_USE (strtok_r, \"strtok_r cannot work correctly on character \"\n                 \"strings in multibyte locales - \"\n                 \"use mbstok_r if you care about internationalization\");\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef strtok_r\n# if HAVE_RAW_DECL_STRTOK_R\n_GL_WARN_ON_USE (strtok_r, \"strtok_r is unportable - \"\n                 \"use gnulib module strtok_r for portability\");\n# endif\n#endif\n\n\n/* The following functions are not specified by POSIX.  They are gnulib\n   extensions.  */\n\n#if @GNULIB_MBSLEN@\n/* Return the number of multibyte characters in the character string STRING.\n   This considers multibyte characters, unlike strlen, which counts bytes.  */\n# ifdef __MirBSD__  /* MirBSD defines mbslen as a macro.  Override it.  */\n#  undef mbslen\n# endif\n# if @HAVE_MBSLEN@  /* AIX, OSF/1, MirBSD define mbslen already in libc.  */\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mbslen rpl_mbslen\n#  endif\n_GL_FUNCDECL_RPL (mbslen, size_t, (const char *string)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mbslen, size_t, (const char *string));\n# else\n_GL_FUNCDECL_SYS (mbslen, size_t, (const char *string)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_SYS (mbslen, size_t, (const char *string));\n# endif\n_GL_CXXALIASWARN (mbslen);\n#endif\n\n#if @GNULIB_MBSNLEN@\n/* Return the number of multibyte characters in the character string starting\n   at STRING and ending at STRING + LEN.  */\n_GL_EXTERN_C size_t mbsnlen (const char *string, size_t len)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1));\n#endif\n\n#if @GNULIB_MBSCHR@\n/* Locate the first single-byte character C in the character string STRING,\n   and return a pointer to it.  Return NULL if C is not found in STRING.\n   Unlike strchr(), this function works correctly in multibyte locales with\n   encodings such as GB18030.  */\n# if defined __hpux\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mbschr rpl_mbschr /* avoid collision with HP-UX function */\n#  endif\n_GL_FUNCDECL_RPL (mbschr, char *, (const char *string, int c)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mbschr, char *, (const char *string, int c));\n# else\n_GL_FUNCDECL_SYS (mbschr, char *, (const char *string, int c)\n                                  _GL_ATTRIBUTE_PURE\n                                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_SYS (mbschr, char *, (const char *string, int c));\n# endif\n_GL_CXXALIASWARN (mbschr);\n#endif\n\n#if @GNULIB_MBSRCHR@\n/* Locate the last single-byte character C in the character string STRING,\n   and return a pointer to it.  Return NULL if C is not found in STRING.\n   Unlike strrchr(), this function works correctly in multibyte locales with\n   encodings such as GB18030.  */\n# if defined __hpux || defined __INTERIX\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mbsrchr rpl_mbsrchr /* avoid collision with system function */\n#  endif\n_GL_FUNCDECL_RPL (mbsrchr, char *, (const char *string, int c)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mbsrchr, char *, (const char *string, int c));\n# else\n_GL_FUNCDECL_SYS (mbsrchr, char *, (const char *string, int c)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_SYS (mbsrchr, char *, (const char *string, int c));\n# endif\n_GL_CXXALIASWARN (mbsrchr);\n#endif\n\n#if @GNULIB_MBSSTR@\n/* Find the first occurrence of the character string NEEDLE in the character\n   string HAYSTACK.  Return NULL if NEEDLE is not found in HAYSTACK.\n   Unlike strstr(), this function works correctly in multibyte locales with\n   encodings different from UTF-8.  */\n_GL_EXTERN_C char * mbsstr (const char *haystack, const char *needle)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if @GNULIB_MBSCASECMP@\n/* Compare the character strings S1 and S2, ignoring case, returning less than,\n   equal to or greater than zero if S1 is lexicographically less than, equal to\n   or greater than S2.\n   Note: This function may, in multibyte locales, return 0 for strings of\n   different lengths!\n   Unlike strcasecmp(), this function works correctly in multibyte locales.  */\n_GL_EXTERN_C int mbscasecmp (const char *s1, const char *s2)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if @GNULIB_MBSNCASECMP@\n/* Compare the initial segment of the character string S1 consisting of at most\n   N characters with the initial segment of the character string S2 consisting\n   of at most N characters, ignoring case, returning less than, equal to or\n   greater than zero if the initial segment of S1 is lexicographically less\n   than, equal to or greater than the initial segment of S2.\n   Note: This function may, in multibyte locales, return 0 for initial segments\n   of different lengths!\n   Unlike strncasecmp(), this function works correctly in multibyte locales.\n   But beware that N is not a byte count but a character count!  */\n_GL_EXTERN_C int mbsncasecmp (const char *s1, const char *s2, size_t n)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if @GNULIB_MBSPCASECMP@\n/* Compare the initial segment of the character string STRING consisting of\n   at most mbslen (PREFIX) characters with the character string PREFIX,\n   ignoring case.  If the two match, return a pointer to the first byte\n   after this prefix in STRING.  Otherwise, return NULL.\n   Note: This function may, in multibyte locales, return non-NULL if STRING\n   is of smaller length than PREFIX!\n   Unlike strncasecmp(), this function works correctly in multibyte\n   locales.  */\n_GL_EXTERN_C char * mbspcasecmp (const char *string, const char *prefix)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if @GNULIB_MBSCASESTR@\n/* Find the first occurrence of the character string NEEDLE in the character\n   string HAYSTACK, using case-insensitive comparison.\n   Note: This function may, in multibyte locales, return success even if\n   strlen (haystack) < strlen (needle) !\n   Unlike strcasestr(), this function works correctly in multibyte locales.  */\n_GL_EXTERN_C char * mbscasestr (const char *haystack, const char *needle)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if @GNULIB_MBSCSPN@\n/* Find the first occurrence in the character string STRING of any character\n   in the character string ACCEPT.  Return the number of bytes from the\n   beginning of the string to this occurrence, or to the end of the string\n   if none exists.\n   Unlike strcspn(), this function works correctly in multibyte locales.  */\n_GL_EXTERN_C size_t mbscspn (const char *string, const char *accept)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if @GNULIB_MBSPBRK@\n/* Find the first occurrence in the character string STRING of any character\n   in the character string ACCEPT.  Return the pointer to it, or NULL if none\n   exists.\n   Unlike strpbrk(), this function works correctly in multibyte locales.  */\n# if defined __hpux\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mbspbrk rpl_mbspbrk /* avoid collision with HP-UX function */\n#  endif\n_GL_FUNCDECL_RPL (mbspbrk, char *, (const char *string, const char *accept)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (mbspbrk, char *, (const char *string, const char *accept));\n# else\n_GL_FUNCDECL_SYS (mbspbrk, char *, (const char *string, const char *accept)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_SYS (mbspbrk, char *, (const char *string, const char *accept));\n# endif\n_GL_CXXALIASWARN (mbspbrk);\n#endif\n\n#if @GNULIB_MBSSPN@\n/* Find the first occurrence in the character string STRING of any character\n   not in the character string REJECT.  Return the number of bytes from the\n   beginning of the string to this occurrence, or to the end of the string\n   if none exists.\n   Unlike strspn(), this function works correctly in multibyte locales.  */\n_GL_EXTERN_C size_t mbsspn (const char *string, const char *reject)\n     _GL_ATTRIBUTE_PURE\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if @GNULIB_MBSSEP@\n/* Search the next delimiter (multibyte character listed in the character\n   string DELIM) starting at the character string *STRINGP.\n   If one is found, overwrite it with a NUL, and advance *STRINGP to point\n   to the next multibyte character after it.  Otherwise, set *STRINGP to NULL.\n   If *STRINGP was already NULL, nothing happens.\n   Return the old value of *STRINGP.\n\n   This is a variant of mbstok_r() that supports empty fields.\n\n   Caveat: It modifies the original string.\n   Caveat: These functions cannot be used on constant strings.\n   Caveat: The identity of the delimiting character is lost.\n\n   See also mbstok_r().  */\n_GL_EXTERN_C char * mbssep (char **stringp, const char *delim)\n     _GL_ARG_NONNULL ((1, 2));\n#endif\n\n#if @GNULIB_MBSTOK_R@\n/* Parse the character string STRING into tokens separated by characters in\n   the character string DELIM.\n   If STRING is NULL, the saved pointer in SAVE_PTR is used as\n   the next starting point.  For example:\n        char s[] = \"-abc-=-def\";\n        char *sp;\n        x = mbstok_r(s, \"-\", &sp);      // x = \"abc\", sp = \"=-def\"\n        x = mbstok_r(NULL, \"-=\", &sp);  // x = \"def\", sp = NULL\n        x = mbstok_r(NULL, \"=\", &sp);   // x = NULL\n                // s = \"abc\\0-def\\0\"\n\n   Caveat: It modifies the original string.\n   Caveat: These functions cannot be used on constant strings.\n   Caveat: The identity of the delimiting character is lost.\n\n   See also mbssep().  */\n_GL_EXTERN_C char * mbstok_r (char *string, const char *delim, char **save_ptr)\n     _GL_ARG_NONNULL ((2, 3));\n#endif\n\n/* Map any int, typically from errno, into an error message.  */\n#if @GNULIB_STRERROR@\n# if @REPLACE_STRERROR@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strerror\n#   define strerror rpl_strerror\n#  endif\n_GL_FUNCDECL_RPL (strerror, char *, (int));\n_GL_CXXALIAS_RPL (strerror, char *, (int));\n# else\n_GL_CXXALIAS_SYS (strerror, char *, (int));\n# endif\n_GL_CXXALIASWARN (strerror);\n#elif defined GNULIB_POSIXCHECK\n# undef strerror\n/* Assume strerror is always declared.  */\n_GL_WARN_ON_USE (strerror, \"strerror is unportable - \"\n                 \"use gnulib module strerror to guarantee non-NULL result\");\n#endif\n\n/* Map any int, typically from errno, into an error message.  Multithread-safe.\n   Uses the POSIX declaration, not the glibc declaration.  */\n#if @GNULIB_STRERROR_R@\n# if @REPLACE_STRERROR_R@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef strerror_r\n#   define strerror_r rpl_strerror_r\n#  endif\n_GL_FUNCDECL_RPL (strerror_r, int, (int errnum, char *buf, size_t buflen)\n                                   _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (strerror_r, int, (int errnum, char *buf, size_t buflen));\n# else\n#  if !@HAVE_DECL_STRERROR_R@\n_GL_FUNCDECL_SYS (strerror_r, int, (int errnum, char *buf, size_t buflen)\n                                   _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (strerror_r, int, (int errnum, char *buf, size_t buflen));\n# endif\n# if @HAVE_DECL_STRERROR_R@\n_GL_CXXALIASWARN (strerror_r);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef strerror_r\n# if HAVE_RAW_DECL_STRERROR_R\n_GL_WARN_ON_USE (strerror_r, \"strerror_r is unportable - \"\n                 \"use gnulib module strerror_r-posix for portability\");\n# endif\n#endif\n\n#if @GNULIB_STRSIGNAL@\n# if @REPLACE_STRSIGNAL@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define strsignal rpl_strsignal\n#  endif\n_GL_FUNCDECL_RPL (strsignal, char *, (int __sig));\n_GL_CXXALIAS_RPL (strsignal, char *, (int __sig));\n# else\n#  if ! @HAVE_DECL_STRSIGNAL@\n_GL_FUNCDECL_SYS (strsignal, char *, (int __sig));\n#  endif\n/* Need to cast, because on Cygwin 1.5.x systems, the return type is\n   'const char *'.  */\n_GL_CXXALIAS_SYS_CAST (strsignal, char *, (int __sig));\n# endif\n_GL_CXXALIASWARN (strsignal);\n#elif defined GNULIB_POSIXCHECK\n# undef strsignal\n# if HAVE_RAW_DECL_STRSIGNAL\n_GL_WARN_ON_USE (strsignal, \"strsignal is unportable - \"\n                 \"use gnulib module strsignal for portability\");\n# endif\n#endif\n\n#if @GNULIB_STRVERSCMP@\n# if !@HAVE_STRVERSCMP@\n_GL_FUNCDECL_SYS (strverscmp, int, (const char *, const char *)\n                                   _GL_ATTRIBUTE_PURE\n                                   _GL_ARG_NONNULL ((1, 2)));\n# endif\n_GL_CXXALIAS_SYS (strverscmp, int, (const char *, const char *));\n_GL_CXXALIASWARN (strverscmp);\n#elif defined GNULIB_POSIXCHECK\n# undef strverscmp\n# if HAVE_RAW_DECL_STRVERSCMP\n_GL_WARN_ON_USE (strverscmp, \"strverscmp is unportable - \"\n                 \"use gnulib module strverscmp for portability\");\n# endif\n#endif\n\n\n#endif /* _@GUARD_PREFIX@_STRING_H */\n#endif /* _@GUARD_PREFIX@_STRING_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/stripslash.c",
    "content": "/* stripslash.c -- remove redundant trailing slashes from a file name\n\n   Copyright (C) 1990, 2001, 2003-2006, 2009-2017 Free Software Foundation,\n   Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n#include \"dirname.h\"\n\n/* Remove trailing slashes from FILE.  Return true if a trailing slash\n   was removed.  This is useful when using file name completion from a\n   shell that adds a \"/\" after directory names (such as tcsh and\n   bash), because on symlinks to directories, several system calls\n   have different semantics according to whether a trailing slash is\n   present.  */\n\nbool\nstrip_trailing_slashes (char *file)\n{\n  char *base = last_component (file);\n  char *base_lim;\n  bool had_slash;\n\n  /* last_component returns \"\" for file system roots, but we need to turn\n     \"///\" into \"/\".  */\n  if (! *base)\n    base = file;\n  base_lim = base + base_len (base);\n  had_slash = (*base_lim != '\\0');\n  *base_lim = '\\0';\n  return had_slash;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/sys/stat.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* Provide a more complete sys/stat header file.\n   Copyright (C) 2005-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Eric Blake, Paul Eggert, and Jim Meyering.  */\n\n/* This file is supposed to be used on platforms where <sys/stat.h> is\n   incomplete.  It is intended to provide definitions and prototypes\n   needed by an application.  Start with what the system provides.  */\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n#if defined __need_system_sys_stat_h\n/* Special invocation convention.  */\n\n#include_next <sys/stat.h>\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _GL_SYS_STAT_H\n\n/* Get nlink_t.\n   May also define off_t to a 64-bit type on native Windows.  */\n#include <sys/types.h>\n\n/* Get struct timespec.  */\n#include <time.h>\n\n/* The include_next requires a split double-inclusion guard.  */\n#include_next <sys/stat.h>\n\n#ifndef _GL_SYS_STAT_H\n#define _GL_SYS_STAT_H\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n#ifndef _GL_CXXDEFS_H\n#define _GL_CXXDEFS_H\n\n/* Begin/end the GNULIB_NAMESPACE namespace.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {\n# define _GL_END_NAMESPACE }\n#else\n# define _GL_BEGIN_NAMESPACE\n# define _GL_END_NAMESPACE\n#endif\n\n/* The three most frequent use cases of these macros are:\n\n   * For providing a substitute for a function that is missing on some\n     platforms, but is declared and works fine on the platforms on which\n     it exists:\n\n       #if @GNULIB_FOO@\n       # if !@HAVE_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       # endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on all platforms,\n     but is broken/insufficient and needs to be replaced on some platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on some platforms\n     but is broken/insufficient and needs to be replaced on some of them and\n     is additionally either missing or undeclared on some other platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       #  endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n*/\n\n/* _GL_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#if defined __cplusplus\n# define _GL_EXTERN_C extern \"C\"\n#else\n# define _GL_EXTERN_C extern\n#endif\n\n/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);\n   declares a replacement function, named rpl_func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \\\n  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)\n#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype rpl_func parameters_and_attributes\n\n/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);\n   declares the system function, named func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype func parameters_and_attributes\n\n/* _GL_CXXALIAS_RPL (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.\n   Example:\n     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n\n   Wrapping rpl_func in an object with an inline conversion operator\n   avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#define _GL_CXXALIAS_RPL(func,rettype,parameters) \\\n  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::rpl_func;                                  \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);\n   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);\n   except that the C function rpl_func may have a slightly different\n   declaration.  A cast is used to silence the \"invalid conversion\" error\n   that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                     \\\n    {                                                              \\\n      static const struct _gl_ ## func ## _wrapper                 \\\n      {                                                            \\\n        typedef rettype (*type) parameters;                        \\\n                                                                   \\\n        inline operator type () const                              \\\n        {                                                          \\\n          return reinterpret_cast<type>(::rpl_func);               \\\n        }                                                          \\\n      } func = {};                                                 \\\n    }                                                              \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to the system provided function func, if GNULIB_NAMESPACE\n   is defined.\n   Example:\n     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n\n   Wrapping func in an object with an inline conversion operator\n   avoids a reference to func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS(func,rettype,parameters)            \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::func;                                      \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function func may have a slightly different declaration.\n   A cast is used to silence the \"invalid conversion\" error that would\n   otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                          \\\n    {                                                   \\\n      static const struct _gl_ ## func ## _wrapper      \\\n      {                                                 \\\n        typedef rettype (*type) parameters;             \\\n                                                        \\\n        inline operator type () const                   \\\n        {                                               \\\n          return reinterpret_cast<type>(::func);        \\\n        }                                               \\\n      } func = {};                                      \\\n    }                                                   \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function is picked among a set of overloaded functions,\n   namely the one with rettype2 and parameters2.  Two consecutive casts\n   are used to silence the \"cannot find a match\" and \"invalid conversion\"\n   errors that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n  /* The outer cast must be a reinterpret_cast.\n     The inner cast: When the function is defined as a set of overloaded\n     functions, it works as a static_cast<>, choosing the designated variant.\n     When the function is defined as a single variant, it works as a\n     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    namespace GNULIB_NAMESPACE                                                \\\n    {                                                                         \\\n      static const struct _gl_ ## func ## _wrapper                            \\\n      {                                                                       \\\n        typedef rettype (*type) parameters;                                   \\\n                                                                              \\\n        inline operator type () const                                         \\\n        {                                                                     \\\n          return reinterpret_cast<type>((rettype2 (*) parameters2)(::func));  \\\n        }                                                                     \\\n      } func = {};                                                            \\\n    }                                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN (func);\n   causes a warning to be emitted when ::func is used but not when\n   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded\n   variants.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN(func) \\\n   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN_1(func,namespace) \\\n   _GL_CXXALIASWARN_2 (func, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n    _GL_WARN_ON_USE (func, \\\n                     \"The symbol ::\" #func \" refers to the system function. \" \\\n                     \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN(func) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);\n   causes a warning to be emitted when the given overloaded variant of ::func\n   is used but not when GNULIB_NAMESPACE::func is used.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \\\n                        GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \\\n   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \\\n                         \"The symbol ::\" #func \" refers to the system function. \" \\\n                         \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n#endif /* _GL_CXXDEFS_H */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools\n   that the values passed as arguments n, ..., m must be non-NULL pointers.\n   n = 1 stands for the first argument, n = 2 for the second argument etc.  */\n#ifndef _GL_ARG_NONNULL\n# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3\n#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))\n# else\n#  define _GL_ARG_NONNULL(params)\n# endif\n#endif\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n#ifndef _GL_WARN_ON_USE\n\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n/* A compiler attribute is available in gcc versions 4.3.0 and later.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function __attribute__ ((__warning__ (message)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE(function, message) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, \"string\")\n   is like _GL_WARN_ON_USE (function, \"string\"), except that the function is\n   declared with the given prototype, consisting of return type, parameters,\n   and attributes.\n   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does\n   not work in this case.  */\n#ifndef _GL_WARN_ON_USE_CXX\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes \\\n     __attribute__ ((__warning__ (msg)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#ifndef _GL_WARN_EXTERN_C\n# if defined __cplusplus\n#  define _GL_WARN_EXTERN_C extern \"C\"\n# else\n#  define _GL_WARN_EXTERN_C extern\n# endif\n#endif\n\n/* Before doing \"#define mkdir rpl_mkdir\" below, we need to include all\n   headers that may declare mkdir().  Native Windows platforms declare mkdir\n   in <io.h> and/or <direct.h>, not in <unistd.h>.  */\n#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n# include <io.h>     /* mingw32, mingw64 */\n# include <direct.h> /* mingw64, MSVC 9 */\n#endif\n\n/* Native Windows platforms declare umask() in <io.h>.  */\n#if 0 && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)\n# include <io.h>\n#endif\n\n/* Large File Support on native Windows.  */\n#if 0\n# define stat _stati64\n#endif\n\n#ifndef S_IFIFO\n# ifdef _S_IFIFO\n#  define S_IFIFO _S_IFIFO\n# endif\n#endif\n\n#ifndef S_IFMT\n# define S_IFMT 0170000\n#endif\n\n#if STAT_MACROS_BROKEN\n# undef S_ISBLK\n# undef S_ISCHR\n# undef S_ISDIR\n# undef S_ISFIFO\n# undef S_ISLNK\n# undef S_ISNAM\n# undef S_ISMPB\n# undef S_ISMPC\n# undef S_ISNWK\n# undef S_ISREG\n# undef S_ISSOCK\n#endif\n\n#ifndef S_ISBLK\n# ifdef S_IFBLK\n#  define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)\n# else\n#  define S_ISBLK(m) 0\n# endif\n#endif\n\n#ifndef S_ISCHR\n# ifdef S_IFCHR\n#  define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)\n# else\n#  define S_ISCHR(m) 0\n# endif\n#endif\n\n#ifndef S_ISDIR\n# ifdef S_IFDIR\n#  define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)\n# else\n#  define S_ISDIR(m) 0\n# endif\n#endif\n\n#ifndef S_ISDOOR /* Solaris 2.5 and up */\n# define S_ISDOOR(m) 0\n#endif\n\n#ifndef S_ISFIFO\n# ifdef S_IFIFO\n#  define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)\n# else\n#  define S_ISFIFO(m) 0\n# endif\n#endif\n\n#ifndef S_ISLNK\n# ifdef S_IFLNK\n#  define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)\n# else\n#  define S_ISLNK(m) 0\n# endif\n#endif\n\n#ifndef S_ISMPB /* V7 */\n# ifdef S_IFMPB\n#  define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)\n#  define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)\n# else\n#  define S_ISMPB(m) 0\n#  define S_ISMPC(m) 0\n# endif\n#endif\n\n#ifndef S_ISMPX /* AIX */\n# define S_ISMPX(m) 0\n#endif\n\n#ifndef S_ISNAM /* Xenix */\n# ifdef S_IFNAM\n#  define S_ISNAM(m) (((m) & S_IFMT) == S_IFNAM)\n# else\n#  define S_ISNAM(m) 0\n# endif\n#endif\n\n#ifndef S_ISNWK /* HP/UX */\n# ifdef S_IFNWK\n#  define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)\n# else\n#  define S_ISNWK(m) 0\n# endif\n#endif\n\n#ifndef S_ISPORT /* Solaris 10 and up */\n# define S_ISPORT(m) 0\n#endif\n\n#ifndef S_ISREG\n# ifdef S_IFREG\n#  define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)\n# else\n#  define S_ISREG(m) 0\n# endif\n#endif\n\n#ifndef S_ISSOCK\n# ifdef S_IFSOCK\n#  define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)\n# else\n#  define S_ISSOCK(m) 0\n# endif\n#endif\n\n\n#ifndef S_TYPEISMQ\n# define S_TYPEISMQ(p) 0\n#endif\n\n#ifndef S_TYPEISTMO\n# define S_TYPEISTMO(p) 0\n#endif\n\n\n#ifndef S_TYPEISSEM\n# ifdef S_INSEM\n#  define S_TYPEISSEM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSEM)\n# else\n#  define S_TYPEISSEM(p) 0\n# endif\n#endif\n\n#ifndef S_TYPEISSHM\n# ifdef S_INSHD\n#  define S_TYPEISSHM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSHD)\n# else\n#  define S_TYPEISSHM(p) 0\n# endif\n#endif\n\n/* high performance (\"contiguous data\") */\n#ifndef S_ISCTG\n# define S_ISCTG(p) 0\n#endif\n\n/* Cray DMF (data migration facility): off line, with data  */\n#ifndef S_ISOFD\n# define S_ISOFD(p) 0\n#endif\n\n/* Cray DMF (data migration facility): off line, with no data  */\n#ifndef S_ISOFL\n# define S_ISOFL(p) 0\n#endif\n\n/* 4.4BSD whiteout */\n#ifndef S_ISWHT\n# define S_ISWHT(m) 0\n#endif\n\n/* If any of the following are undefined,\n   define them to their de facto standard values.  */\n#if !S_ISUID\n# define S_ISUID 04000\n#endif\n#if !S_ISGID\n# define S_ISGID 02000\n#endif\n\n/* S_ISVTX is a common extension to POSIX.  */\n#ifndef S_ISVTX\n# define S_ISVTX 01000\n#endif\n\n#if !S_IRUSR && S_IREAD\n# define S_IRUSR S_IREAD\n#endif\n#if !S_IRUSR\n# define S_IRUSR 00400\n#endif\n#if !S_IRGRP\n# define S_IRGRP (S_IRUSR >> 3)\n#endif\n#if !S_IROTH\n# define S_IROTH (S_IRUSR >> 6)\n#endif\n\n#if !S_IWUSR && S_IWRITE\n# define S_IWUSR S_IWRITE\n#endif\n#if !S_IWUSR\n# define S_IWUSR 00200\n#endif\n#if !S_IWGRP\n# define S_IWGRP (S_IWUSR >> 3)\n#endif\n#if !S_IWOTH\n# define S_IWOTH (S_IWUSR >> 6)\n#endif\n\n#if !S_IXUSR && S_IEXEC\n# define S_IXUSR S_IEXEC\n#endif\n#if !S_IXUSR\n# define S_IXUSR 00100\n#endif\n#if !S_IXGRP\n# define S_IXGRP (S_IXUSR >> 3)\n#endif\n#if !S_IXOTH\n# define S_IXOTH (S_IXUSR >> 6)\n#endif\n\n#if !S_IRWXU\n# define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)\n#endif\n#if !S_IRWXG\n# define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)\n#endif\n#if !S_IRWXO\n# define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)\n#endif\n\n/* S_IXUGO is a common extension to POSIX.  */\n#if !S_IXUGO\n# define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)\n#endif\n\n#ifndef S_IRWXUGO\n# define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)\n#endif\n\n/* Macros for futimens and utimensat.  */\n#ifndef UTIME_NOW\n# define UTIME_NOW (-1)\n# define UTIME_OMIT (-2)\n#endif\n\n\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (fchmodat, int,\n                  (int fd, char const *file, mode_t mode, int flag)\n                  _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (fchmodat, int,\n                  (int fd, char const *file, mode_t mode, int flag));\n_GL_CXXALIASWARN (fchmodat);\n#elif defined GNULIB_POSIXCHECK\n# undef fchmodat\n# if HAVE_RAW_DECL_FCHMODAT\n_GL_WARN_ON_USE (fchmodat, \"fchmodat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fstat\n#   define fstat rpl_fstat\n#  endif\n_GL_FUNCDECL_RPL (fstat, int, (int fd, struct stat *buf) _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (fstat, int, (int fd, struct stat *buf));\n# else\n_GL_CXXALIAS_SYS (fstat, int, (int fd, struct stat *buf));\n# endif\n_GL_CXXALIASWARN (fstat);\n#elif 0\n/* Above, we define stat to _stati64.  */\n# define fstat _fstati64\n#elif defined GNULIB_POSIXCHECK\n# undef fstat\n# if HAVE_RAW_DECL_FSTAT\n_GL_WARN_ON_USE (fstat, \"fstat has portability problems - \"\n                 \"use gnulib module fstat for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fstatat\n#   define fstatat rpl_fstatat\n#  endif\n_GL_FUNCDECL_RPL (fstatat, int,\n                  (int fd, char const *name, struct stat *st, int flags)\n                  _GL_ARG_NONNULL ((2, 3)));\n_GL_CXXALIAS_RPL (fstatat, int,\n                  (int fd, char const *name, struct stat *st, int flags));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (fstatat, int,\n                  (int fd, char const *name, struct stat *st, int flags)\n                  _GL_ARG_NONNULL ((2, 3)));\n#  endif\n_GL_CXXALIAS_SYS (fstatat, int,\n                  (int fd, char const *name, struct stat *st, int flags));\n# endif\n_GL_CXXALIASWARN (fstatat);\n#elif defined GNULIB_POSIXCHECK\n# undef fstatat\n# if HAVE_RAW_DECL_FSTATAT\n_GL_WARN_ON_USE (fstatat, \"fstatat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Use the rpl_ prefix also on Solaris <= 9, because on Solaris 9 our futimens\n   implementation relies on futimesat, which on Solaris 10 makes an invocation\n   to futimens that is meant to invoke the libc's futimens(), not gnulib's\n   futimens().  */\n# if 0 || (!1 && defined __sun)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef futimens\n#   define futimens rpl_futimens\n#  endif\n_GL_FUNCDECL_RPL (futimens, int, (int fd, struct timespec const times[2]));\n_GL_CXXALIAS_RPL (futimens, int, (int fd, struct timespec const times[2]));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (futimens, int, (int fd, struct timespec const times[2]));\n#  endif\n_GL_CXXALIAS_SYS (futimens, int, (int fd, struct timespec const times[2]));\n# endif\n# if 1\n_GL_CXXALIASWARN (futimens);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef futimens\n# if HAVE_RAW_DECL_FUTIMENS\n_GL_WARN_ON_USE (futimens, \"futimens is not portable - \"\n                 \"use gnulib module futimens for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Change the mode of FILENAME to MODE, without dereferencing it if FILENAME\n   denotes a symbolic link.  */\n# if !1\n/* The lchmod replacement follows symbolic links.  Callers should take\n   this into account; lchmod should be applied only to arguments that\n   are known to not be symbolic links.  On hosts that lack lchmod,\n   this can lead to race conditions between the check and the\n   invocation of lchmod, but we know of no workarounds that are\n   reliable in general.  You might try requesting support for lchmod\n   from your operating system supplier.  */\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define lchmod chmod\n#  endif\n/* Need to cast, because on mingw, the second parameter of chmod is\n                                                int mode.  */\n_GL_CXXALIAS_RPL_CAST_1 (lchmod, chmod, int,\n                         (const char *filename, mode_t mode));\n# else\n#  if 0 /* assume already declared */\n_GL_FUNCDECL_SYS (lchmod, int, (const char *filename, mode_t mode)\n                               _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (lchmod, int, (const char *filename, mode_t mode));\n# endif\n# if 1\n_GL_CXXALIASWARN (lchmod);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef lchmod\n# if HAVE_RAW_DECL_LCHMOD\n_GL_WARN_ON_USE (lchmod, \"lchmod is unportable - \"\n                 \"use gnulib module lchmod for portability\");\n# endif\n#endif\n\n\n#if 1\n# if ! 1\n/* mingw does not support symlinks, therefore it does not have lstat.  But\n   without links, stat does just fine.  */\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define lstat stat\n#  endif\n_GL_CXXALIAS_RPL_1 (lstat, stat, int, (const char *name, struct stat *buf));\n# elif 1\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef lstat\n#   define lstat rpl_lstat\n#  endif\n_GL_FUNCDECL_RPL (lstat, int, (const char *name, struct stat *buf)\n                              _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (lstat, int, (const char *name, struct stat *buf));\n# else\n_GL_CXXALIAS_SYS (lstat, int, (const char *name, struct stat *buf));\n# endif\n# if 1\n_GL_CXXALIASWARN (lstat);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef lstat\n# if HAVE_RAW_DECL_LSTAT\n_GL_WARN_ON_USE (lstat, \"lstat is unportable - \"\n                 \"use gnulib module lstat for portability\");\n# endif\n#endif\n\n\n#if 0\n# if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#  undef mkdir\n#  define mkdir rpl_mkdir\n# endif\n_GL_FUNCDECL_RPL (mkdir, int, (char const *name, mode_t mode)\n                              _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));\n#else\n/* mingw's _mkdir() function has 1 argument, but we pass 2 arguments.\n   Additionally, it declares _mkdir (and depending on compile flags, an\n   alias mkdir), only in the nonstandard includes <direct.h> and <io.h>,\n   which are included above.  */\n# if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n\n#  if !GNULIB_defined_rpl_mkdir\nstatic int\nrpl_mkdir (char const *name, mode_t mode)\n{\n  return _mkdir (name);\n}\n#   define GNULIB_defined_rpl_mkdir 1\n#  endif\n\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mkdir rpl_mkdir\n#  endif\n_GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));\n# else\n_GL_CXXALIAS_SYS (mkdir, int, (char const *name, mode_t mode));\n# endif\n#endif\n_GL_CXXALIASWARN (mkdir);\n\n\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (mkdirat, int, (int fd, char const *file, mode_t mode)\n                                _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (mkdirat, int, (int fd, char const *file, mode_t mode));\n_GL_CXXALIASWARN (mkdirat);\n#elif defined GNULIB_POSIXCHECK\n# undef mkdirat\n# if HAVE_RAW_DECL_MKDIRAT\n_GL_WARN_ON_USE (mkdirat, \"mkdirat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef mkfifo\n#   define mkfifo rpl_mkfifo\n#  endif\n_GL_FUNCDECL_RPL (mkfifo, int, (char const *file, mode_t mode)\n                               _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mkfifo, int, (char const *file, mode_t mode));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (mkfifo, int, (char const *file, mode_t mode)\n                               _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (mkfifo, int, (char const *file, mode_t mode));\n# endif\n_GL_CXXALIASWARN (mkfifo);\n#elif defined GNULIB_POSIXCHECK\n# undef mkfifo\n# if HAVE_RAW_DECL_MKFIFO\n_GL_WARN_ON_USE (mkfifo, \"mkfifo is not portable - \"\n                 \"use gnulib module mkfifo for portability\");\n# endif\n#endif\n\n\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (mkfifoat, int, (int fd, char const *file, mode_t mode)\n                                 _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (mkfifoat, int, (int fd, char const *file, mode_t mode));\n_GL_CXXALIASWARN (mkfifoat);\n#elif defined GNULIB_POSIXCHECK\n# undef mkfifoat\n# if HAVE_RAW_DECL_MKFIFOAT\n_GL_WARN_ON_USE (mkfifoat, \"mkfifoat is not portable - \"\n                 \"use gnulib module mkfifoat for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef mknod\n#   define mknod rpl_mknod\n#  endif\n_GL_FUNCDECL_RPL (mknod, int, (char const *file, mode_t mode, dev_t dev)\n                              _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mknod, int, (char const *file, mode_t mode, dev_t dev));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (mknod, int, (char const *file, mode_t mode, dev_t dev)\n                              _GL_ARG_NONNULL ((1)));\n#  endif\n/* Need to cast, because on OSF/1 5.1, the third parameter is '...'.  */\n_GL_CXXALIAS_SYS_CAST (mknod, int, (char const *file, mode_t mode, dev_t dev));\n# endif\n_GL_CXXALIASWARN (mknod);\n#elif defined GNULIB_POSIXCHECK\n# undef mknod\n# if HAVE_RAW_DECL_MKNOD\n_GL_WARN_ON_USE (mknod, \"mknod is not portable - \"\n                 \"use gnulib module mknod for portability\");\n# endif\n#endif\n\n\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (mknodat, int,\n                  (int fd, char const *file, mode_t mode, dev_t dev)\n                  _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (mknodat, int,\n                  (int fd, char const *file, mode_t mode, dev_t dev));\n_GL_CXXALIASWARN (mknodat);\n#elif defined GNULIB_POSIXCHECK\n# undef mknodat\n# if HAVE_RAW_DECL_MKNODAT\n_GL_WARN_ON_USE (mknodat, \"mknodat is not portable - \"\n                 \"use gnulib module mkfifoat for portability\");\n# endif\n#endif\n\n\n#if 1\n# if 1\n/* We can't use the object-like #define stat rpl_stat, because of\n   struct stat.  This means that rpl_stat will not be used if the user\n   does (stat)(a,b).  Oh well.  */\n#  if defined _AIX && defined stat && defined _LARGE_FILES\n    /* With _LARGE_FILES defined, AIX (only) defines stat to stat64,\n       so we have to replace stat64() instead of stat(). */\n#   undef stat64\n#   define stat64(name, st) rpl_stat (name, st)\n#  elif 0\n    /* Above, we define stat to _stati64.  */\n#   if defined __MINGW32__ && defined _stati64\n#    ifndef _USE_32BIT_TIME_T\n      /* The system headers define _stati64 to _stat64.  */\n#     undef _stat64\n#     define _stat64(name, st) rpl_stat (name, st)\n#    endif\n#   elif defined _MSC_VER && defined _stati64\n#    ifdef _USE_32BIT_TIME_T\n      /* The system headers define _stati64 to _stat32i64.  */\n#     undef _stat32i64\n#     define _stat32i64(name, st) rpl_stat (name, st)\n#    else\n      /* The system headers define _stati64 to _stat64.  */\n#     undef _stat64\n#     define _stat64(name, st) rpl_stat (name, st)\n#    endif\n#   else\n#    undef _stati64\n#    define _stati64(name, st) rpl_stat (name, st)\n#   endif\n#  elif defined __MINGW32__ && defined stat\n#   ifdef _USE_32BIT_TIME_T\n     /* The system headers define stat to _stat32i64.  */\n#    undef _stat32i64\n#    define _stat32i64(name, st) rpl_stat (name, st)\n#   else\n     /* The system headers define stat to _stat64.  */\n#    undef _stat64\n#    define _stat64(name, st) rpl_stat (name, st)\n#   endif\n#  elif defined _MSC_VER && defined stat\n#   ifdef _USE_32BIT_TIME_T\n     /* The system headers define stat to _stat32.  */\n#    undef _stat32\n#    define _stat32(name, st) rpl_stat (name, st)\n#   else\n     /* The system headers define stat to _stat64i32.  */\n#    undef _stat64i32\n#    define _stat64i32(name, st) rpl_stat (name, st)\n#   endif\n#  else /* !(_AIX ||__MINGW32__ ||  _MSC_VER) */\n#   undef stat\n#   define stat(name, st) rpl_stat (name, st)\n#  endif /* !_LARGE_FILES */\n_GL_EXTERN_C int stat (const char *name, struct stat *buf)\n                      _GL_ARG_NONNULL ((1, 2));\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef stat\n# if HAVE_RAW_DECL_STAT\n_GL_WARN_ON_USE (stat, \"stat is unportable - \"\n                 \"use gnulib module stat for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Use the rpl_ prefix also on Solaris <= 9, because on Solaris 9 our utimensat\n   implementation relies on futimesat, which on Solaris 10 makes an invocation\n   to utimensat that is meant to invoke the libc's utimensat(), not gnulib's\n   utimensat().  */\n# if 0 || (!1 && defined __sun)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef utimensat\n#   define utimensat rpl_utimensat\n#  endif\n_GL_FUNCDECL_RPL (utimensat, int, (int fd, char const *name,\n                                   struct timespec const times[2], int flag)\n                                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (utimensat, int, (int fd, char const *name,\n                                   struct timespec const times[2], int flag));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (utimensat, int, (int fd, char const *name,\n                                   struct timespec const times[2], int flag)\n                                  _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (utimensat, int, (int fd, char const *name,\n                                   struct timespec const times[2], int flag));\n# endif\n# if 1\n_GL_CXXALIASWARN (utimensat);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef utimensat\n# if HAVE_RAW_DECL_UTIMENSAT\n_GL_WARN_ON_USE (utimensat, \"utimensat is not portable - \"\n                 \"use gnulib module utimensat for portability\");\n# endif\n#endif\n\n\n#endif /* _GL_SYS_STAT_H */\n#endif /* _GL_SYS_STAT_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/sys/time.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* Provide a more complete sys/time.h.\n\n   Copyright (C) 2007-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Paul Eggert.  */\n\n#ifndef _GL_SYS_TIME_H\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n/* On Cygwin and on many BSDish systems, <sys/time.h> includes itself\n   recursively via <sys/select.h>.\n   Simply delegate to the system's header in this case; it is a no-op.\n   Without this extra ifdef, the C++ gettimeofday declaration below\n   would be a forward declaration in gnulib's nested <sys/time.h>.  */\n#if defined _CYGWIN_SYS_TIME_H || defined _SYS_TIME_H || defined _SYS_TIME_H_\n# include_next <sys/time.h>\n#else\n\n/* The include_next requires a split double-inclusion guard.  */\n#if 1\n# include_next <sys/time.h>\n#endif\n\n#ifndef _GL_SYS_TIME_H\n#define _GL_SYS_TIME_H\n\n#if ! 1\n# include <time.h>\n#endif\n\n/* On native Windows with MSVC, get the 'struct timeval' type.\n   Also, on native Windows with a 64-bit time_t, where we are overriding the\n   'struct timeval' type, get all declarations of system functions whose\n   signature contains 'struct timeval'.  */\n#if (defined _MSC_VER || 0) && 0 && !defined _GL_INCLUDING_WINSOCK2_H\n# define _GL_INCLUDING_WINSOCK2_H\n# include <winsock2.h>\n# undef _GL_INCLUDING_WINSOCK2_H\n#endif\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n#ifndef _GL_CXXDEFS_H\n#define _GL_CXXDEFS_H\n\n/* Begin/end the GNULIB_NAMESPACE namespace.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {\n# define _GL_END_NAMESPACE }\n#else\n# define _GL_BEGIN_NAMESPACE\n# define _GL_END_NAMESPACE\n#endif\n\n/* The three most frequent use cases of these macros are:\n\n   * For providing a substitute for a function that is missing on some\n     platforms, but is declared and works fine on the platforms on which\n     it exists:\n\n       #if @GNULIB_FOO@\n       # if !@HAVE_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       # endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on all platforms,\n     but is broken/insufficient and needs to be replaced on some platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on some platforms\n     but is broken/insufficient and needs to be replaced on some of them and\n     is additionally either missing or undeclared on some other platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       #  endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n*/\n\n/* _GL_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#if defined __cplusplus\n# define _GL_EXTERN_C extern \"C\"\n#else\n# define _GL_EXTERN_C extern\n#endif\n\n/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);\n   declares a replacement function, named rpl_func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \\\n  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)\n#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype rpl_func parameters_and_attributes\n\n/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);\n   declares the system function, named func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype func parameters_and_attributes\n\n/* _GL_CXXALIAS_RPL (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.\n   Example:\n     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n\n   Wrapping rpl_func in an object with an inline conversion operator\n   avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#define _GL_CXXALIAS_RPL(func,rettype,parameters) \\\n  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::rpl_func;                                  \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);\n   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);\n   except that the C function rpl_func may have a slightly different\n   declaration.  A cast is used to silence the \"invalid conversion\" error\n   that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                     \\\n    {                                                              \\\n      static const struct _gl_ ## func ## _wrapper                 \\\n      {                                                            \\\n        typedef rettype (*type) parameters;                        \\\n                                                                   \\\n        inline operator type () const                              \\\n        {                                                          \\\n          return reinterpret_cast<type>(::rpl_func);               \\\n        }                                                          \\\n      } func = {};                                                 \\\n    }                                                              \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to the system provided function func, if GNULIB_NAMESPACE\n   is defined.\n   Example:\n     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n\n   Wrapping func in an object with an inline conversion operator\n   avoids a reference to func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS(func,rettype,parameters)            \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::func;                                      \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function func may have a slightly different declaration.\n   A cast is used to silence the \"invalid conversion\" error that would\n   otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                          \\\n    {                                                   \\\n      static const struct _gl_ ## func ## _wrapper      \\\n      {                                                 \\\n        typedef rettype (*type) parameters;             \\\n                                                        \\\n        inline operator type () const                   \\\n        {                                               \\\n          return reinterpret_cast<type>(::func);        \\\n        }                                               \\\n      } func = {};                                      \\\n    }                                                   \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function is picked among a set of overloaded functions,\n   namely the one with rettype2 and parameters2.  Two consecutive casts\n   are used to silence the \"cannot find a match\" and \"invalid conversion\"\n   errors that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n  /* The outer cast must be a reinterpret_cast.\n     The inner cast: When the function is defined as a set of overloaded\n     functions, it works as a static_cast<>, choosing the designated variant.\n     When the function is defined as a single variant, it works as a\n     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    namespace GNULIB_NAMESPACE                                                \\\n    {                                                                         \\\n      static const struct _gl_ ## func ## _wrapper                            \\\n      {                                                                       \\\n        typedef rettype (*type) parameters;                                   \\\n                                                                              \\\n        inline operator type () const                                         \\\n        {                                                                     \\\n          return reinterpret_cast<type>((rettype2 (*) parameters2)(::func));  \\\n        }                                                                     \\\n      } func = {};                                                            \\\n    }                                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN (func);\n   causes a warning to be emitted when ::func is used but not when\n   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded\n   variants.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN(func) \\\n   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN_1(func,namespace) \\\n   _GL_CXXALIASWARN_2 (func, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n    _GL_WARN_ON_USE (func, \\\n                     \"The symbol ::\" #func \" refers to the system function. \" \\\n                     \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN(func) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);\n   causes a warning to be emitted when the given overloaded variant of ::func\n   is used but not when GNULIB_NAMESPACE::func is used.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \\\n                        GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \\\n   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \\\n                         \"The symbol ::\" #func \" refers to the system function. \" \\\n                         \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n#endif /* _GL_CXXDEFS_H */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools\n   that the values passed as arguments n, ..., m must be non-NULL pointers.\n   n = 1 stands for the first argument, n = 2 for the second argument etc.  */\n#ifndef _GL_ARG_NONNULL\n# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3\n#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))\n# else\n#  define _GL_ARG_NONNULL(params)\n# endif\n#endif\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n#ifndef _GL_WARN_ON_USE\n\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n/* A compiler attribute is available in gcc versions 4.3.0 and later.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function __attribute__ ((__warning__ (message)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE(function, message) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, \"string\")\n   is like _GL_WARN_ON_USE (function, \"string\"), except that the function is\n   declared with the given prototype, consisting of return type, parameters,\n   and attributes.\n   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does\n   not work in this case.  */\n#ifndef _GL_WARN_ON_USE_CXX\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes \\\n     __attribute__ ((__warning__ (msg)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#ifndef _GL_WARN_EXTERN_C\n# if defined __cplusplus\n#  define _GL_WARN_EXTERN_C extern \"C\"\n# else\n#  define _GL_WARN_EXTERN_C extern\n# endif\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n#if !1 || 0\n\n# if 0\n#  define timeval rpl_timeval\n# endif\n\n# if !GNULIB_defined_struct_timeval\nstruct timeval\n{\n  time_t tv_sec;\n  long int tv_usec;\n};\n#  define GNULIB_defined_struct_timeval 1\n# endif\n\n#endif\n\n#ifdef __cplusplus\n}\n#endif\n\n#if 1\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef gettimeofday\n#   define gettimeofday rpl_gettimeofday\n#  endif\n_GL_FUNCDECL_RPL (gettimeofday, int,\n                  (struct timeval *restrict, void *restrict)\n                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (gettimeofday, int,\n                  (struct timeval *restrict, void *restrict));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (gettimeofday, int,\n                  (struct timeval *restrict, void *restrict)\n                  _GL_ARG_NONNULL ((1)));\n#  endif\n/* Need to cast, because on glibc systems, by default, the second argument is\n                                                  struct timezone *.  */\n_GL_CXXALIAS_SYS_CAST (gettimeofday, int,\n                       (struct timeval *restrict, void *restrict));\n# endif\n_GL_CXXALIASWARN (gettimeofday);\n# if defined __cplusplus && defined GNULIB_NAMESPACE\nnamespace GNULIB_NAMESPACE {\n  typedef ::timeval\n#undef timeval\n    timeval;\n}\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef gettimeofday\n# if HAVE_RAW_DECL_GETTIMEOFDAY\n_GL_WARN_ON_USE (gettimeofday, \"gettimeofday is unportable - \"\n                 \"use gnulib module gettimeofday for portability\");\n# endif\n#endif\n\n/* Hide some function declarations from <winsock2.h>.  */\n\n#if defined _MSC_VER && 0\n# if !defined _GL_UNISTD_H\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef close\n#   define close close_used_without_including_unistd_h\n#  else\n     _GL_WARN_ON_USE (close,\n                      \"close() used without including <unistd.h>\");\n#  endif\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef gethostname\n#   define gethostname gethostname_used_without_including_unistd_h\n#  else\n     _GL_WARN_ON_USE (gethostname,\n                      \"gethostname() used without including <unistd.h>\");\n#  endif\n# endif\n# if !defined _GL_SYS_SOCKET_H\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef socket\n#   define socket              socket_used_without_including_sys_socket_h\n#   undef connect\n#   define connect             connect_used_without_including_sys_socket_h\n#   undef accept\n#   define accept              accept_used_without_including_sys_socket_h\n#   undef bind\n#   define bind                bind_used_without_including_sys_socket_h\n#   undef getpeername\n#   define getpeername         getpeername_used_without_including_sys_socket_h\n#   undef getsockname\n#   define getsockname         getsockname_used_without_including_sys_socket_h\n#   undef getsockopt\n#   define getsockopt          getsockopt_used_without_including_sys_socket_h\n#   undef listen\n#   define listen              listen_used_without_including_sys_socket_h\n#   undef recv\n#   define recv                recv_used_without_including_sys_socket_h\n#   undef send\n#   define send                send_used_without_including_sys_socket_h\n#   undef recvfrom\n#   define recvfrom            recvfrom_used_without_including_sys_socket_h\n#   undef sendto\n#   define sendto              sendto_used_without_including_sys_socket_h\n#   undef setsockopt\n#   define setsockopt          setsockopt_used_without_including_sys_socket_h\n#   undef shutdown\n#   define shutdown            shutdown_used_without_including_sys_socket_h\n#  else\n     _GL_WARN_ON_USE (socket,\n                      \"socket() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (connect,\n                      \"connect() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (accept,\n                      \"accept() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (bind,\n                      \"bind() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (getpeername,\n                      \"getpeername() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (getsockname,\n                      \"getsockname() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (getsockopt,\n                      \"getsockopt() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (listen,\n                      \"listen() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (recv,\n                      \"recv() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (send,\n                      \"send() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (recvfrom,\n                      \"recvfrom() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (sendto,\n                      \"sendto() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (setsockopt,\n                      \"setsockopt() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (shutdown,\n                      \"shutdown() used without including <sys/socket.h>\");\n#  endif\n# endif\n# if !defined _GL_SYS_SELECT_H\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef select\n#   define select select_used_without_including_sys_select_h\n#  else\n     _GL_WARN_ON_USE (select,\n                      \"select() used without including <sys/select.h>\");\n#  endif\n# endif\n#endif\n\n#endif /* _GL_SYS_TIME_H */\n#endif /* _CYGWIN_SYS_TIME_H */\n#endif /* _GL_SYS_TIME_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/sys/types.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* Provide a more complete sys/types.h.\n\n   Copyright (C) 2011-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n#ifndef _GL_SYS_TYPES_H\n\n/* The include_next requires a split double-inclusion guard.  */\n# define _GL_INCLUDING_SYS_TYPES_H\n#include_next <sys/types.h>\n# undef _GL_INCLUDING_SYS_TYPES_H\n\n#ifndef _GL_SYS_TYPES_H\n#define _GL_SYS_TYPES_H\n\n/* Override off_t if Large File Support is requested on native Windows.  */\n#if 0\n/* Same as int64_t in <stdint.h>.  */\n# if defined _MSC_VER\n#  define off_t __int64\n# else\n#  define off_t long long int\n# endif\n/* Indicator, for gnulib internal purposes.  */\n# define _GL_WINDOWS_64_BIT_OFF_T 1\n#endif\n\n/* MSVC 9 defines size_t in <stddef.h>, not in <sys/types.h>.  */\n/* But avoid namespace pollution on glibc systems.  */\n#if ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) \\\n    && ! defined __GLIBC__\n# include <stddef.h>\n#endif\n\n#endif /* _GL_SYS_TYPES_H */\n#endif /* _GL_SYS_TYPES_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/sys_stat.in.h",
    "content": "/* Provide a more complete sys/stat header file.\n   Copyright (C) 2005-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Eric Blake, Paul Eggert, and Jim Meyering.  */\n\n/* This file is supposed to be used on platforms where <sys/stat.h> is\n   incomplete.  It is intended to provide definitions and prototypes\n   needed by an application.  Start with what the system provides.  */\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n#if defined __need_system_sys_stat_h\n/* Special invocation convention.  */\n\n#@INCLUDE_NEXT@ @NEXT_SYS_STAT_H@\n\n#else\n/* Normal invocation convention.  */\n\n#ifndef _@GUARD_PREFIX@_SYS_STAT_H\n\n/* Get nlink_t.\n   May also define off_t to a 64-bit type on native Windows.  */\n#include <sys/types.h>\n\n/* Get struct timespec.  */\n#include <time.h>\n\n/* The include_next requires a split double-inclusion guard.  */\n#@INCLUDE_NEXT@ @NEXT_SYS_STAT_H@\n\n#ifndef _@GUARD_PREFIX@_SYS_STAT_H\n#define _@GUARD_PREFIX@_SYS_STAT_H\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n\n/* Before doing \"#define mkdir rpl_mkdir\" below, we need to include all\n   headers that may declare mkdir().  Native Windows platforms declare mkdir\n   in <io.h> and/or <direct.h>, not in <unistd.h>.  */\n#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n# include <io.h>     /* mingw32, mingw64 */\n# include <direct.h> /* mingw64, MSVC 9 */\n#endif\n\n/* Native Windows platforms declare umask() in <io.h>.  */\n#if 0 && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)\n# include <io.h>\n#endif\n\n/* Large File Support on native Windows.  */\n#if @WINDOWS_64_BIT_ST_SIZE@\n# define stat _stati64\n#endif\n\n#ifndef S_IFIFO\n# ifdef _S_IFIFO\n#  define S_IFIFO _S_IFIFO\n# endif\n#endif\n\n#ifndef S_IFMT\n# define S_IFMT 0170000\n#endif\n\n#if STAT_MACROS_BROKEN\n# undef S_ISBLK\n# undef S_ISCHR\n# undef S_ISDIR\n# undef S_ISFIFO\n# undef S_ISLNK\n# undef S_ISNAM\n# undef S_ISMPB\n# undef S_ISMPC\n# undef S_ISNWK\n# undef S_ISREG\n# undef S_ISSOCK\n#endif\n\n#ifndef S_ISBLK\n# ifdef S_IFBLK\n#  define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)\n# else\n#  define S_ISBLK(m) 0\n# endif\n#endif\n\n#ifndef S_ISCHR\n# ifdef S_IFCHR\n#  define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)\n# else\n#  define S_ISCHR(m) 0\n# endif\n#endif\n\n#ifndef S_ISDIR\n# ifdef S_IFDIR\n#  define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)\n# else\n#  define S_ISDIR(m) 0\n# endif\n#endif\n\n#ifndef S_ISDOOR /* Solaris 2.5 and up */\n# define S_ISDOOR(m) 0\n#endif\n\n#ifndef S_ISFIFO\n# ifdef S_IFIFO\n#  define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)\n# else\n#  define S_ISFIFO(m) 0\n# endif\n#endif\n\n#ifndef S_ISLNK\n# ifdef S_IFLNK\n#  define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)\n# else\n#  define S_ISLNK(m) 0\n# endif\n#endif\n\n#ifndef S_ISMPB /* V7 */\n# ifdef S_IFMPB\n#  define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)\n#  define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)\n# else\n#  define S_ISMPB(m) 0\n#  define S_ISMPC(m) 0\n# endif\n#endif\n\n#ifndef S_ISMPX /* AIX */\n# define S_ISMPX(m) 0\n#endif\n\n#ifndef S_ISNAM /* Xenix */\n# ifdef S_IFNAM\n#  define S_ISNAM(m) (((m) & S_IFMT) == S_IFNAM)\n# else\n#  define S_ISNAM(m) 0\n# endif\n#endif\n\n#ifndef S_ISNWK /* HP/UX */\n# ifdef S_IFNWK\n#  define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)\n# else\n#  define S_ISNWK(m) 0\n# endif\n#endif\n\n#ifndef S_ISPORT /* Solaris 10 and up */\n# define S_ISPORT(m) 0\n#endif\n\n#ifndef S_ISREG\n# ifdef S_IFREG\n#  define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)\n# else\n#  define S_ISREG(m) 0\n# endif\n#endif\n\n#ifndef S_ISSOCK\n# ifdef S_IFSOCK\n#  define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)\n# else\n#  define S_ISSOCK(m) 0\n# endif\n#endif\n\n\n#ifndef S_TYPEISMQ\n# define S_TYPEISMQ(p) 0\n#endif\n\n#ifndef S_TYPEISTMO\n# define S_TYPEISTMO(p) 0\n#endif\n\n\n#ifndef S_TYPEISSEM\n# ifdef S_INSEM\n#  define S_TYPEISSEM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSEM)\n# else\n#  define S_TYPEISSEM(p) 0\n# endif\n#endif\n\n#ifndef S_TYPEISSHM\n# ifdef S_INSHD\n#  define S_TYPEISSHM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSHD)\n# else\n#  define S_TYPEISSHM(p) 0\n# endif\n#endif\n\n/* high performance (\"contiguous data\") */\n#ifndef S_ISCTG\n# define S_ISCTG(p) 0\n#endif\n\n/* Cray DMF (data migration facility): off line, with data  */\n#ifndef S_ISOFD\n# define S_ISOFD(p) 0\n#endif\n\n/* Cray DMF (data migration facility): off line, with no data  */\n#ifndef S_ISOFL\n# define S_ISOFL(p) 0\n#endif\n\n/* 4.4BSD whiteout */\n#ifndef S_ISWHT\n# define S_ISWHT(m) 0\n#endif\n\n/* If any of the following are undefined,\n   define them to their de facto standard values.  */\n#if !S_ISUID\n# define S_ISUID 04000\n#endif\n#if !S_ISGID\n# define S_ISGID 02000\n#endif\n\n/* S_ISVTX is a common extension to POSIX.  */\n#ifndef S_ISVTX\n# define S_ISVTX 01000\n#endif\n\n#if !S_IRUSR && S_IREAD\n# define S_IRUSR S_IREAD\n#endif\n#if !S_IRUSR\n# define S_IRUSR 00400\n#endif\n#if !S_IRGRP\n# define S_IRGRP (S_IRUSR >> 3)\n#endif\n#if !S_IROTH\n# define S_IROTH (S_IRUSR >> 6)\n#endif\n\n#if !S_IWUSR && S_IWRITE\n# define S_IWUSR S_IWRITE\n#endif\n#if !S_IWUSR\n# define S_IWUSR 00200\n#endif\n#if !S_IWGRP\n# define S_IWGRP (S_IWUSR >> 3)\n#endif\n#if !S_IWOTH\n# define S_IWOTH (S_IWUSR >> 6)\n#endif\n\n#if !S_IXUSR && S_IEXEC\n# define S_IXUSR S_IEXEC\n#endif\n#if !S_IXUSR\n# define S_IXUSR 00100\n#endif\n#if !S_IXGRP\n# define S_IXGRP (S_IXUSR >> 3)\n#endif\n#if !S_IXOTH\n# define S_IXOTH (S_IXUSR >> 6)\n#endif\n\n#if !S_IRWXU\n# define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)\n#endif\n#if !S_IRWXG\n# define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)\n#endif\n#if !S_IRWXO\n# define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)\n#endif\n\n/* S_IXUGO is a common extension to POSIX.  */\n#if !S_IXUGO\n# define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)\n#endif\n\n#ifndef S_IRWXUGO\n# define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)\n#endif\n\n/* Macros for futimens and utimensat.  */\n#ifndef UTIME_NOW\n# define UTIME_NOW (-1)\n# define UTIME_OMIT (-2)\n#endif\n\n\n#if @GNULIB_FCHMODAT@\n# if !@HAVE_FCHMODAT@\n_GL_FUNCDECL_SYS (fchmodat, int,\n                  (int fd, char const *file, mode_t mode, int flag)\n                  _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (fchmodat, int,\n                  (int fd, char const *file, mode_t mode, int flag));\n_GL_CXXALIASWARN (fchmodat);\n#elif defined GNULIB_POSIXCHECK\n# undef fchmodat\n# if HAVE_RAW_DECL_FCHMODAT\n_GL_WARN_ON_USE (fchmodat, \"fchmodat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_FSTAT@\n# if @REPLACE_FSTAT@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fstat\n#   define fstat rpl_fstat\n#  endif\n_GL_FUNCDECL_RPL (fstat, int, (int fd, struct stat *buf) _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (fstat, int, (int fd, struct stat *buf));\n# else\n_GL_CXXALIAS_SYS (fstat, int, (int fd, struct stat *buf));\n# endif\n_GL_CXXALIASWARN (fstat);\n#elif @WINDOWS_64_BIT_ST_SIZE@\n/* Above, we define stat to _stati64.  */\n# define fstat _fstati64\n#elif defined GNULIB_POSIXCHECK\n# undef fstat\n# if HAVE_RAW_DECL_FSTAT\n_GL_WARN_ON_USE (fstat, \"fstat has portability problems - \"\n                 \"use gnulib module fstat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_FSTATAT@\n# if @REPLACE_FSTATAT@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fstatat\n#   define fstatat rpl_fstatat\n#  endif\n_GL_FUNCDECL_RPL (fstatat, int,\n                  (int fd, char const *name, struct stat *st, int flags)\n                  _GL_ARG_NONNULL ((2, 3)));\n_GL_CXXALIAS_RPL (fstatat, int,\n                  (int fd, char const *name, struct stat *st, int flags));\n# else\n#  if !@HAVE_FSTATAT@\n_GL_FUNCDECL_SYS (fstatat, int,\n                  (int fd, char const *name, struct stat *st, int flags)\n                  _GL_ARG_NONNULL ((2, 3)));\n#  endif\n_GL_CXXALIAS_SYS (fstatat, int,\n                  (int fd, char const *name, struct stat *st, int flags));\n# endif\n_GL_CXXALIASWARN (fstatat);\n#elif defined GNULIB_POSIXCHECK\n# undef fstatat\n# if HAVE_RAW_DECL_FSTATAT\n_GL_WARN_ON_USE (fstatat, \"fstatat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_FUTIMENS@\n/* Use the rpl_ prefix also on Solaris <= 9, because on Solaris 9 our futimens\n   implementation relies on futimesat, which on Solaris 10 makes an invocation\n   to futimens that is meant to invoke the libc's futimens(), not gnulib's\n   futimens().  */\n# if @REPLACE_FUTIMENS@ || (!@HAVE_FUTIMENS@ && defined __sun)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef futimens\n#   define futimens rpl_futimens\n#  endif\n_GL_FUNCDECL_RPL (futimens, int, (int fd, struct timespec const times[2]));\n_GL_CXXALIAS_RPL (futimens, int, (int fd, struct timespec const times[2]));\n# else\n#  if !@HAVE_FUTIMENS@\n_GL_FUNCDECL_SYS (futimens, int, (int fd, struct timespec const times[2]));\n#  endif\n_GL_CXXALIAS_SYS (futimens, int, (int fd, struct timespec const times[2]));\n# endif\n# if @HAVE_FUTIMENS@\n_GL_CXXALIASWARN (futimens);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef futimens\n# if HAVE_RAW_DECL_FUTIMENS\n_GL_WARN_ON_USE (futimens, \"futimens is not portable - \"\n                 \"use gnulib module futimens for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_LCHMOD@\n/* Change the mode of FILENAME to MODE, without dereferencing it if FILENAME\n   denotes a symbolic link.  */\n# if !@HAVE_LCHMOD@\n/* The lchmod replacement follows symbolic links.  Callers should take\n   this into account; lchmod should be applied only to arguments that\n   are known to not be symbolic links.  On hosts that lack lchmod,\n   this can lead to race conditions between the check and the\n   invocation of lchmod, but we know of no workarounds that are\n   reliable in general.  You might try requesting support for lchmod\n   from your operating system supplier.  */\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define lchmod chmod\n#  endif\n/* Need to cast, because on mingw, the second parameter of chmod is\n                                                int mode.  */\n_GL_CXXALIAS_RPL_CAST_1 (lchmod, chmod, int,\n                         (const char *filename, mode_t mode));\n# else\n#  if 0 /* assume already declared */\n_GL_FUNCDECL_SYS (lchmod, int, (const char *filename, mode_t mode)\n                               _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (lchmod, int, (const char *filename, mode_t mode));\n# endif\n# if @HAVE_LCHMOD@\n_GL_CXXALIASWARN (lchmod);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef lchmod\n# if HAVE_RAW_DECL_LCHMOD\n_GL_WARN_ON_USE (lchmod, \"lchmod is unportable - \"\n                 \"use gnulib module lchmod for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_LSTAT@\n# if ! @HAVE_LSTAT@\n/* mingw does not support symlinks, therefore it does not have lstat.  But\n   without links, stat does just fine.  */\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define lstat stat\n#  endif\n_GL_CXXALIAS_RPL_1 (lstat, stat, int, (const char *name, struct stat *buf));\n# elif @REPLACE_LSTAT@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef lstat\n#   define lstat rpl_lstat\n#  endif\n_GL_FUNCDECL_RPL (lstat, int, (const char *name, struct stat *buf)\n                              _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (lstat, int, (const char *name, struct stat *buf));\n# else\n_GL_CXXALIAS_SYS (lstat, int, (const char *name, struct stat *buf));\n# endif\n# if @HAVE_LSTAT@\n_GL_CXXALIASWARN (lstat);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef lstat\n# if HAVE_RAW_DECL_LSTAT\n_GL_WARN_ON_USE (lstat, \"lstat is unportable - \"\n                 \"use gnulib module lstat for portability\");\n# endif\n#endif\n\n\n#if @REPLACE_MKDIR@\n# if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#  undef mkdir\n#  define mkdir rpl_mkdir\n# endif\n_GL_FUNCDECL_RPL (mkdir, int, (char const *name, mode_t mode)\n                              _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));\n#else\n/* mingw's _mkdir() function has 1 argument, but we pass 2 arguments.\n   Additionally, it declares _mkdir (and depending on compile flags, an\n   alias mkdir), only in the nonstandard includes <direct.h> and <io.h>,\n   which are included above.  */\n# if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n\n#  if !GNULIB_defined_rpl_mkdir\nstatic int\nrpl_mkdir (char const *name, mode_t mode)\n{\n  return _mkdir (name);\n}\n#   define GNULIB_defined_rpl_mkdir 1\n#  endif\n\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define mkdir rpl_mkdir\n#  endif\n_GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));\n# else\n_GL_CXXALIAS_SYS (mkdir, int, (char const *name, mode_t mode));\n# endif\n#endif\n_GL_CXXALIASWARN (mkdir);\n\n\n#if @GNULIB_MKDIRAT@\n# if !@HAVE_MKDIRAT@\n_GL_FUNCDECL_SYS (mkdirat, int, (int fd, char const *file, mode_t mode)\n                                _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (mkdirat, int, (int fd, char const *file, mode_t mode));\n_GL_CXXALIASWARN (mkdirat);\n#elif defined GNULIB_POSIXCHECK\n# undef mkdirat\n# if HAVE_RAW_DECL_MKDIRAT\n_GL_WARN_ON_USE (mkdirat, \"mkdirat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_MKFIFO@\n# if @REPLACE_MKFIFO@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef mkfifo\n#   define mkfifo rpl_mkfifo\n#  endif\n_GL_FUNCDECL_RPL (mkfifo, int, (char const *file, mode_t mode)\n                               _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mkfifo, int, (char const *file, mode_t mode));\n# else\n#  if !@HAVE_MKFIFO@\n_GL_FUNCDECL_SYS (mkfifo, int, (char const *file, mode_t mode)\n                               _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (mkfifo, int, (char const *file, mode_t mode));\n# endif\n_GL_CXXALIASWARN (mkfifo);\n#elif defined GNULIB_POSIXCHECK\n# undef mkfifo\n# if HAVE_RAW_DECL_MKFIFO\n_GL_WARN_ON_USE (mkfifo, \"mkfifo is not portable - \"\n                 \"use gnulib module mkfifo for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_MKFIFOAT@\n# if !@HAVE_MKFIFOAT@\n_GL_FUNCDECL_SYS (mkfifoat, int, (int fd, char const *file, mode_t mode)\n                                 _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (mkfifoat, int, (int fd, char const *file, mode_t mode));\n_GL_CXXALIASWARN (mkfifoat);\n#elif defined GNULIB_POSIXCHECK\n# undef mkfifoat\n# if HAVE_RAW_DECL_MKFIFOAT\n_GL_WARN_ON_USE (mkfifoat, \"mkfifoat is not portable - \"\n                 \"use gnulib module mkfifoat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_MKNOD@\n# if @REPLACE_MKNOD@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef mknod\n#   define mknod rpl_mknod\n#  endif\n_GL_FUNCDECL_RPL (mknod, int, (char const *file, mode_t mode, dev_t dev)\n                              _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mknod, int, (char const *file, mode_t mode, dev_t dev));\n# else\n#  if !@HAVE_MKNOD@\n_GL_FUNCDECL_SYS (mknod, int, (char const *file, mode_t mode, dev_t dev)\n                              _GL_ARG_NONNULL ((1)));\n#  endif\n/* Need to cast, because on OSF/1 5.1, the third parameter is '...'.  */\n_GL_CXXALIAS_SYS_CAST (mknod, int, (char const *file, mode_t mode, dev_t dev));\n# endif\n_GL_CXXALIASWARN (mknod);\n#elif defined GNULIB_POSIXCHECK\n# undef mknod\n# if HAVE_RAW_DECL_MKNOD\n_GL_WARN_ON_USE (mknod, \"mknod is not portable - \"\n                 \"use gnulib module mknod for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_MKNODAT@\n# if !@HAVE_MKNODAT@\n_GL_FUNCDECL_SYS (mknodat, int,\n                  (int fd, char const *file, mode_t mode, dev_t dev)\n                  _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (mknodat, int,\n                  (int fd, char const *file, mode_t mode, dev_t dev));\n_GL_CXXALIASWARN (mknodat);\n#elif defined GNULIB_POSIXCHECK\n# undef mknodat\n# if HAVE_RAW_DECL_MKNODAT\n_GL_WARN_ON_USE (mknodat, \"mknodat is not portable - \"\n                 \"use gnulib module mkfifoat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_STAT@\n# if @REPLACE_STAT@\n/* We can't use the object-like #define stat rpl_stat, because of\n   struct stat.  This means that rpl_stat will not be used if the user\n   does (stat)(a,b).  Oh well.  */\n#  if defined _AIX && defined stat && defined _LARGE_FILES\n    /* With _LARGE_FILES defined, AIX (only) defines stat to stat64,\n       so we have to replace stat64() instead of stat(). */\n#   undef stat64\n#   define stat64(name, st) rpl_stat (name, st)\n#  elif @WINDOWS_64_BIT_ST_SIZE@\n    /* Above, we define stat to _stati64.  */\n#   if defined __MINGW32__ && defined _stati64\n#    ifndef _USE_32BIT_TIME_T\n      /* The system headers define _stati64 to _stat64.  */\n#     undef _stat64\n#     define _stat64(name, st) rpl_stat (name, st)\n#    endif\n#   elif defined _MSC_VER && defined _stati64\n#    ifdef _USE_32BIT_TIME_T\n      /* The system headers define _stati64 to _stat32i64.  */\n#     undef _stat32i64\n#     define _stat32i64(name, st) rpl_stat (name, st)\n#    else\n      /* The system headers define _stati64 to _stat64.  */\n#     undef _stat64\n#     define _stat64(name, st) rpl_stat (name, st)\n#    endif\n#   else\n#    undef _stati64\n#    define _stati64(name, st) rpl_stat (name, st)\n#   endif\n#  elif defined __MINGW32__ && defined stat\n#   ifdef _USE_32BIT_TIME_T\n     /* The system headers define stat to _stat32i64.  */\n#    undef _stat32i64\n#    define _stat32i64(name, st) rpl_stat (name, st)\n#   else\n     /* The system headers define stat to _stat64.  */\n#    undef _stat64\n#    define _stat64(name, st) rpl_stat (name, st)\n#   endif\n#  elif defined _MSC_VER && defined stat\n#   ifdef _USE_32BIT_TIME_T\n     /* The system headers define stat to _stat32.  */\n#    undef _stat32\n#    define _stat32(name, st) rpl_stat (name, st)\n#   else\n     /* The system headers define stat to _stat64i32.  */\n#    undef _stat64i32\n#    define _stat64i32(name, st) rpl_stat (name, st)\n#   endif\n#  else /* !(_AIX ||__MINGW32__ ||  _MSC_VER) */\n#   undef stat\n#   define stat(name, st) rpl_stat (name, st)\n#  endif /* !_LARGE_FILES */\n_GL_EXTERN_C int stat (const char *name, struct stat *buf)\n                      _GL_ARG_NONNULL ((1, 2));\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef stat\n# if HAVE_RAW_DECL_STAT\n_GL_WARN_ON_USE (stat, \"stat is unportable - \"\n                 \"use gnulib module stat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_UTIMENSAT@\n/* Use the rpl_ prefix also on Solaris <= 9, because on Solaris 9 our utimensat\n   implementation relies on futimesat, which on Solaris 10 makes an invocation\n   to utimensat that is meant to invoke the libc's utimensat(), not gnulib's\n   utimensat().  */\n# if @REPLACE_UTIMENSAT@ || (!@HAVE_UTIMENSAT@ && defined __sun)\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef utimensat\n#   define utimensat rpl_utimensat\n#  endif\n_GL_FUNCDECL_RPL (utimensat, int, (int fd, char const *name,\n                                   struct timespec const times[2], int flag)\n                                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (utimensat, int, (int fd, char const *name,\n                                   struct timespec const times[2], int flag));\n# else\n#  if !@HAVE_UTIMENSAT@\n_GL_FUNCDECL_SYS (utimensat, int, (int fd, char const *name,\n                                   struct timespec const times[2], int flag)\n                                  _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (utimensat, int, (int fd, char const *name,\n                                   struct timespec const times[2], int flag));\n# endif\n# if @HAVE_UTIMENSAT@\n_GL_CXXALIASWARN (utimensat);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef utimensat\n# if HAVE_RAW_DECL_UTIMENSAT\n_GL_WARN_ON_USE (utimensat, \"utimensat is not portable - \"\n                 \"use gnulib module utimensat for portability\");\n# endif\n#endif\n\n\n#endif /* _@GUARD_PREFIX@_SYS_STAT_H */\n#endif /* _@GUARD_PREFIX@_SYS_STAT_H */\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/sys_time.in.h",
    "content": "/* Provide a more complete sys/time.h.\n\n   Copyright (C) 2007-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Paul Eggert.  */\n\n#ifndef _@GUARD_PREFIX@_SYS_TIME_H\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n/* On Cygwin and on many BSDish systems, <sys/time.h> includes itself\n   recursively via <sys/select.h>.\n   Simply delegate to the system's header in this case; it is a no-op.\n   Without this extra ifdef, the C++ gettimeofday declaration below\n   would be a forward declaration in gnulib's nested <sys/time.h>.  */\n#if defined _CYGWIN_SYS_TIME_H || defined _SYS_TIME_H || defined _SYS_TIME_H_\n# @INCLUDE_NEXT@ @NEXT_SYS_TIME_H@\n#else\n\n/* The include_next requires a split double-inclusion guard.  */\n#if @HAVE_SYS_TIME_H@\n# @INCLUDE_NEXT@ @NEXT_SYS_TIME_H@\n#endif\n\n#ifndef _@GUARD_PREFIX@_SYS_TIME_H\n#define _@GUARD_PREFIX@_SYS_TIME_H\n\n#if ! @HAVE_SYS_TIME_H@\n# include <time.h>\n#endif\n\n/* On native Windows with MSVC, get the 'struct timeval' type.\n   Also, on native Windows with a 64-bit time_t, where we are overriding the\n   'struct timeval' type, get all declarations of system functions whose\n   signature contains 'struct timeval'.  */\n#if (defined _MSC_VER || @REPLACE_STRUCT_TIMEVAL@) && @HAVE_WINSOCK2_H@ && !defined _GL_INCLUDING_WINSOCK2_H\n# define _GL_INCLUDING_WINSOCK2_H\n# include <winsock2.h>\n# undef _GL_INCLUDING_WINSOCK2_H\n#endif\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n#if !@HAVE_STRUCT_TIMEVAL@ || @REPLACE_STRUCT_TIMEVAL@\n\n# if @REPLACE_STRUCT_TIMEVAL@\n#  define timeval rpl_timeval\n# endif\n\n# if !GNULIB_defined_struct_timeval\nstruct timeval\n{\n  time_t tv_sec;\n  long int tv_usec;\n};\n#  define GNULIB_defined_struct_timeval 1\n# endif\n\n#endif\n\n#ifdef __cplusplus\n}\n#endif\n\n#if @GNULIB_GETTIMEOFDAY@\n# if @REPLACE_GETTIMEOFDAY@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef gettimeofday\n#   define gettimeofday rpl_gettimeofday\n#  endif\n_GL_FUNCDECL_RPL (gettimeofday, int,\n                  (struct timeval *restrict, void *restrict)\n                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (gettimeofday, int,\n                  (struct timeval *restrict, void *restrict));\n# else\n#  if !@HAVE_GETTIMEOFDAY@\n_GL_FUNCDECL_SYS (gettimeofday, int,\n                  (struct timeval *restrict, void *restrict)\n                  _GL_ARG_NONNULL ((1)));\n#  endif\n/* Need to cast, because on glibc systems, by default, the second argument is\n                                                  struct timezone *.  */\n_GL_CXXALIAS_SYS_CAST (gettimeofday, int,\n                       (struct timeval *restrict, void *restrict));\n# endif\n_GL_CXXALIASWARN (gettimeofday);\n# if defined __cplusplus && defined GNULIB_NAMESPACE\nnamespace GNULIB_NAMESPACE {\n  typedef ::timeval\n#undef timeval\n    timeval;\n}\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef gettimeofday\n# if HAVE_RAW_DECL_GETTIMEOFDAY\n_GL_WARN_ON_USE (gettimeofday, \"gettimeofday is unportable - \"\n                 \"use gnulib module gettimeofday for portability\");\n# endif\n#endif\n\n/* Hide some function declarations from <winsock2.h>.  */\n\n#if defined _MSC_VER && @HAVE_WINSOCK2_H@\n# if !defined _@GUARD_PREFIX@_UNISTD_H\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef close\n#   define close close_used_without_including_unistd_h\n#  else\n     _GL_WARN_ON_USE (close,\n                      \"close() used without including <unistd.h>\");\n#  endif\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef gethostname\n#   define gethostname gethostname_used_without_including_unistd_h\n#  else\n     _GL_WARN_ON_USE (gethostname,\n                      \"gethostname() used without including <unistd.h>\");\n#  endif\n# endif\n# if !defined _@GUARD_PREFIX@_SYS_SOCKET_H\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef socket\n#   define socket              socket_used_without_including_sys_socket_h\n#   undef connect\n#   define connect             connect_used_without_including_sys_socket_h\n#   undef accept\n#   define accept              accept_used_without_including_sys_socket_h\n#   undef bind\n#   define bind                bind_used_without_including_sys_socket_h\n#   undef getpeername\n#   define getpeername         getpeername_used_without_including_sys_socket_h\n#   undef getsockname\n#   define getsockname         getsockname_used_without_including_sys_socket_h\n#   undef getsockopt\n#   define getsockopt          getsockopt_used_without_including_sys_socket_h\n#   undef listen\n#   define listen              listen_used_without_including_sys_socket_h\n#   undef recv\n#   define recv                recv_used_without_including_sys_socket_h\n#   undef send\n#   define send                send_used_without_including_sys_socket_h\n#   undef recvfrom\n#   define recvfrom            recvfrom_used_without_including_sys_socket_h\n#   undef sendto\n#   define sendto              sendto_used_without_including_sys_socket_h\n#   undef setsockopt\n#   define setsockopt          setsockopt_used_without_including_sys_socket_h\n#   undef shutdown\n#   define shutdown            shutdown_used_without_including_sys_socket_h\n#  else\n     _GL_WARN_ON_USE (socket,\n                      \"socket() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (connect,\n                      \"connect() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (accept,\n                      \"accept() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (bind,\n                      \"bind() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (getpeername,\n                      \"getpeername() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (getsockname,\n                      \"getsockname() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (getsockopt,\n                      \"getsockopt() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (listen,\n                      \"listen() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (recv,\n                      \"recv() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (send,\n                      \"send() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (recvfrom,\n                      \"recvfrom() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (sendto,\n                      \"sendto() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (setsockopt,\n                      \"setsockopt() used without including <sys/socket.h>\");\n     _GL_WARN_ON_USE (shutdown,\n                      \"shutdown() used without including <sys/socket.h>\");\n#  endif\n# endif\n# if !defined _@GUARD_PREFIX@_SYS_SELECT_H\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef select\n#   define select select_used_without_including_sys_select_h\n#  else\n     _GL_WARN_ON_USE (select,\n                      \"select() used without including <sys/select.h>\");\n#  endif\n# endif\n#endif\n\n#endif /* _@GUARD_PREFIX@_SYS_TIME_H */\n#endif /* _CYGWIN_SYS_TIME_H */\n#endif /* _@GUARD_PREFIX@_SYS_TIME_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/sys_types.in.h",
    "content": "/* Provide a more complete sys/types.h.\n\n   Copyright (C) 2011-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n#ifndef _@GUARD_PREFIX@_SYS_TYPES_H\n\n/* The include_next requires a split double-inclusion guard.  */\n# define _GL_INCLUDING_SYS_TYPES_H\n#@INCLUDE_NEXT@ @NEXT_SYS_TYPES_H@\n# undef _GL_INCLUDING_SYS_TYPES_H\n\n#ifndef _@GUARD_PREFIX@_SYS_TYPES_H\n#define _@GUARD_PREFIX@_SYS_TYPES_H\n\n/* Override off_t if Large File Support is requested on native Windows.  */\n#if @WINDOWS_64_BIT_OFF_T@\n/* Same as int64_t in <stdint.h>.  */\n# if defined _MSC_VER\n#  define off_t __int64\n# else\n#  define off_t long long int\n# endif\n/* Indicator, for gnulib internal purposes.  */\n# define _GL_WINDOWS_64_BIT_OFF_T 1\n#endif\n\n/* MSVC 9 defines size_t in <stddef.h>, not in <sys/types.h>.  */\n/* But avoid namespace pollution on glibc systems.  */\n#if ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) \\\n    && ! defined __GLIBC__\n# include <stddef.h>\n#endif\n\n#endif /* _@GUARD_PREFIX@_SYS_TYPES_H */\n#endif /* _@GUARD_PREFIX@_SYS_TYPES_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/time.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* A more-standard <time.h>.\n\n   Copyright (C) 2007-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n/* Don't get in the way of glibc when it includes time.h merely to\n   declare a few standard symbols, rather than to declare all the\n   symbols.  (However, skip this for MinGW as it treats __need_time_t\n   incompatibly.)  Also, Solaris 8 <time.h> eventually includes itself\n   recursively; if that is happening, just include the system <time.h>\n   without adding our own declarations.  */\n#if (((defined __need_time_t || defined __need_clock_t \\\n       || defined __need_timespec)                     \\\n      && !defined __MINGW32__)                         \\\n     || defined _GL_TIME_H)\n\n# include_next <time.h>\n\n#else\n\n# define _GL_TIME_H\n\n# include_next <time.h>\n\n/* NetBSD 5.0 mis-defines NULL.  */\n# include <stddef.h>\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n#ifndef _GL_CXXDEFS_H\n#define _GL_CXXDEFS_H\n\n/* Begin/end the GNULIB_NAMESPACE namespace.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {\n# define _GL_END_NAMESPACE }\n#else\n# define _GL_BEGIN_NAMESPACE\n# define _GL_END_NAMESPACE\n#endif\n\n/* The three most frequent use cases of these macros are:\n\n   * For providing a substitute for a function that is missing on some\n     platforms, but is declared and works fine on the platforms on which\n     it exists:\n\n       #if @GNULIB_FOO@\n       # if !@HAVE_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       # endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on all platforms,\n     but is broken/insufficient and needs to be replaced on some platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on some platforms\n     but is broken/insufficient and needs to be replaced on some of them and\n     is additionally either missing or undeclared on some other platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       #  endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n*/\n\n/* _GL_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#if defined __cplusplus\n# define _GL_EXTERN_C extern \"C\"\n#else\n# define _GL_EXTERN_C extern\n#endif\n\n/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);\n   declares a replacement function, named rpl_func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \\\n  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)\n#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype rpl_func parameters_and_attributes\n\n/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);\n   declares the system function, named func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype func parameters_and_attributes\n\n/* _GL_CXXALIAS_RPL (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.\n   Example:\n     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n\n   Wrapping rpl_func in an object with an inline conversion operator\n   avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#define _GL_CXXALIAS_RPL(func,rettype,parameters) \\\n  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::rpl_func;                                  \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);\n   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);\n   except that the C function rpl_func may have a slightly different\n   declaration.  A cast is used to silence the \"invalid conversion\" error\n   that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                     \\\n    {                                                              \\\n      static const struct _gl_ ## func ## _wrapper                 \\\n      {                                                            \\\n        typedef rettype (*type) parameters;                        \\\n                                                                   \\\n        inline operator type () const                              \\\n        {                                                          \\\n          return reinterpret_cast<type>(::rpl_func);               \\\n        }                                                          \\\n      } func = {};                                                 \\\n    }                                                              \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to the system provided function func, if GNULIB_NAMESPACE\n   is defined.\n   Example:\n     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n\n   Wrapping func in an object with an inline conversion operator\n   avoids a reference to func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS(func,rettype,parameters)            \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::func;                                      \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function func may have a slightly different declaration.\n   A cast is used to silence the \"invalid conversion\" error that would\n   otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                          \\\n    {                                                   \\\n      static const struct _gl_ ## func ## _wrapper      \\\n      {                                                 \\\n        typedef rettype (*type) parameters;             \\\n                                                        \\\n        inline operator type () const                   \\\n        {                                               \\\n          return reinterpret_cast<type>(::func);        \\\n        }                                               \\\n      } func = {};                                      \\\n    }                                                   \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function is picked among a set of overloaded functions,\n   namely the one with rettype2 and parameters2.  Two consecutive casts\n   are used to silence the \"cannot find a match\" and \"invalid conversion\"\n   errors that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n  /* The outer cast must be a reinterpret_cast.\n     The inner cast: When the function is defined as a set of overloaded\n     functions, it works as a static_cast<>, choosing the designated variant.\n     When the function is defined as a single variant, it works as a\n     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    namespace GNULIB_NAMESPACE                                                \\\n    {                                                                         \\\n      static const struct _gl_ ## func ## _wrapper                            \\\n      {                                                                       \\\n        typedef rettype (*type) parameters;                                   \\\n                                                                              \\\n        inline operator type () const                                         \\\n        {                                                                     \\\n          return reinterpret_cast<type>((rettype2 (*) parameters2)(::func));  \\\n        }                                                                     \\\n      } func = {};                                                            \\\n    }                                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN (func);\n   causes a warning to be emitted when ::func is used but not when\n   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded\n   variants.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN(func) \\\n   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN_1(func,namespace) \\\n   _GL_CXXALIASWARN_2 (func, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n    _GL_WARN_ON_USE (func, \\\n                     \"The symbol ::\" #func \" refers to the system function. \" \\\n                     \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN(func) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);\n   causes a warning to be emitted when the given overloaded variant of ::func\n   is used but not when GNULIB_NAMESPACE::func is used.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \\\n                        GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \\\n   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \\\n                         \"The symbol ::\" #func \" refers to the system function. \" \\\n                         \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n#endif /* _GL_CXXDEFS_H */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools\n   that the values passed as arguments n, ..., m must be non-NULL pointers.\n   n = 1 stands for the first argument, n = 2 for the second argument etc.  */\n#ifndef _GL_ARG_NONNULL\n# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3\n#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))\n# else\n#  define _GL_ARG_NONNULL(params)\n# endif\n#endif\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n#ifndef _GL_WARN_ON_USE\n\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n/* A compiler attribute is available in gcc versions 4.3.0 and later.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function __attribute__ ((__warning__ (message)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE(function, message) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, \"string\")\n   is like _GL_WARN_ON_USE (function, \"string\"), except that the function is\n   declared with the given prototype, consisting of return type, parameters,\n   and attributes.\n   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does\n   not work in this case.  */\n#ifndef _GL_WARN_ON_USE_CXX\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes \\\n     __attribute__ ((__warning__ (msg)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#ifndef _GL_WARN_EXTERN_C\n# if defined __cplusplus\n#  define _GL_WARN_EXTERN_C extern \"C\"\n# else\n#  define _GL_WARN_EXTERN_C extern\n# endif\n#endif\n\n/* Some systems don't define struct timespec (e.g., AIX 4.1, Ultrix 4.3).\n   Or they define it with the wrong member names or define it in <sys/time.h>\n   (e.g., FreeBSD circa 1997).  Stock Mingw prior to 3.0 does not define it,\n   but the pthreads-win32 library defines it in <pthread.h>.  */\n# if ! 1\n#  if 0\n#   include <sys/time.h>\n#  elif 0\n#   include <pthread.h>\n#  elif 0\n#   include <unistd.h>\n#  else\n\n#   ifdef __cplusplus\nextern \"C\" {\n#   endif\n\n#   if !GNULIB_defined_struct_timespec\n#    undef timespec\n#    define timespec rpl_timespec\nstruct timespec\n{\n  time_t tv_sec;\n  long int tv_nsec;\n};\n#    define GNULIB_defined_struct_timespec 1\n#   endif\n\n#   ifdef __cplusplus\n}\n#   endif\n\n#  endif\n# endif\n\n# if !GNULIB_defined_struct_time_t_must_be_integral\n/* Per http://austingroupbugs.net/view.php?id=327, POSIX requires\n   time_t to be an integer type, even though C99 permits floating\n   point.  We don't know of any implementation that uses floating\n   point, and it is much easier to write code that doesn't have to\n   worry about that corner case, so we force the issue.  */\nstruct __time_t_must_be_integral {\n  unsigned int __floating_time_t_unsupported : (time_t) 1;\n};\n#  define GNULIB_defined_struct_time_t_must_be_integral 1\n# endif\n\n/* Sleep for at least RQTP seconds unless interrupted,  If interrupted,\n   return -1 and store the remaining time into RMTP.  See\n   <http://www.opengroup.org/susv3xsh/nanosleep.html>.  */\n# if 0\n#  if GNULIB_PORTCHECK\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    define nanosleep rpl_nanosleep\n#   endif\n_GL_FUNCDECL_RPL (nanosleep, int,\n                  (struct timespec const *__rqtp, struct timespec *__rmtp)\n                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (nanosleep, int,\n                  (struct timespec const *__rqtp, struct timespec *__rmtp));\n#  else\n#   if ! 1\n_GL_FUNCDECL_SYS (nanosleep, int,\n                  (struct timespec const *__rqtp, struct timespec *__rmtp)\n                  _GL_ARG_NONNULL ((1)));\n#   endif\n_GL_CXXALIAS_SYS (nanosleep, int,\n                  (struct timespec const *__rqtp, struct timespec *__rmtp));\n#  endif\n_GL_CXXALIASWARN (nanosleep);\n# endif\n\n/* Return the 'time_t' representation of TP and normalize TP.  */\n# if 0\n#  if GNULIB_PORTCHECK\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    define mktime rpl_mktime\n#   endif\n_GL_FUNCDECL_RPL (mktime, time_t, (struct tm *__tp) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mktime, time_t, (struct tm *__tp));\n#  else\n_GL_CXXALIAS_SYS (mktime, time_t, (struct tm *__tp));\n#  endif\n_GL_CXXALIASWARN (mktime);\n# endif\n\n/* Convert TIMER to RESULT, assuming local time and UTC respectively.  See\n   <http://www.opengroup.org/susv3xsh/localtime_r.html> and\n   <http://www.opengroup.org/susv3xsh/gmtime_r.html>.  */\n# if 0\n#  if GNULIB_PORTCHECK\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef localtime_r\n#    define localtime_r rpl_localtime_r\n#   endif\n_GL_FUNCDECL_RPL (localtime_r, struct tm *, (time_t const *restrict __timer,\n                                             struct tm *restrict __result)\n                                            _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (localtime_r, struct tm *, (time_t const *restrict __timer,\n                                             struct tm *restrict __result));\n#  else\n#   if ! 1\n_GL_FUNCDECL_SYS (localtime_r, struct tm *, (time_t const *restrict __timer,\n                                             struct tm *restrict __result)\n                                            _GL_ARG_NONNULL ((1, 2)));\n#   endif\n_GL_CXXALIAS_SYS (localtime_r, struct tm *, (time_t const *restrict __timer,\n                                             struct tm *restrict __result));\n#  endif\n#  if 1\n_GL_CXXALIASWARN (localtime_r);\n#  endif\n#  if GNULIB_PORTCHECK\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef gmtime_r\n#    define gmtime_r rpl_gmtime_r\n#   endif\n_GL_FUNCDECL_RPL (gmtime_r, struct tm *, (time_t const *restrict __timer,\n                                          struct tm *restrict __result)\n                                         _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (gmtime_r, struct tm *, (time_t const *restrict __timer,\n                                          struct tm *restrict __result));\n#  else\n#   if ! 1\n_GL_FUNCDECL_SYS (gmtime_r, struct tm *, (time_t const *restrict __timer,\n                                          struct tm *restrict __result)\n                                         _GL_ARG_NONNULL ((1, 2)));\n#   endif\n_GL_CXXALIAS_SYS (gmtime_r, struct tm *, (time_t const *restrict __timer,\n                                          struct tm *restrict __result));\n#  endif\n#  if 1\n_GL_CXXALIASWARN (gmtime_r);\n#  endif\n# endif\n\n/* Convert TIMER to RESULT, assuming local time and UTC respectively.  See\n   <http://www.opengroup.org/susv3xsh/localtime.html> and\n   <http://www.opengroup.org/susv3xsh/gmtime.html>.  */\n# if 1\n#  if 0\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef localtime\n#    define localtime rpl_localtime\n#   endif\n_GL_FUNCDECL_RPL (localtime, struct tm *, (time_t const *__timer)\n\t\t                          _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (localtime, struct tm *, (time_t const *__timer));\n#  else\n_GL_CXXALIAS_SYS (localtime, struct tm *, (time_t const *__timer));\n#  endif\n_GL_CXXALIASWARN (localtime);\n# endif\n\n# if 1\n#  if 0\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef gmtime\n#    define gmtime rpl_gmtime\n#   endif\n_GL_FUNCDECL_RPL (gmtime, struct tm *, (time_t const *__timer)\n                                       _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (gmtime, struct tm *, (time_t const *__timer));\n#  else\n_GL_CXXALIAS_SYS (gmtime, struct tm *, (time_t const *__timer));\n#  endif\n_GL_CXXALIASWARN (gmtime);\n# endif\n\n/* Parse BUF as a time stamp, assuming FORMAT specifies its layout, and store\n   the resulting broken-down time into TM.  See\n   <http://www.opengroup.org/susv3xsh/strptime.html>.  */\n# if 0\n#  if ! 1\n_GL_FUNCDECL_SYS (strptime, char *, (char const *restrict __buf,\n                                     char const *restrict __format,\n                                     struct tm *restrict __tm)\n                                    _GL_ARG_NONNULL ((1, 2, 3)));\n#  endif\n_GL_CXXALIAS_SYS (strptime, char *, (char const *restrict __buf,\n                                     char const *restrict __format,\n                                     struct tm *restrict __tm));\n_GL_CXXALIASWARN (strptime);\n# endif\n\n# if defined _GNU_SOURCE && 0 && ! 0\ntypedef struct tm_zone *timezone_t;\n_GL_FUNCDECL_SYS (tzalloc, timezone_t, (char const *__name));\n_GL_CXXALIAS_SYS (tzalloc, timezone_t, (char const *__name));\n_GL_FUNCDECL_SYS (tzfree, void, (timezone_t __tz));\n_GL_CXXALIAS_SYS (tzfree, void, (timezone_t __tz));\n_GL_FUNCDECL_SYS (localtime_rz, struct tm *,\n                  (timezone_t __tz, time_t const *restrict __timer,\n                   struct tm *restrict __result) _GL_ARG_NONNULL ((2, 3)));\n_GL_CXXALIAS_SYS (localtime_rz, struct tm *,\n                  (timezone_t __tz, time_t const *restrict __timer,\n                   struct tm *restrict __result));\n_GL_FUNCDECL_SYS (mktime_z, time_t,\n                  (timezone_t __tz, struct tm *restrict __result)\n                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_SYS (mktime_z, time_t,\n                  (timezone_t __tz, struct tm *restrict __result));\n# endif\n\n/* Convert TM to a time_t value, assuming UTC.  */\n# if 0\n#  if GNULIB_PORTCHECK\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef timegm\n#    define timegm rpl_timegm\n#   endif\n_GL_FUNCDECL_RPL (timegm, time_t, (struct tm *__tm) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (timegm, time_t, (struct tm *__tm));\n#  else\n#   if ! 1\n_GL_FUNCDECL_SYS (timegm, time_t, (struct tm *__tm) _GL_ARG_NONNULL ((1)));\n#   endif\n_GL_CXXALIAS_SYS (timegm, time_t, (struct tm *__tm));\n#  endif\n_GL_CXXALIASWARN (timegm);\n# endif\n\n/* Encourage applications to avoid unsafe functions that can overrun\n   buffers when given outlandish struct tm values.  Portable\n   applications should use strftime (or even sprintf) instead.  */\n# if defined GNULIB_POSIXCHECK\n#  undef asctime\n_GL_WARN_ON_USE (asctime, \"asctime can overrun buffers in some cases - \"\n                 \"better use strftime (or even sprintf) instead\");\n# endif\n# if defined GNULIB_POSIXCHECK\n#  undef asctime_r\n_GL_WARN_ON_USE (asctime, \"asctime_r can overrun buffers in some cases - \"\n                 \"better use strftime (or even sprintf) instead\");\n# endif\n# if defined GNULIB_POSIXCHECK\n#  undef ctime\n_GL_WARN_ON_USE (asctime, \"ctime can overrun buffers in some cases - \"\n                 \"better use strftime (or even sprintf) instead\");\n# endif\n# if defined GNULIB_POSIXCHECK\n#  undef ctime_r\n_GL_WARN_ON_USE (asctime, \"ctime_r can overrun buffers in some cases - \"\n                 \"better use strftime (or even sprintf) instead\");\n# endif\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/time.in.h",
    "content": "/* A more-standard <time.h>.\n\n   Copyright (C) 2007-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n/* Don't get in the way of glibc when it includes time.h merely to\n   declare a few standard symbols, rather than to declare all the\n   symbols.  (However, skip this for MinGW as it treats __need_time_t\n   incompatibly.)  Also, Solaris 8 <time.h> eventually includes itself\n   recursively; if that is happening, just include the system <time.h>\n   without adding our own declarations.  */\n#if (((defined __need_time_t || defined __need_clock_t \\\n       || defined __need_timespec)                     \\\n      && !defined __MINGW32__)                         \\\n     || defined _@GUARD_PREFIX@_TIME_H)\n\n# @INCLUDE_NEXT@ @NEXT_TIME_H@\n\n#else\n\n# define _@GUARD_PREFIX@_TIME_H\n\n# @INCLUDE_NEXT@ @NEXT_TIME_H@\n\n/* NetBSD 5.0 mis-defines NULL.  */\n# include <stddef.h>\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n\n/* Some systems don't define struct timespec (e.g., AIX 4.1, Ultrix 4.3).\n   Or they define it with the wrong member names or define it in <sys/time.h>\n   (e.g., FreeBSD circa 1997).  Stock Mingw prior to 3.0 does not define it,\n   but the pthreads-win32 library defines it in <pthread.h>.  */\n# if ! @TIME_H_DEFINES_STRUCT_TIMESPEC@\n#  if @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@\n#   include <sys/time.h>\n#  elif @PTHREAD_H_DEFINES_STRUCT_TIMESPEC@\n#   include <pthread.h>\n#  elif @UNISTD_H_DEFINES_STRUCT_TIMESPEC@\n#   include <unistd.h>\n#  else\n\n#   ifdef __cplusplus\nextern \"C\" {\n#   endif\n\n#   if !GNULIB_defined_struct_timespec\n#    undef timespec\n#    define timespec rpl_timespec\nstruct timespec\n{\n  time_t tv_sec;\n  long int tv_nsec;\n};\n#    define GNULIB_defined_struct_timespec 1\n#   endif\n\n#   ifdef __cplusplus\n}\n#   endif\n\n#  endif\n# endif\n\n# if !GNULIB_defined_struct_time_t_must_be_integral\n/* Per http://austingroupbugs.net/view.php?id=327, POSIX requires\n   time_t to be an integer type, even though C99 permits floating\n   point.  We don't know of any implementation that uses floating\n   point, and it is much easier to write code that doesn't have to\n   worry about that corner case, so we force the issue.  */\nstruct __time_t_must_be_integral {\n  unsigned int __floating_time_t_unsupported : (time_t) 1;\n};\n#  define GNULIB_defined_struct_time_t_must_be_integral 1\n# endif\n\n/* Sleep for at least RQTP seconds unless interrupted,  If interrupted,\n   return -1 and store the remaining time into RMTP.  See\n   <http://www.opengroup.org/susv3xsh/nanosleep.html>.  */\n# if @GNULIB_NANOSLEEP@\n#  if @REPLACE_NANOSLEEP@\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    define nanosleep rpl_nanosleep\n#   endif\n_GL_FUNCDECL_RPL (nanosleep, int,\n                  (struct timespec const *__rqtp, struct timespec *__rmtp)\n                  _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (nanosleep, int,\n                  (struct timespec const *__rqtp, struct timespec *__rmtp));\n#  else\n#   if ! @HAVE_NANOSLEEP@\n_GL_FUNCDECL_SYS (nanosleep, int,\n                  (struct timespec const *__rqtp, struct timespec *__rmtp)\n                  _GL_ARG_NONNULL ((1)));\n#   endif\n_GL_CXXALIAS_SYS (nanosleep, int,\n                  (struct timespec const *__rqtp, struct timespec *__rmtp));\n#  endif\n_GL_CXXALIASWARN (nanosleep);\n# endif\n\n/* Return the 'time_t' representation of TP and normalize TP.  */\n# if @GNULIB_MKTIME@\n#  if @REPLACE_MKTIME@\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    define mktime rpl_mktime\n#   endif\n_GL_FUNCDECL_RPL (mktime, time_t, (struct tm *__tp) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (mktime, time_t, (struct tm *__tp));\n#  else\n_GL_CXXALIAS_SYS (mktime, time_t, (struct tm *__tp));\n#  endif\n_GL_CXXALIASWARN (mktime);\n# endif\n\n/* Convert TIMER to RESULT, assuming local time and UTC respectively.  See\n   <http://www.opengroup.org/susv3xsh/localtime_r.html> and\n   <http://www.opengroup.org/susv3xsh/gmtime_r.html>.  */\n# if @GNULIB_TIME_R@\n#  if @REPLACE_LOCALTIME_R@\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef localtime_r\n#    define localtime_r rpl_localtime_r\n#   endif\n_GL_FUNCDECL_RPL (localtime_r, struct tm *, (time_t const *restrict __timer,\n                                             struct tm *restrict __result)\n                                            _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (localtime_r, struct tm *, (time_t const *restrict __timer,\n                                             struct tm *restrict __result));\n#  else\n#   if ! @HAVE_DECL_LOCALTIME_R@\n_GL_FUNCDECL_SYS (localtime_r, struct tm *, (time_t const *restrict __timer,\n                                             struct tm *restrict __result)\n                                            _GL_ARG_NONNULL ((1, 2)));\n#   endif\n_GL_CXXALIAS_SYS (localtime_r, struct tm *, (time_t const *restrict __timer,\n                                             struct tm *restrict __result));\n#  endif\n#  if @HAVE_DECL_LOCALTIME_R@\n_GL_CXXALIASWARN (localtime_r);\n#  endif\n#  if @REPLACE_LOCALTIME_R@\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef gmtime_r\n#    define gmtime_r rpl_gmtime_r\n#   endif\n_GL_FUNCDECL_RPL (gmtime_r, struct tm *, (time_t const *restrict __timer,\n                                          struct tm *restrict __result)\n                                         _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (gmtime_r, struct tm *, (time_t const *restrict __timer,\n                                          struct tm *restrict __result));\n#  else\n#   if ! @HAVE_DECL_LOCALTIME_R@\n_GL_FUNCDECL_SYS (gmtime_r, struct tm *, (time_t const *restrict __timer,\n                                          struct tm *restrict __result)\n                                         _GL_ARG_NONNULL ((1, 2)));\n#   endif\n_GL_CXXALIAS_SYS (gmtime_r, struct tm *, (time_t const *restrict __timer,\n                                          struct tm *restrict __result));\n#  endif\n#  if @HAVE_DECL_LOCALTIME_R@\n_GL_CXXALIASWARN (gmtime_r);\n#  endif\n# endif\n\n/* Convert TIMER to RESULT, assuming local time and UTC respectively.  See\n   <http://www.opengroup.org/susv3xsh/localtime.html> and\n   <http://www.opengroup.org/susv3xsh/gmtime.html>.  */\n# if @GNULIB_GETTIMEOFDAY@\n#  if @REPLACE_LOCALTIME@\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef localtime\n#    define localtime rpl_localtime\n#   endif\n_GL_FUNCDECL_RPL (localtime, struct tm *, (time_t const *__timer)\n\t\t                          _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (localtime, struct tm *, (time_t const *__timer));\n#  else\n_GL_CXXALIAS_SYS (localtime, struct tm *, (time_t const *__timer));\n#  endif\n_GL_CXXALIASWARN (localtime);\n# endif\n\n# if @GNULIB_GETTIMEOFDAY@\n#  if @REPLACE_GMTIME@\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef gmtime\n#    define gmtime rpl_gmtime\n#   endif\n_GL_FUNCDECL_RPL (gmtime, struct tm *, (time_t const *__timer)\n                                       _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (gmtime, struct tm *, (time_t const *__timer));\n#  else\n_GL_CXXALIAS_SYS (gmtime, struct tm *, (time_t const *__timer));\n#  endif\n_GL_CXXALIASWARN (gmtime);\n# endif\n\n/* Parse BUF as a time stamp, assuming FORMAT specifies its layout, and store\n   the resulting broken-down time into TM.  See\n   <http://www.opengroup.org/susv3xsh/strptime.html>.  */\n# if @GNULIB_STRPTIME@\n#  if ! @HAVE_STRPTIME@\n_GL_FUNCDECL_SYS (strptime, char *, (char const *restrict __buf,\n                                     char const *restrict __format,\n                                     struct tm *restrict __tm)\n                                    _GL_ARG_NONNULL ((1, 2, 3)));\n#  endif\n_GL_CXXALIAS_SYS (strptime, char *, (char const *restrict __buf,\n                                     char const *restrict __format,\n                                     struct tm *restrict __tm));\n_GL_CXXALIASWARN (strptime);\n# endif\n\n# if defined _GNU_SOURCE && @GNULIB_TIME_RZ@ && ! @HAVE_TIMEZONE_T@\ntypedef struct tm_zone *timezone_t;\n_GL_FUNCDECL_SYS (tzalloc, timezone_t, (char const *__name));\n_GL_CXXALIAS_SYS (tzalloc, timezone_t, (char const *__name));\n_GL_FUNCDECL_SYS (tzfree, void, (timezone_t __tz));\n_GL_CXXALIAS_SYS (tzfree, void, (timezone_t __tz));\n_GL_FUNCDECL_SYS (localtime_rz, struct tm *,\n                  (timezone_t __tz, time_t const *restrict __timer,\n                   struct tm *restrict __result) _GL_ARG_NONNULL ((2, 3)));\n_GL_CXXALIAS_SYS (localtime_rz, struct tm *,\n                  (timezone_t __tz, time_t const *restrict __timer,\n                   struct tm *restrict __result));\n_GL_FUNCDECL_SYS (mktime_z, time_t,\n                  (timezone_t __tz, struct tm *restrict __result)\n                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_SYS (mktime_z, time_t,\n                  (timezone_t __tz, struct tm *restrict __result));\n# endif\n\n/* Convert TM to a time_t value, assuming UTC.  */\n# if @GNULIB_TIMEGM@\n#  if @REPLACE_TIMEGM@\n#   if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#    undef timegm\n#    define timegm rpl_timegm\n#   endif\n_GL_FUNCDECL_RPL (timegm, time_t, (struct tm *__tm) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (timegm, time_t, (struct tm *__tm));\n#  else\n#   if ! @HAVE_TIMEGM@\n_GL_FUNCDECL_SYS (timegm, time_t, (struct tm *__tm) _GL_ARG_NONNULL ((1)));\n#   endif\n_GL_CXXALIAS_SYS (timegm, time_t, (struct tm *__tm));\n#  endif\n_GL_CXXALIASWARN (timegm);\n# endif\n\n/* Encourage applications to avoid unsafe functions that can overrun\n   buffers when given outlandish struct tm values.  Portable\n   applications should use strftime (or even sprintf) instead.  */\n# if defined GNULIB_POSIXCHECK\n#  undef asctime\n_GL_WARN_ON_USE (asctime, \"asctime can overrun buffers in some cases - \"\n                 \"better use strftime (or even sprintf) instead\");\n# endif\n# if defined GNULIB_POSIXCHECK\n#  undef asctime_r\n_GL_WARN_ON_USE (asctime, \"asctime_r can overrun buffers in some cases - \"\n                 \"better use strftime (or even sprintf) instead\");\n# endif\n# if defined GNULIB_POSIXCHECK\n#  undef ctime\n_GL_WARN_ON_USE (asctime, \"ctime can overrun buffers in some cases - \"\n                 \"better use strftime (or even sprintf) instead\");\n# endif\n# if defined GNULIB_POSIXCHECK\n#  undef ctime_r\n_GL_WARN_ON_USE (asctime, \"ctime_r can overrun buffers in some cases - \"\n                 \"better use strftime (or even sprintf) instead\");\n# endif\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/unistd.c",
    "content": "#include <config.h>\n#define _GL_UNISTD_INLINE _GL_EXTERN_INLINE\n#include \"unistd.h\"\ntypedef int dummy;\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/unistd.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* Substitute for and wrapper around <unistd.h>.\n   Copyright (C) 2003-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _GL_UNISTD_H\n\n#if __GNUC__ >= 3\n#pragma GCC system_header\n#endif\n\n\n#ifdef _GL_INCLUDING_UNISTD_H\n/* Special invocation convention:\n   - On Mac OS X 10.3.9 we have a sequence of nested includes\n     <unistd.h> -> <signal.h> -> <pthread.h> -> <unistd.h>\n     In this situation, the functions are not yet declared, therefore we cannot\n     provide the C++ aliases.  */\n\n#include_next <unistd.h>\n\n#else\n/* Normal invocation convention.  */\n\n/* The include_next requires a split double-inclusion guard.  */\n#if 1\n# define _GL_INCLUDING_UNISTD_H\n# include_next <unistd.h>\n# undef _GL_INCLUDING_UNISTD_H\n#endif\n\n/* Get all possible declarations of gethostname().  */\n#if 0 && 0 \\\n  && !defined _GL_INCLUDING_WINSOCK2_H\n# define _GL_INCLUDING_WINSOCK2_H\n# include <winsock2.h>\n# undef _GL_INCLUDING_WINSOCK2_H\n#endif\n\n#if !defined _GL_UNISTD_H && !defined _GL_INCLUDING_WINSOCK2_H\n#define _GL_UNISTD_H\n\n/* NetBSD 5.0 mis-defines NULL.  Also get size_t.  */\n#include <stddef.h>\n\n/* mingw doesn't define the SEEK_* or *_FILENO macros in <unistd.h>.  */\n/* MSVC declares 'unlink' in <stdio.h>, not in <unistd.h>.  We must include\n   it before we  #define unlink rpl_unlink.  */\n/* Cygwin 1.7.1 declares symlinkat in <stdio.h>, not in <unistd.h>.  */\n/* But avoid namespace pollution on glibc systems.  */\n#if (!(defined SEEK_CUR && defined SEEK_END && defined SEEK_SET) \\\n     || ((0 || defined GNULIB_POSIXCHECK) \\\n         && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)) \\\n     || ((0 || defined GNULIB_POSIXCHECK) \\\n         && defined __CYGWIN__)) \\\n    && ! defined __GLIBC__\n# include <stdio.h>\n#endif\n\n/* Cygwin 1.7.1 declares unlinkat in <fcntl.h>, not in <unistd.h>.  */\n/* But avoid namespace pollution on glibc systems.  */\n#if (0 || defined GNULIB_POSIXCHECK) && defined __CYGWIN__ \\\n    && ! defined __GLIBC__\n# include <fcntl.h>\n#endif\n\n/* mingw fails to declare _exit in <unistd.h>.  */\n/* mingw, MSVC, BeOS, Haiku declare environ in <stdlib.h>, not in\n   <unistd.h>.  */\n/* Solaris declares getcwd not only in <unistd.h> but also in <stdlib.h>.  */\n/* OSF Tru64 Unix cannot see gnulib rpl_strtod when system <stdlib.h> is\n   included here.  */\n/* But avoid namespace pollution on glibc systems.  */\n#if !defined __GLIBC__ && !defined __osf__\n# define __need_system_stdlib_h\n# include <stdlib.h>\n# undef __need_system_stdlib_h\n#endif\n\n/* Native Windows platforms declare chdir, getcwd, rmdir in\n   <io.h> and/or <direct.h>, not in <unistd.h>.\n   They also declare access(), chmod(), close(), dup(), dup2(), isatty(),\n   lseek(), read(), unlink(), write() in <io.h>.  */\n#if ((0 || 0 || 0 \\\n      || defined GNULIB_POSIXCHECK) \\\n     && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__))\n# include <io.h>     /* mingw32, mingw64 */\n# include <direct.h> /* mingw64, MSVC 9 */\n#elif (0 || 0 || 0 || 0 \\\n       || 0 || 1 || 0 || 0 \\\n       || defined GNULIB_POSIXCHECK) \\\n      && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)\n# include <io.h>\n#endif\n\n/* AIX and OSF/1 5.1 declare getdomainname in <netdb.h>, not in <unistd.h>.\n   NonStop Kernel declares gethostname in <netdb.h>, not in <unistd.h>.  */\n/* But avoid namespace pollution on glibc systems.  */\n#if ((0 && (defined _AIX || defined __osf__)) \\\n     || (0 && defined __TANDEM)) \\\n    && !defined __GLIBC__\n# include <netdb.h>\n#endif\n\n/* MSVC defines off_t in <sys/types.h>.\n   May also define off_t to a 64-bit type on native Windows.  */\n#if !1 || 0\n/* Get off_t.  */\n# include <sys/types.h>\n#endif\n\n#if (1 || 0 \\\n     || 1 || 0 \\\n     || 0 || 0 || defined GNULIB_POSIXCHECK)\n/* Get ssize_t.  */\n# include <sys/types.h>\n#endif\n\n/* Get getopt(), optarg, optind, opterr, optopt.\n   But avoid namespace pollution on glibc systems.  */\n#if 0 && !defined __GLIBC__ && !defined _GL_SYSTEM_GETOPT\n# define __need_getopt\n# include <getopt.h>\n#endif\n\n#ifndef _GL_INLINE_HEADER_BEGIN\n #error \"Please include config.h first.\"\n#endif\n_GL_INLINE_HEADER_BEGIN\n#ifndef _GL_UNISTD_INLINE\n# define _GL_UNISTD_INLINE _GL_INLINE\n#endif\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n#ifndef _GL_CXXDEFS_H\n#define _GL_CXXDEFS_H\n\n/* Begin/end the GNULIB_NAMESPACE namespace.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {\n# define _GL_END_NAMESPACE }\n#else\n# define _GL_BEGIN_NAMESPACE\n# define _GL_END_NAMESPACE\n#endif\n\n/* The three most frequent use cases of these macros are:\n\n   * For providing a substitute for a function that is missing on some\n     platforms, but is declared and works fine on the platforms on which\n     it exists:\n\n       #if @GNULIB_FOO@\n       # if !@HAVE_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       # endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on all platforms,\n     but is broken/insufficient and needs to be replaced on some platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n\n   * For providing a replacement for a function that exists on some platforms\n     but is broken/insufficient and needs to be replaced on some of them and\n     is additionally either missing or undeclared on some other platforms:\n\n       #if @GNULIB_FOO@\n       # if @REPLACE_FOO@\n       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n       #   undef foo\n       #   define foo rpl_foo\n       #  endif\n       _GL_FUNCDECL_RPL (foo, ...);\n       _GL_CXXALIAS_RPL (foo, ...);\n       # else\n       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@\n       _GL_FUNCDECL_SYS (foo, ...);\n       #  endif\n       _GL_CXXALIAS_SYS (foo, ...);\n       # endif\n       _GL_CXXALIASWARN (foo);\n       #elif defined GNULIB_POSIXCHECK\n       ...\n       #endif\n*/\n\n/* _GL_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#if defined __cplusplus\n# define _GL_EXTERN_C extern \"C\"\n#else\n# define _GL_EXTERN_C extern\n#endif\n\n/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);\n   declares a replacement function, named rpl_func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \\\n  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)\n#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype rpl_func parameters_and_attributes\n\n/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);\n   declares the system function, named func, with the given prototype,\n   consisting of return type, parameters, and attributes.\n   Example:\n     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)\n                                  _GL_ARG_NONNULL ((1)));\n */\n#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \\\n  _GL_EXTERN_C rettype func parameters_and_attributes\n\n/* _GL_CXXALIAS_RPL (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.\n   Example:\n     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));\n\n   Wrapping rpl_func in an object with an inline conversion operator\n   avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#define _GL_CXXALIAS_RPL(func,rettype,parameters) \\\n  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::rpl_func;                                  \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);\n   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);\n   except that the C function rpl_func may have a slightly different\n   declaration.  A cast is used to silence the \"invalid conversion\" error\n   that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                                     \\\n    {                                                              \\\n      static const struct _gl_ ## func ## _wrapper                 \\\n      {                                                            \\\n        typedef rettype (*type) parameters;                        \\\n                                                                   \\\n        inline operator type () const                              \\\n        {                                                          \\\n          return reinterpret_cast<type>(::rpl_func);               \\\n        }                                                          \\\n      } func = {};                                                 \\\n    }                                                              \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS (func, rettype, parameters);\n   declares a C++ alias called GNULIB_NAMESPACE::func\n   that redirects to the system provided function func, if GNULIB_NAMESPACE\n   is defined.\n   Example:\n     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));\n\n   Wrapping func in an object with an inline conversion operator\n   avoids a reference to func unless GNULIB_NAMESPACE::func is\n   actually used in the program.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS(func,rettype,parameters)            \\\n    namespace GNULIB_NAMESPACE                                \\\n    {                                                         \\\n      static const struct _gl_ ## func ## _wrapper            \\\n      {                                                       \\\n        typedef rettype (*type) parameters;                   \\\n                                                              \\\n        inline operator type () const                         \\\n        {                                                     \\\n          return ::func;                                      \\\n        }                                                     \\\n      } func = {};                                            \\\n    }                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function func may have a slightly different declaration.\n   A cast is used to silence the \"invalid conversion\" error that would\n   otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    namespace GNULIB_NAMESPACE                          \\\n    {                                                   \\\n      static const struct _gl_ ## func ## _wrapper      \\\n      {                                                 \\\n        typedef rettype (*type) parameters;             \\\n                                                        \\\n        inline operator type () const                   \\\n        {                                               \\\n          return reinterpret_cast<type>(::func);        \\\n        }                                               \\\n      } func = {};                                      \\\n    }                                                   \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);\n   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);\n   except that the C function is picked among a set of overloaded functions,\n   namely the one with rettype2 and parameters2.  Two consecutive casts\n   are used to silence the \"cannot find a match\" and \"invalid conversion\"\n   errors that would otherwise occur.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n  /* The outer cast must be a reinterpret_cast.\n     The inner cast: When the function is defined as a set of overloaded\n     functions, it works as a static_cast<>, choosing the designated variant.\n     When the function is defined as a single variant, it works as a\n     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    namespace GNULIB_NAMESPACE                                                \\\n    {                                                                         \\\n      static const struct _gl_ ## func ## _wrapper                            \\\n      {                                                                       \\\n        typedef rettype (*type) parameters;                                   \\\n                                                                              \\\n        inline operator type () const                                         \\\n        {                                                                     \\\n          return reinterpret_cast<type>((rettype2 (*) parameters2)(::func));  \\\n        }                                                                     \\\n      } func = {};                                                            \\\n    }                                                                         \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#else\n# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN (func);\n   causes a warning to be emitted when ::func is used but not when\n   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded\n   variants.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN(func) \\\n   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN_1(func,namespace) \\\n   _GL_CXXALIASWARN_2 (func, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n    _GL_WARN_ON_USE (func, \\\n                     \"The symbol ::\" #func \" refers to the system function. \" \\\n                     \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN_2(func,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN(func) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);\n   causes a warning to be emitted when the given overloaded variant of ::func\n   is used but not when GNULIB_NAMESPACE::func is used.  */\n#if defined __cplusplus && defined GNULIB_NAMESPACE\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \\\n                        GNULIB_NAMESPACE)\n# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \\\n   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)\n/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,\n   we enable the warning only when not optimizing.  */\n# if !__OPTIMIZE__\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \\\n                         \"The symbol ::\" #func \" refers to the system function. \" \\\n                         \"Use \" #namespace \"::\" #func \" instead.\")\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     extern __typeof__ (func) func\n# else\n#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \\\n     _GL_EXTERN_C int _gl_cxxalias_dummy\n# endif\n#else\n# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \\\n    _GL_EXTERN_C int _gl_cxxalias_dummy\n#endif\n\n#endif /* _GL_CXXDEFS_H */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools\n   that the values passed as arguments n, ..., m must be non-NULL pointers.\n   n = 1 stands for the first argument, n = 2 for the second argument etc.  */\n#ifndef _GL_ARG_NONNULL\n# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3\n#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))\n# else\n#  define _GL_ARG_NONNULL(params)\n# endif\n#endif\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n#ifndef _GL_WARN_ON_USE\n\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n/* A compiler attribute is available in gcc versions 4.3.0 and later.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function __attribute__ ((__warning__ (message)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE(function, message) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, \"string\")\n   is like _GL_WARN_ON_USE (function, \"string\"), except that the function is\n   declared with the given prototype, consisting of return type, parameters,\n   and attributes.\n   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does\n   not work in this case.  */\n#ifndef _GL_WARN_ON_USE_CXX\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes \\\n     __attribute__ ((__warning__ (msg)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#ifndef _GL_WARN_EXTERN_C\n# if defined __cplusplus\n#  define _GL_WARN_EXTERN_C extern \"C\"\n# else\n#  define _GL_WARN_EXTERN_C extern\n# endif\n#endif\n\n\n/* Hide some function declarations from <winsock2.h>.  */\n\n#if 0 && 0\n# if !defined _GL_SYS_SOCKET_H\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef socket\n#   define socket              socket_used_without_including_sys_socket_h\n#   undef connect\n#   define connect             connect_used_without_including_sys_socket_h\n#   undef accept\n#   define accept              accept_used_without_including_sys_socket_h\n#   undef bind\n#   define bind                bind_used_without_including_sys_socket_h\n#   undef getpeername\n#   define getpeername         getpeername_used_without_including_sys_socket_h\n#   undef getsockname\n#   define getsockname         getsockname_used_without_including_sys_socket_h\n#   undef getsockopt\n#   define getsockopt          getsockopt_used_without_including_sys_socket_h\n#   undef listen\n#   define listen              listen_used_without_including_sys_socket_h\n#   undef recv\n#   define recv                recv_used_without_including_sys_socket_h\n#   undef send\n#   define send                send_used_without_including_sys_socket_h\n#   undef recvfrom\n#   define recvfrom            recvfrom_used_without_including_sys_socket_h\n#   undef sendto\n#   define sendto              sendto_used_without_including_sys_socket_h\n#   undef setsockopt\n#   define setsockopt          setsockopt_used_without_including_sys_socket_h\n#   undef shutdown\n#   define shutdown            shutdown_used_without_including_sys_socket_h\n#  else\n    _GL_WARN_ON_USE (socket,\n                     \"socket() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (connect,\n                     \"connect() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (accept,\n                     \"accept() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (bind,\n                     \"bind() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (getpeername,\n                     \"getpeername() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (getsockname,\n                     \"getsockname() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (getsockopt,\n                     \"getsockopt() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (listen,\n                     \"listen() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (recv,\n                     \"recv() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (send,\n                     \"send() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (recvfrom,\n                     \"recvfrom() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (sendto,\n                     \"sendto() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (setsockopt,\n                     \"setsockopt() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (shutdown,\n                     \"shutdown() used without including <sys/socket.h>\");\n#  endif\n# endif\n# if !defined _GL_SYS_SELECT_H\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef select\n#   define select              select_used_without_including_sys_select_h\n#  else\n    _GL_WARN_ON_USE (select,\n                     \"select() used without including <sys/select.h>\");\n#  endif\n# endif\n#endif\n\n\n/* OS/2 EMX lacks these macros.  */\n#ifndef STDIN_FILENO\n# define STDIN_FILENO 0\n#endif\n#ifndef STDOUT_FILENO\n# define STDOUT_FILENO 1\n#endif\n#ifndef STDERR_FILENO\n# define STDERR_FILENO 2\n#endif\n\n/* Ensure *_OK macros exist.  */\n#ifndef F_OK\n# define F_OK 0\n# define X_OK 1\n# define W_OK 2\n# define R_OK 4\n#endif\n\n\n/* Declare overridden functions.  */\n\n\n#if defined GNULIB_POSIXCHECK\n/* The access() function is a security risk.  */\n_GL_WARN_ON_USE (access, \"the access function is a security risk - \"\n                 \"use the gnulib module faccessat instead\");\n#endif\n\n\n#if 0\n_GL_CXXALIAS_SYS (chdir, int, (const char *file) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIASWARN (chdir);\n#elif defined GNULIB_POSIXCHECK\n# undef chdir\n# if HAVE_RAW_DECL_CHDIR\n_GL_WARN_ON_USE (chown, \"chdir is not always in <unistd.h> - \"\n                 \"use gnulib module chdir for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Change the owner of FILE to UID (if UID is not -1) and the group of FILE\n   to GID (if GID is not -1).  Follow symbolic links.\n   Return 0 if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/chown.html.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef chown\n#   define chown rpl_chown\n#  endif\n_GL_FUNCDECL_RPL (chown, int, (const char *file, uid_t uid, gid_t gid)\n                              _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (chown, int, (const char *file, uid_t uid, gid_t gid));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (chown, int, (const char *file, uid_t uid, gid_t gid)\n                              _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (chown, int, (const char *file, uid_t uid, gid_t gid));\n# endif\n_GL_CXXALIASWARN (chown);\n#elif defined GNULIB_POSIXCHECK\n# undef chown\n# if HAVE_RAW_DECL_CHOWN\n_GL_WARN_ON_USE (chown, \"chown fails to follow symlinks on some systems and \"\n                 \"doesn't treat a uid or gid of -1 on some systems - \"\n                 \"use gnulib module chown for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n/* Automatically included by modules that need a replacement for close.  */\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef close\n#   define close rpl_close\n#  endif\n_GL_FUNCDECL_RPL (close, int, (int fd));\n_GL_CXXALIAS_RPL (close, int, (int fd));\n# else\n_GL_CXXALIAS_SYS (close, int, (int fd));\n# endif\n_GL_CXXALIASWARN (close);\n#elif 0\n# undef close\n# define close close_used_without_requesting_gnulib_module_close\n#elif defined GNULIB_POSIXCHECK\n# undef close\n/* Assume close is always declared.  */\n_GL_WARN_ON_USE (close, \"close does not portably work on sockets - \"\n                 \"use gnulib module close for portability\");\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define dup rpl_dup\n#  endif\n_GL_FUNCDECL_RPL (dup, int, (int oldfd));\n_GL_CXXALIAS_RPL (dup, int, (int oldfd));\n# else\n_GL_CXXALIAS_SYS (dup, int, (int oldfd));\n# endif\n_GL_CXXALIASWARN (dup);\n#elif defined GNULIB_POSIXCHECK\n# undef dup\n# if HAVE_RAW_DECL_DUP\n_GL_WARN_ON_USE (dup, \"dup is unportable - \"\n                 \"use gnulib module dup for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Copy the file descriptor OLDFD into file descriptor NEWFD.  Do nothing if\n   NEWFD = OLDFD, otherwise close NEWFD first if it is open.\n   Return newfd if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/dup2.html>.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define dup2 rpl_dup2\n#  endif\n_GL_FUNCDECL_RPL (dup2, int, (int oldfd, int newfd));\n_GL_CXXALIAS_RPL (dup2, int, (int oldfd, int newfd));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (dup2, int, (int oldfd, int newfd));\n#  endif\n_GL_CXXALIAS_SYS (dup2, int, (int oldfd, int newfd));\n# endif\n_GL_CXXALIASWARN (dup2);\n#elif defined GNULIB_POSIXCHECK\n# undef dup2\n# if HAVE_RAW_DECL_DUP2\n_GL_WARN_ON_USE (dup2, \"dup2 is unportable - \"\n                 \"use gnulib module dup2 for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Copy the file descriptor OLDFD into file descriptor NEWFD, with the\n   specified flags.\n   The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)\n   and O_TEXT, O_BINARY (defined in \"binary-io.h\").\n   Close NEWFD first if it is open.\n   Return newfd if successful, otherwise -1 and errno set.\n   See the Linux man page at\n   <http://www.kernel.org/doc/man-pages/online/pages/man2/dup3.2.html>.  */\n# if 1\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define dup3 rpl_dup3\n#  endif\n_GL_FUNCDECL_RPL (dup3, int, (int oldfd, int newfd, int flags));\n_GL_CXXALIAS_RPL (dup3, int, (int oldfd, int newfd, int flags));\n# else\n_GL_FUNCDECL_SYS (dup3, int, (int oldfd, int newfd, int flags));\n_GL_CXXALIAS_SYS (dup3, int, (int oldfd, int newfd, int flags));\n# endif\n_GL_CXXALIASWARN (dup3);\n#elif defined GNULIB_POSIXCHECK\n# undef dup3\n# if HAVE_RAW_DECL_DUP3\n_GL_WARN_ON_USE (dup3, \"dup3 is unportable - \"\n                 \"use gnulib module dup3 for portability\");\n# endif\n#endif\n\n\n#if 1\n# if !0\n/* Set of environment variables and values.  An array of strings of the form\n   \"VARIABLE=VALUE\", terminated with a NULL.  */\n#  if defined __APPLE__ && defined __MACH__\n#   include <TargetConditionals.h>\n#   if !TARGET_OS_IPHONE && !TARGET_IPHONE_SIMULATOR\n#    define _GL_USE_CRT_EXTERNS\n#   endif\n#  endif\n#  ifdef _GL_USE_CRT_EXTERNS\n#   include <crt_externs.h>\n#   define environ (*_NSGetEnviron ())\n#  else\n#   ifdef __cplusplus\nextern \"C\" {\n#   endif\nextern char **environ;\n#   ifdef __cplusplus\n}\n#   endif\n#  endif\n# endif\n#elif defined GNULIB_POSIXCHECK\n# if HAVE_RAW_DECL_ENVIRON\n_GL_UNISTD_INLINE char ***\nrpl_environ (void)\n{\n  return &environ;\n}\n_GL_WARN_ON_USE (rpl_environ, \"environ is unportable - \"\n                 \"use gnulib module environ for portability\");\n#  undef environ\n#  define environ (*rpl_environ ())\n# endif\n#endif\n\n\n#if 0\n/* Like access(), except that it uses the effective user id and group id of\n   the current process.  */\n# if !1\n_GL_FUNCDECL_SYS (euidaccess, int, (const char *filename, int mode)\n                                   _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (euidaccess, int, (const char *filename, int mode));\n_GL_CXXALIASWARN (euidaccess);\n# if defined GNULIB_POSIXCHECK\n/* Like access(), this function is a security risk.  */\n_GL_WARN_ON_USE (euidaccess, \"the euidaccess function is a security risk - \"\n                 \"use the gnulib module faccessat instead\");\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef euidaccess\n# if HAVE_RAW_DECL_EUIDACCESS\n_GL_WARN_ON_USE (euidaccess, \"euidaccess is unportable - \"\n                 \"use gnulib module euidaccess for portability\");\n# endif\n#endif\n\n\n#if 0\n# if !1\n_GL_FUNCDECL_SYS (faccessat, int,\n                  (int fd, char const *file, int mode, int flag)\n                  _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (faccessat, int,\n                  (int fd, char const *file, int mode, int flag));\n_GL_CXXALIASWARN (faccessat);\n#elif defined GNULIB_POSIXCHECK\n# undef faccessat\n# if HAVE_RAW_DECL_FACCESSAT\n_GL_WARN_ON_USE (faccessat, \"faccessat is not portable - \"\n                 \"use gnulib module faccessat for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Change the process' current working directory to the directory on which\n   the given file descriptor is open.\n   Return 0 if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/fchdir.html>.  */\n# if ! 1\n_GL_FUNCDECL_SYS (fchdir, int, (int /*fd*/));\n\n/* Gnulib internal hooks needed to maintain the fchdir metadata.  */\n_GL_EXTERN_C int _gl_register_fd (int fd, const char *filename)\n     _GL_ARG_NONNULL ((2));\n_GL_EXTERN_C void _gl_unregister_fd (int fd);\n_GL_EXTERN_C int _gl_register_dup (int oldfd, int newfd);\n_GL_EXTERN_C const char *_gl_directory_name (int fd);\n\n# else\n#  if !1\n_GL_FUNCDECL_SYS (fchdir, int, (int /*fd*/));\n#  endif\n# endif\n_GL_CXXALIAS_SYS (fchdir, int, (int /*fd*/));\n_GL_CXXALIASWARN (fchdir);\n#elif defined GNULIB_POSIXCHECK\n# undef fchdir\n# if HAVE_RAW_DECL_FCHDIR\n_GL_WARN_ON_USE (fchdir, \"fchdir is unportable - \"\n                 \"use gnulib module fchdir for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fchownat\n#   define fchownat rpl_fchownat\n#  endif\n_GL_FUNCDECL_RPL (fchownat, int, (int fd, char const *file,\n                                  uid_t owner, gid_t group, int flag)\n                                 _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (fchownat, int, (int fd, char const *file,\n                                  uid_t owner, gid_t group, int flag));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (fchownat, int, (int fd, char const *file,\n                                  uid_t owner, gid_t group, int flag)\n                                 _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (fchownat, int, (int fd, char const *file,\n                                  uid_t owner, gid_t group, int flag));\n# endif\n_GL_CXXALIASWARN (fchownat);\n#elif defined GNULIB_POSIXCHECK\n# undef fchownat\n# if HAVE_RAW_DECL_FCHOWNAT\n_GL_WARN_ON_USE (fchownat, \"fchownat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Synchronize changes to a file.\n   Return 0 if successful, otherwise -1 and errno set.\n   See POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdatasync.html>.  */\n# if !1 || !1\n_GL_FUNCDECL_SYS (fdatasync, int, (int fd));\n# endif\n_GL_CXXALIAS_SYS (fdatasync, int, (int fd));\n_GL_CXXALIASWARN (fdatasync);\n#elif defined GNULIB_POSIXCHECK\n# undef fdatasync\n# if HAVE_RAW_DECL_FDATASYNC\n_GL_WARN_ON_USE (fdatasync, \"fdatasync is unportable - \"\n                 \"use gnulib module fdatasync for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Synchronize changes, including metadata, to a file.\n   Return 0 if successful, otherwise -1 and errno set.\n   See POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/fsync.html>.  */\n# if !1\n_GL_FUNCDECL_SYS (fsync, int, (int fd));\n# endif\n_GL_CXXALIAS_SYS (fsync, int, (int fd));\n_GL_CXXALIASWARN (fsync);\n#elif defined GNULIB_POSIXCHECK\n# undef fsync\n# if HAVE_RAW_DECL_FSYNC\n_GL_WARN_ON_USE (fsync, \"fsync is unportable - \"\n                 \"use gnulib module fsync for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Change the size of the file to which FD is opened to become equal to LENGTH.\n   Return 0 if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftruncate.html>.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ftruncate\n#   define ftruncate rpl_ftruncate\n#  endif\n_GL_FUNCDECL_RPL (ftruncate, int, (int fd, off_t length));\n_GL_CXXALIAS_RPL (ftruncate, int, (int fd, off_t length));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (ftruncate, int, (int fd, off_t length));\n#  endif\n_GL_CXXALIAS_SYS (ftruncate, int, (int fd, off_t length));\n# endif\n_GL_CXXALIASWARN (ftruncate);\n#elif defined GNULIB_POSIXCHECK\n# undef ftruncate\n# if HAVE_RAW_DECL_FTRUNCATE\n_GL_WARN_ON_USE (ftruncate, \"ftruncate is unportable - \"\n                 \"use gnulib module ftruncate for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Get the name of the current working directory, and put it in SIZE bytes\n   of BUF.\n   Return BUF if successful, or NULL if the directory couldn't be determined\n   or SIZE was too small.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/getcwd.html>.\n   Additionally, the gnulib module 'getcwd' guarantees the following GNU\n   extension: If BUF is NULL, an array is allocated with 'malloc'; the array\n   is SIZE bytes long, unless SIZE == 0, in which case it is as big as\n   necessary.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define getcwd rpl_getcwd\n#  endif\n_GL_FUNCDECL_RPL (getcwd, char *, (char *buf, size_t size));\n_GL_CXXALIAS_RPL (getcwd, char *, (char *buf, size_t size));\n# else\n/* Need to cast, because on mingw, the second parameter is\n                                                   int size.  */\n_GL_CXXALIAS_SYS_CAST (getcwd, char *, (char *buf, size_t size));\n# endif\n_GL_CXXALIASWARN (getcwd);\n#elif defined GNULIB_POSIXCHECK\n# undef getcwd\n# if HAVE_RAW_DECL_GETCWD\n_GL_WARN_ON_USE (getcwd, \"getcwd is unportable - \"\n                 \"use gnulib module getcwd for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Return the NIS domain name of the machine.\n   WARNING! The NIS domain name is unrelated to the fully qualified host name\n            of the machine.  It is also unrelated to email addresses.\n   WARNING! The NIS domain name is usually the empty string or \"(none)\" when\n            not using NIS.\n\n   Put up to LEN bytes of the NIS domain name into NAME.\n   Null terminate it if the name is shorter than LEN.\n   If the NIS domain name is longer than LEN, set errno = EINVAL and return -1.\n   Return 0 if successful, otherwise set errno and return -1.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getdomainname\n#   define getdomainname rpl_getdomainname\n#  endif\n_GL_FUNCDECL_RPL (getdomainname, int, (char *name, size_t len)\n                                      _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (getdomainname, int, (char *name, size_t len));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (getdomainname, int, (char *name, size_t len)\n                                      _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (getdomainname, int, (char *name, size_t len));\n# endif\n_GL_CXXALIASWARN (getdomainname);\n#elif defined GNULIB_POSIXCHECK\n# undef getdomainname\n# if HAVE_RAW_DECL_GETDOMAINNAME\n_GL_WARN_ON_USE (getdomainname, \"getdomainname is unportable - \"\n                 \"use gnulib module getdomainname for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Return the maximum number of file descriptors in the current process.\n   In POSIX, this is same as sysconf (_SC_OPEN_MAX).  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getdtablesize\n#   define getdtablesize rpl_getdtablesize\n#  endif\n_GL_FUNCDECL_RPL (getdtablesize, int, (void));\n_GL_CXXALIAS_RPL (getdtablesize, int, (void));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (getdtablesize, int, (void));\n#  endif\n_GL_CXXALIAS_SYS (getdtablesize, int, (void));\n# endif\n_GL_CXXALIASWARN (getdtablesize);\n#elif defined GNULIB_POSIXCHECK\n# undef getdtablesize\n# if HAVE_RAW_DECL_GETDTABLESIZE\n_GL_WARN_ON_USE (getdtablesize, \"getdtablesize is unportable - \"\n                 \"use gnulib module getdtablesize for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Return the supplemental groups that the current process belongs to.\n   It is unspecified whether the effective group id is in the list.\n   If N is 0, return the group count; otherwise, N describes how many\n   entries are available in GROUPS.  Return -1 and set errno if N is\n   not 0 and not large enough.  Fails with ENOSYS on some systems.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getgroups\n#   define getgroups rpl_getgroups\n#  endif\n_GL_FUNCDECL_RPL (getgroups, int, (int n, gid_t *groups));\n_GL_CXXALIAS_RPL (getgroups, int, (int n, gid_t *groups));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (getgroups, int, (int n, gid_t *groups));\n#  endif\n_GL_CXXALIAS_SYS (getgroups, int, (int n, gid_t *groups));\n# endif\n_GL_CXXALIASWARN (getgroups);\n#elif defined GNULIB_POSIXCHECK\n# undef getgroups\n# if HAVE_RAW_DECL_GETGROUPS\n_GL_WARN_ON_USE (getgroups, \"getgroups is unportable - \"\n                 \"use gnulib module getgroups for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Return the standard host name of the machine.\n   WARNING! The host name may or may not be fully qualified.\n\n   Put up to LEN bytes of the host name into NAME.\n   Null terminate it if the name is shorter than LEN.\n   If the host name is longer than LEN, set errno = EINVAL and return -1.\n   Return 0 if successful, otherwise set errno and return -1.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef gethostname\n#   define gethostname rpl_gethostname\n#  endif\n_GL_FUNCDECL_RPL (gethostname, int, (char *name, size_t len)\n                                    _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (gethostname, int, (char *name, size_t len));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (gethostname, int, (char *name, size_t len)\n                                    _GL_ARG_NONNULL ((1)));\n#  endif\n/* Need to cast, because on Solaris 10 and OSF/1 5.1 systems, the second\n   parameter is\n                                                      int len.  */\n_GL_CXXALIAS_SYS_CAST (gethostname, int, (char *name, size_t len));\n# endif\n_GL_CXXALIASWARN (gethostname);\n#elif 0\n# undef gethostname\n# define gethostname gethostname_used_without_requesting_gnulib_module_gethostname\n#elif defined GNULIB_POSIXCHECK\n# undef gethostname\n# if HAVE_RAW_DECL_GETHOSTNAME\n_GL_WARN_ON_USE (gethostname, \"gethostname is unportable - \"\n                 \"use gnulib module gethostname for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Returns the user's login name, or NULL if it cannot be found.  Upon error,\n   returns NULL with errno set.\n\n   See <http://www.opengroup.org/susv3xsh/getlogin.html>.\n\n   Most programs don't need to use this function, because the information is\n   available through environment variables:\n     ${LOGNAME-$USER}        on Unix platforms,\n     $USERNAME               on native Windows platforms.\n */\n# if !1\n_GL_FUNCDECL_SYS (getlogin, char *, (void));\n# endif\n_GL_CXXALIAS_SYS (getlogin, char *, (void));\n_GL_CXXALIASWARN (getlogin);\n#elif defined GNULIB_POSIXCHECK\n# undef getlogin\n# if HAVE_RAW_DECL_GETLOGIN\n_GL_WARN_ON_USE (getlogin, \"getlogin is unportable - \"\n                 \"use gnulib module getlogin for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Copies the user's login name to NAME.\n   The array pointed to by NAME has room for SIZE bytes.\n\n   Returns 0 if successful.  Upon error, an error number is returned, or -1 in\n   the case that the login name cannot be found but no specific error is\n   provided (this case is hopefully rare but is left open by the POSIX spec).\n\n   See <http://www.opengroup.org/susv3xsh/getlogin.html>.\n\n   Most programs don't need to use this function, because the information is\n   available through environment variables:\n     ${LOGNAME-$USER}        on Unix platforms,\n     $USERNAME               on native Windows platforms.\n */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define getlogin_r rpl_getlogin_r\n#  endif\n_GL_FUNCDECL_RPL (getlogin_r, int, (char *name, size_t size)\n                                   _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (getlogin_r, int, (char *name, size_t size));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (getlogin_r, int, (char *name, size_t size)\n                                   _GL_ARG_NONNULL ((1)));\n#  endif\n/* Need to cast, because on Solaris 10 systems, the second argument is\n                                                     int size.  */\n_GL_CXXALIAS_SYS_CAST (getlogin_r, int, (char *name, size_t size));\n# endif\n_GL_CXXALIASWARN (getlogin_r);\n#elif defined GNULIB_POSIXCHECK\n# undef getlogin_r\n# if HAVE_RAW_DECL_GETLOGIN_R\n_GL_WARN_ON_USE (getlogin_r, \"getlogin_r is unportable - \"\n                 \"use gnulib module getlogin_r for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define getpagesize rpl_getpagesize\n#  endif\n_GL_FUNCDECL_RPL (getpagesize, int, (void));\n_GL_CXXALIAS_RPL (getpagesize, int, (void));\n# else\n#  if !1\n#   if !defined getpagesize\n/* This is for POSIX systems.  */\n#    if !defined _gl_getpagesize && defined _SC_PAGESIZE\n#     if ! (defined __VMS && __VMS_VER < 70000000)\n#      define _gl_getpagesize() sysconf (_SC_PAGESIZE)\n#     endif\n#    endif\n/* This is for older VMS.  */\n#    if !defined _gl_getpagesize && defined __VMS\n#     ifdef __ALPHA\n#      define _gl_getpagesize() 8192\n#     else\n#      define _gl_getpagesize() 512\n#     endif\n#    endif\n/* This is for BeOS.  */\n#    if !defined _gl_getpagesize && 0\n#     include <OS.h>\n#     if defined B_PAGE_SIZE\n#      define _gl_getpagesize() B_PAGE_SIZE\n#     endif\n#    endif\n/* This is for AmigaOS4.0.  */\n#    if !defined _gl_getpagesize && defined __amigaos4__\n#     define _gl_getpagesize() 2048\n#    endif\n/* This is for older Unix systems.  */\n#    if !defined _gl_getpagesize && 0\n#     include <sys/param.h>\n#     ifdef EXEC_PAGESIZE\n#      define _gl_getpagesize() EXEC_PAGESIZE\n#     else\n#      ifdef NBPG\n#       ifndef CLSIZE\n#        define CLSIZE 1\n#       endif\n#       define _gl_getpagesize() (NBPG * CLSIZE)\n#      else\n#       ifdef NBPC\n#        define _gl_getpagesize() NBPC\n#       endif\n#      endif\n#     endif\n#    endif\n#    if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#     define getpagesize() _gl_getpagesize ()\n#    else\n#     if !GNULIB_defined_getpagesize_function\n_GL_UNISTD_INLINE int\ngetpagesize ()\n{\n  return _gl_getpagesize ();\n}\n#      define GNULIB_defined_getpagesize_function 1\n#     endif\n#    endif\n#   endif\n#  endif\n/* Need to cast, because on Cygwin 1.5.x systems, the return type is size_t.  */\n_GL_CXXALIAS_SYS_CAST (getpagesize, int, (void));\n# endif\n# if 1\n_GL_CXXALIASWARN (getpagesize);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef getpagesize\n# if HAVE_RAW_DECL_GETPAGESIZE\n_GL_WARN_ON_USE (getpagesize, \"getpagesize is unportable - \"\n                 \"use gnulib module getpagesize for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Return the next valid login shell on the system, or NULL when the end of\n   the list has been reached.  */\n# if !1\n_GL_FUNCDECL_SYS (getusershell, char *, (void));\n# endif\n_GL_CXXALIAS_SYS (getusershell, char *, (void));\n_GL_CXXALIASWARN (getusershell);\n#elif defined GNULIB_POSIXCHECK\n# undef getusershell\n# if HAVE_RAW_DECL_GETUSERSHELL\n_GL_WARN_ON_USE (getusershell, \"getusershell is unportable - \"\n                 \"use gnulib module getusershell for portability\");\n# endif\n#endif\n\n#if 0\n/* Rewind to pointer that is advanced at each getusershell() call.  */\n# if !1\n_GL_FUNCDECL_SYS (setusershell, void, (void));\n# endif\n_GL_CXXALIAS_SYS (setusershell, void, (void));\n_GL_CXXALIASWARN (setusershell);\n#elif defined GNULIB_POSIXCHECK\n# undef setusershell\n# if HAVE_RAW_DECL_SETUSERSHELL\n_GL_WARN_ON_USE (setusershell, \"setusershell is unportable - \"\n                 \"use gnulib module getusershell for portability\");\n# endif\n#endif\n\n#if 0\n/* Free the pointer that is advanced at each getusershell() call and\n   associated resources.  */\n# if !1\n_GL_FUNCDECL_SYS (endusershell, void, (void));\n# endif\n_GL_CXXALIAS_SYS (endusershell, void, (void));\n_GL_CXXALIASWARN (endusershell);\n#elif defined GNULIB_POSIXCHECK\n# undef endusershell\n# if HAVE_RAW_DECL_ENDUSERSHELL\n_GL_WARN_ON_USE (endusershell, \"endusershell is unportable - \"\n                 \"use gnulib module getusershell for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Determine whether group id is in calling user's group list.  */\n# if !1\n_GL_FUNCDECL_SYS (group_member, int, (gid_t gid));\n# endif\n_GL_CXXALIAS_SYS (group_member, int, (gid_t gid));\n_GL_CXXALIASWARN (group_member);\n#elif defined GNULIB_POSIXCHECK\n# undef group_member\n# if HAVE_RAW_DECL_GROUP_MEMBER\n_GL_WARN_ON_USE (group_member, \"group_member is unportable - \"\n                 \"use gnulib module group-member for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef isatty\n#   define isatty rpl_isatty\n#  endif\n_GL_FUNCDECL_RPL (isatty, int, (int fd));\n_GL_CXXALIAS_RPL (isatty, int, (int fd));\n# else\n_GL_CXXALIAS_SYS (isatty, int, (int fd));\n# endif\n_GL_CXXALIASWARN (isatty);\n#elif defined GNULIB_POSIXCHECK\n# undef isatty\n# if HAVE_RAW_DECL_ISATTY\n_GL_WARN_ON_USE (isatty, \"isatty has portability problems on native Windows - \"\n                 \"use gnulib module isatty for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Change the owner of FILE to UID (if UID is not -1) and the group of FILE\n   to GID (if GID is not -1).  Do not follow symbolic links.\n   Return 0 if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/lchown.html>.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef lchown\n#   define lchown rpl_lchown\n#  endif\n_GL_FUNCDECL_RPL (lchown, int, (char const *file, uid_t owner, gid_t group)\n                               _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (lchown, int, (char const *file, uid_t owner, gid_t group));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (lchown, int, (char const *file, uid_t owner, gid_t group)\n                               _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (lchown, int, (char const *file, uid_t owner, gid_t group));\n# endif\n_GL_CXXALIASWARN (lchown);\n#elif defined GNULIB_POSIXCHECK\n# undef lchown\n# if HAVE_RAW_DECL_LCHOWN\n_GL_WARN_ON_USE (lchown, \"lchown is unportable to pre-POSIX.1-2001 systems - \"\n                 \"use gnulib module lchown for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Create a new hard link for an existing file.\n   Return 0 if successful, otherwise -1 and errno set.\n   See POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/link.html>.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define link rpl_link\n#  endif\n_GL_FUNCDECL_RPL (link, int, (const char *path1, const char *path2)\n                             _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (link, int, (const char *path1, const char *path2));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (link, int, (const char *path1, const char *path2)\n                             _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (link, int, (const char *path1, const char *path2));\n# endif\n_GL_CXXALIASWARN (link);\n#elif defined GNULIB_POSIXCHECK\n# undef link\n# if HAVE_RAW_DECL_LINK\n_GL_WARN_ON_USE (link, \"link is unportable - \"\n                 \"use gnulib module link for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Create a new hard link for an existing file, relative to two\n   directories.  FLAG controls whether symlinks are followed.\n   Return 0 if successful, otherwise -1 and errno set.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef linkat\n#   define linkat rpl_linkat\n#  endif\n_GL_FUNCDECL_RPL (linkat, int,\n                  (int fd1, const char *path1, int fd2, const char *path2,\n                   int flag)\n                  _GL_ARG_NONNULL ((2, 4)));\n_GL_CXXALIAS_RPL (linkat, int,\n                  (int fd1, const char *path1, int fd2, const char *path2,\n                   int flag));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (linkat, int,\n                  (int fd1, const char *path1, int fd2, const char *path2,\n                   int flag)\n                  _GL_ARG_NONNULL ((2, 4)));\n#  endif\n_GL_CXXALIAS_SYS (linkat, int,\n                  (int fd1, const char *path1, int fd2, const char *path2,\n                   int flag));\n# endif\n_GL_CXXALIASWARN (linkat);\n#elif defined GNULIB_POSIXCHECK\n# undef linkat\n# if HAVE_RAW_DECL_LINKAT\n_GL_WARN_ON_USE (linkat, \"linkat is unportable - \"\n                 \"use gnulib module linkat for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Set the offset of FD relative to SEEK_SET, SEEK_CUR, or SEEK_END.\n   Return the new offset if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/lseek.html>.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define lseek rpl_lseek\n#  endif\n_GL_FUNCDECL_RPL (lseek, off_t, (int fd, off_t offset, int whence));\n_GL_CXXALIAS_RPL (lseek, off_t, (int fd, off_t offset, int whence));\n# else\n_GL_CXXALIAS_SYS (lseek, off_t, (int fd, off_t offset, int whence));\n# endif\n_GL_CXXALIASWARN (lseek);\n#elif defined GNULIB_POSIXCHECK\n# undef lseek\n# if HAVE_RAW_DECL_LSEEK\n_GL_WARN_ON_USE (lseek, \"lseek does not fail with ESPIPE on pipes on some \"\n                 \"systems - use gnulib module lseek for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Create a pipe, defaulting to O_BINARY mode.\n   Store the read-end as fd[0] and the write-end as fd[1].\n   Return 0 upon success, or -1 with errno set upon failure.  */\n# if !1\n_GL_FUNCDECL_SYS (pipe, int, (int fd[2]) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (pipe, int, (int fd[2]));\n_GL_CXXALIASWARN (pipe);\n#elif defined GNULIB_POSIXCHECK\n# undef pipe\n# if HAVE_RAW_DECL_PIPE\n_GL_WARN_ON_USE (pipe, \"pipe is unportable - \"\n                 \"use gnulib module pipe-posix for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Create a pipe, applying the given flags when opening the read-end of the\n   pipe and the write-end of the pipe.\n   The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)\n   and O_TEXT, O_BINARY (defined in \"binary-io.h\").\n   Store the read-end as fd[0] and the write-end as fd[1].\n   Return 0 upon success, or -1 with errno set upon failure.\n   See also the Linux man page at\n   <http://www.kernel.org/doc/man-pages/online/pages/man2/pipe2.2.html>.  */\n# if 1\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define pipe2 rpl_pipe2\n#  endif\n_GL_FUNCDECL_RPL (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (pipe2, int, (int fd[2], int flags));\n# else\n_GL_FUNCDECL_SYS (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_SYS (pipe2, int, (int fd[2], int flags));\n# endif\n_GL_CXXALIASWARN (pipe2);\n#elif defined GNULIB_POSIXCHECK\n# undef pipe2\n# if HAVE_RAW_DECL_PIPE2\n_GL_WARN_ON_USE (pipe2, \"pipe2 is unportable - \"\n                 \"use gnulib module pipe2 for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Read at most BUFSIZE bytes from FD into BUF, starting at OFFSET.\n   Return the number of bytes placed into BUF if successful, otherwise\n   set errno and return -1.  0 indicates EOF.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/pread.html>.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef pread\n#   define pread rpl_pread\n#  endif\n_GL_FUNCDECL_RPL (pread, ssize_t,\n                  (int fd, void *buf, size_t bufsize, off_t offset)\n                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (pread, ssize_t,\n                  (int fd, void *buf, size_t bufsize, off_t offset));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (pread, ssize_t,\n                  (int fd, void *buf, size_t bufsize, off_t offset)\n                  _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (pread, ssize_t,\n                  (int fd, void *buf, size_t bufsize, off_t offset));\n# endif\n_GL_CXXALIASWARN (pread);\n#elif defined GNULIB_POSIXCHECK\n# undef pread\n# if HAVE_RAW_DECL_PREAD\n_GL_WARN_ON_USE (pread, \"pread is unportable - \"\n                 \"use gnulib module pread for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Write at most BUFSIZE bytes from BUF into FD, starting at OFFSET.\n   Return the number of bytes written if successful, otherwise\n   set errno and return -1.  0 indicates nothing written.  See the\n   POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/pwrite.html>.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef pwrite\n#   define pwrite rpl_pwrite\n#  endif\n_GL_FUNCDECL_RPL (pwrite, ssize_t,\n                  (int fd, const void *buf, size_t bufsize, off_t offset)\n                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (pwrite, ssize_t,\n                  (int fd, const void *buf, size_t bufsize, off_t offset));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (pwrite, ssize_t,\n                  (int fd, const void *buf, size_t bufsize, off_t offset)\n                  _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (pwrite, ssize_t,\n                  (int fd, const void *buf, size_t bufsize, off_t offset));\n# endif\n_GL_CXXALIASWARN (pwrite);\n#elif defined GNULIB_POSIXCHECK\n# undef pwrite\n# if HAVE_RAW_DECL_PWRITE\n_GL_WARN_ON_USE (pwrite, \"pwrite is unportable - \"\n                 \"use gnulib module pwrite for portability\");\n# endif\n#endif\n\n\n#if 1\n/* Read up to COUNT bytes from file descriptor FD into the buffer starting\n   at BUF.  See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/read.html>.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef read\n#   define read rpl_read\n#  endif\n_GL_FUNCDECL_RPL (read, ssize_t, (int fd, void *buf, size_t count)\n                                 _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (read, ssize_t, (int fd, void *buf, size_t count));\n# else\n/* Need to cast, because on mingw, the third parameter is\n                                                          unsigned int count\n   and the return type is 'int'.  */\n_GL_CXXALIAS_SYS_CAST (read, ssize_t, (int fd, void *buf, size_t count));\n# endif\n_GL_CXXALIASWARN (read);\n#endif\n\n\n#if 1\n/* Read the contents of the symbolic link FILE and place the first BUFSIZE\n   bytes of it into BUF.  Return the number of bytes placed into BUF if\n   successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/readlink.html>.  */\n# if 1\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define readlink rpl_readlink\n#  endif\n_GL_FUNCDECL_RPL (readlink, ssize_t,\n                  (const char *file, char *buf, size_t bufsize)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (readlink, ssize_t,\n                  (const char *file, char *buf, size_t bufsize));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (readlink, ssize_t,\n                  (const char *file, char *buf, size_t bufsize)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (readlink, ssize_t,\n                  (const char *file, char *buf, size_t bufsize));\n# endif\n_GL_CXXALIASWARN (readlink);\n#elif defined GNULIB_POSIXCHECK\n# undef readlink\n# if HAVE_RAW_DECL_READLINK\n_GL_WARN_ON_USE (readlink, \"readlink is unportable - \"\n                 \"use gnulib module readlink for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define readlinkat rpl_readlinkat\n#  endif\n_GL_FUNCDECL_RPL (readlinkat, ssize_t,\n                  (int fd, char const *file, char *buf, size_t len)\n                  _GL_ARG_NONNULL ((2, 3)));\n_GL_CXXALIAS_RPL (readlinkat, ssize_t,\n                  (int fd, char const *file, char *buf, size_t len));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (readlinkat, ssize_t,\n                  (int fd, char const *file, char *buf, size_t len)\n                  _GL_ARG_NONNULL ((2, 3)));\n#  endif\n_GL_CXXALIAS_SYS (readlinkat, ssize_t,\n                  (int fd, char const *file, char *buf, size_t len));\n# endif\n_GL_CXXALIASWARN (readlinkat);\n#elif defined GNULIB_POSIXCHECK\n# undef readlinkat\n# if HAVE_RAW_DECL_READLINKAT\n_GL_WARN_ON_USE (readlinkat, \"readlinkat is not portable - \"\n                 \"use gnulib module readlinkat for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Remove the directory DIR.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define rmdir rpl_rmdir\n#  endif\n_GL_FUNCDECL_RPL (rmdir, int, (char const *name) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (rmdir, int, (char const *name));\n# else\n_GL_CXXALIAS_SYS (rmdir, int, (char const *name));\n# endif\n_GL_CXXALIASWARN (rmdir);\n#elif defined GNULIB_POSIXCHECK\n# undef rmdir\n# if HAVE_RAW_DECL_RMDIR\n_GL_WARN_ON_USE (rmdir, \"rmdir is unportable - \"\n                 \"use gnulib module rmdir for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Set the host name of the machine.\n   The host name may or may not be fully qualified.\n\n   Put LEN bytes of NAME into the host name.\n   Return 0 if successful, otherwise, set errno and return -1.\n\n   Platforms with no ability to set the hostname return -1 and set\n   errno = ENOSYS.  */\n# if !1 || !1\n_GL_FUNCDECL_SYS (sethostname, int, (const char *name, size_t len)\n                                    _GL_ARG_NONNULL ((1)));\n# endif\n/* Need to cast, because on Solaris 11 2011-10, Mac OS X 10.5, IRIX 6.5\n   and FreeBSD 6.4 the second parameter is int.  On Solaris 11\n   2011-10, the first parameter is not const.  */\n_GL_CXXALIAS_SYS_CAST (sethostname, int, (const char *name, size_t len));\n_GL_CXXALIASWARN (sethostname);\n#elif defined GNULIB_POSIXCHECK\n# undef sethostname\n# if HAVE_RAW_DECL_SETHOSTNAME\n_GL_WARN_ON_USE (sethostname, \"sethostname is unportable - \"\n                 \"use gnulib module sethostname for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Pause the execution of the current thread for N seconds.\n   Returns the number of seconds left to sleep.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/sleep.html>.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef sleep\n#   define sleep rpl_sleep\n#  endif\n_GL_FUNCDECL_RPL (sleep, unsigned int, (unsigned int n));\n_GL_CXXALIAS_RPL (sleep, unsigned int, (unsigned int n));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (sleep, unsigned int, (unsigned int n));\n#  endif\n_GL_CXXALIAS_SYS (sleep, unsigned int, (unsigned int n));\n# endif\n_GL_CXXALIASWARN (sleep);\n#elif defined GNULIB_POSIXCHECK\n# undef sleep\n# if HAVE_RAW_DECL_SLEEP\n_GL_WARN_ON_USE (sleep, \"sleep is unportable - \"\n                 \"use gnulib module sleep for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef symlink\n#   define symlink rpl_symlink\n#  endif\n_GL_FUNCDECL_RPL (symlink, int, (char const *contents, char const *file)\n                                _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (symlink, int, (char const *contents, char const *file));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (symlink, int, (char const *contents, char const *file)\n                                _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (symlink, int, (char const *contents, char const *file));\n# endif\n_GL_CXXALIASWARN (symlink);\n#elif defined GNULIB_POSIXCHECK\n# undef symlink\n# if HAVE_RAW_DECL_SYMLINK\n_GL_WARN_ON_USE (symlink, \"symlink is not portable - \"\n                 \"use gnulib module symlink for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef symlinkat\n#   define symlinkat rpl_symlinkat\n#  endif\n_GL_FUNCDECL_RPL (symlinkat, int,\n                  (char const *contents, int fd, char const *file)\n                  _GL_ARG_NONNULL ((1, 3)));\n_GL_CXXALIAS_RPL (symlinkat, int,\n                  (char const *contents, int fd, char const *file));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (symlinkat, int,\n                  (char const *contents, int fd, char const *file)\n                  _GL_ARG_NONNULL ((1, 3)));\n#  endif\n_GL_CXXALIAS_SYS (symlinkat, int,\n                  (char const *contents, int fd, char const *file));\n# endif\n_GL_CXXALIASWARN (symlinkat);\n#elif defined GNULIB_POSIXCHECK\n# undef symlinkat\n# if HAVE_RAW_DECL_SYMLINKAT\n_GL_WARN_ON_USE (symlinkat, \"symlinkat is not portable - \"\n                 \"use gnulib module symlinkat for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Store at most BUFLEN characters of the pathname of the terminal FD is\n   open on in BUF.  Return 0 on success, otherwise an error number.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ttyname_r\n#   define ttyname_r rpl_ttyname_r\n#  endif\n_GL_FUNCDECL_RPL (ttyname_r, int,\n                  (int fd, char *buf, size_t buflen) _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (ttyname_r, int,\n                  (int fd, char *buf, size_t buflen));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (ttyname_r, int,\n                  (int fd, char *buf, size_t buflen) _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (ttyname_r, int,\n                  (int fd, char *buf, size_t buflen));\n# endif\n_GL_CXXALIASWARN (ttyname_r);\n#elif defined GNULIB_POSIXCHECK\n# undef ttyname_r\n# if HAVE_RAW_DECL_TTYNAME_R\n_GL_WARN_ON_USE (ttyname_r, \"ttyname_r is not portable - \"\n                 \"use gnulib module ttyname_r for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef unlink\n#   define unlink rpl_unlink\n#  endif\n_GL_FUNCDECL_RPL (unlink, int, (char const *file) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (unlink, int, (char const *file));\n# else\n_GL_CXXALIAS_SYS (unlink, int, (char const *file));\n# endif\n_GL_CXXALIASWARN (unlink);\n#elif defined GNULIB_POSIXCHECK\n# undef unlink\n# if HAVE_RAW_DECL_UNLINK\n_GL_WARN_ON_USE (unlink, \"unlink is not portable - \"\n                 \"use gnulib module unlink for portability\");\n# endif\n#endif\n\n\n#if 0\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef unlinkat\n#   define unlinkat rpl_unlinkat\n#  endif\n_GL_FUNCDECL_RPL (unlinkat, int, (int fd, char const *file, int flag)\n                                 _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (unlinkat, int, (int fd, char const *file, int flag));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (unlinkat, int, (int fd, char const *file, int flag)\n                                 _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (unlinkat, int, (int fd, char const *file, int flag));\n# endif\n_GL_CXXALIASWARN (unlinkat);\n#elif defined GNULIB_POSIXCHECK\n# undef unlinkat\n# if HAVE_RAW_DECL_UNLINKAT\n_GL_WARN_ON_USE (unlinkat, \"unlinkat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Pause the execution of the current thread for N microseconds.\n   Returns 0 on completion, or -1 on range error.\n   See the POSIX:2001 specification\n   <http://www.opengroup.org/susv3xsh/usleep.html>.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef usleep\n#   define usleep rpl_usleep\n#  endif\n_GL_FUNCDECL_RPL (usleep, int, (useconds_t n));\n_GL_CXXALIAS_RPL (usleep, int, (useconds_t n));\n# else\n#  if !1\n_GL_FUNCDECL_SYS (usleep, int, (useconds_t n));\n#  endif\n_GL_CXXALIAS_SYS (usleep, int, (useconds_t n));\n# endif\n_GL_CXXALIASWARN (usleep);\n#elif defined GNULIB_POSIXCHECK\n# undef usleep\n# if HAVE_RAW_DECL_USLEEP\n_GL_WARN_ON_USE (usleep, \"usleep is unportable - \"\n                 \"use gnulib module usleep for portability\");\n# endif\n#endif\n\n\n#if 0\n/* Write up to COUNT bytes starting at BUF to file descriptor FD.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/write.html>.  */\n# if 0\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef write\n#   define write rpl_write\n#  endif\n_GL_FUNCDECL_RPL (write, ssize_t, (int fd, const void *buf, size_t count)\n                                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (write, ssize_t, (int fd, const void *buf, size_t count));\n# else\n/* Need to cast, because on mingw, the third parameter is\n                                                             unsigned int count\n   and the return type is 'int'.  */\n_GL_CXXALIAS_SYS_CAST (write, ssize_t, (int fd, const void *buf, size_t count));\n# endif\n_GL_CXXALIASWARN (write);\n#endif\n\n_GL_INLINE_HEADER_END\n\n#endif /* _GL_UNISTD_H */\n#endif /* _GL_INCLUDING_UNISTD_H */\n#endif /* _GL_UNISTD_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/unistd.in.h",
    "content": "/* Substitute for and wrapper around <unistd.h>.\n   Copyright (C) 2003-2017 Free Software Foundation, Inc.\n\n   This program is free software; you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3, or (at your option)\n   any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _@GUARD_PREFIX@_UNISTD_H\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n#ifdef _GL_INCLUDING_UNISTD_H\n/* Special invocation convention:\n   - On Mac OS X 10.3.9 we have a sequence of nested includes\n     <unistd.h> -> <signal.h> -> <pthread.h> -> <unistd.h>\n     In this situation, the functions are not yet declared, therefore we cannot\n     provide the C++ aliases.  */\n\n#@INCLUDE_NEXT@ @NEXT_UNISTD_H@\n\n#else\n/* Normal invocation convention.  */\n\n/* The include_next requires a split double-inclusion guard.  */\n#if @HAVE_UNISTD_H@\n# define _GL_INCLUDING_UNISTD_H\n# @INCLUDE_NEXT@ @NEXT_UNISTD_H@\n# undef _GL_INCLUDING_UNISTD_H\n#endif\n\n/* Get all possible declarations of gethostname().  */\n#if @GNULIB_GETHOSTNAME@ && @UNISTD_H_HAVE_WINSOCK2_H@ \\\n  && !defined _GL_INCLUDING_WINSOCK2_H\n# define _GL_INCLUDING_WINSOCK2_H\n# include <winsock2.h>\n# undef _GL_INCLUDING_WINSOCK2_H\n#endif\n\n#if !defined _@GUARD_PREFIX@_UNISTD_H && !defined _GL_INCLUDING_WINSOCK2_H\n#define _@GUARD_PREFIX@_UNISTD_H\n\n/* NetBSD 5.0 mis-defines NULL.  Also get size_t.  */\n#include <stddef.h>\n\n/* mingw doesn't define the SEEK_* or *_FILENO macros in <unistd.h>.  */\n/* MSVC declares 'unlink' in <stdio.h>, not in <unistd.h>.  We must include\n   it before we  #define unlink rpl_unlink.  */\n/* Cygwin 1.7.1 declares symlinkat in <stdio.h>, not in <unistd.h>.  */\n/* But avoid namespace pollution on glibc systems.  */\n#if (!(defined SEEK_CUR && defined SEEK_END && defined SEEK_SET) \\\n     || ((@GNULIB_UNLINK@ || defined GNULIB_POSIXCHECK) \\\n         && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)) \\\n     || ((@GNULIB_SYMLINKAT@ || defined GNULIB_POSIXCHECK) \\\n         && defined __CYGWIN__)) \\\n    && ! defined __GLIBC__\n# include <stdio.h>\n#endif\n\n/* Cygwin 1.7.1 declares unlinkat in <fcntl.h>, not in <unistd.h>.  */\n/* But avoid namespace pollution on glibc systems.  */\n#if (@GNULIB_UNLINKAT@ || defined GNULIB_POSIXCHECK) && defined __CYGWIN__ \\\n    && ! defined __GLIBC__\n# include <fcntl.h>\n#endif\n\n/* mingw fails to declare _exit in <unistd.h>.  */\n/* mingw, MSVC, BeOS, Haiku declare environ in <stdlib.h>, not in\n   <unistd.h>.  */\n/* Solaris declares getcwd not only in <unistd.h> but also in <stdlib.h>.  */\n/* OSF Tru64 Unix cannot see gnulib rpl_strtod when system <stdlib.h> is\n   included here.  */\n/* But avoid namespace pollution on glibc systems.  */\n#if !defined __GLIBC__ && !defined __osf__\n# define __need_system_stdlib_h\n# include <stdlib.h>\n# undef __need_system_stdlib_h\n#endif\n\n/* Native Windows platforms declare chdir, getcwd, rmdir in\n   <io.h> and/or <direct.h>, not in <unistd.h>.\n   They also declare access(), chmod(), close(), dup(), dup2(), isatty(),\n   lseek(), read(), unlink(), write() in <io.h>.  */\n#if ((@GNULIB_CHDIR@ || @GNULIB_GETCWD@ || @GNULIB_RMDIR@ \\\n      || defined GNULIB_POSIXCHECK) \\\n     && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__))\n# include <io.h>     /* mingw32, mingw64 */\n# include <direct.h> /* mingw64, MSVC 9 */\n#elif (@GNULIB_CLOSE@ || @GNULIB_DUP@ || @GNULIB_DUP2@ || @GNULIB_ISATTY@ \\\n       || @GNULIB_LSEEK@ || @GNULIB_READ@ || @GNULIB_UNLINK@ || @GNULIB_WRITE@ \\\n       || defined GNULIB_POSIXCHECK) \\\n      && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)\n# include <io.h>\n#endif\n\n/* AIX and OSF/1 5.1 declare getdomainname in <netdb.h>, not in <unistd.h>.\n   NonStop Kernel declares gethostname in <netdb.h>, not in <unistd.h>.  */\n/* But avoid namespace pollution on glibc systems.  */\n#if ((@GNULIB_GETDOMAINNAME@ && (defined _AIX || defined __osf__)) \\\n     || (@GNULIB_GETHOSTNAME@ && defined __TANDEM)) \\\n    && !defined __GLIBC__\n# include <netdb.h>\n#endif\n\n/* MSVC defines off_t in <sys/types.h>.\n   May also define off_t to a 64-bit type on native Windows.  */\n#if !@HAVE_UNISTD_H@ || @WINDOWS_64_BIT_OFF_T@\n/* Get off_t.  */\n# include <sys/types.h>\n#endif\n\n#if (@GNULIB_READ@ || @GNULIB_WRITE@ \\\n     || @GNULIB_READLINK@ || @GNULIB_READLINKAT@ \\\n     || @GNULIB_PREAD@ || @GNULIB_PWRITE@ || defined GNULIB_POSIXCHECK)\n/* Get ssize_t.  */\n# include <sys/types.h>\n#endif\n\n/* Get getopt(), optarg, optind, opterr, optopt.\n   But avoid namespace pollution on glibc systems.  */\n#if @GNULIB_UNISTD_H_GETOPT@ && !defined __GLIBC__ && !defined _GL_SYSTEM_GETOPT\n# define __need_getopt\n# include <getopt.h>\n#endif\n\n#ifndef _GL_INLINE_HEADER_BEGIN\n #error \"Please include config.h first.\"\n#endif\n_GL_INLINE_HEADER_BEGIN\n#ifndef _GL_UNISTD_INLINE\n# define _GL_UNISTD_INLINE _GL_INLINE\n#endif\n\n/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */\n\n/* The definition of _GL_ARG_NONNULL is copied here.  */\n\n/* The definition of _GL_WARN_ON_USE is copied here.  */\n\n\n/* Hide some function declarations from <winsock2.h>.  */\n\n#if @GNULIB_GETHOSTNAME@ && @UNISTD_H_HAVE_WINSOCK2_H@\n# if !defined _@GUARD_PREFIX@_SYS_SOCKET_H\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef socket\n#   define socket              socket_used_without_including_sys_socket_h\n#   undef connect\n#   define connect             connect_used_without_including_sys_socket_h\n#   undef accept\n#   define accept              accept_used_without_including_sys_socket_h\n#   undef bind\n#   define bind                bind_used_without_including_sys_socket_h\n#   undef getpeername\n#   define getpeername         getpeername_used_without_including_sys_socket_h\n#   undef getsockname\n#   define getsockname         getsockname_used_without_including_sys_socket_h\n#   undef getsockopt\n#   define getsockopt          getsockopt_used_without_including_sys_socket_h\n#   undef listen\n#   define listen              listen_used_without_including_sys_socket_h\n#   undef recv\n#   define recv                recv_used_without_including_sys_socket_h\n#   undef send\n#   define send                send_used_without_including_sys_socket_h\n#   undef recvfrom\n#   define recvfrom            recvfrom_used_without_including_sys_socket_h\n#   undef sendto\n#   define sendto              sendto_used_without_including_sys_socket_h\n#   undef setsockopt\n#   define setsockopt          setsockopt_used_without_including_sys_socket_h\n#   undef shutdown\n#   define shutdown            shutdown_used_without_including_sys_socket_h\n#  else\n    _GL_WARN_ON_USE (socket,\n                     \"socket() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (connect,\n                     \"connect() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (accept,\n                     \"accept() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (bind,\n                     \"bind() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (getpeername,\n                     \"getpeername() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (getsockname,\n                     \"getsockname() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (getsockopt,\n                     \"getsockopt() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (listen,\n                     \"listen() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (recv,\n                     \"recv() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (send,\n                     \"send() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (recvfrom,\n                     \"recvfrom() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (sendto,\n                     \"sendto() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (setsockopt,\n                     \"setsockopt() used without including <sys/socket.h>\");\n    _GL_WARN_ON_USE (shutdown,\n                     \"shutdown() used without including <sys/socket.h>\");\n#  endif\n# endif\n# if !defined _@GUARD_PREFIX@_SYS_SELECT_H\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef select\n#   define select              select_used_without_including_sys_select_h\n#  else\n    _GL_WARN_ON_USE (select,\n                     \"select() used without including <sys/select.h>\");\n#  endif\n# endif\n#endif\n\n\n/* OS/2 EMX lacks these macros.  */\n#ifndef STDIN_FILENO\n# define STDIN_FILENO 0\n#endif\n#ifndef STDOUT_FILENO\n# define STDOUT_FILENO 1\n#endif\n#ifndef STDERR_FILENO\n# define STDERR_FILENO 2\n#endif\n\n/* Ensure *_OK macros exist.  */\n#ifndef F_OK\n# define F_OK 0\n# define X_OK 1\n# define W_OK 2\n# define R_OK 4\n#endif\n\n\n/* Declare overridden functions.  */\n\n\n#if defined GNULIB_POSIXCHECK\n/* The access() function is a security risk.  */\n_GL_WARN_ON_USE (access, \"the access function is a security risk - \"\n                 \"use the gnulib module faccessat instead\");\n#endif\n\n\n#if @GNULIB_CHDIR@\n_GL_CXXALIAS_SYS (chdir, int, (const char *file) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIASWARN (chdir);\n#elif defined GNULIB_POSIXCHECK\n# undef chdir\n# if HAVE_RAW_DECL_CHDIR\n_GL_WARN_ON_USE (chown, \"chdir is not always in <unistd.h> - \"\n                 \"use gnulib module chdir for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_CHOWN@\n/* Change the owner of FILE to UID (if UID is not -1) and the group of FILE\n   to GID (if GID is not -1).  Follow symbolic links.\n   Return 0 if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/chown.html.  */\n# if @REPLACE_CHOWN@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef chown\n#   define chown rpl_chown\n#  endif\n_GL_FUNCDECL_RPL (chown, int, (const char *file, uid_t uid, gid_t gid)\n                              _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (chown, int, (const char *file, uid_t uid, gid_t gid));\n# else\n#  if !@HAVE_CHOWN@\n_GL_FUNCDECL_SYS (chown, int, (const char *file, uid_t uid, gid_t gid)\n                              _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (chown, int, (const char *file, uid_t uid, gid_t gid));\n# endif\n_GL_CXXALIASWARN (chown);\n#elif defined GNULIB_POSIXCHECK\n# undef chown\n# if HAVE_RAW_DECL_CHOWN\n_GL_WARN_ON_USE (chown, \"chown fails to follow symlinks on some systems and \"\n                 \"doesn't treat a uid or gid of -1 on some systems - \"\n                 \"use gnulib module chown for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_CLOSE@\n# if @REPLACE_CLOSE@\n/* Automatically included by modules that need a replacement for close.  */\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef close\n#   define close rpl_close\n#  endif\n_GL_FUNCDECL_RPL (close, int, (int fd));\n_GL_CXXALIAS_RPL (close, int, (int fd));\n# else\n_GL_CXXALIAS_SYS (close, int, (int fd));\n# endif\n_GL_CXXALIASWARN (close);\n#elif @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@\n# undef close\n# define close close_used_without_requesting_gnulib_module_close\n#elif defined GNULIB_POSIXCHECK\n# undef close\n/* Assume close is always declared.  */\n_GL_WARN_ON_USE (close, \"close does not portably work on sockets - \"\n                 \"use gnulib module close for portability\");\n#endif\n\n\n#if @GNULIB_DUP@\n# if @REPLACE_DUP@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define dup rpl_dup\n#  endif\n_GL_FUNCDECL_RPL (dup, int, (int oldfd));\n_GL_CXXALIAS_RPL (dup, int, (int oldfd));\n# else\n_GL_CXXALIAS_SYS (dup, int, (int oldfd));\n# endif\n_GL_CXXALIASWARN (dup);\n#elif defined GNULIB_POSIXCHECK\n# undef dup\n# if HAVE_RAW_DECL_DUP\n_GL_WARN_ON_USE (dup, \"dup is unportable - \"\n                 \"use gnulib module dup for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_DUP2@\n/* Copy the file descriptor OLDFD into file descriptor NEWFD.  Do nothing if\n   NEWFD = OLDFD, otherwise close NEWFD first if it is open.\n   Return newfd if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/dup2.html>.  */\n# if @REPLACE_DUP2@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define dup2 rpl_dup2\n#  endif\n_GL_FUNCDECL_RPL (dup2, int, (int oldfd, int newfd));\n_GL_CXXALIAS_RPL (dup2, int, (int oldfd, int newfd));\n# else\n#  if !@HAVE_DUP2@\n_GL_FUNCDECL_SYS (dup2, int, (int oldfd, int newfd));\n#  endif\n_GL_CXXALIAS_SYS (dup2, int, (int oldfd, int newfd));\n# endif\n_GL_CXXALIASWARN (dup2);\n#elif defined GNULIB_POSIXCHECK\n# undef dup2\n# if HAVE_RAW_DECL_DUP2\n_GL_WARN_ON_USE (dup2, \"dup2 is unportable - \"\n                 \"use gnulib module dup2 for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_DUP3@\n/* Copy the file descriptor OLDFD into file descriptor NEWFD, with the\n   specified flags.\n   The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)\n   and O_TEXT, O_BINARY (defined in \"binary-io.h\").\n   Close NEWFD first if it is open.\n   Return newfd if successful, otherwise -1 and errno set.\n   See the Linux man page at\n   <http://www.kernel.org/doc/man-pages/online/pages/man2/dup3.2.html>.  */\n# if @HAVE_DUP3@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define dup3 rpl_dup3\n#  endif\n_GL_FUNCDECL_RPL (dup3, int, (int oldfd, int newfd, int flags));\n_GL_CXXALIAS_RPL (dup3, int, (int oldfd, int newfd, int flags));\n# else\n_GL_FUNCDECL_SYS (dup3, int, (int oldfd, int newfd, int flags));\n_GL_CXXALIAS_SYS (dup3, int, (int oldfd, int newfd, int flags));\n# endif\n_GL_CXXALIASWARN (dup3);\n#elif defined GNULIB_POSIXCHECK\n# undef dup3\n# if HAVE_RAW_DECL_DUP3\n_GL_WARN_ON_USE (dup3, \"dup3 is unportable - \"\n                 \"use gnulib module dup3 for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_ENVIRON@\n# if !@HAVE_DECL_ENVIRON@\n/* Set of environment variables and values.  An array of strings of the form\n   \"VARIABLE=VALUE\", terminated with a NULL.  */\n#  if defined __APPLE__ && defined __MACH__\n#   include <TargetConditionals.h>\n#   if !TARGET_OS_IPHONE && !TARGET_IPHONE_SIMULATOR\n#    define _GL_USE_CRT_EXTERNS\n#   endif\n#  endif\n#  ifdef _GL_USE_CRT_EXTERNS\n#   include <crt_externs.h>\n#   define environ (*_NSGetEnviron ())\n#  else\n#   ifdef __cplusplus\nextern \"C\" {\n#   endif\nextern char **environ;\n#   ifdef __cplusplus\n}\n#   endif\n#  endif\n# endif\n#elif defined GNULIB_POSIXCHECK\n# if HAVE_RAW_DECL_ENVIRON\n_GL_UNISTD_INLINE char ***\nrpl_environ (void)\n{\n  return &environ;\n}\n_GL_WARN_ON_USE (rpl_environ, \"environ is unportable - \"\n                 \"use gnulib module environ for portability\");\n#  undef environ\n#  define environ (*rpl_environ ())\n# endif\n#endif\n\n\n#if @GNULIB_EUIDACCESS@\n/* Like access(), except that it uses the effective user id and group id of\n   the current process.  */\n# if !@HAVE_EUIDACCESS@\n_GL_FUNCDECL_SYS (euidaccess, int, (const char *filename, int mode)\n                                   _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (euidaccess, int, (const char *filename, int mode));\n_GL_CXXALIASWARN (euidaccess);\n# if defined GNULIB_POSIXCHECK\n/* Like access(), this function is a security risk.  */\n_GL_WARN_ON_USE (euidaccess, \"the euidaccess function is a security risk - \"\n                 \"use the gnulib module faccessat instead\");\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef euidaccess\n# if HAVE_RAW_DECL_EUIDACCESS\n_GL_WARN_ON_USE (euidaccess, \"euidaccess is unportable - \"\n                 \"use gnulib module euidaccess for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_FACCESSAT@\n# if !@HAVE_FACCESSAT@\n_GL_FUNCDECL_SYS (faccessat, int,\n                  (int fd, char const *file, int mode, int flag)\n                  _GL_ARG_NONNULL ((2)));\n# endif\n_GL_CXXALIAS_SYS (faccessat, int,\n                  (int fd, char const *file, int mode, int flag));\n_GL_CXXALIASWARN (faccessat);\n#elif defined GNULIB_POSIXCHECK\n# undef faccessat\n# if HAVE_RAW_DECL_FACCESSAT\n_GL_WARN_ON_USE (faccessat, \"faccessat is not portable - \"\n                 \"use gnulib module faccessat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_FCHDIR@\n/* Change the process' current working directory to the directory on which\n   the given file descriptor is open.\n   Return 0 if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/fchdir.html>.  */\n# if ! @HAVE_FCHDIR@\n_GL_FUNCDECL_SYS (fchdir, int, (int /*fd*/));\n\n/* Gnulib internal hooks needed to maintain the fchdir metadata.  */\n_GL_EXTERN_C int _gl_register_fd (int fd, const char *filename)\n     _GL_ARG_NONNULL ((2));\n_GL_EXTERN_C void _gl_unregister_fd (int fd);\n_GL_EXTERN_C int _gl_register_dup (int oldfd, int newfd);\n_GL_EXTERN_C const char *_gl_directory_name (int fd);\n\n# else\n#  if !@HAVE_DECL_FCHDIR@\n_GL_FUNCDECL_SYS (fchdir, int, (int /*fd*/));\n#  endif\n# endif\n_GL_CXXALIAS_SYS (fchdir, int, (int /*fd*/));\n_GL_CXXALIASWARN (fchdir);\n#elif defined GNULIB_POSIXCHECK\n# undef fchdir\n# if HAVE_RAW_DECL_FCHDIR\n_GL_WARN_ON_USE (fchdir, \"fchdir is unportable - \"\n                 \"use gnulib module fchdir for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_FCHOWNAT@\n# if @REPLACE_FCHOWNAT@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef fchownat\n#   define fchownat rpl_fchownat\n#  endif\n_GL_FUNCDECL_RPL (fchownat, int, (int fd, char const *file,\n                                  uid_t owner, gid_t group, int flag)\n                                 _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (fchownat, int, (int fd, char const *file,\n                                  uid_t owner, gid_t group, int flag));\n# else\n#  if !@HAVE_FCHOWNAT@\n_GL_FUNCDECL_SYS (fchownat, int, (int fd, char const *file,\n                                  uid_t owner, gid_t group, int flag)\n                                 _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (fchownat, int, (int fd, char const *file,\n                                  uid_t owner, gid_t group, int flag));\n# endif\n_GL_CXXALIASWARN (fchownat);\n#elif defined GNULIB_POSIXCHECK\n# undef fchownat\n# if HAVE_RAW_DECL_FCHOWNAT\n_GL_WARN_ON_USE (fchownat, \"fchownat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_FDATASYNC@\n/* Synchronize changes to a file.\n   Return 0 if successful, otherwise -1 and errno set.\n   See POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdatasync.html>.  */\n# if !@HAVE_FDATASYNC@ || !@HAVE_DECL_FDATASYNC@\n_GL_FUNCDECL_SYS (fdatasync, int, (int fd));\n# endif\n_GL_CXXALIAS_SYS (fdatasync, int, (int fd));\n_GL_CXXALIASWARN (fdatasync);\n#elif defined GNULIB_POSIXCHECK\n# undef fdatasync\n# if HAVE_RAW_DECL_FDATASYNC\n_GL_WARN_ON_USE (fdatasync, \"fdatasync is unportable - \"\n                 \"use gnulib module fdatasync for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_FSYNC@\n/* Synchronize changes, including metadata, to a file.\n   Return 0 if successful, otherwise -1 and errno set.\n   See POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/fsync.html>.  */\n# if !@HAVE_FSYNC@\n_GL_FUNCDECL_SYS (fsync, int, (int fd));\n# endif\n_GL_CXXALIAS_SYS (fsync, int, (int fd));\n_GL_CXXALIASWARN (fsync);\n#elif defined GNULIB_POSIXCHECK\n# undef fsync\n# if HAVE_RAW_DECL_FSYNC\n_GL_WARN_ON_USE (fsync, \"fsync is unportable - \"\n                 \"use gnulib module fsync for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_FTRUNCATE@\n/* Change the size of the file to which FD is opened to become equal to LENGTH.\n   Return 0 if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftruncate.html>.  */\n# if @REPLACE_FTRUNCATE@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ftruncate\n#   define ftruncate rpl_ftruncate\n#  endif\n_GL_FUNCDECL_RPL (ftruncate, int, (int fd, off_t length));\n_GL_CXXALIAS_RPL (ftruncate, int, (int fd, off_t length));\n# else\n#  if !@HAVE_FTRUNCATE@\n_GL_FUNCDECL_SYS (ftruncate, int, (int fd, off_t length));\n#  endif\n_GL_CXXALIAS_SYS (ftruncate, int, (int fd, off_t length));\n# endif\n_GL_CXXALIASWARN (ftruncate);\n#elif defined GNULIB_POSIXCHECK\n# undef ftruncate\n# if HAVE_RAW_DECL_FTRUNCATE\n_GL_WARN_ON_USE (ftruncate, \"ftruncate is unportable - \"\n                 \"use gnulib module ftruncate for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_GETCWD@\n/* Get the name of the current working directory, and put it in SIZE bytes\n   of BUF.\n   Return BUF if successful, or NULL if the directory couldn't be determined\n   or SIZE was too small.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/getcwd.html>.\n   Additionally, the gnulib module 'getcwd' guarantees the following GNU\n   extension: If BUF is NULL, an array is allocated with 'malloc'; the array\n   is SIZE bytes long, unless SIZE == 0, in which case it is as big as\n   necessary.  */\n# if @REPLACE_GETCWD@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define getcwd rpl_getcwd\n#  endif\n_GL_FUNCDECL_RPL (getcwd, char *, (char *buf, size_t size));\n_GL_CXXALIAS_RPL (getcwd, char *, (char *buf, size_t size));\n# else\n/* Need to cast, because on mingw, the second parameter is\n                                                   int size.  */\n_GL_CXXALIAS_SYS_CAST (getcwd, char *, (char *buf, size_t size));\n# endif\n_GL_CXXALIASWARN (getcwd);\n#elif defined GNULIB_POSIXCHECK\n# undef getcwd\n# if HAVE_RAW_DECL_GETCWD\n_GL_WARN_ON_USE (getcwd, \"getcwd is unportable - \"\n                 \"use gnulib module getcwd for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_GETDOMAINNAME@\n/* Return the NIS domain name of the machine.\n   WARNING! The NIS domain name is unrelated to the fully qualified host name\n            of the machine.  It is also unrelated to email addresses.\n   WARNING! The NIS domain name is usually the empty string or \"(none)\" when\n            not using NIS.\n\n   Put up to LEN bytes of the NIS domain name into NAME.\n   Null terminate it if the name is shorter than LEN.\n   If the NIS domain name is longer than LEN, set errno = EINVAL and return -1.\n   Return 0 if successful, otherwise set errno and return -1.  */\n# if @REPLACE_GETDOMAINNAME@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getdomainname\n#   define getdomainname rpl_getdomainname\n#  endif\n_GL_FUNCDECL_RPL (getdomainname, int, (char *name, size_t len)\n                                      _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (getdomainname, int, (char *name, size_t len));\n# else\n#  if !@HAVE_DECL_GETDOMAINNAME@\n_GL_FUNCDECL_SYS (getdomainname, int, (char *name, size_t len)\n                                      _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (getdomainname, int, (char *name, size_t len));\n# endif\n_GL_CXXALIASWARN (getdomainname);\n#elif defined GNULIB_POSIXCHECK\n# undef getdomainname\n# if HAVE_RAW_DECL_GETDOMAINNAME\n_GL_WARN_ON_USE (getdomainname, \"getdomainname is unportable - \"\n                 \"use gnulib module getdomainname for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_GETDTABLESIZE@\n/* Return the maximum number of file descriptors in the current process.\n   In POSIX, this is same as sysconf (_SC_OPEN_MAX).  */\n# if @REPLACE_GETDTABLESIZE@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getdtablesize\n#   define getdtablesize rpl_getdtablesize\n#  endif\n_GL_FUNCDECL_RPL (getdtablesize, int, (void));\n_GL_CXXALIAS_RPL (getdtablesize, int, (void));\n# else\n#  if !@HAVE_GETDTABLESIZE@\n_GL_FUNCDECL_SYS (getdtablesize, int, (void));\n#  endif\n_GL_CXXALIAS_SYS (getdtablesize, int, (void));\n# endif\n_GL_CXXALIASWARN (getdtablesize);\n#elif defined GNULIB_POSIXCHECK\n# undef getdtablesize\n# if HAVE_RAW_DECL_GETDTABLESIZE\n_GL_WARN_ON_USE (getdtablesize, \"getdtablesize is unportable - \"\n                 \"use gnulib module getdtablesize for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_GETGROUPS@\n/* Return the supplemental groups that the current process belongs to.\n   It is unspecified whether the effective group id is in the list.\n   If N is 0, return the group count; otherwise, N describes how many\n   entries are available in GROUPS.  Return -1 and set errno if N is\n   not 0 and not large enough.  Fails with ENOSYS on some systems.  */\n# if @REPLACE_GETGROUPS@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef getgroups\n#   define getgroups rpl_getgroups\n#  endif\n_GL_FUNCDECL_RPL (getgroups, int, (int n, gid_t *groups));\n_GL_CXXALIAS_RPL (getgroups, int, (int n, gid_t *groups));\n# else\n#  if !@HAVE_GETGROUPS@\n_GL_FUNCDECL_SYS (getgroups, int, (int n, gid_t *groups));\n#  endif\n_GL_CXXALIAS_SYS (getgroups, int, (int n, gid_t *groups));\n# endif\n_GL_CXXALIASWARN (getgroups);\n#elif defined GNULIB_POSIXCHECK\n# undef getgroups\n# if HAVE_RAW_DECL_GETGROUPS\n_GL_WARN_ON_USE (getgroups, \"getgroups is unportable - \"\n                 \"use gnulib module getgroups for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_GETHOSTNAME@\n/* Return the standard host name of the machine.\n   WARNING! The host name may or may not be fully qualified.\n\n   Put up to LEN bytes of the host name into NAME.\n   Null terminate it if the name is shorter than LEN.\n   If the host name is longer than LEN, set errno = EINVAL and return -1.\n   Return 0 if successful, otherwise set errno and return -1.  */\n# if @UNISTD_H_HAVE_WINSOCK2_H@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef gethostname\n#   define gethostname rpl_gethostname\n#  endif\n_GL_FUNCDECL_RPL (gethostname, int, (char *name, size_t len)\n                                    _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (gethostname, int, (char *name, size_t len));\n# else\n#  if !@HAVE_GETHOSTNAME@\n_GL_FUNCDECL_SYS (gethostname, int, (char *name, size_t len)\n                                    _GL_ARG_NONNULL ((1)));\n#  endif\n/* Need to cast, because on Solaris 10 and OSF/1 5.1 systems, the second\n   parameter is\n                                                      int len.  */\n_GL_CXXALIAS_SYS_CAST (gethostname, int, (char *name, size_t len));\n# endif\n_GL_CXXALIASWARN (gethostname);\n#elif @UNISTD_H_HAVE_WINSOCK2_H@\n# undef gethostname\n# define gethostname gethostname_used_without_requesting_gnulib_module_gethostname\n#elif defined GNULIB_POSIXCHECK\n# undef gethostname\n# if HAVE_RAW_DECL_GETHOSTNAME\n_GL_WARN_ON_USE (gethostname, \"gethostname is unportable - \"\n                 \"use gnulib module gethostname for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_GETLOGIN@\n/* Returns the user's login name, or NULL if it cannot be found.  Upon error,\n   returns NULL with errno set.\n\n   See <http://www.opengroup.org/susv3xsh/getlogin.html>.\n\n   Most programs don't need to use this function, because the information is\n   available through environment variables:\n     ${LOGNAME-$USER}        on Unix platforms,\n     $USERNAME               on native Windows platforms.\n */\n# if !@HAVE_DECL_GETLOGIN@\n_GL_FUNCDECL_SYS (getlogin, char *, (void));\n# endif\n_GL_CXXALIAS_SYS (getlogin, char *, (void));\n_GL_CXXALIASWARN (getlogin);\n#elif defined GNULIB_POSIXCHECK\n# undef getlogin\n# if HAVE_RAW_DECL_GETLOGIN\n_GL_WARN_ON_USE (getlogin, \"getlogin is unportable - \"\n                 \"use gnulib module getlogin for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_GETLOGIN_R@\n/* Copies the user's login name to NAME.\n   The array pointed to by NAME has room for SIZE bytes.\n\n   Returns 0 if successful.  Upon error, an error number is returned, or -1 in\n   the case that the login name cannot be found but no specific error is\n   provided (this case is hopefully rare but is left open by the POSIX spec).\n\n   See <http://www.opengroup.org/susv3xsh/getlogin.html>.\n\n   Most programs don't need to use this function, because the information is\n   available through environment variables:\n     ${LOGNAME-$USER}        on Unix platforms,\n     $USERNAME               on native Windows platforms.\n */\n# if @REPLACE_GETLOGIN_R@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define getlogin_r rpl_getlogin_r\n#  endif\n_GL_FUNCDECL_RPL (getlogin_r, int, (char *name, size_t size)\n                                   _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (getlogin_r, int, (char *name, size_t size));\n# else\n#  if !@HAVE_DECL_GETLOGIN_R@\n_GL_FUNCDECL_SYS (getlogin_r, int, (char *name, size_t size)\n                                   _GL_ARG_NONNULL ((1)));\n#  endif\n/* Need to cast, because on Solaris 10 systems, the second argument is\n                                                     int size.  */\n_GL_CXXALIAS_SYS_CAST (getlogin_r, int, (char *name, size_t size));\n# endif\n_GL_CXXALIASWARN (getlogin_r);\n#elif defined GNULIB_POSIXCHECK\n# undef getlogin_r\n# if HAVE_RAW_DECL_GETLOGIN_R\n_GL_WARN_ON_USE (getlogin_r, \"getlogin_r is unportable - \"\n                 \"use gnulib module getlogin_r for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_GETPAGESIZE@\n# if @REPLACE_GETPAGESIZE@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define getpagesize rpl_getpagesize\n#  endif\n_GL_FUNCDECL_RPL (getpagesize, int, (void));\n_GL_CXXALIAS_RPL (getpagesize, int, (void));\n# else\n#  if !@HAVE_GETPAGESIZE@\n#   if !defined getpagesize\n/* This is for POSIX systems.  */\n#    if !defined _gl_getpagesize && defined _SC_PAGESIZE\n#     if ! (defined __VMS && __VMS_VER < 70000000)\n#      define _gl_getpagesize() sysconf (_SC_PAGESIZE)\n#     endif\n#    endif\n/* This is for older VMS.  */\n#    if !defined _gl_getpagesize && defined __VMS\n#     ifdef __ALPHA\n#      define _gl_getpagesize() 8192\n#     else\n#      define _gl_getpagesize() 512\n#     endif\n#    endif\n/* This is for BeOS.  */\n#    if !defined _gl_getpagesize && @HAVE_OS_H@\n#     include <OS.h>\n#     if defined B_PAGE_SIZE\n#      define _gl_getpagesize() B_PAGE_SIZE\n#     endif\n#    endif\n/* This is for AmigaOS4.0.  */\n#    if !defined _gl_getpagesize && defined __amigaos4__\n#     define _gl_getpagesize() 2048\n#    endif\n/* This is for older Unix systems.  */\n#    if !defined _gl_getpagesize && @HAVE_SYS_PARAM_H@\n#     include <sys/param.h>\n#     ifdef EXEC_PAGESIZE\n#      define _gl_getpagesize() EXEC_PAGESIZE\n#     else\n#      ifdef NBPG\n#       ifndef CLSIZE\n#        define CLSIZE 1\n#       endif\n#       define _gl_getpagesize() (NBPG * CLSIZE)\n#      else\n#       ifdef NBPC\n#        define _gl_getpagesize() NBPC\n#       endif\n#      endif\n#     endif\n#    endif\n#    if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#     define getpagesize() _gl_getpagesize ()\n#    else\n#     if !GNULIB_defined_getpagesize_function\n_GL_UNISTD_INLINE int\ngetpagesize ()\n{\n  return _gl_getpagesize ();\n}\n#      define GNULIB_defined_getpagesize_function 1\n#     endif\n#    endif\n#   endif\n#  endif\n/* Need to cast, because on Cygwin 1.5.x systems, the return type is size_t.  */\n_GL_CXXALIAS_SYS_CAST (getpagesize, int, (void));\n# endif\n# if @HAVE_DECL_GETPAGESIZE@\n_GL_CXXALIASWARN (getpagesize);\n# endif\n#elif defined GNULIB_POSIXCHECK\n# undef getpagesize\n# if HAVE_RAW_DECL_GETPAGESIZE\n_GL_WARN_ON_USE (getpagesize, \"getpagesize is unportable - \"\n                 \"use gnulib module getpagesize for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_GETUSERSHELL@\n/* Return the next valid login shell on the system, or NULL when the end of\n   the list has been reached.  */\n# if !@HAVE_DECL_GETUSERSHELL@\n_GL_FUNCDECL_SYS (getusershell, char *, (void));\n# endif\n_GL_CXXALIAS_SYS (getusershell, char *, (void));\n_GL_CXXALIASWARN (getusershell);\n#elif defined GNULIB_POSIXCHECK\n# undef getusershell\n# if HAVE_RAW_DECL_GETUSERSHELL\n_GL_WARN_ON_USE (getusershell, \"getusershell is unportable - \"\n                 \"use gnulib module getusershell for portability\");\n# endif\n#endif\n\n#if @GNULIB_GETUSERSHELL@\n/* Rewind to pointer that is advanced at each getusershell() call.  */\n# if !@HAVE_DECL_GETUSERSHELL@\n_GL_FUNCDECL_SYS (setusershell, void, (void));\n# endif\n_GL_CXXALIAS_SYS (setusershell, void, (void));\n_GL_CXXALIASWARN (setusershell);\n#elif defined GNULIB_POSIXCHECK\n# undef setusershell\n# if HAVE_RAW_DECL_SETUSERSHELL\n_GL_WARN_ON_USE (setusershell, \"setusershell is unportable - \"\n                 \"use gnulib module getusershell for portability\");\n# endif\n#endif\n\n#if @GNULIB_GETUSERSHELL@\n/* Free the pointer that is advanced at each getusershell() call and\n   associated resources.  */\n# if !@HAVE_DECL_GETUSERSHELL@\n_GL_FUNCDECL_SYS (endusershell, void, (void));\n# endif\n_GL_CXXALIAS_SYS (endusershell, void, (void));\n_GL_CXXALIASWARN (endusershell);\n#elif defined GNULIB_POSIXCHECK\n# undef endusershell\n# if HAVE_RAW_DECL_ENDUSERSHELL\n_GL_WARN_ON_USE (endusershell, \"endusershell is unportable - \"\n                 \"use gnulib module getusershell for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_GROUP_MEMBER@\n/* Determine whether group id is in calling user's group list.  */\n# if !@HAVE_GROUP_MEMBER@\n_GL_FUNCDECL_SYS (group_member, int, (gid_t gid));\n# endif\n_GL_CXXALIAS_SYS (group_member, int, (gid_t gid));\n_GL_CXXALIASWARN (group_member);\n#elif defined GNULIB_POSIXCHECK\n# undef group_member\n# if HAVE_RAW_DECL_GROUP_MEMBER\n_GL_WARN_ON_USE (group_member, \"group_member is unportable - \"\n                 \"use gnulib module group-member for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_ISATTY@\n# if @REPLACE_ISATTY@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef isatty\n#   define isatty rpl_isatty\n#  endif\n_GL_FUNCDECL_RPL (isatty, int, (int fd));\n_GL_CXXALIAS_RPL (isatty, int, (int fd));\n# else\n_GL_CXXALIAS_SYS (isatty, int, (int fd));\n# endif\n_GL_CXXALIASWARN (isatty);\n#elif defined GNULIB_POSIXCHECK\n# undef isatty\n# if HAVE_RAW_DECL_ISATTY\n_GL_WARN_ON_USE (isatty, \"isatty has portability problems on native Windows - \"\n                 \"use gnulib module isatty for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_LCHOWN@\n/* Change the owner of FILE to UID (if UID is not -1) and the group of FILE\n   to GID (if GID is not -1).  Do not follow symbolic links.\n   Return 0 if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/lchown.html>.  */\n# if @REPLACE_LCHOWN@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef lchown\n#   define lchown rpl_lchown\n#  endif\n_GL_FUNCDECL_RPL (lchown, int, (char const *file, uid_t owner, gid_t group)\n                               _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (lchown, int, (char const *file, uid_t owner, gid_t group));\n# else\n#  if !@HAVE_LCHOWN@\n_GL_FUNCDECL_SYS (lchown, int, (char const *file, uid_t owner, gid_t group)\n                               _GL_ARG_NONNULL ((1)));\n#  endif\n_GL_CXXALIAS_SYS (lchown, int, (char const *file, uid_t owner, gid_t group));\n# endif\n_GL_CXXALIASWARN (lchown);\n#elif defined GNULIB_POSIXCHECK\n# undef lchown\n# if HAVE_RAW_DECL_LCHOWN\n_GL_WARN_ON_USE (lchown, \"lchown is unportable to pre-POSIX.1-2001 systems - \"\n                 \"use gnulib module lchown for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_LINK@\n/* Create a new hard link for an existing file.\n   Return 0 if successful, otherwise -1 and errno set.\n   See POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/link.html>.  */\n# if @REPLACE_LINK@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define link rpl_link\n#  endif\n_GL_FUNCDECL_RPL (link, int, (const char *path1, const char *path2)\n                             _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (link, int, (const char *path1, const char *path2));\n# else\n#  if !@HAVE_LINK@\n_GL_FUNCDECL_SYS (link, int, (const char *path1, const char *path2)\n                             _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (link, int, (const char *path1, const char *path2));\n# endif\n_GL_CXXALIASWARN (link);\n#elif defined GNULIB_POSIXCHECK\n# undef link\n# if HAVE_RAW_DECL_LINK\n_GL_WARN_ON_USE (link, \"link is unportable - \"\n                 \"use gnulib module link for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_LINKAT@\n/* Create a new hard link for an existing file, relative to two\n   directories.  FLAG controls whether symlinks are followed.\n   Return 0 if successful, otherwise -1 and errno set.  */\n# if @REPLACE_LINKAT@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef linkat\n#   define linkat rpl_linkat\n#  endif\n_GL_FUNCDECL_RPL (linkat, int,\n                  (int fd1, const char *path1, int fd2, const char *path2,\n                   int flag)\n                  _GL_ARG_NONNULL ((2, 4)));\n_GL_CXXALIAS_RPL (linkat, int,\n                  (int fd1, const char *path1, int fd2, const char *path2,\n                   int flag));\n# else\n#  if !@HAVE_LINKAT@\n_GL_FUNCDECL_SYS (linkat, int,\n                  (int fd1, const char *path1, int fd2, const char *path2,\n                   int flag)\n                  _GL_ARG_NONNULL ((2, 4)));\n#  endif\n_GL_CXXALIAS_SYS (linkat, int,\n                  (int fd1, const char *path1, int fd2, const char *path2,\n                   int flag));\n# endif\n_GL_CXXALIASWARN (linkat);\n#elif defined GNULIB_POSIXCHECK\n# undef linkat\n# if HAVE_RAW_DECL_LINKAT\n_GL_WARN_ON_USE (linkat, \"linkat is unportable - \"\n                 \"use gnulib module linkat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_LSEEK@\n/* Set the offset of FD relative to SEEK_SET, SEEK_CUR, or SEEK_END.\n   Return the new offset if successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/lseek.html>.  */\n# if @REPLACE_LSEEK@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define lseek rpl_lseek\n#  endif\n_GL_FUNCDECL_RPL (lseek, off_t, (int fd, off_t offset, int whence));\n_GL_CXXALIAS_RPL (lseek, off_t, (int fd, off_t offset, int whence));\n# else\n_GL_CXXALIAS_SYS (lseek, off_t, (int fd, off_t offset, int whence));\n# endif\n_GL_CXXALIASWARN (lseek);\n#elif defined GNULIB_POSIXCHECK\n# undef lseek\n# if HAVE_RAW_DECL_LSEEK\n_GL_WARN_ON_USE (lseek, \"lseek does not fail with ESPIPE on pipes on some \"\n                 \"systems - use gnulib module lseek for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_PIPE@\n/* Create a pipe, defaulting to O_BINARY mode.\n   Store the read-end as fd[0] and the write-end as fd[1].\n   Return 0 upon success, or -1 with errno set upon failure.  */\n# if !@HAVE_PIPE@\n_GL_FUNCDECL_SYS (pipe, int, (int fd[2]) _GL_ARG_NONNULL ((1)));\n# endif\n_GL_CXXALIAS_SYS (pipe, int, (int fd[2]));\n_GL_CXXALIASWARN (pipe);\n#elif defined GNULIB_POSIXCHECK\n# undef pipe\n# if HAVE_RAW_DECL_PIPE\n_GL_WARN_ON_USE (pipe, \"pipe is unportable - \"\n                 \"use gnulib module pipe-posix for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_PIPE2@\n/* Create a pipe, applying the given flags when opening the read-end of the\n   pipe and the write-end of the pipe.\n   The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)\n   and O_TEXT, O_BINARY (defined in \"binary-io.h\").\n   Store the read-end as fd[0] and the write-end as fd[1].\n   Return 0 upon success, or -1 with errno set upon failure.\n   See also the Linux man page at\n   <http://www.kernel.org/doc/man-pages/online/pages/man2/pipe2.2.html>.  */\n# if @HAVE_PIPE2@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define pipe2 rpl_pipe2\n#  endif\n_GL_FUNCDECL_RPL (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (pipe2, int, (int fd[2], int flags));\n# else\n_GL_FUNCDECL_SYS (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_SYS (pipe2, int, (int fd[2], int flags));\n# endif\n_GL_CXXALIASWARN (pipe2);\n#elif defined GNULIB_POSIXCHECK\n# undef pipe2\n# if HAVE_RAW_DECL_PIPE2\n_GL_WARN_ON_USE (pipe2, \"pipe2 is unportable - \"\n                 \"use gnulib module pipe2 for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_PREAD@\n/* Read at most BUFSIZE bytes from FD into BUF, starting at OFFSET.\n   Return the number of bytes placed into BUF if successful, otherwise\n   set errno and return -1.  0 indicates EOF.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/pread.html>.  */\n# if @REPLACE_PREAD@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef pread\n#   define pread rpl_pread\n#  endif\n_GL_FUNCDECL_RPL (pread, ssize_t,\n                  (int fd, void *buf, size_t bufsize, off_t offset)\n                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (pread, ssize_t,\n                  (int fd, void *buf, size_t bufsize, off_t offset));\n# else\n#  if !@HAVE_PREAD@\n_GL_FUNCDECL_SYS (pread, ssize_t,\n                  (int fd, void *buf, size_t bufsize, off_t offset)\n                  _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (pread, ssize_t,\n                  (int fd, void *buf, size_t bufsize, off_t offset));\n# endif\n_GL_CXXALIASWARN (pread);\n#elif defined GNULIB_POSIXCHECK\n# undef pread\n# if HAVE_RAW_DECL_PREAD\n_GL_WARN_ON_USE (pread, \"pread is unportable - \"\n                 \"use gnulib module pread for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_PWRITE@\n/* Write at most BUFSIZE bytes from BUF into FD, starting at OFFSET.\n   Return the number of bytes written if successful, otherwise\n   set errno and return -1.  0 indicates nothing written.  See the\n   POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/pwrite.html>.  */\n# if @REPLACE_PWRITE@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef pwrite\n#   define pwrite rpl_pwrite\n#  endif\n_GL_FUNCDECL_RPL (pwrite, ssize_t,\n                  (int fd, const void *buf, size_t bufsize, off_t offset)\n                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (pwrite, ssize_t,\n                  (int fd, const void *buf, size_t bufsize, off_t offset));\n# else\n#  if !@HAVE_PWRITE@\n_GL_FUNCDECL_SYS (pwrite, ssize_t,\n                  (int fd, const void *buf, size_t bufsize, off_t offset)\n                  _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (pwrite, ssize_t,\n                  (int fd, const void *buf, size_t bufsize, off_t offset));\n# endif\n_GL_CXXALIASWARN (pwrite);\n#elif defined GNULIB_POSIXCHECK\n# undef pwrite\n# if HAVE_RAW_DECL_PWRITE\n_GL_WARN_ON_USE (pwrite, \"pwrite is unportable - \"\n                 \"use gnulib module pwrite for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_READ@\n/* Read up to COUNT bytes from file descriptor FD into the buffer starting\n   at BUF.  See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/read.html>.  */\n# if @REPLACE_READ@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef read\n#   define read rpl_read\n#  endif\n_GL_FUNCDECL_RPL (read, ssize_t, (int fd, void *buf, size_t count)\n                                 _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (read, ssize_t, (int fd, void *buf, size_t count));\n# else\n/* Need to cast, because on mingw, the third parameter is\n                                                          unsigned int count\n   and the return type is 'int'.  */\n_GL_CXXALIAS_SYS_CAST (read, ssize_t, (int fd, void *buf, size_t count));\n# endif\n_GL_CXXALIASWARN (read);\n#endif\n\n\n#if @GNULIB_READLINK@\n/* Read the contents of the symbolic link FILE and place the first BUFSIZE\n   bytes of it into BUF.  Return the number of bytes placed into BUF if\n   successful, otherwise -1 and errno set.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/readlink.html>.  */\n# if @REPLACE_READLINK@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define readlink rpl_readlink\n#  endif\n_GL_FUNCDECL_RPL (readlink, ssize_t,\n                  (const char *file, char *buf, size_t bufsize)\n                  _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (readlink, ssize_t,\n                  (const char *file, char *buf, size_t bufsize));\n# else\n#  if !@HAVE_READLINK@\n_GL_FUNCDECL_SYS (readlink, ssize_t,\n                  (const char *file, char *buf, size_t bufsize)\n                  _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (readlink, ssize_t,\n                  (const char *file, char *buf, size_t bufsize));\n# endif\n_GL_CXXALIASWARN (readlink);\n#elif defined GNULIB_POSIXCHECK\n# undef readlink\n# if HAVE_RAW_DECL_READLINK\n_GL_WARN_ON_USE (readlink, \"readlink is unportable - \"\n                 \"use gnulib module readlink for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_READLINKAT@\n# if @REPLACE_READLINKAT@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define readlinkat rpl_readlinkat\n#  endif\n_GL_FUNCDECL_RPL (readlinkat, ssize_t,\n                  (int fd, char const *file, char *buf, size_t len)\n                  _GL_ARG_NONNULL ((2, 3)));\n_GL_CXXALIAS_RPL (readlinkat, ssize_t,\n                  (int fd, char const *file, char *buf, size_t len));\n# else\n#  if !@HAVE_READLINKAT@\n_GL_FUNCDECL_SYS (readlinkat, ssize_t,\n                  (int fd, char const *file, char *buf, size_t len)\n                  _GL_ARG_NONNULL ((2, 3)));\n#  endif\n_GL_CXXALIAS_SYS (readlinkat, ssize_t,\n                  (int fd, char const *file, char *buf, size_t len));\n# endif\n_GL_CXXALIASWARN (readlinkat);\n#elif defined GNULIB_POSIXCHECK\n# undef readlinkat\n# if HAVE_RAW_DECL_READLINKAT\n_GL_WARN_ON_USE (readlinkat, \"readlinkat is not portable - \"\n                 \"use gnulib module readlinkat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_RMDIR@\n/* Remove the directory DIR.  */\n# if @REPLACE_RMDIR@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   define rmdir rpl_rmdir\n#  endif\n_GL_FUNCDECL_RPL (rmdir, int, (char const *name) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (rmdir, int, (char const *name));\n# else\n_GL_CXXALIAS_SYS (rmdir, int, (char const *name));\n# endif\n_GL_CXXALIASWARN (rmdir);\n#elif defined GNULIB_POSIXCHECK\n# undef rmdir\n# if HAVE_RAW_DECL_RMDIR\n_GL_WARN_ON_USE (rmdir, \"rmdir is unportable - \"\n                 \"use gnulib module rmdir for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_SETHOSTNAME@\n/* Set the host name of the machine.\n   The host name may or may not be fully qualified.\n\n   Put LEN bytes of NAME into the host name.\n   Return 0 if successful, otherwise, set errno and return -1.\n\n   Platforms with no ability to set the hostname return -1 and set\n   errno = ENOSYS.  */\n# if !@HAVE_SETHOSTNAME@ || !@HAVE_DECL_SETHOSTNAME@\n_GL_FUNCDECL_SYS (sethostname, int, (const char *name, size_t len)\n                                    _GL_ARG_NONNULL ((1)));\n# endif\n/* Need to cast, because on Solaris 11 2011-10, Mac OS X 10.5, IRIX 6.5\n   and FreeBSD 6.4 the second parameter is int.  On Solaris 11\n   2011-10, the first parameter is not const.  */\n_GL_CXXALIAS_SYS_CAST (sethostname, int, (const char *name, size_t len));\n_GL_CXXALIASWARN (sethostname);\n#elif defined GNULIB_POSIXCHECK\n# undef sethostname\n# if HAVE_RAW_DECL_SETHOSTNAME\n_GL_WARN_ON_USE (sethostname, \"sethostname is unportable - \"\n                 \"use gnulib module sethostname for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_SLEEP@\n/* Pause the execution of the current thread for N seconds.\n   Returns the number of seconds left to sleep.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/sleep.html>.  */\n# if @REPLACE_SLEEP@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef sleep\n#   define sleep rpl_sleep\n#  endif\n_GL_FUNCDECL_RPL (sleep, unsigned int, (unsigned int n));\n_GL_CXXALIAS_RPL (sleep, unsigned int, (unsigned int n));\n# else\n#  if !@HAVE_SLEEP@\n_GL_FUNCDECL_SYS (sleep, unsigned int, (unsigned int n));\n#  endif\n_GL_CXXALIAS_SYS (sleep, unsigned int, (unsigned int n));\n# endif\n_GL_CXXALIASWARN (sleep);\n#elif defined GNULIB_POSIXCHECK\n# undef sleep\n# if HAVE_RAW_DECL_SLEEP\n_GL_WARN_ON_USE (sleep, \"sleep is unportable - \"\n                 \"use gnulib module sleep for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_SYMLINK@\n# if @REPLACE_SYMLINK@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef symlink\n#   define symlink rpl_symlink\n#  endif\n_GL_FUNCDECL_RPL (symlink, int, (char const *contents, char const *file)\n                                _GL_ARG_NONNULL ((1, 2)));\n_GL_CXXALIAS_RPL (symlink, int, (char const *contents, char const *file));\n# else\n#  if !@HAVE_SYMLINK@\n_GL_FUNCDECL_SYS (symlink, int, (char const *contents, char const *file)\n                                _GL_ARG_NONNULL ((1, 2)));\n#  endif\n_GL_CXXALIAS_SYS (symlink, int, (char const *contents, char const *file));\n# endif\n_GL_CXXALIASWARN (symlink);\n#elif defined GNULIB_POSIXCHECK\n# undef symlink\n# if HAVE_RAW_DECL_SYMLINK\n_GL_WARN_ON_USE (symlink, \"symlink is not portable - \"\n                 \"use gnulib module symlink for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_SYMLINKAT@\n# if @REPLACE_SYMLINKAT@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef symlinkat\n#   define symlinkat rpl_symlinkat\n#  endif\n_GL_FUNCDECL_RPL (symlinkat, int,\n                  (char const *contents, int fd, char const *file)\n                  _GL_ARG_NONNULL ((1, 3)));\n_GL_CXXALIAS_RPL (symlinkat, int,\n                  (char const *contents, int fd, char const *file));\n# else\n#  if !@HAVE_SYMLINKAT@\n_GL_FUNCDECL_SYS (symlinkat, int,\n                  (char const *contents, int fd, char const *file)\n                  _GL_ARG_NONNULL ((1, 3)));\n#  endif\n_GL_CXXALIAS_SYS (symlinkat, int,\n                  (char const *contents, int fd, char const *file));\n# endif\n_GL_CXXALIASWARN (symlinkat);\n#elif defined GNULIB_POSIXCHECK\n# undef symlinkat\n# if HAVE_RAW_DECL_SYMLINKAT\n_GL_WARN_ON_USE (symlinkat, \"symlinkat is not portable - \"\n                 \"use gnulib module symlinkat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_TTYNAME_R@\n/* Store at most BUFLEN characters of the pathname of the terminal FD is\n   open on in BUF.  Return 0 on success, otherwise an error number.  */\n# if @REPLACE_TTYNAME_R@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef ttyname_r\n#   define ttyname_r rpl_ttyname_r\n#  endif\n_GL_FUNCDECL_RPL (ttyname_r, int,\n                  (int fd, char *buf, size_t buflen) _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (ttyname_r, int,\n                  (int fd, char *buf, size_t buflen));\n# else\n#  if !@HAVE_DECL_TTYNAME_R@\n_GL_FUNCDECL_SYS (ttyname_r, int,\n                  (int fd, char *buf, size_t buflen) _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (ttyname_r, int,\n                  (int fd, char *buf, size_t buflen));\n# endif\n_GL_CXXALIASWARN (ttyname_r);\n#elif defined GNULIB_POSIXCHECK\n# undef ttyname_r\n# if HAVE_RAW_DECL_TTYNAME_R\n_GL_WARN_ON_USE (ttyname_r, \"ttyname_r is not portable - \"\n                 \"use gnulib module ttyname_r for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_UNLINK@\n# if @REPLACE_UNLINK@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef unlink\n#   define unlink rpl_unlink\n#  endif\n_GL_FUNCDECL_RPL (unlink, int, (char const *file) _GL_ARG_NONNULL ((1)));\n_GL_CXXALIAS_RPL (unlink, int, (char const *file));\n# else\n_GL_CXXALIAS_SYS (unlink, int, (char const *file));\n# endif\n_GL_CXXALIASWARN (unlink);\n#elif defined GNULIB_POSIXCHECK\n# undef unlink\n# if HAVE_RAW_DECL_UNLINK\n_GL_WARN_ON_USE (unlink, \"unlink is not portable - \"\n                 \"use gnulib module unlink for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_UNLINKAT@\n# if @REPLACE_UNLINKAT@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef unlinkat\n#   define unlinkat rpl_unlinkat\n#  endif\n_GL_FUNCDECL_RPL (unlinkat, int, (int fd, char const *file, int flag)\n                                 _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (unlinkat, int, (int fd, char const *file, int flag));\n# else\n#  if !@HAVE_UNLINKAT@\n_GL_FUNCDECL_SYS (unlinkat, int, (int fd, char const *file, int flag)\n                                 _GL_ARG_NONNULL ((2)));\n#  endif\n_GL_CXXALIAS_SYS (unlinkat, int, (int fd, char const *file, int flag));\n# endif\n_GL_CXXALIASWARN (unlinkat);\n#elif defined GNULIB_POSIXCHECK\n# undef unlinkat\n# if HAVE_RAW_DECL_UNLINKAT\n_GL_WARN_ON_USE (unlinkat, \"unlinkat is not portable - \"\n                 \"use gnulib module openat for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_USLEEP@\n/* Pause the execution of the current thread for N microseconds.\n   Returns 0 on completion, or -1 on range error.\n   See the POSIX:2001 specification\n   <http://www.opengroup.org/susv3xsh/usleep.html>.  */\n# if @REPLACE_USLEEP@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef usleep\n#   define usleep rpl_usleep\n#  endif\n_GL_FUNCDECL_RPL (usleep, int, (useconds_t n));\n_GL_CXXALIAS_RPL (usleep, int, (useconds_t n));\n# else\n#  if !@HAVE_USLEEP@\n_GL_FUNCDECL_SYS (usleep, int, (useconds_t n));\n#  endif\n_GL_CXXALIAS_SYS (usleep, int, (useconds_t n));\n# endif\n_GL_CXXALIASWARN (usleep);\n#elif defined GNULIB_POSIXCHECK\n# undef usleep\n# if HAVE_RAW_DECL_USLEEP\n_GL_WARN_ON_USE (usleep, \"usleep is unportable - \"\n                 \"use gnulib module usleep for portability\");\n# endif\n#endif\n\n\n#if @GNULIB_WRITE@\n/* Write up to COUNT bytes starting at BUF to file descriptor FD.\n   See the POSIX:2008 specification\n   <http://pubs.opengroup.org/onlinepubs/9699919799/functions/write.html>.  */\n# if @REPLACE_WRITE@\n#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)\n#   undef write\n#   define write rpl_write\n#  endif\n_GL_FUNCDECL_RPL (write, ssize_t, (int fd, const void *buf, size_t count)\n                                  _GL_ARG_NONNULL ((2)));\n_GL_CXXALIAS_RPL (write, ssize_t, (int fd, const void *buf, size_t count));\n# else\n/* Need to cast, because on mingw, the third parameter is\n                                                             unsigned int count\n   and the return type is 'int'.  */\n_GL_CXXALIAS_SYS_CAST (write, ssize_t, (int fd, const void *buf, size_t count));\n# endif\n_GL_CXXALIASWARN (write);\n#endif\n\n_GL_INLINE_HEADER_END\n\n#endif /* _@GUARD_PREFIX@_UNISTD_H */\n#endif /* _GL_INCLUDING_UNISTD_H */\n#endif /* _@GUARD_PREFIX@_UNISTD_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/unitypes.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* Elementary types and macros for the GNU UniString library.\n   Copyright (C) 2002, 2005-2006, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify it\n   under the terms of the GNU General Public License as published\n   by the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _UNITYPES_H\n#define _UNITYPES_H\n\n/* Get uint8_t, uint16_t, uint32_t.  */\n#include <stdint.h>\n\n/* Type representing a Unicode character.  */\ntypedef uint32_t ucs4_t;\n\n/* Attribute of a function whose result depends only on the arguments\n   (not pointers!) and which has no side effects.  */\n#ifndef _UC_ATTRIBUTE_CONST\n# if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)\n#  define _UC_ATTRIBUTE_CONST __attribute__ ((__const__))\n# else\n#  define _UC_ATTRIBUTE_CONST\n# endif\n#endif\n\n/* Attribute of a function whose result depends only on the arguments\n   (possibly pointers) and global memory, and which has no side effects.  */\n#ifndef _UC_ATTRIBUTE_PURE\n# if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)\n#  define _UC_ATTRIBUTE_PURE __attribute__ ((__pure__))\n# else\n#  define _UC_ATTRIBUTE_PURE\n# endif\n#endif\n\n#endif /* _UNITYPES_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/unitypes.in.h",
    "content": "/* Elementary types and macros for the GNU UniString library.\n   Copyright (C) 2002, 2005-2006, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify it\n   under the terms of the GNU General Public License as published\n   by the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _UNITYPES_H\n#define _UNITYPES_H\n\n/* Get uint8_t, uint16_t, uint32_t.  */\n#include <stdint.h>\n\n/* Type representing a Unicode character.  */\ntypedef uint32_t ucs4_t;\n\n/* Attribute of a function whose result depends only on the arguments\n   (not pointers!) and which has no side effects.  */\n#ifndef _UC_ATTRIBUTE_CONST\n# if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)\n#  define _UC_ATTRIBUTE_CONST __attribute__ ((__const__))\n# else\n#  define _UC_ATTRIBUTE_CONST\n# endif\n#endif\n\n/* Attribute of a function whose result depends only on the arguments\n   (possibly pointers) and global memory, and which has no side effects.  */\n#ifndef _UC_ATTRIBUTE_PURE\n# if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)\n#  define _UC_ATTRIBUTE_PURE __attribute__ ((__pure__))\n# else\n#  define _UC_ATTRIBUTE_PURE\n# endif\n#endif\n\n#endif /* _UNITYPES_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/uniwidth/.dirstamp",
    "content": ""
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/uniwidth/cjk.h",
    "content": "/* Test for CJK encoding.\n   Copyright (C) 2001-2002, 2005-2007, 2009-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2002.\n\n   This program is free software: you can redistribute it and/or modify it\n   under the terms of the GNU General Public License as published\n   by the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include \"streq.h\"\n\nstatic int\nis_cjk_encoding (const char *encoding)\n{\n  if (0\n      /* Legacy Japanese encodings */\n      || STREQ_OPT (encoding, \"EUC-JP\", 'E', 'U', 'C', '-', 'J', 'P', 0, 0, 0)\n      /* Legacy Chinese encodings */\n      || STREQ_OPT (encoding, \"GB2312\", 'G', 'B', '2', '3', '1', '2', 0, 0, 0)\n      || STREQ_OPT (encoding, \"GBK\", 'G', 'B', 'K', 0, 0, 0, 0, 0, 0)\n      || STREQ_OPT (encoding, \"EUC-TW\", 'E', 'U', 'C', '-', 'T', 'W', 0, 0, 0)\n      || STREQ_OPT (encoding, \"BIG5\", 'B', 'I', 'G', '5', 0, 0, 0, 0, 0)\n      /* Legacy Korean encodings */\n      || STREQ_OPT (encoding, \"EUC-KR\", 'E', 'U', 'C', '-', 'K', 'R', 0, 0, 0)\n      || STREQ_OPT (encoding, \"CP949\", 'C', 'P', '9', '4', '9', 0, 0, 0, 0)\n      || STREQ_OPT (encoding, \"JOHAB\", 'J', 'O', 'H', 'A', 'B', 0, 0, 0, 0))\n    return 1;\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/uniwidth/width.c",
    "content": "/* Determine display width of Unicode character.\n   Copyright (C) 2001-2002, 2006-2017 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2002.\n\n   This program is free software: you can redistribute it and/or modify it\n   under the terms of the GNU General Public License as published\n   by the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include \"uniwidth.h\"\n\n#include \"cjk.h\"\n\n/*\n * Non-spacing attribute table.\n * Consists of:\n * - Non-spacing characters; generated from PropList.txt or\n *   \"grep '^[^;]*;[^;]*;[^;]*;[^;]*;NSM;' UnicodeData.txt\"\n * - Format control characters; generated from\n *   \"grep '^[^;]*;[^;]*;Cf;' UnicodeData.txt\"\n * - Zero width characters; generated from\n *   \"grep '^[^;]*;ZERO WIDTH ' UnicodeData.txt\"\n */\nstatic const unsigned char nonspacing_table_data[36*64] = {\n  /* 0x0000-0x01ff */\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, /* 0x0000-0x003f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, /* 0x0040-0x007f */\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x20, 0x00, 0x00, /* 0x0080-0x00bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00c0-0x00ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0100-0x013f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0140-0x017f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0180-0x01bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x01c0-0x01ff */\n  /* 0x0200-0x03ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0200-0x023f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0240-0x027f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0280-0x02bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x02c0-0x02ff */\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 0x0300-0x033f */\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, /* 0x0340-0x037f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0380-0x03bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x03c0-0x03ff */\n  /* 0x0400-0x05ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0400-0x043f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0440-0x047f */\n  0xf8, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0480-0x04bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x04c0-0x04ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0500-0x053f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0540-0x057f */\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xbf, /* 0x0580-0x05bf */\n  0xb6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x05c0-0x05ff */\n  /* 0x0600-0x07ff */\n  0x3f, 0x00, 0xff, 0x17, 0x00, 0x00, 0x00, 0x00, /* 0x0600-0x063f */\n  0x00, 0xf8, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, /* 0x0640-0x067f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0680-0x06bf */\n  0x00, 0x00, 0xc0, 0xbf, 0x9f, 0x3d, 0x00, 0x00, /* 0x06c0-0x06ff */\n  0x00, 0x80, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, /* 0x0700-0x073f */\n  0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0740-0x077f */\n  0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0x01, 0x00, /* 0x0780-0x07bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x0f, 0x00, /* 0x07c0-0x07ff */\n  /* 0x0800-0x09ff */\n  0x00, 0x00, 0xc0, 0xfb, 0xef, 0x3e, 0x00, 0x00, /* 0x0800-0x083f */\n  0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, /* 0x0840-0x087f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0880-0x08bf */\n  0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, /* 0x08c0-0x08ff */\n  0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, /* 0x0900-0x093f */\n  0xfe, 0x21, 0xfe, 0x00, 0x0c, 0x00, 0x00, 0x00, /* 0x0940-0x097f */\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, /* 0x0980-0x09bf */\n  0x1e, 0x20, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, /* 0x09c0-0x09ff */\n  /* 0x0a00-0x0bff */\n  0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, /* 0x0a00-0x0a3f */\n  0x86, 0x39, 0x02, 0x00, 0x00, 0x00, 0x23, 0x00, /* 0x0a40-0x0a7f */\n  0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, /* 0x0a80-0x0abf */\n  0xbe, 0x21, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, /* 0x0ac0-0x0aff */\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, /* 0x0b00-0x0b3f */\n  0x1e, 0x20, 0x40, 0x00, 0x0c, 0x00, 0x00, 0x00, /* 0x0b40-0x0b7f */\n  0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0b80-0x0bbf */\n  0x01, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0bc0-0x0bff */\n  /* 0x0c00-0x0dff */\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, /* 0x0c00-0x0c3f */\n  0xc1, 0x3d, 0x60, 0x00, 0x0c, 0x00, 0x00, 0x00, /* 0x0c40-0x0c7f */\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, /* 0x0c80-0x0cbf */\n  0x00, 0x30, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, /* 0x0cc0-0x0cff */\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0d00-0x0d3f */\n  0x1e, 0x20, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, /* 0x0d40-0x0d7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0d80-0x0dbf */\n  0x00, 0x04, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0dc0-0x0dff */\n  /* 0x0e00-0x0fff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2, 0x07, /* 0x0e00-0x0e3f */\n  0x80, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0e40-0x0e7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2, 0x1b, /* 0x0e80-0x0ebf */\n  0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0ec0-0x0eff */\n  0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0xa0, 0x02, /* 0x0f00-0x0f3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x7f, /* 0x0f40-0x0f7f */\n  0xdf, 0xe0, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x1f, /* 0x0f80-0x0fbf */\n  0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0fc0-0x0fff */\n  /* 0x1000-0x11ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xfd, 0x66, /* 0x1000-0x103f */\n  0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x1e, 0x00, /* 0x1040-0x107f */\n  0x64, 0x20, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, /* 0x1080-0x10bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10c0-0x10ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1100-0x113f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1140-0x117f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1180-0x11bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x11c0-0x11ff */\n  /* 0x1200-0x13ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1200-0x123f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1240-0x127f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1280-0x12bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x12c0-0x12ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1300-0x133f */\n  0x00, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, /* 0x1340-0x137f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1380-0x13bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x13c0-0x13ff */\n  /* 0x1600-0x17ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1600-0x163f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1640-0x167f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1680-0x16bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16c0-0x16ff */\n  0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1c, 0x00, /* 0x1700-0x173f */\n  0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x00, /* 0x1740-0x177f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x3f, /* 0x1780-0x17bf */\n  0x40, 0xfe, 0x0f, 0x20, 0x00, 0x00, 0x00, 0x00, /* 0x17c0-0x17ff */\n  /* 0x1800-0x19ff */\n  0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1800-0x183f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1840-0x187f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, /* 0x1880-0x18bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x18c0-0x18ff */\n  0x00, 0x00, 0x00, 0x00, 0x87, 0x01, 0x04, 0x0e, /* 0x1900-0x193f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1940-0x197f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1980-0x19bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x19c0-0x19ff */\n  /* 0x1a00-0x1bff */\n  0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x00, 0x00, /* 0x1a00-0x1a3f */\n  0x00, 0x00, 0x40, 0x7f, 0xe5, 0x1f, 0xf8, 0x9f, /* 0x1a40-0x1a7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x7f, /* 0x1a80-0x1abf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1ac0-0x1aff */\n  0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x17, /* 0x1b00-0x1b3f */\n  0x04, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x0f, 0x00, /* 0x1b40-0x1b7f */\n  0x03, 0x00, 0x00, 0x00, 0x3c, 0x3b, 0x00, 0x00, /* 0x1b80-0x1bbf */\n  0x00, 0x00, 0x00, 0x00, 0x40, 0xa3, 0x03, 0x00, /* 0x1bc0-0x1bff */\n  /* 0x1c00-0x1dff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xcf, 0x00, /* 0x1c00-0x1c3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1c40-0x1c7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1c80-0x1cbf */\n  0x00, 0x00, 0xf7, 0xff, 0xfd, 0x21, 0x10, 0x03, /* 0x1cc0-0x1cff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d00-0x1d3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d40-0x1d7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d80-0x1dbf */\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xf0, /* 0x1dc0-0x1dff */\n  /* 0x2000-0x21ff */\n  0x00, 0xf8, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, /* 0x2000-0x203f */\n  0x00, 0x00, 0x00, 0x00, 0xdf, 0xff, 0x00, 0x00, /* 0x2040-0x207f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x2080-0x20bf */\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, /* 0x20c0-0x20ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x2100-0x213f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x2140-0x217f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x2180-0x21bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x21c0-0x21ff */\n  /* 0x2c00-0x2dff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x2c00-0x2c3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x2c40-0x2c7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x2c80-0x2cbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, /* 0x2cc0-0x2cff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x2d00-0x2d3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, /* 0x2d40-0x2d7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x2d80-0x2dbf */\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, /* 0x2dc0-0x2dff */\n  /* 0x3000-0x31ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, /* 0x3000-0x303f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x3040-0x307f */\n  0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, /* 0x3080-0x30bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30c0-0x30ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x3100-0x313f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x3140-0x317f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x3180-0x31bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x31c0-0x31ff */\n  /* 0xa600-0xa7ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa600-0xa63f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xf7, 0x3f, /* 0xa640-0xa67f */\n  0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, /* 0xa680-0xa6bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, /* 0xa6c0-0xa6ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa700-0xa73f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa740-0xa77f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa780-0xa7bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa7c0-0xa7ff */\n  /* 0xa800-0xa9ff */\n  0x44, 0x08, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, /* 0xa800-0xa83f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa840-0xa87f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa880-0xa8bf */\n  0x10, 0x00, 0x00, 0x00, 0xff, 0xff, 0x03, 0x00, /* 0xa8c0-0xa8ff */\n  0x00, 0x00, 0x00, 0x00, 0xc0, 0x3f, 0x00, 0x00, /* 0xa900-0xa93f */\n  0x80, 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xa940-0xa97f */\n  0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x13, /* 0xa980-0xa9bf */\n  0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, /* 0xa9c0-0xa9ff */\n  /* 0xaa00-0xabff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x66, 0x00, /* 0xaa00-0xaa3f */\n  0x08, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, /* 0xaa40-0xaa7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9d, 0xc1, /* 0xaa80-0xaabf */\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x30, 0x40, 0x00, /* 0xaac0-0xaaff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xab00-0xab3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xab40-0xab7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xab80-0xabbf */\n  0x00, 0x00, 0x00, 0x00, 0x20, 0x21, 0x00, 0x00, /* 0xabc0-0xabff */\n  /* 0xfa00-0xfbff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xfa00-0xfa3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xfa40-0xfa7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xfa80-0xfabf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xfac0-0xfaff */\n  0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, /* 0xfb00-0xfb3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xfb40-0xfb7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xfb80-0xfbbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xfbc0-0xfbff */\n  /* 0xfe00-0xffff */\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, /* 0xfe00-0xfe3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xfe40-0xfe7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xfe80-0xfebf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, /* 0xfec0-0xfeff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xff00-0xff3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xff40-0xff7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0xff80-0xffbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, /* 0xffc0-0xffff */\n  /* 0x10000-0x101ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10000-0x1003f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10040-0x1007f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10080-0x100bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x100c0-0x100ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10100-0x1013f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10140-0x1017f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10180-0x101bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, /* 0x101c0-0x101ff */\n  /* 0x10200-0x103ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10200-0x1023f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10240-0x1027f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10280-0x102bf */\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, /* 0x102c0-0x102ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10300-0x1033f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x07, /* 0x10340-0x1037f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10380-0x103bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x103c0-0x103ff */\n  /* 0x10a00-0x10bff */\n  0x6e, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, /* 0x10a00-0x10a3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10a40-0x10a7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10a80-0x10abf */\n  0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, /* 0x10ac0-0x10aff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10b00-0x10b3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10b40-0x10b7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10b80-0x10bbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10bc0-0x10bff */\n  /* 0x11000-0x111ff */\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, /* 0x11000-0x1103f */\n  0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, /* 0x11040-0x1107f */\n  0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x26, /* 0x11080-0x110bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x110c0-0x110ff */\n  0x07, 0x00, 0x00, 0x00, 0x80, 0xef, 0x1f, 0x00, /* 0x11100-0x1113f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, /* 0x11140-0x1117f */\n  0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x7f, /* 0x11180-0x111bf */\n  0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x111c0-0x111ff */\n  /* 0x11200-0x113ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xd3, 0x00, /* 0x11200-0x1123f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x11240-0x1127f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x11280-0x112bf */\n  0x00, 0x00, 0x00, 0x80, 0xf8, 0x07, 0x00, 0x00, /* 0x112c0-0x112ff */\n  0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, /* 0x11300-0x1133f */\n  0x01, 0x00, 0x00, 0x00, 0xc0, 0x1f, 0x1f, 0x00, /* 0x11340-0x1137f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x11380-0x113bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x113c0-0x113ff */\n  /* 0x11400-0x115ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x11400-0x1143f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x11440-0x1147f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x85, /* 0x11480-0x114bf */\n  0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x114c0-0x114ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x11500-0x1153f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x11540-0x1157f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0xb0, /* 0x11580-0x115bf */\n  0x01, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, /* 0x115c0-0x115ff */\n  /* 0x11600-0x117ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xa7, /* 0x11600-0x1163f */\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x11640-0x1167f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0xbf, 0x00, /* 0x11680-0x116bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x116c0-0x116ff */\n  0x00, 0x00, 0x00, 0xe0, 0xbc, 0x0f, 0x00, 0x00, /* 0x11700-0x1173f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x11740-0x1177f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x11780-0x117bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x117c0-0x117ff */\n  /* 0x16a00-0x16bff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16a00-0x16a3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16a40-0x16a7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16a80-0x16abf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00, /* 0x16ac0-0x16aff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x00, /* 0x16b00-0x16b3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16b40-0x16b7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16b80-0x16bbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16bc0-0x16bff */\n  /* 0x16e00-0x16fff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16e00-0x16e3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16e40-0x16e7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16e80-0x16ebf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16ec0-0x16eff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16f00-0x16f3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16f40-0x16f7f */\n  0x00, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16f80-0x16fbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x16fc0-0x16fff */\n  /* 0x1bc00-0x1bdff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1bc00-0x1bc3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1bc40-0x1bc7f */\n  0x00, 0x00, 0x00, 0x60, 0x0f, 0x00, 0x00, 0x00, /* 0x1bc80-0x1bcbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1bcc0-0x1bcff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1bd00-0x1bd3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1bd40-0x1bd7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1bd80-0x1bdbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1bdc0-0x1bdff */\n  /* 0x1d000-0x1d1ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d000-0x1d03f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d040-0x1d07f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d080-0x1d0bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d0c0-0x1d0ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d100-0x1d13f */\n  0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0xf8, 0xff, /* 0x1d140-0x1d17f */\n  0xe7, 0x0f, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, /* 0x1d180-0x1d1bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d1c0-0x1d1ff */\n  /* 0x1d200-0x1d3ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d200-0x1d23f */\n  0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d240-0x1d27f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d280-0x1d2bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d2c0-0x1d2ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d300-0x1d33f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d340-0x1d37f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d380-0x1d3bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1d3c0-0x1d3ff */\n  /* 0x1da00-0x1dbff */\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xf8, /* 0x1da00-0x1da3f */\n  0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0x20, 0x00, /* 0x1da40-0x1da7f */\n  0x10, 0x00, 0x00, 0xf8, 0xfe, 0xff, 0x00, 0x00, /* 0x1da80-0x1dabf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1dac0-0x1daff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1db00-0x1db3f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1db40-0x1db7f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1db80-0x1dbbf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1dbc0-0x1dbff */\n  /* 0x1e800-0x1e9ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1e800-0x1e83f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1e840-0x1e87f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1e880-0x1e8bf */\n  0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1e8c0-0x1e8ff */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1e900-0x1e93f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1e940-0x1e97f */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x1e980-0x1e9bf */\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00  /* 0x1e9c0-0x1e9ff */\n};\nstatic const signed char nonspacing_table_ind[248] = {\n   0,  1,  2,  3,  4,  5,  6,  7, /* 0x0000-0x0fff */\n   8,  9, -1, 10, 11, 12, 13, -1, /* 0x1000-0x1fff */\n  14, -1, -1, -1, -1, -1, 15, -1, /* 0x2000-0x2fff */\n  16, -1, -1, -1, -1, -1, -1, -1, /* 0x3000-0x3fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x4000-0x4fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x5000-0x5fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x6000-0x6fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x7000-0x7fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x8000-0x8fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x9000-0x9fff */\n  -1, -1, -1, 17, 18, 19, -1, -1, /* 0xa000-0xafff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0xb000-0xbfff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0xc000-0xcfff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0xd000-0xdfff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0xe000-0xefff */\n  -1, -1, -1, -1, -1, 20, -1, 21, /* 0xf000-0xffff */\n  22, 23, -1, -1, -1, 24, -1, -1, /* 0x10000-0x10fff */\n  25, 26, 27, 28, -1, -1, -1, -1, /* 0x11000-0x11fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x12000-0x12fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x13000-0x13fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x14000-0x14fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x15000-0x15fff */\n  -1, -1, -1, -1, -1, 29, -1, 30, /* 0x16000-0x16fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x17000-0x17fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x18000-0x18fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x19000-0x19fff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x1a000-0x1afff */\n  -1, -1, -1, -1, -1, -1, 31, -1, /* 0x1b000-0x1bfff */\n  -1, -1, -1, -1, -1, -1, -1, -1, /* 0x1c000-0x1cfff */\n  32, 33, -1, -1, -1, 34, -1, -1, /* 0x1d000-0x1dfff */\n  -1, -1, -1, -1, 35, -1, -1, -1  /* 0x1e000-0x1efff */\n};\n\n/* Determine number of column positions required for UC.  */\nint\nuc_width (ucs4_t uc, const char *encoding)\n{\n  /* Test for non-spacing or control character.  */\n  if ((uc >> 9) < 248)\n    {\n      int ind = nonspacing_table_ind[uc >> 9];\n      if (ind >= 0)\n        if ((nonspacing_table_data[64*ind + ((uc >> 3) & 63)] >> (uc & 7)) & 1)\n          {\n            if (uc > 0 && uc < 0xa0)\n              return -1;\n            else\n              return 0;\n          }\n    }\n  else if ((uc >> 9) == (0xe0000 >> 9))\n    {\n      if (uc >= 0xe0100)\n        {\n          if (uc <= 0xe01ef)\n            return 0;\n        }\n      else\n        {\n          if (uc >= 0xe0020 ? uc <= 0xe007f : uc == 0xe0001)\n            return 0;\n        }\n    }\n  /* Test for double-width character.\n   * Generated from \"grep '^[^;]\\{4,5\\};[WF]' EastAsianWidth.txt\"\n   * and            \"grep '^[^;]\\{4,5\\};[^WF]' EastAsianWidth.txt\"\n   */\n  if (uc >= 0x1100\n      && ((uc < 0x1160) /* Hangul Jamo */\n          || (uc >= 0x2329 && uc < 0x232b) /* Angle Brackets */\n          || (uc >= 0x2e80 && uc < 0xa4d0  /* CJK ... Yi */\n              && !(uc == 0x303f) && !(uc >= 0x4dc0 && uc < 0x4e00))\n          || (uc >= 0xac00 && uc < 0xd7a4) /* Hangul Syllables */\n          || (uc >= 0xf900 && uc < 0xfb00) /* CJK Compatibility Ideographs */\n          || (uc >= 0xfe10 && uc < 0xfe20) /* Presentation Forms for Vertical */\n          || (uc >= 0xfe30 && uc < 0xfe70) /* CJK Compatibility Forms */\n          || (uc >= 0xff00 && uc < 0xff61) /* Fullwidth Forms */\n          || (uc >= 0xffe0 && uc < 0xffe7) /* Fullwidth Signs */\n          || (uc >= 0x20000 && uc <= 0x2ffff) /* Supplementary Ideographic Plane */\n          || (uc >= 0x30000 && uc <= 0x3ffff) /* Tertiary Ideographic Plane */\n     )   )\n    return 2;\n  /* In ancient CJK encodings, Cyrillic and most other characters are\n     double-width as well.  */\n  if (uc >= 0x00A1 && uc < 0xFF61 && uc != 0x20A9\n      && is_cjk_encoding (encoding))\n    return 2;\n  return 1;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/uniwidth.h",
    "content": "/* DO NOT EDIT! GENERATED AUTOMATICALLY! */\n/* Display width functions.\n   Copyright (C) 2001-2002, 2005, 2007, 2009-2017 Free Software Foundation,\n   Inc.\n\n   This program is free software: you can redistribute it and/or modify it\n   under the terms of the GNU General Public License as published\n   by the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _UNIWIDTH_H\n#define _UNIWIDTH_H\n\n#include \"unitypes.h\"\n\n/* Get size_t.  */\n#include <stddef.h>\n\n/* Get locale_charset() declaration.  */\n#include \"localcharset.h\"\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Display width.  */\n\n/* These functions are locale dependent.  The encoding argument identifies\n   the encoding (e.g. \"ISO-8859-2\" for Polish).  */\n\n/* Determine number of column positions required for UC.  */\nextern int\n       uc_width (ucs4_t uc, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\n\n/* Determine number of column positions required for first N units\n   (or fewer if S ends before this) in S.  */\nextern int\n       u8_width (const uint8_t *s, size_t n, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\nextern int\n       u16_width (const uint16_t *s, size_t n, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\nextern int\n       u32_width (const uint32_t *s, size_t n, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\n\n/* Determine number of column positions required for S.  */\nextern int\n       u8_strwidth (const uint8_t *s, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\nextern int\n       u16_strwidth (const uint16_t *s, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\nextern int\n       u32_strwidth (const uint32_t *s, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\n\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* _UNIWIDTH_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/uniwidth.in.h",
    "content": "/* Display width functions.\n   Copyright (C) 2001-2002, 2005, 2007, 2009-2017 Free Software Foundation,\n   Inc.\n\n   This program is free software: you can redistribute it and/or modify it\n   under the terms of the GNU General Public License as published\n   by the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _UNIWIDTH_H\n#define _UNIWIDTH_H\n\n#include \"unitypes.h\"\n\n/* Get size_t.  */\n#include <stddef.h>\n\n/* Get locale_charset() declaration.  */\n#include \"localcharset.h\"\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Display width.  */\n\n/* These functions are locale dependent.  The encoding argument identifies\n   the encoding (e.g. \"ISO-8859-2\" for Polish).  */\n\n/* Determine number of column positions required for UC.  */\nextern int\n       uc_width (ucs4_t uc, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\n\n/* Determine number of column positions required for first N units\n   (or fewer if S ends before this) in S.  */\nextern int\n       u8_width (const uint8_t *s, size_t n, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\nextern int\n       u16_width (const uint16_t *s, size_t n, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\nextern int\n       u32_width (const uint32_t *s, size_t n, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\n\n/* Determine number of column positions required for S.  */\nextern int\n       u8_strwidth (const uint8_t *s, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\nextern int\n       u16_strwidth (const uint16_t *s, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\nextern int\n       u32_strwidth (const uint32_t *s, const char *encoding)\n       _UC_ATTRIBUTE_PURE;\n\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* _UNIWIDTH_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/unlocked-io.h",
    "content": "/* Prefer faster, non-thread-safe stdio functions if available.\n\n   Copyright (C) 2001-2004, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Jim Meyering.  */\n\n#ifndef UNLOCKED_IO_H\n# define UNLOCKED_IO_H 1\n\n/* These are wrappers for functions/macros from the GNU C library, and\n   from other C libraries supporting POSIX's optional thread-safe functions.\n\n   The standard I/O functions are thread-safe.  These *_unlocked ones are\n   more efficient but not thread-safe.  That they're not thread-safe is\n   fine since all of the applications in this package are single threaded.\n\n   Also, some code that is shared with the GNU C library may invoke\n   the *_unlocked functions directly.  On hosts that lack those\n   functions, invoke the non-thread-safe versions instead.  */\n\n# include <stdio.h>\n\n# if HAVE_DECL_CLEARERR_UNLOCKED\n#  undef clearerr\n#  define clearerr(x) clearerr_unlocked (x)\n# else\n#  define clearerr_unlocked(x) clearerr (x)\n# endif\n\n# if HAVE_DECL_FEOF_UNLOCKED\n#  undef feof\n#  define feof(x) feof_unlocked (x)\n# else\n#  define feof_unlocked(x) feof (x)\n# endif\n\n# if HAVE_DECL_FERROR_UNLOCKED\n#  undef ferror\n#  define ferror(x) ferror_unlocked (x)\n# else\n#  define ferror_unlocked(x) ferror (x)\n# endif\n\n# if HAVE_DECL_FFLUSH_UNLOCKED\n#  undef fflush\n#  define fflush(x) fflush_unlocked (x)\n# else\n#  define fflush_unlocked(x) fflush (x)\n# endif\n\n# if HAVE_DECL_FGETS_UNLOCKED\n#  undef fgets\n#  define fgets(x,y,z) fgets_unlocked (x,y,z)\n# else\n#  define fgets_unlocked(x,y,z) fgets (x,y,z)\n# endif\n\n# if HAVE_DECL_FPUTC_UNLOCKED\n#  undef fputc\n#  define fputc(x,y) fputc_unlocked (x,y)\n# else\n#  define fputc_unlocked(x,y) fputc (x,y)\n# endif\n\n# if HAVE_DECL_FPUTS_UNLOCKED\n#  undef fputs\n#  define fputs(x,y) fputs_unlocked (x,y)\n# else\n#  define fputs_unlocked(x,y) fputs (x,y)\n# endif\n\n# if HAVE_DECL_FREAD_UNLOCKED\n#  undef fread\n#  define fread(w,x,y,z) fread_unlocked (w,x,y,z)\n# else\n#  define fread_unlocked(w,x,y,z) fread (w,x,y,z)\n# endif\n\n# if HAVE_DECL_FWRITE_UNLOCKED\n#  undef fwrite\n#  define fwrite(w,x,y,z) fwrite_unlocked (w,x,y,z)\n# else\n#  define fwrite_unlocked(w,x,y,z) fwrite (w,x,y,z)\n# endif\n\n# if HAVE_DECL_GETC_UNLOCKED\n#  undef getc\n#  define getc(x) getc_unlocked (x)\n# else\n#  define getc_unlocked(x) getc (x)\n# endif\n\n# if HAVE_DECL_GETCHAR_UNLOCKED\n#  undef getchar\n#  define getchar() getchar_unlocked ()\n# else\n#  define getchar_unlocked() getchar ()\n# endif\n\n# if HAVE_DECL_PUTC_UNLOCKED\n#  undef putc\n#  define putc(x,y) putc_unlocked (x,y)\n# else\n#  define putc_unlocked(x,y) putc (x,y)\n# endif\n\n# if HAVE_DECL_PUTCHAR_UNLOCKED\n#  undef putchar\n#  define putchar(x) putchar_unlocked (x)\n# else\n#  define putchar_unlocked(x) putchar (x)\n# endif\n\n# undef flockfile\n# define flockfile(x) ((void) 0)\n\n# undef ftrylockfile\n# define ftrylockfile(x) 0\n\n# undef funlockfile\n# define funlockfile(x) ((void) 0)\n\n#endif /* UNLOCKED_IO_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/verify.h",
    "content": "/* Compile-time assert-like macros.\n\n   Copyright (C) 2005-2006, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Paul Eggert, Bruno Haible, and Jim Meyering.  */\n\n#ifndef _GL_VERIFY_H\n#define _GL_VERIFY_H\n\n\n/* Define _GL_HAVE__STATIC_ASSERT to 1 if _Static_assert works as per C11.\n   This is supported by GCC 4.6.0 and later, in C mode, and its use\n   here generates easier-to-read diagnostics when verify (R) fails.\n\n   Define _GL_HAVE_STATIC_ASSERT to 1 if static_assert works as per C++11.\n   This will likely be supported by future GCC versions, in C++ mode.\n\n   Use this only with GCC.  If we were willing to slow 'configure'\n   down we could also use it with other compilers, but since this\n   affects only the quality of diagnostics, why bother?  */\n#if (4 < __GNUC__ + (6 <= __GNUC_MINOR__) \\\n     && (201112L <= __STDC_VERSION__  || !defined __STRICT_ANSI__) \\\n     && !defined __cplusplus)\n# define _GL_HAVE__STATIC_ASSERT 1\n#endif\n/* The condition (99 < __GNUC__) is temporary, until we know about the\n   first G++ release that supports static_assert.  */\n#if (99 < __GNUC__) && defined __cplusplus\n# define _GL_HAVE_STATIC_ASSERT 1\n#endif\n\n/* FreeBSD 9.1 <sys/cdefs.h>, included by <stddef.h> and lots of other\n   system headers, defines a conflicting _Static_assert that is no\n   better than ours; override it.  */\n#ifndef _GL_HAVE_STATIC_ASSERT\n# include <stddef.h>\n# undef _Static_assert\n#endif\n\n/* Each of these macros verifies that its argument R is nonzero.  To\n   be portable, R should be an integer constant expression.  Unlike\n   assert (R), there is no run-time overhead.\n\n   If _Static_assert works, verify (R) uses it directly.  Similarly,\n   _GL_VERIFY_TRUE works by packaging a _Static_assert inside a struct\n   that is an operand of sizeof.\n\n   The code below uses several ideas for C++ compilers, and for C\n   compilers that do not support _Static_assert:\n\n   * The first step is ((R) ? 1 : -1).  Given an expression R, of\n     integral or boolean or floating-point type, this yields an\n     expression of integral type, whose value is later verified to be\n     constant and nonnegative.\n\n   * Next this expression W is wrapped in a type\n     struct _gl_verify_type {\n       unsigned int _gl_verify_error_if_negative: W;\n     }.\n     If W is negative, this yields a compile-time error.  No compiler can\n     deal with a bit-field of negative size.\n\n     One might think that an array size check would have the same\n     effect, that is, that the type struct { unsigned int dummy[W]; }\n     would work as well.  However, inside a function, some compilers\n     (such as C++ compilers and GNU C) allow local parameters and\n     variables inside array size expressions.  With these compilers,\n     an array size check would not properly diagnose this misuse of\n     the verify macro:\n\n       void function (int n) { verify (n < 0); }\n\n   * For the verify macro, the struct _gl_verify_type will need to\n     somehow be embedded into a declaration.  To be portable, this\n     declaration must declare an object, a constant, a function, or a\n     typedef name.  If the declared entity uses the type directly,\n     such as in\n\n       struct dummy {...};\n       typedef struct {...} dummy;\n       extern struct {...} *dummy;\n       extern void dummy (struct {...} *);\n       extern struct {...} *dummy (void);\n\n     two uses of the verify macro would yield colliding declarations\n     if the entity names are not disambiguated.  A workaround is to\n     attach the current line number to the entity name:\n\n       #define _GL_CONCAT0(x, y) x##y\n       #define _GL_CONCAT(x, y) _GL_CONCAT0 (x, y)\n       extern struct {...} * _GL_CONCAT (dummy, __LINE__);\n\n     But this has the problem that two invocations of verify from\n     within the same macro would collide, since the __LINE__ value\n     would be the same for both invocations.  (The GCC __COUNTER__\n     macro solves this problem, but is not portable.)\n\n     A solution is to use the sizeof operator.  It yields a number,\n     getting rid of the identity of the type.  Declarations like\n\n       extern int dummy [sizeof (struct {...})];\n       extern void dummy (int [sizeof (struct {...})]);\n       extern int (*dummy (void)) [sizeof (struct {...})];\n\n     can be repeated.\n\n   * Should the implementation use a named struct or an unnamed struct?\n     Which of the following alternatives can be used?\n\n       extern int dummy [sizeof (struct {...})];\n       extern int dummy [sizeof (struct _gl_verify_type {...})];\n       extern void dummy (int [sizeof (struct {...})]);\n       extern void dummy (int [sizeof (struct _gl_verify_type {...})]);\n       extern int (*dummy (void)) [sizeof (struct {...})];\n       extern int (*dummy (void)) [sizeof (struct _gl_verify_type {...})];\n\n     In the second and sixth case, the struct type is exported to the\n     outer scope; two such declarations therefore collide.  GCC warns\n     about the first, third, and fourth cases.  So the only remaining\n     possibility is the fifth case:\n\n       extern int (*dummy (void)) [sizeof (struct {...})];\n\n   * GCC warns about duplicate declarations of the dummy function if\n     -Wredundant-decls is used.  GCC 4.3 and later have a builtin\n     __COUNTER__ macro that can let us generate unique identifiers for\n     each dummy function, to suppress this warning.\n\n   * This implementation exploits the fact that older versions of GCC,\n     which do not support _Static_assert, also do not warn about the\n     last declaration mentioned above.\n\n   * GCC warns if -Wnested-externs is enabled and verify() is used\n     within a function body; but inside a function, you can always\n     arrange to use verify_expr() instead.\n\n   * In C++, any struct definition inside sizeof is invalid.\n     Use a template type to work around the problem.  */\n\n/* Concatenate two preprocessor tokens.  */\n#define _GL_CONCAT(x, y) _GL_CONCAT0 (x, y)\n#define _GL_CONCAT0(x, y) x##y\n\n/* _GL_COUNTER is an integer, preferably one that changes each time we\n   use it.  Use __COUNTER__ if it works, falling back on __LINE__\n   otherwise.  __LINE__ isn't perfect, but it's better than a\n   constant.  */\n#if defined __COUNTER__ && __COUNTER__ != __COUNTER__\n# define _GL_COUNTER __COUNTER__\n#else\n# define _GL_COUNTER __LINE__\n#endif\n\n/* Generate a symbol with the given prefix, making it unique if\n   possible.  */\n#define _GL_GENSYM(prefix) _GL_CONCAT (prefix, _GL_COUNTER)\n\n/* Verify requirement R at compile-time, as an integer constant expression\n   that returns 1.  If R is false, fail at compile-time, preferably\n   with a diagnostic that includes the string-literal DIAGNOSTIC.  */\n\n#define _GL_VERIFY_TRUE(R, DIAGNOSTIC) \\\n   (!!sizeof (_GL_VERIFY_TYPE (R, DIAGNOSTIC)))\n\n#ifdef __cplusplus\n# if !GNULIB_defined_struct__gl_verify_type\ntemplate <int w>\n  struct _gl_verify_type {\n    unsigned int _gl_verify_error_if_negative: w;\n  };\n#  define GNULIB_defined_struct__gl_verify_type 1\n# endif\n# define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \\\n    _gl_verify_type<(R) ? 1 : -1>\n#elif defined _GL_HAVE__STATIC_ASSERT\n# define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \\\n    struct {                                   \\\n      _Static_assert (R, DIAGNOSTIC);          \\\n      int _gl_dummy;                          \\\n    }\n#else\n# define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \\\n    struct { unsigned int _gl_verify_error_if_negative: (R) ? 1 : -1; }\n#endif\n\n/* Verify requirement R at compile-time, as a declaration without a\n   trailing ';'.  If R is false, fail at compile-time, preferably\n   with a diagnostic that includes the string-literal DIAGNOSTIC.\n\n   Unfortunately, unlike C11, this implementation must appear as an\n   ordinary declaration, and cannot appear inside struct { ... }.  */\n\n#ifdef _GL_HAVE__STATIC_ASSERT\n# define _GL_VERIFY _Static_assert\n#else\n# define _GL_VERIFY(R, DIAGNOSTIC)\t\t\t\t       \\\n    extern int (*_GL_GENSYM (_gl_verify_function) (void))\t       \\\n      [_GL_VERIFY_TRUE (R, DIAGNOSTIC)]\n#endif\n\n/* _GL_STATIC_ASSERT_H is defined if this code is copied into assert.h.  */\n#ifdef _GL_STATIC_ASSERT_H\n# if !defined _GL_HAVE__STATIC_ASSERT && !defined _Static_assert\n#  define _Static_assert(R, DIAGNOSTIC) _GL_VERIFY (R, DIAGNOSTIC)\n# endif\n# if !defined _GL_HAVE_STATIC_ASSERT && !defined static_assert\n#  define static_assert _Static_assert /* C11 requires this #define.  */\n# endif\n#endif\n\n/* @assert.h omit start@  */\n\n/* Each of these macros verifies that its argument R is nonzero.  To\n   be portable, R should be an integer constant expression.  Unlike\n   assert (R), there is no run-time overhead.\n\n   There are two macros, since no single macro can be used in all\n   contexts in C.  verify_true (R) is for scalar contexts, including\n   integer constant expression contexts.  verify (R) is for declaration\n   contexts, e.g., the top level.  */\n\n/* Verify requirement R at compile-time, as an integer constant expression.\n   Return 1.  This is equivalent to verify_expr (R, 1).\n\n   verify_true is obsolescent; please use verify_expr instead.  */\n\n#define verify_true(R) _GL_VERIFY_TRUE (R, \"verify_true (\" #R \")\")\n\n/* Verify requirement R at compile-time.  Return the value of the\n   expression E.  */\n\n#define verify_expr(R, E) \\\n   (_GL_VERIFY_TRUE (R, \"verify_expr (\" #R \", \" #E \")\") ? (E) : (E))\n\n/* Verify requirement R at compile-time, as a declaration without a\n   trailing ';'.  */\n\n#define verify(R) _GL_VERIFY (R, \"verify (\" #R \")\")\n\n#ifndef __has_builtin\n# define __has_builtin(x) 0\n#endif\n\n/* Assume that R always holds.  This lets the compiler optimize\n   accordingly.  R should not have side-effects; it may or may not be\n   evaluated.  Behavior is undefined if R is false.  */\n\n#if (__has_builtin (__builtin_unreachable) \\\n     || 4 < __GNUC__ + (5 <= __GNUC_MINOR__))\n# define assume(R) ((R) ? (void) 0 : __builtin_unreachable ())\n#elif 1200 <= _MSC_VER\n# define assume(R) __assume (R)\n#elif ((defined GCC_LINT || defined lint) \\\n       && (__has_builtin (__builtin_trap) \\\n           || 3 < __GNUC__ + (3 < __GNUC_MINOR__ + (4 <= __GNUC_PATCHLEVEL__))))\n  /* Doing it this way helps various packages when configured with\n     --enable-gcc-warnings, which compiles with -Dlint.  It's nicer\n     when 'assume' silences warnings even with older GCCs.  */\n# define assume(R) ((R) ? (void) 0 : __builtin_trap ())\n#else\n# define assume(R) ((void) (0 && (R)))\n#endif\n\n/* @assert.h omit end@  */\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/warn-on-use.h",
    "content": "#ifndef _GL_WARN_ON_USE\n\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n/* A compiler attribute is available in gcc versions 4.3.0 and later.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function __attribute__ ((__warning__ (message)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE(function, message) \\\nextern __typeof__ (function) function\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE(function, message) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, \"string\")\n   is like _GL_WARN_ON_USE (function, \"string\"), except that the function is\n   declared with the given prototype, consisting of return type, parameters,\n   and attributes.\n   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does\n   not work in this case.  */\n#ifndef _GL_WARN_ON_USE_CXX\n# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes \\\n     __attribute__ ((__warning__ (msg)))\n# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING\n/* Verify the existence of the function.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\nextern rettype function parameters_and_attributes\n# else /* Unsupported.  */\n#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \\\n_GL_WARN_EXTERN_C int _gl_warn_on_use\n# endif\n#endif\n\n/* _GL_WARN_EXTERN_C declaration;\n   performs the declaration with C linkage.  */\n#ifndef _GL_WARN_EXTERN_C\n# if defined __cplusplus\n#  define _GL_WARN_EXTERN_C extern \"C\"\n# else\n#  define _GL_WARN_EXTERN_C extern\n# endif\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/xalloc-oversized.h",
    "content": "/* xalloc-oversized.h -- memory allocation size checking\n\n   Copyright (C) 1990-2000, 2003-2004, 2006-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef XALLOC_OVERSIZED_H_\n#define XALLOC_OVERSIZED_H_\n\n#include <stddef.h>\n#include <stdint.h>\n\n/* Default for (non-Clang) compilers that lack __has_builtin.  */\n#ifndef __has_builtin\n# define __has_builtin(x) 0\n#endif\n\n/* True if N * S would overflow in a size_t calculation,\n   or would generate a value larger than PTRDIFF_MAX.\n   This expands to a constant expression if N and S are both constants.\n   By gnulib convention, SIZE_MAX represents overflow in size\n   calculations, so the conservative size_t-based dividend to use here\n   is SIZE_MAX - 1.  */\n#define __xalloc_oversized(n, s) \\\n  ((size_t) (PTRDIFF_MAX < SIZE_MAX ? PTRDIFF_MAX : SIZE_MAX - 1) / (s) < (n))\n\n#if PTRDIFF_MAX < SIZE_MAX\ntypedef ptrdiff_t __xalloc_count_type;\n#else\ntypedef size_t __xalloc_count_type;\n#endif\n\n/* Return 1 if an array of N objects, each of size S, cannot exist\n   reliably due to size or ptrdiff_t arithmetic overflow.  S must be\n   positive and N must be nonnegative.  This is a macro, not a\n   function, so that it works correctly even when SIZE_MAX < N.  */\n\n#if 7 <= __GNUC__ || __has_builtin (__builtin_add_overflow_p)\n# define xalloc_oversized(n, s) \\\n   __builtin_mul_overflow_p (n, s, (__xalloc_count_type) 1)\n#elif ((5 <= __GNUC__ \\\n        || (__has_builtin (__builtin_mul_overflow) \\\n            && __has_builtin (__builtin_constant_p))) \\\n       && !__STRICT_ANSI__)\n# define xalloc_oversized(n, s) \\\n   (__builtin_constant_p (n) && __builtin_constant_p (s) \\\n    ? __xalloc_oversized (n, s) \\\n    : ({ __xalloc_count_type __xalloc_count; \\\n         __builtin_mul_overflow (n, s, &__xalloc_count); }))\n\n/* Other compilers use integer division; this may be slower but is\n   more portable.  */\n#else\n# define xalloc_oversized(n, s) __xalloc_oversized (n, s)\n#endif\n\n#endif /* !XALLOC_OVERSIZED_H_ */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/xalloc.h",
    "content": "/* malloc with out of memory checking.\n   Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.\n   Written by Bruno Haible <haible@clisp.cons.org>, 2001.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#ifndef _XALLOC_H\n#define _XALLOC_H\n\n#include <stddef.h>\n\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n\n/* Defined in xmalloc.c.  */\n\n/* Allocate SIZE bytes of memory dynamically, with error checking.  */\nextern void *xmalloc (size_t size);\n\n/* Allocate memory for NMEMB elements of SIZE bytes, with error checking.\n   SIZE must be > 0.  */\nextern void *xnmalloc (size_t nmemb, size_t size);\n\n/* Allocate SIZE bytes of memory dynamically, with error checking,\n   and zero it.  */\nextern void *xzalloc (size_t size);\n\n/* Allocate memory for NMEMB elements of SIZE bytes, with error checking,\n   and zero it.  */\nextern void *xcalloc (size_t nmemb, size_t size);\n\n/* Change the size of an allocated block of memory PTR to SIZE bytes,\n   with error checking.  If PTR is NULL, run xmalloc.  */\nextern void *xrealloc (void *ptr, size_t size);\n#ifdef __cplusplus\n}\ntemplate <typename T>\n  inline T * xrealloc (T * ptr, size_t size)\n  {\n    return (T *) xrealloc ((void *) ptr, size);\n  }\nextern \"C\" {\n#endif\n\n/* This function is always triggered when memory is exhausted.  It is\n   in charge of honoring the three previous items.  This is the\n   function to call when one wants the program to die because of a\n   memory allocation failure.  */\nextern void xalloc_die (void)\n#if (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5)) && !__STRICT_ANSI__\n     __attribute__ ((__noreturn__))\n#endif\n     ;\n\n/* In the following macros, T must be an elementary or structure/union or\n   typedef'ed type, or a pointer to such a type.  To apply one of the\n   following macros to a function pointer or array type, you need to typedef\n   it first and use the typedef name.  */\n\n/* Allocate an object of type T dynamically, with error checking.  */\n/* extern T *XMALLOC (typename T); */\n#define XMALLOC(T) \\\n  ((T *) xmalloc (sizeof (T)))\n\n/* Allocate memory for NMEMB elements of type T, with error checking.  */\n/* extern T *XNMALLOC (size_t nmemb, typename T); */\n#if HAVE_INLINE\n/* xnmalloc performs a division and multiplication by sizeof (T).  Arrange to\n   perform the division at compile-time and the multiplication with a factor\n   known at compile-time.  */\n# define XNMALLOC(N,T) \\\n   ((T *) (sizeof (T) == 1 \\\n           ? xmalloc (N) \\\n           : xnboundedmalloc(N, (size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / sizeof (T), sizeof (T))))\nstatic inline void *\nxnboundedmalloc (size_t n, size_t bound, size_t s)\n{\n  if (n > bound)\n    xalloc_die ();\n  return xmalloc (n * s);\n}\n#else\n# define XNMALLOC(N,T) \\\n   ((T *) (sizeof (T) == 1 ? xmalloc (N) : xnmalloc (N, sizeof (T))))\n#endif\n\n/* Allocate an object of type T dynamically, with error checking,\n   and zero it.  */\n/* extern T *XZALLOC (typename T); */\n#define XZALLOC(T) \\\n  ((T *) xzalloc (sizeof (T)))\n\n/* Allocate memory for NMEMB elements of type T, with error checking,\n   and zero it.  */\n/* extern T *XCALLOC (size_t nmemb, typename T); */\n#define XCALLOC(N,T) \\\n  ((T *) xcalloc (N, sizeof (T)))\n\n/* Return a pointer to a new buffer of N bytes.  This is like xmalloc,\n   except it returns char *.  */\n#define xcharalloc(N) \\\n  XNMALLOC (N, char)\n\n\n/* Defined in xstrdup.c.  */\n\n/* Return a newly allocated copy of the N bytes of memory starting at P.  */\nextern void *xmemdup (const void *p, size_t n);\n#ifdef __cplusplus\n}\ntemplate <typename T>\n  inline T * xmemdup (const T * p, size_t n)\n  {\n    return (T *) xmemdup ((const void *) p, n);\n  }\nextern \"C\" {\n#endif\n\n/* Return a newly allocated copy of STRING.  */\nextern char *xstrdup (const char *string);\n\n\n/* Return 1 if an array of N objects, each of size S, cannot exist due\n   to size arithmetic overflow.  S must be positive and N must be\n   nonnegative.  This is a macro, not an inline function, so that it\n   works correctly even when SIZE_MAX < N.\n\n   By gnulib convention, SIZE_MAX represents overflow in size\n   calculations, so the conservative dividend to use here is\n   SIZE_MAX - 1, since SIZE_MAX might represent an overflowed value.\n   However, malloc (SIZE_MAX) fails on all known hosts where\n   sizeof (ptrdiff_t) <= sizeof (size_t), so do not bother to test for\n   exactly-SIZE_MAX allocations on such hosts; this avoids a test and\n   branch when S is known to be 1.  */\n# define xalloc_oversized(n, s) \\\n    ((size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / (s) < (n))\n\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif /* _XALLOC_H */\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/xmalloc.c",
    "content": "/* xmalloc.c -- malloc with out of memory checking\n   Copyright (C) 1990-1996, 2000-2003, 2005-2007 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include \"xalloc.h\"\n\n#include <stdlib.h>\n\n#include \"error.h\"\n#include \"gettext.h\"\n\n#define _(str) gettext (str)\n\n\n/* Exit value when the requested amount of memory is not available.\n   The caller may set it to some other value.  */\nint xmalloc_exit_failure = EXIT_FAILURE;\n\nvoid\nxalloc_die ()\n{\n  error (xmalloc_exit_failure, 0, _(\"memory exhausted\"));\n  /* _Noreturn cannot be given to error, since it may return if\n     its first argument is 0.  To help compilers understand the\n     xalloc_die does terminate, call exit. */\n  exit (EXIT_FAILURE);\n}\n\nstatic void *\nfixup_null_alloc (size_t n)\n{\n  void *p;\n\n  p = NULL;\n  if (n == 0)\n    p = malloc ((size_t) 1);\n  if (p == NULL)\n    xalloc_die ();\n  return p;\n}\n\n/* Allocate N bytes of memory dynamically, with error checking.  */\n\nvoid *\nxmalloc (size_t n)\n{\n  void *p;\n\n  p = malloc (n);\n  if (p == NULL)\n    p = fixup_null_alloc (n);\n  return p;\n}\n\n/* Allocate memory for NMEMB elements of SIZE bytes, with error checking.\n   SIZE must be > 0.  */\n\nvoid *\nxnmalloc (size_t nmemb, size_t size)\n{\n  size_t n;\n  void *p;\n\n  if (xalloc_oversized (nmemb, size))\n    xalloc_die ();\n  n = nmemb * size;\n  p = malloc (n);\n  if (p == NULL)\n    p = fixup_null_alloc (n);\n  return p;\n}\n\n/* Allocate SIZE bytes of memory dynamically, with error checking,\n   and zero it.  */\n\nvoid *\nxzalloc (size_t size)\n{\n  void *p;\n\n  p = xmalloc (size);\n  memset (p, 0, size);\n  return p;\n}\n\n/* Allocate memory for N elements of S bytes, with error checking,\n   and zero it.  */\n\nvoid *\nxcalloc (size_t n, size_t s)\n{\n  void *p;\n\n  p = calloc (n, s);\n  if (p == NULL)\n    p = fixup_null_alloc (n);\n  return p;\n}\n\n/* Change the size of an allocated block of memory P to N bytes,\n   with error checking.\n   If P is NULL, run xmalloc.  */\n\nvoid *\nxrealloc (void *p, size_t n)\n{\n  if (p == NULL)\n    return xmalloc (n);\n  p = realloc (p, n);\n  if (p == NULL)\n    p = fixup_null_alloc (n);\n  return p;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/xreadlink.c",
    "content": "/* xreadlink.c -- readlink wrapper to return the link name in malloc'd storage\n\n   Copyright (C) 2001, 2003-2007, 2009-2017 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Jim Meyering <jim@meyering.net>\n   and Bruno Haible <bruno@clisp.org>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include \"xreadlink.h\"\n\n#include <errno.h>\n\n#include \"areadlink.h\"\n#include \"xalloc.h\"\n\n/* Call readlink to get the symbolic link value of FILENAME.\n   Return a pointer to that NUL-terminated string in malloc'd storage.\n   If readlink fails, return NULL and set errno.\n   If realloc fails, or if the link value is longer than SIZE_MAX :-),\n   give a diagnostic and exit.  */\n\nchar *\nxreadlink (char const *filename)\n{\n  char *result = areadlink (filename);\n  if (result == NULL && errno == ENOMEM)\n    xalloc_die ();\n  return result;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/xreadlink.h",
    "content": "/* Reading symbolic links without size limitation.\n\n   Copyright (C) 2001, 2003-2004, 2007, 2009-2017 Free Software Foundation,\n   Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Jim Meyering <jim@meyering.net>  */\n\nextern char *xreadlink (char const *filename);\n\n#if GNULIB_XREADLINKAT\nextern char *xreadlinkat (int fd, char const *filename);\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srclib/xstrdup.c",
    "content": "/* xstrdup.c -- copy a string with out of memory checking\n   Copyright (C) 1990, 1996, 2000-2003, 2005-2006 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include <config.h>\n\n/* Specification.  */\n#include \"xalloc.h\"\n\n#include <string.h>\n\n/* Return a newly allocated copy of the N bytes of memory starting at P.  */\n\nvoid *\nxmemdup (const void *p, size_t n)\n{\n  void *q = xmalloc (n);\n  memcpy (q, p, n);\n  return q;\n}\n\n/* Return a newly allocated copy of STRING.  */\n\nchar *\nxstrdup (const char *string)\n{\n  return strcpy (XNMALLOC (strlen (string) + 1, char), string);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/00gnulib.m4",
    "content": "# 00gnulib.m4 serial 3\ndnl Copyright (C) 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl This file must be named something that sorts before all other\ndnl gnulib-provided .m4 files.  It is needed until such time as we can\ndnl assume Autoconf 2.64, with its improved AC_DEFUN_ONCE and\ndnl m4_divert semantics.\n\n# Until autoconf 2.63, handling of the diversion stack required m4_init\n# to be called first; but this does not happen with aclocal.  Wrapping\n# the entire execution in another layer of the diversion stack fixes this.\n# Worse, prior to autoconf 2.62, m4_wrap depended on the underlying m4\n# for whether it was FIFO or LIFO; in order to properly balance with\n# m4_init, we need to undo our push just before anything wrapped within\n# the m4_init body.  The way to ensure this is to wrap both sides of\n# m4_init with a one-shot macro that does the pop at the right time.\nm4_ifndef([_m4_divert_diversion],\n[m4_divert_push([KILL])\nm4_define([gl_divert_fixup], [m4_divert_pop()m4_define([$0])])\nm4_define([m4_init],\n  [gl_divert_fixup()]m4_defn([m4_init])[gl_divert_fixup()])])\n\n\n# AC_DEFUN_ONCE([NAME], VALUE)\n# ----------------------------\n# Define NAME to expand to VALUE on the first use (whether by direct\n# expansion, or by AC_REQUIRE), and to nothing on all subsequent uses.\n# Avoid bugs in AC_REQUIRE in Autoconf 2.63 and earlier.  This\n# definition is slower than the version in Autoconf 2.64, because it\n# can only use interfaces that existed since 2.59; but it achieves the\n# same effect.  Quoting is necessary to avoid confusing Automake.\nm4_version_prereq([2.63.263], [],\n[m4_define([AC][_DEFUN_ONCE],\n  [AC][_DEFUN([$1],\n    [AC_REQUIRE([_gl_DEFUN_ONCE([$1])],\n      [m4_indir([_gl_DEFUN_ONCE([$1])])])])]dnl\n[AC][_DEFUN([_gl_DEFUN_ONCE([$1])], [$2])])])\n\n# gl_00GNULIB\n# -----------\n# Witness macro that this file has been included.  Needed to force\n# Automake to include this file prior to all other gnulib .m4 files.\nAC_DEFUN([gl_00GNULIB])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/absolute-header.m4",
    "content": "# absolute-header.m4 serial 16\ndnl Copyright (C) 2006-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Derek Price.\n\n# gl_ABSOLUTE_HEADER(HEADER1 HEADER2 ...)\n# ---------------------------------------\n# Find the absolute name of a header file, testing first if the header exists.\n# If the header were sys/inttypes.h, this macro would define\n# ABSOLUTE_SYS_INTTYPES_H to the '\"\"' quoted absolute name of sys/inttypes.h\n# in config.h\n# (e.g. '#define ABSOLUTE_SYS_INTTYPES_H \"///usr/include/sys/inttypes.h\"').\n# The three \"///\" are to pacify Sun C 5.8, which otherwise would say\n# \"warning: #include of /usr/include/... may be non-portable\".\n# Use '\"\"', not '<>', so that the /// cannot be confused with a C99 comment.\n# Note: This macro assumes that the header file is not empty after\n# preprocessing, i.e. it does not only define preprocessor macros but also\n# provides some type/enum definitions or function/variable declarations.\nAC_DEFUN([gl_ABSOLUTE_HEADER],\n[AC_REQUIRE([AC_CANONICAL_HOST])\nAC_LANG_PREPROC_REQUIRE()dnl\ndnl FIXME: gl_absolute_header and ac_header_exists must be used unquoted\ndnl until we can assume autoconf 2.64 or newer.\nm4_foreach_w([gl_HEADER_NAME], [$1],\n  [AS_VAR_PUSHDEF([gl_absolute_header],\n                  [gl_cv_absolute_]m4_defn([gl_HEADER_NAME]))dnl\n  AC_CACHE_CHECK([absolute name of <]m4_defn([gl_HEADER_NAME])[>],\n    m4_defn([gl_absolute_header]),\n    [AS_VAR_PUSHDEF([ac_header_exists],\n                    [ac_cv_header_]m4_defn([gl_HEADER_NAME]))dnl\n    AC_CHECK_HEADERS_ONCE(m4_defn([gl_HEADER_NAME]))dnl\n    if test AS_VAR_GET(ac_header_exists) = yes; then\n      gl_ABSOLUTE_HEADER_ONE(m4_defn([gl_HEADER_NAME]))\n    fi\n    AS_VAR_POPDEF([ac_header_exists])dnl\n    ])dnl\n  AC_DEFINE_UNQUOTED(AS_TR_CPP([ABSOLUTE_]m4_defn([gl_HEADER_NAME])),\n                     [\"AS_VAR_GET(gl_absolute_header)\"],\n                     [Define this to an absolute name of <]m4_defn([gl_HEADER_NAME])[>.])\n  AS_VAR_POPDEF([gl_absolute_header])dnl\n])dnl\n])# gl_ABSOLUTE_HEADER\n\n# gl_ABSOLUTE_HEADER_ONE(HEADER)\n# ------------------------------\n# Like gl_ABSOLUTE_HEADER, except that:\n#   - it assumes that the header exists,\n#   - it uses the current CPPFLAGS,\n#   - it does not cache the result,\n#   - it is silent.\nAC_DEFUN([gl_ABSOLUTE_HEADER_ONE],\n[\n  AC_REQUIRE([AC_CANONICAL_HOST])\n  AC_LANG_CONFTEST([AC_LANG_SOURCE([[#include <]]m4_dquote([$1])[[>]])])\n  dnl AIX \"xlc -E\" and \"cc -E\" omit #line directives for header files\n  dnl that contain only a #include of other header files and no\n  dnl non-comment tokens of their own. This leads to a failure to\n  dnl detect the absolute name of <dirent.h>, <signal.h>, <poll.h>\n  dnl and others. The workaround is to force preservation of comments\n  dnl through option -C. This ensures all necessary #line directives\n  dnl are present. GCC supports option -C as well.\n  case \"$host_os\" in\n    aix*) gl_absname_cpp=\"$ac_cpp -C\" ;;\n    *)    gl_absname_cpp=\"$ac_cpp\" ;;\n  esac\nchangequote(,)\n  case \"$host_os\" in\n    mingw*)\n      dnl For the sake of native Windows compilers (excluding gcc),\n      dnl treat backslash as a directory separator, like /.\n      dnl Actually, these compilers use a double-backslash as\n      dnl directory separator, inside the\n      dnl   # line \"filename\"\n      dnl directives.\n      gl_dirsep_regex='[/\\\\]'\n      ;;\n    *)\n      gl_dirsep_regex='\\/'\n      ;;\n  esac\n  dnl A sed expression that turns a string into a basic regular\n  dnl expression, for use within \"/.../\".\n  gl_make_literal_regex_sed='s,[]$^\\\\.*/[],\\\\&,g'\n  gl_header_literal_regex=`echo '$1' \\\n                           | sed -e \"$gl_make_literal_regex_sed\"`\n  gl_absolute_header_sed=\"/${gl_dirsep_regex}${gl_header_literal_regex}/\"'{\n      s/.*\"\\(.*'\"${gl_dirsep_regex}${gl_header_literal_regex}\"'\\)\".*/\\1/\n      s|^/[^/]|//&|\n      p\n      q\n    }'\nchangequote([,])\n  dnl eval is necessary to expand gl_absname_cpp.\n  dnl Ultrix and Pyramid sh refuse to redirect output of eval,\n  dnl so use subshell.\n  AS_VAR_SET([gl_cv_absolute_]AS_TR_SH([[$1]]),\n[`(eval \"$gl_absname_cpp conftest.$ac_ext\") 2>&AS_MESSAGE_LOG_FD |\n  sed -n \"$gl_absolute_header_sed\"`])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/alloca.m4",
    "content": "# alloca.m4 serial 4 (gettext-0.18.2)\ndnl Copyright (C) 2002-2003, 2006, 2011 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_FUNC_ALLOCA],\n[\n  dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57.\n  AC_REQUIRE([AC_PROG_CPP])\n  AC_REQUIRE([AC_PROG_EGREP])\n\n  AC_REQUIRE([AC_FUNC_ALLOCA])\n  if test $ac_cv_func_alloca_works = no; then\n    gl_PREREQ_ALLOCA\n  fi\n\n  # Define an additional variable used in the Makefile substitution.\n\n  AC_EGREP_CPP([Need own alloca], [\n#if defined __GNUC__ || defined _MSC_VER || !HAVE_ALLOCA_H\n  Need own alloca\n#endif\n    ],\n    ALLOCA_H=alloca.h,\n    ALLOCA_H=)\n  AC_SUBST([ALLOCA_H])\n  AM_CONDITIONAL([GL_GENERATE_ALLOCA_H], [test -n \"$ALLOCA_H\"])\n])\n\n# Prerequisites of lib/alloca.c.\n# STACK_DIRECTION is already handled by AC_FUNC_ALLOCA.\nAC_DEFUN([gl_PREREQ_ALLOCA], [\n  AC_CHECK_HEADERS_ONCE(stdlib.h string.h)\n  :\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/asm-underscore.m4",
    "content": "# asm-underscore.m4 serial 3\ndnl Copyright (C) 2010-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible. Based on as-underscore.m4 in GNU clisp.\n\n# gl_ASM_SYMBOL_PREFIX\n# Tests for the prefix of C symbols at the assembly language level and the\n# linker level. This prefix is either an underscore or empty. Defines the\n# C macro USER_LABEL_PREFIX to this prefix, and sets ASM_SYMBOL_PREFIX to\n# a stringified variant of this prefix.\n\nAC_DEFUN([gl_ASM_SYMBOL_PREFIX],\n[\n  dnl We don't use GCC's __USER_LABEL_PREFIX__ here, because\n  dnl 1. It works only for GCC.\n  dnl 2. It is incorrectly defined on some platforms, in some GCC versions.\n  AC_REQUIRE([gl_C_ASM])\n  AC_CACHE_CHECK(\n    [whether C symbols are prefixed with underscore at the linker level],\n    [gl_cv_prog_as_underscore],\n    [cat > conftest.c <<EOF\n#ifdef __cplusplus\nextern \"C\" int foo (void);\n#endif\nint foo(void) { return 0; }\nEOF\n     # Look for the assembly language name in the .s file.\n     AC_TRY_COMMAND(${CC-cc} $CFLAGS $CPPFLAGS $gl_c_asm_opt conftest.c) >/dev/null 2>&1\n     if LC_ALL=C grep -E '(^|[[^a-zA-Z0-9_]])_foo([[^a-zA-Z0-9_]]|$)' conftest.$gl_asmext >/dev/null; then\n       gl_cv_prog_as_underscore=yes\n     else\n       gl_cv_prog_as_underscore=no\n     fi\n     rm -f conftest*\n    ])\n  if test $gl_cv_prog_as_underscore = yes; then\n    USER_LABEL_PREFIX=_\n  else\n    USER_LABEL_PREFIX=\n  fi\n  AC_DEFINE_UNQUOTED([USER_LABEL_PREFIX], [$USER_LABEL_PREFIX],\n    [Define to the prefix of C symbols at the assembler and linker level,\n     either an underscore or empty.])\n  ASM_SYMBOL_PREFIX='\"'${USER_LABEL_PREFIX}'\"'\n  AC_SUBST([ASM_SYMBOL_PREFIX])\n])\n\n# gl_C_ASM\n# Determines how to produce an assembly language file from C source code.\n# Sets the variables:\n#   gl_asmext - the extension of assembly language output,\n#   gl_c_asm_opt - the C compiler option that produces assembly language output.\n\nAC_DEFUN([gl_C_ASM],\n[\n  AC_EGREP_CPP([MicrosoftCompiler],\n    [\n#ifdef _MSC_VER\nMicrosoftCompiler\n#endif\n    ],\n    [gl_asmext='asm'\n     gl_c_asm_opt='-c -Fa'\n    ],\n    [gl_asmext='s'\n     gl_c_asm_opt='-S'\n    ])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/canonicalize.m4",
    "content": "# canonicalize.m4 serial 28\n\ndnl Copyright (C) 2003-2007, 2009-2017 Free Software Foundation, Inc.\n\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\n# Provides canonicalize_file_name and canonicalize_filename_mode, but does\n# not provide or fix realpath.\nAC_DEFUN([gl_FUNC_CANONICALIZE_FILENAME_MODE],\n[\n  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])\n  AC_CHECK_FUNCS_ONCE([canonicalize_file_name])\n  AC_REQUIRE([gl_DOUBLE_SLASH_ROOT])\n  AC_REQUIRE([gl_FUNC_REALPATH_WORKS])\n  if test $ac_cv_func_canonicalize_file_name = no; then\n    HAVE_CANONICALIZE_FILE_NAME=0\n  else\n    case \"$gl_cv_func_realpath_works\" in\n      *yes) ;;\n      *)    REPLACE_CANONICALIZE_FILE_NAME=1 ;;\n    esac\n  fi\n])\n\n# Provides canonicalize_file_name and realpath.\nAC_DEFUN([gl_CANONICALIZE_LGPL],\n[\n  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])\n  AC_REQUIRE([gl_CANONICALIZE_LGPL_SEPARATE])\n  if test $ac_cv_func_canonicalize_file_name = no; then\n    HAVE_CANONICALIZE_FILE_NAME=0\n    if test $ac_cv_func_realpath = no; then\n      HAVE_REALPATH=0\n    else\n      case \"$gl_cv_func_realpath_works\" in\n\t*yes) ;;\n\t*)    REPLACE_REALPATH=1 ;;\n      esac\n    fi\n  else\n    case \"$gl_cv_func_realpath_works\" in\n      *yes)\n        ;;\n      *)\n        REPLACE_CANONICALIZE_FILE_NAME=1\n        REPLACE_REALPATH=1\n        ;;\n    esac\n  fi\n])\n\n# Like gl_CANONICALIZE_LGPL, except prepare for separate compilation\n# (no REPLACE_CANONICALIZE_FILE_NAME, no REPLACE_REALPATH, no AC_LIBOBJ).\nAC_DEFUN([gl_CANONICALIZE_LGPL_SEPARATE],\n[\n  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])\n  AC_CHECK_FUNCS_ONCE([canonicalize_file_name getcwd readlink])\n  AC_REQUIRE([gl_DOUBLE_SLASH_ROOT])\n  AC_REQUIRE([gl_FUNC_REALPATH_WORKS])\n  AC_CHECK_HEADERS_ONCE([sys/param.h])\n])\n\n# Check whether realpath works.  Assume that if a platform has both\n# realpath and canonicalize_file_name, but the former is broken, then\n# so is the latter.\nAC_DEFUN([gl_FUNC_REALPATH_WORKS],\n[\n  AC_CHECK_FUNCS_ONCE([realpath])\n  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles\n  AC_CACHE_CHECK([whether realpath works], [gl_cv_func_realpath_works], [\n    touch conftest.a\n    mkdir conftest.d\n    AC_RUN_IFELSE([\n      AC_LANG_PROGRAM([[\n        ]GL_NOCRASH[\n        #include <stdlib.h>\n        #include <string.h>\n      ]], [[\n        int result = 0;\n        {\n          char *name = realpath (\"conftest.a\", NULL);\n          if (!(name && *name == '/'))\n            result |= 1;\n          free (name);\n        }\n        {\n          char *name = realpath (\"conftest.b/../conftest.a\", NULL);\n          if (name != NULL)\n            result |= 2;\n          free (name);\n        }\n        {\n          char *name = realpath (\"conftest.a/\", NULL);\n          if (name != NULL)\n            result |= 4;\n          free (name);\n        }\n        {\n          char *name1 = realpath (\".\", NULL);\n          char *name2 = realpath (\"conftest.d//./..\", NULL);\n          if (! name1 || ! name2 || strcmp (name1, name2))\n            result |= 8;\n          free (name1);\n          free (name2);\n        }\n        return result;\n      ]])\n     ],\n     [gl_cv_func_realpath_works=yes],\n     [gl_cv_func_realpath_works=no],\n     [case \"$host_os\" in\n                       # Guess yes on glibc systems.\n        *-gnu* | gnu*) gl_cv_func_realpath_works=\"guessing yes\" ;;\n                       # If we don't know, assume the worst.\n        *)             gl_cv_func_realpath_works=\"guessing no\" ;;\n      esac\n     ])\n    rm -rf conftest.a conftest.d\n  ])\n  case \"$gl_cv_func_realpath_works\" in\n    *yes)\n      AC_DEFINE([FUNC_REALPATH_WORKS], [1], [Define to 1 if realpath()\n        can malloc memory, always gives an absolute path, and handles\n        trailing slash correctly.])\n      ;;\n  esac\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/codeset.m4",
    "content": "# codeset.m4 serial 5 (gettext-0.18.2)\ndnl Copyright (C) 2000-2002, 2006, 2008-2014, 2016-2017 Free Software\ndnl Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\nAC_DEFUN([AM_LANGINFO_CODESET],\n[\n  AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset],\n    [AC_LINK_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <langinfo.h>]],\n          [[char* cs = nl_langinfo(CODESET); return !cs;]])],\n       [am_cv_langinfo_codeset=yes],\n       [am_cv_langinfo_codeset=no])\n    ])\n  if test $am_cv_langinfo_codeset = yes; then\n    AC_DEFINE([HAVE_LANGINFO_CODESET], [1],\n      [Define if you have <langinfo.h> and nl_langinfo(CODESET).])\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/dirname.m4",
    "content": "#serial 10   -*- autoconf -*-\ndnl Copyright (C) 2002-2006, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_DIRNAME],\n[\n  AC_REQUIRE([gl_DIRNAME_LGPL])\n])\n\nAC_DEFUN([gl_DIRNAME_LGPL],\n[\n  dnl Prerequisites of lib/dirname.h.\n  AC_REQUIRE([gl_DOUBLE_SLASH_ROOT])\n\n  dnl No prerequisites of lib/basename-lgpl.c, lib/dirname-lgpl.c,\n  dnl lib/stripslash.c.\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/double-slash-root.m4",
    "content": "# double-slash-root.m4 serial 4   -*- Autoconf -*-\ndnl Copyright (C) 2006, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_DOUBLE_SLASH_ROOT],\n[\n  AC_REQUIRE([AC_CANONICAL_HOST])\n  AC_CACHE_CHECK([whether // is distinct from /], [gl_cv_double_slash_root],\n    [ if test x\"$cross_compiling\" = xyes ; then\n        # When cross-compiling, there is no way to tell whether // is special\n        # short of a list of hosts.  However, the only known hosts to date\n        # that have a distinct // are Apollo DomainOS (too old to port to),\n        # Cygwin, and z/OS.  If anyone knows of another system for which // has\n        # special semantics and is distinct from /, please report it to\n        # <bug-gnulib@gnu.org>.\n        case $host in\n          *-cygwin | i370-ibm-openedition)\n            gl_cv_double_slash_root=yes ;;\n          *)\n            # Be optimistic and assume that / and // are the same when we\n            # don't know.\n            gl_cv_double_slash_root='unknown, assuming no' ;;\n        esac\n      else\n        set x `ls -di / // 2>/dev/null`\n        if test \"$[2]\" = \"$[4]\" && wc //dev/null >/dev/null 2>&1; then\n          gl_cv_double_slash_root=no\n        else\n          gl_cv_double_slash_root=yes\n        fi\n      fi])\n  if test \"$gl_cv_double_slash_root\" = yes; then\n    AC_DEFINE([DOUBLE_SLASH_IS_DISTINCT_ROOT], [1],\n      [Define to 1 if // is a file system root distinct from /.])\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/eealloc.m4",
    "content": "# eealloc.m4 serial 3\ndnl Copyright (C) 2003, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_EEALLOC],\n[\n  AC_REQUIRE([gl_EEMALLOC])\n  AC_REQUIRE([gl_EEREALLOC])\n])\n\nAC_DEFUN([gl_EEMALLOC],\n[\n  _AC_FUNC_MALLOC_IF(\n    [gl_cv_func_malloc_0_nonnull=1],\n    [gl_cv_func_malloc_0_nonnull=0])\n  AC_DEFINE_UNQUOTED([MALLOC_0_IS_NONNULL], [$gl_cv_func_malloc_0_nonnull],\n    [If malloc(0) is != NULL, define this to 1.  Otherwise define this\n     to 0.])\n])\n\nAC_DEFUN([gl_EEREALLOC],\n[\n  _AC_FUNC_REALLOC_IF(\n    [gl_cv_func_realloc_0_nonnull=1],\n    [gl_cv_func_realloc_0_nonnull=0])\n  AC_DEFINE_UNQUOTED([REALLOC_0_IS_NONNULL], [$gl_cv_func_realloc_0_nonnull],\n    [If realloc(NULL,0) is != NULL, define this to 1.  Otherwise define this\n     to 0.])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/environ.m4",
    "content": "# environ.m4 serial 6\ndnl Copyright (C) 2001-2004, 2006-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN_ONCE([gl_ENVIRON],\n[\n  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])\n  dnl Persuade glibc <unistd.h> to declare environ.\n  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])\n\n  AC_CHECK_HEADERS_ONCE([unistd.h])\n  gt_CHECK_VAR_DECL(\n    [#if HAVE_UNISTD_H\n     #include <unistd.h>\n     #endif\n     /* mingw, BeOS, Haiku declare environ in <stdlib.h>, not in <unistd.h>.  */\n     #include <stdlib.h>\n    ],\n    [environ])\n  if test $gt_cv_var_environ_declaration != yes; then\n    HAVE_DECL_ENVIRON=0\n  fi\n])\n\n# Check if a variable is properly declared.\n# gt_CHECK_VAR_DECL(includes,variable)\nAC_DEFUN([gt_CHECK_VAR_DECL],\n[\n  define([gt_cv_var], [gt_cv_var_]$2[_declaration])\n  AC_MSG_CHECKING([if $2 is properly declared])\n  AC_CACHE_VAL([gt_cv_var], [\n    AC_COMPILE_IFELSE(\n      [AC_LANG_PROGRAM(\n         [[$1\n           extern struct { int foo; } $2;]],\n         [[$2.foo = 1;]])],\n      [gt_cv_var=no],\n      [gt_cv_var=yes])])\n  AC_MSG_RESULT([$gt_cv_var])\n  if test $gt_cv_var = yes; then\n    AC_DEFINE([HAVE_]m4_translit($2, [a-z], [A-Z])[_DECL], 1,\n              [Define if you have the declaration of $2.])\n  fi\n  undefine([gt_cv_var])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/errno_h.m4",
    "content": "# errno_h.m4 serial 12\ndnl Copyright (C) 2004, 2006, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN_ONCE([gl_HEADER_ERRNO_H],\n[\n  AC_REQUIRE([AC_PROG_CC])\n  AC_CACHE_CHECK([for complete errno.h], [gl_cv_header_errno_h_complete], [\n    AC_EGREP_CPP([booboo],[\n#include <errno.h>\n#if !defined ETXTBSY\nbooboo\n#endif\n#if !defined ENOMSG\nbooboo\n#endif\n#if !defined EIDRM\nbooboo\n#endif\n#if !defined ENOLINK\nbooboo\n#endif\n#if !defined EPROTO\nbooboo\n#endif\n#if !defined EMULTIHOP\nbooboo\n#endif\n#if !defined EBADMSG\nbooboo\n#endif\n#if !defined EOVERFLOW\nbooboo\n#endif\n#if !defined ENOTSUP\nbooboo\n#endif\n#if !defined ENETRESET\nbooboo\n#endif\n#if !defined ECONNABORTED\nbooboo\n#endif\n#if !defined ESTALE\nbooboo\n#endif\n#if !defined EDQUOT\nbooboo\n#endif\n#if !defined ECANCELED\nbooboo\n#endif\n#if !defined EOWNERDEAD\nbooboo\n#endif\n#if !defined ENOTRECOVERABLE\nbooboo\n#endif\n#if !defined EILSEQ\nbooboo\n#endif\n      ],\n      [gl_cv_header_errno_h_complete=no],\n      [gl_cv_header_errno_h_complete=yes])\n  ])\n  if test $gl_cv_header_errno_h_complete = yes; then\n    ERRNO_H=''\n  else\n    gl_NEXT_HEADERS([errno.h])\n    ERRNO_H='errno.h'\n  fi\n  AC_SUBST([ERRNO_H])\n  AM_CONDITIONAL([GL_GENERATE_ERRNO_H], [test -n \"$ERRNO_H\"])\n  gl_REPLACE_ERRNO_VALUE([EMULTIHOP])\n  gl_REPLACE_ERRNO_VALUE([ENOLINK])\n  gl_REPLACE_ERRNO_VALUE([EOVERFLOW])\n])\n\n# Assuming $1 = EOVERFLOW.\n# The EOVERFLOW errno value ought to be defined in <errno.h>, according to\n# POSIX.  But some systems (like OpenBSD 4.0 or AIX 3) don't define it, and\n# some systems (like OSF/1) define it when _XOPEN_SOURCE_EXTENDED is defined.\n# Check for the value of EOVERFLOW.\n# Set the variables EOVERFLOW_HIDDEN and EOVERFLOW_VALUE.\nAC_DEFUN([gl_REPLACE_ERRNO_VALUE],\n[\n  if test -n \"$ERRNO_H\"; then\n    AC_CACHE_CHECK([for ]$1[ value], [gl_cv_header_errno_h_]$1, [\n      AC_EGREP_CPP([yes],[\n#include <errno.h>\n#ifdef ]$1[\nyes\n#endif\n      ],\n      [gl_cv_header_errno_h_]$1[=yes],\n      [gl_cv_header_errno_h_]$1[=no])\n      if test $gl_cv_header_errno_h_]$1[ = no; then\n        AC_EGREP_CPP([yes],[\n#define _XOPEN_SOURCE_EXTENDED 1\n#include <errno.h>\n#ifdef ]$1[\nyes\n#endif\n          ], [gl_cv_header_errno_h_]$1[=hidden])\n        if test $gl_cv_header_errno_h_]$1[ = hidden; then\n          dnl The macro exists but is hidden.\n          dnl Define it to the same value.\n          AC_COMPUTE_INT([gl_cv_header_errno_h_]$1, $1, [\n#define _XOPEN_SOURCE_EXTENDED 1\n#include <errno.h>\n/* The following two lines are a workaround against an autoconf-2.52 bug.  */\n#include <stdio.h>\n#include <stdlib.h>\n])\n        fi\n      fi\n    ])\n    case $gl_cv_header_errno_h_]$1[ in\n      yes | no)\n        ]$1[_HIDDEN=0; ]$1[_VALUE=\n        ;;\n      *)\n        ]$1[_HIDDEN=1; ]$1[_VALUE=\"$gl_cv_header_errno_h_]$1[\"\n        ;;\n    esac\n    AC_SUBST($1[_HIDDEN])\n    AC_SUBST($1[_VALUE])\n  fi\n])\n\ndnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in.\ndnl Remove this when we can assume autoconf >= 2.61.\nm4_ifdef([AC_COMPUTE_INT], [], [\n  AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/error.m4",
    "content": "#serial 14\n\n# Copyright (C) 1996-1998, 2001-2004, 2009-2017 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_ERROR],\n[\n  dnl We don't use AC_FUNC_ERROR_AT_LINE any more, because it is no longer\n  dnl maintained in Autoconf and because it invokes AC_LIBOBJ.\n  AC_CACHE_CHECK([for error_at_line], [ac_cv_lib_error_at_line],\n    [AC_LINK_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <error.h>]],\n          [[error_at_line (0, 0, \"\", 0, \"an error occurred\");]])],\n       [ac_cv_lib_error_at_line=yes],\n       [ac_cv_lib_error_at_line=no])])\n])\n\n# Prerequisites of lib/error.c.\nAC_DEFUN([gl_PREREQ_ERROR],\n[\n  AC_REQUIRE([AC_FUNC_STRERROR_R])\n  :\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/extensions.m4",
    "content": "# serial 15  -*- Autoconf -*-\n# Enable extensions on systems that normally disable them.\n\n# Copyright (C) 2003, 2006-2017 Free Software Foundation, Inc.\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# This definition of AC_USE_SYSTEM_EXTENSIONS is stolen from git\n# Autoconf.  Perhaps we can remove this once we can assume Autoconf\n# 2.70 or later everywhere, but since Autoconf mutates rapidly\n# enough in this area it's likely we'll need to redefine\n# AC_USE_SYSTEM_EXTENSIONS for quite some time.\n\n# If autoconf reports a warning\n#     warning: AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS\n# or  warning: AC_RUN_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS\n# the fix is\n#   1) to ensure that AC_USE_SYSTEM_EXTENSIONS is never directly invoked\n#      but always AC_REQUIREd,\n#   2) to ensure that for each occurrence of\n#        AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])\n#      or\n#        AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])\n#      the corresponding gnulib module description has 'extensions' among\n#      its dependencies. This will ensure that the gl_USE_SYSTEM_EXTENSIONS\n#      invocation occurs in gl_EARLY, not in gl_INIT.\n\n# AC_USE_SYSTEM_EXTENSIONS\n# ------------------------\n# Enable extensions on systems that normally disable them,\n# typically due to standards-conformance issues.\n#\n# Remember that #undef in AH_VERBATIM gets replaced with #define by\n# AC_DEFINE.  The goal here is to define all known feature-enabling\n# macros, then, if reports of conflicts are made, disable macros that\n# cause problems on some platforms (such as __EXTENSIONS__).\nAC_DEFUN_ONCE([AC_USE_SYSTEM_EXTENSIONS],\n[AC_BEFORE([$0], [AC_COMPILE_IFELSE])dnl\nAC_BEFORE([$0], [AC_RUN_IFELSE])dnl\n\n  AC_CHECK_HEADER([minix/config.h], [MINIX=yes], [MINIX=])\n  if test \"$MINIX\" = yes; then\n    AC_DEFINE([_POSIX_SOURCE], [1],\n      [Define to 1 if you need to in order for 'stat' and other\n       things to work.])\n    AC_DEFINE([_POSIX_1_SOURCE], [2],\n      [Define to 2 if the system does not provide POSIX.1 features\n       except with this defined.])\n    AC_DEFINE([_MINIX], [1],\n      [Define to 1 if on MINIX.])\n    AC_DEFINE([_NETBSD_SOURCE], [1],\n      [Define to 1 to make NetBSD features available.  MINIX 3 needs this.])\n  fi\n\ndnl Use a different key than __EXTENSIONS__, as that name broke existing\ndnl configure.ac when using autoheader 2.62.\n  AH_VERBATIM([USE_SYSTEM_EXTENSIONS],\n[/* Enable extensions on AIX 3, Interix.  */\n#ifndef _ALL_SOURCE\n# undef _ALL_SOURCE\n#endif\n/* Enable general extensions on macOS.  */\n#ifndef _DARWIN_C_SOURCE\n# undef _DARWIN_C_SOURCE\n#endif\n/* Enable GNU extensions on systems that have them.  */\n#ifndef _GNU_SOURCE\n# undef _GNU_SOURCE\n#endif\n/* Enable threading extensions on Solaris.  */\n#ifndef _POSIX_PTHREAD_SEMANTICS\n# undef _POSIX_PTHREAD_SEMANTICS\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-5:2014.  */\n#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__\n# undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-1:2014.  */\n#ifndef __STDC_WANT_IEC_60559_BFP_EXT__\n# undef __STDC_WANT_IEC_60559_BFP_EXT__\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-2:2015.  */\n#ifndef __STDC_WANT_IEC_60559_DFP_EXT__\n# undef __STDC_WANT_IEC_60559_DFP_EXT__\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-4:2015.  */\n#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__\n# undef __STDC_WANT_IEC_60559_FUNCS_EXT__\n#endif\n/* Enable extensions specified by ISO/IEC TS 18661-3:2015.  */\n#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__\n# undef __STDC_WANT_IEC_60559_TYPES_EXT__\n#endif\n/* Enable extensions specified by ISO/IEC TR 24731-2:2010.  */\n#ifndef __STDC_WANT_LIB_EXT2__\n# undef __STDC_WANT_LIB_EXT2__\n#endif\n/* Enable extensions specified by ISO/IEC 24747:2009.  */\n#ifndef __STDC_WANT_MATH_SPEC_FUNCS__\n# undef __STDC_WANT_MATH_SPEC_FUNCS__\n#endif\n/* Enable extensions on HP NonStop.  */\n#ifndef _TANDEM_SOURCE\n# undef _TANDEM_SOURCE\n#endif\n/* Enable X/Open extensions if necessary.  HP-UX 11.11 defines\n   mbstate_t only if _XOPEN_SOURCE is defined to 500, regardless of\n   whether compiling with -Ae or -D_HPUX_SOURCE=1.  */\n#ifndef _XOPEN_SOURCE\n# undef _XOPEN_SOURCE\n#endif\n/* Enable general extensions on Solaris.  */\n#ifndef __EXTENSIONS__\n# undef __EXTENSIONS__\n#endif\n])\n  AC_CACHE_CHECK([whether it is safe to define __EXTENSIONS__],\n    [ac_cv_safe_to_define___extensions__],\n    [AC_COMPILE_IFELSE(\n       [AC_LANG_PROGRAM([[\n#         define __EXTENSIONS__ 1\n          ]AC_INCLUDES_DEFAULT])],\n       [ac_cv_safe_to_define___extensions__=yes],\n       [ac_cv_safe_to_define___extensions__=no])])\n  test $ac_cv_safe_to_define___extensions__ = yes &&\n    AC_DEFINE([__EXTENSIONS__])\n  AC_DEFINE([_ALL_SOURCE])\n  AC_DEFINE([_DARWIN_C_SOURCE])\n  AC_DEFINE([_GNU_SOURCE])\n  AC_DEFINE([_POSIX_PTHREAD_SEMANTICS])\n  AC_DEFINE([__STDC_WANT_IEC_60559_ATTRIBS_EXT__])\n  AC_DEFINE([__STDC_WANT_IEC_60559_BFP_EXT__])\n  AC_DEFINE([__STDC_WANT_IEC_60559_DFP_EXT__])\n  AC_DEFINE([__STDC_WANT_IEC_60559_FUNCS_EXT__])\n  AC_DEFINE([__STDC_WANT_IEC_60559_TYPES_EXT__])\n  AC_DEFINE([__STDC_WANT_LIB_EXT2__])\n  AC_DEFINE([__STDC_WANT_MATH_SPEC_FUNCS__])\n  AC_DEFINE([_TANDEM_SOURCE])\n  AC_CACHE_CHECK([whether _XOPEN_SOURCE should be defined],\n    [ac_cv_should_define__xopen_source],\n    [ac_cv_should_define__xopen_source=no\n     AC_COMPILE_IFELSE(\n       [AC_LANG_PROGRAM([[\n          #include <wchar.h>\n          mbstate_t x;]])],\n       [],\n       [AC_COMPILE_IFELSE(\n          [AC_LANG_PROGRAM([[\n             #define _XOPEN_SOURCE 500\n             #include <wchar.h>\n             mbstate_t x;]])],\n          [ac_cv_should_define__xopen_source=yes])])])\n  test $ac_cv_should_define__xopen_source = yes &&\n    AC_DEFINE([_XOPEN_SOURCE], [500])\n])# AC_USE_SYSTEM_EXTENSIONS\n\n# gl_USE_SYSTEM_EXTENSIONS\n# ------------------------\n# Enable extensions on systems that normally disable them,\n# typically due to standards-conformance issues.\nAC_DEFUN_ONCE([gl_USE_SYSTEM_EXTENSIONS],\n[\n  dnl Require this macro before AC_USE_SYSTEM_EXTENSIONS.\n  dnl gnulib does not need it. But if it gets required by third-party macros\n  dnl after AC_USE_SYSTEM_EXTENSIONS is required, autoconf 2.62..2.63 emit a\n  dnl warning: \"AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS\".\n  dnl Note: We can do this only for one of the macros AC_AIX, AC_GNU_SOURCE,\n  dnl AC_MINIX. If people still use AC_AIX or AC_MINIX, they are out of luck.\n  AC_REQUIRE([AC_GNU_SOURCE])\n\n  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/extern-inline.m4",
    "content": "dnl 'extern inline' a la ISO C99.\n\ndnl Copyright 2012-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_EXTERN_INLINE],\n[\n  AH_VERBATIM([extern_inline],\n[/* Please see the Gnulib manual for how to use these macros.\n\n   Suppress extern inline with HP-UX cc, as it appears to be broken; see\n   <http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html>.\n\n   Suppress extern inline with Sun C in standards-conformance mode, as it\n   mishandles inline functions that call each other.  E.g., for 'inline void f\n   (void) { } inline void g (void) { f (); }', c99 incorrectly complains\n   'reference to static identifier \"f\" in extern inline function'.\n   This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16.\n\n   Suppress extern inline (with or without __attribute__ ((__gnu_inline__)))\n   on configurations that mistakenly use 'static inline' to implement\n   functions or macros in standard C headers like <ctype.h>.  For example,\n   if isdigit is mistakenly implemented via a static inline function,\n   a program containing an extern inline function that calls isdigit\n   may not work since the C standard prohibits extern inline functions\n   from calling static functions.  This bug is known to occur on:\n\n     OS X 10.8 and earlier; see:\n     http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html\n\n     DragonFly; see\n     http://muscles.dragonflybsd.org/bulk/bleeding-edge-potential/latest-per-pkg/ah-tty-0.3.12.log\n\n     FreeBSD; see:\n     http://lists.gnu.org/archive/html/bug-gnulib/2014-07/msg00104.html\n\n   OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and\n   for clang but remains for g++; see <http://trac.macports.org/ticket/41033>.\n   Assume DragonFly and FreeBSD will be similar.  */\n#if (((defined __APPLE__ && defined __MACH__) \\\n      || defined __DragonFly__ || defined __FreeBSD__) \\\n     && (defined __header_inline \\\n         ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \\\n            && ! defined __clang__) \\\n         : ((! defined _DONT_USE_CTYPE_INLINE_ \\\n             && (defined __GNUC__ || defined __cplusplus)) \\\n            || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \\\n                && defined __GNUC__ && ! defined __cplusplus))))\n# define _GL_EXTERN_INLINE_STDHEADER_BUG\n#endif\n#if ((__GNUC__ \\\n      ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \\\n      : (199901L <= __STDC_VERSION__ \\\n         && !defined __HP_cc \\\n         && !defined __PGI \\\n         && !(defined __SUNPRO_C && __STDC__))) \\\n     && !defined _GL_EXTERN_INLINE_STDHEADER_BUG)\n# define _GL_INLINE inline\n# define _GL_EXTERN_INLINE extern inline\n# define _GL_EXTERN_INLINE_IN_USE\n#elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \\\n       && !defined _GL_EXTERN_INLINE_STDHEADER_BUG)\n# if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__\n   /* __gnu_inline__ suppresses a GCC 4.2 diagnostic.  */\n#  define _GL_INLINE extern inline __attribute__ ((__gnu_inline__))\n# else\n#  define _GL_INLINE extern inline\n# endif\n# define _GL_EXTERN_INLINE extern\n# define _GL_EXTERN_INLINE_IN_USE\n#else\n# define _GL_INLINE static _GL_UNUSED\n# define _GL_EXTERN_INLINE static _GL_UNUSED\n#endif\n\n/* In GCC 4.6 (inclusive) to 5.1 (exclusive),\n   suppress bogus \"no previous prototype for 'FOO'\"\n   and \"no previous declaration for 'FOO'\" diagnostics,\n   when FOO is an inline function in the header; see\n   <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113> and\n   <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63877>.  */\n#if __GNUC__ == 4 && 6 <= __GNUC_MINOR__\n# if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__\n#  define _GL_INLINE_HEADER_CONST_PRAGMA\n# else\n#  define _GL_INLINE_HEADER_CONST_PRAGMA \\\n     _Pragma (\"GCC diagnostic ignored \\\"-Wsuggest-attribute=const\\\"\")\n# endif\n# define _GL_INLINE_HEADER_BEGIN \\\n    _Pragma (\"GCC diagnostic push\") \\\n    _Pragma (\"GCC diagnostic ignored \\\"-Wmissing-prototypes\\\"\") \\\n    _Pragma (\"GCC diagnostic ignored \\\"-Wmissing-declarations\\\"\") \\\n    _GL_INLINE_HEADER_CONST_PRAGMA\n# define _GL_INLINE_HEADER_END \\\n    _Pragma (\"GCC diagnostic pop\")\n#else\n# define _GL_INLINE_HEADER_BEGIN\n# define _GL_INLINE_HEADER_END\n#endif])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/fcntl-o.m4",
    "content": "# fcntl-o.m4 serial 4\ndnl Copyright (C) 2006, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl Written by Paul Eggert.\n\n# Test whether the flags O_NOATIME and O_NOFOLLOW actually work.\n# Define HAVE_WORKING_O_NOATIME to 1 if O_NOATIME works, or to 0 otherwise.\n# Define HAVE_WORKING_O_NOFOLLOW to 1 if O_NOFOLLOW works, or to 0 otherwise.\nAC_DEFUN([gl_FCNTL_O_FLAGS],\n[\n  dnl Persuade glibc <fcntl.h> to define O_NOATIME and O_NOFOLLOW.\n  dnl AC_USE_SYSTEM_EXTENSIONS was introduced in autoconf 2.60 and obsoletes\n  dnl AC_GNU_SOURCE.\n  m4_ifdef([AC_USE_SYSTEM_EXTENSIONS],\n    [AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])],\n    [AC_REQUIRE([AC_GNU_SOURCE])])\n\n  AC_CHECK_HEADERS_ONCE([unistd.h])\n  AC_CHECK_FUNCS_ONCE([symlink])\n  AC_CACHE_CHECK([for working fcntl.h], [gl_cv_header_working_fcntl_h],\n    [AC_RUN_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <sys/types.h>\n           #include <sys/stat.h>\n           #if HAVE_UNISTD_H\n           # include <unistd.h>\n           #else /* on Windows with MSVC */\n           # include <io.h>\n           # include <stdlib.h>\n           # defined sleep(n) _sleep ((n) * 1000)\n           #endif\n           #include <fcntl.h>\n           #ifndef O_NOATIME\n            #define O_NOATIME 0\n           #endif\n           #ifndef O_NOFOLLOW\n            #define O_NOFOLLOW 0\n           #endif\n           static int const constants[] =\n            {\n              O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND,\n              O_NONBLOCK, O_SYNC, O_ACCMODE, O_RDONLY, O_RDWR, O_WRONLY\n            };\n          ]],\n          [[\n            int result = !constants;\n            #if HAVE_SYMLINK\n            {\n              static char const sym[] = \"conftest.sym\";\n              if (symlink (\"/dev/null\", sym) != 0)\n                result |= 2;\n              else\n                {\n                  int fd = open (sym, O_WRONLY | O_NOFOLLOW | O_CREAT, 0);\n                  if (fd >= 0)\n                    {\n                      close (fd);\n                      result |= 4;\n                    }\n                }\n              if (unlink (sym) != 0 || symlink (\".\", sym) != 0)\n                result |= 2;\n              else\n                {\n                  int fd = open (sym, O_RDONLY | O_NOFOLLOW);\n                  if (fd >= 0)\n                    {\n                      close (fd);\n                      result |= 4;\n                    }\n                }\n              unlink (sym);\n            }\n            #endif\n            {\n              static char const file[] = \"confdefs.h\";\n              int fd = open (file, O_RDONLY | O_NOATIME);\n              if (fd < 0)\n                result |= 8;\n              else\n                {\n                  struct stat st0;\n                  if (fstat (fd, &st0) != 0)\n                    result |= 16;\n                  else\n                    {\n                      char c;\n                      sleep (1);\n                      if (read (fd, &c, 1) != 1)\n                        result |= 24;\n                      else\n                        {\n                          if (close (fd) != 0)\n                            result |= 32;\n                          else\n                            {\n                              struct stat st1;\n                              if (stat (file, &st1) != 0)\n                                result |= 40;\n                              else\n                                if (st0.st_atime != st1.st_atime)\n                                  result |= 64;\n                            }\n                        }\n                    }\n                }\n            }\n            return result;]])],\n       [gl_cv_header_working_fcntl_h=yes],\n       [case $? in #(\n        4) gl_cv_header_working_fcntl_h='no (bad O_NOFOLLOW)';; #(\n        64) gl_cv_header_working_fcntl_h='no (bad O_NOATIME)';; #(\n        68) gl_cv_header_working_fcntl_h='no (bad O_NOATIME, O_NOFOLLOW)';; #(\n         *) gl_cv_header_working_fcntl_h='no';;\n        esac],\n       [gl_cv_header_working_fcntl_h=cross-compiling])])\n\n  case $gl_cv_header_working_fcntl_h in #(\n  *O_NOATIME* | no | cross-compiling) ac_val=0;; #(\n  *) ac_val=1;;\n  esac\n  AC_DEFINE_UNQUOTED([HAVE_WORKING_O_NOATIME], [$ac_val],\n    [Define to 1 if O_NOATIME works.])\n\n  case $gl_cv_header_working_fcntl_h in #(\n  *O_NOFOLLOW* | no | cross-compiling) ac_val=0;; #(\n  *) ac_val=1;;\n  esac\n  AC_DEFINE_UNQUOTED([HAVE_WORKING_O_NOFOLLOW], [$ac_val],\n    [Define to 1 if O_NOFOLLOW works.])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/fcntl_h.m4",
    "content": "# serial 15\n# Configure fcntl.h.\ndnl Copyright (C) 2006-2007, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl Written by Paul Eggert.\n\nAC_DEFUN([gl_FCNTL_H],\n[\n  AC_REQUIRE([gl_FCNTL_H_DEFAULTS])\n  AC_REQUIRE([gl_FCNTL_O_FLAGS])\n  gl_NEXT_HEADERS([fcntl.h])\n\n  dnl Ensure the type pid_t gets defined.\n  AC_REQUIRE([AC_TYPE_PID_T])\n\n  dnl Ensure the type mode_t gets defined.\n  AC_REQUIRE([AC_TYPE_MODE_T])\n\n  dnl Check for declarations of anything we want to poison if the\n  dnl corresponding gnulib module is not in use, if it is not common\n  dnl enough to be declared everywhere.\n  gl_WARN_ON_USE_PREPARE([[#include <fcntl.h>\n    ]], [fcntl openat])\n])\n\nAC_DEFUN([gl_FCNTL_MODULE_INDICATOR],\n[\n  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.\n  AC_REQUIRE([gl_FCNTL_H_DEFAULTS])\n  gl_MODULE_INDICATOR_SET_VARIABLE([$1])\n  dnl Define it also as a C macro, for the benefit of the unit tests.\n  gl_MODULE_INDICATOR_FOR_TESTS([$1])\n])\n\nAC_DEFUN([gl_FCNTL_H_DEFAULTS],\n[\n  GNULIB_FCNTL=0;        AC_SUBST([GNULIB_FCNTL])\n  GNULIB_NONBLOCKING=0;  AC_SUBST([GNULIB_NONBLOCKING])\n  GNULIB_OPEN=0;         AC_SUBST([GNULIB_OPEN])\n  GNULIB_OPENAT=0;       AC_SUBST([GNULIB_OPENAT])\n  dnl Assume proper GNU behavior unless another module says otherwise.\n  HAVE_FCNTL=1;          AC_SUBST([HAVE_FCNTL])\n  HAVE_OPENAT=1;         AC_SUBST([HAVE_OPENAT])\n  REPLACE_FCNTL=0;       AC_SUBST([REPLACE_FCNTL])\n  REPLACE_OPEN=0;        AC_SUBST([REPLACE_OPEN])\n  REPLACE_OPENAT=0;      AC_SUBST([REPLACE_OPENAT])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/getprogname.m4",
    "content": "# getprogname.m4 - check for getprogname or replacements for it\n\n# Copyright (C) 2016-2017 Free Software Foundation, Inc.\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# serial 4\n\nAC_DEFUN([gl_FUNC_GETPROGNAME],\n[\n  AC_CHECK_FUNCS_ONCE([getprogname getexecname])\n  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])\n  ac_found=0\n  AC_CHECK_DECLS([program_invocation_name], [ac_found=1], [],\n    [#include <errno.h>])\n  AC_CHECK_DECLS([program_invocation_short_name], [ac_found=1], [],\n    [#include <errno.h>])\n  AC_CHECK_DECLS([__argv], [ac_found=1], [], [#include <stdlib.h>])\n\n  # Incur the cost of this test only if none of the above worked.\n  if test $ac_found = 0; then\n    # On OpenBSD 5.1, using the global __progname variable appears to be\n    # the only way to implement getprogname.\n    AC_CACHE_CHECK([whether __progname is defined in default libraries],\n      [gl_cv_var___progname],\n      [\n        gl_cv_var___progname=\n        AC_LINK_IFELSE(\n          [AC_LANG_PROGRAM(\n            [[extern char *__progname;]],\n            [[return *__progname;]]\n          )],\n          [gl_cv_var___progname=yes]\n        )\n      ]\n    )\n    if test \"$gl_cv_var___progname\" = yes; then\n      AC_DEFINE([HAVE_VAR___PROGNAME], 1,\n        [Define if you have a global __progname variable])\n    fi\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/gettext.m4",
    "content": "# gettext.m4 serial 68 (gettext-0.19.8)\ndnl Copyright (C) 1995-2014, 2016-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\ndnl\ndnl This file can be used in projects which are not available under\ndnl the GNU General Public License or the GNU Library General Public\ndnl License but which still want to provide support for the GNU gettext\ndnl functionality.\ndnl Please note that the actual code of the GNU gettext library is covered\ndnl by the GNU Library General Public License, and the rest of the GNU\ndnl gettext package is covered by the GNU General Public License.\ndnl They are *not* in the public domain.\n\ndnl Authors:\ndnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.\ndnl   Bruno Haible <haible@clisp.cons.org>, 2000-2006, 2008-2010.\n\ndnl Macro to add for using GNU gettext.\n\ndnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]).\ndnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The\ndnl    default (if it is not specified or empty) is 'no-libtool'.\ndnl    INTLSYMBOL should be 'external' for packages with no intl directory,\ndnl    and 'no-libtool' or 'use-libtool' for packages with an intl directory.\ndnl    If INTLSYMBOL is 'use-libtool', then a libtool library\ndnl    $(top_builddir)/intl/libintl.la will be created (shared and/or static,\ndnl    depending on --{enable,disable}-{shared,static} and on the presence of\ndnl    AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library\ndnl    $(top_builddir)/intl/libintl.a will be created.\ndnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext\ndnl    implementations (in libc or libintl) without the ngettext() function\ndnl    will be ignored.  If NEEDSYMBOL is specified and is\ndnl    'need-formatstring-macros', then GNU gettext implementations that don't\ndnl    support the ISO C 99 <inttypes.h> formatstring macros will be ignored.\ndnl INTLDIR is used to find the intl libraries.  If empty,\ndnl    the value '$(top_builddir)/intl/' is used.\ndnl\ndnl The result of the configuration is one of three cases:\ndnl 1) GNU gettext, as included in the intl subdirectory, will be compiled\ndnl    and used.\ndnl    Catalog format: GNU --> install in $(datadir)\ndnl    Catalog extension: .mo after installation, .gmo in source tree\ndnl 2) GNU gettext has been found in the system's C library.\ndnl    Catalog format: GNU --> install in $(datadir)\ndnl    Catalog extension: .mo after installation, .gmo in source tree\ndnl 3) No internationalization, always use English msgid.\ndnl    Catalog format: none\ndnl    Catalog extension: none\ndnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur.\ndnl The use of .gmo is historical (it was needed to avoid overwriting the\ndnl GNU format catalogs when building on a platform with an X/Open gettext),\ndnl but we keep it in order not to force irrelevant filename changes on the\ndnl maintainers.\ndnl\nAC_DEFUN([AM_GNU_GETTEXT],\n[\n  dnl Argument checking.\n  ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], ,\n    [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT\n])])])])])\n  ifelse(ifelse([$1], [], [old])[]ifelse([$1], [no-libtool], [old]), [old],\n    [AC_DIAGNOSE([obsolete], [Use of AM_GNU_GETTEXT without [external] argument is deprecated.])])\n  ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], ,\n    [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT\n])])])])\n  define([gt_included_intl],\n    ifelse([$1], [external],\n      ifdef([AM_GNU_GETTEXT_][INTL_SUBDIR], [yes], [no]),\n      [yes]))\n  define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], []))\n  gt_NEEDS_INIT\n  AM_GNU_GETTEXT_NEED([$2])\n\n  AC_REQUIRE([AM_PO_SUBDIRS])dnl\n  ifelse(gt_included_intl, yes, [\n    AC_REQUIRE([AM_INTL_SUBDIR])dnl\n  ])\n\n  dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.\n  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])\n  AC_REQUIRE([AC_LIB_RPATH])\n\n  dnl Sometimes libintl requires libiconv, so first search for libiconv.\n  dnl Ideally we would do this search only after the\n  dnl      if test \"$USE_NLS\" = \"yes\"; then\n  dnl        if { eval \"gt_val=\\$$gt_func_gnugettext_libc\"; test \"$gt_val\" != \"yes\"; }; then\n  dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT\n  dnl the configure script would need to contain the same shell code\n  dnl again, outside any 'if'. There are two solutions:\n  dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'.\n  dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE.\n  dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not\n  dnl documented, we avoid it.\n  ifelse(gt_included_intl, yes, , [\n    AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY])\n  ])\n\n  dnl Sometimes, on Mac OS X, libintl requires linking with CoreFoundation.\n  gt_INTL_MACOSX\n\n  dnl Set USE_NLS.\n  AC_REQUIRE([AM_NLS])\n\n  ifelse(gt_included_intl, yes, [\n    BUILD_INCLUDED_LIBINTL=no\n    USE_INCLUDED_LIBINTL=no\n  ])\n  LIBINTL=\n  LTLIBINTL=\n  POSUB=\n\n  dnl Add a version number to the cache macros.\n  case \" $gt_needs \" in\n    *\" need-formatstring-macros \"*) gt_api_version=3 ;;\n    *\" need-ngettext \"*) gt_api_version=2 ;;\n    *) gt_api_version=1 ;;\n  esac\n  gt_func_gnugettext_libc=\"gt_cv_func_gnugettext${gt_api_version}_libc\"\n  gt_func_gnugettext_libintl=\"gt_cv_func_gnugettext${gt_api_version}_libintl\"\n\n  dnl If we use NLS figure out what method\n  if test \"$USE_NLS\" = \"yes\"; then\n    gt_use_preinstalled_gnugettext=no\n    ifelse(gt_included_intl, yes, [\n      AC_MSG_CHECKING([whether included gettext is requested])\n      AC_ARG_WITH([included-gettext],\n        [  --with-included-gettext use the GNU gettext library included here],\n        nls_cv_force_use_gnu_gettext=$withval,\n        nls_cv_force_use_gnu_gettext=no)\n      AC_MSG_RESULT([$nls_cv_force_use_gnu_gettext])\n\n      nls_cv_use_gnu_gettext=\"$nls_cv_force_use_gnu_gettext\"\n      if test \"$nls_cv_force_use_gnu_gettext\" != \"yes\"; then\n    ])\n        dnl User does not insist on using GNU NLS library.  Figure out what\n        dnl to use.  If GNU gettext is available we use this.  Else we have\n        dnl to fall back to GNU NLS library.\n\n        if test $gt_api_version -ge 3; then\n          gt_revision_test_code='\n#ifndef __GNU_GETTEXT_SUPPORTED_REVISION\n#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)\n#endif\nchangequote(,)dnl\ntypedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];\nchangequote([,])dnl\n'\n        else\n          gt_revision_test_code=\n        fi\n        if test $gt_api_version -ge 2; then\n          gt_expression_test_code=' + * ngettext (\"\", \"\", 0)'\n        else\n          gt_expression_test_code=\n        fi\n\n        AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc],\n         [AC_LINK_IFELSE(\n            [AC_LANG_PROGRAM(\n               [[\n#include <libintl.h>\n#ifndef __GNU_GETTEXT_SUPPORTED_REVISION\nextern int _nl_msg_cat_cntr;\nextern int *_nl_domain_bindings;\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_domain_bindings)\n#else\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0\n#endif\n$gt_revision_test_code\n               ]],\n               [[\nbindtextdomain (\"\", \"\");\nreturn * gettext (\"\")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION\n               ]])],\n            [eval \"$gt_func_gnugettext_libc=yes\"],\n            [eval \"$gt_func_gnugettext_libc=no\"])])\n\n        if { eval \"gt_val=\\$$gt_func_gnugettext_libc\"; test \"$gt_val\" != \"yes\"; }; then\n          dnl Sometimes libintl requires libiconv, so first search for libiconv.\n          ifelse(gt_included_intl, yes, , [\n            AM_ICONV_LINK\n          ])\n          dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL\n          dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv])\n          dnl because that would add \"-liconv\" to LIBINTL and LTLIBINTL\n          dnl even if libiconv doesn't exist.\n          AC_LIB_LINKFLAGS_BODY([intl])\n          AC_CACHE_CHECK([for GNU gettext in libintl],\n            [$gt_func_gnugettext_libintl],\n           [gt_save_CPPFLAGS=\"$CPPFLAGS\"\n            CPPFLAGS=\"$CPPFLAGS $INCINTL\"\n            gt_save_LIBS=\"$LIBS\"\n            LIBS=\"$LIBS $LIBINTL\"\n            dnl Now see whether libintl exists and does not depend on libiconv.\n            AC_LINK_IFELSE(\n              [AC_LANG_PROGRAM(\n                 [[\n#include <libintl.h>\n#ifndef __GNU_GETTEXT_SUPPORTED_REVISION\nextern int _nl_msg_cat_cntr;\nextern\n#ifdef __cplusplus\n\"C\"\n#endif\nconst char *_nl_expand_alias (const char *);\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias (\"\"))\n#else\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0\n#endif\n$gt_revision_test_code\n                 ]],\n                 [[\nbindtextdomain (\"\", \"\");\nreturn * gettext (\"\")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION\n                 ]])],\n              [eval \"$gt_func_gnugettext_libintl=yes\"],\n              [eval \"$gt_func_gnugettext_libintl=no\"])\n            dnl Now see whether libintl exists and depends on libiconv.\n            if { eval \"gt_val=\\$$gt_func_gnugettext_libintl\"; test \"$gt_val\" != yes; } && test -n \"$LIBICONV\"; then\n              LIBS=\"$LIBS $LIBICONV\"\n              AC_LINK_IFELSE(\n                [AC_LANG_PROGRAM(\n                   [[\n#include <libintl.h>\n#ifndef __GNU_GETTEXT_SUPPORTED_REVISION\nextern int _nl_msg_cat_cntr;\nextern\n#ifdef __cplusplus\n\"C\"\n#endif\nconst char *_nl_expand_alias (const char *);\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias (\"\"))\n#else\n#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0\n#endif\n$gt_revision_test_code\n                   ]],\n                   [[\nbindtextdomain (\"\", \"\");\nreturn * gettext (\"\")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION\n                   ]])],\n                [LIBINTL=\"$LIBINTL $LIBICONV\"\n                 LTLIBINTL=\"$LTLIBINTL $LTLIBICONV\"\n                 eval \"$gt_func_gnugettext_libintl=yes\"\n                ])\n            fi\n            CPPFLAGS=\"$gt_save_CPPFLAGS\"\n            LIBS=\"$gt_save_LIBS\"])\n        fi\n\n        dnl If an already present or preinstalled GNU gettext() is found,\n        dnl use it.  But if this macro is used in GNU gettext, and GNU\n        dnl gettext is already preinstalled in libintl, we update this\n        dnl libintl.  (Cf. the install rule in intl/Makefile.in.)\n        if { eval \"gt_val=\\$$gt_func_gnugettext_libc\"; test \"$gt_val\" = \"yes\"; } \\\n           || { { eval \"gt_val=\\$$gt_func_gnugettext_libintl\"; test \"$gt_val\" = \"yes\"; } \\\n                && test \"$PACKAGE\" != gettext-runtime \\\n                && test \"$PACKAGE\" != gettext-tools; }; then\n          gt_use_preinstalled_gnugettext=yes\n        else\n          dnl Reset the values set by searching for libintl.\n          LIBINTL=\n          LTLIBINTL=\n          INCINTL=\n        fi\n\n    ifelse(gt_included_intl, yes, [\n        if test \"$gt_use_preinstalled_gnugettext\" != \"yes\"; then\n          dnl GNU gettext is not found in the C library.\n          dnl Fall back on included GNU gettext library.\n          nls_cv_use_gnu_gettext=yes\n        fi\n      fi\n\n      if test \"$nls_cv_use_gnu_gettext\" = \"yes\"; then\n        dnl Mark actions used to generate GNU NLS library.\n        BUILD_INCLUDED_LIBINTL=yes\n        USE_INCLUDED_LIBINTL=yes\n        LIBINTL=\"ifelse([$3],[],\\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV $LIBTHREAD\"\n        LTLIBINTL=\"ifelse([$3],[],\\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV $LTLIBTHREAD\"\n        LIBS=`echo \" $LIBS \" | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'`\n      fi\n\n      CATOBJEXT=\n      if test \"$gt_use_preinstalled_gnugettext\" = \"yes\" \\\n         || test \"$nls_cv_use_gnu_gettext\" = \"yes\"; then\n        dnl Mark actions to use GNU gettext tools.\n        CATOBJEXT=.gmo\n      fi\n    ])\n\n    if test -n \"$INTL_MACOSX_LIBS\"; then\n      if test \"$gt_use_preinstalled_gnugettext\" = \"yes\" \\\n         || test \"$nls_cv_use_gnu_gettext\" = \"yes\"; then\n        dnl Some extra flags are needed during linking.\n        LIBINTL=\"$LIBINTL $INTL_MACOSX_LIBS\"\n        LTLIBINTL=\"$LTLIBINTL $INTL_MACOSX_LIBS\"\n      fi\n    fi\n\n    if test \"$gt_use_preinstalled_gnugettext\" = \"yes\" \\\n       || test \"$nls_cv_use_gnu_gettext\" = \"yes\"; then\n      AC_DEFINE([ENABLE_NLS], [1],\n        [Define to 1 if translation of program messages to the user's native language\n   is requested.])\n    else\n      USE_NLS=no\n    fi\n  fi\n\n  AC_MSG_CHECKING([whether to use NLS])\n  AC_MSG_RESULT([$USE_NLS])\n  if test \"$USE_NLS\" = \"yes\"; then\n    AC_MSG_CHECKING([where the gettext function comes from])\n    if test \"$gt_use_preinstalled_gnugettext\" = \"yes\"; then\n      if { eval \"gt_val=\\$$gt_func_gnugettext_libintl\"; test \"$gt_val\" = \"yes\"; }; then\n        gt_source=\"external libintl\"\n      else\n        gt_source=\"libc\"\n      fi\n    else\n      gt_source=\"included intl directory\"\n    fi\n    AC_MSG_RESULT([$gt_source])\n  fi\n\n  if test \"$USE_NLS\" = \"yes\"; then\n\n    if test \"$gt_use_preinstalled_gnugettext\" = \"yes\"; then\n      if { eval \"gt_val=\\$$gt_func_gnugettext_libintl\"; test \"$gt_val\" = \"yes\"; }; then\n        AC_MSG_CHECKING([how to link with libintl])\n        AC_MSG_RESULT([$LIBINTL])\n        AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL])\n      fi\n\n      dnl For backward compatibility. Some packages may be using this.\n      AC_DEFINE([HAVE_GETTEXT], [1],\n       [Define if the GNU gettext() function is already present or preinstalled.])\n      AC_DEFINE([HAVE_DCGETTEXT], [1],\n       [Define if the GNU dcgettext() function is already present or preinstalled.])\n    fi\n\n    dnl We need to process the po/ directory.\n    POSUB=po\n  fi\n\n  ifelse(gt_included_intl, yes, [\n    dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL\n    dnl to 'yes' because some of the testsuite requires it.\n    if test \"$PACKAGE\" = gettext-runtime || test \"$PACKAGE\" = gettext-tools; then\n      BUILD_INCLUDED_LIBINTL=yes\n    fi\n\n    dnl Make all variables we use known to autoconf.\n    AC_SUBST([BUILD_INCLUDED_LIBINTL])\n    AC_SUBST([USE_INCLUDED_LIBINTL])\n    AC_SUBST([CATOBJEXT])\n\n    dnl For backward compatibility. Some configure.ins may be using this.\n    nls_cv_header_intl=\n    nls_cv_header_libgt=\n\n    dnl For backward compatibility. Some Makefiles may be using this.\n    DATADIRNAME=share\n    AC_SUBST([DATADIRNAME])\n\n    dnl For backward compatibility. Some Makefiles may be using this.\n    INSTOBJEXT=.mo\n    AC_SUBST([INSTOBJEXT])\n\n    dnl For backward compatibility. Some Makefiles may be using this.\n    GENCAT=gencat\n    AC_SUBST([GENCAT])\n\n    dnl For backward compatibility. Some Makefiles may be using this.\n    INTLOBJS=\n    if test \"$USE_INCLUDED_LIBINTL\" = yes; then\n      INTLOBJS=\"\\$(GETTOBJS)\"\n    fi\n    AC_SUBST([INTLOBJS])\n\n    dnl Enable libtool support if the surrounding package wishes it.\n    INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix\n    AC_SUBST([INTL_LIBTOOL_SUFFIX_PREFIX])\n  ])\n\n  dnl For backward compatibility. Some Makefiles may be using this.\n  INTLLIBS=\"$LIBINTL\"\n  AC_SUBST([INTLLIBS])\n\n  dnl Make all documented variables known to autoconf.\n  AC_SUBST([LIBINTL])\n  AC_SUBST([LTLIBINTL])\n  AC_SUBST([POSUB])\n])\n\n\ndnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized.\nm4_define([gt_NEEDS_INIT],\n[\n  m4_divert_text([DEFAULTS], [gt_needs=])\n  m4_define([gt_NEEDS_INIT], [])\n])\n\n\ndnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL])\nAC_DEFUN([AM_GNU_GETTEXT_NEED],\n[\n  m4_divert_text([INIT_PREPARE], [gt_needs=\"$gt_needs $1\"])\n])\n\n\ndnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version])\nAC_DEFUN([AM_GNU_GETTEXT_VERSION], [])\n\n\ndnl Usage: AM_GNU_GETTEXT_REQUIRE_VERSION([gettext-version])\nAC_DEFUN([AM_GNU_GETTEXT_REQUIRE_VERSION], [])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/gettimeofday.m4",
    "content": "# serial 21\n\n# Copyright (C) 2001-2003, 2005, 2007, 2009-2017 Free Software Foundation, Inc.\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\ndnl From Jim Meyering.\n\nAC_DEFUN([gl_FUNC_GETTIMEOFDAY],\n[\n  AC_REQUIRE([AC_C_RESTRICT])\n  AC_REQUIRE([gl_HEADER_SYS_TIME_H])\n  AC_REQUIRE([gl_HEADER_SYS_TIME_H_DEFAULTS])\n  AC_CHECK_FUNCS_ONCE([gettimeofday])\n\n  gl_gettimeofday_timezone=void\n  if test $ac_cv_func_gettimeofday != yes; then\n    HAVE_GETTIMEOFDAY=0\n  else\n    gl_FUNC_GETTIMEOFDAY_CLOBBER\n    AC_CACHE_CHECK([for gettimeofday with POSIX signature],\n      [gl_cv_func_gettimeofday_posix_signature],\n      [AC_COMPILE_IFELSE(\n         [AC_LANG_PROGRAM(\n            [[#include <sys/time.h>\n              struct timeval c;\n              int gettimeofday (struct timeval *restrict, void *restrict);\n            ]],\n            [[/* glibc uses struct timezone * rather than the POSIX void *\n                 if _GNU_SOURCE is defined.  However, since the only portable\n                 use of gettimeofday uses NULL as the second parameter, and\n                 since the glibc definition is actually more typesafe, it is\n                 not worth wrapping this to get a compliant signature.  */\n              int (*f) (struct timeval *restrict, void *restrict)\n                = gettimeofday;\n              int x = f (&c, 0);\n              return !(x | c.tv_sec | c.tv_usec);\n            ]])],\n          [gl_cv_func_gettimeofday_posix_signature=yes],\n          [AC_COMPILE_IFELSE(\n            [AC_LANG_PROGRAM(\n              [[#include <sys/time.h>\nint gettimeofday (struct timeval *restrict, struct timezone *restrict);\n              ]])],\n            [gl_cv_func_gettimeofday_posix_signature=almost],\n            [gl_cv_func_gettimeofday_posix_signature=no])])])\n    if test $gl_cv_func_gettimeofday_posix_signature = almost; then\n      gl_gettimeofday_timezone='struct timezone'\n    elif test $gl_cv_func_gettimeofday_posix_signature != yes; then\n      REPLACE_GETTIMEOFDAY=1\n    fi\n    dnl If we override 'struct timeval', we also have to override gettimeofday.\n    if test $REPLACE_STRUCT_TIMEVAL = 1; then\n      REPLACE_GETTIMEOFDAY=1\n    fi\n    m4_ifdef([gl_FUNC_TZSET_CLOBBER], [\n      gl_FUNC_TZSET_CLOBBER\n      case \"$gl_cv_func_tzset_clobber\" in\n        *yes)\n          REPLACE_GETTIMEOFDAY=1\n          gl_GETTIMEOFDAY_REPLACE_LOCALTIME\n          AC_DEFINE([tzset], [rpl_tzset],\n            [Define to rpl_tzset if the wrapper function should be used.])\n          AC_DEFINE([TZSET_CLOBBERS_LOCALTIME], [1],\n            [Define if tzset clobbers localtime's static buffer.])\n          ;;\n      esac\n    ])\n  fi\n  AC_DEFINE_UNQUOTED([GETTIMEOFDAY_TIMEZONE], [$gl_gettimeofday_timezone],\n    [Define this to 'void' or 'struct timezone' to match the system's\n     declaration of the second argument to gettimeofday.])\n])\n\n\ndnl See if gettimeofday clobbers the static buffer that localtime uses\ndnl for its return value.  The gettimeofday function from Mac OS X 10.0.4\ndnl (i.e., Darwin 1.3.7) has this problem.\ndnl\ndnl If it does, then arrange to use gettimeofday and localtime only via\ndnl the wrapper functions that work around the problem.\n\nAC_DEFUN([gl_FUNC_GETTIMEOFDAY_CLOBBER],\n[\n AC_REQUIRE([gl_HEADER_SYS_TIME_H])\n AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles\n\n AC_CACHE_CHECK([whether gettimeofday clobbers localtime buffer],\n  [gl_cv_func_gettimeofday_clobber],\n  [AC_RUN_IFELSE(\n     [AC_LANG_PROGRAM(\n        [[#include <string.h>\n          #include <sys/time.h>\n          #include <time.h>\n          #include <stdlib.h>\n        ]],\n        [[\n          time_t t = 0;\n          struct tm *lt;\n          struct tm saved_lt;\n          struct timeval tv;\n          lt = localtime (&t);\n          saved_lt = *lt;\n          gettimeofday (&tv, NULL);\n          return memcmp (lt, &saved_lt, sizeof (struct tm)) != 0;\n        ]])],\n     [gl_cv_func_gettimeofday_clobber=no],\n     [gl_cv_func_gettimeofday_clobber=yes],\n     [# When cross-compiling:\n      case \"$host_os\" in\n                # Guess all is fine on glibc systems.\n        *-gnu*) gl_cv_func_gettimeofday_clobber=\"guessing no\" ;;\n                # If we don't know, assume the worst.\n        *)      gl_cv_func_gettimeofday_clobber=\"guessing yes\" ;;\n      esac\n     ])])\n\n case \"$gl_cv_func_gettimeofday_clobber\" in\n   *yes)\n     REPLACE_GETTIMEOFDAY=1\n     gl_GETTIMEOFDAY_REPLACE_LOCALTIME\n     AC_DEFINE([GETTIMEOFDAY_CLOBBERS_LOCALTIME], [1],\n       [Define if gettimeofday clobbers the localtime buffer.])\n     ;;\n esac\n])\n\nAC_DEFUN([gl_GETTIMEOFDAY_REPLACE_LOCALTIME], [\n  REPLACE_GMTIME=1\n  REPLACE_LOCALTIME=1\n])\n\n# Prerequisites of lib/gettimeofday.c.\nAC_DEFUN([gl_PREREQ_GETTIMEOFDAY], [\n  AC_CHECK_HEADERS([sys/timeb.h])\n  AC_CHECK_FUNCS([_ftime])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/glibc2.m4",
    "content": "# glibc2.m4 serial 3\ndnl Copyright (C) 2000-2002, 2004, 2008, 2010-2017 Free Software Foundation,\ndnl Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\n# Test for the GNU C Library, version 2.0 or newer.\n# From Bruno Haible.\n\nAC_DEFUN([gt_GLIBC2],\n  [\n    AC_CACHE_CHECK([whether we are using the GNU C Library 2 or newer],\n      [ac_cv_gnu_library_2],\n      [AC_EGREP_CPP([Lucky GNU user],\n        [\n#include <features.h>\n#ifdef __GNU_LIBRARY__\n #if (__GLIBC__ >= 2) && !defined __UCLIBC__\n  Lucky GNU user\n #endif\n#endif\n        ],\n        [ac_cv_gnu_library_2=yes],\n        [ac_cv_gnu_library_2=no])\n      ]\n    )\n    AC_SUBST([GLIBC2])\n    GLIBC2=\"$ac_cv_gnu_library_2\"\n  ]\n)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/glibc21.m4",
    "content": "# glibc21.m4 serial 5\ndnl Copyright (C) 2000-2002, 2004, 2008, 2010-2017 Free Software Foundation,\ndnl Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\n# Test for the GNU C Library, version 2.1 or newer, or uClibc.\n# From Bruno Haible.\n\nAC_DEFUN([gl_GLIBC21],\n  [\n    AC_CACHE_CHECK([whether we are using the GNU C Library >= 2.1 or uClibc],\n      [ac_cv_gnu_library_2_1],\n      [AC_EGREP_CPP([Lucky],\n        [\n#include <features.h>\n#ifdef __GNU_LIBRARY__\n #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2)\n  Lucky GNU user\n #endif\n#endif\n#ifdef __UCLIBC__\n Lucky user\n#endif\n        ],\n        [ac_cv_gnu_library_2_1=yes],\n        [ac_cv_gnu_library_2_1=no])\n      ]\n    )\n    AC_SUBST([GLIBC21])\n    GLIBC21=\"$ac_cv_gnu_library_2_1\"\n  ]\n)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/gnulib-cache.m4",
    "content": "# Copyright (C) 2002-2017 Free Software Foundation, Inc.\n#\n# This file is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This file is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this file.  If not, see <http://www.gnu.org/licenses/>.\n#\n# As a special exception to the GNU General Public License,\n# this file may be distributed as part of a program that\n# contains a configuration script generated by Autoconf, under\n# the same distribution terms as the rest of that program.\n#\n# Generated by gnulib-tool.\n#\n# This file represents the specification of how gnulib-tool is used.\n# It acts as a cache: It is written and read by gnulib-tool.\n# In projects that use version control, this file is meant to be put under\n# version control, like the configure.ac and various Makefile.am files.\n\n\n# Specification in the form of a command-line invocation:\n#   gnulib-tool --import --local-dir=gnulib-local --lib=libicrt --source-base=srclib --m4-base=srcm4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --makefile-name=Makefile.gnulib --no-conditional-dependencies --no-libtool --macro-prefix=gl --no-vc-files binary-io error gettext gettext-h libiconv-misc mbstate progname relocatable-prog safe-read sigpipe stdio stdlib strerror unistd uniwidth/width unlocked-io xalloc\n\n# Specification in the form of a few gnulib-tool.m4 macro invocations:\ngl_LOCAL_DIR([gnulib-local])\ngl_MODULES([\n  binary-io\n  error\n  gettext\n  gettext-h\n  libiconv-misc\n  mbstate\n  progname\n  relocatable-prog\n  safe-read\n  sigpipe\n  stdio\n  stdlib\n  strerror\n  unistd\n  uniwidth/width\n  unlocked-io\n  xalloc\n])\ngl_AVOID([])\ngl_SOURCE_BASE([srclib])\ngl_M4_BASE([srcm4])\ngl_PO_BASE([])\ngl_DOC_BASE([doc])\ngl_TESTS_BASE([tests])\ngl_LIB([libicrt])\ngl_MAKEFILE_NAME([Makefile.gnulib])\ngl_MACRO_PREFIX([gl])\ngl_PO_DOMAIN([])\ngl_WITNESS_C_MACRO([])\ngl_VC_FILES([false])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/gnulib-common.m4",
    "content": "# gnulib-common.m4 serial 36\ndnl Copyright (C) 2007-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\n# gl_COMMON\n# is expanded unconditionally through gnulib-tool magic.\nAC_DEFUN([gl_COMMON], [\n  dnl Use AC_REQUIRE here, so that the code is expanded once only.\n  AC_REQUIRE([gl_00GNULIB])\n  AC_REQUIRE([gl_COMMON_BODY])\n])\nAC_DEFUN([gl_COMMON_BODY], [\n  AH_VERBATIM([_Noreturn],\n[/* The _Noreturn keyword of C11.  */\n#if ! (defined _Noreturn \\\n       || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__))\n# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \\\n      || 0x5110 <= __SUNPRO_C)\n#  define _Noreturn __attribute__ ((__noreturn__))\n# elif defined _MSC_VER && 1200 <= _MSC_VER\n#  define _Noreturn __declspec (noreturn)\n# else\n#  define _Noreturn\n# endif\n#endif\n])\n  AH_VERBATIM([isoc99_inline],\n[/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports\n   the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of\n   earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.\n   __APPLE__ && __MACH__ test for Mac OS X.\n   __APPLE_CC__ tests for the Apple compiler and its version.\n   __STDC_VERSION__ tests for the C99 mode.  */\n#if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__\n# define __GNUC_STDC_INLINE__ 1\n#endif])\n  AH_VERBATIM([unused_parameter],\n[/* Define as a marker that can be attached to declarations that might not\n    be used.  This helps to reduce warnings, such as from\n    GCC -Wunused-parameter.  */\n#if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)\n# define _GL_UNUSED __attribute__ ((__unused__))\n#else\n# define _GL_UNUSED\n#endif\n/* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name\n   is a misnomer outside of parameter lists.  */\n#define _UNUSED_PARAMETER_ _GL_UNUSED\n\n/* gcc supports the \"unused\" attribute on possibly unused labels, and\n   g++ has since version 4.5.  Note to support C++ as well as C,\n   _GL_UNUSED_LABEL should be used with a trailing ;  */\n#if !defined __cplusplus || __GNUC__ > 4 \\\n    || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)\n# define _GL_UNUSED_LABEL _GL_UNUSED\n#else\n# define _GL_UNUSED_LABEL\n#endif\n\n/* The __pure__ attribute was added in gcc 2.96.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)\n# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))\n#else\n# define _GL_ATTRIBUTE_PURE /* empty */\n#endif\n\n/* The __const__ attribute was added in gcc 2.95.  */\n#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)\n# define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))\n#else\n# define _GL_ATTRIBUTE_CONST /* empty */\n#endif\n])\n  dnl Preparation for running test programs:\n  dnl Tell glibc to write diagnostics from -D_FORTIFY_SOURCE=2 to stderr, not\n  dnl to /dev/tty, so they can be redirected to log files.  Such diagnostics\n  dnl arise e.g., in the macros gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N.\n  LIBC_FATAL_STDERR_=1\n  export LIBC_FATAL_STDERR_\n])\n\n# gl_MODULE_INDICATOR_CONDITION\n# expands to a C preprocessor expression that evaluates to 1 or 0, depending\n# whether a gnulib module that has been requested shall be considered present\n# or not.\nm4_define([gl_MODULE_INDICATOR_CONDITION], [1])\n\n# gl_MODULE_INDICATOR_SET_VARIABLE([modulename])\n# sets the shell variable that indicates the presence of the given module to\n# a C preprocessor expression that will evaluate to 1.\nAC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE],\n[\n  gl_MODULE_INDICATOR_SET_VARIABLE_AUX(\n    [GNULIB_[]m4_translit([[$1]],\n                          [abcdefghijklmnopqrstuvwxyz./-],\n                          [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])],\n    [gl_MODULE_INDICATOR_CONDITION])\n])\n\n# gl_MODULE_INDICATOR_SET_VARIABLE_AUX([variable])\n# modifies the shell variable to include the gl_MODULE_INDICATOR_CONDITION.\n# The shell variable's value is a C preprocessor expression that evaluates\n# to 0 or 1.\nAC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX],\n[\n  m4_if(m4_defn([gl_MODULE_INDICATOR_CONDITION]), [1],\n    [\n     dnl Simplify the expression VALUE || 1 to 1.\n     $1=1\n    ],\n    [gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([$1],\n                                             [gl_MODULE_INDICATOR_CONDITION])])\n])\n\n# gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([variable], [condition])\n# modifies the shell variable to include the given condition.  The shell\n# variable's value is a C preprocessor expression that evaluates to 0 or 1.\nAC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR],\n[\n  dnl Simplify the expression 1 || CONDITION to 1.\n  if test \"$[]$1\" != 1; then\n    dnl Simplify the expression 0 || CONDITION to CONDITION.\n    if test \"$[]$1\" = 0; then\n      $1=$2\n    else\n      $1=\"($[]$1 || $2)\"\n    fi\n  fi\n])\n\n# gl_MODULE_INDICATOR([modulename])\n# defines a C macro indicating the presence of the given module\n# in a location where it can be used.\n#                                             |  Value  |   Value   |\n#                                             | in lib/ | in tests/ |\n# --------------------------------------------+---------+-----------+\n# Module present among main modules:          |    1    |     1     |\n# --------------------------------------------+---------+-----------+\n# Module present among tests-related modules: |    0    |     1     |\n# --------------------------------------------+---------+-----------+\n# Module not present at all:                  |    0    |     0     |\n# --------------------------------------------+---------+-----------+\nAC_DEFUN([gl_MODULE_INDICATOR],\n[\n  AC_DEFINE_UNQUOTED([GNULIB_]m4_translit([[$1]],\n      [abcdefghijklmnopqrstuvwxyz./-],\n      [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]),\n    [gl_MODULE_INDICATOR_CONDITION],\n    [Define to a C preprocessor expression that evaluates to 1 or 0,\n     depending whether the gnulib module $1 shall be considered present.])\n])\n\n# gl_MODULE_INDICATOR_FOR_TESTS([modulename])\n# defines a C macro indicating the presence of the given module\n# in lib or tests. This is useful to determine whether the module\n# should be tested.\n#                                             |  Value  |   Value   |\n#                                             | in lib/ | in tests/ |\n# --------------------------------------------+---------+-----------+\n# Module present among main modules:          |    1    |     1     |\n# --------------------------------------------+---------+-----------+\n# Module present among tests-related modules: |    1    |     1     |\n# --------------------------------------------+---------+-----------+\n# Module not present at all:                  |    0    |     0     |\n# --------------------------------------------+---------+-----------+\nAC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS],\n[\n  AC_DEFINE([GNULIB_TEST_]m4_translit([[$1]],\n      [abcdefghijklmnopqrstuvwxyz./-],\n      [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [1],\n    [Define to 1 when the gnulib module $1 should be tested.])\n])\n\n# gl_ASSERT_NO_GNULIB_POSIXCHECK\n# asserts that there will never be a need to #define GNULIB_POSIXCHECK.\n# and thereby enables an optimization of configure and config.h.\n# Used by Emacs.\nAC_DEFUN([gl_ASSERT_NO_GNULIB_POSIXCHECK],\n[\n  dnl Override gl_WARN_ON_USE_PREPARE.\n  dnl But hide this definition from 'aclocal'.\n  AC_DEFUN([gl_W][ARN_ON_USE_PREPARE], [])\n])\n\n# gl_ASSERT_NO_GNULIB_TESTS\n# asserts that there will be no gnulib tests in the scope of the configure.ac\n# and thereby enables an optimization of config.h.\n# Used by Emacs.\nAC_DEFUN([gl_ASSERT_NO_GNULIB_TESTS],\n[\n  dnl Override gl_MODULE_INDICATOR_FOR_TESTS.\n  AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS], [])\n])\n\n# Test whether <features.h> exists.\n# Set HAVE_FEATURES_H.\nAC_DEFUN([gl_FEATURES_H],\n[\n  AC_CHECK_HEADERS_ONCE([features.h])\n  if test $ac_cv_header_features_h = yes; then\n    HAVE_FEATURES_H=1\n  else\n    HAVE_FEATURES_H=0\n  fi\n  AC_SUBST([HAVE_FEATURES_H])\n])\n\n# m4_foreach_w\n# is a backport of autoconf-2.59c's m4_foreach_w.\n# Remove this macro when we can assume autoconf >= 2.60.\nm4_ifndef([m4_foreach_w],\n  [m4_define([m4_foreach_w],\n    [m4_foreach([$1], m4_split(m4_normalize([$2]), [ ]), [$3])])])\n\n# AS_VAR_IF(VAR, VALUE, [IF-MATCH], [IF-NOT-MATCH])\n# ----------------------------------------------------\n# Backport of autoconf-2.63b's macro.\n# Remove this macro when we can assume autoconf >= 2.64.\nm4_ifndef([AS_VAR_IF],\n[m4_define([AS_VAR_IF],\n[AS_IF([test x\"AS_VAR_GET([$1])\" = x\"\"$2], [$3], [$4])])])\n\n# gl_PROG_CC_C99\n# Modifies the value of the shell variable CC in an attempt to make $CC\n# understand ISO C99 source code.\n# This is like AC_PROG_CC_C99, except that\n# - AC_PROG_CC_C99 did not exist in Autoconf versions < 2.60,\n# - AC_PROG_CC_C99 does not mix well with AC_PROG_CC_STDC\n#   <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00367.html>,\n#   but many more packages use AC_PROG_CC_STDC than AC_PROG_CC_C99\n#   <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00441.html>.\n# Remaining problems:\n# - When AC_PROG_CC_STDC is invoked twice, it adds the C99 enabling options\n#   to CC twice\n#   <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00431.html>.\n# - AC_PROG_CC_STDC is likely to change now that C11 is an ISO standard.\nAC_DEFUN([gl_PROG_CC_C99],\n[\n  dnl Change that version number to the minimum Autoconf version that supports\n  dnl mixing AC_PROG_CC_C99 calls with AC_PROG_CC_STDC calls.\n  m4_version_prereq([9.0],\n    [AC_REQUIRE([AC_PROG_CC_C99])],\n    [AC_REQUIRE([AC_PROG_CC_STDC])])\n])\n\n# gl_PROG_AR_RANLIB\n# Determines the values for AR, ARFLAGS, RANLIB that fit with the compiler.\n# The user can set the variables AR, ARFLAGS, RANLIB if he wants to override\n# the values.\nAC_DEFUN([gl_PROG_AR_RANLIB],\n[\n  dnl Minix 3 comes with two toolchains: The Amsterdam Compiler Kit compiler\n  dnl as \"cc\", and GCC as \"gcc\". They have different object file formats and\n  dnl library formats. In particular, the GNU binutils programs ar and ranlib\n  dnl produce libraries that work only with gcc, not with cc.\n  AC_REQUIRE([AC_PROG_CC])\n  AC_BEFORE([$0], [AM_PROG_AR])\n  AC_CACHE_CHECK([for Minix Amsterdam compiler], [gl_cv_c_amsterdam_compiler],\n    [\n      AC_EGREP_CPP([Amsterdam],\n        [\n#ifdef __ACK__\nAmsterdam\n#endif\n        ],\n        [gl_cv_c_amsterdam_compiler=yes],\n        [gl_cv_c_amsterdam_compiler=no])\n    ])\n\n  dnl Don't compete with AM_PROG_AR's decision about AR/ARFLAGS if we are not\n  dnl building with __ACK__.\n  if test $gl_cv_c_amsterdam_compiler = yes; then\n    if test -z \"$AR\"; then\n      AR='cc -c.a'\n    fi\n    if test -z \"$ARFLAGS\"; then\n      ARFLAGS='-o'\n    fi\n  else\n    dnl AM_PROG_AR was added in automake v1.11.2.  AM_PROG_AR does not AC_SUBST\n    dnl ARFLAGS variable (it is filed into Makefile.in directly by automake\n    dnl script on-demand, if not specified by ./configure of course).\n    dnl Don't AC_REQUIRE the AM_PROG_AR otherwise the code for __ACK__ above\n    dnl will be ignored.  Also, pay attention to call AM_PROG_AR in else block\n    dnl because AM_PROG_AR is written so it could re-set AR variable even for\n    dnl __ACK__.  It may seem like its easier to avoid calling the macro here,\n    dnl but we need to AC_SUBST both AR/ARFLAGS (thus those must have some good\n    dnl default value and automake should usually know them).\n    m4_ifdef([AM_PROG_AR], [AM_PROG_AR], [:])\n  fi\n\n  dnl In case the code above has not helped with setting AR/ARFLAGS, use\n  dnl Automake-documented default values for AR and ARFLAGS, but prefer\n  dnl ${host}-ar over ar (useful for cross-compiling).\n  AC_CHECK_TOOL([AR], [ar], [ar])\n  if test -z \"$ARFLAGS\"; then\n    ARFLAGS='cr'\n  fi\n\n  AC_SUBST([AR])\n  AC_SUBST([ARFLAGS])\n  if test -z \"$RANLIB\"; then\n    if test $gl_cv_c_amsterdam_compiler = yes; then\n      RANLIB=':'\n    else\n      dnl Use the ranlib program if it is available.\n      AC_PROG_RANLIB\n    fi\n  fi\n  AC_SUBST([RANLIB])\n])\n\n# AC_PROG_MKDIR_P\n# is a backport of autoconf-2.60's AC_PROG_MKDIR_P, with a fix\n# for interoperability with automake-1.9.6 from autoconf-2.62.\n# Remove this macro when we can assume autoconf >= 2.62 or\n# autoconf >= 2.60 && automake >= 1.10.\n# AC_AUTOCONF_VERSION was introduced in 2.62, so use that as the witness.\nm4_ifndef([AC_AUTOCONF_VERSION],[\nm4_ifdef([AC_PROG_MKDIR_P], [\n  dnl For automake-1.9.6 && autoconf < 2.62: Ensure MKDIR_P is AC_SUBSTed.\n  m4_define([AC_PROG_MKDIR_P],\n    m4_defn([AC_PROG_MKDIR_P])[\n    AC_SUBST([MKDIR_P])])], [\n  dnl For autoconf < 2.60: Backport of AC_PROG_MKDIR_P.\n  AC_DEFUN_ONCE([AC_PROG_MKDIR_P],\n    [AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake\n     MKDIR_P='$(mkdir_p)'\n     AC_SUBST([MKDIR_P])])])\n])\n\n# AC_C_RESTRICT\n# This definition is copied from post-2.69 Autoconf and overrides the\n# AC_C_RESTRICT macro from autoconf 2.60..2.69.  It can be removed\n# once autoconf >= 2.70 can be assumed.  It's painful to check version\n# numbers, and in practice this macro is more up-to-date than Autoconf\n# is, so override Autoconf unconditionally.\nAC_DEFUN([AC_C_RESTRICT],\n[AC_CACHE_CHECK([for C/C++ restrict keyword], [ac_cv_c_restrict],\n  [ac_cv_c_restrict=no\n   # The order here caters to the fact that C++ does not require restrict.\n   for ac_kw in __restrict __restrict__ _Restrict restrict; do\n     AC_COMPILE_IFELSE(\n      [AC_LANG_PROGRAM(\n\t [[typedef int *int_ptr;\n\t   int foo (int_ptr $ac_kw ip) { return ip[0]; }\n\t   int bar (int [$ac_kw]); /* Catch GCC bug 14050.  */\n\t   int bar (int ip[$ac_kw]) { return ip[0]; }\n\t ]],\n\t [[int s[1];\n\t   int *$ac_kw t = s;\n\t   t[0] = 0;\n\t   return foo (t) + bar (t);\n\t ]])],\n      [ac_cv_c_restrict=$ac_kw])\n     test \"$ac_cv_c_restrict\" != no && break\n   done\n  ])\n AH_VERBATIM([restrict],\n[/* Define to the equivalent of the C99 'restrict' keyword, or to\n   nothing if this is not supported.  Do not define if restrict is\n   supported directly.  */\n#undef restrict\n/* Work around a bug in Sun C++: it does not support _Restrict or\n   __restrict__, even though the corresponding Sun C compiler ends up with\n   \"#define restrict _Restrict\" or \"#define restrict __restrict__\" in the\n   previous line.  Perhaps some future version of Sun C++ will work with\n   restrict; if so, hopefully it defines __RESTRICT like Sun C does.  */\n#if defined __SUNPRO_CC && !defined __RESTRICT\n# define _Restrict\n# define __restrict__\n#endif])\n case $ac_cv_c_restrict in\n   restrict) ;;\n   no) AC_DEFINE([restrict], []) ;;\n   *)  AC_DEFINE_UNQUOTED([restrict], [$ac_cv_c_restrict]) ;;\n esac\n])# AC_C_RESTRICT\n\n# gl_BIGENDIAN\n# is like AC_C_BIGENDIAN, except that it can be AC_REQUIREd.\n# Note that AC_REQUIRE([AC_C_BIGENDIAN]) does not work reliably because some\n# macros invoke AC_C_BIGENDIAN with arguments.\nAC_DEFUN([gl_BIGENDIAN],\n[\n  AC_C_BIGENDIAN\n])\n\n# gl_CACHE_VAL_SILENT(cache-id, command-to-set-it)\n# is like AC_CACHE_VAL(cache-id, command-to-set-it), except that it does not\n# output a spurious \"(cached)\" mark in the midst of other configure output.\n# This macro should be used instead of AC_CACHE_VAL when it is not surrounded\n# by an AC_MSG_CHECKING/AC_MSG_RESULT pair.\nAC_DEFUN([gl_CACHE_VAL_SILENT],\n[\n  saved_as_echo_n=\"$as_echo_n\"\n  as_echo_n=':'\n  AC_CACHE_VAL([$1], [$2])\n  as_echo_n=\"$saved_as_echo_n\"\n])\n\n# AS_VAR_COPY was added in autoconf 2.63b\nm4_define_default([AS_VAR_COPY],\n[AS_LITERAL_IF([$1[]$2], [$1=$$2], [eval $1=\\$$2])])\n\n# AC_PROG_SED was added in autoconf 2.59b\nm4_ifndef([AC_PROG_SED],\n[AC_DEFUN([AC_PROG_SED],\n[AC_CACHE_CHECK([for a sed that does not truncate output], ac_cv_path_SED,\n    [dnl ac_script should not contain more than 99 commands (for HP-UX sed),\n     dnl but more than about 7000 bytes, to catch a limit in Solaris 8 /usr/ucb/sed.\n     ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/\n     for ac_i in 1 2 3 4 5 6 7; do\n       ac_script=\"$ac_script$as_nl$ac_script\"\n     done\n     echo \"$ac_script\" 2>/dev/null | sed 99q >conftest.sed\n     AS_UNSET([ac_script])\n     if test -z \"$SED\"; then\n       ac_path_SED_found=false\n       _AS_PATH_WALK([], [\n         for ac_prog in sed gsed; do\n           for ac_exec_ext in '' $ac_executable_extensions; do\n             ac_path_SED=\"$as_dir/$ac_prog$ac_exec_ext\"\n             AS_EXECUTABLE_P([\"$ac_path_SED\"]) || continue\n             case `\"$ac_path_SED\" --version 2>&1` in\n               *GNU*) ac_cv_path_SED=$ac_path_SED ac_path_SED_found=:;;\n               *)\n                 ac_count=0\n                 _AS_ECHO_N([0123456789]) >conftest.in\n                 while :\n                 do\n                   cat conftest.in conftest.in >conftest.tmp\n                   mv conftest.tmp conftest.in\n                   cp conftest.in conftest.nl\n                   echo >> conftest.nl\n                   \"$ac_path_SED\" -f conftest.sed <conftest.nl >conftest.out 2>/dev/null || break\n                   diff conftest.out conftest.nl >/dev/null 2>&1 || break\n                   ac_count=`expr $ac_count + 1`\n                   if test $ac_count -gt ${ac_path_SED_max-0}; then\n                     # Best so far, but keep looking for better\n                     ac_cv_path_SED=$ac_path_SED\n                     ac_path_SED_max=$ac_count\n                   fi\n                   test $ac_count -gt 10 && break\n                 done\n                 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\n             esac\n             $ac_path_SED_found && break 3\n           done\n         done])\n       if test -z \"$ac_cv_path_SED\"; then\n         AC_ERROR([no acceptable sed could be found in \\$PATH])\n       fi\n     else\n       ac_cv_path_SED=$SED\n     fi\n SED=\"$ac_cv_path_SED\"\n AC_SUBST([SED])dnl\n rm -f conftest.sed\n])])])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/gnulib-comp.m4",
    "content": "# DO NOT EDIT! GENERATED AUTOMATICALLY!\n# Copyright (C) 2002-2017 Free Software Foundation, Inc.\n#\n# This file is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This file is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this file.  If not, see <http://www.gnu.org/licenses/>.\n#\n# As a special exception to the GNU General Public License,\n# this file may be distributed as part of a program that\n# contains a configuration script generated by Autoconf, under\n# the same distribution terms as the rest of that program.\n#\n# Generated by gnulib-tool.\n#\n# This file represents the compiled summary of the specification in\n# gnulib-cache.m4. It lists the computed macro invocations that need\n# to be invoked from configure.ac.\n# In projects that use version control, this file can be treated like\n# other built files.\n\n\n# This macro should be invoked from ./configure.ac, in the section\n# \"Checks for programs\", right after AC_PROG_CC, and certainly before\n# any checks for libraries, header files, types and library functions.\nAC_DEFUN([gl_EARLY],\n[\n  m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace\n  m4_pattern_allow([^gl_ES$])dnl a valid locale name\n  m4_pattern_allow([^gl_LIBOBJS$])dnl a variable\n  m4_pattern_allow([^gl_LTLIBOBJS$])dnl a variable\n\n  # Pre-early section.\n  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])\n  AC_REQUIRE([gl_PROG_AR_RANLIB])\n\n  AC_REQUIRE([AM_PROG_CC_C_O])\n  # Code from module absolute-header:\n  # Code from module alloca-opt:\n  # Code from module allocator:\n  # Code from module areadlink:\n  # Code from module binary-io:\n  # Code from module canonicalize-lgpl:\n  # Code from module careadlinkat:\n  # Code from module dirname-lgpl:\n  # Code from module dosname:\n  # Code from module double-slash-root:\n  # Code from module environ:\n  # Code from module errno:\n  # Code from module error:\n  # Code from module extensions:\n  # Code from module extern-inline:\n  # Code from module fcntl-h:\n  # Code from module getprogname:\n  # Code from module gettext:\n  # Code from module gettext-h:\n  # Code from module gettimeofday:\n  # Code from module havelib:\n  # Code from module include_next:\n  # Code from module intprops:\n  # Code from module largefile:\n  AC_REQUIRE([AC_SYS_LARGEFILE])\n  # Code from module libiconv-misc:\n  # Code from module limits-h:\n  # Code from module lstat:\n  # Code from module malloc-posix:\n  # Code from module malloca:\n  # Code from module mbstate:\n  # Code from module msvc-inval:\n  # Code from module msvc-nothrow:\n  # Code from module multiarch:\n  # Code from module nocrash:\n  # Code from module pathmax:\n  # Code from module progname:\n  # Code from module raise:\n  # Code from module read:\n  # Code from module readlink:\n  # Code from module relocatable-prog:\n  # Code from module relocatable-prog-wrapper:\n  # Code from module safe-read:\n  # Code from module signal-h:\n  # Code from module sigpipe:\n  # Code from module sigprocmask:\n  # Code from module snippet/_Noreturn:\n  # Code from module snippet/arg-nonnull:\n  # Code from module snippet/c++defs:\n  # Code from module snippet/warn-on-use:\n  # Code from module ssize_t:\n  # Code from module stat:\n  # Code from module stdbool:\n  # Code from module stddef:\n  # Code from module stdint:\n  # Code from module stdio:\n  # Code from module stdlib:\n  # Code from module streq:\n  # Code from module strerror:\n  # Code from module strerror-override:\n  # Code from module string:\n  # Code from module sys_stat:\n  # Code from module sys_time:\n  # Code from module sys_types:\n  # Code from module time:\n  # Code from module unistd:\n  # Code from module unitypes:\n  # Code from module uniwidth/base:\n  # Code from module uniwidth/width:\n  # Code from module unlocked-io:\n  # Code from module verify:\n  # Code from module xalloc:\n  # Code from module xalloc-oversized:\n  # Code from module xreadlink:\n])\n\n# This macro should be invoked from ./configure.ac, in the section\n# \"Check for header files, types and library functions\".\nAC_DEFUN([gl_INIT],\n[\n  AM_CONDITIONAL([GL_COND_LIBTOOL], [false])\n  gl_cond_libtool=false\n  gl_libdeps=\n  gl_ltlibdeps=\n  gl_m4_base='srcm4'\n  m4_pushdef([AC_LIBOBJ], m4_defn([gl_LIBOBJ]))\n  m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gl_REPLACE_FUNCS]))\n  m4_pushdef([AC_LIBSOURCES], m4_defn([gl_LIBSOURCES]))\n  m4_pushdef([gl_LIBSOURCES_LIST], [])\n  m4_pushdef([gl_LIBSOURCES_DIR], [])\n  gl_COMMON\n  gl_source_base='srclib'\n  gl_FUNC_ALLOCA\n  gl_CANONICALIZE_LGPL\n  if test $HAVE_CANONICALIZE_FILE_NAME = 0 || test $REPLACE_CANONICALIZE_FILE_NAME = 1; then\n    AC_LIBOBJ([canonicalize-lgpl])\n  fi\n  gl_MODULE_INDICATOR([canonicalize-lgpl])\n  gl_STDLIB_MODULE_INDICATOR([canonicalize_file_name])\n  gl_STDLIB_MODULE_INDICATOR([realpath])\n  AC_CHECK_FUNCS_ONCE([readlinkat])\n  gl_DIRNAME_LGPL\n  gl_DOUBLE_SLASH_ROOT\n  gl_ENVIRON\n  gl_UNISTD_MODULE_INDICATOR([environ])\n  gl_HEADER_ERRNO_H\n  gl_ERROR\n  if test $ac_cv_lib_error_at_line = no; then\n    AC_LIBOBJ([error])\n    gl_PREREQ_ERROR\n  fi\n  m4_ifdef([AM_XGETTEXT_OPTION],\n    [AM_][XGETTEXT_OPTION([--flag=error:3:c-format])\n     AM_][XGETTEXT_OPTION([--flag=error_at_line:5:c-format])])\n  AC_REQUIRE([gl_EXTERN_INLINE])\n  gl_FCNTL_H\n  gl_FUNC_GETPROGNAME\n  dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac.\n  AM_GNU_GETTEXT_VERSION([0.18.1])\n  AC_SUBST([LIBINTL])\n  AC_SUBST([LTLIBINTL])\n  gl_FUNC_GETTIMEOFDAY\n  if test $HAVE_GETTIMEOFDAY = 0 || test $REPLACE_GETTIMEOFDAY = 1; then\n    AC_LIBOBJ([gettimeofday])\n    gl_PREREQ_GETTIMEOFDAY\n  fi\n  gl_SYS_TIME_MODULE_INDICATOR([gettimeofday])\n  AC_REQUIRE([gl_LARGEFILE])\n  gl_LIMITS_H\n  gl_FUNC_LSTAT\n  if test $REPLACE_LSTAT = 1; then\n    AC_LIBOBJ([lstat])\n    gl_PREREQ_LSTAT\n  fi\n  gl_SYS_STAT_MODULE_INDICATOR([lstat])\n  gl_FUNC_MALLOC_POSIX\n  if test $REPLACE_MALLOC = 1; then\n    AC_LIBOBJ([malloc])\n  fi\n  gl_STDLIB_MODULE_INDICATOR([malloc-posix])\n  gl_MALLOCA\n  AC_TYPE_MBSTATE_T\n  AC_REQUIRE([gl_MSVC_INVAL])\n  if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then\n    AC_LIBOBJ([msvc-inval])\n  fi\n  AC_REQUIRE([gl_MSVC_NOTHROW])\n  if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then\n    AC_LIBOBJ([msvc-nothrow])\n  fi\n  gl_MULTIARCH\n  gl_PATHMAX\n  AC_CHECK_DECLS([program_invocation_name], [], [], [#include <errno.h>])\n  AC_CHECK_DECLS([program_invocation_short_name], [], [], [#include <errno.h>])\n  gl_FUNC_RAISE\n  if test $HAVE_RAISE = 0 || test $REPLACE_RAISE = 1; then\n    AC_LIBOBJ([raise])\n    gl_PREREQ_RAISE\n  fi\n  gl_SIGNAL_MODULE_INDICATOR([raise])\n  gl_FUNC_READ\n  if test $REPLACE_READ = 1; then\n    AC_LIBOBJ([read])\n    gl_PREREQ_READ\n  fi\n  gl_UNISTD_MODULE_INDICATOR([read])\n  gl_FUNC_READLINK\n  if test $HAVE_READLINK = 0 || test $REPLACE_READLINK = 1; then\n    AC_LIBOBJ([readlink])\n    gl_PREREQ_READLINK\n  fi\n  gl_UNISTD_MODULE_INDICATOR([readlink])\n  gl_RELOCATABLE([$gl_source_base])\n  if test $RELOCATABLE = yes; then\n    AC_LIBOBJ([progreloc])\n    AC_LIBOBJ([relocatable])\n  fi\n  gl_FUNC_READLINK_SEPARATE\n  gl_CANONICALIZE_LGPL_SEPARATE\n  gl_MALLOCA\n  gl_RELOCATABLE_LIBRARY\n  gl_FUNC_SETENV_SEPARATE\n  gl_PREREQ_SAFE_READ\n  gl_SIGNAL_H\n  gl_SIGNAL_SIGPIPE\n  dnl Define the C macro GNULIB_SIGPIPE to 1.\n  gl_MODULE_INDICATOR([sigpipe])\n  dnl Define the substituted variable GNULIB_SIGNAL_H_SIGPIPE to 1.\n  AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])\n  GNULIB_SIGNAL_H_SIGPIPE=1\n  dnl Define the substituted variable GNULIB_STDIO_H_SIGPIPE to 1.\n  AC_REQUIRE([gl_STDIO_H_DEFAULTS])\n  AC_REQUIRE([gl_ASM_SYMBOL_PREFIX])\n  GNULIB_STDIO_H_SIGPIPE=1\n  dnl Define the substituted variable GNULIB_UNISTD_H_SIGPIPE to 1.\n  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])\n  GNULIB_UNISTD_H_SIGPIPE=1\n  gl_SIGNALBLOCKING\n  if test $HAVE_POSIX_SIGNALBLOCKING = 0; then\n    AC_LIBOBJ([sigprocmask])\n    gl_PREREQ_SIGPROCMASK\n  fi\n  gl_SIGNAL_MODULE_INDICATOR([sigprocmask])\n  gt_TYPE_SSIZE_T\n  gl_FUNC_STAT\n  if test $REPLACE_STAT = 1; then\n    AC_LIBOBJ([stat])\n    gl_PREREQ_STAT\n  fi\n  gl_SYS_STAT_MODULE_INDICATOR([stat])\n  AM_STDBOOL_H\n  gl_STDDEF_H\n  gl_STDINT_H\n  gl_STDIO_H\n  gl_STDLIB_H\n  gl_FUNC_STRERROR\n  if test $REPLACE_STRERROR = 1; then\n    AC_LIBOBJ([strerror])\n  fi\n  gl_MODULE_INDICATOR([strerror])\n  gl_STRING_MODULE_INDICATOR([strerror])\n  AC_REQUIRE([gl_HEADER_ERRNO_H])\n  AC_REQUIRE([gl_FUNC_STRERROR_0])\n  if test -n \"$ERRNO_H\" || test $REPLACE_STRERROR_0 = 1; then\n    AC_LIBOBJ([strerror-override])\n    gl_PREREQ_SYS_H_WINSOCK2\n  fi\n  gl_HEADER_STRING_H\n  gl_HEADER_SYS_STAT_H\n  AC_PROG_MKDIR_P\n  gl_HEADER_SYS_TIME_H\n  AC_PROG_MKDIR_P\n  gl_SYS_TYPES_H\n  AC_PROG_MKDIR_P\n  gl_HEADER_TIME_H\n  gl_UNISTD_H\n  gl_LIBUNISTRING_LIBHEADER([0.9.4], [unitypes.h])\n  gl_LIBUNISTRING_LIBHEADER([0.9.4], [uniwidth.h])\n  gl_LIBUNISTRING_MODULE([0.9.6], [uniwidth/width])\n  gl_FUNC_GLIBC_UNLOCKED_IO\n  # End of code from modules\n  m4_ifval(gl_LIBSOURCES_LIST, [\n    m4_syscmd([test ! -d ]m4_defn([gl_LIBSOURCES_DIR])[ ||\n      for gl_file in ]gl_LIBSOURCES_LIST[ ; do\n        if test ! -r ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file ; then\n          echo \"missing file ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file\" >&2\n          exit 1\n        fi\n      done])dnl\n      m4_if(m4_sysval, [0], [],\n        [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])])\n  ])\n  m4_popdef([gl_LIBSOURCES_DIR])\n  m4_popdef([gl_LIBSOURCES_LIST])\n  m4_popdef([AC_LIBSOURCES])\n  m4_popdef([AC_REPLACE_FUNCS])\n  m4_popdef([AC_LIBOBJ])\n  AC_CONFIG_COMMANDS_PRE([\n    gl_libobjs=\n    gl_ltlibobjs=\n    if test -n \"$gl_LIBOBJS\"; then\n      # Remove the extension.\n      sed_drop_objext='s/\\.o$//;s/\\.obj$//'\n      for i in `for i in $gl_LIBOBJS; do echo \"$i\"; done | sed -e \"$sed_drop_objext\" | sort | uniq`; do\n        gl_libobjs=\"$gl_libobjs $i.$ac_objext\"\n        gl_ltlibobjs=\"$gl_ltlibobjs $i.lo\"\n      done\n    fi\n    AC_SUBST([gl_LIBOBJS], [$gl_libobjs])\n    AC_SUBST([gl_LTLIBOBJS], [$gl_ltlibobjs])\n  ])\n  gltests_libdeps=\n  gltests_ltlibdeps=\n  m4_pushdef([AC_LIBOBJ], m4_defn([gltests_LIBOBJ]))\n  m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gltests_REPLACE_FUNCS]))\n  m4_pushdef([AC_LIBSOURCES], m4_defn([gltests_LIBSOURCES]))\n  m4_pushdef([gltests_LIBSOURCES_LIST], [])\n  m4_pushdef([gltests_LIBSOURCES_DIR], [])\n  gl_COMMON\n  gl_source_base='tests'\nchangequote(,)dnl\n  gltests_WITNESS=IN_`echo \"${PACKAGE-$PACKAGE_TARNAME}\" | LC_ALL=C tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | LC_ALL=C sed -e 's/[^A-Z0-9_]/_/g'`_GNULIB_TESTS\nchangequote([, ])dnl\n  AC_SUBST([gltests_WITNESS])\n  gl_module_indicator_condition=$gltests_WITNESS\n  m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [$gl_module_indicator_condition])\n  m4_popdef([gl_MODULE_INDICATOR_CONDITION])\n  m4_ifval(gltests_LIBSOURCES_LIST, [\n    m4_syscmd([test ! -d ]m4_defn([gltests_LIBSOURCES_DIR])[ ||\n      for gl_file in ]gltests_LIBSOURCES_LIST[ ; do\n        if test ! -r ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file ; then\n          echo \"missing file ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file\" >&2\n          exit 1\n        fi\n      done])dnl\n      m4_if(m4_sysval, [0], [],\n        [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])])\n  ])\n  m4_popdef([gltests_LIBSOURCES_DIR])\n  m4_popdef([gltests_LIBSOURCES_LIST])\n  m4_popdef([AC_LIBSOURCES])\n  m4_popdef([AC_REPLACE_FUNCS])\n  m4_popdef([AC_LIBOBJ])\n  AC_CONFIG_COMMANDS_PRE([\n    gltests_libobjs=\n    gltests_ltlibobjs=\n    if test -n \"$gltests_LIBOBJS\"; then\n      # Remove the extension.\n      sed_drop_objext='s/\\.o$//;s/\\.obj$//'\n      for i in `for i in $gltests_LIBOBJS; do echo \"$i\"; done | sed -e \"$sed_drop_objext\" | sort | uniq`; do\n        gltests_libobjs=\"$gltests_libobjs $i.$ac_objext\"\n        gltests_ltlibobjs=\"$gltests_ltlibobjs $i.lo\"\n      done\n    fi\n    AC_SUBST([gltests_LIBOBJS], [$gltests_libobjs])\n    AC_SUBST([gltests_LTLIBOBJS], [$gltests_ltlibobjs])\n  ])\n  LIBICRT_LIBDEPS=\"$gl_libdeps\"\n  AC_SUBST([LIBICRT_LIBDEPS])\n  LIBICRT_LTLIBDEPS=\"$gl_ltlibdeps\"\n  AC_SUBST([LIBICRT_LTLIBDEPS])\n])\n\n# Like AC_LIBOBJ, except that the module name goes\n# into gl_LIBOBJS instead of into LIBOBJS.\nAC_DEFUN([gl_LIBOBJ], [\n  AS_LITERAL_IF([$1], [gl_LIBSOURCES([$1.c])])dnl\n  gl_LIBOBJS=\"$gl_LIBOBJS $1.$ac_objext\"\n])\n\n# Like AC_REPLACE_FUNCS, except that the module name goes\n# into gl_LIBOBJS instead of into LIBOBJS.\nAC_DEFUN([gl_REPLACE_FUNCS], [\n  m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl\n  AC_CHECK_FUNCS([$1], , [gl_LIBOBJ($ac_func)])\n])\n\n# Like AC_LIBSOURCES, except the directory where the source file is\n# expected is derived from the gnulib-tool parameterization,\n# and alloca is special cased (for the alloca-opt module).\n# We could also entirely rely on EXTRA_lib..._SOURCES.\nAC_DEFUN([gl_LIBSOURCES], [\n  m4_foreach([_gl_NAME], [$1], [\n    m4_if(_gl_NAME, [alloca.c], [], [\n      m4_define([gl_LIBSOURCES_DIR], [srclib])\n      m4_append([gl_LIBSOURCES_LIST], _gl_NAME, [ ])\n    ])\n  ])\n])\n\n# Like AC_LIBOBJ, except that the module name goes\n# into gltests_LIBOBJS instead of into LIBOBJS.\nAC_DEFUN([gltests_LIBOBJ], [\n  AS_LITERAL_IF([$1], [gltests_LIBSOURCES([$1.c])])dnl\n  gltests_LIBOBJS=\"$gltests_LIBOBJS $1.$ac_objext\"\n])\n\n# Like AC_REPLACE_FUNCS, except that the module name goes\n# into gltests_LIBOBJS instead of into LIBOBJS.\nAC_DEFUN([gltests_REPLACE_FUNCS], [\n  m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl\n  AC_CHECK_FUNCS([$1], , [gltests_LIBOBJ($ac_func)])\n])\n\n# Like AC_LIBSOURCES, except the directory where the source file is\n# expected is derived from the gnulib-tool parameterization,\n# and alloca is special cased (for the alloca-opt module).\n# We could also entirely rely on EXTRA_lib..._SOURCES.\nAC_DEFUN([gltests_LIBSOURCES], [\n  m4_foreach([_gl_NAME], [$1], [\n    m4_if(_gl_NAME, [alloca.c], [], [\n      m4_define([gltests_LIBSOURCES_DIR], [tests])\n      m4_append([gltests_LIBSOURCES_LIST], _gl_NAME, [ ])\n    ])\n  ])\n])\n\n# This macro records the list of files which have been installed by\n# gnulib-tool and may be removed by future gnulib-tool invocations.\nAC_DEFUN([gl_FILE_LIST], [\n  build-aux/config.libpath\n  build-aux/config.rpath\n  build-aux/install-reloc\n  build-aux/reloc-ldflags\n  build-aux/snippet/_Noreturn.h\n  build-aux/snippet/arg-nonnull.h\n  build-aux/snippet/c++defs.h\n  build-aux/snippet/warn-on-use.h\n  doc/relocatable.texi\n  lib/alloca.in.h\n  lib/allocator.c\n  lib/allocator.h\n  lib/areadlink.c\n  lib/areadlink.h\n  lib/basename-lgpl.c\n  lib/binary-io.c\n  lib/binary-io.h\n  lib/c-ctype.c\n  lib/c-ctype.h\n  lib/canonicalize-lgpl.c\n  lib/careadlinkat.c\n  lib/careadlinkat.h\n  lib/dirname-lgpl.c\n  lib/dirname.h\n  lib/dosname.h\n  lib/errno.in.h\n  lib/error.c\n  lib/error.h\n  lib/fcntl.in.h\n  lib/getprogname.c\n  lib/getprogname.h\n  lib/gettext.h\n  lib/gettimeofday.c\n  lib/intprops.h\n  lib/limits.in.h\n  lib/localcharset.h\n  lib/lstat.c\n  lib/malloc.c\n  lib/malloca.c\n  lib/malloca.h\n  lib/malloca.valgrind\n  lib/msvc-inval.c\n  lib/msvc-inval.h\n  lib/msvc-nothrow.c\n  lib/msvc-nothrow.h\n  lib/pathmax.h\n  lib/progname.c\n  lib/progname.h\n  lib/progreloc.c\n  lib/raise.c\n  lib/read.c\n  lib/readlink.c\n  lib/relocatable.c\n  lib/relocatable.h\n  lib/relocwrapper.c\n  lib/safe-read.c\n  lib/safe-read.h\n  lib/setenv.c\n  lib/signal.in.h\n  lib/sigprocmask.c\n  lib/stat.c\n  lib/stdbool.in.h\n  lib/stddef.in.h\n  lib/stdint.in.h\n  lib/stdio-write.c\n  lib/stdio.in.h\n  lib/stdlib.in.h\n  lib/streq.h\n  lib/strerror-override.c\n  lib/strerror-override.h\n  lib/strerror.c\n  lib/string.in.h\n  lib/stripslash.c\n  lib/sys_stat.in.h\n  lib/sys_time.in.h\n  lib/sys_types.in.h\n  lib/time.in.h\n  lib/unistd.c\n  lib/unistd.in.h\n  lib/unitypes.in.h\n  lib/uniwidth.in.h\n  lib/uniwidth/cjk.h\n  lib/uniwidth/width.c\n  lib/unlocked-io.h\n  lib/verify.h\n  lib/xalloc-oversized.h\n  lib/xalloc.h\n  lib/xmalloc.c\n  lib/xreadlink.c\n  lib/xreadlink.h\n  lib/xstrdup.c\n  m4/00gnulib.m4\n  m4/absolute-header.m4\n  m4/alloca.m4\n  m4/asm-underscore.m4\n  m4/canonicalize.m4\n  m4/codeset.m4\n  m4/dirname.m4\n  m4/double-slash-root.m4\n  m4/eealloc.m4\n  m4/environ.m4\n  m4/errno_h.m4\n  m4/error.m4\n  m4/extensions.m4\n  m4/extern-inline.m4\n  m4/fcntl-o.m4\n  m4/fcntl_h.m4\n  m4/getprogname.m4\n  m4/gettext.m4\n  m4/gettimeofday.m4\n  m4/glibc2.m4\n  m4/glibc21.m4\n  m4/gnulib-common.m4\n  m4/iconv.m4\n  m4/include_next.m4\n  m4/intdiv0.m4\n  m4/intl.m4\n  m4/intldir.m4\n  m4/intlmacosx.m4\n  m4/intmax.m4\n  m4/inttypes-pri.m4\n  m4/inttypes_h.m4\n  m4/largefile.m4\n  m4/lcmessage.m4\n  m4/lib-ld.m4\n  m4/lib-link.m4\n  m4/lib-prefix.m4\n  m4/libunistring-base.m4\n  m4/limits-h.m4\n  m4/lock.m4\n  m4/longlong.m4\n  m4/lstat.m4\n  m4/malloc.m4\n  m4/malloca.m4\n  m4/mbstate_t.m4\n  m4/msvc-inval.m4\n  m4/msvc-nothrow.m4\n  m4/multiarch.m4\n  m4/nls.m4\n  m4/nocrash.m4\n  m4/off_t.m4\n  m4/pathmax.m4\n  m4/po.m4\n  m4/printf-posix.m4\n  m4/progtest.m4\n  m4/raise.m4\n  m4/read.m4\n  m4/readlink.m4\n  m4/relocatable-lib.m4\n  m4/relocatable.m4\n  m4/safe-read.m4\n  m4/setenv.m4\n  m4/signal_h.m4\n  m4/signalblocking.m4\n  m4/sigpipe.m4\n  m4/size_max.m4\n  m4/ssize_t.m4\n  m4/stat.m4\n  m4/stdbool.m4\n  m4/stddef_h.m4\n  m4/stdint.m4\n  m4/stdint_h.m4\n  m4/stdio_h.m4\n  m4/stdlib_h.m4\n  m4/strerror.m4\n  m4/string_h.m4\n  m4/sys_socket_h.m4\n  m4/sys_stat_h.m4\n  m4/sys_time_h.m4\n  m4/sys_types_h.m4\n  m4/threadlib.m4\n  m4/time_h.m4\n  m4/uintmax_t.m4\n  m4/unistd_h.m4\n  m4/unlocked-io.m4\n  m4/visibility.m4\n  m4/warn-on-use.m4\n  m4/wchar_t.m4\n  m4/wint_t.m4\n  m4/xsize.m4\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/gnulib-tool.m4",
    "content": "# gnulib-tool.m4 serial 2\ndnl Copyright (C) 2004-2005, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl The following macros need not be invoked explicitly.\ndnl Invoking them does nothing except to declare default arguments\ndnl for \"gnulib-tool --import\".\n\ndnl Usage: gl_LOCAL_DIR([DIR])\nAC_DEFUN([gl_LOCAL_DIR], [])\n\ndnl Usage: gl_MODULES([module1 module2 ...])\nAC_DEFUN([gl_MODULES], [])\n\ndnl Usage: gl_AVOID([module1 module2 ...])\nAC_DEFUN([gl_AVOID], [])\n\ndnl Usage: gl_SOURCE_BASE([DIR])\nAC_DEFUN([gl_SOURCE_BASE], [])\n\ndnl Usage: gl_M4_BASE([DIR])\nAC_DEFUN([gl_M4_BASE], [])\n\ndnl Usage: gl_PO_BASE([DIR])\nAC_DEFUN([gl_PO_BASE], [])\n\ndnl Usage: gl_DOC_BASE([DIR])\nAC_DEFUN([gl_DOC_BASE], [])\n\ndnl Usage: gl_TESTS_BASE([DIR])\nAC_DEFUN([gl_TESTS_BASE], [])\n\ndnl Usage: gl_WITH_TESTS\nAC_DEFUN([gl_WITH_TESTS], [])\n\ndnl Usage: gl_LIB([LIBNAME])\nAC_DEFUN([gl_LIB], [])\n\ndnl Usage: gl_LGPL or gl_LGPL([VERSION])\nAC_DEFUN([gl_LGPL], [])\n\ndnl Usage: gl_MAKEFILE_NAME([FILENAME])\nAC_DEFUN([gl_MAKEFILE_NAME], [])\n\ndnl Usage: gl_LIBTOOL\nAC_DEFUN([gl_LIBTOOL], [])\n\ndnl Usage: gl_MACRO_PREFIX([PREFIX])\nAC_DEFUN([gl_MACRO_PREFIX], [])\n\ndnl Usage: gl_PO_DOMAIN([DOMAIN])\nAC_DEFUN([gl_PO_DOMAIN], [])\n\ndnl Usage: gl_VC_FILES([BOOLEAN])\nAC_DEFUN([gl_VC_FILES], [])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/iconv.m4",
    "content": "# iconv.m4 serial 20\ndnl Copyright (C) 2000-2002, 2007-2014, 2016-2017 Free Software Foundation,\ndnl Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\nAC_DEFUN([AM_ICONV_LINKFLAGS_BODY],\n[\n  dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.\n  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])\n  AC_REQUIRE([AC_LIB_RPATH])\n\n  dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV\n  dnl accordingly.\n  AC_LIB_LINKFLAGS_BODY([iconv])\n])\n\nAC_DEFUN([AM_ICONV_LINK],\n[\n  dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and\n  dnl those with the standalone portable GNU libiconv installed).\n  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles\n\n  dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV\n  dnl accordingly.\n  AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY])\n\n  dnl Add $INCICONV to CPPFLAGS before performing the following checks,\n  dnl because if the user has installed libiconv and not disabled its use\n  dnl via --without-libiconv-prefix, he wants to use it. The first\n  dnl AC_LINK_IFELSE will then fail, the second AC_LINK_IFELSE will succeed.\n  am_save_CPPFLAGS=\"$CPPFLAGS\"\n  AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV])\n\n  AC_CACHE_CHECK([for iconv], [am_cv_func_iconv], [\n    am_cv_func_iconv=\"no, consider installing GNU libiconv\"\n    am_cv_lib_iconv=no\n    AC_LINK_IFELSE(\n      [AC_LANG_PROGRAM(\n         [[\n#include <stdlib.h>\n#include <iconv.h>\n         ]],\n         [[iconv_t cd = iconv_open(\"\",\"\");\n           iconv(cd,NULL,NULL,NULL,NULL);\n           iconv_close(cd);]])],\n      [am_cv_func_iconv=yes])\n    if test \"$am_cv_func_iconv\" != yes; then\n      am_save_LIBS=\"$LIBS\"\n      LIBS=\"$LIBS $LIBICONV\"\n      AC_LINK_IFELSE(\n        [AC_LANG_PROGRAM(\n           [[\n#include <stdlib.h>\n#include <iconv.h>\n           ]],\n           [[iconv_t cd = iconv_open(\"\",\"\");\n             iconv(cd,NULL,NULL,NULL,NULL);\n             iconv_close(cd);]])],\n        [am_cv_lib_iconv=yes]\n        [am_cv_func_iconv=yes])\n      LIBS=\"$am_save_LIBS\"\n    fi\n  ])\n  if test \"$am_cv_func_iconv\" = yes; then\n    AC_CACHE_CHECK([for working iconv], [am_cv_func_iconv_works], [\n      dnl This tests against bugs in AIX 5.1, AIX 6.1..7.1, HP-UX 11.11,\n      dnl Solaris 10.\n      am_save_LIBS=\"$LIBS\"\n      if test $am_cv_lib_iconv = yes; then\n        LIBS=\"$LIBS $LIBICONV\"\n      fi\n      am_cv_func_iconv_works=no\n      for ac_iconv_const in '' 'const'; do\n        AC_RUN_IFELSE(\n          [AC_LANG_PROGRAM(\n             [[\n#include <iconv.h>\n#include <string.h>\n\n#ifndef ICONV_CONST\n# define ICONV_CONST $ac_iconv_const\n#endif\n             ]],\n             [[int result = 0;\n  /* Test against AIX 5.1 bug: Failures are not distinguishable from successful\n     returns.  */\n  {\n    iconv_t cd_utf8_to_88591 = iconv_open (\"ISO8859-1\", \"UTF-8\");\n    if (cd_utf8_to_88591 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\342\\202\\254\"; /* EURO SIGN */\n        char buf[10];\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = strlen (input);\n        char *outptr = buf;\n        size_t outbytesleft = sizeof (buf);\n        size_t res = iconv (cd_utf8_to_88591,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if (res == 0)\n          result |= 1;\n        iconv_close (cd_utf8_to_88591);\n      }\n  }\n  /* Test against Solaris 10 bug: Failures are not distinguishable from\n     successful returns.  */\n  {\n    iconv_t cd_ascii_to_88591 = iconv_open (\"ISO8859-1\", \"646\");\n    if (cd_ascii_to_88591 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\263\";\n        char buf[10];\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = strlen (input);\n        char *outptr = buf;\n        size_t outbytesleft = sizeof (buf);\n        size_t res = iconv (cd_ascii_to_88591,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if (res == 0)\n          result |= 2;\n        iconv_close (cd_ascii_to_88591);\n      }\n  }\n  /* Test against AIX 6.1..7.1 bug: Buffer overrun.  */\n  {\n    iconv_t cd_88591_to_utf8 = iconv_open (\"UTF-8\", \"ISO-8859-1\");\n    if (cd_88591_to_utf8 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\304\";\n        static char buf[2] = { (char)0xDE, (char)0xAD };\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = 1;\n        char *outptr = buf;\n        size_t outbytesleft = 1;\n        size_t res = iconv (cd_88591_to_utf8,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD)\n          result |= 4;\n        iconv_close (cd_88591_to_utf8);\n      }\n  }\n#if 0 /* This bug could be worked around by the caller.  */\n  /* Test against HP-UX 11.11 bug: Positive return value instead of 0.  */\n  {\n    iconv_t cd_88591_to_utf8 = iconv_open (\"utf8\", \"iso88591\");\n    if (cd_88591_to_utf8 != (iconv_t)(-1))\n      {\n        static ICONV_CONST char input[] = \"\\304rger mit b\\366sen B\\374bchen ohne Augenma\\337\";\n        char buf[50];\n        ICONV_CONST char *inptr = input;\n        size_t inbytesleft = strlen (input);\n        char *outptr = buf;\n        size_t outbytesleft = sizeof (buf);\n        size_t res = iconv (cd_88591_to_utf8,\n                            &inptr, &inbytesleft,\n                            &outptr, &outbytesleft);\n        if ((int)res > 0)\n          result |= 8;\n        iconv_close (cd_88591_to_utf8);\n      }\n  }\n#endif\n  /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is\n     provided.  */\n  if (/* Try standardized names.  */\n      iconv_open (\"UTF-8\", \"EUC-JP\") == (iconv_t)(-1)\n      /* Try IRIX, OSF/1 names.  */\n      && iconv_open (\"UTF-8\", \"eucJP\") == (iconv_t)(-1)\n      /* Try AIX names.  */\n      && iconv_open (\"UTF-8\", \"IBM-eucJP\") == (iconv_t)(-1)\n      /* Try HP-UX names.  */\n      && iconv_open (\"utf8\", \"eucJP\") == (iconv_t)(-1))\n    result |= 16;\n  return result;\n]])],\n          [am_cv_func_iconv_works=yes], ,\n          [case \"$host_os\" in\n             aix* | hpux*) am_cv_func_iconv_works=\"guessing no\" ;;\n             *)            am_cv_func_iconv_works=\"guessing yes\" ;;\n           esac])\n        test \"$am_cv_func_iconv_works\" = no || break\n      done\n      LIBS=\"$am_save_LIBS\"\n    ])\n    case \"$am_cv_func_iconv_works\" in\n      *no) am_func_iconv=no am_cv_lib_iconv=no ;;\n      *)   am_func_iconv=yes ;;\n    esac\n  else\n    am_func_iconv=no am_cv_lib_iconv=no\n  fi\n  if test \"$am_func_iconv\" = yes; then\n    AC_DEFINE([HAVE_ICONV], [1],\n      [Define if you have the iconv() function and it works.])\n  fi\n  if test \"$am_cv_lib_iconv\" = yes; then\n    AC_MSG_CHECKING([how to link with libiconv])\n    AC_MSG_RESULT([$LIBICONV])\n  else\n    dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV\n    dnl either.\n    CPPFLAGS=\"$am_save_CPPFLAGS\"\n    LIBICONV=\n    LTLIBICONV=\n  fi\n  AC_SUBST([LIBICONV])\n  AC_SUBST([LTLIBICONV])\n])\n\ndnl Define AM_ICONV using AC_DEFUN_ONCE for Autoconf >= 2.64, in order to\ndnl avoid warnings like\ndnl \"warning: AC_REQUIRE: `AM_ICONV' was expanded before it was required\".\ndnl This is tricky because of the way 'aclocal' is implemented:\ndnl - It requires defining an auxiliary macro whose name ends in AC_DEFUN.\ndnl   Otherwise aclocal's initial scan pass would miss the macro definition.\ndnl - It requires a line break inside the AC_DEFUN_ONCE and AC_DEFUN expansions.\ndnl   Otherwise aclocal would emit many \"Use of uninitialized value $1\"\ndnl   warnings.\nm4_define([gl_iconv_AC_DEFUN],\n  m4_version_prereq([2.64],\n    [[AC_DEFUN_ONCE(\n        [$1], [$2])]],\n    [m4_ifdef([gl_00GNULIB],\n       [[AC_DEFUN_ONCE(\n           [$1], [$2])]],\n       [[AC_DEFUN(\n           [$1], [$2])]])]))\ngl_iconv_AC_DEFUN([AM_ICONV],\n[\n  AM_ICONV_LINK\n  if test \"$am_cv_func_iconv\" = yes; then\n    AC_MSG_CHECKING([for iconv declaration])\n    AC_CACHE_VAL([am_cv_proto_iconv], [\n      AC_COMPILE_IFELSE(\n        [AC_LANG_PROGRAM(\n           [[\n#include <stdlib.h>\n#include <iconv.h>\nextern\n#ifdef __cplusplus\n\"C\"\n#endif\n#if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus)\nsize_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);\n#else\nsize_t iconv();\n#endif\n           ]],\n           [[]])],\n        [am_cv_proto_iconv_arg1=\"\"],\n        [am_cv_proto_iconv_arg1=\"const\"])\n      am_cv_proto_iconv=\"extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);\"])\n    am_cv_proto_iconv=`echo \"[$]am_cv_proto_iconv\" | tr -s ' ' | sed -e 's/( /(/'`\n    AC_MSG_RESULT([\n         $am_cv_proto_iconv])\n  else\n    dnl When compiling GNU libiconv on a system that does not have iconv yet,\n    dnl pick the POSIX compliant declaration without 'const'.\n    am_cv_proto_iconv_arg1=\"\"\n  fi\n  AC_DEFINE_UNQUOTED([ICONV_CONST], [$am_cv_proto_iconv_arg1],\n    [Define as const if the declaration of iconv() needs const.])\n  dnl Also substitute ICONV_CONST in the gnulib generated <iconv.h>.\n  m4_ifdef([gl_ICONV_H_DEFAULTS],\n    [AC_REQUIRE([gl_ICONV_H_DEFAULTS])\n     if test -n \"$am_cv_proto_iconv_arg1\"; then\n       ICONV_CONST=\"const\"\n     fi\n    ])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/include_next.m4",
    "content": "# include_next.m4 serial 23\ndnl Copyright (C) 2006-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Paul Eggert and Derek Price.\n\ndnl Sets INCLUDE_NEXT and PRAGMA_SYSTEM_HEADER.\ndnl\ndnl INCLUDE_NEXT expands to 'include_next' if the compiler supports it, or to\ndnl 'include' otherwise.\ndnl\ndnl INCLUDE_NEXT_AS_FIRST_DIRECTIVE expands to 'include_next' if the compiler\ndnl supports it in the special case that it is the first include directive in\ndnl the given file, or to 'include' otherwise.\ndnl\ndnl PRAGMA_SYSTEM_HEADER can be used in files that contain #include_next,\ndnl so as to avoid GCC warnings when the gcc option -pedantic is used.\ndnl '#pragma GCC system_header' has the same effect as if the file was found\ndnl through the include search path specified with '-isystem' options (as\ndnl opposed to the search path specified with '-I' options). Namely, gcc\ndnl does not warn about some things, and on some systems (Solaris and Interix)\ndnl __STDC__ evaluates to 0 instead of to 1. The latter is an undesired side\ndnl effect; we are therefore careful to use 'defined __STDC__' or '1' instead\ndnl of plain '__STDC__'.\ndnl\ndnl PRAGMA_COLUMNS can be used in files that override system header files, so\ndnl as to avoid compilation errors on HP NonStop systems when the gnulib file\ndnl is included by a system header file that does a \"#pragma COLUMNS 80\" (which\ndnl has the effect of truncating the lines of that file and all files that it\ndnl includes to 80 columns) and the gnulib file has lines longer than 80\ndnl columns.\n\nAC_DEFUN([gl_INCLUDE_NEXT],\n[\n  AC_LANG_PREPROC_REQUIRE()\n  AC_CACHE_CHECK([whether the preprocessor supports include_next],\n    [gl_cv_have_include_next],\n    [rm -rf conftestd1a conftestd1b conftestd2\n     mkdir conftestd1a conftestd1b conftestd2\n     dnl IBM C 9.0, 10.1 (original versions, prior to the 2009-01 updates) on\n     dnl AIX 6.1 support include_next when used as first preprocessor directive\n     dnl in a file, but not when preceded by another include directive. Check\n     dnl for this bug by including <stdio.h>.\n     dnl Additionally, with this same compiler, include_next is a no-op when\n     dnl used in a header file that was included by specifying its absolute\n     dnl file name. Despite these two bugs, include_next is used in the\n     dnl compiler's <math.h>. By virtue of the second bug, we need to use\n     dnl include_next as well in this case.\n     cat <<EOF > conftestd1a/conftest.h\n#define DEFINED_IN_CONFTESTD1\n#include_next <conftest.h>\n#ifdef DEFINED_IN_CONFTESTD2\nint foo;\n#else\n#error \"include_next doesn't work\"\n#endif\nEOF\n     cat <<EOF > conftestd1b/conftest.h\n#define DEFINED_IN_CONFTESTD1\n#include <stdio.h>\n#include_next <conftest.h>\n#ifdef DEFINED_IN_CONFTESTD2\nint foo;\n#else\n#error \"include_next doesn't work\"\n#endif\nEOF\n     cat <<EOF > conftestd2/conftest.h\n#ifndef DEFINED_IN_CONFTESTD1\n#error \"include_next test doesn't work\"\n#endif\n#define DEFINED_IN_CONFTESTD2\nEOF\n     gl_save_CPPFLAGS=\"$CPPFLAGS\"\n     CPPFLAGS=\"$gl_save_CPPFLAGS -Iconftestd1b -Iconftestd2\"\ndnl We intentionally avoid using AC_LANG_SOURCE here.\n     AC_COMPILE_IFELSE([AC_LANG_DEFINES_PROVIDED[#include <conftest.h>]],\n       [gl_cv_have_include_next=yes],\n       [CPPFLAGS=\"$gl_save_CPPFLAGS -Iconftestd1a -Iconftestd2\"\n        AC_COMPILE_IFELSE([AC_LANG_DEFINES_PROVIDED[#include <conftest.h>]],\n          [gl_cv_have_include_next=buggy],\n          [gl_cv_have_include_next=no])\n       ])\n     CPPFLAGS=\"$gl_save_CPPFLAGS\"\n     rm -rf conftestd1a conftestd1b conftestd2\n    ])\n  PRAGMA_SYSTEM_HEADER=\n  if test $gl_cv_have_include_next = yes; then\n    INCLUDE_NEXT=include_next\n    INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next\n    if test -n \"$GCC\"; then\n      PRAGMA_SYSTEM_HEADER='#pragma GCC system_header'\n    fi\n  else\n    if test $gl_cv_have_include_next = buggy; then\n      INCLUDE_NEXT=include\n      INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next\n    else\n      INCLUDE_NEXT=include\n      INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include\n    fi\n  fi\n  AC_SUBST([INCLUDE_NEXT])\n  AC_SUBST([INCLUDE_NEXT_AS_FIRST_DIRECTIVE])\n  AC_SUBST([PRAGMA_SYSTEM_HEADER])\n  AC_CACHE_CHECK([whether system header files limit the line length],\n    [gl_cv_pragma_columns],\n    [dnl HP NonStop systems, which define __TANDEM, have this misfeature.\n     AC_EGREP_CPP([choke me],\n       [\n#ifdef __TANDEM\nchoke me\n#endif\n       ],\n       [gl_cv_pragma_columns=yes],\n       [gl_cv_pragma_columns=no])\n    ])\n  if test $gl_cv_pragma_columns = yes; then\n    PRAGMA_COLUMNS=\"#pragma COLUMNS 10000\"\n  else\n    PRAGMA_COLUMNS=\n  fi\n  AC_SUBST([PRAGMA_COLUMNS])\n])\n\n# gl_CHECK_NEXT_HEADERS(HEADER1 HEADER2 ...)\n# ------------------------------------------\n# For each arg foo.h, if #include_next works, define NEXT_FOO_H to be\n# '<foo.h>'; otherwise define it to be\n# '\"///usr/include/foo.h\"', or whatever other absolute file name is suitable.\n# Also, if #include_next works as first preprocessing directive in a file,\n# define NEXT_AS_FIRST_DIRECTIVE_FOO_H to be '<foo.h>'; otherwise define it to\n# be\n# '\"///usr/include/foo.h\"', or whatever other absolute file name is suitable.\n# That way, a header file with the following line:\n#       #@INCLUDE_NEXT@ @NEXT_FOO_H@\n# or\n#       #@INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ @NEXT_AS_FIRST_DIRECTIVE_FOO_H@\n# behaves (after sed substitution) as if it contained\n#       #include_next <foo.h>\n# even if the compiler does not support include_next.\n# The three \"///\" are to pacify Sun C 5.8, which otherwise would say\n# \"warning: #include of /usr/include/... may be non-portable\".\n# Use '\"\"', not '<>', so that the /// cannot be confused with a C99 comment.\n# Note: This macro assumes that the header file is not empty after\n# preprocessing, i.e. it does not only define preprocessor macros but also\n# provides some type/enum definitions or function/variable declarations.\n#\n# This macro also checks whether each header exists, by invoking\n# AC_CHECK_HEADERS_ONCE or AC_CHECK_HEADERS on each argument.\nAC_DEFUN([gl_CHECK_NEXT_HEADERS],\n[\n  gl_NEXT_HEADERS_INTERNAL([$1], [check])\n])\n\n# gl_NEXT_HEADERS(HEADER1 HEADER2 ...)\n# ------------------------------------\n# Like gl_CHECK_NEXT_HEADERS, except do not check whether the headers exist.\n# This is suitable for headers like <stddef.h> that are standardized by C89\n# and therefore can be assumed to exist.\nAC_DEFUN([gl_NEXT_HEADERS],\n[\n  gl_NEXT_HEADERS_INTERNAL([$1], [assume])\n])\n\n# The guts of gl_CHECK_NEXT_HEADERS and gl_NEXT_HEADERS.\nAC_DEFUN([gl_NEXT_HEADERS_INTERNAL],\n[\n  AC_REQUIRE([gl_INCLUDE_NEXT])\n  AC_REQUIRE([AC_CANONICAL_HOST])\n\n  m4_if([$2], [check],\n    [AC_CHECK_HEADERS_ONCE([$1])\n    ])\n\ndnl FIXME: gl_next_header and gl_header_exists must be used unquoted\ndnl until we can assume autoconf 2.64 or newer.\n  m4_foreach_w([gl_HEADER_NAME], [$1],\n    [AS_VAR_PUSHDEF([gl_next_header],\n                    [gl_cv_next_]m4_defn([gl_HEADER_NAME]))\n     if test $gl_cv_have_include_next = yes; then\n       AS_VAR_SET(gl_next_header, ['<'gl_HEADER_NAME'>'])\n     else\n       AC_CACHE_CHECK(\n         [absolute name of <]m4_defn([gl_HEADER_NAME])[>],\n         m4_defn([gl_next_header]),\n         [m4_if([$2], [check],\n            [AS_VAR_PUSHDEF([gl_header_exists],\n                            [ac_cv_header_]m4_defn([gl_HEADER_NAME]))\n             if test AS_VAR_GET(gl_header_exists) = yes; then\n             AS_VAR_POPDEF([gl_header_exists])\n            ])\n           gl_ABSOLUTE_HEADER_ONE(gl_HEADER_NAME)\n           AS_VAR_COPY([gl_header], [gl_cv_absolute_]AS_TR_SH(gl_HEADER_NAME))\n           AS_VAR_SET(gl_next_header, ['\"'$gl_header'\"'])\n          m4_if([$2], [check],\n            [else\n               AS_VAR_SET(gl_next_header, ['<'gl_HEADER_NAME'>'])\n             fi\n            ])\n         ])\n     fi\n     AC_SUBST(\n       AS_TR_CPP([NEXT_]m4_defn([gl_HEADER_NAME])),\n       [AS_VAR_GET(gl_next_header)])\n     if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'\n       gl_next_as_first_directive='<'gl_HEADER_NAME'>'\n     else\n       # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'\n       gl_next_as_first_directive=AS_VAR_GET(gl_next_header)\n     fi\n     AC_SUBST(\n       AS_TR_CPP([NEXT_AS_FIRST_DIRECTIVE_]m4_defn([gl_HEADER_NAME])),\n       [$gl_next_as_first_directive])\n     AS_VAR_POPDEF([gl_next_header])])\n])\n\n# Autoconf 2.68 added warnings for our use of AC_COMPILE_IFELSE;\n# this fallback is safe for all earlier autoconf versions.\nm4_define_default([AC_LANG_DEFINES_PROVIDED])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/intdiv0.m4",
    "content": "# intdiv0.m4 serial 6 (gettext-0.18.2)\ndnl Copyright (C) 2002, 2007-2008, 2010-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\nAC_DEFUN([gt_INTDIV0],\n[\n  AC_REQUIRE([AC_PROG_CC])dnl\n  AC_REQUIRE([AC_CANONICAL_HOST])dnl\n\n  AC_CACHE_CHECK([whether integer division by zero raises SIGFPE],\n    gt_cv_int_divbyzero_sigfpe,\n    [\n      gt_cv_int_divbyzero_sigfpe=\nchangequote(,)dnl\n      case \"$host_os\" in\n        macos* | darwin[6-9]* | darwin[1-9][0-9]*)\n          # On Mac OS X 10.2 or newer, just assume the same as when cross-\n          # compiling. If we were to perform the real test, 1 Crash Report\n          # dialog window would pop up.\n          case \"$host_cpu\" in\n            i[34567]86 | x86_64)\n              gt_cv_int_divbyzero_sigfpe=\"guessing yes\" ;;\n          esac\n          ;;\n      esac\nchangequote([,])dnl\n      if test -z \"$gt_cv_int_divbyzero_sigfpe\"; then\n        AC_RUN_IFELSE(\n          [AC_LANG_SOURCE([[\n#include <stdlib.h>\n#include <signal.h>\n\nstatic void\nsigfpe_handler (int sig)\n{\n  /* Exit with code 0 if SIGFPE, with code 1 if any other signal.  */\n  _exit (sig != SIGFPE);\n}\n\nint x = 1;\nint y = 0;\nint z;\nint nan;\n\nint main ()\n{\n  signal (SIGFPE, sigfpe_handler);\n/* IRIX and AIX (when \"xlc -qcheck\" is used) yield signal SIGTRAP.  */\n#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)\n  signal (SIGTRAP, sigfpe_handler);\n#endif\n/* Linux/SPARC yields signal SIGILL.  */\n#if defined (__sparc__) && defined (__linux__)\n  signal (SIGILL, sigfpe_handler);\n#endif\n\n  z = x / y;\n  nan = y / y;\n  exit (2);\n}\n]])],\n          [gt_cv_int_divbyzero_sigfpe=yes],\n          [gt_cv_int_divbyzero_sigfpe=no],\n          [\n            # Guess based on the CPU.\nchangequote(,)dnl\n            case \"$host_cpu\" in\n              alpha* | i[34567]86 | x86_64 | m68k | s390*)\n                gt_cv_int_divbyzero_sigfpe=\"guessing yes\";;\n              *)\n                gt_cv_int_divbyzero_sigfpe=\"guessing no\";;\n            esac\nchangequote([,])dnl\n          ])\n      fi\n    ])\n  case \"$gt_cv_int_divbyzero_sigfpe\" in\n    *yes) value=1;;\n    *) value=0;;\n  esac\n  AC_DEFINE_UNQUOTED([INTDIV0_RAISES_SIGFPE], [$value],\n    [Define if integer division by zero raises signal SIGFPE.])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/intl.m4",
    "content": "# intl.m4 serial 29 (gettext-0.19)\ndnl Copyright (C) 1995-2014, 2016-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\ndnl\ndnl This file can be used in projects which are not available under\ndnl the GNU General Public License or the GNU Library General Public\ndnl License but which still want to provide support for the GNU gettext\ndnl functionality.\ndnl Please note that the actual code of the GNU gettext library is covered\ndnl by the GNU Library General Public License, and the rest of the GNU\ndnl gettext package is covered by the GNU General Public License.\ndnl They are *not* in the public domain.\n\ndnl Authors:\ndnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.\ndnl   Bruno Haible <haible@clisp.cons.org>, 2000-2009.\n\nAC_PREREQ([2.60])\n\ndnl Checks for all prerequisites of the intl subdirectory,\ndnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS,\ndnl            USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL.\nAC_DEFUN([AM_INTL_SUBDIR],\n[\n  AC_REQUIRE([AC_PROG_INSTALL])dnl\n  AC_REQUIRE([AC_PROG_MKDIR_P])dnl\n  AC_REQUIRE([AC_PROG_CC])dnl\n  AC_REQUIRE([AC_CANONICAL_HOST])dnl\n  AC_REQUIRE([gt_GLIBC2])dnl\n  AC_REQUIRE([AC_PROG_RANLIB])dnl\n  AC_REQUIRE([gl_VISIBILITY])dnl\n  AC_REQUIRE([gt_INTL_SUBDIR_CORE])dnl\n  AC_REQUIRE([AC_TYPE_LONG_LONG_INT])dnl\n  AC_REQUIRE([gt_TYPE_WCHAR_T])dnl\n  AC_REQUIRE([gt_TYPE_WINT_T])dnl\n  AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])\n  AC_REQUIRE([gt_TYPE_INTMAX_T])\n  AC_REQUIRE([gt_PRINTF_POSIX])\n  AC_REQUIRE([gl_GLIBC21])dnl\n  AC_REQUIRE([gl_XSIZE])dnl\n  AC_REQUIRE([gl_FCNTL_O_FLAGS])dnl\n  AC_REQUIRE([gt_INTL_MACOSX])dnl\n  AC_REQUIRE([gl_EXTERN_INLINE])dnl\n  AC_REQUIRE([gt_GL_ATTRIBUTE])dnl\n\n  dnl Support for automake's --enable-silent-rules.\n  case \"$enable_silent_rules\" in\n    yes) INTL_DEFAULT_VERBOSITY=0;;\n    no)  INTL_DEFAULT_VERBOSITY=1;;\n    *)   INTL_DEFAULT_VERBOSITY=1;;\n  esac\n  AC_SUBST([INTL_DEFAULT_VERBOSITY])\n\n  AC_CHECK_TYPE([ptrdiff_t], ,\n    [AC_DEFINE([ptrdiff_t], [long],\n       [Define as the type of the result of subtracting two pointers, if the system doesn't define it.])\n    ])\n  AC_CHECK_HEADERS([features.h stddef.h stdlib.h string.h])\n  AC_CHECK_FUNCS([asprintf fwprintf newlocale putenv setenv setlocale \\\n    snprintf strnlen wcslen wcsnlen mbrtowc wcrtomb])\n\n  dnl Use the _snprintf function only if it is declared (because on NetBSD it\n  dnl is defined as a weak alias of snprintf; we prefer to use the latter).\n  AC_CHECK_DECLS([_snprintf, _snwprintf], , , [#include <stdio.h>])\n\n  dnl Use the *_unlocked functions only if they are declared.\n  dnl (because some of them were defined without being declared in Solaris\n  dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built\n  dnl on Solaris 2.5.1 to run on Solaris 2.6).\n  AC_CHECK_DECLS([getc_unlocked], , , [#include <stdio.h>])\n\n  case $gt_cv_func_printf_posix in\n    *yes) HAVE_POSIX_PRINTF=1 ;;\n    *) HAVE_POSIX_PRINTF=0 ;;\n  esac\n  AC_SUBST([HAVE_POSIX_PRINTF])\n  if test \"$ac_cv_func_asprintf\" = yes; then\n    HAVE_ASPRINTF=1\n  else\n    HAVE_ASPRINTF=0\n  fi\n  AC_SUBST([HAVE_ASPRINTF])\n  if test \"$ac_cv_func_snprintf\" = yes; then\n    HAVE_SNPRINTF=1\n  else\n    HAVE_SNPRINTF=0\n  fi\n  AC_SUBST([HAVE_SNPRINTF])\n  if test \"$ac_cv_func_newlocale\" = yes; then\n    HAVE_NEWLOCALE=1\n  else\n    HAVE_NEWLOCALE=0\n  fi\n  AC_SUBST([HAVE_NEWLOCALE])\n  if test \"$ac_cv_func_wprintf\" = yes; then\n    HAVE_WPRINTF=1\n  else\n    HAVE_WPRINTF=0\n  fi\n  AC_SUBST([HAVE_WPRINTF])\n\n  AM_LANGINFO_CODESET\n  gt_LC_MESSAGES\n\n  dnl Compilation on mingw and Cygwin needs special Makefile rules, because\n  dnl 1. when we install a shared library, we must arrange to export\n  dnl    auxiliary pointer variables for every exported variable,\n  dnl 2. when we install a shared library and a static library simultaneously,\n  dnl    the include file specifies __declspec(dllimport) and therefore we\n  dnl    must arrange to define the auxiliary pointer variables for the\n  dnl    exported variables _also_ in the static library.\n  if test \"$enable_shared\" = yes; then\n    case \"$host_os\" in\n      mingw* | cygwin*) is_woe32dll=yes ;;\n      *) is_woe32dll=no ;;\n    esac\n  else\n    is_woe32dll=no\n  fi\n  WOE32DLL=$is_woe32dll\n  AC_SUBST([WOE32DLL])\n\n  dnl On mingw and Cygwin, we can activate special Makefile rules which add\n  dnl version information to the shared libraries and executables.\n  case \"$host_os\" in\n    mingw* | cygwin*) is_woe32=yes ;;\n    *) is_woe32=no ;;\n  esac\n  WOE32=$is_woe32\n  AC_SUBST([WOE32])\n  if test $WOE32 = yes; then\n    dnl Check for a program that compiles Windows resource files.\n    AC_CHECK_TOOL([WINDRES], [windres])\n  fi\n\n  dnl Determine whether when creating a library, \"-lc\" should be passed to\n  dnl libtool or not. On many platforms, it is required for the libtool option\n  dnl -no-undefined to work. On HP-UX, however, the -lc - stored by libtool\n  dnl in the *.la files - makes it impossible to create multithreaded programs,\n  dnl because libtool also reorders the -lc to come before the -pthread, and\n  dnl this disables pthread_create() <http://docs.hp.com/en/1896/pthreads.html>.\n  case \"$host_os\" in\n    hpux*) LTLIBC=\"\" ;;\n    *)     LTLIBC=\"-lc\" ;;\n  esac\n  AC_SUBST([LTLIBC])\n\n  dnl Rename some macros and functions used for locking.\n  AH_BOTTOM([\n#define __libc_lock_t                   gl_lock_t\n#define __libc_lock_define              gl_lock_define\n#define __libc_lock_define_initialized  gl_lock_define_initialized\n#define __libc_lock_init                gl_lock_init\n#define __libc_lock_lock                gl_lock_lock\n#define __libc_lock_unlock              gl_lock_unlock\n#define __libc_lock_recursive_t                   gl_recursive_lock_t\n#define __libc_lock_define_recursive              gl_recursive_lock_define\n#define __libc_lock_define_initialized_recursive  gl_recursive_lock_define_initialized\n#define __libc_lock_init_recursive                gl_recursive_lock_init\n#define __libc_lock_lock_recursive                gl_recursive_lock_lock\n#define __libc_lock_unlock_recursive              gl_recursive_lock_unlock\n#define glthread_in_use  libintl_thread_in_use\n#define glthread_lock_init_func     libintl_lock_init_func\n#define glthread_lock_lock_func     libintl_lock_lock_func\n#define glthread_lock_unlock_func   libintl_lock_unlock_func\n#define glthread_lock_destroy_func  libintl_lock_destroy_func\n#define glthread_rwlock_init_multithreaded     libintl_rwlock_init_multithreaded\n#define glthread_rwlock_init_func              libintl_rwlock_init_func\n#define glthread_rwlock_rdlock_multithreaded   libintl_rwlock_rdlock_multithreaded\n#define glthread_rwlock_rdlock_func            libintl_rwlock_rdlock_func\n#define glthread_rwlock_wrlock_multithreaded   libintl_rwlock_wrlock_multithreaded\n#define glthread_rwlock_wrlock_func            libintl_rwlock_wrlock_func\n#define glthread_rwlock_unlock_multithreaded   libintl_rwlock_unlock_multithreaded\n#define glthread_rwlock_unlock_func            libintl_rwlock_unlock_func\n#define glthread_rwlock_destroy_multithreaded  libintl_rwlock_destroy_multithreaded\n#define glthread_rwlock_destroy_func           libintl_rwlock_destroy_func\n#define glthread_recursive_lock_init_multithreaded     libintl_recursive_lock_init_multithreaded\n#define glthread_recursive_lock_init_func              libintl_recursive_lock_init_func\n#define glthread_recursive_lock_lock_multithreaded     libintl_recursive_lock_lock_multithreaded\n#define glthread_recursive_lock_lock_func              libintl_recursive_lock_lock_func\n#define glthread_recursive_lock_unlock_multithreaded   libintl_recursive_lock_unlock_multithreaded\n#define glthread_recursive_lock_unlock_func            libintl_recursive_lock_unlock_func\n#define glthread_recursive_lock_destroy_multithreaded  libintl_recursive_lock_destroy_multithreaded\n#define glthread_recursive_lock_destroy_func           libintl_recursive_lock_destroy_func\n#define glthread_once_func            libintl_once_func\n#define glthread_once_singlethreaded  libintl_once_singlethreaded\n#define glthread_once_multithreaded   libintl_once_multithreaded\n])\n])\n\n\ndnl Checks for the core files of the intl subdirectory:\ndnl   dcigettext.c\ndnl   eval-plural.h\ndnl   explodename.c\ndnl   finddomain.c\ndnl   gettextP.h\ndnl   gmo.h\ndnl   hash-string.h hash-string.c\ndnl   l10nflist.c\ndnl   libgnuintl.h.in (except the *printf stuff)\ndnl   loadinfo.h\ndnl   loadmsgcat.c\ndnl   localealias.c\ndnl   log.c\ndnl   plural-exp.h plural-exp.c\ndnl   plural.y\ndnl Used by libglocale.\nAC_DEFUN([gt_INTL_SUBDIR_CORE],\n[\n  AC_REQUIRE([AC_C_INLINE])dnl\n  AC_REQUIRE([AC_TYPE_SIZE_T])dnl\n  AC_REQUIRE([gl_AC_HEADER_STDINT_H])\n  AC_REQUIRE([AC_FUNC_ALLOCA])dnl\n  AC_REQUIRE([AC_FUNC_MMAP])dnl\n  AC_REQUIRE([gt_INTDIV0])dnl\n  AC_REQUIRE([gl_AC_TYPE_UINTMAX_T])dnl\n  AC_REQUIRE([gt_INTTYPES_PRI])dnl\n  AC_REQUIRE([gl_LOCK])dnl\n\n  AC_LINK_IFELSE(\n    [AC_LANG_PROGRAM(\n       [[int foo (int a) { a = __builtin_expect (a, 10); return a == 10 ? 0 : 1; }]],\n       [[]])],\n    [AC_DEFINE([HAVE_BUILTIN_EXPECT], [1],\n       [Define to 1 if the compiler understands __builtin_expect.])])\n\n  AC_CHECK_HEADERS([argz.h inttypes.h limits.h unistd.h sys/param.h])\n  AC_CHECK_FUNCS([getcwd getegid geteuid getgid getuid mempcpy munmap \\\n    stpcpy strcasecmp strdup strtoul tsearch uselocale argz_count \\\n    argz_stringify argz_next __fsetlocking])\n\n  dnl Solaris 12 provides getlocalename_l, while Illumos doesn't have\n  dnl it nor the equivalent.\n  if test $ac_cv_func_uselocale = yes; then\n    AC_CHECK_FUNCS([getlocalename_l])\n  fi\n\n  dnl Use the *_unlocked functions only if they are declared.\n  dnl (because some of them were defined without being declared in Solaris\n  dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built\n  dnl on Solaris 2.5.1 to run on Solaris 2.6).\n  AC_CHECK_DECLS([feof_unlocked, fgets_unlocked], , , [#include <stdio.h>])\n\n  AM_ICONV\n\n  dnl intl/plural.c is generated from intl/plural.y. It requires bison,\n  dnl because plural.y uses bison specific features. It requires at least\n  dnl bison-2.7 for %define api.pure.\n  dnl bison is only needed for the maintainer (who touches plural.y). But in\n  dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put\n  dnl the rule in general Makefile. Now, some people carelessly touch the\n  dnl files or have a broken \"make\" program, hence the plural.c rule will\n  dnl sometimes fire. To avoid an error, defines BISON to \":\" if it is not\n  dnl present or too old.\n  AC_CHECK_PROGS([INTLBISON], [bison])\n  if test -z \"$INTLBISON\"; then\n    ac_verc_fail=yes\n  else\n    dnl Found it, now check the version.\n    AC_MSG_CHECKING([version of bison])\nchangequote(<<,>>)dnl\n    ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \\([0-9]*\\.[0-9.]*\\).*$/\\1/p'`\n    case $ac_prog_version in\n      '') ac_prog_version=\"v. ?.??, bad\"; ac_verc_fail=yes;;\n      2.[7-9]* | [3-9].*)\nchangequote([,])dnl\n         ac_prog_version=\"$ac_prog_version, ok\"; ac_verc_fail=no;;\n      *) ac_prog_version=\"$ac_prog_version, bad\"; ac_verc_fail=yes;;\n    esac\n    AC_MSG_RESULT([$ac_prog_version])\n  fi\n  if test $ac_verc_fail = yes; then\n    INTLBISON=:\n  fi\n])\n\ndnl Copies _GL_UNUSED and _GL_ATTRIBUTE_PURE definitions from\ndnl gnulib-common.m4 as a fallback, if the project isn't using Gnulib.\nAC_DEFUN([gt_GL_ATTRIBUTE], [\n  m4_ifndef([gl_[]COMMON],\n    AH_VERBATIM([gt_gl_attribute],\n[/* Define as a marker that can be attached to declarations that might not\n    be used.  This helps to reduce warnings, such as from\n    GCC -Wunused-parameter.  */\n#ifndef _GL_UNUSED\n# if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)\n#  define _GL_UNUSED __attribute__ ((__unused__))\n# else\n#  define _GL_UNUSED\n# endif\n#endif\n\n/* The __pure__ attribute was added in gcc 2.96.  */\n#ifndef _GL_ATTRIBUTE_PURE\n# if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)\n#  define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))\n# else\n#  define _GL_ATTRIBUTE_PURE /* empty */\n# endif\n#endif\n]))])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/intldir.m4",
    "content": "# intldir.m4 serial 2 (gettext-0.18)\ndnl Copyright (C) 2006, 2009-2014, 2016-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\ndnl\ndnl This file can be used in projects which are not available under\ndnl the GNU General Public License or the GNU Library General Public\ndnl License but which still want to provide support for the GNU gettext\ndnl functionality.\ndnl Please note that the actual code of the GNU gettext library is covered\ndnl by the GNU Library General Public License, and the rest of the GNU\ndnl gettext package is covered by the GNU General Public License.\ndnl They are *not* in the public domain.\n\nAC_PREREQ([2.52])\n\ndnl Tells the AM_GNU_GETTEXT macro to consider an intl/ directory.\nAC_DEFUN([AM_GNU_GETTEXT_INTL_SUBDIR], [])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/intlmacosx.m4",
    "content": "# intlmacosx.m4 serial 5 (gettext-0.18.2)\ndnl Copyright (C) 2004-2014, 2016-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\ndnl\ndnl This file can be used in projects which are not available under\ndnl the GNU General Public License or the GNU Library General Public\ndnl License but which still want to provide support for the GNU gettext\ndnl functionality.\ndnl Please note that the actual code of the GNU gettext library is covered\ndnl by the GNU Library General Public License, and the rest of the GNU\ndnl gettext package is covered by the GNU General Public License.\ndnl They are *not* in the public domain.\n\ndnl Checks for special options needed on Mac OS X.\ndnl Defines INTL_MACOSX_LIBS.\nAC_DEFUN([gt_INTL_MACOSX],\n[\n  dnl Check for API introduced in Mac OS X 10.2.\n  AC_CACHE_CHECK([for CFPreferencesCopyAppValue],\n    [gt_cv_func_CFPreferencesCopyAppValue],\n    [gt_save_LIBS=\"$LIBS\"\n     LIBS=\"$LIBS -Wl,-framework -Wl,CoreFoundation\"\n     AC_LINK_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <CoreFoundation/CFPreferences.h>]],\n          [[CFPreferencesCopyAppValue(NULL, NULL)]])],\n       [gt_cv_func_CFPreferencesCopyAppValue=yes],\n       [gt_cv_func_CFPreferencesCopyAppValue=no])\n     LIBS=\"$gt_save_LIBS\"])\n  if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then\n    AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1],\n      [Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework.])\n  fi\n  dnl Check for API introduced in Mac OS X 10.3.\n  AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent],\n    [gt_save_LIBS=\"$LIBS\"\n     LIBS=\"$LIBS -Wl,-framework -Wl,CoreFoundation\"\n     AC_LINK_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <CoreFoundation/CFLocale.h>]],\n          [[CFLocaleCopyCurrent();]])],\n       [gt_cv_func_CFLocaleCopyCurrent=yes],\n       [gt_cv_func_CFLocaleCopyCurrent=no])\n     LIBS=\"$gt_save_LIBS\"])\n  if test $gt_cv_func_CFLocaleCopyCurrent = yes; then\n    AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1],\n      [Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework.])\n  fi\n  INTL_MACOSX_LIBS=\n  if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then\n    INTL_MACOSX_LIBS=\"-Wl,-framework -Wl,CoreFoundation\"\n  fi\n  AC_SUBST([INTL_MACOSX_LIBS])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/intmax.m4",
    "content": "# intmax.m4 serial 6 (gettext-0.18.2)\ndnl Copyright (C) 2002-2005, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\ndnl Test whether the system has the 'intmax_t' type, but don't attempt to\ndnl find a replacement if it is lacking.\n\nAC_DEFUN([gt_TYPE_INTMAX_T],\n[\n  AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])\n  AC_REQUIRE([gl_AC_HEADER_STDINT_H])\n  AC_CACHE_CHECK([for intmax_t], [gt_cv_c_intmax_t],\n    [AC_COMPILE_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[\n#include <stddef.h>\n#include <stdlib.h>\n#if HAVE_STDINT_H_WITH_UINTMAX\n#include <stdint.h>\n#endif\n#if HAVE_INTTYPES_H_WITH_UINTMAX\n#include <inttypes.h>\n#endif\n          ]],\n          [[intmax_t x = -1;\n            return !x;]])],\n       [gt_cv_c_intmax_t=yes],\n       [gt_cv_c_intmax_t=no])])\n  if test $gt_cv_c_intmax_t = yes; then\n    AC_DEFINE([HAVE_INTMAX_T], [1],\n      [Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>.])\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/inttypes-pri.m4",
    "content": "# inttypes-pri.m4 serial 7 (gettext-0.18.2)\ndnl Copyright (C) 1997-2002, 2006, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\nAC_PREREQ([2.53])\n\n# Define PRI_MACROS_BROKEN if <inttypes.h> exists and defines the PRI*\n# macros to non-string values.  This is the case on AIX 4.3.3.\n\nAC_DEFUN([gt_INTTYPES_PRI],\n[\n  AC_CHECK_HEADERS([inttypes.h])\n  if test $ac_cv_header_inttypes_h = yes; then\n    AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken],\n      [gt_cv_inttypes_pri_broken],\n      [\n        AC_COMPILE_IFELSE(\n          [AC_LANG_PROGRAM(\n             [[\n#include <inttypes.h>\n#ifdef PRId32\nchar *p = PRId32;\n#endif\n             ]],\n             [[]])],\n          [gt_cv_inttypes_pri_broken=no],\n          [gt_cv_inttypes_pri_broken=yes])\n      ])\n  fi\n  if test \"$gt_cv_inttypes_pri_broken\" = yes; then\n    AC_DEFINE_UNQUOTED([PRI_MACROS_BROKEN], [1],\n      [Define if <inttypes.h> exists and defines unusable PRI* macros.])\n    PRI_MACROS_BROKEN=1\n  else\n    PRI_MACROS_BROKEN=0\n  fi\n  AC_SUBST([PRI_MACROS_BROKEN])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/inttypes_h.m4",
    "content": "# inttypes_h.m4 serial 10\ndnl Copyright (C) 1997-2004, 2006, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Paul Eggert.\n\n# Define HAVE_INTTYPES_H_WITH_UINTMAX if <inttypes.h> exists,\n# doesn't clash with <sys/types.h>, and declares uintmax_t.\n\nAC_DEFUN([gl_AC_HEADER_INTTYPES_H],\n[\n  AC_CACHE_CHECK([for inttypes.h], [gl_cv_header_inttypes_h],\n    [AC_COMPILE_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[\n#include <sys/types.h>\n#include <inttypes.h>\n          ]],\n          [[uintmax_t i = (uintmax_t) -1; return !i;]])],\n       [gl_cv_header_inttypes_h=yes],\n       [gl_cv_header_inttypes_h=no])])\n  if test $gl_cv_header_inttypes_h = yes; then\n    AC_DEFINE_UNQUOTED([HAVE_INTTYPES_H_WITH_UINTMAX], [1],\n      [Define if <inttypes.h> exists, doesn't clash with <sys/types.h>,\n       and declares uintmax_t. ])\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/largefile.m4",
    "content": "# Enable large files on systems where this is not the default.\n\n# Copyright 1992-1996, 1998-2017 Free Software Foundation, Inc.\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# The following implementation works around a problem in autoconf <= 2.69;\n# AC_SYS_LARGEFILE does not configure for large inodes on Mac OS X 10.5,\n# or configures them incorrectly in some cases.\nm4_version_prereq([2.70], [] ,[\n\n# _AC_SYS_LARGEFILE_TEST_INCLUDES\n# -------------------------------\nm4_define([_AC_SYS_LARGEFILE_TEST_INCLUDES],\n[@%:@include <sys/types.h>\n /* Check that off_t can represent 2**63 - 1 correctly.\n    We can't simply define LARGE_OFF_T to be 9223372036854775807,\n    since some C++ compilers masquerading as C compilers\n    incorrectly reject 9223372036854775807.  */\n@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))\n  int off_t_is_large[[(LARGE_OFF_T % 2147483629 == 721\n                       && LARGE_OFF_T % 2147483647 == 1)\n                      ? 1 : -1]];[]dnl\n])\n\n\n# _AC_SYS_LARGEFILE_MACRO_VALUE(C-MACRO, VALUE,\n#                               CACHE-VAR,\n#                               DESCRIPTION,\n#                               PROLOGUE, [FUNCTION-BODY])\n# --------------------------------------------------------\nm4_define([_AC_SYS_LARGEFILE_MACRO_VALUE],\n[AC_CACHE_CHECK([for $1 value needed for large files], [$3],\n[while :; do\n  m4_ifval([$6], [AC_LINK_IFELSE], [AC_COMPILE_IFELSE])(\n    [AC_LANG_PROGRAM([$5], [$6])],\n    [$3=no; break])\n  m4_ifval([$6], [AC_LINK_IFELSE], [AC_COMPILE_IFELSE])(\n    [AC_LANG_PROGRAM([@%:@define $1 $2\n$5], [$6])],\n    [$3=$2; break])\n  $3=unknown\n  break\ndone])\ncase $$3 in #(\n  no | unknown) ;;\n  *) AC_DEFINE_UNQUOTED([$1], [$$3], [$4]);;\nesac\nrm -rf conftest*[]dnl\n])# _AC_SYS_LARGEFILE_MACRO_VALUE\n\n\n# AC_SYS_LARGEFILE\n# ----------------\n# By default, many hosts won't let programs access large files;\n# one must use special compiler options to get large-file access to work.\n# For more details about this brain damage please see:\n# http://www.unix-systems.org/version2/whatsnew/lfs20mar.html\nAC_DEFUN([AC_SYS_LARGEFILE],\n[AC_ARG_ENABLE(largefile,\n               [  --disable-largefile     omit support for large files])\nif test \"$enable_largefile\" != no; then\n\n  AC_CACHE_CHECK([for special C compiler options needed for large files],\n    ac_cv_sys_largefile_CC,\n    [ac_cv_sys_largefile_CC=no\n     if test \"$GCC\" != yes; then\n       ac_save_CC=$CC\n       while :; do\n         # IRIX 6.2 and later do not support large files by default,\n         # so use the C compiler's -n32 option if that helps.\n         AC_LANG_CONFTEST([AC_LANG_PROGRAM([_AC_SYS_LARGEFILE_TEST_INCLUDES])])\n         AC_COMPILE_IFELSE([], [break])\n         CC=\"$CC -n32\"\n         AC_COMPILE_IFELSE([], [ac_cv_sys_largefile_CC=' -n32'; break])\n         break\n       done\n       CC=$ac_save_CC\n       rm -f conftest.$ac_ext\n    fi])\n  if test \"$ac_cv_sys_largefile_CC\" != no; then\n    CC=$CC$ac_cv_sys_largefile_CC\n  fi\n\n  _AC_SYS_LARGEFILE_MACRO_VALUE(_FILE_OFFSET_BITS, 64,\n    ac_cv_sys_file_offset_bits,\n    [Number of bits in a file offset, on hosts where this is settable.],\n    [_AC_SYS_LARGEFILE_TEST_INCLUDES])\n  if test $ac_cv_sys_file_offset_bits = unknown; then\n    _AC_SYS_LARGEFILE_MACRO_VALUE(_LARGE_FILES, 1,\n      ac_cv_sys_large_files,\n      [Define for large files, on AIX-style hosts.],\n      [_AC_SYS_LARGEFILE_TEST_INCLUDES])\n  fi\n\n  AC_DEFINE([_DARWIN_USE_64_BIT_INODE], [1],\n    [Enable large inode numbers on Mac OS X 10.5.])\nfi\n])# AC_SYS_LARGEFILE\n])# m4_version_prereq 2.70\n\n# Enable large files on systems where this is implemented by Gnulib, not by the\n# system headers.\n# Set the variables WINDOWS_64_BIT_OFF_T, WINDOWS_64_BIT_ST_SIZE if Gnulib\n# overrides ensure that off_t or 'struct size.st_size' are 64-bit, respectively.\nAC_DEFUN([gl_LARGEFILE],\n[\n  AC_REQUIRE([AC_CANONICAL_HOST])\n  case \"$host_os\" in\n    mingw*)\n      dnl Native Windows.\n      dnl mingw64 defines off_t to a 64-bit type already, if\n      dnl _FILE_OFFSET_BITS=64, which is ensured by AC_SYS_LARGEFILE.\n      AC_CACHE_CHECK([for 64-bit off_t], [gl_cv_type_off_t_64],\n        [AC_COMPILE_IFELSE(\n           [AC_LANG_PROGRAM(\n              [[#include <sys/types.h>\n                int verify_off_t_size[sizeof (off_t) >= 8 ? 1 : -1];\n              ]],\n              [[]])],\n           [gl_cv_type_off_t_64=yes], [gl_cv_type_off_t_64=no])\n        ])\n      if test $gl_cv_type_off_t_64 = no; then\n        WINDOWS_64_BIT_OFF_T=1\n      else\n        WINDOWS_64_BIT_OFF_T=0\n      fi\n      dnl But all native Windows platforms (including mingw64) have a 32-bit\n      dnl st_size member in 'struct stat'.\n      WINDOWS_64_BIT_ST_SIZE=1\n      ;;\n    *)\n      dnl Nothing to do on gnulib's side.\n      dnl A 64-bit off_t is\n      dnl   - already the default on Mac OS X, FreeBSD, NetBSD, OpenBSD, IRIX,\n      dnl     OSF/1, Cygwin,\n      dnl   - enabled by _FILE_OFFSET_BITS=64 (ensured by AC_SYS_LARGEFILE) on\n      dnl     glibc, HP-UX, Solaris,\n      dnl   - enabled by _LARGE_FILES=1 (ensured by AC_SYS_LARGEFILE) on AIX,\n      dnl   - impossible to achieve on Minix 3.1.8.\n      WINDOWS_64_BIT_OFF_T=0\n      WINDOWS_64_BIT_ST_SIZE=0\n      ;;\n  esac\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/lcmessage.m4",
    "content": "# lcmessage.m4 serial 7 (gettext-0.18.2)\ndnl Copyright (C) 1995-2002, 2004-2005, 2008-2014, 2016-2017 Free Software\ndnl Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\ndnl\ndnl This file can be used in projects which are not available under\ndnl the GNU General Public License or the GNU Library General Public\ndnl License but which still want to provide support for the GNU gettext\ndnl functionality.\ndnl Please note that the actual code of the GNU gettext library is covered\ndnl by the GNU Library General Public License, and the rest of the GNU\ndnl gettext package is covered by the GNU General Public License.\ndnl They are *not* in the public domain.\n\ndnl Authors:\ndnl   Ulrich Drepper <drepper@cygnus.com>, 1995.\n\n# Check whether LC_MESSAGES is available in <locale.h>.\n\nAC_DEFUN([gt_LC_MESSAGES],\n[\n  AC_CACHE_CHECK([for LC_MESSAGES], [gt_cv_val_LC_MESSAGES],\n    [AC_LINK_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <locale.h>]],\n          [[return LC_MESSAGES]])],\n       [gt_cv_val_LC_MESSAGES=yes],\n       [gt_cv_val_LC_MESSAGES=no])])\n  if test $gt_cv_val_LC_MESSAGES = yes; then\n    AC_DEFINE([HAVE_LC_MESSAGES], [1],\n      [Define if your <locale.h> file defines LC_MESSAGES.])\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/lib-ld.m4",
    "content": "# lib-ld.m4 serial 6\ndnl Copyright (C) 1996-2003, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl Subroutines of libtool.m4,\ndnl with replacements s/_*LT_PATH/AC_LIB_PROG/ and s/lt_/acl_/ to avoid\ndnl collision with libtool.m4.\n\ndnl From libtool-2.4. Sets the variable with_gnu_ld to yes or no.\nAC_DEFUN([AC_LIB_PROG_LD_GNU],\n[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], [acl_cv_prog_gnu_ld],\n[# I'd rather use --version here, but apparently some GNU lds only accept -v.\ncase `$LD -v 2>&1 </dev/null` in\n*GNU* | *'with BFD'*)\n  acl_cv_prog_gnu_ld=yes\n  ;;\n*)\n  acl_cv_prog_gnu_ld=no\n  ;;\nesac])\nwith_gnu_ld=$acl_cv_prog_gnu_ld\n])\n\ndnl From libtool-2.4. Sets the variable LD.\nAC_DEFUN([AC_LIB_PROG_LD],\n[AC_REQUIRE([AC_PROG_CC])dnl\nAC_REQUIRE([AC_CANONICAL_HOST])dnl\n\nAC_ARG_WITH([gnu-ld],\n    [AS_HELP_STRING([--with-gnu-ld],\n        [assume the C compiler uses GNU ld [default=no]])],\n    [test \"$withval\" = no || with_gnu_ld=yes],\n    [with_gnu_ld=no])dnl\n\n# Prepare PATH_SEPARATOR.\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which\n  # contains only /bin. Note that ksh looks also at the FPATH variable,\n  # so we have to set that as well for the test.\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n    && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n           || PATH_SEPARATOR=';'\n       }\nfi\n\nac_prog=ld\nif test \"$GCC\" = yes; then\n  # Check if gcc -print-prog-name=ld gives a path.\n  AC_MSG_CHECKING([for ld used by $CC])\n  case $host in\n  *-*-mingw*)\n    # gcc leaves a trailing carriage return which upsets mingw\n    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\\015'` ;;\n  *)\n    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;\n  esac\n  case $ac_prog in\n    # Accept absolute paths.\n    [[\\\\/]]* | ?:[[\\\\/]]*)\n      re_direlt='/[[^/]][[^/]]*/\\.\\./'\n      # Canonicalize the pathname of ld\n      ac_prog=`echo \"$ac_prog\"| sed 's%\\\\\\\\%/%g'`\n      while echo \"$ac_prog\" | grep \"$re_direlt\" > /dev/null 2>&1; do\n        ac_prog=`echo $ac_prog| sed \"s%$re_direlt%/%\"`\n      done\n      test -z \"$LD\" && LD=\"$ac_prog\"\n      ;;\n  \"\")\n    # If it fails, then pretend we aren't using GCC.\n    ac_prog=ld\n    ;;\n  *)\n    # If it is relative, then search for the first ld in PATH.\n    with_gnu_ld=unknown\n    ;;\n  esac\nelif test \"$with_gnu_ld\" = yes; then\n  AC_MSG_CHECKING([for GNU ld])\nelse\n  AC_MSG_CHECKING([for non-GNU ld])\nfi\nAC_CACHE_VAL([acl_cv_path_LD],\n[if test -z \"$LD\"; then\n  acl_save_ifs=\"$IFS\"; IFS=$PATH_SEPARATOR\n  for ac_dir in $PATH; do\n    IFS=\"$acl_save_ifs\"\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$ac_prog\" || test -f \"$ac_dir/$ac_prog$ac_exeext\"; then\n      acl_cv_path_LD=\"$ac_dir/$ac_prog\"\n      # Check to see if the program is GNU ld.  I'd rather use --version,\n      # but apparently some variants of GNU ld only accept -v.\n      # Break only if it was the GNU/non-GNU ld that we prefer.\n      case `\"$acl_cv_path_LD\" -v 2>&1 </dev/null` in\n      *GNU* | *'with BFD'*)\n        test \"$with_gnu_ld\" != no && break\n        ;;\n      *)\n        test \"$with_gnu_ld\" != yes && break\n        ;;\n      esac\n    fi\n  done\n  IFS=\"$acl_save_ifs\"\nelse\n  acl_cv_path_LD=\"$LD\" # Let the user override the test with a path.\nfi])\nLD=\"$acl_cv_path_LD\"\nif test -n \"$LD\"; then\n  AC_MSG_RESULT([$LD])\nelse\n  AC_MSG_RESULT([no])\nfi\ntest -z \"$LD\" && AC_MSG_ERROR([no acceptable ld found in \\$PATH])\nAC_LIB_PROG_LD_GNU\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/lib-link.m4",
    "content": "# lib-link.m4 serial 26 (gettext-0.18.2)\ndnl Copyright (C) 2001-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\nAC_PREREQ([2.54])\n\ndnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and\ndnl the libraries corresponding to explicit and implicit dependencies.\ndnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and\ndnl augments the CPPFLAGS variable.\ndnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname\ndnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem.\nAC_DEFUN([AC_LIB_LINKFLAGS],\n[\n  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])\n  AC_REQUIRE([AC_LIB_RPATH])\n  pushdef([Name],[m4_translit([$1],[./+-], [____])])\n  pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-],\n                                   [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])\n  AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [\n    AC_LIB_LINKFLAGS_BODY([$1], [$2])\n    ac_cv_lib[]Name[]_libs=\"$LIB[]NAME\"\n    ac_cv_lib[]Name[]_ltlibs=\"$LTLIB[]NAME\"\n    ac_cv_lib[]Name[]_cppflags=\"$INC[]NAME\"\n    ac_cv_lib[]Name[]_prefix=\"$LIB[]NAME[]_PREFIX\"\n  ])\n  LIB[]NAME=\"$ac_cv_lib[]Name[]_libs\"\n  LTLIB[]NAME=\"$ac_cv_lib[]Name[]_ltlibs\"\n  INC[]NAME=\"$ac_cv_lib[]Name[]_cppflags\"\n  LIB[]NAME[]_PREFIX=\"$ac_cv_lib[]Name[]_prefix\"\n  AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME)\n  AC_SUBST([LIB]NAME)\n  AC_SUBST([LTLIB]NAME)\n  AC_SUBST([LIB]NAME[_PREFIX])\n  dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the\n  dnl results of this search when this library appears as a dependency.\n  HAVE_LIB[]NAME=yes\n  popdef([NAME])\n  popdef([Name])\n])\n\ndnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode, [missing-message])\ndnl searches for libname and the libraries corresponding to explicit and\ndnl implicit dependencies, together with the specified include files and\ndnl the ability to compile and link the specified testcode. The missing-message\ndnl defaults to 'no' and may contain additional hints for the user.\ndnl If found, it sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME}\ndnl and LTLIB${NAME} variables and augments the CPPFLAGS variable, and\ndnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs\ndnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty.\ndnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname\ndnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem.\nAC_DEFUN([AC_LIB_HAVE_LINKFLAGS],\n[\n  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])\n  AC_REQUIRE([AC_LIB_RPATH])\n  pushdef([Name],[m4_translit([$1],[./+-], [____])])\n  pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-],\n                                   [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])\n\n  dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME\n  dnl accordingly.\n  AC_LIB_LINKFLAGS_BODY([$1], [$2])\n\n  dnl Add $INC[]NAME to CPPFLAGS before performing the following checks,\n  dnl because if the user has installed lib[]Name and not disabled its use\n  dnl via --without-lib[]Name-prefix, he wants to use it.\n  ac_save_CPPFLAGS=\"$CPPFLAGS\"\n  AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME)\n\n  AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [\n    ac_save_LIBS=\"$LIBS\"\n    dnl If $LIB[]NAME contains some -l options, add it to the end of LIBS,\n    dnl because these -l options might require -L options that are present in\n    dnl LIBS. -l options benefit only from the -L options listed before it.\n    dnl Otherwise, add it to the front of LIBS, because it may be a static\n    dnl library that depends on another static library that is present in LIBS.\n    dnl Static libraries benefit only from the static libraries listed after\n    dnl it.\n    case \" $LIB[]NAME\" in\n      *\" -l\"*) LIBS=\"$LIBS $LIB[]NAME\" ;;\n      *)       LIBS=\"$LIB[]NAME $LIBS\" ;;\n    esac\n    AC_LINK_IFELSE(\n      [AC_LANG_PROGRAM([[$3]], [[$4]])],\n      [ac_cv_lib[]Name=yes],\n      [ac_cv_lib[]Name='m4_if([$5], [], [no], [[$5]])'])\n    LIBS=\"$ac_save_LIBS\"\n  ])\n  if test \"$ac_cv_lib[]Name\" = yes; then\n    HAVE_LIB[]NAME=yes\n    AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the lib][$1 library.])\n    AC_MSG_CHECKING([how to link with lib[]$1])\n    AC_MSG_RESULT([$LIB[]NAME])\n  else\n    HAVE_LIB[]NAME=no\n    dnl If $LIB[]NAME didn't lead to a usable library, we don't need\n    dnl $INC[]NAME either.\n    CPPFLAGS=\"$ac_save_CPPFLAGS\"\n    LIB[]NAME=\n    LTLIB[]NAME=\n    LIB[]NAME[]_PREFIX=\n  fi\n  AC_SUBST([HAVE_LIB]NAME)\n  AC_SUBST([LIB]NAME)\n  AC_SUBST([LTLIB]NAME)\n  AC_SUBST([LIB]NAME[_PREFIX])\n  popdef([NAME])\n  popdef([Name])\n])\n\ndnl Determine the platform dependent parameters needed to use rpath:\ndnl   acl_libext,\ndnl   acl_shlibext,\ndnl   acl_libname_spec,\ndnl   acl_library_names_spec,\ndnl   acl_hardcode_libdir_flag_spec,\ndnl   acl_hardcode_libdir_separator,\ndnl   acl_hardcode_direct,\ndnl   acl_hardcode_minus_L.\nAC_DEFUN([AC_LIB_RPATH],\n[\n  dnl Tell automake >= 1.10 to complain if config.rpath is missing.\n  m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])])\n  AC_REQUIRE([AC_PROG_CC])                dnl we use $CC, $GCC, $LDFLAGS\n  AC_REQUIRE([AC_LIB_PROG_LD])            dnl we use $LD, $with_gnu_ld\n  AC_REQUIRE([AC_CANONICAL_HOST])         dnl we use $host\n  AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir\n  AC_CACHE_CHECK([for shared library run path origin], [acl_cv_rpath], [\n    CC=\"$CC\" GCC=\"$GCC\" LDFLAGS=\"$LDFLAGS\" LD=\"$LD\" with_gnu_ld=\"$with_gnu_ld\" \\\n    ${CONFIG_SHELL-/bin/sh} \"$ac_aux_dir/config.rpath\" \"$host\" > conftest.sh\n    . ./conftest.sh\n    rm -f ./conftest.sh\n    acl_cv_rpath=done\n  ])\n  wl=\"$acl_cv_wl\"\n  acl_libext=\"$acl_cv_libext\"\n  acl_shlibext=\"$acl_cv_shlibext\"\n  acl_libname_spec=\"$acl_cv_libname_spec\"\n  acl_library_names_spec=\"$acl_cv_library_names_spec\"\n  acl_hardcode_libdir_flag_spec=\"$acl_cv_hardcode_libdir_flag_spec\"\n  acl_hardcode_libdir_separator=\"$acl_cv_hardcode_libdir_separator\"\n  acl_hardcode_direct=\"$acl_cv_hardcode_direct\"\n  acl_hardcode_minus_L=\"$acl_cv_hardcode_minus_L\"\n  dnl Determine whether the user wants rpath handling at all.\n  AC_ARG_ENABLE([rpath],\n    [  --disable-rpath         do not hardcode runtime library paths],\n    :, enable_rpath=yes)\n])\n\ndnl AC_LIB_FROMPACKAGE(name, package)\ndnl declares that libname comes from the given package. The configure file\ndnl will then not have a --with-libname-prefix option but a\ndnl --with-package-prefix option. Several libraries can come from the same\ndnl package. This declaration must occur before an AC_LIB_LINKFLAGS or similar\ndnl macro call that searches for libname.\nAC_DEFUN([AC_LIB_FROMPACKAGE],\n[\n  pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-],\n                                   [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])\n  define([acl_frompackage_]NAME, [$2])\n  popdef([NAME])\n  pushdef([PACK],[$2])\n  pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-],\n                                     [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])\n  define([acl_libsinpackage_]PACKUP,\n    m4_ifdef([acl_libsinpackage_]PACKUP, [m4_defn([acl_libsinpackage_]PACKUP)[, ]],)[lib$1])\n  popdef([PACKUP])\n  popdef([PACK])\n])\n\ndnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and\ndnl the libraries corresponding to explicit and implicit dependencies.\ndnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables.\ndnl Also, sets the LIB${NAME}_PREFIX variable to nonempty if libname was found\ndnl in ${LIB${NAME}_PREFIX}/$acl_libdirstem.\nAC_DEFUN([AC_LIB_LINKFLAGS_BODY],\n[\n  AC_REQUIRE([AC_LIB_PREPARE_MULTILIB])\n  pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-],\n                                   [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])\n  pushdef([PACK],[m4_ifdef([acl_frompackage_]NAME, [acl_frompackage_]NAME, lib[$1])])\n  pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-],\n                                     [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])\n  pushdef([PACKLIBS],[m4_ifdef([acl_frompackage_]NAME, [acl_libsinpackage_]PACKUP, lib[$1])])\n  dnl Autoconf >= 2.61 supports dots in --with options.\n  pushdef([P_A_C_K],[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.61]),[-1],[m4_translit(PACK,[.],[_])],PACK)])\n  dnl By default, look in $includedir and $libdir.\n  use_additional=yes\n  AC_LIB_WITH_FINAL_PREFIX([\n    eval additional_includedir=\\\"$includedir\\\"\n    eval additional_libdir=\\\"$libdir\\\"\n  ])\n  AC_ARG_WITH(P_A_C_K[-prefix],\n[[  --with-]]P_A_C_K[[-prefix[=DIR]  search for ]PACKLIBS[ in DIR/include and DIR/lib\n  --without-]]P_A_C_K[[-prefix     don't search for ]PACKLIBS[ in includedir and libdir]],\n[\n    if test \"X$withval\" = \"Xno\"; then\n      use_additional=no\n    else\n      if test \"X$withval\" = \"X\"; then\n        AC_LIB_WITH_FINAL_PREFIX([\n          eval additional_includedir=\\\"$includedir\\\"\n          eval additional_libdir=\\\"$libdir\\\"\n        ])\n      else\n        additional_includedir=\"$withval/include\"\n        additional_libdir=\"$withval/$acl_libdirstem\"\n        if test \"$acl_libdirstem2\" != \"$acl_libdirstem\" \\\n           && ! test -d \"$withval/$acl_libdirstem\"; then\n          additional_libdir=\"$withval/$acl_libdirstem2\"\n        fi\n      fi\n    fi\n])\n  dnl Search the library and its dependencies in $additional_libdir and\n  dnl $LDFLAGS. Using breadth-first-seach.\n  LIB[]NAME=\n  LTLIB[]NAME=\n  INC[]NAME=\n  LIB[]NAME[]_PREFIX=\n  dnl HAVE_LIB${NAME} is an indicator that LIB${NAME}, LTLIB${NAME} have been\n  dnl computed. So it has to be reset here.\n  HAVE_LIB[]NAME=\n  rpathdirs=\n  ltrpathdirs=\n  names_already_handled=\n  names_next_round='$1 $2'\n  while test -n \"$names_next_round\"; do\n    names_this_round=\"$names_next_round\"\n    names_next_round=\n    for name in $names_this_round; do\n      already_handled=\n      for n in $names_already_handled; do\n        if test \"$n\" = \"$name\"; then\n          already_handled=yes\n          break\n        fi\n      done\n      if test -z \"$already_handled\"; then\n        names_already_handled=\"$names_already_handled $name\"\n        dnl See if it was already located by an earlier AC_LIB_LINKFLAGS\n        dnl or AC_LIB_HAVE_LINKFLAGS call.\n        uppername=`echo \"$name\" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'`\n        eval value=\\\"\\$HAVE_LIB$uppername\\\"\n        if test -n \"$value\"; then\n          if test \"$value\" = yes; then\n            eval value=\\\"\\$LIB$uppername\\\"\n            test -z \"$value\" || LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }$value\"\n            eval value=\\\"\\$LTLIB$uppername\\\"\n            test -z \"$value\" || LTLIB[]NAME=\"${LTLIB[]NAME}${LTLIB[]NAME:+ }$value\"\n          else\n            dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined\n            dnl that this library doesn't exist. So just drop it.\n            :\n          fi\n        else\n          dnl Search the library lib$name in $additional_libdir and $LDFLAGS\n          dnl and the already constructed $LIBNAME/$LTLIBNAME.\n          found_dir=\n          found_la=\n          found_so=\n          found_a=\n          eval libname=\\\"$acl_libname_spec\\\"    # typically: libname=lib$name\n          if test -n \"$acl_shlibext\"; then\n            shrext=\".$acl_shlibext\"             # typically: shrext=.so\n          else\n            shrext=\n          fi\n          if test $use_additional = yes; then\n            dir=\"$additional_libdir\"\n            dnl The same code as in the loop below:\n            dnl First look for a shared library.\n            if test -n \"$acl_shlibext\"; then\n              if test -f \"$dir/$libname$shrext\"; then\n                found_dir=\"$dir\"\n                found_so=\"$dir/$libname$shrext\"\n              else\n                if test \"$acl_library_names_spec\" = '$libname$shrext$versuffix'; then\n                  ver=`(cd \"$dir\" && \\\n                        for f in \"$libname$shrext\".*; do echo \"$f\"; done \\\n                        | sed -e \"s,^$libname$shrext\\\\\\\\.,,\" \\\n                        | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \\\n                        | sed 1q ) 2>/dev/null`\n                  if test -n \"$ver\" && test -f \"$dir/$libname$shrext.$ver\"; then\n                    found_dir=\"$dir\"\n                    found_so=\"$dir/$libname$shrext.$ver\"\n                  fi\n                else\n                  eval library_names=\\\"$acl_library_names_spec\\\"\n                  for f in $library_names; do\n                    if test -f \"$dir/$f\"; then\n                      found_dir=\"$dir\"\n                      found_so=\"$dir/$f\"\n                      break\n                    fi\n                  done\n                fi\n              fi\n            fi\n            dnl Then look for a static library.\n            if test \"X$found_dir\" = \"X\"; then\n              if test -f \"$dir/$libname.$acl_libext\"; then\n                found_dir=\"$dir\"\n                found_a=\"$dir/$libname.$acl_libext\"\n              fi\n            fi\n            if test \"X$found_dir\" != \"X\"; then\n              if test -f \"$dir/$libname.la\"; then\n                found_la=\"$dir/$libname.la\"\n              fi\n            fi\n          fi\n          if test \"X$found_dir\" = \"X\"; then\n            for x in $LDFLAGS $LTLIB[]NAME; do\n              AC_LIB_WITH_FINAL_PREFIX([eval x=\\\"$x\\\"])\n              case \"$x\" in\n                -L*)\n                  dir=`echo \"X$x\" | sed -e 's/^X-L//'`\n                  dnl First look for a shared library.\n                  if test -n \"$acl_shlibext\"; then\n                    if test -f \"$dir/$libname$shrext\"; then\n                      found_dir=\"$dir\"\n                      found_so=\"$dir/$libname$shrext\"\n                    else\n                      if test \"$acl_library_names_spec\" = '$libname$shrext$versuffix'; then\n                        ver=`(cd \"$dir\" && \\\n                              for f in \"$libname$shrext\".*; do echo \"$f\"; done \\\n                              | sed -e \"s,^$libname$shrext\\\\\\\\.,,\" \\\n                              | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \\\n                              | sed 1q ) 2>/dev/null`\n                        if test -n \"$ver\" && test -f \"$dir/$libname$shrext.$ver\"; then\n                          found_dir=\"$dir\"\n                          found_so=\"$dir/$libname$shrext.$ver\"\n                        fi\n                      else\n                        eval library_names=\\\"$acl_library_names_spec\\\"\n                        for f in $library_names; do\n                          if test -f \"$dir/$f\"; then\n                            found_dir=\"$dir\"\n                            found_so=\"$dir/$f\"\n                            break\n                          fi\n                        done\n                      fi\n                    fi\n                  fi\n                  dnl Then look for a static library.\n                  if test \"X$found_dir\" = \"X\"; then\n                    if test -f \"$dir/$libname.$acl_libext\"; then\n                      found_dir=\"$dir\"\n                      found_a=\"$dir/$libname.$acl_libext\"\n                    fi\n                  fi\n                  if test \"X$found_dir\" != \"X\"; then\n                    if test -f \"$dir/$libname.la\"; then\n                      found_la=\"$dir/$libname.la\"\n                    fi\n                  fi\n                  ;;\n              esac\n              if test \"X$found_dir\" != \"X\"; then\n                break\n              fi\n            done\n          fi\n          if test \"X$found_dir\" != \"X\"; then\n            dnl Found the library.\n            LTLIB[]NAME=\"${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name\"\n            if test \"X$found_so\" != \"X\"; then\n              dnl Linking with a shared library. We attempt to hardcode its\n              dnl directory into the executable's runpath, unless it's the\n              dnl standard /usr/lib.\n              if test \"$enable_rpath\" = no \\\n                 || test \"X$found_dir\" = \"X/usr/$acl_libdirstem\" \\\n                 || test \"X$found_dir\" = \"X/usr/$acl_libdirstem2\"; then\n                dnl No hardcoding is needed.\n                LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }$found_so\"\n              else\n                dnl Use an explicit option to hardcode DIR into the resulting\n                dnl binary.\n                dnl Potentially add DIR to ltrpathdirs.\n                dnl The ltrpathdirs will be appended to $LTLIBNAME at the end.\n                haveit=\n                for x in $ltrpathdirs; do\n                  if test \"X$x\" = \"X$found_dir\"; then\n                    haveit=yes\n                    break\n                  fi\n                done\n                if test -z \"$haveit\"; then\n                  ltrpathdirs=\"$ltrpathdirs $found_dir\"\n                fi\n                dnl The hardcoding into $LIBNAME is system dependent.\n                if test \"$acl_hardcode_direct\" = yes; then\n                  dnl Using DIR/libNAME.so during linking hardcodes DIR into the\n                  dnl resulting binary.\n                  LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }$found_so\"\n                else\n                  if test -n \"$acl_hardcode_libdir_flag_spec\" && test \"$acl_hardcode_minus_L\" = no; then\n                    dnl Use an explicit option to hardcode DIR into the resulting\n                    dnl binary.\n                    LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }$found_so\"\n                    dnl Potentially add DIR to rpathdirs.\n                    dnl The rpathdirs will be appended to $LIBNAME at the end.\n                    haveit=\n                    for x in $rpathdirs; do\n                      if test \"X$x\" = \"X$found_dir\"; then\n                        haveit=yes\n                        break\n                      fi\n                    done\n                    if test -z \"$haveit\"; then\n                      rpathdirs=\"$rpathdirs $found_dir\"\n                    fi\n                  else\n                    dnl Rely on \"-L$found_dir\".\n                    dnl But don't add it if it's already contained in the LDFLAGS\n                    dnl or the already constructed $LIBNAME\n                    haveit=\n                    for x in $LDFLAGS $LIB[]NAME; do\n                      AC_LIB_WITH_FINAL_PREFIX([eval x=\\\"$x\\\"])\n                      if test \"X$x\" = \"X-L$found_dir\"; then\n                        haveit=yes\n                        break\n                      fi\n                    done\n                    if test -z \"$haveit\"; then\n                      LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir\"\n                    fi\n                    if test \"$acl_hardcode_minus_L\" != no; then\n                      dnl FIXME: Not sure whether we should use\n                      dnl \"-L$found_dir -l$name\" or \"-L$found_dir $found_so\"\n                      dnl here.\n                      LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }$found_so\"\n                    else\n                      dnl We cannot use $acl_hardcode_runpath_var and LD_RUN_PATH\n                      dnl here, because this doesn't fit in flags passed to the\n                      dnl compiler. So give up. No hardcoding. This affects only\n                      dnl very old systems.\n                      dnl FIXME: Not sure whether we should use\n                      dnl \"-L$found_dir -l$name\" or \"-L$found_dir $found_so\"\n                      dnl here.\n                      LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }-l$name\"\n                    fi\n                  fi\n                fi\n              fi\n            else\n              if test \"X$found_a\" != \"X\"; then\n                dnl Linking with a static library.\n                LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }$found_a\"\n              else\n                dnl We shouldn't come here, but anyway it's good to have a\n                dnl fallback.\n                LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name\"\n              fi\n            fi\n            dnl Assume the include files are nearby.\n            additional_includedir=\n            case \"$found_dir\" in\n              */$acl_libdirstem | */$acl_libdirstem/)\n                basedir=`echo \"X$found_dir\" | sed -e 's,^X,,' -e \"s,/$acl_libdirstem/\"'*$,,'`\n                if test \"$name\" = '$1'; then\n                  LIB[]NAME[]_PREFIX=\"$basedir\"\n                fi\n                additional_includedir=\"$basedir/include\"\n                ;;\n              */$acl_libdirstem2 | */$acl_libdirstem2/)\n                basedir=`echo \"X$found_dir\" | sed -e 's,^X,,' -e \"s,/$acl_libdirstem2/\"'*$,,'`\n                if test \"$name\" = '$1'; then\n                  LIB[]NAME[]_PREFIX=\"$basedir\"\n                fi\n                additional_includedir=\"$basedir/include\"\n                ;;\n            esac\n            if test \"X$additional_includedir\" != \"X\"; then\n              dnl Potentially add $additional_includedir to $INCNAME.\n              dnl But don't add it\n              dnl   1. if it's the standard /usr/include,\n              dnl   2. if it's /usr/local/include and we are using GCC on Linux,\n              dnl   3. if it's already present in $CPPFLAGS or the already\n              dnl      constructed $INCNAME,\n              dnl   4. if it doesn't exist as a directory.\n              if test \"X$additional_includedir\" != \"X/usr/include\"; then\n                haveit=\n                if test \"X$additional_includedir\" = \"X/usr/local/include\"; then\n                  if test -n \"$GCC\"; then\n                    case $host_os in\n                      linux* | gnu* | k*bsd*-gnu) haveit=yes;;\n                    esac\n                  fi\n                fi\n                if test -z \"$haveit\"; then\n                  for x in $CPPFLAGS $INC[]NAME; do\n                    AC_LIB_WITH_FINAL_PREFIX([eval x=\\\"$x\\\"])\n                    if test \"X$x\" = \"X-I$additional_includedir\"; then\n                      haveit=yes\n                      break\n                    fi\n                  done\n                  if test -z \"$haveit\"; then\n                    if test -d \"$additional_includedir\"; then\n                      dnl Really add $additional_includedir to $INCNAME.\n                      INC[]NAME=\"${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir\"\n                    fi\n                  fi\n                fi\n              fi\n            fi\n            dnl Look for dependencies.\n            if test -n \"$found_la\"; then\n              dnl Read the .la file. It defines the variables\n              dnl dlname, library_names, old_library, dependency_libs, current,\n              dnl age, revision, installed, dlopen, dlpreopen, libdir.\n              save_libdir=\"$libdir\"\n              case \"$found_la\" in\n                */* | *\\\\*) . \"$found_la\" ;;\n                *) . \"./$found_la\" ;;\n              esac\n              libdir=\"$save_libdir\"\n              dnl We use only dependency_libs.\n              for dep in $dependency_libs; do\n                case \"$dep\" in\n                  -L*)\n                    additional_libdir=`echo \"X$dep\" | sed -e 's/^X-L//'`\n                    dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME.\n                    dnl But don't add it\n                    dnl   1. if it's the standard /usr/lib,\n                    dnl   2. if it's /usr/local/lib and we are using GCC on Linux,\n                    dnl   3. if it's already present in $LDFLAGS or the already\n                    dnl      constructed $LIBNAME,\n                    dnl   4. if it doesn't exist as a directory.\n                    if test \"X$additional_libdir\" != \"X/usr/$acl_libdirstem\" \\\n                       && test \"X$additional_libdir\" != \"X/usr/$acl_libdirstem2\"; then\n                      haveit=\n                      if test \"X$additional_libdir\" = \"X/usr/local/$acl_libdirstem\" \\\n                         || test \"X$additional_libdir\" = \"X/usr/local/$acl_libdirstem2\"; then\n                        if test -n \"$GCC\"; then\n                          case $host_os in\n                            linux* | gnu* | k*bsd*-gnu) haveit=yes;;\n                          esac\n                        fi\n                      fi\n                      if test -z \"$haveit\"; then\n                        haveit=\n                        for x in $LDFLAGS $LIB[]NAME; do\n                          AC_LIB_WITH_FINAL_PREFIX([eval x=\\\"$x\\\"])\n                          if test \"X$x\" = \"X-L$additional_libdir\"; then\n                            haveit=yes\n                            break\n                          fi\n                        done\n                        if test -z \"$haveit\"; then\n                          if test -d \"$additional_libdir\"; then\n                            dnl Really add $additional_libdir to $LIBNAME.\n                            LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir\"\n                          fi\n                        fi\n                        haveit=\n                        for x in $LDFLAGS $LTLIB[]NAME; do\n                          AC_LIB_WITH_FINAL_PREFIX([eval x=\\\"$x\\\"])\n                          if test \"X$x\" = \"X-L$additional_libdir\"; then\n                            haveit=yes\n                            break\n                          fi\n                        done\n                        if test -z \"$haveit\"; then\n                          if test -d \"$additional_libdir\"; then\n                            dnl Really add $additional_libdir to $LTLIBNAME.\n                            LTLIB[]NAME=\"${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir\"\n                          fi\n                        fi\n                      fi\n                    fi\n                    ;;\n                  -R*)\n                    dir=`echo \"X$dep\" | sed -e 's/^X-R//'`\n                    if test \"$enable_rpath\" != no; then\n                      dnl Potentially add DIR to rpathdirs.\n                      dnl The rpathdirs will be appended to $LIBNAME at the end.\n                      haveit=\n                      for x in $rpathdirs; do\n                        if test \"X$x\" = \"X$dir\"; then\n                          haveit=yes\n                          break\n                        fi\n                      done\n                      if test -z \"$haveit\"; then\n                        rpathdirs=\"$rpathdirs $dir\"\n                      fi\n                      dnl Potentially add DIR to ltrpathdirs.\n                      dnl The ltrpathdirs will be appended to $LTLIBNAME at the end.\n                      haveit=\n                      for x in $ltrpathdirs; do\n                        if test \"X$x\" = \"X$dir\"; then\n                          haveit=yes\n                          break\n                        fi\n                      done\n                      if test -z \"$haveit\"; then\n                        ltrpathdirs=\"$ltrpathdirs $dir\"\n                      fi\n                    fi\n                    ;;\n                  -l*)\n                    dnl Handle this in the next round.\n                    names_next_round=\"$names_next_round \"`echo \"X$dep\" | sed -e 's/^X-l//'`\n                    ;;\n                  *.la)\n                    dnl Handle this in the next round. Throw away the .la's\n                    dnl directory; it is already contained in a preceding -L\n                    dnl option.\n                    names_next_round=\"$names_next_round \"`echo \"X$dep\" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\\.la$,,'`\n                    ;;\n                  *)\n                    dnl Most likely an immediate library name.\n                    LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }$dep\"\n                    LTLIB[]NAME=\"${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep\"\n                    ;;\n                esac\n              done\n            fi\n          else\n            dnl Didn't find the library; assume it is in the system directories\n            dnl known to the linker and runtime loader. (All the system\n            dnl directories known to the linker should also be known to the\n            dnl runtime loader, otherwise the system is severely misconfigured.)\n            LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }-l$name\"\n            LTLIB[]NAME=\"${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name\"\n          fi\n        fi\n      fi\n    done\n  done\n  if test \"X$rpathdirs\" != \"X\"; then\n    if test -n \"$acl_hardcode_libdir_separator\"; then\n      dnl Weird platform: only the last -rpath option counts, the user must\n      dnl pass all path elements in one option. We can arrange that for a\n      dnl single library, but not when more than one $LIBNAMEs are used.\n      alldirs=\n      for found_dir in $rpathdirs; do\n        alldirs=\"${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir\"\n      done\n      dnl Note: acl_hardcode_libdir_flag_spec uses $libdir and $wl.\n      acl_save_libdir=\"$libdir\"\n      libdir=\"$alldirs\"\n      eval flag=\\\"$acl_hardcode_libdir_flag_spec\\\"\n      libdir=\"$acl_save_libdir\"\n      LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }$flag\"\n    else\n      dnl The -rpath options are cumulative.\n      for found_dir in $rpathdirs; do\n        acl_save_libdir=\"$libdir\"\n        libdir=\"$found_dir\"\n        eval flag=\\\"$acl_hardcode_libdir_flag_spec\\\"\n        libdir=\"$acl_save_libdir\"\n        LIB[]NAME=\"${LIB[]NAME}${LIB[]NAME:+ }$flag\"\n      done\n    fi\n  fi\n  if test \"X$ltrpathdirs\" != \"X\"; then\n    dnl When using libtool, the option that works for both libraries and\n    dnl executables is -R. The -R options are cumulative.\n    for found_dir in $ltrpathdirs; do\n      LTLIB[]NAME=\"${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir\"\n    done\n  fi\n  popdef([P_A_C_K])\n  popdef([PACKLIBS])\n  popdef([PACKUP])\n  popdef([PACK])\n  popdef([NAME])\n])\n\ndnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR,\ndnl unless already present in VAR.\ndnl Works only for CPPFLAGS, not for LIB* variables because that sometimes\ndnl contains two or three consecutive elements that belong together.\nAC_DEFUN([AC_LIB_APPENDTOVAR],\n[\n  for element in [$2]; do\n    haveit=\n    for x in $[$1]; do\n      AC_LIB_WITH_FINAL_PREFIX([eval x=\\\"$x\\\"])\n      if test \"X$x\" = \"X$element\"; then\n        haveit=yes\n        break\n      fi\n    done\n    if test -z \"$haveit\"; then\n      [$1]=\"${[$1]}${[$1]:+ }$element\"\n    fi\n  done\n])\n\ndnl For those cases where a variable contains several -L and -l options\ndnl referring to unknown libraries and directories, this macro determines the\ndnl necessary additional linker options for the runtime path.\ndnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL])\ndnl sets LDADDVAR to linker options needed together with LIBSVALUE.\ndnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed,\ndnl otherwise linking without libtool is assumed.\nAC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS],\n[\n  AC_REQUIRE([AC_LIB_RPATH])\n  AC_REQUIRE([AC_LIB_PREPARE_MULTILIB])\n  $1=\n  if test \"$enable_rpath\" != no; then\n    if test -n \"$acl_hardcode_libdir_flag_spec\" && test \"$acl_hardcode_minus_L\" = no; then\n      dnl Use an explicit option to hardcode directories into the resulting\n      dnl binary.\n      rpathdirs=\n      next=\n      for opt in $2; do\n        if test -n \"$next\"; then\n          dir=\"$next\"\n          dnl No need to hardcode the standard /usr/lib.\n          if test \"X$dir\" != \"X/usr/$acl_libdirstem\" \\\n             && test \"X$dir\" != \"X/usr/$acl_libdirstem2\"; then\n            rpathdirs=\"$rpathdirs $dir\"\n          fi\n          next=\n        else\n          case $opt in\n            -L) next=yes ;;\n            -L*) dir=`echo \"X$opt\" | sed -e 's,^X-L,,'`\n                 dnl No need to hardcode the standard /usr/lib.\n                 if test \"X$dir\" != \"X/usr/$acl_libdirstem\" \\\n                    && test \"X$dir\" != \"X/usr/$acl_libdirstem2\"; then\n                   rpathdirs=\"$rpathdirs $dir\"\n                 fi\n                 next= ;;\n            *) next= ;;\n          esac\n        fi\n      done\n      if test \"X$rpathdirs\" != \"X\"; then\n        if test -n \"\"$3\"\"; then\n          dnl libtool is used for linking. Use -R options.\n          for dir in $rpathdirs; do\n            $1=\"${$1}${$1:+ }-R$dir\"\n          done\n        else\n          dnl The linker is used for linking directly.\n          if test -n \"$acl_hardcode_libdir_separator\"; then\n            dnl Weird platform: only the last -rpath option counts, the user\n            dnl must pass all path elements in one option.\n            alldirs=\n            for dir in $rpathdirs; do\n              alldirs=\"${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$dir\"\n            done\n            acl_save_libdir=\"$libdir\"\n            libdir=\"$alldirs\"\n            eval flag=\\\"$acl_hardcode_libdir_flag_spec\\\"\n            libdir=\"$acl_save_libdir\"\n            $1=\"$flag\"\n          else\n            dnl The -rpath options are cumulative.\n            for dir in $rpathdirs; do\n              acl_save_libdir=\"$libdir\"\n              libdir=\"$dir\"\n              eval flag=\\\"$acl_hardcode_libdir_flag_spec\\\"\n              libdir=\"$acl_save_libdir\"\n              $1=\"${$1}${$1:+ }$flag\"\n            done\n          fi\n        fi\n      fi\n    fi\n  fi\n  AC_SUBST([$1])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/lib-prefix.m4",
    "content": "# lib-prefix.m4 serial 7 (gettext-0.18)\ndnl Copyright (C) 2001-2005, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\ndnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and\ndnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't\ndnl require excessive bracketing.\nifdef([AC_HELP_STRING],\n[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])],\n[AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])])\n\ndnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed\ndnl to access previously installed libraries. The basic assumption is that\ndnl a user will want packages to use other packages he previously installed\ndnl with the same --prefix option.\ndnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate\ndnl libraries, but is otherwise very convenient.\nAC_DEFUN([AC_LIB_PREFIX],\n[\n  AC_BEFORE([$0], [AC_LIB_LINKFLAGS])\n  AC_REQUIRE([AC_PROG_CC])\n  AC_REQUIRE([AC_CANONICAL_HOST])\n  AC_REQUIRE([AC_LIB_PREPARE_MULTILIB])\n  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])\n  dnl By default, look in $includedir and $libdir.\n  use_additional=yes\n  AC_LIB_WITH_FINAL_PREFIX([\n    eval additional_includedir=\\\"$includedir\\\"\n    eval additional_libdir=\\\"$libdir\\\"\n  ])\n  AC_LIB_ARG_WITH([lib-prefix],\n[  --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib\n  --without-lib-prefix    don't search for libraries in includedir and libdir],\n[\n    if test \"X$withval\" = \"Xno\"; then\n      use_additional=no\n    else\n      if test \"X$withval\" = \"X\"; then\n        AC_LIB_WITH_FINAL_PREFIX([\n          eval additional_includedir=\\\"$includedir\\\"\n          eval additional_libdir=\\\"$libdir\\\"\n        ])\n      else\n        additional_includedir=\"$withval/include\"\n        additional_libdir=\"$withval/$acl_libdirstem\"\n      fi\n    fi\n])\n  if test $use_additional = yes; then\n    dnl Potentially add $additional_includedir to $CPPFLAGS.\n    dnl But don't add it\n    dnl   1. if it's the standard /usr/include,\n    dnl   2. if it's already present in $CPPFLAGS,\n    dnl   3. if it's /usr/local/include and we are using GCC on Linux,\n    dnl   4. if it doesn't exist as a directory.\n    if test \"X$additional_includedir\" != \"X/usr/include\"; then\n      haveit=\n      for x in $CPPFLAGS; do\n        AC_LIB_WITH_FINAL_PREFIX([eval x=\\\"$x\\\"])\n        if test \"X$x\" = \"X-I$additional_includedir\"; then\n          haveit=yes\n          break\n        fi\n      done\n      if test -z \"$haveit\"; then\n        if test \"X$additional_includedir\" = \"X/usr/local/include\"; then\n          if test -n \"$GCC\"; then\n            case $host_os in\n              linux* | gnu* | k*bsd*-gnu) haveit=yes;;\n            esac\n          fi\n        fi\n        if test -z \"$haveit\"; then\n          if test -d \"$additional_includedir\"; then\n            dnl Really add $additional_includedir to $CPPFLAGS.\n            CPPFLAGS=\"${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir\"\n          fi\n        fi\n      fi\n    fi\n    dnl Potentially add $additional_libdir to $LDFLAGS.\n    dnl But don't add it\n    dnl   1. if it's the standard /usr/lib,\n    dnl   2. if it's already present in $LDFLAGS,\n    dnl   3. if it's /usr/local/lib and we are using GCC on Linux,\n    dnl   4. if it doesn't exist as a directory.\n    if test \"X$additional_libdir\" != \"X/usr/$acl_libdirstem\"; then\n      haveit=\n      for x in $LDFLAGS; do\n        AC_LIB_WITH_FINAL_PREFIX([eval x=\\\"$x\\\"])\n        if test \"X$x\" = \"X-L$additional_libdir\"; then\n          haveit=yes\n          break\n        fi\n      done\n      if test -z \"$haveit\"; then\n        if test \"X$additional_libdir\" = \"X/usr/local/$acl_libdirstem\"; then\n          if test -n \"$GCC\"; then\n            case $host_os in\n              linux*) haveit=yes;;\n            esac\n          fi\n        fi\n        if test -z \"$haveit\"; then\n          if test -d \"$additional_libdir\"; then\n            dnl Really add $additional_libdir to $LDFLAGS.\n            LDFLAGS=\"${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir\"\n          fi\n        fi\n      fi\n    fi\n  fi\n])\n\ndnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix,\ndnl acl_final_exec_prefix, containing the values to which $prefix and\ndnl $exec_prefix will expand at the end of the configure script.\nAC_DEFUN([AC_LIB_PREPARE_PREFIX],\n[\n  dnl Unfortunately, prefix and exec_prefix get only finally determined\n  dnl at the end of configure.\n  if test \"X$prefix\" = \"XNONE\"; then\n    acl_final_prefix=\"$ac_default_prefix\"\n  else\n    acl_final_prefix=\"$prefix\"\n  fi\n  if test \"X$exec_prefix\" = \"XNONE\"; then\n    acl_final_exec_prefix='${prefix}'\n  else\n    acl_final_exec_prefix=\"$exec_prefix\"\n  fi\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  eval acl_final_exec_prefix=\\\"$acl_final_exec_prefix\\\"\n  prefix=\"$acl_save_prefix\"\n])\n\ndnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the\ndnl variables prefix and exec_prefix bound to the values they will have\ndnl at the end of the configure script.\nAC_DEFUN([AC_LIB_WITH_FINAL_PREFIX],\n[\n  acl_save_prefix=\"$prefix\"\n  prefix=\"$acl_final_prefix\"\n  acl_save_exec_prefix=\"$exec_prefix\"\n  exec_prefix=\"$acl_final_exec_prefix\"\n  $1\n  exec_prefix=\"$acl_save_exec_prefix\"\n  prefix=\"$acl_save_prefix\"\n])\n\ndnl AC_LIB_PREPARE_MULTILIB creates\ndnl - a variable acl_libdirstem, containing the basename of the libdir, either\ndnl   \"lib\" or \"lib64\" or \"lib/64\",\ndnl - a variable acl_libdirstem2, as a secondary possible value for\ndnl   acl_libdirstem, either the same as acl_libdirstem or \"lib/sparcv9\" or\ndnl   \"lib/amd64\".\nAC_DEFUN([AC_LIB_PREPARE_MULTILIB],\n[\n  dnl There is no formal standard regarding lib and lib64.\n  dnl On glibc systems, the current practice is that on a system supporting\n  dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under\n  dnl $prefix/lib64 and 32-bit libraries go under $prefix/lib. We determine\n  dnl the compiler's default mode by looking at the compiler's library search\n  dnl path. If at least one of its elements ends in /lib64 or points to a\n  dnl directory whose absolute pathname ends in /lib64, we assume a 64-bit ABI.\n  dnl Otherwise we use the default, namely \"lib\".\n  dnl On Solaris systems, the current practice is that on a system supporting\n  dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under\n  dnl $prefix/lib/64 (which is a symlink to either $prefix/lib/sparcv9 or\n  dnl $prefix/lib/amd64) and 32-bit libraries go under $prefix/lib.\n  AC_REQUIRE([AC_CANONICAL_HOST])\n  acl_libdirstem=lib\n  acl_libdirstem2=\n  case \"$host_os\" in\n    solaris*)\n      dnl See Solaris 10 Software Developer Collection > Solaris 64-bit Developer's Guide > The Development Environment\n      dnl <http://docs.sun.com/app/docs/doc/816-5138/dev-env?l=en&a=view>.\n      dnl \"Portable Makefiles should refer to any library directories using the 64 symbolic link.\"\n      dnl But we want to recognize the sparcv9 or amd64 subdirectory also if the\n      dnl symlink is missing, so we set acl_libdirstem2 too.\n      AC_CACHE_CHECK([for 64-bit host], [gl_cv_solaris_64bit],\n        [AC_EGREP_CPP([sixtyfour bits], [\n#ifdef _LP64\nsixtyfour bits\n#endif\n           ], [gl_cv_solaris_64bit=yes], [gl_cv_solaris_64bit=no])\n        ])\n      if test $gl_cv_solaris_64bit = yes; then\n        acl_libdirstem=lib/64\n        case \"$host_cpu\" in\n          sparc*)        acl_libdirstem2=lib/sparcv9 ;;\n          i*86 | x86_64) acl_libdirstem2=lib/amd64 ;;\n        esac\n      fi\n      ;;\n    *)\n      searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'`\n      if test -n \"$searchpath\"; then\n        acl_save_IFS=\"${IFS= \t}\"; IFS=\":\"\n        for searchdir in $searchpath; do\n          if test -d \"$searchdir\"; then\n            case \"$searchdir\" in\n              */lib64/ | */lib64 ) acl_libdirstem=lib64 ;;\n              */../ | */.. )\n                # Better ignore directories of this form. They are misleading.\n                ;;\n              *) searchdir=`cd \"$searchdir\" && pwd`\n                 case \"$searchdir\" in\n                   */lib64 ) acl_libdirstem=lib64 ;;\n                 esac ;;\n            esac\n          fi\n        done\n        IFS=\"$acl_save_IFS\"\n      fi\n      ;;\n  esac\n  test -n \"$acl_libdirstem2\" || acl_libdirstem2=\"$acl_libdirstem\"\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/libunistring-base.m4",
    "content": "# libunistring-base.m4 serial 5\ndnl Copyright (C) 2010-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Paolo Bonzini and Bruno Haible.\n\ndnl gl_LIBUNISTRING_MODULE([VERSION], [Module])\ndnl Declares that the source files of Module should be compiled, unless we\ndnl are linking with libunistring and its version is >= the given VERSION.\ndnl Defines an automake conditional LIBUNISTRING_COMPILE_$MODULE that is\ndnl true if the source files of Module should be compiled.\ndnl This macro is to be used for public libunistring API, not for\ndnl undocumented API.\ndnl\ndnl You have to bump the VERSION argument to the next projected version\ndnl number each time you make a change that affects the behaviour of the\ndnl functions defined in Module (even if the sources of Module itself do not\ndnl change).\n\nAC_DEFUN([gl_LIBUNISTRING_MODULE],\n[\n  AC_REQUIRE([gl_LIBUNISTRING_LIB_PREPARE])\n  dnl Use the variables HAVE_LIBUNISTRING, LIBUNISTRING_VERSION from\n  dnl gl_LIBUNISTRING_CORE if that macro has been run.\n  AM_CONDITIONAL(AS_TR_CPP([LIBUNISTRING_COMPILE_$2]),\n    [gl_LIBUNISTRING_VERSION_CMP([$1])])\n])\n\ndnl gl_LIBUNISTRING_LIBHEADER([VERSION], [HeaderFile])\ndnl Declares that HeaderFile should be created, unless we are linking\ndnl with libunistring and its version is >= the given VERSION.\ndnl HeaderFile should be relative to the lib directory and end in '.h'.\ndnl Prepares for substituting LIBUNISTRING_HEADERFILE (to HeaderFile or empty).\ndnl\ndnl When we are linking with the already installed libunistring and its version\ndnl is < VERSION, we create HeaderFile here, because we may compile functions\ndnl (via gl_LIBUNISTRING_MODULE above) that are not contained in the installed\ndnl version.\ndnl When we are linking with the already installed libunistring and its version\ndnl is > VERSION, we don't create HeaderFile here: it could cause compilation\ndnl errors in other libunistring header files if some types are missing.\ndnl\ndnl You have to bump the VERSION argument to the next projected version\ndnl number each time you make a non-comment change to the HeaderFile.\n\nAC_DEFUN([gl_LIBUNISTRING_LIBHEADER],\n[\n  AC_REQUIRE([gl_LIBUNISTRING_LIB_PREPARE])\n  dnl Use the variables HAVE_LIBUNISTRING, LIBUNISTRING_VERSION from\n  dnl gl_LIBUNISTRING_CORE if that macro has been run.\n  if gl_LIBUNISTRING_VERSION_CMP([$1]); then\n    LIBUNISTRING_[]AS_TR_CPP([$2])='$2'\n  else\n    LIBUNISTRING_[]AS_TR_CPP([$2])=\n  fi\n  AC_SUBST([LIBUNISTRING_]AS_TR_CPP([$2]))\n])\n\ndnl Miscellaneous preparations/initializations.\n\nAC_DEFUN([gl_LIBUNISTRING_LIB_PREPARE],\n[\n  dnl Ensure that HAVE_LIBUNISTRING is fully determined at this point.\n  m4_ifdef([gl_LIBUNISTRING], [AC_REQUIRE([gl_LIBUNISTRING])])\n\n  AC_REQUIRE([AC_PROG_AWK])\n\ndnl Sed expressions to extract the parts of a version number.\nchangequote(,)\ngl_libunistring_sed_extract_major='/^[0-9]/{s/^\\([0-9]*\\).*/\\1/p;q;}\ni\\\n0\nq\n'\ngl_libunistring_sed_extract_minor='/^[0-9][0-9]*[.][0-9]/{s/^[0-9]*[.]\\([0-9]*\\).*/\\1/p;q;}\ni\\\n0\nq\n'\ngl_libunistring_sed_extract_subminor='/^[0-9][0-9]*[.][0-9][0-9]*[.][0-9]/{s/^[0-9]*[.][0-9]*[.]\\([0-9]*\\).*/\\1/p;q;}\ni\\\n0\nq\n'\nchangequote([,])\n\n  if test \"$HAVE_LIBUNISTRING\" = yes; then\n    LIBUNISTRING_VERSION_MAJOR=`echo \"$LIBUNISTRING_VERSION\" | sed -n -e \"$gl_libunistring_sed_extract_major\"`\n    LIBUNISTRING_VERSION_MINOR=`echo \"$LIBUNISTRING_VERSION\" | sed -n -e \"$gl_libunistring_sed_extract_minor\"`\n    LIBUNISTRING_VERSION_SUBMINOR=`echo \"$LIBUNISTRING_VERSION\" | sed -n -e \"$gl_libunistring_sed_extract_subminor\"`\n  fi\n])\n\ndnl gl_LIBUNISTRING_VERSION_CMP([VERSION])\ndnl Expands to a shell statement that evaluates to true if LIBUNISTRING_VERSION\ndnl is less than the VERSION argument.\nAC_DEFUN([gl_LIBUNISTRING_VERSION_CMP],\n[ { test \"$HAVE_LIBUNISTRING\" != yes \\\n    || {\n         dnl AS_LITERAL_IF exists and works fine since autoconf-2.59 at least.\n         AS_LITERAL_IF([$1],\n           [dnl This is the optimized variant, that assumes the argument is a literal:\n            m4_pushdef([requested_version_major],\n              [gl_LIBUNISTRING_ARG_OR_ZERO(m4_bpatsubst([$1], [^\\([0-9]*\\).*], [\\1]), [])])\n            m4_pushdef([requested_version_minor],\n              [gl_LIBUNISTRING_ARG_OR_ZERO(m4_bpatsubst([$1], [^[0-9]*[.]\\([0-9]*\\).*], [\\1]), [$1])])\n            m4_pushdef([requested_version_subminor],\n              [gl_LIBUNISTRING_ARG_OR_ZERO(m4_bpatsubst([$1], [^[0-9]*[.][0-9]*[.]\\([0-9]*\\).*], [\\1]), [$1])])\n            test $LIBUNISTRING_VERSION_MAJOR -lt requested_version_major \\\n            || { test $LIBUNISTRING_VERSION_MAJOR -eq requested_version_major \\\n                 && { test $LIBUNISTRING_VERSION_MINOR -lt requested_version_minor \\\n                      || { test $LIBUNISTRING_VERSION_MINOR -eq requested_version_minor \\\n                           && test $LIBUNISTRING_VERSION_SUBMINOR -lt requested_version_subminor\n                         }\n                    }\n               }\n            m4_popdef([requested_version_subminor])\n            m4_popdef([requested_version_minor])\n            m4_popdef([requested_version_major])\n           ],\n           [dnl This is the unoptimized variant:\n            requested_version_major=`echo '$1' | sed -n -e \"$gl_libunistring_sed_extract_major\"`\n            requested_version_minor=`echo '$1' | sed -n -e \"$gl_libunistring_sed_extract_minor\"`\n            requested_version_subminor=`echo '$1' | sed -n -e \"$gl_libunistring_sed_extract_subminor\"`\n            test $LIBUNISTRING_VERSION_MAJOR -lt $requested_version_major \\\n            || { test $LIBUNISTRING_VERSION_MAJOR -eq $requested_version_major \\\n                 && { test $LIBUNISTRING_VERSION_MINOR -lt $requested_version_minor \\\n                      || { test $LIBUNISTRING_VERSION_MINOR -eq $requested_version_minor \\\n                           && test $LIBUNISTRING_VERSION_SUBMINOR -lt $requested_version_subminor\n                         }\n                    }\n               }\n           ])\n       }\n  }])\n\ndnl gl_LIBUNISTRING_ARG_OR_ZERO([ARG], [ORIG]) expands to ARG if it is not the\ndnl same as ORIG, otherwise to 0.\nm4_define([gl_LIBUNISTRING_ARG_OR_ZERO], [m4_if([$1], [$2], [0], [$1])])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/limits-h.m4",
    "content": "dnl Check whether limits.h has needed features.\n\ndnl Copyright 2016-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Paul Eggert.\n\nAC_DEFUN_ONCE([gl_LIMITS_H],\n[\n  gl_CHECK_NEXT_HEADERS([limits.h])\n\n  AC_CACHE_CHECK([whether limits.h has ULLONG_WIDTH etc.],\n    [gl_cv_header_limits_width],\n    [AC_COMPILE_IFELSE(\n       [AC_LANG_PROGRAM([[#ifndef __STDC_WANT_IEC_60559_BFP_EXT__\n                           #define __STDC_WANT_IEC_60559_BFP_EXT__ 1\n                          #endif\n                          #include <limits.h>\n                          int ullw = ULLONG_WIDTH;]])],\n       [gl_cv_header_limits_width=yes],\n       [gl_cv_header_limits_width=no])])\n  if test \"$gl_cv_header_limits_width\" = yes; then\n    LIMITS_H=\n  else\n    LIMITS_H=limits.h\n  fi\n  AC_SUBST([LIMITS_H])\n  AM_CONDITIONAL([GL_GENERATE_LIMITS_H], [test -n \"$LIMITS_H\"])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/lock.m4",
    "content": "# lock.m4 serial 13 (gettext-0.18.2)\ndnl Copyright (C) 2005-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\nAC_DEFUN([gl_LOCK],\n[\n  AC_REQUIRE([gl_THREADLIB])\n  if test \"$gl_threads_api\" = posix; then\n    # OSF/1 4.0 and Mac OS X 10.1 lack the pthread_rwlock_t type and the\n    # pthread_rwlock_* functions.\n    AC_CHECK_TYPE([pthread_rwlock_t],\n      [AC_DEFINE([HAVE_PTHREAD_RWLOCK], [1],\n         [Define if the POSIX multithreading library has read/write locks.])],\n      [],\n      [#include <pthread.h>])\n    # glibc defines PTHREAD_MUTEX_RECURSIVE as enum, not as a macro.\n    AC_COMPILE_IFELSE([\n      AC_LANG_PROGRAM(\n        [[#include <pthread.h>]],\n        [[\n#if __FreeBSD__ == 4\nerror \"No, in FreeBSD 4.0 recursive mutexes actually don't work.\"\n#elif (defined __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ \\\n       && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1070)\nerror \"No, in Mac OS X < 10.7 recursive mutexes actually don't work.\"\n#else\nint x = (int)PTHREAD_MUTEX_RECURSIVE;\nreturn !x;\n#endif\n        ]])],\n      [AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE], [1],\n         [Define if the <pthread.h> defines PTHREAD_MUTEX_RECURSIVE.])])\n  fi\n  gl_PREREQ_LOCK\n])\n\n# Prerequisites of lib/glthread/lock.c.\nAC_DEFUN([gl_PREREQ_LOCK], [:])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/longlong.m4",
    "content": "# longlong.m4 serial 17\ndnl Copyright (C) 1999-2007, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Paul Eggert.\n\n# Define HAVE_LONG_LONG_INT if 'long long int' works.\n# This fixes a bug in Autoconf 2.61, and can be faster\n# than what's in Autoconf 2.62 through 2.68.\n\n# Note: If the type 'long long int' exists but is only 32 bits large\n# (as on some very old compilers), HAVE_LONG_LONG_INT will not be\n# defined. In this case you can treat 'long long int' like 'long int'.\n\nAC_DEFUN([AC_TYPE_LONG_LONG_INT],\n[\n  AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])\n  AC_CACHE_CHECK([for long long int], [ac_cv_type_long_long_int],\n     [ac_cv_type_long_long_int=yes\n      if test \"x${ac_cv_prog_cc_c99-no}\" = xno; then\n        ac_cv_type_long_long_int=$ac_cv_type_unsigned_long_long_int\n        if test $ac_cv_type_long_long_int = yes; then\n          dnl Catch a bug in Tandem NonStop Kernel (OSS) cc -O circa 2004.\n          dnl If cross compiling, assume the bug is not important, since\n          dnl nobody cross compiles for this platform as far as we know.\n          AC_RUN_IFELSE(\n            [AC_LANG_PROGRAM(\n               [[@%:@include <limits.h>\n                 @%:@ifndef LLONG_MAX\n                 @%:@ define HALF \\\n                          (1LL << (sizeof (long long int) * CHAR_BIT - 2))\n                 @%:@ define LLONG_MAX (HALF - 1 + HALF)\n                 @%:@endif]],\n               [[long long int n = 1;\n                 int i;\n                 for (i = 0; ; i++)\n                   {\n                     long long int m = n << i;\n                     if (m >> i != n)\n                       return 1;\n                     if (LLONG_MAX / 2 < m)\n                       break;\n                   }\n                 return 0;]])],\n            [],\n            [ac_cv_type_long_long_int=no],\n            [:])\n        fi\n      fi])\n  if test $ac_cv_type_long_long_int = yes; then\n    AC_DEFINE([HAVE_LONG_LONG_INT], [1],\n      [Define to 1 if the system has the type 'long long int'.])\n  fi\n])\n\n# Define HAVE_UNSIGNED_LONG_LONG_INT if 'unsigned long long int' works.\n# This fixes a bug in Autoconf 2.61, and can be faster\n# than what's in Autoconf 2.62 through 2.68.\n\n# Note: If the type 'unsigned long long int' exists but is only 32 bits\n# large (as on some very old compilers), AC_TYPE_UNSIGNED_LONG_LONG_INT\n# will not be defined. In this case you can treat 'unsigned long long int'\n# like 'unsigned long int'.\n\nAC_DEFUN([AC_TYPE_UNSIGNED_LONG_LONG_INT],\n[\n  AC_CACHE_CHECK([for unsigned long long int],\n    [ac_cv_type_unsigned_long_long_int],\n    [ac_cv_type_unsigned_long_long_int=yes\n     if test \"x${ac_cv_prog_cc_c99-no}\" = xno; then\n       AC_LINK_IFELSE(\n         [_AC_TYPE_LONG_LONG_SNIPPET],\n         [],\n         [ac_cv_type_unsigned_long_long_int=no])\n     fi])\n  if test $ac_cv_type_unsigned_long_long_int = yes; then\n    AC_DEFINE([HAVE_UNSIGNED_LONG_LONG_INT], [1],\n      [Define to 1 if the system has the type 'unsigned long long int'.])\n  fi\n])\n\n# Expands to a C program that can be used to test for simultaneous support\n# of 'long long' and 'unsigned long long'. We don't want to say that\n# 'long long' is available if 'unsigned long long' is not, or vice versa,\n# because too many programs rely on the symmetry between signed and unsigned\n# integer types (excluding 'bool').\nAC_DEFUN([_AC_TYPE_LONG_LONG_SNIPPET],\n[\n  AC_LANG_PROGRAM(\n    [[/* For now, do not test the preprocessor; as of 2007 there are too many\n         implementations with broken preprocessors.  Perhaps this can\n         be revisited in 2012.  In the meantime, code should not expect\n         #if to work with literals wider than 32 bits.  */\n      /* Test literals.  */\n      long long int ll = 9223372036854775807ll;\n      long long int nll = -9223372036854775807LL;\n      unsigned long long int ull = 18446744073709551615ULL;\n      /* Test constant expressions.   */\n      typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll)\n                     ? 1 : -1)];\n      typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1\n                     ? 1 : -1)];\n      int i = 63;]],\n    [[/* Test availability of runtime routines for shift and division.  */\n      long long int llmax = 9223372036854775807ll;\n      unsigned long long int ullmax = 18446744073709551615ull;\n      return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i)\n              | (llmax / ll) | (llmax % ll)\n              | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i)\n              | (ullmax / ull) | (ullmax % ull));]])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/lstat.m4",
    "content": "# serial 27\n\n# Copyright (C) 1997-2001, 2003-2017 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\ndnl From Jim Meyering.\n\nAC_DEFUN([gl_FUNC_LSTAT],\n[\n  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])\n  dnl If lstat does not exist, the replacement <sys/stat.h> does\n  dnl \"#define lstat stat\", and lstat.c is a no-op.\n  AC_CHECK_FUNCS_ONCE([lstat])\n  if test $ac_cv_func_lstat = yes; then\n    AC_REQUIRE([gl_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK])\n    case \"$gl_cv_func_lstat_dereferences_slashed_symlink\" in\n      *no)\n        REPLACE_LSTAT=1\n        ;;\n    esac\n  else\n    HAVE_LSTAT=0\n  fi\n])\n\n# Prerequisites of lib/lstat.c.\nAC_DEFUN([gl_PREREQ_LSTAT], [:])\n\nAC_DEFUN([gl_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK],\n[\n  dnl We don't use AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK any more, because it\n  dnl is no longer maintained in Autoconf and because it invokes AC_LIBOBJ.\n  AC_CACHE_CHECK([whether lstat correctly handles trailing slash],\n    [gl_cv_func_lstat_dereferences_slashed_symlink],\n    [rm -f conftest.sym conftest.file\n     echo >conftest.file\n     AC_RUN_IFELSE(\n       [AC_LANG_PROGRAM(\n          [AC_INCLUDES_DEFAULT],\n          [[struct stat sbuf;\n            if (symlink (\"conftest.file\", \"conftest.sym\") != 0)\n              return 1;\n            /* Linux will dereference the symlink and fail, as required by\n               POSIX.  That is better in the sense that it means we will not\n               have to compile and use the lstat wrapper.  */\n            return lstat (\"conftest.sym/\", &sbuf) == 0;\n          ]])],\n       [gl_cv_func_lstat_dereferences_slashed_symlink=yes],\n       [gl_cv_func_lstat_dereferences_slashed_symlink=no],\n       [case \"$host_os\" in\n          *-gnu*)\n            # Guess yes on glibc systems.\n            gl_cv_func_lstat_dereferences_slashed_symlink=\"guessing yes\" ;;\n          *)\n            # If we don't know, assume the worst.\n            gl_cv_func_lstat_dereferences_slashed_symlink=\"guessing no\" ;;\n        esac\n       ])\n     rm -f conftest.sym conftest.file\n    ])\n  case \"$gl_cv_func_lstat_dereferences_slashed_symlink\" in\n    *yes)\n      AC_DEFINE_UNQUOTED([LSTAT_FOLLOWS_SLASHED_SYMLINK], [1],\n        [Define to 1 if 'lstat' dereferences a symlink specified\n         with a trailing slash.])\n      ;;\n  esac\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/malloc.m4",
    "content": "# malloc.m4 serial 15\ndnl Copyright (C) 2007, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nm4_version_prereq([2.70], [] ,[\n\n# This is adapted with modifications from upstream Autoconf here:\n# http://git.savannah.gnu.org/cgit/autoconf.git/commit/?id=04be2b7a29d65d9a08e64e8e56e594c91749598c\nAC_DEFUN([_AC_FUNC_MALLOC_IF],\n[\n  AC_REQUIRE([AC_HEADER_STDC])dnl\n  AC_REQUIRE([AC_CANONICAL_HOST])dnl for cross-compiles\n  AC_CHECK_HEADERS([stdlib.h])\n  AC_CACHE_CHECK([for GNU libc compatible malloc],\n    [ac_cv_func_malloc_0_nonnull],\n    [AC_RUN_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#if defined STDC_HEADERS || defined HAVE_STDLIB_H\n            # include <stdlib.h>\n            #else\n            char *malloc ();\n            #endif\n          ]],\n          [[char *p = malloc (0);\n            int result = !p;\n            free (p);\n            return result;]])\n       ],\n       [ac_cv_func_malloc_0_nonnull=yes],\n       [ac_cv_func_malloc_0_nonnull=no],\n       [case \"$host_os\" in\n          # Guess yes on platforms where we know the result.\n          *-gnu* | freebsd* | netbsd* | openbsd* \\\n          | hpux* | solaris* | cygwin* | mingw*)\n            ac_cv_func_malloc_0_nonnull=yes ;;\n          # If we don't know, assume the worst.\n          *) ac_cv_func_malloc_0_nonnull=no ;;\n        esac\n       ])\n    ])\n  AS_IF([test $ac_cv_func_malloc_0_nonnull = yes], [$1], [$2])\n])# _AC_FUNC_MALLOC_IF\n\n])\n\n# gl_FUNC_MALLOC_GNU\n# ------------------\n# Test whether 'malloc (0)' is handled like in GNU libc, and replace malloc if\n# it is not.\nAC_DEFUN([gl_FUNC_MALLOC_GNU],\n[\n  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])\n  dnl _AC_FUNC_MALLOC_IF is defined in Autoconf.\n  _AC_FUNC_MALLOC_IF(\n    [AC_DEFINE([HAVE_MALLOC_GNU], [1],\n               [Define to 1 if your system has a GNU libc compatible 'malloc'\n                function, and to 0 otherwise.])],\n    [AC_DEFINE([HAVE_MALLOC_GNU], [0])\n     REPLACE_MALLOC=1\n    ])\n])\n\n# gl_FUNC_MALLOC_POSIX\n# --------------------\n# Test whether 'malloc' is POSIX compliant (sets errno to ENOMEM when it\n# fails), and replace malloc if it is not.\nAC_DEFUN([gl_FUNC_MALLOC_POSIX],\n[\n  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])\n  AC_REQUIRE([gl_CHECK_MALLOC_POSIX])\n  if test $gl_cv_func_malloc_posix = yes; then\n    AC_DEFINE([HAVE_MALLOC_POSIX], [1],\n      [Define if the 'malloc' function is POSIX compliant.])\n  else\n    REPLACE_MALLOC=1\n  fi\n])\n\n# Test whether malloc, realloc, calloc are POSIX compliant,\n# Set gl_cv_func_malloc_posix to yes or no accordingly.\nAC_DEFUN([gl_CHECK_MALLOC_POSIX],\n[\n  AC_CACHE_CHECK([whether malloc, realloc, calloc are POSIX compliant],\n    [gl_cv_func_malloc_posix],\n    [\n      dnl It is too dangerous to try to allocate a large amount of memory:\n      dnl some systems go to their knees when you do that. So assume that\n      dnl all Unix implementations of the function are POSIX compliant.\n      AC_COMPILE_IFELSE(\n        [AC_LANG_PROGRAM(\n           [[]],\n           [[#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n             choke me\n             #endif\n            ]])],\n        [gl_cv_func_malloc_posix=yes],\n        [gl_cv_func_malloc_posix=no])\n    ])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/malloca.m4",
    "content": "# malloca.m4 serial 1\ndnl Copyright (C) 2003-2004, 2006-2007, 2009-2017 Free Software Foundation,\ndnl Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_MALLOCA],\n[\n  dnl Use the autoconf tests for alloca(), but not the AC_SUBSTed variables\n  dnl @ALLOCA@ and @LTALLOCA@.\n  dnl gl_FUNC_ALLOCA   dnl Already brought in by the module dependencies.\n  AC_REQUIRE([gl_EEMALLOC])\n  AC_REQUIRE([AC_TYPE_LONG_LONG_INT])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/mbstate_t.m4",
    "content": "# mbstate_t.m4 serial 13\ndnl Copyright (C) 2000-2002, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\n# From Paul Eggert.\n\n# BeOS 5 has <wchar.h> but does not define mbstate_t,\n# so you can't declare an object of that type.\n# Check for this incompatibility with Standard C.\n\n# AC_TYPE_MBSTATE_T\n# -----------------\nAC_DEFUN([AC_TYPE_MBSTATE_T],\n[\n   AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) dnl for HP-UX 11.11\n\n   AC_CACHE_CHECK([for mbstate_t], [ac_cv_type_mbstate_t],\n     [AC_COMPILE_IFELSE(\n        [AC_LANG_PROGRAM(\n           [AC_INCLUDES_DEFAULT[\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n   included before <wchar.h>.  */\n#include <stddef.h>\n#include <stdio.h>\n#include <time.h>\n#include <wchar.h>]],\n           [[mbstate_t x; return sizeof x;]])],\n        [ac_cv_type_mbstate_t=yes],\n        [ac_cv_type_mbstate_t=no])])\n   if test $ac_cv_type_mbstate_t = yes; then\n     AC_DEFINE([HAVE_MBSTATE_T], [1],\n               [Define to 1 if <wchar.h> declares mbstate_t.])\n   else\n     AC_DEFINE([mbstate_t], [int],\n               [Define to a type if <wchar.h> does not define.])\n   fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/msvc-inval.m4",
    "content": "# msvc-inval.m4 serial 1\ndnl Copyright (C) 2011-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_MSVC_INVAL],\n[\n  AC_CHECK_FUNCS_ONCE([_set_invalid_parameter_handler])\n  if test $ac_cv_func__set_invalid_parameter_handler = yes; then\n    HAVE_MSVC_INVALID_PARAMETER_HANDLER=1\n    AC_DEFINE([HAVE_MSVC_INVALID_PARAMETER_HANDLER], [1],\n      [Define to 1 on MSVC platforms that have the \"invalid parameter handler\"\n       concept.])\n  else\n    HAVE_MSVC_INVALID_PARAMETER_HANDLER=0\n  fi\n  AC_SUBST([HAVE_MSVC_INVALID_PARAMETER_HANDLER])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/msvc-nothrow.m4",
    "content": "# msvc-nothrow.m4 serial 1\ndnl Copyright (C) 2011-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_MSVC_NOTHROW],\n[\n  AC_REQUIRE([gl_MSVC_INVAL])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/multiarch.m4",
    "content": "# multiarch.m4 serial 7\ndnl Copyright (C) 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\n# Determine whether the compiler is or may be producing universal binaries.\n#\n# On Mac OS X 10.5 and later systems, the user can create libraries and\n# executables that work on multiple system types--known as \"fat\" or\n# \"universal\" binaries--by specifying multiple '-arch' options to the\n# compiler but only a single '-arch' option to the preprocessor.  Like\n# this:\n#\n#     ./configure CC=\"gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64\" \\\n#                 CXX=\"g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64\" \\\n#                 CPP=\"gcc -E\" CXXCPP=\"g++ -E\"\n#\n# Detect this situation and set APPLE_UNIVERSAL_BUILD accordingly.\n\nAC_DEFUN_ONCE([gl_MULTIARCH],\n[\n  dnl Code similar to autoconf-2.63 AC_C_BIGENDIAN.\n  gl_cv_c_multiarch=no\n  AC_COMPILE_IFELSE(\n    [AC_LANG_SOURCE(\n      [[#ifndef __APPLE_CC__\n         not a universal capable compiler\n        #endif\n        typedef int dummy;\n      ]])],\n    [\n     dnl Check for potential -arch flags.  It is not universal unless\n     dnl there are at least two -arch flags with different values.\n     arch=\n     prev=\n     for word in ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}; do\n       if test -n \"$prev\"; then\n         case $word in\n           i?86 | x86_64 | ppc | ppc64)\n             if test -z \"$arch\" || test \"$arch\" = \"$word\"; then\n               arch=\"$word\"\n             else\n               gl_cv_c_multiarch=yes\n             fi\n             ;;\n         esac\n         prev=\n       else\n         if test \"x$word\" = \"x-arch\"; then\n           prev=arch\n         fi\n       fi\n     done\n    ])\n  if test $gl_cv_c_multiarch = yes; then\n    APPLE_UNIVERSAL_BUILD=1\n  else\n    APPLE_UNIVERSAL_BUILD=0\n  fi\n  AC_SUBST([APPLE_UNIVERSAL_BUILD])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/nls.m4",
    "content": "# nls.m4 serial 5 (gettext-0.18)\ndnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016-2017 Free Software\ndnl Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\ndnl\ndnl This file can be used in projects which are not available under\ndnl the GNU General Public License or the GNU Library General Public\ndnl License but which still want to provide support for the GNU gettext\ndnl functionality.\ndnl Please note that the actual code of the GNU gettext library is covered\ndnl by the GNU Library General Public License, and the rest of the GNU\ndnl gettext package is covered by the GNU General Public License.\ndnl They are *not* in the public domain.\n\ndnl Authors:\ndnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.\ndnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.\n\nAC_PREREQ([2.50])\n\nAC_DEFUN([AM_NLS],\n[\n  AC_MSG_CHECKING([whether NLS is requested])\n  dnl Default is enabled NLS\n  AC_ARG_ENABLE([nls],\n    [  --disable-nls           do not use Native Language Support],\n    USE_NLS=$enableval, USE_NLS=yes)\n  AC_MSG_RESULT([$USE_NLS])\n  AC_SUBST([USE_NLS])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/nocrash.m4",
    "content": "# nocrash.m4 serial 4\ndnl Copyright (C) 2005, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl Based on libsigsegv, from Bruno Haible and Paolo Bonzini.\n\nAC_PREREQ([2.13])\n\ndnl Expands to some code for use in .c programs that will cause the configure\ndnl test to exit instead of crashing. This is useful to avoid triggering\ndnl action from a background debugger and to avoid core dumps.\ndnl Usage:   ...\ndnl          ]GL_NOCRASH[\ndnl          ...\ndnl          int main() { nocrash_init(); ... }\nAC_DEFUN([GL_NOCRASH],[[\n#include <stdlib.h>\n#if defined __MACH__ && defined __APPLE__\n/* Avoid a crash on Mac OS X.  */\n#include <mach/mach.h>\n#include <mach/mach_error.h>\n#include <mach/thread_status.h>\n#include <mach/exception.h>\n#include <mach/task.h>\n#include <pthread.h>\n/* The exception port on which our thread listens.  */\nstatic mach_port_t our_exception_port;\n/* The main function of the thread listening for exceptions of type\n   EXC_BAD_ACCESS.  */\nstatic void *\nmach_exception_thread (void *arg)\n{\n  /* Buffer for a message to be received.  */\n  struct {\n    mach_msg_header_t head;\n    mach_msg_body_t msgh_body;\n    char data[1024];\n  } msg;\n  mach_msg_return_t retval;\n  /* Wait for a message on the exception port.  */\n  retval = mach_msg (&msg.head, MACH_RCV_MSG | MACH_RCV_LARGE, 0, sizeof (msg),\n                     our_exception_port, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);\n  if (retval != MACH_MSG_SUCCESS)\n    abort ();\n  exit (1);\n}\nstatic void\nnocrash_init (void)\n{\n  mach_port_t self = mach_task_self ();\n  /* Allocate a port on which the thread shall listen for exceptions.  */\n  if (mach_port_allocate (self, MACH_PORT_RIGHT_RECEIVE, &our_exception_port)\n      == KERN_SUCCESS) {\n    /* See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/mach_port_insert_right.html.  */\n    if (mach_port_insert_right (self, our_exception_port, our_exception_port,\n                                MACH_MSG_TYPE_MAKE_SEND)\n        == KERN_SUCCESS) {\n      /* The exceptions we want to catch.  Only EXC_BAD_ACCESS is interesting\n         for us.  */\n      exception_mask_t mask = EXC_MASK_BAD_ACCESS;\n      /* Create the thread listening on the exception port.  */\n      pthread_attr_t attr;\n      pthread_t thread;\n      if (pthread_attr_init (&attr) == 0\n          && pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED) == 0\n          && pthread_create (&thread, &attr, mach_exception_thread, NULL) == 0) {\n        pthread_attr_destroy (&attr);\n        /* Replace the exception port info for these exceptions with our own.\n           Note that we replace the exception port for the entire task, not only\n           for a particular thread.  This has the effect that when our exception\n           port gets the message, the thread specific exception port has already\n           been asked, and we don't need to bother about it.\n           See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/task_set_exception_ports.html.  */\n        task_set_exception_ports (self, mask, our_exception_port,\n                                  EXCEPTION_DEFAULT, MACHINE_THREAD_STATE);\n      }\n    }\n  }\n}\n#elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n/* Avoid a crash on native Windows.  */\n#define WIN32_LEAN_AND_MEAN\n#include <windows.h>\n#include <winerror.h>\nstatic LONG WINAPI\nexception_filter (EXCEPTION_POINTERS *ExceptionInfo)\n{\n  switch (ExceptionInfo->ExceptionRecord->ExceptionCode)\n    {\n    case EXCEPTION_ACCESS_VIOLATION:\n    case EXCEPTION_IN_PAGE_ERROR:\n    case EXCEPTION_STACK_OVERFLOW:\n    case EXCEPTION_GUARD_PAGE:\n    case EXCEPTION_PRIV_INSTRUCTION:\n    case EXCEPTION_ILLEGAL_INSTRUCTION:\n    case EXCEPTION_DATATYPE_MISALIGNMENT:\n    case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:\n    case EXCEPTION_NONCONTINUABLE_EXCEPTION:\n      exit (1);\n    }\n  return EXCEPTION_CONTINUE_SEARCH;\n}\nstatic void\nnocrash_init (void)\n{\n  SetUnhandledExceptionFilter ((LPTOP_LEVEL_EXCEPTION_FILTER) exception_filter);\n}\n#else\n/* Avoid a crash on POSIX systems.  */\n#include <signal.h>\n#include <unistd.h>\n/* A POSIX signal handler.  */\nstatic void\nexception_handler (int sig)\n{\n  _exit (1);\n}\nstatic void\nnocrash_init (void)\n{\n#ifdef SIGSEGV\n  signal (SIGSEGV, exception_handler);\n#endif\n#ifdef SIGBUS\n  signal (SIGBUS, exception_handler);\n#endif\n}\n#endif\n]])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/off_t.m4",
    "content": "# off_t.m4 serial 1\ndnl Copyright (C) 2012-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl Check whether to override the 'off_t' type.\ndnl Set WINDOWS_64_BIT_OFF_T.\n\nAC_DEFUN([gl_TYPE_OFF_T],\n[\n  m4_ifdef([gl_LARGEFILE], [\n    AC_REQUIRE([gl_LARGEFILE])\n  ], [\n    WINDOWS_64_BIT_OFF_T=0\n  ])\n  AC_SUBST([WINDOWS_64_BIT_OFF_T])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/pathmax.m4",
    "content": "# pathmax.m4 serial 10\ndnl Copyright (C) 2002-2003, 2005-2006, 2009-2017 Free Software Foundation,\ndnl Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_PATHMAX],\n[\n  dnl Prerequisites of lib/pathmax.h.\n  AC_CHECK_HEADERS_ONCE([sys/param.h])\n])\n\n# Expands to a piece of C program that defines PATH_MAX in the same way as\n# \"pathmax.h\" will do.\nAC_DEFUN([gl_PATHMAX_SNIPPET], [[\n/* Arrange to define PATH_MAX, like \"pathmax.h\" does. */\n#if HAVE_UNISTD_H\n# include <unistd.h>\n#endif\n#include <limits.h>\n#if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN\n# include <sys/param.h>\n#endif\n#if !defined PATH_MAX && defined MAXPATHLEN\n# define PATH_MAX MAXPATHLEN\n#endif\n#ifdef __hpux\n# undef PATH_MAX\n# define PATH_MAX 1024\n#endif\n#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n# undef PATH_MAX\n# define PATH_MAX 260\n#endif\n]])\n\n# Prerequisites of gl_PATHMAX_SNIPPET.\nAC_DEFUN([gl_PATHMAX_SNIPPET_PREREQ],\n[\n  AC_CHECK_HEADERS_ONCE([unistd.h sys/param.h])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/po.m4",
    "content": "# po.m4 serial 24 (gettext-0.19)\ndnl Copyright (C) 1995-2014, 2016-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\ndnl\ndnl This file can be used in projects which are not available under\ndnl the GNU General Public License or the GNU Library General Public\ndnl License but which still want to provide support for the GNU gettext\ndnl functionality.\ndnl Please note that the actual code of the GNU gettext library is covered\ndnl by the GNU Library General Public License, and the rest of the GNU\ndnl gettext package is covered by the GNU General Public License.\ndnl They are *not* in the public domain.\n\ndnl Authors:\ndnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.\ndnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.\n\nAC_PREREQ([2.60])\n\ndnl Checks for all prerequisites of the po subdirectory.\nAC_DEFUN([AM_PO_SUBDIRS],\n[\n  AC_REQUIRE([AC_PROG_MAKE_SET])dnl\n  AC_REQUIRE([AC_PROG_INSTALL])dnl\n  AC_REQUIRE([AC_PROG_MKDIR_P])dnl\n  AC_REQUIRE([AC_PROG_SED])dnl\n  AC_REQUIRE([AM_NLS])dnl\n\n  dnl Release version of the gettext macros. This is used to ensure that\n  dnl the gettext macros and po/Makefile.in.in are in sync.\n  AC_SUBST([GETTEXT_MACRO_VERSION], [0.19])\n\n  dnl Perform the following tests also if --disable-nls has been given,\n  dnl because they are needed for \"make dist\" to work.\n\n  dnl Search for GNU msgfmt in the PATH.\n  dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions.\n  dnl The second test excludes FreeBSD msgfmt.\n  AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,\n    [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 &&\n     (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)],\n    :)\n  AC_PATH_PROG([GMSGFMT], [gmsgfmt], [$MSGFMT])\n\n  dnl Test whether it is GNU msgfmt >= 0.15.\nchangequote(,)dnl\n  case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in\n    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;;\n    *) MSGFMT_015=$MSGFMT ;;\n  esac\nchangequote([,])dnl\n  AC_SUBST([MSGFMT_015])\nchangequote(,)dnl\n  case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in\n    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;;\n    *) GMSGFMT_015=$GMSGFMT ;;\n  esac\nchangequote([,])dnl\n  AC_SUBST([GMSGFMT_015])\n\n  dnl Search for GNU xgettext 0.12 or newer in the PATH.\n  dnl The first test excludes Solaris xgettext and early GNU xgettext versions.\n  dnl The second test excludes FreeBSD xgettext.\n  AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,\n    [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 &&\n     (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)],\n    :)\n  dnl Remove leftover from FreeBSD xgettext call.\n  rm -f messages.po\n\n  dnl Test whether it is GNU xgettext >= 0.15.\nchangequote(,)dnl\n  case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in\n    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;;\n    *) XGETTEXT_015=$XGETTEXT ;;\n  esac\nchangequote([,])dnl\n  AC_SUBST([XGETTEXT_015])\n\n  dnl Search for GNU msgmerge 0.11 or newer in the PATH.\n  AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge,\n    [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :)\n\n  dnl Installation directories.\n  dnl Autoconf >= 2.60 defines localedir. For older versions of autoconf, we\n  dnl have to define it here, so that it can be used in po/Makefile.\n  test -n \"$localedir\" || localedir='${datadir}/locale'\n  AC_SUBST([localedir])\n\n  dnl Support for AM_XGETTEXT_OPTION.\n  test -n \"${XGETTEXT_EXTRA_OPTIONS+set}\" || XGETTEXT_EXTRA_OPTIONS=\n  AC_SUBST([XGETTEXT_EXTRA_OPTIONS])\n\n  AC_CONFIG_COMMANDS([po-directories], [[\n    for ac_file in $CONFIG_FILES; do\n      # Support \"outfile[:infile[:infile...]]\"\n      case \"$ac_file\" in\n        *:*) ac_file=`echo \"$ac_file\"|sed 's%:.*%%'` ;;\n      esac\n      # PO directories have a Makefile.in generated from Makefile.in.in.\n      case \"$ac_file\" in */Makefile.in)\n        # Adjust a relative srcdir.\n        ac_dir=`echo \"$ac_file\"|sed 's%/[^/][^/]*$%%'`\n        ac_dir_suffix=/`echo \"$ac_dir\"|sed 's%^\\./%%'`\n        ac_dots=`echo \"$ac_dir_suffix\"|sed 's%/[^/]*%../%g'`\n        # In autoconf-2.13 it is called $ac_given_srcdir.\n        # In autoconf-2.50 it is called $srcdir.\n        test -n \"$ac_given_srcdir\" || ac_given_srcdir=\"$srcdir\"\n        case \"$ac_given_srcdir\" in\n          .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;\n          /*) top_srcdir=\"$ac_given_srcdir\" ;;\n          *)  top_srcdir=\"$ac_dots$ac_given_srcdir\" ;;\n        esac\n        # Treat a directory as a PO directory if and only if it has a\n        # POTFILES.in file. This allows packages to have multiple PO\n        # directories under different names or in different locations.\n        if test -f \"$ac_given_srcdir/$ac_dir/POTFILES.in\"; then\n          rm -f \"$ac_dir/POTFILES\"\n          test -n \"$as_me\" && echo \"$as_me: creating $ac_dir/POTFILES\" || echo \"creating $ac_dir/POTFILES\"\n          gt_tab=`printf '\\t'`\n          cat \"$ac_given_srcdir/$ac_dir/POTFILES.in\" | sed -e \"/^#/d\" -e \"/^[ ${gt_tab}]*\\$/d\" -e \"s,.*,     $top_srcdir/& \\\\\\\\,\" | sed -e \"\\$s/\\(.*\\) \\\\\\\\/\\1/\" > \"$ac_dir/POTFILES\"\n          POMAKEFILEDEPS=\"POTFILES.in\"\n          # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend\n          # on $ac_dir but don't depend on user-specified configuration\n          # parameters.\n          if test -f \"$ac_given_srcdir/$ac_dir/LINGUAS\"; then\n            # The LINGUAS file contains the set of available languages.\n            if test -n \"$OBSOLETE_ALL_LINGUAS\"; then\n              test -n \"$as_me\" && echo \"$as_me: setting ALL_LINGUAS in configure.in is obsolete\" || echo \"setting ALL_LINGUAS in configure.in is obsolete\"\n            fi\n            ALL_LINGUAS_=`sed -e \"/^#/d\" -e \"s/#.*//\" \"$ac_given_srcdir/$ac_dir/LINGUAS\"`\n            # Hide the ALL_LINGUAS assignment from automake < 1.5.\n            eval 'ALL_LINGUAS''=$ALL_LINGUAS_'\n            POMAKEFILEDEPS=\"$POMAKEFILEDEPS LINGUAS\"\n          else\n            # The set of available languages was given in configure.in.\n            # Hide the ALL_LINGUAS assignment from automake < 1.5.\n            eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'\n          fi\n          # Compute POFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)\n          # Compute UPDATEPOFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)\n          # Compute DUMMYPOFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).nop)\n          # Compute GMOFILES\n          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)\n          case \"$ac_given_srcdir\" in\n            .) srcdirpre= ;;\n            *) srcdirpre='$(srcdir)/' ;;\n          esac\n          POFILES=\n          UPDATEPOFILES=\n          DUMMYPOFILES=\n          GMOFILES=\n          for lang in $ALL_LINGUAS; do\n            POFILES=\"$POFILES $srcdirpre$lang.po\"\n            UPDATEPOFILES=\"$UPDATEPOFILES $lang.po-update\"\n            DUMMYPOFILES=\"$DUMMYPOFILES $lang.nop\"\n            GMOFILES=\"$GMOFILES $srcdirpre$lang.gmo\"\n          done\n          # CATALOGS depends on both $ac_dir and the user's LINGUAS\n          # environment variable.\n          INST_LINGUAS=\n          if test -n \"$ALL_LINGUAS\"; then\n            for presentlang in $ALL_LINGUAS; do\n              useit=no\n              if test \"%UNSET%\" != \"$LINGUAS\"; then\n                desiredlanguages=\"$LINGUAS\"\n              else\n                desiredlanguages=\"$ALL_LINGUAS\"\n              fi\n              for desiredlang in $desiredlanguages; do\n                # Use the presentlang catalog if desiredlang is\n                #   a. equal to presentlang, or\n                #   b. a variant of presentlang (because in this case,\n                #      presentlang can be used as a fallback for messages\n                #      which are not translated in the desiredlang catalog).\n                case \"$desiredlang\" in\n                  \"$presentlang\"*) useit=yes;;\n                esac\n              done\n              if test $useit = yes; then\n                INST_LINGUAS=\"$INST_LINGUAS $presentlang\"\n              fi\n            done\n          fi\n          CATALOGS=\n          if test -n \"$INST_LINGUAS\"; then\n            for lang in $INST_LINGUAS; do\n              CATALOGS=\"$CATALOGS $lang.gmo\"\n            done\n          fi\n          test -n \"$as_me\" && echo \"$as_me: creating $ac_dir/Makefile\" || echo \"creating $ac_dir/Makefile\"\n          sed -e \"/^POTFILES =/r $ac_dir/POTFILES\" -e \"/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars\" -e \"s|@POFILES@|$POFILES|g\" -e \"s|@UPDATEPOFILES@|$UPDATEPOFILES|g\" -e \"s|@DUMMYPOFILES@|$DUMMYPOFILES|g\" -e \"s|@GMOFILES@|$GMOFILES|g\" -e \"s|@CATALOGS@|$CATALOGS|g\" -e \"s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g\" \"$ac_dir/Makefile.in\" > \"$ac_dir/Makefile\"\n          for f in \"$ac_given_srcdir/$ac_dir\"/Rules-*; do\n            if test -f \"$f\"; then\n              case \"$f\" in\n                *.orig | *.bak | *~) ;;\n                *) cat \"$f\" >> \"$ac_dir/Makefile\" ;;\n              esac\n            fi\n          done\n        fi\n        ;;\n      esac\n    done]],\n   [# Capture the value of obsolete ALL_LINGUAS because we need it to compute\n    # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it\n    # from automake < 1.5.\n    eval 'OBSOLETE_ALL_LINGUAS''=\"$ALL_LINGUAS\"'\n    # Capture the value of LINGUAS because we need it to compute CATALOGS.\n    LINGUAS=\"${LINGUAS-%UNSET%}\"\n   ])\n])\n\ndnl Postprocesses a Makefile in a directory containing PO files.\nAC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE],\n[\n  # When this code is run, in config.status, two variables have already been\n  # set:\n  # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in,\n  # - LINGUAS is the value of the environment variable LINGUAS at configure\n  #   time.\n\nchangequote(,)dnl\n  # Adjust a relative srcdir.\n  ac_dir=`echo \"$ac_file\"|sed 's%/[^/][^/]*$%%'`\n  ac_dir_suffix=/`echo \"$ac_dir\"|sed 's%^\\./%%'`\n  ac_dots=`echo \"$ac_dir_suffix\"|sed 's%/[^/]*%../%g'`\n  # In autoconf-2.13 it is called $ac_given_srcdir.\n  # In autoconf-2.50 it is called $srcdir.\n  test -n \"$ac_given_srcdir\" || ac_given_srcdir=\"$srcdir\"\n  case \"$ac_given_srcdir\" in\n    .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;\n    /*) top_srcdir=\"$ac_given_srcdir\" ;;\n    *)  top_srcdir=\"$ac_dots$ac_given_srcdir\" ;;\n  esac\n\n  # Find a way to echo strings without interpreting backslash.\n  if test \"X`(echo '\\t') 2>/dev/null`\" = 'X\\t'; then\n    gt_echo='echo'\n  else\n    if test \"X`(printf '%s\\n' '\\t') 2>/dev/null`\" = 'X\\t'; then\n      gt_echo='printf %s\\n'\n    else\n      echo_func () {\n        cat <<EOT\n$*\nEOT\n      }\n      gt_echo='echo_func'\n    fi\n  fi\n\n  # A sed script that extracts the value of VARIABLE from a Makefile.\n  tab=`printf '\\t'`\n  sed_x_variable='\n# Test if the hold space is empty.\nx\ns/P/P/\nx\nta\n# Yes it was empty. Look if we have the expected variable definition.\n/^['\"${tab}\"' ]*VARIABLE['\"${tab}\"' ]*=/{\n  # Seen the first line of the variable definition.\n  s/^['\"${tab}\"' ]*VARIABLE['\"${tab}\"' ]*=//\n  ba\n}\nbd\n:a\n# Here we are processing a line from the variable definition.\n# Remove comment, more precisely replace it with a space.\ns/#.*$/ /\n# See if the line ends in a backslash.\ntb\n:b\ns/\\\\$//\n# Print the line, without the trailing backslash.\np\ntc\n# There was no trailing backslash. The end of the variable definition is\n# reached. Clear the hold space.\ns/^.*$//\nx\nbd\n:c\n# A trailing backslash means that the variable definition continues in the\n# next line. Put a nonempty string into the hold space to indicate this.\ns/^.*$/P/\nx\n:d\n'\nchangequote([,])dnl\n\n  # Set POTFILES to the value of the Makefile variable POTFILES.\n  sed_x_POTFILES=`$gt_echo \"$sed_x_variable\" | sed -e '/^ *#/d' -e 's/VARIABLE/POTFILES/g'`\n  POTFILES=`sed -n -e \"$sed_x_POTFILES\" < \"$ac_file\"`\n  # Compute POTFILES_DEPS as\n  #   $(foreach file, $(POTFILES), $(top_srcdir)/$(file))\n  POTFILES_DEPS=\n  for file in $POTFILES; do\n    POTFILES_DEPS=\"$POTFILES_DEPS \"'$(top_srcdir)/'\"$file\"\n  done\n  POMAKEFILEDEPS=\"\"\n\n  if test -n \"$OBSOLETE_ALL_LINGUAS\"; then\n    test -n \"$as_me\" && echo \"$as_me: setting ALL_LINGUAS in configure.in is obsolete\" || echo \"setting ALL_LINGUAS in configure.in is obsolete\"\n  fi\n  if test -f \"$ac_given_srcdir/$ac_dir/LINGUAS\"; then\n    # The LINGUAS file contains the set of available languages.\n    ALL_LINGUAS_=`sed -e \"/^#/d\" -e \"s/#.*//\" \"$ac_given_srcdir/$ac_dir/LINGUAS\"`\n    POMAKEFILEDEPS=\"$POMAKEFILEDEPS LINGUAS\"\n  else\n    # Set ALL_LINGUAS to the value of the Makefile variable LINGUAS.\n    sed_x_LINGUAS=`$gt_echo \"$sed_x_variable\" | sed -e '/^ *#/d' -e 's/VARIABLE/LINGUAS/g'`\n    ALL_LINGUAS_=`sed -n -e \"$sed_x_LINGUAS\" < \"$ac_file\"`\n  fi\n  # Hide the ALL_LINGUAS assignment from automake < 1.5.\n  eval 'ALL_LINGUAS''=$ALL_LINGUAS_'\n  # Compute POFILES\n  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)\n  # Compute UPDATEPOFILES\n  # as      $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)\n  # Compute DUMMYPOFILES\n  # as      $(foreach lang, $(ALL_LINGUAS), $(lang).nop)\n  # Compute GMOFILES\n  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)\n  # Compute PROPERTIESFILES\n  # as      $(foreach lang, $(ALL_LINGUAS), $(top_srcdir)/$(DOMAIN)_$(lang).properties)\n  # Compute CLASSFILES\n  # as      $(foreach lang, $(ALL_LINGUAS), $(top_srcdir)/$(DOMAIN)_$(lang).class)\n  # Compute QMFILES\n  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).qm)\n  # Compute MSGFILES\n  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(frob $(lang)).msg)\n  # Compute RESOURCESDLLFILES\n  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(frob $(lang))/$(DOMAIN).resources.dll)\n  case \"$ac_given_srcdir\" in\n    .) srcdirpre= ;;\n    *) srcdirpre='$(srcdir)/' ;;\n  esac\n  POFILES=\n  UPDATEPOFILES=\n  DUMMYPOFILES=\n  GMOFILES=\n  PROPERTIESFILES=\n  CLASSFILES=\n  QMFILES=\n  MSGFILES=\n  RESOURCESDLLFILES=\n  for lang in $ALL_LINGUAS; do\n    POFILES=\"$POFILES $srcdirpre$lang.po\"\n    UPDATEPOFILES=\"$UPDATEPOFILES $lang.po-update\"\n    DUMMYPOFILES=\"$DUMMYPOFILES $lang.nop\"\n    GMOFILES=\"$GMOFILES $srcdirpre$lang.gmo\"\n    PROPERTIESFILES=\"$PROPERTIESFILES \\$(top_srcdir)/\\$(DOMAIN)_$lang.properties\"\n    CLASSFILES=\"$CLASSFILES \\$(top_srcdir)/\\$(DOMAIN)_$lang.class\"\n    QMFILES=\"$QMFILES $srcdirpre$lang.qm\"\n    frobbedlang=`echo $lang | sed -e 's/\\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`\n    MSGFILES=\"$MSGFILES $srcdirpre$frobbedlang.msg\"\n    frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`\n    RESOURCESDLLFILES=\"$RESOURCESDLLFILES $srcdirpre$frobbedlang/\\$(DOMAIN).resources.dll\"\n  done\n  # CATALOGS depends on both $ac_dir and the user's LINGUAS\n  # environment variable.\n  INST_LINGUAS=\n  if test -n \"$ALL_LINGUAS\"; then\n    for presentlang in $ALL_LINGUAS; do\n      useit=no\n      if test \"%UNSET%\" != \"$LINGUAS\"; then\n        desiredlanguages=\"$LINGUAS\"\n      else\n        desiredlanguages=\"$ALL_LINGUAS\"\n      fi\n      for desiredlang in $desiredlanguages; do\n        # Use the presentlang catalog if desiredlang is\n        #   a. equal to presentlang, or\n        #   b. a variant of presentlang (because in this case,\n        #      presentlang can be used as a fallback for messages\n        #      which are not translated in the desiredlang catalog).\n        case \"$desiredlang\" in\n          \"$presentlang\"*) useit=yes;;\n        esac\n      done\n      if test $useit = yes; then\n        INST_LINGUAS=\"$INST_LINGUAS $presentlang\"\n      fi\n    done\n  fi\n  CATALOGS=\n  JAVACATALOGS=\n  QTCATALOGS=\n  TCLCATALOGS=\n  CSHARPCATALOGS=\n  if test -n \"$INST_LINGUAS\"; then\n    for lang in $INST_LINGUAS; do\n      CATALOGS=\"$CATALOGS $lang.gmo\"\n      JAVACATALOGS=\"$JAVACATALOGS \\$(DOMAIN)_$lang.properties\"\n      QTCATALOGS=\"$QTCATALOGS $lang.qm\"\n      frobbedlang=`echo $lang | sed -e 's/\\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`\n      TCLCATALOGS=\"$TCLCATALOGS $frobbedlang.msg\"\n      frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`\n      CSHARPCATALOGS=\"$CSHARPCATALOGS $frobbedlang/\\$(DOMAIN).resources.dll\"\n    done\n  fi\n\n  sed -e \"s|@POTFILES_DEPS@|$POTFILES_DEPS|g\" -e \"s|@POFILES@|$POFILES|g\" -e \"s|@UPDATEPOFILES@|$UPDATEPOFILES|g\" -e \"s|@DUMMYPOFILES@|$DUMMYPOFILES|g\" -e \"s|@GMOFILES@|$GMOFILES|g\" -e \"s|@PROPERTIESFILES@|$PROPERTIESFILES|g\" -e \"s|@CLASSFILES@|$CLASSFILES|g\" -e \"s|@QMFILES@|$QMFILES|g\" -e \"s|@MSGFILES@|$MSGFILES|g\" -e \"s|@RESOURCESDLLFILES@|$RESOURCESDLLFILES|g\" -e \"s|@CATALOGS@|$CATALOGS|g\" -e \"s|@JAVACATALOGS@|$JAVACATALOGS|g\" -e \"s|@QTCATALOGS@|$QTCATALOGS|g\" -e \"s|@TCLCATALOGS@|$TCLCATALOGS|g\" -e \"s|@CSHARPCATALOGS@|$CSHARPCATALOGS|g\" -e 's,^#distdir:,distdir:,' < \"$ac_file\" > \"$ac_file.tmp\"\n  tab=`printf '\\t'`\n  if grep -l '@TCLCATALOGS@' \"$ac_file\" > /dev/null; then\n    # Add dependencies that cannot be formulated as a simple suffix rule.\n    for lang in $ALL_LINGUAS; do\n      frobbedlang=`echo $lang | sed -e 's/\\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`\n      cat >> \"$ac_file.tmp\" <<EOF\n$frobbedlang.msg: $lang.po\n${tab}@echo \"\\$(MSGFMT) -c --tcl -d \\$(srcdir) -l $lang $srcdirpre$lang.po\"; \\\n${tab}\\$(MSGFMT) -c --tcl -d \"\\$(srcdir)\" -l $lang $srcdirpre$lang.po || { rm -f \"\\$(srcdir)/$frobbedlang.msg\"; exit 1; }\nEOF\n    done\n  fi\n  if grep -l '@CSHARPCATALOGS@' \"$ac_file\" > /dev/null; then\n    # Add dependencies that cannot be formulated as a simple suffix rule.\n    for lang in $ALL_LINGUAS; do\n      frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`\n      cat >> \"$ac_file.tmp\" <<EOF\n$frobbedlang/\\$(DOMAIN).resources.dll: $lang.po\n${tab}@echo \"\\$(MSGFMT) -c --csharp -d \\$(srcdir) -l $lang $srcdirpre$lang.po -r \\$(DOMAIN)\"; \\\n${tab}\\$(MSGFMT) -c --csharp -d \"\\$(srcdir)\" -l $lang $srcdirpre$lang.po -r \"\\$(DOMAIN)\" || { rm -f \"\\$(srcdir)/$frobbedlang.msg\"; exit 1; }\nEOF\n    done\n  fi\n  if test -n \"$POMAKEFILEDEPS\"; then\n    cat >> \"$ac_file.tmp\" <<EOF\nMakefile: $POMAKEFILEDEPS\nEOF\n  fi\n  mv \"$ac_file.tmp\" \"$ac_file\"\n])\n\ndnl Initializes the accumulator used by AM_XGETTEXT_OPTION.\nAC_DEFUN([AM_XGETTEXT_OPTION_INIT],\n[\n  XGETTEXT_EXTRA_OPTIONS=\n])\n\ndnl Registers an option to be passed to xgettext in the po subdirectory.\nAC_DEFUN([AM_XGETTEXT_OPTION],\n[\n  AC_REQUIRE([AM_XGETTEXT_OPTION_INIT])\n  XGETTEXT_EXTRA_OPTIONS=\"$XGETTEXT_EXTRA_OPTIONS $1\"\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/printf-posix.m4",
    "content": "# printf-posix.m4 serial 6 (gettext-0.18.2)\ndnl Copyright (C) 2003, 2007, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\ndnl Test whether the printf() function supports POSIX/XSI format strings with\ndnl positions.\n\nAC_DEFUN([gt_PRINTF_POSIX],\n[\n  AC_REQUIRE([AC_PROG_CC])\n  AC_CACHE_CHECK([whether printf() supports POSIX/XSI format strings],\n    gt_cv_func_printf_posix,\n    [\n      AC_RUN_IFELSE(\n        [AC_LANG_SOURCE([[\n#include <stdio.h>\n#include <string.h>\n/* The string \"%2$d %1$d\", with dollar characters protected from the shell's\n   dollar expansion (possibly an autoconf bug).  */\nstatic char format[] = { '%', '2', '$', 'd', ' ', '%', '1', '$', 'd', '\\0' };\nstatic char buf[100];\nint main ()\n{\n  sprintf (buf, format, 33, 55);\n  return (strcmp (buf, \"55 33\") != 0);\n}]])],\n        [gt_cv_func_printf_posix=yes],\n        [gt_cv_func_printf_posix=no],\n        [\n          AC_EGREP_CPP([notposix], [\n#if defined __NetBSD__ || defined __BEOS__ || defined _MSC_VER || defined __MINGW32__ || defined __CYGWIN__\n  notposix\n#endif\n            ],\n            [gt_cv_func_printf_posix=\"guessing no\"],\n            [gt_cv_func_printf_posix=\"guessing yes\"])\n        ])\n    ])\n  case $gt_cv_func_printf_posix in\n    *yes)\n      AC_DEFINE([HAVE_POSIX_PRINTF], [1],\n        [Define if your printf() function supports format strings with positions.])\n      ;;\n  esac\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/progtest.m4",
    "content": "# progtest.m4 serial 7 (gettext-0.18.2)\ndnl Copyright (C) 1996-2003, 2005, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\ndnl\ndnl This file can can be used in projects which are not available under\ndnl the GNU General Public License or the GNU Library General Public\ndnl License but which still want to provide support for the GNU gettext\ndnl functionality.\ndnl Please note that the actual code of the GNU gettext library is covered\ndnl by the GNU Library General Public License, and the rest of the GNU\ndnl gettext package package is covered by the GNU General Public License.\ndnl They are *not* in the public domain.\n\ndnl Authors:\ndnl   Ulrich Drepper <drepper@cygnus.com>, 1996.\n\nAC_PREREQ([2.50])\n\n# Search path for a program which passes the given test.\n\ndnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,\ndnl   TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])\nAC_DEFUN([AM_PATH_PROG_WITH_TEST],\n[\n# Prepare PATH_SEPARATOR.\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which\n  # contains only /bin. Note that ksh looks also at the FPATH variable,\n  # so we have to set that as well for the test.\n  PATH_SEPARATOR=:\n  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n    && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \\\n           || PATH_SEPARATOR=';'\n       }\nfi\n\n# Find out how to test for executable files. Don't use a zero-byte file,\n# as systems may use methods other than mode bits to determine executability.\ncat >conf$$.file <<_ASEOF\n#! /bin/sh\nexit 0\n_ASEOF\nchmod +x conf$$.file\nif test -x conf$$.file >/dev/null 2>&1; then\n  ac_executable_p=\"test -x\"\nelse\n  ac_executable_p=\"test -f\"\nfi\nrm -f conf$$.file\n\n# Extract the first word of \"$2\", so it can be a program name with args.\nset dummy $2; ac_word=[$]2\nAC_MSG_CHECKING([for $ac_word])\nAC_CACHE_VAL([ac_cv_path_$1],\n[case \"[$]$1\" in\n  [[\\\\/]]* | ?:[[\\\\/]]*)\n    ac_cv_path_$1=\"[$]$1\" # Let the user override the test with a path.\n    ;;\n  *)\n    ac_save_IFS=\"$IFS\"; IFS=$PATH_SEPARATOR\n    for ac_dir in ifelse([$5], , $PATH, [$5]); do\n      IFS=\"$ac_save_IFS\"\n      test -z \"$ac_dir\" && ac_dir=.\n      for ac_exec_ext in '' $ac_executable_extensions; do\n        if $ac_executable_p \"$ac_dir/$ac_word$ac_exec_ext\"; then\n          echo \"$as_me: trying $ac_dir/$ac_word...\" >&AS_MESSAGE_LOG_FD\n          if [$3]; then\n            ac_cv_path_$1=\"$ac_dir/$ac_word$ac_exec_ext\"\n            break 2\n          fi\n        fi\n      done\n    done\n    IFS=\"$ac_save_IFS\"\ndnl If no 4th arg is given, leave the cache variable unset,\ndnl so AC_PATH_PROGS will keep looking.\nifelse([$4], , , [  test -z \"[$]ac_cv_path_$1\" && ac_cv_path_$1=\"$4\"\n])dnl\n    ;;\nesac])dnl\n$1=\"$ac_cv_path_$1\"\nif test ifelse([$4], , [-n \"[$]$1\"], [\"[$]$1\" != \"$4\"]); then\n  AC_MSG_RESULT([$][$1])\nelse\n  AC_MSG_RESULT([no])\nfi\nAC_SUBST([$1])dnl\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/raise.m4",
    "content": "# raise.m4 serial 3\ndnl Copyright (C) 2011-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_FUNC_RAISE],\n[\n  AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])\n  AC_REQUIRE([AC_CANONICAL_HOST])\n  AC_REQUIRE([gl_MSVC_INVAL])\n  AC_CHECK_FUNCS([raise])\n  if test $ac_cv_func_raise = no; then\n    HAVE_RAISE=0\n  else\n    if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then\n      REPLACE_RAISE=1\n    fi\n    m4_ifdef([gl_SIGNALBLOCKING], [\n      gl_SIGNALBLOCKING\n      if test $HAVE_POSIX_SIGNALBLOCKING = 0; then\n        m4_ifdef([gl_SIGNAL_SIGPIPE], [\n          gl_SIGNAL_SIGPIPE\n          if test $gl_cv_header_signal_h_SIGPIPE != yes; then\n            REPLACE_RAISE=1\n          fi\n        ], [:])\n      fi\n    ])\n  fi\n])\n\n# Prerequisites of lib/raise.c.\nAC_DEFUN([gl_PREREQ_RAISE], [:])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/read.m4",
    "content": "# read.m4 serial 4\ndnl Copyright (C) 2011-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_FUNC_READ],\n[\n  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])\n  AC_REQUIRE([gl_MSVC_INVAL])\n  if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then\n    REPLACE_READ=1\n  fi\n  dnl This ifdef is just an optimization, to avoid performing a configure\n  dnl check whose result is not used. It does not make the test of\n  dnl GNULIB_UNISTD_H_NONBLOCKING or GNULIB_NONBLOCKING redundant.\n  m4_ifdef([gl_NONBLOCKING_IO], [\n    gl_NONBLOCKING_IO\n    if test $gl_cv_have_nonblocking != yes; then\n      REPLACE_READ=1\n    fi\n  ])\n])\n\n# Prerequisites of lib/read.c.\nAC_DEFUN([gl_PREREQ_READ], [:])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/readlink.m4",
    "content": "# readlink.m4 serial 12\ndnl Copyright (C) 2003, 2007, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_FUNC_READLINK],\n[\n  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])\n  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles\n  AC_CHECK_FUNCS_ONCE([readlink])\n  if test $ac_cv_func_readlink = no; then\n    HAVE_READLINK=0\n  else\n    AC_CACHE_CHECK([whether readlink signature is correct],\n      [gl_cv_decl_readlink_works],\n      [AC_COMPILE_IFELSE(\n         [AC_LANG_PROGRAM(\n           [[#include <unistd.h>\n      /* Cause compilation failure if original declaration has wrong type.  */\n      ssize_t readlink (const char *, char *, size_t);]])],\n         [gl_cv_decl_readlink_works=yes], [gl_cv_decl_readlink_works=no])])\n    dnl Solaris 9 ignores trailing slash.\n    dnl FreeBSD 7.2 dereferences only one level of links with trailing slash.\n    AC_CACHE_CHECK([whether readlink handles trailing slash correctly],\n      [gl_cv_func_readlink_works],\n      [# We have readlink, so assume ln -s works.\n       ln -s conftest.no-such conftest.link\n       ln -s conftest.link conftest.lnk2\n       AC_RUN_IFELSE(\n         [AC_LANG_PROGRAM(\n           [[#include <unistd.h>\n]], [[char buf[20];\n      return readlink (\"conftest.lnk2/\", buf, sizeof buf) != -1;]])],\n         [gl_cv_func_readlink_works=yes], [gl_cv_func_readlink_works=no],\n         [case \"$host_os\" in\n                    # Guess yes on glibc systems.\n            *-gnu*) gl_cv_func_readlink_works=\"guessing yes\" ;;\n                    # If we don't know, assume the worst.\n            *)      gl_cv_func_readlink_works=\"guessing no\" ;;\n          esac\n         ])\n      rm -f conftest.link conftest.lnk2])\n    case \"$gl_cv_func_readlink_works\" in\n      *yes)\n        if test \"$gl_cv_decl_readlink_works\" != yes; then\n          REPLACE_READLINK=1\n        fi\n        ;;\n      *)\n        AC_DEFINE([READLINK_TRAILING_SLASH_BUG], [1], [Define to 1 if readlink\n          fails to recognize a trailing slash.])\n        REPLACE_READLINK=1\n        ;;\n    esac\n  fi\n])\n\n# Like gl_FUNC_READLINK, except prepare for separate compilation\n# (no REPLACE_READLINK, no AC_LIBOBJ).\nAC_DEFUN([gl_FUNC_READLINK_SEPARATE],\n[\n  AC_CHECK_FUNCS_ONCE([readlink])\n  gl_PREREQ_READLINK\n])\n\n# Prerequisites of lib/readlink.c.\nAC_DEFUN([gl_PREREQ_READLINK],\n[\n  :\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/relocatable-lib.m4",
    "content": "# relocatable-lib.m4 serial 6\ndnl Copyright (C) 2003, 2005-2007, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\ndnl Support for relocatable libraries.\nAC_DEFUN([gl_RELOCATABLE_LIBRARY],\n[\n  AC_REQUIRE([gl_RELOCATABLE_LIBRARY_BODY])\n])\nAC_DEFUN([gl_RELOCATABLE_LIBRARY_BODY],\n[\n  AC_REQUIRE([gl_RELOCATABLE_NOP])\n  dnl Easier to put this here once, instead of into the DEFS of each Makefile.\n  if test \"X$prefix\" = \"XNONE\"; then\n    reloc_final_prefix=\"$ac_default_prefix\"\n  else\n    reloc_final_prefix=\"$prefix\"\n  fi\n  AC_DEFINE_UNQUOTED([INSTALLPREFIX], [\"${reloc_final_prefix}\"],\n    [Define to the value of ${prefix}, as a string.])\n  if test $RELOCATABLE = yes; then\n    AC_DEFINE([ENABLE_RELOCATABLE], [1],\n      [Define to 1 if the package shall run at any location in the file\n       system.])\n  fi\n])\n\ndnl Support for relocatable packages for which it is a nop.\nAC_DEFUN([gl_RELOCATABLE_NOP],\n[\n  AC_MSG_CHECKING([whether to activate relocatable installation])\n  AC_ARG_ENABLE([relocatable],\n    [AS_HELP_STRING([--enable-relocatable],\n      [install a package that can be moved in the file system])],\n    [if test \"$enableval\" != no; then\n       RELOCATABLE=yes\n     else\n       RELOCATABLE=no\n     fi\n    ], RELOCATABLE=no)\n  AC_SUBST([RELOCATABLE])\n  AC_MSG_RESULT([$RELOCATABLE])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/relocatable.m4",
    "content": "# relocatable.m4 serial 18\ndnl Copyright (C) 2003, 2005-2007, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\ndnl gl_RELOCATABLE([RELOCWRAPPER-DIR])\ndnl ----------------------------------------------------------\ndnl Support for relocatable programs.\ndnl Supply RELOCWRAPPER-DIR as the directory where relocwrapper.c may be found.\nAC_DEFUN([gl_RELOCATABLE],\n[\n  AC_REQUIRE([gl_RELOCATABLE_BODY])\n  gl_RELOCATABLE_LIBRARY\n  : ${RELOCATABLE_CONFIG_H_DIR='$(top_builddir)'}\n  RELOCATABLE_SRC_DIR=\"\\$(top_srcdir)/$gl_source_base\"\n  RELOCATABLE_BUILD_DIR=\"\\$(top_builddir)/$gl_source_base\"\n])\ndnl The guts of gl_RELOCATABLE. Needs to be expanded only once.\nAC_DEFUN([gl_RELOCATABLE_BODY],\n[\n  AC_REQUIRE([AC_PROG_INSTALL])\n  dnl This AC_BEFORE invocation leads to unjustified autoconf warnings\n  dnl when gl_RELOCATABLE_BODY is invoked more than once.\n  dnl We need this AC_BEFORE because AC_PROG_INSTALL is documented to\n  dnl overwrite earlier settings of INSTALL and INSTALL_PROGRAM (even\n  dnl though in autoconf-2.52..2.60 it doesn't do so), but we want this\n  dnl macro's setting of INSTALL_PROGRAM to persist.\n  AC_BEFORE([AC_PROG_INSTALL],[gl_RELOCATABLE_BODY])\n  AC_REQUIRE([AC_LIB_LIBPATH])\n  AC_REQUIRE([gl_RELOCATABLE_LIBRARY_BODY])\n  is_noop=no\n  use_elf_origin_trick=no\n  use_wrapper=no\n  if test $RELOCATABLE = yes; then\n    # --enable-relocatable implies --disable-rpath\n    enable_rpath=no\n    AC_CHECK_HEADERS([mach-o/dyld.h])\n    AC_CHECK_FUNCS([_NSGetExecutablePath])\n    case \"$host_os\" in\n      mingw*) is_noop=yes ;;\n      linux* | kfreebsd*) use_elf_origin_trick=yes ;;\n    esac\n    if test $is_noop = yes; then\n      RELOCATABLE_LDFLAGS=:\n      AC_SUBST([RELOCATABLE_LDFLAGS])\n    else\n      if test $use_elf_origin_trick = yes; then\n        dnl Use the dynamic linker's support for relocatable programs.\n        case \"$ac_aux_dir\" in\n          /*) reloc_ldflags=\"$ac_aux_dir/reloc-ldflags\" ;;\n          *) reloc_ldflags=\"\\$(top_builddir)/$ac_aux_dir/reloc-ldflags\" ;;\n        esac\n        RELOCATABLE_LDFLAGS=\"\\\"$reloc_ldflags\\\" \\\"\\$(host)\\\" \\\"\\$(RELOCATABLE_LIBRARY_PATH)\\\"\"\n        AC_SUBST([RELOCATABLE_LDFLAGS])\n      else\n        use_wrapper=yes\n        dnl Unfortunately we cannot define INSTALL_PROGRAM to a command\n        dnl consisting of more than one word - libtool doesn't support this.\n        dnl So we abuse the INSTALL_PROGRAM_ENV hook, originally meant for the\n        dnl 'install-strip' target.\n        INSTALL_PROGRAM_ENV=\"RELOC_LIBRARY_PATH_VAR=\\\"$shlibpath_var\\\" RELOC_LIBRARY_PATH_VALUE=\\\"\\$(RELOCATABLE_LIBRARY_PATH)\\\" RELOC_PREFIX=\\\"\\$(prefix)\\\" RELOC_DESTDIR=\\\"\\$(DESTDIR)\\\" RELOC_COMPILE_COMMAND=\\\"\\$(CC) \\$(CPPFLAGS) \\$(CFLAGS) \\$(LDFLAGS)\\\" RELOC_SRCDIR=\\\"\\$(RELOCATABLE_SRC_DIR)\\\" RELOC_BUILDDIR=\\\"\\$(RELOCATABLE_BUILD_DIR)\\\" RELOC_CONFIG_H_DIR=\\\"\\$(RELOCATABLE_CONFIG_H_DIR)\\\" RELOC_EXEEXT=\\\"\\$(EXEEXT)\\\" RELOC_STRIP_PROG=\\\"\\$(RELOCATABLE_STRIP)\\\" RELOC_INSTALL_PROG=\\\"$INSTALL_PROGRAM\\\"\"\n        AC_SUBST([INSTALL_PROGRAM_ENV])\n        case \"$ac_aux_dir\" in\n          /*) INSTALL_PROGRAM=\"$ac_aux_dir/install-reloc\" ;;\n          *) INSTALL_PROGRAM=\"\\$(top_builddir)/$ac_aux_dir/install-reloc\" ;;\n        esac\n      fi\n    fi\n  fi\n  AM_CONDITIONAL([RELOCATABLE_VIA_LD],\n    [test $is_noop = yes || test $use_elf_origin_trick = yes])\n  AM_CONDITIONAL([RELOCATABLE_VIA_WRAPPER], [test $use_wrapper = yes])\n\n  dnl RELOCATABLE_LIBRARY_PATH can be set in configure.ac. Default is empty.\n  AC_SUBST([RELOCATABLE_LIBRARY_PATH])\n\n  AC_SUBST([RELOCATABLE_CONFIG_H_DIR])\n  AC_SUBST([RELOCATABLE_SRC_DIR])\n  AC_SUBST([RELOCATABLE_BUILD_DIR])\n\n  dnl Ensure RELOCATABLE_STRIP is defined in Makefiles (at least those\n  dnl generated by automake), with value ':'.\n  RELOCATABLE_STRIP=':'\n  AC_SUBST([RELOCATABLE_STRIP])\n])\n\ndnl Determine the platform dependent parameters needed to use relocatability:\ndnl shlibpath_var.\nAC_DEFUN([AC_LIB_LIBPATH],\n[\n  AC_REQUIRE([AC_LIB_PROG_LD])            dnl we use $LD\n  AC_REQUIRE([AC_CANONICAL_HOST])         dnl we use $host\n  AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir\n  AC_CACHE_CHECK([for shared library path variable], [acl_cv_libpath], [\n    LD=\"$LD\" \\\n    ${CONFIG_SHELL-/bin/sh} \"$ac_aux_dir/config.libpath\" \"$host\" > conftest.sh\n    . ./conftest.sh\n    rm -f ./conftest.sh\n    acl_cv_libpath=${acl_cv_shlibpath_var:-none}\n  ])\n  shlibpath_var=\"$acl_cv_shlibpath_var\"\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/safe-read.m4",
    "content": "# safe-read.m4 serial 6\ndnl Copyright (C) 2002-2003, 2005-2006, 2009-2017 Free Software Foundation,\ndnl Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\n# Prerequisites of lib/safe-read.c.\nAC_DEFUN([gl_PREREQ_SAFE_READ],\n[\n  AC_REQUIRE([gt_TYPE_SSIZE_T])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/setenv.m4",
    "content": "# setenv.m4 serial 26\ndnl Copyright (C) 2001-2004, 2006-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_FUNC_SETENV],\n[\n  AC_REQUIRE([gl_FUNC_SETENV_SEPARATE])\n  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles\n  if test $ac_cv_func_setenv = no; then\n    HAVE_SETENV=0\n  else\n    AC_CACHE_CHECK([whether setenv validates arguments],\n      [gl_cv_func_setenv_works],\n      [AC_RUN_IFELSE([AC_LANG_PROGRAM([[\n       #include <stdlib.h>\n       #include <errno.h>\n       #include <string.h>\n      ]], [[\n       int result = 0;\n       {\n         if (setenv (\"\", \"\", 0) != -1)\n           result |= 1;\n         else if (errno != EINVAL)\n           result |= 2;\n       }\n       {\n         if (setenv (\"a\", \"=\", 1) != 0)\n           result |= 4;\n         else if (strcmp (getenv (\"a\"), \"=\") != 0)\n           result |= 8;\n       }\n       return result;\n      ]])],\n      [gl_cv_func_setenv_works=yes], [gl_cv_func_setenv_works=no],\n      [case \"$host_os\" in\n                 # Guess yes on glibc systems.\n         *-gnu*) gl_cv_func_setenv_works=\"guessing yes\" ;;\n                 # If we don't know, assume the worst.\n         *)      gl_cv_func_setenv_works=\"guessing no\" ;;\n       esac\n      ])])\n    case \"$gl_cv_func_setenv_works\" in\n      *yes) ;;\n      *)\n        REPLACE_SETENV=1\n        ;;\n    esac\n  fi\n])\n\n# Like gl_FUNC_SETENV, except prepare for separate compilation\n# (no REPLACE_SETENV, no AC_LIBOBJ).\nAC_DEFUN([gl_FUNC_SETENV_SEPARATE],\n[\n  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])\n  AC_CHECK_DECLS_ONCE([setenv])\n  if test $ac_cv_have_decl_setenv = no; then\n    HAVE_DECL_SETENV=0\n  fi\n  AC_CHECK_FUNCS_ONCE([setenv])\n  gl_PREREQ_SETENV\n])\n\nAC_DEFUN([gl_FUNC_UNSETENV],\n[\n  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])\n  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles\n  AC_CHECK_DECLS_ONCE([unsetenv])\n  if test $ac_cv_have_decl_unsetenv = no; then\n    HAVE_DECL_UNSETENV=0\n  fi\n  AC_CHECK_FUNCS([unsetenv])\n  if test $ac_cv_func_unsetenv = no; then\n    HAVE_UNSETENV=0\n  else\n    HAVE_UNSETENV=1\n    dnl Some BSDs return void, failing to do error checking.\n    AC_CACHE_CHECK([for unsetenv() return type], [gt_cv_func_unsetenv_ret],\n      [AC_COMPILE_IFELSE(\n         [AC_LANG_PROGRAM(\n            [[\n#undef _BSD\n#define _BSD 1 /* unhide unsetenv declaration in OSF/1 5.1 <stdlib.h> */\n#include <stdlib.h>\nextern\n#ifdef __cplusplus\n\"C\"\n#endif\nint unsetenv (const char *name);\n            ]],\n            [[]])],\n         [gt_cv_func_unsetenv_ret='int'],\n         [gt_cv_func_unsetenv_ret='void'])])\n    if test $gt_cv_func_unsetenv_ret = 'void'; then\n      AC_DEFINE([VOID_UNSETENV], [1], [Define to 1 if unsetenv returns void\n       instead of int.])\n      REPLACE_UNSETENV=1\n    fi\n\n    dnl Solaris 10 unsetenv does not remove all copies of a name.\n    dnl Haiku alpha 2 unsetenv gets confused by assignment to environ.\n    dnl OpenBSD 4.7 unsetenv(\"\") does not fail.\n    AC_CACHE_CHECK([whether unsetenv obeys POSIX],\n      [gl_cv_func_unsetenv_works],\n      [AC_RUN_IFELSE([AC_LANG_PROGRAM([[\n       #include <stdlib.h>\n       #include <errno.h>\n       extern char **environ;\n      ]], [[\n       char entry1[] = \"a=1\";\n       char entry2[] = \"b=2\";\n       char *env[] = { entry1, entry2, NULL };\n       if (putenv ((char *) \"a=1\")) return 1;\n       if (putenv (entry2)) return 2;\n       entry2[0] = 'a';\n       unsetenv (\"a\");\n       if (getenv (\"a\")) return 3;\n       if (!unsetenv (\"\") || errno != EINVAL) return 4;\n       entry2[0] = 'b';\n       environ = env;\n       if (!getenv (\"a\")) return 5;\n       entry2[0] = 'a';\n       unsetenv (\"a\");\n       if (getenv (\"a\")) return 6;\n      ]])],\n      [gl_cv_func_unsetenv_works=yes], [gl_cv_func_unsetenv_works=no],\n      [case \"$host_os\" in\n                 # Guess yes on glibc systems.\n         *-gnu*) gl_cv_func_unsetenv_works=\"guessing yes\" ;;\n                 # If we don't know, assume the worst.\n         *)      gl_cv_func_unsetenv_works=\"guessing no\" ;;\n       esac\n      ])])\n    case \"$gl_cv_func_unsetenv_works\" in\n      *yes) ;;\n      *)\n        REPLACE_UNSETENV=1\n        ;;\n    esac\n  fi\n])\n\n# Prerequisites of lib/setenv.c.\nAC_DEFUN([gl_PREREQ_SETENV],\n[\n  AC_REQUIRE([AC_FUNC_ALLOCA])\n  AC_REQUIRE([gl_ENVIRON])\n  AC_CHECK_HEADERS_ONCE([unistd.h])\n  AC_CHECK_HEADERS([search.h])\n  AC_CHECK_FUNCS([tsearch])\n])\n\n# Prerequisites of lib/unsetenv.c.\nAC_DEFUN([gl_PREREQ_UNSETENV],\n[\n  AC_REQUIRE([gl_ENVIRON])\n  AC_CHECK_HEADERS_ONCE([unistd.h])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/signal_h.m4",
    "content": "# signal_h.m4 serial 18\ndnl Copyright (C) 2007-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_SIGNAL_H],\n[\n  AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])\n  AC_REQUIRE([gl_CHECK_TYPE_SIGSET_T])\n  gl_NEXT_HEADERS([signal.h])\n\n# AIX declares sig_atomic_t to already include volatile, and C89 compilers\n# then choke on 'volatile sig_atomic_t'.  C99 requires that it compile.\n  AC_CHECK_TYPE([volatile sig_atomic_t], [],\n    [HAVE_TYPE_VOLATILE_SIG_ATOMIC_T=0], [[\n#include <signal.h>\n    ]])\n\n  dnl Ensure the type pid_t gets defined.\n  AC_REQUIRE([AC_TYPE_PID_T])\n\n  AC_REQUIRE([AC_TYPE_UID_T])\n\n  dnl Persuade glibc <signal.h> to define sighandler_t.\n  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])\n  AC_CHECK_TYPE([sighandler_t], [], [HAVE_SIGHANDLER_T=0], [[\n#include <signal.h>\n    ]])\n\n  dnl Check for declarations of anything we want to poison if the\n  dnl corresponding gnulib module is not in use.\n  gl_WARN_ON_USE_PREPARE([[#include <signal.h>\n    ]], [pthread_sigmask sigaction\n    sigaddset sigdelset sigemptyset sigfillset sigismember\n    sigpending sigprocmask])\n])\n\nAC_DEFUN([gl_CHECK_TYPE_SIGSET_T],\n[\n  AC_CHECK_TYPES([sigset_t],\n    [gl_cv_type_sigset_t=yes], [gl_cv_type_sigset_t=no],\n    [[\n      #include <signal.h>\n      /* Mingw defines sigset_t not in <signal.h>, but in <sys/types.h>.  */\n      #include <sys/types.h>\n    ]])\n  if test $gl_cv_type_sigset_t != yes; then\n    HAVE_SIGSET_T=0\n  fi\n])\n\nAC_DEFUN([gl_SIGNAL_MODULE_INDICATOR],\n[\n  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.\n  AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])\n  gl_MODULE_INDICATOR_SET_VARIABLE([$1])\n  dnl Define it also as a C macro, for the benefit of the unit tests.\n  gl_MODULE_INDICATOR_FOR_TESTS([$1])\n])\n\nAC_DEFUN([gl_SIGNAL_H_DEFAULTS],\n[\n  GNULIB_PTHREAD_SIGMASK=0;    AC_SUBST([GNULIB_PTHREAD_SIGMASK])\n  GNULIB_RAISE=0;              AC_SUBST([GNULIB_RAISE])\n  GNULIB_SIGNAL_H_SIGPIPE=0;   AC_SUBST([GNULIB_SIGNAL_H_SIGPIPE])\n  GNULIB_SIGPROCMASK=0;        AC_SUBST([GNULIB_SIGPROCMASK])\n  GNULIB_SIGACTION=0;          AC_SUBST([GNULIB_SIGACTION])\n  dnl Assume proper GNU behavior unless another module says otherwise.\n  HAVE_POSIX_SIGNALBLOCKING=1; AC_SUBST([HAVE_POSIX_SIGNALBLOCKING])\n  HAVE_PTHREAD_SIGMASK=1;      AC_SUBST([HAVE_PTHREAD_SIGMASK])\n  HAVE_RAISE=1;                AC_SUBST([HAVE_RAISE])\n  HAVE_SIGSET_T=1;             AC_SUBST([HAVE_SIGSET_T])\n  HAVE_SIGINFO_T=1;            AC_SUBST([HAVE_SIGINFO_T])\n  HAVE_SIGACTION=1;            AC_SUBST([HAVE_SIGACTION])\n  HAVE_STRUCT_SIGACTION_SA_SIGACTION=1;\n                               AC_SUBST([HAVE_STRUCT_SIGACTION_SA_SIGACTION])\n  HAVE_TYPE_VOLATILE_SIG_ATOMIC_T=1;\n                               AC_SUBST([HAVE_TYPE_VOLATILE_SIG_ATOMIC_T])\n  HAVE_SIGHANDLER_T=1;         AC_SUBST([HAVE_SIGHANDLER_T])\n  REPLACE_PTHREAD_SIGMASK=0;   AC_SUBST([REPLACE_PTHREAD_SIGMASK])\n  REPLACE_RAISE=0;             AC_SUBST([REPLACE_RAISE])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/signalblocking.m4",
    "content": "# signalblocking.m4 serial 14\ndnl Copyright (C) 2001-2002, 2006-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\n# Determine available signal blocking primitives. Three different APIs exist:\n# 1) POSIX: sigemptyset, sigaddset, sigprocmask\n# 2) SYSV: sighold, sigrelse\n# 3) BSD: sigblock, sigsetmask\n# For simplicity, here we check only for the POSIX signal blocking.\nAC_DEFUN([gl_SIGNALBLOCKING],\n[\n  AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])\n  AC_REQUIRE([gl_CHECK_TYPE_SIGSET_T])\n  if test $gl_cv_type_sigset_t = yes; then\n    AC_CHECK_FUNC([sigprocmask], [gl_cv_func_sigprocmask=1])\n  fi\n  if test -z \"$gl_cv_func_sigprocmask\"; then\n    HAVE_POSIX_SIGNALBLOCKING=0\n  fi\n])\n\n# Prerequisites of lib/sigprocmask.c.\nAC_DEFUN([gl_PREREQ_SIGPROCMASK], [:])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/sigpipe.m4",
    "content": "# sigpipe.m4 serial 2\ndnl Copyright (C) 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl Tests whether SIGPIPE is provided by <signal.h>.\ndnl Sets gl_cv_header_signal_h_SIGPIPE.\nAC_DEFUN([gl_SIGNAL_SIGPIPE],\n[\n  dnl Use AC_REQUIRE here, so that the default behavior below is expanded\n  dnl once only, before all statements that occur in other macros.\n  AC_REQUIRE([gl_SIGNAL_SIGPIPE_BODY])\n])\n\nAC_DEFUN([gl_SIGNAL_SIGPIPE_BODY],\n[\n  AC_REQUIRE([AC_PROG_CC])\n  AC_CACHE_CHECK([for SIGPIPE], [gl_cv_header_signal_h_SIGPIPE], [\n    AC_EGREP_CPP([booboo],[\n#include <signal.h>\n#if !defined SIGPIPE\nbooboo\n#endif\n      ],\n      [gl_cv_header_signal_h_SIGPIPE=no],\n      [gl_cv_header_signal_h_SIGPIPE=yes])\n  ])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/size_max.m4",
    "content": "# size_max.m4 serial 10\ndnl Copyright (C) 2003, 2005-2006, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\nAC_DEFUN([gl_SIZE_MAX],\n[\n  AC_CHECK_HEADERS([stdint.h])\n  dnl First test whether the system already has SIZE_MAX.\n  AC_CACHE_CHECK([for SIZE_MAX], [gl_cv_size_max], [\n    gl_cv_size_max=\n    AC_EGREP_CPP([Found it], [\n#include <limits.h>\n#if HAVE_STDINT_H\n#include <stdint.h>\n#endif\n#ifdef SIZE_MAX\nFound it\n#endif\n], [gl_cv_size_max=yes])\n    if test -z \"$gl_cv_size_max\"; then\n      dnl Define it ourselves. Here we assume that the type 'size_t' is not wider\n      dnl than the type 'unsigned long'. Try hard to find a definition that can\n      dnl be used in a preprocessor #if, i.e. doesn't contain a cast.\n      AC_COMPUTE_INT([size_t_bits_minus_1], [sizeof (size_t) * CHAR_BIT - 1],\n        [#include <stddef.h>\n#include <limits.h>], [size_t_bits_minus_1=])\n      AC_COMPUTE_INT([fits_in_uint], [sizeof (size_t) <= sizeof (unsigned int)],\n        [#include <stddef.h>], [fits_in_uint=])\n      if test -n \"$size_t_bits_minus_1\" && test -n \"$fits_in_uint\"; then\n        if test $fits_in_uint = 1; then\n          dnl Even though SIZE_MAX fits in an unsigned int, it must be of type\n          dnl 'unsigned long' if the type 'size_t' is the same as 'unsigned long'.\n          AC_COMPILE_IFELSE(\n            [AC_LANG_PROGRAM(\n               [[#include <stddef.h>\n                 extern size_t foo;\n                 extern unsigned long foo;\n               ]],\n               [[]])],\n            [fits_in_uint=0])\n        fi\n        dnl We cannot use 'expr' to simplify this expression, because 'expr'\n        dnl works only with 'long' integers in the host environment, while we\n        dnl might be cross-compiling from a 32-bit platform to a 64-bit platform.\n        if test $fits_in_uint = 1; then\n          gl_cv_size_max=\"(((1U << $size_t_bits_minus_1) - 1) * 2 + 1)\"\n        else\n          gl_cv_size_max=\"(((1UL << $size_t_bits_minus_1) - 1) * 2 + 1)\"\n        fi\n      else\n        dnl Shouldn't happen, but who knows...\n        gl_cv_size_max='((size_t)~(size_t)0)'\n      fi\n    fi\n  ])\n  if test \"$gl_cv_size_max\" != yes; then\n    AC_DEFINE_UNQUOTED([SIZE_MAX], [$gl_cv_size_max],\n      [Define as the maximum value of type 'size_t', if the system doesn't define it.])\n  fi\n  dnl Don't redefine SIZE_MAX in config.h if config.h is re-included after\n  dnl <stdint.h>. Remember that the #undef in AH_VERBATIM gets replaced with\n  dnl #define by AC_DEFINE_UNQUOTED.\n  AH_VERBATIM([SIZE_MAX],\n[/* Define as the maximum value of type 'size_t', if the system doesn't define\n   it. */\n#ifndef SIZE_MAX\n# undef SIZE_MAX\n#endif])\n])\n\ndnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in.\ndnl Remove this when we can assume autoconf >= 2.61.\nm4_ifdef([AC_COMPUTE_INT], [], [\n  AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/ssize_t.m4",
    "content": "# ssize_t.m4 serial 5 (gettext-0.18.2)\ndnl Copyright (C) 2001-2003, 2006, 2010-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\ndnl Test whether ssize_t is defined.\n\nAC_DEFUN([gt_TYPE_SSIZE_T],\n[\n  AC_CACHE_CHECK([for ssize_t], [gt_cv_ssize_t],\n    [AC_COMPILE_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <sys/types.h>]],\n          [[int x = sizeof (ssize_t *) + sizeof (ssize_t);\n            return !x;]])],\n       [gt_cv_ssize_t=yes], [gt_cv_ssize_t=no])])\n  if test $gt_cv_ssize_t = no; then\n    AC_DEFINE([ssize_t], [int],\n              [Define as a signed type of the same size as size_t.])\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/stat.m4",
    "content": "# serial 11\n\n# Copyright (C) 2009-2017 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_FUNC_STAT],\n[\n  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles\n  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])\n  AC_CHECK_FUNCS_ONCE([lstat])\n  dnl mingw is the only known platform where stat(\".\") and stat(\"./\") differ\n  AC_CACHE_CHECK([whether stat handles trailing slashes on directories],\n      [gl_cv_func_stat_dir_slash],\n      [AC_RUN_IFELSE(\n         [AC_LANG_PROGRAM(\n           [[#include <sys/stat.h>\n]], [[struct stat st; return stat (\".\", &st) != stat (\"./\", &st);]])],\n         [gl_cv_func_stat_dir_slash=yes], [gl_cv_func_stat_dir_slash=no],\n         [case $host_os in\n            mingw*) gl_cv_func_stat_dir_slash=\"guessing no\";;\n            *) gl_cv_func_stat_dir_slash=\"guessing yes\";;\n          esac])])\n  dnl AIX 7.1, Solaris 9, mingw64 mistakenly succeed on stat(\"file/\").\n  dnl (For mingw, this is due to a broken stat() override in libmingwex.a.)\n  dnl FreeBSD 7.2 mistakenly succeeds on stat(\"link-to-file/\").\n  AC_CACHE_CHECK([whether stat handles trailing slashes on files],\n      [gl_cv_func_stat_file_slash],\n      [touch conftest.tmp\n       # Assume that if we have lstat, we can also check symlinks.\n       if test $ac_cv_func_lstat = yes; then\n         ln -s conftest.tmp conftest.lnk\n       fi\n       AC_RUN_IFELSE(\n         [AC_LANG_PROGRAM(\n           [[#include <sys/stat.h>\n]], [[int result = 0;\n      struct stat st;\n      if (!stat (\"conftest.tmp/\", &st))\n        result |= 1;\n#if HAVE_LSTAT\n      if (!stat (\"conftest.lnk/\", &st))\n        result |= 2;\n#endif\n      return result;\n           ]])],\n         [gl_cv_func_stat_file_slash=yes], [gl_cv_func_stat_file_slash=no],\n         [case \"$host_os\" in\n                    # Guess yes on glibc systems.\n            *-gnu*) gl_cv_func_stat_file_slash=\"guessing yes\" ;;\n                    # If we don't know, assume the worst.\n            *)      gl_cv_func_stat_file_slash=\"guessing no\" ;;\n          esac\n         ])\n       rm -f conftest.tmp conftest.lnk])\n  case $gl_cv_func_stat_dir_slash in\n    *no) REPLACE_STAT=1\n      AC_DEFINE([REPLACE_FUNC_STAT_DIR], [1], [Define to 1 if stat needs\n        help when passed a directory name with a trailing slash]);;\n  esac\n  case $gl_cv_func_stat_file_slash in\n    *no) REPLACE_STAT=1\n      AC_DEFINE([REPLACE_FUNC_STAT_FILE], [1], [Define to 1 if stat needs\n        help when passed a file name with a trailing slash]);;\n  esac\n])\n\n# Prerequisites of lib/stat.c.\nAC_DEFUN([gl_PREREQ_STAT], [:])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/stdbool.m4",
    "content": "# Check for stdbool.h that conforms to C99.\n\ndnl Copyright (C) 2002-2006, 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\n#serial 7\n\n# Prepare for substituting <stdbool.h> if it is not supported.\n\nAC_DEFUN([AM_STDBOOL_H],\n[\n  AC_REQUIRE([AC_CHECK_HEADER_STDBOOL])\n\n  # Define two additional variables used in the Makefile substitution.\n\n  if test \"$ac_cv_header_stdbool_h\" = yes; then\n    STDBOOL_H=''\n  else\n    STDBOOL_H='stdbool.h'\n  fi\n  AC_SUBST([STDBOOL_H])\n  AM_CONDITIONAL([GL_GENERATE_STDBOOL_H], [test -n \"$STDBOOL_H\"])\n\n  if test \"$ac_cv_type__Bool\" = yes; then\n    HAVE__BOOL=1\n  else\n    HAVE__BOOL=0\n  fi\n  AC_SUBST([HAVE__BOOL])\n])\n\n# AM_STDBOOL_H will be renamed to gl_STDBOOL_H in the future.\nAC_DEFUN([gl_STDBOOL_H], [AM_STDBOOL_H])\n\n# This version of the macro is needed in autoconf <= 2.68.\n\nAC_DEFUN([AC_CHECK_HEADER_STDBOOL],\n  [AC_CACHE_CHECK([for stdbool.h that conforms to C99],\n     [ac_cv_header_stdbool_h],\n     [AC_COMPILE_IFELSE(\n        [AC_LANG_PROGRAM(\n           [[\n             #include <stdbool.h>\n\n             #ifdef __cplusplus\n              typedef bool Bool;\n             #else\n              typedef _Bool Bool;\n              #ifndef bool\n               \"error: bool is not defined\"\n              #endif\n              #ifndef false\n               \"error: false is not defined\"\n              #endif\n              #if false\n               \"error: false is not 0\"\n              #endif\n              #ifndef true\n               \"error: true is not defined\"\n              #endif\n              #if true != 1\n               \"error: true is not 1\"\n              #endif\n             #endif\n\n             #ifndef __bool_true_false_are_defined\n              \"error: __bool_true_false_are_defined is not defined\"\n             #endif\n\n             struct s { Bool s: 1; Bool t; bool u: 1; bool v; } s;\n\n             char a[true == 1 ? 1 : -1];\n             char b[false == 0 ? 1 : -1];\n             char c[__bool_true_false_are_defined == 1 ? 1 : -1];\n             char d[(bool) 0.5 == true ? 1 : -1];\n             /* See body of main program for 'e'.  */\n             char f[(Bool) 0.0 == false ? 1 : -1];\n             char g[true];\n             char h[sizeof (Bool)];\n             char i[sizeof s.t];\n             enum { j = false, k = true, l = false * true, m = true * 256 };\n             /* The following fails for\n                HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003]. */\n             Bool n[m];\n             char o[sizeof n == m * sizeof n[0] ? 1 : -1];\n             char p[-1 - (Bool) 0 < 0 && -1 - (bool) 0 < 0 ? 1 : -1];\n             /* Catch a bug in an HP-UX C compiler.  See\n                http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02303.html\n                http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00161.html\n              */\n             Bool q = true;\n             Bool *pq = &q;\n             bool *qq = &q;\n           ]],\n           [[\n             bool e = &s;\n             *pq |= q; *pq |= ! q;\n             *qq |= q; *qq |= ! q;\n             /* Refer to every declared value, to avoid compiler optimizations.  */\n             return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l\n                     + !m + !n + !o + !p + !q + !pq + !qq);\n           ]])],\n        [ac_cv_header_stdbool_h=yes],\n        [ac_cv_header_stdbool_h=no])])\n   AC_CHECK_TYPES([_Bool])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/stddef_h.m4",
    "content": "dnl A placeholder for <stddef.h>, for platforms that have issues.\n# stddef_h.m4 serial 5\ndnl Copyright (C) 2009-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_STDDEF_H],\n[\n  AC_REQUIRE([gl_STDDEF_H_DEFAULTS])\n  AC_REQUIRE([gt_TYPE_WCHAR_T])\n  STDDEF_H=\n  AC_CHECK_TYPE([max_align_t], [], [HAVE_MAX_ALIGN_T=0; STDDEF_H=stddef.h],\n    [[#include <stddef.h>\n    ]])\n  if test $gt_cv_c_wchar_t = no; then\n    HAVE_WCHAR_T=0\n    STDDEF_H=stddef.h\n  fi\n  AC_CACHE_CHECK([whether NULL can be used in arbitrary expressions],\n    [gl_cv_decl_null_works],\n    [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stddef.h>\n      int test[2 * (sizeof NULL == sizeof (void *)) -1];\n]])],\n      [gl_cv_decl_null_works=yes],\n      [gl_cv_decl_null_works=no])])\n  if test $gl_cv_decl_null_works = no; then\n    REPLACE_NULL=1\n    STDDEF_H=stddef.h\n  fi\n  AC_SUBST([STDDEF_H])\n  AM_CONDITIONAL([GL_GENERATE_STDDEF_H], [test -n \"$STDDEF_H\"])\n  if test -n \"$STDDEF_H\"; then\n    gl_NEXT_HEADERS([stddef.h])\n  fi\n])\n\nAC_DEFUN([gl_STDDEF_MODULE_INDICATOR],\n[\n  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.\n  AC_REQUIRE([gl_STDDEF_H_DEFAULTS])\n  gl_MODULE_INDICATOR_SET_VARIABLE([$1])\n])\n\nAC_DEFUN([gl_STDDEF_H_DEFAULTS],\n[\n  dnl Assume proper GNU behavior unless another module says otherwise.\n  REPLACE_NULL=0;                AC_SUBST([REPLACE_NULL])\n  HAVE_MAX_ALIGN_T=1;            AC_SUBST([HAVE_MAX_ALIGN_T])\n  HAVE_WCHAR_T=1;                AC_SUBST([HAVE_WCHAR_T])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/stdint.m4",
    "content": "# stdint.m4 serial 50\ndnl Copyright (C) 2001-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Paul Eggert and Bruno Haible.\ndnl Test whether <stdint.h> is supported or must be substituted.\n\nAC_DEFUN_ONCE([gl_STDINT_H],\n[\n  AC_PREREQ([2.59])dnl\n\n  AC_REQUIRE([gl_LIMITS_H])\n  AC_REQUIRE([gt_TYPE_WINT_T])\n\n  dnl Check for long long int and unsigned long long int.\n  AC_REQUIRE([AC_TYPE_LONG_LONG_INT])\n  if test $ac_cv_type_long_long_int = yes; then\n    HAVE_LONG_LONG_INT=1\n  else\n    HAVE_LONG_LONG_INT=0\n  fi\n  AC_SUBST([HAVE_LONG_LONG_INT])\n  AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])\n  if test $ac_cv_type_unsigned_long_long_int = yes; then\n    HAVE_UNSIGNED_LONG_LONG_INT=1\n  else\n    HAVE_UNSIGNED_LONG_LONG_INT=0\n  fi\n  AC_SUBST([HAVE_UNSIGNED_LONG_LONG_INT])\n\n  dnl Check for <wchar.h>, in the same way as gl_WCHAR_H does.\n  AC_CHECK_HEADERS_ONCE([wchar.h])\n  if test $ac_cv_header_wchar_h = yes; then\n    HAVE_WCHAR_H=1\n  else\n    HAVE_WCHAR_H=0\n  fi\n  AC_SUBST([HAVE_WCHAR_H])\n\n  dnl Check for <inttypes.h>.\n  dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_inttypes_h.\n  if test $ac_cv_header_inttypes_h = yes; then\n    HAVE_INTTYPES_H=1\n  else\n    HAVE_INTTYPES_H=0\n  fi\n  AC_SUBST([HAVE_INTTYPES_H])\n\n  dnl Check for <sys/types.h>.\n  dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_sys_types_h.\n  if test $ac_cv_header_sys_types_h = yes; then\n    HAVE_SYS_TYPES_H=1\n  else\n    HAVE_SYS_TYPES_H=0\n  fi\n  AC_SUBST([HAVE_SYS_TYPES_H])\n\n  gl_CHECK_NEXT_HEADERS([stdint.h])\n  if test $ac_cv_header_stdint_h = yes; then\n    HAVE_STDINT_H=1\n  else\n    HAVE_STDINT_H=0\n  fi\n  AC_SUBST([HAVE_STDINT_H])\n\n  dnl Now see whether we need a substitute <stdint.h>.\n  if test $ac_cv_header_stdint_h = yes; then\n    AC_CACHE_CHECK([whether stdint.h conforms to C99],\n      [gl_cv_header_working_stdint_h],\n      [gl_cv_header_working_stdint_h=no\n       AC_COMPILE_IFELSE([\n         AC_LANG_PROGRAM([[\n#define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */\n#define __STDC_CONSTANT_MACROS 1\n#define __STDC_LIMIT_MACROS 1\n#include <stdint.h>\n/* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in <wchar.h>.  */\n#if !(defined WCHAR_MIN && defined WCHAR_MAX)\n#error \"WCHAR_MIN, WCHAR_MAX not defined in <stdint.h>\"\n#endif\n]\ngl_STDINT_INCLUDES\n[\n#ifdef INT8_MAX\nint8_t a1 = INT8_MAX;\nint8_t a1min = INT8_MIN;\n#endif\n#ifdef INT16_MAX\nint16_t a2 = INT16_MAX;\nint16_t a2min = INT16_MIN;\n#endif\n#ifdef INT32_MAX\nint32_t a3 = INT32_MAX;\nint32_t a3min = INT32_MIN;\n#endif\n#ifdef INT64_MAX\nint64_t a4 = INT64_MAX;\nint64_t a4min = INT64_MIN;\n#endif\n#ifdef UINT8_MAX\nuint8_t b1 = UINT8_MAX;\n#else\ntypedef int b1[(unsigned char) -1 != 255 ? 1 : -1];\n#endif\n#ifdef UINT16_MAX\nuint16_t b2 = UINT16_MAX;\n#endif\n#ifdef UINT32_MAX\nuint32_t b3 = UINT32_MAX;\n#endif\n#ifdef UINT64_MAX\nuint64_t b4 = UINT64_MAX;\n#endif\nint_least8_t c1 = INT8_C (0x7f);\nint_least8_t c1max = INT_LEAST8_MAX;\nint_least8_t c1min = INT_LEAST8_MIN;\nint_least16_t c2 = INT16_C (0x7fff);\nint_least16_t c2max = INT_LEAST16_MAX;\nint_least16_t c2min = INT_LEAST16_MIN;\nint_least32_t c3 = INT32_C (0x7fffffff);\nint_least32_t c3max = INT_LEAST32_MAX;\nint_least32_t c3min = INT_LEAST32_MIN;\nint_least64_t c4 = INT64_C (0x7fffffffffffffff);\nint_least64_t c4max = INT_LEAST64_MAX;\nint_least64_t c4min = INT_LEAST64_MIN;\nuint_least8_t d1 = UINT8_C (0xff);\nuint_least8_t d1max = UINT_LEAST8_MAX;\nuint_least16_t d2 = UINT16_C (0xffff);\nuint_least16_t d2max = UINT_LEAST16_MAX;\nuint_least32_t d3 = UINT32_C (0xffffffff);\nuint_least32_t d3max = UINT_LEAST32_MAX;\nuint_least64_t d4 = UINT64_C (0xffffffffffffffff);\nuint_least64_t d4max = UINT_LEAST64_MAX;\nint_fast8_t e1 = INT_FAST8_MAX;\nint_fast8_t e1min = INT_FAST8_MIN;\nint_fast16_t e2 = INT_FAST16_MAX;\nint_fast16_t e2min = INT_FAST16_MIN;\nint_fast32_t e3 = INT_FAST32_MAX;\nint_fast32_t e3min = INT_FAST32_MIN;\nint_fast64_t e4 = INT_FAST64_MAX;\nint_fast64_t e4min = INT_FAST64_MIN;\nuint_fast8_t f1 = UINT_FAST8_MAX;\nuint_fast16_t f2 = UINT_FAST16_MAX;\nuint_fast32_t f3 = UINT_FAST32_MAX;\nuint_fast64_t f4 = UINT_FAST64_MAX;\n#ifdef INTPTR_MAX\nintptr_t g = INTPTR_MAX;\nintptr_t gmin = INTPTR_MIN;\n#endif\n#ifdef UINTPTR_MAX\nuintptr_t h = UINTPTR_MAX;\n#endif\nintmax_t i = INTMAX_MAX;\nuintmax_t j = UINTMAX_MAX;\n\n/* Check that SIZE_MAX has the correct type, if possible.  */\n#if 201112 <= __STDC_VERSION__\nint k = _Generic (SIZE_MAX, size_t: 0);\n#elif (2 <= __GNUC__ || defined __IBM__TYPEOF__ \\\n       || (0x5110 <= __SUNPRO_C && !__STDC__))\nextern size_t k;\nextern __typeof__ (SIZE_MAX) k;\n#endif\n\n#include <limits.h> /* for CHAR_BIT */\n#define TYPE_MINIMUM(t) \\\n  ((t) ((t) 0 < (t) -1 ? (t) 0 : ~ TYPE_MAXIMUM (t)))\n#define TYPE_MAXIMUM(t) \\\n  ((t) ((t) 0 < (t) -1 \\\n        ? (t) -1 \\\n        : ((((t) 1 << (sizeof (t) * CHAR_BIT - 2)) - 1) * 2 + 1)))\nstruct s {\n  int check_PTRDIFF:\n      PTRDIFF_MIN == TYPE_MINIMUM (ptrdiff_t)\n      && PTRDIFF_MAX == TYPE_MAXIMUM (ptrdiff_t)\n      ? 1 : -1;\n  /* Detect bug in FreeBSD 6.0 / ia64.  */\n  int check_SIG_ATOMIC:\n      SIG_ATOMIC_MIN == TYPE_MINIMUM (sig_atomic_t)\n      && SIG_ATOMIC_MAX == TYPE_MAXIMUM (sig_atomic_t)\n      ? 1 : -1;\n  int check_SIZE: SIZE_MAX == TYPE_MAXIMUM (size_t) ? 1 : -1;\n  int check_WCHAR:\n      WCHAR_MIN == TYPE_MINIMUM (wchar_t)\n      && WCHAR_MAX == TYPE_MAXIMUM (wchar_t)\n      ? 1 : -1;\n  /* Detect bug in mingw.  */\n  int check_WINT:\n      WINT_MIN == TYPE_MINIMUM (wint_t)\n      && WINT_MAX == TYPE_MAXIMUM (wint_t)\n      ? 1 : -1;\n\n  /* Detect bugs in glibc 2.4 and Solaris 10 stdint.h, among others.  */\n  int check_UINT8_C:\n        (-1 < UINT8_C (0)) == (-1 < (uint_least8_t) 0) ? 1 : -1;\n  int check_UINT16_C:\n        (-1 < UINT16_C (0)) == (-1 < (uint_least16_t) 0) ? 1 : -1;\n\n  /* Detect bugs in OpenBSD 3.9 stdint.h.  */\n#ifdef UINT8_MAX\n  int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1;\n#endif\n#ifdef UINT16_MAX\n  int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1;\n#endif\n#ifdef UINT32_MAX\n  int check_uint32: (uint32_t) -1 == UINT32_MAX ? 1 : -1;\n#endif\n#ifdef UINT64_MAX\n  int check_uint64: (uint64_t) -1 == UINT64_MAX ? 1 : -1;\n#endif\n  int check_uint_least8: (uint_least8_t) -1 == UINT_LEAST8_MAX ? 1 : -1;\n  int check_uint_least16: (uint_least16_t) -1 == UINT_LEAST16_MAX ? 1 : -1;\n  int check_uint_least32: (uint_least32_t) -1 == UINT_LEAST32_MAX ? 1 : -1;\n  int check_uint_least64: (uint_least64_t) -1 == UINT_LEAST64_MAX ? 1 : -1;\n  int check_uint_fast8: (uint_fast8_t) -1 == UINT_FAST8_MAX ? 1 : -1;\n  int check_uint_fast16: (uint_fast16_t) -1 == UINT_FAST16_MAX ? 1 : -1;\n  int check_uint_fast32: (uint_fast32_t) -1 == UINT_FAST32_MAX ? 1 : -1;\n  int check_uint_fast64: (uint_fast64_t) -1 == UINT_FAST64_MAX ? 1 : -1;\n  int check_uintptr: (uintptr_t) -1 == UINTPTR_MAX ? 1 : -1;\n  int check_uintmax: (uintmax_t) -1 == UINTMAX_MAX ? 1 : -1;\n  int check_size: (size_t) -1 == SIZE_MAX ? 1 : -1;\n};\n         ]])],\n         [dnl Determine whether the various *_MIN, *_MAX macros are usable\n          dnl in preprocessor expression. We could do it by compiling a test\n          dnl program for each of these macros. It is faster to run a program\n          dnl that inspects the macro expansion.\n          dnl This detects a bug on HP-UX 11.23/ia64.\n          AC_RUN_IFELSE([\n            AC_LANG_PROGRAM([[\n#define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */\n#define __STDC_CONSTANT_MACROS 1\n#define __STDC_LIMIT_MACROS 1\n#include <stdint.h>\n]\ngl_STDINT_INCLUDES\n[\n#include <stdio.h>\n#include <string.h>\n#define MVAL(macro) MVAL1(macro)\n#define MVAL1(expression) #expression\nstatic const char *macro_values[] =\n  {\n#ifdef INT8_MAX\n    MVAL (INT8_MAX),\n#endif\n#ifdef INT16_MAX\n    MVAL (INT16_MAX),\n#endif\n#ifdef INT32_MAX\n    MVAL (INT32_MAX),\n#endif\n#ifdef INT64_MAX\n    MVAL (INT64_MAX),\n#endif\n#ifdef UINT8_MAX\n    MVAL (UINT8_MAX),\n#endif\n#ifdef UINT16_MAX\n    MVAL (UINT16_MAX),\n#endif\n#ifdef UINT32_MAX\n    MVAL (UINT32_MAX),\n#endif\n#ifdef UINT64_MAX\n    MVAL (UINT64_MAX),\n#endif\n    NULL\n  };\n]], [[\n  const char **mv;\n  for (mv = macro_values; *mv != NULL; mv++)\n    {\n      const char *value = *mv;\n      /* Test whether it looks like a cast expression.  */\n      if (strncmp (value, \"((unsigned int)\"/*)*/, 15) == 0\n          || strncmp (value, \"((unsigned short)\"/*)*/, 17) == 0\n          || strncmp (value, \"((unsigned char)\"/*)*/, 16) == 0\n          || strncmp (value, \"((int)\"/*)*/, 6) == 0\n          || strncmp (value, \"((signed short)\"/*)*/, 15) == 0\n          || strncmp (value, \"((signed char)\"/*)*/, 14) == 0)\n        return mv - macro_values + 1;\n    }\n  return 0;\n]])],\n              [gl_cv_header_working_stdint_h=yes],\n              [],\n              [dnl When cross-compiling, assume it works.\n               gl_cv_header_working_stdint_h=yes\n              ])\n         ])\n      ])\n  fi\n\n  HAVE_C99_STDINT_H=0\n  HAVE_SYS_BITYPES_H=0\n  HAVE_SYS_INTTYPES_H=0\n  STDINT_H=stdint.h\n  if test \"$gl_cv_header_working_stdint_h\" = yes; then\n    HAVE_C99_STDINT_H=1\n    dnl Now see whether the system <stdint.h> works without\n    dnl __STDC_CONSTANT_MACROS/__STDC_LIMIT_MACROS defined.\n    AC_CACHE_CHECK([whether stdint.h predates C++11],\n      [gl_cv_header_stdint_predates_cxx11_h],\n      [gl_cv_header_stdint_predates_cxx11_h=yes\n       AC_COMPILE_IFELSE([\n         AC_LANG_PROGRAM([[\n#define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */\n#include <stdint.h>\n]\ngl_STDINT_INCLUDES\n[\nintmax_t im = INTMAX_MAX;\nint32_t i32 = INT32_C (0x7fffffff);\n         ]])],\n         [gl_cv_header_stdint_predates_cxx11_h=no])])\n\n    if test \"$gl_cv_header_stdint_predates_cxx11_h\" = yes; then\n      AC_DEFINE([__STDC_CONSTANT_MACROS], [1],\n                [Define to 1 if the system <stdint.h> predates C++11.])\n      AC_DEFINE([__STDC_LIMIT_MACROS], [1],\n                [Define to 1 if the system <stdint.h> predates C++11.])\n    fi\n    AC_CACHE_CHECK([whether stdint.h has UINTMAX_WIDTH etc.],\n      [gl_cv_header_stdint_width],\n      [gl_cv_header_stdint_width=no\n       AC_COMPILE_IFELSE(\n         [AC_LANG_PROGRAM([[\n            /* Work if build is not clean.  */\n            #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1\n            #ifndef __STDC_WANT_IEC_60559_BFP_EXT__\n             #define __STDC_WANT_IEC_60559_BFP_EXT__ 1\n            #endif\n            #include <stdint.h>\n            ]gl_STDINT_INCLUDES[\n            int iw = UINTMAX_WIDTH;\n            ]])],\n         [gl_cv_header_stdint_width=yes])])\n    if test \"$gl_cv_header_stdint_width\" = yes; then\n      STDINT_H=\n    fi\n  else\n    dnl Check for <sys/inttypes.h>, and for\n    dnl <sys/bitypes.h> (used in Linux libc4 >= 4.6.7 and libc5).\n    AC_CHECK_HEADERS([sys/inttypes.h sys/bitypes.h])\n    if test $ac_cv_header_sys_inttypes_h = yes; then\n      HAVE_SYS_INTTYPES_H=1\n    fi\n    if test $ac_cv_header_sys_bitypes_h = yes; then\n      HAVE_SYS_BITYPES_H=1\n    fi\n    gl_STDINT_TYPE_PROPERTIES\n  fi\n\n  dnl The substitute stdint.h needs the substitute limit.h's _GL_INTEGER_WIDTH.\n  LIMITS_H=limits.h\n  AM_CONDITIONAL([GL_GENERATE_LIMITS_H], [test -n \"$LIMITS_H\"])\n\n  AC_SUBST([HAVE_C99_STDINT_H])\n  AC_SUBST([HAVE_SYS_BITYPES_H])\n  AC_SUBST([HAVE_SYS_INTTYPES_H])\n  AC_SUBST([STDINT_H])\n  AM_CONDITIONAL([GL_GENERATE_STDINT_H], [test -n \"$STDINT_H\"])\n])\n\ndnl gl_STDINT_BITSIZEOF(TYPES, INCLUDES)\ndnl Determine the size of each of the given types in bits.\nAC_DEFUN([gl_STDINT_BITSIZEOF],\n[\n  dnl Use a shell loop, to avoid bloating configure, and\n  dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into\n  dnl   config.h.in,\n  dnl - extra AC_SUBST calls, so that the right substitutions are made.\n  m4_foreach_w([gltype], [$1],\n    [AH_TEMPLATE([BITSIZEOF_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]),\n       [Define to the number of bits in type ']gltype['.])])\n  for gltype in $1 ; do\n    AC_CACHE_CHECK([for bit size of $gltype], [gl_cv_bitsizeof_${gltype}],\n      [AC_COMPUTE_INT([result], [sizeof ($gltype) * CHAR_BIT],\n         [$2\n#include <limits.h>], [result=unknown])\n       eval gl_cv_bitsizeof_${gltype}=\\$result\n      ])\n    eval result=\\$gl_cv_bitsizeof_${gltype}\n    if test $result = unknown; then\n      dnl Use a nonempty default, because some compilers, such as IRIX 5 cc,\n      dnl do a syntax check even on unused #if conditions and give an error\n      dnl on valid C code like this:\n      dnl   #if 0\n      dnl   # if  > 32\n      dnl   # endif\n      dnl   #endif\n      result=0\n    fi\n    GLTYPE=`echo \"$gltype\" | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`\n    AC_DEFINE_UNQUOTED([BITSIZEOF_${GLTYPE}], [$result])\n    eval BITSIZEOF_${GLTYPE}=\\$result\n  done\n  m4_foreach_w([gltype], [$1],\n    [AC_SUBST([BITSIZEOF_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))])\n])\n\ndnl gl_CHECK_TYPES_SIGNED(TYPES, INCLUDES)\ndnl Determine the signedness of each of the given types.\ndnl Define HAVE_SIGNED_TYPE if type is signed.\nAC_DEFUN([gl_CHECK_TYPES_SIGNED],\n[\n  dnl Use a shell loop, to avoid bloating configure, and\n  dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into\n  dnl   config.h.in,\n  dnl - extra AC_SUBST calls, so that the right substitutions are made.\n  m4_foreach_w([gltype], [$1],\n    [AH_TEMPLATE([HAVE_SIGNED_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]),\n       [Define to 1 if ']gltype[' is a signed integer type.])])\n  for gltype in $1 ; do\n    AC_CACHE_CHECK([whether $gltype is signed], [gl_cv_type_${gltype}_signed],\n      [AC_COMPILE_IFELSE(\n         [AC_LANG_PROGRAM([$2[\n            int verify[2 * (($gltype) -1 < ($gltype) 0) - 1];]])],\n         result=yes, result=no)\n       eval gl_cv_type_${gltype}_signed=\\$result\n      ])\n    eval result=\\$gl_cv_type_${gltype}_signed\n    GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`\n    if test \"$result\" = yes; then\n      AC_DEFINE_UNQUOTED([HAVE_SIGNED_${GLTYPE}], [1])\n      eval HAVE_SIGNED_${GLTYPE}=1\n    else\n      eval HAVE_SIGNED_${GLTYPE}=0\n    fi\n  done\n  m4_foreach_w([gltype], [$1],\n    [AC_SUBST([HAVE_SIGNED_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))])\n])\n\ndnl gl_INTEGER_TYPE_SUFFIX(TYPES, INCLUDES)\ndnl Determine the suffix to use for integer constants of the given types.\ndnl Define t_SUFFIX for each such type.\nAC_DEFUN([gl_INTEGER_TYPE_SUFFIX],\n[\n  dnl Use a shell loop, to avoid bloating configure, and\n  dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into\n  dnl   config.h.in,\n  dnl - extra AC_SUBST calls, so that the right substitutions are made.\n  m4_foreach_w([gltype], [$1],\n    [AH_TEMPLATE(m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX],\n       [Define to l, ll, u, ul, ull, etc., as suitable for\n        constants of type ']gltype['.])])\n  for gltype in $1 ; do\n    AC_CACHE_CHECK([for $gltype integer literal suffix],\n      [gl_cv_type_${gltype}_suffix],\n      [eval gl_cv_type_${gltype}_suffix=no\n       eval result=\\$gl_cv_type_${gltype}_signed\n       if test \"$result\" = yes; then\n         glsufu=\n       else\n         glsufu=u\n       fi\n       for glsuf in \"$glsufu\" ${glsufu}l ${glsufu}ll ${glsufu}i64; do\n         case $glsuf in\n           '')  gltype1='int';;\n           l)   gltype1='long int';;\n           ll)  gltype1='long long int';;\n           i64) gltype1='__int64';;\n           u)   gltype1='unsigned int';;\n           ul)  gltype1='unsigned long int';;\n           ull) gltype1='unsigned long long int';;\n           ui64)gltype1='unsigned __int64';;\n         esac\n         AC_COMPILE_IFELSE(\n           [AC_LANG_PROGRAM([$2[\n              extern $gltype foo;\n              extern $gltype1 foo;]])],\n           [eval gl_cv_type_${gltype}_suffix=\\$glsuf])\n         eval result=\\$gl_cv_type_${gltype}_suffix\n         test \"$result\" != no && break\n       done])\n    GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`\n    eval result=\\$gl_cv_type_${gltype}_suffix\n    test \"$result\" = no && result=\n    eval ${GLTYPE}_SUFFIX=\\$result\n    AC_DEFINE_UNQUOTED([${GLTYPE}_SUFFIX], [$result])\n  done\n  m4_foreach_w([gltype], [$1],\n    [AC_SUBST(m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX])])\n])\n\ndnl gl_STDINT_INCLUDES\nAC_DEFUN([gl_STDINT_INCLUDES],\n[[\n  /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n     included before <wchar.h>.  */\n  #include <stddef.h>\n  #include <signal.h>\n  #if HAVE_WCHAR_H\n  # include <stdio.h>\n  # include <time.h>\n  # include <wchar.h>\n  #endif\n]])\n\ndnl gl_STDINT_TYPE_PROPERTIES\ndnl Compute HAVE_SIGNED_t, BITSIZEOF_t and t_SUFFIX, for all the types t\ndnl of interest to stdint.in.h.\nAC_DEFUN([gl_STDINT_TYPE_PROPERTIES],\n[\n  AC_REQUIRE([gl_MULTIARCH])\n  if test $APPLE_UNIVERSAL_BUILD = 0; then\n    gl_STDINT_BITSIZEOF([ptrdiff_t size_t],\n      [gl_STDINT_INCLUDES])\n  fi\n  gl_STDINT_BITSIZEOF([sig_atomic_t wchar_t wint_t],\n    [gl_STDINT_INCLUDES])\n  gl_CHECK_TYPES_SIGNED([sig_atomic_t wchar_t wint_t],\n    [gl_STDINT_INCLUDES])\n  gl_cv_type_ptrdiff_t_signed=yes\n  gl_cv_type_size_t_signed=no\n  if test $APPLE_UNIVERSAL_BUILD = 0; then\n    gl_INTEGER_TYPE_SUFFIX([ptrdiff_t size_t],\n      [gl_STDINT_INCLUDES])\n  fi\n  gl_INTEGER_TYPE_SUFFIX([sig_atomic_t wchar_t wint_t],\n    [gl_STDINT_INCLUDES])\n\n  dnl If wint_t is smaller than 'int', it cannot satisfy the ISO C 99\n  dnl requirement that wint_t is \"unchanged by default argument promotions\".\n  dnl In this case gnulib's <wchar.h> and <wctype.h> override wint_t.\n  dnl Set the variable BITSIZEOF_WINT_T accordingly.\n  if test $GNULIB_OVERRIDES_WINT_T = 1; then\n    BITSIZEOF_WINT_T=32\n  fi\n])\n\ndnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in.\ndnl Remove this when we can assume autoconf >= 2.61.\nm4_ifdef([AC_COMPUTE_INT], [], [\n  AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/stdint_h.m4",
    "content": "# stdint_h.m4 serial 9\ndnl Copyright (C) 1997-2004, 2006, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Paul Eggert.\n\n# Define HAVE_STDINT_H_WITH_UINTMAX if <stdint.h> exists,\n# doesn't clash with <sys/types.h>, and declares uintmax_t.\n\nAC_DEFUN([gl_AC_HEADER_STDINT_H],\n[\n  AC_CACHE_CHECK([for stdint.h], [gl_cv_header_stdint_h],\n    [AC_COMPILE_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <sys/types.h>\n            #include <stdint.h>]],\n          [[uintmax_t i = (uintmax_t) -1; return !i;]])],\n       [gl_cv_header_stdint_h=yes],\n       [gl_cv_header_stdint_h=no])])\n  if test $gl_cv_header_stdint_h = yes; then\n    AC_DEFINE_UNQUOTED([HAVE_STDINT_H_WITH_UINTMAX], [1],\n      [Define if <stdint.h> exists, doesn't clash with <sys/types.h>,\n       and declares uintmax_t. ])\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/stdio_h.m4",
    "content": "# stdio_h.m4 serial 48\ndnl Copyright (C) 2007-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_STDIO_H],\n[\n  AH_VERBATIM([MINGW_ANSI_STDIO],\n[/* Use GNU style printf and scanf.  */\n#ifndef __USE_MINGW_ANSI_STDIO\n# undef __USE_MINGW_ANSI_STDIO\n#endif\n])\n  AC_DEFINE([__USE_MINGW_ANSI_STDIO])\n  AC_REQUIRE([gl_STDIO_H_DEFAULTS])\n  gl_NEXT_HEADERS([stdio.h])\n\n  dnl Determine whether __USE_MINGW_ANSI_STDIO makes printf and\n  dnl inttypes.h behave like gnu instead of system; we must give our\n  dnl printf wrapper the right attribute to match.\n  AC_CACHE_CHECK([which flavor of printf attribute matches inttypes macros],\n    [gl_cv_func_printf_attribute_flavor],\n    [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[\n       #define __STDC_FORMAT_MACROS 1\n       #include <stdio.h>\n       #include <inttypes.h>\n       /* For non-mingw systems, compilation will trivially succeed.\n          For mingw, compilation will succeed for older mingw (system\n          printf, \"I64d\") and fail for newer mingw (gnu printf, \"lld\"). */\n       #if ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) && \\\n         (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))\n       extern char PRIdMAX_probe[sizeof PRIdMAX == sizeof \"I64d\" ? 1 : -1];\n       #endif\n      ]])], [gl_cv_func_printf_attribute_flavor=system],\n      [gl_cv_func_printf_attribute_flavor=gnu])])\n  if test \"$gl_cv_func_printf_attribute_flavor\" = gnu; then\n    AC_DEFINE([GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU], [1],\n      [Define to 1 if printf and friends should be labeled with\n       attribute \"__gnu_printf__\" instead of \"__printf__\"])\n  fi\n\n  dnl No need to create extra modules for these functions. Everyone who uses\n  dnl <stdio.h> likely needs them.\n  GNULIB_FSCANF=1\n  gl_MODULE_INDICATOR([fscanf])\n  GNULIB_SCANF=1\n  gl_MODULE_INDICATOR([scanf])\n  GNULIB_FGETC=1\n  GNULIB_GETC=1\n  GNULIB_GETCHAR=1\n  GNULIB_FGETS=1\n  GNULIB_FREAD=1\n  dnl This ifdef is necessary to avoid an error \"missing file lib/stdio-read.c\"\n  dnl \"expected source file, required through AC_LIBSOURCES, not found\". It is\n  dnl also an optimization, to avoid performing a configure check whose result\n  dnl is not used. But it does not make the test of GNULIB_STDIO_H_NONBLOCKING\n  dnl or GNULIB_NONBLOCKING redundant.\n  m4_ifdef([gl_NONBLOCKING_IO], [\n    gl_NONBLOCKING_IO\n    if test $gl_cv_have_nonblocking != yes; then\n      REPLACE_STDIO_READ_FUNCS=1\n      AC_LIBOBJ([stdio-read])\n    fi\n  ])\n\n  dnl No need to create extra modules for these functions. Everyone who uses\n  dnl <stdio.h> likely needs them.\n  GNULIB_FPRINTF=1\n  GNULIB_PRINTF=1\n  GNULIB_VFPRINTF=1\n  GNULIB_VPRINTF=1\n  GNULIB_FPUTC=1\n  GNULIB_PUTC=1\n  GNULIB_PUTCHAR=1\n  GNULIB_FPUTS=1\n  GNULIB_PUTS=1\n  GNULIB_FWRITE=1\n  dnl This ifdef is necessary to avoid an error \"missing file lib/stdio-write.c\"\n  dnl \"expected source file, required through AC_LIBSOURCES, not found\". It is\n  dnl also an optimization, to avoid performing a configure check whose result\n  dnl is not used. But it does not make the test of GNULIB_STDIO_H_SIGPIPE or\n  dnl GNULIB_SIGPIPE redundant.\n  m4_ifdef([gl_SIGNAL_SIGPIPE], [\n    gl_SIGNAL_SIGPIPE\n    if test $gl_cv_header_signal_h_SIGPIPE != yes; then\n      REPLACE_STDIO_WRITE_FUNCS=1\n      AC_LIBOBJ([stdio-write])\n    fi\n  ])\n  dnl This ifdef is necessary to avoid an error \"missing file lib/stdio-write.c\"\n  dnl \"expected source file, required through AC_LIBSOURCES, not found\". It is\n  dnl also an optimization, to avoid performing a configure check whose result\n  dnl is not used. But it does not make the test of GNULIB_STDIO_H_NONBLOCKING\n  dnl or GNULIB_NONBLOCKING redundant.\n  m4_ifdef([gl_NONBLOCKING_IO], [\n    gl_NONBLOCKING_IO\n    if test $gl_cv_have_nonblocking != yes; then\n      REPLACE_STDIO_WRITE_FUNCS=1\n      AC_LIBOBJ([stdio-write])\n    fi\n  ])\n\n  dnl Check for declarations of anything we want to poison if the\n  dnl corresponding gnulib module is not in use, and which is not\n  dnl guaranteed by both C89 and C11.\n  gl_WARN_ON_USE_PREPARE([[#include <stdio.h>\n    ]], [dprintf fpurge fseeko ftello getdelim getline gets pclose popen\n    renameat snprintf tmpfile vdprintf vsnprintf])\n])\n\nAC_DEFUN([gl_STDIO_MODULE_INDICATOR],\n[\n  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.\n  AC_REQUIRE([gl_STDIO_H_DEFAULTS])\n  gl_MODULE_INDICATOR_SET_VARIABLE([$1])\n  dnl Define it also as a C macro, for the benefit of the unit tests.\n  gl_MODULE_INDICATOR_FOR_TESTS([$1])\n])\n\nAC_DEFUN([gl_STDIO_H_DEFAULTS],\n[\n  GNULIB_DPRINTF=0;              AC_SUBST([GNULIB_DPRINTF])\n  GNULIB_FCLOSE=0;               AC_SUBST([GNULIB_FCLOSE])\n  GNULIB_FDOPEN=0;               AC_SUBST([GNULIB_FDOPEN])\n  GNULIB_FFLUSH=0;               AC_SUBST([GNULIB_FFLUSH])\n  GNULIB_FGETC=0;                AC_SUBST([GNULIB_FGETC])\n  GNULIB_FGETS=0;                AC_SUBST([GNULIB_FGETS])\n  GNULIB_FOPEN=0;                AC_SUBST([GNULIB_FOPEN])\n  GNULIB_FPRINTF=0;              AC_SUBST([GNULIB_FPRINTF])\n  GNULIB_FPRINTF_POSIX=0;        AC_SUBST([GNULIB_FPRINTF_POSIX])\n  GNULIB_FPURGE=0;               AC_SUBST([GNULIB_FPURGE])\n  GNULIB_FPUTC=0;                AC_SUBST([GNULIB_FPUTC])\n  GNULIB_FPUTS=0;                AC_SUBST([GNULIB_FPUTS])\n  GNULIB_FREAD=0;                AC_SUBST([GNULIB_FREAD])\n  GNULIB_FREOPEN=0;              AC_SUBST([GNULIB_FREOPEN])\n  GNULIB_FSCANF=0;               AC_SUBST([GNULIB_FSCANF])\n  GNULIB_FSEEK=0;                AC_SUBST([GNULIB_FSEEK])\n  GNULIB_FSEEKO=0;               AC_SUBST([GNULIB_FSEEKO])\n  GNULIB_FTELL=0;                AC_SUBST([GNULIB_FTELL])\n  GNULIB_FTELLO=0;               AC_SUBST([GNULIB_FTELLO])\n  GNULIB_FWRITE=0;               AC_SUBST([GNULIB_FWRITE])\n  GNULIB_GETC=0;                 AC_SUBST([GNULIB_GETC])\n  GNULIB_GETCHAR=0;              AC_SUBST([GNULIB_GETCHAR])\n  GNULIB_GETDELIM=0;             AC_SUBST([GNULIB_GETDELIM])\n  GNULIB_GETLINE=0;              AC_SUBST([GNULIB_GETLINE])\n  GNULIB_OBSTACK_PRINTF=0;       AC_SUBST([GNULIB_OBSTACK_PRINTF])\n  GNULIB_OBSTACK_PRINTF_POSIX=0; AC_SUBST([GNULIB_OBSTACK_PRINTF_POSIX])\n  GNULIB_PCLOSE=0;               AC_SUBST([GNULIB_PCLOSE])\n  GNULIB_PERROR=0;               AC_SUBST([GNULIB_PERROR])\n  GNULIB_POPEN=0;                AC_SUBST([GNULIB_POPEN])\n  GNULIB_PRINTF=0;               AC_SUBST([GNULIB_PRINTF])\n  GNULIB_PRINTF_POSIX=0;         AC_SUBST([GNULIB_PRINTF_POSIX])\n  GNULIB_PUTC=0;                 AC_SUBST([GNULIB_PUTC])\n  GNULIB_PUTCHAR=0;              AC_SUBST([GNULIB_PUTCHAR])\n  GNULIB_PUTS=0;                 AC_SUBST([GNULIB_PUTS])\n  GNULIB_REMOVE=0;               AC_SUBST([GNULIB_REMOVE])\n  GNULIB_RENAME=0;               AC_SUBST([GNULIB_RENAME])\n  GNULIB_RENAMEAT=0;             AC_SUBST([GNULIB_RENAMEAT])\n  GNULIB_SCANF=0;                AC_SUBST([GNULIB_SCANF])\n  GNULIB_SNPRINTF=0;             AC_SUBST([GNULIB_SNPRINTF])\n  GNULIB_SPRINTF_POSIX=0;        AC_SUBST([GNULIB_SPRINTF_POSIX])\n  GNULIB_STDIO_H_NONBLOCKING=0;  AC_SUBST([GNULIB_STDIO_H_NONBLOCKING])\n  GNULIB_STDIO_H_SIGPIPE=0;      AC_SUBST([GNULIB_STDIO_H_SIGPIPE])\n  GNULIB_TMPFILE=0;              AC_SUBST([GNULIB_TMPFILE])\n  GNULIB_VASPRINTF=0;            AC_SUBST([GNULIB_VASPRINTF])\n  GNULIB_VFSCANF=0;              AC_SUBST([GNULIB_VFSCANF])\n  GNULIB_VSCANF=0;               AC_SUBST([GNULIB_VSCANF])\n  GNULIB_VDPRINTF=0;             AC_SUBST([GNULIB_VDPRINTF])\n  GNULIB_VFPRINTF=0;             AC_SUBST([GNULIB_VFPRINTF])\n  GNULIB_VFPRINTF_POSIX=0;       AC_SUBST([GNULIB_VFPRINTF_POSIX])\n  GNULIB_VPRINTF=0;              AC_SUBST([GNULIB_VPRINTF])\n  GNULIB_VPRINTF_POSIX=0;        AC_SUBST([GNULIB_VPRINTF_POSIX])\n  GNULIB_VSNPRINTF=0;            AC_SUBST([GNULIB_VSNPRINTF])\n  GNULIB_VSPRINTF_POSIX=0;       AC_SUBST([GNULIB_VSPRINTF_POSIX])\n  dnl Assume proper GNU behavior unless another module says otherwise.\n  HAVE_DECL_FPURGE=1;            AC_SUBST([HAVE_DECL_FPURGE])\n  HAVE_DECL_FSEEKO=1;            AC_SUBST([HAVE_DECL_FSEEKO])\n  HAVE_DECL_FTELLO=1;            AC_SUBST([HAVE_DECL_FTELLO])\n  HAVE_DECL_GETDELIM=1;          AC_SUBST([HAVE_DECL_GETDELIM])\n  HAVE_DECL_GETLINE=1;           AC_SUBST([HAVE_DECL_GETLINE])\n  HAVE_DECL_OBSTACK_PRINTF=1;    AC_SUBST([HAVE_DECL_OBSTACK_PRINTF])\n  HAVE_DECL_SNPRINTF=1;          AC_SUBST([HAVE_DECL_SNPRINTF])\n  HAVE_DECL_VSNPRINTF=1;         AC_SUBST([HAVE_DECL_VSNPRINTF])\n  HAVE_DPRINTF=1;                AC_SUBST([HAVE_DPRINTF])\n  HAVE_FSEEKO=1;                 AC_SUBST([HAVE_FSEEKO])\n  HAVE_FTELLO=1;                 AC_SUBST([HAVE_FTELLO])\n  HAVE_PCLOSE=1;                 AC_SUBST([HAVE_PCLOSE])\n  HAVE_POPEN=1;                  AC_SUBST([HAVE_POPEN])\n  HAVE_RENAMEAT=1;               AC_SUBST([HAVE_RENAMEAT])\n  HAVE_VASPRINTF=1;              AC_SUBST([HAVE_VASPRINTF])\n  HAVE_VDPRINTF=1;               AC_SUBST([HAVE_VDPRINTF])\n  REPLACE_DPRINTF=0;             AC_SUBST([REPLACE_DPRINTF])\n  REPLACE_FCLOSE=0;              AC_SUBST([REPLACE_FCLOSE])\n  REPLACE_FDOPEN=0;              AC_SUBST([REPLACE_FDOPEN])\n  REPLACE_FFLUSH=0;              AC_SUBST([REPLACE_FFLUSH])\n  REPLACE_FOPEN=0;               AC_SUBST([REPLACE_FOPEN])\n  REPLACE_FPRINTF=0;             AC_SUBST([REPLACE_FPRINTF])\n  REPLACE_FPURGE=0;              AC_SUBST([REPLACE_FPURGE])\n  REPLACE_FREOPEN=0;             AC_SUBST([REPLACE_FREOPEN])\n  REPLACE_FSEEK=0;               AC_SUBST([REPLACE_FSEEK])\n  REPLACE_FSEEKO=0;              AC_SUBST([REPLACE_FSEEKO])\n  REPLACE_FTELL=0;               AC_SUBST([REPLACE_FTELL])\n  REPLACE_FTELLO=0;              AC_SUBST([REPLACE_FTELLO])\n  REPLACE_GETDELIM=0;            AC_SUBST([REPLACE_GETDELIM])\n  REPLACE_GETLINE=0;             AC_SUBST([REPLACE_GETLINE])\n  REPLACE_OBSTACK_PRINTF=0;      AC_SUBST([REPLACE_OBSTACK_PRINTF])\n  REPLACE_PERROR=0;              AC_SUBST([REPLACE_PERROR])\n  REPLACE_POPEN=0;               AC_SUBST([REPLACE_POPEN])\n  REPLACE_PRINTF=0;              AC_SUBST([REPLACE_PRINTF])\n  REPLACE_REMOVE=0;              AC_SUBST([REPLACE_REMOVE])\n  REPLACE_RENAME=0;              AC_SUBST([REPLACE_RENAME])\n  REPLACE_RENAMEAT=0;            AC_SUBST([REPLACE_RENAMEAT])\n  REPLACE_SNPRINTF=0;            AC_SUBST([REPLACE_SNPRINTF])\n  REPLACE_SPRINTF=0;             AC_SUBST([REPLACE_SPRINTF])\n  REPLACE_STDIO_READ_FUNCS=0;    AC_SUBST([REPLACE_STDIO_READ_FUNCS])\n  REPLACE_STDIO_WRITE_FUNCS=0;   AC_SUBST([REPLACE_STDIO_WRITE_FUNCS])\n  REPLACE_TMPFILE=0;             AC_SUBST([REPLACE_TMPFILE])\n  REPLACE_VASPRINTF=0;           AC_SUBST([REPLACE_VASPRINTF])\n  REPLACE_VDPRINTF=0;            AC_SUBST([REPLACE_VDPRINTF])\n  REPLACE_VFPRINTF=0;            AC_SUBST([REPLACE_VFPRINTF])\n  REPLACE_VPRINTF=0;             AC_SUBST([REPLACE_VPRINTF])\n  REPLACE_VSNPRINTF=0;           AC_SUBST([REPLACE_VSNPRINTF])\n  REPLACE_VSPRINTF=0;            AC_SUBST([REPLACE_VSPRINTF])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/stdlib_h.m4",
    "content": "# stdlib_h.m4 serial 43\ndnl Copyright (C) 2007-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_STDLIB_H],\n[\n  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])\n  gl_NEXT_HEADERS([stdlib.h])\n\n  dnl Check for declarations of anything we want to poison if the\n  dnl corresponding gnulib module is not in use, and which is not\n  dnl guaranteed by C89.\n  gl_WARN_ON_USE_PREPARE([[#include <stdlib.h>\n#if HAVE_SYS_LOADAVG_H\n# include <sys/loadavg.h>\n#endif\n#if HAVE_RANDOM_H\n# include <random.h>\n#endif\n    ]], [_Exit atoll canonicalize_file_name getloadavg getsubopt grantpt\n    initstate initstate_r mkdtemp mkostemp mkostemps mkstemp mkstemps\n    posix_openpt ptsname ptsname_r qsort_r random random_r realpath rpmatch\n    secure_getenv setenv setstate setstate_r srandom srandom_r\n    strtod strtoll strtoull unlockpt unsetenv])\n])\n\nAC_DEFUN([gl_STDLIB_MODULE_INDICATOR],\n[\n  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.\n  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])\n  gl_MODULE_INDICATOR_SET_VARIABLE([$1])\n  dnl Define it also as a C macro, for the benefit of the unit tests.\n  gl_MODULE_INDICATOR_FOR_TESTS([$1])\n])\n\nAC_DEFUN([gl_STDLIB_H_DEFAULTS],\n[\n  GNULIB__EXIT=0;         AC_SUBST([GNULIB__EXIT])\n  GNULIB_ATOLL=0;         AC_SUBST([GNULIB_ATOLL])\n  GNULIB_CALLOC_POSIX=0;  AC_SUBST([GNULIB_CALLOC_POSIX])\n  GNULIB_CANONICALIZE_FILE_NAME=0;  AC_SUBST([GNULIB_CANONICALIZE_FILE_NAME])\n  GNULIB_GETLOADAVG=0;    AC_SUBST([GNULIB_GETLOADAVG])\n  GNULIB_GETSUBOPT=0;     AC_SUBST([GNULIB_GETSUBOPT])\n  GNULIB_GRANTPT=0;       AC_SUBST([GNULIB_GRANTPT])\n  GNULIB_MALLOC_POSIX=0;  AC_SUBST([GNULIB_MALLOC_POSIX])\n  GNULIB_MBTOWC=0;        AC_SUBST([GNULIB_MBTOWC])\n  GNULIB_MKDTEMP=0;       AC_SUBST([GNULIB_MKDTEMP])\n  GNULIB_MKOSTEMP=0;      AC_SUBST([GNULIB_MKOSTEMP])\n  GNULIB_MKOSTEMPS=0;     AC_SUBST([GNULIB_MKOSTEMPS])\n  GNULIB_MKSTEMP=0;       AC_SUBST([GNULIB_MKSTEMP])\n  GNULIB_MKSTEMPS=0;      AC_SUBST([GNULIB_MKSTEMPS])\n  GNULIB_POSIX_OPENPT=0;  AC_SUBST([GNULIB_POSIX_OPENPT])\n  GNULIB_PTSNAME=0;       AC_SUBST([GNULIB_PTSNAME])\n  GNULIB_PTSNAME_R=0;     AC_SUBST([GNULIB_PTSNAME_R])\n  GNULIB_PUTENV=0;        AC_SUBST([GNULIB_PUTENV])\n  GNULIB_QSORT_R=0;       AC_SUBST([GNULIB_QSORT_R])\n  GNULIB_RANDOM=0;        AC_SUBST([GNULIB_RANDOM])\n  GNULIB_RANDOM_R=0;      AC_SUBST([GNULIB_RANDOM_R])\n  GNULIB_REALLOC_POSIX=0; AC_SUBST([GNULIB_REALLOC_POSIX])\n  GNULIB_REALPATH=0;      AC_SUBST([GNULIB_REALPATH])\n  GNULIB_RPMATCH=0;       AC_SUBST([GNULIB_RPMATCH])\n  GNULIB_SECURE_GETENV=0; AC_SUBST([GNULIB_SECURE_GETENV])\n  GNULIB_SETENV=0;        AC_SUBST([GNULIB_SETENV])\n  GNULIB_STRTOD=0;        AC_SUBST([GNULIB_STRTOD])\n  GNULIB_STRTOLL=0;       AC_SUBST([GNULIB_STRTOLL])\n  GNULIB_STRTOULL=0;      AC_SUBST([GNULIB_STRTOULL])\n  GNULIB_SYSTEM_POSIX=0;  AC_SUBST([GNULIB_SYSTEM_POSIX])\n  GNULIB_UNLOCKPT=0;      AC_SUBST([GNULIB_UNLOCKPT])\n  GNULIB_UNSETENV=0;      AC_SUBST([GNULIB_UNSETENV])\n  GNULIB_WCTOMB=0;        AC_SUBST([GNULIB_WCTOMB])\n  dnl Assume proper GNU behavior unless another module says otherwise.\n  HAVE__EXIT=1;              AC_SUBST([HAVE__EXIT])\n  HAVE_ATOLL=1;              AC_SUBST([HAVE_ATOLL])\n  HAVE_CANONICALIZE_FILE_NAME=1;  AC_SUBST([HAVE_CANONICALIZE_FILE_NAME])\n  HAVE_DECL_GETLOADAVG=1;    AC_SUBST([HAVE_DECL_GETLOADAVG])\n  HAVE_GETSUBOPT=1;          AC_SUBST([HAVE_GETSUBOPT])\n  HAVE_GRANTPT=1;            AC_SUBST([HAVE_GRANTPT])\n  HAVE_MKDTEMP=1;            AC_SUBST([HAVE_MKDTEMP])\n  HAVE_MKOSTEMP=1;           AC_SUBST([HAVE_MKOSTEMP])\n  HAVE_MKOSTEMPS=1;          AC_SUBST([HAVE_MKOSTEMPS])\n  HAVE_MKSTEMP=1;            AC_SUBST([HAVE_MKSTEMP])\n  HAVE_MKSTEMPS=1;           AC_SUBST([HAVE_MKSTEMPS])\n  HAVE_POSIX_OPENPT=1;       AC_SUBST([HAVE_POSIX_OPENPT])\n  HAVE_PTSNAME=1;            AC_SUBST([HAVE_PTSNAME])\n  HAVE_PTSNAME_R=1;          AC_SUBST([HAVE_PTSNAME_R])\n  HAVE_QSORT_R=1;            AC_SUBST([HAVE_QSORT_R])\n  HAVE_RANDOM=1;             AC_SUBST([HAVE_RANDOM])\n  HAVE_RANDOM_H=1;           AC_SUBST([HAVE_RANDOM_H])\n  HAVE_RANDOM_R=1;           AC_SUBST([HAVE_RANDOM_R])\n  HAVE_REALPATH=1;           AC_SUBST([HAVE_REALPATH])\n  HAVE_RPMATCH=1;            AC_SUBST([HAVE_RPMATCH])\n  HAVE_SECURE_GETENV=1;      AC_SUBST([HAVE_SECURE_GETENV])\n  HAVE_SETENV=1;             AC_SUBST([HAVE_SETENV])\n  HAVE_DECL_SETENV=1;        AC_SUBST([HAVE_DECL_SETENV])\n  HAVE_STRTOD=1;             AC_SUBST([HAVE_STRTOD])\n  HAVE_STRTOLL=1;            AC_SUBST([HAVE_STRTOLL])\n  HAVE_STRTOULL=1;           AC_SUBST([HAVE_STRTOULL])\n  HAVE_STRUCT_RANDOM_DATA=1; AC_SUBST([HAVE_STRUCT_RANDOM_DATA])\n  HAVE_SYS_LOADAVG_H=0;      AC_SUBST([HAVE_SYS_LOADAVG_H])\n  HAVE_UNLOCKPT=1;           AC_SUBST([HAVE_UNLOCKPT])\n  HAVE_DECL_UNSETENV=1;      AC_SUBST([HAVE_DECL_UNSETENV])\n  REPLACE_CALLOC=0;          AC_SUBST([REPLACE_CALLOC])\n  REPLACE_CANONICALIZE_FILE_NAME=0;  AC_SUBST([REPLACE_CANONICALIZE_FILE_NAME])\n  REPLACE_MALLOC=0;          AC_SUBST([REPLACE_MALLOC])\n  REPLACE_MBTOWC=0;          AC_SUBST([REPLACE_MBTOWC])\n  REPLACE_MKSTEMP=0;         AC_SUBST([REPLACE_MKSTEMP])\n  REPLACE_PTSNAME=0;         AC_SUBST([REPLACE_PTSNAME])\n  REPLACE_PTSNAME_R=0;       AC_SUBST([REPLACE_PTSNAME_R])\n  REPLACE_PUTENV=0;          AC_SUBST([REPLACE_PUTENV])\n  REPLACE_QSORT_R=0;         AC_SUBST([REPLACE_QSORT_R])\n  REPLACE_RANDOM_R=0;        AC_SUBST([REPLACE_RANDOM_R])\n  REPLACE_REALLOC=0;         AC_SUBST([REPLACE_REALLOC])\n  REPLACE_REALPATH=0;        AC_SUBST([REPLACE_REALPATH])\n  REPLACE_SETENV=0;          AC_SUBST([REPLACE_SETENV])\n  REPLACE_STRTOD=0;          AC_SUBST([REPLACE_STRTOD])\n  REPLACE_UNSETENV=0;        AC_SUBST([REPLACE_UNSETENV])\n  REPLACE_WCTOMB=0;          AC_SUBST([REPLACE_WCTOMB])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/strerror.m4",
    "content": "# strerror.m4 serial 17\ndnl Copyright (C) 2002, 2007-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_FUNC_STRERROR],\n[\n  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])\n  AC_REQUIRE([gl_HEADER_ERRNO_H])\n  AC_REQUIRE([gl_FUNC_STRERROR_0])\n  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles\n  m4_ifdef([gl_FUNC_STRERROR_R_WORKS], [\n    AC_REQUIRE([gl_FUNC_STRERROR_R_WORKS])\n  ])\n  if test \"$ERRNO_H:$REPLACE_STRERROR_0\" = :0; then\n    AC_CACHE_CHECK([for working strerror function],\n     [gl_cv_func_working_strerror],\n     [AC_RUN_IFELSE(\n        [AC_LANG_PROGRAM(\n           [[#include <string.h>\n           ]],\n           [[if (!*strerror (-2)) return 1;]])],\n        [gl_cv_func_working_strerror=yes],\n        [gl_cv_func_working_strerror=no],\n        [case \"$host_os\" in\n                   # Guess yes on glibc systems.\n           *-gnu*) gl_cv_func_working_strerror=\"guessing yes\" ;;\n                   # If we don't know, assume the worst.\n           *)      gl_cv_func_working_strerror=\"guessing no\" ;;\n         esac\n        ])\n    ])\n    case \"$gl_cv_func_working_strerror\" in\n      *yes) ;;\n      *)\n        dnl The system's strerror() fails to return a string for out-of-range\n        dnl integers. Replace it.\n        REPLACE_STRERROR=1\n        ;;\n    esac\n    m4_ifdef([gl_FUNC_STRERROR_R_WORKS], [\n      dnl If the system's strerror_r or __xpg_strerror_r clobbers strerror's\n      dnl buffer, we must replace strerror.\n      case \"$gl_cv_func_strerror_r_works\" in\n        *no) REPLACE_STRERROR=1 ;;\n      esac\n    ])\n  else\n    dnl The system's strerror() cannot know about the new errno values we add\n    dnl to <errno.h>, or any fix for strerror(0). Replace it.\n    REPLACE_STRERROR=1\n  fi\n])\n\ndnl Detect if strerror(0) passes (that is, does not set errno, and does not\ndnl return a string that matches strerror(-1)).\nAC_DEFUN([gl_FUNC_STRERROR_0],\n[\n  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles\n  REPLACE_STRERROR_0=0\n  AC_CACHE_CHECK([whether strerror(0) succeeds],\n   [gl_cv_func_strerror_0_works],\n   [AC_RUN_IFELSE(\n      [AC_LANG_PROGRAM(\n         [[#include <string.h>\n           #include <errno.h>\n         ]],\n         [[int result = 0;\n           char *str;\n           errno = 0;\n           str = strerror (0);\n           if (!*str) result |= 1;\n           if (errno) result |= 2;\n           if (strstr (str, \"nknown\") || strstr (str, \"ndefined\"))\n             result |= 4;\n           return result;]])],\n      [gl_cv_func_strerror_0_works=yes],\n      [gl_cv_func_strerror_0_works=no],\n      [case \"$host_os\" in\n                 # Guess yes on glibc systems.\n         *-gnu*) gl_cv_func_strerror_0_works=\"guessing yes\" ;;\n                 # If we don't know, assume the worst.\n         *)      gl_cv_func_strerror_0_works=\"guessing no\" ;;\n       esac\n      ])\n  ])\n  case \"$gl_cv_func_strerror_0_works\" in\n    *yes) ;;\n    *)\n      REPLACE_STRERROR_0=1\n      AC_DEFINE([REPLACE_STRERROR_0], [1], [Define to 1 if strerror(0)\n        does not return a message implying success.])\n      ;;\n  esac\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/string_h.m4",
    "content": "# Configure a GNU-like replacement for <string.h>.\n\n# Copyright (C) 2007-2017 Free Software Foundation, Inc.\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# serial 21\n\n# Written by Paul Eggert.\n\nAC_DEFUN([gl_HEADER_STRING_H],\n[\n  dnl Use AC_REQUIRE here, so that the default behavior below is expanded\n  dnl once only, before all statements that occur in other macros.\n  AC_REQUIRE([gl_HEADER_STRING_H_BODY])\n])\n\nAC_DEFUN([gl_HEADER_STRING_H_BODY],\n[\n  AC_REQUIRE([AC_C_RESTRICT])\n  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])\n  gl_NEXT_HEADERS([string.h])\n\n  dnl Check for declarations of anything we want to poison if the\n  dnl corresponding gnulib module is not in use, and which is not\n  dnl guaranteed by C89.\n  gl_WARN_ON_USE_PREPARE([[#include <string.h>\n    ]],\n    [ffsl ffsll memmem mempcpy memrchr rawmemchr stpcpy stpncpy strchrnul\n     strdup strncat strndup strnlen strpbrk strsep strcasestr strtok_r\n     strerror_r strsignal strverscmp])\n])\n\nAC_DEFUN([gl_STRING_MODULE_INDICATOR],\n[\n  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.\n  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])\n  gl_MODULE_INDICATOR_SET_VARIABLE([$1])\n  dnl Define it also as a C macro, for the benefit of the unit tests.\n  gl_MODULE_INDICATOR_FOR_TESTS([$1])\n])\n\nAC_DEFUN([gl_HEADER_STRING_H_DEFAULTS],\n[\n  GNULIB_FFSL=0;        AC_SUBST([GNULIB_FFSL])\n  GNULIB_FFSLL=0;       AC_SUBST([GNULIB_FFSLL])\n  GNULIB_MEMCHR=0;      AC_SUBST([GNULIB_MEMCHR])\n  GNULIB_MEMMEM=0;      AC_SUBST([GNULIB_MEMMEM])\n  GNULIB_MEMPCPY=0;     AC_SUBST([GNULIB_MEMPCPY])\n  GNULIB_MEMRCHR=0;     AC_SUBST([GNULIB_MEMRCHR])\n  GNULIB_RAWMEMCHR=0;   AC_SUBST([GNULIB_RAWMEMCHR])\n  GNULIB_STPCPY=0;      AC_SUBST([GNULIB_STPCPY])\n  GNULIB_STPNCPY=0;     AC_SUBST([GNULIB_STPNCPY])\n  GNULIB_STRCHRNUL=0;   AC_SUBST([GNULIB_STRCHRNUL])\n  GNULIB_STRDUP=0;      AC_SUBST([GNULIB_STRDUP])\n  GNULIB_STRNCAT=0;     AC_SUBST([GNULIB_STRNCAT])\n  GNULIB_STRNDUP=0;     AC_SUBST([GNULIB_STRNDUP])\n  GNULIB_STRNLEN=0;     AC_SUBST([GNULIB_STRNLEN])\n  GNULIB_STRPBRK=0;     AC_SUBST([GNULIB_STRPBRK])\n  GNULIB_STRSEP=0;      AC_SUBST([GNULIB_STRSEP])\n  GNULIB_STRSTR=0;      AC_SUBST([GNULIB_STRSTR])\n  GNULIB_STRCASESTR=0;  AC_SUBST([GNULIB_STRCASESTR])\n  GNULIB_STRTOK_R=0;    AC_SUBST([GNULIB_STRTOK_R])\n  GNULIB_MBSLEN=0;      AC_SUBST([GNULIB_MBSLEN])\n  GNULIB_MBSNLEN=0;     AC_SUBST([GNULIB_MBSNLEN])\n  GNULIB_MBSCHR=0;      AC_SUBST([GNULIB_MBSCHR])\n  GNULIB_MBSRCHR=0;     AC_SUBST([GNULIB_MBSRCHR])\n  GNULIB_MBSSTR=0;      AC_SUBST([GNULIB_MBSSTR])\n  GNULIB_MBSCASECMP=0;  AC_SUBST([GNULIB_MBSCASECMP])\n  GNULIB_MBSNCASECMP=0; AC_SUBST([GNULIB_MBSNCASECMP])\n  GNULIB_MBSPCASECMP=0; AC_SUBST([GNULIB_MBSPCASECMP])\n  GNULIB_MBSCASESTR=0;  AC_SUBST([GNULIB_MBSCASESTR])\n  GNULIB_MBSCSPN=0;     AC_SUBST([GNULIB_MBSCSPN])\n  GNULIB_MBSPBRK=0;     AC_SUBST([GNULIB_MBSPBRK])\n  GNULIB_MBSSPN=0;      AC_SUBST([GNULIB_MBSSPN])\n  GNULIB_MBSSEP=0;      AC_SUBST([GNULIB_MBSSEP])\n  GNULIB_MBSTOK_R=0;    AC_SUBST([GNULIB_MBSTOK_R])\n  GNULIB_STRERROR=0;    AC_SUBST([GNULIB_STRERROR])\n  GNULIB_STRERROR_R=0;  AC_SUBST([GNULIB_STRERROR_R])\n  GNULIB_STRSIGNAL=0;   AC_SUBST([GNULIB_STRSIGNAL])\n  GNULIB_STRVERSCMP=0;  AC_SUBST([GNULIB_STRVERSCMP])\n  HAVE_MBSLEN=0;        AC_SUBST([HAVE_MBSLEN])\n  dnl Assume proper GNU behavior unless another module says otherwise.\n  HAVE_FFSL=1;                  AC_SUBST([HAVE_FFSL])\n  HAVE_FFSLL=1;                 AC_SUBST([HAVE_FFSLL])\n  HAVE_MEMCHR=1;                AC_SUBST([HAVE_MEMCHR])\n  HAVE_DECL_MEMMEM=1;           AC_SUBST([HAVE_DECL_MEMMEM])\n  HAVE_MEMPCPY=1;               AC_SUBST([HAVE_MEMPCPY])\n  HAVE_DECL_MEMRCHR=1;          AC_SUBST([HAVE_DECL_MEMRCHR])\n  HAVE_RAWMEMCHR=1;             AC_SUBST([HAVE_RAWMEMCHR])\n  HAVE_STPCPY=1;                AC_SUBST([HAVE_STPCPY])\n  HAVE_STPNCPY=1;               AC_SUBST([HAVE_STPNCPY])\n  HAVE_STRCHRNUL=1;             AC_SUBST([HAVE_STRCHRNUL])\n  HAVE_DECL_STRDUP=1;           AC_SUBST([HAVE_DECL_STRDUP])\n  HAVE_DECL_STRNDUP=1;          AC_SUBST([HAVE_DECL_STRNDUP])\n  HAVE_DECL_STRNLEN=1;          AC_SUBST([HAVE_DECL_STRNLEN])\n  HAVE_STRPBRK=1;               AC_SUBST([HAVE_STRPBRK])\n  HAVE_STRSEP=1;                AC_SUBST([HAVE_STRSEP])\n  HAVE_STRCASESTR=1;            AC_SUBST([HAVE_STRCASESTR])\n  HAVE_DECL_STRTOK_R=1;         AC_SUBST([HAVE_DECL_STRTOK_R])\n  HAVE_DECL_STRERROR_R=1;       AC_SUBST([HAVE_DECL_STRERROR_R])\n  HAVE_DECL_STRSIGNAL=1;        AC_SUBST([HAVE_DECL_STRSIGNAL])\n  HAVE_STRVERSCMP=1;            AC_SUBST([HAVE_STRVERSCMP])\n  REPLACE_MEMCHR=0;             AC_SUBST([REPLACE_MEMCHR])\n  REPLACE_MEMMEM=0;             AC_SUBST([REPLACE_MEMMEM])\n  REPLACE_STPNCPY=0;            AC_SUBST([REPLACE_STPNCPY])\n  REPLACE_STRDUP=0;             AC_SUBST([REPLACE_STRDUP])\n  REPLACE_STRSTR=0;             AC_SUBST([REPLACE_STRSTR])\n  REPLACE_STRCASESTR=0;         AC_SUBST([REPLACE_STRCASESTR])\n  REPLACE_STRCHRNUL=0;          AC_SUBST([REPLACE_STRCHRNUL])\n  REPLACE_STRERROR=0;           AC_SUBST([REPLACE_STRERROR])\n  REPLACE_STRERROR_R=0;         AC_SUBST([REPLACE_STRERROR_R])\n  REPLACE_STRNCAT=0;            AC_SUBST([REPLACE_STRNCAT])\n  REPLACE_STRNDUP=0;            AC_SUBST([REPLACE_STRNDUP])\n  REPLACE_STRNLEN=0;            AC_SUBST([REPLACE_STRNLEN])\n  REPLACE_STRSIGNAL=0;          AC_SUBST([REPLACE_STRSIGNAL])\n  REPLACE_STRTOK_R=0;           AC_SUBST([REPLACE_STRTOK_R])\n  UNDEFINE_STRTOK_R=0;          AC_SUBST([UNDEFINE_STRTOK_R])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/sys_socket_h.m4",
    "content": "# sys_socket_h.m4 serial 23\ndnl Copyright (C) 2005-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Simon Josefsson.\n\nAC_DEFUN([gl_HEADER_SYS_SOCKET],\n[\n  AC_REQUIRE([gl_SYS_SOCKET_H_DEFAULTS])\n  AC_REQUIRE([AC_CANONICAL_HOST])\n\n  dnl On OSF/1, the functions recv(), send(), recvfrom(), sendto() have\n  dnl old-style declarations (with return type 'int' instead of 'ssize_t')\n  dnl unless _POSIX_PII_SOCKET is defined.\n  case \"$host_os\" in\n    osf*)\n      AC_DEFINE([_POSIX_PII_SOCKET], [1],\n        [Define to 1 in order to get the POSIX compatible declarations\n         of socket functions.])\n      ;;\n  esac\n\n  AC_CACHE_CHECK([whether <sys/socket.h> is self-contained],\n    [gl_cv_header_sys_socket_h_selfcontained],\n    [\n      AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/socket.h>]], [[]])],\n        [gl_cv_header_sys_socket_h_selfcontained=yes],\n        [gl_cv_header_sys_socket_h_selfcontained=no])\n    ])\n  if test $gl_cv_header_sys_socket_h_selfcontained = yes; then\n    dnl If the shutdown function exists, <sys/socket.h> should define\n    dnl SHUT_RD, SHUT_WR, SHUT_RDWR.\n    AC_CHECK_FUNCS([shutdown])\n    if test $ac_cv_func_shutdown = yes; then\n      AC_CACHE_CHECK([whether <sys/socket.h> defines the SHUT_* macros],\n        [gl_cv_header_sys_socket_h_shut],\n        [\n          AC_COMPILE_IFELSE(\n            [AC_LANG_PROGRAM([[#include <sys/socket.h>]],\n               [[int a[] = { SHUT_RD, SHUT_WR, SHUT_RDWR };]])],\n            [gl_cv_header_sys_socket_h_shut=yes],\n            [gl_cv_header_sys_socket_h_shut=no])\n        ])\n      if test $gl_cv_header_sys_socket_h_shut = no; then\n        SYS_SOCKET_H='sys/socket.h'\n      fi\n    fi\n  fi\n  # We need to check for ws2tcpip.h now.\n  gl_PREREQ_SYS_H_SOCKET\n  AC_CHECK_TYPES([struct sockaddr_storage, sa_family_t],,,[\n  /* sys/types.h is not needed according to POSIX, but the\n     sys/socket.h in i386-unknown-freebsd4.10 and\n     powerpc-apple-darwin5.5 required it. */\n#include <sys/types.h>\n#ifdef HAVE_SYS_SOCKET_H\n#include <sys/socket.h>\n#endif\n#ifdef HAVE_WS2TCPIP_H\n#include <ws2tcpip.h>\n#endif\n])\n  if test $ac_cv_type_struct_sockaddr_storage = no; then\n    HAVE_STRUCT_SOCKADDR_STORAGE=0\n  fi\n  if test $ac_cv_type_sa_family_t = no; then\n    HAVE_SA_FAMILY_T=0\n  fi\n  if test $ac_cv_type_struct_sockaddr_storage != no; then\n    AC_CHECK_MEMBERS([struct sockaddr_storage.ss_family],\n      [],\n      [HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY=0],\n      [#include <sys/types.h>\n       #ifdef HAVE_SYS_SOCKET_H\n       #include <sys/socket.h>\n       #endif\n       #ifdef HAVE_WS2TCPIP_H\n       #include <ws2tcpip.h>\n       #endif\n      ])\n  fi\n  if test $HAVE_STRUCT_SOCKADDR_STORAGE = 0 || test $HAVE_SA_FAMILY_T = 0 \\\n     || test $HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY = 0; then\n    SYS_SOCKET_H='sys/socket.h'\n  fi\n  gl_PREREQ_SYS_H_WINSOCK2\n\n  dnl Check for declarations of anything we want to poison if the\n  dnl corresponding gnulib module is not in use.\n  gl_WARN_ON_USE_PREPARE([[\n/* Some systems require prerequisite headers.  */\n#include <sys/types.h>\n#include <sys/socket.h>\n    ]], [socket connect accept bind getpeername getsockname getsockopt\n    listen recv send recvfrom sendto setsockopt shutdown accept4])\n])\n\nAC_DEFUN([gl_PREREQ_SYS_H_SOCKET],\n[\n  dnl Check prerequisites of the <sys/socket.h> replacement.\n  AC_REQUIRE([gl_CHECK_SOCKET_HEADERS])\n  gl_CHECK_NEXT_HEADERS([sys/socket.h])\n  if test $ac_cv_header_sys_socket_h = yes; then\n    HAVE_SYS_SOCKET_H=1\n    HAVE_WS2TCPIP_H=0\n  else\n    HAVE_SYS_SOCKET_H=0\n    if test $ac_cv_header_ws2tcpip_h = yes; then\n      HAVE_WS2TCPIP_H=1\n    else\n      HAVE_WS2TCPIP_H=0\n    fi\n  fi\n  AC_SUBST([HAVE_SYS_SOCKET_H])\n  AC_SUBST([HAVE_WS2TCPIP_H])\n])\n\n# Common prerequisites of the <sys/socket.h> replacement and of the\n# <sys/select.h> replacement.\n# Sets and substitutes HAVE_WINSOCK2_H.\nAC_DEFUN([gl_PREREQ_SYS_H_WINSOCK2],\n[\n  m4_ifdef([gl_UNISTD_H_DEFAULTS], [AC_REQUIRE([gl_UNISTD_H_DEFAULTS])])\n  m4_ifdef([gl_SYS_IOCTL_H_DEFAULTS], [AC_REQUIRE([gl_SYS_IOCTL_H_DEFAULTS])])\n  AC_CHECK_HEADERS_ONCE([sys/socket.h])\n  if test $ac_cv_header_sys_socket_h != yes; then\n    dnl We cannot use AC_CHECK_HEADERS_ONCE here, because that would make\n    dnl the check for those headers unconditional; yet cygwin reports\n    dnl that the headers are present but cannot be compiled (since on\n    dnl cygwin, all socket information should come from sys/socket.h).\n    AC_CHECK_HEADERS([winsock2.h])\n  fi\n  if test \"$ac_cv_header_winsock2_h\" = yes; then\n    HAVE_WINSOCK2_H=1\n    UNISTD_H_HAVE_WINSOCK2_H=1\n    SYS_IOCTL_H_HAVE_WINSOCK2_H=1\n  else\n    HAVE_WINSOCK2_H=0\n  fi\n  AC_SUBST([HAVE_WINSOCK2_H])\n])\n\nAC_DEFUN([gl_SYS_SOCKET_MODULE_INDICATOR],\n[\n  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.\n  AC_REQUIRE([gl_SYS_SOCKET_H_DEFAULTS])\n  gl_MODULE_INDICATOR_SET_VARIABLE([$1])\n  dnl Define it also as a C macro, for the benefit of the unit tests.\n  gl_MODULE_INDICATOR_FOR_TESTS([$1])\n])\n\nAC_DEFUN([gl_SYS_SOCKET_H_DEFAULTS],\n[\n  GNULIB_SOCKET=0;      AC_SUBST([GNULIB_SOCKET])\n  GNULIB_CONNECT=0;     AC_SUBST([GNULIB_CONNECT])\n  GNULIB_ACCEPT=0;      AC_SUBST([GNULIB_ACCEPT])\n  GNULIB_BIND=0;        AC_SUBST([GNULIB_BIND])\n  GNULIB_GETPEERNAME=0; AC_SUBST([GNULIB_GETPEERNAME])\n  GNULIB_GETSOCKNAME=0; AC_SUBST([GNULIB_GETSOCKNAME])\n  GNULIB_GETSOCKOPT=0;  AC_SUBST([GNULIB_GETSOCKOPT])\n  GNULIB_LISTEN=0;      AC_SUBST([GNULIB_LISTEN])\n  GNULIB_RECV=0;        AC_SUBST([GNULIB_RECV])\n  GNULIB_SEND=0;        AC_SUBST([GNULIB_SEND])\n  GNULIB_RECVFROM=0;    AC_SUBST([GNULIB_RECVFROM])\n  GNULIB_SENDTO=0;      AC_SUBST([GNULIB_SENDTO])\n  GNULIB_SETSOCKOPT=0;  AC_SUBST([GNULIB_SETSOCKOPT])\n  GNULIB_SHUTDOWN=0;    AC_SUBST([GNULIB_SHUTDOWN])\n  GNULIB_ACCEPT4=0;     AC_SUBST([GNULIB_ACCEPT4])\n  HAVE_STRUCT_SOCKADDR_STORAGE=1; AC_SUBST([HAVE_STRUCT_SOCKADDR_STORAGE])\n  HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY=1;\n                        AC_SUBST([HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY])\n  HAVE_SA_FAMILY_T=1;   AC_SUBST([HAVE_SA_FAMILY_T])\n  HAVE_ACCEPT4=1;       AC_SUBST([HAVE_ACCEPT4])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/sys_stat_h.m4",
    "content": "# sys_stat_h.m4 serial 28   -*- Autoconf -*-\ndnl Copyright (C) 2006-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Eric Blake.\ndnl Provide a GNU-like <sys/stat.h>.\n\nAC_DEFUN([gl_HEADER_SYS_STAT_H],\n[\n  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])\n\n  dnl Check for broken stat macros.\n  AC_REQUIRE([AC_HEADER_STAT])\n\n  gl_CHECK_NEXT_HEADERS([sys/stat.h])\n\n  dnl Ensure the type mode_t gets defined.\n  AC_REQUIRE([AC_TYPE_MODE_T])\n\n  dnl Whether to override 'struct stat'.\n  m4_ifdef([gl_LARGEFILE], [\n    AC_REQUIRE([gl_LARGEFILE])\n  ], [\n    WINDOWS_64_BIT_ST_SIZE=0\n  ])\n  AC_SUBST([WINDOWS_64_BIT_ST_SIZE])\n  if test $WINDOWS_64_BIT_ST_SIZE = 1; then\n    AC_DEFINE([_GL_WINDOWS_64_BIT_ST_SIZE], [1],\n      [Define to 1 if Gnulib overrides 'struct stat' on Windows so that\n       struct stat.st_size becomes 64-bit.])\n  fi\n\n  dnl Define types that are supposed to be defined in <sys/types.h> or\n  dnl <sys/stat.h>.\n  AC_CHECK_TYPE([nlink_t], [],\n    [AC_DEFINE([nlink_t], [int],\n       [Define to the type of st_nlink in struct stat, or a supertype.])],\n    [#include <sys/types.h>\n     #include <sys/stat.h>])\n\n  dnl Check for declarations of anything we want to poison if the\n  dnl corresponding gnulib module is not in use.\n  gl_WARN_ON_USE_PREPARE([[#include <sys/stat.h>\n    ]], [fchmodat fstat fstatat futimens lchmod lstat mkdirat mkfifo mkfifoat\n    mknod mknodat stat utimensat])\n]) # gl_HEADER_SYS_STAT_H\n\nAC_DEFUN([gl_SYS_STAT_MODULE_INDICATOR],\n[\n  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.\n  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])\n  gl_MODULE_INDICATOR_SET_VARIABLE([$1])\n  dnl Define it also as a C macro, for the benefit of the unit tests.\n  gl_MODULE_INDICATOR_FOR_TESTS([$1])\n])\n\nAC_DEFUN([gl_SYS_STAT_H_DEFAULTS],\n[\n  AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) dnl for REPLACE_FCHDIR\n  GNULIB_FCHMODAT=0;    AC_SUBST([GNULIB_FCHMODAT])\n  GNULIB_FSTAT=0;       AC_SUBST([GNULIB_FSTAT])\n  GNULIB_FSTATAT=0;     AC_SUBST([GNULIB_FSTATAT])\n  GNULIB_FUTIMENS=0;    AC_SUBST([GNULIB_FUTIMENS])\n  GNULIB_LCHMOD=0;      AC_SUBST([GNULIB_LCHMOD])\n  GNULIB_LSTAT=0;       AC_SUBST([GNULIB_LSTAT])\n  GNULIB_MKDIRAT=0;     AC_SUBST([GNULIB_MKDIRAT])\n  GNULIB_MKFIFO=0;      AC_SUBST([GNULIB_MKFIFO])\n  GNULIB_MKFIFOAT=0;    AC_SUBST([GNULIB_MKFIFOAT])\n  GNULIB_MKNOD=0;       AC_SUBST([GNULIB_MKNOD])\n  GNULIB_MKNODAT=0;     AC_SUBST([GNULIB_MKNODAT])\n  GNULIB_STAT=0;        AC_SUBST([GNULIB_STAT])\n  GNULIB_UTIMENSAT=0;   AC_SUBST([GNULIB_UTIMENSAT])\n  dnl Assume proper GNU behavior unless another module says otherwise.\n  HAVE_FCHMODAT=1;      AC_SUBST([HAVE_FCHMODAT])\n  HAVE_FSTATAT=1;       AC_SUBST([HAVE_FSTATAT])\n  HAVE_FUTIMENS=1;      AC_SUBST([HAVE_FUTIMENS])\n  HAVE_LCHMOD=1;        AC_SUBST([HAVE_LCHMOD])\n  HAVE_LSTAT=1;         AC_SUBST([HAVE_LSTAT])\n  HAVE_MKDIRAT=1;       AC_SUBST([HAVE_MKDIRAT])\n  HAVE_MKFIFO=1;        AC_SUBST([HAVE_MKFIFO])\n  HAVE_MKFIFOAT=1;      AC_SUBST([HAVE_MKFIFOAT])\n  HAVE_MKNOD=1;         AC_SUBST([HAVE_MKNOD])\n  HAVE_MKNODAT=1;       AC_SUBST([HAVE_MKNODAT])\n  HAVE_UTIMENSAT=1;     AC_SUBST([HAVE_UTIMENSAT])\n  REPLACE_FSTAT=0;      AC_SUBST([REPLACE_FSTAT])\n  REPLACE_FSTATAT=0;    AC_SUBST([REPLACE_FSTATAT])\n  REPLACE_FUTIMENS=0;   AC_SUBST([REPLACE_FUTIMENS])\n  REPLACE_LSTAT=0;      AC_SUBST([REPLACE_LSTAT])\n  REPLACE_MKDIR=0;      AC_SUBST([REPLACE_MKDIR])\n  REPLACE_MKFIFO=0;     AC_SUBST([REPLACE_MKFIFO])\n  REPLACE_MKNOD=0;      AC_SUBST([REPLACE_MKNOD])\n  REPLACE_STAT=0;       AC_SUBST([REPLACE_STAT])\n  REPLACE_UTIMENSAT=0;  AC_SUBST([REPLACE_UTIMENSAT])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/sys_time_h.m4",
    "content": "# Configure a replacement for <sys/time.h>.\n# serial 8\n\n# Copyright (C) 2007, 2009-2017 Free Software Foundation, Inc.\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# Written by Paul Eggert and Martin Lambers.\n\nAC_DEFUN([gl_HEADER_SYS_TIME_H],\n[\n  dnl Use AC_REQUIRE here, so that the REPLACE_GETTIMEOFDAY=0 statement\n  dnl below is expanded once only, before all REPLACE_GETTIMEOFDAY=1\n  dnl statements that occur in other macros.\n  AC_REQUIRE([gl_HEADER_SYS_TIME_H_BODY])\n])\n\nAC_DEFUN([gl_HEADER_SYS_TIME_H_BODY],\n[\n  AC_REQUIRE([AC_C_RESTRICT])\n  AC_REQUIRE([gl_HEADER_SYS_TIME_H_DEFAULTS])\n  AC_CHECK_HEADERS_ONCE([sys/time.h])\n  gl_CHECK_NEXT_HEADERS([sys/time.h])\n\n  if test $ac_cv_header_sys_time_h != yes; then\n    HAVE_SYS_TIME_H=0\n  fi\n\n  dnl On native Windows with MSVC, 'struct timeval' is defined in <winsock2.h>\n  dnl only. So include that header in the list.\n  gl_PREREQ_SYS_H_WINSOCK2\n  AC_CACHE_CHECK([for struct timeval], [gl_cv_sys_struct_timeval],\n    [AC_COMPILE_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#if HAVE_SYS_TIME_H\n             #include <sys/time.h>\n            #endif\n            #include <time.h>\n            #if HAVE_WINSOCK2_H\n            # include <winsock2.h>\n            #endif\n          ]],\n          [[static struct timeval x; x.tv_sec = x.tv_usec;]])],\n       [gl_cv_sys_struct_timeval=yes],\n       [gl_cv_sys_struct_timeval=no])\n    ])\n  if test $gl_cv_sys_struct_timeval != yes; then\n    HAVE_STRUCT_TIMEVAL=0\n  else\n    dnl On native Windows with a 64-bit 'time_t', 'struct timeval' is defined\n    dnl (in <sys/time.h> and <winsock2.h> for mingw64, in <winsock2.h> only\n    dnl for MSVC) with a tv_sec field of type 'long' (32-bit!), which is\n    dnl smaller than the 'time_t' type mandated by POSIX.\n    dnl On OpenBSD 5.1 amd64, tv_sec is 64 bits and time_t 32 bits, but\n    dnl that is good enough.\n    AC_CACHE_CHECK([for wide-enough struct timeval.tv_sec member],\n      [gl_cv_sys_struct_timeval_tv_sec],\n      [AC_COMPILE_IFELSE(\n         [AC_LANG_PROGRAM(\n            [[#if HAVE_SYS_TIME_H\n               #include <sys/time.h>\n              #endif\n              #include <time.h>\n              #if HAVE_WINSOCK2_H\n              # include <winsock2.h>\n              #endif\n            ]],\n            [[static struct timeval x;\n              typedef int verify_tv_sec_type[\n                sizeof (time_t) <= sizeof x.tv_sec ? 1 : -1\n              ];\n            ]])],\n         [gl_cv_sys_struct_timeval_tv_sec=yes],\n         [gl_cv_sys_struct_timeval_tv_sec=no])\n      ])\n    if test $gl_cv_sys_struct_timeval_tv_sec != yes; then\n      REPLACE_STRUCT_TIMEVAL=1\n    fi\n  fi\n\n  dnl Check for declarations of anything we want to poison if the\n  dnl corresponding gnulib module is not in use.\n  gl_WARN_ON_USE_PREPARE([[\n#if HAVE_SYS_TIME_H\n# include <sys/time.h>\n#endif\n#include <time.h>\n    ]], [gettimeofday])\n])\n\nAC_DEFUN([gl_SYS_TIME_MODULE_INDICATOR],\n[\n  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.\n  AC_REQUIRE([gl_HEADER_SYS_TIME_H_DEFAULTS])\n  gl_MODULE_INDICATOR_SET_VARIABLE([$1])\n  dnl Define it also as a C macro, for the benefit of the unit tests.\n  gl_MODULE_INDICATOR_FOR_TESTS([$1])\n])\n\nAC_DEFUN([gl_HEADER_SYS_TIME_H_DEFAULTS],\n[\n  GNULIB_GETTIMEOFDAY=0;     AC_SUBST([GNULIB_GETTIMEOFDAY])\n  dnl Assume POSIX behavior unless another module says otherwise.\n  HAVE_GETTIMEOFDAY=1;       AC_SUBST([HAVE_GETTIMEOFDAY])\n  HAVE_STRUCT_TIMEVAL=1;     AC_SUBST([HAVE_STRUCT_TIMEVAL])\n  HAVE_SYS_TIME_H=1;         AC_SUBST([HAVE_SYS_TIME_H])\n  HAVE_TIMEZONE_T=0;         AC_SUBST([HAVE_TIMEZONE_T])\n  REPLACE_GETTIMEOFDAY=0;    AC_SUBST([REPLACE_GETTIMEOFDAY])\n  REPLACE_STRUCT_TIMEVAL=0;  AC_SUBST([REPLACE_STRUCT_TIMEVAL])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/sys_types_h.m4",
    "content": "# sys_types_h.m4 serial 6\ndnl Copyright (C) 2011-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN_ONCE([gl_SYS_TYPES_H],\n[\n  AC_REQUIRE([gl_SYS_TYPES_H_DEFAULTS])\n  gl_NEXT_HEADERS([sys/types.h])\n\n  dnl Ensure the type pid_t gets defined.\n  AC_REQUIRE([AC_TYPE_PID_T])\n\n  dnl Ensure the type mode_t gets defined.\n  AC_REQUIRE([AC_TYPE_MODE_T])\n\n  dnl Whether to override the 'off_t' type.\n  AC_REQUIRE([gl_TYPE_OFF_T])\n])\n\nAC_DEFUN([gl_SYS_TYPES_H_DEFAULTS],\n[\n])\n\n# This works around a buggy version in autoconf <= 2.69.\n# See <https://lists.gnu.org/archive/html/autoconf/2016-08/msg00014.html>\n\nm4_version_prereq([2.70], [], [\n\n# This is taken from the following Autoconf patch:\n# http://git.sv.gnu.org/cgit/autoconf.git/commit/?id=e17a30e98\n\nm4_undefine([AC_HEADER_MAJOR])\nAC_DEFUN([AC_HEADER_MAJOR],\n[AC_CHECK_HEADERS_ONCE([sys/types.h])\nAC_CHECK_HEADER([sys/mkdev.h],\n  [AC_DEFINE([MAJOR_IN_MKDEV], [1],\n    [Define to 1 if `major', `minor', and `makedev' are declared in\n     <mkdev.h>.])])\nif test $ac_cv_header_sys_mkdev_h = no; then\n  AC_CHECK_HEADER([sys/sysmacros.h],\n    [AC_DEFINE([MAJOR_IN_SYSMACROS], [1],\n      [Define to 1 if `major', `minor', and `makedev' are declared in\n       <sysmacros.h>.])])\nfi\n])\n\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/threadlib.m4",
    "content": "# threadlib.m4 serial 12\ndnl Copyright (C) 2005-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\ndnl gl_THREADLIB\ndnl ------------\ndnl Tests for a multithreading library to be used.\ndnl If the configure.ac contains a definition of the gl_THREADLIB_DEFAULT_NO\ndnl (it must be placed before the invocation of gl_THREADLIB_EARLY!), then the\ndnl default is 'no', otherwise it is system dependent. In both cases, the user\ndnl can change the choice through the options --enable-threads=choice or\ndnl --disable-threads.\ndnl Defines at most one of the macros USE_POSIX_THREADS, USE_SOLARIS_THREADS,\ndnl USE_PTH_THREADS, USE_WINDOWS_THREADS\ndnl Sets the variables LIBTHREAD and LTLIBTHREAD to the linker options for use\ndnl in a Makefile (LIBTHREAD for use without libtool, LTLIBTHREAD for use with\ndnl libtool).\ndnl Sets the variables LIBMULTITHREAD and LTLIBMULTITHREAD similarly, for\ndnl programs that really need multithread functionality. The difference\ndnl between LIBTHREAD and LIBMULTITHREAD is that on platforms supporting weak\ndnl symbols, typically LIBTHREAD is empty whereas LIBMULTITHREAD is not.\ndnl Adds to CPPFLAGS the flag -D_REENTRANT or -D_THREAD_SAFE if needed for\ndnl multithread-safe programs.\n\nAC_DEFUN([gl_THREADLIB_EARLY],\n[\n  AC_REQUIRE([gl_THREADLIB_EARLY_BODY])\n])\n\ndnl The guts of gl_THREADLIB_EARLY. Needs to be expanded only once.\n\nAC_DEFUN([gl_THREADLIB_EARLY_BODY],\n[\n  dnl Ordering constraints: This macro modifies CPPFLAGS in a way that\n  dnl influences the result of the autoconf tests that test for *_unlocked\n  dnl declarations, on AIX 5 at least. Therefore it must come early.\n  AC_BEFORE([$0], [gl_FUNC_GLIBC_UNLOCKED_IO])dnl\n  AC_BEFORE([$0], [gl_ARGP])dnl\n\n  AC_REQUIRE([AC_CANONICAL_HOST])\n  dnl _GNU_SOURCE is needed for pthread_rwlock_t on glibc systems.\n  dnl AC_USE_SYSTEM_EXTENSIONS was introduced in autoconf 2.60 and obsoletes\n  dnl AC_GNU_SOURCE.\n  m4_ifdef([AC_USE_SYSTEM_EXTENSIONS],\n    [AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])],\n    [AC_REQUIRE([AC_GNU_SOURCE])])\n  dnl Check for multithreading.\n  m4_ifdef([gl_THREADLIB_DEFAULT_NO],\n    [m4_divert_text([DEFAULTS], [gl_use_threads_default=no])],\n    [m4_divert_text([DEFAULTS], [gl_use_threads_default=])])\n  AC_ARG_ENABLE([threads],\nAC_HELP_STRING([--enable-threads={posix|solaris|pth|windows}], [specify multithreading API])m4_ifdef([gl_THREADLIB_DEFAULT_NO], [], [\nAC_HELP_STRING([--disable-threads], [build without multithread safety])]),\n    [gl_use_threads=$enableval],\n    [if test -n \"$gl_use_threads_default\"; then\n       gl_use_threads=\"$gl_use_threads_default\"\n     else\nchangequote(,)dnl\n       case \"$host_os\" in\n         dnl Disable multithreading by default on OSF/1, because it interferes\n         dnl with fork()/exec(): When msgexec is linked with -lpthread, its\n         dnl child process gets an endless segmentation fault inside execvp().\n         dnl Disable multithreading by default on Cygwin 1.5.x, because it has\n         dnl bugs that lead to endless loops or crashes. See\n         dnl <http://cygwin.com/ml/cygwin/2009-08/msg00283.html>.\n         osf*) gl_use_threads=no ;;\n         cygwin*)\n               case `uname -r` in\n                 1.[0-5].*) gl_use_threads=no ;;\n                 *)         gl_use_threads=yes ;;\n               esac\n               ;;\n         *)    gl_use_threads=yes ;;\n       esac\nchangequote([,])dnl\n     fi\n    ])\n  if test \"$gl_use_threads\" = yes || test \"$gl_use_threads\" = posix; then\n    # For using <pthread.h>:\n    case \"$host_os\" in\n      osf*)\n        # On OSF/1, the compiler needs the flag -D_REENTRANT so that it\n        # groks <pthread.h>. cc also understands the flag -pthread, but\n        # we don't use it because 1. gcc-2.95 doesn't understand -pthread,\n        # 2. putting a flag into CPPFLAGS that has an effect on the linker\n        # causes the AC_LINK_IFELSE test below to succeed unexpectedly,\n        # leading to wrong values of LIBTHREAD and LTLIBTHREAD.\n        CPPFLAGS=\"$CPPFLAGS -D_REENTRANT\"\n        ;;\n    esac\n    # Some systems optimize for single-threaded programs by default, and\n    # need special flags to disable these optimizations. For example, the\n    # definition of 'errno' in <errno.h>.\n    case \"$host_os\" in\n      aix* | freebsd*) CPPFLAGS=\"$CPPFLAGS -D_THREAD_SAFE\" ;;\n      solaris*) CPPFLAGS=\"$CPPFLAGS -D_REENTRANT\" ;;\n    esac\n  fi\n])\n\ndnl The guts of gl_THREADLIB. Needs to be expanded only once.\n\nAC_DEFUN([gl_THREADLIB_BODY],\n[\n  AC_REQUIRE([gl_THREADLIB_EARLY_BODY])\n  gl_threads_api=none\n  LIBTHREAD=\n  LTLIBTHREAD=\n  LIBMULTITHREAD=\n  LTLIBMULTITHREAD=\n  if test \"$gl_use_threads\" != no; then\n    dnl Check whether the compiler and linker support weak declarations.\n    AC_CACHE_CHECK([whether imported symbols can be declared weak],\n      [gl_cv_have_weak],\n      [gl_cv_have_weak=no\n       dnl First, test whether the compiler accepts it syntactically.\n       AC_LINK_IFELSE(\n         [AC_LANG_PROGRAM(\n            [[extern void xyzzy ();\n#pragma weak xyzzy]],\n            [[xyzzy();]])],\n         [gl_cv_have_weak=maybe])\n       if test $gl_cv_have_weak = maybe; then\n         dnl Second, test whether it actually works. On Cygwin 1.7.2, with\n         dnl gcc 4.3, symbols declared weak always evaluate to the address 0.\n         AC_RUN_IFELSE(\n           [AC_LANG_SOURCE([[\n#include <stdio.h>\n#pragma weak fputs\nint main ()\n{\n  return (fputs == NULL);\n}]])],\n           [gl_cv_have_weak=yes],\n           [gl_cv_have_weak=no],\n           [dnl When cross-compiling, assume that only ELF platforms support\n            dnl weak symbols.\n            AC_EGREP_CPP([Extensible Linking Format],\n              [#ifdef __ELF__\n               Extensible Linking Format\n               #endif\n              ],\n              [gl_cv_have_weak=\"guessing yes\"],\n              [gl_cv_have_weak=\"guessing no\"])\n           ])\n       fi\n      ])\n    if test \"$gl_use_threads\" = yes || test \"$gl_use_threads\" = posix; then\n      # On OSF/1, the compiler needs the flag -pthread or -D_REENTRANT so that\n      # it groks <pthread.h>. It's added above, in gl_THREADLIB_EARLY_BODY.\n      AC_CHECK_HEADER([pthread.h],\n        [gl_have_pthread_h=yes], [gl_have_pthread_h=no])\n      if test \"$gl_have_pthread_h\" = yes; then\n        # Other possible tests:\n        #   -lpthreads (FSU threads, PCthreads)\n        #   -lgthreads\n        gl_have_pthread=\n        # Test whether both pthread_mutex_lock and pthread_mutexattr_init exist\n        # in libc. IRIX 6.5 has the first one in both libc and libpthread, but\n        # the second one only in libpthread, and lock.c needs it.\n        #\n        # If -pthread works, prefer it to -lpthread, since Ubuntu 14.04\n        # needs -pthread for some reason.  See:\n        # http://lists.gnu.org/archive/html/bug-gnulib/2014-09/msg00023.html\n        save_LIBS=$LIBS\n        for gl_pthread in '' '-pthread'; do\n          LIBS=\"$LIBS $gl_pthread\"\n          AC_LINK_IFELSE(\n            [AC_LANG_PROGRAM(\n               [[#include <pthread.h>\n                 pthread_mutex_t m;\n                 pthread_mutexattr_t ma;\n               ]],\n               [[pthread_mutex_lock (&m);\n                 pthread_mutexattr_init (&ma);]])],\n            [gl_have_pthread=yes\n             LIBTHREAD=$gl_pthread LTLIBTHREAD=$gl_pthread\n             LIBMULTITHREAD=$gl_pthread LTLIBMULTITHREAD=$gl_pthread])\n          LIBS=$save_LIBS\n          test -n \"$gl_have_pthread\" && break\n        done\n\n        # Test for libpthread by looking for pthread_kill. (Not pthread_self,\n        # since it is defined as a macro on OSF/1.)\n        if test -n \"$gl_have_pthread\" && test -z \"$LIBTHREAD\"; then\n          # The program links fine without libpthread. But it may actually\n          # need to link with libpthread in order to create multiple threads.\n          AC_CHECK_LIB([pthread], [pthread_kill],\n            [LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread\n             # On Solaris and HP-UX, most pthread functions exist also in libc.\n             # Therefore pthread_in_use() needs to actually try to create a\n             # thread: pthread_create from libc will fail, whereas\n             # pthread_create will actually create a thread.\n             # On Solaris 10 or newer, this test is no longer needed, because\n             # libc contains the fully functional pthread functions.\n             case \"$host_os\" in\n               solaris | solaris2.[1-9] | solaris2.[1-9].* | hpux*)\n                 AC_DEFINE([PTHREAD_IN_USE_DETECTION_HARD], [1],\n                   [Define if the pthread_in_use() detection is hard.])\n             esac\n            ])\n        elif test -z \"$gl_have_pthread\"; then\n          # Some library is needed. Try libpthread and libc_r.\n          AC_CHECK_LIB([pthread], [pthread_kill],\n            [gl_have_pthread=yes\n             LIBTHREAD=-lpthread LTLIBTHREAD=-lpthread\n             LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread])\n          if test -z \"$gl_have_pthread\"; then\n            # For FreeBSD 4.\n            AC_CHECK_LIB([c_r], [pthread_kill],\n              [gl_have_pthread=yes\n               LIBTHREAD=-lc_r LTLIBTHREAD=-lc_r\n               LIBMULTITHREAD=-lc_r LTLIBMULTITHREAD=-lc_r])\n          fi\n        fi\n        if test -n \"$gl_have_pthread\"; then\n          gl_threads_api=posix\n          AC_DEFINE([USE_POSIX_THREADS], [1],\n            [Define if the POSIX multithreading library can be used.])\n          if test -n \"$LIBMULTITHREAD\" || test -n \"$LTLIBMULTITHREAD\"; then\n            if case \"$gl_cv_have_weak\" in *yes) true;; *) false;; esac; then\n              AC_DEFINE([USE_POSIX_THREADS_WEAK], [1],\n                [Define if references to the POSIX multithreading library should be made weak.])\n              LIBTHREAD=\n              LTLIBTHREAD=\n            fi\n          fi\n        fi\n      fi\n    fi\n    if test -z \"$gl_have_pthread\"; then\n      if test \"$gl_use_threads\" = yes || test \"$gl_use_threads\" = solaris; then\n        gl_have_solaristhread=\n        gl_save_LIBS=\"$LIBS\"\n        LIBS=\"$LIBS -lthread\"\n        AC_LINK_IFELSE(\n          [AC_LANG_PROGRAM(\n             [[\n#include <thread.h>\n#include <synch.h>\n             ]],\n             [[thr_self();]])],\n          [gl_have_solaristhread=yes])\n        LIBS=\"$gl_save_LIBS\"\n        if test -n \"$gl_have_solaristhread\"; then\n          gl_threads_api=solaris\n          LIBTHREAD=-lthread\n          LTLIBTHREAD=-lthread\n          LIBMULTITHREAD=\"$LIBTHREAD\"\n          LTLIBMULTITHREAD=\"$LTLIBTHREAD\"\n          AC_DEFINE([USE_SOLARIS_THREADS], [1],\n            [Define if the old Solaris multithreading library can be used.])\n          if case \"$gl_cv_have_weak\" in *yes) true;; *) false;; esac; then\n            AC_DEFINE([USE_SOLARIS_THREADS_WEAK], [1],\n              [Define if references to the old Solaris multithreading library should be made weak.])\n            LIBTHREAD=\n            LTLIBTHREAD=\n          fi\n        fi\n      fi\n    fi\n    if test \"$gl_use_threads\" = pth; then\n      gl_save_CPPFLAGS=\"$CPPFLAGS\"\n      AC_LIB_LINKFLAGS([pth])\n      gl_have_pth=\n      gl_save_LIBS=\"$LIBS\"\n      LIBS=\"$LIBS $LIBPTH\"\n      AC_LINK_IFELSE(\n        [AC_LANG_PROGRAM([[#include <pth.h>]], [[pth_self();]])],\n        [gl_have_pth=yes])\n      LIBS=\"$gl_save_LIBS\"\n      if test -n \"$gl_have_pth\"; then\n        gl_threads_api=pth\n        LIBTHREAD=\"$LIBPTH\"\n        LTLIBTHREAD=\"$LTLIBPTH\"\n        LIBMULTITHREAD=\"$LIBTHREAD\"\n        LTLIBMULTITHREAD=\"$LTLIBTHREAD\"\n        AC_DEFINE([USE_PTH_THREADS], [1],\n          [Define if the GNU Pth multithreading library can be used.])\n        if test -n \"$LIBMULTITHREAD\" || test -n \"$LTLIBMULTITHREAD\"; then\n          if case \"$gl_cv_have_weak\" in *yes) true;; *) false;; esac; then\n            AC_DEFINE([USE_PTH_THREADS_WEAK], [1],\n              [Define if references to the GNU Pth multithreading library should be made weak.])\n            LIBTHREAD=\n            LTLIBTHREAD=\n          fi\n        fi\n      else\n        CPPFLAGS=\"$gl_save_CPPFLAGS\"\n      fi\n    fi\n    if test -z \"$gl_have_pthread\"; then\n      case \"$gl_use_threads\" in\n        yes | windows | win32) # The 'win32' is for backward compatibility.\n          if { case \"$host_os\" in\n                 mingw*) true;;\n                 *) false;;\n               esac\n             }; then\n            gl_threads_api=windows\n            AC_DEFINE([USE_WINDOWS_THREADS], [1],\n              [Define if the native Windows multithreading API can be used.])\n          fi\n          ;;\n      esac\n    fi\n  fi\n  AC_MSG_CHECKING([for multithread API to use])\n  AC_MSG_RESULT([$gl_threads_api])\n  AC_SUBST([LIBTHREAD])\n  AC_SUBST([LTLIBTHREAD])\n  AC_SUBST([LIBMULTITHREAD])\n  AC_SUBST([LTLIBMULTITHREAD])\n])\n\nAC_DEFUN([gl_THREADLIB],\n[\n  AC_REQUIRE([gl_THREADLIB_EARLY])\n  AC_REQUIRE([gl_THREADLIB_BODY])\n])\n\n\ndnl gl_DISABLE_THREADS\ndnl ------------------\ndnl Sets the gl_THREADLIB default so that threads are not used by default.\ndnl The user can still override it at installation time, by using the\ndnl configure option '--enable-threads'.\n\nAC_DEFUN([gl_DISABLE_THREADS], [\n  m4_divert_text([INIT_PREPARE], [gl_use_threads_default=no])\n])\n\n\ndnl Survey of platforms:\ndnl\ndnl Platform           Available  Compiler    Supports   test-lock\ndnl                    flavours   option      weak       result\ndnl ---------------    ---------  ---------   --------   ---------\ndnl Linux 2.4/glibc    posix      -lpthread       Y      OK\ndnl\ndnl GNU Hurd/glibc     posix\ndnl\ndnl Ubuntu 14.04       posix      -pthread        Y      OK\ndnl\ndnl FreeBSD 5.3        posix      -lc_r           Y\ndnl                    posix      -lkse ?         Y\ndnl                    posix      -lpthread ?     Y\ndnl                    posix      -lthr           Y\ndnl\ndnl FreeBSD 5.2        posix      -lc_r           Y\ndnl                    posix      -lkse           Y\ndnl                    posix      -lthr           Y\ndnl\ndnl FreeBSD 4.0,4.10   posix      -lc_r           Y      OK\ndnl\ndnl NetBSD 1.6         --\ndnl\ndnl OpenBSD 3.4        posix      -lpthread       Y      OK\ndnl\ndnl Mac OS X 10.[123]  posix      -lpthread       Y      OK\ndnl\ndnl Solaris 7,8,9      posix      -lpthread       Y      Sol 7,8: 0.0; Sol 9: OK\ndnl                    solaris    -lthread        Y      Sol 7,8: 0.0; Sol 9: OK\ndnl\ndnl HP-UX 11           posix      -lpthread       N (cc) OK\ndnl                                               Y (gcc)\ndnl\ndnl IRIX 6.5           posix      -lpthread       Y      0.5\ndnl\ndnl AIX 4.3,5.1        posix      -lpthread       N      AIX 4: 0.5; AIX 5: OK\ndnl\ndnl OSF/1 4.0,5.1      posix      -pthread (cc)   N      OK\ndnl                               -lpthread (gcc) Y\ndnl\ndnl Cygwin             posix      -lpthread       Y      OK\ndnl\ndnl Any of the above   pth        -lpth                  0.0\ndnl\ndnl Mingw              windows                    N      OK\ndnl\ndnl BeOS 5             --\ndnl\ndnl The test-lock result shows what happens if in test-lock.c EXPLICIT_YIELD is\ndnl turned off:\ndnl   OK if all three tests terminate OK,\ndnl   0.5 if the first test terminates OK but the second one loops endlessly,\ndnl   0.0 if the first test already loops endlessly.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/time_h.m4",
    "content": "# Configure a more-standard replacement for <time.h>.\n\n# Copyright (C) 2000-2001, 2003-2007, 2009-2017 Free Software Foundation, Inc.\n\n# serial 9\n\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# Written by Paul Eggert and Jim Meyering.\n\nAC_DEFUN([gl_HEADER_TIME_H],\n[\n  dnl Use AC_REQUIRE here, so that the default behavior below is expanded\n  dnl once only, before all statements that occur in other macros.\n  AC_REQUIRE([gl_HEADER_TIME_H_BODY])\n])\n\nAC_DEFUN([gl_HEADER_TIME_H_BODY],\n[\n  AC_REQUIRE([AC_C_RESTRICT])\n  AC_REQUIRE([gl_HEADER_TIME_H_DEFAULTS])\n  gl_NEXT_HEADERS([time.h])\n  AC_REQUIRE([gl_CHECK_TYPE_STRUCT_TIMESPEC])\n])\n\ndnl Check whether 'struct timespec' is declared\ndnl in time.h, sys/time.h, pthread.h, or unistd.h.\n\nAC_DEFUN([gl_CHECK_TYPE_STRUCT_TIMESPEC],\n[\n  AC_CHECK_HEADERS_ONCE([sys/time.h])\n  AC_CACHE_CHECK([for struct timespec in <time.h>],\n    [gl_cv_sys_struct_timespec_in_time_h],\n    [AC_COMPILE_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <time.h>\n          ]],\n          [[static struct timespec x; x.tv_sec = x.tv_nsec;]])],\n       [gl_cv_sys_struct_timespec_in_time_h=yes],\n       [gl_cv_sys_struct_timespec_in_time_h=no])])\n\n  TIME_H_DEFINES_STRUCT_TIMESPEC=0\n  SYS_TIME_H_DEFINES_STRUCT_TIMESPEC=0\n  PTHREAD_H_DEFINES_STRUCT_TIMESPEC=0\n  UNISTD_H_DEFINES_STRUCT_TIMESPEC=0\n  if test $gl_cv_sys_struct_timespec_in_time_h = yes; then\n    TIME_H_DEFINES_STRUCT_TIMESPEC=1\n  else\n    AC_CACHE_CHECK([for struct timespec in <sys/time.h>],\n      [gl_cv_sys_struct_timespec_in_sys_time_h],\n      [AC_COMPILE_IFELSE(\n         [AC_LANG_PROGRAM(\n            [[#include <sys/time.h>\n            ]],\n            [[static struct timespec x; x.tv_sec = x.tv_nsec;]])],\n         [gl_cv_sys_struct_timespec_in_sys_time_h=yes],\n         [gl_cv_sys_struct_timespec_in_sys_time_h=no])])\n    if test $gl_cv_sys_struct_timespec_in_sys_time_h = yes; then\n      SYS_TIME_H_DEFINES_STRUCT_TIMESPEC=1\n    else\n      AC_CACHE_CHECK([for struct timespec in <pthread.h>],\n        [gl_cv_sys_struct_timespec_in_pthread_h],\n        [AC_COMPILE_IFELSE(\n           [AC_LANG_PROGRAM(\n              [[#include <pthread.h>\n              ]],\n              [[static struct timespec x; x.tv_sec = x.tv_nsec;]])],\n           [gl_cv_sys_struct_timespec_in_pthread_h=yes],\n           [gl_cv_sys_struct_timespec_in_pthread_h=no])])\n      if test $gl_cv_sys_struct_timespec_in_pthread_h = yes; then\n        PTHREAD_H_DEFINES_STRUCT_TIMESPEC=1\n      else\n        AC_CACHE_CHECK([for struct timespec in <unistd.h>],\n          [gl_cv_sys_struct_timespec_in_unistd_h],\n          [AC_COMPILE_IFELSE(\n             [AC_LANG_PROGRAM(\n                [[#include <unistd.h>\n                ]],\n                [[static struct timespec x; x.tv_sec = x.tv_nsec;]])],\n             [gl_cv_sys_struct_timespec_in_unistd_h=yes],\n             [gl_cv_sys_struct_timespec_in_unistd_h=no])])\n        if test $gl_cv_sys_struct_timespec_in_unistd_h = yes; then\n          UNISTD_H_DEFINES_STRUCT_TIMESPEC=1\n        fi\n      fi\n    fi\n  fi\n  AC_SUBST([TIME_H_DEFINES_STRUCT_TIMESPEC])\n  AC_SUBST([SYS_TIME_H_DEFINES_STRUCT_TIMESPEC])\n  AC_SUBST([PTHREAD_H_DEFINES_STRUCT_TIMESPEC])\n  AC_SUBST([UNISTD_H_DEFINES_STRUCT_TIMESPEC])\n])\n\nAC_DEFUN([gl_TIME_MODULE_INDICATOR],\n[\n  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.\n  AC_REQUIRE([gl_HEADER_TIME_H_DEFAULTS])\n  gl_MODULE_INDICATOR_SET_VARIABLE([$1])\n  dnl Define it also as a C macro, for the benefit of the unit tests.\n  gl_MODULE_INDICATOR_FOR_TESTS([$1])\n])\n\nAC_DEFUN([gl_HEADER_TIME_H_DEFAULTS],\n[\n  GNULIB_MKTIME=0;                       AC_SUBST([GNULIB_MKTIME])\n  GNULIB_NANOSLEEP=0;                    AC_SUBST([GNULIB_NANOSLEEP])\n  GNULIB_STRPTIME=0;                     AC_SUBST([GNULIB_STRPTIME])\n  GNULIB_TIMEGM=0;                       AC_SUBST([GNULIB_TIMEGM])\n  GNULIB_TIME_R=0;                       AC_SUBST([GNULIB_TIME_R])\n  GNULIB_TIME_RZ=0;                      AC_SUBST([GNULIB_TIME_RZ])\n  dnl Assume proper GNU behavior unless another module says otherwise.\n  HAVE_DECL_LOCALTIME_R=1;               AC_SUBST([HAVE_DECL_LOCALTIME_R])\n  HAVE_NANOSLEEP=1;                      AC_SUBST([HAVE_NANOSLEEP])\n  HAVE_STRPTIME=1;                       AC_SUBST([HAVE_STRPTIME])\n  HAVE_TIMEGM=1;                         AC_SUBST([HAVE_TIMEGM])\n  dnl If another module says to replace or to not replace, do that.\n  dnl Otherwise, replace only if someone compiles with -DGNULIB_PORTCHECK;\n  dnl this lets maintainers check for portability.\n  REPLACE_LOCALTIME_R=GNULIB_PORTCHECK;  AC_SUBST([REPLACE_LOCALTIME_R])\n  REPLACE_MKTIME=GNULIB_PORTCHECK;       AC_SUBST([REPLACE_MKTIME])\n  REPLACE_NANOSLEEP=GNULIB_PORTCHECK;    AC_SUBST([REPLACE_NANOSLEEP])\n  REPLACE_TIMEGM=GNULIB_PORTCHECK;       AC_SUBST([REPLACE_TIMEGM])\n\n  dnl Hack so that the time module doesn't depend on the sys_time module.\n  dnl First, default GNULIB_GETTIMEOFDAY to 0 if sys_time is absent.\n  : ${GNULIB_GETTIMEOFDAY=0};            AC_SUBST([GNULIB_GETTIMEOFDAY])\n  dnl Second, it's OK to not use GNULIB_PORTCHECK for REPLACE_GMTIME\n  dnl and REPLACE_LOCALTIME, as portability to Solaris 2.6 and earlier\n  dnl is no longer a big deal.\n  REPLACE_GMTIME=0;                      AC_SUBST([REPLACE_GMTIME])\n  REPLACE_LOCALTIME=0;                   AC_SUBST([REPLACE_LOCALTIME])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/uintmax_t.m4",
    "content": "# uintmax_t.m4 serial 12\ndnl Copyright (C) 1997-2004, 2007-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Paul Eggert.\n\nAC_PREREQ([2.13])\n\n# Define uintmax_t to 'unsigned long' or 'unsigned long long'\n# if it is not already defined in <stdint.h> or <inttypes.h>.\n\nAC_DEFUN([gl_AC_TYPE_UINTMAX_T],\n[\n  AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])\n  AC_REQUIRE([gl_AC_HEADER_STDINT_H])\n  if test $gl_cv_header_inttypes_h = no && test $gl_cv_header_stdint_h = no; then\n    AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])\n    test $ac_cv_type_unsigned_long_long_int = yes \\\n      && ac_type='unsigned long long' \\\n      || ac_type='unsigned long'\n    AC_DEFINE_UNQUOTED([uintmax_t], [$ac_type],\n      [Define to unsigned long or unsigned long long\n       if <stdint.h> and <inttypes.h> don't define.])\n  else\n    AC_DEFINE([HAVE_UINTMAX_T], [1],\n      [Define if you have the 'uintmax_t' type in <stdint.h> or <inttypes.h>.])\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/unistd_h.m4",
    "content": "# unistd_h.m4 serial 69\ndnl Copyright (C) 2006-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl Written by Simon Josefsson, Bruno Haible.\n\nAC_DEFUN([gl_UNISTD_H],\n[\n  dnl Use AC_REQUIRE here, so that the default behavior below is expanded\n  dnl once only, before all statements that occur in other macros.\n  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])\n\n  gl_CHECK_NEXT_HEADERS([unistd.h])\n  if test $ac_cv_header_unistd_h = yes; then\n    HAVE_UNISTD_H=1\n  else\n    HAVE_UNISTD_H=0\n  fi\n  AC_SUBST([HAVE_UNISTD_H])\n\n  dnl Ensure the type pid_t gets defined.\n  AC_REQUIRE([AC_TYPE_PID_T])\n\n  dnl Determine WINDOWS_64_BIT_OFF_T.\n  AC_REQUIRE([gl_TYPE_OFF_T])\n\n  dnl Check for declarations of anything we want to poison if the\n  dnl corresponding gnulib module is not in use.\n  gl_WARN_ON_USE_PREPARE([[\n#if HAVE_UNISTD_H\n# include <unistd.h>\n#endif\n/* Some systems declare various items in the wrong headers.  */\n#if !(defined __GLIBC__ && !defined __UCLIBC__)\n# include <fcntl.h>\n# include <stdio.h>\n# include <stdlib.h>\n# if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__\n#  include <io.h>\n# endif\n#endif\n    ]], [chdir chown dup dup2 dup3 environ euidaccess faccessat fchdir fchownat\n    fdatasync fsync ftruncate getcwd getdomainname getdtablesize getgroups\n    gethostname getlogin getlogin_r getpagesize\n    getusershell setusershell endusershell\n    group_member isatty lchown link linkat lseek pipe pipe2 pread pwrite\n    readlink readlinkat rmdir sethostname sleep symlink symlinkat ttyname_r\n    unlink unlinkat usleep])\n])\n\nAC_DEFUN([gl_UNISTD_MODULE_INDICATOR],\n[\n  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.\n  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])\n  gl_MODULE_INDICATOR_SET_VARIABLE([$1])\n  dnl Define it also as a C macro, for the benefit of the unit tests.\n  gl_MODULE_INDICATOR_FOR_TESTS([$1])\n])\n\nAC_DEFUN([gl_UNISTD_H_DEFAULTS],\n[\n  GNULIB_CHDIR=0;                AC_SUBST([GNULIB_CHDIR])\n  GNULIB_CHOWN=0;                AC_SUBST([GNULIB_CHOWN])\n  GNULIB_CLOSE=0;                AC_SUBST([GNULIB_CLOSE])\n  GNULIB_DUP=0;                  AC_SUBST([GNULIB_DUP])\n  GNULIB_DUP2=0;                 AC_SUBST([GNULIB_DUP2])\n  GNULIB_DUP3=0;                 AC_SUBST([GNULIB_DUP3])\n  GNULIB_ENVIRON=0;              AC_SUBST([GNULIB_ENVIRON])\n  GNULIB_EUIDACCESS=0;           AC_SUBST([GNULIB_EUIDACCESS])\n  GNULIB_FACCESSAT=0;            AC_SUBST([GNULIB_FACCESSAT])\n  GNULIB_FCHDIR=0;               AC_SUBST([GNULIB_FCHDIR])\n  GNULIB_FCHOWNAT=0;             AC_SUBST([GNULIB_FCHOWNAT])\n  GNULIB_FDATASYNC=0;            AC_SUBST([GNULIB_FDATASYNC])\n  GNULIB_FSYNC=0;                AC_SUBST([GNULIB_FSYNC])\n  GNULIB_FTRUNCATE=0;            AC_SUBST([GNULIB_FTRUNCATE])\n  GNULIB_GETCWD=0;               AC_SUBST([GNULIB_GETCWD])\n  GNULIB_GETDOMAINNAME=0;        AC_SUBST([GNULIB_GETDOMAINNAME])\n  GNULIB_GETDTABLESIZE=0;        AC_SUBST([GNULIB_GETDTABLESIZE])\n  GNULIB_GETGROUPS=0;            AC_SUBST([GNULIB_GETGROUPS])\n  GNULIB_GETHOSTNAME=0;          AC_SUBST([GNULIB_GETHOSTNAME])\n  GNULIB_GETLOGIN=0;             AC_SUBST([GNULIB_GETLOGIN])\n  GNULIB_GETLOGIN_R=0;           AC_SUBST([GNULIB_GETLOGIN_R])\n  GNULIB_GETPAGESIZE=0;          AC_SUBST([GNULIB_GETPAGESIZE])\n  GNULIB_GETUSERSHELL=0;         AC_SUBST([GNULIB_GETUSERSHELL])\n  GNULIB_GROUP_MEMBER=0;         AC_SUBST([GNULIB_GROUP_MEMBER])\n  GNULIB_ISATTY=0;               AC_SUBST([GNULIB_ISATTY])\n  GNULIB_LCHOWN=0;               AC_SUBST([GNULIB_LCHOWN])\n  GNULIB_LINK=0;                 AC_SUBST([GNULIB_LINK])\n  GNULIB_LINKAT=0;               AC_SUBST([GNULIB_LINKAT])\n  GNULIB_LSEEK=0;                AC_SUBST([GNULIB_LSEEK])\n  GNULIB_PIPE=0;                 AC_SUBST([GNULIB_PIPE])\n  GNULIB_PIPE2=0;                AC_SUBST([GNULIB_PIPE2])\n  GNULIB_PREAD=0;                AC_SUBST([GNULIB_PREAD])\n  GNULIB_PWRITE=0;               AC_SUBST([GNULIB_PWRITE])\n  GNULIB_READ=0;                 AC_SUBST([GNULIB_READ])\n  GNULIB_READLINK=0;             AC_SUBST([GNULIB_READLINK])\n  GNULIB_READLINKAT=0;           AC_SUBST([GNULIB_READLINKAT])\n  GNULIB_RMDIR=0;                AC_SUBST([GNULIB_RMDIR])\n  GNULIB_SETHOSTNAME=0;          AC_SUBST([GNULIB_SETHOSTNAME])\n  GNULIB_SLEEP=0;                AC_SUBST([GNULIB_SLEEP])\n  GNULIB_SYMLINK=0;              AC_SUBST([GNULIB_SYMLINK])\n  GNULIB_SYMLINKAT=0;            AC_SUBST([GNULIB_SYMLINKAT])\n  GNULIB_TTYNAME_R=0;            AC_SUBST([GNULIB_TTYNAME_R])\n  GNULIB_UNISTD_H_NONBLOCKING=0; AC_SUBST([GNULIB_UNISTD_H_NONBLOCKING])\n  GNULIB_UNISTD_H_SIGPIPE=0;     AC_SUBST([GNULIB_UNISTD_H_SIGPIPE])\n  GNULIB_UNLINK=0;               AC_SUBST([GNULIB_UNLINK])\n  GNULIB_UNLINKAT=0;             AC_SUBST([GNULIB_UNLINKAT])\n  GNULIB_USLEEP=0;               AC_SUBST([GNULIB_USLEEP])\n  GNULIB_WRITE=0;                AC_SUBST([GNULIB_WRITE])\n  dnl Assume proper GNU behavior unless another module says otherwise.\n  HAVE_CHOWN=1;           AC_SUBST([HAVE_CHOWN])\n  HAVE_DUP2=1;            AC_SUBST([HAVE_DUP2])\n  HAVE_DUP3=1;            AC_SUBST([HAVE_DUP3])\n  HAVE_EUIDACCESS=1;      AC_SUBST([HAVE_EUIDACCESS])\n  HAVE_FACCESSAT=1;       AC_SUBST([HAVE_FACCESSAT])\n  HAVE_FCHDIR=1;          AC_SUBST([HAVE_FCHDIR])\n  HAVE_FCHOWNAT=1;        AC_SUBST([HAVE_FCHOWNAT])\n  HAVE_FDATASYNC=1;       AC_SUBST([HAVE_FDATASYNC])\n  HAVE_FSYNC=1;           AC_SUBST([HAVE_FSYNC])\n  HAVE_FTRUNCATE=1;       AC_SUBST([HAVE_FTRUNCATE])\n  HAVE_GETDTABLESIZE=1;   AC_SUBST([HAVE_GETDTABLESIZE])\n  HAVE_GETGROUPS=1;       AC_SUBST([HAVE_GETGROUPS])\n  HAVE_GETHOSTNAME=1;     AC_SUBST([HAVE_GETHOSTNAME])\n  HAVE_GETLOGIN=1;        AC_SUBST([HAVE_GETLOGIN])\n  HAVE_GETPAGESIZE=1;     AC_SUBST([HAVE_GETPAGESIZE])\n  HAVE_GROUP_MEMBER=1;    AC_SUBST([HAVE_GROUP_MEMBER])\n  HAVE_LCHOWN=1;          AC_SUBST([HAVE_LCHOWN])\n  HAVE_LINK=1;            AC_SUBST([HAVE_LINK])\n  HAVE_LINKAT=1;          AC_SUBST([HAVE_LINKAT])\n  HAVE_PIPE=1;            AC_SUBST([HAVE_PIPE])\n  HAVE_PIPE2=1;           AC_SUBST([HAVE_PIPE2])\n  HAVE_PREAD=1;           AC_SUBST([HAVE_PREAD])\n  HAVE_PWRITE=1;          AC_SUBST([HAVE_PWRITE])\n  HAVE_READLINK=1;        AC_SUBST([HAVE_READLINK])\n  HAVE_READLINKAT=1;      AC_SUBST([HAVE_READLINKAT])\n  HAVE_SETHOSTNAME=1;     AC_SUBST([HAVE_SETHOSTNAME])\n  HAVE_SLEEP=1;           AC_SUBST([HAVE_SLEEP])\n  HAVE_SYMLINK=1;         AC_SUBST([HAVE_SYMLINK])\n  HAVE_SYMLINKAT=1;       AC_SUBST([HAVE_SYMLINKAT])\n  HAVE_UNLINKAT=1;        AC_SUBST([HAVE_UNLINKAT])\n  HAVE_USLEEP=1;          AC_SUBST([HAVE_USLEEP])\n  HAVE_DECL_ENVIRON=1;    AC_SUBST([HAVE_DECL_ENVIRON])\n  HAVE_DECL_FCHDIR=1;     AC_SUBST([HAVE_DECL_FCHDIR])\n  HAVE_DECL_FDATASYNC=1;  AC_SUBST([HAVE_DECL_FDATASYNC])\n  HAVE_DECL_GETDOMAINNAME=1; AC_SUBST([HAVE_DECL_GETDOMAINNAME])\n  HAVE_DECL_GETLOGIN=1;   AC_SUBST([HAVE_DECL_GETLOGIN])\n  HAVE_DECL_GETLOGIN_R=1; AC_SUBST([HAVE_DECL_GETLOGIN_R])\n  HAVE_DECL_GETPAGESIZE=1; AC_SUBST([HAVE_DECL_GETPAGESIZE])\n  HAVE_DECL_GETUSERSHELL=1; AC_SUBST([HAVE_DECL_GETUSERSHELL])\n  HAVE_DECL_SETHOSTNAME=1; AC_SUBST([HAVE_DECL_SETHOSTNAME])\n  HAVE_DECL_TTYNAME_R=1;  AC_SUBST([HAVE_DECL_TTYNAME_R])\n  HAVE_OS_H=0;            AC_SUBST([HAVE_OS_H])\n  HAVE_SYS_PARAM_H=0;     AC_SUBST([HAVE_SYS_PARAM_H])\n  REPLACE_CHOWN=0;        AC_SUBST([REPLACE_CHOWN])\n  REPLACE_CLOSE=0;        AC_SUBST([REPLACE_CLOSE])\n  REPLACE_DUP=0;          AC_SUBST([REPLACE_DUP])\n  REPLACE_DUP2=0;         AC_SUBST([REPLACE_DUP2])\n  REPLACE_FCHOWNAT=0;     AC_SUBST([REPLACE_FCHOWNAT])\n  REPLACE_FTRUNCATE=0;    AC_SUBST([REPLACE_FTRUNCATE])\n  REPLACE_GETCWD=0;       AC_SUBST([REPLACE_GETCWD])\n  REPLACE_GETDOMAINNAME=0; AC_SUBST([REPLACE_GETDOMAINNAME])\n  REPLACE_GETDTABLESIZE=0; AC_SUBST([REPLACE_GETDTABLESIZE])\n  REPLACE_GETLOGIN_R=0;   AC_SUBST([REPLACE_GETLOGIN_R])\n  REPLACE_GETGROUPS=0;    AC_SUBST([REPLACE_GETGROUPS])\n  REPLACE_GETPAGESIZE=0;  AC_SUBST([REPLACE_GETPAGESIZE])\n  REPLACE_ISATTY=0;       AC_SUBST([REPLACE_ISATTY])\n  REPLACE_LCHOWN=0;       AC_SUBST([REPLACE_LCHOWN])\n  REPLACE_LINK=0;         AC_SUBST([REPLACE_LINK])\n  REPLACE_LINKAT=0;       AC_SUBST([REPLACE_LINKAT])\n  REPLACE_LSEEK=0;        AC_SUBST([REPLACE_LSEEK])\n  REPLACE_PREAD=0;        AC_SUBST([REPLACE_PREAD])\n  REPLACE_PWRITE=0;       AC_SUBST([REPLACE_PWRITE])\n  REPLACE_READ=0;         AC_SUBST([REPLACE_READ])\n  REPLACE_READLINK=0;     AC_SUBST([REPLACE_READLINK])\n  REPLACE_READLINKAT=0;   AC_SUBST([REPLACE_READLINKAT])\n  REPLACE_RMDIR=0;        AC_SUBST([REPLACE_RMDIR])\n  REPLACE_SLEEP=0;        AC_SUBST([REPLACE_SLEEP])\n  REPLACE_SYMLINK=0;      AC_SUBST([REPLACE_SYMLINK])\n  REPLACE_SYMLINKAT=0;    AC_SUBST([REPLACE_SYMLINKAT])\n  REPLACE_TTYNAME_R=0;    AC_SUBST([REPLACE_TTYNAME_R])\n  REPLACE_UNLINK=0;       AC_SUBST([REPLACE_UNLINK])\n  REPLACE_UNLINKAT=0;     AC_SUBST([REPLACE_UNLINKAT])\n  REPLACE_USLEEP=0;       AC_SUBST([REPLACE_USLEEP])\n  REPLACE_WRITE=0;        AC_SUBST([REPLACE_WRITE])\n  UNISTD_H_HAVE_WINSOCK2_H=0; AC_SUBST([UNISTD_H_HAVE_WINSOCK2_H])\n  UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS=0;\n                           AC_SUBST([UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/unlocked-io.m4",
    "content": "# unlocked-io.m4 serial 15\n\n# Copyright (C) 1998-2006, 2009-2017 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\ndnl From Jim Meyering.\ndnl\ndnl See if the glibc *_unlocked I/O macros or functions are available.\ndnl Use only those *_unlocked macros or functions that are declared\ndnl (because some of them were declared in Solaris 2.5.1 but were removed\ndnl in Solaris 2.6, whereas we want binaries built on Solaris 2.5.1 to run\ndnl on Solaris 2.6).\n\nAC_DEFUN([gl_FUNC_GLIBC_UNLOCKED_IO],\n[\n  AC_DEFINE([USE_UNLOCKED_IO], [1],\n    [Define to 1 if you want getc etc. to use unlocked I/O if available.\n     Unlocked I/O can improve performance in unithreaded apps,\n     but it is not safe for multithreaded apps.])\n\n  dnl Persuade glibc and Solaris <stdio.h> to declare\n  dnl fgets_unlocked(), fputs_unlocked() etc.\n  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])\n\n  AC_CHECK_DECLS_ONCE([clearerr_unlocked])\n  AC_CHECK_DECLS_ONCE([feof_unlocked])\n  AC_CHECK_DECLS_ONCE([ferror_unlocked])\n  AC_CHECK_DECLS_ONCE([fflush_unlocked])\n  AC_CHECK_DECLS_ONCE([fgets_unlocked])\n  AC_CHECK_DECLS_ONCE([fputc_unlocked])\n  AC_CHECK_DECLS_ONCE([fputs_unlocked])\n  AC_CHECK_DECLS_ONCE([fread_unlocked])\n  AC_CHECK_DECLS_ONCE([fwrite_unlocked])\n  AC_CHECK_DECLS_ONCE([getc_unlocked])\n  AC_CHECK_DECLS_ONCE([getchar_unlocked])\n  AC_CHECK_DECLS_ONCE([putc_unlocked])\n  AC_CHECK_DECLS_ONCE([putchar_unlocked])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/visibility.m4",
    "content": "# visibility.m4 serial 5 (gettext-0.18.2)\ndnl Copyright (C) 2005, 2008, 2010-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\ndnl Tests whether the compiler supports the command-line option\ndnl -fvisibility=hidden and the function and variable attributes\ndnl __attribute__((__visibility__(\"hidden\"))) and\ndnl __attribute__((__visibility__(\"default\"))).\ndnl Does *not* test for __visibility__(\"protected\") - which has tricky\ndnl semantics (see the 'vismain' test in glibc) and does not exist e.g. on\ndnl Mac OS X.\ndnl Does *not* test for __visibility__(\"internal\") - which has processor\ndnl dependent semantics.\ndnl Does *not* test for #pragma GCC visibility push(hidden) - which is\ndnl \"really only recommended for legacy code\".\ndnl Set the variable CFLAG_VISIBILITY.\ndnl Defines and sets the variable HAVE_VISIBILITY.\n\nAC_DEFUN([gl_VISIBILITY],\n[\n  AC_REQUIRE([AC_PROG_CC])\n  CFLAG_VISIBILITY=\n  HAVE_VISIBILITY=0\n  if test -n \"$GCC\"; then\n    dnl First, check whether -Werror can be added to the command line, or\n    dnl whether it leads to an error because of some other option that the\n    dnl user has put into $CC $CFLAGS $CPPFLAGS.\n    AC_MSG_CHECKING([whether the -Werror option is usable])\n    AC_CACHE_VAL([gl_cv_cc_vis_werror], [\n      gl_save_CFLAGS=\"$CFLAGS\"\n      CFLAGS=\"$CFLAGS -Werror\"\n      AC_COMPILE_IFELSE(\n        [AC_LANG_PROGRAM([[]], [[]])],\n        [gl_cv_cc_vis_werror=yes],\n        [gl_cv_cc_vis_werror=no])\n      CFLAGS=\"$gl_save_CFLAGS\"])\n    AC_MSG_RESULT([$gl_cv_cc_vis_werror])\n    dnl Now check whether visibility declarations are supported.\n    AC_MSG_CHECKING([for simple visibility declarations])\n    AC_CACHE_VAL([gl_cv_cc_visibility], [\n      gl_save_CFLAGS=\"$CFLAGS\"\n      CFLAGS=\"$CFLAGS -fvisibility=hidden\"\n      dnl We use the option -Werror and a function dummyfunc, because on some\n      dnl platforms (Cygwin 1.7) the use of -fvisibility triggers a warning\n      dnl \"visibility attribute not supported in this configuration; ignored\"\n      dnl at the first function definition in every compilation unit, and we\n      dnl don't want to use the option in this case.\n      if test $gl_cv_cc_vis_werror = yes; then\n        CFLAGS=\"$CFLAGS -Werror\"\n      fi\n      AC_COMPILE_IFELSE(\n        [AC_LANG_PROGRAM(\n           [[extern __attribute__((__visibility__(\"hidden\"))) int hiddenvar;\n             extern __attribute__((__visibility__(\"default\"))) int exportedvar;\n             extern __attribute__((__visibility__(\"hidden\"))) int hiddenfunc (void);\n             extern __attribute__((__visibility__(\"default\"))) int exportedfunc (void);\n             void dummyfunc (void) {}\n           ]],\n           [[]])],\n        [gl_cv_cc_visibility=yes],\n        [gl_cv_cc_visibility=no])\n      CFLAGS=\"$gl_save_CFLAGS\"])\n    AC_MSG_RESULT([$gl_cv_cc_visibility])\n    if test $gl_cv_cc_visibility = yes; then\n      CFLAG_VISIBILITY=\"-fvisibility=hidden\"\n      HAVE_VISIBILITY=1\n    fi\n  fi\n  AC_SUBST([CFLAG_VISIBILITY])\n  AC_SUBST([HAVE_VISIBILITY])\n  AC_DEFINE_UNQUOTED([HAVE_VISIBILITY], [$HAVE_VISIBILITY],\n    [Define to 1 or 0, depending whether the compiler supports simple visibility declarations.])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/warn-on-use.m4",
    "content": "# warn-on-use.m4 serial 5\ndnl Copyright (C) 2010-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\n# gl_WARN_ON_USE_PREPARE(INCLUDES, NAMES)\n# ---------------------------------------\n# For each whitespace-separated element in the list of NAMES, define\n# HAVE_RAW_DECL_name if the function has a declaration among INCLUDES\n# even after being undefined as a macro.\n#\n# See warn-on-use.h for some hints on how to poison function names, as\n# well as ideas on poisoning global variables and macros.  NAMES may\n# include global variables, but remember that only functions work with\n# _GL_WARN_ON_USE.  Typically, INCLUDES only needs to list a single\n# header, but if the replacement header pulls in other headers because\n# some systems declare functions in the wrong header, then INCLUDES\n# should do likewise.\n#\n# It is generally safe to assume declarations for functions declared\n# in the intersection of C89 and C11 (such as printf) without\n# needing gl_WARN_ON_USE_PREPARE.\nAC_DEFUN([gl_WARN_ON_USE_PREPARE],\n[\n  m4_foreach_w([gl_decl], [$2],\n    [AH_TEMPLATE([HAVE_RAW_DECL_]AS_TR_CPP(m4_defn([gl_decl])),\n      [Define to 1 if ]m4_defn([gl_decl])[ is declared even after\n       undefining macros.])])dnl\ndnl FIXME: gl_Symbol must be used unquoted until we can assume\ndnl autoconf 2.64 or newer.\n  for gl_func in m4_flatten([$2]); do\n    AS_VAR_PUSHDEF([gl_Symbol], [gl_cv_have_raw_decl_$gl_func])dnl\n    AC_CACHE_CHECK([whether $gl_func is declared without a macro],\n      gl_Symbol,\n      [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$1],\n[@%:@undef $gl_func\n  (void) $gl_func;])],\n        [AS_VAR_SET(gl_Symbol, [yes])], [AS_VAR_SET(gl_Symbol, [no])])])\n    AS_VAR_IF(gl_Symbol, [yes],\n      [AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_RAW_DECL_$gl_func]), [1])\n       dnl shortcut - if the raw declaration exists, then set a cache\n       dnl variable to allow skipping any later AC_CHECK_DECL efforts\n       eval ac_cv_have_decl_$gl_func=yes])\n    AS_VAR_POPDEF([gl_Symbol])dnl\n  done\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/wchar_t.m4",
    "content": "# wchar_t.m4 serial 4 (gettext-0.18.2)\ndnl Copyright (C) 2002-2003, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\ndnl Test whether <stddef.h> has the 'wchar_t' type.\ndnl Prerequisite: AC_PROG_CC\n\nAC_DEFUN([gt_TYPE_WCHAR_T],\n[\n  AC_CACHE_CHECK([for wchar_t], [gt_cv_c_wchar_t],\n    [AC_COMPILE_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[#include <stddef.h>\n            wchar_t foo = (wchar_t)'\\0';]],\n          [[]])],\n       [gt_cv_c_wchar_t=yes],\n       [gt_cv_c_wchar_t=no])])\n  if test $gt_cv_c_wchar_t = yes; then\n    AC_DEFINE([HAVE_WCHAR_T], [1], [Define if you have the 'wchar_t' type.])\n  fi\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/wint_t.m4",
    "content": "# wint_t.m4 serial 6\ndnl Copyright (C) 2003, 2007-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\ndnl Test whether <wchar.h> has the 'wint_t' type and whether gnulib's\ndnl <wchar.h> or <wctype.h> would, if present, override 'wint_t'.\ndnl Prerequisite: AC_PROG_CC\n\nAC_DEFUN([gt_TYPE_WINT_T],\n[\n  AC_CACHE_CHECK([for wint_t], [gt_cv_c_wint_t],\n    [AC_COMPILE_IFELSE(\n       [AC_LANG_PROGRAM(\n          [[\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included\n   before <wchar.h>.  */\n#include <stddef.h>\n#include <stdio.h>\n#include <time.h>\n#include <wchar.h>\n            wint_t foo = (wchar_t)'\\0';]],\n          [[]])],\n       [gt_cv_c_wint_t=yes],\n       [gt_cv_c_wint_t=no])])\n  if test $gt_cv_c_wint_t = yes; then\n    AC_DEFINE([HAVE_WINT_T], [1], [Define if you have the 'wint_t' type.])\n\n    dnl Determine whether gnulib's <wchar.h> or <wctype.h> would, if present,\n    dnl override 'wint_t'.\n    AC_CACHE_CHECK([whether wint_t is too small],\n      [gl_cv_type_wint_t_too_small],\n      [AC_COMPILE_IFELSE(\n           [AC_LANG_PROGRAM([[\n/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before\n   <wchar.h>.\n   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be\n   included before <wchar.h>.  */\n#if !(defined __GLIBC__ && !defined __UCLIBC__)\n# include <stddef.h>\n# include <stdio.h>\n# include <time.h>\n#endif\n#include <wchar.h>\n              int verify[sizeof (wint_t) < sizeof (int) ? -1 : 1];\n              ]])],\n           [gl_cv_type_wint_t_too_small=no],\n           [gl_cv_type_wint_t_too_small=yes])])\n    if test $gl_cv_type_wint_t_too_small = yes; then\n      GNULIB_OVERRIDES_WINT_T=1\n    else\n      GNULIB_OVERRIDES_WINT_T=0\n    fi\n  else\n    GNULIB_OVERRIDES_WINT_T=0\n  fi\n  AC_SUBST([GNULIB_OVERRIDES_WINT_T])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/srcm4/xsize.m4",
    "content": "# xsize.m4 serial 5\ndnl Copyright (C) 2003-2004, 2008-2017 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\nAC_DEFUN([gl_XSIZE],\n[\n  dnl Prerequisites of lib/xsize.h.\n  AC_REQUIRE([gl_SIZE_MAX])\n  AC_CHECK_HEADERS([stdint.h])\n])\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/stamp-h1",
    "content": "timestamp for config.h\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ARMSCII-8.IRREVERSIBLE.TXT",
    "content": "0x28\t0x0028\n0x29\t0x0029\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ARMSCII-8.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA2\t0x0587\n0xA3\t0x0589\n0xA4\t0x0029\n0xA5\t0x0028\n0xA6\t0x00BB\n0xA7\t0x00AB\n0xA8\t0x2014\n0xA9\t0x002E\n0xAA\t0x055D\n0xAB\t0x002C\n0xAC\t0x002D\n0xAD\t0x058A\n0xAE\t0x2026\n0xAF\t0x055C\n0xB0\t0x055B\n0xB1\t0x055E\n0xB2\t0x0531\n0xB3\t0x0561\n0xB4\t0x0532\n0xB5\t0x0562\n0xB6\t0x0533\n0xB7\t0x0563\n0xB8\t0x0534\n0xB9\t0x0564\n0xBA\t0x0535\n0xBB\t0x0565\n0xBC\t0x0536\n0xBD\t0x0566\n0xBE\t0x0537\n0xBF\t0x0567\n0xC0\t0x0538\n0xC1\t0x0568\n0xC2\t0x0539\n0xC3\t0x0569\n0xC4\t0x053A\n0xC5\t0x056A\n0xC6\t0x053B\n0xC7\t0x056B\n0xC8\t0x053C\n0xC9\t0x056C\n0xCA\t0x053D\n0xCB\t0x056D\n0xCC\t0x053E\n0xCD\t0x056E\n0xCE\t0x053F\n0xCF\t0x056F\n0xD0\t0x0540\n0xD1\t0x0570\n0xD2\t0x0541\n0xD3\t0x0571\n0xD4\t0x0542\n0xD5\t0x0572\n0xD6\t0x0543\n0xD7\t0x0573\n0xD8\t0x0544\n0xD9\t0x0574\n0xDA\t0x0545\n0xDB\t0x0575\n0xDC\t0x0546\n0xDD\t0x0576\n0xDE\t0x0547\n0xDF\t0x0577\n0xE0\t0x0548\n0xE1\t0x0578\n0xE2\t0x0549\n0xE3\t0x0579\n0xE4\t0x054A\n0xE5\t0x057A\n0xE6\t0x054B\n0xE7\t0x057B\n0xE8\t0x054C\n0xE9\t0x057C\n0xEA\t0x054D\n0xEB\t0x057D\n0xEC\t0x054E\n0xED\t0x057E\n0xEE\t0x054F\n0xEF\t0x057F\n0xF0\t0x0550\n0xF1\t0x0580\n0xF2\t0x0551\n0xF3\t0x0581\n0xF4\t0x0552\n0xF5\t0x0582\n0xF6\t0x0553\n0xF7\t0x0583\n0xF8\t0x0554\n0xF9\t0x0584\n0xFA\t0x0555\n0xFB\t0x0585\n0xFC\t0x0556\n0xFD\t0x0586\n0xFE\t0x055A\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ASCII.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ATARIST.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C7\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x00E2\n0x84\t0x00E4\n0x85\t0x00E0\n0x86\t0x00E5\n0x87\t0x00E7\n0x88\t0x00EA\n0x89\t0x00EB\n0x8A\t0x00E8\n0x8B\t0x00EF\n0x8C\t0x00EE\n0x8D\t0x00EC\n0x8E\t0x00C4\n0x8F\t0x00C5\n0x90\t0x00C9\n0x91\t0x00E6\n0x92\t0x00C6\n0x93\t0x00F4\n0x94\t0x00F6\n0x95\t0x00F2\n0x96\t0x00FB\n0x97\t0x00F9\n0x98\t0x00FF\n0x99\t0x00D6\n0x9A\t0x00DC\n0x9B\t0x00A2\n0x9C\t0x00A3\n0x9D\t0x00A5\n0x9E\t0x00DF\n0x9F\t0x0192\n0xA0\t0x00E1\n0xA1\t0x00ED\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x00F1\n0xA5\t0x00D1\n0xA6\t0x00AA\n0xA7\t0x00BA\n0xA8\t0x00BF\n0xA9\t0x2310\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAD\t0x00A1\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x00E3\n0xB1\t0x00F5\n0xB2\t0x00D8\n0xB3\t0x00F8\n0xB4\t0x0153\n0xB5\t0x0152\n0xB6\t0x00C0\n0xB7\t0x00C3\n0xB8\t0x00D5\n0xB9\t0x00A8\n0xBA\t0x00B4\n0xBB\t0x2020\n0xBC\t0x00B6\n0xBD\t0x00A9\n0xBE\t0x00AE\n0xBF\t0x2122\n0xC0\t0x0133\n0xC1\t0x0132\n0xC2\t0x05D0\n0xC3\t0x05D1\n0xC4\t0x05D2\n0xC5\t0x05D3\n0xC6\t0x05D4\n0xC7\t0x05D5\n0xC8\t0x05D6\n0xC9\t0x05D7\n0xCA\t0x05D8\n0xCB\t0x05D9\n0xCC\t0x05DB\n0xCD\t0x05DC\n0xCE\t0x05DE\n0xCF\t0x05E0\n0xD0\t0x05E1\n0xD1\t0x05E2\n0xD2\t0x05E4\n0xD3\t0x05E6\n0xD4\t0x05E7\n0xD5\t0x05E8\n0xD6\t0x05E9\n0xD7\t0x05EA\n0xD8\t0x05DF\n0xD9\t0x05DA\n0xDA\t0x05DD\n0xDB\t0x05E3\n0xDC\t0x05E5\n0xDD\t0x00A7\n0xDE\t0x2227\n0xDF\t0x221E\n0xE0\t0x03B1\n0xE1\t0x03B2\n0xE2\t0x0393\n0xE3\t0x03C0\n0xE4\t0x03A3\n0xE5\t0x03C3\n0xE6\t0x00B5\n0xE7\t0x03C4\n0xE8\t0x03A6\n0xE9\t0x0398\n0xEA\t0x03A9\n0xEB\t0x03B4\n0xEC\t0x222E\n0xED\t0x03C6\n0xEE\t0x2208\n0xEF\t0x2229\n0xF0\t0x2261\n0xF1\t0x00B1\n0xF2\t0x2265\n0xF3\t0x2264\n0xF4\t0x2320\n0xF5\t0x2321\n0xF6\t0x00F7\n0xF7\t0x2248\n0xF8\t0x00B0\n0xF9\t0x2219\n0xFA\t0x00B7\n0xFB\t0x221A\n0xFC\t0x207F\n0xFD\t0x00B2\n0xFE\t0x00B3\n0xFF\t0x00AF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-2003.IRREVERSIBLE.TXT",
    "content": "0xF9FA\t0x2554\n0xF9FB\t0x2557\n0xF9FC\t0x255A\n0xF9FD\t0x255D\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-2003.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8140\t0xEEB8\n0x8141\t0xEEB9\n0x8142\t0xEEBA\n0x8143\t0xEEBB\n0x8144\t0xEEBC\n0x8145\t0xEEBD\n0x8146\t0xEEBE\n0x8147\t0xEEBF\n0x8148\t0xEEC0\n0x8149\t0xEEC1\n0x814A\t0xEEC2\n0x814B\t0xEEC3\n0x814C\t0xEEC4\n0x814D\t0xEEC5\n0x814E\t0xEEC6\n0x814F\t0xEEC7\n0x8150\t0xEEC8\n0x8151\t0xEEC9\n0x8152\t0xEECA\n0x8153\t0xEECB\n0x8154\t0xEECC\n0x8155\t0xEECD\n0x8156\t0xEECE\n0x8157\t0xEECF\n0x8158\t0xEED0\n0x8159\t0xEED1\n0x815A\t0xEED2\n0x815B\t0xEED3\n0x815C\t0xEED4\n0x815D\t0xEED5\n0x815E\t0xEED6\n0x815F\t0xEED7\n0x8160\t0xEED8\n0x8161\t0xEED9\n0x8162\t0xEEDA\n0x8163\t0xEEDB\n0x8164\t0xEEDC\n0x8165\t0xEEDD\n0x8166\t0xEEDE\n0x8167\t0xEEDF\n0x8168\t0xEEE0\n0x8169\t0xEEE1\n0x816A\t0xEEE2\n0x816B\t0xEEE3\n0x816C\t0xEEE4\n0x816D\t0xEEE5\n0x816E\t0xEEE6\n0x816F\t0xEEE7\n0x8170\t0xEEE8\n0x8171\t0xEEE9\n0x8172\t0xEEEA\n0x8173\t0xEEEB\n0x8174\t0xEEEC\n0x8175\t0xEEED\n0x8176\t0xEEEE\n0x8177\t0xEEEF\n0x8178\t0xEEF0\n0x8179\t0xEEF1\n0x817A\t0xEEF2\n0x817B\t0xEEF3\n0x817C\t0xEEF4\n0x817D\t0xEEF5\n0x817E\t0xEEF6\n0x81A1\t0xEEF7\n0x81A2\t0xEEF8\n0x81A3\t0xEEF9\n0x81A4\t0xEEFA\n0x81A5\t0xEEFB\n0x81A6\t0xEEFC\n0x81A7\t0xEEFD\n0x81A8\t0xEEFE\n0x81A9\t0xEEFF\n0x81AA\t0xEF00\n0x81AB\t0xEF01\n0x81AC\t0xEF02\n0x81AD\t0xEF03\n0x81AE\t0xEF04\n0x81AF\t0xEF05\n0x81B0\t0xEF06\n0x81B1\t0xEF07\n0x81B2\t0xEF08\n0x81B3\t0xEF09\n0x81B4\t0xEF0A\n0x81B5\t0xEF0B\n0x81B6\t0xEF0C\n0x81B7\t0xEF0D\n0x81B8\t0xEF0E\n0x81B9\t0xEF0F\n0x81BA\t0xEF10\n0x81BB\t0xEF11\n0x81BC\t0xEF12\n0x81BD\t0xEF13\n0x81BE\t0xEF14\n0x81BF\t0xEF15\n0x81C0\t0xEF16\n0x81C1\t0xEF17\n0x81C2\t0xEF18\n0x81C3\t0xEF19\n0x81C4\t0xEF1A\n0x81C5\t0xEF1B\n0x81C6\t0xEF1C\n0x81C7\t0xEF1D\n0x81C8\t0xEF1E\n0x81C9\t0xEF1F\n0x81CA\t0xEF20\n0x81CB\t0xEF21\n0x81CC\t0xEF22\n0x81CD\t0xEF23\n0x81CE\t0xEF24\n0x81CF\t0xEF25\n0x81D0\t0xEF26\n0x81D1\t0xEF27\n0x81D2\t0xEF28\n0x81D3\t0xEF29\n0x81D4\t0xEF2A\n0x81D5\t0xEF2B\n0x81D6\t0xEF2C\n0x81D7\t0xEF2D\n0x81D8\t0xEF2E\n0x81D9\t0xEF2F\n0x81DA\t0xEF30\n0x81DB\t0xEF31\n0x81DC\t0xEF32\n0x81DD\t0xEF33\n0x81DE\t0xEF34\n0x81DF\t0xEF35\n0x81E0\t0xEF36\n0x81E1\t0xEF37\n0x81E2\t0xEF38\n0x81E3\t0xEF39\n0x81E4\t0xEF3A\n0x81E5\t0xEF3B\n0x81E6\t0xEF3C\n0x81E7\t0xEF3D\n0x81E8\t0xEF3E\n0x81E9\t0xEF3F\n0x81EA\t0xEF40\n0x81EB\t0xEF41\n0x81EC\t0xEF42\n0x81ED\t0xEF43\n0x81EE\t0xEF44\n0x81EF\t0xEF45\n0x81F0\t0xEF46\n0x81F1\t0xEF47\n0x81F2\t0xEF48\n0x81F3\t0xEF49\n0x81F4\t0xEF4A\n0x81F5\t0xEF4B\n0x81F6\t0xEF4C\n0x81F7\t0xEF4D\n0x81F8\t0xEF4E\n0x81F9\t0xEF4F\n0x81FA\t0xEF50\n0x81FB\t0xEF51\n0x81FC\t0xEF52\n0x81FD\t0xEF53\n0x81FE\t0xEF54\n0x8240\t0xEF55\n0x8241\t0xEF56\n0x8242\t0xEF57\n0x8243\t0xEF58\n0x8244\t0xEF59\n0x8245\t0xEF5A\n0x8246\t0xEF5B\n0x8247\t0xEF5C\n0x8248\t0xEF5D\n0x8249\t0xEF5E\n0x824A\t0xEF5F\n0x824B\t0xEF60\n0x824C\t0xEF61\n0x824D\t0xEF62\n0x824E\t0xEF63\n0x824F\t0xEF64\n0x8250\t0xEF65\n0x8251\t0xEF66\n0x8252\t0xEF67\n0x8253\t0xEF68\n0x8254\t0xEF69\n0x8255\t0xEF6A\n0x8256\t0xEF6B\n0x8257\t0xEF6C\n0x8258\t0xEF6D\n0x8259\t0xEF6E\n0x825A\t0xEF6F\n0x825B\t0xEF70\n0x825C\t0xEF71\n0x825D\t0xEF72\n0x825E\t0xEF73\n0x825F\t0xEF74\n0x8260\t0xEF75\n0x8261\t0xEF76\n0x8262\t0xEF77\n0x8263\t0xEF78\n0x8264\t0xEF79\n0x8265\t0xEF7A\n0x8266\t0xEF7B\n0x8267\t0xEF7C\n0x8268\t0xEF7D\n0x8269\t0xEF7E\n0x826A\t0xEF7F\n0x826B\t0xEF80\n0x826C\t0xEF81\n0x826D\t0xEF82\n0x826E\t0xEF83\n0x826F\t0xEF84\n0x8270\t0xEF85\n0x8271\t0xEF86\n0x8272\t0xEF87\n0x8273\t0xEF88\n0x8274\t0xEF89\n0x8275\t0xEF8A\n0x8276\t0xEF8B\n0x8277\t0xEF8C\n0x8278\t0xEF8D\n0x8279\t0xEF8E\n0x827A\t0xEF8F\n0x827B\t0xEF90\n0x827C\t0xEF91\n0x827D\t0xEF92\n0x827E\t0xEF93\n0x82A1\t0xEF94\n0x82A2\t0xEF95\n0x82A3\t0xEF96\n0x82A4\t0xEF97\n0x82A5\t0xEF98\n0x82A6\t0xEF99\n0x82A7\t0xEF9A\n0x82A8\t0xEF9B\n0x82A9\t0xEF9C\n0x82AA\t0xEF9D\n0x82AB\t0xEF9E\n0x82AC\t0xEF9F\n0x82AD\t0xEFA0\n0x82AE\t0xEFA1\n0x82AF\t0xEFA2\n0x82B0\t0xEFA3\n0x82B1\t0xEFA4\n0x82B2\t0xEFA5\n0x82B3\t0xEFA6\n0x82B4\t0xEFA7\n0x82B5\t0xEFA8\n0x82B6\t0xEFA9\n0x82B7\t0xEFAA\n0x82B8\t0xEFAB\n0x82B9\t0xEFAC\n0x82BA\t0xEFAD\n0x82BB\t0xEFAE\n0x82BC\t0xEFAF\n0x82BD\t0xEFB0\n0x82BE\t0xEFB1\n0x82BF\t0xEFB2\n0x82C0\t0xEFB3\n0x82C1\t0xEFB4\n0x82C2\t0xEFB5\n0x82C3\t0xEFB6\n0x82C4\t0xEFB7\n0x82C5\t0xEFB8\n0x82C6\t0xEFB9\n0x82C7\t0xEFBA\n0x82C8\t0xEFBB\n0x82C9\t0xEFBC\n0x82CA\t0xEFBD\n0x82CB\t0xEFBE\n0x82CC\t0xEFBF\n0x82CD\t0xEFC0\n0x82CE\t0xEFC1\n0x82CF\t0xEFC2\n0x82D0\t0xEFC3\n0x82D1\t0xEFC4\n0x82D2\t0xEFC5\n0x82D3\t0xEFC6\n0x82D4\t0xEFC7\n0x82D5\t0xEFC8\n0x82D6\t0xEFC9\n0x82D7\t0xEFCA\n0x82D8\t0xEFCB\n0x82D9\t0xEFCC\n0x82DA\t0xEFCD\n0x82DB\t0xEFCE\n0x82DC\t0xEFCF\n0x82DD\t0xEFD0\n0x82DE\t0xEFD1\n0x82DF\t0xEFD2\n0x82E0\t0xEFD3\n0x82E1\t0xEFD4\n0x82E2\t0xEFD5\n0x82E3\t0xEFD6\n0x82E4\t0xEFD7\n0x82E5\t0xEFD8\n0x82E6\t0xEFD9\n0x82E7\t0xEFDA\n0x82E8\t0xEFDB\n0x82E9\t0xEFDC\n0x82EA\t0xEFDD\n0x82EB\t0xEFDE\n0x82EC\t0xEFDF\n0x82ED\t0xEFE0\n0x82EE\t0xEFE1\n0x82EF\t0xEFE2\n0x82F0\t0xEFE3\n0x82F1\t0xEFE4\n0x82F2\t0xEFE5\n0x82F3\t0xEFE6\n0x82F4\t0xEFE7\n0x82F5\t0xEFE8\n0x82F6\t0xEFE9\n0x82F7\t0xEFEA\n0x82F8\t0xEFEB\n0x82F9\t0xEFEC\n0x82FA\t0xEFED\n0x82FB\t0xEFEE\n0x82FC\t0xEFEF\n0x82FD\t0xEFF0\n0x82FE\t0xEFF1\n0x8340\t0xEFF2\n0x8341\t0xEFF3\n0x8342\t0xEFF4\n0x8343\t0xEFF5\n0x8344\t0xEFF6\n0x8345\t0xEFF7\n0x8346\t0xEFF8\n0x8347\t0xEFF9\n0x8348\t0xEFFA\n0x8349\t0xEFFB\n0x834A\t0xEFFC\n0x834B\t0xEFFD\n0x834C\t0xEFFE\n0x834D\t0xEFFF\n0x834E\t0xF000\n0x834F\t0xF001\n0x8350\t0xF002\n0x8351\t0xF003\n0x8352\t0xF004\n0x8353\t0xF005\n0x8354\t0xF006\n0x8355\t0xF007\n0x8356\t0xF008\n0x8357\t0xF009\n0x8358\t0xF00A\n0x8359\t0xF00B\n0x835A\t0xF00C\n0x835B\t0xF00D\n0x835C\t0xF00E\n0x835D\t0xF00F\n0x835E\t0xF010\n0x835F\t0xF011\n0x8360\t0xF012\n0x8361\t0xF013\n0x8362\t0xF014\n0x8363\t0xF015\n0x8364\t0xF016\n0x8365\t0xF017\n0x8366\t0xF018\n0x8367\t0xF019\n0x8368\t0xF01A\n0x8369\t0xF01B\n0x836A\t0xF01C\n0x836B\t0xF01D\n0x836C\t0xF01E\n0x836D\t0xF01F\n0x836E\t0xF020\n0x836F\t0xF021\n0x8370\t0xF022\n0x8371\t0xF023\n0x8372\t0xF024\n0x8373\t0xF025\n0x8374\t0xF026\n0x8375\t0xF027\n0x8376\t0xF028\n0x8377\t0xF029\n0x8378\t0xF02A\n0x8379\t0xF02B\n0x837A\t0xF02C\n0x837B\t0xF02D\n0x837C\t0xF02E\n0x837D\t0xF02F\n0x837E\t0xF030\n0x83A1\t0xF031\n0x83A2\t0xF032\n0x83A3\t0xF033\n0x83A4\t0xF034\n0x83A5\t0xF035\n0x83A6\t0xF036\n0x83A7\t0xF037\n0x83A8\t0xF038\n0x83A9\t0xF039\n0x83AA\t0xF03A\n0x83AB\t0xF03B\n0x83AC\t0xF03C\n0x83AD\t0xF03D\n0x83AE\t0xF03E\n0x83AF\t0xF03F\n0x83B0\t0xF040\n0x83B1\t0xF041\n0x83B2\t0xF042\n0x83B3\t0xF043\n0x83B4\t0xF044\n0x83B5\t0xF045\n0x83B6\t0xF046\n0x83B7\t0xF047\n0x83B8\t0xF048\n0x83B9\t0xF049\n0x83BA\t0xF04A\n0x83BB\t0xF04B\n0x83BC\t0xF04C\n0x83BD\t0xF04D\n0x83BE\t0xF04E\n0x83BF\t0xF04F\n0x83C0\t0xF050\n0x83C1\t0xF051\n0x83C2\t0xF052\n0x83C3\t0xF053\n0x83C4\t0xF054\n0x83C5\t0xF055\n0x83C6\t0xF056\n0x83C7\t0xF057\n0x83C8\t0xF058\n0x83C9\t0xF059\n0x83CA\t0xF05A\n0x83CB\t0xF05B\n0x83CC\t0xF05C\n0x83CD\t0xF05D\n0x83CE\t0xF05E\n0x83CF\t0xF05F\n0x83D0\t0xF060\n0x83D1\t0xF061\n0x83D2\t0xF062\n0x83D3\t0xF063\n0x83D4\t0xF064\n0x83D5\t0xF065\n0x83D6\t0xF066\n0x83D7\t0xF067\n0x83D8\t0xF068\n0x83D9\t0xF069\n0x83DA\t0xF06A\n0x83DB\t0xF06B\n0x83DC\t0xF06C\n0x83DD\t0xF06D\n0x83DE\t0xF06E\n0x83DF\t0xF06F\n0x83E0\t0xF070\n0x83E1\t0xF071\n0x83E2\t0xF072\n0x83E3\t0xF073\n0x83E4\t0xF074\n0x83E5\t0xF075\n0x83E6\t0xF076\n0x83E7\t0xF077\n0x83E8\t0xF078\n0x83E9\t0xF079\n0x83EA\t0xF07A\n0x83EB\t0xF07B\n0x83EC\t0xF07C\n0x83ED\t0xF07D\n0x83EE\t0xF07E\n0x83EF\t0xF07F\n0x83F0\t0xF080\n0x83F1\t0xF081\n0x83F2\t0xF082\n0x83F3\t0xF083\n0x83F4\t0xF084\n0x83F5\t0xF085\n0x83F6\t0xF086\n0x83F7\t0xF087\n0x83F8\t0xF088\n0x83F9\t0xF089\n0x83FA\t0xF08A\n0x83FB\t0xF08B\n0x83FC\t0xF08C\n0x83FD\t0xF08D\n0x83FE\t0xF08E\n0x8440\t0xF08F\n0x8441\t0xF090\n0x8442\t0xF091\n0x8443\t0xF092\n0x8444\t0xF093\n0x8445\t0xF094\n0x8446\t0xF095\n0x8447\t0xF096\n0x8448\t0xF097\n0x8449\t0xF098\n0x844A\t0xF099\n0x844B\t0xF09A\n0x844C\t0xF09B\n0x844D\t0xF09C\n0x844E\t0xF09D\n0x844F\t0xF09E\n0x8450\t0xF09F\n0x8451\t0xF0A0\n0x8452\t0xF0A1\n0x8453\t0xF0A2\n0x8454\t0xF0A3\n0x8455\t0xF0A4\n0x8456\t0xF0A5\n0x8457\t0xF0A6\n0x8458\t0xF0A7\n0x8459\t0xF0A8\n0x845A\t0xF0A9\n0x845B\t0xF0AA\n0x845C\t0xF0AB\n0x845D\t0xF0AC\n0x845E\t0xF0AD\n0x845F\t0xF0AE\n0x8460\t0xF0AF\n0x8461\t0xF0B0\n0x8462\t0xF0B1\n0x8463\t0xF0B2\n0x8464\t0xF0B3\n0x8465\t0xF0B4\n0x8466\t0xF0B5\n0x8467\t0xF0B6\n0x8468\t0xF0B7\n0x8469\t0xF0B8\n0x846A\t0xF0B9\n0x846B\t0xF0BA\n0x846C\t0xF0BB\n0x846D\t0xF0BC\n0x846E\t0xF0BD\n0x846F\t0xF0BE\n0x8470\t0xF0BF\n0x8471\t0xF0C0\n0x8472\t0xF0C1\n0x8473\t0xF0C2\n0x8474\t0xF0C3\n0x8475\t0xF0C4\n0x8476\t0xF0C5\n0x8477\t0xF0C6\n0x8478\t0xF0C7\n0x8479\t0xF0C8\n0x847A\t0xF0C9\n0x847B\t0xF0CA\n0x847C\t0xF0CB\n0x847D\t0xF0CC\n0x847E\t0xF0CD\n0x84A1\t0xF0CE\n0x84A2\t0xF0CF\n0x84A3\t0xF0D0\n0x84A4\t0xF0D1\n0x84A5\t0xF0D2\n0x84A6\t0xF0D3\n0x84A7\t0xF0D4\n0x84A8\t0xF0D5\n0x84A9\t0xF0D6\n0x84AA\t0xF0D7\n0x84AB\t0xF0D8\n0x84AC\t0xF0D9\n0x84AD\t0xF0DA\n0x84AE\t0xF0DB\n0x84AF\t0xF0DC\n0x84B0\t0xF0DD\n0x84B1\t0xF0DE\n0x84B2\t0xF0DF\n0x84B3\t0xF0E0\n0x84B4\t0xF0E1\n0x84B5\t0xF0E2\n0x84B6\t0xF0E3\n0x84B7\t0xF0E4\n0x84B8\t0xF0E5\n0x84B9\t0xF0E6\n0x84BA\t0xF0E7\n0x84BB\t0xF0E8\n0x84BC\t0xF0E9\n0x84BD\t0xF0EA\n0x84BE\t0xF0EB\n0x84BF\t0xF0EC\n0x84C0\t0xF0ED\n0x84C1\t0xF0EE\n0x84C2\t0xF0EF\n0x84C3\t0xF0F0\n0x84C4\t0xF0F1\n0x84C5\t0xF0F2\n0x84C6\t0xF0F3\n0x84C7\t0xF0F4\n0x84C8\t0xF0F5\n0x84C9\t0xF0F6\n0x84CA\t0xF0F7\n0x84CB\t0xF0F8\n0x84CC\t0xF0F9\n0x84CD\t0xF0FA\n0x84CE\t0xF0FB\n0x84CF\t0xF0FC\n0x84D0\t0xF0FD\n0x84D1\t0xF0FE\n0x84D2\t0xF0FF\n0x84D3\t0xF100\n0x84D4\t0xF101\n0x84D5\t0xF102\n0x84D6\t0xF103\n0x84D7\t0xF104\n0x84D8\t0xF105\n0x84D9\t0xF106\n0x84DA\t0xF107\n0x84DB\t0xF108\n0x84DC\t0xF109\n0x84DD\t0xF10A\n0x84DE\t0xF10B\n0x84DF\t0xF10C\n0x84E0\t0xF10D\n0x84E1\t0xF10E\n0x84E2\t0xF10F\n0x84E3\t0xF110\n0x84E4\t0xF111\n0x84E5\t0xF112\n0x84E6\t0xF113\n0x84E7\t0xF114\n0x84E8\t0xF115\n0x84E9\t0xF116\n0x84EA\t0xF117\n0x84EB\t0xF118\n0x84EC\t0xF119\n0x84ED\t0xF11A\n0x84EE\t0xF11B\n0x84EF\t0xF11C\n0x84F0\t0xF11D\n0x84F1\t0xF11E\n0x84F2\t0xF11F\n0x84F3\t0xF120\n0x84F4\t0xF121\n0x84F5\t0xF122\n0x84F6\t0xF123\n0x84F7\t0xF124\n0x84F8\t0xF125\n0x84F9\t0xF126\n0x84FA\t0xF127\n0x84FB\t0xF128\n0x84FC\t0xF129\n0x84FD\t0xF12A\n0x84FE\t0xF12B\n0x8540\t0xF12C\n0x8541\t0xF12D\n0x8542\t0xF12E\n0x8543\t0xF12F\n0x8544\t0xF130\n0x8545\t0xF131\n0x8546\t0xF132\n0x8547\t0xF133\n0x8548\t0xF134\n0x8549\t0xF135\n0x854A\t0xF136\n0x854B\t0xF137\n0x854C\t0xF138\n0x854D\t0xF139\n0x854E\t0xF13A\n0x854F\t0xF13B\n0x8550\t0xF13C\n0x8551\t0xF13D\n0x8552\t0xF13E\n0x8553\t0xF13F\n0x8554\t0xF140\n0x8555\t0xF141\n0x8556\t0xF142\n0x8557\t0xF143\n0x8558\t0xF144\n0x8559\t0xF145\n0x855A\t0xF146\n0x855B\t0xF147\n0x855C\t0xF148\n0x855D\t0xF149\n0x855E\t0xF14A\n0x855F\t0xF14B\n0x8560\t0xF14C\n0x8561\t0xF14D\n0x8562\t0xF14E\n0x8563\t0xF14F\n0x8564\t0xF150\n0x8565\t0xF151\n0x8566\t0xF152\n0x8567\t0xF153\n0x8568\t0xF154\n0x8569\t0xF155\n0x856A\t0xF156\n0x856B\t0xF157\n0x856C\t0xF158\n0x856D\t0xF159\n0x856E\t0xF15A\n0x856F\t0xF15B\n0x8570\t0xF15C\n0x8571\t0xF15D\n0x8572\t0xF15E\n0x8573\t0xF15F\n0x8574\t0xF160\n0x8575\t0xF161\n0x8576\t0xF162\n0x8577\t0xF163\n0x8578\t0xF164\n0x8579\t0xF165\n0x857A\t0xF166\n0x857B\t0xF167\n0x857C\t0xF168\n0x857D\t0xF169\n0x857E\t0xF16A\n0x85A1\t0xF16B\n0x85A2\t0xF16C\n0x85A3\t0xF16D\n0x85A4\t0xF16E\n0x85A5\t0xF16F\n0x85A6\t0xF170\n0x85A7\t0xF171\n0x85A8\t0xF172\n0x85A9\t0xF173\n0x85AA\t0xF174\n0x85AB\t0xF175\n0x85AC\t0xF176\n0x85AD\t0xF177\n0x85AE\t0xF178\n0x85AF\t0xF179\n0x85B0\t0xF17A\n0x85B1\t0xF17B\n0x85B2\t0xF17C\n0x85B3\t0xF17D\n0x85B4\t0xF17E\n0x85B5\t0xF17F\n0x85B6\t0xF180\n0x85B7\t0xF181\n0x85B8\t0xF182\n0x85B9\t0xF183\n0x85BA\t0xF184\n0x85BB\t0xF185\n0x85BC\t0xF186\n0x85BD\t0xF187\n0x85BE\t0xF188\n0x85BF\t0xF189\n0x85C0\t0xF18A\n0x85C1\t0xF18B\n0x85C2\t0xF18C\n0x85C3\t0xF18D\n0x85C4\t0xF18E\n0x85C5\t0xF18F\n0x85C6\t0xF190\n0x85C7\t0xF191\n0x85C8\t0xF192\n0x85C9\t0xF193\n0x85CA\t0xF194\n0x85CB\t0xF195\n0x85CC\t0xF196\n0x85CD\t0xF197\n0x85CE\t0xF198\n0x85CF\t0xF199\n0x85D0\t0xF19A\n0x85D1\t0xF19B\n0x85D2\t0xF19C\n0x85D3\t0xF19D\n0x85D4\t0xF19E\n0x85D5\t0xF19F\n0x85D6\t0xF1A0\n0x85D7\t0xF1A1\n0x85D8\t0xF1A2\n0x85D9\t0xF1A3\n0x85DA\t0xF1A4\n0x85DB\t0xF1A5\n0x85DC\t0xF1A6\n0x85DD\t0xF1A7\n0x85DE\t0xF1A8\n0x85DF\t0xF1A9\n0x85E0\t0xF1AA\n0x85E1\t0xF1AB\n0x85E2\t0xF1AC\n0x85E3\t0xF1AD\n0x85E4\t0xF1AE\n0x85E5\t0xF1AF\n0x85E6\t0xF1B0\n0x85E7\t0xF1B1\n0x85E8\t0xF1B2\n0x85E9\t0xF1B3\n0x85EA\t0xF1B4\n0x85EB\t0xF1B5\n0x85EC\t0xF1B6\n0x85ED\t0xF1B7\n0x85EE\t0xF1B8\n0x85EF\t0xF1B9\n0x85F0\t0xF1BA\n0x85F1\t0xF1BB\n0x85F2\t0xF1BC\n0x85F3\t0xF1BD\n0x85F4\t0xF1BE\n0x85F5\t0xF1BF\n0x85F6\t0xF1C0\n0x85F7\t0xF1C1\n0x85F8\t0xF1C2\n0x85F9\t0xF1C3\n0x85FA\t0xF1C4\n0x85FB\t0xF1C5\n0x85FC\t0xF1C6\n0x85FD\t0xF1C7\n0x85FE\t0xF1C8\n0x8640\t0xF1C9\n0x8641\t0xF1CA\n0x8642\t0xF1CB\n0x8643\t0xF1CC\n0x8644\t0xF1CD\n0x8645\t0xF1CE\n0x8646\t0xF1CF\n0x8647\t0xF1D0\n0x8648\t0xF1D1\n0x8649\t0xF1D2\n0x864A\t0xF1D3\n0x864B\t0xF1D4\n0x864C\t0xF1D5\n0x864D\t0xF1D6\n0x864E\t0xF1D7\n0x864F\t0xF1D8\n0x8650\t0xF1D9\n0x8651\t0xF1DA\n0x8652\t0xF1DB\n0x8653\t0xF1DC\n0x8654\t0xF1DD\n0x8655\t0xF1DE\n0x8656\t0xF1DF\n0x8657\t0xF1E0\n0x8658\t0xF1E1\n0x8659\t0xF1E2\n0x865A\t0xF1E3\n0x865B\t0xF1E4\n0x865C\t0xF1E5\n0x865D\t0xF1E6\n0x865E\t0xF1E7\n0x865F\t0xF1E8\n0x8660\t0xF1E9\n0x8661\t0xF1EA\n0x8662\t0xF1EB\n0x8663\t0xF1EC\n0x8664\t0xF1ED\n0x8665\t0xF1EE\n0x8666\t0xF1EF\n0x8667\t0xF1F0\n0x8668\t0xF1F1\n0x8669\t0xF1F2\n0x866A\t0xF1F3\n0x866B\t0xF1F4\n0x866C\t0xF1F5\n0x866D\t0xF1F6\n0x866E\t0xF1F7\n0x866F\t0xF1F8\n0x8670\t0xF1F9\n0x8671\t0xF1FA\n0x8672\t0xF1FB\n0x8673\t0xF1FC\n0x8674\t0xF1FD\n0x8675\t0xF1FE\n0x8676\t0xF1FF\n0x8677\t0xF200\n0x8678\t0xF201\n0x8679\t0xF202\n0x867A\t0xF203\n0x867B\t0xF204\n0x867C\t0xF205\n0x867D\t0xF206\n0x867E\t0xF207\n0x86A1\t0xF208\n0x86A2\t0xF209\n0x86A3\t0xF20A\n0x86A4\t0xF20B\n0x86A5\t0xF20C\n0x86A6\t0xF20D\n0x86A7\t0xF20E\n0x86A8\t0xF20F\n0x86A9\t0xF210\n0x86AA\t0xF211\n0x86AB\t0xF212\n0x86AC\t0xF213\n0x86AD\t0xF214\n0x86AE\t0xF215\n0x86AF\t0xF216\n0x86B0\t0xF217\n0x86B1\t0xF218\n0x86B2\t0xF219\n0x86B3\t0xF21A\n0x86B4\t0xF21B\n0x86B5\t0xF21C\n0x86B6\t0xF21D\n0x86B7\t0xF21E\n0x86B8\t0xF21F\n0x86B9\t0xF220\n0x86BA\t0xF221\n0x86BB\t0xF222\n0x86BC\t0xF223\n0x86BD\t0xF224\n0x86BE\t0xF225\n0x86BF\t0xF226\n0x86C0\t0xF227\n0x86C1\t0xF228\n0x86C2\t0xF229\n0x86C3\t0xF22A\n0x86C4\t0xF22B\n0x86C5\t0xF22C\n0x86C6\t0xF22D\n0x86C7\t0xF22E\n0x86C8\t0xF22F\n0x86C9\t0xF230\n0x86CA\t0xF231\n0x86CB\t0xF232\n0x86CC\t0xF233\n0x86CD\t0xF234\n0x86CE\t0xF235\n0x86CF\t0xF236\n0x86D0\t0xF237\n0x86D1\t0xF238\n0x86D2\t0xF239\n0x86D3\t0xF23A\n0x86D4\t0xF23B\n0x86D5\t0xF23C\n0x86D6\t0xF23D\n0x86D7\t0xF23E\n0x86D8\t0xF23F\n0x86D9\t0xF240\n0x86DA\t0xF241\n0x86DB\t0xF242\n0x86DC\t0xF243\n0x86DD\t0xF244\n0x86DE\t0xF245\n0x86DF\t0xF246\n0x86E0\t0xF247\n0x86E1\t0xF248\n0x86E2\t0xF249\n0x86E3\t0xF24A\n0x86E4\t0xF24B\n0x86E5\t0xF24C\n0x86E6\t0xF24D\n0x86E7\t0xF24E\n0x86E8\t0xF24F\n0x86E9\t0xF250\n0x86EA\t0xF251\n0x86EB\t0xF252\n0x86EC\t0xF253\n0x86ED\t0xF254\n0x86EE\t0xF255\n0x86EF\t0xF256\n0x86F0\t0xF257\n0x86F1\t0xF258\n0x86F2\t0xF259\n0x86F3\t0xF25A\n0x86F4\t0xF25B\n0x86F5\t0xF25C\n0x86F6\t0xF25D\n0x86F7\t0xF25E\n0x86F8\t0xF25F\n0x86F9\t0xF260\n0x86FA\t0xF261\n0x86FB\t0xF262\n0x86FC\t0xF263\n0x86FD\t0xF264\n0x86FE\t0xF265\n0x8740\t0xF266\n0x8741\t0xF267\n0x8742\t0xF268\n0x8743\t0xF269\n0x8744\t0xF26A\n0x8745\t0xF26B\n0x8746\t0xF26C\n0x8747\t0xF26D\n0x8748\t0xF26E\n0x8749\t0xF26F\n0x874A\t0xF270\n0x874B\t0xF271\n0x874C\t0xF272\n0x874D\t0xF273\n0x874E\t0xF274\n0x874F\t0xF275\n0x8750\t0xF276\n0x8751\t0xF277\n0x8752\t0xF278\n0x8753\t0xF279\n0x8754\t0xF27A\n0x8755\t0xF27B\n0x8756\t0xF27C\n0x8757\t0xF27D\n0x8758\t0xF27E\n0x8759\t0xF27F\n0x875A\t0xF280\n0x875B\t0xF281\n0x875C\t0xF282\n0x875D\t0xF283\n0x875E\t0xF284\n0x875F\t0xF285\n0x8760\t0xF286\n0x8761\t0xF287\n0x8762\t0xF288\n0x8763\t0xF289\n0x8764\t0xF28A\n0x8765\t0xF28B\n0x8766\t0xF28C\n0x8767\t0xF28D\n0x8768\t0xF28E\n0x8769\t0xF28F\n0x876A\t0xF290\n0x876B\t0xF291\n0x876C\t0xF292\n0x876D\t0xF293\n0x876E\t0xF294\n0x876F\t0xF295\n0x8770\t0xF296\n0x8771\t0xF297\n0x8772\t0xF298\n0x8773\t0xF299\n0x8774\t0xF29A\n0x8775\t0xF29B\n0x8776\t0xF29C\n0x8777\t0xF29D\n0x8778\t0xF29E\n0x8779\t0xF29F\n0x877A\t0xF2A0\n0x877B\t0xF2A1\n0x877C\t0xF2A2\n0x877D\t0xF2A3\n0x877E\t0xF2A4\n0x87A1\t0xF2A5\n0x87A2\t0xF2A6\n0x87A3\t0xF2A7\n0x87A4\t0xF2A8\n0x87A5\t0xF2A9\n0x87A6\t0xF2AA\n0x87A7\t0xF2AB\n0x87A8\t0xF2AC\n0x87A9\t0xF2AD\n0x87AA\t0xF2AE\n0x87AB\t0xF2AF\n0x87AC\t0xF2B0\n0x87AD\t0xF2B1\n0x87AE\t0xF2B2\n0x87AF\t0xF2B3\n0x87B0\t0xF2B4\n0x87B1\t0xF2B5\n0x87B2\t0xF2B6\n0x87B3\t0xF2B7\n0x87B4\t0xF2B8\n0x87B5\t0xF2B9\n0x87B6\t0xF2BA\n0x87B7\t0xF2BB\n0x87B8\t0xF2BC\n0x87B9\t0xF2BD\n0x87BA\t0xF2BE\n0x87BB\t0xF2BF\n0x87BC\t0xF2C0\n0x87BD\t0xF2C1\n0x87BE\t0xF2C2\n0x87BF\t0xF2C3\n0x87C0\t0xF2C4\n0x87C1\t0xF2C5\n0x87C2\t0xF2C6\n0x87C3\t0xF2C7\n0x87C4\t0xF2C8\n0x87C5\t0xF2C9\n0x87C6\t0xF2CA\n0x87C7\t0xF2CB\n0x87C8\t0xF2CC\n0x87C9\t0xF2CD\n0x87CA\t0xF2CE\n0x87CB\t0xF2CF\n0x87CC\t0xF2D0\n0x87CD\t0xF2D1\n0x87CE\t0xF2D2\n0x87CF\t0xF2D3\n0x87D0\t0xF2D4\n0x87D1\t0xF2D5\n0x87D2\t0xF2D6\n0x87D3\t0xF2D7\n0x87D4\t0xF2D8\n0x87D5\t0xF2D9\n0x87D6\t0xF2DA\n0x87D7\t0xF2DB\n0x87D8\t0xF2DC\n0x87D9\t0xF2DD\n0x87DA\t0xF2DE\n0x87DB\t0xF2DF\n0x87DC\t0xF2E0\n0x87DD\t0xF2E1\n0x87DE\t0xF2E2\n0x87DF\t0xF2E3\n0x87E0\t0xF2E4\n0x87E1\t0xF2E5\n0x87E2\t0xF2E6\n0x87E3\t0xF2E7\n0x87E4\t0xF2E8\n0x87E5\t0xF2E9\n0x87E6\t0xF2EA\n0x87E7\t0xF2EB\n0x87E8\t0xF2EC\n0x87E9\t0xF2ED\n0x87EA\t0xF2EE\n0x87EB\t0xF2EF\n0x87EC\t0xF2F0\n0x87ED\t0xF2F1\n0x87EE\t0xF2F2\n0x87EF\t0xF2F3\n0x87F0\t0xF2F4\n0x87F1\t0xF2F5\n0x87F2\t0xF2F6\n0x87F3\t0xF2F7\n0x87F4\t0xF2F8\n0x87F5\t0xF2F9\n0x87F6\t0xF2FA\n0x87F7\t0xF2FB\n0x87F8\t0xF2FC\n0x87F9\t0xF2FD\n0x87FA\t0xF2FE\n0x87FB\t0xF2FF\n0x87FC\t0xF300\n0x87FD\t0xF301\n0x87FE\t0xF302\n0x8840\t0xF303\n0x8841\t0xF304\n0x8842\t0xF305\n0x8843\t0xF306\n0x8844\t0xF307\n0x8845\t0xF308\n0x8846\t0xF309\n0x8847\t0xF30A\n0x8848\t0xF30B\n0x8849\t0xF30C\n0x884A\t0xF30D\n0x884B\t0xF30E\n0x884C\t0xF30F\n0x884D\t0xF310\n0x884E\t0xF311\n0x884F\t0xF312\n0x8850\t0xF313\n0x8851\t0xF314\n0x8852\t0xF315\n0x8853\t0xF316\n0x8854\t0xF317\n0x8855\t0xF318\n0x8856\t0xF319\n0x8857\t0xF31A\n0x8858\t0xF31B\n0x8859\t0xF31C\n0x885A\t0xF31D\n0x885B\t0xF31E\n0x885C\t0xF31F\n0x885D\t0xF320\n0x885E\t0xF321\n0x885F\t0xF322\n0x8860\t0xF323\n0x8861\t0xF324\n0x8862\t0xF325\n0x8863\t0xF326\n0x8864\t0xF327\n0x8865\t0xF328\n0x8866\t0xF329\n0x8867\t0xF32A\n0x8868\t0xF32B\n0x8869\t0xF32C\n0x886A\t0xF32D\n0x886B\t0xF32E\n0x886C\t0xF32F\n0x886D\t0xF330\n0x886E\t0xF331\n0x886F\t0xF332\n0x8870\t0xF333\n0x8871\t0xF334\n0x8872\t0xF335\n0x8873\t0xF336\n0x8874\t0xF337\n0x8875\t0xF338\n0x8876\t0xF339\n0x8877\t0xF33A\n0x8878\t0xF33B\n0x8879\t0xF33C\n0x887A\t0xF33D\n0x887B\t0xF33E\n0x887C\t0xF33F\n0x887D\t0xF340\n0x887E\t0xF341\n0x88A1\t0xF342\n0x88A2\t0xF343\n0x88A3\t0xF344\n0x88A4\t0xF345\n0x88A5\t0xF346\n0x88A6\t0xF347\n0x88A7\t0xF348\n0x88A8\t0xF349\n0x88A9\t0xF34A\n0x88AA\t0xF34B\n0x88AB\t0xF34C\n0x88AC\t0xF34D\n0x88AD\t0xF34E\n0x88AE\t0xF34F\n0x88AF\t0xF350\n0x88B0\t0xF351\n0x88B1\t0xF352\n0x88B2\t0xF353\n0x88B3\t0xF354\n0x88B4\t0xF355\n0x88B5\t0xF356\n0x88B6\t0xF357\n0x88B7\t0xF358\n0x88B8\t0xF359\n0x88B9\t0xF35A\n0x88BA\t0xF35B\n0x88BB\t0xF35C\n0x88BC\t0xF35D\n0x88BD\t0xF35E\n0x88BE\t0xF35F\n0x88BF\t0xF360\n0x88C0\t0xF361\n0x88C1\t0xF362\n0x88C2\t0xF363\n0x88C3\t0xF364\n0x88C4\t0xF365\n0x88C5\t0xF366\n0x88C6\t0xF367\n0x88C7\t0xF368\n0x88C8\t0xF369\n0x88C9\t0xF36A\n0x88CA\t0xF36B\n0x88CB\t0xF36C\n0x88CC\t0xF36D\n0x88CD\t0xF36E\n0x88CE\t0xF36F\n0x88CF\t0xF370\n0x88D0\t0xF371\n0x88D1\t0xF372\n0x88D2\t0xF373\n0x88D3\t0xF374\n0x88D4\t0xF375\n0x88D5\t0xF376\n0x88D6\t0xF377\n0x88D7\t0xF378\n0x88D8\t0xF379\n0x88D9\t0xF37A\n0x88DA\t0xF37B\n0x88DB\t0xF37C\n0x88DC\t0xF37D\n0x88DD\t0xF37E\n0x88DE\t0xF37F\n0x88DF\t0xF380\n0x88E0\t0xF381\n0x88E1\t0xF382\n0x88E2\t0xF383\n0x88E3\t0xF384\n0x88E4\t0xF385\n0x88E5\t0xF386\n0x88E6\t0xF387\n0x88E7\t0xF388\n0x88E8\t0xF389\n0x88E9\t0xF38A\n0x88EA\t0xF38B\n0x88EB\t0xF38C\n0x88EC\t0xF38D\n0x88ED\t0xF38E\n0x88EE\t0xF38F\n0x88EF\t0xF390\n0x88F0\t0xF391\n0x88F1\t0xF392\n0x88F2\t0xF393\n0x88F3\t0xF394\n0x88F4\t0xF395\n0x88F5\t0xF396\n0x88F6\t0xF397\n0x88F7\t0xF398\n0x88F8\t0xF399\n0x88F9\t0xF39A\n0x88FA\t0xF39B\n0x88FB\t0xF39C\n0x88FC\t0xF39D\n0x88FD\t0xF39E\n0x88FE\t0xF39F\n0x8940\t0xF3A0\n0x8941\t0xF3A1\n0x8942\t0xF3A2\n0x8943\t0xF3A3\n0x8944\t0xF3A4\n0x8945\t0xF3A5\n0x8946\t0xF3A6\n0x8947\t0xF3A7\n0x8948\t0xF3A8\n0x8949\t0xF3A9\n0x894A\t0xF3AA\n0x894B\t0xF3AB\n0x894C\t0xF3AC\n0x894D\t0xF3AD\n0x894E\t0xF3AE\n0x894F\t0xF3AF\n0x8950\t0xF3B0\n0x8951\t0xF3B1\n0x8952\t0xF3B2\n0x8953\t0xF3B3\n0x8954\t0xF3B4\n0x8955\t0xF3B5\n0x8956\t0xF3B6\n0x8957\t0xF3B7\n0x8958\t0xF3B8\n0x8959\t0xF3B9\n0x895A\t0xF3BA\n0x895B\t0xF3BB\n0x895C\t0xF3BC\n0x895D\t0xF3BD\n0x895E\t0xF3BE\n0x895F\t0xF3BF\n0x8960\t0xF3C0\n0x8961\t0xF3C1\n0x8962\t0xF3C2\n0x8963\t0xF3C3\n0x8964\t0xF3C4\n0x8965\t0xF3C5\n0x8966\t0xF3C6\n0x8967\t0xF3C7\n0x8968\t0xF3C8\n0x8969\t0xF3C9\n0x896A\t0xF3CA\n0x896B\t0xF3CB\n0x896C\t0xF3CC\n0x896D\t0xF3CD\n0x896E\t0xF3CE\n0x896F\t0xF3CF\n0x8970\t0xF3D0\n0x8971\t0xF3D1\n0x8972\t0xF3D2\n0x8973\t0xF3D3\n0x8974\t0xF3D4\n0x8975\t0xF3D5\n0x8976\t0xF3D6\n0x8977\t0xF3D7\n0x8978\t0xF3D8\n0x8979\t0xF3D9\n0x897A\t0xF3DA\n0x897B\t0xF3DB\n0x897C\t0xF3DC\n0x897D\t0xF3DD\n0x897E\t0xF3DE\n0x89A1\t0xF3DF\n0x89A2\t0xF3E0\n0x89A3\t0xF3E1\n0x89A4\t0xF3E2\n0x89A5\t0xF3E3\n0x89A6\t0xF3E4\n0x89A7\t0xF3E5\n0x89A8\t0xF3E6\n0x89A9\t0xF3E7\n0x89AA\t0xF3E8\n0x89AB\t0xF3E9\n0x89AC\t0xF3EA\n0x89AD\t0xF3EB\n0x89AE\t0xF3EC\n0x89AF\t0xF3ED\n0x89B0\t0xF3EE\n0x89B1\t0xF3EF\n0x89B2\t0xF3F0\n0x89B3\t0xF3F1\n0x89B4\t0xF3F2\n0x89B5\t0xF3F3\n0x89B6\t0xF3F4\n0x89B7\t0xF3F5\n0x89B8\t0xF3F6\n0x89B9\t0xF3F7\n0x89BA\t0xF3F8\n0x89BB\t0xF3F9\n0x89BC\t0xF3FA\n0x89BD\t0xF3FB\n0x89BE\t0xF3FC\n0x89BF\t0xF3FD\n0x89C0\t0xF3FE\n0x89C1\t0xF3FF\n0x89C2\t0xF400\n0x89C3\t0xF401\n0x89C4\t0xF402\n0x89C5\t0xF403\n0x89C6\t0xF404\n0x89C7\t0xF405\n0x89C8\t0xF406\n0x89C9\t0xF407\n0x89CA\t0xF408\n0x89CB\t0xF409\n0x89CC\t0xF40A\n0x89CD\t0xF40B\n0x89CE\t0xF40C\n0x89CF\t0xF40D\n0x89D0\t0xF40E\n0x89D1\t0xF40F\n0x89D2\t0xF410\n0x89D3\t0xF411\n0x89D4\t0xF412\n0x89D5\t0xF413\n0x89D6\t0xF414\n0x89D7\t0xF415\n0x89D8\t0xF416\n0x89D9\t0xF417\n0x89DA\t0xF418\n0x89DB\t0xF419\n0x89DC\t0xF41A\n0x89DD\t0xF41B\n0x89DE\t0xF41C\n0x89DF\t0xF41D\n0x89E0\t0xF41E\n0x89E1\t0xF41F\n0x89E2\t0xF420\n0x89E3\t0xF421\n0x89E4\t0xF422\n0x89E5\t0xF423\n0x89E6\t0xF424\n0x89E7\t0xF425\n0x89E8\t0xF426\n0x89E9\t0xF427\n0x89EA\t0xF428\n0x89EB\t0xF429\n0x89EC\t0xF42A\n0x89ED\t0xF42B\n0x89EE\t0xF42C\n0x89EF\t0xF42D\n0x89F0\t0xF42E\n0x89F1\t0xF42F\n0x89F2\t0xF430\n0x89F3\t0xF431\n0x89F4\t0xF432\n0x89F5\t0xF433\n0x89F6\t0xF434\n0x89F7\t0xF435\n0x89F8\t0xF436\n0x89F9\t0xF437\n0x89FA\t0xF438\n0x89FB\t0xF439\n0x89FC\t0xF43A\n0x89FD\t0xF43B\n0x89FE\t0xF43C\n0x8A40\t0xF43D\n0x8A41\t0xF43E\n0x8A42\t0xF43F\n0x8A43\t0xF440\n0x8A44\t0xF441\n0x8A45\t0xF442\n0x8A46\t0xF443\n0x8A47\t0xF444\n0x8A48\t0xF445\n0x8A49\t0xF446\n0x8A4A\t0xF447\n0x8A4B\t0xF448\n0x8A4C\t0xF449\n0x8A4D\t0xF44A\n0x8A4E\t0xF44B\n0x8A4F\t0xF44C\n0x8A50\t0xF44D\n0x8A51\t0xF44E\n0x8A52\t0xF44F\n0x8A53\t0xF450\n0x8A54\t0xF451\n0x8A55\t0xF452\n0x8A56\t0xF453\n0x8A57\t0xF454\n0x8A58\t0xF455\n0x8A59\t0xF456\n0x8A5A\t0xF457\n0x8A5B\t0xF458\n0x8A5C\t0xF459\n0x8A5D\t0xF45A\n0x8A5E\t0xF45B\n0x8A5F\t0xF45C\n0x8A60\t0xF45D\n0x8A61\t0xF45E\n0x8A62\t0xF45F\n0x8A63\t0xF460\n0x8A64\t0xF461\n0x8A65\t0xF462\n0x8A66\t0xF463\n0x8A67\t0xF464\n0x8A68\t0xF465\n0x8A69\t0xF466\n0x8A6A\t0xF467\n0x8A6B\t0xF468\n0x8A6C\t0xF469\n0x8A6D\t0xF46A\n0x8A6E\t0xF46B\n0x8A6F\t0xF46C\n0x8A70\t0xF46D\n0x8A71\t0xF46E\n0x8A72\t0xF46F\n0x8A73\t0xF470\n0x8A74\t0xF471\n0x8A75\t0xF472\n0x8A76\t0xF473\n0x8A77\t0xF474\n0x8A78\t0xF475\n0x8A79\t0xF476\n0x8A7A\t0xF477\n0x8A7B\t0xF478\n0x8A7C\t0xF479\n0x8A7D\t0xF47A\n0x8A7E\t0xF47B\n0x8AA1\t0xF47C\n0x8AA2\t0xF47D\n0x8AA3\t0xF47E\n0x8AA4\t0xF47F\n0x8AA5\t0xF480\n0x8AA6\t0xF481\n0x8AA7\t0xF482\n0x8AA8\t0xF483\n0x8AA9\t0xF484\n0x8AAA\t0xF485\n0x8AAB\t0xF486\n0x8AAC\t0xF487\n0x8AAD\t0xF488\n0x8AAE\t0xF489\n0x8AAF\t0xF48A\n0x8AB0\t0xF48B\n0x8AB1\t0xF48C\n0x8AB2\t0xF48D\n0x8AB3\t0xF48E\n0x8AB4\t0xF48F\n0x8AB5\t0xF490\n0x8AB6\t0xF491\n0x8AB7\t0xF492\n0x8AB8\t0xF493\n0x8AB9\t0xF494\n0x8ABA\t0xF495\n0x8ABB\t0xF496\n0x8ABC\t0xF497\n0x8ABD\t0xF498\n0x8ABE\t0xF499\n0x8ABF\t0xF49A\n0x8AC0\t0xF49B\n0x8AC1\t0xF49C\n0x8AC2\t0xF49D\n0x8AC3\t0xF49E\n0x8AC4\t0xF49F\n0x8AC5\t0xF4A0\n0x8AC6\t0xF4A1\n0x8AC7\t0xF4A2\n0x8AC8\t0xF4A3\n0x8AC9\t0xF4A4\n0x8ACA\t0xF4A5\n0x8ACB\t0xF4A6\n0x8ACC\t0xF4A7\n0x8ACD\t0xF4A8\n0x8ACE\t0xF4A9\n0x8ACF\t0xF4AA\n0x8AD0\t0xF4AB\n0x8AD1\t0xF4AC\n0x8AD2\t0xF4AD\n0x8AD3\t0xF4AE\n0x8AD4\t0xF4AF\n0x8AD5\t0xF4B0\n0x8AD6\t0xF4B1\n0x8AD7\t0xF4B2\n0x8AD8\t0xF4B3\n0x8AD9\t0xF4B4\n0x8ADA\t0xF4B5\n0x8ADB\t0xF4B6\n0x8ADC\t0xF4B7\n0x8ADD\t0xF4B8\n0x8ADE\t0xF4B9\n0x8ADF\t0xF4BA\n0x8AE0\t0xF4BB\n0x8AE1\t0xF4BC\n0x8AE2\t0xF4BD\n0x8AE3\t0xF4BE\n0x8AE4\t0xF4BF\n0x8AE5\t0xF4C0\n0x8AE6\t0xF4C1\n0x8AE7\t0xF4C2\n0x8AE8\t0xF4C3\n0x8AE9\t0xF4C4\n0x8AEA\t0xF4C5\n0x8AEB\t0xF4C6\n0x8AEC\t0xF4C7\n0x8AED\t0xF4C8\n0x8AEE\t0xF4C9\n0x8AEF\t0xF4CA\n0x8AF0\t0xF4CB\n0x8AF1\t0xF4CC\n0x8AF2\t0xF4CD\n0x8AF3\t0xF4CE\n0x8AF4\t0xF4CF\n0x8AF5\t0xF4D0\n0x8AF6\t0xF4D1\n0x8AF7\t0xF4D2\n0x8AF8\t0xF4D3\n0x8AF9\t0xF4D4\n0x8AFA\t0xF4D5\n0x8AFB\t0xF4D6\n0x8AFC\t0xF4D7\n0x8AFD\t0xF4D8\n0x8AFE\t0xF4D9\n0x8B40\t0xF4DA\n0x8B41\t0xF4DB\n0x8B42\t0xF4DC\n0x8B43\t0xF4DD\n0x8B44\t0xF4DE\n0x8B45\t0xF4DF\n0x8B46\t0xF4E0\n0x8B47\t0xF4E1\n0x8B48\t0xF4E2\n0x8B49\t0xF4E3\n0x8B4A\t0xF4E4\n0x8B4B\t0xF4E5\n0x8B4C\t0xF4E6\n0x8B4D\t0xF4E7\n0x8B4E\t0xF4E8\n0x8B4F\t0xF4E9\n0x8B50\t0xF4EA\n0x8B51\t0xF4EB\n0x8B52\t0xF4EC\n0x8B53\t0xF4ED\n0x8B54\t0xF4EE\n0x8B55\t0xF4EF\n0x8B56\t0xF4F0\n0x8B57\t0xF4F1\n0x8B58\t0xF4F2\n0x8B59\t0xF4F3\n0x8B5A\t0xF4F4\n0x8B5B\t0xF4F5\n0x8B5C\t0xF4F6\n0x8B5D\t0xF4F7\n0x8B5E\t0xF4F8\n0x8B5F\t0xF4F9\n0x8B60\t0xF4FA\n0x8B61\t0xF4FB\n0x8B62\t0xF4FC\n0x8B63\t0xF4FD\n0x8B64\t0xF4FE\n0x8B65\t0xF4FF\n0x8B66\t0xF500\n0x8B67\t0xF501\n0x8B68\t0xF502\n0x8B69\t0xF503\n0x8B6A\t0xF504\n0x8B6B\t0xF505\n0x8B6C\t0xF506\n0x8B6D\t0xF507\n0x8B6E\t0xF508\n0x8B6F\t0xF509\n0x8B70\t0xF50A\n0x8B71\t0xF50B\n0x8B72\t0xF50C\n0x8B73\t0xF50D\n0x8B74\t0xF50E\n0x8B75\t0xF50F\n0x8B76\t0xF510\n0x8B77\t0xF511\n0x8B78\t0xF512\n0x8B79\t0xF513\n0x8B7A\t0xF514\n0x8B7B\t0xF515\n0x8B7C\t0xF516\n0x8B7D\t0xF517\n0x8B7E\t0xF518\n0x8BA1\t0xF519\n0x8BA2\t0xF51A\n0x8BA3\t0xF51B\n0x8BA4\t0xF51C\n0x8BA5\t0xF51D\n0x8BA6\t0xF51E\n0x8BA7\t0xF51F\n0x8BA8\t0xF520\n0x8BA9\t0xF521\n0x8BAA\t0xF522\n0x8BAB\t0xF523\n0x8BAC\t0xF524\n0x8BAD\t0xF525\n0x8BAE\t0xF526\n0x8BAF\t0xF527\n0x8BB0\t0xF528\n0x8BB1\t0xF529\n0x8BB2\t0xF52A\n0x8BB3\t0xF52B\n0x8BB4\t0xF52C\n0x8BB5\t0xF52D\n0x8BB6\t0xF52E\n0x8BB7\t0xF52F\n0x8BB8\t0xF530\n0x8BB9\t0xF531\n0x8BBA\t0xF532\n0x8BBB\t0xF533\n0x8BBC\t0xF534\n0x8BBD\t0xF535\n0x8BBE\t0xF536\n0x8BBF\t0xF537\n0x8BC0\t0xF538\n0x8BC1\t0xF539\n0x8BC2\t0xF53A\n0x8BC3\t0xF53B\n0x8BC4\t0xF53C\n0x8BC5\t0xF53D\n0x8BC6\t0xF53E\n0x8BC7\t0xF53F\n0x8BC8\t0xF540\n0x8BC9\t0xF541\n0x8BCA\t0xF542\n0x8BCB\t0xF543\n0x8BCC\t0xF544\n0x8BCD\t0xF545\n0x8BCE\t0xF546\n0x8BCF\t0xF547\n0x8BD0\t0xF548\n0x8BD1\t0xF549\n0x8BD2\t0xF54A\n0x8BD3\t0xF54B\n0x8BD4\t0xF54C\n0x8BD5\t0xF54D\n0x8BD6\t0xF54E\n0x8BD7\t0xF54F\n0x8BD8\t0xF550\n0x8BD9\t0xF551\n0x8BDA\t0xF552\n0x8BDB\t0xF553\n0x8BDC\t0xF554\n0x8BDD\t0xF555\n0x8BDE\t0xF556\n0x8BDF\t0xF557\n0x8BE0\t0xF558\n0x8BE1\t0xF559\n0x8BE2\t0xF55A\n0x8BE3\t0xF55B\n0x8BE4\t0xF55C\n0x8BE5\t0xF55D\n0x8BE6\t0xF55E\n0x8BE7\t0xF55F\n0x8BE8\t0xF560\n0x8BE9\t0xF561\n0x8BEA\t0xF562\n0x8BEB\t0xF563\n0x8BEC\t0xF564\n0x8BED\t0xF565\n0x8BEE\t0xF566\n0x8BEF\t0xF567\n0x8BF0\t0xF568\n0x8BF1\t0xF569\n0x8BF2\t0xF56A\n0x8BF3\t0xF56B\n0x8BF4\t0xF56C\n0x8BF5\t0xF56D\n0x8BF6\t0xF56E\n0x8BF7\t0xF56F\n0x8BF8\t0xF570\n0x8BF9\t0xF571\n0x8BFA\t0xF572\n0x8BFB\t0xF573\n0x8BFC\t0xF574\n0x8BFD\t0xF575\n0x8BFE\t0xF576\n0x8C40\t0xF577\n0x8C41\t0xF578\n0x8C42\t0xF579\n0x8C43\t0xF57A\n0x8C44\t0xF57B\n0x8C45\t0xF57C\n0x8C46\t0xF57D\n0x8C47\t0xF57E\n0x8C48\t0xF57F\n0x8C49\t0xF580\n0x8C4A\t0xF581\n0x8C4B\t0xF582\n0x8C4C\t0xF583\n0x8C4D\t0xF584\n0x8C4E\t0xF585\n0x8C4F\t0xF586\n0x8C50\t0xF587\n0x8C51\t0xF588\n0x8C52\t0xF589\n0x8C53\t0xF58A\n0x8C54\t0xF58B\n0x8C55\t0xF58C\n0x8C56\t0xF58D\n0x8C57\t0xF58E\n0x8C58\t0xF58F\n0x8C59\t0xF590\n0x8C5A\t0xF591\n0x8C5B\t0xF592\n0x8C5C\t0xF593\n0x8C5D\t0xF594\n0x8C5E\t0xF595\n0x8C5F\t0xF596\n0x8C60\t0xF597\n0x8C61\t0xF598\n0x8C62\t0xF599\n0x8C63\t0xF59A\n0x8C64\t0xF59B\n0x8C65\t0xF59C\n0x8C66\t0xF59D\n0x8C67\t0xF59E\n0x8C68\t0xF59F\n0x8C69\t0xF5A0\n0x8C6A\t0xF5A1\n0x8C6B\t0xF5A2\n0x8C6C\t0xF5A3\n0x8C6D\t0xF5A4\n0x8C6E\t0xF5A5\n0x8C6F\t0xF5A6\n0x8C70\t0xF5A7\n0x8C71\t0xF5A8\n0x8C72\t0xF5A9\n0x8C73\t0xF5AA\n0x8C74\t0xF5AB\n0x8C75\t0xF5AC\n0x8C76\t0xF5AD\n0x8C77\t0xF5AE\n0x8C78\t0xF5AF\n0x8C79\t0xF5B0\n0x8C7A\t0xF5B1\n0x8C7B\t0xF5B2\n0x8C7C\t0xF5B3\n0x8C7D\t0xF5B4\n0x8C7E\t0xF5B5\n0x8CA1\t0xF5B6\n0x8CA2\t0xF5B7\n0x8CA3\t0xF5B8\n0x8CA4\t0xF5B9\n0x8CA5\t0xF5BA\n0x8CA6\t0xF5BB\n0x8CA7\t0xF5BC\n0x8CA8\t0xF5BD\n0x8CA9\t0xF5BE\n0x8CAA\t0xF5BF\n0x8CAB\t0xF5C0\n0x8CAC\t0xF5C1\n0x8CAD\t0xF5C2\n0x8CAE\t0xF5C3\n0x8CAF\t0xF5C4\n0x8CB0\t0xF5C5\n0x8CB1\t0xF5C6\n0x8CB2\t0xF5C7\n0x8CB3\t0xF5C8\n0x8CB4\t0xF5C9\n0x8CB5\t0xF5CA\n0x8CB6\t0xF5CB\n0x8CB7\t0xF5CC\n0x8CB8\t0xF5CD\n0x8CB9\t0xF5CE\n0x8CBA\t0xF5CF\n0x8CBB\t0xF5D0\n0x8CBC\t0xF5D1\n0x8CBD\t0xF5D2\n0x8CBE\t0xF5D3\n0x8CBF\t0xF5D4\n0x8CC0\t0xF5D5\n0x8CC1\t0xF5D6\n0x8CC2\t0xF5D7\n0x8CC3\t0xF5D8\n0x8CC4\t0xF5D9\n0x8CC5\t0xF5DA\n0x8CC6\t0xF5DB\n0x8CC7\t0xF5DC\n0x8CC8\t0xF5DD\n0x8CC9\t0xF5DE\n0x8CCA\t0xF5DF\n0x8CCB\t0xF5E0\n0x8CCC\t0xF5E1\n0x8CCD\t0xF5E2\n0x8CCE\t0xF5E3\n0x8CCF\t0xF5E4\n0x8CD0\t0xF5E5\n0x8CD1\t0xF5E6\n0x8CD2\t0xF5E7\n0x8CD3\t0xF5E8\n0x8CD4\t0xF5E9\n0x8CD5\t0xF5EA\n0x8CD6\t0xF5EB\n0x8CD7\t0xF5EC\n0x8CD8\t0xF5ED\n0x8CD9\t0xF5EE\n0x8CDA\t0xF5EF\n0x8CDB\t0xF5F0\n0x8CDC\t0xF5F1\n0x8CDD\t0xF5F2\n0x8CDE\t0xF5F3\n0x8CDF\t0xF5F4\n0x8CE0\t0xF5F5\n0x8CE1\t0xF5F6\n0x8CE2\t0xF5F7\n0x8CE3\t0xF5F8\n0x8CE4\t0xF5F9\n0x8CE5\t0xF5FA\n0x8CE6\t0xF5FB\n0x8CE7\t0xF5FC\n0x8CE8\t0xF5FD\n0x8CE9\t0xF5FE\n0x8CEA\t0xF5FF\n0x8CEB\t0xF600\n0x8CEC\t0xF601\n0x8CED\t0xF602\n0x8CEE\t0xF603\n0x8CEF\t0xF604\n0x8CF0\t0xF605\n0x8CF1\t0xF606\n0x8CF2\t0xF607\n0x8CF3\t0xF608\n0x8CF4\t0xF609\n0x8CF5\t0xF60A\n0x8CF6\t0xF60B\n0x8CF7\t0xF60C\n0x8CF8\t0xF60D\n0x8CF9\t0xF60E\n0x8CFA\t0xF60F\n0x8CFB\t0xF610\n0x8CFC\t0xF611\n0x8CFD\t0xF612\n0x8CFE\t0xF613\n0x8D40\t0xF614\n0x8D41\t0xF615\n0x8D42\t0xF616\n0x8D43\t0xF617\n0x8D44\t0xF618\n0x8D45\t0xF619\n0x8D46\t0xF61A\n0x8D47\t0xF61B\n0x8D48\t0xF61C\n0x8D49\t0xF61D\n0x8D4A\t0xF61E\n0x8D4B\t0xF61F\n0x8D4C\t0xF620\n0x8D4D\t0xF621\n0x8D4E\t0xF622\n0x8D4F\t0xF623\n0x8D50\t0xF624\n0x8D51\t0xF625\n0x8D52\t0xF626\n0x8D53\t0xF627\n0x8D54\t0xF628\n0x8D55\t0xF629\n0x8D56\t0xF62A\n0x8D57\t0xF62B\n0x8D58\t0xF62C\n0x8D59\t0xF62D\n0x8D5A\t0xF62E\n0x8D5B\t0xF62F\n0x8D5C\t0xF630\n0x8D5D\t0xF631\n0x8D5E\t0xF632\n0x8D5F\t0xF633\n0x8D60\t0xF634\n0x8D61\t0xF635\n0x8D62\t0xF636\n0x8D63\t0xF637\n0x8D64\t0xF638\n0x8D65\t0xF639\n0x8D66\t0xF63A\n0x8D67\t0xF63B\n0x8D68\t0xF63C\n0x8D69\t0xF63D\n0x8D6A\t0xF63E\n0x8D6B\t0xF63F\n0x8D6C\t0xF640\n0x8D6D\t0xF641\n0x8D6E\t0xF642\n0x8D6F\t0xF643\n0x8D70\t0xF644\n0x8D71\t0xF645\n0x8D72\t0xF646\n0x8D73\t0xF647\n0x8D74\t0xF648\n0x8D75\t0xF649\n0x8D76\t0xF64A\n0x8D77\t0xF64B\n0x8D78\t0xF64C\n0x8D79\t0xF64D\n0x8D7A\t0xF64E\n0x8D7B\t0xF64F\n0x8D7C\t0xF650\n0x8D7D\t0xF651\n0x8D7E\t0xF652\n0x8DA1\t0xF653\n0x8DA2\t0xF654\n0x8DA3\t0xF655\n0x8DA4\t0xF656\n0x8DA5\t0xF657\n0x8DA6\t0xF658\n0x8DA7\t0xF659\n0x8DA8\t0xF65A\n0x8DA9\t0xF65B\n0x8DAA\t0xF65C\n0x8DAB\t0xF65D\n0x8DAC\t0xF65E\n0x8DAD\t0xF65F\n0x8DAE\t0xF660\n0x8DAF\t0xF661\n0x8DB0\t0xF662\n0x8DB1\t0xF663\n0x8DB2\t0xF664\n0x8DB3\t0xF665\n0x8DB4\t0xF666\n0x8DB5\t0xF667\n0x8DB6\t0xF668\n0x8DB7\t0xF669\n0x8DB8\t0xF66A\n0x8DB9\t0xF66B\n0x8DBA\t0xF66C\n0x8DBB\t0xF66D\n0x8DBC\t0xF66E\n0x8DBD\t0xF66F\n0x8DBE\t0xF670\n0x8DBF\t0xF671\n0x8DC0\t0xF672\n0x8DC1\t0xF673\n0x8DC2\t0xF674\n0x8DC3\t0xF675\n0x8DC4\t0xF676\n0x8DC5\t0xF677\n0x8DC6\t0xF678\n0x8DC7\t0xF679\n0x8DC8\t0xF67A\n0x8DC9\t0xF67B\n0x8DCA\t0xF67C\n0x8DCB\t0xF67D\n0x8DCC\t0xF67E\n0x8DCD\t0xF67F\n0x8DCE\t0xF680\n0x8DCF\t0xF681\n0x8DD0\t0xF682\n0x8DD1\t0xF683\n0x8DD2\t0xF684\n0x8DD3\t0xF685\n0x8DD4\t0xF686\n0x8DD5\t0xF687\n0x8DD6\t0xF688\n0x8DD7\t0xF689\n0x8DD8\t0xF68A\n0x8DD9\t0xF68B\n0x8DDA\t0xF68C\n0x8DDB\t0xF68D\n0x8DDC\t0xF68E\n0x8DDD\t0xF68F\n0x8DDE\t0xF690\n0x8DDF\t0xF691\n0x8DE0\t0xF692\n0x8DE1\t0xF693\n0x8DE2\t0xF694\n0x8DE3\t0xF695\n0x8DE4\t0xF696\n0x8DE5\t0xF697\n0x8DE6\t0xF698\n0x8DE7\t0xF699\n0x8DE8\t0xF69A\n0x8DE9\t0xF69B\n0x8DEA\t0xF69C\n0x8DEB\t0xF69D\n0x8DEC\t0xF69E\n0x8DED\t0xF69F\n0x8DEE\t0xF6A0\n0x8DEF\t0xF6A1\n0x8DF0\t0xF6A2\n0x8DF1\t0xF6A3\n0x8DF2\t0xF6A4\n0x8DF3\t0xF6A5\n0x8DF4\t0xF6A6\n0x8DF5\t0xF6A7\n0x8DF6\t0xF6A8\n0x8DF7\t0xF6A9\n0x8DF8\t0xF6AA\n0x8DF9\t0xF6AB\n0x8DFA\t0xF6AC\n0x8DFB\t0xF6AD\n0x8DFC\t0xF6AE\n0x8DFD\t0xF6AF\n0x8DFE\t0xF6B0\n0x8E40\t0xE311\n0x8E41\t0xE312\n0x8E42\t0xE313\n0x8E43\t0xE314\n0x8E44\t0xE315\n0x8E45\t0xE316\n0x8E46\t0xE317\n0x8E47\t0xE318\n0x8E48\t0xE319\n0x8E49\t0xE31A\n0x8E4A\t0xE31B\n0x8E4B\t0xE31C\n0x8E4C\t0xE31D\n0x8E4D\t0xE31E\n0x8E4E\t0xE31F\n0x8E4F\t0xE320\n0x8E50\t0xE321\n0x8E51\t0xE322\n0x8E52\t0xE323\n0x8E53\t0xE324\n0x8E54\t0xE325\n0x8E55\t0xE326\n0x8E56\t0xE327\n0x8E57\t0xE328\n0x8E58\t0xE329\n0x8E59\t0xE32A\n0x8E5A\t0xE32B\n0x8E5B\t0xE32C\n0x8E5C\t0xE32D\n0x8E5D\t0xE32E\n0x8E5E\t0xE32F\n0x8E5F\t0xE330\n0x8E60\t0xE331\n0x8E61\t0xE332\n0x8E62\t0xE333\n0x8E63\t0xE334\n0x8E64\t0xE335\n0x8E65\t0xE336\n0x8E66\t0xE337\n0x8E67\t0xE338\n0x8E68\t0xE339\n0x8E69\t0xE33A\n0x8E6A\t0xE33B\n0x8E6B\t0xE33C\n0x8E6C\t0xE33D\n0x8E6D\t0xE33E\n0x8E6E\t0xE33F\n0x8E6F\t0xE340\n0x8E70\t0xE341\n0x8E71\t0xE342\n0x8E72\t0xE343\n0x8E73\t0xE344\n0x8E74\t0xE345\n0x8E75\t0xE346\n0x8E76\t0xE347\n0x8E77\t0xE348\n0x8E78\t0xE349\n0x8E79\t0xE34A\n0x8E7A\t0xE34B\n0x8E7B\t0xE34C\n0x8E7C\t0xE34D\n0x8E7D\t0xE34E\n0x8E7E\t0xE34F\n0x8EA1\t0xE350\n0x8EA2\t0xE351\n0x8EA3\t0xE352\n0x8EA4\t0xE353\n0x8EA5\t0xE354\n0x8EA6\t0xE355\n0x8EA7\t0xE356\n0x8EA8\t0xE357\n0x8EA9\t0xE358\n0x8EAA\t0xE359\n0x8EAB\t0xE35A\n0x8EAC\t0xE35B\n0x8EAD\t0xE35C\n0x8EAE\t0xE35D\n0x8EAF\t0xE35E\n0x8EB0\t0xE35F\n0x8EB1\t0xE360\n0x8EB2\t0xE361\n0x8EB3\t0xE362\n0x8EB4\t0xE363\n0x8EB5\t0xE364\n0x8EB6\t0xE365\n0x8EB7\t0xE366\n0x8EB8\t0xE367\n0x8EB9\t0xE368\n0x8EBA\t0xE369\n0x8EBB\t0xE36A\n0x8EBC\t0xE36B\n0x8EBD\t0xE36C\n0x8EBE\t0xE36D\n0x8EBF\t0xE36E\n0x8EC0\t0xE36F\n0x8EC1\t0xE370\n0x8EC2\t0xE371\n0x8EC3\t0xE372\n0x8EC4\t0xE373\n0x8EC5\t0xE374\n0x8EC6\t0xE375\n0x8EC7\t0xE376\n0x8EC8\t0xE377\n0x8EC9\t0xE378\n0x8ECA\t0xE379\n0x8ECB\t0xE37A\n0x8ECC\t0xE37B\n0x8ECD\t0xE37C\n0x8ECE\t0xE37D\n0x8ECF\t0xE37E\n0x8ED0\t0xE37F\n0x8ED1\t0xE380\n0x8ED2\t0xE381\n0x8ED3\t0xE382\n0x8ED4\t0xE383\n0x8ED5\t0xE384\n0x8ED6\t0xE385\n0x8ED7\t0xE386\n0x8ED8\t0xE387\n0x8ED9\t0xE388\n0x8EDA\t0xE389\n0x8EDB\t0xE38A\n0x8EDC\t0xE38B\n0x8EDD\t0xE38C\n0x8EDE\t0xE38D\n0x8EDF\t0xE38E\n0x8EE0\t0xE38F\n0x8EE1\t0xE390\n0x8EE2\t0xE391\n0x8EE3\t0xE392\n0x8EE4\t0xE393\n0x8EE5\t0xE394\n0x8EE6\t0xE395\n0x8EE7\t0xE396\n0x8EE8\t0xE397\n0x8EE9\t0xE398\n0x8EEA\t0xE399\n0x8EEB\t0xE39A\n0x8EEC\t0xE39B\n0x8EED\t0xE39C\n0x8EEE\t0xE39D\n0x8EEF\t0xE39E\n0x8EF0\t0xE39F\n0x8EF1\t0xE3A0\n0x8EF2\t0xE3A1\n0x8EF3\t0xE3A2\n0x8EF4\t0xE3A3\n0x8EF5\t0xE3A4\n0x8EF6\t0xE3A5\n0x8EF7\t0xE3A6\n0x8EF8\t0xE3A7\n0x8EF9\t0xE3A8\n0x8EFA\t0xE3A9\n0x8EFB\t0xE3AA\n0x8EFC\t0xE3AB\n0x8EFD\t0xE3AC\n0x8EFE\t0xE3AD\n0x8F40\t0xE3AE\n0x8F41\t0xE3AF\n0x8F42\t0xE3B0\n0x8F43\t0xE3B1\n0x8F44\t0xE3B2\n0x8F45\t0xE3B3\n0x8F46\t0xE3B4\n0x8F47\t0xE3B5\n0x8F48\t0xE3B6\n0x8F49\t0xE3B7\n0x8F4A\t0xE3B8\n0x8F4B\t0xE3B9\n0x8F4C\t0xE3BA\n0x8F4D\t0xE3BB\n0x8F4E\t0xE3BC\n0x8F4F\t0xE3BD\n0x8F50\t0xE3BE\n0x8F51\t0xE3BF\n0x8F52\t0xE3C0\n0x8F53\t0xE3C1\n0x8F54\t0xE3C2\n0x8F55\t0xE3C3\n0x8F56\t0xE3C4\n0x8F57\t0xE3C5\n0x8F58\t0xE3C6\n0x8F59\t0xE3C7\n0x8F5A\t0xE3C8\n0x8F5B\t0xE3C9\n0x8F5C\t0xE3CA\n0x8F5D\t0xE3CB\n0x8F5E\t0xE3CC\n0x8F5F\t0xE3CD\n0x8F60\t0xE3CE\n0x8F61\t0xE3CF\n0x8F62\t0xE3D0\n0x8F63\t0xE3D1\n0x8F64\t0xE3D2\n0x8F65\t0xE3D3\n0x8F66\t0xE3D4\n0x8F67\t0xE3D5\n0x8F68\t0xE3D6\n0x8F69\t0xE3D7\n0x8F6A\t0xE3D8\n0x8F6B\t0xE3D9\n0x8F6C\t0xE3DA\n0x8F6D\t0xE3DB\n0x8F6E\t0xE3DC\n0x8F6F\t0xE3DD\n0x8F70\t0xE3DE\n0x8F71\t0xE3DF\n0x8F72\t0xE3E0\n0x8F73\t0xE3E1\n0x8F74\t0xE3E2\n0x8F75\t0xE3E3\n0x8F76\t0xE3E4\n0x8F77\t0xE3E5\n0x8F78\t0xE3E6\n0x8F79\t0xE3E7\n0x8F7A\t0xE3E8\n0x8F7B\t0xE3E9\n0x8F7C\t0xE3EA\n0x8F7D\t0xE3EB\n0x8F7E\t0xE3EC\n0x8FA1\t0xE3ED\n0x8FA2\t0xE3EE\n0x8FA3\t0xE3EF\n0x8FA4\t0xE3F0\n0x8FA5\t0xE3F1\n0x8FA6\t0xE3F2\n0x8FA7\t0xE3F3\n0x8FA8\t0xE3F4\n0x8FA9\t0xE3F5\n0x8FAA\t0xE3F6\n0x8FAB\t0xE3F7\n0x8FAC\t0xE3F8\n0x8FAD\t0xE3F9\n0x8FAE\t0xE3FA\n0x8FAF\t0xE3FB\n0x8FB0\t0xE3FC\n0x8FB1\t0xE3FD\n0x8FB2\t0xE3FE\n0x8FB3\t0xE3FF\n0x8FB4\t0xE400\n0x8FB5\t0xE401\n0x8FB6\t0xE402\n0x8FB7\t0xE403\n0x8FB8\t0xE404\n0x8FB9\t0xE405\n0x8FBA\t0xE406\n0x8FBB\t0xE407\n0x8FBC\t0xE408\n0x8FBD\t0xE409\n0x8FBE\t0xE40A\n0x8FBF\t0xE40B\n0x8FC0\t0xE40C\n0x8FC1\t0xE40D\n0x8FC2\t0xE40E\n0x8FC3\t0xE40F\n0x8FC4\t0xE410\n0x8FC5\t0xE411\n0x8FC6\t0xE412\n0x8FC7\t0xE413\n0x8FC8\t0xE414\n0x8FC9\t0xE415\n0x8FCA\t0xE416\n0x8FCB\t0xE417\n0x8FCC\t0xE418\n0x8FCD\t0xE419\n0x8FCE\t0xE41A\n0x8FCF\t0xE41B\n0x8FD0\t0xE41C\n0x8FD1\t0xE41D\n0x8FD2\t0xE41E\n0x8FD3\t0xE41F\n0x8FD4\t0xE420\n0x8FD5\t0xE421\n0x8FD6\t0xE422\n0x8FD7\t0xE423\n0x8FD8\t0xE424\n0x8FD9\t0xE425\n0x8FDA\t0xE426\n0x8FDB\t0xE427\n0x8FDC\t0xE428\n0x8FDD\t0xE429\n0x8FDE\t0xE42A\n0x8FDF\t0xE42B\n0x8FE0\t0xE42C\n0x8FE1\t0xE42D\n0x8FE2\t0xE42E\n0x8FE3\t0xE42F\n0x8FE4\t0xE430\n0x8FE5\t0xE431\n0x8FE6\t0xE432\n0x8FE7\t0xE433\n0x8FE8\t0xE434\n0x8FE9\t0xE435\n0x8FEA\t0xE436\n0x8FEB\t0xE437\n0x8FEC\t0xE438\n0x8FED\t0xE439\n0x8FEE\t0xE43A\n0x8FEF\t0xE43B\n0x8FF0\t0xE43C\n0x8FF1\t0xE43D\n0x8FF2\t0xE43E\n0x8FF3\t0xE43F\n0x8FF4\t0xE440\n0x8FF5\t0xE441\n0x8FF6\t0xE442\n0x8FF7\t0xE443\n0x8FF8\t0xE444\n0x8FF9\t0xE445\n0x8FFA\t0xE446\n0x8FFB\t0xE447\n0x8FFC\t0xE448\n0x8FFD\t0xE449\n0x8FFE\t0xE44A\n0x9040\t0xE44B\n0x9041\t0xE44C\n0x9042\t0xE44D\n0x9043\t0xE44E\n0x9044\t0xE44F\n0x9045\t0xE450\n0x9046\t0xE451\n0x9047\t0xE452\n0x9048\t0xE453\n0x9049\t0xE454\n0x904A\t0xE455\n0x904B\t0xE456\n0x904C\t0xE457\n0x904D\t0xE458\n0x904E\t0xE459\n0x904F\t0xE45A\n0x9050\t0xE45B\n0x9051\t0xE45C\n0x9052\t0xE45D\n0x9053\t0xE45E\n0x9054\t0xE45F\n0x9055\t0xE460\n0x9056\t0xE461\n0x9057\t0xE462\n0x9058\t0xE463\n0x9059\t0xE464\n0x905A\t0xE465\n0x905B\t0xE466\n0x905C\t0xE467\n0x905D\t0xE468\n0x905E\t0xE469\n0x905F\t0xE46A\n0x9060\t0xE46B\n0x9061\t0xE46C\n0x9062\t0xE46D\n0x9063\t0xE46E\n0x9064\t0xE46F\n0x9065\t0xE470\n0x9066\t0xE471\n0x9067\t0xE472\n0x9068\t0xE473\n0x9069\t0xE474\n0x906A\t0xE475\n0x906B\t0xE476\n0x906C\t0xE477\n0x906D\t0xE478\n0x906E\t0xE479\n0x906F\t0xE47A\n0x9070\t0xE47B\n0x9071\t0xE47C\n0x9072\t0xE47D\n0x9073\t0xE47E\n0x9074\t0xE47F\n0x9075\t0xE480\n0x9076\t0xE481\n0x9077\t0xE482\n0x9078\t0xE483\n0x9079\t0xE484\n0x907A\t0xE485\n0x907B\t0xE486\n0x907C\t0xE487\n0x907D\t0xE488\n0x907E\t0xE489\n0x90A1\t0xE48A\n0x90A2\t0xE48B\n0x90A3\t0xE48C\n0x90A4\t0xE48D\n0x90A5\t0xE48E\n0x90A6\t0xE48F\n0x90A7\t0xE490\n0x90A8\t0xE491\n0x90A9\t0xE492\n0x90AA\t0xE493\n0x90AB\t0xE494\n0x90AC\t0xE495\n0x90AD\t0xE496\n0x90AE\t0xE497\n0x90AF\t0xE498\n0x90B0\t0xE499\n0x90B1\t0xE49A\n0x90B2\t0xE49B\n0x90B3\t0xE49C\n0x90B4\t0xE49D\n0x90B5\t0xE49E\n0x90B6\t0xE49F\n0x90B7\t0xE4A0\n0x90B8\t0xE4A1\n0x90B9\t0xE4A2\n0x90BA\t0xE4A3\n0x90BB\t0xE4A4\n0x90BC\t0xE4A5\n0x90BD\t0xE4A6\n0x90BE\t0xE4A7\n0x90BF\t0xE4A8\n0x90C0\t0xE4A9\n0x90C1\t0xE4AA\n0x90C2\t0xE4AB\n0x90C3\t0xE4AC\n0x90C4\t0xE4AD\n0x90C5\t0xE4AE\n0x90C6\t0xE4AF\n0x90C7\t0xE4B0\n0x90C8\t0xE4B1\n0x90C9\t0xE4B2\n0x90CA\t0xE4B3\n0x90CB\t0xE4B4\n0x90CC\t0xE4B5\n0x90CD\t0xE4B6\n0x90CE\t0xE4B7\n0x90CF\t0xE4B8\n0x90D0\t0xE4B9\n0x90D1\t0xE4BA\n0x90D2\t0xE4BB\n0x90D3\t0xE4BC\n0x90D4\t0xE4BD\n0x90D5\t0xE4BE\n0x90D6\t0xE4BF\n0x90D7\t0xE4C0\n0x90D8\t0xE4C1\n0x90D9\t0xE4C2\n0x90DA\t0xE4C3\n0x90DB\t0xE4C4\n0x90DC\t0xE4C5\n0x90DD\t0xE4C6\n0x90DE\t0xE4C7\n0x90DF\t0xE4C8\n0x90E0\t0xE4C9\n0x90E1\t0xE4CA\n0x90E2\t0xE4CB\n0x90E3\t0xE4CC\n0x90E4\t0xE4CD\n0x90E5\t0xE4CE\n0x90E6\t0xE4CF\n0x90E7\t0xE4D0\n0x90E8\t0xE4D1\n0x90E9\t0xE4D2\n0x90EA\t0xE4D3\n0x90EB\t0xE4D4\n0x90EC\t0xE4D5\n0x90ED\t0xE4D6\n0x90EE\t0xE4D7\n0x90EF\t0xE4D8\n0x90F0\t0xE4D9\n0x90F1\t0xE4DA\n0x90F2\t0xE4DB\n0x90F3\t0xE4DC\n0x90F4\t0xE4DD\n0x90F5\t0xE4DE\n0x90F6\t0xE4DF\n0x90F7\t0xE4E0\n0x90F8\t0xE4E1\n0x90F9\t0xE4E2\n0x90FA\t0xE4E3\n0x90FB\t0xE4E4\n0x90FC\t0xE4E5\n0x90FD\t0xE4E6\n0x90FE\t0xE4E7\n0x9140\t0xE4E8\n0x9141\t0xE4E9\n0x9142\t0xE4EA\n0x9143\t0xE4EB\n0x9144\t0xE4EC\n0x9145\t0xE4ED\n0x9146\t0xE4EE\n0x9147\t0xE4EF\n0x9148\t0xE4F0\n0x9149\t0xE4F1\n0x914A\t0xE4F2\n0x914B\t0xE4F3\n0x914C\t0xE4F4\n0x914D\t0xE4F5\n0x914E\t0xE4F6\n0x914F\t0xE4F7\n0x9150\t0xE4F8\n0x9151\t0xE4F9\n0x9152\t0xE4FA\n0x9153\t0xE4FB\n0x9154\t0xE4FC\n0x9155\t0xE4FD\n0x9156\t0xE4FE\n0x9157\t0xE4FF\n0x9158\t0xE500\n0x9159\t0xE501\n0x915A\t0xE502\n0x915B\t0xE503\n0x915C\t0xE504\n0x915D\t0xE505\n0x915E\t0xE506\n0x915F\t0xE507\n0x9160\t0xE508\n0x9161\t0xE509\n0x9162\t0xE50A\n0x9163\t0xE50B\n0x9164\t0xE50C\n0x9165\t0xE50D\n0x9166\t0xE50E\n0x9167\t0xE50F\n0x9168\t0xE510\n0x9169\t0xE511\n0x916A\t0xE512\n0x916B\t0xE513\n0x916C\t0xE514\n0x916D\t0xE515\n0x916E\t0xE516\n0x916F\t0xE517\n0x9170\t0xE518\n0x9171\t0xE519\n0x9172\t0xE51A\n0x9173\t0xE51B\n0x9174\t0xE51C\n0x9175\t0xE51D\n0x9176\t0xE51E\n0x9177\t0xE51F\n0x9178\t0xE520\n0x9179\t0xE521\n0x917A\t0xE522\n0x917B\t0xE523\n0x917C\t0xE524\n0x917D\t0xE525\n0x917E\t0xE526\n0x91A1\t0xE527\n0x91A2\t0xE528\n0x91A3\t0xE529\n0x91A4\t0xE52A\n0x91A5\t0xE52B\n0x91A6\t0xE52C\n0x91A7\t0xE52D\n0x91A8\t0xE52E\n0x91A9\t0xE52F\n0x91AA\t0xE530\n0x91AB\t0xE531\n0x91AC\t0xE532\n0x91AD\t0xE533\n0x91AE\t0xE534\n0x91AF\t0xE535\n0x91B0\t0xE536\n0x91B1\t0xE537\n0x91B2\t0xE538\n0x91B3\t0xE539\n0x91B4\t0xE53A\n0x91B5\t0xE53B\n0x91B6\t0xE53C\n0x91B7\t0xE53D\n0x91B8\t0xE53E\n0x91B9\t0xE53F\n0x91BA\t0xE540\n0x91BB\t0xE541\n0x91BC\t0xE542\n0x91BD\t0xE543\n0x91BE\t0xE544\n0x91BF\t0xE545\n0x91C0\t0xE546\n0x91C1\t0xE547\n0x91C2\t0xE548\n0x91C3\t0xE549\n0x91C4\t0xE54A\n0x91C5\t0xE54B\n0x91C6\t0xE54C\n0x91C7\t0xE54D\n0x91C8\t0xE54E\n0x91C9\t0xE54F\n0x91CA\t0xE550\n0x91CB\t0xE551\n0x91CC\t0xE552\n0x91CD\t0xE553\n0x91CE\t0xE554\n0x91CF\t0xE555\n0x91D0\t0xE556\n0x91D1\t0xE557\n0x91D2\t0xE558\n0x91D3\t0xE559\n0x91D4\t0xE55A\n0x91D5\t0xE55B\n0x91D6\t0xE55C\n0x91D7\t0xE55D\n0x91D8\t0xE55E\n0x91D9\t0xE55F\n0x91DA\t0xE560\n0x91DB\t0xE561\n0x91DC\t0xE562\n0x91DD\t0xE563\n0x91DE\t0xE564\n0x91DF\t0xE565\n0x91E0\t0xE566\n0x91E1\t0xE567\n0x91E2\t0xE568\n0x91E3\t0xE569\n0x91E4\t0xE56A\n0x91E5\t0xE56B\n0x91E6\t0xE56C\n0x91E7\t0xE56D\n0x91E8\t0xE56E\n0x91E9\t0xE56F\n0x91EA\t0xE570\n0x91EB\t0xE571\n0x91EC\t0xE572\n0x91ED\t0xE573\n0x91EE\t0xE574\n0x91EF\t0xE575\n0x91F0\t0xE576\n0x91F1\t0xE577\n0x91F2\t0xE578\n0x91F3\t0xE579\n0x91F4\t0xE57A\n0x91F5\t0xE57B\n0x91F6\t0xE57C\n0x91F7\t0xE57D\n0x91F8\t0xE57E\n0x91F9\t0xE57F\n0x91FA\t0xE580\n0x91FB\t0xE581\n0x91FC\t0xE582\n0x91FD\t0xE583\n0x91FE\t0xE584\n0x9240\t0xE585\n0x9241\t0xE586\n0x9242\t0xE587\n0x9243\t0xE588\n0x9244\t0xE589\n0x9245\t0xE58A\n0x9246\t0xE58B\n0x9247\t0xE58C\n0x9248\t0xE58D\n0x9249\t0xE58E\n0x924A\t0xE58F\n0x924B\t0xE590\n0x924C\t0xE591\n0x924D\t0xE592\n0x924E\t0xE593\n0x924F\t0xE594\n0x9250\t0xE595\n0x9251\t0xE596\n0x9252\t0xE597\n0x9253\t0xE598\n0x9254\t0xE599\n0x9255\t0xE59A\n0x9256\t0xE59B\n0x9257\t0xE59C\n0x9258\t0xE59D\n0x9259\t0xE59E\n0x925A\t0xE59F\n0x925B\t0xE5A0\n0x925C\t0xE5A1\n0x925D\t0xE5A2\n0x925E\t0xE5A3\n0x925F\t0xE5A4\n0x9260\t0xE5A5\n0x9261\t0xE5A6\n0x9262\t0xE5A7\n0x9263\t0xE5A8\n0x9264\t0xE5A9\n0x9265\t0xE5AA\n0x9266\t0xE5AB\n0x9267\t0xE5AC\n0x9268\t0xE5AD\n0x9269\t0xE5AE\n0x926A\t0xE5AF\n0x926B\t0xE5B0\n0x926C\t0xE5B1\n0x926D\t0xE5B2\n0x926E\t0xE5B3\n0x926F\t0xE5B4\n0x9270\t0xE5B5\n0x9271\t0xE5B6\n0x9272\t0xE5B7\n0x9273\t0xE5B8\n0x9274\t0xE5B9\n0x9275\t0xE5BA\n0x9276\t0xE5BB\n0x9277\t0xE5BC\n0x9278\t0xE5BD\n0x9279\t0xE5BE\n0x927A\t0xE5BF\n0x927B\t0xE5C0\n0x927C\t0xE5C1\n0x927D\t0xE5C2\n0x927E\t0xE5C3\n0x92A1\t0xE5C4\n0x92A2\t0xE5C5\n0x92A3\t0xE5C6\n0x92A4\t0xE5C7\n0x92A5\t0xE5C8\n0x92A6\t0xE5C9\n0x92A7\t0xE5CA\n0x92A8\t0xE5CB\n0x92A9\t0xE5CC\n0x92AA\t0xE5CD\n0x92AB\t0xE5CE\n0x92AC\t0xE5CF\n0x92AD\t0xE5D0\n0x92AE\t0xE5D1\n0x92AF\t0xE5D2\n0x92B0\t0xE5D3\n0x92B1\t0xE5D4\n0x92B2\t0xE5D5\n0x92B3\t0xE5D6\n0x92B4\t0xE5D7\n0x92B5\t0xE5D8\n0x92B6\t0xE5D9\n0x92B7\t0xE5DA\n0x92B8\t0xE5DB\n0x92B9\t0xE5DC\n0x92BA\t0xE5DD\n0x92BB\t0xE5DE\n0x92BC\t0xE5DF\n0x92BD\t0xE5E0\n0x92BE\t0xE5E1\n0x92BF\t0xE5E2\n0x92C0\t0xE5E3\n0x92C1\t0xE5E4\n0x92C2\t0xE5E5\n0x92C3\t0xE5E6\n0x92C4\t0xE5E7\n0x92C5\t0xE5E8\n0x92C6\t0xE5E9\n0x92C7\t0xE5EA\n0x92C8\t0xE5EB\n0x92C9\t0xE5EC\n0x92CA\t0xE5ED\n0x92CB\t0xE5EE\n0x92CC\t0xE5EF\n0x92CD\t0xE5F0\n0x92CE\t0xE5F1\n0x92CF\t0xE5F2\n0x92D0\t0xE5F3\n0x92D1\t0xE5F4\n0x92D2\t0xE5F5\n0x92D3\t0xE5F6\n0x92D4\t0xE5F7\n0x92D5\t0xE5F8\n0x92D6\t0xE5F9\n0x92D7\t0xE5FA\n0x92D8\t0xE5FB\n0x92D9\t0xE5FC\n0x92DA\t0xE5FD\n0x92DB\t0xE5FE\n0x92DC\t0xE5FF\n0x92DD\t0xE600\n0x92DE\t0xE601\n0x92DF\t0xE602\n0x92E0\t0xE603\n0x92E1\t0xE604\n0x92E2\t0xE605\n0x92E3\t0xE606\n0x92E4\t0xE607\n0x92E5\t0xE608\n0x92E6\t0xE609\n0x92E7\t0xE60A\n0x92E8\t0xE60B\n0x92E9\t0xE60C\n0x92EA\t0xE60D\n0x92EB\t0xE60E\n0x92EC\t0xE60F\n0x92ED\t0xE610\n0x92EE\t0xE611\n0x92EF\t0xE612\n0x92F0\t0xE613\n0x92F1\t0xE614\n0x92F2\t0xE615\n0x92F3\t0xE616\n0x92F4\t0xE617\n0x92F5\t0xE618\n0x92F6\t0xE619\n0x92F7\t0xE61A\n0x92F8\t0xE61B\n0x92F9\t0xE61C\n0x92FA\t0xE61D\n0x92FB\t0xE61E\n0x92FC\t0xE61F\n0x92FD\t0xE620\n0x92FE\t0xE621\n0x9340\t0xE622\n0x9341\t0xE623\n0x9342\t0xE624\n0x9343\t0xE625\n0x9344\t0xE626\n0x9345\t0xE627\n0x9346\t0xE628\n0x9347\t0xE629\n0x9348\t0xE62A\n0x9349\t0xE62B\n0x934A\t0xE62C\n0x934B\t0xE62D\n0x934C\t0xE62E\n0x934D\t0xE62F\n0x934E\t0xE630\n0x934F\t0xE631\n0x9350\t0xE632\n0x9351\t0xE633\n0x9352\t0xE634\n0x9353\t0xE635\n0x9354\t0xE636\n0x9355\t0xE637\n0x9356\t0xE638\n0x9357\t0xE639\n0x9358\t0xE63A\n0x9359\t0xE63B\n0x935A\t0xE63C\n0x935B\t0xE63D\n0x935C\t0xE63E\n0x935D\t0xE63F\n0x935E\t0xE640\n0x935F\t0xE641\n0x9360\t0xE642\n0x9361\t0xE643\n0x9362\t0xE644\n0x9363\t0xE645\n0x9364\t0xE646\n0x9365\t0xE647\n0x9366\t0xE648\n0x9367\t0xE649\n0x9368\t0xE64A\n0x9369\t0xE64B\n0x936A\t0xE64C\n0x936B\t0xE64D\n0x936C\t0xE64E\n0x936D\t0xE64F\n0x936E\t0xE650\n0x936F\t0xE651\n0x9370\t0xE652\n0x9371\t0xE653\n0x9372\t0xE654\n0x9373\t0xE655\n0x9374\t0xE656\n0x9375\t0xE657\n0x9376\t0xE658\n0x9377\t0xE659\n0x9378\t0xE65A\n0x9379\t0xE65B\n0x937A\t0xE65C\n0x937B\t0xE65D\n0x937C\t0xE65E\n0x937D\t0xE65F\n0x937E\t0xE660\n0x93A1\t0xE661\n0x93A2\t0xE662\n0x93A3\t0xE663\n0x93A4\t0xE664\n0x93A5\t0xE665\n0x93A6\t0xE666\n0x93A7\t0xE667\n0x93A8\t0xE668\n0x93A9\t0xE669\n0x93AA\t0xE66A\n0x93AB\t0xE66B\n0x93AC\t0xE66C\n0x93AD\t0xE66D\n0x93AE\t0xE66E\n0x93AF\t0xE66F\n0x93B0\t0xE670\n0x93B1\t0xE671\n0x93B2\t0xE672\n0x93B3\t0xE673\n0x93B4\t0xE674\n0x93B5\t0xE675\n0x93B6\t0xE676\n0x93B7\t0xE677\n0x93B8\t0xE678\n0x93B9\t0xE679\n0x93BA\t0xE67A\n0x93BB\t0xE67B\n0x93BC\t0xE67C\n0x93BD\t0xE67D\n0x93BE\t0xE67E\n0x93BF\t0xE67F\n0x93C0\t0xE680\n0x93C1\t0xE681\n0x93C2\t0xE682\n0x93C3\t0xE683\n0x93C4\t0xE684\n0x93C5\t0xE685\n0x93C6\t0xE686\n0x93C7\t0xE687\n0x93C8\t0xE688\n0x93C9\t0xE689\n0x93CA\t0xE68A\n0x93CB\t0xE68B\n0x93CC\t0xE68C\n0x93CD\t0xE68D\n0x93CE\t0xE68E\n0x93CF\t0xE68F\n0x93D0\t0xE690\n0x93D1\t0xE691\n0x93D2\t0xE692\n0x93D3\t0xE693\n0x93D4\t0xE694\n0x93D5\t0xE695\n0x93D6\t0xE696\n0x93D7\t0xE697\n0x93D8\t0xE698\n0x93D9\t0xE699\n0x93DA\t0xE69A\n0x93DB\t0xE69B\n0x93DC\t0xE69C\n0x93DD\t0xE69D\n0x93DE\t0xE69E\n0x93DF\t0xE69F\n0x93E0\t0xE6A0\n0x93E1\t0xE6A1\n0x93E2\t0xE6A2\n0x93E3\t0xE6A3\n0x93E4\t0xE6A4\n0x93E5\t0xE6A5\n0x93E6\t0xE6A6\n0x93E7\t0xE6A7\n0x93E8\t0xE6A8\n0x93E9\t0xE6A9\n0x93EA\t0xE6AA\n0x93EB\t0xE6AB\n0x93EC\t0xE6AC\n0x93ED\t0xE6AD\n0x93EE\t0xE6AE\n0x93EF\t0xE6AF\n0x93F0\t0xE6B0\n0x93F1\t0xE6B1\n0x93F2\t0xE6B2\n0x93F3\t0xE6B3\n0x93F4\t0xE6B4\n0x93F5\t0xE6B5\n0x93F6\t0xE6B6\n0x93F7\t0xE6B7\n0x93F8\t0xE6B8\n0x93F9\t0xE6B9\n0x93FA\t0xE6BA\n0x93FB\t0xE6BB\n0x93FC\t0xE6BC\n0x93FD\t0xE6BD\n0x93FE\t0xE6BE\n0x9440\t0xE6BF\n0x9441\t0xE6C0\n0x9442\t0xE6C1\n0x9443\t0xE6C2\n0x9444\t0xE6C3\n0x9445\t0xE6C4\n0x9446\t0xE6C5\n0x9447\t0xE6C6\n0x9448\t0xE6C7\n0x9449\t0xE6C8\n0x944A\t0xE6C9\n0x944B\t0xE6CA\n0x944C\t0xE6CB\n0x944D\t0xE6CC\n0x944E\t0xE6CD\n0x944F\t0xE6CE\n0x9450\t0xE6CF\n0x9451\t0xE6D0\n0x9452\t0xE6D1\n0x9453\t0xE6D2\n0x9454\t0xE6D3\n0x9455\t0xE6D4\n0x9456\t0xE6D5\n0x9457\t0xE6D6\n0x9458\t0xE6D7\n0x9459\t0xE6D8\n0x945A\t0xE6D9\n0x945B\t0xE6DA\n0x945C\t0xE6DB\n0x945D\t0xE6DC\n0x945E\t0xE6DD\n0x945F\t0xE6DE\n0x9460\t0xE6DF\n0x9461\t0xE6E0\n0x9462\t0xE6E1\n0x9463\t0xE6E2\n0x9464\t0xE6E3\n0x9465\t0xE6E4\n0x9466\t0xE6E5\n0x9467\t0xE6E6\n0x9468\t0xE6E7\n0x9469\t0xE6E8\n0x946A\t0xE6E9\n0x946B\t0xE6EA\n0x946C\t0xE6EB\n0x946D\t0xE6EC\n0x946E\t0xE6ED\n0x946F\t0xE6EE\n0x9470\t0xE6EF\n0x9471\t0xE6F0\n0x9472\t0xE6F1\n0x9473\t0xE6F2\n0x9474\t0xE6F3\n0x9475\t0xE6F4\n0x9476\t0xE6F5\n0x9477\t0xE6F6\n0x9478\t0xE6F7\n0x9479\t0xE6F8\n0x947A\t0xE6F9\n0x947B\t0xE6FA\n0x947C\t0xE6FB\n0x947D\t0xE6FC\n0x947E\t0xE6FD\n0x94A1\t0xE6FE\n0x94A2\t0xE6FF\n0x94A3\t0xE700\n0x94A4\t0xE701\n0x94A5\t0xE702\n0x94A6\t0xE703\n0x94A7\t0xE704\n0x94A8\t0xE705\n0x94A9\t0xE706\n0x94AA\t0xE707\n0x94AB\t0xE708\n0x94AC\t0xE709\n0x94AD\t0xE70A\n0x94AE\t0xE70B\n0x94AF\t0xE70C\n0x94B0\t0xE70D\n0x94B1\t0xE70E\n0x94B2\t0xE70F\n0x94B3\t0xE710\n0x94B4\t0xE711\n0x94B5\t0xE712\n0x94B6\t0xE713\n0x94B7\t0xE714\n0x94B8\t0xE715\n0x94B9\t0xE716\n0x94BA\t0xE717\n0x94BB\t0xE718\n0x94BC\t0xE719\n0x94BD\t0xE71A\n0x94BE\t0xE71B\n0x94BF\t0xE71C\n0x94C0\t0xE71D\n0x94C1\t0xE71E\n0x94C2\t0xE71F\n0x94C3\t0xE720\n0x94C4\t0xE721\n0x94C5\t0xE722\n0x94C6\t0xE723\n0x94C7\t0xE724\n0x94C8\t0xE725\n0x94C9\t0xE726\n0x94CA\t0xE727\n0x94CB\t0xE728\n0x94CC\t0xE729\n0x94CD\t0xE72A\n0x94CE\t0xE72B\n0x94CF\t0xE72C\n0x94D0\t0xE72D\n0x94D1\t0xE72E\n0x94D2\t0xE72F\n0x94D3\t0xE730\n0x94D4\t0xE731\n0x94D5\t0xE732\n0x94D6\t0xE733\n0x94D7\t0xE734\n0x94D8\t0xE735\n0x94D9\t0xE736\n0x94DA\t0xE737\n0x94DB\t0xE738\n0x94DC\t0xE739\n0x94DD\t0xE73A\n0x94DE\t0xE73B\n0x94DF\t0xE73C\n0x94E0\t0xE73D\n0x94E1\t0xE73E\n0x94E2\t0xE73F\n0x94E3\t0xE740\n0x94E4\t0xE741\n0x94E5\t0xE742\n0x94E6\t0xE743\n0x94E7\t0xE744\n0x94E8\t0xE745\n0x94E9\t0xE746\n0x94EA\t0xE747\n0x94EB\t0xE748\n0x94EC\t0xE749\n0x94ED\t0xE74A\n0x94EE\t0xE74B\n0x94EF\t0xE74C\n0x94F0\t0xE74D\n0x94F1\t0xE74E\n0x94F2\t0xE74F\n0x94F3\t0xE750\n0x94F4\t0xE751\n0x94F5\t0xE752\n0x94F6\t0xE753\n0x94F7\t0xE754\n0x94F8\t0xE755\n0x94F9\t0xE756\n0x94FA\t0xE757\n0x94FB\t0xE758\n0x94FC\t0xE759\n0x94FD\t0xE75A\n0x94FE\t0xE75B\n0x9540\t0xE75C\n0x9541\t0xE75D\n0x9542\t0xE75E\n0x9543\t0xE75F\n0x9544\t0xE760\n0x9545\t0xE761\n0x9546\t0xE762\n0x9547\t0xE763\n0x9548\t0xE764\n0x9549\t0xE765\n0x954A\t0xE766\n0x954B\t0xE767\n0x954C\t0xE768\n0x954D\t0xE769\n0x954E\t0xE76A\n0x954F\t0xE76B\n0x9550\t0xE76C\n0x9551\t0xE76D\n0x9552\t0xE76E\n0x9553\t0xE76F\n0x9554\t0xE770\n0x9555\t0xE771\n0x9556\t0xE772\n0x9557\t0xE773\n0x9558\t0xE774\n0x9559\t0xE775\n0x955A\t0xE776\n0x955B\t0xE777\n0x955C\t0xE778\n0x955D\t0xE779\n0x955E\t0xE77A\n0x955F\t0xE77B\n0x9560\t0xE77C\n0x9561\t0xE77D\n0x9562\t0xE77E\n0x9563\t0xE77F\n0x9564\t0xE780\n0x9565\t0xE781\n0x9566\t0xE782\n0x9567\t0xE783\n0x9568\t0xE784\n0x9569\t0xE785\n0x956A\t0xE786\n0x956B\t0xE787\n0x956C\t0xE788\n0x956D\t0xE789\n0x956E\t0xE78A\n0x956F\t0xE78B\n0x9570\t0xE78C\n0x9571\t0xE78D\n0x9572\t0xE78E\n0x9573\t0xE78F\n0x9574\t0xE790\n0x9575\t0xE791\n0x9576\t0xE792\n0x9577\t0xE793\n0x9578\t0xE794\n0x9579\t0xE795\n0x957A\t0xE796\n0x957B\t0xE797\n0x957C\t0xE798\n0x957D\t0xE799\n0x957E\t0xE79A\n0x95A1\t0xE79B\n0x95A2\t0xE79C\n0x95A3\t0xE79D\n0x95A4\t0xE79E\n0x95A5\t0xE79F\n0x95A6\t0xE7A0\n0x95A7\t0xE7A1\n0x95A8\t0xE7A2\n0x95A9\t0xE7A3\n0x95AA\t0xE7A4\n0x95AB\t0xE7A5\n0x95AC\t0xE7A6\n0x95AD\t0xE7A7\n0x95AE\t0xE7A8\n0x95AF\t0xE7A9\n0x95B0\t0xE7AA\n0x95B1\t0xE7AB\n0x95B2\t0xE7AC\n0x95B3\t0xE7AD\n0x95B4\t0xE7AE\n0x95B5\t0xE7AF\n0x95B6\t0xE7B0\n0x95B7\t0xE7B1\n0x95B8\t0xE7B2\n0x95B9\t0xE7B3\n0x95BA\t0xE7B4\n0x95BB\t0xE7B5\n0x95BC\t0xE7B6\n0x95BD\t0xE7B7\n0x95BE\t0xE7B8\n0x95BF\t0xE7B9\n0x95C0\t0xE7BA\n0x95C1\t0xE7BB\n0x95C2\t0xE7BC\n0x95C3\t0xE7BD\n0x95C4\t0xE7BE\n0x95C5\t0xE7BF\n0x95C6\t0xE7C0\n0x95C7\t0xE7C1\n0x95C8\t0xE7C2\n0x95C9\t0xE7C3\n0x95CA\t0xE7C4\n0x95CB\t0xE7C5\n0x95CC\t0xE7C6\n0x95CD\t0xE7C7\n0x95CE\t0xE7C8\n0x95CF\t0xE7C9\n0x95D0\t0xE7CA\n0x95D1\t0xE7CB\n0x95D2\t0xE7CC\n0x95D3\t0xE7CD\n0x95D4\t0xE7CE\n0x95D5\t0xE7CF\n0x95D6\t0xE7D0\n0x95D7\t0xE7D1\n0x95D8\t0xE7D2\n0x95D9\t0xE7D3\n0x95DA\t0xE7D4\n0x95DB\t0xE7D5\n0x95DC\t0xE7D6\n0x95DD\t0xE7D7\n0x95DE\t0xE7D8\n0x95DF\t0xE7D9\n0x95E0\t0xE7DA\n0x95E1\t0xE7DB\n0x95E2\t0xE7DC\n0x95E3\t0xE7DD\n0x95E4\t0xE7DE\n0x95E5\t0xE7DF\n0x95E6\t0xE7E0\n0x95E7\t0xE7E1\n0x95E8\t0xE7E2\n0x95E9\t0xE7E3\n0x95EA\t0xE7E4\n0x95EB\t0xE7E5\n0x95EC\t0xE7E6\n0x95ED\t0xE7E7\n0x95EE\t0xE7E8\n0x95EF\t0xE7E9\n0x95F0\t0xE7EA\n0x95F1\t0xE7EB\n0x95F2\t0xE7EC\n0x95F3\t0xE7ED\n0x95F4\t0xE7EE\n0x95F5\t0xE7EF\n0x95F6\t0xE7F0\n0x95F7\t0xE7F1\n0x95F8\t0xE7F2\n0x95F9\t0xE7F3\n0x95FA\t0xE7F4\n0x95FB\t0xE7F5\n0x95FC\t0xE7F6\n0x95FD\t0xE7F7\n0x95FE\t0xE7F8\n0x9640\t0xE7F9\n0x9641\t0xE7FA\n0x9642\t0xE7FB\n0x9643\t0xE7FC\n0x9644\t0xE7FD\n0x9645\t0xE7FE\n0x9646\t0xE7FF\n0x9647\t0xE800\n0x9648\t0xE801\n0x9649\t0xE802\n0x964A\t0xE803\n0x964B\t0xE804\n0x964C\t0xE805\n0x964D\t0xE806\n0x964E\t0xE807\n0x964F\t0xE808\n0x9650\t0xE809\n0x9651\t0xE80A\n0x9652\t0xE80B\n0x9653\t0xE80C\n0x9654\t0xE80D\n0x9655\t0xE80E\n0x9656\t0xE80F\n0x9657\t0xE810\n0x9658\t0xE811\n0x9659\t0xE812\n0x965A\t0xE813\n0x965B\t0xE814\n0x965C\t0xE815\n0x965D\t0xE816\n0x965E\t0xE817\n0x965F\t0xE818\n0x9660\t0xE819\n0x9661\t0xE81A\n0x9662\t0xE81B\n0x9663\t0xE81C\n0x9664\t0xE81D\n0x9665\t0xE81E\n0x9666\t0xE81F\n0x9667\t0xE820\n0x9668\t0xE821\n0x9669\t0xE822\n0x966A\t0xE823\n0x966B\t0xE824\n0x966C\t0xE825\n0x966D\t0xE826\n0x966E\t0xE827\n0x966F\t0xE828\n0x9670\t0xE829\n0x9671\t0xE82A\n0x9672\t0xE82B\n0x9673\t0xE82C\n0x9674\t0xE82D\n0x9675\t0xE82E\n0x9676\t0xE82F\n0x9677\t0xE830\n0x9678\t0xE831\n0x9679\t0xE832\n0x967A\t0xE833\n0x967B\t0xE834\n0x967C\t0xE835\n0x967D\t0xE836\n0x967E\t0xE837\n0x96A1\t0xE838\n0x96A2\t0xE839\n0x96A3\t0xE83A\n0x96A4\t0xE83B\n0x96A5\t0xE83C\n0x96A6\t0xE83D\n0x96A7\t0xE83E\n0x96A8\t0xE83F\n0x96A9\t0xE840\n0x96AA\t0xE841\n0x96AB\t0xE842\n0x96AC\t0xE843\n0x96AD\t0xE844\n0x96AE\t0xE845\n0x96AF\t0xE846\n0x96B0\t0xE847\n0x96B1\t0xE848\n0x96B2\t0xE849\n0x96B3\t0xE84A\n0x96B4\t0xE84B\n0x96B5\t0xE84C\n0x96B6\t0xE84D\n0x96B7\t0xE84E\n0x96B8\t0xE84F\n0x96B9\t0xE850\n0x96BA\t0xE851\n0x96BB\t0xE852\n0x96BC\t0xE853\n0x96BD\t0xE854\n0x96BE\t0xE855\n0x96BF\t0xE856\n0x96C0\t0xE857\n0x96C1\t0xE858\n0x96C2\t0xE859\n0x96C3\t0xE85A\n0x96C4\t0xE85B\n0x96C5\t0xE85C\n0x96C6\t0xE85D\n0x96C7\t0xE85E\n0x96C8\t0xE85F\n0x96C9\t0xE860\n0x96CA\t0xE861\n0x96CB\t0xE862\n0x96CC\t0xE863\n0x96CD\t0xE864\n0x96CE\t0xE865\n0x96CF\t0xE866\n0x96D0\t0xE867\n0x96D1\t0xE868\n0x96D2\t0xE869\n0x96D3\t0xE86A\n0x96D4\t0xE86B\n0x96D5\t0xE86C\n0x96D6\t0xE86D\n0x96D7\t0xE86E\n0x96D8\t0xE86F\n0x96D9\t0xE870\n0x96DA\t0xE871\n0x96DB\t0xE872\n0x96DC\t0xE873\n0x96DD\t0xE874\n0x96DE\t0xE875\n0x96DF\t0xE876\n0x96E0\t0xE877\n0x96E1\t0xE878\n0x96E2\t0xE879\n0x96E3\t0xE87A\n0x96E4\t0xE87B\n0x96E5\t0xE87C\n0x96E6\t0xE87D\n0x96E7\t0xE87E\n0x96E8\t0xE87F\n0x96E9\t0xE880\n0x96EA\t0xE881\n0x96EB\t0xE882\n0x96EC\t0xE883\n0x96ED\t0xE884\n0x96EE\t0xE885\n0x96EF\t0xE886\n0x96F0\t0xE887\n0x96F1\t0xE888\n0x96F2\t0xE889\n0x96F3\t0xE88A\n0x96F4\t0xE88B\n0x96F5\t0xE88C\n0x96F6\t0xE88D\n0x96F7\t0xE88E\n0x96F8\t0xE88F\n0x96F9\t0xE890\n0x96FA\t0xE891\n0x96FB\t0xE892\n0x96FC\t0xE893\n0x96FD\t0xE894\n0x96FE\t0xE895\n0x9740\t0xE896\n0x9741\t0xE897\n0x9742\t0xE898\n0x9743\t0xE899\n0x9744\t0xE89A\n0x9745\t0xE89B\n0x9746\t0xE89C\n0x9747\t0xE89D\n0x9748\t0xE89E\n0x9749\t0xE89F\n0x974A\t0xE8A0\n0x974B\t0xE8A1\n0x974C\t0xE8A2\n0x974D\t0xE8A3\n0x974E\t0xE8A4\n0x974F\t0xE8A5\n0x9750\t0xE8A6\n0x9751\t0xE8A7\n0x9752\t0xE8A8\n0x9753\t0xE8A9\n0x9754\t0xE8AA\n0x9755\t0xE8AB\n0x9756\t0xE8AC\n0x9757\t0xE8AD\n0x9758\t0xE8AE\n0x9759\t0xE8AF\n0x975A\t0xE8B0\n0x975B\t0xE8B1\n0x975C\t0xE8B2\n0x975D\t0xE8B3\n0x975E\t0xE8B4\n0x975F\t0xE8B5\n0x9760\t0xE8B6\n0x9761\t0xE8B7\n0x9762\t0xE8B8\n0x9763\t0xE8B9\n0x9764\t0xE8BA\n0x9765\t0xE8BB\n0x9766\t0xE8BC\n0x9767\t0xE8BD\n0x9768\t0xE8BE\n0x9769\t0xE8BF\n0x976A\t0xE8C0\n0x976B\t0xE8C1\n0x976C\t0xE8C2\n0x976D\t0xE8C3\n0x976E\t0xE8C4\n0x976F\t0xE8C5\n0x9770\t0xE8C6\n0x9771\t0xE8C7\n0x9772\t0xE8C8\n0x9773\t0xE8C9\n0x9774\t0xE8CA\n0x9775\t0xE8CB\n0x9776\t0xE8CC\n0x9777\t0xE8CD\n0x9778\t0xE8CE\n0x9779\t0xE8CF\n0x977A\t0xE8D0\n0x977B\t0xE8D1\n0x977C\t0xE8D2\n0x977D\t0xE8D3\n0x977E\t0xE8D4\n0x97A1\t0xE8D5\n0x97A2\t0xE8D6\n0x97A3\t0xE8D7\n0x97A4\t0xE8D8\n0x97A5\t0xE8D9\n0x97A6\t0xE8DA\n0x97A7\t0xE8DB\n0x97A8\t0xE8DC\n0x97A9\t0xE8DD\n0x97AA\t0xE8DE\n0x97AB\t0xE8DF\n0x97AC\t0xE8E0\n0x97AD\t0xE8E1\n0x97AE\t0xE8E2\n0x97AF\t0xE8E3\n0x97B0\t0xE8E4\n0x97B1\t0xE8E5\n0x97B2\t0xE8E6\n0x97B3\t0xE8E7\n0x97B4\t0xE8E8\n0x97B5\t0xE8E9\n0x97B6\t0xE8EA\n0x97B7\t0xE8EB\n0x97B8\t0xE8EC\n0x97B9\t0xE8ED\n0x97BA\t0xE8EE\n0x97BB\t0xE8EF\n0x97BC\t0xE8F0\n0x97BD\t0xE8F1\n0x97BE\t0xE8F2\n0x97BF\t0xE8F3\n0x97C0\t0xE8F4\n0x97C1\t0xE8F5\n0x97C2\t0xE8F6\n0x97C3\t0xE8F7\n0x97C4\t0xE8F8\n0x97C5\t0xE8F9\n0x97C6\t0xE8FA\n0x97C7\t0xE8FB\n0x97C8\t0xE8FC\n0x97C9\t0xE8FD\n0x97CA\t0xE8FE\n0x97CB\t0xE8FF\n0x97CC\t0xE900\n0x97CD\t0xE901\n0x97CE\t0xE902\n0x97CF\t0xE903\n0x97D0\t0xE904\n0x97D1\t0xE905\n0x97D2\t0xE906\n0x97D3\t0xE907\n0x97D4\t0xE908\n0x97D5\t0xE909\n0x97D6\t0xE90A\n0x97D7\t0xE90B\n0x97D8\t0xE90C\n0x97D9\t0xE90D\n0x97DA\t0xE90E\n0x97DB\t0xE90F\n0x97DC\t0xE910\n0x97DD\t0xE911\n0x97DE\t0xE912\n0x97DF\t0xE913\n0x97E0\t0xE914\n0x97E1\t0xE915\n0x97E2\t0xE916\n0x97E3\t0xE917\n0x97E4\t0xE918\n0x97E5\t0xE919\n0x97E6\t0xE91A\n0x97E7\t0xE91B\n0x97E8\t0xE91C\n0x97E9\t0xE91D\n0x97EA\t0xE91E\n0x97EB\t0xE91F\n0x97EC\t0xE920\n0x97ED\t0xE921\n0x97EE\t0xE922\n0x97EF\t0xE923\n0x97F0\t0xE924\n0x97F1\t0xE925\n0x97F2\t0xE926\n0x97F3\t0xE927\n0x97F4\t0xE928\n0x97F5\t0xE929\n0x97F6\t0xE92A\n0x97F7\t0xE92B\n0x97F8\t0xE92C\n0x97F9\t0xE92D\n0x97FA\t0xE92E\n0x97FB\t0xE92F\n0x97FC\t0xE930\n0x97FD\t0xE931\n0x97FE\t0xE932\n0x9840\t0xE933\n0x9841\t0xE934\n0x9842\t0xE935\n0x9843\t0xE936\n0x9844\t0xE937\n0x9845\t0xE938\n0x9846\t0xE939\n0x9847\t0xE93A\n0x9848\t0xE93B\n0x9849\t0xE93C\n0x984A\t0xE93D\n0x984B\t0xE93E\n0x984C\t0xE93F\n0x984D\t0xE940\n0x984E\t0xE941\n0x984F\t0xE942\n0x9850\t0xE943\n0x9851\t0xE944\n0x9852\t0xE945\n0x9853\t0xE946\n0x9854\t0xE947\n0x9855\t0xE948\n0x9856\t0xE949\n0x9857\t0xE94A\n0x9858\t0xE94B\n0x9859\t0xE94C\n0x985A\t0xE94D\n0x985B\t0xE94E\n0x985C\t0xE94F\n0x985D\t0xE950\n0x985E\t0xE951\n0x985F\t0xE952\n0x9860\t0xE953\n0x9861\t0xE954\n0x9862\t0xE955\n0x9863\t0xE956\n0x9864\t0xE957\n0x9865\t0xE958\n0x9866\t0xE959\n0x9867\t0xE95A\n0x9868\t0xE95B\n0x9869\t0xE95C\n0x986A\t0xE95D\n0x986B\t0xE95E\n0x986C\t0xE95F\n0x986D\t0xE960\n0x986E\t0xE961\n0x986F\t0xE962\n0x9870\t0xE963\n0x9871\t0xE964\n0x9872\t0xE965\n0x9873\t0xE966\n0x9874\t0xE967\n0x9875\t0xE968\n0x9876\t0xE969\n0x9877\t0xE96A\n0x9878\t0xE96B\n0x9879\t0xE96C\n0x987A\t0xE96D\n0x987B\t0xE96E\n0x987C\t0xE96F\n0x987D\t0xE970\n0x987E\t0xE971\n0x98A1\t0xE972\n0x98A2\t0xE973\n0x98A3\t0xE974\n0x98A4\t0xE975\n0x98A5\t0xE976\n0x98A6\t0xE977\n0x98A7\t0xE978\n0x98A8\t0xE979\n0x98A9\t0xE97A\n0x98AA\t0xE97B\n0x98AB\t0xE97C\n0x98AC\t0xE97D\n0x98AD\t0xE97E\n0x98AE\t0xE97F\n0x98AF\t0xE980\n0x98B0\t0xE981\n0x98B1\t0xE982\n0x98B2\t0xE983\n0x98B3\t0xE984\n0x98B4\t0xE985\n0x98B5\t0xE986\n0x98B6\t0xE987\n0x98B7\t0xE988\n0x98B8\t0xE989\n0x98B9\t0xE98A\n0x98BA\t0xE98B\n0x98BB\t0xE98C\n0x98BC\t0xE98D\n0x98BD\t0xE98E\n0x98BE\t0xE98F\n0x98BF\t0xE990\n0x98C0\t0xE991\n0x98C1\t0xE992\n0x98C2\t0xE993\n0x98C3\t0xE994\n0x98C4\t0xE995\n0x98C5\t0xE996\n0x98C6\t0xE997\n0x98C7\t0xE998\n0x98C8\t0xE999\n0x98C9\t0xE99A\n0x98CA\t0xE99B\n0x98CB\t0xE99C\n0x98CC\t0xE99D\n0x98CD\t0xE99E\n0x98CE\t0xE99F\n0x98CF\t0xE9A0\n0x98D0\t0xE9A1\n0x98D1\t0xE9A2\n0x98D2\t0xE9A3\n0x98D3\t0xE9A4\n0x98D4\t0xE9A5\n0x98D5\t0xE9A6\n0x98D6\t0xE9A7\n0x98D7\t0xE9A8\n0x98D8\t0xE9A9\n0x98D9\t0xE9AA\n0x98DA\t0xE9AB\n0x98DB\t0xE9AC\n0x98DC\t0xE9AD\n0x98DD\t0xE9AE\n0x98DE\t0xE9AF\n0x98DF\t0xE9B0\n0x98E0\t0xE9B1\n0x98E1\t0xE9B2\n0x98E2\t0xE9B3\n0x98E3\t0xE9B4\n0x98E4\t0xE9B5\n0x98E5\t0xE9B6\n0x98E6\t0xE9B7\n0x98E7\t0xE9B8\n0x98E8\t0xE9B9\n0x98E9\t0xE9BA\n0x98EA\t0xE9BB\n0x98EB\t0xE9BC\n0x98EC\t0xE9BD\n0x98ED\t0xE9BE\n0x98EE\t0xE9BF\n0x98EF\t0xE9C0\n0x98F0\t0xE9C1\n0x98F1\t0xE9C2\n0x98F2\t0xE9C3\n0x98F3\t0xE9C4\n0x98F4\t0xE9C5\n0x98F5\t0xE9C6\n0x98F6\t0xE9C7\n0x98F7\t0xE9C8\n0x98F8\t0xE9C9\n0x98F9\t0xE9CA\n0x98FA\t0xE9CB\n0x98FB\t0xE9CC\n0x98FC\t0xE9CD\n0x98FD\t0xE9CE\n0x98FE\t0xE9CF\n0x9940\t0xE9D0\n0x9941\t0xE9D1\n0x9942\t0xE9D2\n0x9943\t0xE9D3\n0x9944\t0xE9D4\n0x9945\t0xE9D5\n0x9946\t0xE9D6\n0x9947\t0xE9D7\n0x9948\t0xE9D8\n0x9949\t0xE9D9\n0x994A\t0xE9DA\n0x994B\t0xE9DB\n0x994C\t0xE9DC\n0x994D\t0xE9DD\n0x994E\t0xE9DE\n0x994F\t0xE9DF\n0x9950\t0xE9E0\n0x9951\t0xE9E1\n0x9952\t0xE9E2\n0x9953\t0xE9E3\n0x9954\t0xE9E4\n0x9955\t0xE9E5\n0x9956\t0xE9E6\n0x9957\t0xE9E7\n0x9958\t0xE9E8\n0x9959\t0xE9E9\n0x995A\t0xE9EA\n0x995B\t0xE9EB\n0x995C\t0xE9EC\n0x995D\t0xE9ED\n0x995E\t0xE9EE\n0x995F\t0xE9EF\n0x9960\t0xE9F0\n0x9961\t0xE9F1\n0x9962\t0xE9F2\n0x9963\t0xE9F3\n0x9964\t0xE9F4\n0x9965\t0xE9F5\n0x9966\t0xE9F6\n0x9967\t0xE9F7\n0x9968\t0xE9F8\n0x9969\t0xE9F9\n0x996A\t0xE9FA\n0x996B\t0xE9FB\n0x996C\t0xE9FC\n0x996D\t0xE9FD\n0x996E\t0xE9FE\n0x996F\t0xE9FF\n0x9970\t0xEA00\n0x9971\t0xEA01\n0x9972\t0xEA02\n0x9973\t0xEA03\n0x9974\t0xEA04\n0x9975\t0xEA05\n0x9976\t0xEA06\n0x9977\t0xEA07\n0x9978\t0xEA08\n0x9979\t0xEA09\n0x997A\t0xEA0A\n0x997B\t0xEA0B\n0x997C\t0xEA0C\n0x997D\t0xEA0D\n0x997E\t0xEA0E\n0x99A1\t0xEA0F\n0x99A2\t0xEA10\n0x99A3\t0xEA11\n0x99A4\t0xEA12\n0x99A5\t0xEA13\n0x99A6\t0xEA14\n0x99A7\t0xEA15\n0x99A8\t0xEA16\n0x99A9\t0xEA17\n0x99AA\t0xEA18\n0x99AB\t0xEA19\n0x99AC\t0xEA1A\n0x99AD\t0xEA1B\n0x99AE\t0xEA1C\n0x99AF\t0xEA1D\n0x99B0\t0xEA1E\n0x99B1\t0xEA1F\n0x99B2\t0xEA20\n0x99B3\t0xEA21\n0x99B4\t0xEA22\n0x99B5\t0xEA23\n0x99B6\t0xEA24\n0x99B7\t0xEA25\n0x99B8\t0xEA26\n0x99B9\t0xEA27\n0x99BA\t0xEA28\n0x99BB\t0xEA29\n0x99BC\t0xEA2A\n0x99BD\t0xEA2B\n0x99BE\t0xEA2C\n0x99BF\t0xEA2D\n0x99C0\t0xEA2E\n0x99C1\t0xEA2F\n0x99C2\t0xEA30\n0x99C3\t0xEA31\n0x99C4\t0xEA32\n0x99C5\t0xEA33\n0x99C6\t0xEA34\n0x99C7\t0xEA35\n0x99C8\t0xEA36\n0x99C9\t0xEA37\n0x99CA\t0xEA38\n0x99CB\t0xEA39\n0x99CC\t0xEA3A\n0x99CD\t0xEA3B\n0x99CE\t0xEA3C\n0x99CF\t0xEA3D\n0x99D0\t0xEA3E\n0x99D1\t0xEA3F\n0x99D2\t0xEA40\n0x99D3\t0xEA41\n0x99D4\t0xEA42\n0x99D5\t0xEA43\n0x99D6\t0xEA44\n0x99D7\t0xEA45\n0x99D8\t0xEA46\n0x99D9\t0xEA47\n0x99DA\t0xEA48\n0x99DB\t0xEA49\n0x99DC\t0xEA4A\n0x99DD\t0xEA4B\n0x99DE\t0xEA4C\n0x99DF\t0xEA4D\n0x99E0\t0xEA4E\n0x99E1\t0xEA4F\n0x99E2\t0xEA50\n0x99E3\t0xEA51\n0x99E4\t0xEA52\n0x99E5\t0xEA53\n0x99E6\t0xEA54\n0x99E7\t0xEA55\n0x99E8\t0xEA56\n0x99E9\t0xEA57\n0x99EA\t0xEA58\n0x99EB\t0xEA59\n0x99EC\t0xEA5A\n0x99ED\t0xEA5B\n0x99EE\t0xEA5C\n0x99EF\t0xEA5D\n0x99F0\t0xEA5E\n0x99F1\t0xEA5F\n0x99F2\t0xEA60\n0x99F3\t0xEA61\n0x99F4\t0xEA62\n0x99F5\t0xEA63\n0x99F6\t0xEA64\n0x99F7\t0xEA65\n0x99F8\t0xEA66\n0x99F9\t0xEA67\n0x99FA\t0xEA68\n0x99FB\t0xEA69\n0x99FC\t0xEA6A\n0x99FD\t0xEA6B\n0x99FE\t0xEA6C\n0x9A40\t0xEA6D\n0x9A41\t0xEA6E\n0x9A42\t0xEA6F\n0x9A43\t0xEA70\n0x9A44\t0xEA71\n0x9A45\t0xEA72\n0x9A46\t0xEA73\n0x9A47\t0xEA74\n0x9A48\t0xEA75\n0x9A49\t0xEA76\n0x9A4A\t0xEA77\n0x9A4B\t0xEA78\n0x9A4C\t0xEA79\n0x9A4D\t0xEA7A\n0x9A4E\t0xEA7B\n0x9A4F\t0xEA7C\n0x9A50\t0xEA7D\n0x9A51\t0xEA7E\n0x9A52\t0xEA7F\n0x9A53\t0xEA80\n0x9A54\t0xEA81\n0x9A55\t0xEA82\n0x9A56\t0xEA83\n0x9A57\t0xEA84\n0x9A58\t0xEA85\n0x9A59\t0xEA86\n0x9A5A\t0xEA87\n0x9A5B\t0xEA88\n0x9A5C\t0xEA89\n0x9A5D\t0xEA8A\n0x9A5E\t0xEA8B\n0x9A5F\t0xEA8C\n0x9A60\t0xEA8D\n0x9A61\t0xEA8E\n0x9A62\t0xEA8F\n0x9A63\t0xEA90\n0x9A64\t0xEA91\n0x9A65\t0xEA92\n0x9A66\t0xEA93\n0x9A67\t0xEA94\n0x9A68\t0xEA95\n0x9A69\t0xEA96\n0x9A6A\t0xEA97\n0x9A6B\t0xEA98\n0x9A6C\t0xEA99\n0x9A6D\t0xEA9A\n0x9A6E\t0xEA9B\n0x9A6F\t0xEA9C\n0x9A70\t0xEA9D\n0x9A71\t0xEA9E\n0x9A72\t0xEA9F\n0x9A73\t0xEAA0\n0x9A74\t0xEAA1\n0x9A75\t0xEAA2\n0x9A76\t0xEAA3\n0x9A77\t0xEAA4\n0x9A78\t0xEAA5\n0x9A79\t0xEAA6\n0x9A7A\t0xEAA7\n0x9A7B\t0xEAA8\n0x9A7C\t0xEAA9\n0x9A7D\t0xEAAA\n0x9A7E\t0xEAAB\n0x9AA1\t0xEAAC\n0x9AA2\t0xEAAD\n0x9AA3\t0xEAAE\n0x9AA4\t0xEAAF\n0x9AA5\t0xEAB0\n0x9AA6\t0xEAB1\n0x9AA7\t0xEAB2\n0x9AA8\t0xEAB3\n0x9AA9\t0xEAB4\n0x9AAA\t0xEAB5\n0x9AAB\t0xEAB6\n0x9AAC\t0xEAB7\n0x9AAD\t0xEAB8\n0x9AAE\t0xEAB9\n0x9AAF\t0xEABA\n0x9AB0\t0xEABB\n0x9AB1\t0xEABC\n0x9AB2\t0xEABD\n0x9AB3\t0xEABE\n0x9AB4\t0xEABF\n0x9AB5\t0xEAC0\n0x9AB6\t0xEAC1\n0x9AB7\t0xEAC2\n0x9AB8\t0xEAC3\n0x9AB9\t0xEAC4\n0x9ABA\t0xEAC5\n0x9ABB\t0xEAC6\n0x9ABC\t0xEAC7\n0x9ABD\t0xEAC8\n0x9ABE\t0xEAC9\n0x9ABF\t0xEACA\n0x9AC0\t0xEACB\n0x9AC1\t0xEACC\n0x9AC2\t0xEACD\n0x9AC3\t0xEACE\n0x9AC4\t0xEACF\n0x9AC5\t0xEAD0\n0x9AC6\t0xEAD1\n0x9AC7\t0xEAD2\n0x9AC8\t0xEAD3\n0x9AC9\t0xEAD4\n0x9ACA\t0xEAD5\n0x9ACB\t0xEAD6\n0x9ACC\t0xEAD7\n0x9ACD\t0xEAD8\n0x9ACE\t0xEAD9\n0x9ACF\t0xEADA\n0x9AD0\t0xEADB\n0x9AD1\t0xEADC\n0x9AD2\t0xEADD\n0x9AD3\t0xEADE\n0x9AD4\t0xEADF\n0x9AD5\t0xEAE0\n0x9AD6\t0xEAE1\n0x9AD7\t0xEAE2\n0x9AD8\t0xEAE3\n0x9AD9\t0xEAE4\n0x9ADA\t0xEAE5\n0x9ADB\t0xEAE6\n0x9ADC\t0xEAE7\n0x9ADD\t0xEAE8\n0x9ADE\t0xEAE9\n0x9ADF\t0xEAEA\n0x9AE0\t0xEAEB\n0x9AE1\t0xEAEC\n0x9AE2\t0xEAED\n0x9AE3\t0xEAEE\n0x9AE4\t0xEAEF\n0x9AE5\t0xEAF0\n0x9AE6\t0xEAF1\n0x9AE7\t0xEAF2\n0x9AE8\t0xEAF3\n0x9AE9\t0xEAF4\n0x9AEA\t0xEAF5\n0x9AEB\t0xEAF6\n0x9AEC\t0xEAF7\n0x9AED\t0xEAF8\n0x9AEE\t0xEAF9\n0x9AEF\t0xEAFA\n0x9AF0\t0xEAFB\n0x9AF1\t0xEAFC\n0x9AF2\t0xEAFD\n0x9AF3\t0xEAFE\n0x9AF4\t0xEAFF\n0x9AF5\t0xEB00\n0x9AF6\t0xEB01\n0x9AF7\t0xEB02\n0x9AF8\t0xEB03\n0x9AF9\t0xEB04\n0x9AFA\t0xEB05\n0x9AFB\t0xEB06\n0x9AFC\t0xEB07\n0x9AFD\t0xEB08\n0x9AFE\t0xEB09\n0x9B40\t0xEB0A\n0x9B41\t0xEB0B\n0x9B42\t0xEB0C\n0x9B43\t0xEB0D\n0x9B44\t0xEB0E\n0x9B45\t0xEB0F\n0x9B46\t0xEB10\n0x9B47\t0xEB11\n0x9B48\t0xEB12\n0x9B49\t0xEB13\n0x9B4A\t0xEB14\n0x9B4B\t0xEB15\n0x9B4C\t0xEB16\n0x9B4D\t0xEB17\n0x9B4E\t0xEB18\n0x9B4F\t0xEB19\n0x9B50\t0xEB1A\n0x9B51\t0xEB1B\n0x9B52\t0xEB1C\n0x9B53\t0xEB1D\n0x9B54\t0xEB1E\n0x9B55\t0xEB1F\n0x9B56\t0xEB20\n0x9B57\t0xEB21\n0x9B58\t0xEB22\n0x9B59\t0xEB23\n0x9B5A\t0xEB24\n0x9B5B\t0xEB25\n0x9B5C\t0xEB26\n0x9B5D\t0xEB27\n0x9B5E\t0xEB28\n0x9B5F\t0xEB29\n0x9B60\t0xEB2A\n0x9B61\t0xEB2B\n0x9B62\t0xEB2C\n0x9B63\t0xEB2D\n0x9B64\t0xEB2E\n0x9B65\t0xEB2F\n0x9B66\t0xEB30\n0x9B67\t0xEB31\n0x9B68\t0xEB32\n0x9B69\t0xEB33\n0x9B6A\t0xEB34\n0x9B6B\t0xEB35\n0x9B6C\t0xEB36\n0x9B6D\t0xEB37\n0x9B6E\t0xEB38\n0x9B6F\t0xEB39\n0x9B70\t0xEB3A\n0x9B71\t0xEB3B\n0x9B72\t0xEB3C\n0x9B73\t0xEB3D\n0x9B74\t0xEB3E\n0x9B75\t0xEB3F\n0x9B76\t0xEB40\n0x9B77\t0xEB41\n0x9B78\t0xEB42\n0x9B79\t0xEB43\n0x9B7A\t0xEB44\n0x9B7B\t0xEB45\n0x9B7C\t0xEB46\n0x9B7D\t0xEB47\n0x9B7E\t0xEB48\n0x9BA1\t0xEB49\n0x9BA2\t0xEB4A\n0x9BA3\t0xEB4B\n0x9BA4\t0xEB4C\n0x9BA5\t0xEB4D\n0x9BA6\t0xEB4E\n0x9BA7\t0xEB4F\n0x9BA8\t0xEB50\n0x9BA9\t0xEB51\n0x9BAA\t0xEB52\n0x9BAB\t0xEB53\n0x9BAC\t0xEB54\n0x9BAD\t0xEB55\n0x9BAE\t0xEB56\n0x9BAF\t0xEB57\n0x9BB0\t0xEB58\n0x9BB1\t0xEB59\n0x9BB2\t0xEB5A\n0x9BB3\t0xEB5B\n0x9BB4\t0xEB5C\n0x9BB5\t0xEB5D\n0x9BB6\t0xEB5E\n0x9BB7\t0xEB5F\n0x9BB8\t0xEB60\n0x9BB9\t0xEB61\n0x9BBA\t0xEB62\n0x9BBB\t0xEB63\n0x9BBC\t0xEB64\n0x9BBD\t0xEB65\n0x9BBE\t0xEB66\n0x9BBF\t0xEB67\n0x9BC0\t0xEB68\n0x9BC1\t0xEB69\n0x9BC2\t0xEB6A\n0x9BC3\t0xEB6B\n0x9BC4\t0xEB6C\n0x9BC5\t0xEB6D\n0x9BC6\t0xEB6E\n0x9BC7\t0xEB6F\n0x9BC8\t0xEB70\n0x9BC9\t0xEB71\n0x9BCA\t0xEB72\n0x9BCB\t0xEB73\n0x9BCC\t0xEB74\n0x9BCD\t0xEB75\n0x9BCE\t0xEB76\n0x9BCF\t0xEB77\n0x9BD0\t0xEB78\n0x9BD1\t0xEB79\n0x9BD2\t0xEB7A\n0x9BD3\t0xEB7B\n0x9BD4\t0xEB7C\n0x9BD5\t0xEB7D\n0x9BD6\t0xEB7E\n0x9BD7\t0xEB7F\n0x9BD8\t0xEB80\n0x9BD9\t0xEB81\n0x9BDA\t0xEB82\n0x9BDB\t0xEB83\n0x9BDC\t0xEB84\n0x9BDD\t0xEB85\n0x9BDE\t0xEB86\n0x9BDF\t0xEB87\n0x9BE0\t0xEB88\n0x9BE1\t0xEB89\n0x9BE2\t0xEB8A\n0x9BE3\t0xEB8B\n0x9BE4\t0xEB8C\n0x9BE5\t0xEB8D\n0x9BE6\t0xEB8E\n0x9BE7\t0xEB8F\n0x9BE8\t0xEB90\n0x9BE9\t0xEB91\n0x9BEA\t0xEB92\n0x9BEB\t0xEB93\n0x9BEC\t0xEB94\n0x9BED\t0xEB95\n0x9BEE\t0xEB96\n0x9BEF\t0xEB97\n0x9BF0\t0xEB98\n0x9BF1\t0xEB99\n0x9BF2\t0xEB9A\n0x9BF3\t0xEB9B\n0x9BF4\t0xEB9C\n0x9BF5\t0xEB9D\n0x9BF6\t0xEB9E\n0x9BF7\t0xEB9F\n0x9BF8\t0xEBA0\n0x9BF9\t0xEBA1\n0x9BFA\t0xEBA2\n0x9BFB\t0xEBA3\n0x9BFC\t0xEBA4\n0x9BFD\t0xEBA5\n0x9BFE\t0xEBA6\n0x9C40\t0xEBA7\n0x9C41\t0xEBA8\n0x9C42\t0xEBA9\n0x9C43\t0xEBAA\n0x9C44\t0xEBAB\n0x9C45\t0xEBAC\n0x9C46\t0xEBAD\n0x9C47\t0xEBAE\n0x9C48\t0xEBAF\n0x9C49\t0xEBB0\n0x9C4A\t0xEBB1\n0x9C4B\t0xEBB2\n0x9C4C\t0xEBB3\n0x9C4D\t0xEBB4\n0x9C4E\t0xEBB5\n0x9C4F\t0xEBB6\n0x9C50\t0xEBB7\n0x9C51\t0xEBB8\n0x9C52\t0xEBB9\n0x9C53\t0xEBBA\n0x9C54\t0xEBBB\n0x9C55\t0xEBBC\n0x9C56\t0xEBBD\n0x9C57\t0xEBBE\n0x9C58\t0xEBBF\n0x9C59\t0xEBC0\n0x9C5A\t0xEBC1\n0x9C5B\t0xEBC2\n0x9C5C\t0xEBC3\n0x9C5D\t0xEBC4\n0x9C5E\t0xEBC5\n0x9C5F\t0xEBC6\n0x9C60\t0xEBC7\n0x9C61\t0xEBC8\n0x9C62\t0xEBC9\n0x9C63\t0xEBCA\n0x9C64\t0xEBCB\n0x9C65\t0xEBCC\n0x9C66\t0xEBCD\n0x9C67\t0xEBCE\n0x9C68\t0xEBCF\n0x9C69\t0xEBD0\n0x9C6A\t0xEBD1\n0x9C6B\t0xEBD2\n0x9C6C\t0xEBD3\n0x9C6D\t0xEBD4\n0x9C6E\t0xEBD5\n0x9C6F\t0xEBD6\n0x9C70\t0xEBD7\n0x9C71\t0xEBD8\n0x9C72\t0xEBD9\n0x9C73\t0xEBDA\n0x9C74\t0xEBDB\n0x9C75\t0xEBDC\n0x9C76\t0xEBDD\n0x9C77\t0xEBDE\n0x9C78\t0xEBDF\n0x9C79\t0xEBE0\n0x9C7A\t0xEBE1\n0x9C7B\t0xEBE2\n0x9C7C\t0xEBE3\n0x9C7D\t0xEBE4\n0x9C7E\t0xEBE5\n0x9CA1\t0xEBE6\n0x9CA2\t0xEBE7\n0x9CA3\t0xEBE8\n0x9CA4\t0xEBE9\n0x9CA5\t0xEBEA\n0x9CA6\t0xEBEB\n0x9CA7\t0xEBEC\n0x9CA8\t0xEBED\n0x9CA9\t0xEBEE\n0x9CAA\t0xEBEF\n0x9CAB\t0xEBF0\n0x9CAC\t0xEBF1\n0x9CAD\t0xEBF2\n0x9CAE\t0xEBF3\n0x9CAF\t0xEBF4\n0x9CB0\t0xEBF5\n0x9CB1\t0xEBF6\n0x9CB2\t0xEBF7\n0x9CB3\t0xEBF8\n0x9CB4\t0xEBF9\n0x9CB5\t0xEBFA\n0x9CB6\t0xEBFB\n0x9CB7\t0xEBFC\n0x9CB8\t0xEBFD\n0x9CB9\t0xEBFE\n0x9CBA\t0xEBFF\n0x9CBB\t0xEC00\n0x9CBC\t0xEC01\n0x9CBD\t0xEC02\n0x9CBE\t0xEC03\n0x9CBF\t0xEC04\n0x9CC0\t0xEC05\n0x9CC1\t0xEC06\n0x9CC2\t0xEC07\n0x9CC3\t0xEC08\n0x9CC4\t0xEC09\n0x9CC5\t0xEC0A\n0x9CC6\t0xEC0B\n0x9CC7\t0xEC0C\n0x9CC8\t0xEC0D\n0x9CC9\t0xEC0E\n0x9CCA\t0xEC0F\n0x9CCB\t0xEC10\n0x9CCC\t0xEC11\n0x9CCD\t0xEC12\n0x9CCE\t0xEC13\n0x9CCF\t0xEC14\n0x9CD0\t0xEC15\n0x9CD1\t0xEC16\n0x9CD2\t0xEC17\n0x9CD3\t0xEC18\n0x9CD4\t0xEC19\n0x9CD5\t0xEC1A\n0x9CD6\t0xEC1B\n0x9CD7\t0xEC1C\n0x9CD8\t0xEC1D\n0x9CD9\t0xEC1E\n0x9CDA\t0xEC1F\n0x9CDB\t0xEC20\n0x9CDC\t0xEC21\n0x9CDD\t0xEC22\n0x9CDE\t0xEC23\n0x9CDF\t0xEC24\n0x9CE0\t0xEC25\n0x9CE1\t0xEC26\n0x9CE2\t0xEC27\n0x9CE3\t0xEC28\n0x9CE4\t0xEC29\n0x9CE5\t0xEC2A\n0x9CE6\t0xEC2B\n0x9CE7\t0xEC2C\n0x9CE8\t0xEC2D\n0x9CE9\t0xEC2E\n0x9CEA\t0xEC2F\n0x9CEB\t0xEC30\n0x9CEC\t0xEC31\n0x9CED\t0xEC32\n0x9CEE\t0xEC33\n0x9CEF\t0xEC34\n0x9CF0\t0xEC35\n0x9CF1\t0xEC36\n0x9CF2\t0xEC37\n0x9CF3\t0xEC38\n0x9CF4\t0xEC39\n0x9CF5\t0xEC3A\n0x9CF6\t0xEC3B\n0x9CF7\t0xEC3C\n0x9CF8\t0xEC3D\n0x9CF9\t0xEC3E\n0x9CFA\t0xEC3F\n0x9CFB\t0xEC40\n0x9CFC\t0xEC41\n0x9CFD\t0xEC42\n0x9CFE\t0xEC43\n0x9D40\t0xEC44\n0x9D41\t0xEC45\n0x9D42\t0xEC46\n0x9D43\t0xEC47\n0x9D44\t0xEC48\n0x9D45\t0xEC49\n0x9D46\t0xEC4A\n0x9D47\t0xEC4B\n0x9D48\t0xEC4C\n0x9D49\t0xEC4D\n0x9D4A\t0xEC4E\n0x9D4B\t0xEC4F\n0x9D4C\t0xEC50\n0x9D4D\t0xEC51\n0x9D4E\t0xEC52\n0x9D4F\t0xEC53\n0x9D50\t0xEC54\n0x9D51\t0xEC55\n0x9D52\t0xEC56\n0x9D53\t0xEC57\n0x9D54\t0xEC58\n0x9D55\t0xEC59\n0x9D56\t0xEC5A\n0x9D57\t0xEC5B\n0x9D58\t0xEC5C\n0x9D59\t0xEC5D\n0x9D5A\t0xEC5E\n0x9D5B\t0xEC5F\n0x9D5C\t0xEC60\n0x9D5D\t0xEC61\n0x9D5E\t0xEC62\n0x9D5F\t0xEC63\n0x9D60\t0xEC64\n0x9D61\t0xEC65\n0x9D62\t0xEC66\n0x9D63\t0xEC67\n0x9D64\t0xEC68\n0x9D65\t0xEC69\n0x9D66\t0xEC6A\n0x9D67\t0xEC6B\n0x9D68\t0xEC6C\n0x9D69\t0xEC6D\n0x9D6A\t0xEC6E\n0x9D6B\t0xEC6F\n0x9D6C\t0xEC70\n0x9D6D\t0xEC71\n0x9D6E\t0xEC72\n0x9D6F\t0xEC73\n0x9D70\t0xEC74\n0x9D71\t0xEC75\n0x9D72\t0xEC76\n0x9D73\t0xEC77\n0x9D74\t0xEC78\n0x9D75\t0xEC79\n0x9D76\t0xEC7A\n0x9D77\t0xEC7B\n0x9D78\t0xEC7C\n0x9D79\t0xEC7D\n0x9D7A\t0xEC7E\n0x9D7B\t0xEC7F\n0x9D7C\t0xEC80\n0x9D7D\t0xEC81\n0x9D7E\t0xEC82\n0x9DA1\t0xEC83\n0x9DA2\t0xEC84\n0x9DA3\t0xEC85\n0x9DA4\t0xEC86\n0x9DA5\t0xEC87\n0x9DA6\t0xEC88\n0x9DA7\t0xEC89\n0x9DA8\t0xEC8A\n0x9DA9\t0xEC8B\n0x9DAA\t0xEC8C\n0x9DAB\t0xEC8D\n0x9DAC\t0xEC8E\n0x9DAD\t0xEC8F\n0x9DAE\t0xEC90\n0x9DAF\t0xEC91\n0x9DB0\t0xEC92\n0x9DB1\t0xEC93\n0x9DB2\t0xEC94\n0x9DB3\t0xEC95\n0x9DB4\t0xEC96\n0x9DB5\t0xEC97\n0x9DB6\t0xEC98\n0x9DB7\t0xEC99\n0x9DB8\t0xEC9A\n0x9DB9\t0xEC9B\n0x9DBA\t0xEC9C\n0x9DBB\t0xEC9D\n0x9DBC\t0xEC9E\n0x9DBD\t0xEC9F\n0x9DBE\t0xECA0\n0x9DBF\t0xECA1\n0x9DC0\t0xECA2\n0x9DC1\t0xECA3\n0x9DC2\t0xECA4\n0x9DC3\t0xECA5\n0x9DC4\t0xECA6\n0x9DC5\t0xECA7\n0x9DC6\t0xECA8\n0x9DC7\t0xECA9\n0x9DC8\t0xECAA\n0x9DC9\t0xECAB\n0x9DCA\t0xECAC\n0x9DCB\t0xECAD\n0x9DCC\t0xECAE\n0x9DCD\t0xECAF\n0x9DCE\t0xECB0\n0x9DCF\t0xECB1\n0x9DD0\t0xECB2\n0x9DD1\t0xECB3\n0x9DD2\t0xECB4\n0x9DD3\t0xECB5\n0x9DD4\t0xECB6\n0x9DD5\t0xECB7\n0x9DD6\t0xECB8\n0x9DD7\t0xECB9\n0x9DD8\t0xECBA\n0x9DD9\t0xECBB\n0x9DDA\t0xECBC\n0x9DDB\t0xECBD\n0x9DDC\t0xECBE\n0x9DDD\t0xECBF\n0x9DDE\t0xECC0\n0x9DDF\t0xECC1\n0x9DE0\t0xECC2\n0x9DE1\t0xECC3\n0x9DE2\t0xECC4\n0x9DE3\t0xECC5\n0x9DE4\t0xECC6\n0x9DE5\t0xECC7\n0x9DE6\t0xECC8\n0x9DE7\t0xECC9\n0x9DE8\t0xECCA\n0x9DE9\t0xECCB\n0x9DEA\t0xECCC\n0x9DEB\t0xECCD\n0x9DEC\t0xECCE\n0x9DED\t0xECCF\n0x9DEE\t0xECD0\n0x9DEF\t0xECD1\n0x9DF0\t0xECD2\n0x9DF1\t0xECD3\n0x9DF2\t0xECD4\n0x9DF3\t0xECD5\n0x9DF4\t0xECD6\n0x9DF5\t0xECD7\n0x9DF6\t0xECD8\n0x9DF7\t0xECD9\n0x9DF8\t0xECDA\n0x9DF9\t0xECDB\n0x9DFA\t0xECDC\n0x9DFB\t0xECDD\n0x9DFC\t0xECDE\n0x9DFD\t0xECDF\n0x9DFE\t0xECE0\n0x9E40\t0xECE1\n0x9E41\t0xECE2\n0x9E42\t0xECE3\n0x9E43\t0xECE4\n0x9E44\t0xECE5\n0x9E45\t0xECE6\n0x9E46\t0xECE7\n0x9E47\t0xECE8\n0x9E48\t0xECE9\n0x9E49\t0xECEA\n0x9E4A\t0xECEB\n0x9E4B\t0xECEC\n0x9E4C\t0xECED\n0x9E4D\t0xECEE\n0x9E4E\t0xECEF\n0x9E4F\t0xECF0\n0x9E50\t0xECF1\n0x9E51\t0xECF2\n0x9E52\t0xECF3\n0x9E53\t0xECF4\n0x9E54\t0xECF5\n0x9E55\t0xECF6\n0x9E56\t0xECF7\n0x9E57\t0xECF8\n0x9E58\t0xECF9\n0x9E59\t0xECFA\n0x9E5A\t0xECFB\n0x9E5B\t0xECFC\n0x9E5C\t0xECFD\n0x9E5D\t0xECFE\n0x9E5E\t0xECFF\n0x9E5F\t0xED00\n0x9E60\t0xED01\n0x9E61\t0xED02\n0x9E62\t0xED03\n0x9E63\t0xED04\n0x9E64\t0xED05\n0x9E65\t0xED06\n0x9E66\t0xED07\n0x9E67\t0xED08\n0x9E68\t0xED09\n0x9E69\t0xED0A\n0x9E6A\t0xED0B\n0x9E6B\t0xED0C\n0x9E6C\t0xED0D\n0x9E6D\t0xED0E\n0x9E6E\t0xED0F\n0x9E6F\t0xED10\n0x9E70\t0xED11\n0x9E71\t0xED12\n0x9E72\t0xED13\n0x9E73\t0xED14\n0x9E74\t0xED15\n0x9E75\t0xED16\n0x9E76\t0xED17\n0x9E77\t0xED18\n0x9E78\t0xED19\n0x9E79\t0xED1A\n0x9E7A\t0xED1B\n0x9E7B\t0xED1C\n0x9E7C\t0xED1D\n0x9E7D\t0xED1E\n0x9E7E\t0xED1F\n0x9EA1\t0xED20\n0x9EA2\t0xED21\n0x9EA3\t0xED22\n0x9EA4\t0xED23\n0x9EA5\t0xED24\n0x9EA6\t0xED25\n0x9EA7\t0xED26\n0x9EA8\t0xED27\n0x9EA9\t0xED28\n0x9EAA\t0xED29\n0x9EAB\t0xED2A\n0x9EAC\t0xED2B\n0x9EAD\t0xED2C\n0x9EAE\t0xED2D\n0x9EAF\t0xED2E\n0x9EB0\t0xED2F\n0x9EB1\t0xED30\n0x9EB2\t0xED31\n0x9EB3\t0xED32\n0x9EB4\t0xED33\n0x9EB5\t0xED34\n0x9EB6\t0xED35\n0x9EB7\t0xED36\n0x9EB8\t0xED37\n0x9EB9\t0xED38\n0x9EBA\t0xED39\n0x9EBB\t0xED3A\n0x9EBC\t0xED3B\n0x9EBD\t0xED3C\n0x9EBE\t0xED3D\n0x9EBF\t0xED3E\n0x9EC0\t0xED3F\n0x9EC1\t0xED40\n0x9EC2\t0xED41\n0x9EC3\t0xED42\n0x9EC4\t0xED43\n0x9EC5\t0xED44\n0x9EC6\t0xED45\n0x9EC7\t0xED46\n0x9EC8\t0xED47\n0x9EC9\t0xED48\n0x9ECA\t0xED49\n0x9ECB\t0xED4A\n0x9ECC\t0xED4B\n0x9ECD\t0xED4C\n0x9ECE\t0xED4D\n0x9ECF\t0xED4E\n0x9ED0\t0xED4F\n0x9ED1\t0xED50\n0x9ED2\t0xED51\n0x9ED3\t0xED52\n0x9ED4\t0xED53\n0x9ED5\t0xED54\n0x9ED6\t0xED55\n0x9ED7\t0xED56\n0x9ED8\t0xED57\n0x9ED9\t0xED58\n0x9EDA\t0xED59\n0x9EDB\t0xED5A\n0x9EDC\t0xED5B\n0x9EDD\t0xED5C\n0x9EDE\t0xED5D\n0x9EDF\t0xED5E\n0x9EE0\t0xED5F\n0x9EE1\t0xED60\n0x9EE2\t0xED61\n0x9EE3\t0xED62\n0x9EE4\t0xED63\n0x9EE5\t0xED64\n0x9EE6\t0xED65\n0x9EE7\t0xED66\n0x9EE8\t0xED67\n0x9EE9\t0xED68\n0x9EEA\t0xED69\n0x9EEB\t0xED6A\n0x9EEC\t0xED6B\n0x9EED\t0xED6C\n0x9EEE\t0xED6D\n0x9EEF\t0xED6E\n0x9EF0\t0xED6F\n0x9EF1\t0xED70\n0x9EF2\t0xED71\n0x9EF3\t0xED72\n0x9EF4\t0xED73\n0x9EF5\t0xED74\n0x9EF6\t0xED75\n0x9EF7\t0xED76\n0x9EF8\t0xED77\n0x9EF9\t0xED78\n0x9EFA\t0xED79\n0x9EFB\t0xED7A\n0x9EFC\t0xED7B\n0x9EFD\t0xED7C\n0x9EFE\t0xED7D\n0x9F40\t0xED7E\n0x9F41\t0xED7F\n0x9F42\t0xED80\n0x9F43\t0xED81\n0x9F44\t0xED82\n0x9F45\t0xED83\n0x9F46\t0xED84\n0x9F47\t0xED85\n0x9F48\t0xED86\n0x9F49\t0xED87\n0x9F4A\t0xED88\n0x9F4B\t0xED89\n0x9F4C\t0xED8A\n0x9F4D\t0xED8B\n0x9F4E\t0xED8C\n0x9F4F\t0xED8D\n0x9F50\t0xED8E\n0x9F51\t0xED8F\n0x9F52\t0xED90\n0x9F53\t0xED91\n0x9F54\t0xED92\n0x9F55\t0xED93\n0x9F56\t0xED94\n0x9F57\t0xED95\n0x9F58\t0xED96\n0x9F59\t0xED97\n0x9F5A\t0xED98\n0x9F5B\t0xED99\n0x9F5C\t0xED9A\n0x9F5D\t0xED9B\n0x9F5E\t0xED9C\n0x9F5F\t0xED9D\n0x9F60\t0xED9E\n0x9F61\t0xED9F\n0x9F62\t0xEDA0\n0x9F63\t0xEDA1\n0x9F64\t0xEDA2\n0x9F65\t0xEDA3\n0x9F66\t0xEDA4\n0x9F67\t0xEDA5\n0x9F68\t0xEDA6\n0x9F69\t0xEDA7\n0x9F6A\t0xEDA8\n0x9F6B\t0xEDA9\n0x9F6C\t0xEDAA\n0x9F6D\t0xEDAB\n0x9F6E\t0xEDAC\n0x9F6F\t0xEDAD\n0x9F70\t0xEDAE\n0x9F71\t0xEDAF\n0x9F72\t0xEDB0\n0x9F73\t0xEDB1\n0x9F74\t0xEDB2\n0x9F75\t0xEDB3\n0x9F76\t0xEDB4\n0x9F77\t0xEDB5\n0x9F78\t0xEDB6\n0x9F79\t0xEDB7\n0x9F7A\t0xEDB8\n0x9F7B\t0xEDB9\n0x9F7C\t0xEDBA\n0x9F7D\t0xEDBB\n0x9F7E\t0xEDBC\n0x9FA1\t0xEDBD\n0x9FA2\t0xEDBE\n0x9FA3\t0xEDBF\n0x9FA4\t0xEDC0\n0x9FA5\t0xEDC1\n0x9FA6\t0xEDC2\n0x9FA7\t0xEDC3\n0x9FA8\t0xEDC4\n0x9FA9\t0xEDC5\n0x9FAA\t0xEDC6\n0x9FAB\t0xEDC7\n0x9FAC\t0xEDC8\n0x9FAD\t0xEDC9\n0x9FAE\t0xEDCA\n0x9FAF\t0xEDCB\n0x9FB0\t0xEDCC\n0x9FB1\t0xEDCD\n0x9FB2\t0xEDCE\n0x9FB3\t0xEDCF\n0x9FB4\t0xEDD0\n0x9FB5\t0xEDD1\n0x9FB6\t0xEDD2\n0x9FB7\t0xEDD3\n0x9FB8\t0xEDD4\n0x9FB9\t0xEDD5\n0x9FBA\t0xEDD6\n0x9FBB\t0xEDD7\n0x9FBC\t0xEDD8\n0x9FBD\t0xEDD9\n0x9FBE\t0xEDDA\n0x9FBF\t0xEDDB\n0x9FC0\t0xEDDC\n0x9FC1\t0xEDDD\n0x9FC2\t0xEDDE\n0x9FC3\t0xEDDF\n0x9FC4\t0xEDE0\n0x9FC5\t0xEDE1\n0x9FC6\t0xEDE2\n0x9FC7\t0xEDE3\n0x9FC8\t0xEDE4\n0x9FC9\t0xEDE5\n0x9FCA\t0xEDE6\n0x9FCB\t0xEDE7\n0x9FCC\t0xEDE8\n0x9FCD\t0xEDE9\n0x9FCE\t0xEDEA\n0x9FCF\t0xEDEB\n0x9FD0\t0xEDEC\n0x9FD1\t0xEDED\n0x9FD2\t0xEDEE\n0x9FD3\t0xEDEF\n0x9FD4\t0xEDF0\n0x9FD5\t0xEDF1\n0x9FD6\t0xEDF2\n0x9FD7\t0xEDF3\n0x9FD8\t0xEDF4\n0x9FD9\t0xEDF5\n0x9FDA\t0xEDF6\n0x9FDB\t0xEDF7\n0x9FDC\t0xEDF8\n0x9FDD\t0xEDF9\n0x9FDE\t0xEDFA\n0x9FDF\t0xEDFB\n0x9FE0\t0xEDFC\n0x9FE1\t0xEDFD\n0x9FE2\t0xEDFE\n0x9FE3\t0xEDFF\n0x9FE4\t0xEE00\n0x9FE5\t0xEE01\n0x9FE6\t0xEE02\n0x9FE7\t0xEE03\n0x9FE8\t0xEE04\n0x9FE9\t0xEE05\n0x9FEA\t0xEE06\n0x9FEB\t0xEE07\n0x9FEC\t0xEE08\n0x9FED\t0xEE09\n0x9FEE\t0xEE0A\n0x9FEF\t0xEE0B\n0x9FF0\t0xEE0C\n0x9FF1\t0xEE0D\n0x9FF2\t0xEE0E\n0x9FF3\t0xEE0F\n0x9FF4\t0xEE10\n0x9FF5\t0xEE11\n0x9FF6\t0xEE12\n0x9FF7\t0xEE13\n0x9FF8\t0xEE14\n0x9FF9\t0xEE15\n0x9FFA\t0xEE16\n0x9FFB\t0xEE17\n0x9FFC\t0xEE18\n0x9FFD\t0xEE19\n0x9FFE\t0xEE1A\n0xA040\t0xEE1B\n0xA041\t0xEE1C\n0xA042\t0xEE1D\n0xA043\t0xEE1E\n0xA044\t0xEE1F\n0xA045\t0xEE20\n0xA046\t0xEE21\n0xA047\t0xEE22\n0xA048\t0xEE23\n0xA049\t0xEE24\n0xA04A\t0xEE25\n0xA04B\t0xEE26\n0xA04C\t0xEE27\n0xA04D\t0xEE28\n0xA04E\t0xEE29\n0xA04F\t0xEE2A\n0xA050\t0xEE2B\n0xA051\t0xEE2C\n0xA052\t0xEE2D\n0xA053\t0xEE2E\n0xA054\t0xEE2F\n0xA055\t0xEE30\n0xA056\t0xEE31\n0xA057\t0xEE32\n0xA058\t0xEE33\n0xA059\t0xEE34\n0xA05A\t0xEE35\n0xA05B\t0xEE36\n0xA05C\t0xEE37\n0xA05D\t0xEE38\n0xA05E\t0xEE39\n0xA05F\t0xEE3A\n0xA060\t0xEE3B\n0xA061\t0xEE3C\n0xA062\t0xEE3D\n0xA063\t0xEE3E\n0xA064\t0xEE3F\n0xA065\t0xEE40\n0xA066\t0xEE41\n0xA067\t0xEE42\n0xA068\t0xEE43\n0xA069\t0xEE44\n0xA06A\t0xEE45\n0xA06B\t0xEE46\n0xA06C\t0xEE47\n0xA06D\t0xEE48\n0xA06E\t0xEE49\n0xA06F\t0xEE4A\n0xA070\t0xEE4B\n0xA071\t0xEE4C\n0xA072\t0xEE4D\n0xA073\t0xEE4E\n0xA074\t0xEE4F\n0xA075\t0xEE50\n0xA076\t0xEE51\n0xA077\t0xEE52\n0xA078\t0xEE53\n0xA079\t0xEE54\n0xA07A\t0xEE55\n0xA07B\t0xEE56\n0xA07C\t0xEE57\n0xA07D\t0xEE58\n0xA07E\t0xEE59\n0xA0A1\t0xEE5A\n0xA0A2\t0xEE5B\n0xA0A3\t0xEE5C\n0xA0A4\t0xEE5D\n0xA0A5\t0xEE5E\n0xA0A6\t0xEE5F\n0xA0A7\t0xEE60\n0xA0A8\t0xEE61\n0xA0A9\t0xEE62\n0xA0AA\t0xEE63\n0xA0AB\t0xEE64\n0xA0AC\t0xEE65\n0xA0AD\t0xEE66\n0xA0AE\t0xEE67\n0xA0AF\t0xEE68\n0xA0B0\t0xEE69\n0xA0B1\t0xEE6A\n0xA0B2\t0xEE6B\n0xA0B3\t0xEE6C\n0xA0B4\t0xEE6D\n0xA0B5\t0xEE6E\n0xA0B6\t0xEE6F\n0xA0B7\t0xEE70\n0xA0B8\t0xEE71\n0xA0B9\t0xEE72\n0xA0BA\t0xEE73\n0xA0BB\t0xEE74\n0xA0BC\t0xEE75\n0xA0BD\t0xEE76\n0xA0BE\t0xEE77\n0xA0BF\t0xEE78\n0xA0C0\t0xEE79\n0xA0C1\t0xEE7A\n0xA0C2\t0xEE7B\n0xA0C3\t0xEE7C\n0xA0C4\t0xEE7D\n0xA0C5\t0xEE7E\n0xA0C6\t0xEE7F\n0xA0C7\t0xEE80\n0xA0C8\t0xEE81\n0xA0C9\t0xEE82\n0xA0CA\t0xEE83\n0xA0CB\t0xEE84\n0xA0CC\t0xEE85\n0xA0CD\t0xEE86\n0xA0CE\t0xEE87\n0xA0CF\t0xEE88\n0xA0D0\t0xEE89\n0xA0D1\t0xEE8A\n0xA0D2\t0xEE8B\n0xA0D3\t0xEE8C\n0xA0D4\t0xEE8D\n0xA0D5\t0xEE8E\n0xA0D6\t0xEE8F\n0xA0D7\t0xEE90\n0xA0D8\t0xEE91\n0xA0D9\t0xEE92\n0xA0DA\t0xEE93\n0xA0DB\t0xEE94\n0xA0DC\t0xEE95\n0xA0DD\t0xEE96\n0xA0DE\t0xEE97\n0xA0DF\t0xEE98\n0xA0E0\t0xEE99\n0xA0E1\t0xEE9A\n0xA0E2\t0xEE9B\n0xA0E3\t0xEE9C\n0xA0E4\t0xEE9D\n0xA0E5\t0xEE9E\n0xA0E6\t0xEE9F\n0xA0E7\t0xEEA0\n0xA0E8\t0xEEA1\n0xA0E9\t0xEEA2\n0xA0EA\t0xEEA3\n0xA0EB\t0xEEA4\n0xA0EC\t0xEEA5\n0xA0ED\t0xEEA6\n0xA0EE\t0xEEA7\n0xA0EF\t0xEEA8\n0xA0F0\t0xEEA9\n0xA0F1\t0xEEAA\n0xA0F2\t0xEEAB\n0xA0F3\t0xEEAC\n0xA0F4\t0xEEAD\n0xA0F5\t0xEEAE\n0xA0F6\t0xEEAF\n0xA0F7\t0xEEB0\n0xA0F8\t0xEEB1\n0xA0F9\t0xEEB2\n0xA0FA\t0xEEB3\n0xA0FB\t0xEEB4\n0xA0FC\t0xEEB5\n0xA0FD\t0xEEB6\n0xA0FE\t0xEEB7\n0xA140\t0x3000\n0xA141\t0xFF0C\n0xA142\t0x3001\n0xA143\t0x3002\n0xA144\t0xFF0E\n0xA145\t0x2027\n0xA146\t0xFF1B\n0xA147\t0xFF1A\n0xA148\t0xFF1F\n0xA149\t0xFF01\n0xA14A\t0xFE30\n0xA14B\t0x2026\n0xA14C\t0x2025\n0xA14D\t0xFE50\n0xA14E\t0xFE51\n0xA14F\t0xFE52\n0xA150\t0x00B7\n0xA151\t0xFE54\n0xA152\t0xFE55\n0xA153\t0xFE56\n0xA154\t0xFE57\n0xA155\t0xFF5C\n0xA156\t0x2015\n0xA157\t0xFE31\n0xA158\t0x2014\n0xA159\t0xFE33\n0xA15A\t0x2574\n0xA15B\t0xFE34\n0xA15C\t0xFE4F\n0xA15D\t0xFF08\n0xA15E\t0xFF09\n0xA15F\t0xFE35\n0xA160\t0xFE36\n0xA161\t0xFF5B\n0xA162\t0xFF5D\n0xA163\t0xFE37\n0xA164\t0xFE38\n0xA165\t0x3014\n0xA166\t0x3015\n0xA167\t0xFE39\n0xA168\t0xFE3A\n0xA169\t0x3010\n0xA16A\t0x3011\n0xA16B\t0xFE3B\n0xA16C\t0xFE3C\n0xA16D\t0x300A\n0xA16E\t0x300B\n0xA16F\t0xFE3D\n0xA170\t0xFE3E\n0xA171\t0x3008\n0xA172\t0x3009\n0xA173\t0xFE3F\n0xA174\t0xFE40\n0xA175\t0x300C\n0xA176\t0x300D\n0xA177\t0xFE41\n0xA178\t0xFE42\n0xA179\t0x300E\n0xA17A\t0x300F\n0xA17B\t0xFE43\n0xA17C\t0xFE44\n0xA17D\t0xFE59\n0xA17E\t0xFE5A\n0xA1A1\t0xFE5B\n0xA1A2\t0xFE5C\n0xA1A3\t0xFE5D\n0xA1A4\t0xFE5E\n0xA1A5\t0x2018\n0xA1A6\t0x2019\n0xA1A7\t0x201C\n0xA1A8\t0x201D\n0xA1A9\t0x301D\n0xA1AA\t0x301E\n0xA1AB\t0x2035\n0xA1AC\t0x2032\n0xA1AD\t0xFF03\n0xA1AE\t0xFF06\n0xA1AF\t0xFF0A\n0xA1B0\t0x203B\n0xA1B1\t0x00A7\n0xA1B2\t0x3003\n0xA1B3\t0x25CB\n0xA1B4\t0x25CF\n0xA1B5\t0x25B3\n0xA1B6\t0x25B2\n0xA1B7\t0x25CE\n0xA1B8\t0x2606\n0xA1B9\t0x2605\n0xA1BA\t0x25C7\n0xA1BB\t0x25C6\n0xA1BC\t0x25A1\n0xA1BD\t0x25A0\n0xA1BE\t0x25BD\n0xA1BF\t0x25BC\n0xA1C0\t0x32A3\n0xA1C1\t0x2105\n0xA1C2\t0x203E\n0xA1C3\t0xFFE3\n0xA1C4\t0xFF3F\n0xA1C5\t0x02CD\n0xA1C6\t0xFE49\n0xA1C7\t0xFE4A\n0xA1C8\t0xFE4D\n0xA1C9\t0xFE4E\n0xA1CA\t0xFE4B\n0xA1CB\t0xFE4C\n0xA1CC\t0xFE5F\n0xA1CD\t0xFE60\n0xA1CE\t0xFE61\n0xA1CF\t0xFF0B\n0xA1D0\t0xFF0D\n0xA1D1\t0x00D7\n0xA1D2\t0x00F7\n0xA1D3\t0x00B1\n0xA1D4\t0x221A\n0xA1D5\t0xFF1C\n0xA1D6\t0xFF1E\n0xA1D7\t0xFF1D\n0xA1D8\t0x2266\n0xA1D9\t0x2267\n0xA1DA\t0x2260\n0xA1DB\t0x221E\n0xA1DC\t0x2252\n0xA1DD\t0x2261\n0xA1DE\t0xFE62\n0xA1DF\t0xFE63\n0xA1E0\t0xFE64\n0xA1E1\t0xFE65\n0xA1E2\t0xFE66\n0xA1E3\t0xFF5E\n0xA1E4\t0x2229\n0xA1E5\t0x222A\n0xA1E6\t0x22A5\n0xA1E7\t0x2220\n0xA1E8\t0x221F\n0xA1E9\t0x22BF\n0xA1EA\t0x33D2\n0xA1EB\t0x33D1\n0xA1EC\t0x222B\n0xA1ED\t0x222E\n0xA1EE\t0x2235\n0xA1EF\t0x2234\n0xA1F0\t0x2640\n0xA1F1\t0x2642\n0xA1F2\t0x2295\n0xA1F3\t0x2299\n0xA1F4\t0x2191\n0xA1F5\t0x2193\n0xA1F6\t0x2190\n0xA1F7\t0x2192\n0xA1F8\t0x2196\n0xA1F9\t0x2197\n0xA1FA\t0x2199\n0xA1FB\t0x2198\n0xA1FC\t0x2225\n0xA1FD\t0x2223\n0xA1FE\t0xFF0F\n0xA240\t0xFF3C\n0xA241\t0x2215\n0xA242\t0xFE68\n0xA243\t0xFF04\n0xA244\t0xFFE5\n0xA245\t0x3012\n0xA246\t0xFFE0\n0xA247\t0xFFE1\n0xA248\t0xFF05\n0xA249\t0xFF20\n0xA24A\t0x2103\n0xA24B\t0x2109\n0xA24C\t0xFE69\n0xA24D\t0xFE6A\n0xA24E\t0xFE6B\n0xA24F\t0x33D5\n0xA250\t0x339C\n0xA251\t0x339D\n0xA252\t0x339E\n0xA253\t0x33CE\n0xA254\t0x33A1\n0xA255\t0x338E\n0xA256\t0x338F\n0xA257\t0x33C4\n0xA258\t0x00B0\n0xA259\t0x5159\n0xA25A\t0x515B\n0xA25B\t0x515E\n0xA25C\t0x515D\n0xA25D\t0x5161\n0xA25E\t0x5163\n0xA25F\t0x55E7\n0xA260\t0x74E9\n0xA261\t0x7CCE\n0xA262\t0x2581\n0xA263\t0x2582\n0xA264\t0x2583\n0xA265\t0x2584\n0xA266\t0x2585\n0xA267\t0x2586\n0xA268\t0x2587\n0xA269\t0x2588\n0xA26A\t0x258F\n0xA26B\t0x258E\n0xA26C\t0x258D\n0xA26D\t0x258C\n0xA26E\t0x258B\n0xA26F\t0x258A\n0xA270\t0x2589\n0xA271\t0x253C\n0xA272\t0x2534\n0xA273\t0x252C\n0xA274\t0x2524\n0xA275\t0x251C\n0xA276\t0x2594\n0xA277\t0x2500\n0xA278\t0x2502\n0xA279\t0x2595\n0xA27A\t0x250C\n0xA27B\t0x2510\n0xA27C\t0x2514\n0xA27D\t0x2518\n0xA27E\t0x256D\n0xA2A1\t0x256E\n0xA2A2\t0x2570\n0xA2A3\t0x256F\n0xA2A4\t0x2501\n0xA2A5\t0x251D\n0xA2A6\t0x253F\n0xA2A7\t0x2525\n0xA2A8\t0x25E2\n0xA2A9\t0x25E3\n0xA2AA\t0x25E5\n0xA2AB\t0x25E4\n0xA2AC\t0x2571\n0xA2AD\t0x2572\n0xA2AE\t0x2573\n0xA2AF\t0xFF10\n0xA2B0\t0xFF11\n0xA2B1\t0xFF12\n0xA2B2\t0xFF13\n0xA2B3\t0xFF14\n0xA2B4\t0xFF15\n0xA2B5\t0xFF16\n0xA2B6\t0xFF17\n0xA2B7\t0xFF18\n0xA2B8\t0xFF19\n0xA2B9\t0x2160\n0xA2BA\t0x2161\n0xA2BB\t0x2162\n0xA2BC\t0x2163\n0xA2BD\t0x2164\n0xA2BE\t0x2165\n0xA2BF\t0x2166\n0xA2C0\t0x2167\n0xA2C1\t0x2168\n0xA2C2\t0x2169\n0xA2C3\t0x3021\n0xA2C4\t0x3022\n0xA2C5\t0x3023\n0xA2C6\t0x3024\n0xA2C7\t0x3025\n0xA2C8\t0x3026\n0xA2C9\t0x3027\n0xA2CA\t0x3028\n0xA2CB\t0x3029\n0xA2CC\t0x3038\n0xA2CD\t0x3039\n0xA2CE\t0x303A\n0xA2CF\t0xFF21\n0xA2D0\t0xFF22\n0xA2D1\t0xFF23\n0xA2D2\t0xFF24\n0xA2D3\t0xFF25\n0xA2D4\t0xFF26\n0xA2D5\t0xFF27\n0xA2D6\t0xFF28\n0xA2D7\t0xFF29\n0xA2D8\t0xFF2A\n0xA2D9\t0xFF2B\n0xA2DA\t0xFF2C\n0xA2DB\t0xFF2D\n0xA2DC\t0xFF2E\n0xA2DD\t0xFF2F\n0xA2DE\t0xFF30\n0xA2DF\t0xFF31\n0xA2E0\t0xFF32\n0xA2E1\t0xFF33\n0xA2E2\t0xFF34\n0xA2E3\t0xFF35\n0xA2E4\t0xFF36\n0xA2E5\t0xFF37\n0xA2E6\t0xFF38\n0xA2E7\t0xFF39\n0xA2E8\t0xFF3A\n0xA2E9\t0xFF41\n0xA2EA\t0xFF42\n0xA2EB\t0xFF43\n0xA2EC\t0xFF44\n0xA2ED\t0xFF45\n0xA2EE\t0xFF46\n0xA2EF\t0xFF47\n0xA2F0\t0xFF48\n0xA2F1\t0xFF49\n0xA2F2\t0xFF4A\n0xA2F3\t0xFF4B\n0xA2F4\t0xFF4C\n0xA2F5\t0xFF4D\n0xA2F6\t0xFF4E\n0xA2F7\t0xFF4F\n0xA2F8\t0xFF50\n0xA2F9\t0xFF51\n0xA2FA\t0xFF52\n0xA2FB\t0xFF53\n0xA2FC\t0xFF54\n0xA2FD\t0xFF55\n0xA2FE\t0xFF56\n0xA340\t0xFF57\n0xA341\t0xFF58\n0xA342\t0xFF59\n0xA343\t0xFF5A\n0xA344\t0x0391\n0xA345\t0x0392\n0xA346\t0x0393\n0xA347\t0x0394\n0xA348\t0x0395\n0xA349\t0x0396\n0xA34A\t0x0397\n0xA34B\t0x0398\n0xA34C\t0x0399\n0xA34D\t0x039A\n0xA34E\t0x039B\n0xA34F\t0x039C\n0xA350\t0x039D\n0xA351\t0x039E\n0xA352\t0x039F\n0xA353\t0x03A0\n0xA354\t0x03A1\n0xA355\t0x03A3\n0xA356\t0x03A4\n0xA357\t0x03A5\n0xA358\t0x03A6\n0xA359\t0x03A7\n0xA35A\t0x03A8\n0xA35B\t0x03A9\n0xA35C\t0x03B1\n0xA35D\t0x03B2\n0xA35E\t0x03B3\n0xA35F\t0x03B4\n0xA360\t0x03B5\n0xA361\t0x03B6\n0xA362\t0x03B7\n0xA363\t0x03B8\n0xA364\t0x03B9\n0xA365\t0x03BA\n0xA366\t0x03BB\n0xA367\t0x03BC\n0xA368\t0x03BD\n0xA369\t0x03BE\n0xA36A\t0x03BF\n0xA36B\t0x03C0\n0xA36C\t0x03C1\n0xA36D\t0x03C3\n0xA36E\t0x03C4\n0xA36F\t0x03C5\n0xA370\t0x03C6\n0xA371\t0x03C7\n0xA372\t0x03C8\n0xA373\t0x03C9\n0xA374\t0x3105\n0xA375\t0x3106\n0xA376\t0x3107\n0xA377\t0x3108\n0xA378\t0x3109\n0xA379\t0x310A\n0xA37A\t0x310B\n0xA37B\t0x310C\n0xA37C\t0x310D\n0xA37D\t0x310E\n0xA37E\t0x310F\n0xA3A1\t0x3110\n0xA3A2\t0x3111\n0xA3A3\t0x3112\n0xA3A4\t0x3113\n0xA3A5\t0x3114\n0xA3A6\t0x3115\n0xA3A7\t0x3116\n0xA3A8\t0x3117\n0xA3A9\t0x3118\n0xA3AA\t0x3119\n0xA3AB\t0x311A\n0xA3AC\t0x311B\n0xA3AD\t0x311C\n0xA3AE\t0x311D\n0xA3AF\t0x311E\n0xA3B0\t0x311F\n0xA3B1\t0x3120\n0xA3B2\t0x3121\n0xA3B3\t0x3122\n0xA3B4\t0x3123\n0xA3B5\t0x3124\n0xA3B6\t0x3125\n0xA3B7\t0x3126\n0xA3B8\t0x3127\n0xA3B9\t0x3128\n0xA3BA\t0x3129\n0xA3BB\t0x02D9\n0xA3BC\t0x02C9\n0xA3BD\t0x02CA\n0xA3BE\t0x02C7\n0xA3BF\t0x02CB\n0xA3C0\t0x2400\n0xA3C1\t0x2401\n0xA3C2\t0x2402\n0xA3C3\t0x2403\n0xA3C4\t0x2404\n0xA3C5\t0x2405\n0xA3C6\t0x2406\n0xA3C7\t0x2407\n0xA3C8\t0x2408\n0xA3C9\t0x2409\n0xA3CA\t0x240A\n0xA3CB\t0x240B\n0xA3CC\t0x240C\n0xA3CD\t0x240D\n0xA3CE\t0x240E\n0xA3CF\t0x240F\n0xA3D0\t0x2410\n0xA3D1\t0x2411\n0xA3D2\t0x2412\n0xA3D3\t0x2413\n0xA3D4\t0x2414\n0xA3D5\t0x2415\n0xA3D6\t0x2416\n0xA3D7\t0x2417\n0xA3D8\t0x2418\n0xA3D9\t0x2419\n0xA3DA\t0x241A\n0xA3DB\t0x241B\n0xA3DC\t0x241C\n0xA3DD\t0x241D\n0xA3DE\t0x241E\n0xA3DF\t0x241F\n0xA3E0\t0x2421\n0xA3E1\t0x20AC\n0xA440\t0x4E00\n0xA441\t0x4E59\n0xA442\t0x4E01\n0xA443\t0x4E03\n0xA444\t0x4E43\n0xA445\t0x4E5D\n0xA446\t0x4E86\n0xA447\t0x4E8C\n0xA448\t0x4EBA\n0xA449\t0x513F\n0xA44A\t0x5165\n0xA44B\t0x516B\n0xA44C\t0x51E0\n0xA44D\t0x5200\n0xA44E\t0x5201\n0xA44F\t0x529B\n0xA450\t0x5315\n0xA451\t0x5341\n0xA452\t0x535C\n0xA453\t0x53C8\n0xA454\t0x4E09\n0xA455\t0x4E0B\n0xA456\t0x4E08\n0xA457\t0x4E0A\n0xA458\t0x4E2B\n0xA459\t0x4E38\n0xA45A\t0x51E1\n0xA45B\t0x4E45\n0xA45C\t0x4E48\n0xA45D\t0x4E5F\n0xA45E\t0x4E5E\n0xA45F\t0x4E8E\n0xA460\t0x4EA1\n0xA461\t0x5140\n0xA462\t0x5203\n0xA463\t0x52FA\n0xA464\t0x5343\n0xA465\t0x53C9\n0xA466\t0x53E3\n0xA467\t0x571F\n0xA468\t0x58EB\n0xA469\t0x5915\n0xA46A\t0x5927\n0xA46B\t0x5973\n0xA46C\t0x5B50\n0xA46D\t0x5B51\n0xA46E\t0x5B53\n0xA46F\t0x5BF8\n0xA470\t0x5C0F\n0xA471\t0x5C22\n0xA472\t0x5C38\n0xA473\t0x5C71\n0xA474\t0x5DDD\n0xA475\t0x5DE5\n0xA476\t0x5DF1\n0xA477\t0x5DF2\n0xA478\t0x5DF3\n0xA479\t0x5DFE\n0xA47A\t0x5E72\n0xA47B\t0x5EFE\n0xA47C\t0x5F0B\n0xA47D\t0x5F13\n0xA47E\t0x624D\n0xA4A1\t0x4E11\n0xA4A2\t0x4E10\n0xA4A3\t0x4E0D\n0xA4A4\t0x4E2D\n0xA4A5\t0x4E30\n0xA4A6\t0x4E39\n0xA4A7\t0x4E4B\n0xA4A8\t0x5C39\n0xA4A9\t0x4E88\n0xA4AA\t0x4E91\n0xA4AB\t0x4E95\n0xA4AC\t0x4E92\n0xA4AD\t0x4E94\n0xA4AE\t0x4EA2\n0xA4AF\t0x4EC1\n0xA4B0\t0x4EC0\n0xA4B1\t0x4EC3\n0xA4B2\t0x4EC6\n0xA4B3\t0x4EC7\n0xA4B4\t0x4ECD\n0xA4B5\t0x4ECA\n0xA4B6\t0x4ECB\n0xA4B7\t0x4EC4\n0xA4B8\t0x5143\n0xA4B9\t0x5141\n0xA4BA\t0x5167\n0xA4BB\t0x516D\n0xA4BC\t0x516E\n0xA4BD\t0x516C\n0xA4BE\t0x5197\n0xA4BF\t0x51F6\n0xA4C0\t0x5206\n0xA4C1\t0x5207\n0xA4C2\t0x5208\n0xA4C3\t0x52FB\n0xA4C4\t0x52FE\n0xA4C5\t0x52FF\n0xA4C6\t0x5316\n0xA4C7\t0x5339\n0xA4C8\t0x5348\n0xA4C9\t0x5347\n0xA4CA\t0x5345\n0xA4CB\t0x535E\n0xA4CC\t0x5384\n0xA4CD\t0x53CB\n0xA4CE\t0x53CA\n0xA4CF\t0x53CD\n0xA4D0\t0x58EC\n0xA4D1\t0x5929\n0xA4D2\t0x592B\n0xA4D3\t0x592A\n0xA4D4\t0x592D\n0xA4D5\t0x5B54\n0xA4D6\t0x5C11\n0xA4D7\t0x5C24\n0xA4D8\t0x5C3A\n0xA4D9\t0x5C6F\n0xA4DA\t0x5DF4\n0xA4DB\t0x5E7B\n0xA4DC\t0x5EFF\n0xA4DD\t0x5F14\n0xA4DE\t0x5F15\n0xA4DF\t0x5FC3\n0xA4E0\t0x6208\n0xA4E1\t0x6236\n0xA4E2\t0x624B\n0xA4E3\t0x624E\n0xA4E4\t0x652F\n0xA4E5\t0x6587\n0xA4E6\t0x6597\n0xA4E7\t0x65A4\n0xA4E8\t0x65B9\n0xA4E9\t0x65E5\n0xA4EA\t0x66F0\n0xA4EB\t0x6708\n0xA4EC\t0x6728\n0xA4ED\t0x6B20\n0xA4EE\t0x6B62\n0xA4EF\t0x6B79\n0xA4F0\t0x6BCB\n0xA4F1\t0x6BD4\n0xA4F2\t0x6BDB\n0xA4F3\t0x6C0F\n0xA4F4\t0x6C34\n0xA4F5\t0x706B\n0xA4F6\t0x722A\n0xA4F7\t0x7236\n0xA4F8\t0x723B\n0xA4F9\t0x7247\n0xA4FA\t0x7259\n0xA4FB\t0x725B\n0xA4FC\t0x72AC\n0xA4FD\t0x738B\n0xA4FE\t0x4E19\n0xA540\t0x4E16\n0xA541\t0x4E15\n0xA542\t0x4E14\n0xA543\t0x4E18\n0xA544\t0x4E3B\n0xA545\t0x4E4D\n0xA546\t0x4E4F\n0xA547\t0x4E4E\n0xA548\t0x4EE5\n0xA549\t0x4ED8\n0xA54A\t0x4ED4\n0xA54B\t0x4ED5\n0xA54C\t0x4ED6\n0xA54D\t0x4ED7\n0xA54E\t0x4EE3\n0xA54F\t0x4EE4\n0xA550\t0x4ED9\n0xA551\t0x4EDE\n0xA552\t0x5145\n0xA553\t0x5144\n0xA554\t0x5189\n0xA555\t0x518A\n0xA556\t0x51AC\n0xA557\t0x51F9\n0xA558\t0x51FA\n0xA559\t0x51F8\n0xA55A\t0x520A\n0xA55B\t0x52A0\n0xA55C\t0x529F\n0xA55D\t0x5305\n0xA55E\t0x5306\n0xA55F\t0x5317\n0xA560\t0x531D\n0xA561\t0x4EDF\n0xA562\t0x534A\n0xA563\t0x5349\n0xA564\t0x5361\n0xA565\t0x5360\n0xA566\t0x536F\n0xA567\t0x536E\n0xA568\t0x53BB\n0xA569\t0x53EF\n0xA56A\t0x53E4\n0xA56B\t0x53F3\n0xA56C\t0x53EC\n0xA56D\t0x53EE\n0xA56E\t0x53E9\n0xA56F\t0x53E8\n0xA570\t0x53FC\n0xA571\t0x53F8\n0xA572\t0x53F5\n0xA573\t0x53EB\n0xA574\t0x53E6\n0xA575\t0x53EA\n0xA576\t0x53F2\n0xA577\t0x53F1\n0xA578\t0x53F0\n0xA579\t0x53E5\n0xA57A\t0x53ED\n0xA57B\t0x53FB\n0xA57C\t0x56DB\n0xA57D\t0x56DA\n0xA57E\t0x5916\n0xA5A1\t0x592E\n0xA5A2\t0x5931\n0xA5A3\t0x5974\n0xA5A4\t0x5976\n0xA5A5\t0x5B55\n0xA5A6\t0x5B83\n0xA5A7\t0x5C3C\n0xA5A8\t0x5DE8\n0xA5A9\t0x5DE7\n0xA5AA\t0x5DE6\n0xA5AB\t0x5E02\n0xA5AC\t0x5E03\n0xA5AD\t0x5E73\n0xA5AE\t0x5E7C\n0xA5AF\t0x5F01\n0xA5B0\t0x5F18\n0xA5B1\t0x5F17\n0xA5B2\t0x5FC5\n0xA5B3\t0x620A\n0xA5B4\t0x6253\n0xA5B5\t0x6254\n0xA5B6\t0x6252\n0xA5B7\t0x6251\n0xA5B8\t0x65A5\n0xA5B9\t0x65E6\n0xA5BA\t0x672E\n0xA5BB\t0x672C\n0xA5BC\t0x672A\n0xA5BD\t0x672B\n0xA5BE\t0x672D\n0xA5BF\t0x6B63\n0xA5C0\t0x6BCD\n0xA5C1\t0x6C11\n0xA5C2\t0x6C10\n0xA5C3\t0x6C38\n0xA5C4\t0x6C41\n0xA5C5\t0x6C40\n0xA5C6\t0x6C3E\n0xA5C7\t0x72AF\n0xA5C8\t0x7384\n0xA5C9\t0x7389\n0xA5CA\t0x74DC\n0xA5CB\t0x74E6\n0xA5CC\t0x7518\n0xA5CD\t0x751F\n0xA5CE\t0x7528\n0xA5CF\t0x7529\n0xA5D0\t0x7530\n0xA5D1\t0x7531\n0xA5D2\t0x7532\n0xA5D3\t0x7533\n0xA5D4\t0x758B\n0xA5D5\t0x767D\n0xA5D6\t0x76AE\n0xA5D7\t0x76BF\n0xA5D8\t0x76EE\n0xA5D9\t0x77DB\n0xA5DA\t0x77E2\n0xA5DB\t0x77F3\n0xA5DC\t0x793A\n0xA5DD\t0x79BE\n0xA5DE\t0x7A74\n0xA5DF\t0x7ACB\n0xA5E0\t0x4E1E\n0xA5E1\t0x4E1F\n0xA5E2\t0x4E52\n0xA5E3\t0x4E53\n0xA5E4\t0x4E69\n0xA5E5\t0x4E99\n0xA5E6\t0x4EA4\n0xA5E7\t0x4EA6\n0xA5E8\t0x4EA5\n0xA5E9\t0x4EFF\n0xA5EA\t0x4F09\n0xA5EB\t0x4F19\n0xA5EC\t0x4F0A\n0xA5ED\t0x4F15\n0xA5EE\t0x4F0D\n0xA5EF\t0x4F10\n0xA5F0\t0x4F11\n0xA5F1\t0x4F0F\n0xA5F2\t0x4EF2\n0xA5F3\t0x4EF6\n0xA5F4\t0x4EFB\n0xA5F5\t0x4EF0\n0xA5F6\t0x4EF3\n0xA5F7\t0x4EFD\n0xA5F8\t0x4F01\n0xA5F9\t0x4F0B\n0xA5FA\t0x5149\n0xA5FB\t0x5147\n0xA5FC\t0x5146\n0xA5FD\t0x5148\n0xA5FE\t0x5168\n0xA640\t0x5171\n0xA641\t0x518D\n0xA642\t0x51B0\n0xA643\t0x5217\n0xA644\t0x5211\n0xA645\t0x5212\n0xA646\t0x520E\n0xA647\t0x5216\n0xA648\t0x52A3\n0xA649\t0x5308\n0xA64A\t0x5321\n0xA64B\t0x5320\n0xA64C\t0x5370\n0xA64D\t0x5371\n0xA64E\t0x5409\n0xA64F\t0x540F\n0xA650\t0x540C\n0xA651\t0x540A\n0xA652\t0x5410\n0xA653\t0x5401\n0xA654\t0x540B\n0xA655\t0x5404\n0xA656\t0x5411\n0xA657\t0x540D\n0xA658\t0x5408\n0xA659\t0x5403\n0xA65A\t0x540E\n0xA65B\t0x5406\n0xA65C\t0x5412\n0xA65D\t0x56E0\n0xA65E\t0x56DE\n0xA65F\t0x56DD\n0xA660\t0x5733\n0xA661\t0x5730\n0xA662\t0x5728\n0xA663\t0x572D\n0xA664\t0x572C\n0xA665\t0x572F\n0xA666\t0x5729\n0xA667\t0x5919\n0xA668\t0x591A\n0xA669\t0x5937\n0xA66A\t0x5938\n0xA66B\t0x5984\n0xA66C\t0x5978\n0xA66D\t0x5983\n0xA66E\t0x597D\n0xA66F\t0x5979\n0xA670\t0x5982\n0xA671\t0x5981\n0xA672\t0x5B57\n0xA673\t0x5B58\n0xA674\t0x5B87\n0xA675\t0x5B88\n0xA676\t0x5B85\n0xA677\t0x5B89\n0xA678\t0x5BFA\n0xA679\t0x5C16\n0xA67A\t0x5C79\n0xA67B\t0x5DDE\n0xA67C\t0x5E06\n0xA67D\t0x5E76\n0xA67E\t0x5E74\n0xA6A1\t0x5F0F\n0xA6A2\t0x5F1B\n0xA6A3\t0x5FD9\n0xA6A4\t0x5FD6\n0xA6A5\t0x620E\n0xA6A6\t0x620C\n0xA6A7\t0x620D\n0xA6A8\t0x6210\n0xA6A9\t0x6263\n0xA6AA\t0x625B\n0xA6AB\t0x6258\n0xA6AC\t0x6536\n0xA6AD\t0x65E9\n0xA6AE\t0x65E8\n0xA6AF\t0x65EC\n0xA6B0\t0x65ED\n0xA6B1\t0x66F2\n0xA6B2\t0x66F3\n0xA6B3\t0x6709\n0xA6B4\t0x673D\n0xA6B5\t0x6734\n0xA6B6\t0x6731\n0xA6B7\t0x6735\n0xA6B8\t0x6B21\n0xA6B9\t0x6B64\n0xA6BA\t0x6B7B\n0xA6BB\t0x6C16\n0xA6BC\t0x6C5D\n0xA6BD\t0x6C57\n0xA6BE\t0x6C59\n0xA6BF\t0x6C5F\n0xA6C0\t0x6C60\n0xA6C1\t0x6C50\n0xA6C2\t0x6C55\n0xA6C3\t0x6C61\n0xA6C4\t0x6C5B\n0xA6C5\t0x6C4D\n0xA6C6\t0x6C4E\n0xA6C7\t0x7070\n0xA6C8\t0x725F\n0xA6C9\t0x725D\n0xA6CA\t0x767E\n0xA6CB\t0x7AF9\n0xA6CC\t0x7C73\n0xA6CD\t0x7CF8\n0xA6CE\t0x7F36\n0xA6CF\t0x7F8A\n0xA6D0\t0x7FBD\n0xA6D1\t0x8001\n0xA6D2\t0x8003\n0xA6D3\t0x800C\n0xA6D4\t0x8012\n0xA6D5\t0x8033\n0xA6D6\t0x807F\n0xA6D7\t0x8089\n0xA6D8\t0x808B\n0xA6D9\t0x808C\n0xA6DA\t0x81E3\n0xA6DB\t0x81EA\n0xA6DC\t0x81F3\n0xA6DD\t0x81FC\n0xA6DE\t0x820C\n0xA6DF\t0x821B\n0xA6E0\t0x821F\n0xA6E1\t0x826E\n0xA6E2\t0x8272\n0xA6E3\t0x827E\n0xA6E4\t0x866B\n0xA6E5\t0x8840\n0xA6E6\t0x884C\n0xA6E7\t0x8863\n0xA6E8\t0x897F\n0xA6E9\t0x9621\n0xA6EA\t0x4E32\n0xA6EB\t0x4EA8\n0xA6EC\t0x4F4D\n0xA6ED\t0x4F4F\n0xA6EE\t0x4F47\n0xA6EF\t0x4F57\n0xA6F0\t0x4F5E\n0xA6F1\t0x4F34\n0xA6F2\t0x4F5B\n0xA6F3\t0x4F55\n0xA6F4\t0x4F30\n0xA6F5\t0x4F50\n0xA6F6\t0x4F51\n0xA6F7\t0x4F3D\n0xA6F8\t0x4F3A\n0xA6F9\t0x4F38\n0xA6FA\t0x4F43\n0xA6FB\t0x4F54\n0xA6FC\t0x4F3C\n0xA6FD\t0x4F46\n0xA6FE\t0x4F63\n0xA740\t0x4F5C\n0xA741\t0x4F60\n0xA742\t0x4F2F\n0xA743\t0x4F4E\n0xA744\t0x4F36\n0xA745\t0x4F59\n0xA746\t0x4F5D\n0xA747\t0x4F48\n0xA748\t0x4F5A\n0xA749\t0x514C\n0xA74A\t0x514B\n0xA74B\t0x514D\n0xA74C\t0x5175\n0xA74D\t0x51B6\n0xA74E\t0x51B7\n0xA74F\t0x5225\n0xA750\t0x5224\n0xA751\t0x5229\n0xA752\t0x522A\n0xA753\t0x5228\n0xA754\t0x52AB\n0xA755\t0x52A9\n0xA756\t0x52AA\n0xA757\t0x52AC\n0xA758\t0x5323\n0xA759\t0x5373\n0xA75A\t0x5375\n0xA75B\t0x541D\n0xA75C\t0x542D\n0xA75D\t0x541E\n0xA75E\t0x543E\n0xA75F\t0x5426\n0xA760\t0x544E\n0xA761\t0x5427\n0xA762\t0x5446\n0xA763\t0x5443\n0xA764\t0x5433\n0xA765\t0x5448\n0xA766\t0x5442\n0xA767\t0x541B\n0xA768\t0x5429\n0xA769\t0x544A\n0xA76A\t0x5439\n0xA76B\t0x543B\n0xA76C\t0x5438\n0xA76D\t0x542E\n0xA76E\t0x5435\n0xA76F\t0x5436\n0xA770\t0x5420\n0xA771\t0x543C\n0xA772\t0x5440\n0xA773\t0x5431\n0xA774\t0x542B\n0xA775\t0x541F\n0xA776\t0x542C\n0xA777\t0x56EA\n0xA778\t0x56F0\n0xA779\t0x56E4\n0xA77A\t0x56EB\n0xA77B\t0x574A\n0xA77C\t0x5751\n0xA77D\t0x5740\n0xA77E\t0x574D\n0xA7A1\t0x5747\n0xA7A2\t0x574E\n0xA7A3\t0x573E\n0xA7A4\t0x5750\n0xA7A5\t0x574F\n0xA7A6\t0x573B\n0xA7A7\t0x58EF\n0xA7A8\t0x593E\n0xA7A9\t0x599D\n0xA7AA\t0x5992\n0xA7AB\t0x59A8\n0xA7AC\t0x599E\n0xA7AD\t0x59A3\n0xA7AE\t0x5999\n0xA7AF\t0x5996\n0xA7B0\t0x598D\n0xA7B1\t0x59A4\n0xA7B2\t0x5993\n0xA7B3\t0x598A\n0xA7B4\t0x59A5\n0xA7B5\t0x5B5D\n0xA7B6\t0x5B5C\n0xA7B7\t0x5B5A\n0xA7B8\t0x5B5B\n0xA7B9\t0x5B8C\n0xA7BA\t0x5B8B\n0xA7BB\t0x5B8F\n0xA7BC\t0x5C2C\n0xA7BD\t0x5C40\n0xA7BE\t0x5C41\n0xA7BF\t0x5C3F\n0xA7C0\t0x5C3E\n0xA7C1\t0x5C90\n0xA7C2\t0x5C91\n0xA7C3\t0x5C94\n0xA7C4\t0x5C8C\n0xA7C5\t0x5DEB\n0xA7C6\t0x5E0C\n0xA7C7\t0x5E8F\n0xA7C8\t0x5E87\n0xA7C9\t0x5E8A\n0xA7CA\t0x5EF7\n0xA7CB\t0x5F04\n0xA7CC\t0x5F1F\n0xA7CD\t0x5F64\n0xA7CE\t0x5F62\n0xA7CF\t0x5F77\n0xA7D0\t0x5F79\n0xA7D1\t0x5FD8\n0xA7D2\t0x5FCC\n0xA7D3\t0x5FD7\n0xA7D4\t0x5FCD\n0xA7D5\t0x5FF1\n0xA7D6\t0x5FEB\n0xA7D7\t0x5FF8\n0xA7D8\t0x5FEA\n0xA7D9\t0x6212\n0xA7DA\t0x6211\n0xA7DB\t0x6284\n0xA7DC\t0x6297\n0xA7DD\t0x6296\n0xA7DE\t0x6280\n0xA7DF\t0x6276\n0xA7E0\t0x6289\n0xA7E1\t0x626D\n0xA7E2\t0x628A\n0xA7E3\t0x627C\n0xA7E4\t0x627E\n0xA7E5\t0x6279\n0xA7E6\t0x6273\n0xA7E7\t0x6292\n0xA7E8\t0x626F\n0xA7E9\t0x6298\n0xA7EA\t0x626E\n0xA7EB\t0x6295\n0xA7EC\t0x6293\n0xA7ED\t0x6291\n0xA7EE\t0x6286\n0xA7EF\t0x6539\n0xA7F0\t0x653B\n0xA7F1\t0x6538\n0xA7F2\t0x65F1\n0xA7F3\t0x66F4\n0xA7F4\t0x675F\n0xA7F5\t0x674E\n0xA7F6\t0x674F\n0xA7F7\t0x6750\n0xA7F8\t0x6751\n0xA7F9\t0x675C\n0xA7FA\t0x6756\n0xA7FB\t0x675E\n0xA7FC\t0x6749\n0xA7FD\t0x6746\n0xA7FE\t0x6760\n0xA840\t0x6753\n0xA841\t0x6757\n0xA842\t0x6B65\n0xA843\t0x6BCF\n0xA844\t0x6C42\n0xA845\t0x6C5E\n0xA846\t0x6C99\n0xA847\t0x6C81\n0xA848\t0x6C88\n0xA849\t0x6C89\n0xA84A\t0x6C85\n0xA84B\t0x6C9B\n0xA84C\t0x6C6A\n0xA84D\t0x6C7A\n0xA84E\t0x6C90\n0xA84F\t0x6C70\n0xA850\t0x6C8C\n0xA851\t0x6C68\n0xA852\t0x6C96\n0xA853\t0x6C92\n0xA854\t0x6C7D\n0xA855\t0x6C83\n0xA856\t0x6C72\n0xA857\t0x6C7E\n0xA858\t0x6C74\n0xA859\t0x6C86\n0xA85A\t0x6C76\n0xA85B\t0x6C8D\n0xA85C\t0x6C94\n0xA85D\t0x6C98\n0xA85E\t0x6C82\n0xA85F\t0x7076\n0xA860\t0x707C\n0xA861\t0x707D\n0xA862\t0x7078\n0xA863\t0x7262\n0xA864\t0x7261\n0xA865\t0x7260\n0xA866\t0x72C4\n0xA867\t0x72C2\n0xA868\t0x7396\n0xA869\t0x752C\n0xA86A\t0x752B\n0xA86B\t0x7537\n0xA86C\t0x7538\n0xA86D\t0x7682\n0xA86E\t0x76EF\n0xA86F\t0x77E3\n0xA870\t0x79C1\n0xA871\t0x79C0\n0xA872\t0x79BF\n0xA873\t0x7A76\n0xA874\t0x7CFB\n0xA875\t0x7F55\n0xA876\t0x8096\n0xA877\t0x8093\n0xA878\t0x809D\n0xA879\t0x8098\n0xA87A\t0x809B\n0xA87B\t0x809A\n0xA87C\t0x80B2\n0xA87D\t0x826F\n0xA87E\t0x8292\n0xA8A1\t0x828B\n0xA8A2\t0x828D\n0xA8A3\t0x898B\n0xA8A4\t0x89D2\n0xA8A5\t0x8A00\n0xA8A6\t0x8C37\n0xA8A7\t0x8C46\n0xA8A8\t0x8C55\n0xA8A9\t0x8C9D\n0xA8AA\t0x8D64\n0xA8AB\t0x8D70\n0xA8AC\t0x8DB3\n0xA8AD\t0x8EAB\n0xA8AE\t0x8ECA\n0xA8AF\t0x8F9B\n0xA8B0\t0x8FB0\n0xA8B1\t0x8FC2\n0xA8B2\t0x8FC6\n0xA8B3\t0x8FC5\n0xA8B4\t0x8FC4\n0xA8B5\t0x5DE1\n0xA8B6\t0x9091\n0xA8B7\t0x90A2\n0xA8B8\t0x90AA\n0xA8B9\t0x90A6\n0xA8BA\t0x90A3\n0xA8BB\t0x9149\n0xA8BC\t0x91C6\n0xA8BD\t0x91CC\n0xA8BE\t0x9632\n0xA8BF\t0x962E\n0xA8C0\t0x9631\n0xA8C1\t0x962A\n0xA8C2\t0x962C\n0xA8C3\t0x4E26\n0xA8C4\t0x4E56\n0xA8C5\t0x4E73\n0xA8C6\t0x4E8B\n0xA8C7\t0x4E9B\n0xA8C8\t0x4E9E\n0xA8C9\t0x4EAB\n0xA8CA\t0x4EAC\n0xA8CB\t0x4F6F\n0xA8CC\t0x4F9D\n0xA8CD\t0x4F8D\n0xA8CE\t0x4F73\n0xA8CF\t0x4F7F\n0xA8D0\t0x4F6C\n0xA8D1\t0x4F9B\n0xA8D2\t0x4F8B\n0xA8D3\t0x4F86\n0xA8D4\t0x4F83\n0xA8D5\t0x4F70\n0xA8D6\t0x4F75\n0xA8D7\t0x4F88\n0xA8D8\t0x4F69\n0xA8D9\t0x4F7B\n0xA8DA\t0x4F96\n0xA8DB\t0x4F7E\n0xA8DC\t0x4F8F\n0xA8DD\t0x4F91\n0xA8DE\t0x4F7A\n0xA8DF\t0x5154\n0xA8E0\t0x5152\n0xA8E1\t0x5155\n0xA8E2\t0x5169\n0xA8E3\t0x5177\n0xA8E4\t0x5176\n0xA8E5\t0x5178\n0xA8E6\t0x51BD\n0xA8E7\t0x51FD\n0xA8E8\t0x523B\n0xA8E9\t0x5238\n0xA8EA\t0x5237\n0xA8EB\t0x523A\n0xA8EC\t0x5230\n0xA8ED\t0x522E\n0xA8EE\t0x5236\n0xA8EF\t0x5241\n0xA8F0\t0x52BE\n0xA8F1\t0x52BB\n0xA8F2\t0x5352\n0xA8F3\t0x5354\n0xA8F4\t0x5353\n0xA8F5\t0x5351\n0xA8F6\t0x5366\n0xA8F7\t0x5377\n0xA8F8\t0x5378\n0xA8F9\t0x5379\n0xA8FA\t0x53D6\n0xA8FB\t0x53D4\n0xA8FC\t0x53D7\n0xA8FD\t0x5473\n0xA8FE\t0x5475\n0xA940\t0x5496\n0xA941\t0x5478\n0xA942\t0x5495\n0xA943\t0x5480\n0xA944\t0x547B\n0xA945\t0x5477\n0xA946\t0x5484\n0xA947\t0x5492\n0xA948\t0x5486\n0xA949\t0x547C\n0xA94A\t0x5490\n0xA94B\t0x5471\n0xA94C\t0x5476\n0xA94D\t0x548C\n0xA94E\t0x549A\n0xA94F\t0x5462\n0xA950\t0x5468\n0xA951\t0x548B\n0xA952\t0x547D\n0xA953\t0x548E\n0xA954\t0x56FA\n0xA955\t0x5783\n0xA956\t0x5777\n0xA957\t0x576A\n0xA958\t0x5769\n0xA959\t0x5761\n0xA95A\t0x5766\n0xA95B\t0x5764\n0xA95C\t0x577C\n0xA95D\t0x591C\n0xA95E\t0x5949\n0xA95F\t0x5947\n0xA960\t0x5948\n0xA961\t0x5944\n0xA962\t0x5954\n0xA963\t0x59BE\n0xA964\t0x59BB\n0xA965\t0x59D4\n0xA966\t0x59B9\n0xA967\t0x59AE\n0xA968\t0x59D1\n0xA969\t0x59C6\n0xA96A\t0x59D0\n0xA96B\t0x59CD\n0xA96C\t0x59CB\n0xA96D\t0x59D3\n0xA96E\t0x59CA\n0xA96F\t0x59AF\n0xA970\t0x59B3\n0xA971\t0x59D2\n0xA972\t0x59C5\n0xA973\t0x5B5F\n0xA974\t0x5B64\n0xA975\t0x5B63\n0xA976\t0x5B97\n0xA977\t0x5B9A\n0xA978\t0x5B98\n0xA979\t0x5B9C\n0xA97A\t0x5B99\n0xA97B\t0x5B9B\n0xA97C\t0x5C1A\n0xA97D\t0x5C48\n0xA97E\t0x5C45\n0xA9A1\t0x5C46\n0xA9A2\t0x5CB7\n0xA9A3\t0x5CA1\n0xA9A4\t0x5CB8\n0xA9A5\t0x5CA9\n0xA9A6\t0x5CAB\n0xA9A7\t0x5CB1\n0xA9A8\t0x5CB3\n0xA9A9\t0x5E18\n0xA9AA\t0x5E1A\n0xA9AB\t0x5E16\n0xA9AC\t0x5E15\n0xA9AD\t0x5E1B\n0xA9AE\t0x5E11\n0xA9AF\t0x5E78\n0xA9B0\t0x5E9A\n0xA9B1\t0x5E97\n0xA9B2\t0x5E9C\n0xA9B3\t0x5E95\n0xA9B4\t0x5E96\n0xA9B5\t0x5EF6\n0xA9B6\t0x5F26\n0xA9B7\t0x5F27\n0xA9B8\t0x5F29\n0xA9B9\t0x5F80\n0xA9BA\t0x5F81\n0xA9BB\t0x5F7F\n0xA9BC\t0x5F7C\n0xA9BD\t0x5FDD\n0xA9BE\t0x5FE0\n0xA9BF\t0x5FFD\n0xA9C0\t0x5FF5\n0xA9C1\t0x5FFF\n0xA9C2\t0x600F\n0xA9C3\t0x6014\n0xA9C4\t0x602F\n0xA9C5\t0x6035\n0xA9C6\t0x6016\n0xA9C7\t0x602A\n0xA9C8\t0x6015\n0xA9C9\t0x6021\n0xA9CA\t0x6027\n0xA9CB\t0x6029\n0xA9CC\t0x602B\n0xA9CD\t0x601B\n0xA9CE\t0x6216\n0xA9CF\t0x6215\n0xA9D0\t0x623F\n0xA9D1\t0x623E\n0xA9D2\t0x6240\n0xA9D3\t0x627F\n0xA9D4\t0x62C9\n0xA9D5\t0x62CC\n0xA9D6\t0x62C4\n0xA9D7\t0x62BF\n0xA9D8\t0x62C2\n0xA9D9\t0x62B9\n0xA9DA\t0x62D2\n0xA9DB\t0x62DB\n0xA9DC\t0x62AB\n0xA9DD\t0x62D3\n0xA9DE\t0x62D4\n0xA9DF\t0x62CB\n0xA9E0\t0x62C8\n0xA9E1\t0x62A8\n0xA9E2\t0x62BD\n0xA9E3\t0x62BC\n0xA9E4\t0x62D0\n0xA9E5\t0x62D9\n0xA9E6\t0x62C7\n0xA9E7\t0x62CD\n0xA9E8\t0x62B5\n0xA9E9\t0x62DA\n0xA9EA\t0x62B1\n0xA9EB\t0x62D8\n0xA9EC\t0x62D6\n0xA9ED\t0x62D7\n0xA9EE\t0x62C6\n0xA9EF\t0x62AC\n0xA9F0\t0x62CE\n0xA9F1\t0x653E\n0xA9F2\t0x65A7\n0xA9F3\t0x65BC\n0xA9F4\t0x65FA\n0xA9F5\t0x6614\n0xA9F6\t0x6613\n0xA9F7\t0x660C\n0xA9F8\t0x6606\n0xA9F9\t0x6602\n0xA9FA\t0x660E\n0xA9FB\t0x6600\n0xA9FC\t0x660F\n0xA9FD\t0x6615\n0xA9FE\t0x660A\n0xAA40\t0x6607\n0xAA41\t0x670D\n0xAA42\t0x670B\n0xAA43\t0x676D\n0xAA44\t0x678B\n0xAA45\t0x6795\n0xAA46\t0x6771\n0xAA47\t0x679C\n0xAA48\t0x6773\n0xAA49\t0x6777\n0xAA4A\t0x6787\n0xAA4B\t0x679D\n0xAA4C\t0x6797\n0xAA4D\t0x676F\n0xAA4E\t0x6770\n0xAA4F\t0x677F\n0xAA50\t0x6789\n0xAA51\t0x677E\n0xAA52\t0x6790\n0xAA53\t0x6775\n0xAA54\t0x679A\n0xAA55\t0x6793\n0xAA56\t0x677C\n0xAA57\t0x676A\n0xAA58\t0x6772\n0xAA59\t0x6B23\n0xAA5A\t0x6B66\n0xAA5B\t0x6B67\n0xAA5C\t0x6B7F\n0xAA5D\t0x6C13\n0xAA5E\t0x6C1B\n0xAA5F\t0x6CE3\n0xAA60\t0x6CE8\n0xAA61\t0x6CF3\n0xAA62\t0x6CB1\n0xAA63\t0x6CCC\n0xAA64\t0x6CE5\n0xAA65\t0x6CB3\n0xAA66\t0x6CBD\n0xAA67\t0x6CBE\n0xAA68\t0x6CBC\n0xAA69\t0x6CE2\n0xAA6A\t0x6CAB\n0xAA6B\t0x6CD5\n0xAA6C\t0x6CD3\n0xAA6D\t0x6CB8\n0xAA6E\t0x6CC4\n0xAA6F\t0x6CB9\n0xAA70\t0x6CC1\n0xAA71\t0x6CAE\n0xAA72\t0x6CD7\n0xAA73\t0x6CC5\n0xAA74\t0x6CF1\n0xAA75\t0x6CBF\n0xAA76\t0x6CBB\n0xAA77\t0x6CE1\n0xAA78\t0x6CDB\n0xAA79\t0x6CCA\n0xAA7A\t0x6CAC\n0xAA7B\t0x6CEF\n0xAA7C\t0x6CDC\n0xAA7D\t0x6CD6\n0xAA7E\t0x6CE0\n0xAAA1\t0x7095\n0xAAA2\t0x708E\n0xAAA3\t0x7092\n0xAAA4\t0x708A\n0xAAA5\t0x7099\n0xAAA6\t0x722C\n0xAAA7\t0x722D\n0xAAA8\t0x7238\n0xAAA9\t0x7248\n0xAAAA\t0x7267\n0xAAAB\t0x7269\n0xAAAC\t0x72C0\n0xAAAD\t0x72CE\n0xAAAE\t0x72D9\n0xAAAF\t0x72D7\n0xAAB0\t0x72D0\n0xAAB1\t0x73A9\n0xAAB2\t0x73A8\n0xAAB3\t0x739F\n0xAAB4\t0x73AB\n0xAAB5\t0x73A5\n0xAAB6\t0x753D\n0xAAB7\t0x759D\n0xAAB8\t0x7599\n0xAAB9\t0x759A\n0xAABA\t0x7684\n0xAABB\t0x76C2\n0xAABC\t0x76F2\n0xAABD\t0x76F4\n0xAABE\t0x77E5\n0xAABF\t0x77FD\n0xAAC0\t0x793E\n0xAAC1\t0x7940\n0xAAC2\t0x7941\n0xAAC3\t0x79C9\n0xAAC4\t0x79C8\n0xAAC5\t0x7A7A\n0xAAC6\t0x7A79\n0xAAC7\t0x7AFA\n0xAAC8\t0x7CFE\n0xAAC9\t0x7F54\n0xAACA\t0x7F8C\n0xAACB\t0x7F8B\n0xAACC\t0x8005\n0xAACD\t0x80BA\n0xAACE\t0x80A5\n0xAACF\t0x80A2\n0xAAD0\t0x80B1\n0xAAD1\t0x80A1\n0xAAD2\t0x80AB\n0xAAD3\t0x80A9\n0xAAD4\t0x80B4\n0xAAD5\t0x80AA\n0xAAD6\t0x80AF\n0xAAD7\t0x81E5\n0xAAD8\t0x81FE\n0xAAD9\t0x820D\n0xAADA\t0x82B3\n0xAADB\t0x829D\n0xAADC\t0x8299\n0xAADD\t0x82AD\n0xAADE\t0x82BD\n0xAADF\t0x829F\n0xAAE0\t0x82B9\n0xAAE1\t0x82B1\n0xAAE2\t0x82AC\n0xAAE3\t0x82A5\n0xAAE4\t0x82AF\n0xAAE5\t0x82B8\n0xAAE6\t0x82A3\n0xAAE7\t0x82B0\n0xAAE8\t0x82BE\n0xAAE9\t0x82B7\n0xAAEA\t0x864E\n0xAAEB\t0x8671\n0xAAEC\t0x521D\n0xAAED\t0x8868\n0xAAEE\t0x8ECB\n0xAAEF\t0x8FCE\n0xAAF0\t0x8FD4\n0xAAF1\t0x8FD1\n0xAAF2\t0x90B5\n0xAAF3\t0x90B8\n0xAAF4\t0x90B1\n0xAAF5\t0x90B6\n0xAAF6\t0x91C7\n0xAAF7\t0x91D1\n0xAAF8\t0x9577\n0xAAF9\t0x9580\n0xAAFA\t0x961C\n0xAAFB\t0x9640\n0xAAFC\t0x963F\n0xAAFD\t0x963B\n0xAAFE\t0x9644\n0xAB40\t0x9642\n0xAB41\t0x96B9\n0xAB42\t0x96E8\n0xAB43\t0x9752\n0xAB44\t0x975E\n0xAB45\t0x4E9F\n0xAB46\t0x4EAD\n0xAB47\t0x4EAE\n0xAB48\t0x4FE1\n0xAB49\t0x4FB5\n0xAB4A\t0x4FAF\n0xAB4B\t0x4FBF\n0xAB4C\t0x4FE0\n0xAB4D\t0x4FD1\n0xAB4E\t0x4FCF\n0xAB4F\t0x4FDD\n0xAB50\t0x4FC3\n0xAB51\t0x4FB6\n0xAB52\t0x4FD8\n0xAB53\t0x4FDF\n0xAB54\t0x4FCA\n0xAB55\t0x4FD7\n0xAB56\t0x4FAE\n0xAB57\t0x4FD0\n0xAB58\t0x4FC4\n0xAB59\t0x4FC2\n0xAB5A\t0x4FDA\n0xAB5B\t0x4FCE\n0xAB5C\t0x4FDE\n0xAB5D\t0x4FB7\n0xAB5E\t0x5157\n0xAB5F\t0x5192\n0xAB60\t0x5191\n0xAB61\t0x51A0\n0xAB62\t0x524E\n0xAB63\t0x5243\n0xAB64\t0x524A\n0xAB65\t0x524D\n0xAB66\t0x524C\n0xAB67\t0x524B\n0xAB68\t0x5247\n0xAB69\t0x52C7\n0xAB6A\t0x52C9\n0xAB6B\t0x52C3\n0xAB6C\t0x52C1\n0xAB6D\t0x530D\n0xAB6E\t0x5357\n0xAB6F\t0x537B\n0xAB70\t0x539A\n0xAB71\t0x53DB\n0xAB72\t0x54AC\n0xAB73\t0x54C0\n0xAB74\t0x54A8\n0xAB75\t0x54CE\n0xAB76\t0x54C9\n0xAB77\t0x54B8\n0xAB78\t0x54A6\n0xAB79\t0x54B3\n0xAB7A\t0x54C7\n0xAB7B\t0x54C2\n0xAB7C\t0x54BD\n0xAB7D\t0x54AA\n0xAB7E\t0x54C1\n0xABA1\t0x54C4\n0xABA2\t0x54C8\n0xABA3\t0x54AF\n0xABA4\t0x54AB\n0xABA5\t0x54B1\n0xABA6\t0x54BB\n0xABA7\t0x54A9\n0xABA8\t0x54A7\n0xABA9\t0x54BF\n0xABAA\t0x56FF\n0xABAB\t0x5782\n0xABAC\t0x578B\n0xABAD\t0x57A0\n0xABAE\t0x57A3\n0xABAF\t0x57A2\n0xABB0\t0x57CE\n0xABB1\t0x57AE\n0xABB2\t0x5793\n0xABB3\t0x5955\n0xABB4\t0x5951\n0xABB5\t0x594F\n0xABB6\t0x594E\n0xABB7\t0x5950\n0xABB8\t0x59DC\n0xABB9\t0x59D8\n0xABBA\t0x59FF\n0xABBB\t0x59E3\n0xABBC\t0x59E8\n0xABBD\t0x5A03\n0xABBE\t0x59E5\n0xABBF\t0x59EA\n0xABC0\t0x59DA\n0xABC1\t0x59E6\n0xABC2\t0x5A01\n0xABC3\t0x59FB\n0xABC4\t0x5B69\n0xABC5\t0x5BA3\n0xABC6\t0x5BA6\n0xABC7\t0x5BA4\n0xABC8\t0x5BA2\n0xABC9\t0x5BA5\n0xABCA\t0x5C01\n0xABCB\t0x5C4E\n0xABCC\t0x5C4F\n0xABCD\t0x5C4D\n0xABCE\t0x5C4B\n0xABCF\t0x5CD9\n0xABD0\t0x5CD2\n0xABD1\t0x5DF7\n0xABD2\t0x5E1D\n0xABD3\t0x5E25\n0xABD4\t0x5E1F\n0xABD5\t0x5E7D\n0xABD6\t0x5EA0\n0xABD7\t0x5EA6\n0xABD8\t0x5EFA\n0xABD9\t0x5F08\n0xABDA\t0x5F2D\n0xABDB\t0x5F65\n0xABDC\t0x5F88\n0xABDD\t0x5F85\n0xABDE\t0x5F8A\n0xABDF\t0x5F8B\n0xABE0\t0x5F87\n0xABE1\t0x5F8C\n0xABE2\t0x5F89\n0xABE3\t0x6012\n0xABE4\t0x601D\n0xABE5\t0x6020\n0xABE6\t0x6025\n0xABE7\t0x600E\n0xABE8\t0x6028\n0xABE9\t0x604D\n0xABEA\t0x6070\n0xABEB\t0x6068\n0xABEC\t0x6062\n0xABED\t0x6046\n0xABEE\t0x6043\n0xABEF\t0x606C\n0xABF0\t0x606B\n0xABF1\t0x606A\n0xABF2\t0x6064\n0xABF3\t0x6241\n0xABF4\t0x62DC\n0xABF5\t0x6316\n0xABF6\t0x6309\n0xABF7\t0x62FC\n0xABF8\t0x62ED\n0xABF9\t0x6301\n0xABFA\t0x62EE\n0xABFB\t0x62FD\n0xABFC\t0x6307\n0xABFD\t0x62F1\n0xABFE\t0x62F7\n0xAC40\t0x62EF\n0xAC41\t0x62EC\n0xAC42\t0x62FE\n0xAC43\t0x62F4\n0xAC44\t0x6311\n0xAC45\t0x6302\n0xAC46\t0x653F\n0xAC47\t0x6545\n0xAC48\t0x65AB\n0xAC49\t0x65BD\n0xAC4A\t0x65E2\n0xAC4B\t0x6625\n0xAC4C\t0x662D\n0xAC4D\t0x6620\n0xAC4E\t0x6627\n0xAC4F\t0x662F\n0xAC50\t0x661F\n0xAC51\t0x6628\n0xAC52\t0x6631\n0xAC53\t0x6624\n0xAC54\t0x66F7\n0xAC55\t0x67FF\n0xAC56\t0x67D3\n0xAC57\t0x67F1\n0xAC58\t0x67D4\n0xAC59\t0x67D0\n0xAC5A\t0x67EC\n0xAC5B\t0x67B6\n0xAC5C\t0x67AF\n0xAC5D\t0x67F5\n0xAC5E\t0x67E9\n0xAC5F\t0x67EF\n0xAC60\t0x67C4\n0xAC61\t0x67D1\n0xAC62\t0x67B4\n0xAC63\t0x67DA\n0xAC64\t0x67E5\n0xAC65\t0x67B8\n0xAC66\t0x67CF\n0xAC67\t0x67DE\n0xAC68\t0x67F3\n0xAC69\t0x67B0\n0xAC6A\t0x67D9\n0xAC6B\t0x67E2\n0xAC6C\t0x67DD\n0xAC6D\t0x67D2\n0xAC6E\t0x6B6A\n0xAC6F\t0x6B83\n0xAC70\t0x6B86\n0xAC71\t0x6BB5\n0xAC72\t0x6BD2\n0xAC73\t0x6BD7\n0xAC74\t0x6C1F\n0xAC75\t0x6CC9\n0xAC76\t0x6D0B\n0xAC77\t0x6D32\n0xAC78\t0x6D2A\n0xAC79\t0x6D41\n0xAC7A\t0x6D25\n0xAC7B\t0x6D0C\n0xAC7C\t0x6D31\n0xAC7D\t0x6D1E\n0xAC7E\t0x6D17\n0xACA1\t0x6D3B\n0xACA2\t0x6D3D\n0xACA3\t0x6D3E\n0xACA4\t0x6D36\n0xACA5\t0x6D1B\n0xACA6\t0x6CF5\n0xACA7\t0x6D39\n0xACA8\t0x6D27\n0xACA9\t0x6D38\n0xACAA\t0x6D29\n0xACAB\t0x6D2E\n0xACAC\t0x6D35\n0xACAD\t0x6D0E\n0xACAE\t0x6D2B\n0xACAF\t0x70AB\n0xACB0\t0x70BA\n0xACB1\t0x70B3\n0xACB2\t0x70AC\n0xACB3\t0x70AF\n0xACB4\t0x70AD\n0xACB5\t0x70B8\n0xACB6\t0x70AE\n0xACB7\t0x70A4\n0xACB8\t0x7230\n0xACB9\t0x7272\n0xACBA\t0x726F\n0xACBB\t0x7274\n0xACBC\t0x72E9\n0xACBD\t0x72E0\n0xACBE\t0x72E1\n0xACBF\t0x73B7\n0xACC0\t0x73CA\n0xACC1\t0x73BB\n0xACC2\t0x73B2\n0xACC3\t0x73CD\n0xACC4\t0x73C0\n0xACC5\t0x73B3\n0xACC6\t0x751A\n0xACC7\t0x752D\n0xACC8\t0x754F\n0xACC9\t0x754C\n0xACCA\t0x754E\n0xACCB\t0x754B\n0xACCC\t0x75AB\n0xACCD\t0x75A4\n0xACCE\t0x75A5\n0xACCF\t0x75A2\n0xACD0\t0x75A3\n0xACD1\t0x7678\n0xACD2\t0x7686\n0xACD3\t0x7687\n0xACD4\t0x7688\n0xACD5\t0x76C8\n0xACD6\t0x76C6\n0xACD7\t0x76C3\n0xACD8\t0x76C5\n0xACD9\t0x7701\n0xACDA\t0x76F9\n0xACDB\t0x76F8\n0xACDC\t0x7709\n0xACDD\t0x770B\n0xACDE\t0x76FE\n0xACDF\t0x76FC\n0xACE0\t0x7707\n0xACE1\t0x77DC\n0xACE2\t0x7802\n0xACE3\t0x7814\n0xACE4\t0x780C\n0xACE5\t0x780D\n0xACE6\t0x7946\n0xACE7\t0x7949\n0xACE8\t0x7948\n0xACE9\t0x7947\n0xACEA\t0x79B9\n0xACEB\t0x79BA\n0xACEC\t0x79D1\n0xACED\t0x79D2\n0xACEE\t0x79CB\n0xACEF\t0x7A7F\n0xACF0\t0x7A81\n0xACF1\t0x7AFF\n0xACF2\t0x7AFD\n0xACF3\t0x7C7D\n0xACF4\t0x7D02\n0xACF5\t0x7D05\n0xACF6\t0x7D00\n0xACF7\t0x7D09\n0xACF8\t0x7D07\n0xACF9\t0x7D04\n0xACFA\t0x7D06\n0xACFB\t0x7F38\n0xACFC\t0x7F8E\n0xACFD\t0x7FBF\n0xACFE\t0x8004\n0xAD40\t0x8010\n0xAD41\t0x800D\n0xAD42\t0x8011\n0xAD43\t0x8036\n0xAD44\t0x80D6\n0xAD45\t0x80E5\n0xAD46\t0x80DA\n0xAD47\t0x80C3\n0xAD48\t0x80C4\n0xAD49\t0x80CC\n0xAD4A\t0x80E1\n0xAD4B\t0x80DB\n0xAD4C\t0x80CE\n0xAD4D\t0x80DE\n0xAD4E\t0x80E4\n0xAD4F\t0x80DD\n0xAD50\t0x81F4\n0xAD51\t0x8222\n0xAD52\t0x82E7\n0xAD53\t0x8303\n0xAD54\t0x8305\n0xAD55\t0x82E3\n0xAD56\t0x82DB\n0xAD57\t0x82E6\n0xAD58\t0x8304\n0xAD59\t0x82E5\n0xAD5A\t0x8302\n0xAD5B\t0x8309\n0xAD5C\t0x82D2\n0xAD5D\t0x82D7\n0xAD5E\t0x82F1\n0xAD5F\t0x8301\n0xAD60\t0x82DC\n0xAD61\t0x82D4\n0xAD62\t0x82D1\n0xAD63\t0x82DE\n0xAD64\t0x82D3\n0xAD65\t0x82DF\n0xAD66\t0x82EF\n0xAD67\t0x8306\n0xAD68\t0x8650\n0xAD69\t0x8679\n0xAD6A\t0x867B\n0xAD6B\t0x867A\n0xAD6C\t0x884D\n0xAD6D\t0x886B\n0xAD6E\t0x8981\n0xAD6F\t0x89D4\n0xAD70\t0x8A08\n0xAD71\t0x8A02\n0xAD72\t0x8A03\n0xAD73\t0x8C9E\n0xAD74\t0x8CA0\n0xAD75\t0x8D74\n0xAD76\t0x8D73\n0xAD77\t0x8DB4\n0xAD78\t0x8ECD\n0xAD79\t0x8ECC\n0xAD7A\t0x8FF0\n0xAD7B\t0x8FE6\n0xAD7C\t0x8FE2\n0xAD7D\t0x8FEA\n0xAD7E\t0x8FE5\n0xADA1\t0x8FED\n0xADA2\t0x8FEB\n0xADA3\t0x8FE4\n0xADA4\t0x8FE8\n0xADA5\t0x90CA\n0xADA6\t0x90CE\n0xADA7\t0x90C1\n0xADA8\t0x90C3\n0xADA9\t0x914B\n0xADAA\t0x914A\n0xADAB\t0x91CD\n0xADAC\t0x9582\n0xADAD\t0x9650\n0xADAE\t0x964B\n0xADAF\t0x964C\n0xADB0\t0x964D\n0xADB1\t0x9762\n0xADB2\t0x9769\n0xADB3\t0x97CB\n0xADB4\t0x97ED\n0xADB5\t0x97F3\n0xADB6\t0x9801\n0xADB7\t0x98A8\n0xADB8\t0x98DB\n0xADB9\t0x98DF\n0xADBA\t0x9996\n0xADBB\t0x9999\n0xADBC\t0x4E58\n0xADBD\t0x4EB3\n0xADBE\t0x500C\n0xADBF\t0x500D\n0xADC0\t0x5023\n0xADC1\t0x4FEF\n0xADC2\t0x5026\n0xADC3\t0x5025\n0xADC4\t0x4FF8\n0xADC5\t0x5029\n0xADC6\t0x5016\n0xADC7\t0x5006\n0xADC8\t0x503C\n0xADC9\t0x501F\n0xADCA\t0x501A\n0xADCB\t0x5012\n0xADCC\t0x5011\n0xADCD\t0x4FFA\n0xADCE\t0x5000\n0xADCF\t0x5014\n0xADD0\t0x5028\n0xADD1\t0x4FF1\n0xADD2\t0x5021\n0xADD3\t0x500B\n0xADD4\t0x5019\n0xADD5\t0x5018\n0xADD6\t0x4FF3\n0xADD7\t0x4FEE\n0xADD8\t0x502D\n0xADD9\t0x502A\n0xADDA\t0x4FFE\n0xADDB\t0x502B\n0xADDC\t0x5009\n0xADDD\t0x517C\n0xADDE\t0x51A4\n0xADDF\t0x51A5\n0xADE0\t0x51A2\n0xADE1\t0x51CD\n0xADE2\t0x51CC\n0xADE3\t0x51C6\n0xADE4\t0x51CB\n0xADE5\t0x5256\n0xADE6\t0x525C\n0xADE7\t0x5254\n0xADE8\t0x525B\n0xADE9\t0x525D\n0xADEA\t0x532A\n0xADEB\t0x537F\n0xADEC\t0x539F\n0xADED\t0x539D\n0xADEE\t0x53DF\n0xADEF\t0x54E8\n0xADF0\t0x5510\n0xADF1\t0x5501\n0xADF2\t0x5537\n0xADF3\t0x54FC\n0xADF4\t0x54E5\n0xADF5\t0x54F2\n0xADF6\t0x5506\n0xADF7\t0x54FA\n0xADF8\t0x5514\n0xADF9\t0x54E9\n0xADFA\t0x54ED\n0xADFB\t0x54E1\n0xADFC\t0x5509\n0xADFD\t0x54EE\n0xADFE\t0x54EA\n0xAE40\t0x54E6\n0xAE41\t0x5527\n0xAE42\t0x5507\n0xAE43\t0x54FD\n0xAE44\t0x550F\n0xAE45\t0x5703\n0xAE46\t0x5704\n0xAE47\t0x57C2\n0xAE48\t0x57D4\n0xAE49\t0x57CB\n0xAE4A\t0x57C3\n0xAE4B\t0x5809\n0xAE4C\t0x590F\n0xAE4D\t0x5957\n0xAE4E\t0x5958\n0xAE4F\t0x595A\n0xAE50\t0x5A11\n0xAE51\t0x5A18\n0xAE52\t0x5A1C\n0xAE53\t0x5A1F\n0xAE54\t0x5A1B\n0xAE55\t0x5A13\n0xAE56\t0x59EC\n0xAE57\t0x5A20\n0xAE58\t0x5A23\n0xAE59\t0x5A29\n0xAE5A\t0x5A25\n0xAE5B\t0x5A0C\n0xAE5C\t0x5A09\n0xAE5D\t0x5B6B\n0xAE5E\t0x5C58\n0xAE5F\t0x5BB0\n0xAE60\t0x5BB3\n0xAE61\t0x5BB6\n0xAE62\t0x5BB4\n0xAE63\t0x5BAE\n0xAE64\t0x5BB5\n0xAE65\t0x5BB9\n0xAE66\t0x5BB8\n0xAE67\t0x5C04\n0xAE68\t0x5C51\n0xAE69\t0x5C55\n0xAE6A\t0x5C50\n0xAE6B\t0x5CED\n0xAE6C\t0x5CFD\n0xAE6D\t0x5CFB\n0xAE6E\t0x5CEA\n0xAE6F\t0x5CE8\n0xAE70\t0x5CF0\n0xAE71\t0x5CF6\n0xAE72\t0x5D01\n0xAE73\t0x5CF4\n0xAE74\t0x5DEE\n0xAE75\t0x5E2D\n0xAE76\t0x5E2B\n0xAE77\t0x5EAB\n0xAE78\t0x5EAD\n0xAE79\t0x5EA7\n0xAE7A\t0x5F31\n0xAE7B\t0x5F92\n0xAE7C\t0x5F91\n0xAE7D\t0x5F90\n0xAE7E\t0x6059\n0xAEA1\t0x6063\n0xAEA2\t0x6065\n0xAEA3\t0x6050\n0xAEA4\t0x6055\n0xAEA5\t0x606D\n0xAEA6\t0x6069\n0xAEA7\t0x606F\n0xAEA8\t0x6084\n0xAEA9\t0x609F\n0xAEAA\t0x609A\n0xAEAB\t0x608D\n0xAEAC\t0x6094\n0xAEAD\t0x608C\n0xAEAE\t0x6085\n0xAEAF\t0x6096\n0xAEB0\t0x6247\n0xAEB1\t0x62F3\n0xAEB2\t0x6308\n0xAEB3\t0x62FF\n0xAEB4\t0x634E\n0xAEB5\t0x633E\n0xAEB6\t0x632F\n0xAEB7\t0x6355\n0xAEB8\t0x6342\n0xAEB9\t0x6346\n0xAEBA\t0x634F\n0xAEBB\t0x6349\n0xAEBC\t0x633A\n0xAEBD\t0x6350\n0xAEBE\t0x633D\n0xAEBF\t0x632A\n0xAEC0\t0x632B\n0xAEC1\t0x6328\n0xAEC2\t0x634D\n0xAEC3\t0x634C\n0xAEC4\t0x6548\n0xAEC5\t0x6549\n0xAEC6\t0x6599\n0xAEC7\t0x65C1\n0xAEC8\t0x65C5\n0xAEC9\t0x6642\n0xAECA\t0x6649\n0xAECB\t0x664F\n0xAECC\t0x6643\n0xAECD\t0x6652\n0xAECE\t0x664C\n0xAECF\t0x6645\n0xAED0\t0x6641\n0xAED1\t0x66F8\n0xAED2\t0x6714\n0xAED3\t0x6715\n0xAED4\t0x6717\n0xAED5\t0x6821\n0xAED6\t0x6838\n0xAED7\t0x6848\n0xAED8\t0x6846\n0xAED9\t0x6853\n0xAEDA\t0x6839\n0xAEDB\t0x6842\n0xAEDC\t0x6854\n0xAEDD\t0x6829\n0xAEDE\t0x68B3\n0xAEDF\t0x6817\n0xAEE0\t0x684C\n0xAEE1\t0x6851\n0xAEE2\t0x683D\n0xAEE3\t0x67F4\n0xAEE4\t0x6850\n0xAEE5\t0x6840\n0xAEE6\t0x683C\n0xAEE7\t0x6843\n0xAEE8\t0x682A\n0xAEE9\t0x6845\n0xAEEA\t0x6813\n0xAEEB\t0x6818\n0xAEEC\t0x6841\n0xAEED\t0x6B8A\n0xAEEE\t0x6B89\n0xAEEF\t0x6BB7\n0xAEF0\t0x6C23\n0xAEF1\t0x6C27\n0xAEF2\t0x6C28\n0xAEF3\t0x6C26\n0xAEF4\t0x6C24\n0xAEF5\t0x6CF0\n0xAEF6\t0x6D6A\n0xAEF7\t0x6D95\n0xAEF8\t0x6D88\n0xAEF9\t0x6D87\n0xAEFA\t0x6D66\n0xAEFB\t0x6D78\n0xAEFC\t0x6D77\n0xAEFD\t0x6D59\n0xAEFE\t0x6D93\n0xAF40\t0x6D6C\n0xAF41\t0x6D89\n0xAF42\t0x6D6E\n0xAF43\t0x6D5A\n0xAF44\t0x6D74\n0xAF45\t0x6D69\n0xAF46\t0x6D8C\n0xAF47\t0x6D8A\n0xAF48\t0x6D79\n0xAF49\t0x6D85\n0xAF4A\t0x6D65\n0xAF4B\t0x6D94\n0xAF4C\t0x70CA\n0xAF4D\t0x70D8\n0xAF4E\t0x70E4\n0xAF4F\t0x70D9\n0xAF50\t0x70C8\n0xAF51\t0x70CF\n0xAF52\t0x7239\n0xAF53\t0x7279\n0xAF54\t0x72FC\n0xAF55\t0x72F9\n0xAF56\t0x72FD\n0xAF57\t0x72F8\n0xAF58\t0x72F7\n0xAF59\t0x7386\n0xAF5A\t0x73ED\n0xAF5B\t0x7409\n0xAF5C\t0x73EE\n0xAF5D\t0x73E0\n0xAF5E\t0x73EA\n0xAF5F\t0x73DE\n0xAF60\t0x7554\n0xAF61\t0x755D\n0xAF62\t0x755C\n0xAF63\t0x755A\n0xAF64\t0x7559\n0xAF65\t0x75BE\n0xAF66\t0x75C5\n0xAF67\t0x75C7\n0xAF68\t0x75B2\n0xAF69\t0x75B3\n0xAF6A\t0x75BD\n0xAF6B\t0x75BC\n0xAF6C\t0x75B9\n0xAF6D\t0x75C2\n0xAF6E\t0x75B8\n0xAF6F\t0x768B\n0xAF70\t0x76B0\n0xAF71\t0x76CA\n0xAF72\t0x76CD\n0xAF73\t0x76CE\n0xAF74\t0x7729\n0xAF75\t0x771F\n0xAF76\t0x7720\n0xAF77\t0x7728\n0xAF78\t0x77E9\n0xAF79\t0x7830\n0xAF7A\t0x7827\n0xAF7B\t0x7838\n0xAF7C\t0x781D\n0xAF7D\t0x7834\n0xAF7E\t0x7837\n0xAFA1\t0x7825\n0xAFA2\t0x782D\n0xAFA3\t0x7820\n0xAFA4\t0x781F\n0xAFA5\t0x7832\n0xAFA6\t0x7955\n0xAFA7\t0x7950\n0xAFA8\t0x7960\n0xAFA9\t0x795F\n0xAFAA\t0x7956\n0xAFAB\t0x795E\n0xAFAC\t0x795D\n0xAFAD\t0x7957\n0xAFAE\t0x795A\n0xAFAF\t0x79E4\n0xAFB0\t0x79E3\n0xAFB1\t0x79E7\n0xAFB2\t0x79DF\n0xAFB3\t0x79E6\n0xAFB4\t0x79E9\n0xAFB5\t0x79D8\n0xAFB6\t0x7A84\n0xAFB7\t0x7A88\n0xAFB8\t0x7AD9\n0xAFB9\t0x7B06\n0xAFBA\t0x7B11\n0xAFBB\t0x7C89\n0xAFBC\t0x7D21\n0xAFBD\t0x7D17\n0xAFBE\t0x7D0B\n0xAFBF\t0x7D0A\n0xAFC0\t0x7D20\n0xAFC1\t0x7D22\n0xAFC2\t0x7D14\n0xAFC3\t0x7D10\n0xAFC4\t0x7D15\n0xAFC5\t0x7D1A\n0xAFC6\t0x7D1C\n0xAFC7\t0x7D0D\n0xAFC8\t0x7D19\n0xAFC9\t0x7D1B\n0xAFCA\t0x7F3A\n0xAFCB\t0x7F5F\n0xAFCC\t0x7F94\n0xAFCD\t0x7FC5\n0xAFCE\t0x7FC1\n0xAFCF\t0x8006\n0xAFD0\t0x8018\n0xAFD1\t0x8015\n0xAFD2\t0x8019\n0xAFD3\t0x8017\n0xAFD4\t0x803D\n0xAFD5\t0x803F\n0xAFD6\t0x80F1\n0xAFD7\t0x8102\n0xAFD8\t0x80F0\n0xAFD9\t0x8105\n0xAFDA\t0x80ED\n0xAFDB\t0x80F4\n0xAFDC\t0x8106\n0xAFDD\t0x80F8\n0xAFDE\t0x80F3\n0xAFDF\t0x8108\n0xAFE0\t0x80FD\n0xAFE1\t0x810A\n0xAFE2\t0x80FC\n0xAFE3\t0x80EF\n0xAFE4\t0x81ED\n0xAFE5\t0x81EC\n0xAFE6\t0x8200\n0xAFE7\t0x8210\n0xAFE8\t0x822A\n0xAFE9\t0x822B\n0xAFEA\t0x8228\n0xAFEB\t0x822C\n0xAFEC\t0x82BB\n0xAFED\t0x832B\n0xAFEE\t0x8352\n0xAFEF\t0x8354\n0xAFF0\t0x834A\n0xAFF1\t0x8338\n0xAFF2\t0x8350\n0xAFF3\t0x8349\n0xAFF4\t0x8335\n0xAFF5\t0x8334\n0xAFF6\t0x834F\n0xAFF7\t0x8332\n0xAFF8\t0x8339\n0xAFF9\t0x8336\n0xAFFA\t0x8317\n0xAFFB\t0x8340\n0xAFFC\t0x8331\n0xAFFD\t0x8328\n0xAFFE\t0x8343\n0xB040\t0x8654\n0xB041\t0x868A\n0xB042\t0x86AA\n0xB043\t0x8693\n0xB044\t0x86A4\n0xB045\t0x86A9\n0xB046\t0x868C\n0xB047\t0x86A3\n0xB048\t0x869C\n0xB049\t0x8870\n0xB04A\t0x8877\n0xB04B\t0x8881\n0xB04C\t0x8882\n0xB04D\t0x887D\n0xB04E\t0x8879\n0xB04F\t0x8A18\n0xB050\t0x8A10\n0xB051\t0x8A0E\n0xB052\t0x8A0C\n0xB053\t0x8A15\n0xB054\t0x8A0A\n0xB055\t0x8A17\n0xB056\t0x8A13\n0xB057\t0x8A16\n0xB058\t0x8A0F\n0xB059\t0x8A11\n0xB05A\t0x8C48\n0xB05B\t0x8C7A\n0xB05C\t0x8C79\n0xB05D\t0x8CA1\n0xB05E\t0x8CA2\n0xB05F\t0x8D77\n0xB060\t0x8EAC\n0xB061\t0x8ED2\n0xB062\t0x8ED4\n0xB063\t0x8ECF\n0xB064\t0x8FB1\n0xB065\t0x9001\n0xB066\t0x9006\n0xB067\t0x8FF7\n0xB068\t0x9000\n0xB069\t0x8FFA\n0xB06A\t0x8FF4\n0xB06B\t0x9003\n0xB06C\t0x8FFD\n0xB06D\t0x9005\n0xB06E\t0x8FF8\n0xB06F\t0x9095\n0xB070\t0x90E1\n0xB071\t0x90DD\n0xB072\t0x90E2\n0xB073\t0x9152\n0xB074\t0x914D\n0xB075\t0x914C\n0xB076\t0x91D8\n0xB077\t0x91DD\n0xB078\t0x91D7\n0xB079\t0x91DC\n0xB07A\t0x91D9\n0xB07B\t0x9583\n0xB07C\t0x9662\n0xB07D\t0x9663\n0xB07E\t0x9661\n0xB0A1\t0x965B\n0xB0A2\t0x965D\n0xB0A3\t0x9664\n0xB0A4\t0x9658\n0xB0A5\t0x965E\n0xB0A6\t0x96BB\n0xB0A7\t0x98E2\n0xB0A8\t0x99AC\n0xB0A9\t0x9AA8\n0xB0AA\t0x9AD8\n0xB0AB\t0x9B25\n0xB0AC\t0x9B32\n0xB0AD\t0x9B3C\n0xB0AE\t0x4E7E\n0xB0AF\t0x507A\n0xB0B0\t0x507D\n0xB0B1\t0x505C\n0xB0B2\t0x5047\n0xB0B3\t0x5043\n0xB0B4\t0x504C\n0xB0B5\t0x505A\n0xB0B6\t0x5049\n0xB0B7\t0x5065\n0xB0B8\t0x5076\n0xB0B9\t0x504E\n0xB0BA\t0x5055\n0xB0BB\t0x5075\n0xB0BC\t0x5074\n0xB0BD\t0x5077\n0xB0BE\t0x504F\n0xB0BF\t0x500F\n0xB0C0\t0x506F\n0xB0C1\t0x506D\n0xB0C2\t0x515C\n0xB0C3\t0x5195\n0xB0C4\t0x51F0\n0xB0C5\t0x526A\n0xB0C6\t0x526F\n0xB0C7\t0x52D2\n0xB0C8\t0x52D9\n0xB0C9\t0x52D8\n0xB0CA\t0x52D5\n0xB0CB\t0x5310\n0xB0CC\t0x530F\n0xB0CD\t0x5319\n0xB0CE\t0x533F\n0xB0CF\t0x5340\n0xB0D0\t0x533E\n0xB0D1\t0x53C3\n0xB0D2\t0x66FC\n0xB0D3\t0x5546\n0xB0D4\t0x556A\n0xB0D5\t0x5566\n0xB0D6\t0x5544\n0xB0D7\t0x555E\n0xB0D8\t0x5561\n0xB0D9\t0x5543\n0xB0DA\t0x554A\n0xB0DB\t0x5531\n0xB0DC\t0x5556\n0xB0DD\t0x554F\n0xB0DE\t0x5555\n0xB0DF\t0x552F\n0xB0E0\t0x5564\n0xB0E1\t0x5538\n0xB0E2\t0x552E\n0xB0E3\t0x555C\n0xB0E4\t0x552C\n0xB0E5\t0x5563\n0xB0E6\t0x5533\n0xB0E7\t0x5541\n0xB0E8\t0x5557\n0xB0E9\t0x5708\n0xB0EA\t0x570B\n0xB0EB\t0x5709\n0xB0EC\t0x57DF\n0xB0ED\t0x5805\n0xB0EE\t0x580A\n0xB0EF\t0x5806\n0xB0F0\t0x57E0\n0xB0F1\t0x57E4\n0xB0F2\t0x57FA\n0xB0F3\t0x5802\n0xB0F4\t0x5835\n0xB0F5\t0x57F7\n0xB0F6\t0x57F9\n0xB0F7\t0x5920\n0xB0F8\t0x5962\n0xB0F9\t0x5A36\n0xB0FA\t0x5A41\n0xB0FB\t0x5A49\n0xB0FC\t0x5A66\n0xB0FD\t0x5A6A\n0xB0FE\t0x5A40\n0xB140\t0x5A3C\n0xB141\t0x5A62\n0xB142\t0x5A5A\n0xB143\t0x5A46\n0xB144\t0x5A4A\n0xB145\t0x5B70\n0xB146\t0x5BC7\n0xB147\t0x5BC5\n0xB148\t0x5BC4\n0xB149\t0x5BC2\n0xB14A\t0x5BBF\n0xB14B\t0x5BC6\n0xB14C\t0x5C09\n0xB14D\t0x5C08\n0xB14E\t0x5C07\n0xB14F\t0x5C60\n0xB150\t0x5C5C\n0xB151\t0x5C5D\n0xB152\t0x5D07\n0xB153\t0x5D06\n0xB154\t0x5D0E\n0xB155\t0x5D1B\n0xB156\t0x5D16\n0xB157\t0x5D22\n0xB158\t0x5D11\n0xB159\t0x5D29\n0xB15A\t0x5D14\n0xB15B\t0x5D19\n0xB15C\t0x5D24\n0xB15D\t0x5D27\n0xB15E\t0x5D17\n0xB15F\t0x5DE2\n0xB160\t0x5E38\n0xB161\t0x5E36\n0xB162\t0x5E33\n0xB163\t0x5E37\n0xB164\t0x5EB7\n0xB165\t0x5EB8\n0xB166\t0x5EB6\n0xB167\t0x5EB5\n0xB168\t0x5EBE\n0xB169\t0x5F35\n0xB16A\t0x5F37\n0xB16B\t0x5F57\n0xB16C\t0x5F6C\n0xB16D\t0x5F69\n0xB16E\t0x5F6B\n0xB16F\t0x5F97\n0xB170\t0x5F99\n0xB171\t0x5F9E\n0xB172\t0x5F98\n0xB173\t0x5FA1\n0xB174\t0x5FA0\n0xB175\t0x5F9C\n0xB176\t0x607F\n0xB177\t0x60A3\n0xB178\t0x6089\n0xB179\t0x60A0\n0xB17A\t0x60A8\n0xB17B\t0x60CB\n0xB17C\t0x60B4\n0xB17D\t0x60E6\n0xB17E\t0x60BD\n0xB1A1\t0x60C5\n0xB1A2\t0x60BB\n0xB1A3\t0x60B5\n0xB1A4\t0x60DC\n0xB1A5\t0x60BC\n0xB1A6\t0x60D8\n0xB1A7\t0x60D5\n0xB1A8\t0x60C6\n0xB1A9\t0x60DF\n0xB1AA\t0x60B8\n0xB1AB\t0x60DA\n0xB1AC\t0x60C7\n0xB1AD\t0x621A\n0xB1AE\t0x621B\n0xB1AF\t0x6248\n0xB1B0\t0x63A0\n0xB1B1\t0x63A7\n0xB1B2\t0x6372\n0xB1B3\t0x6396\n0xB1B4\t0x63A2\n0xB1B5\t0x63A5\n0xB1B6\t0x6377\n0xB1B7\t0x6367\n0xB1B8\t0x6398\n0xB1B9\t0x63AA\n0xB1BA\t0x6371\n0xB1BB\t0x63A9\n0xB1BC\t0x6389\n0xB1BD\t0x6383\n0xB1BE\t0x639B\n0xB1BF\t0x636B\n0xB1C0\t0x63A8\n0xB1C1\t0x6384\n0xB1C2\t0x6388\n0xB1C3\t0x6399\n0xB1C4\t0x63A1\n0xB1C5\t0x63AC\n0xB1C6\t0x6392\n0xB1C7\t0x638F\n0xB1C8\t0x6380\n0xB1C9\t0x637B\n0xB1CA\t0x6369\n0xB1CB\t0x6368\n0xB1CC\t0x637A\n0xB1CD\t0x655D\n0xB1CE\t0x6556\n0xB1CF\t0x6551\n0xB1D0\t0x6559\n0xB1D1\t0x6557\n0xB1D2\t0x555F\n0xB1D3\t0x654F\n0xB1D4\t0x6558\n0xB1D5\t0x6555\n0xB1D6\t0x6554\n0xB1D7\t0x659C\n0xB1D8\t0x659B\n0xB1D9\t0x65AC\n0xB1DA\t0x65CF\n0xB1DB\t0x65CB\n0xB1DC\t0x65CC\n0xB1DD\t0x65CE\n0xB1DE\t0x665D\n0xB1DF\t0x665A\n0xB1E0\t0x6664\n0xB1E1\t0x6668\n0xB1E2\t0x6666\n0xB1E3\t0x665E\n0xB1E4\t0x66F9\n0xB1E5\t0x52D7\n0xB1E6\t0x671B\n0xB1E7\t0x6881\n0xB1E8\t0x68AF\n0xB1E9\t0x68A2\n0xB1EA\t0x6893\n0xB1EB\t0x68B5\n0xB1EC\t0x687F\n0xB1ED\t0x6876\n0xB1EE\t0x68B1\n0xB1EF\t0x68A7\n0xB1F0\t0x6897\n0xB1F1\t0x68B0\n0xB1F2\t0x6883\n0xB1F3\t0x68C4\n0xB1F4\t0x68AD\n0xB1F5\t0x6886\n0xB1F6\t0x6885\n0xB1F7\t0x6894\n0xB1F8\t0x689D\n0xB1F9\t0x68A8\n0xB1FA\t0x689F\n0xB1FB\t0x68A1\n0xB1FC\t0x6882\n0xB1FD\t0x6B32\n0xB1FE\t0x6BBA\n0xB240\t0x6BEB\n0xB241\t0x6BEC\n0xB242\t0x6C2B\n0xB243\t0x6D8E\n0xB244\t0x6DBC\n0xB245\t0x6DF3\n0xB246\t0x6DD9\n0xB247\t0x6DB2\n0xB248\t0x6DE1\n0xB249\t0x6DCC\n0xB24A\t0x6DE4\n0xB24B\t0x6DFB\n0xB24C\t0x6DFA\n0xB24D\t0x6E05\n0xB24E\t0x6DC7\n0xB24F\t0x6DCB\n0xB250\t0x6DAF\n0xB251\t0x6DD1\n0xB252\t0x6DAE\n0xB253\t0x6DDE\n0xB254\t0x6DF9\n0xB255\t0x6DB8\n0xB256\t0x6DF7\n0xB257\t0x6DF5\n0xB258\t0x6DC5\n0xB259\t0x6DD2\n0xB25A\t0x6E1A\n0xB25B\t0x6DB5\n0xB25C\t0x6DDA\n0xB25D\t0x6DEB\n0xB25E\t0x6DD8\n0xB25F\t0x6DEA\n0xB260\t0x6DF1\n0xB261\t0x6DEE\n0xB262\t0x6DE8\n0xB263\t0x6DC6\n0xB264\t0x6DC4\n0xB265\t0x6DAA\n0xB266\t0x6DEC\n0xB267\t0x6DBF\n0xB268\t0x6DE6\n0xB269\t0x70F9\n0xB26A\t0x7109\n0xB26B\t0x710A\n0xB26C\t0x70FD\n0xB26D\t0x70EF\n0xB26E\t0x723D\n0xB26F\t0x727D\n0xB270\t0x7281\n0xB271\t0x731C\n0xB272\t0x731B\n0xB273\t0x7316\n0xB274\t0x7313\n0xB275\t0x7319\n0xB276\t0x7387\n0xB277\t0x7405\n0xB278\t0x740A\n0xB279\t0x7403\n0xB27A\t0x7406\n0xB27B\t0x73FE\n0xB27C\t0x740D\n0xB27D\t0x74E0\n0xB27E\t0x74F6\n0xB2A1\t0x74F7\n0xB2A2\t0x751C\n0xB2A3\t0x7522\n0xB2A4\t0x7565\n0xB2A5\t0x7566\n0xB2A6\t0x7562\n0xB2A7\t0x7570\n0xB2A8\t0x758F\n0xB2A9\t0x75D4\n0xB2AA\t0x75D5\n0xB2AB\t0x75B5\n0xB2AC\t0x75CA\n0xB2AD\t0x75CD\n0xB2AE\t0x768E\n0xB2AF\t0x76D4\n0xB2B0\t0x76D2\n0xB2B1\t0x76DB\n0xB2B2\t0x7737\n0xB2B3\t0x773E\n0xB2B4\t0x773C\n0xB2B5\t0x7736\n0xB2B6\t0x7738\n0xB2B7\t0x773A\n0xB2B8\t0x786B\n0xB2B9\t0x7843\n0xB2BA\t0x784E\n0xB2BB\t0x7965\n0xB2BC\t0x7968\n0xB2BD\t0x796D\n0xB2BE\t0x79FB\n0xB2BF\t0x7A92\n0xB2C0\t0x7A95\n0xB2C1\t0x7B20\n0xB2C2\t0x7B28\n0xB2C3\t0x7B1B\n0xB2C4\t0x7B2C\n0xB2C5\t0x7B26\n0xB2C6\t0x7B19\n0xB2C7\t0x7B1E\n0xB2C8\t0x7B2E\n0xB2C9\t0x7C92\n0xB2CA\t0x7C97\n0xB2CB\t0x7C95\n0xB2CC\t0x7D46\n0xB2CD\t0x7D43\n0xB2CE\t0x7D71\n0xB2CF\t0x7D2E\n0xB2D0\t0x7D39\n0xB2D1\t0x7D3C\n0xB2D2\t0x7D40\n0xB2D3\t0x7D30\n0xB2D4\t0x7D33\n0xB2D5\t0x7D44\n0xB2D6\t0x7D2F\n0xB2D7\t0x7D42\n0xB2D8\t0x7D32\n0xB2D9\t0x7D31\n0xB2DA\t0x7F3D\n0xB2DB\t0x7F9E\n0xB2DC\t0x7F9A\n0xB2DD\t0x7FCC\n0xB2DE\t0x7FCE\n0xB2DF\t0x7FD2\n0xB2E0\t0x801C\n0xB2E1\t0x804A\n0xB2E2\t0x8046\n0xB2E3\t0x812F\n0xB2E4\t0x8116\n0xB2E5\t0x8123\n0xB2E6\t0x812B\n0xB2E7\t0x8129\n0xB2E8\t0x8130\n0xB2E9\t0x8124\n0xB2EA\t0x8202\n0xB2EB\t0x8235\n0xB2EC\t0x8237\n0xB2ED\t0x8236\n0xB2EE\t0x8239\n0xB2EF\t0x838E\n0xB2F0\t0x839E\n0xB2F1\t0x8398\n0xB2F2\t0x8378\n0xB2F3\t0x83A2\n0xB2F4\t0x8396\n0xB2F5\t0x83BD\n0xB2F6\t0x83AB\n0xB2F7\t0x8392\n0xB2F8\t0x838A\n0xB2F9\t0x8393\n0xB2FA\t0x8389\n0xB2FB\t0x83A0\n0xB2FC\t0x8377\n0xB2FD\t0x837B\n0xB2FE\t0x837C\n0xB340\t0x8386\n0xB341\t0x83A7\n0xB342\t0x8655\n0xB343\t0x5F6A\n0xB344\t0x86C7\n0xB345\t0x86C0\n0xB346\t0x86B6\n0xB347\t0x86C4\n0xB348\t0x86B5\n0xB349\t0x86C6\n0xB34A\t0x86CB\n0xB34B\t0x86B1\n0xB34C\t0x86AF\n0xB34D\t0x86C9\n0xB34E\t0x8853\n0xB34F\t0x889E\n0xB350\t0x8888\n0xB351\t0x88AB\n0xB352\t0x8892\n0xB353\t0x8896\n0xB354\t0x888D\n0xB355\t0x888B\n0xB356\t0x8993\n0xB357\t0x898F\n0xB358\t0x8A2A\n0xB359\t0x8A1D\n0xB35A\t0x8A23\n0xB35B\t0x8A25\n0xB35C\t0x8A31\n0xB35D\t0x8A2D\n0xB35E\t0x8A1F\n0xB35F\t0x8A1B\n0xB360\t0x8A22\n0xB361\t0x8C49\n0xB362\t0x8C5A\n0xB363\t0x8CA9\n0xB364\t0x8CAC\n0xB365\t0x8CAB\n0xB366\t0x8CA8\n0xB367\t0x8CAA\n0xB368\t0x8CA7\n0xB369\t0x8D67\n0xB36A\t0x8D66\n0xB36B\t0x8DBE\n0xB36C\t0x8DBA\n0xB36D\t0x8EDB\n0xB36E\t0x8EDF\n0xB36F\t0x9019\n0xB370\t0x900D\n0xB371\t0x901A\n0xB372\t0x9017\n0xB373\t0x9023\n0xB374\t0x901F\n0xB375\t0x901D\n0xB376\t0x9010\n0xB377\t0x9015\n0xB378\t0x901E\n0xB379\t0x9020\n0xB37A\t0x900F\n0xB37B\t0x9022\n0xB37C\t0x9016\n0xB37D\t0x901B\n0xB37E\t0x9014\n0xB3A1\t0x90E8\n0xB3A2\t0x90ED\n0xB3A3\t0x90FD\n0xB3A4\t0x9157\n0xB3A5\t0x91CE\n0xB3A6\t0x91F5\n0xB3A7\t0x91E6\n0xB3A8\t0x91E3\n0xB3A9\t0x91E7\n0xB3AA\t0x91ED\n0xB3AB\t0x91E9\n0xB3AC\t0x9589\n0xB3AD\t0x966A\n0xB3AE\t0x9675\n0xB3AF\t0x9673\n0xB3B0\t0x9678\n0xB3B1\t0x9670\n0xB3B2\t0x9674\n0xB3B3\t0x9676\n0xB3B4\t0x9677\n0xB3B5\t0x966C\n0xB3B6\t0x96C0\n0xB3B7\t0x96EA\n0xB3B8\t0x96E9\n0xB3B9\t0x7AE0\n0xB3BA\t0x7ADF\n0xB3BB\t0x9802\n0xB3BC\t0x9803\n0xB3BD\t0x9B5A\n0xB3BE\t0x9CE5\n0xB3BF\t0x9E75\n0xB3C0\t0x9E7F\n0xB3C1\t0x9EA5\n0xB3C2\t0x9EBB\n0xB3C3\t0x50A2\n0xB3C4\t0x508D\n0xB3C5\t0x5085\n0xB3C6\t0x5099\n0xB3C7\t0x5091\n0xB3C8\t0x5080\n0xB3C9\t0x5096\n0xB3CA\t0x5098\n0xB3CB\t0x509A\n0xB3CC\t0x6700\n0xB3CD\t0x51F1\n0xB3CE\t0x5272\n0xB3CF\t0x5274\n0xB3D0\t0x5275\n0xB3D1\t0x5269\n0xB3D2\t0x52DE\n0xB3D3\t0x52DD\n0xB3D4\t0x52DB\n0xB3D5\t0x535A\n0xB3D6\t0x53A5\n0xB3D7\t0x557B\n0xB3D8\t0x5580\n0xB3D9\t0x55A7\n0xB3DA\t0x557C\n0xB3DB\t0x558A\n0xB3DC\t0x559D\n0xB3DD\t0x5598\n0xB3DE\t0x5582\n0xB3DF\t0x559C\n0xB3E0\t0x55AA\n0xB3E1\t0x5594\n0xB3E2\t0x5587\n0xB3E3\t0x558B\n0xB3E4\t0x5583\n0xB3E5\t0x55B3\n0xB3E6\t0x55AE\n0xB3E7\t0x559F\n0xB3E8\t0x553E\n0xB3E9\t0x55B2\n0xB3EA\t0x559A\n0xB3EB\t0x55BB\n0xB3EC\t0x55AC\n0xB3ED\t0x55B1\n0xB3EE\t0x557E\n0xB3EF\t0x5589\n0xB3F0\t0x55AB\n0xB3F1\t0x5599\n0xB3F2\t0x570D\n0xB3F3\t0x582F\n0xB3F4\t0x582A\n0xB3F5\t0x5834\n0xB3F6\t0x5824\n0xB3F7\t0x5830\n0xB3F8\t0x5831\n0xB3F9\t0x5821\n0xB3FA\t0x581D\n0xB3FB\t0x5820\n0xB3FC\t0x58F9\n0xB3FD\t0x58FA\n0xB3FE\t0x5960\n0xB440\t0x5A77\n0xB441\t0x5A9A\n0xB442\t0x5A7F\n0xB443\t0x5A92\n0xB444\t0x5A9B\n0xB445\t0x5AA7\n0xB446\t0x5B73\n0xB447\t0x5B71\n0xB448\t0x5BD2\n0xB449\t0x5BCC\n0xB44A\t0x5BD3\n0xB44B\t0x5BD0\n0xB44C\t0x5C0A\n0xB44D\t0x5C0B\n0xB44E\t0x5C31\n0xB44F\t0x5D4C\n0xB450\t0x5D50\n0xB451\t0x5D34\n0xB452\t0x5D47\n0xB453\t0x5DFD\n0xB454\t0x5E45\n0xB455\t0x5E3D\n0xB456\t0x5E40\n0xB457\t0x5E43\n0xB458\t0x5E7E\n0xB459\t0x5ECA\n0xB45A\t0x5EC1\n0xB45B\t0x5EC2\n0xB45C\t0x5EC4\n0xB45D\t0x5F3C\n0xB45E\t0x5F6D\n0xB45F\t0x5FA9\n0xB460\t0x5FAA\n0xB461\t0x5FA8\n0xB462\t0x60D1\n0xB463\t0x60E1\n0xB464\t0x60B2\n0xB465\t0x60B6\n0xB466\t0x60E0\n0xB467\t0x611C\n0xB468\t0x6123\n0xB469\t0x60FA\n0xB46A\t0x6115\n0xB46B\t0x60F0\n0xB46C\t0x60FB\n0xB46D\t0x60F4\n0xB46E\t0x6168\n0xB46F\t0x60F1\n0xB470\t0x610E\n0xB471\t0x60F6\n0xB472\t0x6109\n0xB473\t0x6100\n0xB474\t0x6112\n0xB475\t0x621F\n0xB476\t0x6249\n0xB477\t0x63A3\n0xB478\t0x638C\n0xB479\t0x63CF\n0xB47A\t0x63C0\n0xB47B\t0x63E9\n0xB47C\t0x63C9\n0xB47D\t0x63C6\n0xB47E\t0x63CD\n0xB4A1\t0x63D2\n0xB4A2\t0x63E3\n0xB4A3\t0x63D0\n0xB4A4\t0x63E1\n0xB4A5\t0x63D6\n0xB4A6\t0x63ED\n0xB4A7\t0x63EE\n0xB4A8\t0x6376\n0xB4A9\t0x63F4\n0xB4AA\t0x63EA\n0xB4AB\t0x63DB\n0xB4AC\t0x6452\n0xB4AD\t0x63DA\n0xB4AE\t0x63F9\n0xB4AF\t0x655E\n0xB4B0\t0x6566\n0xB4B1\t0x6562\n0xB4B2\t0x6563\n0xB4B3\t0x6591\n0xB4B4\t0x6590\n0xB4B5\t0x65AF\n0xB4B6\t0x666E\n0xB4B7\t0x6670\n0xB4B8\t0x6674\n0xB4B9\t0x6676\n0xB4BA\t0x666F\n0xB4BB\t0x6691\n0xB4BC\t0x667A\n0xB4BD\t0x667E\n0xB4BE\t0x6677\n0xB4BF\t0x66FE\n0xB4C0\t0x66FF\n0xB4C1\t0x671F\n0xB4C2\t0x671D\n0xB4C3\t0x68FA\n0xB4C4\t0x68D5\n0xB4C5\t0x68E0\n0xB4C6\t0x68D8\n0xB4C7\t0x68D7\n0xB4C8\t0x6905\n0xB4C9\t0x68DF\n0xB4CA\t0x68F5\n0xB4CB\t0x68EE\n0xB4CC\t0x68E7\n0xB4CD\t0x68F9\n0xB4CE\t0x68D2\n0xB4CF\t0x68F2\n0xB4D0\t0x68E3\n0xB4D1\t0x68CB\n0xB4D2\t0x68CD\n0xB4D3\t0x690D\n0xB4D4\t0x6912\n0xB4D5\t0x690E\n0xB4D6\t0x68C9\n0xB4D7\t0x68DA\n0xB4D8\t0x696E\n0xB4D9\t0x68FB\n0xB4DA\t0x6B3E\n0xB4DB\t0x6B3A\n0xB4DC\t0x6B3D\n0xB4DD\t0x6B98\n0xB4DE\t0x6B96\n0xB4DF\t0x6BBC\n0xB4E0\t0x6BEF\n0xB4E1\t0x6C2E\n0xB4E2\t0x6C2F\n0xB4E3\t0x6C2C\n0xB4E4\t0x6E2F\n0xB4E5\t0x6E38\n0xB4E6\t0x6E54\n0xB4E7\t0x6E21\n0xB4E8\t0x6E32\n0xB4E9\t0x6E67\n0xB4EA\t0x6E4A\n0xB4EB\t0x6E20\n0xB4EC\t0x6E25\n0xB4ED\t0x6E23\n0xB4EE\t0x6E1B\n0xB4EF\t0x6E5B\n0xB4F0\t0x6E58\n0xB4F1\t0x6E24\n0xB4F2\t0x6E56\n0xB4F3\t0x6E6E\n0xB4F4\t0x6E2D\n0xB4F5\t0x6E26\n0xB4F6\t0x6E6F\n0xB4F7\t0x6E34\n0xB4F8\t0x6E4D\n0xB4F9\t0x6E3A\n0xB4FA\t0x6E2C\n0xB4FB\t0x6E43\n0xB4FC\t0x6E1D\n0xB4FD\t0x6E3E\n0xB4FE\t0x6ECB\n0xB540\t0x6E89\n0xB541\t0x6E19\n0xB542\t0x6E4E\n0xB543\t0x6E63\n0xB544\t0x6E44\n0xB545\t0x6E72\n0xB546\t0x6E69\n0xB547\t0x6E5F\n0xB548\t0x7119\n0xB549\t0x711A\n0xB54A\t0x7126\n0xB54B\t0x7130\n0xB54C\t0x7121\n0xB54D\t0x7136\n0xB54E\t0x716E\n0xB54F\t0x711C\n0xB550\t0x724C\n0xB551\t0x7284\n0xB552\t0x7280\n0xB553\t0x7336\n0xB554\t0x7325\n0xB555\t0x7334\n0xB556\t0x7329\n0xB557\t0x743A\n0xB558\t0x742A\n0xB559\t0x7433\n0xB55A\t0x7422\n0xB55B\t0x7425\n0xB55C\t0x7435\n0xB55D\t0x7436\n0xB55E\t0x7434\n0xB55F\t0x742F\n0xB560\t0x741B\n0xB561\t0x7426\n0xB562\t0x7428\n0xB563\t0x7525\n0xB564\t0x7526\n0xB565\t0x756B\n0xB566\t0x756A\n0xB567\t0x75E2\n0xB568\t0x75DB\n0xB569\t0x75E3\n0xB56A\t0x75D9\n0xB56B\t0x75D8\n0xB56C\t0x75DE\n0xB56D\t0x75E0\n0xB56E\t0x767B\n0xB56F\t0x767C\n0xB570\t0x7696\n0xB571\t0x7693\n0xB572\t0x76B4\n0xB573\t0x76DC\n0xB574\t0x774F\n0xB575\t0x77ED\n0xB576\t0x785D\n0xB577\t0x786C\n0xB578\t0x786F\n0xB579\t0x7A0D\n0xB57A\t0x7A08\n0xB57B\t0x7A0B\n0xB57C\t0x7A05\n0xB57D\t0x7A00\n0xB57E\t0x7A98\n0xB5A1\t0x7A97\n0xB5A2\t0x7A96\n0xB5A3\t0x7AE5\n0xB5A4\t0x7AE3\n0xB5A5\t0x7B49\n0xB5A6\t0x7B56\n0xB5A7\t0x7B46\n0xB5A8\t0x7B50\n0xB5A9\t0x7B52\n0xB5AA\t0x7B54\n0xB5AB\t0x7B4D\n0xB5AC\t0x7B4B\n0xB5AD\t0x7B4F\n0xB5AE\t0x7B51\n0xB5AF\t0x7C9F\n0xB5B0\t0x7CA5\n0xB5B1\t0x7D5E\n0xB5B2\t0x7D50\n0xB5B3\t0x7D68\n0xB5B4\t0x7D55\n0xB5B5\t0x7D2B\n0xB5B6\t0x7D6E\n0xB5B7\t0x7D72\n0xB5B8\t0x7D61\n0xB5B9\t0x7D66\n0xB5BA\t0x7D62\n0xB5BB\t0x7D70\n0xB5BC\t0x7D73\n0xB5BD\t0x5584\n0xB5BE\t0x7FD4\n0xB5BF\t0x7FD5\n0xB5C0\t0x800B\n0xB5C1\t0x8052\n0xB5C2\t0x8085\n0xB5C3\t0x8155\n0xB5C4\t0x8154\n0xB5C5\t0x814B\n0xB5C6\t0x8151\n0xB5C7\t0x814E\n0xB5C8\t0x8139\n0xB5C9\t0x8146\n0xB5CA\t0x813E\n0xB5CB\t0x814C\n0xB5CC\t0x8153\n0xB5CD\t0x8174\n0xB5CE\t0x8212\n0xB5CF\t0x821C\n0xB5D0\t0x83E9\n0xB5D1\t0x8403\n0xB5D2\t0x83F8\n0xB5D3\t0x840D\n0xB5D4\t0x83E0\n0xB5D5\t0x83C5\n0xB5D6\t0x840B\n0xB5D7\t0x83C1\n0xB5D8\t0x83EF\n0xB5D9\t0x83F1\n0xB5DA\t0x83F4\n0xB5DB\t0x8457\n0xB5DC\t0x840A\n0xB5DD\t0x83F0\n0xB5DE\t0x840C\n0xB5DF\t0x83CC\n0xB5E0\t0x83FD\n0xB5E1\t0x83F2\n0xB5E2\t0x83CA\n0xB5E3\t0x8438\n0xB5E4\t0x840E\n0xB5E5\t0x8404\n0xB5E6\t0x83DC\n0xB5E7\t0x8407\n0xB5E8\t0x83D4\n0xB5E9\t0x83DF\n0xB5EA\t0x865B\n0xB5EB\t0x86DF\n0xB5EC\t0x86D9\n0xB5ED\t0x86ED\n0xB5EE\t0x86D4\n0xB5EF\t0x86DB\n0xB5F0\t0x86E4\n0xB5F1\t0x86D0\n0xB5F2\t0x86DE\n0xB5F3\t0x8857\n0xB5F4\t0x88C1\n0xB5F5\t0x88C2\n0xB5F6\t0x88B1\n0xB5F7\t0x8983\n0xB5F8\t0x8996\n0xB5F9\t0x8A3B\n0xB5FA\t0x8A60\n0xB5FB\t0x8A55\n0xB5FC\t0x8A5E\n0xB5FD\t0x8A3C\n0xB5FE\t0x8A41\n0xB640\t0x8A54\n0xB641\t0x8A5B\n0xB642\t0x8A50\n0xB643\t0x8A46\n0xB644\t0x8A34\n0xB645\t0x8A3A\n0xB646\t0x8A36\n0xB647\t0x8A56\n0xB648\t0x8C61\n0xB649\t0x8C82\n0xB64A\t0x8CAF\n0xB64B\t0x8CBC\n0xB64C\t0x8CB3\n0xB64D\t0x8CBD\n0xB64E\t0x8CC1\n0xB64F\t0x8CBB\n0xB650\t0x8CC0\n0xB651\t0x8CB4\n0xB652\t0x8CB7\n0xB653\t0x8CB6\n0xB654\t0x8CBF\n0xB655\t0x8CB8\n0xB656\t0x8D8A\n0xB657\t0x8D85\n0xB658\t0x8D81\n0xB659\t0x8DCE\n0xB65A\t0x8DDD\n0xB65B\t0x8DCB\n0xB65C\t0x8DDA\n0xB65D\t0x8DD1\n0xB65E\t0x8DCC\n0xB65F\t0x8DDB\n0xB660\t0x8DC6\n0xB661\t0x8EFB\n0xB662\t0x8EF8\n0xB663\t0x8EFC\n0xB664\t0x8F9C\n0xB665\t0x902E\n0xB666\t0x9035\n0xB667\t0x9031\n0xB668\t0x9038\n0xB669\t0x9032\n0xB66A\t0x9036\n0xB66B\t0x9102\n0xB66C\t0x90F5\n0xB66D\t0x9109\n0xB66E\t0x90FE\n0xB66F\t0x9163\n0xB670\t0x9165\n0xB671\t0x91CF\n0xB672\t0x9214\n0xB673\t0x9215\n0xB674\t0x9223\n0xB675\t0x9209\n0xB676\t0x921E\n0xB677\t0x920D\n0xB678\t0x9210\n0xB679\t0x9207\n0xB67A\t0x9211\n0xB67B\t0x9594\n0xB67C\t0x958F\n0xB67D\t0x958B\n0xB67E\t0x9591\n0xB6A1\t0x9593\n0xB6A2\t0x9592\n0xB6A3\t0x958E\n0xB6A4\t0x968A\n0xB6A5\t0x968E\n0xB6A6\t0x968B\n0xB6A7\t0x967D\n0xB6A8\t0x9685\n0xB6A9\t0x9686\n0xB6AA\t0x968D\n0xB6AB\t0x9672\n0xB6AC\t0x9684\n0xB6AD\t0x96C1\n0xB6AE\t0x96C5\n0xB6AF\t0x96C4\n0xB6B0\t0x96C6\n0xB6B1\t0x96C7\n0xB6B2\t0x96EF\n0xB6B3\t0x96F2\n0xB6B4\t0x97CC\n0xB6B5\t0x9805\n0xB6B6\t0x9806\n0xB6B7\t0x9808\n0xB6B8\t0x98E7\n0xB6B9\t0x98EA\n0xB6BA\t0x98EF\n0xB6BB\t0x98E9\n0xB6BC\t0x98F2\n0xB6BD\t0x98ED\n0xB6BE\t0x99AE\n0xB6BF\t0x99AD\n0xB6C0\t0x9EC3\n0xB6C1\t0x9ECD\n0xB6C2\t0x9ED1\n0xB6C3\t0x4E82\n0xB6C4\t0x50AD\n0xB6C5\t0x50B5\n0xB6C6\t0x50B2\n0xB6C7\t0x50B3\n0xB6C8\t0x50C5\n0xB6C9\t0x50BE\n0xB6CA\t0x50AC\n0xB6CB\t0x50B7\n0xB6CC\t0x50BB\n0xB6CD\t0x50AF\n0xB6CE\t0x50C7\n0xB6CF\t0x527F\n0xB6D0\t0x5277\n0xB6D1\t0x527D\n0xB6D2\t0x52DF\n0xB6D3\t0x52E6\n0xB6D4\t0x52E4\n0xB6D5\t0x52E2\n0xB6D6\t0x52E3\n0xB6D7\t0x532F\n0xB6D8\t0x55DF\n0xB6D9\t0x55E8\n0xB6DA\t0x55D3\n0xB6DB\t0x55E6\n0xB6DC\t0x55CE\n0xB6DD\t0x55DC\n0xB6DE\t0x55C7\n0xB6DF\t0x55D1\n0xB6E0\t0x55E3\n0xB6E1\t0x55E4\n0xB6E2\t0x55EF\n0xB6E3\t0x55DA\n0xB6E4\t0x55E1\n0xB6E5\t0x55C5\n0xB6E6\t0x55C6\n0xB6E7\t0x55E5\n0xB6E8\t0x55C9\n0xB6E9\t0x5712\n0xB6EA\t0x5713\n0xB6EB\t0x585E\n0xB6EC\t0x5851\n0xB6ED\t0x5858\n0xB6EE\t0x5857\n0xB6EF\t0x585A\n0xB6F0\t0x5854\n0xB6F1\t0x586B\n0xB6F2\t0x584C\n0xB6F3\t0x586D\n0xB6F4\t0x584A\n0xB6F5\t0x5862\n0xB6F6\t0x5852\n0xB6F7\t0x584B\n0xB6F8\t0x5967\n0xB6F9\t0x5AC1\n0xB6FA\t0x5AC9\n0xB6FB\t0x5ACC\n0xB6FC\t0x5ABE\n0xB6FD\t0x5ABD\n0xB6FE\t0x5ABC\n0xB740\t0x5AB3\n0xB741\t0x5AC2\n0xB742\t0x5AB2\n0xB743\t0x5D69\n0xB744\t0x5D6F\n0xB745\t0x5E4C\n0xB746\t0x5E79\n0xB747\t0x5EC9\n0xB748\t0x5EC8\n0xB749\t0x5F12\n0xB74A\t0x5F59\n0xB74B\t0x5FAC\n0xB74C\t0x5FAE\n0xB74D\t0x611A\n0xB74E\t0x610F\n0xB74F\t0x6148\n0xB750\t0x611F\n0xB751\t0x60F3\n0xB752\t0x611B\n0xB753\t0x60F9\n0xB754\t0x6101\n0xB755\t0x6108\n0xB756\t0x614E\n0xB757\t0x614C\n0xB758\t0x6144\n0xB759\t0x614D\n0xB75A\t0x613E\n0xB75B\t0x6134\n0xB75C\t0x6127\n0xB75D\t0x610D\n0xB75E\t0x6106\n0xB75F\t0x6137\n0xB760\t0x6221\n0xB761\t0x6222\n0xB762\t0x6413\n0xB763\t0x643E\n0xB764\t0x641E\n0xB765\t0x642A\n0xB766\t0x642D\n0xB767\t0x643D\n0xB768\t0x642C\n0xB769\t0x640F\n0xB76A\t0x641C\n0xB76B\t0x6414\n0xB76C\t0x640D\n0xB76D\t0x6436\n0xB76E\t0x6416\n0xB76F\t0x6417\n0xB770\t0x6406\n0xB771\t0x656C\n0xB772\t0x659F\n0xB773\t0x65B0\n0xB774\t0x6697\n0xB775\t0x6689\n0xB776\t0x6687\n0xB777\t0x6688\n0xB778\t0x6696\n0xB779\t0x6684\n0xB77A\t0x6698\n0xB77B\t0x668D\n0xB77C\t0x6703\n0xB77D\t0x6994\n0xB77E\t0x696D\n0xB7A1\t0x695A\n0xB7A2\t0x6977\n0xB7A3\t0x6960\n0xB7A4\t0x6954\n0xB7A5\t0x6975\n0xB7A6\t0x6930\n0xB7A7\t0x6982\n0xB7A8\t0x694A\n0xB7A9\t0x6968\n0xB7AA\t0x696B\n0xB7AB\t0x695E\n0xB7AC\t0x6953\n0xB7AD\t0x6979\n0xB7AE\t0x6986\n0xB7AF\t0x695D\n0xB7B0\t0x6963\n0xB7B1\t0x695B\n0xB7B2\t0x6B47\n0xB7B3\t0x6B72\n0xB7B4\t0x6BC0\n0xB7B5\t0x6BBF\n0xB7B6\t0x6BD3\n0xB7B7\t0x6BFD\n0xB7B8\t0x6EA2\n0xB7B9\t0x6EAF\n0xB7BA\t0x6ED3\n0xB7BB\t0x6EB6\n0xB7BC\t0x6EC2\n0xB7BD\t0x6E90\n0xB7BE\t0x6E9D\n0xB7BF\t0x6EC7\n0xB7C0\t0x6EC5\n0xB7C1\t0x6EA5\n0xB7C2\t0x6E98\n0xB7C3\t0x6EBC\n0xB7C4\t0x6EBA\n0xB7C5\t0x6EAB\n0xB7C6\t0x6ED1\n0xB7C7\t0x6E96\n0xB7C8\t0x6E9C\n0xB7C9\t0x6EC4\n0xB7CA\t0x6ED4\n0xB7CB\t0x6EAA\n0xB7CC\t0x6EA7\n0xB7CD\t0x6EB4\n0xB7CE\t0x714E\n0xB7CF\t0x7159\n0xB7D0\t0x7169\n0xB7D1\t0x7164\n0xB7D2\t0x7149\n0xB7D3\t0x7167\n0xB7D4\t0x715C\n0xB7D5\t0x716C\n0xB7D6\t0x7166\n0xB7D7\t0x714C\n0xB7D8\t0x7165\n0xB7D9\t0x715E\n0xB7DA\t0x7146\n0xB7DB\t0x7168\n0xB7DC\t0x7156\n0xB7DD\t0x723A\n0xB7DE\t0x7252\n0xB7DF\t0x7337\n0xB7E0\t0x7345\n0xB7E1\t0x733F\n0xB7E2\t0x733E\n0xB7E3\t0x746F\n0xB7E4\t0x745A\n0xB7E5\t0x7455\n0xB7E6\t0x745F\n0xB7E7\t0x745E\n0xB7E8\t0x7441\n0xB7E9\t0x743F\n0xB7EA\t0x7459\n0xB7EB\t0x745B\n0xB7EC\t0x745C\n0xB7ED\t0x7576\n0xB7EE\t0x7578\n0xB7EF\t0x7600\n0xB7F0\t0x75F0\n0xB7F1\t0x7601\n0xB7F2\t0x75F2\n0xB7F3\t0x75F1\n0xB7F4\t0x75FA\n0xB7F5\t0x75FF\n0xB7F6\t0x75F4\n0xB7F7\t0x75F3\n0xB7F8\t0x76DE\n0xB7F9\t0x76DF\n0xB7FA\t0x775B\n0xB7FB\t0x776B\n0xB7FC\t0x7766\n0xB7FD\t0x775E\n0xB7FE\t0x7763\n0xB840\t0x7779\n0xB841\t0x776A\n0xB842\t0x776C\n0xB843\t0x775C\n0xB844\t0x7765\n0xB845\t0x7768\n0xB846\t0x7762\n0xB847\t0x77EE\n0xB848\t0x788E\n0xB849\t0x78B0\n0xB84A\t0x7897\n0xB84B\t0x7898\n0xB84C\t0x788C\n0xB84D\t0x7889\n0xB84E\t0x787C\n0xB84F\t0x7891\n0xB850\t0x7893\n0xB851\t0x787F\n0xB852\t0x797A\n0xB853\t0x797F\n0xB854\t0x7981\n0xB855\t0x842C\n0xB856\t0x79BD\n0xB857\t0x7A1C\n0xB858\t0x7A1A\n0xB859\t0x7A20\n0xB85A\t0x7A14\n0xB85B\t0x7A1F\n0xB85C\t0x7A1E\n0xB85D\t0x7A9F\n0xB85E\t0x7AA0\n0xB85F\t0x7B77\n0xB860\t0x7BC0\n0xB861\t0x7B60\n0xB862\t0x7B6E\n0xB863\t0x7B67\n0xB864\t0x7CB1\n0xB865\t0x7CB3\n0xB866\t0x7CB5\n0xB867\t0x7D93\n0xB868\t0x7D79\n0xB869\t0x7D91\n0xB86A\t0x7D81\n0xB86B\t0x7D8F\n0xB86C\t0x7D5B\n0xB86D\t0x7F6E\n0xB86E\t0x7F69\n0xB86F\t0x7F6A\n0xB870\t0x7F72\n0xB871\t0x7FA9\n0xB872\t0x7FA8\n0xB873\t0x7FA4\n0xB874\t0x8056\n0xB875\t0x8058\n0xB876\t0x8086\n0xB877\t0x8084\n0xB878\t0x8171\n0xB879\t0x8170\n0xB87A\t0x8178\n0xB87B\t0x8165\n0xB87C\t0x816E\n0xB87D\t0x8173\n0xB87E\t0x816B\n0xB8A1\t0x8179\n0xB8A2\t0x817A\n0xB8A3\t0x8166\n0xB8A4\t0x8205\n0xB8A5\t0x8247\n0xB8A6\t0x8482\n0xB8A7\t0x8477\n0xB8A8\t0x843D\n0xB8A9\t0x8431\n0xB8AA\t0x8475\n0xB8AB\t0x8466\n0xB8AC\t0x846B\n0xB8AD\t0x8449\n0xB8AE\t0x846C\n0xB8AF\t0x845B\n0xB8B0\t0x843C\n0xB8B1\t0x8435\n0xB8B2\t0x8461\n0xB8B3\t0x8463\n0xB8B4\t0x8469\n0xB8B5\t0x846D\n0xB8B6\t0x8446\n0xB8B7\t0x865E\n0xB8B8\t0x865C\n0xB8B9\t0x865F\n0xB8BA\t0x86F9\n0xB8BB\t0x8713\n0xB8BC\t0x8708\n0xB8BD\t0x8707\n0xB8BE\t0x8700\n0xB8BF\t0x86FE\n0xB8C0\t0x86FB\n0xB8C1\t0x8702\n0xB8C2\t0x8703\n0xB8C3\t0x8706\n0xB8C4\t0x870A\n0xB8C5\t0x8859\n0xB8C6\t0x88DF\n0xB8C7\t0x88D4\n0xB8C8\t0x88D9\n0xB8C9\t0x88DC\n0xB8CA\t0x88D8\n0xB8CB\t0x88DD\n0xB8CC\t0x88E1\n0xB8CD\t0x88CA\n0xB8CE\t0x88D5\n0xB8CF\t0x88D2\n0xB8D0\t0x899C\n0xB8D1\t0x89E3\n0xB8D2\t0x8A6B\n0xB8D3\t0x8A72\n0xB8D4\t0x8A73\n0xB8D5\t0x8A66\n0xB8D6\t0x8A69\n0xB8D7\t0x8A70\n0xB8D8\t0x8A87\n0xB8D9\t0x8A7C\n0xB8DA\t0x8A63\n0xB8DB\t0x8AA0\n0xB8DC\t0x8A71\n0xB8DD\t0x8A85\n0xB8DE\t0x8A6D\n0xB8DF\t0x8A62\n0xB8E0\t0x8A6E\n0xB8E1\t0x8A6C\n0xB8E2\t0x8A79\n0xB8E3\t0x8A7B\n0xB8E4\t0x8A3E\n0xB8E5\t0x8A68\n0xB8E6\t0x8C62\n0xB8E7\t0x8C8A\n0xB8E8\t0x8C89\n0xB8E9\t0x8CCA\n0xB8EA\t0x8CC7\n0xB8EB\t0x8CC8\n0xB8EC\t0x8CC4\n0xB8ED\t0x8CB2\n0xB8EE\t0x8CC3\n0xB8EF\t0x8CC2\n0xB8F0\t0x8CC5\n0xB8F1\t0x8DE1\n0xB8F2\t0x8DDF\n0xB8F3\t0x8DE8\n0xB8F4\t0x8DEF\n0xB8F5\t0x8DF3\n0xB8F6\t0x8DFA\n0xB8F7\t0x8DEA\n0xB8F8\t0x8DE4\n0xB8F9\t0x8DE6\n0xB8FA\t0x8EB2\n0xB8FB\t0x8F03\n0xB8FC\t0x8F09\n0xB8FD\t0x8EFE\n0xB8FE\t0x8F0A\n0xB940\t0x8F9F\n0xB941\t0x8FB2\n0xB942\t0x904B\n0xB943\t0x904A\n0xB944\t0x9053\n0xB945\t0x9042\n0xB946\t0x9054\n0xB947\t0x903C\n0xB948\t0x9055\n0xB949\t0x9050\n0xB94A\t0x9047\n0xB94B\t0x904F\n0xB94C\t0x904E\n0xB94D\t0x904D\n0xB94E\t0x9051\n0xB94F\t0x903E\n0xB950\t0x9041\n0xB951\t0x9112\n0xB952\t0x9117\n0xB953\t0x916C\n0xB954\t0x916A\n0xB955\t0x9169\n0xB956\t0x91C9\n0xB957\t0x9237\n0xB958\t0x9257\n0xB959\t0x9238\n0xB95A\t0x923D\n0xB95B\t0x9240\n0xB95C\t0x923E\n0xB95D\t0x925B\n0xB95E\t0x924B\n0xB95F\t0x9264\n0xB960\t0x9251\n0xB961\t0x9234\n0xB962\t0x9249\n0xB963\t0x924D\n0xB964\t0x9245\n0xB965\t0x9239\n0xB966\t0x923F\n0xB967\t0x925A\n0xB968\t0x9598\n0xB969\t0x9698\n0xB96A\t0x9694\n0xB96B\t0x9695\n0xB96C\t0x96CD\n0xB96D\t0x96CB\n0xB96E\t0x96C9\n0xB96F\t0x96CA\n0xB970\t0x96F7\n0xB971\t0x96FB\n0xB972\t0x96F9\n0xB973\t0x96F6\n0xB974\t0x9756\n0xB975\t0x9774\n0xB976\t0x9776\n0xB977\t0x9810\n0xB978\t0x9811\n0xB979\t0x9813\n0xB97A\t0x980A\n0xB97B\t0x9812\n0xB97C\t0x980C\n0xB97D\t0x98FC\n0xB97E\t0x98F4\n0xB9A1\t0x98FD\n0xB9A2\t0x98FE\n0xB9A3\t0x99B3\n0xB9A4\t0x99B1\n0xB9A5\t0x99B4\n0xB9A6\t0x9AE1\n0xB9A7\t0x9CE9\n0xB9A8\t0x9E82\n0xB9A9\t0x9F0E\n0xB9AA\t0x9F13\n0xB9AB\t0x9F20\n0xB9AC\t0x50E7\n0xB9AD\t0x50EE\n0xB9AE\t0x50E5\n0xB9AF\t0x50D6\n0xB9B0\t0x50ED\n0xB9B1\t0x50DA\n0xB9B2\t0x50D5\n0xB9B3\t0x50CF\n0xB9B4\t0x50D1\n0xB9B5\t0x50F1\n0xB9B6\t0x50CE\n0xB9B7\t0x50E9\n0xB9B8\t0x5162\n0xB9B9\t0x51F3\n0xB9BA\t0x5283\n0xB9BB\t0x5282\n0xB9BC\t0x5331\n0xB9BD\t0x53AD\n0xB9BE\t0x55FE\n0xB9BF\t0x5600\n0xB9C0\t0x561B\n0xB9C1\t0x5617\n0xB9C2\t0x55FD\n0xB9C3\t0x5614\n0xB9C4\t0x5606\n0xB9C5\t0x5609\n0xB9C6\t0x560D\n0xB9C7\t0x560E\n0xB9C8\t0x55F7\n0xB9C9\t0x5616\n0xB9CA\t0x561F\n0xB9CB\t0x5608\n0xB9CC\t0x5610\n0xB9CD\t0x55F6\n0xB9CE\t0x5718\n0xB9CF\t0x5716\n0xB9D0\t0x5875\n0xB9D1\t0x587E\n0xB9D2\t0x5883\n0xB9D3\t0x5893\n0xB9D4\t0x588A\n0xB9D5\t0x5879\n0xB9D6\t0x5885\n0xB9D7\t0x587D\n0xB9D8\t0x58FD\n0xB9D9\t0x5925\n0xB9DA\t0x5922\n0xB9DB\t0x5924\n0xB9DC\t0x596A\n0xB9DD\t0x5969\n0xB9DE\t0x5AE1\n0xB9DF\t0x5AE6\n0xB9E0\t0x5AE9\n0xB9E1\t0x5AD7\n0xB9E2\t0x5AD6\n0xB9E3\t0x5AD8\n0xB9E4\t0x5AE3\n0xB9E5\t0x5B75\n0xB9E6\t0x5BDE\n0xB9E7\t0x5BE7\n0xB9E8\t0x5BE1\n0xB9E9\t0x5BE5\n0xB9EA\t0x5BE6\n0xB9EB\t0x5BE8\n0xB9EC\t0x5BE2\n0xB9ED\t0x5BE4\n0xB9EE\t0x5BDF\n0xB9EF\t0x5C0D\n0xB9F0\t0x5C62\n0xB9F1\t0x5D84\n0xB9F2\t0x5D87\n0xB9F3\t0x5E5B\n0xB9F4\t0x5E63\n0xB9F5\t0x5E55\n0xB9F6\t0x5E57\n0xB9F7\t0x5E54\n0xB9F8\t0x5ED3\n0xB9F9\t0x5ED6\n0xB9FA\t0x5F0A\n0xB9FB\t0x5F46\n0xB9FC\t0x5F70\n0xB9FD\t0x5FB9\n0xB9FE\t0x6147\n0xBA40\t0x613F\n0xBA41\t0x614B\n0xBA42\t0x6177\n0xBA43\t0x6162\n0xBA44\t0x6163\n0xBA45\t0x615F\n0xBA46\t0x615A\n0xBA47\t0x6158\n0xBA48\t0x6175\n0xBA49\t0x622A\n0xBA4A\t0x6487\n0xBA4B\t0x6458\n0xBA4C\t0x6454\n0xBA4D\t0x64A4\n0xBA4E\t0x6478\n0xBA4F\t0x645F\n0xBA50\t0x647A\n0xBA51\t0x6451\n0xBA52\t0x6467\n0xBA53\t0x6434\n0xBA54\t0x646D\n0xBA55\t0x647B\n0xBA56\t0x6572\n0xBA57\t0x65A1\n0xBA58\t0x65D7\n0xBA59\t0x65D6\n0xBA5A\t0x66A2\n0xBA5B\t0x66A8\n0xBA5C\t0x669D\n0xBA5D\t0x699C\n0xBA5E\t0x69A8\n0xBA5F\t0x6995\n0xBA60\t0x69C1\n0xBA61\t0x69AE\n0xBA62\t0x69D3\n0xBA63\t0x69CB\n0xBA64\t0x699B\n0xBA65\t0x69B7\n0xBA66\t0x69BB\n0xBA67\t0x69AB\n0xBA68\t0x69B4\n0xBA69\t0x69D0\n0xBA6A\t0x69CD\n0xBA6B\t0x69AD\n0xBA6C\t0x69CC\n0xBA6D\t0x69A6\n0xBA6E\t0x69C3\n0xBA6F\t0x69A3\n0xBA70\t0x6B49\n0xBA71\t0x6B4C\n0xBA72\t0x6C33\n0xBA73\t0x6F33\n0xBA74\t0x6F14\n0xBA75\t0x6EFE\n0xBA76\t0x6F13\n0xBA77\t0x6EF4\n0xBA78\t0x6F29\n0xBA79\t0x6F3E\n0xBA7A\t0x6F20\n0xBA7B\t0x6F2C\n0xBA7C\t0x6F0F\n0xBA7D\t0x6F02\n0xBA7E\t0x6F22\n0xBAA1\t0x6EFF\n0xBAA2\t0x6EEF\n0xBAA3\t0x6F06\n0xBAA4\t0x6F31\n0xBAA5\t0x6F38\n0xBAA6\t0x6F32\n0xBAA7\t0x6F23\n0xBAA8\t0x6F15\n0xBAA9\t0x6F2B\n0xBAAA\t0x6F2F\n0xBAAB\t0x6F88\n0xBAAC\t0x6F2A\n0xBAAD\t0x6EEC\n0xBAAE\t0x6F01\n0xBAAF\t0x6EF2\n0xBAB0\t0x6ECC\n0xBAB1\t0x6EF7\n0xBAB2\t0x7194\n0xBAB3\t0x7199\n0xBAB4\t0x717D\n0xBAB5\t0x718A\n0xBAB6\t0x7184\n0xBAB7\t0x7192\n0xBAB8\t0x723E\n0xBAB9\t0x7292\n0xBABA\t0x7296\n0xBABB\t0x7344\n0xBABC\t0x7350\n0xBABD\t0x7464\n0xBABE\t0x7463\n0xBABF\t0x746A\n0xBAC0\t0x7470\n0xBAC1\t0x746D\n0xBAC2\t0x7504\n0xBAC3\t0x7591\n0xBAC4\t0x7627\n0xBAC5\t0x760D\n0xBAC6\t0x760B\n0xBAC7\t0x7609\n0xBAC8\t0x7613\n0xBAC9\t0x76E1\n0xBACA\t0x76E3\n0xBACB\t0x7784\n0xBACC\t0x777D\n0xBACD\t0x777F\n0xBACE\t0x7761\n0xBACF\t0x78C1\n0xBAD0\t0x789F\n0xBAD1\t0x78A7\n0xBAD2\t0x78B3\n0xBAD3\t0x78A9\n0xBAD4\t0x78A3\n0xBAD5\t0x798E\n0xBAD6\t0x798F\n0xBAD7\t0x798D\n0xBAD8\t0x7A2E\n0xBAD9\t0x7A31\n0xBADA\t0x7AAA\n0xBADB\t0x7AA9\n0xBADC\t0x7AED\n0xBADD\t0x7AEF\n0xBADE\t0x7BA1\n0xBADF\t0x7B95\n0xBAE0\t0x7B8B\n0xBAE1\t0x7B75\n0xBAE2\t0x7B97\n0xBAE3\t0x7B9D\n0xBAE4\t0x7B94\n0xBAE5\t0x7B8F\n0xBAE6\t0x7BB8\n0xBAE7\t0x7B87\n0xBAE8\t0x7B84\n0xBAE9\t0x7CB9\n0xBAEA\t0x7CBD\n0xBAEB\t0x7CBE\n0xBAEC\t0x7DBB\n0xBAED\t0x7DB0\n0xBAEE\t0x7D9C\n0xBAEF\t0x7DBD\n0xBAF0\t0x7DBE\n0xBAF1\t0x7DA0\n0xBAF2\t0x7DCA\n0xBAF3\t0x7DB4\n0xBAF4\t0x7DB2\n0xBAF5\t0x7DB1\n0xBAF6\t0x7DBA\n0xBAF7\t0x7DA2\n0xBAF8\t0x7DBF\n0xBAF9\t0x7DB5\n0xBAFA\t0x7DB8\n0xBAFB\t0x7DAD\n0xBAFC\t0x7DD2\n0xBAFD\t0x7DC7\n0xBAFE\t0x7DAC\n0xBB40\t0x7F70\n0xBB41\t0x7FE0\n0xBB42\t0x7FE1\n0xBB43\t0x7FDF\n0xBB44\t0x805E\n0xBB45\t0x805A\n0xBB46\t0x8087\n0xBB47\t0x8150\n0xBB48\t0x8180\n0xBB49\t0x818F\n0xBB4A\t0x8188\n0xBB4B\t0x818A\n0xBB4C\t0x817F\n0xBB4D\t0x8182\n0xBB4E\t0x81E7\n0xBB4F\t0x81FA\n0xBB50\t0x8207\n0xBB51\t0x8214\n0xBB52\t0x821E\n0xBB53\t0x824B\n0xBB54\t0x84C9\n0xBB55\t0x84BF\n0xBB56\t0x84C6\n0xBB57\t0x84C4\n0xBB58\t0x8499\n0xBB59\t0x849E\n0xBB5A\t0x84B2\n0xBB5B\t0x849C\n0xBB5C\t0x84CB\n0xBB5D\t0x84B8\n0xBB5E\t0x84C0\n0xBB5F\t0x84D3\n0xBB60\t0x8490\n0xBB61\t0x84BC\n0xBB62\t0x84D1\n0xBB63\t0x84CA\n0xBB64\t0x873F\n0xBB65\t0x871C\n0xBB66\t0x873B\n0xBB67\t0x8722\n0xBB68\t0x8725\n0xBB69\t0x8734\n0xBB6A\t0x8718\n0xBB6B\t0x8755\n0xBB6C\t0x8737\n0xBB6D\t0x8729\n0xBB6E\t0x88F3\n0xBB6F\t0x8902\n0xBB70\t0x88F4\n0xBB71\t0x88F9\n0xBB72\t0x88F8\n0xBB73\t0x88FD\n0xBB74\t0x88E8\n0xBB75\t0x891A\n0xBB76\t0x88EF\n0xBB77\t0x8AA6\n0xBB78\t0x8A8C\n0xBB79\t0x8A9E\n0xBB7A\t0x8AA3\n0xBB7B\t0x8A8D\n0xBB7C\t0x8AA1\n0xBB7D\t0x8A93\n0xBB7E\t0x8AA4\n0xBBA1\t0x8AAA\n0xBBA2\t0x8AA5\n0xBBA3\t0x8AA8\n0xBBA4\t0x8A98\n0xBBA5\t0x8A91\n0xBBA6\t0x8A9A\n0xBBA7\t0x8AA7\n0xBBA8\t0x8C6A\n0xBBA9\t0x8C8D\n0xBBAA\t0x8C8C\n0xBBAB\t0x8CD3\n0xBBAC\t0x8CD1\n0xBBAD\t0x8CD2\n0xBBAE\t0x8D6B\n0xBBAF\t0x8D99\n0xBBB0\t0x8D95\n0xBBB1\t0x8DFC\n0xBBB2\t0x8F14\n0xBBB3\t0x8F12\n0xBBB4\t0x8F15\n0xBBB5\t0x8F13\n0xBBB6\t0x8FA3\n0xBBB7\t0x9060\n0xBBB8\t0x9058\n0xBBB9\t0x905C\n0xBBBA\t0x9063\n0xBBBB\t0x9059\n0xBBBC\t0x905E\n0xBBBD\t0x9062\n0xBBBE\t0x905D\n0xBBBF\t0x905B\n0xBBC0\t0x9119\n0xBBC1\t0x9118\n0xBBC2\t0x911E\n0xBBC3\t0x9175\n0xBBC4\t0x9178\n0xBBC5\t0x9177\n0xBBC6\t0x9174\n0xBBC7\t0x9278\n0xBBC8\t0x9280\n0xBBC9\t0x9285\n0xBBCA\t0x9298\n0xBBCB\t0x9296\n0xBBCC\t0x927B\n0xBBCD\t0x9293\n0xBBCE\t0x929C\n0xBBCF\t0x92A8\n0xBBD0\t0x927C\n0xBBD1\t0x9291\n0xBBD2\t0x95A1\n0xBBD3\t0x95A8\n0xBBD4\t0x95A9\n0xBBD5\t0x95A3\n0xBBD6\t0x95A5\n0xBBD7\t0x95A4\n0xBBD8\t0x9699\n0xBBD9\t0x969C\n0xBBDA\t0x969B\n0xBBDB\t0x96CC\n0xBBDC\t0x96D2\n0xBBDD\t0x9700\n0xBBDE\t0x977C\n0xBBDF\t0x9785\n0xBBE0\t0x97F6\n0xBBE1\t0x9817\n0xBBE2\t0x9818\n0xBBE3\t0x98AF\n0xBBE4\t0x98B1\n0xBBE5\t0x9903\n0xBBE6\t0x9905\n0xBBE7\t0x990C\n0xBBE8\t0x9909\n0xBBE9\t0x99C1\n0xBBEA\t0x9AAF\n0xBBEB\t0x9AB0\n0xBBEC\t0x9AE6\n0xBBED\t0x9B41\n0xBBEE\t0x9B42\n0xBBEF\t0x9CF4\n0xBBF0\t0x9CF6\n0xBBF1\t0x9CF3\n0xBBF2\t0x9EBC\n0xBBF3\t0x9F3B\n0xBBF4\t0x9F4A\n0xBBF5\t0x5104\n0xBBF6\t0x5100\n0xBBF7\t0x50FB\n0xBBF8\t0x50F5\n0xBBF9\t0x50F9\n0xBBFA\t0x5102\n0xBBFB\t0x5108\n0xBBFC\t0x5109\n0xBBFD\t0x5105\n0xBBFE\t0x51DC\n0xBC40\t0x5287\n0xBC41\t0x5288\n0xBC42\t0x5289\n0xBC43\t0x528D\n0xBC44\t0x528A\n0xBC45\t0x52F0\n0xBC46\t0x53B2\n0xBC47\t0x562E\n0xBC48\t0x563B\n0xBC49\t0x5639\n0xBC4A\t0x5632\n0xBC4B\t0x563F\n0xBC4C\t0x5634\n0xBC4D\t0x5629\n0xBC4E\t0x5653\n0xBC4F\t0x564E\n0xBC50\t0x5657\n0xBC51\t0x5674\n0xBC52\t0x5636\n0xBC53\t0x562F\n0xBC54\t0x5630\n0xBC55\t0x5880\n0xBC56\t0x589F\n0xBC57\t0x589E\n0xBC58\t0x58B3\n0xBC59\t0x589C\n0xBC5A\t0x58AE\n0xBC5B\t0x58A9\n0xBC5C\t0x58A6\n0xBC5D\t0x596D\n0xBC5E\t0x5B09\n0xBC5F\t0x5AFB\n0xBC60\t0x5B0B\n0xBC61\t0x5AF5\n0xBC62\t0x5B0C\n0xBC63\t0x5B08\n0xBC64\t0x5BEE\n0xBC65\t0x5BEC\n0xBC66\t0x5BE9\n0xBC67\t0x5BEB\n0xBC68\t0x5C64\n0xBC69\t0x5C65\n0xBC6A\t0x5D9D\n0xBC6B\t0x5D94\n0xBC6C\t0x5E62\n0xBC6D\t0x5E5F\n0xBC6E\t0x5E61\n0xBC6F\t0x5EE2\n0xBC70\t0x5EDA\n0xBC71\t0x5EDF\n0xBC72\t0x5EDD\n0xBC73\t0x5EE3\n0xBC74\t0x5EE0\n0xBC75\t0x5F48\n0xBC76\t0x5F71\n0xBC77\t0x5FB7\n0xBC78\t0x5FB5\n0xBC79\t0x6176\n0xBC7A\t0x6167\n0xBC7B\t0x616E\n0xBC7C\t0x615D\n0xBC7D\t0x6155\n0xBC7E\t0x6182\n0xBCA1\t0x617C\n0xBCA2\t0x6170\n0xBCA3\t0x616B\n0xBCA4\t0x617E\n0xBCA5\t0x61A7\n0xBCA6\t0x6190\n0xBCA7\t0x61AB\n0xBCA8\t0x618E\n0xBCA9\t0x61AC\n0xBCAA\t0x619A\n0xBCAB\t0x61A4\n0xBCAC\t0x6194\n0xBCAD\t0x61AE\n0xBCAE\t0x622E\n0xBCAF\t0x6469\n0xBCB0\t0x646F\n0xBCB1\t0x6479\n0xBCB2\t0x649E\n0xBCB3\t0x64B2\n0xBCB4\t0x6488\n0xBCB5\t0x6490\n0xBCB6\t0x64B0\n0xBCB7\t0x64A5\n0xBCB8\t0x6493\n0xBCB9\t0x6495\n0xBCBA\t0x64A9\n0xBCBB\t0x6492\n0xBCBC\t0x64AE\n0xBCBD\t0x64AD\n0xBCBE\t0x64AB\n0xBCBF\t0x649A\n0xBCC0\t0x64AC\n0xBCC1\t0x6499\n0xBCC2\t0x64A2\n0xBCC3\t0x64B3\n0xBCC4\t0x6575\n0xBCC5\t0x6577\n0xBCC6\t0x6578\n0xBCC7\t0x66AE\n0xBCC8\t0x66AB\n0xBCC9\t0x66B4\n0xBCCA\t0x66B1\n0xBCCB\t0x6A23\n0xBCCC\t0x6A1F\n0xBCCD\t0x69E8\n0xBCCE\t0x6A01\n0xBCCF\t0x6A1E\n0xBCD0\t0x6A19\n0xBCD1\t0x69FD\n0xBCD2\t0x6A21\n0xBCD3\t0x6A13\n0xBCD4\t0x6A0A\n0xBCD5\t0x69F3\n0xBCD6\t0x6A02\n0xBCD7\t0x6A05\n0xBCD8\t0x69ED\n0xBCD9\t0x6A11\n0xBCDA\t0x6B50\n0xBCDB\t0x6B4E\n0xBCDC\t0x6BA4\n0xBCDD\t0x6BC5\n0xBCDE\t0x6BC6\n0xBCDF\t0x6F3F\n0xBCE0\t0x6F7C\n0xBCE1\t0x6F84\n0xBCE2\t0x6F51\n0xBCE3\t0x6F66\n0xBCE4\t0x6F54\n0xBCE5\t0x6F86\n0xBCE6\t0x6F6D\n0xBCE7\t0x6F5B\n0xBCE8\t0x6F78\n0xBCE9\t0x6F6E\n0xBCEA\t0x6F8E\n0xBCEB\t0x6F7A\n0xBCEC\t0x6F70\n0xBCED\t0x6F64\n0xBCEE\t0x6F97\n0xBCEF\t0x6F58\n0xBCF0\t0x6ED5\n0xBCF1\t0x6F6F\n0xBCF2\t0x6F60\n0xBCF3\t0x6F5F\n0xBCF4\t0x719F\n0xBCF5\t0x71AC\n0xBCF6\t0x71B1\n0xBCF7\t0x71A8\n0xBCF8\t0x7256\n0xBCF9\t0x729B\n0xBCFA\t0x734E\n0xBCFB\t0x7357\n0xBCFC\t0x7469\n0xBCFD\t0x748B\n0xBCFE\t0x7483\n0xBD40\t0x747E\n0xBD41\t0x7480\n0xBD42\t0x757F\n0xBD43\t0x7620\n0xBD44\t0x7629\n0xBD45\t0x761F\n0xBD46\t0x7624\n0xBD47\t0x7626\n0xBD48\t0x7621\n0xBD49\t0x7622\n0xBD4A\t0x769A\n0xBD4B\t0x76BA\n0xBD4C\t0x76E4\n0xBD4D\t0x778E\n0xBD4E\t0x7787\n0xBD4F\t0x778C\n0xBD50\t0x7791\n0xBD51\t0x778B\n0xBD52\t0x78CB\n0xBD53\t0x78C5\n0xBD54\t0x78BA\n0xBD55\t0x78CA\n0xBD56\t0x78BE\n0xBD57\t0x78D5\n0xBD58\t0x78BC\n0xBD59\t0x78D0\n0xBD5A\t0x7A3F\n0xBD5B\t0x7A3C\n0xBD5C\t0x7A40\n0xBD5D\t0x7A3D\n0xBD5E\t0x7A37\n0xBD5F\t0x7A3B\n0xBD60\t0x7AAF\n0xBD61\t0x7AAE\n0xBD62\t0x7BAD\n0xBD63\t0x7BB1\n0xBD64\t0x7BC4\n0xBD65\t0x7BB4\n0xBD66\t0x7BC6\n0xBD67\t0x7BC7\n0xBD68\t0x7BC1\n0xBD69\t0x7BA0\n0xBD6A\t0x7BCC\n0xBD6B\t0x7CCA\n0xBD6C\t0x7DE0\n0xBD6D\t0x7DF4\n0xBD6E\t0x7DEF\n0xBD6F\t0x7DFB\n0xBD70\t0x7DD8\n0xBD71\t0x7DEC\n0xBD72\t0x7DDD\n0xBD73\t0x7DE8\n0xBD74\t0x7DE3\n0xBD75\t0x7DDA\n0xBD76\t0x7DDE\n0xBD77\t0x7DE9\n0xBD78\t0x7D9E\n0xBD79\t0x7DD9\n0xBD7A\t0x7DF2\n0xBD7B\t0x7DF9\n0xBD7C\t0x7F75\n0xBD7D\t0x7F77\n0xBD7E\t0x7FAF\n0xBDA1\t0x7FE9\n0xBDA2\t0x8026\n0xBDA3\t0x819B\n0xBDA4\t0x819C\n0xBDA5\t0x819D\n0xBDA6\t0x81A0\n0xBDA7\t0x819A\n0xBDA8\t0x8198\n0xBDA9\t0x8517\n0xBDAA\t0x853D\n0xBDAB\t0x851A\n0xBDAC\t0x84EE\n0xBDAD\t0x852C\n0xBDAE\t0x852D\n0xBDAF\t0x8513\n0xBDB0\t0x8511\n0xBDB1\t0x8523\n0xBDB2\t0x8521\n0xBDB3\t0x8514\n0xBDB4\t0x84EC\n0xBDB5\t0x8525\n0xBDB6\t0x84FF\n0xBDB7\t0x8506\n0xBDB8\t0x8782\n0xBDB9\t0x8774\n0xBDBA\t0x8776\n0xBDBB\t0x8760\n0xBDBC\t0x8766\n0xBDBD\t0x8778\n0xBDBE\t0x8768\n0xBDBF\t0x8759\n0xBDC0\t0x8757\n0xBDC1\t0x874C\n0xBDC2\t0x8753\n0xBDC3\t0x885B\n0xBDC4\t0x885D\n0xBDC5\t0x8910\n0xBDC6\t0x8907\n0xBDC7\t0x8912\n0xBDC8\t0x8913\n0xBDC9\t0x8915\n0xBDCA\t0x890A\n0xBDCB\t0x8ABC\n0xBDCC\t0x8AD2\n0xBDCD\t0x8AC7\n0xBDCE\t0x8AC4\n0xBDCF\t0x8A95\n0xBDD0\t0x8ACB\n0xBDD1\t0x8AF8\n0xBDD2\t0x8AB2\n0xBDD3\t0x8AC9\n0xBDD4\t0x8AC2\n0xBDD5\t0x8ABF\n0xBDD6\t0x8AB0\n0xBDD7\t0x8AD6\n0xBDD8\t0x8ACD\n0xBDD9\t0x8AB6\n0xBDDA\t0x8AB9\n0xBDDB\t0x8ADB\n0xBDDC\t0x8C4C\n0xBDDD\t0x8C4E\n0xBDDE\t0x8C6C\n0xBDDF\t0x8CE0\n0xBDE0\t0x8CDE\n0xBDE1\t0x8CE6\n0xBDE2\t0x8CE4\n0xBDE3\t0x8CEC\n0xBDE4\t0x8CED\n0xBDE5\t0x8CE2\n0xBDE6\t0x8CE3\n0xBDE7\t0x8CDC\n0xBDE8\t0x8CEA\n0xBDE9\t0x8CE1\n0xBDEA\t0x8D6D\n0xBDEB\t0x8D9F\n0xBDEC\t0x8DA3\n0xBDED\t0x8E2B\n0xBDEE\t0x8E10\n0xBDEF\t0x8E1D\n0xBDF0\t0x8E22\n0xBDF1\t0x8E0F\n0xBDF2\t0x8E29\n0xBDF3\t0x8E1F\n0xBDF4\t0x8E21\n0xBDF5\t0x8E1E\n0xBDF6\t0x8EBA\n0xBDF7\t0x8F1D\n0xBDF8\t0x8F1B\n0xBDF9\t0x8F1F\n0xBDFA\t0x8F29\n0xBDFB\t0x8F26\n0xBDFC\t0x8F2A\n0xBDFD\t0x8F1C\n0xBDFE\t0x8F1E\n0xBE40\t0x8F25\n0xBE41\t0x9069\n0xBE42\t0x906E\n0xBE43\t0x9068\n0xBE44\t0x906D\n0xBE45\t0x9077\n0xBE46\t0x9130\n0xBE47\t0x912D\n0xBE48\t0x9127\n0xBE49\t0x9131\n0xBE4A\t0x9187\n0xBE4B\t0x9189\n0xBE4C\t0x918B\n0xBE4D\t0x9183\n0xBE4E\t0x92C5\n0xBE4F\t0x92BB\n0xBE50\t0x92B7\n0xBE51\t0x92EA\n0xBE52\t0x92AC\n0xBE53\t0x92E4\n0xBE54\t0x92C1\n0xBE55\t0x92B3\n0xBE56\t0x92BC\n0xBE57\t0x92D2\n0xBE58\t0x92C7\n0xBE59\t0x92F0\n0xBE5A\t0x92B2\n0xBE5B\t0x95AD\n0xBE5C\t0x95B1\n0xBE5D\t0x9704\n0xBE5E\t0x9706\n0xBE5F\t0x9707\n0xBE60\t0x9709\n0xBE61\t0x9760\n0xBE62\t0x978D\n0xBE63\t0x978B\n0xBE64\t0x978F\n0xBE65\t0x9821\n0xBE66\t0x982B\n0xBE67\t0x981C\n0xBE68\t0x98B3\n0xBE69\t0x990A\n0xBE6A\t0x9913\n0xBE6B\t0x9912\n0xBE6C\t0x9918\n0xBE6D\t0x99DD\n0xBE6E\t0x99D0\n0xBE6F\t0x99DF\n0xBE70\t0x99DB\n0xBE71\t0x99D1\n0xBE72\t0x99D5\n0xBE73\t0x99D2\n0xBE74\t0x99D9\n0xBE75\t0x9AB7\n0xBE76\t0x9AEE\n0xBE77\t0x9AEF\n0xBE78\t0x9B27\n0xBE79\t0x9B45\n0xBE7A\t0x9B44\n0xBE7B\t0x9B77\n0xBE7C\t0x9B6F\n0xBE7D\t0x9D06\n0xBE7E\t0x9D09\n0xBEA1\t0x9D03\n0xBEA2\t0x9EA9\n0xBEA3\t0x9EBE\n0xBEA4\t0x9ECE\n0xBEA5\t0x58A8\n0xBEA6\t0x9F52\n0xBEA7\t0x5112\n0xBEA8\t0x5118\n0xBEA9\t0x5114\n0xBEAA\t0x5110\n0xBEAB\t0x5115\n0xBEAC\t0x5180\n0xBEAD\t0x51AA\n0xBEAE\t0x51DD\n0xBEAF\t0x5291\n0xBEB0\t0x5293\n0xBEB1\t0x52F3\n0xBEB2\t0x5659\n0xBEB3\t0x566B\n0xBEB4\t0x5679\n0xBEB5\t0x5669\n0xBEB6\t0x5664\n0xBEB7\t0x5678\n0xBEB8\t0x566A\n0xBEB9\t0x5668\n0xBEBA\t0x5665\n0xBEBB\t0x5671\n0xBEBC\t0x566F\n0xBEBD\t0x566C\n0xBEBE\t0x5662\n0xBEBF\t0x5676\n0xBEC0\t0x58C1\n0xBEC1\t0x58BE\n0xBEC2\t0x58C7\n0xBEC3\t0x58C5\n0xBEC4\t0x596E\n0xBEC5\t0x5B1D\n0xBEC6\t0x5B34\n0xBEC7\t0x5B78\n0xBEC8\t0x5BF0\n0xBEC9\t0x5C0E\n0xBECA\t0x5F4A\n0xBECB\t0x61B2\n0xBECC\t0x6191\n0xBECD\t0x61A9\n0xBECE\t0x618A\n0xBECF\t0x61CD\n0xBED0\t0x61B6\n0xBED1\t0x61BE\n0xBED2\t0x61CA\n0xBED3\t0x61C8\n0xBED4\t0x6230\n0xBED5\t0x64C5\n0xBED6\t0x64C1\n0xBED7\t0x64CB\n0xBED8\t0x64BB\n0xBED9\t0x64BC\n0xBEDA\t0x64DA\n0xBEDB\t0x64C4\n0xBEDC\t0x64C7\n0xBEDD\t0x64C2\n0xBEDE\t0x64CD\n0xBEDF\t0x64BF\n0xBEE0\t0x64D2\n0xBEE1\t0x64D4\n0xBEE2\t0x64BE\n0xBEE3\t0x6574\n0xBEE4\t0x66C6\n0xBEE5\t0x66C9\n0xBEE6\t0x66B9\n0xBEE7\t0x66C4\n0xBEE8\t0x66C7\n0xBEE9\t0x66B8\n0xBEEA\t0x6A3D\n0xBEEB\t0x6A38\n0xBEEC\t0x6A3A\n0xBEED\t0x6A59\n0xBEEE\t0x6A6B\n0xBEEF\t0x6A58\n0xBEF0\t0x6A39\n0xBEF1\t0x6A44\n0xBEF2\t0x6A62\n0xBEF3\t0x6A61\n0xBEF4\t0x6A4B\n0xBEF5\t0x6A47\n0xBEF6\t0x6A35\n0xBEF7\t0x6A5F\n0xBEF8\t0x6A48\n0xBEF9\t0x6B59\n0xBEFA\t0x6B77\n0xBEFB\t0x6C05\n0xBEFC\t0x6FC2\n0xBEFD\t0x6FB1\n0xBEFE\t0x6FA1\n0xBF40\t0x6FC3\n0xBF41\t0x6FA4\n0xBF42\t0x6FC1\n0xBF43\t0x6FA7\n0xBF44\t0x6FB3\n0xBF45\t0x6FC0\n0xBF46\t0x6FB9\n0xBF47\t0x6FB6\n0xBF48\t0x6FA6\n0xBF49\t0x6FA0\n0xBF4A\t0x6FB4\n0xBF4B\t0x71BE\n0xBF4C\t0x71C9\n0xBF4D\t0x71D0\n0xBF4E\t0x71D2\n0xBF4F\t0x71C8\n0xBF50\t0x71D5\n0xBF51\t0x71B9\n0xBF52\t0x71CE\n0xBF53\t0x71D9\n0xBF54\t0x71DC\n0xBF55\t0x71C3\n0xBF56\t0x71C4\n0xBF57\t0x7368\n0xBF58\t0x749C\n0xBF59\t0x74A3\n0xBF5A\t0x7498\n0xBF5B\t0x749F\n0xBF5C\t0x749E\n0xBF5D\t0x74E2\n0xBF5E\t0x750C\n0xBF5F\t0x750D\n0xBF60\t0x7634\n0xBF61\t0x7638\n0xBF62\t0x763A\n0xBF63\t0x76E7\n0xBF64\t0x76E5\n0xBF65\t0x77A0\n0xBF66\t0x779E\n0xBF67\t0x779F\n0xBF68\t0x77A5\n0xBF69\t0x78E8\n0xBF6A\t0x78DA\n0xBF6B\t0x78EC\n0xBF6C\t0x78E7\n0xBF6D\t0x79A6\n0xBF6E\t0x7A4D\n0xBF6F\t0x7A4E\n0xBF70\t0x7A46\n0xBF71\t0x7A4C\n0xBF72\t0x7A4B\n0xBF73\t0x7ABA\n0xBF74\t0x7BD9\n0xBF75\t0x7C11\n0xBF76\t0x7BC9\n0xBF77\t0x7BE4\n0xBF78\t0x7BDB\n0xBF79\t0x7BE1\n0xBF7A\t0x7BE9\n0xBF7B\t0x7BE6\n0xBF7C\t0x7CD5\n0xBF7D\t0x7CD6\n0xBF7E\t0x7E0A\n0xBFA1\t0x7E11\n0xBFA2\t0x7E08\n0xBFA3\t0x7E1B\n0xBFA4\t0x7E23\n0xBFA5\t0x7E1E\n0xBFA6\t0x7E1D\n0xBFA7\t0x7E09\n0xBFA8\t0x7E10\n0xBFA9\t0x7F79\n0xBFAA\t0x7FB2\n0xBFAB\t0x7FF0\n0xBFAC\t0x7FF1\n0xBFAD\t0x7FEE\n0xBFAE\t0x8028\n0xBFAF\t0x81B3\n0xBFB0\t0x81A9\n0xBFB1\t0x81A8\n0xBFB2\t0x81FB\n0xBFB3\t0x8208\n0xBFB4\t0x8258\n0xBFB5\t0x8259\n0xBFB6\t0x854A\n0xBFB7\t0x8559\n0xBFB8\t0x8548\n0xBFB9\t0x8568\n0xBFBA\t0x8569\n0xBFBB\t0x8543\n0xBFBC\t0x8549\n0xBFBD\t0x856D\n0xBFBE\t0x856A\n0xBFBF\t0x855E\n0xBFC0\t0x8783\n0xBFC1\t0x879F\n0xBFC2\t0x879E\n0xBFC3\t0x87A2\n0xBFC4\t0x878D\n0xBFC5\t0x8861\n0xBFC6\t0x892A\n0xBFC7\t0x8932\n0xBFC8\t0x8925\n0xBFC9\t0x892B\n0xBFCA\t0x8921\n0xBFCB\t0x89AA\n0xBFCC\t0x89A6\n0xBFCD\t0x8AE6\n0xBFCE\t0x8AFA\n0xBFCF\t0x8AEB\n0xBFD0\t0x8AF1\n0xBFD1\t0x8B00\n0xBFD2\t0x8ADC\n0xBFD3\t0x8AE7\n0xBFD4\t0x8AEE\n0xBFD5\t0x8AFE\n0xBFD6\t0x8B01\n0xBFD7\t0x8B02\n0xBFD8\t0x8AF7\n0xBFD9\t0x8AED\n0xBFDA\t0x8AF3\n0xBFDB\t0x8AF6\n0xBFDC\t0x8AFC\n0xBFDD\t0x8C6B\n0xBFDE\t0x8C6D\n0xBFDF\t0x8C93\n0xBFE0\t0x8CF4\n0xBFE1\t0x8E44\n0xBFE2\t0x8E31\n0xBFE3\t0x8E34\n0xBFE4\t0x8E42\n0xBFE5\t0x8E39\n0xBFE6\t0x8E35\n0xBFE7\t0x8F3B\n0xBFE8\t0x8F2F\n0xBFE9\t0x8F38\n0xBFEA\t0x8F33\n0xBFEB\t0x8FA8\n0xBFEC\t0x8FA6\n0xBFED\t0x9075\n0xBFEE\t0x9074\n0xBFEF\t0x9078\n0xBFF0\t0x9072\n0xBFF1\t0x907C\n0xBFF2\t0x907A\n0xBFF3\t0x9134\n0xBFF4\t0x9192\n0xBFF5\t0x9320\n0xBFF6\t0x9336\n0xBFF7\t0x92F8\n0xBFF8\t0x9333\n0xBFF9\t0x932F\n0xBFFA\t0x9322\n0xBFFB\t0x92FC\n0xBFFC\t0x932B\n0xBFFD\t0x9304\n0xBFFE\t0x931A\n0xC040\t0x9310\n0xC041\t0x9326\n0xC042\t0x9321\n0xC043\t0x9315\n0xC044\t0x932E\n0xC045\t0x9319\n0xC046\t0x95BB\n0xC047\t0x96A7\n0xC048\t0x96A8\n0xC049\t0x96AA\n0xC04A\t0x96D5\n0xC04B\t0x970E\n0xC04C\t0x9711\n0xC04D\t0x9716\n0xC04E\t0x970D\n0xC04F\t0x9713\n0xC050\t0x970F\n0xC051\t0x975B\n0xC052\t0x975C\n0xC053\t0x9766\n0xC054\t0x9798\n0xC055\t0x9830\n0xC056\t0x9838\n0xC057\t0x983B\n0xC058\t0x9837\n0xC059\t0x982D\n0xC05A\t0x9839\n0xC05B\t0x9824\n0xC05C\t0x9910\n0xC05D\t0x9928\n0xC05E\t0x991E\n0xC05F\t0x991B\n0xC060\t0x9921\n0xC061\t0x991A\n0xC062\t0x99ED\n0xC063\t0x99E2\n0xC064\t0x99F1\n0xC065\t0x9AB8\n0xC066\t0x9ABC\n0xC067\t0x9AFB\n0xC068\t0x9AED\n0xC069\t0x9B28\n0xC06A\t0x9B91\n0xC06B\t0x9D15\n0xC06C\t0x9D23\n0xC06D\t0x9D26\n0xC06E\t0x9D28\n0xC06F\t0x9D12\n0xC070\t0x9D1B\n0xC071\t0x9ED8\n0xC072\t0x9ED4\n0xC073\t0x9F8D\n0xC074\t0x9F9C\n0xC075\t0x512A\n0xC076\t0x511F\n0xC077\t0x5121\n0xC078\t0x5132\n0xC079\t0x52F5\n0xC07A\t0x568E\n0xC07B\t0x5680\n0xC07C\t0x5690\n0xC07D\t0x5685\n0xC07E\t0x5687\n0xC0A1\t0x568F\n0xC0A2\t0x58D5\n0xC0A3\t0x58D3\n0xC0A4\t0x58D1\n0xC0A5\t0x58CE\n0xC0A6\t0x5B30\n0xC0A7\t0x5B2A\n0xC0A8\t0x5B24\n0xC0A9\t0x5B7A\n0xC0AA\t0x5C37\n0xC0AB\t0x5C68\n0xC0AC\t0x5DBC\n0xC0AD\t0x5DBA\n0xC0AE\t0x5DBD\n0xC0AF\t0x5DB8\n0xC0B0\t0x5E6B\n0xC0B1\t0x5F4C\n0xC0B2\t0x5FBD\n0xC0B3\t0x61C9\n0xC0B4\t0x61C2\n0xC0B5\t0x61C7\n0xC0B6\t0x61E6\n0xC0B7\t0x61CB\n0xC0B8\t0x6232\n0xC0B9\t0x6234\n0xC0BA\t0x64CE\n0xC0BB\t0x64CA\n0xC0BC\t0x64D8\n0xC0BD\t0x64E0\n0xC0BE\t0x64F0\n0xC0BF\t0x64E6\n0xC0C0\t0x64EC\n0xC0C1\t0x64F1\n0xC0C2\t0x64E2\n0xC0C3\t0x64ED\n0xC0C4\t0x6582\n0xC0C5\t0x6583\n0xC0C6\t0x66D9\n0xC0C7\t0x66D6\n0xC0C8\t0x6A80\n0xC0C9\t0x6A94\n0xC0CA\t0x6A84\n0xC0CB\t0x6AA2\n0xC0CC\t0x6A9C\n0xC0CD\t0x6ADB\n0xC0CE\t0x6AA3\n0xC0CF\t0x6A7E\n0xC0D0\t0x6A97\n0xC0D1\t0x6A90\n0xC0D2\t0x6AA0\n0xC0D3\t0x6B5C\n0xC0D4\t0x6BAE\n0xC0D5\t0x6BDA\n0xC0D6\t0x6C08\n0xC0D7\t0x6FD8\n0xC0D8\t0x6FF1\n0xC0D9\t0x6FDF\n0xC0DA\t0x6FE0\n0xC0DB\t0x6FDB\n0xC0DC\t0x6FE4\n0xC0DD\t0x6FEB\n0xC0DE\t0x6FEF\n0xC0DF\t0x6F80\n0xC0E0\t0x6FEC\n0xC0E1\t0x6FE1\n0xC0E2\t0x6FE9\n0xC0E3\t0x6FD5\n0xC0E4\t0x6FEE\n0xC0E5\t0x6FF0\n0xC0E6\t0x71E7\n0xC0E7\t0x71DF\n0xC0E8\t0x71EE\n0xC0E9\t0x71E6\n0xC0EA\t0x71E5\n0xC0EB\t0x71ED\n0xC0EC\t0x71EC\n0xC0ED\t0x71F4\n0xC0EE\t0x71E0\n0xC0EF\t0x7235\n0xC0F0\t0x7246\n0xC0F1\t0x7370\n0xC0F2\t0x7372\n0xC0F3\t0x74A9\n0xC0F4\t0x74B0\n0xC0F5\t0x74A6\n0xC0F6\t0x74A8\n0xC0F7\t0x7646\n0xC0F8\t0x7642\n0xC0F9\t0x764C\n0xC0FA\t0x76EA\n0xC0FB\t0x77B3\n0xC0FC\t0x77AA\n0xC0FD\t0x77B0\n0xC0FE\t0x77AC\n0xC140\t0x77A7\n0xC141\t0x77AD\n0xC142\t0x77EF\n0xC143\t0x78F7\n0xC144\t0x78FA\n0xC145\t0x78F4\n0xC146\t0x78EF\n0xC147\t0x7901\n0xC148\t0x79A7\n0xC149\t0x79AA\n0xC14A\t0x7A57\n0xC14B\t0x7ABF\n0xC14C\t0x7C07\n0xC14D\t0x7C0D\n0xC14E\t0x7BFE\n0xC14F\t0x7BF7\n0xC150\t0x7C0C\n0xC151\t0x7BE0\n0xC152\t0x7CE0\n0xC153\t0x7CDC\n0xC154\t0x7CDE\n0xC155\t0x7CE2\n0xC156\t0x7CDF\n0xC157\t0x7CD9\n0xC158\t0x7CDD\n0xC159\t0x7E2E\n0xC15A\t0x7E3E\n0xC15B\t0x7E46\n0xC15C\t0x7E37\n0xC15D\t0x7E32\n0xC15E\t0x7E43\n0xC15F\t0x7E2B\n0xC160\t0x7E3D\n0xC161\t0x7E31\n0xC162\t0x7E45\n0xC163\t0x7E41\n0xC164\t0x7E34\n0xC165\t0x7E39\n0xC166\t0x7E48\n0xC167\t0x7E35\n0xC168\t0x7E3F\n0xC169\t0x7E2F\n0xC16A\t0x7F44\n0xC16B\t0x7FF3\n0xC16C\t0x7FFC\n0xC16D\t0x8071\n0xC16E\t0x8072\n0xC16F\t0x8070\n0xC170\t0x806F\n0xC171\t0x8073\n0xC172\t0x81C6\n0xC173\t0x81C3\n0xC174\t0x81BA\n0xC175\t0x81C2\n0xC176\t0x81C0\n0xC177\t0x81BF\n0xC178\t0x81BD\n0xC179\t0x81C9\n0xC17A\t0x81BE\n0xC17B\t0x81E8\n0xC17C\t0x8209\n0xC17D\t0x8271\n0xC17E\t0x85AA\n0xC1A1\t0x8584\n0xC1A2\t0x857E\n0xC1A3\t0x859C\n0xC1A4\t0x8591\n0xC1A5\t0x8594\n0xC1A6\t0x85AF\n0xC1A7\t0x859B\n0xC1A8\t0x8587\n0xC1A9\t0x85A8\n0xC1AA\t0x858A\n0xC1AB\t0x8667\n0xC1AC\t0x87C0\n0xC1AD\t0x87D1\n0xC1AE\t0x87B3\n0xC1AF\t0x87D2\n0xC1B0\t0x87C6\n0xC1B1\t0x87AB\n0xC1B2\t0x87BB\n0xC1B3\t0x87BA\n0xC1B4\t0x87C8\n0xC1B5\t0x87CB\n0xC1B6\t0x893B\n0xC1B7\t0x8936\n0xC1B8\t0x8944\n0xC1B9\t0x8938\n0xC1BA\t0x893D\n0xC1BB\t0x89AC\n0xC1BC\t0x8B0E\n0xC1BD\t0x8B17\n0xC1BE\t0x8B19\n0xC1BF\t0x8B1B\n0xC1C0\t0x8B0A\n0xC1C1\t0x8B20\n0xC1C2\t0x8B1D\n0xC1C3\t0x8B04\n0xC1C4\t0x8B10\n0xC1C5\t0x8C41\n0xC1C6\t0x8C3F\n0xC1C7\t0x8C73\n0xC1C8\t0x8CFA\n0xC1C9\t0x8CFD\n0xC1CA\t0x8CFC\n0xC1CB\t0x8CF8\n0xC1CC\t0x8CFB\n0xC1CD\t0x8DA8\n0xC1CE\t0x8E49\n0xC1CF\t0x8E4B\n0xC1D0\t0x8E48\n0xC1D1\t0x8E4A\n0xC1D2\t0x8F44\n0xC1D3\t0x8F3E\n0xC1D4\t0x8F42\n0xC1D5\t0x8F45\n0xC1D6\t0x8F3F\n0xC1D7\t0x907F\n0xC1D8\t0x907D\n0xC1D9\t0x9084\n0xC1DA\t0x9081\n0xC1DB\t0x9082\n0xC1DC\t0x9080\n0xC1DD\t0x9139\n0xC1DE\t0x91A3\n0xC1DF\t0x919E\n0xC1E0\t0x919C\n0xC1E1\t0x934D\n0xC1E2\t0x9382\n0xC1E3\t0x9328\n0xC1E4\t0x9375\n0xC1E5\t0x934A\n0xC1E6\t0x9365\n0xC1E7\t0x934B\n0xC1E8\t0x9318\n0xC1E9\t0x937E\n0xC1EA\t0x936C\n0xC1EB\t0x935B\n0xC1EC\t0x9370\n0xC1ED\t0x935A\n0xC1EE\t0x9354\n0xC1EF\t0x95CA\n0xC1F0\t0x95CB\n0xC1F1\t0x95CC\n0xC1F2\t0x95C8\n0xC1F3\t0x95C6\n0xC1F4\t0x96B1\n0xC1F5\t0x96B8\n0xC1F6\t0x96D6\n0xC1F7\t0x971C\n0xC1F8\t0x971E\n0xC1F9\t0x97A0\n0xC1FA\t0x97D3\n0xC1FB\t0x9846\n0xC1FC\t0x98B6\n0xC1FD\t0x9935\n0xC1FE\t0x9A01\n0xC240\t0x99FF\n0xC241\t0x9BAE\n0xC242\t0x9BAB\n0xC243\t0x9BAA\n0xC244\t0x9BAD\n0xC245\t0x9D3B\n0xC246\t0x9D3F\n0xC247\t0x9E8B\n0xC248\t0x9ECF\n0xC249\t0x9EDE\n0xC24A\t0x9EDC\n0xC24B\t0x9EDD\n0xC24C\t0x9EDB\n0xC24D\t0x9F3E\n0xC24E\t0x9F4B\n0xC24F\t0x53E2\n0xC250\t0x5695\n0xC251\t0x56AE\n0xC252\t0x58D9\n0xC253\t0x58D8\n0xC254\t0x5B38\n0xC255\t0x5F5E\n0xC256\t0x61E3\n0xC257\t0x6233\n0xC258\t0x64F4\n0xC259\t0x64F2\n0xC25A\t0x64FE\n0xC25B\t0x6506\n0xC25C\t0x64FA\n0xC25D\t0x64FB\n0xC25E\t0x64F7\n0xC25F\t0x65B7\n0xC260\t0x66DC\n0xC261\t0x6726\n0xC262\t0x6AB3\n0xC263\t0x6AAC\n0xC264\t0x6AC3\n0xC265\t0x6ABB\n0xC266\t0x6AB8\n0xC267\t0x6AC2\n0xC268\t0x6AAE\n0xC269\t0x6AAF\n0xC26A\t0x6B5F\n0xC26B\t0x6B78\n0xC26C\t0x6BAF\n0xC26D\t0x7009\n0xC26E\t0x700B\n0xC26F\t0x6FFE\n0xC270\t0x7006\n0xC271\t0x6FFA\n0xC272\t0x7011\n0xC273\t0x700F\n0xC274\t0x71FB\n0xC275\t0x71FC\n0xC276\t0x71FE\n0xC277\t0x71F8\n0xC278\t0x7377\n0xC279\t0x7375\n0xC27A\t0x74A7\n0xC27B\t0x74BF\n0xC27C\t0x7515\n0xC27D\t0x7656\n0xC27E\t0x7658\n0xC2A1\t0x7652\n0xC2A2\t0x77BD\n0xC2A3\t0x77BF\n0xC2A4\t0x77BB\n0xC2A5\t0x77BC\n0xC2A6\t0x790E\n0xC2A7\t0x79AE\n0xC2A8\t0x7A61\n0xC2A9\t0x7A62\n0xC2AA\t0x7A60\n0xC2AB\t0x7AC4\n0xC2AC\t0x7AC5\n0xC2AD\t0x7C2B\n0xC2AE\t0x7C27\n0xC2AF\t0x7C2A\n0xC2B0\t0x7C1E\n0xC2B1\t0x7C23\n0xC2B2\t0x7C21\n0xC2B3\t0x7CE7\n0xC2B4\t0x7E54\n0xC2B5\t0x7E55\n0xC2B6\t0x7E5E\n0xC2B7\t0x7E5A\n0xC2B8\t0x7E61\n0xC2B9\t0x7E52\n0xC2BA\t0x7E59\n0xC2BB\t0x7F48\n0xC2BC\t0x7FF9\n0xC2BD\t0x7FFB\n0xC2BE\t0x8077\n0xC2BF\t0x8076\n0xC2C0\t0x81CD\n0xC2C1\t0x81CF\n0xC2C2\t0x820A\n0xC2C3\t0x85CF\n0xC2C4\t0x85A9\n0xC2C5\t0x85CD\n0xC2C6\t0x85D0\n0xC2C7\t0x85C9\n0xC2C8\t0x85B0\n0xC2C9\t0x85BA\n0xC2CA\t0x85B9\n0xC2CB\t0x85A6\n0xC2CC\t0x87EF\n0xC2CD\t0x87EC\n0xC2CE\t0x87F2\n0xC2CF\t0x87E0\n0xC2D0\t0x8986\n0xC2D1\t0x89B2\n0xC2D2\t0x89F4\n0xC2D3\t0x8B28\n0xC2D4\t0x8B39\n0xC2D5\t0x8B2C\n0xC2D6\t0x8B2B\n0xC2D7\t0x8C50\n0xC2D8\t0x8D05\n0xC2D9\t0x8E59\n0xC2DA\t0x8E63\n0xC2DB\t0x8E66\n0xC2DC\t0x8E64\n0xC2DD\t0x8E5F\n0xC2DE\t0x8E55\n0xC2DF\t0x8EC0\n0xC2E0\t0x8F49\n0xC2E1\t0x8F4D\n0xC2E2\t0x9087\n0xC2E3\t0x9083\n0xC2E4\t0x9088\n0xC2E5\t0x91AB\n0xC2E6\t0x91AC\n0xC2E7\t0x91D0\n0xC2E8\t0x9394\n0xC2E9\t0x938A\n0xC2EA\t0x9396\n0xC2EB\t0x93A2\n0xC2EC\t0x93B3\n0xC2ED\t0x93AE\n0xC2EE\t0x93AC\n0xC2EF\t0x93B0\n0xC2F0\t0x9398\n0xC2F1\t0x939A\n0xC2F2\t0x9397\n0xC2F3\t0x95D4\n0xC2F4\t0x95D6\n0xC2F5\t0x95D0\n0xC2F6\t0x95D5\n0xC2F7\t0x96E2\n0xC2F8\t0x96DC\n0xC2F9\t0x96D9\n0xC2FA\t0x96DB\n0xC2FB\t0x96DE\n0xC2FC\t0x9724\n0xC2FD\t0x97A3\n0xC2FE\t0x97A6\n0xC340\t0x97AD\n0xC341\t0x97F9\n0xC342\t0x984D\n0xC343\t0x984F\n0xC344\t0x984C\n0xC345\t0x984E\n0xC346\t0x9853\n0xC347\t0x98BA\n0xC348\t0x993E\n0xC349\t0x993F\n0xC34A\t0x993D\n0xC34B\t0x992E\n0xC34C\t0x99A5\n0xC34D\t0x9A0E\n0xC34E\t0x9AC1\n0xC34F\t0x9B03\n0xC350\t0x9B06\n0xC351\t0x9B4F\n0xC352\t0x9B4E\n0xC353\t0x9B4D\n0xC354\t0x9BCA\n0xC355\t0x9BC9\n0xC356\t0x9BFD\n0xC357\t0x9BC8\n0xC358\t0x9BC0\n0xC359\t0x9D51\n0xC35A\t0x9D5D\n0xC35B\t0x9D60\n0xC35C\t0x9EE0\n0xC35D\t0x9F15\n0xC35E\t0x9F2C\n0xC35F\t0x5133\n0xC360\t0x56A5\n0xC361\t0x58DE\n0xC362\t0x58DF\n0xC363\t0x58E2\n0xC364\t0x5BF5\n0xC365\t0x9F90\n0xC366\t0x5EEC\n0xC367\t0x61F2\n0xC368\t0x61F7\n0xC369\t0x61F6\n0xC36A\t0x61F5\n0xC36B\t0x6500\n0xC36C\t0x650F\n0xC36D\t0x66E0\n0xC36E\t0x66DD\n0xC36F\t0x6AE5\n0xC370\t0x6ADD\n0xC371\t0x6ADA\n0xC372\t0x6AD3\n0xC373\t0x701B\n0xC374\t0x701F\n0xC375\t0x7028\n0xC376\t0x701A\n0xC377\t0x701D\n0xC378\t0x7015\n0xC379\t0x7018\n0xC37A\t0x7206\n0xC37B\t0x720D\n0xC37C\t0x7258\n0xC37D\t0x72A2\n0xC37E\t0x7378\n0xC3A1\t0x737A\n0xC3A2\t0x74BD\n0xC3A3\t0x74CA\n0xC3A4\t0x74E3\n0xC3A5\t0x7587\n0xC3A6\t0x7586\n0xC3A7\t0x765F\n0xC3A8\t0x7661\n0xC3A9\t0x77C7\n0xC3AA\t0x7919\n0xC3AB\t0x79B1\n0xC3AC\t0x7A6B\n0xC3AD\t0x7A69\n0xC3AE\t0x7C3E\n0xC3AF\t0x7C3F\n0xC3B0\t0x7C38\n0xC3B1\t0x7C3D\n0xC3B2\t0x7C37\n0xC3B3\t0x7C40\n0xC3B4\t0x7E6B\n0xC3B5\t0x7E6D\n0xC3B6\t0x7E79\n0xC3B7\t0x7E69\n0xC3B8\t0x7E6A\n0xC3B9\t0x7F85\n0xC3BA\t0x7E73\n0xC3BB\t0x7FB6\n0xC3BC\t0x7FB9\n0xC3BD\t0x7FB8\n0xC3BE\t0x81D8\n0xC3BF\t0x85E9\n0xC3C0\t0x85DD\n0xC3C1\t0x85EA\n0xC3C2\t0x85D5\n0xC3C3\t0x85E4\n0xC3C4\t0x85E5\n0xC3C5\t0x85F7\n0xC3C6\t0x87FB\n0xC3C7\t0x8805\n0xC3C8\t0x880D\n0xC3C9\t0x87F9\n0xC3CA\t0x87FE\n0xC3CB\t0x8960\n0xC3CC\t0x895F\n0xC3CD\t0x8956\n0xC3CE\t0x895E\n0xC3CF\t0x8B41\n0xC3D0\t0x8B5C\n0xC3D1\t0x8B58\n0xC3D2\t0x8B49\n0xC3D3\t0x8B5A\n0xC3D4\t0x8B4E\n0xC3D5\t0x8B4F\n0xC3D6\t0x8B46\n0xC3D7\t0x8B59\n0xC3D8\t0x8D08\n0xC3D9\t0x8D0A\n0xC3DA\t0x8E7C\n0xC3DB\t0x8E72\n0xC3DC\t0x8E87\n0xC3DD\t0x8E76\n0xC3DE\t0x8E6C\n0xC3DF\t0x8E7A\n0xC3E0\t0x8E74\n0xC3E1\t0x8F54\n0xC3E2\t0x8F4E\n0xC3E3\t0x8FAD\n0xC3E4\t0x908A\n0xC3E5\t0x908B\n0xC3E6\t0x91B1\n0xC3E7\t0x91AE\n0xC3E8\t0x93E1\n0xC3E9\t0x93D1\n0xC3EA\t0x93DF\n0xC3EB\t0x93C3\n0xC3EC\t0x93C8\n0xC3ED\t0x93DC\n0xC3EE\t0x93DD\n0xC3EF\t0x93D6\n0xC3F0\t0x93E2\n0xC3F1\t0x93CD\n0xC3F2\t0x93D8\n0xC3F3\t0x93E4\n0xC3F4\t0x93D7\n0xC3F5\t0x93E8\n0xC3F6\t0x95DC\n0xC3F7\t0x96B4\n0xC3F8\t0x96E3\n0xC3F9\t0x972A\n0xC3FA\t0x9727\n0xC3FB\t0x9761\n0xC3FC\t0x97DC\n0xC3FD\t0x97FB\n0xC3FE\t0x985E\n0xC440\t0x9858\n0xC441\t0x985B\n0xC442\t0x98BC\n0xC443\t0x9945\n0xC444\t0x9949\n0xC445\t0x9A16\n0xC446\t0x9A19\n0xC447\t0x9B0D\n0xC448\t0x9BE8\n0xC449\t0x9BE7\n0xC44A\t0x9BD6\n0xC44B\t0x9BDB\n0xC44C\t0x9D89\n0xC44D\t0x9D61\n0xC44E\t0x9D72\n0xC44F\t0x9D6A\n0xC450\t0x9D6C\n0xC451\t0x9E92\n0xC452\t0x9E97\n0xC453\t0x9E93\n0xC454\t0x9EB4\n0xC455\t0x52F8\n0xC456\t0x56A8\n0xC457\t0x56B7\n0xC458\t0x56B6\n0xC459\t0x56B4\n0xC45A\t0x56BC\n0xC45B\t0x58E4\n0xC45C\t0x5B40\n0xC45D\t0x5B43\n0xC45E\t0x5B7D\n0xC45F\t0x5BF6\n0xC460\t0x5DC9\n0xC461\t0x61F8\n0xC462\t0x61FA\n0xC463\t0x6518\n0xC464\t0x6514\n0xC465\t0x6519\n0xC466\t0x66E6\n0xC467\t0x6727\n0xC468\t0x6AEC\n0xC469\t0x703E\n0xC46A\t0x7030\n0xC46B\t0x7032\n0xC46C\t0x7210\n0xC46D\t0x737B\n0xC46E\t0x74CF\n0xC46F\t0x7662\n0xC470\t0x7665\n0xC471\t0x7926\n0xC472\t0x792A\n0xC473\t0x792C\n0xC474\t0x792B\n0xC475\t0x7AC7\n0xC476\t0x7AF6\n0xC477\t0x7C4C\n0xC478\t0x7C43\n0xC479\t0x7C4D\n0xC47A\t0x7CEF\n0xC47B\t0x7CF0\n0xC47C\t0x8FAE\n0xC47D\t0x7E7D\n0xC47E\t0x7E7C\n0xC4A1\t0x7E82\n0xC4A2\t0x7F4C\n0xC4A3\t0x8000\n0xC4A4\t0x81DA\n0xC4A5\t0x8266\n0xC4A6\t0x85FB\n0xC4A7\t0x85F9\n0xC4A8\t0x8611\n0xC4A9\t0x85FA\n0xC4AA\t0x8606\n0xC4AB\t0x860B\n0xC4AC\t0x8607\n0xC4AD\t0x860A\n0xC4AE\t0x8814\n0xC4AF\t0x8815\n0xC4B0\t0x8964\n0xC4B1\t0x89BA\n0xC4B2\t0x89F8\n0xC4B3\t0x8B70\n0xC4B4\t0x8B6C\n0xC4B5\t0x8B66\n0xC4B6\t0x8B6F\n0xC4B7\t0x8B5F\n0xC4B8\t0x8B6B\n0xC4B9\t0x8D0F\n0xC4BA\t0x8D0D\n0xC4BB\t0x8E89\n0xC4BC\t0x8E81\n0xC4BD\t0x8E85\n0xC4BE\t0x8E82\n0xC4BF\t0x91B4\n0xC4C0\t0x91CB\n0xC4C1\t0x9418\n0xC4C2\t0x9403\n0xC4C3\t0x93FD\n0xC4C4\t0x95E1\n0xC4C5\t0x9730\n0xC4C6\t0x98C4\n0xC4C7\t0x9952\n0xC4C8\t0x9951\n0xC4C9\t0x99A8\n0xC4CA\t0x9A2B\n0xC4CB\t0x9A30\n0xC4CC\t0x9A37\n0xC4CD\t0x9A35\n0xC4CE\t0x9C13\n0xC4CF\t0x9C0D\n0xC4D0\t0x9E79\n0xC4D1\t0x9EB5\n0xC4D2\t0x9EE8\n0xC4D3\t0x9F2F\n0xC4D4\t0x9F5F\n0xC4D5\t0x9F63\n0xC4D6\t0x9F61\n0xC4D7\t0x5137\n0xC4D8\t0x5138\n0xC4D9\t0x56C1\n0xC4DA\t0x56C0\n0xC4DB\t0x56C2\n0xC4DC\t0x5914\n0xC4DD\t0x5C6C\n0xC4DE\t0x5DCD\n0xC4DF\t0x61FC\n0xC4E0\t0x61FE\n0xC4E1\t0x651D\n0xC4E2\t0x651C\n0xC4E3\t0x6595\n0xC4E4\t0x66E9\n0xC4E5\t0x6AFB\n0xC4E6\t0x6B04\n0xC4E7\t0x6AFA\n0xC4E8\t0x6BB2\n0xC4E9\t0x704C\n0xC4EA\t0x721B\n0xC4EB\t0x72A7\n0xC4EC\t0x74D6\n0xC4ED\t0x74D4\n0xC4EE\t0x7669\n0xC4EF\t0x77D3\n0xC4F0\t0x7C50\n0xC4F1\t0x7E8F\n0xC4F2\t0x7E8C\n0xC4F3\t0x7FBC\n0xC4F4\t0x8617\n0xC4F5\t0x862D\n0xC4F6\t0x861A\n0xC4F7\t0x8823\n0xC4F8\t0x8822\n0xC4F9\t0x8821\n0xC4FA\t0x881F\n0xC4FB\t0x896A\n0xC4FC\t0x896C\n0xC4FD\t0x89BD\n0xC4FE\t0x8B74\n0xC540\t0x8B77\n0xC541\t0x8B7D\n0xC542\t0x8D13\n0xC543\t0x8E8A\n0xC544\t0x8E8D\n0xC545\t0x8E8B\n0xC546\t0x8F5F\n0xC547\t0x8FAF\n0xC548\t0x91BA\n0xC549\t0x942E\n0xC54A\t0x9433\n0xC54B\t0x9435\n0xC54C\t0x943A\n0xC54D\t0x9438\n0xC54E\t0x9432\n0xC54F\t0x942B\n0xC550\t0x95E2\n0xC551\t0x9738\n0xC552\t0x9739\n0xC553\t0x9732\n0xC554\t0x97FF\n0xC555\t0x9867\n0xC556\t0x9865\n0xC557\t0x9957\n0xC558\t0x9A45\n0xC559\t0x9A43\n0xC55A\t0x9A40\n0xC55B\t0x9A3E\n0xC55C\t0x9ACF\n0xC55D\t0x9B54\n0xC55E\t0x9B51\n0xC55F\t0x9C2D\n0xC560\t0x9C25\n0xC561\t0x9DAF\n0xC562\t0x9DB4\n0xC563\t0x9DC2\n0xC564\t0x9DB8\n0xC565\t0x9E9D\n0xC566\t0x9EEF\n0xC567\t0x9F19\n0xC568\t0x9F5C\n0xC569\t0x9F66\n0xC56A\t0x9F67\n0xC56B\t0x513C\n0xC56C\t0x513B\n0xC56D\t0x56C8\n0xC56E\t0x56CA\n0xC56F\t0x56C9\n0xC570\t0x5B7F\n0xC571\t0x5DD4\n0xC572\t0x5DD2\n0xC573\t0x5F4E\n0xC574\t0x61FF\n0xC575\t0x6524\n0xC576\t0x6B0A\n0xC577\t0x6B61\n0xC578\t0x7051\n0xC579\t0x7058\n0xC57A\t0x7380\n0xC57B\t0x74E4\n0xC57C\t0x758A\n0xC57D\t0x766E\n0xC57E\t0x766C\n0xC5A1\t0x79B3\n0xC5A2\t0x7C60\n0xC5A3\t0x7C5F\n0xC5A4\t0x807E\n0xC5A5\t0x807D\n0xC5A6\t0x81DF\n0xC5A7\t0x8972\n0xC5A8\t0x896F\n0xC5A9\t0x89FC\n0xC5AA\t0x8B80\n0xC5AB\t0x8D16\n0xC5AC\t0x8D17\n0xC5AD\t0x8E91\n0xC5AE\t0x8E93\n0xC5AF\t0x8F61\n0xC5B0\t0x9148\n0xC5B1\t0x9444\n0xC5B2\t0x9451\n0xC5B3\t0x9452\n0xC5B4\t0x973D\n0xC5B5\t0x973E\n0xC5B6\t0x97C3\n0xC5B7\t0x97C1\n0xC5B8\t0x986B\n0xC5B9\t0x9955\n0xC5BA\t0x9A55\n0xC5BB\t0x9A4D\n0xC5BC\t0x9AD2\n0xC5BD\t0x9B1A\n0xC5BE\t0x9C49\n0xC5BF\t0x9C31\n0xC5C0\t0x9C3E\n0xC5C1\t0x9C3B\n0xC5C2\t0x9DD3\n0xC5C3\t0x9DD7\n0xC5C4\t0x9F34\n0xC5C5\t0x9F6C\n0xC5C6\t0x9F6A\n0xC5C7\t0x9F94\n0xC5C8\t0x56CC\n0xC5C9\t0x5DD6\n0xC5CA\t0x6200\n0xC5CB\t0x6523\n0xC5CC\t0x652B\n0xC5CD\t0x652A\n0xC5CE\t0x66EC\n0xC5CF\t0x6B10\n0xC5D0\t0x74DA\n0xC5D1\t0x7ACA\n0xC5D2\t0x7C64\n0xC5D3\t0x7C63\n0xC5D4\t0x7C65\n0xC5D5\t0x7E93\n0xC5D6\t0x7E96\n0xC5D7\t0x7E94\n0xC5D8\t0x81E2\n0xC5D9\t0x8638\n0xC5DA\t0x863F\n0xC5DB\t0x8831\n0xC5DC\t0x8B8A\n0xC5DD\t0x9090\n0xC5DE\t0x908F\n0xC5DF\t0x9463\n0xC5E0\t0x9460\n0xC5E1\t0x9464\n0xC5E2\t0x9768\n0xC5E3\t0x986F\n0xC5E4\t0x995C\n0xC5E5\t0x9A5A\n0xC5E6\t0x9A5B\n0xC5E7\t0x9A57\n0xC5E8\t0x9AD3\n0xC5E9\t0x9AD4\n0xC5EA\t0x9AD1\n0xC5EB\t0x9C54\n0xC5EC\t0x9C57\n0xC5ED\t0x9C56\n0xC5EE\t0x9DE5\n0xC5EF\t0x9E9F\n0xC5F0\t0x9EF4\n0xC5F1\t0x56D1\n0xC5F2\t0x58E9\n0xC5F3\t0x652C\n0xC5F4\t0x705E\n0xC5F5\t0x7671\n0xC5F6\t0x7672\n0xC5F7\t0x77D7\n0xC5F8\t0x7F50\n0xC5F9\t0x7F88\n0xC5FA\t0x8836\n0xC5FB\t0x8839\n0xC5FC\t0x8862\n0xC5FD\t0x8B93\n0xC5FE\t0x8B92\n0xC640\t0x8B96\n0xC641\t0x8277\n0xC642\t0x8D1B\n0xC643\t0x91C0\n0xC644\t0x946A\n0xC645\t0x9742\n0xC646\t0x9748\n0xC647\t0x9744\n0xC648\t0x97C6\n0xC649\t0x9870\n0xC64A\t0x9A5F\n0xC64B\t0x9B22\n0xC64C\t0x9B58\n0xC64D\t0x9C5F\n0xC64E\t0x9DF9\n0xC64F\t0x9DFA\n0xC650\t0x9E7C\n0xC651\t0x9E7D\n0xC652\t0x9F07\n0xC653\t0x9F77\n0xC654\t0x9F72\n0xC655\t0x5EF3\n0xC656\t0x6B16\n0xC657\t0x7063\n0xC658\t0x7C6C\n0xC659\t0x7C6E\n0xC65A\t0x883B\n0xC65B\t0x89C0\n0xC65C\t0x8EA1\n0xC65D\t0x91C1\n0xC65E\t0x9472\n0xC65F\t0x9470\n0xC660\t0x9871\n0xC661\t0x995E\n0xC662\t0x9AD6\n0xC663\t0x9B23\n0xC664\t0x9ECC\n0xC665\t0x7064\n0xC666\t0x77DA\n0xC667\t0x8B9A\n0xC668\t0x9477\n0xC669\t0x97C9\n0xC66A\t0x9A62\n0xC66B\t0x9A65\n0xC66C\t0x7E9C\n0xC66D\t0x8B9C\n0xC66E\t0x8EAA\n0xC66F\t0x91C5\n0xC670\t0x947D\n0xC671\t0x947E\n0xC672\t0x947C\n0xC673\t0x9C77\n0xC674\t0x9C78\n0xC675\t0x9EF7\n0xC676\t0x8C54\n0xC677\t0x947F\n0xC678\t0x9E1A\n0xC679\t0x7228\n0xC67A\t0x9A6A\n0xC67B\t0x9B31\n0xC67C\t0x9E1B\n0xC67D\t0x9E1E\n0xC67E\t0x7C72\n0xC6A1\t0x2460\n0xC6A2\t0x2461\n0xC6A3\t0x2462\n0xC6A4\t0x2463\n0xC6A5\t0x2464\n0xC6A6\t0x2465\n0xC6A7\t0x2466\n0xC6A8\t0x2467\n0xC6A9\t0x2468\n0xC6AA\t0x2469\n0xC6AB\t0x2474\n0xC6AC\t0x2475\n0xC6AD\t0x2476\n0xC6AE\t0x2477\n0xC6AF\t0x2478\n0xC6B0\t0x2479\n0xC6B1\t0x247A\n0xC6B2\t0x247B\n0xC6B3\t0x247C\n0xC6B4\t0x247D\n0xC6B5\t0x2170\n0xC6B6\t0x2171\n0xC6B7\t0x2172\n0xC6B8\t0x2173\n0xC6B9\t0x2174\n0xC6BA\t0x2175\n0xC6BB\t0x2176\n0xC6BC\t0x2177\n0xC6BD\t0x2178\n0xC6BE\t0x2179\n0xC6BF\t0x2F02\n0xC6C0\t0x2F03\n0xC6C1\t0x2F05\n0xC6C2\t0x2F07\n0xC6C3\t0x2F0C\n0xC6C4\t0x2F0D\n0xC6C5\t0x2F0E\n0xC6C6\t0x2F13\n0xC6C7\t0x2F16\n0xC6C8\t0x2F19\n0xC6C9\t0x2F1B\n0xC6CA\t0x2F22\n0xC6CB\t0x2F27\n0xC6CC\t0x2F2E\n0xC6CD\t0x2F33\n0xC6CE\t0x2F34\n0xC6CF\t0x2F35\n0xC6D0\t0x2F39\n0xC6D1\t0x2F3A\n0xC6D2\t0x2F41\n0xC6D3\t0x2F46\n0xC6D4\t0x2F67\n0xC6D5\t0x2F68\n0xC6D6\t0x2FA1\n0xC6D7\t0x2FAA\n0xC6D8\t0x00A8\n0xC6D9\t0xFF3E\n0xC6DA\t0x30FD\n0xC6DB\t0x30FE\n0xC6DC\t0x309D\n0xC6DD\t0x309E\n0xC6E0\t0x3005\n0xC6E1\t0x3006\n0xC6E2\t0x3007\n0xC6E3\t0x30FC\n0xC6E4\t0xFF3B\n0xC6E5\t0xFF3D\n0xC6E6\t0x273D\n0xC6E7\t0x3041\n0xC6E8\t0x3042\n0xC6E9\t0x3043\n0xC6EA\t0x3044\n0xC6EB\t0x3045\n0xC6EC\t0x3046\n0xC6ED\t0x3047\n0xC6EE\t0x3048\n0xC6EF\t0x3049\n0xC6F0\t0x304A\n0xC6F1\t0x304B\n0xC6F2\t0x304C\n0xC6F3\t0x304D\n0xC6F4\t0x304E\n0xC6F5\t0x304F\n0xC6F6\t0x3050\n0xC6F7\t0x3051\n0xC6F8\t0x3052\n0xC6F9\t0x3053\n0xC6FA\t0x3054\n0xC6FB\t0x3055\n0xC6FC\t0x3056\n0xC6FD\t0x3057\n0xC6FE\t0x3058\n0xC740\t0x3059\n0xC741\t0x305A\n0xC742\t0x305B\n0xC743\t0x305C\n0xC744\t0x305D\n0xC745\t0x305E\n0xC746\t0x305F\n0xC747\t0x3060\n0xC748\t0x3061\n0xC749\t0x3062\n0xC74A\t0x3063\n0xC74B\t0x3064\n0xC74C\t0x3065\n0xC74D\t0x3066\n0xC74E\t0x3067\n0xC74F\t0x3068\n0xC750\t0x3069\n0xC751\t0x306A\n0xC752\t0x306B\n0xC753\t0x306C\n0xC754\t0x306D\n0xC755\t0x306E\n0xC756\t0x306F\n0xC757\t0x3070\n0xC758\t0x3071\n0xC759\t0x3072\n0xC75A\t0x3073\n0xC75B\t0x3074\n0xC75C\t0x3075\n0xC75D\t0x3076\n0xC75E\t0x3077\n0xC75F\t0x3078\n0xC760\t0x3079\n0xC761\t0x307A\n0xC762\t0x307B\n0xC763\t0x307C\n0xC764\t0x307D\n0xC765\t0x307E\n0xC766\t0x307F\n0xC767\t0x3080\n0xC768\t0x3081\n0xC769\t0x3082\n0xC76A\t0x3083\n0xC76B\t0x3084\n0xC76C\t0x3085\n0xC76D\t0x3086\n0xC76E\t0x3087\n0xC76F\t0x3088\n0xC770\t0x3089\n0xC771\t0x308A\n0xC772\t0x308B\n0xC773\t0x308C\n0xC774\t0x308D\n0xC775\t0x308E\n0xC776\t0x308F\n0xC777\t0x3090\n0xC778\t0x3091\n0xC779\t0x3092\n0xC77A\t0x3093\n0xC77B\t0x30A1\n0xC77C\t0x30A2\n0xC77D\t0x30A3\n0xC77E\t0x30A4\n0xC7A1\t0x30A5\n0xC7A2\t0x30A6\n0xC7A3\t0x30A7\n0xC7A4\t0x30A8\n0xC7A5\t0x30A9\n0xC7A6\t0x30AA\n0xC7A7\t0x30AB\n0xC7A8\t0x30AC\n0xC7A9\t0x30AD\n0xC7AA\t0x30AE\n0xC7AB\t0x30AF\n0xC7AC\t0x30B0\n0xC7AD\t0x30B1\n0xC7AE\t0x30B2\n0xC7AF\t0x30B3\n0xC7B0\t0x30B4\n0xC7B1\t0x30B5\n0xC7B2\t0x30B6\n0xC7B3\t0x30B7\n0xC7B4\t0x30B8\n0xC7B5\t0x30B9\n0xC7B6\t0x30BA\n0xC7B7\t0x30BB\n0xC7B8\t0x30BC\n0xC7B9\t0x30BD\n0xC7BA\t0x30BE\n0xC7BB\t0x30BF\n0xC7BC\t0x30C0\n0xC7BD\t0x30C1\n0xC7BE\t0x30C2\n0xC7BF\t0x30C3\n0xC7C0\t0x30C4\n0xC7C1\t0x30C5\n0xC7C2\t0x30C6\n0xC7C3\t0x30C7\n0xC7C4\t0x30C8\n0xC7C5\t0x30C9\n0xC7C6\t0x30CA\n0xC7C7\t0x30CB\n0xC7C8\t0x30CC\n0xC7C9\t0x30CD\n0xC7CA\t0x30CE\n0xC7CB\t0x30CF\n0xC7CC\t0x30D0\n0xC7CD\t0x30D1\n0xC7CE\t0x30D2\n0xC7CF\t0x30D3\n0xC7D0\t0x30D4\n0xC7D1\t0x30D5\n0xC7D2\t0x30D6\n0xC7D3\t0x30D7\n0xC7D4\t0x30D8\n0xC7D5\t0x30D9\n0xC7D6\t0x30DA\n0xC7D7\t0x30DB\n0xC7D8\t0x30DC\n0xC7D9\t0x30DD\n0xC7DA\t0x30DE\n0xC7DB\t0x30DF\n0xC7DC\t0x30E0\n0xC7DD\t0x30E1\n0xC7DE\t0x30E2\n0xC7DF\t0x30E3\n0xC7E0\t0x30E4\n0xC7E1\t0x30E5\n0xC7E2\t0x30E6\n0xC7E3\t0x30E7\n0xC7E4\t0x30E8\n0xC7E5\t0x30E9\n0xC7E6\t0x30EA\n0xC7E7\t0x30EB\n0xC7E8\t0x30EC\n0xC7E9\t0x30ED\n0xC7EA\t0x30EE\n0xC7EB\t0x30EF\n0xC7EC\t0x30F0\n0xC7ED\t0x30F1\n0xC7EE\t0x30F2\n0xC7EF\t0x30F3\n0xC7F0\t0x30F4\n0xC7F1\t0x30F5\n0xC7F2\t0x30F6\n0xC940\t0x4E42\n0xC941\t0x4E5C\n0xC942\t0x51F5\n0xC943\t0x531A\n0xC944\t0x5382\n0xC945\t0x4E07\n0xC946\t0x4E0C\n0xC947\t0x4E47\n0xC948\t0x4E8D\n0xC949\t0x56D7\n0xC94A\t0xFA0C\n0xC94B\t0x5C6E\n0xC94C\t0x5F73\n0xC94D\t0x4E0F\n0xC94E\t0x5187\n0xC94F\t0x4E0E\n0xC950\t0x4E2E\n0xC951\t0x4E93\n0xC952\t0x4EC2\n0xC953\t0x4EC9\n0xC954\t0x4EC8\n0xC955\t0x5198\n0xC956\t0x52FC\n0xC957\t0x536C\n0xC958\t0x53B9\n0xC959\t0x5720\n0xC95A\t0x5903\n0xC95B\t0x592C\n0xC95C\t0x5C10\n0xC95D\t0x5DFF\n0xC95E\t0x65E1\n0xC95F\t0x6BB3\n0xC960\t0x6BCC\n0xC961\t0x6C14\n0xC962\t0x723F\n0xC963\t0x4E31\n0xC964\t0x4E3C\n0xC965\t0x4EE8\n0xC966\t0x4EDC\n0xC967\t0x4EE9\n0xC968\t0x4EE1\n0xC969\t0x4EDD\n0xC96A\t0x4EDA\n0xC96B\t0x520C\n0xC96C\t0x531C\n0xC96D\t0x534C\n0xC96E\t0x5722\n0xC96F\t0x5723\n0xC970\t0x5917\n0xC971\t0x592F\n0xC972\t0x5B81\n0xC973\t0x5B84\n0xC974\t0x5C12\n0xC975\t0x5C3B\n0xC976\t0x5C74\n0xC977\t0x5C73\n0xC978\t0x5E04\n0xC979\t0x5E80\n0xC97A\t0x5E82\n0xC97B\t0x5FC9\n0xC97C\t0x6209\n0xC97D\t0x6250\n0xC97E\t0x6C15\n0xC9A1\t0x6C36\n0xC9A2\t0x6C43\n0xC9A3\t0x6C3F\n0xC9A4\t0x6C3B\n0xC9A5\t0x72AE\n0xC9A6\t0x72B0\n0xC9A7\t0x738A\n0xC9A8\t0x79B8\n0xC9A9\t0x808A\n0xC9AA\t0x961E\n0xC9AB\t0x4F0E\n0xC9AC\t0x4F18\n0xC9AD\t0x4F2C\n0xC9AE\t0x4EF5\n0xC9AF\t0x4F14\n0xC9B0\t0x4EF1\n0xC9B1\t0x4F00\n0xC9B2\t0x4EF7\n0xC9B3\t0x4F08\n0xC9B4\t0x4F1D\n0xC9B5\t0x4F02\n0xC9B6\t0x4F05\n0xC9B7\t0x4F22\n0xC9B8\t0x4F13\n0xC9B9\t0x4F04\n0xC9BA\t0x4EF4\n0xC9BB\t0x4F12\n0xC9BC\t0x51B1\n0xC9BD\t0x5213\n0xC9BE\t0x5209\n0xC9BF\t0x5210\n0xC9C0\t0x52A6\n0xC9C1\t0x5322\n0xC9C2\t0x531F\n0xC9C3\t0x534D\n0xC9C4\t0x538A\n0xC9C5\t0x5407\n0xC9C6\t0x56E1\n0xC9C7\t0x56DF\n0xC9C8\t0x572E\n0xC9C9\t0x572A\n0xC9CA\t0x5734\n0xC9CB\t0x593C\n0xC9CC\t0x5980\n0xC9CD\t0x597C\n0xC9CE\t0x5985\n0xC9CF\t0x597B\n0xC9D0\t0x597E\n0xC9D1\t0x5977\n0xC9D2\t0x597F\n0xC9D3\t0x5B56\n0xC9D4\t0x5C15\n0xC9D5\t0x5C25\n0xC9D6\t0x5C7C\n0xC9D7\t0x5C7A\n0xC9D8\t0x5C7B\n0xC9D9\t0x5C7E\n0xC9DA\t0x5DDF\n0xC9DB\t0x5E75\n0xC9DC\t0x5E84\n0xC9DD\t0x5F02\n0xC9DE\t0x5F1A\n0xC9DF\t0x5F74\n0xC9E0\t0x5FD5\n0xC9E1\t0x5FD4\n0xC9E2\t0x5FCF\n0xC9E3\t0x625C\n0xC9E4\t0x625E\n0xC9E5\t0x6264\n0xC9E6\t0x6261\n0xC9E7\t0x6266\n0xC9E8\t0x6262\n0xC9E9\t0x6259\n0xC9EA\t0x6260\n0xC9EB\t0x625A\n0xC9EC\t0x6265\n0xC9ED\t0x65EF\n0xC9EE\t0x65EE\n0xC9EF\t0x673E\n0xC9F0\t0x6739\n0xC9F1\t0x6738\n0xC9F2\t0x673B\n0xC9F3\t0x673A\n0xC9F4\t0x673F\n0xC9F5\t0x673C\n0xC9F6\t0x6733\n0xC9F7\t0x6C18\n0xC9F8\t0x6C46\n0xC9F9\t0x6C52\n0xC9FA\t0x6C5C\n0xC9FB\t0x6C4F\n0xC9FC\t0x6C4A\n0xC9FD\t0x6C54\n0xC9FE\t0x6C4B\n0xCA40\t0x6C4C\n0xCA41\t0x7071\n0xCA42\t0x725E\n0xCA43\t0x72B4\n0xCA44\t0x72B5\n0xCA45\t0x738E\n0xCA46\t0x752A\n0xCA47\t0x767F\n0xCA48\t0x7A75\n0xCA49\t0x7F51\n0xCA4A\t0x8278\n0xCA4B\t0x827C\n0xCA4C\t0x8280\n0xCA4D\t0x827D\n0xCA4E\t0x827F\n0xCA4F\t0x864D\n0xCA50\t0x897E\n0xCA51\t0x9099\n0xCA52\t0x9097\n0xCA53\t0x9098\n0xCA54\t0x909B\n0xCA55\t0x9094\n0xCA56\t0x9622\n0xCA57\t0x9624\n0xCA58\t0x9620\n0xCA59\t0x9623\n0xCA5A\t0x4F56\n0xCA5B\t0x4F3B\n0xCA5C\t0x4F62\n0xCA5D\t0x4F49\n0xCA5E\t0x4F53\n0xCA5F\t0x4F64\n0xCA60\t0x4F3E\n0xCA61\t0x4F67\n0xCA62\t0x4F52\n0xCA63\t0x4F5F\n0xCA64\t0x4F41\n0xCA65\t0x4F58\n0xCA66\t0x4F2D\n0xCA67\t0x4F33\n0xCA68\t0x4F3F\n0xCA69\t0x4F61\n0xCA6A\t0x518F\n0xCA6B\t0x51B9\n0xCA6C\t0x521C\n0xCA6D\t0x521E\n0xCA6E\t0x5221\n0xCA6F\t0x52AD\n0xCA70\t0x52AE\n0xCA71\t0x5309\n0xCA72\t0x5363\n0xCA73\t0x5372\n0xCA74\t0x538E\n0xCA75\t0x538F\n0xCA76\t0x5430\n0xCA77\t0x5437\n0xCA78\t0x542A\n0xCA79\t0x5454\n0xCA7A\t0x5445\n0xCA7B\t0x5419\n0xCA7C\t0x541C\n0xCA7D\t0x5425\n0xCA7E\t0x5418\n0xCAA1\t0x543D\n0xCAA2\t0x544F\n0xCAA3\t0x5441\n0xCAA4\t0x5428\n0xCAA5\t0x5424\n0xCAA6\t0x5447\n0xCAA7\t0x56EE\n0xCAA8\t0x56E7\n0xCAA9\t0x56E5\n0xCAAA\t0x5741\n0xCAAB\t0x5745\n0xCAAC\t0x574C\n0xCAAD\t0x5749\n0xCAAE\t0x574B\n0xCAAF\t0x5752\n0xCAB0\t0x5906\n0xCAB1\t0x5940\n0xCAB2\t0x59A6\n0xCAB3\t0x5998\n0xCAB4\t0x59A0\n0xCAB5\t0x5997\n0xCAB6\t0x598E\n0xCAB7\t0x59A2\n0xCAB8\t0x5990\n0xCAB9\t0x598F\n0xCABA\t0x59A7\n0xCABB\t0x59A1\n0xCABC\t0x5B8E\n0xCABD\t0x5B92\n0xCABE\t0x5C28\n0xCABF\t0x5C2A\n0xCAC0\t0x5C8D\n0xCAC1\t0x5C8F\n0xCAC2\t0x5C88\n0xCAC3\t0x5C8B\n0xCAC4\t0x5C89\n0xCAC5\t0x5C92\n0xCAC6\t0x5C8A\n0xCAC7\t0x5C86\n0xCAC8\t0x5C93\n0xCAC9\t0x5C95\n0xCACA\t0x5DE0\n0xCACB\t0x5E0A\n0xCACC\t0x5E0E\n0xCACD\t0x5E8B\n0xCACE\t0x5E89\n0xCACF\t0x5E8C\n0xCAD0\t0x5E88\n0xCAD1\t0x5E8D\n0xCAD2\t0x5F05\n0xCAD3\t0x5F1D\n0xCAD4\t0x5F78\n0xCAD5\t0x5F76\n0xCAD6\t0x5FD2\n0xCAD7\t0x5FD1\n0xCAD8\t0x5FD0\n0xCAD9\t0x5FED\n0xCADA\t0x5FE8\n0xCADB\t0x5FEE\n0xCADC\t0x5FF3\n0xCADD\t0x5FE1\n0xCADE\t0x5FE4\n0xCADF\t0x5FE3\n0xCAE0\t0x5FFA\n0xCAE1\t0x5FEF\n0xCAE2\t0x5FF7\n0xCAE3\t0x5FFB\n0xCAE4\t0x6000\n0xCAE5\t0x5FF4\n0xCAE6\t0x623A\n0xCAE7\t0x6283\n0xCAE8\t0x628C\n0xCAE9\t0x628E\n0xCAEA\t0x628F\n0xCAEB\t0x6294\n0xCAEC\t0x6287\n0xCAED\t0x6271\n0xCAEE\t0x627B\n0xCAEF\t0x627A\n0xCAF0\t0x6270\n0xCAF1\t0x6281\n0xCAF2\t0x6288\n0xCAF3\t0x6277\n0xCAF4\t0x627D\n0xCAF5\t0x6272\n0xCAF6\t0x6274\n0xCAF7\t0x6537\n0xCAF8\t0x65F0\n0xCAF9\t0x65F4\n0xCAFA\t0x65F3\n0xCAFB\t0x65F2\n0xCAFC\t0x65F5\n0xCAFD\t0x6745\n0xCAFE\t0x6747\n0xCB40\t0x6759\n0xCB41\t0x6755\n0xCB42\t0x674C\n0xCB43\t0x6748\n0xCB44\t0x675D\n0xCB45\t0x674D\n0xCB46\t0x675A\n0xCB47\t0x674B\n0xCB48\t0x6BD0\n0xCB49\t0x6C19\n0xCB4A\t0x6C1A\n0xCB4B\t0x6C78\n0xCB4C\t0x6C67\n0xCB4D\t0x6C6B\n0xCB4E\t0x6C84\n0xCB4F\t0x6C8B\n0xCB50\t0x6C8F\n0xCB51\t0x6C71\n0xCB52\t0x6C6F\n0xCB53\t0x6C69\n0xCB54\t0x6C9A\n0xCB55\t0x6C6D\n0xCB56\t0x6C87\n0xCB57\t0x6C95\n0xCB58\t0x6C9C\n0xCB59\t0x6C66\n0xCB5A\t0x6C73\n0xCB5B\t0x6C65\n0xCB5C\t0x6C7B\n0xCB5D\t0x6C8E\n0xCB5E\t0x7074\n0xCB5F\t0x707A\n0xCB60\t0x7263\n0xCB61\t0x72BF\n0xCB62\t0x72BD\n0xCB63\t0x72C3\n0xCB64\t0x72C6\n0xCB65\t0x72C1\n0xCB66\t0x72BA\n0xCB67\t0x72C5\n0xCB68\t0x7395\n0xCB69\t0x7397\n0xCB6A\t0x7393\n0xCB6B\t0x7394\n0xCB6C\t0x7392\n0xCB6D\t0x753A\n0xCB6E\t0x7539\n0xCB6F\t0x7594\n0xCB70\t0x7595\n0xCB71\t0x7681\n0xCB72\t0x793D\n0xCB73\t0x8034\n0xCB74\t0x8095\n0xCB75\t0x8099\n0xCB76\t0x8090\n0xCB77\t0x8092\n0xCB78\t0x809C\n0xCB79\t0x8290\n0xCB7A\t0x828F\n0xCB7B\t0x8285\n0xCB7C\t0x828E\n0xCB7D\t0x8291\n0xCB7E\t0x8293\n0xCBA1\t0x828A\n0xCBA2\t0x8283\n0xCBA3\t0x8284\n0xCBA4\t0x8C78\n0xCBA5\t0x8FC9\n0xCBA6\t0x8FBF\n0xCBA7\t0x909F\n0xCBA8\t0x90A1\n0xCBA9\t0x90A5\n0xCBAA\t0x909E\n0xCBAB\t0x90A7\n0xCBAC\t0x90A0\n0xCBAD\t0x9630\n0xCBAE\t0x9628\n0xCBAF\t0x962F\n0xCBB0\t0x962D\n0xCBB1\t0x4E33\n0xCBB2\t0x4F98\n0xCBB3\t0x4F7C\n0xCBB4\t0x4F85\n0xCBB5\t0x4F7D\n0xCBB6\t0x4F80\n0xCBB7\t0x4F87\n0xCBB8\t0x4F76\n0xCBB9\t0x4F74\n0xCBBA\t0x4F89\n0xCBBB\t0x4F84\n0xCBBC\t0x4F77\n0xCBBD\t0x4F4C\n0xCBBE\t0x4F97\n0xCBBF\t0x4F6A\n0xCBC0\t0x4F9A\n0xCBC1\t0x4F79\n0xCBC2\t0x4F81\n0xCBC3\t0x4F78\n0xCBC4\t0x4F90\n0xCBC5\t0x4F9C\n0xCBC6\t0x4F94\n0xCBC7\t0x4F9E\n0xCBC8\t0x4F92\n0xCBC9\t0x4F82\n0xCBCA\t0x4F95\n0xCBCB\t0x4F6B\n0xCBCC\t0x4F6E\n0xCBCD\t0x519E\n0xCBCE\t0x51BC\n0xCBCF\t0x51BE\n0xCBD0\t0x5235\n0xCBD1\t0x5232\n0xCBD2\t0x5233\n0xCBD3\t0x5246\n0xCBD4\t0x5231\n0xCBD5\t0x52BC\n0xCBD6\t0x530A\n0xCBD7\t0x530B\n0xCBD8\t0x533C\n0xCBD9\t0x5392\n0xCBDA\t0x5394\n0xCBDB\t0x5487\n0xCBDC\t0x547F\n0xCBDD\t0x5481\n0xCBDE\t0x5491\n0xCBDF\t0x5482\n0xCBE0\t0x5488\n0xCBE1\t0x546B\n0xCBE2\t0x547A\n0xCBE3\t0x547E\n0xCBE4\t0x5465\n0xCBE5\t0x546C\n0xCBE6\t0x5474\n0xCBE7\t0x5466\n0xCBE8\t0x548D\n0xCBE9\t0x546F\n0xCBEA\t0x5461\n0xCBEB\t0x5460\n0xCBEC\t0x5498\n0xCBED\t0x5463\n0xCBEE\t0x5467\n0xCBEF\t0x5464\n0xCBF0\t0x56F7\n0xCBF1\t0x56F9\n0xCBF2\t0x576F\n0xCBF3\t0x5772\n0xCBF4\t0x576D\n0xCBF5\t0x576B\n0xCBF6\t0x5771\n0xCBF7\t0x5770\n0xCBF8\t0x5776\n0xCBF9\t0x5780\n0xCBFA\t0x5775\n0xCBFB\t0x577B\n0xCBFC\t0x5773\n0xCBFD\t0x5774\n0xCBFE\t0x5762\n0xCC40\t0x5768\n0xCC41\t0x577D\n0xCC42\t0x590C\n0xCC43\t0x5945\n0xCC44\t0x59B5\n0xCC45\t0x59BA\n0xCC46\t0x59CF\n0xCC47\t0x59CE\n0xCC48\t0x59B2\n0xCC49\t0x59CC\n0xCC4A\t0x59C1\n0xCC4B\t0x59B6\n0xCC4C\t0x59BC\n0xCC4D\t0x59C3\n0xCC4E\t0x59D6\n0xCC4F\t0x59B1\n0xCC50\t0x59BD\n0xCC51\t0x59C0\n0xCC52\t0x59C8\n0xCC53\t0x59B4\n0xCC54\t0x59C7\n0xCC55\t0x5B62\n0xCC56\t0x5B65\n0xCC57\t0x5B93\n0xCC58\t0x5B95\n0xCC59\t0x5C44\n0xCC5A\t0x5C47\n0xCC5B\t0x5CAE\n0xCC5C\t0x5CA4\n0xCC5D\t0x5CA0\n0xCC5E\t0x5CB5\n0xCC5F\t0x5CAF\n0xCC60\t0x5CA8\n0xCC61\t0x5CAC\n0xCC62\t0x5C9F\n0xCC63\t0x5CA3\n0xCC64\t0x5CAD\n0xCC65\t0x5CA2\n0xCC66\t0x5CAA\n0xCC67\t0x5CA7\n0xCC68\t0x5C9D\n0xCC69\t0x5CA5\n0xCC6A\t0x5CB6\n0xCC6B\t0x5CB0\n0xCC6C\t0x5CA6\n0xCC6D\t0x5E17\n0xCC6E\t0x5E14\n0xCC6F\t0x5E19\n0xCC70\t0x5F28\n0xCC71\t0x5F22\n0xCC72\t0x5F23\n0xCC73\t0x5F24\n0xCC74\t0x5F54\n0xCC75\t0x5F82\n0xCC76\t0x5F7E\n0xCC77\t0x5F7D\n0xCC78\t0x5FDE\n0xCC79\t0x5FE5\n0xCC7A\t0x602D\n0xCC7B\t0x6026\n0xCC7C\t0x6019\n0xCC7D\t0x6032\n0xCC7E\t0x600B\n0xCCA1\t0x6034\n0xCCA2\t0x600A\n0xCCA3\t0x6017\n0xCCA4\t0x6033\n0xCCA5\t0x601A\n0xCCA6\t0x601E\n0xCCA7\t0x602C\n0xCCA8\t0x6022\n0xCCA9\t0x600D\n0xCCAA\t0x6010\n0xCCAB\t0x602E\n0xCCAC\t0x6013\n0xCCAD\t0x6011\n0xCCAE\t0x600C\n0xCCAF\t0x6009\n0xCCB0\t0x601C\n0xCCB1\t0x6214\n0xCCB2\t0x623D\n0xCCB3\t0x62AD\n0xCCB4\t0x62B4\n0xCCB5\t0x62D1\n0xCCB6\t0x62BE\n0xCCB7\t0x62AA\n0xCCB8\t0x62B6\n0xCCB9\t0x62CA\n0xCCBA\t0x62AE\n0xCCBB\t0x62B3\n0xCCBC\t0x62AF\n0xCCBD\t0x62BB\n0xCCBE\t0x62A9\n0xCCBF\t0x62B0\n0xCCC0\t0x62B8\n0xCCC1\t0x653D\n0xCCC2\t0x65A8\n0xCCC3\t0x65BB\n0xCCC4\t0x6609\n0xCCC5\t0x65FC\n0xCCC6\t0x6604\n0xCCC7\t0x6612\n0xCCC8\t0x6608\n0xCCC9\t0x65FB\n0xCCCA\t0x6603\n0xCCCB\t0x660B\n0xCCCC\t0x660D\n0xCCCD\t0x6605\n0xCCCE\t0x65FD\n0xCCCF\t0x6611\n0xCCD0\t0x6610\n0xCCD1\t0x66F6\n0xCCD2\t0x670A\n0xCCD3\t0x6785\n0xCCD4\t0x676C\n0xCCD5\t0x678E\n0xCCD6\t0x6792\n0xCCD7\t0x6776\n0xCCD8\t0x677B\n0xCCD9\t0x6798\n0xCCDA\t0x6786\n0xCCDB\t0x6784\n0xCCDC\t0x6774\n0xCCDD\t0x678D\n0xCCDE\t0x678C\n0xCCDF\t0x677A\n0xCCE0\t0x679F\n0xCCE1\t0x6791\n0xCCE2\t0x6799\n0xCCE3\t0x6783\n0xCCE4\t0x677D\n0xCCE5\t0x6781\n0xCCE6\t0x6778\n0xCCE7\t0x6779\n0xCCE8\t0x6794\n0xCCE9\t0x6B25\n0xCCEA\t0x6B80\n0xCCEB\t0x6B7E\n0xCCEC\t0x6BDE\n0xCCED\t0x6C1D\n0xCCEE\t0x6C93\n0xCCEF\t0x6CEC\n0xCCF0\t0x6CEB\n0xCCF1\t0x6CEE\n0xCCF2\t0x6CD9\n0xCCF3\t0x6CB6\n0xCCF4\t0x6CD4\n0xCCF5\t0x6CAD\n0xCCF6\t0x6CE7\n0xCCF7\t0x6CB7\n0xCCF8\t0x6CD0\n0xCCF9\t0x6CC2\n0xCCFA\t0x6CBA\n0xCCFB\t0x6CC3\n0xCCFC\t0x6CC6\n0xCCFD\t0x6CED\n0xCCFE\t0x6CF2\n0xCD40\t0x6CD2\n0xCD41\t0x6CDD\n0xCD42\t0x6CB4\n0xCD43\t0x6C8A\n0xCD44\t0x6C9D\n0xCD45\t0x6C80\n0xCD46\t0x6CDE\n0xCD47\t0x6CC0\n0xCD48\t0x6D30\n0xCD49\t0x6CCD\n0xCD4A\t0x6CC7\n0xCD4B\t0x6CB0\n0xCD4C\t0x6CF9\n0xCD4D\t0x6CCF\n0xCD4E\t0x6CE9\n0xCD4F\t0x6CD1\n0xCD50\t0x7094\n0xCD51\t0x7098\n0xCD52\t0x7085\n0xCD53\t0x7093\n0xCD54\t0x7086\n0xCD55\t0x7084\n0xCD56\t0x7091\n0xCD57\t0x7096\n0xCD58\t0x7082\n0xCD59\t0x709A\n0xCD5A\t0x7083\n0xCD5B\t0x726A\n0xCD5C\t0x72D6\n0xCD5D\t0x72CB\n0xCD5E\t0x72D8\n0xCD5F\t0x72C9\n0xCD60\t0x72DC\n0xCD61\t0x72D2\n0xCD62\t0x72D4\n0xCD63\t0x72DA\n0xCD64\t0x72CC\n0xCD65\t0x72D1\n0xCD66\t0x73A4\n0xCD67\t0x73A1\n0xCD68\t0x73AD\n0xCD69\t0x73A6\n0xCD6A\t0x73A2\n0xCD6B\t0x73A0\n0xCD6C\t0x73AC\n0xCD6D\t0x739D\n0xCD6E\t0x74DD\n0xCD6F\t0x74E8\n0xCD70\t0x753F\n0xCD71\t0x7540\n0xCD72\t0x753E\n0xCD73\t0x758C\n0xCD74\t0x7598\n0xCD75\t0x76AF\n0xCD76\t0x76F3\n0xCD77\t0x76F1\n0xCD78\t0x76F0\n0xCD79\t0x76F5\n0xCD7A\t0x77F8\n0xCD7B\t0x77FC\n0xCD7C\t0x77F9\n0xCD7D\t0x77FB\n0xCD7E\t0x77FA\n0xCDA1\t0x77F7\n0xCDA2\t0x7942\n0xCDA3\t0x793F\n0xCDA4\t0x79C5\n0xCDA5\t0x7A78\n0xCDA6\t0x7A7B\n0xCDA7\t0x7AFB\n0xCDA8\t0x7C75\n0xCDA9\t0x7CFD\n0xCDAA\t0x8035\n0xCDAB\t0x808F\n0xCDAC\t0x80AE\n0xCDAD\t0x80A3\n0xCDAE\t0x80B8\n0xCDAF\t0x80B5\n0xCDB0\t0x80AD\n0xCDB1\t0x8220\n0xCDB2\t0x82A0\n0xCDB3\t0x82C0\n0xCDB4\t0x82AB\n0xCDB5\t0x829A\n0xCDB6\t0x8298\n0xCDB7\t0x829B\n0xCDB8\t0x82B5\n0xCDB9\t0x82A7\n0xCDBA\t0x82AE\n0xCDBB\t0x82BC\n0xCDBC\t0x829E\n0xCDBD\t0x82BA\n0xCDBE\t0x82B4\n0xCDBF\t0x82A8\n0xCDC0\t0x82A1\n0xCDC1\t0x82A9\n0xCDC2\t0x82C2\n0xCDC3\t0x82A4\n0xCDC4\t0x82C3\n0xCDC5\t0x82B6\n0xCDC6\t0x82A2\n0xCDC7\t0x8670\n0xCDC8\t0x866F\n0xCDC9\t0x866D\n0xCDCA\t0x866E\n0xCDCB\t0x8C56\n0xCDCC\t0x8FD2\n0xCDCD\t0x8FCB\n0xCDCE\t0x8FD3\n0xCDCF\t0x8FCD\n0xCDD0\t0x8FD6\n0xCDD1\t0x8FD5\n0xCDD2\t0x8FD7\n0xCDD3\t0x90B2\n0xCDD4\t0x90B4\n0xCDD5\t0x90AF\n0xCDD6\t0x90B3\n0xCDD7\t0x90B0\n0xCDD8\t0x9639\n0xCDD9\t0x963D\n0xCDDA\t0x963C\n0xCDDB\t0x963A\n0xCDDC\t0x9643\n0xCDDD\t0x4FCD\n0xCDDE\t0x4FC5\n0xCDDF\t0x4FD3\n0xCDE0\t0x4FB2\n0xCDE1\t0x4FC9\n0xCDE2\t0x4FCB\n0xCDE3\t0x4FC1\n0xCDE4\t0x4FD4\n0xCDE5\t0x4FDC\n0xCDE6\t0x4FD9\n0xCDE7\t0x4FBB\n0xCDE8\t0x4FB3\n0xCDE9\t0x4FDB\n0xCDEA\t0x4FC7\n0xCDEB\t0x4FD6\n0xCDEC\t0x4FBA\n0xCDED\t0x4FC0\n0xCDEE\t0x4FB9\n0xCDEF\t0x4FEC\n0xCDF0\t0x5244\n0xCDF1\t0x5249\n0xCDF2\t0x52C0\n0xCDF3\t0x52C2\n0xCDF4\t0x533D\n0xCDF5\t0x537C\n0xCDF6\t0x5397\n0xCDF7\t0x5396\n0xCDF8\t0x5399\n0xCDF9\t0x5398\n0xCDFA\t0x54BA\n0xCDFB\t0x54A1\n0xCDFC\t0x54AD\n0xCDFD\t0x54A5\n0xCDFE\t0x54CF\n0xCE40\t0x54C3\n0xCE41\t0x830D\n0xCE42\t0x54B7\n0xCE43\t0x54AE\n0xCE44\t0x54D6\n0xCE45\t0x54B6\n0xCE46\t0x54C5\n0xCE47\t0x54C6\n0xCE48\t0x54A0\n0xCE49\t0x5470\n0xCE4A\t0x54BC\n0xCE4B\t0x54A2\n0xCE4C\t0x54BE\n0xCE4D\t0x5472\n0xCE4E\t0x54DE\n0xCE4F\t0x54B0\n0xCE50\t0x57B5\n0xCE51\t0x579E\n0xCE52\t0x579F\n0xCE53\t0x57A4\n0xCE54\t0x578C\n0xCE55\t0x5797\n0xCE56\t0x579D\n0xCE57\t0x579B\n0xCE58\t0x5794\n0xCE59\t0x5798\n0xCE5A\t0x578F\n0xCE5B\t0x5799\n0xCE5C\t0x57A5\n0xCE5D\t0x579A\n0xCE5E\t0x5795\n0xCE5F\t0x58F4\n0xCE60\t0x590D\n0xCE61\t0x5953\n0xCE62\t0x59E1\n0xCE63\t0x59DE\n0xCE64\t0x59EE\n0xCE65\t0x5A00\n0xCE66\t0x59F1\n0xCE67\t0x59DD\n0xCE68\t0x59FA\n0xCE69\t0x59FD\n0xCE6A\t0x59FC\n0xCE6B\t0x59F6\n0xCE6C\t0x59E4\n0xCE6D\t0x59F2\n0xCE6E\t0x59F7\n0xCE6F\t0x59DB\n0xCE70\t0x59E9\n0xCE71\t0x59F3\n0xCE72\t0x59F5\n0xCE73\t0x59E0\n0xCE74\t0x59FE\n0xCE75\t0x59F4\n0xCE76\t0x59ED\n0xCE77\t0x5BA8\n0xCE78\t0x5C4C\n0xCE79\t0x5CD0\n0xCE7A\t0x5CD8\n0xCE7B\t0x5CCC\n0xCE7C\t0x5CD7\n0xCE7D\t0x5CCB\n0xCE7E\t0x5CDB\n0xCEA1\t0x5CDE\n0xCEA2\t0x5CDA\n0xCEA3\t0x5CC9\n0xCEA4\t0x5CC7\n0xCEA5\t0x5CCA\n0xCEA6\t0x5CD6\n0xCEA7\t0x5CD3\n0xCEA8\t0x5CD4\n0xCEA9\t0x5CCF\n0xCEAA\t0x5CC8\n0xCEAB\t0x5CC6\n0xCEAC\t0x5CCE\n0xCEAD\t0x5CDF\n0xCEAE\t0x5CF8\n0xCEAF\t0x5DF9\n0xCEB0\t0x5E21\n0xCEB1\t0x5E22\n0xCEB2\t0x5E23\n0xCEB3\t0x5E20\n0xCEB4\t0x5E24\n0xCEB5\t0x5EB0\n0xCEB6\t0x5EA4\n0xCEB7\t0x5EA2\n0xCEB8\t0x5E9B\n0xCEB9\t0x5EA3\n0xCEBA\t0x5EA5\n0xCEBB\t0x5F07\n0xCEBC\t0x5F2E\n0xCEBD\t0x5F56\n0xCEBE\t0x5F86\n0xCEBF\t0x6037\n0xCEC0\t0x6039\n0xCEC1\t0x6054\n0xCEC2\t0x6072\n0xCEC3\t0x605E\n0xCEC4\t0x6045\n0xCEC5\t0x6053\n0xCEC6\t0x6047\n0xCEC7\t0x6049\n0xCEC8\t0x605B\n0xCEC9\t0x604C\n0xCECA\t0x6040\n0xCECB\t0x6042\n0xCECC\t0x605F\n0xCECD\t0x6024\n0xCECE\t0x6044\n0xCECF\t0x6058\n0xCED0\t0x6066\n0xCED1\t0x606E\n0xCED2\t0x6242\n0xCED3\t0x6243\n0xCED4\t0x62CF\n0xCED5\t0x630D\n0xCED6\t0x630B\n0xCED7\t0x62F5\n0xCED8\t0x630E\n0xCED9\t0x6303\n0xCEDA\t0x62EB\n0xCEDB\t0x62F9\n0xCEDC\t0x630F\n0xCEDD\t0x630C\n0xCEDE\t0x62F8\n0xCEDF\t0x62F6\n0xCEE0\t0x6300\n0xCEE1\t0x6313\n0xCEE2\t0x6314\n0xCEE3\t0x62FA\n0xCEE4\t0x6315\n0xCEE5\t0x62FB\n0xCEE6\t0x62F0\n0xCEE7\t0x6541\n0xCEE8\t0x6543\n0xCEE9\t0x65AA\n0xCEEA\t0x65BF\n0xCEEB\t0x6636\n0xCEEC\t0x6621\n0xCEED\t0x6632\n0xCEEE\t0x6635\n0xCEEF\t0x661C\n0xCEF0\t0x6626\n0xCEF1\t0x6622\n0xCEF2\t0x6633\n0xCEF3\t0x662B\n0xCEF4\t0x663A\n0xCEF5\t0x661D\n0xCEF6\t0x6634\n0xCEF7\t0x6639\n0xCEF8\t0x662E\n0xCEF9\t0x670F\n0xCEFA\t0x6710\n0xCEFB\t0x67C1\n0xCEFC\t0x67F2\n0xCEFD\t0x67C8\n0xCEFE\t0x67BA\n0xCF40\t0x67DC\n0xCF41\t0x67BB\n0xCF42\t0x67F8\n0xCF43\t0x67D8\n0xCF44\t0x67C0\n0xCF45\t0x67B7\n0xCF46\t0x67C5\n0xCF47\t0x67EB\n0xCF48\t0x67E4\n0xCF49\t0x67DF\n0xCF4A\t0x67B5\n0xCF4B\t0x67CD\n0xCF4C\t0x67B3\n0xCF4D\t0x67F7\n0xCF4E\t0x67F6\n0xCF4F\t0x67EE\n0xCF50\t0x67E3\n0xCF51\t0x67C2\n0xCF52\t0x67B9\n0xCF53\t0x67CE\n0xCF54\t0x67E7\n0xCF55\t0x67F0\n0xCF56\t0x67B2\n0xCF57\t0x67FC\n0xCF58\t0x67C6\n0xCF59\t0x67ED\n0xCF5A\t0x67CC\n0xCF5B\t0x67AE\n0xCF5C\t0x67E6\n0xCF5D\t0x67DB\n0xCF5E\t0x67FA\n0xCF5F\t0x67C9\n0xCF60\t0x67CA\n0xCF61\t0x67C3\n0xCF62\t0x67EA\n0xCF63\t0x67CB\n0xCF64\t0x6B28\n0xCF65\t0x6B82\n0xCF66\t0x6B84\n0xCF67\t0x6BB6\n0xCF68\t0x6BD6\n0xCF69\t0x6BD8\n0xCF6A\t0x6BE0\n0xCF6B\t0x6C20\n0xCF6C\t0x6C21\n0xCF6D\t0x6D28\n0xCF6E\t0x6D34\n0xCF6F\t0x6D2D\n0xCF70\t0x6D1F\n0xCF71\t0x6D3C\n0xCF72\t0x6D3F\n0xCF73\t0x6D12\n0xCF74\t0x6D0A\n0xCF75\t0x6CDA\n0xCF76\t0x6D33\n0xCF77\t0x6D04\n0xCF78\t0x6D19\n0xCF79\t0x6D3A\n0xCF7A\t0x6D1A\n0xCF7B\t0x6D11\n0xCF7C\t0x6D00\n0xCF7D\t0x6D1D\n0xCF7E\t0x6D42\n0xCFA1\t0x6D01\n0xCFA2\t0x6D18\n0xCFA3\t0x6D37\n0xCFA4\t0x6D03\n0xCFA5\t0x6D0F\n0xCFA6\t0x6D40\n0xCFA7\t0x6D07\n0xCFA8\t0x6D20\n0xCFA9\t0x6D2C\n0xCFAA\t0x6D08\n0xCFAB\t0x6D22\n0xCFAC\t0x6D09\n0xCFAD\t0x6D10\n0xCFAE\t0x70B7\n0xCFAF\t0x709F\n0xCFB0\t0x70BE\n0xCFB1\t0x70B1\n0xCFB2\t0x70B0\n0xCFB3\t0x70A1\n0xCFB4\t0x70B4\n0xCFB5\t0x70B5\n0xCFB6\t0x70A9\n0xCFB7\t0x7241\n0xCFB8\t0x7249\n0xCFB9\t0x724A\n0xCFBA\t0x726C\n0xCFBB\t0x7270\n0xCFBC\t0x7273\n0xCFBD\t0x726E\n0xCFBE\t0x72CA\n0xCFBF\t0x72E4\n0xCFC0\t0x72E8\n0xCFC1\t0x72EB\n0xCFC2\t0x72DF\n0xCFC3\t0x72EA\n0xCFC4\t0x72E6\n0xCFC5\t0x72E3\n0xCFC6\t0x7385\n0xCFC7\t0x73CC\n0xCFC8\t0x73C2\n0xCFC9\t0x73C8\n0xCFCA\t0x73C5\n0xCFCB\t0x73B9\n0xCFCC\t0x73B6\n0xCFCD\t0x73B5\n0xCFCE\t0x73B4\n0xCFCF\t0x73EB\n0xCFD0\t0x73BF\n0xCFD1\t0x73C7\n0xCFD2\t0x73BE\n0xCFD3\t0x73C3\n0xCFD4\t0x73C6\n0xCFD5\t0x73B8\n0xCFD6\t0x73CB\n0xCFD7\t0x74EC\n0xCFD8\t0x74EE\n0xCFD9\t0x752E\n0xCFDA\t0x7547\n0xCFDB\t0x7548\n0xCFDC\t0x75A7\n0xCFDD\t0x75AA\n0xCFDE\t0x7679\n0xCFDF\t0x76C4\n0xCFE0\t0x7708\n0xCFE1\t0x7703\n0xCFE2\t0x7704\n0xCFE3\t0x7705\n0xCFE4\t0x770A\n0xCFE5\t0x76F7\n0xCFE6\t0x76FB\n0xCFE7\t0x76FA\n0xCFE8\t0x77E7\n0xCFE9\t0x77E8\n0xCFEA\t0x7806\n0xCFEB\t0x7811\n0xCFEC\t0x7812\n0xCFED\t0x7805\n0xCFEE\t0x7810\n0xCFEF\t0x780F\n0xCFF0\t0x780E\n0xCFF1\t0x7809\n0xCFF2\t0x7803\n0xCFF3\t0x7813\n0xCFF4\t0x794A\n0xCFF5\t0x794C\n0xCFF6\t0x794B\n0xCFF7\t0x7945\n0xCFF8\t0x7944\n0xCFF9\t0x79D5\n0xCFFA\t0x79CD\n0xCFFB\t0x79CF\n0xCFFC\t0x79D6\n0xCFFD\t0x79CE\n0xCFFE\t0x7A80\n0xD040\t0x7A7E\n0xD041\t0x7AD1\n0xD042\t0x7B00\n0xD043\t0x7B01\n0xD044\t0x7C7A\n0xD045\t0x7C78\n0xD046\t0x7C79\n0xD047\t0x7C7F\n0xD048\t0x7C80\n0xD049\t0x7C81\n0xD04A\t0x7D03\n0xD04B\t0x7D08\n0xD04C\t0x7D01\n0xD04D\t0x7F58\n0xD04E\t0x7F91\n0xD04F\t0x7F8D\n0xD050\t0x7FBE\n0xD051\t0x8007\n0xD052\t0x800E\n0xD053\t0x800F\n0xD054\t0x8014\n0xD055\t0x8037\n0xD056\t0x80D8\n0xD057\t0x80C7\n0xD058\t0x80E0\n0xD059\t0x80D1\n0xD05A\t0x80C8\n0xD05B\t0x80C2\n0xD05C\t0x80D0\n0xD05D\t0x80C5\n0xD05E\t0x80E3\n0xD05F\t0x80D9\n0xD060\t0x80DC\n0xD061\t0x80CA\n0xD062\t0x80D5\n0xD063\t0x80C9\n0xD064\t0x80CF\n0xD065\t0x80D7\n0xD066\t0x80E6\n0xD067\t0x80CD\n0xD068\t0x81FF\n0xD069\t0x8221\n0xD06A\t0x8294\n0xD06B\t0x82D9\n0xD06C\t0x82FE\n0xD06D\t0x82F9\n0xD06E\t0x8307\n0xD06F\t0x82E8\n0xD070\t0x8300\n0xD071\t0x82D5\n0xD072\t0x833A\n0xD073\t0x82EB\n0xD074\t0x82D6\n0xD075\t0x82F4\n0xD076\t0x82EC\n0xD077\t0x82E1\n0xD078\t0x82F2\n0xD079\t0x82F5\n0xD07A\t0x830C\n0xD07B\t0x82FB\n0xD07C\t0x82F6\n0xD07D\t0x82F0\n0xD07E\t0x82EA\n0xD0A1\t0x82E4\n0xD0A2\t0x82E0\n0xD0A3\t0x82FA\n0xD0A4\t0x82F3\n0xD0A5\t0x82ED\n0xD0A6\t0x8677\n0xD0A7\t0x8674\n0xD0A8\t0x867C\n0xD0A9\t0x8673\n0xD0AA\t0x8841\n0xD0AB\t0x884E\n0xD0AC\t0x8867\n0xD0AD\t0x886A\n0xD0AE\t0x8869\n0xD0AF\t0x89D3\n0xD0B0\t0x8A04\n0xD0B1\t0x8A07\n0xD0B2\t0x8D72\n0xD0B3\t0x8FE3\n0xD0B4\t0x8FE1\n0xD0B5\t0x8FEE\n0xD0B6\t0x8FE0\n0xD0B7\t0x90F1\n0xD0B8\t0x90BD\n0xD0B9\t0x90BF\n0xD0BA\t0x90D5\n0xD0BB\t0x90C5\n0xD0BC\t0x90BE\n0xD0BD\t0x90C7\n0xD0BE\t0x90CB\n0xD0BF\t0x90C8\n0xD0C0\t0x91D4\n0xD0C1\t0x91D3\n0xD0C2\t0x9654\n0xD0C3\t0x964F\n0xD0C4\t0x9651\n0xD0C5\t0x9653\n0xD0C6\t0x964A\n0xD0C7\t0x964E\n0xD0C8\t0x501E\n0xD0C9\t0x5005\n0xD0CA\t0x5007\n0xD0CB\t0x5013\n0xD0CC\t0x5022\n0xD0CD\t0x5030\n0xD0CE\t0x501B\n0xD0CF\t0x4FF5\n0xD0D0\t0x4FF4\n0xD0D1\t0x5033\n0xD0D2\t0x5037\n0xD0D3\t0x502C\n0xD0D4\t0x4FF6\n0xD0D5\t0x4FF7\n0xD0D6\t0x5017\n0xD0D7\t0x501C\n0xD0D8\t0x5020\n0xD0D9\t0x5027\n0xD0DA\t0x5035\n0xD0DB\t0x502F\n0xD0DC\t0x5031\n0xD0DD\t0x500E\n0xD0DE\t0x515A\n0xD0DF\t0x5194\n0xD0E0\t0x5193\n0xD0E1\t0x51CA\n0xD0E2\t0x51C4\n0xD0E3\t0x51C5\n0xD0E4\t0x51C8\n0xD0E5\t0x51CE\n0xD0E6\t0x5261\n0xD0E7\t0x525A\n0xD0E8\t0x5252\n0xD0E9\t0x525E\n0xD0EA\t0x525F\n0xD0EB\t0x5255\n0xD0EC\t0x5262\n0xD0ED\t0x52CD\n0xD0EE\t0x530E\n0xD0EF\t0x539E\n0xD0F0\t0x5526\n0xD0F1\t0x54E2\n0xD0F2\t0x5517\n0xD0F3\t0x5512\n0xD0F4\t0x54E7\n0xD0F5\t0x54F3\n0xD0F6\t0x54E4\n0xD0F7\t0x551A\n0xD0F8\t0x54FF\n0xD0F9\t0x5504\n0xD0FA\t0x5508\n0xD0FB\t0x54EB\n0xD0FC\t0x5511\n0xD0FD\t0x5505\n0xD0FE\t0x54F1\n0xD140\t0x550A\n0xD141\t0x54FB\n0xD142\t0x54F7\n0xD143\t0x54F8\n0xD144\t0x54E0\n0xD145\t0x550E\n0xD146\t0x5503\n0xD147\t0x550B\n0xD148\t0x5701\n0xD149\t0x5702\n0xD14A\t0x57CC\n0xD14B\t0x5832\n0xD14C\t0x57D5\n0xD14D\t0x57D2\n0xD14E\t0x57BA\n0xD14F\t0x57C6\n0xD150\t0x57BD\n0xD151\t0x57BC\n0xD152\t0x57B8\n0xD153\t0x57B6\n0xD154\t0x57BF\n0xD155\t0x57C7\n0xD156\t0x57D0\n0xD157\t0x57B9\n0xD158\t0x57C1\n0xD159\t0x590E\n0xD15A\t0x594A\n0xD15B\t0x5A19\n0xD15C\t0x5A16\n0xD15D\t0x5A2D\n0xD15E\t0x5A2E\n0xD15F\t0x5A15\n0xD160\t0x5A0F\n0xD161\t0x5A17\n0xD162\t0x5A0A\n0xD163\t0x5A1E\n0xD164\t0x5A33\n0xD165\t0x5B6C\n0xD166\t0x5BA7\n0xD167\t0x5BAD\n0xD168\t0x5BAC\n0xD169\t0x5C03\n0xD16A\t0x5C56\n0xD16B\t0x5C54\n0xD16C\t0x5CEC\n0xD16D\t0x5CFF\n0xD16E\t0x5CEE\n0xD16F\t0x5CF1\n0xD170\t0x5CF7\n0xD171\t0x5D00\n0xD172\t0x5CF9\n0xD173\t0x5E29\n0xD174\t0x5E28\n0xD175\t0x5EA8\n0xD176\t0x5EAE\n0xD177\t0x5EAA\n0xD178\t0x5EAC\n0xD179\t0x5F33\n0xD17A\t0x5F30\n0xD17B\t0x5F67\n0xD17C\t0x605D\n0xD17D\t0x605A\n0xD17E\t0x6067\n0xD1A1\t0x6041\n0xD1A2\t0x60A2\n0xD1A3\t0x6088\n0xD1A4\t0x6080\n0xD1A5\t0x6092\n0xD1A6\t0x6081\n0xD1A7\t0x609D\n0xD1A8\t0x6083\n0xD1A9\t0x6095\n0xD1AA\t0x609B\n0xD1AB\t0x6097\n0xD1AC\t0x6087\n0xD1AD\t0x609C\n0xD1AE\t0x608E\n0xD1AF\t0x6219\n0xD1B0\t0x6246\n0xD1B1\t0x62F2\n0xD1B2\t0x6310\n0xD1B3\t0x6356\n0xD1B4\t0x632C\n0xD1B5\t0x6344\n0xD1B6\t0x6345\n0xD1B7\t0x6336\n0xD1B8\t0x6343\n0xD1B9\t0x63E4\n0xD1BA\t0x6339\n0xD1BB\t0x634B\n0xD1BC\t0x634A\n0xD1BD\t0x633C\n0xD1BE\t0x6329\n0xD1BF\t0x6341\n0xD1C0\t0x6334\n0xD1C1\t0x6358\n0xD1C2\t0x6354\n0xD1C3\t0x6359\n0xD1C4\t0x632D\n0xD1C5\t0x6347\n0xD1C6\t0x6333\n0xD1C7\t0x635A\n0xD1C8\t0x6351\n0xD1C9\t0x6338\n0xD1CA\t0x6357\n0xD1CB\t0x6340\n0xD1CC\t0x6348\n0xD1CD\t0x654A\n0xD1CE\t0x6546\n0xD1CF\t0x65C6\n0xD1D0\t0x65C3\n0xD1D1\t0x65C4\n0xD1D2\t0x65C2\n0xD1D3\t0x664A\n0xD1D4\t0x665F\n0xD1D5\t0x6647\n0xD1D6\t0x6651\n0xD1D7\t0x6712\n0xD1D8\t0x6713\n0xD1D9\t0x681F\n0xD1DA\t0x681A\n0xD1DB\t0x6849\n0xD1DC\t0x6832\n0xD1DD\t0x6833\n0xD1DE\t0x683B\n0xD1DF\t0x684B\n0xD1E0\t0x684F\n0xD1E1\t0x6816\n0xD1E2\t0x6831\n0xD1E3\t0x681C\n0xD1E4\t0x6835\n0xD1E5\t0x682B\n0xD1E6\t0x682D\n0xD1E7\t0x682F\n0xD1E8\t0x684E\n0xD1E9\t0x6844\n0xD1EA\t0x6834\n0xD1EB\t0x681D\n0xD1EC\t0x6812\n0xD1ED\t0x6814\n0xD1EE\t0x6826\n0xD1EF\t0x6828\n0xD1F0\t0x682E\n0xD1F1\t0x684D\n0xD1F2\t0x683A\n0xD1F3\t0x6825\n0xD1F4\t0x6820\n0xD1F5\t0x6B2C\n0xD1F6\t0x6B2F\n0xD1F7\t0x6B2D\n0xD1F8\t0x6B31\n0xD1F9\t0x6B34\n0xD1FA\t0x6B6D\n0xD1FB\t0x8082\n0xD1FC\t0x6B88\n0xD1FD\t0x6BE6\n0xD1FE\t0x6BE4\n0xD240\t0x6BE8\n0xD241\t0x6BE3\n0xD242\t0x6BE2\n0xD243\t0x6BE7\n0xD244\t0x6C25\n0xD245\t0x6D7A\n0xD246\t0x6D63\n0xD247\t0x6D64\n0xD248\t0x6D76\n0xD249\t0x6D0D\n0xD24A\t0x6D61\n0xD24B\t0x6D92\n0xD24C\t0x6D58\n0xD24D\t0x6D62\n0xD24E\t0x6D6D\n0xD24F\t0x6D6F\n0xD250\t0x6D91\n0xD251\t0x6D8D\n0xD252\t0x6DEF\n0xD253\t0x6D7F\n0xD254\t0x6D86\n0xD255\t0x6D5E\n0xD256\t0x6D67\n0xD257\t0x6D60\n0xD258\t0x6D97\n0xD259\t0x6D70\n0xD25A\t0x6D7C\n0xD25B\t0x6D5F\n0xD25C\t0x6D82\n0xD25D\t0x6D98\n0xD25E\t0x6D2F\n0xD25F\t0x6D68\n0xD260\t0x6D8B\n0xD261\t0x6D7E\n0xD262\t0x6D80\n0xD263\t0x6D84\n0xD264\t0x6D16\n0xD265\t0x6D83\n0xD266\t0x6D7B\n0xD267\t0x6D7D\n0xD268\t0x6D75\n0xD269\t0x6D90\n0xD26A\t0x70DC\n0xD26B\t0x70D3\n0xD26C\t0x70D1\n0xD26D\t0x70DD\n0xD26E\t0x70CB\n0xD26F\t0x7F39\n0xD270\t0x70E2\n0xD271\t0x70D7\n0xD272\t0x70D2\n0xD273\t0x70DE\n0xD274\t0x70E0\n0xD275\t0x70D4\n0xD276\t0x70CD\n0xD277\t0x70C5\n0xD278\t0x70C6\n0xD279\t0x70C7\n0xD27A\t0x70DA\n0xD27B\t0x70CE\n0xD27C\t0x70E1\n0xD27D\t0x7242\n0xD27E\t0x7278\n0xD2A1\t0x7277\n0xD2A2\t0x7276\n0xD2A3\t0x7300\n0xD2A4\t0x72FA\n0xD2A5\t0x72F4\n0xD2A6\t0x72FE\n0xD2A7\t0x72F6\n0xD2A8\t0x72F3\n0xD2A9\t0x72FB\n0xD2AA\t0x7301\n0xD2AB\t0x73D3\n0xD2AC\t0x73D9\n0xD2AD\t0x73E5\n0xD2AE\t0x73D6\n0xD2AF\t0x73BC\n0xD2B0\t0x73E7\n0xD2B1\t0x73E3\n0xD2B2\t0x73E9\n0xD2B3\t0x73DC\n0xD2B4\t0x73D2\n0xD2B5\t0x73DB\n0xD2B6\t0x73D4\n0xD2B7\t0x73DD\n0xD2B8\t0x73DA\n0xD2B9\t0x73D7\n0xD2BA\t0x73D8\n0xD2BB\t0x73E8\n0xD2BC\t0x74DE\n0xD2BD\t0x74DF\n0xD2BE\t0x74F4\n0xD2BF\t0x74F5\n0xD2C0\t0x7521\n0xD2C1\t0x755B\n0xD2C2\t0x755F\n0xD2C3\t0x75B0\n0xD2C4\t0x75C1\n0xD2C5\t0x75BB\n0xD2C6\t0x75C4\n0xD2C7\t0x75C0\n0xD2C8\t0x75BF\n0xD2C9\t0x75B6\n0xD2CA\t0x75BA\n0xD2CB\t0x768A\n0xD2CC\t0x76C9\n0xD2CD\t0x771D\n0xD2CE\t0x771B\n0xD2CF\t0x7710\n0xD2D0\t0x7713\n0xD2D1\t0x7712\n0xD2D2\t0x7723\n0xD2D3\t0x7711\n0xD2D4\t0x7715\n0xD2D5\t0x7719\n0xD2D6\t0x771A\n0xD2D7\t0x7722\n0xD2D8\t0x7727\n0xD2D9\t0x7823\n0xD2DA\t0x782C\n0xD2DB\t0x7822\n0xD2DC\t0x7835\n0xD2DD\t0x782F\n0xD2DE\t0x7828\n0xD2DF\t0x782E\n0xD2E0\t0x782B\n0xD2E1\t0x7821\n0xD2E2\t0x7829\n0xD2E3\t0x7833\n0xD2E4\t0x782A\n0xD2E5\t0x7831\n0xD2E6\t0x7954\n0xD2E7\t0x795B\n0xD2E8\t0x794F\n0xD2E9\t0x795C\n0xD2EA\t0x7953\n0xD2EB\t0x7952\n0xD2EC\t0x7951\n0xD2ED\t0x79EB\n0xD2EE\t0x79EC\n0xD2EF\t0x79E0\n0xD2F0\t0x79EE\n0xD2F1\t0x79ED\n0xD2F2\t0x79EA\n0xD2F3\t0x79DC\n0xD2F4\t0x79DE\n0xD2F5\t0x79DD\n0xD2F6\t0x7A86\n0xD2F7\t0x7A89\n0xD2F8\t0x7A85\n0xD2F9\t0x7A8B\n0xD2FA\t0x7A8C\n0xD2FB\t0x7A8A\n0xD2FC\t0x7A87\n0xD2FD\t0x7AD8\n0xD2FE\t0x7B10\n0xD340\t0x7B04\n0xD341\t0x7B13\n0xD342\t0x7B05\n0xD343\t0x7B0F\n0xD344\t0x7B08\n0xD345\t0x7B0A\n0xD346\t0x7B0E\n0xD347\t0x7B09\n0xD348\t0x7B12\n0xD349\t0x7C84\n0xD34A\t0x7C91\n0xD34B\t0x7C8A\n0xD34C\t0x7C8C\n0xD34D\t0x7C88\n0xD34E\t0x7C8D\n0xD34F\t0x7C85\n0xD350\t0x7D1E\n0xD351\t0x7D1D\n0xD352\t0x7D11\n0xD353\t0x7D0E\n0xD354\t0x7D18\n0xD355\t0x7D16\n0xD356\t0x7D13\n0xD357\t0x7D1F\n0xD358\t0x7D12\n0xD359\t0x7D0F\n0xD35A\t0x7D0C\n0xD35B\t0x7F5C\n0xD35C\t0x7F61\n0xD35D\t0x7F5E\n0xD35E\t0x7F60\n0xD35F\t0x7F5D\n0xD360\t0x7F5B\n0xD361\t0x7F96\n0xD362\t0x7F92\n0xD363\t0x7FC3\n0xD364\t0x7FC2\n0xD365\t0x7FC0\n0xD366\t0x8016\n0xD367\t0x803E\n0xD368\t0x8039\n0xD369\t0x80FA\n0xD36A\t0x80F2\n0xD36B\t0x80F9\n0xD36C\t0x80F5\n0xD36D\t0x8101\n0xD36E\t0x80FB\n0xD36F\t0x8100\n0xD370\t0x8201\n0xD371\t0x822F\n0xD372\t0x8225\n0xD373\t0x8333\n0xD374\t0x832D\n0xD375\t0x8344\n0xD376\t0x8319\n0xD377\t0x8351\n0xD378\t0x8325\n0xD379\t0x8356\n0xD37A\t0x833F\n0xD37B\t0x8341\n0xD37C\t0x8326\n0xD37D\t0x831C\n0xD37E\t0x8322\n0xD3A1\t0x8342\n0xD3A2\t0x834E\n0xD3A3\t0x831B\n0xD3A4\t0x832A\n0xD3A5\t0x8308\n0xD3A6\t0x833C\n0xD3A7\t0x834D\n0xD3A8\t0x8316\n0xD3A9\t0x8324\n0xD3AA\t0x8320\n0xD3AB\t0x8337\n0xD3AC\t0x832F\n0xD3AD\t0x8329\n0xD3AE\t0x8347\n0xD3AF\t0x8345\n0xD3B0\t0x834C\n0xD3B1\t0x8353\n0xD3B2\t0x831E\n0xD3B3\t0x832C\n0xD3B4\t0x834B\n0xD3B5\t0x8327\n0xD3B6\t0x8348\n0xD3B7\t0x8653\n0xD3B8\t0x8652\n0xD3B9\t0x86A2\n0xD3BA\t0x86A8\n0xD3BB\t0x8696\n0xD3BC\t0x868D\n0xD3BD\t0x8691\n0xD3BE\t0x869E\n0xD3BF\t0x8687\n0xD3C0\t0x8697\n0xD3C1\t0x8686\n0xD3C2\t0x868B\n0xD3C3\t0x869A\n0xD3C4\t0x8685\n0xD3C5\t0x86A5\n0xD3C6\t0x8699\n0xD3C7\t0x86A1\n0xD3C8\t0x86A7\n0xD3C9\t0x8695\n0xD3CA\t0x8698\n0xD3CB\t0x868E\n0xD3CC\t0x869D\n0xD3CD\t0x8690\n0xD3CE\t0x8694\n0xD3CF\t0x8843\n0xD3D0\t0x8844\n0xD3D1\t0x886D\n0xD3D2\t0x8875\n0xD3D3\t0x8876\n0xD3D4\t0x8872\n0xD3D5\t0x8880\n0xD3D6\t0x8871\n0xD3D7\t0x887F\n0xD3D8\t0x886F\n0xD3D9\t0x8883\n0xD3DA\t0x887E\n0xD3DB\t0x8874\n0xD3DC\t0x887C\n0xD3DD\t0x8A12\n0xD3DE\t0x8C47\n0xD3DF\t0x8C57\n0xD3E0\t0x8C7B\n0xD3E1\t0x8CA4\n0xD3E2\t0x8CA3\n0xD3E3\t0x8D76\n0xD3E4\t0x8D78\n0xD3E5\t0x8DB5\n0xD3E6\t0x8DB7\n0xD3E7\t0x8DB6\n0xD3E8\t0x8ED1\n0xD3E9\t0x8ED3\n0xD3EA\t0x8FFE\n0xD3EB\t0x8FF5\n0xD3EC\t0x9002\n0xD3ED\t0x8FFF\n0xD3EE\t0x8FFB\n0xD3EF\t0x9004\n0xD3F0\t0x8FFC\n0xD3F1\t0x8FF6\n0xD3F2\t0x90D6\n0xD3F3\t0x90E0\n0xD3F4\t0x90D9\n0xD3F5\t0x90DA\n0xD3F6\t0x90E3\n0xD3F7\t0x90DF\n0xD3F8\t0x90E5\n0xD3F9\t0x90D8\n0xD3FA\t0x90DB\n0xD3FB\t0x90D7\n0xD3FC\t0x90DC\n0xD3FD\t0x90E4\n0xD3FE\t0x9150\n0xD440\t0x914E\n0xD441\t0x914F\n0xD442\t0x91D5\n0xD443\t0x91E2\n0xD444\t0x91DA\n0xD445\t0x965C\n0xD446\t0x965F\n0xD447\t0x96BC\n0xD448\t0x98E3\n0xD449\t0x9ADF\n0xD44A\t0x9B2F\n0xD44B\t0x4E7F\n0xD44C\t0x5070\n0xD44D\t0x506A\n0xD44E\t0x5061\n0xD44F\t0x505E\n0xD450\t0x5060\n0xD451\t0x5053\n0xD452\t0x504B\n0xD453\t0x505D\n0xD454\t0x5072\n0xD455\t0x5048\n0xD456\t0x504D\n0xD457\t0x5041\n0xD458\t0x505B\n0xD459\t0x504A\n0xD45A\t0x5062\n0xD45B\t0x5015\n0xD45C\t0x5045\n0xD45D\t0x505F\n0xD45E\t0x5069\n0xD45F\t0x506B\n0xD460\t0x5063\n0xD461\t0x5064\n0xD462\t0x5046\n0xD463\t0x5040\n0xD464\t0x506E\n0xD465\t0x5073\n0xD466\t0x5057\n0xD467\t0x5051\n0xD468\t0x51D0\n0xD469\t0x526B\n0xD46A\t0x526D\n0xD46B\t0x526C\n0xD46C\t0x526E\n0xD46D\t0x52D6\n0xD46E\t0x52D3\n0xD46F\t0x532D\n0xD470\t0x539C\n0xD471\t0x5575\n0xD472\t0x5576\n0xD473\t0x553C\n0xD474\t0x554D\n0xD475\t0x5550\n0xD476\t0x5534\n0xD477\t0x552A\n0xD478\t0x5551\n0xD479\t0x5562\n0xD47A\t0x5536\n0xD47B\t0x5535\n0xD47C\t0x5530\n0xD47D\t0x5552\n0xD47E\t0x5545\n0xD4A1\t0x550C\n0xD4A2\t0x5532\n0xD4A3\t0x5565\n0xD4A4\t0x554E\n0xD4A5\t0x5539\n0xD4A6\t0x5548\n0xD4A7\t0x552D\n0xD4A8\t0x553B\n0xD4A9\t0x5540\n0xD4AA\t0x554B\n0xD4AB\t0x570A\n0xD4AC\t0x5707\n0xD4AD\t0x57FB\n0xD4AE\t0x5814\n0xD4AF\t0x57E2\n0xD4B0\t0x57F6\n0xD4B1\t0x57DC\n0xD4B2\t0x57F4\n0xD4B3\t0x5800\n0xD4B4\t0x57ED\n0xD4B5\t0x57FD\n0xD4B6\t0x5808\n0xD4B7\t0x57F8\n0xD4B8\t0x580B\n0xD4B9\t0x57F3\n0xD4BA\t0x57CF\n0xD4BB\t0x5807\n0xD4BC\t0x57EE\n0xD4BD\t0x57E3\n0xD4BE\t0x57F2\n0xD4BF\t0x57E5\n0xD4C0\t0x57EC\n0xD4C1\t0x57E1\n0xD4C2\t0x580E\n0xD4C3\t0x57FC\n0xD4C4\t0x5810\n0xD4C5\t0x57E7\n0xD4C6\t0x5801\n0xD4C7\t0x580C\n0xD4C8\t0x57F1\n0xD4C9\t0x57E9\n0xD4CA\t0x57F0\n0xD4CB\t0x580D\n0xD4CC\t0x5804\n0xD4CD\t0x595C\n0xD4CE\t0x5A60\n0xD4CF\t0x5A58\n0xD4D0\t0x5A55\n0xD4D1\t0x5A67\n0xD4D2\t0x5A5E\n0xD4D3\t0x5A38\n0xD4D4\t0x5A35\n0xD4D5\t0x5A6D\n0xD4D6\t0x5A50\n0xD4D7\t0x5A5F\n0xD4D8\t0x5A65\n0xD4D9\t0x5A6C\n0xD4DA\t0x5A53\n0xD4DB\t0x5A64\n0xD4DC\t0x5A57\n0xD4DD\t0x5A43\n0xD4DE\t0x5A5D\n0xD4DF\t0x5A52\n0xD4E0\t0x5A44\n0xD4E1\t0x5A5B\n0xD4E2\t0x5A48\n0xD4E3\t0x5A8E\n0xD4E4\t0x5A3E\n0xD4E5\t0x5A4D\n0xD4E6\t0x5A39\n0xD4E7\t0x5A4C\n0xD4E8\t0x5A70\n0xD4E9\t0x5A69\n0xD4EA\t0x5A47\n0xD4EB\t0x5A51\n0xD4EC\t0x5A56\n0xD4ED\t0x5A42\n0xD4EE\t0x5A5C\n0xD4EF\t0x5B72\n0xD4F0\t0x5B6E\n0xD4F1\t0x5BC1\n0xD4F2\t0x5BC0\n0xD4F3\t0x5C59\n0xD4F4\t0x5D1E\n0xD4F5\t0x5D0B\n0xD4F6\t0x5D1D\n0xD4F7\t0x5D1A\n0xD4F8\t0x5D20\n0xD4F9\t0x5D0C\n0xD4FA\t0x5D28\n0xD4FB\t0x5D0D\n0xD4FC\t0x5D26\n0xD4FD\t0x5D25\n0xD4FE\t0x5D0F\n0xD540\t0x5D30\n0xD541\t0x5D12\n0xD542\t0x5D23\n0xD543\t0x5D1F\n0xD544\t0x5D2E\n0xD545\t0x5E3E\n0xD546\t0x5E34\n0xD547\t0x5EB1\n0xD548\t0x5EB4\n0xD549\t0x5EB9\n0xD54A\t0x5EB2\n0xD54B\t0x5EB3\n0xD54C\t0x5F36\n0xD54D\t0x5F38\n0xD54E\t0x5F9B\n0xD54F\t0x5F96\n0xD550\t0x5F9F\n0xD551\t0x608A\n0xD552\t0x6090\n0xD553\t0x6086\n0xD554\t0x60BE\n0xD555\t0x60B0\n0xD556\t0x60BA\n0xD557\t0x60D3\n0xD558\t0x60D4\n0xD559\t0x60CF\n0xD55A\t0x60E4\n0xD55B\t0x60D9\n0xD55C\t0x60DD\n0xD55D\t0x60C8\n0xD55E\t0x60B1\n0xD55F\t0x60DB\n0xD560\t0x60B7\n0xD561\t0x60CA\n0xD562\t0x60BF\n0xD563\t0x60C3\n0xD564\t0x60CD\n0xD565\t0x60C0\n0xD566\t0x6332\n0xD567\t0x6365\n0xD568\t0x638A\n0xD569\t0x6382\n0xD56A\t0x637D\n0xD56B\t0x63BD\n0xD56C\t0x639E\n0xD56D\t0x63AD\n0xD56E\t0x639D\n0xD56F\t0x6397\n0xD570\t0x63AB\n0xD571\t0x638E\n0xD572\t0x636F\n0xD573\t0x6387\n0xD574\t0x6390\n0xD575\t0x636E\n0xD576\t0x63AF\n0xD577\t0x6375\n0xD578\t0x639C\n0xD579\t0x636D\n0xD57A\t0x63AE\n0xD57B\t0x637C\n0xD57C\t0x63A4\n0xD57D\t0x633B\n0xD57E\t0x639F\n0xD5A1\t0x6378\n0xD5A2\t0x6385\n0xD5A3\t0x6381\n0xD5A4\t0x6391\n0xD5A5\t0x638D\n0xD5A6\t0x6370\n0xD5A7\t0x6553\n0xD5A8\t0x65CD\n0xD5A9\t0x6665\n0xD5AA\t0x6661\n0xD5AB\t0x665B\n0xD5AC\t0x6659\n0xD5AD\t0x665C\n0xD5AE\t0x6662\n0xD5AF\t0x6718\n0xD5B0\t0x6879\n0xD5B1\t0x6887\n0xD5B2\t0x6890\n0xD5B3\t0x689C\n0xD5B4\t0x686D\n0xD5B5\t0x686E\n0xD5B6\t0x68AE\n0xD5B7\t0x68AB\n0xD5B8\t0x6956\n0xD5B9\t0x686F\n0xD5BA\t0x68A3\n0xD5BB\t0x68AC\n0xD5BC\t0x68A9\n0xD5BD\t0x6875\n0xD5BE\t0x6874\n0xD5BF\t0x68B2\n0xD5C0\t0x688F\n0xD5C1\t0x6877\n0xD5C2\t0x6892\n0xD5C3\t0x687C\n0xD5C4\t0x686B\n0xD5C5\t0x6872\n0xD5C6\t0x68AA\n0xD5C7\t0x6880\n0xD5C8\t0x6871\n0xD5C9\t0x687E\n0xD5CA\t0x689B\n0xD5CB\t0x6896\n0xD5CC\t0x688B\n0xD5CD\t0x68A0\n0xD5CE\t0x6889\n0xD5CF\t0x68A4\n0xD5D0\t0x6878\n0xD5D1\t0x687B\n0xD5D2\t0x6891\n0xD5D3\t0x688C\n0xD5D4\t0x688A\n0xD5D5\t0x687D\n0xD5D6\t0x6B36\n0xD5D7\t0x6B33\n0xD5D8\t0x6B37\n0xD5D9\t0x6B38\n0xD5DA\t0x6B91\n0xD5DB\t0x6B8F\n0xD5DC\t0x6B8D\n0xD5DD\t0x6B8E\n0xD5DE\t0x6B8C\n0xD5DF\t0x6C2A\n0xD5E0\t0x6DC0\n0xD5E1\t0x6DAB\n0xD5E2\t0x6DB4\n0xD5E3\t0x6DB3\n0xD5E4\t0x6E74\n0xD5E5\t0x6DAC\n0xD5E6\t0x6DE9\n0xD5E7\t0x6DE2\n0xD5E8\t0x6DB7\n0xD5E9\t0x6DF6\n0xD5EA\t0x6DD4\n0xD5EB\t0x6E00\n0xD5EC\t0x6DC8\n0xD5ED\t0x6DE0\n0xD5EE\t0x6DDF\n0xD5EF\t0x6DD6\n0xD5F0\t0x6DBE\n0xD5F1\t0x6DE5\n0xD5F2\t0x6DDC\n0xD5F3\t0x6DDD\n0xD5F4\t0x6DDB\n0xD5F5\t0x6DF4\n0xD5F6\t0x6DCA\n0xD5F7\t0x6DBD\n0xD5F8\t0x6DED\n0xD5F9\t0x6DF0\n0xD5FA\t0x6DBA\n0xD5FB\t0x6DD5\n0xD5FC\t0x6DC2\n0xD5FD\t0x6DCF\n0xD5FE\t0x6DC9\n0xD640\t0x6DD0\n0xD641\t0x6DF2\n0xD642\t0x6DD3\n0xD643\t0x6DFD\n0xD644\t0x6DD7\n0xD645\t0x6DCD\n0xD646\t0x6DE3\n0xD647\t0x6DBB\n0xD648\t0x70FA\n0xD649\t0x710D\n0xD64A\t0x70F7\n0xD64B\t0x7117\n0xD64C\t0x70F4\n0xD64D\t0x710C\n0xD64E\t0x70F0\n0xD64F\t0x7104\n0xD650\t0x70F3\n0xD651\t0x7110\n0xD652\t0x70FC\n0xD653\t0x70FF\n0xD654\t0x7106\n0xD655\t0x7113\n0xD656\t0x7100\n0xD657\t0x70F8\n0xD658\t0x70F6\n0xD659\t0x710B\n0xD65A\t0x7102\n0xD65B\t0x710E\n0xD65C\t0x727E\n0xD65D\t0x727B\n0xD65E\t0x727C\n0xD65F\t0x727F\n0xD660\t0x731D\n0xD661\t0x7317\n0xD662\t0x7307\n0xD663\t0x7311\n0xD664\t0x7318\n0xD665\t0x730A\n0xD666\t0x7308\n0xD667\t0x72FF\n0xD668\t0x730F\n0xD669\t0x731E\n0xD66A\t0x7388\n0xD66B\t0x73F6\n0xD66C\t0x73F8\n0xD66D\t0x73F5\n0xD66E\t0x7404\n0xD66F\t0x7401\n0xD670\t0x73FD\n0xD671\t0x7407\n0xD672\t0x7400\n0xD673\t0x73FA\n0xD674\t0x73FC\n0xD675\t0x73FF\n0xD676\t0x740C\n0xD677\t0x740B\n0xD678\t0x73F4\n0xD679\t0x7408\n0xD67A\t0x7564\n0xD67B\t0x7563\n0xD67C\t0x75CE\n0xD67D\t0x75D2\n0xD67E\t0x75CF\n0xD6A1\t0x75CB\n0xD6A2\t0x75CC\n0xD6A3\t0x75D1\n0xD6A4\t0x75D0\n0xD6A5\t0x768F\n0xD6A6\t0x7689\n0xD6A7\t0x76D3\n0xD6A8\t0x7739\n0xD6A9\t0x772F\n0xD6AA\t0x772D\n0xD6AB\t0x7731\n0xD6AC\t0x7732\n0xD6AD\t0x7734\n0xD6AE\t0x7733\n0xD6AF\t0x773D\n0xD6B0\t0x7725\n0xD6B1\t0x773B\n0xD6B2\t0x7735\n0xD6B3\t0x7848\n0xD6B4\t0x7852\n0xD6B5\t0x7849\n0xD6B6\t0x784D\n0xD6B7\t0x784A\n0xD6B8\t0x784C\n0xD6B9\t0x7826\n0xD6BA\t0x7845\n0xD6BB\t0x7850\n0xD6BC\t0x7964\n0xD6BD\t0x7967\n0xD6BE\t0x7969\n0xD6BF\t0x796A\n0xD6C0\t0x7963\n0xD6C1\t0x796B\n0xD6C2\t0x7961\n0xD6C3\t0x79BB\n0xD6C4\t0x79FA\n0xD6C5\t0x79F8\n0xD6C6\t0x79F6\n0xD6C7\t0x79F7\n0xD6C8\t0x7A8F\n0xD6C9\t0x7A94\n0xD6CA\t0x7A90\n0xD6CB\t0x7B35\n0xD6CC\t0x7B47\n0xD6CD\t0x7B34\n0xD6CE\t0x7B25\n0xD6CF\t0x7B30\n0xD6D0\t0x7B22\n0xD6D1\t0x7B24\n0xD6D2\t0x7B33\n0xD6D3\t0x7B18\n0xD6D4\t0x7B2A\n0xD6D5\t0x7B1D\n0xD6D6\t0x7B31\n0xD6D7\t0x7B2B\n0xD6D8\t0x7B2D\n0xD6D9\t0x7B2F\n0xD6DA\t0x7B32\n0xD6DB\t0x7B38\n0xD6DC\t0x7B1A\n0xD6DD\t0x7B23\n0xD6DE\t0x7C94\n0xD6DF\t0x7C98\n0xD6E0\t0x7C96\n0xD6E1\t0x7CA3\n0xD6E2\t0x7D35\n0xD6E3\t0x7D3D\n0xD6E4\t0x7D38\n0xD6E5\t0x7D36\n0xD6E6\t0x7D3A\n0xD6E7\t0x7D45\n0xD6E8\t0x7D2C\n0xD6E9\t0x7D29\n0xD6EA\t0x7D41\n0xD6EB\t0x7D47\n0xD6EC\t0x7D3E\n0xD6ED\t0x7D3F\n0xD6EE\t0x7D4A\n0xD6EF\t0x7D3B\n0xD6F0\t0x7D28\n0xD6F1\t0x7F63\n0xD6F2\t0x7F95\n0xD6F3\t0x7F9C\n0xD6F4\t0x7F9D\n0xD6F5\t0x7F9B\n0xD6F6\t0x7FCA\n0xD6F7\t0x7FCB\n0xD6F8\t0x7FCD\n0xD6F9\t0x7FD0\n0xD6FA\t0x7FD1\n0xD6FB\t0x7FC7\n0xD6FC\t0x7FCF\n0xD6FD\t0x7FC9\n0xD6FE\t0x801F\n0xD740\t0x801E\n0xD741\t0x801B\n0xD742\t0x8047\n0xD743\t0x8043\n0xD744\t0x8048\n0xD745\t0x8118\n0xD746\t0x8125\n0xD747\t0x8119\n0xD748\t0x811B\n0xD749\t0x812D\n0xD74A\t0x811F\n0xD74B\t0x812C\n0xD74C\t0x811E\n0xD74D\t0x8121\n0xD74E\t0x8115\n0xD74F\t0x8127\n0xD750\t0x811D\n0xD751\t0x8122\n0xD752\t0x8211\n0xD753\t0x8238\n0xD754\t0x8233\n0xD755\t0x823A\n0xD756\t0x8234\n0xD757\t0x8232\n0xD758\t0x8274\n0xD759\t0x8390\n0xD75A\t0x83A3\n0xD75B\t0x83A8\n0xD75C\t0x838D\n0xD75D\t0x837A\n0xD75E\t0x8373\n0xD75F\t0x83A4\n0xD760\t0x8374\n0xD761\t0x838F\n0xD762\t0x8381\n0xD763\t0x8395\n0xD764\t0x8399\n0xD765\t0x8375\n0xD766\t0x8394\n0xD767\t0x83A9\n0xD768\t0x837D\n0xD769\t0x8383\n0xD76A\t0x838C\n0xD76B\t0x839D\n0xD76C\t0x839B\n0xD76D\t0x83AA\n0xD76E\t0x838B\n0xD76F\t0x837E\n0xD770\t0x83A5\n0xD771\t0x83AF\n0xD772\t0x8388\n0xD773\t0x8397\n0xD774\t0x83B0\n0xD775\t0x837F\n0xD776\t0x83A6\n0xD777\t0x8387\n0xD778\t0x83AE\n0xD779\t0x8376\n0xD77A\t0x839A\n0xD77B\t0x8659\n0xD77C\t0x8656\n0xD77D\t0x86BF\n0xD77E\t0x86B7\n0xD7A1\t0x86C2\n0xD7A2\t0x86C1\n0xD7A3\t0x86C5\n0xD7A4\t0x86BA\n0xD7A5\t0x86B0\n0xD7A6\t0x86C8\n0xD7A7\t0x86B9\n0xD7A8\t0x86B3\n0xD7A9\t0x86B8\n0xD7AA\t0x86CC\n0xD7AB\t0x86B4\n0xD7AC\t0x86BB\n0xD7AD\t0x86BC\n0xD7AE\t0x86C3\n0xD7AF\t0x86BD\n0xD7B0\t0x86BE\n0xD7B1\t0x8852\n0xD7B2\t0x8889\n0xD7B3\t0x8895\n0xD7B4\t0x88A8\n0xD7B5\t0x88A2\n0xD7B6\t0x88AA\n0xD7B7\t0x889A\n0xD7B8\t0x8891\n0xD7B9\t0x88A1\n0xD7BA\t0x889F\n0xD7BB\t0x8898\n0xD7BC\t0x88A7\n0xD7BD\t0x8899\n0xD7BE\t0x889B\n0xD7BF\t0x8897\n0xD7C0\t0x88A4\n0xD7C1\t0x88AC\n0xD7C2\t0x888C\n0xD7C3\t0x8893\n0xD7C4\t0x888E\n0xD7C5\t0x8982\n0xD7C6\t0x89D6\n0xD7C7\t0x89D9\n0xD7C8\t0x89D5\n0xD7C9\t0x8A30\n0xD7CA\t0x8A27\n0xD7CB\t0x8A2C\n0xD7CC\t0x8A1E\n0xD7CD\t0x8C39\n0xD7CE\t0x8C3B\n0xD7CF\t0x8C5C\n0xD7D0\t0x8C5D\n0xD7D1\t0x8C7D\n0xD7D2\t0x8CA5\n0xD7D3\t0x8D7D\n0xD7D4\t0x8D7B\n0xD7D5\t0x8D79\n0xD7D6\t0x8DBC\n0xD7D7\t0x8DC2\n0xD7D8\t0x8DB9\n0xD7D9\t0x8DBF\n0xD7DA\t0x8DC1\n0xD7DB\t0x8ED8\n0xD7DC\t0x8EDE\n0xD7DD\t0x8EDD\n0xD7DE\t0x8EDC\n0xD7DF\t0x8ED7\n0xD7E0\t0x8EE0\n0xD7E1\t0x8EE1\n0xD7E2\t0x9024\n0xD7E3\t0x900B\n0xD7E4\t0x9011\n0xD7E5\t0x901C\n0xD7E6\t0x900C\n0xD7E7\t0x9021\n0xD7E8\t0x90EF\n0xD7E9\t0x90EA\n0xD7EA\t0x90F0\n0xD7EB\t0x90F4\n0xD7EC\t0x90F2\n0xD7ED\t0x90F3\n0xD7EE\t0x90D4\n0xD7EF\t0x90EB\n0xD7F0\t0x90EC\n0xD7F1\t0x90E9\n0xD7F2\t0x9156\n0xD7F3\t0x9158\n0xD7F4\t0x915A\n0xD7F5\t0x9153\n0xD7F6\t0x9155\n0xD7F7\t0x91EC\n0xD7F8\t0x91F4\n0xD7F9\t0x91F1\n0xD7FA\t0x91F3\n0xD7FB\t0x91F8\n0xD7FC\t0x91E4\n0xD7FD\t0x91F9\n0xD7FE\t0x91EA\n0xD840\t0x91EB\n0xD841\t0x91F7\n0xD842\t0x91E8\n0xD843\t0x91EE\n0xD844\t0x957A\n0xD845\t0x9586\n0xD846\t0x9588\n0xD847\t0x967C\n0xD848\t0x966D\n0xD849\t0x966B\n0xD84A\t0x9671\n0xD84B\t0x966F\n0xD84C\t0x96BF\n0xD84D\t0x976A\n0xD84E\t0x9804\n0xD84F\t0x98E5\n0xD850\t0x9997\n0xD851\t0x509B\n0xD852\t0x5095\n0xD853\t0x5094\n0xD854\t0x509E\n0xD855\t0x508B\n0xD856\t0x50A3\n0xD857\t0x5083\n0xD858\t0x508C\n0xD859\t0x508E\n0xD85A\t0x509D\n0xD85B\t0x5068\n0xD85C\t0x509C\n0xD85D\t0x5092\n0xD85E\t0x5082\n0xD85F\t0x5087\n0xD860\t0x515F\n0xD861\t0x51D4\n0xD862\t0x5312\n0xD863\t0x5311\n0xD864\t0x53A4\n0xD865\t0x53A7\n0xD866\t0x5591\n0xD867\t0x55A8\n0xD868\t0x55A5\n0xD869\t0x55AD\n0xD86A\t0x5577\n0xD86B\t0x5645\n0xD86C\t0x55A2\n0xD86D\t0x5593\n0xD86E\t0x5588\n0xD86F\t0x558F\n0xD870\t0x55B5\n0xD871\t0x5581\n0xD872\t0x55A3\n0xD873\t0x5592\n0xD874\t0x55A4\n0xD875\t0x557D\n0xD876\t0x558C\n0xD877\t0x55A6\n0xD878\t0x557F\n0xD879\t0x5595\n0xD87A\t0x55A1\n0xD87B\t0x558E\n0xD87C\t0x570C\n0xD87D\t0x5829\n0xD87E\t0x5837\n0xD8A1\t0x5819\n0xD8A2\t0x581E\n0xD8A3\t0x5827\n0xD8A4\t0x5823\n0xD8A5\t0x5828\n0xD8A6\t0x57F5\n0xD8A7\t0x5848\n0xD8A8\t0x5825\n0xD8A9\t0x581C\n0xD8AA\t0x581B\n0xD8AB\t0x5833\n0xD8AC\t0x583F\n0xD8AD\t0x5836\n0xD8AE\t0x582E\n0xD8AF\t0x5839\n0xD8B0\t0x5838\n0xD8B1\t0x582D\n0xD8B2\t0x582C\n0xD8B3\t0x583B\n0xD8B4\t0x5961\n0xD8B5\t0x5AAF\n0xD8B6\t0x5A94\n0xD8B7\t0x5A9F\n0xD8B8\t0x5A7A\n0xD8B9\t0x5AA2\n0xD8BA\t0x5A9E\n0xD8BB\t0x5A78\n0xD8BC\t0x5AA6\n0xD8BD\t0x5A7C\n0xD8BE\t0x5AA5\n0xD8BF\t0x5AAC\n0xD8C0\t0x5A95\n0xD8C1\t0x5AAE\n0xD8C2\t0x5A37\n0xD8C3\t0x5A84\n0xD8C4\t0x5A8A\n0xD8C5\t0x5A97\n0xD8C6\t0x5A83\n0xD8C7\t0x5A8B\n0xD8C8\t0x5AA9\n0xD8C9\t0x5A7B\n0xD8CA\t0x5A7D\n0xD8CB\t0x5A8C\n0xD8CC\t0x5A9C\n0xD8CD\t0x5A8F\n0xD8CE\t0x5A93\n0xD8CF\t0x5A9D\n0xD8D0\t0x5BEA\n0xD8D1\t0x5BCD\n0xD8D2\t0x5BCB\n0xD8D3\t0x5BD4\n0xD8D4\t0x5BD1\n0xD8D5\t0x5BCA\n0xD8D6\t0x5BCE\n0xD8D7\t0x5C0C\n0xD8D8\t0x5C30\n0xD8D9\t0x5D37\n0xD8DA\t0x5D43\n0xD8DB\t0x5D6B\n0xD8DC\t0x5D41\n0xD8DD\t0x5D4B\n0xD8DE\t0x5D3F\n0xD8DF\t0x5D35\n0xD8E0\t0x5D51\n0xD8E1\t0x5D4E\n0xD8E2\t0x5D55\n0xD8E3\t0x5D33\n0xD8E4\t0x5D3A\n0xD8E5\t0x5D52\n0xD8E6\t0x5D3D\n0xD8E7\t0x5D31\n0xD8E8\t0x5D59\n0xD8E9\t0x5D42\n0xD8EA\t0x5D39\n0xD8EB\t0x5D49\n0xD8EC\t0x5D38\n0xD8ED\t0x5D3C\n0xD8EE\t0x5D32\n0xD8EF\t0x5D36\n0xD8F0\t0x5D40\n0xD8F1\t0x5D45\n0xD8F2\t0x5E44\n0xD8F3\t0x5E41\n0xD8F4\t0x5F58\n0xD8F5\t0x5FA6\n0xD8F6\t0x5FA5\n0xD8F7\t0x5FAB\n0xD8F8\t0x60C9\n0xD8F9\t0x60B9\n0xD8FA\t0x60CC\n0xD8FB\t0x60E2\n0xD8FC\t0x60CE\n0xD8FD\t0x60C4\n0xD8FE\t0x6114\n0xD940\t0x60F2\n0xD941\t0x610A\n0xD942\t0x6116\n0xD943\t0x6105\n0xD944\t0x60F5\n0xD945\t0x6113\n0xD946\t0x60F8\n0xD947\t0x60FC\n0xD948\t0x60FE\n0xD949\t0x60C1\n0xD94A\t0x6103\n0xD94B\t0x6118\n0xD94C\t0x611D\n0xD94D\t0x6110\n0xD94E\t0x60FF\n0xD94F\t0x6104\n0xD950\t0x610B\n0xD951\t0x624A\n0xD952\t0x6394\n0xD953\t0x63B1\n0xD954\t0x63B0\n0xD955\t0x63CE\n0xD956\t0x63E5\n0xD957\t0x63E8\n0xD958\t0x63EF\n0xD959\t0x63C3\n0xD95A\t0x649D\n0xD95B\t0x63F3\n0xD95C\t0x63CA\n0xD95D\t0x63E0\n0xD95E\t0x63F6\n0xD95F\t0x63D5\n0xD960\t0x63F2\n0xD961\t0x63F5\n0xD962\t0x6461\n0xD963\t0x63DF\n0xD964\t0x63BE\n0xD965\t0x63DD\n0xD966\t0x63DC\n0xD967\t0x63C4\n0xD968\t0x63D8\n0xD969\t0x63D3\n0xD96A\t0x63C2\n0xD96B\t0x63C7\n0xD96C\t0x63CC\n0xD96D\t0x63CB\n0xD96E\t0x63C8\n0xD96F\t0x63F0\n0xD970\t0x63D7\n0xD971\t0x63D9\n0xD972\t0x6532\n0xD973\t0x6567\n0xD974\t0x656A\n0xD975\t0x6564\n0xD976\t0x655C\n0xD977\t0x6568\n0xD978\t0x6565\n0xD979\t0x658C\n0xD97A\t0x659D\n0xD97B\t0x659E\n0xD97C\t0x65AE\n0xD97D\t0x65D0\n0xD97E\t0x65D2\n0xD9A1\t0x667C\n0xD9A2\t0x666C\n0xD9A3\t0x667B\n0xD9A4\t0x6680\n0xD9A5\t0x6671\n0xD9A6\t0x6679\n0xD9A7\t0x666A\n0xD9A8\t0x6672\n0xD9A9\t0x6701\n0xD9AA\t0x690C\n0xD9AB\t0x68D3\n0xD9AC\t0x6904\n0xD9AD\t0x68DC\n0xD9AE\t0x692A\n0xD9AF\t0x68EC\n0xD9B0\t0x68EA\n0xD9B1\t0x68F1\n0xD9B2\t0x690F\n0xD9B3\t0x68D6\n0xD9B4\t0x68F7\n0xD9B5\t0x68EB\n0xD9B6\t0x68E4\n0xD9B7\t0x68F6\n0xD9B8\t0x6913\n0xD9B9\t0x6910\n0xD9BA\t0x68F3\n0xD9BB\t0x68E1\n0xD9BC\t0x6907\n0xD9BD\t0x68CC\n0xD9BE\t0x6908\n0xD9BF\t0x6970\n0xD9C0\t0x68B4\n0xD9C1\t0x6911\n0xD9C2\t0x68EF\n0xD9C3\t0x68C6\n0xD9C4\t0x6914\n0xD9C5\t0x68F8\n0xD9C6\t0x68D0\n0xD9C7\t0x68FD\n0xD9C8\t0x68FC\n0xD9C9\t0x68E8\n0xD9CA\t0x690B\n0xD9CB\t0x690A\n0xD9CC\t0x6917\n0xD9CD\t0x68CE\n0xD9CE\t0x68C8\n0xD9CF\t0x68DD\n0xD9D0\t0x68DE\n0xD9D1\t0x68E6\n0xD9D2\t0x68F4\n0xD9D3\t0x68D1\n0xD9D4\t0x6906\n0xD9D5\t0x68D4\n0xD9D6\t0x68E9\n0xD9D7\t0x6915\n0xD9D8\t0x6925\n0xD9D9\t0x68C7\n0xD9DA\t0x6B39\n0xD9DB\t0x6B3B\n0xD9DC\t0x6B3F\n0xD9DD\t0x6B3C\n0xD9DE\t0x6B94\n0xD9DF\t0x6B97\n0xD9E0\t0x6B99\n0xD9E1\t0x6B95\n0xD9E2\t0x6BBD\n0xD9E3\t0x6BF0\n0xD9E4\t0x6BF2\n0xD9E5\t0x6BF3\n0xD9E6\t0x6C30\n0xD9E7\t0x6DFC\n0xD9E8\t0x6E46\n0xD9E9\t0x6E47\n0xD9EA\t0x6E1F\n0xD9EB\t0x6E49\n0xD9EC\t0x6E88\n0xD9ED\t0x6E3C\n0xD9EE\t0x6E3D\n0xD9EF\t0x6E45\n0xD9F0\t0x6E62\n0xD9F1\t0x6E2B\n0xD9F2\t0x6E3F\n0xD9F3\t0x6E41\n0xD9F4\t0x6E5D\n0xD9F5\t0x6E73\n0xD9F6\t0x6E1C\n0xD9F7\t0x6E33\n0xD9F8\t0x6E4B\n0xD9F9\t0x6E40\n0xD9FA\t0x6E51\n0xD9FB\t0x6E3B\n0xD9FC\t0x6E03\n0xD9FD\t0x6E2E\n0xD9FE\t0x6E5E\n0xDA40\t0x6E68\n0xDA41\t0x6E5C\n0xDA42\t0x6E61\n0xDA43\t0x6E31\n0xDA44\t0x6E28\n0xDA45\t0x6E60\n0xDA46\t0x6E71\n0xDA47\t0x6E6B\n0xDA48\t0x6E39\n0xDA49\t0x6E22\n0xDA4A\t0x6E30\n0xDA4B\t0x6E53\n0xDA4C\t0x6E65\n0xDA4D\t0x6E27\n0xDA4E\t0x6E78\n0xDA4F\t0x6E64\n0xDA50\t0x6E77\n0xDA51\t0x6E55\n0xDA52\t0x6E79\n0xDA53\t0x6E52\n0xDA54\t0x6E66\n0xDA55\t0x6E35\n0xDA56\t0x6E36\n0xDA57\t0x6E5A\n0xDA58\t0x7120\n0xDA59\t0x711E\n0xDA5A\t0x712F\n0xDA5B\t0x70FB\n0xDA5C\t0x712E\n0xDA5D\t0x7131\n0xDA5E\t0x7123\n0xDA5F\t0x7125\n0xDA60\t0x7122\n0xDA61\t0x7132\n0xDA62\t0x711F\n0xDA63\t0x7128\n0xDA64\t0x713A\n0xDA65\t0x711B\n0xDA66\t0x724B\n0xDA67\t0x725A\n0xDA68\t0x7288\n0xDA69\t0x7289\n0xDA6A\t0x7286\n0xDA6B\t0x7285\n0xDA6C\t0x728B\n0xDA6D\t0x7312\n0xDA6E\t0x730B\n0xDA6F\t0x7330\n0xDA70\t0x7322\n0xDA71\t0x7331\n0xDA72\t0x7333\n0xDA73\t0x7327\n0xDA74\t0x7332\n0xDA75\t0x732D\n0xDA76\t0x7326\n0xDA77\t0x7323\n0xDA78\t0x7335\n0xDA79\t0x730C\n0xDA7A\t0x742E\n0xDA7B\t0x742C\n0xDA7C\t0x7430\n0xDA7D\t0x742B\n0xDA7E\t0x7416\n0xDAA1\t0x741A\n0xDAA2\t0x7421\n0xDAA3\t0x742D\n0xDAA4\t0x7431\n0xDAA5\t0x7424\n0xDAA6\t0x7423\n0xDAA7\t0x741D\n0xDAA8\t0x7429\n0xDAA9\t0x7420\n0xDAAA\t0x7432\n0xDAAB\t0x74FB\n0xDAAC\t0x752F\n0xDAAD\t0x756F\n0xDAAE\t0x756C\n0xDAAF\t0x75E7\n0xDAB0\t0x75DA\n0xDAB1\t0x75E1\n0xDAB2\t0x75E6\n0xDAB3\t0x75DD\n0xDAB4\t0x75DF\n0xDAB5\t0x75E4\n0xDAB6\t0x75D7\n0xDAB7\t0x7695\n0xDAB8\t0x7692\n0xDAB9\t0x76DA\n0xDABA\t0x7746\n0xDABB\t0x7747\n0xDABC\t0x7744\n0xDABD\t0x774D\n0xDABE\t0x7745\n0xDABF\t0x774A\n0xDAC0\t0x774E\n0xDAC1\t0x774B\n0xDAC2\t0x774C\n0xDAC3\t0x77DE\n0xDAC4\t0x77EC\n0xDAC5\t0x7860\n0xDAC6\t0x7864\n0xDAC7\t0x7865\n0xDAC8\t0x785C\n0xDAC9\t0x786D\n0xDACA\t0x7871\n0xDACB\t0x786A\n0xDACC\t0x786E\n0xDACD\t0x7870\n0xDACE\t0x7869\n0xDACF\t0x7868\n0xDAD0\t0x785E\n0xDAD1\t0x7862\n0xDAD2\t0x7974\n0xDAD3\t0x7973\n0xDAD4\t0x7972\n0xDAD5\t0x7970\n0xDAD6\t0x7A02\n0xDAD7\t0x7A0A\n0xDAD8\t0x7A03\n0xDAD9\t0x7A0C\n0xDADA\t0x7A04\n0xDADB\t0x7A99\n0xDADC\t0x7AE6\n0xDADD\t0x7AE4\n0xDADE\t0x7B4A\n0xDADF\t0x7B3B\n0xDAE0\t0x7B44\n0xDAE1\t0x7B48\n0xDAE2\t0x7B4C\n0xDAE3\t0x7B4E\n0xDAE4\t0x7B40\n0xDAE5\t0x7B58\n0xDAE6\t0x7B45\n0xDAE7\t0x7CA2\n0xDAE8\t0x7C9E\n0xDAE9\t0x7CA8\n0xDAEA\t0x7CA1\n0xDAEB\t0x7D58\n0xDAEC\t0x7D6F\n0xDAED\t0x7D63\n0xDAEE\t0x7D53\n0xDAEF\t0x7D56\n0xDAF0\t0x7D67\n0xDAF1\t0x7D6A\n0xDAF2\t0x7D4F\n0xDAF3\t0x7D6D\n0xDAF4\t0x7D5C\n0xDAF5\t0x7D6B\n0xDAF6\t0x7D52\n0xDAF7\t0x7D54\n0xDAF8\t0x7D69\n0xDAF9\t0x7D51\n0xDAFA\t0x7D5F\n0xDAFB\t0x7D4E\n0xDAFC\t0x7F3E\n0xDAFD\t0x7F3F\n0xDAFE\t0x7F65\n0xDB40\t0x7F66\n0xDB41\t0x7FA2\n0xDB42\t0x7FA0\n0xDB43\t0x7FA1\n0xDB44\t0x7FD7\n0xDB45\t0x8051\n0xDB46\t0x804F\n0xDB47\t0x8050\n0xDB48\t0x80FE\n0xDB49\t0x80D4\n0xDB4A\t0x8143\n0xDB4B\t0x814A\n0xDB4C\t0x8152\n0xDB4D\t0x814F\n0xDB4E\t0x8147\n0xDB4F\t0x813D\n0xDB50\t0x814D\n0xDB51\t0x813A\n0xDB52\t0x81E6\n0xDB53\t0x81EE\n0xDB54\t0x81F7\n0xDB55\t0x81F8\n0xDB56\t0x81F9\n0xDB57\t0x8204\n0xDB58\t0x823C\n0xDB59\t0x823D\n0xDB5A\t0x823F\n0xDB5B\t0x8275\n0xDB5C\t0x833B\n0xDB5D\t0x83CF\n0xDB5E\t0x83F9\n0xDB5F\t0x8423\n0xDB60\t0x83C0\n0xDB61\t0x83E8\n0xDB62\t0x8412\n0xDB63\t0x83E7\n0xDB64\t0x83E4\n0xDB65\t0x83FC\n0xDB66\t0x83F6\n0xDB67\t0x8410\n0xDB68\t0x83C6\n0xDB69\t0x83C8\n0xDB6A\t0x83EB\n0xDB6B\t0x83E3\n0xDB6C\t0x83BF\n0xDB6D\t0x8401\n0xDB6E\t0x83DD\n0xDB6F\t0x83E5\n0xDB70\t0x83D8\n0xDB71\t0x83FF\n0xDB72\t0x83E1\n0xDB73\t0x83CB\n0xDB74\t0x83CE\n0xDB75\t0x83D6\n0xDB76\t0x83F5\n0xDB77\t0x83C9\n0xDB78\t0x8409\n0xDB79\t0x840F\n0xDB7A\t0x83DE\n0xDB7B\t0x8411\n0xDB7C\t0x8406\n0xDB7D\t0x83C2\n0xDB7E\t0x83F3\n0xDBA1\t0x83D5\n0xDBA2\t0x83FA\n0xDBA3\t0x83C7\n0xDBA4\t0x83D1\n0xDBA5\t0x83EA\n0xDBA6\t0x8413\n0xDBA7\t0x83C3\n0xDBA8\t0x83EC\n0xDBA9\t0x83EE\n0xDBAA\t0x83C4\n0xDBAB\t0x83FB\n0xDBAC\t0x83D7\n0xDBAD\t0x83E2\n0xDBAE\t0x841B\n0xDBAF\t0x83DB\n0xDBB0\t0x83FE\n0xDBB1\t0x86D8\n0xDBB2\t0x86E2\n0xDBB3\t0x86E6\n0xDBB4\t0x86D3\n0xDBB5\t0x86E3\n0xDBB6\t0x86DA\n0xDBB7\t0x86EA\n0xDBB8\t0x86DD\n0xDBB9\t0x86EB\n0xDBBA\t0x86DC\n0xDBBB\t0x86EC\n0xDBBC\t0x86E9\n0xDBBD\t0x86D7\n0xDBBE\t0x86E8\n0xDBBF\t0x86D1\n0xDBC0\t0x8848\n0xDBC1\t0x8856\n0xDBC2\t0x8855\n0xDBC3\t0x88BA\n0xDBC4\t0x88D7\n0xDBC5\t0x88B9\n0xDBC6\t0x88B8\n0xDBC7\t0x88C0\n0xDBC8\t0x88BE\n0xDBC9\t0x88B6\n0xDBCA\t0x88BC\n0xDBCB\t0x88B7\n0xDBCC\t0x88BD\n0xDBCD\t0x88B2\n0xDBCE\t0x8901\n0xDBCF\t0x88C9\n0xDBD0\t0x8995\n0xDBD1\t0x8998\n0xDBD2\t0x8997\n0xDBD3\t0x89DD\n0xDBD4\t0x89DA\n0xDBD5\t0x89DB\n0xDBD6\t0x8A4E\n0xDBD7\t0x8A4D\n0xDBD8\t0x8A39\n0xDBD9\t0x8A59\n0xDBDA\t0x8A40\n0xDBDB\t0x8A57\n0xDBDC\t0x8A58\n0xDBDD\t0x8A44\n0xDBDE\t0x8A45\n0xDBDF\t0x8A52\n0xDBE0\t0x8A48\n0xDBE1\t0x8A51\n0xDBE2\t0x8A4A\n0xDBE3\t0x8A4C\n0xDBE4\t0x8A4F\n0xDBE5\t0x8C5F\n0xDBE6\t0x8C81\n0xDBE7\t0x8C80\n0xDBE8\t0x8CBA\n0xDBE9\t0x8CBE\n0xDBEA\t0x8CB0\n0xDBEB\t0x8CB9\n0xDBEC\t0x8CB5\n0xDBED\t0x8D84\n0xDBEE\t0x8D80\n0xDBEF\t0x8D89\n0xDBF0\t0x8DD8\n0xDBF1\t0x8DD3\n0xDBF2\t0x8DCD\n0xDBF3\t0x8DC7\n0xDBF4\t0x8DD6\n0xDBF5\t0x8DDC\n0xDBF6\t0x8DCF\n0xDBF7\t0x8DD5\n0xDBF8\t0x8DD9\n0xDBF9\t0x8DC8\n0xDBFA\t0x8DD7\n0xDBFB\t0x8DC5\n0xDBFC\t0x8EEF\n0xDBFD\t0x8EF7\n0xDBFE\t0x8EFA\n0xDC40\t0x8EF9\n0xDC41\t0x8EE6\n0xDC42\t0x8EEE\n0xDC43\t0x8EE5\n0xDC44\t0x8EF5\n0xDC45\t0x8EE7\n0xDC46\t0x8EE8\n0xDC47\t0x8EF6\n0xDC48\t0x8EEB\n0xDC49\t0x8EF1\n0xDC4A\t0x8EEC\n0xDC4B\t0x8EF4\n0xDC4C\t0x8EE9\n0xDC4D\t0x902D\n0xDC4E\t0x9034\n0xDC4F\t0x902F\n0xDC50\t0x9106\n0xDC51\t0x912C\n0xDC52\t0x9104\n0xDC53\t0x90FF\n0xDC54\t0x90FC\n0xDC55\t0x9108\n0xDC56\t0x90F9\n0xDC57\t0x90FB\n0xDC58\t0x9101\n0xDC59\t0x9100\n0xDC5A\t0x9107\n0xDC5B\t0x9105\n0xDC5C\t0x9103\n0xDC5D\t0x9161\n0xDC5E\t0x9164\n0xDC5F\t0x915F\n0xDC60\t0x9162\n0xDC61\t0x9160\n0xDC62\t0x9201\n0xDC63\t0x920A\n0xDC64\t0x9225\n0xDC65\t0x9203\n0xDC66\t0x921A\n0xDC67\t0x9226\n0xDC68\t0x920F\n0xDC69\t0x920C\n0xDC6A\t0x9200\n0xDC6B\t0x9212\n0xDC6C\t0x91FF\n0xDC6D\t0x91FD\n0xDC6E\t0x9206\n0xDC6F\t0x9204\n0xDC70\t0x9227\n0xDC71\t0x9202\n0xDC72\t0x921C\n0xDC73\t0x9224\n0xDC74\t0x9219\n0xDC75\t0x9217\n0xDC76\t0x9205\n0xDC77\t0x9216\n0xDC78\t0x957B\n0xDC79\t0x958D\n0xDC7A\t0x958C\n0xDC7B\t0x9590\n0xDC7C\t0x9687\n0xDC7D\t0x967E\n0xDC7E\t0x9688\n0xDCA1\t0x9689\n0xDCA2\t0x9683\n0xDCA3\t0x9680\n0xDCA4\t0x96C2\n0xDCA5\t0x96C8\n0xDCA6\t0x96C3\n0xDCA7\t0x96F1\n0xDCA8\t0x96F0\n0xDCA9\t0x976C\n0xDCAA\t0x9770\n0xDCAB\t0x976E\n0xDCAC\t0x9807\n0xDCAD\t0x98A9\n0xDCAE\t0x98EB\n0xDCAF\t0x9CE6\n0xDCB0\t0x9EF9\n0xDCB1\t0x4E83\n0xDCB2\t0x4E84\n0xDCB3\t0x4EB6\n0xDCB4\t0x50BD\n0xDCB5\t0x50BF\n0xDCB6\t0x50C6\n0xDCB7\t0x50AE\n0xDCB8\t0x50C4\n0xDCB9\t0x50CA\n0xDCBA\t0x50B4\n0xDCBB\t0x50C8\n0xDCBC\t0x50C2\n0xDCBD\t0x50B0\n0xDCBE\t0x50C1\n0xDCBF\t0x50BA\n0xDCC0\t0x50B1\n0xDCC1\t0x50CB\n0xDCC2\t0x50C9\n0xDCC3\t0x50B6\n0xDCC4\t0x50B8\n0xDCC5\t0x51D7\n0xDCC6\t0x527A\n0xDCC7\t0x5278\n0xDCC8\t0x527B\n0xDCC9\t0x527C\n0xDCCA\t0x55C3\n0xDCCB\t0x55DB\n0xDCCC\t0x55CC\n0xDCCD\t0x55D0\n0xDCCE\t0x55CB\n0xDCCF\t0x55CA\n0xDCD0\t0x55DD\n0xDCD1\t0x55C0\n0xDCD2\t0x55D4\n0xDCD3\t0x55C4\n0xDCD4\t0x55E9\n0xDCD5\t0x55BF\n0xDCD6\t0x55D2\n0xDCD7\t0x558D\n0xDCD8\t0x55CF\n0xDCD9\t0x55D5\n0xDCDA\t0x55E2\n0xDCDB\t0x55D6\n0xDCDC\t0x55C8\n0xDCDD\t0x55F2\n0xDCDE\t0x55CD\n0xDCDF\t0x55D9\n0xDCE0\t0x55C2\n0xDCE1\t0x5714\n0xDCE2\t0x5853\n0xDCE3\t0x5868\n0xDCE4\t0x5864\n0xDCE5\t0x584F\n0xDCE6\t0x584D\n0xDCE7\t0x5849\n0xDCE8\t0x586F\n0xDCE9\t0x5855\n0xDCEA\t0x584E\n0xDCEB\t0x585D\n0xDCEC\t0x5859\n0xDCED\t0x5865\n0xDCEE\t0x585B\n0xDCEF\t0x583D\n0xDCF0\t0x5863\n0xDCF1\t0x5871\n0xDCF2\t0x58FC\n0xDCF3\t0x5AC7\n0xDCF4\t0x5AC4\n0xDCF5\t0x5ACB\n0xDCF6\t0x5ABA\n0xDCF7\t0x5AB8\n0xDCF8\t0x5AB1\n0xDCF9\t0x5AB5\n0xDCFA\t0x5AB0\n0xDCFB\t0x5ABF\n0xDCFC\t0x5AC8\n0xDCFD\t0x5ABB\n0xDCFE\t0x5AC6\n0xDD40\t0x5AB7\n0xDD41\t0x5AC0\n0xDD42\t0x5ACA\n0xDD43\t0x5AB4\n0xDD44\t0x5AB6\n0xDD45\t0x5ACD\n0xDD46\t0x5AB9\n0xDD47\t0x5A90\n0xDD48\t0x5BD6\n0xDD49\t0x5BD8\n0xDD4A\t0x5BD9\n0xDD4B\t0x5C1F\n0xDD4C\t0x5C33\n0xDD4D\t0x5D71\n0xDD4E\t0x5D63\n0xDD4F\t0x5D4A\n0xDD50\t0x5D65\n0xDD51\t0x5D72\n0xDD52\t0x5D6C\n0xDD53\t0x5D5E\n0xDD54\t0x5D68\n0xDD55\t0x5D67\n0xDD56\t0x5D62\n0xDD57\t0x5DF0\n0xDD58\t0x5E4F\n0xDD59\t0x5E4E\n0xDD5A\t0x5E4A\n0xDD5B\t0x5E4D\n0xDD5C\t0x5E4B\n0xDD5D\t0x5EC5\n0xDD5E\t0x5ECC\n0xDD5F\t0x5EC6\n0xDD60\t0x5ECB\n0xDD61\t0x5EC7\n0xDD62\t0x5F40\n0xDD63\t0x5FAF\n0xDD64\t0x5FAD\n0xDD65\t0x60F7\n0xDD66\t0x6149\n0xDD67\t0x614A\n0xDD68\t0x612B\n0xDD69\t0x6145\n0xDD6A\t0x6136\n0xDD6B\t0x6132\n0xDD6C\t0x612E\n0xDD6D\t0x6146\n0xDD6E\t0x612F\n0xDD6F\t0x614F\n0xDD70\t0x6129\n0xDD71\t0x6140\n0xDD72\t0x6220\n0xDD73\t0x9168\n0xDD74\t0x6223\n0xDD75\t0x6225\n0xDD76\t0x6224\n0xDD77\t0x63C5\n0xDD78\t0x63F1\n0xDD79\t0x63EB\n0xDD7A\t0x6410\n0xDD7B\t0x6412\n0xDD7C\t0x6409\n0xDD7D\t0x6420\n0xDD7E\t0x6424\n0xDDA1\t0x6433\n0xDDA2\t0x6443\n0xDDA3\t0x641F\n0xDDA4\t0x6415\n0xDDA5\t0x6418\n0xDDA6\t0x6439\n0xDDA7\t0x6437\n0xDDA8\t0x6422\n0xDDA9\t0x6423\n0xDDAA\t0x640C\n0xDDAB\t0x6426\n0xDDAC\t0x6430\n0xDDAD\t0x6428\n0xDDAE\t0x6441\n0xDDAF\t0x6435\n0xDDB0\t0x642F\n0xDDB1\t0x640A\n0xDDB2\t0x641A\n0xDDB3\t0x6440\n0xDDB4\t0x6425\n0xDDB5\t0x6427\n0xDDB6\t0x640B\n0xDDB7\t0x63E7\n0xDDB8\t0x641B\n0xDDB9\t0x642E\n0xDDBA\t0x6421\n0xDDBB\t0x640E\n0xDDBC\t0x656F\n0xDDBD\t0x6592\n0xDDBE\t0x65D3\n0xDDBF\t0x6686\n0xDDC0\t0x668C\n0xDDC1\t0x6695\n0xDDC2\t0x6690\n0xDDC3\t0x668B\n0xDDC4\t0x668A\n0xDDC5\t0x6699\n0xDDC6\t0x6694\n0xDDC7\t0x6678\n0xDDC8\t0x6720\n0xDDC9\t0x6966\n0xDDCA\t0x695F\n0xDDCB\t0x6938\n0xDDCC\t0x694E\n0xDDCD\t0x6962\n0xDDCE\t0x6971\n0xDDCF\t0x693F\n0xDDD0\t0x6945\n0xDDD1\t0x696A\n0xDDD2\t0x6939\n0xDDD3\t0x6942\n0xDDD4\t0x6957\n0xDDD5\t0x6959\n0xDDD6\t0x697A\n0xDDD7\t0x6948\n0xDDD8\t0x6949\n0xDDD9\t0x6935\n0xDDDA\t0x696C\n0xDDDB\t0x6933\n0xDDDC\t0x693D\n0xDDDD\t0x6965\n0xDDDE\t0x68F0\n0xDDDF\t0x6978\n0xDDE0\t0x6934\n0xDDE1\t0x6969\n0xDDE2\t0x6940\n0xDDE3\t0x696F\n0xDDE4\t0x6944\n0xDDE5\t0x6976\n0xDDE6\t0x6958\n0xDDE7\t0x6941\n0xDDE8\t0x6974\n0xDDE9\t0x694C\n0xDDEA\t0x693B\n0xDDEB\t0x694B\n0xDDEC\t0x6937\n0xDDED\t0x695C\n0xDDEE\t0x694F\n0xDDEF\t0x6951\n0xDDF0\t0x6932\n0xDDF1\t0x6952\n0xDDF2\t0x692F\n0xDDF3\t0x697B\n0xDDF4\t0x693C\n0xDDF5\t0x6B46\n0xDDF6\t0x6B45\n0xDDF7\t0x6B43\n0xDDF8\t0x6B42\n0xDDF9\t0x6B48\n0xDDFA\t0x6B41\n0xDDFB\t0x6B9B\n0xDDFC\t0xFA0D\n0xDDFD\t0x6BFB\n0xDDFE\t0x6BFC\n0xDE40\t0x6BF9\n0xDE41\t0x6BF7\n0xDE42\t0x6BF8\n0xDE43\t0x6E9B\n0xDE44\t0x6ED6\n0xDE45\t0x6EC8\n0xDE46\t0x6E8F\n0xDE47\t0x6EC0\n0xDE48\t0x6E9F\n0xDE49\t0x6E93\n0xDE4A\t0x6E94\n0xDE4B\t0x6EA0\n0xDE4C\t0x6EB1\n0xDE4D\t0x6EB9\n0xDE4E\t0x6EC6\n0xDE4F\t0x6ED2\n0xDE50\t0x6EBD\n0xDE51\t0x6EC1\n0xDE52\t0x6E9E\n0xDE53\t0x6EC9\n0xDE54\t0x6EB7\n0xDE55\t0x6EB0\n0xDE56\t0x6ECD\n0xDE57\t0x6EA6\n0xDE58\t0x6ECF\n0xDE59\t0x6EB2\n0xDE5A\t0x6EBE\n0xDE5B\t0x6EC3\n0xDE5C\t0x6EDC\n0xDE5D\t0x6ED8\n0xDE5E\t0x6E99\n0xDE5F\t0x6E92\n0xDE60\t0x6E8E\n0xDE61\t0x6E8D\n0xDE62\t0x6EA4\n0xDE63\t0x6EA1\n0xDE64\t0x6EBF\n0xDE65\t0x6EB3\n0xDE66\t0x6ED0\n0xDE67\t0x6ECA\n0xDE68\t0x6E97\n0xDE69\t0x6EAE\n0xDE6A\t0x6EA3\n0xDE6B\t0x7147\n0xDE6C\t0x7154\n0xDE6D\t0x7152\n0xDE6E\t0x7163\n0xDE6F\t0x7160\n0xDE70\t0x7141\n0xDE71\t0x715D\n0xDE72\t0x7162\n0xDE73\t0x7172\n0xDE74\t0x7178\n0xDE75\t0x716A\n0xDE76\t0x7161\n0xDE77\t0x7142\n0xDE78\t0x7158\n0xDE79\t0x7143\n0xDE7A\t0x714B\n0xDE7B\t0x7170\n0xDE7C\t0x715F\n0xDE7D\t0x7150\n0xDE7E\t0x7153\n0xDEA1\t0x7144\n0xDEA2\t0x714D\n0xDEA3\t0x715A\n0xDEA4\t0x724F\n0xDEA5\t0x728D\n0xDEA6\t0x728C\n0xDEA7\t0x7291\n0xDEA8\t0x7290\n0xDEA9\t0x728E\n0xDEAA\t0x733C\n0xDEAB\t0x7342\n0xDEAC\t0x733B\n0xDEAD\t0x733A\n0xDEAE\t0x7340\n0xDEAF\t0x734A\n0xDEB0\t0x7349\n0xDEB1\t0x7444\n0xDEB2\t0x744A\n0xDEB3\t0x744B\n0xDEB4\t0x7452\n0xDEB5\t0x7451\n0xDEB6\t0x7457\n0xDEB7\t0x7440\n0xDEB8\t0x744F\n0xDEB9\t0x7450\n0xDEBA\t0x744E\n0xDEBB\t0x7442\n0xDEBC\t0x7446\n0xDEBD\t0x744D\n0xDEBE\t0x7454\n0xDEBF\t0x74E1\n0xDEC0\t0x74FF\n0xDEC1\t0x74FE\n0xDEC2\t0x74FD\n0xDEC3\t0x751D\n0xDEC4\t0x7579\n0xDEC5\t0x7577\n0xDEC6\t0x6983\n0xDEC7\t0x75EF\n0xDEC8\t0x760F\n0xDEC9\t0x7603\n0xDECA\t0x75F7\n0xDECB\t0x75FE\n0xDECC\t0x75FC\n0xDECD\t0x75F9\n0xDECE\t0x75F8\n0xDECF\t0x7610\n0xDED0\t0x75FB\n0xDED1\t0x75F6\n0xDED2\t0x75ED\n0xDED3\t0x75F5\n0xDED4\t0x75FD\n0xDED5\t0x7699\n0xDED6\t0x76B5\n0xDED7\t0x76DD\n0xDED8\t0x7755\n0xDED9\t0x775F\n0xDEDA\t0x7760\n0xDEDB\t0x7752\n0xDEDC\t0x7756\n0xDEDD\t0x775A\n0xDEDE\t0x7769\n0xDEDF\t0x7767\n0xDEE0\t0x7754\n0xDEE1\t0x7759\n0xDEE2\t0x776D\n0xDEE3\t0x77E0\n0xDEE4\t0x7887\n0xDEE5\t0x789A\n0xDEE6\t0x7894\n0xDEE7\t0x788F\n0xDEE8\t0x7884\n0xDEE9\t0x7895\n0xDEEA\t0x7885\n0xDEEB\t0x7886\n0xDEEC\t0x78A1\n0xDEED\t0x7883\n0xDEEE\t0x7879\n0xDEEF\t0x7899\n0xDEF0\t0x7880\n0xDEF1\t0x7896\n0xDEF2\t0x787B\n0xDEF3\t0x797C\n0xDEF4\t0x7982\n0xDEF5\t0x797D\n0xDEF6\t0x7979\n0xDEF7\t0x7A11\n0xDEF8\t0x7A18\n0xDEF9\t0x7A19\n0xDEFA\t0x7A12\n0xDEFB\t0x7A17\n0xDEFC\t0x7A15\n0xDEFD\t0x7A22\n0xDEFE\t0x7A13\n0xDF40\t0x7A1B\n0xDF41\t0x7A10\n0xDF42\t0x7AA3\n0xDF43\t0x7AA2\n0xDF44\t0x7A9E\n0xDF45\t0x7AEB\n0xDF46\t0x7B66\n0xDF47\t0x7B64\n0xDF48\t0x7B6D\n0xDF49\t0x7B74\n0xDF4A\t0x7B69\n0xDF4B\t0x7B72\n0xDF4C\t0x7B65\n0xDF4D\t0x7B73\n0xDF4E\t0x7B71\n0xDF4F\t0x7B70\n0xDF50\t0x7B61\n0xDF51\t0x7B78\n0xDF52\t0x7B76\n0xDF53\t0x7B63\n0xDF54\t0x7CB2\n0xDF55\t0x7CB4\n0xDF56\t0x7CAF\n0xDF57\t0x7D88\n0xDF58\t0x7D86\n0xDF59\t0x7D80\n0xDF5A\t0x7D8D\n0xDF5B\t0x7D7F\n0xDF5C\t0x7D85\n0xDF5D\t0x7D7A\n0xDF5E\t0x7D8E\n0xDF5F\t0x7D7B\n0xDF60\t0x7D83\n0xDF61\t0x7D7C\n0xDF62\t0x7D8C\n0xDF63\t0x7D94\n0xDF64\t0x7D84\n0xDF65\t0x7D7D\n0xDF66\t0x7D92\n0xDF67\t0x7F6D\n0xDF68\t0x7F6B\n0xDF69\t0x7F67\n0xDF6A\t0x7F68\n0xDF6B\t0x7F6C\n0xDF6C\t0x7FA6\n0xDF6D\t0x7FA5\n0xDF6E\t0x7FA7\n0xDF6F\t0x7FDB\n0xDF70\t0x7FDC\n0xDF71\t0x8021\n0xDF72\t0x8164\n0xDF73\t0x8160\n0xDF74\t0x8177\n0xDF75\t0x815C\n0xDF76\t0x8169\n0xDF77\t0x815B\n0xDF78\t0x8162\n0xDF79\t0x8172\n0xDF7A\t0x6721\n0xDF7B\t0x815E\n0xDF7C\t0x8176\n0xDF7D\t0x8167\n0xDF7E\t0x816F\n0xDFA1\t0x8144\n0xDFA2\t0x8161\n0xDFA3\t0x821D\n0xDFA4\t0x8249\n0xDFA5\t0x8244\n0xDFA6\t0x8240\n0xDFA7\t0x8242\n0xDFA8\t0x8245\n0xDFA9\t0x84F1\n0xDFAA\t0x843F\n0xDFAB\t0x8456\n0xDFAC\t0x8476\n0xDFAD\t0x8479\n0xDFAE\t0x848F\n0xDFAF\t0x848D\n0xDFB0\t0x8465\n0xDFB1\t0x8451\n0xDFB2\t0x8440\n0xDFB3\t0x8486\n0xDFB4\t0x8467\n0xDFB5\t0x8430\n0xDFB6\t0x844D\n0xDFB7\t0x847D\n0xDFB8\t0x845A\n0xDFB9\t0x8459\n0xDFBA\t0x8474\n0xDFBB\t0x8473\n0xDFBC\t0x845D\n0xDFBD\t0x8507\n0xDFBE\t0x845E\n0xDFBF\t0x8437\n0xDFC0\t0x843A\n0xDFC1\t0x8434\n0xDFC2\t0x847A\n0xDFC3\t0x8443\n0xDFC4\t0x8478\n0xDFC5\t0x8432\n0xDFC6\t0x8445\n0xDFC7\t0x8429\n0xDFC8\t0x83D9\n0xDFC9\t0x844B\n0xDFCA\t0x842F\n0xDFCB\t0x8442\n0xDFCC\t0x842D\n0xDFCD\t0x845F\n0xDFCE\t0x8470\n0xDFCF\t0x8439\n0xDFD0\t0x844E\n0xDFD1\t0x844C\n0xDFD2\t0x8452\n0xDFD3\t0x846F\n0xDFD4\t0x84C5\n0xDFD5\t0x848E\n0xDFD6\t0x843B\n0xDFD7\t0x8447\n0xDFD8\t0x8436\n0xDFD9\t0x8433\n0xDFDA\t0x8468\n0xDFDB\t0x847E\n0xDFDC\t0x8444\n0xDFDD\t0x842B\n0xDFDE\t0x8460\n0xDFDF\t0x8454\n0xDFE0\t0x846E\n0xDFE1\t0x8450\n0xDFE2\t0x870B\n0xDFE3\t0x8704\n0xDFE4\t0x86F7\n0xDFE5\t0x870C\n0xDFE6\t0x86FA\n0xDFE7\t0x86D6\n0xDFE8\t0x86F5\n0xDFE9\t0x874D\n0xDFEA\t0x86F8\n0xDFEB\t0x870E\n0xDFEC\t0x8709\n0xDFED\t0x8701\n0xDFEE\t0x86F6\n0xDFEF\t0x870D\n0xDFF0\t0x8705\n0xDFF1\t0x88D6\n0xDFF2\t0x88CB\n0xDFF3\t0x88CD\n0xDFF4\t0x88CE\n0xDFF5\t0x88DE\n0xDFF6\t0x88DB\n0xDFF7\t0x88DA\n0xDFF8\t0x88CC\n0xDFF9\t0x88D0\n0xDFFA\t0x8985\n0xDFFB\t0x899B\n0xDFFC\t0x89DF\n0xDFFD\t0x89E5\n0xDFFE\t0x89E4\n0xE040\t0x89E1\n0xE041\t0x89E0\n0xE042\t0x89E2\n0xE043\t0x89DC\n0xE044\t0x89E6\n0xE045\t0x8A76\n0xE046\t0x8A86\n0xE047\t0x8A7F\n0xE048\t0x8A61\n0xE049\t0x8A3F\n0xE04A\t0x8A77\n0xE04B\t0x8A82\n0xE04C\t0x8A84\n0xE04D\t0x8A75\n0xE04E\t0x8A83\n0xE04F\t0x8A81\n0xE050\t0x8A74\n0xE051\t0x8A7A\n0xE052\t0x8C3C\n0xE053\t0x8C4B\n0xE054\t0x8C4A\n0xE055\t0x8C65\n0xE056\t0x8C64\n0xE057\t0x8C66\n0xE058\t0x8C86\n0xE059\t0x8C84\n0xE05A\t0x8C85\n0xE05B\t0x8CCC\n0xE05C\t0x8D68\n0xE05D\t0x8D69\n0xE05E\t0x8D91\n0xE05F\t0x8D8C\n0xE060\t0x8D8E\n0xE061\t0x8D8F\n0xE062\t0x8D8D\n0xE063\t0x8D93\n0xE064\t0x8D94\n0xE065\t0x8D90\n0xE066\t0x8D92\n0xE067\t0x8DF0\n0xE068\t0x8DE0\n0xE069\t0x8DEC\n0xE06A\t0x8DF1\n0xE06B\t0x8DEE\n0xE06C\t0x8DD0\n0xE06D\t0x8DE9\n0xE06E\t0x8DE3\n0xE06F\t0x8DE2\n0xE070\t0x8DE7\n0xE071\t0x8DF2\n0xE072\t0x8DEB\n0xE073\t0x8DF4\n0xE074\t0x8F06\n0xE075\t0x8EFF\n0xE076\t0x8F01\n0xE077\t0x8F00\n0xE078\t0x8F05\n0xE079\t0x8F07\n0xE07A\t0x8F08\n0xE07B\t0x8F02\n0xE07C\t0x8F0B\n0xE07D\t0x9052\n0xE07E\t0x903F\n0xE0A1\t0x9044\n0xE0A2\t0x9049\n0xE0A3\t0x903D\n0xE0A4\t0x9110\n0xE0A5\t0x910D\n0xE0A6\t0x910F\n0xE0A7\t0x9111\n0xE0A8\t0x9116\n0xE0A9\t0x9114\n0xE0AA\t0x910B\n0xE0AB\t0x910E\n0xE0AC\t0x916E\n0xE0AD\t0x916F\n0xE0AE\t0x9248\n0xE0AF\t0x9252\n0xE0B0\t0x9230\n0xE0B1\t0x923A\n0xE0B2\t0x9266\n0xE0B3\t0x9233\n0xE0B4\t0x9265\n0xE0B5\t0x925E\n0xE0B6\t0x9283\n0xE0B7\t0x922E\n0xE0B8\t0x924A\n0xE0B9\t0x9246\n0xE0BA\t0x926D\n0xE0BB\t0x926C\n0xE0BC\t0x924F\n0xE0BD\t0x9260\n0xE0BE\t0x9267\n0xE0BF\t0x926F\n0xE0C0\t0x9236\n0xE0C1\t0x9261\n0xE0C2\t0x9270\n0xE0C3\t0x9231\n0xE0C4\t0x9254\n0xE0C5\t0x9263\n0xE0C6\t0x9250\n0xE0C7\t0x9272\n0xE0C8\t0x924E\n0xE0C9\t0x9253\n0xE0CA\t0x924C\n0xE0CB\t0x9256\n0xE0CC\t0x9232\n0xE0CD\t0x959F\n0xE0CE\t0x959C\n0xE0CF\t0x959E\n0xE0D0\t0x959B\n0xE0D1\t0x9692\n0xE0D2\t0x9693\n0xE0D3\t0x9691\n0xE0D4\t0x9697\n0xE0D5\t0x96CE\n0xE0D6\t0x96FA\n0xE0D7\t0x96FD\n0xE0D8\t0x96F8\n0xE0D9\t0x96F5\n0xE0DA\t0x9773\n0xE0DB\t0x9777\n0xE0DC\t0x9778\n0xE0DD\t0x9772\n0xE0DE\t0x980F\n0xE0DF\t0x980D\n0xE0E0\t0x980E\n0xE0E1\t0x98AC\n0xE0E2\t0x98F6\n0xE0E3\t0x98F9\n0xE0E4\t0x99AF\n0xE0E5\t0x99B2\n0xE0E6\t0x99B0\n0xE0E7\t0x99B5\n0xE0E8\t0x9AAD\n0xE0E9\t0x9AAB\n0xE0EA\t0x9B5B\n0xE0EB\t0x9CEA\n0xE0EC\t0x9CED\n0xE0ED\t0x9CE7\n0xE0EE\t0x9E80\n0xE0EF\t0x9EFD\n0xE0F0\t0x50E6\n0xE0F1\t0x50D4\n0xE0F2\t0x50D7\n0xE0F3\t0x50E8\n0xE0F4\t0x50F3\n0xE0F5\t0x50DB\n0xE0F6\t0x50EA\n0xE0F7\t0x50DD\n0xE0F8\t0x50E4\n0xE0F9\t0x50D3\n0xE0FA\t0x50EC\n0xE0FB\t0x50F0\n0xE0FC\t0x50EF\n0xE0FD\t0x50E3\n0xE0FE\t0x50E0\n0xE140\t0x51D8\n0xE141\t0x5280\n0xE142\t0x5281\n0xE143\t0x52E9\n0xE144\t0x52EB\n0xE145\t0x5330\n0xE146\t0x53AC\n0xE147\t0x5627\n0xE148\t0x5615\n0xE149\t0x560C\n0xE14A\t0x5612\n0xE14B\t0x55FC\n0xE14C\t0x560F\n0xE14D\t0x561C\n0xE14E\t0x5601\n0xE14F\t0x5613\n0xE150\t0x5602\n0xE151\t0x55FA\n0xE152\t0x561D\n0xE153\t0x5604\n0xE154\t0x55FF\n0xE155\t0x55F9\n0xE156\t0x5889\n0xE157\t0x587C\n0xE158\t0x5890\n0xE159\t0x5898\n0xE15A\t0x5886\n0xE15B\t0x5881\n0xE15C\t0x587F\n0xE15D\t0x5874\n0xE15E\t0x588B\n0xE15F\t0x587A\n0xE160\t0x5887\n0xE161\t0x5891\n0xE162\t0x588E\n0xE163\t0x5876\n0xE164\t0x5882\n0xE165\t0x5888\n0xE166\t0x587B\n0xE167\t0x5894\n0xE168\t0x588F\n0xE169\t0x58FE\n0xE16A\t0x596B\n0xE16B\t0x5ADC\n0xE16C\t0x5AEE\n0xE16D\t0x5AE5\n0xE16E\t0x5AD5\n0xE16F\t0x5AEA\n0xE170\t0x5ADA\n0xE171\t0x5AED\n0xE172\t0x5AEB\n0xE173\t0x5AF3\n0xE174\t0x5AE2\n0xE175\t0x5AE0\n0xE176\t0x5ADB\n0xE177\t0x5AEC\n0xE178\t0x5ADE\n0xE179\t0x5ADD\n0xE17A\t0x5AD9\n0xE17B\t0x5AE8\n0xE17C\t0x5ADF\n0xE17D\t0x5B77\n0xE17E\t0x5BE0\n0xE1A1\t0x5BE3\n0xE1A2\t0x5C63\n0xE1A3\t0x5D82\n0xE1A4\t0x5D80\n0xE1A5\t0x5D7D\n0xE1A6\t0x5D86\n0xE1A7\t0x5D7A\n0xE1A8\t0x5D81\n0xE1A9\t0x5D77\n0xE1AA\t0x5D8A\n0xE1AB\t0x5D89\n0xE1AC\t0x5D88\n0xE1AD\t0x5D7E\n0xE1AE\t0x5D7C\n0xE1AF\t0x5D8D\n0xE1B0\t0x5D79\n0xE1B1\t0x5D7F\n0xE1B2\t0x5E58\n0xE1B3\t0x5E59\n0xE1B4\t0x5E53\n0xE1B5\t0x5ED8\n0xE1B6\t0x5ED1\n0xE1B7\t0x5ED7\n0xE1B8\t0x5ECE\n0xE1B9\t0x5EDC\n0xE1BA\t0x5ED5\n0xE1BB\t0x5ED9\n0xE1BC\t0x5ED2\n0xE1BD\t0x5ED4\n0xE1BE\t0x5F44\n0xE1BF\t0x5F43\n0xE1C0\t0x5F6F\n0xE1C1\t0x5FB6\n0xE1C2\t0x612C\n0xE1C3\t0x6128\n0xE1C4\t0x6141\n0xE1C5\t0x615E\n0xE1C6\t0x6171\n0xE1C7\t0x6173\n0xE1C8\t0x6152\n0xE1C9\t0x6153\n0xE1CA\t0x6172\n0xE1CB\t0x616C\n0xE1CC\t0x6180\n0xE1CD\t0x6174\n0xE1CE\t0x6154\n0xE1CF\t0x617A\n0xE1D0\t0x615B\n0xE1D1\t0x6165\n0xE1D2\t0x613B\n0xE1D3\t0x616A\n0xE1D4\t0x6161\n0xE1D5\t0x6156\n0xE1D6\t0x6229\n0xE1D7\t0x6227\n0xE1D8\t0x622B\n0xE1D9\t0x642B\n0xE1DA\t0x644D\n0xE1DB\t0x645B\n0xE1DC\t0x645D\n0xE1DD\t0x6474\n0xE1DE\t0x6476\n0xE1DF\t0x6472\n0xE1E0\t0x6473\n0xE1E1\t0x647D\n0xE1E2\t0x6475\n0xE1E3\t0x6466\n0xE1E4\t0x64A6\n0xE1E5\t0x644E\n0xE1E6\t0x6482\n0xE1E7\t0x645E\n0xE1E8\t0x645C\n0xE1E9\t0x644B\n0xE1EA\t0x6453\n0xE1EB\t0x6460\n0xE1EC\t0x6450\n0xE1ED\t0x647F\n0xE1EE\t0x643F\n0xE1EF\t0x646C\n0xE1F0\t0x646B\n0xE1F1\t0x6459\n0xE1F2\t0x6465\n0xE1F3\t0x6477\n0xE1F4\t0x6573\n0xE1F5\t0x65A0\n0xE1F6\t0x66A1\n0xE1F7\t0x66A0\n0xE1F8\t0x669F\n0xE1F9\t0x6705\n0xE1FA\t0x6704\n0xE1FB\t0x6722\n0xE1FC\t0x69B1\n0xE1FD\t0x69B6\n0xE1FE\t0x69C9\n0xE240\t0x69A0\n0xE241\t0x69CE\n0xE242\t0x6996\n0xE243\t0x69B0\n0xE244\t0x69AC\n0xE245\t0x69BC\n0xE246\t0x6991\n0xE247\t0x6999\n0xE248\t0x698E\n0xE249\t0x69A7\n0xE24A\t0x698D\n0xE24B\t0x69A9\n0xE24C\t0x69BE\n0xE24D\t0x69AF\n0xE24E\t0x69BF\n0xE24F\t0x69C4\n0xE250\t0x69BD\n0xE251\t0x69A4\n0xE252\t0x69D4\n0xE253\t0x69B9\n0xE254\t0x69CA\n0xE255\t0x699A\n0xE256\t0x69CF\n0xE257\t0x69B3\n0xE258\t0x6993\n0xE259\t0x69AA\n0xE25A\t0x69A1\n0xE25B\t0x699E\n0xE25C\t0x69D9\n0xE25D\t0x6997\n0xE25E\t0x6990\n0xE25F\t0x69C2\n0xE260\t0x69B5\n0xE261\t0x69A5\n0xE262\t0x69C6\n0xE263\t0x6B4A\n0xE264\t0x6B4D\n0xE265\t0x6B4B\n0xE266\t0x6B9E\n0xE267\t0x6B9F\n0xE268\t0x6BA0\n0xE269\t0x6BC3\n0xE26A\t0x6BC4\n0xE26B\t0x6BFE\n0xE26C\t0x6ECE\n0xE26D\t0x6EF5\n0xE26E\t0x6EF1\n0xE26F\t0x6F03\n0xE270\t0x6F25\n0xE271\t0x6EF8\n0xE272\t0x6F37\n0xE273\t0x6EFB\n0xE274\t0x6F2E\n0xE275\t0x6F09\n0xE276\t0x6F4E\n0xE277\t0x6F19\n0xE278\t0x6F1A\n0xE279\t0x6F27\n0xE27A\t0x6F18\n0xE27B\t0x6F3B\n0xE27C\t0x6F12\n0xE27D\t0x6EED\n0xE27E\t0x6F0A\n0xE2A1\t0x6F36\n0xE2A2\t0x6F73\n0xE2A3\t0x6EF9\n0xE2A4\t0x6EEE\n0xE2A5\t0x6F2D\n0xE2A6\t0x6F40\n0xE2A7\t0x6F30\n0xE2A8\t0x6F3C\n0xE2A9\t0x6F35\n0xE2AA\t0x6EEB\n0xE2AB\t0x6F07\n0xE2AC\t0x6F0E\n0xE2AD\t0x6F43\n0xE2AE\t0x6F05\n0xE2AF\t0x6EFD\n0xE2B0\t0x6EF6\n0xE2B1\t0x6F39\n0xE2B2\t0x6F1C\n0xE2B3\t0x6EFC\n0xE2B4\t0x6F3A\n0xE2B5\t0x6F1F\n0xE2B6\t0x6F0D\n0xE2B7\t0x6F1E\n0xE2B8\t0x6F08\n0xE2B9\t0x6F21\n0xE2BA\t0x7187\n0xE2BB\t0x7190\n0xE2BC\t0x7189\n0xE2BD\t0x7180\n0xE2BE\t0x7185\n0xE2BF\t0x7182\n0xE2C0\t0x718F\n0xE2C1\t0x717B\n0xE2C2\t0x7186\n0xE2C3\t0x7181\n0xE2C4\t0x7197\n0xE2C5\t0x7244\n0xE2C6\t0x7253\n0xE2C7\t0x7297\n0xE2C8\t0x7295\n0xE2C9\t0x7293\n0xE2CA\t0x7343\n0xE2CB\t0x734D\n0xE2CC\t0x7351\n0xE2CD\t0x734C\n0xE2CE\t0x7462\n0xE2CF\t0x7473\n0xE2D0\t0x7471\n0xE2D1\t0x7475\n0xE2D2\t0x7472\n0xE2D3\t0x7467\n0xE2D4\t0x746E\n0xE2D5\t0x7500\n0xE2D6\t0x7502\n0xE2D7\t0x7503\n0xE2D8\t0x757D\n0xE2D9\t0x7590\n0xE2DA\t0x7616\n0xE2DB\t0x7608\n0xE2DC\t0x760C\n0xE2DD\t0x7615\n0xE2DE\t0x7611\n0xE2DF\t0x760A\n0xE2E0\t0x7614\n0xE2E1\t0x76B8\n0xE2E2\t0x7781\n0xE2E3\t0x777C\n0xE2E4\t0x7785\n0xE2E5\t0x7782\n0xE2E6\t0x776E\n0xE2E7\t0x7780\n0xE2E8\t0x776F\n0xE2E9\t0x777E\n0xE2EA\t0x7783\n0xE2EB\t0x78B2\n0xE2EC\t0x78AA\n0xE2ED\t0x78B4\n0xE2EE\t0x78AD\n0xE2EF\t0x78A8\n0xE2F0\t0x787E\n0xE2F1\t0x78AB\n0xE2F2\t0x789E\n0xE2F3\t0x78A5\n0xE2F4\t0x78A0\n0xE2F5\t0x78AC\n0xE2F6\t0x78A2\n0xE2F7\t0x78A4\n0xE2F8\t0x7998\n0xE2F9\t0x798A\n0xE2FA\t0x798B\n0xE2FB\t0x7996\n0xE2FC\t0x7995\n0xE2FD\t0x7994\n0xE2FE\t0x7993\n0xE340\t0x7997\n0xE341\t0x7988\n0xE342\t0x7992\n0xE343\t0x7990\n0xE344\t0x7A2B\n0xE345\t0x7A4A\n0xE346\t0x7A30\n0xE347\t0x7A2F\n0xE348\t0x7A28\n0xE349\t0x7A26\n0xE34A\t0x7AA8\n0xE34B\t0x7AAB\n0xE34C\t0x7AAC\n0xE34D\t0x7AEE\n0xE34E\t0x7B88\n0xE34F\t0x7B9C\n0xE350\t0x7B8A\n0xE351\t0x7B91\n0xE352\t0x7B90\n0xE353\t0x7B96\n0xE354\t0x7B8D\n0xE355\t0x7B8C\n0xE356\t0x7B9B\n0xE357\t0x7B8E\n0xE358\t0x7B85\n0xE359\t0x7B98\n0xE35A\t0x5284\n0xE35B\t0x7B99\n0xE35C\t0x7BA4\n0xE35D\t0x7B82\n0xE35E\t0x7CBB\n0xE35F\t0x7CBF\n0xE360\t0x7CBC\n0xE361\t0x7CBA\n0xE362\t0x7DA7\n0xE363\t0x7DB7\n0xE364\t0x7DC2\n0xE365\t0x7DA3\n0xE366\t0x7DAA\n0xE367\t0x7DC1\n0xE368\t0x7DC0\n0xE369\t0x7DC5\n0xE36A\t0x7D9D\n0xE36B\t0x7DCE\n0xE36C\t0x7DC4\n0xE36D\t0x7DC6\n0xE36E\t0x7DCB\n0xE36F\t0x7DCC\n0xE370\t0x7DAF\n0xE371\t0x7DB9\n0xE372\t0x7D96\n0xE373\t0x7DBC\n0xE374\t0x7D9F\n0xE375\t0x7DA6\n0xE376\t0x7DAE\n0xE377\t0x7DA9\n0xE378\t0x7DA1\n0xE379\t0x7DC9\n0xE37A\t0x7F73\n0xE37B\t0x7FE2\n0xE37C\t0x7FE3\n0xE37D\t0x7FE5\n0xE37E\t0x7FDE\n0xE3A1\t0x8024\n0xE3A2\t0x805D\n0xE3A3\t0x805C\n0xE3A4\t0x8189\n0xE3A5\t0x8186\n0xE3A6\t0x8183\n0xE3A7\t0x8187\n0xE3A8\t0x818D\n0xE3A9\t0x818C\n0xE3AA\t0x818B\n0xE3AB\t0x8215\n0xE3AC\t0x8497\n0xE3AD\t0x84A4\n0xE3AE\t0x84A1\n0xE3AF\t0x849F\n0xE3B0\t0x84BA\n0xE3B1\t0x84CE\n0xE3B2\t0x84C2\n0xE3B3\t0x84AC\n0xE3B4\t0x84AE\n0xE3B5\t0x84AB\n0xE3B6\t0x84B9\n0xE3B7\t0x84B4\n0xE3B8\t0x84C1\n0xE3B9\t0x84CD\n0xE3BA\t0x84AA\n0xE3BB\t0x849A\n0xE3BC\t0x84B1\n0xE3BD\t0x84D0\n0xE3BE\t0x849D\n0xE3BF\t0x84A7\n0xE3C0\t0x84BB\n0xE3C1\t0x84A2\n0xE3C2\t0x8494\n0xE3C3\t0x84C7\n0xE3C4\t0x84CC\n0xE3C5\t0x849B\n0xE3C6\t0x84A9\n0xE3C7\t0x84AF\n0xE3C8\t0x84A8\n0xE3C9\t0x84D6\n0xE3CA\t0x8498\n0xE3CB\t0x84B6\n0xE3CC\t0x84CF\n0xE3CD\t0x84A0\n0xE3CE\t0x84D7\n0xE3CF\t0x84D4\n0xE3D0\t0x84D2\n0xE3D1\t0x84DB\n0xE3D2\t0x84B0\n0xE3D3\t0x8491\n0xE3D4\t0x8661\n0xE3D5\t0x8733\n0xE3D6\t0x8723\n0xE3D7\t0x8728\n0xE3D8\t0x876B\n0xE3D9\t0x8740\n0xE3DA\t0x872E\n0xE3DB\t0x871E\n0xE3DC\t0x8721\n0xE3DD\t0x8719\n0xE3DE\t0x871B\n0xE3DF\t0x8743\n0xE3E0\t0x872C\n0xE3E1\t0x8741\n0xE3E2\t0x873E\n0xE3E3\t0x8746\n0xE3E4\t0x8720\n0xE3E5\t0x8732\n0xE3E6\t0x872A\n0xE3E7\t0x872D\n0xE3E8\t0x873C\n0xE3E9\t0x8712\n0xE3EA\t0x873A\n0xE3EB\t0x8731\n0xE3EC\t0x8735\n0xE3ED\t0x8742\n0xE3EE\t0x8726\n0xE3EF\t0x8727\n0xE3F0\t0x8738\n0xE3F1\t0x8724\n0xE3F2\t0x871A\n0xE3F3\t0x8730\n0xE3F4\t0x8711\n0xE3F5\t0x88F7\n0xE3F6\t0x88E7\n0xE3F7\t0x88F1\n0xE3F8\t0x88F2\n0xE3F9\t0x88FA\n0xE3FA\t0x88FE\n0xE3FB\t0x88EE\n0xE3FC\t0x88FC\n0xE3FD\t0x88F6\n0xE3FE\t0x88FB\n0xE440\t0x88F0\n0xE441\t0x88EC\n0xE442\t0x88EB\n0xE443\t0x899D\n0xE444\t0x89A1\n0xE445\t0x899F\n0xE446\t0x899E\n0xE447\t0x89E9\n0xE448\t0x89EB\n0xE449\t0x89E8\n0xE44A\t0x8AAB\n0xE44B\t0x8A99\n0xE44C\t0x8A8B\n0xE44D\t0x8A92\n0xE44E\t0x8A8F\n0xE44F\t0x8A96\n0xE450\t0x8C3D\n0xE451\t0x8C68\n0xE452\t0x8C69\n0xE453\t0x8CD5\n0xE454\t0x8CCF\n0xE455\t0x8CD7\n0xE456\t0x8D96\n0xE457\t0x8E09\n0xE458\t0x8E02\n0xE459\t0x8DFF\n0xE45A\t0x8E0D\n0xE45B\t0x8DFD\n0xE45C\t0x8E0A\n0xE45D\t0x8E03\n0xE45E\t0x8E07\n0xE45F\t0x8E06\n0xE460\t0x8E05\n0xE461\t0x8DFE\n0xE462\t0x8E00\n0xE463\t0x8E04\n0xE464\t0x8F10\n0xE465\t0x8F11\n0xE466\t0x8F0E\n0xE467\t0x8F0D\n0xE468\t0x9123\n0xE469\t0x911C\n0xE46A\t0x9120\n0xE46B\t0x9122\n0xE46C\t0x911F\n0xE46D\t0x911D\n0xE46E\t0x911A\n0xE46F\t0x9124\n0xE470\t0x9121\n0xE471\t0x911B\n0xE472\t0x917A\n0xE473\t0x9172\n0xE474\t0x9179\n0xE475\t0x9173\n0xE476\t0x92A5\n0xE477\t0x92A4\n0xE478\t0x9276\n0xE479\t0x929B\n0xE47A\t0x927A\n0xE47B\t0x92A0\n0xE47C\t0x9294\n0xE47D\t0x92AA\n0xE47E\t0x928D\n0xE4A1\t0x92A6\n0xE4A2\t0x929A\n0xE4A3\t0x92AB\n0xE4A4\t0x9279\n0xE4A5\t0x9297\n0xE4A6\t0x927F\n0xE4A7\t0x92A3\n0xE4A8\t0x92EE\n0xE4A9\t0x928E\n0xE4AA\t0x9282\n0xE4AB\t0x9295\n0xE4AC\t0x92A2\n0xE4AD\t0x927D\n0xE4AE\t0x9288\n0xE4AF\t0x92A1\n0xE4B0\t0x928A\n0xE4B1\t0x9286\n0xE4B2\t0x928C\n0xE4B3\t0x9299\n0xE4B4\t0x92A7\n0xE4B5\t0x927E\n0xE4B6\t0x9287\n0xE4B7\t0x92A9\n0xE4B8\t0x929D\n0xE4B9\t0x928B\n0xE4BA\t0x922D\n0xE4BB\t0x969E\n0xE4BC\t0x96A1\n0xE4BD\t0x96FF\n0xE4BE\t0x9758\n0xE4BF\t0x977D\n0xE4C0\t0x977A\n0xE4C1\t0x977E\n0xE4C2\t0x9783\n0xE4C3\t0x9780\n0xE4C4\t0x9782\n0xE4C5\t0x977B\n0xE4C6\t0x9784\n0xE4C7\t0x9781\n0xE4C8\t0x977F\n0xE4C9\t0x97CE\n0xE4CA\t0x97CD\n0xE4CB\t0x9816\n0xE4CC\t0x98AD\n0xE4CD\t0x98AE\n0xE4CE\t0x9902\n0xE4CF\t0x9900\n0xE4D0\t0x9907\n0xE4D1\t0x999D\n0xE4D2\t0x999C\n0xE4D3\t0x99C3\n0xE4D4\t0x99B9\n0xE4D5\t0x99BB\n0xE4D6\t0x99BA\n0xE4D7\t0x99C2\n0xE4D8\t0x99BD\n0xE4D9\t0x99C7\n0xE4DA\t0x9AB1\n0xE4DB\t0x9AE3\n0xE4DC\t0x9AE7\n0xE4DD\t0x9B3E\n0xE4DE\t0x9B3F\n0xE4DF\t0x9B60\n0xE4E0\t0x9B61\n0xE4E1\t0x9B5F\n0xE4E2\t0x9CF1\n0xE4E3\t0x9CF2\n0xE4E4\t0x9CF5\n0xE4E5\t0x9EA7\n0xE4E6\t0x50FF\n0xE4E7\t0x5103\n0xE4E8\t0x5130\n0xE4E9\t0x50F8\n0xE4EA\t0x5106\n0xE4EB\t0x5107\n0xE4EC\t0x50F6\n0xE4ED\t0x50FE\n0xE4EE\t0x510B\n0xE4EF\t0x510C\n0xE4F0\t0x50FD\n0xE4F1\t0x510A\n0xE4F2\t0x528B\n0xE4F3\t0x528C\n0xE4F4\t0x52F1\n0xE4F5\t0x52EF\n0xE4F6\t0x5648\n0xE4F7\t0x5642\n0xE4F8\t0x564C\n0xE4F9\t0x5635\n0xE4FA\t0x5641\n0xE4FB\t0x564A\n0xE4FC\t0x5649\n0xE4FD\t0x5646\n0xE4FE\t0x5658\n0xE540\t0x565A\n0xE541\t0x5640\n0xE542\t0x5633\n0xE543\t0x563D\n0xE544\t0x562C\n0xE545\t0x563E\n0xE546\t0x5638\n0xE547\t0x562A\n0xE548\t0x563A\n0xE549\t0x571A\n0xE54A\t0x58AB\n0xE54B\t0x589D\n0xE54C\t0x58B1\n0xE54D\t0x58A0\n0xE54E\t0x58A3\n0xE54F\t0x58AF\n0xE550\t0x58AC\n0xE551\t0x58A5\n0xE552\t0x58A1\n0xE553\t0x58FF\n0xE554\t0x5AFF\n0xE555\t0x5AF4\n0xE556\t0x5AFD\n0xE557\t0x5AF7\n0xE558\t0x5AF6\n0xE559\t0x5B03\n0xE55A\t0x5AF8\n0xE55B\t0x5B02\n0xE55C\t0x5AF9\n0xE55D\t0x5B01\n0xE55E\t0x5B07\n0xE55F\t0x5B05\n0xE560\t0x5B0F\n0xE561\t0x5C67\n0xE562\t0x5D99\n0xE563\t0x5D97\n0xE564\t0x5D9F\n0xE565\t0x5D92\n0xE566\t0x5DA2\n0xE567\t0x5D93\n0xE568\t0x5D95\n0xE569\t0x5DA0\n0xE56A\t0x5D9C\n0xE56B\t0x5DA1\n0xE56C\t0x5D9A\n0xE56D\t0x5D9E\n0xE56E\t0x5E69\n0xE56F\t0x5E5D\n0xE570\t0x5E60\n0xE571\t0x5E5C\n0xE572\t0x7DF3\n0xE573\t0x5EDB\n0xE574\t0x5EDE\n0xE575\t0x5EE1\n0xE576\t0x5F49\n0xE577\t0x5FB2\n0xE578\t0x618B\n0xE579\t0x6183\n0xE57A\t0x6179\n0xE57B\t0x61B1\n0xE57C\t0x61B0\n0xE57D\t0x61A2\n0xE57E\t0x6189\n0xE5A1\t0x619B\n0xE5A2\t0x6193\n0xE5A3\t0x61AF\n0xE5A4\t0x61AD\n0xE5A5\t0x619F\n0xE5A6\t0x6192\n0xE5A7\t0x61AA\n0xE5A8\t0x61A1\n0xE5A9\t0x618D\n0xE5AA\t0x6166\n0xE5AB\t0x61B3\n0xE5AC\t0x622D\n0xE5AD\t0x646E\n0xE5AE\t0x6470\n0xE5AF\t0x6496\n0xE5B0\t0x64A0\n0xE5B1\t0x6485\n0xE5B2\t0x6497\n0xE5B3\t0x649C\n0xE5B4\t0x648F\n0xE5B5\t0x648B\n0xE5B6\t0x648A\n0xE5B7\t0x648C\n0xE5B8\t0x64A3\n0xE5B9\t0x649F\n0xE5BA\t0x6468\n0xE5BB\t0x64B1\n0xE5BC\t0x6498\n0xE5BD\t0x6576\n0xE5BE\t0x657A\n0xE5BF\t0x6579\n0xE5C0\t0x657B\n0xE5C1\t0x65B2\n0xE5C2\t0x65B3\n0xE5C3\t0x66B5\n0xE5C4\t0x66B0\n0xE5C5\t0x66A9\n0xE5C6\t0x66B2\n0xE5C7\t0x66B7\n0xE5C8\t0x66AA\n0xE5C9\t0x66AF\n0xE5CA\t0x6A00\n0xE5CB\t0x6A06\n0xE5CC\t0x6A17\n0xE5CD\t0x69E5\n0xE5CE\t0x69F8\n0xE5CF\t0x6A15\n0xE5D0\t0x69F1\n0xE5D1\t0x69E4\n0xE5D2\t0x6A20\n0xE5D3\t0x69FF\n0xE5D4\t0x69EC\n0xE5D5\t0x69E2\n0xE5D6\t0x6A1B\n0xE5D7\t0x6A1D\n0xE5D8\t0x69FE\n0xE5D9\t0x6A27\n0xE5DA\t0x69F2\n0xE5DB\t0x69EE\n0xE5DC\t0x6A14\n0xE5DD\t0x69F7\n0xE5DE\t0x69E7\n0xE5DF\t0x6A40\n0xE5E0\t0x6A08\n0xE5E1\t0x69E6\n0xE5E2\t0x69FB\n0xE5E3\t0x6A0D\n0xE5E4\t0x69FC\n0xE5E5\t0x69EB\n0xE5E6\t0x6A09\n0xE5E7\t0x6A04\n0xE5E8\t0x6A18\n0xE5E9\t0x6A25\n0xE5EA\t0x6A0F\n0xE5EB\t0x69F6\n0xE5EC\t0x6A26\n0xE5ED\t0x6A07\n0xE5EE\t0x69F4\n0xE5EF\t0x6A16\n0xE5F0\t0x6B51\n0xE5F1\t0x6BA5\n0xE5F2\t0x6BA3\n0xE5F3\t0x6BA2\n0xE5F4\t0x6BA6\n0xE5F5\t0x6C01\n0xE5F6\t0x6C00\n0xE5F7\t0x6BFF\n0xE5F8\t0x6C02\n0xE5F9\t0x6F41\n0xE5FA\t0x6F26\n0xE5FB\t0x6F7E\n0xE5FC\t0x6F87\n0xE5FD\t0x6FC6\n0xE5FE\t0x6F92\n0xE640\t0x6F8D\n0xE641\t0x6F89\n0xE642\t0x6F8C\n0xE643\t0x6F62\n0xE644\t0x6F4F\n0xE645\t0x6F85\n0xE646\t0x6F5A\n0xE647\t0x6F96\n0xE648\t0x6F76\n0xE649\t0x6F6C\n0xE64A\t0x6F82\n0xE64B\t0x6F55\n0xE64C\t0x6F72\n0xE64D\t0x6F52\n0xE64E\t0x6F50\n0xE64F\t0x6F57\n0xE650\t0x6F94\n0xE651\t0x6F93\n0xE652\t0x6F5D\n0xE653\t0x6F00\n0xE654\t0x6F61\n0xE655\t0x6F6B\n0xE656\t0x6F7D\n0xE657\t0x6F67\n0xE658\t0x6F90\n0xE659\t0x6F53\n0xE65A\t0x6F8B\n0xE65B\t0x6F69\n0xE65C\t0x6F7F\n0xE65D\t0x6F95\n0xE65E\t0x6F63\n0xE65F\t0x6F77\n0xE660\t0x6F6A\n0xE661\t0x6F7B\n0xE662\t0x71B2\n0xE663\t0x71AF\n0xE664\t0x719B\n0xE665\t0x71B0\n0xE666\t0x71A0\n0xE667\t0x719A\n0xE668\t0x71A9\n0xE669\t0x71B5\n0xE66A\t0x719D\n0xE66B\t0x71A5\n0xE66C\t0x719E\n0xE66D\t0x71A4\n0xE66E\t0x71A1\n0xE66F\t0x71AA\n0xE670\t0x719C\n0xE671\t0x71A7\n0xE672\t0x71B3\n0xE673\t0x7298\n0xE674\t0x729A\n0xE675\t0x7358\n0xE676\t0x7352\n0xE677\t0x735E\n0xE678\t0x735F\n0xE679\t0x7360\n0xE67A\t0x735D\n0xE67B\t0x735B\n0xE67C\t0x7361\n0xE67D\t0x735A\n0xE67E\t0x7359\n0xE6A1\t0x7362\n0xE6A2\t0x7487\n0xE6A3\t0x7489\n0xE6A4\t0x748A\n0xE6A5\t0x7486\n0xE6A6\t0x7481\n0xE6A7\t0x747D\n0xE6A8\t0x7485\n0xE6A9\t0x7488\n0xE6AA\t0x747C\n0xE6AB\t0x7479\n0xE6AC\t0x7508\n0xE6AD\t0x7507\n0xE6AE\t0x757E\n0xE6AF\t0x7625\n0xE6B0\t0x761E\n0xE6B1\t0x7619\n0xE6B2\t0x761D\n0xE6B3\t0x761C\n0xE6B4\t0x7623\n0xE6B5\t0x761A\n0xE6B6\t0x7628\n0xE6B7\t0x761B\n0xE6B8\t0x769C\n0xE6B9\t0x769D\n0xE6BA\t0x769E\n0xE6BB\t0x769B\n0xE6BC\t0x778D\n0xE6BD\t0x778F\n0xE6BE\t0x7789\n0xE6BF\t0x7788\n0xE6C0\t0x78CD\n0xE6C1\t0x78BB\n0xE6C2\t0x78CF\n0xE6C3\t0x78CC\n0xE6C4\t0x78D1\n0xE6C5\t0x78CE\n0xE6C6\t0x78D4\n0xE6C7\t0x78C8\n0xE6C8\t0x78C3\n0xE6C9\t0x78C4\n0xE6CA\t0x78C9\n0xE6CB\t0x799A\n0xE6CC\t0x79A1\n0xE6CD\t0x79A0\n0xE6CE\t0x799C\n0xE6CF\t0x79A2\n0xE6D0\t0x799B\n0xE6D1\t0x6B76\n0xE6D2\t0x7A39\n0xE6D3\t0x7AB2\n0xE6D4\t0x7AB4\n0xE6D5\t0x7AB3\n0xE6D6\t0x7BB7\n0xE6D7\t0x7BCB\n0xE6D8\t0x7BBE\n0xE6D9\t0x7BAC\n0xE6DA\t0x7BCE\n0xE6DB\t0x7BAF\n0xE6DC\t0x7BB9\n0xE6DD\t0x7BCA\n0xE6DE\t0x7BB5\n0xE6DF\t0x7CC5\n0xE6E0\t0x7CC8\n0xE6E1\t0x7CCC\n0xE6E2\t0x7CCB\n0xE6E3\t0x7DF7\n0xE6E4\t0x7DDB\n0xE6E5\t0x7DEA\n0xE6E6\t0x7DE7\n0xE6E7\t0x7DD7\n0xE6E8\t0x7DE1\n0xE6E9\t0x7E03\n0xE6EA\t0x7DFA\n0xE6EB\t0x7DE6\n0xE6EC\t0x7DF6\n0xE6ED\t0x7DF1\n0xE6EE\t0x7DF0\n0xE6EF\t0x7DEE\n0xE6F0\t0x7DDF\n0xE6F1\t0x7F76\n0xE6F2\t0x7FAC\n0xE6F3\t0x7FB0\n0xE6F4\t0x7FAD\n0xE6F5\t0x7FED\n0xE6F6\t0x7FEB\n0xE6F7\t0x7FEA\n0xE6F8\t0x7FEC\n0xE6F9\t0x7FE6\n0xE6FA\t0x7FE8\n0xE6FB\t0x8064\n0xE6FC\t0x8067\n0xE6FD\t0x81A3\n0xE6FE\t0x819F\n0xE740\t0x819E\n0xE741\t0x8195\n0xE742\t0x81A2\n0xE743\t0x8199\n0xE744\t0x8197\n0xE745\t0x8216\n0xE746\t0x824F\n0xE747\t0x8253\n0xE748\t0x8252\n0xE749\t0x8250\n0xE74A\t0x824E\n0xE74B\t0x8251\n0xE74C\t0x8524\n0xE74D\t0x853B\n0xE74E\t0x850F\n0xE74F\t0x8500\n0xE750\t0x8529\n0xE751\t0x850E\n0xE752\t0x8509\n0xE753\t0x850D\n0xE754\t0x851F\n0xE755\t0x850A\n0xE756\t0x8527\n0xE757\t0x851C\n0xE758\t0x84FB\n0xE759\t0x852B\n0xE75A\t0x84FA\n0xE75B\t0x8508\n0xE75C\t0x850C\n0xE75D\t0x84F4\n0xE75E\t0x852A\n0xE75F\t0x84F2\n0xE760\t0x8515\n0xE761\t0x84F7\n0xE762\t0x84EB\n0xE763\t0x84F3\n0xE764\t0x84FC\n0xE765\t0x8512\n0xE766\t0x84EA\n0xE767\t0x84E9\n0xE768\t0x8516\n0xE769\t0x84FE\n0xE76A\t0x8528\n0xE76B\t0x851D\n0xE76C\t0x852E\n0xE76D\t0x8502\n0xE76E\t0x84FD\n0xE76F\t0x851E\n0xE770\t0x84F6\n0xE771\t0x8531\n0xE772\t0x8526\n0xE773\t0x84E7\n0xE774\t0x84E8\n0xE775\t0x84F0\n0xE776\t0x84EF\n0xE777\t0x84F9\n0xE778\t0x8518\n0xE779\t0x8520\n0xE77A\t0x8530\n0xE77B\t0x850B\n0xE77C\t0x8519\n0xE77D\t0x852F\n0xE77E\t0x8662\n0xE7A1\t0x8756\n0xE7A2\t0x8763\n0xE7A3\t0x8764\n0xE7A4\t0x8777\n0xE7A5\t0x87E1\n0xE7A6\t0x8773\n0xE7A7\t0x8758\n0xE7A8\t0x8754\n0xE7A9\t0x875B\n0xE7AA\t0x8752\n0xE7AB\t0x8761\n0xE7AC\t0x875A\n0xE7AD\t0x8751\n0xE7AE\t0x875E\n0xE7AF\t0x876D\n0xE7B0\t0x876A\n0xE7B1\t0x8750\n0xE7B2\t0x874E\n0xE7B3\t0x875F\n0xE7B4\t0x875D\n0xE7B5\t0x876F\n0xE7B6\t0x876C\n0xE7B7\t0x877A\n0xE7B8\t0x876E\n0xE7B9\t0x875C\n0xE7BA\t0x8765\n0xE7BB\t0x874F\n0xE7BC\t0x877B\n0xE7BD\t0x8775\n0xE7BE\t0x8762\n0xE7BF\t0x8767\n0xE7C0\t0x8769\n0xE7C1\t0x885A\n0xE7C2\t0x8905\n0xE7C3\t0x890C\n0xE7C4\t0x8914\n0xE7C5\t0x890B\n0xE7C6\t0x8917\n0xE7C7\t0x8918\n0xE7C8\t0x8919\n0xE7C9\t0x8906\n0xE7CA\t0x8916\n0xE7CB\t0x8911\n0xE7CC\t0x890E\n0xE7CD\t0x8909\n0xE7CE\t0x89A2\n0xE7CF\t0x89A4\n0xE7D0\t0x89A3\n0xE7D1\t0x89ED\n0xE7D2\t0x89F0\n0xE7D3\t0x89EC\n0xE7D4\t0x8ACF\n0xE7D5\t0x8AC6\n0xE7D6\t0x8AB8\n0xE7D7\t0x8AD3\n0xE7D8\t0x8AD1\n0xE7D9\t0x8AD4\n0xE7DA\t0x8AD5\n0xE7DB\t0x8ABB\n0xE7DC\t0x8AD7\n0xE7DD\t0x8ABE\n0xE7DE\t0x8AC0\n0xE7DF\t0x8AC5\n0xE7E0\t0x8AD8\n0xE7E1\t0x8AC3\n0xE7E2\t0x8ABA\n0xE7E3\t0x8ABD\n0xE7E4\t0x8AD9\n0xE7E5\t0x8C3E\n0xE7E6\t0x8C4D\n0xE7E7\t0x8C8F\n0xE7E8\t0x8CE5\n0xE7E9\t0x8CDF\n0xE7EA\t0x8CD9\n0xE7EB\t0x8CE8\n0xE7EC\t0x8CDA\n0xE7ED\t0x8CDD\n0xE7EE\t0x8CE7\n0xE7EF\t0x8DA0\n0xE7F0\t0x8D9C\n0xE7F1\t0x8DA1\n0xE7F2\t0x8D9B\n0xE7F3\t0x8E20\n0xE7F4\t0x8E23\n0xE7F5\t0x8E25\n0xE7F6\t0x8E24\n0xE7F7\t0x8E2E\n0xE7F8\t0x8E15\n0xE7F9\t0x8E1B\n0xE7FA\t0x8E16\n0xE7FB\t0x8E11\n0xE7FC\t0x8E19\n0xE7FD\t0x8E26\n0xE7FE\t0x8E27\n0xE840\t0x8E14\n0xE841\t0x8E12\n0xE842\t0x8E18\n0xE843\t0x8E13\n0xE844\t0x8E1C\n0xE845\t0x8E17\n0xE846\t0x8E1A\n0xE847\t0x8F2C\n0xE848\t0x8F24\n0xE849\t0x8F18\n0xE84A\t0x8F1A\n0xE84B\t0x8F20\n0xE84C\t0x8F23\n0xE84D\t0x8F16\n0xE84E\t0x8F17\n0xE84F\t0x9073\n0xE850\t0x9070\n0xE851\t0x906F\n0xE852\t0x9067\n0xE853\t0x906B\n0xE854\t0x912F\n0xE855\t0x912B\n0xE856\t0x9129\n0xE857\t0x912A\n0xE858\t0x9132\n0xE859\t0x9126\n0xE85A\t0x912E\n0xE85B\t0x9185\n0xE85C\t0x9186\n0xE85D\t0x918A\n0xE85E\t0x9181\n0xE85F\t0x9182\n0xE860\t0x9184\n0xE861\t0x9180\n0xE862\t0x92D0\n0xE863\t0x92C3\n0xE864\t0x92C4\n0xE865\t0x92C0\n0xE866\t0x92D9\n0xE867\t0x92B6\n0xE868\t0x92CF\n0xE869\t0x92F1\n0xE86A\t0x92DF\n0xE86B\t0x92D8\n0xE86C\t0x92E9\n0xE86D\t0x92D7\n0xE86E\t0x92DD\n0xE86F\t0x92CC\n0xE870\t0x92EF\n0xE871\t0x92C2\n0xE872\t0x92E8\n0xE873\t0x92CA\n0xE874\t0x92C8\n0xE875\t0x92CE\n0xE876\t0x92E6\n0xE877\t0x92CD\n0xE878\t0x92D5\n0xE879\t0x92C9\n0xE87A\t0x92E0\n0xE87B\t0x92DE\n0xE87C\t0x92E7\n0xE87D\t0x92D1\n0xE87E\t0x92D3\n0xE8A1\t0x92B5\n0xE8A2\t0x92E1\n0xE8A3\t0x92C6\n0xE8A4\t0x92B4\n0xE8A5\t0x957C\n0xE8A6\t0x95AC\n0xE8A7\t0x95AB\n0xE8A8\t0x95AE\n0xE8A9\t0x95B0\n0xE8AA\t0x96A4\n0xE8AB\t0x96A2\n0xE8AC\t0x96D3\n0xE8AD\t0x9705\n0xE8AE\t0x9708\n0xE8AF\t0x9702\n0xE8B0\t0x975A\n0xE8B1\t0x978A\n0xE8B2\t0x978E\n0xE8B3\t0x9788\n0xE8B4\t0x97D0\n0xE8B5\t0x97CF\n0xE8B6\t0x981E\n0xE8B7\t0x981D\n0xE8B8\t0x9826\n0xE8B9\t0x9829\n0xE8BA\t0x9828\n0xE8BB\t0x9820\n0xE8BC\t0x981B\n0xE8BD\t0x9827\n0xE8BE\t0x98B2\n0xE8BF\t0x9908\n0xE8C0\t0x98FA\n0xE8C1\t0x9911\n0xE8C2\t0x9914\n0xE8C3\t0x9916\n0xE8C4\t0x9917\n0xE8C5\t0x9915\n0xE8C6\t0x99DC\n0xE8C7\t0x99CD\n0xE8C8\t0x99CF\n0xE8C9\t0x99D3\n0xE8CA\t0x99D4\n0xE8CB\t0x99CE\n0xE8CC\t0x99C9\n0xE8CD\t0x99D6\n0xE8CE\t0x99D8\n0xE8CF\t0x99CB\n0xE8D0\t0x99D7\n0xE8D1\t0x99CC\n0xE8D2\t0x9AB3\n0xE8D3\t0x9AEC\n0xE8D4\t0x9AEB\n0xE8D5\t0x9AF3\n0xE8D6\t0x9AF2\n0xE8D7\t0x9AF1\n0xE8D8\t0x9B46\n0xE8D9\t0x9B43\n0xE8DA\t0x9B67\n0xE8DB\t0x9B74\n0xE8DC\t0x9B71\n0xE8DD\t0x9B66\n0xE8DE\t0x9B76\n0xE8DF\t0x9B75\n0xE8E0\t0x9B70\n0xE8E1\t0x9B68\n0xE8E2\t0x9B64\n0xE8E3\t0x9B6C\n0xE8E4\t0x9CFC\n0xE8E5\t0x9CFA\n0xE8E6\t0x9CFD\n0xE8E7\t0x9CFF\n0xE8E8\t0x9CF7\n0xE8E9\t0x9D07\n0xE8EA\t0x9D00\n0xE8EB\t0x9CF9\n0xE8EC\t0x9CFB\n0xE8ED\t0x9D08\n0xE8EE\t0x9D05\n0xE8EF\t0x9D04\n0xE8F0\t0x9E83\n0xE8F1\t0x9ED3\n0xE8F2\t0x9F0F\n0xE8F3\t0x9F10\n0xE8F4\t0x511C\n0xE8F5\t0x5113\n0xE8F6\t0x5117\n0xE8F7\t0x511A\n0xE8F8\t0x5111\n0xE8F9\t0x51DE\n0xE8FA\t0x5334\n0xE8FB\t0x53E1\n0xE8FC\t0x5670\n0xE8FD\t0x5660\n0xE8FE\t0x566E\n0xE940\t0x5673\n0xE941\t0x5666\n0xE942\t0x5663\n0xE943\t0x566D\n0xE944\t0x5672\n0xE945\t0x565E\n0xE946\t0x5677\n0xE947\t0x571C\n0xE948\t0x571B\n0xE949\t0x58C8\n0xE94A\t0x58BD\n0xE94B\t0x58C9\n0xE94C\t0x58BF\n0xE94D\t0x58BA\n0xE94E\t0x58C2\n0xE94F\t0x58BC\n0xE950\t0x58C6\n0xE951\t0x5B17\n0xE952\t0x5B19\n0xE953\t0x5B1B\n0xE954\t0x5B21\n0xE955\t0x5B14\n0xE956\t0x5B13\n0xE957\t0x5B10\n0xE958\t0x5B16\n0xE959\t0x5B28\n0xE95A\t0x5B1A\n0xE95B\t0x5B20\n0xE95C\t0x5B1E\n0xE95D\t0x5BEF\n0xE95E\t0x5DAC\n0xE95F\t0x5DB1\n0xE960\t0x5DA9\n0xE961\t0x5DA7\n0xE962\t0x5DB5\n0xE963\t0x5DB0\n0xE964\t0x5DAE\n0xE965\t0x5DAA\n0xE966\t0x5DA8\n0xE967\t0x5DB2\n0xE968\t0x5DAD\n0xE969\t0x5DAF\n0xE96A\t0x5DB4\n0xE96B\t0x5E67\n0xE96C\t0x5E68\n0xE96D\t0x5E66\n0xE96E\t0x5E6F\n0xE96F\t0x5EE9\n0xE970\t0x5EE7\n0xE971\t0x5EE6\n0xE972\t0x5EE8\n0xE973\t0x5EE5\n0xE974\t0x5F4B\n0xE975\t0x5FBC\n0xE976\t0x619D\n0xE977\t0x61A8\n0xE978\t0x6196\n0xE979\t0x61C5\n0xE97A\t0x61B4\n0xE97B\t0x61C6\n0xE97C\t0x61C1\n0xE97D\t0x61CC\n0xE97E\t0x61BA\n0xE9A1\t0x61BF\n0xE9A2\t0x61B8\n0xE9A3\t0x618C\n0xE9A4\t0x64D7\n0xE9A5\t0x64D6\n0xE9A6\t0x64D0\n0xE9A7\t0x64CF\n0xE9A8\t0x64C9\n0xE9A9\t0x64BD\n0xE9AA\t0x6489\n0xE9AB\t0x64C3\n0xE9AC\t0x64DB\n0xE9AD\t0x64F3\n0xE9AE\t0x64D9\n0xE9AF\t0x6533\n0xE9B0\t0x657F\n0xE9B1\t0x657C\n0xE9B2\t0x65A2\n0xE9B3\t0x66C8\n0xE9B4\t0x66BE\n0xE9B5\t0x66C0\n0xE9B6\t0x66CA\n0xE9B7\t0x66CB\n0xE9B8\t0x66CF\n0xE9B9\t0x66BD\n0xE9BA\t0x66BB\n0xE9BB\t0x66BA\n0xE9BC\t0x66CC\n0xE9BD\t0x6723\n0xE9BE\t0x6A34\n0xE9BF\t0x6A66\n0xE9C0\t0x6A49\n0xE9C1\t0x6A67\n0xE9C2\t0x6A32\n0xE9C3\t0x6A68\n0xE9C4\t0x6A3E\n0xE9C5\t0x6A5D\n0xE9C6\t0x6A6D\n0xE9C7\t0x6A76\n0xE9C8\t0x6A5B\n0xE9C9\t0x6A51\n0xE9CA\t0x6A28\n0xE9CB\t0x6A5A\n0xE9CC\t0x6A3B\n0xE9CD\t0x6A3F\n0xE9CE\t0x6A41\n0xE9CF\t0x6A6A\n0xE9D0\t0x6A64\n0xE9D1\t0x6A50\n0xE9D2\t0x6A4F\n0xE9D3\t0x6A54\n0xE9D4\t0x6A6F\n0xE9D5\t0x6A69\n0xE9D6\t0x6A60\n0xE9D7\t0x6A3C\n0xE9D8\t0x6A5E\n0xE9D9\t0x6A56\n0xE9DA\t0x6A55\n0xE9DB\t0x6A4D\n0xE9DC\t0x6A4E\n0xE9DD\t0x6A46\n0xE9DE\t0x6B55\n0xE9DF\t0x6B54\n0xE9E0\t0x6B56\n0xE9E1\t0x6BA7\n0xE9E2\t0x6BAA\n0xE9E3\t0x6BAB\n0xE9E4\t0x6BC8\n0xE9E5\t0x6BC7\n0xE9E6\t0x6C04\n0xE9E7\t0x6C03\n0xE9E8\t0x6C06\n0xE9E9\t0x6FAD\n0xE9EA\t0x6FCB\n0xE9EB\t0x6FA3\n0xE9EC\t0x6FC7\n0xE9ED\t0x6FBC\n0xE9EE\t0x6FCE\n0xE9EF\t0x6FC8\n0xE9F0\t0x6F5E\n0xE9F1\t0x6FC4\n0xE9F2\t0x6FBD\n0xE9F3\t0x6F9E\n0xE9F4\t0x6FCA\n0xE9F5\t0x6FA8\n0xE9F6\t0x7004\n0xE9F7\t0x6FA5\n0xE9F8\t0x6FAE\n0xE9F9\t0x6FBA\n0xE9FA\t0x6FAC\n0xE9FB\t0x6FAA\n0xE9FC\t0x6FCF\n0xE9FD\t0x6FBF\n0xE9FE\t0x6FB8\n0xEA40\t0x6FA2\n0xEA41\t0x6FC9\n0xEA42\t0x6FAB\n0xEA43\t0x6FCD\n0xEA44\t0x6FAF\n0xEA45\t0x6FB2\n0xEA46\t0x6FB0\n0xEA47\t0x71C5\n0xEA48\t0x71C2\n0xEA49\t0x71BF\n0xEA4A\t0x71B8\n0xEA4B\t0x71D6\n0xEA4C\t0x71C0\n0xEA4D\t0x71C1\n0xEA4E\t0x71CB\n0xEA4F\t0x71D4\n0xEA50\t0x71CA\n0xEA51\t0x71C7\n0xEA52\t0x71CF\n0xEA53\t0x71BD\n0xEA54\t0x71D8\n0xEA55\t0x71BC\n0xEA56\t0x71C6\n0xEA57\t0x71DA\n0xEA58\t0x71DB\n0xEA59\t0x729D\n0xEA5A\t0x729E\n0xEA5B\t0x7369\n0xEA5C\t0x7366\n0xEA5D\t0x7367\n0xEA5E\t0x736C\n0xEA5F\t0x7365\n0xEA60\t0x736B\n0xEA61\t0x736A\n0xEA62\t0x747F\n0xEA63\t0x749A\n0xEA64\t0x74A0\n0xEA65\t0x7494\n0xEA66\t0x7492\n0xEA67\t0x7495\n0xEA68\t0x74A1\n0xEA69\t0x750B\n0xEA6A\t0x7580\n0xEA6B\t0x762F\n0xEA6C\t0x762D\n0xEA6D\t0x7631\n0xEA6E\t0x763D\n0xEA6F\t0x7633\n0xEA70\t0x763C\n0xEA71\t0x7635\n0xEA72\t0x7632\n0xEA73\t0x7630\n0xEA74\t0x76BB\n0xEA75\t0x76E6\n0xEA76\t0x779A\n0xEA77\t0x779D\n0xEA78\t0x77A1\n0xEA79\t0x779C\n0xEA7A\t0x779B\n0xEA7B\t0x77A2\n0xEA7C\t0x77A3\n0xEA7D\t0x7795\n0xEA7E\t0x7799\n0xEAA1\t0x7797\n0xEAA2\t0x78DD\n0xEAA3\t0x78E9\n0xEAA4\t0x78E5\n0xEAA5\t0x78EA\n0xEAA6\t0x78DE\n0xEAA7\t0x78E3\n0xEAA8\t0x78DB\n0xEAA9\t0x78E1\n0xEAAA\t0x78E2\n0xEAAB\t0x78ED\n0xEAAC\t0x78DF\n0xEAAD\t0x78E0\n0xEAAE\t0x79A4\n0xEAAF\t0x7A44\n0xEAB0\t0x7A48\n0xEAB1\t0x7A47\n0xEAB2\t0x7AB6\n0xEAB3\t0x7AB8\n0xEAB4\t0x7AB5\n0xEAB5\t0x7AB1\n0xEAB6\t0x7AB7\n0xEAB7\t0x7BDE\n0xEAB8\t0x7BE3\n0xEAB9\t0x7BE7\n0xEABA\t0x7BDD\n0xEABB\t0x7BD5\n0xEABC\t0x7BE5\n0xEABD\t0x7BDA\n0xEABE\t0x7BE8\n0xEABF\t0x7BF9\n0xEAC0\t0x7BD4\n0xEAC1\t0x7BEA\n0xEAC2\t0x7BE2\n0xEAC3\t0x7BDC\n0xEAC4\t0x7BEB\n0xEAC5\t0x7BD8\n0xEAC6\t0x7BDF\n0xEAC7\t0x7CD2\n0xEAC8\t0x7CD4\n0xEAC9\t0x7CD7\n0xEACA\t0x7CD0\n0xEACB\t0x7CD1\n0xEACC\t0x7E12\n0xEACD\t0x7E21\n0xEACE\t0x7E17\n0xEACF\t0x7E0C\n0xEAD0\t0x7E1F\n0xEAD1\t0x7E20\n0xEAD2\t0x7E13\n0xEAD3\t0x7E0E\n0xEAD4\t0x7E1C\n0xEAD5\t0x7E15\n0xEAD6\t0x7E1A\n0xEAD7\t0x7E22\n0xEAD8\t0x7E0B\n0xEAD9\t0x7E0F\n0xEADA\t0x7E16\n0xEADB\t0x7E0D\n0xEADC\t0x7E14\n0xEADD\t0x7E25\n0xEADE\t0x7E24\n0xEADF\t0x7F43\n0xEAE0\t0x7F7B\n0xEAE1\t0x7F7C\n0xEAE2\t0x7F7A\n0xEAE3\t0x7FB1\n0xEAE4\t0x7FEF\n0xEAE5\t0x802A\n0xEAE6\t0x8029\n0xEAE7\t0x806C\n0xEAE8\t0x81B1\n0xEAE9\t0x81A6\n0xEAEA\t0x81AE\n0xEAEB\t0x81B9\n0xEAEC\t0x81B5\n0xEAED\t0x81AB\n0xEAEE\t0x81B0\n0xEAEF\t0x81AC\n0xEAF0\t0x81B4\n0xEAF1\t0x81B2\n0xEAF2\t0x81B7\n0xEAF3\t0x81A7\n0xEAF4\t0x81F2\n0xEAF5\t0x8255\n0xEAF6\t0x8256\n0xEAF7\t0x8257\n0xEAF8\t0x8556\n0xEAF9\t0x8545\n0xEAFA\t0x856B\n0xEAFB\t0x854D\n0xEAFC\t0x8553\n0xEAFD\t0x8561\n0xEAFE\t0x8558\n0xEB40\t0x8540\n0xEB41\t0x8546\n0xEB42\t0x8564\n0xEB43\t0x8541\n0xEB44\t0x8562\n0xEB45\t0x8544\n0xEB46\t0x8551\n0xEB47\t0x8547\n0xEB48\t0x8563\n0xEB49\t0x853E\n0xEB4A\t0x855B\n0xEB4B\t0x8571\n0xEB4C\t0x854E\n0xEB4D\t0x856E\n0xEB4E\t0x8575\n0xEB4F\t0x8555\n0xEB50\t0x8567\n0xEB51\t0x8560\n0xEB52\t0x858C\n0xEB53\t0x8566\n0xEB54\t0x855D\n0xEB55\t0x8554\n0xEB56\t0x8565\n0xEB57\t0x856C\n0xEB58\t0x8663\n0xEB59\t0x8665\n0xEB5A\t0x8664\n0xEB5B\t0x879B\n0xEB5C\t0x878F\n0xEB5D\t0x8797\n0xEB5E\t0x8793\n0xEB5F\t0x8792\n0xEB60\t0x8788\n0xEB61\t0x8781\n0xEB62\t0x8796\n0xEB63\t0x8798\n0xEB64\t0x8779\n0xEB65\t0x8787\n0xEB66\t0x87A3\n0xEB67\t0x8785\n0xEB68\t0x8790\n0xEB69\t0x8791\n0xEB6A\t0x879D\n0xEB6B\t0x8784\n0xEB6C\t0x8794\n0xEB6D\t0x879C\n0xEB6E\t0x879A\n0xEB6F\t0x8789\n0xEB70\t0x891E\n0xEB71\t0x8926\n0xEB72\t0x8930\n0xEB73\t0x892D\n0xEB74\t0x892E\n0xEB75\t0x8927\n0xEB76\t0x8931\n0xEB77\t0x8922\n0xEB78\t0x8929\n0xEB79\t0x8923\n0xEB7A\t0x892F\n0xEB7B\t0x892C\n0xEB7C\t0x891F\n0xEB7D\t0x89F1\n0xEB7E\t0x8AE0\n0xEBA1\t0x8AE2\n0xEBA2\t0x8AF2\n0xEBA3\t0x8AF4\n0xEBA4\t0x8AF5\n0xEBA5\t0x8ADD\n0xEBA6\t0x8B14\n0xEBA7\t0x8AE4\n0xEBA8\t0x8ADF\n0xEBA9\t0x8AF0\n0xEBAA\t0x8AC8\n0xEBAB\t0x8ADE\n0xEBAC\t0x8AE1\n0xEBAD\t0x8AE8\n0xEBAE\t0x8AFF\n0xEBAF\t0x8AEF\n0xEBB0\t0x8AFB\n0xEBB1\t0x8C91\n0xEBB2\t0x8C92\n0xEBB3\t0x8C90\n0xEBB4\t0x8CF5\n0xEBB5\t0x8CEE\n0xEBB6\t0x8CF1\n0xEBB7\t0x8CF0\n0xEBB8\t0x8CF3\n0xEBB9\t0x8D6C\n0xEBBA\t0x8D6E\n0xEBBB\t0x8DA5\n0xEBBC\t0x8DA7\n0xEBBD\t0x8E33\n0xEBBE\t0x8E3E\n0xEBBF\t0x8E38\n0xEBC0\t0x8E40\n0xEBC1\t0x8E45\n0xEBC2\t0x8E36\n0xEBC3\t0x8E3C\n0xEBC4\t0x8E3D\n0xEBC5\t0x8E41\n0xEBC6\t0x8E30\n0xEBC7\t0x8E3F\n0xEBC8\t0x8EBD\n0xEBC9\t0x8F36\n0xEBCA\t0x8F2E\n0xEBCB\t0x8F35\n0xEBCC\t0x8F32\n0xEBCD\t0x8F39\n0xEBCE\t0x8F37\n0xEBCF\t0x8F34\n0xEBD0\t0x9076\n0xEBD1\t0x9079\n0xEBD2\t0x907B\n0xEBD3\t0x9086\n0xEBD4\t0x90FA\n0xEBD5\t0x9133\n0xEBD6\t0x9135\n0xEBD7\t0x9136\n0xEBD8\t0x9193\n0xEBD9\t0x9190\n0xEBDA\t0x9191\n0xEBDB\t0x918D\n0xEBDC\t0x918F\n0xEBDD\t0x9327\n0xEBDE\t0x931E\n0xEBDF\t0x9308\n0xEBE0\t0x931F\n0xEBE1\t0x9306\n0xEBE2\t0x930F\n0xEBE3\t0x937A\n0xEBE4\t0x9338\n0xEBE5\t0x933C\n0xEBE6\t0x931B\n0xEBE7\t0x9323\n0xEBE8\t0x9312\n0xEBE9\t0x9301\n0xEBEA\t0x9346\n0xEBEB\t0x932D\n0xEBEC\t0x930E\n0xEBED\t0x930D\n0xEBEE\t0x92CB\n0xEBEF\t0x931D\n0xEBF0\t0x92FA\n0xEBF1\t0x9325\n0xEBF2\t0x9313\n0xEBF3\t0x92F9\n0xEBF4\t0x92F7\n0xEBF5\t0x9334\n0xEBF6\t0x9302\n0xEBF7\t0x9324\n0xEBF8\t0x92FF\n0xEBF9\t0x9329\n0xEBFA\t0x9339\n0xEBFB\t0x9335\n0xEBFC\t0x932A\n0xEBFD\t0x9314\n0xEBFE\t0x930C\n0xEC40\t0x930B\n0xEC41\t0x92FE\n0xEC42\t0x9309\n0xEC43\t0x9300\n0xEC44\t0x92FB\n0xEC45\t0x9316\n0xEC46\t0x95BC\n0xEC47\t0x95CD\n0xEC48\t0x95BE\n0xEC49\t0x95B9\n0xEC4A\t0x95BA\n0xEC4B\t0x95B6\n0xEC4C\t0x95BF\n0xEC4D\t0x95B5\n0xEC4E\t0x95BD\n0xEC4F\t0x96A9\n0xEC50\t0x96D4\n0xEC51\t0x970B\n0xEC52\t0x9712\n0xEC53\t0x9710\n0xEC54\t0x9799\n0xEC55\t0x9797\n0xEC56\t0x9794\n0xEC57\t0x97F0\n0xEC58\t0x97F8\n0xEC59\t0x9835\n0xEC5A\t0x982F\n0xEC5B\t0x9832\n0xEC5C\t0x9924\n0xEC5D\t0x991F\n0xEC5E\t0x9927\n0xEC5F\t0x9929\n0xEC60\t0x999E\n0xEC61\t0x99EE\n0xEC62\t0x99EC\n0xEC63\t0x99E5\n0xEC64\t0x99E4\n0xEC65\t0x99F0\n0xEC66\t0x99E3\n0xEC67\t0x99EA\n0xEC68\t0x99E9\n0xEC69\t0x99E7\n0xEC6A\t0x9AB9\n0xEC6B\t0x9ABF\n0xEC6C\t0x9AB4\n0xEC6D\t0x9ABB\n0xEC6E\t0x9AF6\n0xEC6F\t0x9AFA\n0xEC70\t0x9AF9\n0xEC71\t0x9AF7\n0xEC72\t0x9B33\n0xEC73\t0x9B80\n0xEC74\t0x9B85\n0xEC75\t0x9B87\n0xEC76\t0x9B7C\n0xEC77\t0x9B7E\n0xEC78\t0x9B7B\n0xEC79\t0x9B82\n0xEC7A\t0x9B93\n0xEC7B\t0x9B92\n0xEC7C\t0x9B90\n0xEC7D\t0x9B7A\n0xEC7E\t0x9B95\n0xECA1\t0x9B7D\n0xECA2\t0x9B88\n0xECA3\t0x9D25\n0xECA4\t0x9D17\n0xECA5\t0x9D20\n0xECA6\t0x9D1E\n0xECA7\t0x9D14\n0xECA8\t0x9D29\n0xECA9\t0x9D1D\n0xECAA\t0x9D18\n0xECAB\t0x9D22\n0xECAC\t0x9D10\n0xECAD\t0x9D19\n0xECAE\t0x9D1F\n0xECAF\t0x9E88\n0xECB0\t0x9E86\n0xECB1\t0x9E87\n0xECB2\t0x9EAE\n0xECB3\t0x9EAD\n0xECB4\t0x9ED5\n0xECB5\t0x9ED6\n0xECB6\t0x9EFA\n0xECB7\t0x9F12\n0xECB8\t0x9F3D\n0xECB9\t0x5126\n0xECBA\t0x5125\n0xECBB\t0x5122\n0xECBC\t0x5124\n0xECBD\t0x5120\n0xECBE\t0x5129\n0xECBF\t0x52F4\n0xECC0\t0x5693\n0xECC1\t0x568C\n0xECC2\t0x568D\n0xECC3\t0x5686\n0xECC4\t0x5684\n0xECC5\t0x5683\n0xECC6\t0x567E\n0xECC7\t0x5682\n0xECC8\t0x567F\n0xECC9\t0x5681\n0xECCA\t0x58D6\n0xECCB\t0x58D4\n0xECCC\t0x58CF\n0xECCD\t0x58D2\n0xECCE\t0x5B2D\n0xECCF\t0x5B25\n0xECD0\t0x5B32\n0xECD1\t0x5B23\n0xECD2\t0x5B2C\n0xECD3\t0x5B27\n0xECD4\t0x5B26\n0xECD5\t0x5B2F\n0xECD6\t0x5B2E\n0xECD7\t0x5B7B\n0xECD8\t0x5BF1\n0xECD9\t0x5BF2\n0xECDA\t0x5DB7\n0xECDB\t0x5E6C\n0xECDC\t0x5E6A\n0xECDD\t0x5FBE\n0xECDE\t0x5FBB\n0xECDF\t0x61C3\n0xECE0\t0x61B5\n0xECE1\t0x61BC\n0xECE2\t0x61E7\n0xECE3\t0x61E0\n0xECE4\t0x61E5\n0xECE5\t0x61E4\n0xECE6\t0x61E8\n0xECE7\t0x61DE\n0xECE8\t0x64EF\n0xECE9\t0x64E9\n0xECEA\t0x64E3\n0xECEB\t0x64EB\n0xECEC\t0x64E4\n0xECED\t0x64E8\n0xECEE\t0x6581\n0xECEF\t0x6580\n0xECF0\t0x65B6\n0xECF1\t0x65DA\n0xECF2\t0x66D2\n0xECF3\t0x6A8D\n0xECF4\t0x6A96\n0xECF5\t0x6A81\n0xECF6\t0x6AA5\n0xECF7\t0x6A89\n0xECF8\t0x6A9F\n0xECF9\t0x6A9B\n0xECFA\t0x6AA1\n0xECFB\t0x6A9E\n0xECFC\t0x6A87\n0xECFD\t0x6A93\n0xECFE\t0x6A8E\n0xED40\t0x6A95\n0xED41\t0x6A83\n0xED42\t0x6AA8\n0xED43\t0x6AA4\n0xED44\t0x6A91\n0xED45\t0x6A7F\n0xED46\t0x6AA6\n0xED47\t0x6A9A\n0xED48\t0x6A85\n0xED49\t0x6A8C\n0xED4A\t0x6A92\n0xED4B\t0x6B5B\n0xED4C\t0x6BAD\n0xED4D\t0x6C09\n0xED4E\t0x6FCC\n0xED4F\t0x6FA9\n0xED50\t0x6FF4\n0xED51\t0x6FD4\n0xED52\t0x6FE3\n0xED53\t0x6FDC\n0xED54\t0x6FED\n0xED55\t0x6FE7\n0xED56\t0x6FE6\n0xED57\t0x6FDE\n0xED58\t0x6FF2\n0xED59\t0x6FDD\n0xED5A\t0x6FE2\n0xED5B\t0x6FE8\n0xED5C\t0x71E1\n0xED5D\t0x71F1\n0xED5E\t0x71E8\n0xED5F\t0x71F2\n0xED60\t0x71E4\n0xED61\t0x71F0\n0xED62\t0x71E2\n0xED63\t0x7373\n0xED64\t0x736E\n0xED65\t0x736F\n0xED66\t0x7497\n0xED67\t0x74B2\n0xED68\t0x74AB\n0xED69\t0x7490\n0xED6A\t0x74AA\n0xED6B\t0x74AD\n0xED6C\t0x74B1\n0xED6D\t0x74A5\n0xED6E\t0x74AF\n0xED6F\t0x7510\n0xED70\t0x7511\n0xED71\t0x7512\n0xED72\t0x750F\n0xED73\t0x7584\n0xED74\t0x7643\n0xED75\t0x7648\n0xED76\t0x7649\n0xED77\t0x7647\n0xED78\t0x76A4\n0xED79\t0x76E9\n0xED7A\t0x77B5\n0xED7B\t0x77AB\n0xED7C\t0x77B2\n0xED7D\t0x77B7\n0xED7E\t0x77B6\n0xEDA1\t0x77B4\n0xEDA2\t0x77B1\n0xEDA3\t0x77A8\n0xEDA4\t0x77F0\n0xEDA5\t0x78F3\n0xEDA6\t0x78FD\n0xEDA7\t0x7902\n0xEDA8\t0x78FB\n0xEDA9\t0x78FC\n0xEDAA\t0x78F2\n0xEDAB\t0x7905\n0xEDAC\t0x78F9\n0xEDAD\t0x78FE\n0xEDAE\t0x7904\n0xEDAF\t0x79AB\n0xEDB0\t0x79A8\n0xEDB1\t0x7A5C\n0xEDB2\t0x7A5B\n0xEDB3\t0x7A56\n0xEDB4\t0x7A58\n0xEDB5\t0x7A54\n0xEDB6\t0x7A5A\n0xEDB7\t0x7ABE\n0xEDB8\t0x7AC0\n0xEDB9\t0x7AC1\n0xEDBA\t0x7C05\n0xEDBB\t0x7C0F\n0xEDBC\t0x7BF2\n0xEDBD\t0x7C00\n0xEDBE\t0x7BFF\n0xEDBF\t0x7BFB\n0xEDC0\t0x7C0E\n0xEDC1\t0x7BF4\n0xEDC2\t0x7C0B\n0xEDC3\t0x7BF3\n0xEDC4\t0x7C02\n0xEDC5\t0x7C09\n0xEDC6\t0x7C03\n0xEDC7\t0x7C01\n0xEDC8\t0x7BF8\n0xEDC9\t0x7BFD\n0xEDCA\t0x7C06\n0xEDCB\t0x7BF0\n0xEDCC\t0x7BF1\n0xEDCD\t0x7C10\n0xEDCE\t0x7C0A\n0xEDCF\t0x7CE8\n0xEDD0\t0x7E2D\n0xEDD1\t0x7E3C\n0xEDD2\t0x7E42\n0xEDD3\t0x7E33\n0xEDD4\t0x9848\n0xEDD5\t0x7E38\n0xEDD6\t0x7E2A\n0xEDD7\t0x7E49\n0xEDD8\t0x7E40\n0xEDD9\t0x7E47\n0xEDDA\t0x7E29\n0xEDDB\t0x7E4C\n0xEDDC\t0x7E30\n0xEDDD\t0x7E3B\n0xEDDE\t0x7E36\n0xEDDF\t0x7E44\n0xEDE0\t0x7E3A\n0xEDE1\t0x7F45\n0xEDE2\t0x7F7F\n0xEDE3\t0x7F7E\n0xEDE4\t0x7F7D\n0xEDE5\t0x7FF4\n0xEDE6\t0x7FF2\n0xEDE7\t0x802C\n0xEDE8\t0x81BB\n0xEDE9\t0x81C4\n0xEDEA\t0x81CC\n0xEDEB\t0x81CA\n0xEDEC\t0x81C5\n0xEDED\t0x81C7\n0xEDEE\t0x81BC\n0xEDEF\t0x81E9\n0xEDF0\t0x825B\n0xEDF1\t0x825A\n0xEDF2\t0x825C\n0xEDF3\t0x8583\n0xEDF4\t0x8580\n0xEDF5\t0x858F\n0xEDF6\t0x85A7\n0xEDF7\t0x8595\n0xEDF8\t0x85A0\n0xEDF9\t0x858B\n0xEDFA\t0x85A3\n0xEDFB\t0x857B\n0xEDFC\t0x85A4\n0xEDFD\t0x859A\n0xEDFE\t0x859E\n0xEE40\t0x8577\n0xEE41\t0x857C\n0xEE42\t0x8589\n0xEE43\t0x85A1\n0xEE44\t0x857A\n0xEE45\t0x8578\n0xEE46\t0x8557\n0xEE47\t0x858E\n0xEE48\t0x8596\n0xEE49\t0x8586\n0xEE4A\t0x858D\n0xEE4B\t0x8599\n0xEE4C\t0x859D\n0xEE4D\t0x8581\n0xEE4E\t0x85A2\n0xEE4F\t0x8582\n0xEE50\t0x8588\n0xEE51\t0x8585\n0xEE52\t0x8579\n0xEE53\t0x8576\n0xEE54\t0x8598\n0xEE55\t0x8590\n0xEE56\t0x859F\n0xEE57\t0x8668\n0xEE58\t0x87BE\n0xEE59\t0x87AA\n0xEE5A\t0x87AD\n0xEE5B\t0x87C5\n0xEE5C\t0x87B0\n0xEE5D\t0x87AC\n0xEE5E\t0x87B9\n0xEE5F\t0x87B5\n0xEE60\t0x87BC\n0xEE61\t0x87AE\n0xEE62\t0x87C9\n0xEE63\t0x87C3\n0xEE64\t0x87C2\n0xEE65\t0x87CC\n0xEE66\t0x87B7\n0xEE67\t0x87AF\n0xEE68\t0x87C4\n0xEE69\t0x87CA\n0xEE6A\t0x87B4\n0xEE6B\t0x87B6\n0xEE6C\t0x87BF\n0xEE6D\t0x87B8\n0xEE6E\t0x87BD\n0xEE6F\t0x87DE\n0xEE70\t0x87B2\n0xEE71\t0x8935\n0xEE72\t0x8933\n0xEE73\t0x893C\n0xEE74\t0x893E\n0xEE75\t0x8941\n0xEE76\t0x8952\n0xEE77\t0x8937\n0xEE78\t0x8942\n0xEE79\t0x89AD\n0xEE7A\t0x89AF\n0xEE7B\t0x89AE\n0xEE7C\t0x89F2\n0xEE7D\t0x89F3\n0xEE7E\t0x8B1E\n0xEEA1\t0x8B18\n0xEEA2\t0x8B16\n0xEEA3\t0x8B11\n0xEEA4\t0x8B05\n0xEEA5\t0x8B0B\n0xEEA6\t0x8B22\n0xEEA7\t0x8B0F\n0xEEA8\t0x8B12\n0xEEA9\t0x8B15\n0xEEAA\t0x8B07\n0xEEAB\t0x8B0D\n0xEEAC\t0x8B08\n0xEEAD\t0x8B06\n0xEEAE\t0x8B1C\n0xEEAF\t0x8B13\n0xEEB0\t0x8B1A\n0xEEB1\t0x8C4F\n0xEEB2\t0x8C70\n0xEEB3\t0x8C72\n0xEEB4\t0x8C71\n0xEEB5\t0x8C6F\n0xEEB6\t0x8C95\n0xEEB7\t0x8C94\n0xEEB8\t0x8CF9\n0xEEB9\t0x8D6F\n0xEEBA\t0x8E4E\n0xEEBB\t0x8E4D\n0xEEBC\t0x8E53\n0xEEBD\t0x8E50\n0xEEBE\t0x8E4C\n0xEEBF\t0x8E47\n0xEEC0\t0x8F43\n0xEEC1\t0x8F40\n0xEEC2\t0x9085\n0xEEC3\t0x907E\n0xEEC4\t0x9138\n0xEEC5\t0x919A\n0xEEC6\t0x91A2\n0xEEC7\t0x919B\n0xEEC8\t0x9199\n0xEEC9\t0x919F\n0xEECA\t0x91A1\n0xEECB\t0x919D\n0xEECC\t0x91A0\n0xEECD\t0x93A1\n0xEECE\t0x9383\n0xEECF\t0x93AF\n0xEED0\t0x9364\n0xEED1\t0x9356\n0xEED2\t0x9347\n0xEED3\t0x937C\n0xEED4\t0x9358\n0xEED5\t0x935C\n0xEED6\t0x9376\n0xEED7\t0x9349\n0xEED8\t0x9350\n0xEED9\t0x9351\n0xEEDA\t0x9360\n0xEEDB\t0x936D\n0xEEDC\t0x938F\n0xEEDD\t0x934C\n0xEEDE\t0x936A\n0xEEDF\t0x9379\n0xEEE0\t0x9357\n0xEEE1\t0x9355\n0xEEE2\t0x9352\n0xEEE3\t0x934F\n0xEEE4\t0x9371\n0xEEE5\t0x9377\n0xEEE6\t0x937B\n0xEEE7\t0x9361\n0xEEE8\t0x935E\n0xEEE9\t0x9363\n0xEEEA\t0x9367\n0xEEEB\t0x9380\n0xEEEC\t0x934E\n0xEEED\t0x9359\n0xEEEE\t0x95C7\n0xEEEF\t0x95C0\n0xEEF0\t0x95C9\n0xEEF1\t0x95C3\n0xEEF2\t0x95C5\n0xEEF3\t0x95B7\n0xEEF4\t0x96AE\n0xEEF5\t0x96B0\n0xEEF6\t0x96AC\n0xEEF7\t0x9720\n0xEEF8\t0x971F\n0xEEF9\t0x9718\n0xEEFA\t0x971D\n0xEEFB\t0x9719\n0xEEFC\t0x979A\n0xEEFD\t0x97A1\n0xEEFE\t0x979C\n0xEF40\t0x979E\n0xEF41\t0x979D\n0xEF42\t0x97D5\n0xEF43\t0x97D4\n0xEF44\t0x97F1\n0xEF45\t0x9841\n0xEF46\t0x9844\n0xEF47\t0x984A\n0xEF48\t0x9849\n0xEF49\t0x9845\n0xEF4A\t0x9843\n0xEF4B\t0x9925\n0xEF4C\t0x992B\n0xEF4D\t0x992C\n0xEF4E\t0x992A\n0xEF4F\t0x9933\n0xEF50\t0x9932\n0xEF51\t0x992F\n0xEF52\t0x992D\n0xEF53\t0x9931\n0xEF54\t0x9930\n0xEF55\t0x9998\n0xEF56\t0x99A3\n0xEF57\t0x99A1\n0xEF58\t0x9A02\n0xEF59\t0x99FA\n0xEF5A\t0x99F4\n0xEF5B\t0x99F7\n0xEF5C\t0x99F9\n0xEF5D\t0x99F8\n0xEF5E\t0x99F6\n0xEF5F\t0x99FB\n0xEF60\t0x99FD\n0xEF61\t0x99FE\n0xEF62\t0x99FC\n0xEF63\t0x9A03\n0xEF64\t0x9ABE\n0xEF65\t0x9AFE\n0xEF66\t0x9AFD\n0xEF67\t0x9B01\n0xEF68\t0x9AFC\n0xEF69\t0x9B48\n0xEF6A\t0x9B9A\n0xEF6B\t0x9BA8\n0xEF6C\t0x9B9E\n0xEF6D\t0x9B9B\n0xEF6E\t0x9BA6\n0xEF6F\t0x9BA1\n0xEF70\t0x9BA5\n0xEF71\t0x9BA4\n0xEF72\t0x9B86\n0xEF73\t0x9BA2\n0xEF74\t0x9BA0\n0xEF75\t0x9BAF\n0xEF76\t0x9D33\n0xEF77\t0x9D41\n0xEF78\t0x9D67\n0xEF79\t0x9D36\n0xEF7A\t0x9D2E\n0xEF7B\t0x9D2F\n0xEF7C\t0x9D31\n0xEF7D\t0x9D38\n0xEF7E\t0x9D30\n0xEFA1\t0x9D45\n0xEFA2\t0x9D42\n0xEFA3\t0x9D43\n0xEFA4\t0x9D3E\n0xEFA5\t0x9D37\n0xEFA6\t0x9D40\n0xEFA7\t0x9D3D\n0xEFA8\t0x7FF5\n0xEFA9\t0x9D2D\n0xEFAA\t0x9E8A\n0xEFAB\t0x9E89\n0xEFAC\t0x9E8D\n0xEFAD\t0x9EB0\n0xEFAE\t0x9EC8\n0xEFAF\t0x9EDA\n0xEFB0\t0x9EFB\n0xEFB1\t0x9EFF\n0xEFB2\t0x9F24\n0xEFB3\t0x9F23\n0xEFB4\t0x9F22\n0xEFB5\t0x9F54\n0xEFB6\t0x9FA0\n0xEFB7\t0x5131\n0xEFB8\t0x512D\n0xEFB9\t0x512E\n0xEFBA\t0x5698\n0xEFBB\t0x569C\n0xEFBC\t0x5697\n0xEFBD\t0x569A\n0xEFBE\t0x569D\n0xEFBF\t0x5699\n0xEFC0\t0x5970\n0xEFC1\t0x5B3C\n0xEFC2\t0x5C69\n0xEFC3\t0x5C6A\n0xEFC4\t0x5DC0\n0xEFC5\t0x5E6D\n0xEFC6\t0x5E6E\n0xEFC7\t0x61D8\n0xEFC8\t0x61DF\n0xEFC9\t0x61ED\n0xEFCA\t0x61EE\n0xEFCB\t0x61F1\n0xEFCC\t0x61EA\n0xEFCD\t0x61F0\n0xEFCE\t0x61EB\n0xEFCF\t0x61D6\n0xEFD0\t0x61E9\n0xEFD1\t0x64FF\n0xEFD2\t0x6504\n0xEFD3\t0x64FD\n0xEFD4\t0x64F8\n0xEFD5\t0x6501\n0xEFD6\t0x6503\n0xEFD7\t0x64FC\n0xEFD8\t0x6594\n0xEFD9\t0x65DB\n0xEFDA\t0x66DA\n0xEFDB\t0x66DB\n0xEFDC\t0x66D8\n0xEFDD\t0x6AC5\n0xEFDE\t0x6AB9\n0xEFDF\t0x6ABD\n0xEFE0\t0x6AE1\n0xEFE1\t0x6AC6\n0xEFE2\t0x6ABA\n0xEFE3\t0x6AB6\n0xEFE4\t0x6AB7\n0xEFE5\t0x6AC7\n0xEFE6\t0x6AB4\n0xEFE7\t0x6AAD\n0xEFE8\t0x6B5E\n0xEFE9\t0x6BC9\n0xEFEA\t0x6C0B\n0xEFEB\t0x7007\n0xEFEC\t0x700C\n0xEFED\t0x700D\n0xEFEE\t0x7001\n0xEFEF\t0x7005\n0xEFF0\t0x7014\n0xEFF1\t0x700E\n0xEFF2\t0x6FFF\n0xEFF3\t0x7000\n0xEFF4\t0x6FFB\n0xEFF5\t0x7026\n0xEFF6\t0x6FFC\n0xEFF7\t0x6FF7\n0xEFF8\t0x700A\n0xEFF9\t0x7201\n0xEFFA\t0x71FF\n0xEFFB\t0x71F9\n0xEFFC\t0x7203\n0xEFFD\t0x71FD\n0xEFFE\t0x7376\n0xF040\t0x74B8\n0xF041\t0x74C0\n0xF042\t0x74B5\n0xF043\t0x74C1\n0xF044\t0x74BE\n0xF045\t0x74B6\n0xF046\t0x74BB\n0xF047\t0x74C2\n0xF048\t0x7514\n0xF049\t0x7513\n0xF04A\t0x765C\n0xF04B\t0x7664\n0xF04C\t0x7659\n0xF04D\t0x7650\n0xF04E\t0x7653\n0xF04F\t0x7657\n0xF050\t0x765A\n0xF051\t0x76A6\n0xF052\t0x76BD\n0xF053\t0x76EC\n0xF054\t0x77C2\n0xF055\t0x77BA\n0xF056\t0x78FF\n0xF057\t0x790C\n0xF058\t0x7913\n0xF059\t0x7914\n0xF05A\t0x7909\n0xF05B\t0x7910\n0xF05C\t0x7912\n0xF05D\t0x7911\n0xF05E\t0x79AD\n0xF05F\t0x79AC\n0xF060\t0x7A5F\n0xF061\t0x7C1C\n0xF062\t0x7C29\n0xF063\t0x7C19\n0xF064\t0x7C20\n0xF065\t0x7C1F\n0xF066\t0x7C2D\n0xF067\t0x7C1D\n0xF068\t0x7C26\n0xF069\t0x7C28\n0xF06A\t0x7C22\n0xF06B\t0x7C25\n0xF06C\t0x7C30\n0xF06D\t0x7E5C\n0xF06E\t0x7E50\n0xF06F\t0x7E56\n0xF070\t0x7E63\n0xF071\t0x7E58\n0xF072\t0x7E62\n0xF073\t0x7E5F\n0xF074\t0x7E51\n0xF075\t0x7E60\n0xF076\t0x7E57\n0xF077\t0x7E53\n0xF078\t0x7FB5\n0xF079\t0x7FB3\n0xF07A\t0x7FF7\n0xF07B\t0x7FF8\n0xF07C\t0x8075\n0xF07D\t0x81D1\n0xF07E\t0x81D2\n0xF0A1\t0x81D0\n0xF0A2\t0x825F\n0xF0A3\t0x825E\n0xF0A4\t0x85B4\n0xF0A5\t0x85C6\n0xF0A6\t0x85C0\n0xF0A7\t0x85C3\n0xF0A8\t0x85C2\n0xF0A9\t0x85B3\n0xF0AA\t0x85B5\n0xF0AB\t0x85BD\n0xF0AC\t0x85C7\n0xF0AD\t0x85C4\n0xF0AE\t0x85BF\n0xF0AF\t0x85CB\n0xF0B0\t0x85CE\n0xF0B1\t0x85C8\n0xF0B2\t0x85C5\n0xF0B3\t0x85B1\n0xF0B4\t0x85B6\n0xF0B5\t0x85D2\n0xF0B6\t0x8624\n0xF0B7\t0x85B8\n0xF0B8\t0x85B7\n0xF0B9\t0x85BE\n0xF0BA\t0x8669\n0xF0BB\t0x87E7\n0xF0BC\t0x87E6\n0xF0BD\t0x87E2\n0xF0BE\t0x87DB\n0xF0BF\t0x87EB\n0xF0C0\t0x87EA\n0xF0C1\t0x87E5\n0xF0C2\t0x87DF\n0xF0C3\t0x87F3\n0xF0C4\t0x87E4\n0xF0C5\t0x87D4\n0xF0C6\t0x87DC\n0xF0C7\t0x87D3\n0xF0C8\t0x87ED\n0xF0C9\t0x87D8\n0xF0CA\t0x87E3\n0xF0CB\t0x87A4\n0xF0CC\t0x87D7\n0xF0CD\t0x87D9\n0xF0CE\t0x8801\n0xF0CF\t0x87F4\n0xF0D0\t0x87E8\n0xF0D1\t0x87DD\n0xF0D2\t0x8953\n0xF0D3\t0x894B\n0xF0D4\t0x894F\n0xF0D5\t0x894C\n0xF0D6\t0x8946\n0xF0D7\t0x8950\n0xF0D8\t0x8951\n0xF0D9\t0x8949\n0xF0DA\t0x8B2A\n0xF0DB\t0x8B27\n0xF0DC\t0x8B23\n0xF0DD\t0x8B33\n0xF0DE\t0x8B30\n0xF0DF\t0x8B35\n0xF0E0\t0x8B47\n0xF0E1\t0x8B2F\n0xF0E2\t0x8B3C\n0xF0E3\t0x8B3E\n0xF0E4\t0x8B31\n0xF0E5\t0x8B25\n0xF0E6\t0x8B37\n0xF0E7\t0x8B26\n0xF0E8\t0x8B36\n0xF0E9\t0x8B2E\n0xF0EA\t0x8B24\n0xF0EB\t0x8B3B\n0xF0EC\t0x8B3D\n0xF0ED\t0x8B3A\n0xF0EE\t0x8C42\n0xF0EF\t0x8C75\n0xF0F0\t0x8C99\n0xF0F1\t0x8C98\n0xF0F2\t0x8C97\n0xF0F3\t0x8CFE\n0xF0F4\t0x8D04\n0xF0F5\t0x8D02\n0xF0F6\t0x8D00\n0xF0F7\t0x8E5C\n0xF0F8\t0x8E62\n0xF0F9\t0x8E60\n0xF0FA\t0x8E57\n0xF0FB\t0x8E56\n0xF0FC\t0x8E5E\n0xF0FD\t0x8E65\n0xF0FE\t0x8E67\n0xF140\t0x8E5B\n0xF141\t0x8E5A\n0xF142\t0x8E61\n0xF143\t0x8E5D\n0xF144\t0x8E69\n0xF145\t0x8E54\n0xF146\t0x8F46\n0xF147\t0x8F47\n0xF148\t0x8F48\n0xF149\t0x8F4B\n0xF14A\t0x9128\n0xF14B\t0x913A\n0xF14C\t0x913B\n0xF14D\t0x913E\n0xF14E\t0x91A8\n0xF14F\t0x91A5\n0xF150\t0x91A7\n0xF151\t0x91AF\n0xF152\t0x91AA\n0xF153\t0x93B5\n0xF154\t0x938C\n0xF155\t0x9392\n0xF156\t0x93B7\n0xF157\t0x939B\n0xF158\t0x939D\n0xF159\t0x9389\n0xF15A\t0x93A7\n0xF15B\t0x938E\n0xF15C\t0x93AA\n0xF15D\t0x939E\n0xF15E\t0x93A6\n0xF15F\t0x9395\n0xF160\t0x9388\n0xF161\t0x9399\n0xF162\t0x939F\n0xF163\t0x938D\n0xF164\t0x93B1\n0xF165\t0x9391\n0xF166\t0x93B2\n0xF167\t0x93A4\n0xF168\t0x93A8\n0xF169\t0x93B4\n0xF16A\t0x93A3\n0xF16B\t0x93A5\n0xF16C\t0x95D2\n0xF16D\t0x95D3\n0xF16E\t0x95D1\n0xF16F\t0x96B3\n0xF170\t0x96D7\n0xF171\t0x96DA\n0xF172\t0x5DC2\n0xF173\t0x96DF\n0xF174\t0x96D8\n0xF175\t0x96DD\n0xF176\t0x9723\n0xF177\t0x9722\n0xF178\t0x9725\n0xF179\t0x97AC\n0xF17A\t0x97AE\n0xF17B\t0x97A8\n0xF17C\t0x97AB\n0xF17D\t0x97A4\n0xF17E\t0x97AA\n0xF1A1\t0x97A2\n0xF1A2\t0x97A5\n0xF1A3\t0x97D7\n0xF1A4\t0x97D9\n0xF1A5\t0x97D6\n0xF1A6\t0x97D8\n0xF1A7\t0x97FA\n0xF1A8\t0x9850\n0xF1A9\t0x9851\n0xF1AA\t0x9852\n0xF1AB\t0x98B8\n0xF1AC\t0x9941\n0xF1AD\t0x993C\n0xF1AE\t0x993A\n0xF1AF\t0x9A0F\n0xF1B0\t0x9A0B\n0xF1B1\t0x9A09\n0xF1B2\t0x9A0D\n0xF1B3\t0x9A04\n0xF1B4\t0x9A11\n0xF1B5\t0x9A0A\n0xF1B6\t0x9A05\n0xF1B7\t0x9A07\n0xF1B8\t0x9A06\n0xF1B9\t0x9AC0\n0xF1BA\t0x9ADC\n0xF1BB\t0x9B08\n0xF1BC\t0x9B04\n0xF1BD\t0x9B05\n0xF1BE\t0x9B29\n0xF1BF\t0x9B35\n0xF1C0\t0x9B4A\n0xF1C1\t0x9B4C\n0xF1C2\t0x9B4B\n0xF1C3\t0x9BC7\n0xF1C4\t0x9BC6\n0xF1C5\t0x9BC3\n0xF1C6\t0x9BBF\n0xF1C7\t0x9BC1\n0xF1C8\t0x9BB5\n0xF1C9\t0x9BB8\n0xF1CA\t0x9BD3\n0xF1CB\t0x9BB6\n0xF1CC\t0x9BC4\n0xF1CD\t0x9BB9\n0xF1CE\t0x9BBD\n0xF1CF\t0x9D5C\n0xF1D0\t0x9D53\n0xF1D1\t0x9D4F\n0xF1D2\t0x9D4A\n0xF1D3\t0x9D5B\n0xF1D4\t0x9D4B\n0xF1D5\t0x9D59\n0xF1D6\t0x9D56\n0xF1D7\t0x9D4C\n0xF1D8\t0x9D57\n0xF1D9\t0x9D52\n0xF1DA\t0x9D54\n0xF1DB\t0x9D5F\n0xF1DC\t0x9D58\n0xF1DD\t0x9D5A\n0xF1DE\t0x9E8E\n0xF1DF\t0x9E8C\n0xF1E0\t0x9EDF\n0xF1E1\t0x9F01\n0xF1E2\t0x9F00\n0xF1E3\t0x9F16\n0xF1E4\t0x9F25\n0xF1E5\t0x9F2B\n0xF1E6\t0x9F2A\n0xF1E7\t0x9F29\n0xF1E8\t0x9F28\n0xF1E9\t0x9F4C\n0xF1EA\t0x9F55\n0xF1EB\t0x5134\n0xF1EC\t0x5135\n0xF1ED\t0x5296\n0xF1EE\t0x52F7\n0xF1EF\t0x53B4\n0xF1F0\t0x56AB\n0xF1F1\t0x56AD\n0xF1F2\t0x56A6\n0xF1F3\t0x56A7\n0xF1F4\t0x56AA\n0xF1F5\t0x56AC\n0xF1F6\t0x58DA\n0xF1F7\t0x58DD\n0xF1F8\t0x58DB\n0xF1F9\t0x5912\n0xF1FA\t0x5B3D\n0xF1FB\t0x5B3E\n0xF1FC\t0x5B3F\n0xF1FD\t0x5DC3\n0xF1FE\t0x5E70\n0xF240\t0x5FBF\n0xF241\t0x61FB\n0xF242\t0x6507\n0xF243\t0x6510\n0xF244\t0x650D\n0xF245\t0x6509\n0xF246\t0x650C\n0xF247\t0x650E\n0xF248\t0x6584\n0xF249\t0x65DE\n0xF24A\t0x65DD\n0xF24B\t0x66DE\n0xF24C\t0x6AE7\n0xF24D\t0x6AE0\n0xF24E\t0x6ACC\n0xF24F\t0x6AD1\n0xF250\t0x6AD9\n0xF251\t0x6ACB\n0xF252\t0x6ADF\n0xF253\t0x6ADC\n0xF254\t0x6AD0\n0xF255\t0x6AEB\n0xF256\t0x6ACF\n0xF257\t0x6ACD\n0xF258\t0x6ADE\n0xF259\t0x6B60\n0xF25A\t0x6BB0\n0xF25B\t0x6C0C\n0xF25C\t0x7019\n0xF25D\t0x7027\n0xF25E\t0x7020\n0xF25F\t0x7016\n0xF260\t0x702B\n0xF261\t0x7021\n0xF262\t0x7022\n0xF263\t0x7023\n0xF264\t0x7029\n0xF265\t0x7017\n0xF266\t0x7024\n0xF267\t0x701C\n0xF268\t0x702A\n0xF269\t0x720C\n0xF26A\t0x720A\n0xF26B\t0x7207\n0xF26C\t0x7202\n0xF26D\t0x7205\n0xF26E\t0x72A5\n0xF26F\t0x72A6\n0xF270\t0x72A4\n0xF271\t0x72A3\n0xF272\t0x72A1\n0xF273\t0x74CB\n0xF274\t0x74C5\n0xF275\t0x74B7\n0xF276\t0x74C3\n0xF277\t0x7516\n0xF278\t0x7660\n0xF279\t0x77C9\n0xF27A\t0x77CA\n0xF27B\t0x77C4\n0xF27C\t0x77F1\n0xF27D\t0x791D\n0xF27E\t0x791B\n0xF2A1\t0x7921\n0xF2A2\t0x791C\n0xF2A3\t0x7917\n0xF2A4\t0x791E\n0xF2A5\t0x79B0\n0xF2A6\t0x7A67\n0xF2A7\t0x7A68\n0xF2A8\t0x7C33\n0xF2A9\t0x7C3C\n0xF2AA\t0x7C39\n0xF2AB\t0x7C2C\n0xF2AC\t0x7C3B\n0xF2AD\t0x7CEC\n0xF2AE\t0x7CEA\n0xF2AF\t0x7E76\n0xF2B0\t0x7E75\n0xF2B1\t0x7E78\n0xF2B2\t0x7E70\n0xF2B3\t0x7E77\n0xF2B4\t0x7E6F\n0xF2B5\t0x7E7A\n0xF2B6\t0x7E72\n0xF2B7\t0x7E74\n0xF2B8\t0x7E68\n0xF2B9\t0x7F4B\n0xF2BA\t0x7F4A\n0xF2BB\t0x7F83\n0xF2BC\t0x7F86\n0xF2BD\t0x7FB7\n0xF2BE\t0x7FFD\n0xF2BF\t0x7FFE\n0xF2C0\t0x8078\n0xF2C1\t0x81D7\n0xF2C2\t0x81D5\n0xF2C3\t0x8264\n0xF2C4\t0x8261\n0xF2C5\t0x8263\n0xF2C6\t0x85EB\n0xF2C7\t0x85F1\n0xF2C8\t0x85ED\n0xF2C9\t0x85D9\n0xF2CA\t0x85E1\n0xF2CB\t0x85E8\n0xF2CC\t0x85DA\n0xF2CD\t0x85D7\n0xF2CE\t0x85EC\n0xF2CF\t0x85F2\n0xF2D0\t0x85F8\n0xF2D1\t0x85D8\n0xF2D2\t0x85DF\n0xF2D3\t0x85E3\n0xF2D4\t0x85DC\n0xF2D5\t0x85D1\n0xF2D6\t0x85F0\n0xF2D7\t0x85E6\n0xF2D8\t0x85EF\n0xF2D9\t0x85DE\n0xF2DA\t0x85E2\n0xF2DB\t0x8800\n0xF2DC\t0x87FA\n0xF2DD\t0x8803\n0xF2DE\t0x87F6\n0xF2DF\t0x87F7\n0xF2E0\t0x8809\n0xF2E1\t0x880C\n0xF2E2\t0x880B\n0xF2E3\t0x8806\n0xF2E4\t0x87FC\n0xF2E5\t0x8808\n0xF2E6\t0x87FF\n0xF2E7\t0x880A\n0xF2E8\t0x8802\n0xF2E9\t0x8962\n0xF2EA\t0x895A\n0xF2EB\t0x895B\n0xF2EC\t0x8957\n0xF2ED\t0x8961\n0xF2EE\t0x895C\n0xF2EF\t0x8958\n0xF2F0\t0x895D\n0xF2F1\t0x8959\n0xF2F2\t0x8988\n0xF2F3\t0x89B7\n0xF2F4\t0x89B6\n0xF2F5\t0x89F6\n0xF2F6\t0x8B50\n0xF2F7\t0x8B48\n0xF2F8\t0x8B4A\n0xF2F9\t0x8B40\n0xF2FA\t0x8B53\n0xF2FB\t0x8B56\n0xF2FC\t0x8B54\n0xF2FD\t0x8B4B\n0xF2FE\t0x8B55\n0xF340\t0x8B51\n0xF341\t0x8B42\n0xF342\t0x8B52\n0xF343\t0x8B57\n0xF344\t0x8C43\n0xF345\t0x8C77\n0xF346\t0x8C76\n0xF347\t0x8C9A\n0xF348\t0x8D06\n0xF349\t0x8D07\n0xF34A\t0x8D09\n0xF34B\t0x8DAC\n0xF34C\t0x8DAA\n0xF34D\t0x8DAD\n0xF34E\t0x8DAB\n0xF34F\t0x8E6D\n0xF350\t0x8E78\n0xF351\t0x8E73\n0xF352\t0x8E6A\n0xF353\t0x8E6F\n0xF354\t0x8E7B\n0xF355\t0x8EC2\n0xF356\t0x8F52\n0xF357\t0x8F51\n0xF358\t0x8F4F\n0xF359\t0x8F50\n0xF35A\t0x8F53\n0xF35B\t0x8FB4\n0xF35C\t0x9140\n0xF35D\t0x913F\n0xF35E\t0x91B0\n0xF35F\t0x91AD\n0xF360\t0x93DE\n0xF361\t0x93C7\n0xF362\t0x93CF\n0xF363\t0x93C2\n0xF364\t0x93DA\n0xF365\t0x93D0\n0xF366\t0x93F9\n0xF367\t0x93EC\n0xF368\t0x93CC\n0xF369\t0x93D9\n0xF36A\t0x93A9\n0xF36B\t0x93E6\n0xF36C\t0x93CA\n0xF36D\t0x93D4\n0xF36E\t0x93EE\n0xF36F\t0x93E3\n0xF370\t0x93D5\n0xF371\t0x93C4\n0xF372\t0x93CE\n0xF373\t0x93C0\n0xF374\t0x93D2\n0xF375\t0x93E7\n0xF376\t0x957D\n0xF377\t0x95DA\n0xF378\t0x95DB\n0xF379\t0x96E1\n0xF37A\t0x9729\n0xF37B\t0x972B\n0xF37C\t0x972C\n0xF37D\t0x9728\n0xF37E\t0x9726\n0xF3A1\t0x97B3\n0xF3A2\t0x97B7\n0xF3A3\t0x97B6\n0xF3A4\t0x97DD\n0xF3A5\t0x97DE\n0xF3A6\t0x97DF\n0xF3A7\t0x985C\n0xF3A8\t0x9859\n0xF3A9\t0x985D\n0xF3AA\t0x9857\n0xF3AB\t0x98BF\n0xF3AC\t0x98BD\n0xF3AD\t0x98BB\n0xF3AE\t0x98BE\n0xF3AF\t0x9948\n0xF3B0\t0x9947\n0xF3B1\t0x9943\n0xF3B2\t0x99A6\n0xF3B3\t0x99A7\n0xF3B4\t0x9A1A\n0xF3B5\t0x9A15\n0xF3B6\t0x9A25\n0xF3B7\t0x9A1D\n0xF3B8\t0x9A24\n0xF3B9\t0x9A1B\n0xF3BA\t0x9A22\n0xF3BB\t0x9A20\n0xF3BC\t0x9A27\n0xF3BD\t0x9A23\n0xF3BE\t0x9A1E\n0xF3BF\t0x9A1C\n0xF3C0\t0x9A14\n0xF3C1\t0x9AC2\n0xF3C2\t0x9B0B\n0xF3C3\t0x9B0A\n0xF3C4\t0x9B0E\n0xF3C5\t0x9B0C\n0xF3C6\t0x9B37\n0xF3C7\t0x9BEA\n0xF3C8\t0x9BEB\n0xF3C9\t0x9BE0\n0xF3CA\t0x9BDE\n0xF3CB\t0x9BE4\n0xF3CC\t0x9BE6\n0xF3CD\t0x9BE2\n0xF3CE\t0x9BF0\n0xF3CF\t0x9BD4\n0xF3D0\t0x9BD7\n0xF3D1\t0x9BEC\n0xF3D2\t0x9BDC\n0xF3D3\t0x9BD9\n0xF3D4\t0x9BE5\n0xF3D5\t0x9BD5\n0xF3D6\t0x9BE1\n0xF3D7\t0x9BDA\n0xF3D8\t0x9D77\n0xF3D9\t0x9D81\n0xF3DA\t0x9D8A\n0xF3DB\t0x9D84\n0xF3DC\t0x9D88\n0xF3DD\t0x9D71\n0xF3DE\t0x9D80\n0xF3DF\t0x9D78\n0xF3E0\t0x9D86\n0xF3E1\t0x9D8B\n0xF3E2\t0x9D8C\n0xF3E3\t0x9D7D\n0xF3E4\t0x9D6B\n0xF3E5\t0x9D74\n0xF3E6\t0x9D75\n0xF3E7\t0x9D70\n0xF3E8\t0x9D69\n0xF3E9\t0x9D85\n0xF3EA\t0x9D73\n0xF3EB\t0x9D7B\n0xF3EC\t0x9D82\n0xF3ED\t0x9D6F\n0xF3EE\t0x9D79\n0xF3EF\t0x9D7F\n0xF3F0\t0x9D87\n0xF3F1\t0x9D68\n0xF3F2\t0x9E94\n0xF3F3\t0x9E91\n0xF3F4\t0x9EC0\n0xF3F5\t0x9EFC\n0xF3F6\t0x9F2D\n0xF3F7\t0x9F40\n0xF3F8\t0x9F41\n0xF3F9\t0x9F4D\n0xF3FA\t0x9F56\n0xF3FB\t0x9F57\n0xF3FC\t0x9F58\n0xF3FD\t0x5337\n0xF3FE\t0x56B2\n0xF440\t0x56B5\n0xF441\t0x56B3\n0xF442\t0x58E3\n0xF443\t0x5B45\n0xF444\t0x5DC6\n0xF445\t0x5DC7\n0xF446\t0x5EEE\n0xF447\t0x5EEF\n0xF448\t0x5FC0\n0xF449\t0x5FC1\n0xF44A\t0x61F9\n0xF44B\t0x6517\n0xF44C\t0x6516\n0xF44D\t0x6515\n0xF44E\t0x6513\n0xF44F\t0x65DF\n0xF450\t0x66E8\n0xF451\t0x66E3\n0xF452\t0x66E4\n0xF453\t0x6AF3\n0xF454\t0x6AF0\n0xF455\t0x6AEA\n0xF456\t0x6AE8\n0xF457\t0x6AF9\n0xF458\t0x6AF1\n0xF459\t0x6AEE\n0xF45A\t0x6AEF\n0xF45B\t0x703C\n0xF45C\t0x7035\n0xF45D\t0x702F\n0xF45E\t0x7037\n0xF45F\t0x7034\n0xF460\t0x7031\n0xF461\t0x7042\n0xF462\t0x7038\n0xF463\t0x703F\n0xF464\t0x703A\n0xF465\t0x7039\n0xF466\t0x7040\n0xF467\t0x703B\n0xF468\t0x7033\n0xF469\t0x7041\n0xF46A\t0x7213\n0xF46B\t0x7214\n0xF46C\t0x72A8\n0xF46D\t0x737D\n0xF46E\t0x737C\n0xF46F\t0x74BA\n0xF470\t0x76AB\n0xF471\t0x76AA\n0xF472\t0x76BE\n0xF473\t0x76ED\n0xF474\t0x77CC\n0xF475\t0x77CE\n0xF476\t0x77CF\n0xF477\t0x77CD\n0xF478\t0x77F2\n0xF479\t0x7925\n0xF47A\t0x7923\n0xF47B\t0x7927\n0xF47C\t0x7928\n0xF47D\t0x7924\n0xF47E\t0x7929\n0xF4A1\t0x79B2\n0xF4A2\t0x7A6E\n0xF4A3\t0x7A6C\n0xF4A4\t0x7A6D\n0xF4A5\t0x7AF7\n0xF4A6\t0x7C49\n0xF4A7\t0x7C48\n0xF4A8\t0x7C4A\n0xF4A9\t0x7C47\n0xF4AA\t0x7C45\n0xF4AB\t0x7CEE\n0xF4AC\t0x7E7B\n0xF4AD\t0x7E7E\n0xF4AE\t0x7E81\n0xF4AF\t0x7E80\n0xF4B0\t0x7FBA\n0xF4B1\t0x7FFF\n0xF4B2\t0x8079\n0xF4B3\t0x81DB\n0xF4B4\t0x81D9\n0xF4B5\t0x820B\n0xF4B6\t0x8268\n0xF4B7\t0x8269\n0xF4B8\t0x8622\n0xF4B9\t0x85FF\n0xF4BA\t0x8601\n0xF4BB\t0x85FE\n0xF4BC\t0x861B\n0xF4BD\t0x8600\n0xF4BE\t0x85F6\n0xF4BF\t0x8604\n0xF4C0\t0x8609\n0xF4C1\t0x8605\n0xF4C2\t0x860C\n0xF4C3\t0x85FD\n0xF4C4\t0x8819\n0xF4C5\t0x8810\n0xF4C6\t0x8811\n0xF4C7\t0x8817\n0xF4C8\t0x8813\n0xF4C9\t0x8816\n0xF4CA\t0x8963\n0xF4CB\t0x8966\n0xF4CC\t0x89B9\n0xF4CD\t0x89F7\n0xF4CE\t0x8B60\n0xF4CF\t0x8B6A\n0xF4D0\t0x8B5D\n0xF4D1\t0x8B68\n0xF4D2\t0x8B63\n0xF4D3\t0x8B65\n0xF4D4\t0x8B67\n0xF4D5\t0x8B6D\n0xF4D6\t0x8DAE\n0xF4D7\t0x8E86\n0xF4D8\t0x8E88\n0xF4D9\t0x8E84\n0xF4DA\t0x8F59\n0xF4DB\t0x8F56\n0xF4DC\t0x8F57\n0xF4DD\t0x8F55\n0xF4DE\t0x8F58\n0xF4DF\t0x8F5A\n0xF4E0\t0x908D\n0xF4E1\t0x9143\n0xF4E2\t0x9141\n0xF4E3\t0x91B7\n0xF4E4\t0x91B5\n0xF4E5\t0x91B2\n0xF4E6\t0x91B3\n0xF4E7\t0x940B\n0xF4E8\t0x9413\n0xF4E9\t0x93FB\n0xF4EA\t0x9420\n0xF4EB\t0x940F\n0xF4EC\t0x9414\n0xF4ED\t0x93FE\n0xF4EE\t0x9415\n0xF4EF\t0x9410\n0xF4F0\t0x9428\n0xF4F1\t0x9419\n0xF4F2\t0x940D\n0xF4F3\t0x93F5\n0xF4F4\t0x9400\n0xF4F5\t0x93F7\n0xF4F6\t0x9407\n0xF4F7\t0x940E\n0xF4F8\t0x9416\n0xF4F9\t0x9412\n0xF4FA\t0x93FA\n0xF4FB\t0x9409\n0xF4FC\t0x93F8\n0xF4FD\t0x940A\n0xF4FE\t0x93FF\n0xF540\t0x93FC\n0xF541\t0x940C\n0xF542\t0x93F6\n0xF543\t0x9411\n0xF544\t0x9406\n0xF545\t0x95DE\n0xF546\t0x95E0\n0xF547\t0x95DF\n0xF548\t0x972E\n0xF549\t0x972F\n0xF54A\t0x97B9\n0xF54B\t0x97BB\n0xF54C\t0x97FD\n0xF54D\t0x97FE\n0xF54E\t0x9860\n0xF54F\t0x9862\n0xF550\t0x9863\n0xF551\t0x985F\n0xF552\t0x98C1\n0xF553\t0x98C2\n0xF554\t0x9950\n0xF555\t0x994E\n0xF556\t0x9959\n0xF557\t0x994C\n0xF558\t0x994B\n0xF559\t0x9953\n0xF55A\t0x9A32\n0xF55B\t0x9A34\n0xF55C\t0x9A31\n0xF55D\t0x9A2C\n0xF55E\t0x9A2A\n0xF55F\t0x9A36\n0xF560\t0x9A29\n0xF561\t0x9A2E\n0xF562\t0x9A38\n0xF563\t0x9A2D\n0xF564\t0x9AC7\n0xF565\t0x9ACA\n0xF566\t0x9AC6\n0xF567\t0x9B10\n0xF568\t0x9B12\n0xF569\t0x9B11\n0xF56A\t0x9C0B\n0xF56B\t0x9C08\n0xF56C\t0x9BF7\n0xF56D\t0x9C05\n0xF56E\t0x9C12\n0xF56F\t0x9BF8\n0xF570\t0x9C40\n0xF571\t0x9C07\n0xF572\t0x9C0E\n0xF573\t0x9C06\n0xF574\t0x9C17\n0xF575\t0x9C14\n0xF576\t0x9C09\n0xF577\t0x9D9F\n0xF578\t0x9D99\n0xF579\t0x9DA4\n0xF57A\t0x9D9D\n0xF57B\t0x9D92\n0xF57C\t0x9D98\n0xF57D\t0x9D90\n0xF57E\t0x9D9B\n0xF5A1\t0x9DA0\n0xF5A2\t0x9D94\n0xF5A3\t0x9D9C\n0xF5A4\t0x9DAA\n0xF5A5\t0x9D97\n0xF5A6\t0x9DA1\n0xF5A7\t0x9D9A\n0xF5A8\t0x9DA2\n0xF5A9\t0x9DA8\n0xF5AA\t0x9D9E\n0xF5AB\t0x9DA3\n0xF5AC\t0x9DBF\n0xF5AD\t0x9DA9\n0xF5AE\t0x9D96\n0xF5AF\t0x9DA6\n0xF5B0\t0x9DA7\n0xF5B1\t0x9E99\n0xF5B2\t0x9E9B\n0xF5B3\t0x9E9A\n0xF5B4\t0x9EE5\n0xF5B5\t0x9EE4\n0xF5B6\t0x9EE7\n0xF5B7\t0x9EE6\n0xF5B8\t0x9F30\n0xF5B9\t0x9F2E\n0xF5BA\t0x9F5B\n0xF5BB\t0x9F60\n0xF5BC\t0x9F5E\n0xF5BD\t0x9F5D\n0xF5BE\t0x9F59\n0xF5BF\t0x9F91\n0xF5C0\t0x513A\n0xF5C1\t0x5139\n0xF5C2\t0x5298\n0xF5C3\t0x5297\n0xF5C4\t0x56C3\n0xF5C5\t0x56BD\n0xF5C6\t0x56BE\n0xF5C7\t0x5B48\n0xF5C8\t0x5B47\n0xF5C9\t0x5DCB\n0xF5CA\t0x5DCF\n0xF5CB\t0x5EF1\n0xF5CC\t0x61FD\n0xF5CD\t0x651B\n0xF5CE\t0x6B02\n0xF5CF\t0x6AFC\n0xF5D0\t0x6B03\n0xF5D1\t0x6AF8\n0xF5D2\t0x6B00\n0xF5D3\t0x7043\n0xF5D4\t0x7044\n0xF5D5\t0x704A\n0xF5D6\t0x7048\n0xF5D7\t0x7049\n0xF5D8\t0x7045\n0xF5D9\t0x7046\n0xF5DA\t0x721D\n0xF5DB\t0x721A\n0xF5DC\t0x7219\n0xF5DD\t0x737E\n0xF5DE\t0x7517\n0xF5DF\t0x766A\n0xF5E0\t0x77D0\n0xF5E1\t0x792D\n0xF5E2\t0x7931\n0xF5E3\t0x792F\n0xF5E4\t0x7C54\n0xF5E5\t0x7C53\n0xF5E6\t0x7CF2\n0xF5E7\t0x7E8A\n0xF5E8\t0x7E87\n0xF5E9\t0x7E88\n0xF5EA\t0x7E8B\n0xF5EB\t0x7E86\n0xF5EC\t0x7E8D\n0xF5ED\t0x7F4D\n0xF5EE\t0x7FBB\n0xF5EF\t0x8030\n0xF5F0\t0x81DD\n0xF5F1\t0x8618\n0xF5F2\t0x862A\n0xF5F3\t0x8626\n0xF5F4\t0x861F\n0xF5F5\t0x8623\n0xF5F6\t0x861C\n0xF5F7\t0x8619\n0xF5F8\t0x8627\n0xF5F9\t0x862E\n0xF5FA\t0x8621\n0xF5FB\t0x8620\n0xF5FC\t0x8629\n0xF5FD\t0x861E\n0xF5FE\t0x8625\n0xF640\t0x8829\n0xF641\t0x881D\n0xF642\t0x881B\n0xF643\t0x8820\n0xF644\t0x8824\n0xF645\t0x881C\n0xF646\t0x882B\n0xF647\t0x884A\n0xF648\t0x896D\n0xF649\t0x8969\n0xF64A\t0x896E\n0xF64B\t0x896B\n0xF64C\t0x89FA\n0xF64D\t0x8B79\n0xF64E\t0x8B78\n0xF64F\t0x8B45\n0xF650\t0x8B7A\n0xF651\t0x8B7B\n0xF652\t0x8D10\n0xF653\t0x8D14\n0xF654\t0x8DAF\n0xF655\t0x8E8E\n0xF656\t0x8E8C\n0xF657\t0x8F5E\n0xF658\t0x8F5B\n0xF659\t0x8F5D\n0xF65A\t0x9146\n0xF65B\t0x9144\n0xF65C\t0x9145\n0xF65D\t0x91B9\n0xF65E\t0x943F\n0xF65F\t0x943B\n0xF660\t0x9436\n0xF661\t0x9429\n0xF662\t0x943D\n0xF663\t0x943C\n0xF664\t0x9430\n0xF665\t0x9439\n0xF666\t0x942A\n0xF667\t0x9437\n0xF668\t0x942C\n0xF669\t0x9440\n0xF66A\t0x9431\n0xF66B\t0x95E5\n0xF66C\t0x95E4\n0xF66D\t0x95E3\n0xF66E\t0x9735\n0xF66F\t0x973A\n0xF670\t0x97BF\n0xF671\t0x97E1\n0xF672\t0x9864\n0xF673\t0x98C9\n0xF674\t0x98C6\n0xF675\t0x98C0\n0xF676\t0x9958\n0xF677\t0x9956\n0xF678\t0x9A39\n0xF679\t0x9A3D\n0xF67A\t0x9A46\n0xF67B\t0x9A44\n0xF67C\t0x9A42\n0xF67D\t0x9A41\n0xF67E\t0x9A3A\n0xF6A1\t0x9A3F\n0xF6A2\t0x9ACD\n0xF6A3\t0x9B15\n0xF6A4\t0x9B17\n0xF6A5\t0x9B18\n0xF6A6\t0x9B16\n0xF6A7\t0x9B3A\n0xF6A8\t0x9B52\n0xF6A9\t0x9C2B\n0xF6AA\t0x9C1D\n0xF6AB\t0x9C1C\n0xF6AC\t0x9C2C\n0xF6AD\t0x9C23\n0xF6AE\t0x9C28\n0xF6AF\t0x9C29\n0xF6B0\t0x9C24\n0xF6B1\t0x9C21\n0xF6B2\t0x9DB7\n0xF6B3\t0x9DB6\n0xF6B4\t0x9DBC\n0xF6B5\t0x9DC1\n0xF6B6\t0x9DC7\n0xF6B7\t0x9DCA\n0xF6B8\t0x9DCF\n0xF6B9\t0x9DBE\n0xF6BA\t0x9DC5\n0xF6BB\t0x9DC3\n0xF6BC\t0x9DBB\n0xF6BD\t0x9DB5\n0xF6BE\t0x9DCE\n0xF6BF\t0x9DB9\n0xF6C0\t0x9DBA\n0xF6C1\t0x9DAC\n0xF6C2\t0x9DC8\n0xF6C3\t0x9DB1\n0xF6C4\t0x9DAD\n0xF6C5\t0x9DCC\n0xF6C6\t0x9DB3\n0xF6C7\t0x9DCD\n0xF6C8\t0x9DB2\n0xF6C9\t0x9E7A\n0xF6CA\t0x9E9C\n0xF6CB\t0x9EEB\n0xF6CC\t0x9EEE\n0xF6CD\t0x9EED\n0xF6CE\t0x9F1B\n0xF6CF\t0x9F18\n0xF6D0\t0x9F1A\n0xF6D1\t0x9F31\n0xF6D2\t0x9F4E\n0xF6D3\t0x9F65\n0xF6D4\t0x9F64\n0xF6D5\t0x9F92\n0xF6D6\t0x4EB9\n0xF6D7\t0x56C6\n0xF6D8\t0x56C5\n0xF6D9\t0x56CB\n0xF6DA\t0x5971\n0xF6DB\t0x5B4B\n0xF6DC\t0x5B4C\n0xF6DD\t0x5DD5\n0xF6DE\t0x5DD1\n0xF6DF\t0x5EF2\n0xF6E0\t0x6521\n0xF6E1\t0x6520\n0xF6E2\t0x6526\n0xF6E3\t0x6522\n0xF6E4\t0x6B0B\n0xF6E5\t0x6B08\n0xF6E6\t0x6B09\n0xF6E7\t0x6C0D\n0xF6E8\t0x7055\n0xF6E9\t0x7056\n0xF6EA\t0x7057\n0xF6EB\t0x7052\n0xF6EC\t0x721E\n0xF6ED\t0x721F\n0xF6EE\t0x72A9\n0xF6EF\t0x737F\n0xF6F0\t0x74D8\n0xF6F1\t0x74D5\n0xF6F2\t0x74D9\n0xF6F3\t0x74D7\n0xF6F4\t0x766D\n0xF6F5\t0x76AD\n0xF6F6\t0x7935\n0xF6F7\t0x79B4\n0xF6F8\t0x7A70\n0xF6F9\t0x7A71\n0xF6FA\t0x7C57\n0xF6FB\t0x7C5C\n0xF6FC\t0x7C59\n0xF6FD\t0x7C5B\n0xF6FE\t0x7C5A\n0xF740\t0x7CF4\n0xF741\t0x7CF1\n0xF742\t0x7E91\n0xF743\t0x7F4F\n0xF744\t0x7F87\n0xF745\t0x81DE\n0xF746\t0x826B\n0xF747\t0x8634\n0xF748\t0x8635\n0xF749\t0x8633\n0xF74A\t0x862C\n0xF74B\t0x8632\n0xF74C\t0x8636\n0xF74D\t0x882C\n0xF74E\t0x8828\n0xF74F\t0x8826\n0xF750\t0x882A\n0xF751\t0x8825\n0xF752\t0x8971\n0xF753\t0x89BF\n0xF754\t0x89BE\n0xF755\t0x89FB\n0xF756\t0x8B7E\n0xF757\t0x8B84\n0xF758\t0x8B82\n0xF759\t0x8B86\n0xF75A\t0x8B85\n0xF75B\t0x8B7F\n0xF75C\t0x8D15\n0xF75D\t0x8E95\n0xF75E\t0x8E94\n0xF75F\t0x8E9A\n0xF760\t0x8E92\n0xF761\t0x8E90\n0xF762\t0x8E96\n0xF763\t0x8E97\n0xF764\t0x8F60\n0xF765\t0x8F62\n0xF766\t0x9147\n0xF767\t0x944C\n0xF768\t0x9450\n0xF769\t0x944A\n0xF76A\t0x944B\n0xF76B\t0x944F\n0xF76C\t0x9447\n0xF76D\t0x9445\n0xF76E\t0x9448\n0xF76F\t0x9449\n0xF770\t0x9446\n0xF771\t0x973F\n0xF772\t0x97E3\n0xF773\t0x986A\n0xF774\t0x9869\n0xF775\t0x98CB\n0xF776\t0x9954\n0xF777\t0x995B\n0xF778\t0x9A4E\n0xF779\t0x9A53\n0xF77A\t0x9A54\n0xF77B\t0x9A4C\n0xF77C\t0x9A4F\n0xF77D\t0x9A48\n0xF77E\t0x9A4A\n0xF7A1\t0x9A49\n0xF7A2\t0x9A52\n0xF7A3\t0x9A50\n0xF7A4\t0x9AD0\n0xF7A5\t0x9B19\n0xF7A6\t0x9B2B\n0xF7A7\t0x9B3B\n0xF7A8\t0x9B56\n0xF7A9\t0x9B55\n0xF7AA\t0x9C46\n0xF7AB\t0x9C48\n0xF7AC\t0x9C3F\n0xF7AD\t0x9C44\n0xF7AE\t0x9C39\n0xF7AF\t0x9C33\n0xF7B0\t0x9C41\n0xF7B1\t0x9C3C\n0xF7B2\t0x9C37\n0xF7B3\t0x9C34\n0xF7B4\t0x9C32\n0xF7B5\t0x9C3D\n0xF7B6\t0x9C36\n0xF7B7\t0x9DDB\n0xF7B8\t0x9DD2\n0xF7B9\t0x9DDE\n0xF7BA\t0x9DDA\n0xF7BB\t0x9DCB\n0xF7BC\t0x9DD0\n0xF7BD\t0x9DDC\n0xF7BE\t0x9DD1\n0xF7BF\t0x9DDF\n0xF7C0\t0x9DE9\n0xF7C1\t0x9DD9\n0xF7C2\t0x9DD8\n0xF7C3\t0x9DD6\n0xF7C4\t0x9DF5\n0xF7C5\t0x9DD5\n0xF7C6\t0x9DDD\n0xF7C7\t0x9EB6\n0xF7C8\t0x9EF0\n0xF7C9\t0x9F35\n0xF7CA\t0x9F33\n0xF7CB\t0x9F32\n0xF7CC\t0x9F42\n0xF7CD\t0x9F6B\n0xF7CE\t0x9F95\n0xF7CF\t0x9FA2\n0xF7D0\t0x513D\n0xF7D1\t0x5299\n0xF7D2\t0x58E8\n0xF7D3\t0x58E7\n0xF7D4\t0x5972\n0xF7D5\t0x5B4D\n0xF7D6\t0x5DD8\n0xF7D7\t0x882F\n0xF7D8\t0x5F4F\n0xF7D9\t0x6201\n0xF7DA\t0x6203\n0xF7DB\t0x6204\n0xF7DC\t0x6529\n0xF7DD\t0x6525\n0xF7DE\t0x6596\n0xF7DF\t0x66EB\n0xF7E0\t0x6B11\n0xF7E1\t0x6B12\n0xF7E2\t0x6B0F\n0xF7E3\t0x6BCA\n0xF7E4\t0x705B\n0xF7E5\t0x705A\n0xF7E6\t0x7222\n0xF7E7\t0x7382\n0xF7E8\t0x7381\n0xF7E9\t0x7383\n0xF7EA\t0x7670\n0xF7EB\t0x77D4\n0xF7EC\t0x7C67\n0xF7ED\t0x7C66\n0xF7EE\t0x7E95\n0xF7EF\t0x826C\n0xF7F0\t0x863A\n0xF7F1\t0x8640\n0xF7F2\t0x8639\n0xF7F3\t0x863C\n0xF7F4\t0x8631\n0xF7F5\t0x863B\n0xF7F6\t0x863E\n0xF7F7\t0x8830\n0xF7F8\t0x8832\n0xF7F9\t0x882E\n0xF7FA\t0x8833\n0xF7FB\t0x8976\n0xF7FC\t0x8974\n0xF7FD\t0x8973\n0xF7FE\t0x89FE\n0xF840\t0x8B8C\n0xF841\t0x8B8E\n0xF842\t0x8B8B\n0xF843\t0x8B88\n0xF844\t0x8C45\n0xF845\t0x8D19\n0xF846\t0x8E98\n0xF847\t0x8F64\n0xF848\t0x8F63\n0xF849\t0x91BC\n0xF84A\t0x9462\n0xF84B\t0x9455\n0xF84C\t0x945D\n0xF84D\t0x9457\n0xF84E\t0x945E\n0xF84F\t0x97C4\n0xF850\t0x97C5\n0xF851\t0x9800\n0xF852\t0x9A56\n0xF853\t0x9A59\n0xF854\t0x9B1E\n0xF855\t0x9B1F\n0xF856\t0x9B20\n0xF857\t0x9C52\n0xF858\t0x9C58\n0xF859\t0x9C50\n0xF85A\t0x9C4A\n0xF85B\t0x9C4D\n0xF85C\t0x9C4B\n0xF85D\t0x9C55\n0xF85E\t0x9C59\n0xF85F\t0x9C4C\n0xF860\t0x9C4E\n0xF861\t0x9DFB\n0xF862\t0x9DF7\n0xF863\t0x9DEF\n0xF864\t0x9DE3\n0xF865\t0x9DEB\n0xF866\t0x9DF8\n0xF867\t0x9DE4\n0xF868\t0x9DF6\n0xF869\t0x9DE1\n0xF86A\t0x9DEE\n0xF86B\t0x9DE6\n0xF86C\t0x9DF2\n0xF86D\t0x9DF0\n0xF86E\t0x9DE2\n0xF86F\t0x9DEC\n0xF870\t0x9DF4\n0xF871\t0x9DF3\n0xF872\t0x9DE8\n0xF873\t0x9DED\n0xF874\t0x9EC2\n0xF875\t0x9ED0\n0xF876\t0x9EF2\n0xF877\t0x9EF3\n0xF878\t0x9F06\n0xF879\t0x9F1C\n0xF87A\t0x9F38\n0xF87B\t0x9F37\n0xF87C\t0x9F36\n0xF87D\t0x9F43\n0xF87E\t0x9F4F\n0xF8A1\t0x9F71\n0xF8A2\t0x9F70\n0xF8A3\t0x9F6E\n0xF8A4\t0x9F6F\n0xF8A5\t0x56D3\n0xF8A6\t0x56CD\n0xF8A7\t0x5B4E\n0xF8A8\t0x5C6D\n0xF8A9\t0x652D\n0xF8AA\t0x66ED\n0xF8AB\t0x66EE\n0xF8AC\t0x6B13\n0xF8AD\t0x705F\n0xF8AE\t0x7061\n0xF8AF\t0x705D\n0xF8B0\t0x7060\n0xF8B1\t0x7223\n0xF8B2\t0x74DB\n0xF8B3\t0x74E5\n0xF8B4\t0x77D5\n0xF8B5\t0x7938\n0xF8B6\t0x79B7\n0xF8B7\t0x79B6\n0xF8B8\t0x7C6A\n0xF8B9\t0x7E97\n0xF8BA\t0x7F89\n0xF8BB\t0x826D\n0xF8BC\t0x8643\n0xF8BD\t0x8838\n0xF8BE\t0x8837\n0xF8BF\t0x8835\n0xF8C0\t0x884B\n0xF8C1\t0x8B94\n0xF8C2\t0x8B95\n0xF8C3\t0x8E9E\n0xF8C4\t0x8E9F\n0xF8C5\t0x8EA0\n0xF8C6\t0x8E9D\n0xF8C7\t0x91BE\n0xF8C8\t0x91BD\n0xF8C9\t0x91C2\n0xF8CA\t0x946B\n0xF8CB\t0x9468\n0xF8CC\t0x9469\n0xF8CD\t0x96E5\n0xF8CE\t0x9746\n0xF8CF\t0x9743\n0xF8D0\t0x9747\n0xF8D1\t0x97C7\n0xF8D2\t0x97E5\n0xF8D3\t0x9A5E\n0xF8D4\t0x9AD5\n0xF8D5\t0x9B59\n0xF8D6\t0x9C63\n0xF8D7\t0x9C67\n0xF8D8\t0x9C66\n0xF8D9\t0x9C62\n0xF8DA\t0x9C5E\n0xF8DB\t0x9C60\n0xF8DC\t0x9E02\n0xF8DD\t0x9DFE\n0xF8DE\t0x9E07\n0xF8DF\t0x9E03\n0xF8E0\t0x9E06\n0xF8E1\t0x9E05\n0xF8E2\t0x9E00\n0xF8E3\t0x9E01\n0xF8E4\t0x9E09\n0xF8E5\t0x9DFF\n0xF8E6\t0x9DFD\n0xF8E7\t0x9E04\n0xF8E8\t0x9EA0\n0xF8E9\t0x9F1E\n0xF8EA\t0x9F46\n0xF8EB\t0x9F74\n0xF8EC\t0x9F75\n0xF8ED\t0x9F76\n0xF8EE\t0x56D4\n0xF8EF\t0x652E\n0xF8F0\t0x65B8\n0xF8F1\t0x6B18\n0xF8F2\t0x6B19\n0xF8F3\t0x6B17\n0xF8F4\t0x6B1A\n0xF8F5\t0x7062\n0xF8F6\t0x7226\n0xF8F7\t0x72AA\n0xF8F8\t0x77D8\n0xF8F9\t0x77D9\n0xF8FA\t0x7939\n0xF8FB\t0x7C69\n0xF8FC\t0x7C6B\n0xF8FD\t0x7CF6\n0xF8FE\t0x7E9A\n0xF940\t0x7E98\n0xF941\t0x7E9B\n0xF942\t0x7E99\n0xF943\t0x81E0\n0xF944\t0x81E1\n0xF945\t0x8646\n0xF946\t0x8647\n0xF947\t0x8648\n0xF948\t0x8979\n0xF949\t0x897A\n0xF94A\t0x897C\n0xF94B\t0x897B\n0xF94C\t0x89FF\n0xF94D\t0x8B98\n0xF94E\t0x8B99\n0xF94F\t0x8EA5\n0xF950\t0x8EA4\n0xF951\t0x8EA3\n0xF952\t0x946E\n0xF953\t0x946D\n0xF954\t0x946F\n0xF955\t0x9471\n0xF956\t0x9473\n0xF957\t0x9749\n0xF958\t0x9872\n0xF959\t0x995F\n0xF95A\t0x9C68\n0xF95B\t0x9C6E\n0xF95C\t0x9C6D\n0xF95D\t0x9E0B\n0xF95E\t0x9E0D\n0xF95F\t0x9E10\n0xF960\t0x9E0F\n0xF961\t0x9E12\n0xF962\t0x9E11\n0xF963\t0x9EA1\n0xF964\t0x9EF5\n0xF965\t0x9F09\n0xF966\t0x9F47\n0xF967\t0x9F78\n0xF968\t0x9F7B\n0xF969\t0x9F7A\n0xF96A\t0x9F79\n0xF96B\t0x571E\n0xF96C\t0x7066\n0xF96D\t0x7C6F\n0xF96E\t0x883C\n0xF96F\t0x8DB2\n0xF970\t0x8EA6\n0xF971\t0x91C3\n0xF972\t0x9474\n0xF973\t0x9478\n0xF974\t0x9476\n0xF975\t0x9475\n0xF976\t0x9A60\n0xF977\t0x9C74\n0xF978\t0x9C73\n0xF979\t0x9C71\n0xF97A\t0x9C75\n0xF97B\t0x9E14\n0xF97C\t0x9E13\n0xF97D\t0x9EF6\n0xF97E\t0x9F0A\n0xF9A1\t0x9FA4\n0xF9A2\t0x7068\n0xF9A3\t0x7065\n0xF9A4\t0x7CF7\n0xF9A5\t0x866A\n0xF9A6\t0x883E\n0xF9A7\t0x883D\n0xF9A8\t0x883F\n0xF9A9\t0x8B9E\n0xF9AA\t0x8C9C\n0xF9AB\t0x8EA9\n0xF9AC\t0x8EC9\n0xF9AD\t0x974B\n0xF9AE\t0x9873\n0xF9AF\t0x9874\n0xF9B0\t0x98CC\n0xF9B1\t0x9961\n0xF9B2\t0x99AB\n0xF9B3\t0x9A64\n0xF9B4\t0x9A66\n0xF9B5\t0x9A67\n0xF9B6\t0x9B24\n0xF9B7\t0x9E15\n0xF9B8\t0x9E17\n0xF9B9\t0x9F48\n0xF9BA\t0x6207\n0xF9BB\t0x6B1E\n0xF9BC\t0x7227\n0xF9BD\t0x864C\n0xF9BE\t0x8EA8\n0xF9BF\t0x9482\n0xF9C0\t0x9480\n0xF9C1\t0x9481\n0xF9C2\t0x9A69\n0xF9C3\t0x9A68\n0xF9C4\t0x9B2E\n0xF9C5\t0x9E19\n0xF9C6\t0x7229\n0xF9C7\t0x864B\n0xF9C8\t0x8B9F\n0xF9C9\t0x9483\n0xF9CA\t0x9C79\n0xF9CB\t0x9EB7\n0xF9CC\t0x7675\n0xF9CD\t0x9A6B\n0xF9CE\t0x9C7A\n0xF9CF\t0x9E1D\n0xF9D0\t0x7069\n0xF9D1\t0x706A\n0xF9D2\t0x9EA4\n0xF9D3\t0x9F7E\n0xF9D4\t0x9F49\n0xF9D5\t0x9F98\n0xF9D6\t0x7881\n0xF9D7\t0x92B9\n0xF9D8\t0x88CF\n0xF9D9\t0x58BB\n0xF9DA\t0x6052\n0xF9DB\t0x7CA7\n0xF9DC\t0x5AFA\n0xF9DD\t0x2554\n0xF9DE\t0x2566\n0xF9DF\t0x2557\n0xF9E0\t0x2560\n0xF9E1\t0x256C\n0xF9E2\t0x2563\n0xF9E3\t0x255A\n0xF9E4\t0x2569\n0xF9E5\t0x255D\n0xF9E6\t0x2552\n0xF9E7\t0x2564\n0xF9E8\t0x2555\n0xF9E9\t0x255E\n0xF9EA\t0x256A\n0xF9EB\t0x2561\n0xF9EC\t0x2558\n0xF9ED\t0x2567\n0xF9EE\t0x255B\n0xF9EF\t0x2553\n0xF9F0\t0x2565\n0xF9F1\t0x2556\n0xF9F2\t0x255F\n0xF9F3\t0x256B\n0xF9F4\t0x2562\n0xF9F5\t0x2559\n0xF9F6\t0x2568\n0xF9F7\t0x255C\n0xF9F8\t0x2551\n0xF9F9\t0x2550\n0xF9FA\t0x2554\n0xF9FB\t0x2557\n0xF9FC\t0x255A\n0xF9FD\t0x255D\n0xF9FE\t0x2593\n0xFA40\t0xE000\n0xFA41\t0xE001\n0xFA42\t0xE002\n0xFA43\t0xE003\n0xFA44\t0xE004\n0xFA45\t0xE005\n0xFA46\t0xE006\n0xFA47\t0xE007\n0xFA48\t0xE008\n0xFA49\t0xE009\n0xFA4A\t0xE00A\n0xFA4B\t0xE00B\n0xFA4C\t0xE00C\n0xFA4D\t0xE00D\n0xFA4E\t0xE00E\n0xFA4F\t0xE00F\n0xFA50\t0xE010\n0xFA51\t0xE011\n0xFA52\t0xE012\n0xFA53\t0xE013\n0xFA54\t0xE014\n0xFA55\t0xE015\n0xFA56\t0xE016\n0xFA57\t0xE017\n0xFA58\t0xE018\n0xFA59\t0xE019\n0xFA5A\t0xE01A\n0xFA5B\t0xE01B\n0xFA5C\t0xE01C\n0xFA5D\t0xE01D\n0xFA5E\t0xE01E\n0xFA5F\t0xE01F\n0xFA60\t0xE020\n0xFA61\t0xE021\n0xFA62\t0xE022\n0xFA63\t0xE023\n0xFA64\t0xE024\n0xFA65\t0xE025\n0xFA66\t0xE026\n0xFA67\t0xE027\n0xFA68\t0xE028\n0xFA69\t0xE029\n0xFA6A\t0xE02A\n0xFA6B\t0xE02B\n0xFA6C\t0xE02C\n0xFA6D\t0xE02D\n0xFA6E\t0xE02E\n0xFA6F\t0xE02F\n0xFA70\t0xE030\n0xFA71\t0xE031\n0xFA72\t0xE032\n0xFA73\t0xE033\n0xFA74\t0xE034\n0xFA75\t0xE035\n0xFA76\t0xE036\n0xFA77\t0xE037\n0xFA78\t0xE038\n0xFA79\t0xE039\n0xFA7A\t0xE03A\n0xFA7B\t0xE03B\n0xFA7C\t0xE03C\n0xFA7D\t0xE03D\n0xFA7E\t0xE03E\n0xFAA1\t0xE03F\n0xFAA2\t0xE040\n0xFAA3\t0xE041\n0xFAA4\t0xE042\n0xFAA5\t0xE043\n0xFAA6\t0xE044\n0xFAA7\t0xE045\n0xFAA8\t0xE046\n0xFAA9\t0xE047\n0xFAAA\t0xE048\n0xFAAB\t0xE049\n0xFAAC\t0xE04A\n0xFAAD\t0xE04B\n0xFAAE\t0xE04C\n0xFAAF\t0xE04D\n0xFAB0\t0xE04E\n0xFAB1\t0xE04F\n0xFAB2\t0xE050\n0xFAB3\t0xE051\n0xFAB4\t0xE052\n0xFAB5\t0xE053\n0xFAB6\t0xE054\n0xFAB7\t0xE055\n0xFAB8\t0xE056\n0xFAB9\t0xE057\n0xFABA\t0xE058\n0xFABB\t0xE059\n0xFABC\t0xE05A\n0xFABD\t0xE05B\n0xFABE\t0xE05C\n0xFABF\t0xE05D\n0xFAC0\t0xE05E\n0xFAC1\t0xE05F\n0xFAC2\t0xE060\n0xFAC3\t0xE061\n0xFAC4\t0xE062\n0xFAC5\t0xE063\n0xFAC6\t0xE064\n0xFAC7\t0xE065\n0xFAC8\t0xE066\n0xFAC9\t0xE067\n0xFACA\t0xE068\n0xFACB\t0xE069\n0xFACC\t0xE06A\n0xFACD\t0xE06B\n0xFACE\t0xE06C\n0xFACF\t0xE06D\n0xFAD0\t0xE06E\n0xFAD1\t0xE06F\n0xFAD2\t0xE070\n0xFAD3\t0xE071\n0xFAD4\t0xE072\n0xFAD5\t0xE073\n0xFAD6\t0xE074\n0xFAD7\t0xE075\n0xFAD8\t0xE076\n0xFAD9\t0xE077\n0xFADA\t0xE078\n0xFADB\t0xE079\n0xFADC\t0xE07A\n0xFADD\t0xE07B\n0xFADE\t0xE07C\n0xFADF\t0xE07D\n0xFAE0\t0xE07E\n0xFAE1\t0xE07F\n0xFAE2\t0xE080\n0xFAE3\t0xE081\n0xFAE4\t0xE082\n0xFAE5\t0xE083\n0xFAE6\t0xE084\n0xFAE7\t0xE085\n0xFAE8\t0xE086\n0xFAE9\t0xE087\n0xFAEA\t0xE088\n0xFAEB\t0xE089\n0xFAEC\t0xE08A\n0xFAED\t0xE08B\n0xFAEE\t0xE08C\n0xFAEF\t0xE08D\n0xFAF0\t0xE08E\n0xFAF1\t0xE08F\n0xFAF2\t0xE090\n0xFAF3\t0xE091\n0xFAF4\t0xE092\n0xFAF5\t0xE093\n0xFAF6\t0xE094\n0xFAF7\t0xE095\n0xFAF8\t0xE096\n0xFAF9\t0xE097\n0xFAFA\t0xE098\n0xFAFB\t0xE099\n0xFAFC\t0xE09A\n0xFAFD\t0xE09B\n0xFAFE\t0xE09C\n0xFB40\t0xE09D\n0xFB41\t0xE09E\n0xFB42\t0xE09F\n0xFB43\t0xE0A0\n0xFB44\t0xE0A1\n0xFB45\t0xE0A2\n0xFB46\t0xE0A3\n0xFB47\t0xE0A4\n0xFB48\t0xE0A5\n0xFB49\t0xE0A6\n0xFB4A\t0xE0A7\n0xFB4B\t0xE0A8\n0xFB4C\t0xE0A9\n0xFB4D\t0xE0AA\n0xFB4E\t0xE0AB\n0xFB4F\t0xE0AC\n0xFB50\t0xE0AD\n0xFB51\t0xE0AE\n0xFB52\t0xE0AF\n0xFB53\t0xE0B0\n0xFB54\t0xE0B1\n0xFB55\t0xE0B2\n0xFB56\t0xE0B3\n0xFB57\t0xE0B4\n0xFB58\t0xE0B5\n0xFB59\t0xE0B6\n0xFB5A\t0xE0B7\n0xFB5B\t0xE0B8\n0xFB5C\t0xE0B9\n0xFB5D\t0xE0BA\n0xFB5E\t0xE0BB\n0xFB5F\t0xE0BC\n0xFB60\t0xE0BD\n0xFB61\t0xE0BE\n0xFB62\t0xE0BF\n0xFB63\t0xE0C0\n0xFB64\t0xE0C1\n0xFB65\t0xE0C2\n0xFB66\t0xE0C3\n0xFB67\t0xE0C4\n0xFB68\t0xE0C5\n0xFB69\t0xE0C6\n0xFB6A\t0xE0C7\n0xFB6B\t0xE0C8\n0xFB6C\t0xE0C9\n0xFB6D\t0xE0CA\n0xFB6E\t0xE0CB\n0xFB6F\t0xE0CC\n0xFB70\t0xE0CD\n0xFB71\t0xE0CE\n0xFB72\t0xE0CF\n0xFB73\t0xE0D0\n0xFB74\t0xE0D1\n0xFB75\t0xE0D2\n0xFB76\t0xE0D3\n0xFB77\t0xE0D4\n0xFB78\t0xE0D5\n0xFB79\t0xE0D6\n0xFB7A\t0xE0D7\n0xFB7B\t0xE0D8\n0xFB7C\t0xE0D9\n0xFB7D\t0xE0DA\n0xFB7E\t0xE0DB\n0xFBA1\t0xE0DC\n0xFBA2\t0xE0DD\n0xFBA3\t0xE0DE\n0xFBA4\t0xE0DF\n0xFBA5\t0xE0E0\n0xFBA6\t0xE0E1\n0xFBA7\t0xE0E2\n0xFBA8\t0xE0E3\n0xFBA9\t0xE0E4\n0xFBAA\t0xE0E5\n0xFBAB\t0xE0E6\n0xFBAC\t0xE0E7\n0xFBAD\t0xE0E8\n0xFBAE\t0xE0E9\n0xFBAF\t0xE0EA\n0xFBB0\t0xE0EB\n0xFBB1\t0xE0EC\n0xFBB2\t0xE0ED\n0xFBB3\t0xE0EE\n0xFBB4\t0xE0EF\n0xFBB5\t0xE0F0\n0xFBB6\t0xE0F1\n0xFBB7\t0xE0F2\n0xFBB8\t0xE0F3\n0xFBB9\t0xE0F4\n0xFBBA\t0xE0F5\n0xFBBB\t0xE0F6\n0xFBBC\t0xE0F7\n0xFBBD\t0xE0F8\n0xFBBE\t0xE0F9\n0xFBBF\t0xE0FA\n0xFBC0\t0xE0FB\n0xFBC1\t0xE0FC\n0xFBC2\t0xE0FD\n0xFBC3\t0xE0FE\n0xFBC4\t0xE0FF\n0xFBC5\t0xE100\n0xFBC6\t0xE101\n0xFBC7\t0xE102\n0xFBC8\t0xE103\n0xFBC9\t0xE104\n0xFBCA\t0xE105\n0xFBCB\t0xE106\n0xFBCC\t0xE107\n0xFBCD\t0xE108\n0xFBCE\t0xE109\n0xFBCF\t0xE10A\n0xFBD0\t0xE10B\n0xFBD1\t0xE10C\n0xFBD2\t0xE10D\n0xFBD3\t0xE10E\n0xFBD4\t0xE10F\n0xFBD5\t0xE110\n0xFBD6\t0xE111\n0xFBD7\t0xE112\n0xFBD8\t0xE113\n0xFBD9\t0xE114\n0xFBDA\t0xE115\n0xFBDB\t0xE116\n0xFBDC\t0xE117\n0xFBDD\t0xE118\n0xFBDE\t0xE119\n0xFBDF\t0xE11A\n0xFBE0\t0xE11B\n0xFBE1\t0xE11C\n0xFBE2\t0xE11D\n0xFBE3\t0xE11E\n0xFBE4\t0xE11F\n0xFBE5\t0xE120\n0xFBE6\t0xE121\n0xFBE7\t0xE122\n0xFBE8\t0xE123\n0xFBE9\t0xE124\n0xFBEA\t0xE125\n0xFBEB\t0xE126\n0xFBEC\t0xE127\n0xFBED\t0xE128\n0xFBEE\t0xE129\n0xFBEF\t0xE12A\n0xFBF0\t0xE12B\n0xFBF1\t0xE12C\n0xFBF2\t0xE12D\n0xFBF3\t0xE12E\n0xFBF4\t0xE12F\n0xFBF5\t0xE130\n0xFBF6\t0xE131\n0xFBF7\t0xE132\n0xFBF8\t0xE133\n0xFBF9\t0xE134\n0xFBFA\t0xE135\n0xFBFB\t0xE136\n0xFBFC\t0xE137\n0xFBFD\t0xE138\n0xFBFE\t0xE139\n0xFC40\t0xE13A\n0xFC41\t0xE13B\n0xFC42\t0xE13C\n0xFC43\t0xE13D\n0xFC44\t0xE13E\n0xFC45\t0xE13F\n0xFC46\t0xE140\n0xFC47\t0xE141\n0xFC48\t0xE142\n0xFC49\t0xE143\n0xFC4A\t0xE144\n0xFC4B\t0xE145\n0xFC4C\t0xE146\n0xFC4D\t0xE147\n0xFC4E\t0xE148\n0xFC4F\t0xE149\n0xFC50\t0xE14A\n0xFC51\t0xE14B\n0xFC52\t0xE14C\n0xFC53\t0xE14D\n0xFC54\t0xE14E\n0xFC55\t0xE14F\n0xFC56\t0xE150\n0xFC57\t0xE151\n0xFC58\t0xE152\n0xFC59\t0xE153\n0xFC5A\t0xE154\n0xFC5B\t0xE155\n0xFC5C\t0xE156\n0xFC5D\t0xE157\n0xFC5E\t0xE158\n0xFC5F\t0xE159\n0xFC60\t0xE15A\n0xFC61\t0xE15B\n0xFC62\t0xE15C\n0xFC63\t0xE15D\n0xFC64\t0xE15E\n0xFC65\t0xE15F\n0xFC66\t0xE160\n0xFC67\t0xE161\n0xFC68\t0xE162\n0xFC69\t0xE163\n0xFC6A\t0xE164\n0xFC6B\t0xE165\n0xFC6C\t0xE166\n0xFC6D\t0xE167\n0xFC6E\t0xE168\n0xFC6F\t0xE169\n0xFC70\t0xE16A\n0xFC71\t0xE16B\n0xFC72\t0xE16C\n0xFC73\t0xE16D\n0xFC74\t0xE16E\n0xFC75\t0xE16F\n0xFC76\t0xE170\n0xFC77\t0xE171\n0xFC78\t0xE172\n0xFC79\t0xE173\n0xFC7A\t0xE174\n0xFC7B\t0xE175\n0xFC7C\t0xE176\n0xFC7D\t0xE177\n0xFC7E\t0xE178\n0xFCA1\t0xE179\n0xFCA2\t0xE17A\n0xFCA3\t0xE17B\n0xFCA4\t0xE17C\n0xFCA5\t0xE17D\n0xFCA6\t0xE17E\n0xFCA7\t0xE17F\n0xFCA8\t0xE180\n0xFCA9\t0xE181\n0xFCAA\t0xE182\n0xFCAB\t0xE183\n0xFCAC\t0xE184\n0xFCAD\t0xE185\n0xFCAE\t0xE186\n0xFCAF\t0xE187\n0xFCB0\t0xE188\n0xFCB1\t0xE189\n0xFCB2\t0xE18A\n0xFCB3\t0xE18B\n0xFCB4\t0xE18C\n0xFCB5\t0xE18D\n0xFCB6\t0xE18E\n0xFCB7\t0xE18F\n0xFCB8\t0xE190\n0xFCB9\t0xE191\n0xFCBA\t0xE192\n0xFCBB\t0xE193\n0xFCBC\t0xE194\n0xFCBD\t0xE195\n0xFCBE\t0xE196\n0xFCBF\t0xE197\n0xFCC0\t0xE198\n0xFCC1\t0xE199\n0xFCC2\t0xE19A\n0xFCC3\t0xE19B\n0xFCC4\t0xE19C\n0xFCC5\t0xE19D\n0xFCC6\t0xE19E\n0xFCC7\t0xE19F\n0xFCC8\t0xE1A0\n0xFCC9\t0xE1A1\n0xFCCA\t0xE1A2\n0xFCCB\t0xE1A3\n0xFCCC\t0xE1A4\n0xFCCD\t0xE1A5\n0xFCCE\t0xE1A6\n0xFCCF\t0xE1A7\n0xFCD0\t0xE1A8\n0xFCD1\t0xE1A9\n0xFCD2\t0xE1AA\n0xFCD3\t0xE1AB\n0xFCD4\t0xE1AC\n0xFCD5\t0xE1AD\n0xFCD6\t0xE1AE\n0xFCD7\t0xE1AF\n0xFCD8\t0xE1B0\n0xFCD9\t0xE1B1\n0xFCDA\t0xE1B2\n0xFCDB\t0xE1B3\n0xFCDC\t0xE1B4\n0xFCDD\t0xE1B5\n0xFCDE\t0xE1B6\n0xFCDF\t0xE1B7\n0xFCE0\t0xE1B8\n0xFCE1\t0xE1B9\n0xFCE2\t0xE1BA\n0xFCE3\t0xE1BB\n0xFCE4\t0xE1BC\n0xFCE5\t0xE1BD\n0xFCE6\t0xE1BE\n0xFCE7\t0xE1BF\n0xFCE8\t0xE1C0\n0xFCE9\t0xE1C1\n0xFCEA\t0xE1C2\n0xFCEB\t0xE1C3\n0xFCEC\t0xE1C4\n0xFCED\t0xE1C5\n0xFCEE\t0xE1C6\n0xFCEF\t0xE1C7\n0xFCF0\t0xE1C8\n0xFCF1\t0xE1C9\n0xFCF2\t0xE1CA\n0xFCF3\t0xE1CB\n0xFCF4\t0xE1CC\n0xFCF5\t0xE1CD\n0xFCF6\t0xE1CE\n0xFCF7\t0xE1CF\n0xFCF8\t0xE1D0\n0xFCF9\t0xE1D1\n0xFCFA\t0xE1D2\n0xFCFB\t0xE1D3\n0xFCFC\t0xE1D4\n0xFCFD\t0xE1D5\n0xFCFE\t0xE1D6\n0xFD40\t0xE1D7\n0xFD41\t0xE1D8\n0xFD42\t0xE1D9\n0xFD43\t0xE1DA\n0xFD44\t0xE1DB\n0xFD45\t0xE1DC\n0xFD46\t0xE1DD\n0xFD47\t0xE1DE\n0xFD48\t0xE1DF\n0xFD49\t0xE1E0\n0xFD4A\t0xE1E1\n0xFD4B\t0xE1E2\n0xFD4C\t0xE1E3\n0xFD4D\t0xE1E4\n0xFD4E\t0xE1E5\n0xFD4F\t0xE1E6\n0xFD50\t0xE1E7\n0xFD51\t0xE1E8\n0xFD52\t0xE1E9\n0xFD53\t0xE1EA\n0xFD54\t0xE1EB\n0xFD55\t0xE1EC\n0xFD56\t0xE1ED\n0xFD57\t0xE1EE\n0xFD58\t0xE1EF\n0xFD59\t0xE1F0\n0xFD5A\t0xE1F1\n0xFD5B\t0xE1F2\n0xFD5C\t0xE1F3\n0xFD5D\t0xE1F4\n0xFD5E\t0xE1F5\n0xFD5F\t0xE1F6\n0xFD60\t0xE1F7\n0xFD61\t0xE1F8\n0xFD62\t0xE1F9\n0xFD63\t0xE1FA\n0xFD64\t0xE1FB\n0xFD65\t0xE1FC\n0xFD66\t0xE1FD\n0xFD67\t0xE1FE\n0xFD68\t0xE1FF\n0xFD69\t0xE200\n0xFD6A\t0xE201\n0xFD6B\t0xE202\n0xFD6C\t0xE203\n0xFD6D\t0xE204\n0xFD6E\t0xE205\n0xFD6F\t0xE206\n0xFD70\t0xE207\n0xFD71\t0xE208\n0xFD72\t0xE209\n0xFD73\t0xE20A\n0xFD74\t0xE20B\n0xFD75\t0xE20C\n0xFD76\t0xE20D\n0xFD77\t0xE20E\n0xFD78\t0xE20F\n0xFD79\t0xE210\n0xFD7A\t0xE211\n0xFD7B\t0xE212\n0xFD7C\t0xE213\n0xFD7D\t0xE214\n0xFD7E\t0xE215\n0xFDA1\t0xE216\n0xFDA2\t0xE217\n0xFDA3\t0xE218\n0xFDA4\t0xE219\n0xFDA5\t0xE21A\n0xFDA6\t0xE21B\n0xFDA7\t0xE21C\n0xFDA8\t0xE21D\n0xFDA9\t0xE21E\n0xFDAA\t0xE21F\n0xFDAB\t0xE220\n0xFDAC\t0xE221\n0xFDAD\t0xE222\n0xFDAE\t0xE223\n0xFDAF\t0xE224\n0xFDB0\t0xE225\n0xFDB1\t0xE226\n0xFDB2\t0xE227\n0xFDB3\t0xE228\n0xFDB4\t0xE229\n0xFDB5\t0xE22A\n0xFDB6\t0xE22B\n0xFDB7\t0xE22C\n0xFDB8\t0xE22D\n0xFDB9\t0xE22E\n0xFDBA\t0xE22F\n0xFDBB\t0xE230\n0xFDBC\t0xE231\n0xFDBD\t0xE232\n0xFDBE\t0xE233\n0xFDBF\t0xE234\n0xFDC0\t0xE235\n0xFDC1\t0xE236\n0xFDC2\t0xE237\n0xFDC3\t0xE238\n0xFDC4\t0xE239\n0xFDC5\t0xE23A\n0xFDC6\t0xE23B\n0xFDC7\t0xE23C\n0xFDC8\t0xE23D\n0xFDC9\t0xE23E\n0xFDCA\t0xE23F\n0xFDCB\t0xE240\n0xFDCC\t0xE241\n0xFDCD\t0xE242\n0xFDCE\t0xE243\n0xFDCF\t0xE244\n0xFDD0\t0xE245\n0xFDD1\t0xE246\n0xFDD2\t0xE247\n0xFDD3\t0xE248\n0xFDD4\t0xE249\n0xFDD5\t0xE24A\n0xFDD6\t0xE24B\n0xFDD7\t0xE24C\n0xFDD8\t0xE24D\n0xFDD9\t0xE24E\n0xFDDA\t0xE24F\n0xFDDB\t0xE250\n0xFDDC\t0xE251\n0xFDDD\t0xE252\n0xFDDE\t0xE253\n0xFDDF\t0xE254\n0xFDE0\t0xE255\n0xFDE1\t0xE256\n0xFDE2\t0xE257\n0xFDE3\t0xE258\n0xFDE4\t0xE259\n0xFDE5\t0xE25A\n0xFDE6\t0xE25B\n0xFDE7\t0xE25C\n0xFDE8\t0xE25D\n0xFDE9\t0xE25E\n0xFDEA\t0xE25F\n0xFDEB\t0xE260\n0xFDEC\t0xE261\n0xFDED\t0xE262\n0xFDEE\t0xE263\n0xFDEF\t0xE264\n0xFDF0\t0xE265\n0xFDF1\t0xE266\n0xFDF2\t0xE267\n0xFDF3\t0xE268\n0xFDF4\t0xE269\n0xFDF5\t0xE26A\n0xFDF6\t0xE26B\n0xFDF7\t0xE26C\n0xFDF8\t0xE26D\n0xFDF9\t0xE26E\n0xFDFA\t0xE26F\n0xFDFB\t0xE270\n0xFDFC\t0xE271\n0xFDFD\t0xE272\n0xFDFE\t0xE273\n0xFE40\t0xE274\n0xFE41\t0xE275\n0xFE42\t0xE276\n0xFE43\t0xE277\n0xFE44\t0xE278\n0xFE45\t0xE279\n0xFE46\t0xE27A\n0xFE47\t0xE27B\n0xFE48\t0xE27C\n0xFE49\t0xE27D\n0xFE4A\t0xE27E\n0xFE4B\t0xE27F\n0xFE4C\t0xE280\n0xFE4D\t0xE281\n0xFE4E\t0xE282\n0xFE4F\t0xE283\n0xFE50\t0xE284\n0xFE51\t0xE285\n0xFE52\t0xE286\n0xFE53\t0xE287\n0xFE54\t0xE288\n0xFE55\t0xE289\n0xFE56\t0xE28A\n0xFE57\t0xE28B\n0xFE58\t0xE28C\n0xFE59\t0xE28D\n0xFE5A\t0xE28E\n0xFE5B\t0xE28F\n0xFE5C\t0xE290\n0xFE5D\t0xE291\n0xFE5E\t0xE292\n0xFE5F\t0xE293\n0xFE60\t0xE294\n0xFE61\t0xE295\n0xFE62\t0xE296\n0xFE63\t0xE297\n0xFE64\t0xE298\n0xFE65\t0xE299\n0xFE66\t0xE29A\n0xFE67\t0xE29B\n0xFE68\t0xE29C\n0xFE69\t0xE29D\n0xFE6A\t0xE29E\n0xFE6B\t0xE29F\n0xFE6C\t0xE2A0\n0xFE6D\t0xE2A1\n0xFE6E\t0xE2A2\n0xFE6F\t0xE2A3\n0xFE70\t0xE2A4\n0xFE71\t0xE2A5\n0xFE72\t0xE2A6\n0xFE73\t0xE2A7\n0xFE74\t0xE2A8\n0xFE75\t0xE2A9\n0xFE76\t0xE2AA\n0xFE77\t0xE2AB\n0xFE78\t0xE2AC\n0xFE79\t0xE2AD\n0xFE7A\t0xE2AE\n0xFE7B\t0xE2AF\n0xFE7C\t0xE2B0\n0xFE7D\t0xE2B1\n0xFE7E\t0xE2B2\n0xFEA1\t0xE2B3\n0xFEA2\t0xE2B4\n0xFEA3\t0xE2B5\n0xFEA4\t0xE2B6\n0xFEA5\t0xE2B7\n0xFEA6\t0xE2B8\n0xFEA7\t0xE2B9\n0xFEA8\t0xE2BA\n0xFEA9\t0xE2BB\n0xFEAA\t0xE2BC\n0xFEAB\t0xE2BD\n0xFEAC\t0xE2BE\n0xFEAD\t0xE2BF\n0xFEAE\t0xE2C0\n0xFEAF\t0xE2C1\n0xFEB0\t0xE2C2\n0xFEB1\t0xE2C3\n0xFEB2\t0xE2C4\n0xFEB3\t0xE2C5\n0xFEB4\t0xE2C6\n0xFEB5\t0xE2C7\n0xFEB6\t0xE2C8\n0xFEB7\t0xE2C9\n0xFEB8\t0xE2CA\n0xFEB9\t0xE2CB\n0xFEBA\t0xE2CC\n0xFEBB\t0xE2CD\n0xFEBC\t0xE2CE\n0xFEBD\t0xE2CF\n0xFEBE\t0xE2D0\n0xFEBF\t0xE2D1\n0xFEC0\t0xE2D2\n0xFEC1\t0xE2D3\n0xFEC2\t0xE2D4\n0xFEC3\t0xE2D5\n0xFEC4\t0xE2D6\n0xFEC5\t0xE2D7\n0xFEC6\t0xE2D8\n0xFEC7\t0xE2D9\n0xFEC8\t0xE2DA\n0xFEC9\t0xE2DB\n0xFECA\t0xE2DC\n0xFECB\t0xE2DD\n0xFECC\t0xE2DE\n0xFECD\t0xE2DF\n0xFECE\t0xE2E0\n0xFECF\t0xE2E1\n0xFED0\t0xE2E2\n0xFED1\t0xE2E3\n0xFED2\t0xE2E4\n0xFED3\t0xE2E5\n0xFED4\t0xE2E6\n0xFED5\t0xE2E7\n0xFED6\t0xE2E8\n0xFED7\t0xE2E9\n0xFED8\t0xE2EA\n0xFED9\t0xE2EB\n0xFEDA\t0xE2EC\n0xFEDB\t0xE2ED\n0xFEDC\t0xE2EE\n0xFEDD\t0xE2EF\n0xFEDE\t0xE2F0\n0xFEDF\t0xE2F1\n0xFEE0\t0xE2F2\n0xFEE1\t0xE2F3\n0xFEE2\t0xE2F4\n0xFEE3\t0xE2F5\n0xFEE4\t0xE2F6\n0xFEE5\t0xE2F7\n0xFEE6\t0xE2F8\n0xFEE7\t0xE2F9\n0xFEE8\t0xE2FA\n0xFEE9\t0xE2FB\n0xFEEA\t0xE2FC\n0xFEEB\t0xE2FD\n0xFEEC\t0xE2FE\n0xFEED\t0xE2FF\n0xFEEE\t0xE300\n0xFEEF\t0xE301\n0xFEF0\t0xE302\n0xFEF1\t0xE303\n0xFEF2\t0xE304\n0xFEF3\t0xE305\n0xFEF4\t0xE306\n0xFEF5\t0xE307\n0xFEF6\t0xE308\n0xFEF7\t0xE309\n0xFEF8\t0xE30A\n0xFEF9\t0xE30B\n0xFEFA\t0xE30C\n0xFEFB\t0xE30D\n0xFEFC\t0xE30E\n0xFEFD\t0xE30F\n0xFEFE\t0xE310\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-1999-snippet",
    "content": "@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n           \n@ A    C       F G H I       L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                        \n                   \n                   \n               \n               \n              \n@ A    C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b    d e f g h i j k l m n o\np q r s t    v w x y z { | } ~\n                   \n                   \n                   \n                   \n               \n                \n@ A B C D E F G H I J K L M N O\nP Q R S    U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n                 \n               \n             \n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h    j k l m n\np q r s t u v w x y z { | }\n                   \n                 \n                 \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V    X Y Z [ \\ ] ^ _\n` a b c d e f g h    j k l m    o\np q r s t u v w x y z { | } ~\n                 \n               \n                   \n               \n               \n             \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l    n o\np q r s t u v w x y    { | } ~\n                 \n               \n               \n                 \n               \n                \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n              \n               \n               \n               \n              \n@ A B C    E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                \n                     \n                 \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F    H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n                 \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n                 \n               \n              \n@ A B C    E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n                 \n                \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n`    b c d e f g h i j k l m n o\np q r s t u    w    y z    | } ~\n                 \n               \n                 \n                 \n                 \n                \n@ A    C D E F G H I J K L M N O\nP Q R    T U V W X Y Z [ \\ ] ^ _\n` a    c d e f g    i j    l m n o\np q r s t u v    x y z { | } ~\n                 \n                   \n               \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V    X Y    [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n                 \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                     \n               \n                 \n               \n              \n                  \n@ A B C D E F G H I J K L M    O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n   a b c d e    g h i j k l m n o\np q r s t u v w x y z { | } ~\n                   \n                 \n                     \n                   \n                  \n              \n@ A B C D E F G H I J K L M N O\nP Q R S    U V    X Y    [ \\ ] ^ _\n` a       d e f g h i j k l m n o\np q    s t u v    x y z { | } ~\n                    \n               \n               \n                  \n                   \n              \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-1999-snippet.UTF-8",
    "content": "㇀ ㇁ ㇂ ㇃ ㇄ 𠄌 ㇅ 𠃑 𠃍 ㇆ ㇇ 𠃋 𡿨 ㇈ 𠃊 ㇉\n㇊ ㇋ ㇌ 𠄎 ㇍ ㇎ Ā Á Ǎ À Ē É Ě È Ō Ó\nǑ Ò Ê̄ Ế Ê̌ Ề Ê ā á ǎ à ɑ ē é ě è\nī í ǐ ì ō ó ǒ ò ū ú ǔ ù ǖ ǘ ǚ\n  ǜ ü ê̄ ế ê̌ ề ê ɡ ⏚ ⏛\n𪎩 𡅅    攊       丽 滝 鵎 釟       𧜵 撑 会 伨\n侨 兖 兴 农 凤 务 动 医 华 发 变 团 声 处 备 夲\n头 学 实 実 岚 庆 总 斉 柾 栄 桥 济 炼 电 纤 纬\n纺 织 经 统 缆 缷 艺 苏 药 视 设 询 车 轧 轮\n   琑 糼 緍 楆 竉 刧             醌 碸 酞 肼\n贋 胶 𠧧       肟 黇 䳍 鷉 鸌 䰾 𩷶 𧀎 鸊 𪄳 㗁\n   溚 舾 甙    䤑 马 骏 龙 禇 𨑬 𡷊 𠗐 𢫦 两 亁\n亀 亇 亿 仫 伷 㑌 侽 㹈 倃 傈 㑽 㒓 㒥 円 夅 凛\n凼 刅 争 剹 劐 匧 㗇 厩 㕑 厰 㕓 参 吣 㕭 㕲 㚁\n咓 咣 咴 咹 哐 哯 唘 唣 唨 㖘 唿 㖥 㖿 嗗 㗅\n𧶄 唥    𠱂 𠴕 𥄫 喐 𢳆 㧬 𠍁 蹆 𤶸 𩓥 䁓 𨂾 睺\n𢰸 㨴 䟕 𨅝 𦧲 𤷪 擝 𠵼 𠾴 𠳕 𡃴 撍 蹾 𠺖 𠰋 𠽤\n𢲩 𨉖 𤓓    𠵆 𩩍 𨃩 䟴 𤺧 𢳂 骲 㩧 𩗴 㿭 㔆 𥋇\n𩟔 𧣈 𢵄 鵮 頕    䏙 𦂥 撴 哣 𢵌 𢯊 𡁷 㧻 𡁯\n   𦛚 𦜖 𧦠 擪 𥁒 𠱃 蹨 𢆡 𨭌 𠜱    䠋 𠆩 㿺 塳\n𢶍    𤗈 𠓼 𦂗 𠽌 𠶖 啹 䂻 䎺    䪴 𢩦 𡂝 膪 飵\n𠶜 捹 㧾 𢝵 跀 嚡 摼 㹃    𪘁 𠸉 𢫏 𢳉    𡃈 𣧂\n㦒 㨆 𨊛 㕸 𥹉 𢃇 噒 𠼱 𢲲 𩜠 㒼 氽 𤸻       𧕴\n𢺋 𢈈 𪙛 𨳍 𠹺 𠰴 𦠜 羓 𡃏 𢠃 𢤹 㗻 𥇣 𠺌 𠾍 𠺪\n㾓 𠼰 𠵇 𡅏 𠹌    𠺫 𠮩 𠵈 𡃀 𡄽 㿹 𢚖 搲 𠾭\n𣏴 𧘹 𢯎 𠵾 𠵿 𢱑 𢱕 㨘 𠺘 𡃇 𠼮 𪘲 𦭐 𨳒 𨶙 𨳊\n閪 哌 苄 喹    𩻃 鰦 骶 𧝞 𢷮 煀 腭 胬 尜 𦕲 脴\n㞗 卟 𨂽 醶 𠻺 𠸏 𠹷 𠻻 㗝 𤷫 㘉 𠳖 嚯 𢞵 𡃉 𠸐\n𠹸 𡁸 𡅈 𨈇 𡑕 𠹹 𤹐 𢶤 婔 𡀝 𡀞 𡃵 𡃶 垜 𠸑\n   𧚔 𨋍 𠾵 𠹻 𥅾 㜃 𠾶 𡆀 𥋘 𪊽 𤧚 𡠺 𤅷 𨉼 墙\n剨 㘚 𥜽 箲 孨 䠀 䬬 鼧 䧧 鰟 鮍 𥭴 𣄽 嗻 㗲 嚉\n丨 夂 𡯁 屮 靑 𠂆 乛 亻 㔾 尣 彑 忄 㣺 扌 攵 歺\n氵 氺 灬 爫 丬 犭 𤣩 罒 礻 糹 罓 𦉪 㓁    𦍋 耂\n肀 𦘒 𦥑 卝 衤 见 𧢲 讠 贝 钅 镸 长 门 𨸏 韦 页\n风 飞 饣 𩠐 鱼 鸟 黄 歯 龜 丷 𠂇 阝 户 钢\n崾 嵈 嵖 㷼 㠏 嶤 嶹 㠠 㠸 幂 庽 弥 徃 㤈 㤔 㤿\n㥍 惗 愽 峥 㦉 憷 憹 懏 㦸 戬 抐 拥 挘 㧸 嚱\n   㨃 揢 揻 搇 摚 㩋 擀 崕 嘡 龟 㪗 斆 㪽 旿 晓\n㫲 暒 㬢 朖 㭂 枤 栀 㭘 桊 梄 㭲 㭱 㭻 椉 楃 牜\n楤 榟 榅 㮼 槖 㯝 橥 橴 橱 檂 㯬 檙 㯲 檫 檵 櫔\n櫶 殁 毁 毪 汵 沪 㳋 洂 洆 洦 涁 㳯 涤 涱 渕 渘\n温 溆 𨧀 溻 滢 滚 齿 滨 滩 漤 漴 㵆 𣽁 澁 澾 㵪\n㵵 熷 岙 㶊 瀬 㶑 灐 灔 灯 灿 炉 𠌥 䏁 㗱 𠻘\n𣻗 垾 𦻓 焾 𥟠 㙎 榢 𨯩 孴 穉 𥣡 𩓙 穥 穽 𥦬 窻\n窰 竂 竃 燑 𦒍 䇊 竚 竝 竪 䇯 咲 𥰁 笋 筕 笩 𥌎\n𥳾 箢 筯 莜 𥮴 𦱿 篐 萡 箒    𥴠 㶭 𥱥 蒒 篺\n簵 𥳁 籄 粃 𤢂 粦 晽 𤕸 糉 糇 糦 籴 糳 糵\n   繧 䔝 𦹄 絝 𦻖 璍 綉 綫 焵 綳    𤁗 𦀩 緤 㴓\n緵 𡟹 緥 𨍭    𦄡 𦅚 繮 纒 䌫 鑬 縧 罀 罁 罇 礶\n𦋐 駡 羗 𦍑 羣 𡙡 𠁨 䕜 𣝦 䔃 𨌺 翺 𦒉    耈 耝\n   耯 𪂇 𦳃 耻 耼 聡 𢜔 䦉 𦘦 𣷣 𦛨 朥 肧 𨩈 脇\n脚 墰 𢛶 汿 𦒘 𤾸 擧 𡒊 舘 𡡞 橓 𤩥 𤪕 䑺 舩 𠬍\n𦩒 𣵾 俹 𡓽 蓢 荢 𦬊 𤦧 𣔰 𡝳 𣷸 芪 椛 芳 䇛\n蕋 苐 茚 𠸖 𡞴 㛁 𣅽 𣕚 艻 苢 茘 𣺋 𦶣 𦬅 𦮗 𣗎\n㶿 茝 嗬 莅 䔋 𦶥 莬    菓 㑾 𦻔 橗 蕚 㒖 𦹂 𢻯\n葘 𥯤 葱 㷓 䓤 檧 葊 𣲵 祘    𦮖 𦹷 𦹃 蓞    莑\n䒠 蒓 蓤 𥲑 䉀 𥳀 䕃 蔴 嫲 𦺙 䔧 蕳 䔖 枿 蘖\n   𨘥 𨘻 藁 𧂈 蘂 𡖂 𧃍 䕫 䕪 蘨 㙈 𡢢 号 𧎚 虾\n蝱 𪃸 蟮 𢰧 螱 蟚 蠏 噡 虬 桖 䘏 衅 衆 𧗠 𣶹 𧗤\n衞 袜 䙛 袴 袵 揁 装 睷 𧜏 覇 覊       覧 覼 𨨥\n觧 𧤤 𧪽 誜 瞓 釾 誐 𧩙 竩 𧬺 𣾏 䜓 𧬸 煼 謌 謟\n𥐰 𥕥 謿 譌 譍 誩 𤩺 讐 讛 誯 𡛟 䘕 衏 貛 𧵔 𧶏\n貫 㜥 𧵓 賖 𧶘 𧶽 贒 贃 𡤐 賛 灜 贑 𤳉 㻐\n趩 𨀂 𡀔 𤦊 㭼 𨆼 𧄌 竧 躭 躶 軃 鋔 輙 輭 𨍥 𨐒\n辥 錃 𪊟 𠩐 辳 䤪 𨧞 𨔽 𣶻 廸 𣉢 迹 𪀔 𨚼 𨔁 𢌥\n㦀 𦻗 逷 𨔼 𧪾 遡 𨕬 𨘋 邨 𨜓 郄 𨛦 邮    酧 㫰\n醩 釄 粬 𨤳 𡺉 鈎 沟 鉁 鉢 𥖹    𨫆 𣲛 𨬌 𥗛\n   𠴱 錬 鍫 𨫡 𨯫 炏 嫃 𨫢 𨫥 䥥 鉄 𨯬 𨰹 𨯿 鍳\n鑛 躼 閅 閦 鐦 閠 濶 䊹 𢙺 𨛘 𡉼 𣸮 䧟 氜 陻 隖\n䅬 隣 𦻕 懚 隶 磵 𨫠 隽 双 䦡 𦲸 𠉴 𦐐 𩂯 𩃥 𤫑\n𡤕 𣌊 霱 虂 霶 䨏 䔽 䖅 𤫩 灵 孁 霛    𩇕 靗 孊\n𩇫 靟 鐥 僐 𣂷 𣂼 鞉 鞟 鞱 鞾 韀 韒 韠 𥑬 韮 琜\n𩐳    韵 𩐝 𧥺 䫑 頴 頳 顋 顦 㬎 𧅵 㵑 𠘰 𤅜\n𥜆 飊 颷 飈 飇 䫿 𦴧 𡛓 喰 飡 飦 飬 鍸 餹 𤨩 䭲\n𩡗 𩤅 駵 騌 騻 騐 驘 𥜥 㛄 𩂱 𩯕 髠 髢 𩬅 髴 䰎\n鬔 鬭 𨘀 倴 鬴 𦦨 㣃 𣁽 魐 魀 𩴾 婅 𡡣 鮎 𤉋 鰂\n鯿 鰌 𩹨 鷔 𩾷 𪆒 𪆫 𪃡 𪄣 𪇟 鵾 鶃 𪄴 鸎 梈\n   鷄 𢅛 𪆓 𪈠 𡤻 𪈳 鴹 𪂹 𪊴 麐 麕 麞 麢 䴴 麪\n麯 𤍤 黁 㭠 㧥 㴝 伲 㞾 𨰫 鼂 鼈 䮖 鐤 𦶢 鼗\n鼹 嚟 嚊 齅 馸 𩂋 韲 葿 齢 齩 竜 龎 爖 䮾 𤥵 𤦻\n煷 𤧸 𤍈 𤩑 玞 𨯚 𡣺 禟 𨥾 𨸶 鍩 鏳 𨩄 鋬 鎁 鏋\n𨥬 𤒹 爗 㻫 睲 穃 烐 𤑳 𤏸 煾 𡟯 炣 𡢾 𣖙 㻇 𡢅\n𥐯 𡟸 㜢 𡛻 𡠹 㛡 𡝴 𡣑 𥽋 㜣 𡛀 坛 𤨥 𡏾 𡊨\n𡏆 𡒶 蔃 𣚦    葕 𤦔 𧅥 𣸱 𥕜 𣻻 𧁒 䓴 𣛮 𩦝 𦼦\n柹 㜳 㰕 㷧 塬 𡤢 栐 䁗 𣜿 𤃡 𤂋 𤄏 𦰡 哋 嚞 𦚱\n嚒 𠿟 𠮨 𠸍 鏆 𨬓 鎜 仸 儫 㠙 𤐶 亼 𠑥 𠍿 佋 侊\n𥙑 婨 𠆫 𠏋 㦙 𠌊 𠐔 㐵 伩 𠋀 𨺳 𠉵 諚 𠈌 亘\n   働 儍 侢 伃 𤨎 𣺊 佂 倮 偬 傁 俌 俥 偘 僼\n         湶 𣖕 𣸹 𣺿 浲 𡢄 𣺉 冨 凃 𠗠 䓝 𠒣 𠒒\n𠒑 赺 𨪜 𠜎 剙 劤 𠡳 勡    䙺 熌 𤎌 𠰠 𤦬 𡃤 槑\n𠸝    㻞 璙 琔 瑖 玘 䮎 𤪼 𤂍 叐 㖄 爏 𤃉 喴 𠍅\n响 𠯆 圝 鉝 雴 鍦 埝 垍 坿 㘾 壋 媙 𨩆 𡛺 𡝯 𡜐\n娬 妸 銏 婾 嫏 娒 𥥆 𡧳 𡡡 𤊕 㛵 洅 瑃 娡 𥺃\n媁 𨯗 𠐓 鏠 璌 𡌃 焅 䥲 鐈 𨧻 鎽 㞠 尞 岞 幞 幈\n𡦖 𡥼 𣫮 廍 孏 𡤃 𡤄 㜁 𡢠 㛝 𡛾 㛓 脪 𨩇 𡶺 𣑲\n𨦨 弌 弎 𡤧 𡞫 婫 𡜻 孄 蘔 𧗽 衠 恾 𢡠 𢘫 忛 㺸\n𢖯 𢖾 𩂈 𦽳 懀 𠀾 𠁆 𢘛 憙 憘 恵 𢲛 𢴇 𤛔 𩅍\n   摱 𤙥 𢭪 㨩 𢬢 𣑐 𩣪 𢹸 挷 𪑛 撶 挱 揑 𤧣 𢵧\n护 𢲡 搻 敫 楲 㯴 𣂎 𣊭 𤦉 𣊫 唍 𣋠 𡣙 𩐿 曎 𣊉\n𣆳 㫠 䆐 𥖄 𨬢 𥖏 𡛼 𥕛 𥐥 磮 𣄃 𡠪 𣈴 㑤 𣈏 𣆂\n𤋉 暎 𦴤 晫 䮓 昰 𧡰 𡷫 晣 𣋒 𣋡 昞 𥡲 㣑 𣠺 𣞼\n㮙 𣞢 𣏾 瓐 㮖 枏 𤘪 梶 栞 㯄 檾 㡣 𣟕 𤒇 樳 橒\n櫉 欅 𡤒 攑 梘 橌 㯗 橺 歗 𣿀 𣲚 鎠 鋲 𨯪 𨫋\n銉 𨀞 𨧜 鑧 涥 漋 𤧬    𣽿 㶏 渄 𤀼 娽 渊 塇 洤\n硂 焻 𤌚 𤉶 烱 牐 犇 犔 𤞏 𤜥 兹 𤪤 𠗫 瑺 𣻸 𣙟\n𤩊 𤤗 𥿡 㼆 㺱 𤫟 𨰣 𣼵 悧 㻳 瓌 琼 鎇 琷 䒟 𦷪\n䕑 疃 㽣 𤳙 𤴆 㽘 畕 癳 𪗆 㬙 瑨 𨫌 𤦫 𤦎 㫻\n   㷍 𤩎 㻿 𤧅 𤣳 釺 圲 鍂 𨫣 𡡤 僟 𥈡 𥇧 睸 𣈲\n眎 眏 睻 𤚗 𣞁 㩞 𤣰 琸 璛 㺿 𤪺 𤫇 䃈 𤪖 𦆮 錇\n𥖁 砞 碍 碈 磒 珐 祙 𧝁 𥛣 䄎    蒖 禥 樭 𣻺 稺\n秴 䅮 𡛦 䄲 鈵 秱 𠵌 𤦌 𠊙 𣶺 𡝮 㖗 啫 㕰 㚪 𠇔\n𠰍 竢 婙 𢛵 𥪯 𥪜 娍 𠉛 磰 娪 𥯆 竾 䇹 籝 籭 䈑\n𥮳 𥺼 𥺦 糍 𤧹 𡞰 粎 籼 粮 檲 緜 縇 緓 罎 𦉡\n𦅜 𧭈 綗 𥺂 䉪 𦭵 𠤖 柖 𠁎 𣗏 埄 𦐒 𦏸 𤥢 翝 笧\n𠠬 𥫩 𥵃 笌 𥸎 駦 虅 驣 樜 𣐿 㧢 𤧷 𦖭 騟 𦖠 蒀\n𧄧 𦳑 䓪 脷 䐂 胆 脉 腂 𦞴 飃 𦩂 艢 艥 𦩑 葓 𦶧\n蘐 𧈛 媆 䅿 𡡀 嬫 𡢡 嫤 𡣘 蚠 蜨 𣶏 蠭 𧐢 娂\n   衮 佅 袇 袿 裦 襥 襍 𥚃 襔 𧞅 𧞄 𨯵 𨯙 𨮜 𨧹\n㺭 蒣 䛵 䛏 㟲 訽 訜 𩑈 彍 鈫 𤊄 旔 焩 烄 𡡅 鵭\n貟 賩 𧷜 妚 矃 姰 䍮 㛔 踪 躧 𤰉 輰 轊 䋴 汘 澻\n𢌡 䢛 潹 溋 𡟚 鯩 㚵 𤤯 邻    啱 䤆 醻 鐄 𨩋 䁢\n𨫼 鐧 𨰝 𨰻 蓥 訫 閙 閧 閗 閖 𨴴 瑅 㻂 𤣿 𤩂 𤏪\n㻧 𣈥 随 𨻧 𨹦 𨹥 㻌 𤧭 𤩸 𣿮 琒 瑫 㻼 靁 𩂰\n桇 䨝 𩂓 𥟟    鍨 𨦉 𨰦 𨬯 𦎾 銺 嬑 譩 䤼 珹 𤈛\n鞛 靱 餸 𠼦 巁 𨯅 𤪲 頟 𩓚 鋶 𩗗 釥 䓀 𨭐 𤩧 𨭤\n飜 𨩅 㼀 鈪 䤥 萔 餻 饍 𧬆 㷽 馛 䭯 馪 驜 𨭥 𥣈\n檏 騡 嫾 騯 𩣱 䮐 𩥈 馼 䮽 䮗 鍽 塲 𡌂 堢 𤦸\n   𡓨 硄 𢜟 𣶸 棅 㵽 鑘 㤧 慐 𢞁 𢥫 愇 鱏 鱓 鱻\n鰵 鰐 魿 鯏 𩸭 鮟 𪇵 𪃾 鴡 䲮 𤄄 鸘 䲰 鴌 𪆴 𪃭\n𪃳 𩤯 鶥 蒽 𦸒 𦿟 𦮂 藼 䔳 𦶤 𦺄 𦷰 萠 藮 𦸀 𣟗\n𦁤 秢 𣖜 𣙀 䤭 𤧞 㵢 鏛 銾 鍈 𠊿 碹 鉷 鑍 俤 㑀\n遤 𥕝 砽 硔 碶 硋 𡝗 𣇉 𤥁 㚚 佲 濚 濙    瀞 吔\n𤆵 垻 壳 垊 鴖 埗 焴 㒯 𤆬 燫 𦱀 𤾗    𡞵 𨩉\n愌 嫎 娋 䊼 𤒈 㜬 䭻 𨧼 鎻 鎸 𡣖 𠼝 葲 𦳀 𡐓 𤋺\n𢰦 𤏁 妔 𣶷 𦝁 綨 𦅛 𦂤 𤦹 𤦋 𨧺 鋥 珢 㻩 璴 𨭣\n𡢟 㻡 𤪳 櫘 珳 珻 㻖 𤨾 𤪔 𡟙 𤩦 𠎧 𡐤 𤧥 瑈 𤤖\n炥 𤥶 銄 珦 鍟 𠓾 錱 𨫎 𨨖 鎆 𨯧 𥗕 䤵 𨪂 煫\n   𤥃 𠳿 嚤 𠘚 𠯫 𠲸 唂 秄 𡟺 緾 𡛂 𤩐 𡡒 䔮 鐁\n㜊 𨫀 𤦭 妰 𡢿 𡢃 𧒄 媡 㛢 𣵛 㚰 鉟 婹 𨪁 𡡢 鍴\n㳍 𠪴 䪖 㦊 僴 㵩 㵌 𡎜 煵 䋻 𨈘 渏 𩃤 䓫 浗 𧹏\n灧 沯 㳖 𣿭 𣸭 渂 漌 㵯 𠏵 畑 㚼 㓈 䚀 㻚 䡱 姄\n鉮 䤾 轁 𨰜 𦯀 堒 埈 㛖 𡑒 烾 𤍢 𤩱 𢿣 𡊰 𢎽 梹\n楧 𡎘 𣓥 𧯴 𣛟 𨪃 𣟖 𣏺 𤲟 樚 𣚭 𦲷 萾 䓟 䓎\n𦴦 𦵑 𦲂 𦿞 漗 𧄉 茽 𡜺 菭 𦲀 𧁓 𡟛 妉 媂 𡞳 婡\n婱 𡤅 𤇼 㜭 姯 𡜼 㛇 熎 鎐 暚 𤊥 婮 娫 𤊓 樫 𣻹\n𧜶 𤑛 𤋊 焝 𤉙 𨧡 侰 𦴨 峂 𤓎 𧹍 𤎽 樌 𤉖 𡌄 炦\n焳 𤏩 㶥 泟 勇 𤩏 繥 姫 崯 㷳 彜 𤩝 𡟟 綤 萦\n   咅 𣫺 𣌀 𠈔 坾 𠣕 𠘙 㿥 𡾞 𪊶 瀃 𩅛 嵰 玏 糓\n𨩙 𩐠 俈 翧 狍 猐 𧫴 猸 猹 𥛶 獁 獈 㺩 𧬘 遬 燵\n𤣲 珡 臶 㻊 県 㻑 沢 国 琙 琞 琟 㻢 㻰 㻴 㻺 瓓\n㼎 㽓 畂 畭 畲 疍 㽼 痈 痜 㿀 癍 㿗 癴 㿜 発 𤽜\n熈 嘣 覀 塩 䀝 睃 䀹 条 䁅 㗛 瞘 䁪 䁯 属 瞾 矋\n売 砘 点 砜 䂨 砹 硇 硑 硦 葈 𥔵 礳 栃 礲 䄃\n䄉 禑 禙 辻 稆 込 䅧 窑 䆲 窼 艹 䇄 竏 竛 䇏 両\n筢 筬 筻 簒 簛 䉠 䉺 类 粜 䊌 粸 䊔 糭 输 烀 𠳏\n総 緔 緐 緽 羮 羴 犟 䎗 耠 耥 笹 耮 耱 联 㷌 垴\n炠 肷 胩 䏭 脌 猪 脎 脒 畠 脔 䐁 㬹 腖 腙 腚\n   䐓 堺 腼 膄 䐥 膓 䐭 膥 埯 臁 臤 艔 䒏 芦 艶\n苊 苘 苿 䒰 荗 险 榊 萅 烵 葤 惣 蒈 䔄 蒾 蓡 蓸\n蔐 蔸 蕒 䔻 蕯 蕰 藠 䕷 虲 蚒 蚲 蛯 际 螋 䘆 䘗\n袮 裿 褤 襇 覑 𧥧 訩 訸 誔 誴 豑 賔 賲 贜 䞘 塟\n跃 䟭 仮 踺 嗘 坔 蹱 嗵 躰 䠷 軎 転 軤 軭 軲 辷\n迁 迊 迌 逳 駄 䢭 飠 鈓 䤞 鈨 鉘 鉫 銱 銮 銿\n鋣 鋫 鋳 鋴 鋽 鍃 鎄 鎭 䥅 䥑 麿 鐗 匁 鐝 鐭 鐾\n䥪 鑔 鑹 锭 関 䦧 间 阳 䧥 枠 䨤 靀 䨵 鞲 韂 噔\n䫤 惨 颹 䬙 飱 塄 餎 餙 冴 餜 餷 饂 饝 饢 䭰 駅\n䮝 騼 鬏 窃 魩 鮁 鯝 鯱 鯴 䱭 鰠 㝯 𡯂 鵉 鰺\n   黾 噐 鶓 鶽 鷀 鷼 银 辶 鹻 麬 麱 麽 黆 铜 黢\n黱 黸 竈 齄 𠂔 𠊷 𠎠 椚 铃 妬 𠓗 塀 铁 㞹 𠗕 𠘕\n𠙶 𡚺 块 煳 𠫂 𠫍 𠮿 呪 吆 𠯋 咞 𠯻 𠰻 𠱓 𠱥 𠱼\n惧 𠲍 噺 𠲵 𠳝 𠳭 𠵯 𠶲 𠷈 楕 鰯 螥 𠸄 𠸎 𠻗 𠾐\n𠼭 𠹳 尠 𠾼 帋 𡁜 𡁏 𡁶 朞 𡁻 𡂈 𡂖 㙇 𡂿 𡃓 𡄯\n𡄻 卤 蒭 𡋣 𡍵 𡌶 讁 𡕷 𡘙 𡟃 𡟇 乸 炻 𡠭 𡥪\n𡨭 𡩅 𡰪 𡱰 𡲬 𡻈 拃 𡻕 𡼕 熘 桕 𢁅 槩 㛈 𢉼 𢏗\n𢏺 𢜪 𢡱 𢥏 苽 𢥧 𢦓 𢫕 覥 𢫨 辠 𢬎 鞸 𢬿 顇 骽\n𢱌    𢲈 𢲷 𥯨 𢴈 𢴒 𢶷 𢶕 𢹂 𢽴 𢿌 𣀳 𣁦 𣌟 𣏞\n徱 晈 暿 𧩹 𣕧 𣗳    𤦺    𣘚 𣜖    𠍆 墵 朎\n   椘 𣪧 𧙗 𥿢 𣸑 𣺹 𧗾 𢂚 䣐 䪸 𤄙 𨪚 𤋮 𤌍 𤀻\n𤌴 𤎖 𤩅 𠗊 凒 𠘑 妟 𡺨 㮾 𣳿 𤐄 𤓖 垈 𤙴 㦛 𤜯\n𨗨 𩧉 㝢 𢇃 譞 𨭎    𤠒 𤣻 𤨕 爉 𤫀 𠱸 奥 𤺥 𤾆\n𠝹 軚 𥀬 劏 圿 煱 𥊙 𥐙 𣽊 𤪧 喼 𥑆 𥑮 𦭒    㑳\n𥔿 𧘲 𥕞 䜘 𥕢 𥕦 𥟇 𤤿 𥡝 偦 㓻 𣏌    𥤃 䝼 𨥈\n𥪮 𥮉 𥰆 𡶐 垡 煑    𦄂 𧰒 遖 𦆲 𤾚 譢 𦐂 𦑊\n嵛 𦯷    𦒄 𡤜 諪 𤧶 𦒈 𣿯 𦔒 䯀 𦖿 𦚵 𢜛 鑥 𥟡\n憕 娧 晉    嚹 𤔡 𦛼 乪 𤤴 陖 涏 𦲽 㘘 襷 𦞙 𦡮\n𦐑 𦡞    𦣇 筂 𩃀 𠨑 𦤦    𦤹 穅    𦧺 騦 𦨭 㙟\n𦑩 𠀡 禃 𦨴 𦭛 崬 𣔙    𦮝 䛐 𦲤 画 补 𦶮 墶\n   㜜 𢖍 𧁋 𧇍 㱔 𧊀 𧊅 銁 𢅺 𧊋 錰 𧋦 𤧐 氹 钟\n𧑐 𠻸 蠧 裵 𢤦 𨑳 𡞱 溸 𤨪 𡠠 㦤 㚹       䔿 暶\n𩲭 𩢤 襃 𧟌 𧡘 囖 䃟 𡘊 㦡 𣜯 𨃨 𡏅 熭 荦 𧧝 𩆨\n   䲷 𧂯 𨦫 𧧽 𧨊 𧬋 𧵦 𤅺 筃 祾 𨀉 澵 𪋟 樃 𨌘\n厢 𦸇 鎿 栶 靝 𨅯 𨀣 𦦵 𡏭 𣈯 𨁈 嶅 𨰰 𨂃 圕 頣\n𨥉 嶫 𤦈 斾 槕 叒 𤪥 𣾁 㰑 朶 𨂐 𨃴 𨄮 𡾡 𨅏\n𨆉 𨆯 𨈚 𨌆 𨌯 𨎊 㗊 𨑨 𨚪 䣺 揦 𨥖 砈 鉕 𨦸 䏲\n𨧧 䏟 𨧨 𨭆 𨯔 姸 𨰉    𨿅 𩃬    𩄐 𩄼 㷷 𩅞 𤫊\n运 犏 嚋 𩓧 𩗩 𩖰 𩖸 𩜲 𩣑 𩥉 𩥪 𩧃 𩨨 𩬎 𩵚 𩶛\n纟 𩻸 𩼣 䲤 镇 𪊓 熢 𪋿 䶑 递 𪗋 䶜 𠲜 达 嗁\n   辺 𢒰 边 𤪓 䔉 繿 潖 檱 仪 㓤 𨬬 𧢝 㜺 躀 𡟵\n𨀤 𨭬 𨮙 𧨾 𦚯 㷫 𧙕 𣲷 𥘵 𥥖 亚 𥺁 𦉘 嚿 𠹭 踎\n孭 𣺈 𤲞 揞    𡟶 𡡻 攰 嘭 𥱊 吚 𥌑 㷆 𩶘 䱽 嘢\n嘞 罉 𥻘 奵 𣵀 蝰 东 𠿪 𠵉 𣚺 脗 鵞 贘 瘻 鱅 癎\n瞹 鍅 吲 腈 苷 嘥 脲 萘 肽 嗪 祢 噃 吖 𠺝 㗎 嘅\n嗱 曱 𨋢 㘭 甴 嗰 喺 咗 啲 𠱁 𠲖 廐 𥅈 𠹶 𢱢\n𠺢 麫 絚 嗞 𡁵 抝 靭 咔 賍 燶 酶 揼 掹 揾 啩 𢭃\n鱲 𢺳 冚 㓟 𠶧 冧 呍 唞 唓 癦 踭 𦢊 疱 肶 蠄 螆\n裇 膶 萜 𡃁 䓬 猄 𤜆 宐 茋 𦢓 噻 𢛴 𧴯 𤆣 𧵳 𦻐\n𧊶 酰 𡇙 鈈 𣳼 𪚩 𠺬 𠻹 牦 𡲢 䝎 𤿂 𧿹 𠿫 䃺\n   鱝 攟 𢶠 䣳 𤟠 𩵼 𠿬 𠸊    𧖣 𠿭    𦁈 𡆇 熣\n纎 鵐 业 丄 㕷 嬍 沲 卧 㚬 㧜 卽 㚥 𤘘 墚 𤭮 舭\n呋 垪 𥪕 𠥹    㩒 𢑥 獴 𩺬 䴉 鯭 𣳾 𩼰 䱛 𤾩 𩖞\n𩿞 葜 𣶶 𧊲 𦞳 𣜠 挮 紥 𣻷 𣸬 㨪 逈 勌 㹴 㙺 䗩\n𠒎 癀 嫰 𠺶 硺 𧼮 墧 䂿 噼 鮋 嵴 癔 𪐴 麅 䳡\n㟻 愙 𣃚 𤏲    噝 𡊩 垧 𤥣 𩸆 刴 𧂮 㖭    鵼\n籖 鬹 埞 𡝬 屓 擓 𩓐 𦌵 𧅤 蚭 𠴨 𦴢 𤫢 𠵱    凾\n𡼏 嶎 霃 𡷑 麁 遌 笟 鬂 峑 箣 扨 挵 髿 篏 鬪 籾\n   籂 粆 鰕 篼 鬉    鰛 𤤾 齚 啳 寃 俽 麘 俲 剠\n㸆 勑 坧 偖 妷 帒 韈 鶫 轜 呩 鞴 饀 鞺 匬 愰\n   椬 叚 鰊 鴂 䰻 陁 榀 傦 畆 𡝭 駚 剳    酙 隁\n酜    酑 𨺗 捿 𦴣 櫊 嘑 醎 畺 抅 𠏼 獏 籰 𥰡 𣳽\n   𤤙 盖 鮝 个 𠳔 莾 衂    届 槀    坺 刟 巵 从\n氱 𠇲 伹 咜 哚 劚 趂 㗾    㗳    歒 酼 龥 鮗 頮\n颴 骺 麨 麄 煺 笔    毺 蠘 罸    嘠 𪙊 蹷 齓\n跔 蹏 鸜 踁 抂 𨍽 踨 蹵 竓 𤩷 稾 磘 泪 詧 瘇\n𨩚 鼦 泎 蟖 痃 𪊲 硓 咢 贌 狢 獱 謭 猂 瓱 賫 𤪻\n蘯 徺 袠 䒷    𡠻 𦸅    詾 𢔛    惽 癧 髗 鵄 鍮\n鮏 蟵       賷 猬 霡 鮰 㗖 犲 䰇 籑 饊 𦅙 慙 䰄\n麖 慽    坟 慯 抦 戹    㩜 懢 厪 𣏵 捤 栂 㗒\n   嵗 𨯂 迚 𨸹    僙 𡵆 礆 匲 阸 𠼻 䁥    矾\n糂 𥼚 糚 稭 聦 聣 絍 甅 瓲 覔 舚 朌 聢 𧒆 聛 瓰\n脃 眤 覉 𦟌 畓 𦻑 螩 蟎 臈 螌 詉 貭 譃 眫 瓸 蓚\n㘵 榲 趦    覩    涹 蟁 𤀑 瓧 㷛 煶 悤 憜 㳑\n恷    罱 𨬭    惩 䭾 删 㰘 𣳇 𥻗 𧙖 𥔱 𡥄 𡋾 𩤃\n𦷜 𧂭 峁 𦆭 𨨏 𣙷 𠃮 𦡆 𤼎 䕢 嬟 𦍌 齐 麦 𦉫\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-1999.IRREVERSIBLE.TXT",
    "content": "0xF9E9\t0x255E\n0xF9EA\t0x256A\n0xF9EB\t0x2561\n0xF9F9\t0x2550\n0xF9FA\t0x256D\n0xF9FB\t0x256E\n0xF9FC\t0x2570\n0xF9FD\t0x256F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-1999.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8840\t0x31C0\n0x8841\t0x31C1\n0x8842\t0x31C2\n0x8843\t0x31C3\n0x8844\t0x31C4\n0x8845\t0x2010C\n0x8846\t0x31C5\n0x8847\t0x200D1\n0x8848\t0x200CD\n0x8849\t0x31C6\n0x884A\t0x31C7\n0x884B\t0x200CB\n0x884C\t0x21FE8\n0x884D\t0x31C8\n0x884E\t0x200CA\n0x884F\t0x31C9\n0x8850\t0x31CA\n0x8851\t0x31CB\n0x8852\t0x31CC\n0x8853\t0x2010E\n0x8854\t0x31CD\n0x8855\t0x31CE\n0x8856\t0x0100\n0x8857\t0x00C1\n0x8858\t0x01CD\n0x8859\t0x00C0\n0x885A\t0x0112\n0x885B\t0x00C9\n0x885C\t0x011A\n0x885D\t0x00C8\n0x885E\t0x014C\n0x885F\t0x00D3\n0x8860\t0x01D1\n0x8861\t0x00D2\n0x8862\t0x00CA 0x0304\n0x8863\t0x1EBE\n0x8864\t0x00CA 0x030C\n0x8865\t0x1EC0\n0x8866\t0x00CA\n0x8867\t0x0101\n0x8868\t0x00E1\n0x8869\t0x01CE\n0x886A\t0x00E0\n0x886B\t0x0251\n0x886C\t0x0113\n0x886D\t0x00E9\n0x886E\t0x011B\n0x886F\t0x00E8\n0x8870\t0x012B\n0x8871\t0x00ED\n0x8872\t0x01D0\n0x8873\t0x00EC\n0x8874\t0x014D\n0x8875\t0x00F3\n0x8876\t0x01D2\n0x8877\t0x00F2\n0x8878\t0x016B\n0x8879\t0x00FA\n0x887A\t0x01D4\n0x887B\t0x00F9\n0x887C\t0x01D6\n0x887D\t0x01D8\n0x887E\t0x01DA\n0x88A1\t0x01DC\n0x88A2\t0x00FC\n0x88A3\t0x00EA 0x0304\n0x88A4\t0x1EBF\n0x88A5\t0x00EA 0x030C\n0x88A6\t0x1EC1\n0x88A7\t0x00EA\n0x88A8\t0x0261\n0x88A9\t0x23DA\n0x88AA\t0x23DB\n0x8940\t0x2A3A9\n0x8941\t0x21145\n0x8943\t0x650A\n0x8946\t0x4E3D\n0x8947\t0x6EDD\n0x8948\t0x9D4E\n0x8949\t0x91DF\n0x894C\t0x27735\n0x894D\t0x6491\n0x894E\t0x4F1A\n0x894F\t0x4F28\n0x8950\t0x4FA8\n0x8951\t0x5156\n0x8952\t0x5174\n0x8953\t0x519C\n0x8954\t0x51E4\n0x8955\t0x52A1\n0x8956\t0x52A8\n0x8957\t0x533B\n0x8958\t0x534E\n0x8959\t0x53D1\n0x895A\t0x53D8\n0x895B\t0x56E2\n0x895C\t0x58F0\n0x895D\t0x5904\n0x895E\t0x5907\n0x895F\t0x5932\n0x8960\t0x5934\n0x8961\t0x5B66\n0x8962\t0x5B9E\n0x8963\t0x5B9F\n0x8964\t0x5C9A\n0x8965\t0x5E86\n0x8966\t0x603B\n0x8967\t0x6589\n0x8968\t0x67FE\n0x8969\t0x6804\n0x896A\t0x6865\n0x896B\t0x6D4E\n0x896C\t0x70BC\n0x896D\t0x7535\n0x896E\t0x7EA4\n0x896F\t0x7EAC\n0x8970\t0x7EBA\n0x8971\t0x7EC7\n0x8972\t0x7ECF\n0x8973\t0x7EDF\n0x8974\t0x7F06\n0x8975\t0x7F37\n0x8976\t0x827A\n0x8977\t0x82CF\n0x8978\t0x836F\n0x8979\t0x89C6\n0x897A\t0x8BBE\n0x897B\t0x8BE2\n0x897C\t0x8F66\n0x897D\t0x8F67\n0x897E\t0x8F6E\n0x89A1\t0x7411\n0x89A2\t0x7CFC\n0x89A3\t0x7DCD\n0x89A4\t0x6946\n0x89A5\t0x7AC9\n0x89A6\t0x5227\n0x89AB\t0x918C\n0x89AC\t0x78B8\n0x89AD\t0x915E\n0x89AE\t0x80BC\n0x89B0\t0x8D0B\n0x89B1\t0x80F6\n0x89B2\t0x209E7\n0x89B5\t0x809F\n0x89B6\t0x9EC7\n0x89B7\t0x4CCD\n0x89B8\t0x9DC9\n0x89B9\t0x9E0C\n0x89BA\t0x4C3E\n0x89BB\t0x29DF6\n0x89BC\t0x2700E\n0x89BD\t0x9E0A\n0x89BE\t0x2A133\n0x89BF\t0x35C1\n0x89C1\t0x6E9A\n0x89C2\t0x823E\n0x89C3\t0x7519\n0x89C5\t0x4911\n0x89C6\t0x9A6C\n0x89C7\t0x9A8F\n0x89C8\t0x9F99\n0x89C9\t0x7987\n0x89CA\t0x2846C\n0x89CB\t0x21DCA\n0x89CC\t0x205D0\n0x89CD\t0x22AE6\n0x89CE\t0x4E24\n0x89CF\t0x4E81\n0x89D0\t0x4E80\n0x89D1\t0x4E87\n0x89D2\t0x4EBF\n0x89D3\t0x4EEB\n0x89D4\t0x4F37\n0x89D5\t0x344C\n0x89D6\t0x4FBD\n0x89D7\t0x3E48\n0x89D8\t0x5003\n0x89D9\t0x5088\n0x89DA\t0x347D\n0x89DB\t0x3493\n0x89DC\t0x34A5\n0x89DD\t0x5186\n0x89DE\t0x5905\n0x89DF\t0x51DB\n0x89E0\t0x51FC\n0x89E1\t0x5205\n0x89E2\t0x4E89\n0x89E3\t0x5279\n0x89E4\t0x5290\n0x89E5\t0x5327\n0x89E6\t0x35C7\n0x89E7\t0x53A9\n0x89E8\t0x3551\n0x89E9\t0x53B0\n0x89EA\t0x3553\n0x89EB\t0x53C2\n0x89EC\t0x5423\n0x89ED\t0x356D\n0x89EE\t0x3572\n0x89EF\t0x3681\n0x89F0\t0x5493\n0x89F1\t0x54A3\n0x89F2\t0x54B4\n0x89F3\t0x54B9\n0x89F4\t0x54D0\n0x89F5\t0x54EF\n0x89F6\t0x5518\n0x89F7\t0x5523\n0x89F8\t0x5528\n0x89F9\t0x3598\n0x89FA\t0x553F\n0x89FB\t0x35A5\n0x89FC\t0x35BF\n0x89FD\t0x55D7\n0x89FE\t0x35C5\n0x8A40\t0x27D84\n0x8A41\t0x5525\n0x8A43\t0x20C42\n0x8A44\t0x20D15\n0x8A45\t0x2512B\n0x8A46\t0x5590\n0x8A47\t0x22CC6\n0x8A48\t0x39EC\n0x8A49\t0x20341\n0x8A4A\t0x8E46\n0x8A4B\t0x24DB8\n0x8A4C\t0x294E5\n0x8A4D\t0x4053\n0x8A4E\t0x280BE\n0x8A4F\t0x777A\n0x8A50\t0x22C38\n0x8A51\t0x3A34\n0x8A52\t0x47D5\n0x8A53\t0x2815D\n0x8A54\t0x269F2\n0x8A55\t0x24DEA\n0x8A56\t0x64DD\n0x8A57\t0x20D7C\n0x8A58\t0x20FB4\n0x8A59\t0x20CD5\n0x8A5A\t0x210F4\n0x8A5B\t0x648D\n0x8A5C\t0x8E7E\n0x8A5D\t0x20E96\n0x8A5E\t0x20C0B\n0x8A5F\t0x20F64\n0x8A60\t0x22CA9\n0x8A61\t0x28256\n0x8A62\t0x244D3\n0x8A64\t0x20D46\n0x8A65\t0x29A4D\n0x8A66\t0x280E9\n0x8A67\t0x47F4\n0x8A68\t0x24EA7\n0x8A69\t0x22CC2\n0x8A6A\t0x9AB2\n0x8A6B\t0x3A67\n0x8A6C\t0x295F4\n0x8A6D\t0x3FED\n0x8A6E\t0x3506\n0x8A6F\t0x252C7\n0x8A70\t0x297D4\n0x8A71\t0x278C8\n0x8A72\t0x22D44\n0x8A73\t0x9D6E\n0x8A74\t0x9815\n0x8A76\t0x43D9\n0x8A77\t0x260A5\n0x8A78\t0x64B4\n0x8A79\t0x54E3\n0x8A7A\t0x22D4C\n0x8A7B\t0x22BCA\n0x8A7C\t0x21077\n0x8A7D\t0x39FB\n0x8A7E\t0x2106F\n0x8AA1\t0x266DA\n0x8AA2\t0x26716\n0x8AA3\t0x279A0\n0x8AA4\t0x64EA\n0x8AA5\t0x25052\n0x8AA6\t0x20C43\n0x8AA7\t0x8E68\n0x8AA8\t0x221A1\n0x8AA9\t0x28B4C\n0x8AAA\t0x20731\n0x8AAC\t0x480B\n0x8AAD\t0x201A9\n0x8AAE\t0x3FFA\n0x8AAF\t0x5873\n0x8AB0\t0x22D8D\n0x8AB2\t0x245C8\n0x8AB3\t0x204FC\n0x8AB4\t0x26097\n0x8AB5\t0x20F4C\n0x8AB6\t0x20D96\n0x8AB7\t0x5579\n0x8AB8\t0x40BB\n0x8AB9\t0x43BA\n0x8ABB\t0x4AB4\n0x8ABC\t0x22A66\n0x8ABD\t0x2109D\n0x8ABE\t0x81AA\n0x8ABF\t0x98F5\n0x8AC0\t0x20D9C\n0x8AC1\t0x6379\n0x8AC2\t0x39FE\n0x8AC3\t0x22775\n0x8AC4\t0x8DC0\n0x8AC5\t0x56A1\n0x8AC6\t0x647C\n0x8AC7\t0x3E43\n0x8AC9\t0x2A601\n0x8ACA\t0x20E09\n0x8ACB\t0x22ACF\n0x8ACC\t0x22CC9\n0x8ACE\t0x210C8\n0x8ACF\t0x239C2\n0x8AD0\t0x3992\n0x8AD1\t0x3A06\n0x8AD2\t0x2829B\n0x8AD3\t0x3578\n0x8AD4\t0x25E49\n0x8AD5\t0x220C7\n0x8AD6\t0x5652\n0x8AD7\t0x20F31\n0x8AD8\t0x22CB2\n0x8AD9\t0x29720\n0x8ADA\t0x34BC\n0x8ADB\t0x6C3D\n0x8ADC\t0x24E3B\n0x8ADF\t0x27574\n0x8AE0\t0x22E8B\n0x8AE1\t0x22208\n0x8AE2\t0x2A65B\n0x8AE3\t0x28CCD\n0x8AE4\t0x20E7A\n0x8AE5\t0x20C34\n0x8AE6\t0x2681C\n0x8AE7\t0x7F93\n0x8AE8\t0x210CF\n0x8AE9\t0x22803\n0x8AEA\t0x22939\n0x8AEB\t0x35FB\n0x8AEC\t0x251E3\n0x8AED\t0x20E8C\n0x8AEE\t0x20F8D\n0x8AEF\t0x20EAA\n0x8AF0\t0x3F93\n0x8AF1\t0x20F30\n0x8AF2\t0x20D47\n0x8AF3\t0x2114F\n0x8AF4\t0x20E4C\n0x8AF6\t0x20EAB\n0x8AF7\t0x20BA9\n0x8AF8\t0x20D48\n0x8AF9\t0x210C0\n0x8AFA\t0x2113D\n0x8AFB\t0x3FF9\n0x8AFC\t0x22696\n0x8AFD\t0x6432\n0x8AFE\t0x20FAD\n0x8B40\t0x233F4\n0x8B41\t0x27639\n0x8B42\t0x22BCE\n0x8B43\t0x20D7E\n0x8B44\t0x20D7F\n0x8B45\t0x22C51\n0x8B46\t0x22C55\n0x8B47\t0x3A18\n0x8B48\t0x20E98\n0x8B49\t0x210C7\n0x8B4A\t0x20F2E\n0x8B4B\t0x2A632\n0x8B4C\t0x26B50\n0x8B4D\t0x28CD2\n0x8B4E\t0x28D99\n0x8B4F\t0x28CCA\n0x8B50\t0x95AA\n0x8B51\t0x54CC\n0x8B52\t0x82C4\n0x8B53\t0x55B9\n0x8B55\t0x29EC3\n0x8B56\t0x9C26\n0x8B57\t0x9AB6\n0x8B58\t0x2775E\n0x8B59\t0x22DEE\n0x8B5A\t0x7140\n0x8B5B\t0x816D\n0x8B5C\t0x80EC\n0x8B5D\t0x5C1C\n0x8B5E\t0x26572\n0x8B5F\t0x8134\n0x8B60\t0x3797\n0x8B61\t0x535F\n0x8B62\t0x280BD\n0x8B63\t0x91B6\n0x8B64\t0x20EFA\n0x8B65\t0x20E0F\n0x8B66\t0x20E77\n0x8B67\t0x20EFB\n0x8B68\t0x35DD\n0x8B69\t0x24DEB\n0x8B6A\t0x3609\n0x8B6B\t0x20CD6\n0x8B6C\t0x56AF\n0x8B6D\t0x227B5\n0x8B6E\t0x210C9\n0x8B6F\t0x20E10\n0x8B70\t0x20E78\n0x8B71\t0x21078\n0x8B72\t0x21148\n0x8B73\t0x28207\n0x8B74\t0x21455\n0x8B75\t0x20E79\n0x8B76\t0x24E50\n0x8B77\t0x22DA4\n0x8B78\t0x5A54\n0x8B79\t0x2101D\n0x8B7A\t0x2101E\n0x8B7B\t0x210F5\n0x8B7C\t0x210F6\n0x8B7D\t0x579C\n0x8B7E\t0x20E11\n0x8BA1\t0x27694\n0x8BA2\t0x282CD\n0x8BA3\t0x20FB5\n0x8BA4\t0x20E7B\n0x8BA5\t0x2517E\n0x8BA6\t0x3703\n0x8BA7\t0x20FB6\n0x8BA8\t0x21180\n0x8BA9\t0x252D8\n0x8BAA\t0x2A2BD\n0x8BAB\t0x249DA\n0x8BAC\t0x2183A\n0x8BAD\t0x24177\n0x8BAE\t0x2827C\n0x8BAF\t0x5899\n0x8BB0\t0x5268\n0x8BB1\t0x361A\n0x8BB2\t0x2573D\n0x8BB3\t0x7BB2\n0x8BB4\t0x5B68\n0x8BB5\t0x4800\n0x8BB6\t0x4B2C\n0x8BB7\t0x9F27\n0x8BB8\t0x49E7\n0x8BB9\t0x9C1F\n0x8BBA\t0x9B8D\n0x8BBB\t0x25B74\n0x8BBC\t0x2313D\n0x8BBD\t0x55FB\n0x8BBE\t0x35F2\n0x8BBF\t0x5689\n0x8BC0\t0x4E28\n0x8BC1\t0x5902\n0x8BC2\t0x21BC1\n0x8BC3\t0x2F878\n0x8BC4\t0x9751\n0x8BC5\t0x20086\n0x8BC6\t0x4E5B\n0x8BC7\t0x4EBB\n0x8BC8\t0x353E\n0x8BC9\t0x5C23\n0x8BCA\t0x5F51\n0x8BCB\t0x5FC4\n0x8BCC\t0x38FA\n0x8BCD\t0x624C\n0x8BCE\t0x6535\n0x8BCF\t0x6B7A\n0x8BD0\t0x6C35\n0x8BD1\t0x6C3A\n0x8BD2\t0x706C\n0x8BD3\t0x722B\n0x8BD4\t0x4E2C\n0x8BD5\t0x72AD\n0x8BD6\t0x248E9\n0x8BD7\t0x7F52\n0x8BD8\t0x793B\n0x8BD9\t0x7CF9\n0x8BDA\t0x7F53\n0x8BDB\t0x2626A\n0x8BDC\t0x34C1\n0x8BDE\t0x2634B\n0x8BDF\t0x8002\n0x8BE0\t0x8080\n0x8BE1\t0x26612\n0x8BE2\t0x26951\n0x8BE3\t0x535D\n0x8BE4\t0x8864\n0x8BE5\t0x89C1\n0x8BE6\t0x278B2\n0x8BE7\t0x8BA0\n0x8BE8\t0x8D1D\n0x8BE9\t0x9485\n0x8BEA\t0x9578\n0x8BEB\t0x957F\n0x8BEC\t0x95E8\n0x8BED\t0x28E0F\n0x8BEE\t0x97E6\n0x8BEF\t0x9875\n0x8BF0\t0x98CE\n0x8BF1\t0x98DE\n0x8BF2\t0x9963\n0x8BF3\t0x29810\n0x8BF4\t0x9C7C\n0x8BF5\t0x9E1F\n0x8BF6\t0x9EC4\n0x8BF7\t0x6B6F\n0x8BF8\t0xF907\n0x8BF9\t0x4E37\n0x8BFA\t0x20087\n0x8BFB\t0x961D\n0x8BFC\t0x6237\n0x8BFD\t0x94A2\n0x8D60\t0x5D3E\n0x8D61\t0x5D48\n0x8D62\t0x5D56\n0x8D63\t0x3DFC\n0x8D64\t0x380F\n0x8D65\t0x5DA4\n0x8D66\t0x5DB9\n0x8D67\t0x3820\n0x8D68\t0x3838\n0x8D69\t0x5E42\n0x8D6A\t0x5EBD\n0x8D6B\t0x5F25\n0x8D6C\t0x5F83\n0x8D6D\t0x3908\n0x8D6E\t0x3914\n0x8D6F\t0x393F\n0x8D70\t0x394D\n0x8D71\t0x60D7\n0x8D72\t0x613D\n0x8D73\t0x5CE5\n0x8D74\t0x3989\n0x8D75\t0x61B7\n0x8D76\t0x61B9\n0x8D77\t0x61CF\n0x8D78\t0x39B8\n0x8D79\t0x622C\n0x8D7A\t0x6290\n0x8D7B\t0x62E5\n0x8D7C\t0x6318\n0x8D7D\t0x39F8\n0x8D7E\t0x56B1\n0x8DA1\t0x3A03\n0x8DA2\t0x63E2\n0x8DA3\t0x63FB\n0x8DA4\t0x6407\n0x8DA5\t0x645A\n0x8DA6\t0x3A4B\n0x8DA7\t0x64C0\n0x8DA8\t0x5D15\n0x8DA9\t0x5621\n0x8DAA\t0x9F9F\n0x8DAB\t0x3A97\n0x8DAC\t0x6586\n0x8DAD\t0x3ABD\n0x8DAE\t0x65FF\n0x8DAF\t0x6653\n0x8DB0\t0x3AF2\n0x8DB1\t0x6692\n0x8DB2\t0x3B22\n0x8DB3\t0x6716\n0x8DB4\t0x3B42\n0x8DB5\t0x67A4\n0x8DB6\t0x6800\n0x8DB7\t0x3B58\n0x8DB8\t0x684A\n0x8DB9\t0x6884\n0x8DBA\t0x3B72\n0x8DBB\t0x3B71\n0x8DBC\t0x3B7B\n0x8DBD\t0x6909\n0x8DBE\t0x6943\n0x8DBF\t0x725C\n0x8DC0\t0x6964\n0x8DC1\t0x699F\n0x8DC2\t0x6985\n0x8DC3\t0x3BBC\n0x8DC4\t0x69D6\n0x8DC5\t0x3BDD\n0x8DC6\t0x6A65\n0x8DC7\t0x6A74\n0x8DC8\t0x6A71\n0x8DC9\t0x6A82\n0x8DCA\t0x3BEC\n0x8DCB\t0x6A99\n0x8DCC\t0x3BF2\n0x8DCD\t0x6AAB\n0x8DCE\t0x6AB5\n0x8DCF\t0x6AD4\n0x8DD0\t0x6AF6\n0x8DD1\t0x6B81\n0x8DD2\t0x6BC1\n0x8DD3\t0x6BEA\n0x8DD4\t0x6C75\n0x8DD5\t0x6CAA\n0x8DD6\t0x3CCB\n0x8DD7\t0x6D02\n0x8DD8\t0x6D06\n0x8DD9\t0x6D26\n0x8DDA\t0x6D81\n0x8DDB\t0x3CEF\n0x8DDC\t0x6DA4\n0x8DDD\t0x6DB1\n0x8DDE\t0x6E15\n0x8DDF\t0x6E18\n0x8DE0\t0x6E29\n0x8DE1\t0x6E86\n0x8DE2\t0x289C0\n0x8DE3\t0x6EBB\n0x8DE4\t0x6EE2\n0x8DE5\t0x6EDA\n0x8DE6\t0x9F7F\n0x8DE7\t0x6EE8\n0x8DE8\t0x6EE9\n0x8DE9\t0x6F24\n0x8DEA\t0x6F34\n0x8DEB\t0x3D46\n0x8DEC\t0x23F41\n0x8DED\t0x6F81\n0x8DEE\t0x6FBE\n0x8DEF\t0x3D6A\n0x8DF0\t0x3D75\n0x8DF1\t0x71B7\n0x8DF2\t0x5C99\n0x8DF3\t0x3D8A\n0x8DF4\t0x702C\n0x8DF5\t0x3D91\n0x8DF6\t0x7050\n0x8DF7\t0x7054\n0x8DF8\t0x706F\n0x8DF9\t0x707F\n0x8DFA\t0x7089\n0x8DFB\t0x20325\n0x8DFC\t0x43C1\n0x8DFD\t0x35F1\n0x8DFE\t0x20ED8\n0x8E40\t0x23ED7\n0x8E41\t0x57BE\n0x8E42\t0x26ED3\n0x8E43\t0x713E\n0x8E44\t0x257E0\n0x8E45\t0x364E\n0x8E46\t0x69A2\n0x8E47\t0x28BE9\n0x8E48\t0x5B74\n0x8E49\t0x7A49\n0x8E4A\t0x258E1\n0x8E4B\t0x294D9\n0x8E4C\t0x7A65\n0x8E4D\t0x7A7D\n0x8E4E\t0x259AC\n0x8E4F\t0x7ABB\n0x8E50\t0x7AB0\n0x8E51\t0x7AC2\n0x8E52\t0x7AC3\n0x8E53\t0x71D1\n0x8E54\t0x2648D\n0x8E55\t0x41CA\n0x8E56\t0x7ADA\n0x8E57\t0x7ADD\n0x8E58\t0x7AEA\n0x8E59\t0x41EF\n0x8E5A\t0x54B2\n0x8E5B\t0x25C01\n0x8E5C\t0x7B0B\n0x8E5D\t0x7B55\n0x8E5E\t0x7B29\n0x8E5F\t0x2530E\n0x8E60\t0x25CFE\n0x8E61\t0x7BA2\n0x8E62\t0x7B6F\n0x8E63\t0x839C\n0x8E64\t0x25BB4\n0x8E65\t0x26C7F\n0x8E66\t0x7BD0\n0x8E67\t0x8421\n0x8E68\t0x7B92\n0x8E6A\t0x25D20\n0x8E6B\t0x3DAD\n0x8E6C\t0x25C65\n0x8E6D\t0x8492\n0x8E6E\t0x7BFA\n0x8E70\t0x7C35\n0x8E71\t0x25CC1\n0x8E72\t0x7C44\n0x8E73\t0x7C83\n0x8E74\t0x24882\n0x8E75\t0x7CA6\n0x8E76\t0x667D\n0x8E77\t0x24578\n0x8E78\t0x7CC9\n0x8E79\t0x7CC7\n0x8E7A\t0x7CE6\n0x8E7B\t0x7C74\n0x8E7C\t0x7CF3\n0x8E7D\t0x7CF5\n0x8EA1\t0x7E67\n0x8EA2\t0x451D\n0x8EA3\t0x26E44\n0x8EA4\t0x7D5D\n0x8EA5\t0x26ED6\n0x8EA6\t0x748D\n0x8EA7\t0x7D89\n0x8EA8\t0x7DAB\n0x8EA9\t0x7135\n0x8EAA\t0x7DB3\n0x8EAC\t0x24057\n0x8EAD\t0x26029\n0x8EAE\t0x7DE4\n0x8EAF\t0x3D13\n0x8EB0\t0x7DF5\n0x8EB1\t0x217F9\n0x8EB2\t0x7DE5\n0x8EB3\t0x2836D\n0x8EB5\t0x26121\n0x8EB6\t0x2615A\n0x8EB7\t0x7E6E\n0x8EB8\t0x7E92\n0x8EB9\t0x432B\n0x8EBA\t0x946C\n0x8EBB\t0x7E27\n0x8EBC\t0x7F40\n0x8EBD\t0x7F41\n0x8EBE\t0x7F47\n0x8EBF\t0x7936\n0x8EC0\t0x262D0\n0x8EC1\t0x99E1\n0x8EC2\t0x7F97\n0x8EC3\t0x26351\n0x8EC4\t0x7FA3\n0x8EC5\t0x21661\n0x8EC6\t0x20068\n0x8EC7\t0x455C\n0x8EC8\t0x23766\n0x8EC9\t0x4503\n0x8ECA\t0x2833A\n0x8ECB\t0x7FFA\n0x8ECC\t0x26489\n0x8ECE\t0x8008\n0x8ECF\t0x801D\n0x8ED1\t0x802F\n0x8ED2\t0x2A087\n0x8ED3\t0x26CC3\n0x8ED4\t0x803B\n0x8ED5\t0x803C\n0x8ED6\t0x8061\n0x8ED7\t0x22714\n0x8ED8\t0x4989\n0x8ED9\t0x26626\n0x8EDA\t0x23DE3\n0x8EDB\t0x266E8\n0x8EDC\t0x6725\n0x8EDD\t0x80A7\n0x8EDE\t0x28A48\n0x8EDF\t0x8107\n0x8EE0\t0x811A\n0x8EE1\t0x58B0\n0x8EE2\t0x226F6\n0x8EE3\t0x6C7F\n0x8EE4\t0x26498\n0x8EE5\t0x24FB8\n0x8EE6\t0x64E7\n0x8EE7\t0x2148A\n0x8EE8\t0x8218\n0x8EE9\t0x2185E\n0x8EEA\t0x6A53\n0x8EEB\t0x24A65\n0x8EEC\t0x24A95\n0x8EED\t0x447A\n0x8EEE\t0x8229\n0x8EEF\t0x20B0D\n0x8EF0\t0x26A52\n0x8EF1\t0x23D7E\n0x8EF2\t0x4FF9\n0x8EF3\t0x214FD\n0x8EF4\t0x84E2\n0x8EF5\t0x8362\n0x8EF6\t0x26B0A\n0x8EF7\t0x249A7\n0x8EF8\t0x23530\n0x8EF9\t0x21773\n0x8EFA\t0x23DF8\n0x8EFB\t0x82AA\n0x8EFC\t0x691B\n0x8EFD\t0x2F994\n0x8EFE\t0x41DB\n0x8F40\t0x854B\n0x8F41\t0x82D0\n0x8F42\t0x831A\n0x8F43\t0x20E16\n0x8F44\t0x217B4\n0x8F45\t0x36C1\n0x8F46\t0x2317D\n0x8F47\t0x2355A\n0x8F48\t0x827B\n0x8F49\t0x82E2\n0x8F4A\t0x8318\n0x8F4B\t0x23E8B\n0x8F4C\t0x26DA3\n0x8F4D\t0x26B05\n0x8F4E\t0x26B97\n0x8F4F\t0x235CE\n0x8F50\t0x3DBF\n0x8F51\t0x831D\n0x8F52\t0x55EC\n0x8F53\t0x8385\n0x8F54\t0x450B\n0x8F55\t0x26DA5\n0x8F56\t0x83AC\n0x8F58\t0x83D3\n0x8F59\t0x347E\n0x8F5A\t0x26ED4\n0x8F5B\t0x6A57\n0x8F5C\t0x855A\n0x8F5D\t0x3496\n0x8F5E\t0x26E42\n0x8F5F\t0x22EEF\n0x8F60\t0x8458\n0x8F61\t0x25BE4\n0x8F62\t0x8471\n0x8F63\t0x3DD3\n0x8F64\t0x44E4\n0x8F65\t0x6AA7\n0x8F66\t0x844A\n0x8F67\t0x23CB5\n0x8F68\t0x7958\n0x8F6A\t0x26B96\n0x8F6B\t0x26E77\n0x8F6C\t0x26E43\n0x8F6D\t0x84DE\n0x8F6F\t0x8391\n0x8F70\t0x44A0\n0x8F71\t0x8493\n0x8F72\t0x84E4\n0x8F73\t0x25C91\n0x8F74\t0x4240\n0x8F75\t0x25CC0\n0x8F76\t0x4543\n0x8F77\t0x8534\n0x8F78\t0x5AF2\n0x8F79\t0x26E99\n0x8F7A\t0x4527\n0x8F7B\t0x8573\n0x8F7C\t0x4516\n0x8F7D\t0x67BF\n0x8F7E\t0x8616\n0x8FA1\t0x28625\n0x8FA2\t0x2863B\n0x8FA3\t0x85C1\n0x8FA4\t0x27088\n0x8FA5\t0x8602\n0x8FA6\t0x21582\n0x8FA7\t0x270CD\n0x8FA8\t0x2F9B2\n0x8FA9\t0x456A\n0x8FAA\t0x8628\n0x8FAB\t0x3648\n0x8FAC\t0x218A2\n0x8FAD\t0x53F7\n0x8FAE\t0x2739A\n0x8FAF\t0x867E\n0x8FB0\t0x8771\n0x8FB1\t0x2A0F8\n0x8FB2\t0x87EE\n0x8FB3\t0x22C27\n0x8FB4\t0x87B1\n0x8FB5\t0x87DA\n0x8FB6\t0x880F\n0x8FB7\t0x5661\n0x8FB8\t0x866C\n0x8FB9\t0x6856\n0x8FBA\t0x460F\n0x8FBB\t0x8845\n0x8FBC\t0x8846\n0x8FBD\t0x275E0\n0x8FBE\t0x23DB9\n0x8FBF\t0x275E4\n0x8FC0\t0x885E\n0x8FC1\t0x889C\n0x8FC2\t0x465B\n0x8FC3\t0x88B4\n0x8FC4\t0x88B5\n0x8FC5\t0x63C1\n0x8FC6\t0x88C5\n0x8FC7\t0x7777\n0x8FC8\t0x2770F\n0x8FC9\t0x8987\n0x8FCA\t0x898A\n0x8FCD\t0x89A7\n0x8FCE\t0x89BC\n0x8FCF\t0x28A25\n0x8FD0\t0x89E7\n0x8FD1\t0x27924\n0x8FD2\t0x27ABD\n0x8FD3\t0x8A9C\n0x8FD4\t0x7793\n0x8FD5\t0x91FE\n0x8FD6\t0x8A90\n0x8FD7\t0x27A59\n0x8FD8\t0x7AE9\n0x8FD9\t0x27B3A\n0x8FDA\t0x23F8F\n0x8FDB\t0x4713\n0x8FDC\t0x27B38\n0x8FDD\t0x717C\n0x8FDE\t0x8B0C\n0x8FDF\t0x8B1F\n0x8FE0\t0x25430\n0x8FE1\t0x25565\n0x8FE2\t0x8B3F\n0x8FE3\t0x8B4C\n0x8FE4\t0x8B4D\n0x8FE5\t0x8AA9\n0x8FE6\t0x24A7A\n0x8FE7\t0x8B90\n0x8FE8\t0x8B9B\n0x8FE9\t0x8AAF\n0x8FEA\t0x216DF\n0x8FEB\t0x4615\n0x8FEC\t0x884F\n0x8FED\t0x8C9B\n0x8FEE\t0x27D54\n0x8FEF\t0x27D8F\n0x8FF0\t0x2F9D4\n0x8FF1\t0x3725\n0x8FF2\t0x27D53\n0x8FF3\t0x8CD6\n0x8FF4\t0x27D98\n0x8FF5\t0x27DBD\n0x8FF6\t0x8D12\n0x8FF7\t0x8D03\n0x8FF8\t0x21910\n0x8FF9\t0x8CDB\n0x8FFA\t0x705C\n0x8FFB\t0x8D11\n0x8FFC\t0x24CC9\n0x8FFD\t0x3ED0\n0x9040\t0x8DA9\n0x9041\t0x28002\n0x9042\t0x21014\n0x9043\t0x2498A\n0x9044\t0x3B7C\n0x9045\t0x281BC\n0x9046\t0x2710C\n0x9047\t0x7AE7\n0x9048\t0x8EAD\n0x9049\t0x8EB6\n0x904A\t0x8EC3\n0x904B\t0x92D4\n0x904C\t0x8F19\n0x904D\t0x8F2D\n0x904E\t0x28365\n0x904F\t0x28412\n0x9050\t0x8FA5\n0x9051\t0x9303\n0x9052\t0x2A29F\n0x9053\t0x20A50\n0x9054\t0x8FB3\n0x9055\t0x492A\n0x9056\t0x289DE\n0x9057\t0x2853D\n0x9058\t0x23DBB\n0x9059\t0x5EF8\n0x905A\t0x23262\n0x905B\t0x8FF9\n0x905C\t0x2A014\n0x905D\t0x286BC\n0x905E\t0x28501\n0x905F\t0x22325\n0x9060\t0x3980\n0x9061\t0x26ED7\n0x9062\t0x9037\n0x9063\t0x2853C\n0x9064\t0x27ABE\n0x9065\t0x9061\n0x9066\t0x2856C\n0x9067\t0x2860B\n0x9068\t0x90A8\n0x9069\t0x28713\n0x906A\t0x90C4\n0x906B\t0x286E6\n0x906C\t0x90AE\n0x906E\t0x9167\n0x906F\t0x3AF0\n0x9070\t0x91A9\n0x9071\t0x91C4\n0x9072\t0x7CAC\n0x9073\t0x28933\n0x9074\t0x21E89\n0x9075\t0x920E\n0x9076\t0x6C9F\n0x9077\t0x9241\n0x9078\t0x9262\n0x9079\t0x255B9\n0x907B\t0x28AC6\n0x907C\t0x23C9B\n0x907D\t0x28B0C\n0x907E\t0x255DB\n0x90A1\t0x20D31\n0x90A2\t0x932C\n0x90A3\t0x936B\n0x90A4\t0x28AE1\n0x90A5\t0x28BEB\n0x90A6\t0x708F\n0x90A7\t0x5AC3\n0x90A8\t0x28AE2\n0x90A9\t0x28AE5\n0x90AA\t0x4965\n0x90AB\t0x9244\n0x90AC\t0x28BEC\n0x90AD\t0x28C39\n0x90AE\t0x28BFF\n0x90AF\t0x9373\n0x90B0\t0x945B\n0x90B1\t0x8EBC\n0x90B2\t0x9585\n0x90B3\t0x95A6\n0x90B4\t0x9426\n0x90B5\t0x95A0\n0x90B6\t0x6FF6\n0x90B7\t0x42B9\n0x90B8\t0x2267A\n0x90B9\t0x286D8\n0x90BA\t0x2127C\n0x90BB\t0x23E2E\n0x90BC\t0x49DF\n0x90BD\t0x6C1C\n0x90BE\t0x967B\n0x90BF\t0x9696\n0x90C0\t0x416C\n0x90C1\t0x96A3\n0x90C2\t0x26ED5\n0x90C3\t0x61DA\n0x90C4\t0x96B6\n0x90C5\t0x78F5\n0x90C6\t0x28AE0\n0x90C7\t0x96BD\n0x90C8\t0x53CC\n0x90C9\t0x49A1\n0x90CA\t0x26CB8\n0x90CB\t0x20274\n0x90CC\t0x26410\n0x90CD\t0x290AF\n0x90CE\t0x290E5\n0x90CF\t0x24AD1\n0x90D0\t0x21915\n0x90D1\t0x2330A\n0x90D2\t0x9731\n0x90D3\t0x8642\n0x90D4\t0x9736\n0x90D5\t0x4A0F\n0x90D6\t0x453D\n0x90D7\t0x4585\n0x90D8\t0x24AE9\n0x90D9\t0x7075\n0x90DA\t0x5B41\n0x90DB\t0x971B\n0x90DD\t0x291D5\n0x90DE\t0x9757\n0x90DF\t0x5B4A\n0x90E0\t0x291EB\n0x90E1\t0x975F\n0x90E2\t0x9425\n0x90E3\t0x50D0\n0x90E4\t0x230B7\n0x90E5\t0x230BC\n0x90E6\t0x9789\n0x90E7\t0x979F\n0x90E8\t0x97B1\n0x90E9\t0x97BE\n0x90EA\t0x97C0\n0x90EB\t0x97D2\n0x90EC\t0x97E0\n0x90ED\t0x2546C\n0x90EE\t0x97EE\n0x90EF\t0x741C\n0x90F0\t0x29433\n0x90F2\t0x97F5\n0x90F3\t0x2941D\n0x90F4\t0x2797A\n0x90F5\t0x4AD1\n0x90F6\t0x9834\n0x90F7\t0x9833\n0x90F8\t0x984B\n0x90F9\t0x9866\n0x90FA\t0x3B0E\n0x90FB\t0x27175\n0x90FC\t0x3D51\n0x90FD\t0x20630\n0x90FE\t0x2415C\n0x9140\t0x25706\n0x9141\t0x98CA\n0x9142\t0x98B7\n0x9143\t0x98C8\n0x9144\t0x98C7\n0x9145\t0x4AFF\n0x9146\t0x26D27\n0x9147\t0x216D3\n0x9148\t0x55B0\n0x9149\t0x98E1\n0x914A\t0x98E6\n0x914B\t0x98EC\n0x914C\t0x9378\n0x914D\t0x9939\n0x914E\t0x24A29\n0x914F\t0x4B72\n0x9150\t0x29857\n0x9151\t0x29905\n0x9152\t0x99F5\n0x9153\t0x9A0C\n0x9154\t0x9A3B\n0x9155\t0x9A10\n0x9156\t0x9A58\n0x9157\t0x25725\n0x9158\t0x36C4\n0x9159\t0x290B1\n0x915A\t0x29BD5\n0x915B\t0x9AE0\n0x915C\t0x9AE2\n0x915D\t0x29B05\n0x915E\t0x9AF4\n0x915F\t0x4C0E\n0x9160\t0x9B14\n0x9161\t0x9B2D\n0x9162\t0x28600\n0x9163\t0x5034\n0x9164\t0x9B34\n0x9165\t0x269A8\n0x9166\t0x38C3\n0x9167\t0x2307D\n0x9168\t0x9B50\n0x9169\t0x9B40\n0x916A\t0x29D3E\n0x916B\t0x5A45\n0x916C\t0x21863\n0x916D\t0x9B8E\n0x916E\t0x2424B\n0x916F\t0x9C02\n0x9170\t0x9BFF\n0x9171\t0x9C0C\n0x9172\t0x29E68\n0x9173\t0x9DD4\n0x9174\t0x29FB7\n0x9175\t0x2A192\n0x9176\t0x2A1AB\n0x9177\t0x2A0E1\n0x9178\t0x2A123\n0x9179\t0x2A1DF\n0x917A\t0x9D7E\n0x917B\t0x9D83\n0x917C\t0x2A134\n0x917D\t0x9E0E\n0x917E\t0x6888\n0x91A1\t0x9DC4\n0x91A2\t0x2215B\n0x91A3\t0x2A193\n0x91A4\t0x2A220\n0x91A5\t0x2193B\n0x91A6\t0x2A233\n0x91A7\t0x9D39\n0x91A8\t0x2A0B9\n0x91A9\t0x2A2B4\n0x91AA\t0x9E90\n0x91AB\t0x9E95\n0x91AC\t0x9E9E\n0x91AD\t0x9EA2\n0x91AE\t0x4D34\n0x91AF\t0x9EAA\n0x91B0\t0x9EAF\n0x91B1\t0x24364\n0x91B2\t0x9EC1\n0x91B3\t0x3B60\n0x91B4\t0x39E5\n0x91B5\t0x3D1D\n0x91B6\t0x4F32\n0x91B7\t0x37BE\n0x91B8\t0x28C2B\n0x91B9\t0x9F02\n0x91BA\t0x9F08\n0x91BB\t0x4B96\n0x91BC\t0x9424\n0x91BD\t0x26DA2\n0x91BE\t0x9F17\n0x91C0\t0x9F39\n0x91C1\t0x569F\n0x91C2\t0x568A\n0x91C3\t0x9F45\n0x91C4\t0x99B8\n0x91C5\t0x2908B\n0x91C6\t0x97F2\n0x91C7\t0x847F\n0x91C8\t0x9F62\n0x91C9\t0x9F69\n0x91CA\t0x7ADC\n0x91CB\t0x9F8E\n0x91CC\t0x7216\n0x91CD\t0x4BBE\n0x91CE\t0x24975\n0x91CF\t0x249BB\n0x91D0\t0x7177\n0x91D1\t0x249F8\n0x91D2\t0x24348\n0x91D3\t0x24A51\n0x91D4\t0x739E\n0x91D5\t0x28BDA\n0x91D6\t0x218FA\n0x91D7\t0x799F\n0x91D8\t0x2897E\n0x91D9\t0x28E36\n0x91DA\t0x9369\n0x91DB\t0x93F3\n0x91DC\t0x28A44\n0x91DD\t0x92EC\n0x91DE\t0x9381\n0x91DF\t0x93CB\n0x91E0\t0x2896C\n0x91E1\t0x244B9\n0x91E2\t0x7217\n0x91E3\t0x3EEB\n0x91E4\t0x7772\n0x91E5\t0x7A43\n0x91E6\t0x70D0\n0x91E7\t0x24473\n0x91E8\t0x243F8\n0x91E9\t0x717E\n0x91EA\t0x217EF\n0x91EB\t0x70A3\n0x91EC\t0x218BE\n0x91ED\t0x23599\n0x91EE\t0x3EC7\n0x91EF\t0x21885\n0x91F0\t0x2542F\n0x91F1\t0x217F8\n0x91F2\t0x3722\n0x91F3\t0x216FB\n0x91F4\t0x21839\n0x91F5\t0x36E1\n0x91F6\t0x21774\n0x91F7\t0x218D1\n0x91F8\t0x25F4B\n0x91F9\t0x3723\n0x91FA\t0x216C0\n0x91FB\t0x575B\n0x91FC\t0x24A25\n0x91FD\t0x213FE\n0x91FE\t0x212A8\n0x9240\t0x213C6\n0x9241\t0x214B6\n0x9242\t0x8503\n0x9243\t0x236A6\n0x9245\t0x8455\n0x9246\t0x24994\n0x9247\t0x27165\n0x9248\t0x23E31\n0x9249\t0x2555C\n0x924A\t0x23EFB\n0x924B\t0x27052\n0x924C\t0x44F4\n0x924D\t0x236EE\n0x924E\t0x2999D\n0x924F\t0x26F26\n0x9250\t0x67F9\n0x9251\t0x3733\n0x9252\t0x3C15\n0x9253\t0x3DE7\n0x9254\t0x586C\n0x9255\t0x21922\n0x9256\t0x6810\n0x9257\t0x4057\n0x9258\t0x2373F\n0x9259\t0x240E1\n0x925A\t0x2408B\n0x925B\t0x2410F\n0x925C\t0x26C21\n0x925D\t0x54CB\n0x925E\t0x569E\n0x925F\t0x266B1\n0x9260\t0x5692\n0x9261\t0x20FDF\n0x9262\t0x20BA8\n0x9263\t0x20E0D\n0x9264\t0x93C6\n0x9265\t0x28B13\n0x9266\t0x939C\n0x9267\t0x4EF8\n0x9268\t0x512B\n0x9269\t0x3819\n0x926A\t0x24436\n0x926B\t0x4EBC\n0x926C\t0x20465\n0x926D\t0x2037F\n0x926E\t0x4F4B\n0x926F\t0x4F8A\n0x9270\t0x25651\n0x9271\t0x5A68\n0x9272\t0x201AB\n0x9273\t0x203CB\n0x9274\t0x3999\n0x9275\t0x2030A\n0x9276\t0x20414\n0x9277\t0x3435\n0x9278\t0x4F29\n0x9279\t0x202C0\n0x927A\t0x28EB3\n0x927B\t0x20275\n0x927C\t0x8ADA\n0x927D\t0x2020C\n0x927E\t0x4E98\n0x92A1\t0x50CD\n0x92A2\t0x510D\n0x92A3\t0x4FA2\n0x92A4\t0x4F03\n0x92A5\t0x24A0E\n0x92A6\t0x23E8A\n0x92A7\t0x4F42\n0x92A8\t0x502E\n0x92A9\t0x506C\n0x92AA\t0x5081\n0x92AB\t0x4FCC\n0x92AC\t0x4FE5\n0x92AD\t0x5058\n0x92AE\t0x50FC\n0x92B3\t0x6E76\n0x92B4\t0x23595\n0x92B5\t0x23E39\n0x92B6\t0x23EBF\n0x92B7\t0x6D72\n0x92B8\t0x21884\n0x92B9\t0x23E89\n0x92BA\t0x51A8\n0x92BB\t0x51C3\n0x92BC\t0x205E0\n0x92BD\t0x44DD\n0x92BE\t0x204A3\n0x92BF\t0x20492\n0x92C0\t0x20491\n0x92C1\t0x8D7A\n0x92C2\t0x28A9C\n0x92C3\t0x2070E\n0x92C4\t0x5259\n0x92C5\t0x52A4\n0x92C6\t0x20873\n0x92C7\t0x52E1\n0x92C9\t0x467A\n0x92CA\t0x718C\n0x92CB\t0x2438C\n0x92CC\t0x20C20\n0x92CD\t0x249AC\n0x92CE\t0x210E4\n0x92CF\t0x69D1\n0x92D0\t0x20E1D\n0x92D2\t0x3EDE\n0x92D3\t0x7499\n0x92D4\t0x7414\n0x92D5\t0x7456\n0x92D6\t0x7398\n0x92D7\t0x4B8E\n0x92D8\t0x24ABC\n0x92D9\t0x2408D\n0x92DA\t0x53D0\n0x92DB\t0x3584\n0x92DC\t0x720F\n0x92DD\t0x240C9\n0x92DE\t0x55B4\n0x92DF\t0x20345\n0x92E0\t0x54CD\n0x92E1\t0x20BC6\n0x92E2\t0x571D\n0x92E3\t0x925D\n0x92E4\t0x96F4\n0x92E5\t0x9366\n0x92E6\t0x57DD\n0x92E7\t0x578D\n0x92E8\t0x577F\n0x92E9\t0x363E\n0x92EA\t0x58CB\n0x92EB\t0x5A99\n0x92EC\t0x28A46\n0x92ED\t0x216FA\n0x92EE\t0x2176F\n0x92EF\t0x21710\n0x92F0\t0x5A2C\n0x92F1\t0x59B8\n0x92F2\t0x928F\n0x92F3\t0x5A7E\n0x92F4\t0x5ACF\n0x92F5\t0x5A12\n0x92F6\t0x25946\n0x92F7\t0x219F3\n0x92F8\t0x21861\n0x92F9\t0x24295\n0x92FA\t0x36F5\n0x92FB\t0x6D05\n0x92FC\t0x7443\n0x92FD\t0x5A21\n0x92FE\t0x25E83\n0x9340\t0x5A81\n0x9341\t0x28BD7\n0x9342\t0x20413\n0x9343\t0x93E0\n0x9344\t0x748C\n0x9345\t0x21303\n0x9346\t0x7105\n0x9347\t0x4972\n0x9348\t0x9408\n0x9349\t0x289FB\n0x934A\t0x93BD\n0x934B\t0x37A0\n0x934C\t0x5C1E\n0x934D\t0x5C9E\n0x934E\t0x5E5E\n0x934F\t0x5E48\n0x9350\t0x21996\n0x9351\t0x2197C\n0x9352\t0x23AEE\n0x9353\t0x5ECD\n0x9354\t0x5B4F\n0x9355\t0x21903\n0x9356\t0x21904\n0x9357\t0x3701\n0x9358\t0x218A0\n0x9359\t0x36DD\n0x935A\t0x216FE\n0x935B\t0x36D3\n0x935C\t0x812A\n0x935D\t0x28A47\n0x935E\t0x21DBA\n0x935F\t0x23472\n0x9360\t0x289A8\n0x9361\t0x5F0C\n0x9362\t0x5F0E\n0x9363\t0x21927\n0x9364\t0x217AB\n0x9365\t0x5A6B\n0x9366\t0x2173B\n0x9367\t0x5B44\n0x9368\t0x8614\n0x9369\t0x275FD\n0x936A\t0x8860\n0x936B\t0x607E\n0x936C\t0x22860\n0x936D\t0x2262B\n0x936E\t0x5FDB\n0x936F\t0x3EB8\n0x9370\t0x225AF\n0x9371\t0x225BE\n0x9372\t0x29088\n0x9373\t0x26F73\n0x9374\t0x61C0\n0x9375\t0x2003E\n0x9376\t0x20046\n0x9377\t0x2261B\n0x9378\t0x6199\n0x9379\t0x6198\n0x937A\t0x6075\n0x937B\t0x22C9B\n0x937C\t0x22D07\n0x937D\t0x246D4\n0x937E\t0x2914D\n0x93A1\t0x6471\n0x93A2\t0x24665\n0x93A3\t0x22B6A\n0x93A4\t0x3A29\n0x93A5\t0x22B22\n0x93A6\t0x23450\n0x93A7\t0x298EA\n0x93A8\t0x22E78\n0x93A9\t0x6337\n0x93AA\t0x2A45B\n0x93AB\t0x64B6\n0x93AC\t0x6331\n0x93AD\t0x63D1\n0x93AE\t0x249E3\n0x93AF\t0x22D67\n0x93B0\t0x62A4\n0x93B1\t0x22CA1\n0x93B2\t0x643B\n0x93B3\t0x656B\n0x93B4\t0x6972\n0x93B5\t0x3BF4\n0x93B6\t0x2308E\n0x93B7\t0x232AD\n0x93B8\t0x24989\n0x93B9\t0x232AB\n0x93BA\t0x550D\n0x93BB\t0x232E0\n0x93BC\t0x218D9\n0x93BD\t0x2943F\n0x93BE\t0x66CE\n0x93BF\t0x23289\n0x93C0\t0x231B3\n0x93C1\t0x3AE0\n0x93C2\t0x4190\n0x93C3\t0x25584\n0x93C4\t0x28B22\n0x93C5\t0x2558F\n0x93C6\t0x216FC\n0x93C7\t0x2555B\n0x93C8\t0x25425\n0x93C9\t0x78EE\n0x93CA\t0x23103\n0x93CB\t0x2182A\n0x93CC\t0x23234\n0x93CD\t0x3464\n0x93CE\t0x2320F\n0x93CF\t0x23182\n0x93D0\t0x242C9\n0x93D1\t0x668E\n0x93D2\t0x26D24\n0x93D3\t0x666B\n0x93D4\t0x4B93\n0x93D5\t0x6630\n0x93D6\t0x27870\n0x93D7\t0x21DEB\n0x93D8\t0x6663\n0x93D9\t0x232D2\n0x93DA\t0x232E1\n0x93DB\t0x661E\n0x93DC\t0x25872\n0x93DD\t0x38D1\n0x93DE\t0x2383A\n0x93DF\t0x237BC\n0x93E0\t0x3B99\n0x93E1\t0x237A2\n0x93E2\t0x233FE\n0x93E3\t0x74D0\n0x93E4\t0x3B96\n0x93E5\t0x678F\n0x93E6\t0x2462A\n0x93E7\t0x68B6\n0x93E8\t0x681E\n0x93E9\t0x3BC4\n0x93EA\t0x6ABE\n0x93EB\t0x3863\n0x93EC\t0x237D5\n0x93ED\t0x24487\n0x93EE\t0x6A33\n0x93EF\t0x6A52\n0x93F0\t0x6AC9\n0x93F1\t0x6B05\n0x93F2\t0x21912\n0x93F3\t0x6511\n0x93F4\t0x6898\n0x93F5\t0x6A4C\n0x93F6\t0x3BD7\n0x93F7\t0x6A7A\n0x93F8\t0x6B57\n0x93F9\t0x23FC0\n0x93FA\t0x23C9A\n0x93FB\t0x93A0\n0x93FC\t0x92F2\n0x93FD\t0x28BEA\n0x93FE\t0x28ACB\n0x9440\t0x9289\n0x9441\t0x2801E\n0x9442\t0x289DC\n0x9443\t0x9467\n0x9444\t0x6DA5\n0x9445\t0x6F0B\n0x9446\t0x249EC\n0x9448\t0x23F7F\n0x9449\t0x3D8F\n0x944A\t0x6E04\n0x944B\t0x2403C\n0x944C\t0x5A3D\n0x944D\t0x6E0A\n0x944E\t0x5847\n0x944F\t0x6D24\n0x9450\t0x7842\n0x9451\t0x713B\n0x9452\t0x2431A\n0x9453\t0x24276\n0x9454\t0x70F1\n0x9455\t0x7250\n0x9456\t0x7287\n0x9457\t0x7294\n0x9458\t0x2478F\n0x9459\t0x24725\n0x945A\t0x5179\n0x945B\t0x24AA4\n0x945C\t0x205EB\n0x945D\t0x747A\n0x945E\t0x23EF8\n0x945F\t0x2365F\n0x9460\t0x24A4A\n0x9461\t0x24917\n0x9462\t0x25FE1\n0x9463\t0x3F06\n0x9464\t0x3EB1\n0x9465\t0x24ADF\n0x9466\t0x28C23\n0x9467\t0x23F35\n0x9468\t0x60A7\n0x9469\t0x3EF3\n0x946A\t0x74CC\n0x946B\t0x743C\n0x946C\t0x9387\n0x946D\t0x7437\n0x946E\t0x449F\n0x946F\t0x26DEA\n0x9470\t0x4551\n0x9471\t0x7583\n0x9472\t0x3F63\n0x9473\t0x24CD9\n0x9474\t0x24D06\n0x9475\t0x3F58\n0x9476\t0x7555\n0x9477\t0x7673\n0x9478\t0x2A5C6\n0x9479\t0x3B19\n0x947A\t0x7468\n0x947B\t0x28ACC\n0x947C\t0x249AB\n0x947D\t0x2498E\n0x947E\t0x3AFB\n0x94A1\t0x3DCD\n0x94A2\t0x24A4E\n0x94A3\t0x3EFF\n0x94A4\t0x249C5\n0x94A5\t0x248F3\n0x94A6\t0x91FA\n0x94A7\t0x5732\n0x94A8\t0x9342\n0x94A9\t0x28AE3\n0x94AA\t0x21864\n0x94AB\t0x50DF\n0x94AC\t0x25221\n0x94AD\t0x251E7\n0x94AE\t0x7778\n0x94AF\t0x23232\n0x94B0\t0x770E\n0x94B1\t0x770F\n0x94B2\t0x777B\n0x94B3\t0x24697\n0x94B4\t0x23781\n0x94B5\t0x3A5E\n0x94B6\t0x248F0\n0x94B7\t0x7438\n0x94B8\t0x749B\n0x94B9\t0x3EBF\n0x94BA\t0x24ABA\n0x94BB\t0x24AC7\n0x94BC\t0x40C8\n0x94BD\t0x24A96\n0x94BE\t0x261AE\n0x94BF\t0x9307\n0x94C0\t0x25581\n0x94C1\t0x781E\n0x94C2\t0x788D\n0x94C3\t0x7888\n0x94C4\t0x78D2\n0x94C5\t0x73D0\n0x94C6\t0x7959\n0x94C7\t0x27741\n0x94C8\t0x256E3\n0x94C9\t0x410E\n0x94CB\t0x8496\n0x94CC\t0x79A5\n0x94CD\t0x6A2D\n0x94CE\t0x23EFA\n0x94CF\t0x7A3A\n0x94D0\t0x79F4\n0x94D1\t0x416E\n0x94D2\t0x216E6\n0x94D3\t0x4132\n0x94D4\t0x9235\n0x94D5\t0x79F1\n0x94D6\t0x20D4C\n0x94D7\t0x2498C\n0x94D8\t0x20299\n0x94D9\t0x23DBA\n0x94DA\t0x2176E\n0x94DB\t0x3597\n0x94DC\t0x556B\n0x94DD\t0x3570\n0x94DE\t0x36AA\n0x94DF\t0x201D4\n0x94E0\t0x20C0D\n0x94E1\t0x7AE2\n0x94E2\t0x5A59\n0x94E3\t0x226F5\n0x94E4\t0x25AAF\n0x94E5\t0x25A9C\n0x94E6\t0x5A0D\n0x94E7\t0x2025B\n0x94E8\t0x78F0\n0x94E9\t0x5A2A\n0x94EA\t0x25BC6\n0x94EB\t0x7AFE\n0x94EC\t0x41F9\n0x94ED\t0x7C5D\n0x94EE\t0x7C6D\n0x94EF\t0x4211\n0x94F0\t0x25BB3\n0x94F1\t0x25EBC\n0x94F2\t0x25EA6\n0x94F3\t0x7CCD\n0x94F4\t0x249F9\n0x94F5\t0x217B0\n0x94F6\t0x7C8E\n0x94F7\t0x7C7C\n0x94F8\t0x7CAE\n0x94F9\t0x6AB2\n0x94FA\t0x7DDC\n0x94FB\t0x7E07\n0x94FC\t0x7DD3\n0x94FD\t0x7F4E\n0x94FE\t0x26261\n0x9540\t0x2615C\n0x9541\t0x27B48\n0x9542\t0x7D97\n0x9543\t0x25E82\n0x9544\t0x426A\n0x9545\t0x26B75\n0x9546\t0x20916\n0x9547\t0x67D6\n0x9548\t0x2004E\n0x9549\t0x235CF\n0x954A\t0x57C4\n0x954B\t0x26412\n0x954C\t0x263F8\n0x954D\t0x24962\n0x954E\t0x7FDD\n0x954F\t0x7B27\n0x9550\t0x2082C\n0x9551\t0x25AE9\n0x9552\t0x25D43\n0x9553\t0x7B0C\n0x9554\t0x25E0E\n0x9555\t0x99E6\n0x9556\t0x8645\n0x9557\t0x9A63\n0x9558\t0x6A1C\n0x9559\t0x2343F\n0x955A\t0x39E2\n0x955B\t0x249F7\n0x955C\t0x265AD\n0x955D\t0x9A1F\n0x955E\t0x265A0\n0x955F\t0x8480\n0x9560\t0x27127\n0x9561\t0x26CD1\n0x9562\t0x44EA\n0x9563\t0x8137\n0x9564\t0x4402\n0x9565\t0x80C6\n0x9566\t0x8109\n0x9567\t0x8142\n0x9568\t0x267B4\n0x9569\t0x98C3\n0x956A\t0x26A42\n0x956B\t0x8262\n0x956C\t0x8265\n0x956D\t0x26A51\n0x956E\t0x8453\n0x956F\t0x26DA7\n0x9570\t0x8610\n0x9571\t0x2721B\n0x9572\t0x5A86\n0x9573\t0x417F\n0x9574\t0x21840\n0x9575\t0x5B2B\n0x9576\t0x218A1\n0x9577\t0x5AE4\n0x9578\t0x218D8\n0x9579\t0x86A0\n0x957A\t0x2F9BC\n0x957B\t0x23D8F\n0x957C\t0x882D\n0x957D\t0x27422\n0x957E\t0x5A02\n0x95A1\t0x886E\n0x95A2\t0x4F45\n0x95A3\t0x8887\n0x95A4\t0x88BF\n0x95A5\t0x88E6\n0x95A6\t0x8965\n0x95A7\t0x894D\n0x95A8\t0x25683\n0x95A9\t0x8954\n0x95AA\t0x27785\n0x95AB\t0x27784\n0x95AC\t0x28BF5\n0x95AD\t0x28BD9\n0x95AE\t0x28B9C\n0x95AF\t0x289F9\n0x95B0\t0x3EAD\n0x95B1\t0x84A3\n0x95B2\t0x46F5\n0x95B3\t0x46CF\n0x95B4\t0x37F2\n0x95B5\t0x8A3D\n0x95B6\t0x8A1C\n0x95B7\t0x29448\n0x95B8\t0x5F4D\n0x95B9\t0x922B\n0x95BA\t0x24284\n0x95BB\t0x65D4\n0x95BC\t0x7129\n0x95BD\t0x70C4\n0x95BE\t0x21845\n0x95BF\t0x9D6D\n0x95C0\t0x8C9F\n0x95C1\t0x8CE9\n0x95C2\t0x27DDC\n0x95C3\t0x599A\n0x95C4\t0x77C3\n0x95C5\t0x59F0\n0x95C6\t0x436E\n0x95C7\t0x36D4\n0x95C8\t0x8E2A\n0x95C9\t0x8EA7\n0x95CA\t0x24C09\n0x95CB\t0x8F30\n0x95CC\t0x8F4A\n0x95CD\t0x42F4\n0x95CE\t0x6C58\n0x95CF\t0x6FBB\n0x95D0\t0x22321\n0x95D1\t0x489B\n0x95D2\t0x6F79\n0x95D3\t0x6E8B\n0x95D4\t0x217DA\n0x95D5\t0x9BE9\n0x95D6\t0x36B5\n0x95D7\t0x2492F\n0x95D8\t0x90BB\n0x95DA\t0x5571\n0x95DB\t0x4906\n0x95DC\t0x91BB\n0x95DD\t0x9404\n0x95DE\t0x28A4B\n0x95DF\t0x4062\n0x95E0\t0x28AFC\n0x95E1\t0x9427\n0x95E2\t0x28C1D\n0x95E3\t0x28C3B\n0x95E4\t0x84E5\n0x95E5\t0x8A2B\n0x95E6\t0x9599\n0x95E7\t0x95A7\n0x95E8\t0x9597\n0x95E9\t0x9596\n0x95EA\t0x28D34\n0x95EB\t0x7445\n0x95EC\t0x3EC2\n0x95ED\t0x248FF\n0x95EE\t0x24A42\n0x95EF\t0x243EA\n0x95F0\t0x3EE7\n0x95F1\t0x23225\n0x95F2\t0x968F\n0x95F3\t0x28EE7\n0x95F4\t0x28E66\n0x95F5\t0x28E65\n0x95F6\t0x3ECC\n0x95F7\t0x249ED\n0x95F8\t0x24A78\n0x95F9\t0x23FEE\n0x95FA\t0x7412\n0x95FB\t0x746B\n0x95FC\t0x3EFC\n0x95FD\t0x9741\n0x95FE\t0x290B0\n0x9640\t0x6847\n0x9641\t0x4A1D\n0x9642\t0x29093\n0x9643\t0x257DF\n0x9645\t0x9368\n0x9646\t0x28989\n0x9647\t0x28C26\n0x9648\t0x28B2F\n0x9649\t0x263BE\n0x964A\t0x92BA\n0x964B\t0x5B11\n0x964C\t0x8B69\n0x964D\t0x493C\n0x964E\t0x73F9\n0x964F\t0x2421B\n0x9650\t0x979B\n0x9651\t0x9771\n0x9652\t0x9938\n0x9653\t0x20F26\n0x9654\t0x5DC1\n0x9655\t0x28BC5\n0x9656\t0x24AB2\n0x9657\t0x981F\n0x9658\t0x294DA\n0x9659\t0x92F6\n0x965A\t0x295D7\n0x965B\t0x91E5\n0x965C\t0x44C0\n0x965D\t0x28B50\n0x965E\t0x24A67\n0x965F\t0x28B64\n0x9660\t0x98DC\n0x9661\t0x28A45\n0x9662\t0x3F00\n0x9663\t0x922A\n0x9664\t0x4925\n0x9665\t0x8414\n0x9666\t0x993B\n0x9667\t0x994D\n0x9668\t0x27B06\n0x9669\t0x3DFD\n0x966A\t0x999B\n0x966B\t0x4B6F\n0x966C\t0x99AA\n0x966D\t0x9A5C\n0x966E\t0x28B65\n0x966F\t0x258C8\n0x9670\t0x6A8F\n0x9671\t0x9A21\n0x9672\t0x5AFE\n0x9673\t0x9A2F\n0x9674\t0x298F1\n0x9675\t0x4B90\n0x9676\t0x29948\n0x9677\t0x99BC\n0x9678\t0x4BBD\n0x9679\t0x4B97\n0x967A\t0x937D\n0x967B\t0x5872\n0x967C\t0x21302\n0x967D\t0x5822\n0x967E\t0x249B8\n0x96A1\t0x214E8\n0x96A2\t0x7844\n0x96A3\t0x2271F\n0x96A4\t0x23DB8\n0x96A5\t0x68C5\n0x96A6\t0x3D7D\n0x96A7\t0x9458\n0x96A8\t0x3927\n0x96A9\t0x6150\n0x96AA\t0x22781\n0x96AB\t0x2296B\n0x96AC\t0x6107\n0x96AD\t0x9C4F\n0x96AE\t0x9C53\n0x96AF\t0x9C7B\n0x96B0\t0x9C35\n0x96B1\t0x9C10\n0x96B2\t0x9B7F\n0x96B3\t0x9BCF\n0x96B4\t0x29E2D\n0x96B5\t0x9B9F\n0x96B6\t0x2A1F5\n0x96B7\t0x2A0FE\n0x96B8\t0x9D21\n0x96B9\t0x4CAE\n0x96BA\t0x24104\n0x96BB\t0x9E18\n0x96BC\t0x4CB0\n0x96BD\t0x9D0C\n0x96BE\t0x2A1B4\n0x96BF\t0x2A0ED\n0x96C0\t0x2A0F3\n0x96C1\t0x2992F\n0x96C2\t0x9DA5\n0x96C3\t0x84BD\n0x96C4\t0x26E12\n0x96C5\t0x26FDF\n0x96C6\t0x26B82\n0x96C7\t0x85FC\n0x96C8\t0x4533\n0x96C9\t0x26DA4\n0x96CA\t0x26E84\n0x96CB\t0x26DF0\n0x96CC\t0x8420\n0x96CD\t0x85EE\n0x96CE\t0x26E00\n0x96CF\t0x237D7\n0x96D0\t0x26064\n0x96D1\t0x79E2\n0x96D2\t0x2359C\n0x96D3\t0x23640\n0x96D4\t0x492D\n0x96D5\t0x249DE\n0x96D6\t0x3D62\n0x96D7\t0x93DB\n0x96D8\t0x92BE\n0x96D9\t0x9348\n0x96DA\t0x202BF\n0x96DB\t0x78B9\n0x96DC\t0x9277\n0x96DD\t0x944D\n0x96DE\t0x4FE4\n0x96DF\t0x3440\n0x96E0\t0x9064\n0x96E1\t0x2555D\n0x96E2\t0x783D\n0x96E3\t0x7854\n0x96E4\t0x78B6\n0x96E5\t0x784B\n0x96E6\t0x21757\n0x96E7\t0x231C9\n0x96E8\t0x24941\n0x96E9\t0x369A\n0x96EA\t0x4F72\n0x96EB\t0x6FDA\n0x96EC\t0x6FD9\n0x96EE\t0x701E\n0x96EF\t0x5414\n0x96F0\t0x241B5\n0x96F1\t0x57BB\n0x96F2\t0x58F3\n0x96F3\t0x578A\n0x96F4\t0x9D16\n0x96F5\t0x57D7\n0x96F6\t0x7134\n0x96F7\t0x34AF\n0x96F8\t0x241AC\n0x96F9\t0x71EB\n0x96FA\t0x26C40\n0x96FB\t0x24F97\n0x96FD\t0x217B5\n0x96FE\t0x28A49\n0x9740\t0x610C\n0x9741\t0x5ACE\n0x9742\t0x5A0B\n0x9743\t0x42BC\n0x9744\t0x24488\n0x9745\t0x372C\n0x9746\t0x4B7B\n0x9747\t0x289FC\n0x9748\t0x93BB\n0x9749\t0x93B8\n0x974A\t0x218D6\n0x974B\t0x20F1D\n0x974C\t0x8472\n0x974D\t0x26CC0\n0x974E\t0x21413\n0x974F\t0x242FA\n0x9750\t0x22C26\n0x9751\t0x243C1\n0x9752\t0x5994\n0x9753\t0x23DB7\n0x9754\t0x26741\n0x9755\t0x7DA8\n0x9756\t0x2615B\n0x9757\t0x260A4\n0x9758\t0x249B9\n0x9759\t0x2498B\n0x975A\t0x289FA\n0x975B\t0x92E5\n0x975C\t0x73E2\n0x975D\t0x3EE9\n0x975E\t0x74B4\n0x975F\t0x28B63\n0x9760\t0x2189F\n0x9761\t0x3EE1\n0x9762\t0x24AB3\n0x9763\t0x6AD8\n0x9764\t0x73F3\n0x9765\t0x73FB\n0x9766\t0x3ED6\n0x9767\t0x24A3E\n0x9768\t0x24A94\n0x9769\t0x217D9\n0x976A\t0x24A66\n0x976B\t0x203A7\n0x976C\t0x21424\n0x976D\t0x249E5\n0x976E\t0x7448\n0x976F\t0x24916\n0x9770\t0x70A5\n0x9771\t0x24976\n0x9772\t0x9284\n0x9773\t0x73E6\n0x9774\t0x935F\n0x9775\t0x204FE\n0x9776\t0x9331\n0x9777\t0x28ACE\n0x9778\t0x28A16\n0x9779\t0x9386\n0x977A\t0x28BE7\n0x977B\t0x255D5\n0x977C\t0x4935\n0x977D\t0x28A82\n0x977E\t0x716B\n0x97A1\t0x24943\n0x97A2\t0x20CFF\n0x97A3\t0x56A4\n0x97A4\t0x2061A\n0x97A5\t0x20BEB\n0x97A6\t0x20CB8\n0x97A7\t0x5502\n0x97A8\t0x79C4\n0x97A9\t0x217FA\n0x97AA\t0x7DFE\n0x97AB\t0x216C2\n0x97AC\t0x24A50\n0x97AD\t0x21852\n0x97AE\t0x452E\n0x97AF\t0x9401\n0x97B0\t0x370A\n0x97B1\t0x28AC0\n0x97B2\t0x249AD\n0x97B3\t0x59B0\n0x97B4\t0x218BF\n0x97B5\t0x21883\n0x97B6\t0x27484\n0x97B7\t0x5AA1\n0x97B8\t0x36E2\n0x97B9\t0x23D5B\n0x97BA\t0x36B0\n0x97BB\t0x925F\n0x97BC\t0x5A79\n0x97BD\t0x28A81\n0x97BE\t0x21862\n0x97BF\t0x9374\n0x97C0\t0x3CCD\n0x97C1\t0x20AB4\n0x97C2\t0x4A96\n0x97C3\t0x398A\n0x97C4\t0x50F4\n0x97C5\t0x3D69\n0x97C6\t0x3D4C\n0x97C7\t0x2139C\n0x97C8\t0x7175\n0x97C9\t0x42FB\n0x97CA\t0x28218\n0x97CB\t0x6E0F\n0x97CC\t0x290E4\n0x97CD\t0x44EB\n0x97CE\t0x6D57\n0x97CF\t0x27E4F\n0x97D0\t0x7067\n0x97D1\t0x6CAF\n0x97D2\t0x3CD6\n0x97D3\t0x23FED\n0x97D4\t0x23E2D\n0x97D5\t0x6E02\n0x97D6\t0x6F0C\n0x97D7\t0x3D6F\n0x97D8\t0x203F5\n0x97D9\t0x7551\n0x97DA\t0x36BC\n0x97DB\t0x34C8\n0x97DC\t0x4680\n0x97DD\t0x3EDA\n0x97DE\t0x4871\n0x97DF\t0x59C4\n0x97E0\t0x926E\n0x97E1\t0x493E\n0x97E2\t0x8F41\n0x97E3\t0x28C1C\n0x97E4\t0x26BC0\n0x97E5\t0x5812\n0x97E6\t0x57C8\n0x97E7\t0x36D6\n0x97E8\t0x21452\n0x97E9\t0x70FE\n0x97EA\t0x24362\n0x97EB\t0x24A71\n0x97EC\t0x22FE3\n0x97ED\t0x212B0\n0x97EE\t0x223BD\n0x97EF\t0x68B9\n0x97F0\t0x6967\n0x97F1\t0x21398\n0x97F2\t0x234E5\n0x97F3\t0x27BF4\n0x97F4\t0x236DF\n0x97F5\t0x28A83\n0x97F6\t0x237D6\n0x97F7\t0x233FA\n0x97F8\t0x24C9F\n0x97F9\t0x6A1A\n0x97FA\t0x236AD\n0x97FB\t0x26CB7\n0x97FC\t0x843E\n0x97FD\t0x44DF\n0x97FE\t0x44CE\n0x9840\t0x26D26\n0x9841\t0x26D51\n0x9842\t0x26C82\n0x9843\t0x26FDE\n0x9844\t0x6F17\n0x9845\t0x27109\n0x9846\t0x833D\n0x9847\t0x2173A\n0x9848\t0x83ED\n0x9849\t0x26C80\n0x984A\t0x27053\n0x984B\t0x217DB\n0x984C\t0x5989\n0x984D\t0x5A82\n0x984E\t0x217B3\n0x984F\t0x5A61\n0x9850\t0x5A71\n0x9851\t0x21905\n0x9852\t0x241FC\n0x9853\t0x372D\n0x9854\t0x59EF\n0x9855\t0x2173C\n0x9856\t0x36C7\n0x9857\t0x718E\n0x9858\t0x9390\n0x9859\t0x669A\n0x985A\t0x242A5\n0x985B\t0x5A6E\n0x985C\t0x5A2B\n0x985D\t0x24293\n0x985E\t0x6A2B\n0x985F\t0x23EF9\n0x9860\t0x27736\n0x9861\t0x2445B\n0x9862\t0x242CA\n0x9863\t0x711D\n0x9864\t0x24259\n0x9865\t0x289E1\n0x9866\t0x4FB0\n0x9867\t0x26D28\n0x9868\t0x5CC2\n0x9869\t0x244CE\n0x986A\t0x27E4D\n0x986B\t0x243BD\n0x986C\t0x6A0C\n0x986D\t0x24256\n0x986E\t0x21304\n0x986F\t0x70A6\n0x9870\t0x7133\n0x9871\t0x243E9\n0x9872\t0x3DA5\n0x9873\t0x6CDF\n0x9874\t0x2F825\n0x9875\t0x24A4F\n0x9876\t0x7E65\n0x9877\t0x59EB\n0x9878\t0x5D2F\n0x9879\t0x3DF3\n0x987A\t0x5F5C\n0x987B\t0x24A5D\n0x987C\t0x217DF\n0x987D\t0x7DA4\n0x987E\t0x8426\n0x98A1\t0x5485\n0x98A2\t0x23AFA\n0x98A3\t0x23300\n0x98A4\t0x20214\n0x98A5\t0x577E\n0x98A6\t0x208D5\n0x98A7\t0x20619\n0x98A8\t0x3FE5\n0x98A9\t0x21F9E\n0x98AA\t0x2A2B6\n0x98AB\t0x7003\n0x98AC\t0x2915B\n0x98AD\t0x5D70\n0x98AE\t0x738F\n0x98AF\t0x7CD3\n0x98B0\t0x28A59\n0x98B1\t0x29420\n0x98B2\t0x4FC8\n0x98B3\t0x7FE7\n0x98B4\t0x72CD\n0x98B5\t0x7310\n0x98B6\t0x27AF4\n0x98B7\t0x7338\n0x98B8\t0x7339\n0x98B9\t0x256F6\n0x98BA\t0x7341\n0x98BB\t0x7348\n0x98BC\t0x3EA9\n0x98BD\t0x27B18\n0x98BE\t0x906C\n0x98BF\t0x71F5\n0x98C0\t0x248F2\n0x98C1\t0x73E1\n0x98C2\t0x81F6\n0x98C3\t0x3ECA\n0x98C4\t0x770C\n0x98C5\t0x3ED1\n0x98C6\t0x6CA2\n0x98C7\t0x56FD\n0x98C8\t0x7419\n0x98C9\t0x741E\n0x98CA\t0x741F\n0x98CB\t0x3EE2\n0x98CC\t0x3EF0\n0x98CD\t0x3EF4\n0x98CE\t0x3EFA\n0x98CF\t0x74D3\n0x98D0\t0x3F0E\n0x98D1\t0x3F53\n0x98D2\t0x7542\n0x98D3\t0x756D\n0x98D4\t0x7572\n0x98D5\t0x758D\n0x98D6\t0x3F7C\n0x98D7\t0x75C8\n0x98D8\t0x75DC\n0x98D9\t0x3FC0\n0x98DA\t0x764D\n0x98DB\t0x3FD7\n0x98DC\t0x7674\n0x98DD\t0x3FDC\n0x98DE\t0x767A\n0x98DF\t0x24F5C\n0x98E0\t0x7188\n0x98E1\t0x5623\n0x98E2\t0x8980\n0x98E3\t0x5869\n0x98E4\t0x401D\n0x98E5\t0x7743\n0x98E6\t0x4039\n0x98E7\t0x6761\n0x98E8\t0x4045\n0x98E9\t0x35DB\n0x98EA\t0x7798\n0x98EB\t0x406A\n0x98EC\t0x406F\n0x98ED\t0x5C5E\n0x98EE\t0x77BE\n0x98EF\t0x77CB\n0x98F0\t0x58F2\n0x98F1\t0x7818\n0x98F2\t0x70B9\n0x98F3\t0x781C\n0x98F4\t0x40A8\n0x98F5\t0x7839\n0x98F6\t0x7847\n0x98F7\t0x7851\n0x98F8\t0x7866\n0x98F9\t0x8448\n0x98FA\t0x25535\n0x98FB\t0x7933\n0x98FC\t0x6803\n0x98FD\t0x7932\n0x98FE\t0x4103\n0x9940\t0x4109\n0x9941\t0x7991\n0x9942\t0x7999\n0x9943\t0x8FBB\n0x9944\t0x7A06\n0x9945\t0x8FBC\n0x9946\t0x4167\n0x9947\t0x7A91\n0x9948\t0x41B2\n0x9949\t0x7ABC\n0x994A\t0x8279\n0x994B\t0x41C4\n0x994C\t0x7ACF\n0x994D\t0x7ADB\n0x994E\t0x41CF\n0x994F\t0x4E21\n0x9950\t0x7B62\n0x9951\t0x7B6C\n0x9952\t0x7B7B\n0x9953\t0x7C12\n0x9954\t0x7C1B\n0x9955\t0x4260\n0x9956\t0x427A\n0x9957\t0x7C7B\n0x9958\t0x7C9C\n0x9959\t0x428C\n0x995A\t0x7CB8\n0x995B\t0x4294\n0x995C\t0x7CED\n0x995D\t0x8F93\n0x995E\t0x70C0\n0x995F\t0x20CCF\n0x9960\t0x7DCF\n0x9961\t0x7DD4\n0x9962\t0x7DD0\n0x9963\t0x7DFD\n0x9964\t0x7FAE\n0x9965\t0x7FB4\n0x9966\t0x729F\n0x9967\t0x4397\n0x9968\t0x8020\n0x9969\t0x8025\n0x996A\t0x7B39\n0x996B\t0x802E\n0x996C\t0x8031\n0x996D\t0x8054\n0x996E\t0x3DCC\n0x996F\t0x57B4\n0x9970\t0x70A0\n0x9971\t0x80B7\n0x9972\t0x80E9\n0x9973\t0x43ED\n0x9974\t0x810C\n0x9975\t0x732A\n0x9976\t0x810E\n0x9977\t0x8112\n0x9978\t0x7560\n0x9979\t0x8114\n0x997A\t0x4401\n0x997B\t0x3B39\n0x997C\t0x8156\n0x997D\t0x8159\n0x997E\t0x815A\n0x99A1\t0x4413\n0x99A2\t0x583A\n0x99A3\t0x817C\n0x99A4\t0x8184\n0x99A5\t0x4425\n0x99A6\t0x8193\n0x99A7\t0x442D\n0x99A8\t0x81A5\n0x99A9\t0x57EF\n0x99AA\t0x81C1\n0x99AB\t0x81E4\n0x99AC\t0x8254\n0x99AD\t0x448F\n0x99AE\t0x82A6\n0x99AF\t0x8276\n0x99B0\t0x82CA\n0x99B1\t0x82D8\n0x99B2\t0x82FF\n0x99B3\t0x44B0\n0x99B4\t0x8357\n0x99B5\t0x9669\n0x99B6\t0x698A\n0x99B7\t0x8405\n0x99B8\t0x70F5\n0x99B9\t0x8464\n0x99BA\t0x60E3\n0x99BB\t0x8488\n0x99BC\t0x4504\n0x99BD\t0x84BE\n0x99BE\t0x84E1\n0x99BF\t0x84F8\n0x99C0\t0x8510\n0x99C1\t0x8538\n0x99C2\t0x8552\n0x99C3\t0x453B\n0x99C4\t0x856F\n0x99C5\t0x8570\n0x99C6\t0x85E0\n0x99C7\t0x4577\n0x99C8\t0x8672\n0x99C9\t0x8692\n0x99CA\t0x86B2\n0x99CB\t0x86EF\n0x99CC\t0x9645\n0x99CD\t0x878B\n0x99CE\t0x4606\n0x99CF\t0x4617\n0x99D0\t0x88AE\n0x99D1\t0x88FF\n0x99D2\t0x8924\n0x99D3\t0x8947\n0x99D4\t0x8991\n0x99D5\t0x27967\n0x99D6\t0x8A29\n0x99D7\t0x8A38\n0x99D8\t0x8A94\n0x99D9\t0x8AB4\n0x99DA\t0x8C51\n0x99DB\t0x8CD4\n0x99DC\t0x8CF2\n0x99DD\t0x8D1C\n0x99DE\t0x4798\n0x99DF\t0x585F\n0x99E0\t0x8DC3\n0x99E1\t0x47ED\n0x99E2\t0x4EEE\n0x99E3\t0x8E3A\n0x99E4\t0x55D8\n0x99E5\t0x5754\n0x99E6\t0x8E71\n0x99E7\t0x55F5\n0x99E8\t0x8EB0\n0x99E9\t0x4837\n0x99EA\t0x8ECE\n0x99EB\t0x8EE2\n0x99EC\t0x8EE4\n0x99ED\t0x8EED\n0x99EE\t0x8EF2\n0x99EF\t0x8FB7\n0x99F0\t0x8FC1\n0x99F1\t0x8FCA\n0x99F2\t0x8FCC\n0x99F3\t0x9033\n0x99F4\t0x99C4\n0x99F5\t0x48AD\n0x99F6\t0x98E0\n0x99F7\t0x9213\n0x99F8\t0x491E\n0x99F9\t0x9228\n0x99FA\t0x9258\n0x99FB\t0x926B\n0x99FC\t0x92B1\n0x99FD\t0x92AE\n0x99FE\t0x92BF\n0x9A40\t0x92E3\n0x9A41\t0x92EB\n0x9A42\t0x92F3\n0x9A43\t0x92F4\n0x9A44\t0x92FD\n0x9A45\t0x9343\n0x9A46\t0x9384\n0x9A47\t0x93AD\n0x9A48\t0x4945\n0x9A49\t0x4951\n0x9A4A\t0x9EBF\n0x9A4B\t0x9417\n0x9A4C\t0x5301\n0x9A4D\t0x941D\n0x9A4E\t0x942D\n0x9A4F\t0x943E\n0x9A50\t0x496A\n0x9A51\t0x9454\n0x9A52\t0x9479\n0x9A53\t0x952D\n0x9A54\t0x95A2\n0x9A55\t0x49A7\n0x9A56\t0x95F4\n0x9A57\t0x9633\n0x9A58\t0x49E5\n0x9A59\t0x67A0\n0x9A5A\t0x4A24\n0x9A5B\t0x9740\n0x9A5C\t0x4A35\n0x9A5D\t0x97B2\n0x9A5E\t0x97C2\n0x9A5F\t0x5654\n0x9A60\t0x4AE4\n0x9A61\t0x60E8\n0x9A62\t0x98B9\n0x9A63\t0x4B19\n0x9A64\t0x98F1\n0x9A65\t0x5844\n0x9A66\t0x990E\n0x9A67\t0x9919\n0x9A68\t0x51B4\n0x9A69\t0x991C\n0x9A6A\t0x9937\n0x9A6B\t0x9942\n0x9A6C\t0x995D\n0x9A6D\t0x9962\n0x9A6E\t0x4B70\n0x9A6F\t0x99C5\n0x9A70\t0x4B9D\n0x9A71\t0x9A3C\n0x9A72\t0x9B0F\n0x9A73\t0x7A83\n0x9A74\t0x9B69\n0x9A75\t0x9B81\n0x9A76\t0x9BDD\n0x9A77\t0x9BF1\n0x9A78\t0x9BF4\n0x9A79\t0x4C6D\n0x9A7A\t0x9C20\n0x9A7B\t0x376F\n0x9A7C\t0x21BC2\n0x9A7D\t0x9D49\n0x9A7E\t0x9C3A\n0x9AA1\t0x9EFE\n0x9AA2\t0x5650\n0x9AA3\t0x9D93\n0x9AA4\t0x9DBD\n0x9AA5\t0x9DC0\n0x9AA6\t0x9DFC\n0x9AA7\t0x94F6\n0x9AA8\t0x8FB6\n0x9AA9\t0x9E7B\n0x9AAA\t0x9EAC\n0x9AAB\t0x9EB1\n0x9AAC\t0x9EBD\n0x9AAD\t0x9EC6\n0x9AAE\t0x94DC\n0x9AAF\t0x9EE2\n0x9AB0\t0x9EF1\n0x9AB1\t0x9EF8\n0x9AB2\t0x7AC8\n0x9AB3\t0x9F44\n0x9AB4\t0x20094\n0x9AB5\t0x202B7\n0x9AB6\t0x203A0\n0x9AB7\t0x691A\n0x9AB8\t0x94C3\n0x9AB9\t0x59AC\n0x9ABA\t0x204D7\n0x9ABB\t0x5840\n0x9ABC\t0x94C1\n0x9ABD\t0x37B9\n0x9ABE\t0x205D5\n0x9ABF\t0x20615\n0x9AC0\t0x20676\n0x9AC1\t0x216BA\n0x9AC2\t0x5757\n0x9AC3\t0x7173\n0x9AC4\t0x20AC2\n0x9AC5\t0x20ACD\n0x9AC6\t0x20BBF\n0x9AC7\t0x546A\n0x9AC8\t0x2F83B\n0x9AC9\t0x20BCB\n0x9ACA\t0x549E\n0x9ACB\t0x20BFB\n0x9ACC\t0x20C3B\n0x9ACD\t0x20C53\n0x9ACE\t0x20C65\n0x9ACF\t0x20C7C\n0x9AD0\t0x60E7\n0x9AD1\t0x20C8D\n0x9AD2\t0x567A\n0x9AD3\t0x20CB5\n0x9AD4\t0x20CDD\n0x9AD5\t0x20CED\n0x9AD6\t0x20D6F\n0x9AD7\t0x20DB2\n0x9AD8\t0x20DC8\n0x9AD9\t0x6955\n0x9ADA\t0x9C2F\n0x9ADB\t0x87A5\n0x9ADC\t0x20E04\n0x9ADD\t0x20E0E\n0x9ADE\t0x20ED7\n0x9ADF\t0x20F90\n0x9AE0\t0x20F2D\n0x9AE1\t0x20E73\n0x9AE2\t0x5C20\n0x9AE3\t0x20FBC\n0x9AE4\t0x5E0B\n0x9AE5\t0x2105C\n0x9AE6\t0x2104F\n0x9AE7\t0x21076\n0x9AE8\t0x671E\n0x9AE9\t0x2107B\n0x9AEA\t0x21088\n0x9AEB\t0x21096\n0x9AEC\t0x3647\n0x9AED\t0x210BF\n0x9AEE\t0x210D3\n0x9AEF\t0x2112F\n0x9AF0\t0x2113B\n0x9AF1\t0x5364\n0x9AF2\t0x84AD\n0x9AF3\t0x212E3\n0x9AF4\t0x21375\n0x9AF5\t0x21336\n0x9AF6\t0x8B81\n0x9AF7\t0x21577\n0x9AF8\t0x21619\n0x9AF9\t0x217C3\n0x9AFA\t0x217C7\n0x9AFB\t0x4E78\n0x9AFC\t0x70BB\n0x9AFD\t0x2182D\n0x9AFE\t0x2196A\n0x9B40\t0x21A2D\n0x9B41\t0x21A45\n0x9B42\t0x21C2A\n0x9B43\t0x21C70\n0x9B44\t0x21CAC\n0x9B45\t0x21EC8\n0x9B46\t0x62C3\n0x9B47\t0x21ED5\n0x9B48\t0x21F15\n0x9B49\t0x7198\n0x9B4A\t0x6855\n0x9B4B\t0x22045\n0x9B4C\t0x69E9\n0x9B4D\t0x36C8\n0x9B4E\t0x2227C\n0x9B4F\t0x223D7\n0x9B50\t0x223FA\n0x9B51\t0x2272A\n0x9B52\t0x22871\n0x9B53\t0x2294F\n0x9B54\t0x82FD\n0x9B55\t0x22967\n0x9B56\t0x22993\n0x9B57\t0x22AD5\n0x9B58\t0x89A5\n0x9B59\t0x22AE8\n0x9B5A\t0x8FA0\n0x9B5B\t0x22B0E\n0x9B5C\t0x97B8\n0x9B5D\t0x22B3F\n0x9B5E\t0x9847\n0x9B5F\t0x9ABD\n0x9B60\t0x22C4C\n0x9B62\t0x22C88\n0x9B63\t0x22CB7\n0x9B64\t0x25BE8\n0x9B65\t0x22D08\n0x9B66\t0x22D12\n0x9B67\t0x22DB7\n0x9B68\t0x22D95\n0x9B69\t0x22E42\n0x9B6A\t0x22F74\n0x9B6B\t0x22FCC\n0x9B6C\t0x23033\n0x9B6D\t0x23066\n0x9B6E\t0x2331F\n0x9B6F\t0x233DE\n0x9B70\t0x5FB1\n0x9B71\t0x6648\n0x9B72\t0x66BF\n0x9B73\t0x27A79\n0x9B74\t0x23567\n0x9B75\t0x235F3\n0x9B77\t0x249BA\n0x9B79\t0x2361A\n0x9B7A\t0x23716\n0x9B7C\t0x20346\n0x9B7D\t0x58B5\n0x9B7E\t0x670E\n0x9BA1\t0x6918\n0x9BA2\t0x23AA7\n0x9BA3\t0x27657\n0x9BA4\t0x25FE2\n0x9BA5\t0x23E11\n0x9BA6\t0x23EB9\n0x9BA7\t0x275FE\n0x9BA8\t0x2209A\n0x9BA9\t0x48D0\n0x9BAA\t0x4AB8\n0x9BAB\t0x24119\n0x9BAC\t0x28A9A\n0x9BAD\t0x242EE\n0x9BAE\t0x2430D\n0x9BAF\t0x2403B\n0x9BB0\t0x24334\n0x9BB1\t0x24396\n0x9BB2\t0x24A45\n0x9BB3\t0x205CA\n0x9BB4\t0x51D2\n0x9BB5\t0x20611\n0x9BB6\t0x599F\n0x9BB7\t0x21EA8\n0x9BB8\t0x3BBE\n0x9BB9\t0x23CFF\n0x9BBA\t0x24404\n0x9BBB\t0x244D6\n0x9BBC\t0x5788\n0x9BBD\t0x24674\n0x9BBE\t0x399B\n0x9BBF\t0x2472F\n0x9BC0\t0x285E8\n0x9BC1\t0x299C9\n0x9BC2\t0x3762\n0x9BC3\t0x221C3\n0x9BC4\t0x8B5E\n0x9BC5\t0x28B4E\n0x9BC7\t0x24812\n0x9BC8\t0x248FB\n0x9BC9\t0x24A15\n0x9BCA\t0x7209\n0x9BCB\t0x24AC0\n0x9BCC\t0x20C78\n0x9BCD\t0x5965\n0x9BCE\t0x24EA5\n0x9BCF\t0x24F86\n0x9BD0\t0x20779\n0x9BD1\t0x8EDA\n0x9BD2\t0x2502C\n0x9BD3\t0x528F\n0x9BD4\t0x573F\n0x9BD5\t0x7171\n0x9BD6\t0x25299\n0x9BD7\t0x25419\n0x9BD8\t0x23F4A\n0x9BD9\t0x24AA7\n0x9BDA\t0x55BC\n0x9BDB\t0x25446\n0x9BDC\t0x2546E\n0x9BDD\t0x26B52\n0x9BDF\t0x3473\n0x9BE0\t0x2553F\n0x9BE1\t0x27632\n0x9BE2\t0x2555E\n0x9BE3\t0x4718\n0x9BE4\t0x25562\n0x9BE5\t0x25566\n0x9BE6\t0x257C7\n0x9BE7\t0x2493F\n0x9BE8\t0x2585D\n0x9BE9\t0x5066\n0x9BEA\t0x34FB\n0x9BEB\t0x233CC\n0x9BED\t0x25903\n0x9BEE\t0x477C\n0x9BEF\t0x28948\n0x9BF0\t0x25AAE\n0x9BF1\t0x25B89\n0x9BF2\t0x25C06\n0x9BF3\t0x21D90\n0x9BF4\t0x57A1\n0x9BF5\t0x7151\n0x9BF7\t0x26102\n0x9BF8\t0x27C12\n0x9BF9\t0x9056\n0x9BFA\t0x261B2\n0x9BFB\t0x24F9A\n0x9BFC\t0x8B62\n0x9BFD\t0x26402\n0x9BFE\t0x2644A\n0x9C40\t0x5D5B\n0x9C41\t0x26BF7\n0x9C43\t0x26484\n0x9C44\t0x2191C\n0x9C45\t0x8AEA\n0x9C46\t0x249F6\n0x9C47\t0x26488\n0x9C48\t0x23FEF\n0x9C49\t0x26512\n0x9C4A\t0x4BC0\n0x9C4B\t0x265BF\n0x9C4C\t0x266B5\n0x9C4D\t0x2271B\n0x9C4E\t0x9465\n0x9C4F\t0x257E1\n0x9C50\t0x6195\n0x9C51\t0x5A27\n0x9C52\t0x2F8CD\n0x9C54\t0x56B9\n0x9C55\t0x24521\n0x9C56\t0x266FC\n0x9C57\t0x4E6A\n0x9C58\t0x24934\n0x9C59\t0x9656\n0x9C5A\t0x6D8F\n0x9C5B\t0x26CBD\n0x9C5C\t0x3618\n0x9C5D\t0x8977\n0x9C5E\t0x26799\n0x9C5F\t0x2686E\n0x9C60\t0x26411\n0x9C61\t0x2685E\n0x9C63\t0x268C7\n0x9C64\t0x7B42\n0x9C65\t0x290C0\n0x9C66\t0x20A11\n0x9C67\t0x26926\n0x9C69\t0x26939\n0x9C6A\t0x7A45\n0x9C6C\t0x269FA\n0x9C6D\t0x9A26\n0x9C6E\t0x26A2D\n0x9C6F\t0x365F\n0x9C70\t0x26469\n0x9C71\t0x20021\n0x9C72\t0x7983\n0x9C73\t0x26A34\n0x9C74\t0x26B5B\n0x9C75\t0x5D2C\n0x9C76\t0x23519\n0x9C78\t0x26B9D\n0x9C79\t0x46D0\n0x9C7A\t0x26CA4\n0x9C7B\t0x753B\n0x9C7C\t0x8865\n0x9C7D\t0x26DAE\n0x9C7E\t0x58B6\n0x9CA1\t0x371C\n0x9CA2\t0x2258D\n0x9CA3\t0x2704B\n0x9CA4\t0x271CD\n0x9CA5\t0x3C54\n0x9CA6\t0x27280\n0x9CA7\t0x27285\n0x9CA8\t0x9281\n0x9CA9\t0x2217A\n0x9CAA\t0x2728B\n0x9CAB\t0x9330\n0x9CAC\t0x272E6\n0x9CAD\t0x249D0\n0x9CAE\t0x6C39\n0x9CAF\t0x949F\n0x9CB0\t0x27450\n0x9CB1\t0x20EF8\n0x9CB2\t0x8827\n0x9CB3\t0x88F5\n0x9CB4\t0x22926\n0x9CB5\t0x28473\n0x9CB6\t0x217B1\n0x9CB7\t0x6EB8\n0x9CB8\t0x24A2A\n0x9CB9\t0x21820\n0x9CBA\t0x39A4\n0x9CBB\t0x36B9\n0x9CBE\t0x453F\n0x9CBF\t0x66B6\n0x9CC0\t0x29CAD\n0x9CC1\t0x298A4\n0x9CC2\t0x8943\n0x9CC3\t0x277CC\n0x9CC4\t0x27858\n0x9CC5\t0x56D6\n0x9CC6\t0x40DF\n0x9CC7\t0x2160A\n0x9CC8\t0x39A1\n0x9CC9\t0x2372F\n0x9CCA\t0x280E8\n0x9CCB\t0x213C5\n0x9CCC\t0x71AD\n0x9CCD\t0x8366\n0x9CCE\t0x279DD\n0x9CCF\t0x291A8\n0x9CD1\t0x4CB7\n0x9CD2\t0x270AF\n0x9CD3\t0x289AB\n0x9CD4\t0x279FD\n0x9CD5\t0x27A0A\n0x9CD6\t0x27B0B\n0x9CD7\t0x27D66\n0x9CD8\t0x2417A\n0x9CD9\t0x7B43\n0x9CDA\t0x797E\n0x9CDB\t0x28009\n0x9CDC\t0x6FB5\n0x9CDD\t0x2A2DF\n0x9CDE\t0x6A03\n0x9CDF\t0x28318\n0x9CE0\t0x53A2\n0x9CE1\t0x26E07\n0x9CE2\t0x93BF\n0x9CE3\t0x6836\n0x9CE4\t0x975D\n0x9CE5\t0x2816F\n0x9CE6\t0x28023\n0x9CE7\t0x269B5\n0x9CE8\t0x213ED\n0x9CE9\t0x2322F\n0x9CEA\t0x28048\n0x9CEB\t0x5D85\n0x9CEC\t0x28C30\n0x9CED\t0x28083\n0x9CEE\t0x5715\n0x9CEF\t0x9823\n0x9CF0\t0x28949\n0x9CF1\t0x5DAB\n0x9CF2\t0x24988\n0x9CF3\t0x65BE\n0x9CF4\t0x69D5\n0x9CF5\t0x53D2\n0x9CF6\t0x24AA5\n0x9CF7\t0x23F81\n0x9CF8\t0x3C11\n0x9CF9\t0x6736\n0x9CFA\t0x28090\n0x9CFB\t0x280F4\n0x9CFC\t0x2812E\n0x9CFD\t0x21FA1\n0x9CFE\t0x2814F\n0x9D40\t0x28189\n0x9D41\t0x281AF\n0x9D42\t0x2821A\n0x9D43\t0x28306\n0x9D44\t0x2832F\n0x9D45\t0x2838A\n0x9D46\t0x35CA\n0x9D47\t0x28468\n0x9D48\t0x286AA\n0x9D49\t0x48FA\n0x9D4A\t0x63E6\n0x9D4B\t0x28956\n0x9D4C\t0x7808\n0x9D4D\t0x9255\n0x9D4E\t0x289B8\n0x9D4F\t0x43F2\n0x9D50\t0x289E7\n0x9D51\t0x43DF\n0x9D52\t0x289E8\n0x9D53\t0x28B46\n0x9D54\t0x28BD4\n0x9D55\t0x59F8\n0x9D56\t0x28C09\n0x9D58\t0x28FC5\n0x9D59\t0x290EC\n0x9D5B\t0x29110\n0x9D5C\t0x2913C\n0x9D5D\t0x3DF7\n0x9D5E\t0x2915E\n0x9D5F\t0x24ACA\n0x9D60\t0x8FD0\n0x9D61\t0x728F\n0x9D62\t0x568B\n0x9D63\t0x294E7\n0x9D64\t0x295E9\n0x9D65\t0x295B0\n0x9D66\t0x295B8\n0x9D67\t0x29732\n0x9D68\t0x298D1\n0x9D69\t0x29949\n0x9D6A\t0x2996A\n0x9D6B\t0x299C3\n0x9D6C\t0x29A28\n0x9D6D\t0x29B0E\n0x9D6E\t0x29D5A\n0x9D6F\t0x29D9B\n0x9D70\t0x7E9F\n0x9D71\t0x29EF8\n0x9D72\t0x29F23\n0x9D73\t0x4CA4\n0x9D74\t0x9547\n0x9D75\t0x2A293\n0x9D76\t0x71A2\n0x9D77\t0x2A2FF\n0x9D78\t0x4D91\n0x9D79\t0x9012\n0x9D7A\t0x2A5CB\n0x9D7B\t0x4D9C\n0x9D7C\t0x20C9C\n0x9D7D\t0x8FBE\n0x9D7E\t0x55C1\n0x9DA1\t0x8FBA\n0x9DA2\t0x224B0\n0x9DA3\t0x8FB9\n0x9DA4\t0x24A93\n0x9DA5\t0x4509\n0x9DA6\t0x7E7F\n0x9DA7\t0x6F56\n0x9DA8\t0x6AB1\n0x9DA9\t0x4EEA\n0x9DAA\t0x34E4\n0x9DAB\t0x28B2C\n0x9DAC\t0x2789D\n0x9DAD\t0x373A\n0x9DAE\t0x8E80\n0x9DAF\t0x217F5\n0x9DB0\t0x28024\n0x9DB1\t0x28B6C\n0x9DB2\t0x28B99\n0x9DB3\t0x27A3E\n0x9DB4\t0x266AF\n0x9DB5\t0x3DEB\n0x9DB6\t0x27655\n0x9DB7\t0x23CB7\n0x9DB8\t0x25635\n0x9DB9\t0x25956\n0x9DBA\t0x4E9A\n0x9DBB\t0x25E81\n0x9DBC\t0x26258\n0x9DBD\t0x56BF\n0x9DBE\t0x20E6D\n0x9DBF\t0x8E0E\n0x9DC0\t0x5B6D\n0x9DC1\t0x23E88\n0x9DC2\t0x24C9E\n0x9DC3\t0x63DE\n0x9DC5\t0x217F6\n0x9DC6\t0x2187B\n0x9DC7\t0x6530\n0x9DC8\t0x562D\n0x9DC9\t0x25C4A\n0x9DCA\t0x541A\n0x9DCB\t0x25311\n0x9DCC\t0x3DC6\n0x9DCD\t0x29D98\n0x9DCE\t0x4C7D\n0x9DCF\t0x5622\n0x9DD0\t0x561E\n0x9DD1\t0x7F49\n0x9DD2\t0x25ED8\n0x9DD3\t0x5975\n0x9DD4\t0x23D40\n0x9DD5\t0x8770\n0x9DD6\t0x4E1C\n0x9DD7\t0x20FEA\n0x9DD8\t0x20D49\n0x9DD9\t0x236BA\n0x9DDA\t0x8117\n0x9DDB\t0x9D5E\n0x9DDC\t0x8D18\n0x9DDD\t0x763B\n0x9DDE\t0x9C45\n0x9DDF\t0x764E\n0x9DE0\t0x77B9\n0x9DE1\t0x9345\n0x9DE2\t0x5432\n0x9DE3\t0x8148\n0x9DE4\t0x82F7\n0x9DE5\t0x5625\n0x9DE6\t0x8132\n0x9DE7\t0x8418\n0x9DE8\t0x80BD\n0x9DE9\t0x55EA\n0x9DEA\t0x7962\n0x9DEB\t0x5643\n0x9DEC\t0x5416\n0x9DED\t0x20E9D\n0x9DEE\t0x35CE\n0x9DEF\t0x5605\n0x9DF0\t0x55F1\n0x9DF1\t0x66F1\n0x9DF2\t0x282E2\n0x9DF3\t0x362D\n0x9DF4\t0x7534\n0x9DF5\t0x55F0\n0x9DF6\t0x55BA\n0x9DF7\t0x5497\n0x9DF8\t0x5572\n0x9DF9\t0x20C41\n0x9DFA\t0x20C96\n0x9DFB\t0x5ED0\n0x9DFC\t0x25148\n0x9DFD\t0x20E76\n0x9DFE\t0x22C62\n0x9E40\t0x20EA2\n0x9E41\t0x9EAB\n0x9E42\t0x7D5A\n0x9E43\t0x55DE\n0x9E44\t0x21075\n0x9E45\t0x629D\n0x9E46\t0x976D\n0x9E47\t0x5494\n0x9E48\t0x8CCD\n0x9E49\t0x71F6\n0x9E4A\t0x9176\n0x9E4B\t0x63FC\n0x9E4C\t0x63B9\n0x9E4D\t0x63FE\n0x9E4E\t0x5569\n0x9E4F\t0x22B43\n0x9E50\t0x9C72\n0x9E51\t0x22EB3\n0x9E52\t0x519A\n0x9E53\t0x34DF\n0x9E54\t0x20DA7\n0x9E55\t0x51A7\n0x9E56\t0x544D\n0x9E57\t0x551E\n0x9E58\t0x5513\n0x9E59\t0x7666\n0x9E5A\t0x8E2D\n0x9E5B\t0x2688A\n0x9E5C\t0x75B1\n0x9E5D\t0x80B6\n0x9E5E\t0x8804\n0x9E5F\t0x8786\n0x9E60\t0x88C7\n0x9E61\t0x81B6\n0x9E62\t0x841C\n0x9E63\t0x210C1\n0x9E64\t0x44EC\n0x9E65\t0x7304\n0x9E66\t0x24706\n0x9E67\t0x5B90\n0x9E68\t0x830B\n0x9E69\t0x26893\n0x9E6A\t0x567B\n0x9E6B\t0x226F4\n0x9E6C\t0x27D2F\n0x9E6D\t0x241A3\n0x9E6E\t0x27D73\n0x9E6F\t0x26ED0\n0x9E70\t0x272B6\n0x9E71\t0x9170\n0x9E72\t0x211D9\n0x9E73\t0x9208\n0x9E74\t0x23CFC\n0x9E75\t0x2A6A9\n0x9E76\t0x20EAC\n0x9E77\t0x20EF9\n0x9E78\t0x7266\n0x9E79\t0x21CA2\n0x9E7A\t0x474E\n0x9E7B\t0x24FC2\n0x9E7C\t0x27FF9\n0x9E7D\t0x20FEB\n0x9E7E\t0x40FA\n0x9EA1\t0x9C5D\n0x9EA2\t0x651F\n0x9EA3\t0x22DA0\n0x9EA4\t0x48F3\n0x9EA5\t0x247E0\n0x9EA6\t0x29D7C\n0x9EA7\t0x20FEC\n0x9EA8\t0x20E0A\n0x9EAA\t0x275A3\n0x9EAB\t0x20FED\n0x9EAD\t0x26048\n0x9EAE\t0x21187\n0x9EAF\t0x71A3\n0x9EB0\t0x7E8E\n0x9EB1\t0x9D50\n0x9EB2\t0x4E1A\n0x9EB3\t0x4E04\n0x9EB4\t0x3577\n0x9EB5\t0x5B0D\n0x9EB6\t0x6CB2\n0x9EB7\t0x5367\n0x9EB8\t0x36AC\n0x9EB9\t0x39DC\n0x9EBA\t0x537D\n0x9EBB\t0x36A5\n0x9EBC\t0x24618\n0x9EBD\t0x589A\n0x9EBE\t0x24B6E\n0x9EBF\t0x822D\n0x9EC0\t0x544B\n0x9EC1\t0x57AA\n0x9EC2\t0x25A95\n0x9EC3\t0x20979\n0x9EC5\t0x3A52\n0x9EC6\t0x22465\n0x9EC7\t0x7374\n0x9EC8\t0x29EAC\n0x9EC9\t0x4D09\n0x9ECA\t0x9BED\n0x9ECB\t0x23CFE\n0x9ECC\t0x29F30\n0x9ECD\t0x4C5B\n0x9ECE\t0x24FA9\n0x9ECF\t0x2959E\n0x9ED0\t0x29FDE\n0x9ED1\t0x845C\n0x9ED2\t0x23DB6\n0x9ED3\t0x272B2\n0x9ED4\t0x267B3\n0x9ED5\t0x23720\n0x9ED6\t0x632E\n0x9ED7\t0x7D25\n0x9ED8\t0x23EF7\n0x9ED9\t0x23E2C\n0x9EDA\t0x3A2A\n0x9EDB\t0x9008\n0x9EDC\t0x52CC\n0x9EDD\t0x3E74\n0x9EDE\t0x367A\n0x9EDF\t0x45E9\n0x9EE0\t0x2048E\n0x9EE1\t0x7640\n0x9EE2\t0x5AF0\n0x9EE3\t0x20EB6\n0x9EE4\t0x787A\n0x9EE5\t0x27F2E\n0x9EE6\t0x58A7\n0x9EE7\t0x40BF\n0x9EE8\t0x567C\n0x9EE9\t0x9B8B\n0x9EEA\t0x5D74\n0x9EEB\t0x7654\n0x9EEC\t0x2A434\n0x9EED\t0x9E85\n0x9EEE\t0x4CE1\n0x9EF0\t0x37FB\n0x9EF1\t0x6119\n0x9EF2\t0x230DA\n0x9EF3\t0x243F2\n0x9EF5\t0x565D\n0x9EF6\t0x212A9\n0x9EF7\t0x57A7\n0x9EF8\t0x24963\n0x9EF9\t0x29E06\n0x9EFA\t0x5234\n0x9EFB\t0x270AE\n0x9EFC\t0x35AD\n0x9EFE\t0x9D7C\n0x9F40\t0x7C56\n0x9F41\t0x9B39\n0x9F42\t0x57DE\n0x9F43\t0x2176C\n0x9F44\t0x5C53\n0x9F45\t0x64D3\n0x9F46\t0x294D0\n0x9F47\t0x26335\n0x9F48\t0x27164\n0x9F49\t0x86AD\n0x9F4A\t0x20D28\n0x9F4B\t0x26D22\n0x9F4C\t0x24AE2\n0x9F4D\t0x20D71\n0x9F4F\t0x51FE\n0x9F50\t0x21F0F\n0x9F51\t0x5D8E\n0x9F52\t0x9703\n0x9F53\t0x21DD1\n0x9F54\t0x9E81\n0x9F55\t0x904C\n0x9F56\t0x7B1F\n0x9F57\t0x9B02\n0x9F58\t0x5CD1\n0x9F59\t0x7BA3\n0x9F5A\t0x6268\n0x9F5B\t0x6335\n0x9F5C\t0x9AFF\n0x9F5D\t0x7BCF\n0x9F5E\t0x9B2A\n0x9F5F\t0x7C7E\n0x9F61\t0x7C42\n0x9F62\t0x7C86\n0x9F63\t0x9C15\n0x9F64\t0x7BFC\n0x9F65\t0x9B09\n0x9F67\t0x9C1B\n0x9F68\t0x2493E\n0x9F69\t0x9F5A\n0x9F6A\t0x5573\n0x9F6B\t0x5BC3\n0x9F6C\t0x4FFD\n0x9F6D\t0x9E98\n0x9F6E\t0x4FF2\n0x9F6F\t0x5260\n0x9F70\t0x3E06\n0x9F71\t0x52D1\n0x9F72\t0x5767\n0x9F73\t0x5056\n0x9F74\t0x59B7\n0x9F75\t0x5E12\n0x9F76\t0x97C8\n0x9F77\t0x9DAB\n0x9F78\t0x8F5C\n0x9F79\t0x5469\n0x9F7A\t0x97B4\n0x9F7B\t0x9940\n0x9F7C\t0x97BA\n0x9F7D\t0x532C\n0x9F7E\t0x6130\n0x9FA1\t0x692C\n0x9FA2\t0x53DA\n0x9FA3\t0x9C0A\n0x9FA4\t0x9D02\n0x9FA5\t0x4C3B\n0x9FA6\t0x9641\n0x9FA7\t0x6980\n0x9FA8\t0x50A6\n0x9FA9\t0x7546\n0x9FAA\t0x2176D\n0x9FAB\t0x99DA\n0x9FAC\t0x5273\n0x9FAE\t0x9159\n0x9FAF\t0x9681\n0x9FB0\t0x915C\n0x9FB2\t0x9151\n0x9FB3\t0x28E97\n0x9FB4\t0x637F\n0x9FB5\t0x26D23\n0x9FB6\t0x6ACA\n0x9FB7\t0x5611\n0x9FB8\t0x918E\n0x9FB9\t0x757A\n0x9FBA\t0x6285\n0x9FBB\t0x203FC\n0x9FBC\t0x734F\n0x9FBD\t0x7C70\n0x9FBE\t0x25C21\n0x9FBF\t0x23CFD\n0x9FC1\t0x24919\n0x9FC2\t0x76D6\n0x9FC3\t0x9B9D\n0x9FC4\t0x4E2A\n0x9FC5\t0x20CD4\n0x9FC6\t0x83BE\n0x9FC7\t0x8842\n0x9FC9\t0x5C4A\n0x9FCA\t0x69C0\n0x9FCC\t0x577A\n0x9FCD\t0x521F\n0x9FCE\t0x5DF5\n0x9FCF\t0x4ECE\n0x9FD0\t0x6C31\n0x9FD1\t0x201F2\n0x9FD2\t0x4F39\n0x9FD3\t0x549C\n0x9FD4\t0x54DA\n0x9FD5\t0x529A\n0x9FD6\t0x8D82\n0x9FD7\t0x35FE\n0x9FD9\t0x35F3\n0x9FDB\t0x6B52\n0x9FDC\t0x917C\n0x9FDD\t0x9FA5\n0x9FDE\t0x9B97\n0x9FDF\t0x982E\n0x9FE0\t0x98B4\n0x9FE1\t0x9ABA\n0x9FE2\t0x9EA8\n0x9FE3\t0x9E84\n0x9FE4\t0x717A\n0x9FE5\t0x7B14\n0x9FE7\t0x6BFA\n0x9FE8\t0x8818\n0x9FE9\t0x7F78\n0x9FEB\t0x5620\n0x9FEC\t0x2A64A\n0x9FED\t0x8E77\n0x9FEE\t0x9F53\n0x9FF0\t0x8DD4\n0x9FF1\t0x8E4F\n0x9FF2\t0x9E1C\n0x9FF3\t0x8E01\n0x9FF4\t0x6282\n0x9FF5\t0x2837D\n0x9FF6\t0x8E28\n0x9FF7\t0x8E75\n0x9FF8\t0x7AD3\n0x9FF9\t0x24A77\n0x9FFA\t0x7A3E\n0x9FFB\t0x78D8\n0x9FFC\t0x6CEA\n0x9FFD\t0x8A67\n0x9FFE\t0x7607\n0xA040\t0x28A5A\n0xA041\t0x9F26\n0xA042\t0x6CCE\n0xA043\t0x87D6\n0xA044\t0x75C3\n0xA045\t0x2A2B2\n0xA046\t0x7853\n0xA047\t0x2F840\n0xA048\t0x8D0C\n0xA049\t0x72E2\n0xA04A\t0x7371\n0xA04B\t0x8B2D\n0xA04C\t0x7302\n0xA04D\t0x74F1\n0xA04E\t0x8CEB\n0xA04F\t0x24ABB\n0xA050\t0x862F\n0xA051\t0x5FBA\n0xA052\t0x88A0\n0xA053\t0x44B7\n0xA055\t0x2183B\n0xA056\t0x26E05\n0xA058\t0x8A7E\n0xA059\t0x2251B\n0xA05B\t0x60FD\n0xA05C\t0x7667\n0xA05D\t0x9AD7\n0xA05E\t0x9D44\n0xA05F\t0x936E\n0xA060\t0x9B8F\n0xA061\t0x87F5\n0xA064\t0x8CF7\n0xA065\t0x732C\n0xA066\t0x9721\n0xA067\t0x9BB0\n0xA068\t0x35D6\n0xA069\t0x72B2\n0xA06A\t0x4C07\n0xA06B\t0x7C51\n0xA06C\t0x994A\n0xA06D\t0x26159\n0xA06E\t0x6159\n0xA06F\t0x4C04\n0xA070\t0x9E96\n0xA071\t0x617D\n0xA073\t0x575F\n0xA074\t0x616F\n0xA075\t0x62A6\n0xA076\t0x6239\n0xA078\t0x3A5C\n0xA079\t0x61E2\n0xA07A\t0x53AA\n0xA07B\t0x233F5\n0xA07C\t0x6364\n0xA07D\t0x6802\n0xA07E\t0x35D2\n0xA0A1\t0x5D57\n0xA0A2\t0x28BC2\n0xA0A3\t0x8FDA\n0xA0A4\t0x28E39\n0xA0A6\t0x50D9\n0xA0A7\t0x21D46\n0xA0A8\t0x7906\n0xA0A9\t0x5332\n0xA0AA\t0x9638\n0xA0AB\t0x20F3B\n0xA0AC\t0x4065\n0xA0AE\t0x77FE\n0xA0B0\t0x7CC2\n0xA0B1\t0x25F1A\n0xA0B2\t0x7CDA\n0xA0B3\t0x7A2D\n0xA0B4\t0x8066\n0xA0B5\t0x8063\n0xA0B6\t0x7D4D\n0xA0B7\t0x7505\n0xA0B8\t0x74F2\n0xA0B9\t0x8994\n0xA0BA\t0x821A\n0xA0BB\t0x670C\n0xA0BC\t0x8062\n0xA0BD\t0x27486\n0xA0BE\t0x805B\n0xA0BF\t0x74F0\n0xA0C0\t0x8103\n0xA0C1\t0x7724\n0xA0C2\t0x8989\n0xA0C3\t0x267CC\n0xA0C4\t0x7553\n0xA0C5\t0x26ED1\n0xA0C6\t0x87A9\n0xA0C7\t0x87CE\n0xA0C8\t0x81C8\n0xA0C9\t0x878C\n0xA0CA\t0x8A49\n0xA0CB\t0x8CAD\n0xA0CC\t0x8B43\n0xA0CD\t0x772B\n0xA0CE\t0x74F8\n0xA0CF\t0x84DA\n0xA0D0\t0x3635\n0xA0D1\t0x69B2\n0xA0D2\t0x8DA6\n0xA0D4\t0x89A9\n0xA0D6\t0x6DB9\n0xA0D7\t0x87C1\n0xA0D8\t0x24011\n0xA0D9\t0x74E7\n0xA0DA\t0x3DDB\n0xA0DB\t0x7176\n0xA0DC\t0x60A4\n0xA0DD\t0x619C\n0xA0DE\t0x3CD1\n0xA0E0\t0x6077\n0xA0E2\t0x7F71\n0xA0E3\t0x28B2D\n0xA0E5\t0x60E9\n0xA0E6\t0x4B7E\n0xA0E7\t0x5220\n0xA0E8\t0x3C18\n0xA0E9\t0x23CC7\n0xA0EA\t0x25ED7\n0xA0EB\t0x27656\n0xA0EC\t0x25531\n0xA0ED\t0x21944\n0xA0EE\t0x212FE\n0xA0EF\t0x29903\n0xA0F0\t0x26DDC\n0xA0F1\t0x270AD\n0xA0F2\t0x5CC1\n0xA0F3\t0x261AD\n0xA0F4\t0x28A0F\n0xA0F5\t0x23677\n0xA0F6\t0x200EE\n0xA0F7\t0x26846\n0xA0F8\t0x24F0E\n0xA0F9\t0x4562\n0xA0FA\t0x5B1F\n0xA0FB\t0x2634C\n0xA0FC\t0x9F50\n0xA0FD\t0x9EA6\n0xA0FE\t0x2626B\n0xA140\t0x3000\n0xA141\t0xFF0C\n0xA142\t0x3001\n0xA143\t0x3002\n0xA144\t0xFF0E\n0xA145\t0x2022\n0xA146\t0xFF1B\n0xA147\t0xFF1A\n0xA148\t0xFF1F\n0xA149\t0xFF01\n0xA14A\t0xFE30\n0xA14B\t0x2026\n0xA14C\t0x2025\n0xA14D\t0xFE50\n0xA14E\t0xFF64\n0xA14F\t0xFE52\n0xA150\t0x00B7\n0xA151\t0xFE54\n0xA152\t0xFE55\n0xA153\t0xFE56\n0xA154\t0xFE57\n0xA155\t0xFF5C\n0xA156\t0x2013\n0xA157\t0xFE31\n0xA158\t0x2014\n0xA159\t0xFE33\n0xA15B\t0xFE34\n0xA15C\t0xFE4F\n0xA15D\t0xFF08\n0xA15E\t0xFF09\n0xA15F\t0xFE35\n0xA160\t0xFE36\n0xA161\t0xFF5B\n0xA162\t0xFF5D\n0xA163\t0xFE37\n0xA164\t0xFE38\n0xA165\t0x3014\n0xA166\t0x3015\n0xA167\t0xFE39\n0xA168\t0xFE3A\n0xA169\t0x3010\n0xA16A\t0x3011\n0xA16B\t0xFE3B\n0xA16C\t0xFE3C\n0xA16D\t0x300A\n0xA16E\t0x300B\n0xA16F\t0xFE3D\n0xA170\t0xFE3E\n0xA171\t0x3008\n0xA172\t0x3009\n0xA173\t0xFE3F\n0xA174\t0xFE40\n0xA175\t0x300C\n0xA176\t0x300D\n0xA177\t0xFE41\n0xA178\t0xFE42\n0xA179\t0x300E\n0xA17A\t0x300F\n0xA17B\t0xFE43\n0xA17C\t0xFE44\n0xA17D\t0xFE59\n0xA17E\t0xFE5A\n0xA1A1\t0xFE5B\n0xA1A2\t0xFE5C\n0xA1A3\t0xFE5D\n0xA1A4\t0xFE5E\n0xA1A5\t0x2018\n0xA1A6\t0x2019\n0xA1A7\t0x201C\n0xA1A8\t0x201D\n0xA1A9\t0x301D\n0xA1AA\t0x301E\n0xA1AB\t0x2035\n0xA1AC\t0x2032\n0xA1AD\t0xFF03\n0xA1AE\t0xFF06\n0xA1AF\t0xFF0A\n0xA1B0\t0x203B\n0xA1B1\t0x00A7\n0xA1B2\t0x3003\n0xA1B3\t0x25CB\n0xA1B4\t0x25CF\n0xA1B5\t0x25B3\n0xA1B6\t0x25B2\n0xA1B7\t0x25CE\n0xA1B8\t0x2606\n0xA1B9\t0x2605\n0xA1BA\t0x25C7\n0xA1BB\t0x25C6\n0xA1BC\t0x25A1\n0xA1BD\t0x25A0\n0xA1BE\t0x25BD\n0xA1BF\t0x25BC\n0xA1C0\t0x32A3\n0xA1C1\t0x2105\n0xA1C2\t0x203E\n0xA1C4\t0xFF3F\n0xA1C6\t0xFE49\n0xA1C7\t0xFE4A\n0xA1C8\t0xFE4D\n0xA1C9\t0xFE4E\n0xA1CA\t0xFE4B\n0xA1CB\t0xFE4C\n0xA1CC\t0xFE5F\n0xA1CD\t0xFE60\n0xA1CE\t0xFE61\n0xA1CF\t0xFF0B\n0xA1D0\t0xFF0D\n0xA1D1\t0x00D7\n0xA1D2\t0x00F7\n0xA1D3\t0x00B1\n0xA1D4\t0x221A\n0xA1D5\t0xFF1C\n0xA1D6\t0xFF1E\n0xA1D7\t0xFF1D\n0xA1D8\t0x2266\n0xA1D9\t0x2267\n0xA1DA\t0x2260\n0xA1DB\t0x221E\n0xA1DC\t0x2252\n0xA1DD\t0x2261\n0xA1DE\t0xFE62\n0xA1DF\t0xFE63\n0xA1E0\t0xFE64\n0xA1E1\t0xFE65\n0xA1E2\t0xFE66\n0xA1E3\t0x223C\n0xA1E4\t0x2229\n0xA1E5\t0x222A\n0xA1E6\t0x22A5\n0xA1E7\t0x2220\n0xA1E8\t0x221F\n0xA1E9\t0x22BF\n0xA1EA\t0x33D2\n0xA1EB\t0x33D1\n0xA1EC\t0x222B\n0xA1ED\t0x222E\n0xA1EE\t0x2235\n0xA1EF\t0x2234\n0xA1F0\t0x2640\n0xA1F1\t0x2642\n0xA1F2\t0x2641\n0xA1F3\t0x2609\n0xA1F4\t0x2191\n0xA1F5\t0x2193\n0xA1F6\t0x2190\n0xA1F7\t0x2192\n0xA1F8\t0x2196\n0xA1F9\t0x2197\n0xA1FA\t0x2199\n0xA1FB\t0x2198\n0xA1FC\t0x2225\n0xA1FD\t0x2223\n0xA241\t0xFF0F\n0xA242\t0xFF3C\n0xA243\t0xFF04\n0xA244\t0x00A5\n0xA245\t0x3012\n0xA246\t0x00A2\n0xA247\t0x00A3\n0xA248\t0xFF05\n0xA249\t0xFF20\n0xA24A\t0x2103\n0xA24B\t0x2109\n0xA24C\t0xFE69\n0xA24D\t0xFE6A\n0xA24E\t0xFE6B\n0xA24F\t0x33D5\n0xA250\t0x339C\n0xA251\t0x339D\n0xA252\t0x339E\n0xA253\t0x33CE\n0xA254\t0x33A1\n0xA255\t0x338E\n0xA256\t0x338F\n0xA257\t0x33C4\n0xA258\t0x00B0\n0xA259\t0x5159\n0xA25A\t0x515B\n0xA25B\t0x515E\n0xA25C\t0x515D\n0xA25D\t0x5161\n0xA25E\t0x5163\n0xA25F\t0x55E7\n0xA260\t0x74E9\n0xA261\t0x7CCE\n0xA262\t0x2581\n0xA263\t0x2582\n0xA264\t0x2583\n0xA265\t0x2584\n0xA266\t0x2585\n0xA267\t0x2586\n0xA268\t0x2587\n0xA269\t0x2588\n0xA26A\t0x258F\n0xA26B\t0x258E\n0xA26C\t0x258D\n0xA26D\t0x258C\n0xA26E\t0x258B\n0xA26F\t0x258A\n0xA270\t0x2589\n0xA271\t0x253C\n0xA272\t0x2534\n0xA273\t0x252C\n0xA274\t0x2524\n0xA275\t0x251C\n0xA276\t0x2594\n0xA277\t0x2500\n0xA278\t0x2502\n0xA279\t0x2595\n0xA27A\t0x250C\n0xA27B\t0x2510\n0xA27C\t0x2514\n0xA27D\t0x2518\n0xA27E\t0x256D\n0xA2A1\t0x256E\n0xA2A2\t0x2570\n0xA2A3\t0x256F\n0xA2A4\t0x2550\n0xA2A5\t0x255E\n0xA2A6\t0x256A\n0xA2A7\t0x2561\n0xA2A8\t0x25E2\n0xA2A9\t0x25E3\n0xA2AA\t0x25E5\n0xA2AB\t0x25E4\n0xA2AC\t0x2571\n0xA2AD\t0x2572\n0xA2AE\t0x2573\n0xA2AF\t0xFF10\n0xA2B0\t0xFF11\n0xA2B1\t0xFF12\n0xA2B2\t0xFF13\n0xA2B3\t0xFF14\n0xA2B4\t0xFF15\n0xA2B5\t0xFF16\n0xA2B6\t0xFF17\n0xA2B7\t0xFF18\n0xA2B8\t0xFF19\n0xA2B9\t0x2160\n0xA2BA\t0x2161\n0xA2BB\t0x2162\n0xA2BC\t0x2163\n0xA2BD\t0x2164\n0xA2BE\t0x2165\n0xA2BF\t0x2166\n0xA2C0\t0x2167\n0xA2C1\t0x2168\n0xA2C2\t0x2169\n0xA2C3\t0x3021\n0xA2C4\t0x3022\n0xA2C5\t0x3023\n0xA2C6\t0x3024\n0xA2C7\t0x3025\n0xA2C8\t0x3026\n0xA2C9\t0x3027\n0xA2CA\t0x3028\n0xA2CB\t0x3029\n0xA2CD\t0x5344\n0xA2CF\t0xFF21\n0xA2D0\t0xFF22\n0xA2D1\t0xFF23\n0xA2D2\t0xFF24\n0xA2D3\t0xFF25\n0xA2D4\t0xFF26\n0xA2D5\t0xFF27\n0xA2D6\t0xFF28\n0xA2D7\t0xFF29\n0xA2D8\t0xFF2A\n0xA2D9\t0xFF2B\n0xA2DA\t0xFF2C\n0xA2DB\t0xFF2D\n0xA2DC\t0xFF2E\n0xA2DD\t0xFF2F\n0xA2DE\t0xFF30\n0xA2DF\t0xFF31\n0xA2E0\t0xFF32\n0xA2E1\t0xFF33\n0xA2E2\t0xFF34\n0xA2E3\t0xFF35\n0xA2E4\t0xFF36\n0xA2E5\t0xFF37\n0xA2E6\t0xFF38\n0xA2E7\t0xFF39\n0xA2E8\t0xFF3A\n0xA2E9\t0xFF41\n0xA2EA\t0xFF42\n0xA2EB\t0xFF43\n0xA2EC\t0xFF44\n0xA2ED\t0xFF45\n0xA2EE\t0xFF46\n0xA2EF\t0xFF47\n0xA2F0\t0xFF48\n0xA2F1\t0xFF49\n0xA2F2\t0xFF4A\n0xA2F3\t0xFF4B\n0xA2F4\t0xFF4C\n0xA2F5\t0xFF4D\n0xA2F6\t0xFF4E\n0xA2F7\t0xFF4F\n0xA2F8\t0xFF50\n0xA2F9\t0xFF51\n0xA2FA\t0xFF52\n0xA2FB\t0xFF53\n0xA2FC\t0xFF54\n0xA2FD\t0xFF55\n0xA2FE\t0xFF56\n0xA340\t0xFF57\n0xA341\t0xFF58\n0xA342\t0xFF59\n0xA343\t0xFF5A\n0xA344\t0x0391\n0xA345\t0x0392\n0xA346\t0x0393\n0xA347\t0x0394\n0xA348\t0x0395\n0xA349\t0x0396\n0xA34A\t0x0397\n0xA34B\t0x0398\n0xA34C\t0x0399\n0xA34D\t0x039A\n0xA34E\t0x039B\n0xA34F\t0x039C\n0xA350\t0x039D\n0xA351\t0x039E\n0xA352\t0x039F\n0xA353\t0x03A0\n0xA354\t0x03A1\n0xA355\t0x03A3\n0xA356\t0x03A4\n0xA357\t0x03A5\n0xA358\t0x03A6\n0xA359\t0x03A7\n0xA35A\t0x03A8\n0xA35B\t0x03A9\n0xA35C\t0x03B1\n0xA35D\t0x03B2\n0xA35E\t0x03B3\n0xA35F\t0x03B4\n0xA360\t0x03B5\n0xA361\t0x03B6\n0xA362\t0x03B7\n0xA363\t0x03B8\n0xA364\t0x03B9\n0xA365\t0x03BA\n0xA366\t0x03BB\n0xA367\t0x03BC\n0xA368\t0x03BD\n0xA369\t0x03BE\n0xA36A\t0x03BF\n0xA36B\t0x03C0\n0xA36C\t0x03C1\n0xA36D\t0x03C3\n0xA36E\t0x03C4\n0xA36F\t0x03C5\n0xA370\t0x03C6\n0xA371\t0x03C7\n0xA372\t0x03C8\n0xA373\t0x03C9\n0xA374\t0x3105\n0xA375\t0x3106\n0xA376\t0x3107\n0xA377\t0x3108\n0xA378\t0x3109\n0xA379\t0x310A\n0xA37A\t0x310B\n0xA37B\t0x310C\n0xA37C\t0x310D\n0xA37D\t0x310E\n0xA37E\t0x310F\n0xA3A1\t0x3110\n0xA3A2\t0x3111\n0xA3A3\t0x3112\n0xA3A4\t0x3113\n0xA3A5\t0x3114\n0xA3A6\t0x3115\n0xA3A7\t0x3116\n0xA3A8\t0x3117\n0xA3A9\t0x3118\n0xA3AA\t0x3119\n0xA3AB\t0x311A\n0xA3AC\t0x311B\n0xA3AD\t0x311C\n0xA3AE\t0x311D\n0xA3AF\t0x311E\n0xA3B0\t0x311F\n0xA3B1\t0x3120\n0xA3B2\t0x3121\n0xA3B3\t0x3122\n0xA3B4\t0x3123\n0xA3B5\t0x3124\n0xA3B6\t0x3125\n0xA3B7\t0x3126\n0xA3B8\t0x3127\n0xA3B9\t0x3128\n0xA3BA\t0x3129\n0xA3BB\t0x02D9\n0xA3BC\t0x02C9\n0xA3BD\t0x02CA\n0xA3BE\t0x02C7\n0xA3BF\t0x02CB\n0xA440\t0x4E00\n0xA441\t0x4E59\n0xA442\t0x4E01\n0xA443\t0x4E03\n0xA444\t0x4E43\n0xA445\t0x4E5D\n0xA446\t0x4E86\n0xA447\t0x4E8C\n0xA448\t0x4EBA\n0xA449\t0x513F\n0xA44A\t0x5165\n0xA44B\t0x516B\n0xA44C\t0x51E0\n0xA44D\t0x5200\n0xA44E\t0x5201\n0xA44F\t0x529B\n0xA450\t0x5315\n0xA451\t0x5341\n0xA452\t0x535C\n0xA453\t0x53C8\n0xA454\t0x4E09\n0xA455\t0x4E0B\n0xA456\t0x4E08\n0xA457\t0x4E0A\n0xA458\t0x4E2B\n0xA459\t0x4E38\n0xA45A\t0x51E1\n0xA45B\t0x4E45\n0xA45C\t0x4E48\n0xA45D\t0x4E5F\n0xA45E\t0x4E5E\n0xA45F\t0x4E8E\n0xA460\t0x4EA1\n0xA461\t0x5140\n0xA462\t0x5203\n0xA463\t0x52FA\n0xA464\t0x5343\n0xA465\t0x53C9\n0xA466\t0x53E3\n0xA467\t0x571F\n0xA468\t0x58EB\n0xA469\t0x5915\n0xA46A\t0x5927\n0xA46B\t0x5973\n0xA46C\t0x5B50\n0xA46D\t0x5B51\n0xA46E\t0x5B53\n0xA46F\t0x5BF8\n0xA470\t0x5C0F\n0xA471\t0x5C22\n0xA472\t0x5C38\n0xA473\t0x5C71\n0xA474\t0x5DDD\n0xA475\t0x5DE5\n0xA476\t0x5DF1\n0xA477\t0x5DF2\n0xA478\t0x5DF3\n0xA479\t0x5DFE\n0xA47A\t0x5E72\n0xA47B\t0x5EFE\n0xA47C\t0x5F0B\n0xA47D\t0x5F13\n0xA47E\t0x624D\n0xA4A1\t0x4E11\n0xA4A2\t0x4E10\n0xA4A3\t0x4E0D\n0xA4A4\t0x4E2D\n0xA4A5\t0x4E30\n0xA4A6\t0x4E39\n0xA4A7\t0x4E4B\n0xA4A8\t0x5C39\n0xA4A9\t0x4E88\n0xA4AA\t0x4E91\n0xA4AB\t0x4E95\n0xA4AC\t0x4E92\n0xA4AD\t0x4E94\n0xA4AE\t0x4EA2\n0xA4AF\t0x4EC1\n0xA4B0\t0x4EC0\n0xA4B1\t0x4EC3\n0xA4B2\t0x4EC6\n0xA4B3\t0x4EC7\n0xA4B4\t0x4ECD\n0xA4B5\t0x4ECA\n0xA4B6\t0x4ECB\n0xA4B7\t0x4EC4\n0xA4B8\t0x5143\n0xA4B9\t0x5141\n0xA4BA\t0x5167\n0xA4BB\t0x516D\n0xA4BC\t0x516E\n0xA4BD\t0x516C\n0xA4BE\t0x5197\n0xA4BF\t0x51F6\n0xA4C0\t0x5206\n0xA4C1\t0x5207\n0xA4C2\t0x5208\n0xA4C3\t0x52FB\n0xA4C4\t0x52FE\n0xA4C5\t0x52FF\n0xA4C6\t0x5316\n0xA4C7\t0x5339\n0xA4C8\t0x5348\n0xA4C9\t0x5347\n0xA4CA\t0x5345\n0xA4CB\t0x535E\n0xA4CC\t0x5384\n0xA4CD\t0x53CB\n0xA4CE\t0x53CA\n0xA4CF\t0x53CD\n0xA4D0\t0x58EC\n0xA4D1\t0x5929\n0xA4D2\t0x592B\n0xA4D3\t0x592A\n0xA4D4\t0x592D\n0xA4D5\t0x5B54\n0xA4D6\t0x5C11\n0xA4D7\t0x5C24\n0xA4D8\t0x5C3A\n0xA4D9\t0x5C6F\n0xA4DA\t0x5DF4\n0xA4DB\t0x5E7B\n0xA4DC\t0x5EFF\n0xA4DD\t0x5F14\n0xA4DE\t0x5F15\n0xA4DF\t0x5FC3\n0xA4E0\t0x6208\n0xA4E1\t0x6236\n0xA4E2\t0x624B\n0xA4E3\t0x624E\n0xA4E4\t0x652F\n0xA4E5\t0x6587\n0xA4E6\t0x6597\n0xA4E7\t0x65A4\n0xA4E8\t0x65B9\n0xA4E9\t0x65E5\n0xA4EA\t0x66F0\n0xA4EB\t0x6708\n0xA4EC\t0x6728\n0xA4ED\t0x6B20\n0xA4EE\t0x6B62\n0xA4EF\t0x6B79\n0xA4F0\t0x6BCB\n0xA4F1\t0x6BD4\n0xA4F2\t0x6BDB\n0xA4F3\t0x6C0F\n0xA4F4\t0x6C34\n0xA4F5\t0x706B\n0xA4F6\t0x722A\n0xA4F7\t0x7236\n0xA4F8\t0x723B\n0xA4F9\t0x7247\n0xA4FA\t0x7259\n0xA4FB\t0x725B\n0xA4FC\t0x72AC\n0xA4FD\t0x738B\n0xA4FE\t0x4E19\n0xA540\t0x4E16\n0xA541\t0x4E15\n0xA542\t0x4E14\n0xA543\t0x4E18\n0xA544\t0x4E3B\n0xA545\t0x4E4D\n0xA546\t0x4E4F\n0xA547\t0x4E4E\n0xA548\t0x4EE5\n0xA549\t0x4ED8\n0xA54A\t0x4ED4\n0xA54B\t0x4ED5\n0xA54C\t0x4ED6\n0xA54D\t0x4ED7\n0xA54E\t0x4EE3\n0xA54F\t0x4EE4\n0xA550\t0x4ED9\n0xA551\t0x4EDE\n0xA552\t0x5145\n0xA553\t0x5144\n0xA554\t0x5189\n0xA555\t0x518A\n0xA556\t0x51AC\n0xA557\t0x51F9\n0xA558\t0x51FA\n0xA559\t0x51F8\n0xA55A\t0x520A\n0xA55B\t0x52A0\n0xA55C\t0x529F\n0xA55D\t0x5305\n0xA55E\t0x5306\n0xA55F\t0x5317\n0xA560\t0x531D\n0xA561\t0x4EDF\n0xA562\t0x534A\n0xA563\t0x5349\n0xA564\t0x5361\n0xA565\t0x5360\n0xA566\t0x536F\n0xA567\t0x536E\n0xA568\t0x53BB\n0xA569\t0x53EF\n0xA56A\t0x53E4\n0xA56B\t0x53F3\n0xA56C\t0x53EC\n0xA56D\t0x53EE\n0xA56E\t0x53E9\n0xA56F\t0x53E8\n0xA570\t0x53FC\n0xA571\t0x53F8\n0xA572\t0x53F5\n0xA573\t0x53EB\n0xA574\t0x53E6\n0xA575\t0x53EA\n0xA576\t0x53F2\n0xA577\t0x53F1\n0xA578\t0x53F0\n0xA579\t0x53E5\n0xA57A\t0x53ED\n0xA57B\t0x53FB\n0xA57C\t0x56DB\n0xA57D\t0x56DA\n0xA57E\t0x5916\n0xA5A1\t0x592E\n0xA5A2\t0x5931\n0xA5A3\t0x5974\n0xA5A4\t0x5976\n0xA5A5\t0x5B55\n0xA5A6\t0x5B83\n0xA5A7\t0x5C3C\n0xA5A8\t0x5DE8\n0xA5A9\t0x5DE7\n0xA5AA\t0x5DE6\n0xA5AB\t0x5E02\n0xA5AC\t0x5E03\n0xA5AD\t0x5E73\n0xA5AE\t0x5E7C\n0xA5AF\t0x5F01\n0xA5B0\t0x5F18\n0xA5B1\t0x5F17\n0xA5B2\t0x5FC5\n0xA5B3\t0x620A\n0xA5B4\t0x6253\n0xA5B5\t0x6254\n0xA5B6\t0x6252\n0xA5B7\t0x6251\n0xA5B8\t0x65A5\n0xA5B9\t0x65E6\n0xA5BA\t0x672E\n0xA5BB\t0x672C\n0xA5BC\t0x672A\n0xA5BD\t0x672B\n0xA5BE\t0x672D\n0xA5BF\t0x6B63\n0xA5C0\t0x6BCD\n0xA5C1\t0x6C11\n0xA5C2\t0x6C10\n0xA5C3\t0x6C38\n0xA5C4\t0x6C41\n0xA5C5\t0x6C40\n0xA5C6\t0x6C3E\n0xA5C7\t0x72AF\n0xA5C8\t0x7384\n0xA5C9\t0x7389\n0xA5CA\t0x74DC\n0xA5CB\t0x74E6\n0xA5CC\t0x7518\n0xA5CD\t0x751F\n0xA5CE\t0x7528\n0xA5CF\t0x7529\n0xA5D0\t0x7530\n0xA5D1\t0x7531\n0xA5D2\t0x7532\n0xA5D3\t0x7533\n0xA5D4\t0x758B\n0xA5D5\t0x767D\n0xA5D6\t0x76AE\n0xA5D7\t0x76BF\n0xA5D8\t0x76EE\n0xA5D9\t0x77DB\n0xA5DA\t0x77E2\n0xA5DB\t0x77F3\n0xA5DC\t0x793A\n0xA5DD\t0x79BE\n0xA5DE\t0x7A74\n0xA5DF\t0x7ACB\n0xA5E0\t0x4E1E\n0xA5E1\t0x4E1F\n0xA5E2\t0x4E52\n0xA5E3\t0x4E53\n0xA5E4\t0x4E69\n0xA5E5\t0x4E99\n0xA5E6\t0x4EA4\n0xA5E7\t0x4EA6\n0xA5E8\t0x4EA5\n0xA5E9\t0x4EFF\n0xA5EA\t0x4F09\n0xA5EB\t0x4F19\n0xA5EC\t0x4F0A\n0xA5ED\t0x4F15\n0xA5EE\t0x4F0D\n0xA5EF\t0x4F10\n0xA5F0\t0x4F11\n0xA5F1\t0x4F0F\n0xA5F2\t0x4EF2\n0xA5F3\t0x4EF6\n0xA5F4\t0x4EFB\n0xA5F5\t0x4EF0\n0xA5F6\t0x4EF3\n0xA5F7\t0x4EFD\n0xA5F8\t0x4F01\n0xA5F9\t0x4F0B\n0xA5FA\t0x5149\n0xA5FB\t0x5147\n0xA5FC\t0x5146\n0xA5FD\t0x5148\n0xA5FE\t0x5168\n0xA640\t0x5171\n0xA641\t0x518D\n0xA642\t0x51B0\n0xA643\t0x5217\n0xA644\t0x5211\n0xA645\t0x5212\n0xA646\t0x520E\n0xA647\t0x5216\n0xA648\t0x52A3\n0xA649\t0x5308\n0xA64A\t0x5321\n0xA64B\t0x5320\n0xA64C\t0x5370\n0xA64D\t0x5371\n0xA64E\t0x5409\n0xA64F\t0x540F\n0xA650\t0x540C\n0xA651\t0x540A\n0xA652\t0x5410\n0xA653\t0x5401\n0xA654\t0x540B\n0xA655\t0x5404\n0xA656\t0x5411\n0xA657\t0x540D\n0xA658\t0x5408\n0xA659\t0x5403\n0xA65A\t0x540E\n0xA65B\t0x5406\n0xA65C\t0x5412\n0xA65D\t0x56E0\n0xA65E\t0x56DE\n0xA65F\t0x56DD\n0xA660\t0x5733\n0xA661\t0x5730\n0xA662\t0x5728\n0xA663\t0x572D\n0xA664\t0x572C\n0xA665\t0x572F\n0xA666\t0x5729\n0xA667\t0x5919\n0xA668\t0x591A\n0xA669\t0x5937\n0xA66A\t0x5938\n0xA66B\t0x5984\n0xA66C\t0x5978\n0xA66D\t0x5983\n0xA66E\t0x597D\n0xA66F\t0x5979\n0xA670\t0x5982\n0xA671\t0x5981\n0xA672\t0x5B57\n0xA673\t0x5B58\n0xA674\t0x5B87\n0xA675\t0x5B88\n0xA676\t0x5B85\n0xA677\t0x5B89\n0xA678\t0x5BFA\n0xA679\t0x5C16\n0xA67A\t0x5C79\n0xA67B\t0x5DDE\n0xA67C\t0x5E06\n0xA67D\t0x5E76\n0xA67E\t0x5E74\n0xA6A1\t0x5F0F\n0xA6A2\t0x5F1B\n0xA6A3\t0x5FD9\n0xA6A4\t0x5FD6\n0xA6A5\t0x620E\n0xA6A6\t0x620C\n0xA6A7\t0x620D\n0xA6A8\t0x6210\n0xA6A9\t0x6263\n0xA6AA\t0x625B\n0xA6AB\t0x6258\n0xA6AC\t0x6536\n0xA6AD\t0x65E9\n0xA6AE\t0x65E8\n0xA6AF\t0x65EC\n0xA6B0\t0x65ED\n0xA6B1\t0x66F2\n0xA6B2\t0x66F3\n0xA6B3\t0x6709\n0xA6B4\t0x673D\n0xA6B5\t0x6734\n0xA6B6\t0x6731\n0xA6B7\t0x6735\n0xA6B8\t0x6B21\n0xA6B9\t0x6B64\n0xA6BA\t0x6B7B\n0xA6BB\t0x6C16\n0xA6BC\t0x6C5D\n0xA6BD\t0x6C57\n0xA6BE\t0x6C59\n0xA6BF\t0x6C5F\n0xA6C0\t0x6C60\n0xA6C1\t0x6C50\n0xA6C2\t0x6C55\n0xA6C3\t0x6C61\n0xA6C4\t0x6C5B\n0xA6C5\t0x6C4D\n0xA6C6\t0x6C4E\n0xA6C7\t0x7070\n0xA6C8\t0x725F\n0xA6C9\t0x725D\n0xA6CA\t0x767E\n0xA6CB\t0x7AF9\n0xA6CC\t0x7C73\n0xA6CD\t0x7CF8\n0xA6CE\t0x7F36\n0xA6CF\t0x7F8A\n0xA6D0\t0x7FBD\n0xA6D1\t0x8001\n0xA6D2\t0x8003\n0xA6D3\t0x800C\n0xA6D4\t0x8012\n0xA6D5\t0x8033\n0xA6D6\t0x807F\n0xA6D7\t0x8089\n0xA6D8\t0x808B\n0xA6D9\t0x808C\n0xA6DA\t0x81E3\n0xA6DB\t0x81EA\n0xA6DC\t0x81F3\n0xA6DD\t0x81FC\n0xA6DE\t0x820C\n0xA6DF\t0x821B\n0xA6E0\t0x821F\n0xA6E1\t0x826E\n0xA6E2\t0x8272\n0xA6E3\t0x827E\n0xA6E4\t0x866B\n0xA6E5\t0x8840\n0xA6E6\t0x884C\n0xA6E7\t0x8863\n0xA6E8\t0x897F\n0xA6E9\t0x9621\n0xA6EA\t0x4E32\n0xA6EB\t0x4EA8\n0xA6EC\t0x4F4D\n0xA6ED\t0x4F4F\n0xA6EE\t0x4F47\n0xA6EF\t0x4F57\n0xA6F0\t0x4F5E\n0xA6F1\t0x4F34\n0xA6F2\t0x4F5B\n0xA6F3\t0x4F55\n0xA6F4\t0x4F30\n0xA6F5\t0x4F50\n0xA6F6\t0x4F51\n0xA6F7\t0x4F3D\n0xA6F8\t0x4F3A\n0xA6F9\t0x4F38\n0xA6FA\t0x4F43\n0xA6FB\t0x4F54\n0xA6FC\t0x4F3C\n0xA6FD\t0x4F46\n0xA6FE\t0x4F63\n0xA740\t0x4F5C\n0xA741\t0x4F60\n0xA742\t0x4F2F\n0xA743\t0x4F4E\n0xA744\t0x4F36\n0xA745\t0x4F59\n0xA746\t0x4F5D\n0xA747\t0x4F48\n0xA748\t0x4F5A\n0xA749\t0x514C\n0xA74A\t0x514B\n0xA74B\t0x514D\n0xA74C\t0x5175\n0xA74D\t0x51B6\n0xA74E\t0x51B7\n0xA74F\t0x5225\n0xA750\t0x5224\n0xA751\t0x5229\n0xA752\t0x522A\n0xA753\t0x5228\n0xA754\t0x52AB\n0xA755\t0x52A9\n0xA756\t0x52AA\n0xA757\t0x52AC\n0xA758\t0x5323\n0xA759\t0x5373\n0xA75A\t0x5375\n0xA75B\t0x541D\n0xA75C\t0x542D\n0xA75D\t0x541E\n0xA75E\t0x543E\n0xA75F\t0x5426\n0xA760\t0x544E\n0xA761\t0x5427\n0xA762\t0x5446\n0xA763\t0x5443\n0xA764\t0x5433\n0xA765\t0x5448\n0xA766\t0x5442\n0xA767\t0x541B\n0xA768\t0x5429\n0xA769\t0x544A\n0xA76A\t0x5439\n0xA76B\t0x543B\n0xA76C\t0x5438\n0xA76D\t0x542E\n0xA76E\t0x5435\n0xA76F\t0x5436\n0xA770\t0x5420\n0xA771\t0x543C\n0xA772\t0x5440\n0xA773\t0x5431\n0xA774\t0x542B\n0xA775\t0x541F\n0xA776\t0x542C\n0xA777\t0x56EA\n0xA778\t0x56F0\n0xA779\t0x56E4\n0xA77A\t0x56EB\n0xA77B\t0x574A\n0xA77C\t0x5751\n0xA77D\t0x5740\n0xA77E\t0x574D\n0xA7A1\t0x5747\n0xA7A2\t0x574E\n0xA7A3\t0x573E\n0xA7A4\t0x5750\n0xA7A5\t0x574F\n0xA7A6\t0x573B\n0xA7A7\t0x58EF\n0xA7A8\t0x593E\n0xA7A9\t0x599D\n0xA7AA\t0x5992\n0xA7AB\t0x59A8\n0xA7AC\t0x599E\n0xA7AD\t0x59A3\n0xA7AE\t0x5999\n0xA7AF\t0x5996\n0xA7B0\t0x598D\n0xA7B1\t0x59A4\n0xA7B2\t0x5993\n0xA7B3\t0x598A\n0xA7B4\t0x59A5\n0xA7B5\t0x5B5D\n0xA7B6\t0x5B5C\n0xA7B7\t0x5B5A\n0xA7B8\t0x5B5B\n0xA7B9\t0x5B8C\n0xA7BA\t0x5B8B\n0xA7BB\t0x5B8F\n0xA7BC\t0x5C2C\n0xA7BD\t0x5C40\n0xA7BE\t0x5C41\n0xA7BF\t0x5C3F\n0xA7C0\t0x5C3E\n0xA7C1\t0x5C90\n0xA7C2\t0x5C91\n0xA7C3\t0x5C94\n0xA7C4\t0x5C8C\n0xA7C5\t0x5DEB\n0xA7C6\t0x5E0C\n0xA7C7\t0x5E8F\n0xA7C8\t0x5E87\n0xA7C9\t0x5E8A\n0xA7CA\t0x5EF7\n0xA7CB\t0x5F04\n0xA7CC\t0x5F1F\n0xA7CD\t0x5F64\n0xA7CE\t0x5F62\n0xA7CF\t0x5F77\n0xA7D0\t0x5F79\n0xA7D1\t0x5FD8\n0xA7D2\t0x5FCC\n0xA7D3\t0x5FD7\n0xA7D4\t0x5FCD\n0xA7D5\t0x5FF1\n0xA7D6\t0x5FEB\n0xA7D7\t0x5FF8\n0xA7D8\t0x5FEA\n0xA7D9\t0x6212\n0xA7DA\t0x6211\n0xA7DB\t0x6284\n0xA7DC\t0x6297\n0xA7DD\t0x6296\n0xA7DE\t0x6280\n0xA7DF\t0x6276\n0xA7E0\t0x6289\n0xA7E1\t0x626D\n0xA7E2\t0x628A\n0xA7E3\t0x627C\n0xA7E4\t0x627E\n0xA7E5\t0x6279\n0xA7E6\t0x6273\n0xA7E7\t0x6292\n0xA7E8\t0x626F\n0xA7E9\t0x6298\n0xA7EA\t0x626E\n0xA7EB\t0x6295\n0xA7EC\t0x6293\n0xA7ED\t0x6291\n0xA7EE\t0x6286\n0xA7EF\t0x6539\n0xA7F0\t0x653B\n0xA7F1\t0x6538\n0xA7F2\t0x65F1\n0xA7F3\t0x66F4\n0xA7F4\t0x675F\n0xA7F5\t0x674E\n0xA7F6\t0x674F\n0xA7F7\t0x6750\n0xA7F8\t0x6751\n0xA7F9\t0x675C\n0xA7FA\t0x6756\n0xA7FB\t0x675E\n0xA7FC\t0x6749\n0xA7FD\t0x6746\n0xA7FE\t0x6760\n0xA840\t0x6753\n0xA841\t0x6757\n0xA842\t0x6B65\n0xA843\t0x6BCF\n0xA844\t0x6C42\n0xA845\t0x6C5E\n0xA846\t0x6C99\n0xA847\t0x6C81\n0xA848\t0x6C88\n0xA849\t0x6C89\n0xA84A\t0x6C85\n0xA84B\t0x6C9B\n0xA84C\t0x6C6A\n0xA84D\t0x6C7A\n0xA84E\t0x6C90\n0xA84F\t0x6C70\n0xA850\t0x6C8C\n0xA851\t0x6C68\n0xA852\t0x6C96\n0xA853\t0x6C92\n0xA854\t0x6C7D\n0xA855\t0x6C83\n0xA856\t0x6C72\n0xA857\t0x6C7E\n0xA858\t0x6C74\n0xA859\t0x6C86\n0xA85A\t0x6C76\n0xA85B\t0x6C8D\n0xA85C\t0x6C94\n0xA85D\t0x6C98\n0xA85E\t0x6C82\n0xA85F\t0x7076\n0xA860\t0x707C\n0xA861\t0x707D\n0xA862\t0x7078\n0xA863\t0x7262\n0xA864\t0x7261\n0xA865\t0x7260\n0xA866\t0x72C4\n0xA867\t0x72C2\n0xA868\t0x7396\n0xA869\t0x752C\n0xA86A\t0x752B\n0xA86B\t0x7537\n0xA86C\t0x7538\n0xA86D\t0x7682\n0xA86E\t0x76EF\n0xA86F\t0x77E3\n0xA870\t0x79C1\n0xA871\t0x79C0\n0xA872\t0x79BF\n0xA873\t0x7A76\n0xA874\t0x7CFB\n0xA875\t0x7F55\n0xA876\t0x8096\n0xA877\t0x8093\n0xA878\t0x809D\n0xA879\t0x8098\n0xA87A\t0x809B\n0xA87B\t0x809A\n0xA87C\t0x80B2\n0xA87D\t0x826F\n0xA87E\t0x8292\n0xA8A1\t0x828B\n0xA8A2\t0x828D\n0xA8A3\t0x898B\n0xA8A4\t0x89D2\n0xA8A5\t0x8A00\n0xA8A6\t0x8C37\n0xA8A7\t0x8C46\n0xA8A8\t0x8C55\n0xA8A9\t0x8C9D\n0xA8AA\t0x8D64\n0xA8AB\t0x8D70\n0xA8AC\t0x8DB3\n0xA8AD\t0x8EAB\n0xA8AE\t0x8ECA\n0xA8AF\t0x8F9B\n0xA8B0\t0x8FB0\n0xA8B1\t0x8FC2\n0xA8B2\t0x8FC6\n0xA8B3\t0x8FC5\n0xA8B4\t0x8FC4\n0xA8B5\t0x5DE1\n0xA8B6\t0x9091\n0xA8B7\t0x90A2\n0xA8B8\t0x90AA\n0xA8B9\t0x90A6\n0xA8BA\t0x90A3\n0xA8BB\t0x9149\n0xA8BC\t0x91C6\n0xA8BD\t0x91CC\n0xA8BE\t0x9632\n0xA8BF\t0x962E\n0xA8C0\t0x9631\n0xA8C1\t0x962A\n0xA8C2\t0x962C\n0xA8C3\t0x4E26\n0xA8C4\t0x4E56\n0xA8C5\t0x4E73\n0xA8C6\t0x4E8B\n0xA8C7\t0x4E9B\n0xA8C8\t0x4E9E\n0xA8C9\t0x4EAB\n0xA8CA\t0x4EAC\n0xA8CB\t0x4F6F\n0xA8CC\t0x4F9D\n0xA8CD\t0x4F8D\n0xA8CE\t0x4F73\n0xA8CF\t0x4F7F\n0xA8D0\t0x4F6C\n0xA8D1\t0x4F9B\n0xA8D2\t0x4F8B\n0xA8D3\t0x4F86\n0xA8D4\t0x4F83\n0xA8D5\t0x4F70\n0xA8D6\t0x4F75\n0xA8D7\t0x4F88\n0xA8D8\t0x4F69\n0xA8D9\t0x4F7B\n0xA8DA\t0x4F96\n0xA8DB\t0x4F7E\n0xA8DC\t0x4F8F\n0xA8DD\t0x4F91\n0xA8DE\t0x4F7A\n0xA8DF\t0x5154\n0xA8E0\t0x5152\n0xA8E1\t0x5155\n0xA8E2\t0x5169\n0xA8E3\t0x5177\n0xA8E4\t0x5176\n0xA8E5\t0x5178\n0xA8E6\t0x51BD\n0xA8E7\t0x51FD\n0xA8E8\t0x523B\n0xA8E9\t0x5238\n0xA8EA\t0x5237\n0xA8EB\t0x523A\n0xA8EC\t0x5230\n0xA8ED\t0x522E\n0xA8EE\t0x5236\n0xA8EF\t0x5241\n0xA8F0\t0x52BE\n0xA8F1\t0x52BB\n0xA8F2\t0x5352\n0xA8F3\t0x5354\n0xA8F4\t0x5353\n0xA8F5\t0x5351\n0xA8F6\t0x5366\n0xA8F7\t0x5377\n0xA8F8\t0x5378\n0xA8F9\t0x5379\n0xA8FA\t0x53D6\n0xA8FB\t0x53D4\n0xA8FC\t0x53D7\n0xA8FD\t0x5473\n0xA8FE\t0x5475\n0xA940\t0x5496\n0xA941\t0x5478\n0xA942\t0x5495\n0xA943\t0x5480\n0xA944\t0x547B\n0xA945\t0x5477\n0xA946\t0x5484\n0xA947\t0x5492\n0xA948\t0x5486\n0xA949\t0x547C\n0xA94A\t0x5490\n0xA94B\t0x5471\n0xA94C\t0x5476\n0xA94D\t0x548C\n0xA94E\t0x549A\n0xA94F\t0x5462\n0xA950\t0x5468\n0xA951\t0x548B\n0xA952\t0x547D\n0xA953\t0x548E\n0xA954\t0x56FA\n0xA955\t0x5783\n0xA956\t0x5777\n0xA957\t0x576A\n0xA958\t0x5769\n0xA959\t0x5761\n0xA95A\t0x5766\n0xA95B\t0x5764\n0xA95C\t0x577C\n0xA95D\t0x591C\n0xA95E\t0x5949\n0xA95F\t0x5947\n0xA960\t0x5948\n0xA961\t0x5944\n0xA962\t0x5954\n0xA963\t0x59BE\n0xA964\t0x59BB\n0xA965\t0x59D4\n0xA966\t0x59B9\n0xA967\t0x59AE\n0xA968\t0x59D1\n0xA969\t0x59C6\n0xA96A\t0x59D0\n0xA96B\t0x59CD\n0xA96C\t0x59CB\n0xA96D\t0x59D3\n0xA96E\t0x59CA\n0xA96F\t0x59AF\n0xA970\t0x59B3\n0xA971\t0x59D2\n0xA972\t0x59C5\n0xA973\t0x5B5F\n0xA974\t0x5B64\n0xA975\t0x5B63\n0xA976\t0x5B97\n0xA977\t0x5B9A\n0xA978\t0x5B98\n0xA979\t0x5B9C\n0xA97A\t0x5B99\n0xA97B\t0x5B9B\n0xA97C\t0x5C1A\n0xA97D\t0x5C48\n0xA97E\t0x5C45\n0xA9A1\t0x5C46\n0xA9A2\t0x5CB7\n0xA9A3\t0x5CA1\n0xA9A4\t0x5CB8\n0xA9A5\t0x5CA9\n0xA9A6\t0x5CAB\n0xA9A7\t0x5CB1\n0xA9A8\t0x5CB3\n0xA9A9\t0x5E18\n0xA9AA\t0x5E1A\n0xA9AB\t0x5E16\n0xA9AC\t0x5E15\n0xA9AD\t0x5E1B\n0xA9AE\t0x5E11\n0xA9AF\t0x5E78\n0xA9B0\t0x5E9A\n0xA9B1\t0x5E97\n0xA9B2\t0x5E9C\n0xA9B3\t0x5E95\n0xA9B4\t0x5E96\n0xA9B5\t0x5EF6\n0xA9B6\t0x5F26\n0xA9B7\t0x5F27\n0xA9B8\t0x5F29\n0xA9B9\t0x5F80\n0xA9BA\t0x5F81\n0xA9BB\t0x5F7F\n0xA9BC\t0x5F7C\n0xA9BD\t0x5FDD\n0xA9BE\t0x5FE0\n0xA9BF\t0x5FFD\n0xA9C0\t0x5FF5\n0xA9C1\t0x5FFF\n0xA9C2\t0x600F\n0xA9C3\t0x6014\n0xA9C4\t0x602F\n0xA9C5\t0x6035\n0xA9C6\t0x6016\n0xA9C7\t0x602A\n0xA9C8\t0x6015\n0xA9C9\t0x6021\n0xA9CA\t0x6027\n0xA9CB\t0x6029\n0xA9CC\t0x602B\n0xA9CD\t0x601B\n0xA9CE\t0x6216\n0xA9CF\t0x6215\n0xA9D0\t0x623F\n0xA9D1\t0x623E\n0xA9D2\t0x6240\n0xA9D3\t0x627F\n0xA9D4\t0x62C9\n0xA9D5\t0x62CC\n0xA9D6\t0x62C4\n0xA9D7\t0x62BF\n0xA9D8\t0x62C2\n0xA9D9\t0x62B9\n0xA9DA\t0x62D2\n0xA9DB\t0x62DB\n0xA9DC\t0x62AB\n0xA9DD\t0x62D3\n0xA9DE\t0x62D4\n0xA9DF\t0x62CB\n0xA9E0\t0x62C8\n0xA9E1\t0x62A8\n0xA9E2\t0x62BD\n0xA9E3\t0x62BC\n0xA9E4\t0x62D0\n0xA9E5\t0x62D9\n0xA9E6\t0x62C7\n0xA9E7\t0x62CD\n0xA9E8\t0x62B5\n0xA9E9\t0x62DA\n0xA9EA\t0x62B1\n0xA9EB\t0x62D8\n0xA9EC\t0x62D6\n0xA9ED\t0x62D7\n0xA9EE\t0x62C6\n0xA9EF\t0x62AC\n0xA9F0\t0x62CE\n0xA9F1\t0x653E\n0xA9F2\t0x65A7\n0xA9F3\t0x65BC\n0xA9F4\t0x65FA\n0xA9F5\t0x6614\n0xA9F6\t0x6613\n0xA9F7\t0x660C\n0xA9F8\t0x6606\n0xA9F9\t0x6602\n0xA9FA\t0x660E\n0xA9FB\t0x6600\n0xA9FC\t0x660F\n0xA9FD\t0x6615\n0xA9FE\t0x660A\n0xAA40\t0x6607\n0xAA41\t0x670D\n0xAA42\t0x670B\n0xAA43\t0x676D\n0xAA44\t0x678B\n0xAA45\t0x6795\n0xAA46\t0x6771\n0xAA47\t0x679C\n0xAA48\t0x6773\n0xAA49\t0x6777\n0xAA4A\t0x6787\n0xAA4B\t0x679D\n0xAA4C\t0x6797\n0xAA4D\t0x676F\n0xAA4E\t0x6770\n0xAA4F\t0x677F\n0xAA50\t0x6789\n0xAA51\t0x677E\n0xAA52\t0x6790\n0xAA53\t0x6775\n0xAA54\t0x679A\n0xAA55\t0x6793\n0xAA56\t0x677C\n0xAA57\t0x676A\n0xAA58\t0x6772\n0xAA59\t0x6B23\n0xAA5A\t0x6B66\n0xAA5B\t0x6B67\n0xAA5C\t0x6B7F\n0xAA5D\t0x6C13\n0xAA5E\t0x6C1B\n0xAA5F\t0x6CE3\n0xAA60\t0x6CE8\n0xAA61\t0x6CF3\n0xAA62\t0x6CB1\n0xAA63\t0x6CCC\n0xAA64\t0x6CE5\n0xAA65\t0x6CB3\n0xAA66\t0x6CBD\n0xAA67\t0x6CBE\n0xAA68\t0x6CBC\n0xAA69\t0x6CE2\n0xAA6A\t0x6CAB\n0xAA6B\t0x6CD5\n0xAA6C\t0x6CD3\n0xAA6D\t0x6CB8\n0xAA6E\t0x6CC4\n0xAA6F\t0x6CB9\n0xAA70\t0x6CC1\n0xAA71\t0x6CAE\n0xAA72\t0x6CD7\n0xAA73\t0x6CC5\n0xAA74\t0x6CF1\n0xAA75\t0x6CBF\n0xAA76\t0x6CBB\n0xAA77\t0x6CE1\n0xAA78\t0x6CDB\n0xAA79\t0x6CCA\n0xAA7A\t0x6CAC\n0xAA7B\t0x6CEF\n0xAA7C\t0x6CDC\n0xAA7D\t0x6CD6\n0xAA7E\t0x6CE0\n0xAAA1\t0x7095\n0xAAA2\t0x708E\n0xAAA3\t0x7092\n0xAAA4\t0x708A\n0xAAA5\t0x7099\n0xAAA6\t0x722C\n0xAAA7\t0x722D\n0xAAA8\t0x7238\n0xAAA9\t0x7248\n0xAAAA\t0x7267\n0xAAAB\t0x7269\n0xAAAC\t0x72C0\n0xAAAD\t0x72CE\n0xAAAE\t0x72D9\n0xAAAF\t0x72D7\n0xAAB0\t0x72D0\n0xAAB1\t0x73A9\n0xAAB2\t0x73A8\n0xAAB3\t0x739F\n0xAAB4\t0x73AB\n0xAAB5\t0x73A5\n0xAAB6\t0x753D\n0xAAB7\t0x759D\n0xAAB8\t0x7599\n0xAAB9\t0x759A\n0xAABA\t0x7684\n0xAABB\t0x76C2\n0xAABC\t0x76F2\n0xAABD\t0x76F4\n0xAABE\t0x77E5\n0xAABF\t0x77FD\n0xAAC0\t0x793E\n0xAAC1\t0x7940\n0xAAC2\t0x7941\n0xAAC3\t0x79C9\n0xAAC4\t0x79C8\n0xAAC5\t0x7A7A\n0xAAC6\t0x7A79\n0xAAC7\t0x7AFA\n0xAAC8\t0x7CFE\n0xAAC9\t0x7F54\n0xAACA\t0x7F8C\n0xAACB\t0x7F8B\n0xAACC\t0x8005\n0xAACD\t0x80BA\n0xAACE\t0x80A5\n0xAACF\t0x80A2\n0xAAD0\t0x80B1\n0xAAD1\t0x80A1\n0xAAD2\t0x80AB\n0xAAD3\t0x80A9\n0xAAD4\t0x80B4\n0xAAD5\t0x80AA\n0xAAD6\t0x80AF\n0xAAD7\t0x81E5\n0xAAD8\t0x81FE\n0xAAD9\t0x820D\n0xAADA\t0x82B3\n0xAADB\t0x829D\n0xAADC\t0x8299\n0xAADD\t0x82AD\n0xAADE\t0x82BD\n0xAADF\t0x829F\n0xAAE0\t0x82B9\n0xAAE1\t0x82B1\n0xAAE2\t0x82AC\n0xAAE3\t0x82A5\n0xAAE4\t0x82AF\n0xAAE5\t0x82B8\n0xAAE6\t0x82A3\n0xAAE7\t0x82B0\n0xAAE8\t0x82BE\n0xAAE9\t0x82B7\n0xAAEA\t0x864E\n0xAAEB\t0x8671\n0xAAEC\t0x521D\n0xAAED\t0x8868\n0xAAEE\t0x8ECB\n0xAAEF\t0x8FCE\n0xAAF0\t0x8FD4\n0xAAF1\t0x8FD1\n0xAAF2\t0x90B5\n0xAAF3\t0x90B8\n0xAAF4\t0x90B1\n0xAAF5\t0x90B6\n0xAAF6\t0x91C7\n0xAAF7\t0x91D1\n0xAAF8\t0x9577\n0xAAF9\t0x9580\n0xAAFA\t0x961C\n0xAAFB\t0x9640\n0xAAFC\t0x963F\n0xAAFD\t0x963B\n0xAAFE\t0x9644\n0xAB40\t0x9642\n0xAB41\t0x96B9\n0xAB42\t0x96E8\n0xAB43\t0x9752\n0xAB44\t0x975E\n0xAB45\t0x4E9F\n0xAB46\t0x4EAD\n0xAB47\t0x4EAE\n0xAB48\t0x4FE1\n0xAB49\t0x4FB5\n0xAB4A\t0x4FAF\n0xAB4B\t0x4FBF\n0xAB4C\t0x4FE0\n0xAB4D\t0x4FD1\n0xAB4E\t0x4FCF\n0xAB4F\t0x4FDD\n0xAB50\t0x4FC3\n0xAB51\t0x4FB6\n0xAB52\t0x4FD8\n0xAB53\t0x4FDF\n0xAB54\t0x4FCA\n0xAB55\t0x4FD7\n0xAB56\t0x4FAE\n0xAB57\t0x4FD0\n0xAB58\t0x4FC4\n0xAB59\t0x4FC2\n0xAB5A\t0x4FDA\n0xAB5B\t0x4FCE\n0xAB5C\t0x4FDE\n0xAB5D\t0x4FB7\n0xAB5E\t0x5157\n0xAB5F\t0x5192\n0xAB60\t0x5191\n0xAB61\t0x51A0\n0xAB62\t0x524E\n0xAB63\t0x5243\n0xAB64\t0x524A\n0xAB65\t0x524D\n0xAB66\t0x524C\n0xAB67\t0x524B\n0xAB68\t0x5247\n0xAB69\t0x52C7\n0xAB6A\t0x52C9\n0xAB6B\t0x52C3\n0xAB6C\t0x52C1\n0xAB6D\t0x530D\n0xAB6E\t0x5357\n0xAB6F\t0x537B\n0xAB70\t0x539A\n0xAB71\t0x53DB\n0xAB72\t0x54AC\n0xAB73\t0x54C0\n0xAB74\t0x54A8\n0xAB75\t0x54CE\n0xAB76\t0x54C9\n0xAB77\t0x54B8\n0xAB78\t0x54A6\n0xAB79\t0x54B3\n0xAB7A\t0x54C7\n0xAB7B\t0x54C2\n0xAB7C\t0x54BD\n0xAB7D\t0x54AA\n0xAB7E\t0x54C1\n0xABA1\t0x54C4\n0xABA2\t0x54C8\n0xABA3\t0x54AF\n0xABA4\t0x54AB\n0xABA5\t0x54B1\n0xABA6\t0x54BB\n0xABA7\t0x54A9\n0xABA8\t0x54A7\n0xABA9\t0x54BF\n0xABAA\t0x56FF\n0xABAB\t0x5782\n0xABAC\t0x578B\n0xABAD\t0x57A0\n0xABAE\t0x57A3\n0xABAF\t0x57A2\n0xABB0\t0x57CE\n0xABB1\t0x57AE\n0xABB2\t0x5793\n0xABB3\t0x5955\n0xABB4\t0x5951\n0xABB5\t0x594F\n0xABB6\t0x594E\n0xABB7\t0x5950\n0xABB8\t0x59DC\n0xABB9\t0x59D8\n0xABBA\t0x59FF\n0xABBB\t0x59E3\n0xABBC\t0x59E8\n0xABBD\t0x5A03\n0xABBE\t0x59E5\n0xABBF\t0x59EA\n0xABC0\t0x59DA\n0xABC1\t0x59E6\n0xABC2\t0x5A01\n0xABC3\t0x59FB\n0xABC4\t0x5B69\n0xABC5\t0x5BA3\n0xABC6\t0x5BA6\n0xABC7\t0x5BA4\n0xABC8\t0x5BA2\n0xABC9\t0x5BA5\n0xABCA\t0x5C01\n0xABCB\t0x5C4E\n0xABCC\t0x5C4F\n0xABCD\t0x5C4D\n0xABCE\t0x5C4B\n0xABCF\t0x5CD9\n0xABD0\t0x5CD2\n0xABD1\t0x5DF7\n0xABD2\t0x5E1D\n0xABD3\t0x5E25\n0xABD4\t0x5E1F\n0xABD5\t0x5E7D\n0xABD6\t0x5EA0\n0xABD7\t0x5EA6\n0xABD8\t0x5EFA\n0xABD9\t0x5F08\n0xABDA\t0x5F2D\n0xABDB\t0x5F65\n0xABDC\t0x5F88\n0xABDD\t0x5F85\n0xABDE\t0x5F8A\n0xABDF\t0x5F8B\n0xABE0\t0x5F87\n0xABE1\t0x5F8C\n0xABE2\t0x5F89\n0xABE3\t0x6012\n0xABE4\t0x601D\n0xABE5\t0x6020\n0xABE6\t0x6025\n0xABE7\t0x600E\n0xABE8\t0x6028\n0xABE9\t0x604D\n0xABEA\t0x6070\n0xABEB\t0x6068\n0xABEC\t0x6062\n0xABED\t0x6046\n0xABEE\t0x6043\n0xABEF\t0x606C\n0xABF0\t0x606B\n0xABF1\t0x606A\n0xABF2\t0x6064\n0xABF3\t0x6241\n0xABF4\t0x62DC\n0xABF5\t0x6316\n0xABF6\t0x6309\n0xABF7\t0x62FC\n0xABF8\t0x62ED\n0xABF9\t0x6301\n0xABFA\t0x62EE\n0xABFB\t0x62FD\n0xABFC\t0x6307\n0xABFD\t0x62F1\n0xABFE\t0x62F7\n0xAC40\t0x62EF\n0xAC41\t0x62EC\n0xAC42\t0x62FE\n0xAC43\t0x62F4\n0xAC44\t0x6311\n0xAC45\t0x6302\n0xAC46\t0x653F\n0xAC47\t0x6545\n0xAC48\t0x65AB\n0xAC49\t0x65BD\n0xAC4A\t0x65E2\n0xAC4B\t0x6625\n0xAC4C\t0x662D\n0xAC4D\t0x6620\n0xAC4E\t0x6627\n0xAC4F\t0x662F\n0xAC50\t0x661F\n0xAC51\t0x6628\n0xAC52\t0x6631\n0xAC53\t0x6624\n0xAC54\t0x66F7\n0xAC55\t0x67FF\n0xAC56\t0x67D3\n0xAC57\t0x67F1\n0xAC58\t0x67D4\n0xAC59\t0x67D0\n0xAC5A\t0x67EC\n0xAC5B\t0x67B6\n0xAC5C\t0x67AF\n0xAC5D\t0x67F5\n0xAC5E\t0x67E9\n0xAC5F\t0x67EF\n0xAC60\t0x67C4\n0xAC61\t0x67D1\n0xAC62\t0x67B4\n0xAC63\t0x67DA\n0xAC64\t0x67E5\n0xAC65\t0x67B8\n0xAC66\t0x67CF\n0xAC67\t0x67DE\n0xAC68\t0x67F3\n0xAC69\t0x67B0\n0xAC6A\t0x67D9\n0xAC6B\t0x67E2\n0xAC6C\t0x67DD\n0xAC6D\t0x67D2\n0xAC6E\t0x6B6A\n0xAC6F\t0x6B83\n0xAC70\t0x6B86\n0xAC71\t0x6BB5\n0xAC72\t0x6BD2\n0xAC73\t0x6BD7\n0xAC74\t0x6C1F\n0xAC75\t0x6CC9\n0xAC76\t0x6D0B\n0xAC77\t0x6D32\n0xAC78\t0x6D2A\n0xAC79\t0x6D41\n0xAC7A\t0x6D25\n0xAC7B\t0x6D0C\n0xAC7C\t0x6D31\n0xAC7D\t0x6D1E\n0xAC7E\t0x6D17\n0xACA1\t0x6D3B\n0xACA2\t0x6D3D\n0xACA3\t0x6D3E\n0xACA4\t0x6D36\n0xACA5\t0x6D1B\n0xACA6\t0x6CF5\n0xACA7\t0x6D39\n0xACA8\t0x6D27\n0xACA9\t0x6D38\n0xACAA\t0x6D29\n0xACAB\t0x6D2E\n0xACAC\t0x6D35\n0xACAD\t0x6D0E\n0xACAE\t0x6D2B\n0xACAF\t0x70AB\n0xACB0\t0x70BA\n0xACB1\t0x70B3\n0xACB2\t0x70AC\n0xACB3\t0x70AF\n0xACB4\t0x70AD\n0xACB5\t0x70B8\n0xACB6\t0x70AE\n0xACB7\t0x70A4\n0xACB8\t0x7230\n0xACB9\t0x7272\n0xACBA\t0x726F\n0xACBB\t0x7274\n0xACBC\t0x72E9\n0xACBD\t0x72E0\n0xACBE\t0x72E1\n0xACBF\t0x73B7\n0xACC0\t0x73CA\n0xACC1\t0x73BB\n0xACC2\t0x73B2\n0xACC3\t0x73CD\n0xACC4\t0x73C0\n0xACC5\t0x73B3\n0xACC6\t0x751A\n0xACC7\t0x752D\n0xACC8\t0x754F\n0xACC9\t0x754C\n0xACCA\t0x754E\n0xACCB\t0x754B\n0xACCC\t0x75AB\n0xACCD\t0x75A4\n0xACCE\t0x75A5\n0xACCF\t0x75A2\n0xACD0\t0x75A3\n0xACD1\t0x7678\n0xACD2\t0x7686\n0xACD3\t0x7687\n0xACD4\t0x7688\n0xACD5\t0x76C8\n0xACD6\t0x76C6\n0xACD7\t0x76C3\n0xACD8\t0x76C5\n0xACD9\t0x7701\n0xACDA\t0x76F9\n0xACDB\t0x76F8\n0xACDC\t0x7709\n0xACDD\t0x770B\n0xACDE\t0x76FE\n0xACDF\t0x76FC\n0xACE0\t0x7707\n0xACE1\t0x77DC\n0xACE2\t0x7802\n0xACE3\t0x7814\n0xACE4\t0x780C\n0xACE5\t0x780D\n0xACE6\t0x7946\n0xACE7\t0x7949\n0xACE8\t0x7948\n0xACE9\t0x7947\n0xACEA\t0x79B9\n0xACEB\t0x79BA\n0xACEC\t0x79D1\n0xACED\t0x79D2\n0xACEE\t0x79CB\n0xACEF\t0x7A7F\n0xACF0\t0x7A81\n0xACF1\t0x7AFF\n0xACF2\t0x7AFD\n0xACF3\t0x7C7D\n0xACF4\t0x7D02\n0xACF5\t0x7D05\n0xACF6\t0x7D00\n0xACF7\t0x7D09\n0xACF8\t0x7D07\n0xACF9\t0x7D04\n0xACFA\t0x7D06\n0xACFB\t0x7F38\n0xACFC\t0x7F8E\n0xACFD\t0x7FBF\n0xACFE\t0x8004\n0xAD40\t0x8010\n0xAD41\t0x800D\n0xAD42\t0x8011\n0xAD43\t0x8036\n0xAD44\t0x80D6\n0xAD45\t0x80E5\n0xAD46\t0x80DA\n0xAD47\t0x80C3\n0xAD48\t0x80C4\n0xAD49\t0x80CC\n0xAD4A\t0x80E1\n0xAD4B\t0x80DB\n0xAD4C\t0x80CE\n0xAD4D\t0x80DE\n0xAD4E\t0x80E4\n0xAD4F\t0x80DD\n0xAD50\t0x81F4\n0xAD51\t0x8222\n0xAD52\t0x82E7\n0xAD53\t0x8303\n0xAD54\t0x8305\n0xAD55\t0x82E3\n0xAD56\t0x82DB\n0xAD57\t0x82E6\n0xAD58\t0x8304\n0xAD59\t0x82E5\n0xAD5A\t0x8302\n0xAD5B\t0x8309\n0xAD5C\t0x82D2\n0xAD5D\t0x82D7\n0xAD5E\t0x82F1\n0xAD5F\t0x8301\n0xAD60\t0x82DC\n0xAD61\t0x82D4\n0xAD62\t0x82D1\n0xAD63\t0x82DE\n0xAD64\t0x82D3\n0xAD65\t0x82DF\n0xAD66\t0x82EF\n0xAD67\t0x8306\n0xAD68\t0x8650\n0xAD69\t0x8679\n0xAD6A\t0x867B\n0xAD6B\t0x867A\n0xAD6C\t0x884D\n0xAD6D\t0x886B\n0xAD6E\t0x8981\n0xAD6F\t0x89D4\n0xAD70\t0x8A08\n0xAD71\t0x8A02\n0xAD72\t0x8A03\n0xAD73\t0x8C9E\n0xAD74\t0x8CA0\n0xAD75\t0x8D74\n0xAD76\t0x8D73\n0xAD77\t0x8DB4\n0xAD78\t0x8ECD\n0xAD79\t0x8ECC\n0xAD7A\t0x8FF0\n0xAD7B\t0x8FE6\n0xAD7C\t0x8FE2\n0xAD7D\t0x8FEA\n0xAD7E\t0x8FE5\n0xADA1\t0x8FED\n0xADA2\t0x8FEB\n0xADA3\t0x8FE4\n0xADA4\t0x8FE8\n0xADA5\t0x90CA\n0xADA6\t0x90CE\n0xADA7\t0x90C1\n0xADA8\t0x90C3\n0xADA9\t0x914B\n0xADAA\t0x914A\n0xADAB\t0x91CD\n0xADAC\t0x9582\n0xADAD\t0x9650\n0xADAE\t0x964B\n0xADAF\t0x964C\n0xADB0\t0x964D\n0xADB1\t0x9762\n0xADB2\t0x9769\n0xADB3\t0x97CB\n0xADB4\t0x97ED\n0xADB5\t0x97F3\n0xADB6\t0x9801\n0xADB7\t0x98A8\n0xADB8\t0x98DB\n0xADB9\t0x98DF\n0xADBA\t0x9996\n0xADBB\t0x9999\n0xADBC\t0x4E58\n0xADBD\t0x4EB3\n0xADBE\t0x500C\n0xADBF\t0x500D\n0xADC0\t0x5023\n0xADC1\t0x4FEF\n0xADC2\t0x5026\n0xADC3\t0x5025\n0xADC4\t0x4FF8\n0xADC5\t0x5029\n0xADC6\t0x5016\n0xADC7\t0x5006\n0xADC8\t0x503C\n0xADC9\t0x501F\n0xADCA\t0x501A\n0xADCB\t0x5012\n0xADCC\t0x5011\n0xADCD\t0x4FFA\n0xADCE\t0x5000\n0xADCF\t0x5014\n0xADD0\t0x5028\n0xADD1\t0x4FF1\n0xADD2\t0x5021\n0xADD3\t0x500B\n0xADD4\t0x5019\n0xADD5\t0x5018\n0xADD6\t0x4FF3\n0xADD7\t0x4FEE\n0xADD8\t0x502D\n0xADD9\t0x502A\n0xADDA\t0x4FFE\n0xADDB\t0x502B\n0xADDC\t0x5009\n0xADDD\t0x517C\n0xADDE\t0x51A4\n0xADDF\t0x51A5\n0xADE0\t0x51A2\n0xADE1\t0x51CD\n0xADE2\t0x51CC\n0xADE3\t0x51C6\n0xADE4\t0x51CB\n0xADE5\t0x5256\n0xADE6\t0x525C\n0xADE7\t0x5254\n0xADE8\t0x525B\n0xADE9\t0x525D\n0xADEA\t0x532A\n0xADEB\t0x537F\n0xADEC\t0x539F\n0xADED\t0x539D\n0xADEE\t0x53DF\n0xADEF\t0x54E8\n0xADF0\t0x5510\n0xADF1\t0x5501\n0xADF2\t0x5537\n0xADF3\t0x54FC\n0xADF4\t0x54E5\n0xADF5\t0x54F2\n0xADF6\t0x5506\n0xADF7\t0x54FA\n0xADF8\t0x5514\n0xADF9\t0x54E9\n0xADFA\t0x54ED\n0xADFB\t0x54E1\n0xADFC\t0x5509\n0xADFD\t0x54EE\n0xADFE\t0x54EA\n0xAE40\t0x54E6\n0xAE41\t0x5527\n0xAE42\t0x5507\n0xAE43\t0x54FD\n0xAE44\t0x550F\n0xAE45\t0x5703\n0xAE46\t0x5704\n0xAE47\t0x57C2\n0xAE48\t0x57D4\n0xAE49\t0x57CB\n0xAE4A\t0x57C3\n0xAE4B\t0x5809\n0xAE4C\t0x590F\n0xAE4D\t0x5957\n0xAE4E\t0x5958\n0xAE4F\t0x595A\n0xAE50\t0x5A11\n0xAE51\t0x5A18\n0xAE52\t0x5A1C\n0xAE53\t0x5A1F\n0xAE54\t0x5A1B\n0xAE55\t0x5A13\n0xAE56\t0x59EC\n0xAE57\t0x5A20\n0xAE58\t0x5A23\n0xAE59\t0x5A29\n0xAE5A\t0x5A25\n0xAE5B\t0x5A0C\n0xAE5C\t0x5A09\n0xAE5D\t0x5B6B\n0xAE5E\t0x5C58\n0xAE5F\t0x5BB0\n0xAE60\t0x5BB3\n0xAE61\t0x5BB6\n0xAE62\t0x5BB4\n0xAE63\t0x5BAE\n0xAE64\t0x5BB5\n0xAE65\t0x5BB9\n0xAE66\t0x5BB8\n0xAE67\t0x5C04\n0xAE68\t0x5C51\n0xAE69\t0x5C55\n0xAE6A\t0x5C50\n0xAE6B\t0x5CED\n0xAE6C\t0x5CFD\n0xAE6D\t0x5CFB\n0xAE6E\t0x5CEA\n0xAE6F\t0x5CE8\n0xAE70\t0x5CF0\n0xAE71\t0x5CF6\n0xAE72\t0x5D01\n0xAE73\t0x5CF4\n0xAE74\t0x5DEE\n0xAE75\t0x5E2D\n0xAE76\t0x5E2B\n0xAE77\t0x5EAB\n0xAE78\t0x5EAD\n0xAE79\t0x5EA7\n0xAE7A\t0x5F31\n0xAE7B\t0x5F92\n0xAE7C\t0x5F91\n0xAE7D\t0x5F90\n0xAE7E\t0x6059\n0xAEA1\t0x6063\n0xAEA2\t0x6065\n0xAEA3\t0x6050\n0xAEA4\t0x6055\n0xAEA5\t0x606D\n0xAEA6\t0x6069\n0xAEA7\t0x606F\n0xAEA8\t0x6084\n0xAEA9\t0x609F\n0xAEAA\t0x609A\n0xAEAB\t0x608D\n0xAEAC\t0x6094\n0xAEAD\t0x608C\n0xAEAE\t0x6085\n0xAEAF\t0x6096\n0xAEB0\t0x6247\n0xAEB1\t0x62F3\n0xAEB2\t0x6308\n0xAEB3\t0x62FF\n0xAEB4\t0x634E\n0xAEB5\t0x633E\n0xAEB6\t0x632F\n0xAEB7\t0x6355\n0xAEB8\t0x6342\n0xAEB9\t0x6346\n0xAEBA\t0x634F\n0xAEBB\t0x6349\n0xAEBC\t0x633A\n0xAEBD\t0x6350\n0xAEBE\t0x633D\n0xAEBF\t0x632A\n0xAEC0\t0x632B\n0xAEC1\t0x6328\n0xAEC2\t0x634D\n0xAEC3\t0x634C\n0xAEC4\t0x6548\n0xAEC5\t0x6549\n0xAEC6\t0x6599\n0xAEC7\t0x65C1\n0xAEC8\t0x65C5\n0xAEC9\t0x6642\n0xAECA\t0x6649\n0xAECB\t0x664F\n0xAECC\t0x6643\n0xAECD\t0x6652\n0xAECE\t0x664C\n0xAECF\t0x6645\n0xAED0\t0x6641\n0xAED1\t0x66F8\n0xAED2\t0x6714\n0xAED3\t0x6715\n0xAED4\t0x6717\n0xAED5\t0x6821\n0xAED6\t0x6838\n0xAED7\t0x6848\n0xAED8\t0x6846\n0xAED9\t0x6853\n0xAEDA\t0x6839\n0xAEDB\t0x6842\n0xAEDC\t0x6854\n0xAEDD\t0x6829\n0xAEDE\t0x68B3\n0xAEDF\t0x6817\n0xAEE0\t0x684C\n0xAEE1\t0x6851\n0xAEE2\t0x683D\n0xAEE3\t0x67F4\n0xAEE4\t0x6850\n0xAEE5\t0x6840\n0xAEE6\t0x683C\n0xAEE7\t0x6843\n0xAEE8\t0x682A\n0xAEE9\t0x6845\n0xAEEA\t0x6813\n0xAEEB\t0x6818\n0xAEEC\t0x6841\n0xAEED\t0x6B8A\n0xAEEE\t0x6B89\n0xAEEF\t0x6BB7\n0xAEF0\t0x6C23\n0xAEF1\t0x6C27\n0xAEF2\t0x6C28\n0xAEF3\t0x6C26\n0xAEF4\t0x6C24\n0xAEF5\t0x6CF0\n0xAEF6\t0x6D6A\n0xAEF7\t0x6D95\n0xAEF8\t0x6D88\n0xAEF9\t0x6D87\n0xAEFA\t0x6D66\n0xAEFB\t0x6D78\n0xAEFC\t0x6D77\n0xAEFD\t0x6D59\n0xAEFE\t0x6D93\n0xAF40\t0x6D6C\n0xAF41\t0x6D89\n0xAF42\t0x6D6E\n0xAF43\t0x6D5A\n0xAF44\t0x6D74\n0xAF45\t0x6D69\n0xAF46\t0x6D8C\n0xAF47\t0x6D8A\n0xAF48\t0x6D79\n0xAF49\t0x6D85\n0xAF4A\t0x6D65\n0xAF4B\t0x6D94\n0xAF4C\t0x70CA\n0xAF4D\t0x70D8\n0xAF4E\t0x70E4\n0xAF4F\t0x70D9\n0xAF50\t0x70C8\n0xAF51\t0x70CF\n0xAF52\t0x7239\n0xAF53\t0x7279\n0xAF54\t0x72FC\n0xAF55\t0x72F9\n0xAF56\t0x72FD\n0xAF57\t0x72F8\n0xAF58\t0x72F7\n0xAF59\t0x7386\n0xAF5A\t0x73ED\n0xAF5B\t0x7409\n0xAF5C\t0x73EE\n0xAF5D\t0x73E0\n0xAF5E\t0x73EA\n0xAF5F\t0x73DE\n0xAF60\t0x7554\n0xAF61\t0x755D\n0xAF62\t0x755C\n0xAF63\t0x755A\n0xAF64\t0x7559\n0xAF65\t0x75BE\n0xAF66\t0x75C5\n0xAF67\t0x75C7\n0xAF68\t0x75B2\n0xAF69\t0x75B3\n0xAF6A\t0x75BD\n0xAF6B\t0x75BC\n0xAF6C\t0x75B9\n0xAF6D\t0x75C2\n0xAF6E\t0x75B8\n0xAF6F\t0x768B\n0xAF70\t0x76B0\n0xAF71\t0x76CA\n0xAF72\t0x76CD\n0xAF73\t0x76CE\n0xAF74\t0x7729\n0xAF75\t0x771F\n0xAF76\t0x7720\n0xAF77\t0x7728\n0xAF78\t0x77E9\n0xAF79\t0x7830\n0xAF7A\t0x7827\n0xAF7B\t0x7838\n0xAF7C\t0x781D\n0xAF7D\t0x7834\n0xAF7E\t0x7837\n0xAFA1\t0x7825\n0xAFA2\t0x782D\n0xAFA3\t0x7820\n0xAFA4\t0x781F\n0xAFA5\t0x7832\n0xAFA6\t0x7955\n0xAFA7\t0x7950\n0xAFA8\t0x7960\n0xAFA9\t0x795F\n0xAFAA\t0x7956\n0xAFAB\t0x795E\n0xAFAC\t0x795D\n0xAFAD\t0x7957\n0xAFAE\t0x795A\n0xAFAF\t0x79E4\n0xAFB0\t0x79E3\n0xAFB1\t0x79E7\n0xAFB2\t0x79DF\n0xAFB3\t0x79E6\n0xAFB4\t0x79E9\n0xAFB5\t0x79D8\n0xAFB6\t0x7A84\n0xAFB7\t0x7A88\n0xAFB8\t0x7AD9\n0xAFB9\t0x7B06\n0xAFBA\t0x7B11\n0xAFBB\t0x7C89\n0xAFBC\t0x7D21\n0xAFBD\t0x7D17\n0xAFBE\t0x7D0B\n0xAFBF\t0x7D0A\n0xAFC0\t0x7D20\n0xAFC1\t0x7D22\n0xAFC2\t0x7D14\n0xAFC3\t0x7D10\n0xAFC4\t0x7D15\n0xAFC5\t0x7D1A\n0xAFC6\t0x7D1C\n0xAFC7\t0x7D0D\n0xAFC8\t0x7D19\n0xAFC9\t0x7D1B\n0xAFCA\t0x7F3A\n0xAFCB\t0x7F5F\n0xAFCC\t0x7F94\n0xAFCD\t0x7FC5\n0xAFCE\t0x7FC1\n0xAFCF\t0x8006\n0xAFD0\t0x8018\n0xAFD1\t0x8015\n0xAFD2\t0x8019\n0xAFD3\t0x8017\n0xAFD4\t0x803D\n0xAFD5\t0x803F\n0xAFD6\t0x80F1\n0xAFD7\t0x8102\n0xAFD8\t0x80F0\n0xAFD9\t0x8105\n0xAFDA\t0x80ED\n0xAFDB\t0x80F4\n0xAFDC\t0x8106\n0xAFDD\t0x80F8\n0xAFDE\t0x80F3\n0xAFDF\t0x8108\n0xAFE0\t0x80FD\n0xAFE1\t0x810A\n0xAFE2\t0x80FC\n0xAFE3\t0x80EF\n0xAFE4\t0x81ED\n0xAFE5\t0x81EC\n0xAFE6\t0x8200\n0xAFE7\t0x8210\n0xAFE8\t0x822A\n0xAFE9\t0x822B\n0xAFEA\t0x8228\n0xAFEB\t0x822C\n0xAFEC\t0x82BB\n0xAFED\t0x832B\n0xAFEE\t0x8352\n0xAFEF\t0x8354\n0xAFF0\t0x834A\n0xAFF1\t0x8338\n0xAFF2\t0x8350\n0xAFF3\t0x8349\n0xAFF4\t0x8335\n0xAFF5\t0x8334\n0xAFF6\t0x834F\n0xAFF7\t0x8332\n0xAFF8\t0x8339\n0xAFF9\t0x8336\n0xAFFA\t0x8317\n0xAFFB\t0x8340\n0xAFFC\t0x8331\n0xAFFD\t0x8328\n0xAFFE\t0x8343\n0xB040\t0x8654\n0xB041\t0x868A\n0xB042\t0x86AA\n0xB043\t0x8693\n0xB044\t0x86A4\n0xB045\t0x86A9\n0xB046\t0x868C\n0xB047\t0x86A3\n0xB048\t0x869C\n0xB049\t0x8870\n0xB04A\t0x8877\n0xB04B\t0x8881\n0xB04C\t0x8882\n0xB04D\t0x887D\n0xB04E\t0x8879\n0xB04F\t0x8A18\n0xB050\t0x8A10\n0xB051\t0x8A0E\n0xB052\t0x8A0C\n0xB053\t0x8A15\n0xB054\t0x8A0A\n0xB055\t0x8A17\n0xB056\t0x8A13\n0xB057\t0x8A16\n0xB058\t0x8A0F\n0xB059\t0x8A11\n0xB05A\t0x8C48\n0xB05B\t0x8C7A\n0xB05C\t0x8C79\n0xB05D\t0x8CA1\n0xB05E\t0x8CA2\n0xB05F\t0x8D77\n0xB060\t0x8EAC\n0xB061\t0x8ED2\n0xB062\t0x8ED4\n0xB063\t0x8ECF\n0xB064\t0x8FB1\n0xB065\t0x9001\n0xB066\t0x9006\n0xB067\t0x8FF7\n0xB068\t0x9000\n0xB069\t0x8FFA\n0xB06A\t0x8FF4\n0xB06B\t0x9003\n0xB06C\t0x8FFD\n0xB06D\t0x9005\n0xB06E\t0x8FF8\n0xB06F\t0x9095\n0xB070\t0x90E1\n0xB071\t0x90DD\n0xB072\t0x90E2\n0xB073\t0x9152\n0xB074\t0x914D\n0xB075\t0x914C\n0xB076\t0x91D8\n0xB077\t0x91DD\n0xB078\t0x91D7\n0xB079\t0x91DC\n0xB07A\t0x91D9\n0xB07B\t0x9583\n0xB07C\t0x9662\n0xB07D\t0x9663\n0xB07E\t0x9661\n0xB0A1\t0x965B\n0xB0A2\t0x965D\n0xB0A3\t0x9664\n0xB0A4\t0x9658\n0xB0A5\t0x965E\n0xB0A6\t0x96BB\n0xB0A7\t0x98E2\n0xB0A8\t0x99AC\n0xB0A9\t0x9AA8\n0xB0AA\t0x9AD8\n0xB0AB\t0x9B25\n0xB0AC\t0x9B32\n0xB0AD\t0x9B3C\n0xB0AE\t0x4E7E\n0xB0AF\t0x507A\n0xB0B0\t0x507D\n0xB0B1\t0x505C\n0xB0B2\t0x5047\n0xB0B3\t0x5043\n0xB0B4\t0x504C\n0xB0B5\t0x505A\n0xB0B6\t0x5049\n0xB0B7\t0x5065\n0xB0B8\t0x5076\n0xB0B9\t0x504E\n0xB0BA\t0x5055\n0xB0BB\t0x5075\n0xB0BC\t0x5074\n0xB0BD\t0x5077\n0xB0BE\t0x504F\n0xB0BF\t0x500F\n0xB0C0\t0x506F\n0xB0C1\t0x506D\n0xB0C2\t0x515C\n0xB0C3\t0x5195\n0xB0C4\t0x51F0\n0xB0C5\t0x526A\n0xB0C6\t0x526F\n0xB0C7\t0x52D2\n0xB0C8\t0x52D9\n0xB0C9\t0x52D8\n0xB0CA\t0x52D5\n0xB0CB\t0x5310\n0xB0CC\t0x530F\n0xB0CD\t0x5319\n0xB0CE\t0x533F\n0xB0CF\t0x5340\n0xB0D0\t0x533E\n0xB0D1\t0x53C3\n0xB0D2\t0x66FC\n0xB0D3\t0x5546\n0xB0D4\t0x556A\n0xB0D5\t0x5566\n0xB0D6\t0x5544\n0xB0D7\t0x555E\n0xB0D8\t0x5561\n0xB0D9\t0x5543\n0xB0DA\t0x554A\n0xB0DB\t0x5531\n0xB0DC\t0x5556\n0xB0DD\t0x554F\n0xB0DE\t0x5555\n0xB0DF\t0x552F\n0xB0E0\t0x5564\n0xB0E1\t0x5538\n0xB0E2\t0x552E\n0xB0E3\t0x555C\n0xB0E4\t0x552C\n0xB0E5\t0x5563\n0xB0E6\t0x5533\n0xB0E7\t0x5541\n0xB0E8\t0x5557\n0xB0E9\t0x5708\n0xB0EA\t0x570B\n0xB0EB\t0x5709\n0xB0EC\t0x57DF\n0xB0ED\t0x5805\n0xB0EE\t0x580A\n0xB0EF\t0x5806\n0xB0F0\t0x57E0\n0xB0F1\t0x57E4\n0xB0F2\t0x57FA\n0xB0F3\t0x5802\n0xB0F4\t0x5835\n0xB0F5\t0x57F7\n0xB0F6\t0x57F9\n0xB0F7\t0x5920\n0xB0F8\t0x5962\n0xB0F9\t0x5A36\n0xB0FA\t0x5A41\n0xB0FB\t0x5A49\n0xB0FC\t0x5A66\n0xB0FD\t0x5A6A\n0xB0FE\t0x5A40\n0xB140\t0x5A3C\n0xB141\t0x5A62\n0xB142\t0x5A5A\n0xB143\t0x5A46\n0xB144\t0x5A4A\n0xB145\t0x5B70\n0xB146\t0x5BC7\n0xB147\t0x5BC5\n0xB148\t0x5BC4\n0xB149\t0x5BC2\n0xB14A\t0x5BBF\n0xB14B\t0x5BC6\n0xB14C\t0x5C09\n0xB14D\t0x5C08\n0xB14E\t0x5C07\n0xB14F\t0x5C60\n0xB150\t0x5C5C\n0xB151\t0x5C5D\n0xB152\t0x5D07\n0xB153\t0x5D06\n0xB154\t0x5D0E\n0xB155\t0x5D1B\n0xB156\t0x5D16\n0xB157\t0x5D22\n0xB158\t0x5D11\n0xB159\t0x5D29\n0xB15A\t0x5D14\n0xB15B\t0x5D19\n0xB15C\t0x5D24\n0xB15D\t0x5D27\n0xB15E\t0x5D17\n0xB15F\t0x5DE2\n0xB160\t0x5E38\n0xB161\t0x5E36\n0xB162\t0x5E33\n0xB163\t0x5E37\n0xB164\t0x5EB7\n0xB165\t0x5EB8\n0xB166\t0x5EB6\n0xB167\t0x5EB5\n0xB168\t0x5EBE\n0xB169\t0x5F35\n0xB16A\t0x5F37\n0xB16B\t0x5F57\n0xB16C\t0x5F6C\n0xB16D\t0x5F69\n0xB16E\t0x5F6B\n0xB16F\t0x5F97\n0xB170\t0x5F99\n0xB171\t0x5F9E\n0xB172\t0x5F98\n0xB173\t0x5FA1\n0xB174\t0x5FA0\n0xB175\t0x5F9C\n0xB176\t0x607F\n0xB177\t0x60A3\n0xB178\t0x6089\n0xB179\t0x60A0\n0xB17A\t0x60A8\n0xB17B\t0x60CB\n0xB17C\t0x60B4\n0xB17D\t0x60E6\n0xB17E\t0x60BD\n0xB1A1\t0x60C5\n0xB1A2\t0x60BB\n0xB1A3\t0x60B5\n0xB1A4\t0x60DC\n0xB1A5\t0x60BC\n0xB1A6\t0x60D8\n0xB1A7\t0x60D5\n0xB1A8\t0x60C6\n0xB1A9\t0x60DF\n0xB1AA\t0x60B8\n0xB1AB\t0x60DA\n0xB1AC\t0x60C7\n0xB1AD\t0x621A\n0xB1AE\t0x621B\n0xB1AF\t0x6248\n0xB1B0\t0x63A0\n0xB1B1\t0x63A7\n0xB1B2\t0x6372\n0xB1B3\t0x6396\n0xB1B4\t0x63A2\n0xB1B5\t0x63A5\n0xB1B6\t0x6377\n0xB1B7\t0x6367\n0xB1B8\t0x6398\n0xB1B9\t0x63AA\n0xB1BA\t0x6371\n0xB1BB\t0x63A9\n0xB1BC\t0x6389\n0xB1BD\t0x6383\n0xB1BE\t0x639B\n0xB1BF\t0x636B\n0xB1C0\t0x63A8\n0xB1C1\t0x6384\n0xB1C2\t0x6388\n0xB1C3\t0x6399\n0xB1C4\t0x63A1\n0xB1C5\t0x63AC\n0xB1C6\t0x6392\n0xB1C7\t0x638F\n0xB1C8\t0x6380\n0xB1C9\t0x637B\n0xB1CA\t0x6369\n0xB1CB\t0x6368\n0xB1CC\t0x637A\n0xB1CD\t0x655D\n0xB1CE\t0x6556\n0xB1CF\t0x6551\n0xB1D0\t0x6559\n0xB1D1\t0x6557\n0xB1D2\t0x555F\n0xB1D3\t0x654F\n0xB1D4\t0x6558\n0xB1D5\t0x6555\n0xB1D6\t0x6554\n0xB1D7\t0x659C\n0xB1D8\t0x659B\n0xB1D9\t0x65AC\n0xB1DA\t0x65CF\n0xB1DB\t0x65CB\n0xB1DC\t0x65CC\n0xB1DD\t0x65CE\n0xB1DE\t0x665D\n0xB1DF\t0x665A\n0xB1E0\t0x6664\n0xB1E1\t0x6668\n0xB1E2\t0x6666\n0xB1E3\t0x665E\n0xB1E4\t0x66F9\n0xB1E5\t0x52D7\n0xB1E6\t0x671B\n0xB1E7\t0x6881\n0xB1E8\t0x68AF\n0xB1E9\t0x68A2\n0xB1EA\t0x6893\n0xB1EB\t0x68B5\n0xB1EC\t0x687F\n0xB1ED\t0x6876\n0xB1EE\t0x68B1\n0xB1EF\t0x68A7\n0xB1F0\t0x6897\n0xB1F1\t0x68B0\n0xB1F2\t0x6883\n0xB1F3\t0x68C4\n0xB1F4\t0x68AD\n0xB1F5\t0x6886\n0xB1F6\t0x6885\n0xB1F7\t0x6894\n0xB1F8\t0x689D\n0xB1F9\t0x68A8\n0xB1FA\t0x689F\n0xB1FB\t0x68A1\n0xB1FC\t0x6882\n0xB1FD\t0x6B32\n0xB1FE\t0x6BBA\n0xB240\t0x6BEB\n0xB241\t0x6BEC\n0xB242\t0x6C2B\n0xB243\t0x6D8E\n0xB244\t0x6DBC\n0xB245\t0x6DF3\n0xB246\t0x6DD9\n0xB247\t0x6DB2\n0xB248\t0x6DE1\n0xB249\t0x6DCC\n0xB24A\t0x6DE4\n0xB24B\t0x6DFB\n0xB24C\t0x6DFA\n0xB24D\t0x6E05\n0xB24E\t0x6DC7\n0xB24F\t0x6DCB\n0xB250\t0x6DAF\n0xB251\t0x6DD1\n0xB252\t0x6DAE\n0xB253\t0x6DDE\n0xB254\t0x6DF9\n0xB255\t0x6DB8\n0xB256\t0x6DF7\n0xB257\t0x6DF5\n0xB258\t0x6DC5\n0xB259\t0x6DD2\n0xB25A\t0x6E1A\n0xB25B\t0x6DB5\n0xB25C\t0x6DDA\n0xB25D\t0x6DEB\n0xB25E\t0x6DD8\n0xB25F\t0x6DEA\n0xB260\t0x6DF1\n0xB261\t0x6DEE\n0xB262\t0x6DE8\n0xB263\t0x6DC6\n0xB264\t0x6DC4\n0xB265\t0x6DAA\n0xB266\t0x6DEC\n0xB267\t0x6DBF\n0xB268\t0x6DE6\n0xB269\t0x70F9\n0xB26A\t0x7109\n0xB26B\t0x710A\n0xB26C\t0x70FD\n0xB26D\t0x70EF\n0xB26E\t0x723D\n0xB26F\t0x727D\n0xB270\t0x7281\n0xB271\t0x731C\n0xB272\t0x731B\n0xB273\t0x7316\n0xB274\t0x7313\n0xB275\t0x7319\n0xB276\t0x7387\n0xB277\t0x7405\n0xB278\t0x740A\n0xB279\t0x7403\n0xB27A\t0x7406\n0xB27B\t0x73FE\n0xB27C\t0x740D\n0xB27D\t0x74E0\n0xB27E\t0x74F6\n0xB2A1\t0x74F7\n0xB2A2\t0x751C\n0xB2A3\t0x7522\n0xB2A4\t0x7565\n0xB2A5\t0x7566\n0xB2A6\t0x7562\n0xB2A7\t0x7570\n0xB2A8\t0x758F\n0xB2A9\t0x75D4\n0xB2AA\t0x75D5\n0xB2AB\t0x75B5\n0xB2AC\t0x75CA\n0xB2AD\t0x75CD\n0xB2AE\t0x768E\n0xB2AF\t0x76D4\n0xB2B0\t0x76D2\n0xB2B1\t0x76DB\n0xB2B2\t0x7737\n0xB2B3\t0x773E\n0xB2B4\t0x773C\n0xB2B5\t0x7736\n0xB2B6\t0x7738\n0xB2B7\t0x773A\n0xB2B8\t0x786B\n0xB2B9\t0x7843\n0xB2BA\t0x784E\n0xB2BB\t0x7965\n0xB2BC\t0x7968\n0xB2BD\t0x796D\n0xB2BE\t0x79FB\n0xB2BF\t0x7A92\n0xB2C0\t0x7A95\n0xB2C1\t0x7B20\n0xB2C2\t0x7B28\n0xB2C3\t0x7B1B\n0xB2C4\t0x7B2C\n0xB2C5\t0x7B26\n0xB2C6\t0x7B19\n0xB2C7\t0x7B1E\n0xB2C8\t0x7B2E\n0xB2C9\t0x7C92\n0xB2CA\t0x7C97\n0xB2CB\t0x7C95\n0xB2CC\t0x7D46\n0xB2CD\t0x7D43\n0xB2CE\t0x7D71\n0xB2CF\t0x7D2E\n0xB2D0\t0x7D39\n0xB2D1\t0x7D3C\n0xB2D2\t0x7D40\n0xB2D3\t0x7D30\n0xB2D4\t0x7D33\n0xB2D5\t0x7D44\n0xB2D6\t0x7D2F\n0xB2D7\t0x7D42\n0xB2D8\t0x7D32\n0xB2D9\t0x7D31\n0xB2DA\t0x7F3D\n0xB2DB\t0x7F9E\n0xB2DC\t0x7F9A\n0xB2DD\t0x7FCC\n0xB2DE\t0x7FCE\n0xB2DF\t0x7FD2\n0xB2E0\t0x801C\n0xB2E1\t0x804A\n0xB2E2\t0x8046\n0xB2E3\t0x812F\n0xB2E4\t0x8116\n0xB2E5\t0x8123\n0xB2E6\t0x812B\n0xB2E7\t0x8129\n0xB2E8\t0x8130\n0xB2E9\t0x8124\n0xB2EA\t0x8202\n0xB2EB\t0x8235\n0xB2EC\t0x8237\n0xB2ED\t0x8236\n0xB2EE\t0x8239\n0xB2EF\t0x838E\n0xB2F0\t0x839E\n0xB2F1\t0x8398\n0xB2F2\t0x8378\n0xB2F3\t0x83A2\n0xB2F4\t0x8396\n0xB2F5\t0x83BD\n0xB2F6\t0x83AB\n0xB2F7\t0x8392\n0xB2F8\t0x838A\n0xB2F9\t0x8393\n0xB2FA\t0x8389\n0xB2FB\t0x83A0\n0xB2FC\t0x8377\n0xB2FD\t0x837B\n0xB2FE\t0x837C\n0xB340\t0x8386\n0xB341\t0x83A7\n0xB342\t0x8655\n0xB343\t0x5F6A\n0xB344\t0x86C7\n0xB345\t0x86C0\n0xB346\t0x86B6\n0xB347\t0x86C4\n0xB348\t0x86B5\n0xB349\t0x86C6\n0xB34A\t0x86CB\n0xB34B\t0x86B1\n0xB34C\t0x86AF\n0xB34D\t0x86C9\n0xB34E\t0x8853\n0xB34F\t0x889E\n0xB350\t0x8888\n0xB351\t0x88AB\n0xB352\t0x8892\n0xB353\t0x8896\n0xB354\t0x888D\n0xB355\t0x888B\n0xB356\t0x8993\n0xB357\t0x898F\n0xB358\t0x8A2A\n0xB359\t0x8A1D\n0xB35A\t0x8A23\n0xB35B\t0x8A25\n0xB35C\t0x8A31\n0xB35D\t0x8A2D\n0xB35E\t0x8A1F\n0xB35F\t0x8A1B\n0xB360\t0x8A22\n0xB361\t0x8C49\n0xB362\t0x8C5A\n0xB363\t0x8CA9\n0xB364\t0x8CAC\n0xB365\t0x8CAB\n0xB366\t0x8CA8\n0xB367\t0x8CAA\n0xB368\t0x8CA7\n0xB369\t0x8D67\n0xB36A\t0x8D66\n0xB36B\t0x8DBE\n0xB36C\t0x8DBA\n0xB36D\t0x8EDB\n0xB36E\t0x8EDF\n0xB36F\t0x9019\n0xB370\t0x900D\n0xB371\t0x901A\n0xB372\t0x9017\n0xB373\t0x9023\n0xB374\t0x901F\n0xB375\t0x901D\n0xB376\t0x9010\n0xB377\t0x9015\n0xB378\t0x901E\n0xB379\t0x9020\n0xB37A\t0x900F\n0xB37B\t0x9022\n0xB37C\t0x9016\n0xB37D\t0x901B\n0xB37E\t0x9014\n0xB3A1\t0x90E8\n0xB3A2\t0x90ED\n0xB3A3\t0x90FD\n0xB3A4\t0x9157\n0xB3A5\t0x91CE\n0xB3A6\t0x91F5\n0xB3A7\t0x91E6\n0xB3A8\t0x91E3\n0xB3A9\t0x91E7\n0xB3AA\t0x91ED\n0xB3AB\t0x91E9\n0xB3AC\t0x9589\n0xB3AD\t0x966A\n0xB3AE\t0x9675\n0xB3AF\t0x9673\n0xB3B0\t0x9678\n0xB3B1\t0x9670\n0xB3B2\t0x9674\n0xB3B3\t0x9676\n0xB3B4\t0x9677\n0xB3B5\t0x966C\n0xB3B6\t0x96C0\n0xB3B7\t0x96EA\n0xB3B8\t0x96E9\n0xB3B9\t0x7AE0\n0xB3BA\t0x7ADF\n0xB3BB\t0x9802\n0xB3BC\t0x9803\n0xB3BD\t0x9B5A\n0xB3BE\t0x9CE5\n0xB3BF\t0x9E75\n0xB3C0\t0x9E7F\n0xB3C1\t0x9EA5\n0xB3C2\t0x9EBB\n0xB3C3\t0x50A2\n0xB3C4\t0x508D\n0xB3C5\t0x5085\n0xB3C6\t0x5099\n0xB3C7\t0x5091\n0xB3C8\t0x5080\n0xB3C9\t0x5096\n0xB3CA\t0x5098\n0xB3CB\t0x509A\n0xB3CC\t0x6700\n0xB3CD\t0x51F1\n0xB3CE\t0x5272\n0xB3CF\t0x5274\n0xB3D0\t0x5275\n0xB3D1\t0x5269\n0xB3D2\t0x52DE\n0xB3D3\t0x52DD\n0xB3D4\t0x52DB\n0xB3D5\t0x535A\n0xB3D6\t0x53A5\n0xB3D7\t0x557B\n0xB3D8\t0x5580\n0xB3D9\t0x55A7\n0xB3DA\t0x557C\n0xB3DB\t0x558A\n0xB3DC\t0x559D\n0xB3DD\t0x5598\n0xB3DE\t0x5582\n0xB3DF\t0x559C\n0xB3E0\t0x55AA\n0xB3E1\t0x5594\n0xB3E2\t0x5587\n0xB3E3\t0x558B\n0xB3E4\t0x5583\n0xB3E5\t0x55B3\n0xB3E6\t0x55AE\n0xB3E7\t0x559F\n0xB3E8\t0x553E\n0xB3E9\t0x55B2\n0xB3EA\t0x559A\n0xB3EB\t0x55BB\n0xB3EC\t0x55AC\n0xB3ED\t0x55B1\n0xB3EE\t0x557E\n0xB3EF\t0x5589\n0xB3F0\t0x55AB\n0xB3F1\t0x5599\n0xB3F2\t0x570D\n0xB3F3\t0x582F\n0xB3F4\t0x582A\n0xB3F5\t0x5834\n0xB3F6\t0x5824\n0xB3F7\t0x5830\n0xB3F8\t0x5831\n0xB3F9\t0x5821\n0xB3FA\t0x581D\n0xB3FB\t0x5820\n0xB3FC\t0x58F9\n0xB3FD\t0x58FA\n0xB3FE\t0x5960\n0xB440\t0x5A77\n0xB441\t0x5A9A\n0xB442\t0x5A7F\n0xB443\t0x5A92\n0xB444\t0x5A9B\n0xB445\t0x5AA7\n0xB446\t0x5B73\n0xB447\t0x5B71\n0xB448\t0x5BD2\n0xB449\t0x5BCC\n0xB44A\t0x5BD3\n0xB44B\t0x5BD0\n0xB44C\t0x5C0A\n0xB44D\t0x5C0B\n0xB44E\t0x5C31\n0xB44F\t0x5D4C\n0xB450\t0x5D50\n0xB451\t0x5D34\n0xB452\t0x5D47\n0xB453\t0x5DFD\n0xB454\t0x5E45\n0xB455\t0x5E3D\n0xB456\t0x5E40\n0xB457\t0x5E43\n0xB458\t0x5E7E\n0xB459\t0x5ECA\n0xB45A\t0x5EC1\n0xB45B\t0x5EC2\n0xB45C\t0x5EC4\n0xB45D\t0x5F3C\n0xB45E\t0x5F6D\n0xB45F\t0x5FA9\n0xB460\t0x5FAA\n0xB461\t0x5FA8\n0xB462\t0x60D1\n0xB463\t0x60E1\n0xB464\t0x60B2\n0xB465\t0x60B6\n0xB466\t0x60E0\n0xB467\t0x611C\n0xB468\t0x6123\n0xB469\t0x60FA\n0xB46A\t0x6115\n0xB46B\t0x60F0\n0xB46C\t0x60FB\n0xB46D\t0x60F4\n0xB46E\t0x6168\n0xB46F\t0x60F1\n0xB470\t0x610E\n0xB471\t0x60F6\n0xB472\t0x6109\n0xB473\t0x6100\n0xB474\t0x6112\n0xB475\t0x621F\n0xB476\t0x6249\n0xB477\t0x63A3\n0xB478\t0x638C\n0xB479\t0x63CF\n0xB47A\t0x63C0\n0xB47B\t0x63E9\n0xB47C\t0x63C9\n0xB47D\t0x63C6\n0xB47E\t0x63CD\n0xB4A1\t0x63D2\n0xB4A2\t0x63E3\n0xB4A3\t0x63D0\n0xB4A4\t0x63E1\n0xB4A5\t0x63D6\n0xB4A6\t0x63ED\n0xB4A7\t0x63EE\n0xB4A8\t0x6376\n0xB4A9\t0x63F4\n0xB4AA\t0x63EA\n0xB4AB\t0x63DB\n0xB4AC\t0x6452\n0xB4AD\t0x63DA\n0xB4AE\t0x63F9\n0xB4AF\t0x655E\n0xB4B0\t0x6566\n0xB4B1\t0x6562\n0xB4B2\t0x6563\n0xB4B3\t0x6591\n0xB4B4\t0x6590\n0xB4B5\t0x65AF\n0xB4B6\t0x666E\n0xB4B7\t0x6670\n0xB4B8\t0x6674\n0xB4B9\t0x6676\n0xB4BA\t0x666F\n0xB4BB\t0x6691\n0xB4BC\t0x667A\n0xB4BD\t0x667E\n0xB4BE\t0x6677\n0xB4BF\t0x66FE\n0xB4C0\t0x66FF\n0xB4C1\t0x671F\n0xB4C2\t0x671D\n0xB4C3\t0x68FA\n0xB4C4\t0x68D5\n0xB4C5\t0x68E0\n0xB4C6\t0x68D8\n0xB4C7\t0x68D7\n0xB4C8\t0x6905\n0xB4C9\t0x68DF\n0xB4CA\t0x68F5\n0xB4CB\t0x68EE\n0xB4CC\t0x68E7\n0xB4CD\t0x68F9\n0xB4CE\t0x68D2\n0xB4CF\t0x68F2\n0xB4D0\t0x68E3\n0xB4D1\t0x68CB\n0xB4D2\t0x68CD\n0xB4D3\t0x690D\n0xB4D4\t0x6912\n0xB4D5\t0x690E\n0xB4D6\t0x68C9\n0xB4D7\t0x68DA\n0xB4D8\t0x696E\n0xB4D9\t0x68FB\n0xB4DA\t0x6B3E\n0xB4DB\t0x6B3A\n0xB4DC\t0x6B3D\n0xB4DD\t0x6B98\n0xB4DE\t0x6B96\n0xB4DF\t0x6BBC\n0xB4E0\t0x6BEF\n0xB4E1\t0x6C2E\n0xB4E2\t0x6C2F\n0xB4E3\t0x6C2C\n0xB4E4\t0x6E2F\n0xB4E5\t0x6E38\n0xB4E6\t0x6E54\n0xB4E7\t0x6E21\n0xB4E8\t0x6E32\n0xB4E9\t0x6E67\n0xB4EA\t0x6E4A\n0xB4EB\t0x6E20\n0xB4EC\t0x6E25\n0xB4ED\t0x6E23\n0xB4EE\t0x6E1B\n0xB4EF\t0x6E5B\n0xB4F0\t0x6E58\n0xB4F1\t0x6E24\n0xB4F2\t0x6E56\n0xB4F3\t0x6E6E\n0xB4F4\t0x6E2D\n0xB4F5\t0x6E26\n0xB4F6\t0x6E6F\n0xB4F7\t0x6E34\n0xB4F8\t0x6E4D\n0xB4F9\t0x6E3A\n0xB4FA\t0x6E2C\n0xB4FB\t0x6E43\n0xB4FC\t0x6E1D\n0xB4FD\t0x6E3E\n0xB4FE\t0x6ECB\n0xB540\t0x6E89\n0xB541\t0x6E19\n0xB542\t0x6E4E\n0xB543\t0x6E63\n0xB544\t0x6E44\n0xB545\t0x6E72\n0xB546\t0x6E69\n0xB547\t0x6E5F\n0xB548\t0x7119\n0xB549\t0x711A\n0xB54A\t0x7126\n0xB54B\t0x7130\n0xB54C\t0x7121\n0xB54D\t0x7136\n0xB54E\t0x716E\n0xB54F\t0x711C\n0xB550\t0x724C\n0xB551\t0x7284\n0xB552\t0x7280\n0xB553\t0x7336\n0xB554\t0x7325\n0xB555\t0x7334\n0xB556\t0x7329\n0xB557\t0x743A\n0xB558\t0x742A\n0xB559\t0x7433\n0xB55A\t0x7422\n0xB55B\t0x7425\n0xB55C\t0x7435\n0xB55D\t0x7436\n0xB55E\t0x7434\n0xB55F\t0x742F\n0xB560\t0x741B\n0xB561\t0x7426\n0xB562\t0x7428\n0xB563\t0x7525\n0xB564\t0x7526\n0xB565\t0x756B\n0xB566\t0x756A\n0xB567\t0x75E2\n0xB568\t0x75DB\n0xB569\t0x75E3\n0xB56A\t0x75D9\n0xB56B\t0x75D8\n0xB56C\t0x75DE\n0xB56D\t0x75E0\n0xB56E\t0x767B\n0xB56F\t0x767C\n0xB570\t0x7696\n0xB571\t0x7693\n0xB572\t0x76B4\n0xB573\t0x76DC\n0xB574\t0x774F\n0xB575\t0x77ED\n0xB576\t0x785D\n0xB577\t0x786C\n0xB578\t0x786F\n0xB579\t0x7A0D\n0xB57A\t0x7A08\n0xB57B\t0x7A0B\n0xB57C\t0x7A05\n0xB57D\t0x7A00\n0xB57E\t0x7A98\n0xB5A1\t0x7A97\n0xB5A2\t0x7A96\n0xB5A3\t0x7AE5\n0xB5A4\t0x7AE3\n0xB5A5\t0x7B49\n0xB5A6\t0x7B56\n0xB5A7\t0x7B46\n0xB5A8\t0x7B50\n0xB5A9\t0x7B52\n0xB5AA\t0x7B54\n0xB5AB\t0x7B4D\n0xB5AC\t0x7B4B\n0xB5AD\t0x7B4F\n0xB5AE\t0x7B51\n0xB5AF\t0x7C9F\n0xB5B0\t0x7CA5\n0xB5B1\t0x7D5E\n0xB5B2\t0x7D50\n0xB5B3\t0x7D68\n0xB5B4\t0x7D55\n0xB5B5\t0x7D2B\n0xB5B6\t0x7D6E\n0xB5B7\t0x7D72\n0xB5B8\t0x7D61\n0xB5B9\t0x7D66\n0xB5BA\t0x7D62\n0xB5BB\t0x7D70\n0xB5BC\t0x7D73\n0xB5BD\t0x5584\n0xB5BE\t0x7FD4\n0xB5BF\t0x7FD5\n0xB5C0\t0x800B\n0xB5C1\t0x8052\n0xB5C2\t0x8085\n0xB5C3\t0x8155\n0xB5C4\t0x8154\n0xB5C5\t0x814B\n0xB5C6\t0x8151\n0xB5C7\t0x814E\n0xB5C8\t0x8139\n0xB5C9\t0x8146\n0xB5CA\t0x813E\n0xB5CB\t0x814C\n0xB5CC\t0x8153\n0xB5CD\t0x8174\n0xB5CE\t0x8212\n0xB5CF\t0x821C\n0xB5D0\t0x83E9\n0xB5D1\t0x8403\n0xB5D2\t0x83F8\n0xB5D3\t0x840D\n0xB5D4\t0x83E0\n0xB5D5\t0x83C5\n0xB5D6\t0x840B\n0xB5D7\t0x83C1\n0xB5D8\t0x83EF\n0xB5D9\t0x83F1\n0xB5DA\t0x83F4\n0xB5DB\t0x8457\n0xB5DC\t0x840A\n0xB5DD\t0x83F0\n0xB5DE\t0x840C\n0xB5DF\t0x83CC\n0xB5E0\t0x83FD\n0xB5E1\t0x83F2\n0xB5E2\t0x83CA\n0xB5E3\t0x8438\n0xB5E4\t0x840E\n0xB5E5\t0x8404\n0xB5E6\t0x83DC\n0xB5E7\t0x8407\n0xB5E8\t0x83D4\n0xB5E9\t0x83DF\n0xB5EA\t0x865B\n0xB5EB\t0x86DF\n0xB5EC\t0x86D9\n0xB5ED\t0x86ED\n0xB5EE\t0x86D4\n0xB5EF\t0x86DB\n0xB5F0\t0x86E4\n0xB5F1\t0x86D0\n0xB5F2\t0x86DE\n0xB5F3\t0x8857\n0xB5F4\t0x88C1\n0xB5F5\t0x88C2\n0xB5F6\t0x88B1\n0xB5F7\t0x8983\n0xB5F8\t0x8996\n0xB5F9\t0x8A3B\n0xB5FA\t0x8A60\n0xB5FB\t0x8A55\n0xB5FC\t0x8A5E\n0xB5FD\t0x8A3C\n0xB5FE\t0x8A41\n0xB640\t0x8A54\n0xB641\t0x8A5B\n0xB642\t0x8A50\n0xB643\t0x8A46\n0xB644\t0x8A34\n0xB645\t0x8A3A\n0xB646\t0x8A36\n0xB647\t0x8A56\n0xB648\t0x8C61\n0xB649\t0x8C82\n0xB64A\t0x8CAF\n0xB64B\t0x8CBC\n0xB64C\t0x8CB3\n0xB64D\t0x8CBD\n0xB64E\t0x8CC1\n0xB64F\t0x8CBB\n0xB650\t0x8CC0\n0xB651\t0x8CB4\n0xB652\t0x8CB7\n0xB653\t0x8CB6\n0xB654\t0x8CBF\n0xB655\t0x8CB8\n0xB656\t0x8D8A\n0xB657\t0x8D85\n0xB658\t0x8D81\n0xB659\t0x8DCE\n0xB65A\t0x8DDD\n0xB65B\t0x8DCB\n0xB65C\t0x8DDA\n0xB65D\t0x8DD1\n0xB65E\t0x8DCC\n0xB65F\t0x8DDB\n0xB660\t0x8DC6\n0xB661\t0x8EFB\n0xB662\t0x8EF8\n0xB663\t0x8EFC\n0xB664\t0x8F9C\n0xB665\t0x902E\n0xB666\t0x9035\n0xB667\t0x9031\n0xB668\t0x9038\n0xB669\t0x9032\n0xB66A\t0x9036\n0xB66B\t0x9102\n0xB66C\t0x90F5\n0xB66D\t0x9109\n0xB66E\t0x90FE\n0xB66F\t0x9163\n0xB670\t0x9165\n0xB671\t0x91CF\n0xB672\t0x9214\n0xB673\t0x9215\n0xB674\t0x9223\n0xB675\t0x9209\n0xB676\t0x921E\n0xB677\t0x920D\n0xB678\t0x9210\n0xB679\t0x9207\n0xB67A\t0x9211\n0xB67B\t0x9594\n0xB67C\t0x958F\n0xB67D\t0x958B\n0xB67E\t0x9591\n0xB6A1\t0x9593\n0xB6A2\t0x9592\n0xB6A3\t0x958E\n0xB6A4\t0x968A\n0xB6A5\t0x968E\n0xB6A6\t0x968B\n0xB6A7\t0x967D\n0xB6A8\t0x9685\n0xB6A9\t0x9686\n0xB6AA\t0x968D\n0xB6AB\t0x9672\n0xB6AC\t0x9684\n0xB6AD\t0x96C1\n0xB6AE\t0x96C5\n0xB6AF\t0x96C4\n0xB6B0\t0x96C6\n0xB6B1\t0x96C7\n0xB6B2\t0x96EF\n0xB6B3\t0x96F2\n0xB6B4\t0x97CC\n0xB6B5\t0x9805\n0xB6B6\t0x9806\n0xB6B7\t0x9808\n0xB6B8\t0x98E7\n0xB6B9\t0x98EA\n0xB6BA\t0x98EF\n0xB6BB\t0x98E9\n0xB6BC\t0x98F2\n0xB6BD\t0x98ED\n0xB6BE\t0x99AE\n0xB6BF\t0x99AD\n0xB6C0\t0x9EC3\n0xB6C1\t0x9ECD\n0xB6C2\t0x9ED1\n0xB6C3\t0x4E82\n0xB6C4\t0x50AD\n0xB6C5\t0x50B5\n0xB6C6\t0x50B2\n0xB6C7\t0x50B3\n0xB6C8\t0x50C5\n0xB6C9\t0x50BE\n0xB6CA\t0x50AC\n0xB6CB\t0x50B7\n0xB6CC\t0x50BB\n0xB6CD\t0x50AF\n0xB6CE\t0x50C7\n0xB6CF\t0x527F\n0xB6D0\t0x5277\n0xB6D1\t0x527D\n0xB6D2\t0x52DF\n0xB6D3\t0x52E6\n0xB6D4\t0x52E4\n0xB6D5\t0x52E2\n0xB6D6\t0x52E3\n0xB6D7\t0x532F\n0xB6D8\t0x55DF\n0xB6D9\t0x55E8\n0xB6DA\t0x55D3\n0xB6DB\t0x55E6\n0xB6DC\t0x55CE\n0xB6DD\t0x55DC\n0xB6DE\t0x55C7\n0xB6DF\t0x55D1\n0xB6E0\t0x55E3\n0xB6E1\t0x55E4\n0xB6E2\t0x55EF\n0xB6E3\t0x55DA\n0xB6E4\t0x55E1\n0xB6E5\t0x55C5\n0xB6E6\t0x55C6\n0xB6E7\t0x55E5\n0xB6E8\t0x55C9\n0xB6E9\t0x5712\n0xB6EA\t0x5713\n0xB6EB\t0x585E\n0xB6EC\t0x5851\n0xB6ED\t0x5858\n0xB6EE\t0x5857\n0xB6EF\t0x585A\n0xB6F0\t0x5854\n0xB6F1\t0x586B\n0xB6F2\t0x584C\n0xB6F3\t0x586D\n0xB6F4\t0x584A\n0xB6F5\t0x5862\n0xB6F6\t0x5852\n0xB6F7\t0x584B\n0xB6F8\t0x5967\n0xB6F9\t0x5AC1\n0xB6FA\t0x5AC9\n0xB6FB\t0x5ACC\n0xB6FC\t0x5ABE\n0xB6FD\t0x5ABD\n0xB6FE\t0x5ABC\n0xB740\t0x5AB3\n0xB741\t0x5AC2\n0xB742\t0x5AB2\n0xB743\t0x5D69\n0xB744\t0x5D6F\n0xB745\t0x5E4C\n0xB746\t0x5E79\n0xB747\t0x5EC9\n0xB748\t0x5EC8\n0xB749\t0x5F12\n0xB74A\t0x5F59\n0xB74B\t0x5FAC\n0xB74C\t0x5FAE\n0xB74D\t0x611A\n0xB74E\t0x610F\n0xB74F\t0x6148\n0xB750\t0x611F\n0xB751\t0x60F3\n0xB752\t0x611B\n0xB753\t0x60F9\n0xB754\t0x6101\n0xB755\t0x6108\n0xB756\t0x614E\n0xB757\t0x614C\n0xB758\t0x6144\n0xB759\t0x614D\n0xB75A\t0x613E\n0xB75B\t0x6134\n0xB75C\t0x6127\n0xB75D\t0x610D\n0xB75E\t0x6106\n0xB75F\t0x6137\n0xB760\t0x6221\n0xB761\t0x6222\n0xB762\t0x6413\n0xB763\t0x643E\n0xB764\t0x641E\n0xB765\t0x642A\n0xB766\t0x642D\n0xB767\t0x643D\n0xB768\t0x642C\n0xB769\t0x640F\n0xB76A\t0x641C\n0xB76B\t0x6414\n0xB76C\t0x640D\n0xB76D\t0x6436\n0xB76E\t0x6416\n0xB76F\t0x6417\n0xB770\t0x6406\n0xB771\t0x656C\n0xB772\t0x659F\n0xB773\t0x65B0\n0xB774\t0x6697\n0xB775\t0x6689\n0xB776\t0x6687\n0xB777\t0x6688\n0xB778\t0x6696\n0xB779\t0x6684\n0xB77A\t0x6698\n0xB77B\t0x668D\n0xB77C\t0x6703\n0xB77D\t0x6994\n0xB77E\t0x696D\n0xB7A1\t0x695A\n0xB7A2\t0x6977\n0xB7A3\t0x6960\n0xB7A4\t0x6954\n0xB7A5\t0x6975\n0xB7A6\t0x6930\n0xB7A7\t0x6982\n0xB7A8\t0x694A\n0xB7A9\t0x6968\n0xB7AA\t0x696B\n0xB7AB\t0x695E\n0xB7AC\t0x6953\n0xB7AD\t0x6979\n0xB7AE\t0x6986\n0xB7AF\t0x695D\n0xB7B0\t0x6963\n0xB7B1\t0x695B\n0xB7B2\t0x6B47\n0xB7B3\t0x6B72\n0xB7B4\t0x6BC0\n0xB7B5\t0x6BBF\n0xB7B6\t0x6BD3\n0xB7B7\t0x6BFD\n0xB7B8\t0x6EA2\n0xB7B9\t0x6EAF\n0xB7BA\t0x6ED3\n0xB7BB\t0x6EB6\n0xB7BC\t0x6EC2\n0xB7BD\t0x6E90\n0xB7BE\t0x6E9D\n0xB7BF\t0x6EC7\n0xB7C0\t0x6EC5\n0xB7C1\t0x6EA5\n0xB7C2\t0x6E98\n0xB7C3\t0x6EBC\n0xB7C4\t0x6EBA\n0xB7C5\t0x6EAB\n0xB7C6\t0x6ED1\n0xB7C7\t0x6E96\n0xB7C8\t0x6E9C\n0xB7C9\t0x6EC4\n0xB7CA\t0x6ED4\n0xB7CB\t0x6EAA\n0xB7CC\t0x6EA7\n0xB7CD\t0x6EB4\n0xB7CE\t0x714E\n0xB7CF\t0x7159\n0xB7D0\t0x7169\n0xB7D1\t0x7164\n0xB7D2\t0x7149\n0xB7D3\t0x7167\n0xB7D4\t0x715C\n0xB7D5\t0x716C\n0xB7D6\t0x7166\n0xB7D7\t0x714C\n0xB7D8\t0x7165\n0xB7D9\t0x715E\n0xB7DA\t0x7146\n0xB7DB\t0x7168\n0xB7DC\t0x7156\n0xB7DD\t0x723A\n0xB7DE\t0x7252\n0xB7DF\t0x7337\n0xB7E0\t0x7345\n0xB7E1\t0x733F\n0xB7E2\t0x733E\n0xB7E3\t0x746F\n0xB7E4\t0x745A\n0xB7E5\t0x7455\n0xB7E6\t0x745F\n0xB7E7\t0x745E\n0xB7E8\t0x7441\n0xB7E9\t0x743F\n0xB7EA\t0x7459\n0xB7EB\t0x745B\n0xB7EC\t0x745C\n0xB7ED\t0x7576\n0xB7EE\t0x7578\n0xB7EF\t0x7600\n0xB7F0\t0x75F0\n0xB7F1\t0x7601\n0xB7F2\t0x75F2\n0xB7F3\t0x75F1\n0xB7F4\t0x75FA\n0xB7F5\t0x75FF\n0xB7F6\t0x75F4\n0xB7F7\t0x75F3\n0xB7F8\t0x76DE\n0xB7F9\t0x76DF\n0xB7FA\t0x775B\n0xB7FB\t0x776B\n0xB7FC\t0x7766\n0xB7FD\t0x775E\n0xB7FE\t0x7763\n0xB840\t0x7779\n0xB841\t0x776A\n0xB842\t0x776C\n0xB843\t0x775C\n0xB844\t0x7765\n0xB845\t0x7768\n0xB846\t0x7762\n0xB847\t0x77EE\n0xB848\t0x788E\n0xB849\t0x78B0\n0xB84A\t0x7897\n0xB84B\t0x7898\n0xB84C\t0x788C\n0xB84D\t0x7889\n0xB84E\t0x787C\n0xB84F\t0x7891\n0xB850\t0x7893\n0xB851\t0x787F\n0xB852\t0x797A\n0xB853\t0x797F\n0xB854\t0x7981\n0xB855\t0x842C\n0xB856\t0x79BD\n0xB857\t0x7A1C\n0xB858\t0x7A1A\n0xB859\t0x7A20\n0xB85A\t0x7A14\n0xB85B\t0x7A1F\n0xB85C\t0x7A1E\n0xB85D\t0x7A9F\n0xB85E\t0x7AA0\n0xB85F\t0x7B77\n0xB860\t0x7BC0\n0xB861\t0x7B60\n0xB862\t0x7B6E\n0xB863\t0x7B67\n0xB864\t0x7CB1\n0xB865\t0x7CB3\n0xB866\t0x7CB5\n0xB867\t0x7D93\n0xB868\t0x7D79\n0xB869\t0x7D91\n0xB86A\t0x7D81\n0xB86B\t0x7D8F\n0xB86C\t0x7D5B\n0xB86D\t0x7F6E\n0xB86E\t0x7F69\n0xB86F\t0x7F6A\n0xB870\t0x7F72\n0xB871\t0x7FA9\n0xB872\t0x7FA8\n0xB873\t0x7FA4\n0xB874\t0x8056\n0xB875\t0x8058\n0xB876\t0x8086\n0xB877\t0x8084\n0xB878\t0x8171\n0xB879\t0x8170\n0xB87A\t0x8178\n0xB87B\t0x8165\n0xB87C\t0x816E\n0xB87D\t0x8173\n0xB87E\t0x816B\n0xB8A1\t0x8179\n0xB8A2\t0x817A\n0xB8A3\t0x8166\n0xB8A4\t0x8205\n0xB8A5\t0x8247\n0xB8A6\t0x8482\n0xB8A7\t0x8477\n0xB8A8\t0x843D\n0xB8A9\t0x8431\n0xB8AA\t0x8475\n0xB8AB\t0x8466\n0xB8AC\t0x846B\n0xB8AD\t0x8449\n0xB8AE\t0x846C\n0xB8AF\t0x845B\n0xB8B0\t0x843C\n0xB8B1\t0x8435\n0xB8B2\t0x8461\n0xB8B3\t0x8463\n0xB8B4\t0x8469\n0xB8B5\t0x846D\n0xB8B6\t0x8446\n0xB8B7\t0x865E\n0xB8B8\t0x865C\n0xB8B9\t0x865F\n0xB8BA\t0x86F9\n0xB8BB\t0x8713\n0xB8BC\t0x8708\n0xB8BD\t0x8707\n0xB8BE\t0x8700\n0xB8BF\t0x86FE\n0xB8C0\t0x86FB\n0xB8C1\t0x8702\n0xB8C2\t0x8703\n0xB8C3\t0x8706\n0xB8C4\t0x870A\n0xB8C5\t0x8859\n0xB8C6\t0x88DF\n0xB8C7\t0x88D4\n0xB8C8\t0x88D9\n0xB8C9\t0x88DC\n0xB8CA\t0x88D8\n0xB8CB\t0x88DD\n0xB8CC\t0x88E1\n0xB8CD\t0x88CA\n0xB8CE\t0x88D5\n0xB8CF\t0x88D2\n0xB8D0\t0x899C\n0xB8D1\t0x89E3\n0xB8D2\t0x8A6B\n0xB8D3\t0x8A72\n0xB8D4\t0x8A73\n0xB8D5\t0x8A66\n0xB8D6\t0x8A69\n0xB8D7\t0x8A70\n0xB8D8\t0x8A87\n0xB8D9\t0x8A7C\n0xB8DA\t0x8A63\n0xB8DB\t0x8AA0\n0xB8DC\t0x8A71\n0xB8DD\t0x8A85\n0xB8DE\t0x8A6D\n0xB8DF\t0x8A62\n0xB8E0\t0x8A6E\n0xB8E1\t0x8A6C\n0xB8E2\t0x8A79\n0xB8E3\t0x8A7B\n0xB8E4\t0x8A3E\n0xB8E5\t0x8A68\n0xB8E6\t0x8C62\n0xB8E7\t0x8C8A\n0xB8E8\t0x8C89\n0xB8E9\t0x8CCA\n0xB8EA\t0x8CC7\n0xB8EB\t0x8CC8\n0xB8EC\t0x8CC4\n0xB8ED\t0x8CB2\n0xB8EE\t0x8CC3\n0xB8EF\t0x8CC2\n0xB8F0\t0x8CC5\n0xB8F1\t0x8DE1\n0xB8F2\t0x8DDF\n0xB8F3\t0x8DE8\n0xB8F4\t0x8DEF\n0xB8F5\t0x8DF3\n0xB8F6\t0x8DFA\n0xB8F7\t0x8DEA\n0xB8F8\t0x8DE4\n0xB8F9\t0x8DE6\n0xB8FA\t0x8EB2\n0xB8FB\t0x8F03\n0xB8FC\t0x8F09\n0xB8FD\t0x8EFE\n0xB8FE\t0x8F0A\n0xB940\t0x8F9F\n0xB941\t0x8FB2\n0xB942\t0x904B\n0xB943\t0x904A\n0xB944\t0x9053\n0xB945\t0x9042\n0xB946\t0x9054\n0xB947\t0x903C\n0xB948\t0x9055\n0xB949\t0x9050\n0xB94A\t0x9047\n0xB94B\t0x904F\n0xB94C\t0x904E\n0xB94D\t0x904D\n0xB94E\t0x9051\n0xB94F\t0x903E\n0xB950\t0x9041\n0xB951\t0x9112\n0xB952\t0x9117\n0xB953\t0x916C\n0xB954\t0x916A\n0xB955\t0x9169\n0xB956\t0x91C9\n0xB957\t0x9237\n0xB958\t0x9257\n0xB959\t0x9238\n0xB95A\t0x923D\n0xB95B\t0x9240\n0xB95C\t0x923E\n0xB95D\t0x925B\n0xB95E\t0x924B\n0xB95F\t0x9264\n0xB960\t0x9251\n0xB961\t0x9234\n0xB962\t0x9249\n0xB963\t0x924D\n0xB964\t0x9245\n0xB965\t0x9239\n0xB966\t0x923F\n0xB967\t0x925A\n0xB968\t0x9598\n0xB969\t0x9698\n0xB96A\t0x9694\n0xB96B\t0x9695\n0xB96C\t0x96CD\n0xB96D\t0x96CB\n0xB96E\t0x96C9\n0xB96F\t0x96CA\n0xB970\t0x96F7\n0xB971\t0x96FB\n0xB972\t0x96F9\n0xB973\t0x96F6\n0xB974\t0x9756\n0xB975\t0x9774\n0xB976\t0x9776\n0xB977\t0x9810\n0xB978\t0x9811\n0xB979\t0x9813\n0xB97A\t0x980A\n0xB97B\t0x9812\n0xB97C\t0x980C\n0xB97D\t0x98FC\n0xB97E\t0x98F4\n0xB9A1\t0x98FD\n0xB9A2\t0x98FE\n0xB9A3\t0x99B3\n0xB9A4\t0x99B1\n0xB9A5\t0x99B4\n0xB9A6\t0x9AE1\n0xB9A7\t0x9CE9\n0xB9A8\t0x9E82\n0xB9A9\t0x9F0E\n0xB9AA\t0x9F13\n0xB9AB\t0x9F20\n0xB9AC\t0x50E7\n0xB9AD\t0x50EE\n0xB9AE\t0x50E5\n0xB9AF\t0x50D6\n0xB9B0\t0x50ED\n0xB9B1\t0x50DA\n0xB9B2\t0x50D5\n0xB9B3\t0x50CF\n0xB9B4\t0x50D1\n0xB9B5\t0x50F1\n0xB9B6\t0x50CE\n0xB9B7\t0x50E9\n0xB9B8\t0x5162\n0xB9B9\t0x51F3\n0xB9BA\t0x5283\n0xB9BB\t0x5282\n0xB9BC\t0x5331\n0xB9BD\t0x53AD\n0xB9BE\t0x55FE\n0xB9BF\t0x5600\n0xB9C0\t0x561B\n0xB9C1\t0x5617\n0xB9C2\t0x55FD\n0xB9C3\t0x5614\n0xB9C4\t0x5606\n0xB9C5\t0x5609\n0xB9C6\t0x560D\n0xB9C7\t0x560E\n0xB9C8\t0x55F7\n0xB9C9\t0x5616\n0xB9CA\t0x561F\n0xB9CB\t0x5608\n0xB9CC\t0x5610\n0xB9CD\t0x55F6\n0xB9CE\t0x5718\n0xB9CF\t0x5716\n0xB9D0\t0x5875\n0xB9D1\t0x587E\n0xB9D2\t0x5883\n0xB9D3\t0x5893\n0xB9D4\t0x588A\n0xB9D5\t0x5879\n0xB9D6\t0x5885\n0xB9D7\t0x587D\n0xB9D8\t0x58FD\n0xB9D9\t0x5925\n0xB9DA\t0x5922\n0xB9DB\t0x5924\n0xB9DC\t0x596A\n0xB9DD\t0x5969\n0xB9DE\t0x5AE1\n0xB9DF\t0x5AE6\n0xB9E0\t0x5AE9\n0xB9E1\t0x5AD7\n0xB9E2\t0x5AD6\n0xB9E3\t0x5AD8\n0xB9E4\t0x5AE3\n0xB9E5\t0x5B75\n0xB9E6\t0x5BDE\n0xB9E7\t0x5BE7\n0xB9E8\t0x5BE1\n0xB9E9\t0x5BE5\n0xB9EA\t0x5BE6\n0xB9EB\t0x5BE8\n0xB9EC\t0x5BE2\n0xB9ED\t0x5BE4\n0xB9EE\t0x5BDF\n0xB9EF\t0x5C0D\n0xB9F0\t0x5C62\n0xB9F1\t0x5D84\n0xB9F2\t0x5D87\n0xB9F3\t0x5E5B\n0xB9F4\t0x5E63\n0xB9F5\t0x5E55\n0xB9F6\t0x5E57\n0xB9F7\t0x5E54\n0xB9F8\t0x5ED3\n0xB9F9\t0x5ED6\n0xB9FA\t0x5F0A\n0xB9FB\t0x5F46\n0xB9FC\t0x5F70\n0xB9FD\t0x5FB9\n0xB9FE\t0x6147\n0xBA40\t0x613F\n0xBA41\t0x614B\n0xBA42\t0x6177\n0xBA43\t0x6162\n0xBA44\t0x6163\n0xBA45\t0x615F\n0xBA46\t0x615A\n0xBA47\t0x6158\n0xBA48\t0x6175\n0xBA49\t0x622A\n0xBA4A\t0x6487\n0xBA4B\t0x6458\n0xBA4C\t0x6454\n0xBA4D\t0x64A4\n0xBA4E\t0x6478\n0xBA4F\t0x645F\n0xBA50\t0x647A\n0xBA51\t0x6451\n0xBA52\t0x6467\n0xBA53\t0x6434\n0xBA54\t0x646D\n0xBA55\t0x647B\n0xBA56\t0x6572\n0xBA57\t0x65A1\n0xBA58\t0x65D7\n0xBA59\t0x65D6\n0xBA5A\t0x66A2\n0xBA5B\t0x66A8\n0xBA5C\t0x669D\n0xBA5D\t0x699C\n0xBA5E\t0x69A8\n0xBA5F\t0x6995\n0xBA60\t0x69C1\n0xBA61\t0x69AE\n0xBA62\t0x69D3\n0xBA63\t0x69CB\n0xBA64\t0x699B\n0xBA65\t0x69B7\n0xBA66\t0x69BB\n0xBA67\t0x69AB\n0xBA68\t0x69B4\n0xBA69\t0x69D0\n0xBA6A\t0x69CD\n0xBA6B\t0x69AD\n0xBA6C\t0x69CC\n0xBA6D\t0x69A6\n0xBA6E\t0x69C3\n0xBA6F\t0x69A3\n0xBA70\t0x6B49\n0xBA71\t0x6B4C\n0xBA72\t0x6C33\n0xBA73\t0x6F33\n0xBA74\t0x6F14\n0xBA75\t0x6EFE\n0xBA76\t0x6F13\n0xBA77\t0x6EF4\n0xBA78\t0x6F29\n0xBA79\t0x6F3E\n0xBA7A\t0x6F20\n0xBA7B\t0x6F2C\n0xBA7C\t0x6F0F\n0xBA7D\t0x6F02\n0xBA7E\t0x6F22\n0xBAA1\t0x6EFF\n0xBAA2\t0x6EEF\n0xBAA3\t0x6F06\n0xBAA4\t0x6F31\n0xBAA5\t0x6F38\n0xBAA6\t0x6F32\n0xBAA7\t0x6F23\n0xBAA8\t0x6F15\n0xBAA9\t0x6F2B\n0xBAAA\t0x6F2F\n0xBAAB\t0x6F88\n0xBAAC\t0x6F2A\n0xBAAD\t0x6EEC\n0xBAAE\t0x6F01\n0xBAAF\t0x6EF2\n0xBAB0\t0x6ECC\n0xBAB1\t0x6EF7\n0xBAB2\t0x7194\n0xBAB3\t0x7199\n0xBAB4\t0x717D\n0xBAB5\t0x718A\n0xBAB6\t0x7184\n0xBAB7\t0x7192\n0xBAB8\t0x723E\n0xBAB9\t0x7292\n0xBABA\t0x7296\n0xBABB\t0x7344\n0xBABC\t0x7350\n0xBABD\t0x7464\n0xBABE\t0x7463\n0xBABF\t0x746A\n0xBAC0\t0x7470\n0xBAC1\t0x746D\n0xBAC2\t0x7504\n0xBAC3\t0x7591\n0xBAC4\t0x7627\n0xBAC5\t0x760D\n0xBAC6\t0x760B\n0xBAC7\t0x7609\n0xBAC8\t0x7613\n0xBAC9\t0x76E1\n0xBACA\t0x76E3\n0xBACB\t0x7784\n0xBACC\t0x777D\n0xBACD\t0x777F\n0xBACE\t0x7761\n0xBACF\t0x78C1\n0xBAD0\t0x789F\n0xBAD1\t0x78A7\n0xBAD2\t0x78B3\n0xBAD3\t0x78A9\n0xBAD4\t0x78A3\n0xBAD5\t0x798E\n0xBAD6\t0x798F\n0xBAD7\t0x798D\n0xBAD8\t0x7A2E\n0xBAD9\t0x7A31\n0xBADA\t0x7AAA\n0xBADB\t0x7AA9\n0xBADC\t0x7AED\n0xBADD\t0x7AEF\n0xBADE\t0x7BA1\n0xBADF\t0x7B95\n0xBAE0\t0x7B8B\n0xBAE1\t0x7B75\n0xBAE2\t0x7B97\n0xBAE3\t0x7B9D\n0xBAE4\t0x7B94\n0xBAE5\t0x7B8F\n0xBAE6\t0x7BB8\n0xBAE7\t0x7B87\n0xBAE8\t0x7B84\n0xBAE9\t0x7CB9\n0xBAEA\t0x7CBD\n0xBAEB\t0x7CBE\n0xBAEC\t0x7DBB\n0xBAED\t0x7DB0\n0xBAEE\t0x7D9C\n0xBAEF\t0x7DBD\n0xBAF0\t0x7DBE\n0xBAF1\t0x7DA0\n0xBAF2\t0x7DCA\n0xBAF3\t0x7DB4\n0xBAF4\t0x7DB2\n0xBAF5\t0x7DB1\n0xBAF6\t0x7DBA\n0xBAF7\t0x7DA2\n0xBAF8\t0x7DBF\n0xBAF9\t0x7DB5\n0xBAFA\t0x7DB8\n0xBAFB\t0x7DAD\n0xBAFC\t0x7DD2\n0xBAFD\t0x7DC7\n0xBAFE\t0x7DAC\n0xBB40\t0x7F70\n0xBB41\t0x7FE0\n0xBB42\t0x7FE1\n0xBB43\t0x7FDF\n0xBB44\t0x805E\n0xBB45\t0x805A\n0xBB46\t0x8087\n0xBB47\t0x8150\n0xBB48\t0x8180\n0xBB49\t0x818F\n0xBB4A\t0x8188\n0xBB4B\t0x818A\n0xBB4C\t0x817F\n0xBB4D\t0x8182\n0xBB4E\t0x81E7\n0xBB4F\t0x81FA\n0xBB50\t0x8207\n0xBB51\t0x8214\n0xBB52\t0x821E\n0xBB53\t0x824B\n0xBB54\t0x84C9\n0xBB55\t0x84BF\n0xBB56\t0x84C6\n0xBB57\t0x84C4\n0xBB58\t0x8499\n0xBB59\t0x849E\n0xBB5A\t0x84B2\n0xBB5B\t0x849C\n0xBB5C\t0x84CB\n0xBB5D\t0x84B8\n0xBB5E\t0x84C0\n0xBB5F\t0x84D3\n0xBB60\t0x8490\n0xBB61\t0x84BC\n0xBB62\t0x84D1\n0xBB63\t0x84CA\n0xBB64\t0x873F\n0xBB65\t0x871C\n0xBB66\t0x873B\n0xBB67\t0x8722\n0xBB68\t0x8725\n0xBB69\t0x8734\n0xBB6A\t0x8718\n0xBB6B\t0x8755\n0xBB6C\t0x8737\n0xBB6D\t0x8729\n0xBB6E\t0x88F3\n0xBB6F\t0x8902\n0xBB70\t0x88F4\n0xBB71\t0x88F9\n0xBB72\t0x88F8\n0xBB73\t0x88FD\n0xBB74\t0x88E8\n0xBB75\t0x891A\n0xBB76\t0x88EF\n0xBB77\t0x8AA6\n0xBB78\t0x8A8C\n0xBB79\t0x8A9E\n0xBB7A\t0x8AA3\n0xBB7B\t0x8A8D\n0xBB7C\t0x8AA1\n0xBB7D\t0x8A93\n0xBB7E\t0x8AA4\n0xBBA1\t0x8AAA\n0xBBA2\t0x8AA5\n0xBBA3\t0x8AA8\n0xBBA4\t0x8A98\n0xBBA5\t0x8A91\n0xBBA6\t0x8A9A\n0xBBA7\t0x8AA7\n0xBBA8\t0x8C6A\n0xBBA9\t0x8C8D\n0xBBAA\t0x8C8C\n0xBBAB\t0x8CD3\n0xBBAC\t0x8CD1\n0xBBAD\t0x8CD2\n0xBBAE\t0x8D6B\n0xBBAF\t0x8D99\n0xBBB0\t0x8D95\n0xBBB1\t0x8DFC\n0xBBB2\t0x8F14\n0xBBB3\t0x8F12\n0xBBB4\t0x8F15\n0xBBB5\t0x8F13\n0xBBB6\t0x8FA3\n0xBBB7\t0x9060\n0xBBB8\t0x9058\n0xBBB9\t0x905C\n0xBBBA\t0x9063\n0xBBBB\t0x9059\n0xBBBC\t0x905E\n0xBBBD\t0x9062\n0xBBBE\t0x905D\n0xBBBF\t0x905B\n0xBBC0\t0x9119\n0xBBC1\t0x9118\n0xBBC2\t0x911E\n0xBBC3\t0x9175\n0xBBC4\t0x9178\n0xBBC5\t0x9177\n0xBBC6\t0x9174\n0xBBC7\t0x9278\n0xBBC8\t0x9280\n0xBBC9\t0x9285\n0xBBCA\t0x9298\n0xBBCB\t0x9296\n0xBBCC\t0x927B\n0xBBCD\t0x9293\n0xBBCE\t0x929C\n0xBBCF\t0x92A8\n0xBBD0\t0x927C\n0xBBD1\t0x9291\n0xBBD2\t0x95A1\n0xBBD3\t0x95A8\n0xBBD4\t0x95A9\n0xBBD5\t0x95A3\n0xBBD6\t0x95A5\n0xBBD7\t0x95A4\n0xBBD8\t0x9699\n0xBBD9\t0x969C\n0xBBDA\t0x969B\n0xBBDB\t0x96CC\n0xBBDC\t0x96D2\n0xBBDD\t0x9700\n0xBBDE\t0x977C\n0xBBDF\t0x9785\n0xBBE0\t0x97F6\n0xBBE1\t0x9817\n0xBBE2\t0x9818\n0xBBE3\t0x98AF\n0xBBE4\t0x98B1\n0xBBE5\t0x9903\n0xBBE6\t0x9905\n0xBBE7\t0x990C\n0xBBE8\t0x9909\n0xBBE9\t0x99C1\n0xBBEA\t0x9AAF\n0xBBEB\t0x9AB0\n0xBBEC\t0x9AE6\n0xBBED\t0x9B41\n0xBBEE\t0x9B42\n0xBBEF\t0x9CF4\n0xBBF0\t0x9CF6\n0xBBF1\t0x9CF3\n0xBBF2\t0x9EBC\n0xBBF3\t0x9F3B\n0xBBF4\t0x9F4A\n0xBBF5\t0x5104\n0xBBF6\t0x5100\n0xBBF7\t0x50FB\n0xBBF8\t0x50F5\n0xBBF9\t0x50F9\n0xBBFA\t0x5102\n0xBBFB\t0x5108\n0xBBFC\t0x5109\n0xBBFD\t0x5105\n0xBBFE\t0x51DC\n0xBC40\t0x5287\n0xBC41\t0x5288\n0xBC42\t0x5289\n0xBC43\t0x528D\n0xBC44\t0x528A\n0xBC45\t0x52F0\n0xBC46\t0x53B2\n0xBC47\t0x562E\n0xBC48\t0x563B\n0xBC49\t0x5639\n0xBC4A\t0x5632\n0xBC4B\t0x563F\n0xBC4C\t0x5634\n0xBC4D\t0x5629\n0xBC4E\t0x5653\n0xBC4F\t0x564E\n0xBC50\t0x5657\n0xBC51\t0x5674\n0xBC52\t0x5636\n0xBC53\t0x562F\n0xBC54\t0x5630\n0xBC55\t0x5880\n0xBC56\t0x589F\n0xBC57\t0x589E\n0xBC58\t0x58B3\n0xBC59\t0x589C\n0xBC5A\t0x58AE\n0xBC5B\t0x58A9\n0xBC5C\t0x58A6\n0xBC5D\t0x596D\n0xBC5E\t0x5B09\n0xBC5F\t0x5AFB\n0xBC60\t0x5B0B\n0xBC61\t0x5AF5\n0xBC62\t0x5B0C\n0xBC63\t0x5B08\n0xBC64\t0x5BEE\n0xBC65\t0x5BEC\n0xBC66\t0x5BE9\n0xBC67\t0x5BEB\n0xBC68\t0x5C64\n0xBC69\t0x5C65\n0xBC6A\t0x5D9D\n0xBC6B\t0x5D94\n0xBC6C\t0x5E62\n0xBC6D\t0x5E5F\n0xBC6E\t0x5E61\n0xBC6F\t0x5EE2\n0xBC70\t0x5EDA\n0xBC71\t0x5EDF\n0xBC72\t0x5EDD\n0xBC73\t0x5EE3\n0xBC74\t0x5EE0\n0xBC75\t0x5F48\n0xBC76\t0x5F71\n0xBC77\t0x5FB7\n0xBC78\t0x5FB5\n0xBC79\t0x6176\n0xBC7A\t0x6167\n0xBC7B\t0x616E\n0xBC7C\t0x615D\n0xBC7D\t0x6155\n0xBC7E\t0x6182\n0xBCA1\t0x617C\n0xBCA2\t0x6170\n0xBCA3\t0x616B\n0xBCA4\t0x617E\n0xBCA5\t0x61A7\n0xBCA6\t0x6190\n0xBCA7\t0x61AB\n0xBCA8\t0x618E\n0xBCA9\t0x61AC\n0xBCAA\t0x619A\n0xBCAB\t0x61A4\n0xBCAC\t0x6194\n0xBCAD\t0x61AE\n0xBCAE\t0x622E\n0xBCAF\t0x6469\n0xBCB0\t0x646F\n0xBCB1\t0x6479\n0xBCB2\t0x649E\n0xBCB3\t0x64B2\n0xBCB4\t0x6488\n0xBCB5\t0x6490\n0xBCB6\t0x64B0\n0xBCB7\t0x64A5\n0xBCB8\t0x6493\n0xBCB9\t0x6495\n0xBCBA\t0x64A9\n0xBCBB\t0x6492\n0xBCBC\t0x64AE\n0xBCBD\t0x64AD\n0xBCBE\t0x64AB\n0xBCBF\t0x649A\n0xBCC0\t0x64AC\n0xBCC1\t0x6499\n0xBCC2\t0x64A2\n0xBCC3\t0x64B3\n0xBCC4\t0x6575\n0xBCC5\t0x6577\n0xBCC6\t0x6578\n0xBCC7\t0x66AE\n0xBCC8\t0x66AB\n0xBCC9\t0x66B4\n0xBCCA\t0x66B1\n0xBCCB\t0x6A23\n0xBCCC\t0x6A1F\n0xBCCD\t0x69E8\n0xBCCE\t0x6A01\n0xBCCF\t0x6A1E\n0xBCD0\t0x6A19\n0xBCD1\t0x69FD\n0xBCD2\t0x6A21\n0xBCD3\t0x6A13\n0xBCD4\t0x6A0A\n0xBCD5\t0x69F3\n0xBCD6\t0x6A02\n0xBCD7\t0x6A05\n0xBCD8\t0x69ED\n0xBCD9\t0x6A11\n0xBCDA\t0x6B50\n0xBCDB\t0x6B4E\n0xBCDC\t0x6BA4\n0xBCDD\t0x6BC5\n0xBCDE\t0x6BC6\n0xBCDF\t0x6F3F\n0xBCE0\t0x6F7C\n0xBCE1\t0x6F84\n0xBCE2\t0x6F51\n0xBCE3\t0x6F66\n0xBCE4\t0x6F54\n0xBCE5\t0x6F86\n0xBCE6\t0x6F6D\n0xBCE7\t0x6F5B\n0xBCE8\t0x6F78\n0xBCE9\t0x6F6E\n0xBCEA\t0x6F8E\n0xBCEB\t0x6F7A\n0xBCEC\t0x6F70\n0xBCED\t0x6F64\n0xBCEE\t0x6F97\n0xBCEF\t0x6F58\n0xBCF0\t0x6ED5\n0xBCF1\t0x6F6F\n0xBCF2\t0x6F60\n0xBCF3\t0x6F5F\n0xBCF4\t0x719F\n0xBCF5\t0x71AC\n0xBCF6\t0x71B1\n0xBCF7\t0x71A8\n0xBCF8\t0x7256\n0xBCF9\t0x729B\n0xBCFA\t0x734E\n0xBCFB\t0x7357\n0xBCFC\t0x7469\n0xBCFD\t0x748B\n0xBCFE\t0x7483\n0xBD40\t0x747E\n0xBD41\t0x7480\n0xBD42\t0x757F\n0xBD43\t0x7620\n0xBD44\t0x7629\n0xBD45\t0x761F\n0xBD46\t0x7624\n0xBD47\t0x7626\n0xBD48\t0x7621\n0xBD49\t0x7622\n0xBD4A\t0x769A\n0xBD4B\t0x76BA\n0xBD4C\t0x76E4\n0xBD4D\t0x778E\n0xBD4E\t0x7787\n0xBD4F\t0x778C\n0xBD50\t0x7791\n0xBD51\t0x778B\n0xBD52\t0x78CB\n0xBD53\t0x78C5\n0xBD54\t0x78BA\n0xBD55\t0x78CA\n0xBD56\t0x78BE\n0xBD57\t0x78D5\n0xBD58\t0x78BC\n0xBD59\t0x78D0\n0xBD5A\t0x7A3F\n0xBD5B\t0x7A3C\n0xBD5C\t0x7A40\n0xBD5D\t0x7A3D\n0xBD5E\t0x7A37\n0xBD5F\t0x7A3B\n0xBD60\t0x7AAF\n0xBD61\t0x7AAE\n0xBD62\t0x7BAD\n0xBD63\t0x7BB1\n0xBD64\t0x7BC4\n0xBD65\t0x7BB4\n0xBD66\t0x7BC6\n0xBD67\t0x7BC7\n0xBD68\t0x7BC1\n0xBD69\t0x7BA0\n0xBD6A\t0x7BCC\n0xBD6B\t0x7CCA\n0xBD6C\t0x7DE0\n0xBD6D\t0x7DF4\n0xBD6E\t0x7DEF\n0xBD6F\t0x7DFB\n0xBD70\t0x7DD8\n0xBD71\t0x7DEC\n0xBD72\t0x7DDD\n0xBD73\t0x7DE8\n0xBD74\t0x7DE3\n0xBD75\t0x7DDA\n0xBD76\t0x7DDE\n0xBD77\t0x7DE9\n0xBD78\t0x7D9E\n0xBD79\t0x7DD9\n0xBD7A\t0x7DF2\n0xBD7B\t0x7DF9\n0xBD7C\t0x7F75\n0xBD7D\t0x7F77\n0xBD7E\t0x7FAF\n0xBDA1\t0x7FE9\n0xBDA2\t0x8026\n0xBDA3\t0x819B\n0xBDA4\t0x819C\n0xBDA5\t0x819D\n0xBDA6\t0x81A0\n0xBDA7\t0x819A\n0xBDA8\t0x8198\n0xBDA9\t0x8517\n0xBDAA\t0x853D\n0xBDAB\t0x851A\n0xBDAC\t0x84EE\n0xBDAD\t0x852C\n0xBDAE\t0x852D\n0xBDAF\t0x8513\n0xBDB0\t0x8511\n0xBDB1\t0x8523\n0xBDB2\t0x8521\n0xBDB3\t0x8514\n0xBDB4\t0x84EC\n0xBDB5\t0x8525\n0xBDB6\t0x84FF\n0xBDB7\t0x8506\n0xBDB8\t0x8782\n0xBDB9\t0x8774\n0xBDBA\t0x8776\n0xBDBB\t0x8760\n0xBDBC\t0x8766\n0xBDBD\t0x8778\n0xBDBE\t0x8768\n0xBDBF\t0x8759\n0xBDC0\t0x8757\n0xBDC1\t0x874C\n0xBDC2\t0x8753\n0xBDC3\t0x885B\n0xBDC4\t0x885D\n0xBDC5\t0x8910\n0xBDC6\t0x8907\n0xBDC7\t0x8912\n0xBDC8\t0x8913\n0xBDC9\t0x8915\n0xBDCA\t0x890A\n0xBDCB\t0x8ABC\n0xBDCC\t0x8AD2\n0xBDCD\t0x8AC7\n0xBDCE\t0x8AC4\n0xBDCF\t0x8A95\n0xBDD0\t0x8ACB\n0xBDD1\t0x8AF8\n0xBDD2\t0x8AB2\n0xBDD3\t0x8AC9\n0xBDD4\t0x8AC2\n0xBDD5\t0x8ABF\n0xBDD6\t0x8AB0\n0xBDD7\t0x8AD6\n0xBDD8\t0x8ACD\n0xBDD9\t0x8AB6\n0xBDDA\t0x8AB9\n0xBDDB\t0x8ADB\n0xBDDC\t0x8C4C\n0xBDDD\t0x8C4E\n0xBDDE\t0x8C6C\n0xBDDF\t0x8CE0\n0xBDE0\t0x8CDE\n0xBDE1\t0x8CE6\n0xBDE2\t0x8CE4\n0xBDE3\t0x8CEC\n0xBDE4\t0x8CED\n0xBDE5\t0x8CE2\n0xBDE6\t0x8CE3\n0xBDE7\t0x8CDC\n0xBDE8\t0x8CEA\n0xBDE9\t0x8CE1\n0xBDEA\t0x8D6D\n0xBDEB\t0x8D9F\n0xBDEC\t0x8DA3\n0xBDED\t0x8E2B\n0xBDEE\t0x8E10\n0xBDEF\t0x8E1D\n0xBDF0\t0x8E22\n0xBDF1\t0x8E0F\n0xBDF2\t0x8E29\n0xBDF3\t0x8E1F\n0xBDF4\t0x8E21\n0xBDF5\t0x8E1E\n0xBDF6\t0x8EBA\n0xBDF7\t0x8F1D\n0xBDF8\t0x8F1B\n0xBDF9\t0x8F1F\n0xBDFA\t0x8F29\n0xBDFB\t0x8F26\n0xBDFC\t0x8F2A\n0xBDFD\t0x8F1C\n0xBDFE\t0x8F1E\n0xBE40\t0x8F25\n0xBE41\t0x9069\n0xBE42\t0x906E\n0xBE43\t0x9068\n0xBE44\t0x906D\n0xBE45\t0x9077\n0xBE46\t0x9130\n0xBE47\t0x912D\n0xBE48\t0x9127\n0xBE49\t0x9131\n0xBE4A\t0x9187\n0xBE4B\t0x9189\n0xBE4C\t0x918B\n0xBE4D\t0x9183\n0xBE4E\t0x92C5\n0xBE4F\t0x92BB\n0xBE50\t0x92B7\n0xBE51\t0x92EA\n0xBE52\t0x92AC\n0xBE53\t0x92E4\n0xBE54\t0x92C1\n0xBE55\t0x92B3\n0xBE56\t0x92BC\n0xBE57\t0x92D2\n0xBE58\t0x92C7\n0xBE59\t0x92F0\n0xBE5A\t0x92B2\n0xBE5B\t0x95AD\n0xBE5C\t0x95B1\n0xBE5D\t0x9704\n0xBE5E\t0x9706\n0xBE5F\t0x9707\n0xBE60\t0x9709\n0xBE61\t0x9760\n0xBE62\t0x978D\n0xBE63\t0x978B\n0xBE64\t0x978F\n0xBE65\t0x9821\n0xBE66\t0x982B\n0xBE67\t0x981C\n0xBE68\t0x98B3\n0xBE69\t0x990A\n0xBE6A\t0x9913\n0xBE6B\t0x9912\n0xBE6C\t0x9918\n0xBE6D\t0x99DD\n0xBE6E\t0x99D0\n0xBE6F\t0x99DF\n0xBE70\t0x99DB\n0xBE71\t0x99D1\n0xBE72\t0x99D5\n0xBE73\t0x99D2\n0xBE74\t0x99D9\n0xBE75\t0x9AB7\n0xBE76\t0x9AEE\n0xBE77\t0x9AEF\n0xBE78\t0x9B27\n0xBE79\t0x9B45\n0xBE7A\t0x9B44\n0xBE7B\t0x9B77\n0xBE7C\t0x9B6F\n0xBE7D\t0x9D06\n0xBE7E\t0x9D09\n0xBEA1\t0x9D03\n0xBEA2\t0x9EA9\n0xBEA3\t0x9EBE\n0xBEA4\t0x9ECE\n0xBEA5\t0x58A8\n0xBEA6\t0x9F52\n0xBEA7\t0x5112\n0xBEA8\t0x5118\n0xBEA9\t0x5114\n0xBEAA\t0x5110\n0xBEAB\t0x5115\n0xBEAC\t0x5180\n0xBEAD\t0x51AA\n0xBEAE\t0x51DD\n0xBEAF\t0x5291\n0xBEB0\t0x5293\n0xBEB1\t0x52F3\n0xBEB2\t0x5659\n0xBEB3\t0x566B\n0xBEB4\t0x5679\n0xBEB5\t0x5669\n0xBEB6\t0x5664\n0xBEB7\t0x5678\n0xBEB8\t0x566A\n0xBEB9\t0x5668\n0xBEBA\t0x5665\n0xBEBB\t0x5671\n0xBEBC\t0x566F\n0xBEBD\t0x566C\n0xBEBE\t0x5662\n0xBEBF\t0x5676\n0xBEC0\t0x58C1\n0xBEC1\t0x58BE\n0xBEC2\t0x58C7\n0xBEC3\t0x58C5\n0xBEC4\t0x596E\n0xBEC5\t0x5B1D\n0xBEC6\t0x5B34\n0xBEC7\t0x5B78\n0xBEC8\t0x5BF0\n0xBEC9\t0x5C0E\n0xBECA\t0x5F4A\n0xBECB\t0x61B2\n0xBECC\t0x6191\n0xBECD\t0x61A9\n0xBECE\t0x618A\n0xBECF\t0x61CD\n0xBED0\t0x61B6\n0xBED1\t0x61BE\n0xBED2\t0x61CA\n0xBED3\t0x61C8\n0xBED4\t0x6230\n0xBED5\t0x64C5\n0xBED6\t0x64C1\n0xBED7\t0x64CB\n0xBED8\t0x64BB\n0xBED9\t0x64BC\n0xBEDA\t0x64DA\n0xBEDB\t0x64C4\n0xBEDC\t0x64C7\n0xBEDD\t0x64C2\n0xBEDE\t0x64CD\n0xBEDF\t0x64BF\n0xBEE0\t0x64D2\n0xBEE1\t0x64D4\n0xBEE2\t0x64BE\n0xBEE3\t0x6574\n0xBEE4\t0x66C6\n0xBEE5\t0x66C9\n0xBEE6\t0x66B9\n0xBEE7\t0x66C4\n0xBEE8\t0x66C7\n0xBEE9\t0x66B8\n0xBEEA\t0x6A3D\n0xBEEB\t0x6A38\n0xBEEC\t0x6A3A\n0xBEED\t0x6A59\n0xBEEE\t0x6A6B\n0xBEEF\t0x6A58\n0xBEF0\t0x6A39\n0xBEF1\t0x6A44\n0xBEF2\t0x6A62\n0xBEF3\t0x6A61\n0xBEF4\t0x6A4B\n0xBEF5\t0x6A47\n0xBEF6\t0x6A35\n0xBEF7\t0x6A5F\n0xBEF8\t0x6A48\n0xBEF9\t0x6B59\n0xBEFA\t0x6B77\n0xBEFB\t0x6C05\n0xBEFC\t0x6FC2\n0xBEFD\t0x6FB1\n0xBEFE\t0x6FA1\n0xBF40\t0x6FC3\n0xBF41\t0x6FA4\n0xBF42\t0x6FC1\n0xBF43\t0x6FA7\n0xBF44\t0x6FB3\n0xBF45\t0x6FC0\n0xBF46\t0x6FB9\n0xBF47\t0x6FB6\n0xBF48\t0x6FA6\n0xBF49\t0x6FA0\n0xBF4A\t0x6FB4\n0xBF4B\t0x71BE\n0xBF4C\t0x71C9\n0xBF4D\t0x71D0\n0xBF4E\t0x71D2\n0xBF4F\t0x71C8\n0xBF50\t0x71D5\n0xBF51\t0x71B9\n0xBF52\t0x71CE\n0xBF53\t0x71D9\n0xBF54\t0x71DC\n0xBF55\t0x71C3\n0xBF56\t0x71C4\n0xBF57\t0x7368\n0xBF58\t0x749C\n0xBF59\t0x74A3\n0xBF5A\t0x7498\n0xBF5B\t0x749F\n0xBF5C\t0x749E\n0xBF5D\t0x74E2\n0xBF5E\t0x750C\n0xBF5F\t0x750D\n0xBF60\t0x7634\n0xBF61\t0x7638\n0xBF62\t0x763A\n0xBF63\t0x76E7\n0xBF64\t0x76E5\n0xBF65\t0x77A0\n0xBF66\t0x779E\n0xBF67\t0x779F\n0xBF68\t0x77A5\n0xBF69\t0x78E8\n0xBF6A\t0x78DA\n0xBF6B\t0x78EC\n0xBF6C\t0x78E7\n0xBF6D\t0x79A6\n0xBF6E\t0x7A4D\n0xBF6F\t0x7A4E\n0xBF70\t0x7A46\n0xBF71\t0x7A4C\n0xBF72\t0x7A4B\n0xBF73\t0x7ABA\n0xBF74\t0x7BD9\n0xBF75\t0x7C11\n0xBF76\t0x7BC9\n0xBF77\t0x7BE4\n0xBF78\t0x7BDB\n0xBF79\t0x7BE1\n0xBF7A\t0x7BE9\n0xBF7B\t0x7BE6\n0xBF7C\t0x7CD5\n0xBF7D\t0x7CD6\n0xBF7E\t0x7E0A\n0xBFA1\t0x7E11\n0xBFA2\t0x7E08\n0xBFA3\t0x7E1B\n0xBFA4\t0x7E23\n0xBFA5\t0x7E1E\n0xBFA6\t0x7E1D\n0xBFA7\t0x7E09\n0xBFA8\t0x7E10\n0xBFA9\t0x7F79\n0xBFAA\t0x7FB2\n0xBFAB\t0x7FF0\n0xBFAC\t0x7FF1\n0xBFAD\t0x7FEE\n0xBFAE\t0x8028\n0xBFAF\t0x81B3\n0xBFB0\t0x81A9\n0xBFB1\t0x81A8\n0xBFB2\t0x81FB\n0xBFB3\t0x8208\n0xBFB4\t0x8258\n0xBFB5\t0x8259\n0xBFB6\t0x854A\n0xBFB7\t0x8559\n0xBFB8\t0x8548\n0xBFB9\t0x8568\n0xBFBA\t0x8569\n0xBFBB\t0x8543\n0xBFBC\t0x8549\n0xBFBD\t0x856D\n0xBFBE\t0x856A\n0xBFBF\t0x855E\n0xBFC0\t0x8783\n0xBFC1\t0x879F\n0xBFC2\t0x879E\n0xBFC3\t0x87A2\n0xBFC4\t0x878D\n0xBFC5\t0x8861\n0xBFC6\t0x892A\n0xBFC7\t0x8932\n0xBFC8\t0x8925\n0xBFC9\t0x892B\n0xBFCA\t0x8921\n0xBFCB\t0x89AA\n0xBFCC\t0x89A6\n0xBFCD\t0x8AE6\n0xBFCE\t0x8AFA\n0xBFCF\t0x8AEB\n0xBFD0\t0x8AF1\n0xBFD1\t0x8B00\n0xBFD2\t0x8ADC\n0xBFD3\t0x8AE7\n0xBFD4\t0x8AEE\n0xBFD5\t0x8AFE\n0xBFD6\t0x8B01\n0xBFD7\t0x8B02\n0xBFD8\t0x8AF7\n0xBFD9\t0x8AED\n0xBFDA\t0x8AF3\n0xBFDB\t0x8AF6\n0xBFDC\t0x8AFC\n0xBFDD\t0x8C6B\n0xBFDE\t0x8C6D\n0xBFDF\t0x8C93\n0xBFE0\t0x8CF4\n0xBFE1\t0x8E44\n0xBFE2\t0x8E31\n0xBFE3\t0x8E34\n0xBFE4\t0x8E42\n0xBFE5\t0x8E39\n0xBFE6\t0x8E35\n0xBFE7\t0x8F3B\n0xBFE8\t0x8F2F\n0xBFE9\t0x8F38\n0xBFEA\t0x8F33\n0xBFEB\t0x8FA8\n0xBFEC\t0x8FA6\n0xBFED\t0x9075\n0xBFEE\t0x9074\n0xBFEF\t0x9078\n0xBFF0\t0x9072\n0xBFF1\t0x907C\n0xBFF2\t0x907A\n0xBFF3\t0x9134\n0xBFF4\t0x9192\n0xBFF5\t0x9320\n0xBFF6\t0x9336\n0xBFF7\t0x92F8\n0xBFF8\t0x9333\n0xBFF9\t0x932F\n0xBFFA\t0x9322\n0xBFFB\t0x92FC\n0xBFFC\t0x932B\n0xBFFD\t0x9304\n0xBFFE\t0x931A\n0xC040\t0x9310\n0xC041\t0x9326\n0xC042\t0x9321\n0xC043\t0x9315\n0xC044\t0x932E\n0xC045\t0x9319\n0xC046\t0x95BB\n0xC047\t0x96A7\n0xC048\t0x96A8\n0xC049\t0x96AA\n0xC04A\t0x96D5\n0xC04B\t0x970E\n0xC04C\t0x9711\n0xC04D\t0x9716\n0xC04E\t0x970D\n0xC04F\t0x9713\n0xC050\t0x970F\n0xC051\t0x975B\n0xC052\t0x975C\n0xC053\t0x9766\n0xC054\t0x9798\n0xC055\t0x9830\n0xC056\t0x9838\n0xC057\t0x983B\n0xC058\t0x9837\n0xC059\t0x982D\n0xC05A\t0x9839\n0xC05B\t0x9824\n0xC05C\t0x9910\n0xC05D\t0x9928\n0xC05E\t0x991E\n0xC05F\t0x991B\n0xC060\t0x9921\n0xC061\t0x991A\n0xC062\t0x99ED\n0xC063\t0x99E2\n0xC064\t0x99F1\n0xC065\t0x9AB8\n0xC066\t0x9ABC\n0xC067\t0x9AFB\n0xC068\t0x9AED\n0xC069\t0x9B28\n0xC06A\t0x9B91\n0xC06B\t0x9D15\n0xC06C\t0x9D23\n0xC06D\t0x9D26\n0xC06E\t0x9D28\n0xC06F\t0x9D12\n0xC070\t0x9D1B\n0xC071\t0x9ED8\n0xC072\t0x9ED4\n0xC073\t0x9F8D\n0xC074\t0x9F9C\n0xC075\t0x512A\n0xC076\t0x511F\n0xC077\t0x5121\n0xC078\t0x5132\n0xC079\t0x52F5\n0xC07A\t0x568E\n0xC07B\t0x5680\n0xC07C\t0x5690\n0xC07D\t0x5685\n0xC07E\t0x5687\n0xC0A1\t0x568F\n0xC0A2\t0x58D5\n0xC0A3\t0x58D3\n0xC0A4\t0x58D1\n0xC0A5\t0x58CE\n0xC0A6\t0x5B30\n0xC0A7\t0x5B2A\n0xC0A8\t0x5B24\n0xC0A9\t0x5B7A\n0xC0AA\t0x5C37\n0xC0AB\t0x5C68\n0xC0AC\t0x5DBC\n0xC0AD\t0x5DBA\n0xC0AE\t0x5DBD\n0xC0AF\t0x5DB8\n0xC0B0\t0x5E6B\n0xC0B1\t0x5F4C\n0xC0B2\t0x5FBD\n0xC0B3\t0x61C9\n0xC0B4\t0x61C2\n0xC0B5\t0x61C7\n0xC0B6\t0x61E6\n0xC0B7\t0x61CB\n0xC0B8\t0x6232\n0xC0B9\t0x6234\n0xC0BA\t0x64CE\n0xC0BB\t0x64CA\n0xC0BC\t0x64D8\n0xC0BD\t0x64E0\n0xC0BE\t0x64F0\n0xC0BF\t0x64E6\n0xC0C0\t0x64EC\n0xC0C1\t0x64F1\n0xC0C2\t0x64E2\n0xC0C3\t0x64ED\n0xC0C4\t0x6582\n0xC0C5\t0x6583\n0xC0C6\t0x66D9\n0xC0C7\t0x66D6\n0xC0C8\t0x6A80\n0xC0C9\t0x6A94\n0xC0CA\t0x6A84\n0xC0CB\t0x6AA2\n0xC0CC\t0x6A9C\n0xC0CD\t0x6ADB\n0xC0CE\t0x6AA3\n0xC0CF\t0x6A7E\n0xC0D0\t0x6A97\n0xC0D1\t0x6A90\n0xC0D2\t0x6AA0\n0xC0D3\t0x6B5C\n0xC0D4\t0x6BAE\n0xC0D5\t0x6BDA\n0xC0D6\t0x6C08\n0xC0D7\t0x6FD8\n0xC0D8\t0x6FF1\n0xC0D9\t0x6FDF\n0xC0DA\t0x6FE0\n0xC0DB\t0x6FDB\n0xC0DC\t0x6FE4\n0xC0DD\t0x6FEB\n0xC0DE\t0x6FEF\n0xC0DF\t0x6F80\n0xC0E0\t0x6FEC\n0xC0E1\t0x6FE1\n0xC0E2\t0x6FE9\n0xC0E3\t0x6FD5\n0xC0E4\t0x6FEE\n0xC0E5\t0x6FF0\n0xC0E6\t0x71E7\n0xC0E7\t0x71DF\n0xC0E8\t0x71EE\n0xC0E9\t0x71E6\n0xC0EA\t0x71E5\n0xC0EB\t0x71ED\n0xC0EC\t0x71EC\n0xC0ED\t0x71F4\n0xC0EE\t0x71E0\n0xC0EF\t0x7235\n0xC0F0\t0x7246\n0xC0F1\t0x7370\n0xC0F2\t0x7372\n0xC0F3\t0x74A9\n0xC0F4\t0x74B0\n0xC0F5\t0x74A6\n0xC0F6\t0x74A8\n0xC0F7\t0x7646\n0xC0F8\t0x7642\n0xC0F9\t0x764C\n0xC0FA\t0x76EA\n0xC0FB\t0x77B3\n0xC0FC\t0x77AA\n0xC0FD\t0x77B0\n0xC0FE\t0x77AC\n0xC140\t0x77A7\n0xC141\t0x77AD\n0xC142\t0x77EF\n0xC143\t0x78F7\n0xC144\t0x78FA\n0xC145\t0x78F4\n0xC146\t0x78EF\n0xC147\t0x7901\n0xC148\t0x79A7\n0xC149\t0x79AA\n0xC14A\t0x7A57\n0xC14B\t0x7ABF\n0xC14C\t0x7C07\n0xC14D\t0x7C0D\n0xC14E\t0x7BFE\n0xC14F\t0x7BF7\n0xC150\t0x7C0C\n0xC151\t0x7BE0\n0xC152\t0x7CE0\n0xC153\t0x7CDC\n0xC154\t0x7CDE\n0xC155\t0x7CE2\n0xC156\t0x7CDF\n0xC157\t0x7CD9\n0xC158\t0x7CDD\n0xC159\t0x7E2E\n0xC15A\t0x7E3E\n0xC15B\t0x7E46\n0xC15C\t0x7E37\n0xC15D\t0x7E32\n0xC15E\t0x7E43\n0xC15F\t0x7E2B\n0xC160\t0x7E3D\n0xC161\t0x7E31\n0xC162\t0x7E45\n0xC163\t0x7E41\n0xC164\t0x7E34\n0xC165\t0x7E39\n0xC166\t0x7E48\n0xC167\t0x7E35\n0xC168\t0x7E3F\n0xC169\t0x7E2F\n0xC16A\t0x7F44\n0xC16B\t0x7FF3\n0xC16C\t0x7FFC\n0xC16D\t0x8071\n0xC16E\t0x8072\n0xC16F\t0x8070\n0xC170\t0x806F\n0xC171\t0x8073\n0xC172\t0x81C6\n0xC173\t0x81C3\n0xC174\t0x81BA\n0xC175\t0x81C2\n0xC176\t0x81C0\n0xC177\t0x81BF\n0xC178\t0x81BD\n0xC179\t0x81C9\n0xC17A\t0x81BE\n0xC17B\t0x81E8\n0xC17C\t0x8209\n0xC17D\t0x8271\n0xC17E\t0x85AA\n0xC1A1\t0x8584\n0xC1A2\t0x857E\n0xC1A3\t0x859C\n0xC1A4\t0x8591\n0xC1A5\t0x8594\n0xC1A6\t0x85AF\n0xC1A7\t0x859B\n0xC1A8\t0x8587\n0xC1A9\t0x85A8\n0xC1AA\t0x858A\n0xC1AB\t0x8667\n0xC1AC\t0x87C0\n0xC1AD\t0x87D1\n0xC1AE\t0x87B3\n0xC1AF\t0x87D2\n0xC1B0\t0x87C6\n0xC1B1\t0x87AB\n0xC1B2\t0x87BB\n0xC1B3\t0x87BA\n0xC1B4\t0x87C8\n0xC1B5\t0x87CB\n0xC1B6\t0x893B\n0xC1B7\t0x8936\n0xC1B8\t0x8944\n0xC1B9\t0x8938\n0xC1BA\t0x893D\n0xC1BB\t0x89AC\n0xC1BC\t0x8B0E\n0xC1BD\t0x8B17\n0xC1BE\t0x8B19\n0xC1BF\t0x8B1B\n0xC1C0\t0x8B0A\n0xC1C1\t0x8B20\n0xC1C2\t0x8B1D\n0xC1C3\t0x8B04\n0xC1C4\t0x8B10\n0xC1C5\t0x8C41\n0xC1C6\t0x8C3F\n0xC1C7\t0x8C73\n0xC1C8\t0x8CFA\n0xC1C9\t0x8CFD\n0xC1CA\t0x8CFC\n0xC1CB\t0x8CF8\n0xC1CC\t0x8CFB\n0xC1CD\t0x8DA8\n0xC1CE\t0x8E49\n0xC1CF\t0x8E4B\n0xC1D0\t0x8E48\n0xC1D1\t0x8E4A\n0xC1D2\t0x8F44\n0xC1D3\t0x8F3E\n0xC1D4\t0x8F42\n0xC1D5\t0x8F45\n0xC1D6\t0x8F3F\n0xC1D7\t0x907F\n0xC1D8\t0x907D\n0xC1D9\t0x9084\n0xC1DA\t0x9081\n0xC1DB\t0x9082\n0xC1DC\t0x9080\n0xC1DD\t0x9139\n0xC1DE\t0x91A3\n0xC1DF\t0x919E\n0xC1E0\t0x919C\n0xC1E1\t0x934D\n0xC1E2\t0x9382\n0xC1E3\t0x9328\n0xC1E4\t0x9375\n0xC1E5\t0x934A\n0xC1E6\t0x9365\n0xC1E7\t0x934B\n0xC1E8\t0x9318\n0xC1E9\t0x937E\n0xC1EA\t0x936C\n0xC1EB\t0x935B\n0xC1EC\t0x9370\n0xC1ED\t0x935A\n0xC1EE\t0x9354\n0xC1EF\t0x95CA\n0xC1F0\t0x95CB\n0xC1F1\t0x95CC\n0xC1F2\t0x95C8\n0xC1F3\t0x95C6\n0xC1F4\t0x96B1\n0xC1F5\t0x96B8\n0xC1F6\t0x96D6\n0xC1F7\t0x971C\n0xC1F8\t0x971E\n0xC1F9\t0x97A0\n0xC1FA\t0x97D3\n0xC1FB\t0x9846\n0xC1FC\t0x98B6\n0xC1FD\t0x9935\n0xC1FE\t0x9A01\n0xC240\t0x99FF\n0xC241\t0x9BAE\n0xC242\t0x9BAB\n0xC243\t0x9BAA\n0xC244\t0x9BAD\n0xC245\t0x9D3B\n0xC246\t0x9D3F\n0xC247\t0x9E8B\n0xC248\t0x9ECF\n0xC249\t0x9EDE\n0xC24A\t0x9EDC\n0xC24B\t0x9EDD\n0xC24C\t0x9EDB\n0xC24D\t0x9F3E\n0xC24E\t0x9F4B\n0xC24F\t0x53E2\n0xC250\t0x5695\n0xC251\t0x56AE\n0xC252\t0x58D9\n0xC253\t0x58D8\n0xC254\t0x5B38\n0xC255\t0x5F5D\n0xC256\t0x61E3\n0xC257\t0x6233\n0xC258\t0x64F4\n0xC259\t0x64F2\n0xC25A\t0x64FE\n0xC25B\t0x6506\n0xC25C\t0x64FA\n0xC25D\t0x64FB\n0xC25E\t0x64F7\n0xC25F\t0x65B7\n0xC260\t0x66DC\n0xC261\t0x6726\n0xC262\t0x6AB3\n0xC263\t0x6AAC\n0xC264\t0x6AC3\n0xC265\t0x6ABB\n0xC266\t0x6AB8\n0xC267\t0x6AC2\n0xC268\t0x6AAE\n0xC269\t0x6AAF\n0xC26A\t0x6B5F\n0xC26B\t0x6B78\n0xC26C\t0x6BAF\n0xC26D\t0x7009\n0xC26E\t0x700B\n0xC26F\t0x6FFE\n0xC270\t0x7006\n0xC271\t0x6FFA\n0xC272\t0x7011\n0xC273\t0x700F\n0xC274\t0x71FB\n0xC275\t0x71FC\n0xC276\t0x71FE\n0xC277\t0x71F8\n0xC278\t0x7377\n0xC279\t0x7375\n0xC27A\t0x74A7\n0xC27B\t0x74BF\n0xC27C\t0x7515\n0xC27D\t0x7656\n0xC27E\t0x7658\n0xC2A1\t0x7652\n0xC2A2\t0x77BD\n0xC2A3\t0x77BF\n0xC2A4\t0x77BB\n0xC2A5\t0x77BC\n0xC2A6\t0x790E\n0xC2A7\t0x79AE\n0xC2A8\t0x7A61\n0xC2A9\t0x7A62\n0xC2AA\t0x7A60\n0xC2AB\t0x7AC4\n0xC2AC\t0x7AC5\n0xC2AD\t0x7C2B\n0xC2AE\t0x7C27\n0xC2AF\t0x7C2A\n0xC2B0\t0x7C1E\n0xC2B1\t0x7C23\n0xC2B2\t0x7C21\n0xC2B3\t0x7CE7\n0xC2B4\t0x7E54\n0xC2B5\t0x7E55\n0xC2B6\t0x7E5E\n0xC2B7\t0x7E5A\n0xC2B8\t0x7E61\n0xC2B9\t0x7E52\n0xC2BA\t0x7E59\n0xC2BB\t0x7F48\n0xC2BC\t0x7FF9\n0xC2BD\t0x7FFB\n0xC2BE\t0x8077\n0xC2BF\t0x8076\n0xC2C0\t0x81CD\n0xC2C1\t0x81CF\n0xC2C2\t0x820A\n0xC2C3\t0x85CF\n0xC2C4\t0x85A9\n0xC2C5\t0x85CD\n0xC2C6\t0x85D0\n0xC2C7\t0x85C9\n0xC2C8\t0x85B0\n0xC2C9\t0x85BA\n0xC2CA\t0x85B9\n0xC2CB\t0x85A6\n0xC2CC\t0x87EF\n0xC2CD\t0x87EC\n0xC2CE\t0x87F2\n0xC2CF\t0x87E0\n0xC2D0\t0x8986\n0xC2D1\t0x89B2\n0xC2D2\t0x89F4\n0xC2D3\t0x8B28\n0xC2D4\t0x8B39\n0xC2D5\t0x8B2C\n0xC2D6\t0x8B2B\n0xC2D7\t0x8C50\n0xC2D8\t0x8D05\n0xC2D9\t0x8E59\n0xC2DA\t0x8E63\n0xC2DB\t0x8E66\n0xC2DC\t0x8E64\n0xC2DD\t0x8E5F\n0xC2DE\t0x8E55\n0xC2DF\t0x8EC0\n0xC2E0\t0x8F49\n0xC2E1\t0x8F4D\n0xC2E2\t0x9087\n0xC2E3\t0x9083\n0xC2E4\t0x9088\n0xC2E5\t0x91AB\n0xC2E6\t0x91AC\n0xC2E7\t0x91D0\n0xC2E8\t0x9394\n0xC2E9\t0x938A\n0xC2EA\t0x9396\n0xC2EB\t0x93A2\n0xC2EC\t0x93B3\n0xC2ED\t0x93AE\n0xC2EE\t0x93AC\n0xC2EF\t0x93B0\n0xC2F0\t0x9398\n0xC2F1\t0x939A\n0xC2F2\t0x9397\n0xC2F3\t0x95D4\n0xC2F4\t0x95D6\n0xC2F5\t0x95D0\n0xC2F6\t0x95D5\n0xC2F7\t0x96E2\n0xC2F8\t0x96DC\n0xC2F9\t0x96D9\n0xC2FA\t0x96DB\n0xC2FB\t0x96DE\n0xC2FC\t0x9724\n0xC2FD\t0x97A3\n0xC2FE\t0x97A6\n0xC340\t0x97AD\n0xC341\t0x97F9\n0xC342\t0x984D\n0xC343\t0x984F\n0xC344\t0x984C\n0xC345\t0x984E\n0xC346\t0x9853\n0xC347\t0x98BA\n0xC348\t0x993E\n0xC349\t0x993F\n0xC34A\t0x993D\n0xC34B\t0x992E\n0xC34C\t0x99A5\n0xC34D\t0x9A0E\n0xC34E\t0x9AC1\n0xC34F\t0x9B03\n0xC350\t0x9B06\n0xC351\t0x9B4F\n0xC352\t0x9B4E\n0xC353\t0x9B4D\n0xC354\t0x9BCA\n0xC355\t0x9BC9\n0xC356\t0x9BFD\n0xC357\t0x9BC8\n0xC358\t0x9BC0\n0xC359\t0x9D51\n0xC35A\t0x9D5D\n0xC35B\t0x9D60\n0xC35C\t0x9EE0\n0xC35D\t0x9F15\n0xC35E\t0x9F2C\n0xC35F\t0x5133\n0xC360\t0x56A5\n0xC361\t0x58DE\n0xC362\t0x58DF\n0xC363\t0x58E2\n0xC364\t0x5BF5\n0xC365\t0x9F90\n0xC366\t0x5EEC\n0xC367\t0x61F2\n0xC368\t0x61F7\n0xC369\t0x61F6\n0xC36A\t0x61F5\n0xC36B\t0x6500\n0xC36C\t0x650F\n0xC36D\t0x66E0\n0xC36E\t0x66DD\n0xC36F\t0x6AE5\n0xC370\t0x6ADD\n0xC371\t0x6ADA\n0xC372\t0x6AD3\n0xC373\t0x701B\n0xC374\t0x701F\n0xC375\t0x7028\n0xC376\t0x701A\n0xC377\t0x701D\n0xC378\t0x7015\n0xC379\t0x7018\n0xC37A\t0x7206\n0xC37B\t0x720D\n0xC37C\t0x7258\n0xC37D\t0x72A2\n0xC37E\t0x7378\n0xC3A1\t0x737A\n0xC3A2\t0x74BD\n0xC3A3\t0x74CA\n0xC3A4\t0x74E3\n0xC3A5\t0x7587\n0xC3A6\t0x7586\n0xC3A7\t0x765F\n0xC3A8\t0x7661\n0xC3A9\t0x77C7\n0xC3AA\t0x7919\n0xC3AB\t0x79B1\n0xC3AC\t0x7A6B\n0xC3AD\t0x7A69\n0xC3AE\t0x7C3E\n0xC3AF\t0x7C3F\n0xC3B0\t0x7C38\n0xC3B1\t0x7C3D\n0xC3B2\t0x7C37\n0xC3B3\t0x7C40\n0xC3B4\t0x7E6B\n0xC3B5\t0x7E6D\n0xC3B6\t0x7E79\n0xC3B7\t0x7E69\n0xC3B8\t0x7E6A\n0xC3B9\t0x7F85\n0xC3BA\t0x7E73\n0xC3BB\t0x7FB6\n0xC3BC\t0x7FB9\n0xC3BD\t0x7FB8\n0xC3BE\t0x81D8\n0xC3BF\t0x85E9\n0xC3C0\t0x85DD\n0xC3C1\t0x85EA\n0xC3C2\t0x85D5\n0xC3C3\t0x85E4\n0xC3C4\t0x85E5\n0xC3C5\t0x85F7\n0xC3C6\t0x87FB\n0xC3C7\t0x8805\n0xC3C8\t0x880D\n0xC3C9\t0x87F9\n0xC3CA\t0x87FE\n0xC3CB\t0x8960\n0xC3CC\t0x895F\n0xC3CD\t0x8956\n0xC3CE\t0x895E\n0xC3CF\t0x8B41\n0xC3D0\t0x8B5C\n0xC3D1\t0x8B58\n0xC3D2\t0x8B49\n0xC3D3\t0x8B5A\n0xC3D4\t0x8B4E\n0xC3D5\t0x8B4F\n0xC3D6\t0x8B46\n0xC3D7\t0x8B59\n0xC3D8\t0x8D08\n0xC3D9\t0x8D0A\n0xC3DA\t0x8E7C\n0xC3DB\t0x8E72\n0xC3DC\t0x8E87\n0xC3DD\t0x8E76\n0xC3DE\t0x8E6C\n0xC3DF\t0x8E7A\n0xC3E0\t0x8E74\n0xC3E1\t0x8F54\n0xC3E2\t0x8F4E\n0xC3E3\t0x8FAD\n0xC3E4\t0x908A\n0xC3E5\t0x908B\n0xC3E6\t0x91B1\n0xC3E7\t0x91AE\n0xC3E8\t0x93E1\n0xC3E9\t0x93D1\n0xC3EA\t0x93DF\n0xC3EB\t0x93C3\n0xC3EC\t0x93C8\n0xC3ED\t0x93DC\n0xC3EE\t0x93DD\n0xC3EF\t0x93D6\n0xC3F0\t0x93E2\n0xC3F1\t0x93CD\n0xC3F2\t0x93D8\n0xC3F3\t0x93E4\n0xC3F4\t0x93D7\n0xC3F5\t0x93E8\n0xC3F6\t0x95DC\n0xC3F7\t0x96B4\n0xC3F8\t0x96E3\n0xC3F9\t0x972A\n0xC3FA\t0x9727\n0xC3FB\t0x9761\n0xC3FC\t0x97DC\n0xC3FD\t0x97FB\n0xC3FE\t0x985E\n0xC440\t0x9858\n0xC441\t0x985B\n0xC442\t0x98BC\n0xC443\t0x9945\n0xC444\t0x9949\n0xC445\t0x9A16\n0xC446\t0x9A19\n0xC447\t0x9B0D\n0xC448\t0x9BE8\n0xC449\t0x9BE7\n0xC44A\t0x9BD6\n0xC44B\t0x9BDB\n0xC44C\t0x9D89\n0xC44D\t0x9D61\n0xC44E\t0x9D72\n0xC44F\t0x9D6A\n0xC450\t0x9D6C\n0xC451\t0x9E92\n0xC452\t0x9E97\n0xC453\t0x9E93\n0xC454\t0x9EB4\n0xC455\t0x52F8\n0xC456\t0x56A8\n0xC457\t0x56B7\n0xC458\t0x56B6\n0xC459\t0x56B4\n0xC45A\t0x56BC\n0xC45B\t0x58E4\n0xC45C\t0x5B40\n0xC45D\t0x5B43\n0xC45E\t0x5B7D\n0xC45F\t0x5BF6\n0xC460\t0x5DC9\n0xC461\t0x61F8\n0xC462\t0x61FA\n0xC463\t0x6518\n0xC464\t0x6514\n0xC465\t0x6519\n0xC466\t0x66E6\n0xC467\t0x6727\n0xC468\t0x6AEC\n0xC469\t0x703E\n0xC46A\t0x7030\n0xC46B\t0x7032\n0xC46C\t0x7210\n0xC46D\t0x737B\n0xC46E\t0x74CF\n0xC46F\t0x7662\n0xC470\t0x7665\n0xC471\t0x7926\n0xC472\t0x792A\n0xC473\t0x792C\n0xC474\t0x792B\n0xC475\t0x7AC7\n0xC476\t0x7AF6\n0xC477\t0x7C4C\n0xC478\t0x7C43\n0xC479\t0x7C4D\n0xC47A\t0x7CEF\n0xC47B\t0x7CF0\n0xC47C\t0x8FAE\n0xC47D\t0x7E7D\n0xC47E\t0x7E7C\n0xC4A1\t0x7E82\n0xC4A2\t0x7F4C\n0xC4A3\t0x8000\n0xC4A4\t0x81DA\n0xC4A5\t0x8266\n0xC4A6\t0x85FB\n0xC4A7\t0x85F9\n0xC4A8\t0x8611\n0xC4A9\t0x85FA\n0xC4AA\t0x8606\n0xC4AB\t0x860B\n0xC4AC\t0x8607\n0xC4AD\t0x860A\n0xC4AE\t0x8814\n0xC4AF\t0x8815\n0xC4B0\t0x8964\n0xC4B1\t0x89BA\n0xC4B2\t0x89F8\n0xC4B3\t0x8B70\n0xC4B4\t0x8B6C\n0xC4B5\t0x8B66\n0xC4B6\t0x8B6F\n0xC4B7\t0x8B5F\n0xC4B8\t0x8B6B\n0xC4B9\t0x8D0F\n0xC4BA\t0x8D0D\n0xC4BB\t0x8E89\n0xC4BC\t0x8E81\n0xC4BD\t0x8E85\n0xC4BE\t0x8E82\n0xC4BF\t0x91B4\n0xC4C0\t0x91CB\n0xC4C1\t0x9418\n0xC4C2\t0x9403\n0xC4C3\t0x93FD\n0xC4C4\t0x95E1\n0xC4C5\t0x9730\n0xC4C6\t0x98C4\n0xC4C7\t0x9952\n0xC4C8\t0x9951\n0xC4C9\t0x99A8\n0xC4CA\t0x9A2B\n0xC4CB\t0x9A30\n0xC4CC\t0x9A37\n0xC4CD\t0x9A35\n0xC4CE\t0x9C13\n0xC4CF\t0x9C0D\n0xC4D0\t0x9E79\n0xC4D1\t0x9EB5\n0xC4D2\t0x9EE8\n0xC4D3\t0x9F2F\n0xC4D4\t0x9F5F\n0xC4D5\t0x9F63\n0xC4D6\t0x9F61\n0xC4D7\t0x5137\n0xC4D8\t0x5138\n0xC4D9\t0x56C1\n0xC4DA\t0x56C0\n0xC4DB\t0x56C2\n0xC4DC\t0x5914\n0xC4DD\t0x5C6C\n0xC4DE\t0x5DCD\n0xC4DF\t0x61FC\n0xC4E0\t0x61FE\n0xC4E1\t0x651D\n0xC4E2\t0x651C\n0xC4E3\t0x6595\n0xC4E4\t0x66E9\n0xC4E5\t0x6AFB\n0xC4E6\t0x6B04\n0xC4E7\t0x6AFA\n0xC4E8\t0x6BB2\n0xC4E9\t0x704C\n0xC4EA\t0x721B\n0xC4EB\t0x72A7\n0xC4EC\t0x74D6\n0xC4ED\t0x74D4\n0xC4EE\t0x7669\n0xC4EF\t0x77D3\n0xC4F0\t0x7C50\n0xC4F1\t0x7E8F\n0xC4F2\t0x7E8C\n0xC4F3\t0x7FBC\n0xC4F4\t0x8617\n0xC4F5\t0x862D\n0xC4F6\t0x861A\n0xC4F7\t0x8823\n0xC4F8\t0x8822\n0xC4F9\t0x8821\n0xC4FA\t0x881F\n0xC4FB\t0x896A\n0xC4FC\t0x896C\n0xC4FD\t0x89BD\n0xC4FE\t0x8B74\n0xC540\t0x8B77\n0xC541\t0x8B7D\n0xC542\t0x8D13\n0xC543\t0x8E8A\n0xC544\t0x8E8D\n0xC545\t0x8E8B\n0xC546\t0x8F5F\n0xC547\t0x8FAF\n0xC548\t0x91BA\n0xC549\t0x942E\n0xC54A\t0x9433\n0xC54B\t0x9435\n0xC54C\t0x943A\n0xC54D\t0x9438\n0xC54E\t0x9432\n0xC54F\t0x942B\n0xC550\t0x95E2\n0xC551\t0x9738\n0xC552\t0x9739\n0xC553\t0x9732\n0xC554\t0x97FF\n0xC555\t0x9867\n0xC556\t0x9865\n0xC557\t0x9957\n0xC558\t0x9A45\n0xC559\t0x9A43\n0xC55A\t0x9A40\n0xC55B\t0x9A3E\n0xC55C\t0x9ACF\n0xC55D\t0x9B54\n0xC55E\t0x9B51\n0xC55F\t0x9C2D\n0xC560\t0x9C25\n0xC561\t0x9DAF\n0xC562\t0x9DB4\n0xC563\t0x9DC2\n0xC564\t0x9DB8\n0xC565\t0x9E9D\n0xC566\t0x9EEF\n0xC567\t0x9F19\n0xC568\t0x9F5C\n0xC569\t0x9F66\n0xC56A\t0x9F67\n0xC56B\t0x513C\n0xC56C\t0x513B\n0xC56D\t0x56C8\n0xC56E\t0x56CA\n0xC56F\t0x56C9\n0xC570\t0x5B7F\n0xC571\t0x5DD4\n0xC572\t0x5DD2\n0xC573\t0x5F4E\n0xC574\t0x61FF\n0xC575\t0x6524\n0xC576\t0x6B0A\n0xC577\t0x6B61\n0xC578\t0x7051\n0xC579\t0x7058\n0xC57A\t0x7380\n0xC57B\t0x74E4\n0xC57C\t0x758A\n0xC57D\t0x766E\n0xC57E\t0x766C\n0xC5A1\t0x79B3\n0xC5A2\t0x7C60\n0xC5A3\t0x7C5F\n0xC5A4\t0x807E\n0xC5A5\t0x807D\n0xC5A6\t0x81DF\n0xC5A7\t0x8972\n0xC5A8\t0x896F\n0xC5A9\t0x89FC\n0xC5AA\t0x8B80\n0xC5AB\t0x8D16\n0xC5AC\t0x8D17\n0xC5AD\t0x8E91\n0xC5AE\t0x8E93\n0xC5AF\t0x8F61\n0xC5B0\t0x9148\n0xC5B1\t0x9444\n0xC5B2\t0x9451\n0xC5B3\t0x9452\n0xC5B4\t0x973D\n0xC5B5\t0x973E\n0xC5B6\t0x97C3\n0xC5B7\t0x97C1\n0xC5B8\t0x986B\n0xC5B9\t0x9955\n0xC5BA\t0x9A55\n0xC5BB\t0x9A4D\n0xC5BC\t0x9AD2\n0xC5BD\t0x9B1A\n0xC5BE\t0x9C49\n0xC5BF\t0x9C31\n0xC5C0\t0x9C3E\n0xC5C1\t0x9C3B\n0xC5C2\t0x9DD3\n0xC5C3\t0x9DD7\n0xC5C4\t0x9F34\n0xC5C5\t0x9F6C\n0xC5C6\t0x9F6A\n0xC5C7\t0x9F94\n0xC5C8\t0x56CC\n0xC5C9\t0x5DD6\n0xC5CA\t0x6200\n0xC5CB\t0x6523\n0xC5CC\t0x652B\n0xC5CD\t0x652A\n0xC5CE\t0x66EC\n0xC5CF\t0x6B10\n0xC5D0\t0x74DA\n0xC5D1\t0x7ACA\n0xC5D2\t0x7C64\n0xC5D3\t0x7C63\n0xC5D4\t0x7C65\n0xC5D5\t0x7E93\n0xC5D6\t0x7E96\n0xC5D7\t0x7E94\n0xC5D8\t0x81E2\n0xC5D9\t0x8638\n0xC5DA\t0x863F\n0xC5DB\t0x8831\n0xC5DC\t0x8B8A\n0xC5DD\t0x9090\n0xC5DE\t0x908F\n0xC5DF\t0x9463\n0xC5E0\t0x9460\n0xC5E1\t0x9464\n0xC5E2\t0x9768\n0xC5E3\t0x986F\n0xC5E4\t0x995C\n0xC5E5\t0x9A5A\n0xC5E6\t0x9A5B\n0xC5E7\t0x9A57\n0xC5E8\t0x9AD3\n0xC5E9\t0x9AD4\n0xC5EA\t0x9AD1\n0xC5EB\t0x9C54\n0xC5EC\t0x9C57\n0xC5ED\t0x9C56\n0xC5EE\t0x9DE5\n0xC5EF\t0x9E9F\n0xC5F0\t0x9EF4\n0xC5F1\t0x56D1\n0xC5F2\t0x58E9\n0xC5F3\t0x652C\n0xC5F4\t0x705E\n0xC5F5\t0x7671\n0xC5F6\t0x7672\n0xC5F7\t0x77D7\n0xC5F8\t0x7F50\n0xC5F9\t0x7F88\n0xC5FA\t0x8836\n0xC5FB\t0x8839\n0xC5FC\t0x8862\n0xC5FD\t0x8B93\n0xC5FE\t0x8B92\n0xC640\t0x8B96\n0xC641\t0x8277\n0xC642\t0x8D1B\n0xC643\t0x91C0\n0xC644\t0x946A\n0xC645\t0x9742\n0xC646\t0x9748\n0xC647\t0x9744\n0xC648\t0x97C6\n0xC649\t0x9870\n0xC64A\t0x9A5F\n0xC64B\t0x9B22\n0xC64C\t0x9B58\n0xC64D\t0x9C5F\n0xC64E\t0x9DF9\n0xC64F\t0x9DFA\n0xC650\t0x9E7C\n0xC651\t0x9E7D\n0xC652\t0x9F07\n0xC653\t0x9F77\n0xC654\t0x9F72\n0xC655\t0x5EF3\n0xC656\t0x6B16\n0xC657\t0x7063\n0xC658\t0x7C6C\n0xC659\t0x7C6E\n0xC65A\t0x883B\n0xC65B\t0x89C0\n0xC65C\t0x8EA1\n0xC65D\t0x91C1\n0xC65E\t0x9472\n0xC65F\t0x9470\n0xC660\t0x9871\n0xC661\t0x995E\n0xC662\t0x9AD6\n0xC663\t0x9B23\n0xC664\t0x9ECC\n0xC665\t0x7064\n0xC666\t0x77DA\n0xC667\t0x8B9A\n0xC668\t0x9477\n0xC669\t0x97C9\n0xC66A\t0x9A62\n0xC66B\t0x9A65\n0xC66C\t0x7E9C\n0xC66D\t0x8B9C\n0xC66E\t0x8EAA\n0xC66F\t0x91C5\n0xC670\t0x947D\n0xC671\t0x947E\n0xC672\t0x947C\n0xC673\t0x9C77\n0xC674\t0x9C78\n0xC675\t0x9EF7\n0xC676\t0x8C54\n0xC677\t0x947F\n0xC678\t0x9E1A\n0xC679\t0x7228\n0xC67A\t0x9A6A\n0xC67B\t0x9B31\n0xC67C\t0x9E1B\n0xC67D\t0x9E1E\n0xC67E\t0x7C72\n0xC6A1\t0x2460\n0xC6A2\t0x2461\n0xC6A3\t0x2462\n0xC6A4\t0x2463\n0xC6A5\t0x2464\n0xC6A6\t0x2465\n0xC6A7\t0x2466\n0xC6A8\t0x2467\n0xC6A9\t0x2468\n0xC6AA\t0x2469\n0xC6AB\t0x2474\n0xC6AC\t0x2475\n0xC6AD\t0x2476\n0xC6AE\t0x2477\n0xC6AF\t0x2478\n0xC6B0\t0x2479\n0xC6B1\t0x247A\n0xC6B2\t0x247B\n0xC6B3\t0x247C\n0xC6B4\t0x247D\n0xC6B5\t0x2170\n0xC6B6\t0x2171\n0xC6B7\t0x2172\n0xC6B8\t0x2173\n0xC6B9\t0x2174\n0xC6BA\t0x2175\n0xC6BB\t0x2176\n0xC6BC\t0x2177\n0xC6BD\t0x2178\n0xC6BE\t0x2179\n0xC6BF\t0x4E36\n0xC6C0\t0x4E3F\n0xC6C1\t0x4E85\n0xC6C2\t0x4EA0\n0xC6C3\t0x5182\n0xC6C4\t0x5196\n0xC6C5\t0x51AB\n0xC6C6\t0x52F9\n0xC6C7\t0x5338\n0xC6C8\t0x5369\n0xC6C9\t0x53B6\n0xC6CA\t0x590A\n0xC6CB\t0x5B80\n0xC6CC\t0x5DDB\n0xC6CD\t0x2F33\n0xC6CE\t0x5E7F\n0xC6D0\t0x5F50\n0xC6D1\t0x5F61\n0xC6D2\t0x6534\n0xC6D4\t0x7592\n0xC6D6\t0x8FB5\n0xC6D8\t0x00A8\n0xC6D9\t0x02C6\n0xC6DA\t0x30FD\n0xC6DB\t0x30FE\n0xC6DC\t0x309D\n0xC6DD\t0x309E\n0xC6E0\t0x3005\n0xC6E1\t0x3006\n0xC6E2\t0x3007\n0xC6E3\t0x30FC\n0xC6E4\t0xFF3B\n0xC6E5\t0xFF3D\n0xC6E6\t0x273D\n0xC6E7\t0x3041\n0xC6E8\t0x3042\n0xC6E9\t0x3043\n0xC6EA\t0x3044\n0xC6EB\t0x3045\n0xC6EC\t0x3046\n0xC6ED\t0x3047\n0xC6EE\t0x3048\n0xC6EF\t0x3049\n0xC6F0\t0x304A\n0xC6F1\t0x304B\n0xC6F2\t0x304C\n0xC6F3\t0x304D\n0xC6F4\t0x304E\n0xC6F5\t0x304F\n0xC6F6\t0x3050\n0xC6F7\t0x3051\n0xC6F8\t0x3052\n0xC6F9\t0x3053\n0xC6FA\t0x3054\n0xC6FB\t0x3055\n0xC6FC\t0x3056\n0xC6FD\t0x3057\n0xC6FE\t0x3058\n0xC740\t0x3059\n0xC741\t0x305A\n0xC742\t0x305B\n0xC743\t0x305C\n0xC744\t0x305D\n0xC745\t0x305E\n0xC746\t0x305F\n0xC747\t0x3060\n0xC748\t0x3061\n0xC749\t0x3062\n0xC74A\t0x3063\n0xC74B\t0x3064\n0xC74C\t0x3065\n0xC74D\t0x3066\n0xC74E\t0x3067\n0xC74F\t0x3068\n0xC750\t0x3069\n0xC751\t0x306A\n0xC752\t0x306B\n0xC753\t0x306C\n0xC754\t0x306D\n0xC755\t0x306E\n0xC756\t0x306F\n0xC757\t0x3070\n0xC758\t0x3071\n0xC759\t0x3072\n0xC75A\t0x3073\n0xC75B\t0x3074\n0xC75C\t0x3075\n0xC75D\t0x3076\n0xC75E\t0x3077\n0xC75F\t0x3078\n0xC760\t0x3079\n0xC761\t0x307A\n0xC762\t0x307B\n0xC763\t0x307C\n0xC764\t0x307D\n0xC765\t0x307E\n0xC766\t0x307F\n0xC767\t0x3080\n0xC768\t0x3081\n0xC769\t0x3082\n0xC76A\t0x3083\n0xC76B\t0x3084\n0xC76C\t0x3085\n0xC76D\t0x3086\n0xC76E\t0x3087\n0xC76F\t0x3088\n0xC770\t0x3089\n0xC771\t0x308A\n0xC772\t0x308B\n0xC773\t0x308C\n0xC774\t0x308D\n0xC775\t0x308E\n0xC776\t0x308F\n0xC777\t0x3090\n0xC778\t0x3091\n0xC779\t0x3092\n0xC77A\t0x3093\n0xC77B\t0x30A1\n0xC77C\t0x30A2\n0xC77D\t0x30A3\n0xC77E\t0x30A4\n0xC7A1\t0x30A5\n0xC7A2\t0x30A6\n0xC7A3\t0x30A7\n0xC7A4\t0x30A8\n0xC7A5\t0x30A9\n0xC7A6\t0x30AA\n0xC7A7\t0x30AB\n0xC7A8\t0x30AC\n0xC7A9\t0x30AD\n0xC7AA\t0x30AE\n0xC7AB\t0x30AF\n0xC7AC\t0x30B0\n0xC7AD\t0x30B1\n0xC7AE\t0x30B2\n0xC7AF\t0x30B3\n0xC7B0\t0x30B4\n0xC7B1\t0x30B5\n0xC7B2\t0x30B6\n0xC7B3\t0x30B7\n0xC7B4\t0x30B8\n0xC7B5\t0x30B9\n0xC7B6\t0x30BA\n0xC7B7\t0x30BB\n0xC7B8\t0x30BC\n0xC7B9\t0x30BD\n0xC7BA\t0x30BE\n0xC7BB\t0x30BF\n0xC7BC\t0x30C0\n0xC7BD\t0x30C1\n0xC7BE\t0x30C2\n0xC7BF\t0x30C3\n0xC7C0\t0x30C4\n0xC7C1\t0x30C5\n0xC7C2\t0x30C6\n0xC7C3\t0x30C7\n0xC7C4\t0x30C8\n0xC7C5\t0x30C9\n0xC7C6\t0x30CA\n0xC7C7\t0x30CB\n0xC7C8\t0x30CC\n0xC7C9\t0x30CD\n0xC7CA\t0x30CE\n0xC7CB\t0x30CF\n0xC7CC\t0x30D0\n0xC7CD\t0x30D1\n0xC7CE\t0x30D2\n0xC7CF\t0x30D3\n0xC7D0\t0x30D4\n0xC7D1\t0x30D5\n0xC7D2\t0x30D6\n0xC7D3\t0x30D7\n0xC7D4\t0x30D8\n0xC7D5\t0x30D9\n0xC7D6\t0x30DA\n0xC7D7\t0x30DB\n0xC7D8\t0x30DC\n0xC7D9\t0x30DD\n0xC7DA\t0x30DE\n0xC7DB\t0x30DF\n0xC7DC\t0x30E0\n0xC7DD\t0x30E1\n0xC7DE\t0x30E2\n0xC7DF\t0x30E3\n0xC7E0\t0x30E4\n0xC7E1\t0x30E5\n0xC7E2\t0x30E6\n0xC7E3\t0x30E7\n0xC7E4\t0x30E8\n0xC7E5\t0x30E9\n0xC7E6\t0x30EA\n0xC7E7\t0x30EB\n0xC7E8\t0x30EC\n0xC7E9\t0x30ED\n0xC7EA\t0x30EE\n0xC7EB\t0x30EF\n0xC7EC\t0x30F0\n0xC7ED\t0x30F1\n0xC7EE\t0x30F2\n0xC7EF\t0x30F3\n0xC7F0\t0x30F4\n0xC7F1\t0x30F5\n0xC7F2\t0x30F6\n0xC7F3\t0x0410\n0xC7F4\t0x0411\n0xC7F5\t0x0412\n0xC7F6\t0x0413\n0xC7F7\t0x0414\n0xC7F8\t0x0415\n0xC7F9\t0x0401\n0xC7FA\t0x0416\n0xC7FB\t0x0417\n0xC7FC\t0x0418\n0xC7FD\t0x0419\n0xC7FE\t0x041A\n0xC840\t0x041B\n0xC841\t0x041C\n0xC842\t0x041D\n0xC843\t0x041E\n0xC844\t0x041F\n0xC845\t0x0420\n0xC846\t0x0421\n0xC847\t0x0422\n0xC848\t0x0423\n0xC849\t0x0424\n0xC84A\t0x0425\n0xC84B\t0x0426\n0xC84C\t0x0427\n0xC84D\t0x0428\n0xC84E\t0x0429\n0xC84F\t0x042A\n0xC850\t0x042B\n0xC851\t0x042C\n0xC852\t0x042D\n0xC853\t0x042E\n0xC854\t0x042F\n0xC855\t0x0430\n0xC856\t0x0431\n0xC857\t0x0432\n0xC858\t0x0433\n0xC859\t0x0434\n0xC85A\t0x0435\n0xC85B\t0x0451\n0xC85C\t0x0436\n0xC85D\t0x0437\n0xC85E\t0x0438\n0xC85F\t0x0439\n0xC860\t0x043A\n0xC861\t0x043B\n0xC862\t0x043C\n0xC863\t0x043D\n0xC864\t0x043E\n0xC865\t0x043F\n0xC866\t0x0440\n0xC867\t0x0441\n0xC868\t0x0442\n0xC869\t0x0443\n0xC86A\t0x0444\n0xC86B\t0x0445\n0xC86C\t0x0446\n0xC86D\t0x0447\n0xC86E\t0x0448\n0xC86F\t0x0449\n0xC870\t0x044A\n0xC871\t0x044B\n0xC872\t0x044C\n0xC873\t0x044D\n0xC874\t0x044E\n0xC875\t0x044F\n0xC876\t0x21E7\n0xC877\t0x21B8\n0xC878\t0x21B9\n0xC879\t0x31CF\n0xC87A\t0x200CC\n0xC87B\t0x4E5A\n0xC87C\t0x2008A\n0xC87D\t0x5202\n0xC87E\t0x4491\n0xC8A1\t0x9FB0\n0xC8A2\t0x5188\n0xC8A3\t0x9FB1\n0xC8A4\t0x27607\n0xC8CD\t0xFFE2\n0xC8CE\t0xFFE4\n0xC8CF\t0xFF07\n0xC8D0\t0xFF02\n0xC8D1\t0x3231\n0xC8D2\t0x2116\n0xC8D3\t0x2121\n0xC8D4\t0x309B\n0xC8D5\t0x309C\n0xC8D6\t0x2E80\n0xC8D7\t0x2E84\n0xC8D8\t0x2E86\n0xC8D9\t0x2E87\n0xC8DA\t0x2E88\n0xC8DB\t0x2E8A\n0xC8DC\t0x2E8C\n0xC8DD\t0x2E8D\n0xC8DE\t0x2E95\n0xC8DF\t0x2E9C\n0xC8E0\t0x2E9D\n0xC8E1\t0x2EA5\n0xC8E2\t0x2EA7\n0xC8E3\t0x2EAA\n0xC8E4\t0x2EAC\n0xC8E5\t0x2EAE\n0xC8E6\t0x2EB6\n0xC8E7\t0x2EBC\n0xC8E8\t0x2EBE\n0xC8E9\t0x2EC6\n0xC8EA\t0x2ECA\n0xC8EB\t0x2ECC\n0xC8EC\t0x2ECD\n0xC8ED\t0x2ECF\n0xC8EE\t0x2ED6\n0xC8EF\t0x2ED7\n0xC8F0\t0x2EDE\n0xC8F1\t0x2EE3\n0xC8F5\t0x0283\n0xC8F6\t0x0250\n0xC8F7\t0x025B\n0xC8F8\t0x0254\n0xC8F9\t0x0275\n0xC8FA\t0x0153\n0xC8FB\t0x00F8\n0xC8FC\t0x014B\n0xC8FD\t0x028A\n0xC8FE\t0x026A\n0xC940\t0x4E42\n0xC941\t0x4E5C\n0xC942\t0x51F5\n0xC943\t0x531A\n0xC944\t0x5382\n0xC945\t0x4E07\n0xC946\t0x4E0C\n0xC947\t0x4E47\n0xC948\t0x4E8D\n0xC949\t0x56D7\n0xC94A\t0xFA0C\n0xC94B\t0x5C6E\n0xC94C\t0x5F73\n0xC94D\t0x4E0F\n0xC94E\t0x5187\n0xC94F\t0x4E0E\n0xC950\t0x4E2E\n0xC951\t0x4E93\n0xC952\t0x4EC2\n0xC953\t0x4EC9\n0xC954\t0x4EC8\n0xC955\t0x5198\n0xC956\t0x52FC\n0xC957\t0x536C\n0xC958\t0x53B9\n0xC959\t0x5720\n0xC95A\t0x5903\n0xC95B\t0x592C\n0xC95C\t0x5C10\n0xC95D\t0x5DFF\n0xC95E\t0x65E1\n0xC95F\t0x6BB3\n0xC960\t0x6BCC\n0xC961\t0x6C14\n0xC962\t0x723F\n0xC963\t0x4E31\n0xC964\t0x4E3C\n0xC965\t0x4EE8\n0xC966\t0x4EDC\n0xC967\t0x4EE9\n0xC968\t0x4EE1\n0xC969\t0x4EDD\n0xC96A\t0x4EDA\n0xC96B\t0x520C\n0xC96C\t0x531C\n0xC96D\t0x534C\n0xC96E\t0x5722\n0xC96F\t0x5723\n0xC970\t0x5917\n0xC971\t0x592F\n0xC972\t0x5B81\n0xC973\t0x5B84\n0xC974\t0x5C12\n0xC975\t0x5C3B\n0xC976\t0x5C74\n0xC977\t0x5C73\n0xC978\t0x5E04\n0xC979\t0x5E80\n0xC97A\t0x5E82\n0xC97B\t0x5FC9\n0xC97C\t0x6209\n0xC97D\t0x6250\n0xC97E\t0x6C15\n0xC9A1\t0x6C36\n0xC9A2\t0x6C43\n0xC9A3\t0x6C3F\n0xC9A4\t0x6C3B\n0xC9A5\t0x72AE\n0xC9A6\t0x72B0\n0xC9A7\t0x738A\n0xC9A8\t0x79B8\n0xC9A9\t0x808A\n0xC9AA\t0x961E\n0xC9AB\t0x4F0E\n0xC9AC\t0x4F18\n0xC9AD\t0x4F2C\n0xC9AE\t0x4EF5\n0xC9AF\t0x4F14\n0xC9B0\t0x4EF1\n0xC9B1\t0x4F00\n0xC9B2\t0x4EF7\n0xC9B3\t0x4F08\n0xC9B4\t0x4F1D\n0xC9B5\t0x4F02\n0xC9B6\t0x4F05\n0xC9B7\t0x4F22\n0xC9B8\t0x4F13\n0xC9B9\t0x4F04\n0xC9BA\t0x4EF4\n0xC9BB\t0x4F12\n0xC9BC\t0x51B1\n0xC9BD\t0x5213\n0xC9BE\t0x5209\n0xC9BF\t0x5210\n0xC9C0\t0x52A6\n0xC9C1\t0x5322\n0xC9C2\t0x531F\n0xC9C3\t0x534D\n0xC9C4\t0x538A\n0xC9C5\t0x5407\n0xC9C6\t0x56E1\n0xC9C7\t0x56DF\n0xC9C8\t0x572E\n0xC9C9\t0x572A\n0xC9CA\t0x5734\n0xC9CB\t0x593C\n0xC9CC\t0x5980\n0xC9CD\t0x597C\n0xC9CE\t0x5985\n0xC9CF\t0x597B\n0xC9D0\t0x597E\n0xC9D1\t0x5977\n0xC9D2\t0x597F\n0xC9D3\t0x5B56\n0xC9D4\t0x5C15\n0xC9D5\t0x5C25\n0xC9D6\t0x5C7C\n0xC9D7\t0x5C7A\n0xC9D8\t0x5C7B\n0xC9D9\t0x5C7E\n0xC9DA\t0x5DDF\n0xC9DB\t0x5E75\n0xC9DC\t0x5E84\n0xC9DD\t0x5F02\n0xC9DE\t0x5F1A\n0xC9DF\t0x5F74\n0xC9E0\t0x5FD5\n0xC9E1\t0x5FD4\n0xC9E2\t0x5FCF\n0xC9E3\t0x625C\n0xC9E4\t0x625E\n0xC9E5\t0x6264\n0xC9E6\t0x6261\n0xC9E7\t0x6266\n0xC9E8\t0x6262\n0xC9E9\t0x6259\n0xC9EA\t0x6260\n0xC9EB\t0x625A\n0xC9EC\t0x6265\n0xC9ED\t0x65EF\n0xC9EE\t0x65EE\n0xC9EF\t0x673E\n0xC9F0\t0x6739\n0xC9F1\t0x6738\n0xC9F2\t0x673B\n0xC9F3\t0x673A\n0xC9F4\t0x673F\n0xC9F5\t0x673C\n0xC9F6\t0x6733\n0xC9F7\t0x6C18\n0xC9F8\t0x6C46\n0xC9F9\t0x6C52\n0xC9FA\t0x6C5C\n0xC9FB\t0x6C4F\n0xC9FC\t0x6C4A\n0xC9FD\t0x6C54\n0xC9FE\t0x6C4B\n0xCA40\t0x6C4C\n0xCA41\t0x7071\n0xCA42\t0x725E\n0xCA43\t0x72B4\n0xCA44\t0x72B5\n0xCA45\t0x738E\n0xCA46\t0x752A\n0xCA47\t0x767F\n0xCA48\t0x7A75\n0xCA49\t0x7F51\n0xCA4A\t0x8278\n0xCA4B\t0x827C\n0xCA4C\t0x8280\n0xCA4D\t0x827D\n0xCA4E\t0x827F\n0xCA4F\t0x864D\n0xCA50\t0x897E\n0xCA51\t0x9099\n0xCA52\t0x9097\n0xCA53\t0x9098\n0xCA54\t0x909B\n0xCA55\t0x9094\n0xCA56\t0x9622\n0xCA57\t0x9624\n0xCA58\t0x9620\n0xCA59\t0x9623\n0xCA5A\t0x4F56\n0xCA5B\t0x4F3B\n0xCA5C\t0x4F62\n0xCA5D\t0x4F49\n0xCA5E\t0x4F53\n0xCA5F\t0x4F64\n0xCA60\t0x4F3E\n0xCA61\t0x4F67\n0xCA62\t0x4F52\n0xCA63\t0x4F5F\n0xCA64\t0x4F41\n0xCA65\t0x4F58\n0xCA66\t0x4F2D\n0xCA67\t0x4F33\n0xCA68\t0x4F3F\n0xCA69\t0x4F61\n0xCA6A\t0x518F\n0xCA6B\t0x51B9\n0xCA6C\t0x521C\n0xCA6D\t0x521E\n0xCA6E\t0x5221\n0xCA6F\t0x52AD\n0xCA70\t0x52AE\n0xCA71\t0x5309\n0xCA72\t0x5363\n0xCA73\t0x5372\n0xCA74\t0x538E\n0xCA75\t0x538F\n0xCA76\t0x5430\n0xCA77\t0x5437\n0xCA78\t0x542A\n0xCA79\t0x5454\n0xCA7A\t0x5445\n0xCA7B\t0x5419\n0xCA7C\t0x541C\n0xCA7D\t0x5425\n0xCA7E\t0x5418\n0xCAA1\t0x543D\n0xCAA2\t0x544F\n0xCAA3\t0x5441\n0xCAA4\t0x5428\n0xCAA5\t0x5424\n0xCAA6\t0x5447\n0xCAA7\t0x56EE\n0xCAA8\t0x56E7\n0xCAA9\t0x56E5\n0xCAAA\t0x5741\n0xCAAB\t0x5745\n0xCAAC\t0x574C\n0xCAAD\t0x5749\n0xCAAE\t0x574B\n0xCAAF\t0x5752\n0xCAB0\t0x5906\n0xCAB1\t0x5940\n0xCAB2\t0x59A6\n0xCAB3\t0x5998\n0xCAB4\t0x59A0\n0xCAB5\t0x5997\n0xCAB6\t0x598E\n0xCAB7\t0x59A2\n0xCAB8\t0x5990\n0xCAB9\t0x598F\n0xCABA\t0x59A7\n0xCABB\t0x59A1\n0xCABC\t0x5B8E\n0xCABD\t0x5B92\n0xCABE\t0x5C28\n0xCABF\t0x5C2A\n0xCAC0\t0x5C8D\n0xCAC1\t0x5C8F\n0xCAC2\t0x5C88\n0xCAC3\t0x5C8B\n0xCAC4\t0x5C89\n0xCAC5\t0x5C92\n0xCAC6\t0x5C8A\n0xCAC7\t0x5C86\n0xCAC8\t0x5C93\n0xCAC9\t0x5C95\n0xCACA\t0x5DE0\n0xCACB\t0x5E0A\n0xCACC\t0x5E0E\n0xCACD\t0x5E8B\n0xCACE\t0x5E89\n0xCACF\t0x5E8C\n0xCAD0\t0x5E88\n0xCAD1\t0x5E8D\n0xCAD2\t0x5F05\n0xCAD3\t0x5F1D\n0xCAD4\t0x5F78\n0xCAD5\t0x5F76\n0xCAD6\t0x5FD2\n0xCAD7\t0x5FD1\n0xCAD8\t0x5FD0\n0xCAD9\t0x5FED\n0xCADA\t0x5FE8\n0xCADB\t0x5FEE\n0xCADC\t0x5FF3\n0xCADD\t0x5FE1\n0xCADE\t0x5FE4\n0xCADF\t0x5FE3\n0xCAE0\t0x5FFA\n0xCAE1\t0x5FEF\n0xCAE2\t0x5FF7\n0xCAE3\t0x5FFB\n0xCAE4\t0x6000\n0xCAE5\t0x5FF4\n0xCAE6\t0x623A\n0xCAE7\t0x6283\n0xCAE8\t0x628C\n0xCAE9\t0x628E\n0xCAEA\t0x628F\n0xCAEB\t0x6294\n0xCAEC\t0x6287\n0xCAED\t0x6271\n0xCAEE\t0x627B\n0xCAEF\t0x627A\n0xCAF0\t0x6270\n0xCAF1\t0x6281\n0xCAF2\t0x6288\n0xCAF3\t0x6277\n0xCAF4\t0x627D\n0xCAF5\t0x6272\n0xCAF6\t0x6274\n0xCAF7\t0x6537\n0xCAF8\t0x65F0\n0xCAF9\t0x65F4\n0xCAFA\t0x65F3\n0xCAFB\t0x65F2\n0xCAFC\t0x65F5\n0xCAFD\t0x6745\n0xCAFE\t0x6747\n0xCB40\t0x6759\n0xCB41\t0x6755\n0xCB42\t0x674C\n0xCB43\t0x6748\n0xCB44\t0x675D\n0xCB45\t0x674D\n0xCB46\t0x675A\n0xCB47\t0x674B\n0xCB48\t0x6BD0\n0xCB49\t0x6C19\n0xCB4A\t0x6C1A\n0xCB4B\t0x6C78\n0xCB4C\t0x6C67\n0xCB4D\t0x6C6B\n0xCB4E\t0x6C84\n0xCB4F\t0x6C8B\n0xCB50\t0x6C8F\n0xCB51\t0x6C71\n0xCB52\t0x6C6F\n0xCB53\t0x6C69\n0xCB54\t0x6C9A\n0xCB55\t0x6C6D\n0xCB56\t0x6C87\n0xCB57\t0x6C95\n0xCB58\t0x6C9C\n0xCB59\t0x6C66\n0xCB5A\t0x6C73\n0xCB5B\t0x6C65\n0xCB5C\t0x6C7B\n0xCB5D\t0x6C8E\n0xCB5E\t0x7074\n0xCB5F\t0x707A\n0xCB60\t0x7263\n0xCB61\t0x72BF\n0xCB62\t0x72BD\n0xCB63\t0x72C3\n0xCB64\t0x72C6\n0xCB65\t0x72C1\n0xCB66\t0x72BA\n0xCB67\t0x72C5\n0xCB68\t0x7395\n0xCB69\t0x7397\n0xCB6A\t0x7393\n0xCB6B\t0x7394\n0xCB6C\t0x7392\n0xCB6D\t0x753A\n0xCB6E\t0x7539\n0xCB6F\t0x7594\n0xCB70\t0x7595\n0xCB71\t0x7681\n0xCB72\t0x793D\n0xCB73\t0x8034\n0xCB74\t0x8095\n0xCB75\t0x8099\n0xCB76\t0x8090\n0xCB77\t0x8092\n0xCB78\t0x809C\n0xCB79\t0x8290\n0xCB7A\t0x828F\n0xCB7B\t0x8285\n0xCB7C\t0x828E\n0xCB7D\t0x8291\n0xCB7E\t0x8293\n0xCBA1\t0x828A\n0xCBA2\t0x8283\n0xCBA3\t0x8284\n0xCBA4\t0x8C78\n0xCBA5\t0x8FC9\n0xCBA6\t0x8FBF\n0xCBA7\t0x909F\n0xCBA8\t0x90A1\n0xCBA9\t0x90A5\n0xCBAA\t0x909E\n0xCBAB\t0x90A7\n0xCBAC\t0x90A0\n0xCBAD\t0x9630\n0xCBAE\t0x9628\n0xCBAF\t0x962F\n0xCBB0\t0x962D\n0xCBB1\t0x4E33\n0xCBB2\t0x4F98\n0xCBB3\t0x4F7C\n0xCBB4\t0x4F85\n0xCBB5\t0x4F7D\n0xCBB6\t0x4F80\n0xCBB7\t0x4F87\n0xCBB8\t0x4F76\n0xCBB9\t0x4F74\n0xCBBA\t0x4F89\n0xCBBB\t0x4F84\n0xCBBC\t0x4F77\n0xCBBD\t0x4F4C\n0xCBBE\t0x4F97\n0xCBBF\t0x4F6A\n0xCBC0\t0x4F9A\n0xCBC1\t0x4F79\n0xCBC2\t0x4F81\n0xCBC3\t0x4F78\n0xCBC4\t0x4F90\n0xCBC5\t0x4F9C\n0xCBC6\t0x4F94\n0xCBC7\t0x4F9E\n0xCBC8\t0x4F92\n0xCBC9\t0x4F82\n0xCBCA\t0x4F95\n0xCBCB\t0x4F6B\n0xCBCC\t0x4F6E\n0xCBCD\t0x519E\n0xCBCE\t0x51BC\n0xCBCF\t0x51BE\n0xCBD0\t0x5235\n0xCBD1\t0x5232\n0xCBD2\t0x5233\n0xCBD3\t0x5246\n0xCBD4\t0x5231\n0xCBD5\t0x52BC\n0xCBD6\t0x530A\n0xCBD7\t0x530B\n0xCBD8\t0x533C\n0xCBD9\t0x5392\n0xCBDA\t0x5394\n0xCBDB\t0x5487\n0xCBDC\t0x547F\n0xCBDD\t0x5481\n0xCBDE\t0x5491\n0xCBDF\t0x5482\n0xCBE0\t0x5488\n0xCBE1\t0x546B\n0xCBE2\t0x547A\n0xCBE3\t0x547E\n0xCBE4\t0x5465\n0xCBE5\t0x546C\n0xCBE6\t0x5474\n0xCBE7\t0x5466\n0xCBE8\t0x548D\n0xCBE9\t0x546F\n0xCBEA\t0x5461\n0xCBEB\t0x5460\n0xCBEC\t0x5498\n0xCBED\t0x5463\n0xCBEE\t0x5467\n0xCBEF\t0x5464\n0xCBF0\t0x56F7\n0xCBF1\t0x56F9\n0xCBF2\t0x576F\n0xCBF3\t0x5772\n0xCBF4\t0x576D\n0xCBF5\t0x576B\n0xCBF6\t0x5771\n0xCBF7\t0x5770\n0xCBF8\t0x5776\n0xCBF9\t0x5780\n0xCBFA\t0x5775\n0xCBFB\t0x577B\n0xCBFC\t0x5773\n0xCBFD\t0x5774\n0xCBFE\t0x5762\n0xCC40\t0x5768\n0xCC41\t0x577D\n0xCC42\t0x590C\n0xCC43\t0x5945\n0xCC44\t0x59B5\n0xCC45\t0x59BA\n0xCC46\t0x59CF\n0xCC47\t0x59CE\n0xCC48\t0x59B2\n0xCC49\t0x59CC\n0xCC4A\t0x59C1\n0xCC4B\t0x59B6\n0xCC4C\t0x59BC\n0xCC4D\t0x59C3\n0xCC4E\t0x59D6\n0xCC4F\t0x59B1\n0xCC50\t0x59BD\n0xCC51\t0x59C0\n0xCC52\t0x59C8\n0xCC53\t0x59B4\n0xCC54\t0x59C7\n0xCC55\t0x5B62\n0xCC56\t0x5B65\n0xCC57\t0x5B93\n0xCC58\t0x5B95\n0xCC59\t0x5C44\n0xCC5A\t0x5C47\n0xCC5B\t0x5CAE\n0xCC5C\t0x5CA4\n0xCC5D\t0x5CA0\n0xCC5E\t0x5CB5\n0xCC5F\t0x5CAF\n0xCC60\t0x5CA8\n0xCC61\t0x5CAC\n0xCC62\t0x5C9F\n0xCC63\t0x5CA3\n0xCC64\t0x5CAD\n0xCC65\t0x5CA2\n0xCC66\t0x5CAA\n0xCC67\t0x5CA7\n0xCC68\t0x5C9D\n0xCC69\t0x5CA5\n0xCC6A\t0x5CB6\n0xCC6B\t0x5CB0\n0xCC6C\t0x5CA6\n0xCC6D\t0x5E17\n0xCC6E\t0x5E14\n0xCC6F\t0x5E19\n0xCC70\t0x5F28\n0xCC71\t0x5F22\n0xCC72\t0x5F23\n0xCC73\t0x5F24\n0xCC74\t0x5F54\n0xCC75\t0x5F82\n0xCC76\t0x5F7E\n0xCC77\t0x5F7D\n0xCC78\t0x5FDE\n0xCC79\t0x5FE5\n0xCC7A\t0x602D\n0xCC7B\t0x6026\n0xCC7C\t0x6019\n0xCC7D\t0x6032\n0xCC7E\t0x600B\n0xCCA1\t0x6034\n0xCCA2\t0x600A\n0xCCA3\t0x6017\n0xCCA4\t0x6033\n0xCCA5\t0x601A\n0xCCA6\t0x601E\n0xCCA7\t0x602C\n0xCCA8\t0x6022\n0xCCA9\t0x600D\n0xCCAA\t0x6010\n0xCCAB\t0x602E\n0xCCAC\t0x6013\n0xCCAD\t0x6011\n0xCCAE\t0x600C\n0xCCAF\t0x6009\n0xCCB0\t0x601C\n0xCCB1\t0x6214\n0xCCB2\t0x623D\n0xCCB3\t0x62AD\n0xCCB4\t0x62B4\n0xCCB5\t0x62D1\n0xCCB6\t0x62BE\n0xCCB7\t0x62AA\n0xCCB8\t0x62B6\n0xCCB9\t0x62CA\n0xCCBA\t0x62AE\n0xCCBB\t0x62B3\n0xCCBC\t0x62AF\n0xCCBD\t0x62BB\n0xCCBE\t0x62A9\n0xCCBF\t0x62B0\n0xCCC0\t0x62B8\n0xCCC1\t0x653D\n0xCCC2\t0x65A8\n0xCCC3\t0x65BB\n0xCCC4\t0x6609\n0xCCC5\t0x65FC\n0xCCC6\t0x6604\n0xCCC7\t0x6612\n0xCCC8\t0x6608\n0xCCC9\t0x65FB\n0xCCCA\t0x6603\n0xCCCB\t0x660B\n0xCCCC\t0x660D\n0xCCCD\t0x6605\n0xCCCE\t0x65FD\n0xCCCF\t0x6611\n0xCCD0\t0x6610\n0xCCD1\t0x66F6\n0xCCD2\t0x670A\n0xCCD3\t0x6785\n0xCCD4\t0x676C\n0xCCD5\t0x678E\n0xCCD6\t0x6792\n0xCCD7\t0x6776\n0xCCD8\t0x677B\n0xCCD9\t0x6798\n0xCCDA\t0x6786\n0xCCDB\t0x6784\n0xCCDC\t0x6774\n0xCCDD\t0x678D\n0xCCDE\t0x678C\n0xCCDF\t0x677A\n0xCCE0\t0x679F\n0xCCE1\t0x6791\n0xCCE2\t0x6799\n0xCCE3\t0x6783\n0xCCE4\t0x677D\n0xCCE5\t0x6781\n0xCCE6\t0x6778\n0xCCE7\t0x6779\n0xCCE8\t0x6794\n0xCCE9\t0x6B25\n0xCCEA\t0x6B80\n0xCCEB\t0x6B7E\n0xCCEC\t0x6BDE\n0xCCED\t0x6C1D\n0xCCEE\t0x6C93\n0xCCEF\t0x6CEC\n0xCCF0\t0x6CEB\n0xCCF1\t0x6CEE\n0xCCF2\t0x6CD9\n0xCCF3\t0x6CB6\n0xCCF4\t0x6CD4\n0xCCF5\t0x6CAD\n0xCCF6\t0x6CE7\n0xCCF7\t0x6CB7\n0xCCF8\t0x6CD0\n0xCCF9\t0x6CC2\n0xCCFA\t0x6CBA\n0xCCFB\t0x6CC3\n0xCCFC\t0x6CC6\n0xCCFD\t0x6CED\n0xCCFE\t0x6CF2\n0xCD40\t0x6CD2\n0xCD41\t0x6CDD\n0xCD42\t0x6CB4\n0xCD43\t0x6C8A\n0xCD44\t0x6C9D\n0xCD45\t0x6C80\n0xCD46\t0x6CDE\n0xCD47\t0x6CC0\n0xCD48\t0x6D30\n0xCD49\t0x6CCD\n0xCD4A\t0x6CC7\n0xCD4B\t0x6CB0\n0xCD4C\t0x6CF9\n0xCD4D\t0x6CCF\n0xCD4E\t0x6CE9\n0xCD4F\t0x6CD1\n0xCD50\t0x7094\n0xCD51\t0x7098\n0xCD52\t0x7085\n0xCD53\t0x7093\n0xCD54\t0x7086\n0xCD55\t0x7084\n0xCD56\t0x7091\n0xCD57\t0x7096\n0xCD58\t0x7082\n0xCD59\t0x709A\n0xCD5A\t0x7083\n0xCD5B\t0x726A\n0xCD5C\t0x72D6\n0xCD5D\t0x72CB\n0xCD5E\t0x72D8\n0xCD5F\t0x72C9\n0xCD60\t0x72DC\n0xCD61\t0x72D2\n0xCD62\t0x72D4\n0xCD63\t0x72DA\n0xCD64\t0x72CC\n0xCD65\t0x72D1\n0xCD66\t0x73A4\n0xCD67\t0x73A1\n0xCD68\t0x73AD\n0xCD69\t0x73A6\n0xCD6A\t0x73A2\n0xCD6B\t0x73A0\n0xCD6C\t0x73AC\n0xCD6D\t0x739D\n0xCD6E\t0x74DD\n0xCD6F\t0x74E8\n0xCD70\t0x753F\n0xCD71\t0x7540\n0xCD72\t0x753E\n0xCD73\t0x758C\n0xCD74\t0x7598\n0xCD75\t0x76AF\n0xCD76\t0x76F3\n0xCD77\t0x76F1\n0xCD78\t0x76F0\n0xCD79\t0x76F5\n0xCD7A\t0x77F8\n0xCD7B\t0x77FC\n0xCD7C\t0x77F9\n0xCD7D\t0x77FB\n0xCD7E\t0x77FA\n0xCDA1\t0x77F7\n0xCDA2\t0x7942\n0xCDA3\t0x793F\n0xCDA4\t0x79C5\n0xCDA5\t0x7A78\n0xCDA6\t0x7A7B\n0xCDA7\t0x7AFB\n0xCDA8\t0x7C75\n0xCDA9\t0x7CFD\n0xCDAA\t0x8035\n0xCDAB\t0x808F\n0xCDAC\t0x80AE\n0xCDAD\t0x80A3\n0xCDAE\t0x80B8\n0xCDAF\t0x80B5\n0xCDB0\t0x80AD\n0xCDB1\t0x8220\n0xCDB2\t0x82A0\n0xCDB3\t0x82C0\n0xCDB4\t0x82AB\n0xCDB5\t0x829A\n0xCDB6\t0x8298\n0xCDB7\t0x829B\n0xCDB8\t0x82B5\n0xCDB9\t0x82A7\n0xCDBA\t0x82AE\n0xCDBB\t0x82BC\n0xCDBC\t0x829E\n0xCDBD\t0x82BA\n0xCDBE\t0x82B4\n0xCDBF\t0x82A8\n0xCDC0\t0x82A1\n0xCDC1\t0x82A9\n0xCDC2\t0x82C2\n0xCDC3\t0x82A4\n0xCDC4\t0x82C3\n0xCDC5\t0x82B6\n0xCDC6\t0x82A2\n0xCDC7\t0x8670\n0xCDC8\t0x866F\n0xCDC9\t0x866D\n0xCDCA\t0x866E\n0xCDCB\t0x8C56\n0xCDCC\t0x8FD2\n0xCDCD\t0x8FCB\n0xCDCE\t0x8FD3\n0xCDCF\t0x8FCD\n0xCDD0\t0x8FD6\n0xCDD1\t0x8FD5\n0xCDD2\t0x8FD7\n0xCDD3\t0x90B2\n0xCDD4\t0x90B4\n0xCDD5\t0x90AF\n0xCDD6\t0x90B3\n0xCDD7\t0x90B0\n0xCDD8\t0x9639\n0xCDD9\t0x963D\n0xCDDA\t0x963C\n0xCDDB\t0x963A\n0xCDDC\t0x9643\n0xCDDD\t0x4FCD\n0xCDDE\t0x4FC5\n0xCDDF\t0x4FD3\n0xCDE0\t0x4FB2\n0xCDE1\t0x4FC9\n0xCDE2\t0x4FCB\n0xCDE3\t0x4FC1\n0xCDE4\t0x4FD4\n0xCDE5\t0x4FDC\n0xCDE6\t0x4FD9\n0xCDE7\t0x4FBB\n0xCDE8\t0x4FB3\n0xCDE9\t0x4FDB\n0xCDEA\t0x4FC7\n0xCDEB\t0x4FD6\n0xCDEC\t0x4FBA\n0xCDED\t0x4FC0\n0xCDEE\t0x4FB9\n0xCDEF\t0x4FEC\n0xCDF0\t0x5244\n0xCDF1\t0x5249\n0xCDF2\t0x52C0\n0xCDF3\t0x52C2\n0xCDF4\t0x533D\n0xCDF5\t0x537C\n0xCDF6\t0x5397\n0xCDF7\t0x5396\n0xCDF8\t0x5399\n0xCDF9\t0x5398\n0xCDFA\t0x54BA\n0xCDFB\t0x54A1\n0xCDFC\t0x54AD\n0xCDFD\t0x54A5\n0xCDFE\t0x54CF\n0xCE40\t0x54C3\n0xCE41\t0x830D\n0xCE42\t0x54B7\n0xCE43\t0x54AE\n0xCE44\t0x54D6\n0xCE45\t0x54B6\n0xCE46\t0x54C5\n0xCE47\t0x54C6\n0xCE48\t0x54A0\n0xCE49\t0x5470\n0xCE4A\t0x54BC\n0xCE4B\t0x54A2\n0xCE4C\t0x54BE\n0xCE4D\t0x5472\n0xCE4E\t0x54DE\n0xCE4F\t0x54B0\n0xCE50\t0x57B5\n0xCE51\t0x579E\n0xCE52\t0x579F\n0xCE53\t0x57A4\n0xCE54\t0x578C\n0xCE55\t0x5797\n0xCE56\t0x579D\n0xCE57\t0x579B\n0xCE58\t0x5794\n0xCE59\t0x5798\n0xCE5A\t0x578F\n0xCE5B\t0x5799\n0xCE5C\t0x57A5\n0xCE5D\t0x579A\n0xCE5E\t0x5795\n0xCE5F\t0x58F4\n0xCE60\t0x590D\n0xCE61\t0x5953\n0xCE62\t0x59E1\n0xCE63\t0x59DE\n0xCE64\t0x59EE\n0xCE65\t0x5A00\n0xCE66\t0x59F1\n0xCE67\t0x59DD\n0xCE68\t0x59FA\n0xCE69\t0x59FD\n0xCE6A\t0x59FC\n0xCE6B\t0x59F6\n0xCE6C\t0x59E4\n0xCE6D\t0x59F2\n0xCE6E\t0x59F7\n0xCE6F\t0x59DB\n0xCE70\t0x59E9\n0xCE71\t0x59F3\n0xCE72\t0x59F5\n0xCE73\t0x59E0\n0xCE74\t0x59FE\n0xCE75\t0x59F4\n0xCE76\t0x59ED\n0xCE77\t0x5BA8\n0xCE78\t0x5C4C\n0xCE79\t0x5CD0\n0xCE7A\t0x5CD8\n0xCE7B\t0x5CCC\n0xCE7C\t0x5CD7\n0xCE7D\t0x5CCB\n0xCE7E\t0x5CDB\n0xCEA1\t0x5CDE\n0xCEA2\t0x5CDA\n0xCEA3\t0x5CC9\n0xCEA4\t0x5CC7\n0xCEA5\t0x5CCA\n0xCEA6\t0x5CD6\n0xCEA7\t0x5CD3\n0xCEA8\t0x5CD4\n0xCEA9\t0x5CCF\n0xCEAA\t0x5CC8\n0xCEAB\t0x5CC6\n0xCEAC\t0x5CCE\n0xCEAD\t0x5CDF\n0xCEAE\t0x5CF8\n0xCEAF\t0x5DF9\n0xCEB0\t0x5E21\n0xCEB1\t0x5E22\n0xCEB2\t0x5E23\n0xCEB3\t0x5E20\n0xCEB4\t0x5E24\n0xCEB5\t0x5EB0\n0xCEB6\t0x5EA4\n0xCEB7\t0x5EA2\n0xCEB8\t0x5E9B\n0xCEB9\t0x5EA3\n0xCEBA\t0x5EA5\n0xCEBB\t0x5F07\n0xCEBC\t0x5F2E\n0xCEBD\t0x5F56\n0xCEBE\t0x5F86\n0xCEBF\t0x6037\n0xCEC0\t0x6039\n0xCEC1\t0x6054\n0xCEC2\t0x6072\n0xCEC3\t0x605E\n0xCEC4\t0x6045\n0xCEC5\t0x6053\n0xCEC6\t0x6047\n0xCEC7\t0x6049\n0xCEC8\t0x605B\n0xCEC9\t0x604C\n0xCECA\t0x6040\n0xCECB\t0x6042\n0xCECC\t0x605F\n0xCECD\t0x6024\n0xCECE\t0x6044\n0xCECF\t0x6058\n0xCED0\t0x6066\n0xCED1\t0x606E\n0xCED2\t0x6242\n0xCED3\t0x6243\n0xCED4\t0x62CF\n0xCED5\t0x630D\n0xCED6\t0x630B\n0xCED7\t0x62F5\n0xCED8\t0x630E\n0xCED9\t0x6303\n0xCEDA\t0x62EB\n0xCEDB\t0x62F9\n0xCEDC\t0x630F\n0xCEDD\t0x630C\n0xCEDE\t0x62F8\n0xCEDF\t0x62F6\n0xCEE0\t0x6300\n0xCEE1\t0x6313\n0xCEE2\t0x6314\n0xCEE3\t0x62FA\n0xCEE4\t0x6315\n0xCEE5\t0x62FB\n0xCEE6\t0x62F0\n0xCEE7\t0x6541\n0xCEE8\t0x6543\n0xCEE9\t0x65AA\n0xCEEA\t0x65BF\n0xCEEB\t0x6636\n0xCEEC\t0x6621\n0xCEED\t0x6632\n0xCEEE\t0x6635\n0xCEEF\t0x661C\n0xCEF0\t0x6626\n0xCEF1\t0x6622\n0xCEF2\t0x6633\n0xCEF3\t0x662B\n0xCEF4\t0x663A\n0xCEF5\t0x661D\n0xCEF6\t0x6634\n0xCEF7\t0x6639\n0xCEF8\t0x662E\n0xCEF9\t0x670F\n0xCEFA\t0x6710\n0xCEFB\t0x67C1\n0xCEFC\t0x67F2\n0xCEFD\t0x67C8\n0xCEFE\t0x67BA\n0xCF40\t0x67DC\n0xCF41\t0x67BB\n0xCF42\t0x67F8\n0xCF43\t0x67D8\n0xCF44\t0x67C0\n0xCF45\t0x67B7\n0xCF46\t0x67C5\n0xCF47\t0x67EB\n0xCF48\t0x67E4\n0xCF49\t0x67DF\n0xCF4A\t0x67B5\n0xCF4B\t0x67CD\n0xCF4C\t0x67B3\n0xCF4D\t0x67F7\n0xCF4E\t0x67F6\n0xCF4F\t0x67EE\n0xCF50\t0x67E3\n0xCF51\t0x67C2\n0xCF52\t0x67B9\n0xCF53\t0x67CE\n0xCF54\t0x67E7\n0xCF55\t0x67F0\n0xCF56\t0x67B2\n0xCF57\t0x67FC\n0xCF58\t0x67C6\n0xCF59\t0x67ED\n0xCF5A\t0x67CC\n0xCF5B\t0x67AE\n0xCF5C\t0x67E6\n0xCF5D\t0x67DB\n0xCF5E\t0x67FA\n0xCF5F\t0x67C9\n0xCF60\t0x67CA\n0xCF61\t0x67C3\n0xCF62\t0x67EA\n0xCF63\t0x67CB\n0xCF64\t0x6B28\n0xCF65\t0x6B82\n0xCF66\t0x6B84\n0xCF67\t0x6BB6\n0xCF68\t0x6BD6\n0xCF69\t0x6BD8\n0xCF6A\t0x6BE0\n0xCF6B\t0x6C20\n0xCF6C\t0x6C21\n0xCF6D\t0x6D28\n0xCF6E\t0x6D34\n0xCF6F\t0x6D2D\n0xCF70\t0x6D1F\n0xCF71\t0x6D3C\n0xCF72\t0x6D3F\n0xCF73\t0x6D12\n0xCF74\t0x6D0A\n0xCF75\t0x6CDA\n0xCF76\t0x6D33\n0xCF77\t0x6D04\n0xCF78\t0x6D19\n0xCF79\t0x6D3A\n0xCF7A\t0x6D1A\n0xCF7B\t0x6D11\n0xCF7C\t0x6D00\n0xCF7D\t0x6D1D\n0xCF7E\t0x6D42\n0xCFA1\t0x6D01\n0xCFA2\t0x6D18\n0xCFA3\t0x6D37\n0xCFA4\t0x6D03\n0xCFA5\t0x6D0F\n0xCFA6\t0x6D40\n0xCFA7\t0x6D07\n0xCFA8\t0x6D20\n0xCFA9\t0x6D2C\n0xCFAA\t0x6D08\n0xCFAB\t0x6D22\n0xCFAC\t0x6D09\n0xCFAD\t0x6D10\n0xCFAE\t0x70B7\n0xCFAF\t0x709F\n0xCFB0\t0x70BE\n0xCFB1\t0x70B1\n0xCFB2\t0x70B0\n0xCFB3\t0x70A1\n0xCFB4\t0x70B4\n0xCFB5\t0x70B5\n0xCFB6\t0x70A9\n0xCFB7\t0x7241\n0xCFB8\t0x7249\n0xCFB9\t0x724A\n0xCFBA\t0x726C\n0xCFBB\t0x7270\n0xCFBC\t0x7273\n0xCFBD\t0x726E\n0xCFBE\t0x72CA\n0xCFBF\t0x72E4\n0xCFC0\t0x72E8\n0xCFC1\t0x72EB\n0xCFC2\t0x72DF\n0xCFC3\t0x72EA\n0xCFC4\t0x72E6\n0xCFC5\t0x72E3\n0xCFC6\t0x7385\n0xCFC7\t0x73CC\n0xCFC8\t0x73C2\n0xCFC9\t0x73C8\n0xCFCA\t0x73C5\n0xCFCB\t0x73B9\n0xCFCC\t0x73B6\n0xCFCD\t0x73B5\n0xCFCE\t0x73B4\n0xCFCF\t0x73EB\n0xCFD0\t0x73BF\n0xCFD1\t0x73C7\n0xCFD2\t0x73BE\n0xCFD3\t0x73C3\n0xCFD4\t0x73C6\n0xCFD5\t0x73B8\n0xCFD6\t0x73CB\n0xCFD7\t0x74EC\n0xCFD8\t0x74EE\n0xCFD9\t0x752E\n0xCFDA\t0x7547\n0xCFDB\t0x7548\n0xCFDC\t0x75A7\n0xCFDD\t0x75AA\n0xCFDE\t0x7679\n0xCFDF\t0x76C4\n0xCFE0\t0x7708\n0xCFE1\t0x7703\n0xCFE2\t0x7704\n0xCFE3\t0x7705\n0xCFE4\t0x770A\n0xCFE5\t0x76F7\n0xCFE6\t0x76FB\n0xCFE7\t0x76FA\n0xCFE8\t0x77E7\n0xCFE9\t0x77E8\n0xCFEA\t0x7806\n0xCFEB\t0x7811\n0xCFEC\t0x7812\n0xCFED\t0x7805\n0xCFEE\t0x7810\n0xCFEF\t0x780F\n0xCFF0\t0x780E\n0xCFF1\t0x7809\n0xCFF2\t0x7803\n0xCFF3\t0x7813\n0xCFF4\t0x794A\n0xCFF5\t0x794C\n0xCFF6\t0x794B\n0xCFF7\t0x7945\n0xCFF8\t0x7944\n0xCFF9\t0x79D5\n0xCFFA\t0x79CD\n0xCFFB\t0x79CF\n0xCFFC\t0x79D6\n0xCFFD\t0x79CE\n0xCFFE\t0x7A80\n0xD040\t0x7A7E\n0xD041\t0x7AD1\n0xD042\t0x7B00\n0xD043\t0x7B01\n0xD044\t0x7C7A\n0xD045\t0x7C78\n0xD046\t0x7C79\n0xD047\t0x7C7F\n0xD048\t0x7C80\n0xD049\t0x7C81\n0xD04A\t0x7D03\n0xD04B\t0x7D08\n0xD04C\t0x7D01\n0xD04D\t0x7F58\n0xD04E\t0x7F91\n0xD04F\t0x7F8D\n0xD050\t0x7FBE\n0xD051\t0x8007\n0xD052\t0x800E\n0xD053\t0x800F\n0xD054\t0x8014\n0xD055\t0x8037\n0xD056\t0x80D8\n0xD057\t0x80C7\n0xD058\t0x80E0\n0xD059\t0x80D1\n0xD05A\t0x80C8\n0xD05B\t0x80C2\n0xD05C\t0x80D0\n0xD05D\t0x80C5\n0xD05E\t0x80E3\n0xD05F\t0x80D9\n0xD060\t0x80DC\n0xD061\t0x80CA\n0xD062\t0x80D5\n0xD063\t0x80C9\n0xD064\t0x80CF\n0xD065\t0x80D7\n0xD066\t0x80E6\n0xD067\t0x80CD\n0xD068\t0x81FF\n0xD069\t0x8221\n0xD06A\t0x8294\n0xD06B\t0x82D9\n0xD06C\t0x82FE\n0xD06D\t0x82F9\n0xD06E\t0x8307\n0xD06F\t0x82E8\n0xD070\t0x8300\n0xD071\t0x82D5\n0xD072\t0x833A\n0xD073\t0x82EB\n0xD074\t0x82D6\n0xD075\t0x82F4\n0xD076\t0x82EC\n0xD077\t0x82E1\n0xD078\t0x82F2\n0xD079\t0x82F5\n0xD07A\t0x830C\n0xD07B\t0x82FB\n0xD07C\t0x82F6\n0xD07D\t0x82F0\n0xD07E\t0x82EA\n0xD0A1\t0x82E4\n0xD0A2\t0x82E0\n0xD0A3\t0x82FA\n0xD0A4\t0x82F3\n0xD0A5\t0x82ED\n0xD0A6\t0x8677\n0xD0A7\t0x8674\n0xD0A8\t0x867C\n0xD0A9\t0x8673\n0xD0AA\t0x8841\n0xD0AB\t0x884E\n0xD0AC\t0x8867\n0xD0AD\t0x886A\n0xD0AE\t0x8869\n0xD0AF\t0x89D3\n0xD0B0\t0x8A04\n0xD0B1\t0x8A07\n0xD0B2\t0x8D72\n0xD0B3\t0x8FE3\n0xD0B4\t0x8FE1\n0xD0B5\t0x8FEE\n0xD0B6\t0x8FE0\n0xD0B7\t0x90F1\n0xD0B8\t0x90BD\n0xD0B9\t0x90BF\n0xD0BA\t0x90D5\n0xD0BB\t0x90C5\n0xD0BC\t0x90BE\n0xD0BD\t0x90C7\n0xD0BE\t0x90CB\n0xD0BF\t0x90C8\n0xD0C0\t0x91D4\n0xD0C1\t0x91D3\n0xD0C2\t0x9654\n0xD0C3\t0x964F\n0xD0C4\t0x9651\n0xD0C5\t0x9653\n0xD0C6\t0x964A\n0xD0C7\t0x964E\n0xD0C8\t0x501E\n0xD0C9\t0x5005\n0xD0CA\t0x5007\n0xD0CB\t0x5013\n0xD0CC\t0x5022\n0xD0CD\t0x5030\n0xD0CE\t0x501B\n0xD0CF\t0x4FF5\n0xD0D0\t0x4FF4\n0xD0D1\t0x5033\n0xD0D2\t0x5037\n0xD0D3\t0x502C\n0xD0D4\t0x4FF6\n0xD0D5\t0x4FF7\n0xD0D6\t0x5017\n0xD0D7\t0x501C\n0xD0D8\t0x5020\n0xD0D9\t0x5027\n0xD0DA\t0x5035\n0xD0DB\t0x502F\n0xD0DC\t0x5031\n0xD0DD\t0x500E\n0xD0DE\t0x515A\n0xD0DF\t0x5194\n0xD0E0\t0x5193\n0xD0E1\t0x51CA\n0xD0E2\t0x51C4\n0xD0E3\t0x51C5\n0xD0E4\t0x51C8\n0xD0E5\t0x51CE\n0xD0E6\t0x5261\n0xD0E7\t0x525A\n0xD0E8\t0x5252\n0xD0E9\t0x525E\n0xD0EA\t0x525F\n0xD0EB\t0x5255\n0xD0EC\t0x5262\n0xD0ED\t0x52CD\n0xD0EE\t0x530E\n0xD0EF\t0x539E\n0xD0F0\t0x5526\n0xD0F1\t0x54E2\n0xD0F2\t0x5517\n0xD0F3\t0x5512\n0xD0F4\t0x54E7\n0xD0F5\t0x54F3\n0xD0F6\t0x54E4\n0xD0F7\t0x551A\n0xD0F8\t0x54FF\n0xD0F9\t0x5504\n0xD0FA\t0x5508\n0xD0FB\t0x54EB\n0xD0FC\t0x5511\n0xD0FD\t0x5505\n0xD0FE\t0x54F1\n0xD140\t0x550A\n0xD141\t0x54FB\n0xD142\t0x54F7\n0xD143\t0x54F8\n0xD144\t0x54E0\n0xD145\t0x550E\n0xD146\t0x5503\n0xD147\t0x550B\n0xD148\t0x5701\n0xD149\t0x5702\n0xD14A\t0x57CC\n0xD14B\t0x5832\n0xD14C\t0x57D5\n0xD14D\t0x57D2\n0xD14E\t0x57BA\n0xD14F\t0x57C6\n0xD150\t0x57BD\n0xD151\t0x57BC\n0xD152\t0x57B8\n0xD153\t0x57B6\n0xD154\t0x57BF\n0xD155\t0x57C7\n0xD156\t0x57D0\n0xD157\t0x57B9\n0xD158\t0x57C1\n0xD159\t0x590E\n0xD15A\t0x594A\n0xD15B\t0x5A19\n0xD15C\t0x5A16\n0xD15D\t0x5A2D\n0xD15E\t0x5A2E\n0xD15F\t0x5A15\n0xD160\t0x5A0F\n0xD161\t0x5A17\n0xD162\t0x5A0A\n0xD163\t0x5A1E\n0xD164\t0x5A33\n0xD165\t0x5B6C\n0xD166\t0x5BA7\n0xD167\t0x5BAD\n0xD168\t0x5BAC\n0xD169\t0x5C03\n0xD16A\t0x5C56\n0xD16B\t0x5C54\n0xD16C\t0x5CEC\n0xD16D\t0x5CFF\n0xD16E\t0x5CEE\n0xD16F\t0x5CF1\n0xD170\t0x5CF7\n0xD171\t0x5D00\n0xD172\t0x5CF9\n0xD173\t0x5E29\n0xD174\t0x5E28\n0xD175\t0x5EA8\n0xD176\t0x5EAE\n0xD177\t0x5EAA\n0xD178\t0x5EAC\n0xD179\t0x5F33\n0xD17A\t0x5F30\n0xD17B\t0x5F67\n0xD17C\t0x605D\n0xD17D\t0x605A\n0xD17E\t0x6067\n0xD1A1\t0x6041\n0xD1A2\t0x60A2\n0xD1A3\t0x6088\n0xD1A4\t0x6080\n0xD1A5\t0x6092\n0xD1A6\t0x6081\n0xD1A7\t0x609D\n0xD1A8\t0x6083\n0xD1A9\t0x6095\n0xD1AA\t0x609B\n0xD1AB\t0x6097\n0xD1AC\t0x6087\n0xD1AD\t0x609C\n0xD1AE\t0x608E\n0xD1AF\t0x6219\n0xD1B0\t0x6246\n0xD1B1\t0x62F2\n0xD1B2\t0x6310\n0xD1B3\t0x6356\n0xD1B4\t0x632C\n0xD1B5\t0x6344\n0xD1B6\t0x6345\n0xD1B7\t0x6336\n0xD1B8\t0x6343\n0xD1B9\t0x63E4\n0xD1BA\t0x6339\n0xD1BB\t0x634B\n0xD1BC\t0x634A\n0xD1BD\t0x633C\n0xD1BE\t0x6329\n0xD1BF\t0x6341\n0xD1C0\t0x6334\n0xD1C1\t0x6358\n0xD1C2\t0x6354\n0xD1C3\t0x6359\n0xD1C4\t0x632D\n0xD1C5\t0x6347\n0xD1C6\t0x6333\n0xD1C7\t0x635A\n0xD1C8\t0x6351\n0xD1C9\t0x6338\n0xD1CA\t0x6357\n0xD1CB\t0x6340\n0xD1CC\t0x6348\n0xD1CD\t0x654A\n0xD1CE\t0x6546\n0xD1CF\t0x65C6\n0xD1D0\t0x65C3\n0xD1D1\t0x65C4\n0xD1D2\t0x65C2\n0xD1D3\t0x664A\n0xD1D4\t0x665F\n0xD1D5\t0x6647\n0xD1D6\t0x6651\n0xD1D7\t0x6712\n0xD1D8\t0x6713\n0xD1D9\t0x681F\n0xD1DA\t0x681A\n0xD1DB\t0x6849\n0xD1DC\t0x6832\n0xD1DD\t0x6833\n0xD1DE\t0x683B\n0xD1DF\t0x684B\n0xD1E0\t0x684F\n0xD1E1\t0x6816\n0xD1E2\t0x6831\n0xD1E3\t0x681C\n0xD1E4\t0x6835\n0xD1E5\t0x682B\n0xD1E6\t0x682D\n0xD1E7\t0x682F\n0xD1E8\t0x684E\n0xD1E9\t0x6844\n0xD1EA\t0x6834\n0xD1EB\t0x681D\n0xD1EC\t0x6812\n0xD1ED\t0x6814\n0xD1EE\t0x6826\n0xD1EF\t0x6828\n0xD1F0\t0x682E\n0xD1F1\t0x684D\n0xD1F2\t0x683A\n0xD1F3\t0x6825\n0xD1F4\t0x6820\n0xD1F5\t0x6B2C\n0xD1F6\t0x6B2F\n0xD1F7\t0x6B2D\n0xD1F8\t0x6B31\n0xD1F9\t0x6B34\n0xD1FA\t0x6B6D\n0xD1FB\t0x8082\n0xD1FC\t0x6B88\n0xD1FD\t0x6BE6\n0xD1FE\t0x6BE4\n0xD240\t0x6BE8\n0xD241\t0x6BE3\n0xD242\t0x6BE2\n0xD243\t0x6BE7\n0xD244\t0x6C25\n0xD245\t0x6D7A\n0xD246\t0x6D63\n0xD247\t0x6D64\n0xD248\t0x6D76\n0xD249\t0x6D0D\n0xD24A\t0x6D61\n0xD24B\t0x6D92\n0xD24C\t0x6D58\n0xD24D\t0x6D62\n0xD24E\t0x6D6D\n0xD24F\t0x6D6F\n0xD250\t0x6D91\n0xD251\t0x6D8D\n0xD252\t0x6DEF\n0xD253\t0x6D7F\n0xD254\t0x6D86\n0xD255\t0x6D5E\n0xD256\t0x6D67\n0xD257\t0x6D60\n0xD258\t0x6D97\n0xD259\t0x6D70\n0xD25A\t0x6D7C\n0xD25B\t0x6D5F\n0xD25C\t0x6D82\n0xD25D\t0x6D98\n0xD25E\t0x6D2F\n0xD25F\t0x6D68\n0xD260\t0x6D8B\n0xD261\t0x6D7E\n0xD262\t0x6D80\n0xD263\t0x6D84\n0xD264\t0x6D16\n0xD265\t0x6D83\n0xD266\t0x6D7B\n0xD267\t0x6D7D\n0xD268\t0x6D75\n0xD269\t0x6D90\n0xD26A\t0x70DC\n0xD26B\t0x70D3\n0xD26C\t0x70D1\n0xD26D\t0x70DD\n0xD26E\t0x70CB\n0xD26F\t0x7F39\n0xD270\t0x70E2\n0xD271\t0x70D7\n0xD272\t0x70D2\n0xD273\t0x70DE\n0xD274\t0x70E0\n0xD275\t0x70D4\n0xD276\t0x70CD\n0xD277\t0x70C5\n0xD278\t0x70C6\n0xD279\t0x70C7\n0xD27A\t0x70DA\n0xD27B\t0x70CE\n0xD27C\t0x70E1\n0xD27D\t0x7242\n0xD27E\t0x7278\n0xD2A1\t0x7277\n0xD2A2\t0x7276\n0xD2A3\t0x7300\n0xD2A4\t0x72FA\n0xD2A5\t0x72F4\n0xD2A6\t0x72FE\n0xD2A7\t0x72F6\n0xD2A8\t0x72F3\n0xD2A9\t0x72FB\n0xD2AA\t0x7301\n0xD2AB\t0x73D3\n0xD2AC\t0x73D9\n0xD2AD\t0x73E5\n0xD2AE\t0x73D6\n0xD2AF\t0x73BC\n0xD2B0\t0x73E7\n0xD2B1\t0x73E3\n0xD2B2\t0x73E9\n0xD2B3\t0x73DC\n0xD2B4\t0x73D2\n0xD2B5\t0x73DB\n0xD2B6\t0x73D4\n0xD2B7\t0x73DD\n0xD2B8\t0x73DA\n0xD2B9\t0x73D7\n0xD2BA\t0x73D8\n0xD2BB\t0x73E8\n0xD2BC\t0x74DE\n0xD2BD\t0x74DF\n0xD2BE\t0x74F4\n0xD2BF\t0x74F5\n0xD2C0\t0x7521\n0xD2C1\t0x755B\n0xD2C2\t0x755F\n0xD2C3\t0x75B0\n0xD2C4\t0x75C1\n0xD2C5\t0x75BB\n0xD2C6\t0x75C4\n0xD2C7\t0x75C0\n0xD2C8\t0x75BF\n0xD2C9\t0x75B6\n0xD2CA\t0x75BA\n0xD2CB\t0x768A\n0xD2CC\t0x76C9\n0xD2CD\t0x771D\n0xD2CE\t0x771B\n0xD2CF\t0x7710\n0xD2D0\t0x7713\n0xD2D1\t0x7712\n0xD2D2\t0x7723\n0xD2D3\t0x7711\n0xD2D4\t0x7715\n0xD2D5\t0x7719\n0xD2D6\t0x771A\n0xD2D7\t0x7722\n0xD2D8\t0x7727\n0xD2D9\t0x7823\n0xD2DA\t0x782C\n0xD2DB\t0x7822\n0xD2DC\t0x7835\n0xD2DD\t0x782F\n0xD2DE\t0x7828\n0xD2DF\t0x782E\n0xD2E0\t0x782B\n0xD2E1\t0x7821\n0xD2E2\t0x7829\n0xD2E3\t0x7833\n0xD2E4\t0x782A\n0xD2E5\t0x7831\n0xD2E6\t0x7954\n0xD2E7\t0x795B\n0xD2E8\t0x794F\n0xD2E9\t0x795C\n0xD2EA\t0x7953\n0xD2EB\t0x7952\n0xD2EC\t0x7951\n0xD2ED\t0x79EB\n0xD2EE\t0x79EC\n0xD2EF\t0x79E0\n0xD2F0\t0x79EE\n0xD2F1\t0x79ED\n0xD2F2\t0x79EA\n0xD2F3\t0x79DC\n0xD2F4\t0x79DE\n0xD2F5\t0x79DD\n0xD2F6\t0x7A86\n0xD2F7\t0x7A89\n0xD2F8\t0x7A85\n0xD2F9\t0x7A8B\n0xD2FA\t0x7A8C\n0xD2FB\t0x7A8A\n0xD2FC\t0x7A87\n0xD2FD\t0x7AD8\n0xD2FE\t0x7B10\n0xD340\t0x7B04\n0xD341\t0x7B13\n0xD342\t0x7B05\n0xD343\t0x7B0F\n0xD344\t0x7B08\n0xD345\t0x7B0A\n0xD346\t0x7B0E\n0xD347\t0x7B09\n0xD348\t0x7B12\n0xD349\t0x7C84\n0xD34A\t0x7C91\n0xD34B\t0x7C8A\n0xD34C\t0x7C8C\n0xD34D\t0x7C88\n0xD34E\t0x7C8D\n0xD34F\t0x7C85\n0xD350\t0x7D1E\n0xD351\t0x7D1D\n0xD352\t0x7D11\n0xD353\t0x7D0E\n0xD354\t0x7D18\n0xD355\t0x7D16\n0xD356\t0x7D13\n0xD357\t0x7D1F\n0xD358\t0x7D12\n0xD359\t0x7D0F\n0xD35A\t0x7D0C\n0xD35B\t0x7F5C\n0xD35C\t0x7F61\n0xD35D\t0x7F5E\n0xD35E\t0x7F60\n0xD35F\t0x7F5D\n0xD360\t0x7F5B\n0xD361\t0x7F96\n0xD362\t0x7F92\n0xD363\t0x7FC3\n0xD364\t0x7FC2\n0xD365\t0x7FC0\n0xD366\t0x8016\n0xD367\t0x803E\n0xD368\t0x8039\n0xD369\t0x80FA\n0xD36A\t0x80F2\n0xD36B\t0x80F9\n0xD36C\t0x80F5\n0xD36D\t0x8101\n0xD36E\t0x80FB\n0xD36F\t0x8100\n0xD370\t0x8201\n0xD371\t0x822F\n0xD372\t0x8225\n0xD373\t0x8333\n0xD374\t0x832D\n0xD375\t0x8344\n0xD376\t0x8319\n0xD377\t0x8351\n0xD378\t0x8325\n0xD379\t0x8356\n0xD37A\t0x833F\n0xD37B\t0x8341\n0xD37C\t0x8326\n0xD37D\t0x831C\n0xD37E\t0x8322\n0xD3A1\t0x8342\n0xD3A2\t0x834E\n0xD3A3\t0x831B\n0xD3A4\t0x832A\n0xD3A5\t0x8308\n0xD3A6\t0x833C\n0xD3A7\t0x834D\n0xD3A8\t0x8316\n0xD3A9\t0x8324\n0xD3AA\t0x8320\n0xD3AB\t0x8337\n0xD3AC\t0x832F\n0xD3AD\t0x8329\n0xD3AE\t0x8347\n0xD3AF\t0x8345\n0xD3B0\t0x834C\n0xD3B1\t0x8353\n0xD3B2\t0x831E\n0xD3B3\t0x832C\n0xD3B4\t0x834B\n0xD3B5\t0x8327\n0xD3B6\t0x8348\n0xD3B7\t0x8653\n0xD3B8\t0x8652\n0xD3B9\t0x86A2\n0xD3BA\t0x86A8\n0xD3BB\t0x8696\n0xD3BC\t0x868D\n0xD3BD\t0x8691\n0xD3BE\t0x869E\n0xD3BF\t0x8687\n0xD3C0\t0x8697\n0xD3C1\t0x8686\n0xD3C2\t0x868B\n0xD3C3\t0x869A\n0xD3C4\t0x8685\n0xD3C5\t0x86A5\n0xD3C6\t0x8699\n0xD3C7\t0x86A1\n0xD3C8\t0x86A7\n0xD3C9\t0x8695\n0xD3CA\t0x8698\n0xD3CB\t0x868E\n0xD3CC\t0x869D\n0xD3CD\t0x8690\n0xD3CE\t0x8694\n0xD3CF\t0x8843\n0xD3D0\t0x8844\n0xD3D1\t0x886D\n0xD3D2\t0x8875\n0xD3D3\t0x8876\n0xD3D4\t0x8872\n0xD3D5\t0x8880\n0xD3D6\t0x8871\n0xD3D7\t0x887F\n0xD3D8\t0x886F\n0xD3D9\t0x8883\n0xD3DA\t0x887E\n0xD3DB\t0x8874\n0xD3DC\t0x887C\n0xD3DD\t0x8A12\n0xD3DE\t0x8C47\n0xD3DF\t0x8C57\n0xD3E0\t0x8C7B\n0xD3E1\t0x8CA4\n0xD3E2\t0x8CA3\n0xD3E3\t0x8D76\n0xD3E4\t0x8D78\n0xD3E5\t0x8DB5\n0xD3E6\t0x8DB7\n0xD3E7\t0x8DB6\n0xD3E8\t0x8ED1\n0xD3E9\t0x8ED3\n0xD3EA\t0x8FFE\n0xD3EB\t0x8FF5\n0xD3EC\t0x9002\n0xD3ED\t0x8FFF\n0xD3EE\t0x8FFB\n0xD3EF\t0x9004\n0xD3F0\t0x8FFC\n0xD3F1\t0x8FF6\n0xD3F2\t0x90D6\n0xD3F3\t0x90E0\n0xD3F4\t0x90D9\n0xD3F5\t0x90DA\n0xD3F6\t0x90E3\n0xD3F7\t0x90DF\n0xD3F8\t0x90E5\n0xD3F9\t0x90D8\n0xD3FA\t0x90DB\n0xD3FB\t0x90D7\n0xD3FC\t0x90DC\n0xD3FD\t0x90E4\n0xD3FE\t0x9150\n0xD440\t0x914E\n0xD441\t0x914F\n0xD442\t0x91D5\n0xD443\t0x91E2\n0xD444\t0x91DA\n0xD445\t0x965C\n0xD446\t0x965F\n0xD447\t0x96BC\n0xD448\t0x98E3\n0xD449\t0x9ADF\n0xD44A\t0x9B2F\n0xD44B\t0x4E7F\n0xD44C\t0x5070\n0xD44D\t0x506A\n0xD44E\t0x5061\n0xD44F\t0x505E\n0xD450\t0x5060\n0xD451\t0x5053\n0xD452\t0x504B\n0xD453\t0x505D\n0xD454\t0x5072\n0xD455\t0x5048\n0xD456\t0x504D\n0xD457\t0x5041\n0xD458\t0x505B\n0xD459\t0x504A\n0xD45A\t0x5062\n0xD45B\t0x5015\n0xD45C\t0x5045\n0xD45D\t0x505F\n0xD45E\t0x5069\n0xD45F\t0x506B\n0xD460\t0x5063\n0xD461\t0x5064\n0xD462\t0x5046\n0xD463\t0x5040\n0xD464\t0x506E\n0xD465\t0x5073\n0xD466\t0x5057\n0xD467\t0x5051\n0xD468\t0x51D0\n0xD469\t0x526B\n0xD46A\t0x526D\n0xD46B\t0x526C\n0xD46C\t0x526E\n0xD46D\t0x52D6\n0xD46E\t0x52D3\n0xD46F\t0x532D\n0xD470\t0x539C\n0xD471\t0x5575\n0xD472\t0x5576\n0xD473\t0x553C\n0xD474\t0x554D\n0xD475\t0x5550\n0xD476\t0x5534\n0xD477\t0x552A\n0xD478\t0x5551\n0xD479\t0x5562\n0xD47A\t0x5536\n0xD47B\t0x5535\n0xD47C\t0x5530\n0xD47D\t0x5552\n0xD47E\t0x5545\n0xD4A1\t0x550C\n0xD4A2\t0x5532\n0xD4A3\t0x5565\n0xD4A4\t0x554E\n0xD4A5\t0x5539\n0xD4A6\t0x5548\n0xD4A7\t0x552D\n0xD4A8\t0x553B\n0xD4A9\t0x5540\n0xD4AA\t0x554B\n0xD4AB\t0x570A\n0xD4AC\t0x5707\n0xD4AD\t0x57FB\n0xD4AE\t0x5814\n0xD4AF\t0x57E2\n0xD4B0\t0x57F6\n0xD4B1\t0x57DC\n0xD4B2\t0x57F4\n0xD4B3\t0x5800\n0xD4B4\t0x57ED\n0xD4B5\t0x57FD\n0xD4B6\t0x5808\n0xD4B7\t0x57F8\n0xD4B8\t0x580B\n0xD4B9\t0x57F3\n0xD4BA\t0x57CF\n0xD4BB\t0x5807\n0xD4BC\t0x57EE\n0xD4BD\t0x57E3\n0xD4BE\t0x57F2\n0xD4BF\t0x57E5\n0xD4C0\t0x57EC\n0xD4C1\t0x57E1\n0xD4C2\t0x580E\n0xD4C3\t0x57FC\n0xD4C4\t0x5810\n0xD4C5\t0x57E7\n0xD4C6\t0x5801\n0xD4C7\t0x580C\n0xD4C8\t0x57F1\n0xD4C9\t0x57E9\n0xD4CA\t0x57F0\n0xD4CB\t0x580D\n0xD4CC\t0x5804\n0xD4CD\t0x595C\n0xD4CE\t0x5A60\n0xD4CF\t0x5A58\n0xD4D0\t0x5A55\n0xD4D1\t0x5A67\n0xD4D2\t0x5A5E\n0xD4D3\t0x5A38\n0xD4D4\t0x5A35\n0xD4D5\t0x5A6D\n0xD4D6\t0x5A50\n0xD4D7\t0x5A5F\n0xD4D8\t0x5A65\n0xD4D9\t0x5A6C\n0xD4DA\t0x5A53\n0xD4DB\t0x5A64\n0xD4DC\t0x5A57\n0xD4DD\t0x5A43\n0xD4DE\t0x5A5D\n0xD4DF\t0x5A52\n0xD4E0\t0x5A44\n0xD4E1\t0x5A5B\n0xD4E2\t0x5A48\n0xD4E3\t0x5A8E\n0xD4E4\t0x5A3E\n0xD4E5\t0x5A4D\n0xD4E6\t0x5A39\n0xD4E7\t0x5A4C\n0xD4E8\t0x5A70\n0xD4E9\t0x5A69\n0xD4EA\t0x5A47\n0xD4EB\t0x5A51\n0xD4EC\t0x5A56\n0xD4ED\t0x5A42\n0xD4EE\t0x5A5C\n0xD4EF\t0x5B72\n0xD4F0\t0x5B6E\n0xD4F1\t0x5BC1\n0xD4F2\t0x5BC0\n0xD4F3\t0x5C59\n0xD4F4\t0x5D1E\n0xD4F5\t0x5D0B\n0xD4F6\t0x5D1D\n0xD4F7\t0x5D1A\n0xD4F8\t0x5D20\n0xD4F9\t0x5D0C\n0xD4FA\t0x5D28\n0xD4FB\t0x5D0D\n0xD4FC\t0x5D26\n0xD4FD\t0x5D25\n0xD4FE\t0x5D0F\n0xD540\t0x5D30\n0xD541\t0x5D12\n0xD542\t0x5D23\n0xD543\t0x5D1F\n0xD544\t0x5D2E\n0xD545\t0x5E3E\n0xD546\t0x5E34\n0xD547\t0x5EB1\n0xD548\t0x5EB4\n0xD549\t0x5EB9\n0xD54A\t0x5EB2\n0xD54B\t0x5EB3\n0xD54C\t0x5F36\n0xD54D\t0x5F38\n0xD54E\t0x5F9B\n0xD54F\t0x5F96\n0xD550\t0x5F9F\n0xD551\t0x608A\n0xD552\t0x6090\n0xD553\t0x6086\n0xD554\t0x60BE\n0xD555\t0x60B0\n0xD556\t0x60BA\n0xD557\t0x60D3\n0xD558\t0x60D4\n0xD559\t0x60CF\n0xD55A\t0x60E4\n0xD55B\t0x60D9\n0xD55C\t0x60DD\n0xD55D\t0x60C8\n0xD55E\t0x60B1\n0xD55F\t0x60DB\n0xD560\t0x60B7\n0xD561\t0x60CA\n0xD562\t0x60BF\n0xD563\t0x60C3\n0xD564\t0x60CD\n0xD565\t0x60C0\n0xD566\t0x6332\n0xD567\t0x6365\n0xD568\t0x638A\n0xD569\t0x6382\n0xD56A\t0x637D\n0xD56B\t0x63BD\n0xD56C\t0x639E\n0xD56D\t0x63AD\n0xD56E\t0x639D\n0xD56F\t0x6397\n0xD570\t0x63AB\n0xD571\t0x638E\n0xD572\t0x636F\n0xD573\t0x6387\n0xD574\t0x6390\n0xD575\t0x636E\n0xD576\t0x63AF\n0xD577\t0x6375\n0xD578\t0x639C\n0xD579\t0x636D\n0xD57A\t0x63AE\n0xD57B\t0x637C\n0xD57C\t0x63A4\n0xD57D\t0x633B\n0xD57E\t0x639F\n0xD5A1\t0x6378\n0xD5A2\t0x6385\n0xD5A3\t0x6381\n0xD5A4\t0x6391\n0xD5A5\t0x638D\n0xD5A6\t0x6370\n0xD5A7\t0x6553\n0xD5A8\t0x65CD\n0xD5A9\t0x6665\n0xD5AA\t0x6661\n0xD5AB\t0x665B\n0xD5AC\t0x6659\n0xD5AD\t0x665C\n0xD5AE\t0x6662\n0xD5AF\t0x6718\n0xD5B0\t0x6879\n0xD5B1\t0x6887\n0xD5B2\t0x6890\n0xD5B3\t0x689C\n0xD5B4\t0x686D\n0xD5B5\t0x686E\n0xD5B6\t0x68AE\n0xD5B7\t0x68AB\n0xD5B8\t0x6956\n0xD5B9\t0x686F\n0xD5BA\t0x68A3\n0xD5BB\t0x68AC\n0xD5BC\t0x68A9\n0xD5BD\t0x6875\n0xD5BE\t0x6874\n0xD5BF\t0x68B2\n0xD5C0\t0x688F\n0xD5C1\t0x6877\n0xD5C2\t0x6892\n0xD5C3\t0x687C\n0xD5C4\t0x686B\n0xD5C5\t0x6872\n0xD5C6\t0x68AA\n0xD5C7\t0x6880\n0xD5C8\t0x6871\n0xD5C9\t0x687E\n0xD5CA\t0x689B\n0xD5CB\t0x6896\n0xD5CC\t0x688B\n0xD5CD\t0x68A0\n0xD5CE\t0x6889\n0xD5CF\t0x68A4\n0xD5D0\t0x6878\n0xD5D1\t0x687B\n0xD5D2\t0x6891\n0xD5D3\t0x688C\n0xD5D4\t0x688A\n0xD5D5\t0x687D\n0xD5D6\t0x6B36\n0xD5D7\t0x6B33\n0xD5D8\t0x6B37\n0xD5D9\t0x6B38\n0xD5DA\t0x6B91\n0xD5DB\t0x6B8F\n0xD5DC\t0x6B8D\n0xD5DD\t0x6B8E\n0xD5DE\t0x6B8C\n0xD5DF\t0x6C2A\n0xD5E0\t0x6DC0\n0xD5E1\t0x6DAB\n0xD5E2\t0x6DB4\n0xD5E3\t0x6DB3\n0xD5E4\t0x6E74\n0xD5E5\t0x6DAC\n0xD5E6\t0x6DE9\n0xD5E7\t0x6DE2\n0xD5E8\t0x6DB7\n0xD5E9\t0x6DF6\n0xD5EA\t0x6DD4\n0xD5EB\t0x6E00\n0xD5EC\t0x6DC8\n0xD5ED\t0x6DE0\n0xD5EE\t0x6DDF\n0xD5EF\t0x6DD6\n0xD5F0\t0x6DBE\n0xD5F1\t0x6DE5\n0xD5F2\t0x6DDC\n0xD5F3\t0x6DDD\n0xD5F4\t0x6DDB\n0xD5F5\t0x6DF4\n0xD5F6\t0x6DCA\n0xD5F7\t0x6DBD\n0xD5F8\t0x6DED\n0xD5F9\t0x6DF0\n0xD5FA\t0x6DBA\n0xD5FB\t0x6DD5\n0xD5FC\t0x6DC2\n0xD5FD\t0x6DCF\n0xD5FE\t0x6DC9\n0xD640\t0x6DD0\n0xD641\t0x6DF2\n0xD642\t0x6DD3\n0xD643\t0x6DFD\n0xD644\t0x6DD7\n0xD645\t0x6DCD\n0xD646\t0x6DE3\n0xD647\t0x6DBB\n0xD648\t0x70FA\n0xD649\t0x710D\n0xD64A\t0x70F7\n0xD64B\t0x7117\n0xD64C\t0x70F4\n0xD64D\t0x710C\n0xD64E\t0x70F0\n0xD64F\t0x7104\n0xD650\t0x70F3\n0xD651\t0x7110\n0xD652\t0x70FC\n0xD653\t0x70FF\n0xD654\t0x7106\n0xD655\t0x7113\n0xD656\t0x7100\n0xD657\t0x70F8\n0xD658\t0x70F6\n0xD659\t0x710B\n0xD65A\t0x7102\n0xD65B\t0x710E\n0xD65C\t0x727E\n0xD65D\t0x727B\n0xD65E\t0x727C\n0xD65F\t0x727F\n0xD660\t0x731D\n0xD661\t0x7317\n0xD662\t0x7307\n0xD663\t0x7311\n0xD664\t0x7318\n0xD665\t0x730A\n0xD666\t0x7308\n0xD667\t0x72FF\n0xD668\t0x730F\n0xD669\t0x731E\n0xD66A\t0x7388\n0xD66B\t0x73F6\n0xD66C\t0x73F8\n0xD66D\t0x73F5\n0xD66E\t0x7404\n0xD66F\t0x7401\n0xD670\t0x73FD\n0xD671\t0x7407\n0xD672\t0x7400\n0xD673\t0x73FA\n0xD674\t0x73FC\n0xD675\t0x73FF\n0xD676\t0x740C\n0xD677\t0x740B\n0xD678\t0x73F4\n0xD679\t0x7408\n0xD67A\t0x7564\n0xD67B\t0x7563\n0xD67C\t0x75CE\n0xD67D\t0x75D2\n0xD67E\t0x75CF\n0xD6A1\t0x75CB\n0xD6A2\t0x75CC\n0xD6A3\t0x75D1\n0xD6A4\t0x75D0\n0xD6A5\t0x768F\n0xD6A6\t0x7689\n0xD6A7\t0x76D3\n0xD6A8\t0x7739\n0xD6A9\t0x772F\n0xD6AA\t0x772D\n0xD6AB\t0x7731\n0xD6AC\t0x7732\n0xD6AD\t0x7734\n0xD6AE\t0x7733\n0xD6AF\t0x773D\n0xD6B0\t0x7725\n0xD6B1\t0x773B\n0xD6B2\t0x7735\n0xD6B3\t0x7848\n0xD6B4\t0x7852\n0xD6B5\t0x7849\n0xD6B6\t0x784D\n0xD6B7\t0x784A\n0xD6B8\t0x784C\n0xD6B9\t0x7826\n0xD6BA\t0x7845\n0xD6BB\t0x7850\n0xD6BC\t0x7964\n0xD6BD\t0x7967\n0xD6BE\t0x7969\n0xD6BF\t0x796A\n0xD6C0\t0x7963\n0xD6C1\t0x796B\n0xD6C2\t0x7961\n0xD6C3\t0x79BB\n0xD6C4\t0x79FA\n0xD6C5\t0x79F8\n0xD6C6\t0x79F6\n0xD6C7\t0x79F7\n0xD6C8\t0x7A8F\n0xD6C9\t0x7A94\n0xD6CA\t0x7A90\n0xD6CB\t0x7B35\n0xD6CC\t0x7B47\n0xD6CD\t0x7B34\n0xD6CE\t0x7B25\n0xD6CF\t0x7B30\n0xD6D0\t0x7B22\n0xD6D1\t0x7B24\n0xD6D2\t0x7B33\n0xD6D3\t0x7B18\n0xD6D4\t0x7B2A\n0xD6D5\t0x7B1D\n0xD6D6\t0x7B31\n0xD6D7\t0x7B2B\n0xD6D8\t0x7B2D\n0xD6D9\t0x7B2F\n0xD6DA\t0x7B32\n0xD6DB\t0x7B38\n0xD6DC\t0x7B1A\n0xD6DD\t0x7B23\n0xD6DE\t0x7C94\n0xD6DF\t0x7C98\n0xD6E0\t0x7C96\n0xD6E1\t0x7CA3\n0xD6E2\t0x7D35\n0xD6E3\t0x7D3D\n0xD6E4\t0x7D38\n0xD6E5\t0x7D36\n0xD6E6\t0x7D3A\n0xD6E7\t0x7D45\n0xD6E8\t0x7D2C\n0xD6E9\t0x7D29\n0xD6EA\t0x7D41\n0xD6EB\t0x7D47\n0xD6EC\t0x7D3E\n0xD6ED\t0x7D3F\n0xD6EE\t0x7D4A\n0xD6EF\t0x7D3B\n0xD6F0\t0x7D28\n0xD6F1\t0x7F63\n0xD6F2\t0x7F95\n0xD6F3\t0x7F9C\n0xD6F4\t0x7F9D\n0xD6F5\t0x7F9B\n0xD6F6\t0x7FCA\n0xD6F7\t0x7FCB\n0xD6F8\t0x7FCD\n0xD6F9\t0x7FD0\n0xD6FA\t0x7FD1\n0xD6FB\t0x7FC7\n0xD6FC\t0x7FCF\n0xD6FD\t0x7FC9\n0xD6FE\t0x801F\n0xD740\t0x801E\n0xD741\t0x801B\n0xD742\t0x8047\n0xD743\t0x8043\n0xD744\t0x8048\n0xD745\t0x8118\n0xD746\t0x8125\n0xD747\t0x8119\n0xD748\t0x811B\n0xD749\t0x812D\n0xD74A\t0x811F\n0xD74B\t0x812C\n0xD74C\t0x811E\n0xD74D\t0x8121\n0xD74E\t0x8115\n0xD74F\t0x8127\n0xD750\t0x811D\n0xD751\t0x8122\n0xD752\t0x8211\n0xD753\t0x8238\n0xD754\t0x8233\n0xD755\t0x823A\n0xD756\t0x8234\n0xD757\t0x8232\n0xD758\t0x8274\n0xD759\t0x8390\n0xD75A\t0x83A3\n0xD75B\t0x83A8\n0xD75C\t0x838D\n0xD75D\t0x837A\n0xD75E\t0x8373\n0xD75F\t0x83A4\n0xD760\t0x8374\n0xD761\t0x838F\n0xD762\t0x8381\n0xD763\t0x8395\n0xD764\t0x8399\n0xD765\t0x8375\n0xD766\t0x8394\n0xD767\t0x83A9\n0xD768\t0x837D\n0xD769\t0x8383\n0xD76A\t0x838C\n0xD76B\t0x839D\n0xD76C\t0x839B\n0xD76D\t0x83AA\n0xD76E\t0x838B\n0xD76F\t0x837E\n0xD770\t0x83A5\n0xD771\t0x83AF\n0xD772\t0x8388\n0xD773\t0x8397\n0xD774\t0x83B0\n0xD775\t0x837F\n0xD776\t0x83A6\n0xD777\t0x8387\n0xD778\t0x83AE\n0xD779\t0x8376\n0xD77A\t0x839A\n0xD77B\t0x8659\n0xD77C\t0x8656\n0xD77D\t0x86BF\n0xD77E\t0x86B7\n0xD7A1\t0x86C2\n0xD7A2\t0x86C1\n0xD7A3\t0x86C5\n0xD7A4\t0x86BA\n0xD7A5\t0x86B0\n0xD7A6\t0x86C8\n0xD7A7\t0x86B9\n0xD7A8\t0x86B3\n0xD7A9\t0x86B8\n0xD7AA\t0x86CC\n0xD7AB\t0x86B4\n0xD7AC\t0x86BB\n0xD7AD\t0x86BC\n0xD7AE\t0x86C3\n0xD7AF\t0x86BD\n0xD7B0\t0x86BE\n0xD7B1\t0x8852\n0xD7B2\t0x8889\n0xD7B3\t0x8895\n0xD7B4\t0x88A8\n0xD7B5\t0x88A2\n0xD7B6\t0x88AA\n0xD7B7\t0x889A\n0xD7B8\t0x8891\n0xD7B9\t0x88A1\n0xD7BA\t0x889F\n0xD7BB\t0x8898\n0xD7BC\t0x88A7\n0xD7BD\t0x8899\n0xD7BE\t0x889B\n0xD7BF\t0x8897\n0xD7C0\t0x88A4\n0xD7C1\t0x88AC\n0xD7C2\t0x888C\n0xD7C3\t0x8893\n0xD7C4\t0x888E\n0xD7C5\t0x8982\n0xD7C6\t0x89D6\n0xD7C7\t0x89D9\n0xD7C8\t0x89D5\n0xD7C9\t0x8A30\n0xD7CA\t0x8A27\n0xD7CB\t0x8A2C\n0xD7CC\t0x8A1E\n0xD7CD\t0x8C39\n0xD7CE\t0x8C3B\n0xD7CF\t0x8C5C\n0xD7D0\t0x8C5D\n0xD7D1\t0x8C7D\n0xD7D2\t0x8CA5\n0xD7D3\t0x8D7D\n0xD7D4\t0x8D7B\n0xD7D5\t0x8D79\n0xD7D6\t0x8DBC\n0xD7D7\t0x8DC2\n0xD7D8\t0x8DB9\n0xD7D9\t0x8DBF\n0xD7DA\t0x8DC1\n0xD7DB\t0x8ED8\n0xD7DC\t0x8EDE\n0xD7DD\t0x8EDD\n0xD7DE\t0x8EDC\n0xD7DF\t0x8ED7\n0xD7E0\t0x8EE0\n0xD7E1\t0x8EE1\n0xD7E2\t0x9024\n0xD7E3\t0x900B\n0xD7E4\t0x9011\n0xD7E5\t0x901C\n0xD7E6\t0x900C\n0xD7E7\t0x9021\n0xD7E8\t0x90EF\n0xD7E9\t0x90EA\n0xD7EA\t0x90F0\n0xD7EB\t0x90F4\n0xD7EC\t0x90F2\n0xD7ED\t0x90F3\n0xD7EE\t0x90D4\n0xD7EF\t0x90EB\n0xD7F0\t0x90EC\n0xD7F1\t0x90E9\n0xD7F2\t0x9156\n0xD7F3\t0x9158\n0xD7F4\t0x915A\n0xD7F5\t0x9153\n0xD7F6\t0x9155\n0xD7F7\t0x91EC\n0xD7F8\t0x91F4\n0xD7F9\t0x91F1\n0xD7FA\t0x91F3\n0xD7FB\t0x91F8\n0xD7FC\t0x91E4\n0xD7FD\t0x91F9\n0xD7FE\t0x91EA\n0xD840\t0x91EB\n0xD841\t0x91F7\n0xD842\t0x91E8\n0xD843\t0x91EE\n0xD844\t0x957A\n0xD845\t0x9586\n0xD846\t0x9588\n0xD847\t0x967C\n0xD848\t0x966D\n0xD849\t0x966B\n0xD84A\t0x9671\n0xD84B\t0x966F\n0xD84C\t0x96BF\n0xD84D\t0x976A\n0xD84E\t0x9804\n0xD84F\t0x98E5\n0xD850\t0x9997\n0xD851\t0x509B\n0xD852\t0x5095\n0xD853\t0x5094\n0xD854\t0x509E\n0xD855\t0x508B\n0xD856\t0x50A3\n0xD857\t0x5083\n0xD858\t0x508C\n0xD859\t0x508E\n0xD85A\t0x509D\n0xD85B\t0x5068\n0xD85C\t0x509C\n0xD85D\t0x5092\n0xD85E\t0x5082\n0xD85F\t0x5087\n0xD860\t0x515F\n0xD861\t0x51D4\n0xD862\t0x5312\n0xD863\t0x5311\n0xD864\t0x53A4\n0xD865\t0x53A7\n0xD866\t0x5591\n0xD867\t0x55A8\n0xD868\t0x55A5\n0xD869\t0x55AD\n0xD86A\t0x5577\n0xD86B\t0x5645\n0xD86C\t0x55A2\n0xD86D\t0x5593\n0xD86E\t0x5588\n0xD86F\t0x558F\n0xD870\t0x55B5\n0xD871\t0x5581\n0xD872\t0x55A3\n0xD873\t0x5592\n0xD874\t0x55A4\n0xD875\t0x557D\n0xD876\t0x558C\n0xD877\t0x55A6\n0xD878\t0x557F\n0xD879\t0x5595\n0xD87A\t0x55A1\n0xD87B\t0x558E\n0xD87C\t0x570C\n0xD87D\t0x5829\n0xD87E\t0x5837\n0xD8A1\t0x5819\n0xD8A2\t0x581E\n0xD8A3\t0x5827\n0xD8A4\t0x5823\n0xD8A5\t0x5828\n0xD8A6\t0x57F5\n0xD8A7\t0x5848\n0xD8A8\t0x5825\n0xD8A9\t0x581C\n0xD8AA\t0x581B\n0xD8AB\t0x5833\n0xD8AC\t0x583F\n0xD8AD\t0x5836\n0xD8AE\t0x582E\n0xD8AF\t0x5839\n0xD8B0\t0x5838\n0xD8B1\t0x582D\n0xD8B2\t0x582C\n0xD8B3\t0x583B\n0xD8B4\t0x5961\n0xD8B5\t0x5AAF\n0xD8B6\t0x5A94\n0xD8B7\t0x5A9F\n0xD8B8\t0x5A7A\n0xD8B9\t0x5AA2\n0xD8BA\t0x5A9E\n0xD8BB\t0x5A78\n0xD8BC\t0x5AA6\n0xD8BD\t0x5A7C\n0xD8BE\t0x5AA5\n0xD8BF\t0x5AAC\n0xD8C0\t0x5A95\n0xD8C1\t0x5AAE\n0xD8C2\t0x5A37\n0xD8C3\t0x5A84\n0xD8C4\t0x5A8A\n0xD8C5\t0x5A97\n0xD8C6\t0x5A83\n0xD8C7\t0x5A8B\n0xD8C8\t0x5AA9\n0xD8C9\t0x5A7B\n0xD8CA\t0x5A7D\n0xD8CB\t0x5A8C\n0xD8CC\t0x5A9C\n0xD8CD\t0x5A8F\n0xD8CE\t0x5A93\n0xD8CF\t0x5A9D\n0xD8D0\t0x5BEA\n0xD8D1\t0x5BCD\n0xD8D2\t0x5BCB\n0xD8D3\t0x5BD4\n0xD8D4\t0x5BD1\n0xD8D5\t0x5BCA\n0xD8D6\t0x5BCE\n0xD8D7\t0x5C0C\n0xD8D8\t0x5C30\n0xD8D9\t0x5D37\n0xD8DA\t0x5D43\n0xD8DB\t0x5D6B\n0xD8DC\t0x5D41\n0xD8DD\t0x5D4B\n0xD8DE\t0x5D3F\n0xD8DF\t0x5D35\n0xD8E0\t0x5D51\n0xD8E1\t0x5D4E\n0xD8E2\t0x5D55\n0xD8E3\t0x5D33\n0xD8E4\t0x5D3A\n0xD8E5\t0x5D52\n0xD8E6\t0x5D3D\n0xD8E7\t0x5D31\n0xD8E8\t0x5D59\n0xD8E9\t0x5D42\n0xD8EA\t0x5D39\n0xD8EB\t0x5D49\n0xD8EC\t0x5D38\n0xD8ED\t0x5D3C\n0xD8EE\t0x5D32\n0xD8EF\t0x5D36\n0xD8F0\t0x5D40\n0xD8F1\t0x5D45\n0xD8F2\t0x5E44\n0xD8F3\t0x5E41\n0xD8F4\t0x5F58\n0xD8F5\t0x5FA6\n0xD8F6\t0x5FA5\n0xD8F7\t0x5FAB\n0xD8F8\t0x60C9\n0xD8F9\t0x60B9\n0xD8FA\t0x60CC\n0xD8FB\t0x60E2\n0xD8FC\t0x60CE\n0xD8FD\t0x60C4\n0xD8FE\t0x6114\n0xD940\t0x60F2\n0xD941\t0x610A\n0xD942\t0x6116\n0xD943\t0x6105\n0xD944\t0x60F5\n0xD945\t0x6113\n0xD946\t0x60F8\n0xD947\t0x60FC\n0xD948\t0x60FE\n0xD949\t0x60C1\n0xD94A\t0x6103\n0xD94B\t0x6118\n0xD94C\t0x611D\n0xD94D\t0x6110\n0xD94E\t0x60FF\n0xD94F\t0x6104\n0xD950\t0x610B\n0xD951\t0x624A\n0xD952\t0x6394\n0xD953\t0x63B1\n0xD954\t0x63B0\n0xD955\t0x63CE\n0xD956\t0x63E5\n0xD957\t0x63E8\n0xD958\t0x63EF\n0xD959\t0x63C3\n0xD95A\t0x649D\n0xD95B\t0x63F3\n0xD95C\t0x63CA\n0xD95D\t0x63E0\n0xD95E\t0x63F6\n0xD95F\t0x63D5\n0xD960\t0x63F2\n0xD961\t0x63F5\n0xD962\t0x6461\n0xD963\t0x63DF\n0xD964\t0x63BE\n0xD965\t0x63DD\n0xD966\t0x63DC\n0xD967\t0x63C4\n0xD968\t0x63D8\n0xD969\t0x63D3\n0xD96A\t0x63C2\n0xD96B\t0x63C7\n0xD96C\t0x63CC\n0xD96D\t0x63CB\n0xD96E\t0x63C8\n0xD96F\t0x63F0\n0xD970\t0x63D7\n0xD971\t0x63D9\n0xD972\t0x6532\n0xD973\t0x6567\n0xD974\t0x656A\n0xD975\t0x6564\n0xD976\t0x655C\n0xD977\t0x6568\n0xD978\t0x6565\n0xD979\t0x658C\n0xD97A\t0x659D\n0xD97B\t0x659E\n0xD97C\t0x65AE\n0xD97D\t0x65D0\n0xD97E\t0x65D2\n0xD9A1\t0x667C\n0xD9A2\t0x666C\n0xD9A3\t0x667B\n0xD9A4\t0x6680\n0xD9A5\t0x6671\n0xD9A6\t0x6679\n0xD9A7\t0x666A\n0xD9A8\t0x6672\n0xD9A9\t0x6701\n0xD9AA\t0x690C\n0xD9AB\t0x68D3\n0xD9AC\t0x6904\n0xD9AD\t0x68DC\n0xD9AE\t0x692A\n0xD9AF\t0x68EC\n0xD9B0\t0x68EA\n0xD9B1\t0x68F1\n0xD9B2\t0x690F\n0xD9B3\t0x68D6\n0xD9B4\t0x68F7\n0xD9B5\t0x68EB\n0xD9B6\t0x68E4\n0xD9B7\t0x68F6\n0xD9B8\t0x6913\n0xD9B9\t0x6910\n0xD9BA\t0x68F3\n0xD9BB\t0x68E1\n0xD9BC\t0x6907\n0xD9BD\t0x68CC\n0xD9BE\t0x6908\n0xD9BF\t0x6970\n0xD9C0\t0x68B4\n0xD9C1\t0x6911\n0xD9C2\t0x68EF\n0xD9C3\t0x68C6\n0xD9C4\t0x6914\n0xD9C5\t0x68F8\n0xD9C6\t0x68D0\n0xD9C7\t0x68FD\n0xD9C8\t0x68FC\n0xD9C9\t0x68E8\n0xD9CA\t0x690B\n0xD9CB\t0x690A\n0xD9CC\t0x6917\n0xD9CD\t0x68CE\n0xD9CE\t0x68C8\n0xD9CF\t0x68DD\n0xD9D0\t0x68DE\n0xD9D1\t0x68E6\n0xD9D2\t0x68F4\n0xD9D3\t0x68D1\n0xD9D4\t0x6906\n0xD9D5\t0x68D4\n0xD9D6\t0x68E9\n0xD9D7\t0x6915\n0xD9D8\t0x6925\n0xD9D9\t0x68C7\n0xD9DA\t0x6B39\n0xD9DB\t0x6B3B\n0xD9DC\t0x6B3F\n0xD9DD\t0x6B3C\n0xD9DE\t0x6B94\n0xD9DF\t0x6B97\n0xD9E0\t0x6B99\n0xD9E1\t0x6B95\n0xD9E2\t0x6BBD\n0xD9E3\t0x6BF0\n0xD9E4\t0x6BF2\n0xD9E5\t0x6BF3\n0xD9E6\t0x6C30\n0xD9E7\t0x6DFC\n0xD9E8\t0x6E46\n0xD9E9\t0x6E47\n0xD9EA\t0x6E1F\n0xD9EB\t0x6E49\n0xD9EC\t0x6E88\n0xD9ED\t0x6E3C\n0xD9EE\t0x6E3D\n0xD9EF\t0x6E45\n0xD9F0\t0x6E62\n0xD9F1\t0x6E2B\n0xD9F2\t0x6E3F\n0xD9F3\t0x6E41\n0xD9F4\t0x6E5D\n0xD9F5\t0x6E73\n0xD9F6\t0x6E1C\n0xD9F7\t0x6E33\n0xD9F8\t0x6E4B\n0xD9F9\t0x6E40\n0xD9FA\t0x6E51\n0xD9FB\t0x6E3B\n0xD9FC\t0x6E03\n0xD9FD\t0x6E2E\n0xD9FE\t0x6E5E\n0xDA40\t0x6E68\n0xDA41\t0x6E5C\n0xDA42\t0x6E61\n0xDA43\t0x6E31\n0xDA44\t0x6E28\n0xDA45\t0x6E60\n0xDA46\t0x6E71\n0xDA47\t0x6E6B\n0xDA48\t0x6E39\n0xDA49\t0x6E22\n0xDA4A\t0x6E30\n0xDA4B\t0x6E53\n0xDA4C\t0x6E65\n0xDA4D\t0x6E27\n0xDA4E\t0x6E78\n0xDA4F\t0x6E64\n0xDA50\t0x6E77\n0xDA51\t0x6E55\n0xDA52\t0x6E79\n0xDA53\t0x6E52\n0xDA54\t0x6E66\n0xDA55\t0x6E35\n0xDA56\t0x6E36\n0xDA57\t0x6E5A\n0xDA58\t0x7120\n0xDA59\t0x711E\n0xDA5A\t0x712F\n0xDA5B\t0x70FB\n0xDA5C\t0x712E\n0xDA5D\t0x7131\n0xDA5E\t0x7123\n0xDA5F\t0x7125\n0xDA60\t0x7122\n0xDA61\t0x7132\n0xDA62\t0x711F\n0xDA63\t0x7128\n0xDA64\t0x713A\n0xDA65\t0x711B\n0xDA66\t0x724B\n0xDA67\t0x725A\n0xDA68\t0x7288\n0xDA69\t0x7289\n0xDA6A\t0x7286\n0xDA6B\t0x7285\n0xDA6C\t0x728B\n0xDA6D\t0x7312\n0xDA6E\t0x730B\n0xDA6F\t0x7330\n0xDA70\t0x7322\n0xDA71\t0x7331\n0xDA72\t0x7333\n0xDA73\t0x7327\n0xDA74\t0x7332\n0xDA75\t0x732D\n0xDA76\t0x7326\n0xDA77\t0x7323\n0xDA78\t0x7335\n0xDA79\t0x730C\n0xDA7A\t0x742E\n0xDA7B\t0x742C\n0xDA7C\t0x7430\n0xDA7D\t0x742B\n0xDA7E\t0x7416\n0xDAA1\t0x741A\n0xDAA2\t0x7421\n0xDAA3\t0x742D\n0xDAA4\t0x7431\n0xDAA5\t0x7424\n0xDAA6\t0x7423\n0xDAA7\t0x741D\n0xDAA8\t0x7429\n0xDAA9\t0x7420\n0xDAAA\t0x7432\n0xDAAB\t0x74FB\n0xDAAC\t0x752F\n0xDAAD\t0x756F\n0xDAAE\t0x756C\n0xDAAF\t0x75E7\n0xDAB0\t0x75DA\n0xDAB1\t0x75E1\n0xDAB2\t0x75E6\n0xDAB3\t0x75DD\n0xDAB4\t0x75DF\n0xDAB5\t0x75E4\n0xDAB6\t0x75D7\n0xDAB7\t0x7695\n0xDAB8\t0x7692\n0xDAB9\t0x76DA\n0xDABA\t0x7746\n0xDABB\t0x7747\n0xDABC\t0x7744\n0xDABD\t0x774D\n0xDABE\t0x7745\n0xDABF\t0x774A\n0xDAC0\t0x774E\n0xDAC1\t0x774B\n0xDAC2\t0x774C\n0xDAC3\t0x77DE\n0xDAC4\t0x77EC\n0xDAC5\t0x7860\n0xDAC6\t0x7864\n0xDAC7\t0x7865\n0xDAC8\t0x785C\n0xDAC9\t0x786D\n0xDACA\t0x7871\n0xDACB\t0x786A\n0xDACC\t0x786E\n0xDACD\t0x7870\n0xDACE\t0x7869\n0xDACF\t0x7868\n0xDAD0\t0x785E\n0xDAD1\t0x7862\n0xDAD2\t0x7974\n0xDAD3\t0x7973\n0xDAD4\t0x7972\n0xDAD5\t0x7970\n0xDAD6\t0x7A02\n0xDAD7\t0x7A0A\n0xDAD8\t0x7A03\n0xDAD9\t0x7A0C\n0xDADA\t0x7A04\n0xDADB\t0x7A99\n0xDADC\t0x7AE6\n0xDADD\t0x7AE4\n0xDADE\t0x7B4A\n0xDADF\t0x7B3B\n0xDAE0\t0x7B44\n0xDAE1\t0x7B48\n0xDAE2\t0x7B4C\n0xDAE3\t0x7B4E\n0xDAE4\t0x7B40\n0xDAE5\t0x7B58\n0xDAE6\t0x7B45\n0xDAE7\t0x7CA2\n0xDAE8\t0x7C9E\n0xDAE9\t0x7CA8\n0xDAEA\t0x7CA1\n0xDAEB\t0x7D58\n0xDAEC\t0x7D6F\n0xDAED\t0x7D63\n0xDAEE\t0x7D53\n0xDAEF\t0x7D56\n0xDAF0\t0x7D67\n0xDAF1\t0x7D6A\n0xDAF2\t0x7D4F\n0xDAF3\t0x7D6D\n0xDAF4\t0x7D5C\n0xDAF5\t0x7D6B\n0xDAF6\t0x7D52\n0xDAF7\t0x7D54\n0xDAF8\t0x7D69\n0xDAF9\t0x7D51\n0xDAFA\t0x7D5F\n0xDAFB\t0x7D4E\n0xDAFC\t0x7F3E\n0xDAFD\t0x7F3F\n0xDAFE\t0x7F65\n0xDB40\t0x7F66\n0xDB41\t0x7FA2\n0xDB42\t0x7FA0\n0xDB43\t0x7FA1\n0xDB44\t0x7FD7\n0xDB45\t0x8051\n0xDB46\t0x804F\n0xDB47\t0x8050\n0xDB48\t0x80FE\n0xDB49\t0x80D4\n0xDB4A\t0x8143\n0xDB4B\t0x814A\n0xDB4C\t0x8152\n0xDB4D\t0x814F\n0xDB4E\t0x8147\n0xDB4F\t0x813D\n0xDB50\t0x814D\n0xDB51\t0x813A\n0xDB52\t0x81E6\n0xDB53\t0x81EE\n0xDB54\t0x81F7\n0xDB55\t0x81F8\n0xDB56\t0x81F9\n0xDB57\t0x8204\n0xDB58\t0x823C\n0xDB59\t0x823D\n0xDB5A\t0x823F\n0xDB5B\t0x8275\n0xDB5C\t0x833B\n0xDB5D\t0x83CF\n0xDB5E\t0x83F9\n0xDB5F\t0x8423\n0xDB60\t0x83C0\n0xDB61\t0x83E8\n0xDB62\t0x8412\n0xDB63\t0x83E7\n0xDB64\t0x83E4\n0xDB65\t0x83FC\n0xDB66\t0x83F6\n0xDB67\t0x8410\n0xDB68\t0x83C6\n0xDB69\t0x83C8\n0xDB6A\t0x83EB\n0xDB6B\t0x83E3\n0xDB6C\t0x83BF\n0xDB6D\t0x8401\n0xDB6E\t0x83DD\n0xDB6F\t0x83E5\n0xDB70\t0x83D8\n0xDB71\t0x83FF\n0xDB72\t0x83E1\n0xDB73\t0x83CB\n0xDB74\t0x83CE\n0xDB75\t0x83D6\n0xDB76\t0x83F5\n0xDB77\t0x83C9\n0xDB78\t0x8409\n0xDB79\t0x840F\n0xDB7A\t0x83DE\n0xDB7B\t0x8411\n0xDB7C\t0x8406\n0xDB7D\t0x83C2\n0xDB7E\t0x83F3\n0xDBA1\t0x83D5\n0xDBA2\t0x83FA\n0xDBA3\t0x83C7\n0xDBA4\t0x83D1\n0xDBA5\t0x83EA\n0xDBA6\t0x8413\n0xDBA7\t0x83C3\n0xDBA8\t0x83EC\n0xDBA9\t0x83EE\n0xDBAA\t0x83C4\n0xDBAB\t0x83FB\n0xDBAC\t0x83D7\n0xDBAD\t0x83E2\n0xDBAE\t0x841B\n0xDBAF\t0x83DB\n0xDBB0\t0x83FE\n0xDBB1\t0x86D8\n0xDBB2\t0x86E2\n0xDBB3\t0x86E6\n0xDBB4\t0x86D3\n0xDBB5\t0x86E3\n0xDBB6\t0x86DA\n0xDBB7\t0x86EA\n0xDBB8\t0x86DD\n0xDBB9\t0x86EB\n0xDBBA\t0x86DC\n0xDBBB\t0x86EC\n0xDBBC\t0x86E9\n0xDBBD\t0x86D7\n0xDBBE\t0x86E8\n0xDBBF\t0x86D1\n0xDBC0\t0x8848\n0xDBC1\t0x8856\n0xDBC2\t0x8855\n0xDBC3\t0x88BA\n0xDBC4\t0x88D7\n0xDBC5\t0x88B9\n0xDBC6\t0x88B8\n0xDBC7\t0x88C0\n0xDBC8\t0x88BE\n0xDBC9\t0x88B6\n0xDBCA\t0x88BC\n0xDBCB\t0x88B7\n0xDBCC\t0x88BD\n0xDBCD\t0x88B2\n0xDBCE\t0x8901\n0xDBCF\t0x88C9\n0xDBD0\t0x8995\n0xDBD1\t0x8998\n0xDBD2\t0x8997\n0xDBD3\t0x89DD\n0xDBD4\t0x89DA\n0xDBD5\t0x89DB\n0xDBD6\t0x8A4E\n0xDBD7\t0x8A4D\n0xDBD8\t0x8A39\n0xDBD9\t0x8A59\n0xDBDA\t0x8A40\n0xDBDB\t0x8A57\n0xDBDC\t0x8A58\n0xDBDD\t0x8A44\n0xDBDE\t0x8A45\n0xDBDF\t0x8A52\n0xDBE0\t0x8A48\n0xDBE1\t0x8A51\n0xDBE2\t0x8A4A\n0xDBE3\t0x8A4C\n0xDBE4\t0x8A4F\n0xDBE5\t0x8C5F\n0xDBE6\t0x8C81\n0xDBE7\t0x8C80\n0xDBE8\t0x8CBA\n0xDBE9\t0x8CBE\n0xDBEA\t0x8CB0\n0xDBEB\t0x8CB9\n0xDBEC\t0x8CB5\n0xDBED\t0x8D84\n0xDBEE\t0x8D80\n0xDBEF\t0x8D89\n0xDBF0\t0x8DD8\n0xDBF1\t0x8DD3\n0xDBF2\t0x8DCD\n0xDBF3\t0x8DC7\n0xDBF4\t0x8DD6\n0xDBF5\t0x8DDC\n0xDBF6\t0x8DCF\n0xDBF7\t0x8DD5\n0xDBF8\t0x8DD9\n0xDBF9\t0x8DC8\n0xDBFA\t0x8DD7\n0xDBFB\t0x8DC5\n0xDBFC\t0x8EEF\n0xDBFD\t0x8EF7\n0xDBFE\t0x8EFA\n0xDC40\t0x8EF9\n0xDC41\t0x8EE6\n0xDC42\t0x8EEE\n0xDC43\t0x8EE5\n0xDC44\t0x8EF5\n0xDC45\t0x8EE7\n0xDC46\t0x8EE8\n0xDC47\t0x8EF6\n0xDC48\t0x8EEB\n0xDC49\t0x8EF1\n0xDC4A\t0x8EEC\n0xDC4B\t0x8EF4\n0xDC4C\t0x8EE9\n0xDC4D\t0x902D\n0xDC4E\t0x9034\n0xDC4F\t0x902F\n0xDC50\t0x9106\n0xDC51\t0x912C\n0xDC52\t0x9104\n0xDC53\t0x90FF\n0xDC54\t0x90FC\n0xDC55\t0x9108\n0xDC56\t0x90F9\n0xDC57\t0x90FB\n0xDC58\t0x9101\n0xDC59\t0x9100\n0xDC5A\t0x9107\n0xDC5B\t0x9105\n0xDC5C\t0x9103\n0xDC5D\t0x9161\n0xDC5E\t0x9164\n0xDC5F\t0x915F\n0xDC60\t0x9162\n0xDC61\t0x9160\n0xDC62\t0x9201\n0xDC63\t0x920A\n0xDC64\t0x9225\n0xDC65\t0x9203\n0xDC66\t0x921A\n0xDC67\t0x9226\n0xDC68\t0x920F\n0xDC69\t0x920C\n0xDC6A\t0x9200\n0xDC6B\t0x9212\n0xDC6C\t0x91FF\n0xDC6D\t0x91FD\n0xDC6E\t0x9206\n0xDC6F\t0x9204\n0xDC70\t0x9227\n0xDC71\t0x9202\n0xDC72\t0x921C\n0xDC73\t0x9224\n0xDC74\t0x9219\n0xDC75\t0x9217\n0xDC76\t0x9205\n0xDC77\t0x9216\n0xDC78\t0x957B\n0xDC79\t0x958D\n0xDC7A\t0x958C\n0xDC7B\t0x9590\n0xDC7C\t0x9687\n0xDC7D\t0x967E\n0xDC7E\t0x9688\n0xDCA1\t0x9689\n0xDCA2\t0x9683\n0xDCA3\t0x9680\n0xDCA4\t0x96C2\n0xDCA5\t0x96C8\n0xDCA6\t0x96C3\n0xDCA7\t0x96F1\n0xDCA8\t0x96F0\n0xDCA9\t0x976C\n0xDCAA\t0x9770\n0xDCAB\t0x976E\n0xDCAC\t0x9807\n0xDCAD\t0x98A9\n0xDCAE\t0x98EB\n0xDCAF\t0x9CE6\n0xDCB0\t0x9EF9\n0xDCB1\t0x4E83\n0xDCB2\t0x4E84\n0xDCB3\t0x4EB6\n0xDCB4\t0x50BD\n0xDCB5\t0x50BF\n0xDCB6\t0x50C6\n0xDCB7\t0x50AE\n0xDCB8\t0x50C4\n0xDCB9\t0x50CA\n0xDCBA\t0x50B4\n0xDCBB\t0x50C8\n0xDCBC\t0x50C2\n0xDCBD\t0x50B0\n0xDCBE\t0x50C1\n0xDCBF\t0x50BA\n0xDCC0\t0x50B1\n0xDCC1\t0x50CB\n0xDCC2\t0x50C9\n0xDCC3\t0x50B6\n0xDCC4\t0x50B8\n0xDCC5\t0x51D7\n0xDCC6\t0x527A\n0xDCC7\t0x5278\n0xDCC8\t0x527B\n0xDCC9\t0x527C\n0xDCCA\t0x55C3\n0xDCCB\t0x55DB\n0xDCCC\t0x55CC\n0xDCCD\t0x55D0\n0xDCCE\t0x55CB\n0xDCCF\t0x55CA\n0xDCD0\t0x55DD\n0xDCD1\t0x55C0\n0xDCD2\t0x55D4\n0xDCD3\t0x55C4\n0xDCD4\t0x55E9\n0xDCD5\t0x55BF\n0xDCD6\t0x55D2\n0xDCD7\t0x558D\n0xDCD8\t0x55CF\n0xDCD9\t0x55D5\n0xDCDA\t0x55E2\n0xDCDB\t0x55D6\n0xDCDC\t0x55C8\n0xDCDD\t0x55F2\n0xDCDE\t0x55CD\n0xDCDF\t0x55D9\n0xDCE0\t0x55C2\n0xDCE1\t0x5714\n0xDCE2\t0x5853\n0xDCE3\t0x5868\n0xDCE4\t0x5864\n0xDCE5\t0x584F\n0xDCE6\t0x584D\n0xDCE7\t0x5849\n0xDCE8\t0x586F\n0xDCE9\t0x5855\n0xDCEA\t0x584E\n0xDCEB\t0x585D\n0xDCEC\t0x5859\n0xDCED\t0x5865\n0xDCEE\t0x585B\n0xDCEF\t0x583D\n0xDCF0\t0x5863\n0xDCF1\t0x5871\n0xDCF2\t0x58FC\n0xDCF3\t0x5AC7\n0xDCF4\t0x5AC4\n0xDCF5\t0x5ACB\n0xDCF6\t0x5ABA\n0xDCF7\t0x5AB8\n0xDCF8\t0x5AB1\n0xDCF9\t0x5AB5\n0xDCFA\t0x5AB0\n0xDCFB\t0x5ABF\n0xDCFC\t0x5AC8\n0xDCFD\t0x5ABB\n0xDCFE\t0x5AC6\n0xDD40\t0x5AB7\n0xDD41\t0x5AC0\n0xDD42\t0x5ACA\n0xDD43\t0x5AB4\n0xDD44\t0x5AB6\n0xDD45\t0x5ACD\n0xDD46\t0x5AB9\n0xDD47\t0x5A90\n0xDD48\t0x5BD6\n0xDD49\t0x5BD8\n0xDD4A\t0x5BD9\n0xDD4B\t0x5C1F\n0xDD4C\t0x5C33\n0xDD4D\t0x5D71\n0xDD4E\t0x5D63\n0xDD4F\t0x5D4A\n0xDD50\t0x5D65\n0xDD51\t0x5D72\n0xDD52\t0x5D6C\n0xDD53\t0x5D5E\n0xDD54\t0x5D68\n0xDD55\t0x5D67\n0xDD56\t0x5D62\n0xDD57\t0x5DF0\n0xDD58\t0x5E4F\n0xDD59\t0x5E4E\n0xDD5A\t0x5E4A\n0xDD5B\t0x5E4D\n0xDD5C\t0x5E4B\n0xDD5D\t0x5EC5\n0xDD5E\t0x5ECC\n0xDD5F\t0x5EC6\n0xDD60\t0x5ECB\n0xDD61\t0x5EC7\n0xDD62\t0x5F40\n0xDD63\t0x5FAF\n0xDD64\t0x5FAD\n0xDD65\t0x60F7\n0xDD66\t0x6149\n0xDD67\t0x614A\n0xDD68\t0x612B\n0xDD69\t0x6145\n0xDD6A\t0x6136\n0xDD6B\t0x6132\n0xDD6C\t0x612E\n0xDD6D\t0x6146\n0xDD6E\t0x612F\n0xDD6F\t0x614F\n0xDD70\t0x6129\n0xDD71\t0x6140\n0xDD72\t0x6220\n0xDD73\t0x9168\n0xDD74\t0x6223\n0xDD75\t0x6225\n0xDD76\t0x6224\n0xDD77\t0x63C5\n0xDD78\t0x63F1\n0xDD79\t0x63EB\n0xDD7A\t0x6410\n0xDD7B\t0x6412\n0xDD7C\t0x6409\n0xDD7D\t0x6420\n0xDD7E\t0x6424\n0xDDA1\t0x6433\n0xDDA2\t0x6443\n0xDDA3\t0x641F\n0xDDA4\t0x6415\n0xDDA5\t0x6418\n0xDDA6\t0x6439\n0xDDA7\t0x6437\n0xDDA8\t0x6422\n0xDDA9\t0x6423\n0xDDAA\t0x640C\n0xDDAB\t0x6426\n0xDDAC\t0x6430\n0xDDAD\t0x6428\n0xDDAE\t0x6441\n0xDDAF\t0x6435\n0xDDB0\t0x642F\n0xDDB1\t0x640A\n0xDDB2\t0x641A\n0xDDB3\t0x6440\n0xDDB4\t0x6425\n0xDDB5\t0x6427\n0xDDB6\t0x640B\n0xDDB7\t0x63E7\n0xDDB8\t0x641B\n0xDDB9\t0x642E\n0xDDBA\t0x6421\n0xDDBB\t0x640E\n0xDDBC\t0x656F\n0xDDBD\t0x6592\n0xDDBE\t0x65D3\n0xDDBF\t0x6686\n0xDDC0\t0x668C\n0xDDC1\t0x6695\n0xDDC2\t0x6690\n0xDDC3\t0x668B\n0xDDC4\t0x668A\n0xDDC5\t0x6699\n0xDDC6\t0x6694\n0xDDC7\t0x6678\n0xDDC8\t0x6720\n0xDDC9\t0x6966\n0xDDCA\t0x695F\n0xDDCB\t0x6938\n0xDDCC\t0x694E\n0xDDCD\t0x6962\n0xDDCE\t0x6971\n0xDDCF\t0x693F\n0xDDD0\t0x6945\n0xDDD1\t0x696A\n0xDDD2\t0x6939\n0xDDD3\t0x6942\n0xDDD4\t0x6957\n0xDDD5\t0x6959\n0xDDD6\t0x697A\n0xDDD7\t0x6948\n0xDDD8\t0x6949\n0xDDD9\t0x6935\n0xDDDA\t0x696C\n0xDDDB\t0x6933\n0xDDDC\t0x693D\n0xDDDD\t0x6965\n0xDDDE\t0x68F0\n0xDDDF\t0x6978\n0xDDE0\t0x6934\n0xDDE1\t0x6969\n0xDDE2\t0x6940\n0xDDE3\t0x696F\n0xDDE4\t0x6944\n0xDDE5\t0x6976\n0xDDE6\t0x6958\n0xDDE7\t0x6941\n0xDDE8\t0x6974\n0xDDE9\t0x694C\n0xDDEA\t0x693B\n0xDDEB\t0x694B\n0xDDEC\t0x6937\n0xDDED\t0x695C\n0xDDEE\t0x694F\n0xDDEF\t0x6951\n0xDDF0\t0x6932\n0xDDF1\t0x6952\n0xDDF2\t0x692F\n0xDDF3\t0x697B\n0xDDF4\t0x693C\n0xDDF5\t0x6B46\n0xDDF6\t0x6B45\n0xDDF7\t0x6B43\n0xDDF8\t0x6B42\n0xDDF9\t0x6B48\n0xDDFA\t0x6B41\n0xDDFB\t0x6B9B\n0xDDFC\t0xFA0D\n0xDDFD\t0x6BFB\n0xDDFE\t0x6BFC\n0xDE40\t0x6BF9\n0xDE41\t0x6BF7\n0xDE42\t0x6BF8\n0xDE43\t0x6E9B\n0xDE44\t0x6ED6\n0xDE45\t0x6EC8\n0xDE46\t0x6E8F\n0xDE47\t0x6EC0\n0xDE48\t0x6E9F\n0xDE49\t0x6E93\n0xDE4A\t0x6E94\n0xDE4B\t0x6EA0\n0xDE4C\t0x6EB1\n0xDE4D\t0x6EB9\n0xDE4E\t0x6EC6\n0xDE4F\t0x6ED2\n0xDE50\t0x6EBD\n0xDE51\t0x6EC1\n0xDE52\t0x6E9E\n0xDE53\t0x6EC9\n0xDE54\t0x6EB7\n0xDE55\t0x6EB0\n0xDE56\t0x6ECD\n0xDE57\t0x6EA6\n0xDE58\t0x6ECF\n0xDE59\t0x6EB2\n0xDE5A\t0x6EBE\n0xDE5B\t0x6EC3\n0xDE5C\t0x6EDC\n0xDE5D\t0x6ED8\n0xDE5E\t0x6E99\n0xDE5F\t0x6E92\n0xDE60\t0x6E8E\n0xDE61\t0x6E8D\n0xDE62\t0x6EA4\n0xDE63\t0x6EA1\n0xDE64\t0x6EBF\n0xDE65\t0x6EB3\n0xDE66\t0x6ED0\n0xDE67\t0x6ECA\n0xDE68\t0x6E97\n0xDE69\t0x6EAE\n0xDE6A\t0x6EA3\n0xDE6B\t0x7147\n0xDE6C\t0x7154\n0xDE6D\t0x7152\n0xDE6E\t0x7163\n0xDE6F\t0x7160\n0xDE70\t0x7141\n0xDE71\t0x715D\n0xDE72\t0x7162\n0xDE73\t0x7172\n0xDE74\t0x7178\n0xDE75\t0x716A\n0xDE76\t0x7161\n0xDE77\t0x7142\n0xDE78\t0x7158\n0xDE79\t0x7143\n0xDE7A\t0x714B\n0xDE7B\t0x7170\n0xDE7C\t0x715F\n0xDE7D\t0x7150\n0xDE7E\t0x7153\n0xDEA1\t0x7144\n0xDEA2\t0x714D\n0xDEA3\t0x715A\n0xDEA4\t0x724F\n0xDEA5\t0x728D\n0xDEA6\t0x728C\n0xDEA7\t0x7291\n0xDEA8\t0x7290\n0xDEA9\t0x728E\n0xDEAA\t0x733C\n0xDEAB\t0x7342\n0xDEAC\t0x733B\n0xDEAD\t0x733A\n0xDEAE\t0x7340\n0xDEAF\t0x734A\n0xDEB0\t0x7349\n0xDEB1\t0x7444\n0xDEB2\t0x744A\n0xDEB3\t0x744B\n0xDEB4\t0x7452\n0xDEB5\t0x7451\n0xDEB6\t0x7457\n0xDEB7\t0x7440\n0xDEB8\t0x744F\n0xDEB9\t0x7450\n0xDEBA\t0x744E\n0xDEBB\t0x7442\n0xDEBC\t0x7446\n0xDEBD\t0x744D\n0xDEBE\t0x7454\n0xDEBF\t0x74E1\n0xDEC0\t0x74FF\n0xDEC1\t0x74FE\n0xDEC2\t0x74FD\n0xDEC3\t0x751D\n0xDEC4\t0x7579\n0xDEC5\t0x7577\n0xDEC6\t0x6983\n0xDEC7\t0x75EF\n0xDEC8\t0x760F\n0xDEC9\t0x7603\n0xDECA\t0x75F7\n0xDECB\t0x75FE\n0xDECC\t0x75FC\n0xDECD\t0x75F9\n0xDECE\t0x75F8\n0xDECF\t0x7610\n0xDED0\t0x75FB\n0xDED1\t0x75F6\n0xDED2\t0x75ED\n0xDED3\t0x75F5\n0xDED4\t0x75FD\n0xDED5\t0x7699\n0xDED6\t0x76B5\n0xDED7\t0x76DD\n0xDED8\t0x7755\n0xDED9\t0x775F\n0xDEDA\t0x7760\n0xDEDB\t0x7752\n0xDEDC\t0x7756\n0xDEDD\t0x775A\n0xDEDE\t0x7769\n0xDEDF\t0x7767\n0xDEE0\t0x7754\n0xDEE1\t0x7759\n0xDEE2\t0x776D\n0xDEE3\t0x77E0\n0xDEE4\t0x7887\n0xDEE5\t0x789A\n0xDEE6\t0x7894\n0xDEE7\t0x788F\n0xDEE8\t0x7884\n0xDEE9\t0x7895\n0xDEEA\t0x7885\n0xDEEB\t0x7886\n0xDEEC\t0x78A1\n0xDEED\t0x7883\n0xDEEE\t0x7879\n0xDEEF\t0x7899\n0xDEF0\t0x7880\n0xDEF1\t0x7896\n0xDEF2\t0x787B\n0xDEF3\t0x797C\n0xDEF4\t0x7982\n0xDEF5\t0x797D\n0xDEF6\t0x7979\n0xDEF7\t0x7A11\n0xDEF8\t0x7A18\n0xDEF9\t0x7A19\n0xDEFA\t0x7A12\n0xDEFB\t0x7A17\n0xDEFC\t0x7A15\n0xDEFD\t0x7A22\n0xDEFE\t0x7A13\n0xDF40\t0x7A1B\n0xDF41\t0x7A10\n0xDF42\t0x7AA3\n0xDF43\t0x7AA2\n0xDF44\t0x7A9E\n0xDF45\t0x7AEB\n0xDF46\t0x7B66\n0xDF47\t0x7B64\n0xDF48\t0x7B6D\n0xDF49\t0x7B74\n0xDF4A\t0x7B69\n0xDF4B\t0x7B72\n0xDF4C\t0x7B65\n0xDF4D\t0x7B73\n0xDF4E\t0x7B71\n0xDF4F\t0x7B70\n0xDF50\t0x7B61\n0xDF51\t0x7B78\n0xDF52\t0x7B76\n0xDF53\t0x7B63\n0xDF54\t0x7CB2\n0xDF55\t0x7CB4\n0xDF56\t0x7CAF\n0xDF57\t0x7D88\n0xDF58\t0x7D86\n0xDF59\t0x7D80\n0xDF5A\t0x7D8D\n0xDF5B\t0x7D7F\n0xDF5C\t0x7D85\n0xDF5D\t0x7D7A\n0xDF5E\t0x7D8E\n0xDF5F\t0x7D7B\n0xDF60\t0x7D83\n0xDF61\t0x7D7C\n0xDF62\t0x7D8C\n0xDF63\t0x7D94\n0xDF64\t0x7D84\n0xDF65\t0x7D7D\n0xDF66\t0x7D92\n0xDF67\t0x7F6D\n0xDF68\t0x7F6B\n0xDF69\t0x7F67\n0xDF6A\t0x7F68\n0xDF6B\t0x7F6C\n0xDF6C\t0x7FA6\n0xDF6D\t0x7FA5\n0xDF6E\t0x7FA7\n0xDF6F\t0x7FDB\n0xDF70\t0x7FDC\n0xDF71\t0x8021\n0xDF72\t0x8164\n0xDF73\t0x8160\n0xDF74\t0x8177\n0xDF75\t0x815C\n0xDF76\t0x8169\n0xDF77\t0x815B\n0xDF78\t0x8162\n0xDF79\t0x8172\n0xDF7A\t0x6721\n0xDF7B\t0x815E\n0xDF7C\t0x8176\n0xDF7D\t0x8167\n0xDF7E\t0x816F\n0xDFA1\t0x8144\n0xDFA2\t0x8161\n0xDFA3\t0x821D\n0xDFA4\t0x8249\n0xDFA5\t0x8244\n0xDFA6\t0x8240\n0xDFA7\t0x8242\n0xDFA8\t0x8245\n0xDFA9\t0x84F1\n0xDFAA\t0x843F\n0xDFAB\t0x8456\n0xDFAC\t0x8476\n0xDFAD\t0x8479\n0xDFAE\t0x848F\n0xDFAF\t0x848D\n0xDFB0\t0x8465\n0xDFB1\t0x8451\n0xDFB2\t0x8440\n0xDFB3\t0x8486\n0xDFB4\t0x8467\n0xDFB5\t0x8430\n0xDFB6\t0x844D\n0xDFB7\t0x847D\n0xDFB8\t0x845A\n0xDFB9\t0x8459\n0xDFBA\t0x8474\n0xDFBB\t0x8473\n0xDFBC\t0x845D\n0xDFBD\t0x8507\n0xDFBE\t0x845E\n0xDFBF\t0x8437\n0xDFC0\t0x843A\n0xDFC1\t0x8434\n0xDFC2\t0x847A\n0xDFC3\t0x8443\n0xDFC4\t0x8478\n0xDFC5\t0x8432\n0xDFC6\t0x8445\n0xDFC7\t0x8429\n0xDFC8\t0x83D9\n0xDFC9\t0x844B\n0xDFCA\t0x842F\n0xDFCB\t0x8442\n0xDFCC\t0x842D\n0xDFCD\t0x845F\n0xDFCE\t0x8470\n0xDFCF\t0x8439\n0xDFD0\t0x844E\n0xDFD1\t0x844C\n0xDFD2\t0x8452\n0xDFD3\t0x846F\n0xDFD4\t0x84C5\n0xDFD5\t0x848E\n0xDFD6\t0x843B\n0xDFD7\t0x8447\n0xDFD8\t0x8436\n0xDFD9\t0x8433\n0xDFDA\t0x8468\n0xDFDB\t0x847E\n0xDFDC\t0x8444\n0xDFDD\t0x842B\n0xDFDE\t0x8460\n0xDFDF\t0x8454\n0xDFE0\t0x846E\n0xDFE1\t0x8450\n0xDFE2\t0x870B\n0xDFE3\t0x8704\n0xDFE4\t0x86F7\n0xDFE5\t0x870C\n0xDFE6\t0x86FA\n0xDFE7\t0x86D6\n0xDFE8\t0x86F5\n0xDFE9\t0x874D\n0xDFEA\t0x86F8\n0xDFEB\t0x870E\n0xDFEC\t0x8709\n0xDFED\t0x8701\n0xDFEE\t0x86F6\n0xDFEF\t0x870D\n0xDFF0\t0x8705\n0xDFF1\t0x88D6\n0xDFF2\t0x88CB\n0xDFF3\t0x88CD\n0xDFF4\t0x88CE\n0xDFF5\t0x88DE\n0xDFF6\t0x88DB\n0xDFF7\t0x88DA\n0xDFF8\t0x88CC\n0xDFF9\t0x88D0\n0xDFFA\t0x8985\n0xDFFB\t0x899B\n0xDFFC\t0x89DF\n0xDFFD\t0x89E5\n0xDFFE\t0x89E4\n0xE040\t0x89E1\n0xE041\t0x89E0\n0xE042\t0x89E2\n0xE043\t0x89DC\n0xE044\t0x89E6\n0xE045\t0x8A76\n0xE046\t0x8A86\n0xE047\t0x8A7F\n0xE048\t0x8A61\n0xE049\t0x8A3F\n0xE04A\t0x8A77\n0xE04B\t0x8A82\n0xE04C\t0x8A84\n0xE04D\t0x8A75\n0xE04E\t0x8A83\n0xE04F\t0x8A81\n0xE050\t0x8A74\n0xE051\t0x8A7A\n0xE052\t0x8C3C\n0xE053\t0x8C4B\n0xE054\t0x8C4A\n0xE055\t0x8C65\n0xE056\t0x8C64\n0xE057\t0x8C66\n0xE058\t0x8C86\n0xE059\t0x8C84\n0xE05A\t0x8C85\n0xE05B\t0x8CCC\n0xE05C\t0x8D68\n0xE05D\t0x8D69\n0xE05E\t0x8D91\n0xE05F\t0x8D8C\n0xE060\t0x8D8E\n0xE061\t0x8D8F\n0xE062\t0x8D8D\n0xE063\t0x8D93\n0xE064\t0x8D94\n0xE065\t0x8D90\n0xE066\t0x8D92\n0xE067\t0x8DF0\n0xE068\t0x8DE0\n0xE069\t0x8DEC\n0xE06A\t0x8DF1\n0xE06B\t0x8DEE\n0xE06C\t0x8DD0\n0xE06D\t0x8DE9\n0xE06E\t0x8DE3\n0xE06F\t0x8DE2\n0xE070\t0x8DE7\n0xE071\t0x8DF2\n0xE072\t0x8DEB\n0xE073\t0x8DF4\n0xE074\t0x8F06\n0xE075\t0x8EFF\n0xE076\t0x8F01\n0xE077\t0x8F00\n0xE078\t0x8F05\n0xE079\t0x8F07\n0xE07A\t0x8F08\n0xE07B\t0x8F02\n0xE07C\t0x8F0B\n0xE07D\t0x9052\n0xE07E\t0x903F\n0xE0A1\t0x9044\n0xE0A2\t0x9049\n0xE0A3\t0x903D\n0xE0A4\t0x9110\n0xE0A5\t0x910D\n0xE0A6\t0x910F\n0xE0A7\t0x9111\n0xE0A8\t0x9116\n0xE0A9\t0x9114\n0xE0AA\t0x910B\n0xE0AB\t0x910E\n0xE0AC\t0x916E\n0xE0AD\t0x916F\n0xE0AE\t0x9248\n0xE0AF\t0x9252\n0xE0B0\t0x9230\n0xE0B1\t0x923A\n0xE0B2\t0x9266\n0xE0B3\t0x9233\n0xE0B4\t0x9265\n0xE0B5\t0x925E\n0xE0B6\t0x9283\n0xE0B7\t0x922E\n0xE0B8\t0x924A\n0xE0B9\t0x9246\n0xE0BA\t0x926D\n0xE0BB\t0x926C\n0xE0BC\t0x924F\n0xE0BD\t0x9260\n0xE0BE\t0x9267\n0xE0BF\t0x926F\n0xE0C0\t0x9236\n0xE0C1\t0x9261\n0xE0C2\t0x9270\n0xE0C3\t0x9231\n0xE0C4\t0x9254\n0xE0C5\t0x9263\n0xE0C6\t0x9250\n0xE0C7\t0x9272\n0xE0C8\t0x924E\n0xE0C9\t0x9253\n0xE0CA\t0x924C\n0xE0CB\t0x9256\n0xE0CC\t0x9232\n0xE0CD\t0x959F\n0xE0CE\t0x959C\n0xE0CF\t0x959E\n0xE0D0\t0x959B\n0xE0D1\t0x9692\n0xE0D2\t0x9693\n0xE0D3\t0x9691\n0xE0D4\t0x9697\n0xE0D5\t0x96CE\n0xE0D6\t0x96FA\n0xE0D7\t0x96FD\n0xE0D8\t0x96F8\n0xE0D9\t0x96F5\n0xE0DA\t0x9773\n0xE0DB\t0x9777\n0xE0DC\t0x9778\n0xE0DD\t0x9772\n0xE0DE\t0x980F\n0xE0DF\t0x980D\n0xE0E0\t0x980E\n0xE0E1\t0x98AC\n0xE0E2\t0x98F6\n0xE0E3\t0x98F9\n0xE0E4\t0x99AF\n0xE0E5\t0x99B2\n0xE0E6\t0x99B0\n0xE0E7\t0x99B5\n0xE0E8\t0x9AAD\n0xE0E9\t0x9AAB\n0xE0EA\t0x9B5B\n0xE0EB\t0x9CEA\n0xE0EC\t0x9CED\n0xE0ED\t0x9CE7\n0xE0EE\t0x9E80\n0xE0EF\t0x9EFD\n0xE0F0\t0x50E6\n0xE0F1\t0x50D4\n0xE0F2\t0x50D7\n0xE0F3\t0x50E8\n0xE0F4\t0x50F3\n0xE0F5\t0x50DB\n0xE0F6\t0x50EA\n0xE0F7\t0x50DD\n0xE0F8\t0x50E4\n0xE0F9\t0x50D3\n0xE0FA\t0x50EC\n0xE0FB\t0x50F0\n0xE0FC\t0x50EF\n0xE0FD\t0x50E3\n0xE0FE\t0x50E0\n0xE140\t0x51D8\n0xE141\t0x5280\n0xE142\t0x5281\n0xE143\t0x52E9\n0xE144\t0x52EB\n0xE145\t0x5330\n0xE146\t0x53AC\n0xE147\t0x5627\n0xE148\t0x5615\n0xE149\t0x560C\n0xE14A\t0x5612\n0xE14B\t0x55FC\n0xE14C\t0x560F\n0xE14D\t0x561C\n0xE14E\t0x5601\n0xE14F\t0x5613\n0xE150\t0x5602\n0xE151\t0x55FA\n0xE152\t0x561D\n0xE153\t0x5604\n0xE154\t0x55FF\n0xE155\t0x55F9\n0xE156\t0x5889\n0xE157\t0x587C\n0xE158\t0x5890\n0xE159\t0x5898\n0xE15A\t0x5886\n0xE15B\t0x5881\n0xE15C\t0x587F\n0xE15D\t0x5874\n0xE15E\t0x588B\n0xE15F\t0x587A\n0xE160\t0x5887\n0xE161\t0x5891\n0xE162\t0x588E\n0xE163\t0x5876\n0xE164\t0x5882\n0xE165\t0x5888\n0xE166\t0x587B\n0xE167\t0x5894\n0xE168\t0x588F\n0xE169\t0x58FE\n0xE16A\t0x596B\n0xE16B\t0x5ADC\n0xE16C\t0x5AEE\n0xE16D\t0x5AE5\n0xE16E\t0x5AD5\n0xE16F\t0x5AEA\n0xE170\t0x5ADA\n0xE171\t0x5AED\n0xE172\t0x5AEB\n0xE173\t0x5AF3\n0xE174\t0x5AE2\n0xE175\t0x5AE0\n0xE176\t0x5ADB\n0xE177\t0x5AEC\n0xE178\t0x5ADE\n0xE179\t0x5ADD\n0xE17A\t0x5AD9\n0xE17B\t0x5AE8\n0xE17C\t0x5ADF\n0xE17D\t0x5B77\n0xE17E\t0x5BE0\n0xE1A1\t0x5BE3\n0xE1A2\t0x5C63\n0xE1A3\t0x5D82\n0xE1A4\t0x5D80\n0xE1A5\t0x5D7D\n0xE1A6\t0x5D86\n0xE1A7\t0x5D7A\n0xE1A8\t0x5D81\n0xE1A9\t0x5D77\n0xE1AA\t0x5D8A\n0xE1AB\t0x5D89\n0xE1AC\t0x5D88\n0xE1AD\t0x5D7E\n0xE1AE\t0x5D7C\n0xE1AF\t0x5D8D\n0xE1B0\t0x5D79\n0xE1B1\t0x5D7F\n0xE1B2\t0x5E58\n0xE1B3\t0x5E59\n0xE1B4\t0x5E53\n0xE1B5\t0x5ED8\n0xE1B6\t0x5ED1\n0xE1B7\t0x5ED7\n0xE1B8\t0x5ECE\n0xE1B9\t0x5EDC\n0xE1BA\t0x5ED5\n0xE1BB\t0x5ED9\n0xE1BC\t0x5ED2\n0xE1BD\t0x5ED4\n0xE1BE\t0x5F44\n0xE1BF\t0x5F43\n0xE1C0\t0x5F6F\n0xE1C1\t0x5FB6\n0xE1C2\t0x612C\n0xE1C3\t0x6128\n0xE1C4\t0x6141\n0xE1C5\t0x615E\n0xE1C6\t0x6171\n0xE1C7\t0x6173\n0xE1C8\t0x6152\n0xE1C9\t0x6153\n0xE1CA\t0x6172\n0xE1CB\t0x616C\n0xE1CC\t0x6180\n0xE1CD\t0x6174\n0xE1CE\t0x6154\n0xE1CF\t0x617A\n0xE1D0\t0x615B\n0xE1D1\t0x6165\n0xE1D2\t0x613B\n0xE1D3\t0x616A\n0xE1D4\t0x6161\n0xE1D5\t0x6156\n0xE1D6\t0x6229\n0xE1D7\t0x6227\n0xE1D8\t0x622B\n0xE1D9\t0x642B\n0xE1DA\t0x644D\n0xE1DB\t0x645B\n0xE1DC\t0x645D\n0xE1DD\t0x6474\n0xE1DE\t0x6476\n0xE1DF\t0x6472\n0xE1E0\t0x6473\n0xE1E1\t0x647D\n0xE1E2\t0x6475\n0xE1E3\t0x6466\n0xE1E4\t0x64A6\n0xE1E5\t0x644E\n0xE1E6\t0x6482\n0xE1E7\t0x645E\n0xE1E8\t0x645C\n0xE1E9\t0x644B\n0xE1EA\t0x6453\n0xE1EB\t0x6460\n0xE1EC\t0x6450\n0xE1ED\t0x647F\n0xE1EE\t0x643F\n0xE1EF\t0x646C\n0xE1F0\t0x646B\n0xE1F1\t0x6459\n0xE1F2\t0x6465\n0xE1F3\t0x6477\n0xE1F4\t0x6573\n0xE1F5\t0x65A0\n0xE1F6\t0x66A1\n0xE1F7\t0x66A0\n0xE1F8\t0x669F\n0xE1F9\t0x6705\n0xE1FA\t0x6704\n0xE1FB\t0x6722\n0xE1FC\t0x69B1\n0xE1FD\t0x69B6\n0xE1FE\t0x69C9\n0xE240\t0x69A0\n0xE241\t0x69CE\n0xE242\t0x6996\n0xE243\t0x69B0\n0xE244\t0x69AC\n0xE245\t0x69BC\n0xE246\t0x6991\n0xE247\t0x6999\n0xE248\t0x698E\n0xE249\t0x69A7\n0xE24A\t0x698D\n0xE24B\t0x69A9\n0xE24C\t0x69BE\n0xE24D\t0x69AF\n0xE24E\t0x69BF\n0xE24F\t0x69C4\n0xE250\t0x69BD\n0xE251\t0x69A4\n0xE252\t0x69D4\n0xE253\t0x69B9\n0xE254\t0x69CA\n0xE255\t0x699A\n0xE256\t0x69CF\n0xE257\t0x69B3\n0xE258\t0x6993\n0xE259\t0x69AA\n0xE25A\t0x69A1\n0xE25B\t0x699E\n0xE25C\t0x69D9\n0xE25D\t0x6997\n0xE25E\t0x6990\n0xE25F\t0x69C2\n0xE260\t0x69B5\n0xE261\t0x69A5\n0xE262\t0x69C6\n0xE263\t0x6B4A\n0xE264\t0x6B4D\n0xE265\t0x6B4B\n0xE266\t0x6B9E\n0xE267\t0x6B9F\n0xE268\t0x6BA0\n0xE269\t0x6BC3\n0xE26A\t0x6BC4\n0xE26B\t0x6BFE\n0xE26C\t0x6ECE\n0xE26D\t0x6EF5\n0xE26E\t0x6EF1\n0xE26F\t0x6F03\n0xE270\t0x6F25\n0xE271\t0x6EF8\n0xE272\t0x6F37\n0xE273\t0x6EFB\n0xE274\t0x6F2E\n0xE275\t0x6F09\n0xE276\t0x6F4E\n0xE277\t0x6F19\n0xE278\t0x6F1A\n0xE279\t0x6F27\n0xE27A\t0x6F18\n0xE27B\t0x6F3B\n0xE27C\t0x6F12\n0xE27D\t0x6EED\n0xE27E\t0x6F0A\n0xE2A1\t0x6F36\n0xE2A2\t0x6F73\n0xE2A3\t0x6EF9\n0xE2A4\t0x6EEE\n0xE2A5\t0x6F2D\n0xE2A6\t0x6F40\n0xE2A7\t0x6F30\n0xE2A8\t0x6F3C\n0xE2A9\t0x6F35\n0xE2AA\t0x6EEB\n0xE2AB\t0x6F07\n0xE2AC\t0x6F0E\n0xE2AD\t0x6F43\n0xE2AE\t0x6F05\n0xE2AF\t0x6EFD\n0xE2B0\t0x6EF6\n0xE2B1\t0x6F39\n0xE2B2\t0x6F1C\n0xE2B3\t0x6EFC\n0xE2B4\t0x6F3A\n0xE2B5\t0x6F1F\n0xE2B6\t0x6F0D\n0xE2B7\t0x6F1E\n0xE2B8\t0x6F08\n0xE2B9\t0x6F21\n0xE2BA\t0x7187\n0xE2BB\t0x7190\n0xE2BC\t0x7189\n0xE2BD\t0x7180\n0xE2BE\t0x7185\n0xE2BF\t0x7182\n0xE2C0\t0x718F\n0xE2C1\t0x717B\n0xE2C2\t0x7186\n0xE2C3\t0x7181\n0xE2C4\t0x7197\n0xE2C5\t0x7244\n0xE2C6\t0x7253\n0xE2C7\t0x7297\n0xE2C8\t0x7295\n0xE2C9\t0x7293\n0xE2CA\t0x7343\n0xE2CB\t0x734D\n0xE2CC\t0x7351\n0xE2CD\t0x734C\n0xE2CE\t0x7462\n0xE2CF\t0x7473\n0xE2D0\t0x7471\n0xE2D1\t0x7475\n0xE2D2\t0x7472\n0xE2D3\t0x7467\n0xE2D4\t0x746E\n0xE2D5\t0x7500\n0xE2D6\t0x7502\n0xE2D7\t0x7503\n0xE2D8\t0x757D\n0xE2D9\t0x7590\n0xE2DA\t0x7616\n0xE2DB\t0x7608\n0xE2DC\t0x760C\n0xE2DD\t0x7615\n0xE2DE\t0x7611\n0xE2DF\t0x760A\n0xE2E0\t0x7614\n0xE2E1\t0x76B8\n0xE2E2\t0x7781\n0xE2E3\t0x777C\n0xE2E4\t0x7785\n0xE2E5\t0x7782\n0xE2E6\t0x776E\n0xE2E7\t0x7780\n0xE2E8\t0x776F\n0xE2E9\t0x777E\n0xE2EA\t0x7783\n0xE2EB\t0x78B2\n0xE2EC\t0x78AA\n0xE2ED\t0x78B4\n0xE2EE\t0x78AD\n0xE2EF\t0x78A8\n0xE2F0\t0x787E\n0xE2F1\t0x78AB\n0xE2F2\t0x789E\n0xE2F3\t0x78A5\n0xE2F4\t0x78A0\n0xE2F5\t0x78AC\n0xE2F6\t0x78A2\n0xE2F7\t0x78A4\n0xE2F8\t0x7998\n0xE2F9\t0x798A\n0xE2FA\t0x798B\n0xE2FB\t0x7996\n0xE2FC\t0x7995\n0xE2FD\t0x7994\n0xE2FE\t0x7993\n0xE340\t0x7997\n0xE341\t0x7988\n0xE342\t0x7992\n0xE343\t0x7990\n0xE344\t0x7A2B\n0xE345\t0x7A4A\n0xE346\t0x7A30\n0xE347\t0x7A2F\n0xE348\t0x7A28\n0xE349\t0x7A26\n0xE34A\t0x7AA8\n0xE34B\t0x7AAB\n0xE34C\t0x7AAC\n0xE34D\t0x7AEE\n0xE34E\t0x7B88\n0xE34F\t0x7B9C\n0xE350\t0x7B8A\n0xE351\t0x7B91\n0xE352\t0x7B90\n0xE353\t0x7B96\n0xE354\t0x7B8D\n0xE355\t0x7B8C\n0xE356\t0x7B9B\n0xE357\t0x7B8E\n0xE358\t0x7B85\n0xE359\t0x7B98\n0xE35A\t0x5284\n0xE35B\t0x7B99\n0xE35C\t0x7BA4\n0xE35D\t0x7B82\n0xE35E\t0x7CBB\n0xE35F\t0x7CBF\n0xE360\t0x7CBC\n0xE361\t0x7CBA\n0xE362\t0x7DA7\n0xE363\t0x7DB7\n0xE364\t0x7DC2\n0xE365\t0x7DA3\n0xE366\t0x7DAA\n0xE367\t0x7DC1\n0xE368\t0x7DC0\n0xE369\t0x7DC5\n0xE36A\t0x7D9D\n0xE36B\t0x7DCE\n0xE36C\t0x7DC4\n0xE36D\t0x7DC6\n0xE36E\t0x7DCB\n0xE36F\t0x7DCC\n0xE370\t0x7DAF\n0xE371\t0x7DB9\n0xE372\t0x7D96\n0xE373\t0x7DBC\n0xE374\t0x7D9F\n0xE375\t0x7DA6\n0xE376\t0x7DAE\n0xE377\t0x7DA9\n0xE378\t0x7DA1\n0xE379\t0x7DC9\n0xE37A\t0x7F73\n0xE37B\t0x7FE2\n0xE37C\t0x7FE3\n0xE37D\t0x7FE5\n0xE37E\t0x7FDE\n0xE3A1\t0x8024\n0xE3A2\t0x805D\n0xE3A3\t0x805C\n0xE3A4\t0x8189\n0xE3A5\t0x8186\n0xE3A6\t0x8183\n0xE3A7\t0x8187\n0xE3A8\t0x818D\n0xE3A9\t0x818C\n0xE3AA\t0x818B\n0xE3AB\t0x8215\n0xE3AC\t0x8497\n0xE3AD\t0x84A4\n0xE3AE\t0x84A1\n0xE3AF\t0x849F\n0xE3B0\t0x84BA\n0xE3B1\t0x84CE\n0xE3B2\t0x84C2\n0xE3B3\t0x84AC\n0xE3B4\t0x84AE\n0xE3B5\t0x84AB\n0xE3B6\t0x84B9\n0xE3B7\t0x84B4\n0xE3B8\t0x84C1\n0xE3B9\t0x84CD\n0xE3BA\t0x84AA\n0xE3BB\t0x849A\n0xE3BC\t0x84B1\n0xE3BD\t0x84D0\n0xE3BE\t0x849D\n0xE3BF\t0x84A7\n0xE3C0\t0x84BB\n0xE3C1\t0x84A2\n0xE3C2\t0x8494\n0xE3C3\t0x84C7\n0xE3C4\t0x84CC\n0xE3C5\t0x849B\n0xE3C6\t0x84A9\n0xE3C7\t0x84AF\n0xE3C8\t0x84A8\n0xE3C9\t0x84D6\n0xE3CA\t0x8498\n0xE3CB\t0x84B6\n0xE3CC\t0x84CF\n0xE3CD\t0x84A0\n0xE3CE\t0x84D7\n0xE3CF\t0x84D4\n0xE3D0\t0x84D2\n0xE3D1\t0x84DB\n0xE3D2\t0x84B0\n0xE3D3\t0x8491\n0xE3D4\t0x8661\n0xE3D5\t0x8733\n0xE3D6\t0x8723\n0xE3D7\t0x8728\n0xE3D8\t0x876B\n0xE3D9\t0x8740\n0xE3DA\t0x872E\n0xE3DB\t0x871E\n0xE3DC\t0x8721\n0xE3DD\t0x8719\n0xE3DE\t0x871B\n0xE3DF\t0x8743\n0xE3E0\t0x872C\n0xE3E1\t0x8741\n0xE3E2\t0x873E\n0xE3E3\t0x8746\n0xE3E4\t0x8720\n0xE3E5\t0x8732\n0xE3E6\t0x872A\n0xE3E7\t0x872D\n0xE3E8\t0x873C\n0xE3E9\t0x8712\n0xE3EA\t0x873A\n0xE3EB\t0x8731\n0xE3EC\t0x8735\n0xE3ED\t0x8742\n0xE3EE\t0x8726\n0xE3EF\t0x8727\n0xE3F0\t0x8738\n0xE3F1\t0x8724\n0xE3F2\t0x871A\n0xE3F3\t0x8730\n0xE3F4\t0x8711\n0xE3F5\t0x88F7\n0xE3F6\t0x88E7\n0xE3F7\t0x88F1\n0xE3F8\t0x88F2\n0xE3F9\t0x88FA\n0xE3FA\t0x88FE\n0xE3FB\t0x88EE\n0xE3FC\t0x88FC\n0xE3FD\t0x88F6\n0xE3FE\t0x88FB\n0xE440\t0x88F0\n0xE441\t0x88EC\n0xE442\t0x88EB\n0xE443\t0x899D\n0xE444\t0x89A1\n0xE445\t0x899F\n0xE446\t0x899E\n0xE447\t0x89E9\n0xE448\t0x89EB\n0xE449\t0x89E8\n0xE44A\t0x8AAB\n0xE44B\t0x8A99\n0xE44C\t0x8A8B\n0xE44D\t0x8A92\n0xE44E\t0x8A8F\n0xE44F\t0x8A96\n0xE450\t0x8C3D\n0xE451\t0x8C68\n0xE452\t0x8C69\n0xE453\t0x8CD5\n0xE454\t0x8CCF\n0xE455\t0x8CD7\n0xE456\t0x8D96\n0xE457\t0x8E09\n0xE458\t0x8E02\n0xE459\t0x8DFF\n0xE45A\t0x8E0D\n0xE45B\t0x8DFD\n0xE45C\t0x8E0A\n0xE45D\t0x8E03\n0xE45E\t0x8E07\n0xE45F\t0x8E06\n0xE460\t0x8E05\n0xE461\t0x8DFE\n0xE462\t0x8E00\n0xE463\t0x8E04\n0xE464\t0x8F10\n0xE465\t0x8F11\n0xE466\t0x8F0E\n0xE467\t0x8F0D\n0xE468\t0x9123\n0xE469\t0x911C\n0xE46A\t0x9120\n0xE46B\t0x9122\n0xE46C\t0x911F\n0xE46D\t0x911D\n0xE46E\t0x911A\n0xE46F\t0x9124\n0xE470\t0x9121\n0xE471\t0x911B\n0xE472\t0x917A\n0xE473\t0x9172\n0xE474\t0x9179\n0xE475\t0x9173\n0xE476\t0x92A5\n0xE477\t0x92A4\n0xE478\t0x9276\n0xE479\t0x929B\n0xE47A\t0x927A\n0xE47B\t0x92A0\n0xE47C\t0x9294\n0xE47D\t0x92AA\n0xE47E\t0x928D\n0xE4A1\t0x92A6\n0xE4A2\t0x929A\n0xE4A3\t0x92AB\n0xE4A4\t0x9279\n0xE4A5\t0x9297\n0xE4A6\t0x927F\n0xE4A7\t0x92A3\n0xE4A8\t0x92EE\n0xE4A9\t0x928E\n0xE4AA\t0x9282\n0xE4AB\t0x9295\n0xE4AC\t0x92A2\n0xE4AD\t0x927D\n0xE4AE\t0x9288\n0xE4AF\t0x92A1\n0xE4B0\t0x928A\n0xE4B1\t0x9286\n0xE4B2\t0x928C\n0xE4B3\t0x9299\n0xE4B4\t0x92A7\n0xE4B5\t0x927E\n0xE4B6\t0x9287\n0xE4B7\t0x92A9\n0xE4B8\t0x929D\n0xE4B9\t0x928B\n0xE4BA\t0x922D\n0xE4BB\t0x969E\n0xE4BC\t0x96A1\n0xE4BD\t0x96FF\n0xE4BE\t0x9758\n0xE4BF\t0x977D\n0xE4C0\t0x977A\n0xE4C1\t0x977E\n0xE4C2\t0x9783\n0xE4C3\t0x9780\n0xE4C4\t0x9782\n0xE4C5\t0x977B\n0xE4C6\t0x9784\n0xE4C7\t0x9781\n0xE4C8\t0x977F\n0xE4C9\t0x97CE\n0xE4CA\t0x97CD\n0xE4CB\t0x9816\n0xE4CC\t0x98AD\n0xE4CD\t0x98AE\n0xE4CE\t0x9902\n0xE4CF\t0x9900\n0xE4D0\t0x9907\n0xE4D1\t0x999D\n0xE4D2\t0x999C\n0xE4D3\t0x99C3\n0xE4D4\t0x99B9\n0xE4D5\t0x99BB\n0xE4D6\t0x99BA\n0xE4D7\t0x99C2\n0xE4D8\t0x99BD\n0xE4D9\t0x99C7\n0xE4DA\t0x9AB1\n0xE4DB\t0x9AE3\n0xE4DC\t0x9AE7\n0xE4DD\t0x9B3E\n0xE4DE\t0x9B3F\n0xE4DF\t0x9B60\n0xE4E0\t0x9B61\n0xE4E1\t0x9B5F\n0xE4E2\t0x9CF1\n0xE4E3\t0x9CF2\n0xE4E4\t0x9CF5\n0xE4E5\t0x9EA7\n0xE4E6\t0x50FF\n0xE4E7\t0x5103\n0xE4E8\t0x5130\n0xE4E9\t0x50F8\n0xE4EA\t0x5106\n0xE4EB\t0x5107\n0xE4EC\t0x50F6\n0xE4ED\t0x50FE\n0xE4EE\t0x510B\n0xE4EF\t0x510C\n0xE4F0\t0x50FD\n0xE4F1\t0x510A\n0xE4F2\t0x528B\n0xE4F3\t0x528C\n0xE4F4\t0x52F1\n0xE4F5\t0x52EF\n0xE4F6\t0x5648\n0xE4F7\t0x5642\n0xE4F8\t0x564C\n0xE4F9\t0x5635\n0xE4FA\t0x5641\n0xE4FB\t0x564A\n0xE4FC\t0x5649\n0xE4FD\t0x5646\n0xE4FE\t0x5658\n0xE540\t0x565A\n0xE541\t0x5640\n0xE542\t0x5633\n0xE543\t0x563D\n0xE544\t0x562C\n0xE545\t0x563E\n0xE546\t0x5638\n0xE547\t0x562A\n0xE548\t0x563A\n0xE549\t0x571A\n0xE54A\t0x58AB\n0xE54B\t0x589D\n0xE54C\t0x58B1\n0xE54D\t0x58A0\n0xE54E\t0x58A3\n0xE54F\t0x58AF\n0xE550\t0x58AC\n0xE551\t0x58A5\n0xE552\t0x58A1\n0xE553\t0x58FF\n0xE554\t0x5AFF\n0xE555\t0x5AF4\n0xE556\t0x5AFD\n0xE557\t0x5AF7\n0xE558\t0x5AF6\n0xE559\t0x5B03\n0xE55A\t0x5AF8\n0xE55B\t0x5B02\n0xE55C\t0x5AF9\n0xE55D\t0x5B01\n0xE55E\t0x5B07\n0xE55F\t0x5B05\n0xE560\t0x5B0F\n0xE561\t0x5C67\n0xE562\t0x5D99\n0xE563\t0x5D97\n0xE564\t0x5D9F\n0xE565\t0x5D92\n0xE566\t0x5DA2\n0xE567\t0x5D93\n0xE568\t0x5D95\n0xE569\t0x5DA0\n0xE56A\t0x5D9C\n0xE56B\t0x5DA1\n0xE56C\t0x5D9A\n0xE56D\t0x5D9E\n0xE56E\t0x5E69\n0xE56F\t0x5E5D\n0xE570\t0x5E60\n0xE571\t0x5E5C\n0xE572\t0x7DF3\n0xE573\t0x5EDB\n0xE574\t0x5EDE\n0xE575\t0x5EE1\n0xE576\t0x5F49\n0xE577\t0x5FB2\n0xE578\t0x618B\n0xE579\t0x6183\n0xE57A\t0x6179\n0xE57B\t0x61B1\n0xE57C\t0x61B0\n0xE57D\t0x61A2\n0xE57E\t0x6189\n0xE5A1\t0x619B\n0xE5A2\t0x6193\n0xE5A3\t0x61AF\n0xE5A4\t0x61AD\n0xE5A5\t0x619F\n0xE5A6\t0x6192\n0xE5A7\t0x61AA\n0xE5A8\t0x61A1\n0xE5A9\t0x618D\n0xE5AA\t0x6166\n0xE5AB\t0x61B3\n0xE5AC\t0x622D\n0xE5AD\t0x646E\n0xE5AE\t0x6470\n0xE5AF\t0x6496\n0xE5B0\t0x64A0\n0xE5B1\t0x6485\n0xE5B2\t0x6497\n0xE5B3\t0x649C\n0xE5B4\t0x648F\n0xE5B5\t0x648B\n0xE5B6\t0x648A\n0xE5B7\t0x648C\n0xE5B8\t0x64A3\n0xE5B9\t0x649F\n0xE5BA\t0x6468\n0xE5BB\t0x64B1\n0xE5BC\t0x6498\n0xE5BD\t0x6576\n0xE5BE\t0x657A\n0xE5BF\t0x6579\n0xE5C0\t0x657B\n0xE5C1\t0x65B2\n0xE5C2\t0x65B3\n0xE5C3\t0x66B5\n0xE5C4\t0x66B0\n0xE5C5\t0x66A9\n0xE5C6\t0x66B2\n0xE5C7\t0x66B7\n0xE5C8\t0x66AA\n0xE5C9\t0x66AF\n0xE5CA\t0x6A00\n0xE5CB\t0x6A06\n0xE5CC\t0x6A17\n0xE5CD\t0x69E5\n0xE5CE\t0x69F8\n0xE5CF\t0x6A15\n0xE5D0\t0x69F1\n0xE5D1\t0x69E4\n0xE5D2\t0x6A20\n0xE5D3\t0x69FF\n0xE5D4\t0x69EC\n0xE5D5\t0x69E2\n0xE5D6\t0x6A1B\n0xE5D7\t0x6A1D\n0xE5D8\t0x69FE\n0xE5D9\t0x6A27\n0xE5DA\t0x69F2\n0xE5DB\t0x69EE\n0xE5DC\t0x6A14\n0xE5DD\t0x69F7\n0xE5DE\t0x69E7\n0xE5DF\t0x6A40\n0xE5E0\t0x6A08\n0xE5E1\t0x69E6\n0xE5E2\t0x69FB\n0xE5E3\t0x6A0D\n0xE5E4\t0x69FC\n0xE5E5\t0x69EB\n0xE5E6\t0x6A09\n0xE5E7\t0x6A04\n0xE5E8\t0x6A18\n0xE5E9\t0x6A25\n0xE5EA\t0x6A0F\n0xE5EB\t0x69F6\n0xE5EC\t0x6A26\n0xE5ED\t0x6A07\n0xE5EE\t0x69F4\n0xE5EF\t0x6A16\n0xE5F0\t0x6B51\n0xE5F1\t0x6BA5\n0xE5F2\t0x6BA3\n0xE5F3\t0x6BA2\n0xE5F4\t0x6BA6\n0xE5F5\t0x6C01\n0xE5F6\t0x6C00\n0xE5F7\t0x6BFF\n0xE5F8\t0x6C02\n0xE5F9\t0x6F41\n0xE5FA\t0x6F26\n0xE5FB\t0x6F7E\n0xE5FC\t0x6F87\n0xE5FD\t0x6FC6\n0xE5FE\t0x6F92\n0xE640\t0x6F8D\n0xE641\t0x6F89\n0xE642\t0x6F8C\n0xE643\t0x6F62\n0xE644\t0x6F4F\n0xE645\t0x6F85\n0xE646\t0x6F5A\n0xE647\t0x6F96\n0xE648\t0x6F76\n0xE649\t0x6F6C\n0xE64A\t0x6F82\n0xE64B\t0x6F55\n0xE64C\t0x6F72\n0xE64D\t0x6F52\n0xE64E\t0x6F50\n0xE64F\t0x6F57\n0xE650\t0x6F94\n0xE651\t0x6F93\n0xE652\t0x6F5D\n0xE653\t0x6F00\n0xE654\t0x6F61\n0xE655\t0x6F6B\n0xE656\t0x6F7D\n0xE657\t0x6F67\n0xE658\t0x6F90\n0xE659\t0x6F53\n0xE65A\t0x6F8B\n0xE65B\t0x6F69\n0xE65C\t0x6F7F\n0xE65D\t0x6F95\n0xE65E\t0x6F63\n0xE65F\t0x6F77\n0xE660\t0x6F6A\n0xE661\t0x6F7B\n0xE662\t0x71B2\n0xE663\t0x71AF\n0xE664\t0x719B\n0xE665\t0x71B0\n0xE666\t0x71A0\n0xE667\t0x719A\n0xE668\t0x71A9\n0xE669\t0x71B5\n0xE66A\t0x719D\n0xE66B\t0x71A5\n0xE66C\t0x719E\n0xE66D\t0x71A4\n0xE66E\t0x71A1\n0xE66F\t0x71AA\n0xE670\t0x719C\n0xE671\t0x71A7\n0xE672\t0x71B3\n0xE673\t0x7298\n0xE674\t0x729A\n0xE675\t0x7358\n0xE676\t0x7352\n0xE677\t0x735E\n0xE678\t0x735F\n0xE679\t0x7360\n0xE67A\t0x735D\n0xE67B\t0x735B\n0xE67C\t0x7361\n0xE67D\t0x735A\n0xE67E\t0x7359\n0xE6A1\t0x7362\n0xE6A2\t0x7487\n0xE6A3\t0x7489\n0xE6A4\t0x748A\n0xE6A5\t0x7486\n0xE6A6\t0x7481\n0xE6A7\t0x747D\n0xE6A8\t0x7485\n0xE6A9\t0x7488\n0xE6AA\t0x747C\n0xE6AB\t0x7479\n0xE6AC\t0x7508\n0xE6AD\t0x7507\n0xE6AE\t0x757E\n0xE6AF\t0x7625\n0xE6B0\t0x761E\n0xE6B1\t0x7619\n0xE6B2\t0x761D\n0xE6B3\t0x761C\n0xE6B4\t0x7623\n0xE6B5\t0x761A\n0xE6B6\t0x7628\n0xE6B7\t0x761B\n0xE6B8\t0x769C\n0xE6B9\t0x769D\n0xE6BA\t0x769E\n0xE6BB\t0x769B\n0xE6BC\t0x778D\n0xE6BD\t0x778F\n0xE6BE\t0x7789\n0xE6BF\t0x7788\n0xE6C0\t0x78CD\n0xE6C1\t0x78BB\n0xE6C2\t0x78CF\n0xE6C3\t0x78CC\n0xE6C4\t0x78D1\n0xE6C5\t0x78CE\n0xE6C6\t0x78D4\n0xE6C7\t0x78C8\n0xE6C8\t0x78C3\n0xE6C9\t0x78C4\n0xE6CA\t0x78C9\n0xE6CB\t0x799A\n0xE6CC\t0x79A1\n0xE6CD\t0x79A0\n0xE6CE\t0x799C\n0xE6CF\t0x79A2\n0xE6D0\t0x799B\n0xE6D1\t0x6B76\n0xE6D2\t0x7A39\n0xE6D3\t0x7AB2\n0xE6D4\t0x7AB4\n0xE6D5\t0x7AB3\n0xE6D6\t0x7BB7\n0xE6D7\t0x7BCB\n0xE6D8\t0x7BBE\n0xE6D9\t0x7BAC\n0xE6DA\t0x7BCE\n0xE6DB\t0x7BAF\n0xE6DC\t0x7BB9\n0xE6DD\t0x7BCA\n0xE6DE\t0x7BB5\n0xE6DF\t0x7CC5\n0xE6E0\t0x7CC8\n0xE6E1\t0x7CCC\n0xE6E2\t0x7CCB\n0xE6E3\t0x7DF7\n0xE6E4\t0x7DDB\n0xE6E5\t0x7DEA\n0xE6E6\t0x7DE7\n0xE6E7\t0x7DD7\n0xE6E8\t0x7DE1\n0xE6E9\t0x7E03\n0xE6EA\t0x7DFA\n0xE6EB\t0x7DE6\n0xE6EC\t0x7DF6\n0xE6ED\t0x7DF1\n0xE6EE\t0x7DF0\n0xE6EF\t0x7DEE\n0xE6F0\t0x7DDF\n0xE6F1\t0x7F76\n0xE6F2\t0x7FAC\n0xE6F3\t0x7FB0\n0xE6F4\t0x7FAD\n0xE6F5\t0x7FED\n0xE6F6\t0x7FEB\n0xE6F7\t0x7FEA\n0xE6F8\t0x7FEC\n0xE6F9\t0x7FE6\n0xE6FA\t0x7FE8\n0xE6FB\t0x8064\n0xE6FC\t0x8067\n0xE6FD\t0x81A3\n0xE6FE\t0x819F\n0xE740\t0x819E\n0xE741\t0x8195\n0xE742\t0x81A2\n0xE743\t0x8199\n0xE744\t0x8197\n0xE745\t0x8216\n0xE746\t0x824F\n0xE747\t0x8253\n0xE748\t0x8252\n0xE749\t0x8250\n0xE74A\t0x824E\n0xE74B\t0x8251\n0xE74C\t0x8524\n0xE74D\t0x853B\n0xE74E\t0x850F\n0xE74F\t0x8500\n0xE750\t0x8529\n0xE751\t0x850E\n0xE752\t0x8509\n0xE753\t0x850D\n0xE754\t0x851F\n0xE755\t0x850A\n0xE756\t0x8527\n0xE757\t0x851C\n0xE758\t0x84FB\n0xE759\t0x852B\n0xE75A\t0x84FA\n0xE75B\t0x8508\n0xE75C\t0x850C\n0xE75D\t0x84F4\n0xE75E\t0x852A\n0xE75F\t0x84F2\n0xE760\t0x8515\n0xE761\t0x84F7\n0xE762\t0x84EB\n0xE763\t0x84F3\n0xE764\t0x84FC\n0xE765\t0x8512\n0xE766\t0x84EA\n0xE767\t0x84E9\n0xE768\t0x8516\n0xE769\t0x84FE\n0xE76A\t0x8528\n0xE76B\t0x851D\n0xE76C\t0x852E\n0xE76D\t0x8502\n0xE76E\t0x84FD\n0xE76F\t0x851E\n0xE770\t0x84F6\n0xE771\t0x8531\n0xE772\t0x8526\n0xE773\t0x84E7\n0xE774\t0x84E8\n0xE775\t0x84F0\n0xE776\t0x84EF\n0xE777\t0x84F9\n0xE778\t0x8518\n0xE779\t0x8520\n0xE77A\t0x8530\n0xE77B\t0x850B\n0xE77C\t0x8519\n0xE77D\t0x852F\n0xE77E\t0x8662\n0xE7A1\t0x8756\n0xE7A2\t0x8763\n0xE7A3\t0x8764\n0xE7A4\t0x8777\n0xE7A5\t0x87E1\n0xE7A6\t0x8773\n0xE7A7\t0x8758\n0xE7A8\t0x8754\n0xE7A9\t0x875B\n0xE7AA\t0x8752\n0xE7AB\t0x8761\n0xE7AC\t0x875A\n0xE7AD\t0x8751\n0xE7AE\t0x875E\n0xE7AF\t0x876D\n0xE7B0\t0x876A\n0xE7B1\t0x8750\n0xE7B2\t0x874E\n0xE7B3\t0x875F\n0xE7B4\t0x875D\n0xE7B5\t0x876F\n0xE7B6\t0x876C\n0xE7B7\t0x877A\n0xE7B8\t0x876E\n0xE7B9\t0x875C\n0xE7BA\t0x8765\n0xE7BB\t0x874F\n0xE7BC\t0x877B\n0xE7BD\t0x8775\n0xE7BE\t0x8762\n0xE7BF\t0x8767\n0xE7C0\t0x8769\n0xE7C1\t0x885A\n0xE7C2\t0x8905\n0xE7C3\t0x890C\n0xE7C4\t0x8914\n0xE7C5\t0x890B\n0xE7C6\t0x8917\n0xE7C7\t0x8918\n0xE7C8\t0x8919\n0xE7C9\t0x8906\n0xE7CA\t0x8916\n0xE7CB\t0x8911\n0xE7CC\t0x890E\n0xE7CD\t0x8909\n0xE7CE\t0x89A2\n0xE7CF\t0x89A4\n0xE7D0\t0x89A3\n0xE7D1\t0x89ED\n0xE7D2\t0x89F0\n0xE7D3\t0x89EC\n0xE7D4\t0x8ACF\n0xE7D5\t0x8AC6\n0xE7D6\t0x8AB8\n0xE7D7\t0x8AD3\n0xE7D8\t0x8AD1\n0xE7D9\t0x8AD4\n0xE7DA\t0x8AD5\n0xE7DB\t0x8ABB\n0xE7DC\t0x8AD7\n0xE7DD\t0x8ABE\n0xE7DE\t0x8AC0\n0xE7DF\t0x8AC5\n0xE7E0\t0x8AD8\n0xE7E1\t0x8AC3\n0xE7E2\t0x8ABA\n0xE7E3\t0x8ABD\n0xE7E4\t0x8AD9\n0xE7E5\t0x8C3E\n0xE7E6\t0x8C4D\n0xE7E7\t0x8C8F\n0xE7E8\t0x8CE5\n0xE7E9\t0x8CDF\n0xE7EA\t0x8CD9\n0xE7EB\t0x8CE8\n0xE7EC\t0x8CDA\n0xE7ED\t0x8CDD\n0xE7EE\t0x8CE7\n0xE7EF\t0x8DA0\n0xE7F0\t0x8D9C\n0xE7F1\t0x8DA1\n0xE7F2\t0x8D9B\n0xE7F3\t0x8E20\n0xE7F4\t0x8E23\n0xE7F5\t0x8E25\n0xE7F6\t0x8E24\n0xE7F7\t0x8E2E\n0xE7F8\t0x8E15\n0xE7F9\t0x8E1B\n0xE7FA\t0x8E16\n0xE7FB\t0x8E11\n0xE7FC\t0x8E19\n0xE7FD\t0x8E26\n0xE7FE\t0x8E27\n0xE840\t0x8E14\n0xE841\t0x8E12\n0xE842\t0x8E18\n0xE843\t0x8E13\n0xE844\t0x8E1C\n0xE845\t0x8E17\n0xE846\t0x8E1A\n0xE847\t0x8F2C\n0xE848\t0x8F24\n0xE849\t0x8F18\n0xE84A\t0x8F1A\n0xE84B\t0x8F20\n0xE84C\t0x8F23\n0xE84D\t0x8F16\n0xE84E\t0x8F17\n0xE84F\t0x9073\n0xE850\t0x9070\n0xE851\t0x906F\n0xE852\t0x9067\n0xE853\t0x906B\n0xE854\t0x912F\n0xE855\t0x912B\n0xE856\t0x9129\n0xE857\t0x912A\n0xE858\t0x9132\n0xE859\t0x9126\n0xE85A\t0x912E\n0xE85B\t0x9185\n0xE85C\t0x9186\n0xE85D\t0x918A\n0xE85E\t0x9181\n0xE85F\t0x9182\n0xE860\t0x9184\n0xE861\t0x9180\n0xE862\t0x92D0\n0xE863\t0x92C3\n0xE864\t0x92C4\n0xE865\t0x92C0\n0xE866\t0x92D9\n0xE867\t0x92B6\n0xE868\t0x92CF\n0xE869\t0x92F1\n0xE86A\t0x92DF\n0xE86B\t0x92D8\n0xE86C\t0x92E9\n0xE86D\t0x92D7\n0xE86E\t0x92DD\n0xE86F\t0x92CC\n0xE870\t0x92EF\n0xE871\t0x92C2\n0xE872\t0x92E8\n0xE873\t0x92CA\n0xE874\t0x92C8\n0xE875\t0x92CE\n0xE876\t0x92E6\n0xE877\t0x92CD\n0xE878\t0x92D5\n0xE879\t0x92C9\n0xE87A\t0x92E0\n0xE87B\t0x92DE\n0xE87C\t0x92E7\n0xE87D\t0x92D1\n0xE87E\t0x92D3\n0xE8A1\t0x92B5\n0xE8A2\t0x92E1\n0xE8A3\t0x92C6\n0xE8A4\t0x92B4\n0xE8A5\t0x957C\n0xE8A6\t0x95AC\n0xE8A7\t0x95AB\n0xE8A8\t0x95AE\n0xE8A9\t0x95B0\n0xE8AA\t0x96A4\n0xE8AB\t0x96A2\n0xE8AC\t0x96D3\n0xE8AD\t0x9705\n0xE8AE\t0x9708\n0xE8AF\t0x9702\n0xE8B0\t0x975A\n0xE8B1\t0x978A\n0xE8B2\t0x978E\n0xE8B3\t0x9788\n0xE8B4\t0x97D0\n0xE8B5\t0x97CF\n0xE8B6\t0x981E\n0xE8B7\t0x981D\n0xE8B8\t0x9826\n0xE8B9\t0x9829\n0xE8BA\t0x9828\n0xE8BB\t0x9820\n0xE8BC\t0x981B\n0xE8BD\t0x9827\n0xE8BE\t0x98B2\n0xE8BF\t0x9908\n0xE8C0\t0x98FA\n0xE8C1\t0x9911\n0xE8C2\t0x9914\n0xE8C3\t0x9916\n0xE8C4\t0x9917\n0xE8C5\t0x9915\n0xE8C6\t0x99DC\n0xE8C7\t0x99CD\n0xE8C8\t0x99CF\n0xE8C9\t0x99D3\n0xE8CA\t0x99D4\n0xE8CB\t0x99CE\n0xE8CC\t0x99C9\n0xE8CD\t0x99D6\n0xE8CE\t0x99D8\n0xE8CF\t0x99CB\n0xE8D0\t0x99D7\n0xE8D1\t0x99CC\n0xE8D2\t0x9AB3\n0xE8D3\t0x9AEC\n0xE8D4\t0x9AEB\n0xE8D5\t0x9AF3\n0xE8D6\t0x9AF2\n0xE8D7\t0x9AF1\n0xE8D8\t0x9B46\n0xE8D9\t0x9B43\n0xE8DA\t0x9B67\n0xE8DB\t0x9B74\n0xE8DC\t0x9B71\n0xE8DD\t0x9B66\n0xE8DE\t0x9B76\n0xE8DF\t0x9B75\n0xE8E0\t0x9B70\n0xE8E1\t0x9B68\n0xE8E2\t0x9B64\n0xE8E3\t0x9B6C\n0xE8E4\t0x9CFC\n0xE8E5\t0x9CFA\n0xE8E6\t0x9CFD\n0xE8E7\t0x9CFF\n0xE8E8\t0x9CF7\n0xE8E9\t0x9D07\n0xE8EA\t0x9D00\n0xE8EB\t0x9CF9\n0xE8EC\t0x9CFB\n0xE8ED\t0x9D08\n0xE8EE\t0x9D05\n0xE8EF\t0x9D04\n0xE8F0\t0x9E83\n0xE8F1\t0x9ED3\n0xE8F2\t0x9F0F\n0xE8F3\t0x9F10\n0xE8F4\t0x511C\n0xE8F5\t0x5113\n0xE8F6\t0x5117\n0xE8F7\t0x511A\n0xE8F8\t0x5111\n0xE8F9\t0x51DE\n0xE8FA\t0x5334\n0xE8FB\t0x53E1\n0xE8FC\t0x5670\n0xE8FD\t0x5660\n0xE8FE\t0x566E\n0xE940\t0x5673\n0xE941\t0x5666\n0xE942\t0x5663\n0xE943\t0x566D\n0xE944\t0x5672\n0xE945\t0x565E\n0xE946\t0x5677\n0xE947\t0x571C\n0xE948\t0x571B\n0xE949\t0x58C8\n0xE94A\t0x58BD\n0xE94B\t0x58C9\n0xE94C\t0x58BF\n0xE94D\t0x58BA\n0xE94E\t0x58C2\n0xE94F\t0x58BC\n0xE950\t0x58C6\n0xE951\t0x5B17\n0xE952\t0x5B19\n0xE953\t0x5B1B\n0xE954\t0x5B21\n0xE955\t0x5B14\n0xE956\t0x5B13\n0xE957\t0x5B10\n0xE958\t0x5B16\n0xE959\t0x5B28\n0xE95A\t0x5B1A\n0xE95B\t0x5B20\n0xE95C\t0x5B1E\n0xE95D\t0x5BEF\n0xE95E\t0x5DAC\n0xE95F\t0x5DB1\n0xE960\t0x5DA9\n0xE961\t0x5DA7\n0xE962\t0x5DB5\n0xE963\t0x5DB0\n0xE964\t0x5DAE\n0xE965\t0x5DAA\n0xE966\t0x5DA8\n0xE967\t0x5DB2\n0xE968\t0x5DAD\n0xE969\t0x5DAF\n0xE96A\t0x5DB4\n0xE96B\t0x5E67\n0xE96C\t0x5E68\n0xE96D\t0x5E66\n0xE96E\t0x5E6F\n0xE96F\t0x5EE9\n0xE970\t0x5EE7\n0xE971\t0x5EE6\n0xE972\t0x5EE8\n0xE973\t0x5EE5\n0xE974\t0x5F4B\n0xE975\t0x5FBC\n0xE976\t0x619D\n0xE977\t0x61A8\n0xE978\t0x6196\n0xE979\t0x61C5\n0xE97A\t0x61B4\n0xE97B\t0x61C6\n0xE97C\t0x61C1\n0xE97D\t0x61CC\n0xE97E\t0x61BA\n0xE9A1\t0x61BF\n0xE9A2\t0x61B8\n0xE9A3\t0x618C\n0xE9A4\t0x64D7\n0xE9A5\t0x64D6\n0xE9A6\t0x64D0\n0xE9A7\t0x64CF\n0xE9A8\t0x64C9\n0xE9A9\t0x64BD\n0xE9AA\t0x6489\n0xE9AB\t0x64C3\n0xE9AC\t0x64DB\n0xE9AD\t0x64F3\n0xE9AE\t0x64D9\n0xE9AF\t0x6533\n0xE9B0\t0x657F\n0xE9B1\t0x657C\n0xE9B2\t0x65A2\n0xE9B3\t0x66C8\n0xE9B4\t0x66BE\n0xE9B5\t0x66C0\n0xE9B6\t0x66CA\n0xE9B7\t0x66CB\n0xE9B8\t0x66CF\n0xE9B9\t0x66BD\n0xE9BA\t0x66BB\n0xE9BB\t0x66BA\n0xE9BC\t0x66CC\n0xE9BD\t0x6723\n0xE9BE\t0x6A34\n0xE9BF\t0x6A66\n0xE9C0\t0x6A49\n0xE9C1\t0x6A67\n0xE9C2\t0x6A32\n0xE9C3\t0x6A68\n0xE9C4\t0x6A3E\n0xE9C5\t0x6A5D\n0xE9C6\t0x6A6D\n0xE9C7\t0x6A76\n0xE9C8\t0x6A5B\n0xE9C9\t0x6A51\n0xE9CA\t0x6A28\n0xE9CB\t0x6A5A\n0xE9CC\t0x6A3B\n0xE9CD\t0x6A3F\n0xE9CE\t0x6A41\n0xE9CF\t0x6A6A\n0xE9D0\t0x6A64\n0xE9D1\t0x6A50\n0xE9D2\t0x6A4F\n0xE9D3\t0x6A54\n0xE9D4\t0x6A6F\n0xE9D5\t0x6A69\n0xE9D6\t0x6A60\n0xE9D7\t0x6A3C\n0xE9D8\t0x6A5E\n0xE9D9\t0x6A56\n0xE9DA\t0x6A55\n0xE9DB\t0x6A4D\n0xE9DC\t0x6A4E\n0xE9DD\t0x6A46\n0xE9DE\t0x6B55\n0xE9DF\t0x6B54\n0xE9E0\t0x6B56\n0xE9E1\t0x6BA7\n0xE9E2\t0x6BAA\n0xE9E3\t0x6BAB\n0xE9E4\t0x6BC8\n0xE9E5\t0x6BC7\n0xE9E6\t0x6C04\n0xE9E7\t0x6C03\n0xE9E8\t0x6C06\n0xE9E9\t0x6FAD\n0xE9EA\t0x6FCB\n0xE9EB\t0x6FA3\n0xE9EC\t0x6FC7\n0xE9ED\t0x6FBC\n0xE9EE\t0x6FCE\n0xE9EF\t0x6FC8\n0xE9F0\t0x6F5E\n0xE9F1\t0x6FC4\n0xE9F2\t0x6FBD\n0xE9F3\t0x6F9E\n0xE9F4\t0x6FCA\n0xE9F5\t0x6FA8\n0xE9F6\t0x7004\n0xE9F7\t0x6FA5\n0xE9F8\t0x6FAE\n0xE9F9\t0x6FBA\n0xE9FA\t0x6FAC\n0xE9FB\t0x6FAA\n0xE9FC\t0x6FCF\n0xE9FD\t0x6FBF\n0xE9FE\t0x6FB8\n0xEA40\t0x6FA2\n0xEA41\t0x6FC9\n0xEA42\t0x6FAB\n0xEA43\t0x6FCD\n0xEA44\t0x6FAF\n0xEA45\t0x6FB2\n0xEA46\t0x6FB0\n0xEA47\t0x71C5\n0xEA48\t0x71C2\n0xEA49\t0x71BF\n0xEA4A\t0x71B8\n0xEA4B\t0x71D6\n0xEA4C\t0x71C0\n0xEA4D\t0x71C1\n0xEA4E\t0x71CB\n0xEA4F\t0x71D4\n0xEA50\t0x71CA\n0xEA51\t0x71C7\n0xEA52\t0x71CF\n0xEA53\t0x71BD\n0xEA54\t0x71D8\n0xEA55\t0x71BC\n0xEA56\t0x71C6\n0xEA57\t0x71DA\n0xEA58\t0x71DB\n0xEA59\t0x729D\n0xEA5A\t0x729E\n0xEA5B\t0x7369\n0xEA5C\t0x7366\n0xEA5D\t0x7367\n0xEA5E\t0x736C\n0xEA5F\t0x7365\n0xEA60\t0x736B\n0xEA61\t0x736A\n0xEA62\t0x747F\n0xEA63\t0x749A\n0xEA64\t0x74A0\n0xEA65\t0x7494\n0xEA66\t0x7492\n0xEA67\t0x7495\n0xEA68\t0x74A1\n0xEA69\t0x750B\n0xEA6A\t0x7580\n0xEA6B\t0x762F\n0xEA6C\t0x762D\n0xEA6D\t0x7631\n0xEA6E\t0x763D\n0xEA6F\t0x7633\n0xEA70\t0x763C\n0xEA71\t0x7635\n0xEA72\t0x7632\n0xEA73\t0x7630\n0xEA74\t0x76BB\n0xEA75\t0x76E6\n0xEA76\t0x779A\n0xEA77\t0x779D\n0xEA78\t0x77A1\n0xEA79\t0x779C\n0xEA7A\t0x779B\n0xEA7B\t0x77A2\n0xEA7C\t0x77A3\n0xEA7D\t0x7795\n0xEA7E\t0x7799\n0xEAA1\t0x7797\n0xEAA2\t0x78DD\n0xEAA3\t0x78E9\n0xEAA4\t0x78E5\n0xEAA5\t0x78EA\n0xEAA6\t0x78DE\n0xEAA7\t0x78E3\n0xEAA8\t0x78DB\n0xEAA9\t0x78E1\n0xEAAA\t0x78E2\n0xEAAB\t0x78ED\n0xEAAC\t0x78DF\n0xEAAD\t0x78E0\n0xEAAE\t0x79A4\n0xEAAF\t0x7A44\n0xEAB0\t0x7A48\n0xEAB1\t0x7A47\n0xEAB2\t0x7AB6\n0xEAB3\t0x7AB8\n0xEAB4\t0x7AB5\n0xEAB5\t0x7AB1\n0xEAB6\t0x7AB7\n0xEAB7\t0x7BDE\n0xEAB8\t0x7BE3\n0xEAB9\t0x7BE7\n0xEABA\t0x7BDD\n0xEABB\t0x7BD5\n0xEABC\t0x7BE5\n0xEABD\t0x7BDA\n0xEABE\t0x7BE8\n0xEABF\t0x7BF9\n0xEAC0\t0x7BD4\n0xEAC1\t0x7BEA\n0xEAC2\t0x7BE2\n0xEAC3\t0x7BDC\n0xEAC4\t0x7BEB\n0xEAC5\t0x7BD8\n0xEAC6\t0x7BDF\n0xEAC7\t0x7CD2\n0xEAC8\t0x7CD4\n0xEAC9\t0x7CD7\n0xEACA\t0x7CD0\n0xEACB\t0x7CD1\n0xEACC\t0x7E12\n0xEACD\t0x7E21\n0xEACE\t0x7E17\n0xEACF\t0x7E0C\n0xEAD0\t0x7E1F\n0xEAD1\t0x7E20\n0xEAD2\t0x7E13\n0xEAD3\t0x7E0E\n0xEAD4\t0x7E1C\n0xEAD5\t0x7E15\n0xEAD6\t0x7E1A\n0xEAD7\t0x7E22\n0xEAD8\t0x7E0B\n0xEAD9\t0x7E0F\n0xEADA\t0x7E16\n0xEADB\t0x7E0D\n0xEADC\t0x7E14\n0xEADD\t0x7E25\n0xEADE\t0x7E24\n0xEADF\t0x7F43\n0xEAE0\t0x7F7B\n0xEAE1\t0x7F7C\n0xEAE2\t0x7F7A\n0xEAE3\t0x7FB1\n0xEAE4\t0x7FEF\n0xEAE5\t0x802A\n0xEAE6\t0x8029\n0xEAE7\t0x806C\n0xEAE8\t0x81B1\n0xEAE9\t0x81A6\n0xEAEA\t0x81AE\n0xEAEB\t0x81B9\n0xEAEC\t0x81B5\n0xEAED\t0x81AB\n0xEAEE\t0x81B0\n0xEAEF\t0x81AC\n0xEAF0\t0x81B4\n0xEAF1\t0x81B2\n0xEAF2\t0x81B7\n0xEAF3\t0x81A7\n0xEAF4\t0x81F2\n0xEAF5\t0x8255\n0xEAF6\t0x8256\n0xEAF7\t0x8257\n0xEAF8\t0x8556\n0xEAF9\t0x8545\n0xEAFA\t0x856B\n0xEAFB\t0x854D\n0xEAFC\t0x8553\n0xEAFD\t0x8561\n0xEAFE\t0x8558\n0xEB40\t0x8540\n0xEB41\t0x8546\n0xEB42\t0x8564\n0xEB43\t0x8541\n0xEB44\t0x8562\n0xEB45\t0x8544\n0xEB46\t0x8551\n0xEB47\t0x8547\n0xEB48\t0x8563\n0xEB49\t0x853E\n0xEB4A\t0x855B\n0xEB4B\t0x8571\n0xEB4C\t0x854E\n0xEB4D\t0x856E\n0xEB4E\t0x8575\n0xEB4F\t0x8555\n0xEB50\t0x8567\n0xEB51\t0x8560\n0xEB52\t0x858C\n0xEB53\t0x8566\n0xEB54\t0x855D\n0xEB55\t0x8554\n0xEB56\t0x8565\n0xEB57\t0x856C\n0xEB58\t0x8663\n0xEB59\t0x8665\n0xEB5A\t0x8664\n0xEB5B\t0x879B\n0xEB5C\t0x878F\n0xEB5D\t0x8797\n0xEB5E\t0x8793\n0xEB5F\t0x8792\n0xEB60\t0x8788\n0xEB61\t0x8781\n0xEB62\t0x8796\n0xEB63\t0x8798\n0xEB64\t0x8779\n0xEB65\t0x8787\n0xEB66\t0x87A3\n0xEB67\t0x8785\n0xEB68\t0x8790\n0xEB69\t0x8791\n0xEB6A\t0x879D\n0xEB6B\t0x8784\n0xEB6C\t0x8794\n0xEB6D\t0x879C\n0xEB6E\t0x879A\n0xEB6F\t0x8789\n0xEB70\t0x891E\n0xEB71\t0x8926\n0xEB72\t0x8930\n0xEB73\t0x892D\n0xEB74\t0x892E\n0xEB75\t0x8927\n0xEB76\t0x8931\n0xEB77\t0x8922\n0xEB78\t0x8929\n0xEB79\t0x8923\n0xEB7A\t0x892F\n0xEB7B\t0x892C\n0xEB7C\t0x891F\n0xEB7D\t0x89F1\n0xEB7E\t0x8AE0\n0xEBA1\t0x8AE2\n0xEBA2\t0x8AF2\n0xEBA3\t0x8AF4\n0xEBA4\t0x8AF5\n0xEBA5\t0x8ADD\n0xEBA6\t0x8B14\n0xEBA7\t0x8AE4\n0xEBA8\t0x8ADF\n0xEBA9\t0x8AF0\n0xEBAA\t0x8AC8\n0xEBAB\t0x8ADE\n0xEBAC\t0x8AE1\n0xEBAD\t0x8AE8\n0xEBAE\t0x8AFF\n0xEBAF\t0x8AEF\n0xEBB0\t0x8AFB\n0xEBB1\t0x8C91\n0xEBB2\t0x8C92\n0xEBB3\t0x8C90\n0xEBB4\t0x8CF5\n0xEBB5\t0x8CEE\n0xEBB6\t0x8CF1\n0xEBB7\t0x8CF0\n0xEBB8\t0x8CF3\n0xEBB9\t0x8D6C\n0xEBBA\t0x8D6E\n0xEBBB\t0x8DA5\n0xEBBC\t0x8DA7\n0xEBBD\t0x8E33\n0xEBBE\t0x8E3E\n0xEBBF\t0x8E38\n0xEBC0\t0x8E40\n0xEBC1\t0x8E45\n0xEBC2\t0x8E36\n0xEBC3\t0x8E3C\n0xEBC4\t0x8E3D\n0xEBC5\t0x8E41\n0xEBC6\t0x8E30\n0xEBC7\t0x8E3F\n0xEBC8\t0x8EBD\n0xEBC9\t0x8F36\n0xEBCA\t0x8F2E\n0xEBCB\t0x8F35\n0xEBCC\t0x8F32\n0xEBCD\t0x8F39\n0xEBCE\t0x8F37\n0xEBCF\t0x8F34\n0xEBD0\t0x9076\n0xEBD1\t0x9079\n0xEBD2\t0x907B\n0xEBD3\t0x9086\n0xEBD4\t0x90FA\n0xEBD5\t0x9133\n0xEBD6\t0x9135\n0xEBD7\t0x9136\n0xEBD8\t0x9193\n0xEBD9\t0x9190\n0xEBDA\t0x9191\n0xEBDB\t0x918D\n0xEBDC\t0x918F\n0xEBDD\t0x9327\n0xEBDE\t0x931E\n0xEBDF\t0x9308\n0xEBE0\t0x931F\n0xEBE1\t0x9306\n0xEBE2\t0x930F\n0xEBE3\t0x937A\n0xEBE4\t0x9338\n0xEBE5\t0x933C\n0xEBE6\t0x931B\n0xEBE7\t0x9323\n0xEBE8\t0x9312\n0xEBE9\t0x9301\n0xEBEA\t0x9346\n0xEBEB\t0x932D\n0xEBEC\t0x930E\n0xEBED\t0x930D\n0xEBEE\t0x92CB\n0xEBEF\t0x931D\n0xEBF0\t0x92FA\n0xEBF1\t0x9325\n0xEBF2\t0x9313\n0xEBF3\t0x92F9\n0xEBF4\t0x92F7\n0xEBF5\t0x9334\n0xEBF6\t0x9302\n0xEBF7\t0x9324\n0xEBF8\t0x92FF\n0xEBF9\t0x9329\n0xEBFA\t0x9339\n0xEBFB\t0x9335\n0xEBFC\t0x932A\n0xEBFD\t0x9314\n0xEBFE\t0x930C\n0xEC40\t0x930B\n0xEC41\t0x92FE\n0xEC42\t0x9309\n0xEC43\t0x9300\n0xEC44\t0x92FB\n0xEC45\t0x9316\n0xEC46\t0x95BC\n0xEC47\t0x95CD\n0xEC48\t0x95BE\n0xEC49\t0x95B9\n0xEC4A\t0x95BA\n0xEC4B\t0x95B6\n0xEC4C\t0x95BF\n0xEC4D\t0x95B5\n0xEC4E\t0x95BD\n0xEC4F\t0x96A9\n0xEC50\t0x96D4\n0xEC51\t0x970B\n0xEC52\t0x9712\n0xEC53\t0x9710\n0xEC54\t0x9799\n0xEC55\t0x9797\n0xEC56\t0x9794\n0xEC57\t0x97F0\n0xEC58\t0x97F8\n0xEC59\t0x9835\n0xEC5A\t0x982F\n0xEC5B\t0x9832\n0xEC5C\t0x9924\n0xEC5D\t0x991F\n0xEC5E\t0x9927\n0xEC5F\t0x9929\n0xEC60\t0x999E\n0xEC61\t0x99EE\n0xEC62\t0x99EC\n0xEC63\t0x99E5\n0xEC64\t0x99E4\n0xEC65\t0x99F0\n0xEC66\t0x99E3\n0xEC67\t0x99EA\n0xEC68\t0x99E9\n0xEC69\t0x99E7\n0xEC6A\t0x9AB9\n0xEC6B\t0x9ABF\n0xEC6C\t0x9AB4\n0xEC6D\t0x9ABB\n0xEC6E\t0x9AF6\n0xEC6F\t0x9AFA\n0xEC70\t0x9AF9\n0xEC71\t0x9AF7\n0xEC72\t0x9B33\n0xEC73\t0x9B80\n0xEC74\t0x9B85\n0xEC75\t0x9B87\n0xEC76\t0x9B7C\n0xEC77\t0x9B7E\n0xEC78\t0x9B7B\n0xEC79\t0x9B82\n0xEC7A\t0x9B93\n0xEC7B\t0x9B92\n0xEC7C\t0x9B90\n0xEC7D\t0x9B7A\n0xEC7E\t0x9B95\n0xECA1\t0x9B7D\n0xECA2\t0x9B88\n0xECA3\t0x9D25\n0xECA4\t0x9D17\n0xECA5\t0x9D20\n0xECA6\t0x9D1E\n0xECA7\t0x9D14\n0xECA8\t0x9D29\n0xECA9\t0x9D1D\n0xECAA\t0x9D18\n0xECAB\t0x9D22\n0xECAC\t0x9D10\n0xECAD\t0x9D19\n0xECAE\t0x9D1F\n0xECAF\t0x9E88\n0xECB0\t0x9E86\n0xECB1\t0x9E87\n0xECB2\t0x9EAE\n0xECB3\t0x9EAD\n0xECB4\t0x9ED5\n0xECB5\t0x9ED6\n0xECB6\t0x9EFA\n0xECB7\t0x9F12\n0xECB8\t0x9F3D\n0xECB9\t0x5126\n0xECBA\t0x5125\n0xECBB\t0x5122\n0xECBC\t0x5124\n0xECBD\t0x5120\n0xECBE\t0x5129\n0xECBF\t0x52F4\n0xECC0\t0x5693\n0xECC1\t0x568C\n0xECC2\t0x568D\n0xECC3\t0x5686\n0xECC4\t0x5684\n0xECC5\t0x5683\n0xECC6\t0x567E\n0xECC7\t0x5682\n0xECC8\t0x567F\n0xECC9\t0x5681\n0xECCA\t0x58D6\n0xECCB\t0x58D4\n0xECCC\t0x58CF\n0xECCD\t0x58D2\n0xECCE\t0x5B2D\n0xECCF\t0x5B25\n0xECD0\t0x5B32\n0xECD1\t0x5B23\n0xECD2\t0x5B2C\n0xECD3\t0x5B27\n0xECD4\t0x5B26\n0xECD5\t0x5B2F\n0xECD6\t0x5B2E\n0xECD7\t0x5B7B\n0xECD8\t0x5BF1\n0xECD9\t0x5BF2\n0xECDA\t0x5DB7\n0xECDB\t0x5E6C\n0xECDC\t0x5E6A\n0xECDD\t0x5FBE\n0xECDE\t0x5FBB\n0xECDF\t0x61C3\n0xECE0\t0x61B5\n0xECE1\t0x61BC\n0xECE2\t0x61E7\n0xECE3\t0x61E0\n0xECE4\t0x61E5\n0xECE5\t0x61E4\n0xECE6\t0x61E8\n0xECE7\t0x61DE\n0xECE8\t0x64EF\n0xECE9\t0x64E9\n0xECEA\t0x64E3\n0xECEB\t0x64EB\n0xECEC\t0x64E4\n0xECED\t0x64E8\n0xECEE\t0x6581\n0xECEF\t0x6580\n0xECF0\t0x65B6\n0xECF1\t0x65DA\n0xECF2\t0x66D2\n0xECF3\t0x6A8D\n0xECF4\t0x6A96\n0xECF5\t0x6A81\n0xECF6\t0x6AA5\n0xECF7\t0x6A89\n0xECF8\t0x6A9F\n0xECF9\t0x6A9B\n0xECFA\t0x6AA1\n0xECFB\t0x6A9E\n0xECFC\t0x6A87\n0xECFD\t0x6A93\n0xECFE\t0x6A8E\n0xED40\t0x6A95\n0xED41\t0x6A83\n0xED42\t0x6AA8\n0xED43\t0x6AA4\n0xED44\t0x6A91\n0xED45\t0x6A7F\n0xED46\t0x6AA6\n0xED47\t0x6A9A\n0xED48\t0x6A85\n0xED49\t0x6A8C\n0xED4A\t0x6A92\n0xED4B\t0x6B5B\n0xED4C\t0x6BAD\n0xED4D\t0x6C09\n0xED4E\t0x6FCC\n0xED4F\t0x6FA9\n0xED50\t0x6FF4\n0xED51\t0x6FD4\n0xED52\t0x6FE3\n0xED53\t0x6FDC\n0xED54\t0x6FED\n0xED55\t0x6FE7\n0xED56\t0x6FE6\n0xED57\t0x6FDE\n0xED58\t0x6FF2\n0xED59\t0x6FDD\n0xED5A\t0x6FE2\n0xED5B\t0x6FE8\n0xED5C\t0x71E1\n0xED5D\t0x71F1\n0xED5E\t0x71E8\n0xED5F\t0x71F2\n0xED60\t0x71E4\n0xED61\t0x71F0\n0xED62\t0x71E2\n0xED63\t0x7373\n0xED64\t0x736E\n0xED65\t0x736F\n0xED66\t0x7497\n0xED67\t0x74B2\n0xED68\t0x74AB\n0xED69\t0x7490\n0xED6A\t0x74AA\n0xED6B\t0x74AD\n0xED6C\t0x74B1\n0xED6D\t0x74A5\n0xED6E\t0x74AF\n0xED6F\t0x7510\n0xED70\t0x7511\n0xED71\t0x7512\n0xED72\t0x750F\n0xED73\t0x7584\n0xED74\t0x7643\n0xED75\t0x7648\n0xED76\t0x7649\n0xED77\t0x7647\n0xED78\t0x76A4\n0xED79\t0x76E9\n0xED7A\t0x77B5\n0xED7B\t0x77AB\n0xED7C\t0x77B2\n0xED7D\t0x77B7\n0xED7E\t0x77B6\n0xEDA1\t0x77B4\n0xEDA2\t0x77B1\n0xEDA3\t0x77A8\n0xEDA4\t0x77F0\n0xEDA5\t0x78F3\n0xEDA6\t0x78FD\n0xEDA7\t0x7902\n0xEDA8\t0x78FB\n0xEDA9\t0x78FC\n0xEDAA\t0x78F2\n0xEDAB\t0x7905\n0xEDAC\t0x78F9\n0xEDAD\t0x78FE\n0xEDAE\t0x7904\n0xEDAF\t0x79AB\n0xEDB0\t0x79A8\n0xEDB1\t0x7A5C\n0xEDB2\t0x7A5B\n0xEDB3\t0x7A56\n0xEDB4\t0x7A58\n0xEDB5\t0x7A54\n0xEDB6\t0x7A5A\n0xEDB7\t0x7ABE\n0xEDB8\t0x7AC0\n0xEDB9\t0x7AC1\n0xEDBA\t0x7C05\n0xEDBB\t0x7C0F\n0xEDBC\t0x7BF2\n0xEDBD\t0x7C00\n0xEDBE\t0x7BFF\n0xEDBF\t0x7BFB\n0xEDC0\t0x7C0E\n0xEDC1\t0x7BF4\n0xEDC2\t0x7C0B\n0xEDC3\t0x7BF3\n0xEDC4\t0x7C02\n0xEDC5\t0x7C09\n0xEDC6\t0x7C03\n0xEDC7\t0x7C01\n0xEDC8\t0x7BF8\n0xEDC9\t0x7BFD\n0xEDCA\t0x7C06\n0xEDCB\t0x7BF0\n0xEDCC\t0x7BF1\n0xEDCD\t0x7C10\n0xEDCE\t0x7C0A\n0xEDCF\t0x7CE8\n0xEDD0\t0x7E2D\n0xEDD1\t0x7E3C\n0xEDD2\t0x7E42\n0xEDD3\t0x7E33\n0xEDD4\t0x9848\n0xEDD5\t0x7E38\n0xEDD6\t0x7E2A\n0xEDD7\t0x7E49\n0xEDD8\t0x7E40\n0xEDD9\t0x7E47\n0xEDDA\t0x7E29\n0xEDDB\t0x7E4C\n0xEDDC\t0x7E30\n0xEDDD\t0x7E3B\n0xEDDE\t0x7E36\n0xEDDF\t0x7E44\n0xEDE0\t0x7E3A\n0xEDE1\t0x7F45\n0xEDE2\t0x7F7F\n0xEDE3\t0x7F7E\n0xEDE4\t0x7F7D\n0xEDE5\t0x7FF4\n0xEDE6\t0x7FF2\n0xEDE7\t0x802C\n0xEDE8\t0x81BB\n0xEDE9\t0x81C4\n0xEDEA\t0x81CC\n0xEDEB\t0x81CA\n0xEDEC\t0x81C5\n0xEDED\t0x81C7\n0xEDEE\t0x81BC\n0xEDEF\t0x81E9\n0xEDF0\t0x825B\n0xEDF1\t0x825A\n0xEDF2\t0x825C\n0xEDF3\t0x8583\n0xEDF4\t0x8580\n0xEDF5\t0x858F\n0xEDF6\t0x85A7\n0xEDF7\t0x8595\n0xEDF8\t0x85A0\n0xEDF9\t0x858B\n0xEDFA\t0x85A3\n0xEDFB\t0x857B\n0xEDFC\t0x85A4\n0xEDFD\t0x859A\n0xEDFE\t0x859E\n0xEE40\t0x8577\n0xEE41\t0x857C\n0xEE42\t0x8589\n0xEE43\t0x85A1\n0xEE44\t0x857A\n0xEE45\t0x8578\n0xEE46\t0x8557\n0xEE47\t0x858E\n0xEE48\t0x8596\n0xEE49\t0x8586\n0xEE4A\t0x858D\n0xEE4B\t0x8599\n0xEE4C\t0x859D\n0xEE4D\t0x8581\n0xEE4E\t0x85A2\n0xEE4F\t0x8582\n0xEE50\t0x8588\n0xEE51\t0x8585\n0xEE52\t0x8579\n0xEE53\t0x8576\n0xEE54\t0x8598\n0xEE55\t0x8590\n0xEE56\t0x859F\n0xEE57\t0x8668\n0xEE58\t0x87BE\n0xEE59\t0x87AA\n0xEE5A\t0x87AD\n0xEE5B\t0x87C5\n0xEE5C\t0x87B0\n0xEE5D\t0x87AC\n0xEE5E\t0x87B9\n0xEE5F\t0x87B5\n0xEE60\t0x87BC\n0xEE61\t0x87AE\n0xEE62\t0x87C9\n0xEE63\t0x87C3\n0xEE64\t0x87C2\n0xEE65\t0x87CC\n0xEE66\t0x87B7\n0xEE67\t0x87AF\n0xEE68\t0x87C4\n0xEE69\t0x87CA\n0xEE6A\t0x87B4\n0xEE6B\t0x87B6\n0xEE6C\t0x87BF\n0xEE6D\t0x87B8\n0xEE6E\t0x87BD\n0xEE6F\t0x87DE\n0xEE70\t0x87B2\n0xEE71\t0x8935\n0xEE72\t0x8933\n0xEE73\t0x893C\n0xEE74\t0x893E\n0xEE75\t0x8941\n0xEE76\t0x8952\n0xEE77\t0x8937\n0xEE78\t0x8942\n0xEE79\t0x89AD\n0xEE7A\t0x89AF\n0xEE7B\t0x89AE\n0xEE7C\t0x89F2\n0xEE7D\t0x89F3\n0xEE7E\t0x8B1E\n0xEEA1\t0x8B18\n0xEEA2\t0x8B16\n0xEEA3\t0x8B11\n0xEEA4\t0x8B05\n0xEEA5\t0x8B0B\n0xEEA6\t0x8B22\n0xEEA7\t0x8B0F\n0xEEA8\t0x8B12\n0xEEA9\t0x8B15\n0xEEAA\t0x8B07\n0xEEAB\t0x8B0D\n0xEEAC\t0x8B08\n0xEEAD\t0x8B06\n0xEEAE\t0x8B1C\n0xEEAF\t0x8B13\n0xEEB0\t0x8B1A\n0xEEB1\t0x8C4F\n0xEEB2\t0x8C70\n0xEEB3\t0x8C72\n0xEEB4\t0x8C71\n0xEEB5\t0x8C6F\n0xEEB6\t0x8C95\n0xEEB7\t0x8C94\n0xEEB8\t0x8CF9\n0xEEB9\t0x8D6F\n0xEEBA\t0x8E4E\n0xEEBB\t0x8E4D\n0xEEBC\t0x8E53\n0xEEBD\t0x8E50\n0xEEBE\t0x8E4C\n0xEEBF\t0x8E47\n0xEEC0\t0x8F43\n0xEEC1\t0x8F40\n0xEEC2\t0x9085\n0xEEC3\t0x907E\n0xEEC4\t0x9138\n0xEEC5\t0x919A\n0xEEC6\t0x91A2\n0xEEC7\t0x919B\n0xEEC8\t0x9199\n0xEEC9\t0x919F\n0xEECA\t0x91A1\n0xEECB\t0x919D\n0xEECC\t0x91A0\n0xEECD\t0x93A1\n0xEECE\t0x9383\n0xEECF\t0x93AF\n0xEED0\t0x9364\n0xEED1\t0x9356\n0xEED2\t0x9347\n0xEED3\t0x937C\n0xEED4\t0x9358\n0xEED5\t0x935C\n0xEED6\t0x9376\n0xEED7\t0x9349\n0xEED8\t0x9350\n0xEED9\t0x9351\n0xEEDA\t0x9360\n0xEEDB\t0x936D\n0xEEDC\t0x938F\n0xEEDD\t0x934C\n0xEEDE\t0x936A\n0xEEDF\t0x9379\n0xEEE0\t0x9357\n0xEEE1\t0x9355\n0xEEE2\t0x9352\n0xEEE3\t0x934F\n0xEEE4\t0x9371\n0xEEE5\t0x9377\n0xEEE6\t0x937B\n0xEEE7\t0x9361\n0xEEE8\t0x935E\n0xEEE9\t0x9363\n0xEEEA\t0x9367\n0xEEEB\t0x9380\n0xEEEC\t0x934E\n0xEEED\t0x9359\n0xEEEE\t0x95C7\n0xEEEF\t0x95C0\n0xEEF0\t0x95C9\n0xEEF1\t0x95C3\n0xEEF2\t0x95C5\n0xEEF3\t0x95B7\n0xEEF4\t0x96AE\n0xEEF5\t0x96B0\n0xEEF6\t0x96AC\n0xEEF7\t0x9720\n0xEEF8\t0x971F\n0xEEF9\t0x9718\n0xEEFA\t0x971D\n0xEEFB\t0x9719\n0xEEFC\t0x979A\n0xEEFD\t0x97A1\n0xEEFE\t0x979C\n0xEF40\t0x979E\n0xEF41\t0x979D\n0xEF42\t0x97D5\n0xEF43\t0x97D4\n0xEF44\t0x97F1\n0xEF45\t0x9841\n0xEF46\t0x9844\n0xEF47\t0x984A\n0xEF48\t0x9849\n0xEF49\t0x9845\n0xEF4A\t0x9843\n0xEF4B\t0x9925\n0xEF4C\t0x992B\n0xEF4D\t0x992C\n0xEF4E\t0x992A\n0xEF4F\t0x9933\n0xEF50\t0x9932\n0xEF51\t0x992F\n0xEF52\t0x992D\n0xEF53\t0x9931\n0xEF54\t0x9930\n0xEF55\t0x9998\n0xEF56\t0x99A3\n0xEF57\t0x99A1\n0xEF58\t0x9A02\n0xEF59\t0x99FA\n0xEF5A\t0x99F4\n0xEF5B\t0x99F7\n0xEF5C\t0x99F9\n0xEF5D\t0x99F8\n0xEF5E\t0x99F6\n0xEF5F\t0x99FB\n0xEF60\t0x99FD\n0xEF61\t0x99FE\n0xEF62\t0x99FC\n0xEF63\t0x9A03\n0xEF64\t0x9ABE\n0xEF65\t0x9AFE\n0xEF66\t0x9AFD\n0xEF67\t0x9B01\n0xEF68\t0x9AFC\n0xEF69\t0x9B48\n0xEF6A\t0x9B9A\n0xEF6B\t0x9BA8\n0xEF6C\t0x9B9E\n0xEF6D\t0x9B9B\n0xEF6E\t0x9BA6\n0xEF6F\t0x9BA1\n0xEF70\t0x9BA5\n0xEF71\t0x9BA4\n0xEF72\t0x9B86\n0xEF73\t0x9BA2\n0xEF74\t0x9BA0\n0xEF75\t0x9BAF\n0xEF76\t0x9D33\n0xEF77\t0x9D41\n0xEF78\t0x9D67\n0xEF79\t0x9D36\n0xEF7A\t0x9D2E\n0xEF7B\t0x9D2F\n0xEF7C\t0x9D31\n0xEF7D\t0x9D38\n0xEF7E\t0x9D30\n0xEFA1\t0x9D45\n0xEFA2\t0x9D42\n0xEFA3\t0x9D43\n0xEFA4\t0x9D3E\n0xEFA5\t0x9D37\n0xEFA6\t0x9D40\n0xEFA7\t0x9D3D\n0xEFA8\t0x7FF5\n0xEFA9\t0x9D2D\n0xEFAA\t0x9E8A\n0xEFAB\t0x9E89\n0xEFAC\t0x9E8D\n0xEFAD\t0x9EB0\n0xEFAE\t0x9EC8\n0xEFAF\t0x9EDA\n0xEFB0\t0x9EFB\n0xEFB1\t0x9EFF\n0xEFB2\t0x9F24\n0xEFB3\t0x9F23\n0xEFB4\t0x9F22\n0xEFB5\t0x9F54\n0xEFB6\t0x9FA0\n0xEFB7\t0x5131\n0xEFB8\t0x512D\n0xEFB9\t0x512E\n0xEFBA\t0x5698\n0xEFBB\t0x569C\n0xEFBC\t0x5697\n0xEFBD\t0x569A\n0xEFBE\t0x569D\n0xEFBF\t0x5699\n0xEFC0\t0x5970\n0xEFC1\t0x5B3C\n0xEFC2\t0x5C69\n0xEFC3\t0x5C6A\n0xEFC4\t0x5DC0\n0xEFC5\t0x5E6D\n0xEFC6\t0x5E6E\n0xEFC7\t0x61D8\n0xEFC8\t0x61DF\n0xEFC9\t0x61ED\n0xEFCA\t0x61EE\n0xEFCB\t0x61F1\n0xEFCC\t0x61EA\n0xEFCD\t0x61F0\n0xEFCE\t0x61EB\n0xEFCF\t0x61D6\n0xEFD0\t0x61E9\n0xEFD1\t0x64FF\n0xEFD2\t0x6504\n0xEFD3\t0x64FD\n0xEFD4\t0x64F8\n0xEFD5\t0x6501\n0xEFD6\t0x6503\n0xEFD7\t0x64FC\n0xEFD8\t0x6594\n0xEFD9\t0x65DB\n0xEFDA\t0x66DA\n0xEFDB\t0x66DB\n0xEFDC\t0x66D8\n0xEFDD\t0x6AC5\n0xEFDE\t0x6AB9\n0xEFDF\t0x6ABD\n0xEFE0\t0x6AE1\n0xEFE1\t0x6AC6\n0xEFE2\t0x6ABA\n0xEFE3\t0x6AB6\n0xEFE4\t0x6AB7\n0xEFE5\t0x6AC7\n0xEFE6\t0x6AB4\n0xEFE7\t0x6AAD\n0xEFE8\t0x6B5E\n0xEFE9\t0x6BC9\n0xEFEA\t0x6C0B\n0xEFEB\t0x7007\n0xEFEC\t0x700C\n0xEFED\t0x700D\n0xEFEE\t0x7001\n0xEFEF\t0x7005\n0xEFF0\t0x7014\n0xEFF1\t0x700E\n0xEFF2\t0x6FFF\n0xEFF3\t0x7000\n0xEFF4\t0x6FFB\n0xEFF5\t0x7026\n0xEFF6\t0x6FFC\n0xEFF7\t0x6FF7\n0xEFF8\t0x700A\n0xEFF9\t0x7201\n0xEFFA\t0x71FF\n0xEFFB\t0x71F9\n0xEFFC\t0x7203\n0xEFFD\t0x71FD\n0xEFFE\t0x7376\n0xF040\t0x74B8\n0xF041\t0x74C0\n0xF042\t0x74B5\n0xF043\t0x74C1\n0xF044\t0x74BE\n0xF045\t0x74B6\n0xF046\t0x74BB\n0xF047\t0x74C2\n0xF048\t0x7514\n0xF049\t0x7513\n0xF04A\t0x765C\n0xF04B\t0x7664\n0xF04C\t0x7659\n0xF04D\t0x7650\n0xF04E\t0x7653\n0xF04F\t0x7657\n0xF050\t0x765A\n0xF051\t0x76A6\n0xF052\t0x76BD\n0xF053\t0x76EC\n0xF054\t0x77C2\n0xF055\t0x77BA\n0xF056\t0x78FF\n0xF057\t0x790C\n0xF058\t0x7913\n0xF059\t0x7914\n0xF05A\t0x7909\n0xF05B\t0x7910\n0xF05C\t0x7912\n0xF05D\t0x7911\n0xF05E\t0x79AD\n0xF05F\t0x79AC\n0xF060\t0x7A5F\n0xF061\t0x7C1C\n0xF062\t0x7C29\n0xF063\t0x7C19\n0xF064\t0x7C20\n0xF065\t0x7C1F\n0xF066\t0x7C2D\n0xF067\t0x7C1D\n0xF068\t0x7C26\n0xF069\t0x7C28\n0xF06A\t0x7C22\n0xF06B\t0x7C25\n0xF06C\t0x7C30\n0xF06D\t0x7E5C\n0xF06E\t0x7E50\n0xF06F\t0x7E56\n0xF070\t0x7E63\n0xF071\t0x7E58\n0xF072\t0x7E62\n0xF073\t0x7E5F\n0xF074\t0x7E51\n0xF075\t0x7E60\n0xF076\t0x7E57\n0xF077\t0x7E53\n0xF078\t0x7FB5\n0xF079\t0x7FB3\n0xF07A\t0x7FF7\n0xF07B\t0x7FF8\n0xF07C\t0x8075\n0xF07D\t0x81D1\n0xF07E\t0x81D2\n0xF0A1\t0x81D0\n0xF0A2\t0x825F\n0xF0A3\t0x825E\n0xF0A4\t0x85B4\n0xF0A5\t0x85C6\n0xF0A6\t0x85C0\n0xF0A7\t0x85C3\n0xF0A8\t0x85C2\n0xF0A9\t0x85B3\n0xF0AA\t0x85B5\n0xF0AB\t0x85BD\n0xF0AC\t0x85C7\n0xF0AD\t0x85C4\n0xF0AE\t0x85BF\n0xF0AF\t0x85CB\n0xF0B0\t0x85CE\n0xF0B1\t0x85C8\n0xF0B2\t0x85C5\n0xF0B3\t0x85B1\n0xF0B4\t0x85B6\n0xF0B5\t0x85D2\n0xF0B6\t0x8624\n0xF0B7\t0x85B8\n0xF0B8\t0x85B7\n0xF0B9\t0x85BE\n0xF0BA\t0x8669\n0xF0BB\t0x87E7\n0xF0BC\t0x87E6\n0xF0BD\t0x87E2\n0xF0BE\t0x87DB\n0xF0BF\t0x87EB\n0xF0C0\t0x87EA\n0xF0C1\t0x87E5\n0xF0C2\t0x87DF\n0xF0C3\t0x87F3\n0xF0C4\t0x87E4\n0xF0C5\t0x87D4\n0xF0C6\t0x87DC\n0xF0C7\t0x87D3\n0xF0C8\t0x87ED\n0xF0C9\t0x87D8\n0xF0CA\t0x87E3\n0xF0CB\t0x87A4\n0xF0CC\t0x87D7\n0xF0CD\t0x87D9\n0xF0CE\t0x8801\n0xF0CF\t0x87F4\n0xF0D0\t0x87E8\n0xF0D1\t0x87DD\n0xF0D2\t0x8953\n0xF0D3\t0x894B\n0xF0D4\t0x894F\n0xF0D5\t0x894C\n0xF0D6\t0x8946\n0xF0D7\t0x8950\n0xF0D8\t0x8951\n0xF0D9\t0x8949\n0xF0DA\t0x8B2A\n0xF0DB\t0x8B27\n0xF0DC\t0x8B23\n0xF0DD\t0x8B33\n0xF0DE\t0x8B30\n0xF0DF\t0x8B35\n0xF0E0\t0x8B47\n0xF0E1\t0x8B2F\n0xF0E2\t0x8B3C\n0xF0E3\t0x8B3E\n0xF0E4\t0x8B31\n0xF0E5\t0x8B25\n0xF0E6\t0x8B37\n0xF0E7\t0x8B26\n0xF0E8\t0x8B36\n0xF0E9\t0x8B2E\n0xF0EA\t0x8B24\n0xF0EB\t0x8B3B\n0xF0EC\t0x8B3D\n0xF0ED\t0x8B3A\n0xF0EE\t0x8C42\n0xF0EF\t0x8C75\n0xF0F0\t0x8C99\n0xF0F1\t0x8C98\n0xF0F2\t0x8C97\n0xF0F3\t0x8CFE\n0xF0F4\t0x8D04\n0xF0F5\t0x8D02\n0xF0F6\t0x8D00\n0xF0F7\t0x8E5C\n0xF0F8\t0x8E62\n0xF0F9\t0x8E60\n0xF0FA\t0x8E57\n0xF0FB\t0x8E56\n0xF0FC\t0x8E5E\n0xF0FD\t0x8E65\n0xF0FE\t0x8E67\n0xF140\t0x8E5B\n0xF141\t0x8E5A\n0xF142\t0x8E61\n0xF143\t0x8E5D\n0xF144\t0x8E69\n0xF145\t0x8E54\n0xF146\t0x8F46\n0xF147\t0x8F47\n0xF148\t0x8F48\n0xF149\t0x8F4B\n0xF14A\t0x9128\n0xF14B\t0x913A\n0xF14C\t0x913B\n0xF14D\t0x913E\n0xF14E\t0x91A8\n0xF14F\t0x91A5\n0xF150\t0x91A7\n0xF151\t0x91AF\n0xF152\t0x91AA\n0xF153\t0x93B5\n0xF154\t0x938C\n0xF155\t0x9392\n0xF156\t0x93B7\n0xF157\t0x939B\n0xF158\t0x939D\n0xF159\t0x9389\n0xF15A\t0x93A7\n0xF15B\t0x938E\n0xF15C\t0x93AA\n0xF15D\t0x939E\n0xF15E\t0x93A6\n0xF15F\t0x9395\n0xF160\t0x9388\n0xF161\t0x9399\n0xF162\t0x939F\n0xF163\t0x938D\n0xF164\t0x93B1\n0xF165\t0x9391\n0xF166\t0x93B2\n0xF167\t0x93A4\n0xF168\t0x93A8\n0xF169\t0x93B4\n0xF16A\t0x93A3\n0xF16B\t0x93A5\n0xF16C\t0x95D2\n0xF16D\t0x95D3\n0xF16E\t0x95D1\n0xF16F\t0x96B3\n0xF170\t0x96D7\n0xF171\t0x96DA\n0xF172\t0x5DC2\n0xF173\t0x96DF\n0xF174\t0x96D8\n0xF175\t0x96DD\n0xF176\t0x9723\n0xF177\t0x9722\n0xF178\t0x9725\n0xF179\t0x97AC\n0xF17A\t0x97AE\n0xF17B\t0x97A8\n0xF17C\t0x97AB\n0xF17D\t0x97A4\n0xF17E\t0x97AA\n0xF1A1\t0x97A2\n0xF1A2\t0x97A5\n0xF1A3\t0x97D7\n0xF1A4\t0x97D9\n0xF1A5\t0x97D6\n0xF1A6\t0x97D8\n0xF1A7\t0x97FA\n0xF1A8\t0x9850\n0xF1A9\t0x9851\n0xF1AA\t0x9852\n0xF1AB\t0x98B8\n0xF1AC\t0x9941\n0xF1AD\t0x993C\n0xF1AE\t0x993A\n0xF1AF\t0x9A0F\n0xF1B0\t0x9A0B\n0xF1B1\t0x9A09\n0xF1B2\t0x9A0D\n0xF1B3\t0x9A04\n0xF1B4\t0x9A11\n0xF1B5\t0x9A0A\n0xF1B6\t0x9A05\n0xF1B7\t0x9A07\n0xF1B8\t0x9A06\n0xF1B9\t0x9AC0\n0xF1BA\t0x9ADC\n0xF1BB\t0x9B08\n0xF1BC\t0x9B04\n0xF1BD\t0x9B05\n0xF1BE\t0x9B29\n0xF1BF\t0x9B35\n0xF1C0\t0x9B4A\n0xF1C1\t0x9B4C\n0xF1C2\t0x9B4B\n0xF1C3\t0x9BC7\n0xF1C4\t0x9BC6\n0xF1C5\t0x9BC3\n0xF1C6\t0x9BBF\n0xF1C7\t0x9BC1\n0xF1C8\t0x9BB5\n0xF1C9\t0x9BB8\n0xF1CA\t0x9BD3\n0xF1CB\t0x9BB6\n0xF1CC\t0x9BC4\n0xF1CD\t0x9BB9\n0xF1CE\t0x9BBD\n0xF1CF\t0x9D5C\n0xF1D0\t0x9D53\n0xF1D1\t0x9D4F\n0xF1D2\t0x9D4A\n0xF1D3\t0x9D5B\n0xF1D4\t0x9D4B\n0xF1D5\t0x9D59\n0xF1D6\t0x9D56\n0xF1D7\t0x9D4C\n0xF1D8\t0x9D57\n0xF1D9\t0x9D52\n0xF1DA\t0x9D54\n0xF1DB\t0x9D5F\n0xF1DC\t0x9D58\n0xF1DD\t0x9D5A\n0xF1DE\t0x9E8E\n0xF1DF\t0x9E8C\n0xF1E0\t0x9EDF\n0xF1E1\t0x9F01\n0xF1E2\t0x9F00\n0xF1E3\t0x9F16\n0xF1E4\t0x9F25\n0xF1E5\t0x9F2B\n0xF1E6\t0x9F2A\n0xF1E7\t0x9F29\n0xF1E8\t0x9F28\n0xF1E9\t0x9F4C\n0xF1EA\t0x9F55\n0xF1EB\t0x5134\n0xF1EC\t0x5135\n0xF1ED\t0x5296\n0xF1EE\t0x52F7\n0xF1EF\t0x53B4\n0xF1F0\t0x56AB\n0xF1F1\t0x56AD\n0xF1F2\t0x56A6\n0xF1F3\t0x56A7\n0xF1F4\t0x56AA\n0xF1F5\t0x56AC\n0xF1F6\t0x58DA\n0xF1F7\t0x58DD\n0xF1F8\t0x58DB\n0xF1F9\t0x5912\n0xF1FA\t0x5B3D\n0xF1FB\t0x5B3E\n0xF1FC\t0x5B3F\n0xF1FD\t0x5DC3\n0xF1FE\t0x5E70\n0xF240\t0x5FBF\n0xF241\t0x61FB\n0xF242\t0x6507\n0xF243\t0x6510\n0xF244\t0x650D\n0xF245\t0x6509\n0xF246\t0x650C\n0xF247\t0x650E\n0xF248\t0x6584\n0xF249\t0x65DE\n0xF24A\t0x65DD\n0xF24B\t0x66DE\n0xF24C\t0x6AE7\n0xF24D\t0x6AE0\n0xF24E\t0x6ACC\n0xF24F\t0x6AD1\n0xF250\t0x6AD9\n0xF251\t0x6ACB\n0xF252\t0x6ADF\n0xF253\t0x6ADC\n0xF254\t0x6AD0\n0xF255\t0x6AEB\n0xF256\t0x6ACF\n0xF257\t0x6ACD\n0xF258\t0x6ADE\n0xF259\t0x6B60\n0xF25A\t0x6BB0\n0xF25B\t0x6C0C\n0xF25C\t0x7019\n0xF25D\t0x7027\n0xF25E\t0x7020\n0xF25F\t0x7016\n0xF260\t0x702B\n0xF261\t0x7021\n0xF262\t0x7022\n0xF263\t0x7023\n0xF264\t0x7029\n0xF265\t0x7017\n0xF266\t0x7024\n0xF267\t0x701C\n0xF268\t0x702A\n0xF269\t0x720C\n0xF26A\t0x720A\n0xF26B\t0x7207\n0xF26C\t0x7202\n0xF26D\t0x7205\n0xF26E\t0x72A5\n0xF26F\t0x72A6\n0xF270\t0x72A4\n0xF271\t0x72A3\n0xF272\t0x72A1\n0xF273\t0x74CB\n0xF274\t0x74C5\n0xF275\t0x74B7\n0xF276\t0x74C3\n0xF277\t0x7516\n0xF278\t0x7660\n0xF279\t0x77C9\n0xF27A\t0x77CA\n0xF27B\t0x77C4\n0xF27C\t0x77F1\n0xF27D\t0x791D\n0xF27E\t0x791B\n0xF2A1\t0x7921\n0xF2A2\t0x791C\n0xF2A3\t0x7917\n0xF2A4\t0x791E\n0xF2A5\t0x79B0\n0xF2A6\t0x7A67\n0xF2A7\t0x7A68\n0xF2A8\t0x7C33\n0xF2A9\t0x7C3C\n0xF2AA\t0x7C39\n0xF2AB\t0x7C2C\n0xF2AC\t0x7C3B\n0xF2AD\t0x7CEC\n0xF2AE\t0x7CEA\n0xF2AF\t0x7E76\n0xF2B0\t0x7E75\n0xF2B1\t0x7E78\n0xF2B2\t0x7E70\n0xF2B3\t0x7E77\n0xF2B4\t0x7E6F\n0xF2B5\t0x7E7A\n0xF2B6\t0x7E72\n0xF2B7\t0x7E74\n0xF2B8\t0x7E68\n0xF2B9\t0x7F4B\n0xF2BA\t0x7F4A\n0xF2BB\t0x7F83\n0xF2BC\t0x7F86\n0xF2BD\t0x7FB7\n0xF2BE\t0x7FFD\n0xF2BF\t0x7FFE\n0xF2C0\t0x8078\n0xF2C1\t0x81D7\n0xF2C2\t0x81D5\n0xF2C3\t0x8264\n0xF2C4\t0x8261\n0xF2C5\t0x8263\n0xF2C6\t0x85EB\n0xF2C7\t0x85F1\n0xF2C8\t0x85ED\n0xF2C9\t0x85D9\n0xF2CA\t0x85E1\n0xF2CB\t0x85E8\n0xF2CC\t0x85DA\n0xF2CD\t0x85D7\n0xF2CE\t0x85EC\n0xF2CF\t0x85F2\n0xF2D0\t0x85F8\n0xF2D1\t0x85D8\n0xF2D2\t0x85DF\n0xF2D3\t0x85E3\n0xF2D4\t0x85DC\n0xF2D5\t0x85D1\n0xF2D6\t0x85F0\n0xF2D7\t0x85E6\n0xF2D8\t0x85EF\n0xF2D9\t0x85DE\n0xF2DA\t0x85E2\n0xF2DB\t0x8800\n0xF2DC\t0x87FA\n0xF2DD\t0x8803\n0xF2DE\t0x87F6\n0xF2DF\t0x87F7\n0xF2E0\t0x8809\n0xF2E1\t0x880C\n0xF2E2\t0x880B\n0xF2E3\t0x8806\n0xF2E4\t0x87FC\n0xF2E5\t0x8808\n0xF2E6\t0x87FF\n0xF2E7\t0x880A\n0xF2E8\t0x8802\n0xF2E9\t0x8962\n0xF2EA\t0x895A\n0xF2EB\t0x895B\n0xF2EC\t0x8957\n0xF2ED\t0x8961\n0xF2EE\t0x895C\n0xF2EF\t0x8958\n0xF2F0\t0x895D\n0xF2F1\t0x8959\n0xF2F2\t0x8988\n0xF2F3\t0x89B7\n0xF2F4\t0x89B6\n0xF2F5\t0x89F6\n0xF2F6\t0x8B50\n0xF2F7\t0x8B48\n0xF2F8\t0x8B4A\n0xF2F9\t0x8B40\n0xF2FA\t0x8B53\n0xF2FB\t0x8B56\n0xF2FC\t0x8B54\n0xF2FD\t0x8B4B\n0xF2FE\t0x8B55\n0xF340\t0x8B51\n0xF341\t0x8B42\n0xF342\t0x8B52\n0xF343\t0x8B57\n0xF344\t0x8C43\n0xF345\t0x8C77\n0xF346\t0x8C76\n0xF347\t0x8C9A\n0xF348\t0x8D06\n0xF349\t0x8D07\n0xF34A\t0x8D09\n0xF34B\t0x8DAC\n0xF34C\t0x8DAA\n0xF34D\t0x8DAD\n0xF34E\t0x8DAB\n0xF34F\t0x8E6D\n0xF350\t0x8E78\n0xF351\t0x8E73\n0xF352\t0x8E6A\n0xF353\t0x8E6F\n0xF354\t0x8E7B\n0xF355\t0x8EC2\n0xF356\t0x8F52\n0xF357\t0x8F51\n0xF358\t0x8F4F\n0xF359\t0x8F50\n0xF35A\t0x8F53\n0xF35B\t0x8FB4\n0xF35C\t0x9140\n0xF35D\t0x913F\n0xF35E\t0x91B0\n0xF35F\t0x91AD\n0xF360\t0x93DE\n0xF361\t0x93C7\n0xF362\t0x93CF\n0xF363\t0x93C2\n0xF364\t0x93DA\n0xF365\t0x93D0\n0xF366\t0x93F9\n0xF367\t0x93EC\n0xF368\t0x93CC\n0xF369\t0x93D9\n0xF36A\t0x93A9\n0xF36B\t0x93E6\n0xF36C\t0x93CA\n0xF36D\t0x93D4\n0xF36E\t0x93EE\n0xF36F\t0x93E3\n0xF370\t0x93D5\n0xF371\t0x93C4\n0xF372\t0x93CE\n0xF373\t0x93C0\n0xF374\t0x93D2\n0xF375\t0x93E7\n0xF376\t0x957D\n0xF377\t0x95DA\n0xF378\t0x95DB\n0xF379\t0x96E1\n0xF37A\t0x9729\n0xF37B\t0x972B\n0xF37C\t0x972C\n0xF37D\t0x9728\n0xF37E\t0x9726\n0xF3A1\t0x97B3\n0xF3A2\t0x97B7\n0xF3A3\t0x97B6\n0xF3A4\t0x97DD\n0xF3A5\t0x97DE\n0xF3A6\t0x97DF\n0xF3A7\t0x985C\n0xF3A8\t0x9859\n0xF3A9\t0x985D\n0xF3AA\t0x9857\n0xF3AB\t0x98BF\n0xF3AC\t0x98BD\n0xF3AD\t0x98BB\n0xF3AE\t0x98BE\n0xF3AF\t0x9948\n0xF3B0\t0x9947\n0xF3B1\t0x9943\n0xF3B2\t0x99A6\n0xF3B3\t0x99A7\n0xF3B4\t0x9A1A\n0xF3B5\t0x9A15\n0xF3B6\t0x9A25\n0xF3B7\t0x9A1D\n0xF3B8\t0x9A24\n0xF3B9\t0x9A1B\n0xF3BA\t0x9A22\n0xF3BB\t0x9A20\n0xF3BC\t0x9A27\n0xF3BD\t0x9A23\n0xF3BE\t0x9A1E\n0xF3BF\t0x9A1C\n0xF3C0\t0x9A14\n0xF3C1\t0x9AC2\n0xF3C2\t0x9B0B\n0xF3C3\t0x9B0A\n0xF3C4\t0x9B0E\n0xF3C5\t0x9B0C\n0xF3C6\t0x9B37\n0xF3C7\t0x9BEA\n0xF3C8\t0x9BEB\n0xF3C9\t0x9BE0\n0xF3CA\t0x9BDE\n0xF3CB\t0x9BE4\n0xF3CC\t0x9BE6\n0xF3CD\t0x9BE2\n0xF3CE\t0x9BF0\n0xF3CF\t0x9BD4\n0xF3D0\t0x9BD7\n0xF3D1\t0x9BEC\n0xF3D2\t0x9BDC\n0xF3D3\t0x9BD9\n0xF3D4\t0x9BE5\n0xF3D5\t0x9BD5\n0xF3D6\t0x9BE1\n0xF3D7\t0x9BDA\n0xF3D8\t0x9D77\n0xF3D9\t0x9D81\n0xF3DA\t0x9D8A\n0xF3DB\t0x9D84\n0xF3DC\t0x9D88\n0xF3DD\t0x9D71\n0xF3DE\t0x9D80\n0xF3DF\t0x9D78\n0xF3E0\t0x9D86\n0xF3E1\t0x9D8B\n0xF3E2\t0x9D8C\n0xF3E3\t0x9D7D\n0xF3E4\t0x9D6B\n0xF3E5\t0x9D74\n0xF3E6\t0x9D75\n0xF3E7\t0x9D70\n0xF3E8\t0x9D69\n0xF3E9\t0x9D85\n0xF3EA\t0x9D73\n0xF3EB\t0x9D7B\n0xF3EC\t0x9D82\n0xF3ED\t0x9D6F\n0xF3EE\t0x9D79\n0xF3EF\t0x9D7F\n0xF3F0\t0x9D87\n0xF3F1\t0x9D68\n0xF3F2\t0x9E94\n0xF3F3\t0x9E91\n0xF3F4\t0x9EC0\n0xF3F5\t0x9EFC\n0xF3F6\t0x9F2D\n0xF3F7\t0x9F40\n0xF3F8\t0x9F41\n0xF3F9\t0x9F4D\n0xF3FA\t0x9F56\n0xF3FB\t0x9F57\n0xF3FC\t0x9F58\n0xF3FD\t0x5337\n0xF3FE\t0x56B2\n0xF440\t0x56B5\n0xF441\t0x56B3\n0xF442\t0x58E3\n0xF443\t0x5B45\n0xF444\t0x5DC6\n0xF445\t0x5DC7\n0xF446\t0x5EEE\n0xF447\t0x5EEF\n0xF448\t0x5FC0\n0xF449\t0x5FC1\n0xF44A\t0x61F9\n0xF44B\t0x6517\n0xF44C\t0x6516\n0xF44D\t0x6515\n0xF44E\t0x6513\n0xF44F\t0x65DF\n0xF450\t0x66E8\n0xF451\t0x66E3\n0xF452\t0x66E4\n0xF453\t0x6AF3\n0xF454\t0x6AF0\n0xF455\t0x6AEA\n0xF456\t0x6AE8\n0xF457\t0x6AF9\n0xF458\t0x6AF1\n0xF459\t0x6AEE\n0xF45A\t0x6AEF\n0xF45B\t0x703C\n0xF45C\t0x7035\n0xF45D\t0x702F\n0xF45E\t0x7037\n0xF45F\t0x7034\n0xF460\t0x7031\n0xF461\t0x7042\n0xF462\t0x7038\n0xF463\t0x703F\n0xF464\t0x703A\n0xF465\t0x7039\n0xF466\t0x7040\n0xF467\t0x703B\n0xF468\t0x7033\n0xF469\t0x7041\n0xF46A\t0x7213\n0xF46B\t0x7214\n0xF46C\t0x72A8\n0xF46D\t0x737D\n0xF46E\t0x737C\n0xF46F\t0x74BA\n0xF470\t0x76AB\n0xF471\t0x76AA\n0xF472\t0x76BE\n0xF473\t0x76ED\n0xF474\t0x77CC\n0xF475\t0x77CE\n0xF476\t0x77CF\n0xF477\t0x77CD\n0xF478\t0x77F2\n0xF479\t0x7925\n0xF47A\t0x7923\n0xF47B\t0x7927\n0xF47C\t0x7928\n0xF47D\t0x7924\n0xF47E\t0x7929\n0xF4A1\t0x79B2\n0xF4A2\t0x7A6E\n0xF4A3\t0x7A6C\n0xF4A4\t0x7A6D\n0xF4A5\t0x7AF7\n0xF4A6\t0x7C49\n0xF4A7\t0x7C48\n0xF4A8\t0x7C4A\n0xF4A9\t0x7C47\n0xF4AA\t0x7C45\n0xF4AB\t0x7CEE\n0xF4AC\t0x7E7B\n0xF4AD\t0x7E7E\n0xF4AE\t0x7E81\n0xF4AF\t0x7E80\n0xF4B0\t0x7FBA\n0xF4B1\t0x7FFF\n0xF4B2\t0x8079\n0xF4B3\t0x81DB\n0xF4B4\t0x81D9\n0xF4B5\t0x820B\n0xF4B6\t0x8268\n0xF4B7\t0x8269\n0xF4B8\t0x8622\n0xF4B9\t0x85FF\n0xF4BA\t0x8601\n0xF4BB\t0x85FE\n0xF4BC\t0x861B\n0xF4BD\t0x8600\n0xF4BE\t0x85F6\n0xF4BF\t0x8604\n0xF4C0\t0x8609\n0xF4C1\t0x8605\n0xF4C2\t0x860C\n0xF4C3\t0x85FD\n0xF4C4\t0x8819\n0xF4C5\t0x8810\n0xF4C6\t0x8811\n0xF4C7\t0x8817\n0xF4C8\t0x8813\n0xF4C9\t0x8816\n0xF4CA\t0x8963\n0xF4CB\t0x8966\n0xF4CC\t0x89B9\n0xF4CD\t0x89F7\n0xF4CE\t0x8B60\n0xF4CF\t0x8B6A\n0xF4D0\t0x8B5D\n0xF4D1\t0x8B68\n0xF4D2\t0x8B63\n0xF4D3\t0x8B65\n0xF4D4\t0x8B67\n0xF4D5\t0x8B6D\n0xF4D6\t0x8DAE\n0xF4D7\t0x8E86\n0xF4D8\t0x8E88\n0xF4D9\t0x8E84\n0xF4DA\t0x8F59\n0xF4DB\t0x8F56\n0xF4DC\t0x8F57\n0xF4DD\t0x8F55\n0xF4DE\t0x8F58\n0xF4DF\t0x8F5A\n0xF4E0\t0x908D\n0xF4E1\t0x9143\n0xF4E2\t0x9141\n0xF4E3\t0x91B7\n0xF4E4\t0x91B5\n0xF4E5\t0x91B2\n0xF4E6\t0x91B3\n0xF4E7\t0x940B\n0xF4E8\t0x9413\n0xF4E9\t0x93FB\n0xF4EA\t0x9420\n0xF4EB\t0x940F\n0xF4EC\t0x9414\n0xF4ED\t0x93FE\n0xF4EE\t0x9415\n0xF4EF\t0x9410\n0xF4F0\t0x9428\n0xF4F1\t0x9419\n0xF4F2\t0x940D\n0xF4F3\t0x93F5\n0xF4F4\t0x9400\n0xF4F5\t0x93F7\n0xF4F6\t0x9407\n0xF4F7\t0x940E\n0xF4F8\t0x9416\n0xF4F9\t0x9412\n0xF4FA\t0x93FA\n0xF4FB\t0x9409\n0xF4FC\t0x93F8\n0xF4FD\t0x940A\n0xF4FE\t0x93FF\n0xF540\t0x93FC\n0xF541\t0x940C\n0xF542\t0x93F6\n0xF543\t0x9411\n0xF544\t0x9406\n0xF545\t0x95DE\n0xF546\t0x95E0\n0xF547\t0x95DF\n0xF548\t0x972E\n0xF549\t0x972F\n0xF54A\t0x97B9\n0xF54B\t0x97BB\n0xF54C\t0x97FD\n0xF54D\t0x97FE\n0xF54E\t0x9860\n0xF54F\t0x9862\n0xF550\t0x9863\n0xF551\t0x985F\n0xF552\t0x98C1\n0xF553\t0x98C2\n0xF554\t0x9950\n0xF555\t0x994E\n0xF556\t0x9959\n0xF557\t0x994C\n0xF558\t0x994B\n0xF559\t0x9953\n0xF55A\t0x9A32\n0xF55B\t0x9A34\n0xF55C\t0x9A31\n0xF55D\t0x9A2C\n0xF55E\t0x9A2A\n0xF55F\t0x9A36\n0xF560\t0x9A29\n0xF561\t0x9A2E\n0xF562\t0x9A38\n0xF563\t0x9A2D\n0xF564\t0x9AC7\n0xF565\t0x9ACA\n0xF566\t0x9AC6\n0xF567\t0x9B10\n0xF568\t0x9B12\n0xF569\t0x9B11\n0xF56A\t0x9C0B\n0xF56B\t0x9C08\n0xF56C\t0x9BF7\n0xF56D\t0x9C05\n0xF56E\t0x9C12\n0xF56F\t0x9BF8\n0xF570\t0x9C40\n0xF571\t0x9C07\n0xF572\t0x9C0E\n0xF573\t0x9C06\n0xF574\t0x9C17\n0xF575\t0x9C14\n0xF576\t0x9C09\n0xF577\t0x9D9F\n0xF578\t0x9D99\n0xF579\t0x9DA4\n0xF57A\t0x9D9D\n0xF57B\t0x9D92\n0xF57C\t0x9D98\n0xF57D\t0x9D90\n0xF57E\t0x9D9B\n0xF5A1\t0x9DA0\n0xF5A2\t0x9D94\n0xF5A3\t0x9D9C\n0xF5A4\t0x9DAA\n0xF5A5\t0x9D97\n0xF5A6\t0x9DA1\n0xF5A7\t0x9D9A\n0xF5A8\t0x9DA2\n0xF5A9\t0x9DA8\n0xF5AA\t0x9D9E\n0xF5AB\t0x9DA3\n0xF5AC\t0x9DBF\n0xF5AD\t0x9DA9\n0xF5AE\t0x9D96\n0xF5AF\t0x9DA6\n0xF5B0\t0x9DA7\n0xF5B1\t0x9E99\n0xF5B2\t0x9E9B\n0xF5B3\t0x9E9A\n0xF5B4\t0x9EE5\n0xF5B5\t0x9EE4\n0xF5B6\t0x9EE7\n0xF5B7\t0x9EE6\n0xF5B8\t0x9F30\n0xF5B9\t0x9F2E\n0xF5BA\t0x9F5B\n0xF5BB\t0x9F60\n0xF5BC\t0x9F5E\n0xF5BD\t0x9F5D\n0xF5BE\t0x9F59\n0xF5BF\t0x9F91\n0xF5C0\t0x513A\n0xF5C1\t0x5139\n0xF5C2\t0x5298\n0xF5C3\t0x5297\n0xF5C4\t0x56C3\n0xF5C5\t0x56BD\n0xF5C6\t0x56BE\n0xF5C7\t0x5B48\n0xF5C8\t0x5B47\n0xF5C9\t0x5DCB\n0xF5CA\t0x5DCF\n0xF5CB\t0x5EF1\n0xF5CC\t0x61FD\n0xF5CD\t0x651B\n0xF5CE\t0x6B02\n0xF5CF\t0x6AFC\n0xF5D0\t0x6B03\n0xF5D1\t0x6AF8\n0xF5D2\t0x6B00\n0xF5D3\t0x7043\n0xF5D4\t0x7044\n0xF5D5\t0x704A\n0xF5D6\t0x7048\n0xF5D7\t0x7049\n0xF5D8\t0x7045\n0xF5D9\t0x7046\n0xF5DA\t0x721D\n0xF5DB\t0x721A\n0xF5DC\t0x7219\n0xF5DD\t0x737E\n0xF5DE\t0x7517\n0xF5DF\t0x766A\n0xF5E0\t0x77D0\n0xF5E1\t0x792D\n0xF5E2\t0x7931\n0xF5E3\t0x792F\n0xF5E4\t0x7C54\n0xF5E5\t0x7C53\n0xF5E6\t0x7CF2\n0xF5E7\t0x7E8A\n0xF5E8\t0x7E87\n0xF5E9\t0x7E88\n0xF5EA\t0x7E8B\n0xF5EB\t0x7E86\n0xF5EC\t0x7E8D\n0xF5ED\t0x7F4D\n0xF5EE\t0x7FBB\n0xF5EF\t0x8030\n0xF5F0\t0x81DD\n0xF5F1\t0x8618\n0xF5F2\t0x862A\n0xF5F3\t0x8626\n0xF5F4\t0x861F\n0xF5F5\t0x8623\n0xF5F6\t0x861C\n0xF5F7\t0x8619\n0xF5F8\t0x8627\n0xF5F9\t0x862E\n0xF5FA\t0x8621\n0xF5FB\t0x8620\n0xF5FC\t0x8629\n0xF5FD\t0x861E\n0xF5FE\t0x8625\n0xF640\t0x8829\n0xF641\t0x881D\n0xF642\t0x881B\n0xF643\t0x8820\n0xF644\t0x8824\n0xF645\t0x881C\n0xF646\t0x882B\n0xF647\t0x884A\n0xF648\t0x896D\n0xF649\t0x8969\n0xF64A\t0x896E\n0xF64B\t0x896B\n0xF64C\t0x89FA\n0xF64D\t0x8B79\n0xF64E\t0x8B78\n0xF64F\t0x8B45\n0xF650\t0x8B7A\n0xF651\t0x8B7B\n0xF652\t0x8D10\n0xF653\t0x8D14\n0xF654\t0x8DAF\n0xF655\t0x8E8E\n0xF656\t0x8E8C\n0xF657\t0x8F5E\n0xF658\t0x8F5B\n0xF659\t0x8F5D\n0xF65A\t0x9146\n0xF65B\t0x9144\n0xF65C\t0x9145\n0xF65D\t0x91B9\n0xF65E\t0x943F\n0xF65F\t0x943B\n0xF660\t0x9436\n0xF661\t0x9429\n0xF662\t0x943D\n0xF663\t0x943C\n0xF664\t0x9430\n0xF665\t0x9439\n0xF666\t0x942A\n0xF667\t0x9437\n0xF668\t0x942C\n0xF669\t0x9440\n0xF66A\t0x9431\n0xF66B\t0x95E5\n0xF66C\t0x95E4\n0xF66D\t0x95E3\n0xF66E\t0x9735\n0xF66F\t0x973A\n0xF670\t0x97BF\n0xF671\t0x97E1\n0xF672\t0x9864\n0xF673\t0x98C9\n0xF674\t0x98C6\n0xF675\t0x98C0\n0xF676\t0x9958\n0xF677\t0x9956\n0xF678\t0x9A39\n0xF679\t0x9A3D\n0xF67A\t0x9A46\n0xF67B\t0x9A44\n0xF67C\t0x9A42\n0xF67D\t0x9A41\n0xF67E\t0x9A3A\n0xF6A1\t0x9A3F\n0xF6A2\t0x9ACD\n0xF6A3\t0x9B15\n0xF6A4\t0x9B17\n0xF6A5\t0x9B18\n0xF6A6\t0x9B16\n0xF6A7\t0x9B3A\n0xF6A8\t0x9B52\n0xF6A9\t0x9C2B\n0xF6AA\t0x9C1D\n0xF6AB\t0x9C1C\n0xF6AC\t0x9C2C\n0xF6AD\t0x9C23\n0xF6AE\t0x9C28\n0xF6AF\t0x9C29\n0xF6B0\t0x9C24\n0xF6B1\t0x9C21\n0xF6B2\t0x9DB7\n0xF6B3\t0x9DB6\n0xF6B4\t0x9DBC\n0xF6B5\t0x9DC1\n0xF6B6\t0x9DC7\n0xF6B7\t0x9DCA\n0xF6B8\t0x9DCF\n0xF6B9\t0x9DBE\n0xF6BA\t0x9DC5\n0xF6BB\t0x9DC3\n0xF6BC\t0x9DBB\n0xF6BD\t0x9DB5\n0xF6BE\t0x9DCE\n0xF6BF\t0x9DB9\n0xF6C0\t0x9DBA\n0xF6C1\t0x9DAC\n0xF6C2\t0x9DC8\n0xF6C3\t0x9DB1\n0xF6C4\t0x9DAD\n0xF6C5\t0x9DCC\n0xF6C6\t0x9DB3\n0xF6C7\t0x9DCD\n0xF6C8\t0x9DB2\n0xF6C9\t0x9E7A\n0xF6CA\t0x9E9C\n0xF6CB\t0x9EEB\n0xF6CC\t0x9EEE\n0xF6CD\t0x9EED\n0xF6CE\t0x9F1B\n0xF6CF\t0x9F18\n0xF6D0\t0x9F1A\n0xF6D1\t0x9F31\n0xF6D2\t0x9F4E\n0xF6D3\t0x9F65\n0xF6D4\t0x9F64\n0xF6D5\t0x9F92\n0xF6D6\t0x4EB9\n0xF6D7\t0x56C6\n0xF6D8\t0x56C5\n0xF6D9\t0x56CB\n0xF6DA\t0x5971\n0xF6DB\t0x5B4B\n0xF6DC\t0x5B4C\n0xF6DD\t0x5DD5\n0xF6DE\t0x5DD1\n0xF6DF\t0x5EF2\n0xF6E0\t0x6521\n0xF6E1\t0x6520\n0xF6E2\t0x6526\n0xF6E3\t0x6522\n0xF6E4\t0x6B0B\n0xF6E5\t0x6B08\n0xF6E6\t0x6B09\n0xF6E7\t0x6C0D\n0xF6E8\t0x7055\n0xF6E9\t0x7056\n0xF6EA\t0x7057\n0xF6EB\t0x7052\n0xF6EC\t0x721E\n0xF6ED\t0x721F\n0xF6EE\t0x72A9\n0xF6EF\t0x737F\n0xF6F0\t0x74D8\n0xF6F1\t0x74D5\n0xF6F2\t0x74D9\n0xF6F3\t0x74D7\n0xF6F4\t0x766D\n0xF6F5\t0x76AD\n0xF6F6\t0x7935\n0xF6F7\t0x79B4\n0xF6F8\t0x7A70\n0xF6F9\t0x7A71\n0xF6FA\t0x7C57\n0xF6FB\t0x7C5C\n0xF6FC\t0x7C59\n0xF6FD\t0x7C5B\n0xF6FE\t0x7C5A\n0xF740\t0x7CF4\n0xF741\t0x7CF1\n0xF742\t0x7E91\n0xF743\t0x7F4F\n0xF744\t0x7F87\n0xF745\t0x81DE\n0xF746\t0x826B\n0xF747\t0x8634\n0xF748\t0x8635\n0xF749\t0x8633\n0xF74A\t0x862C\n0xF74B\t0x8632\n0xF74C\t0x8636\n0xF74D\t0x882C\n0xF74E\t0x8828\n0xF74F\t0x8826\n0xF750\t0x882A\n0xF751\t0x8825\n0xF752\t0x8971\n0xF753\t0x89BF\n0xF754\t0x89BE\n0xF755\t0x89FB\n0xF756\t0x8B7E\n0xF757\t0x8B84\n0xF758\t0x8B82\n0xF759\t0x8B86\n0xF75A\t0x8B85\n0xF75B\t0x8B7F\n0xF75C\t0x8D15\n0xF75D\t0x8E95\n0xF75E\t0x8E94\n0xF75F\t0x8E9A\n0xF760\t0x8E92\n0xF761\t0x8E90\n0xF762\t0x8E96\n0xF763\t0x8E97\n0xF764\t0x8F60\n0xF765\t0x8F62\n0xF766\t0x9147\n0xF767\t0x944C\n0xF768\t0x9450\n0xF769\t0x944A\n0xF76A\t0x944B\n0xF76B\t0x944F\n0xF76C\t0x9447\n0xF76D\t0x9445\n0xF76E\t0x9448\n0xF76F\t0x9449\n0xF770\t0x9446\n0xF771\t0x973F\n0xF772\t0x97E3\n0xF773\t0x986A\n0xF774\t0x9869\n0xF775\t0x98CB\n0xF776\t0x9954\n0xF777\t0x995B\n0xF778\t0x9A4E\n0xF779\t0x9A53\n0xF77A\t0x9A54\n0xF77B\t0x9A4C\n0xF77C\t0x9A4F\n0xF77D\t0x9A48\n0xF77E\t0x9A4A\n0xF7A1\t0x9A49\n0xF7A2\t0x9A52\n0xF7A3\t0x9A50\n0xF7A4\t0x9AD0\n0xF7A5\t0x9B19\n0xF7A6\t0x9B2B\n0xF7A7\t0x9B3B\n0xF7A8\t0x9B56\n0xF7A9\t0x9B55\n0xF7AA\t0x9C46\n0xF7AB\t0x9C48\n0xF7AC\t0x9C3F\n0xF7AD\t0x9C44\n0xF7AE\t0x9C39\n0xF7AF\t0x9C33\n0xF7B0\t0x9C41\n0xF7B1\t0x9C3C\n0xF7B2\t0x9C37\n0xF7B3\t0x9C34\n0xF7B4\t0x9C32\n0xF7B5\t0x9C3D\n0xF7B6\t0x9C36\n0xF7B7\t0x9DDB\n0xF7B8\t0x9DD2\n0xF7B9\t0x9DDE\n0xF7BA\t0x9DDA\n0xF7BB\t0x9DCB\n0xF7BC\t0x9DD0\n0xF7BD\t0x9DDC\n0xF7BE\t0x9DD1\n0xF7BF\t0x9DDF\n0xF7C0\t0x9DE9\n0xF7C1\t0x9DD9\n0xF7C2\t0x9DD8\n0xF7C3\t0x9DD6\n0xF7C4\t0x9DF5\n0xF7C5\t0x9DD5\n0xF7C6\t0x9DDD\n0xF7C7\t0x9EB6\n0xF7C8\t0x9EF0\n0xF7C9\t0x9F35\n0xF7CA\t0x9F33\n0xF7CB\t0x9F32\n0xF7CC\t0x9F42\n0xF7CD\t0x9F6B\n0xF7CE\t0x9F95\n0xF7CF\t0x9FA2\n0xF7D0\t0x513D\n0xF7D1\t0x5299\n0xF7D2\t0x58E8\n0xF7D3\t0x58E7\n0xF7D4\t0x5972\n0xF7D5\t0x5B4D\n0xF7D6\t0x5DD8\n0xF7D7\t0x882F\n0xF7D8\t0x5F4F\n0xF7D9\t0x6201\n0xF7DA\t0x6203\n0xF7DB\t0x6204\n0xF7DC\t0x6529\n0xF7DD\t0x6525\n0xF7DE\t0x6596\n0xF7DF\t0x66EB\n0xF7E0\t0x6B11\n0xF7E1\t0x6B12\n0xF7E2\t0x6B0F\n0xF7E3\t0x6BCA\n0xF7E4\t0x705B\n0xF7E5\t0x705A\n0xF7E6\t0x7222\n0xF7E7\t0x7382\n0xF7E8\t0x7381\n0xF7E9\t0x7383\n0xF7EA\t0x7670\n0xF7EB\t0x77D4\n0xF7EC\t0x7C67\n0xF7ED\t0x7C66\n0xF7EE\t0x7E95\n0xF7EF\t0x826C\n0xF7F0\t0x863A\n0xF7F1\t0x8640\n0xF7F2\t0x8639\n0xF7F3\t0x863C\n0xF7F4\t0x8631\n0xF7F5\t0x863B\n0xF7F6\t0x863E\n0xF7F7\t0x8830\n0xF7F8\t0x8832\n0xF7F9\t0x882E\n0xF7FA\t0x8833\n0xF7FB\t0x8976\n0xF7FC\t0x8974\n0xF7FD\t0x8973\n0xF7FE\t0x89FE\n0xF840\t0x8B8C\n0xF841\t0x8B8E\n0xF842\t0x8B8B\n0xF843\t0x8B88\n0xF844\t0x8C45\n0xF845\t0x8D19\n0xF846\t0x8E98\n0xF847\t0x8F64\n0xF848\t0x8F63\n0xF849\t0x91BC\n0xF84A\t0x9462\n0xF84B\t0x9455\n0xF84C\t0x945D\n0xF84D\t0x9457\n0xF84E\t0x945E\n0xF84F\t0x97C4\n0xF850\t0x97C5\n0xF851\t0x9800\n0xF852\t0x9A56\n0xF853\t0x9A59\n0xF854\t0x9B1E\n0xF855\t0x9B1F\n0xF856\t0x9B20\n0xF857\t0x9C52\n0xF858\t0x9C58\n0xF859\t0x9C50\n0xF85A\t0x9C4A\n0xF85B\t0x9C4D\n0xF85C\t0x9C4B\n0xF85D\t0x9C55\n0xF85E\t0x9C59\n0xF85F\t0x9C4C\n0xF860\t0x9C4E\n0xF861\t0x9DFB\n0xF862\t0x9DF7\n0xF863\t0x9DEF\n0xF864\t0x9DE3\n0xF865\t0x9DEB\n0xF866\t0x9DF8\n0xF867\t0x9DE4\n0xF868\t0x9DF6\n0xF869\t0x9DE1\n0xF86A\t0x9DEE\n0xF86B\t0x9DE6\n0xF86C\t0x9DF2\n0xF86D\t0x9DF0\n0xF86E\t0x9DE2\n0xF86F\t0x9DEC\n0xF870\t0x9DF4\n0xF871\t0x9DF3\n0xF872\t0x9DE8\n0xF873\t0x9DED\n0xF874\t0x9EC2\n0xF875\t0x9ED0\n0xF876\t0x9EF2\n0xF877\t0x9EF3\n0xF878\t0x9F06\n0xF879\t0x9F1C\n0xF87A\t0x9F38\n0xF87B\t0x9F37\n0xF87C\t0x9F36\n0xF87D\t0x9F43\n0xF87E\t0x9F4F\n0xF8A1\t0x9F71\n0xF8A2\t0x9F70\n0xF8A3\t0x9F6E\n0xF8A4\t0x9F6F\n0xF8A5\t0x56D3\n0xF8A6\t0x56CD\n0xF8A7\t0x5B4E\n0xF8A8\t0x5C6D\n0xF8A9\t0x652D\n0xF8AA\t0x66ED\n0xF8AB\t0x66EE\n0xF8AC\t0x6B13\n0xF8AD\t0x705F\n0xF8AE\t0x7061\n0xF8AF\t0x705D\n0xF8B0\t0x7060\n0xF8B1\t0x7223\n0xF8B2\t0x74DB\n0xF8B3\t0x74E5\n0xF8B4\t0x77D5\n0xF8B5\t0x7938\n0xF8B6\t0x79B7\n0xF8B7\t0x79B6\n0xF8B8\t0x7C6A\n0xF8B9\t0x7E97\n0xF8BA\t0x7F89\n0xF8BB\t0x826D\n0xF8BC\t0x8643\n0xF8BD\t0x8838\n0xF8BE\t0x8837\n0xF8BF\t0x8835\n0xF8C0\t0x884B\n0xF8C1\t0x8B94\n0xF8C2\t0x8B95\n0xF8C3\t0x8E9E\n0xF8C4\t0x8E9F\n0xF8C5\t0x8EA0\n0xF8C6\t0x8E9D\n0xF8C7\t0x91BE\n0xF8C8\t0x91BD\n0xF8C9\t0x91C2\n0xF8CA\t0x946B\n0xF8CB\t0x9468\n0xF8CC\t0x9469\n0xF8CD\t0x96E5\n0xF8CE\t0x9746\n0xF8CF\t0x9743\n0xF8D0\t0x9747\n0xF8D1\t0x97C7\n0xF8D2\t0x97E5\n0xF8D3\t0x9A5E\n0xF8D4\t0x9AD5\n0xF8D5\t0x9B59\n0xF8D6\t0x9C63\n0xF8D7\t0x9C67\n0xF8D8\t0x9C66\n0xF8D9\t0x9C62\n0xF8DA\t0x9C5E\n0xF8DB\t0x9C60\n0xF8DC\t0x9E02\n0xF8DD\t0x9DFE\n0xF8DE\t0x9E07\n0xF8DF\t0x9E03\n0xF8E0\t0x9E06\n0xF8E1\t0x9E05\n0xF8E2\t0x9E00\n0xF8E3\t0x9E01\n0xF8E4\t0x9E09\n0xF8E5\t0x9DFF\n0xF8E6\t0x9DFD\n0xF8E7\t0x9E04\n0xF8E8\t0x9EA0\n0xF8E9\t0x9F1E\n0xF8EA\t0x9F46\n0xF8EB\t0x9F74\n0xF8EC\t0x9F75\n0xF8ED\t0x9F76\n0xF8EE\t0x56D4\n0xF8EF\t0x652E\n0xF8F0\t0x65B8\n0xF8F1\t0x6B18\n0xF8F2\t0x6B19\n0xF8F3\t0x6B17\n0xF8F4\t0x6B1A\n0xF8F5\t0x7062\n0xF8F6\t0x7226\n0xF8F7\t0x72AA\n0xF8F8\t0x77D8\n0xF8F9\t0x77D9\n0xF8FA\t0x7939\n0xF8FB\t0x7C69\n0xF8FC\t0x7C6B\n0xF8FD\t0x7CF6\n0xF8FE\t0x7E9A\n0xF940\t0x7E98\n0xF941\t0x7E9B\n0xF942\t0x7E99\n0xF943\t0x81E0\n0xF944\t0x81E1\n0xF945\t0x8646\n0xF946\t0x8647\n0xF947\t0x8648\n0xF948\t0x8979\n0xF949\t0x897A\n0xF94A\t0x897C\n0xF94B\t0x897B\n0xF94C\t0x89FF\n0xF94D\t0x8B98\n0xF94E\t0x8B99\n0xF94F\t0x8EA5\n0xF950\t0x8EA4\n0xF951\t0x8EA3\n0xF952\t0x946E\n0xF953\t0x946D\n0xF954\t0x946F\n0xF955\t0x9471\n0xF956\t0x9473\n0xF957\t0x9749\n0xF958\t0x9872\n0xF959\t0x995F\n0xF95A\t0x9C68\n0xF95B\t0x9C6E\n0xF95C\t0x9C6D\n0xF95D\t0x9E0B\n0xF95E\t0x9E0D\n0xF95F\t0x9E10\n0xF960\t0x9E0F\n0xF961\t0x9E12\n0xF962\t0x9E11\n0xF963\t0x9EA1\n0xF964\t0x9EF5\n0xF965\t0x9F09\n0xF966\t0x9F47\n0xF967\t0x9F78\n0xF968\t0x9F7B\n0xF969\t0x9F7A\n0xF96A\t0x9F79\n0xF96B\t0x571E\n0xF96C\t0x7066\n0xF96D\t0x7C6F\n0xF96E\t0x883C\n0xF96F\t0x8DB2\n0xF970\t0x8EA6\n0xF971\t0x91C3\n0xF972\t0x9474\n0xF973\t0x9478\n0xF974\t0x9476\n0xF975\t0x9475\n0xF976\t0x9A60\n0xF977\t0x9C74\n0xF978\t0x9C73\n0xF979\t0x9C71\n0xF97A\t0x9C75\n0xF97B\t0x9E14\n0xF97C\t0x9E13\n0xF97D\t0x9EF6\n0xF97E\t0x9F0A\n0xF9A1\t0x9FA4\n0xF9A2\t0x7068\n0xF9A3\t0x7065\n0xF9A4\t0x7CF7\n0xF9A5\t0x866A\n0xF9A6\t0x883E\n0xF9A7\t0x883D\n0xF9A8\t0x883F\n0xF9A9\t0x8B9E\n0xF9AA\t0x8C9C\n0xF9AB\t0x8EA9\n0xF9AC\t0x8EC9\n0xF9AD\t0x974B\n0xF9AE\t0x9873\n0xF9AF\t0x9874\n0xF9B0\t0x98CC\n0xF9B1\t0x9961\n0xF9B2\t0x99AB\n0xF9B3\t0x9A64\n0xF9B4\t0x9A66\n0xF9B5\t0x9A67\n0xF9B6\t0x9B24\n0xF9B7\t0x9E15\n0xF9B8\t0x9E17\n0xF9B9\t0x9F48\n0xF9BA\t0x6207\n0xF9BB\t0x6B1E\n0xF9BC\t0x7227\n0xF9BD\t0x864C\n0xF9BE\t0x8EA8\n0xF9BF\t0x9482\n0xF9C0\t0x9480\n0xF9C1\t0x9481\n0xF9C2\t0x9A69\n0xF9C3\t0x9A68\n0xF9C4\t0x9B2E\n0xF9C5\t0x9E19\n0xF9C6\t0x7229\n0xF9C7\t0x864B\n0xF9C8\t0x8B9F\n0xF9C9\t0x9483\n0xF9CA\t0x9C79\n0xF9CB\t0x9EB7\n0xF9CC\t0x7675\n0xF9CD\t0x9A6B\n0xF9CE\t0x9C7A\n0xF9CF\t0x9E1D\n0xF9D0\t0x7069\n0xF9D1\t0x706A\n0xF9D2\t0x9EA4\n0xF9D3\t0x9F7E\n0xF9D4\t0x9F49\n0xF9D5\t0x9F98\n0xF9D6\t0x7881\n0xF9D7\t0x92B9\n0xF9D8\t0x88CF\n0xF9D9\t0x58BB\n0xF9DA\t0x6052\n0xF9DB\t0x7CA7\n0xF9DC\t0x5AFA\n0xF9DD\t0x2554\n0xF9DE\t0x2566\n0xF9DF\t0x2557\n0xF9E0\t0x2560\n0xF9E1\t0x256C\n0xF9E2\t0x2563\n0xF9E3\t0x255A\n0xF9E4\t0x2569\n0xF9E5\t0x255D\n0xF9E6\t0x2552\n0xF9E7\t0x2564\n0xF9E8\t0x2555\n0xF9E9\t0x255E\n0xF9EA\t0x256A\n0xF9EB\t0x2561\n0xF9EC\t0x2558\n0xF9ED\t0x2567\n0xF9EE\t0x255B\n0xF9EF\t0x2553\n0xF9F0\t0x2565\n0xF9F1\t0x2556\n0xF9F2\t0x255F\n0xF9F3\t0x256B\n0xF9F4\t0x2562\n0xF9F5\t0x2559\n0xF9F6\t0x2568\n0xF9F7\t0x255C\n0xF9F8\t0x2551\n0xF9F9\t0x2550\n0xF9FA\t0x256D\n0xF9FB\t0x256E\n0xF9FC\t0x2570\n0xF9FD\t0x256F\n0xF9FE\t0xFFED\n0xFA40\t0x20547\n0xFA41\t0x92DB\n0xFA42\t0x205DF\n0xFA43\t0x23FC5\n0xFA44\t0x854C\n0xFA45\t0x42B5\n0xFA46\t0x73EF\n0xFA47\t0x51B5\n0xFA48\t0x3649\n0xFA49\t0x24942\n0xFA4A\t0x289E4\n0xFA4B\t0x9344\n0xFA4C\t0x219DB\n0xFA4D\t0x82EE\n0xFA4E\t0x23CC8\n0xFA4F\t0x783C\n0xFA50\t0x6744\n0xFA51\t0x62DF\n0xFA52\t0x24933\n0xFA53\t0x289AA\n0xFA54\t0x202A0\n0xFA55\t0x26BB3\n0xFA56\t0x21305\n0xFA57\t0x4FAB\n0xFA58\t0x224ED\n0xFA59\t0x5008\n0xFA5A\t0x26D29\n0xFA5B\t0x27A84\n0xFA5C\t0x23600\n0xFA5D\t0x24AB1\n0xFA5E\t0x22513\n0xFA60\t0x2037E\n0xFA61\t0x5FA4\n0xFA62\t0x20380\n0xFA63\t0x20347\n0xFA64\t0x6EDB\n0xFA65\t0x2041F\n0xFA67\t0x5101\n0xFA68\t0x347A\n0xFA69\t0x510E\n0xFA6A\t0x986C\n0xFA6B\t0x3743\n0xFA6C\t0x8416\n0xFA6D\t0x249A4\n0xFA6E\t0x20487\n0xFA6F\t0x5160\n0xFA70\t0x233B4\n0xFA71\t0x516A\n0xFA72\t0x20BFF\n0xFA73\t0x220FC\n0xFA74\t0x202E5\n0xFA75\t0x22530\n0xFA76\t0x2058E\n0xFA77\t0x23233\n0xFA78\t0x21983\n0xFA79\t0x5B82\n0xFA7A\t0x877D\n0xFA7B\t0x205B3\n0xFA7C\t0x23C99\n0xFA7D\t0x51B2\n0xFA7E\t0x51B8\n0xFAA1\t0x9D34\n0xFAA2\t0x51C9\n0xFAA3\t0x51CF\n0xFAA4\t0x51D1\n0xFAA5\t0x3CDC\n0xFAA6\t0x51D3\n0xFAA7\t0x24AA6\n0xFAA8\t0x51B3\n0xFAA9\t0x51E2\n0xFAAA\t0x5342\n0xFAAB\t0x51ED\n0xFAAC\t0x83CD\n0xFAAD\t0x693E\n0xFAAE\t0x2372D\n0xFAAF\t0x5F7B\n0xFAB0\t0x520B\n0xFAB1\t0x5226\n0xFAB2\t0x523C\n0xFAB3\t0x52B5\n0xFAB4\t0x5257\n0xFAB5\t0x5294\n0xFAB6\t0x52B9\n0xFAB7\t0x52C5\n0xFAB8\t0x7C15\n0xFAB9\t0x8542\n0xFABA\t0x52E0\n0xFABB\t0x860D\n0xFABC\t0x26B13\n0xFABE\t0x28ADE\n0xFABF\t0x5549\n0xFAC0\t0x6ED9\n0xFAC1\t0x23F80\n0xFAC2\t0x20954\n0xFAC3\t0x23FEC\n0xFAC4\t0x5333\n0xFAC6\t0x20BE2\n0xFAC7\t0x6CCB\n0xFAC8\t0x21726\n0xFAC9\t0x681B\n0xFACA\t0x73D5\n0xFACB\t0x604A\n0xFACC\t0x3EAA\n0xFACD\t0x38CC\n0xFACE\t0x216E8\n0xFACF\t0x71DD\n0xFAD0\t0x44A2\n0xFAD1\t0x536D\n0xFAD2\t0x5374\n0xFAD3\t0x286AB\n0xFAD4\t0x537E\n0xFAD6\t0x21596\n0xFAD7\t0x21613\n0xFAD8\t0x77E6\n0xFAD9\t0x5393\n0xFADA\t0x28A9B\n0xFADB\t0x53A0\n0xFADC\t0x53AB\n0xFADD\t0x53AE\n0xFADE\t0x73A7\n0xFADF\t0x25772\n0xFAE0\t0x3F59\n0xFAE1\t0x739C\n0xFAE2\t0x53C1\n0xFAE3\t0x53C5\n0xFAE4\t0x6C49\n0xFAE5\t0x4E49\n0xFAE6\t0x57FE\n0xFAE7\t0x53D9\n0xFAE8\t0x3AAB\n0xFAE9\t0x20B8F\n0xFAEA\t0x53E0\n0xFAEB\t0x23FEB\n0xFAEC\t0x22DA3\n0xFAED\t0x53F6\n0xFAEE\t0x20C77\n0xFAEF\t0x5413\n0xFAF0\t0x7079\n0xFAF1\t0x552B\n0xFAF2\t0x6657\n0xFAF3\t0x6D5B\n0xFAF4\t0x546D\n0xFAF5\t0x26B53\n0xFAF6\t0x20D74\n0xFAF7\t0x555D\n0xFAF8\t0x548F\n0xFAF9\t0x54A4\n0xFAFA\t0x47A6\n0xFAFB\t0x2170D\n0xFAFC\t0x20EDD\n0xFAFD\t0x3DB4\n0xFAFE\t0x20D4D\n0xFB40\t0x289BC\n0xFB41\t0x22698\n0xFB42\t0x5547\n0xFB43\t0x4CED\n0xFB44\t0x542F\n0xFB45\t0x7417\n0xFB46\t0x5586\n0xFB47\t0x55A9\n0xFB49\t0x218D7\n0xFB4A\t0x2403A\n0xFB4B\t0x4552\n0xFB4C\t0x24435\n0xFB4D\t0x66B3\n0xFB4E\t0x210B4\n0xFB4F\t0x5637\n0xFB50\t0x66CD\n0xFB51\t0x2328A\n0xFB52\t0x66A4\n0xFB53\t0x66AD\n0xFB54\t0x564D\n0xFB55\t0x564F\n0xFB56\t0x78F1\n0xFB57\t0x56F1\n0xFB58\t0x9787\n0xFB59\t0x53FE\n0xFB5A\t0x5700\n0xFB5B\t0x56EF\n0xFB5C\t0x56ED\n0xFB5D\t0x28B66\n0xFB5E\t0x3623\n0xFB5F\t0x2124F\n0xFB60\t0x5746\n0xFB61\t0x241A5\n0xFB62\t0x6C6E\n0xFB63\t0x708B\n0xFB64\t0x5742\n0xFB65\t0x36B1\n0xFB66\t0x26C7E\n0xFB67\t0x57E6\n0xFB68\t0x21416\n0xFB69\t0x5803\n0xFB6A\t0x21454\n0xFB6B\t0x24363\n0xFB6C\t0x5826\n0xFB6D\t0x24BF5\n0xFB6E\t0x585C\n0xFB6F\t0x58AA\n0xFB70\t0x3561\n0xFB71\t0x58E0\n0xFB72\t0x58DC\n0xFB73\t0x2123C\n0xFB74\t0x58FB\n0xFB75\t0x5BFF\n0xFB76\t0x5743\n0xFB77\t0x2A150\n0xFB78\t0x24278\n0xFB79\t0x93D3\n0xFB7A\t0x35A1\n0xFB7B\t0x591F\n0xFB7C\t0x68A6\n0xFB7D\t0x36C3\n0xFB7E\t0x6E59\n0xFBA1\t0x2163E\n0xFBA2\t0x5A24\n0xFBA3\t0x5553\n0xFBA4\t0x21692\n0xFBA5\t0x8505\n0xFBA6\t0x59C9\n0xFBA7\t0x20D4E\n0xFBA8\t0x26C81\n0xFBA9\t0x26D2A\n0xFBAA\t0x217DC\n0xFBAB\t0x59D9\n0xFBAC\t0x217FB\n0xFBAD\t0x217B2\n0xFBAE\t0x26DA6\n0xFBAF\t0x6D71\n0xFBB0\t0x21828\n0xFBB1\t0x216D5\n0xFBB2\t0x59F9\n0xFBB3\t0x26E45\n0xFBB4\t0x5AAB\n0xFBB5\t0x5A63\n0xFBB6\t0x36E6\n0xFBB7\t0x249A9\n0xFBB9\t0x3708\n0xFBBA\t0x5A96\n0xFBBB\t0x7465\n0xFBBC\t0x5AD3\n0xFBBD\t0x26FA1\n0xFBBE\t0x22554\n0xFBBF\t0x3D85\n0xFBC0\t0x21911\n0xFBC1\t0x3732\n0xFBC2\t0x216B8\n0xFBC3\t0x5E83\n0xFBC4\t0x52D0\n0xFBC5\t0x5B76\n0xFBC6\t0x6588\n0xFBC7\t0x5B7C\n0xFBC8\t0x27A0E\n0xFBC9\t0x4004\n0xFBCA\t0x485D\n0xFBCB\t0x20204\n0xFBCC\t0x5BD5\n0xFBCD\t0x6160\n0xFBCE\t0x21A34\n0xFBCF\t0x259CC\n0xFBD0\t0x205A5\n0xFBD1\t0x5BF3\n0xFBD2\t0x5B9D\n0xFBD3\t0x4D10\n0xFBD4\t0x5C05\n0xFBD5\t0x21B44\n0xFBD6\t0x5C13\n0xFBD7\t0x73CE\n0xFBD8\t0x5C14\n0xFBD9\t0x21CA5\n0xFBDA\t0x26B28\n0xFBDB\t0x5C49\n0xFBDC\t0x48DD\n0xFBDD\t0x5C85\n0xFBDE\t0x5CE9\n0xFBDF\t0x5CEF\n0xFBE0\t0x5D8B\n0xFBE1\t0x21DF9\n0xFBE2\t0x21E37\n0xFBE3\t0x5D10\n0xFBE4\t0x5D18\n0xFBE5\t0x5D46\n0xFBE6\t0x21EA4\n0xFBE7\t0x5CBA\n0xFBE8\t0x5DD7\n0xFBE9\t0x82FC\n0xFBEA\t0x382D\n0xFBEB\t0x24901\n0xFBEC\t0x22049\n0xFBED\t0x22173\n0xFBEE\t0x8287\n0xFBEF\t0x3836\n0xFBF0\t0x3BC2\n0xFBF1\t0x5E2E\n0xFBF2\t0x6A8A\n0xFBF4\t0x5E7A\n0xFBF5\t0x244BC\n0xFBF6\t0x20CD3\n0xFBF7\t0x53A6\n0xFBF8\t0x4EB7\n0xFBFA\t0x53A8\n0xFBFB\t0x21771\n0xFBFC\t0x5E09\n0xFBFD\t0x5EF4\n0xFBFE\t0x28482\n0xFC40\t0x5EF9\n0xFC41\t0x5EFB\n0xFC42\t0x38A0\n0xFC43\t0x5EFC\n0xFC44\t0x683E\n0xFC45\t0x941B\n0xFC46\t0x5F0D\n0xFC47\t0x201C1\n0xFC48\t0x2F894\n0xFC49\t0x3ADE\n0xFC4A\t0x48AE\n0xFC4B\t0x2133A\n0xFC4C\t0x5F3A\n0xFC4D\t0x26888\n0xFC4E\t0x223D0\n0xFC50\t0x22471\n0xFC51\t0x5F63\n0xFC52\t0x97BD\n0xFC53\t0x26E6E\n0xFC54\t0x5F72\n0xFC55\t0x9340\n0xFC56\t0x28A36\n0xFC57\t0x5FA7\n0xFC58\t0x5DB6\n0xFC59\t0x3D5F\n0xFC5A\t0x25250\n0xFC5B\t0x21F6A\n0xFC5C\t0x270F8\n0xFC5D\t0x22668\n0xFC5E\t0x91D6\n0xFC5F\t0x2029E\n0xFC60\t0x28A29\n0xFC61\t0x6031\n0xFC62\t0x6685\n0xFC63\t0x21877\n0xFC64\t0x3963\n0xFC65\t0x3DC7\n0xFC66\t0x3639\n0xFC67\t0x5790\n0xFC68\t0x227B4\n0xFC69\t0x7971\n0xFC6A\t0x3E40\n0xFC6B\t0x609E\n0xFC6D\t0x60B3\n0xFC6E\t0x24982\n0xFC6F\t0x2498F\n0xFC70\t0x27A53\n0xFC71\t0x74A4\n0xFC72\t0x50E1\n0xFC73\t0x5AA0\n0xFC74\t0x6164\n0xFC75\t0x8424\n0xFC76\t0x6142\n0xFC77\t0x2F8A6\n0xFC78\t0x26ED2\n0xFC79\t0x6181\n0xFC7A\t0x51F4\n0xFC7B\t0x20656\n0xFC7C\t0x6187\n0xFC7D\t0x5BAA\n0xFC7E\t0x23FB7\n0xFCA1\t0x2285F\n0xFCA2\t0x61D3\n0xFCA3\t0x28B9D\n0xFCA4\t0x2995D\n0xFCA5\t0x61D0\n0xFCA6\t0x3932\n0xFCA7\t0x22980\n0xFCA8\t0x228C1\n0xFCA9\t0x6023\n0xFCAA\t0x615C\n0xFCAB\t0x651E\n0xFCAC\t0x638B\n0xFCAD\t0x20118\n0xFCAE\t0x62C5\n0xFCAF\t0x21770\n0xFCB0\t0x62D5\n0xFCB1\t0x22E0D\n0xFCB2\t0x636C\n0xFCB3\t0x249DF\n0xFCB4\t0x3A17\n0xFCB5\t0x6438\n0xFCB6\t0x63F8\n0xFCB7\t0x2138E\n0xFCB8\t0x217FC\n0xFCBA\t0x6F8A\n0xFCBB\t0x22E36\n0xFCBC\t0x9814\n0xFCBD\t0x2408C\n0xFCBE\t0x2571D\n0xFCBF\t0x64E1\n0xFCC0\t0x64E5\n0xFCC1\t0x947B\n0xFCC2\t0x3A66\n0xFCC3\t0x643A\n0xFCC4\t0x3A57\n0xFCC5\t0x654D\n0xFCC6\t0x6F16\n0xFCC7\t0x24A28\n0xFCC8\t0x24A23\n0xFCC9\t0x6585\n0xFCCA\t0x656D\n0xFCCB\t0x655F\n0xFCCC\t0x2307E\n0xFCCD\t0x65B5\n0xFCCE\t0x24940\n0xFCCF\t0x4B37\n0xFCD0\t0x65D1\n0xFCD1\t0x40D8\n0xFCD2\t0x21829\n0xFCD3\t0x65E0\n0xFCD4\t0x65E3\n0xFCD5\t0x5FDF\n0xFCD6\t0x23400\n0xFCD7\t0x6618\n0xFCD8\t0x231F7\n0xFCD9\t0x231F8\n0xFCDA\t0x6644\n0xFCDB\t0x231A4\n0xFCDC\t0x231A5\n0xFCDD\t0x664B\n0xFCDE\t0x20E75\n0xFCDF\t0x6667\n0xFCE0\t0x251E6\n0xFCE1\t0x6673\n0xFCE3\t0x21E3D\n0xFCE4\t0x23231\n0xFCE5\t0x285F4\n0xFCE6\t0x231C8\n0xFCE7\t0x25313\n0xFCE8\t0x77C5\n0xFCE9\t0x228F7\n0xFCEA\t0x99A4\n0xFCEB\t0x6702\n0xFCEC\t0x2439C\n0xFCED\t0x24A21\n0xFCEE\t0x3B2B\n0xFCEF\t0x69FA\n0xFCF0\t0x237C2\n0xFCF2\t0x6767\n0xFCF3\t0x6762\n0xFCF4\t0x241CD\n0xFCF5\t0x290ED\n0xFCF6\t0x67D7\n0xFCF7\t0x44E9\n0xFCF8\t0x6822\n0xFCF9\t0x6E50\n0xFCFA\t0x923C\n0xFCFB\t0x6801\n0xFCFC\t0x233E6\n0xFCFD\t0x26DA0\n0xFCFE\t0x685D\n0xFD40\t0x2346F\n0xFD41\t0x69E1\n0xFD42\t0x6A0B\n0xFD43\t0x28ADF\n0xFD44\t0x6973\n0xFD45\t0x68C3\n0xFD46\t0x235CD\n0xFD47\t0x6901\n0xFD48\t0x6900\n0xFD49\t0x3D32\n0xFD4A\t0x3A01\n0xFD4B\t0x2363C\n0xFD4C\t0x3B80\n0xFD4D\t0x67AC\n0xFD4E\t0x6961\n0xFD4F\t0x28A4A\n0xFD50\t0x42FC\n0xFD51\t0x6936\n0xFD52\t0x6998\n0xFD53\t0x3BA1\n0xFD54\t0x203C9\n0xFD55\t0x8363\n0xFD56\t0x5090\n0xFD57\t0x69F9\n0xFD58\t0x23659\n0xFD59\t0x2212A\n0xFD5A\t0x6A45\n0xFD5B\t0x23703\n0xFD5C\t0x6A9D\n0xFD5D\t0x3BF3\n0xFD5E\t0x67B1\n0xFD5F\t0x6AC8\n0xFD60\t0x2919C\n0xFD61\t0x3C0D\n0xFD62\t0x6B1D\n0xFD63\t0x20923\n0xFD64\t0x60DE\n0xFD65\t0x6B35\n0xFD66\t0x6B74\n0xFD67\t0x227CD\n0xFD68\t0x6EB5\n0xFD69\t0x23ADB\n0xFD6A\t0x203B5\n0xFD6B\t0x21958\n0xFD6C\t0x3740\n0xFD6D\t0x5421\n0xFD6E\t0x23B5A\n0xFD6F\t0x6BE1\n0xFD70\t0x23EFC\n0xFD71\t0x6BDC\n0xFD72\t0x6C37\n0xFD73\t0x2248B\n0xFD74\t0x248F1\n0xFD75\t0x26B51\n0xFD76\t0x6C5A\n0xFD77\t0x8226\n0xFD78\t0x6C79\n0xFD79\t0x23DBC\n0xFD7A\t0x44C5\n0xFD7B\t0x23DBD\n0xFD7C\t0x241A4\n0xFD7D\t0x2490C\n0xFD7E\t0x24900\n0xFDA1\t0x23CC9\n0xFDA2\t0x36E5\n0xFDA3\t0x3CEB\n0xFDA4\t0x20D32\n0xFDA5\t0x9B83\n0xFDA6\t0x231F9\n0xFDA7\t0x22491\n0xFDA8\t0x7F8F\n0xFDA9\t0x6837\n0xFDAA\t0x26D25\n0xFDAB\t0x26DA1\n0xFDAC\t0x26DEB\n0xFDAD\t0x6D96\n0xFDAE\t0x6D5C\n0xFDAF\t0x6E7C\n0xFDB0\t0x6F04\n0xFDB1\t0x2497F\n0xFDB2\t0x24085\n0xFDB3\t0x26E72\n0xFDB4\t0x8533\n0xFDB5\t0x26F74\n0xFDB6\t0x51C7\n0xFDB9\t0x842E\n0xFDBA\t0x28B21\n0xFDBC\t0x23E2F\n0xFDBD\t0x7453\n0xFDBE\t0x23F82\n0xFDBF\t0x79CC\n0xFDC0\t0x6E4F\n0xFDC1\t0x5A91\n0xFDC2\t0x2304B\n0xFDC3\t0x6FF8\n0xFDC4\t0x370D\n0xFDC5\t0x6F9D\n0xFDC6\t0x23E30\n0xFDC7\t0x6EFA\n0xFDC8\t0x21497\n0xFDC9\t0x2403D\n0xFDCA\t0x4555\n0xFDCB\t0x93F0\n0xFDCC\t0x6F44\n0xFDCD\t0x6F5C\n0xFDCE\t0x3D4E\n0xFDCF\t0x6F74\n0xFDD0\t0x29170\n0xFDD1\t0x3D3B\n0xFDD2\t0x6F9F\n0xFDD3\t0x24144\n0xFDD4\t0x6FD3\n0xFDD5\t0x24091\n0xFDD6\t0x24155\n0xFDD7\t0x24039\n0xFDD8\t0x23FF0\n0xFDD9\t0x23FB4\n0xFDDA\t0x2413F\n0xFDDB\t0x51DF\n0xFDDC\t0x24156\n0xFDDD\t0x24157\n0xFDDE\t0x24140\n0xFDDF\t0x261DD\n0xFDE0\t0x704B\n0xFDE1\t0x707E\n0xFDE2\t0x70A7\n0xFDE3\t0x7081\n0xFDE4\t0x70CC\n0xFDE5\t0x70D5\n0xFDE6\t0x70D6\n0xFDE7\t0x70DF\n0xFDE8\t0x4104\n0xFDE9\t0x3DE8\n0xFDEA\t0x71B4\n0xFDEB\t0x7196\n0xFDEC\t0x24277\n0xFDED\t0x712B\n0xFDEE\t0x7145\n0xFDEF\t0x5A88\n0xFDF0\t0x714A\n0xFDF2\t0x5C9C\n0xFDF3\t0x24365\n0xFDF4\t0x714F\n0xFDF5\t0x9362\n0xFDF6\t0x242C1\n0xFDF7\t0x712C\n0xFDF8\t0x2445A\n0xFDF9\t0x24A27\n0xFDFA\t0x24A22\n0xFDFB\t0x71BA\n0xFDFC\t0x28BE8\n0xFDFD\t0x70BD\n0xFDFE\t0x720E\n0xFE40\t0x9442\n0xFE41\t0x7215\n0xFE42\t0x5911\n0xFE43\t0x9443\n0xFE44\t0x7224\n0xFE45\t0x9341\n0xFE46\t0x25605\n0xFE47\t0x722E\n0xFE48\t0x7240\n0xFE49\t0x24974\n0xFE4A\t0x68BD\n0xFE4B\t0x7255\n0xFE4C\t0x7257\n0xFE4D\t0x3E55\n0xFE4E\t0x23044\n0xFE4F\t0x680D\n0xFE50\t0x6F3D\n0xFE51\t0x7282\n0xFE53\t0x732B\n0xFE54\t0x24823\n0xFE55\t0x2882B\n0xFE56\t0x48ED\n0xFE57\t0x28804\n0xFE58\t0x7328\n0xFE59\t0x732E\n0xFE5A\t0x73CF\n0xFE5B\t0x73AA\n0xFE5C\t0x20C3A\n0xFE5D\t0x26A2E\n0xFE5E\t0x73C9\n0xFE5F\t0x7449\n0xFE60\t0x241E2\n0xFE61\t0x216E7\n0xFE62\t0x24A24\n0xFE63\t0x6623\n0xFE64\t0x36C5\n0xFE65\t0x249B7\n0xFE66\t0x2498D\n0xFE67\t0x249FB\n0xFE68\t0x73F7\n0xFE69\t0x7415\n0xFE6A\t0x6903\n0xFE6B\t0x24A26\n0xFE6C\t0x7439\n0xFE6D\t0x205C3\n0xFE6E\t0x3ED7\n0xFE70\t0x228AD\n0xFE71\t0x7460\n0xFE72\t0x28EB2\n0xFE73\t0x7447\n0xFE74\t0x73E4\n0xFE75\t0x7476\n0xFE76\t0x83B9\n0xFE77\t0x746C\n0xFE78\t0x3730\n0xFE79\t0x7474\n0xFE7A\t0x93F1\n0xFE7B\t0x6A2C\n0xFE7C\t0x7482\n0xFE7D\t0x4953\n0xFE7E\t0x24A8C\n0xFEA1\t0x2415F\n0xFEA2\t0x24A79\n0xFEA3\t0x28B8F\n0xFEA4\t0x5B46\n0xFEA5\t0x28C03\n0xFEA6\t0x2189E\n0xFEA7\t0x74C8\n0xFEA8\t0x21988\n0xFEA9\t0x750E\n0xFEAB\t0x751E\n0xFEAC\t0x28ED9\n0xFEAD\t0x21A4B\n0xFEAE\t0x5BD7\n0xFEAF\t0x28EAC\n0xFEB0\t0x9385\n0xFEB1\t0x754D\n0xFEB2\t0x754A\n0xFEB3\t0x7567\n0xFEB4\t0x756E\n0xFEB5\t0x24F82\n0xFEB6\t0x3F04\n0xFEB7\t0x24D13\n0xFEB8\t0x758E\n0xFEB9\t0x745D\n0xFEBA\t0x759E\n0xFEBB\t0x75B4\n0xFEBC\t0x7602\n0xFEBD\t0x762C\n0xFEBE\t0x7651\n0xFEBF\t0x764F\n0xFEC0\t0x766F\n0xFEC1\t0x7676\n0xFEC2\t0x263F5\n0xFEC3\t0x7690\n0xFEC4\t0x81EF\n0xFEC5\t0x37F8\n0xFEC6\t0x26911\n0xFEC7\t0x2690E\n0xFEC8\t0x76A1\n0xFEC9\t0x76A5\n0xFECA\t0x76B7\n0xFECB\t0x76CC\n0xFECC\t0x26F9F\n0xFECD\t0x8462\n0xFECE\t0x2509D\n0xFECF\t0x2517D\n0xFED0\t0x21E1C\n0xFED1\t0x771E\n0xFED2\t0x7726\n0xFED3\t0x7740\n0xFED4\t0x64AF\n0xFED5\t0x25220\n0xFED6\t0x7758\n0xFED7\t0x232AC\n0xFED8\t0x77AF\n0xFED9\t0x28964\n0xFEDA\t0x28968\n0xFEDB\t0x216C1\n0xFEDC\t0x77F4\n0xFEDE\t0x21376\n0xFEDF\t0x24A12\n0xFEE0\t0x68CA\n0xFEE1\t0x78AF\n0xFEE2\t0x78C7\n0xFEE3\t0x78D3\n0xFEE4\t0x96A5\n0xFEE5\t0x792E\n0xFEE6\t0x255E0\n0xFEE7\t0x78D7\n0xFEE8\t0x7934\n0xFEE9\t0x78B1\n0xFEEA\t0x2760C\n0xFEEB\t0x8FB8\n0xFEEC\t0x8884\n0xFEED\t0x28B2B\n0xFEEE\t0x26083\n0xFEEF\t0x2261C\n0xFEF0\t0x7986\n0xFEF1\t0x8900\n0xFEF2\t0x6902\n0xFEF3\t0x7980\n0xFEF4\t0x25857\n0xFEF5\t0x799D\n0xFEF6\t0x27B39\n0xFEF7\t0x793C\n0xFEF8\t0x79A9\n0xFEF9\t0x6E2A\n0xFEFA\t0x27126\n0xFEFB\t0x3EA8\n0xFEFC\t0x79C6\n0xFEFD\t0x2910D\n0xFEFE\t0x79D4\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2001-snippet",
    "content": "@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n           \n@ A    C       F G H I       L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                        \n                   \n                   \n               \n               \n              \n@ A    C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b    d e f g h i j k l m n o\np q r s t    v w x y z { | } ~\n                   \n                   \n                   \n                   \n               \n                \n@ A B C D E F G H I J K L M N O\nP Q R S    U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n                 \n               \n             \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a    c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                   \n               \n                       \n              \n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h    j k l m n\np q r s t u v w x y z { | }\n                   \n                 \n                 \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V    X Y Z [ \\ ] ^ _\n` a b c d e f g h    j k l m    o\np q r s t u v w x y z { | } ~\n                 \n               \n                   \n               \n               \n             \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l    n o\np q r s t u v w x y    { | } ~\n                 \n               \n               \n                 \n               \n                \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n              \n               \n               \n               \n              \n@ A B C    E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                \n                     \n                 \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F    H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n                 \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n                 \n               \n              \n@ A B C    E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n                 \n                \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n`    b c d e f g h i j k l m n o\np q r s t u    w    y z    | } ~\n                 \n               \n                 \n                 \n                 \n                \n@ A    C D E F G H I J K L M N O\nP Q R    T U V W X Y Z [ \\ ] ^ _\n` a    c d e f g    i j    l m n o\np q r s t u v    x y z { | } ~\n                 \n                   \n               \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V    X Y    [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n                 \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                     \n               \n                 \n               \n              \n                  \n@ A B C D E F G H I J K L M    O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n   a b c d e    g h i j k l m n o\np q r s t u v w x y z { | } ~\n                   \n                 \n                     \n                   \n                  \n              \n@ A B C D E F G H I J K L M N O\nP Q R S    U V    X Y    [ \\ ] ^ _\n` a       d e f g h i j k l m n o\np q    s t u v    x y z { | } ~\n                    \n               \n               \n                  \n                   \n              \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2001-snippet.UTF-8",
    "content": "㇀ ㇁ ㇂ ㇃ ㇄ 𠄌 ㇅ 𠃑 𠃍 ㇆ ㇇ 𠃋 𡿨 ㇈ 𠃊 ㇉\n㇊ ㇋ ㇌ 𠄎 ㇍ ㇎ Ā Á Ǎ À Ē É Ě È Ō Ó\nǑ Ò Ê̄ Ế Ê̌ Ề Ê ā á ǎ à ɑ ē é ě è\nī í ǐ ì ō ó ǒ ò ū ú ǔ ù ǖ ǘ ǚ\n  ǜ ü ê̄ ế ê̌ ề ê ɡ ⏚ ⏛\n𪎩 𡅅    攊       丽 滝 鵎 釟       𧜵 撑 会 伨\n侨 兖 兴 农 凤 务 动 医 华 发 变 团 声 处 备 夲\n头 学 实 実 岚 庆 总 斉 柾 栄 桥 济 炼 电 纤 纬\n纺 织 经 统 缆 缷 艺 苏 药 视 设 询 车 轧 轮\n   琑 糼 緍 楆 竉 刧             醌 碸 酞 肼\n贋 胶 𠧧       肟 黇 䳍 鷉 鸌 䰾 𩷶 𧀎 鸊 𪄳 㗁\n   溚 舾 甙    䤑 马 骏 龙 禇 𨑬 𡷊 𠗐 𢫦 两 亁\n亀 亇 亿 仫 伷 㑌 侽 㹈 倃 傈 㑽 㒓 㒥 円 夅 凛\n凼 刅 争 剹 劐 匧 㗇 厩 㕑 厰 㕓 参 吣 㕭 㕲 㚁\n咓 咣 咴 咹 哐 哯 唘 唣 唨 㖘 唿 㖥 㖿 嗗 㗅\n𧶄 唥    𠱂 𠴕 𥄫 喐 𢳆 㧬 𠍁 蹆 𤶸 𩓥 䁓 𨂾 睺\n𢰸 㨴 䟕 𨅝 𦧲 𤷪 擝 𠵼 𠾴 𠳕 𡃴 撍 蹾 𠺖 𠰋 𠽤\n𢲩 𨉖 𤓓    𠵆 𩩍 𨃩 䟴 𤺧 𢳂 骲 㩧 𩗴 㿭 㔆 𥋇\n𩟔 𧣈 𢵄 鵮 頕    䏙 𦂥 撴 哣 𢵌 𢯊 𡁷 㧻 𡁯\n   𦛚 𦜖 𧦠 擪 𥁒 𠱃 蹨 𢆡 𨭌 𠜱    䠋 𠆩 㿺 塳\n𢶍    𤗈 𠓼 𦂗 𠽌 𠶖 啹 䂻 䎺    䪴 𢩦 𡂝 膪 飵\n𠶜 捹 㧾 𢝵 跀 嚡 摼 㹃    𪘁 𠸉 𢫏 𢳉    𡃈 𣧂\n㦒 㨆 𨊛 㕸 𥹉 𢃇 噒 𠼱 𢲲 𩜠 㒼 氽 𤸻       𧕴\n𢺋 𢈈 𪙛 𨳍 𠹺 𠰴 𦠜 羓 𡃏 𢠃 𢤹 㗻 𥇣 𠺌 𠾍 𠺪\n㾓 𠼰 𠵇 𡅏 𠹌    𠺫 𠮩 𠵈 𡃀 𡄽 㿹 𢚖 搲 𠾭\n𣏴 𧘹 𢯎 𠵾 𠵿 𢱑 𢱕 㨘 𠺘 𡃇 𠼮 𪘲 𦭐 𨳒 𨶙 𨳊\n閪 哌 苄 喹    𩻃 鰦 骶 𧝞 𢷮 煀 腭 胬 尜 𦕲 脴\n㞗 卟 𨂽 醶 𠻺 𠸏 𠹷 𠻻 㗝 𤷫 㘉 𠳖 嚯 𢞵 𡃉 𠸐\n𠹸 𡁸 𡅈 𨈇 𡑕 𠹹 𤹐 𢶤 婔 𡀝 𡀞 𡃵 𡃶 垜 𠸑\n   𧚔 𨋍 𠾵 𠹻 𥅾 㜃 𠾶 𡆀 𥋘 𪊽 𤧚 𡠺 𤅷 𨉼 墙\n剨 㘚 𥜽 箲 孨 䠀 䬬 鼧 䧧 鰟 鮍 𥭴 𣄽 嗻 㗲 嚉\n丨 夂 𡯁 屮 靑 𠂆 乛 亻 㔾 尣 彑 忄 㣺 扌 攵 歺\n氵 氺 灬 爫 丬 犭 𤣩 罒 礻 糹 罓 𦉪 㓁    𦍋 耂\n肀 𦘒 𦥑 卝 衤 见 𧢲 讠 贝 钅 镸 长 门 𨸏 韦 页\n风 飞 饣 𩠐 鱼 鸟 黄 歯 龜 丷 𠂇 阝 户 钢\n倻 淾 𩱳 龦 㷉 袏 𤅎 灷 峵 䬠 𥇍 㕙 𥴰 愢 𨨲 辧\n釶 熑 朙 玺 𣊁 𪄇 㲋 𡦀 䬐 磤 琂 冮 𨜏 䀉 橣 𪊺\n䈣 蘏    稪 𩥇 𨫪 靕 灍 匤 𢁾 鏴 盙 𨧣 龧 矝 亣\n俰 傼 丯 众 龨 吴 綋 墒 壐 𡶶 庒 庙 忂 𢜒 斋\n   𣏹 椙 橃 𣱣 泿    爀 𤔅 玌 㻛 𤨓 嬕 璹 讃 𥲤\n𥚕 窓 篬 糃 繬 苸 薗 龩 袐 龪 躹 龫 迏 蕟 駠 鈡\n龬 𨶹 𡐿 䁱 䊢 娚          顨 杫 䉶 圽    藖 𤥻\n芿 𧄍 䲁 𦵴 嵻 𦬕 𦾾 龭 龮 宖 龯    繛\n崾 嵈 嵖 㷼 㠏 嶤 嶹 㠠 㠸 幂 庽 弥 徃 㤈 㤔 㤿\n㥍 惗 愽 峥 㦉 憷 憹 懏 㦸 戬 抐 拥 挘 㧸 嚱\n   㨃 揢 揻 搇 摚 㩋 擀 崕 嘡 龟 㪗 斆 㪽 旿 晓\n㫲 暒 㬢 朖 㭂 枤 栀 㭘 桊 梄 㭲 㭱 㭻 椉 楃 牜\n楤 榟 榅 㮼 槖 㯝 橥 橴 橱 檂 㯬 檙 㯲 檫 檵 櫔\n櫶 殁 毁 毪 汵 沪 㳋 洂 洆 洦 涁 㳯 涤 涱 渕 渘\n温 溆 𨧀 溻 滢 滚 齿 滨 滩 漤 漴 㵆 𣽁 澁 澾 㵪\n㵵 熷 岙 㶊 瀬 㶑 灐 灔 灯 灿 炉 𠌥 䏁 㗱 𠻘\n𣻗 垾 𦻓 焾 𥟠 㙎 榢 𨯩 孴 穉 𥣡 𩓙 穥 穽 𥦬 窻\n窰 竂 竃 燑 𦒍 䇊 竚 竝 竪 䇯 咲 𥰁 笋 筕 笩 𥌎\n𥳾 箢 筯 莜 𥮴 𦱿 篐 萡 箒    𥴠 㶭 𥱥 蒒 篺\n簵 𥳁 籄 粃 𤢂 粦 晽 𤕸 糉 糇 糦 籴 糳 糵\n   繧 䔝 𦹄 絝 𦻖 璍 綉 綫 焵 綳    𤁗 𦀩 緤 㴓\n緵 𡟹 緥 𨍭    𦄡 𦅚 繮 纒 䌫 鑬 縧 罀 罁 罇 礶\n𦋐 駡 羗 𦍑 羣 𡙡 𠁨 䕜 𣝦 䔃 𨌺 翺 𦒉    耈 耝\n   耯 𪂇 𦳃 耻 耼 聡 𢜔 䦉 𦘦 𣷣 𦛨 朥 肧 𨩈 脇\n脚 墰 𢛶 汿 𦒘 𤾸 擧 𡒊 舘 𡡞 橓 𤩥 𤪕 䑺 舩 𠬍\n𦩒 𣵾 俹 𡓽 蓢 荢 𦬊 𤦧 𣔰 𡝳 𣷸 芪 椛 芳 䇛\n蕋 苐 茚 𠸖 𡞴 㛁 𣅽 𣕚 艻 苢 茘 𣺋 𦶣 𦬅 𦮗 𣗎\n㶿 茝 嗬 莅 䔋 𦶥 莬    菓 㑾 𦻔 橗 蕚 㒖 𦹂 𢻯\n葘 𥯤 葱 㷓 䓤 檧 葊 𣲵 祘    𦮖 𦹷 𦹃 蓞    莑\n䒠 蒓 蓤 𥲑 䉀 𥳀 䕃 蔴 嫲 𦺙 䔧 蕳 䔖 枿 蘖\n   𨘥 𨘻 藁 𧂈 蘂 𡖂 𧃍 䕫 䕪 蘨 㙈 𡢢 号 𧎚 虾\n蝱 𪃸 蟮 𢰧 螱 蟚 蠏 噡 虬 桖 䘏 衅 衆 𧗠 𣶹 𧗤\n衞 袜 䙛 袴 袵 揁 装 睷 𧜏 覇 覊       覧 覼 𨨥\n觧 𧤤 𧪽 誜 瞓 釾 誐 𧩙 竩 𧬺 𣾏 䜓 𧬸 煼 謌 謟\n𥐰 𥕥 謿 譌 譍 誩 𤩺 讐 讛 誯 𡛟 䘕 衏 貛 𧵔 𧶏\n貫 㜥 𧵓 賖 𧶘 𧶽 贒 贃 𡤐 賛 灜 贑 𤳉 㻐\n趩 𨀂 𡀔 𤦊 㭼 𨆼 𧄌 竧 躭 躶 軃 鋔 輙 輭 𨍥 𨐒\n辥 錃 𪊟 𠩐 辳 䤪 𨧞 𨔽 𣶻 廸 𣉢 迹 𪀔 𨚼 𨔁 𢌥\n㦀 𦻗 逷 𨔼 𧪾 遡 𨕬 𨘋 邨 𨜓 郄 𨛦 邮    酧 㫰\n醩 釄 粬 𨤳 𡺉 鈎 沟 鉁 鉢 𥖹    𨫆 𣲛 𨬌 𥗛\n   𠴱 錬 鍫 𨫡 𨯫 炏 嫃 𨫢 𨫥 䥥 鉄 𨯬 𨰹 𨯿 鍳\n鑛 躼 閅 閦 鐦 閠 濶 䊹 𢙺 𨛘 𡉼 𣸮 䧟 氜 陻 隖\n䅬 隣 𦻕 懚 隶 磵 𨫠 隽 双 䦡 𦲸 𠉴 𦐐 𩂯 𩃥 𤫑\n𡤕 𣌊 霱 虂 霶 䨏 䔽 䖅 𤫩 灵 孁 霛    𩇕 靗 孊\n𩇫 靟 鐥 僐 𣂷 𣂼 鞉 鞟 鞱 鞾 韀 韒 韠 𥑬 韮 琜\n𩐳    韵 𩐝 𧥺 䫑 頴 頳 顋 顦 㬎 𧅵 㵑 𠘰 𤅜\n𥜆 飊 颷 飈 飇 䫿 𦴧 𡛓 喰 飡 飦 飬 鍸 餹 𤨩 䭲\n𩡗 𩤅 駵 騌 騻 騐 驘 𥜥 㛄 𩂱 𩯕 髠 髢 𩬅 髴 䰎\n鬔 鬭 𨘀 倴 鬴 𦦨 㣃 𣁽 魐 魀 𩴾 婅 𡡣 鮎 𤉋 鰂\n鯿 鰌 𩹨 鷔 𩾷 𪆒 𪆫 𪃡 𪄣 𪇟 鵾 鶃 𪄴 鸎 梈\n   鷄 𢅛 𪆓 𪈠 𡤻 𪈳 鴹 𪂹 𪊴 麐 麕 麞 麢 䴴 麪\n麯 𤍤 黁 㭠 㧥 㴝 伲 㞾 𨰫 鼂 鼈 䮖 鐤 𦶢 鼗\n鼹 嚟 嚊 齅 馸 𩂋 韲 葿 齢 齩 竜 龎 爖 䮾 𤥵 𤦻\n煷 𤧸 𤍈 𤩑 玞 𨯚 𡣺 禟 𨥾 𨸶 鍩 鏳 𨩄 鋬 鎁 鏋\n𨥬 𤒹 爗 㻫 睲 穃 烐 𤑳 𤏸 煾 𡟯 炣 𡢾 𣖙 㻇 𡢅\n𥐯 𡟸 㜢 𡛻 𡠹 㛡 𡝴 𡣑 𥽋 㜣 𡛀 坛 𤨥 𡏾 𡊨\n𡏆 𡒶 蔃 𣚦    葕 𤦔 𧅥 𣸱 𥕜 𣻻 𧁒 䓴 𣛮 𩦝 𦼦\n柹 㜳 㰕 㷧 塬 𡤢 栐 䁗 𣜿 𤃡 𤂋 𤄏 𦰡 哋 嚞 𦚱\n嚒 𠿟 𠮨 𠸍 鏆 𨬓 鎜 仸 儫 㠙 𤐶 亼 𠑥 𠍿 佋 侊\n𥙑 婨 𠆫 𠏋 㦙 𠌊 𠐔 㐵 伩 𠋀 𨺳 𠉵 諚 𠈌 亘\n   働 儍 侢 伃 𤨎 𣺊 佂 倮 偬 傁 俌 俥 偘 僼\n         湶 𣖕 𣸹 𣺿 浲 𡢄 𣺉 冨 凃 𠗠 䓝 𠒣 𠒒\n𠒑 赺 𨪜 𠜎 剙 劤 𠡳 勡    䙺 熌 𤎌 𠰠 𤦬 𡃤 槑\n𠸝    㻞 璙 琔 瑖 玘 䮎 𤪼 𤂍 叐 㖄 爏 𤃉 喴 𠍅\n响 𠯆 圝 鉝 雴 鍦 埝 垍 坿 㘾 壋 媙 𨩆 𡛺 𡝯 𡜐\n娬 妸 銏 婾 嫏 娒 𥥆 𡧳 𡡡 𤊕 㛵 洅 瑃 娡 𥺃\n媁 𨯗 𠐓 鏠 璌 𡌃 焅 䥲 鐈 𨧻 鎽 㞠 尞 岞 幞 幈\n𡦖 𡥼 𣫮 廍 孏 𡤃 𡤄 㜁 𡢠 㛝 𡛾 㛓 脪 𨩇 𡶺 𣑲\n𨦨 弌 弎 𡤧 𡞫 婫 𡜻 孄 蘔 𧗽 衠 恾 𢡠 𢘫 忛 㺸\n𢖯 𢖾 𩂈 𦽳 懀 𠀾 𠁆 𢘛 憙 憘 恵 𢲛 𢴇 𤛔 𩅍\n   摱 𤙥 𢭪 㨩 𢬢 𣑐 𩣪 𢹸 挷 𪑛 撶 挱 揑 𤧣 𢵧\n护 𢲡 搻 敫 楲 㯴 𣂎 𣊭 𤦉 𣊫 唍 𣋠 𡣙 𩐿 曎 𣊉\n𣆳 㫠 䆐 𥖄 𨬢 𥖏 𡛼 𥕛 𥐥 磮 𣄃 𡠪 𣈴 㑤 𣈏 𣆂\n𤋉 暎 𦴤 晫 䮓 昰 𧡰 𡷫 晣 𣋒 𣋡 昞 𥡲 㣑 𣠺 𣞼\n㮙 𣞢 𣏾 瓐 㮖 枏 𤘪 梶 栞 㯄 檾 㡣 𣟕 𤒇 樳 橒\n櫉 欅 𡤒 攑 梘 橌 㯗 橺 歗 𣿀 𣲚 鎠 鋲 𨯪 𨫋\n銉 𨀞 𨧜 鑧 涥 漋 𤧬    𣽿 㶏 渄 𤀼 娽 渊 塇 洤\n硂 焻 𤌚 𤉶 烱 牐 犇 犔 𤞏 𤜥 兹 𤪤 𠗫 瑺 𣻸 𣙟\n𤩊 𤤗 𥿡 㼆 㺱 𤫟 𨰣 𣼵 悧 㻳 瓌 琼 鎇 琷 䒟 𦷪\n䕑 疃 㽣 𤳙 𤴆 㽘 畕 癳 𪗆 㬙 瑨 𨫌 𤦫 𤦎 㫻\n   㷍 𤩎 㻿 𤧅 𤣳 釺 圲 鍂 𨫣 𡡤 僟 𥈡 𥇧 睸 𣈲\n眎 眏 睻 𤚗 𣞁 㩞 𤣰 琸 璛 㺿 𤪺 𤫇 䃈 𤪖 𦆮 錇\n𥖁 砞 碍 碈 磒 珐 祙 𧝁 𥛣 䄎    蒖 禥 樭 𣻺 稺\n秴 䅮 𡛦 䄲 鈵 秱 𠵌 𤦌 𠊙 𣶺 𡝮 㖗 啫 㕰 㚪 𠇔\n𠰍 竢 婙 𢛵 𥪯 𥪜 娍 𠉛 磰 娪 𥯆 竾 䇹 籝 籭 䈑\n𥮳 𥺼 𥺦 糍 𤧹 𡞰 粎 籼 粮 檲 緜 縇 緓 罎 𦉡\n𦅜 𧭈 綗 𥺂 䉪 𦭵 𠤖 柖 𠁎 𣗏 埄 𦐒 𦏸 𤥢 翝 笧\n𠠬 𥫩 𥵃 笌 𥸎 駦 虅 驣 樜 𣐿 㧢 𤧷 𦖭 騟 𦖠 蒀\n𧄧 𦳑 䓪 脷 䐂 胆 脉 腂 𦞴 飃 𦩂 艢 艥 𦩑 葓 𦶧\n蘐 𧈛 媆 䅿 𡡀 嬫 𡢡 嫤 𡣘 蚠 蜨 𣶏 蠭 𧐢 娂\n   衮 佅 袇 袿 裦 襥 襍 𥚃 襔 𧞅 𧞄 𨯵 𨯙 𨮜 𨧹\n㺭 蒣 䛵 䛏 㟲 訽 訜 𩑈 彍 鈫 𤊄 旔 焩 烄 𡡅 鵭\n貟 賩 𧷜 妚 矃 姰 䍮 㛔 踪 躧 𤰉 輰 轊 䋴 汘 澻\n𢌡 䢛 潹 溋 𡟚 鯩 㚵 𤤯 邻    啱 䤆 醻 鐄 𨩋 䁢\n𨫼 鐧 𨰝 𨰻 蓥 訫 閙 閧 閗 閖 𨴴 瑅 㻂 𤣿 𤩂 𤏪\n㻧 𣈥 随 𨻧 𨹦 𨹥 㻌 𤧭 𤩸 𣿮 琒 瑫 㻼 靁 𩂰\n桇 䨝 𩂓 𥟟    鍨 𨦉 𨰦 𨬯 𦎾 銺 嬑 譩 䤼 珹 𤈛\n鞛 靱 餸 𠼦 巁 𨯅 𤪲 頟 𩓚 鋶 𩗗 釥 䓀 𨭐 𤩧 𨭤\n飜 𨩅 㼀 鈪 䤥 萔 餻 饍 𧬆 㷽 馛 䭯 馪 驜 𨭥 𥣈\n檏 騡 嫾 騯 𩣱 䮐 𩥈 馼 䮽 䮗 鍽 塲 𡌂 堢 𤦸\n   𡓨 硄 𢜟 𣶸 棅 㵽 鑘 㤧 慐 𢞁 𢥫 愇 鱏 鱓 鱻\n鰵 鰐 魿 鯏 𩸭 鮟 𪇵 𪃾 鴡 䲮 𤄄 鸘 䲰 鴌 𪆴 𪃭\n𪃳 𩤯 鶥 蒽 𦸒 𦿟 𦮂 藼 䔳 𦶤 𦺄 𦷰 萠 藮 𦸀 𣟗\n𦁤 秢 𣖜 𣙀 䤭 𤧞 㵢 鏛 銾 鍈 𠊿 碹 鉷 鑍 俤 㑀\n遤 𥕝 砽 硔 碶 硋 𡝗 𣇉 𤥁 㚚 佲 濚 濙    瀞 吔\n𤆵 垻 壳 垊 鴖 埗 焴 㒯 𤆬 燫 𦱀 𤾗    𡞵 𨩉\n愌 嫎 娋 䊼 𤒈 㜬 䭻 𨧼 鎻 鎸 𡣖 𠼝 葲 𦳀 𡐓 𤋺\n𢰦 𤏁 妔 𣶷 𦝁 綨 𦅛 𦂤 𤦹 𤦋 𨧺 鋥 珢 㻩 璴 𨭣\n𡢟 㻡 𤪳 櫘 珳 珻 㻖 𤨾 𤪔 𡟙 𤩦 𠎧 𡐤 𤧥 瑈 𤤖\n炥 𤥶 銄 珦 鍟 𠓾 錱 𨫎 𨨖 鎆 𨯧 𥗕 䤵 𨪂 煫\n   𤥃 𠳿 嚤 𠘚 𠯫 𠲸 唂 秄 𡟺 緾 𡛂 𤩐 𡡒 䔮 鐁\n㜊 𨫀 𤦭 妰 𡢿 𡢃 𧒄 媡 㛢 𣵛 㚰 鉟 婹 𨪁 𡡢 鍴\n㳍 𠪴 䪖 㦊 僴 㵩 㵌 𡎜 煵 䋻 𨈘 渏 𩃤 䓫 浗 𧹏\n灧 沯 㳖 𣿭 𣸭 渂 漌 㵯 𠏵 畑 㚼 㓈 䚀 㻚 䡱 姄\n鉮 䤾 轁 𨰜 𦯀 堒 埈 㛖 𡑒 烾 𤍢 𤩱 𢿣 𡊰 𢎽 梹\n楧 𡎘 𣓥 𧯴 𣛟 𨪃 𣟖 𣏺 𤲟 樚 𣚭 𦲷 萾 䓟 䓎\n𦴦 𦵑 𦲂 𦿞 漗 𧄉 茽 𡜺 菭 𦲀 𧁓 𡟛 妉 媂 𡞳 婡\n婱 𡤅 𤇼 㜭 姯 𡜼 㛇 熎 鎐 暚 𤊥 婮 娫 𤊓 樫 𣻹\n𧜶 𤑛 𤋊 焝 𤉙 𨧡 侰 𦴨 峂 𤓎 𧹍 𤎽 樌 𤉖 𡌄 炦\n焳 𤏩 㶥 泟 勇 𤩏 繥 姫 崯 㷳 彜 𤩝 𡟟 綤 萦\n   咅 𣫺 𣌀 𠈔 坾 𠣕 𠘙 㿥 𡾞 𪊶 瀃 𩅛 嵰 玏 糓\n𨩙 𩐠 俈 翧 狍 猐 𧫴 猸 猹 𥛶 獁 獈 㺩 𧬘 遬 燵\n𤣲 珡 臶 㻊 県 㻑 沢 国 琙 琞 琟 㻢 㻰 㻴 㻺 瓓\n㼎 㽓 畂 畭 畲 疍 㽼 痈 痜 㿀 癍 㿗 癴 㿜 発 𤽜\n熈 嘣 覀 塩 䀝 睃 䀹 条 䁅 㗛 瞘 䁪 䁯 属 瞾 矋\n売 砘 点 砜 䂨 砹 硇 硑 硦 葈 𥔵 礳 栃 礲 䄃\n䄉 禑 禙 辻 稆 込 䅧 窑 䆲 窼 艹 䇄 竏 竛 䇏 両\n筢 筬 筻 簒 簛 䉠 䉺 类 粜 䊌 粸 䊔 糭 输 烀 𠳏\n総 緔 緐 緽 羮 羴 犟 䎗 耠 耥 笹 耮 耱 联 㷌 垴\n炠 肷 胩 䏭 脌 猪 脎 脒 畠 脔 䐁 㬹 腖 腙 腚\n   䐓 堺 腼 膄 䐥 膓 䐭 膥 埯 臁 臤 艔 䒏 芦 艶\n苊 苘 苿 䒰 荗 险 榊 萅 烵 葤 惣 蒈 䔄 蒾 蓡 蓸\n蔐 蔸 蕒 䔻 蕯 蕰 藠 䕷 虲 蚒 蚲 蛯 际 螋 䘆 䘗\n袮 裿 褤 襇 覑 𧥧 訩 訸 誔 誴 豑 賔 賲 贜 䞘 塟\n跃 䟭 仮 踺 嗘 坔 蹱 嗵 躰 䠷 軎 転 軤 軭 軲 辷\n迁 迊 迌 逳 駄 䢭 飠 鈓 䤞 鈨 鉘 鉫 銱 銮 銿\n鋣 鋫 鋳 鋴 鋽 鍃 鎄 鎭 䥅 䥑 麿 鐗 匁 鐝 鐭 鐾\n䥪 鑔 鑹 锭 関 䦧 间 阳 䧥 枠 䨤 靀 䨵 鞲 韂 噔\n䫤 惨 颹 䬙 飱 塄 餎 餙 冴 餜 餷 饂 饝 饢 䭰 駅\n䮝 騼 鬏 窃 魩 鮁 鯝 鯱 鯴 䱭 鰠 㝯 𡯂 鵉 鰺\n   黾 噐 鶓 鶽 鷀 鷼 银 辶 鹻 麬 麱 麽 黆 铜 黢\n黱 黸 竈 齄 𠂔 𠊷 𠎠 椚 铃 妬 𠓗 塀 铁 㞹 𠗕 𠘕\n𠙶 𡚺 块 煳 𠫂 𠫍 𠮿 呪 吆 𠯋 咞 𠯻 𠰻 𠱓 𠱥 𠱼\n惧 𠲍 噺 𠲵 𠳝 𠳭 𠵯 𠶲 𠷈 楕 鰯 螥 𠸄 𠸎 𠻗 𠾐\n𠼭 𠹳 尠 𠾼 帋 𡁜 𡁏 𡁶 朞 𡁻 𡂈 𡂖 㙇 𡂿 𡃓 𡄯\n𡄻 卤 蒭 𡋣 𡍵 𡌶 讁 𡕷 𡘙 𡟃 𡟇 乸 炻 𡠭 𡥪\n𡨭 𡩅 𡰪 𡱰 𡲬 𡻈 拃 𡻕 𡼕 熘 桕 𢁅 槩 㛈 𢉼 𢏗\n𢏺 𢜪 𢡱 𢥏 苽 𢥧 𢦓 𢫕 覥 𢫨 辠 𢬎 鞸 𢬿 顇 骽\n𢱌    𢲈 𢲷 𥯨 𢴈 𢴒 𢶷 𢶕 𢹂 𢽴 𢿌 𣀳 𣁦 𣌟 𣏞\n徱 晈 暿 𧩹 𣕧 𣗳    𤦺    𣘚 𣜖    𠍆 墵 朎\n   椘 𣪧 𧙗 𥿢 𣸑 𣺹 𧗾 𢂚 䣐 䪸 𤄙 𨪚 𤋮 𤌍 𤀻\n𤌴 𤎖 𤩅 𠗊 凒 𠘑 妟 𡺨 㮾 𣳿 𤐄 𤓖 垈 𤙴 㦛 𤜯\n𨗨 𩧉 㝢 𢇃 譞 𨭎    𤠒 𤣻 𤨕 爉 𤫀 𠱸 奥 𤺥 𤾆\n𠝹 軚 𥀬 劏 圿 煱 𥊙 𥐙 𣽊 𤪧 喼 𥑆 𥑮 𦭒    㑳\n𥔿 𧘲 𥕞 䜘 𥕢 𥕦 𥟇 𤤿 𥡝 偦 㓻 𣏌    𥤃 䝼 𨥈\n𥪮 𥮉 𥰆 𡶐 垡 煑    𦄂 𧰒 遖 𦆲 𤾚 譢 𦐂 𦑊\n嵛 𦯷    𦒄 𡤜 諪 𤧶 𦒈 𣿯 𦔒 䯀 𦖿 𦚵 𢜛 鑥 𥟡\n憕 娧 晉    嚹 𤔡 𦛼 乪 𤤴 陖 涏 𦲽 㘘 襷 𦞙 𦡮\n𦐑 𦡞    𦣇 筂 𩃀 𠨑 𦤦    𦤹 穅    𦧺 騦 𦨭 㙟\n𦑩 𠀡 禃 𦨴 𦭛 崬 𣔙    𦮝 䛐 𦲤 画 补 𦶮 墶\n   㜜 𢖍 𧁋 𧇍 㱔 𧊀 𧊅 銁 𢅺 𧊋 錰 𧋦 𤧐 氹 钟\n𧑐 𠻸 蠧 裵 𢤦 𨑳 𡞱 溸 𤨪 𡠠 㦤 㚹       䔿 暶\n𩲭 𩢤 襃 𧟌 𧡘 囖 䃟 𡘊 㦡 𣜯 𨃨 𡏅 熭 荦 𧧝 𩆨\n   䲷 𧂯 𨦫 𧧽 𧨊 𧬋 𧵦 𤅺 筃 祾 𨀉 澵 𪋟 樃 𨌘\n厢 𦸇 鎿 栶 靝 𨅯 𨀣 𦦵 𡏭 𣈯 𨁈 嶅 𨰰 𨂃 圕 頣\n𨥉 嶫 𤦈 斾 槕 叒 𤪥 𣾁 㰑 朶 𨂐 𨃴 𨄮 𡾡 𨅏\n𨆉 𨆯 𨈚 𨌆 𨌯 𨎊 㗊 𨑨 𨚪 䣺 揦 𨥖 砈 鉕 𨦸 䏲\n𨧧 䏟 𨧨 𨭆 𨯔 姸 𨰉    𨿅 𩃬    𩄐 𩄼 㷷 𩅞 𤫊\n运 犏 嚋 𩓧 𩗩 𩖰 𩖸 𩜲 𩣑 𩥉 𩥪 𩧃 𩨨 𩬎 𩵚 𩶛\n纟 𩻸 𩼣 䲤 镇 𪊓 熢 𪋿 䶑 递 𪗋 䶜 𠲜 达 嗁\n   辺 𢒰 边 𤪓 䔉 繿 潖 檱 仪 㓤 𨬬 𧢝 㜺 躀 𡟵\n𨀤 𨭬 𨮙 𧨾 𦚯 㷫 𧙕 𣲷 𥘵 𥥖 亚 𥺁 𦉘 嚿 𠹭 踎\n孭 𣺈 𤲞 揞    𡟶 𡡻 攰 嘭 𥱊 吚 𥌑 㷆 𩶘 䱽 嘢\n嘞 罉 𥻘 奵 𣵀 蝰 东 𠿪 𠵉 𣚺 脗 鵞 贘 瘻 鱅 癎\n瞹 鍅 吲 腈 苷 嘥 脲 萘 肽 嗪 祢 噃 吖 𠺝 㗎 嘅\n嗱 曱 𨋢 㘭 甴 嗰 喺 咗 啲 𠱁 𠲖 廐 𥅈 𠹶 𢱢\n𠺢 麫 絚 嗞 𡁵 抝 靭 咔 賍 燶 酶 揼 掹 揾 啩 𢭃\n鱲 𢺳 冚 㓟 𠶧 冧 呍 唞 唓 癦 踭 𦢊 疱 肶 蠄 螆\n裇 膶 萜 𡃁 䓬 猄 𤜆 宐 茋 𦢓 噻 𢛴 𧴯 𤆣 𧵳 𦻐\n𧊶 酰 𡇙 鈈 𣳼 𪚩 𠺬 𠻹 牦 𡲢 䝎 𤿂 𧿹 𠿫 䃺\n   鱝 攟 𢶠 䣳 𤟠 𩵼 𠿬 𠸊    𧖣 𠿭    𦁈 𡆇 熣\n纎 鵐 业 丄 㕷 嬍 沲 卧 㚬 㧜 卽 㚥 𤘘 墚 𤭮 舭\n呋 垪 𥪕 𠥹    㩒 𢑥 獴 𩺬 䴉 鯭 𣳾 𩼰 䱛 𤾩 𩖞\n𩿞 葜 𣶶 𧊲 𦞳 𣜠 挮 紥 𣻷 𣸬 㨪 逈 勌 㹴 㙺 䗩\n𠒎 癀 嫰 𠺶 硺 𧼮 墧 䂿 噼 鮋 嵴 癔 𪐴 麅 䳡\n㟻 愙 𣃚 𤏲    噝 𡊩 垧 𤥣 𩸆 刴 𧂮 㖭    鵼\n籖 鬹 埞 𡝬 屓 擓 𩓐 𦌵 𧅤 蚭 𠴨 𦴢 𤫢 𠵱    凾\n𡼏 嶎 霃 𡷑 麁 遌 笟 鬂 峑 箣 扨 挵 髿 篏 鬪 籾\n   籂 粆 鰕 篼 鬉    鰛 𤤾 齚 啳 寃 俽 麘 俲 剠\n㸆 勑 坧 偖 妷 帒 韈 鶫 轜 呩 鞴 饀 鞺 匬 愰\n   椬 叚 鰊 鴂 䰻 陁 榀 傦 畆 𡝭 駚 剳    酙 隁\n酜    酑 𨺗 捿 𦴣 櫊 嘑 醎 畺 抅 𠏼 獏 籰 𥰡 𣳽\n   𤤙 盖 鮝 个 𠳔 莾 衂    届 槀    坺 刟 巵 从\n氱 𠇲 伹 咜 哚 劚 趂 㗾    㗳    歒 酼 龥 鮗 頮\n颴 骺 麨 麄 煺 笔    毺 蠘 罸    嘠 𪙊 蹷 齓\n跔 蹏 鸜 踁 抂 𨍽 踨 蹵 竓 𤩷 稾 磘 泪 詧 瘇\n𨩚 鼦 泎 蟖 痃 𪊲 硓 咢 贌 狢 獱 謭 猂 瓱 賫 𤪻\n蘯 徺 袠 䒷    𡠻 𦸅    詾 𢔛    惽 癧 髗 鵄 鍮\n鮏 蟵       賷 猬 霡 鮰 㗖 犲 䰇 籑 饊 𦅙 慙 䰄\n麖 慽    坟 慯 抦 戹    㩜 懢 厪 𣏵 捤 栂 㗒\n   嵗 𨯂 迚 𨸹    僙 𡵆 礆 匲 阸 𠼻 䁥    矾\n糂 𥼚 糚 稭 聦 聣 絍 甅 瓲 覔 舚 朌 聢 𧒆 聛 瓰\n脃 眤 覉 𦟌 畓 𦻑 螩 蟎 臈 螌 詉 貭 譃 眫 瓸 蓚\n㘵 榲 趦    覩    涹 蟁 𤀑 瓧 㷛 煶 悤 憜 㳑\n恷    罱 𨬭    惩 䭾 删 㰘 𣳇 𥻗 𧙖 𥔱 𡥄 𡋾 𩤃\n𦷜 𧂭 峁 𦆭 𨨏 𣙷 𠃮 𦡆 𤼎 䕢 嬟 𦍌 齐 麦 𦉫\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2001.IRREVERSIBLE.TXT",
    "content": "0xF9E9\t0x255E\n0xF9EA\t0x256A\n0xF9EB\t0x2561\n0xF9F9\t0x2550\n0xF9FA\t0x256D\n0xF9FB\t0x256E\n0xF9FC\t0x2570\n0xF9FD\t0x256F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2001.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8840\t0x31C0\n0x8841\t0x31C1\n0x8842\t0x31C2\n0x8843\t0x31C3\n0x8844\t0x31C4\n0x8845\t0x2010C\n0x8846\t0x31C5\n0x8847\t0x200D1\n0x8848\t0x200CD\n0x8849\t0x31C6\n0x884A\t0x31C7\n0x884B\t0x200CB\n0x884C\t0x21FE8\n0x884D\t0x31C8\n0x884E\t0x200CA\n0x884F\t0x31C9\n0x8850\t0x31CA\n0x8851\t0x31CB\n0x8852\t0x31CC\n0x8853\t0x2010E\n0x8854\t0x31CD\n0x8855\t0x31CE\n0x8856\t0x0100\n0x8857\t0x00C1\n0x8858\t0x01CD\n0x8859\t0x00C0\n0x885A\t0x0112\n0x885B\t0x00C9\n0x885C\t0x011A\n0x885D\t0x00C8\n0x885E\t0x014C\n0x885F\t0x00D3\n0x8860\t0x01D1\n0x8861\t0x00D2\n0x8862\t0x00CA 0x0304\n0x8863\t0x1EBE\n0x8864\t0x00CA 0x030C\n0x8865\t0x1EC0\n0x8866\t0x00CA\n0x8867\t0x0101\n0x8868\t0x00E1\n0x8869\t0x01CE\n0x886A\t0x00E0\n0x886B\t0x0251\n0x886C\t0x0113\n0x886D\t0x00E9\n0x886E\t0x011B\n0x886F\t0x00E8\n0x8870\t0x012B\n0x8871\t0x00ED\n0x8872\t0x01D0\n0x8873\t0x00EC\n0x8874\t0x014D\n0x8875\t0x00F3\n0x8876\t0x01D2\n0x8877\t0x00F2\n0x8878\t0x016B\n0x8879\t0x00FA\n0x887A\t0x01D4\n0x887B\t0x00F9\n0x887C\t0x01D6\n0x887D\t0x01D8\n0x887E\t0x01DA\n0x88A1\t0x01DC\n0x88A2\t0x00FC\n0x88A3\t0x00EA 0x0304\n0x88A4\t0x1EBF\n0x88A5\t0x00EA 0x030C\n0x88A6\t0x1EC1\n0x88A7\t0x00EA\n0x88A8\t0x0261\n0x88A9\t0x23DA\n0x88AA\t0x23DB\n0x8940\t0x2A3A9\n0x8941\t0x21145\n0x8943\t0x650A\n0x8946\t0x4E3D\n0x8947\t0x6EDD\n0x8948\t0x9D4E\n0x8949\t0x91DF\n0x894C\t0x27735\n0x894D\t0x6491\n0x894E\t0x4F1A\n0x894F\t0x4F28\n0x8950\t0x4FA8\n0x8951\t0x5156\n0x8952\t0x5174\n0x8953\t0x519C\n0x8954\t0x51E4\n0x8955\t0x52A1\n0x8956\t0x52A8\n0x8957\t0x533B\n0x8958\t0x534E\n0x8959\t0x53D1\n0x895A\t0x53D8\n0x895B\t0x56E2\n0x895C\t0x58F0\n0x895D\t0x5904\n0x895E\t0x5907\n0x895F\t0x5932\n0x8960\t0x5934\n0x8961\t0x5B66\n0x8962\t0x5B9E\n0x8963\t0x5B9F\n0x8964\t0x5C9A\n0x8965\t0x5E86\n0x8966\t0x603B\n0x8967\t0x6589\n0x8968\t0x67FE\n0x8969\t0x6804\n0x896A\t0x6865\n0x896B\t0x6D4E\n0x896C\t0x70BC\n0x896D\t0x7535\n0x896E\t0x7EA4\n0x896F\t0x7EAC\n0x8970\t0x7EBA\n0x8971\t0x7EC7\n0x8972\t0x7ECF\n0x8973\t0x7EDF\n0x8974\t0x7F06\n0x8975\t0x7F37\n0x8976\t0x827A\n0x8977\t0x82CF\n0x8978\t0x836F\n0x8979\t0x89C6\n0x897A\t0x8BBE\n0x897B\t0x8BE2\n0x897C\t0x8F66\n0x897D\t0x8F67\n0x897E\t0x8F6E\n0x89A1\t0x7411\n0x89A2\t0x7CFC\n0x89A3\t0x7DCD\n0x89A4\t0x6946\n0x89A5\t0x7AC9\n0x89A6\t0x5227\n0x89AB\t0x918C\n0x89AC\t0x78B8\n0x89AD\t0x915E\n0x89AE\t0x80BC\n0x89B0\t0x8D0B\n0x89B1\t0x80F6\n0x89B2\t0x209E7\n0x89B5\t0x809F\n0x89B6\t0x9EC7\n0x89B7\t0x4CCD\n0x89B8\t0x9DC9\n0x89B9\t0x9E0C\n0x89BA\t0x4C3E\n0x89BB\t0x29DF6\n0x89BC\t0x2700E\n0x89BD\t0x9E0A\n0x89BE\t0x2A133\n0x89BF\t0x35C1\n0x89C1\t0x6E9A\n0x89C2\t0x823E\n0x89C3\t0x7519\n0x89C5\t0x4911\n0x89C6\t0x9A6C\n0x89C7\t0x9A8F\n0x89C8\t0x9F99\n0x89C9\t0x7987\n0x89CA\t0x2846C\n0x89CB\t0x21DCA\n0x89CC\t0x205D0\n0x89CD\t0x22AE6\n0x89CE\t0x4E24\n0x89CF\t0x4E81\n0x89D0\t0x4E80\n0x89D1\t0x4E87\n0x89D2\t0x4EBF\n0x89D3\t0x4EEB\n0x89D4\t0x4F37\n0x89D5\t0x344C\n0x89D6\t0x4FBD\n0x89D7\t0x3E48\n0x89D8\t0x5003\n0x89D9\t0x5088\n0x89DA\t0x347D\n0x89DB\t0x3493\n0x89DC\t0x34A5\n0x89DD\t0x5186\n0x89DE\t0x5905\n0x89DF\t0x51DB\n0x89E0\t0x51FC\n0x89E1\t0x5205\n0x89E2\t0x4E89\n0x89E3\t0x5279\n0x89E4\t0x5290\n0x89E5\t0x5327\n0x89E6\t0x35C7\n0x89E7\t0x53A9\n0x89E8\t0x3551\n0x89E9\t0x53B0\n0x89EA\t0x3553\n0x89EB\t0x53C2\n0x89EC\t0x5423\n0x89ED\t0x356D\n0x89EE\t0x3572\n0x89EF\t0x3681\n0x89F0\t0x5493\n0x89F1\t0x54A3\n0x89F2\t0x54B4\n0x89F3\t0x54B9\n0x89F4\t0x54D0\n0x89F5\t0x54EF\n0x89F6\t0x5518\n0x89F7\t0x5523\n0x89F8\t0x5528\n0x89F9\t0x3598\n0x89FA\t0x553F\n0x89FB\t0x35A5\n0x89FC\t0x35BF\n0x89FD\t0x55D7\n0x89FE\t0x35C5\n0x8A40\t0x27D84\n0x8A41\t0x5525\n0x8A43\t0x20C42\n0x8A44\t0x20D15\n0x8A45\t0x2512B\n0x8A46\t0x5590\n0x8A47\t0x22CC6\n0x8A48\t0x39EC\n0x8A49\t0x20341\n0x8A4A\t0x8E46\n0x8A4B\t0x24DB8\n0x8A4C\t0x294E5\n0x8A4D\t0x4053\n0x8A4E\t0x280BE\n0x8A4F\t0x777A\n0x8A50\t0x22C38\n0x8A51\t0x3A34\n0x8A52\t0x47D5\n0x8A53\t0x2815D\n0x8A54\t0x269F2\n0x8A55\t0x24DEA\n0x8A56\t0x64DD\n0x8A57\t0x20D7C\n0x8A58\t0x20FB4\n0x8A59\t0x20CD5\n0x8A5A\t0x210F4\n0x8A5B\t0x648D\n0x8A5C\t0x8E7E\n0x8A5D\t0x20E96\n0x8A5E\t0x20C0B\n0x8A5F\t0x20F64\n0x8A60\t0x22CA9\n0x8A61\t0x28256\n0x8A62\t0x244D3\n0x8A64\t0x20D46\n0x8A65\t0x29A4D\n0x8A66\t0x280E9\n0x8A67\t0x47F4\n0x8A68\t0x24EA7\n0x8A69\t0x22CC2\n0x8A6A\t0x9AB2\n0x8A6B\t0x3A67\n0x8A6C\t0x295F4\n0x8A6D\t0x3FED\n0x8A6E\t0x3506\n0x8A6F\t0x252C7\n0x8A70\t0x297D4\n0x8A71\t0x278C8\n0x8A72\t0x22D44\n0x8A73\t0x9D6E\n0x8A74\t0x9815\n0x8A76\t0x43D9\n0x8A77\t0x260A5\n0x8A78\t0x64B4\n0x8A79\t0x54E3\n0x8A7A\t0x22D4C\n0x8A7B\t0x22BCA\n0x8A7C\t0x21077\n0x8A7D\t0x39FB\n0x8A7E\t0x2106F\n0x8AA1\t0x266DA\n0x8AA2\t0x26716\n0x8AA3\t0x279A0\n0x8AA4\t0x64EA\n0x8AA5\t0x25052\n0x8AA6\t0x20C43\n0x8AA7\t0x8E68\n0x8AA8\t0x221A1\n0x8AA9\t0x28B4C\n0x8AAA\t0x20731\n0x8AAC\t0x480B\n0x8AAD\t0x201A9\n0x8AAE\t0x3FFA\n0x8AAF\t0x5873\n0x8AB0\t0x22D8D\n0x8AB2\t0x245C8\n0x8AB3\t0x204FC\n0x8AB4\t0x26097\n0x8AB5\t0x20F4C\n0x8AB6\t0x20D96\n0x8AB7\t0x5579\n0x8AB8\t0x40BB\n0x8AB9\t0x43BA\n0x8ABB\t0x4AB4\n0x8ABC\t0x22A66\n0x8ABD\t0x2109D\n0x8ABE\t0x81AA\n0x8ABF\t0x98F5\n0x8AC0\t0x20D9C\n0x8AC1\t0x6379\n0x8AC2\t0x39FE\n0x8AC3\t0x22775\n0x8AC4\t0x8DC0\n0x8AC5\t0x56A1\n0x8AC6\t0x647C\n0x8AC7\t0x3E43\n0x8AC9\t0x2A601\n0x8ACA\t0x20E09\n0x8ACB\t0x22ACF\n0x8ACC\t0x22CC9\n0x8ACE\t0x210C8\n0x8ACF\t0x239C2\n0x8AD0\t0x3992\n0x8AD1\t0x3A06\n0x8AD2\t0x2829B\n0x8AD3\t0x3578\n0x8AD4\t0x25E49\n0x8AD5\t0x220C7\n0x8AD6\t0x5652\n0x8AD7\t0x20F31\n0x8AD8\t0x22CB2\n0x8AD9\t0x29720\n0x8ADA\t0x34BC\n0x8ADB\t0x6C3D\n0x8ADC\t0x24E3B\n0x8ADF\t0x27574\n0x8AE0\t0x22E8B\n0x8AE1\t0x22208\n0x8AE2\t0x2A65B\n0x8AE3\t0x28CCD\n0x8AE4\t0x20E7A\n0x8AE5\t0x20C34\n0x8AE6\t0x2681C\n0x8AE7\t0x7F93\n0x8AE8\t0x210CF\n0x8AE9\t0x22803\n0x8AEA\t0x22939\n0x8AEB\t0x35FB\n0x8AEC\t0x251E3\n0x8AED\t0x20E8C\n0x8AEE\t0x20F8D\n0x8AEF\t0x20EAA\n0x8AF0\t0x3F93\n0x8AF1\t0x20F30\n0x8AF2\t0x20D47\n0x8AF3\t0x2114F\n0x8AF4\t0x20E4C\n0x8AF6\t0x20EAB\n0x8AF7\t0x20BA9\n0x8AF8\t0x20D48\n0x8AF9\t0x210C0\n0x8AFA\t0x2113D\n0x8AFB\t0x3FF9\n0x8AFC\t0x22696\n0x8AFD\t0x6432\n0x8AFE\t0x20FAD\n0x8B40\t0x233F4\n0x8B41\t0x27639\n0x8B42\t0x22BCE\n0x8B43\t0x20D7E\n0x8B44\t0x20D7F\n0x8B45\t0x22C51\n0x8B46\t0x22C55\n0x8B47\t0x3A18\n0x8B48\t0x20E98\n0x8B49\t0x210C7\n0x8B4A\t0x20F2E\n0x8B4B\t0x2A632\n0x8B4C\t0x26B50\n0x8B4D\t0x28CD2\n0x8B4E\t0x28D99\n0x8B4F\t0x28CCA\n0x8B50\t0x95AA\n0x8B51\t0x54CC\n0x8B52\t0x82C4\n0x8B53\t0x55B9\n0x8B55\t0x29EC3\n0x8B56\t0x9C26\n0x8B57\t0x9AB6\n0x8B58\t0x2775E\n0x8B59\t0x22DEE\n0x8B5A\t0x7140\n0x8B5B\t0x816D\n0x8B5C\t0x80EC\n0x8B5D\t0x5C1C\n0x8B5E\t0x26572\n0x8B5F\t0x8134\n0x8B60\t0x3797\n0x8B61\t0x535F\n0x8B62\t0x280BD\n0x8B63\t0x91B6\n0x8B64\t0x20EFA\n0x8B65\t0x20E0F\n0x8B66\t0x20E77\n0x8B67\t0x20EFB\n0x8B68\t0x35DD\n0x8B69\t0x24DEB\n0x8B6A\t0x3609\n0x8B6B\t0x20CD6\n0x8B6C\t0x56AF\n0x8B6D\t0x227B5\n0x8B6E\t0x210C9\n0x8B6F\t0x20E10\n0x8B70\t0x20E78\n0x8B71\t0x21078\n0x8B72\t0x21148\n0x8B73\t0x28207\n0x8B74\t0x21455\n0x8B75\t0x20E79\n0x8B76\t0x24E50\n0x8B77\t0x22DA4\n0x8B78\t0x5A54\n0x8B79\t0x2101D\n0x8B7A\t0x2101E\n0x8B7B\t0x210F5\n0x8B7C\t0x210F6\n0x8B7D\t0x579C\n0x8B7E\t0x20E11\n0x8BA1\t0x27694\n0x8BA2\t0x282CD\n0x8BA3\t0x20FB5\n0x8BA4\t0x20E7B\n0x8BA5\t0x2517E\n0x8BA6\t0x3703\n0x8BA7\t0x20FB6\n0x8BA8\t0x21180\n0x8BA9\t0x252D8\n0x8BAA\t0x2A2BD\n0x8BAB\t0x249DA\n0x8BAC\t0x2183A\n0x8BAD\t0x24177\n0x8BAE\t0x2827C\n0x8BAF\t0x5899\n0x8BB0\t0x5268\n0x8BB1\t0x361A\n0x8BB2\t0x2573D\n0x8BB3\t0x7BB2\n0x8BB4\t0x5B68\n0x8BB5\t0x4800\n0x8BB6\t0x4B2C\n0x8BB7\t0x9F27\n0x8BB8\t0x49E7\n0x8BB9\t0x9C1F\n0x8BBA\t0x9B8D\n0x8BBB\t0x25B74\n0x8BBC\t0x2313D\n0x8BBD\t0x55FB\n0x8BBE\t0x35F2\n0x8BBF\t0x5689\n0x8BC0\t0x4E28\n0x8BC1\t0x5902\n0x8BC2\t0x21BC1\n0x8BC3\t0x2F878\n0x8BC4\t0x9751\n0x8BC5\t0x20086\n0x8BC6\t0x4E5B\n0x8BC7\t0x4EBB\n0x8BC8\t0x353E\n0x8BC9\t0x5C23\n0x8BCA\t0x5F51\n0x8BCB\t0x5FC4\n0x8BCC\t0x38FA\n0x8BCD\t0x624C\n0x8BCE\t0x6535\n0x8BCF\t0x6B7A\n0x8BD0\t0x6C35\n0x8BD1\t0x6C3A\n0x8BD2\t0x706C\n0x8BD3\t0x722B\n0x8BD4\t0x4E2C\n0x8BD5\t0x72AD\n0x8BD6\t0x248E9\n0x8BD7\t0x7F52\n0x8BD8\t0x793B\n0x8BD9\t0x7CF9\n0x8BDA\t0x7F53\n0x8BDB\t0x2626A\n0x8BDC\t0x34C1\n0x8BDE\t0x2634B\n0x8BDF\t0x8002\n0x8BE0\t0x8080\n0x8BE1\t0x26612\n0x8BE2\t0x26951\n0x8BE3\t0x535D\n0x8BE4\t0x8864\n0x8BE5\t0x89C1\n0x8BE6\t0x278B2\n0x8BE7\t0x8BA0\n0x8BE8\t0x8D1D\n0x8BE9\t0x9485\n0x8BEA\t0x9578\n0x8BEB\t0x957F\n0x8BEC\t0x95E8\n0x8BED\t0x28E0F\n0x8BEE\t0x97E6\n0x8BEF\t0x9875\n0x8BF0\t0x98CE\n0x8BF1\t0x98DE\n0x8BF2\t0x9963\n0x8BF3\t0x29810\n0x8BF4\t0x9C7C\n0x8BF5\t0x9E1F\n0x8BF6\t0x9EC4\n0x8BF7\t0x6B6F\n0x8BF8\t0xF907\n0x8BF9\t0x4E37\n0x8BFA\t0x20087\n0x8BFB\t0x961D\n0x8BFC\t0x6237\n0x8BFD\t0x94A2\n0x8C40\t0x503B\n0x8C41\t0x6DFE\n0x8C42\t0x29C73\n0x8C43\t0x9FA6\n0x8C44\t0x3DC9\n0x8C45\t0x888F\n0x8C46\t0x2414E\n0x8C47\t0x7077\n0x8C48\t0x5CF5\n0x8C49\t0x4B20\n0x8C4A\t0x251CD\n0x8C4B\t0x3559\n0x8C4C\t0x25D30\n0x8C4D\t0x6122\n0x8C4E\t0x28A32\n0x8C4F\t0x8FA7\n0x8C50\t0x91F6\n0x8C51\t0x7191\n0x8C52\t0x6719\n0x8C53\t0x73BA\n0x8C54\t0x23281\n0x8C55\t0x2A107\n0x8C56\t0x3C8B\n0x8C57\t0x21980\n0x8C58\t0x4B10\n0x8C59\t0x78E4\n0x8C5A\t0x7402\n0x8C5B\t0x51AE\n0x8C5C\t0x2870F\n0x8C5D\t0x4009\n0x8C5E\t0x6A63\n0x8C5F\t0x2A2BA\n0x8C60\t0x4223\n0x8C61\t0x860F\n0x8C63\t0x7A2A\n0x8C64\t0x29947\n0x8C65\t0x28AEA\n0x8C66\t0x9755\n0x8C67\t0x704D\n0x8C68\t0x5324\n0x8C69\t0x2207E\n0x8C6A\t0x93F4\n0x8C6B\t0x76D9\n0x8C6C\t0x289E3\n0x8C6D\t0x9FA7\n0x8C6E\t0x77DD\n0x8C6F\t0x4EA3\n0x8C70\t0x4FF0\n0x8C71\t0x50BC\n0x8C72\t0x4E2F\n0x8C73\t0x4F17\n0x8C74\t0x9FA8\n0x8C75\t0x5434\n0x8C76\t0x7D8B\n0x8C77\t0x5892\n0x8C78\t0x58D0\n0x8C79\t0x21DB6\n0x8C7A\t0x5E92\n0x8C7B\t0x5E99\n0x8C7C\t0x5FC2\n0x8C7D\t0x22712\n0x8C7E\t0x658B\n0x8CA1\t0x233F9\n0x8CA2\t0x6919\n0x8CA3\t0x6A43\n0x8CA4\t0x23C63\n0x8CA5\t0x6CFF\n0x8CA7\t0x7200\n0x8CA8\t0x24505\n0x8CA9\t0x738C\n0x8CAA\t0x3EDB\n0x8CAB\t0x24A13\n0x8CAC\t0x5B15\n0x8CAD\t0x74B9\n0x8CAE\t0x8B83\n0x8CAF\t0x25CA4\n0x8CB0\t0x25695\n0x8CB1\t0x7A93\n0x8CB2\t0x7BEC\n0x8CB3\t0x7CC3\n0x8CB4\t0x7E6C\n0x8CB5\t0x82F8\n0x8CB6\t0x8597\n0x8CB7\t0x9FA9\n0x8CB8\t0x8890\n0x8CB9\t0x9FAA\n0x8CBA\t0x8EB9\n0x8CBB\t0x9FAB\n0x8CBC\t0x8FCF\n0x8CBD\t0x855F\n0x8CBE\t0x99E0\n0x8CBF\t0x9221\n0x8CC0\t0x9FAC\n0x8CC1\t0x28DB9\n0x8CC2\t0x2143F\n0x8CC3\t0x4071\n0x8CC4\t0x42A2\n0x8CC5\t0x5A1A\n0x8CC9\t0x9868\n0x8CCA\t0x676B\n0x8CCB\t0x4276\n0x8CCC\t0x573D\n0x8CCE\t0x85D6\n0x8CCF\t0x2497B\n0x8CD0\t0x82BF\n0x8CD1\t0x2710D\n0x8CD2\t0x4C81\n0x8CD3\t0x26D74\n0x8CD4\t0x5D7B\n0x8CD5\t0x26B15\n0x8CD6\t0x26FBE\n0x8CD7\t0x9FAD\n0x8CD8\t0x9FAE\n0x8CD9\t0x5B96\n0x8CDA\t0x9FAF\n0x8CDC\t0x7E5B\n0x8D60\t0x5D3E\n0x8D61\t0x5D48\n0x8D62\t0x5D56\n0x8D63\t0x3DFC\n0x8D64\t0x380F\n0x8D65\t0x5DA4\n0x8D66\t0x5DB9\n0x8D67\t0x3820\n0x8D68\t0x3838\n0x8D69\t0x5E42\n0x8D6A\t0x5EBD\n0x8D6B\t0x5F25\n0x8D6C\t0x5F83\n0x8D6D\t0x3908\n0x8D6E\t0x3914\n0x8D6F\t0x393F\n0x8D70\t0x394D\n0x8D71\t0x60D7\n0x8D72\t0x613D\n0x8D73\t0x5CE5\n0x8D74\t0x3989\n0x8D75\t0x61B7\n0x8D76\t0x61B9\n0x8D77\t0x61CF\n0x8D78\t0x39B8\n0x8D79\t0x622C\n0x8D7A\t0x6290\n0x8D7B\t0x62E5\n0x8D7C\t0x6318\n0x8D7D\t0x39F8\n0x8D7E\t0x56B1\n0x8DA1\t0x3A03\n0x8DA2\t0x63E2\n0x8DA3\t0x63FB\n0x8DA4\t0x6407\n0x8DA5\t0x645A\n0x8DA6\t0x3A4B\n0x8DA7\t0x64C0\n0x8DA8\t0x5D15\n0x8DA9\t0x5621\n0x8DAA\t0x9F9F\n0x8DAB\t0x3A97\n0x8DAC\t0x6586\n0x8DAD\t0x3ABD\n0x8DAE\t0x65FF\n0x8DAF\t0x6653\n0x8DB0\t0x3AF2\n0x8DB1\t0x6692\n0x8DB2\t0x3B22\n0x8DB3\t0x6716\n0x8DB4\t0x3B42\n0x8DB5\t0x67A4\n0x8DB6\t0x6800\n0x8DB7\t0x3B58\n0x8DB8\t0x684A\n0x8DB9\t0x6884\n0x8DBA\t0x3B72\n0x8DBB\t0x3B71\n0x8DBC\t0x3B7B\n0x8DBD\t0x6909\n0x8DBE\t0x6943\n0x8DBF\t0x725C\n0x8DC0\t0x6964\n0x8DC1\t0x699F\n0x8DC2\t0x6985\n0x8DC3\t0x3BBC\n0x8DC4\t0x69D6\n0x8DC5\t0x3BDD\n0x8DC6\t0x6A65\n0x8DC7\t0x6A74\n0x8DC8\t0x6A71\n0x8DC9\t0x6A82\n0x8DCA\t0x3BEC\n0x8DCB\t0x6A99\n0x8DCC\t0x3BF2\n0x8DCD\t0x6AAB\n0x8DCE\t0x6AB5\n0x8DCF\t0x6AD4\n0x8DD0\t0x6AF6\n0x8DD1\t0x6B81\n0x8DD2\t0x6BC1\n0x8DD3\t0x6BEA\n0x8DD4\t0x6C75\n0x8DD5\t0x6CAA\n0x8DD6\t0x3CCB\n0x8DD7\t0x6D02\n0x8DD8\t0x6D06\n0x8DD9\t0x6D26\n0x8DDA\t0x6D81\n0x8DDB\t0x3CEF\n0x8DDC\t0x6DA4\n0x8DDD\t0x6DB1\n0x8DDE\t0x6E15\n0x8DDF\t0x6E18\n0x8DE0\t0x6E29\n0x8DE1\t0x6E86\n0x8DE2\t0x289C0\n0x8DE3\t0x6EBB\n0x8DE4\t0x6EE2\n0x8DE5\t0x6EDA\n0x8DE6\t0x9F7F\n0x8DE7\t0x6EE8\n0x8DE8\t0x6EE9\n0x8DE9\t0x6F24\n0x8DEA\t0x6F34\n0x8DEB\t0x3D46\n0x8DEC\t0x23F41\n0x8DED\t0x6F81\n0x8DEE\t0x6FBE\n0x8DEF\t0x3D6A\n0x8DF0\t0x3D75\n0x8DF1\t0x71B7\n0x8DF2\t0x5C99\n0x8DF3\t0x3D8A\n0x8DF4\t0x702C\n0x8DF5\t0x3D91\n0x8DF6\t0x7050\n0x8DF7\t0x7054\n0x8DF8\t0x706F\n0x8DF9\t0x707F\n0x8DFA\t0x7089\n0x8DFB\t0x20325\n0x8DFC\t0x43C1\n0x8DFD\t0x35F1\n0x8DFE\t0x20ED8\n0x8E40\t0x23ED7\n0x8E41\t0x57BE\n0x8E42\t0x26ED3\n0x8E43\t0x713E\n0x8E44\t0x257E0\n0x8E45\t0x364E\n0x8E46\t0x69A2\n0x8E47\t0x28BE9\n0x8E48\t0x5B74\n0x8E49\t0x7A49\n0x8E4A\t0x258E1\n0x8E4B\t0x294D9\n0x8E4C\t0x7A65\n0x8E4D\t0x7A7D\n0x8E4E\t0x259AC\n0x8E4F\t0x7ABB\n0x8E50\t0x7AB0\n0x8E51\t0x7AC2\n0x8E52\t0x7AC3\n0x8E53\t0x71D1\n0x8E54\t0x2648D\n0x8E55\t0x41CA\n0x8E56\t0x7ADA\n0x8E57\t0x7ADD\n0x8E58\t0x7AEA\n0x8E59\t0x41EF\n0x8E5A\t0x54B2\n0x8E5B\t0x25C01\n0x8E5C\t0x7B0B\n0x8E5D\t0x7B55\n0x8E5E\t0x7B29\n0x8E5F\t0x2530E\n0x8E60\t0x25CFE\n0x8E61\t0x7BA2\n0x8E62\t0x7B6F\n0x8E63\t0x839C\n0x8E64\t0x25BB4\n0x8E65\t0x26C7F\n0x8E66\t0x7BD0\n0x8E67\t0x8421\n0x8E68\t0x7B92\n0x8E6A\t0x25D20\n0x8E6B\t0x3DAD\n0x8E6C\t0x25C65\n0x8E6D\t0x8492\n0x8E6E\t0x7BFA\n0x8E70\t0x7C35\n0x8E71\t0x25CC1\n0x8E72\t0x7C44\n0x8E73\t0x7C83\n0x8E74\t0x24882\n0x8E75\t0x7CA6\n0x8E76\t0x667D\n0x8E77\t0x24578\n0x8E78\t0x7CC9\n0x8E79\t0x7CC7\n0x8E7A\t0x7CE6\n0x8E7B\t0x7C74\n0x8E7C\t0x7CF3\n0x8E7D\t0x7CF5\n0x8EA1\t0x7E67\n0x8EA2\t0x451D\n0x8EA3\t0x26E44\n0x8EA4\t0x7D5D\n0x8EA5\t0x26ED6\n0x8EA6\t0x748D\n0x8EA7\t0x7D89\n0x8EA8\t0x7DAB\n0x8EA9\t0x7135\n0x8EAA\t0x7DB3\n0x8EAC\t0x24057\n0x8EAD\t0x26029\n0x8EAE\t0x7DE4\n0x8EAF\t0x3D13\n0x8EB0\t0x7DF5\n0x8EB1\t0x217F9\n0x8EB2\t0x7DE5\n0x8EB3\t0x2836D\n0x8EB5\t0x26121\n0x8EB6\t0x2615A\n0x8EB7\t0x7E6E\n0x8EB8\t0x7E92\n0x8EB9\t0x432B\n0x8EBA\t0x946C\n0x8EBB\t0x7E27\n0x8EBC\t0x7F40\n0x8EBD\t0x7F41\n0x8EBE\t0x7F47\n0x8EBF\t0x7936\n0x8EC0\t0x262D0\n0x8EC1\t0x99E1\n0x8EC2\t0x7F97\n0x8EC3\t0x26351\n0x8EC4\t0x7FA3\n0x8EC5\t0x21661\n0x8EC6\t0x20068\n0x8EC7\t0x455C\n0x8EC8\t0x23766\n0x8EC9\t0x4503\n0x8ECA\t0x2833A\n0x8ECB\t0x7FFA\n0x8ECC\t0x26489\n0x8ECE\t0x8008\n0x8ECF\t0x801D\n0x8ED1\t0x802F\n0x8ED2\t0x2A087\n0x8ED3\t0x26CC3\n0x8ED4\t0x803B\n0x8ED5\t0x803C\n0x8ED6\t0x8061\n0x8ED7\t0x22714\n0x8ED8\t0x4989\n0x8ED9\t0x26626\n0x8EDA\t0x23DE3\n0x8EDB\t0x266E8\n0x8EDC\t0x6725\n0x8EDD\t0x80A7\n0x8EDE\t0x28A48\n0x8EDF\t0x8107\n0x8EE0\t0x811A\n0x8EE1\t0x58B0\n0x8EE2\t0x226F6\n0x8EE3\t0x6C7F\n0x8EE4\t0x26498\n0x8EE5\t0x24FB8\n0x8EE6\t0x64E7\n0x8EE7\t0x2148A\n0x8EE8\t0x8218\n0x8EE9\t0x2185E\n0x8EEA\t0x6A53\n0x8EEB\t0x24A65\n0x8EEC\t0x24A95\n0x8EED\t0x447A\n0x8EEE\t0x8229\n0x8EEF\t0x20B0D\n0x8EF0\t0x26A52\n0x8EF1\t0x23D7E\n0x8EF2\t0x4FF9\n0x8EF3\t0x214FD\n0x8EF4\t0x84E2\n0x8EF5\t0x8362\n0x8EF6\t0x26B0A\n0x8EF7\t0x249A7\n0x8EF8\t0x23530\n0x8EF9\t0x21773\n0x8EFA\t0x23DF8\n0x8EFB\t0x82AA\n0x8EFC\t0x691B\n0x8EFD\t0x2F994\n0x8EFE\t0x41DB\n0x8F40\t0x854B\n0x8F41\t0x82D0\n0x8F42\t0x831A\n0x8F43\t0x20E16\n0x8F44\t0x217B4\n0x8F45\t0x36C1\n0x8F46\t0x2317D\n0x8F47\t0x2355A\n0x8F48\t0x827B\n0x8F49\t0x82E2\n0x8F4A\t0x8318\n0x8F4B\t0x23E8B\n0x8F4C\t0x26DA3\n0x8F4D\t0x26B05\n0x8F4E\t0x26B97\n0x8F4F\t0x235CE\n0x8F50\t0x3DBF\n0x8F51\t0x831D\n0x8F52\t0x55EC\n0x8F53\t0x8385\n0x8F54\t0x450B\n0x8F55\t0x26DA5\n0x8F56\t0x83AC\n0x8F58\t0x83D3\n0x8F59\t0x347E\n0x8F5A\t0x26ED4\n0x8F5B\t0x6A57\n0x8F5C\t0x855A\n0x8F5D\t0x3496\n0x8F5E\t0x26E42\n0x8F5F\t0x22EEF\n0x8F60\t0x8458\n0x8F61\t0x25BE4\n0x8F62\t0x8471\n0x8F63\t0x3DD3\n0x8F64\t0x44E4\n0x8F65\t0x6AA7\n0x8F66\t0x844A\n0x8F67\t0x23CB5\n0x8F68\t0x7958\n0x8F6A\t0x26B96\n0x8F6B\t0x26E77\n0x8F6C\t0x26E43\n0x8F6D\t0x84DE\n0x8F6F\t0x8391\n0x8F70\t0x44A0\n0x8F71\t0x8493\n0x8F72\t0x84E4\n0x8F73\t0x25C91\n0x8F74\t0x4240\n0x8F75\t0x25CC0\n0x8F76\t0x4543\n0x8F77\t0x8534\n0x8F78\t0x5AF2\n0x8F79\t0x26E99\n0x8F7A\t0x4527\n0x8F7B\t0x8573\n0x8F7C\t0x4516\n0x8F7D\t0x67BF\n0x8F7E\t0x8616\n0x8FA1\t0x28625\n0x8FA2\t0x2863B\n0x8FA3\t0x85C1\n0x8FA4\t0x27088\n0x8FA5\t0x8602\n0x8FA6\t0x21582\n0x8FA7\t0x270CD\n0x8FA8\t0x2F9B2\n0x8FA9\t0x456A\n0x8FAA\t0x8628\n0x8FAB\t0x3648\n0x8FAC\t0x218A2\n0x8FAD\t0x53F7\n0x8FAE\t0x2739A\n0x8FAF\t0x867E\n0x8FB0\t0x8771\n0x8FB1\t0x2A0F8\n0x8FB2\t0x87EE\n0x8FB3\t0x22C27\n0x8FB4\t0x87B1\n0x8FB5\t0x87DA\n0x8FB6\t0x880F\n0x8FB7\t0x5661\n0x8FB8\t0x866C\n0x8FB9\t0x6856\n0x8FBA\t0x460F\n0x8FBB\t0x8845\n0x8FBC\t0x8846\n0x8FBD\t0x275E0\n0x8FBE\t0x23DB9\n0x8FBF\t0x275E4\n0x8FC0\t0x885E\n0x8FC1\t0x889C\n0x8FC2\t0x465B\n0x8FC3\t0x88B4\n0x8FC4\t0x88B5\n0x8FC5\t0x63C1\n0x8FC6\t0x88C5\n0x8FC7\t0x7777\n0x8FC8\t0x2770F\n0x8FC9\t0x8987\n0x8FCA\t0x898A\n0x8FCD\t0x89A7\n0x8FCE\t0x89BC\n0x8FCF\t0x28A25\n0x8FD0\t0x89E7\n0x8FD1\t0x27924\n0x8FD2\t0x27ABD\n0x8FD3\t0x8A9C\n0x8FD4\t0x7793\n0x8FD5\t0x91FE\n0x8FD6\t0x8A90\n0x8FD7\t0x27A59\n0x8FD8\t0x7AE9\n0x8FD9\t0x27B3A\n0x8FDA\t0x23F8F\n0x8FDB\t0x4713\n0x8FDC\t0x27B38\n0x8FDD\t0x717C\n0x8FDE\t0x8B0C\n0x8FDF\t0x8B1F\n0x8FE0\t0x25430\n0x8FE1\t0x25565\n0x8FE2\t0x8B3F\n0x8FE3\t0x8B4C\n0x8FE4\t0x8B4D\n0x8FE5\t0x8AA9\n0x8FE6\t0x24A7A\n0x8FE7\t0x8B90\n0x8FE8\t0x8B9B\n0x8FE9\t0x8AAF\n0x8FEA\t0x216DF\n0x8FEB\t0x4615\n0x8FEC\t0x884F\n0x8FED\t0x8C9B\n0x8FEE\t0x27D54\n0x8FEF\t0x27D8F\n0x8FF0\t0x2F9D4\n0x8FF1\t0x3725\n0x8FF2\t0x27D53\n0x8FF3\t0x8CD6\n0x8FF4\t0x27D98\n0x8FF5\t0x27DBD\n0x8FF6\t0x8D12\n0x8FF7\t0x8D03\n0x8FF8\t0x21910\n0x8FF9\t0x8CDB\n0x8FFA\t0x705C\n0x8FFB\t0x8D11\n0x8FFC\t0x24CC9\n0x8FFD\t0x3ED0\n0x9040\t0x8DA9\n0x9041\t0x28002\n0x9042\t0x21014\n0x9043\t0x2498A\n0x9044\t0x3B7C\n0x9045\t0x281BC\n0x9046\t0x2710C\n0x9047\t0x7AE7\n0x9048\t0x8EAD\n0x9049\t0x8EB6\n0x904A\t0x8EC3\n0x904B\t0x92D4\n0x904C\t0x8F19\n0x904D\t0x8F2D\n0x904E\t0x28365\n0x904F\t0x28412\n0x9050\t0x8FA5\n0x9051\t0x9303\n0x9052\t0x2A29F\n0x9053\t0x20A50\n0x9054\t0x8FB3\n0x9055\t0x492A\n0x9056\t0x289DE\n0x9057\t0x2853D\n0x9058\t0x23DBB\n0x9059\t0x5EF8\n0x905A\t0x23262\n0x905B\t0x8FF9\n0x905C\t0x2A014\n0x905D\t0x286BC\n0x905E\t0x28501\n0x905F\t0x22325\n0x9060\t0x3980\n0x9061\t0x26ED7\n0x9062\t0x9037\n0x9063\t0x2853C\n0x9064\t0x27ABE\n0x9065\t0x9061\n0x9066\t0x2856C\n0x9067\t0x2860B\n0x9068\t0x90A8\n0x9069\t0x28713\n0x906A\t0x90C4\n0x906B\t0x286E6\n0x906C\t0x90AE\n0x906E\t0x9167\n0x906F\t0x3AF0\n0x9070\t0x91A9\n0x9071\t0x91C4\n0x9072\t0x7CAC\n0x9073\t0x28933\n0x9074\t0x21E89\n0x9075\t0x920E\n0x9076\t0x6C9F\n0x9077\t0x9241\n0x9078\t0x9262\n0x9079\t0x255B9\n0x907B\t0x28AC6\n0x907C\t0x23C9B\n0x907D\t0x28B0C\n0x907E\t0x255DB\n0x90A1\t0x20D31\n0x90A2\t0x932C\n0x90A3\t0x936B\n0x90A4\t0x28AE1\n0x90A5\t0x28BEB\n0x90A6\t0x708F\n0x90A7\t0x5AC3\n0x90A8\t0x28AE2\n0x90A9\t0x28AE5\n0x90AA\t0x4965\n0x90AB\t0x9244\n0x90AC\t0x28BEC\n0x90AD\t0x28C39\n0x90AE\t0x28BFF\n0x90AF\t0x9373\n0x90B0\t0x945B\n0x90B1\t0x8EBC\n0x90B2\t0x9585\n0x90B3\t0x95A6\n0x90B4\t0x9426\n0x90B5\t0x95A0\n0x90B6\t0x6FF6\n0x90B7\t0x42B9\n0x90B8\t0x2267A\n0x90B9\t0x286D8\n0x90BA\t0x2127C\n0x90BB\t0x23E2E\n0x90BC\t0x49DF\n0x90BD\t0x6C1C\n0x90BE\t0x967B\n0x90BF\t0x9696\n0x90C0\t0x416C\n0x90C1\t0x96A3\n0x90C2\t0x26ED5\n0x90C3\t0x61DA\n0x90C4\t0x96B6\n0x90C5\t0x78F5\n0x90C6\t0x28AE0\n0x90C7\t0x96BD\n0x90C8\t0x53CC\n0x90C9\t0x49A1\n0x90CA\t0x26CB8\n0x90CB\t0x20274\n0x90CC\t0x26410\n0x90CD\t0x290AF\n0x90CE\t0x290E5\n0x90CF\t0x24AD1\n0x90D0\t0x21915\n0x90D1\t0x2330A\n0x90D2\t0x9731\n0x90D3\t0x8642\n0x90D4\t0x9736\n0x90D5\t0x4A0F\n0x90D6\t0x453D\n0x90D7\t0x4585\n0x90D8\t0x24AE9\n0x90D9\t0x7075\n0x90DA\t0x5B41\n0x90DB\t0x971B\n0x90DD\t0x291D5\n0x90DE\t0x9757\n0x90DF\t0x5B4A\n0x90E0\t0x291EB\n0x90E1\t0x975F\n0x90E2\t0x9425\n0x90E3\t0x50D0\n0x90E4\t0x230B7\n0x90E5\t0x230BC\n0x90E6\t0x9789\n0x90E7\t0x979F\n0x90E8\t0x97B1\n0x90E9\t0x97BE\n0x90EA\t0x97C0\n0x90EB\t0x97D2\n0x90EC\t0x97E0\n0x90ED\t0x2546C\n0x90EE\t0x97EE\n0x90EF\t0x741C\n0x90F0\t0x29433\n0x90F2\t0x97F5\n0x90F3\t0x2941D\n0x90F4\t0x2797A\n0x90F5\t0x4AD1\n0x90F6\t0x9834\n0x90F7\t0x9833\n0x90F8\t0x984B\n0x90F9\t0x9866\n0x90FA\t0x3B0E\n0x90FB\t0x27175\n0x90FC\t0x3D51\n0x90FD\t0x20630\n0x90FE\t0x2415C\n0x9140\t0x25706\n0x9141\t0x98CA\n0x9142\t0x98B7\n0x9143\t0x98C8\n0x9144\t0x98C7\n0x9145\t0x4AFF\n0x9146\t0x26D27\n0x9147\t0x216D3\n0x9148\t0x55B0\n0x9149\t0x98E1\n0x914A\t0x98E6\n0x914B\t0x98EC\n0x914C\t0x9378\n0x914D\t0x9939\n0x914E\t0x24A29\n0x914F\t0x4B72\n0x9150\t0x29857\n0x9151\t0x29905\n0x9152\t0x99F5\n0x9153\t0x9A0C\n0x9154\t0x9A3B\n0x9155\t0x9A10\n0x9156\t0x9A58\n0x9157\t0x25725\n0x9158\t0x36C4\n0x9159\t0x290B1\n0x915A\t0x29BD5\n0x915B\t0x9AE0\n0x915C\t0x9AE2\n0x915D\t0x29B05\n0x915E\t0x9AF4\n0x915F\t0x4C0E\n0x9160\t0x9B14\n0x9161\t0x9B2D\n0x9162\t0x28600\n0x9163\t0x5034\n0x9164\t0x9B34\n0x9165\t0x269A8\n0x9166\t0x38C3\n0x9167\t0x2307D\n0x9168\t0x9B50\n0x9169\t0x9B40\n0x916A\t0x29D3E\n0x916B\t0x5A45\n0x916C\t0x21863\n0x916D\t0x9B8E\n0x916E\t0x2424B\n0x916F\t0x9C02\n0x9170\t0x9BFF\n0x9171\t0x9C0C\n0x9172\t0x29E68\n0x9173\t0x9DD4\n0x9174\t0x29FB7\n0x9175\t0x2A192\n0x9176\t0x2A1AB\n0x9177\t0x2A0E1\n0x9178\t0x2A123\n0x9179\t0x2A1DF\n0x917A\t0x9D7E\n0x917B\t0x9D83\n0x917C\t0x2A134\n0x917D\t0x9E0E\n0x917E\t0x6888\n0x91A1\t0x9DC4\n0x91A2\t0x2215B\n0x91A3\t0x2A193\n0x91A4\t0x2A220\n0x91A5\t0x2193B\n0x91A6\t0x2A233\n0x91A7\t0x9D39\n0x91A8\t0x2A0B9\n0x91A9\t0x2A2B4\n0x91AA\t0x9E90\n0x91AB\t0x9E95\n0x91AC\t0x9E9E\n0x91AD\t0x9EA2\n0x91AE\t0x4D34\n0x91AF\t0x9EAA\n0x91B0\t0x9EAF\n0x91B1\t0x24364\n0x91B2\t0x9EC1\n0x91B3\t0x3B60\n0x91B4\t0x39E5\n0x91B5\t0x3D1D\n0x91B6\t0x4F32\n0x91B7\t0x37BE\n0x91B8\t0x28C2B\n0x91B9\t0x9F02\n0x91BA\t0x9F08\n0x91BB\t0x4B96\n0x91BC\t0x9424\n0x91BD\t0x26DA2\n0x91BE\t0x9F17\n0x91C0\t0x9F39\n0x91C1\t0x569F\n0x91C2\t0x568A\n0x91C3\t0x9F45\n0x91C4\t0x99B8\n0x91C5\t0x2908B\n0x91C6\t0x97F2\n0x91C7\t0x847F\n0x91C8\t0x9F62\n0x91C9\t0x9F69\n0x91CA\t0x7ADC\n0x91CB\t0x9F8E\n0x91CC\t0x7216\n0x91CD\t0x4BBE\n0x91CE\t0x24975\n0x91CF\t0x249BB\n0x91D0\t0x7177\n0x91D1\t0x249F8\n0x91D2\t0x24348\n0x91D3\t0x24A51\n0x91D4\t0x739E\n0x91D5\t0x28BDA\n0x91D6\t0x218FA\n0x91D7\t0x799F\n0x91D8\t0x2897E\n0x91D9\t0x28E36\n0x91DA\t0x9369\n0x91DB\t0x93F3\n0x91DC\t0x28A44\n0x91DD\t0x92EC\n0x91DE\t0x9381\n0x91DF\t0x93CB\n0x91E0\t0x2896C\n0x91E1\t0x244B9\n0x91E2\t0x7217\n0x91E3\t0x3EEB\n0x91E4\t0x7772\n0x91E5\t0x7A43\n0x91E6\t0x70D0\n0x91E7\t0x24473\n0x91E8\t0x243F8\n0x91E9\t0x717E\n0x91EA\t0x217EF\n0x91EB\t0x70A3\n0x91EC\t0x218BE\n0x91ED\t0x23599\n0x91EE\t0x3EC7\n0x91EF\t0x21885\n0x91F0\t0x2542F\n0x91F1\t0x217F8\n0x91F2\t0x3722\n0x91F3\t0x216FB\n0x91F4\t0x21839\n0x91F5\t0x36E1\n0x91F6\t0x21774\n0x91F7\t0x218D1\n0x91F8\t0x25F4B\n0x91F9\t0x3723\n0x91FA\t0x216C0\n0x91FB\t0x575B\n0x91FC\t0x24A25\n0x91FD\t0x213FE\n0x91FE\t0x212A8\n0x9240\t0x213C6\n0x9241\t0x214B6\n0x9242\t0x8503\n0x9243\t0x236A6\n0x9245\t0x8455\n0x9246\t0x24994\n0x9247\t0x27165\n0x9248\t0x23E31\n0x9249\t0x2555C\n0x924A\t0x23EFB\n0x924B\t0x27052\n0x924C\t0x44F4\n0x924D\t0x236EE\n0x924E\t0x2999D\n0x924F\t0x26F26\n0x9250\t0x67F9\n0x9251\t0x3733\n0x9252\t0x3C15\n0x9253\t0x3DE7\n0x9254\t0x586C\n0x9255\t0x21922\n0x9256\t0x6810\n0x9257\t0x4057\n0x9258\t0x2373F\n0x9259\t0x240E1\n0x925A\t0x2408B\n0x925B\t0x2410F\n0x925C\t0x26C21\n0x925D\t0x54CB\n0x925E\t0x569E\n0x925F\t0x266B1\n0x9260\t0x5692\n0x9261\t0x20FDF\n0x9262\t0x20BA8\n0x9263\t0x20E0D\n0x9264\t0x93C6\n0x9265\t0x28B13\n0x9266\t0x939C\n0x9267\t0x4EF8\n0x9268\t0x512B\n0x9269\t0x3819\n0x926A\t0x24436\n0x926B\t0x4EBC\n0x926C\t0x20465\n0x926D\t0x2037F\n0x926E\t0x4F4B\n0x926F\t0x4F8A\n0x9270\t0x25651\n0x9271\t0x5A68\n0x9272\t0x201AB\n0x9273\t0x203CB\n0x9274\t0x3999\n0x9275\t0x2030A\n0x9276\t0x20414\n0x9277\t0x3435\n0x9278\t0x4F29\n0x9279\t0x202C0\n0x927A\t0x28EB3\n0x927B\t0x20275\n0x927C\t0x8ADA\n0x927D\t0x2020C\n0x927E\t0x4E98\n0x92A1\t0x50CD\n0x92A2\t0x510D\n0x92A3\t0x4FA2\n0x92A4\t0x4F03\n0x92A5\t0x24A0E\n0x92A6\t0x23E8A\n0x92A7\t0x4F42\n0x92A8\t0x502E\n0x92A9\t0x506C\n0x92AA\t0x5081\n0x92AB\t0x4FCC\n0x92AC\t0x4FE5\n0x92AD\t0x5058\n0x92AE\t0x50FC\n0x92B3\t0x6E76\n0x92B4\t0x23595\n0x92B5\t0x23E39\n0x92B6\t0x23EBF\n0x92B7\t0x6D72\n0x92B8\t0x21884\n0x92B9\t0x23E89\n0x92BA\t0x51A8\n0x92BB\t0x51C3\n0x92BC\t0x205E0\n0x92BD\t0x44DD\n0x92BE\t0x204A3\n0x92BF\t0x20492\n0x92C0\t0x20491\n0x92C1\t0x8D7A\n0x92C2\t0x28A9C\n0x92C3\t0x2070E\n0x92C4\t0x5259\n0x92C5\t0x52A4\n0x92C6\t0x20873\n0x92C7\t0x52E1\n0x92C9\t0x467A\n0x92CA\t0x718C\n0x92CB\t0x2438C\n0x92CC\t0x20C20\n0x92CD\t0x249AC\n0x92CE\t0x210E4\n0x92CF\t0x69D1\n0x92D0\t0x20E1D\n0x92D2\t0x3EDE\n0x92D3\t0x7499\n0x92D4\t0x7414\n0x92D5\t0x7456\n0x92D6\t0x7398\n0x92D7\t0x4B8E\n0x92D8\t0x24ABC\n0x92D9\t0x2408D\n0x92DA\t0x53D0\n0x92DB\t0x3584\n0x92DC\t0x720F\n0x92DD\t0x240C9\n0x92DE\t0x55B4\n0x92DF\t0x20345\n0x92E0\t0x54CD\n0x92E1\t0x20BC6\n0x92E2\t0x571D\n0x92E3\t0x925D\n0x92E4\t0x96F4\n0x92E5\t0x9366\n0x92E6\t0x57DD\n0x92E7\t0x578D\n0x92E8\t0x577F\n0x92E9\t0x363E\n0x92EA\t0x58CB\n0x92EB\t0x5A99\n0x92EC\t0x28A46\n0x92ED\t0x216FA\n0x92EE\t0x2176F\n0x92EF\t0x21710\n0x92F0\t0x5A2C\n0x92F1\t0x59B8\n0x92F2\t0x928F\n0x92F3\t0x5A7E\n0x92F4\t0x5ACF\n0x92F5\t0x5A12\n0x92F6\t0x25946\n0x92F7\t0x219F3\n0x92F8\t0x21861\n0x92F9\t0x24295\n0x92FA\t0x36F5\n0x92FB\t0x6D05\n0x92FC\t0x7443\n0x92FD\t0x5A21\n0x92FE\t0x25E83\n0x9340\t0x5A81\n0x9341\t0x28BD7\n0x9342\t0x20413\n0x9343\t0x93E0\n0x9344\t0x748C\n0x9345\t0x21303\n0x9346\t0x7105\n0x9347\t0x4972\n0x9348\t0x9408\n0x9349\t0x289FB\n0x934A\t0x93BD\n0x934B\t0x37A0\n0x934C\t0x5C1E\n0x934D\t0x5C9E\n0x934E\t0x5E5E\n0x934F\t0x5E48\n0x9350\t0x21996\n0x9351\t0x2197C\n0x9352\t0x23AEE\n0x9353\t0x5ECD\n0x9354\t0x5B4F\n0x9355\t0x21903\n0x9356\t0x21904\n0x9357\t0x3701\n0x9358\t0x218A0\n0x9359\t0x36DD\n0x935A\t0x216FE\n0x935B\t0x36D3\n0x935C\t0x812A\n0x935D\t0x28A47\n0x935E\t0x21DBA\n0x935F\t0x23472\n0x9360\t0x289A8\n0x9361\t0x5F0C\n0x9362\t0x5F0E\n0x9363\t0x21927\n0x9364\t0x217AB\n0x9365\t0x5A6B\n0x9366\t0x2173B\n0x9367\t0x5B44\n0x9368\t0x8614\n0x9369\t0x275FD\n0x936A\t0x8860\n0x936B\t0x607E\n0x936C\t0x22860\n0x936D\t0x2262B\n0x936E\t0x5FDB\n0x936F\t0x3EB8\n0x9370\t0x225AF\n0x9371\t0x225BE\n0x9372\t0x29088\n0x9373\t0x26F73\n0x9374\t0x61C0\n0x9375\t0x2003E\n0x9376\t0x20046\n0x9377\t0x2261B\n0x9378\t0x6199\n0x9379\t0x6198\n0x937A\t0x6075\n0x937B\t0x22C9B\n0x937C\t0x22D07\n0x937D\t0x246D4\n0x937E\t0x2914D\n0x93A1\t0x6471\n0x93A2\t0x24665\n0x93A3\t0x22B6A\n0x93A4\t0x3A29\n0x93A5\t0x22B22\n0x93A6\t0x23450\n0x93A7\t0x298EA\n0x93A8\t0x22E78\n0x93A9\t0x6337\n0x93AA\t0x2A45B\n0x93AB\t0x64B6\n0x93AC\t0x6331\n0x93AD\t0x63D1\n0x93AE\t0x249E3\n0x93AF\t0x22D67\n0x93B0\t0x62A4\n0x93B1\t0x22CA1\n0x93B2\t0x643B\n0x93B3\t0x656B\n0x93B4\t0x6972\n0x93B5\t0x3BF4\n0x93B6\t0x2308E\n0x93B7\t0x232AD\n0x93B8\t0x24989\n0x93B9\t0x232AB\n0x93BA\t0x550D\n0x93BB\t0x232E0\n0x93BC\t0x218D9\n0x93BD\t0x2943F\n0x93BE\t0x66CE\n0x93BF\t0x23289\n0x93C0\t0x231B3\n0x93C1\t0x3AE0\n0x93C2\t0x4190\n0x93C3\t0x25584\n0x93C4\t0x28B22\n0x93C5\t0x2558F\n0x93C6\t0x216FC\n0x93C7\t0x2555B\n0x93C8\t0x25425\n0x93C9\t0x78EE\n0x93CA\t0x23103\n0x93CB\t0x2182A\n0x93CC\t0x23234\n0x93CD\t0x3464\n0x93CE\t0x2320F\n0x93CF\t0x23182\n0x93D0\t0x242C9\n0x93D1\t0x668E\n0x93D2\t0x26D24\n0x93D3\t0x666B\n0x93D4\t0x4B93\n0x93D5\t0x6630\n0x93D6\t0x27870\n0x93D7\t0x21DEB\n0x93D8\t0x6663\n0x93D9\t0x232D2\n0x93DA\t0x232E1\n0x93DB\t0x661E\n0x93DC\t0x25872\n0x93DD\t0x38D1\n0x93DE\t0x2383A\n0x93DF\t0x237BC\n0x93E0\t0x3B99\n0x93E1\t0x237A2\n0x93E2\t0x233FE\n0x93E3\t0x74D0\n0x93E4\t0x3B96\n0x93E5\t0x678F\n0x93E6\t0x2462A\n0x93E7\t0x68B6\n0x93E8\t0x681E\n0x93E9\t0x3BC4\n0x93EA\t0x6ABE\n0x93EB\t0x3863\n0x93EC\t0x237D5\n0x93ED\t0x24487\n0x93EE\t0x6A33\n0x93EF\t0x6A52\n0x93F0\t0x6AC9\n0x93F1\t0x6B05\n0x93F2\t0x21912\n0x93F3\t0x6511\n0x93F4\t0x6898\n0x93F5\t0x6A4C\n0x93F6\t0x3BD7\n0x93F7\t0x6A7A\n0x93F8\t0x6B57\n0x93F9\t0x23FC0\n0x93FA\t0x23C9A\n0x93FB\t0x93A0\n0x93FC\t0x92F2\n0x93FD\t0x28BEA\n0x93FE\t0x28ACB\n0x9440\t0x9289\n0x9441\t0x2801E\n0x9442\t0x289DC\n0x9443\t0x9467\n0x9444\t0x6DA5\n0x9445\t0x6F0B\n0x9446\t0x249EC\n0x9448\t0x23F7F\n0x9449\t0x3D8F\n0x944A\t0x6E04\n0x944B\t0x2403C\n0x944C\t0x5A3D\n0x944D\t0x6E0A\n0x944E\t0x5847\n0x944F\t0x6D24\n0x9450\t0x7842\n0x9451\t0x713B\n0x9452\t0x2431A\n0x9453\t0x24276\n0x9454\t0x70F1\n0x9455\t0x7250\n0x9456\t0x7287\n0x9457\t0x7294\n0x9458\t0x2478F\n0x9459\t0x24725\n0x945A\t0x5179\n0x945B\t0x24AA4\n0x945C\t0x205EB\n0x945D\t0x747A\n0x945E\t0x23EF8\n0x945F\t0x2365F\n0x9460\t0x24A4A\n0x9461\t0x24917\n0x9462\t0x25FE1\n0x9463\t0x3F06\n0x9464\t0x3EB1\n0x9465\t0x24ADF\n0x9466\t0x28C23\n0x9467\t0x23F35\n0x9468\t0x60A7\n0x9469\t0x3EF3\n0x946A\t0x74CC\n0x946B\t0x743C\n0x946C\t0x9387\n0x946D\t0x7437\n0x946E\t0x449F\n0x946F\t0x26DEA\n0x9470\t0x4551\n0x9471\t0x7583\n0x9472\t0x3F63\n0x9473\t0x24CD9\n0x9474\t0x24D06\n0x9475\t0x3F58\n0x9476\t0x7555\n0x9477\t0x7673\n0x9478\t0x2A5C6\n0x9479\t0x3B19\n0x947A\t0x7468\n0x947B\t0x28ACC\n0x947C\t0x249AB\n0x947D\t0x2498E\n0x947E\t0x3AFB\n0x94A1\t0x3DCD\n0x94A2\t0x24A4E\n0x94A3\t0x3EFF\n0x94A4\t0x249C5\n0x94A5\t0x248F3\n0x94A6\t0x91FA\n0x94A7\t0x5732\n0x94A8\t0x9342\n0x94A9\t0x28AE3\n0x94AA\t0x21864\n0x94AB\t0x50DF\n0x94AC\t0x25221\n0x94AD\t0x251E7\n0x94AE\t0x7778\n0x94AF\t0x23232\n0x94B0\t0x770E\n0x94B1\t0x770F\n0x94B2\t0x777B\n0x94B3\t0x24697\n0x94B4\t0x23781\n0x94B5\t0x3A5E\n0x94B6\t0x248F0\n0x94B7\t0x7438\n0x94B8\t0x749B\n0x94B9\t0x3EBF\n0x94BA\t0x24ABA\n0x94BB\t0x24AC7\n0x94BC\t0x40C8\n0x94BD\t0x24A96\n0x94BE\t0x261AE\n0x94BF\t0x9307\n0x94C0\t0x25581\n0x94C1\t0x781E\n0x94C2\t0x788D\n0x94C3\t0x7888\n0x94C4\t0x78D2\n0x94C5\t0x73D0\n0x94C6\t0x7959\n0x94C7\t0x27741\n0x94C8\t0x256E3\n0x94C9\t0x410E\n0x94CB\t0x8496\n0x94CC\t0x79A5\n0x94CD\t0x6A2D\n0x94CE\t0x23EFA\n0x94CF\t0x7A3A\n0x94D0\t0x79F4\n0x94D1\t0x416E\n0x94D2\t0x216E6\n0x94D3\t0x4132\n0x94D4\t0x9235\n0x94D5\t0x79F1\n0x94D6\t0x20D4C\n0x94D7\t0x2498C\n0x94D8\t0x20299\n0x94D9\t0x23DBA\n0x94DA\t0x2176E\n0x94DB\t0x3597\n0x94DC\t0x556B\n0x94DD\t0x3570\n0x94DE\t0x36AA\n0x94DF\t0x201D4\n0x94E0\t0x20C0D\n0x94E1\t0x7AE2\n0x94E2\t0x5A59\n0x94E3\t0x226F5\n0x94E4\t0x25AAF\n0x94E5\t0x25A9C\n0x94E6\t0x5A0D\n0x94E7\t0x2025B\n0x94E8\t0x78F0\n0x94E9\t0x5A2A\n0x94EA\t0x25BC6\n0x94EB\t0x7AFE\n0x94EC\t0x41F9\n0x94ED\t0x7C5D\n0x94EE\t0x7C6D\n0x94EF\t0x4211\n0x94F0\t0x25BB3\n0x94F1\t0x25EBC\n0x94F2\t0x25EA6\n0x94F3\t0x7CCD\n0x94F4\t0x249F9\n0x94F5\t0x217B0\n0x94F6\t0x7C8E\n0x94F7\t0x7C7C\n0x94F8\t0x7CAE\n0x94F9\t0x6AB2\n0x94FA\t0x7DDC\n0x94FB\t0x7E07\n0x94FC\t0x7DD3\n0x94FD\t0x7F4E\n0x94FE\t0x26261\n0x9540\t0x2615C\n0x9541\t0x27B48\n0x9542\t0x7D97\n0x9543\t0x25E82\n0x9544\t0x426A\n0x9545\t0x26B75\n0x9546\t0x20916\n0x9547\t0x67D6\n0x9548\t0x2004E\n0x9549\t0x235CF\n0x954A\t0x57C4\n0x954B\t0x26412\n0x954C\t0x263F8\n0x954D\t0x24962\n0x954E\t0x7FDD\n0x954F\t0x7B27\n0x9550\t0x2082C\n0x9551\t0x25AE9\n0x9552\t0x25D43\n0x9553\t0x7B0C\n0x9554\t0x25E0E\n0x9555\t0x99E6\n0x9556\t0x8645\n0x9557\t0x9A63\n0x9558\t0x6A1C\n0x9559\t0x2343F\n0x955A\t0x39E2\n0x955B\t0x249F7\n0x955C\t0x265AD\n0x955D\t0x9A1F\n0x955E\t0x265A0\n0x955F\t0x8480\n0x9560\t0x27127\n0x9561\t0x26CD1\n0x9562\t0x44EA\n0x9563\t0x8137\n0x9564\t0x4402\n0x9565\t0x80C6\n0x9566\t0x8109\n0x9567\t0x8142\n0x9568\t0x267B4\n0x9569\t0x98C3\n0x956A\t0x26A42\n0x956B\t0x8262\n0x956C\t0x8265\n0x956D\t0x26A51\n0x956E\t0x8453\n0x956F\t0x26DA7\n0x9570\t0x8610\n0x9571\t0x2721B\n0x9572\t0x5A86\n0x9573\t0x417F\n0x9574\t0x21840\n0x9575\t0x5B2B\n0x9576\t0x218A1\n0x9577\t0x5AE4\n0x9578\t0x218D8\n0x9579\t0x86A0\n0x957A\t0x2F9BC\n0x957B\t0x23D8F\n0x957C\t0x882D\n0x957D\t0x27422\n0x957E\t0x5A02\n0x95A1\t0x886E\n0x95A2\t0x4F45\n0x95A3\t0x8887\n0x95A4\t0x88BF\n0x95A5\t0x88E6\n0x95A6\t0x8965\n0x95A7\t0x894D\n0x95A8\t0x25683\n0x95A9\t0x8954\n0x95AA\t0x27785\n0x95AB\t0x27784\n0x95AC\t0x28BF5\n0x95AD\t0x28BD9\n0x95AE\t0x28B9C\n0x95AF\t0x289F9\n0x95B0\t0x3EAD\n0x95B1\t0x84A3\n0x95B2\t0x46F5\n0x95B3\t0x46CF\n0x95B4\t0x37F2\n0x95B5\t0x8A3D\n0x95B6\t0x8A1C\n0x95B7\t0x29448\n0x95B8\t0x5F4D\n0x95B9\t0x922B\n0x95BA\t0x24284\n0x95BB\t0x65D4\n0x95BC\t0x7129\n0x95BD\t0x70C4\n0x95BE\t0x21845\n0x95BF\t0x9D6D\n0x95C0\t0x8C9F\n0x95C1\t0x8CE9\n0x95C2\t0x27DDC\n0x95C3\t0x599A\n0x95C4\t0x77C3\n0x95C5\t0x59F0\n0x95C6\t0x436E\n0x95C7\t0x36D4\n0x95C8\t0x8E2A\n0x95C9\t0x8EA7\n0x95CA\t0x24C09\n0x95CB\t0x8F30\n0x95CC\t0x8F4A\n0x95CD\t0x42F4\n0x95CE\t0x6C58\n0x95CF\t0x6FBB\n0x95D0\t0x22321\n0x95D1\t0x489B\n0x95D2\t0x6F79\n0x95D3\t0x6E8B\n0x95D4\t0x217DA\n0x95D5\t0x9BE9\n0x95D6\t0x36B5\n0x95D7\t0x2492F\n0x95D8\t0x90BB\n0x95DA\t0x5571\n0x95DB\t0x4906\n0x95DC\t0x91BB\n0x95DD\t0x9404\n0x95DE\t0x28A4B\n0x95DF\t0x4062\n0x95E0\t0x28AFC\n0x95E1\t0x9427\n0x95E2\t0x28C1D\n0x95E3\t0x28C3B\n0x95E4\t0x84E5\n0x95E5\t0x8A2B\n0x95E6\t0x9599\n0x95E7\t0x95A7\n0x95E8\t0x9597\n0x95E9\t0x9596\n0x95EA\t0x28D34\n0x95EB\t0x7445\n0x95EC\t0x3EC2\n0x95ED\t0x248FF\n0x95EE\t0x24A42\n0x95EF\t0x243EA\n0x95F0\t0x3EE7\n0x95F1\t0x23225\n0x95F2\t0x968F\n0x95F3\t0x28EE7\n0x95F4\t0x28E66\n0x95F5\t0x28E65\n0x95F6\t0x3ECC\n0x95F7\t0x249ED\n0x95F8\t0x24A78\n0x95F9\t0x23FEE\n0x95FA\t0x7412\n0x95FB\t0x746B\n0x95FC\t0x3EFC\n0x95FD\t0x9741\n0x95FE\t0x290B0\n0x9640\t0x6847\n0x9641\t0x4A1D\n0x9642\t0x29093\n0x9643\t0x257DF\n0x9645\t0x9368\n0x9646\t0x28989\n0x9647\t0x28C26\n0x9648\t0x28B2F\n0x9649\t0x263BE\n0x964A\t0x92BA\n0x964B\t0x5B11\n0x964C\t0x8B69\n0x964D\t0x493C\n0x964E\t0x73F9\n0x964F\t0x2421B\n0x9650\t0x979B\n0x9651\t0x9771\n0x9652\t0x9938\n0x9653\t0x20F26\n0x9654\t0x5DC1\n0x9655\t0x28BC5\n0x9656\t0x24AB2\n0x9657\t0x981F\n0x9658\t0x294DA\n0x9659\t0x92F6\n0x965A\t0x295D7\n0x965B\t0x91E5\n0x965C\t0x44C0\n0x965D\t0x28B50\n0x965E\t0x24A67\n0x965F\t0x28B64\n0x9660\t0x98DC\n0x9661\t0x28A45\n0x9662\t0x3F00\n0x9663\t0x922A\n0x9664\t0x4925\n0x9665\t0x8414\n0x9666\t0x993B\n0x9667\t0x994D\n0x9668\t0x27B06\n0x9669\t0x3DFD\n0x966A\t0x999B\n0x966B\t0x4B6F\n0x966C\t0x99AA\n0x966D\t0x9A5C\n0x966E\t0x28B65\n0x966F\t0x258C8\n0x9670\t0x6A8F\n0x9671\t0x9A21\n0x9672\t0x5AFE\n0x9673\t0x9A2F\n0x9674\t0x298F1\n0x9675\t0x4B90\n0x9676\t0x29948\n0x9677\t0x99BC\n0x9678\t0x4BBD\n0x9679\t0x4B97\n0x967A\t0x937D\n0x967B\t0x5872\n0x967C\t0x21302\n0x967D\t0x5822\n0x967E\t0x249B8\n0x96A1\t0x214E8\n0x96A2\t0x7844\n0x96A3\t0x2271F\n0x96A4\t0x23DB8\n0x96A5\t0x68C5\n0x96A6\t0x3D7D\n0x96A7\t0x9458\n0x96A8\t0x3927\n0x96A9\t0x6150\n0x96AA\t0x22781\n0x96AB\t0x2296B\n0x96AC\t0x6107\n0x96AD\t0x9C4F\n0x96AE\t0x9C53\n0x96AF\t0x9C7B\n0x96B0\t0x9C35\n0x96B1\t0x9C10\n0x96B2\t0x9B7F\n0x96B3\t0x9BCF\n0x96B4\t0x29E2D\n0x96B5\t0x9B9F\n0x96B6\t0x2A1F5\n0x96B7\t0x2A0FE\n0x96B8\t0x9D21\n0x96B9\t0x4CAE\n0x96BA\t0x24104\n0x96BB\t0x9E18\n0x96BC\t0x4CB0\n0x96BD\t0x9D0C\n0x96BE\t0x2A1B4\n0x96BF\t0x2A0ED\n0x96C0\t0x2A0F3\n0x96C1\t0x2992F\n0x96C2\t0x9DA5\n0x96C3\t0x84BD\n0x96C4\t0x26E12\n0x96C5\t0x26FDF\n0x96C6\t0x26B82\n0x96C7\t0x85FC\n0x96C8\t0x4533\n0x96C9\t0x26DA4\n0x96CA\t0x26E84\n0x96CB\t0x26DF0\n0x96CC\t0x8420\n0x96CD\t0x85EE\n0x96CE\t0x26E00\n0x96CF\t0x237D7\n0x96D0\t0x26064\n0x96D1\t0x79E2\n0x96D2\t0x2359C\n0x96D3\t0x23640\n0x96D4\t0x492D\n0x96D5\t0x249DE\n0x96D6\t0x3D62\n0x96D7\t0x93DB\n0x96D8\t0x92BE\n0x96D9\t0x9348\n0x96DA\t0x202BF\n0x96DB\t0x78B9\n0x96DC\t0x9277\n0x96DD\t0x944D\n0x96DE\t0x4FE4\n0x96DF\t0x3440\n0x96E0\t0x9064\n0x96E1\t0x2555D\n0x96E2\t0x783D\n0x96E3\t0x7854\n0x96E4\t0x78B6\n0x96E5\t0x784B\n0x96E6\t0x21757\n0x96E7\t0x231C9\n0x96E8\t0x24941\n0x96E9\t0x369A\n0x96EA\t0x4F72\n0x96EB\t0x6FDA\n0x96EC\t0x6FD9\n0x96EE\t0x701E\n0x96EF\t0x5414\n0x96F0\t0x241B5\n0x96F1\t0x57BB\n0x96F2\t0x58F3\n0x96F3\t0x578A\n0x96F4\t0x9D16\n0x96F5\t0x57D7\n0x96F6\t0x7134\n0x96F7\t0x34AF\n0x96F8\t0x241AC\n0x96F9\t0x71EB\n0x96FA\t0x26C40\n0x96FB\t0x24F97\n0x96FD\t0x217B5\n0x96FE\t0x28A49\n0x9740\t0x610C\n0x9741\t0x5ACE\n0x9742\t0x5A0B\n0x9743\t0x42BC\n0x9744\t0x24488\n0x9745\t0x372C\n0x9746\t0x4B7B\n0x9747\t0x289FC\n0x9748\t0x93BB\n0x9749\t0x93B8\n0x974A\t0x218D6\n0x974B\t0x20F1D\n0x974C\t0x8472\n0x974D\t0x26CC0\n0x974E\t0x21413\n0x974F\t0x242FA\n0x9750\t0x22C26\n0x9751\t0x243C1\n0x9752\t0x5994\n0x9753\t0x23DB7\n0x9754\t0x26741\n0x9755\t0x7DA8\n0x9756\t0x2615B\n0x9757\t0x260A4\n0x9758\t0x249B9\n0x9759\t0x2498B\n0x975A\t0x289FA\n0x975B\t0x92E5\n0x975C\t0x73E2\n0x975D\t0x3EE9\n0x975E\t0x74B4\n0x975F\t0x28B63\n0x9760\t0x2189F\n0x9761\t0x3EE1\n0x9762\t0x24AB3\n0x9763\t0x6AD8\n0x9764\t0x73F3\n0x9765\t0x73FB\n0x9766\t0x3ED6\n0x9767\t0x24A3E\n0x9768\t0x24A94\n0x9769\t0x217D9\n0x976A\t0x24A66\n0x976B\t0x203A7\n0x976C\t0x21424\n0x976D\t0x249E5\n0x976E\t0x7448\n0x976F\t0x24916\n0x9770\t0x70A5\n0x9771\t0x24976\n0x9772\t0x9284\n0x9773\t0x73E6\n0x9774\t0x935F\n0x9775\t0x204FE\n0x9776\t0x9331\n0x9777\t0x28ACE\n0x9778\t0x28A16\n0x9779\t0x9386\n0x977A\t0x28BE7\n0x977B\t0x255D5\n0x977C\t0x4935\n0x977D\t0x28A82\n0x977E\t0x716B\n0x97A1\t0x24943\n0x97A2\t0x20CFF\n0x97A3\t0x56A4\n0x97A4\t0x2061A\n0x97A5\t0x20BEB\n0x97A6\t0x20CB8\n0x97A7\t0x5502\n0x97A8\t0x79C4\n0x97A9\t0x217FA\n0x97AA\t0x7DFE\n0x97AB\t0x216C2\n0x97AC\t0x24A50\n0x97AD\t0x21852\n0x97AE\t0x452E\n0x97AF\t0x9401\n0x97B0\t0x370A\n0x97B1\t0x28AC0\n0x97B2\t0x249AD\n0x97B3\t0x59B0\n0x97B4\t0x218BF\n0x97B5\t0x21883\n0x97B6\t0x27484\n0x97B7\t0x5AA1\n0x97B8\t0x36E2\n0x97B9\t0x23D5B\n0x97BA\t0x36B0\n0x97BB\t0x925F\n0x97BC\t0x5A79\n0x97BD\t0x28A81\n0x97BE\t0x21862\n0x97BF\t0x9374\n0x97C0\t0x3CCD\n0x97C1\t0x20AB4\n0x97C2\t0x4A96\n0x97C3\t0x398A\n0x97C4\t0x50F4\n0x97C5\t0x3D69\n0x97C6\t0x3D4C\n0x97C7\t0x2139C\n0x97C8\t0x7175\n0x97C9\t0x42FB\n0x97CA\t0x28218\n0x97CB\t0x6E0F\n0x97CC\t0x290E4\n0x97CD\t0x44EB\n0x97CE\t0x6D57\n0x97CF\t0x27E4F\n0x97D0\t0x7067\n0x97D1\t0x6CAF\n0x97D2\t0x3CD6\n0x97D3\t0x23FED\n0x97D4\t0x23E2D\n0x97D5\t0x6E02\n0x97D6\t0x6F0C\n0x97D7\t0x3D6F\n0x97D8\t0x203F5\n0x97D9\t0x7551\n0x97DA\t0x36BC\n0x97DB\t0x34C8\n0x97DC\t0x4680\n0x97DD\t0x3EDA\n0x97DE\t0x4871\n0x97DF\t0x59C4\n0x97E0\t0x926E\n0x97E1\t0x493E\n0x97E2\t0x8F41\n0x97E3\t0x28C1C\n0x97E4\t0x26BC0\n0x97E5\t0x5812\n0x97E6\t0x57C8\n0x97E7\t0x36D6\n0x97E8\t0x21452\n0x97E9\t0x70FE\n0x97EA\t0x24362\n0x97EB\t0x24A71\n0x97EC\t0x22FE3\n0x97ED\t0x212B0\n0x97EE\t0x223BD\n0x97EF\t0x68B9\n0x97F0\t0x6967\n0x97F1\t0x21398\n0x97F2\t0x234E5\n0x97F3\t0x27BF4\n0x97F4\t0x236DF\n0x97F5\t0x28A83\n0x97F6\t0x237D6\n0x97F7\t0x233FA\n0x97F8\t0x24C9F\n0x97F9\t0x6A1A\n0x97FA\t0x236AD\n0x97FB\t0x26CB7\n0x97FC\t0x843E\n0x97FD\t0x44DF\n0x97FE\t0x44CE\n0x9840\t0x26D26\n0x9841\t0x26D51\n0x9842\t0x26C82\n0x9843\t0x26FDE\n0x9844\t0x6F17\n0x9845\t0x27109\n0x9846\t0x833D\n0x9847\t0x2173A\n0x9848\t0x83ED\n0x9849\t0x26C80\n0x984A\t0x27053\n0x984B\t0x217DB\n0x984C\t0x5989\n0x984D\t0x5A82\n0x984E\t0x217B3\n0x984F\t0x5A61\n0x9850\t0x5A71\n0x9851\t0x21905\n0x9852\t0x241FC\n0x9853\t0x372D\n0x9854\t0x59EF\n0x9855\t0x2173C\n0x9856\t0x36C7\n0x9857\t0x718E\n0x9858\t0x9390\n0x9859\t0x669A\n0x985A\t0x242A5\n0x985B\t0x5A6E\n0x985C\t0x5A2B\n0x985D\t0x24293\n0x985E\t0x6A2B\n0x985F\t0x23EF9\n0x9860\t0x27736\n0x9861\t0x2445B\n0x9862\t0x242CA\n0x9863\t0x711D\n0x9864\t0x24259\n0x9865\t0x289E1\n0x9866\t0x4FB0\n0x9867\t0x26D28\n0x9868\t0x5CC2\n0x9869\t0x244CE\n0x986A\t0x27E4D\n0x986B\t0x243BD\n0x986C\t0x6A0C\n0x986D\t0x24256\n0x986E\t0x21304\n0x986F\t0x70A6\n0x9870\t0x7133\n0x9871\t0x243E9\n0x9872\t0x3DA5\n0x9873\t0x6CDF\n0x9874\t0x2F825\n0x9875\t0x24A4F\n0x9876\t0x7E65\n0x9877\t0x59EB\n0x9878\t0x5D2F\n0x9879\t0x3DF3\n0x987A\t0x5F5C\n0x987B\t0x24A5D\n0x987C\t0x217DF\n0x987D\t0x7DA4\n0x987E\t0x8426\n0x98A1\t0x5485\n0x98A2\t0x23AFA\n0x98A3\t0x23300\n0x98A4\t0x20214\n0x98A5\t0x577E\n0x98A6\t0x208D5\n0x98A7\t0x20619\n0x98A8\t0x3FE5\n0x98A9\t0x21F9E\n0x98AA\t0x2A2B6\n0x98AB\t0x7003\n0x98AC\t0x2915B\n0x98AD\t0x5D70\n0x98AE\t0x738F\n0x98AF\t0x7CD3\n0x98B0\t0x28A59\n0x98B1\t0x29420\n0x98B2\t0x4FC8\n0x98B3\t0x7FE7\n0x98B4\t0x72CD\n0x98B5\t0x7310\n0x98B6\t0x27AF4\n0x98B7\t0x7338\n0x98B8\t0x7339\n0x98B9\t0x256F6\n0x98BA\t0x7341\n0x98BB\t0x7348\n0x98BC\t0x3EA9\n0x98BD\t0x27B18\n0x98BE\t0x906C\n0x98BF\t0x71F5\n0x98C0\t0x248F2\n0x98C1\t0x73E1\n0x98C2\t0x81F6\n0x98C3\t0x3ECA\n0x98C4\t0x770C\n0x98C5\t0x3ED1\n0x98C6\t0x6CA2\n0x98C7\t0x56FD\n0x98C8\t0x7419\n0x98C9\t0x741E\n0x98CA\t0x741F\n0x98CB\t0x3EE2\n0x98CC\t0x3EF0\n0x98CD\t0x3EF4\n0x98CE\t0x3EFA\n0x98CF\t0x74D3\n0x98D0\t0x3F0E\n0x98D1\t0x3F53\n0x98D2\t0x7542\n0x98D3\t0x756D\n0x98D4\t0x7572\n0x98D5\t0x758D\n0x98D6\t0x3F7C\n0x98D7\t0x75C8\n0x98D8\t0x75DC\n0x98D9\t0x3FC0\n0x98DA\t0x764D\n0x98DB\t0x3FD7\n0x98DC\t0x7674\n0x98DD\t0x3FDC\n0x98DE\t0x767A\n0x98DF\t0x24F5C\n0x98E0\t0x7188\n0x98E1\t0x5623\n0x98E2\t0x8980\n0x98E3\t0x5869\n0x98E4\t0x401D\n0x98E5\t0x7743\n0x98E6\t0x4039\n0x98E7\t0x6761\n0x98E8\t0x4045\n0x98E9\t0x35DB\n0x98EA\t0x7798\n0x98EB\t0x406A\n0x98EC\t0x406F\n0x98ED\t0x5C5E\n0x98EE\t0x77BE\n0x98EF\t0x77CB\n0x98F0\t0x58F2\n0x98F1\t0x7818\n0x98F2\t0x70B9\n0x98F3\t0x781C\n0x98F4\t0x40A8\n0x98F5\t0x7839\n0x98F6\t0x7847\n0x98F7\t0x7851\n0x98F8\t0x7866\n0x98F9\t0x8448\n0x98FA\t0x25535\n0x98FB\t0x7933\n0x98FC\t0x6803\n0x98FD\t0x7932\n0x98FE\t0x4103\n0x9940\t0x4109\n0x9941\t0x7991\n0x9942\t0x7999\n0x9943\t0x8FBB\n0x9944\t0x7A06\n0x9945\t0x8FBC\n0x9946\t0x4167\n0x9947\t0x7A91\n0x9948\t0x41B2\n0x9949\t0x7ABC\n0x994A\t0x8279\n0x994B\t0x41C4\n0x994C\t0x7ACF\n0x994D\t0x7ADB\n0x994E\t0x41CF\n0x994F\t0x4E21\n0x9950\t0x7B62\n0x9951\t0x7B6C\n0x9952\t0x7B7B\n0x9953\t0x7C12\n0x9954\t0x7C1B\n0x9955\t0x4260\n0x9956\t0x427A\n0x9957\t0x7C7B\n0x9958\t0x7C9C\n0x9959\t0x428C\n0x995A\t0x7CB8\n0x995B\t0x4294\n0x995C\t0x7CED\n0x995D\t0x8F93\n0x995E\t0x70C0\n0x995F\t0x20CCF\n0x9960\t0x7DCF\n0x9961\t0x7DD4\n0x9962\t0x7DD0\n0x9963\t0x7DFD\n0x9964\t0x7FAE\n0x9965\t0x7FB4\n0x9966\t0x729F\n0x9967\t0x4397\n0x9968\t0x8020\n0x9969\t0x8025\n0x996A\t0x7B39\n0x996B\t0x802E\n0x996C\t0x8031\n0x996D\t0x8054\n0x996E\t0x3DCC\n0x996F\t0x57B4\n0x9970\t0x70A0\n0x9971\t0x80B7\n0x9972\t0x80E9\n0x9973\t0x43ED\n0x9974\t0x810C\n0x9975\t0x732A\n0x9976\t0x810E\n0x9977\t0x8112\n0x9978\t0x7560\n0x9979\t0x8114\n0x997A\t0x4401\n0x997B\t0x3B39\n0x997C\t0x8156\n0x997D\t0x8159\n0x997E\t0x815A\n0x99A1\t0x4413\n0x99A2\t0x583A\n0x99A3\t0x817C\n0x99A4\t0x8184\n0x99A5\t0x4425\n0x99A6\t0x8193\n0x99A7\t0x442D\n0x99A8\t0x81A5\n0x99A9\t0x57EF\n0x99AA\t0x81C1\n0x99AB\t0x81E4\n0x99AC\t0x8254\n0x99AD\t0x448F\n0x99AE\t0x82A6\n0x99AF\t0x8276\n0x99B0\t0x82CA\n0x99B1\t0x82D8\n0x99B2\t0x82FF\n0x99B3\t0x44B0\n0x99B4\t0x8357\n0x99B5\t0x9669\n0x99B6\t0x698A\n0x99B7\t0x8405\n0x99B8\t0x70F5\n0x99B9\t0x8464\n0x99BA\t0x60E3\n0x99BB\t0x8488\n0x99BC\t0x4504\n0x99BD\t0x84BE\n0x99BE\t0x84E1\n0x99BF\t0x84F8\n0x99C0\t0x8510\n0x99C1\t0x8538\n0x99C2\t0x8552\n0x99C3\t0x453B\n0x99C4\t0x856F\n0x99C5\t0x8570\n0x99C6\t0x85E0\n0x99C7\t0x4577\n0x99C8\t0x8672\n0x99C9\t0x8692\n0x99CA\t0x86B2\n0x99CB\t0x86EF\n0x99CC\t0x9645\n0x99CD\t0x878B\n0x99CE\t0x4606\n0x99CF\t0x4617\n0x99D0\t0x88AE\n0x99D1\t0x88FF\n0x99D2\t0x8924\n0x99D3\t0x8947\n0x99D4\t0x8991\n0x99D5\t0x27967\n0x99D6\t0x8A29\n0x99D7\t0x8A38\n0x99D8\t0x8A94\n0x99D9\t0x8AB4\n0x99DA\t0x8C51\n0x99DB\t0x8CD4\n0x99DC\t0x8CF2\n0x99DD\t0x8D1C\n0x99DE\t0x4798\n0x99DF\t0x585F\n0x99E0\t0x8DC3\n0x99E1\t0x47ED\n0x99E2\t0x4EEE\n0x99E3\t0x8E3A\n0x99E4\t0x55D8\n0x99E5\t0x5754\n0x99E6\t0x8E71\n0x99E7\t0x55F5\n0x99E8\t0x8EB0\n0x99E9\t0x4837\n0x99EA\t0x8ECE\n0x99EB\t0x8EE2\n0x99EC\t0x8EE4\n0x99ED\t0x8EED\n0x99EE\t0x8EF2\n0x99EF\t0x8FB7\n0x99F0\t0x8FC1\n0x99F1\t0x8FCA\n0x99F2\t0x8FCC\n0x99F3\t0x9033\n0x99F4\t0x99C4\n0x99F5\t0x48AD\n0x99F6\t0x98E0\n0x99F7\t0x9213\n0x99F8\t0x491E\n0x99F9\t0x9228\n0x99FA\t0x9258\n0x99FB\t0x926B\n0x99FC\t0x92B1\n0x99FD\t0x92AE\n0x99FE\t0x92BF\n0x9A40\t0x92E3\n0x9A41\t0x92EB\n0x9A42\t0x92F3\n0x9A43\t0x92F4\n0x9A44\t0x92FD\n0x9A45\t0x9343\n0x9A46\t0x9384\n0x9A47\t0x93AD\n0x9A48\t0x4945\n0x9A49\t0x4951\n0x9A4A\t0x9EBF\n0x9A4B\t0x9417\n0x9A4C\t0x5301\n0x9A4D\t0x941D\n0x9A4E\t0x942D\n0x9A4F\t0x943E\n0x9A50\t0x496A\n0x9A51\t0x9454\n0x9A52\t0x9479\n0x9A53\t0x952D\n0x9A54\t0x95A2\n0x9A55\t0x49A7\n0x9A56\t0x95F4\n0x9A57\t0x9633\n0x9A58\t0x49E5\n0x9A59\t0x67A0\n0x9A5A\t0x4A24\n0x9A5B\t0x9740\n0x9A5C\t0x4A35\n0x9A5D\t0x97B2\n0x9A5E\t0x97C2\n0x9A5F\t0x5654\n0x9A60\t0x4AE4\n0x9A61\t0x60E8\n0x9A62\t0x98B9\n0x9A63\t0x4B19\n0x9A64\t0x98F1\n0x9A65\t0x5844\n0x9A66\t0x990E\n0x9A67\t0x9919\n0x9A68\t0x51B4\n0x9A69\t0x991C\n0x9A6A\t0x9937\n0x9A6B\t0x9942\n0x9A6C\t0x995D\n0x9A6D\t0x9962\n0x9A6E\t0x4B70\n0x9A6F\t0x99C5\n0x9A70\t0x4B9D\n0x9A71\t0x9A3C\n0x9A72\t0x9B0F\n0x9A73\t0x7A83\n0x9A74\t0x9B69\n0x9A75\t0x9B81\n0x9A76\t0x9BDD\n0x9A77\t0x9BF1\n0x9A78\t0x9BF4\n0x9A79\t0x4C6D\n0x9A7A\t0x9C20\n0x9A7B\t0x376F\n0x9A7C\t0x21BC2\n0x9A7D\t0x9D49\n0x9A7E\t0x9C3A\n0x9AA1\t0x9EFE\n0x9AA2\t0x5650\n0x9AA3\t0x9D93\n0x9AA4\t0x9DBD\n0x9AA5\t0x9DC0\n0x9AA6\t0x9DFC\n0x9AA7\t0x94F6\n0x9AA8\t0x8FB6\n0x9AA9\t0x9E7B\n0x9AAA\t0x9EAC\n0x9AAB\t0x9EB1\n0x9AAC\t0x9EBD\n0x9AAD\t0x9EC6\n0x9AAE\t0x94DC\n0x9AAF\t0x9EE2\n0x9AB0\t0x9EF1\n0x9AB1\t0x9EF8\n0x9AB2\t0x7AC8\n0x9AB3\t0x9F44\n0x9AB4\t0x20094\n0x9AB5\t0x202B7\n0x9AB6\t0x203A0\n0x9AB7\t0x691A\n0x9AB8\t0x94C3\n0x9AB9\t0x59AC\n0x9ABA\t0x204D7\n0x9ABB\t0x5840\n0x9ABC\t0x94C1\n0x9ABD\t0x37B9\n0x9ABE\t0x205D5\n0x9ABF\t0x20615\n0x9AC0\t0x20676\n0x9AC1\t0x216BA\n0x9AC2\t0x5757\n0x9AC3\t0x7173\n0x9AC4\t0x20AC2\n0x9AC5\t0x20ACD\n0x9AC6\t0x20BBF\n0x9AC7\t0x546A\n0x9AC8\t0x2F83B\n0x9AC9\t0x20BCB\n0x9ACA\t0x549E\n0x9ACB\t0x20BFB\n0x9ACC\t0x20C3B\n0x9ACD\t0x20C53\n0x9ACE\t0x20C65\n0x9ACF\t0x20C7C\n0x9AD0\t0x60E7\n0x9AD1\t0x20C8D\n0x9AD2\t0x567A\n0x9AD3\t0x20CB5\n0x9AD4\t0x20CDD\n0x9AD5\t0x20CED\n0x9AD6\t0x20D6F\n0x9AD7\t0x20DB2\n0x9AD8\t0x20DC8\n0x9AD9\t0x6955\n0x9ADA\t0x9C2F\n0x9ADB\t0x87A5\n0x9ADC\t0x20E04\n0x9ADD\t0x20E0E\n0x9ADE\t0x20ED7\n0x9ADF\t0x20F90\n0x9AE0\t0x20F2D\n0x9AE1\t0x20E73\n0x9AE2\t0x5C20\n0x9AE3\t0x20FBC\n0x9AE4\t0x5E0B\n0x9AE5\t0x2105C\n0x9AE6\t0x2104F\n0x9AE7\t0x21076\n0x9AE8\t0x671E\n0x9AE9\t0x2107B\n0x9AEA\t0x21088\n0x9AEB\t0x21096\n0x9AEC\t0x3647\n0x9AED\t0x210BF\n0x9AEE\t0x210D3\n0x9AEF\t0x2112F\n0x9AF0\t0x2113B\n0x9AF1\t0x5364\n0x9AF2\t0x84AD\n0x9AF3\t0x212E3\n0x9AF4\t0x21375\n0x9AF5\t0x21336\n0x9AF6\t0x8B81\n0x9AF7\t0x21577\n0x9AF8\t0x21619\n0x9AF9\t0x217C3\n0x9AFA\t0x217C7\n0x9AFB\t0x4E78\n0x9AFC\t0x70BB\n0x9AFD\t0x2182D\n0x9AFE\t0x2196A\n0x9B40\t0x21A2D\n0x9B41\t0x21A45\n0x9B42\t0x21C2A\n0x9B43\t0x21C70\n0x9B44\t0x21CAC\n0x9B45\t0x21EC8\n0x9B46\t0x62C3\n0x9B47\t0x21ED5\n0x9B48\t0x21F15\n0x9B49\t0x7198\n0x9B4A\t0x6855\n0x9B4B\t0x22045\n0x9B4C\t0x69E9\n0x9B4D\t0x36C8\n0x9B4E\t0x2227C\n0x9B4F\t0x223D7\n0x9B50\t0x223FA\n0x9B51\t0x2272A\n0x9B52\t0x22871\n0x9B53\t0x2294F\n0x9B54\t0x82FD\n0x9B55\t0x22967\n0x9B56\t0x22993\n0x9B57\t0x22AD5\n0x9B58\t0x89A5\n0x9B59\t0x22AE8\n0x9B5A\t0x8FA0\n0x9B5B\t0x22B0E\n0x9B5C\t0x97B8\n0x9B5D\t0x22B3F\n0x9B5E\t0x9847\n0x9B5F\t0x9ABD\n0x9B60\t0x22C4C\n0x9B62\t0x22C88\n0x9B63\t0x22CB7\n0x9B64\t0x25BE8\n0x9B65\t0x22D08\n0x9B66\t0x22D12\n0x9B67\t0x22DB7\n0x9B68\t0x22D95\n0x9B69\t0x22E42\n0x9B6A\t0x22F74\n0x9B6B\t0x22FCC\n0x9B6C\t0x23033\n0x9B6D\t0x23066\n0x9B6E\t0x2331F\n0x9B6F\t0x233DE\n0x9B70\t0x5FB1\n0x9B71\t0x6648\n0x9B72\t0x66BF\n0x9B73\t0x27A79\n0x9B74\t0x23567\n0x9B75\t0x235F3\n0x9B77\t0x249BA\n0x9B79\t0x2361A\n0x9B7A\t0x23716\n0x9B7C\t0x20346\n0x9B7D\t0x58B5\n0x9B7E\t0x670E\n0x9BA1\t0x6918\n0x9BA2\t0x23AA7\n0x9BA3\t0x27657\n0x9BA4\t0x25FE2\n0x9BA5\t0x23E11\n0x9BA6\t0x23EB9\n0x9BA7\t0x275FE\n0x9BA8\t0x2209A\n0x9BA9\t0x48D0\n0x9BAA\t0x4AB8\n0x9BAB\t0x24119\n0x9BAC\t0x28A9A\n0x9BAD\t0x242EE\n0x9BAE\t0x2430D\n0x9BAF\t0x2403B\n0x9BB0\t0x24334\n0x9BB1\t0x24396\n0x9BB2\t0x24A45\n0x9BB3\t0x205CA\n0x9BB4\t0x51D2\n0x9BB5\t0x20611\n0x9BB6\t0x599F\n0x9BB7\t0x21EA8\n0x9BB8\t0x3BBE\n0x9BB9\t0x23CFF\n0x9BBA\t0x24404\n0x9BBB\t0x244D6\n0x9BBC\t0x5788\n0x9BBD\t0x24674\n0x9BBE\t0x399B\n0x9BBF\t0x2472F\n0x9BC0\t0x285E8\n0x9BC1\t0x299C9\n0x9BC2\t0x3762\n0x9BC3\t0x221C3\n0x9BC4\t0x8B5E\n0x9BC5\t0x28B4E\n0x9BC7\t0x24812\n0x9BC8\t0x248FB\n0x9BC9\t0x24A15\n0x9BCA\t0x7209\n0x9BCB\t0x24AC0\n0x9BCC\t0x20C78\n0x9BCD\t0x5965\n0x9BCE\t0x24EA5\n0x9BCF\t0x24F86\n0x9BD0\t0x20779\n0x9BD1\t0x8EDA\n0x9BD2\t0x2502C\n0x9BD3\t0x528F\n0x9BD4\t0x573F\n0x9BD5\t0x7171\n0x9BD6\t0x25299\n0x9BD7\t0x25419\n0x9BD8\t0x23F4A\n0x9BD9\t0x24AA7\n0x9BDA\t0x55BC\n0x9BDB\t0x25446\n0x9BDC\t0x2546E\n0x9BDD\t0x26B52\n0x9BDF\t0x3473\n0x9BE0\t0x2553F\n0x9BE1\t0x27632\n0x9BE2\t0x2555E\n0x9BE3\t0x4718\n0x9BE4\t0x25562\n0x9BE5\t0x25566\n0x9BE6\t0x257C7\n0x9BE7\t0x2493F\n0x9BE8\t0x2585D\n0x9BE9\t0x5066\n0x9BEA\t0x34FB\n0x9BEB\t0x233CC\n0x9BED\t0x25903\n0x9BEE\t0x477C\n0x9BEF\t0x28948\n0x9BF0\t0x25AAE\n0x9BF1\t0x25B89\n0x9BF2\t0x25C06\n0x9BF3\t0x21D90\n0x9BF4\t0x57A1\n0x9BF5\t0x7151\n0x9BF7\t0x26102\n0x9BF8\t0x27C12\n0x9BF9\t0x9056\n0x9BFA\t0x261B2\n0x9BFB\t0x24F9A\n0x9BFC\t0x8B62\n0x9BFD\t0x26402\n0x9BFE\t0x2644A\n0x9C40\t0x5D5B\n0x9C41\t0x26BF7\n0x9C43\t0x26484\n0x9C44\t0x2191C\n0x9C45\t0x8AEA\n0x9C46\t0x249F6\n0x9C47\t0x26488\n0x9C48\t0x23FEF\n0x9C49\t0x26512\n0x9C4A\t0x4BC0\n0x9C4B\t0x265BF\n0x9C4C\t0x266B5\n0x9C4D\t0x2271B\n0x9C4E\t0x9465\n0x9C4F\t0x257E1\n0x9C50\t0x6195\n0x9C51\t0x5A27\n0x9C52\t0x2F8CD\n0x9C54\t0x56B9\n0x9C55\t0x24521\n0x9C56\t0x266FC\n0x9C57\t0x4E6A\n0x9C58\t0x24934\n0x9C59\t0x9656\n0x9C5A\t0x6D8F\n0x9C5B\t0x26CBD\n0x9C5C\t0x3618\n0x9C5D\t0x8977\n0x9C5E\t0x26799\n0x9C5F\t0x2686E\n0x9C60\t0x26411\n0x9C61\t0x2685E\n0x9C63\t0x268C7\n0x9C64\t0x7B42\n0x9C65\t0x290C0\n0x9C66\t0x20A11\n0x9C67\t0x26926\n0x9C69\t0x26939\n0x9C6A\t0x7A45\n0x9C6C\t0x269FA\n0x9C6D\t0x9A26\n0x9C6E\t0x26A2D\n0x9C6F\t0x365F\n0x9C70\t0x26469\n0x9C71\t0x20021\n0x9C72\t0x7983\n0x9C73\t0x26A34\n0x9C74\t0x26B5B\n0x9C75\t0x5D2C\n0x9C76\t0x23519\n0x9C78\t0x26B9D\n0x9C79\t0x46D0\n0x9C7A\t0x26CA4\n0x9C7B\t0x753B\n0x9C7C\t0x8865\n0x9C7D\t0x26DAE\n0x9C7E\t0x58B6\n0x9CA1\t0x371C\n0x9CA2\t0x2258D\n0x9CA3\t0x2704B\n0x9CA4\t0x271CD\n0x9CA5\t0x3C54\n0x9CA6\t0x27280\n0x9CA7\t0x27285\n0x9CA8\t0x9281\n0x9CA9\t0x2217A\n0x9CAA\t0x2728B\n0x9CAB\t0x9330\n0x9CAC\t0x272E6\n0x9CAD\t0x249D0\n0x9CAE\t0x6C39\n0x9CAF\t0x949F\n0x9CB0\t0x27450\n0x9CB1\t0x20EF8\n0x9CB2\t0x8827\n0x9CB3\t0x88F5\n0x9CB4\t0x22926\n0x9CB5\t0x28473\n0x9CB6\t0x217B1\n0x9CB7\t0x6EB8\n0x9CB8\t0x24A2A\n0x9CB9\t0x21820\n0x9CBA\t0x39A4\n0x9CBB\t0x36B9\n0x9CBE\t0x453F\n0x9CBF\t0x66B6\n0x9CC0\t0x29CAD\n0x9CC1\t0x298A4\n0x9CC2\t0x8943\n0x9CC3\t0x277CC\n0x9CC4\t0x27858\n0x9CC5\t0x56D6\n0x9CC6\t0x40DF\n0x9CC7\t0x2160A\n0x9CC8\t0x39A1\n0x9CC9\t0x2372F\n0x9CCA\t0x280E8\n0x9CCB\t0x213C5\n0x9CCC\t0x71AD\n0x9CCD\t0x8366\n0x9CCE\t0x279DD\n0x9CCF\t0x291A8\n0x9CD1\t0x4CB7\n0x9CD2\t0x270AF\n0x9CD3\t0x289AB\n0x9CD4\t0x279FD\n0x9CD5\t0x27A0A\n0x9CD6\t0x27B0B\n0x9CD7\t0x27D66\n0x9CD8\t0x2417A\n0x9CD9\t0x7B43\n0x9CDA\t0x797E\n0x9CDB\t0x28009\n0x9CDC\t0x6FB5\n0x9CDD\t0x2A2DF\n0x9CDE\t0x6A03\n0x9CDF\t0x28318\n0x9CE0\t0x53A2\n0x9CE1\t0x26E07\n0x9CE2\t0x93BF\n0x9CE3\t0x6836\n0x9CE4\t0x975D\n0x9CE5\t0x2816F\n0x9CE6\t0x28023\n0x9CE7\t0x269B5\n0x9CE8\t0x213ED\n0x9CE9\t0x2322F\n0x9CEA\t0x28048\n0x9CEB\t0x5D85\n0x9CEC\t0x28C30\n0x9CED\t0x28083\n0x9CEE\t0x5715\n0x9CEF\t0x9823\n0x9CF0\t0x28949\n0x9CF1\t0x5DAB\n0x9CF2\t0x24988\n0x9CF3\t0x65BE\n0x9CF4\t0x69D5\n0x9CF5\t0x53D2\n0x9CF6\t0x24AA5\n0x9CF7\t0x23F81\n0x9CF8\t0x3C11\n0x9CF9\t0x6736\n0x9CFA\t0x28090\n0x9CFB\t0x280F4\n0x9CFC\t0x2812E\n0x9CFD\t0x21FA1\n0x9CFE\t0x2814F\n0x9D40\t0x28189\n0x9D41\t0x281AF\n0x9D42\t0x2821A\n0x9D43\t0x28306\n0x9D44\t0x2832F\n0x9D45\t0x2838A\n0x9D46\t0x35CA\n0x9D47\t0x28468\n0x9D48\t0x286AA\n0x9D49\t0x48FA\n0x9D4A\t0x63E6\n0x9D4B\t0x28956\n0x9D4C\t0x7808\n0x9D4D\t0x9255\n0x9D4E\t0x289B8\n0x9D4F\t0x43F2\n0x9D50\t0x289E7\n0x9D51\t0x43DF\n0x9D52\t0x289E8\n0x9D53\t0x28B46\n0x9D54\t0x28BD4\n0x9D55\t0x59F8\n0x9D56\t0x28C09\n0x9D58\t0x28FC5\n0x9D59\t0x290EC\n0x9D5B\t0x29110\n0x9D5C\t0x2913C\n0x9D5D\t0x3DF7\n0x9D5E\t0x2915E\n0x9D5F\t0x24ACA\n0x9D60\t0x8FD0\n0x9D61\t0x728F\n0x9D62\t0x568B\n0x9D63\t0x294E7\n0x9D64\t0x295E9\n0x9D65\t0x295B0\n0x9D66\t0x295B8\n0x9D67\t0x29732\n0x9D68\t0x298D1\n0x9D69\t0x29949\n0x9D6A\t0x2996A\n0x9D6B\t0x299C3\n0x9D6C\t0x29A28\n0x9D6D\t0x29B0E\n0x9D6E\t0x29D5A\n0x9D6F\t0x29D9B\n0x9D70\t0x7E9F\n0x9D71\t0x29EF8\n0x9D72\t0x29F23\n0x9D73\t0x4CA4\n0x9D74\t0x9547\n0x9D75\t0x2A293\n0x9D76\t0x71A2\n0x9D77\t0x2A2FF\n0x9D78\t0x4D91\n0x9D79\t0x9012\n0x9D7A\t0x2A5CB\n0x9D7B\t0x4D9C\n0x9D7C\t0x20C9C\n0x9D7D\t0x8FBE\n0x9D7E\t0x55C1\n0x9DA1\t0x8FBA\n0x9DA2\t0x224B0\n0x9DA3\t0x8FB9\n0x9DA4\t0x24A93\n0x9DA5\t0x4509\n0x9DA6\t0x7E7F\n0x9DA7\t0x6F56\n0x9DA8\t0x6AB1\n0x9DA9\t0x4EEA\n0x9DAA\t0x34E4\n0x9DAB\t0x28B2C\n0x9DAC\t0x2789D\n0x9DAD\t0x373A\n0x9DAE\t0x8E80\n0x9DAF\t0x217F5\n0x9DB0\t0x28024\n0x9DB1\t0x28B6C\n0x9DB2\t0x28B99\n0x9DB3\t0x27A3E\n0x9DB4\t0x266AF\n0x9DB5\t0x3DEB\n0x9DB6\t0x27655\n0x9DB7\t0x23CB7\n0x9DB8\t0x25635\n0x9DB9\t0x25956\n0x9DBA\t0x4E9A\n0x9DBB\t0x25E81\n0x9DBC\t0x26258\n0x9DBD\t0x56BF\n0x9DBE\t0x20E6D\n0x9DBF\t0x8E0E\n0x9DC0\t0x5B6D\n0x9DC1\t0x23E88\n0x9DC2\t0x24C9E\n0x9DC3\t0x63DE\n0x9DC5\t0x217F6\n0x9DC6\t0x2187B\n0x9DC7\t0x6530\n0x9DC8\t0x562D\n0x9DC9\t0x25C4A\n0x9DCA\t0x541A\n0x9DCB\t0x25311\n0x9DCC\t0x3DC6\n0x9DCD\t0x29D98\n0x9DCE\t0x4C7D\n0x9DCF\t0x5622\n0x9DD0\t0x561E\n0x9DD1\t0x7F49\n0x9DD2\t0x25ED8\n0x9DD3\t0x5975\n0x9DD4\t0x23D40\n0x9DD5\t0x8770\n0x9DD6\t0x4E1C\n0x9DD7\t0x20FEA\n0x9DD8\t0x20D49\n0x9DD9\t0x236BA\n0x9DDA\t0x8117\n0x9DDB\t0x9D5E\n0x9DDC\t0x8D18\n0x9DDD\t0x763B\n0x9DDE\t0x9C45\n0x9DDF\t0x764E\n0x9DE0\t0x77B9\n0x9DE1\t0x9345\n0x9DE2\t0x5432\n0x9DE3\t0x8148\n0x9DE4\t0x82F7\n0x9DE5\t0x5625\n0x9DE6\t0x8132\n0x9DE7\t0x8418\n0x9DE8\t0x80BD\n0x9DE9\t0x55EA\n0x9DEA\t0x7962\n0x9DEB\t0x5643\n0x9DEC\t0x5416\n0x9DED\t0x20E9D\n0x9DEE\t0x35CE\n0x9DEF\t0x5605\n0x9DF0\t0x55F1\n0x9DF1\t0x66F1\n0x9DF2\t0x282E2\n0x9DF3\t0x362D\n0x9DF4\t0x7534\n0x9DF5\t0x55F0\n0x9DF6\t0x55BA\n0x9DF7\t0x5497\n0x9DF8\t0x5572\n0x9DF9\t0x20C41\n0x9DFA\t0x20C96\n0x9DFB\t0x5ED0\n0x9DFC\t0x25148\n0x9DFD\t0x20E76\n0x9DFE\t0x22C62\n0x9E40\t0x20EA2\n0x9E41\t0x9EAB\n0x9E42\t0x7D5A\n0x9E43\t0x55DE\n0x9E44\t0x21075\n0x9E45\t0x629D\n0x9E46\t0x976D\n0x9E47\t0x5494\n0x9E48\t0x8CCD\n0x9E49\t0x71F6\n0x9E4A\t0x9176\n0x9E4B\t0x63FC\n0x9E4C\t0x63B9\n0x9E4D\t0x63FE\n0x9E4E\t0x5569\n0x9E4F\t0x22B43\n0x9E50\t0x9C72\n0x9E51\t0x22EB3\n0x9E52\t0x519A\n0x9E53\t0x34DF\n0x9E54\t0x20DA7\n0x9E55\t0x51A7\n0x9E56\t0x544D\n0x9E57\t0x551E\n0x9E58\t0x5513\n0x9E59\t0x7666\n0x9E5A\t0x8E2D\n0x9E5B\t0x2688A\n0x9E5C\t0x75B1\n0x9E5D\t0x80B6\n0x9E5E\t0x8804\n0x9E5F\t0x8786\n0x9E60\t0x88C7\n0x9E61\t0x81B6\n0x9E62\t0x841C\n0x9E63\t0x210C1\n0x9E64\t0x44EC\n0x9E65\t0x7304\n0x9E66\t0x24706\n0x9E67\t0x5B90\n0x9E68\t0x830B\n0x9E69\t0x26893\n0x9E6A\t0x567B\n0x9E6B\t0x226F4\n0x9E6C\t0x27D2F\n0x9E6D\t0x241A3\n0x9E6E\t0x27D73\n0x9E6F\t0x26ED0\n0x9E70\t0x272B6\n0x9E71\t0x9170\n0x9E72\t0x211D9\n0x9E73\t0x9208\n0x9E74\t0x23CFC\n0x9E75\t0x2A6A9\n0x9E76\t0x20EAC\n0x9E77\t0x20EF9\n0x9E78\t0x7266\n0x9E79\t0x21CA2\n0x9E7A\t0x474E\n0x9E7B\t0x24FC2\n0x9E7C\t0x27FF9\n0x9E7D\t0x20FEB\n0x9E7E\t0x40FA\n0x9EA1\t0x9C5D\n0x9EA2\t0x651F\n0x9EA3\t0x22DA0\n0x9EA4\t0x48F3\n0x9EA5\t0x247E0\n0x9EA6\t0x29D7C\n0x9EA7\t0x20FEC\n0x9EA8\t0x20E0A\n0x9EAA\t0x275A3\n0x9EAB\t0x20FED\n0x9EAD\t0x26048\n0x9EAE\t0x21187\n0x9EAF\t0x71A3\n0x9EB0\t0x7E8E\n0x9EB1\t0x9D50\n0x9EB2\t0x4E1A\n0x9EB3\t0x4E04\n0x9EB4\t0x3577\n0x9EB5\t0x5B0D\n0x9EB6\t0x6CB2\n0x9EB7\t0x5367\n0x9EB8\t0x36AC\n0x9EB9\t0x39DC\n0x9EBA\t0x537D\n0x9EBB\t0x36A5\n0x9EBC\t0x24618\n0x9EBD\t0x589A\n0x9EBE\t0x24B6E\n0x9EBF\t0x822D\n0x9EC0\t0x544B\n0x9EC1\t0x57AA\n0x9EC2\t0x25A95\n0x9EC3\t0x20979\n0x9EC5\t0x3A52\n0x9EC6\t0x22465\n0x9EC7\t0x7374\n0x9EC8\t0x29EAC\n0x9EC9\t0x4D09\n0x9ECA\t0x9BED\n0x9ECB\t0x23CFE\n0x9ECC\t0x29F30\n0x9ECD\t0x4C5B\n0x9ECE\t0x24FA9\n0x9ECF\t0x2959E\n0x9ED0\t0x29FDE\n0x9ED1\t0x845C\n0x9ED2\t0x23DB6\n0x9ED3\t0x272B2\n0x9ED4\t0x267B3\n0x9ED5\t0x23720\n0x9ED6\t0x632E\n0x9ED7\t0x7D25\n0x9ED8\t0x23EF7\n0x9ED9\t0x23E2C\n0x9EDA\t0x3A2A\n0x9EDB\t0x9008\n0x9EDC\t0x52CC\n0x9EDD\t0x3E74\n0x9EDE\t0x367A\n0x9EDF\t0x45E9\n0x9EE0\t0x2048E\n0x9EE1\t0x7640\n0x9EE2\t0x5AF0\n0x9EE3\t0x20EB6\n0x9EE4\t0x787A\n0x9EE5\t0x27F2E\n0x9EE6\t0x58A7\n0x9EE7\t0x40BF\n0x9EE8\t0x567C\n0x9EE9\t0x9B8B\n0x9EEA\t0x5D74\n0x9EEB\t0x7654\n0x9EEC\t0x2A434\n0x9EED\t0x9E85\n0x9EEE\t0x4CE1\n0x9EF0\t0x37FB\n0x9EF1\t0x6119\n0x9EF2\t0x230DA\n0x9EF3\t0x243F2\n0x9EF5\t0x565D\n0x9EF6\t0x212A9\n0x9EF7\t0x57A7\n0x9EF8\t0x24963\n0x9EF9\t0x29E06\n0x9EFA\t0x5234\n0x9EFB\t0x270AE\n0x9EFC\t0x35AD\n0x9EFE\t0x9D7C\n0x9F40\t0x7C56\n0x9F41\t0x9B39\n0x9F42\t0x57DE\n0x9F43\t0x2176C\n0x9F44\t0x5C53\n0x9F45\t0x64D3\n0x9F46\t0x294D0\n0x9F47\t0x26335\n0x9F48\t0x27164\n0x9F49\t0x86AD\n0x9F4A\t0x20D28\n0x9F4B\t0x26D22\n0x9F4C\t0x24AE2\n0x9F4D\t0x20D71\n0x9F4F\t0x51FE\n0x9F50\t0x21F0F\n0x9F51\t0x5D8E\n0x9F52\t0x9703\n0x9F53\t0x21DD1\n0x9F54\t0x9E81\n0x9F55\t0x904C\n0x9F56\t0x7B1F\n0x9F57\t0x9B02\n0x9F58\t0x5CD1\n0x9F59\t0x7BA3\n0x9F5A\t0x6268\n0x9F5B\t0x6335\n0x9F5C\t0x9AFF\n0x9F5D\t0x7BCF\n0x9F5E\t0x9B2A\n0x9F5F\t0x7C7E\n0x9F61\t0x7C42\n0x9F62\t0x7C86\n0x9F63\t0x9C15\n0x9F64\t0x7BFC\n0x9F65\t0x9B09\n0x9F67\t0x9C1B\n0x9F68\t0x2493E\n0x9F69\t0x9F5A\n0x9F6A\t0x5573\n0x9F6B\t0x5BC3\n0x9F6C\t0x4FFD\n0x9F6D\t0x9E98\n0x9F6E\t0x4FF2\n0x9F6F\t0x5260\n0x9F70\t0x3E06\n0x9F71\t0x52D1\n0x9F72\t0x5767\n0x9F73\t0x5056\n0x9F74\t0x59B7\n0x9F75\t0x5E12\n0x9F76\t0x97C8\n0x9F77\t0x9DAB\n0x9F78\t0x8F5C\n0x9F79\t0x5469\n0x9F7A\t0x97B4\n0x9F7B\t0x9940\n0x9F7C\t0x97BA\n0x9F7D\t0x532C\n0x9F7E\t0x6130\n0x9FA1\t0x692C\n0x9FA2\t0x53DA\n0x9FA3\t0x9C0A\n0x9FA4\t0x9D02\n0x9FA5\t0x4C3B\n0x9FA6\t0x9641\n0x9FA7\t0x6980\n0x9FA8\t0x50A6\n0x9FA9\t0x7546\n0x9FAA\t0x2176D\n0x9FAB\t0x99DA\n0x9FAC\t0x5273\n0x9FAE\t0x9159\n0x9FAF\t0x9681\n0x9FB0\t0x915C\n0x9FB2\t0x9151\n0x9FB3\t0x28E97\n0x9FB4\t0x637F\n0x9FB5\t0x26D23\n0x9FB6\t0x6ACA\n0x9FB7\t0x5611\n0x9FB8\t0x918E\n0x9FB9\t0x757A\n0x9FBA\t0x6285\n0x9FBB\t0x203FC\n0x9FBC\t0x734F\n0x9FBD\t0x7C70\n0x9FBE\t0x25C21\n0x9FBF\t0x23CFD\n0x9FC1\t0x24919\n0x9FC2\t0x76D6\n0x9FC3\t0x9B9D\n0x9FC4\t0x4E2A\n0x9FC5\t0x20CD4\n0x9FC6\t0x83BE\n0x9FC7\t0x8842\n0x9FC9\t0x5C4A\n0x9FCA\t0x69C0\n0x9FCC\t0x577A\n0x9FCD\t0x521F\n0x9FCE\t0x5DF5\n0x9FCF\t0x4ECE\n0x9FD0\t0x6C31\n0x9FD1\t0x201F2\n0x9FD2\t0x4F39\n0x9FD3\t0x549C\n0x9FD4\t0x54DA\n0x9FD5\t0x529A\n0x9FD6\t0x8D82\n0x9FD7\t0x35FE\n0x9FD9\t0x35F3\n0x9FDB\t0x6B52\n0x9FDC\t0x917C\n0x9FDD\t0x9FA5\n0x9FDE\t0x9B97\n0x9FDF\t0x982E\n0x9FE0\t0x98B4\n0x9FE1\t0x9ABA\n0x9FE2\t0x9EA8\n0x9FE3\t0x9E84\n0x9FE4\t0x717A\n0x9FE5\t0x7B14\n0x9FE7\t0x6BFA\n0x9FE8\t0x8818\n0x9FE9\t0x7F78\n0x9FEB\t0x5620\n0x9FEC\t0x2A64A\n0x9FED\t0x8E77\n0x9FEE\t0x9F53\n0x9FF0\t0x8DD4\n0x9FF1\t0x8E4F\n0x9FF2\t0x9E1C\n0x9FF3\t0x8E01\n0x9FF4\t0x6282\n0x9FF5\t0x2837D\n0x9FF6\t0x8E28\n0x9FF7\t0x8E75\n0x9FF8\t0x7AD3\n0x9FF9\t0x24A77\n0x9FFA\t0x7A3E\n0x9FFB\t0x78D8\n0x9FFC\t0x6CEA\n0x9FFD\t0x8A67\n0x9FFE\t0x7607\n0xA040\t0x28A5A\n0xA041\t0x9F26\n0xA042\t0x6CCE\n0xA043\t0x87D6\n0xA044\t0x75C3\n0xA045\t0x2A2B2\n0xA046\t0x7853\n0xA047\t0x2F840\n0xA048\t0x8D0C\n0xA049\t0x72E2\n0xA04A\t0x7371\n0xA04B\t0x8B2D\n0xA04C\t0x7302\n0xA04D\t0x74F1\n0xA04E\t0x8CEB\n0xA04F\t0x24ABB\n0xA050\t0x862F\n0xA051\t0x5FBA\n0xA052\t0x88A0\n0xA053\t0x44B7\n0xA055\t0x2183B\n0xA056\t0x26E05\n0xA058\t0x8A7E\n0xA059\t0x2251B\n0xA05B\t0x60FD\n0xA05C\t0x7667\n0xA05D\t0x9AD7\n0xA05E\t0x9D44\n0xA05F\t0x936E\n0xA060\t0x9B8F\n0xA061\t0x87F5\n0xA064\t0x8CF7\n0xA065\t0x732C\n0xA066\t0x9721\n0xA067\t0x9BB0\n0xA068\t0x35D6\n0xA069\t0x72B2\n0xA06A\t0x4C07\n0xA06B\t0x7C51\n0xA06C\t0x994A\n0xA06D\t0x26159\n0xA06E\t0x6159\n0xA06F\t0x4C04\n0xA070\t0x9E96\n0xA071\t0x617D\n0xA073\t0x575F\n0xA074\t0x616F\n0xA075\t0x62A6\n0xA076\t0x6239\n0xA078\t0x3A5C\n0xA079\t0x61E2\n0xA07A\t0x53AA\n0xA07B\t0x233F5\n0xA07C\t0x6364\n0xA07D\t0x6802\n0xA07E\t0x35D2\n0xA0A1\t0x5D57\n0xA0A2\t0x28BC2\n0xA0A3\t0x8FDA\n0xA0A4\t0x28E39\n0xA0A6\t0x50D9\n0xA0A7\t0x21D46\n0xA0A8\t0x7906\n0xA0A9\t0x5332\n0xA0AA\t0x9638\n0xA0AB\t0x20F3B\n0xA0AC\t0x4065\n0xA0AE\t0x77FE\n0xA0B0\t0x7CC2\n0xA0B1\t0x25F1A\n0xA0B2\t0x7CDA\n0xA0B3\t0x7A2D\n0xA0B4\t0x8066\n0xA0B5\t0x8063\n0xA0B6\t0x7D4D\n0xA0B7\t0x7505\n0xA0B8\t0x74F2\n0xA0B9\t0x8994\n0xA0BA\t0x821A\n0xA0BB\t0x670C\n0xA0BC\t0x8062\n0xA0BD\t0x27486\n0xA0BE\t0x805B\n0xA0BF\t0x74F0\n0xA0C0\t0x8103\n0xA0C1\t0x7724\n0xA0C2\t0x8989\n0xA0C3\t0x267CC\n0xA0C4\t0x7553\n0xA0C5\t0x26ED1\n0xA0C6\t0x87A9\n0xA0C7\t0x87CE\n0xA0C8\t0x81C8\n0xA0C9\t0x878C\n0xA0CA\t0x8A49\n0xA0CB\t0x8CAD\n0xA0CC\t0x8B43\n0xA0CD\t0x772B\n0xA0CE\t0x74F8\n0xA0CF\t0x84DA\n0xA0D0\t0x3635\n0xA0D1\t0x69B2\n0xA0D2\t0x8DA6\n0xA0D4\t0x89A9\n0xA0D6\t0x6DB9\n0xA0D7\t0x87C1\n0xA0D8\t0x24011\n0xA0D9\t0x74E7\n0xA0DA\t0x3DDB\n0xA0DB\t0x7176\n0xA0DC\t0x60A4\n0xA0DD\t0x619C\n0xA0DE\t0x3CD1\n0xA0E0\t0x6077\n0xA0E2\t0x7F71\n0xA0E3\t0x28B2D\n0xA0E5\t0x60E9\n0xA0E6\t0x4B7E\n0xA0E7\t0x5220\n0xA0E8\t0x3C18\n0xA0E9\t0x23CC7\n0xA0EA\t0x25ED7\n0xA0EB\t0x27656\n0xA0EC\t0x25531\n0xA0ED\t0x21944\n0xA0EE\t0x212FE\n0xA0EF\t0x29903\n0xA0F0\t0x26DDC\n0xA0F1\t0x270AD\n0xA0F2\t0x5CC1\n0xA0F3\t0x261AD\n0xA0F4\t0x28A0F\n0xA0F5\t0x23677\n0xA0F6\t0x200EE\n0xA0F7\t0x26846\n0xA0F8\t0x24F0E\n0xA0F9\t0x4562\n0xA0FA\t0x5B1F\n0xA0FB\t0x2634C\n0xA0FC\t0x9F50\n0xA0FD\t0x9EA6\n0xA0FE\t0x2626B\n0xA140\t0x3000\n0xA141\t0xFF0C\n0xA142\t0x3001\n0xA143\t0x3002\n0xA144\t0xFF0E\n0xA145\t0x2022\n0xA146\t0xFF1B\n0xA147\t0xFF1A\n0xA148\t0xFF1F\n0xA149\t0xFF01\n0xA14A\t0xFE30\n0xA14B\t0x2026\n0xA14C\t0x2025\n0xA14D\t0xFE50\n0xA14E\t0xFF64\n0xA14F\t0xFE52\n0xA150\t0x00B7\n0xA151\t0xFE54\n0xA152\t0xFE55\n0xA153\t0xFE56\n0xA154\t0xFE57\n0xA155\t0xFF5C\n0xA156\t0x2013\n0xA157\t0xFE31\n0xA158\t0x2014\n0xA159\t0xFE33\n0xA15B\t0xFE34\n0xA15C\t0xFE4F\n0xA15D\t0xFF08\n0xA15E\t0xFF09\n0xA15F\t0xFE35\n0xA160\t0xFE36\n0xA161\t0xFF5B\n0xA162\t0xFF5D\n0xA163\t0xFE37\n0xA164\t0xFE38\n0xA165\t0x3014\n0xA166\t0x3015\n0xA167\t0xFE39\n0xA168\t0xFE3A\n0xA169\t0x3010\n0xA16A\t0x3011\n0xA16B\t0xFE3B\n0xA16C\t0xFE3C\n0xA16D\t0x300A\n0xA16E\t0x300B\n0xA16F\t0xFE3D\n0xA170\t0xFE3E\n0xA171\t0x3008\n0xA172\t0x3009\n0xA173\t0xFE3F\n0xA174\t0xFE40\n0xA175\t0x300C\n0xA176\t0x300D\n0xA177\t0xFE41\n0xA178\t0xFE42\n0xA179\t0x300E\n0xA17A\t0x300F\n0xA17B\t0xFE43\n0xA17C\t0xFE44\n0xA17D\t0xFE59\n0xA17E\t0xFE5A\n0xA1A1\t0xFE5B\n0xA1A2\t0xFE5C\n0xA1A3\t0xFE5D\n0xA1A4\t0xFE5E\n0xA1A5\t0x2018\n0xA1A6\t0x2019\n0xA1A7\t0x201C\n0xA1A8\t0x201D\n0xA1A9\t0x301D\n0xA1AA\t0x301E\n0xA1AB\t0x2035\n0xA1AC\t0x2032\n0xA1AD\t0xFF03\n0xA1AE\t0xFF06\n0xA1AF\t0xFF0A\n0xA1B0\t0x203B\n0xA1B1\t0x00A7\n0xA1B2\t0x3003\n0xA1B3\t0x25CB\n0xA1B4\t0x25CF\n0xA1B5\t0x25B3\n0xA1B6\t0x25B2\n0xA1B7\t0x25CE\n0xA1B8\t0x2606\n0xA1B9\t0x2605\n0xA1BA\t0x25C7\n0xA1BB\t0x25C6\n0xA1BC\t0x25A1\n0xA1BD\t0x25A0\n0xA1BE\t0x25BD\n0xA1BF\t0x25BC\n0xA1C0\t0x32A3\n0xA1C1\t0x2105\n0xA1C2\t0x203E\n0xA1C4\t0xFF3F\n0xA1C6\t0xFE49\n0xA1C7\t0xFE4A\n0xA1C8\t0xFE4D\n0xA1C9\t0xFE4E\n0xA1CA\t0xFE4B\n0xA1CB\t0xFE4C\n0xA1CC\t0xFE5F\n0xA1CD\t0xFE60\n0xA1CE\t0xFE61\n0xA1CF\t0xFF0B\n0xA1D0\t0xFF0D\n0xA1D1\t0x00D7\n0xA1D2\t0x00F7\n0xA1D3\t0x00B1\n0xA1D4\t0x221A\n0xA1D5\t0xFF1C\n0xA1D6\t0xFF1E\n0xA1D7\t0xFF1D\n0xA1D8\t0x2266\n0xA1D9\t0x2267\n0xA1DA\t0x2260\n0xA1DB\t0x221E\n0xA1DC\t0x2252\n0xA1DD\t0x2261\n0xA1DE\t0xFE62\n0xA1DF\t0xFE63\n0xA1E0\t0xFE64\n0xA1E1\t0xFE65\n0xA1E2\t0xFE66\n0xA1E3\t0x223C\n0xA1E4\t0x2229\n0xA1E5\t0x222A\n0xA1E6\t0x22A5\n0xA1E7\t0x2220\n0xA1E8\t0x221F\n0xA1E9\t0x22BF\n0xA1EA\t0x33D2\n0xA1EB\t0x33D1\n0xA1EC\t0x222B\n0xA1ED\t0x222E\n0xA1EE\t0x2235\n0xA1EF\t0x2234\n0xA1F0\t0x2640\n0xA1F1\t0x2642\n0xA1F2\t0x2641\n0xA1F3\t0x2609\n0xA1F4\t0x2191\n0xA1F5\t0x2193\n0xA1F6\t0x2190\n0xA1F7\t0x2192\n0xA1F8\t0x2196\n0xA1F9\t0x2197\n0xA1FA\t0x2199\n0xA1FB\t0x2198\n0xA1FC\t0x2225\n0xA1FD\t0x2223\n0xA241\t0xFF0F\n0xA242\t0xFF3C\n0xA243\t0xFF04\n0xA244\t0x00A5\n0xA245\t0x3012\n0xA246\t0x00A2\n0xA247\t0x00A3\n0xA248\t0xFF05\n0xA249\t0xFF20\n0xA24A\t0x2103\n0xA24B\t0x2109\n0xA24C\t0xFE69\n0xA24D\t0xFE6A\n0xA24E\t0xFE6B\n0xA24F\t0x33D5\n0xA250\t0x339C\n0xA251\t0x339D\n0xA252\t0x339E\n0xA253\t0x33CE\n0xA254\t0x33A1\n0xA255\t0x338E\n0xA256\t0x338F\n0xA257\t0x33C4\n0xA258\t0x00B0\n0xA259\t0x5159\n0xA25A\t0x515B\n0xA25B\t0x515E\n0xA25C\t0x515D\n0xA25D\t0x5161\n0xA25E\t0x5163\n0xA25F\t0x55E7\n0xA260\t0x74E9\n0xA261\t0x7CCE\n0xA262\t0x2581\n0xA263\t0x2582\n0xA264\t0x2583\n0xA265\t0x2584\n0xA266\t0x2585\n0xA267\t0x2586\n0xA268\t0x2587\n0xA269\t0x2588\n0xA26A\t0x258F\n0xA26B\t0x258E\n0xA26C\t0x258D\n0xA26D\t0x258C\n0xA26E\t0x258B\n0xA26F\t0x258A\n0xA270\t0x2589\n0xA271\t0x253C\n0xA272\t0x2534\n0xA273\t0x252C\n0xA274\t0x2524\n0xA275\t0x251C\n0xA276\t0x2594\n0xA277\t0x2500\n0xA278\t0x2502\n0xA279\t0x2595\n0xA27A\t0x250C\n0xA27B\t0x2510\n0xA27C\t0x2514\n0xA27D\t0x2518\n0xA27E\t0x256D\n0xA2A1\t0x256E\n0xA2A2\t0x2570\n0xA2A3\t0x256F\n0xA2A4\t0x2550\n0xA2A5\t0x255E\n0xA2A6\t0x256A\n0xA2A7\t0x2561\n0xA2A8\t0x25E2\n0xA2A9\t0x25E3\n0xA2AA\t0x25E5\n0xA2AB\t0x25E4\n0xA2AC\t0x2571\n0xA2AD\t0x2572\n0xA2AE\t0x2573\n0xA2AF\t0xFF10\n0xA2B0\t0xFF11\n0xA2B1\t0xFF12\n0xA2B2\t0xFF13\n0xA2B3\t0xFF14\n0xA2B4\t0xFF15\n0xA2B5\t0xFF16\n0xA2B6\t0xFF17\n0xA2B7\t0xFF18\n0xA2B8\t0xFF19\n0xA2B9\t0x2160\n0xA2BA\t0x2161\n0xA2BB\t0x2162\n0xA2BC\t0x2163\n0xA2BD\t0x2164\n0xA2BE\t0x2165\n0xA2BF\t0x2166\n0xA2C0\t0x2167\n0xA2C1\t0x2168\n0xA2C2\t0x2169\n0xA2C3\t0x3021\n0xA2C4\t0x3022\n0xA2C5\t0x3023\n0xA2C6\t0x3024\n0xA2C7\t0x3025\n0xA2C8\t0x3026\n0xA2C9\t0x3027\n0xA2CA\t0x3028\n0xA2CB\t0x3029\n0xA2CD\t0x5344\n0xA2CF\t0xFF21\n0xA2D0\t0xFF22\n0xA2D1\t0xFF23\n0xA2D2\t0xFF24\n0xA2D3\t0xFF25\n0xA2D4\t0xFF26\n0xA2D5\t0xFF27\n0xA2D6\t0xFF28\n0xA2D7\t0xFF29\n0xA2D8\t0xFF2A\n0xA2D9\t0xFF2B\n0xA2DA\t0xFF2C\n0xA2DB\t0xFF2D\n0xA2DC\t0xFF2E\n0xA2DD\t0xFF2F\n0xA2DE\t0xFF30\n0xA2DF\t0xFF31\n0xA2E0\t0xFF32\n0xA2E1\t0xFF33\n0xA2E2\t0xFF34\n0xA2E3\t0xFF35\n0xA2E4\t0xFF36\n0xA2E5\t0xFF37\n0xA2E6\t0xFF38\n0xA2E7\t0xFF39\n0xA2E8\t0xFF3A\n0xA2E9\t0xFF41\n0xA2EA\t0xFF42\n0xA2EB\t0xFF43\n0xA2EC\t0xFF44\n0xA2ED\t0xFF45\n0xA2EE\t0xFF46\n0xA2EF\t0xFF47\n0xA2F0\t0xFF48\n0xA2F1\t0xFF49\n0xA2F2\t0xFF4A\n0xA2F3\t0xFF4B\n0xA2F4\t0xFF4C\n0xA2F5\t0xFF4D\n0xA2F6\t0xFF4E\n0xA2F7\t0xFF4F\n0xA2F8\t0xFF50\n0xA2F9\t0xFF51\n0xA2FA\t0xFF52\n0xA2FB\t0xFF53\n0xA2FC\t0xFF54\n0xA2FD\t0xFF55\n0xA2FE\t0xFF56\n0xA340\t0xFF57\n0xA341\t0xFF58\n0xA342\t0xFF59\n0xA343\t0xFF5A\n0xA344\t0x0391\n0xA345\t0x0392\n0xA346\t0x0393\n0xA347\t0x0394\n0xA348\t0x0395\n0xA349\t0x0396\n0xA34A\t0x0397\n0xA34B\t0x0398\n0xA34C\t0x0399\n0xA34D\t0x039A\n0xA34E\t0x039B\n0xA34F\t0x039C\n0xA350\t0x039D\n0xA351\t0x039E\n0xA352\t0x039F\n0xA353\t0x03A0\n0xA354\t0x03A1\n0xA355\t0x03A3\n0xA356\t0x03A4\n0xA357\t0x03A5\n0xA358\t0x03A6\n0xA359\t0x03A7\n0xA35A\t0x03A8\n0xA35B\t0x03A9\n0xA35C\t0x03B1\n0xA35D\t0x03B2\n0xA35E\t0x03B3\n0xA35F\t0x03B4\n0xA360\t0x03B5\n0xA361\t0x03B6\n0xA362\t0x03B7\n0xA363\t0x03B8\n0xA364\t0x03B9\n0xA365\t0x03BA\n0xA366\t0x03BB\n0xA367\t0x03BC\n0xA368\t0x03BD\n0xA369\t0x03BE\n0xA36A\t0x03BF\n0xA36B\t0x03C0\n0xA36C\t0x03C1\n0xA36D\t0x03C3\n0xA36E\t0x03C4\n0xA36F\t0x03C5\n0xA370\t0x03C6\n0xA371\t0x03C7\n0xA372\t0x03C8\n0xA373\t0x03C9\n0xA374\t0x3105\n0xA375\t0x3106\n0xA376\t0x3107\n0xA377\t0x3108\n0xA378\t0x3109\n0xA379\t0x310A\n0xA37A\t0x310B\n0xA37B\t0x310C\n0xA37C\t0x310D\n0xA37D\t0x310E\n0xA37E\t0x310F\n0xA3A1\t0x3110\n0xA3A2\t0x3111\n0xA3A3\t0x3112\n0xA3A4\t0x3113\n0xA3A5\t0x3114\n0xA3A6\t0x3115\n0xA3A7\t0x3116\n0xA3A8\t0x3117\n0xA3A9\t0x3118\n0xA3AA\t0x3119\n0xA3AB\t0x311A\n0xA3AC\t0x311B\n0xA3AD\t0x311C\n0xA3AE\t0x311D\n0xA3AF\t0x311E\n0xA3B0\t0x311F\n0xA3B1\t0x3120\n0xA3B2\t0x3121\n0xA3B3\t0x3122\n0xA3B4\t0x3123\n0xA3B5\t0x3124\n0xA3B6\t0x3125\n0xA3B7\t0x3126\n0xA3B8\t0x3127\n0xA3B9\t0x3128\n0xA3BA\t0x3129\n0xA3BB\t0x02D9\n0xA3BC\t0x02C9\n0xA3BD\t0x02CA\n0xA3BE\t0x02C7\n0xA3BF\t0x02CB\n0xA440\t0x4E00\n0xA441\t0x4E59\n0xA442\t0x4E01\n0xA443\t0x4E03\n0xA444\t0x4E43\n0xA445\t0x4E5D\n0xA446\t0x4E86\n0xA447\t0x4E8C\n0xA448\t0x4EBA\n0xA449\t0x513F\n0xA44A\t0x5165\n0xA44B\t0x516B\n0xA44C\t0x51E0\n0xA44D\t0x5200\n0xA44E\t0x5201\n0xA44F\t0x529B\n0xA450\t0x5315\n0xA451\t0x5341\n0xA452\t0x535C\n0xA453\t0x53C8\n0xA454\t0x4E09\n0xA455\t0x4E0B\n0xA456\t0x4E08\n0xA457\t0x4E0A\n0xA458\t0x4E2B\n0xA459\t0x4E38\n0xA45A\t0x51E1\n0xA45B\t0x4E45\n0xA45C\t0x4E48\n0xA45D\t0x4E5F\n0xA45E\t0x4E5E\n0xA45F\t0x4E8E\n0xA460\t0x4EA1\n0xA461\t0x5140\n0xA462\t0x5203\n0xA463\t0x52FA\n0xA464\t0x5343\n0xA465\t0x53C9\n0xA466\t0x53E3\n0xA467\t0x571F\n0xA468\t0x58EB\n0xA469\t0x5915\n0xA46A\t0x5927\n0xA46B\t0x5973\n0xA46C\t0x5B50\n0xA46D\t0x5B51\n0xA46E\t0x5B53\n0xA46F\t0x5BF8\n0xA470\t0x5C0F\n0xA471\t0x5C22\n0xA472\t0x5C38\n0xA473\t0x5C71\n0xA474\t0x5DDD\n0xA475\t0x5DE5\n0xA476\t0x5DF1\n0xA477\t0x5DF2\n0xA478\t0x5DF3\n0xA479\t0x5DFE\n0xA47A\t0x5E72\n0xA47B\t0x5EFE\n0xA47C\t0x5F0B\n0xA47D\t0x5F13\n0xA47E\t0x624D\n0xA4A1\t0x4E11\n0xA4A2\t0x4E10\n0xA4A3\t0x4E0D\n0xA4A4\t0x4E2D\n0xA4A5\t0x4E30\n0xA4A6\t0x4E39\n0xA4A7\t0x4E4B\n0xA4A8\t0x5C39\n0xA4A9\t0x4E88\n0xA4AA\t0x4E91\n0xA4AB\t0x4E95\n0xA4AC\t0x4E92\n0xA4AD\t0x4E94\n0xA4AE\t0x4EA2\n0xA4AF\t0x4EC1\n0xA4B0\t0x4EC0\n0xA4B1\t0x4EC3\n0xA4B2\t0x4EC6\n0xA4B3\t0x4EC7\n0xA4B4\t0x4ECD\n0xA4B5\t0x4ECA\n0xA4B6\t0x4ECB\n0xA4B7\t0x4EC4\n0xA4B8\t0x5143\n0xA4B9\t0x5141\n0xA4BA\t0x5167\n0xA4BB\t0x516D\n0xA4BC\t0x516E\n0xA4BD\t0x516C\n0xA4BE\t0x5197\n0xA4BF\t0x51F6\n0xA4C0\t0x5206\n0xA4C1\t0x5207\n0xA4C2\t0x5208\n0xA4C3\t0x52FB\n0xA4C4\t0x52FE\n0xA4C5\t0x52FF\n0xA4C6\t0x5316\n0xA4C7\t0x5339\n0xA4C8\t0x5348\n0xA4C9\t0x5347\n0xA4CA\t0x5345\n0xA4CB\t0x535E\n0xA4CC\t0x5384\n0xA4CD\t0x53CB\n0xA4CE\t0x53CA\n0xA4CF\t0x53CD\n0xA4D0\t0x58EC\n0xA4D1\t0x5929\n0xA4D2\t0x592B\n0xA4D3\t0x592A\n0xA4D4\t0x592D\n0xA4D5\t0x5B54\n0xA4D6\t0x5C11\n0xA4D7\t0x5C24\n0xA4D8\t0x5C3A\n0xA4D9\t0x5C6F\n0xA4DA\t0x5DF4\n0xA4DB\t0x5E7B\n0xA4DC\t0x5EFF\n0xA4DD\t0x5F14\n0xA4DE\t0x5F15\n0xA4DF\t0x5FC3\n0xA4E0\t0x6208\n0xA4E1\t0x6236\n0xA4E2\t0x624B\n0xA4E3\t0x624E\n0xA4E4\t0x652F\n0xA4E5\t0x6587\n0xA4E6\t0x6597\n0xA4E7\t0x65A4\n0xA4E8\t0x65B9\n0xA4E9\t0x65E5\n0xA4EA\t0x66F0\n0xA4EB\t0x6708\n0xA4EC\t0x6728\n0xA4ED\t0x6B20\n0xA4EE\t0x6B62\n0xA4EF\t0x6B79\n0xA4F0\t0x6BCB\n0xA4F1\t0x6BD4\n0xA4F2\t0x6BDB\n0xA4F3\t0x6C0F\n0xA4F4\t0x6C34\n0xA4F5\t0x706B\n0xA4F6\t0x722A\n0xA4F7\t0x7236\n0xA4F8\t0x723B\n0xA4F9\t0x7247\n0xA4FA\t0x7259\n0xA4FB\t0x725B\n0xA4FC\t0x72AC\n0xA4FD\t0x738B\n0xA4FE\t0x4E19\n0xA540\t0x4E16\n0xA541\t0x4E15\n0xA542\t0x4E14\n0xA543\t0x4E18\n0xA544\t0x4E3B\n0xA545\t0x4E4D\n0xA546\t0x4E4F\n0xA547\t0x4E4E\n0xA548\t0x4EE5\n0xA549\t0x4ED8\n0xA54A\t0x4ED4\n0xA54B\t0x4ED5\n0xA54C\t0x4ED6\n0xA54D\t0x4ED7\n0xA54E\t0x4EE3\n0xA54F\t0x4EE4\n0xA550\t0x4ED9\n0xA551\t0x4EDE\n0xA552\t0x5145\n0xA553\t0x5144\n0xA554\t0x5189\n0xA555\t0x518A\n0xA556\t0x51AC\n0xA557\t0x51F9\n0xA558\t0x51FA\n0xA559\t0x51F8\n0xA55A\t0x520A\n0xA55B\t0x52A0\n0xA55C\t0x529F\n0xA55D\t0x5305\n0xA55E\t0x5306\n0xA55F\t0x5317\n0xA560\t0x531D\n0xA561\t0x4EDF\n0xA562\t0x534A\n0xA563\t0x5349\n0xA564\t0x5361\n0xA565\t0x5360\n0xA566\t0x536F\n0xA567\t0x536E\n0xA568\t0x53BB\n0xA569\t0x53EF\n0xA56A\t0x53E4\n0xA56B\t0x53F3\n0xA56C\t0x53EC\n0xA56D\t0x53EE\n0xA56E\t0x53E9\n0xA56F\t0x53E8\n0xA570\t0x53FC\n0xA571\t0x53F8\n0xA572\t0x53F5\n0xA573\t0x53EB\n0xA574\t0x53E6\n0xA575\t0x53EA\n0xA576\t0x53F2\n0xA577\t0x53F1\n0xA578\t0x53F0\n0xA579\t0x53E5\n0xA57A\t0x53ED\n0xA57B\t0x53FB\n0xA57C\t0x56DB\n0xA57D\t0x56DA\n0xA57E\t0x5916\n0xA5A1\t0x592E\n0xA5A2\t0x5931\n0xA5A3\t0x5974\n0xA5A4\t0x5976\n0xA5A5\t0x5B55\n0xA5A6\t0x5B83\n0xA5A7\t0x5C3C\n0xA5A8\t0x5DE8\n0xA5A9\t0x5DE7\n0xA5AA\t0x5DE6\n0xA5AB\t0x5E02\n0xA5AC\t0x5E03\n0xA5AD\t0x5E73\n0xA5AE\t0x5E7C\n0xA5AF\t0x5F01\n0xA5B0\t0x5F18\n0xA5B1\t0x5F17\n0xA5B2\t0x5FC5\n0xA5B3\t0x620A\n0xA5B4\t0x6253\n0xA5B5\t0x6254\n0xA5B6\t0x6252\n0xA5B7\t0x6251\n0xA5B8\t0x65A5\n0xA5B9\t0x65E6\n0xA5BA\t0x672E\n0xA5BB\t0x672C\n0xA5BC\t0x672A\n0xA5BD\t0x672B\n0xA5BE\t0x672D\n0xA5BF\t0x6B63\n0xA5C0\t0x6BCD\n0xA5C1\t0x6C11\n0xA5C2\t0x6C10\n0xA5C3\t0x6C38\n0xA5C4\t0x6C41\n0xA5C5\t0x6C40\n0xA5C6\t0x6C3E\n0xA5C7\t0x72AF\n0xA5C8\t0x7384\n0xA5C9\t0x7389\n0xA5CA\t0x74DC\n0xA5CB\t0x74E6\n0xA5CC\t0x7518\n0xA5CD\t0x751F\n0xA5CE\t0x7528\n0xA5CF\t0x7529\n0xA5D0\t0x7530\n0xA5D1\t0x7531\n0xA5D2\t0x7532\n0xA5D3\t0x7533\n0xA5D4\t0x758B\n0xA5D5\t0x767D\n0xA5D6\t0x76AE\n0xA5D7\t0x76BF\n0xA5D8\t0x76EE\n0xA5D9\t0x77DB\n0xA5DA\t0x77E2\n0xA5DB\t0x77F3\n0xA5DC\t0x793A\n0xA5DD\t0x79BE\n0xA5DE\t0x7A74\n0xA5DF\t0x7ACB\n0xA5E0\t0x4E1E\n0xA5E1\t0x4E1F\n0xA5E2\t0x4E52\n0xA5E3\t0x4E53\n0xA5E4\t0x4E69\n0xA5E5\t0x4E99\n0xA5E6\t0x4EA4\n0xA5E7\t0x4EA6\n0xA5E8\t0x4EA5\n0xA5E9\t0x4EFF\n0xA5EA\t0x4F09\n0xA5EB\t0x4F19\n0xA5EC\t0x4F0A\n0xA5ED\t0x4F15\n0xA5EE\t0x4F0D\n0xA5EF\t0x4F10\n0xA5F0\t0x4F11\n0xA5F1\t0x4F0F\n0xA5F2\t0x4EF2\n0xA5F3\t0x4EF6\n0xA5F4\t0x4EFB\n0xA5F5\t0x4EF0\n0xA5F6\t0x4EF3\n0xA5F7\t0x4EFD\n0xA5F8\t0x4F01\n0xA5F9\t0x4F0B\n0xA5FA\t0x5149\n0xA5FB\t0x5147\n0xA5FC\t0x5146\n0xA5FD\t0x5148\n0xA5FE\t0x5168\n0xA640\t0x5171\n0xA641\t0x518D\n0xA642\t0x51B0\n0xA643\t0x5217\n0xA644\t0x5211\n0xA645\t0x5212\n0xA646\t0x520E\n0xA647\t0x5216\n0xA648\t0x52A3\n0xA649\t0x5308\n0xA64A\t0x5321\n0xA64B\t0x5320\n0xA64C\t0x5370\n0xA64D\t0x5371\n0xA64E\t0x5409\n0xA64F\t0x540F\n0xA650\t0x540C\n0xA651\t0x540A\n0xA652\t0x5410\n0xA653\t0x5401\n0xA654\t0x540B\n0xA655\t0x5404\n0xA656\t0x5411\n0xA657\t0x540D\n0xA658\t0x5408\n0xA659\t0x5403\n0xA65A\t0x540E\n0xA65B\t0x5406\n0xA65C\t0x5412\n0xA65D\t0x56E0\n0xA65E\t0x56DE\n0xA65F\t0x56DD\n0xA660\t0x5733\n0xA661\t0x5730\n0xA662\t0x5728\n0xA663\t0x572D\n0xA664\t0x572C\n0xA665\t0x572F\n0xA666\t0x5729\n0xA667\t0x5919\n0xA668\t0x591A\n0xA669\t0x5937\n0xA66A\t0x5938\n0xA66B\t0x5984\n0xA66C\t0x5978\n0xA66D\t0x5983\n0xA66E\t0x597D\n0xA66F\t0x5979\n0xA670\t0x5982\n0xA671\t0x5981\n0xA672\t0x5B57\n0xA673\t0x5B58\n0xA674\t0x5B87\n0xA675\t0x5B88\n0xA676\t0x5B85\n0xA677\t0x5B89\n0xA678\t0x5BFA\n0xA679\t0x5C16\n0xA67A\t0x5C79\n0xA67B\t0x5DDE\n0xA67C\t0x5E06\n0xA67D\t0x5E76\n0xA67E\t0x5E74\n0xA6A1\t0x5F0F\n0xA6A2\t0x5F1B\n0xA6A3\t0x5FD9\n0xA6A4\t0x5FD6\n0xA6A5\t0x620E\n0xA6A6\t0x620C\n0xA6A7\t0x620D\n0xA6A8\t0x6210\n0xA6A9\t0x6263\n0xA6AA\t0x625B\n0xA6AB\t0x6258\n0xA6AC\t0x6536\n0xA6AD\t0x65E9\n0xA6AE\t0x65E8\n0xA6AF\t0x65EC\n0xA6B0\t0x65ED\n0xA6B1\t0x66F2\n0xA6B2\t0x66F3\n0xA6B3\t0x6709\n0xA6B4\t0x673D\n0xA6B5\t0x6734\n0xA6B6\t0x6731\n0xA6B7\t0x6735\n0xA6B8\t0x6B21\n0xA6B9\t0x6B64\n0xA6BA\t0x6B7B\n0xA6BB\t0x6C16\n0xA6BC\t0x6C5D\n0xA6BD\t0x6C57\n0xA6BE\t0x6C59\n0xA6BF\t0x6C5F\n0xA6C0\t0x6C60\n0xA6C1\t0x6C50\n0xA6C2\t0x6C55\n0xA6C3\t0x6C61\n0xA6C4\t0x6C5B\n0xA6C5\t0x6C4D\n0xA6C6\t0x6C4E\n0xA6C7\t0x7070\n0xA6C8\t0x725F\n0xA6C9\t0x725D\n0xA6CA\t0x767E\n0xA6CB\t0x7AF9\n0xA6CC\t0x7C73\n0xA6CD\t0x7CF8\n0xA6CE\t0x7F36\n0xA6CF\t0x7F8A\n0xA6D0\t0x7FBD\n0xA6D1\t0x8001\n0xA6D2\t0x8003\n0xA6D3\t0x800C\n0xA6D4\t0x8012\n0xA6D5\t0x8033\n0xA6D6\t0x807F\n0xA6D7\t0x8089\n0xA6D8\t0x808B\n0xA6D9\t0x808C\n0xA6DA\t0x81E3\n0xA6DB\t0x81EA\n0xA6DC\t0x81F3\n0xA6DD\t0x81FC\n0xA6DE\t0x820C\n0xA6DF\t0x821B\n0xA6E0\t0x821F\n0xA6E1\t0x826E\n0xA6E2\t0x8272\n0xA6E3\t0x827E\n0xA6E4\t0x866B\n0xA6E5\t0x8840\n0xA6E6\t0x884C\n0xA6E7\t0x8863\n0xA6E8\t0x897F\n0xA6E9\t0x9621\n0xA6EA\t0x4E32\n0xA6EB\t0x4EA8\n0xA6EC\t0x4F4D\n0xA6ED\t0x4F4F\n0xA6EE\t0x4F47\n0xA6EF\t0x4F57\n0xA6F0\t0x4F5E\n0xA6F1\t0x4F34\n0xA6F2\t0x4F5B\n0xA6F3\t0x4F55\n0xA6F4\t0x4F30\n0xA6F5\t0x4F50\n0xA6F6\t0x4F51\n0xA6F7\t0x4F3D\n0xA6F8\t0x4F3A\n0xA6F9\t0x4F38\n0xA6FA\t0x4F43\n0xA6FB\t0x4F54\n0xA6FC\t0x4F3C\n0xA6FD\t0x4F46\n0xA6FE\t0x4F63\n0xA740\t0x4F5C\n0xA741\t0x4F60\n0xA742\t0x4F2F\n0xA743\t0x4F4E\n0xA744\t0x4F36\n0xA745\t0x4F59\n0xA746\t0x4F5D\n0xA747\t0x4F48\n0xA748\t0x4F5A\n0xA749\t0x514C\n0xA74A\t0x514B\n0xA74B\t0x514D\n0xA74C\t0x5175\n0xA74D\t0x51B6\n0xA74E\t0x51B7\n0xA74F\t0x5225\n0xA750\t0x5224\n0xA751\t0x5229\n0xA752\t0x522A\n0xA753\t0x5228\n0xA754\t0x52AB\n0xA755\t0x52A9\n0xA756\t0x52AA\n0xA757\t0x52AC\n0xA758\t0x5323\n0xA759\t0x5373\n0xA75A\t0x5375\n0xA75B\t0x541D\n0xA75C\t0x542D\n0xA75D\t0x541E\n0xA75E\t0x543E\n0xA75F\t0x5426\n0xA760\t0x544E\n0xA761\t0x5427\n0xA762\t0x5446\n0xA763\t0x5443\n0xA764\t0x5433\n0xA765\t0x5448\n0xA766\t0x5442\n0xA767\t0x541B\n0xA768\t0x5429\n0xA769\t0x544A\n0xA76A\t0x5439\n0xA76B\t0x543B\n0xA76C\t0x5438\n0xA76D\t0x542E\n0xA76E\t0x5435\n0xA76F\t0x5436\n0xA770\t0x5420\n0xA771\t0x543C\n0xA772\t0x5440\n0xA773\t0x5431\n0xA774\t0x542B\n0xA775\t0x541F\n0xA776\t0x542C\n0xA777\t0x56EA\n0xA778\t0x56F0\n0xA779\t0x56E4\n0xA77A\t0x56EB\n0xA77B\t0x574A\n0xA77C\t0x5751\n0xA77D\t0x5740\n0xA77E\t0x574D\n0xA7A1\t0x5747\n0xA7A2\t0x574E\n0xA7A3\t0x573E\n0xA7A4\t0x5750\n0xA7A5\t0x574F\n0xA7A6\t0x573B\n0xA7A7\t0x58EF\n0xA7A8\t0x593E\n0xA7A9\t0x599D\n0xA7AA\t0x5992\n0xA7AB\t0x59A8\n0xA7AC\t0x599E\n0xA7AD\t0x59A3\n0xA7AE\t0x5999\n0xA7AF\t0x5996\n0xA7B0\t0x598D\n0xA7B1\t0x59A4\n0xA7B2\t0x5993\n0xA7B3\t0x598A\n0xA7B4\t0x59A5\n0xA7B5\t0x5B5D\n0xA7B6\t0x5B5C\n0xA7B7\t0x5B5A\n0xA7B8\t0x5B5B\n0xA7B9\t0x5B8C\n0xA7BA\t0x5B8B\n0xA7BB\t0x5B8F\n0xA7BC\t0x5C2C\n0xA7BD\t0x5C40\n0xA7BE\t0x5C41\n0xA7BF\t0x5C3F\n0xA7C0\t0x5C3E\n0xA7C1\t0x5C90\n0xA7C2\t0x5C91\n0xA7C3\t0x5C94\n0xA7C4\t0x5C8C\n0xA7C5\t0x5DEB\n0xA7C6\t0x5E0C\n0xA7C7\t0x5E8F\n0xA7C8\t0x5E87\n0xA7C9\t0x5E8A\n0xA7CA\t0x5EF7\n0xA7CB\t0x5F04\n0xA7CC\t0x5F1F\n0xA7CD\t0x5F64\n0xA7CE\t0x5F62\n0xA7CF\t0x5F77\n0xA7D0\t0x5F79\n0xA7D1\t0x5FD8\n0xA7D2\t0x5FCC\n0xA7D3\t0x5FD7\n0xA7D4\t0x5FCD\n0xA7D5\t0x5FF1\n0xA7D6\t0x5FEB\n0xA7D7\t0x5FF8\n0xA7D8\t0x5FEA\n0xA7D9\t0x6212\n0xA7DA\t0x6211\n0xA7DB\t0x6284\n0xA7DC\t0x6297\n0xA7DD\t0x6296\n0xA7DE\t0x6280\n0xA7DF\t0x6276\n0xA7E0\t0x6289\n0xA7E1\t0x626D\n0xA7E2\t0x628A\n0xA7E3\t0x627C\n0xA7E4\t0x627E\n0xA7E5\t0x6279\n0xA7E6\t0x6273\n0xA7E7\t0x6292\n0xA7E8\t0x626F\n0xA7E9\t0x6298\n0xA7EA\t0x626E\n0xA7EB\t0x6295\n0xA7EC\t0x6293\n0xA7ED\t0x6291\n0xA7EE\t0x6286\n0xA7EF\t0x6539\n0xA7F0\t0x653B\n0xA7F1\t0x6538\n0xA7F2\t0x65F1\n0xA7F3\t0x66F4\n0xA7F4\t0x675F\n0xA7F5\t0x674E\n0xA7F6\t0x674F\n0xA7F7\t0x6750\n0xA7F8\t0x6751\n0xA7F9\t0x675C\n0xA7FA\t0x6756\n0xA7FB\t0x675E\n0xA7FC\t0x6749\n0xA7FD\t0x6746\n0xA7FE\t0x6760\n0xA840\t0x6753\n0xA841\t0x6757\n0xA842\t0x6B65\n0xA843\t0x6BCF\n0xA844\t0x6C42\n0xA845\t0x6C5E\n0xA846\t0x6C99\n0xA847\t0x6C81\n0xA848\t0x6C88\n0xA849\t0x6C89\n0xA84A\t0x6C85\n0xA84B\t0x6C9B\n0xA84C\t0x6C6A\n0xA84D\t0x6C7A\n0xA84E\t0x6C90\n0xA84F\t0x6C70\n0xA850\t0x6C8C\n0xA851\t0x6C68\n0xA852\t0x6C96\n0xA853\t0x6C92\n0xA854\t0x6C7D\n0xA855\t0x6C83\n0xA856\t0x6C72\n0xA857\t0x6C7E\n0xA858\t0x6C74\n0xA859\t0x6C86\n0xA85A\t0x6C76\n0xA85B\t0x6C8D\n0xA85C\t0x6C94\n0xA85D\t0x6C98\n0xA85E\t0x6C82\n0xA85F\t0x7076\n0xA860\t0x707C\n0xA861\t0x707D\n0xA862\t0x7078\n0xA863\t0x7262\n0xA864\t0x7261\n0xA865\t0x7260\n0xA866\t0x72C4\n0xA867\t0x72C2\n0xA868\t0x7396\n0xA869\t0x752C\n0xA86A\t0x752B\n0xA86B\t0x7537\n0xA86C\t0x7538\n0xA86D\t0x7682\n0xA86E\t0x76EF\n0xA86F\t0x77E3\n0xA870\t0x79C1\n0xA871\t0x79C0\n0xA872\t0x79BF\n0xA873\t0x7A76\n0xA874\t0x7CFB\n0xA875\t0x7F55\n0xA876\t0x8096\n0xA877\t0x8093\n0xA878\t0x809D\n0xA879\t0x8098\n0xA87A\t0x809B\n0xA87B\t0x809A\n0xA87C\t0x80B2\n0xA87D\t0x826F\n0xA87E\t0x8292\n0xA8A1\t0x828B\n0xA8A2\t0x828D\n0xA8A3\t0x898B\n0xA8A4\t0x89D2\n0xA8A5\t0x8A00\n0xA8A6\t0x8C37\n0xA8A7\t0x8C46\n0xA8A8\t0x8C55\n0xA8A9\t0x8C9D\n0xA8AA\t0x8D64\n0xA8AB\t0x8D70\n0xA8AC\t0x8DB3\n0xA8AD\t0x8EAB\n0xA8AE\t0x8ECA\n0xA8AF\t0x8F9B\n0xA8B0\t0x8FB0\n0xA8B1\t0x8FC2\n0xA8B2\t0x8FC6\n0xA8B3\t0x8FC5\n0xA8B4\t0x8FC4\n0xA8B5\t0x5DE1\n0xA8B6\t0x9091\n0xA8B7\t0x90A2\n0xA8B8\t0x90AA\n0xA8B9\t0x90A6\n0xA8BA\t0x90A3\n0xA8BB\t0x9149\n0xA8BC\t0x91C6\n0xA8BD\t0x91CC\n0xA8BE\t0x9632\n0xA8BF\t0x962E\n0xA8C0\t0x9631\n0xA8C1\t0x962A\n0xA8C2\t0x962C\n0xA8C3\t0x4E26\n0xA8C4\t0x4E56\n0xA8C5\t0x4E73\n0xA8C6\t0x4E8B\n0xA8C7\t0x4E9B\n0xA8C8\t0x4E9E\n0xA8C9\t0x4EAB\n0xA8CA\t0x4EAC\n0xA8CB\t0x4F6F\n0xA8CC\t0x4F9D\n0xA8CD\t0x4F8D\n0xA8CE\t0x4F73\n0xA8CF\t0x4F7F\n0xA8D0\t0x4F6C\n0xA8D1\t0x4F9B\n0xA8D2\t0x4F8B\n0xA8D3\t0x4F86\n0xA8D4\t0x4F83\n0xA8D5\t0x4F70\n0xA8D6\t0x4F75\n0xA8D7\t0x4F88\n0xA8D8\t0x4F69\n0xA8D9\t0x4F7B\n0xA8DA\t0x4F96\n0xA8DB\t0x4F7E\n0xA8DC\t0x4F8F\n0xA8DD\t0x4F91\n0xA8DE\t0x4F7A\n0xA8DF\t0x5154\n0xA8E0\t0x5152\n0xA8E1\t0x5155\n0xA8E2\t0x5169\n0xA8E3\t0x5177\n0xA8E4\t0x5176\n0xA8E5\t0x5178\n0xA8E6\t0x51BD\n0xA8E7\t0x51FD\n0xA8E8\t0x523B\n0xA8E9\t0x5238\n0xA8EA\t0x5237\n0xA8EB\t0x523A\n0xA8EC\t0x5230\n0xA8ED\t0x522E\n0xA8EE\t0x5236\n0xA8EF\t0x5241\n0xA8F0\t0x52BE\n0xA8F1\t0x52BB\n0xA8F2\t0x5352\n0xA8F3\t0x5354\n0xA8F4\t0x5353\n0xA8F5\t0x5351\n0xA8F6\t0x5366\n0xA8F7\t0x5377\n0xA8F8\t0x5378\n0xA8F9\t0x5379\n0xA8FA\t0x53D6\n0xA8FB\t0x53D4\n0xA8FC\t0x53D7\n0xA8FD\t0x5473\n0xA8FE\t0x5475\n0xA940\t0x5496\n0xA941\t0x5478\n0xA942\t0x5495\n0xA943\t0x5480\n0xA944\t0x547B\n0xA945\t0x5477\n0xA946\t0x5484\n0xA947\t0x5492\n0xA948\t0x5486\n0xA949\t0x547C\n0xA94A\t0x5490\n0xA94B\t0x5471\n0xA94C\t0x5476\n0xA94D\t0x548C\n0xA94E\t0x549A\n0xA94F\t0x5462\n0xA950\t0x5468\n0xA951\t0x548B\n0xA952\t0x547D\n0xA953\t0x548E\n0xA954\t0x56FA\n0xA955\t0x5783\n0xA956\t0x5777\n0xA957\t0x576A\n0xA958\t0x5769\n0xA959\t0x5761\n0xA95A\t0x5766\n0xA95B\t0x5764\n0xA95C\t0x577C\n0xA95D\t0x591C\n0xA95E\t0x5949\n0xA95F\t0x5947\n0xA960\t0x5948\n0xA961\t0x5944\n0xA962\t0x5954\n0xA963\t0x59BE\n0xA964\t0x59BB\n0xA965\t0x59D4\n0xA966\t0x59B9\n0xA967\t0x59AE\n0xA968\t0x59D1\n0xA969\t0x59C6\n0xA96A\t0x59D0\n0xA96B\t0x59CD\n0xA96C\t0x59CB\n0xA96D\t0x59D3\n0xA96E\t0x59CA\n0xA96F\t0x59AF\n0xA970\t0x59B3\n0xA971\t0x59D2\n0xA972\t0x59C5\n0xA973\t0x5B5F\n0xA974\t0x5B64\n0xA975\t0x5B63\n0xA976\t0x5B97\n0xA977\t0x5B9A\n0xA978\t0x5B98\n0xA979\t0x5B9C\n0xA97A\t0x5B99\n0xA97B\t0x5B9B\n0xA97C\t0x5C1A\n0xA97D\t0x5C48\n0xA97E\t0x5C45\n0xA9A1\t0x5C46\n0xA9A2\t0x5CB7\n0xA9A3\t0x5CA1\n0xA9A4\t0x5CB8\n0xA9A5\t0x5CA9\n0xA9A6\t0x5CAB\n0xA9A7\t0x5CB1\n0xA9A8\t0x5CB3\n0xA9A9\t0x5E18\n0xA9AA\t0x5E1A\n0xA9AB\t0x5E16\n0xA9AC\t0x5E15\n0xA9AD\t0x5E1B\n0xA9AE\t0x5E11\n0xA9AF\t0x5E78\n0xA9B0\t0x5E9A\n0xA9B1\t0x5E97\n0xA9B2\t0x5E9C\n0xA9B3\t0x5E95\n0xA9B4\t0x5E96\n0xA9B5\t0x5EF6\n0xA9B6\t0x5F26\n0xA9B7\t0x5F27\n0xA9B8\t0x5F29\n0xA9B9\t0x5F80\n0xA9BA\t0x5F81\n0xA9BB\t0x5F7F\n0xA9BC\t0x5F7C\n0xA9BD\t0x5FDD\n0xA9BE\t0x5FE0\n0xA9BF\t0x5FFD\n0xA9C0\t0x5FF5\n0xA9C1\t0x5FFF\n0xA9C2\t0x600F\n0xA9C3\t0x6014\n0xA9C4\t0x602F\n0xA9C5\t0x6035\n0xA9C6\t0x6016\n0xA9C7\t0x602A\n0xA9C8\t0x6015\n0xA9C9\t0x6021\n0xA9CA\t0x6027\n0xA9CB\t0x6029\n0xA9CC\t0x602B\n0xA9CD\t0x601B\n0xA9CE\t0x6216\n0xA9CF\t0x6215\n0xA9D0\t0x623F\n0xA9D1\t0x623E\n0xA9D2\t0x6240\n0xA9D3\t0x627F\n0xA9D4\t0x62C9\n0xA9D5\t0x62CC\n0xA9D6\t0x62C4\n0xA9D7\t0x62BF\n0xA9D8\t0x62C2\n0xA9D9\t0x62B9\n0xA9DA\t0x62D2\n0xA9DB\t0x62DB\n0xA9DC\t0x62AB\n0xA9DD\t0x62D3\n0xA9DE\t0x62D4\n0xA9DF\t0x62CB\n0xA9E0\t0x62C8\n0xA9E1\t0x62A8\n0xA9E2\t0x62BD\n0xA9E3\t0x62BC\n0xA9E4\t0x62D0\n0xA9E5\t0x62D9\n0xA9E6\t0x62C7\n0xA9E7\t0x62CD\n0xA9E8\t0x62B5\n0xA9E9\t0x62DA\n0xA9EA\t0x62B1\n0xA9EB\t0x62D8\n0xA9EC\t0x62D6\n0xA9ED\t0x62D7\n0xA9EE\t0x62C6\n0xA9EF\t0x62AC\n0xA9F0\t0x62CE\n0xA9F1\t0x653E\n0xA9F2\t0x65A7\n0xA9F3\t0x65BC\n0xA9F4\t0x65FA\n0xA9F5\t0x6614\n0xA9F6\t0x6613\n0xA9F7\t0x660C\n0xA9F8\t0x6606\n0xA9F9\t0x6602\n0xA9FA\t0x660E\n0xA9FB\t0x6600\n0xA9FC\t0x660F\n0xA9FD\t0x6615\n0xA9FE\t0x660A\n0xAA40\t0x6607\n0xAA41\t0x670D\n0xAA42\t0x670B\n0xAA43\t0x676D\n0xAA44\t0x678B\n0xAA45\t0x6795\n0xAA46\t0x6771\n0xAA47\t0x679C\n0xAA48\t0x6773\n0xAA49\t0x6777\n0xAA4A\t0x6787\n0xAA4B\t0x679D\n0xAA4C\t0x6797\n0xAA4D\t0x676F\n0xAA4E\t0x6770\n0xAA4F\t0x677F\n0xAA50\t0x6789\n0xAA51\t0x677E\n0xAA52\t0x6790\n0xAA53\t0x6775\n0xAA54\t0x679A\n0xAA55\t0x6793\n0xAA56\t0x677C\n0xAA57\t0x676A\n0xAA58\t0x6772\n0xAA59\t0x6B23\n0xAA5A\t0x6B66\n0xAA5B\t0x6B67\n0xAA5C\t0x6B7F\n0xAA5D\t0x6C13\n0xAA5E\t0x6C1B\n0xAA5F\t0x6CE3\n0xAA60\t0x6CE8\n0xAA61\t0x6CF3\n0xAA62\t0x6CB1\n0xAA63\t0x6CCC\n0xAA64\t0x6CE5\n0xAA65\t0x6CB3\n0xAA66\t0x6CBD\n0xAA67\t0x6CBE\n0xAA68\t0x6CBC\n0xAA69\t0x6CE2\n0xAA6A\t0x6CAB\n0xAA6B\t0x6CD5\n0xAA6C\t0x6CD3\n0xAA6D\t0x6CB8\n0xAA6E\t0x6CC4\n0xAA6F\t0x6CB9\n0xAA70\t0x6CC1\n0xAA71\t0x6CAE\n0xAA72\t0x6CD7\n0xAA73\t0x6CC5\n0xAA74\t0x6CF1\n0xAA75\t0x6CBF\n0xAA76\t0x6CBB\n0xAA77\t0x6CE1\n0xAA78\t0x6CDB\n0xAA79\t0x6CCA\n0xAA7A\t0x6CAC\n0xAA7B\t0x6CEF\n0xAA7C\t0x6CDC\n0xAA7D\t0x6CD6\n0xAA7E\t0x6CE0\n0xAAA1\t0x7095\n0xAAA2\t0x708E\n0xAAA3\t0x7092\n0xAAA4\t0x708A\n0xAAA5\t0x7099\n0xAAA6\t0x722C\n0xAAA7\t0x722D\n0xAAA8\t0x7238\n0xAAA9\t0x7248\n0xAAAA\t0x7267\n0xAAAB\t0x7269\n0xAAAC\t0x72C0\n0xAAAD\t0x72CE\n0xAAAE\t0x72D9\n0xAAAF\t0x72D7\n0xAAB0\t0x72D0\n0xAAB1\t0x73A9\n0xAAB2\t0x73A8\n0xAAB3\t0x739F\n0xAAB4\t0x73AB\n0xAAB5\t0x73A5\n0xAAB6\t0x753D\n0xAAB7\t0x759D\n0xAAB8\t0x7599\n0xAAB9\t0x759A\n0xAABA\t0x7684\n0xAABB\t0x76C2\n0xAABC\t0x76F2\n0xAABD\t0x76F4\n0xAABE\t0x77E5\n0xAABF\t0x77FD\n0xAAC0\t0x793E\n0xAAC1\t0x7940\n0xAAC2\t0x7941\n0xAAC3\t0x79C9\n0xAAC4\t0x79C8\n0xAAC5\t0x7A7A\n0xAAC6\t0x7A79\n0xAAC7\t0x7AFA\n0xAAC8\t0x7CFE\n0xAAC9\t0x7F54\n0xAACA\t0x7F8C\n0xAACB\t0x7F8B\n0xAACC\t0x8005\n0xAACD\t0x80BA\n0xAACE\t0x80A5\n0xAACF\t0x80A2\n0xAAD0\t0x80B1\n0xAAD1\t0x80A1\n0xAAD2\t0x80AB\n0xAAD3\t0x80A9\n0xAAD4\t0x80B4\n0xAAD5\t0x80AA\n0xAAD6\t0x80AF\n0xAAD7\t0x81E5\n0xAAD8\t0x81FE\n0xAAD9\t0x820D\n0xAADA\t0x82B3\n0xAADB\t0x829D\n0xAADC\t0x8299\n0xAADD\t0x82AD\n0xAADE\t0x82BD\n0xAADF\t0x829F\n0xAAE0\t0x82B9\n0xAAE1\t0x82B1\n0xAAE2\t0x82AC\n0xAAE3\t0x82A5\n0xAAE4\t0x82AF\n0xAAE5\t0x82B8\n0xAAE6\t0x82A3\n0xAAE7\t0x82B0\n0xAAE8\t0x82BE\n0xAAE9\t0x82B7\n0xAAEA\t0x864E\n0xAAEB\t0x8671\n0xAAEC\t0x521D\n0xAAED\t0x8868\n0xAAEE\t0x8ECB\n0xAAEF\t0x8FCE\n0xAAF0\t0x8FD4\n0xAAF1\t0x8FD1\n0xAAF2\t0x90B5\n0xAAF3\t0x90B8\n0xAAF4\t0x90B1\n0xAAF5\t0x90B6\n0xAAF6\t0x91C7\n0xAAF7\t0x91D1\n0xAAF8\t0x9577\n0xAAF9\t0x9580\n0xAAFA\t0x961C\n0xAAFB\t0x9640\n0xAAFC\t0x963F\n0xAAFD\t0x963B\n0xAAFE\t0x9644\n0xAB40\t0x9642\n0xAB41\t0x96B9\n0xAB42\t0x96E8\n0xAB43\t0x9752\n0xAB44\t0x975E\n0xAB45\t0x4E9F\n0xAB46\t0x4EAD\n0xAB47\t0x4EAE\n0xAB48\t0x4FE1\n0xAB49\t0x4FB5\n0xAB4A\t0x4FAF\n0xAB4B\t0x4FBF\n0xAB4C\t0x4FE0\n0xAB4D\t0x4FD1\n0xAB4E\t0x4FCF\n0xAB4F\t0x4FDD\n0xAB50\t0x4FC3\n0xAB51\t0x4FB6\n0xAB52\t0x4FD8\n0xAB53\t0x4FDF\n0xAB54\t0x4FCA\n0xAB55\t0x4FD7\n0xAB56\t0x4FAE\n0xAB57\t0x4FD0\n0xAB58\t0x4FC4\n0xAB59\t0x4FC2\n0xAB5A\t0x4FDA\n0xAB5B\t0x4FCE\n0xAB5C\t0x4FDE\n0xAB5D\t0x4FB7\n0xAB5E\t0x5157\n0xAB5F\t0x5192\n0xAB60\t0x5191\n0xAB61\t0x51A0\n0xAB62\t0x524E\n0xAB63\t0x5243\n0xAB64\t0x524A\n0xAB65\t0x524D\n0xAB66\t0x524C\n0xAB67\t0x524B\n0xAB68\t0x5247\n0xAB69\t0x52C7\n0xAB6A\t0x52C9\n0xAB6B\t0x52C3\n0xAB6C\t0x52C1\n0xAB6D\t0x530D\n0xAB6E\t0x5357\n0xAB6F\t0x537B\n0xAB70\t0x539A\n0xAB71\t0x53DB\n0xAB72\t0x54AC\n0xAB73\t0x54C0\n0xAB74\t0x54A8\n0xAB75\t0x54CE\n0xAB76\t0x54C9\n0xAB77\t0x54B8\n0xAB78\t0x54A6\n0xAB79\t0x54B3\n0xAB7A\t0x54C7\n0xAB7B\t0x54C2\n0xAB7C\t0x54BD\n0xAB7D\t0x54AA\n0xAB7E\t0x54C1\n0xABA1\t0x54C4\n0xABA2\t0x54C8\n0xABA3\t0x54AF\n0xABA4\t0x54AB\n0xABA5\t0x54B1\n0xABA6\t0x54BB\n0xABA7\t0x54A9\n0xABA8\t0x54A7\n0xABA9\t0x54BF\n0xABAA\t0x56FF\n0xABAB\t0x5782\n0xABAC\t0x578B\n0xABAD\t0x57A0\n0xABAE\t0x57A3\n0xABAF\t0x57A2\n0xABB0\t0x57CE\n0xABB1\t0x57AE\n0xABB2\t0x5793\n0xABB3\t0x5955\n0xABB4\t0x5951\n0xABB5\t0x594F\n0xABB6\t0x594E\n0xABB7\t0x5950\n0xABB8\t0x59DC\n0xABB9\t0x59D8\n0xABBA\t0x59FF\n0xABBB\t0x59E3\n0xABBC\t0x59E8\n0xABBD\t0x5A03\n0xABBE\t0x59E5\n0xABBF\t0x59EA\n0xABC0\t0x59DA\n0xABC1\t0x59E6\n0xABC2\t0x5A01\n0xABC3\t0x59FB\n0xABC4\t0x5B69\n0xABC5\t0x5BA3\n0xABC6\t0x5BA6\n0xABC7\t0x5BA4\n0xABC8\t0x5BA2\n0xABC9\t0x5BA5\n0xABCA\t0x5C01\n0xABCB\t0x5C4E\n0xABCC\t0x5C4F\n0xABCD\t0x5C4D\n0xABCE\t0x5C4B\n0xABCF\t0x5CD9\n0xABD0\t0x5CD2\n0xABD1\t0x5DF7\n0xABD2\t0x5E1D\n0xABD3\t0x5E25\n0xABD4\t0x5E1F\n0xABD5\t0x5E7D\n0xABD6\t0x5EA0\n0xABD7\t0x5EA6\n0xABD8\t0x5EFA\n0xABD9\t0x5F08\n0xABDA\t0x5F2D\n0xABDB\t0x5F65\n0xABDC\t0x5F88\n0xABDD\t0x5F85\n0xABDE\t0x5F8A\n0xABDF\t0x5F8B\n0xABE0\t0x5F87\n0xABE1\t0x5F8C\n0xABE2\t0x5F89\n0xABE3\t0x6012\n0xABE4\t0x601D\n0xABE5\t0x6020\n0xABE6\t0x6025\n0xABE7\t0x600E\n0xABE8\t0x6028\n0xABE9\t0x604D\n0xABEA\t0x6070\n0xABEB\t0x6068\n0xABEC\t0x6062\n0xABED\t0x6046\n0xABEE\t0x6043\n0xABEF\t0x606C\n0xABF0\t0x606B\n0xABF1\t0x606A\n0xABF2\t0x6064\n0xABF3\t0x6241\n0xABF4\t0x62DC\n0xABF5\t0x6316\n0xABF6\t0x6309\n0xABF7\t0x62FC\n0xABF8\t0x62ED\n0xABF9\t0x6301\n0xABFA\t0x62EE\n0xABFB\t0x62FD\n0xABFC\t0x6307\n0xABFD\t0x62F1\n0xABFE\t0x62F7\n0xAC40\t0x62EF\n0xAC41\t0x62EC\n0xAC42\t0x62FE\n0xAC43\t0x62F4\n0xAC44\t0x6311\n0xAC45\t0x6302\n0xAC46\t0x653F\n0xAC47\t0x6545\n0xAC48\t0x65AB\n0xAC49\t0x65BD\n0xAC4A\t0x65E2\n0xAC4B\t0x6625\n0xAC4C\t0x662D\n0xAC4D\t0x6620\n0xAC4E\t0x6627\n0xAC4F\t0x662F\n0xAC50\t0x661F\n0xAC51\t0x6628\n0xAC52\t0x6631\n0xAC53\t0x6624\n0xAC54\t0x66F7\n0xAC55\t0x67FF\n0xAC56\t0x67D3\n0xAC57\t0x67F1\n0xAC58\t0x67D4\n0xAC59\t0x67D0\n0xAC5A\t0x67EC\n0xAC5B\t0x67B6\n0xAC5C\t0x67AF\n0xAC5D\t0x67F5\n0xAC5E\t0x67E9\n0xAC5F\t0x67EF\n0xAC60\t0x67C4\n0xAC61\t0x67D1\n0xAC62\t0x67B4\n0xAC63\t0x67DA\n0xAC64\t0x67E5\n0xAC65\t0x67B8\n0xAC66\t0x67CF\n0xAC67\t0x67DE\n0xAC68\t0x67F3\n0xAC69\t0x67B0\n0xAC6A\t0x67D9\n0xAC6B\t0x67E2\n0xAC6C\t0x67DD\n0xAC6D\t0x67D2\n0xAC6E\t0x6B6A\n0xAC6F\t0x6B83\n0xAC70\t0x6B86\n0xAC71\t0x6BB5\n0xAC72\t0x6BD2\n0xAC73\t0x6BD7\n0xAC74\t0x6C1F\n0xAC75\t0x6CC9\n0xAC76\t0x6D0B\n0xAC77\t0x6D32\n0xAC78\t0x6D2A\n0xAC79\t0x6D41\n0xAC7A\t0x6D25\n0xAC7B\t0x6D0C\n0xAC7C\t0x6D31\n0xAC7D\t0x6D1E\n0xAC7E\t0x6D17\n0xACA1\t0x6D3B\n0xACA2\t0x6D3D\n0xACA3\t0x6D3E\n0xACA4\t0x6D36\n0xACA5\t0x6D1B\n0xACA6\t0x6CF5\n0xACA7\t0x6D39\n0xACA8\t0x6D27\n0xACA9\t0x6D38\n0xACAA\t0x6D29\n0xACAB\t0x6D2E\n0xACAC\t0x6D35\n0xACAD\t0x6D0E\n0xACAE\t0x6D2B\n0xACAF\t0x70AB\n0xACB0\t0x70BA\n0xACB1\t0x70B3\n0xACB2\t0x70AC\n0xACB3\t0x70AF\n0xACB4\t0x70AD\n0xACB5\t0x70B8\n0xACB6\t0x70AE\n0xACB7\t0x70A4\n0xACB8\t0x7230\n0xACB9\t0x7272\n0xACBA\t0x726F\n0xACBB\t0x7274\n0xACBC\t0x72E9\n0xACBD\t0x72E0\n0xACBE\t0x72E1\n0xACBF\t0x73B7\n0xACC0\t0x73CA\n0xACC1\t0x73BB\n0xACC2\t0x73B2\n0xACC3\t0x73CD\n0xACC4\t0x73C0\n0xACC5\t0x73B3\n0xACC6\t0x751A\n0xACC7\t0x752D\n0xACC8\t0x754F\n0xACC9\t0x754C\n0xACCA\t0x754E\n0xACCB\t0x754B\n0xACCC\t0x75AB\n0xACCD\t0x75A4\n0xACCE\t0x75A5\n0xACCF\t0x75A2\n0xACD0\t0x75A3\n0xACD1\t0x7678\n0xACD2\t0x7686\n0xACD3\t0x7687\n0xACD4\t0x7688\n0xACD5\t0x76C8\n0xACD6\t0x76C6\n0xACD7\t0x76C3\n0xACD8\t0x76C5\n0xACD9\t0x7701\n0xACDA\t0x76F9\n0xACDB\t0x76F8\n0xACDC\t0x7709\n0xACDD\t0x770B\n0xACDE\t0x76FE\n0xACDF\t0x76FC\n0xACE0\t0x7707\n0xACE1\t0x77DC\n0xACE2\t0x7802\n0xACE3\t0x7814\n0xACE4\t0x780C\n0xACE5\t0x780D\n0xACE6\t0x7946\n0xACE7\t0x7949\n0xACE8\t0x7948\n0xACE9\t0x7947\n0xACEA\t0x79B9\n0xACEB\t0x79BA\n0xACEC\t0x79D1\n0xACED\t0x79D2\n0xACEE\t0x79CB\n0xACEF\t0x7A7F\n0xACF0\t0x7A81\n0xACF1\t0x7AFF\n0xACF2\t0x7AFD\n0xACF3\t0x7C7D\n0xACF4\t0x7D02\n0xACF5\t0x7D05\n0xACF6\t0x7D00\n0xACF7\t0x7D09\n0xACF8\t0x7D07\n0xACF9\t0x7D04\n0xACFA\t0x7D06\n0xACFB\t0x7F38\n0xACFC\t0x7F8E\n0xACFD\t0x7FBF\n0xACFE\t0x8004\n0xAD40\t0x8010\n0xAD41\t0x800D\n0xAD42\t0x8011\n0xAD43\t0x8036\n0xAD44\t0x80D6\n0xAD45\t0x80E5\n0xAD46\t0x80DA\n0xAD47\t0x80C3\n0xAD48\t0x80C4\n0xAD49\t0x80CC\n0xAD4A\t0x80E1\n0xAD4B\t0x80DB\n0xAD4C\t0x80CE\n0xAD4D\t0x80DE\n0xAD4E\t0x80E4\n0xAD4F\t0x80DD\n0xAD50\t0x81F4\n0xAD51\t0x8222\n0xAD52\t0x82E7\n0xAD53\t0x8303\n0xAD54\t0x8305\n0xAD55\t0x82E3\n0xAD56\t0x82DB\n0xAD57\t0x82E6\n0xAD58\t0x8304\n0xAD59\t0x82E5\n0xAD5A\t0x8302\n0xAD5B\t0x8309\n0xAD5C\t0x82D2\n0xAD5D\t0x82D7\n0xAD5E\t0x82F1\n0xAD5F\t0x8301\n0xAD60\t0x82DC\n0xAD61\t0x82D4\n0xAD62\t0x82D1\n0xAD63\t0x82DE\n0xAD64\t0x82D3\n0xAD65\t0x82DF\n0xAD66\t0x82EF\n0xAD67\t0x8306\n0xAD68\t0x8650\n0xAD69\t0x8679\n0xAD6A\t0x867B\n0xAD6B\t0x867A\n0xAD6C\t0x884D\n0xAD6D\t0x886B\n0xAD6E\t0x8981\n0xAD6F\t0x89D4\n0xAD70\t0x8A08\n0xAD71\t0x8A02\n0xAD72\t0x8A03\n0xAD73\t0x8C9E\n0xAD74\t0x8CA0\n0xAD75\t0x8D74\n0xAD76\t0x8D73\n0xAD77\t0x8DB4\n0xAD78\t0x8ECD\n0xAD79\t0x8ECC\n0xAD7A\t0x8FF0\n0xAD7B\t0x8FE6\n0xAD7C\t0x8FE2\n0xAD7D\t0x8FEA\n0xAD7E\t0x8FE5\n0xADA1\t0x8FED\n0xADA2\t0x8FEB\n0xADA3\t0x8FE4\n0xADA4\t0x8FE8\n0xADA5\t0x90CA\n0xADA6\t0x90CE\n0xADA7\t0x90C1\n0xADA8\t0x90C3\n0xADA9\t0x914B\n0xADAA\t0x914A\n0xADAB\t0x91CD\n0xADAC\t0x9582\n0xADAD\t0x9650\n0xADAE\t0x964B\n0xADAF\t0x964C\n0xADB0\t0x964D\n0xADB1\t0x9762\n0xADB2\t0x9769\n0xADB3\t0x97CB\n0xADB4\t0x97ED\n0xADB5\t0x97F3\n0xADB6\t0x9801\n0xADB7\t0x98A8\n0xADB8\t0x98DB\n0xADB9\t0x98DF\n0xADBA\t0x9996\n0xADBB\t0x9999\n0xADBC\t0x4E58\n0xADBD\t0x4EB3\n0xADBE\t0x500C\n0xADBF\t0x500D\n0xADC0\t0x5023\n0xADC1\t0x4FEF\n0xADC2\t0x5026\n0xADC3\t0x5025\n0xADC4\t0x4FF8\n0xADC5\t0x5029\n0xADC6\t0x5016\n0xADC7\t0x5006\n0xADC8\t0x503C\n0xADC9\t0x501F\n0xADCA\t0x501A\n0xADCB\t0x5012\n0xADCC\t0x5011\n0xADCD\t0x4FFA\n0xADCE\t0x5000\n0xADCF\t0x5014\n0xADD0\t0x5028\n0xADD1\t0x4FF1\n0xADD2\t0x5021\n0xADD3\t0x500B\n0xADD4\t0x5019\n0xADD5\t0x5018\n0xADD6\t0x4FF3\n0xADD7\t0x4FEE\n0xADD8\t0x502D\n0xADD9\t0x502A\n0xADDA\t0x4FFE\n0xADDB\t0x502B\n0xADDC\t0x5009\n0xADDD\t0x517C\n0xADDE\t0x51A4\n0xADDF\t0x51A5\n0xADE0\t0x51A2\n0xADE1\t0x51CD\n0xADE2\t0x51CC\n0xADE3\t0x51C6\n0xADE4\t0x51CB\n0xADE5\t0x5256\n0xADE6\t0x525C\n0xADE7\t0x5254\n0xADE8\t0x525B\n0xADE9\t0x525D\n0xADEA\t0x532A\n0xADEB\t0x537F\n0xADEC\t0x539F\n0xADED\t0x539D\n0xADEE\t0x53DF\n0xADEF\t0x54E8\n0xADF0\t0x5510\n0xADF1\t0x5501\n0xADF2\t0x5537\n0xADF3\t0x54FC\n0xADF4\t0x54E5\n0xADF5\t0x54F2\n0xADF6\t0x5506\n0xADF7\t0x54FA\n0xADF8\t0x5514\n0xADF9\t0x54E9\n0xADFA\t0x54ED\n0xADFB\t0x54E1\n0xADFC\t0x5509\n0xADFD\t0x54EE\n0xADFE\t0x54EA\n0xAE40\t0x54E6\n0xAE41\t0x5527\n0xAE42\t0x5507\n0xAE43\t0x54FD\n0xAE44\t0x550F\n0xAE45\t0x5703\n0xAE46\t0x5704\n0xAE47\t0x57C2\n0xAE48\t0x57D4\n0xAE49\t0x57CB\n0xAE4A\t0x57C3\n0xAE4B\t0x5809\n0xAE4C\t0x590F\n0xAE4D\t0x5957\n0xAE4E\t0x5958\n0xAE4F\t0x595A\n0xAE50\t0x5A11\n0xAE51\t0x5A18\n0xAE52\t0x5A1C\n0xAE53\t0x5A1F\n0xAE54\t0x5A1B\n0xAE55\t0x5A13\n0xAE56\t0x59EC\n0xAE57\t0x5A20\n0xAE58\t0x5A23\n0xAE59\t0x5A29\n0xAE5A\t0x5A25\n0xAE5B\t0x5A0C\n0xAE5C\t0x5A09\n0xAE5D\t0x5B6B\n0xAE5E\t0x5C58\n0xAE5F\t0x5BB0\n0xAE60\t0x5BB3\n0xAE61\t0x5BB6\n0xAE62\t0x5BB4\n0xAE63\t0x5BAE\n0xAE64\t0x5BB5\n0xAE65\t0x5BB9\n0xAE66\t0x5BB8\n0xAE67\t0x5C04\n0xAE68\t0x5C51\n0xAE69\t0x5C55\n0xAE6A\t0x5C50\n0xAE6B\t0x5CED\n0xAE6C\t0x5CFD\n0xAE6D\t0x5CFB\n0xAE6E\t0x5CEA\n0xAE6F\t0x5CE8\n0xAE70\t0x5CF0\n0xAE71\t0x5CF6\n0xAE72\t0x5D01\n0xAE73\t0x5CF4\n0xAE74\t0x5DEE\n0xAE75\t0x5E2D\n0xAE76\t0x5E2B\n0xAE77\t0x5EAB\n0xAE78\t0x5EAD\n0xAE79\t0x5EA7\n0xAE7A\t0x5F31\n0xAE7B\t0x5F92\n0xAE7C\t0x5F91\n0xAE7D\t0x5F90\n0xAE7E\t0x6059\n0xAEA1\t0x6063\n0xAEA2\t0x6065\n0xAEA3\t0x6050\n0xAEA4\t0x6055\n0xAEA5\t0x606D\n0xAEA6\t0x6069\n0xAEA7\t0x606F\n0xAEA8\t0x6084\n0xAEA9\t0x609F\n0xAEAA\t0x609A\n0xAEAB\t0x608D\n0xAEAC\t0x6094\n0xAEAD\t0x608C\n0xAEAE\t0x6085\n0xAEAF\t0x6096\n0xAEB0\t0x6247\n0xAEB1\t0x62F3\n0xAEB2\t0x6308\n0xAEB3\t0x62FF\n0xAEB4\t0x634E\n0xAEB5\t0x633E\n0xAEB6\t0x632F\n0xAEB7\t0x6355\n0xAEB8\t0x6342\n0xAEB9\t0x6346\n0xAEBA\t0x634F\n0xAEBB\t0x6349\n0xAEBC\t0x633A\n0xAEBD\t0x6350\n0xAEBE\t0x633D\n0xAEBF\t0x632A\n0xAEC0\t0x632B\n0xAEC1\t0x6328\n0xAEC2\t0x634D\n0xAEC3\t0x634C\n0xAEC4\t0x6548\n0xAEC5\t0x6549\n0xAEC6\t0x6599\n0xAEC7\t0x65C1\n0xAEC8\t0x65C5\n0xAEC9\t0x6642\n0xAECA\t0x6649\n0xAECB\t0x664F\n0xAECC\t0x6643\n0xAECD\t0x6652\n0xAECE\t0x664C\n0xAECF\t0x6645\n0xAED0\t0x6641\n0xAED1\t0x66F8\n0xAED2\t0x6714\n0xAED3\t0x6715\n0xAED4\t0x6717\n0xAED5\t0x6821\n0xAED6\t0x6838\n0xAED7\t0x6848\n0xAED8\t0x6846\n0xAED9\t0x6853\n0xAEDA\t0x6839\n0xAEDB\t0x6842\n0xAEDC\t0x6854\n0xAEDD\t0x6829\n0xAEDE\t0x68B3\n0xAEDF\t0x6817\n0xAEE0\t0x684C\n0xAEE1\t0x6851\n0xAEE2\t0x683D\n0xAEE3\t0x67F4\n0xAEE4\t0x6850\n0xAEE5\t0x6840\n0xAEE6\t0x683C\n0xAEE7\t0x6843\n0xAEE8\t0x682A\n0xAEE9\t0x6845\n0xAEEA\t0x6813\n0xAEEB\t0x6818\n0xAEEC\t0x6841\n0xAEED\t0x6B8A\n0xAEEE\t0x6B89\n0xAEEF\t0x6BB7\n0xAEF0\t0x6C23\n0xAEF1\t0x6C27\n0xAEF2\t0x6C28\n0xAEF3\t0x6C26\n0xAEF4\t0x6C24\n0xAEF5\t0x6CF0\n0xAEF6\t0x6D6A\n0xAEF7\t0x6D95\n0xAEF8\t0x6D88\n0xAEF9\t0x6D87\n0xAEFA\t0x6D66\n0xAEFB\t0x6D78\n0xAEFC\t0x6D77\n0xAEFD\t0x6D59\n0xAEFE\t0x6D93\n0xAF40\t0x6D6C\n0xAF41\t0x6D89\n0xAF42\t0x6D6E\n0xAF43\t0x6D5A\n0xAF44\t0x6D74\n0xAF45\t0x6D69\n0xAF46\t0x6D8C\n0xAF47\t0x6D8A\n0xAF48\t0x6D79\n0xAF49\t0x6D85\n0xAF4A\t0x6D65\n0xAF4B\t0x6D94\n0xAF4C\t0x70CA\n0xAF4D\t0x70D8\n0xAF4E\t0x70E4\n0xAF4F\t0x70D9\n0xAF50\t0x70C8\n0xAF51\t0x70CF\n0xAF52\t0x7239\n0xAF53\t0x7279\n0xAF54\t0x72FC\n0xAF55\t0x72F9\n0xAF56\t0x72FD\n0xAF57\t0x72F8\n0xAF58\t0x72F7\n0xAF59\t0x7386\n0xAF5A\t0x73ED\n0xAF5B\t0x7409\n0xAF5C\t0x73EE\n0xAF5D\t0x73E0\n0xAF5E\t0x73EA\n0xAF5F\t0x73DE\n0xAF60\t0x7554\n0xAF61\t0x755D\n0xAF62\t0x755C\n0xAF63\t0x755A\n0xAF64\t0x7559\n0xAF65\t0x75BE\n0xAF66\t0x75C5\n0xAF67\t0x75C7\n0xAF68\t0x75B2\n0xAF69\t0x75B3\n0xAF6A\t0x75BD\n0xAF6B\t0x75BC\n0xAF6C\t0x75B9\n0xAF6D\t0x75C2\n0xAF6E\t0x75B8\n0xAF6F\t0x768B\n0xAF70\t0x76B0\n0xAF71\t0x76CA\n0xAF72\t0x76CD\n0xAF73\t0x76CE\n0xAF74\t0x7729\n0xAF75\t0x771F\n0xAF76\t0x7720\n0xAF77\t0x7728\n0xAF78\t0x77E9\n0xAF79\t0x7830\n0xAF7A\t0x7827\n0xAF7B\t0x7838\n0xAF7C\t0x781D\n0xAF7D\t0x7834\n0xAF7E\t0x7837\n0xAFA1\t0x7825\n0xAFA2\t0x782D\n0xAFA3\t0x7820\n0xAFA4\t0x781F\n0xAFA5\t0x7832\n0xAFA6\t0x7955\n0xAFA7\t0x7950\n0xAFA8\t0x7960\n0xAFA9\t0x795F\n0xAFAA\t0x7956\n0xAFAB\t0x795E\n0xAFAC\t0x795D\n0xAFAD\t0x7957\n0xAFAE\t0x795A\n0xAFAF\t0x79E4\n0xAFB0\t0x79E3\n0xAFB1\t0x79E7\n0xAFB2\t0x79DF\n0xAFB3\t0x79E6\n0xAFB4\t0x79E9\n0xAFB5\t0x79D8\n0xAFB6\t0x7A84\n0xAFB7\t0x7A88\n0xAFB8\t0x7AD9\n0xAFB9\t0x7B06\n0xAFBA\t0x7B11\n0xAFBB\t0x7C89\n0xAFBC\t0x7D21\n0xAFBD\t0x7D17\n0xAFBE\t0x7D0B\n0xAFBF\t0x7D0A\n0xAFC0\t0x7D20\n0xAFC1\t0x7D22\n0xAFC2\t0x7D14\n0xAFC3\t0x7D10\n0xAFC4\t0x7D15\n0xAFC5\t0x7D1A\n0xAFC6\t0x7D1C\n0xAFC7\t0x7D0D\n0xAFC8\t0x7D19\n0xAFC9\t0x7D1B\n0xAFCA\t0x7F3A\n0xAFCB\t0x7F5F\n0xAFCC\t0x7F94\n0xAFCD\t0x7FC5\n0xAFCE\t0x7FC1\n0xAFCF\t0x8006\n0xAFD0\t0x8018\n0xAFD1\t0x8015\n0xAFD2\t0x8019\n0xAFD3\t0x8017\n0xAFD4\t0x803D\n0xAFD5\t0x803F\n0xAFD6\t0x80F1\n0xAFD7\t0x8102\n0xAFD8\t0x80F0\n0xAFD9\t0x8105\n0xAFDA\t0x80ED\n0xAFDB\t0x80F4\n0xAFDC\t0x8106\n0xAFDD\t0x80F8\n0xAFDE\t0x80F3\n0xAFDF\t0x8108\n0xAFE0\t0x80FD\n0xAFE1\t0x810A\n0xAFE2\t0x80FC\n0xAFE3\t0x80EF\n0xAFE4\t0x81ED\n0xAFE5\t0x81EC\n0xAFE6\t0x8200\n0xAFE7\t0x8210\n0xAFE8\t0x822A\n0xAFE9\t0x822B\n0xAFEA\t0x8228\n0xAFEB\t0x822C\n0xAFEC\t0x82BB\n0xAFED\t0x832B\n0xAFEE\t0x8352\n0xAFEF\t0x8354\n0xAFF0\t0x834A\n0xAFF1\t0x8338\n0xAFF2\t0x8350\n0xAFF3\t0x8349\n0xAFF4\t0x8335\n0xAFF5\t0x8334\n0xAFF6\t0x834F\n0xAFF7\t0x8332\n0xAFF8\t0x8339\n0xAFF9\t0x8336\n0xAFFA\t0x8317\n0xAFFB\t0x8340\n0xAFFC\t0x8331\n0xAFFD\t0x8328\n0xAFFE\t0x8343\n0xB040\t0x8654\n0xB041\t0x868A\n0xB042\t0x86AA\n0xB043\t0x8693\n0xB044\t0x86A4\n0xB045\t0x86A9\n0xB046\t0x868C\n0xB047\t0x86A3\n0xB048\t0x869C\n0xB049\t0x8870\n0xB04A\t0x8877\n0xB04B\t0x8881\n0xB04C\t0x8882\n0xB04D\t0x887D\n0xB04E\t0x8879\n0xB04F\t0x8A18\n0xB050\t0x8A10\n0xB051\t0x8A0E\n0xB052\t0x8A0C\n0xB053\t0x8A15\n0xB054\t0x8A0A\n0xB055\t0x8A17\n0xB056\t0x8A13\n0xB057\t0x8A16\n0xB058\t0x8A0F\n0xB059\t0x8A11\n0xB05A\t0x8C48\n0xB05B\t0x8C7A\n0xB05C\t0x8C79\n0xB05D\t0x8CA1\n0xB05E\t0x8CA2\n0xB05F\t0x8D77\n0xB060\t0x8EAC\n0xB061\t0x8ED2\n0xB062\t0x8ED4\n0xB063\t0x8ECF\n0xB064\t0x8FB1\n0xB065\t0x9001\n0xB066\t0x9006\n0xB067\t0x8FF7\n0xB068\t0x9000\n0xB069\t0x8FFA\n0xB06A\t0x8FF4\n0xB06B\t0x9003\n0xB06C\t0x8FFD\n0xB06D\t0x9005\n0xB06E\t0x8FF8\n0xB06F\t0x9095\n0xB070\t0x90E1\n0xB071\t0x90DD\n0xB072\t0x90E2\n0xB073\t0x9152\n0xB074\t0x914D\n0xB075\t0x914C\n0xB076\t0x91D8\n0xB077\t0x91DD\n0xB078\t0x91D7\n0xB079\t0x91DC\n0xB07A\t0x91D9\n0xB07B\t0x9583\n0xB07C\t0x9662\n0xB07D\t0x9663\n0xB07E\t0x9661\n0xB0A1\t0x965B\n0xB0A2\t0x965D\n0xB0A3\t0x9664\n0xB0A4\t0x9658\n0xB0A5\t0x965E\n0xB0A6\t0x96BB\n0xB0A7\t0x98E2\n0xB0A8\t0x99AC\n0xB0A9\t0x9AA8\n0xB0AA\t0x9AD8\n0xB0AB\t0x9B25\n0xB0AC\t0x9B32\n0xB0AD\t0x9B3C\n0xB0AE\t0x4E7E\n0xB0AF\t0x507A\n0xB0B0\t0x507D\n0xB0B1\t0x505C\n0xB0B2\t0x5047\n0xB0B3\t0x5043\n0xB0B4\t0x504C\n0xB0B5\t0x505A\n0xB0B6\t0x5049\n0xB0B7\t0x5065\n0xB0B8\t0x5076\n0xB0B9\t0x504E\n0xB0BA\t0x5055\n0xB0BB\t0x5075\n0xB0BC\t0x5074\n0xB0BD\t0x5077\n0xB0BE\t0x504F\n0xB0BF\t0x500F\n0xB0C0\t0x506F\n0xB0C1\t0x506D\n0xB0C2\t0x515C\n0xB0C3\t0x5195\n0xB0C4\t0x51F0\n0xB0C5\t0x526A\n0xB0C6\t0x526F\n0xB0C7\t0x52D2\n0xB0C8\t0x52D9\n0xB0C9\t0x52D8\n0xB0CA\t0x52D5\n0xB0CB\t0x5310\n0xB0CC\t0x530F\n0xB0CD\t0x5319\n0xB0CE\t0x533F\n0xB0CF\t0x5340\n0xB0D0\t0x533E\n0xB0D1\t0x53C3\n0xB0D2\t0x66FC\n0xB0D3\t0x5546\n0xB0D4\t0x556A\n0xB0D5\t0x5566\n0xB0D6\t0x5544\n0xB0D7\t0x555E\n0xB0D8\t0x5561\n0xB0D9\t0x5543\n0xB0DA\t0x554A\n0xB0DB\t0x5531\n0xB0DC\t0x5556\n0xB0DD\t0x554F\n0xB0DE\t0x5555\n0xB0DF\t0x552F\n0xB0E0\t0x5564\n0xB0E1\t0x5538\n0xB0E2\t0x552E\n0xB0E3\t0x555C\n0xB0E4\t0x552C\n0xB0E5\t0x5563\n0xB0E6\t0x5533\n0xB0E7\t0x5541\n0xB0E8\t0x5557\n0xB0E9\t0x5708\n0xB0EA\t0x570B\n0xB0EB\t0x5709\n0xB0EC\t0x57DF\n0xB0ED\t0x5805\n0xB0EE\t0x580A\n0xB0EF\t0x5806\n0xB0F0\t0x57E0\n0xB0F1\t0x57E4\n0xB0F2\t0x57FA\n0xB0F3\t0x5802\n0xB0F4\t0x5835\n0xB0F5\t0x57F7\n0xB0F6\t0x57F9\n0xB0F7\t0x5920\n0xB0F8\t0x5962\n0xB0F9\t0x5A36\n0xB0FA\t0x5A41\n0xB0FB\t0x5A49\n0xB0FC\t0x5A66\n0xB0FD\t0x5A6A\n0xB0FE\t0x5A40\n0xB140\t0x5A3C\n0xB141\t0x5A62\n0xB142\t0x5A5A\n0xB143\t0x5A46\n0xB144\t0x5A4A\n0xB145\t0x5B70\n0xB146\t0x5BC7\n0xB147\t0x5BC5\n0xB148\t0x5BC4\n0xB149\t0x5BC2\n0xB14A\t0x5BBF\n0xB14B\t0x5BC6\n0xB14C\t0x5C09\n0xB14D\t0x5C08\n0xB14E\t0x5C07\n0xB14F\t0x5C60\n0xB150\t0x5C5C\n0xB151\t0x5C5D\n0xB152\t0x5D07\n0xB153\t0x5D06\n0xB154\t0x5D0E\n0xB155\t0x5D1B\n0xB156\t0x5D16\n0xB157\t0x5D22\n0xB158\t0x5D11\n0xB159\t0x5D29\n0xB15A\t0x5D14\n0xB15B\t0x5D19\n0xB15C\t0x5D24\n0xB15D\t0x5D27\n0xB15E\t0x5D17\n0xB15F\t0x5DE2\n0xB160\t0x5E38\n0xB161\t0x5E36\n0xB162\t0x5E33\n0xB163\t0x5E37\n0xB164\t0x5EB7\n0xB165\t0x5EB8\n0xB166\t0x5EB6\n0xB167\t0x5EB5\n0xB168\t0x5EBE\n0xB169\t0x5F35\n0xB16A\t0x5F37\n0xB16B\t0x5F57\n0xB16C\t0x5F6C\n0xB16D\t0x5F69\n0xB16E\t0x5F6B\n0xB16F\t0x5F97\n0xB170\t0x5F99\n0xB171\t0x5F9E\n0xB172\t0x5F98\n0xB173\t0x5FA1\n0xB174\t0x5FA0\n0xB175\t0x5F9C\n0xB176\t0x607F\n0xB177\t0x60A3\n0xB178\t0x6089\n0xB179\t0x60A0\n0xB17A\t0x60A8\n0xB17B\t0x60CB\n0xB17C\t0x60B4\n0xB17D\t0x60E6\n0xB17E\t0x60BD\n0xB1A1\t0x60C5\n0xB1A2\t0x60BB\n0xB1A3\t0x60B5\n0xB1A4\t0x60DC\n0xB1A5\t0x60BC\n0xB1A6\t0x60D8\n0xB1A7\t0x60D5\n0xB1A8\t0x60C6\n0xB1A9\t0x60DF\n0xB1AA\t0x60B8\n0xB1AB\t0x60DA\n0xB1AC\t0x60C7\n0xB1AD\t0x621A\n0xB1AE\t0x621B\n0xB1AF\t0x6248\n0xB1B0\t0x63A0\n0xB1B1\t0x63A7\n0xB1B2\t0x6372\n0xB1B3\t0x6396\n0xB1B4\t0x63A2\n0xB1B5\t0x63A5\n0xB1B6\t0x6377\n0xB1B7\t0x6367\n0xB1B8\t0x6398\n0xB1B9\t0x63AA\n0xB1BA\t0x6371\n0xB1BB\t0x63A9\n0xB1BC\t0x6389\n0xB1BD\t0x6383\n0xB1BE\t0x639B\n0xB1BF\t0x636B\n0xB1C0\t0x63A8\n0xB1C1\t0x6384\n0xB1C2\t0x6388\n0xB1C3\t0x6399\n0xB1C4\t0x63A1\n0xB1C5\t0x63AC\n0xB1C6\t0x6392\n0xB1C7\t0x638F\n0xB1C8\t0x6380\n0xB1C9\t0x637B\n0xB1CA\t0x6369\n0xB1CB\t0x6368\n0xB1CC\t0x637A\n0xB1CD\t0x655D\n0xB1CE\t0x6556\n0xB1CF\t0x6551\n0xB1D0\t0x6559\n0xB1D1\t0x6557\n0xB1D2\t0x555F\n0xB1D3\t0x654F\n0xB1D4\t0x6558\n0xB1D5\t0x6555\n0xB1D6\t0x6554\n0xB1D7\t0x659C\n0xB1D8\t0x659B\n0xB1D9\t0x65AC\n0xB1DA\t0x65CF\n0xB1DB\t0x65CB\n0xB1DC\t0x65CC\n0xB1DD\t0x65CE\n0xB1DE\t0x665D\n0xB1DF\t0x665A\n0xB1E0\t0x6664\n0xB1E1\t0x6668\n0xB1E2\t0x6666\n0xB1E3\t0x665E\n0xB1E4\t0x66F9\n0xB1E5\t0x52D7\n0xB1E6\t0x671B\n0xB1E7\t0x6881\n0xB1E8\t0x68AF\n0xB1E9\t0x68A2\n0xB1EA\t0x6893\n0xB1EB\t0x68B5\n0xB1EC\t0x687F\n0xB1ED\t0x6876\n0xB1EE\t0x68B1\n0xB1EF\t0x68A7\n0xB1F0\t0x6897\n0xB1F1\t0x68B0\n0xB1F2\t0x6883\n0xB1F3\t0x68C4\n0xB1F4\t0x68AD\n0xB1F5\t0x6886\n0xB1F6\t0x6885\n0xB1F7\t0x6894\n0xB1F8\t0x689D\n0xB1F9\t0x68A8\n0xB1FA\t0x689F\n0xB1FB\t0x68A1\n0xB1FC\t0x6882\n0xB1FD\t0x6B32\n0xB1FE\t0x6BBA\n0xB240\t0x6BEB\n0xB241\t0x6BEC\n0xB242\t0x6C2B\n0xB243\t0x6D8E\n0xB244\t0x6DBC\n0xB245\t0x6DF3\n0xB246\t0x6DD9\n0xB247\t0x6DB2\n0xB248\t0x6DE1\n0xB249\t0x6DCC\n0xB24A\t0x6DE4\n0xB24B\t0x6DFB\n0xB24C\t0x6DFA\n0xB24D\t0x6E05\n0xB24E\t0x6DC7\n0xB24F\t0x6DCB\n0xB250\t0x6DAF\n0xB251\t0x6DD1\n0xB252\t0x6DAE\n0xB253\t0x6DDE\n0xB254\t0x6DF9\n0xB255\t0x6DB8\n0xB256\t0x6DF7\n0xB257\t0x6DF5\n0xB258\t0x6DC5\n0xB259\t0x6DD2\n0xB25A\t0x6E1A\n0xB25B\t0x6DB5\n0xB25C\t0x6DDA\n0xB25D\t0x6DEB\n0xB25E\t0x6DD8\n0xB25F\t0x6DEA\n0xB260\t0x6DF1\n0xB261\t0x6DEE\n0xB262\t0x6DE8\n0xB263\t0x6DC6\n0xB264\t0x6DC4\n0xB265\t0x6DAA\n0xB266\t0x6DEC\n0xB267\t0x6DBF\n0xB268\t0x6DE6\n0xB269\t0x70F9\n0xB26A\t0x7109\n0xB26B\t0x710A\n0xB26C\t0x70FD\n0xB26D\t0x70EF\n0xB26E\t0x723D\n0xB26F\t0x727D\n0xB270\t0x7281\n0xB271\t0x731C\n0xB272\t0x731B\n0xB273\t0x7316\n0xB274\t0x7313\n0xB275\t0x7319\n0xB276\t0x7387\n0xB277\t0x7405\n0xB278\t0x740A\n0xB279\t0x7403\n0xB27A\t0x7406\n0xB27B\t0x73FE\n0xB27C\t0x740D\n0xB27D\t0x74E0\n0xB27E\t0x74F6\n0xB2A1\t0x74F7\n0xB2A2\t0x751C\n0xB2A3\t0x7522\n0xB2A4\t0x7565\n0xB2A5\t0x7566\n0xB2A6\t0x7562\n0xB2A7\t0x7570\n0xB2A8\t0x758F\n0xB2A9\t0x75D4\n0xB2AA\t0x75D5\n0xB2AB\t0x75B5\n0xB2AC\t0x75CA\n0xB2AD\t0x75CD\n0xB2AE\t0x768E\n0xB2AF\t0x76D4\n0xB2B0\t0x76D2\n0xB2B1\t0x76DB\n0xB2B2\t0x7737\n0xB2B3\t0x773E\n0xB2B4\t0x773C\n0xB2B5\t0x7736\n0xB2B6\t0x7738\n0xB2B7\t0x773A\n0xB2B8\t0x786B\n0xB2B9\t0x7843\n0xB2BA\t0x784E\n0xB2BB\t0x7965\n0xB2BC\t0x7968\n0xB2BD\t0x796D\n0xB2BE\t0x79FB\n0xB2BF\t0x7A92\n0xB2C0\t0x7A95\n0xB2C1\t0x7B20\n0xB2C2\t0x7B28\n0xB2C3\t0x7B1B\n0xB2C4\t0x7B2C\n0xB2C5\t0x7B26\n0xB2C6\t0x7B19\n0xB2C7\t0x7B1E\n0xB2C8\t0x7B2E\n0xB2C9\t0x7C92\n0xB2CA\t0x7C97\n0xB2CB\t0x7C95\n0xB2CC\t0x7D46\n0xB2CD\t0x7D43\n0xB2CE\t0x7D71\n0xB2CF\t0x7D2E\n0xB2D0\t0x7D39\n0xB2D1\t0x7D3C\n0xB2D2\t0x7D40\n0xB2D3\t0x7D30\n0xB2D4\t0x7D33\n0xB2D5\t0x7D44\n0xB2D6\t0x7D2F\n0xB2D7\t0x7D42\n0xB2D8\t0x7D32\n0xB2D9\t0x7D31\n0xB2DA\t0x7F3D\n0xB2DB\t0x7F9E\n0xB2DC\t0x7F9A\n0xB2DD\t0x7FCC\n0xB2DE\t0x7FCE\n0xB2DF\t0x7FD2\n0xB2E0\t0x801C\n0xB2E1\t0x804A\n0xB2E2\t0x8046\n0xB2E3\t0x812F\n0xB2E4\t0x8116\n0xB2E5\t0x8123\n0xB2E6\t0x812B\n0xB2E7\t0x8129\n0xB2E8\t0x8130\n0xB2E9\t0x8124\n0xB2EA\t0x8202\n0xB2EB\t0x8235\n0xB2EC\t0x8237\n0xB2ED\t0x8236\n0xB2EE\t0x8239\n0xB2EF\t0x838E\n0xB2F0\t0x839E\n0xB2F1\t0x8398\n0xB2F2\t0x8378\n0xB2F3\t0x83A2\n0xB2F4\t0x8396\n0xB2F5\t0x83BD\n0xB2F6\t0x83AB\n0xB2F7\t0x8392\n0xB2F8\t0x838A\n0xB2F9\t0x8393\n0xB2FA\t0x8389\n0xB2FB\t0x83A0\n0xB2FC\t0x8377\n0xB2FD\t0x837B\n0xB2FE\t0x837C\n0xB340\t0x8386\n0xB341\t0x83A7\n0xB342\t0x8655\n0xB343\t0x5F6A\n0xB344\t0x86C7\n0xB345\t0x86C0\n0xB346\t0x86B6\n0xB347\t0x86C4\n0xB348\t0x86B5\n0xB349\t0x86C6\n0xB34A\t0x86CB\n0xB34B\t0x86B1\n0xB34C\t0x86AF\n0xB34D\t0x86C9\n0xB34E\t0x8853\n0xB34F\t0x889E\n0xB350\t0x8888\n0xB351\t0x88AB\n0xB352\t0x8892\n0xB353\t0x8896\n0xB354\t0x888D\n0xB355\t0x888B\n0xB356\t0x8993\n0xB357\t0x898F\n0xB358\t0x8A2A\n0xB359\t0x8A1D\n0xB35A\t0x8A23\n0xB35B\t0x8A25\n0xB35C\t0x8A31\n0xB35D\t0x8A2D\n0xB35E\t0x8A1F\n0xB35F\t0x8A1B\n0xB360\t0x8A22\n0xB361\t0x8C49\n0xB362\t0x8C5A\n0xB363\t0x8CA9\n0xB364\t0x8CAC\n0xB365\t0x8CAB\n0xB366\t0x8CA8\n0xB367\t0x8CAA\n0xB368\t0x8CA7\n0xB369\t0x8D67\n0xB36A\t0x8D66\n0xB36B\t0x8DBE\n0xB36C\t0x8DBA\n0xB36D\t0x8EDB\n0xB36E\t0x8EDF\n0xB36F\t0x9019\n0xB370\t0x900D\n0xB371\t0x901A\n0xB372\t0x9017\n0xB373\t0x9023\n0xB374\t0x901F\n0xB375\t0x901D\n0xB376\t0x9010\n0xB377\t0x9015\n0xB378\t0x901E\n0xB379\t0x9020\n0xB37A\t0x900F\n0xB37B\t0x9022\n0xB37C\t0x9016\n0xB37D\t0x901B\n0xB37E\t0x9014\n0xB3A1\t0x90E8\n0xB3A2\t0x90ED\n0xB3A3\t0x90FD\n0xB3A4\t0x9157\n0xB3A5\t0x91CE\n0xB3A6\t0x91F5\n0xB3A7\t0x91E6\n0xB3A8\t0x91E3\n0xB3A9\t0x91E7\n0xB3AA\t0x91ED\n0xB3AB\t0x91E9\n0xB3AC\t0x9589\n0xB3AD\t0x966A\n0xB3AE\t0x9675\n0xB3AF\t0x9673\n0xB3B0\t0x9678\n0xB3B1\t0x9670\n0xB3B2\t0x9674\n0xB3B3\t0x9676\n0xB3B4\t0x9677\n0xB3B5\t0x966C\n0xB3B6\t0x96C0\n0xB3B7\t0x96EA\n0xB3B8\t0x96E9\n0xB3B9\t0x7AE0\n0xB3BA\t0x7ADF\n0xB3BB\t0x9802\n0xB3BC\t0x9803\n0xB3BD\t0x9B5A\n0xB3BE\t0x9CE5\n0xB3BF\t0x9E75\n0xB3C0\t0x9E7F\n0xB3C1\t0x9EA5\n0xB3C2\t0x9EBB\n0xB3C3\t0x50A2\n0xB3C4\t0x508D\n0xB3C5\t0x5085\n0xB3C6\t0x5099\n0xB3C7\t0x5091\n0xB3C8\t0x5080\n0xB3C9\t0x5096\n0xB3CA\t0x5098\n0xB3CB\t0x509A\n0xB3CC\t0x6700\n0xB3CD\t0x51F1\n0xB3CE\t0x5272\n0xB3CF\t0x5274\n0xB3D0\t0x5275\n0xB3D1\t0x5269\n0xB3D2\t0x52DE\n0xB3D3\t0x52DD\n0xB3D4\t0x52DB\n0xB3D5\t0x535A\n0xB3D6\t0x53A5\n0xB3D7\t0x557B\n0xB3D8\t0x5580\n0xB3D9\t0x55A7\n0xB3DA\t0x557C\n0xB3DB\t0x558A\n0xB3DC\t0x559D\n0xB3DD\t0x5598\n0xB3DE\t0x5582\n0xB3DF\t0x559C\n0xB3E0\t0x55AA\n0xB3E1\t0x5594\n0xB3E2\t0x5587\n0xB3E3\t0x558B\n0xB3E4\t0x5583\n0xB3E5\t0x55B3\n0xB3E6\t0x55AE\n0xB3E7\t0x559F\n0xB3E8\t0x553E\n0xB3E9\t0x55B2\n0xB3EA\t0x559A\n0xB3EB\t0x55BB\n0xB3EC\t0x55AC\n0xB3ED\t0x55B1\n0xB3EE\t0x557E\n0xB3EF\t0x5589\n0xB3F0\t0x55AB\n0xB3F1\t0x5599\n0xB3F2\t0x570D\n0xB3F3\t0x582F\n0xB3F4\t0x582A\n0xB3F5\t0x5834\n0xB3F6\t0x5824\n0xB3F7\t0x5830\n0xB3F8\t0x5831\n0xB3F9\t0x5821\n0xB3FA\t0x581D\n0xB3FB\t0x5820\n0xB3FC\t0x58F9\n0xB3FD\t0x58FA\n0xB3FE\t0x5960\n0xB440\t0x5A77\n0xB441\t0x5A9A\n0xB442\t0x5A7F\n0xB443\t0x5A92\n0xB444\t0x5A9B\n0xB445\t0x5AA7\n0xB446\t0x5B73\n0xB447\t0x5B71\n0xB448\t0x5BD2\n0xB449\t0x5BCC\n0xB44A\t0x5BD3\n0xB44B\t0x5BD0\n0xB44C\t0x5C0A\n0xB44D\t0x5C0B\n0xB44E\t0x5C31\n0xB44F\t0x5D4C\n0xB450\t0x5D50\n0xB451\t0x5D34\n0xB452\t0x5D47\n0xB453\t0x5DFD\n0xB454\t0x5E45\n0xB455\t0x5E3D\n0xB456\t0x5E40\n0xB457\t0x5E43\n0xB458\t0x5E7E\n0xB459\t0x5ECA\n0xB45A\t0x5EC1\n0xB45B\t0x5EC2\n0xB45C\t0x5EC4\n0xB45D\t0x5F3C\n0xB45E\t0x5F6D\n0xB45F\t0x5FA9\n0xB460\t0x5FAA\n0xB461\t0x5FA8\n0xB462\t0x60D1\n0xB463\t0x60E1\n0xB464\t0x60B2\n0xB465\t0x60B6\n0xB466\t0x60E0\n0xB467\t0x611C\n0xB468\t0x6123\n0xB469\t0x60FA\n0xB46A\t0x6115\n0xB46B\t0x60F0\n0xB46C\t0x60FB\n0xB46D\t0x60F4\n0xB46E\t0x6168\n0xB46F\t0x60F1\n0xB470\t0x610E\n0xB471\t0x60F6\n0xB472\t0x6109\n0xB473\t0x6100\n0xB474\t0x6112\n0xB475\t0x621F\n0xB476\t0x6249\n0xB477\t0x63A3\n0xB478\t0x638C\n0xB479\t0x63CF\n0xB47A\t0x63C0\n0xB47B\t0x63E9\n0xB47C\t0x63C9\n0xB47D\t0x63C6\n0xB47E\t0x63CD\n0xB4A1\t0x63D2\n0xB4A2\t0x63E3\n0xB4A3\t0x63D0\n0xB4A4\t0x63E1\n0xB4A5\t0x63D6\n0xB4A6\t0x63ED\n0xB4A7\t0x63EE\n0xB4A8\t0x6376\n0xB4A9\t0x63F4\n0xB4AA\t0x63EA\n0xB4AB\t0x63DB\n0xB4AC\t0x6452\n0xB4AD\t0x63DA\n0xB4AE\t0x63F9\n0xB4AF\t0x655E\n0xB4B0\t0x6566\n0xB4B1\t0x6562\n0xB4B2\t0x6563\n0xB4B3\t0x6591\n0xB4B4\t0x6590\n0xB4B5\t0x65AF\n0xB4B6\t0x666E\n0xB4B7\t0x6670\n0xB4B8\t0x6674\n0xB4B9\t0x6676\n0xB4BA\t0x666F\n0xB4BB\t0x6691\n0xB4BC\t0x667A\n0xB4BD\t0x667E\n0xB4BE\t0x6677\n0xB4BF\t0x66FE\n0xB4C0\t0x66FF\n0xB4C1\t0x671F\n0xB4C2\t0x671D\n0xB4C3\t0x68FA\n0xB4C4\t0x68D5\n0xB4C5\t0x68E0\n0xB4C6\t0x68D8\n0xB4C7\t0x68D7\n0xB4C8\t0x6905\n0xB4C9\t0x68DF\n0xB4CA\t0x68F5\n0xB4CB\t0x68EE\n0xB4CC\t0x68E7\n0xB4CD\t0x68F9\n0xB4CE\t0x68D2\n0xB4CF\t0x68F2\n0xB4D0\t0x68E3\n0xB4D1\t0x68CB\n0xB4D2\t0x68CD\n0xB4D3\t0x690D\n0xB4D4\t0x6912\n0xB4D5\t0x690E\n0xB4D6\t0x68C9\n0xB4D7\t0x68DA\n0xB4D8\t0x696E\n0xB4D9\t0x68FB\n0xB4DA\t0x6B3E\n0xB4DB\t0x6B3A\n0xB4DC\t0x6B3D\n0xB4DD\t0x6B98\n0xB4DE\t0x6B96\n0xB4DF\t0x6BBC\n0xB4E0\t0x6BEF\n0xB4E1\t0x6C2E\n0xB4E2\t0x6C2F\n0xB4E3\t0x6C2C\n0xB4E4\t0x6E2F\n0xB4E5\t0x6E38\n0xB4E6\t0x6E54\n0xB4E7\t0x6E21\n0xB4E8\t0x6E32\n0xB4E9\t0x6E67\n0xB4EA\t0x6E4A\n0xB4EB\t0x6E20\n0xB4EC\t0x6E25\n0xB4ED\t0x6E23\n0xB4EE\t0x6E1B\n0xB4EF\t0x6E5B\n0xB4F0\t0x6E58\n0xB4F1\t0x6E24\n0xB4F2\t0x6E56\n0xB4F3\t0x6E6E\n0xB4F4\t0x6E2D\n0xB4F5\t0x6E26\n0xB4F6\t0x6E6F\n0xB4F7\t0x6E34\n0xB4F8\t0x6E4D\n0xB4F9\t0x6E3A\n0xB4FA\t0x6E2C\n0xB4FB\t0x6E43\n0xB4FC\t0x6E1D\n0xB4FD\t0x6E3E\n0xB4FE\t0x6ECB\n0xB540\t0x6E89\n0xB541\t0x6E19\n0xB542\t0x6E4E\n0xB543\t0x6E63\n0xB544\t0x6E44\n0xB545\t0x6E72\n0xB546\t0x6E69\n0xB547\t0x6E5F\n0xB548\t0x7119\n0xB549\t0x711A\n0xB54A\t0x7126\n0xB54B\t0x7130\n0xB54C\t0x7121\n0xB54D\t0x7136\n0xB54E\t0x716E\n0xB54F\t0x711C\n0xB550\t0x724C\n0xB551\t0x7284\n0xB552\t0x7280\n0xB553\t0x7336\n0xB554\t0x7325\n0xB555\t0x7334\n0xB556\t0x7329\n0xB557\t0x743A\n0xB558\t0x742A\n0xB559\t0x7433\n0xB55A\t0x7422\n0xB55B\t0x7425\n0xB55C\t0x7435\n0xB55D\t0x7436\n0xB55E\t0x7434\n0xB55F\t0x742F\n0xB560\t0x741B\n0xB561\t0x7426\n0xB562\t0x7428\n0xB563\t0x7525\n0xB564\t0x7526\n0xB565\t0x756B\n0xB566\t0x756A\n0xB567\t0x75E2\n0xB568\t0x75DB\n0xB569\t0x75E3\n0xB56A\t0x75D9\n0xB56B\t0x75D8\n0xB56C\t0x75DE\n0xB56D\t0x75E0\n0xB56E\t0x767B\n0xB56F\t0x767C\n0xB570\t0x7696\n0xB571\t0x7693\n0xB572\t0x76B4\n0xB573\t0x76DC\n0xB574\t0x774F\n0xB575\t0x77ED\n0xB576\t0x785D\n0xB577\t0x786C\n0xB578\t0x786F\n0xB579\t0x7A0D\n0xB57A\t0x7A08\n0xB57B\t0x7A0B\n0xB57C\t0x7A05\n0xB57D\t0x7A00\n0xB57E\t0x7A98\n0xB5A1\t0x7A97\n0xB5A2\t0x7A96\n0xB5A3\t0x7AE5\n0xB5A4\t0x7AE3\n0xB5A5\t0x7B49\n0xB5A6\t0x7B56\n0xB5A7\t0x7B46\n0xB5A8\t0x7B50\n0xB5A9\t0x7B52\n0xB5AA\t0x7B54\n0xB5AB\t0x7B4D\n0xB5AC\t0x7B4B\n0xB5AD\t0x7B4F\n0xB5AE\t0x7B51\n0xB5AF\t0x7C9F\n0xB5B0\t0x7CA5\n0xB5B1\t0x7D5E\n0xB5B2\t0x7D50\n0xB5B3\t0x7D68\n0xB5B4\t0x7D55\n0xB5B5\t0x7D2B\n0xB5B6\t0x7D6E\n0xB5B7\t0x7D72\n0xB5B8\t0x7D61\n0xB5B9\t0x7D66\n0xB5BA\t0x7D62\n0xB5BB\t0x7D70\n0xB5BC\t0x7D73\n0xB5BD\t0x5584\n0xB5BE\t0x7FD4\n0xB5BF\t0x7FD5\n0xB5C0\t0x800B\n0xB5C1\t0x8052\n0xB5C2\t0x8085\n0xB5C3\t0x8155\n0xB5C4\t0x8154\n0xB5C5\t0x814B\n0xB5C6\t0x8151\n0xB5C7\t0x814E\n0xB5C8\t0x8139\n0xB5C9\t0x8146\n0xB5CA\t0x813E\n0xB5CB\t0x814C\n0xB5CC\t0x8153\n0xB5CD\t0x8174\n0xB5CE\t0x8212\n0xB5CF\t0x821C\n0xB5D0\t0x83E9\n0xB5D1\t0x8403\n0xB5D2\t0x83F8\n0xB5D3\t0x840D\n0xB5D4\t0x83E0\n0xB5D5\t0x83C5\n0xB5D6\t0x840B\n0xB5D7\t0x83C1\n0xB5D8\t0x83EF\n0xB5D9\t0x83F1\n0xB5DA\t0x83F4\n0xB5DB\t0x8457\n0xB5DC\t0x840A\n0xB5DD\t0x83F0\n0xB5DE\t0x840C\n0xB5DF\t0x83CC\n0xB5E0\t0x83FD\n0xB5E1\t0x83F2\n0xB5E2\t0x83CA\n0xB5E3\t0x8438\n0xB5E4\t0x840E\n0xB5E5\t0x8404\n0xB5E6\t0x83DC\n0xB5E7\t0x8407\n0xB5E8\t0x83D4\n0xB5E9\t0x83DF\n0xB5EA\t0x865B\n0xB5EB\t0x86DF\n0xB5EC\t0x86D9\n0xB5ED\t0x86ED\n0xB5EE\t0x86D4\n0xB5EF\t0x86DB\n0xB5F0\t0x86E4\n0xB5F1\t0x86D0\n0xB5F2\t0x86DE\n0xB5F3\t0x8857\n0xB5F4\t0x88C1\n0xB5F5\t0x88C2\n0xB5F6\t0x88B1\n0xB5F7\t0x8983\n0xB5F8\t0x8996\n0xB5F9\t0x8A3B\n0xB5FA\t0x8A60\n0xB5FB\t0x8A55\n0xB5FC\t0x8A5E\n0xB5FD\t0x8A3C\n0xB5FE\t0x8A41\n0xB640\t0x8A54\n0xB641\t0x8A5B\n0xB642\t0x8A50\n0xB643\t0x8A46\n0xB644\t0x8A34\n0xB645\t0x8A3A\n0xB646\t0x8A36\n0xB647\t0x8A56\n0xB648\t0x8C61\n0xB649\t0x8C82\n0xB64A\t0x8CAF\n0xB64B\t0x8CBC\n0xB64C\t0x8CB3\n0xB64D\t0x8CBD\n0xB64E\t0x8CC1\n0xB64F\t0x8CBB\n0xB650\t0x8CC0\n0xB651\t0x8CB4\n0xB652\t0x8CB7\n0xB653\t0x8CB6\n0xB654\t0x8CBF\n0xB655\t0x8CB8\n0xB656\t0x8D8A\n0xB657\t0x8D85\n0xB658\t0x8D81\n0xB659\t0x8DCE\n0xB65A\t0x8DDD\n0xB65B\t0x8DCB\n0xB65C\t0x8DDA\n0xB65D\t0x8DD1\n0xB65E\t0x8DCC\n0xB65F\t0x8DDB\n0xB660\t0x8DC6\n0xB661\t0x8EFB\n0xB662\t0x8EF8\n0xB663\t0x8EFC\n0xB664\t0x8F9C\n0xB665\t0x902E\n0xB666\t0x9035\n0xB667\t0x9031\n0xB668\t0x9038\n0xB669\t0x9032\n0xB66A\t0x9036\n0xB66B\t0x9102\n0xB66C\t0x90F5\n0xB66D\t0x9109\n0xB66E\t0x90FE\n0xB66F\t0x9163\n0xB670\t0x9165\n0xB671\t0x91CF\n0xB672\t0x9214\n0xB673\t0x9215\n0xB674\t0x9223\n0xB675\t0x9209\n0xB676\t0x921E\n0xB677\t0x920D\n0xB678\t0x9210\n0xB679\t0x9207\n0xB67A\t0x9211\n0xB67B\t0x9594\n0xB67C\t0x958F\n0xB67D\t0x958B\n0xB67E\t0x9591\n0xB6A1\t0x9593\n0xB6A2\t0x9592\n0xB6A3\t0x958E\n0xB6A4\t0x968A\n0xB6A5\t0x968E\n0xB6A6\t0x968B\n0xB6A7\t0x967D\n0xB6A8\t0x9685\n0xB6A9\t0x9686\n0xB6AA\t0x968D\n0xB6AB\t0x9672\n0xB6AC\t0x9684\n0xB6AD\t0x96C1\n0xB6AE\t0x96C5\n0xB6AF\t0x96C4\n0xB6B0\t0x96C6\n0xB6B1\t0x96C7\n0xB6B2\t0x96EF\n0xB6B3\t0x96F2\n0xB6B4\t0x97CC\n0xB6B5\t0x9805\n0xB6B6\t0x9806\n0xB6B7\t0x9808\n0xB6B8\t0x98E7\n0xB6B9\t0x98EA\n0xB6BA\t0x98EF\n0xB6BB\t0x98E9\n0xB6BC\t0x98F2\n0xB6BD\t0x98ED\n0xB6BE\t0x99AE\n0xB6BF\t0x99AD\n0xB6C0\t0x9EC3\n0xB6C1\t0x9ECD\n0xB6C2\t0x9ED1\n0xB6C3\t0x4E82\n0xB6C4\t0x50AD\n0xB6C5\t0x50B5\n0xB6C6\t0x50B2\n0xB6C7\t0x50B3\n0xB6C8\t0x50C5\n0xB6C9\t0x50BE\n0xB6CA\t0x50AC\n0xB6CB\t0x50B7\n0xB6CC\t0x50BB\n0xB6CD\t0x50AF\n0xB6CE\t0x50C7\n0xB6CF\t0x527F\n0xB6D0\t0x5277\n0xB6D1\t0x527D\n0xB6D2\t0x52DF\n0xB6D3\t0x52E6\n0xB6D4\t0x52E4\n0xB6D5\t0x52E2\n0xB6D6\t0x52E3\n0xB6D7\t0x532F\n0xB6D8\t0x55DF\n0xB6D9\t0x55E8\n0xB6DA\t0x55D3\n0xB6DB\t0x55E6\n0xB6DC\t0x55CE\n0xB6DD\t0x55DC\n0xB6DE\t0x55C7\n0xB6DF\t0x55D1\n0xB6E0\t0x55E3\n0xB6E1\t0x55E4\n0xB6E2\t0x55EF\n0xB6E3\t0x55DA\n0xB6E4\t0x55E1\n0xB6E5\t0x55C5\n0xB6E6\t0x55C6\n0xB6E7\t0x55E5\n0xB6E8\t0x55C9\n0xB6E9\t0x5712\n0xB6EA\t0x5713\n0xB6EB\t0x585E\n0xB6EC\t0x5851\n0xB6ED\t0x5858\n0xB6EE\t0x5857\n0xB6EF\t0x585A\n0xB6F0\t0x5854\n0xB6F1\t0x586B\n0xB6F2\t0x584C\n0xB6F3\t0x586D\n0xB6F4\t0x584A\n0xB6F5\t0x5862\n0xB6F6\t0x5852\n0xB6F7\t0x584B\n0xB6F8\t0x5967\n0xB6F9\t0x5AC1\n0xB6FA\t0x5AC9\n0xB6FB\t0x5ACC\n0xB6FC\t0x5ABE\n0xB6FD\t0x5ABD\n0xB6FE\t0x5ABC\n0xB740\t0x5AB3\n0xB741\t0x5AC2\n0xB742\t0x5AB2\n0xB743\t0x5D69\n0xB744\t0x5D6F\n0xB745\t0x5E4C\n0xB746\t0x5E79\n0xB747\t0x5EC9\n0xB748\t0x5EC8\n0xB749\t0x5F12\n0xB74A\t0x5F59\n0xB74B\t0x5FAC\n0xB74C\t0x5FAE\n0xB74D\t0x611A\n0xB74E\t0x610F\n0xB74F\t0x6148\n0xB750\t0x611F\n0xB751\t0x60F3\n0xB752\t0x611B\n0xB753\t0x60F9\n0xB754\t0x6101\n0xB755\t0x6108\n0xB756\t0x614E\n0xB757\t0x614C\n0xB758\t0x6144\n0xB759\t0x614D\n0xB75A\t0x613E\n0xB75B\t0x6134\n0xB75C\t0x6127\n0xB75D\t0x610D\n0xB75E\t0x6106\n0xB75F\t0x6137\n0xB760\t0x6221\n0xB761\t0x6222\n0xB762\t0x6413\n0xB763\t0x643E\n0xB764\t0x641E\n0xB765\t0x642A\n0xB766\t0x642D\n0xB767\t0x643D\n0xB768\t0x642C\n0xB769\t0x640F\n0xB76A\t0x641C\n0xB76B\t0x6414\n0xB76C\t0x640D\n0xB76D\t0x6436\n0xB76E\t0x6416\n0xB76F\t0x6417\n0xB770\t0x6406\n0xB771\t0x656C\n0xB772\t0x659F\n0xB773\t0x65B0\n0xB774\t0x6697\n0xB775\t0x6689\n0xB776\t0x6687\n0xB777\t0x6688\n0xB778\t0x6696\n0xB779\t0x6684\n0xB77A\t0x6698\n0xB77B\t0x668D\n0xB77C\t0x6703\n0xB77D\t0x6994\n0xB77E\t0x696D\n0xB7A1\t0x695A\n0xB7A2\t0x6977\n0xB7A3\t0x6960\n0xB7A4\t0x6954\n0xB7A5\t0x6975\n0xB7A6\t0x6930\n0xB7A7\t0x6982\n0xB7A8\t0x694A\n0xB7A9\t0x6968\n0xB7AA\t0x696B\n0xB7AB\t0x695E\n0xB7AC\t0x6953\n0xB7AD\t0x6979\n0xB7AE\t0x6986\n0xB7AF\t0x695D\n0xB7B0\t0x6963\n0xB7B1\t0x695B\n0xB7B2\t0x6B47\n0xB7B3\t0x6B72\n0xB7B4\t0x6BC0\n0xB7B5\t0x6BBF\n0xB7B6\t0x6BD3\n0xB7B7\t0x6BFD\n0xB7B8\t0x6EA2\n0xB7B9\t0x6EAF\n0xB7BA\t0x6ED3\n0xB7BB\t0x6EB6\n0xB7BC\t0x6EC2\n0xB7BD\t0x6E90\n0xB7BE\t0x6E9D\n0xB7BF\t0x6EC7\n0xB7C0\t0x6EC5\n0xB7C1\t0x6EA5\n0xB7C2\t0x6E98\n0xB7C3\t0x6EBC\n0xB7C4\t0x6EBA\n0xB7C5\t0x6EAB\n0xB7C6\t0x6ED1\n0xB7C7\t0x6E96\n0xB7C8\t0x6E9C\n0xB7C9\t0x6EC4\n0xB7CA\t0x6ED4\n0xB7CB\t0x6EAA\n0xB7CC\t0x6EA7\n0xB7CD\t0x6EB4\n0xB7CE\t0x714E\n0xB7CF\t0x7159\n0xB7D0\t0x7169\n0xB7D1\t0x7164\n0xB7D2\t0x7149\n0xB7D3\t0x7167\n0xB7D4\t0x715C\n0xB7D5\t0x716C\n0xB7D6\t0x7166\n0xB7D7\t0x714C\n0xB7D8\t0x7165\n0xB7D9\t0x715E\n0xB7DA\t0x7146\n0xB7DB\t0x7168\n0xB7DC\t0x7156\n0xB7DD\t0x723A\n0xB7DE\t0x7252\n0xB7DF\t0x7337\n0xB7E0\t0x7345\n0xB7E1\t0x733F\n0xB7E2\t0x733E\n0xB7E3\t0x746F\n0xB7E4\t0x745A\n0xB7E5\t0x7455\n0xB7E6\t0x745F\n0xB7E7\t0x745E\n0xB7E8\t0x7441\n0xB7E9\t0x743F\n0xB7EA\t0x7459\n0xB7EB\t0x745B\n0xB7EC\t0x745C\n0xB7ED\t0x7576\n0xB7EE\t0x7578\n0xB7EF\t0x7600\n0xB7F0\t0x75F0\n0xB7F1\t0x7601\n0xB7F2\t0x75F2\n0xB7F3\t0x75F1\n0xB7F4\t0x75FA\n0xB7F5\t0x75FF\n0xB7F6\t0x75F4\n0xB7F7\t0x75F3\n0xB7F8\t0x76DE\n0xB7F9\t0x76DF\n0xB7FA\t0x775B\n0xB7FB\t0x776B\n0xB7FC\t0x7766\n0xB7FD\t0x775E\n0xB7FE\t0x7763\n0xB840\t0x7779\n0xB841\t0x776A\n0xB842\t0x776C\n0xB843\t0x775C\n0xB844\t0x7765\n0xB845\t0x7768\n0xB846\t0x7762\n0xB847\t0x77EE\n0xB848\t0x788E\n0xB849\t0x78B0\n0xB84A\t0x7897\n0xB84B\t0x7898\n0xB84C\t0x788C\n0xB84D\t0x7889\n0xB84E\t0x787C\n0xB84F\t0x7891\n0xB850\t0x7893\n0xB851\t0x787F\n0xB852\t0x797A\n0xB853\t0x797F\n0xB854\t0x7981\n0xB855\t0x842C\n0xB856\t0x79BD\n0xB857\t0x7A1C\n0xB858\t0x7A1A\n0xB859\t0x7A20\n0xB85A\t0x7A14\n0xB85B\t0x7A1F\n0xB85C\t0x7A1E\n0xB85D\t0x7A9F\n0xB85E\t0x7AA0\n0xB85F\t0x7B77\n0xB860\t0x7BC0\n0xB861\t0x7B60\n0xB862\t0x7B6E\n0xB863\t0x7B67\n0xB864\t0x7CB1\n0xB865\t0x7CB3\n0xB866\t0x7CB5\n0xB867\t0x7D93\n0xB868\t0x7D79\n0xB869\t0x7D91\n0xB86A\t0x7D81\n0xB86B\t0x7D8F\n0xB86C\t0x7D5B\n0xB86D\t0x7F6E\n0xB86E\t0x7F69\n0xB86F\t0x7F6A\n0xB870\t0x7F72\n0xB871\t0x7FA9\n0xB872\t0x7FA8\n0xB873\t0x7FA4\n0xB874\t0x8056\n0xB875\t0x8058\n0xB876\t0x8086\n0xB877\t0x8084\n0xB878\t0x8171\n0xB879\t0x8170\n0xB87A\t0x8178\n0xB87B\t0x8165\n0xB87C\t0x816E\n0xB87D\t0x8173\n0xB87E\t0x816B\n0xB8A1\t0x8179\n0xB8A2\t0x817A\n0xB8A3\t0x8166\n0xB8A4\t0x8205\n0xB8A5\t0x8247\n0xB8A6\t0x8482\n0xB8A7\t0x8477\n0xB8A8\t0x843D\n0xB8A9\t0x8431\n0xB8AA\t0x8475\n0xB8AB\t0x8466\n0xB8AC\t0x846B\n0xB8AD\t0x8449\n0xB8AE\t0x846C\n0xB8AF\t0x845B\n0xB8B0\t0x843C\n0xB8B1\t0x8435\n0xB8B2\t0x8461\n0xB8B3\t0x8463\n0xB8B4\t0x8469\n0xB8B5\t0x846D\n0xB8B6\t0x8446\n0xB8B7\t0x865E\n0xB8B8\t0x865C\n0xB8B9\t0x865F\n0xB8BA\t0x86F9\n0xB8BB\t0x8713\n0xB8BC\t0x8708\n0xB8BD\t0x8707\n0xB8BE\t0x8700\n0xB8BF\t0x86FE\n0xB8C0\t0x86FB\n0xB8C1\t0x8702\n0xB8C2\t0x8703\n0xB8C3\t0x8706\n0xB8C4\t0x870A\n0xB8C5\t0x8859\n0xB8C6\t0x88DF\n0xB8C7\t0x88D4\n0xB8C8\t0x88D9\n0xB8C9\t0x88DC\n0xB8CA\t0x88D8\n0xB8CB\t0x88DD\n0xB8CC\t0x88E1\n0xB8CD\t0x88CA\n0xB8CE\t0x88D5\n0xB8CF\t0x88D2\n0xB8D0\t0x899C\n0xB8D1\t0x89E3\n0xB8D2\t0x8A6B\n0xB8D3\t0x8A72\n0xB8D4\t0x8A73\n0xB8D5\t0x8A66\n0xB8D6\t0x8A69\n0xB8D7\t0x8A70\n0xB8D8\t0x8A87\n0xB8D9\t0x8A7C\n0xB8DA\t0x8A63\n0xB8DB\t0x8AA0\n0xB8DC\t0x8A71\n0xB8DD\t0x8A85\n0xB8DE\t0x8A6D\n0xB8DF\t0x8A62\n0xB8E0\t0x8A6E\n0xB8E1\t0x8A6C\n0xB8E2\t0x8A79\n0xB8E3\t0x8A7B\n0xB8E4\t0x8A3E\n0xB8E5\t0x8A68\n0xB8E6\t0x8C62\n0xB8E7\t0x8C8A\n0xB8E8\t0x8C89\n0xB8E9\t0x8CCA\n0xB8EA\t0x8CC7\n0xB8EB\t0x8CC8\n0xB8EC\t0x8CC4\n0xB8ED\t0x8CB2\n0xB8EE\t0x8CC3\n0xB8EF\t0x8CC2\n0xB8F0\t0x8CC5\n0xB8F1\t0x8DE1\n0xB8F2\t0x8DDF\n0xB8F3\t0x8DE8\n0xB8F4\t0x8DEF\n0xB8F5\t0x8DF3\n0xB8F6\t0x8DFA\n0xB8F7\t0x8DEA\n0xB8F8\t0x8DE4\n0xB8F9\t0x8DE6\n0xB8FA\t0x8EB2\n0xB8FB\t0x8F03\n0xB8FC\t0x8F09\n0xB8FD\t0x8EFE\n0xB8FE\t0x8F0A\n0xB940\t0x8F9F\n0xB941\t0x8FB2\n0xB942\t0x904B\n0xB943\t0x904A\n0xB944\t0x9053\n0xB945\t0x9042\n0xB946\t0x9054\n0xB947\t0x903C\n0xB948\t0x9055\n0xB949\t0x9050\n0xB94A\t0x9047\n0xB94B\t0x904F\n0xB94C\t0x904E\n0xB94D\t0x904D\n0xB94E\t0x9051\n0xB94F\t0x903E\n0xB950\t0x9041\n0xB951\t0x9112\n0xB952\t0x9117\n0xB953\t0x916C\n0xB954\t0x916A\n0xB955\t0x9169\n0xB956\t0x91C9\n0xB957\t0x9237\n0xB958\t0x9257\n0xB959\t0x9238\n0xB95A\t0x923D\n0xB95B\t0x9240\n0xB95C\t0x923E\n0xB95D\t0x925B\n0xB95E\t0x924B\n0xB95F\t0x9264\n0xB960\t0x9251\n0xB961\t0x9234\n0xB962\t0x9249\n0xB963\t0x924D\n0xB964\t0x9245\n0xB965\t0x9239\n0xB966\t0x923F\n0xB967\t0x925A\n0xB968\t0x9598\n0xB969\t0x9698\n0xB96A\t0x9694\n0xB96B\t0x9695\n0xB96C\t0x96CD\n0xB96D\t0x96CB\n0xB96E\t0x96C9\n0xB96F\t0x96CA\n0xB970\t0x96F7\n0xB971\t0x96FB\n0xB972\t0x96F9\n0xB973\t0x96F6\n0xB974\t0x9756\n0xB975\t0x9774\n0xB976\t0x9776\n0xB977\t0x9810\n0xB978\t0x9811\n0xB979\t0x9813\n0xB97A\t0x980A\n0xB97B\t0x9812\n0xB97C\t0x980C\n0xB97D\t0x98FC\n0xB97E\t0x98F4\n0xB9A1\t0x98FD\n0xB9A2\t0x98FE\n0xB9A3\t0x99B3\n0xB9A4\t0x99B1\n0xB9A5\t0x99B4\n0xB9A6\t0x9AE1\n0xB9A7\t0x9CE9\n0xB9A8\t0x9E82\n0xB9A9\t0x9F0E\n0xB9AA\t0x9F13\n0xB9AB\t0x9F20\n0xB9AC\t0x50E7\n0xB9AD\t0x50EE\n0xB9AE\t0x50E5\n0xB9AF\t0x50D6\n0xB9B0\t0x50ED\n0xB9B1\t0x50DA\n0xB9B2\t0x50D5\n0xB9B3\t0x50CF\n0xB9B4\t0x50D1\n0xB9B5\t0x50F1\n0xB9B6\t0x50CE\n0xB9B7\t0x50E9\n0xB9B8\t0x5162\n0xB9B9\t0x51F3\n0xB9BA\t0x5283\n0xB9BB\t0x5282\n0xB9BC\t0x5331\n0xB9BD\t0x53AD\n0xB9BE\t0x55FE\n0xB9BF\t0x5600\n0xB9C0\t0x561B\n0xB9C1\t0x5617\n0xB9C2\t0x55FD\n0xB9C3\t0x5614\n0xB9C4\t0x5606\n0xB9C5\t0x5609\n0xB9C6\t0x560D\n0xB9C7\t0x560E\n0xB9C8\t0x55F7\n0xB9C9\t0x5616\n0xB9CA\t0x561F\n0xB9CB\t0x5608\n0xB9CC\t0x5610\n0xB9CD\t0x55F6\n0xB9CE\t0x5718\n0xB9CF\t0x5716\n0xB9D0\t0x5875\n0xB9D1\t0x587E\n0xB9D2\t0x5883\n0xB9D3\t0x5893\n0xB9D4\t0x588A\n0xB9D5\t0x5879\n0xB9D6\t0x5885\n0xB9D7\t0x587D\n0xB9D8\t0x58FD\n0xB9D9\t0x5925\n0xB9DA\t0x5922\n0xB9DB\t0x5924\n0xB9DC\t0x596A\n0xB9DD\t0x5969\n0xB9DE\t0x5AE1\n0xB9DF\t0x5AE6\n0xB9E0\t0x5AE9\n0xB9E1\t0x5AD7\n0xB9E2\t0x5AD6\n0xB9E3\t0x5AD8\n0xB9E4\t0x5AE3\n0xB9E5\t0x5B75\n0xB9E6\t0x5BDE\n0xB9E7\t0x5BE7\n0xB9E8\t0x5BE1\n0xB9E9\t0x5BE5\n0xB9EA\t0x5BE6\n0xB9EB\t0x5BE8\n0xB9EC\t0x5BE2\n0xB9ED\t0x5BE4\n0xB9EE\t0x5BDF\n0xB9EF\t0x5C0D\n0xB9F0\t0x5C62\n0xB9F1\t0x5D84\n0xB9F2\t0x5D87\n0xB9F3\t0x5E5B\n0xB9F4\t0x5E63\n0xB9F5\t0x5E55\n0xB9F6\t0x5E57\n0xB9F7\t0x5E54\n0xB9F8\t0x5ED3\n0xB9F9\t0x5ED6\n0xB9FA\t0x5F0A\n0xB9FB\t0x5F46\n0xB9FC\t0x5F70\n0xB9FD\t0x5FB9\n0xB9FE\t0x6147\n0xBA40\t0x613F\n0xBA41\t0x614B\n0xBA42\t0x6177\n0xBA43\t0x6162\n0xBA44\t0x6163\n0xBA45\t0x615F\n0xBA46\t0x615A\n0xBA47\t0x6158\n0xBA48\t0x6175\n0xBA49\t0x622A\n0xBA4A\t0x6487\n0xBA4B\t0x6458\n0xBA4C\t0x6454\n0xBA4D\t0x64A4\n0xBA4E\t0x6478\n0xBA4F\t0x645F\n0xBA50\t0x647A\n0xBA51\t0x6451\n0xBA52\t0x6467\n0xBA53\t0x6434\n0xBA54\t0x646D\n0xBA55\t0x647B\n0xBA56\t0x6572\n0xBA57\t0x65A1\n0xBA58\t0x65D7\n0xBA59\t0x65D6\n0xBA5A\t0x66A2\n0xBA5B\t0x66A8\n0xBA5C\t0x669D\n0xBA5D\t0x699C\n0xBA5E\t0x69A8\n0xBA5F\t0x6995\n0xBA60\t0x69C1\n0xBA61\t0x69AE\n0xBA62\t0x69D3\n0xBA63\t0x69CB\n0xBA64\t0x699B\n0xBA65\t0x69B7\n0xBA66\t0x69BB\n0xBA67\t0x69AB\n0xBA68\t0x69B4\n0xBA69\t0x69D0\n0xBA6A\t0x69CD\n0xBA6B\t0x69AD\n0xBA6C\t0x69CC\n0xBA6D\t0x69A6\n0xBA6E\t0x69C3\n0xBA6F\t0x69A3\n0xBA70\t0x6B49\n0xBA71\t0x6B4C\n0xBA72\t0x6C33\n0xBA73\t0x6F33\n0xBA74\t0x6F14\n0xBA75\t0x6EFE\n0xBA76\t0x6F13\n0xBA77\t0x6EF4\n0xBA78\t0x6F29\n0xBA79\t0x6F3E\n0xBA7A\t0x6F20\n0xBA7B\t0x6F2C\n0xBA7C\t0x6F0F\n0xBA7D\t0x6F02\n0xBA7E\t0x6F22\n0xBAA1\t0x6EFF\n0xBAA2\t0x6EEF\n0xBAA3\t0x6F06\n0xBAA4\t0x6F31\n0xBAA5\t0x6F38\n0xBAA6\t0x6F32\n0xBAA7\t0x6F23\n0xBAA8\t0x6F15\n0xBAA9\t0x6F2B\n0xBAAA\t0x6F2F\n0xBAAB\t0x6F88\n0xBAAC\t0x6F2A\n0xBAAD\t0x6EEC\n0xBAAE\t0x6F01\n0xBAAF\t0x6EF2\n0xBAB0\t0x6ECC\n0xBAB1\t0x6EF7\n0xBAB2\t0x7194\n0xBAB3\t0x7199\n0xBAB4\t0x717D\n0xBAB5\t0x718A\n0xBAB6\t0x7184\n0xBAB7\t0x7192\n0xBAB8\t0x723E\n0xBAB9\t0x7292\n0xBABA\t0x7296\n0xBABB\t0x7344\n0xBABC\t0x7350\n0xBABD\t0x7464\n0xBABE\t0x7463\n0xBABF\t0x746A\n0xBAC0\t0x7470\n0xBAC1\t0x746D\n0xBAC2\t0x7504\n0xBAC3\t0x7591\n0xBAC4\t0x7627\n0xBAC5\t0x760D\n0xBAC6\t0x760B\n0xBAC7\t0x7609\n0xBAC8\t0x7613\n0xBAC9\t0x76E1\n0xBACA\t0x76E3\n0xBACB\t0x7784\n0xBACC\t0x777D\n0xBACD\t0x777F\n0xBACE\t0x7761\n0xBACF\t0x78C1\n0xBAD0\t0x789F\n0xBAD1\t0x78A7\n0xBAD2\t0x78B3\n0xBAD3\t0x78A9\n0xBAD4\t0x78A3\n0xBAD5\t0x798E\n0xBAD6\t0x798F\n0xBAD7\t0x798D\n0xBAD8\t0x7A2E\n0xBAD9\t0x7A31\n0xBADA\t0x7AAA\n0xBADB\t0x7AA9\n0xBADC\t0x7AED\n0xBADD\t0x7AEF\n0xBADE\t0x7BA1\n0xBADF\t0x7B95\n0xBAE0\t0x7B8B\n0xBAE1\t0x7B75\n0xBAE2\t0x7B97\n0xBAE3\t0x7B9D\n0xBAE4\t0x7B94\n0xBAE5\t0x7B8F\n0xBAE6\t0x7BB8\n0xBAE7\t0x7B87\n0xBAE8\t0x7B84\n0xBAE9\t0x7CB9\n0xBAEA\t0x7CBD\n0xBAEB\t0x7CBE\n0xBAEC\t0x7DBB\n0xBAED\t0x7DB0\n0xBAEE\t0x7D9C\n0xBAEF\t0x7DBD\n0xBAF0\t0x7DBE\n0xBAF1\t0x7DA0\n0xBAF2\t0x7DCA\n0xBAF3\t0x7DB4\n0xBAF4\t0x7DB2\n0xBAF5\t0x7DB1\n0xBAF6\t0x7DBA\n0xBAF7\t0x7DA2\n0xBAF8\t0x7DBF\n0xBAF9\t0x7DB5\n0xBAFA\t0x7DB8\n0xBAFB\t0x7DAD\n0xBAFC\t0x7DD2\n0xBAFD\t0x7DC7\n0xBAFE\t0x7DAC\n0xBB40\t0x7F70\n0xBB41\t0x7FE0\n0xBB42\t0x7FE1\n0xBB43\t0x7FDF\n0xBB44\t0x805E\n0xBB45\t0x805A\n0xBB46\t0x8087\n0xBB47\t0x8150\n0xBB48\t0x8180\n0xBB49\t0x818F\n0xBB4A\t0x8188\n0xBB4B\t0x818A\n0xBB4C\t0x817F\n0xBB4D\t0x8182\n0xBB4E\t0x81E7\n0xBB4F\t0x81FA\n0xBB50\t0x8207\n0xBB51\t0x8214\n0xBB52\t0x821E\n0xBB53\t0x824B\n0xBB54\t0x84C9\n0xBB55\t0x84BF\n0xBB56\t0x84C6\n0xBB57\t0x84C4\n0xBB58\t0x8499\n0xBB59\t0x849E\n0xBB5A\t0x84B2\n0xBB5B\t0x849C\n0xBB5C\t0x84CB\n0xBB5D\t0x84B8\n0xBB5E\t0x84C0\n0xBB5F\t0x84D3\n0xBB60\t0x8490\n0xBB61\t0x84BC\n0xBB62\t0x84D1\n0xBB63\t0x84CA\n0xBB64\t0x873F\n0xBB65\t0x871C\n0xBB66\t0x873B\n0xBB67\t0x8722\n0xBB68\t0x8725\n0xBB69\t0x8734\n0xBB6A\t0x8718\n0xBB6B\t0x8755\n0xBB6C\t0x8737\n0xBB6D\t0x8729\n0xBB6E\t0x88F3\n0xBB6F\t0x8902\n0xBB70\t0x88F4\n0xBB71\t0x88F9\n0xBB72\t0x88F8\n0xBB73\t0x88FD\n0xBB74\t0x88E8\n0xBB75\t0x891A\n0xBB76\t0x88EF\n0xBB77\t0x8AA6\n0xBB78\t0x8A8C\n0xBB79\t0x8A9E\n0xBB7A\t0x8AA3\n0xBB7B\t0x8A8D\n0xBB7C\t0x8AA1\n0xBB7D\t0x8A93\n0xBB7E\t0x8AA4\n0xBBA1\t0x8AAA\n0xBBA2\t0x8AA5\n0xBBA3\t0x8AA8\n0xBBA4\t0x8A98\n0xBBA5\t0x8A91\n0xBBA6\t0x8A9A\n0xBBA7\t0x8AA7\n0xBBA8\t0x8C6A\n0xBBA9\t0x8C8D\n0xBBAA\t0x8C8C\n0xBBAB\t0x8CD3\n0xBBAC\t0x8CD1\n0xBBAD\t0x8CD2\n0xBBAE\t0x8D6B\n0xBBAF\t0x8D99\n0xBBB0\t0x8D95\n0xBBB1\t0x8DFC\n0xBBB2\t0x8F14\n0xBBB3\t0x8F12\n0xBBB4\t0x8F15\n0xBBB5\t0x8F13\n0xBBB6\t0x8FA3\n0xBBB7\t0x9060\n0xBBB8\t0x9058\n0xBBB9\t0x905C\n0xBBBA\t0x9063\n0xBBBB\t0x9059\n0xBBBC\t0x905E\n0xBBBD\t0x9062\n0xBBBE\t0x905D\n0xBBBF\t0x905B\n0xBBC0\t0x9119\n0xBBC1\t0x9118\n0xBBC2\t0x911E\n0xBBC3\t0x9175\n0xBBC4\t0x9178\n0xBBC5\t0x9177\n0xBBC6\t0x9174\n0xBBC7\t0x9278\n0xBBC8\t0x9280\n0xBBC9\t0x9285\n0xBBCA\t0x9298\n0xBBCB\t0x9296\n0xBBCC\t0x927B\n0xBBCD\t0x9293\n0xBBCE\t0x929C\n0xBBCF\t0x92A8\n0xBBD0\t0x927C\n0xBBD1\t0x9291\n0xBBD2\t0x95A1\n0xBBD3\t0x95A8\n0xBBD4\t0x95A9\n0xBBD5\t0x95A3\n0xBBD6\t0x95A5\n0xBBD7\t0x95A4\n0xBBD8\t0x9699\n0xBBD9\t0x969C\n0xBBDA\t0x969B\n0xBBDB\t0x96CC\n0xBBDC\t0x96D2\n0xBBDD\t0x9700\n0xBBDE\t0x977C\n0xBBDF\t0x9785\n0xBBE0\t0x97F6\n0xBBE1\t0x9817\n0xBBE2\t0x9818\n0xBBE3\t0x98AF\n0xBBE4\t0x98B1\n0xBBE5\t0x9903\n0xBBE6\t0x9905\n0xBBE7\t0x990C\n0xBBE8\t0x9909\n0xBBE9\t0x99C1\n0xBBEA\t0x9AAF\n0xBBEB\t0x9AB0\n0xBBEC\t0x9AE6\n0xBBED\t0x9B41\n0xBBEE\t0x9B42\n0xBBEF\t0x9CF4\n0xBBF0\t0x9CF6\n0xBBF1\t0x9CF3\n0xBBF2\t0x9EBC\n0xBBF3\t0x9F3B\n0xBBF4\t0x9F4A\n0xBBF5\t0x5104\n0xBBF6\t0x5100\n0xBBF7\t0x50FB\n0xBBF8\t0x50F5\n0xBBF9\t0x50F9\n0xBBFA\t0x5102\n0xBBFB\t0x5108\n0xBBFC\t0x5109\n0xBBFD\t0x5105\n0xBBFE\t0x51DC\n0xBC40\t0x5287\n0xBC41\t0x5288\n0xBC42\t0x5289\n0xBC43\t0x528D\n0xBC44\t0x528A\n0xBC45\t0x52F0\n0xBC46\t0x53B2\n0xBC47\t0x562E\n0xBC48\t0x563B\n0xBC49\t0x5639\n0xBC4A\t0x5632\n0xBC4B\t0x563F\n0xBC4C\t0x5634\n0xBC4D\t0x5629\n0xBC4E\t0x5653\n0xBC4F\t0x564E\n0xBC50\t0x5657\n0xBC51\t0x5674\n0xBC52\t0x5636\n0xBC53\t0x562F\n0xBC54\t0x5630\n0xBC55\t0x5880\n0xBC56\t0x589F\n0xBC57\t0x589E\n0xBC58\t0x58B3\n0xBC59\t0x589C\n0xBC5A\t0x58AE\n0xBC5B\t0x58A9\n0xBC5C\t0x58A6\n0xBC5D\t0x596D\n0xBC5E\t0x5B09\n0xBC5F\t0x5AFB\n0xBC60\t0x5B0B\n0xBC61\t0x5AF5\n0xBC62\t0x5B0C\n0xBC63\t0x5B08\n0xBC64\t0x5BEE\n0xBC65\t0x5BEC\n0xBC66\t0x5BE9\n0xBC67\t0x5BEB\n0xBC68\t0x5C64\n0xBC69\t0x5C65\n0xBC6A\t0x5D9D\n0xBC6B\t0x5D94\n0xBC6C\t0x5E62\n0xBC6D\t0x5E5F\n0xBC6E\t0x5E61\n0xBC6F\t0x5EE2\n0xBC70\t0x5EDA\n0xBC71\t0x5EDF\n0xBC72\t0x5EDD\n0xBC73\t0x5EE3\n0xBC74\t0x5EE0\n0xBC75\t0x5F48\n0xBC76\t0x5F71\n0xBC77\t0x5FB7\n0xBC78\t0x5FB5\n0xBC79\t0x6176\n0xBC7A\t0x6167\n0xBC7B\t0x616E\n0xBC7C\t0x615D\n0xBC7D\t0x6155\n0xBC7E\t0x6182\n0xBCA1\t0x617C\n0xBCA2\t0x6170\n0xBCA3\t0x616B\n0xBCA4\t0x617E\n0xBCA5\t0x61A7\n0xBCA6\t0x6190\n0xBCA7\t0x61AB\n0xBCA8\t0x618E\n0xBCA9\t0x61AC\n0xBCAA\t0x619A\n0xBCAB\t0x61A4\n0xBCAC\t0x6194\n0xBCAD\t0x61AE\n0xBCAE\t0x622E\n0xBCAF\t0x6469\n0xBCB0\t0x646F\n0xBCB1\t0x6479\n0xBCB2\t0x649E\n0xBCB3\t0x64B2\n0xBCB4\t0x6488\n0xBCB5\t0x6490\n0xBCB6\t0x64B0\n0xBCB7\t0x64A5\n0xBCB8\t0x6493\n0xBCB9\t0x6495\n0xBCBA\t0x64A9\n0xBCBB\t0x6492\n0xBCBC\t0x64AE\n0xBCBD\t0x64AD\n0xBCBE\t0x64AB\n0xBCBF\t0x649A\n0xBCC0\t0x64AC\n0xBCC1\t0x6499\n0xBCC2\t0x64A2\n0xBCC3\t0x64B3\n0xBCC4\t0x6575\n0xBCC5\t0x6577\n0xBCC6\t0x6578\n0xBCC7\t0x66AE\n0xBCC8\t0x66AB\n0xBCC9\t0x66B4\n0xBCCA\t0x66B1\n0xBCCB\t0x6A23\n0xBCCC\t0x6A1F\n0xBCCD\t0x69E8\n0xBCCE\t0x6A01\n0xBCCF\t0x6A1E\n0xBCD0\t0x6A19\n0xBCD1\t0x69FD\n0xBCD2\t0x6A21\n0xBCD3\t0x6A13\n0xBCD4\t0x6A0A\n0xBCD5\t0x69F3\n0xBCD6\t0x6A02\n0xBCD7\t0x6A05\n0xBCD8\t0x69ED\n0xBCD9\t0x6A11\n0xBCDA\t0x6B50\n0xBCDB\t0x6B4E\n0xBCDC\t0x6BA4\n0xBCDD\t0x6BC5\n0xBCDE\t0x6BC6\n0xBCDF\t0x6F3F\n0xBCE0\t0x6F7C\n0xBCE1\t0x6F84\n0xBCE2\t0x6F51\n0xBCE3\t0x6F66\n0xBCE4\t0x6F54\n0xBCE5\t0x6F86\n0xBCE6\t0x6F6D\n0xBCE7\t0x6F5B\n0xBCE8\t0x6F78\n0xBCE9\t0x6F6E\n0xBCEA\t0x6F8E\n0xBCEB\t0x6F7A\n0xBCEC\t0x6F70\n0xBCED\t0x6F64\n0xBCEE\t0x6F97\n0xBCEF\t0x6F58\n0xBCF0\t0x6ED5\n0xBCF1\t0x6F6F\n0xBCF2\t0x6F60\n0xBCF3\t0x6F5F\n0xBCF4\t0x719F\n0xBCF5\t0x71AC\n0xBCF6\t0x71B1\n0xBCF7\t0x71A8\n0xBCF8\t0x7256\n0xBCF9\t0x729B\n0xBCFA\t0x734E\n0xBCFB\t0x7357\n0xBCFC\t0x7469\n0xBCFD\t0x748B\n0xBCFE\t0x7483\n0xBD40\t0x747E\n0xBD41\t0x7480\n0xBD42\t0x757F\n0xBD43\t0x7620\n0xBD44\t0x7629\n0xBD45\t0x761F\n0xBD46\t0x7624\n0xBD47\t0x7626\n0xBD48\t0x7621\n0xBD49\t0x7622\n0xBD4A\t0x769A\n0xBD4B\t0x76BA\n0xBD4C\t0x76E4\n0xBD4D\t0x778E\n0xBD4E\t0x7787\n0xBD4F\t0x778C\n0xBD50\t0x7791\n0xBD51\t0x778B\n0xBD52\t0x78CB\n0xBD53\t0x78C5\n0xBD54\t0x78BA\n0xBD55\t0x78CA\n0xBD56\t0x78BE\n0xBD57\t0x78D5\n0xBD58\t0x78BC\n0xBD59\t0x78D0\n0xBD5A\t0x7A3F\n0xBD5B\t0x7A3C\n0xBD5C\t0x7A40\n0xBD5D\t0x7A3D\n0xBD5E\t0x7A37\n0xBD5F\t0x7A3B\n0xBD60\t0x7AAF\n0xBD61\t0x7AAE\n0xBD62\t0x7BAD\n0xBD63\t0x7BB1\n0xBD64\t0x7BC4\n0xBD65\t0x7BB4\n0xBD66\t0x7BC6\n0xBD67\t0x7BC7\n0xBD68\t0x7BC1\n0xBD69\t0x7BA0\n0xBD6A\t0x7BCC\n0xBD6B\t0x7CCA\n0xBD6C\t0x7DE0\n0xBD6D\t0x7DF4\n0xBD6E\t0x7DEF\n0xBD6F\t0x7DFB\n0xBD70\t0x7DD8\n0xBD71\t0x7DEC\n0xBD72\t0x7DDD\n0xBD73\t0x7DE8\n0xBD74\t0x7DE3\n0xBD75\t0x7DDA\n0xBD76\t0x7DDE\n0xBD77\t0x7DE9\n0xBD78\t0x7D9E\n0xBD79\t0x7DD9\n0xBD7A\t0x7DF2\n0xBD7B\t0x7DF9\n0xBD7C\t0x7F75\n0xBD7D\t0x7F77\n0xBD7E\t0x7FAF\n0xBDA1\t0x7FE9\n0xBDA2\t0x8026\n0xBDA3\t0x819B\n0xBDA4\t0x819C\n0xBDA5\t0x819D\n0xBDA6\t0x81A0\n0xBDA7\t0x819A\n0xBDA8\t0x8198\n0xBDA9\t0x8517\n0xBDAA\t0x853D\n0xBDAB\t0x851A\n0xBDAC\t0x84EE\n0xBDAD\t0x852C\n0xBDAE\t0x852D\n0xBDAF\t0x8513\n0xBDB0\t0x8511\n0xBDB1\t0x8523\n0xBDB2\t0x8521\n0xBDB3\t0x8514\n0xBDB4\t0x84EC\n0xBDB5\t0x8525\n0xBDB6\t0x84FF\n0xBDB7\t0x8506\n0xBDB8\t0x8782\n0xBDB9\t0x8774\n0xBDBA\t0x8776\n0xBDBB\t0x8760\n0xBDBC\t0x8766\n0xBDBD\t0x8778\n0xBDBE\t0x8768\n0xBDBF\t0x8759\n0xBDC0\t0x8757\n0xBDC1\t0x874C\n0xBDC2\t0x8753\n0xBDC3\t0x885B\n0xBDC4\t0x885D\n0xBDC5\t0x8910\n0xBDC6\t0x8907\n0xBDC7\t0x8912\n0xBDC8\t0x8913\n0xBDC9\t0x8915\n0xBDCA\t0x890A\n0xBDCB\t0x8ABC\n0xBDCC\t0x8AD2\n0xBDCD\t0x8AC7\n0xBDCE\t0x8AC4\n0xBDCF\t0x8A95\n0xBDD0\t0x8ACB\n0xBDD1\t0x8AF8\n0xBDD2\t0x8AB2\n0xBDD3\t0x8AC9\n0xBDD4\t0x8AC2\n0xBDD5\t0x8ABF\n0xBDD6\t0x8AB0\n0xBDD7\t0x8AD6\n0xBDD8\t0x8ACD\n0xBDD9\t0x8AB6\n0xBDDA\t0x8AB9\n0xBDDB\t0x8ADB\n0xBDDC\t0x8C4C\n0xBDDD\t0x8C4E\n0xBDDE\t0x8C6C\n0xBDDF\t0x8CE0\n0xBDE0\t0x8CDE\n0xBDE1\t0x8CE6\n0xBDE2\t0x8CE4\n0xBDE3\t0x8CEC\n0xBDE4\t0x8CED\n0xBDE5\t0x8CE2\n0xBDE6\t0x8CE3\n0xBDE7\t0x8CDC\n0xBDE8\t0x8CEA\n0xBDE9\t0x8CE1\n0xBDEA\t0x8D6D\n0xBDEB\t0x8D9F\n0xBDEC\t0x8DA3\n0xBDED\t0x8E2B\n0xBDEE\t0x8E10\n0xBDEF\t0x8E1D\n0xBDF0\t0x8E22\n0xBDF1\t0x8E0F\n0xBDF2\t0x8E29\n0xBDF3\t0x8E1F\n0xBDF4\t0x8E21\n0xBDF5\t0x8E1E\n0xBDF6\t0x8EBA\n0xBDF7\t0x8F1D\n0xBDF8\t0x8F1B\n0xBDF9\t0x8F1F\n0xBDFA\t0x8F29\n0xBDFB\t0x8F26\n0xBDFC\t0x8F2A\n0xBDFD\t0x8F1C\n0xBDFE\t0x8F1E\n0xBE40\t0x8F25\n0xBE41\t0x9069\n0xBE42\t0x906E\n0xBE43\t0x9068\n0xBE44\t0x906D\n0xBE45\t0x9077\n0xBE46\t0x9130\n0xBE47\t0x912D\n0xBE48\t0x9127\n0xBE49\t0x9131\n0xBE4A\t0x9187\n0xBE4B\t0x9189\n0xBE4C\t0x918B\n0xBE4D\t0x9183\n0xBE4E\t0x92C5\n0xBE4F\t0x92BB\n0xBE50\t0x92B7\n0xBE51\t0x92EA\n0xBE52\t0x92AC\n0xBE53\t0x92E4\n0xBE54\t0x92C1\n0xBE55\t0x92B3\n0xBE56\t0x92BC\n0xBE57\t0x92D2\n0xBE58\t0x92C7\n0xBE59\t0x92F0\n0xBE5A\t0x92B2\n0xBE5B\t0x95AD\n0xBE5C\t0x95B1\n0xBE5D\t0x9704\n0xBE5E\t0x9706\n0xBE5F\t0x9707\n0xBE60\t0x9709\n0xBE61\t0x9760\n0xBE62\t0x978D\n0xBE63\t0x978B\n0xBE64\t0x978F\n0xBE65\t0x9821\n0xBE66\t0x982B\n0xBE67\t0x981C\n0xBE68\t0x98B3\n0xBE69\t0x990A\n0xBE6A\t0x9913\n0xBE6B\t0x9912\n0xBE6C\t0x9918\n0xBE6D\t0x99DD\n0xBE6E\t0x99D0\n0xBE6F\t0x99DF\n0xBE70\t0x99DB\n0xBE71\t0x99D1\n0xBE72\t0x99D5\n0xBE73\t0x99D2\n0xBE74\t0x99D9\n0xBE75\t0x9AB7\n0xBE76\t0x9AEE\n0xBE77\t0x9AEF\n0xBE78\t0x9B27\n0xBE79\t0x9B45\n0xBE7A\t0x9B44\n0xBE7B\t0x9B77\n0xBE7C\t0x9B6F\n0xBE7D\t0x9D06\n0xBE7E\t0x9D09\n0xBEA1\t0x9D03\n0xBEA2\t0x9EA9\n0xBEA3\t0x9EBE\n0xBEA4\t0x9ECE\n0xBEA5\t0x58A8\n0xBEA6\t0x9F52\n0xBEA7\t0x5112\n0xBEA8\t0x5118\n0xBEA9\t0x5114\n0xBEAA\t0x5110\n0xBEAB\t0x5115\n0xBEAC\t0x5180\n0xBEAD\t0x51AA\n0xBEAE\t0x51DD\n0xBEAF\t0x5291\n0xBEB0\t0x5293\n0xBEB1\t0x52F3\n0xBEB2\t0x5659\n0xBEB3\t0x566B\n0xBEB4\t0x5679\n0xBEB5\t0x5669\n0xBEB6\t0x5664\n0xBEB7\t0x5678\n0xBEB8\t0x566A\n0xBEB9\t0x5668\n0xBEBA\t0x5665\n0xBEBB\t0x5671\n0xBEBC\t0x566F\n0xBEBD\t0x566C\n0xBEBE\t0x5662\n0xBEBF\t0x5676\n0xBEC0\t0x58C1\n0xBEC1\t0x58BE\n0xBEC2\t0x58C7\n0xBEC3\t0x58C5\n0xBEC4\t0x596E\n0xBEC5\t0x5B1D\n0xBEC6\t0x5B34\n0xBEC7\t0x5B78\n0xBEC8\t0x5BF0\n0xBEC9\t0x5C0E\n0xBECA\t0x5F4A\n0xBECB\t0x61B2\n0xBECC\t0x6191\n0xBECD\t0x61A9\n0xBECE\t0x618A\n0xBECF\t0x61CD\n0xBED0\t0x61B6\n0xBED1\t0x61BE\n0xBED2\t0x61CA\n0xBED3\t0x61C8\n0xBED4\t0x6230\n0xBED5\t0x64C5\n0xBED6\t0x64C1\n0xBED7\t0x64CB\n0xBED8\t0x64BB\n0xBED9\t0x64BC\n0xBEDA\t0x64DA\n0xBEDB\t0x64C4\n0xBEDC\t0x64C7\n0xBEDD\t0x64C2\n0xBEDE\t0x64CD\n0xBEDF\t0x64BF\n0xBEE0\t0x64D2\n0xBEE1\t0x64D4\n0xBEE2\t0x64BE\n0xBEE3\t0x6574\n0xBEE4\t0x66C6\n0xBEE5\t0x66C9\n0xBEE6\t0x66B9\n0xBEE7\t0x66C4\n0xBEE8\t0x66C7\n0xBEE9\t0x66B8\n0xBEEA\t0x6A3D\n0xBEEB\t0x6A38\n0xBEEC\t0x6A3A\n0xBEED\t0x6A59\n0xBEEE\t0x6A6B\n0xBEEF\t0x6A58\n0xBEF0\t0x6A39\n0xBEF1\t0x6A44\n0xBEF2\t0x6A62\n0xBEF3\t0x6A61\n0xBEF4\t0x6A4B\n0xBEF5\t0x6A47\n0xBEF6\t0x6A35\n0xBEF7\t0x6A5F\n0xBEF8\t0x6A48\n0xBEF9\t0x6B59\n0xBEFA\t0x6B77\n0xBEFB\t0x6C05\n0xBEFC\t0x6FC2\n0xBEFD\t0x6FB1\n0xBEFE\t0x6FA1\n0xBF40\t0x6FC3\n0xBF41\t0x6FA4\n0xBF42\t0x6FC1\n0xBF43\t0x6FA7\n0xBF44\t0x6FB3\n0xBF45\t0x6FC0\n0xBF46\t0x6FB9\n0xBF47\t0x6FB6\n0xBF48\t0x6FA6\n0xBF49\t0x6FA0\n0xBF4A\t0x6FB4\n0xBF4B\t0x71BE\n0xBF4C\t0x71C9\n0xBF4D\t0x71D0\n0xBF4E\t0x71D2\n0xBF4F\t0x71C8\n0xBF50\t0x71D5\n0xBF51\t0x71B9\n0xBF52\t0x71CE\n0xBF53\t0x71D9\n0xBF54\t0x71DC\n0xBF55\t0x71C3\n0xBF56\t0x71C4\n0xBF57\t0x7368\n0xBF58\t0x749C\n0xBF59\t0x74A3\n0xBF5A\t0x7498\n0xBF5B\t0x749F\n0xBF5C\t0x749E\n0xBF5D\t0x74E2\n0xBF5E\t0x750C\n0xBF5F\t0x750D\n0xBF60\t0x7634\n0xBF61\t0x7638\n0xBF62\t0x763A\n0xBF63\t0x76E7\n0xBF64\t0x76E5\n0xBF65\t0x77A0\n0xBF66\t0x779E\n0xBF67\t0x779F\n0xBF68\t0x77A5\n0xBF69\t0x78E8\n0xBF6A\t0x78DA\n0xBF6B\t0x78EC\n0xBF6C\t0x78E7\n0xBF6D\t0x79A6\n0xBF6E\t0x7A4D\n0xBF6F\t0x7A4E\n0xBF70\t0x7A46\n0xBF71\t0x7A4C\n0xBF72\t0x7A4B\n0xBF73\t0x7ABA\n0xBF74\t0x7BD9\n0xBF75\t0x7C11\n0xBF76\t0x7BC9\n0xBF77\t0x7BE4\n0xBF78\t0x7BDB\n0xBF79\t0x7BE1\n0xBF7A\t0x7BE9\n0xBF7B\t0x7BE6\n0xBF7C\t0x7CD5\n0xBF7D\t0x7CD6\n0xBF7E\t0x7E0A\n0xBFA1\t0x7E11\n0xBFA2\t0x7E08\n0xBFA3\t0x7E1B\n0xBFA4\t0x7E23\n0xBFA5\t0x7E1E\n0xBFA6\t0x7E1D\n0xBFA7\t0x7E09\n0xBFA8\t0x7E10\n0xBFA9\t0x7F79\n0xBFAA\t0x7FB2\n0xBFAB\t0x7FF0\n0xBFAC\t0x7FF1\n0xBFAD\t0x7FEE\n0xBFAE\t0x8028\n0xBFAF\t0x81B3\n0xBFB0\t0x81A9\n0xBFB1\t0x81A8\n0xBFB2\t0x81FB\n0xBFB3\t0x8208\n0xBFB4\t0x8258\n0xBFB5\t0x8259\n0xBFB6\t0x854A\n0xBFB7\t0x8559\n0xBFB8\t0x8548\n0xBFB9\t0x8568\n0xBFBA\t0x8569\n0xBFBB\t0x8543\n0xBFBC\t0x8549\n0xBFBD\t0x856D\n0xBFBE\t0x856A\n0xBFBF\t0x855E\n0xBFC0\t0x8783\n0xBFC1\t0x879F\n0xBFC2\t0x879E\n0xBFC3\t0x87A2\n0xBFC4\t0x878D\n0xBFC5\t0x8861\n0xBFC6\t0x892A\n0xBFC7\t0x8932\n0xBFC8\t0x8925\n0xBFC9\t0x892B\n0xBFCA\t0x8921\n0xBFCB\t0x89AA\n0xBFCC\t0x89A6\n0xBFCD\t0x8AE6\n0xBFCE\t0x8AFA\n0xBFCF\t0x8AEB\n0xBFD0\t0x8AF1\n0xBFD1\t0x8B00\n0xBFD2\t0x8ADC\n0xBFD3\t0x8AE7\n0xBFD4\t0x8AEE\n0xBFD5\t0x8AFE\n0xBFD6\t0x8B01\n0xBFD7\t0x8B02\n0xBFD8\t0x8AF7\n0xBFD9\t0x8AED\n0xBFDA\t0x8AF3\n0xBFDB\t0x8AF6\n0xBFDC\t0x8AFC\n0xBFDD\t0x8C6B\n0xBFDE\t0x8C6D\n0xBFDF\t0x8C93\n0xBFE0\t0x8CF4\n0xBFE1\t0x8E44\n0xBFE2\t0x8E31\n0xBFE3\t0x8E34\n0xBFE4\t0x8E42\n0xBFE5\t0x8E39\n0xBFE6\t0x8E35\n0xBFE7\t0x8F3B\n0xBFE8\t0x8F2F\n0xBFE9\t0x8F38\n0xBFEA\t0x8F33\n0xBFEB\t0x8FA8\n0xBFEC\t0x8FA6\n0xBFED\t0x9075\n0xBFEE\t0x9074\n0xBFEF\t0x9078\n0xBFF0\t0x9072\n0xBFF1\t0x907C\n0xBFF2\t0x907A\n0xBFF3\t0x9134\n0xBFF4\t0x9192\n0xBFF5\t0x9320\n0xBFF6\t0x9336\n0xBFF7\t0x92F8\n0xBFF8\t0x9333\n0xBFF9\t0x932F\n0xBFFA\t0x9322\n0xBFFB\t0x92FC\n0xBFFC\t0x932B\n0xBFFD\t0x9304\n0xBFFE\t0x931A\n0xC040\t0x9310\n0xC041\t0x9326\n0xC042\t0x9321\n0xC043\t0x9315\n0xC044\t0x932E\n0xC045\t0x9319\n0xC046\t0x95BB\n0xC047\t0x96A7\n0xC048\t0x96A8\n0xC049\t0x96AA\n0xC04A\t0x96D5\n0xC04B\t0x970E\n0xC04C\t0x9711\n0xC04D\t0x9716\n0xC04E\t0x970D\n0xC04F\t0x9713\n0xC050\t0x970F\n0xC051\t0x975B\n0xC052\t0x975C\n0xC053\t0x9766\n0xC054\t0x9798\n0xC055\t0x9830\n0xC056\t0x9838\n0xC057\t0x983B\n0xC058\t0x9837\n0xC059\t0x982D\n0xC05A\t0x9839\n0xC05B\t0x9824\n0xC05C\t0x9910\n0xC05D\t0x9928\n0xC05E\t0x991E\n0xC05F\t0x991B\n0xC060\t0x9921\n0xC061\t0x991A\n0xC062\t0x99ED\n0xC063\t0x99E2\n0xC064\t0x99F1\n0xC065\t0x9AB8\n0xC066\t0x9ABC\n0xC067\t0x9AFB\n0xC068\t0x9AED\n0xC069\t0x9B28\n0xC06A\t0x9B91\n0xC06B\t0x9D15\n0xC06C\t0x9D23\n0xC06D\t0x9D26\n0xC06E\t0x9D28\n0xC06F\t0x9D12\n0xC070\t0x9D1B\n0xC071\t0x9ED8\n0xC072\t0x9ED4\n0xC073\t0x9F8D\n0xC074\t0x9F9C\n0xC075\t0x512A\n0xC076\t0x511F\n0xC077\t0x5121\n0xC078\t0x5132\n0xC079\t0x52F5\n0xC07A\t0x568E\n0xC07B\t0x5680\n0xC07C\t0x5690\n0xC07D\t0x5685\n0xC07E\t0x5687\n0xC0A1\t0x568F\n0xC0A2\t0x58D5\n0xC0A3\t0x58D3\n0xC0A4\t0x58D1\n0xC0A5\t0x58CE\n0xC0A6\t0x5B30\n0xC0A7\t0x5B2A\n0xC0A8\t0x5B24\n0xC0A9\t0x5B7A\n0xC0AA\t0x5C37\n0xC0AB\t0x5C68\n0xC0AC\t0x5DBC\n0xC0AD\t0x5DBA\n0xC0AE\t0x5DBD\n0xC0AF\t0x5DB8\n0xC0B0\t0x5E6B\n0xC0B1\t0x5F4C\n0xC0B2\t0x5FBD\n0xC0B3\t0x61C9\n0xC0B4\t0x61C2\n0xC0B5\t0x61C7\n0xC0B6\t0x61E6\n0xC0B7\t0x61CB\n0xC0B8\t0x6232\n0xC0B9\t0x6234\n0xC0BA\t0x64CE\n0xC0BB\t0x64CA\n0xC0BC\t0x64D8\n0xC0BD\t0x64E0\n0xC0BE\t0x64F0\n0xC0BF\t0x64E6\n0xC0C0\t0x64EC\n0xC0C1\t0x64F1\n0xC0C2\t0x64E2\n0xC0C3\t0x64ED\n0xC0C4\t0x6582\n0xC0C5\t0x6583\n0xC0C6\t0x66D9\n0xC0C7\t0x66D6\n0xC0C8\t0x6A80\n0xC0C9\t0x6A94\n0xC0CA\t0x6A84\n0xC0CB\t0x6AA2\n0xC0CC\t0x6A9C\n0xC0CD\t0x6ADB\n0xC0CE\t0x6AA3\n0xC0CF\t0x6A7E\n0xC0D0\t0x6A97\n0xC0D1\t0x6A90\n0xC0D2\t0x6AA0\n0xC0D3\t0x6B5C\n0xC0D4\t0x6BAE\n0xC0D5\t0x6BDA\n0xC0D6\t0x6C08\n0xC0D7\t0x6FD8\n0xC0D8\t0x6FF1\n0xC0D9\t0x6FDF\n0xC0DA\t0x6FE0\n0xC0DB\t0x6FDB\n0xC0DC\t0x6FE4\n0xC0DD\t0x6FEB\n0xC0DE\t0x6FEF\n0xC0DF\t0x6F80\n0xC0E0\t0x6FEC\n0xC0E1\t0x6FE1\n0xC0E2\t0x6FE9\n0xC0E3\t0x6FD5\n0xC0E4\t0x6FEE\n0xC0E5\t0x6FF0\n0xC0E6\t0x71E7\n0xC0E7\t0x71DF\n0xC0E8\t0x71EE\n0xC0E9\t0x71E6\n0xC0EA\t0x71E5\n0xC0EB\t0x71ED\n0xC0EC\t0x71EC\n0xC0ED\t0x71F4\n0xC0EE\t0x71E0\n0xC0EF\t0x7235\n0xC0F0\t0x7246\n0xC0F1\t0x7370\n0xC0F2\t0x7372\n0xC0F3\t0x74A9\n0xC0F4\t0x74B0\n0xC0F5\t0x74A6\n0xC0F6\t0x74A8\n0xC0F7\t0x7646\n0xC0F8\t0x7642\n0xC0F9\t0x764C\n0xC0FA\t0x76EA\n0xC0FB\t0x77B3\n0xC0FC\t0x77AA\n0xC0FD\t0x77B0\n0xC0FE\t0x77AC\n0xC140\t0x77A7\n0xC141\t0x77AD\n0xC142\t0x77EF\n0xC143\t0x78F7\n0xC144\t0x78FA\n0xC145\t0x78F4\n0xC146\t0x78EF\n0xC147\t0x7901\n0xC148\t0x79A7\n0xC149\t0x79AA\n0xC14A\t0x7A57\n0xC14B\t0x7ABF\n0xC14C\t0x7C07\n0xC14D\t0x7C0D\n0xC14E\t0x7BFE\n0xC14F\t0x7BF7\n0xC150\t0x7C0C\n0xC151\t0x7BE0\n0xC152\t0x7CE0\n0xC153\t0x7CDC\n0xC154\t0x7CDE\n0xC155\t0x7CE2\n0xC156\t0x7CDF\n0xC157\t0x7CD9\n0xC158\t0x7CDD\n0xC159\t0x7E2E\n0xC15A\t0x7E3E\n0xC15B\t0x7E46\n0xC15C\t0x7E37\n0xC15D\t0x7E32\n0xC15E\t0x7E43\n0xC15F\t0x7E2B\n0xC160\t0x7E3D\n0xC161\t0x7E31\n0xC162\t0x7E45\n0xC163\t0x7E41\n0xC164\t0x7E34\n0xC165\t0x7E39\n0xC166\t0x7E48\n0xC167\t0x7E35\n0xC168\t0x7E3F\n0xC169\t0x7E2F\n0xC16A\t0x7F44\n0xC16B\t0x7FF3\n0xC16C\t0x7FFC\n0xC16D\t0x8071\n0xC16E\t0x8072\n0xC16F\t0x8070\n0xC170\t0x806F\n0xC171\t0x8073\n0xC172\t0x81C6\n0xC173\t0x81C3\n0xC174\t0x81BA\n0xC175\t0x81C2\n0xC176\t0x81C0\n0xC177\t0x81BF\n0xC178\t0x81BD\n0xC179\t0x81C9\n0xC17A\t0x81BE\n0xC17B\t0x81E8\n0xC17C\t0x8209\n0xC17D\t0x8271\n0xC17E\t0x85AA\n0xC1A1\t0x8584\n0xC1A2\t0x857E\n0xC1A3\t0x859C\n0xC1A4\t0x8591\n0xC1A5\t0x8594\n0xC1A6\t0x85AF\n0xC1A7\t0x859B\n0xC1A8\t0x8587\n0xC1A9\t0x85A8\n0xC1AA\t0x858A\n0xC1AB\t0x8667\n0xC1AC\t0x87C0\n0xC1AD\t0x87D1\n0xC1AE\t0x87B3\n0xC1AF\t0x87D2\n0xC1B0\t0x87C6\n0xC1B1\t0x87AB\n0xC1B2\t0x87BB\n0xC1B3\t0x87BA\n0xC1B4\t0x87C8\n0xC1B5\t0x87CB\n0xC1B6\t0x893B\n0xC1B7\t0x8936\n0xC1B8\t0x8944\n0xC1B9\t0x8938\n0xC1BA\t0x893D\n0xC1BB\t0x89AC\n0xC1BC\t0x8B0E\n0xC1BD\t0x8B17\n0xC1BE\t0x8B19\n0xC1BF\t0x8B1B\n0xC1C0\t0x8B0A\n0xC1C1\t0x8B20\n0xC1C2\t0x8B1D\n0xC1C3\t0x8B04\n0xC1C4\t0x8B10\n0xC1C5\t0x8C41\n0xC1C6\t0x8C3F\n0xC1C7\t0x8C73\n0xC1C8\t0x8CFA\n0xC1C9\t0x8CFD\n0xC1CA\t0x8CFC\n0xC1CB\t0x8CF8\n0xC1CC\t0x8CFB\n0xC1CD\t0x8DA8\n0xC1CE\t0x8E49\n0xC1CF\t0x8E4B\n0xC1D0\t0x8E48\n0xC1D1\t0x8E4A\n0xC1D2\t0x8F44\n0xC1D3\t0x8F3E\n0xC1D4\t0x8F42\n0xC1D5\t0x8F45\n0xC1D6\t0x8F3F\n0xC1D7\t0x907F\n0xC1D8\t0x907D\n0xC1D9\t0x9084\n0xC1DA\t0x9081\n0xC1DB\t0x9082\n0xC1DC\t0x9080\n0xC1DD\t0x9139\n0xC1DE\t0x91A3\n0xC1DF\t0x919E\n0xC1E0\t0x919C\n0xC1E1\t0x934D\n0xC1E2\t0x9382\n0xC1E3\t0x9328\n0xC1E4\t0x9375\n0xC1E5\t0x934A\n0xC1E6\t0x9365\n0xC1E7\t0x934B\n0xC1E8\t0x9318\n0xC1E9\t0x937E\n0xC1EA\t0x936C\n0xC1EB\t0x935B\n0xC1EC\t0x9370\n0xC1ED\t0x935A\n0xC1EE\t0x9354\n0xC1EF\t0x95CA\n0xC1F0\t0x95CB\n0xC1F1\t0x95CC\n0xC1F2\t0x95C8\n0xC1F3\t0x95C6\n0xC1F4\t0x96B1\n0xC1F5\t0x96B8\n0xC1F6\t0x96D6\n0xC1F7\t0x971C\n0xC1F8\t0x971E\n0xC1F9\t0x97A0\n0xC1FA\t0x97D3\n0xC1FB\t0x9846\n0xC1FC\t0x98B6\n0xC1FD\t0x9935\n0xC1FE\t0x9A01\n0xC240\t0x99FF\n0xC241\t0x9BAE\n0xC242\t0x9BAB\n0xC243\t0x9BAA\n0xC244\t0x9BAD\n0xC245\t0x9D3B\n0xC246\t0x9D3F\n0xC247\t0x9E8B\n0xC248\t0x9ECF\n0xC249\t0x9EDE\n0xC24A\t0x9EDC\n0xC24B\t0x9EDD\n0xC24C\t0x9EDB\n0xC24D\t0x9F3E\n0xC24E\t0x9F4B\n0xC24F\t0x53E2\n0xC250\t0x5695\n0xC251\t0x56AE\n0xC252\t0x58D9\n0xC253\t0x58D8\n0xC254\t0x5B38\n0xC255\t0x5F5D\n0xC256\t0x61E3\n0xC257\t0x6233\n0xC258\t0x64F4\n0xC259\t0x64F2\n0xC25A\t0x64FE\n0xC25B\t0x6506\n0xC25C\t0x64FA\n0xC25D\t0x64FB\n0xC25E\t0x64F7\n0xC25F\t0x65B7\n0xC260\t0x66DC\n0xC261\t0x6726\n0xC262\t0x6AB3\n0xC263\t0x6AAC\n0xC264\t0x6AC3\n0xC265\t0x6ABB\n0xC266\t0x6AB8\n0xC267\t0x6AC2\n0xC268\t0x6AAE\n0xC269\t0x6AAF\n0xC26A\t0x6B5F\n0xC26B\t0x6B78\n0xC26C\t0x6BAF\n0xC26D\t0x7009\n0xC26E\t0x700B\n0xC26F\t0x6FFE\n0xC270\t0x7006\n0xC271\t0x6FFA\n0xC272\t0x7011\n0xC273\t0x700F\n0xC274\t0x71FB\n0xC275\t0x71FC\n0xC276\t0x71FE\n0xC277\t0x71F8\n0xC278\t0x7377\n0xC279\t0x7375\n0xC27A\t0x74A7\n0xC27B\t0x74BF\n0xC27C\t0x7515\n0xC27D\t0x7656\n0xC27E\t0x7658\n0xC2A1\t0x7652\n0xC2A2\t0x77BD\n0xC2A3\t0x77BF\n0xC2A4\t0x77BB\n0xC2A5\t0x77BC\n0xC2A6\t0x790E\n0xC2A7\t0x79AE\n0xC2A8\t0x7A61\n0xC2A9\t0x7A62\n0xC2AA\t0x7A60\n0xC2AB\t0x7AC4\n0xC2AC\t0x7AC5\n0xC2AD\t0x7C2B\n0xC2AE\t0x7C27\n0xC2AF\t0x7C2A\n0xC2B0\t0x7C1E\n0xC2B1\t0x7C23\n0xC2B2\t0x7C21\n0xC2B3\t0x7CE7\n0xC2B4\t0x7E54\n0xC2B5\t0x7E55\n0xC2B6\t0x7E5E\n0xC2B7\t0x7E5A\n0xC2B8\t0x7E61\n0xC2B9\t0x7E52\n0xC2BA\t0x7E59\n0xC2BB\t0x7F48\n0xC2BC\t0x7FF9\n0xC2BD\t0x7FFB\n0xC2BE\t0x8077\n0xC2BF\t0x8076\n0xC2C0\t0x81CD\n0xC2C1\t0x81CF\n0xC2C2\t0x820A\n0xC2C3\t0x85CF\n0xC2C4\t0x85A9\n0xC2C5\t0x85CD\n0xC2C6\t0x85D0\n0xC2C7\t0x85C9\n0xC2C8\t0x85B0\n0xC2C9\t0x85BA\n0xC2CA\t0x85B9\n0xC2CB\t0x85A6\n0xC2CC\t0x87EF\n0xC2CD\t0x87EC\n0xC2CE\t0x87F2\n0xC2CF\t0x87E0\n0xC2D0\t0x8986\n0xC2D1\t0x89B2\n0xC2D2\t0x89F4\n0xC2D3\t0x8B28\n0xC2D4\t0x8B39\n0xC2D5\t0x8B2C\n0xC2D6\t0x8B2B\n0xC2D7\t0x8C50\n0xC2D8\t0x8D05\n0xC2D9\t0x8E59\n0xC2DA\t0x8E63\n0xC2DB\t0x8E66\n0xC2DC\t0x8E64\n0xC2DD\t0x8E5F\n0xC2DE\t0x8E55\n0xC2DF\t0x8EC0\n0xC2E0\t0x8F49\n0xC2E1\t0x8F4D\n0xC2E2\t0x9087\n0xC2E3\t0x9083\n0xC2E4\t0x9088\n0xC2E5\t0x91AB\n0xC2E6\t0x91AC\n0xC2E7\t0x91D0\n0xC2E8\t0x9394\n0xC2E9\t0x938A\n0xC2EA\t0x9396\n0xC2EB\t0x93A2\n0xC2EC\t0x93B3\n0xC2ED\t0x93AE\n0xC2EE\t0x93AC\n0xC2EF\t0x93B0\n0xC2F0\t0x9398\n0xC2F1\t0x939A\n0xC2F2\t0x9397\n0xC2F3\t0x95D4\n0xC2F4\t0x95D6\n0xC2F5\t0x95D0\n0xC2F6\t0x95D5\n0xC2F7\t0x96E2\n0xC2F8\t0x96DC\n0xC2F9\t0x96D9\n0xC2FA\t0x96DB\n0xC2FB\t0x96DE\n0xC2FC\t0x9724\n0xC2FD\t0x97A3\n0xC2FE\t0x97A6\n0xC340\t0x97AD\n0xC341\t0x97F9\n0xC342\t0x984D\n0xC343\t0x984F\n0xC344\t0x984C\n0xC345\t0x984E\n0xC346\t0x9853\n0xC347\t0x98BA\n0xC348\t0x993E\n0xC349\t0x993F\n0xC34A\t0x993D\n0xC34B\t0x992E\n0xC34C\t0x99A5\n0xC34D\t0x9A0E\n0xC34E\t0x9AC1\n0xC34F\t0x9B03\n0xC350\t0x9B06\n0xC351\t0x9B4F\n0xC352\t0x9B4E\n0xC353\t0x9B4D\n0xC354\t0x9BCA\n0xC355\t0x9BC9\n0xC356\t0x9BFD\n0xC357\t0x9BC8\n0xC358\t0x9BC0\n0xC359\t0x9D51\n0xC35A\t0x9D5D\n0xC35B\t0x9D60\n0xC35C\t0x9EE0\n0xC35D\t0x9F15\n0xC35E\t0x9F2C\n0xC35F\t0x5133\n0xC360\t0x56A5\n0xC361\t0x58DE\n0xC362\t0x58DF\n0xC363\t0x58E2\n0xC364\t0x5BF5\n0xC365\t0x9F90\n0xC366\t0x5EEC\n0xC367\t0x61F2\n0xC368\t0x61F7\n0xC369\t0x61F6\n0xC36A\t0x61F5\n0xC36B\t0x6500\n0xC36C\t0x650F\n0xC36D\t0x66E0\n0xC36E\t0x66DD\n0xC36F\t0x6AE5\n0xC370\t0x6ADD\n0xC371\t0x6ADA\n0xC372\t0x6AD3\n0xC373\t0x701B\n0xC374\t0x701F\n0xC375\t0x7028\n0xC376\t0x701A\n0xC377\t0x701D\n0xC378\t0x7015\n0xC379\t0x7018\n0xC37A\t0x7206\n0xC37B\t0x720D\n0xC37C\t0x7258\n0xC37D\t0x72A2\n0xC37E\t0x7378\n0xC3A1\t0x737A\n0xC3A2\t0x74BD\n0xC3A3\t0x74CA\n0xC3A4\t0x74E3\n0xC3A5\t0x7587\n0xC3A6\t0x7586\n0xC3A7\t0x765F\n0xC3A8\t0x7661\n0xC3A9\t0x77C7\n0xC3AA\t0x7919\n0xC3AB\t0x79B1\n0xC3AC\t0x7A6B\n0xC3AD\t0x7A69\n0xC3AE\t0x7C3E\n0xC3AF\t0x7C3F\n0xC3B0\t0x7C38\n0xC3B1\t0x7C3D\n0xC3B2\t0x7C37\n0xC3B3\t0x7C40\n0xC3B4\t0x7E6B\n0xC3B5\t0x7E6D\n0xC3B6\t0x7E79\n0xC3B7\t0x7E69\n0xC3B8\t0x7E6A\n0xC3B9\t0x7F85\n0xC3BA\t0x7E73\n0xC3BB\t0x7FB6\n0xC3BC\t0x7FB9\n0xC3BD\t0x7FB8\n0xC3BE\t0x81D8\n0xC3BF\t0x85E9\n0xC3C0\t0x85DD\n0xC3C1\t0x85EA\n0xC3C2\t0x85D5\n0xC3C3\t0x85E4\n0xC3C4\t0x85E5\n0xC3C5\t0x85F7\n0xC3C6\t0x87FB\n0xC3C7\t0x8805\n0xC3C8\t0x880D\n0xC3C9\t0x87F9\n0xC3CA\t0x87FE\n0xC3CB\t0x8960\n0xC3CC\t0x895F\n0xC3CD\t0x8956\n0xC3CE\t0x895E\n0xC3CF\t0x8B41\n0xC3D0\t0x8B5C\n0xC3D1\t0x8B58\n0xC3D2\t0x8B49\n0xC3D3\t0x8B5A\n0xC3D4\t0x8B4E\n0xC3D5\t0x8B4F\n0xC3D6\t0x8B46\n0xC3D7\t0x8B59\n0xC3D8\t0x8D08\n0xC3D9\t0x8D0A\n0xC3DA\t0x8E7C\n0xC3DB\t0x8E72\n0xC3DC\t0x8E87\n0xC3DD\t0x8E76\n0xC3DE\t0x8E6C\n0xC3DF\t0x8E7A\n0xC3E0\t0x8E74\n0xC3E1\t0x8F54\n0xC3E2\t0x8F4E\n0xC3E3\t0x8FAD\n0xC3E4\t0x908A\n0xC3E5\t0x908B\n0xC3E6\t0x91B1\n0xC3E7\t0x91AE\n0xC3E8\t0x93E1\n0xC3E9\t0x93D1\n0xC3EA\t0x93DF\n0xC3EB\t0x93C3\n0xC3EC\t0x93C8\n0xC3ED\t0x93DC\n0xC3EE\t0x93DD\n0xC3EF\t0x93D6\n0xC3F0\t0x93E2\n0xC3F1\t0x93CD\n0xC3F2\t0x93D8\n0xC3F3\t0x93E4\n0xC3F4\t0x93D7\n0xC3F5\t0x93E8\n0xC3F6\t0x95DC\n0xC3F7\t0x96B4\n0xC3F8\t0x96E3\n0xC3F9\t0x972A\n0xC3FA\t0x9727\n0xC3FB\t0x9761\n0xC3FC\t0x97DC\n0xC3FD\t0x97FB\n0xC3FE\t0x985E\n0xC440\t0x9858\n0xC441\t0x985B\n0xC442\t0x98BC\n0xC443\t0x9945\n0xC444\t0x9949\n0xC445\t0x9A16\n0xC446\t0x9A19\n0xC447\t0x9B0D\n0xC448\t0x9BE8\n0xC449\t0x9BE7\n0xC44A\t0x9BD6\n0xC44B\t0x9BDB\n0xC44C\t0x9D89\n0xC44D\t0x9D61\n0xC44E\t0x9D72\n0xC44F\t0x9D6A\n0xC450\t0x9D6C\n0xC451\t0x9E92\n0xC452\t0x9E97\n0xC453\t0x9E93\n0xC454\t0x9EB4\n0xC455\t0x52F8\n0xC456\t0x56A8\n0xC457\t0x56B7\n0xC458\t0x56B6\n0xC459\t0x56B4\n0xC45A\t0x56BC\n0xC45B\t0x58E4\n0xC45C\t0x5B40\n0xC45D\t0x5B43\n0xC45E\t0x5B7D\n0xC45F\t0x5BF6\n0xC460\t0x5DC9\n0xC461\t0x61F8\n0xC462\t0x61FA\n0xC463\t0x6518\n0xC464\t0x6514\n0xC465\t0x6519\n0xC466\t0x66E6\n0xC467\t0x6727\n0xC468\t0x6AEC\n0xC469\t0x703E\n0xC46A\t0x7030\n0xC46B\t0x7032\n0xC46C\t0x7210\n0xC46D\t0x737B\n0xC46E\t0x74CF\n0xC46F\t0x7662\n0xC470\t0x7665\n0xC471\t0x7926\n0xC472\t0x792A\n0xC473\t0x792C\n0xC474\t0x792B\n0xC475\t0x7AC7\n0xC476\t0x7AF6\n0xC477\t0x7C4C\n0xC478\t0x7C43\n0xC479\t0x7C4D\n0xC47A\t0x7CEF\n0xC47B\t0x7CF0\n0xC47C\t0x8FAE\n0xC47D\t0x7E7D\n0xC47E\t0x7E7C\n0xC4A1\t0x7E82\n0xC4A2\t0x7F4C\n0xC4A3\t0x8000\n0xC4A4\t0x81DA\n0xC4A5\t0x8266\n0xC4A6\t0x85FB\n0xC4A7\t0x85F9\n0xC4A8\t0x8611\n0xC4A9\t0x85FA\n0xC4AA\t0x8606\n0xC4AB\t0x860B\n0xC4AC\t0x8607\n0xC4AD\t0x860A\n0xC4AE\t0x8814\n0xC4AF\t0x8815\n0xC4B0\t0x8964\n0xC4B1\t0x89BA\n0xC4B2\t0x89F8\n0xC4B3\t0x8B70\n0xC4B4\t0x8B6C\n0xC4B5\t0x8B66\n0xC4B6\t0x8B6F\n0xC4B7\t0x8B5F\n0xC4B8\t0x8B6B\n0xC4B9\t0x8D0F\n0xC4BA\t0x8D0D\n0xC4BB\t0x8E89\n0xC4BC\t0x8E81\n0xC4BD\t0x8E85\n0xC4BE\t0x8E82\n0xC4BF\t0x91B4\n0xC4C0\t0x91CB\n0xC4C1\t0x9418\n0xC4C2\t0x9403\n0xC4C3\t0x93FD\n0xC4C4\t0x95E1\n0xC4C5\t0x9730\n0xC4C6\t0x98C4\n0xC4C7\t0x9952\n0xC4C8\t0x9951\n0xC4C9\t0x99A8\n0xC4CA\t0x9A2B\n0xC4CB\t0x9A30\n0xC4CC\t0x9A37\n0xC4CD\t0x9A35\n0xC4CE\t0x9C13\n0xC4CF\t0x9C0D\n0xC4D0\t0x9E79\n0xC4D1\t0x9EB5\n0xC4D2\t0x9EE8\n0xC4D3\t0x9F2F\n0xC4D4\t0x9F5F\n0xC4D5\t0x9F63\n0xC4D6\t0x9F61\n0xC4D7\t0x5137\n0xC4D8\t0x5138\n0xC4D9\t0x56C1\n0xC4DA\t0x56C0\n0xC4DB\t0x56C2\n0xC4DC\t0x5914\n0xC4DD\t0x5C6C\n0xC4DE\t0x5DCD\n0xC4DF\t0x61FC\n0xC4E0\t0x61FE\n0xC4E1\t0x651D\n0xC4E2\t0x651C\n0xC4E3\t0x6595\n0xC4E4\t0x66E9\n0xC4E5\t0x6AFB\n0xC4E6\t0x6B04\n0xC4E7\t0x6AFA\n0xC4E8\t0x6BB2\n0xC4E9\t0x704C\n0xC4EA\t0x721B\n0xC4EB\t0x72A7\n0xC4EC\t0x74D6\n0xC4ED\t0x74D4\n0xC4EE\t0x7669\n0xC4EF\t0x77D3\n0xC4F0\t0x7C50\n0xC4F1\t0x7E8F\n0xC4F2\t0x7E8C\n0xC4F3\t0x7FBC\n0xC4F4\t0x8617\n0xC4F5\t0x862D\n0xC4F6\t0x861A\n0xC4F7\t0x8823\n0xC4F8\t0x8822\n0xC4F9\t0x8821\n0xC4FA\t0x881F\n0xC4FB\t0x896A\n0xC4FC\t0x896C\n0xC4FD\t0x89BD\n0xC4FE\t0x8B74\n0xC540\t0x8B77\n0xC541\t0x8B7D\n0xC542\t0x8D13\n0xC543\t0x8E8A\n0xC544\t0x8E8D\n0xC545\t0x8E8B\n0xC546\t0x8F5F\n0xC547\t0x8FAF\n0xC548\t0x91BA\n0xC549\t0x942E\n0xC54A\t0x9433\n0xC54B\t0x9435\n0xC54C\t0x943A\n0xC54D\t0x9438\n0xC54E\t0x9432\n0xC54F\t0x942B\n0xC550\t0x95E2\n0xC551\t0x9738\n0xC552\t0x9739\n0xC553\t0x9732\n0xC554\t0x97FF\n0xC555\t0x9867\n0xC556\t0x9865\n0xC557\t0x9957\n0xC558\t0x9A45\n0xC559\t0x9A43\n0xC55A\t0x9A40\n0xC55B\t0x9A3E\n0xC55C\t0x9ACF\n0xC55D\t0x9B54\n0xC55E\t0x9B51\n0xC55F\t0x9C2D\n0xC560\t0x9C25\n0xC561\t0x9DAF\n0xC562\t0x9DB4\n0xC563\t0x9DC2\n0xC564\t0x9DB8\n0xC565\t0x9E9D\n0xC566\t0x9EEF\n0xC567\t0x9F19\n0xC568\t0x9F5C\n0xC569\t0x9F66\n0xC56A\t0x9F67\n0xC56B\t0x513C\n0xC56C\t0x513B\n0xC56D\t0x56C8\n0xC56E\t0x56CA\n0xC56F\t0x56C9\n0xC570\t0x5B7F\n0xC571\t0x5DD4\n0xC572\t0x5DD2\n0xC573\t0x5F4E\n0xC574\t0x61FF\n0xC575\t0x6524\n0xC576\t0x6B0A\n0xC577\t0x6B61\n0xC578\t0x7051\n0xC579\t0x7058\n0xC57A\t0x7380\n0xC57B\t0x74E4\n0xC57C\t0x758A\n0xC57D\t0x766E\n0xC57E\t0x766C\n0xC5A1\t0x79B3\n0xC5A2\t0x7C60\n0xC5A3\t0x7C5F\n0xC5A4\t0x807E\n0xC5A5\t0x807D\n0xC5A6\t0x81DF\n0xC5A7\t0x8972\n0xC5A8\t0x896F\n0xC5A9\t0x89FC\n0xC5AA\t0x8B80\n0xC5AB\t0x8D16\n0xC5AC\t0x8D17\n0xC5AD\t0x8E91\n0xC5AE\t0x8E93\n0xC5AF\t0x8F61\n0xC5B0\t0x9148\n0xC5B1\t0x9444\n0xC5B2\t0x9451\n0xC5B3\t0x9452\n0xC5B4\t0x973D\n0xC5B5\t0x973E\n0xC5B6\t0x97C3\n0xC5B7\t0x97C1\n0xC5B8\t0x986B\n0xC5B9\t0x9955\n0xC5BA\t0x9A55\n0xC5BB\t0x9A4D\n0xC5BC\t0x9AD2\n0xC5BD\t0x9B1A\n0xC5BE\t0x9C49\n0xC5BF\t0x9C31\n0xC5C0\t0x9C3E\n0xC5C1\t0x9C3B\n0xC5C2\t0x9DD3\n0xC5C3\t0x9DD7\n0xC5C4\t0x9F34\n0xC5C5\t0x9F6C\n0xC5C6\t0x9F6A\n0xC5C7\t0x9F94\n0xC5C8\t0x56CC\n0xC5C9\t0x5DD6\n0xC5CA\t0x6200\n0xC5CB\t0x6523\n0xC5CC\t0x652B\n0xC5CD\t0x652A\n0xC5CE\t0x66EC\n0xC5CF\t0x6B10\n0xC5D0\t0x74DA\n0xC5D1\t0x7ACA\n0xC5D2\t0x7C64\n0xC5D3\t0x7C63\n0xC5D4\t0x7C65\n0xC5D5\t0x7E93\n0xC5D6\t0x7E96\n0xC5D7\t0x7E94\n0xC5D8\t0x81E2\n0xC5D9\t0x8638\n0xC5DA\t0x863F\n0xC5DB\t0x8831\n0xC5DC\t0x8B8A\n0xC5DD\t0x9090\n0xC5DE\t0x908F\n0xC5DF\t0x9463\n0xC5E0\t0x9460\n0xC5E1\t0x9464\n0xC5E2\t0x9768\n0xC5E3\t0x986F\n0xC5E4\t0x995C\n0xC5E5\t0x9A5A\n0xC5E6\t0x9A5B\n0xC5E7\t0x9A57\n0xC5E8\t0x9AD3\n0xC5E9\t0x9AD4\n0xC5EA\t0x9AD1\n0xC5EB\t0x9C54\n0xC5EC\t0x9C57\n0xC5ED\t0x9C56\n0xC5EE\t0x9DE5\n0xC5EF\t0x9E9F\n0xC5F0\t0x9EF4\n0xC5F1\t0x56D1\n0xC5F2\t0x58E9\n0xC5F3\t0x652C\n0xC5F4\t0x705E\n0xC5F5\t0x7671\n0xC5F6\t0x7672\n0xC5F7\t0x77D7\n0xC5F8\t0x7F50\n0xC5F9\t0x7F88\n0xC5FA\t0x8836\n0xC5FB\t0x8839\n0xC5FC\t0x8862\n0xC5FD\t0x8B93\n0xC5FE\t0x8B92\n0xC640\t0x8B96\n0xC641\t0x8277\n0xC642\t0x8D1B\n0xC643\t0x91C0\n0xC644\t0x946A\n0xC645\t0x9742\n0xC646\t0x9748\n0xC647\t0x9744\n0xC648\t0x97C6\n0xC649\t0x9870\n0xC64A\t0x9A5F\n0xC64B\t0x9B22\n0xC64C\t0x9B58\n0xC64D\t0x9C5F\n0xC64E\t0x9DF9\n0xC64F\t0x9DFA\n0xC650\t0x9E7C\n0xC651\t0x9E7D\n0xC652\t0x9F07\n0xC653\t0x9F77\n0xC654\t0x9F72\n0xC655\t0x5EF3\n0xC656\t0x6B16\n0xC657\t0x7063\n0xC658\t0x7C6C\n0xC659\t0x7C6E\n0xC65A\t0x883B\n0xC65B\t0x89C0\n0xC65C\t0x8EA1\n0xC65D\t0x91C1\n0xC65E\t0x9472\n0xC65F\t0x9470\n0xC660\t0x9871\n0xC661\t0x995E\n0xC662\t0x9AD6\n0xC663\t0x9B23\n0xC664\t0x9ECC\n0xC665\t0x7064\n0xC666\t0x77DA\n0xC667\t0x8B9A\n0xC668\t0x9477\n0xC669\t0x97C9\n0xC66A\t0x9A62\n0xC66B\t0x9A65\n0xC66C\t0x7E9C\n0xC66D\t0x8B9C\n0xC66E\t0x8EAA\n0xC66F\t0x91C5\n0xC670\t0x947D\n0xC671\t0x947E\n0xC672\t0x947C\n0xC673\t0x9C77\n0xC674\t0x9C78\n0xC675\t0x9EF7\n0xC676\t0x8C54\n0xC677\t0x947F\n0xC678\t0x9E1A\n0xC679\t0x7228\n0xC67A\t0x9A6A\n0xC67B\t0x9B31\n0xC67C\t0x9E1B\n0xC67D\t0x9E1E\n0xC67E\t0x7C72\n0xC6A1\t0x2460\n0xC6A2\t0x2461\n0xC6A3\t0x2462\n0xC6A4\t0x2463\n0xC6A5\t0x2464\n0xC6A6\t0x2465\n0xC6A7\t0x2466\n0xC6A8\t0x2467\n0xC6A9\t0x2468\n0xC6AA\t0x2469\n0xC6AB\t0x2474\n0xC6AC\t0x2475\n0xC6AD\t0x2476\n0xC6AE\t0x2477\n0xC6AF\t0x2478\n0xC6B0\t0x2479\n0xC6B1\t0x247A\n0xC6B2\t0x247B\n0xC6B3\t0x247C\n0xC6B4\t0x247D\n0xC6B5\t0x2170\n0xC6B6\t0x2171\n0xC6B7\t0x2172\n0xC6B8\t0x2173\n0xC6B9\t0x2174\n0xC6BA\t0x2175\n0xC6BB\t0x2176\n0xC6BC\t0x2177\n0xC6BD\t0x2178\n0xC6BE\t0x2179\n0xC6BF\t0x4E36\n0xC6C0\t0x4E3F\n0xC6C1\t0x4E85\n0xC6C2\t0x4EA0\n0xC6C3\t0x5182\n0xC6C4\t0x5196\n0xC6C5\t0x51AB\n0xC6C6\t0x52F9\n0xC6C7\t0x5338\n0xC6C8\t0x5369\n0xC6C9\t0x53B6\n0xC6CA\t0x590A\n0xC6CB\t0x5B80\n0xC6CC\t0x5DDB\n0xC6CD\t0x2F33\n0xC6CE\t0x5E7F\n0xC6D0\t0x5F50\n0xC6D1\t0x5F61\n0xC6D2\t0x6534\n0xC6D4\t0x7592\n0xC6D6\t0x8FB5\n0xC6D8\t0x00A8\n0xC6D9\t0x02C6\n0xC6DA\t0x30FD\n0xC6DB\t0x30FE\n0xC6DC\t0x309D\n0xC6DD\t0x309E\n0xC6E0\t0x3005\n0xC6E1\t0x3006\n0xC6E2\t0x3007\n0xC6E3\t0x30FC\n0xC6E4\t0xFF3B\n0xC6E5\t0xFF3D\n0xC6E6\t0x273D\n0xC6E7\t0x3041\n0xC6E8\t0x3042\n0xC6E9\t0x3043\n0xC6EA\t0x3044\n0xC6EB\t0x3045\n0xC6EC\t0x3046\n0xC6ED\t0x3047\n0xC6EE\t0x3048\n0xC6EF\t0x3049\n0xC6F0\t0x304A\n0xC6F1\t0x304B\n0xC6F2\t0x304C\n0xC6F3\t0x304D\n0xC6F4\t0x304E\n0xC6F5\t0x304F\n0xC6F6\t0x3050\n0xC6F7\t0x3051\n0xC6F8\t0x3052\n0xC6F9\t0x3053\n0xC6FA\t0x3054\n0xC6FB\t0x3055\n0xC6FC\t0x3056\n0xC6FD\t0x3057\n0xC6FE\t0x3058\n0xC740\t0x3059\n0xC741\t0x305A\n0xC742\t0x305B\n0xC743\t0x305C\n0xC744\t0x305D\n0xC745\t0x305E\n0xC746\t0x305F\n0xC747\t0x3060\n0xC748\t0x3061\n0xC749\t0x3062\n0xC74A\t0x3063\n0xC74B\t0x3064\n0xC74C\t0x3065\n0xC74D\t0x3066\n0xC74E\t0x3067\n0xC74F\t0x3068\n0xC750\t0x3069\n0xC751\t0x306A\n0xC752\t0x306B\n0xC753\t0x306C\n0xC754\t0x306D\n0xC755\t0x306E\n0xC756\t0x306F\n0xC757\t0x3070\n0xC758\t0x3071\n0xC759\t0x3072\n0xC75A\t0x3073\n0xC75B\t0x3074\n0xC75C\t0x3075\n0xC75D\t0x3076\n0xC75E\t0x3077\n0xC75F\t0x3078\n0xC760\t0x3079\n0xC761\t0x307A\n0xC762\t0x307B\n0xC763\t0x307C\n0xC764\t0x307D\n0xC765\t0x307E\n0xC766\t0x307F\n0xC767\t0x3080\n0xC768\t0x3081\n0xC769\t0x3082\n0xC76A\t0x3083\n0xC76B\t0x3084\n0xC76C\t0x3085\n0xC76D\t0x3086\n0xC76E\t0x3087\n0xC76F\t0x3088\n0xC770\t0x3089\n0xC771\t0x308A\n0xC772\t0x308B\n0xC773\t0x308C\n0xC774\t0x308D\n0xC775\t0x308E\n0xC776\t0x308F\n0xC777\t0x3090\n0xC778\t0x3091\n0xC779\t0x3092\n0xC77A\t0x3093\n0xC77B\t0x30A1\n0xC77C\t0x30A2\n0xC77D\t0x30A3\n0xC77E\t0x30A4\n0xC7A1\t0x30A5\n0xC7A2\t0x30A6\n0xC7A3\t0x30A7\n0xC7A4\t0x30A8\n0xC7A5\t0x30A9\n0xC7A6\t0x30AA\n0xC7A7\t0x30AB\n0xC7A8\t0x30AC\n0xC7A9\t0x30AD\n0xC7AA\t0x30AE\n0xC7AB\t0x30AF\n0xC7AC\t0x30B0\n0xC7AD\t0x30B1\n0xC7AE\t0x30B2\n0xC7AF\t0x30B3\n0xC7B0\t0x30B4\n0xC7B1\t0x30B5\n0xC7B2\t0x30B6\n0xC7B3\t0x30B7\n0xC7B4\t0x30B8\n0xC7B5\t0x30B9\n0xC7B6\t0x30BA\n0xC7B7\t0x30BB\n0xC7B8\t0x30BC\n0xC7B9\t0x30BD\n0xC7BA\t0x30BE\n0xC7BB\t0x30BF\n0xC7BC\t0x30C0\n0xC7BD\t0x30C1\n0xC7BE\t0x30C2\n0xC7BF\t0x30C3\n0xC7C0\t0x30C4\n0xC7C1\t0x30C5\n0xC7C2\t0x30C6\n0xC7C3\t0x30C7\n0xC7C4\t0x30C8\n0xC7C5\t0x30C9\n0xC7C6\t0x30CA\n0xC7C7\t0x30CB\n0xC7C8\t0x30CC\n0xC7C9\t0x30CD\n0xC7CA\t0x30CE\n0xC7CB\t0x30CF\n0xC7CC\t0x30D0\n0xC7CD\t0x30D1\n0xC7CE\t0x30D2\n0xC7CF\t0x30D3\n0xC7D0\t0x30D4\n0xC7D1\t0x30D5\n0xC7D2\t0x30D6\n0xC7D3\t0x30D7\n0xC7D4\t0x30D8\n0xC7D5\t0x30D9\n0xC7D6\t0x30DA\n0xC7D7\t0x30DB\n0xC7D8\t0x30DC\n0xC7D9\t0x30DD\n0xC7DA\t0x30DE\n0xC7DB\t0x30DF\n0xC7DC\t0x30E0\n0xC7DD\t0x30E1\n0xC7DE\t0x30E2\n0xC7DF\t0x30E3\n0xC7E0\t0x30E4\n0xC7E1\t0x30E5\n0xC7E2\t0x30E6\n0xC7E3\t0x30E7\n0xC7E4\t0x30E8\n0xC7E5\t0x30E9\n0xC7E6\t0x30EA\n0xC7E7\t0x30EB\n0xC7E8\t0x30EC\n0xC7E9\t0x30ED\n0xC7EA\t0x30EE\n0xC7EB\t0x30EF\n0xC7EC\t0x30F0\n0xC7ED\t0x30F1\n0xC7EE\t0x30F2\n0xC7EF\t0x30F3\n0xC7F0\t0x30F4\n0xC7F1\t0x30F5\n0xC7F2\t0x30F6\n0xC7F3\t0x0410\n0xC7F4\t0x0411\n0xC7F5\t0x0412\n0xC7F6\t0x0413\n0xC7F7\t0x0414\n0xC7F8\t0x0415\n0xC7F9\t0x0401\n0xC7FA\t0x0416\n0xC7FB\t0x0417\n0xC7FC\t0x0418\n0xC7FD\t0x0419\n0xC7FE\t0x041A\n0xC840\t0x041B\n0xC841\t0x041C\n0xC842\t0x041D\n0xC843\t0x041E\n0xC844\t0x041F\n0xC845\t0x0420\n0xC846\t0x0421\n0xC847\t0x0422\n0xC848\t0x0423\n0xC849\t0x0424\n0xC84A\t0x0425\n0xC84B\t0x0426\n0xC84C\t0x0427\n0xC84D\t0x0428\n0xC84E\t0x0429\n0xC84F\t0x042A\n0xC850\t0x042B\n0xC851\t0x042C\n0xC852\t0x042D\n0xC853\t0x042E\n0xC854\t0x042F\n0xC855\t0x0430\n0xC856\t0x0431\n0xC857\t0x0432\n0xC858\t0x0433\n0xC859\t0x0434\n0xC85A\t0x0435\n0xC85B\t0x0451\n0xC85C\t0x0436\n0xC85D\t0x0437\n0xC85E\t0x0438\n0xC85F\t0x0439\n0xC860\t0x043A\n0xC861\t0x043B\n0xC862\t0x043C\n0xC863\t0x043D\n0xC864\t0x043E\n0xC865\t0x043F\n0xC866\t0x0440\n0xC867\t0x0441\n0xC868\t0x0442\n0xC869\t0x0443\n0xC86A\t0x0444\n0xC86B\t0x0445\n0xC86C\t0x0446\n0xC86D\t0x0447\n0xC86E\t0x0448\n0xC86F\t0x0449\n0xC870\t0x044A\n0xC871\t0x044B\n0xC872\t0x044C\n0xC873\t0x044D\n0xC874\t0x044E\n0xC875\t0x044F\n0xC876\t0x21E7\n0xC877\t0x21B8\n0xC878\t0x21B9\n0xC879\t0x31CF\n0xC87A\t0x200CC\n0xC87B\t0x4E5A\n0xC87C\t0x2008A\n0xC87D\t0x5202\n0xC87E\t0x4491\n0xC8A1\t0x9FB0\n0xC8A2\t0x5188\n0xC8A3\t0x9FB1\n0xC8A4\t0x27607\n0xC8CD\t0xFFE2\n0xC8CE\t0xFFE4\n0xC8CF\t0xFF07\n0xC8D0\t0xFF02\n0xC8D1\t0x3231\n0xC8D2\t0x2116\n0xC8D3\t0x2121\n0xC8D4\t0x309B\n0xC8D5\t0x309C\n0xC8D6\t0x2E80\n0xC8D7\t0x2E84\n0xC8D8\t0x2E86\n0xC8D9\t0x2E87\n0xC8DA\t0x2E88\n0xC8DB\t0x2E8A\n0xC8DC\t0x2E8C\n0xC8DD\t0x2E8D\n0xC8DE\t0x2E95\n0xC8DF\t0x2E9C\n0xC8E0\t0x2E9D\n0xC8E1\t0x2EA5\n0xC8E2\t0x2EA7\n0xC8E3\t0x2EAA\n0xC8E4\t0x2EAC\n0xC8E5\t0x2EAE\n0xC8E6\t0x2EB6\n0xC8E7\t0x2EBC\n0xC8E8\t0x2EBE\n0xC8E9\t0x2EC6\n0xC8EA\t0x2ECA\n0xC8EB\t0x2ECC\n0xC8EC\t0x2ECD\n0xC8ED\t0x2ECF\n0xC8EE\t0x2ED6\n0xC8EF\t0x2ED7\n0xC8F0\t0x2EDE\n0xC8F1\t0x2EE3\n0xC8F5\t0x0283\n0xC8F6\t0x0250\n0xC8F7\t0x025B\n0xC8F8\t0x0254\n0xC8F9\t0x0275\n0xC8FA\t0x0153\n0xC8FB\t0x00F8\n0xC8FC\t0x014B\n0xC8FD\t0x028A\n0xC8FE\t0x026A\n0xC940\t0x4E42\n0xC941\t0x4E5C\n0xC942\t0x51F5\n0xC943\t0x531A\n0xC944\t0x5382\n0xC945\t0x4E07\n0xC946\t0x4E0C\n0xC947\t0x4E47\n0xC948\t0x4E8D\n0xC949\t0x56D7\n0xC94A\t0xFA0C\n0xC94B\t0x5C6E\n0xC94C\t0x5F73\n0xC94D\t0x4E0F\n0xC94E\t0x5187\n0xC94F\t0x4E0E\n0xC950\t0x4E2E\n0xC951\t0x4E93\n0xC952\t0x4EC2\n0xC953\t0x4EC9\n0xC954\t0x4EC8\n0xC955\t0x5198\n0xC956\t0x52FC\n0xC957\t0x536C\n0xC958\t0x53B9\n0xC959\t0x5720\n0xC95A\t0x5903\n0xC95B\t0x592C\n0xC95C\t0x5C10\n0xC95D\t0x5DFF\n0xC95E\t0x65E1\n0xC95F\t0x6BB3\n0xC960\t0x6BCC\n0xC961\t0x6C14\n0xC962\t0x723F\n0xC963\t0x4E31\n0xC964\t0x4E3C\n0xC965\t0x4EE8\n0xC966\t0x4EDC\n0xC967\t0x4EE9\n0xC968\t0x4EE1\n0xC969\t0x4EDD\n0xC96A\t0x4EDA\n0xC96B\t0x520C\n0xC96C\t0x531C\n0xC96D\t0x534C\n0xC96E\t0x5722\n0xC96F\t0x5723\n0xC970\t0x5917\n0xC971\t0x592F\n0xC972\t0x5B81\n0xC973\t0x5B84\n0xC974\t0x5C12\n0xC975\t0x5C3B\n0xC976\t0x5C74\n0xC977\t0x5C73\n0xC978\t0x5E04\n0xC979\t0x5E80\n0xC97A\t0x5E82\n0xC97B\t0x5FC9\n0xC97C\t0x6209\n0xC97D\t0x6250\n0xC97E\t0x6C15\n0xC9A1\t0x6C36\n0xC9A2\t0x6C43\n0xC9A3\t0x6C3F\n0xC9A4\t0x6C3B\n0xC9A5\t0x72AE\n0xC9A6\t0x72B0\n0xC9A7\t0x738A\n0xC9A8\t0x79B8\n0xC9A9\t0x808A\n0xC9AA\t0x961E\n0xC9AB\t0x4F0E\n0xC9AC\t0x4F18\n0xC9AD\t0x4F2C\n0xC9AE\t0x4EF5\n0xC9AF\t0x4F14\n0xC9B0\t0x4EF1\n0xC9B1\t0x4F00\n0xC9B2\t0x4EF7\n0xC9B3\t0x4F08\n0xC9B4\t0x4F1D\n0xC9B5\t0x4F02\n0xC9B6\t0x4F05\n0xC9B7\t0x4F22\n0xC9B8\t0x4F13\n0xC9B9\t0x4F04\n0xC9BA\t0x4EF4\n0xC9BB\t0x4F12\n0xC9BC\t0x51B1\n0xC9BD\t0x5213\n0xC9BE\t0x5209\n0xC9BF\t0x5210\n0xC9C0\t0x52A6\n0xC9C1\t0x5322\n0xC9C2\t0x531F\n0xC9C3\t0x534D\n0xC9C4\t0x538A\n0xC9C5\t0x5407\n0xC9C6\t0x56E1\n0xC9C7\t0x56DF\n0xC9C8\t0x572E\n0xC9C9\t0x572A\n0xC9CA\t0x5734\n0xC9CB\t0x593C\n0xC9CC\t0x5980\n0xC9CD\t0x597C\n0xC9CE\t0x5985\n0xC9CF\t0x597B\n0xC9D0\t0x597E\n0xC9D1\t0x5977\n0xC9D2\t0x597F\n0xC9D3\t0x5B56\n0xC9D4\t0x5C15\n0xC9D5\t0x5C25\n0xC9D6\t0x5C7C\n0xC9D7\t0x5C7A\n0xC9D8\t0x5C7B\n0xC9D9\t0x5C7E\n0xC9DA\t0x5DDF\n0xC9DB\t0x5E75\n0xC9DC\t0x5E84\n0xC9DD\t0x5F02\n0xC9DE\t0x5F1A\n0xC9DF\t0x5F74\n0xC9E0\t0x5FD5\n0xC9E1\t0x5FD4\n0xC9E2\t0x5FCF\n0xC9E3\t0x625C\n0xC9E4\t0x625E\n0xC9E5\t0x6264\n0xC9E6\t0x6261\n0xC9E7\t0x6266\n0xC9E8\t0x6262\n0xC9E9\t0x6259\n0xC9EA\t0x6260\n0xC9EB\t0x625A\n0xC9EC\t0x6265\n0xC9ED\t0x65EF\n0xC9EE\t0x65EE\n0xC9EF\t0x673E\n0xC9F0\t0x6739\n0xC9F1\t0x6738\n0xC9F2\t0x673B\n0xC9F3\t0x673A\n0xC9F4\t0x673F\n0xC9F5\t0x673C\n0xC9F6\t0x6733\n0xC9F7\t0x6C18\n0xC9F8\t0x6C46\n0xC9F9\t0x6C52\n0xC9FA\t0x6C5C\n0xC9FB\t0x6C4F\n0xC9FC\t0x6C4A\n0xC9FD\t0x6C54\n0xC9FE\t0x6C4B\n0xCA40\t0x6C4C\n0xCA41\t0x7071\n0xCA42\t0x725E\n0xCA43\t0x72B4\n0xCA44\t0x72B5\n0xCA45\t0x738E\n0xCA46\t0x752A\n0xCA47\t0x767F\n0xCA48\t0x7A75\n0xCA49\t0x7F51\n0xCA4A\t0x8278\n0xCA4B\t0x827C\n0xCA4C\t0x8280\n0xCA4D\t0x827D\n0xCA4E\t0x827F\n0xCA4F\t0x864D\n0xCA50\t0x897E\n0xCA51\t0x9099\n0xCA52\t0x9097\n0xCA53\t0x9098\n0xCA54\t0x909B\n0xCA55\t0x9094\n0xCA56\t0x9622\n0xCA57\t0x9624\n0xCA58\t0x9620\n0xCA59\t0x9623\n0xCA5A\t0x4F56\n0xCA5B\t0x4F3B\n0xCA5C\t0x4F62\n0xCA5D\t0x4F49\n0xCA5E\t0x4F53\n0xCA5F\t0x4F64\n0xCA60\t0x4F3E\n0xCA61\t0x4F67\n0xCA62\t0x4F52\n0xCA63\t0x4F5F\n0xCA64\t0x4F41\n0xCA65\t0x4F58\n0xCA66\t0x4F2D\n0xCA67\t0x4F33\n0xCA68\t0x4F3F\n0xCA69\t0x4F61\n0xCA6A\t0x518F\n0xCA6B\t0x51B9\n0xCA6C\t0x521C\n0xCA6D\t0x521E\n0xCA6E\t0x5221\n0xCA6F\t0x52AD\n0xCA70\t0x52AE\n0xCA71\t0x5309\n0xCA72\t0x5363\n0xCA73\t0x5372\n0xCA74\t0x538E\n0xCA75\t0x538F\n0xCA76\t0x5430\n0xCA77\t0x5437\n0xCA78\t0x542A\n0xCA79\t0x5454\n0xCA7A\t0x5445\n0xCA7B\t0x5419\n0xCA7C\t0x541C\n0xCA7D\t0x5425\n0xCA7E\t0x5418\n0xCAA1\t0x543D\n0xCAA2\t0x544F\n0xCAA3\t0x5441\n0xCAA4\t0x5428\n0xCAA5\t0x5424\n0xCAA6\t0x5447\n0xCAA7\t0x56EE\n0xCAA8\t0x56E7\n0xCAA9\t0x56E5\n0xCAAA\t0x5741\n0xCAAB\t0x5745\n0xCAAC\t0x574C\n0xCAAD\t0x5749\n0xCAAE\t0x574B\n0xCAAF\t0x5752\n0xCAB0\t0x5906\n0xCAB1\t0x5940\n0xCAB2\t0x59A6\n0xCAB3\t0x5998\n0xCAB4\t0x59A0\n0xCAB5\t0x5997\n0xCAB6\t0x598E\n0xCAB7\t0x59A2\n0xCAB8\t0x5990\n0xCAB9\t0x598F\n0xCABA\t0x59A7\n0xCABB\t0x59A1\n0xCABC\t0x5B8E\n0xCABD\t0x5B92\n0xCABE\t0x5C28\n0xCABF\t0x5C2A\n0xCAC0\t0x5C8D\n0xCAC1\t0x5C8F\n0xCAC2\t0x5C88\n0xCAC3\t0x5C8B\n0xCAC4\t0x5C89\n0xCAC5\t0x5C92\n0xCAC6\t0x5C8A\n0xCAC7\t0x5C86\n0xCAC8\t0x5C93\n0xCAC9\t0x5C95\n0xCACA\t0x5DE0\n0xCACB\t0x5E0A\n0xCACC\t0x5E0E\n0xCACD\t0x5E8B\n0xCACE\t0x5E89\n0xCACF\t0x5E8C\n0xCAD0\t0x5E88\n0xCAD1\t0x5E8D\n0xCAD2\t0x5F05\n0xCAD3\t0x5F1D\n0xCAD4\t0x5F78\n0xCAD5\t0x5F76\n0xCAD6\t0x5FD2\n0xCAD7\t0x5FD1\n0xCAD8\t0x5FD0\n0xCAD9\t0x5FED\n0xCADA\t0x5FE8\n0xCADB\t0x5FEE\n0xCADC\t0x5FF3\n0xCADD\t0x5FE1\n0xCADE\t0x5FE4\n0xCADF\t0x5FE3\n0xCAE0\t0x5FFA\n0xCAE1\t0x5FEF\n0xCAE2\t0x5FF7\n0xCAE3\t0x5FFB\n0xCAE4\t0x6000\n0xCAE5\t0x5FF4\n0xCAE6\t0x623A\n0xCAE7\t0x6283\n0xCAE8\t0x628C\n0xCAE9\t0x628E\n0xCAEA\t0x628F\n0xCAEB\t0x6294\n0xCAEC\t0x6287\n0xCAED\t0x6271\n0xCAEE\t0x627B\n0xCAEF\t0x627A\n0xCAF0\t0x6270\n0xCAF1\t0x6281\n0xCAF2\t0x6288\n0xCAF3\t0x6277\n0xCAF4\t0x627D\n0xCAF5\t0x6272\n0xCAF6\t0x6274\n0xCAF7\t0x6537\n0xCAF8\t0x65F0\n0xCAF9\t0x65F4\n0xCAFA\t0x65F3\n0xCAFB\t0x65F2\n0xCAFC\t0x65F5\n0xCAFD\t0x6745\n0xCAFE\t0x6747\n0xCB40\t0x6759\n0xCB41\t0x6755\n0xCB42\t0x674C\n0xCB43\t0x6748\n0xCB44\t0x675D\n0xCB45\t0x674D\n0xCB46\t0x675A\n0xCB47\t0x674B\n0xCB48\t0x6BD0\n0xCB49\t0x6C19\n0xCB4A\t0x6C1A\n0xCB4B\t0x6C78\n0xCB4C\t0x6C67\n0xCB4D\t0x6C6B\n0xCB4E\t0x6C84\n0xCB4F\t0x6C8B\n0xCB50\t0x6C8F\n0xCB51\t0x6C71\n0xCB52\t0x6C6F\n0xCB53\t0x6C69\n0xCB54\t0x6C9A\n0xCB55\t0x6C6D\n0xCB56\t0x6C87\n0xCB57\t0x6C95\n0xCB58\t0x6C9C\n0xCB59\t0x6C66\n0xCB5A\t0x6C73\n0xCB5B\t0x6C65\n0xCB5C\t0x6C7B\n0xCB5D\t0x6C8E\n0xCB5E\t0x7074\n0xCB5F\t0x707A\n0xCB60\t0x7263\n0xCB61\t0x72BF\n0xCB62\t0x72BD\n0xCB63\t0x72C3\n0xCB64\t0x72C6\n0xCB65\t0x72C1\n0xCB66\t0x72BA\n0xCB67\t0x72C5\n0xCB68\t0x7395\n0xCB69\t0x7397\n0xCB6A\t0x7393\n0xCB6B\t0x7394\n0xCB6C\t0x7392\n0xCB6D\t0x753A\n0xCB6E\t0x7539\n0xCB6F\t0x7594\n0xCB70\t0x7595\n0xCB71\t0x7681\n0xCB72\t0x793D\n0xCB73\t0x8034\n0xCB74\t0x8095\n0xCB75\t0x8099\n0xCB76\t0x8090\n0xCB77\t0x8092\n0xCB78\t0x809C\n0xCB79\t0x8290\n0xCB7A\t0x828F\n0xCB7B\t0x8285\n0xCB7C\t0x828E\n0xCB7D\t0x8291\n0xCB7E\t0x8293\n0xCBA1\t0x828A\n0xCBA2\t0x8283\n0xCBA3\t0x8284\n0xCBA4\t0x8C78\n0xCBA5\t0x8FC9\n0xCBA6\t0x8FBF\n0xCBA7\t0x909F\n0xCBA8\t0x90A1\n0xCBA9\t0x90A5\n0xCBAA\t0x909E\n0xCBAB\t0x90A7\n0xCBAC\t0x90A0\n0xCBAD\t0x9630\n0xCBAE\t0x9628\n0xCBAF\t0x962F\n0xCBB0\t0x962D\n0xCBB1\t0x4E33\n0xCBB2\t0x4F98\n0xCBB3\t0x4F7C\n0xCBB4\t0x4F85\n0xCBB5\t0x4F7D\n0xCBB6\t0x4F80\n0xCBB7\t0x4F87\n0xCBB8\t0x4F76\n0xCBB9\t0x4F74\n0xCBBA\t0x4F89\n0xCBBB\t0x4F84\n0xCBBC\t0x4F77\n0xCBBD\t0x4F4C\n0xCBBE\t0x4F97\n0xCBBF\t0x4F6A\n0xCBC0\t0x4F9A\n0xCBC1\t0x4F79\n0xCBC2\t0x4F81\n0xCBC3\t0x4F78\n0xCBC4\t0x4F90\n0xCBC5\t0x4F9C\n0xCBC6\t0x4F94\n0xCBC7\t0x4F9E\n0xCBC8\t0x4F92\n0xCBC9\t0x4F82\n0xCBCA\t0x4F95\n0xCBCB\t0x4F6B\n0xCBCC\t0x4F6E\n0xCBCD\t0x519E\n0xCBCE\t0x51BC\n0xCBCF\t0x51BE\n0xCBD0\t0x5235\n0xCBD1\t0x5232\n0xCBD2\t0x5233\n0xCBD3\t0x5246\n0xCBD4\t0x5231\n0xCBD5\t0x52BC\n0xCBD6\t0x530A\n0xCBD7\t0x530B\n0xCBD8\t0x533C\n0xCBD9\t0x5392\n0xCBDA\t0x5394\n0xCBDB\t0x5487\n0xCBDC\t0x547F\n0xCBDD\t0x5481\n0xCBDE\t0x5491\n0xCBDF\t0x5482\n0xCBE0\t0x5488\n0xCBE1\t0x546B\n0xCBE2\t0x547A\n0xCBE3\t0x547E\n0xCBE4\t0x5465\n0xCBE5\t0x546C\n0xCBE6\t0x5474\n0xCBE7\t0x5466\n0xCBE8\t0x548D\n0xCBE9\t0x546F\n0xCBEA\t0x5461\n0xCBEB\t0x5460\n0xCBEC\t0x5498\n0xCBED\t0x5463\n0xCBEE\t0x5467\n0xCBEF\t0x5464\n0xCBF0\t0x56F7\n0xCBF1\t0x56F9\n0xCBF2\t0x576F\n0xCBF3\t0x5772\n0xCBF4\t0x576D\n0xCBF5\t0x576B\n0xCBF6\t0x5771\n0xCBF7\t0x5770\n0xCBF8\t0x5776\n0xCBF9\t0x5780\n0xCBFA\t0x5775\n0xCBFB\t0x577B\n0xCBFC\t0x5773\n0xCBFD\t0x5774\n0xCBFE\t0x5762\n0xCC40\t0x5768\n0xCC41\t0x577D\n0xCC42\t0x590C\n0xCC43\t0x5945\n0xCC44\t0x59B5\n0xCC45\t0x59BA\n0xCC46\t0x59CF\n0xCC47\t0x59CE\n0xCC48\t0x59B2\n0xCC49\t0x59CC\n0xCC4A\t0x59C1\n0xCC4B\t0x59B6\n0xCC4C\t0x59BC\n0xCC4D\t0x59C3\n0xCC4E\t0x59D6\n0xCC4F\t0x59B1\n0xCC50\t0x59BD\n0xCC51\t0x59C0\n0xCC52\t0x59C8\n0xCC53\t0x59B4\n0xCC54\t0x59C7\n0xCC55\t0x5B62\n0xCC56\t0x5B65\n0xCC57\t0x5B93\n0xCC58\t0x5B95\n0xCC59\t0x5C44\n0xCC5A\t0x5C47\n0xCC5B\t0x5CAE\n0xCC5C\t0x5CA4\n0xCC5D\t0x5CA0\n0xCC5E\t0x5CB5\n0xCC5F\t0x5CAF\n0xCC60\t0x5CA8\n0xCC61\t0x5CAC\n0xCC62\t0x5C9F\n0xCC63\t0x5CA3\n0xCC64\t0x5CAD\n0xCC65\t0x5CA2\n0xCC66\t0x5CAA\n0xCC67\t0x5CA7\n0xCC68\t0x5C9D\n0xCC69\t0x5CA5\n0xCC6A\t0x5CB6\n0xCC6B\t0x5CB0\n0xCC6C\t0x5CA6\n0xCC6D\t0x5E17\n0xCC6E\t0x5E14\n0xCC6F\t0x5E19\n0xCC70\t0x5F28\n0xCC71\t0x5F22\n0xCC72\t0x5F23\n0xCC73\t0x5F24\n0xCC74\t0x5F54\n0xCC75\t0x5F82\n0xCC76\t0x5F7E\n0xCC77\t0x5F7D\n0xCC78\t0x5FDE\n0xCC79\t0x5FE5\n0xCC7A\t0x602D\n0xCC7B\t0x6026\n0xCC7C\t0x6019\n0xCC7D\t0x6032\n0xCC7E\t0x600B\n0xCCA1\t0x6034\n0xCCA2\t0x600A\n0xCCA3\t0x6017\n0xCCA4\t0x6033\n0xCCA5\t0x601A\n0xCCA6\t0x601E\n0xCCA7\t0x602C\n0xCCA8\t0x6022\n0xCCA9\t0x600D\n0xCCAA\t0x6010\n0xCCAB\t0x602E\n0xCCAC\t0x6013\n0xCCAD\t0x6011\n0xCCAE\t0x600C\n0xCCAF\t0x6009\n0xCCB0\t0x601C\n0xCCB1\t0x6214\n0xCCB2\t0x623D\n0xCCB3\t0x62AD\n0xCCB4\t0x62B4\n0xCCB5\t0x62D1\n0xCCB6\t0x62BE\n0xCCB7\t0x62AA\n0xCCB8\t0x62B6\n0xCCB9\t0x62CA\n0xCCBA\t0x62AE\n0xCCBB\t0x62B3\n0xCCBC\t0x62AF\n0xCCBD\t0x62BB\n0xCCBE\t0x62A9\n0xCCBF\t0x62B0\n0xCCC0\t0x62B8\n0xCCC1\t0x653D\n0xCCC2\t0x65A8\n0xCCC3\t0x65BB\n0xCCC4\t0x6609\n0xCCC5\t0x65FC\n0xCCC6\t0x6604\n0xCCC7\t0x6612\n0xCCC8\t0x6608\n0xCCC9\t0x65FB\n0xCCCA\t0x6603\n0xCCCB\t0x660B\n0xCCCC\t0x660D\n0xCCCD\t0x6605\n0xCCCE\t0x65FD\n0xCCCF\t0x6611\n0xCCD0\t0x6610\n0xCCD1\t0x66F6\n0xCCD2\t0x670A\n0xCCD3\t0x6785\n0xCCD4\t0x676C\n0xCCD5\t0x678E\n0xCCD6\t0x6792\n0xCCD7\t0x6776\n0xCCD8\t0x677B\n0xCCD9\t0x6798\n0xCCDA\t0x6786\n0xCCDB\t0x6784\n0xCCDC\t0x6774\n0xCCDD\t0x678D\n0xCCDE\t0x678C\n0xCCDF\t0x677A\n0xCCE0\t0x679F\n0xCCE1\t0x6791\n0xCCE2\t0x6799\n0xCCE3\t0x6783\n0xCCE4\t0x677D\n0xCCE5\t0x6781\n0xCCE6\t0x6778\n0xCCE7\t0x6779\n0xCCE8\t0x6794\n0xCCE9\t0x6B25\n0xCCEA\t0x6B80\n0xCCEB\t0x6B7E\n0xCCEC\t0x6BDE\n0xCCED\t0x6C1D\n0xCCEE\t0x6C93\n0xCCEF\t0x6CEC\n0xCCF0\t0x6CEB\n0xCCF1\t0x6CEE\n0xCCF2\t0x6CD9\n0xCCF3\t0x6CB6\n0xCCF4\t0x6CD4\n0xCCF5\t0x6CAD\n0xCCF6\t0x6CE7\n0xCCF7\t0x6CB7\n0xCCF8\t0x6CD0\n0xCCF9\t0x6CC2\n0xCCFA\t0x6CBA\n0xCCFB\t0x6CC3\n0xCCFC\t0x6CC6\n0xCCFD\t0x6CED\n0xCCFE\t0x6CF2\n0xCD40\t0x6CD2\n0xCD41\t0x6CDD\n0xCD42\t0x6CB4\n0xCD43\t0x6C8A\n0xCD44\t0x6C9D\n0xCD45\t0x6C80\n0xCD46\t0x6CDE\n0xCD47\t0x6CC0\n0xCD48\t0x6D30\n0xCD49\t0x6CCD\n0xCD4A\t0x6CC7\n0xCD4B\t0x6CB0\n0xCD4C\t0x6CF9\n0xCD4D\t0x6CCF\n0xCD4E\t0x6CE9\n0xCD4F\t0x6CD1\n0xCD50\t0x7094\n0xCD51\t0x7098\n0xCD52\t0x7085\n0xCD53\t0x7093\n0xCD54\t0x7086\n0xCD55\t0x7084\n0xCD56\t0x7091\n0xCD57\t0x7096\n0xCD58\t0x7082\n0xCD59\t0x709A\n0xCD5A\t0x7083\n0xCD5B\t0x726A\n0xCD5C\t0x72D6\n0xCD5D\t0x72CB\n0xCD5E\t0x72D8\n0xCD5F\t0x72C9\n0xCD60\t0x72DC\n0xCD61\t0x72D2\n0xCD62\t0x72D4\n0xCD63\t0x72DA\n0xCD64\t0x72CC\n0xCD65\t0x72D1\n0xCD66\t0x73A4\n0xCD67\t0x73A1\n0xCD68\t0x73AD\n0xCD69\t0x73A6\n0xCD6A\t0x73A2\n0xCD6B\t0x73A0\n0xCD6C\t0x73AC\n0xCD6D\t0x739D\n0xCD6E\t0x74DD\n0xCD6F\t0x74E8\n0xCD70\t0x753F\n0xCD71\t0x7540\n0xCD72\t0x753E\n0xCD73\t0x758C\n0xCD74\t0x7598\n0xCD75\t0x76AF\n0xCD76\t0x76F3\n0xCD77\t0x76F1\n0xCD78\t0x76F0\n0xCD79\t0x76F5\n0xCD7A\t0x77F8\n0xCD7B\t0x77FC\n0xCD7C\t0x77F9\n0xCD7D\t0x77FB\n0xCD7E\t0x77FA\n0xCDA1\t0x77F7\n0xCDA2\t0x7942\n0xCDA3\t0x793F\n0xCDA4\t0x79C5\n0xCDA5\t0x7A78\n0xCDA6\t0x7A7B\n0xCDA7\t0x7AFB\n0xCDA8\t0x7C75\n0xCDA9\t0x7CFD\n0xCDAA\t0x8035\n0xCDAB\t0x808F\n0xCDAC\t0x80AE\n0xCDAD\t0x80A3\n0xCDAE\t0x80B8\n0xCDAF\t0x80B5\n0xCDB0\t0x80AD\n0xCDB1\t0x8220\n0xCDB2\t0x82A0\n0xCDB3\t0x82C0\n0xCDB4\t0x82AB\n0xCDB5\t0x829A\n0xCDB6\t0x8298\n0xCDB7\t0x829B\n0xCDB8\t0x82B5\n0xCDB9\t0x82A7\n0xCDBA\t0x82AE\n0xCDBB\t0x82BC\n0xCDBC\t0x829E\n0xCDBD\t0x82BA\n0xCDBE\t0x82B4\n0xCDBF\t0x82A8\n0xCDC0\t0x82A1\n0xCDC1\t0x82A9\n0xCDC2\t0x82C2\n0xCDC3\t0x82A4\n0xCDC4\t0x82C3\n0xCDC5\t0x82B6\n0xCDC6\t0x82A2\n0xCDC7\t0x8670\n0xCDC8\t0x866F\n0xCDC9\t0x866D\n0xCDCA\t0x866E\n0xCDCB\t0x8C56\n0xCDCC\t0x8FD2\n0xCDCD\t0x8FCB\n0xCDCE\t0x8FD3\n0xCDCF\t0x8FCD\n0xCDD0\t0x8FD6\n0xCDD1\t0x8FD5\n0xCDD2\t0x8FD7\n0xCDD3\t0x90B2\n0xCDD4\t0x90B4\n0xCDD5\t0x90AF\n0xCDD6\t0x90B3\n0xCDD7\t0x90B0\n0xCDD8\t0x9639\n0xCDD9\t0x963D\n0xCDDA\t0x963C\n0xCDDB\t0x963A\n0xCDDC\t0x9643\n0xCDDD\t0x4FCD\n0xCDDE\t0x4FC5\n0xCDDF\t0x4FD3\n0xCDE0\t0x4FB2\n0xCDE1\t0x4FC9\n0xCDE2\t0x4FCB\n0xCDE3\t0x4FC1\n0xCDE4\t0x4FD4\n0xCDE5\t0x4FDC\n0xCDE6\t0x4FD9\n0xCDE7\t0x4FBB\n0xCDE8\t0x4FB3\n0xCDE9\t0x4FDB\n0xCDEA\t0x4FC7\n0xCDEB\t0x4FD6\n0xCDEC\t0x4FBA\n0xCDED\t0x4FC0\n0xCDEE\t0x4FB9\n0xCDEF\t0x4FEC\n0xCDF0\t0x5244\n0xCDF1\t0x5249\n0xCDF2\t0x52C0\n0xCDF3\t0x52C2\n0xCDF4\t0x533D\n0xCDF5\t0x537C\n0xCDF6\t0x5397\n0xCDF7\t0x5396\n0xCDF8\t0x5399\n0xCDF9\t0x5398\n0xCDFA\t0x54BA\n0xCDFB\t0x54A1\n0xCDFC\t0x54AD\n0xCDFD\t0x54A5\n0xCDFE\t0x54CF\n0xCE40\t0x54C3\n0xCE41\t0x830D\n0xCE42\t0x54B7\n0xCE43\t0x54AE\n0xCE44\t0x54D6\n0xCE45\t0x54B6\n0xCE46\t0x54C5\n0xCE47\t0x54C6\n0xCE48\t0x54A0\n0xCE49\t0x5470\n0xCE4A\t0x54BC\n0xCE4B\t0x54A2\n0xCE4C\t0x54BE\n0xCE4D\t0x5472\n0xCE4E\t0x54DE\n0xCE4F\t0x54B0\n0xCE50\t0x57B5\n0xCE51\t0x579E\n0xCE52\t0x579F\n0xCE53\t0x57A4\n0xCE54\t0x578C\n0xCE55\t0x5797\n0xCE56\t0x579D\n0xCE57\t0x579B\n0xCE58\t0x5794\n0xCE59\t0x5798\n0xCE5A\t0x578F\n0xCE5B\t0x5799\n0xCE5C\t0x57A5\n0xCE5D\t0x579A\n0xCE5E\t0x5795\n0xCE5F\t0x58F4\n0xCE60\t0x590D\n0xCE61\t0x5953\n0xCE62\t0x59E1\n0xCE63\t0x59DE\n0xCE64\t0x59EE\n0xCE65\t0x5A00\n0xCE66\t0x59F1\n0xCE67\t0x59DD\n0xCE68\t0x59FA\n0xCE69\t0x59FD\n0xCE6A\t0x59FC\n0xCE6B\t0x59F6\n0xCE6C\t0x59E4\n0xCE6D\t0x59F2\n0xCE6E\t0x59F7\n0xCE6F\t0x59DB\n0xCE70\t0x59E9\n0xCE71\t0x59F3\n0xCE72\t0x59F5\n0xCE73\t0x59E0\n0xCE74\t0x59FE\n0xCE75\t0x59F4\n0xCE76\t0x59ED\n0xCE77\t0x5BA8\n0xCE78\t0x5C4C\n0xCE79\t0x5CD0\n0xCE7A\t0x5CD8\n0xCE7B\t0x5CCC\n0xCE7C\t0x5CD7\n0xCE7D\t0x5CCB\n0xCE7E\t0x5CDB\n0xCEA1\t0x5CDE\n0xCEA2\t0x5CDA\n0xCEA3\t0x5CC9\n0xCEA4\t0x5CC7\n0xCEA5\t0x5CCA\n0xCEA6\t0x5CD6\n0xCEA7\t0x5CD3\n0xCEA8\t0x5CD4\n0xCEA9\t0x5CCF\n0xCEAA\t0x5CC8\n0xCEAB\t0x5CC6\n0xCEAC\t0x5CCE\n0xCEAD\t0x5CDF\n0xCEAE\t0x5CF8\n0xCEAF\t0x5DF9\n0xCEB0\t0x5E21\n0xCEB1\t0x5E22\n0xCEB2\t0x5E23\n0xCEB3\t0x5E20\n0xCEB4\t0x5E24\n0xCEB5\t0x5EB0\n0xCEB6\t0x5EA4\n0xCEB7\t0x5EA2\n0xCEB8\t0x5E9B\n0xCEB9\t0x5EA3\n0xCEBA\t0x5EA5\n0xCEBB\t0x5F07\n0xCEBC\t0x5F2E\n0xCEBD\t0x5F56\n0xCEBE\t0x5F86\n0xCEBF\t0x6037\n0xCEC0\t0x6039\n0xCEC1\t0x6054\n0xCEC2\t0x6072\n0xCEC3\t0x605E\n0xCEC4\t0x6045\n0xCEC5\t0x6053\n0xCEC6\t0x6047\n0xCEC7\t0x6049\n0xCEC8\t0x605B\n0xCEC9\t0x604C\n0xCECA\t0x6040\n0xCECB\t0x6042\n0xCECC\t0x605F\n0xCECD\t0x6024\n0xCECE\t0x6044\n0xCECF\t0x6058\n0xCED0\t0x6066\n0xCED1\t0x606E\n0xCED2\t0x6242\n0xCED3\t0x6243\n0xCED4\t0x62CF\n0xCED5\t0x630D\n0xCED6\t0x630B\n0xCED7\t0x62F5\n0xCED8\t0x630E\n0xCED9\t0x6303\n0xCEDA\t0x62EB\n0xCEDB\t0x62F9\n0xCEDC\t0x630F\n0xCEDD\t0x630C\n0xCEDE\t0x62F8\n0xCEDF\t0x62F6\n0xCEE0\t0x6300\n0xCEE1\t0x6313\n0xCEE2\t0x6314\n0xCEE3\t0x62FA\n0xCEE4\t0x6315\n0xCEE5\t0x62FB\n0xCEE6\t0x62F0\n0xCEE7\t0x6541\n0xCEE8\t0x6543\n0xCEE9\t0x65AA\n0xCEEA\t0x65BF\n0xCEEB\t0x6636\n0xCEEC\t0x6621\n0xCEED\t0x6632\n0xCEEE\t0x6635\n0xCEEF\t0x661C\n0xCEF0\t0x6626\n0xCEF1\t0x6622\n0xCEF2\t0x6633\n0xCEF3\t0x662B\n0xCEF4\t0x663A\n0xCEF5\t0x661D\n0xCEF6\t0x6634\n0xCEF7\t0x6639\n0xCEF8\t0x662E\n0xCEF9\t0x670F\n0xCEFA\t0x6710\n0xCEFB\t0x67C1\n0xCEFC\t0x67F2\n0xCEFD\t0x67C8\n0xCEFE\t0x67BA\n0xCF40\t0x67DC\n0xCF41\t0x67BB\n0xCF42\t0x67F8\n0xCF43\t0x67D8\n0xCF44\t0x67C0\n0xCF45\t0x67B7\n0xCF46\t0x67C5\n0xCF47\t0x67EB\n0xCF48\t0x67E4\n0xCF49\t0x67DF\n0xCF4A\t0x67B5\n0xCF4B\t0x67CD\n0xCF4C\t0x67B3\n0xCF4D\t0x67F7\n0xCF4E\t0x67F6\n0xCF4F\t0x67EE\n0xCF50\t0x67E3\n0xCF51\t0x67C2\n0xCF52\t0x67B9\n0xCF53\t0x67CE\n0xCF54\t0x67E7\n0xCF55\t0x67F0\n0xCF56\t0x67B2\n0xCF57\t0x67FC\n0xCF58\t0x67C6\n0xCF59\t0x67ED\n0xCF5A\t0x67CC\n0xCF5B\t0x67AE\n0xCF5C\t0x67E6\n0xCF5D\t0x67DB\n0xCF5E\t0x67FA\n0xCF5F\t0x67C9\n0xCF60\t0x67CA\n0xCF61\t0x67C3\n0xCF62\t0x67EA\n0xCF63\t0x67CB\n0xCF64\t0x6B28\n0xCF65\t0x6B82\n0xCF66\t0x6B84\n0xCF67\t0x6BB6\n0xCF68\t0x6BD6\n0xCF69\t0x6BD8\n0xCF6A\t0x6BE0\n0xCF6B\t0x6C20\n0xCF6C\t0x6C21\n0xCF6D\t0x6D28\n0xCF6E\t0x6D34\n0xCF6F\t0x6D2D\n0xCF70\t0x6D1F\n0xCF71\t0x6D3C\n0xCF72\t0x6D3F\n0xCF73\t0x6D12\n0xCF74\t0x6D0A\n0xCF75\t0x6CDA\n0xCF76\t0x6D33\n0xCF77\t0x6D04\n0xCF78\t0x6D19\n0xCF79\t0x6D3A\n0xCF7A\t0x6D1A\n0xCF7B\t0x6D11\n0xCF7C\t0x6D00\n0xCF7D\t0x6D1D\n0xCF7E\t0x6D42\n0xCFA1\t0x6D01\n0xCFA2\t0x6D18\n0xCFA3\t0x6D37\n0xCFA4\t0x6D03\n0xCFA5\t0x6D0F\n0xCFA6\t0x6D40\n0xCFA7\t0x6D07\n0xCFA8\t0x6D20\n0xCFA9\t0x6D2C\n0xCFAA\t0x6D08\n0xCFAB\t0x6D22\n0xCFAC\t0x6D09\n0xCFAD\t0x6D10\n0xCFAE\t0x70B7\n0xCFAF\t0x709F\n0xCFB0\t0x70BE\n0xCFB1\t0x70B1\n0xCFB2\t0x70B0\n0xCFB3\t0x70A1\n0xCFB4\t0x70B4\n0xCFB5\t0x70B5\n0xCFB6\t0x70A9\n0xCFB7\t0x7241\n0xCFB8\t0x7249\n0xCFB9\t0x724A\n0xCFBA\t0x726C\n0xCFBB\t0x7270\n0xCFBC\t0x7273\n0xCFBD\t0x726E\n0xCFBE\t0x72CA\n0xCFBF\t0x72E4\n0xCFC0\t0x72E8\n0xCFC1\t0x72EB\n0xCFC2\t0x72DF\n0xCFC3\t0x72EA\n0xCFC4\t0x72E6\n0xCFC5\t0x72E3\n0xCFC6\t0x7385\n0xCFC7\t0x73CC\n0xCFC8\t0x73C2\n0xCFC9\t0x73C8\n0xCFCA\t0x73C5\n0xCFCB\t0x73B9\n0xCFCC\t0x73B6\n0xCFCD\t0x73B5\n0xCFCE\t0x73B4\n0xCFCF\t0x73EB\n0xCFD0\t0x73BF\n0xCFD1\t0x73C7\n0xCFD2\t0x73BE\n0xCFD3\t0x73C3\n0xCFD4\t0x73C6\n0xCFD5\t0x73B8\n0xCFD6\t0x73CB\n0xCFD7\t0x74EC\n0xCFD8\t0x74EE\n0xCFD9\t0x752E\n0xCFDA\t0x7547\n0xCFDB\t0x7548\n0xCFDC\t0x75A7\n0xCFDD\t0x75AA\n0xCFDE\t0x7679\n0xCFDF\t0x76C4\n0xCFE0\t0x7708\n0xCFE1\t0x7703\n0xCFE2\t0x7704\n0xCFE3\t0x7705\n0xCFE4\t0x770A\n0xCFE5\t0x76F7\n0xCFE6\t0x76FB\n0xCFE7\t0x76FA\n0xCFE8\t0x77E7\n0xCFE9\t0x77E8\n0xCFEA\t0x7806\n0xCFEB\t0x7811\n0xCFEC\t0x7812\n0xCFED\t0x7805\n0xCFEE\t0x7810\n0xCFEF\t0x780F\n0xCFF0\t0x780E\n0xCFF1\t0x7809\n0xCFF2\t0x7803\n0xCFF3\t0x7813\n0xCFF4\t0x794A\n0xCFF5\t0x794C\n0xCFF6\t0x794B\n0xCFF7\t0x7945\n0xCFF8\t0x7944\n0xCFF9\t0x79D5\n0xCFFA\t0x79CD\n0xCFFB\t0x79CF\n0xCFFC\t0x79D6\n0xCFFD\t0x79CE\n0xCFFE\t0x7A80\n0xD040\t0x7A7E\n0xD041\t0x7AD1\n0xD042\t0x7B00\n0xD043\t0x7B01\n0xD044\t0x7C7A\n0xD045\t0x7C78\n0xD046\t0x7C79\n0xD047\t0x7C7F\n0xD048\t0x7C80\n0xD049\t0x7C81\n0xD04A\t0x7D03\n0xD04B\t0x7D08\n0xD04C\t0x7D01\n0xD04D\t0x7F58\n0xD04E\t0x7F91\n0xD04F\t0x7F8D\n0xD050\t0x7FBE\n0xD051\t0x8007\n0xD052\t0x800E\n0xD053\t0x800F\n0xD054\t0x8014\n0xD055\t0x8037\n0xD056\t0x80D8\n0xD057\t0x80C7\n0xD058\t0x80E0\n0xD059\t0x80D1\n0xD05A\t0x80C8\n0xD05B\t0x80C2\n0xD05C\t0x80D0\n0xD05D\t0x80C5\n0xD05E\t0x80E3\n0xD05F\t0x80D9\n0xD060\t0x80DC\n0xD061\t0x80CA\n0xD062\t0x80D5\n0xD063\t0x80C9\n0xD064\t0x80CF\n0xD065\t0x80D7\n0xD066\t0x80E6\n0xD067\t0x80CD\n0xD068\t0x81FF\n0xD069\t0x8221\n0xD06A\t0x8294\n0xD06B\t0x82D9\n0xD06C\t0x82FE\n0xD06D\t0x82F9\n0xD06E\t0x8307\n0xD06F\t0x82E8\n0xD070\t0x8300\n0xD071\t0x82D5\n0xD072\t0x833A\n0xD073\t0x82EB\n0xD074\t0x82D6\n0xD075\t0x82F4\n0xD076\t0x82EC\n0xD077\t0x82E1\n0xD078\t0x82F2\n0xD079\t0x82F5\n0xD07A\t0x830C\n0xD07B\t0x82FB\n0xD07C\t0x82F6\n0xD07D\t0x82F0\n0xD07E\t0x82EA\n0xD0A1\t0x82E4\n0xD0A2\t0x82E0\n0xD0A3\t0x82FA\n0xD0A4\t0x82F3\n0xD0A5\t0x82ED\n0xD0A6\t0x8677\n0xD0A7\t0x8674\n0xD0A8\t0x867C\n0xD0A9\t0x8673\n0xD0AA\t0x8841\n0xD0AB\t0x884E\n0xD0AC\t0x8867\n0xD0AD\t0x886A\n0xD0AE\t0x8869\n0xD0AF\t0x89D3\n0xD0B0\t0x8A04\n0xD0B1\t0x8A07\n0xD0B2\t0x8D72\n0xD0B3\t0x8FE3\n0xD0B4\t0x8FE1\n0xD0B5\t0x8FEE\n0xD0B6\t0x8FE0\n0xD0B7\t0x90F1\n0xD0B8\t0x90BD\n0xD0B9\t0x90BF\n0xD0BA\t0x90D5\n0xD0BB\t0x90C5\n0xD0BC\t0x90BE\n0xD0BD\t0x90C7\n0xD0BE\t0x90CB\n0xD0BF\t0x90C8\n0xD0C0\t0x91D4\n0xD0C1\t0x91D3\n0xD0C2\t0x9654\n0xD0C3\t0x964F\n0xD0C4\t0x9651\n0xD0C5\t0x9653\n0xD0C6\t0x964A\n0xD0C7\t0x964E\n0xD0C8\t0x501E\n0xD0C9\t0x5005\n0xD0CA\t0x5007\n0xD0CB\t0x5013\n0xD0CC\t0x5022\n0xD0CD\t0x5030\n0xD0CE\t0x501B\n0xD0CF\t0x4FF5\n0xD0D0\t0x4FF4\n0xD0D1\t0x5033\n0xD0D2\t0x5037\n0xD0D3\t0x502C\n0xD0D4\t0x4FF6\n0xD0D5\t0x4FF7\n0xD0D6\t0x5017\n0xD0D7\t0x501C\n0xD0D8\t0x5020\n0xD0D9\t0x5027\n0xD0DA\t0x5035\n0xD0DB\t0x502F\n0xD0DC\t0x5031\n0xD0DD\t0x500E\n0xD0DE\t0x515A\n0xD0DF\t0x5194\n0xD0E0\t0x5193\n0xD0E1\t0x51CA\n0xD0E2\t0x51C4\n0xD0E3\t0x51C5\n0xD0E4\t0x51C8\n0xD0E5\t0x51CE\n0xD0E6\t0x5261\n0xD0E7\t0x525A\n0xD0E8\t0x5252\n0xD0E9\t0x525E\n0xD0EA\t0x525F\n0xD0EB\t0x5255\n0xD0EC\t0x5262\n0xD0ED\t0x52CD\n0xD0EE\t0x530E\n0xD0EF\t0x539E\n0xD0F0\t0x5526\n0xD0F1\t0x54E2\n0xD0F2\t0x5517\n0xD0F3\t0x5512\n0xD0F4\t0x54E7\n0xD0F5\t0x54F3\n0xD0F6\t0x54E4\n0xD0F7\t0x551A\n0xD0F8\t0x54FF\n0xD0F9\t0x5504\n0xD0FA\t0x5508\n0xD0FB\t0x54EB\n0xD0FC\t0x5511\n0xD0FD\t0x5505\n0xD0FE\t0x54F1\n0xD140\t0x550A\n0xD141\t0x54FB\n0xD142\t0x54F7\n0xD143\t0x54F8\n0xD144\t0x54E0\n0xD145\t0x550E\n0xD146\t0x5503\n0xD147\t0x550B\n0xD148\t0x5701\n0xD149\t0x5702\n0xD14A\t0x57CC\n0xD14B\t0x5832\n0xD14C\t0x57D5\n0xD14D\t0x57D2\n0xD14E\t0x57BA\n0xD14F\t0x57C6\n0xD150\t0x57BD\n0xD151\t0x57BC\n0xD152\t0x57B8\n0xD153\t0x57B6\n0xD154\t0x57BF\n0xD155\t0x57C7\n0xD156\t0x57D0\n0xD157\t0x57B9\n0xD158\t0x57C1\n0xD159\t0x590E\n0xD15A\t0x594A\n0xD15B\t0x5A19\n0xD15C\t0x5A16\n0xD15D\t0x5A2D\n0xD15E\t0x5A2E\n0xD15F\t0x5A15\n0xD160\t0x5A0F\n0xD161\t0x5A17\n0xD162\t0x5A0A\n0xD163\t0x5A1E\n0xD164\t0x5A33\n0xD165\t0x5B6C\n0xD166\t0x5BA7\n0xD167\t0x5BAD\n0xD168\t0x5BAC\n0xD169\t0x5C03\n0xD16A\t0x5C56\n0xD16B\t0x5C54\n0xD16C\t0x5CEC\n0xD16D\t0x5CFF\n0xD16E\t0x5CEE\n0xD16F\t0x5CF1\n0xD170\t0x5CF7\n0xD171\t0x5D00\n0xD172\t0x5CF9\n0xD173\t0x5E29\n0xD174\t0x5E28\n0xD175\t0x5EA8\n0xD176\t0x5EAE\n0xD177\t0x5EAA\n0xD178\t0x5EAC\n0xD179\t0x5F33\n0xD17A\t0x5F30\n0xD17B\t0x5F67\n0xD17C\t0x605D\n0xD17D\t0x605A\n0xD17E\t0x6067\n0xD1A1\t0x6041\n0xD1A2\t0x60A2\n0xD1A3\t0x6088\n0xD1A4\t0x6080\n0xD1A5\t0x6092\n0xD1A6\t0x6081\n0xD1A7\t0x609D\n0xD1A8\t0x6083\n0xD1A9\t0x6095\n0xD1AA\t0x609B\n0xD1AB\t0x6097\n0xD1AC\t0x6087\n0xD1AD\t0x609C\n0xD1AE\t0x608E\n0xD1AF\t0x6219\n0xD1B0\t0x6246\n0xD1B1\t0x62F2\n0xD1B2\t0x6310\n0xD1B3\t0x6356\n0xD1B4\t0x632C\n0xD1B5\t0x6344\n0xD1B6\t0x6345\n0xD1B7\t0x6336\n0xD1B8\t0x6343\n0xD1B9\t0x63E4\n0xD1BA\t0x6339\n0xD1BB\t0x634B\n0xD1BC\t0x634A\n0xD1BD\t0x633C\n0xD1BE\t0x6329\n0xD1BF\t0x6341\n0xD1C0\t0x6334\n0xD1C1\t0x6358\n0xD1C2\t0x6354\n0xD1C3\t0x6359\n0xD1C4\t0x632D\n0xD1C5\t0x6347\n0xD1C6\t0x6333\n0xD1C7\t0x635A\n0xD1C8\t0x6351\n0xD1C9\t0x6338\n0xD1CA\t0x6357\n0xD1CB\t0x6340\n0xD1CC\t0x6348\n0xD1CD\t0x654A\n0xD1CE\t0x6546\n0xD1CF\t0x65C6\n0xD1D0\t0x65C3\n0xD1D1\t0x65C4\n0xD1D2\t0x65C2\n0xD1D3\t0x664A\n0xD1D4\t0x665F\n0xD1D5\t0x6647\n0xD1D6\t0x6651\n0xD1D7\t0x6712\n0xD1D8\t0x6713\n0xD1D9\t0x681F\n0xD1DA\t0x681A\n0xD1DB\t0x6849\n0xD1DC\t0x6832\n0xD1DD\t0x6833\n0xD1DE\t0x683B\n0xD1DF\t0x684B\n0xD1E0\t0x684F\n0xD1E1\t0x6816\n0xD1E2\t0x6831\n0xD1E3\t0x681C\n0xD1E4\t0x6835\n0xD1E5\t0x682B\n0xD1E6\t0x682D\n0xD1E7\t0x682F\n0xD1E8\t0x684E\n0xD1E9\t0x6844\n0xD1EA\t0x6834\n0xD1EB\t0x681D\n0xD1EC\t0x6812\n0xD1ED\t0x6814\n0xD1EE\t0x6826\n0xD1EF\t0x6828\n0xD1F0\t0x682E\n0xD1F1\t0x684D\n0xD1F2\t0x683A\n0xD1F3\t0x6825\n0xD1F4\t0x6820\n0xD1F5\t0x6B2C\n0xD1F6\t0x6B2F\n0xD1F7\t0x6B2D\n0xD1F8\t0x6B31\n0xD1F9\t0x6B34\n0xD1FA\t0x6B6D\n0xD1FB\t0x8082\n0xD1FC\t0x6B88\n0xD1FD\t0x6BE6\n0xD1FE\t0x6BE4\n0xD240\t0x6BE8\n0xD241\t0x6BE3\n0xD242\t0x6BE2\n0xD243\t0x6BE7\n0xD244\t0x6C25\n0xD245\t0x6D7A\n0xD246\t0x6D63\n0xD247\t0x6D64\n0xD248\t0x6D76\n0xD249\t0x6D0D\n0xD24A\t0x6D61\n0xD24B\t0x6D92\n0xD24C\t0x6D58\n0xD24D\t0x6D62\n0xD24E\t0x6D6D\n0xD24F\t0x6D6F\n0xD250\t0x6D91\n0xD251\t0x6D8D\n0xD252\t0x6DEF\n0xD253\t0x6D7F\n0xD254\t0x6D86\n0xD255\t0x6D5E\n0xD256\t0x6D67\n0xD257\t0x6D60\n0xD258\t0x6D97\n0xD259\t0x6D70\n0xD25A\t0x6D7C\n0xD25B\t0x6D5F\n0xD25C\t0x6D82\n0xD25D\t0x6D98\n0xD25E\t0x6D2F\n0xD25F\t0x6D68\n0xD260\t0x6D8B\n0xD261\t0x6D7E\n0xD262\t0x6D80\n0xD263\t0x6D84\n0xD264\t0x6D16\n0xD265\t0x6D83\n0xD266\t0x6D7B\n0xD267\t0x6D7D\n0xD268\t0x6D75\n0xD269\t0x6D90\n0xD26A\t0x70DC\n0xD26B\t0x70D3\n0xD26C\t0x70D1\n0xD26D\t0x70DD\n0xD26E\t0x70CB\n0xD26F\t0x7F39\n0xD270\t0x70E2\n0xD271\t0x70D7\n0xD272\t0x70D2\n0xD273\t0x70DE\n0xD274\t0x70E0\n0xD275\t0x70D4\n0xD276\t0x70CD\n0xD277\t0x70C5\n0xD278\t0x70C6\n0xD279\t0x70C7\n0xD27A\t0x70DA\n0xD27B\t0x70CE\n0xD27C\t0x70E1\n0xD27D\t0x7242\n0xD27E\t0x7278\n0xD2A1\t0x7277\n0xD2A2\t0x7276\n0xD2A3\t0x7300\n0xD2A4\t0x72FA\n0xD2A5\t0x72F4\n0xD2A6\t0x72FE\n0xD2A7\t0x72F6\n0xD2A8\t0x72F3\n0xD2A9\t0x72FB\n0xD2AA\t0x7301\n0xD2AB\t0x73D3\n0xD2AC\t0x73D9\n0xD2AD\t0x73E5\n0xD2AE\t0x73D6\n0xD2AF\t0x73BC\n0xD2B0\t0x73E7\n0xD2B1\t0x73E3\n0xD2B2\t0x73E9\n0xD2B3\t0x73DC\n0xD2B4\t0x73D2\n0xD2B5\t0x73DB\n0xD2B6\t0x73D4\n0xD2B7\t0x73DD\n0xD2B8\t0x73DA\n0xD2B9\t0x73D7\n0xD2BA\t0x73D8\n0xD2BB\t0x73E8\n0xD2BC\t0x74DE\n0xD2BD\t0x74DF\n0xD2BE\t0x74F4\n0xD2BF\t0x74F5\n0xD2C0\t0x7521\n0xD2C1\t0x755B\n0xD2C2\t0x755F\n0xD2C3\t0x75B0\n0xD2C4\t0x75C1\n0xD2C5\t0x75BB\n0xD2C6\t0x75C4\n0xD2C7\t0x75C0\n0xD2C8\t0x75BF\n0xD2C9\t0x75B6\n0xD2CA\t0x75BA\n0xD2CB\t0x768A\n0xD2CC\t0x76C9\n0xD2CD\t0x771D\n0xD2CE\t0x771B\n0xD2CF\t0x7710\n0xD2D0\t0x7713\n0xD2D1\t0x7712\n0xD2D2\t0x7723\n0xD2D3\t0x7711\n0xD2D4\t0x7715\n0xD2D5\t0x7719\n0xD2D6\t0x771A\n0xD2D7\t0x7722\n0xD2D8\t0x7727\n0xD2D9\t0x7823\n0xD2DA\t0x782C\n0xD2DB\t0x7822\n0xD2DC\t0x7835\n0xD2DD\t0x782F\n0xD2DE\t0x7828\n0xD2DF\t0x782E\n0xD2E0\t0x782B\n0xD2E1\t0x7821\n0xD2E2\t0x7829\n0xD2E3\t0x7833\n0xD2E4\t0x782A\n0xD2E5\t0x7831\n0xD2E6\t0x7954\n0xD2E7\t0x795B\n0xD2E8\t0x794F\n0xD2E9\t0x795C\n0xD2EA\t0x7953\n0xD2EB\t0x7952\n0xD2EC\t0x7951\n0xD2ED\t0x79EB\n0xD2EE\t0x79EC\n0xD2EF\t0x79E0\n0xD2F0\t0x79EE\n0xD2F1\t0x79ED\n0xD2F2\t0x79EA\n0xD2F3\t0x79DC\n0xD2F4\t0x79DE\n0xD2F5\t0x79DD\n0xD2F6\t0x7A86\n0xD2F7\t0x7A89\n0xD2F8\t0x7A85\n0xD2F9\t0x7A8B\n0xD2FA\t0x7A8C\n0xD2FB\t0x7A8A\n0xD2FC\t0x7A87\n0xD2FD\t0x7AD8\n0xD2FE\t0x7B10\n0xD340\t0x7B04\n0xD341\t0x7B13\n0xD342\t0x7B05\n0xD343\t0x7B0F\n0xD344\t0x7B08\n0xD345\t0x7B0A\n0xD346\t0x7B0E\n0xD347\t0x7B09\n0xD348\t0x7B12\n0xD349\t0x7C84\n0xD34A\t0x7C91\n0xD34B\t0x7C8A\n0xD34C\t0x7C8C\n0xD34D\t0x7C88\n0xD34E\t0x7C8D\n0xD34F\t0x7C85\n0xD350\t0x7D1E\n0xD351\t0x7D1D\n0xD352\t0x7D11\n0xD353\t0x7D0E\n0xD354\t0x7D18\n0xD355\t0x7D16\n0xD356\t0x7D13\n0xD357\t0x7D1F\n0xD358\t0x7D12\n0xD359\t0x7D0F\n0xD35A\t0x7D0C\n0xD35B\t0x7F5C\n0xD35C\t0x7F61\n0xD35D\t0x7F5E\n0xD35E\t0x7F60\n0xD35F\t0x7F5D\n0xD360\t0x7F5B\n0xD361\t0x7F96\n0xD362\t0x7F92\n0xD363\t0x7FC3\n0xD364\t0x7FC2\n0xD365\t0x7FC0\n0xD366\t0x8016\n0xD367\t0x803E\n0xD368\t0x8039\n0xD369\t0x80FA\n0xD36A\t0x80F2\n0xD36B\t0x80F9\n0xD36C\t0x80F5\n0xD36D\t0x8101\n0xD36E\t0x80FB\n0xD36F\t0x8100\n0xD370\t0x8201\n0xD371\t0x822F\n0xD372\t0x8225\n0xD373\t0x8333\n0xD374\t0x832D\n0xD375\t0x8344\n0xD376\t0x8319\n0xD377\t0x8351\n0xD378\t0x8325\n0xD379\t0x8356\n0xD37A\t0x833F\n0xD37B\t0x8341\n0xD37C\t0x8326\n0xD37D\t0x831C\n0xD37E\t0x8322\n0xD3A1\t0x8342\n0xD3A2\t0x834E\n0xD3A3\t0x831B\n0xD3A4\t0x832A\n0xD3A5\t0x8308\n0xD3A6\t0x833C\n0xD3A7\t0x834D\n0xD3A8\t0x8316\n0xD3A9\t0x8324\n0xD3AA\t0x8320\n0xD3AB\t0x8337\n0xD3AC\t0x832F\n0xD3AD\t0x8329\n0xD3AE\t0x8347\n0xD3AF\t0x8345\n0xD3B0\t0x834C\n0xD3B1\t0x8353\n0xD3B2\t0x831E\n0xD3B3\t0x832C\n0xD3B4\t0x834B\n0xD3B5\t0x8327\n0xD3B6\t0x8348\n0xD3B7\t0x8653\n0xD3B8\t0x8652\n0xD3B9\t0x86A2\n0xD3BA\t0x86A8\n0xD3BB\t0x8696\n0xD3BC\t0x868D\n0xD3BD\t0x8691\n0xD3BE\t0x869E\n0xD3BF\t0x8687\n0xD3C0\t0x8697\n0xD3C1\t0x8686\n0xD3C2\t0x868B\n0xD3C3\t0x869A\n0xD3C4\t0x8685\n0xD3C5\t0x86A5\n0xD3C6\t0x8699\n0xD3C7\t0x86A1\n0xD3C8\t0x86A7\n0xD3C9\t0x8695\n0xD3CA\t0x8698\n0xD3CB\t0x868E\n0xD3CC\t0x869D\n0xD3CD\t0x8690\n0xD3CE\t0x8694\n0xD3CF\t0x8843\n0xD3D0\t0x8844\n0xD3D1\t0x886D\n0xD3D2\t0x8875\n0xD3D3\t0x8876\n0xD3D4\t0x8872\n0xD3D5\t0x8880\n0xD3D6\t0x8871\n0xD3D7\t0x887F\n0xD3D8\t0x886F\n0xD3D9\t0x8883\n0xD3DA\t0x887E\n0xD3DB\t0x8874\n0xD3DC\t0x887C\n0xD3DD\t0x8A12\n0xD3DE\t0x8C47\n0xD3DF\t0x8C57\n0xD3E0\t0x8C7B\n0xD3E1\t0x8CA4\n0xD3E2\t0x8CA3\n0xD3E3\t0x8D76\n0xD3E4\t0x8D78\n0xD3E5\t0x8DB5\n0xD3E6\t0x8DB7\n0xD3E7\t0x8DB6\n0xD3E8\t0x8ED1\n0xD3E9\t0x8ED3\n0xD3EA\t0x8FFE\n0xD3EB\t0x8FF5\n0xD3EC\t0x9002\n0xD3ED\t0x8FFF\n0xD3EE\t0x8FFB\n0xD3EF\t0x9004\n0xD3F0\t0x8FFC\n0xD3F1\t0x8FF6\n0xD3F2\t0x90D6\n0xD3F3\t0x90E0\n0xD3F4\t0x90D9\n0xD3F5\t0x90DA\n0xD3F6\t0x90E3\n0xD3F7\t0x90DF\n0xD3F8\t0x90E5\n0xD3F9\t0x90D8\n0xD3FA\t0x90DB\n0xD3FB\t0x90D7\n0xD3FC\t0x90DC\n0xD3FD\t0x90E4\n0xD3FE\t0x9150\n0xD440\t0x914E\n0xD441\t0x914F\n0xD442\t0x91D5\n0xD443\t0x91E2\n0xD444\t0x91DA\n0xD445\t0x965C\n0xD446\t0x965F\n0xD447\t0x96BC\n0xD448\t0x98E3\n0xD449\t0x9ADF\n0xD44A\t0x9B2F\n0xD44B\t0x4E7F\n0xD44C\t0x5070\n0xD44D\t0x506A\n0xD44E\t0x5061\n0xD44F\t0x505E\n0xD450\t0x5060\n0xD451\t0x5053\n0xD452\t0x504B\n0xD453\t0x505D\n0xD454\t0x5072\n0xD455\t0x5048\n0xD456\t0x504D\n0xD457\t0x5041\n0xD458\t0x505B\n0xD459\t0x504A\n0xD45A\t0x5062\n0xD45B\t0x5015\n0xD45C\t0x5045\n0xD45D\t0x505F\n0xD45E\t0x5069\n0xD45F\t0x506B\n0xD460\t0x5063\n0xD461\t0x5064\n0xD462\t0x5046\n0xD463\t0x5040\n0xD464\t0x506E\n0xD465\t0x5073\n0xD466\t0x5057\n0xD467\t0x5051\n0xD468\t0x51D0\n0xD469\t0x526B\n0xD46A\t0x526D\n0xD46B\t0x526C\n0xD46C\t0x526E\n0xD46D\t0x52D6\n0xD46E\t0x52D3\n0xD46F\t0x532D\n0xD470\t0x539C\n0xD471\t0x5575\n0xD472\t0x5576\n0xD473\t0x553C\n0xD474\t0x554D\n0xD475\t0x5550\n0xD476\t0x5534\n0xD477\t0x552A\n0xD478\t0x5551\n0xD479\t0x5562\n0xD47A\t0x5536\n0xD47B\t0x5535\n0xD47C\t0x5530\n0xD47D\t0x5552\n0xD47E\t0x5545\n0xD4A1\t0x550C\n0xD4A2\t0x5532\n0xD4A3\t0x5565\n0xD4A4\t0x554E\n0xD4A5\t0x5539\n0xD4A6\t0x5548\n0xD4A7\t0x552D\n0xD4A8\t0x553B\n0xD4A9\t0x5540\n0xD4AA\t0x554B\n0xD4AB\t0x570A\n0xD4AC\t0x5707\n0xD4AD\t0x57FB\n0xD4AE\t0x5814\n0xD4AF\t0x57E2\n0xD4B0\t0x57F6\n0xD4B1\t0x57DC\n0xD4B2\t0x57F4\n0xD4B3\t0x5800\n0xD4B4\t0x57ED\n0xD4B5\t0x57FD\n0xD4B6\t0x5808\n0xD4B7\t0x57F8\n0xD4B8\t0x580B\n0xD4B9\t0x57F3\n0xD4BA\t0x57CF\n0xD4BB\t0x5807\n0xD4BC\t0x57EE\n0xD4BD\t0x57E3\n0xD4BE\t0x57F2\n0xD4BF\t0x57E5\n0xD4C0\t0x57EC\n0xD4C1\t0x57E1\n0xD4C2\t0x580E\n0xD4C3\t0x57FC\n0xD4C4\t0x5810\n0xD4C5\t0x57E7\n0xD4C6\t0x5801\n0xD4C7\t0x580C\n0xD4C8\t0x57F1\n0xD4C9\t0x57E9\n0xD4CA\t0x57F0\n0xD4CB\t0x580D\n0xD4CC\t0x5804\n0xD4CD\t0x595C\n0xD4CE\t0x5A60\n0xD4CF\t0x5A58\n0xD4D0\t0x5A55\n0xD4D1\t0x5A67\n0xD4D2\t0x5A5E\n0xD4D3\t0x5A38\n0xD4D4\t0x5A35\n0xD4D5\t0x5A6D\n0xD4D6\t0x5A50\n0xD4D7\t0x5A5F\n0xD4D8\t0x5A65\n0xD4D9\t0x5A6C\n0xD4DA\t0x5A53\n0xD4DB\t0x5A64\n0xD4DC\t0x5A57\n0xD4DD\t0x5A43\n0xD4DE\t0x5A5D\n0xD4DF\t0x5A52\n0xD4E0\t0x5A44\n0xD4E1\t0x5A5B\n0xD4E2\t0x5A48\n0xD4E3\t0x5A8E\n0xD4E4\t0x5A3E\n0xD4E5\t0x5A4D\n0xD4E6\t0x5A39\n0xD4E7\t0x5A4C\n0xD4E8\t0x5A70\n0xD4E9\t0x5A69\n0xD4EA\t0x5A47\n0xD4EB\t0x5A51\n0xD4EC\t0x5A56\n0xD4ED\t0x5A42\n0xD4EE\t0x5A5C\n0xD4EF\t0x5B72\n0xD4F0\t0x5B6E\n0xD4F1\t0x5BC1\n0xD4F2\t0x5BC0\n0xD4F3\t0x5C59\n0xD4F4\t0x5D1E\n0xD4F5\t0x5D0B\n0xD4F6\t0x5D1D\n0xD4F7\t0x5D1A\n0xD4F8\t0x5D20\n0xD4F9\t0x5D0C\n0xD4FA\t0x5D28\n0xD4FB\t0x5D0D\n0xD4FC\t0x5D26\n0xD4FD\t0x5D25\n0xD4FE\t0x5D0F\n0xD540\t0x5D30\n0xD541\t0x5D12\n0xD542\t0x5D23\n0xD543\t0x5D1F\n0xD544\t0x5D2E\n0xD545\t0x5E3E\n0xD546\t0x5E34\n0xD547\t0x5EB1\n0xD548\t0x5EB4\n0xD549\t0x5EB9\n0xD54A\t0x5EB2\n0xD54B\t0x5EB3\n0xD54C\t0x5F36\n0xD54D\t0x5F38\n0xD54E\t0x5F9B\n0xD54F\t0x5F96\n0xD550\t0x5F9F\n0xD551\t0x608A\n0xD552\t0x6090\n0xD553\t0x6086\n0xD554\t0x60BE\n0xD555\t0x60B0\n0xD556\t0x60BA\n0xD557\t0x60D3\n0xD558\t0x60D4\n0xD559\t0x60CF\n0xD55A\t0x60E4\n0xD55B\t0x60D9\n0xD55C\t0x60DD\n0xD55D\t0x60C8\n0xD55E\t0x60B1\n0xD55F\t0x60DB\n0xD560\t0x60B7\n0xD561\t0x60CA\n0xD562\t0x60BF\n0xD563\t0x60C3\n0xD564\t0x60CD\n0xD565\t0x60C0\n0xD566\t0x6332\n0xD567\t0x6365\n0xD568\t0x638A\n0xD569\t0x6382\n0xD56A\t0x637D\n0xD56B\t0x63BD\n0xD56C\t0x639E\n0xD56D\t0x63AD\n0xD56E\t0x639D\n0xD56F\t0x6397\n0xD570\t0x63AB\n0xD571\t0x638E\n0xD572\t0x636F\n0xD573\t0x6387\n0xD574\t0x6390\n0xD575\t0x636E\n0xD576\t0x63AF\n0xD577\t0x6375\n0xD578\t0x639C\n0xD579\t0x636D\n0xD57A\t0x63AE\n0xD57B\t0x637C\n0xD57C\t0x63A4\n0xD57D\t0x633B\n0xD57E\t0x639F\n0xD5A1\t0x6378\n0xD5A2\t0x6385\n0xD5A3\t0x6381\n0xD5A4\t0x6391\n0xD5A5\t0x638D\n0xD5A6\t0x6370\n0xD5A7\t0x6553\n0xD5A8\t0x65CD\n0xD5A9\t0x6665\n0xD5AA\t0x6661\n0xD5AB\t0x665B\n0xD5AC\t0x6659\n0xD5AD\t0x665C\n0xD5AE\t0x6662\n0xD5AF\t0x6718\n0xD5B0\t0x6879\n0xD5B1\t0x6887\n0xD5B2\t0x6890\n0xD5B3\t0x689C\n0xD5B4\t0x686D\n0xD5B5\t0x686E\n0xD5B6\t0x68AE\n0xD5B7\t0x68AB\n0xD5B8\t0x6956\n0xD5B9\t0x686F\n0xD5BA\t0x68A3\n0xD5BB\t0x68AC\n0xD5BC\t0x68A9\n0xD5BD\t0x6875\n0xD5BE\t0x6874\n0xD5BF\t0x68B2\n0xD5C0\t0x688F\n0xD5C1\t0x6877\n0xD5C2\t0x6892\n0xD5C3\t0x687C\n0xD5C4\t0x686B\n0xD5C5\t0x6872\n0xD5C6\t0x68AA\n0xD5C7\t0x6880\n0xD5C8\t0x6871\n0xD5C9\t0x687E\n0xD5CA\t0x689B\n0xD5CB\t0x6896\n0xD5CC\t0x688B\n0xD5CD\t0x68A0\n0xD5CE\t0x6889\n0xD5CF\t0x68A4\n0xD5D0\t0x6878\n0xD5D1\t0x687B\n0xD5D2\t0x6891\n0xD5D3\t0x688C\n0xD5D4\t0x688A\n0xD5D5\t0x687D\n0xD5D6\t0x6B36\n0xD5D7\t0x6B33\n0xD5D8\t0x6B37\n0xD5D9\t0x6B38\n0xD5DA\t0x6B91\n0xD5DB\t0x6B8F\n0xD5DC\t0x6B8D\n0xD5DD\t0x6B8E\n0xD5DE\t0x6B8C\n0xD5DF\t0x6C2A\n0xD5E0\t0x6DC0\n0xD5E1\t0x6DAB\n0xD5E2\t0x6DB4\n0xD5E3\t0x6DB3\n0xD5E4\t0x6E74\n0xD5E5\t0x6DAC\n0xD5E6\t0x6DE9\n0xD5E7\t0x6DE2\n0xD5E8\t0x6DB7\n0xD5E9\t0x6DF6\n0xD5EA\t0x6DD4\n0xD5EB\t0x6E00\n0xD5EC\t0x6DC8\n0xD5ED\t0x6DE0\n0xD5EE\t0x6DDF\n0xD5EF\t0x6DD6\n0xD5F0\t0x6DBE\n0xD5F1\t0x6DE5\n0xD5F2\t0x6DDC\n0xD5F3\t0x6DDD\n0xD5F4\t0x6DDB\n0xD5F5\t0x6DF4\n0xD5F6\t0x6DCA\n0xD5F7\t0x6DBD\n0xD5F8\t0x6DED\n0xD5F9\t0x6DF0\n0xD5FA\t0x6DBA\n0xD5FB\t0x6DD5\n0xD5FC\t0x6DC2\n0xD5FD\t0x6DCF\n0xD5FE\t0x6DC9\n0xD640\t0x6DD0\n0xD641\t0x6DF2\n0xD642\t0x6DD3\n0xD643\t0x6DFD\n0xD644\t0x6DD7\n0xD645\t0x6DCD\n0xD646\t0x6DE3\n0xD647\t0x6DBB\n0xD648\t0x70FA\n0xD649\t0x710D\n0xD64A\t0x70F7\n0xD64B\t0x7117\n0xD64C\t0x70F4\n0xD64D\t0x710C\n0xD64E\t0x70F0\n0xD64F\t0x7104\n0xD650\t0x70F3\n0xD651\t0x7110\n0xD652\t0x70FC\n0xD653\t0x70FF\n0xD654\t0x7106\n0xD655\t0x7113\n0xD656\t0x7100\n0xD657\t0x70F8\n0xD658\t0x70F6\n0xD659\t0x710B\n0xD65A\t0x7102\n0xD65B\t0x710E\n0xD65C\t0x727E\n0xD65D\t0x727B\n0xD65E\t0x727C\n0xD65F\t0x727F\n0xD660\t0x731D\n0xD661\t0x7317\n0xD662\t0x7307\n0xD663\t0x7311\n0xD664\t0x7318\n0xD665\t0x730A\n0xD666\t0x7308\n0xD667\t0x72FF\n0xD668\t0x730F\n0xD669\t0x731E\n0xD66A\t0x7388\n0xD66B\t0x73F6\n0xD66C\t0x73F8\n0xD66D\t0x73F5\n0xD66E\t0x7404\n0xD66F\t0x7401\n0xD670\t0x73FD\n0xD671\t0x7407\n0xD672\t0x7400\n0xD673\t0x73FA\n0xD674\t0x73FC\n0xD675\t0x73FF\n0xD676\t0x740C\n0xD677\t0x740B\n0xD678\t0x73F4\n0xD679\t0x7408\n0xD67A\t0x7564\n0xD67B\t0x7563\n0xD67C\t0x75CE\n0xD67D\t0x75D2\n0xD67E\t0x75CF\n0xD6A1\t0x75CB\n0xD6A2\t0x75CC\n0xD6A3\t0x75D1\n0xD6A4\t0x75D0\n0xD6A5\t0x768F\n0xD6A6\t0x7689\n0xD6A7\t0x76D3\n0xD6A8\t0x7739\n0xD6A9\t0x772F\n0xD6AA\t0x772D\n0xD6AB\t0x7731\n0xD6AC\t0x7732\n0xD6AD\t0x7734\n0xD6AE\t0x7733\n0xD6AF\t0x773D\n0xD6B0\t0x7725\n0xD6B1\t0x773B\n0xD6B2\t0x7735\n0xD6B3\t0x7848\n0xD6B4\t0x7852\n0xD6B5\t0x7849\n0xD6B6\t0x784D\n0xD6B7\t0x784A\n0xD6B8\t0x784C\n0xD6B9\t0x7826\n0xD6BA\t0x7845\n0xD6BB\t0x7850\n0xD6BC\t0x7964\n0xD6BD\t0x7967\n0xD6BE\t0x7969\n0xD6BF\t0x796A\n0xD6C0\t0x7963\n0xD6C1\t0x796B\n0xD6C2\t0x7961\n0xD6C3\t0x79BB\n0xD6C4\t0x79FA\n0xD6C5\t0x79F8\n0xD6C6\t0x79F6\n0xD6C7\t0x79F7\n0xD6C8\t0x7A8F\n0xD6C9\t0x7A94\n0xD6CA\t0x7A90\n0xD6CB\t0x7B35\n0xD6CC\t0x7B47\n0xD6CD\t0x7B34\n0xD6CE\t0x7B25\n0xD6CF\t0x7B30\n0xD6D0\t0x7B22\n0xD6D1\t0x7B24\n0xD6D2\t0x7B33\n0xD6D3\t0x7B18\n0xD6D4\t0x7B2A\n0xD6D5\t0x7B1D\n0xD6D6\t0x7B31\n0xD6D7\t0x7B2B\n0xD6D8\t0x7B2D\n0xD6D9\t0x7B2F\n0xD6DA\t0x7B32\n0xD6DB\t0x7B38\n0xD6DC\t0x7B1A\n0xD6DD\t0x7B23\n0xD6DE\t0x7C94\n0xD6DF\t0x7C98\n0xD6E0\t0x7C96\n0xD6E1\t0x7CA3\n0xD6E2\t0x7D35\n0xD6E3\t0x7D3D\n0xD6E4\t0x7D38\n0xD6E5\t0x7D36\n0xD6E6\t0x7D3A\n0xD6E7\t0x7D45\n0xD6E8\t0x7D2C\n0xD6E9\t0x7D29\n0xD6EA\t0x7D41\n0xD6EB\t0x7D47\n0xD6EC\t0x7D3E\n0xD6ED\t0x7D3F\n0xD6EE\t0x7D4A\n0xD6EF\t0x7D3B\n0xD6F0\t0x7D28\n0xD6F1\t0x7F63\n0xD6F2\t0x7F95\n0xD6F3\t0x7F9C\n0xD6F4\t0x7F9D\n0xD6F5\t0x7F9B\n0xD6F6\t0x7FCA\n0xD6F7\t0x7FCB\n0xD6F8\t0x7FCD\n0xD6F9\t0x7FD0\n0xD6FA\t0x7FD1\n0xD6FB\t0x7FC7\n0xD6FC\t0x7FCF\n0xD6FD\t0x7FC9\n0xD6FE\t0x801F\n0xD740\t0x801E\n0xD741\t0x801B\n0xD742\t0x8047\n0xD743\t0x8043\n0xD744\t0x8048\n0xD745\t0x8118\n0xD746\t0x8125\n0xD747\t0x8119\n0xD748\t0x811B\n0xD749\t0x812D\n0xD74A\t0x811F\n0xD74B\t0x812C\n0xD74C\t0x811E\n0xD74D\t0x8121\n0xD74E\t0x8115\n0xD74F\t0x8127\n0xD750\t0x811D\n0xD751\t0x8122\n0xD752\t0x8211\n0xD753\t0x8238\n0xD754\t0x8233\n0xD755\t0x823A\n0xD756\t0x8234\n0xD757\t0x8232\n0xD758\t0x8274\n0xD759\t0x8390\n0xD75A\t0x83A3\n0xD75B\t0x83A8\n0xD75C\t0x838D\n0xD75D\t0x837A\n0xD75E\t0x8373\n0xD75F\t0x83A4\n0xD760\t0x8374\n0xD761\t0x838F\n0xD762\t0x8381\n0xD763\t0x8395\n0xD764\t0x8399\n0xD765\t0x8375\n0xD766\t0x8394\n0xD767\t0x83A9\n0xD768\t0x837D\n0xD769\t0x8383\n0xD76A\t0x838C\n0xD76B\t0x839D\n0xD76C\t0x839B\n0xD76D\t0x83AA\n0xD76E\t0x838B\n0xD76F\t0x837E\n0xD770\t0x83A5\n0xD771\t0x83AF\n0xD772\t0x8388\n0xD773\t0x8397\n0xD774\t0x83B0\n0xD775\t0x837F\n0xD776\t0x83A6\n0xD777\t0x8387\n0xD778\t0x83AE\n0xD779\t0x8376\n0xD77A\t0x839A\n0xD77B\t0x8659\n0xD77C\t0x8656\n0xD77D\t0x86BF\n0xD77E\t0x86B7\n0xD7A1\t0x86C2\n0xD7A2\t0x86C1\n0xD7A3\t0x86C5\n0xD7A4\t0x86BA\n0xD7A5\t0x86B0\n0xD7A6\t0x86C8\n0xD7A7\t0x86B9\n0xD7A8\t0x86B3\n0xD7A9\t0x86B8\n0xD7AA\t0x86CC\n0xD7AB\t0x86B4\n0xD7AC\t0x86BB\n0xD7AD\t0x86BC\n0xD7AE\t0x86C3\n0xD7AF\t0x86BD\n0xD7B0\t0x86BE\n0xD7B1\t0x8852\n0xD7B2\t0x8889\n0xD7B3\t0x8895\n0xD7B4\t0x88A8\n0xD7B5\t0x88A2\n0xD7B6\t0x88AA\n0xD7B7\t0x889A\n0xD7B8\t0x8891\n0xD7B9\t0x88A1\n0xD7BA\t0x889F\n0xD7BB\t0x8898\n0xD7BC\t0x88A7\n0xD7BD\t0x8899\n0xD7BE\t0x889B\n0xD7BF\t0x8897\n0xD7C0\t0x88A4\n0xD7C1\t0x88AC\n0xD7C2\t0x888C\n0xD7C3\t0x8893\n0xD7C4\t0x888E\n0xD7C5\t0x8982\n0xD7C6\t0x89D6\n0xD7C7\t0x89D9\n0xD7C8\t0x89D5\n0xD7C9\t0x8A30\n0xD7CA\t0x8A27\n0xD7CB\t0x8A2C\n0xD7CC\t0x8A1E\n0xD7CD\t0x8C39\n0xD7CE\t0x8C3B\n0xD7CF\t0x8C5C\n0xD7D0\t0x8C5D\n0xD7D1\t0x8C7D\n0xD7D2\t0x8CA5\n0xD7D3\t0x8D7D\n0xD7D4\t0x8D7B\n0xD7D5\t0x8D79\n0xD7D6\t0x8DBC\n0xD7D7\t0x8DC2\n0xD7D8\t0x8DB9\n0xD7D9\t0x8DBF\n0xD7DA\t0x8DC1\n0xD7DB\t0x8ED8\n0xD7DC\t0x8EDE\n0xD7DD\t0x8EDD\n0xD7DE\t0x8EDC\n0xD7DF\t0x8ED7\n0xD7E0\t0x8EE0\n0xD7E1\t0x8EE1\n0xD7E2\t0x9024\n0xD7E3\t0x900B\n0xD7E4\t0x9011\n0xD7E5\t0x901C\n0xD7E6\t0x900C\n0xD7E7\t0x9021\n0xD7E8\t0x90EF\n0xD7E9\t0x90EA\n0xD7EA\t0x90F0\n0xD7EB\t0x90F4\n0xD7EC\t0x90F2\n0xD7ED\t0x90F3\n0xD7EE\t0x90D4\n0xD7EF\t0x90EB\n0xD7F0\t0x90EC\n0xD7F1\t0x90E9\n0xD7F2\t0x9156\n0xD7F3\t0x9158\n0xD7F4\t0x915A\n0xD7F5\t0x9153\n0xD7F6\t0x9155\n0xD7F7\t0x91EC\n0xD7F8\t0x91F4\n0xD7F9\t0x91F1\n0xD7FA\t0x91F3\n0xD7FB\t0x91F8\n0xD7FC\t0x91E4\n0xD7FD\t0x91F9\n0xD7FE\t0x91EA\n0xD840\t0x91EB\n0xD841\t0x91F7\n0xD842\t0x91E8\n0xD843\t0x91EE\n0xD844\t0x957A\n0xD845\t0x9586\n0xD846\t0x9588\n0xD847\t0x967C\n0xD848\t0x966D\n0xD849\t0x966B\n0xD84A\t0x9671\n0xD84B\t0x966F\n0xD84C\t0x96BF\n0xD84D\t0x976A\n0xD84E\t0x9804\n0xD84F\t0x98E5\n0xD850\t0x9997\n0xD851\t0x509B\n0xD852\t0x5095\n0xD853\t0x5094\n0xD854\t0x509E\n0xD855\t0x508B\n0xD856\t0x50A3\n0xD857\t0x5083\n0xD858\t0x508C\n0xD859\t0x508E\n0xD85A\t0x509D\n0xD85B\t0x5068\n0xD85C\t0x509C\n0xD85D\t0x5092\n0xD85E\t0x5082\n0xD85F\t0x5087\n0xD860\t0x515F\n0xD861\t0x51D4\n0xD862\t0x5312\n0xD863\t0x5311\n0xD864\t0x53A4\n0xD865\t0x53A7\n0xD866\t0x5591\n0xD867\t0x55A8\n0xD868\t0x55A5\n0xD869\t0x55AD\n0xD86A\t0x5577\n0xD86B\t0x5645\n0xD86C\t0x55A2\n0xD86D\t0x5593\n0xD86E\t0x5588\n0xD86F\t0x558F\n0xD870\t0x55B5\n0xD871\t0x5581\n0xD872\t0x55A3\n0xD873\t0x5592\n0xD874\t0x55A4\n0xD875\t0x557D\n0xD876\t0x558C\n0xD877\t0x55A6\n0xD878\t0x557F\n0xD879\t0x5595\n0xD87A\t0x55A1\n0xD87B\t0x558E\n0xD87C\t0x570C\n0xD87D\t0x5829\n0xD87E\t0x5837\n0xD8A1\t0x5819\n0xD8A2\t0x581E\n0xD8A3\t0x5827\n0xD8A4\t0x5823\n0xD8A5\t0x5828\n0xD8A6\t0x57F5\n0xD8A7\t0x5848\n0xD8A8\t0x5825\n0xD8A9\t0x581C\n0xD8AA\t0x581B\n0xD8AB\t0x5833\n0xD8AC\t0x583F\n0xD8AD\t0x5836\n0xD8AE\t0x582E\n0xD8AF\t0x5839\n0xD8B0\t0x5838\n0xD8B1\t0x582D\n0xD8B2\t0x582C\n0xD8B3\t0x583B\n0xD8B4\t0x5961\n0xD8B5\t0x5AAF\n0xD8B6\t0x5A94\n0xD8B7\t0x5A9F\n0xD8B8\t0x5A7A\n0xD8B9\t0x5AA2\n0xD8BA\t0x5A9E\n0xD8BB\t0x5A78\n0xD8BC\t0x5AA6\n0xD8BD\t0x5A7C\n0xD8BE\t0x5AA5\n0xD8BF\t0x5AAC\n0xD8C0\t0x5A95\n0xD8C1\t0x5AAE\n0xD8C2\t0x5A37\n0xD8C3\t0x5A84\n0xD8C4\t0x5A8A\n0xD8C5\t0x5A97\n0xD8C6\t0x5A83\n0xD8C7\t0x5A8B\n0xD8C8\t0x5AA9\n0xD8C9\t0x5A7B\n0xD8CA\t0x5A7D\n0xD8CB\t0x5A8C\n0xD8CC\t0x5A9C\n0xD8CD\t0x5A8F\n0xD8CE\t0x5A93\n0xD8CF\t0x5A9D\n0xD8D0\t0x5BEA\n0xD8D1\t0x5BCD\n0xD8D2\t0x5BCB\n0xD8D3\t0x5BD4\n0xD8D4\t0x5BD1\n0xD8D5\t0x5BCA\n0xD8D6\t0x5BCE\n0xD8D7\t0x5C0C\n0xD8D8\t0x5C30\n0xD8D9\t0x5D37\n0xD8DA\t0x5D43\n0xD8DB\t0x5D6B\n0xD8DC\t0x5D41\n0xD8DD\t0x5D4B\n0xD8DE\t0x5D3F\n0xD8DF\t0x5D35\n0xD8E0\t0x5D51\n0xD8E1\t0x5D4E\n0xD8E2\t0x5D55\n0xD8E3\t0x5D33\n0xD8E4\t0x5D3A\n0xD8E5\t0x5D52\n0xD8E6\t0x5D3D\n0xD8E7\t0x5D31\n0xD8E8\t0x5D59\n0xD8E9\t0x5D42\n0xD8EA\t0x5D39\n0xD8EB\t0x5D49\n0xD8EC\t0x5D38\n0xD8ED\t0x5D3C\n0xD8EE\t0x5D32\n0xD8EF\t0x5D36\n0xD8F0\t0x5D40\n0xD8F1\t0x5D45\n0xD8F2\t0x5E44\n0xD8F3\t0x5E41\n0xD8F4\t0x5F58\n0xD8F5\t0x5FA6\n0xD8F6\t0x5FA5\n0xD8F7\t0x5FAB\n0xD8F8\t0x60C9\n0xD8F9\t0x60B9\n0xD8FA\t0x60CC\n0xD8FB\t0x60E2\n0xD8FC\t0x60CE\n0xD8FD\t0x60C4\n0xD8FE\t0x6114\n0xD940\t0x60F2\n0xD941\t0x610A\n0xD942\t0x6116\n0xD943\t0x6105\n0xD944\t0x60F5\n0xD945\t0x6113\n0xD946\t0x60F8\n0xD947\t0x60FC\n0xD948\t0x60FE\n0xD949\t0x60C1\n0xD94A\t0x6103\n0xD94B\t0x6118\n0xD94C\t0x611D\n0xD94D\t0x6110\n0xD94E\t0x60FF\n0xD94F\t0x6104\n0xD950\t0x610B\n0xD951\t0x624A\n0xD952\t0x6394\n0xD953\t0x63B1\n0xD954\t0x63B0\n0xD955\t0x63CE\n0xD956\t0x63E5\n0xD957\t0x63E8\n0xD958\t0x63EF\n0xD959\t0x63C3\n0xD95A\t0x649D\n0xD95B\t0x63F3\n0xD95C\t0x63CA\n0xD95D\t0x63E0\n0xD95E\t0x63F6\n0xD95F\t0x63D5\n0xD960\t0x63F2\n0xD961\t0x63F5\n0xD962\t0x6461\n0xD963\t0x63DF\n0xD964\t0x63BE\n0xD965\t0x63DD\n0xD966\t0x63DC\n0xD967\t0x63C4\n0xD968\t0x63D8\n0xD969\t0x63D3\n0xD96A\t0x63C2\n0xD96B\t0x63C7\n0xD96C\t0x63CC\n0xD96D\t0x63CB\n0xD96E\t0x63C8\n0xD96F\t0x63F0\n0xD970\t0x63D7\n0xD971\t0x63D9\n0xD972\t0x6532\n0xD973\t0x6567\n0xD974\t0x656A\n0xD975\t0x6564\n0xD976\t0x655C\n0xD977\t0x6568\n0xD978\t0x6565\n0xD979\t0x658C\n0xD97A\t0x659D\n0xD97B\t0x659E\n0xD97C\t0x65AE\n0xD97D\t0x65D0\n0xD97E\t0x65D2\n0xD9A1\t0x667C\n0xD9A2\t0x666C\n0xD9A3\t0x667B\n0xD9A4\t0x6680\n0xD9A5\t0x6671\n0xD9A6\t0x6679\n0xD9A7\t0x666A\n0xD9A8\t0x6672\n0xD9A9\t0x6701\n0xD9AA\t0x690C\n0xD9AB\t0x68D3\n0xD9AC\t0x6904\n0xD9AD\t0x68DC\n0xD9AE\t0x692A\n0xD9AF\t0x68EC\n0xD9B0\t0x68EA\n0xD9B1\t0x68F1\n0xD9B2\t0x690F\n0xD9B3\t0x68D6\n0xD9B4\t0x68F7\n0xD9B5\t0x68EB\n0xD9B6\t0x68E4\n0xD9B7\t0x68F6\n0xD9B8\t0x6913\n0xD9B9\t0x6910\n0xD9BA\t0x68F3\n0xD9BB\t0x68E1\n0xD9BC\t0x6907\n0xD9BD\t0x68CC\n0xD9BE\t0x6908\n0xD9BF\t0x6970\n0xD9C0\t0x68B4\n0xD9C1\t0x6911\n0xD9C2\t0x68EF\n0xD9C3\t0x68C6\n0xD9C4\t0x6914\n0xD9C5\t0x68F8\n0xD9C6\t0x68D0\n0xD9C7\t0x68FD\n0xD9C8\t0x68FC\n0xD9C9\t0x68E8\n0xD9CA\t0x690B\n0xD9CB\t0x690A\n0xD9CC\t0x6917\n0xD9CD\t0x68CE\n0xD9CE\t0x68C8\n0xD9CF\t0x68DD\n0xD9D0\t0x68DE\n0xD9D1\t0x68E6\n0xD9D2\t0x68F4\n0xD9D3\t0x68D1\n0xD9D4\t0x6906\n0xD9D5\t0x68D4\n0xD9D6\t0x68E9\n0xD9D7\t0x6915\n0xD9D8\t0x6925\n0xD9D9\t0x68C7\n0xD9DA\t0x6B39\n0xD9DB\t0x6B3B\n0xD9DC\t0x6B3F\n0xD9DD\t0x6B3C\n0xD9DE\t0x6B94\n0xD9DF\t0x6B97\n0xD9E0\t0x6B99\n0xD9E1\t0x6B95\n0xD9E2\t0x6BBD\n0xD9E3\t0x6BF0\n0xD9E4\t0x6BF2\n0xD9E5\t0x6BF3\n0xD9E6\t0x6C30\n0xD9E7\t0x6DFC\n0xD9E8\t0x6E46\n0xD9E9\t0x6E47\n0xD9EA\t0x6E1F\n0xD9EB\t0x6E49\n0xD9EC\t0x6E88\n0xD9ED\t0x6E3C\n0xD9EE\t0x6E3D\n0xD9EF\t0x6E45\n0xD9F0\t0x6E62\n0xD9F1\t0x6E2B\n0xD9F2\t0x6E3F\n0xD9F3\t0x6E41\n0xD9F4\t0x6E5D\n0xD9F5\t0x6E73\n0xD9F6\t0x6E1C\n0xD9F7\t0x6E33\n0xD9F8\t0x6E4B\n0xD9F9\t0x6E40\n0xD9FA\t0x6E51\n0xD9FB\t0x6E3B\n0xD9FC\t0x6E03\n0xD9FD\t0x6E2E\n0xD9FE\t0x6E5E\n0xDA40\t0x6E68\n0xDA41\t0x6E5C\n0xDA42\t0x6E61\n0xDA43\t0x6E31\n0xDA44\t0x6E28\n0xDA45\t0x6E60\n0xDA46\t0x6E71\n0xDA47\t0x6E6B\n0xDA48\t0x6E39\n0xDA49\t0x6E22\n0xDA4A\t0x6E30\n0xDA4B\t0x6E53\n0xDA4C\t0x6E65\n0xDA4D\t0x6E27\n0xDA4E\t0x6E78\n0xDA4F\t0x6E64\n0xDA50\t0x6E77\n0xDA51\t0x6E55\n0xDA52\t0x6E79\n0xDA53\t0x6E52\n0xDA54\t0x6E66\n0xDA55\t0x6E35\n0xDA56\t0x6E36\n0xDA57\t0x6E5A\n0xDA58\t0x7120\n0xDA59\t0x711E\n0xDA5A\t0x712F\n0xDA5B\t0x70FB\n0xDA5C\t0x712E\n0xDA5D\t0x7131\n0xDA5E\t0x7123\n0xDA5F\t0x7125\n0xDA60\t0x7122\n0xDA61\t0x7132\n0xDA62\t0x711F\n0xDA63\t0x7128\n0xDA64\t0x713A\n0xDA65\t0x711B\n0xDA66\t0x724B\n0xDA67\t0x725A\n0xDA68\t0x7288\n0xDA69\t0x7289\n0xDA6A\t0x7286\n0xDA6B\t0x7285\n0xDA6C\t0x728B\n0xDA6D\t0x7312\n0xDA6E\t0x730B\n0xDA6F\t0x7330\n0xDA70\t0x7322\n0xDA71\t0x7331\n0xDA72\t0x7333\n0xDA73\t0x7327\n0xDA74\t0x7332\n0xDA75\t0x732D\n0xDA76\t0x7326\n0xDA77\t0x7323\n0xDA78\t0x7335\n0xDA79\t0x730C\n0xDA7A\t0x742E\n0xDA7B\t0x742C\n0xDA7C\t0x7430\n0xDA7D\t0x742B\n0xDA7E\t0x7416\n0xDAA1\t0x741A\n0xDAA2\t0x7421\n0xDAA3\t0x742D\n0xDAA4\t0x7431\n0xDAA5\t0x7424\n0xDAA6\t0x7423\n0xDAA7\t0x741D\n0xDAA8\t0x7429\n0xDAA9\t0x7420\n0xDAAA\t0x7432\n0xDAAB\t0x74FB\n0xDAAC\t0x752F\n0xDAAD\t0x756F\n0xDAAE\t0x756C\n0xDAAF\t0x75E7\n0xDAB0\t0x75DA\n0xDAB1\t0x75E1\n0xDAB2\t0x75E6\n0xDAB3\t0x75DD\n0xDAB4\t0x75DF\n0xDAB5\t0x75E4\n0xDAB6\t0x75D7\n0xDAB7\t0x7695\n0xDAB8\t0x7692\n0xDAB9\t0x76DA\n0xDABA\t0x7746\n0xDABB\t0x7747\n0xDABC\t0x7744\n0xDABD\t0x774D\n0xDABE\t0x7745\n0xDABF\t0x774A\n0xDAC0\t0x774E\n0xDAC1\t0x774B\n0xDAC2\t0x774C\n0xDAC3\t0x77DE\n0xDAC4\t0x77EC\n0xDAC5\t0x7860\n0xDAC6\t0x7864\n0xDAC7\t0x7865\n0xDAC8\t0x785C\n0xDAC9\t0x786D\n0xDACA\t0x7871\n0xDACB\t0x786A\n0xDACC\t0x786E\n0xDACD\t0x7870\n0xDACE\t0x7869\n0xDACF\t0x7868\n0xDAD0\t0x785E\n0xDAD1\t0x7862\n0xDAD2\t0x7974\n0xDAD3\t0x7973\n0xDAD4\t0x7972\n0xDAD5\t0x7970\n0xDAD6\t0x7A02\n0xDAD7\t0x7A0A\n0xDAD8\t0x7A03\n0xDAD9\t0x7A0C\n0xDADA\t0x7A04\n0xDADB\t0x7A99\n0xDADC\t0x7AE6\n0xDADD\t0x7AE4\n0xDADE\t0x7B4A\n0xDADF\t0x7B3B\n0xDAE0\t0x7B44\n0xDAE1\t0x7B48\n0xDAE2\t0x7B4C\n0xDAE3\t0x7B4E\n0xDAE4\t0x7B40\n0xDAE5\t0x7B58\n0xDAE6\t0x7B45\n0xDAE7\t0x7CA2\n0xDAE8\t0x7C9E\n0xDAE9\t0x7CA8\n0xDAEA\t0x7CA1\n0xDAEB\t0x7D58\n0xDAEC\t0x7D6F\n0xDAED\t0x7D63\n0xDAEE\t0x7D53\n0xDAEF\t0x7D56\n0xDAF0\t0x7D67\n0xDAF1\t0x7D6A\n0xDAF2\t0x7D4F\n0xDAF3\t0x7D6D\n0xDAF4\t0x7D5C\n0xDAF5\t0x7D6B\n0xDAF6\t0x7D52\n0xDAF7\t0x7D54\n0xDAF8\t0x7D69\n0xDAF9\t0x7D51\n0xDAFA\t0x7D5F\n0xDAFB\t0x7D4E\n0xDAFC\t0x7F3E\n0xDAFD\t0x7F3F\n0xDAFE\t0x7F65\n0xDB40\t0x7F66\n0xDB41\t0x7FA2\n0xDB42\t0x7FA0\n0xDB43\t0x7FA1\n0xDB44\t0x7FD7\n0xDB45\t0x8051\n0xDB46\t0x804F\n0xDB47\t0x8050\n0xDB48\t0x80FE\n0xDB49\t0x80D4\n0xDB4A\t0x8143\n0xDB4B\t0x814A\n0xDB4C\t0x8152\n0xDB4D\t0x814F\n0xDB4E\t0x8147\n0xDB4F\t0x813D\n0xDB50\t0x814D\n0xDB51\t0x813A\n0xDB52\t0x81E6\n0xDB53\t0x81EE\n0xDB54\t0x81F7\n0xDB55\t0x81F8\n0xDB56\t0x81F9\n0xDB57\t0x8204\n0xDB58\t0x823C\n0xDB59\t0x823D\n0xDB5A\t0x823F\n0xDB5B\t0x8275\n0xDB5C\t0x833B\n0xDB5D\t0x83CF\n0xDB5E\t0x83F9\n0xDB5F\t0x8423\n0xDB60\t0x83C0\n0xDB61\t0x83E8\n0xDB62\t0x8412\n0xDB63\t0x83E7\n0xDB64\t0x83E4\n0xDB65\t0x83FC\n0xDB66\t0x83F6\n0xDB67\t0x8410\n0xDB68\t0x83C6\n0xDB69\t0x83C8\n0xDB6A\t0x83EB\n0xDB6B\t0x83E3\n0xDB6C\t0x83BF\n0xDB6D\t0x8401\n0xDB6E\t0x83DD\n0xDB6F\t0x83E5\n0xDB70\t0x83D8\n0xDB71\t0x83FF\n0xDB72\t0x83E1\n0xDB73\t0x83CB\n0xDB74\t0x83CE\n0xDB75\t0x83D6\n0xDB76\t0x83F5\n0xDB77\t0x83C9\n0xDB78\t0x8409\n0xDB79\t0x840F\n0xDB7A\t0x83DE\n0xDB7B\t0x8411\n0xDB7C\t0x8406\n0xDB7D\t0x83C2\n0xDB7E\t0x83F3\n0xDBA1\t0x83D5\n0xDBA2\t0x83FA\n0xDBA3\t0x83C7\n0xDBA4\t0x83D1\n0xDBA5\t0x83EA\n0xDBA6\t0x8413\n0xDBA7\t0x83C3\n0xDBA8\t0x83EC\n0xDBA9\t0x83EE\n0xDBAA\t0x83C4\n0xDBAB\t0x83FB\n0xDBAC\t0x83D7\n0xDBAD\t0x83E2\n0xDBAE\t0x841B\n0xDBAF\t0x83DB\n0xDBB0\t0x83FE\n0xDBB1\t0x86D8\n0xDBB2\t0x86E2\n0xDBB3\t0x86E6\n0xDBB4\t0x86D3\n0xDBB5\t0x86E3\n0xDBB6\t0x86DA\n0xDBB7\t0x86EA\n0xDBB8\t0x86DD\n0xDBB9\t0x86EB\n0xDBBA\t0x86DC\n0xDBBB\t0x86EC\n0xDBBC\t0x86E9\n0xDBBD\t0x86D7\n0xDBBE\t0x86E8\n0xDBBF\t0x86D1\n0xDBC0\t0x8848\n0xDBC1\t0x8856\n0xDBC2\t0x8855\n0xDBC3\t0x88BA\n0xDBC4\t0x88D7\n0xDBC5\t0x88B9\n0xDBC6\t0x88B8\n0xDBC7\t0x88C0\n0xDBC8\t0x88BE\n0xDBC9\t0x88B6\n0xDBCA\t0x88BC\n0xDBCB\t0x88B7\n0xDBCC\t0x88BD\n0xDBCD\t0x88B2\n0xDBCE\t0x8901\n0xDBCF\t0x88C9\n0xDBD0\t0x8995\n0xDBD1\t0x8998\n0xDBD2\t0x8997\n0xDBD3\t0x89DD\n0xDBD4\t0x89DA\n0xDBD5\t0x89DB\n0xDBD6\t0x8A4E\n0xDBD7\t0x8A4D\n0xDBD8\t0x8A39\n0xDBD9\t0x8A59\n0xDBDA\t0x8A40\n0xDBDB\t0x8A57\n0xDBDC\t0x8A58\n0xDBDD\t0x8A44\n0xDBDE\t0x8A45\n0xDBDF\t0x8A52\n0xDBE0\t0x8A48\n0xDBE1\t0x8A51\n0xDBE2\t0x8A4A\n0xDBE3\t0x8A4C\n0xDBE4\t0x8A4F\n0xDBE5\t0x8C5F\n0xDBE6\t0x8C81\n0xDBE7\t0x8C80\n0xDBE8\t0x8CBA\n0xDBE9\t0x8CBE\n0xDBEA\t0x8CB0\n0xDBEB\t0x8CB9\n0xDBEC\t0x8CB5\n0xDBED\t0x8D84\n0xDBEE\t0x8D80\n0xDBEF\t0x8D89\n0xDBF0\t0x8DD8\n0xDBF1\t0x8DD3\n0xDBF2\t0x8DCD\n0xDBF3\t0x8DC7\n0xDBF4\t0x8DD6\n0xDBF5\t0x8DDC\n0xDBF6\t0x8DCF\n0xDBF7\t0x8DD5\n0xDBF8\t0x8DD9\n0xDBF9\t0x8DC8\n0xDBFA\t0x8DD7\n0xDBFB\t0x8DC5\n0xDBFC\t0x8EEF\n0xDBFD\t0x8EF7\n0xDBFE\t0x8EFA\n0xDC40\t0x8EF9\n0xDC41\t0x8EE6\n0xDC42\t0x8EEE\n0xDC43\t0x8EE5\n0xDC44\t0x8EF5\n0xDC45\t0x8EE7\n0xDC46\t0x8EE8\n0xDC47\t0x8EF6\n0xDC48\t0x8EEB\n0xDC49\t0x8EF1\n0xDC4A\t0x8EEC\n0xDC4B\t0x8EF4\n0xDC4C\t0x8EE9\n0xDC4D\t0x902D\n0xDC4E\t0x9034\n0xDC4F\t0x902F\n0xDC50\t0x9106\n0xDC51\t0x912C\n0xDC52\t0x9104\n0xDC53\t0x90FF\n0xDC54\t0x90FC\n0xDC55\t0x9108\n0xDC56\t0x90F9\n0xDC57\t0x90FB\n0xDC58\t0x9101\n0xDC59\t0x9100\n0xDC5A\t0x9107\n0xDC5B\t0x9105\n0xDC5C\t0x9103\n0xDC5D\t0x9161\n0xDC5E\t0x9164\n0xDC5F\t0x915F\n0xDC60\t0x9162\n0xDC61\t0x9160\n0xDC62\t0x9201\n0xDC63\t0x920A\n0xDC64\t0x9225\n0xDC65\t0x9203\n0xDC66\t0x921A\n0xDC67\t0x9226\n0xDC68\t0x920F\n0xDC69\t0x920C\n0xDC6A\t0x9200\n0xDC6B\t0x9212\n0xDC6C\t0x91FF\n0xDC6D\t0x91FD\n0xDC6E\t0x9206\n0xDC6F\t0x9204\n0xDC70\t0x9227\n0xDC71\t0x9202\n0xDC72\t0x921C\n0xDC73\t0x9224\n0xDC74\t0x9219\n0xDC75\t0x9217\n0xDC76\t0x9205\n0xDC77\t0x9216\n0xDC78\t0x957B\n0xDC79\t0x958D\n0xDC7A\t0x958C\n0xDC7B\t0x9590\n0xDC7C\t0x9687\n0xDC7D\t0x967E\n0xDC7E\t0x9688\n0xDCA1\t0x9689\n0xDCA2\t0x9683\n0xDCA3\t0x9680\n0xDCA4\t0x96C2\n0xDCA5\t0x96C8\n0xDCA6\t0x96C3\n0xDCA7\t0x96F1\n0xDCA8\t0x96F0\n0xDCA9\t0x976C\n0xDCAA\t0x9770\n0xDCAB\t0x976E\n0xDCAC\t0x9807\n0xDCAD\t0x98A9\n0xDCAE\t0x98EB\n0xDCAF\t0x9CE6\n0xDCB0\t0x9EF9\n0xDCB1\t0x4E83\n0xDCB2\t0x4E84\n0xDCB3\t0x4EB6\n0xDCB4\t0x50BD\n0xDCB5\t0x50BF\n0xDCB6\t0x50C6\n0xDCB7\t0x50AE\n0xDCB8\t0x50C4\n0xDCB9\t0x50CA\n0xDCBA\t0x50B4\n0xDCBB\t0x50C8\n0xDCBC\t0x50C2\n0xDCBD\t0x50B0\n0xDCBE\t0x50C1\n0xDCBF\t0x50BA\n0xDCC0\t0x50B1\n0xDCC1\t0x50CB\n0xDCC2\t0x50C9\n0xDCC3\t0x50B6\n0xDCC4\t0x50B8\n0xDCC5\t0x51D7\n0xDCC6\t0x527A\n0xDCC7\t0x5278\n0xDCC8\t0x527B\n0xDCC9\t0x527C\n0xDCCA\t0x55C3\n0xDCCB\t0x55DB\n0xDCCC\t0x55CC\n0xDCCD\t0x55D0\n0xDCCE\t0x55CB\n0xDCCF\t0x55CA\n0xDCD0\t0x55DD\n0xDCD1\t0x55C0\n0xDCD2\t0x55D4\n0xDCD3\t0x55C4\n0xDCD4\t0x55E9\n0xDCD5\t0x55BF\n0xDCD6\t0x55D2\n0xDCD7\t0x558D\n0xDCD8\t0x55CF\n0xDCD9\t0x55D5\n0xDCDA\t0x55E2\n0xDCDB\t0x55D6\n0xDCDC\t0x55C8\n0xDCDD\t0x55F2\n0xDCDE\t0x55CD\n0xDCDF\t0x55D9\n0xDCE0\t0x55C2\n0xDCE1\t0x5714\n0xDCE2\t0x5853\n0xDCE3\t0x5868\n0xDCE4\t0x5864\n0xDCE5\t0x584F\n0xDCE6\t0x584D\n0xDCE7\t0x5849\n0xDCE8\t0x586F\n0xDCE9\t0x5855\n0xDCEA\t0x584E\n0xDCEB\t0x585D\n0xDCEC\t0x5859\n0xDCED\t0x5865\n0xDCEE\t0x585B\n0xDCEF\t0x583D\n0xDCF0\t0x5863\n0xDCF1\t0x5871\n0xDCF2\t0x58FC\n0xDCF3\t0x5AC7\n0xDCF4\t0x5AC4\n0xDCF5\t0x5ACB\n0xDCF6\t0x5ABA\n0xDCF7\t0x5AB8\n0xDCF8\t0x5AB1\n0xDCF9\t0x5AB5\n0xDCFA\t0x5AB0\n0xDCFB\t0x5ABF\n0xDCFC\t0x5AC8\n0xDCFD\t0x5ABB\n0xDCFE\t0x5AC6\n0xDD40\t0x5AB7\n0xDD41\t0x5AC0\n0xDD42\t0x5ACA\n0xDD43\t0x5AB4\n0xDD44\t0x5AB6\n0xDD45\t0x5ACD\n0xDD46\t0x5AB9\n0xDD47\t0x5A90\n0xDD48\t0x5BD6\n0xDD49\t0x5BD8\n0xDD4A\t0x5BD9\n0xDD4B\t0x5C1F\n0xDD4C\t0x5C33\n0xDD4D\t0x5D71\n0xDD4E\t0x5D63\n0xDD4F\t0x5D4A\n0xDD50\t0x5D65\n0xDD51\t0x5D72\n0xDD52\t0x5D6C\n0xDD53\t0x5D5E\n0xDD54\t0x5D68\n0xDD55\t0x5D67\n0xDD56\t0x5D62\n0xDD57\t0x5DF0\n0xDD58\t0x5E4F\n0xDD59\t0x5E4E\n0xDD5A\t0x5E4A\n0xDD5B\t0x5E4D\n0xDD5C\t0x5E4B\n0xDD5D\t0x5EC5\n0xDD5E\t0x5ECC\n0xDD5F\t0x5EC6\n0xDD60\t0x5ECB\n0xDD61\t0x5EC7\n0xDD62\t0x5F40\n0xDD63\t0x5FAF\n0xDD64\t0x5FAD\n0xDD65\t0x60F7\n0xDD66\t0x6149\n0xDD67\t0x614A\n0xDD68\t0x612B\n0xDD69\t0x6145\n0xDD6A\t0x6136\n0xDD6B\t0x6132\n0xDD6C\t0x612E\n0xDD6D\t0x6146\n0xDD6E\t0x612F\n0xDD6F\t0x614F\n0xDD70\t0x6129\n0xDD71\t0x6140\n0xDD72\t0x6220\n0xDD73\t0x9168\n0xDD74\t0x6223\n0xDD75\t0x6225\n0xDD76\t0x6224\n0xDD77\t0x63C5\n0xDD78\t0x63F1\n0xDD79\t0x63EB\n0xDD7A\t0x6410\n0xDD7B\t0x6412\n0xDD7C\t0x6409\n0xDD7D\t0x6420\n0xDD7E\t0x6424\n0xDDA1\t0x6433\n0xDDA2\t0x6443\n0xDDA3\t0x641F\n0xDDA4\t0x6415\n0xDDA5\t0x6418\n0xDDA6\t0x6439\n0xDDA7\t0x6437\n0xDDA8\t0x6422\n0xDDA9\t0x6423\n0xDDAA\t0x640C\n0xDDAB\t0x6426\n0xDDAC\t0x6430\n0xDDAD\t0x6428\n0xDDAE\t0x6441\n0xDDAF\t0x6435\n0xDDB0\t0x642F\n0xDDB1\t0x640A\n0xDDB2\t0x641A\n0xDDB3\t0x6440\n0xDDB4\t0x6425\n0xDDB5\t0x6427\n0xDDB6\t0x640B\n0xDDB7\t0x63E7\n0xDDB8\t0x641B\n0xDDB9\t0x642E\n0xDDBA\t0x6421\n0xDDBB\t0x640E\n0xDDBC\t0x656F\n0xDDBD\t0x6592\n0xDDBE\t0x65D3\n0xDDBF\t0x6686\n0xDDC0\t0x668C\n0xDDC1\t0x6695\n0xDDC2\t0x6690\n0xDDC3\t0x668B\n0xDDC4\t0x668A\n0xDDC5\t0x6699\n0xDDC6\t0x6694\n0xDDC7\t0x6678\n0xDDC8\t0x6720\n0xDDC9\t0x6966\n0xDDCA\t0x695F\n0xDDCB\t0x6938\n0xDDCC\t0x694E\n0xDDCD\t0x6962\n0xDDCE\t0x6971\n0xDDCF\t0x693F\n0xDDD0\t0x6945\n0xDDD1\t0x696A\n0xDDD2\t0x6939\n0xDDD3\t0x6942\n0xDDD4\t0x6957\n0xDDD5\t0x6959\n0xDDD6\t0x697A\n0xDDD7\t0x6948\n0xDDD8\t0x6949\n0xDDD9\t0x6935\n0xDDDA\t0x696C\n0xDDDB\t0x6933\n0xDDDC\t0x693D\n0xDDDD\t0x6965\n0xDDDE\t0x68F0\n0xDDDF\t0x6978\n0xDDE0\t0x6934\n0xDDE1\t0x6969\n0xDDE2\t0x6940\n0xDDE3\t0x696F\n0xDDE4\t0x6944\n0xDDE5\t0x6976\n0xDDE6\t0x6958\n0xDDE7\t0x6941\n0xDDE8\t0x6974\n0xDDE9\t0x694C\n0xDDEA\t0x693B\n0xDDEB\t0x694B\n0xDDEC\t0x6937\n0xDDED\t0x695C\n0xDDEE\t0x694F\n0xDDEF\t0x6951\n0xDDF0\t0x6932\n0xDDF1\t0x6952\n0xDDF2\t0x692F\n0xDDF3\t0x697B\n0xDDF4\t0x693C\n0xDDF5\t0x6B46\n0xDDF6\t0x6B45\n0xDDF7\t0x6B43\n0xDDF8\t0x6B42\n0xDDF9\t0x6B48\n0xDDFA\t0x6B41\n0xDDFB\t0x6B9B\n0xDDFC\t0xFA0D\n0xDDFD\t0x6BFB\n0xDDFE\t0x6BFC\n0xDE40\t0x6BF9\n0xDE41\t0x6BF7\n0xDE42\t0x6BF8\n0xDE43\t0x6E9B\n0xDE44\t0x6ED6\n0xDE45\t0x6EC8\n0xDE46\t0x6E8F\n0xDE47\t0x6EC0\n0xDE48\t0x6E9F\n0xDE49\t0x6E93\n0xDE4A\t0x6E94\n0xDE4B\t0x6EA0\n0xDE4C\t0x6EB1\n0xDE4D\t0x6EB9\n0xDE4E\t0x6EC6\n0xDE4F\t0x6ED2\n0xDE50\t0x6EBD\n0xDE51\t0x6EC1\n0xDE52\t0x6E9E\n0xDE53\t0x6EC9\n0xDE54\t0x6EB7\n0xDE55\t0x6EB0\n0xDE56\t0x6ECD\n0xDE57\t0x6EA6\n0xDE58\t0x6ECF\n0xDE59\t0x6EB2\n0xDE5A\t0x6EBE\n0xDE5B\t0x6EC3\n0xDE5C\t0x6EDC\n0xDE5D\t0x6ED8\n0xDE5E\t0x6E99\n0xDE5F\t0x6E92\n0xDE60\t0x6E8E\n0xDE61\t0x6E8D\n0xDE62\t0x6EA4\n0xDE63\t0x6EA1\n0xDE64\t0x6EBF\n0xDE65\t0x6EB3\n0xDE66\t0x6ED0\n0xDE67\t0x6ECA\n0xDE68\t0x6E97\n0xDE69\t0x6EAE\n0xDE6A\t0x6EA3\n0xDE6B\t0x7147\n0xDE6C\t0x7154\n0xDE6D\t0x7152\n0xDE6E\t0x7163\n0xDE6F\t0x7160\n0xDE70\t0x7141\n0xDE71\t0x715D\n0xDE72\t0x7162\n0xDE73\t0x7172\n0xDE74\t0x7178\n0xDE75\t0x716A\n0xDE76\t0x7161\n0xDE77\t0x7142\n0xDE78\t0x7158\n0xDE79\t0x7143\n0xDE7A\t0x714B\n0xDE7B\t0x7170\n0xDE7C\t0x715F\n0xDE7D\t0x7150\n0xDE7E\t0x7153\n0xDEA1\t0x7144\n0xDEA2\t0x714D\n0xDEA3\t0x715A\n0xDEA4\t0x724F\n0xDEA5\t0x728D\n0xDEA6\t0x728C\n0xDEA7\t0x7291\n0xDEA8\t0x7290\n0xDEA9\t0x728E\n0xDEAA\t0x733C\n0xDEAB\t0x7342\n0xDEAC\t0x733B\n0xDEAD\t0x733A\n0xDEAE\t0x7340\n0xDEAF\t0x734A\n0xDEB0\t0x7349\n0xDEB1\t0x7444\n0xDEB2\t0x744A\n0xDEB3\t0x744B\n0xDEB4\t0x7452\n0xDEB5\t0x7451\n0xDEB6\t0x7457\n0xDEB7\t0x7440\n0xDEB8\t0x744F\n0xDEB9\t0x7450\n0xDEBA\t0x744E\n0xDEBB\t0x7442\n0xDEBC\t0x7446\n0xDEBD\t0x744D\n0xDEBE\t0x7454\n0xDEBF\t0x74E1\n0xDEC0\t0x74FF\n0xDEC1\t0x74FE\n0xDEC2\t0x74FD\n0xDEC3\t0x751D\n0xDEC4\t0x7579\n0xDEC5\t0x7577\n0xDEC6\t0x6983\n0xDEC7\t0x75EF\n0xDEC8\t0x760F\n0xDEC9\t0x7603\n0xDECA\t0x75F7\n0xDECB\t0x75FE\n0xDECC\t0x75FC\n0xDECD\t0x75F9\n0xDECE\t0x75F8\n0xDECF\t0x7610\n0xDED0\t0x75FB\n0xDED1\t0x75F6\n0xDED2\t0x75ED\n0xDED3\t0x75F5\n0xDED4\t0x75FD\n0xDED5\t0x7699\n0xDED6\t0x76B5\n0xDED7\t0x76DD\n0xDED8\t0x7755\n0xDED9\t0x775F\n0xDEDA\t0x7760\n0xDEDB\t0x7752\n0xDEDC\t0x7756\n0xDEDD\t0x775A\n0xDEDE\t0x7769\n0xDEDF\t0x7767\n0xDEE0\t0x7754\n0xDEE1\t0x7759\n0xDEE2\t0x776D\n0xDEE3\t0x77E0\n0xDEE4\t0x7887\n0xDEE5\t0x789A\n0xDEE6\t0x7894\n0xDEE7\t0x788F\n0xDEE8\t0x7884\n0xDEE9\t0x7895\n0xDEEA\t0x7885\n0xDEEB\t0x7886\n0xDEEC\t0x78A1\n0xDEED\t0x7883\n0xDEEE\t0x7879\n0xDEEF\t0x7899\n0xDEF0\t0x7880\n0xDEF1\t0x7896\n0xDEF2\t0x787B\n0xDEF3\t0x797C\n0xDEF4\t0x7982\n0xDEF5\t0x797D\n0xDEF6\t0x7979\n0xDEF7\t0x7A11\n0xDEF8\t0x7A18\n0xDEF9\t0x7A19\n0xDEFA\t0x7A12\n0xDEFB\t0x7A17\n0xDEFC\t0x7A15\n0xDEFD\t0x7A22\n0xDEFE\t0x7A13\n0xDF40\t0x7A1B\n0xDF41\t0x7A10\n0xDF42\t0x7AA3\n0xDF43\t0x7AA2\n0xDF44\t0x7A9E\n0xDF45\t0x7AEB\n0xDF46\t0x7B66\n0xDF47\t0x7B64\n0xDF48\t0x7B6D\n0xDF49\t0x7B74\n0xDF4A\t0x7B69\n0xDF4B\t0x7B72\n0xDF4C\t0x7B65\n0xDF4D\t0x7B73\n0xDF4E\t0x7B71\n0xDF4F\t0x7B70\n0xDF50\t0x7B61\n0xDF51\t0x7B78\n0xDF52\t0x7B76\n0xDF53\t0x7B63\n0xDF54\t0x7CB2\n0xDF55\t0x7CB4\n0xDF56\t0x7CAF\n0xDF57\t0x7D88\n0xDF58\t0x7D86\n0xDF59\t0x7D80\n0xDF5A\t0x7D8D\n0xDF5B\t0x7D7F\n0xDF5C\t0x7D85\n0xDF5D\t0x7D7A\n0xDF5E\t0x7D8E\n0xDF5F\t0x7D7B\n0xDF60\t0x7D83\n0xDF61\t0x7D7C\n0xDF62\t0x7D8C\n0xDF63\t0x7D94\n0xDF64\t0x7D84\n0xDF65\t0x7D7D\n0xDF66\t0x7D92\n0xDF67\t0x7F6D\n0xDF68\t0x7F6B\n0xDF69\t0x7F67\n0xDF6A\t0x7F68\n0xDF6B\t0x7F6C\n0xDF6C\t0x7FA6\n0xDF6D\t0x7FA5\n0xDF6E\t0x7FA7\n0xDF6F\t0x7FDB\n0xDF70\t0x7FDC\n0xDF71\t0x8021\n0xDF72\t0x8164\n0xDF73\t0x8160\n0xDF74\t0x8177\n0xDF75\t0x815C\n0xDF76\t0x8169\n0xDF77\t0x815B\n0xDF78\t0x8162\n0xDF79\t0x8172\n0xDF7A\t0x6721\n0xDF7B\t0x815E\n0xDF7C\t0x8176\n0xDF7D\t0x8167\n0xDF7E\t0x816F\n0xDFA1\t0x8144\n0xDFA2\t0x8161\n0xDFA3\t0x821D\n0xDFA4\t0x8249\n0xDFA5\t0x8244\n0xDFA6\t0x8240\n0xDFA7\t0x8242\n0xDFA8\t0x8245\n0xDFA9\t0x84F1\n0xDFAA\t0x843F\n0xDFAB\t0x8456\n0xDFAC\t0x8476\n0xDFAD\t0x8479\n0xDFAE\t0x848F\n0xDFAF\t0x848D\n0xDFB0\t0x8465\n0xDFB1\t0x8451\n0xDFB2\t0x8440\n0xDFB3\t0x8486\n0xDFB4\t0x8467\n0xDFB5\t0x8430\n0xDFB6\t0x844D\n0xDFB7\t0x847D\n0xDFB8\t0x845A\n0xDFB9\t0x8459\n0xDFBA\t0x8474\n0xDFBB\t0x8473\n0xDFBC\t0x845D\n0xDFBD\t0x8507\n0xDFBE\t0x845E\n0xDFBF\t0x8437\n0xDFC0\t0x843A\n0xDFC1\t0x8434\n0xDFC2\t0x847A\n0xDFC3\t0x8443\n0xDFC4\t0x8478\n0xDFC5\t0x8432\n0xDFC6\t0x8445\n0xDFC7\t0x8429\n0xDFC8\t0x83D9\n0xDFC9\t0x844B\n0xDFCA\t0x842F\n0xDFCB\t0x8442\n0xDFCC\t0x842D\n0xDFCD\t0x845F\n0xDFCE\t0x8470\n0xDFCF\t0x8439\n0xDFD0\t0x844E\n0xDFD1\t0x844C\n0xDFD2\t0x8452\n0xDFD3\t0x846F\n0xDFD4\t0x84C5\n0xDFD5\t0x848E\n0xDFD6\t0x843B\n0xDFD7\t0x8447\n0xDFD8\t0x8436\n0xDFD9\t0x8433\n0xDFDA\t0x8468\n0xDFDB\t0x847E\n0xDFDC\t0x8444\n0xDFDD\t0x842B\n0xDFDE\t0x8460\n0xDFDF\t0x8454\n0xDFE0\t0x846E\n0xDFE1\t0x8450\n0xDFE2\t0x870B\n0xDFE3\t0x8704\n0xDFE4\t0x86F7\n0xDFE5\t0x870C\n0xDFE6\t0x86FA\n0xDFE7\t0x86D6\n0xDFE8\t0x86F5\n0xDFE9\t0x874D\n0xDFEA\t0x86F8\n0xDFEB\t0x870E\n0xDFEC\t0x8709\n0xDFED\t0x8701\n0xDFEE\t0x86F6\n0xDFEF\t0x870D\n0xDFF0\t0x8705\n0xDFF1\t0x88D6\n0xDFF2\t0x88CB\n0xDFF3\t0x88CD\n0xDFF4\t0x88CE\n0xDFF5\t0x88DE\n0xDFF6\t0x88DB\n0xDFF7\t0x88DA\n0xDFF8\t0x88CC\n0xDFF9\t0x88D0\n0xDFFA\t0x8985\n0xDFFB\t0x899B\n0xDFFC\t0x89DF\n0xDFFD\t0x89E5\n0xDFFE\t0x89E4\n0xE040\t0x89E1\n0xE041\t0x89E0\n0xE042\t0x89E2\n0xE043\t0x89DC\n0xE044\t0x89E6\n0xE045\t0x8A76\n0xE046\t0x8A86\n0xE047\t0x8A7F\n0xE048\t0x8A61\n0xE049\t0x8A3F\n0xE04A\t0x8A77\n0xE04B\t0x8A82\n0xE04C\t0x8A84\n0xE04D\t0x8A75\n0xE04E\t0x8A83\n0xE04F\t0x8A81\n0xE050\t0x8A74\n0xE051\t0x8A7A\n0xE052\t0x8C3C\n0xE053\t0x8C4B\n0xE054\t0x8C4A\n0xE055\t0x8C65\n0xE056\t0x8C64\n0xE057\t0x8C66\n0xE058\t0x8C86\n0xE059\t0x8C84\n0xE05A\t0x8C85\n0xE05B\t0x8CCC\n0xE05C\t0x8D68\n0xE05D\t0x8D69\n0xE05E\t0x8D91\n0xE05F\t0x8D8C\n0xE060\t0x8D8E\n0xE061\t0x8D8F\n0xE062\t0x8D8D\n0xE063\t0x8D93\n0xE064\t0x8D94\n0xE065\t0x8D90\n0xE066\t0x8D92\n0xE067\t0x8DF0\n0xE068\t0x8DE0\n0xE069\t0x8DEC\n0xE06A\t0x8DF1\n0xE06B\t0x8DEE\n0xE06C\t0x8DD0\n0xE06D\t0x8DE9\n0xE06E\t0x8DE3\n0xE06F\t0x8DE2\n0xE070\t0x8DE7\n0xE071\t0x8DF2\n0xE072\t0x8DEB\n0xE073\t0x8DF4\n0xE074\t0x8F06\n0xE075\t0x8EFF\n0xE076\t0x8F01\n0xE077\t0x8F00\n0xE078\t0x8F05\n0xE079\t0x8F07\n0xE07A\t0x8F08\n0xE07B\t0x8F02\n0xE07C\t0x8F0B\n0xE07D\t0x9052\n0xE07E\t0x903F\n0xE0A1\t0x9044\n0xE0A2\t0x9049\n0xE0A3\t0x903D\n0xE0A4\t0x9110\n0xE0A5\t0x910D\n0xE0A6\t0x910F\n0xE0A7\t0x9111\n0xE0A8\t0x9116\n0xE0A9\t0x9114\n0xE0AA\t0x910B\n0xE0AB\t0x910E\n0xE0AC\t0x916E\n0xE0AD\t0x916F\n0xE0AE\t0x9248\n0xE0AF\t0x9252\n0xE0B0\t0x9230\n0xE0B1\t0x923A\n0xE0B2\t0x9266\n0xE0B3\t0x9233\n0xE0B4\t0x9265\n0xE0B5\t0x925E\n0xE0B6\t0x9283\n0xE0B7\t0x922E\n0xE0B8\t0x924A\n0xE0B9\t0x9246\n0xE0BA\t0x926D\n0xE0BB\t0x926C\n0xE0BC\t0x924F\n0xE0BD\t0x9260\n0xE0BE\t0x9267\n0xE0BF\t0x926F\n0xE0C0\t0x9236\n0xE0C1\t0x9261\n0xE0C2\t0x9270\n0xE0C3\t0x9231\n0xE0C4\t0x9254\n0xE0C5\t0x9263\n0xE0C6\t0x9250\n0xE0C7\t0x9272\n0xE0C8\t0x924E\n0xE0C9\t0x9253\n0xE0CA\t0x924C\n0xE0CB\t0x9256\n0xE0CC\t0x9232\n0xE0CD\t0x959F\n0xE0CE\t0x959C\n0xE0CF\t0x959E\n0xE0D0\t0x959B\n0xE0D1\t0x9692\n0xE0D2\t0x9693\n0xE0D3\t0x9691\n0xE0D4\t0x9697\n0xE0D5\t0x96CE\n0xE0D6\t0x96FA\n0xE0D7\t0x96FD\n0xE0D8\t0x96F8\n0xE0D9\t0x96F5\n0xE0DA\t0x9773\n0xE0DB\t0x9777\n0xE0DC\t0x9778\n0xE0DD\t0x9772\n0xE0DE\t0x980F\n0xE0DF\t0x980D\n0xE0E0\t0x980E\n0xE0E1\t0x98AC\n0xE0E2\t0x98F6\n0xE0E3\t0x98F9\n0xE0E4\t0x99AF\n0xE0E5\t0x99B2\n0xE0E6\t0x99B0\n0xE0E7\t0x99B5\n0xE0E8\t0x9AAD\n0xE0E9\t0x9AAB\n0xE0EA\t0x9B5B\n0xE0EB\t0x9CEA\n0xE0EC\t0x9CED\n0xE0ED\t0x9CE7\n0xE0EE\t0x9E80\n0xE0EF\t0x9EFD\n0xE0F0\t0x50E6\n0xE0F1\t0x50D4\n0xE0F2\t0x50D7\n0xE0F3\t0x50E8\n0xE0F4\t0x50F3\n0xE0F5\t0x50DB\n0xE0F6\t0x50EA\n0xE0F7\t0x50DD\n0xE0F8\t0x50E4\n0xE0F9\t0x50D3\n0xE0FA\t0x50EC\n0xE0FB\t0x50F0\n0xE0FC\t0x50EF\n0xE0FD\t0x50E3\n0xE0FE\t0x50E0\n0xE140\t0x51D8\n0xE141\t0x5280\n0xE142\t0x5281\n0xE143\t0x52E9\n0xE144\t0x52EB\n0xE145\t0x5330\n0xE146\t0x53AC\n0xE147\t0x5627\n0xE148\t0x5615\n0xE149\t0x560C\n0xE14A\t0x5612\n0xE14B\t0x55FC\n0xE14C\t0x560F\n0xE14D\t0x561C\n0xE14E\t0x5601\n0xE14F\t0x5613\n0xE150\t0x5602\n0xE151\t0x55FA\n0xE152\t0x561D\n0xE153\t0x5604\n0xE154\t0x55FF\n0xE155\t0x55F9\n0xE156\t0x5889\n0xE157\t0x587C\n0xE158\t0x5890\n0xE159\t0x5898\n0xE15A\t0x5886\n0xE15B\t0x5881\n0xE15C\t0x587F\n0xE15D\t0x5874\n0xE15E\t0x588B\n0xE15F\t0x587A\n0xE160\t0x5887\n0xE161\t0x5891\n0xE162\t0x588E\n0xE163\t0x5876\n0xE164\t0x5882\n0xE165\t0x5888\n0xE166\t0x587B\n0xE167\t0x5894\n0xE168\t0x588F\n0xE169\t0x58FE\n0xE16A\t0x596B\n0xE16B\t0x5ADC\n0xE16C\t0x5AEE\n0xE16D\t0x5AE5\n0xE16E\t0x5AD5\n0xE16F\t0x5AEA\n0xE170\t0x5ADA\n0xE171\t0x5AED\n0xE172\t0x5AEB\n0xE173\t0x5AF3\n0xE174\t0x5AE2\n0xE175\t0x5AE0\n0xE176\t0x5ADB\n0xE177\t0x5AEC\n0xE178\t0x5ADE\n0xE179\t0x5ADD\n0xE17A\t0x5AD9\n0xE17B\t0x5AE8\n0xE17C\t0x5ADF\n0xE17D\t0x5B77\n0xE17E\t0x5BE0\n0xE1A1\t0x5BE3\n0xE1A2\t0x5C63\n0xE1A3\t0x5D82\n0xE1A4\t0x5D80\n0xE1A5\t0x5D7D\n0xE1A6\t0x5D86\n0xE1A7\t0x5D7A\n0xE1A8\t0x5D81\n0xE1A9\t0x5D77\n0xE1AA\t0x5D8A\n0xE1AB\t0x5D89\n0xE1AC\t0x5D88\n0xE1AD\t0x5D7E\n0xE1AE\t0x5D7C\n0xE1AF\t0x5D8D\n0xE1B0\t0x5D79\n0xE1B1\t0x5D7F\n0xE1B2\t0x5E58\n0xE1B3\t0x5E59\n0xE1B4\t0x5E53\n0xE1B5\t0x5ED8\n0xE1B6\t0x5ED1\n0xE1B7\t0x5ED7\n0xE1B8\t0x5ECE\n0xE1B9\t0x5EDC\n0xE1BA\t0x5ED5\n0xE1BB\t0x5ED9\n0xE1BC\t0x5ED2\n0xE1BD\t0x5ED4\n0xE1BE\t0x5F44\n0xE1BF\t0x5F43\n0xE1C0\t0x5F6F\n0xE1C1\t0x5FB6\n0xE1C2\t0x612C\n0xE1C3\t0x6128\n0xE1C4\t0x6141\n0xE1C5\t0x615E\n0xE1C6\t0x6171\n0xE1C7\t0x6173\n0xE1C8\t0x6152\n0xE1C9\t0x6153\n0xE1CA\t0x6172\n0xE1CB\t0x616C\n0xE1CC\t0x6180\n0xE1CD\t0x6174\n0xE1CE\t0x6154\n0xE1CF\t0x617A\n0xE1D0\t0x615B\n0xE1D1\t0x6165\n0xE1D2\t0x613B\n0xE1D3\t0x616A\n0xE1D4\t0x6161\n0xE1D5\t0x6156\n0xE1D6\t0x6229\n0xE1D7\t0x6227\n0xE1D8\t0x622B\n0xE1D9\t0x642B\n0xE1DA\t0x644D\n0xE1DB\t0x645B\n0xE1DC\t0x645D\n0xE1DD\t0x6474\n0xE1DE\t0x6476\n0xE1DF\t0x6472\n0xE1E0\t0x6473\n0xE1E1\t0x647D\n0xE1E2\t0x6475\n0xE1E3\t0x6466\n0xE1E4\t0x64A6\n0xE1E5\t0x644E\n0xE1E6\t0x6482\n0xE1E7\t0x645E\n0xE1E8\t0x645C\n0xE1E9\t0x644B\n0xE1EA\t0x6453\n0xE1EB\t0x6460\n0xE1EC\t0x6450\n0xE1ED\t0x647F\n0xE1EE\t0x643F\n0xE1EF\t0x646C\n0xE1F0\t0x646B\n0xE1F1\t0x6459\n0xE1F2\t0x6465\n0xE1F3\t0x6477\n0xE1F4\t0x6573\n0xE1F5\t0x65A0\n0xE1F6\t0x66A1\n0xE1F7\t0x66A0\n0xE1F8\t0x669F\n0xE1F9\t0x6705\n0xE1FA\t0x6704\n0xE1FB\t0x6722\n0xE1FC\t0x69B1\n0xE1FD\t0x69B6\n0xE1FE\t0x69C9\n0xE240\t0x69A0\n0xE241\t0x69CE\n0xE242\t0x6996\n0xE243\t0x69B0\n0xE244\t0x69AC\n0xE245\t0x69BC\n0xE246\t0x6991\n0xE247\t0x6999\n0xE248\t0x698E\n0xE249\t0x69A7\n0xE24A\t0x698D\n0xE24B\t0x69A9\n0xE24C\t0x69BE\n0xE24D\t0x69AF\n0xE24E\t0x69BF\n0xE24F\t0x69C4\n0xE250\t0x69BD\n0xE251\t0x69A4\n0xE252\t0x69D4\n0xE253\t0x69B9\n0xE254\t0x69CA\n0xE255\t0x699A\n0xE256\t0x69CF\n0xE257\t0x69B3\n0xE258\t0x6993\n0xE259\t0x69AA\n0xE25A\t0x69A1\n0xE25B\t0x699E\n0xE25C\t0x69D9\n0xE25D\t0x6997\n0xE25E\t0x6990\n0xE25F\t0x69C2\n0xE260\t0x69B5\n0xE261\t0x69A5\n0xE262\t0x69C6\n0xE263\t0x6B4A\n0xE264\t0x6B4D\n0xE265\t0x6B4B\n0xE266\t0x6B9E\n0xE267\t0x6B9F\n0xE268\t0x6BA0\n0xE269\t0x6BC3\n0xE26A\t0x6BC4\n0xE26B\t0x6BFE\n0xE26C\t0x6ECE\n0xE26D\t0x6EF5\n0xE26E\t0x6EF1\n0xE26F\t0x6F03\n0xE270\t0x6F25\n0xE271\t0x6EF8\n0xE272\t0x6F37\n0xE273\t0x6EFB\n0xE274\t0x6F2E\n0xE275\t0x6F09\n0xE276\t0x6F4E\n0xE277\t0x6F19\n0xE278\t0x6F1A\n0xE279\t0x6F27\n0xE27A\t0x6F18\n0xE27B\t0x6F3B\n0xE27C\t0x6F12\n0xE27D\t0x6EED\n0xE27E\t0x6F0A\n0xE2A1\t0x6F36\n0xE2A2\t0x6F73\n0xE2A3\t0x6EF9\n0xE2A4\t0x6EEE\n0xE2A5\t0x6F2D\n0xE2A6\t0x6F40\n0xE2A7\t0x6F30\n0xE2A8\t0x6F3C\n0xE2A9\t0x6F35\n0xE2AA\t0x6EEB\n0xE2AB\t0x6F07\n0xE2AC\t0x6F0E\n0xE2AD\t0x6F43\n0xE2AE\t0x6F05\n0xE2AF\t0x6EFD\n0xE2B0\t0x6EF6\n0xE2B1\t0x6F39\n0xE2B2\t0x6F1C\n0xE2B3\t0x6EFC\n0xE2B4\t0x6F3A\n0xE2B5\t0x6F1F\n0xE2B6\t0x6F0D\n0xE2B7\t0x6F1E\n0xE2B8\t0x6F08\n0xE2B9\t0x6F21\n0xE2BA\t0x7187\n0xE2BB\t0x7190\n0xE2BC\t0x7189\n0xE2BD\t0x7180\n0xE2BE\t0x7185\n0xE2BF\t0x7182\n0xE2C0\t0x718F\n0xE2C1\t0x717B\n0xE2C2\t0x7186\n0xE2C3\t0x7181\n0xE2C4\t0x7197\n0xE2C5\t0x7244\n0xE2C6\t0x7253\n0xE2C7\t0x7297\n0xE2C8\t0x7295\n0xE2C9\t0x7293\n0xE2CA\t0x7343\n0xE2CB\t0x734D\n0xE2CC\t0x7351\n0xE2CD\t0x734C\n0xE2CE\t0x7462\n0xE2CF\t0x7473\n0xE2D0\t0x7471\n0xE2D1\t0x7475\n0xE2D2\t0x7472\n0xE2D3\t0x7467\n0xE2D4\t0x746E\n0xE2D5\t0x7500\n0xE2D6\t0x7502\n0xE2D7\t0x7503\n0xE2D8\t0x757D\n0xE2D9\t0x7590\n0xE2DA\t0x7616\n0xE2DB\t0x7608\n0xE2DC\t0x760C\n0xE2DD\t0x7615\n0xE2DE\t0x7611\n0xE2DF\t0x760A\n0xE2E0\t0x7614\n0xE2E1\t0x76B8\n0xE2E2\t0x7781\n0xE2E3\t0x777C\n0xE2E4\t0x7785\n0xE2E5\t0x7782\n0xE2E6\t0x776E\n0xE2E7\t0x7780\n0xE2E8\t0x776F\n0xE2E9\t0x777E\n0xE2EA\t0x7783\n0xE2EB\t0x78B2\n0xE2EC\t0x78AA\n0xE2ED\t0x78B4\n0xE2EE\t0x78AD\n0xE2EF\t0x78A8\n0xE2F0\t0x787E\n0xE2F1\t0x78AB\n0xE2F2\t0x789E\n0xE2F3\t0x78A5\n0xE2F4\t0x78A0\n0xE2F5\t0x78AC\n0xE2F6\t0x78A2\n0xE2F7\t0x78A4\n0xE2F8\t0x7998\n0xE2F9\t0x798A\n0xE2FA\t0x798B\n0xE2FB\t0x7996\n0xE2FC\t0x7995\n0xE2FD\t0x7994\n0xE2FE\t0x7993\n0xE340\t0x7997\n0xE341\t0x7988\n0xE342\t0x7992\n0xE343\t0x7990\n0xE344\t0x7A2B\n0xE345\t0x7A4A\n0xE346\t0x7A30\n0xE347\t0x7A2F\n0xE348\t0x7A28\n0xE349\t0x7A26\n0xE34A\t0x7AA8\n0xE34B\t0x7AAB\n0xE34C\t0x7AAC\n0xE34D\t0x7AEE\n0xE34E\t0x7B88\n0xE34F\t0x7B9C\n0xE350\t0x7B8A\n0xE351\t0x7B91\n0xE352\t0x7B90\n0xE353\t0x7B96\n0xE354\t0x7B8D\n0xE355\t0x7B8C\n0xE356\t0x7B9B\n0xE357\t0x7B8E\n0xE358\t0x7B85\n0xE359\t0x7B98\n0xE35A\t0x5284\n0xE35B\t0x7B99\n0xE35C\t0x7BA4\n0xE35D\t0x7B82\n0xE35E\t0x7CBB\n0xE35F\t0x7CBF\n0xE360\t0x7CBC\n0xE361\t0x7CBA\n0xE362\t0x7DA7\n0xE363\t0x7DB7\n0xE364\t0x7DC2\n0xE365\t0x7DA3\n0xE366\t0x7DAA\n0xE367\t0x7DC1\n0xE368\t0x7DC0\n0xE369\t0x7DC5\n0xE36A\t0x7D9D\n0xE36B\t0x7DCE\n0xE36C\t0x7DC4\n0xE36D\t0x7DC6\n0xE36E\t0x7DCB\n0xE36F\t0x7DCC\n0xE370\t0x7DAF\n0xE371\t0x7DB9\n0xE372\t0x7D96\n0xE373\t0x7DBC\n0xE374\t0x7D9F\n0xE375\t0x7DA6\n0xE376\t0x7DAE\n0xE377\t0x7DA9\n0xE378\t0x7DA1\n0xE379\t0x7DC9\n0xE37A\t0x7F73\n0xE37B\t0x7FE2\n0xE37C\t0x7FE3\n0xE37D\t0x7FE5\n0xE37E\t0x7FDE\n0xE3A1\t0x8024\n0xE3A2\t0x805D\n0xE3A3\t0x805C\n0xE3A4\t0x8189\n0xE3A5\t0x8186\n0xE3A6\t0x8183\n0xE3A7\t0x8187\n0xE3A8\t0x818D\n0xE3A9\t0x818C\n0xE3AA\t0x818B\n0xE3AB\t0x8215\n0xE3AC\t0x8497\n0xE3AD\t0x84A4\n0xE3AE\t0x84A1\n0xE3AF\t0x849F\n0xE3B0\t0x84BA\n0xE3B1\t0x84CE\n0xE3B2\t0x84C2\n0xE3B3\t0x84AC\n0xE3B4\t0x84AE\n0xE3B5\t0x84AB\n0xE3B6\t0x84B9\n0xE3B7\t0x84B4\n0xE3B8\t0x84C1\n0xE3B9\t0x84CD\n0xE3BA\t0x84AA\n0xE3BB\t0x849A\n0xE3BC\t0x84B1\n0xE3BD\t0x84D0\n0xE3BE\t0x849D\n0xE3BF\t0x84A7\n0xE3C0\t0x84BB\n0xE3C1\t0x84A2\n0xE3C2\t0x8494\n0xE3C3\t0x84C7\n0xE3C4\t0x84CC\n0xE3C5\t0x849B\n0xE3C6\t0x84A9\n0xE3C7\t0x84AF\n0xE3C8\t0x84A8\n0xE3C9\t0x84D6\n0xE3CA\t0x8498\n0xE3CB\t0x84B6\n0xE3CC\t0x84CF\n0xE3CD\t0x84A0\n0xE3CE\t0x84D7\n0xE3CF\t0x84D4\n0xE3D0\t0x84D2\n0xE3D1\t0x84DB\n0xE3D2\t0x84B0\n0xE3D3\t0x8491\n0xE3D4\t0x8661\n0xE3D5\t0x8733\n0xE3D6\t0x8723\n0xE3D7\t0x8728\n0xE3D8\t0x876B\n0xE3D9\t0x8740\n0xE3DA\t0x872E\n0xE3DB\t0x871E\n0xE3DC\t0x8721\n0xE3DD\t0x8719\n0xE3DE\t0x871B\n0xE3DF\t0x8743\n0xE3E0\t0x872C\n0xE3E1\t0x8741\n0xE3E2\t0x873E\n0xE3E3\t0x8746\n0xE3E4\t0x8720\n0xE3E5\t0x8732\n0xE3E6\t0x872A\n0xE3E7\t0x872D\n0xE3E8\t0x873C\n0xE3E9\t0x8712\n0xE3EA\t0x873A\n0xE3EB\t0x8731\n0xE3EC\t0x8735\n0xE3ED\t0x8742\n0xE3EE\t0x8726\n0xE3EF\t0x8727\n0xE3F0\t0x8738\n0xE3F1\t0x8724\n0xE3F2\t0x871A\n0xE3F3\t0x8730\n0xE3F4\t0x8711\n0xE3F5\t0x88F7\n0xE3F6\t0x88E7\n0xE3F7\t0x88F1\n0xE3F8\t0x88F2\n0xE3F9\t0x88FA\n0xE3FA\t0x88FE\n0xE3FB\t0x88EE\n0xE3FC\t0x88FC\n0xE3FD\t0x88F6\n0xE3FE\t0x88FB\n0xE440\t0x88F0\n0xE441\t0x88EC\n0xE442\t0x88EB\n0xE443\t0x899D\n0xE444\t0x89A1\n0xE445\t0x899F\n0xE446\t0x899E\n0xE447\t0x89E9\n0xE448\t0x89EB\n0xE449\t0x89E8\n0xE44A\t0x8AAB\n0xE44B\t0x8A99\n0xE44C\t0x8A8B\n0xE44D\t0x8A92\n0xE44E\t0x8A8F\n0xE44F\t0x8A96\n0xE450\t0x8C3D\n0xE451\t0x8C68\n0xE452\t0x8C69\n0xE453\t0x8CD5\n0xE454\t0x8CCF\n0xE455\t0x8CD7\n0xE456\t0x8D96\n0xE457\t0x8E09\n0xE458\t0x8E02\n0xE459\t0x8DFF\n0xE45A\t0x8E0D\n0xE45B\t0x8DFD\n0xE45C\t0x8E0A\n0xE45D\t0x8E03\n0xE45E\t0x8E07\n0xE45F\t0x8E06\n0xE460\t0x8E05\n0xE461\t0x8DFE\n0xE462\t0x8E00\n0xE463\t0x8E04\n0xE464\t0x8F10\n0xE465\t0x8F11\n0xE466\t0x8F0E\n0xE467\t0x8F0D\n0xE468\t0x9123\n0xE469\t0x911C\n0xE46A\t0x9120\n0xE46B\t0x9122\n0xE46C\t0x911F\n0xE46D\t0x911D\n0xE46E\t0x911A\n0xE46F\t0x9124\n0xE470\t0x9121\n0xE471\t0x911B\n0xE472\t0x917A\n0xE473\t0x9172\n0xE474\t0x9179\n0xE475\t0x9173\n0xE476\t0x92A5\n0xE477\t0x92A4\n0xE478\t0x9276\n0xE479\t0x929B\n0xE47A\t0x927A\n0xE47B\t0x92A0\n0xE47C\t0x9294\n0xE47D\t0x92AA\n0xE47E\t0x928D\n0xE4A1\t0x92A6\n0xE4A2\t0x929A\n0xE4A3\t0x92AB\n0xE4A4\t0x9279\n0xE4A5\t0x9297\n0xE4A6\t0x927F\n0xE4A7\t0x92A3\n0xE4A8\t0x92EE\n0xE4A9\t0x928E\n0xE4AA\t0x9282\n0xE4AB\t0x9295\n0xE4AC\t0x92A2\n0xE4AD\t0x927D\n0xE4AE\t0x9288\n0xE4AF\t0x92A1\n0xE4B0\t0x928A\n0xE4B1\t0x9286\n0xE4B2\t0x928C\n0xE4B3\t0x9299\n0xE4B4\t0x92A7\n0xE4B5\t0x927E\n0xE4B6\t0x9287\n0xE4B7\t0x92A9\n0xE4B8\t0x929D\n0xE4B9\t0x928B\n0xE4BA\t0x922D\n0xE4BB\t0x969E\n0xE4BC\t0x96A1\n0xE4BD\t0x96FF\n0xE4BE\t0x9758\n0xE4BF\t0x977D\n0xE4C0\t0x977A\n0xE4C1\t0x977E\n0xE4C2\t0x9783\n0xE4C3\t0x9780\n0xE4C4\t0x9782\n0xE4C5\t0x977B\n0xE4C6\t0x9784\n0xE4C7\t0x9781\n0xE4C8\t0x977F\n0xE4C9\t0x97CE\n0xE4CA\t0x97CD\n0xE4CB\t0x9816\n0xE4CC\t0x98AD\n0xE4CD\t0x98AE\n0xE4CE\t0x9902\n0xE4CF\t0x9900\n0xE4D0\t0x9907\n0xE4D1\t0x999D\n0xE4D2\t0x999C\n0xE4D3\t0x99C3\n0xE4D4\t0x99B9\n0xE4D5\t0x99BB\n0xE4D6\t0x99BA\n0xE4D7\t0x99C2\n0xE4D8\t0x99BD\n0xE4D9\t0x99C7\n0xE4DA\t0x9AB1\n0xE4DB\t0x9AE3\n0xE4DC\t0x9AE7\n0xE4DD\t0x9B3E\n0xE4DE\t0x9B3F\n0xE4DF\t0x9B60\n0xE4E0\t0x9B61\n0xE4E1\t0x9B5F\n0xE4E2\t0x9CF1\n0xE4E3\t0x9CF2\n0xE4E4\t0x9CF5\n0xE4E5\t0x9EA7\n0xE4E6\t0x50FF\n0xE4E7\t0x5103\n0xE4E8\t0x5130\n0xE4E9\t0x50F8\n0xE4EA\t0x5106\n0xE4EB\t0x5107\n0xE4EC\t0x50F6\n0xE4ED\t0x50FE\n0xE4EE\t0x510B\n0xE4EF\t0x510C\n0xE4F0\t0x50FD\n0xE4F1\t0x510A\n0xE4F2\t0x528B\n0xE4F3\t0x528C\n0xE4F4\t0x52F1\n0xE4F5\t0x52EF\n0xE4F6\t0x5648\n0xE4F7\t0x5642\n0xE4F8\t0x564C\n0xE4F9\t0x5635\n0xE4FA\t0x5641\n0xE4FB\t0x564A\n0xE4FC\t0x5649\n0xE4FD\t0x5646\n0xE4FE\t0x5658\n0xE540\t0x565A\n0xE541\t0x5640\n0xE542\t0x5633\n0xE543\t0x563D\n0xE544\t0x562C\n0xE545\t0x563E\n0xE546\t0x5638\n0xE547\t0x562A\n0xE548\t0x563A\n0xE549\t0x571A\n0xE54A\t0x58AB\n0xE54B\t0x589D\n0xE54C\t0x58B1\n0xE54D\t0x58A0\n0xE54E\t0x58A3\n0xE54F\t0x58AF\n0xE550\t0x58AC\n0xE551\t0x58A5\n0xE552\t0x58A1\n0xE553\t0x58FF\n0xE554\t0x5AFF\n0xE555\t0x5AF4\n0xE556\t0x5AFD\n0xE557\t0x5AF7\n0xE558\t0x5AF6\n0xE559\t0x5B03\n0xE55A\t0x5AF8\n0xE55B\t0x5B02\n0xE55C\t0x5AF9\n0xE55D\t0x5B01\n0xE55E\t0x5B07\n0xE55F\t0x5B05\n0xE560\t0x5B0F\n0xE561\t0x5C67\n0xE562\t0x5D99\n0xE563\t0x5D97\n0xE564\t0x5D9F\n0xE565\t0x5D92\n0xE566\t0x5DA2\n0xE567\t0x5D93\n0xE568\t0x5D95\n0xE569\t0x5DA0\n0xE56A\t0x5D9C\n0xE56B\t0x5DA1\n0xE56C\t0x5D9A\n0xE56D\t0x5D9E\n0xE56E\t0x5E69\n0xE56F\t0x5E5D\n0xE570\t0x5E60\n0xE571\t0x5E5C\n0xE572\t0x7DF3\n0xE573\t0x5EDB\n0xE574\t0x5EDE\n0xE575\t0x5EE1\n0xE576\t0x5F49\n0xE577\t0x5FB2\n0xE578\t0x618B\n0xE579\t0x6183\n0xE57A\t0x6179\n0xE57B\t0x61B1\n0xE57C\t0x61B0\n0xE57D\t0x61A2\n0xE57E\t0x6189\n0xE5A1\t0x619B\n0xE5A2\t0x6193\n0xE5A3\t0x61AF\n0xE5A4\t0x61AD\n0xE5A5\t0x619F\n0xE5A6\t0x6192\n0xE5A7\t0x61AA\n0xE5A8\t0x61A1\n0xE5A9\t0x618D\n0xE5AA\t0x6166\n0xE5AB\t0x61B3\n0xE5AC\t0x622D\n0xE5AD\t0x646E\n0xE5AE\t0x6470\n0xE5AF\t0x6496\n0xE5B0\t0x64A0\n0xE5B1\t0x6485\n0xE5B2\t0x6497\n0xE5B3\t0x649C\n0xE5B4\t0x648F\n0xE5B5\t0x648B\n0xE5B6\t0x648A\n0xE5B7\t0x648C\n0xE5B8\t0x64A3\n0xE5B9\t0x649F\n0xE5BA\t0x6468\n0xE5BB\t0x64B1\n0xE5BC\t0x6498\n0xE5BD\t0x6576\n0xE5BE\t0x657A\n0xE5BF\t0x6579\n0xE5C0\t0x657B\n0xE5C1\t0x65B2\n0xE5C2\t0x65B3\n0xE5C3\t0x66B5\n0xE5C4\t0x66B0\n0xE5C5\t0x66A9\n0xE5C6\t0x66B2\n0xE5C7\t0x66B7\n0xE5C8\t0x66AA\n0xE5C9\t0x66AF\n0xE5CA\t0x6A00\n0xE5CB\t0x6A06\n0xE5CC\t0x6A17\n0xE5CD\t0x69E5\n0xE5CE\t0x69F8\n0xE5CF\t0x6A15\n0xE5D0\t0x69F1\n0xE5D1\t0x69E4\n0xE5D2\t0x6A20\n0xE5D3\t0x69FF\n0xE5D4\t0x69EC\n0xE5D5\t0x69E2\n0xE5D6\t0x6A1B\n0xE5D7\t0x6A1D\n0xE5D8\t0x69FE\n0xE5D9\t0x6A27\n0xE5DA\t0x69F2\n0xE5DB\t0x69EE\n0xE5DC\t0x6A14\n0xE5DD\t0x69F7\n0xE5DE\t0x69E7\n0xE5DF\t0x6A40\n0xE5E0\t0x6A08\n0xE5E1\t0x69E6\n0xE5E2\t0x69FB\n0xE5E3\t0x6A0D\n0xE5E4\t0x69FC\n0xE5E5\t0x69EB\n0xE5E6\t0x6A09\n0xE5E7\t0x6A04\n0xE5E8\t0x6A18\n0xE5E9\t0x6A25\n0xE5EA\t0x6A0F\n0xE5EB\t0x69F6\n0xE5EC\t0x6A26\n0xE5ED\t0x6A07\n0xE5EE\t0x69F4\n0xE5EF\t0x6A16\n0xE5F0\t0x6B51\n0xE5F1\t0x6BA5\n0xE5F2\t0x6BA3\n0xE5F3\t0x6BA2\n0xE5F4\t0x6BA6\n0xE5F5\t0x6C01\n0xE5F6\t0x6C00\n0xE5F7\t0x6BFF\n0xE5F8\t0x6C02\n0xE5F9\t0x6F41\n0xE5FA\t0x6F26\n0xE5FB\t0x6F7E\n0xE5FC\t0x6F87\n0xE5FD\t0x6FC6\n0xE5FE\t0x6F92\n0xE640\t0x6F8D\n0xE641\t0x6F89\n0xE642\t0x6F8C\n0xE643\t0x6F62\n0xE644\t0x6F4F\n0xE645\t0x6F85\n0xE646\t0x6F5A\n0xE647\t0x6F96\n0xE648\t0x6F76\n0xE649\t0x6F6C\n0xE64A\t0x6F82\n0xE64B\t0x6F55\n0xE64C\t0x6F72\n0xE64D\t0x6F52\n0xE64E\t0x6F50\n0xE64F\t0x6F57\n0xE650\t0x6F94\n0xE651\t0x6F93\n0xE652\t0x6F5D\n0xE653\t0x6F00\n0xE654\t0x6F61\n0xE655\t0x6F6B\n0xE656\t0x6F7D\n0xE657\t0x6F67\n0xE658\t0x6F90\n0xE659\t0x6F53\n0xE65A\t0x6F8B\n0xE65B\t0x6F69\n0xE65C\t0x6F7F\n0xE65D\t0x6F95\n0xE65E\t0x6F63\n0xE65F\t0x6F77\n0xE660\t0x6F6A\n0xE661\t0x6F7B\n0xE662\t0x71B2\n0xE663\t0x71AF\n0xE664\t0x719B\n0xE665\t0x71B0\n0xE666\t0x71A0\n0xE667\t0x719A\n0xE668\t0x71A9\n0xE669\t0x71B5\n0xE66A\t0x719D\n0xE66B\t0x71A5\n0xE66C\t0x719E\n0xE66D\t0x71A4\n0xE66E\t0x71A1\n0xE66F\t0x71AA\n0xE670\t0x719C\n0xE671\t0x71A7\n0xE672\t0x71B3\n0xE673\t0x7298\n0xE674\t0x729A\n0xE675\t0x7358\n0xE676\t0x7352\n0xE677\t0x735E\n0xE678\t0x735F\n0xE679\t0x7360\n0xE67A\t0x735D\n0xE67B\t0x735B\n0xE67C\t0x7361\n0xE67D\t0x735A\n0xE67E\t0x7359\n0xE6A1\t0x7362\n0xE6A2\t0x7487\n0xE6A3\t0x7489\n0xE6A4\t0x748A\n0xE6A5\t0x7486\n0xE6A6\t0x7481\n0xE6A7\t0x747D\n0xE6A8\t0x7485\n0xE6A9\t0x7488\n0xE6AA\t0x747C\n0xE6AB\t0x7479\n0xE6AC\t0x7508\n0xE6AD\t0x7507\n0xE6AE\t0x757E\n0xE6AF\t0x7625\n0xE6B0\t0x761E\n0xE6B1\t0x7619\n0xE6B2\t0x761D\n0xE6B3\t0x761C\n0xE6B4\t0x7623\n0xE6B5\t0x761A\n0xE6B6\t0x7628\n0xE6B7\t0x761B\n0xE6B8\t0x769C\n0xE6B9\t0x769D\n0xE6BA\t0x769E\n0xE6BB\t0x769B\n0xE6BC\t0x778D\n0xE6BD\t0x778F\n0xE6BE\t0x7789\n0xE6BF\t0x7788\n0xE6C0\t0x78CD\n0xE6C1\t0x78BB\n0xE6C2\t0x78CF\n0xE6C3\t0x78CC\n0xE6C4\t0x78D1\n0xE6C5\t0x78CE\n0xE6C6\t0x78D4\n0xE6C7\t0x78C8\n0xE6C8\t0x78C3\n0xE6C9\t0x78C4\n0xE6CA\t0x78C9\n0xE6CB\t0x799A\n0xE6CC\t0x79A1\n0xE6CD\t0x79A0\n0xE6CE\t0x799C\n0xE6CF\t0x79A2\n0xE6D0\t0x799B\n0xE6D1\t0x6B76\n0xE6D2\t0x7A39\n0xE6D3\t0x7AB2\n0xE6D4\t0x7AB4\n0xE6D5\t0x7AB3\n0xE6D6\t0x7BB7\n0xE6D7\t0x7BCB\n0xE6D8\t0x7BBE\n0xE6D9\t0x7BAC\n0xE6DA\t0x7BCE\n0xE6DB\t0x7BAF\n0xE6DC\t0x7BB9\n0xE6DD\t0x7BCA\n0xE6DE\t0x7BB5\n0xE6DF\t0x7CC5\n0xE6E0\t0x7CC8\n0xE6E1\t0x7CCC\n0xE6E2\t0x7CCB\n0xE6E3\t0x7DF7\n0xE6E4\t0x7DDB\n0xE6E5\t0x7DEA\n0xE6E6\t0x7DE7\n0xE6E7\t0x7DD7\n0xE6E8\t0x7DE1\n0xE6E9\t0x7E03\n0xE6EA\t0x7DFA\n0xE6EB\t0x7DE6\n0xE6EC\t0x7DF6\n0xE6ED\t0x7DF1\n0xE6EE\t0x7DF0\n0xE6EF\t0x7DEE\n0xE6F0\t0x7DDF\n0xE6F1\t0x7F76\n0xE6F2\t0x7FAC\n0xE6F3\t0x7FB0\n0xE6F4\t0x7FAD\n0xE6F5\t0x7FED\n0xE6F6\t0x7FEB\n0xE6F7\t0x7FEA\n0xE6F8\t0x7FEC\n0xE6F9\t0x7FE6\n0xE6FA\t0x7FE8\n0xE6FB\t0x8064\n0xE6FC\t0x8067\n0xE6FD\t0x81A3\n0xE6FE\t0x819F\n0xE740\t0x819E\n0xE741\t0x8195\n0xE742\t0x81A2\n0xE743\t0x8199\n0xE744\t0x8197\n0xE745\t0x8216\n0xE746\t0x824F\n0xE747\t0x8253\n0xE748\t0x8252\n0xE749\t0x8250\n0xE74A\t0x824E\n0xE74B\t0x8251\n0xE74C\t0x8524\n0xE74D\t0x853B\n0xE74E\t0x850F\n0xE74F\t0x8500\n0xE750\t0x8529\n0xE751\t0x850E\n0xE752\t0x8509\n0xE753\t0x850D\n0xE754\t0x851F\n0xE755\t0x850A\n0xE756\t0x8527\n0xE757\t0x851C\n0xE758\t0x84FB\n0xE759\t0x852B\n0xE75A\t0x84FA\n0xE75B\t0x8508\n0xE75C\t0x850C\n0xE75D\t0x84F4\n0xE75E\t0x852A\n0xE75F\t0x84F2\n0xE760\t0x8515\n0xE761\t0x84F7\n0xE762\t0x84EB\n0xE763\t0x84F3\n0xE764\t0x84FC\n0xE765\t0x8512\n0xE766\t0x84EA\n0xE767\t0x84E9\n0xE768\t0x8516\n0xE769\t0x84FE\n0xE76A\t0x8528\n0xE76B\t0x851D\n0xE76C\t0x852E\n0xE76D\t0x8502\n0xE76E\t0x84FD\n0xE76F\t0x851E\n0xE770\t0x84F6\n0xE771\t0x8531\n0xE772\t0x8526\n0xE773\t0x84E7\n0xE774\t0x84E8\n0xE775\t0x84F0\n0xE776\t0x84EF\n0xE777\t0x84F9\n0xE778\t0x8518\n0xE779\t0x8520\n0xE77A\t0x8530\n0xE77B\t0x850B\n0xE77C\t0x8519\n0xE77D\t0x852F\n0xE77E\t0x8662\n0xE7A1\t0x8756\n0xE7A2\t0x8763\n0xE7A3\t0x8764\n0xE7A4\t0x8777\n0xE7A5\t0x87E1\n0xE7A6\t0x8773\n0xE7A7\t0x8758\n0xE7A8\t0x8754\n0xE7A9\t0x875B\n0xE7AA\t0x8752\n0xE7AB\t0x8761\n0xE7AC\t0x875A\n0xE7AD\t0x8751\n0xE7AE\t0x875E\n0xE7AF\t0x876D\n0xE7B0\t0x876A\n0xE7B1\t0x8750\n0xE7B2\t0x874E\n0xE7B3\t0x875F\n0xE7B4\t0x875D\n0xE7B5\t0x876F\n0xE7B6\t0x876C\n0xE7B7\t0x877A\n0xE7B8\t0x876E\n0xE7B9\t0x875C\n0xE7BA\t0x8765\n0xE7BB\t0x874F\n0xE7BC\t0x877B\n0xE7BD\t0x8775\n0xE7BE\t0x8762\n0xE7BF\t0x8767\n0xE7C0\t0x8769\n0xE7C1\t0x885A\n0xE7C2\t0x8905\n0xE7C3\t0x890C\n0xE7C4\t0x8914\n0xE7C5\t0x890B\n0xE7C6\t0x8917\n0xE7C7\t0x8918\n0xE7C8\t0x8919\n0xE7C9\t0x8906\n0xE7CA\t0x8916\n0xE7CB\t0x8911\n0xE7CC\t0x890E\n0xE7CD\t0x8909\n0xE7CE\t0x89A2\n0xE7CF\t0x89A4\n0xE7D0\t0x89A3\n0xE7D1\t0x89ED\n0xE7D2\t0x89F0\n0xE7D3\t0x89EC\n0xE7D4\t0x8ACF\n0xE7D5\t0x8AC6\n0xE7D6\t0x8AB8\n0xE7D7\t0x8AD3\n0xE7D8\t0x8AD1\n0xE7D9\t0x8AD4\n0xE7DA\t0x8AD5\n0xE7DB\t0x8ABB\n0xE7DC\t0x8AD7\n0xE7DD\t0x8ABE\n0xE7DE\t0x8AC0\n0xE7DF\t0x8AC5\n0xE7E0\t0x8AD8\n0xE7E1\t0x8AC3\n0xE7E2\t0x8ABA\n0xE7E3\t0x8ABD\n0xE7E4\t0x8AD9\n0xE7E5\t0x8C3E\n0xE7E6\t0x8C4D\n0xE7E7\t0x8C8F\n0xE7E8\t0x8CE5\n0xE7E9\t0x8CDF\n0xE7EA\t0x8CD9\n0xE7EB\t0x8CE8\n0xE7EC\t0x8CDA\n0xE7ED\t0x8CDD\n0xE7EE\t0x8CE7\n0xE7EF\t0x8DA0\n0xE7F0\t0x8D9C\n0xE7F1\t0x8DA1\n0xE7F2\t0x8D9B\n0xE7F3\t0x8E20\n0xE7F4\t0x8E23\n0xE7F5\t0x8E25\n0xE7F6\t0x8E24\n0xE7F7\t0x8E2E\n0xE7F8\t0x8E15\n0xE7F9\t0x8E1B\n0xE7FA\t0x8E16\n0xE7FB\t0x8E11\n0xE7FC\t0x8E19\n0xE7FD\t0x8E26\n0xE7FE\t0x8E27\n0xE840\t0x8E14\n0xE841\t0x8E12\n0xE842\t0x8E18\n0xE843\t0x8E13\n0xE844\t0x8E1C\n0xE845\t0x8E17\n0xE846\t0x8E1A\n0xE847\t0x8F2C\n0xE848\t0x8F24\n0xE849\t0x8F18\n0xE84A\t0x8F1A\n0xE84B\t0x8F20\n0xE84C\t0x8F23\n0xE84D\t0x8F16\n0xE84E\t0x8F17\n0xE84F\t0x9073\n0xE850\t0x9070\n0xE851\t0x906F\n0xE852\t0x9067\n0xE853\t0x906B\n0xE854\t0x912F\n0xE855\t0x912B\n0xE856\t0x9129\n0xE857\t0x912A\n0xE858\t0x9132\n0xE859\t0x9126\n0xE85A\t0x912E\n0xE85B\t0x9185\n0xE85C\t0x9186\n0xE85D\t0x918A\n0xE85E\t0x9181\n0xE85F\t0x9182\n0xE860\t0x9184\n0xE861\t0x9180\n0xE862\t0x92D0\n0xE863\t0x92C3\n0xE864\t0x92C4\n0xE865\t0x92C0\n0xE866\t0x92D9\n0xE867\t0x92B6\n0xE868\t0x92CF\n0xE869\t0x92F1\n0xE86A\t0x92DF\n0xE86B\t0x92D8\n0xE86C\t0x92E9\n0xE86D\t0x92D7\n0xE86E\t0x92DD\n0xE86F\t0x92CC\n0xE870\t0x92EF\n0xE871\t0x92C2\n0xE872\t0x92E8\n0xE873\t0x92CA\n0xE874\t0x92C8\n0xE875\t0x92CE\n0xE876\t0x92E6\n0xE877\t0x92CD\n0xE878\t0x92D5\n0xE879\t0x92C9\n0xE87A\t0x92E0\n0xE87B\t0x92DE\n0xE87C\t0x92E7\n0xE87D\t0x92D1\n0xE87E\t0x92D3\n0xE8A1\t0x92B5\n0xE8A2\t0x92E1\n0xE8A3\t0x92C6\n0xE8A4\t0x92B4\n0xE8A5\t0x957C\n0xE8A6\t0x95AC\n0xE8A7\t0x95AB\n0xE8A8\t0x95AE\n0xE8A9\t0x95B0\n0xE8AA\t0x96A4\n0xE8AB\t0x96A2\n0xE8AC\t0x96D3\n0xE8AD\t0x9705\n0xE8AE\t0x9708\n0xE8AF\t0x9702\n0xE8B0\t0x975A\n0xE8B1\t0x978A\n0xE8B2\t0x978E\n0xE8B3\t0x9788\n0xE8B4\t0x97D0\n0xE8B5\t0x97CF\n0xE8B6\t0x981E\n0xE8B7\t0x981D\n0xE8B8\t0x9826\n0xE8B9\t0x9829\n0xE8BA\t0x9828\n0xE8BB\t0x9820\n0xE8BC\t0x981B\n0xE8BD\t0x9827\n0xE8BE\t0x98B2\n0xE8BF\t0x9908\n0xE8C0\t0x98FA\n0xE8C1\t0x9911\n0xE8C2\t0x9914\n0xE8C3\t0x9916\n0xE8C4\t0x9917\n0xE8C5\t0x9915\n0xE8C6\t0x99DC\n0xE8C7\t0x99CD\n0xE8C8\t0x99CF\n0xE8C9\t0x99D3\n0xE8CA\t0x99D4\n0xE8CB\t0x99CE\n0xE8CC\t0x99C9\n0xE8CD\t0x99D6\n0xE8CE\t0x99D8\n0xE8CF\t0x99CB\n0xE8D0\t0x99D7\n0xE8D1\t0x99CC\n0xE8D2\t0x9AB3\n0xE8D3\t0x9AEC\n0xE8D4\t0x9AEB\n0xE8D5\t0x9AF3\n0xE8D6\t0x9AF2\n0xE8D7\t0x9AF1\n0xE8D8\t0x9B46\n0xE8D9\t0x9B43\n0xE8DA\t0x9B67\n0xE8DB\t0x9B74\n0xE8DC\t0x9B71\n0xE8DD\t0x9B66\n0xE8DE\t0x9B76\n0xE8DF\t0x9B75\n0xE8E0\t0x9B70\n0xE8E1\t0x9B68\n0xE8E2\t0x9B64\n0xE8E3\t0x9B6C\n0xE8E4\t0x9CFC\n0xE8E5\t0x9CFA\n0xE8E6\t0x9CFD\n0xE8E7\t0x9CFF\n0xE8E8\t0x9CF7\n0xE8E9\t0x9D07\n0xE8EA\t0x9D00\n0xE8EB\t0x9CF9\n0xE8EC\t0x9CFB\n0xE8ED\t0x9D08\n0xE8EE\t0x9D05\n0xE8EF\t0x9D04\n0xE8F0\t0x9E83\n0xE8F1\t0x9ED3\n0xE8F2\t0x9F0F\n0xE8F3\t0x9F10\n0xE8F4\t0x511C\n0xE8F5\t0x5113\n0xE8F6\t0x5117\n0xE8F7\t0x511A\n0xE8F8\t0x5111\n0xE8F9\t0x51DE\n0xE8FA\t0x5334\n0xE8FB\t0x53E1\n0xE8FC\t0x5670\n0xE8FD\t0x5660\n0xE8FE\t0x566E\n0xE940\t0x5673\n0xE941\t0x5666\n0xE942\t0x5663\n0xE943\t0x566D\n0xE944\t0x5672\n0xE945\t0x565E\n0xE946\t0x5677\n0xE947\t0x571C\n0xE948\t0x571B\n0xE949\t0x58C8\n0xE94A\t0x58BD\n0xE94B\t0x58C9\n0xE94C\t0x58BF\n0xE94D\t0x58BA\n0xE94E\t0x58C2\n0xE94F\t0x58BC\n0xE950\t0x58C6\n0xE951\t0x5B17\n0xE952\t0x5B19\n0xE953\t0x5B1B\n0xE954\t0x5B21\n0xE955\t0x5B14\n0xE956\t0x5B13\n0xE957\t0x5B10\n0xE958\t0x5B16\n0xE959\t0x5B28\n0xE95A\t0x5B1A\n0xE95B\t0x5B20\n0xE95C\t0x5B1E\n0xE95D\t0x5BEF\n0xE95E\t0x5DAC\n0xE95F\t0x5DB1\n0xE960\t0x5DA9\n0xE961\t0x5DA7\n0xE962\t0x5DB5\n0xE963\t0x5DB0\n0xE964\t0x5DAE\n0xE965\t0x5DAA\n0xE966\t0x5DA8\n0xE967\t0x5DB2\n0xE968\t0x5DAD\n0xE969\t0x5DAF\n0xE96A\t0x5DB4\n0xE96B\t0x5E67\n0xE96C\t0x5E68\n0xE96D\t0x5E66\n0xE96E\t0x5E6F\n0xE96F\t0x5EE9\n0xE970\t0x5EE7\n0xE971\t0x5EE6\n0xE972\t0x5EE8\n0xE973\t0x5EE5\n0xE974\t0x5F4B\n0xE975\t0x5FBC\n0xE976\t0x619D\n0xE977\t0x61A8\n0xE978\t0x6196\n0xE979\t0x61C5\n0xE97A\t0x61B4\n0xE97B\t0x61C6\n0xE97C\t0x61C1\n0xE97D\t0x61CC\n0xE97E\t0x61BA\n0xE9A1\t0x61BF\n0xE9A2\t0x61B8\n0xE9A3\t0x618C\n0xE9A4\t0x64D7\n0xE9A5\t0x64D6\n0xE9A6\t0x64D0\n0xE9A7\t0x64CF\n0xE9A8\t0x64C9\n0xE9A9\t0x64BD\n0xE9AA\t0x6489\n0xE9AB\t0x64C3\n0xE9AC\t0x64DB\n0xE9AD\t0x64F3\n0xE9AE\t0x64D9\n0xE9AF\t0x6533\n0xE9B0\t0x657F\n0xE9B1\t0x657C\n0xE9B2\t0x65A2\n0xE9B3\t0x66C8\n0xE9B4\t0x66BE\n0xE9B5\t0x66C0\n0xE9B6\t0x66CA\n0xE9B7\t0x66CB\n0xE9B8\t0x66CF\n0xE9B9\t0x66BD\n0xE9BA\t0x66BB\n0xE9BB\t0x66BA\n0xE9BC\t0x66CC\n0xE9BD\t0x6723\n0xE9BE\t0x6A34\n0xE9BF\t0x6A66\n0xE9C0\t0x6A49\n0xE9C1\t0x6A67\n0xE9C2\t0x6A32\n0xE9C3\t0x6A68\n0xE9C4\t0x6A3E\n0xE9C5\t0x6A5D\n0xE9C6\t0x6A6D\n0xE9C7\t0x6A76\n0xE9C8\t0x6A5B\n0xE9C9\t0x6A51\n0xE9CA\t0x6A28\n0xE9CB\t0x6A5A\n0xE9CC\t0x6A3B\n0xE9CD\t0x6A3F\n0xE9CE\t0x6A41\n0xE9CF\t0x6A6A\n0xE9D0\t0x6A64\n0xE9D1\t0x6A50\n0xE9D2\t0x6A4F\n0xE9D3\t0x6A54\n0xE9D4\t0x6A6F\n0xE9D5\t0x6A69\n0xE9D6\t0x6A60\n0xE9D7\t0x6A3C\n0xE9D8\t0x6A5E\n0xE9D9\t0x6A56\n0xE9DA\t0x6A55\n0xE9DB\t0x6A4D\n0xE9DC\t0x6A4E\n0xE9DD\t0x6A46\n0xE9DE\t0x6B55\n0xE9DF\t0x6B54\n0xE9E0\t0x6B56\n0xE9E1\t0x6BA7\n0xE9E2\t0x6BAA\n0xE9E3\t0x6BAB\n0xE9E4\t0x6BC8\n0xE9E5\t0x6BC7\n0xE9E6\t0x6C04\n0xE9E7\t0x6C03\n0xE9E8\t0x6C06\n0xE9E9\t0x6FAD\n0xE9EA\t0x6FCB\n0xE9EB\t0x6FA3\n0xE9EC\t0x6FC7\n0xE9ED\t0x6FBC\n0xE9EE\t0x6FCE\n0xE9EF\t0x6FC8\n0xE9F0\t0x6F5E\n0xE9F1\t0x6FC4\n0xE9F2\t0x6FBD\n0xE9F3\t0x6F9E\n0xE9F4\t0x6FCA\n0xE9F5\t0x6FA8\n0xE9F6\t0x7004\n0xE9F7\t0x6FA5\n0xE9F8\t0x6FAE\n0xE9F9\t0x6FBA\n0xE9FA\t0x6FAC\n0xE9FB\t0x6FAA\n0xE9FC\t0x6FCF\n0xE9FD\t0x6FBF\n0xE9FE\t0x6FB8\n0xEA40\t0x6FA2\n0xEA41\t0x6FC9\n0xEA42\t0x6FAB\n0xEA43\t0x6FCD\n0xEA44\t0x6FAF\n0xEA45\t0x6FB2\n0xEA46\t0x6FB0\n0xEA47\t0x71C5\n0xEA48\t0x71C2\n0xEA49\t0x71BF\n0xEA4A\t0x71B8\n0xEA4B\t0x71D6\n0xEA4C\t0x71C0\n0xEA4D\t0x71C1\n0xEA4E\t0x71CB\n0xEA4F\t0x71D4\n0xEA50\t0x71CA\n0xEA51\t0x71C7\n0xEA52\t0x71CF\n0xEA53\t0x71BD\n0xEA54\t0x71D8\n0xEA55\t0x71BC\n0xEA56\t0x71C6\n0xEA57\t0x71DA\n0xEA58\t0x71DB\n0xEA59\t0x729D\n0xEA5A\t0x729E\n0xEA5B\t0x7369\n0xEA5C\t0x7366\n0xEA5D\t0x7367\n0xEA5E\t0x736C\n0xEA5F\t0x7365\n0xEA60\t0x736B\n0xEA61\t0x736A\n0xEA62\t0x747F\n0xEA63\t0x749A\n0xEA64\t0x74A0\n0xEA65\t0x7494\n0xEA66\t0x7492\n0xEA67\t0x7495\n0xEA68\t0x74A1\n0xEA69\t0x750B\n0xEA6A\t0x7580\n0xEA6B\t0x762F\n0xEA6C\t0x762D\n0xEA6D\t0x7631\n0xEA6E\t0x763D\n0xEA6F\t0x7633\n0xEA70\t0x763C\n0xEA71\t0x7635\n0xEA72\t0x7632\n0xEA73\t0x7630\n0xEA74\t0x76BB\n0xEA75\t0x76E6\n0xEA76\t0x779A\n0xEA77\t0x779D\n0xEA78\t0x77A1\n0xEA79\t0x779C\n0xEA7A\t0x779B\n0xEA7B\t0x77A2\n0xEA7C\t0x77A3\n0xEA7D\t0x7795\n0xEA7E\t0x7799\n0xEAA1\t0x7797\n0xEAA2\t0x78DD\n0xEAA3\t0x78E9\n0xEAA4\t0x78E5\n0xEAA5\t0x78EA\n0xEAA6\t0x78DE\n0xEAA7\t0x78E3\n0xEAA8\t0x78DB\n0xEAA9\t0x78E1\n0xEAAA\t0x78E2\n0xEAAB\t0x78ED\n0xEAAC\t0x78DF\n0xEAAD\t0x78E0\n0xEAAE\t0x79A4\n0xEAAF\t0x7A44\n0xEAB0\t0x7A48\n0xEAB1\t0x7A47\n0xEAB2\t0x7AB6\n0xEAB3\t0x7AB8\n0xEAB4\t0x7AB5\n0xEAB5\t0x7AB1\n0xEAB6\t0x7AB7\n0xEAB7\t0x7BDE\n0xEAB8\t0x7BE3\n0xEAB9\t0x7BE7\n0xEABA\t0x7BDD\n0xEABB\t0x7BD5\n0xEABC\t0x7BE5\n0xEABD\t0x7BDA\n0xEABE\t0x7BE8\n0xEABF\t0x7BF9\n0xEAC0\t0x7BD4\n0xEAC1\t0x7BEA\n0xEAC2\t0x7BE2\n0xEAC3\t0x7BDC\n0xEAC4\t0x7BEB\n0xEAC5\t0x7BD8\n0xEAC6\t0x7BDF\n0xEAC7\t0x7CD2\n0xEAC8\t0x7CD4\n0xEAC9\t0x7CD7\n0xEACA\t0x7CD0\n0xEACB\t0x7CD1\n0xEACC\t0x7E12\n0xEACD\t0x7E21\n0xEACE\t0x7E17\n0xEACF\t0x7E0C\n0xEAD0\t0x7E1F\n0xEAD1\t0x7E20\n0xEAD2\t0x7E13\n0xEAD3\t0x7E0E\n0xEAD4\t0x7E1C\n0xEAD5\t0x7E15\n0xEAD6\t0x7E1A\n0xEAD7\t0x7E22\n0xEAD8\t0x7E0B\n0xEAD9\t0x7E0F\n0xEADA\t0x7E16\n0xEADB\t0x7E0D\n0xEADC\t0x7E14\n0xEADD\t0x7E25\n0xEADE\t0x7E24\n0xEADF\t0x7F43\n0xEAE0\t0x7F7B\n0xEAE1\t0x7F7C\n0xEAE2\t0x7F7A\n0xEAE3\t0x7FB1\n0xEAE4\t0x7FEF\n0xEAE5\t0x802A\n0xEAE6\t0x8029\n0xEAE7\t0x806C\n0xEAE8\t0x81B1\n0xEAE9\t0x81A6\n0xEAEA\t0x81AE\n0xEAEB\t0x81B9\n0xEAEC\t0x81B5\n0xEAED\t0x81AB\n0xEAEE\t0x81B0\n0xEAEF\t0x81AC\n0xEAF0\t0x81B4\n0xEAF1\t0x81B2\n0xEAF2\t0x81B7\n0xEAF3\t0x81A7\n0xEAF4\t0x81F2\n0xEAF5\t0x8255\n0xEAF6\t0x8256\n0xEAF7\t0x8257\n0xEAF8\t0x8556\n0xEAF9\t0x8545\n0xEAFA\t0x856B\n0xEAFB\t0x854D\n0xEAFC\t0x8553\n0xEAFD\t0x8561\n0xEAFE\t0x8558\n0xEB40\t0x8540\n0xEB41\t0x8546\n0xEB42\t0x8564\n0xEB43\t0x8541\n0xEB44\t0x8562\n0xEB45\t0x8544\n0xEB46\t0x8551\n0xEB47\t0x8547\n0xEB48\t0x8563\n0xEB49\t0x853E\n0xEB4A\t0x855B\n0xEB4B\t0x8571\n0xEB4C\t0x854E\n0xEB4D\t0x856E\n0xEB4E\t0x8575\n0xEB4F\t0x8555\n0xEB50\t0x8567\n0xEB51\t0x8560\n0xEB52\t0x858C\n0xEB53\t0x8566\n0xEB54\t0x855D\n0xEB55\t0x8554\n0xEB56\t0x8565\n0xEB57\t0x856C\n0xEB58\t0x8663\n0xEB59\t0x8665\n0xEB5A\t0x8664\n0xEB5B\t0x879B\n0xEB5C\t0x878F\n0xEB5D\t0x8797\n0xEB5E\t0x8793\n0xEB5F\t0x8792\n0xEB60\t0x8788\n0xEB61\t0x8781\n0xEB62\t0x8796\n0xEB63\t0x8798\n0xEB64\t0x8779\n0xEB65\t0x8787\n0xEB66\t0x87A3\n0xEB67\t0x8785\n0xEB68\t0x8790\n0xEB69\t0x8791\n0xEB6A\t0x879D\n0xEB6B\t0x8784\n0xEB6C\t0x8794\n0xEB6D\t0x879C\n0xEB6E\t0x879A\n0xEB6F\t0x8789\n0xEB70\t0x891E\n0xEB71\t0x8926\n0xEB72\t0x8930\n0xEB73\t0x892D\n0xEB74\t0x892E\n0xEB75\t0x8927\n0xEB76\t0x8931\n0xEB77\t0x8922\n0xEB78\t0x8929\n0xEB79\t0x8923\n0xEB7A\t0x892F\n0xEB7B\t0x892C\n0xEB7C\t0x891F\n0xEB7D\t0x89F1\n0xEB7E\t0x8AE0\n0xEBA1\t0x8AE2\n0xEBA2\t0x8AF2\n0xEBA3\t0x8AF4\n0xEBA4\t0x8AF5\n0xEBA5\t0x8ADD\n0xEBA6\t0x8B14\n0xEBA7\t0x8AE4\n0xEBA8\t0x8ADF\n0xEBA9\t0x8AF0\n0xEBAA\t0x8AC8\n0xEBAB\t0x8ADE\n0xEBAC\t0x8AE1\n0xEBAD\t0x8AE8\n0xEBAE\t0x8AFF\n0xEBAF\t0x8AEF\n0xEBB0\t0x8AFB\n0xEBB1\t0x8C91\n0xEBB2\t0x8C92\n0xEBB3\t0x8C90\n0xEBB4\t0x8CF5\n0xEBB5\t0x8CEE\n0xEBB6\t0x8CF1\n0xEBB7\t0x8CF0\n0xEBB8\t0x8CF3\n0xEBB9\t0x8D6C\n0xEBBA\t0x8D6E\n0xEBBB\t0x8DA5\n0xEBBC\t0x8DA7\n0xEBBD\t0x8E33\n0xEBBE\t0x8E3E\n0xEBBF\t0x8E38\n0xEBC0\t0x8E40\n0xEBC1\t0x8E45\n0xEBC2\t0x8E36\n0xEBC3\t0x8E3C\n0xEBC4\t0x8E3D\n0xEBC5\t0x8E41\n0xEBC6\t0x8E30\n0xEBC7\t0x8E3F\n0xEBC8\t0x8EBD\n0xEBC9\t0x8F36\n0xEBCA\t0x8F2E\n0xEBCB\t0x8F35\n0xEBCC\t0x8F32\n0xEBCD\t0x8F39\n0xEBCE\t0x8F37\n0xEBCF\t0x8F34\n0xEBD0\t0x9076\n0xEBD1\t0x9079\n0xEBD2\t0x907B\n0xEBD3\t0x9086\n0xEBD4\t0x90FA\n0xEBD5\t0x9133\n0xEBD6\t0x9135\n0xEBD7\t0x9136\n0xEBD8\t0x9193\n0xEBD9\t0x9190\n0xEBDA\t0x9191\n0xEBDB\t0x918D\n0xEBDC\t0x918F\n0xEBDD\t0x9327\n0xEBDE\t0x931E\n0xEBDF\t0x9308\n0xEBE0\t0x931F\n0xEBE1\t0x9306\n0xEBE2\t0x930F\n0xEBE3\t0x937A\n0xEBE4\t0x9338\n0xEBE5\t0x933C\n0xEBE6\t0x931B\n0xEBE7\t0x9323\n0xEBE8\t0x9312\n0xEBE9\t0x9301\n0xEBEA\t0x9346\n0xEBEB\t0x932D\n0xEBEC\t0x930E\n0xEBED\t0x930D\n0xEBEE\t0x92CB\n0xEBEF\t0x931D\n0xEBF0\t0x92FA\n0xEBF1\t0x9325\n0xEBF2\t0x9313\n0xEBF3\t0x92F9\n0xEBF4\t0x92F7\n0xEBF5\t0x9334\n0xEBF6\t0x9302\n0xEBF7\t0x9324\n0xEBF8\t0x92FF\n0xEBF9\t0x9329\n0xEBFA\t0x9339\n0xEBFB\t0x9335\n0xEBFC\t0x932A\n0xEBFD\t0x9314\n0xEBFE\t0x930C\n0xEC40\t0x930B\n0xEC41\t0x92FE\n0xEC42\t0x9309\n0xEC43\t0x9300\n0xEC44\t0x92FB\n0xEC45\t0x9316\n0xEC46\t0x95BC\n0xEC47\t0x95CD\n0xEC48\t0x95BE\n0xEC49\t0x95B9\n0xEC4A\t0x95BA\n0xEC4B\t0x95B6\n0xEC4C\t0x95BF\n0xEC4D\t0x95B5\n0xEC4E\t0x95BD\n0xEC4F\t0x96A9\n0xEC50\t0x96D4\n0xEC51\t0x970B\n0xEC52\t0x9712\n0xEC53\t0x9710\n0xEC54\t0x9799\n0xEC55\t0x9797\n0xEC56\t0x9794\n0xEC57\t0x97F0\n0xEC58\t0x97F8\n0xEC59\t0x9835\n0xEC5A\t0x982F\n0xEC5B\t0x9832\n0xEC5C\t0x9924\n0xEC5D\t0x991F\n0xEC5E\t0x9927\n0xEC5F\t0x9929\n0xEC60\t0x999E\n0xEC61\t0x99EE\n0xEC62\t0x99EC\n0xEC63\t0x99E5\n0xEC64\t0x99E4\n0xEC65\t0x99F0\n0xEC66\t0x99E3\n0xEC67\t0x99EA\n0xEC68\t0x99E9\n0xEC69\t0x99E7\n0xEC6A\t0x9AB9\n0xEC6B\t0x9ABF\n0xEC6C\t0x9AB4\n0xEC6D\t0x9ABB\n0xEC6E\t0x9AF6\n0xEC6F\t0x9AFA\n0xEC70\t0x9AF9\n0xEC71\t0x9AF7\n0xEC72\t0x9B33\n0xEC73\t0x9B80\n0xEC74\t0x9B85\n0xEC75\t0x9B87\n0xEC76\t0x9B7C\n0xEC77\t0x9B7E\n0xEC78\t0x9B7B\n0xEC79\t0x9B82\n0xEC7A\t0x9B93\n0xEC7B\t0x9B92\n0xEC7C\t0x9B90\n0xEC7D\t0x9B7A\n0xEC7E\t0x9B95\n0xECA1\t0x9B7D\n0xECA2\t0x9B88\n0xECA3\t0x9D25\n0xECA4\t0x9D17\n0xECA5\t0x9D20\n0xECA6\t0x9D1E\n0xECA7\t0x9D14\n0xECA8\t0x9D29\n0xECA9\t0x9D1D\n0xECAA\t0x9D18\n0xECAB\t0x9D22\n0xECAC\t0x9D10\n0xECAD\t0x9D19\n0xECAE\t0x9D1F\n0xECAF\t0x9E88\n0xECB0\t0x9E86\n0xECB1\t0x9E87\n0xECB2\t0x9EAE\n0xECB3\t0x9EAD\n0xECB4\t0x9ED5\n0xECB5\t0x9ED6\n0xECB6\t0x9EFA\n0xECB7\t0x9F12\n0xECB8\t0x9F3D\n0xECB9\t0x5126\n0xECBA\t0x5125\n0xECBB\t0x5122\n0xECBC\t0x5124\n0xECBD\t0x5120\n0xECBE\t0x5129\n0xECBF\t0x52F4\n0xECC0\t0x5693\n0xECC1\t0x568C\n0xECC2\t0x568D\n0xECC3\t0x5686\n0xECC4\t0x5684\n0xECC5\t0x5683\n0xECC6\t0x567E\n0xECC7\t0x5682\n0xECC8\t0x567F\n0xECC9\t0x5681\n0xECCA\t0x58D6\n0xECCB\t0x58D4\n0xECCC\t0x58CF\n0xECCD\t0x58D2\n0xECCE\t0x5B2D\n0xECCF\t0x5B25\n0xECD0\t0x5B32\n0xECD1\t0x5B23\n0xECD2\t0x5B2C\n0xECD3\t0x5B27\n0xECD4\t0x5B26\n0xECD5\t0x5B2F\n0xECD6\t0x5B2E\n0xECD7\t0x5B7B\n0xECD8\t0x5BF1\n0xECD9\t0x5BF2\n0xECDA\t0x5DB7\n0xECDB\t0x5E6C\n0xECDC\t0x5E6A\n0xECDD\t0x5FBE\n0xECDE\t0x5FBB\n0xECDF\t0x61C3\n0xECE0\t0x61B5\n0xECE1\t0x61BC\n0xECE2\t0x61E7\n0xECE3\t0x61E0\n0xECE4\t0x61E5\n0xECE5\t0x61E4\n0xECE6\t0x61E8\n0xECE7\t0x61DE\n0xECE8\t0x64EF\n0xECE9\t0x64E9\n0xECEA\t0x64E3\n0xECEB\t0x64EB\n0xECEC\t0x64E4\n0xECED\t0x64E8\n0xECEE\t0x6581\n0xECEF\t0x6580\n0xECF0\t0x65B6\n0xECF1\t0x65DA\n0xECF2\t0x66D2\n0xECF3\t0x6A8D\n0xECF4\t0x6A96\n0xECF5\t0x6A81\n0xECF6\t0x6AA5\n0xECF7\t0x6A89\n0xECF8\t0x6A9F\n0xECF9\t0x6A9B\n0xECFA\t0x6AA1\n0xECFB\t0x6A9E\n0xECFC\t0x6A87\n0xECFD\t0x6A93\n0xECFE\t0x6A8E\n0xED40\t0x6A95\n0xED41\t0x6A83\n0xED42\t0x6AA8\n0xED43\t0x6AA4\n0xED44\t0x6A91\n0xED45\t0x6A7F\n0xED46\t0x6AA6\n0xED47\t0x6A9A\n0xED48\t0x6A85\n0xED49\t0x6A8C\n0xED4A\t0x6A92\n0xED4B\t0x6B5B\n0xED4C\t0x6BAD\n0xED4D\t0x6C09\n0xED4E\t0x6FCC\n0xED4F\t0x6FA9\n0xED50\t0x6FF4\n0xED51\t0x6FD4\n0xED52\t0x6FE3\n0xED53\t0x6FDC\n0xED54\t0x6FED\n0xED55\t0x6FE7\n0xED56\t0x6FE6\n0xED57\t0x6FDE\n0xED58\t0x6FF2\n0xED59\t0x6FDD\n0xED5A\t0x6FE2\n0xED5B\t0x6FE8\n0xED5C\t0x71E1\n0xED5D\t0x71F1\n0xED5E\t0x71E8\n0xED5F\t0x71F2\n0xED60\t0x71E4\n0xED61\t0x71F0\n0xED62\t0x71E2\n0xED63\t0x7373\n0xED64\t0x736E\n0xED65\t0x736F\n0xED66\t0x7497\n0xED67\t0x74B2\n0xED68\t0x74AB\n0xED69\t0x7490\n0xED6A\t0x74AA\n0xED6B\t0x74AD\n0xED6C\t0x74B1\n0xED6D\t0x74A5\n0xED6E\t0x74AF\n0xED6F\t0x7510\n0xED70\t0x7511\n0xED71\t0x7512\n0xED72\t0x750F\n0xED73\t0x7584\n0xED74\t0x7643\n0xED75\t0x7648\n0xED76\t0x7649\n0xED77\t0x7647\n0xED78\t0x76A4\n0xED79\t0x76E9\n0xED7A\t0x77B5\n0xED7B\t0x77AB\n0xED7C\t0x77B2\n0xED7D\t0x77B7\n0xED7E\t0x77B6\n0xEDA1\t0x77B4\n0xEDA2\t0x77B1\n0xEDA3\t0x77A8\n0xEDA4\t0x77F0\n0xEDA5\t0x78F3\n0xEDA6\t0x78FD\n0xEDA7\t0x7902\n0xEDA8\t0x78FB\n0xEDA9\t0x78FC\n0xEDAA\t0x78F2\n0xEDAB\t0x7905\n0xEDAC\t0x78F9\n0xEDAD\t0x78FE\n0xEDAE\t0x7904\n0xEDAF\t0x79AB\n0xEDB0\t0x79A8\n0xEDB1\t0x7A5C\n0xEDB2\t0x7A5B\n0xEDB3\t0x7A56\n0xEDB4\t0x7A58\n0xEDB5\t0x7A54\n0xEDB6\t0x7A5A\n0xEDB7\t0x7ABE\n0xEDB8\t0x7AC0\n0xEDB9\t0x7AC1\n0xEDBA\t0x7C05\n0xEDBB\t0x7C0F\n0xEDBC\t0x7BF2\n0xEDBD\t0x7C00\n0xEDBE\t0x7BFF\n0xEDBF\t0x7BFB\n0xEDC0\t0x7C0E\n0xEDC1\t0x7BF4\n0xEDC2\t0x7C0B\n0xEDC3\t0x7BF3\n0xEDC4\t0x7C02\n0xEDC5\t0x7C09\n0xEDC6\t0x7C03\n0xEDC7\t0x7C01\n0xEDC8\t0x7BF8\n0xEDC9\t0x7BFD\n0xEDCA\t0x7C06\n0xEDCB\t0x7BF0\n0xEDCC\t0x7BF1\n0xEDCD\t0x7C10\n0xEDCE\t0x7C0A\n0xEDCF\t0x7CE8\n0xEDD0\t0x7E2D\n0xEDD1\t0x7E3C\n0xEDD2\t0x7E42\n0xEDD3\t0x7E33\n0xEDD4\t0x9848\n0xEDD5\t0x7E38\n0xEDD6\t0x7E2A\n0xEDD7\t0x7E49\n0xEDD8\t0x7E40\n0xEDD9\t0x7E47\n0xEDDA\t0x7E29\n0xEDDB\t0x7E4C\n0xEDDC\t0x7E30\n0xEDDD\t0x7E3B\n0xEDDE\t0x7E36\n0xEDDF\t0x7E44\n0xEDE0\t0x7E3A\n0xEDE1\t0x7F45\n0xEDE2\t0x7F7F\n0xEDE3\t0x7F7E\n0xEDE4\t0x7F7D\n0xEDE5\t0x7FF4\n0xEDE6\t0x7FF2\n0xEDE7\t0x802C\n0xEDE8\t0x81BB\n0xEDE9\t0x81C4\n0xEDEA\t0x81CC\n0xEDEB\t0x81CA\n0xEDEC\t0x81C5\n0xEDED\t0x81C7\n0xEDEE\t0x81BC\n0xEDEF\t0x81E9\n0xEDF0\t0x825B\n0xEDF1\t0x825A\n0xEDF2\t0x825C\n0xEDF3\t0x8583\n0xEDF4\t0x8580\n0xEDF5\t0x858F\n0xEDF6\t0x85A7\n0xEDF7\t0x8595\n0xEDF8\t0x85A0\n0xEDF9\t0x858B\n0xEDFA\t0x85A3\n0xEDFB\t0x857B\n0xEDFC\t0x85A4\n0xEDFD\t0x859A\n0xEDFE\t0x859E\n0xEE40\t0x8577\n0xEE41\t0x857C\n0xEE42\t0x8589\n0xEE43\t0x85A1\n0xEE44\t0x857A\n0xEE45\t0x8578\n0xEE46\t0x8557\n0xEE47\t0x858E\n0xEE48\t0x8596\n0xEE49\t0x8586\n0xEE4A\t0x858D\n0xEE4B\t0x8599\n0xEE4C\t0x859D\n0xEE4D\t0x8581\n0xEE4E\t0x85A2\n0xEE4F\t0x8582\n0xEE50\t0x8588\n0xEE51\t0x8585\n0xEE52\t0x8579\n0xEE53\t0x8576\n0xEE54\t0x8598\n0xEE55\t0x8590\n0xEE56\t0x859F\n0xEE57\t0x8668\n0xEE58\t0x87BE\n0xEE59\t0x87AA\n0xEE5A\t0x87AD\n0xEE5B\t0x87C5\n0xEE5C\t0x87B0\n0xEE5D\t0x87AC\n0xEE5E\t0x87B9\n0xEE5F\t0x87B5\n0xEE60\t0x87BC\n0xEE61\t0x87AE\n0xEE62\t0x87C9\n0xEE63\t0x87C3\n0xEE64\t0x87C2\n0xEE65\t0x87CC\n0xEE66\t0x87B7\n0xEE67\t0x87AF\n0xEE68\t0x87C4\n0xEE69\t0x87CA\n0xEE6A\t0x87B4\n0xEE6B\t0x87B6\n0xEE6C\t0x87BF\n0xEE6D\t0x87B8\n0xEE6E\t0x87BD\n0xEE6F\t0x87DE\n0xEE70\t0x87B2\n0xEE71\t0x8935\n0xEE72\t0x8933\n0xEE73\t0x893C\n0xEE74\t0x893E\n0xEE75\t0x8941\n0xEE76\t0x8952\n0xEE77\t0x8937\n0xEE78\t0x8942\n0xEE79\t0x89AD\n0xEE7A\t0x89AF\n0xEE7B\t0x89AE\n0xEE7C\t0x89F2\n0xEE7D\t0x89F3\n0xEE7E\t0x8B1E\n0xEEA1\t0x8B18\n0xEEA2\t0x8B16\n0xEEA3\t0x8B11\n0xEEA4\t0x8B05\n0xEEA5\t0x8B0B\n0xEEA6\t0x8B22\n0xEEA7\t0x8B0F\n0xEEA8\t0x8B12\n0xEEA9\t0x8B15\n0xEEAA\t0x8B07\n0xEEAB\t0x8B0D\n0xEEAC\t0x8B08\n0xEEAD\t0x8B06\n0xEEAE\t0x8B1C\n0xEEAF\t0x8B13\n0xEEB0\t0x8B1A\n0xEEB1\t0x8C4F\n0xEEB2\t0x8C70\n0xEEB3\t0x8C72\n0xEEB4\t0x8C71\n0xEEB5\t0x8C6F\n0xEEB6\t0x8C95\n0xEEB7\t0x8C94\n0xEEB8\t0x8CF9\n0xEEB9\t0x8D6F\n0xEEBA\t0x8E4E\n0xEEBB\t0x8E4D\n0xEEBC\t0x8E53\n0xEEBD\t0x8E50\n0xEEBE\t0x8E4C\n0xEEBF\t0x8E47\n0xEEC0\t0x8F43\n0xEEC1\t0x8F40\n0xEEC2\t0x9085\n0xEEC3\t0x907E\n0xEEC4\t0x9138\n0xEEC5\t0x919A\n0xEEC6\t0x91A2\n0xEEC7\t0x919B\n0xEEC8\t0x9199\n0xEEC9\t0x919F\n0xEECA\t0x91A1\n0xEECB\t0x919D\n0xEECC\t0x91A0\n0xEECD\t0x93A1\n0xEECE\t0x9383\n0xEECF\t0x93AF\n0xEED0\t0x9364\n0xEED1\t0x9356\n0xEED2\t0x9347\n0xEED3\t0x937C\n0xEED4\t0x9358\n0xEED5\t0x935C\n0xEED6\t0x9376\n0xEED7\t0x9349\n0xEED8\t0x9350\n0xEED9\t0x9351\n0xEEDA\t0x9360\n0xEEDB\t0x936D\n0xEEDC\t0x938F\n0xEEDD\t0x934C\n0xEEDE\t0x936A\n0xEEDF\t0x9379\n0xEEE0\t0x9357\n0xEEE1\t0x9355\n0xEEE2\t0x9352\n0xEEE3\t0x934F\n0xEEE4\t0x9371\n0xEEE5\t0x9377\n0xEEE6\t0x937B\n0xEEE7\t0x9361\n0xEEE8\t0x935E\n0xEEE9\t0x9363\n0xEEEA\t0x9367\n0xEEEB\t0x9380\n0xEEEC\t0x934E\n0xEEED\t0x9359\n0xEEEE\t0x95C7\n0xEEEF\t0x95C0\n0xEEF0\t0x95C9\n0xEEF1\t0x95C3\n0xEEF2\t0x95C5\n0xEEF3\t0x95B7\n0xEEF4\t0x96AE\n0xEEF5\t0x96B0\n0xEEF6\t0x96AC\n0xEEF7\t0x9720\n0xEEF8\t0x971F\n0xEEF9\t0x9718\n0xEEFA\t0x971D\n0xEEFB\t0x9719\n0xEEFC\t0x979A\n0xEEFD\t0x97A1\n0xEEFE\t0x979C\n0xEF40\t0x979E\n0xEF41\t0x979D\n0xEF42\t0x97D5\n0xEF43\t0x97D4\n0xEF44\t0x97F1\n0xEF45\t0x9841\n0xEF46\t0x9844\n0xEF47\t0x984A\n0xEF48\t0x9849\n0xEF49\t0x9845\n0xEF4A\t0x9843\n0xEF4B\t0x9925\n0xEF4C\t0x992B\n0xEF4D\t0x992C\n0xEF4E\t0x992A\n0xEF4F\t0x9933\n0xEF50\t0x9932\n0xEF51\t0x992F\n0xEF52\t0x992D\n0xEF53\t0x9931\n0xEF54\t0x9930\n0xEF55\t0x9998\n0xEF56\t0x99A3\n0xEF57\t0x99A1\n0xEF58\t0x9A02\n0xEF59\t0x99FA\n0xEF5A\t0x99F4\n0xEF5B\t0x99F7\n0xEF5C\t0x99F9\n0xEF5D\t0x99F8\n0xEF5E\t0x99F6\n0xEF5F\t0x99FB\n0xEF60\t0x99FD\n0xEF61\t0x99FE\n0xEF62\t0x99FC\n0xEF63\t0x9A03\n0xEF64\t0x9ABE\n0xEF65\t0x9AFE\n0xEF66\t0x9AFD\n0xEF67\t0x9B01\n0xEF68\t0x9AFC\n0xEF69\t0x9B48\n0xEF6A\t0x9B9A\n0xEF6B\t0x9BA8\n0xEF6C\t0x9B9E\n0xEF6D\t0x9B9B\n0xEF6E\t0x9BA6\n0xEF6F\t0x9BA1\n0xEF70\t0x9BA5\n0xEF71\t0x9BA4\n0xEF72\t0x9B86\n0xEF73\t0x9BA2\n0xEF74\t0x9BA0\n0xEF75\t0x9BAF\n0xEF76\t0x9D33\n0xEF77\t0x9D41\n0xEF78\t0x9D67\n0xEF79\t0x9D36\n0xEF7A\t0x9D2E\n0xEF7B\t0x9D2F\n0xEF7C\t0x9D31\n0xEF7D\t0x9D38\n0xEF7E\t0x9D30\n0xEFA1\t0x9D45\n0xEFA2\t0x9D42\n0xEFA3\t0x9D43\n0xEFA4\t0x9D3E\n0xEFA5\t0x9D37\n0xEFA6\t0x9D40\n0xEFA7\t0x9D3D\n0xEFA8\t0x7FF5\n0xEFA9\t0x9D2D\n0xEFAA\t0x9E8A\n0xEFAB\t0x9E89\n0xEFAC\t0x9E8D\n0xEFAD\t0x9EB0\n0xEFAE\t0x9EC8\n0xEFAF\t0x9EDA\n0xEFB0\t0x9EFB\n0xEFB1\t0x9EFF\n0xEFB2\t0x9F24\n0xEFB3\t0x9F23\n0xEFB4\t0x9F22\n0xEFB5\t0x9F54\n0xEFB6\t0x9FA0\n0xEFB7\t0x5131\n0xEFB8\t0x512D\n0xEFB9\t0x512E\n0xEFBA\t0x5698\n0xEFBB\t0x569C\n0xEFBC\t0x5697\n0xEFBD\t0x569A\n0xEFBE\t0x569D\n0xEFBF\t0x5699\n0xEFC0\t0x5970\n0xEFC1\t0x5B3C\n0xEFC2\t0x5C69\n0xEFC3\t0x5C6A\n0xEFC4\t0x5DC0\n0xEFC5\t0x5E6D\n0xEFC6\t0x5E6E\n0xEFC7\t0x61D8\n0xEFC8\t0x61DF\n0xEFC9\t0x61ED\n0xEFCA\t0x61EE\n0xEFCB\t0x61F1\n0xEFCC\t0x61EA\n0xEFCD\t0x61F0\n0xEFCE\t0x61EB\n0xEFCF\t0x61D6\n0xEFD0\t0x61E9\n0xEFD1\t0x64FF\n0xEFD2\t0x6504\n0xEFD3\t0x64FD\n0xEFD4\t0x64F8\n0xEFD5\t0x6501\n0xEFD6\t0x6503\n0xEFD7\t0x64FC\n0xEFD8\t0x6594\n0xEFD9\t0x65DB\n0xEFDA\t0x66DA\n0xEFDB\t0x66DB\n0xEFDC\t0x66D8\n0xEFDD\t0x6AC5\n0xEFDE\t0x6AB9\n0xEFDF\t0x6ABD\n0xEFE0\t0x6AE1\n0xEFE1\t0x6AC6\n0xEFE2\t0x6ABA\n0xEFE3\t0x6AB6\n0xEFE4\t0x6AB7\n0xEFE5\t0x6AC7\n0xEFE6\t0x6AB4\n0xEFE7\t0x6AAD\n0xEFE8\t0x6B5E\n0xEFE9\t0x6BC9\n0xEFEA\t0x6C0B\n0xEFEB\t0x7007\n0xEFEC\t0x700C\n0xEFED\t0x700D\n0xEFEE\t0x7001\n0xEFEF\t0x7005\n0xEFF0\t0x7014\n0xEFF1\t0x700E\n0xEFF2\t0x6FFF\n0xEFF3\t0x7000\n0xEFF4\t0x6FFB\n0xEFF5\t0x7026\n0xEFF6\t0x6FFC\n0xEFF7\t0x6FF7\n0xEFF8\t0x700A\n0xEFF9\t0x7201\n0xEFFA\t0x71FF\n0xEFFB\t0x71F9\n0xEFFC\t0x7203\n0xEFFD\t0x71FD\n0xEFFE\t0x7376\n0xF040\t0x74B8\n0xF041\t0x74C0\n0xF042\t0x74B5\n0xF043\t0x74C1\n0xF044\t0x74BE\n0xF045\t0x74B6\n0xF046\t0x74BB\n0xF047\t0x74C2\n0xF048\t0x7514\n0xF049\t0x7513\n0xF04A\t0x765C\n0xF04B\t0x7664\n0xF04C\t0x7659\n0xF04D\t0x7650\n0xF04E\t0x7653\n0xF04F\t0x7657\n0xF050\t0x765A\n0xF051\t0x76A6\n0xF052\t0x76BD\n0xF053\t0x76EC\n0xF054\t0x77C2\n0xF055\t0x77BA\n0xF056\t0x78FF\n0xF057\t0x790C\n0xF058\t0x7913\n0xF059\t0x7914\n0xF05A\t0x7909\n0xF05B\t0x7910\n0xF05C\t0x7912\n0xF05D\t0x7911\n0xF05E\t0x79AD\n0xF05F\t0x79AC\n0xF060\t0x7A5F\n0xF061\t0x7C1C\n0xF062\t0x7C29\n0xF063\t0x7C19\n0xF064\t0x7C20\n0xF065\t0x7C1F\n0xF066\t0x7C2D\n0xF067\t0x7C1D\n0xF068\t0x7C26\n0xF069\t0x7C28\n0xF06A\t0x7C22\n0xF06B\t0x7C25\n0xF06C\t0x7C30\n0xF06D\t0x7E5C\n0xF06E\t0x7E50\n0xF06F\t0x7E56\n0xF070\t0x7E63\n0xF071\t0x7E58\n0xF072\t0x7E62\n0xF073\t0x7E5F\n0xF074\t0x7E51\n0xF075\t0x7E60\n0xF076\t0x7E57\n0xF077\t0x7E53\n0xF078\t0x7FB5\n0xF079\t0x7FB3\n0xF07A\t0x7FF7\n0xF07B\t0x7FF8\n0xF07C\t0x8075\n0xF07D\t0x81D1\n0xF07E\t0x81D2\n0xF0A1\t0x81D0\n0xF0A2\t0x825F\n0xF0A3\t0x825E\n0xF0A4\t0x85B4\n0xF0A5\t0x85C6\n0xF0A6\t0x85C0\n0xF0A7\t0x85C3\n0xF0A8\t0x85C2\n0xF0A9\t0x85B3\n0xF0AA\t0x85B5\n0xF0AB\t0x85BD\n0xF0AC\t0x85C7\n0xF0AD\t0x85C4\n0xF0AE\t0x85BF\n0xF0AF\t0x85CB\n0xF0B0\t0x85CE\n0xF0B1\t0x85C8\n0xF0B2\t0x85C5\n0xF0B3\t0x85B1\n0xF0B4\t0x85B6\n0xF0B5\t0x85D2\n0xF0B6\t0x8624\n0xF0B7\t0x85B8\n0xF0B8\t0x85B7\n0xF0B9\t0x85BE\n0xF0BA\t0x8669\n0xF0BB\t0x87E7\n0xF0BC\t0x87E6\n0xF0BD\t0x87E2\n0xF0BE\t0x87DB\n0xF0BF\t0x87EB\n0xF0C0\t0x87EA\n0xF0C1\t0x87E5\n0xF0C2\t0x87DF\n0xF0C3\t0x87F3\n0xF0C4\t0x87E4\n0xF0C5\t0x87D4\n0xF0C6\t0x87DC\n0xF0C7\t0x87D3\n0xF0C8\t0x87ED\n0xF0C9\t0x87D8\n0xF0CA\t0x87E3\n0xF0CB\t0x87A4\n0xF0CC\t0x87D7\n0xF0CD\t0x87D9\n0xF0CE\t0x8801\n0xF0CF\t0x87F4\n0xF0D0\t0x87E8\n0xF0D1\t0x87DD\n0xF0D2\t0x8953\n0xF0D3\t0x894B\n0xF0D4\t0x894F\n0xF0D5\t0x894C\n0xF0D6\t0x8946\n0xF0D7\t0x8950\n0xF0D8\t0x8951\n0xF0D9\t0x8949\n0xF0DA\t0x8B2A\n0xF0DB\t0x8B27\n0xF0DC\t0x8B23\n0xF0DD\t0x8B33\n0xF0DE\t0x8B30\n0xF0DF\t0x8B35\n0xF0E0\t0x8B47\n0xF0E1\t0x8B2F\n0xF0E2\t0x8B3C\n0xF0E3\t0x8B3E\n0xF0E4\t0x8B31\n0xF0E5\t0x8B25\n0xF0E6\t0x8B37\n0xF0E7\t0x8B26\n0xF0E8\t0x8B36\n0xF0E9\t0x8B2E\n0xF0EA\t0x8B24\n0xF0EB\t0x8B3B\n0xF0EC\t0x8B3D\n0xF0ED\t0x8B3A\n0xF0EE\t0x8C42\n0xF0EF\t0x8C75\n0xF0F0\t0x8C99\n0xF0F1\t0x8C98\n0xF0F2\t0x8C97\n0xF0F3\t0x8CFE\n0xF0F4\t0x8D04\n0xF0F5\t0x8D02\n0xF0F6\t0x8D00\n0xF0F7\t0x8E5C\n0xF0F8\t0x8E62\n0xF0F9\t0x8E60\n0xF0FA\t0x8E57\n0xF0FB\t0x8E56\n0xF0FC\t0x8E5E\n0xF0FD\t0x8E65\n0xF0FE\t0x8E67\n0xF140\t0x8E5B\n0xF141\t0x8E5A\n0xF142\t0x8E61\n0xF143\t0x8E5D\n0xF144\t0x8E69\n0xF145\t0x8E54\n0xF146\t0x8F46\n0xF147\t0x8F47\n0xF148\t0x8F48\n0xF149\t0x8F4B\n0xF14A\t0x9128\n0xF14B\t0x913A\n0xF14C\t0x913B\n0xF14D\t0x913E\n0xF14E\t0x91A8\n0xF14F\t0x91A5\n0xF150\t0x91A7\n0xF151\t0x91AF\n0xF152\t0x91AA\n0xF153\t0x93B5\n0xF154\t0x938C\n0xF155\t0x9392\n0xF156\t0x93B7\n0xF157\t0x939B\n0xF158\t0x939D\n0xF159\t0x9389\n0xF15A\t0x93A7\n0xF15B\t0x938E\n0xF15C\t0x93AA\n0xF15D\t0x939E\n0xF15E\t0x93A6\n0xF15F\t0x9395\n0xF160\t0x9388\n0xF161\t0x9399\n0xF162\t0x939F\n0xF163\t0x938D\n0xF164\t0x93B1\n0xF165\t0x9391\n0xF166\t0x93B2\n0xF167\t0x93A4\n0xF168\t0x93A8\n0xF169\t0x93B4\n0xF16A\t0x93A3\n0xF16B\t0x93A5\n0xF16C\t0x95D2\n0xF16D\t0x95D3\n0xF16E\t0x95D1\n0xF16F\t0x96B3\n0xF170\t0x96D7\n0xF171\t0x96DA\n0xF172\t0x5DC2\n0xF173\t0x96DF\n0xF174\t0x96D8\n0xF175\t0x96DD\n0xF176\t0x9723\n0xF177\t0x9722\n0xF178\t0x9725\n0xF179\t0x97AC\n0xF17A\t0x97AE\n0xF17B\t0x97A8\n0xF17C\t0x97AB\n0xF17D\t0x97A4\n0xF17E\t0x97AA\n0xF1A1\t0x97A2\n0xF1A2\t0x97A5\n0xF1A3\t0x97D7\n0xF1A4\t0x97D9\n0xF1A5\t0x97D6\n0xF1A6\t0x97D8\n0xF1A7\t0x97FA\n0xF1A8\t0x9850\n0xF1A9\t0x9851\n0xF1AA\t0x9852\n0xF1AB\t0x98B8\n0xF1AC\t0x9941\n0xF1AD\t0x993C\n0xF1AE\t0x993A\n0xF1AF\t0x9A0F\n0xF1B0\t0x9A0B\n0xF1B1\t0x9A09\n0xF1B2\t0x9A0D\n0xF1B3\t0x9A04\n0xF1B4\t0x9A11\n0xF1B5\t0x9A0A\n0xF1B6\t0x9A05\n0xF1B7\t0x9A07\n0xF1B8\t0x9A06\n0xF1B9\t0x9AC0\n0xF1BA\t0x9ADC\n0xF1BB\t0x9B08\n0xF1BC\t0x9B04\n0xF1BD\t0x9B05\n0xF1BE\t0x9B29\n0xF1BF\t0x9B35\n0xF1C0\t0x9B4A\n0xF1C1\t0x9B4C\n0xF1C2\t0x9B4B\n0xF1C3\t0x9BC7\n0xF1C4\t0x9BC6\n0xF1C5\t0x9BC3\n0xF1C6\t0x9BBF\n0xF1C7\t0x9BC1\n0xF1C8\t0x9BB5\n0xF1C9\t0x9BB8\n0xF1CA\t0x9BD3\n0xF1CB\t0x9BB6\n0xF1CC\t0x9BC4\n0xF1CD\t0x9BB9\n0xF1CE\t0x9BBD\n0xF1CF\t0x9D5C\n0xF1D0\t0x9D53\n0xF1D1\t0x9D4F\n0xF1D2\t0x9D4A\n0xF1D3\t0x9D5B\n0xF1D4\t0x9D4B\n0xF1D5\t0x9D59\n0xF1D6\t0x9D56\n0xF1D7\t0x9D4C\n0xF1D8\t0x9D57\n0xF1D9\t0x9D52\n0xF1DA\t0x9D54\n0xF1DB\t0x9D5F\n0xF1DC\t0x9D58\n0xF1DD\t0x9D5A\n0xF1DE\t0x9E8E\n0xF1DF\t0x9E8C\n0xF1E0\t0x9EDF\n0xF1E1\t0x9F01\n0xF1E2\t0x9F00\n0xF1E3\t0x9F16\n0xF1E4\t0x9F25\n0xF1E5\t0x9F2B\n0xF1E6\t0x9F2A\n0xF1E7\t0x9F29\n0xF1E8\t0x9F28\n0xF1E9\t0x9F4C\n0xF1EA\t0x9F55\n0xF1EB\t0x5134\n0xF1EC\t0x5135\n0xF1ED\t0x5296\n0xF1EE\t0x52F7\n0xF1EF\t0x53B4\n0xF1F0\t0x56AB\n0xF1F1\t0x56AD\n0xF1F2\t0x56A6\n0xF1F3\t0x56A7\n0xF1F4\t0x56AA\n0xF1F5\t0x56AC\n0xF1F6\t0x58DA\n0xF1F7\t0x58DD\n0xF1F8\t0x58DB\n0xF1F9\t0x5912\n0xF1FA\t0x5B3D\n0xF1FB\t0x5B3E\n0xF1FC\t0x5B3F\n0xF1FD\t0x5DC3\n0xF1FE\t0x5E70\n0xF240\t0x5FBF\n0xF241\t0x61FB\n0xF242\t0x6507\n0xF243\t0x6510\n0xF244\t0x650D\n0xF245\t0x6509\n0xF246\t0x650C\n0xF247\t0x650E\n0xF248\t0x6584\n0xF249\t0x65DE\n0xF24A\t0x65DD\n0xF24B\t0x66DE\n0xF24C\t0x6AE7\n0xF24D\t0x6AE0\n0xF24E\t0x6ACC\n0xF24F\t0x6AD1\n0xF250\t0x6AD9\n0xF251\t0x6ACB\n0xF252\t0x6ADF\n0xF253\t0x6ADC\n0xF254\t0x6AD0\n0xF255\t0x6AEB\n0xF256\t0x6ACF\n0xF257\t0x6ACD\n0xF258\t0x6ADE\n0xF259\t0x6B60\n0xF25A\t0x6BB0\n0xF25B\t0x6C0C\n0xF25C\t0x7019\n0xF25D\t0x7027\n0xF25E\t0x7020\n0xF25F\t0x7016\n0xF260\t0x702B\n0xF261\t0x7021\n0xF262\t0x7022\n0xF263\t0x7023\n0xF264\t0x7029\n0xF265\t0x7017\n0xF266\t0x7024\n0xF267\t0x701C\n0xF268\t0x702A\n0xF269\t0x720C\n0xF26A\t0x720A\n0xF26B\t0x7207\n0xF26C\t0x7202\n0xF26D\t0x7205\n0xF26E\t0x72A5\n0xF26F\t0x72A6\n0xF270\t0x72A4\n0xF271\t0x72A3\n0xF272\t0x72A1\n0xF273\t0x74CB\n0xF274\t0x74C5\n0xF275\t0x74B7\n0xF276\t0x74C3\n0xF277\t0x7516\n0xF278\t0x7660\n0xF279\t0x77C9\n0xF27A\t0x77CA\n0xF27B\t0x77C4\n0xF27C\t0x77F1\n0xF27D\t0x791D\n0xF27E\t0x791B\n0xF2A1\t0x7921\n0xF2A2\t0x791C\n0xF2A3\t0x7917\n0xF2A4\t0x791E\n0xF2A5\t0x79B0\n0xF2A6\t0x7A67\n0xF2A7\t0x7A68\n0xF2A8\t0x7C33\n0xF2A9\t0x7C3C\n0xF2AA\t0x7C39\n0xF2AB\t0x7C2C\n0xF2AC\t0x7C3B\n0xF2AD\t0x7CEC\n0xF2AE\t0x7CEA\n0xF2AF\t0x7E76\n0xF2B0\t0x7E75\n0xF2B1\t0x7E78\n0xF2B2\t0x7E70\n0xF2B3\t0x7E77\n0xF2B4\t0x7E6F\n0xF2B5\t0x7E7A\n0xF2B6\t0x7E72\n0xF2B7\t0x7E74\n0xF2B8\t0x7E68\n0xF2B9\t0x7F4B\n0xF2BA\t0x7F4A\n0xF2BB\t0x7F83\n0xF2BC\t0x7F86\n0xF2BD\t0x7FB7\n0xF2BE\t0x7FFD\n0xF2BF\t0x7FFE\n0xF2C0\t0x8078\n0xF2C1\t0x81D7\n0xF2C2\t0x81D5\n0xF2C3\t0x8264\n0xF2C4\t0x8261\n0xF2C5\t0x8263\n0xF2C6\t0x85EB\n0xF2C7\t0x85F1\n0xF2C8\t0x85ED\n0xF2C9\t0x85D9\n0xF2CA\t0x85E1\n0xF2CB\t0x85E8\n0xF2CC\t0x85DA\n0xF2CD\t0x85D7\n0xF2CE\t0x85EC\n0xF2CF\t0x85F2\n0xF2D0\t0x85F8\n0xF2D1\t0x85D8\n0xF2D2\t0x85DF\n0xF2D3\t0x85E3\n0xF2D4\t0x85DC\n0xF2D5\t0x85D1\n0xF2D6\t0x85F0\n0xF2D7\t0x85E6\n0xF2D8\t0x85EF\n0xF2D9\t0x85DE\n0xF2DA\t0x85E2\n0xF2DB\t0x8800\n0xF2DC\t0x87FA\n0xF2DD\t0x8803\n0xF2DE\t0x87F6\n0xF2DF\t0x87F7\n0xF2E0\t0x8809\n0xF2E1\t0x880C\n0xF2E2\t0x880B\n0xF2E3\t0x8806\n0xF2E4\t0x87FC\n0xF2E5\t0x8808\n0xF2E6\t0x87FF\n0xF2E7\t0x880A\n0xF2E8\t0x8802\n0xF2E9\t0x8962\n0xF2EA\t0x895A\n0xF2EB\t0x895B\n0xF2EC\t0x8957\n0xF2ED\t0x8961\n0xF2EE\t0x895C\n0xF2EF\t0x8958\n0xF2F0\t0x895D\n0xF2F1\t0x8959\n0xF2F2\t0x8988\n0xF2F3\t0x89B7\n0xF2F4\t0x89B6\n0xF2F5\t0x89F6\n0xF2F6\t0x8B50\n0xF2F7\t0x8B48\n0xF2F8\t0x8B4A\n0xF2F9\t0x8B40\n0xF2FA\t0x8B53\n0xF2FB\t0x8B56\n0xF2FC\t0x8B54\n0xF2FD\t0x8B4B\n0xF2FE\t0x8B55\n0xF340\t0x8B51\n0xF341\t0x8B42\n0xF342\t0x8B52\n0xF343\t0x8B57\n0xF344\t0x8C43\n0xF345\t0x8C77\n0xF346\t0x8C76\n0xF347\t0x8C9A\n0xF348\t0x8D06\n0xF349\t0x8D07\n0xF34A\t0x8D09\n0xF34B\t0x8DAC\n0xF34C\t0x8DAA\n0xF34D\t0x8DAD\n0xF34E\t0x8DAB\n0xF34F\t0x8E6D\n0xF350\t0x8E78\n0xF351\t0x8E73\n0xF352\t0x8E6A\n0xF353\t0x8E6F\n0xF354\t0x8E7B\n0xF355\t0x8EC2\n0xF356\t0x8F52\n0xF357\t0x8F51\n0xF358\t0x8F4F\n0xF359\t0x8F50\n0xF35A\t0x8F53\n0xF35B\t0x8FB4\n0xF35C\t0x9140\n0xF35D\t0x913F\n0xF35E\t0x91B0\n0xF35F\t0x91AD\n0xF360\t0x93DE\n0xF361\t0x93C7\n0xF362\t0x93CF\n0xF363\t0x93C2\n0xF364\t0x93DA\n0xF365\t0x93D0\n0xF366\t0x93F9\n0xF367\t0x93EC\n0xF368\t0x93CC\n0xF369\t0x93D9\n0xF36A\t0x93A9\n0xF36B\t0x93E6\n0xF36C\t0x93CA\n0xF36D\t0x93D4\n0xF36E\t0x93EE\n0xF36F\t0x93E3\n0xF370\t0x93D5\n0xF371\t0x93C4\n0xF372\t0x93CE\n0xF373\t0x93C0\n0xF374\t0x93D2\n0xF375\t0x93E7\n0xF376\t0x957D\n0xF377\t0x95DA\n0xF378\t0x95DB\n0xF379\t0x96E1\n0xF37A\t0x9729\n0xF37B\t0x972B\n0xF37C\t0x972C\n0xF37D\t0x9728\n0xF37E\t0x9726\n0xF3A1\t0x97B3\n0xF3A2\t0x97B7\n0xF3A3\t0x97B6\n0xF3A4\t0x97DD\n0xF3A5\t0x97DE\n0xF3A6\t0x97DF\n0xF3A7\t0x985C\n0xF3A8\t0x9859\n0xF3A9\t0x985D\n0xF3AA\t0x9857\n0xF3AB\t0x98BF\n0xF3AC\t0x98BD\n0xF3AD\t0x98BB\n0xF3AE\t0x98BE\n0xF3AF\t0x9948\n0xF3B0\t0x9947\n0xF3B1\t0x9943\n0xF3B2\t0x99A6\n0xF3B3\t0x99A7\n0xF3B4\t0x9A1A\n0xF3B5\t0x9A15\n0xF3B6\t0x9A25\n0xF3B7\t0x9A1D\n0xF3B8\t0x9A24\n0xF3B9\t0x9A1B\n0xF3BA\t0x9A22\n0xF3BB\t0x9A20\n0xF3BC\t0x9A27\n0xF3BD\t0x9A23\n0xF3BE\t0x9A1E\n0xF3BF\t0x9A1C\n0xF3C0\t0x9A14\n0xF3C1\t0x9AC2\n0xF3C2\t0x9B0B\n0xF3C3\t0x9B0A\n0xF3C4\t0x9B0E\n0xF3C5\t0x9B0C\n0xF3C6\t0x9B37\n0xF3C7\t0x9BEA\n0xF3C8\t0x9BEB\n0xF3C9\t0x9BE0\n0xF3CA\t0x9BDE\n0xF3CB\t0x9BE4\n0xF3CC\t0x9BE6\n0xF3CD\t0x9BE2\n0xF3CE\t0x9BF0\n0xF3CF\t0x9BD4\n0xF3D0\t0x9BD7\n0xF3D1\t0x9BEC\n0xF3D2\t0x9BDC\n0xF3D3\t0x9BD9\n0xF3D4\t0x9BE5\n0xF3D5\t0x9BD5\n0xF3D6\t0x9BE1\n0xF3D7\t0x9BDA\n0xF3D8\t0x9D77\n0xF3D9\t0x9D81\n0xF3DA\t0x9D8A\n0xF3DB\t0x9D84\n0xF3DC\t0x9D88\n0xF3DD\t0x9D71\n0xF3DE\t0x9D80\n0xF3DF\t0x9D78\n0xF3E0\t0x9D86\n0xF3E1\t0x9D8B\n0xF3E2\t0x9D8C\n0xF3E3\t0x9D7D\n0xF3E4\t0x9D6B\n0xF3E5\t0x9D74\n0xF3E6\t0x9D75\n0xF3E7\t0x9D70\n0xF3E8\t0x9D69\n0xF3E9\t0x9D85\n0xF3EA\t0x9D73\n0xF3EB\t0x9D7B\n0xF3EC\t0x9D82\n0xF3ED\t0x9D6F\n0xF3EE\t0x9D79\n0xF3EF\t0x9D7F\n0xF3F0\t0x9D87\n0xF3F1\t0x9D68\n0xF3F2\t0x9E94\n0xF3F3\t0x9E91\n0xF3F4\t0x9EC0\n0xF3F5\t0x9EFC\n0xF3F6\t0x9F2D\n0xF3F7\t0x9F40\n0xF3F8\t0x9F41\n0xF3F9\t0x9F4D\n0xF3FA\t0x9F56\n0xF3FB\t0x9F57\n0xF3FC\t0x9F58\n0xF3FD\t0x5337\n0xF3FE\t0x56B2\n0xF440\t0x56B5\n0xF441\t0x56B3\n0xF442\t0x58E3\n0xF443\t0x5B45\n0xF444\t0x5DC6\n0xF445\t0x5DC7\n0xF446\t0x5EEE\n0xF447\t0x5EEF\n0xF448\t0x5FC0\n0xF449\t0x5FC1\n0xF44A\t0x61F9\n0xF44B\t0x6517\n0xF44C\t0x6516\n0xF44D\t0x6515\n0xF44E\t0x6513\n0xF44F\t0x65DF\n0xF450\t0x66E8\n0xF451\t0x66E3\n0xF452\t0x66E4\n0xF453\t0x6AF3\n0xF454\t0x6AF0\n0xF455\t0x6AEA\n0xF456\t0x6AE8\n0xF457\t0x6AF9\n0xF458\t0x6AF1\n0xF459\t0x6AEE\n0xF45A\t0x6AEF\n0xF45B\t0x703C\n0xF45C\t0x7035\n0xF45D\t0x702F\n0xF45E\t0x7037\n0xF45F\t0x7034\n0xF460\t0x7031\n0xF461\t0x7042\n0xF462\t0x7038\n0xF463\t0x703F\n0xF464\t0x703A\n0xF465\t0x7039\n0xF466\t0x7040\n0xF467\t0x703B\n0xF468\t0x7033\n0xF469\t0x7041\n0xF46A\t0x7213\n0xF46B\t0x7214\n0xF46C\t0x72A8\n0xF46D\t0x737D\n0xF46E\t0x737C\n0xF46F\t0x74BA\n0xF470\t0x76AB\n0xF471\t0x76AA\n0xF472\t0x76BE\n0xF473\t0x76ED\n0xF474\t0x77CC\n0xF475\t0x77CE\n0xF476\t0x77CF\n0xF477\t0x77CD\n0xF478\t0x77F2\n0xF479\t0x7925\n0xF47A\t0x7923\n0xF47B\t0x7927\n0xF47C\t0x7928\n0xF47D\t0x7924\n0xF47E\t0x7929\n0xF4A1\t0x79B2\n0xF4A2\t0x7A6E\n0xF4A3\t0x7A6C\n0xF4A4\t0x7A6D\n0xF4A5\t0x7AF7\n0xF4A6\t0x7C49\n0xF4A7\t0x7C48\n0xF4A8\t0x7C4A\n0xF4A9\t0x7C47\n0xF4AA\t0x7C45\n0xF4AB\t0x7CEE\n0xF4AC\t0x7E7B\n0xF4AD\t0x7E7E\n0xF4AE\t0x7E81\n0xF4AF\t0x7E80\n0xF4B0\t0x7FBA\n0xF4B1\t0x7FFF\n0xF4B2\t0x8079\n0xF4B3\t0x81DB\n0xF4B4\t0x81D9\n0xF4B5\t0x820B\n0xF4B6\t0x8268\n0xF4B7\t0x8269\n0xF4B8\t0x8622\n0xF4B9\t0x85FF\n0xF4BA\t0x8601\n0xF4BB\t0x85FE\n0xF4BC\t0x861B\n0xF4BD\t0x8600\n0xF4BE\t0x85F6\n0xF4BF\t0x8604\n0xF4C0\t0x8609\n0xF4C1\t0x8605\n0xF4C2\t0x860C\n0xF4C3\t0x85FD\n0xF4C4\t0x8819\n0xF4C5\t0x8810\n0xF4C6\t0x8811\n0xF4C7\t0x8817\n0xF4C8\t0x8813\n0xF4C9\t0x8816\n0xF4CA\t0x8963\n0xF4CB\t0x8966\n0xF4CC\t0x89B9\n0xF4CD\t0x89F7\n0xF4CE\t0x8B60\n0xF4CF\t0x8B6A\n0xF4D0\t0x8B5D\n0xF4D1\t0x8B68\n0xF4D2\t0x8B63\n0xF4D3\t0x8B65\n0xF4D4\t0x8B67\n0xF4D5\t0x8B6D\n0xF4D6\t0x8DAE\n0xF4D7\t0x8E86\n0xF4D8\t0x8E88\n0xF4D9\t0x8E84\n0xF4DA\t0x8F59\n0xF4DB\t0x8F56\n0xF4DC\t0x8F57\n0xF4DD\t0x8F55\n0xF4DE\t0x8F58\n0xF4DF\t0x8F5A\n0xF4E0\t0x908D\n0xF4E1\t0x9143\n0xF4E2\t0x9141\n0xF4E3\t0x91B7\n0xF4E4\t0x91B5\n0xF4E5\t0x91B2\n0xF4E6\t0x91B3\n0xF4E7\t0x940B\n0xF4E8\t0x9413\n0xF4E9\t0x93FB\n0xF4EA\t0x9420\n0xF4EB\t0x940F\n0xF4EC\t0x9414\n0xF4ED\t0x93FE\n0xF4EE\t0x9415\n0xF4EF\t0x9410\n0xF4F0\t0x9428\n0xF4F1\t0x9419\n0xF4F2\t0x940D\n0xF4F3\t0x93F5\n0xF4F4\t0x9400\n0xF4F5\t0x93F7\n0xF4F6\t0x9407\n0xF4F7\t0x940E\n0xF4F8\t0x9416\n0xF4F9\t0x9412\n0xF4FA\t0x93FA\n0xF4FB\t0x9409\n0xF4FC\t0x93F8\n0xF4FD\t0x940A\n0xF4FE\t0x93FF\n0xF540\t0x93FC\n0xF541\t0x940C\n0xF542\t0x93F6\n0xF543\t0x9411\n0xF544\t0x9406\n0xF545\t0x95DE\n0xF546\t0x95E0\n0xF547\t0x95DF\n0xF548\t0x972E\n0xF549\t0x972F\n0xF54A\t0x97B9\n0xF54B\t0x97BB\n0xF54C\t0x97FD\n0xF54D\t0x97FE\n0xF54E\t0x9860\n0xF54F\t0x9862\n0xF550\t0x9863\n0xF551\t0x985F\n0xF552\t0x98C1\n0xF553\t0x98C2\n0xF554\t0x9950\n0xF555\t0x994E\n0xF556\t0x9959\n0xF557\t0x994C\n0xF558\t0x994B\n0xF559\t0x9953\n0xF55A\t0x9A32\n0xF55B\t0x9A34\n0xF55C\t0x9A31\n0xF55D\t0x9A2C\n0xF55E\t0x9A2A\n0xF55F\t0x9A36\n0xF560\t0x9A29\n0xF561\t0x9A2E\n0xF562\t0x9A38\n0xF563\t0x9A2D\n0xF564\t0x9AC7\n0xF565\t0x9ACA\n0xF566\t0x9AC6\n0xF567\t0x9B10\n0xF568\t0x9B12\n0xF569\t0x9B11\n0xF56A\t0x9C0B\n0xF56B\t0x9C08\n0xF56C\t0x9BF7\n0xF56D\t0x9C05\n0xF56E\t0x9C12\n0xF56F\t0x9BF8\n0xF570\t0x9C40\n0xF571\t0x9C07\n0xF572\t0x9C0E\n0xF573\t0x9C06\n0xF574\t0x9C17\n0xF575\t0x9C14\n0xF576\t0x9C09\n0xF577\t0x9D9F\n0xF578\t0x9D99\n0xF579\t0x9DA4\n0xF57A\t0x9D9D\n0xF57B\t0x9D92\n0xF57C\t0x9D98\n0xF57D\t0x9D90\n0xF57E\t0x9D9B\n0xF5A1\t0x9DA0\n0xF5A2\t0x9D94\n0xF5A3\t0x9D9C\n0xF5A4\t0x9DAA\n0xF5A5\t0x9D97\n0xF5A6\t0x9DA1\n0xF5A7\t0x9D9A\n0xF5A8\t0x9DA2\n0xF5A9\t0x9DA8\n0xF5AA\t0x9D9E\n0xF5AB\t0x9DA3\n0xF5AC\t0x9DBF\n0xF5AD\t0x9DA9\n0xF5AE\t0x9D96\n0xF5AF\t0x9DA6\n0xF5B0\t0x9DA7\n0xF5B1\t0x9E99\n0xF5B2\t0x9E9B\n0xF5B3\t0x9E9A\n0xF5B4\t0x9EE5\n0xF5B5\t0x9EE4\n0xF5B6\t0x9EE7\n0xF5B7\t0x9EE6\n0xF5B8\t0x9F30\n0xF5B9\t0x9F2E\n0xF5BA\t0x9F5B\n0xF5BB\t0x9F60\n0xF5BC\t0x9F5E\n0xF5BD\t0x9F5D\n0xF5BE\t0x9F59\n0xF5BF\t0x9F91\n0xF5C0\t0x513A\n0xF5C1\t0x5139\n0xF5C2\t0x5298\n0xF5C3\t0x5297\n0xF5C4\t0x56C3\n0xF5C5\t0x56BD\n0xF5C6\t0x56BE\n0xF5C7\t0x5B48\n0xF5C8\t0x5B47\n0xF5C9\t0x5DCB\n0xF5CA\t0x5DCF\n0xF5CB\t0x5EF1\n0xF5CC\t0x61FD\n0xF5CD\t0x651B\n0xF5CE\t0x6B02\n0xF5CF\t0x6AFC\n0xF5D0\t0x6B03\n0xF5D1\t0x6AF8\n0xF5D2\t0x6B00\n0xF5D3\t0x7043\n0xF5D4\t0x7044\n0xF5D5\t0x704A\n0xF5D6\t0x7048\n0xF5D7\t0x7049\n0xF5D8\t0x7045\n0xF5D9\t0x7046\n0xF5DA\t0x721D\n0xF5DB\t0x721A\n0xF5DC\t0x7219\n0xF5DD\t0x737E\n0xF5DE\t0x7517\n0xF5DF\t0x766A\n0xF5E0\t0x77D0\n0xF5E1\t0x792D\n0xF5E2\t0x7931\n0xF5E3\t0x792F\n0xF5E4\t0x7C54\n0xF5E5\t0x7C53\n0xF5E6\t0x7CF2\n0xF5E7\t0x7E8A\n0xF5E8\t0x7E87\n0xF5E9\t0x7E88\n0xF5EA\t0x7E8B\n0xF5EB\t0x7E86\n0xF5EC\t0x7E8D\n0xF5ED\t0x7F4D\n0xF5EE\t0x7FBB\n0xF5EF\t0x8030\n0xF5F0\t0x81DD\n0xF5F1\t0x8618\n0xF5F2\t0x862A\n0xF5F3\t0x8626\n0xF5F4\t0x861F\n0xF5F5\t0x8623\n0xF5F6\t0x861C\n0xF5F7\t0x8619\n0xF5F8\t0x8627\n0xF5F9\t0x862E\n0xF5FA\t0x8621\n0xF5FB\t0x8620\n0xF5FC\t0x8629\n0xF5FD\t0x861E\n0xF5FE\t0x8625\n0xF640\t0x8829\n0xF641\t0x881D\n0xF642\t0x881B\n0xF643\t0x8820\n0xF644\t0x8824\n0xF645\t0x881C\n0xF646\t0x882B\n0xF647\t0x884A\n0xF648\t0x896D\n0xF649\t0x8969\n0xF64A\t0x896E\n0xF64B\t0x896B\n0xF64C\t0x89FA\n0xF64D\t0x8B79\n0xF64E\t0x8B78\n0xF64F\t0x8B45\n0xF650\t0x8B7A\n0xF651\t0x8B7B\n0xF652\t0x8D10\n0xF653\t0x8D14\n0xF654\t0x8DAF\n0xF655\t0x8E8E\n0xF656\t0x8E8C\n0xF657\t0x8F5E\n0xF658\t0x8F5B\n0xF659\t0x8F5D\n0xF65A\t0x9146\n0xF65B\t0x9144\n0xF65C\t0x9145\n0xF65D\t0x91B9\n0xF65E\t0x943F\n0xF65F\t0x943B\n0xF660\t0x9436\n0xF661\t0x9429\n0xF662\t0x943D\n0xF663\t0x943C\n0xF664\t0x9430\n0xF665\t0x9439\n0xF666\t0x942A\n0xF667\t0x9437\n0xF668\t0x942C\n0xF669\t0x9440\n0xF66A\t0x9431\n0xF66B\t0x95E5\n0xF66C\t0x95E4\n0xF66D\t0x95E3\n0xF66E\t0x9735\n0xF66F\t0x973A\n0xF670\t0x97BF\n0xF671\t0x97E1\n0xF672\t0x9864\n0xF673\t0x98C9\n0xF674\t0x98C6\n0xF675\t0x98C0\n0xF676\t0x9958\n0xF677\t0x9956\n0xF678\t0x9A39\n0xF679\t0x9A3D\n0xF67A\t0x9A46\n0xF67B\t0x9A44\n0xF67C\t0x9A42\n0xF67D\t0x9A41\n0xF67E\t0x9A3A\n0xF6A1\t0x9A3F\n0xF6A2\t0x9ACD\n0xF6A3\t0x9B15\n0xF6A4\t0x9B17\n0xF6A5\t0x9B18\n0xF6A6\t0x9B16\n0xF6A7\t0x9B3A\n0xF6A8\t0x9B52\n0xF6A9\t0x9C2B\n0xF6AA\t0x9C1D\n0xF6AB\t0x9C1C\n0xF6AC\t0x9C2C\n0xF6AD\t0x9C23\n0xF6AE\t0x9C28\n0xF6AF\t0x9C29\n0xF6B0\t0x9C24\n0xF6B1\t0x9C21\n0xF6B2\t0x9DB7\n0xF6B3\t0x9DB6\n0xF6B4\t0x9DBC\n0xF6B5\t0x9DC1\n0xF6B6\t0x9DC7\n0xF6B7\t0x9DCA\n0xF6B8\t0x9DCF\n0xF6B9\t0x9DBE\n0xF6BA\t0x9DC5\n0xF6BB\t0x9DC3\n0xF6BC\t0x9DBB\n0xF6BD\t0x9DB5\n0xF6BE\t0x9DCE\n0xF6BF\t0x9DB9\n0xF6C0\t0x9DBA\n0xF6C1\t0x9DAC\n0xF6C2\t0x9DC8\n0xF6C3\t0x9DB1\n0xF6C4\t0x9DAD\n0xF6C5\t0x9DCC\n0xF6C6\t0x9DB3\n0xF6C7\t0x9DCD\n0xF6C8\t0x9DB2\n0xF6C9\t0x9E7A\n0xF6CA\t0x9E9C\n0xF6CB\t0x9EEB\n0xF6CC\t0x9EEE\n0xF6CD\t0x9EED\n0xF6CE\t0x9F1B\n0xF6CF\t0x9F18\n0xF6D0\t0x9F1A\n0xF6D1\t0x9F31\n0xF6D2\t0x9F4E\n0xF6D3\t0x9F65\n0xF6D4\t0x9F64\n0xF6D5\t0x9F92\n0xF6D6\t0x4EB9\n0xF6D7\t0x56C6\n0xF6D8\t0x56C5\n0xF6D9\t0x56CB\n0xF6DA\t0x5971\n0xF6DB\t0x5B4B\n0xF6DC\t0x5B4C\n0xF6DD\t0x5DD5\n0xF6DE\t0x5DD1\n0xF6DF\t0x5EF2\n0xF6E0\t0x6521\n0xF6E1\t0x6520\n0xF6E2\t0x6526\n0xF6E3\t0x6522\n0xF6E4\t0x6B0B\n0xF6E5\t0x6B08\n0xF6E6\t0x6B09\n0xF6E7\t0x6C0D\n0xF6E8\t0x7055\n0xF6E9\t0x7056\n0xF6EA\t0x7057\n0xF6EB\t0x7052\n0xF6EC\t0x721E\n0xF6ED\t0x721F\n0xF6EE\t0x72A9\n0xF6EF\t0x737F\n0xF6F0\t0x74D8\n0xF6F1\t0x74D5\n0xF6F2\t0x74D9\n0xF6F3\t0x74D7\n0xF6F4\t0x766D\n0xF6F5\t0x76AD\n0xF6F6\t0x7935\n0xF6F7\t0x79B4\n0xF6F8\t0x7A70\n0xF6F9\t0x7A71\n0xF6FA\t0x7C57\n0xF6FB\t0x7C5C\n0xF6FC\t0x7C59\n0xF6FD\t0x7C5B\n0xF6FE\t0x7C5A\n0xF740\t0x7CF4\n0xF741\t0x7CF1\n0xF742\t0x7E91\n0xF743\t0x7F4F\n0xF744\t0x7F87\n0xF745\t0x81DE\n0xF746\t0x826B\n0xF747\t0x8634\n0xF748\t0x8635\n0xF749\t0x8633\n0xF74A\t0x862C\n0xF74B\t0x8632\n0xF74C\t0x8636\n0xF74D\t0x882C\n0xF74E\t0x8828\n0xF74F\t0x8826\n0xF750\t0x882A\n0xF751\t0x8825\n0xF752\t0x8971\n0xF753\t0x89BF\n0xF754\t0x89BE\n0xF755\t0x89FB\n0xF756\t0x8B7E\n0xF757\t0x8B84\n0xF758\t0x8B82\n0xF759\t0x8B86\n0xF75A\t0x8B85\n0xF75B\t0x8B7F\n0xF75C\t0x8D15\n0xF75D\t0x8E95\n0xF75E\t0x8E94\n0xF75F\t0x8E9A\n0xF760\t0x8E92\n0xF761\t0x8E90\n0xF762\t0x8E96\n0xF763\t0x8E97\n0xF764\t0x8F60\n0xF765\t0x8F62\n0xF766\t0x9147\n0xF767\t0x944C\n0xF768\t0x9450\n0xF769\t0x944A\n0xF76A\t0x944B\n0xF76B\t0x944F\n0xF76C\t0x9447\n0xF76D\t0x9445\n0xF76E\t0x9448\n0xF76F\t0x9449\n0xF770\t0x9446\n0xF771\t0x973F\n0xF772\t0x97E3\n0xF773\t0x986A\n0xF774\t0x9869\n0xF775\t0x98CB\n0xF776\t0x9954\n0xF777\t0x995B\n0xF778\t0x9A4E\n0xF779\t0x9A53\n0xF77A\t0x9A54\n0xF77B\t0x9A4C\n0xF77C\t0x9A4F\n0xF77D\t0x9A48\n0xF77E\t0x9A4A\n0xF7A1\t0x9A49\n0xF7A2\t0x9A52\n0xF7A3\t0x9A50\n0xF7A4\t0x9AD0\n0xF7A5\t0x9B19\n0xF7A6\t0x9B2B\n0xF7A7\t0x9B3B\n0xF7A8\t0x9B56\n0xF7A9\t0x9B55\n0xF7AA\t0x9C46\n0xF7AB\t0x9C48\n0xF7AC\t0x9C3F\n0xF7AD\t0x9C44\n0xF7AE\t0x9C39\n0xF7AF\t0x9C33\n0xF7B0\t0x9C41\n0xF7B1\t0x9C3C\n0xF7B2\t0x9C37\n0xF7B3\t0x9C34\n0xF7B4\t0x9C32\n0xF7B5\t0x9C3D\n0xF7B6\t0x9C36\n0xF7B7\t0x9DDB\n0xF7B8\t0x9DD2\n0xF7B9\t0x9DDE\n0xF7BA\t0x9DDA\n0xF7BB\t0x9DCB\n0xF7BC\t0x9DD0\n0xF7BD\t0x9DDC\n0xF7BE\t0x9DD1\n0xF7BF\t0x9DDF\n0xF7C0\t0x9DE9\n0xF7C1\t0x9DD9\n0xF7C2\t0x9DD8\n0xF7C3\t0x9DD6\n0xF7C4\t0x9DF5\n0xF7C5\t0x9DD5\n0xF7C6\t0x9DDD\n0xF7C7\t0x9EB6\n0xF7C8\t0x9EF0\n0xF7C9\t0x9F35\n0xF7CA\t0x9F33\n0xF7CB\t0x9F32\n0xF7CC\t0x9F42\n0xF7CD\t0x9F6B\n0xF7CE\t0x9F95\n0xF7CF\t0x9FA2\n0xF7D0\t0x513D\n0xF7D1\t0x5299\n0xF7D2\t0x58E8\n0xF7D3\t0x58E7\n0xF7D4\t0x5972\n0xF7D5\t0x5B4D\n0xF7D6\t0x5DD8\n0xF7D7\t0x882F\n0xF7D8\t0x5F4F\n0xF7D9\t0x6201\n0xF7DA\t0x6203\n0xF7DB\t0x6204\n0xF7DC\t0x6529\n0xF7DD\t0x6525\n0xF7DE\t0x6596\n0xF7DF\t0x66EB\n0xF7E0\t0x6B11\n0xF7E1\t0x6B12\n0xF7E2\t0x6B0F\n0xF7E3\t0x6BCA\n0xF7E4\t0x705B\n0xF7E5\t0x705A\n0xF7E6\t0x7222\n0xF7E7\t0x7382\n0xF7E8\t0x7381\n0xF7E9\t0x7383\n0xF7EA\t0x7670\n0xF7EB\t0x77D4\n0xF7EC\t0x7C67\n0xF7ED\t0x7C66\n0xF7EE\t0x7E95\n0xF7EF\t0x826C\n0xF7F0\t0x863A\n0xF7F1\t0x8640\n0xF7F2\t0x8639\n0xF7F3\t0x863C\n0xF7F4\t0x8631\n0xF7F5\t0x863B\n0xF7F6\t0x863E\n0xF7F7\t0x8830\n0xF7F8\t0x8832\n0xF7F9\t0x882E\n0xF7FA\t0x8833\n0xF7FB\t0x8976\n0xF7FC\t0x8974\n0xF7FD\t0x8973\n0xF7FE\t0x89FE\n0xF840\t0x8B8C\n0xF841\t0x8B8E\n0xF842\t0x8B8B\n0xF843\t0x8B88\n0xF844\t0x8C45\n0xF845\t0x8D19\n0xF846\t0x8E98\n0xF847\t0x8F64\n0xF848\t0x8F63\n0xF849\t0x91BC\n0xF84A\t0x9462\n0xF84B\t0x9455\n0xF84C\t0x945D\n0xF84D\t0x9457\n0xF84E\t0x945E\n0xF84F\t0x97C4\n0xF850\t0x97C5\n0xF851\t0x9800\n0xF852\t0x9A56\n0xF853\t0x9A59\n0xF854\t0x9B1E\n0xF855\t0x9B1F\n0xF856\t0x9B20\n0xF857\t0x9C52\n0xF858\t0x9C58\n0xF859\t0x9C50\n0xF85A\t0x9C4A\n0xF85B\t0x9C4D\n0xF85C\t0x9C4B\n0xF85D\t0x9C55\n0xF85E\t0x9C59\n0xF85F\t0x9C4C\n0xF860\t0x9C4E\n0xF861\t0x9DFB\n0xF862\t0x9DF7\n0xF863\t0x9DEF\n0xF864\t0x9DE3\n0xF865\t0x9DEB\n0xF866\t0x9DF8\n0xF867\t0x9DE4\n0xF868\t0x9DF6\n0xF869\t0x9DE1\n0xF86A\t0x9DEE\n0xF86B\t0x9DE6\n0xF86C\t0x9DF2\n0xF86D\t0x9DF0\n0xF86E\t0x9DE2\n0xF86F\t0x9DEC\n0xF870\t0x9DF4\n0xF871\t0x9DF3\n0xF872\t0x9DE8\n0xF873\t0x9DED\n0xF874\t0x9EC2\n0xF875\t0x9ED0\n0xF876\t0x9EF2\n0xF877\t0x9EF3\n0xF878\t0x9F06\n0xF879\t0x9F1C\n0xF87A\t0x9F38\n0xF87B\t0x9F37\n0xF87C\t0x9F36\n0xF87D\t0x9F43\n0xF87E\t0x9F4F\n0xF8A1\t0x9F71\n0xF8A2\t0x9F70\n0xF8A3\t0x9F6E\n0xF8A4\t0x9F6F\n0xF8A5\t0x56D3\n0xF8A6\t0x56CD\n0xF8A7\t0x5B4E\n0xF8A8\t0x5C6D\n0xF8A9\t0x652D\n0xF8AA\t0x66ED\n0xF8AB\t0x66EE\n0xF8AC\t0x6B13\n0xF8AD\t0x705F\n0xF8AE\t0x7061\n0xF8AF\t0x705D\n0xF8B0\t0x7060\n0xF8B1\t0x7223\n0xF8B2\t0x74DB\n0xF8B3\t0x74E5\n0xF8B4\t0x77D5\n0xF8B5\t0x7938\n0xF8B6\t0x79B7\n0xF8B7\t0x79B6\n0xF8B8\t0x7C6A\n0xF8B9\t0x7E97\n0xF8BA\t0x7F89\n0xF8BB\t0x826D\n0xF8BC\t0x8643\n0xF8BD\t0x8838\n0xF8BE\t0x8837\n0xF8BF\t0x8835\n0xF8C0\t0x884B\n0xF8C1\t0x8B94\n0xF8C2\t0x8B95\n0xF8C3\t0x8E9E\n0xF8C4\t0x8E9F\n0xF8C5\t0x8EA0\n0xF8C6\t0x8E9D\n0xF8C7\t0x91BE\n0xF8C8\t0x91BD\n0xF8C9\t0x91C2\n0xF8CA\t0x946B\n0xF8CB\t0x9468\n0xF8CC\t0x9469\n0xF8CD\t0x96E5\n0xF8CE\t0x9746\n0xF8CF\t0x9743\n0xF8D0\t0x9747\n0xF8D1\t0x97C7\n0xF8D2\t0x97E5\n0xF8D3\t0x9A5E\n0xF8D4\t0x9AD5\n0xF8D5\t0x9B59\n0xF8D6\t0x9C63\n0xF8D7\t0x9C67\n0xF8D8\t0x9C66\n0xF8D9\t0x9C62\n0xF8DA\t0x9C5E\n0xF8DB\t0x9C60\n0xF8DC\t0x9E02\n0xF8DD\t0x9DFE\n0xF8DE\t0x9E07\n0xF8DF\t0x9E03\n0xF8E0\t0x9E06\n0xF8E1\t0x9E05\n0xF8E2\t0x9E00\n0xF8E3\t0x9E01\n0xF8E4\t0x9E09\n0xF8E5\t0x9DFF\n0xF8E6\t0x9DFD\n0xF8E7\t0x9E04\n0xF8E8\t0x9EA0\n0xF8E9\t0x9F1E\n0xF8EA\t0x9F46\n0xF8EB\t0x9F74\n0xF8EC\t0x9F75\n0xF8ED\t0x9F76\n0xF8EE\t0x56D4\n0xF8EF\t0x652E\n0xF8F0\t0x65B8\n0xF8F1\t0x6B18\n0xF8F2\t0x6B19\n0xF8F3\t0x6B17\n0xF8F4\t0x6B1A\n0xF8F5\t0x7062\n0xF8F6\t0x7226\n0xF8F7\t0x72AA\n0xF8F8\t0x77D8\n0xF8F9\t0x77D9\n0xF8FA\t0x7939\n0xF8FB\t0x7C69\n0xF8FC\t0x7C6B\n0xF8FD\t0x7CF6\n0xF8FE\t0x7E9A\n0xF940\t0x7E98\n0xF941\t0x7E9B\n0xF942\t0x7E99\n0xF943\t0x81E0\n0xF944\t0x81E1\n0xF945\t0x8646\n0xF946\t0x8647\n0xF947\t0x8648\n0xF948\t0x8979\n0xF949\t0x897A\n0xF94A\t0x897C\n0xF94B\t0x897B\n0xF94C\t0x89FF\n0xF94D\t0x8B98\n0xF94E\t0x8B99\n0xF94F\t0x8EA5\n0xF950\t0x8EA4\n0xF951\t0x8EA3\n0xF952\t0x946E\n0xF953\t0x946D\n0xF954\t0x946F\n0xF955\t0x9471\n0xF956\t0x9473\n0xF957\t0x9749\n0xF958\t0x9872\n0xF959\t0x995F\n0xF95A\t0x9C68\n0xF95B\t0x9C6E\n0xF95C\t0x9C6D\n0xF95D\t0x9E0B\n0xF95E\t0x9E0D\n0xF95F\t0x9E10\n0xF960\t0x9E0F\n0xF961\t0x9E12\n0xF962\t0x9E11\n0xF963\t0x9EA1\n0xF964\t0x9EF5\n0xF965\t0x9F09\n0xF966\t0x9F47\n0xF967\t0x9F78\n0xF968\t0x9F7B\n0xF969\t0x9F7A\n0xF96A\t0x9F79\n0xF96B\t0x571E\n0xF96C\t0x7066\n0xF96D\t0x7C6F\n0xF96E\t0x883C\n0xF96F\t0x8DB2\n0xF970\t0x8EA6\n0xF971\t0x91C3\n0xF972\t0x9474\n0xF973\t0x9478\n0xF974\t0x9476\n0xF975\t0x9475\n0xF976\t0x9A60\n0xF977\t0x9C74\n0xF978\t0x9C73\n0xF979\t0x9C71\n0xF97A\t0x9C75\n0xF97B\t0x9E14\n0xF97C\t0x9E13\n0xF97D\t0x9EF6\n0xF97E\t0x9F0A\n0xF9A1\t0x9FA4\n0xF9A2\t0x7068\n0xF9A3\t0x7065\n0xF9A4\t0x7CF7\n0xF9A5\t0x866A\n0xF9A6\t0x883E\n0xF9A7\t0x883D\n0xF9A8\t0x883F\n0xF9A9\t0x8B9E\n0xF9AA\t0x8C9C\n0xF9AB\t0x8EA9\n0xF9AC\t0x8EC9\n0xF9AD\t0x974B\n0xF9AE\t0x9873\n0xF9AF\t0x9874\n0xF9B0\t0x98CC\n0xF9B1\t0x9961\n0xF9B2\t0x99AB\n0xF9B3\t0x9A64\n0xF9B4\t0x9A66\n0xF9B5\t0x9A67\n0xF9B6\t0x9B24\n0xF9B7\t0x9E15\n0xF9B8\t0x9E17\n0xF9B9\t0x9F48\n0xF9BA\t0x6207\n0xF9BB\t0x6B1E\n0xF9BC\t0x7227\n0xF9BD\t0x864C\n0xF9BE\t0x8EA8\n0xF9BF\t0x9482\n0xF9C0\t0x9480\n0xF9C1\t0x9481\n0xF9C2\t0x9A69\n0xF9C3\t0x9A68\n0xF9C4\t0x9B2E\n0xF9C5\t0x9E19\n0xF9C6\t0x7229\n0xF9C7\t0x864B\n0xF9C8\t0x8B9F\n0xF9C9\t0x9483\n0xF9CA\t0x9C79\n0xF9CB\t0x9EB7\n0xF9CC\t0x7675\n0xF9CD\t0x9A6B\n0xF9CE\t0x9C7A\n0xF9CF\t0x9E1D\n0xF9D0\t0x7069\n0xF9D1\t0x706A\n0xF9D2\t0x9EA4\n0xF9D3\t0x9F7E\n0xF9D4\t0x9F49\n0xF9D5\t0x9F98\n0xF9D6\t0x7881\n0xF9D7\t0x92B9\n0xF9D8\t0x88CF\n0xF9D9\t0x58BB\n0xF9DA\t0x6052\n0xF9DB\t0x7CA7\n0xF9DC\t0x5AFA\n0xF9DD\t0x2554\n0xF9DE\t0x2566\n0xF9DF\t0x2557\n0xF9E0\t0x2560\n0xF9E1\t0x256C\n0xF9E2\t0x2563\n0xF9E3\t0x255A\n0xF9E4\t0x2569\n0xF9E5\t0x255D\n0xF9E6\t0x2552\n0xF9E7\t0x2564\n0xF9E8\t0x2555\n0xF9E9\t0x255E\n0xF9EA\t0x256A\n0xF9EB\t0x2561\n0xF9EC\t0x2558\n0xF9ED\t0x2567\n0xF9EE\t0x255B\n0xF9EF\t0x2553\n0xF9F0\t0x2565\n0xF9F1\t0x2556\n0xF9F2\t0x255F\n0xF9F3\t0x256B\n0xF9F4\t0x2562\n0xF9F5\t0x2559\n0xF9F6\t0x2568\n0xF9F7\t0x255C\n0xF9F8\t0x2551\n0xF9F9\t0x2550\n0xF9FA\t0x256D\n0xF9FB\t0x256E\n0xF9FC\t0x2570\n0xF9FD\t0x256F\n0xF9FE\t0xFFED\n0xFA40\t0x20547\n0xFA41\t0x92DB\n0xFA42\t0x205DF\n0xFA43\t0x23FC5\n0xFA44\t0x854C\n0xFA45\t0x42B5\n0xFA46\t0x73EF\n0xFA47\t0x51B5\n0xFA48\t0x3649\n0xFA49\t0x24942\n0xFA4A\t0x289E4\n0xFA4B\t0x9344\n0xFA4C\t0x219DB\n0xFA4D\t0x82EE\n0xFA4E\t0x23CC8\n0xFA4F\t0x783C\n0xFA50\t0x6744\n0xFA51\t0x62DF\n0xFA52\t0x24933\n0xFA53\t0x289AA\n0xFA54\t0x202A0\n0xFA55\t0x26BB3\n0xFA56\t0x21305\n0xFA57\t0x4FAB\n0xFA58\t0x224ED\n0xFA59\t0x5008\n0xFA5A\t0x26D29\n0xFA5B\t0x27A84\n0xFA5C\t0x23600\n0xFA5D\t0x24AB1\n0xFA5E\t0x22513\n0xFA60\t0x2037E\n0xFA61\t0x5FA4\n0xFA62\t0x20380\n0xFA63\t0x20347\n0xFA64\t0x6EDB\n0xFA65\t0x2041F\n0xFA67\t0x5101\n0xFA68\t0x347A\n0xFA69\t0x510E\n0xFA6A\t0x986C\n0xFA6B\t0x3743\n0xFA6C\t0x8416\n0xFA6D\t0x249A4\n0xFA6E\t0x20487\n0xFA6F\t0x5160\n0xFA70\t0x233B4\n0xFA71\t0x516A\n0xFA72\t0x20BFF\n0xFA73\t0x220FC\n0xFA74\t0x202E5\n0xFA75\t0x22530\n0xFA76\t0x2058E\n0xFA77\t0x23233\n0xFA78\t0x21983\n0xFA79\t0x5B82\n0xFA7A\t0x877D\n0xFA7B\t0x205B3\n0xFA7C\t0x23C99\n0xFA7D\t0x51B2\n0xFA7E\t0x51B8\n0xFAA1\t0x9D34\n0xFAA2\t0x51C9\n0xFAA3\t0x51CF\n0xFAA4\t0x51D1\n0xFAA5\t0x3CDC\n0xFAA6\t0x51D3\n0xFAA7\t0x24AA6\n0xFAA8\t0x51B3\n0xFAA9\t0x51E2\n0xFAAA\t0x5342\n0xFAAB\t0x51ED\n0xFAAC\t0x83CD\n0xFAAD\t0x693E\n0xFAAE\t0x2372D\n0xFAAF\t0x5F7B\n0xFAB0\t0x520B\n0xFAB1\t0x5226\n0xFAB2\t0x523C\n0xFAB3\t0x52B5\n0xFAB4\t0x5257\n0xFAB5\t0x5294\n0xFAB6\t0x52B9\n0xFAB7\t0x52C5\n0xFAB8\t0x7C15\n0xFAB9\t0x8542\n0xFABA\t0x52E0\n0xFABB\t0x860D\n0xFABC\t0x26B13\n0xFABE\t0x28ADE\n0xFABF\t0x5549\n0xFAC0\t0x6ED9\n0xFAC1\t0x23F80\n0xFAC2\t0x20954\n0xFAC3\t0x23FEC\n0xFAC4\t0x5333\n0xFAC6\t0x20BE2\n0xFAC7\t0x6CCB\n0xFAC8\t0x21726\n0xFAC9\t0x681B\n0xFACA\t0x73D5\n0xFACB\t0x604A\n0xFACC\t0x3EAA\n0xFACD\t0x38CC\n0xFACE\t0x216E8\n0xFACF\t0x71DD\n0xFAD0\t0x44A2\n0xFAD1\t0x536D\n0xFAD2\t0x5374\n0xFAD3\t0x286AB\n0xFAD4\t0x537E\n0xFAD6\t0x21596\n0xFAD7\t0x21613\n0xFAD8\t0x77E6\n0xFAD9\t0x5393\n0xFADA\t0x28A9B\n0xFADB\t0x53A0\n0xFADC\t0x53AB\n0xFADD\t0x53AE\n0xFADE\t0x73A7\n0xFADF\t0x25772\n0xFAE0\t0x3F59\n0xFAE1\t0x739C\n0xFAE2\t0x53C1\n0xFAE3\t0x53C5\n0xFAE4\t0x6C49\n0xFAE5\t0x4E49\n0xFAE6\t0x57FE\n0xFAE7\t0x53D9\n0xFAE8\t0x3AAB\n0xFAE9\t0x20B8F\n0xFAEA\t0x53E0\n0xFAEB\t0x23FEB\n0xFAEC\t0x22DA3\n0xFAED\t0x53F6\n0xFAEE\t0x20C77\n0xFAEF\t0x5413\n0xFAF0\t0x7079\n0xFAF1\t0x552B\n0xFAF2\t0x6657\n0xFAF3\t0x6D5B\n0xFAF4\t0x546D\n0xFAF5\t0x26B53\n0xFAF6\t0x20D74\n0xFAF7\t0x555D\n0xFAF8\t0x548F\n0xFAF9\t0x54A4\n0xFAFA\t0x47A6\n0xFAFB\t0x2170D\n0xFAFC\t0x20EDD\n0xFAFD\t0x3DB4\n0xFAFE\t0x20D4D\n0xFB40\t0x289BC\n0xFB41\t0x22698\n0xFB42\t0x5547\n0xFB43\t0x4CED\n0xFB44\t0x542F\n0xFB45\t0x7417\n0xFB46\t0x5586\n0xFB47\t0x55A9\n0xFB49\t0x218D7\n0xFB4A\t0x2403A\n0xFB4B\t0x4552\n0xFB4C\t0x24435\n0xFB4D\t0x66B3\n0xFB4E\t0x210B4\n0xFB4F\t0x5637\n0xFB50\t0x66CD\n0xFB51\t0x2328A\n0xFB52\t0x66A4\n0xFB53\t0x66AD\n0xFB54\t0x564D\n0xFB55\t0x564F\n0xFB56\t0x78F1\n0xFB57\t0x56F1\n0xFB58\t0x9787\n0xFB59\t0x53FE\n0xFB5A\t0x5700\n0xFB5B\t0x56EF\n0xFB5C\t0x56ED\n0xFB5D\t0x28B66\n0xFB5E\t0x3623\n0xFB5F\t0x2124F\n0xFB60\t0x5746\n0xFB61\t0x241A5\n0xFB62\t0x6C6E\n0xFB63\t0x708B\n0xFB64\t0x5742\n0xFB65\t0x36B1\n0xFB66\t0x26C7E\n0xFB67\t0x57E6\n0xFB68\t0x21416\n0xFB69\t0x5803\n0xFB6A\t0x21454\n0xFB6B\t0x24363\n0xFB6C\t0x5826\n0xFB6D\t0x24BF5\n0xFB6E\t0x585C\n0xFB6F\t0x58AA\n0xFB70\t0x3561\n0xFB71\t0x58E0\n0xFB72\t0x58DC\n0xFB73\t0x2123C\n0xFB74\t0x58FB\n0xFB75\t0x5BFF\n0xFB76\t0x5743\n0xFB77\t0x2A150\n0xFB78\t0x24278\n0xFB79\t0x93D3\n0xFB7A\t0x35A1\n0xFB7B\t0x591F\n0xFB7C\t0x68A6\n0xFB7D\t0x36C3\n0xFB7E\t0x6E59\n0xFBA1\t0x2163E\n0xFBA2\t0x5A24\n0xFBA3\t0x5553\n0xFBA4\t0x21692\n0xFBA5\t0x8505\n0xFBA6\t0x59C9\n0xFBA7\t0x20D4E\n0xFBA8\t0x26C81\n0xFBA9\t0x26D2A\n0xFBAA\t0x217DC\n0xFBAB\t0x59D9\n0xFBAC\t0x217FB\n0xFBAD\t0x217B2\n0xFBAE\t0x26DA6\n0xFBAF\t0x6D71\n0xFBB0\t0x21828\n0xFBB1\t0x216D5\n0xFBB2\t0x59F9\n0xFBB3\t0x26E45\n0xFBB4\t0x5AAB\n0xFBB5\t0x5A63\n0xFBB6\t0x36E6\n0xFBB7\t0x249A9\n0xFBB9\t0x3708\n0xFBBA\t0x5A96\n0xFBBB\t0x7465\n0xFBBC\t0x5AD3\n0xFBBD\t0x26FA1\n0xFBBE\t0x22554\n0xFBBF\t0x3D85\n0xFBC0\t0x21911\n0xFBC1\t0x3732\n0xFBC2\t0x216B8\n0xFBC3\t0x5E83\n0xFBC4\t0x52D0\n0xFBC5\t0x5B76\n0xFBC6\t0x6588\n0xFBC7\t0x5B7C\n0xFBC8\t0x27A0E\n0xFBC9\t0x4004\n0xFBCA\t0x485D\n0xFBCB\t0x20204\n0xFBCC\t0x5BD5\n0xFBCD\t0x6160\n0xFBCE\t0x21A34\n0xFBCF\t0x259CC\n0xFBD0\t0x205A5\n0xFBD1\t0x5BF3\n0xFBD2\t0x5B9D\n0xFBD3\t0x4D10\n0xFBD4\t0x5C05\n0xFBD5\t0x21B44\n0xFBD6\t0x5C13\n0xFBD7\t0x73CE\n0xFBD8\t0x5C14\n0xFBD9\t0x21CA5\n0xFBDA\t0x26B28\n0xFBDB\t0x5C49\n0xFBDC\t0x48DD\n0xFBDD\t0x5C85\n0xFBDE\t0x5CE9\n0xFBDF\t0x5CEF\n0xFBE0\t0x5D8B\n0xFBE1\t0x21DF9\n0xFBE2\t0x21E37\n0xFBE3\t0x5D10\n0xFBE4\t0x5D18\n0xFBE5\t0x5D46\n0xFBE6\t0x21EA4\n0xFBE7\t0x5CBA\n0xFBE8\t0x5DD7\n0xFBE9\t0x82FC\n0xFBEA\t0x382D\n0xFBEB\t0x24901\n0xFBEC\t0x22049\n0xFBED\t0x22173\n0xFBEE\t0x8287\n0xFBEF\t0x3836\n0xFBF0\t0x3BC2\n0xFBF1\t0x5E2E\n0xFBF2\t0x6A8A\n0xFBF4\t0x5E7A\n0xFBF5\t0x244BC\n0xFBF6\t0x20CD3\n0xFBF7\t0x53A6\n0xFBF8\t0x4EB7\n0xFBFA\t0x53A8\n0xFBFB\t0x21771\n0xFBFC\t0x5E09\n0xFBFD\t0x5EF4\n0xFBFE\t0x28482\n0xFC40\t0x5EF9\n0xFC41\t0x5EFB\n0xFC42\t0x38A0\n0xFC43\t0x5EFC\n0xFC44\t0x683E\n0xFC45\t0x941B\n0xFC46\t0x5F0D\n0xFC47\t0x201C1\n0xFC48\t0x2F894\n0xFC49\t0x3ADE\n0xFC4A\t0x48AE\n0xFC4B\t0x2133A\n0xFC4C\t0x5F3A\n0xFC4D\t0x26888\n0xFC4E\t0x223D0\n0xFC50\t0x22471\n0xFC51\t0x5F63\n0xFC52\t0x97BD\n0xFC53\t0x26E6E\n0xFC54\t0x5F72\n0xFC55\t0x9340\n0xFC56\t0x28A36\n0xFC57\t0x5FA7\n0xFC58\t0x5DB6\n0xFC59\t0x3D5F\n0xFC5A\t0x25250\n0xFC5B\t0x21F6A\n0xFC5C\t0x270F8\n0xFC5D\t0x22668\n0xFC5E\t0x91D6\n0xFC5F\t0x2029E\n0xFC60\t0x28A29\n0xFC61\t0x6031\n0xFC62\t0x6685\n0xFC63\t0x21877\n0xFC64\t0x3963\n0xFC65\t0x3DC7\n0xFC66\t0x3639\n0xFC67\t0x5790\n0xFC68\t0x227B4\n0xFC69\t0x7971\n0xFC6A\t0x3E40\n0xFC6B\t0x609E\n0xFC6D\t0x60B3\n0xFC6E\t0x24982\n0xFC6F\t0x2498F\n0xFC70\t0x27A53\n0xFC71\t0x74A4\n0xFC72\t0x50E1\n0xFC73\t0x5AA0\n0xFC74\t0x6164\n0xFC75\t0x8424\n0xFC76\t0x6142\n0xFC77\t0x2F8A6\n0xFC78\t0x26ED2\n0xFC79\t0x6181\n0xFC7A\t0x51F4\n0xFC7B\t0x20656\n0xFC7C\t0x6187\n0xFC7D\t0x5BAA\n0xFC7E\t0x23FB7\n0xFCA1\t0x2285F\n0xFCA2\t0x61D3\n0xFCA3\t0x28B9D\n0xFCA4\t0x2995D\n0xFCA5\t0x61D0\n0xFCA6\t0x3932\n0xFCA7\t0x22980\n0xFCA8\t0x228C1\n0xFCA9\t0x6023\n0xFCAA\t0x615C\n0xFCAB\t0x651E\n0xFCAC\t0x638B\n0xFCAD\t0x20118\n0xFCAE\t0x62C5\n0xFCAF\t0x21770\n0xFCB0\t0x62D5\n0xFCB1\t0x22E0D\n0xFCB2\t0x636C\n0xFCB3\t0x249DF\n0xFCB4\t0x3A17\n0xFCB5\t0x6438\n0xFCB6\t0x63F8\n0xFCB7\t0x2138E\n0xFCB8\t0x217FC\n0xFCBA\t0x6F8A\n0xFCBB\t0x22E36\n0xFCBC\t0x9814\n0xFCBD\t0x2408C\n0xFCBE\t0x2571D\n0xFCBF\t0x64E1\n0xFCC0\t0x64E5\n0xFCC1\t0x947B\n0xFCC2\t0x3A66\n0xFCC3\t0x643A\n0xFCC4\t0x3A57\n0xFCC5\t0x654D\n0xFCC6\t0x6F16\n0xFCC7\t0x24A28\n0xFCC8\t0x24A23\n0xFCC9\t0x6585\n0xFCCA\t0x656D\n0xFCCB\t0x655F\n0xFCCC\t0x2307E\n0xFCCD\t0x65B5\n0xFCCE\t0x24940\n0xFCCF\t0x4B37\n0xFCD0\t0x65D1\n0xFCD1\t0x40D8\n0xFCD2\t0x21829\n0xFCD3\t0x65E0\n0xFCD4\t0x65E3\n0xFCD5\t0x5FDF\n0xFCD6\t0x23400\n0xFCD7\t0x6618\n0xFCD8\t0x231F7\n0xFCD9\t0x231F8\n0xFCDA\t0x6644\n0xFCDB\t0x231A4\n0xFCDC\t0x231A5\n0xFCDD\t0x664B\n0xFCDE\t0x20E75\n0xFCDF\t0x6667\n0xFCE0\t0x251E6\n0xFCE1\t0x6673\n0xFCE3\t0x21E3D\n0xFCE4\t0x23231\n0xFCE5\t0x285F4\n0xFCE6\t0x231C8\n0xFCE7\t0x25313\n0xFCE8\t0x77C5\n0xFCE9\t0x228F7\n0xFCEA\t0x99A4\n0xFCEB\t0x6702\n0xFCEC\t0x2439C\n0xFCED\t0x24A21\n0xFCEE\t0x3B2B\n0xFCEF\t0x69FA\n0xFCF0\t0x237C2\n0xFCF2\t0x6767\n0xFCF3\t0x6762\n0xFCF4\t0x241CD\n0xFCF5\t0x290ED\n0xFCF6\t0x67D7\n0xFCF7\t0x44E9\n0xFCF8\t0x6822\n0xFCF9\t0x6E50\n0xFCFA\t0x923C\n0xFCFB\t0x6801\n0xFCFC\t0x233E6\n0xFCFD\t0x26DA0\n0xFCFE\t0x685D\n0xFD40\t0x2346F\n0xFD41\t0x69E1\n0xFD42\t0x6A0B\n0xFD43\t0x28ADF\n0xFD44\t0x6973\n0xFD45\t0x68C3\n0xFD46\t0x235CD\n0xFD47\t0x6901\n0xFD48\t0x6900\n0xFD49\t0x3D32\n0xFD4A\t0x3A01\n0xFD4B\t0x2363C\n0xFD4C\t0x3B80\n0xFD4D\t0x67AC\n0xFD4E\t0x6961\n0xFD4F\t0x28A4A\n0xFD50\t0x42FC\n0xFD51\t0x6936\n0xFD52\t0x6998\n0xFD53\t0x3BA1\n0xFD54\t0x203C9\n0xFD55\t0x8363\n0xFD56\t0x5090\n0xFD57\t0x69F9\n0xFD58\t0x23659\n0xFD59\t0x2212A\n0xFD5A\t0x6A45\n0xFD5B\t0x23703\n0xFD5C\t0x6A9D\n0xFD5D\t0x3BF3\n0xFD5E\t0x67B1\n0xFD5F\t0x6AC8\n0xFD60\t0x2919C\n0xFD61\t0x3C0D\n0xFD62\t0x6B1D\n0xFD63\t0x20923\n0xFD64\t0x60DE\n0xFD65\t0x6B35\n0xFD66\t0x6B74\n0xFD67\t0x227CD\n0xFD68\t0x6EB5\n0xFD69\t0x23ADB\n0xFD6A\t0x203B5\n0xFD6B\t0x21958\n0xFD6C\t0x3740\n0xFD6D\t0x5421\n0xFD6E\t0x23B5A\n0xFD6F\t0x6BE1\n0xFD70\t0x23EFC\n0xFD71\t0x6BDC\n0xFD72\t0x6C37\n0xFD73\t0x2248B\n0xFD74\t0x248F1\n0xFD75\t0x26B51\n0xFD76\t0x6C5A\n0xFD77\t0x8226\n0xFD78\t0x6C79\n0xFD79\t0x23DBC\n0xFD7A\t0x44C5\n0xFD7B\t0x23DBD\n0xFD7C\t0x241A4\n0xFD7D\t0x2490C\n0xFD7E\t0x24900\n0xFDA1\t0x23CC9\n0xFDA2\t0x36E5\n0xFDA3\t0x3CEB\n0xFDA4\t0x20D32\n0xFDA5\t0x9B83\n0xFDA6\t0x231F9\n0xFDA7\t0x22491\n0xFDA8\t0x7F8F\n0xFDA9\t0x6837\n0xFDAA\t0x26D25\n0xFDAB\t0x26DA1\n0xFDAC\t0x26DEB\n0xFDAD\t0x6D96\n0xFDAE\t0x6D5C\n0xFDAF\t0x6E7C\n0xFDB0\t0x6F04\n0xFDB1\t0x2497F\n0xFDB2\t0x24085\n0xFDB3\t0x26E72\n0xFDB4\t0x8533\n0xFDB5\t0x26F74\n0xFDB6\t0x51C7\n0xFDB9\t0x842E\n0xFDBA\t0x28B21\n0xFDBC\t0x23E2F\n0xFDBD\t0x7453\n0xFDBE\t0x23F82\n0xFDBF\t0x79CC\n0xFDC0\t0x6E4F\n0xFDC1\t0x5A91\n0xFDC2\t0x2304B\n0xFDC3\t0x6FF8\n0xFDC4\t0x370D\n0xFDC5\t0x6F9D\n0xFDC6\t0x23E30\n0xFDC7\t0x6EFA\n0xFDC8\t0x21497\n0xFDC9\t0x2403D\n0xFDCA\t0x4555\n0xFDCB\t0x93F0\n0xFDCC\t0x6F44\n0xFDCD\t0x6F5C\n0xFDCE\t0x3D4E\n0xFDCF\t0x6F74\n0xFDD0\t0x29170\n0xFDD1\t0x3D3B\n0xFDD2\t0x6F9F\n0xFDD3\t0x24144\n0xFDD4\t0x6FD3\n0xFDD5\t0x24091\n0xFDD6\t0x24155\n0xFDD7\t0x24039\n0xFDD8\t0x23FF0\n0xFDD9\t0x23FB4\n0xFDDA\t0x2413F\n0xFDDB\t0x51DF\n0xFDDC\t0x24156\n0xFDDD\t0x24157\n0xFDDE\t0x24140\n0xFDDF\t0x261DD\n0xFDE0\t0x704B\n0xFDE1\t0x707E\n0xFDE2\t0x70A7\n0xFDE3\t0x7081\n0xFDE4\t0x70CC\n0xFDE5\t0x70D5\n0xFDE6\t0x70D6\n0xFDE7\t0x70DF\n0xFDE8\t0x4104\n0xFDE9\t0x3DE8\n0xFDEA\t0x71B4\n0xFDEB\t0x7196\n0xFDEC\t0x24277\n0xFDED\t0x712B\n0xFDEE\t0x7145\n0xFDEF\t0x5A88\n0xFDF0\t0x714A\n0xFDF2\t0x5C9C\n0xFDF3\t0x24365\n0xFDF4\t0x714F\n0xFDF5\t0x9362\n0xFDF6\t0x242C1\n0xFDF7\t0x712C\n0xFDF8\t0x2445A\n0xFDF9\t0x24A27\n0xFDFA\t0x24A22\n0xFDFB\t0x71BA\n0xFDFC\t0x28BE8\n0xFDFD\t0x70BD\n0xFDFE\t0x720E\n0xFE40\t0x9442\n0xFE41\t0x7215\n0xFE42\t0x5911\n0xFE43\t0x9443\n0xFE44\t0x7224\n0xFE45\t0x9341\n0xFE46\t0x25605\n0xFE47\t0x722E\n0xFE48\t0x7240\n0xFE49\t0x24974\n0xFE4A\t0x68BD\n0xFE4B\t0x7255\n0xFE4C\t0x7257\n0xFE4D\t0x3E55\n0xFE4E\t0x23044\n0xFE4F\t0x680D\n0xFE50\t0x6F3D\n0xFE51\t0x7282\n0xFE53\t0x732B\n0xFE54\t0x24823\n0xFE55\t0x2882B\n0xFE56\t0x48ED\n0xFE57\t0x28804\n0xFE58\t0x7328\n0xFE59\t0x732E\n0xFE5A\t0x73CF\n0xFE5B\t0x73AA\n0xFE5C\t0x20C3A\n0xFE5D\t0x26A2E\n0xFE5E\t0x73C9\n0xFE5F\t0x7449\n0xFE60\t0x241E2\n0xFE61\t0x216E7\n0xFE62\t0x24A24\n0xFE63\t0x6623\n0xFE64\t0x36C5\n0xFE65\t0x249B7\n0xFE66\t0x2498D\n0xFE67\t0x249FB\n0xFE68\t0x73F7\n0xFE69\t0x7415\n0xFE6A\t0x6903\n0xFE6B\t0x24A26\n0xFE6C\t0x7439\n0xFE6D\t0x205C3\n0xFE6E\t0x3ED7\n0xFE70\t0x228AD\n0xFE71\t0x7460\n0xFE72\t0x28EB2\n0xFE73\t0x7447\n0xFE74\t0x73E4\n0xFE75\t0x7476\n0xFE76\t0x83B9\n0xFE77\t0x746C\n0xFE78\t0x3730\n0xFE79\t0x7474\n0xFE7A\t0x93F1\n0xFE7B\t0x6A2C\n0xFE7C\t0x7482\n0xFE7D\t0x4953\n0xFE7E\t0x24A8C\n0xFEA1\t0x2415F\n0xFEA2\t0x24A79\n0xFEA3\t0x28B8F\n0xFEA4\t0x5B46\n0xFEA5\t0x28C03\n0xFEA6\t0x2189E\n0xFEA7\t0x74C8\n0xFEA8\t0x21988\n0xFEA9\t0x750E\n0xFEAB\t0x751E\n0xFEAC\t0x28ED9\n0xFEAD\t0x21A4B\n0xFEAE\t0x5BD7\n0xFEAF\t0x28EAC\n0xFEB0\t0x9385\n0xFEB1\t0x754D\n0xFEB2\t0x754A\n0xFEB3\t0x7567\n0xFEB4\t0x756E\n0xFEB5\t0x24F82\n0xFEB6\t0x3F04\n0xFEB7\t0x24D13\n0xFEB8\t0x758E\n0xFEB9\t0x745D\n0xFEBA\t0x759E\n0xFEBB\t0x75B4\n0xFEBC\t0x7602\n0xFEBD\t0x762C\n0xFEBE\t0x7651\n0xFEBF\t0x764F\n0xFEC0\t0x766F\n0xFEC1\t0x7676\n0xFEC2\t0x263F5\n0xFEC3\t0x7690\n0xFEC4\t0x81EF\n0xFEC5\t0x37F8\n0xFEC6\t0x26911\n0xFEC7\t0x2690E\n0xFEC8\t0x76A1\n0xFEC9\t0x76A5\n0xFECA\t0x76B7\n0xFECB\t0x76CC\n0xFECC\t0x26F9F\n0xFECD\t0x8462\n0xFECE\t0x2509D\n0xFECF\t0x2517D\n0xFED0\t0x21E1C\n0xFED1\t0x771E\n0xFED2\t0x7726\n0xFED3\t0x7740\n0xFED4\t0x64AF\n0xFED5\t0x25220\n0xFED6\t0x7758\n0xFED7\t0x232AC\n0xFED8\t0x77AF\n0xFED9\t0x28964\n0xFEDA\t0x28968\n0xFEDB\t0x216C1\n0xFEDC\t0x77F4\n0xFEDE\t0x21376\n0xFEDF\t0x24A12\n0xFEE0\t0x68CA\n0xFEE1\t0x78AF\n0xFEE2\t0x78C7\n0xFEE3\t0x78D3\n0xFEE4\t0x96A5\n0xFEE5\t0x792E\n0xFEE6\t0x255E0\n0xFEE7\t0x78D7\n0xFEE8\t0x7934\n0xFEE9\t0x78B1\n0xFEEA\t0x2760C\n0xFEEB\t0x8FB8\n0xFEEC\t0x8884\n0xFEED\t0x28B2B\n0xFEEE\t0x26083\n0xFEEF\t0x2261C\n0xFEF0\t0x7986\n0xFEF1\t0x8900\n0xFEF2\t0x6902\n0xFEF3\t0x7980\n0xFEF4\t0x25857\n0xFEF5\t0x799D\n0xFEF6\t0x27B39\n0xFEF7\t0x793C\n0xFEF8\t0x79A9\n0xFEF9\t0x6E2A\n0xFEFA\t0x27126\n0xFEFB\t0x3EA8\n0xFEFC\t0x79C6\n0xFEFD\t0x2910D\n0xFEFE\t0x79D4\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2004-snippet",
    "content": "@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e   g h i j k l m n o\np q r s t u v w x y\n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n           \n@ A    C       F G H I       L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                        \n                   \n                   \n               \n               \n              \n@ A    C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b    d e f g h i j k l m n o\np q r s t    v w x y z { | } ~\n                   \n                   \n                   \n                   \n               \n                \n@ A B C D E F G H I J K L M N O\nP Q R S    U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n                 \n               \n             \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                   \n               \n                       \n               \n                 \n              \n@    B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h    j k l m n\np q r s t u v w x y z { | }\n                   \n                 \n                 \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V    X Y Z [ \\ ] ^ _\n` a b c d e f g h    j k l m    o\np q r s t u v w x y z { | } ~\n                 \n               \n                   \n               \n               \n             \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l    n o\np q r s t u v w x y    { | } ~\n                 \n               \n               \n                 \n               \n                \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n              \n               \n               \n               \n              \n@ A B C    E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                \n                     \n                 \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F    H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n                 \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n                 \n               \n              \n@ A B C    E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n                 \n                \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n`    b c d e f g h i j k l m n o\np q r s t u    w    y z    | } ~\n                 \n               \n                 \n                 \n                 \n                \n@ A    C D E F G H I J K L M N O\nP Q R    T U V W X Y Z [ \\ ] ^ _\n` a    c d e f g    i j    l m n o\np q r s t u v    x y z { | } ~\n                 \n                   \n               \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V    X Y    [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n                 \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                     \n               \n                 \n               \n              \n                  \n@ A B C D E F G H I J K L M    O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n   a b c d e    g h i j k l m n o\np q r s t u v w x y z { | } ~\n                   \n                 \n                     \n                   \n                  \n              \n@ A B C D E F G H I J K L M N O\nP Q R S    U V    X Y    [ \\ ] ^ _\n` a       d e f g h i j k l m n o\np q    s t u v    x y z { | } ~\n                    \n               \n               \n                  \n                   \n              \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2004-snippet.UTF-8",
    "content": "䏰 䰲 䘃 䖦 䕸 𧉧 䵷 䖳 𧲱 䳢 𧳅 㮕 䜶 䝄 䱇 䱀\n𤊿 𣘗 𧍒 𦺋 𧃒 䱗 𪍑 䝏 䗚 䲅 𧱬 䴇 䪤 䚡 𦬣 爥\n𥩔 𡩣 𣸆 𣽡 晍 囻   綕 夝 𨮹 㷴 霴 𧯯 寛 𡵞 媤\n㘥 𩺰 嫑 宷 峼 杮 薓 𩥅 瑡 璝\n㇀ ㇁ ㇂ ㇃ ㇄ 𠄌 ㇅ 𠃑 𠃍 ㇆ ㇇ 𠃋 𡿨 ㇈ 𠃊 ㇉\n㇊ ㇋ ㇌ 𠄎 ㇍ ㇎ Ā Á Ǎ À Ē É Ě È Ō Ó\nǑ Ò Ê̄ Ế Ê̌ Ề Ê ā á ǎ à ɑ ē é ě è\nī í ǐ ì ō ó ǒ ò ū ú ǔ ù ǖ ǘ ǚ\n  ǜ ü ê̄ ế ê̌ ề ê ɡ ⏚ ⏛\n𪎩 𡅅    攊       丽 滝 鵎 釟       𧜵 撑 会 伨\n侨 兖 兴 农 凤 务 动 医 华 发 变 团 声 处 备 夲\n头 学 实 実 岚 庆 总 斉 柾 栄 桥 济 炼 电 纤 纬\n纺 织 经 统 缆 缷 艺 苏 药 视 设 询 车 轧 轮\n   琑 糼 緍 楆 竉 刧             醌 碸 酞 肼\n贋 胶 𠧧       肟 黇 䳍 鷉 鸌 䰾 𩷶 𧀎 鸊 𪄳 㗁\n   溚 舾 甙    䤑 马 骏 龙 禇 𨑬 𡷊 𠗐 𢫦 两 亁\n亀 亇 亿 仫 伷 㑌 侽 㹈 倃 傈 㑽 㒓 㒥 円 夅 凛\n凼 刅 争 剹 劐 匧 㗇 厩 㕑 厰 㕓 参 吣 㕭 㕲 㚁\n咓 咣 咴 咹 哐 哯 唘 唣 唨 㖘 唿 㖥 㖿 嗗 㗅\n𧶄 唥    𠱂 𠴕 𥄫 喐 𢳆 㧬 𠍁 蹆 𤶸 𩓥 䁓 𨂾 睺\n𢰸 㨴 䟕 𨅝 𦧲 𤷪 擝 𠵼 𠾴 𠳕 𡃴 撍 蹾 𠺖 𠰋 𠽤\n𢲩 𨉖 𤓓    𠵆 𩩍 𨃩 䟴 𤺧 𢳂 骲 㩧 𩗴 㿭 㔆 𥋇\n𩟔 𧣈 𢵄 鵮 頕    䏙 𦂥 撴 哣 𢵌 𢯊 𡁷 㧻 𡁯\n   𦛚 𦜖 𧦠 擪 𥁒 𠱃 蹨 𢆡 𨭌 𠜱    䠋 𠆩 㿺 塳\n𢶍    𤗈 𠓼 𦂗 𠽌 𠶖 啹 䂻 䎺    䪴 𢩦 𡂝 膪 飵\n𠶜 捹 㧾 𢝵 跀 嚡 摼 㹃    𪘁 𠸉 𢫏 𢳉    𡃈 𣧂\n㦒 㨆 𨊛 㕸 𥹉 𢃇 噒 𠼱 𢲲 𩜠 㒼 氽 𤸻       𧕴\n𢺋 𢈈 𪙛 𨳍 𠹺 𠰴 𦠜 羓 𡃏 𢠃 𢤹 㗻 𥇣 𠺌 𠾍 𠺪\n㾓 𠼰 𠵇 𡅏 𠹌    𠺫 𠮩 𠵈 𡃀 𡄽 㿹 𢚖 搲 𠾭\n𣏴 𧘹 𢯎 𠵾 𠵿 𢱑 𢱕 㨘 𠺘 𡃇 𠼮 𪘲 𦭐 𨳒 𨶙 𨳊\n閪 哌 苄 喹    𩻃 鰦 骶 𧝞 𢷮 煀 腭 胬 尜 𦕲 脴\n㞗 卟 𨂽 醶 𠻺 𠸏 𠹷 𠻻 㗝 𤷫 㘉 𠳖 嚯 𢞵 𡃉 𠸐\n𠹸 𡁸 𡅈 𨈇 𡑕 𠹹 𤹐 𢶤 婔 𡀝 𡀞 𡃵 𡃶 垜 𠸑\n   𧚔 𨋍 𠾵 𠹻 𥅾 㜃 𠾶 𡆀 𥋘 𪊽 𤧚 𡠺 𤅷 𨉼 墙\n剨 㘚 𥜽 箲 孨 䠀 䬬 鼧 䧧 鰟 鮍 𥭴 𣄽 嗻 㗲 嚉\n丨 夂 𡯁 屮 靑 𠂆 乛 亻 㔾 尣 彑 忄 㣺 扌 攵 歺\n氵 氺 灬 爫 丬 犭 𤣩 罒 礻 糹 罓 𦉪 㓁    𦍋 耂\n肀 𦘒 𦥑 卝 衤 见 𧢲 讠 贝 钅 镸 长 门 𨸏 韦 页\n风 飞 饣 𩠐 鱼 鸟 黄 歯 龜 丷 𠂇 阝 户 钢\n倻 淾 𩱳 龦 㷉 袏 𤅎 灷 峵 䬠 𥇍 㕙 𥴰 愢 𨨲 辧\n釶 熑 朙 玺 𣊁 𪄇 㲋 𡦀 䬐 磤 琂 冮 𨜏 䀉 橣 𪊺\n䈣 蘏 𠩯 稪 𩥇 𨫪 靕 灍 匤 𢁾 鏴 盙 𨧣 龧 矝 亣\n俰 傼 丯 众 龨 吴 綋 墒 壐 𡶶 庒 庙 忂 𢜒 斋\n   𣏹 椙 橃 𣱣 泿    爀 𤔅 玌 㻛 𤨓 嬕 璹 讃 𥲤\n𥚕 窓 篬 糃 繬 苸 薗 龩 袐 龪 躹 龫 迏 蕟 駠 鈡\n龬 𨶹 𡐿 䁱 䊢 娚          顨 杫 䉶 圽    藖 𤥻\n芿 𧄍 䲁 𦵴 嵻 𦬕 𦾾 龭 龮 宖 龯 曧 繛 湗 秊 㶈\n䓃 𣉖 𢞖 䎚 䔶    峕 𣬚 諹 屸 㴒 𣕑 嵸 龲 煗 䕘\n𤃬 𡸣 䱷 㥸 㑊 𠆤 𦱁 諌 侴 𠈹 妿 腬 顖 𩣺 弻\n𠮟    𢇁 𨥭 䄂 䚻 𩁹 㼇 龳 𪆵 䃸 㟖 䛷 𦱆 䅼 𨚲\n𧏿 䕭 㣔 𥒚 䕡 䔛 䶉 䱻 䵶 䗪 㿈 𤬏 㙡 䓞 䒽 䇭\n崾 嵈 嵖 㷼 㠏 嶤 嶹 㠠 㠸 幂 庽 弥 徃 㤈 㤔 㤿\n㥍 惗 愽 峥 㦉 憷 憹 懏 㦸 戬 抐 拥 挘 㧸 嚱\n   㨃 揢 揻 搇 摚 㩋 擀 崕 嘡 龟 㪗 斆 㪽 旿 晓\n㫲 暒 㬢 朖 㭂 枤 栀 㭘 桊 梄 㭲 㭱 㭻 椉 楃 牜\n楤 榟 榅 㮼 槖 㯝 橥 橴 橱 檂 㯬 檙 㯲 檫 檵 櫔\n櫶 殁 毁 毪 汵 沪 㳋 洂 洆 洦 涁 㳯 涤 涱 渕 渘\n温 溆 𨧀 溻 滢 滚 齿 滨 滩 漤 漴 㵆 𣽁 澁 澾 㵪\n㵵 熷 岙 㶊 瀬 㶑 灐 灔 灯 灿 炉 𠌥 䏁 㗱 𠻘\n𣻗 垾 𦻓 焾 𥟠 㙎 榢 𨯩 孴 穉 𥣡 𩓙 穥 穽 𥦬 窻\n窰 竂 竃 燑 𦒍 䇊 竚 竝 竪 䇯 咲 𥰁 笋 筕 笩 𥌎\n𥳾 箢 筯 莜 𥮴 𦱿 篐 萡 箒    𥴠 㶭 𥱥 蒒 篺\n簵 𥳁 籄 粃 𤢂 粦 晽 𤕸 糉 糇 糦 籴 糳 糵\n   繧 䔝 𦹄 絝 𦻖 璍 綉 綫 焵 綳    𤁗 𦀩 緤 㴓\n緵 𡟹 緥 𨍭    𦄡 𦅚 繮 纒 䌫 鑬 縧 罀 罁 罇 礶\n𦋐 駡 羗 𦍑 羣 𡙡 𠁨 䕜 𣝦 䔃 𨌺 翺 𦒉    耈 耝\n   耯 𪂇 𦳃 耻 耼 聡 𢜔 䦉 𦘦 𣷣 𦛨 朥 肧 𨩈 脇\n脚 墰 𢛶 汿 𦒘 𤾸 擧 𡒊 舘 𡡞 橓 𤩥 𤪕 䑺 舩 𠬍\n𦩒 𣵾 俹 𡓽 蓢 荢 𦬊 𤦧 𣔰 𡝳 𣷸 芪 椛 芳 䇛\n蕋 苐 茚 𠸖 𡞴 㛁 𣅽 𣕚 艻 苢 茘 𣺋 𦶣 𦬅 𦮗 𣗎\n㶿 茝 嗬 莅 䔋 𦶥 莬    菓 㑾 𦻔 橗 蕚 㒖 𦹂 𢻯\n葘 𥯤 葱 㷓 䓤 檧 葊 𣲵 祘    𦮖 𦹷 𦹃 蓞    莑\n䒠 蒓 蓤 𥲑 䉀 𥳀 䕃 蔴 嫲 𦺙 䔧 蕳 䔖 枿 蘖\n   𨘥 𨘻 藁 𧂈 蘂 𡖂 𧃍 䕫 䕪 蘨 㙈 𡢢 号 𧎚 虾\n蝱 𪃸 蟮 𢰧 螱 蟚 蠏 噡 虬 桖 䘏 衅 衆 𧗠 𣶹 𧗤\n衞 袜 䙛 袴 袵 揁 装 睷 𧜏 覇 覊       覧 覼 𨨥\n觧 𧤤 𧪽 誜 瞓 釾 誐 𧩙 竩 𧬺 𣾏 䜓 𧬸 煼 謌 謟\n𥐰 𥕥 謿 譌 譍 誩 𤩺 讐 讛 誯 𡛟 䘕 衏 貛 𧵔 𧶏\n貫 㜥 𧵓 賖 𧶘 𧶽 贒 贃 𡤐 賛 灜 贑 𤳉 㻐\n趩 𨀂 𡀔 𤦊 㭼 𨆼 𧄌 竧 躭 躶 軃 鋔 輙 輭 𨍥 𨐒\n辥 錃 𪊟 𠩐 辳 䤪 𨧞 𨔽 𣶻 廸 𣉢 迹 𪀔 𨚼 𨔁 𢌥\n㦀 𦻗 逷 𨔼 𧪾 遡 𨕬 𨘋 邨 𨜓 郄 𨛦 邮    酧 㫰\n醩 釄 粬 𨤳 𡺉 鈎 沟 鉁 鉢 𥖹    𨫆 𣲛 𨬌 𥗛\n   𠴱 錬 鍫 𨫡 𨯫 炏 嫃 𨫢 𨫥 䥥 鉄 𨯬 𨰹 𨯿 鍳\n鑛 躼 閅 閦 鐦 閠 濶 䊹 𢙺 𨛘 𡉼 𣸮 䧟 氜 陻 隖\n䅬 隣 𦻕 懚 隶 磵 𨫠 隽 双 䦡 𦲸 𠉴 𦐐 𩂯 𩃥 𤫑\n𡤕 𣌊 霱 虂 霶 䨏 䔽 䖅 𤫩 灵 孁 霛    𩇕 靗 孊\n𩇫 靟 鐥 僐 𣂷 𣂼 鞉 鞟 鞱 鞾 韀 韒 韠 𥑬 韮 琜\n𩐳    韵 𩐝 𧥺 䫑 頴 頳 顋 顦 㬎 𧅵 㵑 𠘰 𤅜\n𥜆 飊 颷 飈 飇 䫿 𦴧 𡛓 喰 飡 飦 飬 鍸 餹 𤨩 䭲\n𩡗 𩤅 駵 騌 騻 騐 驘 𥜥 㛄 𩂱 𩯕 髠 髢 𩬅 髴 䰎\n鬔 鬭 𨘀 倴 鬴 𦦨 㣃 𣁽 魐 魀 𩴾 婅 𡡣 鮎 𤉋 鰂\n鯿 鰌 𩹨 鷔 𩾷 𪆒 𪆫 𪃡 𪄣 𪇟 鵾 鶃 𪄴 鸎 梈\n   鷄 𢅛 𪆓 𪈠 𡤻 𪈳 鴹 𪂹 𪊴 麐 麕 麞 麢 䴴 麪\n麯 𤍤 黁 㭠 㧥 㴝 伲 㞾 𨰫 鼂 鼈 䮖 鐤 𦶢 鼗\n鼹 嚟 嚊 齅 馸 𩂋 韲 葿 齢 齩 竜 龎 爖 䮾 𤥵 𤦻\n煷 𤧸 𤍈 𤩑 玞 𨯚 𡣺 禟 𨥾 𨸶 鍩 鏳 𨩄 鋬 鎁 鏋\n𨥬 𤒹 爗 㻫 睲 穃 烐 𤑳 𤏸 煾 𡟯 炣 𡢾 𣖙 㻇 𡢅\n𥐯 𡟸 㜢 𡛻 𡠹 㛡 𡝴 𡣑 𥽋 㜣 𡛀 坛 𤨥 𡏾 𡊨\n𡏆 𡒶 蔃 𣚦    葕 𤦔 𧅥 𣸱 𥕜 𣻻 𧁒 䓴 𣛮 𩦝 𦼦\n柹 㜳 㰕 㷧 塬 𡤢 栐 䁗 𣜿 𤃡 𤂋 𤄏 𦰡 哋 嚞 𦚱\n嚒 𠿟 𠮨 𠸍 鏆 𨬓 鎜 仸 儫 㠙 𤐶 亼 𠑥 𠍿 佋 侊\n𥙑 婨 𠆫 𠏋 㦙 𠌊 𠐔 㐵 伩 𠋀 𨺳 𠉵 諚 𠈌 亘\n   働 儍 侢 伃 𤨎 𣺊 佂 倮 偬 傁 俌 俥 偘 僼\n         湶 𣖕 𣸹 𣺿 浲 𡢄 𣺉 冨 凃 𠗠 䓝 𠒣 𠒒\n𠒑 赺 𨪜 𠜎 剙 劤 𠡳 勡    䙺 熌 𤎌 𠰠 𤦬 𡃤 槑\n𠸝    㻞 璙 琔 瑖 玘 䮎 𤪼 𤂍 叐 㖄 爏 𤃉 喴 𠍅\n响 𠯆 圝 鉝 雴 鍦 埝 垍 坿 㘾 壋 媙 𨩆 𡛺 𡝯 𡜐\n娬 妸 銏 婾 嫏 娒 𥥆 𡧳 𡡡 𤊕 㛵 洅 瑃 娡 𥺃\n媁 𨯗 𠐓 鏠 璌 𡌃 焅 䥲 鐈 𨧻 鎽 㞠 尞 岞 幞 幈\n𡦖 𡥼 𣫮 廍 孏 𡤃 𡤄 㜁 𡢠 㛝 𡛾 㛓 脪 𨩇 𡶺 𣑲\n𨦨 弌 弎 𡤧 𡞫 婫 𡜻 孄 蘔 𧗽 衠 恾 𢡠 𢘫 忛 㺸\n𢖯 𢖾 𩂈 𦽳 懀 𠀾 𠁆 𢘛 憙 憘 恵 𢲛 𢴇 𤛔 𩅍\n   摱 𤙥 𢭪 㨩 𢬢 𣑐 𩣪 𢹸 挷 𪑛 撶 挱 揑 𤧣 𢵧\n护 𢲡 搻 敫 楲 㯴 𣂎 𣊭 𤦉 𣊫 唍 𣋠 𡣙 𩐿 曎 𣊉\n𣆳 㫠 䆐 𥖄 𨬢 𥖏 𡛼 𥕛 𥐥 磮 𣄃 𡠪 𣈴 㑤 𣈏 𣆂\n𤋉 暎 𦴤 晫 䮓 昰 𧡰 𡷫 晣 𣋒 𣋡 昞 𥡲 㣑 𣠺 𣞼\n㮙 𣞢 𣏾 瓐 㮖 枏 𤘪 梶 栞 㯄 檾 㡣 𣟕 𤒇 樳 橒\n櫉 欅 𡤒 攑 梘 橌 㯗 橺 歗 𣿀 𣲚 鎠 鋲 𨯪 𨫋\n銉 𨀞 𨧜 鑧 涥 漋 𤧬    𣽿 㶏 渄 𤀼 娽 渊 塇 洤\n硂 焻 𤌚 𤉶 烱 牐 犇 犔 𤞏 𤜥 兹 𤪤 𠗫 瑺 𣻸 𣙟\n𤩊 𤤗 𥿡 㼆 㺱 𤫟 𨰣 𣼵 悧 㻳 瓌 琼 鎇 琷 䒟 𦷪\n䕑 疃 㽣 𤳙 𤴆 㽘 畕 癳 𪗆 㬙 瑨 𨫌 𤦫 𤦎 㫻\n   㷍 𤩎 㻿 𤧅 𤣳 釺 圲 鍂 𨫣 𡡤 僟 𥈡 𥇧 睸 𣈲\n眎 眏 睻 𤚗 𣞁 㩞 𤣰 琸 璛 㺿 𤪺 𤫇 䃈 𤪖 𦆮 錇\n𥖁 砞 碍 碈 磒 珐 祙 𧝁 𥛣 䄎    蒖 禥 樭 𣻺 稺\n秴 䅮 𡛦 䄲 鈵 秱 𠵌 𤦌 𠊙 𣶺 𡝮 㖗 啫 㕰 㚪 𠇔\n𠰍 竢 婙 𢛵 𥪯 𥪜 娍 𠉛 磰 娪 𥯆 竾 䇹 籝 籭 䈑\n𥮳 𥺼 𥺦 糍 𤧹 𡞰 粎 籼 粮 檲 緜 縇 緓 罎 𦉡\n𦅜 𧭈 綗 𥺂 䉪 𦭵 𠤖 柖 𠁎 𣗏 埄 𦐒 𦏸 𤥢 翝 笧\n𠠬 𥫩 𥵃 笌 𥸎 駦 虅 驣 樜 𣐿 㧢 𤧷 𦖭 騟 𦖠 蒀\n𧄧 𦳑 䓪 脷 䐂 胆 脉 腂 𦞴 飃 𦩂 艢 艥 𦩑 葓 𦶧\n蘐 𧈛 媆 䅿 𡡀 嬫 𡢡 嫤 𡣘 蚠 蜨 𣶏 蠭 𧐢 娂\n   衮 佅 袇 袿 裦 襥 襍 𥚃 襔 𧞅 𧞄 𨯵 𨯙 𨮜 𨧹\n㺭 蒣 䛵 䛏 㟲 訽 訜 𩑈 彍 鈫 𤊄 旔 焩 烄 𡡅 鵭\n貟 賩 𧷜 妚 矃 姰 䍮 㛔 踪 躧 𤰉 輰 轊 䋴 汘 澻\n𢌡 䢛 潹 溋 𡟚 鯩 㚵 𤤯 邻    啱 䤆 醻 鐄 𨩋 䁢\n𨫼 鐧 𨰝 𨰻 蓥 訫 閙 閧 閗 閖 𨴴 瑅 㻂 𤣿 𤩂 𤏪\n㻧 𣈥 随 𨻧 𨹦 𨹥 㻌 𤧭 𤩸 𣿮 琒 瑫 㻼 靁 𩂰\n桇 䨝 𩂓 𥟟    鍨 𨦉 𨰦 𨬯 𦎾 銺 嬑 譩 䤼 珹 𤈛\n鞛 靱 餸 𠼦 巁 𨯅 𤪲 頟 𩓚 鋶 𩗗 釥 䓀 𨭐 𤩧 𨭤\n飜 𨩅 㼀 鈪 䤥 萔 餻 饍 𧬆 㷽 馛 䭯 馪 驜 𨭥 𥣈\n檏 騡 嫾 騯 𩣱 䮐 𩥈 馼 䮽 䮗 鍽 塲 𡌂 堢 𤦸\n   𡓨 硄 𢜟 𣶸 棅 㵽 鑘 㤧 慐 𢞁 𢥫 愇 鱏 鱓 鱻\n鰵 鰐 魿 鯏 𩸭 鮟 𪇵 𪃾 鴡 䲮 𤄄 鸘 䲰 鴌 𪆴 𪃭\n𪃳 𩤯 鶥 蒽 𦸒 𦿟 𦮂 藼 䔳 𦶤 𦺄 𦷰 萠 藮 𦸀 𣟗\n𦁤 秢 𣖜 𣙀 䤭 𤧞 㵢 鏛 銾 鍈 𠊿 碹 鉷 鑍 俤 㑀\n遤 𥕝 砽 硔 碶 硋 𡝗 𣇉 𤥁 㚚 佲 濚 濙    瀞 吔\n𤆵 垻 壳 垊 鴖 埗 焴 㒯 𤆬 燫 𦱀 𤾗    𡞵 𨩉\n愌 嫎 娋 䊼 𤒈 㜬 䭻 𨧼 鎻 鎸 𡣖 𠼝 葲 𦳀 𡐓 𤋺\n𢰦 𤏁 妔 𣶷 𦝁 綨 𦅛 𦂤 𤦹 𤦋 𨧺 鋥 珢 㻩 璴 𨭣\n𡢟 㻡 𤪳 櫘 珳 珻 㻖 𤨾 𤪔 𡟙 𤩦 𠎧 𡐤 𤧥 瑈 𤤖\n炥 𤥶 銄 珦 鍟 𠓾 錱 𨫎 𨨖 鎆 𨯧 𥗕 䤵 𨪂 煫\n   𤥃 𠳿 嚤 𠘚 𠯫 𠲸 唂 秄 𡟺 緾 𡛂 𤩐 𡡒 䔮 鐁\n㜊 𨫀 𤦭 妰 𡢿 𡢃 𧒄 媡 㛢 𣵛 㚰 鉟 婹 𨪁 𡡢 鍴\n㳍 𠪴 䪖 㦊 僴 㵩 㵌 𡎜 煵 䋻 𨈘 渏 𩃤 䓫 浗 𧹏\n灧 沯 㳖 𣿭 𣸭 渂 漌 㵯 𠏵 畑 㚼 㓈 䚀 㻚 䡱 姄\n鉮 䤾 轁 𨰜 𦯀 堒 埈 㛖 𡑒 烾 𤍢 𤩱 𢿣 𡊰 𢎽 梹\n楧 𡎘 𣓥 𧯴 𣛟 𨪃 𣟖 𣏺 𤲟 樚 𣚭 𦲷 萾 䓟 䓎\n𦴦 𦵑 𦲂 𦿞 漗 𧄉 茽 𡜺 菭 𦲀 𧁓 𡟛 妉 媂 𡞳 婡\n婱 𡤅 𤇼 㜭 姯 𡜼 㛇 熎 鎐 暚 𤊥 婮 娫 𤊓 樫 𣻹\n𧜶 𤑛 𤋊 焝 𤉙 𨧡 侰 𦴨 峂 𤓎 𧹍 𤎽 樌 𤉖 𡌄 炦\n焳 𤏩 㶥 泟 勇 𤩏 繥 姫 崯 㷳 彜 𤩝 𡟟 綤 萦\n   咅 𣫺 𣌀 𠈔 坾 𠣕 𠘙 㿥 𡾞 𪊶 瀃 𩅛 嵰 玏 糓\n𨩙 𩐠 俈 翧 狍 猐 𧫴 猸 猹 𥛶 獁 獈 㺩 𧬘 遬 燵\n𤣲 珡 臶 㻊 県 㻑 沢 国 琙 琞 琟 㻢 㻰 㻴 㻺 瓓\n㼎 㽓 畂 畭 畲 疍 㽼 痈 痜 㿀 癍 㿗 癴 㿜 発 𤽜\n熈 嘣 覀 塩 䀝 睃 䀹 条 䁅 㗛 瞘 䁪 䁯 属 瞾 矋\n売 砘 点 砜 䂨 砹 硇 硑 硦 葈 𥔵 礳 栃 礲 䄃\n䄉 禑 禙 辻 稆 込 䅧 窑 䆲 窼 艹 䇄 竏 竛 䇏 両\n筢 筬 筻 簒 簛 䉠 䉺 类 粜 䊌 粸 䊔 糭 输 烀 𠳏\n総 緔 緐 緽 羮 羴 犟 䎗 耠 耥 笹 耮 耱 联 㷌 垴\n炠 肷 胩 䏭 脌 猪 脎 脒 畠 脔 䐁 㬹 腖 腙 腚\n   䐓 堺 腼 膄 䐥 膓 䐭 膥 埯 臁 臤 艔 䒏 芦 艶\n苊 苘 苿 䒰 荗 险 榊 萅 烵 葤 惣 蒈 䔄 蒾 蓡 蓸\n蔐 蔸 蕒 䔻 蕯 蕰 藠 䕷 虲 蚒 蚲 蛯 际 螋 䘆 䘗\n袮 裿 褤 襇 覑 𧥧 訩 訸 誔 誴 豑 賔 賲 贜 䞘 塟\n跃 䟭 仮 踺 嗘 坔 蹱 嗵 躰 䠷 軎 転 軤 軭 軲 辷\n迁 迊 迌 逳 駄 䢭 飠 鈓 䤞 鈨 鉘 鉫 銱 銮 銿\n鋣 鋫 鋳 鋴 鋽 鍃 鎄 鎭 䥅 䥑 麿 鐗 匁 鐝 鐭 鐾\n䥪 鑔 鑹 锭 関 䦧 间 阳 䧥 枠 䨤 靀 䨵 鞲 韂 噔\n䫤 惨 颹 䬙 飱 塄 餎 餙 冴 餜 餷 饂 饝 饢 䭰 駅\n䮝 騼 鬏 窃 魩 鮁 鯝 鯱 鯴 䱭 鰠 㝯 𡯂 鵉 鰺\n   黾 噐 鶓 鶽 鷀 鷼 银 辶 鹻 麬 麱 麽 黆 铜 黢\n黱 黸 竈 齄 𠂔 𠊷 𠎠 椚 铃 妬 𠓗 塀 铁 㞹 𠗕 𠘕\n𠙶 𡚺 块 煳 𠫂 𠫍 𠮿 呪 吆 𠯋 咞 𠯻 𠰻 𠱓 𠱥 𠱼\n惧 𠲍 噺 𠲵 𠳝 𠳭 𠵯 𠶲 𠷈 楕 鰯 螥 𠸄 𠸎 𠻗 𠾐\n𠼭 𠹳 尠 𠾼 帋 𡁜 𡁏 𡁶 朞 𡁻 𡂈 𡂖 㙇 𡂿 𡃓 𡄯\n𡄻 卤 蒭 𡋣 𡍵 𡌶 讁 𡕷 𡘙 𡟃 𡟇 乸 炻 𡠭 𡥪\n𡨭 𡩅 𡰪 𡱰 𡲬 𡻈 拃 𡻕 𡼕 熘 桕 𢁅 槩 㛈 𢉼 𢏗\n𢏺 𢜪 𢡱 𢥏 苽 𢥧 𢦓 𢫕 覥 𢫨 辠 𢬎 鞸 𢬿 顇 骽\n𢱌    𢲈 𢲷 𥯨 𢴈 𢴒 𢶷 𢶕 𢹂 𢽴 𢿌 𣀳 𣁦 𣌟 𣏞\n徱 晈 暿 𧩹 𣕧 𣗳    𤦺    𣘚 𣜖    𠍆 墵 朎\n   椘 𣪧 𧙗 𥿢 𣸑 𣺹 𧗾 𢂚 䣐 䪸 𤄙 𨪚 𤋮 𤌍 𤀻\n𤌴 𤎖 𤩅 𠗊 凒 𠘑 妟 𡺨 㮾 𣳿 𤐄 𤓖 垈 𤙴 㦛 𤜯\n𨗨 𩧉 㝢 𢇃 譞 𨭎    𤠒 𤣻 𤨕 爉 𤫀 𠱸 奥 𤺥 𤾆\n𠝹 軚 𥀬 劏 圿 煱 𥊙 𥐙 𣽊 𤪧 喼 𥑆 𥑮 𦭒    㑳\n𥔿 𧘲 𥕞 䜘 𥕢 𥕦 𥟇 𤤿 𥡝 偦 㓻 𣏌    𥤃 䝼 𨥈\n𥪮 𥮉 𥰆 𡶐 垡 煑    𦄂 𧰒 遖 𦆲 𤾚 譢 𦐂 𦑊\n嵛 𦯷    𦒄 𡤜 諪 𤧶 𦒈 𣿯 𦔒 䯀 𦖿 𦚵 𢜛 鑥 𥟡\n憕 娧 晉    嚹 𤔡 𦛼 乪 𤤴 陖 涏 𦲽 㘘 襷 𦞙 𦡮\n𦐑 𦡞    𦣇 筂 𩃀 𠨑 𦤦    𦤹 穅    𦧺 騦 𦨭 㙟\n𦑩 𠀡 禃 𦨴 𦭛 崬 𣔙    𦮝 䛐 𦲤 画 补 𦶮 墶\n   㜜 𢖍 𧁋 𧇍 㱔 𧊀 𧊅 銁 𢅺 𧊋 錰 𧋦 𤧐 氹 钟\n𧑐 𠻸 蠧 裵 𢤦 𨑳 𡞱 溸 𤨪 𡠠 㦤 㚹       䔿 暶\n𩲭 𩢤 襃 𧟌 𧡘 囖 䃟 𡘊 㦡 𣜯 𨃨 𡏅 熭 荦 𧧝 𩆨\n   䲷 𧂯 𨦫 𧧽 𧨊 𧬋 𧵦 𤅺 筃 祾 𨀉 澵 𪋟 樃 𨌘\n厢 𦸇 鎿 栶 靝 𨅯 𨀣 𦦵 𡏭 𣈯 𨁈 嶅 𨰰 𨂃 圕 頣\n𨥉 嶫 𤦈 斾 槕 叒 𤪥 𣾁 㰑 朶 𨂐 𨃴 𨄮 𡾡 𨅏\n𨆉 𨆯 𨈚 𨌆 𨌯 𨎊 㗊 𨑨 𨚪 䣺 揦 𨥖 砈 鉕 𨦸 䏲\n𨧧 䏟 𨧨 𨭆 𨯔 姸 𨰉    𨿅 𩃬    𩄐 𩄼 㷷 𩅞 𤫊\n运 犏 嚋 𩓧 𩗩 𩖰 𩖸 𩜲 𩣑 𩥉 𩥪 𩧃 𩨨 𩬎 𩵚 𩶛\n纟 𩻸 𩼣 䲤 镇 𪊓 熢 𪋿 䶑 递 𪗋 䶜 𠲜 达 嗁\n   辺 𢒰 边 𤪓 䔉 繿 潖 檱 仪 㓤 𨬬 𧢝 㜺 躀 𡟵\n𨀤 𨭬 𨮙 𧨾 𦚯 㷫 𧙕 𣲷 𥘵 𥥖 亚 𥺁 𦉘 嚿 𠹭 踎\n孭 𣺈 𤲞 揞    𡟶 𡡻 攰 嘭 𥱊 吚 𥌑 㷆 𩶘 䱽 嘢\n嘞 罉 𥻘 奵 𣵀 蝰 东 𠿪 𠵉 𣚺 脗 鵞 贘 瘻 鱅 癎\n瞹 鍅 吲 腈 苷 嘥 脲 萘 肽 嗪 祢 噃 吖 𠺝 㗎 嘅\n嗱 曱 𨋢 㘭 甴 嗰 喺 咗 啲 𠱁 𠲖 廐 𥅈 𠹶 𢱢\n𠺢 麫 絚 嗞 𡁵 抝 靭 咔 賍 燶 酶 揼 掹 揾 啩 𢭃\n鱲 𢺳 冚 㓟 𠶧 冧 呍 唞 唓 癦 踭 𦢊 疱 肶 蠄 螆\n裇 膶 萜 𡃁 䓬 猄 𤜆 宐 茋 𦢓 噻 𢛴 𧴯 𤆣 𧵳 𦻐\n𧊶 酰 𡇙 鈈 𣳼 𪚩 𠺬 𠻹 牦 𡲢 䝎 𤿂 𧿹 𠿫 䃺\n   鱝 攟 𢶠 䣳 𤟠 𩵼 𠿬 𠸊    𧖣 𠿭    𦁈 𡆇 熣\n纎 鵐 业 丄 㕷 嬍 沲 卧 㚬 㧜 卽 㚥 𤘘 墚 𤭮 舭\n呋 垪 𥪕 𠥹    㩒 𢑥 獴 𩺬 䴉 鯭 𣳾 𩼰 䱛 𤾩 𩖞\n𩿞 葜 𣶶 𧊲 𦞳 𣜠 挮 紥 𣻷 𣸬 㨪 逈 勌 㹴 㙺 䗩\n𠒎 癀 嫰 𠺶 硺 𧼮 墧 䂿 噼 鮋 嵴 癔 𪐴 麅 䳡\n㟻 愙 𣃚 𤏲    噝 𡊩 垧 𤥣 𩸆 刴 𧂮 㖭    鵼\n籖 鬹 埞 𡝬 屓 擓 𩓐 𦌵 𧅤 蚭 𠴨 𦴢 𤫢 𠵱    凾\n𡼏 嶎 霃 𡷑 麁 遌 笟 鬂 峑 箣 扨 挵 髿 篏 鬪 籾\n   籂 粆 鰕 篼 鬉    鰛 𤤾 齚 啳 寃 俽 麘 俲 剠\n㸆 勑 坧 偖 妷 帒 韈 鶫 轜 呩 鞴 饀 鞺 匬 愰\n   椬 叚 鰊 鴂 䰻 陁 榀 傦 畆 𡝭 駚 剳    酙 隁\n酜    酑 𨺗 捿 𦴣 櫊 嘑 醎 畺 抅 𠏼 獏 籰 𥰡 𣳽\n   𤤙 盖 鮝 个 𠳔 莾 衂    届 槀    坺 刟 巵 从\n氱 𠇲 伹 咜 哚 劚 趂 㗾    㗳    歒 酼 龥 鮗 頮\n颴 骺 麨 麄 煺 笔    毺 蠘 罸    嘠 𪙊 蹷 齓\n跔 蹏 鸜 踁 抂 𨍽 踨 蹵 竓 𤩷 稾 磘 泪 詧 瘇\n𨩚 鼦 泎 蟖 痃 𪊲 硓 咢 贌 狢 獱 謭 猂 瓱 賫 𤪻\n蘯 徺 袠 䒷    𡠻 𦸅    詾 𢔛    惽 癧 髗 鵄 鍮\n鮏 蟵       賷 猬 霡 鮰 㗖 犲 䰇 籑 饊 𦅙 慙 䰄\n麖 慽    坟 慯 抦 戹    㩜 懢 厪 𣏵 捤 栂 㗒\n   嵗 𨯂 迚 𨸹    僙 𡵆 礆 匲 阸 𠼻 䁥    矾\n糂 𥼚 糚 稭 聦 聣 絍 甅 瓲 覔 舚 朌 聢 𧒆 聛 瓰\n脃 眤 覉 𦟌 畓 𦻑 螩 蟎 臈 螌 詉 貭 譃 眫 瓸 蓚\n㘵 榲 趦    覩    涹 蟁 𤀑 瓧 㷛 煶 悤 憜 㳑\n恷    罱 𨬭    惩 䭾 删 㰘 𣳇 𥻗 𧙖 𥔱 𡥄 𡋾 𩤃\n𦷜 𧂭 峁 𦆭 𨨏 𣙷 𠃮 𦡆 𤼎 䕢 嬟 𦍌 齐 麦 𦉫\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2004.IRREVERSIBLE.TXT",
    "content": "0xF9E9\t0x255E\n0xF9EA\t0x256A\n0xF9EB\t0x2561\n0xF9F9\t0x2550\n0xF9FA\t0x256D\n0xF9FB\t0x256E\n0xF9FC\t0x2570\n0xF9FD\t0x256F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2004.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8740\t0x43F0\n0x8741\t0x4C32\n0x8742\t0x4603\n0x8743\t0x45A6\n0x8744\t0x4578\n0x8745\t0x27267\n0x8746\t0x4D77\n0x8747\t0x45B3\n0x8748\t0x27CB1\n0x8749\t0x4CE2\n0x874A\t0x27CC5\n0x874B\t0x3B95\n0x874C\t0x4736\n0x874D\t0x4744\n0x874E\t0x4C47\n0x874F\t0x4C40\n0x8750\t0x242BF\n0x8751\t0x23617\n0x8752\t0x27352\n0x8753\t0x26E8B\n0x8754\t0x270D2\n0x8755\t0x4C57\n0x8756\t0x2A351\n0x8757\t0x474F\n0x8758\t0x45DA\n0x8759\t0x4C85\n0x875A\t0x27C6C\n0x875B\t0x4D07\n0x875C\t0x4AA4\n0x875D\t0x46A1\n0x875E\t0x26B23\n0x875F\t0x7225\n0x8760\t0x25A54\n0x8761\t0x21A63\n0x8762\t0x23E06\n0x8763\t0x23F61\n0x8764\t0x664D\n0x8765\t0x56FB\n0x8767\t0x7D95\n0x8768\t0x591D\n0x8769\t0x28BB9\n0x876A\t0x3DF4\n0x876B\t0x9734\n0x876C\t0x27BEF\n0x876D\t0x5BDB\n0x876E\t0x21D5E\n0x876F\t0x5AA4\n0x8770\t0x3625\n0x8771\t0x29EB0\n0x8772\t0x5AD1\n0x8773\t0x5BB7\n0x8774\t0x5CFC\n0x8775\t0x676E\n0x8776\t0x8593\n0x8777\t0x29945\n0x8778\t0x7461\n0x8779\t0x749D\n0x8840\t0x31C0\n0x8841\t0x31C1\n0x8842\t0x31C2\n0x8843\t0x31C3\n0x8844\t0x31C4\n0x8845\t0x2010C\n0x8846\t0x31C5\n0x8847\t0x200D1\n0x8848\t0x200CD\n0x8849\t0x31C6\n0x884A\t0x31C7\n0x884B\t0x200CB\n0x884C\t0x21FE8\n0x884D\t0x31C8\n0x884E\t0x200CA\n0x884F\t0x31C9\n0x8850\t0x31CA\n0x8851\t0x31CB\n0x8852\t0x31CC\n0x8853\t0x2010E\n0x8854\t0x31CD\n0x8855\t0x31CE\n0x8856\t0x0100\n0x8857\t0x00C1\n0x8858\t0x01CD\n0x8859\t0x00C0\n0x885A\t0x0112\n0x885B\t0x00C9\n0x885C\t0x011A\n0x885D\t0x00C8\n0x885E\t0x014C\n0x885F\t0x00D3\n0x8860\t0x01D1\n0x8861\t0x00D2\n0x8862\t0x00CA 0x0304\n0x8863\t0x1EBE\n0x8864\t0x00CA 0x030C\n0x8865\t0x1EC0\n0x8866\t0x00CA\n0x8867\t0x0101\n0x8868\t0x00E1\n0x8869\t0x01CE\n0x886A\t0x00E0\n0x886B\t0x0251\n0x886C\t0x0113\n0x886D\t0x00E9\n0x886E\t0x011B\n0x886F\t0x00E8\n0x8870\t0x012B\n0x8871\t0x00ED\n0x8872\t0x01D0\n0x8873\t0x00EC\n0x8874\t0x014D\n0x8875\t0x00F3\n0x8876\t0x01D2\n0x8877\t0x00F2\n0x8878\t0x016B\n0x8879\t0x00FA\n0x887A\t0x01D4\n0x887B\t0x00F9\n0x887C\t0x01D6\n0x887D\t0x01D8\n0x887E\t0x01DA\n0x88A1\t0x01DC\n0x88A2\t0x00FC\n0x88A3\t0x00EA 0x0304\n0x88A4\t0x1EBF\n0x88A5\t0x00EA 0x030C\n0x88A6\t0x1EC1\n0x88A7\t0x00EA\n0x88A8\t0x0261\n0x88A9\t0x23DA\n0x88AA\t0x23DB\n0x8940\t0x2A3A9\n0x8941\t0x21145\n0x8943\t0x650A\n0x8946\t0x4E3D\n0x8947\t0x6EDD\n0x8948\t0x9D4E\n0x8949\t0x91DF\n0x894C\t0x27735\n0x894D\t0x6491\n0x894E\t0x4F1A\n0x894F\t0x4F28\n0x8950\t0x4FA8\n0x8951\t0x5156\n0x8952\t0x5174\n0x8953\t0x519C\n0x8954\t0x51E4\n0x8955\t0x52A1\n0x8956\t0x52A8\n0x8957\t0x533B\n0x8958\t0x534E\n0x8959\t0x53D1\n0x895A\t0x53D8\n0x895B\t0x56E2\n0x895C\t0x58F0\n0x895D\t0x5904\n0x895E\t0x5907\n0x895F\t0x5932\n0x8960\t0x5934\n0x8961\t0x5B66\n0x8962\t0x5B9E\n0x8963\t0x5B9F\n0x8964\t0x5C9A\n0x8965\t0x5E86\n0x8966\t0x603B\n0x8967\t0x6589\n0x8968\t0x67FE\n0x8969\t0x6804\n0x896A\t0x6865\n0x896B\t0x6D4E\n0x896C\t0x70BC\n0x896D\t0x7535\n0x896E\t0x7EA4\n0x896F\t0x7EAC\n0x8970\t0x7EBA\n0x8971\t0x7EC7\n0x8972\t0x7ECF\n0x8973\t0x7EDF\n0x8974\t0x7F06\n0x8975\t0x7F37\n0x8976\t0x827A\n0x8977\t0x82CF\n0x8978\t0x836F\n0x8979\t0x89C6\n0x897A\t0x8BBE\n0x897B\t0x8BE2\n0x897C\t0x8F66\n0x897D\t0x8F67\n0x897E\t0x8F6E\n0x89A1\t0x7411\n0x89A2\t0x7CFC\n0x89A3\t0x7DCD\n0x89A4\t0x6946\n0x89A5\t0x7AC9\n0x89A6\t0x5227\n0x89AB\t0x918C\n0x89AC\t0x78B8\n0x89AD\t0x915E\n0x89AE\t0x80BC\n0x89B0\t0x8D0B\n0x89B1\t0x80F6\n0x89B2\t0x209E7\n0x89B5\t0x809F\n0x89B6\t0x9EC7\n0x89B7\t0x4CCD\n0x89B8\t0x9DC9\n0x89B9\t0x9E0C\n0x89BA\t0x4C3E\n0x89BB\t0x29DF6\n0x89BC\t0x2700E\n0x89BD\t0x9E0A\n0x89BE\t0x2A133\n0x89BF\t0x35C1\n0x89C1\t0x6E9A\n0x89C2\t0x823E\n0x89C3\t0x7519\n0x89C5\t0x4911\n0x89C6\t0x9A6C\n0x89C7\t0x9A8F\n0x89C8\t0x9F99\n0x89C9\t0x7987\n0x89CA\t0x2846C\n0x89CB\t0x21DCA\n0x89CC\t0x205D0\n0x89CD\t0x22AE6\n0x89CE\t0x4E24\n0x89CF\t0x4E81\n0x89D0\t0x4E80\n0x89D1\t0x4E87\n0x89D2\t0x4EBF\n0x89D3\t0x4EEB\n0x89D4\t0x4F37\n0x89D5\t0x344C\n0x89D6\t0x4FBD\n0x89D7\t0x3E48\n0x89D8\t0x5003\n0x89D9\t0x5088\n0x89DA\t0x347D\n0x89DB\t0x3493\n0x89DC\t0x34A5\n0x89DD\t0x5186\n0x89DE\t0x5905\n0x89DF\t0x51DB\n0x89E0\t0x51FC\n0x89E1\t0x5205\n0x89E2\t0x4E89\n0x89E3\t0x5279\n0x89E4\t0x5290\n0x89E5\t0x5327\n0x89E6\t0x35C7\n0x89E7\t0x53A9\n0x89E8\t0x3551\n0x89E9\t0x53B0\n0x89EA\t0x3553\n0x89EB\t0x53C2\n0x89EC\t0x5423\n0x89ED\t0x356D\n0x89EE\t0x3572\n0x89EF\t0x3681\n0x89F0\t0x5493\n0x89F1\t0x54A3\n0x89F2\t0x54B4\n0x89F3\t0x54B9\n0x89F4\t0x54D0\n0x89F5\t0x54EF\n0x89F6\t0x5518\n0x89F7\t0x5523\n0x89F8\t0x5528\n0x89F9\t0x3598\n0x89FA\t0x553F\n0x89FB\t0x35A5\n0x89FC\t0x35BF\n0x89FD\t0x55D7\n0x89FE\t0x35C5\n0x8A40\t0x27D84\n0x8A41\t0x5525\n0x8A43\t0x20C42\n0x8A44\t0x20D15\n0x8A45\t0x2512B\n0x8A46\t0x5590\n0x8A47\t0x22CC6\n0x8A48\t0x39EC\n0x8A49\t0x20341\n0x8A4A\t0x8E46\n0x8A4B\t0x24DB8\n0x8A4C\t0x294E5\n0x8A4D\t0x4053\n0x8A4E\t0x280BE\n0x8A4F\t0x777A\n0x8A50\t0x22C38\n0x8A51\t0x3A34\n0x8A52\t0x47D5\n0x8A53\t0x2815D\n0x8A54\t0x269F2\n0x8A55\t0x24DEA\n0x8A56\t0x64DD\n0x8A57\t0x20D7C\n0x8A58\t0x20FB4\n0x8A59\t0x20CD5\n0x8A5A\t0x210F4\n0x8A5B\t0x648D\n0x8A5C\t0x8E7E\n0x8A5D\t0x20E96\n0x8A5E\t0x20C0B\n0x8A5F\t0x20F64\n0x8A60\t0x22CA9\n0x8A61\t0x28256\n0x8A62\t0x244D3\n0x8A64\t0x20D46\n0x8A65\t0x29A4D\n0x8A66\t0x280E9\n0x8A67\t0x47F4\n0x8A68\t0x24EA7\n0x8A69\t0x22CC2\n0x8A6A\t0x9AB2\n0x8A6B\t0x3A67\n0x8A6C\t0x295F4\n0x8A6D\t0x3FED\n0x8A6E\t0x3506\n0x8A6F\t0x252C7\n0x8A70\t0x297D4\n0x8A71\t0x278C8\n0x8A72\t0x22D44\n0x8A73\t0x9D6E\n0x8A74\t0x9815\n0x8A76\t0x43D9\n0x8A77\t0x260A5\n0x8A78\t0x64B4\n0x8A79\t0x54E3\n0x8A7A\t0x22D4C\n0x8A7B\t0x22BCA\n0x8A7C\t0x21077\n0x8A7D\t0x39FB\n0x8A7E\t0x2106F\n0x8AA1\t0x266DA\n0x8AA2\t0x26716\n0x8AA3\t0x279A0\n0x8AA4\t0x64EA\n0x8AA5\t0x25052\n0x8AA6\t0x20C43\n0x8AA7\t0x8E68\n0x8AA8\t0x221A1\n0x8AA9\t0x28B4C\n0x8AAA\t0x20731\n0x8AAC\t0x480B\n0x8AAD\t0x201A9\n0x8AAE\t0x3FFA\n0x8AAF\t0x5873\n0x8AB0\t0x22D8D\n0x8AB2\t0x245C8\n0x8AB3\t0x204FC\n0x8AB4\t0x26097\n0x8AB5\t0x20F4C\n0x8AB6\t0x20D96\n0x8AB7\t0x5579\n0x8AB8\t0x40BB\n0x8AB9\t0x43BA\n0x8ABB\t0x4AB4\n0x8ABC\t0x22A66\n0x8ABD\t0x2109D\n0x8ABE\t0x81AA\n0x8ABF\t0x98F5\n0x8AC0\t0x20D9C\n0x8AC1\t0x6379\n0x8AC2\t0x39FE\n0x8AC3\t0x22775\n0x8AC4\t0x8DC0\n0x8AC5\t0x56A1\n0x8AC6\t0x647C\n0x8AC7\t0x3E43\n0x8AC9\t0x2A601\n0x8ACA\t0x20E09\n0x8ACB\t0x22ACF\n0x8ACC\t0x22CC9\n0x8ACE\t0x210C8\n0x8ACF\t0x239C2\n0x8AD0\t0x3992\n0x8AD1\t0x3A06\n0x8AD2\t0x2829B\n0x8AD3\t0x3578\n0x8AD4\t0x25E49\n0x8AD5\t0x220C7\n0x8AD6\t0x5652\n0x8AD7\t0x20F31\n0x8AD8\t0x22CB2\n0x8AD9\t0x29720\n0x8ADA\t0x34BC\n0x8ADB\t0x6C3D\n0x8ADC\t0x24E3B\n0x8ADF\t0x27574\n0x8AE0\t0x22E8B\n0x8AE1\t0x22208\n0x8AE2\t0x2A65B\n0x8AE3\t0x28CCD\n0x8AE4\t0x20E7A\n0x8AE5\t0x20C34\n0x8AE6\t0x2681C\n0x8AE7\t0x7F93\n0x8AE8\t0x210CF\n0x8AE9\t0x22803\n0x8AEA\t0x22939\n0x8AEB\t0x35FB\n0x8AEC\t0x251E3\n0x8AED\t0x20E8C\n0x8AEE\t0x20F8D\n0x8AEF\t0x20EAA\n0x8AF0\t0x3F93\n0x8AF1\t0x20F30\n0x8AF2\t0x20D47\n0x8AF3\t0x2114F\n0x8AF4\t0x20E4C\n0x8AF6\t0x20EAB\n0x8AF7\t0x20BA9\n0x8AF8\t0x20D48\n0x8AF9\t0x210C0\n0x8AFA\t0x2113D\n0x8AFB\t0x3FF9\n0x8AFC\t0x22696\n0x8AFD\t0x6432\n0x8AFE\t0x20FAD\n0x8B40\t0x233F4\n0x8B41\t0x27639\n0x8B42\t0x22BCE\n0x8B43\t0x20D7E\n0x8B44\t0x20D7F\n0x8B45\t0x22C51\n0x8B46\t0x22C55\n0x8B47\t0x3A18\n0x8B48\t0x20E98\n0x8B49\t0x210C7\n0x8B4A\t0x20F2E\n0x8B4B\t0x2A632\n0x8B4C\t0x26B50\n0x8B4D\t0x28CD2\n0x8B4E\t0x28D99\n0x8B4F\t0x28CCA\n0x8B50\t0x95AA\n0x8B51\t0x54CC\n0x8B52\t0x82C4\n0x8B53\t0x55B9\n0x8B55\t0x29EC3\n0x8B56\t0x9C26\n0x8B57\t0x9AB6\n0x8B58\t0x2775E\n0x8B59\t0x22DEE\n0x8B5A\t0x7140\n0x8B5B\t0x816D\n0x8B5C\t0x80EC\n0x8B5D\t0x5C1C\n0x8B5E\t0x26572\n0x8B5F\t0x8134\n0x8B60\t0x3797\n0x8B61\t0x535F\n0x8B62\t0x280BD\n0x8B63\t0x91B6\n0x8B64\t0x20EFA\n0x8B65\t0x20E0F\n0x8B66\t0x20E77\n0x8B67\t0x20EFB\n0x8B68\t0x35DD\n0x8B69\t0x24DEB\n0x8B6A\t0x3609\n0x8B6B\t0x20CD6\n0x8B6C\t0x56AF\n0x8B6D\t0x227B5\n0x8B6E\t0x210C9\n0x8B6F\t0x20E10\n0x8B70\t0x20E78\n0x8B71\t0x21078\n0x8B72\t0x21148\n0x8B73\t0x28207\n0x8B74\t0x21455\n0x8B75\t0x20E79\n0x8B76\t0x24E50\n0x8B77\t0x22DA4\n0x8B78\t0x5A54\n0x8B79\t0x2101D\n0x8B7A\t0x2101E\n0x8B7B\t0x210F5\n0x8B7C\t0x210F6\n0x8B7D\t0x579C\n0x8B7E\t0x20E11\n0x8BA1\t0x27694\n0x8BA2\t0x282CD\n0x8BA3\t0x20FB5\n0x8BA4\t0x20E7B\n0x8BA5\t0x2517E\n0x8BA6\t0x3703\n0x8BA7\t0x20FB6\n0x8BA8\t0x21180\n0x8BA9\t0x252D8\n0x8BAA\t0x2A2BD\n0x8BAB\t0x249DA\n0x8BAC\t0x2183A\n0x8BAD\t0x24177\n0x8BAE\t0x2827C\n0x8BAF\t0x5899\n0x8BB0\t0x5268\n0x8BB1\t0x361A\n0x8BB2\t0x2573D\n0x8BB3\t0x7BB2\n0x8BB4\t0x5B68\n0x8BB5\t0x4800\n0x8BB6\t0x4B2C\n0x8BB7\t0x9F27\n0x8BB8\t0x49E7\n0x8BB9\t0x9C1F\n0x8BBA\t0x9B8D\n0x8BBB\t0x25B74\n0x8BBC\t0x2313D\n0x8BBD\t0x55FB\n0x8BBE\t0x35F2\n0x8BBF\t0x5689\n0x8BC0\t0x4E28\n0x8BC1\t0x5902\n0x8BC2\t0x21BC1\n0x8BC3\t0x2F878\n0x8BC4\t0x9751\n0x8BC5\t0x20086\n0x8BC6\t0x4E5B\n0x8BC7\t0x4EBB\n0x8BC8\t0x353E\n0x8BC9\t0x5C23\n0x8BCA\t0x5F51\n0x8BCB\t0x5FC4\n0x8BCC\t0x38FA\n0x8BCD\t0x624C\n0x8BCE\t0x6535\n0x8BCF\t0x6B7A\n0x8BD0\t0x6C35\n0x8BD1\t0x6C3A\n0x8BD2\t0x706C\n0x8BD3\t0x722B\n0x8BD4\t0x4E2C\n0x8BD5\t0x72AD\n0x8BD6\t0x248E9\n0x8BD7\t0x7F52\n0x8BD8\t0x793B\n0x8BD9\t0x7CF9\n0x8BDA\t0x7F53\n0x8BDB\t0x2626A\n0x8BDC\t0x34C1\n0x8BDE\t0x2634B\n0x8BDF\t0x8002\n0x8BE0\t0x8080\n0x8BE1\t0x26612\n0x8BE2\t0x26951\n0x8BE3\t0x535D\n0x8BE4\t0x8864\n0x8BE5\t0x89C1\n0x8BE6\t0x278B2\n0x8BE7\t0x8BA0\n0x8BE8\t0x8D1D\n0x8BE9\t0x9485\n0x8BEA\t0x9578\n0x8BEB\t0x957F\n0x8BEC\t0x95E8\n0x8BED\t0x28E0F\n0x8BEE\t0x97E6\n0x8BEF\t0x9875\n0x8BF0\t0x98CE\n0x8BF1\t0x98DE\n0x8BF2\t0x9963\n0x8BF3\t0x29810\n0x8BF4\t0x9C7C\n0x8BF5\t0x9E1F\n0x8BF6\t0x9EC4\n0x8BF7\t0x6B6F\n0x8BF8\t0xF907\n0x8BF9\t0x4E37\n0x8BFA\t0x20087\n0x8BFB\t0x961D\n0x8BFC\t0x6237\n0x8BFD\t0x94A2\n0x8C40\t0x503B\n0x8C41\t0x6DFE\n0x8C42\t0x29C73\n0x8C43\t0x9FA6\n0x8C44\t0x3DC9\n0x8C45\t0x888F\n0x8C46\t0x2414E\n0x8C47\t0x7077\n0x8C48\t0x5CF5\n0x8C49\t0x4B20\n0x8C4A\t0x251CD\n0x8C4B\t0x3559\n0x8C4C\t0x25D30\n0x8C4D\t0x6122\n0x8C4E\t0x28A32\n0x8C4F\t0x8FA7\n0x8C50\t0x91F6\n0x8C51\t0x7191\n0x8C52\t0x6719\n0x8C53\t0x73BA\n0x8C54\t0x23281\n0x8C55\t0x2A107\n0x8C56\t0x3C8B\n0x8C57\t0x21980\n0x8C58\t0x4B10\n0x8C59\t0x78E4\n0x8C5A\t0x7402\n0x8C5B\t0x51AE\n0x8C5C\t0x2870F\n0x8C5D\t0x4009\n0x8C5E\t0x6A63\n0x8C5F\t0x2A2BA\n0x8C60\t0x4223\n0x8C61\t0x860F\n0x8C62\t0x20A6F\n0x8C63\t0x7A2A\n0x8C64\t0x29947\n0x8C65\t0x28AEA\n0x8C66\t0x9755\n0x8C67\t0x704D\n0x8C68\t0x5324\n0x8C69\t0x2207E\n0x8C6A\t0x93F4\n0x8C6B\t0x76D9\n0x8C6C\t0x289E3\n0x8C6D\t0x9FA7\n0x8C6E\t0x77DD\n0x8C6F\t0x4EA3\n0x8C70\t0x4FF0\n0x8C71\t0x50BC\n0x8C72\t0x4E2F\n0x8C73\t0x4F17\n0x8C74\t0x9FA8\n0x8C75\t0x5434\n0x8C76\t0x7D8B\n0x8C77\t0x5892\n0x8C78\t0x58D0\n0x8C79\t0x21DB6\n0x8C7A\t0x5E92\n0x8C7B\t0x5E99\n0x8C7C\t0x5FC2\n0x8C7D\t0x22712\n0x8C7E\t0x658B\n0x8CA1\t0x233F9\n0x8CA2\t0x6919\n0x8CA3\t0x6A43\n0x8CA4\t0x23C63\n0x8CA5\t0x6CFF\n0x8CA7\t0x7200\n0x8CA8\t0x24505\n0x8CA9\t0x738C\n0x8CAA\t0x3EDB\n0x8CAB\t0x24A13\n0x8CAC\t0x5B15\n0x8CAD\t0x74B9\n0x8CAE\t0x8B83\n0x8CAF\t0x25CA4\n0x8CB0\t0x25695\n0x8CB1\t0x7A93\n0x8CB2\t0x7BEC\n0x8CB3\t0x7CC3\n0x8CB4\t0x7E6C\n0x8CB5\t0x82F8\n0x8CB6\t0x8597\n0x8CB7\t0x9FA9\n0x8CB8\t0x8890\n0x8CB9\t0x9FAA\n0x8CBA\t0x8EB9\n0x8CBB\t0x9FAB\n0x8CBC\t0x8FCF\n0x8CBD\t0x855F\n0x8CBE\t0x99E0\n0x8CBF\t0x9221\n0x8CC0\t0x9FAC\n0x8CC1\t0x28DB9\n0x8CC2\t0x2143F\n0x8CC3\t0x4071\n0x8CC4\t0x42A2\n0x8CC5\t0x5A1A\n0x8CC9\t0x9868\n0x8CCA\t0x676B\n0x8CCB\t0x4276\n0x8CCC\t0x573D\n0x8CCE\t0x85D6\n0x8CCF\t0x2497B\n0x8CD0\t0x82BF\n0x8CD1\t0x2710D\n0x8CD2\t0x4C81\n0x8CD3\t0x26D74\n0x8CD4\t0x5D7B\n0x8CD5\t0x26B15\n0x8CD6\t0x26FBE\n0x8CD7\t0x9FAD\n0x8CD8\t0x9FAE\n0x8CD9\t0x5B96\n0x8CDA\t0x9FAF\n0x8CDB\t0x66E7\n0x8CDC\t0x7E5B\n0x8CDD\t0x6E57\n0x8CDE\t0x79CA\n0x8CDF\t0x3D88\n0x8CE0\t0x44C3\n0x8CE1\t0x23256\n0x8CE2\t0x22796\n0x8CE3\t0x439A\n0x8CE4\t0x4536\n0x8CE6\t0x5CD5\n0x8CE7\t0x23B1A\n0x8CE8\t0x8AF9\n0x8CE9\t0x5C78\n0x8CEA\t0x3D12\n0x8CEB\t0x23551\n0x8CEC\t0x5D78\n0x8CED\t0x9FB2\n0x8CEE\t0x7157\n0x8CEF\t0x4558\n0x8CF0\t0x240EC\n0x8CF1\t0x21E23\n0x8CF2\t0x4C77\n0x8CF3\t0x3978\n0x8CF4\t0x344A\n0x8CF5\t0x201A4\n0x8CF6\t0x26C41\n0x8CF7\t0x8ACC\n0x8CF8\t0x4FB4\n0x8CF9\t0x20239\n0x8CFA\t0x59BF\n0x8CFB\t0x816C\n0x8CFC\t0x9856\n0x8CFD\t0x298FA\n0x8CFE\t0x5F3B\n0x8D40\t0x20B9F\n0x8D42\t0x221C1\n0x8D43\t0x2896D\n0x8D44\t0x4102\n0x8D45\t0x46BB\n0x8D46\t0x29079\n0x8D47\t0x3F07\n0x8D48\t0x9FB3\n0x8D49\t0x2A1B5\n0x8D4A\t0x40F8\n0x8D4B\t0x37D6\n0x8D4C\t0x46F7\n0x8D4D\t0x26C46\n0x8D4E\t0x417C\n0x8D4F\t0x286B2\n0x8D50\t0x273FF\n0x8D51\t0x456D\n0x8D52\t0x38D4\n0x8D53\t0x2549A\n0x8D54\t0x4561\n0x8D55\t0x451B\n0x8D56\t0x4D89\n0x8D57\t0x4C7B\n0x8D58\t0x4D76\n0x8D59\t0x45EA\n0x8D5A\t0x3FC8\n0x8D5B\t0x24B0F\n0x8D5C\t0x3661\n0x8D5D\t0x44DE\n0x8D5E\t0x44BD\n0x8D5F\t0x41ED\n0x8D60\t0x5D3E\n0x8D61\t0x5D48\n0x8D62\t0x5D56\n0x8D63\t0x3DFC\n0x8D64\t0x380F\n0x8D65\t0x5DA4\n0x8D66\t0x5DB9\n0x8D67\t0x3820\n0x8D68\t0x3838\n0x8D69\t0x5E42\n0x8D6A\t0x5EBD\n0x8D6B\t0x5F25\n0x8D6C\t0x5F83\n0x8D6D\t0x3908\n0x8D6E\t0x3914\n0x8D6F\t0x393F\n0x8D70\t0x394D\n0x8D71\t0x60D7\n0x8D72\t0x613D\n0x8D73\t0x5CE5\n0x8D74\t0x3989\n0x8D75\t0x61B7\n0x8D76\t0x61B9\n0x8D77\t0x61CF\n0x8D78\t0x39B8\n0x8D79\t0x622C\n0x8D7A\t0x6290\n0x8D7B\t0x62E5\n0x8D7C\t0x6318\n0x8D7D\t0x39F8\n0x8D7E\t0x56B1\n0x8DA1\t0x3A03\n0x8DA2\t0x63E2\n0x8DA3\t0x63FB\n0x8DA4\t0x6407\n0x8DA5\t0x645A\n0x8DA6\t0x3A4B\n0x8DA7\t0x64C0\n0x8DA8\t0x5D15\n0x8DA9\t0x5621\n0x8DAA\t0x9F9F\n0x8DAB\t0x3A97\n0x8DAC\t0x6586\n0x8DAD\t0x3ABD\n0x8DAE\t0x65FF\n0x8DAF\t0x6653\n0x8DB0\t0x3AF2\n0x8DB1\t0x6692\n0x8DB2\t0x3B22\n0x8DB3\t0x6716\n0x8DB4\t0x3B42\n0x8DB5\t0x67A4\n0x8DB6\t0x6800\n0x8DB7\t0x3B58\n0x8DB8\t0x684A\n0x8DB9\t0x6884\n0x8DBA\t0x3B72\n0x8DBB\t0x3B71\n0x8DBC\t0x3B7B\n0x8DBD\t0x6909\n0x8DBE\t0x6943\n0x8DBF\t0x725C\n0x8DC0\t0x6964\n0x8DC1\t0x699F\n0x8DC2\t0x6985\n0x8DC3\t0x3BBC\n0x8DC4\t0x69D6\n0x8DC5\t0x3BDD\n0x8DC6\t0x6A65\n0x8DC7\t0x6A74\n0x8DC8\t0x6A71\n0x8DC9\t0x6A82\n0x8DCA\t0x3BEC\n0x8DCB\t0x6A99\n0x8DCC\t0x3BF2\n0x8DCD\t0x6AAB\n0x8DCE\t0x6AB5\n0x8DCF\t0x6AD4\n0x8DD0\t0x6AF6\n0x8DD1\t0x6B81\n0x8DD2\t0x6BC1\n0x8DD3\t0x6BEA\n0x8DD4\t0x6C75\n0x8DD5\t0x6CAA\n0x8DD6\t0x3CCB\n0x8DD7\t0x6D02\n0x8DD8\t0x6D06\n0x8DD9\t0x6D26\n0x8DDA\t0x6D81\n0x8DDB\t0x3CEF\n0x8DDC\t0x6DA4\n0x8DDD\t0x6DB1\n0x8DDE\t0x6E15\n0x8DDF\t0x6E18\n0x8DE0\t0x6E29\n0x8DE1\t0x6E86\n0x8DE2\t0x289C0\n0x8DE3\t0x6EBB\n0x8DE4\t0x6EE2\n0x8DE5\t0x6EDA\n0x8DE6\t0x9F7F\n0x8DE7\t0x6EE8\n0x8DE8\t0x6EE9\n0x8DE9\t0x6F24\n0x8DEA\t0x6F34\n0x8DEB\t0x3D46\n0x8DEC\t0x23F41\n0x8DED\t0x6F81\n0x8DEE\t0x6FBE\n0x8DEF\t0x3D6A\n0x8DF0\t0x3D75\n0x8DF1\t0x71B7\n0x8DF2\t0x5C99\n0x8DF3\t0x3D8A\n0x8DF4\t0x702C\n0x8DF5\t0x3D91\n0x8DF6\t0x7050\n0x8DF7\t0x7054\n0x8DF8\t0x706F\n0x8DF9\t0x707F\n0x8DFA\t0x7089\n0x8DFB\t0x20325\n0x8DFC\t0x43C1\n0x8DFD\t0x35F1\n0x8DFE\t0x20ED8\n0x8E40\t0x23ED7\n0x8E41\t0x57BE\n0x8E42\t0x26ED3\n0x8E43\t0x713E\n0x8E44\t0x257E0\n0x8E45\t0x364E\n0x8E46\t0x69A2\n0x8E47\t0x28BE9\n0x8E48\t0x5B74\n0x8E49\t0x7A49\n0x8E4A\t0x258E1\n0x8E4B\t0x294D9\n0x8E4C\t0x7A65\n0x8E4D\t0x7A7D\n0x8E4E\t0x259AC\n0x8E4F\t0x7ABB\n0x8E50\t0x7AB0\n0x8E51\t0x7AC2\n0x8E52\t0x7AC3\n0x8E53\t0x71D1\n0x8E54\t0x2648D\n0x8E55\t0x41CA\n0x8E56\t0x7ADA\n0x8E57\t0x7ADD\n0x8E58\t0x7AEA\n0x8E59\t0x41EF\n0x8E5A\t0x54B2\n0x8E5B\t0x25C01\n0x8E5C\t0x7B0B\n0x8E5D\t0x7B55\n0x8E5E\t0x7B29\n0x8E5F\t0x2530E\n0x8E60\t0x25CFE\n0x8E61\t0x7BA2\n0x8E62\t0x7B6F\n0x8E63\t0x839C\n0x8E64\t0x25BB4\n0x8E65\t0x26C7F\n0x8E66\t0x7BD0\n0x8E67\t0x8421\n0x8E68\t0x7B92\n0x8E6A\t0x25D20\n0x8E6B\t0x3DAD\n0x8E6C\t0x25C65\n0x8E6D\t0x8492\n0x8E6E\t0x7BFA\n0x8E70\t0x7C35\n0x8E71\t0x25CC1\n0x8E72\t0x7C44\n0x8E73\t0x7C83\n0x8E74\t0x24882\n0x8E75\t0x7CA6\n0x8E76\t0x667D\n0x8E77\t0x24578\n0x8E78\t0x7CC9\n0x8E79\t0x7CC7\n0x8E7A\t0x7CE6\n0x8E7B\t0x7C74\n0x8E7C\t0x7CF3\n0x8E7D\t0x7CF5\n0x8EA1\t0x7E67\n0x8EA2\t0x451D\n0x8EA3\t0x26E44\n0x8EA4\t0x7D5D\n0x8EA5\t0x26ED6\n0x8EA6\t0x748D\n0x8EA7\t0x7D89\n0x8EA8\t0x7DAB\n0x8EA9\t0x7135\n0x8EAA\t0x7DB3\n0x8EAC\t0x24057\n0x8EAD\t0x26029\n0x8EAE\t0x7DE4\n0x8EAF\t0x3D13\n0x8EB0\t0x7DF5\n0x8EB1\t0x217F9\n0x8EB2\t0x7DE5\n0x8EB3\t0x2836D\n0x8EB5\t0x26121\n0x8EB6\t0x2615A\n0x8EB7\t0x7E6E\n0x8EB8\t0x7E92\n0x8EB9\t0x432B\n0x8EBA\t0x946C\n0x8EBB\t0x7E27\n0x8EBC\t0x7F40\n0x8EBD\t0x7F41\n0x8EBE\t0x7F47\n0x8EBF\t0x7936\n0x8EC0\t0x262D0\n0x8EC1\t0x99E1\n0x8EC2\t0x7F97\n0x8EC3\t0x26351\n0x8EC4\t0x7FA3\n0x8EC5\t0x21661\n0x8EC6\t0x20068\n0x8EC7\t0x455C\n0x8EC8\t0x23766\n0x8EC9\t0x4503\n0x8ECA\t0x2833A\n0x8ECB\t0x7FFA\n0x8ECC\t0x26489\n0x8ECE\t0x8008\n0x8ECF\t0x801D\n0x8ED1\t0x802F\n0x8ED2\t0x2A087\n0x8ED3\t0x26CC3\n0x8ED4\t0x803B\n0x8ED5\t0x803C\n0x8ED6\t0x8061\n0x8ED7\t0x22714\n0x8ED8\t0x4989\n0x8ED9\t0x26626\n0x8EDA\t0x23DE3\n0x8EDB\t0x266E8\n0x8EDC\t0x6725\n0x8EDD\t0x80A7\n0x8EDE\t0x28A48\n0x8EDF\t0x8107\n0x8EE0\t0x811A\n0x8EE1\t0x58B0\n0x8EE2\t0x226F6\n0x8EE3\t0x6C7F\n0x8EE4\t0x26498\n0x8EE5\t0x24FB8\n0x8EE6\t0x64E7\n0x8EE7\t0x2148A\n0x8EE8\t0x8218\n0x8EE9\t0x2185E\n0x8EEA\t0x6A53\n0x8EEB\t0x24A65\n0x8EEC\t0x24A95\n0x8EED\t0x447A\n0x8EEE\t0x8229\n0x8EEF\t0x20B0D\n0x8EF0\t0x26A52\n0x8EF1\t0x23D7E\n0x8EF2\t0x4FF9\n0x8EF3\t0x214FD\n0x8EF4\t0x84E2\n0x8EF5\t0x8362\n0x8EF6\t0x26B0A\n0x8EF7\t0x249A7\n0x8EF8\t0x23530\n0x8EF9\t0x21773\n0x8EFA\t0x23DF8\n0x8EFB\t0x82AA\n0x8EFC\t0x691B\n0x8EFD\t0x2F994\n0x8EFE\t0x41DB\n0x8F40\t0x854B\n0x8F41\t0x82D0\n0x8F42\t0x831A\n0x8F43\t0x20E16\n0x8F44\t0x217B4\n0x8F45\t0x36C1\n0x8F46\t0x2317D\n0x8F47\t0x2355A\n0x8F48\t0x827B\n0x8F49\t0x82E2\n0x8F4A\t0x8318\n0x8F4B\t0x23E8B\n0x8F4C\t0x26DA3\n0x8F4D\t0x26B05\n0x8F4E\t0x26B97\n0x8F4F\t0x235CE\n0x8F50\t0x3DBF\n0x8F51\t0x831D\n0x8F52\t0x55EC\n0x8F53\t0x8385\n0x8F54\t0x450B\n0x8F55\t0x26DA5\n0x8F56\t0x83AC\n0x8F58\t0x83D3\n0x8F59\t0x347E\n0x8F5A\t0x26ED4\n0x8F5B\t0x6A57\n0x8F5C\t0x855A\n0x8F5D\t0x3496\n0x8F5E\t0x26E42\n0x8F5F\t0x22EEF\n0x8F60\t0x8458\n0x8F61\t0x25BE4\n0x8F62\t0x8471\n0x8F63\t0x3DD3\n0x8F64\t0x44E4\n0x8F65\t0x6AA7\n0x8F66\t0x844A\n0x8F67\t0x23CB5\n0x8F68\t0x7958\n0x8F6A\t0x26B96\n0x8F6B\t0x26E77\n0x8F6C\t0x26E43\n0x8F6D\t0x84DE\n0x8F6F\t0x8391\n0x8F70\t0x44A0\n0x8F71\t0x8493\n0x8F72\t0x84E4\n0x8F73\t0x25C91\n0x8F74\t0x4240\n0x8F75\t0x25CC0\n0x8F76\t0x4543\n0x8F77\t0x8534\n0x8F78\t0x5AF2\n0x8F79\t0x26E99\n0x8F7A\t0x4527\n0x8F7B\t0x8573\n0x8F7C\t0x4516\n0x8F7D\t0x67BF\n0x8F7E\t0x8616\n0x8FA1\t0x28625\n0x8FA2\t0x2863B\n0x8FA3\t0x85C1\n0x8FA4\t0x27088\n0x8FA5\t0x8602\n0x8FA6\t0x21582\n0x8FA7\t0x270CD\n0x8FA8\t0x2F9B2\n0x8FA9\t0x456A\n0x8FAA\t0x8628\n0x8FAB\t0x3648\n0x8FAC\t0x218A2\n0x8FAD\t0x53F7\n0x8FAE\t0x2739A\n0x8FAF\t0x867E\n0x8FB0\t0x8771\n0x8FB1\t0x2A0F8\n0x8FB2\t0x87EE\n0x8FB3\t0x22C27\n0x8FB4\t0x87B1\n0x8FB5\t0x87DA\n0x8FB6\t0x880F\n0x8FB7\t0x5661\n0x8FB8\t0x866C\n0x8FB9\t0x6856\n0x8FBA\t0x460F\n0x8FBB\t0x8845\n0x8FBC\t0x8846\n0x8FBD\t0x275E0\n0x8FBE\t0x23DB9\n0x8FBF\t0x275E4\n0x8FC0\t0x885E\n0x8FC1\t0x889C\n0x8FC2\t0x465B\n0x8FC3\t0x88B4\n0x8FC4\t0x88B5\n0x8FC5\t0x63C1\n0x8FC6\t0x88C5\n0x8FC7\t0x7777\n0x8FC8\t0x2770F\n0x8FC9\t0x8987\n0x8FCA\t0x898A\n0x8FCD\t0x89A7\n0x8FCE\t0x89BC\n0x8FCF\t0x28A25\n0x8FD0\t0x89E7\n0x8FD1\t0x27924\n0x8FD2\t0x27ABD\n0x8FD3\t0x8A9C\n0x8FD4\t0x7793\n0x8FD5\t0x91FE\n0x8FD6\t0x8A90\n0x8FD7\t0x27A59\n0x8FD8\t0x7AE9\n0x8FD9\t0x27B3A\n0x8FDA\t0x23F8F\n0x8FDB\t0x4713\n0x8FDC\t0x27B38\n0x8FDD\t0x717C\n0x8FDE\t0x8B0C\n0x8FDF\t0x8B1F\n0x8FE0\t0x25430\n0x8FE1\t0x25565\n0x8FE2\t0x8B3F\n0x8FE3\t0x8B4C\n0x8FE4\t0x8B4D\n0x8FE5\t0x8AA9\n0x8FE6\t0x24A7A\n0x8FE7\t0x8B90\n0x8FE8\t0x8B9B\n0x8FE9\t0x8AAF\n0x8FEA\t0x216DF\n0x8FEB\t0x4615\n0x8FEC\t0x884F\n0x8FED\t0x8C9B\n0x8FEE\t0x27D54\n0x8FEF\t0x27D8F\n0x8FF0\t0x2F9D4\n0x8FF1\t0x3725\n0x8FF2\t0x27D53\n0x8FF3\t0x8CD6\n0x8FF4\t0x27D98\n0x8FF5\t0x27DBD\n0x8FF6\t0x8D12\n0x8FF7\t0x8D03\n0x8FF8\t0x21910\n0x8FF9\t0x8CDB\n0x8FFA\t0x705C\n0x8FFB\t0x8D11\n0x8FFC\t0x24CC9\n0x8FFD\t0x3ED0\n0x9040\t0x8DA9\n0x9041\t0x28002\n0x9042\t0x21014\n0x9043\t0x2498A\n0x9044\t0x3B7C\n0x9045\t0x281BC\n0x9046\t0x2710C\n0x9047\t0x7AE7\n0x9048\t0x8EAD\n0x9049\t0x8EB6\n0x904A\t0x8EC3\n0x904B\t0x92D4\n0x904C\t0x8F19\n0x904D\t0x8F2D\n0x904E\t0x28365\n0x904F\t0x28412\n0x9050\t0x8FA5\n0x9051\t0x9303\n0x9052\t0x2A29F\n0x9053\t0x20A50\n0x9054\t0x8FB3\n0x9055\t0x492A\n0x9056\t0x289DE\n0x9057\t0x2853D\n0x9058\t0x23DBB\n0x9059\t0x5EF8\n0x905A\t0x23262\n0x905B\t0x8FF9\n0x905C\t0x2A014\n0x905D\t0x286BC\n0x905E\t0x28501\n0x905F\t0x22325\n0x9060\t0x3980\n0x9061\t0x26ED7\n0x9062\t0x9037\n0x9063\t0x2853C\n0x9064\t0x27ABE\n0x9065\t0x9061\n0x9066\t0x2856C\n0x9067\t0x2860B\n0x9068\t0x90A8\n0x9069\t0x28713\n0x906A\t0x90C4\n0x906B\t0x286E6\n0x906C\t0x90AE\n0x906E\t0x9167\n0x906F\t0x3AF0\n0x9070\t0x91A9\n0x9071\t0x91C4\n0x9072\t0x7CAC\n0x9073\t0x28933\n0x9074\t0x21E89\n0x9075\t0x920E\n0x9076\t0x6C9F\n0x9077\t0x9241\n0x9078\t0x9262\n0x9079\t0x255B9\n0x907B\t0x28AC6\n0x907C\t0x23C9B\n0x907D\t0x28B0C\n0x907E\t0x255DB\n0x90A1\t0x20D31\n0x90A2\t0x932C\n0x90A3\t0x936B\n0x90A4\t0x28AE1\n0x90A5\t0x28BEB\n0x90A6\t0x708F\n0x90A7\t0x5AC3\n0x90A8\t0x28AE2\n0x90A9\t0x28AE5\n0x90AA\t0x4965\n0x90AB\t0x9244\n0x90AC\t0x28BEC\n0x90AD\t0x28C39\n0x90AE\t0x28BFF\n0x90AF\t0x9373\n0x90B0\t0x945B\n0x90B1\t0x8EBC\n0x90B2\t0x9585\n0x90B3\t0x95A6\n0x90B4\t0x9426\n0x90B5\t0x95A0\n0x90B6\t0x6FF6\n0x90B7\t0x42B9\n0x90B8\t0x2267A\n0x90B9\t0x286D8\n0x90BA\t0x2127C\n0x90BB\t0x23E2E\n0x90BC\t0x49DF\n0x90BD\t0x6C1C\n0x90BE\t0x967B\n0x90BF\t0x9696\n0x90C0\t0x416C\n0x90C1\t0x96A3\n0x90C2\t0x26ED5\n0x90C3\t0x61DA\n0x90C4\t0x96B6\n0x90C5\t0x78F5\n0x90C6\t0x28AE0\n0x90C7\t0x96BD\n0x90C8\t0x53CC\n0x90C9\t0x49A1\n0x90CA\t0x26CB8\n0x90CB\t0x20274\n0x90CC\t0x26410\n0x90CD\t0x290AF\n0x90CE\t0x290E5\n0x90CF\t0x24AD1\n0x90D0\t0x21915\n0x90D1\t0x2330A\n0x90D2\t0x9731\n0x90D3\t0x8642\n0x90D4\t0x9736\n0x90D5\t0x4A0F\n0x90D6\t0x453D\n0x90D7\t0x4585\n0x90D8\t0x24AE9\n0x90D9\t0x7075\n0x90DA\t0x5B41\n0x90DB\t0x971B\n0x90DD\t0x291D5\n0x90DE\t0x9757\n0x90DF\t0x5B4A\n0x90E0\t0x291EB\n0x90E1\t0x975F\n0x90E2\t0x9425\n0x90E3\t0x50D0\n0x90E4\t0x230B7\n0x90E5\t0x230BC\n0x90E6\t0x9789\n0x90E7\t0x979F\n0x90E8\t0x97B1\n0x90E9\t0x97BE\n0x90EA\t0x97C0\n0x90EB\t0x97D2\n0x90EC\t0x97E0\n0x90ED\t0x2546C\n0x90EE\t0x97EE\n0x90EF\t0x741C\n0x90F0\t0x29433\n0x90F2\t0x97F5\n0x90F3\t0x2941D\n0x90F4\t0x2797A\n0x90F5\t0x4AD1\n0x90F6\t0x9834\n0x90F7\t0x9833\n0x90F8\t0x984B\n0x90F9\t0x9866\n0x90FA\t0x3B0E\n0x90FB\t0x27175\n0x90FC\t0x3D51\n0x90FD\t0x20630\n0x90FE\t0x2415C\n0x9140\t0x25706\n0x9141\t0x98CA\n0x9142\t0x98B7\n0x9143\t0x98C8\n0x9144\t0x98C7\n0x9145\t0x4AFF\n0x9146\t0x26D27\n0x9147\t0x216D3\n0x9148\t0x55B0\n0x9149\t0x98E1\n0x914A\t0x98E6\n0x914B\t0x98EC\n0x914C\t0x9378\n0x914D\t0x9939\n0x914E\t0x24A29\n0x914F\t0x4B72\n0x9150\t0x29857\n0x9151\t0x29905\n0x9152\t0x99F5\n0x9153\t0x9A0C\n0x9154\t0x9A3B\n0x9155\t0x9A10\n0x9156\t0x9A58\n0x9157\t0x25725\n0x9158\t0x36C4\n0x9159\t0x290B1\n0x915A\t0x29BD5\n0x915B\t0x9AE0\n0x915C\t0x9AE2\n0x915D\t0x29B05\n0x915E\t0x9AF4\n0x915F\t0x4C0E\n0x9160\t0x9B14\n0x9161\t0x9B2D\n0x9162\t0x28600\n0x9163\t0x5034\n0x9164\t0x9B34\n0x9165\t0x269A8\n0x9166\t0x38C3\n0x9167\t0x2307D\n0x9168\t0x9B50\n0x9169\t0x9B40\n0x916A\t0x29D3E\n0x916B\t0x5A45\n0x916C\t0x21863\n0x916D\t0x9B8E\n0x916E\t0x2424B\n0x916F\t0x9C02\n0x9170\t0x9BFF\n0x9171\t0x9C0C\n0x9172\t0x29E68\n0x9173\t0x9DD4\n0x9174\t0x29FB7\n0x9175\t0x2A192\n0x9176\t0x2A1AB\n0x9177\t0x2A0E1\n0x9178\t0x2A123\n0x9179\t0x2A1DF\n0x917A\t0x9D7E\n0x917B\t0x9D83\n0x917C\t0x2A134\n0x917D\t0x9E0E\n0x917E\t0x6888\n0x91A1\t0x9DC4\n0x91A2\t0x2215B\n0x91A3\t0x2A193\n0x91A4\t0x2A220\n0x91A5\t0x2193B\n0x91A6\t0x2A233\n0x91A7\t0x9D39\n0x91A8\t0x2A0B9\n0x91A9\t0x2A2B4\n0x91AA\t0x9E90\n0x91AB\t0x9E95\n0x91AC\t0x9E9E\n0x91AD\t0x9EA2\n0x91AE\t0x4D34\n0x91AF\t0x9EAA\n0x91B0\t0x9EAF\n0x91B1\t0x24364\n0x91B2\t0x9EC1\n0x91B3\t0x3B60\n0x91B4\t0x39E5\n0x91B5\t0x3D1D\n0x91B6\t0x4F32\n0x91B7\t0x37BE\n0x91B8\t0x28C2B\n0x91B9\t0x9F02\n0x91BA\t0x9F08\n0x91BB\t0x4B96\n0x91BC\t0x9424\n0x91BD\t0x26DA2\n0x91BE\t0x9F17\n0x91C0\t0x9F39\n0x91C1\t0x569F\n0x91C2\t0x568A\n0x91C3\t0x9F45\n0x91C4\t0x99B8\n0x91C5\t0x2908B\n0x91C6\t0x97F2\n0x91C7\t0x847F\n0x91C8\t0x9F62\n0x91C9\t0x9F69\n0x91CA\t0x7ADC\n0x91CB\t0x9F8E\n0x91CC\t0x7216\n0x91CD\t0x4BBE\n0x91CE\t0x24975\n0x91CF\t0x249BB\n0x91D0\t0x7177\n0x91D1\t0x249F8\n0x91D2\t0x24348\n0x91D3\t0x24A51\n0x91D4\t0x739E\n0x91D5\t0x28BDA\n0x91D6\t0x218FA\n0x91D7\t0x799F\n0x91D8\t0x2897E\n0x91D9\t0x28E36\n0x91DA\t0x9369\n0x91DB\t0x93F3\n0x91DC\t0x28A44\n0x91DD\t0x92EC\n0x91DE\t0x9381\n0x91DF\t0x93CB\n0x91E0\t0x2896C\n0x91E1\t0x244B9\n0x91E2\t0x7217\n0x91E3\t0x3EEB\n0x91E4\t0x7772\n0x91E5\t0x7A43\n0x91E6\t0x70D0\n0x91E7\t0x24473\n0x91E8\t0x243F8\n0x91E9\t0x717E\n0x91EA\t0x217EF\n0x91EB\t0x70A3\n0x91EC\t0x218BE\n0x91ED\t0x23599\n0x91EE\t0x3EC7\n0x91EF\t0x21885\n0x91F0\t0x2542F\n0x91F1\t0x217F8\n0x91F2\t0x3722\n0x91F3\t0x216FB\n0x91F4\t0x21839\n0x91F5\t0x36E1\n0x91F6\t0x21774\n0x91F7\t0x218D1\n0x91F8\t0x25F4B\n0x91F9\t0x3723\n0x91FA\t0x216C0\n0x91FB\t0x575B\n0x91FC\t0x24A25\n0x91FD\t0x213FE\n0x91FE\t0x212A8\n0x9240\t0x213C6\n0x9241\t0x214B6\n0x9242\t0x8503\n0x9243\t0x236A6\n0x9245\t0x8455\n0x9246\t0x24994\n0x9247\t0x27165\n0x9248\t0x23E31\n0x9249\t0x2555C\n0x924A\t0x23EFB\n0x924B\t0x27052\n0x924C\t0x44F4\n0x924D\t0x236EE\n0x924E\t0x2999D\n0x924F\t0x26F26\n0x9250\t0x67F9\n0x9251\t0x3733\n0x9252\t0x3C15\n0x9253\t0x3DE7\n0x9254\t0x586C\n0x9255\t0x21922\n0x9256\t0x6810\n0x9257\t0x4057\n0x9258\t0x2373F\n0x9259\t0x240E1\n0x925A\t0x2408B\n0x925B\t0x2410F\n0x925C\t0x26C21\n0x925D\t0x54CB\n0x925E\t0x569E\n0x925F\t0x266B1\n0x9260\t0x5692\n0x9261\t0x20FDF\n0x9262\t0x20BA8\n0x9263\t0x20E0D\n0x9264\t0x93C6\n0x9265\t0x28B13\n0x9266\t0x939C\n0x9267\t0x4EF8\n0x9268\t0x512B\n0x9269\t0x3819\n0x926A\t0x24436\n0x926B\t0x4EBC\n0x926C\t0x20465\n0x926D\t0x2037F\n0x926E\t0x4F4B\n0x926F\t0x4F8A\n0x9270\t0x25651\n0x9271\t0x5A68\n0x9272\t0x201AB\n0x9273\t0x203CB\n0x9274\t0x3999\n0x9275\t0x2030A\n0x9276\t0x20414\n0x9277\t0x3435\n0x9278\t0x4F29\n0x9279\t0x202C0\n0x927A\t0x28EB3\n0x927B\t0x20275\n0x927C\t0x8ADA\n0x927D\t0x2020C\n0x927E\t0x4E98\n0x92A1\t0x50CD\n0x92A2\t0x510D\n0x92A3\t0x4FA2\n0x92A4\t0x4F03\n0x92A5\t0x24A0E\n0x92A6\t0x23E8A\n0x92A7\t0x4F42\n0x92A8\t0x502E\n0x92A9\t0x506C\n0x92AA\t0x5081\n0x92AB\t0x4FCC\n0x92AC\t0x4FE5\n0x92AD\t0x5058\n0x92AE\t0x50FC\n0x92B3\t0x6E76\n0x92B4\t0x23595\n0x92B5\t0x23E39\n0x92B6\t0x23EBF\n0x92B7\t0x6D72\n0x92B8\t0x21884\n0x92B9\t0x23E89\n0x92BA\t0x51A8\n0x92BB\t0x51C3\n0x92BC\t0x205E0\n0x92BD\t0x44DD\n0x92BE\t0x204A3\n0x92BF\t0x20492\n0x92C0\t0x20491\n0x92C1\t0x8D7A\n0x92C2\t0x28A9C\n0x92C3\t0x2070E\n0x92C4\t0x5259\n0x92C5\t0x52A4\n0x92C6\t0x20873\n0x92C7\t0x52E1\n0x92C9\t0x467A\n0x92CA\t0x718C\n0x92CB\t0x2438C\n0x92CC\t0x20C20\n0x92CD\t0x249AC\n0x92CE\t0x210E4\n0x92CF\t0x69D1\n0x92D0\t0x20E1D\n0x92D2\t0x3EDE\n0x92D3\t0x7499\n0x92D4\t0x7414\n0x92D5\t0x7456\n0x92D6\t0x7398\n0x92D7\t0x4B8E\n0x92D8\t0x24ABC\n0x92D9\t0x2408D\n0x92DA\t0x53D0\n0x92DB\t0x3584\n0x92DC\t0x720F\n0x92DD\t0x240C9\n0x92DE\t0x55B4\n0x92DF\t0x20345\n0x92E0\t0x54CD\n0x92E1\t0x20BC6\n0x92E2\t0x571D\n0x92E3\t0x925D\n0x92E4\t0x96F4\n0x92E5\t0x9366\n0x92E6\t0x57DD\n0x92E7\t0x578D\n0x92E8\t0x577F\n0x92E9\t0x363E\n0x92EA\t0x58CB\n0x92EB\t0x5A99\n0x92EC\t0x28A46\n0x92ED\t0x216FA\n0x92EE\t0x2176F\n0x92EF\t0x21710\n0x92F0\t0x5A2C\n0x92F1\t0x59B8\n0x92F2\t0x928F\n0x92F3\t0x5A7E\n0x92F4\t0x5ACF\n0x92F5\t0x5A12\n0x92F6\t0x25946\n0x92F7\t0x219F3\n0x92F8\t0x21861\n0x92F9\t0x24295\n0x92FA\t0x36F5\n0x92FB\t0x6D05\n0x92FC\t0x7443\n0x92FD\t0x5A21\n0x92FE\t0x25E83\n0x9340\t0x5A81\n0x9341\t0x28BD7\n0x9342\t0x20413\n0x9343\t0x93E0\n0x9344\t0x748C\n0x9345\t0x21303\n0x9346\t0x7105\n0x9347\t0x4972\n0x9348\t0x9408\n0x9349\t0x289FB\n0x934A\t0x93BD\n0x934B\t0x37A0\n0x934C\t0x5C1E\n0x934D\t0x5C9E\n0x934E\t0x5E5E\n0x934F\t0x5E48\n0x9350\t0x21996\n0x9351\t0x2197C\n0x9352\t0x23AEE\n0x9353\t0x5ECD\n0x9354\t0x5B4F\n0x9355\t0x21903\n0x9356\t0x21904\n0x9357\t0x3701\n0x9358\t0x218A0\n0x9359\t0x36DD\n0x935A\t0x216FE\n0x935B\t0x36D3\n0x935C\t0x812A\n0x935D\t0x28A47\n0x935E\t0x21DBA\n0x935F\t0x23472\n0x9360\t0x289A8\n0x9361\t0x5F0C\n0x9362\t0x5F0E\n0x9363\t0x21927\n0x9364\t0x217AB\n0x9365\t0x5A6B\n0x9366\t0x2173B\n0x9367\t0x5B44\n0x9368\t0x8614\n0x9369\t0x275FD\n0x936A\t0x8860\n0x936B\t0x607E\n0x936C\t0x22860\n0x936D\t0x2262B\n0x936E\t0x5FDB\n0x936F\t0x3EB8\n0x9370\t0x225AF\n0x9371\t0x225BE\n0x9372\t0x29088\n0x9373\t0x26F73\n0x9374\t0x61C0\n0x9375\t0x2003E\n0x9376\t0x20046\n0x9377\t0x2261B\n0x9378\t0x6199\n0x9379\t0x6198\n0x937A\t0x6075\n0x937B\t0x22C9B\n0x937C\t0x22D07\n0x937D\t0x246D4\n0x937E\t0x2914D\n0x93A1\t0x6471\n0x93A2\t0x24665\n0x93A3\t0x22B6A\n0x93A4\t0x3A29\n0x93A5\t0x22B22\n0x93A6\t0x23450\n0x93A7\t0x298EA\n0x93A8\t0x22E78\n0x93A9\t0x6337\n0x93AA\t0x2A45B\n0x93AB\t0x64B6\n0x93AC\t0x6331\n0x93AD\t0x63D1\n0x93AE\t0x249E3\n0x93AF\t0x22D67\n0x93B0\t0x62A4\n0x93B1\t0x22CA1\n0x93B2\t0x643B\n0x93B3\t0x656B\n0x93B4\t0x6972\n0x93B5\t0x3BF4\n0x93B6\t0x2308E\n0x93B7\t0x232AD\n0x93B8\t0x24989\n0x93B9\t0x232AB\n0x93BA\t0x550D\n0x93BB\t0x232E0\n0x93BC\t0x218D9\n0x93BD\t0x2943F\n0x93BE\t0x66CE\n0x93BF\t0x23289\n0x93C0\t0x231B3\n0x93C1\t0x3AE0\n0x93C2\t0x4190\n0x93C3\t0x25584\n0x93C4\t0x28B22\n0x93C5\t0x2558F\n0x93C6\t0x216FC\n0x93C7\t0x2555B\n0x93C8\t0x25425\n0x93C9\t0x78EE\n0x93CA\t0x23103\n0x93CB\t0x2182A\n0x93CC\t0x23234\n0x93CD\t0x3464\n0x93CE\t0x2320F\n0x93CF\t0x23182\n0x93D0\t0x242C9\n0x93D1\t0x668E\n0x93D2\t0x26D24\n0x93D3\t0x666B\n0x93D4\t0x4B93\n0x93D5\t0x6630\n0x93D6\t0x27870\n0x93D7\t0x21DEB\n0x93D8\t0x6663\n0x93D9\t0x232D2\n0x93DA\t0x232E1\n0x93DB\t0x661E\n0x93DC\t0x25872\n0x93DD\t0x38D1\n0x93DE\t0x2383A\n0x93DF\t0x237BC\n0x93E0\t0x3B99\n0x93E1\t0x237A2\n0x93E2\t0x233FE\n0x93E3\t0x74D0\n0x93E4\t0x3B96\n0x93E5\t0x678F\n0x93E6\t0x2462A\n0x93E7\t0x68B6\n0x93E8\t0x681E\n0x93E9\t0x3BC4\n0x93EA\t0x6ABE\n0x93EB\t0x3863\n0x93EC\t0x237D5\n0x93ED\t0x24487\n0x93EE\t0x6A33\n0x93EF\t0x6A52\n0x93F0\t0x6AC9\n0x93F1\t0x6B05\n0x93F2\t0x21912\n0x93F3\t0x6511\n0x93F4\t0x6898\n0x93F5\t0x6A4C\n0x93F6\t0x3BD7\n0x93F7\t0x6A7A\n0x93F8\t0x6B57\n0x93F9\t0x23FC0\n0x93FA\t0x23C9A\n0x93FB\t0x93A0\n0x93FC\t0x92F2\n0x93FD\t0x28BEA\n0x93FE\t0x28ACB\n0x9440\t0x9289\n0x9441\t0x2801E\n0x9442\t0x289DC\n0x9443\t0x9467\n0x9444\t0x6DA5\n0x9445\t0x6F0B\n0x9446\t0x249EC\n0x9448\t0x23F7F\n0x9449\t0x3D8F\n0x944A\t0x6E04\n0x944B\t0x2403C\n0x944C\t0x5A3D\n0x944D\t0x6E0A\n0x944E\t0x5847\n0x944F\t0x6D24\n0x9450\t0x7842\n0x9451\t0x713B\n0x9452\t0x2431A\n0x9453\t0x24276\n0x9454\t0x70F1\n0x9455\t0x7250\n0x9456\t0x7287\n0x9457\t0x7294\n0x9458\t0x2478F\n0x9459\t0x24725\n0x945A\t0x5179\n0x945B\t0x24AA4\n0x945C\t0x205EB\n0x945D\t0x747A\n0x945E\t0x23EF8\n0x945F\t0x2365F\n0x9460\t0x24A4A\n0x9461\t0x24917\n0x9462\t0x25FE1\n0x9463\t0x3F06\n0x9464\t0x3EB1\n0x9465\t0x24ADF\n0x9466\t0x28C23\n0x9467\t0x23F35\n0x9468\t0x60A7\n0x9469\t0x3EF3\n0x946A\t0x74CC\n0x946B\t0x743C\n0x946C\t0x9387\n0x946D\t0x7437\n0x946E\t0x449F\n0x946F\t0x26DEA\n0x9470\t0x4551\n0x9471\t0x7583\n0x9472\t0x3F63\n0x9473\t0x24CD9\n0x9474\t0x24D06\n0x9475\t0x3F58\n0x9476\t0x7555\n0x9477\t0x7673\n0x9478\t0x2A5C6\n0x9479\t0x3B19\n0x947A\t0x7468\n0x947B\t0x28ACC\n0x947C\t0x249AB\n0x947D\t0x2498E\n0x947E\t0x3AFB\n0x94A1\t0x3DCD\n0x94A2\t0x24A4E\n0x94A3\t0x3EFF\n0x94A4\t0x249C5\n0x94A5\t0x248F3\n0x94A6\t0x91FA\n0x94A7\t0x5732\n0x94A8\t0x9342\n0x94A9\t0x28AE3\n0x94AA\t0x21864\n0x94AB\t0x50DF\n0x94AC\t0x25221\n0x94AD\t0x251E7\n0x94AE\t0x7778\n0x94AF\t0x23232\n0x94B0\t0x770E\n0x94B1\t0x770F\n0x94B2\t0x777B\n0x94B3\t0x24697\n0x94B4\t0x23781\n0x94B5\t0x3A5E\n0x94B6\t0x248F0\n0x94B7\t0x7438\n0x94B8\t0x749B\n0x94B9\t0x3EBF\n0x94BA\t0x24ABA\n0x94BB\t0x24AC7\n0x94BC\t0x40C8\n0x94BD\t0x24A96\n0x94BE\t0x261AE\n0x94BF\t0x9307\n0x94C0\t0x25581\n0x94C1\t0x781E\n0x94C2\t0x788D\n0x94C3\t0x7888\n0x94C4\t0x78D2\n0x94C5\t0x73D0\n0x94C6\t0x7959\n0x94C7\t0x27741\n0x94C8\t0x256E3\n0x94C9\t0x410E\n0x94CB\t0x8496\n0x94CC\t0x79A5\n0x94CD\t0x6A2D\n0x94CE\t0x23EFA\n0x94CF\t0x7A3A\n0x94D0\t0x79F4\n0x94D1\t0x416E\n0x94D2\t0x216E6\n0x94D3\t0x4132\n0x94D4\t0x9235\n0x94D5\t0x79F1\n0x94D6\t0x20D4C\n0x94D7\t0x2498C\n0x94D8\t0x20299\n0x94D9\t0x23DBA\n0x94DA\t0x2176E\n0x94DB\t0x3597\n0x94DC\t0x556B\n0x94DD\t0x3570\n0x94DE\t0x36AA\n0x94DF\t0x201D4\n0x94E0\t0x20C0D\n0x94E1\t0x7AE2\n0x94E2\t0x5A59\n0x94E3\t0x226F5\n0x94E4\t0x25AAF\n0x94E5\t0x25A9C\n0x94E6\t0x5A0D\n0x94E7\t0x2025B\n0x94E8\t0x78F0\n0x94E9\t0x5A2A\n0x94EA\t0x25BC6\n0x94EB\t0x7AFE\n0x94EC\t0x41F9\n0x94ED\t0x7C5D\n0x94EE\t0x7C6D\n0x94EF\t0x4211\n0x94F0\t0x25BB3\n0x94F1\t0x25EBC\n0x94F2\t0x25EA6\n0x94F3\t0x7CCD\n0x94F4\t0x249F9\n0x94F5\t0x217B0\n0x94F6\t0x7C8E\n0x94F7\t0x7C7C\n0x94F8\t0x7CAE\n0x94F9\t0x6AB2\n0x94FA\t0x7DDC\n0x94FB\t0x7E07\n0x94FC\t0x7DD3\n0x94FD\t0x7F4E\n0x94FE\t0x26261\n0x9540\t0x2615C\n0x9541\t0x27B48\n0x9542\t0x7D97\n0x9543\t0x25E82\n0x9544\t0x426A\n0x9545\t0x26B75\n0x9546\t0x20916\n0x9547\t0x67D6\n0x9548\t0x2004E\n0x9549\t0x235CF\n0x954A\t0x57C4\n0x954B\t0x26412\n0x954C\t0x263F8\n0x954D\t0x24962\n0x954E\t0x7FDD\n0x954F\t0x7B27\n0x9550\t0x2082C\n0x9551\t0x25AE9\n0x9552\t0x25D43\n0x9553\t0x7B0C\n0x9554\t0x25E0E\n0x9555\t0x99E6\n0x9556\t0x8645\n0x9557\t0x9A63\n0x9558\t0x6A1C\n0x9559\t0x2343F\n0x955A\t0x39E2\n0x955B\t0x249F7\n0x955C\t0x265AD\n0x955D\t0x9A1F\n0x955E\t0x265A0\n0x955F\t0x8480\n0x9560\t0x27127\n0x9561\t0x26CD1\n0x9562\t0x44EA\n0x9563\t0x8137\n0x9564\t0x4402\n0x9565\t0x80C6\n0x9566\t0x8109\n0x9567\t0x8142\n0x9568\t0x267B4\n0x9569\t0x98C3\n0x956A\t0x26A42\n0x956B\t0x8262\n0x956C\t0x8265\n0x956D\t0x26A51\n0x956E\t0x8453\n0x956F\t0x26DA7\n0x9570\t0x8610\n0x9571\t0x2721B\n0x9572\t0x5A86\n0x9573\t0x417F\n0x9574\t0x21840\n0x9575\t0x5B2B\n0x9576\t0x218A1\n0x9577\t0x5AE4\n0x9578\t0x218D8\n0x9579\t0x86A0\n0x957A\t0x2F9BC\n0x957B\t0x23D8F\n0x957C\t0x882D\n0x957D\t0x27422\n0x957E\t0x5A02\n0x95A1\t0x886E\n0x95A2\t0x4F45\n0x95A3\t0x8887\n0x95A4\t0x88BF\n0x95A5\t0x88E6\n0x95A6\t0x8965\n0x95A7\t0x894D\n0x95A8\t0x25683\n0x95A9\t0x8954\n0x95AA\t0x27785\n0x95AB\t0x27784\n0x95AC\t0x28BF5\n0x95AD\t0x28BD9\n0x95AE\t0x28B9C\n0x95AF\t0x289F9\n0x95B0\t0x3EAD\n0x95B1\t0x84A3\n0x95B2\t0x46F5\n0x95B3\t0x46CF\n0x95B4\t0x37F2\n0x95B5\t0x8A3D\n0x95B6\t0x8A1C\n0x95B7\t0x29448\n0x95B8\t0x5F4D\n0x95B9\t0x922B\n0x95BA\t0x24284\n0x95BB\t0x65D4\n0x95BC\t0x7129\n0x95BD\t0x70C4\n0x95BE\t0x21845\n0x95BF\t0x9D6D\n0x95C0\t0x8C9F\n0x95C1\t0x8CE9\n0x95C2\t0x27DDC\n0x95C3\t0x599A\n0x95C4\t0x77C3\n0x95C5\t0x59F0\n0x95C6\t0x436E\n0x95C7\t0x36D4\n0x95C8\t0x8E2A\n0x95C9\t0x8EA7\n0x95CA\t0x24C09\n0x95CB\t0x8F30\n0x95CC\t0x8F4A\n0x95CD\t0x42F4\n0x95CE\t0x6C58\n0x95CF\t0x6FBB\n0x95D0\t0x22321\n0x95D1\t0x489B\n0x95D2\t0x6F79\n0x95D3\t0x6E8B\n0x95D4\t0x217DA\n0x95D5\t0x9BE9\n0x95D6\t0x36B5\n0x95D7\t0x2492F\n0x95D8\t0x90BB\n0x95DA\t0x5571\n0x95DB\t0x4906\n0x95DC\t0x91BB\n0x95DD\t0x9404\n0x95DE\t0x28A4B\n0x95DF\t0x4062\n0x95E0\t0x28AFC\n0x95E1\t0x9427\n0x95E2\t0x28C1D\n0x95E3\t0x28C3B\n0x95E4\t0x84E5\n0x95E5\t0x8A2B\n0x95E6\t0x9599\n0x95E7\t0x95A7\n0x95E8\t0x9597\n0x95E9\t0x9596\n0x95EA\t0x28D34\n0x95EB\t0x7445\n0x95EC\t0x3EC2\n0x95ED\t0x248FF\n0x95EE\t0x24A42\n0x95EF\t0x243EA\n0x95F0\t0x3EE7\n0x95F1\t0x23225\n0x95F2\t0x968F\n0x95F3\t0x28EE7\n0x95F4\t0x28E66\n0x95F5\t0x28E65\n0x95F6\t0x3ECC\n0x95F7\t0x249ED\n0x95F8\t0x24A78\n0x95F9\t0x23FEE\n0x95FA\t0x7412\n0x95FB\t0x746B\n0x95FC\t0x3EFC\n0x95FD\t0x9741\n0x95FE\t0x290B0\n0x9640\t0x6847\n0x9641\t0x4A1D\n0x9642\t0x29093\n0x9643\t0x257DF\n0x9645\t0x9368\n0x9646\t0x28989\n0x9647\t0x28C26\n0x9648\t0x28B2F\n0x9649\t0x263BE\n0x964A\t0x92BA\n0x964B\t0x5B11\n0x964C\t0x8B69\n0x964D\t0x493C\n0x964E\t0x73F9\n0x964F\t0x2421B\n0x9650\t0x979B\n0x9651\t0x9771\n0x9652\t0x9938\n0x9653\t0x20F26\n0x9654\t0x5DC1\n0x9655\t0x28BC5\n0x9656\t0x24AB2\n0x9657\t0x981F\n0x9658\t0x294DA\n0x9659\t0x92F6\n0x965A\t0x295D7\n0x965B\t0x91E5\n0x965C\t0x44C0\n0x965D\t0x28B50\n0x965E\t0x24A67\n0x965F\t0x28B64\n0x9660\t0x98DC\n0x9661\t0x28A45\n0x9662\t0x3F00\n0x9663\t0x922A\n0x9664\t0x4925\n0x9665\t0x8414\n0x9666\t0x993B\n0x9667\t0x994D\n0x9668\t0x27B06\n0x9669\t0x3DFD\n0x966A\t0x999B\n0x966B\t0x4B6F\n0x966C\t0x99AA\n0x966D\t0x9A5C\n0x966E\t0x28B65\n0x966F\t0x258C8\n0x9670\t0x6A8F\n0x9671\t0x9A21\n0x9672\t0x5AFE\n0x9673\t0x9A2F\n0x9674\t0x298F1\n0x9675\t0x4B90\n0x9676\t0x29948\n0x9677\t0x99BC\n0x9678\t0x4BBD\n0x9679\t0x4B97\n0x967A\t0x937D\n0x967B\t0x5872\n0x967C\t0x21302\n0x967D\t0x5822\n0x967E\t0x249B8\n0x96A1\t0x214E8\n0x96A2\t0x7844\n0x96A3\t0x2271F\n0x96A4\t0x23DB8\n0x96A5\t0x68C5\n0x96A6\t0x3D7D\n0x96A7\t0x9458\n0x96A8\t0x3927\n0x96A9\t0x6150\n0x96AA\t0x22781\n0x96AB\t0x2296B\n0x96AC\t0x6107\n0x96AD\t0x9C4F\n0x96AE\t0x9C53\n0x96AF\t0x9C7B\n0x96B0\t0x9C35\n0x96B1\t0x9C10\n0x96B2\t0x9B7F\n0x96B3\t0x9BCF\n0x96B4\t0x29E2D\n0x96B5\t0x9B9F\n0x96B6\t0x2A1F5\n0x96B7\t0x2A0FE\n0x96B8\t0x9D21\n0x96B9\t0x4CAE\n0x96BA\t0x24104\n0x96BB\t0x9E18\n0x96BC\t0x4CB0\n0x96BD\t0x9D0C\n0x96BE\t0x2A1B4\n0x96BF\t0x2A0ED\n0x96C0\t0x2A0F3\n0x96C1\t0x2992F\n0x96C2\t0x9DA5\n0x96C3\t0x84BD\n0x96C4\t0x26E12\n0x96C5\t0x26FDF\n0x96C6\t0x26B82\n0x96C7\t0x85FC\n0x96C8\t0x4533\n0x96C9\t0x26DA4\n0x96CA\t0x26E84\n0x96CB\t0x26DF0\n0x96CC\t0x8420\n0x96CD\t0x85EE\n0x96CE\t0x26E00\n0x96CF\t0x237D7\n0x96D0\t0x26064\n0x96D1\t0x79E2\n0x96D2\t0x2359C\n0x96D3\t0x23640\n0x96D4\t0x492D\n0x96D5\t0x249DE\n0x96D6\t0x3D62\n0x96D7\t0x93DB\n0x96D8\t0x92BE\n0x96D9\t0x9348\n0x96DA\t0x202BF\n0x96DB\t0x78B9\n0x96DC\t0x9277\n0x96DD\t0x944D\n0x96DE\t0x4FE4\n0x96DF\t0x3440\n0x96E0\t0x9064\n0x96E1\t0x2555D\n0x96E2\t0x783D\n0x96E3\t0x7854\n0x96E4\t0x78B6\n0x96E5\t0x784B\n0x96E6\t0x21757\n0x96E7\t0x231C9\n0x96E8\t0x24941\n0x96E9\t0x369A\n0x96EA\t0x4F72\n0x96EB\t0x6FDA\n0x96EC\t0x6FD9\n0x96EE\t0x701E\n0x96EF\t0x5414\n0x96F0\t0x241B5\n0x96F1\t0x57BB\n0x96F2\t0x58F3\n0x96F3\t0x578A\n0x96F4\t0x9D16\n0x96F5\t0x57D7\n0x96F6\t0x7134\n0x96F7\t0x34AF\n0x96F8\t0x241AC\n0x96F9\t0x71EB\n0x96FA\t0x26C40\n0x96FB\t0x24F97\n0x96FD\t0x217B5\n0x96FE\t0x28A49\n0x9740\t0x610C\n0x9741\t0x5ACE\n0x9742\t0x5A0B\n0x9743\t0x42BC\n0x9744\t0x24488\n0x9745\t0x372C\n0x9746\t0x4B7B\n0x9747\t0x289FC\n0x9748\t0x93BB\n0x9749\t0x93B8\n0x974A\t0x218D6\n0x974B\t0x20F1D\n0x974C\t0x8472\n0x974D\t0x26CC0\n0x974E\t0x21413\n0x974F\t0x242FA\n0x9750\t0x22C26\n0x9751\t0x243C1\n0x9752\t0x5994\n0x9753\t0x23DB7\n0x9754\t0x26741\n0x9755\t0x7DA8\n0x9756\t0x2615B\n0x9757\t0x260A4\n0x9758\t0x249B9\n0x9759\t0x2498B\n0x975A\t0x289FA\n0x975B\t0x92E5\n0x975C\t0x73E2\n0x975D\t0x3EE9\n0x975E\t0x74B4\n0x975F\t0x28B63\n0x9760\t0x2189F\n0x9761\t0x3EE1\n0x9762\t0x24AB3\n0x9763\t0x6AD8\n0x9764\t0x73F3\n0x9765\t0x73FB\n0x9766\t0x3ED6\n0x9767\t0x24A3E\n0x9768\t0x24A94\n0x9769\t0x217D9\n0x976A\t0x24A66\n0x976B\t0x203A7\n0x976C\t0x21424\n0x976D\t0x249E5\n0x976E\t0x7448\n0x976F\t0x24916\n0x9770\t0x70A5\n0x9771\t0x24976\n0x9772\t0x9284\n0x9773\t0x73E6\n0x9774\t0x935F\n0x9775\t0x204FE\n0x9776\t0x9331\n0x9777\t0x28ACE\n0x9778\t0x28A16\n0x9779\t0x9386\n0x977A\t0x28BE7\n0x977B\t0x255D5\n0x977C\t0x4935\n0x977D\t0x28A82\n0x977E\t0x716B\n0x97A1\t0x24943\n0x97A2\t0x20CFF\n0x97A3\t0x56A4\n0x97A4\t0x2061A\n0x97A5\t0x20BEB\n0x97A6\t0x20CB8\n0x97A7\t0x5502\n0x97A8\t0x79C4\n0x97A9\t0x217FA\n0x97AA\t0x7DFE\n0x97AB\t0x216C2\n0x97AC\t0x24A50\n0x97AD\t0x21852\n0x97AE\t0x452E\n0x97AF\t0x9401\n0x97B0\t0x370A\n0x97B1\t0x28AC0\n0x97B2\t0x249AD\n0x97B3\t0x59B0\n0x97B4\t0x218BF\n0x97B5\t0x21883\n0x97B6\t0x27484\n0x97B7\t0x5AA1\n0x97B8\t0x36E2\n0x97B9\t0x23D5B\n0x97BA\t0x36B0\n0x97BB\t0x925F\n0x97BC\t0x5A79\n0x97BD\t0x28A81\n0x97BE\t0x21862\n0x97BF\t0x9374\n0x97C0\t0x3CCD\n0x97C1\t0x20AB4\n0x97C2\t0x4A96\n0x97C3\t0x398A\n0x97C4\t0x50F4\n0x97C5\t0x3D69\n0x97C6\t0x3D4C\n0x97C7\t0x2139C\n0x97C8\t0x7175\n0x97C9\t0x42FB\n0x97CA\t0x28218\n0x97CB\t0x6E0F\n0x97CC\t0x290E4\n0x97CD\t0x44EB\n0x97CE\t0x6D57\n0x97CF\t0x27E4F\n0x97D0\t0x7067\n0x97D1\t0x6CAF\n0x97D2\t0x3CD6\n0x97D3\t0x23FED\n0x97D4\t0x23E2D\n0x97D5\t0x6E02\n0x97D6\t0x6F0C\n0x97D7\t0x3D6F\n0x97D8\t0x203F5\n0x97D9\t0x7551\n0x97DA\t0x36BC\n0x97DB\t0x34C8\n0x97DC\t0x4680\n0x97DD\t0x3EDA\n0x97DE\t0x4871\n0x97DF\t0x59C4\n0x97E0\t0x926E\n0x97E1\t0x493E\n0x97E2\t0x8F41\n0x97E3\t0x28C1C\n0x97E4\t0x26BC0\n0x97E5\t0x5812\n0x97E6\t0x57C8\n0x97E7\t0x36D6\n0x97E8\t0x21452\n0x97E9\t0x70FE\n0x97EA\t0x24362\n0x97EB\t0x24A71\n0x97EC\t0x22FE3\n0x97ED\t0x212B0\n0x97EE\t0x223BD\n0x97EF\t0x68B9\n0x97F0\t0x6967\n0x97F1\t0x21398\n0x97F2\t0x234E5\n0x97F3\t0x27BF4\n0x97F4\t0x236DF\n0x97F5\t0x28A83\n0x97F6\t0x237D6\n0x97F7\t0x233FA\n0x97F8\t0x24C9F\n0x97F9\t0x6A1A\n0x97FA\t0x236AD\n0x97FB\t0x26CB7\n0x97FC\t0x843E\n0x97FD\t0x44DF\n0x97FE\t0x44CE\n0x9840\t0x26D26\n0x9841\t0x26D51\n0x9842\t0x26C82\n0x9843\t0x26FDE\n0x9844\t0x6F17\n0x9845\t0x27109\n0x9846\t0x833D\n0x9847\t0x2173A\n0x9848\t0x83ED\n0x9849\t0x26C80\n0x984A\t0x27053\n0x984B\t0x217DB\n0x984C\t0x5989\n0x984D\t0x5A82\n0x984E\t0x217B3\n0x984F\t0x5A61\n0x9850\t0x5A71\n0x9851\t0x21905\n0x9852\t0x241FC\n0x9853\t0x372D\n0x9854\t0x59EF\n0x9855\t0x2173C\n0x9856\t0x36C7\n0x9857\t0x718E\n0x9858\t0x9390\n0x9859\t0x669A\n0x985A\t0x242A5\n0x985B\t0x5A6E\n0x985C\t0x5A2B\n0x985D\t0x24293\n0x985E\t0x6A2B\n0x985F\t0x23EF9\n0x9860\t0x27736\n0x9861\t0x2445B\n0x9862\t0x242CA\n0x9863\t0x711D\n0x9864\t0x24259\n0x9865\t0x289E1\n0x9866\t0x4FB0\n0x9867\t0x26D28\n0x9868\t0x5CC2\n0x9869\t0x244CE\n0x986A\t0x27E4D\n0x986B\t0x243BD\n0x986C\t0x6A0C\n0x986D\t0x24256\n0x986E\t0x21304\n0x986F\t0x70A6\n0x9870\t0x7133\n0x9871\t0x243E9\n0x9872\t0x3DA5\n0x9873\t0x6CDF\n0x9874\t0x2F825\n0x9875\t0x24A4F\n0x9876\t0x7E65\n0x9877\t0x59EB\n0x9878\t0x5D2F\n0x9879\t0x3DF3\n0x987A\t0x5F5C\n0x987B\t0x24A5D\n0x987C\t0x217DF\n0x987D\t0x7DA4\n0x987E\t0x8426\n0x98A1\t0x5485\n0x98A2\t0x23AFA\n0x98A3\t0x23300\n0x98A4\t0x20214\n0x98A5\t0x577E\n0x98A6\t0x208D5\n0x98A7\t0x20619\n0x98A8\t0x3FE5\n0x98A9\t0x21F9E\n0x98AA\t0x2A2B6\n0x98AB\t0x7003\n0x98AC\t0x2915B\n0x98AD\t0x5D70\n0x98AE\t0x738F\n0x98AF\t0x7CD3\n0x98B0\t0x28A59\n0x98B1\t0x29420\n0x98B2\t0x4FC8\n0x98B3\t0x7FE7\n0x98B4\t0x72CD\n0x98B5\t0x7310\n0x98B6\t0x27AF4\n0x98B7\t0x7338\n0x98B8\t0x7339\n0x98B9\t0x256F6\n0x98BA\t0x7341\n0x98BB\t0x7348\n0x98BC\t0x3EA9\n0x98BD\t0x27B18\n0x98BE\t0x906C\n0x98BF\t0x71F5\n0x98C0\t0x248F2\n0x98C1\t0x73E1\n0x98C2\t0x81F6\n0x98C3\t0x3ECA\n0x98C4\t0x770C\n0x98C5\t0x3ED1\n0x98C6\t0x6CA2\n0x98C7\t0x56FD\n0x98C8\t0x7419\n0x98C9\t0x741E\n0x98CA\t0x741F\n0x98CB\t0x3EE2\n0x98CC\t0x3EF0\n0x98CD\t0x3EF4\n0x98CE\t0x3EFA\n0x98CF\t0x74D3\n0x98D0\t0x3F0E\n0x98D1\t0x3F53\n0x98D2\t0x7542\n0x98D3\t0x756D\n0x98D4\t0x7572\n0x98D5\t0x758D\n0x98D6\t0x3F7C\n0x98D7\t0x75C8\n0x98D8\t0x75DC\n0x98D9\t0x3FC0\n0x98DA\t0x764D\n0x98DB\t0x3FD7\n0x98DC\t0x7674\n0x98DD\t0x3FDC\n0x98DE\t0x767A\n0x98DF\t0x24F5C\n0x98E0\t0x7188\n0x98E1\t0x5623\n0x98E2\t0x8980\n0x98E3\t0x5869\n0x98E4\t0x401D\n0x98E5\t0x7743\n0x98E6\t0x4039\n0x98E7\t0x6761\n0x98E8\t0x4045\n0x98E9\t0x35DB\n0x98EA\t0x7798\n0x98EB\t0x406A\n0x98EC\t0x406F\n0x98ED\t0x5C5E\n0x98EE\t0x77BE\n0x98EF\t0x77CB\n0x98F0\t0x58F2\n0x98F1\t0x7818\n0x98F2\t0x70B9\n0x98F3\t0x781C\n0x98F4\t0x40A8\n0x98F5\t0x7839\n0x98F6\t0x7847\n0x98F7\t0x7851\n0x98F8\t0x7866\n0x98F9\t0x8448\n0x98FA\t0x25535\n0x98FB\t0x7933\n0x98FC\t0x6803\n0x98FD\t0x7932\n0x98FE\t0x4103\n0x9940\t0x4109\n0x9941\t0x7991\n0x9942\t0x7999\n0x9943\t0x8FBB\n0x9944\t0x7A06\n0x9945\t0x8FBC\n0x9946\t0x4167\n0x9947\t0x7A91\n0x9948\t0x41B2\n0x9949\t0x7ABC\n0x994A\t0x8279\n0x994B\t0x41C4\n0x994C\t0x7ACF\n0x994D\t0x7ADB\n0x994E\t0x41CF\n0x994F\t0x4E21\n0x9950\t0x7B62\n0x9951\t0x7B6C\n0x9952\t0x7B7B\n0x9953\t0x7C12\n0x9954\t0x7C1B\n0x9955\t0x4260\n0x9956\t0x427A\n0x9957\t0x7C7B\n0x9958\t0x7C9C\n0x9959\t0x428C\n0x995A\t0x7CB8\n0x995B\t0x4294\n0x995C\t0x7CED\n0x995D\t0x8F93\n0x995E\t0x70C0\n0x995F\t0x20CCF\n0x9960\t0x7DCF\n0x9961\t0x7DD4\n0x9962\t0x7DD0\n0x9963\t0x7DFD\n0x9964\t0x7FAE\n0x9965\t0x7FB4\n0x9966\t0x729F\n0x9967\t0x4397\n0x9968\t0x8020\n0x9969\t0x8025\n0x996A\t0x7B39\n0x996B\t0x802E\n0x996C\t0x8031\n0x996D\t0x8054\n0x996E\t0x3DCC\n0x996F\t0x57B4\n0x9970\t0x70A0\n0x9971\t0x80B7\n0x9972\t0x80E9\n0x9973\t0x43ED\n0x9974\t0x810C\n0x9975\t0x732A\n0x9976\t0x810E\n0x9977\t0x8112\n0x9978\t0x7560\n0x9979\t0x8114\n0x997A\t0x4401\n0x997B\t0x3B39\n0x997C\t0x8156\n0x997D\t0x8159\n0x997E\t0x815A\n0x99A1\t0x4413\n0x99A2\t0x583A\n0x99A3\t0x817C\n0x99A4\t0x8184\n0x99A5\t0x4425\n0x99A6\t0x8193\n0x99A7\t0x442D\n0x99A8\t0x81A5\n0x99A9\t0x57EF\n0x99AA\t0x81C1\n0x99AB\t0x81E4\n0x99AC\t0x8254\n0x99AD\t0x448F\n0x99AE\t0x82A6\n0x99AF\t0x8276\n0x99B0\t0x82CA\n0x99B1\t0x82D8\n0x99B2\t0x82FF\n0x99B3\t0x44B0\n0x99B4\t0x8357\n0x99B5\t0x9669\n0x99B6\t0x698A\n0x99B7\t0x8405\n0x99B8\t0x70F5\n0x99B9\t0x8464\n0x99BA\t0x60E3\n0x99BB\t0x8488\n0x99BC\t0x4504\n0x99BD\t0x84BE\n0x99BE\t0x84E1\n0x99BF\t0x84F8\n0x99C0\t0x8510\n0x99C1\t0x8538\n0x99C2\t0x8552\n0x99C3\t0x453B\n0x99C4\t0x856F\n0x99C5\t0x8570\n0x99C6\t0x85E0\n0x99C7\t0x4577\n0x99C8\t0x8672\n0x99C9\t0x8692\n0x99CA\t0x86B2\n0x99CB\t0x86EF\n0x99CC\t0x9645\n0x99CD\t0x878B\n0x99CE\t0x4606\n0x99CF\t0x4617\n0x99D0\t0x88AE\n0x99D1\t0x88FF\n0x99D2\t0x8924\n0x99D3\t0x8947\n0x99D4\t0x8991\n0x99D5\t0x27967\n0x99D6\t0x8A29\n0x99D7\t0x8A38\n0x99D8\t0x8A94\n0x99D9\t0x8AB4\n0x99DA\t0x8C51\n0x99DB\t0x8CD4\n0x99DC\t0x8CF2\n0x99DD\t0x8D1C\n0x99DE\t0x4798\n0x99DF\t0x585F\n0x99E0\t0x8DC3\n0x99E1\t0x47ED\n0x99E2\t0x4EEE\n0x99E3\t0x8E3A\n0x99E4\t0x55D8\n0x99E5\t0x5754\n0x99E6\t0x8E71\n0x99E7\t0x55F5\n0x99E8\t0x8EB0\n0x99E9\t0x4837\n0x99EA\t0x8ECE\n0x99EB\t0x8EE2\n0x99EC\t0x8EE4\n0x99ED\t0x8EED\n0x99EE\t0x8EF2\n0x99EF\t0x8FB7\n0x99F0\t0x8FC1\n0x99F1\t0x8FCA\n0x99F2\t0x8FCC\n0x99F3\t0x9033\n0x99F4\t0x99C4\n0x99F5\t0x48AD\n0x99F6\t0x98E0\n0x99F7\t0x9213\n0x99F8\t0x491E\n0x99F9\t0x9228\n0x99FA\t0x9258\n0x99FB\t0x926B\n0x99FC\t0x92B1\n0x99FD\t0x92AE\n0x99FE\t0x92BF\n0x9A40\t0x92E3\n0x9A41\t0x92EB\n0x9A42\t0x92F3\n0x9A43\t0x92F4\n0x9A44\t0x92FD\n0x9A45\t0x9343\n0x9A46\t0x9384\n0x9A47\t0x93AD\n0x9A48\t0x4945\n0x9A49\t0x4951\n0x9A4A\t0x9EBF\n0x9A4B\t0x9417\n0x9A4C\t0x5301\n0x9A4D\t0x941D\n0x9A4E\t0x942D\n0x9A4F\t0x943E\n0x9A50\t0x496A\n0x9A51\t0x9454\n0x9A52\t0x9479\n0x9A53\t0x952D\n0x9A54\t0x95A2\n0x9A55\t0x49A7\n0x9A56\t0x95F4\n0x9A57\t0x9633\n0x9A58\t0x49E5\n0x9A59\t0x67A0\n0x9A5A\t0x4A24\n0x9A5B\t0x9740\n0x9A5C\t0x4A35\n0x9A5D\t0x97B2\n0x9A5E\t0x97C2\n0x9A5F\t0x5654\n0x9A60\t0x4AE4\n0x9A61\t0x60E8\n0x9A62\t0x98B9\n0x9A63\t0x4B19\n0x9A64\t0x98F1\n0x9A65\t0x5844\n0x9A66\t0x990E\n0x9A67\t0x9919\n0x9A68\t0x51B4\n0x9A69\t0x991C\n0x9A6A\t0x9937\n0x9A6B\t0x9942\n0x9A6C\t0x995D\n0x9A6D\t0x9962\n0x9A6E\t0x4B70\n0x9A6F\t0x99C5\n0x9A70\t0x4B9D\n0x9A71\t0x9A3C\n0x9A72\t0x9B0F\n0x9A73\t0x7A83\n0x9A74\t0x9B69\n0x9A75\t0x9B81\n0x9A76\t0x9BDD\n0x9A77\t0x9BF1\n0x9A78\t0x9BF4\n0x9A79\t0x4C6D\n0x9A7A\t0x9C20\n0x9A7B\t0x376F\n0x9A7C\t0x21BC2\n0x9A7D\t0x9D49\n0x9A7E\t0x9C3A\n0x9AA1\t0x9EFE\n0x9AA2\t0x5650\n0x9AA3\t0x9D93\n0x9AA4\t0x9DBD\n0x9AA5\t0x9DC0\n0x9AA6\t0x9DFC\n0x9AA7\t0x94F6\n0x9AA8\t0x8FB6\n0x9AA9\t0x9E7B\n0x9AAA\t0x9EAC\n0x9AAB\t0x9EB1\n0x9AAC\t0x9EBD\n0x9AAD\t0x9EC6\n0x9AAE\t0x94DC\n0x9AAF\t0x9EE2\n0x9AB0\t0x9EF1\n0x9AB1\t0x9EF8\n0x9AB2\t0x7AC8\n0x9AB3\t0x9F44\n0x9AB4\t0x20094\n0x9AB5\t0x202B7\n0x9AB6\t0x203A0\n0x9AB7\t0x691A\n0x9AB8\t0x94C3\n0x9AB9\t0x59AC\n0x9ABA\t0x204D7\n0x9ABB\t0x5840\n0x9ABC\t0x94C1\n0x9ABD\t0x37B9\n0x9ABE\t0x205D5\n0x9ABF\t0x20615\n0x9AC0\t0x20676\n0x9AC1\t0x216BA\n0x9AC2\t0x5757\n0x9AC3\t0x7173\n0x9AC4\t0x20AC2\n0x9AC5\t0x20ACD\n0x9AC6\t0x20BBF\n0x9AC7\t0x546A\n0x9AC8\t0x2F83B\n0x9AC9\t0x20BCB\n0x9ACA\t0x549E\n0x9ACB\t0x20BFB\n0x9ACC\t0x20C3B\n0x9ACD\t0x20C53\n0x9ACE\t0x20C65\n0x9ACF\t0x20C7C\n0x9AD0\t0x60E7\n0x9AD1\t0x20C8D\n0x9AD2\t0x567A\n0x9AD3\t0x20CB5\n0x9AD4\t0x20CDD\n0x9AD5\t0x20CED\n0x9AD6\t0x20D6F\n0x9AD7\t0x20DB2\n0x9AD8\t0x20DC8\n0x9AD9\t0x6955\n0x9ADA\t0x9C2F\n0x9ADB\t0x87A5\n0x9ADC\t0x20E04\n0x9ADD\t0x20E0E\n0x9ADE\t0x20ED7\n0x9ADF\t0x20F90\n0x9AE0\t0x20F2D\n0x9AE1\t0x20E73\n0x9AE2\t0x5C20\n0x9AE3\t0x20FBC\n0x9AE4\t0x5E0B\n0x9AE5\t0x2105C\n0x9AE6\t0x2104F\n0x9AE7\t0x21076\n0x9AE8\t0x671E\n0x9AE9\t0x2107B\n0x9AEA\t0x21088\n0x9AEB\t0x21096\n0x9AEC\t0x3647\n0x9AED\t0x210BF\n0x9AEE\t0x210D3\n0x9AEF\t0x2112F\n0x9AF0\t0x2113B\n0x9AF1\t0x5364\n0x9AF2\t0x84AD\n0x9AF3\t0x212E3\n0x9AF4\t0x21375\n0x9AF5\t0x21336\n0x9AF6\t0x8B81\n0x9AF7\t0x21577\n0x9AF8\t0x21619\n0x9AF9\t0x217C3\n0x9AFA\t0x217C7\n0x9AFB\t0x4E78\n0x9AFC\t0x70BB\n0x9AFD\t0x2182D\n0x9AFE\t0x2196A\n0x9B40\t0x21A2D\n0x9B41\t0x21A45\n0x9B42\t0x21C2A\n0x9B43\t0x21C70\n0x9B44\t0x21CAC\n0x9B45\t0x21EC8\n0x9B46\t0x62C3\n0x9B47\t0x21ED5\n0x9B48\t0x21F15\n0x9B49\t0x7198\n0x9B4A\t0x6855\n0x9B4B\t0x22045\n0x9B4C\t0x69E9\n0x9B4D\t0x36C8\n0x9B4E\t0x2227C\n0x9B4F\t0x223D7\n0x9B50\t0x223FA\n0x9B51\t0x2272A\n0x9B52\t0x22871\n0x9B53\t0x2294F\n0x9B54\t0x82FD\n0x9B55\t0x22967\n0x9B56\t0x22993\n0x9B57\t0x22AD5\n0x9B58\t0x89A5\n0x9B59\t0x22AE8\n0x9B5A\t0x8FA0\n0x9B5B\t0x22B0E\n0x9B5C\t0x97B8\n0x9B5D\t0x22B3F\n0x9B5E\t0x9847\n0x9B5F\t0x9ABD\n0x9B60\t0x22C4C\n0x9B62\t0x22C88\n0x9B63\t0x22CB7\n0x9B64\t0x25BE8\n0x9B65\t0x22D08\n0x9B66\t0x22D12\n0x9B67\t0x22DB7\n0x9B68\t0x22D95\n0x9B69\t0x22E42\n0x9B6A\t0x22F74\n0x9B6B\t0x22FCC\n0x9B6C\t0x23033\n0x9B6D\t0x23066\n0x9B6E\t0x2331F\n0x9B6F\t0x233DE\n0x9B70\t0x5FB1\n0x9B71\t0x6648\n0x9B72\t0x66BF\n0x9B73\t0x27A79\n0x9B74\t0x23567\n0x9B75\t0x235F3\n0x9B77\t0x249BA\n0x9B79\t0x2361A\n0x9B7A\t0x23716\n0x9B7C\t0x20346\n0x9B7D\t0x58B5\n0x9B7E\t0x670E\n0x9BA1\t0x6918\n0x9BA2\t0x23AA7\n0x9BA3\t0x27657\n0x9BA4\t0x25FE2\n0x9BA5\t0x23E11\n0x9BA6\t0x23EB9\n0x9BA7\t0x275FE\n0x9BA8\t0x2209A\n0x9BA9\t0x48D0\n0x9BAA\t0x4AB8\n0x9BAB\t0x24119\n0x9BAC\t0x28A9A\n0x9BAD\t0x242EE\n0x9BAE\t0x2430D\n0x9BAF\t0x2403B\n0x9BB0\t0x24334\n0x9BB1\t0x24396\n0x9BB2\t0x24A45\n0x9BB3\t0x205CA\n0x9BB4\t0x51D2\n0x9BB5\t0x20611\n0x9BB6\t0x599F\n0x9BB7\t0x21EA8\n0x9BB8\t0x3BBE\n0x9BB9\t0x23CFF\n0x9BBA\t0x24404\n0x9BBB\t0x244D6\n0x9BBC\t0x5788\n0x9BBD\t0x24674\n0x9BBE\t0x399B\n0x9BBF\t0x2472F\n0x9BC0\t0x285E8\n0x9BC1\t0x299C9\n0x9BC2\t0x3762\n0x9BC3\t0x221C3\n0x9BC4\t0x8B5E\n0x9BC5\t0x28B4E\n0x9BC7\t0x24812\n0x9BC8\t0x248FB\n0x9BC9\t0x24A15\n0x9BCA\t0x7209\n0x9BCB\t0x24AC0\n0x9BCC\t0x20C78\n0x9BCD\t0x5965\n0x9BCE\t0x24EA5\n0x9BCF\t0x24F86\n0x9BD0\t0x20779\n0x9BD1\t0x8EDA\n0x9BD2\t0x2502C\n0x9BD3\t0x528F\n0x9BD4\t0x573F\n0x9BD5\t0x7171\n0x9BD6\t0x25299\n0x9BD7\t0x25419\n0x9BD8\t0x23F4A\n0x9BD9\t0x24AA7\n0x9BDA\t0x55BC\n0x9BDB\t0x25446\n0x9BDC\t0x2546E\n0x9BDD\t0x26B52\n0x9BDF\t0x3473\n0x9BE0\t0x2553F\n0x9BE1\t0x27632\n0x9BE2\t0x2555E\n0x9BE3\t0x4718\n0x9BE4\t0x25562\n0x9BE5\t0x25566\n0x9BE6\t0x257C7\n0x9BE7\t0x2493F\n0x9BE8\t0x2585D\n0x9BE9\t0x5066\n0x9BEA\t0x34FB\n0x9BEB\t0x233CC\n0x9BED\t0x25903\n0x9BEE\t0x477C\n0x9BEF\t0x28948\n0x9BF0\t0x25AAE\n0x9BF1\t0x25B89\n0x9BF2\t0x25C06\n0x9BF3\t0x21D90\n0x9BF4\t0x57A1\n0x9BF5\t0x7151\n0x9BF7\t0x26102\n0x9BF8\t0x27C12\n0x9BF9\t0x9056\n0x9BFA\t0x261B2\n0x9BFB\t0x24F9A\n0x9BFC\t0x8B62\n0x9BFD\t0x26402\n0x9BFE\t0x2644A\n0x9C40\t0x5D5B\n0x9C41\t0x26BF7\n0x9C43\t0x26484\n0x9C44\t0x2191C\n0x9C45\t0x8AEA\n0x9C46\t0x249F6\n0x9C47\t0x26488\n0x9C48\t0x23FEF\n0x9C49\t0x26512\n0x9C4A\t0x4BC0\n0x9C4B\t0x265BF\n0x9C4C\t0x266B5\n0x9C4D\t0x2271B\n0x9C4E\t0x9465\n0x9C4F\t0x257E1\n0x9C50\t0x6195\n0x9C51\t0x5A27\n0x9C52\t0x2F8CD\n0x9C54\t0x56B9\n0x9C55\t0x24521\n0x9C56\t0x266FC\n0x9C57\t0x4E6A\n0x9C58\t0x24934\n0x9C59\t0x9656\n0x9C5A\t0x6D8F\n0x9C5B\t0x26CBD\n0x9C5C\t0x3618\n0x9C5D\t0x8977\n0x9C5E\t0x26799\n0x9C5F\t0x2686E\n0x9C60\t0x26411\n0x9C61\t0x2685E\n0x9C63\t0x268C7\n0x9C64\t0x7B42\n0x9C65\t0x290C0\n0x9C66\t0x20A11\n0x9C67\t0x26926\n0x9C69\t0x26939\n0x9C6A\t0x7A45\n0x9C6C\t0x269FA\n0x9C6D\t0x9A26\n0x9C6E\t0x26A2D\n0x9C6F\t0x365F\n0x9C70\t0x26469\n0x9C71\t0x20021\n0x9C72\t0x7983\n0x9C73\t0x26A34\n0x9C74\t0x26B5B\n0x9C75\t0x5D2C\n0x9C76\t0x23519\n0x9C78\t0x26B9D\n0x9C79\t0x46D0\n0x9C7A\t0x26CA4\n0x9C7B\t0x753B\n0x9C7C\t0x8865\n0x9C7D\t0x26DAE\n0x9C7E\t0x58B6\n0x9CA1\t0x371C\n0x9CA2\t0x2258D\n0x9CA3\t0x2704B\n0x9CA4\t0x271CD\n0x9CA5\t0x3C54\n0x9CA6\t0x27280\n0x9CA7\t0x27285\n0x9CA8\t0x9281\n0x9CA9\t0x2217A\n0x9CAA\t0x2728B\n0x9CAB\t0x9330\n0x9CAC\t0x272E6\n0x9CAD\t0x249D0\n0x9CAE\t0x6C39\n0x9CAF\t0x949F\n0x9CB0\t0x27450\n0x9CB1\t0x20EF8\n0x9CB2\t0x8827\n0x9CB3\t0x88F5\n0x9CB4\t0x22926\n0x9CB5\t0x28473\n0x9CB6\t0x217B1\n0x9CB7\t0x6EB8\n0x9CB8\t0x24A2A\n0x9CB9\t0x21820\n0x9CBA\t0x39A4\n0x9CBB\t0x36B9\n0x9CBE\t0x453F\n0x9CBF\t0x66B6\n0x9CC0\t0x29CAD\n0x9CC1\t0x298A4\n0x9CC2\t0x8943\n0x9CC3\t0x277CC\n0x9CC4\t0x27858\n0x9CC5\t0x56D6\n0x9CC6\t0x40DF\n0x9CC7\t0x2160A\n0x9CC8\t0x39A1\n0x9CC9\t0x2372F\n0x9CCA\t0x280E8\n0x9CCB\t0x213C5\n0x9CCC\t0x71AD\n0x9CCD\t0x8366\n0x9CCE\t0x279DD\n0x9CCF\t0x291A8\n0x9CD1\t0x4CB7\n0x9CD2\t0x270AF\n0x9CD3\t0x289AB\n0x9CD4\t0x279FD\n0x9CD5\t0x27A0A\n0x9CD6\t0x27B0B\n0x9CD7\t0x27D66\n0x9CD8\t0x2417A\n0x9CD9\t0x7B43\n0x9CDA\t0x797E\n0x9CDB\t0x28009\n0x9CDC\t0x6FB5\n0x9CDD\t0x2A2DF\n0x9CDE\t0x6A03\n0x9CDF\t0x28318\n0x9CE0\t0x53A2\n0x9CE1\t0x26E07\n0x9CE2\t0x93BF\n0x9CE3\t0x6836\n0x9CE4\t0x975D\n0x9CE5\t0x2816F\n0x9CE6\t0x28023\n0x9CE7\t0x269B5\n0x9CE8\t0x213ED\n0x9CE9\t0x2322F\n0x9CEA\t0x28048\n0x9CEB\t0x5D85\n0x9CEC\t0x28C30\n0x9CED\t0x28083\n0x9CEE\t0x5715\n0x9CEF\t0x9823\n0x9CF0\t0x28949\n0x9CF1\t0x5DAB\n0x9CF2\t0x24988\n0x9CF3\t0x65BE\n0x9CF4\t0x69D5\n0x9CF5\t0x53D2\n0x9CF6\t0x24AA5\n0x9CF7\t0x23F81\n0x9CF8\t0x3C11\n0x9CF9\t0x6736\n0x9CFA\t0x28090\n0x9CFB\t0x280F4\n0x9CFC\t0x2812E\n0x9CFD\t0x21FA1\n0x9CFE\t0x2814F\n0x9D40\t0x28189\n0x9D41\t0x281AF\n0x9D42\t0x2821A\n0x9D43\t0x28306\n0x9D44\t0x2832F\n0x9D45\t0x2838A\n0x9D46\t0x35CA\n0x9D47\t0x28468\n0x9D48\t0x286AA\n0x9D49\t0x48FA\n0x9D4A\t0x63E6\n0x9D4B\t0x28956\n0x9D4C\t0x7808\n0x9D4D\t0x9255\n0x9D4E\t0x289B8\n0x9D4F\t0x43F2\n0x9D50\t0x289E7\n0x9D51\t0x43DF\n0x9D52\t0x289E8\n0x9D53\t0x28B46\n0x9D54\t0x28BD4\n0x9D55\t0x59F8\n0x9D56\t0x28C09\n0x9D58\t0x28FC5\n0x9D59\t0x290EC\n0x9D5B\t0x29110\n0x9D5C\t0x2913C\n0x9D5D\t0x3DF7\n0x9D5E\t0x2915E\n0x9D5F\t0x24ACA\n0x9D60\t0x8FD0\n0x9D61\t0x728F\n0x9D62\t0x568B\n0x9D63\t0x294E7\n0x9D64\t0x295E9\n0x9D65\t0x295B0\n0x9D66\t0x295B8\n0x9D67\t0x29732\n0x9D68\t0x298D1\n0x9D69\t0x29949\n0x9D6A\t0x2996A\n0x9D6B\t0x299C3\n0x9D6C\t0x29A28\n0x9D6D\t0x29B0E\n0x9D6E\t0x29D5A\n0x9D6F\t0x29D9B\n0x9D70\t0x7E9F\n0x9D71\t0x29EF8\n0x9D72\t0x29F23\n0x9D73\t0x4CA4\n0x9D74\t0x9547\n0x9D75\t0x2A293\n0x9D76\t0x71A2\n0x9D77\t0x2A2FF\n0x9D78\t0x4D91\n0x9D79\t0x9012\n0x9D7A\t0x2A5CB\n0x9D7B\t0x4D9C\n0x9D7C\t0x20C9C\n0x9D7D\t0x8FBE\n0x9D7E\t0x55C1\n0x9DA1\t0x8FBA\n0x9DA2\t0x224B0\n0x9DA3\t0x8FB9\n0x9DA4\t0x24A93\n0x9DA5\t0x4509\n0x9DA6\t0x7E7F\n0x9DA7\t0x6F56\n0x9DA8\t0x6AB1\n0x9DA9\t0x4EEA\n0x9DAA\t0x34E4\n0x9DAB\t0x28B2C\n0x9DAC\t0x2789D\n0x9DAD\t0x373A\n0x9DAE\t0x8E80\n0x9DAF\t0x217F5\n0x9DB0\t0x28024\n0x9DB1\t0x28B6C\n0x9DB2\t0x28B99\n0x9DB3\t0x27A3E\n0x9DB4\t0x266AF\n0x9DB5\t0x3DEB\n0x9DB6\t0x27655\n0x9DB7\t0x23CB7\n0x9DB8\t0x25635\n0x9DB9\t0x25956\n0x9DBA\t0x4E9A\n0x9DBB\t0x25E81\n0x9DBC\t0x26258\n0x9DBD\t0x56BF\n0x9DBE\t0x20E6D\n0x9DBF\t0x8E0E\n0x9DC0\t0x5B6D\n0x9DC1\t0x23E88\n0x9DC2\t0x24C9E\n0x9DC3\t0x63DE\n0x9DC5\t0x217F6\n0x9DC6\t0x2187B\n0x9DC7\t0x6530\n0x9DC8\t0x562D\n0x9DC9\t0x25C4A\n0x9DCA\t0x541A\n0x9DCB\t0x25311\n0x9DCC\t0x3DC6\n0x9DCD\t0x29D98\n0x9DCE\t0x4C7D\n0x9DCF\t0x5622\n0x9DD0\t0x561E\n0x9DD1\t0x7F49\n0x9DD2\t0x25ED8\n0x9DD3\t0x5975\n0x9DD4\t0x23D40\n0x9DD5\t0x8770\n0x9DD6\t0x4E1C\n0x9DD7\t0x20FEA\n0x9DD8\t0x20D49\n0x9DD9\t0x236BA\n0x9DDA\t0x8117\n0x9DDB\t0x9D5E\n0x9DDC\t0x8D18\n0x9DDD\t0x763B\n0x9DDE\t0x9C45\n0x9DDF\t0x764E\n0x9DE0\t0x77B9\n0x9DE1\t0x9345\n0x9DE2\t0x5432\n0x9DE3\t0x8148\n0x9DE4\t0x82F7\n0x9DE5\t0x5625\n0x9DE6\t0x8132\n0x9DE7\t0x8418\n0x9DE8\t0x80BD\n0x9DE9\t0x55EA\n0x9DEA\t0x7962\n0x9DEB\t0x5643\n0x9DEC\t0x5416\n0x9DED\t0x20E9D\n0x9DEE\t0x35CE\n0x9DEF\t0x5605\n0x9DF0\t0x55F1\n0x9DF1\t0x66F1\n0x9DF2\t0x282E2\n0x9DF3\t0x362D\n0x9DF4\t0x7534\n0x9DF5\t0x55F0\n0x9DF6\t0x55BA\n0x9DF7\t0x5497\n0x9DF8\t0x5572\n0x9DF9\t0x20C41\n0x9DFA\t0x20C96\n0x9DFB\t0x5ED0\n0x9DFC\t0x25148\n0x9DFD\t0x20E76\n0x9DFE\t0x22C62\n0x9E40\t0x20EA2\n0x9E41\t0x9EAB\n0x9E42\t0x7D5A\n0x9E43\t0x55DE\n0x9E44\t0x21075\n0x9E45\t0x629D\n0x9E46\t0x976D\n0x9E47\t0x5494\n0x9E48\t0x8CCD\n0x9E49\t0x71F6\n0x9E4A\t0x9176\n0x9E4B\t0x63FC\n0x9E4C\t0x63B9\n0x9E4D\t0x63FE\n0x9E4E\t0x5569\n0x9E4F\t0x22B43\n0x9E50\t0x9C72\n0x9E51\t0x22EB3\n0x9E52\t0x519A\n0x9E53\t0x34DF\n0x9E54\t0x20DA7\n0x9E55\t0x51A7\n0x9E56\t0x544D\n0x9E57\t0x551E\n0x9E58\t0x5513\n0x9E59\t0x7666\n0x9E5A\t0x8E2D\n0x9E5B\t0x2688A\n0x9E5C\t0x75B1\n0x9E5D\t0x80B6\n0x9E5E\t0x8804\n0x9E5F\t0x8786\n0x9E60\t0x88C7\n0x9E61\t0x81B6\n0x9E62\t0x841C\n0x9E63\t0x210C1\n0x9E64\t0x44EC\n0x9E65\t0x7304\n0x9E66\t0x24706\n0x9E67\t0x5B90\n0x9E68\t0x830B\n0x9E69\t0x26893\n0x9E6A\t0x567B\n0x9E6B\t0x226F4\n0x9E6C\t0x27D2F\n0x9E6D\t0x241A3\n0x9E6E\t0x27D73\n0x9E6F\t0x26ED0\n0x9E70\t0x272B6\n0x9E71\t0x9170\n0x9E72\t0x211D9\n0x9E73\t0x9208\n0x9E74\t0x23CFC\n0x9E75\t0x2A6A9\n0x9E76\t0x20EAC\n0x9E77\t0x20EF9\n0x9E78\t0x7266\n0x9E79\t0x21CA2\n0x9E7A\t0x474E\n0x9E7B\t0x24FC2\n0x9E7C\t0x27FF9\n0x9E7D\t0x20FEB\n0x9E7E\t0x40FA\n0x9EA1\t0x9C5D\n0x9EA2\t0x651F\n0x9EA3\t0x22DA0\n0x9EA4\t0x48F3\n0x9EA5\t0x247E0\n0x9EA6\t0x29D7C\n0x9EA7\t0x20FEC\n0x9EA8\t0x20E0A\n0x9EAA\t0x275A3\n0x9EAB\t0x20FED\n0x9EAD\t0x26048\n0x9EAE\t0x21187\n0x9EAF\t0x71A3\n0x9EB0\t0x7E8E\n0x9EB1\t0x9D50\n0x9EB2\t0x4E1A\n0x9EB3\t0x4E04\n0x9EB4\t0x3577\n0x9EB5\t0x5B0D\n0x9EB6\t0x6CB2\n0x9EB7\t0x5367\n0x9EB8\t0x36AC\n0x9EB9\t0x39DC\n0x9EBA\t0x537D\n0x9EBB\t0x36A5\n0x9EBC\t0x24618\n0x9EBD\t0x589A\n0x9EBE\t0x24B6E\n0x9EBF\t0x822D\n0x9EC0\t0x544B\n0x9EC1\t0x57AA\n0x9EC2\t0x25A95\n0x9EC3\t0x20979\n0x9EC5\t0x3A52\n0x9EC6\t0x22465\n0x9EC7\t0x7374\n0x9EC8\t0x29EAC\n0x9EC9\t0x4D09\n0x9ECA\t0x9BED\n0x9ECB\t0x23CFE\n0x9ECC\t0x29F30\n0x9ECD\t0x4C5B\n0x9ECE\t0x24FA9\n0x9ECF\t0x2959E\n0x9ED0\t0x29FDE\n0x9ED1\t0x845C\n0x9ED2\t0x23DB6\n0x9ED3\t0x272B2\n0x9ED4\t0x267B3\n0x9ED5\t0x23720\n0x9ED6\t0x632E\n0x9ED7\t0x7D25\n0x9ED8\t0x23EF7\n0x9ED9\t0x23E2C\n0x9EDA\t0x3A2A\n0x9EDB\t0x9008\n0x9EDC\t0x52CC\n0x9EDD\t0x3E74\n0x9EDE\t0x367A\n0x9EDF\t0x45E9\n0x9EE0\t0x2048E\n0x9EE1\t0x7640\n0x9EE2\t0x5AF0\n0x9EE3\t0x20EB6\n0x9EE4\t0x787A\n0x9EE5\t0x27F2E\n0x9EE6\t0x58A7\n0x9EE7\t0x40BF\n0x9EE8\t0x567C\n0x9EE9\t0x9B8B\n0x9EEA\t0x5D74\n0x9EEB\t0x7654\n0x9EEC\t0x2A434\n0x9EED\t0x9E85\n0x9EEE\t0x4CE1\n0x9EF0\t0x37FB\n0x9EF1\t0x6119\n0x9EF2\t0x230DA\n0x9EF3\t0x243F2\n0x9EF5\t0x565D\n0x9EF6\t0x212A9\n0x9EF7\t0x57A7\n0x9EF8\t0x24963\n0x9EF9\t0x29E06\n0x9EFA\t0x5234\n0x9EFB\t0x270AE\n0x9EFC\t0x35AD\n0x9EFE\t0x9D7C\n0x9F40\t0x7C56\n0x9F41\t0x9B39\n0x9F42\t0x57DE\n0x9F43\t0x2176C\n0x9F44\t0x5C53\n0x9F45\t0x64D3\n0x9F46\t0x294D0\n0x9F47\t0x26335\n0x9F48\t0x27164\n0x9F49\t0x86AD\n0x9F4A\t0x20D28\n0x9F4B\t0x26D22\n0x9F4C\t0x24AE2\n0x9F4D\t0x20D71\n0x9F4F\t0x51FE\n0x9F50\t0x21F0F\n0x9F51\t0x5D8E\n0x9F52\t0x9703\n0x9F53\t0x21DD1\n0x9F54\t0x9E81\n0x9F55\t0x904C\n0x9F56\t0x7B1F\n0x9F57\t0x9B02\n0x9F58\t0x5CD1\n0x9F59\t0x7BA3\n0x9F5A\t0x6268\n0x9F5B\t0x6335\n0x9F5C\t0x9AFF\n0x9F5D\t0x7BCF\n0x9F5E\t0x9B2A\n0x9F5F\t0x7C7E\n0x9F61\t0x7C42\n0x9F62\t0x7C86\n0x9F63\t0x9C15\n0x9F64\t0x7BFC\n0x9F65\t0x9B09\n0x9F67\t0x9C1B\n0x9F68\t0x2493E\n0x9F69\t0x9F5A\n0x9F6A\t0x5573\n0x9F6B\t0x5BC3\n0x9F6C\t0x4FFD\n0x9F6D\t0x9E98\n0x9F6E\t0x4FF2\n0x9F6F\t0x5260\n0x9F70\t0x3E06\n0x9F71\t0x52D1\n0x9F72\t0x5767\n0x9F73\t0x5056\n0x9F74\t0x59B7\n0x9F75\t0x5E12\n0x9F76\t0x97C8\n0x9F77\t0x9DAB\n0x9F78\t0x8F5C\n0x9F79\t0x5469\n0x9F7A\t0x97B4\n0x9F7B\t0x9940\n0x9F7C\t0x97BA\n0x9F7D\t0x532C\n0x9F7E\t0x6130\n0x9FA1\t0x692C\n0x9FA2\t0x53DA\n0x9FA3\t0x9C0A\n0x9FA4\t0x9D02\n0x9FA5\t0x4C3B\n0x9FA6\t0x9641\n0x9FA7\t0x6980\n0x9FA8\t0x50A6\n0x9FA9\t0x7546\n0x9FAA\t0x2176D\n0x9FAB\t0x99DA\n0x9FAC\t0x5273\n0x9FAE\t0x9159\n0x9FAF\t0x9681\n0x9FB0\t0x915C\n0x9FB2\t0x9151\n0x9FB3\t0x28E97\n0x9FB4\t0x637F\n0x9FB5\t0x26D23\n0x9FB6\t0x6ACA\n0x9FB7\t0x5611\n0x9FB8\t0x918E\n0x9FB9\t0x757A\n0x9FBA\t0x6285\n0x9FBB\t0x203FC\n0x9FBC\t0x734F\n0x9FBD\t0x7C70\n0x9FBE\t0x25C21\n0x9FBF\t0x23CFD\n0x9FC1\t0x24919\n0x9FC2\t0x76D6\n0x9FC3\t0x9B9D\n0x9FC4\t0x4E2A\n0x9FC5\t0x20CD4\n0x9FC6\t0x83BE\n0x9FC7\t0x8842\n0x9FC9\t0x5C4A\n0x9FCA\t0x69C0\n0x9FCC\t0x577A\n0x9FCD\t0x521F\n0x9FCE\t0x5DF5\n0x9FCF\t0x4ECE\n0x9FD0\t0x6C31\n0x9FD1\t0x201F2\n0x9FD2\t0x4F39\n0x9FD3\t0x549C\n0x9FD4\t0x54DA\n0x9FD5\t0x529A\n0x9FD6\t0x8D82\n0x9FD7\t0x35FE\n0x9FD9\t0x35F3\n0x9FDB\t0x6B52\n0x9FDC\t0x917C\n0x9FDD\t0x9FA5\n0x9FDE\t0x9B97\n0x9FDF\t0x982E\n0x9FE0\t0x98B4\n0x9FE1\t0x9ABA\n0x9FE2\t0x9EA8\n0x9FE3\t0x9E84\n0x9FE4\t0x717A\n0x9FE5\t0x7B14\n0x9FE7\t0x6BFA\n0x9FE8\t0x8818\n0x9FE9\t0x7F78\n0x9FEB\t0x5620\n0x9FEC\t0x2A64A\n0x9FED\t0x8E77\n0x9FEE\t0x9F53\n0x9FF0\t0x8DD4\n0x9FF1\t0x8E4F\n0x9FF2\t0x9E1C\n0x9FF3\t0x8E01\n0x9FF4\t0x6282\n0x9FF5\t0x2837D\n0x9FF6\t0x8E28\n0x9FF7\t0x8E75\n0x9FF8\t0x7AD3\n0x9FF9\t0x24A77\n0x9FFA\t0x7A3E\n0x9FFB\t0x78D8\n0x9FFC\t0x6CEA\n0x9FFD\t0x8A67\n0x9FFE\t0x7607\n0xA040\t0x28A5A\n0xA041\t0x9F26\n0xA042\t0x6CCE\n0xA043\t0x87D6\n0xA044\t0x75C3\n0xA045\t0x2A2B2\n0xA046\t0x7853\n0xA047\t0x2F840\n0xA048\t0x8D0C\n0xA049\t0x72E2\n0xA04A\t0x7371\n0xA04B\t0x8B2D\n0xA04C\t0x7302\n0xA04D\t0x74F1\n0xA04E\t0x8CEB\n0xA04F\t0x24ABB\n0xA050\t0x862F\n0xA051\t0x5FBA\n0xA052\t0x88A0\n0xA053\t0x44B7\n0xA055\t0x2183B\n0xA056\t0x26E05\n0xA058\t0x8A7E\n0xA059\t0x2251B\n0xA05B\t0x60FD\n0xA05C\t0x7667\n0xA05D\t0x9AD7\n0xA05E\t0x9D44\n0xA05F\t0x936E\n0xA060\t0x9B8F\n0xA061\t0x87F5\n0xA064\t0x8CF7\n0xA065\t0x732C\n0xA066\t0x9721\n0xA067\t0x9BB0\n0xA068\t0x35D6\n0xA069\t0x72B2\n0xA06A\t0x4C07\n0xA06B\t0x7C51\n0xA06C\t0x994A\n0xA06D\t0x26159\n0xA06E\t0x6159\n0xA06F\t0x4C04\n0xA070\t0x9E96\n0xA071\t0x617D\n0xA073\t0x575F\n0xA074\t0x616F\n0xA075\t0x62A6\n0xA076\t0x6239\n0xA078\t0x3A5C\n0xA079\t0x61E2\n0xA07A\t0x53AA\n0xA07B\t0x233F5\n0xA07C\t0x6364\n0xA07D\t0x6802\n0xA07E\t0x35D2\n0xA0A1\t0x5D57\n0xA0A2\t0x28BC2\n0xA0A3\t0x8FDA\n0xA0A4\t0x28E39\n0xA0A6\t0x50D9\n0xA0A7\t0x21D46\n0xA0A8\t0x7906\n0xA0A9\t0x5332\n0xA0AA\t0x9638\n0xA0AB\t0x20F3B\n0xA0AC\t0x4065\n0xA0AE\t0x77FE\n0xA0B0\t0x7CC2\n0xA0B1\t0x25F1A\n0xA0B2\t0x7CDA\n0xA0B3\t0x7A2D\n0xA0B4\t0x8066\n0xA0B5\t0x8063\n0xA0B6\t0x7D4D\n0xA0B7\t0x7505\n0xA0B8\t0x74F2\n0xA0B9\t0x8994\n0xA0BA\t0x821A\n0xA0BB\t0x670C\n0xA0BC\t0x8062\n0xA0BD\t0x27486\n0xA0BE\t0x805B\n0xA0BF\t0x74F0\n0xA0C0\t0x8103\n0xA0C1\t0x7724\n0xA0C2\t0x8989\n0xA0C3\t0x267CC\n0xA0C4\t0x7553\n0xA0C5\t0x26ED1\n0xA0C6\t0x87A9\n0xA0C7\t0x87CE\n0xA0C8\t0x81C8\n0xA0C9\t0x878C\n0xA0CA\t0x8A49\n0xA0CB\t0x8CAD\n0xA0CC\t0x8B43\n0xA0CD\t0x772B\n0xA0CE\t0x74F8\n0xA0CF\t0x84DA\n0xA0D0\t0x3635\n0xA0D1\t0x69B2\n0xA0D2\t0x8DA6\n0xA0D4\t0x89A9\n0xA0D6\t0x6DB9\n0xA0D7\t0x87C1\n0xA0D8\t0x24011\n0xA0D9\t0x74E7\n0xA0DA\t0x3DDB\n0xA0DB\t0x7176\n0xA0DC\t0x60A4\n0xA0DD\t0x619C\n0xA0DE\t0x3CD1\n0xA0E0\t0x6077\n0xA0E2\t0x7F71\n0xA0E3\t0x28B2D\n0xA0E5\t0x60E9\n0xA0E6\t0x4B7E\n0xA0E7\t0x5220\n0xA0E8\t0x3C18\n0xA0E9\t0x23CC7\n0xA0EA\t0x25ED7\n0xA0EB\t0x27656\n0xA0EC\t0x25531\n0xA0ED\t0x21944\n0xA0EE\t0x212FE\n0xA0EF\t0x29903\n0xA0F0\t0x26DDC\n0xA0F1\t0x270AD\n0xA0F2\t0x5CC1\n0xA0F3\t0x261AD\n0xA0F4\t0x28A0F\n0xA0F5\t0x23677\n0xA0F6\t0x200EE\n0xA0F7\t0x26846\n0xA0F8\t0x24F0E\n0xA0F9\t0x4562\n0xA0FA\t0x5B1F\n0xA0FB\t0x2634C\n0xA0FC\t0x9F50\n0xA0FD\t0x9EA6\n0xA0FE\t0x2626B\n0xA140\t0x3000\n0xA141\t0xFF0C\n0xA142\t0x3001\n0xA143\t0x3002\n0xA144\t0xFF0E\n0xA145\t0x2022\n0xA146\t0xFF1B\n0xA147\t0xFF1A\n0xA148\t0xFF1F\n0xA149\t0xFF01\n0xA14A\t0xFE30\n0xA14B\t0x2026\n0xA14C\t0x2025\n0xA14D\t0xFE50\n0xA14E\t0xFF64\n0xA14F\t0xFE52\n0xA150\t0x00B7\n0xA151\t0xFE54\n0xA152\t0xFE55\n0xA153\t0xFE56\n0xA154\t0xFE57\n0xA155\t0xFF5C\n0xA156\t0x2013\n0xA157\t0xFE31\n0xA158\t0x2014\n0xA159\t0xFE33\n0xA15B\t0xFE34\n0xA15C\t0xFE4F\n0xA15D\t0xFF08\n0xA15E\t0xFF09\n0xA15F\t0xFE35\n0xA160\t0xFE36\n0xA161\t0xFF5B\n0xA162\t0xFF5D\n0xA163\t0xFE37\n0xA164\t0xFE38\n0xA165\t0x3014\n0xA166\t0x3015\n0xA167\t0xFE39\n0xA168\t0xFE3A\n0xA169\t0x3010\n0xA16A\t0x3011\n0xA16B\t0xFE3B\n0xA16C\t0xFE3C\n0xA16D\t0x300A\n0xA16E\t0x300B\n0xA16F\t0xFE3D\n0xA170\t0xFE3E\n0xA171\t0x3008\n0xA172\t0x3009\n0xA173\t0xFE3F\n0xA174\t0xFE40\n0xA175\t0x300C\n0xA176\t0x300D\n0xA177\t0xFE41\n0xA178\t0xFE42\n0xA179\t0x300E\n0xA17A\t0x300F\n0xA17B\t0xFE43\n0xA17C\t0xFE44\n0xA17D\t0xFE59\n0xA17E\t0xFE5A\n0xA1A1\t0xFE5B\n0xA1A2\t0xFE5C\n0xA1A3\t0xFE5D\n0xA1A4\t0xFE5E\n0xA1A5\t0x2018\n0xA1A6\t0x2019\n0xA1A7\t0x201C\n0xA1A8\t0x201D\n0xA1A9\t0x301D\n0xA1AA\t0x301E\n0xA1AB\t0x2035\n0xA1AC\t0x2032\n0xA1AD\t0xFF03\n0xA1AE\t0xFF06\n0xA1AF\t0xFF0A\n0xA1B0\t0x203B\n0xA1B1\t0x00A7\n0xA1B2\t0x3003\n0xA1B3\t0x25CB\n0xA1B4\t0x25CF\n0xA1B5\t0x25B3\n0xA1B6\t0x25B2\n0xA1B7\t0x25CE\n0xA1B8\t0x2606\n0xA1B9\t0x2605\n0xA1BA\t0x25C7\n0xA1BB\t0x25C6\n0xA1BC\t0x25A1\n0xA1BD\t0x25A0\n0xA1BE\t0x25BD\n0xA1BF\t0x25BC\n0xA1C0\t0x32A3\n0xA1C1\t0x2105\n0xA1C2\t0x203E\n0xA1C4\t0xFF3F\n0xA1C6\t0xFE49\n0xA1C7\t0xFE4A\n0xA1C8\t0xFE4D\n0xA1C9\t0xFE4E\n0xA1CA\t0xFE4B\n0xA1CB\t0xFE4C\n0xA1CC\t0xFE5F\n0xA1CD\t0xFE60\n0xA1CE\t0xFE61\n0xA1CF\t0xFF0B\n0xA1D0\t0xFF0D\n0xA1D1\t0x00D7\n0xA1D2\t0x00F7\n0xA1D3\t0x00B1\n0xA1D4\t0x221A\n0xA1D5\t0xFF1C\n0xA1D6\t0xFF1E\n0xA1D7\t0xFF1D\n0xA1D8\t0x2266\n0xA1D9\t0x2267\n0xA1DA\t0x2260\n0xA1DB\t0x221E\n0xA1DC\t0x2252\n0xA1DD\t0x2261\n0xA1DE\t0xFE62\n0xA1DF\t0xFE63\n0xA1E0\t0xFE64\n0xA1E1\t0xFE65\n0xA1E2\t0xFE66\n0xA1E3\t0x223C\n0xA1E4\t0x2229\n0xA1E5\t0x222A\n0xA1E6\t0x22A5\n0xA1E7\t0x2220\n0xA1E8\t0x221F\n0xA1E9\t0x22BF\n0xA1EA\t0x33D2\n0xA1EB\t0x33D1\n0xA1EC\t0x222B\n0xA1ED\t0x222E\n0xA1EE\t0x2235\n0xA1EF\t0x2234\n0xA1F0\t0x2640\n0xA1F1\t0x2642\n0xA1F2\t0x2641\n0xA1F3\t0x2609\n0xA1F4\t0x2191\n0xA1F5\t0x2193\n0xA1F6\t0x2190\n0xA1F7\t0x2192\n0xA1F8\t0x2196\n0xA1F9\t0x2197\n0xA1FA\t0x2199\n0xA1FB\t0x2198\n0xA1FC\t0x2225\n0xA1FD\t0x2223\n0xA241\t0xFF0F\n0xA242\t0xFF3C\n0xA243\t0xFF04\n0xA244\t0x00A5\n0xA245\t0x3012\n0xA246\t0x00A2\n0xA247\t0x00A3\n0xA248\t0xFF05\n0xA249\t0xFF20\n0xA24A\t0x2103\n0xA24B\t0x2109\n0xA24C\t0xFE69\n0xA24D\t0xFE6A\n0xA24E\t0xFE6B\n0xA24F\t0x33D5\n0xA250\t0x339C\n0xA251\t0x339D\n0xA252\t0x339E\n0xA253\t0x33CE\n0xA254\t0x33A1\n0xA255\t0x338E\n0xA256\t0x338F\n0xA257\t0x33C4\n0xA258\t0x00B0\n0xA259\t0x5159\n0xA25A\t0x515B\n0xA25B\t0x515E\n0xA25C\t0x515D\n0xA25D\t0x5161\n0xA25E\t0x5163\n0xA25F\t0x55E7\n0xA260\t0x74E9\n0xA261\t0x7CCE\n0xA262\t0x2581\n0xA263\t0x2582\n0xA264\t0x2583\n0xA265\t0x2584\n0xA266\t0x2585\n0xA267\t0x2586\n0xA268\t0x2587\n0xA269\t0x2588\n0xA26A\t0x258F\n0xA26B\t0x258E\n0xA26C\t0x258D\n0xA26D\t0x258C\n0xA26E\t0x258B\n0xA26F\t0x258A\n0xA270\t0x2589\n0xA271\t0x253C\n0xA272\t0x2534\n0xA273\t0x252C\n0xA274\t0x2524\n0xA275\t0x251C\n0xA276\t0x2594\n0xA277\t0x2500\n0xA278\t0x2502\n0xA279\t0x2595\n0xA27A\t0x250C\n0xA27B\t0x2510\n0xA27C\t0x2514\n0xA27D\t0x2518\n0xA27E\t0x256D\n0xA2A1\t0x256E\n0xA2A2\t0x2570\n0xA2A3\t0x256F\n0xA2A4\t0x2550\n0xA2A5\t0x255E\n0xA2A6\t0x256A\n0xA2A7\t0x2561\n0xA2A8\t0x25E2\n0xA2A9\t0x25E3\n0xA2AA\t0x25E5\n0xA2AB\t0x25E4\n0xA2AC\t0x2571\n0xA2AD\t0x2572\n0xA2AE\t0x2573\n0xA2AF\t0xFF10\n0xA2B0\t0xFF11\n0xA2B1\t0xFF12\n0xA2B2\t0xFF13\n0xA2B3\t0xFF14\n0xA2B4\t0xFF15\n0xA2B5\t0xFF16\n0xA2B6\t0xFF17\n0xA2B7\t0xFF18\n0xA2B8\t0xFF19\n0xA2B9\t0x2160\n0xA2BA\t0x2161\n0xA2BB\t0x2162\n0xA2BC\t0x2163\n0xA2BD\t0x2164\n0xA2BE\t0x2165\n0xA2BF\t0x2166\n0xA2C0\t0x2167\n0xA2C1\t0x2168\n0xA2C2\t0x2169\n0xA2C3\t0x3021\n0xA2C4\t0x3022\n0xA2C5\t0x3023\n0xA2C6\t0x3024\n0xA2C7\t0x3025\n0xA2C8\t0x3026\n0xA2C9\t0x3027\n0xA2CA\t0x3028\n0xA2CB\t0x3029\n0xA2CD\t0x5344\n0xA2CF\t0xFF21\n0xA2D0\t0xFF22\n0xA2D1\t0xFF23\n0xA2D2\t0xFF24\n0xA2D3\t0xFF25\n0xA2D4\t0xFF26\n0xA2D5\t0xFF27\n0xA2D6\t0xFF28\n0xA2D7\t0xFF29\n0xA2D8\t0xFF2A\n0xA2D9\t0xFF2B\n0xA2DA\t0xFF2C\n0xA2DB\t0xFF2D\n0xA2DC\t0xFF2E\n0xA2DD\t0xFF2F\n0xA2DE\t0xFF30\n0xA2DF\t0xFF31\n0xA2E0\t0xFF32\n0xA2E1\t0xFF33\n0xA2E2\t0xFF34\n0xA2E3\t0xFF35\n0xA2E4\t0xFF36\n0xA2E5\t0xFF37\n0xA2E6\t0xFF38\n0xA2E7\t0xFF39\n0xA2E8\t0xFF3A\n0xA2E9\t0xFF41\n0xA2EA\t0xFF42\n0xA2EB\t0xFF43\n0xA2EC\t0xFF44\n0xA2ED\t0xFF45\n0xA2EE\t0xFF46\n0xA2EF\t0xFF47\n0xA2F0\t0xFF48\n0xA2F1\t0xFF49\n0xA2F2\t0xFF4A\n0xA2F3\t0xFF4B\n0xA2F4\t0xFF4C\n0xA2F5\t0xFF4D\n0xA2F6\t0xFF4E\n0xA2F7\t0xFF4F\n0xA2F8\t0xFF50\n0xA2F9\t0xFF51\n0xA2FA\t0xFF52\n0xA2FB\t0xFF53\n0xA2FC\t0xFF54\n0xA2FD\t0xFF55\n0xA2FE\t0xFF56\n0xA340\t0xFF57\n0xA341\t0xFF58\n0xA342\t0xFF59\n0xA343\t0xFF5A\n0xA344\t0x0391\n0xA345\t0x0392\n0xA346\t0x0393\n0xA347\t0x0394\n0xA348\t0x0395\n0xA349\t0x0396\n0xA34A\t0x0397\n0xA34B\t0x0398\n0xA34C\t0x0399\n0xA34D\t0x039A\n0xA34E\t0x039B\n0xA34F\t0x039C\n0xA350\t0x039D\n0xA351\t0x039E\n0xA352\t0x039F\n0xA353\t0x03A0\n0xA354\t0x03A1\n0xA355\t0x03A3\n0xA356\t0x03A4\n0xA357\t0x03A5\n0xA358\t0x03A6\n0xA359\t0x03A7\n0xA35A\t0x03A8\n0xA35B\t0x03A9\n0xA35C\t0x03B1\n0xA35D\t0x03B2\n0xA35E\t0x03B3\n0xA35F\t0x03B4\n0xA360\t0x03B5\n0xA361\t0x03B6\n0xA362\t0x03B7\n0xA363\t0x03B8\n0xA364\t0x03B9\n0xA365\t0x03BA\n0xA366\t0x03BB\n0xA367\t0x03BC\n0xA368\t0x03BD\n0xA369\t0x03BE\n0xA36A\t0x03BF\n0xA36B\t0x03C0\n0xA36C\t0x03C1\n0xA36D\t0x03C3\n0xA36E\t0x03C4\n0xA36F\t0x03C5\n0xA370\t0x03C6\n0xA371\t0x03C7\n0xA372\t0x03C8\n0xA373\t0x03C9\n0xA374\t0x3105\n0xA375\t0x3106\n0xA376\t0x3107\n0xA377\t0x3108\n0xA378\t0x3109\n0xA379\t0x310A\n0xA37A\t0x310B\n0xA37B\t0x310C\n0xA37C\t0x310D\n0xA37D\t0x310E\n0xA37E\t0x310F\n0xA3A1\t0x3110\n0xA3A2\t0x3111\n0xA3A3\t0x3112\n0xA3A4\t0x3113\n0xA3A5\t0x3114\n0xA3A6\t0x3115\n0xA3A7\t0x3116\n0xA3A8\t0x3117\n0xA3A9\t0x3118\n0xA3AA\t0x3119\n0xA3AB\t0x311A\n0xA3AC\t0x311B\n0xA3AD\t0x311C\n0xA3AE\t0x311D\n0xA3AF\t0x311E\n0xA3B0\t0x311F\n0xA3B1\t0x3120\n0xA3B2\t0x3121\n0xA3B3\t0x3122\n0xA3B4\t0x3123\n0xA3B5\t0x3124\n0xA3B6\t0x3125\n0xA3B7\t0x3126\n0xA3B8\t0x3127\n0xA3B9\t0x3128\n0xA3BA\t0x3129\n0xA3BB\t0x02D9\n0xA3BC\t0x02C9\n0xA3BD\t0x02CA\n0xA3BE\t0x02C7\n0xA3BF\t0x02CB\n0xA440\t0x4E00\n0xA441\t0x4E59\n0xA442\t0x4E01\n0xA443\t0x4E03\n0xA444\t0x4E43\n0xA445\t0x4E5D\n0xA446\t0x4E86\n0xA447\t0x4E8C\n0xA448\t0x4EBA\n0xA449\t0x513F\n0xA44A\t0x5165\n0xA44B\t0x516B\n0xA44C\t0x51E0\n0xA44D\t0x5200\n0xA44E\t0x5201\n0xA44F\t0x529B\n0xA450\t0x5315\n0xA451\t0x5341\n0xA452\t0x535C\n0xA453\t0x53C8\n0xA454\t0x4E09\n0xA455\t0x4E0B\n0xA456\t0x4E08\n0xA457\t0x4E0A\n0xA458\t0x4E2B\n0xA459\t0x4E38\n0xA45A\t0x51E1\n0xA45B\t0x4E45\n0xA45C\t0x4E48\n0xA45D\t0x4E5F\n0xA45E\t0x4E5E\n0xA45F\t0x4E8E\n0xA460\t0x4EA1\n0xA461\t0x5140\n0xA462\t0x5203\n0xA463\t0x52FA\n0xA464\t0x5343\n0xA465\t0x53C9\n0xA466\t0x53E3\n0xA467\t0x571F\n0xA468\t0x58EB\n0xA469\t0x5915\n0xA46A\t0x5927\n0xA46B\t0x5973\n0xA46C\t0x5B50\n0xA46D\t0x5B51\n0xA46E\t0x5B53\n0xA46F\t0x5BF8\n0xA470\t0x5C0F\n0xA471\t0x5C22\n0xA472\t0x5C38\n0xA473\t0x5C71\n0xA474\t0x5DDD\n0xA475\t0x5DE5\n0xA476\t0x5DF1\n0xA477\t0x5DF2\n0xA478\t0x5DF3\n0xA479\t0x5DFE\n0xA47A\t0x5E72\n0xA47B\t0x5EFE\n0xA47C\t0x5F0B\n0xA47D\t0x5F13\n0xA47E\t0x624D\n0xA4A1\t0x4E11\n0xA4A2\t0x4E10\n0xA4A3\t0x4E0D\n0xA4A4\t0x4E2D\n0xA4A5\t0x4E30\n0xA4A6\t0x4E39\n0xA4A7\t0x4E4B\n0xA4A8\t0x5C39\n0xA4A9\t0x4E88\n0xA4AA\t0x4E91\n0xA4AB\t0x4E95\n0xA4AC\t0x4E92\n0xA4AD\t0x4E94\n0xA4AE\t0x4EA2\n0xA4AF\t0x4EC1\n0xA4B0\t0x4EC0\n0xA4B1\t0x4EC3\n0xA4B2\t0x4EC6\n0xA4B3\t0x4EC7\n0xA4B4\t0x4ECD\n0xA4B5\t0x4ECA\n0xA4B6\t0x4ECB\n0xA4B7\t0x4EC4\n0xA4B8\t0x5143\n0xA4B9\t0x5141\n0xA4BA\t0x5167\n0xA4BB\t0x516D\n0xA4BC\t0x516E\n0xA4BD\t0x516C\n0xA4BE\t0x5197\n0xA4BF\t0x51F6\n0xA4C0\t0x5206\n0xA4C1\t0x5207\n0xA4C2\t0x5208\n0xA4C3\t0x52FB\n0xA4C4\t0x52FE\n0xA4C5\t0x52FF\n0xA4C6\t0x5316\n0xA4C7\t0x5339\n0xA4C8\t0x5348\n0xA4C9\t0x5347\n0xA4CA\t0x5345\n0xA4CB\t0x535E\n0xA4CC\t0x5384\n0xA4CD\t0x53CB\n0xA4CE\t0x53CA\n0xA4CF\t0x53CD\n0xA4D0\t0x58EC\n0xA4D1\t0x5929\n0xA4D2\t0x592B\n0xA4D3\t0x592A\n0xA4D4\t0x592D\n0xA4D5\t0x5B54\n0xA4D6\t0x5C11\n0xA4D7\t0x5C24\n0xA4D8\t0x5C3A\n0xA4D9\t0x5C6F\n0xA4DA\t0x5DF4\n0xA4DB\t0x5E7B\n0xA4DC\t0x5EFF\n0xA4DD\t0x5F14\n0xA4DE\t0x5F15\n0xA4DF\t0x5FC3\n0xA4E0\t0x6208\n0xA4E1\t0x6236\n0xA4E2\t0x624B\n0xA4E3\t0x624E\n0xA4E4\t0x652F\n0xA4E5\t0x6587\n0xA4E6\t0x6597\n0xA4E7\t0x65A4\n0xA4E8\t0x65B9\n0xA4E9\t0x65E5\n0xA4EA\t0x66F0\n0xA4EB\t0x6708\n0xA4EC\t0x6728\n0xA4ED\t0x6B20\n0xA4EE\t0x6B62\n0xA4EF\t0x6B79\n0xA4F0\t0x6BCB\n0xA4F1\t0x6BD4\n0xA4F2\t0x6BDB\n0xA4F3\t0x6C0F\n0xA4F4\t0x6C34\n0xA4F5\t0x706B\n0xA4F6\t0x722A\n0xA4F7\t0x7236\n0xA4F8\t0x723B\n0xA4F9\t0x7247\n0xA4FA\t0x7259\n0xA4FB\t0x725B\n0xA4FC\t0x72AC\n0xA4FD\t0x738B\n0xA4FE\t0x4E19\n0xA540\t0x4E16\n0xA541\t0x4E15\n0xA542\t0x4E14\n0xA543\t0x4E18\n0xA544\t0x4E3B\n0xA545\t0x4E4D\n0xA546\t0x4E4F\n0xA547\t0x4E4E\n0xA548\t0x4EE5\n0xA549\t0x4ED8\n0xA54A\t0x4ED4\n0xA54B\t0x4ED5\n0xA54C\t0x4ED6\n0xA54D\t0x4ED7\n0xA54E\t0x4EE3\n0xA54F\t0x4EE4\n0xA550\t0x4ED9\n0xA551\t0x4EDE\n0xA552\t0x5145\n0xA553\t0x5144\n0xA554\t0x5189\n0xA555\t0x518A\n0xA556\t0x51AC\n0xA557\t0x51F9\n0xA558\t0x51FA\n0xA559\t0x51F8\n0xA55A\t0x520A\n0xA55B\t0x52A0\n0xA55C\t0x529F\n0xA55D\t0x5305\n0xA55E\t0x5306\n0xA55F\t0x5317\n0xA560\t0x531D\n0xA561\t0x4EDF\n0xA562\t0x534A\n0xA563\t0x5349\n0xA564\t0x5361\n0xA565\t0x5360\n0xA566\t0x536F\n0xA567\t0x536E\n0xA568\t0x53BB\n0xA569\t0x53EF\n0xA56A\t0x53E4\n0xA56B\t0x53F3\n0xA56C\t0x53EC\n0xA56D\t0x53EE\n0xA56E\t0x53E9\n0xA56F\t0x53E8\n0xA570\t0x53FC\n0xA571\t0x53F8\n0xA572\t0x53F5\n0xA573\t0x53EB\n0xA574\t0x53E6\n0xA575\t0x53EA\n0xA576\t0x53F2\n0xA577\t0x53F1\n0xA578\t0x53F0\n0xA579\t0x53E5\n0xA57A\t0x53ED\n0xA57B\t0x53FB\n0xA57C\t0x56DB\n0xA57D\t0x56DA\n0xA57E\t0x5916\n0xA5A1\t0x592E\n0xA5A2\t0x5931\n0xA5A3\t0x5974\n0xA5A4\t0x5976\n0xA5A5\t0x5B55\n0xA5A6\t0x5B83\n0xA5A7\t0x5C3C\n0xA5A8\t0x5DE8\n0xA5A9\t0x5DE7\n0xA5AA\t0x5DE6\n0xA5AB\t0x5E02\n0xA5AC\t0x5E03\n0xA5AD\t0x5E73\n0xA5AE\t0x5E7C\n0xA5AF\t0x5F01\n0xA5B0\t0x5F18\n0xA5B1\t0x5F17\n0xA5B2\t0x5FC5\n0xA5B3\t0x620A\n0xA5B4\t0x6253\n0xA5B5\t0x6254\n0xA5B6\t0x6252\n0xA5B7\t0x6251\n0xA5B8\t0x65A5\n0xA5B9\t0x65E6\n0xA5BA\t0x672E\n0xA5BB\t0x672C\n0xA5BC\t0x672A\n0xA5BD\t0x672B\n0xA5BE\t0x672D\n0xA5BF\t0x6B63\n0xA5C0\t0x6BCD\n0xA5C1\t0x6C11\n0xA5C2\t0x6C10\n0xA5C3\t0x6C38\n0xA5C4\t0x6C41\n0xA5C5\t0x6C40\n0xA5C6\t0x6C3E\n0xA5C7\t0x72AF\n0xA5C8\t0x7384\n0xA5C9\t0x7389\n0xA5CA\t0x74DC\n0xA5CB\t0x74E6\n0xA5CC\t0x7518\n0xA5CD\t0x751F\n0xA5CE\t0x7528\n0xA5CF\t0x7529\n0xA5D0\t0x7530\n0xA5D1\t0x7531\n0xA5D2\t0x7532\n0xA5D3\t0x7533\n0xA5D4\t0x758B\n0xA5D5\t0x767D\n0xA5D6\t0x76AE\n0xA5D7\t0x76BF\n0xA5D8\t0x76EE\n0xA5D9\t0x77DB\n0xA5DA\t0x77E2\n0xA5DB\t0x77F3\n0xA5DC\t0x793A\n0xA5DD\t0x79BE\n0xA5DE\t0x7A74\n0xA5DF\t0x7ACB\n0xA5E0\t0x4E1E\n0xA5E1\t0x4E1F\n0xA5E2\t0x4E52\n0xA5E3\t0x4E53\n0xA5E4\t0x4E69\n0xA5E5\t0x4E99\n0xA5E6\t0x4EA4\n0xA5E7\t0x4EA6\n0xA5E8\t0x4EA5\n0xA5E9\t0x4EFF\n0xA5EA\t0x4F09\n0xA5EB\t0x4F19\n0xA5EC\t0x4F0A\n0xA5ED\t0x4F15\n0xA5EE\t0x4F0D\n0xA5EF\t0x4F10\n0xA5F0\t0x4F11\n0xA5F1\t0x4F0F\n0xA5F2\t0x4EF2\n0xA5F3\t0x4EF6\n0xA5F4\t0x4EFB\n0xA5F5\t0x4EF0\n0xA5F6\t0x4EF3\n0xA5F7\t0x4EFD\n0xA5F8\t0x4F01\n0xA5F9\t0x4F0B\n0xA5FA\t0x5149\n0xA5FB\t0x5147\n0xA5FC\t0x5146\n0xA5FD\t0x5148\n0xA5FE\t0x5168\n0xA640\t0x5171\n0xA641\t0x518D\n0xA642\t0x51B0\n0xA643\t0x5217\n0xA644\t0x5211\n0xA645\t0x5212\n0xA646\t0x520E\n0xA647\t0x5216\n0xA648\t0x52A3\n0xA649\t0x5308\n0xA64A\t0x5321\n0xA64B\t0x5320\n0xA64C\t0x5370\n0xA64D\t0x5371\n0xA64E\t0x5409\n0xA64F\t0x540F\n0xA650\t0x540C\n0xA651\t0x540A\n0xA652\t0x5410\n0xA653\t0x5401\n0xA654\t0x540B\n0xA655\t0x5404\n0xA656\t0x5411\n0xA657\t0x540D\n0xA658\t0x5408\n0xA659\t0x5403\n0xA65A\t0x540E\n0xA65B\t0x5406\n0xA65C\t0x5412\n0xA65D\t0x56E0\n0xA65E\t0x56DE\n0xA65F\t0x56DD\n0xA660\t0x5733\n0xA661\t0x5730\n0xA662\t0x5728\n0xA663\t0x572D\n0xA664\t0x572C\n0xA665\t0x572F\n0xA666\t0x5729\n0xA667\t0x5919\n0xA668\t0x591A\n0xA669\t0x5937\n0xA66A\t0x5938\n0xA66B\t0x5984\n0xA66C\t0x5978\n0xA66D\t0x5983\n0xA66E\t0x597D\n0xA66F\t0x5979\n0xA670\t0x5982\n0xA671\t0x5981\n0xA672\t0x5B57\n0xA673\t0x5B58\n0xA674\t0x5B87\n0xA675\t0x5B88\n0xA676\t0x5B85\n0xA677\t0x5B89\n0xA678\t0x5BFA\n0xA679\t0x5C16\n0xA67A\t0x5C79\n0xA67B\t0x5DDE\n0xA67C\t0x5E06\n0xA67D\t0x5E76\n0xA67E\t0x5E74\n0xA6A1\t0x5F0F\n0xA6A2\t0x5F1B\n0xA6A3\t0x5FD9\n0xA6A4\t0x5FD6\n0xA6A5\t0x620E\n0xA6A6\t0x620C\n0xA6A7\t0x620D\n0xA6A8\t0x6210\n0xA6A9\t0x6263\n0xA6AA\t0x625B\n0xA6AB\t0x6258\n0xA6AC\t0x6536\n0xA6AD\t0x65E9\n0xA6AE\t0x65E8\n0xA6AF\t0x65EC\n0xA6B0\t0x65ED\n0xA6B1\t0x66F2\n0xA6B2\t0x66F3\n0xA6B3\t0x6709\n0xA6B4\t0x673D\n0xA6B5\t0x6734\n0xA6B6\t0x6731\n0xA6B7\t0x6735\n0xA6B8\t0x6B21\n0xA6B9\t0x6B64\n0xA6BA\t0x6B7B\n0xA6BB\t0x6C16\n0xA6BC\t0x6C5D\n0xA6BD\t0x6C57\n0xA6BE\t0x6C59\n0xA6BF\t0x6C5F\n0xA6C0\t0x6C60\n0xA6C1\t0x6C50\n0xA6C2\t0x6C55\n0xA6C3\t0x6C61\n0xA6C4\t0x6C5B\n0xA6C5\t0x6C4D\n0xA6C6\t0x6C4E\n0xA6C7\t0x7070\n0xA6C8\t0x725F\n0xA6C9\t0x725D\n0xA6CA\t0x767E\n0xA6CB\t0x7AF9\n0xA6CC\t0x7C73\n0xA6CD\t0x7CF8\n0xA6CE\t0x7F36\n0xA6CF\t0x7F8A\n0xA6D0\t0x7FBD\n0xA6D1\t0x8001\n0xA6D2\t0x8003\n0xA6D3\t0x800C\n0xA6D4\t0x8012\n0xA6D5\t0x8033\n0xA6D6\t0x807F\n0xA6D7\t0x8089\n0xA6D8\t0x808B\n0xA6D9\t0x808C\n0xA6DA\t0x81E3\n0xA6DB\t0x81EA\n0xA6DC\t0x81F3\n0xA6DD\t0x81FC\n0xA6DE\t0x820C\n0xA6DF\t0x821B\n0xA6E0\t0x821F\n0xA6E1\t0x826E\n0xA6E2\t0x8272\n0xA6E3\t0x827E\n0xA6E4\t0x866B\n0xA6E5\t0x8840\n0xA6E6\t0x884C\n0xA6E7\t0x8863\n0xA6E8\t0x897F\n0xA6E9\t0x9621\n0xA6EA\t0x4E32\n0xA6EB\t0x4EA8\n0xA6EC\t0x4F4D\n0xA6ED\t0x4F4F\n0xA6EE\t0x4F47\n0xA6EF\t0x4F57\n0xA6F0\t0x4F5E\n0xA6F1\t0x4F34\n0xA6F2\t0x4F5B\n0xA6F3\t0x4F55\n0xA6F4\t0x4F30\n0xA6F5\t0x4F50\n0xA6F6\t0x4F51\n0xA6F7\t0x4F3D\n0xA6F8\t0x4F3A\n0xA6F9\t0x4F38\n0xA6FA\t0x4F43\n0xA6FB\t0x4F54\n0xA6FC\t0x4F3C\n0xA6FD\t0x4F46\n0xA6FE\t0x4F63\n0xA740\t0x4F5C\n0xA741\t0x4F60\n0xA742\t0x4F2F\n0xA743\t0x4F4E\n0xA744\t0x4F36\n0xA745\t0x4F59\n0xA746\t0x4F5D\n0xA747\t0x4F48\n0xA748\t0x4F5A\n0xA749\t0x514C\n0xA74A\t0x514B\n0xA74B\t0x514D\n0xA74C\t0x5175\n0xA74D\t0x51B6\n0xA74E\t0x51B7\n0xA74F\t0x5225\n0xA750\t0x5224\n0xA751\t0x5229\n0xA752\t0x522A\n0xA753\t0x5228\n0xA754\t0x52AB\n0xA755\t0x52A9\n0xA756\t0x52AA\n0xA757\t0x52AC\n0xA758\t0x5323\n0xA759\t0x5373\n0xA75A\t0x5375\n0xA75B\t0x541D\n0xA75C\t0x542D\n0xA75D\t0x541E\n0xA75E\t0x543E\n0xA75F\t0x5426\n0xA760\t0x544E\n0xA761\t0x5427\n0xA762\t0x5446\n0xA763\t0x5443\n0xA764\t0x5433\n0xA765\t0x5448\n0xA766\t0x5442\n0xA767\t0x541B\n0xA768\t0x5429\n0xA769\t0x544A\n0xA76A\t0x5439\n0xA76B\t0x543B\n0xA76C\t0x5438\n0xA76D\t0x542E\n0xA76E\t0x5435\n0xA76F\t0x5436\n0xA770\t0x5420\n0xA771\t0x543C\n0xA772\t0x5440\n0xA773\t0x5431\n0xA774\t0x542B\n0xA775\t0x541F\n0xA776\t0x542C\n0xA777\t0x56EA\n0xA778\t0x56F0\n0xA779\t0x56E4\n0xA77A\t0x56EB\n0xA77B\t0x574A\n0xA77C\t0x5751\n0xA77D\t0x5740\n0xA77E\t0x574D\n0xA7A1\t0x5747\n0xA7A2\t0x574E\n0xA7A3\t0x573E\n0xA7A4\t0x5750\n0xA7A5\t0x574F\n0xA7A6\t0x573B\n0xA7A7\t0x58EF\n0xA7A8\t0x593E\n0xA7A9\t0x599D\n0xA7AA\t0x5992\n0xA7AB\t0x59A8\n0xA7AC\t0x599E\n0xA7AD\t0x59A3\n0xA7AE\t0x5999\n0xA7AF\t0x5996\n0xA7B0\t0x598D\n0xA7B1\t0x59A4\n0xA7B2\t0x5993\n0xA7B3\t0x598A\n0xA7B4\t0x59A5\n0xA7B5\t0x5B5D\n0xA7B6\t0x5B5C\n0xA7B7\t0x5B5A\n0xA7B8\t0x5B5B\n0xA7B9\t0x5B8C\n0xA7BA\t0x5B8B\n0xA7BB\t0x5B8F\n0xA7BC\t0x5C2C\n0xA7BD\t0x5C40\n0xA7BE\t0x5C41\n0xA7BF\t0x5C3F\n0xA7C0\t0x5C3E\n0xA7C1\t0x5C90\n0xA7C2\t0x5C91\n0xA7C3\t0x5C94\n0xA7C4\t0x5C8C\n0xA7C5\t0x5DEB\n0xA7C6\t0x5E0C\n0xA7C7\t0x5E8F\n0xA7C8\t0x5E87\n0xA7C9\t0x5E8A\n0xA7CA\t0x5EF7\n0xA7CB\t0x5F04\n0xA7CC\t0x5F1F\n0xA7CD\t0x5F64\n0xA7CE\t0x5F62\n0xA7CF\t0x5F77\n0xA7D0\t0x5F79\n0xA7D1\t0x5FD8\n0xA7D2\t0x5FCC\n0xA7D3\t0x5FD7\n0xA7D4\t0x5FCD\n0xA7D5\t0x5FF1\n0xA7D6\t0x5FEB\n0xA7D7\t0x5FF8\n0xA7D8\t0x5FEA\n0xA7D9\t0x6212\n0xA7DA\t0x6211\n0xA7DB\t0x6284\n0xA7DC\t0x6297\n0xA7DD\t0x6296\n0xA7DE\t0x6280\n0xA7DF\t0x6276\n0xA7E0\t0x6289\n0xA7E1\t0x626D\n0xA7E2\t0x628A\n0xA7E3\t0x627C\n0xA7E4\t0x627E\n0xA7E5\t0x6279\n0xA7E6\t0x6273\n0xA7E7\t0x6292\n0xA7E8\t0x626F\n0xA7E9\t0x6298\n0xA7EA\t0x626E\n0xA7EB\t0x6295\n0xA7EC\t0x6293\n0xA7ED\t0x6291\n0xA7EE\t0x6286\n0xA7EF\t0x6539\n0xA7F0\t0x653B\n0xA7F1\t0x6538\n0xA7F2\t0x65F1\n0xA7F3\t0x66F4\n0xA7F4\t0x675F\n0xA7F5\t0x674E\n0xA7F6\t0x674F\n0xA7F7\t0x6750\n0xA7F8\t0x6751\n0xA7F9\t0x675C\n0xA7FA\t0x6756\n0xA7FB\t0x675E\n0xA7FC\t0x6749\n0xA7FD\t0x6746\n0xA7FE\t0x6760\n0xA840\t0x6753\n0xA841\t0x6757\n0xA842\t0x6B65\n0xA843\t0x6BCF\n0xA844\t0x6C42\n0xA845\t0x6C5E\n0xA846\t0x6C99\n0xA847\t0x6C81\n0xA848\t0x6C88\n0xA849\t0x6C89\n0xA84A\t0x6C85\n0xA84B\t0x6C9B\n0xA84C\t0x6C6A\n0xA84D\t0x6C7A\n0xA84E\t0x6C90\n0xA84F\t0x6C70\n0xA850\t0x6C8C\n0xA851\t0x6C68\n0xA852\t0x6C96\n0xA853\t0x6C92\n0xA854\t0x6C7D\n0xA855\t0x6C83\n0xA856\t0x6C72\n0xA857\t0x6C7E\n0xA858\t0x6C74\n0xA859\t0x6C86\n0xA85A\t0x6C76\n0xA85B\t0x6C8D\n0xA85C\t0x6C94\n0xA85D\t0x6C98\n0xA85E\t0x6C82\n0xA85F\t0x7076\n0xA860\t0x707C\n0xA861\t0x707D\n0xA862\t0x7078\n0xA863\t0x7262\n0xA864\t0x7261\n0xA865\t0x7260\n0xA866\t0x72C4\n0xA867\t0x72C2\n0xA868\t0x7396\n0xA869\t0x752C\n0xA86A\t0x752B\n0xA86B\t0x7537\n0xA86C\t0x7538\n0xA86D\t0x7682\n0xA86E\t0x76EF\n0xA86F\t0x77E3\n0xA870\t0x79C1\n0xA871\t0x79C0\n0xA872\t0x79BF\n0xA873\t0x7A76\n0xA874\t0x7CFB\n0xA875\t0x7F55\n0xA876\t0x8096\n0xA877\t0x8093\n0xA878\t0x809D\n0xA879\t0x8098\n0xA87A\t0x809B\n0xA87B\t0x809A\n0xA87C\t0x80B2\n0xA87D\t0x826F\n0xA87E\t0x8292\n0xA8A1\t0x828B\n0xA8A2\t0x828D\n0xA8A3\t0x898B\n0xA8A4\t0x89D2\n0xA8A5\t0x8A00\n0xA8A6\t0x8C37\n0xA8A7\t0x8C46\n0xA8A8\t0x8C55\n0xA8A9\t0x8C9D\n0xA8AA\t0x8D64\n0xA8AB\t0x8D70\n0xA8AC\t0x8DB3\n0xA8AD\t0x8EAB\n0xA8AE\t0x8ECA\n0xA8AF\t0x8F9B\n0xA8B0\t0x8FB0\n0xA8B1\t0x8FC2\n0xA8B2\t0x8FC6\n0xA8B3\t0x8FC5\n0xA8B4\t0x8FC4\n0xA8B5\t0x5DE1\n0xA8B6\t0x9091\n0xA8B7\t0x90A2\n0xA8B8\t0x90AA\n0xA8B9\t0x90A6\n0xA8BA\t0x90A3\n0xA8BB\t0x9149\n0xA8BC\t0x91C6\n0xA8BD\t0x91CC\n0xA8BE\t0x9632\n0xA8BF\t0x962E\n0xA8C0\t0x9631\n0xA8C1\t0x962A\n0xA8C2\t0x962C\n0xA8C3\t0x4E26\n0xA8C4\t0x4E56\n0xA8C5\t0x4E73\n0xA8C6\t0x4E8B\n0xA8C7\t0x4E9B\n0xA8C8\t0x4E9E\n0xA8C9\t0x4EAB\n0xA8CA\t0x4EAC\n0xA8CB\t0x4F6F\n0xA8CC\t0x4F9D\n0xA8CD\t0x4F8D\n0xA8CE\t0x4F73\n0xA8CF\t0x4F7F\n0xA8D0\t0x4F6C\n0xA8D1\t0x4F9B\n0xA8D2\t0x4F8B\n0xA8D3\t0x4F86\n0xA8D4\t0x4F83\n0xA8D5\t0x4F70\n0xA8D6\t0x4F75\n0xA8D7\t0x4F88\n0xA8D8\t0x4F69\n0xA8D9\t0x4F7B\n0xA8DA\t0x4F96\n0xA8DB\t0x4F7E\n0xA8DC\t0x4F8F\n0xA8DD\t0x4F91\n0xA8DE\t0x4F7A\n0xA8DF\t0x5154\n0xA8E0\t0x5152\n0xA8E1\t0x5155\n0xA8E2\t0x5169\n0xA8E3\t0x5177\n0xA8E4\t0x5176\n0xA8E5\t0x5178\n0xA8E6\t0x51BD\n0xA8E7\t0x51FD\n0xA8E8\t0x523B\n0xA8E9\t0x5238\n0xA8EA\t0x5237\n0xA8EB\t0x523A\n0xA8EC\t0x5230\n0xA8ED\t0x522E\n0xA8EE\t0x5236\n0xA8EF\t0x5241\n0xA8F0\t0x52BE\n0xA8F1\t0x52BB\n0xA8F2\t0x5352\n0xA8F3\t0x5354\n0xA8F4\t0x5353\n0xA8F5\t0x5351\n0xA8F6\t0x5366\n0xA8F7\t0x5377\n0xA8F8\t0x5378\n0xA8F9\t0x5379\n0xA8FA\t0x53D6\n0xA8FB\t0x53D4\n0xA8FC\t0x53D7\n0xA8FD\t0x5473\n0xA8FE\t0x5475\n0xA940\t0x5496\n0xA941\t0x5478\n0xA942\t0x5495\n0xA943\t0x5480\n0xA944\t0x547B\n0xA945\t0x5477\n0xA946\t0x5484\n0xA947\t0x5492\n0xA948\t0x5486\n0xA949\t0x547C\n0xA94A\t0x5490\n0xA94B\t0x5471\n0xA94C\t0x5476\n0xA94D\t0x548C\n0xA94E\t0x549A\n0xA94F\t0x5462\n0xA950\t0x5468\n0xA951\t0x548B\n0xA952\t0x547D\n0xA953\t0x548E\n0xA954\t0x56FA\n0xA955\t0x5783\n0xA956\t0x5777\n0xA957\t0x576A\n0xA958\t0x5769\n0xA959\t0x5761\n0xA95A\t0x5766\n0xA95B\t0x5764\n0xA95C\t0x577C\n0xA95D\t0x591C\n0xA95E\t0x5949\n0xA95F\t0x5947\n0xA960\t0x5948\n0xA961\t0x5944\n0xA962\t0x5954\n0xA963\t0x59BE\n0xA964\t0x59BB\n0xA965\t0x59D4\n0xA966\t0x59B9\n0xA967\t0x59AE\n0xA968\t0x59D1\n0xA969\t0x59C6\n0xA96A\t0x59D0\n0xA96B\t0x59CD\n0xA96C\t0x59CB\n0xA96D\t0x59D3\n0xA96E\t0x59CA\n0xA96F\t0x59AF\n0xA970\t0x59B3\n0xA971\t0x59D2\n0xA972\t0x59C5\n0xA973\t0x5B5F\n0xA974\t0x5B64\n0xA975\t0x5B63\n0xA976\t0x5B97\n0xA977\t0x5B9A\n0xA978\t0x5B98\n0xA979\t0x5B9C\n0xA97A\t0x5B99\n0xA97B\t0x5B9B\n0xA97C\t0x5C1A\n0xA97D\t0x5C48\n0xA97E\t0x5C45\n0xA9A1\t0x5C46\n0xA9A2\t0x5CB7\n0xA9A3\t0x5CA1\n0xA9A4\t0x5CB8\n0xA9A5\t0x5CA9\n0xA9A6\t0x5CAB\n0xA9A7\t0x5CB1\n0xA9A8\t0x5CB3\n0xA9A9\t0x5E18\n0xA9AA\t0x5E1A\n0xA9AB\t0x5E16\n0xA9AC\t0x5E15\n0xA9AD\t0x5E1B\n0xA9AE\t0x5E11\n0xA9AF\t0x5E78\n0xA9B0\t0x5E9A\n0xA9B1\t0x5E97\n0xA9B2\t0x5E9C\n0xA9B3\t0x5E95\n0xA9B4\t0x5E96\n0xA9B5\t0x5EF6\n0xA9B6\t0x5F26\n0xA9B7\t0x5F27\n0xA9B8\t0x5F29\n0xA9B9\t0x5F80\n0xA9BA\t0x5F81\n0xA9BB\t0x5F7F\n0xA9BC\t0x5F7C\n0xA9BD\t0x5FDD\n0xA9BE\t0x5FE0\n0xA9BF\t0x5FFD\n0xA9C0\t0x5FF5\n0xA9C1\t0x5FFF\n0xA9C2\t0x600F\n0xA9C3\t0x6014\n0xA9C4\t0x602F\n0xA9C5\t0x6035\n0xA9C6\t0x6016\n0xA9C7\t0x602A\n0xA9C8\t0x6015\n0xA9C9\t0x6021\n0xA9CA\t0x6027\n0xA9CB\t0x6029\n0xA9CC\t0x602B\n0xA9CD\t0x601B\n0xA9CE\t0x6216\n0xA9CF\t0x6215\n0xA9D0\t0x623F\n0xA9D1\t0x623E\n0xA9D2\t0x6240\n0xA9D3\t0x627F\n0xA9D4\t0x62C9\n0xA9D5\t0x62CC\n0xA9D6\t0x62C4\n0xA9D7\t0x62BF\n0xA9D8\t0x62C2\n0xA9D9\t0x62B9\n0xA9DA\t0x62D2\n0xA9DB\t0x62DB\n0xA9DC\t0x62AB\n0xA9DD\t0x62D3\n0xA9DE\t0x62D4\n0xA9DF\t0x62CB\n0xA9E0\t0x62C8\n0xA9E1\t0x62A8\n0xA9E2\t0x62BD\n0xA9E3\t0x62BC\n0xA9E4\t0x62D0\n0xA9E5\t0x62D9\n0xA9E6\t0x62C7\n0xA9E7\t0x62CD\n0xA9E8\t0x62B5\n0xA9E9\t0x62DA\n0xA9EA\t0x62B1\n0xA9EB\t0x62D8\n0xA9EC\t0x62D6\n0xA9ED\t0x62D7\n0xA9EE\t0x62C6\n0xA9EF\t0x62AC\n0xA9F0\t0x62CE\n0xA9F1\t0x653E\n0xA9F2\t0x65A7\n0xA9F3\t0x65BC\n0xA9F4\t0x65FA\n0xA9F5\t0x6614\n0xA9F6\t0x6613\n0xA9F7\t0x660C\n0xA9F8\t0x6606\n0xA9F9\t0x6602\n0xA9FA\t0x660E\n0xA9FB\t0x6600\n0xA9FC\t0x660F\n0xA9FD\t0x6615\n0xA9FE\t0x660A\n0xAA40\t0x6607\n0xAA41\t0x670D\n0xAA42\t0x670B\n0xAA43\t0x676D\n0xAA44\t0x678B\n0xAA45\t0x6795\n0xAA46\t0x6771\n0xAA47\t0x679C\n0xAA48\t0x6773\n0xAA49\t0x6777\n0xAA4A\t0x6787\n0xAA4B\t0x679D\n0xAA4C\t0x6797\n0xAA4D\t0x676F\n0xAA4E\t0x6770\n0xAA4F\t0x677F\n0xAA50\t0x6789\n0xAA51\t0x677E\n0xAA52\t0x6790\n0xAA53\t0x6775\n0xAA54\t0x679A\n0xAA55\t0x6793\n0xAA56\t0x677C\n0xAA57\t0x676A\n0xAA58\t0x6772\n0xAA59\t0x6B23\n0xAA5A\t0x6B66\n0xAA5B\t0x6B67\n0xAA5C\t0x6B7F\n0xAA5D\t0x6C13\n0xAA5E\t0x6C1B\n0xAA5F\t0x6CE3\n0xAA60\t0x6CE8\n0xAA61\t0x6CF3\n0xAA62\t0x6CB1\n0xAA63\t0x6CCC\n0xAA64\t0x6CE5\n0xAA65\t0x6CB3\n0xAA66\t0x6CBD\n0xAA67\t0x6CBE\n0xAA68\t0x6CBC\n0xAA69\t0x6CE2\n0xAA6A\t0x6CAB\n0xAA6B\t0x6CD5\n0xAA6C\t0x6CD3\n0xAA6D\t0x6CB8\n0xAA6E\t0x6CC4\n0xAA6F\t0x6CB9\n0xAA70\t0x6CC1\n0xAA71\t0x6CAE\n0xAA72\t0x6CD7\n0xAA73\t0x6CC5\n0xAA74\t0x6CF1\n0xAA75\t0x6CBF\n0xAA76\t0x6CBB\n0xAA77\t0x6CE1\n0xAA78\t0x6CDB\n0xAA79\t0x6CCA\n0xAA7A\t0x6CAC\n0xAA7B\t0x6CEF\n0xAA7C\t0x6CDC\n0xAA7D\t0x6CD6\n0xAA7E\t0x6CE0\n0xAAA1\t0x7095\n0xAAA2\t0x708E\n0xAAA3\t0x7092\n0xAAA4\t0x708A\n0xAAA5\t0x7099\n0xAAA6\t0x722C\n0xAAA7\t0x722D\n0xAAA8\t0x7238\n0xAAA9\t0x7248\n0xAAAA\t0x7267\n0xAAAB\t0x7269\n0xAAAC\t0x72C0\n0xAAAD\t0x72CE\n0xAAAE\t0x72D9\n0xAAAF\t0x72D7\n0xAAB0\t0x72D0\n0xAAB1\t0x73A9\n0xAAB2\t0x73A8\n0xAAB3\t0x739F\n0xAAB4\t0x73AB\n0xAAB5\t0x73A5\n0xAAB6\t0x753D\n0xAAB7\t0x759D\n0xAAB8\t0x7599\n0xAAB9\t0x759A\n0xAABA\t0x7684\n0xAABB\t0x76C2\n0xAABC\t0x76F2\n0xAABD\t0x76F4\n0xAABE\t0x77E5\n0xAABF\t0x77FD\n0xAAC0\t0x793E\n0xAAC1\t0x7940\n0xAAC2\t0x7941\n0xAAC3\t0x79C9\n0xAAC4\t0x79C8\n0xAAC5\t0x7A7A\n0xAAC6\t0x7A79\n0xAAC7\t0x7AFA\n0xAAC8\t0x7CFE\n0xAAC9\t0x7F54\n0xAACA\t0x7F8C\n0xAACB\t0x7F8B\n0xAACC\t0x8005\n0xAACD\t0x80BA\n0xAACE\t0x80A5\n0xAACF\t0x80A2\n0xAAD0\t0x80B1\n0xAAD1\t0x80A1\n0xAAD2\t0x80AB\n0xAAD3\t0x80A9\n0xAAD4\t0x80B4\n0xAAD5\t0x80AA\n0xAAD6\t0x80AF\n0xAAD7\t0x81E5\n0xAAD8\t0x81FE\n0xAAD9\t0x820D\n0xAADA\t0x82B3\n0xAADB\t0x829D\n0xAADC\t0x8299\n0xAADD\t0x82AD\n0xAADE\t0x82BD\n0xAADF\t0x829F\n0xAAE0\t0x82B9\n0xAAE1\t0x82B1\n0xAAE2\t0x82AC\n0xAAE3\t0x82A5\n0xAAE4\t0x82AF\n0xAAE5\t0x82B8\n0xAAE6\t0x82A3\n0xAAE7\t0x82B0\n0xAAE8\t0x82BE\n0xAAE9\t0x82B7\n0xAAEA\t0x864E\n0xAAEB\t0x8671\n0xAAEC\t0x521D\n0xAAED\t0x8868\n0xAAEE\t0x8ECB\n0xAAEF\t0x8FCE\n0xAAF0\t0x8FD4\n0xAAF1\t0x8FD1\n0xAAF2\t0x90B5\n0xAAF3\t0x90B8\n0xAAF4\t0x90B1\n0xAAF5\t0x90B6\n0xAAF6\t0x91C7\n0xAAF7\t0x91D1\n0xAAF8\t0x9577\n0xAAF9\t0x9580\n0xAAFA\t0x961C\n0xAAFB\t0x9640\n0xAAFC\t0x963F\n0xAAFD\t0x963B\n0xAAFE\t0x9644\n0xAB40\t0x9642\n0xAB41\t0x96B9\n0xAB42\t0x96E8\n0xAB43\t0x9752\n0xAB44\t0x975E\n0xAB45\t0x4E9F\n0xAB46\t0x4EAD\n0xAB47\t0x4EAE\n0xAB48\t0x4FE1\n0xAB49\t0x4FB5\n0xAB4A\t0x4FAF\n0xAB4B\t0x4FBF\n0xAB4C\t0x4FE0\n0xAB4D\t0x4FD1\n0xAB4E\t0x4FCF\n0xAB4F\t0x4FDD\n0xAB50\t0x4FC3\n0xAB51\t0x4FB6\n0xAB52\t0x4FD8\n0xAB53\t0x4FDF\n0xAB54\t0x4FCA\n0xAB55\t0x4FD7\n0xAB56\t0x4FAE\n0xAB57\t0x4FD0\n0xAB58\t0x4FC4\n0xAB59\t0x4FC2\n0xAB5A\t0x4FDA\n0xAB5B\t0x4FCE\n0xAB5C\t0x4FDE\n0xAB5D\t0x4FB7\n0xAB5E\t0x5157\n0xAB5F\t0x5192\n0xAB60\t0x5191\n0xAB61\t0x51A0\n0xAB62\t0x524E\n0xAB63\t0x5243\n0xAB64\t0x524A\n0xAB65\t0x524D\n0xAB66\t0x524C\n0xAB67\t0x524B\n0xAB68\t0x5247\n0xAB69\t0x52C7\n0xAB6A\t0x52C9\n0xAB6B\t0x52C3\n0xAB6C\t0x52C1\n0xAB6D\t0x530D\n0xAB6E\t0x5357\n0xAB6F\t0x537B\n0xAB70\t0x539A\n0xAB71\t0x53DB\n0xAB72\t0x54AC\n0xAB73\t0x54C0\n0xAB74\t0x54A8\n0xAB75\t0x54CE\n0xAB76\t0x54C9\n0xAB77\t0x54B8\n0xAB78\t0x54A6\n0xAB79\t0x54B3\n0xAB7A\t0x54C7\n0xAB7B\t0x54C2\n0xAB7C\t0x54BD\n0xAB7D\t0x54AA\n0xAB7E\t0x54C1\n0xABA1\t0x54C4\n0xABA2\t0x54C8\n0xABA3\t0x54AF\n0xABA4\t0x54AB\n0xABA5\t0x54B1\n0xABA6\t0x54BB\n0xABA7\t0x54A9\n0xABA8\t0x54A7\n0xABA9\t0x54BF\n0xABAA\t0x56FF\n0xABAB\t0x5782\n0xABAC\t0x578B\n0xABAD\t0x57A0\n0xABAE\t0x57A3\n0xABAF\t0x57A2\n0xABB0\t0x57CE\n0xABB1\t0x57AE\n0xABB2\t0x5793\n0xABB3\t0x5955\n0xABB4\t0x5951\n0xABB5\t0x594F\n0xABB6\t0x594E\n0xABB7\t0x5950\n0xABB8\t0x59DC\n0xABB9\t0x59D8\n0xABBA\t0x59FF\n0xABBB\t0x59E3\n0xABBC\t0x59E8\n0xABBD\t0x5A03\n0xABBE\t0x59E5\n0xABBF\t0x59EA\n0xABC0\t0x59DA\n0xABC1\t0x59E6\n0xABC2\t0x5A01\n0xABC3\t0x59FB\n0xABC4\t0x5B69\n0xABC5\t0x5BA3\n0xABC6\t0x5BA6\n0xABC7\t0x5BA4\n0xABC8\t0x5BA2\n0xABC9\t0x5BA5\n0xABCA\t0x5C01\n0xABCB\t0x5C4E\n0xABCC\t0x5C4F\n0xABCD\t0x5C4D\n0xABCE\t0x5C4B\n0xABCF\t0x5CD9\n0xABD0\t0x5CD2\n0xABD1\t0x5DF7\n0xABD2\t0x5E1D\n0xABD3\t0x5E25\n0xABD4\t0x5E1F\n0xABD5\t0x5E7D\n0xABD6\t0x5EA0\n0xABD7\t0x5EA6\n0xABD8\t0x5EFA\n0xABD9\t0x5F08\n0xABDA\t0x5F2D\n0xABDB\t0x5F65\n0xABDC\t0x5F88\n0xABDD\t0x5F85\n0xABDE\t0x5F8A\n0xABDF\t0x5F8B\n0xABE0\t0x5F87\n0xABE1\t0x5F8C\n0xABE2\t0x5F89\n0xABE3\t0x6012\n0xABE4\t0x601D\n0xABE5\t0x6020\n0xABE6\t0x6025\n0xABE7\t0x600E\n0xABE8\t0x6028\n0xABE9\t0x604D\n0xABEA\t0x6070\n0xABEB\t0x6068\n0xABEC\t0x6062\n0xABED\t0x6046\n0xABEE\t0x6043\n0xABEF\t0x606C\n0xABF0\t0x606B\n0xABF1\t0x606A\n0xABF2\t0x6064\n0xABF3\t0x6241\n0xABF4\t0x62DC\n0xABF5\t0x6316\n0xABF6\t0x6309\n0xABF7\t0x62FC\n0xABF8\t0x62ED\n0xABF9\t0x6301\n0xABFA\t0x62EE\n0xABFB\t0x62FD\n0xABFC\t0x6307\n0xABFD\t0x62F1\n0xABFE\t0x62F7\n0xAC40\t0x62EF\n0xAC41\t0x62EC\n0xAC42\t0x62FE\n0xAC43\t0x62F4\n0xAC44\t0x6311\n0xAC45\t0x6302\n0xAC46\t0x653F\n0xAC47\t0x6545\n0xAC48\t0x65AB\n0xAC49\t0x65BD\n0xAC4A\t0x65E2\n0xAC4B\t0x6625\n0xAC4C\t0x662D\n0xAC4D\t0x6620\n0xAC4E\t0x6627\n0xAC4F\t0x662F\n0xAC50\t0x661F\n0xAC51\t0x6628\n0xAC52\t0x6631\n0xAC53\t0x6624\n0xAC54\t0x66F7\n0xAC55\t0x67FF\n0xAC56\t0x67D3\n0xAC57\t0x67F1\n0xAC58\t0x67D4\n0xAC59\t0x67D0\n0xAC5A\t0x67EC\n0xAC5B\t0x67B6\n0xAC5C\t0x67AF\n0xAC5D\t0x67F5\n0xAC5E\t0x67E9\n0xAC5F\t0x67EF\n0xAC60\t0x67C4\n0xAC61\t0x67D1\n0xAC62\t0x67B4\n0xAC63\t0x67DA\n0xAC64\t0x67E5\n0xAC65\t0x67B8\n0xAC66\t0x67CF\n0xAC67\t0x67DE\n0xAC68\t0x67F3\n0xAC69\t0x67B0\n0xAC6A\t0x67D9\n0xAC6B\t0x67E2\n0xAC6C\t0x67DD\n0xAC6D\t0x67D2\n0xAC6E\t0x6B6A\n0xAC6F\t0x6B83\n0xAC70\t0x6B86\n0xAC71\t0x6BB5\n0xAC72\t0x6BD2\n0xAC73\t0x6BD7\n0xAC74\t0x6C1F\n0xAC75\t0x6CC9\n0xAC76\t0x6D0B\n0xAC77\t0x6D32\n0xAC78\t0x6D2A\n0xAC79\t0x6D41\n0xAC7A\t0x6D25\n0xAC7B\t0x6D0C\n0xAC7C\t0x6D31\n0xAC7D\t0x6D1E\n0xAC7E\t0x6D17\n0xACA1\t0x6D3B\n0xACA2\t0x6D3D\n0xACA3\t0x6D3E\n0xACA4\t0x6D36\n0xACA5\t0x6D1B\n0xACA6\t0x6CF5\n0xACA7\t0x6D39\n0xACA8\t0x6D27\n0xACA9\t0x6D38\n0xACAA\t0x6D29\n0xACAB\t0x6D2E\n0xACAC\t0x6D35\n0xACAD\t0x6D0E\n0xACAE\t0x6D2B\n0xACAF\t0x70AB\n0xACB0\t0x70BA\n0xACB1\t0x70B3\n0xACB2\t0x70AC\n0xACB3\t0x70AF\n0xACB4\t0x70AD\n0xACB5\t0x70B8\n0xACB6\t0x70AE\n0xACB7\t0x70A4\n0xACB8\t0x7230\n0xACB9\t0x7272\n0xACBA\t0x726F\n0xACBB\t0x7274\n0xACBC\t0x72E9\n0xACBD\t0x72E0\n0xACBE\t0x72E1\n0xACBF\t0x73B7\n0xACC0\t0x73CA\n0xACC1\t0x73BB\n0xACC2\t0x73B2\n0xACC3\t0x73CD\n0xACC4\t0x73C0\n0xACC5\t0x73B3\n0xACC6\t0x751A\n0xACC7\t0x752D\n0xACC8\t0x754F\n0xACC9\t0x754C\n0xACCA\t0x754E\n0xACCB\t0x754B\n0xACCC\t0x75AB\n0xACCD\t0x75A4\n0xACCE\t0x75A5\n0xACCF\t0x75A2\n0xACD0\t0x75A3\n0xACD1\t0x7678\n0xACD2\t0x7686\n0xACD3\t0x7687\n0xACD4\t0x7688\n0xACD5\t0x76C8\n0xACD6\t0x76C6\n0xACD7\t0x76C3\n0xACD8\t0x76C5\n0xACD9\t0x7701\n0xACDA\t0x76F9\n0xACDB\t0x76F8\n0xACDC\t0x7709\n0xACDD\t0x770B\n0xACDE\t0x76FE\n0xACDF\t0x76FC\n0xACE0\t0x7707\n0xACE1\t0x77DC\n0xACE2\t0x7802\n0xACE3\t0x7814\n0xACE4\t0x780C\n0xACE5\t0x780D\n0xACE6\t0x7946\n0xACE7\t0x7949\n0xACE8\t0x7948\n0xACE9\t0x7947\n0xACEA\t0x79B9\n0xACEB\t0x79BA\n0xACEC\t0x79D1\n0xACED\t0x79D2\n0xACEE\t0x79CB\n0xACEF\t0x7A7F\n0xACF0\t0x7A81\n0xACF1\t0x7AFF\n0xACF2\t0x7AFD\n0xACF3\t0x7C7D\n0xACF4\t0x7D02\n0xACF5\t0x7D05\n0xACF6\t0x7D00\n0xACF7\t0x7D09\n0xACF8\t0x7D07\n0xACF9\t0x7D04\n0xACFA\t0x7D06\n0xACFB\t0x7F38\n0xACFC\t0x7F8E\n0xACFD\t0x7FBF\n0xACFE\t0x8004\n0xAD40\t0x8010\n0xAD41\t0x800D\n0xAD42\t0x8011\n0xAD43\t0x8036\n0xAD44\t0x80D6\n0xAD45\t0x80E5\n0xAD46\t0x80DA\n0xAD47\t0x80C3\n0xAD48\t0x80C4\n0xAD49\t0x80CC\n0xAD4A\t0x80E1\n0xAD4B\t0x80DB\n0xAD4C\t0x80CE\n0xAD4D\t0x80DE\n0xAD4E\t0x80E4\n0xAD4F\t0x80DD\n0xAD50\t0x81F4\n0xAD51\t0x8222\n0xAD52\t0x82E7\n0xAD53\t0x8303\n0xAD54\t0x8305\n0xAD55\t0x82E3\n0xAD56\t0x82DB\n0xAD57\t0x82E6\n0xAD58\t0x8304\n0xAD59\t0x82E5\n0xAD5A\t0x8302\n0xAD5B\t0x8309\n0xAD5C\t0x82D2\n0xAD5D\t0x82D7\n0xAD5E\t0x82F1\n0xAD5F\t0x8301\n0xAD60\t0x82DC\n0xAD61\t0x82D4\n0xAD62\t0x82D1\n0xAD63\t0x82DE\n0xAD64\t0x82D3\n0xAD65\t0x82DF\n0xAD66\t0x82EF\n0xAD67\t0x8306\n0xAD68\t0x8650\n0xAD69\t0x8679\n0xAD6A\t0x867B\n0xAD6B\t0x867A\n0xAD6C\t0x884D\n0xAD6D\t0x886B\n0xAD6E\t0x8981\n0xAD6F\t0x89D4\n0xAD70\t0x8A08\n0xAD71\t0x8A02\n0xAD72\t0x8A03\n0xAD73\t0x8C9E\n0xAD74\t0x8CA0\n0xAD75\t0x8D74\n0xAD76\t0x8D73\n0xAD77\t0x8DB4\n0xAD78\t0x8ECD\n0xAD79\t0x8ECC\n0xAD7A\t0x8FF0\n0xAD7B\t0x8FE6\n0xAD7C\t0x8FE2\n0xAD7D\t0x8FEA\n0xAD7E\t0x8FE5\n0xADA1\t0x8FED\n0xADA2\t0x8FEB\n0xADA3\t0x8FE4\n0xADA4\t0x8FE8\n0xADA5\t0x90CA\n0xADA6\t0x90CE\n0xADA7\t0x90C1\n0xADA8\t0x90C3\n0xADA9\t0x914B\n0xADAA\t0x914A\n0xADAB\t0x91CD\n0xADAC\t0x9582\n0xADAD\t0x9650\n0xADAE\t0x964B\n0xADAF\t0x964C\n0xADB0\t0x964D\n0xADB1\t0x9762\n0xADB2\t0x9769\n0xADB3\t0x97CB\n0xADB4\t0x97ED\n0xADB5\t0x97F3\n0xADB6\t0x9801\n0xADB7\t0x98A8\n0xADB8\t0x98DB\n0xADB9\t0x98DF\n0xADBA\t0x9996\n0xADBB\t0x9999\n0xADBC\t0x4E58\n0xADBD\t0x4EB3\n0xADBE\t0x500C\n0xADBF\t0x500D\n0xADC0\t0x5023\n0xADC1\t0x4FEF\n0xADC2\t0x5026\n0xADC3\t0x5025\n0xADC4\t0x4FF8\n0xADC5\t0x5029\n0xADC6\t0x5016\n0xADC7\t0x5006\n0xADC8\t0x503C\n0xADC9\t0x501F\n0xADCA\t0x501A\n0xADCB\t0x5012\n0xADCC\t0x5011\n0xADCD\t0x4FFA\n0xADCE\t0x5000\n0xADCF\t0x5014\n0xADD0\t0x5028\n0xADD1\t0x4FF1\n0xADD2\t0x5021\n0xADD3\t0x500B\n0xADD4\t0x5019\n0xADD5\t0x5018\n0xADD6\t0x4FF3\n0xADD7\t0x4FEE\n0xADD8\t0x502D\n0xADD9\t0x502A\n0xADDA\t0x4FFE\n0xADDB\t0x502B\n0xADDC\t0x5009\n0xADDD\t0x517C\n0xADDE\t0x51A4\n0xADDF\t0x51A5\n0xADE0\t0x51A2\n0xADE1\t0x51CD\n0xADE2\t0x51CC\n0xADE3\t0x51C6\n0xADE4\t0x51CB\n0xADE5\t0x5256\n0xADE6\t0x525C\n0xADE7\t0x5254\n0xADE8\t0x525B\n0xADE9\t0x525D\n0xADEA\t0x532A\n0xADEB\t0x537F\n0xADEC\t0x539F\n0xADED\t0x539D\n0xADEE\t0x53DF\n0xADEF\t0x54E8\n0xADF0\t0x5510\n0xADF1\t0x5501\n0xADF2\t0x5537\n0xADF3\t0x54FC\n0xADF4\t0x54E5\n0xADF5\t0x54F2\n0xADF6\t0x5506\n0xADF7\t0x54FA\n0xADF8\t0x5514\n0xADF9\t0x54E9\n0xADFA\t0x54ED\n0xADFB\t0x54E1\n0xADFC\t0x5509\n0xADFD\t0x54EE\n0xADFE\t0x54EA\n0xAE40\t0x54E6\n0xAE41\t0x5527\n0xAE42\t0x5507\n0xAE43\t0x54FD\n0xAE44\t0x550F\n0xAE45\t0x5703\n0xAE46\t0x5704\n0xAE47\t0x57C2\n0xAE48\t0x57D4\n0xAE49\t0x57CB\n0xAE4A\t0x57C3\n0xAE4B\t0x5809\n0xAE4C\t0x590F\n0xAE4D\t0x5957\n0xAE4E\t0x5958\n0xAE4F\t0x595A\n0xAE50\t0x5A11\n0xAE51\t0x5A18\n0xAE52\t0x5A1C\n0xAE53\t0x5A1F\n0xAE54\t0x5A1B\n0xAE55\t0x5A13\n0xAE56\t0x59EC\n0xAE57\t0x5A20\n0xAE58\t0x5A23\n0xAE59\t0x5A29\n0xAE5A\t0x5A25\n0xAE5B\t0x5A0C\n0xAE5C\t0x5A09\n0xAE5D\t0x5B6B\n0xAE5E\t0x5C58\n0xAE5F\t0x5BB0\n0xAE60\t0x5BB3\n0xAE61\t0x5BB6\n0xAE62\t0x5BB4\n0xAE63\t0x5BAE\n0xAE64\t0x5BB5\n0xAE65\t0x5BB9\n0xAE66\t0x5BB8\n0xAE67\t0x5C04\n0xAE68\t0x5C51\n0xAE69\t0x5C55\n0xAE6A\t0x5C50\n0xAE6B\t0x5CED\n0xAE6C\t0x5CFD\n0xAE6D\t0x5CFB\n0xAE6E\t0x5CEA\n0xAE6F\t0x5CE8\n0xAE70\t0x5CF0\n0xAE71\t0x5CF6\n0xAE72\t0x5D01\n0xAE73\t0x5CF4\n0xAE74\t0x5DEE\n0xAE75\t0x5E2D\n0xAE76\t0x5E2B\n0xAE77\t0x5EAB\n0xAE78\t0x5EAD\n0xAE79\t0x5EA7\n0xAE7A\t0x5F31\n0xAE7B\t0x5F92\n0xAE7C\t0x5F91\n0xAE7D\t0x5F90\n0xAE7E\t0x6059\n0xAEA1\t0x6063\n0xAEA2\t0x6065\n0xAEA3\t0x6050\n0xAEA4\t0x6055\n0xAEA5\t0x606D\n0xAEA6\t0x6069\n0xAEA7\t0x606F\n0xAEA8\t0x6084\n0xAEA9\t0x609F\n0xAEAA\t0x609A\n0xAEAB\t0x608D\n0xAEAC\t0x6094\n0xAEAD\t0x608C\n0xAEAE\t0x6085\n0xAEAF\t0x6096\n0xAEB0\t0x6247\n0xAEB1\t0x62F3\n0xAEB2\t0x6308\n0xAEB3\t0x62FF\n0xAEB4\t0x634E\n0xAEB5\t0x633E\n0xAEB6\t0x632F\n0xAEB7\t0x6355\n0xAEB8\t0x6342\n0xAEB9\t0x6346\n0xAEBA\t0x634F\n0xAEBB\t0x6349\n0xAEBC\t0x633A\n0xAEBD\t0x6350\n0xAEBE\t0x633D\n0xAEBF\t0x632A\n0xAEC0\t0x632B\n0xAEC1\t0x6328\n0xAEC2\t0x634D\n0xAEC3\t0x634C\n0xAEC4\t0x6548\n0xAEC5\t0x6549\n0xAEC6\t0x6599\n0xAEC7\t0x65C1\n0xAEC8\t0x65C5\n0xAEC9\t0x6642\n0xAECA\t0x6649\n0xAECB\t0x664F\n0xAECC\t0x6643\n0xAECD\t0x6652\n0xAECE\t0x664C\n0xAECF\t0x6645\n0xAED0\t0x6641\n0xAED1\t0x66F8\n0xAED2\t0x6714\n0xAED3\t0x6715\n0xAED4\t0x6717\n0xAED5\t0x6821\n0xAED6\t0x6838\n0xAED7\t0x6848\n0xAED8\t0x6846\n0xAED9\t0x6853\n0xAEDA\t0x6839\n0xAEDB\t0x6842\n0xAEDC\t0x6854\n0xAEDD\t0x6829\n0xAEDE\t0x68B3\n0xAEDF\t0x6817\n0xAEE0\t0x684C\n0xAEE1\t0x6851\n0xAEE2\t0x683D\n0xAEE3\t0x67F4\n0xAEE4\t0x6850\n0xAEE5\t0x6840\n0xAEE6\t0x683C\n0xAEE7\t0x6843\n0xAEE8\t0x682A\n0xAEE9\t0x6845\n0xAEEA\t0x6813\n0xAEEB\t0x6818\n0xAEEC\t0x6841\n0xAEED\t0x6B8A\n0xAEEE\t0x6B89\n0xAEEF\t0x6BB7\n0xAEF0\t0x6C23\n0xAEF1\t0x6C27\n0xAEF2\t0x6C28\n0xAEF3\t0x6C26\n0xAEF4\t0x6C24\n0xAEF5\t0x6CF0\n0xAEF6\t0x6D6A\n0xAEF7\t0x6D95\n0xAEF8\t0x6D88\n0xAEF9\t0x6D87\n0xAEFA\t0x6D66\n0xAEFB\t0x6D78\n0xAEFC\t0x6D77\n0xAEFD\t0x6D59\n0xAEFE\t0x6D93\n0xAF40\t0x6D6C\n0xAF41\t0x6D89\n0xAF42\t0x6D6E\n0xAF43\t0x6D5A\n0xAF44\t0x6D74\n0xAF45\t0x6D69\n0xAF46\t0x6D8C\n0xAF47\t0x6D8A\n0xAF48\t0x6D79\n0xAF49\t0x6D85\n0xAF4A\t0x6D65\n0xAF4B\t0x6D94\n0xAF4C\t0x70CA\n0xAF4D\t0x70D8\n0xAF4E\t0x70E4\n0xAF4F\t0x70D9\n0xAF50\t0x70C8\n0xAF51\t0x70CF\n0xAF52\t0x7239\n0xAF53\t0x7279\n0xAF54\t0x72FC\n0xAF55\t0x72F9\n0xAF56\t0x72FD\n0xAF57\t0x72F8\n0xAF58\t0x72F7\n0xAF59\t0x7386\n0xAF5A\t0x73ED\n0xAF5B\t0x7409\n0xAF5C\t0x73EE\n0xAF5D\t0x73E0\n0xAF5E\t0x73EA\n0xAF5F\t0x73DE\n0xAF60\t0x7554\n0xAF61\t0x755D\n0xAF62\t0x755C\n0xAF63\t0x755A\n0xAF64\t0x7559\n0xAF65\t0x75BE\n0xAF66\t0x75C5\n0xAF67\t0x75C7\n0xAF68\t0x75B2\n0xAF69\t0x75B3\n0xAF6A\t0x75BD\n0xAF6B\t0x75BC\n0xAF6C\t0x75B9\n0xAF6D\t0x75C2\n0xAF6E\t0x75B8\n0xAF6F\t0x768B\n0xAF70\t0x76B0\n0xAF71\t0x76CA\n0xAF72\t0x76CD\n0xAF73\t0x76CE\n0xAF74\t0x7729\n0xAF75\t0x771F\n0xAF76\t0x7720\n0xAF77\t0x7728\n0xAF78\t0x77E9\n0xAF79\t0x7830\n0xAF7A\t0x7827\n0xAF7B\t0x7838\n0xAF7C\t0x781D\n0xAF7D\t0x7834\n0xAF7E\t0x7837\n0xAFA1\t0x7825\n0xAFA2\t0x782D\n0xAFA3\t0x7820\n0xAFA4\t0x781F\n0xAFA5\t0x7832\n0xAFA6\t0x7955\n0xAFA7\t0x7950\n0xAFA8\t0x7960\n0xAFA9\t0x795F\n0xAFAA\t0x7956\n0xAFAB\t0x795E\n0xAFAC\t0x795D\n0xAFAD\t0x7957\n0xAFAE\t0x795A\n0xAFAF\t0x79E4\n0xAFB0\t0x79E3\n0xAFB1\t0x79E7\n0xAFB2\t0x79DF\n0xAFB3\t0x79E6\n0xAFB4\t0x79E9\n0xAFB5\t0x79D8\n0xAFB6\t0x7A84\n0xAFB7\t0x7A88\n0xAFB8\t0x7AD9\n0xAFB9\t0x7B06\n0xAFBA\t0x7B11\n0xAFBB\t0x7C89\n0xAFBC\t0x7D21\n0xAFBD\t0x7D17\n0xAFBE\t0x7D0B\n0xAFBF\t0x7D0A\n0xAFC0\t0x7D20\n0xAFC1\t0x7D22\n0xAFC2\t0x7D14\n0xAFC3\t0x7D10\n0xAFC4\t0x7D15\n0xAFC5\t0x7D1A\n0xAFC6\t0x7D1C\n0xAFC7\t0x7D0D\n0xAFC8\t0x7D19\n0xAFC9\t0x7D1B\n0xAFCA\t0x7F3A\n0xAFCB\t0x7F5F\n0xAFCC\t0x7F94\n0xAFCD\t0x7FC5\n0xAFCE\t0x7FC1\n0xAFCF\t0x8006\n0xAFD0\t0x8018\n0xAFD1\t0x8015\n0xAFD2\t0x8019\n0xAFD3\t0x8017\n0xAFD4\t0x803D\n0xAFD5\t0x803F\n0xAFD6\t0x80F1\n0xAFD7\t0x8102\n0xAFD8\t0x80F0\n0xAFD9\t0x8105\n0xAFDA\t0x80ED\n0xAFDB\t0x80F4\n0xAFDC\t0x8106\n0xAFDD\t0x80F8\n0xAFDE\t0x80F3\n0xAFDF\t0x8108\n0xAFE0\t0x80FD\n0xAFE1\t0x810A\n0xAFE2\t0x80FC\n0xAFE3\t0x80EF\n0xAFE4\t0x81ED\n0xAFE5\t0x81EC\n0xAFE6\t0x8200\n0xAFE7\t0x8210\n0xAFE8\t0x822A\n0xAFE9\t0x822B\n0xAFEA\t0x8228\n0xAFEB\t0x822C\n0xAFEC\t0x82BB\n0xAFED\t0x832B\n0xAFEE\t0x8352\n0xAFEF\t0x8354\n0xAFF0\t0x834A\n0xAFF1\t0x8338\n0xAFF2\t0x8350\n0xAFF3\t0x8349\n0xAFF4\t0x8335\n0xAFF5\t0x8334\n0xAFF6\t0x834F\n0xAFF7\t0x8332\n0xAFF8\t0x8339\n0xAFF9\t0x8336\n0xAFFA\t0x8317\n0xAFFB\t0x8340\n0xAFFC\t0x8331\n0xAFFD\t0x8328\n0xAFFE\t0x8343\n0xB040\t0x8654\n0xB041\t0x868A\n0xB042\t0x86AA\n0xB043\t0x8693\n0xB044\t0x86A4\n0xB045\t0x86A9\n0xB046\t0x868C\n0xB047\t0x86A3\n0xB048\t0x869C\n0xB049\t0x8870\n0xB04A\t0x8877\n0xB04B\t0x8881\n0xB04C\t0x8882\n0xB04D\t0x887D\n0xB04E\t0x8879\n0xB04F\t0x8A18\n0xB050\t0x8A10\n0xB051\t0x8A0E\n0xB052\t0x8A0C\n0xB053\t0x8A15\n0xB054\t0x8A0A\n0xB055\t0x8A17\n0xB056\t0x8A13\n0xB057\t0x8A16\n0xB058\t0x8A0F\n0xB059\t0x8A11\n0xB05A\t0x8C48\n0xB05B\t0x8C7A\n0xB05C\t0x8C79\n0xB05D\t0x8CA1\n0xB05E\t0x8CA2\n0xB05F\t0x8D77\n0xB060\t0x8EAC\n0xB061\t0x8ED2\n0xB062\t0x8ED4\n0xB063\t0x8ECF\n0xB064\t0x8FB1\n0xB065\t0x9001\n0xB066\t0x9006\n0xB067\t0x8FF7\n0xB068\t0x9000\n0xB069\t0x8FFA\n0xB06A\t0x8FF4\n0xB06B\t0x9003\n0xB06C\t0x8FFD\n0xB06D\t0x9005\n0xB06E\t0x8FF8\n0xB06F\t0x9095\n0xB070\t0x90E1\n0xB071\t0x90DD\n0xB072\t0x90E2\n0xB073\t0x9152\n0xB074\t0x914D\n0xB075\t0x914C\n0xB076\t0x91D8\n0xB077\t0x91DD\n0xB078\t0x91D7\n0xB079\t0x91DC\n0xB07A\t0x91D9\n0xB07B\t0x9583\n0xB07C\t0x9662\n0xB07D\t0x9663\n0xB07E\t0x9661\n0xB0A1\t0x965B\n0xB0A2\t0x965D\n0xB0A3\t0x9664\n0xB0A4\t0x9658\n0xB0A5\t0x965E\n0xB0A6\t0x96BB\n0xB0A7\t0x98E2\n0xB0A8\t0x99AC\n0xB0A9\t0x9AA8\n0xB0AA\t0x9AD8\n0xB0AB\t0x9B25\n0xB0AC\t0x9B32\n0xB0AD\t0x9B3C\n0xB0AE\t0x4E7E\n0xB0AF\t0x507A\n0xB0B0\t0x507D\n0xB0B1\t0x505C\n0xB0B2\t0x5047\n0xB0B3\t0x5043\n0xB0B4\t0x504C\n0xB0B5\t0x505A\n0xB0B6\t0x5049\n0xB0B7\t0x5065\n0xB0B8\t0x5076\n0xB0B9\t0x504E\n0xB0BA\t0x5055\n0xB0BB\t0x5075\n0xB0BC\t0x5074\n0xB0BD\t0x5077\n0xB0BE\t0x504F\n0xB0BF\t0x500F\n0xB0C0\t0x506F\n0xB0C1\t0x506D\n0xB0C2\t0x515C\n0xB0C3\t0x5195\n0xB0C4\t0x51F0\n0xB0C5\t0x526A\n0xB0C6\t0x526F\n0xB0C7\t0x52D2\n0xB0C8\t0x52D9\n0xB0C9\t0x52D8\n0xB0CA\t0x52D5\n0xB0CB\t0x5310\n0xB0CC\t0x530F\n0xB0CD\t0x5319\n0xB0CE\t0x533F\n0xB0CF\t0x5340\n0xB0D0\t0x533E\n0xB0D1\t0x53C3\n0xB0D2\t0x66FC\n0xB0D3\t0x5546\n0xB0D4\t0x556A\n0xB0D5\t0x5566\n0xB0D6\t0x5544\n0xB0D7\t0x555E\n0xB0D8\t0x5561\n0xB0D9\t0x5543\n0xB0DA\t0x554A\n0xB0DB\t0x5531\n0xB0DC\t0x5556\n0xB0DD\t0x554F\n0xB0DE\t0x5555\n0xB0DF\t0x552F\n0xB0E0\t0x5564\n0xB0E1\t0x5538\n0xB0E2\t0x552E\n0xB0E3\t0x555C\n0xB0E4\t0x552C\n0xB0E5\t0x5563\n0xB0E6\t0x5533\n0xB0E7\t0x5541\n0xB0E8\t0x5557\n0xB0E9\t0x5708\n0xB0EA\t0x570B\n0xB0EB\t0x5709\n0xB0EC\t0x57DF\n0xB0ED\t0x5805\n0xB0EE\t0x580A\n0xB0EF\t0x5806\n0xB0F0\t0x57E0\n0xB0F1\t0x57E4\n0xB0F2\t0x57FA\n0xB0F3\t0x5802\n0xB0F4\t0x5835\n0xB0F5\t0x57F7\n0xB0F6\t0x57F9\n0xB0F7\t0x5920\n0xB0F8\t0x5962\n0xB0F9\t0x5A36\n0xB0FA\t0x5A41\n0xB0FB\t0x5A49\n0xB0FC\t0x5A66\n0xB0FD\t0x5A6A\n0xB0FE\t0x5A40\n0xB140\t0x5A3C\n0xB141\t0x5A62\n0xB142\t0x5A5A\n0xB143\t0x5A46\n0xB144\t0x5A4A\n0xB145\t0x5B70\n0xB146\t0x5BC7\n0xB147\t0x5BC5\n0xB148\t0x5BC4\n0xB149\t0x5BC2\n0xB14A\t0x5BBF\n0xB14B\t0x5BC6\n0xB14C\t0x5C09\n0xB14D\t0x5C08\n0xB14E\t0x5C07\n0xB14F\t0x5C60\n0xB150\t0x5C5C\n0xB151\t0x5C5D\n0xB152\t0x5D07\n0xB153\t0x5D06\n0xB154\t0x5D0E\n0xB155\t0x5D1B\n0xB156\t0x5D16\n0xB157\t0x5D22\n0xB158\t0x5D11\n0xB159\t0x5D29\n0xB15A\t0x5D14\n0xB15B\t0x5D19\n0xB15C\t0x5D24\n0xB15D\t0x5D27\n0xB15E\t0x5D17\n0xB15F\t0x5DE2\n0xB160\t0x5E38\n0xB161\t0x5E36\n0xB162\t0x5E33\n0xB163\t0x5E37\n0xB164\t0x5EB7\n0xB165\t0x5EB8\n0xB166\t0x5EB6\n0xB167\t0x5EB5\n0xB168\t0x5EBE\n0xB169\t0x5F35\n0xB16A\t0x5F37\n0xB16B\t0x5F57\n0xB16C\t0x5F6C\n0xB16D\t0x5F69\n0xB16E\t0x5F6B\n0xB16F\t0x5F97\n0xB170\t0x5F99\n0xB171\t0x5F9E\n0xB172\t0x5F98\n0xB173\t0x5FA1\n0xB174\t0x5FA0\n0xB175\t0x5F9C\n0xB176\t0x607F\n0xB177\t0x60A3\n0xB178\t0x6089\n0xB179\t0x60A0\n0xB17A\t0x60A8\n0xB17B\t0x60CB\n0xB17C\t0x60B4\n0xB17D\t0x60E6\n0xB17E\t0x60BD\n0xB1A1\t0x60C5\n0xB1A2\t0x60BB\n0xB1A3\t0x60B5\n0xB1A4\t0x60DC\n0xB1A5\t0x60BC\n0xB1A6\t0x60D8\n0xB1A7\t0x60D5\n0xB1A8\t0x60C6\n0xB1A9\t0x60DF\n0xB1AA\t0x60B8\n0xB1AB\t0x60DA\n0xB1AC\t0x60C7\n0xB1AD\t0x621A\n0xB1AE\t0x621B\n0xB1AF\t0x6248\n0xB1B0\t0x63A0\n0xB1B1\t0x63A7\n0xB1B2\t0x6372\n0xB1B3\t0x6396\n0xB1B4\t0x63A2\n0xB1B5\t0x63A5\n0xB1B6\t0x6377\n0xB1B7\t0x6367\n0xB1B8\t0x6398\n0xB1B9\t0x63AA\n0xB1BA\t0x6371\n0xB1BB\t0x63A9\n0xB1BC\t0x6389\n0xB1BD\t0x6383\n0xB1BE\t0x639B\n0xB1BF\t0x636B\n0xB1C0\t0x63A8\n0xB1C1\t0x6384\n0xB1C2\t0x6388\n0xB1C3\t0x6399\n0xB1C4\t0x63A1\n0xB1C5\t0x63AC\n0xB1C6\t0x6392\n0xB1C7\t0x638F\n0xB1C8\t0x6380\n0xB1C9\t0x637B\n0xB1CA\t0x6369\n0xB1CB\t0x6368\n0xB1CC\t0x637A\n0xB1CD\t0x655D\n0xB1CE\t0x6556\n0xB1CF\t0x6551\n0xB1D0\t0x6559\n0xB1D1\t0x6557\n0xB1D2\t0x555F\n0xB1D3\t0x654F\n0xB1D4\t0x6558\n0xB1D5\t0x6555\n0xB1D6\t0x6554\n0xB1D7\t0x659C\n0xB1D8\t0x659B\n0xB1D9\t0x65AC\n0xB1DA\t0x65CF\n0xB1DB\t0x65CB\n0xB1DC\t0x65CC\n0xB1DD\t0x65CE\n0xB1DE\t0x665D\n0xB1DF\t0x665A\n0xB1E0\t0x6664\n0xB1E1\t0x6668\n0xB1E2\t0x6666\n0xB1E3\t0x665E\n0xB1E4\t0x66F9\n0xB1E5\t0x52D7\n0xB1E6\t0x671B\n0xB1E7\t0x6881\n0xB1E8\t0x68AF\n0xB1E9\t0x68A2\n0xB1EA\t0x6893\n0xB1EB\t0x68B5\n0xB1EC\t0x687F\n0xB1ED\t0x6876\n0xB1EE\t0x68B1\n0xB1EF\t0x68A7\n0xB1F0\t0x6897\n0xB1F1\t0x68B0\n0xB1F2\t0x6883\n0xB1F3\t0x68C4\n0xB1F4\t0x68AD\n0xB1F5\t0x6886\n0xB1F6\t0x6885\n0xB1F7\t0x6894\n0xB1F8\t0x689D\n0xB1F9\t0x68A8\n0xB1FA\t0x689F\n0xB1FB\t0x68A1\n0xB1FC\t0x6882\n0xB1FD\t0x6B32\n0xB1FE\t0x6BBA\n0xB240\t0x6BEB\n0xB241\t0x6BEC\n0xB242\t0x6C2B\n0xB243\t0x6D8E\n0xB244\t0x6DBC\n0xB245\t0x6DF3\n0xB246\t0x6DD9\n0xB247\t0x6DB2\n0xB248\t0x6DE1\n0xB249\t0x6DCC\n0xB24A\t0x6DE4\n0xB24B\t0x6DFB\n0xB24C\t0x6DFA\n0xB24D\t0x6E05\n0xB24E\t0x6DC7\n0xB24F\t0x6DCB\n0xB250\t0x6DAF\n0xB251\t0x6DD1\n0xB252\t0x6DAE\n0xB253\t0x6DDE\n0xB254\t0x6DF9\n0xB255\t0x6DB8\n0xB256\t0x6DF7\n0xB257\t0x6DF5\n0xB258\t0x6DC5\n0xB259\t0x6DD2\n0xB25A\t0x6E1A\n0xB25B\t0x6DB5\n0xB25C\t0x6DDA\n0xB25D\t0x6DEB\n0xB25E\t0x6DD8\n0xB25F\t0x6DEA\n0xB260\t0x6DF1\n0xB261\t0x6DEE\n0xB262\t0x6DE8\n0xB263\t0x6DC6\n0xB264\t0x6DC4\n0xB265\t0x6DAA\n0xB266\t0x6DEC\n0xB267\t0x6DBF\n0xB268\t0x6DE6\n0xB269\t0x70F9\n0xB26A\t0x7109\n0xB26B\t0x710A\n0xB26C\t0x70FD\n0xB26D\t0x70EF\n0xB26E\t0x723D\n0xB26F\t0x727D\n0xB270\t0x7281\n0xB271\t0x731C\n0xB272\t0x731B\n0xB273\t0x7316\n0xB274\t0x7313\n0xB275\t0x7319\n0xB276\t0x7387\n0xB277\t0x7405\n0xB278\t0x740A\n0xB279\t0x7403\n0xB27A\t0x7406\n0xB27B\t0x73FE\n0xB27C\t0x740D\n0xB27D\t0x74E0\n0xB27E\t0x74F6\n0xB2A1\t0x74F7\n0xB2A2\t0x751C\n0xB2A3\t0x7522\n0xB2A4\t0x7565\n0xB2A5\t0x7566\n0xB2A6\t0x7562\n0xB2A7\t0x7570\n0xB2A8\t0x758F\n0xB2A9\t0x75D4\n0xB2AA\t0x75D5\n0xB2AB\t0x75B5\n0xB2AC\t0x75CA\n0xB2AD\t0x75CD\n0xB2AE\t0x768E\n0xB2AF\t0x76D4\n0xB2B0\t0x76D2\n0xB2B1\t0x76DB\n0xB2B2\t0x7737\n0xB2B3\t0x773E\n0xB2B4\t0x773C\n0xB2B5\t0x7736\n0xB2B6\t0x7738\n0xB2B7\t0x773A\n0xB2B8\t0x786B\n0xB2B9\t0x7843\n0xB2BA\t0x784E\n0xB2BB\t0x7965\n0xB2BC\t0x7968\n0xB2BD\t0x796D\n0xB2BE\t0x79FB\n0xB2BF\t0x7A92\n0xB2C0\t0x7A95\n0xB2C1\t0x7B20\n0xB2C2\t0x7B28\n0xB2C3\t0x7B1B\n0xB2C4\t0x7B2C\n0xB2C5\t0x7B26\n0xB2C6\t0x7B19\n0xB2C7\t0x7B1E\n0xB2C8\t0x7B2E\n0xB2C9\t0x7C92\n0xB2CA\t0x7C97\n0xB2CB\t0x7C95\n0xB2CC\t0x7D46\n0xB2CD\t0x7D43\n0xB2CE\t0x7D71\n0xB2CF\t0x7D2E\n0xB2D0\t0x7D39\n0xB2D1\t0x7D3C\n0xB2D2\t0x7D40\n0xB2D3\t0x7D30\n0xB2D4\t0x7D33\n0xB2D5\t0x7D44\n0xB2D6\t0x7D2F\n0xB2D7\t0x7D42\n0xB2D8\t0x7D32\n0xB2D9\t0x7D31\n0xB2DA\t0x7F3D\n0xB2DB\t0x7F9E\n0xB2DC\t0x7F9A\n0xB2DD\t0x7FCC\n0xB2DE\t0x7FCE\n0xB2DF\t0x7FD2\n0xB2E0\t0x801C\n0xB2E1\t0x804A\n0xB2E2\t0x8046\n0xB2E3\t0x812F\n0xB2E4\t0x8116\n0xB2E5\t0x8123\n0xB2E6\t0x812B\n0xB2E7\t0x8129\n0xB2E8\t0x8130\n0xB2E9\t0x8124\n0xB2EA\t0x8202\n0xB2EB\t0x8235\n0xB2EC\t0x8237\n0xB2ED\t0x8236\n0xB2EE\t0x8239\n0xB2EF\t0x838E\n0xB2F0\t0x839E\n0xB2F1\t0x8398\n0xB2F2\t0x8378\n0xB2F3\t0x83A2\n0xB2F4\t0x8396\n0xB2F5\t0x83BD\n0xB2F6\t0x83AB\n0xB2F7\t0x8392\n0xB2F8\t0x838A\n0xB2F9\t0x8393\n0xB2FA\t0x8389\n0xB2FB\t0x83A0\n0xB2FC\t0x8377\n0xB2FD\t0x837B\n0xB2FE\t0x837C\n0xB340\t0x8386\n0xB341\t0x83A7\n0xB342\t0x8655\n0xB343\t0x5F6A\n0xB344\t0x86C7\n0xB345\t0x86C0\n0xB346\t0x86B6\n0xB347\t0x86C4\n0xB348\t0x86B5\n0xB349\t0x86C6\n0xB34A\t0x86CB\n0xB34B\t0x86B1\n0xB34C\t0x86AF\n0xB34D\t0x86C9\n0xB34E\t0x8853\n0xB34F\t0x889E\n0xB350\t0x8888\n0xB351\t0x88AB\n0xB352\t0x8892\n0xB353\t0x8896\n0xB354\t0x888D\n0xB355\t0x888B\n0xB356\t0x8993\n0xB357\t0x898F\n0xB358\t0x8A2A\n0xB359\t0x8A1D\n0xB35A\t0x8A23\n0xB35B\t0x8A25\n0xB35C\t0x8A31\n0xB35D\t0x8A2D\n0xB35E\t0x8A1F\n0xB35F\t0x8A1B\n0xB360\t0x8A22\n0xB361\t0x8C49\n0xB362\t0x8C5A\n0xB363\t0x8CA9\n0xB364\t0x8CAC\n0xB365\t0x8CAB\n0xB366\t0x8CA8\n0xB367\t0x8CAA\n0xB368\t0x8CA7\n0xB369\t0x8D67\n0xB36A\t0x8D66\n0xB36B\t0x8DBE\n0xB36C\t0x8DBA\n0xB36D\t0x8EDB\n0xB36E\t0x8EDF\n0xB36F\t0x9019\n0xB370\t0x900D\n0xB371\t0x901A\n0xB372\t0x9017\n0xB373\t0x9023\n0xB374\t0x901F\n0xB375\t0x901D\n0xB376\t0x9010\n0xB377\t0x9015\n0xB378\t0x901E\n0xB379\t0x9020\n0xB37A\t0x900F\n0xB37B\t0x9022\n0xB37C\t0x9016\n0xB37D\t0x901B\n0xB37E\t0x9014\n0xB3A1\t0x90E8\n0xB3A2\t0x90ED\n0xB3A3\t0x90FD\n0xB3A4\t0x9157\n0xB3A5\t0x91CE\n0xB3A6\t0x91F5\n0xB3A7\t0x91E6\n0xB3A8\t0x91E3\n0xB3A9\t0x91E7\n0xB3AA\t0x91ED\n0xB3AB\t0x91E9\n0xB3AC\t0x9589\n0xB3AD\t0x966A\n0xB3AE\t0x9675\n0xB3AF\t0x9673\n0xB3B0\t0x9678\n0xB3B1\t0x9670\n0xB3B2\t0x9674\n0xB3B3\t0x9676\n0xB3B4\t0x9677\n0xB3B5\t0x966C\n0xB3B6\t0x96C0\n0xB3B7\t0x96EA\n0xB3B8\t0x96E9\n0xB3B9\t0x7AE0\n0xB3BA\t0x7ADF\n0xB3BB\t0x9802\n0xB3BC\t0x9803\n0xB3BD\t0x9B5A\n0xB3BE\t0x9CE5\n0xB3BF\t0x9E75\n0xB3C0\t0x9E7F\n0xB3C1\t0x9EA5\n0xB3C2\t0x9EBB\n0xB3C3\t0x50A2\n0xB3C4\t0x508D\n0xB3C5\t0x5085\n0xB3C6\t0x5099\n0xB3C7\t0x5091\n0xB3C8\t0x5080\n0xB3C9\t0x5096\n0xB3CA\t0x5098\n0xB3CB\t0x509A\n0xB3CC\t0x6700\n0xB3CD\t0x51F1\n0xB3CE\t0x5272\n0xB3CF\t0x5274\n0xB3D0\t0x5275\n0xB3D1\t0x5269\n0xB3D2\t0x52DE\n0xB3D3\t0x52DD\n0xB3D4\t0x52DB\n0xB3D5\t0x535A\n0xB3D6\t0x53A5\n0xB3D7\t0x557B\n0xB3D8\t0x5580\n0xB3D9\t0x55A7\n0xB3DA\t0x557C\n0xB3DB\t0x558A\n0xB3DC\t0x559D\n0xB3DD\t0x5598\n0xB3DE\t0x5582\n0xB3DF\t0x559C\n0xB3E0\t0x55AA\n0xB3E1\t0x5594\n0xB3E2\t0x5587\n0xB3E3\t0x558B\n0xB3E4\t0x5583\n0xB3E5\t0x55B3\n0xB3E6\t0x55AE\n0xB3E7\t0x559F\n0xB3E8\t0x553E\n0xB3E9\t0x55B2\n0xB3EA\t0x559A\n0xB3EB\t0x55BB\n0xB3EC\t0x55AC\n0xB3ED\t0x55B1\n0xB3EE\t0x557E\n0xB3EF\t0x5589\n0xB3F0\t0x55AB\n0xB3F1\t0x5599\n0xB3F2\t0x570D\n0xB3F3\t0x582F\n0xB3F4\t0x582A\n0xB3F5\t0x5834\n0xB3F6\t0x5824\n0xB3F7\t0x5830\n0xB3F8\t0x5831\n0xB3F9\t0x5821\n0xB3FA\t0x581D\n0xB3FB\t0x5820\n0xB3FC\t0x58F9\n0xB3FD\t0x58FA\n0xB3FE\t0x5960\n0xB440\t0x5A77\n0xB441\t0x5A9A\n0xB442\t0x5A7F\n0xB443\t0x5A92\n0xB444\t0x5A9B\n0xB445\t0x5AA7\n0xB446\t0x5B73\n0xB447\t0x5B71\n0xB448\t0x5BD2\n0xB449\t0x5BCC\n0xB44A\t0x5BD3\n0xB44B\t0x5BD0\n0xB44C\t0x5C0A\n0xB44D\t0x5C0B\n0xB44E\t0x5C31\n0xB44F\t0x5D4C\n0xB450\t0x5D50\n0xB451\t0x5D34\n0xB452\t0x5D47\n0xB453\t0x5DFD\n0xB454\t0x5E45\n0xB455\t0x5E3D\n0xB456\t0x5E40\n0xB457\t0x5E43\n0xB458\t0x5E7E\n0xB459\t0x5ECA\n0xB45A\t0x5EC1\n0xB45B\t0x5EC2\n0xB45C\t0x5EC4\n0xB45D\t0x5F3C\n0xB45E\t0x5F6D\n0xB45F\t0x5FA9\n0xB460\t0x5FAA\n0xB461\t0x5FA8\n0xB462\t0x60D1\n0xB463\t0x60E1\n0xB464\t0x60B2\n0xB465\t0x60B6\n0xB466\t0x60E0\n0xB467\t0x611C\n0xB468\t0x6123\n0xB469\t0x60FA\n0xB46A\t0x6115\n0xB46B\t0x60F0\n0xB46C\t0x60FB\n0xB46D\t0x60F4\n0xB46E\t0x6168\n0xB46F\t0x60F1\n0xB470\t0x610E\n0xB471\t0x60F6\n0xB472\t0x6109\n0xB473\t0x6100\n0xB474\t0x6112\n0xB475\t0x621F\n0xB476\t0x6249\n0xB477\t0x63A3\n0xB478\t0x638C\n0xB479\t0x63CF\n0xB47A\t0x63C0\n0xB47B\t0x63E9\n0xB47C\t0x63C9\n0xB47D\t0x63C6\n0xB47E\t0x63CD\n0xB4A1\t0x63D2\n0xB4A2\t0x63E3\n0xB4A3\t0x63D0\n0xB4A4\t0x63E1\n0xB4A5\t0x63D6\n0xB4A6\t0x63ED\n0xB4A7\t0x63EE\n0xB4A8\t0x6376\n0xB4A9\t0x63F4\n0xB4AA\t0x63EA\n0xB4AB\t0x63DB\n0xB4AC\t0x6452\n0xB4AD\t0x63DA\n0xB4AE\t0x63F9\n0xB4AF\t0x655E\n0xB4B0\t0x6566\n0xB4B1\t0x6562\n0xB4B2\t0x6563\n0xB4B3\t0x6591\n0xB4B4\t0x6590\n0xB4B5\t0x65AF\n0xB4B6\t0x666E\n0xB4B7\t0x6670\n0xB4B8\t0x6674\n0xB4B9\t0x6676\n0xB4BA\t0x666F\n0xB4BB\t0x6691\n0xB4BC\t0x667A\n0xB4BD\t0x667E\n0xB4BE\t0x6677\n0xB4BF\t0x66FE\n0xB4C0\t0x66FF\n0xB4C1\t0x671F\n0xB4C2\t0x671D\n0xB4C3\t0x68FA\n0xB4C4\t0x68D5\n0xB4C5\t0x68E0\n0xB4C6\t0x68D8\n0xB4C7\t0x68D7\n0xB4C8\t0x6905\n0xB4C9\t0x68DF\n0xB4CA\t0x68F5\n0xB4CB\t0x68EE\n0xB4CC\t0x68E7\n0xB4CD\t0x68F9\n0xB4CE\t0x68D2\n0xB4CF\t0x68F2\n0xB4D0\t0x68E3\n0xB4D1\t0x68CB\n0xB4D2\t0x68CD\n0xB4D3\t0x690D\n0xB4D4\t0x6912\n0xB4D5\t0x690E\n0xB4D6\t0x68C9\n0xB4D7\t0x68DA\n0xB4D8\t0x696E\n0xB4D9\t0x68FB\n0xB4DA\t0x6B3E\n0xB4DB\t0x6B3A\n0xB4DC\t0x6B3D\n0xB4DD\t0x6B98\n0xB4DE\t0x6B96\n0xB4DF\t0x6BBC\n0xB4E0\t0x6BEF\n0xB4E1\t0x6C2E\n0xB4E2\t0x6C2F\n0xB4E3\t0x6C2C\n0xB4E4\t0x6E2F\n0xB4E5\t0x6E38\n0xB4E6\t0x6E54\n0xB4E7\t0x6E21\n0xB4E8\t0x6E32\n0xB4E9\t0x6E67\n0xB4EA\t0x6E4A\n0xB4EB\t0x6E20\n0xB4EC\t0x6E25\n0xB4ED\t0x6E23\n0xB4EE\t0x6E1B\n0xB4EF\t0x6E5B\n0xB4F0\t0x6E58\n0xB4F1\t0x6E24\n0xB4F2\t0x6E56\n0xB4F3\t0x6E6E\n0xB4F4\t0x6E2D\n0xB4F5\t0x6E26\n0xB4F6\t0x6E6F\n0xB4F7\t0x6E34\n0xB4F8\t0x6E4D\n0xB4F9\t0x6E3A\n0xB4FA\t0x6E2C\n0xB4FB\t0x6E43\n0xB4FC\t0x6E1D\n0xB4FD\t0x6E3E\n0xB4FE\t0x6ECB\n0xB540\t0x6E89\n0xB541\t0x6E19\n0xB542\t0x6E4E\n0xB543\t0x6E63\n0xB544\t0x6E44\n0xB545\t0x6E72\n0xB546\t0x6E69\n0xB547\t0x6E5F\n0xB548\t0x7119\n0xB549\t0x711A\n0xB54A\t0x7126\n0xB54B\t0x7130\n0xB54C\t0x7121\n0xB54D\t0x7136\n0xB54E\t0x716E\n0xB54F\t0x711C\n0xB550\t0x724C\n0xB551\t0x7284\n0xB552\t0x7280\n0xB553\t0x7336\n0xB554\t0x7325\n0xB555\t0x7334\n0xB556\t0x7329\n0xB557\t0x743A\n0xB558\t0x742A\n0xB559\t0x7433\n0xB55A\t0x7422\n0xB55B\t0x7425\n0xB55C\t0x7435\n0xB55D\t0x7436\n0xB55E\t0x7434\n0xB55F\t0x742F\n0xB560\t0x741B\n0xB561\t0x7426\n0xB562\t0x7428\n0xB563\t0x7525\n0xB564\t0x7526\n0xB565\t0x756B\n0xB566\t0x756A\n0xB567\t0x75E2\n0xB568\t0x75DB\n0xB569\t0x75E3\n0xB56A\t0x75D9\n0xB56B\t0x75D8\n0xB56C\t0x75DE\n0xB56D\t0x75E0\n0xB56E\t0x767B\n0xB56F\t0x767C\n0xB570\t0x7696\n0xB571\t0x7693\n0xB572\t0x76B4\n0xB573\t0x76DC\n0xB574\t0x774F\n0xB575\t0x77ED\n0xB576\t0x785D\n0xB577\t0x786C\n0xB578\t0x786F\n0xB579\t0x7A0D\n0xB57A\t0x7A08\n0xB57B\t0x7A0B\n0xB57C\t0x7A05\n0xB57D\t0x7A00\n0xB57E\t0x7A98\n0xB5A1\t0x7A97\n0xB5A2\t0x7A96\n0xB5A3\t0x7AE5\n0xB5A4\t0x7AE3\n0xB5A5\t0x7B49\n0xB5A6\t0x7B56\n0xB5A7\t0x7B46\n0xB5A8\t0x7B50\n0xB5A9\t0x7B52\n0xB5AA\t0x7B54\n0xB5AB\t0x7B4D\n0xB5AC\t0x7B4B\n0xB5AD\t0x7B4F\n0xB5AE\t0x7B51\n0xB5AF\t0x7C9F\n0xB5B0\t0x7CA5\n0xB5B1\t0x7D5E\n0xB5B2\t0x7D50\n0xB5B3\t0x7D68\n0xB5B4\t0x7D55\n0xB5B5\t0x7D2B\n0xB5B6\t0x7D6E\n0xB5B7\t0x7D72\n0xB5B8\t0x7D61\n0xB5B9\t0x7D66\n0xB5BA\t0x7D62\n0xB5BB\t0x7D70\n0xB5BC\t0x7D73\n0xB5BD\t0x5584\n0xB5BE\t0x7FD4\n0xB5BF\t0x7FD5\n0xB5C0\t0x800B\n0xB5C1\t0x8052\n0xB5C2\t0x8085\n0xB5C3\t0x8155\n0xB5C4\t0x8154\n0xB5C5\t0x814B\n0xB5C6\t0x8151\n0xB5C7\t0x814E\n0xB5C8\t0x8139\n0xB5C9\t0x8146\n0xB5CA\t0x813E\n0xB5CB\t0x814C\n0xB5CC\t0x8153\n0xB5CD\t0x8174\n0xB5CE\t0x8212\n0xB5CF\t0x821C\n0xB5D0\t0x83E9\n0xB5D1\t0x8403\n0xB5D2\t0x83F8\n0xB5D3\t0x840D\n0xB5D4\t0x83E0\n0xB5D5\t0x83C5\n0xB5D6\t0x840B\n0xB5D7\t0x83C1\n0xB5D8\t0x83EF\n0xB5D9\t0x83F1\n0xB5DA\t0x83F4\n0xB5DB\t0x8457\n0xB5DC\t0x840A\n0xB5DD\t0x83F0\n0xB5DE\t0x840C\n0xB5DF\t0x83CC\n0xB5E0\t0x83FD\n0xB5E1\t0x83F2\n0xB5E2\t0x83CA\n0xB5E3\t0x8438\n0xB5E4\t0x840E\n0xB5E5\t0x8404\n0xB5E6\t0x83DC\n0xB5E7\t0x8407\n0xB5E8\t0x83D4\n0xB5E9\t0x83DF\n0xB5EA\t0x865B\n0xB5EB\t0x86DF\n0xB5EC\t0x86D9\n0xB5ED\t0x86ED\n0xB5EE\t0x86D4\n0xB5EF\t0x86DB\n0xB5F0\t0x86E4\n0xB5F1\t0x86D0\n0xB5F2\t0x86DE\n0xB5F3\t0x8857\n0xB5F4\t0x88C1\n0xB5F5\t0x88C2\n0xB5F6\t0x88B1\n0xB5F7\t0x8983\n0xB5F8\t0x8996\n0xB5F9\t0x8A3B\n0xB5FA\t0x8A60\n0xB5FB\t0x8A55\n0xB5FC\t0x8A5E\n0xB5FD\t0x8A3C\n0xB5FE\t0x8A41\n0xB640\t0x8A54\n0xB641\t0x8A5B\n0xB642\t0x8A50\n0xB643\t0x8A46\n0xB644\t0x8A34\n0xB645\t0x8A3A\n0xB646\t0x8A36\n0xB647\t0x8A56\n0xB648\t0x8C61\n0xB649\t0x8C82\n0xB64A\t0x8CAF\n0xB64B\t0x8CBC\n0xB64C\t0x8CB3\n0xB64D\t0x8CBD\n0xB64E\t0x8CC1\n0xB64F\t0x8CBB\n0xB650\t0x8CC0\n0xB651\t0x8CB4\n0xB652\t0x8CB7\n0xB653\t0x8CB6\n0xB654\t0x8CBF\n0xB655\t0x8CB8\n0xB656\t0x8D8A\n0xB657\t0x8D85\n0xB658\t0x8D81\n0xB659\t0x8DCE\n0xB65A\t0x8DDD\n0xB65B\t0x8DCB\n0xB65C\t0x8DDA\n0xB65D\t0x8DD1\n0xB65E\t0x8DCC\n0xB65F\t0x8DDB\n0xB660\t0x8DC6\n0xB661\t0x8EFB\n0xB662\t0x8EF8\n0xB663\t0x8EFC\n0xB664\t0x8F9C\n0xB665\t0x902E\n0xB666\t0x9035\n0xB667\t0x9031\n0xB668\t0x9038\n0xB669\t0x9032\n0xB66A\t0x9036\n0xB66B\t0x9102\n0xB66C\t0x90F5\n0xB66D\t0x9109\n0xB66E\t0x90FE\n0xB66F\t0x9163\n0xB670\t0x9165\n0xB671\t0x91CF\n0xB672\t0x9214\n0xB673\t0x9215\n0xB674\t0x9223\n0xB675\t0x9209\n0xB676\t0x921E\n0xB677\t0x920D\n0xB678\t0x9210\n0xB679\t0x9207\n0xB67A\t0x9211\n0xB67B\t0x9594\n0xB67C\t0x958F\n0xB67D\t0x958B\n0xB67E\t0x9591\n0xB6A1\t0x9593\n0xB6A2\t0x9592\n0xB6A3\t0x958E\n0xB6A4\t0x968A\n0xB6A5\t0x968E\n0xB6A6\t0x968B\n0xB6A7\t0x967D\n0xB6A8\t0x9685\n0xB6A9\t0x9686\n0xB6AA\t0x968D\n0xB6AB\t0x9672\n0xB6AC\t0x9684\n0xB6AD\t0x96C1\n0xB6AE\t0x96C5\n0xB6AF\t0x96C4\n0xB6B0\t0x96C6\n0xB6B1\t0x96C7\n0xB6B2\t0x96EF\n0xB6B3\t0x96F2\n0xB6B4\t0x97CC\n0xB6B5\t0x9805\n0xB6B6\t0x9806\n0xB6B7\t0x9808\n0xB6B8\t0x98E7\n0xB6B9\t0x98EA\n0xB6BA\t0x98EF\n0xB6BB\t0x98E9\n0xB6BC\t0x98F2\n0xB6BD\t0x98ED\n0xB6BE\t0x99AE\n0xB6BF\t0x99AD\n0xB6C0\t0x9EC3\n0xB6C1\t0x9ECD\n0xB6C2\t0x9ED1\n0xB6C3\t0x4E82\n0xB6C4\t0x50AD\n0xB6C5\t0x50B5\n0xB6C6\t0x50B2\n0xB6C7\t0x50B3\n0xB6C8\t0x50C5\n0xB6C9\t0x50BE\n0xB6CA\t0x50AC\n0xB6CB\t0x50B7\n0xB6CC\t0x50BB\n0xB6CD\t0x50AF\n0xB6CE\t0x50C7\n0xB6CF\t0x527F\n0xB6D0\t0x5277\n0xB6D1\t0x527D\n0xB6D2\t0x52DF\n0xB6D3\t0x52E6\n0xB6D4\t0x52E4\n0xB6D5\t0x52E2\n0xB6D6\t0x52E3\n0xB6D7\t0x532F\n0xB6D8\t0x55DF\n0xB6D9\t0x55E8\n0xB6DA\t0x55D3\n0xB6DB\t0x55E6\n0xB6DC\t0x55CE\n0xB6DD\t0x55DC\n0xB6DE\t0x55C7\n0xB6DF\t0x55D1\n0xB6E0\t0x55E3\n0xB6E1\t0x55E4\n0xB6E2\t0x55EF\n0xB6E3\t0x55DA\n0xB6E4\t0x55E1\n0xB6E5\t0x55C5\n0xB6E6\t0x55C6\n0xB6E7\t0x55E5\n0xB6E8\t0x55C9\n0xB6E9\t0x5712\n0xB6EA\t0x5713\n0xB6EB\t0x585E\n0xB6EC\t0x5851\n0xB6ED\t0x5858\n0xB6EE\t0x5857\n0xB6EF\t0x585A\n0xB6F0\t0x5854\n0xB6F1\t0x586B\n0xB6F2\t0x584C\n0xB6F3\t0x586D\n0xB6F4\t0x584A\n0xB6F5\t0x5862\n0xB6F6\t0x5852\n0xB6F7\t0x584B\n0xB6F8\t0x5967\n0xB6F9\t0x5AC1\n0xB6FA\t0x5AC9\n0xB6FB\t0x5ACC\n0xB6FC\t0x5ABE\n0xB6FD\t0x5ABD\n0xB6FE\t0x5ABC\n0xB740\t0x5AB3\n0xB741\t0x5AC2\n0xB742\t0x5AB2\n0xB743\t0x5D69\n0xB744\t0x5D6F\n0xB745\t0x5E4C\n0xB746\t0x5E79\n0xB747\t0x5EC9\n0xB748\t0x5EC8\n0xB749\t0x5F12\n0xB74A\t0x5F59\n0xB74B\t0x5FAC\n0xB74C\t0x5FAE\n0xB74D\t0x611A\n0xB74E\t0x610F\n0xB74F\t0x6148\n0xB750\t0x611F\n0xB751\t0x60F3\n0xB752\t0x611B\n0xB753\t0x60F9\n0xB754\t0x6101\n0xB755\t0x6108\n0xB756\t0x614E\n0xB757\t0x614C\n0xB758\t0x6144\n0xB759\t0x614D\n0xB75A\t0x613E\n0xB75B\t0x6134\n0xB75C\t0x6127\n0xB75D\t0x610D\n0xB75E\t0x6106\n0xB75F\t0x6137\n0xB760\t0x6221\n0xB761\t0x6222\n0xB762\t0x6413\n0xB763\t0x643E\n0xB764\t0x641E\n0xB765\t0x642A\n0xB766\t0x642D\n0xB767\t0x643D\n0xB768\t0x642C\n0xB769\t0x640F\n0xB76A\t0x641C\n0xB76B\t0x6414\n0xB76C\t0x640D\n0xB76D\t0x6436\n0xB76E\t0x6416\n0xB76F\t0x6417\n0xB770\t0x6406\n0xB771\t0x656C\n0xB772\t0x659F\n0xB773\t0x65B0\n0xB774\t0x6697\n0xB775\t0x6689\n0xB776\t0x6687\n0xB777\t0x6688\n0xB778\t0x6696\n0xB779\t0x6684\n0xB77A\t0x6698\n0xB77B\t0x668D\n0xB77C\t0x6703\n0xB77D\t0x6994\n0xB77E\t0x696D\n0xB7A1\t0x695A\n0xB7A2\t0x6977\n0xB7A3\t0x6960\n0xB7A4\t0x6954\n0xB7A5\t0x6975\n0xB7A6\t0x6930\n0xB7A7\t0x6982\n0xB7A8\t0x694A\n0xB7A9\t0x6968\n0xB7AA\t0x696B\n0xB7AB\t0x695E\n0xB7AC\t0x6953\n0xB7AD\t0x6979\n0xB7AE\t0x6986\n0xB7AF\t0x695D\n0xB7B0\t0x6963\n0xB7B1\t0x695B\n0xB7B2\t0x6B47\n0xB7B3\t0x6B72\n0xB7B4\t0x6BC0\n0xB7B5\t0x6BBF\n0xB7B6\t0x6BD3\n0xB7B7\t0x6BFD\n0xB7B8\t0x6EA2\n0xB7B9\t0x6EAF\n0xB7BA\t0x6ED3\n0xB7BB\t0x6EB6\n0xB7BC\t0x6EC2\n0xB7BD\t0x6E90\n0xB7BE\t0x6E9D\n0xB7BF\t0x6EC7\n0xB7C0\t0x6EC5\n0xB7C1\t0x6EA5\n0xB7C2\t0x6E98\n0xB7C3\t0x6EBC\n0xB7C4\t0x6EBA\n0xB7C5\t0x6EAB\n0xB7C6\t0x6ED1\n0xB7C7\t0x6E96\n0xB7C8\t0x6E9C\n0xB7C9\t0x6EC4\n0xB7CA\t0x6ED4\n0xB7CB\t0x6EAA\n0xB7CC\t0x6EA7\n0xB7CD\t0x6EB4\n0xB7CE\t0x714E\n0xB7CF\t0x7159\n0xB7D0\t0x7169\n0xB7D1\t0x7164\n0xB7D2\t0x7149\n0xB7D3\t0x7167\n0xB7D4\t0x715C\n0xB7D5\t0x716C\n0xB7D6\t0x7166\n0xB7D7\t0x714C\n0xB7D8\t0x7165\n0xB7D9\t0x715E\n0xB7DA\t0x7146\n0xB7DB\t0x7168\n0xB7DC\t0x7156\n0xB7DD\t0x723A\n0xB7DE\t0x7252\n0xB7DF\t0x7337\n0xB7E0\t0x7345\n0xB7E1\t0x733F\n0xB7E2\t0x733E\n0xB7E3\t0x746F\n0xB7E4\t0x745A\n0xB7E5\t0x7455\n0xB7E6\t0x745F\n0xB7E7\t0x745E\n0xB7E8\t0x7441\n0xB7E9\t0x743F\n0xB7EA\t0x7459\n0xB7EB\t0x745B\n0xB7EC\t0x745C\n0xB7ED\t0x7576\n0xB7EE\t0x7578\n0xB7EF\t0x7600\n0xB7F0\t0x75F0\n0xB7F1\t0x7601\n0xB7F2\t0x75F2\n0xB7F3\t0x75F1\n0xB7F4\t0x75FA\n0xB7F5\t0x75FF\n0xB7F6\t0x75F4\n0xB7F7\t0x75F3\n0xB7F8\t0x76DE\n0xB7F9\t0x76DF\n0xB7FA\t0x775B\n0xB7FB\t0x776B\n0xB7FC\t0x7766\n0xB7FD\t0x775E\n0xB7FE\t0x7763\n0xB840\t0x7779\n0xB841\t0x776A\n0xB842\t0x776C\n0xB843\t0x775C\n0xB844\t0x7765\n0xB845\t0x7768\n0xB846\t0x7762\n0xB847\t0x77EE\n0xB848\t0x788E\n0xB849\t0x78B0\n0xB84A\t0x7897\n0xB84B\t0x7898\n0xB84C\t0x788C\n0xB84D\t0x7889\n0xB84E\t0x787C\n0xB84F\t0x7891\n0xB850\t0x7893\n0xB851\t0x787F\n0xB852\t0x797A\n0xB853\t0x797F\n0xB854\t0x7981\n0xB855\t0x842C\n0xB856\t0x79BD\n0xB857\t0x7A1C\n0xB858\t0x7A1A\n0xB859\t0x7A20\n0xB85A\t0x7A14\n0xB85B\t0x7A1F\n0xB85C\t0x7A1E\n0xB85D\t0x7A9F\n0xB85E\t0x7AA0\n0xB85F\t0x7B77\n0xB860\t0x7BC0\n0xB861\t0x7B60\n0xB862\t0x7B6E\n0xB863\t0x7B67\n0xB864\t0x7CB1\n0xB865\t0x7CB3\n0xB866\t0x7CB5\n0xB867\t0x7D93\n0xB868\t0x7D79\n0xB869\t0x7D91\n0xB86A\t0x7D81\n0xB86B\t0x7D8F\n0xB86C\t0x7D5B\n0xB86D\t0x7F6E\n0xB86E\t0x7F69\n0xB86F\t0x7F6A\n0xB870\t0x7F72\n0xB871\t0x7FA9\n0xB872\t0x7FA8\n0xB873\t0x7FA4\n0xB874\t0x8056\n0xB875\t0x8058\n0xB876\t0x8086\n0xB877\t0x8084\n0xB878\t0x8171\n0xB879\t0x8170\n0xB87A\t0x8178\n0xB87B\t0x8165\n0xB87C\t0x816E\n0xB87D\t0x8173\n0xB87E\t0x816B\n0xB8A1\t0x8179\n0xB8A2\t0x817A\n0xB8A3\t0x8166\n0xB8A4\t0x8205\n0xB8A5\t0x8247\n0xB8A6\t0x8482\n0xB8A7\t0x8477\n0xB8A8\t0x843D\n0xB8A9\t0x8431\n0xB8AA\t0x8475\n0xB8AB\t0x8466\n0xB8AC\t0x846B\n0xB8AD\t0x8449\n0xB8AE\t0x846C\n0xB8AF\t0x845B\n0xB8B0\t0x843C\n0xB8B1\t0x8435\n0xB8B2\t0x8461\n0xB8B3\t0x8463\n0xB8B4\t0x8469\n0xB8B5\t0x846D\n0xB8B6\t0x8446\n0xB8B7\t0x865E\n0xB8B8\t0x865C\n0xB8B9\t0x865F\n0xB8BA\t0x86F9\n0xB8BB\t0x8713\n0xB8BC\t0x8708\n0xB8BD\t0x8707\n0xB8BE\t0x8700\n0xB8BF\t0x86FE\n0xB8C0\t0x86FB\n0xB8C1\t0x8702\n0xB8C2\t0x8703\n0xB8C3\t0x8706\n0xB8C4\t0x870A\n0xB8C5\t0x8859\n0xB8C6\t0x88DF\n0xB8C7\t0x88D4\n0xB8C8\t0x88D9\n0xB8C9\t0x88DC\n0xB8CA\t0x88D8\n0xB8CB\t0x88DD\n0xB8CC\t0x88E1\n0xB8CD\t0x88CA\n0xB8CE\t0x88D5\n0xB8CF\t0x88D2\n0xB8D0\t0x899C\n0xB8D1\t0x89E3\n0xB8D2\t0x8A6B\n0xB8D3\t0x8A72\n0xB8D4\t0x8A73\n0xB8D5\t0x8A66\n0xB8D6\t0x8A69\n0xB8D7\t0x8A70\n0xB8D8\t0x8A87\n0xB8D9\t0x8A7C\n0xB8DA\t0x8A63\n0xB8DB\t0x8AA0\n0xB8DC\t0x8A71\n0xB8DD\t0x8A85\n0xB8DE\t0x8A6D\n0xB8DF\t0x8A62\n0xB8E0\t0x8A6E\n0xB8E1\t0x8A6C\n0xB8E2\t0x8A79\n0xB8E3\t0x8A7B\n0xB8E4\t0x8A3E\n0xB8E5\t0x8A68\n0xB8E6\t0x8C62\n0xB8E7\t0x8C8A\n0xB8E8\t0x8C89\n0xB8E9\t0x8CCA\n0xB8EA\t0x8CC7\n0xB8EB\t0x8CC8\n0xB8EC\t0x8CC4\n0xB8ED\t0x8CB2\n0xB8EE\t0x8CC3\n0xB8EF\t0x8CC2\n0xB8F0\t0x8CC5\n0xB8F1\t0x8DE1\n0xB8F2\t0x8DDF\n0xB8F3\t0x8DE8\n0xB8F4\t0x8DEF\n0xB8F5\t0x8DF3\n0xB8F6\t0x8DFA\n0xB8F7\t0x8DEA\n0xB8F8\t0x8DE4\n0xB8F9\t0x8DE6\n0xB8FA\t0x8EB2\n0xB8FB\t0x8F03\n0xB8FC\t0x8F09\n0xB8FD\t0x8EFE\n0xB8FE\t0x8F0A\n0xB940\t0x8F9F\n0xB941\t0x8FB2\n0xB942\t0x904B\n0xB943\t0x904A\n0xB944\t0x9053\n0xB945\t0x9042\n0xB946\t0x9054\n0xB947\t0x903C\n0xB948\t0x9055\n0xB949\t0x9050\n0xB94A\t0x9047\n0xB94B\t0x904F\n0xB94C\t0x904E\n0xB94D\t0x904D\n0xB94E\t0x9051\n0xB94F\t0x903E\n0xB950\t0x9041\n0xB951\t0x9112\n0xB952\t0x9117\n0xB953\t0x916C\n0xB954\t0x916A\n0xB955\t0x9169\n0xB956\t0x91C9\n0xB957\t0x9237\n0xB958\t0x9257\n0xB959\t0x9238\n0xB95A\t0x923D\n0xB95B\t0x9240\n0xB95C\t0x923E\n0xB95D\t0x925B\n0xB95E\t0x924B\n0xB95F\t0x9264\n0xB960\t0x9251\n0xB961\t0x9234\n0xB962\t0x9249\n0xB963\t0x924D\n0xB964\t0x9245\n0xB965\t0x9239\n0xB966\t0x923F\n0xB967\t0x925A\n0xB968\t0x9598\n0xB969\t0x9698\n0xB96A\t0x9694\n0xB96B\t0x9695\n0xB96C\t0x96CD\n0xB96D\t0x96CB\n0xB96E\t0x96C9\n0xB96F\t0x96CA\n0xB970\t0x96F7\n0xB971\t0x96FB\n0xB972\t0x96F9\n0xB973\t0x96F6\n0xB974\t0x9756\n0xB975\t0x9774\n0xB976\t0x9776\n0xB977\t0x9810\n0xB978\t0x9811\n0xB979\t0x9813\n0xB97A\t0x980A\n0xB97B\t0x9812\n0xB97C\t0x980C\n0xB97D\t0x98FC\n0xB97E\t0x98F4\n0xB9A1\t0x98FD\n0xB9A2\t0x98FE\n0xB9A3\t0x99B3\n0xB9A4\t0x99B1\n0xB9A5\t0x99B4\n0xB9A6\t0x9AE1\n0xB9A7\t0x9CE9\n0xB9A8\t0x9E82\n0xB9A9\t0x9F0E\n0xB9AA\t0x9F13\n0xB9AB\t0x9F20\n0xB9AC\t0x50E7\n0xB9AD\t0x50EE\n0xB9AE\t0x50E5\n0xB9AF\t0x50D6\n0xB9B0\t0x50ED\n0xB9B1\t0x50DA\n0xB9B2\t0x50D5\n0xB9B3\t0x50CF\n0xB9B4\t0x50D1\n0xB9B5\t0x50F1\n0xB9B6\t0x50CE\n0xB9B7\t0x50E9\n0xB9B8\t0x5162\n0xB9B9\t0x51F3\n0xB9BA\t0x5283\n0xB9BB\t0x5282\n0xB9BC\t0x5331\n0xB9BD\t0x53AD\n0xB9BE\t0x55FE\n0xB9BF\t0x5600\n0xB9C0\t0x561B\n0xB9C1\t0x5617\n0xB9C2\t0x55FD\n0xB9C3\t0x5614\n0xB9C4\t0x5606\n0xB9C5\t0x5609\n0xB9C6\t0x560D\n0xB9C7\t0x560E\n0xB9C8\t0x55F7\n0xB9C9\t0x5616\n0xB9CA\t0x561F\n0xB9CB\t0x5608\n0xB9CC\t0x5610\n0xB9CD\t0x55F6\n0xB9CE\t0x5718\n0xB9CF\t0x5716\n0xB9D0\t0x5875\n0xB9D1\t0x587E\n0xB9D2\t0x5883\n0xB9D3\t0x5893\n0xB9D4\t0x588A\n0xB9D5\t0x5879\n0xB9D6\t0x5885\n0xB9D7\t0x587D\n0xB9D8\t0x58FD\n0xB9D9\t0x5925\n0xB9DA\t0x5922\n0xB9DB\t0x5924\n0xB9DC\t0x596A\n0xB9DD\t0x5969\n0xB9DE\t0x5AE1\n0xB9DF\t0x5AE6\n0xB9E0\t0x5AE9\n0xB9E1\t0x5AD7\n0xB9E2\t0x5AD6\n0xB9E3\t0x5AD8\n0xB9E4\t0x5AE3\n0xB9E5\t0x5B75\n0xB9E6\t0x5BDE\n0xB9E7\t0x5BE7\n0xB9E8\t0x5BE1\n0xB9E9\t0x5BE5\n0xB9EA\t0x5BE6\n0xB9EB\t0x5BE8\n0xB9EC\t0x5BE2\n0xB9ED\t0x5BE4\n0xB9EE\t0x5BDF\n0xB9EF\t0x5C0D\n0xB9F0\t0x5C62\n0xB9F1\t0x5D84\n0xB9F2\t0x5D87\n0xB9F3\t0x5E5B\n0xB9F4\t0x5E63\n0xB9F5\t0x5E55\n0xB9F6\t0x5E57\n0xB9F7\t0x5E54\n0xB9F8\t0x5ED3\n0xB9F9\t0x5ED6\n0xB9FA\t0x5F0A\n0xB9FB\t0x5F46\n0xB9FC\t0x5F70\n0xB9FD\t0x5FB9\n0xB9FE\t0x6147\n0xBA40\t0x613F\n0xBA41\t0x614B\n0xBA42\t0x6177\n0xBA43\t0x6162\n0xBA44\t0x6163\n0xBA45\t0x615F\n0xBA46\t0x615A\n0xBA47\t0x6158\n0xBA48\t0x6175\n0xBA49\t0x622A\n0xBA4A\t0x6487\n0xBA4B\t0x6458\n0xBA4C\t0x6454\n0xBA4D\t0x64A4\n0xBA4E\t0x6478\n0xBA4F\t0x645F\n0xBA50\t0x647A\n0xBA51\t0x6451\n0xBA52\t0x6467\n0xBA53\t0x6434\n0xBA54\t0x646D\n0xBA55\t0x647B\n0xBA56\t0x6572\n0xBA57\t0x65A1\n0xBA58\t0x65D7\n0xBA59\t0x65D6\n0xBA5A\t0x66A2\n0xBA5B\t0x66A8\n0xBA5C\t0x669D\n0xBA5D\t0x699C\n0xBA5E\t0x69A8\n0xBA5F\t0x6995\n0xBA60\t0x69C1\n0xBA61\t0x69AE\n0xBA62\t0x69D3\n0xBA63\t0x69CB\n0xBA64\t0x699B\n0xBA65\t0x69B7\n0xBA66\t0x69BB\n0xBA67\t0x69AB\n0xBA68\t0x69B4\n0xBA69\t0x69D0\n0xBA6A\t0x69CD\n0xBA6B\t0x69AD\n0xBA6C\t0x69CC\n0xBA6D\t0x69A6\n0xBA6E\t0x69C3\n0xBA6F\t0x69A3\n0xBA70\t0x6B49\n0xBA71\t0x6B4C\n0xBA72\t0x6C33\n0xBA73\t0x6F33\n0xBA74\t0x6F14\n0xBA75\t0x6EFE\n0xBA76\t0x6F13\n0xBA77\t0x6EF4\n0xBA78\t0x6F29\n0xBA79\t0x6F3E\n0xBA7A\t0x6F20\n0xBA7B\t0x6F2C\n0xBA7C\t0x6F0F\n0xBA7D\t0x6F02\n0xBA7E\t0x6F22\n0xBAA1\t0x6EFF\n0xBAA2\t0x6EEF\n0xBAA3\t0x6F06\n0xBAA4\t0x6F31\n0xBAA5\t0x6F38\n0xBAA6\t0x6F32\n0xBAA7\t0x6F23\n0xBAA8\t0x6F15\n0xBAA9\t0x6F2B\n0xBAAA\t0x6F2F\n0xBAAB\t0x6F88\n0xBAAC\t0x6F2A\n0xBAAD\t0x6EEC\n0xBAAE\t0x6F01\n0xBAAF\t0x6EF2\n0xBAB0\t0x6ECC\n0xBAB1\t0x6EF7\n0xBAB2\t0x7194\n0xBAB3\t0x7199\n0xBAB4\t0x717D\n0xBAB5\t0x718A\n0xBAB6\t0x7184\n0xBAB7\t0x7192\n0xBAB8\t0x723E\n0xBAB9\t0x7292\n0xBABA\t0x7296\n0xBABB\t0x7344\n0xBABC\t0x7350\n0xBABD\t0x7464\n0xBABE\t0x7463\n0xBABF\t0x746A\n0xBAC0\t0x7470\n0xBAC1\t0x746D\n0xBAC2\t0x7504\n0xBAC3\t0x7591\n0xBAC4\t0x7627\n0xBAC5\t0x760D\n0xBAC6\t0x760B\n0xBAC7\t0x7609\n0xBAC8\t0x7613\n0xBAC9\t0x76E1\n0xBACA\t0x76E3\n0xBACB\t0x7784\n0xBACC\t0x777D\n0xBACD\t0x777F\n0xBACE\t0x7761\n0xBACF\t0x78C1\n0xBAD0\t0x789F\n0xBAD1\t0x78A7\n0xBAD2\t0x78B3\n0xBAD3\t0x78A9\n0xBAD4\t0x78A3\n0xBAD5\t0x798E\n0xBAD6\t0x798F\n0xBAD7\t0x798D\n0xBAD8\t0x7A2E\n0xBAD9\t0x7A31\n0xBADA\t0x7AAA\n0xBADB\t0x7AA9\n0xBADC\t0x7AED\n0xBADD\t0x7AEF\n0xBADE\t0x7BA1\n0xBADF\t0x7B95\n0xBAE0\t0x7B8B\n0xBAE1\t0x7B75\n0xBAE2\t0x7B97\n0xBAE3\t0x7B9D\n0xBAE4\t0x7B94\n0xBAE5\t0x7B8F\n0xBAE6\t0x7BB8\n0xBAE7\t0x7B87\n0xBAE8\t0x7B84\n0xBAE9\t0x7CB9\n0xBAEA\t0x7CBD\n0xBAEB\t0x7CBE\n0xBAEC\t0x7DBB\n0xBAED\t0x7DB0\n0xBAEE\t0x7D9C\n0xBAEF\t0x7DBD\n0xBAF0\t0x7DBE\n0xBAF1\t0x7DA0\n0xBAF2\t0x7DCA\n0xBAF3\t0x7DB4\n0xBAF4\t0x7DB2\n0xBAF5\t0x7DB1\n0xBAF6\t0x7DBA\n0xBAF7\t0x7DA2\n0xBAF8\t0x7DBF\n0xBAF9\t0x7DB5\n0xBAFA\t0x7DB8\n0xBAFB\t0x7DAD\n0xBAFC\t0x7DD2\n0xBAFD\t0x7DC7\n0xBAFE\t0x7DAC\n0xBB40\t0x7F70\n0xBB41\t0x7FE0\n0xBB42\t0x7FE1\n0xBB43\t0x7FDF\n0xBB44\t0x805E\n0xBB45\t0x805A\n0xBB46\t0x8087\n0xBB47\t0x8150\n0xBB48\t0x8180\n0xBB49\t0x818F\n0xBB4A\t0x8188\n0xBB4B\t0x818A\n0xBB4C\t0x817F\n0xBB4D\t0x8182\n0xBB4E\t0x81E7\n0xBB4F\t0x81FA\n0xBB50\t0x8207\n0xBB51\t0x8214\n0xBB52\t0x821E\n0xBB53\t0x824B\n0xBB54\t0x84C9\n0xBB55\t0x84BF\n0xBB56\t0x84C6\n0xBB57\t0x84C4\n0xBB58\t0x8499\n0xBB59\t0x849E\n0xBB5A\t0x84B2\n0xBB5B\t0x849C\n0xBB5C\t0x84CB\n0xBB5D\t0x84B8\n0xBB5E\t0x84C0\n0xBB5F\t0x84D3\n0xBB60\t0x8490\n0xBB61\t0x84BC\n0xBB62\t0x84D1\n0xBB63\t0x84CA\n0xBB64\t0x873F\n0xBB65\t0x871C\n0xBB66\t0x873B\n0xBB67\t0x8722\n0xBB68\t0x8725\n0xBB69\t0x8734\n0xBB6A\t0x8718\n0xBB6B\t0x8755\n0xBB6C\t0x8737\n0xBB6D\t0x8729\n0xBB6E\t0x88F3\n0xBB6F\t0x8902\n0xBB70\t0x88F4\n0xBB71\t0x88F9\n0xBB72\t0x88F8\n0xBB73\t0x88FD\n0xBB74\t0x88E8\n0xBB75\t0x891A\n0xBB76\t0x88EF\n0xBB77\t0x8AA6\n0xBB78\t0x8A8C\n0xBB79\t0x8A9E\n0xBB7A\t0x8AA3\n0xBB7B\t0x8A8D\n0xBB7C\t0x8AA1\n0xBB7D\t0x8A93\n0xBB7E\t0x8AA4\n0xBBA1\t0x8AAA\n0xBBA2\t0x8AA5\n0xBBA3\t0x8AA8\n0xBBA4\t0x8A98\n0xBBA5\t0x8A91\n0xBBA6\t0x8A9A\n0xBBA7\t0x8AA7\n0xBBA8\t0x8C6A\n0xBBA9\t0x8C8D\n0xBBAA\t0x8C8C\n0xBBAB\t0x8CD3\n0xBBAC\t0x8CD1\n0xBBAD\t0x8CD2\n0xBBAE\t0x8D6B\n0xBBAF\t0x8D99\n0xBBB0\t0x8D95\n0xBBB1\t0x8DFC\n0xBBB2\t0x8F14\n0xBBB3\t0x8F12\n0xBBB4\t0x8F15\n0xBBB5\t0x8F13\n0xBBB6\t0x8FA3\n0xBBB7\t0x9060\n0xBBB8\t0x9058\n0xBBB9\t0x905C\n0xBBBA\t0x9063\n0xBBBB\t0x9059\n0xBBBC\t0x905E\n0xBBBD\t0x9062\n0xBBBE\t0x905D\n0xBBBF\t0x905B\n0xBBC0\t0x9119\n0xBBC1\t0x9118\n0xBBC2\t0x911E\n0xBBC3\t0x9175\n0xBBC4\t0x9178\n0xBBC5\t0x9177\n0xBBC6\t0x9174\n0xBBC7\t0x9278\n0xBBC8\t0x9280\n0xBBC9\t0x9285\n0xBBCA\t0x9298\n0xBBCB\t0x9296\n0xBBCC\t0x927B\n0xBBCD\t0x9293\n0xBBCE\t0x929C\n0xBBCF\t0x92A8\n0xBBD0\t0x927C\n0xBBD1\t0x9291\n0xBBD2\t0x95A1\n0xBBD3\t0x95A8\n0xBBD4\t0x95A9\n0xBBD5\t0x95A3\n0xBBD6\t0x95A5\n0xBBD7\t0x95A4\n0xBBD8\t0x9699\n0xBBD9\t0x969C\n0xBBDA\t0x969B\n0xBBDB\t0x96CC\n0xBBDC\t0x96D2\n0xBBDD\t0x9700\n0xBBDE\t0x977C\n0xBBDF\t0x9785\n0xBBE0\t0x97F6\n0xBBE1\t0x9817\n0xBBE2\t0x9818\n0xBBE3\t0x98AF\n0xBBE4\t0x98B1\n0xBBE5\t0x9903\n0xBBE6\t0x9905\n0xBBE7\t0x990C\n0xBBE8\t0x9909\n0xBBE9\t0x99C1\n0xBBEA\t0x9AAF\n0xBBEB\t0x9AB0\n0xBBEC\t0x9AE6\n0xBBED\t0x9B41\n0xBBEE\t0x9B42\n0xBBEF\t0x9CF4\n0xBBF0\t0x9CF6\n0xBBF1\t0x9CF3\n0xBBF2\t0x9EBC\n0xBBF3\t0x9F3B\n0xBBF4\t0x9F4A\n0xBBF5\t0x5104\n0xBBF6\t0x5100\n0xBBF7\t0x50FB\n0xBBF8\t0x50F5\n0xBBF9\t0x50F9\n0xBBFA\t0x5102\n0xBBFB\t0x5108\n0xBBFC\t0x5109\n0xBBFD\t0x5105\n0xBBFE\t0x51DC\n0xBC40\t0x5287\n0xBC41\t0x5288\n0xBC42\t0x5289\n0xBC43\t0x528D\n0xBC44\t0x528A\n0xBC45\t0x52F0\n0xBC46\t0x53B2\n0xBC47\t0x562E\n0xBC48\t0x563B\n0xBC49\t0x5639\n0xBC4A\t0x5632\n0xBC4B\t0x563F\n0xBC4C\t0x5634\n0xBC4D\t0x5629\n0xBC4E\t0x5653\n0xBC4F\t0x564E\n0xBC50\t0x5657\n0xBC51\t0x5674\n0xBC52\t0x5636\n0xBC53\t0x562F\n0xBC54\t0x5630\n0xBC55\t0x5880\n0xBC56\t0x589F\n0xBC57\t0x589E\n0xBC58\t0x58B3\n0xBC59\t0x589C\n0xBC5A\t0x58AE\n0xBC5B\t0x58A9\n0xBC5C\t0x58A6\n0xBC5D\t0x596D\n0xBC5E\t0x5B09\n0xBC5F\t0x5AFB\n0xBC60\t0x5B0B\n0xBC61\t0x5AF5\n0xBC62\t0x5B0C\n0xBC63\t0x5B08\n0xBC64\t0x5BEE\n0xBC65\t0x5BEC\n0xBC66\t0x5BE9\n0xBC67\t0x5BEB\n0xBC68\t0x5C64\n0xBC69\t0x5C65\n0xBC6A\t0x5D9D\n0xBC6B\t0x5D94\n0xBC6C\t0x5E62\n0xBC6D\t0x5E5F\n0xBC6E\t0x5E61\n0xBC6F\t0x5EE2\n0xBC70\t0x5EDA\n0xBC71\t0x5EDF\n0xBC72\t0x5EDD\n0xBC73\t0x5EE3\n0xBC74\t0x5EE0\n0xBC75\t0x5F48\n0xBC76\t0x5F71\n0xBC77\t0x5FB7\n0xBC78\t0x5FB5\n0xBC79\t0x6176\n0xBC7A\t0x6167\n0xBC7B\t0x616E\n0xBC7C\t0x615D\n0xBC7D\t0x6155\n0xBC7E\t0x6182\n0xBCA1\t0x617C\n0xBCA2\t0x6170\n0xBCA3\t0x616B\n0xBCA4\t0x617E\n0xBCA5\t0x61A7\n0xBCA6\t0x6190\n0xBCA7\t0x61AB\n0xBCA8\t0x618E\n0xBCA9\t0x61AC\n0xBCAA\t0x619A\n0xBCAB\t0x61A4\n0xBCAC\t0x6194\n0xBCAD\t0x61AE\n0xBCAE\t0x622E\n0xBCAF\t0x6469\n0xBCB0\t0x646F\n0xBCB1\t0x6479\n0xBCB2\t0x649E\n0xBCB3\t0x64B2\n0xBCB4\t0x6488\n0xBCB5\t0x6490\n0xBCB6\t0x64B0\n0xBCB7\t0x64A5\n0xBCB8\t0x6493\n0xBCB9\t0x6495\n0xBCBA\t0x64A9\n0xBCBB\t0x6492\n0xBCBC\t0x64AE\n0xBCBD\t0x64AD\n0xBCBE\t0x64AB\n0xBCBF\t0x649A\n0xBCC0\t0x64AC\n0xBCC1\t0x6499\n0xBCC2\t0x64A2\n0xBCC3\t0x64B3\n0xBCC4\t0x6575\n0xBCC5\t0x6577\n0xBCC6\t0x6578\n0xBCC7\t0x66AE\n0xBCC8\t0x66AB\n0xBCC9\t0x66B4\n0xBCCA\t0x66B1\n0xBCCB\t0x6A23\n0xBCCC\t0x6A1F\n0xBCCD\t0x69E8\n0xBCCE\t0x6A01\n0xBCCF\t0x6A1E\n0xBCD0\t0x6A19\n0xBCD1\t0x69FD\n0xBCD2\t0x6A21\n0xBCD3\t0x6A13\n0xBCD4\t0x6A0A\n0xBCD5\t0x69F3\n0xBCD6\t0x6A02\n0xBCD7\t0x6A05\n0xBCD8\t0x69ED\n0xBCD9\t0x6A11\n0xBCDA\t0x6B50\n0xBCDB\t0x6B4E\n0xBCDC\t0x6BA4\n0xBCDD\t0x6BC5\n0xBCDE\t0x6BC6\n0xBCDF\t0x6F3F\n0xBCE0\t0x6F7C\n0xBCE1\t0x6F84\n0xBCE2\t0x6F51\n0xBCE3\t0x6F66\n0xBCE4\t0x6F54\n0xBCE5\t0x6F86\n0xBCE6\t0x6F6D\n0xBCE7\t0x6F5B\n0xBCE8\t0x6F78\n0xBCE9\t0x6F6E\n0xBCEA\t0x6F8E\n0xBCEB\t0x6F7A\n0xBCEC\t0x6F70\n0xBCED\t0x6F64\n0xBCEE\t0x6F97\n0xBCEF\t0x6F58\n0xBCF0\t0x6ED5\n0xBCF1\t0x6F6F\n0xBCF2\t0x6F60\n0xBCF3\t0x6F5F\n0xBCF4\t0x719F\n0xBCF5\t0x71AC\n0xBCF6\t0x71B1\n0xBCF7\t0x71A8\n0xBCF8\t0x7256\n0xBCF9\t0x729B\n0xBCFA\t0x734E\n0xBCFB\t0x7357\n0xBCFC\t0x7469\n0xBCFD\t0x748B\n0xBCFE\t0x7483\n0xBD40\t0x747E\n0xBD41\t0x7480\n0xBD42\t0x757F\n0xBD43\t0x7620\n0xBD44\t0x7629\n0xBD45\t0x761F\n0xBD46\t0x7624\n0xBD47\t0x7626\n0xBD48\t0x7621\n0xBD49\t0x7622\n0xBD4A\t0x769A\n0xBD4B\t0x76BA\n0xBD4C\t0x76E4\n0xBD4D\t0x778E\n0xBD4E\t0x7787\n0xBD4F\t0x778C\n0xBD50\t0x7791\n0xBD51\t0x778B\n0xBD52\t0x78CB\n0xBD53\t0x78C5\n0xBD54\t0x78BA\n0xBD55\t0x78CA\n0xBD56\t0x78BE\n0xBD57\t0x78D5\n0xBD58\t0x78BC\n0xBD59\t0x78D0\n0xBD5A\t0x7A3F\n0xBD5B\t0x7A3C\n0xBD5C\t0x7A40\n0xBD5D\t0x7A3D\n0xBD5E\t0x7A37\n0xBD5F\t0x7A3B\n0xBD60\t0x7AAF\n0xBD61\t0x7AAE\n0xBD62\t0x7BAD\n0xBD63\t0x7BB1\n0xBD64\t0x7BC4\n0xBD65\t0x7BB4\n0xBD66\t0x7BC6\n0xBD67\t0x7BC7\n0xBD68\t0x7BC1\n0xBD69\t0x7BA0\n0xBD6A\t0x7BCC\n0xBD6B\t0x7CCA\n0xBD6C\t0x7DE0\n0xBD6D\t0x7DF4\n0xBD6E\t0x7DEF\n0xBD6F\t0x7DFB\n0xBD70\t0x7DD8\n0xBD71\t0x7DEC\n0xBD72\t0x7DDD\n0xBD73\t0x7DE8\n0xBD74\t0x7DE3\n0xBD75\t0x7DDA\n0xBD76\t0x7DDE\n0xBD77\t0x7DE9\n0xBD78\t0x7D9E\n0xBD79\t0x7DD9\n0xBD7A\t0x7DF2\n0xBD7B\t0x7DF9\n0xBD7C\t0x7F75\n0xBD7D\t0x7F77\n0xBD7E\t0x7FAF\n0xBDA1\t0x7FE9\n0xBDA2\t0x8026\n0xBDA3\t0x819B\n0xBDA4\t0x819C\n0xBDA5\t0x819D\n0xBDA6\t0x81A0\n0xBDA7\t0x819A\n0xBDA8\t0x8198\n0xBDA9\t0x8517\n0xBDAA\t0x853D\n0xBDAB\t0x851A\n0xBDAC\t0x84EE\n0xBDAD\t0x852C\n0xBDAE\t0x852D\n0xBDAF\t0x8513\n0xBDB0\t0x8511\n0xBDB1\t0x8523\n0xBDB2\t0x8521\n0xBDB3\t0x8514\n0xBDB4\t0x84EC\n0xBDB5\t0x8525\n0xBDB6\t0x84FF\n0xBDB7\t0x8506\n0xBDB8\t0x8782\n0xBDB9\t0x8774\n0xBDBA\t0x8776\n0xBDBB\t0x8760\n0xBDBC\t0x8766\n0xBDBD\t0x8778\n0xBDBE\t0x8768\n0xBDBF\t0x8759\n0xBDC0\t0x8757\n0xBDC1\t0x874C\n0xBDC2\t0x8753\n0xBDC3\t0x885B\n0xBDC4\t0x885D\n0xBDC5\t0x8910\n0xBDC6\t0x8907\n0xBDC7\t0x8912\n0xBDC8\t0x8913\n0xBDC9\t0x8915\n0xBDCA\t0x890A\n0xBDCB\t0x8ABC\n0xBDCC\t0x8AD2\n0xBDCD\t0x8AC7\n0xBDCE\t0x8AC4\n0xBDCF\t0x8A95\n0xBDD0\t0x8ACB\n0xBDD1\t0x8AF8\n0xBDD2\t0x8AB2\n0xBDD3\t0x8AC9\n0xBDD4\t0x8AC2\n0xBDD5\t0x8ABF\n0xBDD6\t0x8AB0\n0xBDD7\t0x8AD6\n0xBDD8\t0x8ACD\n0xBDD9\t0x8AB6\n0xBDDA\t0x8AB9\n0xBDDB\t0x8ADB\n0xBDDC\t0x8C4C\n0xBDDD\t0x8C4E\n0xBDDE\t0x8C6C\n0xBDDF\t0x8CE0\n0xBDE0\t0x8CDE\n0xBDE1\t0x8CE6\n0xBDE2\t0x8CE4\n0xBDE3\t0x8CEC\n0xBDE4\t0x8CED\n0xBDE5\t0x8CE2\n0xBDE6\t0x8CE3\n0xBDE7\t0x8CDC\n0xBDE8\t0x8CEA\n0xBDE9\t0x8CE1\n0xBDEA\t0x8D6D\n0xBDEB\t0x8D9F\n0xBDEC\t0x8DA3\n0xBDED\t0x8E2B\n0xBDEE\t0x8E10\n0xBDEF\t0x8E1D\n0xBDF0\t0x8E22\n0xBDF1\t0x8E0F\n0xBDF2\t0x8E29\n0xBDF3\t0x8E1F\n0xBDF4\t0x8E21\n0xBDF5\t0x8E1E\n0xBDF6\t0x8EBA\n0xBDF7\t0x8F1D\n0xBDF8\t0x8F1B\n0xBDF9\t0x8F1F\n0xBDFA\t0x8F29\n0xBDFB\t0x8F26\n0xBDFC\t0x8F2A\n0xBDFD\t0x8F1C\n0xBDFE\t0x8F1E\n0xBE40\t0x8F25\n0xBE41\t0x9069\n0xBE42\t0x906E\n0xBE43\t0x9068\n0xBE44\t0x906D\n0xBE45\t0x9077\n0xBE46\t0x9130\n0xBE47\t0x912D\n0xBE48\t0x9127\n0xBE49\t0x9131\n0xBE4A\t0x9187\n0xBE4B\t0x9189\n0xBE4C\t0x918B\n0xBE4D\t0x9183\n0xBE4E\t0x92C5\n0xBE4F\t0x92BB\n0xBE50\t0x92B7\n0xBE51\t0x92EA\n0xBE52\t0x92AC\n0xBE53\t0x92E4\n0xBE54\t0x92C1\n0xBE55\t0x92B3\n0xBE56\t0x92BC\n0xBE57\t0x92D2\n0xBE58\t0x92C7\n0xBE59\t0x92F0\n0xBE5A\t0x92B2\n0xBE5B\t0x95AD\n0xBE5C\t0x95B1\n0xBE5D\t0x9704\n0xBE5E\t0x9706\n0xBE5F\t0x9707\n0xBE60\t0x9709\n0xBE61\t0x9760\n0xBE62\t0x978D\n0xBE63\t0x978B\n0xBE64\t0x978F\n0xBE65\t0x9821\n0xBE66\t0x982B\n0xBE67\t0x981C\n0xBE68\t0x98B3\n0xBE69\t0x990A\n0xBE6A\t0x9913\n0xBE6B\t0x9912\n0xBE6C\t0x9918\n0xBE6D\t0x99DD\n0xBE6E\t0x99D0\n0xBE6F\t0x99DF\n0xBE70\t0x99DB\n0xBE71\t0x99D1\n0xBE72\t0x99D5\n0xBE73\t0x99D2\n0xBE74\t0x99D9\n0xBE75\t0x9AB7\n0xBE76\t0x9AEE\n0xBE77\t0x9AEF\n0xBE78\t0x9B27\n0xBE79\t0x9B45\n0xBE7A\t0x9B44\n0xBE7B\t0x9B77\n0xBE7C\t0x9B6F\n0xBE7D\t0x9D06\n0xBE7E\t0x9D09\n0xBEA1\t0x9D03\n0xBEA2\t0x9EA9\n0xBEA3\t0x9EBE\n0xBEA4\t0x9ECE\n0xBEA5\t0x58A8\n0xBEA6\t0x9F52\n0xBEA7\t0x5112\n0xBEA8\t0x5118\n0xBEA9\t0x5114\n0xBEAA\t0x5110\n0xBEAB\t0x5115\n0xBEAC\t0x5180\n0xBEAD\t0x51AA\n0xBEAE\t0x51DD\n0xBEAF\t0x5291\n0xBEB0\t0x5293\n0xBEB1\t0x52F3\n0xBEB2\t0x5659\n0xBEB3\t0x566B\n0xBEB4\t0x5679\n0xBEB5\t0x5669\n0xBEB6\t0x5664\n0xBEB7\t0x5678\n0xBEB8\t0x566A\n0xBEB9\t0x5668\n0xBEBA\t0x5665\n0xBEBB\t0x5671\n0xBEBC\t0x566F\n0xBEBD\t0x566C\n0xBEBE\t0x5662\n0xBEBF\t0x5676\n0xBEC0\t0x58C1\n0xBEC1\t0x58BE\n0xBEC2\t0x58C7\n0xBEC3\t0x58C5\n0xBEC4\t0x596E\n0xBEC5\t0x5B1D\n0xBEC6\t0x5B34\n0xBEC7\t0x5B78\n0xBEC8\t0x5BF0\n0xBEC9\t0x5C0E\n0xBECA\t0x5F4A\n0xBECB\t0x61B2\n0xBECC\t0x6191\n0xBECD\t0x61A9\n0xBECE\t0x618A\n0xBECF\t0x61CD\n0xBED0\t0x61B6\n0xBED1\t0x61BE\n0xBED2\t0x61CA\n0xBED3\t0x61C8\n0xBED4\t0x6230\n0xBED5\t0x64C5\n0xBED6\t0x64C1\n0xBED7\t0x64CB\n0xBED8\t0x64BB\n0xBED9\t0x64BC\n0xBEDA\t0x64DA\n0xBEDB\t0x64C4\n0xBEDC\t0x64C7\n0xBEDD\t0x64C2\n0xBEDE\t0x64CD\n0xBEDF\t0x64BF\n0xBEE0\t0x64D2\n0xBEE1\t0x64D4\n0xBEE2\t0x64BE\n0xBEE3\t0x6574\n0xBEE4\t0x66C6\n0xBEE5\t0x66C9\n0xBEE6\t0x66B9\n0xBEE7\t0x66C4\n0xBEE8\t0x66C7\n0xBEE9\t0x66B8\n0xBEEA\t0x6A3D\n0xBEEB\t0x6A38\n0xBEEC\t0x6A3A\n0xBEED\t0x6A59\n0xBEEE\t0x6A6B\n0xBEEF\t0x6A58\n0xBEF0\t0x6A39\n0xBEF1\t0x6A44\n0xBEF2\t0x6A62\n0xBEF3\t0x6A61\n0xBEF4\t0x6A4B\n0xBEF5\t0x6A47\n0xBEF6\t0x6A35\n0xBEF7\t0x6A5F\n0xBEF8\t0x6A48\n0xBEF9\t0x6B59\n0xBEFA\t0x6B77\n0xBEFB\t0x6C05\n0xBEFC\t0x6FC2\n0xBEFD\t0x6FB1\n0xBEFE\t0x6FA1\n0xBF40\t0x6FC3\n0xBF41\t0x6FA4\n0xBF42\t0x6FC1\n0xBF43\t0x6FA7\n0xBF44\t0x6FB3\n0xBF45\t0x6FC0\n0xBF46\t0x6FB9\n0xBF47\t0x6FB6\n0xBF48\t0x6FA6\n0xBF49\t0x6FA0\n0xBF4A\t0x6FB4\n0xBF4B\t0x71BE\n0xBF4C\t0x71C9\n0xBF4D\t0x71D0\n0xBF4E\t0x71D2\n0xBF4F\t0x71C8\n0xBF50\t0x71D5\n0xBF51\t0x71B9\n0xBF52\t0x71CE\n0xBF53\t0x71D9\n0xBF54\t0x71DC\n0xBF55\t0x71C3\n0xBF56\t0x71C4\n0xBF57\t0x7368\n0xBF58\t0x749C\n0xBF59\t0x74A3\n0xBF5A\t0x7498\n0xBF5B\t0x749F\n0xBF5C\t0x749E\n0xBF5D\t0x74E2\n0xBF5E\t0x750C\n0xBF5F\t0x750D\n0xBF60\t0x7634\n0xBF61\t0x7638\n0xBF62\t0x763A\n0xBF63\t0x76E7\n0xBF64\t0x76E5\n0xBF65\t0x77A0\n0xBF66\t0x779E\n0xBF67\t0x779F\n0xBF68\t0x77A5\n0xBF69\t0x78E8\n0xBF6A\t0x78DA\n0xBF6B\t0x78EC\n0xBF6C\t0x78E7\n0xBF6D\t0x79A6\n0xBF6E\t0x7A4D\n0xBF6F\t0x7A4E\n0xBF70\t0x7A46\n0xBF71\t0x7A4C\n0xBF72\t0x7A4B\n0xBF73\t0x7ABA\n0xBF74\t0x7BD9\n0xBF75\t0x7C11\n0xBF76\t0x7BC9\n0xBF77\t0x7BE4\n0xBF78\t0x7BDB\n0xBF79\t0x7BE1\n0xBF7A\t0x7BE9\n0xBF7B\t0x7BE6\n0xBF7C\t0x7CD5\n0xBF7D\t0x7CD6\n0xBF7E\t0x7E0A\n0xBFA1\t0x7E11\n0xBFA2\t0x7E08\n0xBFA3\t0x7E1B\n0xBFA4\t0x7E23\n0xBFA5\t0x7E1E\n0xBFA6\t0x7E1D\n0xBFA7\t0x7E09\n0xBFA8\t0x7E10\n0xBFA9\t0x7F79\n0xBFAA\t0x7FB2\n0xBFAB\t0x7FF0\n0xBFAC\t0x7FF1\n0xBFAD\t0x7FEE\n0xBFAE\t0x8028\n0xBFAF\t0x81B3\n0xBFB0\t0x81A9\n0xBFB1\t0x81A8\n0xBFB2\t0x81FB\n0xBFB3\t0x8208\n0xBFB4\t0x8258\n0xBFB5\t0x8259\n0xBFB6\t0x854A\n0xBFB7\t0x8559\n0xBFB8\t0x8548\n0xBFB9\t0x8568\n0xBFBA\t0x8569\n0xBFBB\t0x8543\n0xBFBC\t0x8549\n0xBFBD\t0x856D\n0xBFBE\t0x856A\n0xBFBF\t0x855E\n0xBFC0\t0x8783\n0xBFC1\t0x879F\n0xBFC2\t0x879E\n0xBFC3\t0x87A2\n0xBFC4\t0x878D\n0xBFC5\t0x8861\n0xBFC6\t0x892A\n0xBFC7\t0x8932\n0xBFC8\t0x8925\n0xBFC9\t0x892B\n0xBFCA\t0x8921\n0xBFCB\t0x89AA\n0xBFCC\t0x89A6\n0xBFCD\t0x8AE6\n0xBFCE\t0x8AFA\n0xBFCF\t0x8AEB\n0xBFD0\t0x8AF1\n0xBFD1\t0x8B00\n0xBFD2\t0x8ADC\n0xBFD3\t0x8AE7\n0xBFD4\t0x8AEE\n0xBFD5\t0x8AFE\n0xBFD6\t0x8B01\n0xBFD7\t0x8B02\n0xBFD8\t0x8AF7\n0xBFD9\t0x8AED\n0xBFDA\t0x8AF3\n0xBFDB\t0x8AF6\n0xBFDC\t0x8AFC\n0xBFDD\t0x8C6B\n0xBFDE\t0x8C6D\n0xBFDF\t0x8C93\n0xBFE0\t0x8CF4\n0xBFE1\t0x8E44\n0xBFE2\t0x8E31\n0xBFE3\t0x8E34\n0xBFE4\t0x8E42\n0xBFE5\t0x8E39\n0xBFE6\t0x8E35\n0xBFE7\t0x8F3B\n0xBFE8\t0x8F2F\n0xBFE9\t0x8F38\n0xBFEA\t0x8F33\n0xBFEB\t0x8FA8\n0xBFEC\t0x8FA6\n0xBFED\t0x9075\n0xBFEE\t0x9074\n0xBFEF\t0x9078\n0xBFF0\t0x9072\n0xBFF1\t0x907C\n0xBFF2\t0x907A\n0xBFF3\t0x9134\n0xBFF4\t0x9192\n0xBFF5\t0x9320\n0xBFF6\t0x9336\n0xBFF7\t0x92F8\n0xBFF8\t0x9333\n0xBFF9\t0x932F\n0xBFFA\t0x9322\n0xBFFB\t0x92FC\n0xBFFC\t0x932B\n0xBFFD\t0x9304\n0xBFFE\t0x931A\n0xC040\t0x9310\n0xC041\t0x9326\n0xC042\t0x9321\n0xC043\t0x9315\n0xC044\t0x932E\n0xC045\t0x9319\n0xC046\t0x95BB\n0xC047\t0x96A7\n0xC048\t0x96A8\n0xC049\t0x96AA\n0xC04A\t0x96D5\n0xC04B\t0x970E\n0xC04C\t0x9711\n0xC04D\t0x9716\n0xC04E\t0x970D\n0xC04F\t0x9713\n0xC050\t0x970F\n0xC051\t0x975B\n0xC052\t0x975C\n0xC053\t0x9766\n0xC054\t0x9798\n0xC055\t0x9830\n0xC056\t0x9838\n0xC057\t0x983B\n0xC058\t0x9837\n0xC059\t0x982D\n0xC05A\t0x9839\n0xC05B\t0x9824\n0xC05C\t0x9910\n0xC05D\t0x9928\n0xC05E\t0x991E\n0xC05F\t0x991B\n0xC060\t0x9921\n0xC061\t0x991A\n0xC062\t0x99ED\n0xC063\t0x99E2\n0xC064\t0x99F1\n0xC065\t0x9AB8\n0xC066\t0x9ABC\n0xC067\t0x9AFB\n0xC068\t0x9AED\n0xC069\t0x9B28\n0xC06A\t0x9B91\n0xC06B\t0x9D15\n0xC06C\t0x9D23\n0xC06D\t0x9D26\n0xC06E\t0x9D28\n0xC06F\t0x9D12\n0xC070\t0x9D1B\n0xC071\t0x9ED8\n0xC072\t0x9ED4\n0xC073\t0x9F8D\n0xC074\t0x9F9C\n0xC075\t0x512A\n0xC076\t0x511F\n0xC077\t0x5121\n0xC078\t0x5132\n0xC079\t0x52F5\n0xC07A\t0x568E\n0xC07B\t0x5680\n0xC07C\t0x5690\n0xC07D\t0x5685\n0xC07E\t0x5687\n0xC0A1\t0x568F\n0xC0A2\t0x58D5\n0xC0A3\t0x58D3\n0xC0A4\t0x58D1\n0xC0A5\t0x58CE\n0xC0A6\t0x5B30\n0xC0A7\t0x5B2A\n0xC0A8\t0x5B24\n0xC0A9\t0x5B7A\n0xC0AA\t0x5C37\n0xC0AB\t0x5C68\n0xC0AC\t0x5DBC\n0xC0AD\t0x5DBA\n0xC0AE\t0x5DBD\n0xC0AF\t0x5DB8\n0xC0B0\t0x5E6B\n0xC0B1\t0x5F4C\n0xC0B2\t0x5FBD\n0xC0B3\t0x61C9\n0xC0B4\t0x61C2\n0xC0B5\t0x61C7\n0xC0B6\t0x61E6\n0xC0B7\t0x61CB\n0xC0B8\t0x6232\n0xC0B9\t0x6234\n0xC0BA\t0x64CE\n0xC0BB\t0x64CA\n0xC0BC\t0x64D8\n0xC0BD\t0x64E0\n0xC0BE\t0x64F0\n0xC0BF\t0x64E6\n0xC0C0\t0x64EC\n0xC0C1\t0x64F1\n0xC0C2\t0x64E2\n0xC0C3\t0x64ED\n0xC0C4\t0x6582\n0xC0C5\t0x6583\n0xC0C6\t0x66D9\n0xC0C7\t0x66D6\n0xC0C8\t0x6A80\n0xC0C9\t0x6A94\n0xC0CA\t0x6A84\n0xC0CB\t0x6AA2\n0xC0CC\t0x6A9C\n0xC0CD\t0x6ADB\n0xC0CE\t0x6AA3\n0xC0CF\t0x6A7E\n0xC0D0\t0x6A97\n0xC0D1\t0x6A90\n0xC0D2\t0x6AA0\n0xC0D3\t0x6B5C\n0xC0D4\t0x6BAE\n0xC0D5\t0x6BDA\n0xC0D6\t0x6C08\n0xC0D7\t0x6FD8\n0xC0D8\t0x6FF1\n0xC0D9\t0x6FDF\n0xC0DA\t0x6FE0\n0xC0DB\t0x6FDB\n0xC0DC\t0x6FE4\n0xC0DD\t0x6FEB\n0xC0DE\t0x6FEF\n0xC0DF\t0x6F80\n0xC0E0\t0x6FEC\n0xC0E1\t0x6FE1\n0xC0E2\t0x6FE9\n0xC0E3\t0x6FD5\n0xC0E4\t0x6FEE\n0xC0E5\t0x6FF0\n0xC0E6\t0x71E7\n0xC0E7\t0x71DF\n0xC0E8\t0x71EE\n0xC0E9\t0x71E6\n0xC0EA\t0x71E5\n0xC0EB\t0x71ED\n0xC0EC\t0x71EC\n0xC0ED\t0x71F4\n0xC0EE\t0x71E0\n0xC0EF\t0x7235\n0xC0F0\t0x7246\n0xC0F1\t0x7370\n0xC0F2\t0x7372\n0xC0F3\t0x74A9\n0xC0F4\t0x74B0\n0xC0F5\t0x74A6\n0xC0F6\t0x74A8\n0xC0F7\t0x7646\n0xC0F8\t0x7642\n0xC0F9\t0x764C\n0xC0FA\t0x76EA\n0xC0FB\t0x77B3\n0xC0FC\t0x77AA\n0xC0FD\t0x77B0\n0xC0FE\t0x77AC\n0xC140\t0x77A7\n0xC141\t0x77AD\n0xC142\t0x77EF\n0xC143\t0x78F7\n0xC144\t0x78FA\n0xC145\t0x78F4\n0xC146\t0x78EF\n0xC147\t0x7901\n0xC148\t0x79A7\n0xC149\t0x79AA\n0xC14A\t0x7A57\n0xC14B\t0x7ABF\n0xC14C\t0x7C07\n0xC14D\t0x7C0D\n0xC14E\t0x7BFE\n0xC14F\t0x7BF7\n0xC150\t0x7C0C\n0xC151\t0x7BE0\n0xC152\t0x7CE0\n0xC153\t0x7CDC\n0xC154\t0x7CDE\n0xC155\t0x7CE2\n0xC156\t0x7CDF\n0xC157\t0x7CD9\n0xC158\t0x7CDD\n0xC159\t0x7E2E\n0xC15A\t0x7E3E\n0xC15B\t0x7E46\n0xC15C\t0x7E37\n0xC15D\t0x7E32\n0xC15E\t0x7E43\n0xC15F\t0x7E2B\n0xC160\t0x7E3D\n0xC161\t0x7E31\n0xC162\t0x7E45\n0xC163\t0x7E41\n0xC164\t0x7E34\n0xC165\t0x7E39\n0xC166\t0x7E48\n0xC167\t0x7E35\n0xC168\t0x7E3F\n0xC169\t0x7E2F\n0xC16A\t0x7F44\n0xC16B\t0x7FF3\n0xC16C\t0x7FFC\n0xC16D\t0x8071\n0xC16E\t0x8072\n0xC16F\t0x8070\n0xC170\t0x806F\n0xC171\t0x8073\n0xC172\t0x81C6\n0xC173\t0x81C3\n0xC174\t0x81BA\n0xC175\t0x81C2\n0xC176\t0x81C0\n0xC177\t0x81BF\n0xC178\t0x81BD\n0xC179\t0x81C9\n0xC17A\t0x81BE\n0xC17B\t0x81E8\n0xC17C\t0x8209\n0xC17D\t0x8271\n0xC17E\t0x85AA\n0xC1A1\t0x8584\n0xC1A2\t0x857E\n0xC1A3\t0x859C\n0xC1A4\t0x8591\n0xC1A5\t0x8594\n0xC1A6\t0x85AF\n0xC1A7\t0x859B\n0xC1A8\t0x8587\n0xC1A9\t0x85A8\n0xC1AA\t0x858A\n0xC1AB\t0x8667\n0xC1AC\t0x87C0\n0xC1AD\t0x87D1\n0xC1AE\t0x87B3\n0xC1AF\t0x87D2\n0xC1B0\t0x87C6\n0xC1B1\t0x87AB\n0xC1B2\t0x87BB\n0xC1B3\t0x87BA\n0xC1B4\t0x87C8\n0xC1B5\t0x87CB\n0xC1B6\t0x893B\n0xC1B7\t0x8936\n0xC1B8\t0x8944\n0xC1B9\t0x8938\n0xC1BA\t0x893D\n0xC1BB\t0x89AC\n0xC1BC\t0x8B0E\n0xC1BD\t0x8B17\n0xC1BE\t0x8B19\n0xC1BF\t0x8B1B\n0xC1C0\t0x8B0A\n0xC1C1\t0x8B20\n0xC1C2\t0x8B1D\n0xC1C3\t0x8B04\n0xC1C4\t0x8B10\n0xC1C5\t0x8C41\n0xC1C6\t0x8C3F\n0xC1C7\t0x8C73\n0xC1C8\t0x8CFA\n0xC1C9\t0x8CFD\n0xC1CA\t0x8CFC\n0xC1CB\t0x8CF8\n0xC1CC\t0x8CFB\n0xC1CD\t0x8DA8\n0xC1CE\t0x8E49\n0xC1CF\t0x8E4B\n0xC1D0\t0x8E48\n0xC1D1\t0x8E4A\n0xC1D2\t0x8F44\n0xC1D3\t0x8F3E\n0xC1D4\t0x8F42\n0xC1D5\t0x8F45\n0xC1D6\t0x8F3F\n0xC1D7\t0x907F\n0xC1D8\t0x907D\n0xC1D9\t0x9084\n0xC1DA\t0x9081\n0xC1DB\t0x9082\n0xC1DC\t0x9080\n0xC1DD\t0x9139\n0xC1DE\t0x91A3\n0xC1DF\t0x919E\n0xC1E0\t0x919C\n0xC1E1\t0x934D\n0xC1E2\t0x9382\n0xC1E3\t0x9328\n0xC1E4\t0x9375\n0xC1E5\t0x934A\n0xC1E6\t0x9365\n0xC1E7\t0x934B\n0xC1E8\t0x9318\n0xC1E9\t0x937E\n0xC1EA\t0x936C\n0xC1EB\t0x935B\n0xC1EC\t0x9370\n0xC1ED\t0x935A\n0xC1EE\t0x9354\n0xC1EF\t0x95CA\n0xC1F0\t0x95CB\n0xC1F1\t0x95CC\n0xC1F2\t0x95C8\n0xC1F3\t0x95C6\n0xC1F4\t0x96B1\n0xC1F5\t0x96B8\n0xC1F6\t0x96D6\n0xC1F7\t0x971C\n0xC1F8\t0x971E\n0xC1F9\t0x97A0\n0xC1FA\t0x97D3\n0xC1FB\t0x9846\n0xC1FC\t0x98B6\n0xC1FD\t0x9935\n0xC1FE\t0x9A01\n0xC240\t0x99FF\n0xC241\t0x9BAE\n0xC242\t0x9BAB\n0xC243\t0x9BAA\n0xC244\t0x9BAD\n0xC245\t0x9D3B\n0xC246\t0x9D3F\n0xC247\t0x9E8B\n0xC248\t0x9ECF\n0xC249\t0x9EDE\n0xC24A\t0x9EDC\n0xC24B\t0x9EDD\n0xC24C\t0x9EDB\n0xC24D\t0x9F3E\n0xC24E\t0x9F4B\n0xC24F\t0x53E2\n0xC250\t0x5695\n0xC251\t0x56AE\n0xC252\t0x58D9\n0xC253\t0x58D8\n0xC254\t0x5B38\n0xC255\t0x5F5D\n0xC256\t0x61E3\n0xC257\t0x6233\n0xC258\t0x64F4\n0xC259\t0x64F2\n0xC25A\t0x64FE\n0xC25B\t0x6506\n0xC25C\t0x64FA\n0xC25D\t0x64FB\n0xC25E\t0x64F7\n0xC25F\t0x65B7\n0xC260\t0x66DC\n0xC261\t0x6726\n0xC262\t0x6AB3\n0xC263\t0x6AAC\n0xC264\t0x6AC3\n0xC265\t0x6ABB\n0xC266\t0x6AB8\n0xC267\t0x6AC2\n0xC268\t0x6AAE\n0xC269\t0x6AAF\n0xC26A\t0x6B5F\n0xC26B\t0x6B78\n0xC26C\t0x6BAF\n0xC26D\t0x7009\n0xC26E\t0x700B\n0xC26F\t0x6FFE\n0xC270\t0x7006\n0xC271\t0x6FFA\n0xC272\t0x7011\n0xC273\t0x700F\n0xC274\t0x71FB\n0xC275\t0x71FC\n0xC276\t0x71FE\n0xC277\t0x71F8\n0xC278\t0x7377\n0xC279\t0x7375\n0xC27A\t0x74A7\n0xC27B\t0x74BF\n0xC27C\t0x7515\n0xC27D\t0x7656\n0xC27E\t0x7658\n0xC2A1\t0x7652\n0xC2A2\t0x77BD\n0xC2A3\t0x77BF\n0xC2A4\t0x77BB\n0xC2A5\t0x77BC\n0xC2A6\t0x790E\n0xC2A7\t0x79AE\n0xC2A8\t0x7A61\n0xC2A9\t0x7A62\n0xC2AA\t0x7A60\n0xC2AB\t0x7AC4\n0xC2AC\t0x7AC5\n0xC2AD\t0x7C2B\n0xC2AE\t0x7C27\n0xC2AF\t0x7C2A\n0xC2B0\t0x7C1E\n0xC2B1\t0x7C23\n0xC2B2\t0x7C21\n0xC2B3\t0x7CE7\n0xC2B4\t0x7E54\n0xC2B5\t0x7E55\n0xC2B6\t0x7E5E\n0xC2B7\t0x7E5A\n0xC2B8\t0x7E61\n0xC2B9\t0x7E52\n0xC2BA\t0x7E59\n0xC2BB\t0x7F48\n0xC2BC\t0x7FF9\n0xC2BD\t0x7FFB\n0xC2BE\t0x8077\n0xC2BF\t0x8076\n0xC2C0\t0x81CD\n0xC2C1\t0x81CF\n0xC2C2\t0x820A\n0xC2C3\t0x85CF\n0xC2C4\t0x85A9\n0xC2C5\t0x85CD\n0xC2C6\t0x85D0\n0xC2C7\t0x85C9\n0xC2C8\t0x85B0\n0xC2C9\t0x85BA\n0xC2CA\t0x85B9\n0xC2CB\t0x85A6\n0xC2CC\t0x87EF\n0xC2CD\t0x87EC\n0xC2CE\t0x87F2\n0xC2CF\t0x87E0\n0xC2D0\t0x8986\n0xC2D1\t0x89B2\n0xC2D2\t0x89F4\n0xC2D3\t0x8B28\n0xC2D4\t0x8B39\n0xC2D5\t0x8B2C\n0xC2D6\t0x8B2B\n0xC2D7\t0x8C50\n0xC2D8\t0x8D05\n0xC2D9\t0x8E59\n0xC2DA\t0x8E63\n0xC2DB\t0x8E66\n0xC2DC\t0x8E64\n0xC2DD\t0x8E5F\n0xC2DE\t0x8E55\n0xC2DF\t0x8EC0\n0xC2E0\t0x8F49\n0xC2E1\t0x8F4D\n0xC2E2\t0x9087\n0xC2E3\t0x9083\n0xC2E4\t0x9088\n0xC2E5\t0x91AB\n0xC2E6\t0x91AC\n0xC2E7\t0x91D0\n0xC2E8\t0x9394\n0xC2E9\t0x938A\n0xC2EA\t0x9396\n0xC2EB\t0x93A2\n0xC2EC\t0x93B3\n0xC2ED\t0x93AE\n0xC2EE\t0x93AC\n0xC2EF\t0x93B0\n0xC2F0\t0x9398\n0xC2F1\t0x939A\n0xC2F2\t0x9397\n0xC2F3\t0x95D4\n0xC2F4\t0x95D6\n0xC2F5\t0x95D0\n0xC2F6\t0x95D5\n0xC2F7\t0x96E2\n0xC2F8\t0x96DC\n0xC2F9\t0x96D9\n0xC2FA\t0x96DB\n0xC2FB\t0x96DE\n0xC2FC\t0x9724\n0xC2FD\t0x97A3\n0xC2FE\t0x97A6\n0xC340\t0x97AD\n0xC341\t0x97F9\n0xC342\t0x984D\n0xC343\t0x984F\n0xC344\t0x984C\n0xC345\t0x984E\n0xC346\t0x9853\n0xC347\t0x98BA\n0xC348\t0x993E\n0xC349\t0x993F\n0xC34A\t0x993D\n0xC34B\t0x992E\n0xC34C\t0x99A5\n0xC34D\t0x9A0E\n0xC34E\t0x9AC1\n0xC34F\t0x9B03\n0xC350\t0x9B06\n0xC351\t0x9B4F\n0xC352\t0x9B4E\n0xC353\t0x9B4D\n0xC354\t0x9BCA\n0xC355\t0x9BC9\n0xC356\t0x9BFD\n0xC357\t0x9BC8\n0xC358\t0x9BC0\n0xC359\t0x9D51\n0xC35A\t0x9D5D\n0xC35B\t0x9D60\n0xC35C\t0x9EE0\n0xC35D\t0x9F15\n0xC35E\t0x9F2C\n0xC35F\t0x5133\n0xC360\t0x56A5\n0xC361\t0x58DE\n0xC362\t0x58DF\n0xC363\t0x58E2\n0xC364\t0x5BF5\n0xC365\t0x9F90\n0xC366\t0x5EEC\n0xC367\t0x61F2\n0xC368\t0x61F7\n0xC369\t0x61F6\n0xC36A\t0x61F5\n0xC36B\t0x6500\n0xC36C\t0x650F\n0xC36D\t0x66E0\n0xC36E\t0x66DD\n0xC36F\t0x6AE5\n0xC370\t0x6ADD\n0xC371\t0x6ADA\n0xC372\t0x6AD3\n0xC373\t0x701B\n0xC374\t0x701F\n0xC375\t0x7028\n0xC376\t0x701A\n0xC377\t0x701D\n0xC378\t0x7015\n0xC379\t0x7018\n0xC37A\t0x7206\n0xC37B\t0x720D\n0xC37C\t0x7258\n0xC37D\t0x72A2\n0xC37E\t0x7378\n0xC3A1\t0x737A\n0xC3A2\t0x74BD\n0xC3A3\t0x74CA\n0xC3A4\t0x74E3\n0xC3A5\t0x7587\n0xC3A6\t0x7586\n0xC3A7\t0x765F\n0xC3A8\t0x7661\n0xC3A9\t0x77C7\n0xC3AA\t0x7919\n0xC3AB\t0x79B1\n0xC3AC\t0x7A6B\n0xC3AD\t0x7A69\n0xC3AE\t0x7C3E\n0xC3AF\t0x7C3F\n0xC3B0\t0x7C38\n0xC3B1\t0x7C3D\n0xC3B2\t0x7C37\n0xC3B3\t0x7C40\n0xC3B4\t0x7E6B\n0xC3B5\t0x7E6D\n0xC3B6\t0x7E79\n0xC3B7\t0x7E69\n0xC3B8\t0x7E6A\n0xC3B9\t0x7F85\n0xC3BA\t0x7E73\n0xC3BB\t0x7FB6\n0xC3BC\t0x7FB9\n0xC3BD\t0x7FB8\n0xC3BE\t0x81D8\n0xC3BF\t0x85E9\n0xC3C0\t0x85DD\n0xC3C1\t0x85EA\n0xC3C2\t0x85D5\n0xC3C3\t0x85E4\n0xC3C4\t0x85E5\n0xC3C5\t0x85F7\n0xC3C6\t0x87FB\n0xC3C7\t0x8805\n0xC3C8\t0x880D\n0xC3C9\t0x87F9\n0xC3CA\t0x87FE\n0xC3CB\t0x8960\n0xC3CC\t0x895F\n0xC3CD\t0x8956\n0xC3CE\t0x895E\n0xC3CF\t0x8B41\n0xC3D0\t0x8B5C\n0xC3D1\t0x8B58\n0xC3D2\t0x8B49\n0xC3D3\t0x8B5A\n0xC3D4\t0x8B4E\n0xC3D5\t0x8B4F\n0xC3D6\t0x8B46\n0xC3D7\t0x8B59\n0xC3D8\t0x8D08\n0xC3D9\t0x8D0A\n0xC3DA\t0x8E7C\n0xC3DB\t0x8E72\n0xC3DC\t0x8E87\n0xC3DD\t0x8E76\n0xC3DE\t0x8E6C\n0xC3DF\t0x8E7A\n0xC3E0\t0x8E74\n0xC3E1\t0x8F54\n0xC3E2\t0x8F4E\n0xC3E3\t0x8FAD\n0xC3E4\t0x908A\n0xC3E5\t0x908B\n0xC3E6\t0x91B1\n0xC3E7\t0x91AE\n0xC3E8\t0x93E1\n0xC3E9\t0x93D1\n0xC3EA\t0x93DF\n0xC3EB\t0x93C3\n0xC3EC\t0x93C8\n0xC3ED\t0x93DC\n0xC3EE\t0x93DD\n0xC3EF\t0x93D6\n0xC3F0\t0x93E2\n0xC3F1\t0x93CD\n0xC3F2\t0x93D8\n0xC3F3\t0x93E4\n0xC3F4\t0x93D7\n0xC3F5\t0x93E8\n0xC3F6\t0x95DC\n0xC3F7\t0x96B4\n0xC3F8\t0x96E3\n0xC3F9\t0x972A\n0xC3FA\t0x9727\n0xC3FB\t0x9761\n0xC3FC\t0x97DC\n0xC3FD\t0x97FB\n0xC3FE\t0x985E\n0xC440\t0x9858\n0xC441\t0x985B\n0xC442\t0x98BC\n0xC443\t0x9945\n0xC444\t0x9949\n0xC445\t0x9A16\n0xC446\t0x9A19\n0xC447\t0x9B0D\n0xC448\t0x9BE8\n0xC449\t0x9BE7\n0xC44A\t0x9BD6\n0xC44B\t0x9BDB\n0xC44C\t0x9D89\n0xC44D\t0x9D61\n0xC44E\t0x9D72\n0xC44F\t0x9D6A\n0xC450\t0x9D6C\n0xC451\t0x9E92\n0xC452\t0x9E97\n0xC453\t0x9E93\n0xC454\t0x9EB4\n0xC455\t0x52F8\n0xC456\t0x56A8\n0xC457\t0x56B7\n0xC458\t0x56B6\n0xC459\t0x56B4\n0xC45A\t0x56BC\n0xC45B\t0x58E4\n0xC45C\t0x5B40\n0xC45D\t0x5B43\n0xC45E\t0x5B7D\n0xC45F\t0x5BF6\n0xC460\t0x5DC9\n0xC461\t0x61F8\n0xC462\t0x61FA\n0xC463\t0x6518\n0xC464\t0x6514\n0xC465\t0x6519\n0xC466\t0x66E6\n0xC467\t0x6727\n0xC468\t0x6AEC\n0xC469\t0x703E\n0xC46A\t0x7030\n0xC46B\t0x7032\n0xC46C\t0x7210\n0xC46D\t0x737B\n0xC46E\t0x74CF\n0xC46F\t0x7662\n0xC470\t0x7665\n0xC471\t0x7926\n0xC472\t0x792A\n0xC473\t0x792C\n0xC474\t0x792B\n0xC475\t0x7AC7\n0xC476\t0x7AF6\n0xC477\t0x7C4C\n0xC478\t0x7C43\n0xC479\t0x7C4D\n0xC47A\t0x7CEF\n0xC47B\t0x7CF0\n0xC47C\t0x8FAE\n0xC47D\t0x7E7D\n0xC47E\t0x7E7C\n0xC4A1\t0x7E82\n0xC4A2\t0x7F4C\n0xC4A3\t0x8000\n0xC4A4\t0x81DA\n0xC4A5\t0x8266\n0xC4A6\t0x85FB\n0xC4A7\t0x85F9\n0xC4A8\t0x8611\n0xC4A9\t0x85FA\n0xC4AA\t0x8606\n0xC4AB\t0x860B\n0xC4AC\t0x8607\n0xC4AD\t0x860A\n0xC4AE\t0x8814\n0xC4AF\t0x8815\n0xC4B0\t0x8964\n0xC4B1\t0x89BA\n0xC4B2\t0x89F8\n0xC4B3\t0x8B70\n0xC4B4\t0x8B6C\n0xC4B5\t0x8B66\n0xC4B6\t0x8B6F\n0xC4B7\t0x8B5F\n0xC4B8\t0x8B6B\n0xC4B9\t0x8D0F\n0xC4BA\t0x8D0D\n0xC4BB\t0x8E89\n0xC4BC\t0x8E81\n0xC4BD\t0x8E85\n0xC4BE\t0x8E82\n0xC4BF\t0x91B4\n0xC4C0\t0x91CB\n0xC4C1\t0x9418\n0xC4C2\t0x9403\n0xC4C3\t0x93FD\n0xC4C4\t0x95E1\n0xC4C5\t0x9730\n0xC4C6\t0x98C4\n0xC4C7\t0x9952\n0xC4C8\t0x9951\n0xC4C9\t0x99A8\n0xC4CA\t0x9A2B\n0xC4CB\t0x9A30\n0xC4CC\t0x9A37\n0xC4CD\t0x9A35\n0xC4CE\t0x9C13\n0xC4CF\t0x9C0D\n0xC4D0\t0x9E79\n0xC4D1\t0x9EB5\n0xC4D2\t0x9EE8\n0xC4D3\t0x9F2F\n0xC4D4\t0x9F5F\n0xC4D5\t0x9F63\n0xC4D6\t0x9F61\n0xC4D7\t0x5137\n0xC4D8\t0x5138\n0xC4D9\t0x56C1\n0xC4DA\t0x56C0\n0xC4DB\t0x56C2\n0xC4DC\t0x5914\n0xC4DD\t0x5C6C\n0xC4DE\t0x5DCD\n0xC4DF\t0x61FC\n0xC4E0\t0x61FE\n0xC4E1\t0x651D\n0xC4E2\t0x651C\n0xC4E3\t0x6595\n0xC4E4\t0x66E9\n0xC4E5\t0x6AFB\n0xC4E6\t0x6B04\n0xC4E7\t0x6AFA\n0xC4E8\t0x6BB2\n0xC4E9\t0x704C\n0xC4EA\t0x721B\n0xC4EB\t0x72A7\n0xC4EC\t0x74D6\n0xC4ED\t0x74D4\n0xC4EE\t0x7669\n0xC4EF\t0x77D3\n0xC4F0\t0x7C50\n0xC4F1\t0x7E8F\n0xC4F2\t0x7E8C\n0xC4F3\t0x7FBC\n0xC4F4\t0x8617\n0xC4F5\t0x862D\n0xC4F6\t0x861A\n0xC4F7\t0x8823\n0xC4F8\t0x8822\n0xC4F9\t0x8821\n0xC4FA\t0x881F\n0xC4FB\t0x896A\n0xC4FC\t0x896C\n0xC4FD\t0x89BD\n0xC4FE\t0x8B74\n0xC540\t0x8B77\n0xC541\t0x8B7D\n0xC542\t0x8D13\n0xC543\t0x8E8A\n0xC544\t0x8E8D\n0xC545\t0x8E8B\n0xC546\t0x8F5F\n0xC547\t0x8FAF\n0xC548\t0x91BA\n0xC549\t0x942E\n0xC54A\t0x9433\n0xC54B\t0x9435\n0xC54C\t0x943A\n0xC54D\t0x9438\n0xC54E\t0x9432\n0xC54F\t0x942B\n0xC550\t0x95E2\n0xC551\t0x9738\n0xC552\t0x9739\n0xC553\t0x9732\n0xC554\t0x97FF\n0xC555\t0x9867\n0xC556\t0x9865\n0xC557\t0x9957\n0xC558\t0x9A45\n0xC559\t0x9A43\n0xC55A\t0x9A40\n0xC55B\t0x9A3E\n0xC55C\t0x9ACF\n0xC55D\t0x9B54\n0xC55E\t0x9B51\n0xC55F\t0x9C2D\n0xC560\t0x9C25\n0xC561\t0x9DAF\n0xC562\t0x9DB4\n0xC563\t0x9DC2\n0xC564\t0x9DB8\n0xC565\t0x9E9D\n0xC566\t0x9EEF\n0xC567\t0x9F19\n0xC568\t0x9F5C\n0xC569\t0x9F66\n0xC56A\t0x9F67\n0xC56B\t0x513C\n0xC56C\t0x513B\n0xC56D\t0x56C8\n0xC56E\t0x56CA\n0xC56F\t0x56C9\n0xC570\t0x5B7F\n0xC571\t0x5DD4\n0xC572\t0x5DD2\n0xC573\t0x5F4E\n0xC574\t0x61FF\n0xC575\t0x6524\n0xC576\t0x6B0A\n0xC577\t0x6B61\n0xC578\t0x7051\n0xC579\t0x7058\n0xC57A\t0x7380\n0xC57B\t0x74E4\n0xC57C\t0x758A\n0xC57D\t0x766E\n0xC57E\t0x766C\n0xC5A1\t0x79B3\n0xC5A2\t0x7C60\n0xC5A3\t0x7C5F\n0xC5A4\t0x807E\n0xC5A5\t0x807D\n0xC5A6\t0x81DF\n0xC5A7\t0x8972\n0xC5A8\t0x896F\n0xC5A9\t0x89FC\n0xC5AA\t0x8B80\n0xC5AB\t0x8D16\n0xC5AC\t0x8D17\n0xC5AD\t0x8E91\n0xC5AE\t0x8E93\n0xC5AF\t0x8F61\n0xC5B0\t0x9148\n0xC5B1\t0x9444\n0xC5B2\t0x9451\n0xC5B3\t0x9452\n0xC5B4\t0x973D\n0xC5B5\t0x973E\n0xC5B6\t0x97C3\n0xC5B7\t0x97C1\n0xC5B8\t0x986B\n0xC5B9\t0x9955\n0xC5BA\t0x9A55\n0xC5BB\t0x9A4D\n0xC5BC\t0x9AD2\n0xC5BD\t0x9B1A\n0xC5BE\t0x9C49\n0xC5BF\t0x9C31\n0xC5C0\t0x9C3E\n0xC5C1\t0x9C3B\n0xC5C2\t0x9DD3\n0xC5C3\t0x9DD7\n0xC5C4\t0x9F34\n0xC5C5\t0x9F6C\n0xC5C6\t0x9F6A\n0xC5C7\t0x9F94\n0xC5C8\t0x56CC\n0xC5C9\t0x5DD6\n0xC5CA\t0x6200\n0xC5CB\t0x6523\n0xC5CC\t0x652B\n0xC5CD\t0x652A\n0xC5CE\t0x66EC\n0xC5CF\t0x6B10\n0xC5D0\t0x74DA\n0xC5D1\t0x7ACA\n0xC5D2\t0x7C64\n0xC5D3\t0x7C63\n0xC5D4\t0x7C65\n0xC5D5\t0x7E93\n0xC5D6\t0x7E96\n0xC5D7\t0x7E94\n0xC5D8\t0x81E2\n0xC5D9\t0x8638\n0xC5DA\t0x863F\n0xC5DB\t0x8831\n0xC5DC\t0x8B8A\n0xC5DD\t0x9090\n0xC5DE\t0x908F\n0xC5DF\t0x9463\n0xC5E0\t0x9460\n0xC5E1\t0x9464\n0xC5E2\t0x9768\n0xC5E3\t0x986F\n0xC5E4\t0x995C\n0xC5E5\t0x9A5A\n0xC5E6\t0x9A5B\n0xC5E7\t0x9A57\n0xC5E8\t0x9AD3\n0xC5E9\t0x9AD4\n0xC5EA\t0x9AD1\n0xC5EB\t0x9C54\n0xC5EC\t0x9C57\n0xC5ED\t0x9C56\n0xC5EE\t0x9DE5\n0xC5EF\t0x9E9F\n0xC5F0\t0x9EF4\n0xC5F1\t0x56D1\n0xC5F2\t0x58E9\n0xC5F3\t0x652C\n0xC5F4\t0x705E\n0xC5F5\t0x7671\n0xC5F6\t0x7672\n0xC5F7\t0x77D7\n0xC5F8\t0x7F50\n0xC5F9\t0x7F88\n0xC5FA\t0x8836\n0xC5FB\t0x8839\n0xC5FC\t0x8862\n0xC5FD\t0x8B93\n0xC5FE\t0x8B92\n0xC640\t0x8B96\n0xC641\t0x8277\n0xC642\t0x8D1B\n0xC643\t0x91C0\n0xC644\t0x946A\n0xC645\t0x9742\n0xC646\t0x9748\n0xC647\t0x9744\n0xC648\t0x97C6\n0xC649\t0x9870\n0xC64A\t0x9A5F\n0xC64B\t0x9B22\n0xC64C\t0x9B58\n0xC64D\t0x9C5F\n0xC64E\t0x9DF9\n0xC64F\t0x9DFA\n0xC650\t0x9E7C\n0xC651\t0x9E7D\n0xC652\t0x9F07\n0xC653\t0x9F77\n0xC654\t0x9F72\n0xC655\t0x5EF3\n0xC656\t0x6B16\n0xC657\t0x7063\n0xC658\t0x7C6C\n0xC659\t0x7C6E\n0xC65A\t0x883B\n0xC65B\t0x89C0\n0xC65C\t0x8EA1\n0xC65D\t0x91C1\n0xC65E\t0x9472\n0xC65F\t0x9470\n0xC660\t0x9871\n0xC661\t0x995E\n0xC662\t0x9AD6\n0xC663\t0x9B23\n0xC664\t0x9ECC\n0xC665\t0x7064\n0xC666\t0x77DA\n0xC667\t0x8B9A\n0xC668\t0x9477\n0xC669\t0x97C9\n0xC66A\t0x9A62\n0xC66B\t0x9A65\n0xC66C\t0x7E9C\n0xC66D\t0x8B9C\n0xC66E\t0x8EAA\n0xC66F\t0x91C5\n0xC670\t0x947D\n0xC671\t0x947E\n0xC672\t0x947C\n0xC673\t0x9C77\n0xC674\t0x9C78\n0xC675\t0x9EF7\n0xC676\t0x8C54\n0xC677\t0x947F\n0xC678\t0x9E1A\n0xC679\t0x7228\n0xC67A\t0x9A6A\n0xC67B\t0x9B31\n0xC67C\t0x9E1B\n0xC67D\t0x9E1E\n0xC67E\t0x7C72\n0xC6A1\t0x2460\n0xC6A2\t0x2461\n0xC6A3\t0x2462\n0xC6A4\t0x2463\n0xC6A5\t0x2464\n0xC6A6\t0x2465\n0xC6A7\t0x2466\n0xC6A8\t0x2467\n0xC6A9\t0x2468\n0xC6AA\t0x2469\n0xC6AB\t0x2474\n0xC6AC\t0x2475\n0xC6AD\t0x2476\n0xC6AE\t0x2477\n0xC6AF\t0x2478\n0xC6B0\t0x2479\n0xC6B1\t0x247A\n0xC6B2\t0x247B\n0xC6B3\t0x247C\n0xC6B4\t0x247D\n0xC6B5\t0x2170\n0xC6B6\t0x2171\n0xC6B7\t0x2172\n0xC6B8\t0x2173\n0xC6B9\t0x2174\n0xC6BA\t0x2175\n0xC6BB\t0x2176\n0xC6BC\t0x2177\n0xC6BD\t0x2178\n0xC6BE\t0x2179\n0xC6BF\t0x4E36\n0xC6C0\t0x4E3F\n0xC6C1\t0x4E85\n0xC6C2\t0x4EA0\n0xC6C3\t0x5182\n0xC6C4\t0x5196\n0xC6C5\t0x51AB\n0xC6C6\t0x52F9\n0xC6C7\t0x5338\n0xC6C8\t0x5369\n0xC6C9\t0x53B6\n0xC6CA\t0x590A\n0xC6CB\t0x5B80\n0xC6CC\t0x5DDB\n0xC6CD\t0x2F33\n0xC6CE\t0x5E7F\n0xC6D0\t0x5F50\n0xC6D1\t0x5F61\n0xC6D2\t0x6534\n0xC6D4\t0x7592\n0xC6D6\t0x8FB5\n0xC6D8\t0x00A8\n0xC6D9\t0x02C6\n0xC6DA\t0x30FD\n0xC6DB\t0x30FE\n0xC6DC\t0x309D\n0xC6DD\t0x309E\n0xC6E0\t0x3005\n0xC6E1\t0x3006\n0xC6E2\t0x3007\n0xC6E3\t0x30FC\n0xC6E4\t0xFF3B\n0xC6E5\t0xFF3D\n0xC6E6\t0x273D\n0xC6E7\t0x3041\n0xC6E8\t0x3042\n0xC6E9\t0x3043\n0xC6EA\t0x3044\n0xC6EB\t0x3045\n0xC6EC\t0x3046\n0xC6ED\t0x3047\n0xC6EE\t0x3048\n0xC6EF\t0x3049\n0xC6F0\t0x304A\n0xC6F1\t0x304B\n0xC6F2\t0x304C\n0xC6F3\t0x304D\n0xC6F4\t0x304E\n0xC6F5\t0x304F\n0xC6F6\t0x3050\n0xC6F7\t0x3051\n0xC6F8\t0x3052\n0xC6F9\t0x3053\n0xC6FA\t0x3054\n0xC6FB\t0x3055\n0xC6FC\t0x3056\n0xC6FD\t0x3057\n0xC6FE\t0x3058\n0xC740\t0x3059\n0xC741\t0x305A\n0xC742\t0x305B\n0xC743\t0x305C\n0xC744\t0x305D\n0xC745\t0x305E\n0xC746\t0x305F\n0xC747\t0x3060\n0xC748\t0x3061\n0xC749\t0x3062\n0xC74A\t0x3063\n0xC74B\t0x3064\n0xC74C\t0x3065\n0xC74D\t0x3066\n0xC74E\t0x3067\n0xC74F\t0x3068\n0xC750\t0x3069\n0xC751\t0x306A\n0xC752\t0x306B\n0xC753\t0x306C\n0xC754\t0x306D\n0xC755\t0x306E\n0xC756\t0x306F\n0xC757\t0x3070\n0xC758\t0x3071\n0xC759\t0x3072\n0xC75A\t0x3073\n0xC75B\t0x3074\n0xC75C\t0x3075\n0xC75D\t0x3076\n0xC75E\t0x3077\n0xC75F\t0x3078\n0xC760\t0x3079\n0xC761\t0x307A\n0xC762\t0x307B\n0xC763\t0x307C\n0xC764\t0x307D\n0xC765\t0x307E\n0xC766\t0x307F\n0xC767\t0x3080\n0xC768\t0x3081\n0xC769\t0x3082\n0xC76A\t0x3083\n0xC76B\t0x3084\n0xC76C\t0x3085\n0xC76D\t0x3086\n0xC76E\t0x3087\n0xC76F\t0x3088\n0xC770\t0x3089\n0xC771\t0x308A\n0xC772\t0x308B\n0xC773\t0x308C\n0xC774\t0x308D\n0xC775\t0x308E\n0xC776\t0x308F\n0xC777\t0x3090\n0xC778\t0x3091\n0xC779\t0x3092\n0xC77A\t0x3093\n0xC77B\t0x30A1\n0xC77C\t0x30A2\n0xC77D\t0x30A3\n0xC77E\t0x30A4\n0xC7A1\t0x30A5\n0xC7A2\t0x30A6\n0xC7A3\t0x30A7\n0xC7A4\t0x30A8\n0xC7A5\t0x30A9\n0xC7A6\t0x30AA\n0xC7A7\t0x30AB\n0xC7A8\t0x30AC\n0xC7A9\t0x30AD\n0xC7AA\t0x30AE\n0xC7AB\t0x30AF\n0xC7AC\t0x30B0\n0xC7AD\t0x30B1\n0xC7AE\t0x30B2\n0xC7AF\t0x30B3\n0xC7B0\t0x30B4\n0xC7B1\t0x30B5\n0xC7B2\t0x30B6\n0xC7B3\t0x30B7\n0xC7B4\t0x30B8\n0xC7B5\t0x30B9\n0xC7B6\t0x30BA\n0xC7B7\t0x30BB\n0xC7B8\t0x30BC\n0xC7B9\t0x30BD\n0xC7BA\t0x30BE\n0xC7BB\t0x30BF\n0xC7BC\t0x30C0\n0xC7BD\t0x30C1\n0xC7BE\t0x30C2\n0xC7BF\t0x30C3\n0xC7C0\t0x30C4\n0xC7C1\t0x30C5\n0xC7C2\t0x30C6\n0xC7C3\t0x30C7\n0xC7C4\t0x30C8\n0xC7C5\t0x30C9\n0xC7C6\t0x30CA\n0xC7C7\t0x30CB\n0xC7C8\t0x30CC\n0xC7C9\t0x30CD\n0xC7CA\t0x30CE\n0xC7CB\t0x30CF\n0xC7CC\t0x30D0\n0xC7CD\t0x30D1\n0xC7CE\t0x30D2\n0xC7CF\t0x30D3\n0xC7D0\t0x30D4\n0xC7D1\t0x30D5\n0xC7D2\t0x30D6\n0xC7D3\t0x30D7\n0xC7D4\t0x30D8\n0xC7D5\t0x30D9\n0xC7D6\t0x30DA\n0xC7D7\t0x30DB\n0xC7D8\t0x30DC\n0xC7D9\t0x30DD\n0xC7DA\t0x30DE\n0xC7DB\t0x30DF\n0xC7DC\t0x30E0\n0xC7DD\t0x30E1\n0xC7DE\t0x30E2\n0xC7DF\t0x30E3\n0xC7E0\t0x30E4\n0xC7E1\t0x30E5\n0xC7E2\t0x30E6\n0xC7E3\t0x30E7\n0xC7E4\t0x30E8\n0xC7E5\t0x30E9\n0xC7E6\t0x30EA\n0xC7E7\t0x30EB\n0xC7E8\t0x30EC\n0xC7E9\t0x30ED\n0xC7EA\t0x30EE\n0xC7EB\t0x30EF\n0xC7EC\t0x30F0\n0xC7ED\t0x30F1\n0xC7EE\t0x30F2\n0xC7EF\t0x30F3\n0xC7F0\t0x30F4\n0xC7F1\t0x30F5\n0xC7F2\t0x30F6\n0xC7F3\t0x0410\n0xC7F4\t0x0411\n0xC7F5\t0x0412\n0xC7F6\t0x0413\n0xC7F7\t0x0414\n0xC7F8\t0x0415\n0xC7F9\t0x0401\n0xC7FA\t0x0416\n0xC7FB\t0x0417\n0xC7FC\t0x0418\n0xC7FD\t0x0419\n0xC7FE\t0x041A\n0xC840\t0x041B\n0xC841\t0x041C\n0xC842\t0x041D\n0xC843\t0x041E\n0xC844\t0x041F\n0xC845\t0x0420\n0xC846\t0x0421\n0xC847\t0x0422\n0xC848\t0x0423\n0xC849\t0x0424\n0xC84A\t0x0425\n0xC84B\t0x0426\n0xC84C\t0x0427\n0xC84D\t0x0428\n0xC84E\t0x0429\n0xC84F\t0x042A\n0xC850\t0x042B\n0xC851\t0x042C\n0xC852\t0x042D\n0xC853\t0x042E\n0xC854\t0x042F\n0xC855\t0x0430\n0xC856\t0x0431\n0xC857\t0x0432\n0xC858\t0x0433\n0xC859\t0x0434\n0xC85A\t0x0435\n0xC85B\t0x0451\n0xC85C\t0x0436\n0xC85D\t0x0437\n0xC85E\t0x0438\n0xC85F\t0x0439\n0xC860\t0x043A\n0xC861\t0x043B\n0xC862\t0x043C\n0xC863\t0x043D\n0xC864\t0x043E\n0xC865\t0x043F\n0xC866\t0x0440\n0xC867\t0x0441\n0xC868\t0x0442\n0xC869\t0x0443\n0xC86A\t0x0444\n0xC86B\t0x0445\n0xC86C\t0x0446\n0xC86D\t0x0447\n0xC86E\t0x0448\n0xC86F\t0x0449\n0xC870\t0x044A\n0xC871\t0x044B\n0xC872\t0x044C\n0xC873\t0x044D\n0xC874\t0x044E\n0xC875\t0x044F\n0xC876\t0x21E7\n0xC877\t0x21B8\n0xC878\t0x21B9\n0xC879\t0x31CF\n0xC87A\t0x200CC\n0xC87B\t0x4E5A\n0xC87C\t0x2008A\n0xC87D\t0x5202\n0xC87E\t0x4491\n0xC8A1\t0x9FB0\n0xC8A2\t0x5188\n0xC8A3\t0x9FB1\n0xC8A4\t0x27607\n0xC8CD\t0xFFE2\n0xC8CE\t0xFFE4\n0xC8CF\t0xFF07\n0xC8D0\t0xFF02\n0xC8D1\t0x3231\n0xC8D2\t0x2116\n0xC8D3\t0x2121\n0xC8D4\t0x309B\n0xC8D5\t0x309C\n0xC8D6\t0x2E80\n0xC8D7\t0x2E84\n0xC8D8\t0x2E86\n0xC8D9\t0x2E87\n0xC8DA\t0x2E88\n0xC8DB\t0x2E8A\n0xC8DC\t0x2E8C\n0xC8DD\t0x2E8D\n0xC8DE\t0x2E95\n0xC8DF\t0x2E9C\n0xC8E0\t0x2E9D\n0xC8E1\t0x2EA5\n0xC8E2\t0x2EA7\n0xC8E3\t0x2EAA\n0xC8E4\t0x2EAC\n0xC8E5\t0x2EAE\n0xC8E6\t0x2EB6\n0xC8E7\t0x2EBC\n0xC8E8\t0x2EBE\n0xC8E9\t0x2EC6\n0xC8EA\t0x2ECA\n0xC8EB\t0x2ECC\n0xC8EC\t0x2ECD\n0xC8ED\t0x2ECF\n0xC8EE\t0x2ED6\n0xC8EF\t0x2ED7\n0xC8F0\t0x2EDE\n0xC8F1\t0x2EE3\n0xC8F5\t0x0283\n0xC8F6\t0x0250\n0xC8F7\t0x025B\n0xC8F8\t0x0254\n0xC8F9\t0x0275\n0xC8FA\t0x0153\n0xC8FB\t0x00F8\n0xC8FC\t0x014B\n0xC8FD\t0x028A\n0xC8FE\t0x026A\n0xC940\t0x4E42\n0xC941\t0x4E5C\n0xC942\t0x51F5\n0xC943\t0x531A\n0xC944\t0x5382\n0xC945\t0x4E07\n0xC946\t0x4E0C\n0xC947\t0x4E47\n0xC948\t0x4E8D\n0xC949\t0x56D7\n0xC94A\t0xFA0C\n0xC94B\t0x5C6E\n0xC94C\t0x5F73\n0xC94D\t0x4E0F\n0xC94E\t0x5187\n0xC94F\t0x4E0E\n0xC950\t0x4E2E\n0xC951\t0x4E93\n0xC952\t0x4EC2\n0xC953\t0x4EC9\n0xC954\t0x4EC8\n0xC955\t0x5198\n0xC956\t0x52FC\n0xC957\t0x536C\n0xC958\t0x53B9\n0xC959\t0x5720\n0xC95A\t0x5903\n0xC95B\t0x592C\n0xC95C\t0x5C10\n0xC95D\t0x5DFF\n0xC95E\t0x65E1\n0xC95F\t0x6BB3\n0xC960\t0x6BCC\n0xC961\t0x6C14\n0xC962\t0x723F\n0xC963\t0x4E31\n0xC964\t0x4E3C\n0xC965\t0x4EE8\n0xC966\t0x4EDC\n0xC967\t0x4EE9\n0xC968\t0x4EE1\n0xC969\t0x4EDD\n0xC96A\t0x4EDA\n0xC96B\t0x520C\n0xC96C\t0x531C\n0xC96D\t0x534C\n0xC96E\t0x5722\n0xC96F\t0x5723\n0xC970\t0x5917\n0xC971\t0x592F\n0xC972\t0x5B81\n0xC973\t0x5B84\n0xC974\t0x5C12\n0xC975\t0x5C3B\n0xC976\t0x5C74\n0xC977\t0x5C73\n0xC978\t0x5E04\n0xC979\t0x5E80\n0xC97A\t0x5E82\n0xC97B\t0x5FC9\n0xC97C\t0x6209\n0xC97D\t0x6250\n0xC97E\t0x6C15\n0xC9A1\t0x6C36\n0xC9A2\t0x6C43\n0xC9A3\t0x6C3F\n0xC9A4\t0x6C3B\n0xC9A5\t0x72AE\n0xC9A6\t0x72B0\n0xC9A7\t0x738A\n0xC9A8\t0x79B8\n0xC9A9\t0x808A\n0xC9AA\t0x961E\n0xC9AB\t0x4F0E\n0xC9AC\t0x4F18\n0xC9AD\t0x4F2C\n0xC9AE\t0x4EF5\n0xC9AF\t0x4F14\n0xC9B0\t0x4EF1\n0xC9B1\t0x4F00\n0xC9B2\t0x4EF7\n0xC9B3\t0x4F08\n0xC9B4\t0x4F1D\n0xC9B5\t0x4F02\n0xC9B6\t0x4F05\n0xC9B7\t0x4F22\n0xC9B8\t0x4F13\n0xC9B9\t0x4F04\n0xC9BA\t0x4EF4\n0xC9BB\t0x4F12\n0xC9BC\t0x51B1\n0xC9BD\t0x5213\n0xC9BE\t0x5209\n0xC9BF\t0x5210\n0xC9C0\t0x52A6\n0xC9C1\t0x5322\n0xC9C2\t0x531F\n0xC9C3\t0x534D\n0xC9C4\t0x538A\n0xC9C5\t0x5407\n0xC9C6\t0x56E1\n0xC9C7\t0x56DF\n0xC9C8\t0x572E\n0xC9C9\t0x572A\n0xC9CA\t0x5734\n0xC9CB\t0x593C\n0xC9CC\t0x5980\n0xC9CD\t0x597C\n0xC9CE\t0x5985\n0xC9CF\t0x597B\n0xC9D0\t0x597E\n0xC9D1\t0x5977\n0xC9D2\t0x597F\n0xC9D3\t0x5B56\n0xC9D4\t0x5C15\n0xC9D5\t0x5C25\n0xC9D6\t0x5C7C\n0xC9D7\t0x5C7A\n0xC9D8\t0x5C7B\n0xC9D9\t0x5C7E\n0xC9DA\t0x5DDF\n0xC9DB\t0x5E75\n0xC9DC\t0x5E84\n0xC9DD\t0x5F02\n0xC9DE\t0x5F1A\n0xC9DF\t0x5F74\n0xC9E0\t0x5FD5\n0xC9E1\t0x5FD4\n0xC9E2\t0x5FCF\n0xC9E3\t0x625C\n0xC9E4\t0x625E\n0xC9E5\t0x6264\n0xC9E6\t0x6261\n0xC9E7\t0x6266\n0xC9E8\t0x6262\n0xC9E9\t0x6259\n0xC9EA\t0x6260\n0xC9EB\t0x625A\n0xC9EC\t0x6265\n0xC9ED\t0x65EF\n0xC9EE\t0x65EE\n0xC9EF\t0x673E\n0xC9F0\t0x6739\n0xC9F1\t0x6738\n0xC9F2\t0x673B\n0xC9F3\t0x673A\n0xC9F4\t0x673F\n0xC9F5\t0x673C\n0xC9F6\t0x6733\n0xC9F7\t0x6C18\n0xC9F8\t0x6C46\n0xC9F9\t0x6C52\n0xC9FA\t0x6C5C\n0xC9FB\t0x6C4F\n0xC9FC\t0x6C4A\n0xC9FD\t0x6C54\n0xC9FE\t0x6C4B\n0xCA40\t0x6C4C\n0xCA41\t0x7071\n0xCA42\t0x725E\n0xCA43\t0x72B4\n0xCA44\t0x72B5\n0xCA45\t0x738E\n0xCA46\t0x752A\n0xCA47\t0x767F\n0xCA48\t0x7A75\n0xCA49\t0x7F51\n0xCA4A\t0x8278\n0xCA4B\t0x827C\n0xCA4C\t0x8280\n0xCA4D\t0x827D\n0xCA4E\t0x827F\n0xCA4F\t0x864D\n0xCA50\t0x897E\n0xCA51\t0x9099\n0xCA52\t0x9097\n0xCA53\t0x9098\n0xCA54\t0x909B\n0xCA55\t0x9094\n0xCA56\t0x9622\n0xCA57\t0x9624\n0xCA58\t0x9620\n0xCA59\t0x9623\n0xCA5A\t0x4F56\n0xCA5B\t0x4F3B\n0xCA5C\t0x4F62\n0xCA5D\t0x4F49\n0xCA5E\t0x4F53\n0xCA5F\t0x4F64\n0xCA60\t0x4F3E\n0xCA61\t0x4F67\n0xCA62\t0x4F52\n0xCA63\t0x4F5F\n0xCA64\t0x4F41\n0xCA65\t0x4F58\n0xCA66\t0x4F2D\n0xCA67\t0x4F33\n0xCA68\t0x4F3F\n0xCA69\t0x4F61\n0xCA6A\t0x518F\n0xCA6B\t0x51B9\n0xCA6C\t0x521C\n0xCA6D\t0x521E\n0xCA6E\t0x5221\n0xCA6F\t0x52AD\n0xCA70\t0x52AE\n0xCA71\t0x5309\n0xCA72\t0x5363\n0xCA73\t0x5372\n0xCA74\t0x538E\n0xCA75\t0x538F\n0xCA76\t0x5430\n0xCA77\t0x5437\n0xCA78\t0x542A\n0xCA79\t0x5454\n0xCA7A\t0x5445\n0xCA7B\t0x5419\n0xCA7C\t0x541C\n0xCA7D\t0x5425\n0xCA7E\t0x5418\n0xCAA1\t0x543D\n0xCAA2\t0x544F\n0xCAA3\t0x5441\n0xCAA4\t0x5428\n0xCAA5\t0x5424\n0xCAA6\t0x5447\n0xCAA7\t0x56EE\n0xCAA8\t0x56E7\n0xCAA9\t0x56E5\n0xCAAA\t0x5741\n0xCAAB\t0x5745\n0xCAAC\t0x574C\n0xCAAD\t0x5749\n0xCAAE\t0x574B\n0xCAAF\t0x5752\n0xCAB0\t0x5906\n0xCAB1\t0x5940\n0xCAB2\t0x59A6\n0xCAB3\t0x5998\n0xCAB4\t0x59A0\n0xCAB5\t0x5997\n0xCAB6\t0x598E\n0xCAB7\t0x59A2\n0xCAB8\t0x5990\n0xCAB9\t0x598F\n0xCABA\t0x59A7\n0xCABB\t0x59A1\n0xCABC\t0x5B8E\n0xCABD\t0x5B92\n0xCABE\t0x5C28\n0xCABF\t0x5C2A\n0xCAC0\t0x5C8D\n0xCAC1\t0x5C8F\n0xCAC2\t0x5C88\n0xCAC3\t0x5C8B\n0xCAC4\t0x5C89\n0xCAC5\t0x5C92\n0xCAC6\t0x5C8A\n0xCAC7\t0x5C86\n0xCAC8\t0x5C93\n0xCAC9\t0x5C95\n0xCACA\t0x5DE0\n0xCACB\t0x5E0A\n0xCACC\t0x5E0E\n0xCACD\t0x5E8B\n0xCACE\t0x5E89\n0xCACF\t0x5E8C\n0xCAD0\t0x5E88\n0xCAD1\t0x5E8D\n0xCAD2\t0x5F05\n0xCAD3\t0x5F1D\n0xCAD4\t0x5F78\n0xCAD5\t0x5F76\n0xCAD6\t0x5FD2\n0xCAD7\t0x5FD1\n0xCAD8\t0x5FD0\n0xCAD9\t0x5FED\n0xCADA\t0x5FE8\n0xCADB\t0x5FEE\n0xCADC\t0x5FF3\n0xCADD\t0x5FE1\n0xCADE\t0x5FE4\n0xCADF\t0x5FE3\n0xCAE0\t0x5FFA\n0xCAE1\t0x5FEF\n0xCAE2\t0x5FF7\n0xCAE3\t0x5FFB\n0xCAE4\t0x6000\n0xCAE5\t0x5FF4\n0xCAE6\t0x623A\n0xCAE7\t0x6283\n0xCAE8\t0x628C\n0xCAE9\t0x628E\n0xCAEA\t0x628F\n0xCAEB\t0x6294\n0xCAEC\t0x6287\n0xCAED\t0x6271\n0xCAEE\t0x627B\n0xCAEF\t0x627A\n0xCAF0\t0x6270\n0xCAF1\t0x6281\n0xCAF2\t0x6288\n0xCAF3\t0x6277\n0xCAF4\t0x627D\n0xCAF5\t0x6272\n0xCAF6\t0x6274\n0xCAF7\t0x6537\n0xCAF8\t0x65F0\n0xCAF9\t0x65F4\n0xCAFA\t0x65F3\n0xCAFB\t0x65F2\n0xCAFC\t0x65F5\n0xCAFD\t0x6745\n0xCAFE\t0x6747\n0xCB40\t0x6759\n0xCB41\t0x6755\n0xCB42\t0x674C\n0xCB43\t0x6748\n0xCB44\t0x675D\n0xCB45\t0x674D\n0xCB46\t0x675A\n0xCB47\t0x674B\n0xCB48\t0x6BD0\n0xCB49\t0x6C19\n0xCB4A\t0x6C1A\n0xCB4B\t0x6C78\n0xCB4C\t0x6C67\n0xCB4D\t0x6C6B\n0xCB4E\t0x6C84\n0xCB4F\t0x6C8B\n0xCB50\t0x6C8F\n0xCB51\t0x6C71\n0xCB52\t0x6C6F\n0xCB53\t0x6C69\n0xCB54\t0x6C9A\n0xCB55\t0x6C6D\n0xCB56\t0x6C87\n0xCB57\t0x6C95\n0xCB58\t0x6C9C\n0xCB59\t0x6C66\n0xCB5A\t0x6C73\n0xCB5B\t0x6C65\n0xCB5C\t0x6C7B\n0xCB5D\t0x6C8E\n0xCB5E\t0x7074\n0xCB5F\t0x707A\n0xCB60\t0x7263\n0xCB61\t0x72BF\n0xCB62\t0x72BD\n0xCB63\t0x72C3\n0xCB64\t0x72C6\n0xCB65\t0x72C1\n0xCB66\t0x72BA\n0xCB67\t0x72C5\n0xCB68\t0x7395\n0xCB69\t0x7397\n0xCB6A\t0x7393\n0xCB6B\t0x7394\n0xCB6C\t0x7392\n0xCB6D\t0x753A\n0xCB6E\t0x7539\n0xCB6F\t0x7594\n0xCB70\t0x7595\n0xCB71\t0x7681\n0xCB72\t0x793D\n0xCB73\t0x8034\n0xCB74\t0x8095\n0xCB75\t0x8099\n0xCB76\t0x8090\n0xCB77\t0x8092\n0xCB78\t0x809C\n0xCB79\t0x8290\n0xCB7A\t0x828F\n0xCB7B\t0x8285\n0xCB7C\t0x828E\n0xCB7D\t0x8291\n0xCB7E\t0x8293\n0xCBA1\t0x828A\n0xCBA2\t0x8283\n0xCBA3\t0x8284\n0xCBA4\t0x8C78\n0xCBA5\t0x8FC9\n0xCBA6\t0x8FBF\n0xCBA7\t0x909F\n0xCBA8\t0x90A1\n0xCBA9\t0x90A5\n0xCBAA\t0x909E\n0xCBAB\t0x90A7\n0xCBAC\t0x90A0\n0xCBAD\t0x9630\n0xCBAE\t0x9628\n0xCBAF\t0x962F\n0xCBB0\t0x962D\n0xCBB1\t0x4E33\n0xCBB2\t0x4F98\n0xCBB3\t0x4F7C\n0xCBB4\t0x4F85\n0xCBB5\t0x4F7D\n0xCBB6\t0x4F80\n0xCBB7\t0x4F87\n0xCBB8\t0x4F76\n0xCBB9\t0x4F74\n0xCBBA\t0x4F89\n0xCBBB\t0x4F84\n0xCBBC\t0x4F77\n0xCBBD\t0x4F4C\n0xCBBE\t0x4F97\n0xCBBF\t0x4F6A\n0xCBC0\t0x4F9A\n0xCBC1\t0x4F79\n0xCBC2\t0x4F81\n0xCBC3\t0x4F78\n0xCBC4\t0x4F90\n0xCBC5\t0x4F9C\n0xCBC6\t0x4F94\n0xCBC7\t0x4F9E\n0xCBC8\t0x4F92\n0xCBC9\t0x4F82\n0xCBCA\t0x4F95\n0xCBCB\t0x4F6B\n0xCBCC\t0x4F6E\n0xCBCD\t0x519E\n0xCBCE\t0x51BC\n0xCBCF\t0x51BE\n0xCBD0\t0x5235\n0xCBD1\t0x5232\n0xCBD2\t0x5233\n0xCBD3\t0x5246\n0xCBD4\t0x5231\n0xCBD5\t0x52BC\n0xCBD6\t0x530A\n0xCBD7\t0x530B\n0xCBD8\t0x533C\n0xCBD9\t0x5392\n0xCBDA\t0x5394\n0xCBDB\t0x5487\n0xCBDC\t0x547F\n0xCBDD\t0x5481\n0xCBDE\t0x5491\n0xCBDF\t0x5482\n0xCBE0\t0x5488\n0xCBE1\t0x546B\n0xCBE2\t0x547A\n0xCBE3\t0x547E\n0xCBE4\t0x5465\n0xCBE5\t0x546C\n0xCBE6\t0x5474\n0xCBE7\t0x5466\n0xCBE8\t0x548D\n0xCBE9\t0x546F\n0xCBEA\t0x5461\n0xCBEB\t0x5460\n0xCBEC\t0x5498\n0xCBED\t0x5463\n0xCBEE\t0x5467\n0xCBEF\t0x5464\n0xCBF0\t0x56F7\n0xCBF1\t0x56F9\n0xCBF2\t0x576F\n0xCBF3\t0x5772\n0xCBF4\t0x576D\n0xCBF5\t0x576B\n0xCBF6\t0x5771\n0xCBF7\t0x5770\n0xCBF8\t0x5776\n0xCBF9\t0x5780\n0xCBFA\t0x5775\n0xCBFB\t0x577B\n0xCBFC\t0x5773\n0xCBFD\t0x5774\n0xCBFE\t0x5762\n0xCC40\t0x5768\n0xCC41\t0x577D\n0xCC42\t0x590C\n0xCC43\t0x5945\n0xCC44\t0x59B5\n0xCC45\t0x59BA\n0xCC46\t0x59CF\n0xCC47\t0x59CE\n0xCC48\t0x59B2\n0xCC49\t0x59CC\n0xCC4A\t0x59C1\n0xCC4B\t0x59B6\n0xCC4C\t0x59BC\n0xCC4D\t0x59C3\n0xCC4E\t0x59D6\n0xCC4F\t0x59B1\n0xCC50\t0x59BD\n0xCC51\t0x59C0\n0xCC52\t0x59C8\n0xCC53\t0x59B4\n0xCC54\t0x59C7\n0xCC55\t0x5B62\n0xCC56\t0x5B65\n0xCC57\t0x5B93\n0xCC58\t0x5B95\n0xCC59\t0x5C44\n0xCC5A\t0x5C47\n0xCC5B\t0x5CAE\n0xCC5C\t0x5CA4\n0xCC5D\t0x5CA0\n0xCC5E\t0x5CB5\n0xCC5F\t0x5CAF\n0xCC60\t0x5CA8\n0xCC61\t0x5CAC\n0xCC62\t0x5C9F\n0xCC63\t0x5CA3\n0xCC64\t0x5CAD\n0xCC65\t0x5CA2\n0xCC66\t0x5CAA\n0xCC67\t0x5CA7\n0xCC68\t0x5C9D\n0xCC69\t0x5CA5\n0xCC6A\t0x5CB6\n0xCC6B\t0x5CB0\n0xCC6C\t0x5CA6\n0xCC6D\t0x5E17\n0xCC6E\t0x5E14\n0xCC6F\t0x5E19\n0xCC70\t0x5F28\n0xCC71\t0x5F22\n0xCC72\t0x5F23\n0xCC73\t0x5F24\n0xCC74\t0x5F54\n0xCC75\t0x5F82\n0xCC76\t0x5F7E\n0xCC77\t0x5F7D\n0xCC78\t0x5FDE\n0xCC79\t0x5FE5\n0xCC7A\t0x602D\n0xCC7B\t0x6026\n0xCC7C\t0x6019\n0xCC7D\t0x6032\n0xCC7E\t0x600B\n0xCCA1\t0x6034\n0xCCA2\t0x600A\n0xCCA3\t0x6017\n0xCCA4\t0x6033\n0xCCA5\t0x601A\n0xCCA6\t0x601E\n0xCCA7\t0x602C\n0xCCA8\t0x6022\n0xCCA9\t0x600D\n0xCCAA\t0x6010\n0xCCAB\t0x602E\n0xCCAC\t0x6013\n0xCCAD\t0x6011\n0xCCAE\t0x600C\n0xCCAF\t0x6009\n0xCCB0\t0x601C\n0xCCB1\t0x6214\n0xCCB2\t0x623D\n0xCCB3\t0x62AD\n0xCCB4\t0x62B4\n0xCCB5\t0x62D1\n0xCCB6\t0x62BE\n0xCCB7\t0x62AA\n0xCCB8\t0x62B6\n0xCCB9\t0x62CA\n0xCCBA\t0x62AE\n0xCCBB\t0x62B3\n0xCCBC\t0x62AF\n0xCCBD\t0x62BB\n0xCCBE\t0x62A9\n0xCCBF\t0x62B0\n0xCCC0\t0x62B8\n0xCCC1\t0x653D\n0xCCC2\t0x65A8\n0xCCC3\t0x65BB\n0xCCC4\t0x6609\n0xCCC5\t0x65FC\n0xCCC6\t0x6604\n0xCCC7\t0x6612\n0xCCC8\t0x6608\n0xCCC9\t0x65FB\n0xCCCA\t0x6603\n0xCCCB\t0x660B\n0xCCCC\t0x660D\n0xCCCD\t0x6605\n0xCCCE\t0x65FD\n0xCCCF\t0x6611\n0xCCD0\t0x6610\n0xCCD1\t0x66F6\n0xCCD2\t0x670A\n0xCCD3\t0x6785\n0xCCD4\t0x676C\n0xCCD5\t0x678E\n0xCCD6\t0x6792\n0xCCD7\t0x6776\n0xCCD8\t0x677B\n0xCCD9\t0x6798\n0xCCDA\t0x6786\n0xCCDB\t0x6784\n0xCCDC\t0x6774\n0xCCDD\t0x678D\n0xCCDE\t0x678C\n0xCCDF\t0x677A\n0xCCE0\t0x679F\n0xCCE1\t0x6791\n0xCCE2\t0x6799\n0xCCE3\t0x6783\n0xCCE4\t0x677D\n0xCCE5\t0x6781\n0xCCE6\t0x6778\n0xCCE7\t0x6779\n0xCCE8\t0x6794\n0xCCE9\t0x6B25\n0xCCEA\t0x6B80\n0xCCEB\t0x6B7E\n0xCCEC\t0x6BDE\n0xCCED\t0x6C1D\n0xCCEE\t0x6C93\n0xCCEF\t0x6CEC\n0xCCF0\t0x6CEB\n0xCCF1\t0x6CEE\n0xCCF2\t0x6CD9\n0xCCF3\t0x6CB6\n0xCCF4\t0x6CD4\n0xCCF5\t0x6CAD\n0xCCF6\t0x6CE7\n0xCCF7\t0x6CB7\n0xCCF8\t0x6CD0\n0xCCF9\t0x6CC2\n0xCCFA\t0x6CBA\n0xCCFB\t0x6CC3\n0xCCFC\t0x6CC6\n0xCCFD\t0x6CED\n0xCCFE\t0x6CF2\n0xCD40\t0x6CD2\n0xCD41\t0x6CDD\n0xCD42\t0x6CB4\n0xCD43\t0x6C8A\n0xCD44\t0x6C9D\n0xCD45\t0x6C80\n0xCD46\t0x6CDE\n0xCD47\t0x6CC0\n0xCD48\t0x6D30\n0xCD49\t0x6CCD\n0xCD4A\t0x6CC7\n0xCD4B\t0x6CB0\n0xCD4C\t0x6CF9\n0xCD4D\t0x6CCF\n0xCD4E\t0x6CE9\n0xCD4F\t0x6CD1\n0xCD50\t0x7094\n0xCD51\t0x7098\n0xCD52\t0x7085\n0xCD53\t0x7093\n0xCD54\t0x7086\n0xCD55\t0x7084\n0xCD56\t0x7091\n0xCD57\t0x7096\n0xCD58\t0x7082\n0xCD59\t0x709A\n0xCD5A\t0x7083\n0xCD5B\t0x726A\n0xCD5C\t0x72D6\n0xCD5D\t0x72CB\n0xCD5E\t0x72D8\n0xCD5F\t0x72C9\n0xCD60\t0x72DC\n0xCD61\t0x72D2\n0xCD62\t0x72D4\n0xCD63\t0x72DA\n0xCD64\t0x72CC\n0xCD65\t0x72D1\n0xCD66\t0x73A4\n0xCD67\t0x73A1\n0xCD68\t0x73AD\n0xCD69\t0x73A6\n0xCD6A\t0x73A2\n0xCD6B\t0x73A0\n0xCD6C\t0x73AC\n0xCD6D\t0x739D\n0xCD6E\t0x74DD\n0xCD6F\t0x74E8\n0xCD70\t0x753F\n0xCD71\t0x7540\n0xCD72\t0x753E\n0xCD73\t0x758C\n0xCD74\t0x7598\n0xCD75\t0x76AF\n0xCD76\t0x76F3\n0xCD77\t0x76F1\n0xCD78\t0x76F0\n0xCD79\t0x76F5\n0xCD7A\t0x77F8\n0xCD7B\t0x77FC\n0xCD7C\t0x77F9\n0xCD7D\t0x77FB\n0xCD7E\t0x77FA\n0xCDA1\t0x77F7\n0xCDA2\t0x7942\n0xCDA3\t0x793F\n0xCDA4\t0x79C5\n0xCDA5\t0x7A78\n0xCDA6\t0x7A7B\n0xCDA7\t0x7AFB\n0xCDA8\t0x7C75\n0xCDA9\t0x7CFD\n0xCDAA\t0x8035\n0xCDAB\t0x808F\n0xCDAC\t0x80AE\n0xCDAD\t0x80A3\n0xCDAE\t0x80B8\n0xCDAF\t0x80B5\n0xCDB0\t0x80AD\n0xCDB1\t0x8220\n0xCDB2\t0x82A0\n0xCDB3\t0x82C0\n0xCDB4\t0x82AB\n0xCDB5\t0x829A\n0xCDB6\t0x8298\n0xCDB7\t0x829B\n0xCDB8\t0x82B5\n0xCDB9\t0x82A7\n0xCDBA\t0x82AE\n0xCDBB\t0x82BC\n0xCDBC\t0x829E\n0xCDBD\t0x82BA\n0xCDBE\t0x82B4\n0xCDBF\t0x82A8\n0xCDC0\t0x82A1\n0xCDC1\t0x82A9\n0xCDC2\t0x82C2\n0xCDC3\t0x82A4\n0xCDC4\t0x82C3\n0xCDC5\t0x82B6\n0xCDC6\t0x82A2\n0xCDC7\t0x8670\n0xCDC8\t0x866F\n0xCDC9\t0x866D\n0xCDCA\t0x866E\n0xCDCB\t0x8C56\n0xCDCC\t0x8FD2\n0xCDCD\t0x8FCB\n0xCDCE\t0x8FD3\n0xCDCF\t0x8FCD\n0xCDD0\t0x8FD6\n0xCDD1\t0x8FD5\n0xCDD2\t0x8FD7\n0xCDD3\t0x90B2\n0xCDD4\t0x90B4\n0xCDD5\t0x90AF\n0xCDD6\t0x90B3\n0xCDD7\t0x90B0\n0xCDD8\t0x9639\n0xCDD9\t0x963D\n0xCDDA\t0x963C\n0xCDDB\t0x963A\n0xCDDC\t0x9643\n0xCDDD\t0x4FCD\n0xCDDE\t0x4FC5\n0xCDDF\t0x4FD3\n0xCDE0\t0x4FB2\n0xCDE1\t0x4FC9\n0xCDE2\t0x4FCB\n0xCDE3\t0x4FC1\n0xCDE4\t0x4FD4\n0xCDE5\t0x4FDC\n0xCDE6\t0x4FD9\n0xCDE7\t0x4FBB\n0xCDE8\t0x4FB3\n0xCDE9\t0x4FDB\n0xCDEA\t0x4FC7\n0xCDEB\t0x4FD6\n0xCDEC\t0x4FBA\n0xCDED\t0x4FC0\n0xCDEE\t0x4FB9\n0xCDEF\t0x4FEC\n0xCDF0\t0x5244\n0xCDF1\t0x5249\n0xCDF2\t0x52C0\n0xCDF3\t0x52C2\n0xCDF4\t0x533D\n0xCDF5\t0x537C\n0xCDF6\t0x5397\n0xCDF7\t0x5396\n0xCDF8\t0x5399\n0xCDF9\t0x5398\n0xCDFA\t0x54BA\n0xCDFB\t0x54A1\n0xCDFC\t0x54AD\n0xCDFD\t0x54A5\n0xCDFE\t0x54CF\n0xCE40\t0x54C3\n0xCE41\t0x830D\n0xCE42\t0x54B7\n0xCE43\t0x54AE\n0xCE44\t0x54D6\n0xCE45\t0x54B6\n0xCE46\t0x54C5\n0xCE47\t0x54C6\n0xCE48\t0x54A0\n0xCE49\t0x5470\n0xCE4A\t0x54BC\n0xCE4B\t0x54A2\n0xCE4C\t0x54BE\n0xCE4D\t0x5472\n0xCE4E\t0x54DE\n0xCE4F\t0x54B0\n0xCE50\t0x57B5\n0xCE51\t0x579E\n0xCE52\t0x579F\n0xCE53\t0x57A4\n0xCE54\t0x578C\n0xCE55\t0x5797\n0xCE56\t0x579D\n0xCE57\t0x579B\n0xCE58\t0x5794\n0xCE59\t0x5798\n0xCE5A\t0x578F\n0xCE5B\t0x5799\n0xCE5C\t0x57A5\n0xCE5D\t0x579A\n0xCE5E\t0x5795\n0xCE5F\t0x58F4\n0xCE60\t0x590D\n0xCE61\t0x5953\n0xCE62\t0x59E1\n0xCE63\t0x59DE\n0xCE64\t0x59EE\n0xCE65\t0x5A00\n0xCE66\t0x59F1\n0xCE67\t0x59DD\n0xCE68\t0x59FA\n0xCE69\t0x59FD\n0xCE6A\t0x59FC\n0xCE6B\t0x59F6\n0xCE6C\t0x59E4\n0xCE6D\t0x59F2\n0xCE6E\t0x59F7\n0xCE6F\t0x59DB\n0xCE70\t0x59E9\n0xCE71\t0x59F3\n0xCE72\t0x59F5\n0xCE73\t0x59E0\n0xCE74\t0x59FE\n0xCE75\t0x59F4\n0xCE76\t0x59ED\n0xCE77\t0x5BA8\n0xCE78\t0x5C4C\n0xCE79\t0x5CD0\n0xCE7A\t0x5CD8\n0xCE7B\t0x5CCC\n0xCE7C\t0x5CD7\n0xCE7D\t0x5CCB\n0xCE7E\t0x5CDB\n0xCEA1\t0x5CDE\n0xCEA2\t0x5CDA\n0xCEA3\t0x5CC9\n0xCEA4\t0x5CC7\n0xCEA5\t0x5CCA\n0xCEA6\t0x5CD6\n0xCEA7\t0x5CD3\n0xCEA8\t0x5CD4\n0xCEA9\t0x5CCF\n0xCEAA\t0x5CC8\n0xCEAB\t0x5CC6\n0xCEAC\t0x5CCE\n0xCEAD\t0x5CDF\n0xCEAE\t0x5CF8\n0xCEAF\t0x5DF9\n0xCEB0\t0x5E21\n0xCEB1\t0x5E22\n0xCEB2\t0x5E23\n0xCEB3\t0x5E20\n0xCEB4\t0x5E24\n0xCEB5\t0x5EB0\n0xCEB6\t0x5EA4\n0xCEB7\t0x5EA2\n0xCEB8\t0x5E9B\n0xCEB9\t0x5EA3\n0xCEBA\t0x5EA5\n0xCEBB\t0x5F07\n0xCEBC\t0x5F2E\n0xCEBD\t0x5F56\n0xCEBE\t0x5F86\n0xCEBF\t0x6037\n0xCEC0\t0x6039\n0xCEC1\t0x6054\n0xCEC2\t0x6072\n0xCEC3\t0x605E\n0xCEC4\t0x6045\n0xCEC5\t0x6053\n0xCEC6\t0x6047\n0xCEC7\t0x6049\n0xCEC8\t0x605B\n0xCEC9\t0x604C\n0xCECA\t0x6040\n0xCECB\t0x6042\n0xCECC\t0x605F\n0xCECD\t0x6024\n0xCECE\t0x6044\n0xCECF\t0x6058\n0xCED0\t0x6066\n0xCED1\t0x606E\n0xCED2\t0x6242\n0xCED3\t0x6243\n0xCED4\t0x62CF\n0xCED5\t0x630D\n0xCED6\t0x630B\n0xCED7\t0x62F5\n0xCED8\t0x630E\n0xCED9\t0x6303\n0xCEDA\t0x62EB\n0xCEDB\t0x62F9\n0xCEDC\t0x630F\n0xCEDD\t0x630C\n0xCEDE\t0x62F8\n0xCEDF\t0x62F6\n0xCEE0\t0x6300\n0xCEE1\t0x6313\n0xCEE2\t0x6314\n0xCEE3\t0x62FA\n0xCEE4\t0x6315\n0xCEE5\t0x62FB\n0xCEE6\t0x62F0\n0xCEE7\t0x6541\n0xCEE8\t0x6543\n0xCEE9\t0x65AA\n0xCEEA\t0x65BF\n0xCEEB\t0x6636\n0xCEEC\t0x6621\n0xCEED\t0x6632\n0xCEEE\t0x6635\n0xCEEF\t0x661C\n0xCEF0\t0x6626\n0xCEF1\t0x6622\n0xCEF2\t0x6633\n0xCEF3\t0x662B\n0xCEF4\t0x663A\n0xCEF5\t0x661D\n0xCEF6\t0x6634\n0xCEF7\t0x6639\n0xCEF8\t0x662E\n0xCEF9\t0x670F\n0xCEFA\t0x6710\n0xCEFB\t0x67C1\n0xCEFC\t0x67F2\n0xCEFD\t0x67C8\n0xCEFE\t0x67BA\n0xCF40\t0x67DC\n0xCF41\t0x67BB\n0xCF42\t0x67F8\n0xCF43\t0x67D8\n0xCF44\t0x67C0\n0xCF45\t0x67B7\n0xCF46\t0x67C5\n0xCF47\t0x67EB\n0xCF48\t0x67E4\n0xCF49\t0x67DF\n0xCF4A\t0x67B5\n0xCF4B\t0x67CD\n0xCF4C\t0x67B3\n0xCF4D\t0x67F7\n0xCF4E\t0x67F6\n0xCF4F\t0x67EE\n0xCF50\t0x67E3\n0xCF51\t0x67C2\n0xCF52\t0x67B9\n0xCF53\t0x67CE\n0xCF54\t0x67E7\n0xCF55\t0x67F0\n0xCF56\t0x67B2\n0xCF57\t0x67FC\n0xCF58\t0x67C6\n0xCF59\t0x67ED\n0xCF5A\t0x67CC\n0xCF5B\t0x67AE\n0xCF5C\t0x67E6\n0xCF5D\t0x67DB\n0xCF5E\t0x67FA\n0xCF5F\t0x67C9\n0xCF60\t0x67CA\n0xCF61\t0x67C3\n0xCF62\t0x67EA\n0xCF63\t0x67CB\n0xCF64\t0x6B28\n0xCF65\t0x6B82\n0xCF66\t0x6B84\n0xCF67\t0x6BB6\n0xCF68\t0x6BD6\n0xCF69\t0x6BD8\n0xCF6A\t0x6BE0\n0xCF6B\t0x6C20\n0xCF6C\t0x6C21\n0xCF6D\t0x6D28\n0xCF6E\t0x6D34\n0xCF6F\t0x6D2D\n0xCF70\t0x6D1F\n0xCF71\t0x6D3C\n0xCF72\t0x6D3F\n0xCF73\t0x6D12\n0xCF74\t0x6D0A\n0xCF75\t0x6CDA\n0xCF76\t0x6D33\n0xCF77\t0x6D04\n0xCF78\t0x6D19\n0xCF79\t0x6D3A\n0xCF7A\t0x6D1A\n0xCF7B\t0x6D11\n0xCF7C\t0x6D00\n0xCF7D\t0x6D1D\n0xCF7E\t0x6D42\n0xCFA1\t0x6D01\n0xCFA2\t0x6D18\n0xCFA3\t0x6D37\n0xCFA4\t0x6D03\n0xCFA5\t0x6D0F\n0xCFA6\t0x6D40\n0xCFA7\t0x6D07\n0xCFA8\t0x6D20\n0xCFA9\t0x6D2C\n0xCFAA\t0x6D08\n0xCFAB\t0x6D22\n0xCFAC\t0x6D09\n0xCFAD\t0x6D10\n0xCFAE\t0x70B7\n0xCFAF\t0x709F\n0xCFB0\t0x70BE\n0xCFB1\t0x70B1\n0xCFB2\t0x70B0\n0xCFB3\t0x70A1\n0xCFB4\t0x70B4\n0xCFB5\t0x70B5\n0xCFB6\t0x70A9\n0xCFB7\t0x7241\n0xCFB8\t0x7249\n0xCFB9\t0x724A\n0xCFBA\t0x726C\n0xCFBB\t0x7270\n0xCFBC\t0x7273\n0xCFBD\t0x726E\n0xCFBE\t0x72CA\n0xCFBF\t0x72E4\n0xCFC0\t0x72E8\n0xCFC1\t0x72EB\n0xCFC2\t0x72DF\n0xCFC3\t0x72EA\n0xCFC4\t0x72E6\n0xCFC5\t0x72E3\n0xCFC6\t0x7385\n0xCFC7\t0x73CC\n0xCFC8\t0x73C2\n0xCFC9\t0x73C8\n0xCFCA\t0x73C5\n0xCFCB\t0x73B9\n0xCFCC\t0x73B6\n0xCFCD\t0x73B5\n0xCFCE\t0x73B4\n0xCFCF\t0x73EB\n0xCFD0\t0x73BF\n0xCFD1\t0x73C7\n0xCFD2\t0x73BE\n0xCFD3\t0x73C3\n0xCFD4\t0x73C6\n0xCFD5\t0x73B8\n0xCFD6\t0x73CB\n0xCFD7\t0x74EC\n0xCFD8\t0x74EE\n0xCFD9\t0x752E\n0xCFDA\t0x7547\n0xCFDB\t0x7548\n0xCFDC\t0x75A7\n0xCFDD\t0x75AA\n0xCFDE\t0x7679\n0xCFDF\t0x76C4\n0xCFE0\t0x7708\n0xCFE1\t0x7703\n0xCFE2\t0x7704\n0xCFE3\t0x7705\n0xCFE4\t0x770A\n0xCFE5\t0x76F7\n0xCFE6\t0x76FB\n0xCFE7\t0x76FA\n0xCFE8\t0x77E7\n0xCFE9\t0x77E8\n0xCFEA\t0x7806\n0xCFEB\t0x7811\n0xCFEC\t0x7812\n0xCFED\t0x7805\n0xCFEE\t0x7810\n0xCFEF\t0x780F\n0xCFF0\t0x780E\n0xCFF1\t0x7809\n0xCFF2\t0x7803\n0xCFF3\t0x7813\n0xCFF4\t0x794A\n0xCFF5\t0x794C\n0xCFF6\t0x794B\n0xCFF7\t0x7945\n0xCFF8\t0x7944\n0xCFF9\t0x79D5\n0xCFFA\t0x79CD\n0xCFFB\t0x79CF\n0xCFFC\t0x79D6\n0xCFFD\t0x79CE\n0xCFFE\t0x7A80\n0xD040\t0x7A7E\n0xD041\t0x7AD1\n0xD042\t0x7B00\n0xD043\t0x7B01\n0xD044\t0x7C7A\n0xD045\t0x7C78\n0xD046\t0x7C79\n0xD047\t0x7C7F\n0xD048\t0x7C80\n0xD049\t0x7C81\n0xD04A\t0x7D03\n0xD04B\t0x7D08\n0xD04C\t0x7D01\n0xD04D\t0x7F58\n0xD04E\t0x7F91\n0xD04F\t0x7F8D\n0xD050\t0x7FBE\n0xD051\t0x8007\n0xD052\t0x800E\n0xD053\t0x800F\n0xD054\t0x8014\n0xD055\t0x8037\n0xD056\t0x80D8\n0xD057\t0x80C7\n0xD058\t0x80E0\n0xD059\t0x80D1\n0xD05A\t0x80C8\n0xD05B\t0x80C2\n0xD05C\t0x80D0\n0xD05D\t0x80C5\n0xD05E\t0x80E3\n0xD05F\t0x80D9\n0xD060\t0x80DC\n0xD061\t0x80CA\n0xD062\t0x80D5\n0xD063\t0x80C9\n0xD064\t0x80CF\n0xD065\t0x80D7\n0xD066\t0x80E6\n0xD067\t0x80CD\n0xD068\t0x81FF\n0xD069\t0x8221\n0xD06A\t0x8294\n0xD06B\t0x82D9\n0xD06C\t0x82FE\n0xD06D\t0x82F9\n0xD06E\t0x8307\n0xD06F\t0x82E8\n0xD070\t0x8300\n0xD071\t0x82D5\n0xD072\t0x833A\n0xD073\t0x82EB\n0xD074\t0x82D6\n0xD075\t0x82F4\n0xD076\t0x82EC\n0xD077\t0x82E1\n0xD078\t0x82F2\n0xD079\t0x82F5\n0xD07A\t0x830C\n0xD07B\t0x82FB\n0xD07C\t0x82F6\n0xD07D\t0x82F0\n0xD07E\t0x82EA\n0xD0A1\t0x82E4\n0xD0A2\t0x82E0\n0xD0A3\t0x82FA\n0xD0A4\t0x82F3\n0xD0A5\t0x82ED\n0xD0A6\t0x8677\n0xD0A7\t0x8674\n0xD0A8\t0x867C\n0xD0A9\t0x8673\n0xD0AA\t0x8841\n0xD0AB\t0x884E\n0xD0AC\t0x8867\n0xD0AD\t0x886A\n0xD0AE\t0x8869\n0xD0AF\t0x89D3\n0xD0B0\t0x8A04\n0xD0B1\t0x8A07\n0xD0B2\t0x8D72\n0xD0B3\t0x8FE3\n0xD0B4\t0x8FE1\n0xD0B5\t0x8FEE\n0xD0B6\t0x8FE0\n0xD0B7\t0x90F1\n0xD0B8\t0x90BD\n0xD0B9\t0x90BF\n0xD0BA\t0x90D5\n0xD0BB\t0x90C5\n0xD0BC\t0x90BE\n0xD0BD\t0x90C7\n0xD0BE\t0x90CB\n0xD0BF\t0x90C8\n0xD0C0\t0x91D4\n0xD0C1\t0x91D3\n0xD0C2\t0x9654\n0xD0C3\t0x964F\n0xD0C4\t0x9651\n0xD0C5\t0x9653\n0xD0C6\t0x964A\n0xD0C7\t0x964E\n0xD0C8\t0x501E\n0xD0C9\t0x5005\n0xD0CA\t0x5007\n0xD0CB\t0x5013\n0xD0CC\t0x5022\n0xD0CD\t0x5030\n0xD0CE\t0x501B\n0xD0CF\t0x4FF5\n0xD0D0\t0x4FF4\n0xD0D1\t0x5033\n0xD0D2\t0x5037\n0xD0D3\t0x502C\n0xD0D4\t0x4FF6\n0xD0D5\t0x4FF7\n0xD0D6\t0x5017\n0xD0D7\t0x501C\n0xD0D8\t0x5020\n0xD0D9\t0x5027\n0xD0DA\t0x5035\n0xD0DB\t0x502F\n0xD0DC\t0x5031\n0xD0DD\t0x500E\n0xD0DE\t0x515A\n0xD0DF\t0x5194\n0xD0E0\t0x5193\n0xD0E1\t0x51CA\n0xD0E2\t0x51C4\n0xD0E3\t0x51C5\n0xD0E4\t0x51C8\n0xD0E5\t0x51CE\n0xD0E6\t0x5261\n0xD0E7\t0x525A\n0xD0E8\t0x5252\n0xD0E9\t0x525E\n0xD0EA\t0x525F\n0xD0EB\t0x5255\n0xD0EC\t0x5262\n0xD0ED\t0x52CD\n0xD0EE\t0x530E\n0xD0EF\t0x539E\n0xD0F0\t0x5526\n0xD0F1\t0x54E2\n0xD0F2\t0x5517\n0xD0F3\t0x5512\n0xD0F4\t0x54E7\n0xD0F5\t0x54F3\n0xD0F6\t0x54E4\n0xD0F7\t0x551A\n0xD0F8\t0x54FF\n0xD0F9\t0x5504\n0xD0FA\t0x5508\n0xD0FB\t0x54EB\n0xD0FC\t0x5511\n0xD0FD\t0x5505\n0xD0FE\t0x54F1\n0xD140\t0x550A\n0xD141\t0x54FB\n0xD142\t0x54F7\n0xD143\t0x54F8\n0xD144\t0x54E0\n0xD145\t0x550E\n0xD146\t0x5503\n0xD147\t0x550B\n0xD148\t0x5701\n0xD149\t0x5702\n0xD14A\t0x57CC\n0xD14B\t0x5832\n0xD14C\t0x57D5\n0xD14D\t0x57D2\n0xD14E\t0x57BA\n0xD14F\t0x57C6\n0xD150\t0x57BD\n0xD151\t0x57BC\n0xD152\t0x57B8\n0xD153\t0x57B6\n0xD154\t0x57BF\n0xD155\t0x57C7\n0xD156\t0x57D0\n0xD157\t0x57B9\n0xD158\t0x57C1\n0xD159\t0x590E\n0xD15A\t0x594A\n0xD15B\t0x5A19\n0xD15C\t0x5A16\n0xD15D\t0x5A2D\n0xD15E\t0x5A2E\n0xD15F\t0x5A15\n0xD160\t0x5A0F\n0xD161\t0x5A17\n0xD162\t0x5A0A\n0xD163\t0x5A1E\n0xD164\t0x5A33\n0xD165\t0x5B6C\n0xD166\t0x5BA7\n0xD167\t0x5BAD\n0xD168\t0x5BAC\n0xD169\t0x5C03\n0xD16A\t0x5C56\n0xD16B\t0x5C54\n0xD16C\t0x5CEC\n0xD16D\t0x5CFF\n0xD16E\t0x5CEE\n0xD16F\t0x5CF1\n0xD170\t0x5CF7\n0xD171\t0x5D00\n0xD172\t0x5CF9\n0xD173\t0x5E29\n0xD174\t0x5E28\n0xD175\t0x5EA8\n0xD176\t0x5EAE\n0xD177\t0x5EAA\n0xD178\t0x5EAC\n0xD179\t0x5F33\n0xD17A\t0x5F30\n0xD17B\t0x5F67\n0xD17C\t0x605D\n0xD17D\t0x605A\n0xD17E\t0x6067\n0xD1A1\t0x6041\n0xD1A2\t0x60A2\n0xD1A3\t0x6088\n0xD1A4\t0x6080\n0xD1A5\t0x6092\n0xD1A6\t0x6081\n0xD1A7\t0x609D\n0xD1A8\t0x6083\n0xD1A9\t0x6095\n0xD1AA\t0x609B\n0xD1AB\t0x6097\n0xD1AC\t0x6087\n0xD1AD\t0x609C\n0xD1AE\t0x608E\n0xD1AF\t0x6219\n0xD1B0\t0x6246\n0xD1B1\t0x62F2\n0xD1B2\t0x6310\n0xD1B3\t0x6356\n0xD1B4\t0x632C\n0xD1B5\t0x6344\n0xD1B6\t0x6345\n0xD1B7\t0x6336\n0xD1B8\t0x6343\n0xD1B9\t0x63E4\n0xD1BA\t0x6339\n0xD1BB\t0x634B\n0xD1BC\t0x634A\n0xD1BD\t0x633C\n0xD1BE\t0x6329\n0xD1BF\t0x6341\n0xD1C0\t0x6334\n0xD1C1\t0x6358\n0xD1C2\t0x6354\n0xD1C3\t0x6359\n0xD1C4\t0x632D\n0xD1C5\t0x6347\n0xD1C6\t0x6333\n0xD1C7\t0x635A\n0xD1C8\t0x6351\n0xD1C9\t0x6338\n0xD1CA\t0x6357\n0xD1CB\t0x6340\n0xD1CC\t0x6348\n0xD1CD\t0x654A\n0xD1CE\t0x6546\n0xD1CF\t0x65C6\n0xD1D0\t0x65C3\n0xD1D1\t0x65C4\n0xD1D2\t0x65C2\n0xD1D3\t0x664A\n0xD1D4\t0x665F\n0xD1D5\t0x6647\n0xD1D6\t0x6651\n0xD1D7\t0x6712\n0xD1D8\t0x6713\n0xD1D9\t0x681F\n0xD1DA\t0x681A\n0xD1DB\t0x6849\n0xD1DC\t0x6832\n0xD1DD\t0x6833\n0xD1DE\t0x683B\n0xD1DF\t0x684B\n0xD1E0\t0x684F\n0xD1E1\t0x6816\n0xD1E2\t0x6831\n0xD1E3\t0x681C\n0xD1E4\t0x6835\n0xD1E5\t0x682B\n0xD1E6\t0x682D\n0xD1E7\t0x682F\n0xD1E8\t0x684E\n0xD1E9\t0x6844\n0xD1EA\t0x6834\n0xD1EB\t0x681D\n0xD1EC\t0x6812\n0xD1ED\t0x6814\n0xD1EE\t0x6826\n0xD1EF\t0x6828\n0xD1F0\t0x682E\n0xD1F1\t0x684D\n0xD1F2\t0x683A\n0xD1F3\t0x6825\n0xD1F4\t0x6820\n0xD1F5\t0x6B2C\n0xD1F6\t0x6B2F\n0xD1F7\t0x6B2D\n0xD1F8\t0x6B31\n0xD1F9\t0x6B34\n0xD1FA\t0x6B6D\n0xD1FB\t0x8082\n0xD1FC\t0x6B88\n0xD1FD\t0x6BE6\n0xD1FE\t0x6BE4\n0xD240\t0x6BE8\n0xD241\t0x6BE3\n0xD242\t0x6BE2\n0xD243\t0x6BE7\n0xD244\t0x6C25\n0xD245\t0x6D7A\n0xD246\t0x6D63\n0xD247\t0x6D64\n0xD248\t0x6D76\n0xD249\t0x6D0D\n0xD24A\t0x6D61\n0xD24B\t0x6D92\n0xD24C\t0x6D58\n0xD24D\t0x6D62\n0xD24E\t0x6D6D\n0xD24F\t0x6D6F\n0xD250\t0x6D91\n0xD251\t0x6D8D\n0xD252\t0x6DEF\n0xD253\t0x6D7F\n0xD254\t0x6D86\n0xD255\t0x6D5E\n0xD256\t0x6D67\n0xD257\t0x6D60\n0xD258\t0x6D97\n0xD259\t0x6D70\n0xD25A\t0x6D7C\n0xD25B\t0x6D5F\n0xD25C\t0x6D82\n0xD25D\t0x6D98\n0xD25E\t0x6D2F\n0xD25F\t0x6D68\n0xD260\t0x6D8B\n0xD261\t0x6D7E\n0xD262\t0x6D80\n0xD263\t0x6D84\n0xD264\t0x6D16\n0xD265\t0x6D83\n0xD266\t0x6D7B\n0xD267\t0x6D7D\n0xD268\t0x6D75\n0xD269\t0x6D90\n0xD26A\t0x70DC\n0xD26B\t0x70D3\n0xD26C\t0x70D1\n0xD26D\t0x70DD\n0xD26E\t0x70CB\n0xD26F\t0x7F39\n0xD270\t0x70E2\n0xD271\t0x70D7\n0xD272\t0x70D2\n0xD273\t0x70DE\n0xD274\t0x70E0\n0xD275\t0x70D4\n0xD276\t0x70CD\n0xD277\t0x70C5\n0xD278\t0x70C6\n0xD279\t0x70C7\n0xD27A\t0x70DA\n0xD27B\t0x70CE\n0xD27C\t0x70E1\n0xD27D\t0x7242\n0xD27E\t0x7278\n0xD2A1\t0x7277\n0xD2A2\t0x7276\n0xD2A3\t0x7300\n0xD2A4\t0x72FA\n0xD2A5\t0x72F4\n0xD2A6\t0x72FE\n0xD2A7\t0x72F6\n0xD2A8\t0x72F3\n0xD2A9\t0x72FB\n0xD2AA\t0x7301\n0xD2AB\t0x73D3\n0xD2AC\t0x73D9\n0xD2AD\t0x73E5\n0xD2AE\t0x73D6\n0xD2AF\t0x73BC\n0xD2B0\t0x73E7\n0xD2B1\t0x73E3\n0xD2B2\t0x73E9\n0xD2B3\t0x73DC\n0xD2B4\t0x73D2\n0xD2B5\t0x73DB\n0xD2B6\t0x73D4\n0xD2B7\t0x73DD\n0xD2B8\t0x73DA\n0xD2B9\t0x73D7\n0xD2BA\t0x73D8\n0xD2BB\t0x73E8\n0xD2BC\t0x74DE\n0xD2BD\t0x74DF\n0xD2BE\t0x74F4\n0xD2BF\t0x74F5\n0xD2C0\t0x7521\n0xD2C1\t0x755B\n0xD2C2\t0x755F\n0xD2C3\t0x75B0\n0xD2C4\t0x75C1\n0xD2C5\t0x75BB\n0xD2C6\t0x75C4\n0xD2C7\t0x75C0\n0xD2C8\t0x75BF\n0xD2C9\t0x75B6\n0xD2CA\t0x75BA\n0xD2CB\t0x768A\n0xD2CC\t0x76C9\n0xD2CD\t0x771D\n0xD2CE\t0x771B\n0xD2CF\t0x7710\n0xD2D0\t0x7713\n0xD2D1\t0x7712\n0xD2D2\t0x7723\n0xD2D3\t0x7711\n0xD2D4\t0x7715\n0xD2D5\t0x7719\n0xD2D6\t0x771A\n0xD2D7\t0x7722\n0xD2D8\t0x7727\n0xD2D9\t0x7823\n0xD2DA\t0x782C\n0xD2DB\t0x7822\n0xD2DC\t0x7835\n0xD2DD\t0x782F\n0xD2DE\t0x7828\n0xD2DF\t0x782E\n0xD2E0\t0x782B\n0xD2E1\t0x7821\n0xD2E2\t0x7829\n0xD2E3\t0x7833\n0xD2E4\t0x782A\n0xD2E5\t0x7831\n0xD2E6\t0x7954\n0xD2E7\t0x795B\n0xD2E8\t0x794F\n0xD2E9\t0x795C\n0xD2EA\t0x7953\n0xD2EB\t0x7952\n0xD2EC\t0x7951\n0xD2ED\t0x79EB\n0xD2EE\t0x79EC\n0xD2EF\t0x79E0\n0xD2F0\t0x79EE\n0xD2F1\t0x79ED\n0xD2F2\t0x79EA\n0xD2F3\t0x79DC\n0xD2F4\t0x79DE\n0xD2F5\t0x79DD\n0xD2F6\t0x7A86\n0xD2F7\t0x7A89\n0xD2F8\t0x7A85\n0xD2F9\t0x7A8B\n0xD2FA\t0x7A8C\n0xD2FB\t0x7A8A\n0xD2FC\t0x7A87\n0xD2FD\t0x7AD8\n0xD2FE\t0x7B10\n0xD340\t0x7B04\n0xD341\t0x7B13\n0xD342\t0x7B05\n0xD343\t0x7B0F\n0xD344\t0x7B08\n0xD345\t0x7B0A\n0xD346\t0x7B0E\n0xD347\t0x7B09\n0xD348\t0x7B12\n0xD349\t0x7C84\n0xD34A\t0x7C91\n0xD34B\t0x7C8A\n0xD34C\t0x7C8C\n0xD34D\t0x7C88\n0xD34E\t0x7C8D\n0xD34F\t0x7C85\n0xD350\t0x7D1E\n0xD351\t0x7D1D\n0xD352\t0x7D11\n0xD353\t0x7D0E\n0xD354\t0x7D18\n0xD355\t0x7D16\n0xD356\t0x7D13\n0xD357\t0x7D1F\n0xD358\t0x7D12\n0xD359\t0x7D0F\n0xD35A\t0x7D0C\n0xD35B\t0x7F5C\n0xD35C\t0x7F61\n0xD35D\t0x7F5E\n0xD35E\t0x7F60\n0xD35F\t0x7F5D\n0xD360\t0x7F5B\n0xD361\t0x7F96\n0xD362\t0x7F92\n0xD363\t0x7FC3\n0xD364\t0x7FC2\n0xD365\t0x7FC0\n0xD366\t0x8016\n0xD367\t0x803E\n0xD368\t0x8039\n0xD369\t0x80FA\n0xD36A\t0x80F2\n0xD36B\t0x80F9\n0xD36C\t0x80F5\n0xD36D\t0x8101\n0xD36E\t0x80FB\n0xD36F\t0x8100\n0xD370\t0x8201\n0xD371\t0x822F\n0xD372\t0x8225\n0xD373\t0x8333\n0xD374\t0x832D\n0xD375\t0x8344\n0xD376\t0x8319\n0xD377\t0x8351\n0xD378\t0x8325\n0xD379\t0x8356\n0xD37A\t0x833F\n0xD37B\t0x8341\n0xD37C\t0x8326\n0xD37D\t0x831C\n0xD37E\t0x8322\n0xD3A1\t0x8342\n0xD3A2\t0x834E\n0xD3A3\t0x831B\n0xD3A4\t0x832A\n0xD3A5\t0x8308\n0xD3A6\t0x833C\n0xD3A7\t0x834D\n0xD3A8\t0x8316\n0xD3A9\t0x8324\n0xD3AA\t0x8320\n0xD3AB\t0x8337\n0xD3AC\t0x832F\n0xD3AD\t0x8329\n0xD3AE\t0x8347\n0xD3AF\t0x8345\n0xD3B0\t0x834C\n0xD3B1\t0x8353\n0xD3B2\t0x831E\n0xD3B3\t0x832C\n0xD3B4\t0x834B\n0xD3B5\t0x8327\n0xD3B6\t0x8348\n0xD3B7\t0x8653\n0xD3B8\t0x8652\n0xD3B9\t0x86A2\n0xD3BA\t0x86A8\n0xD3BB\t0x8696\n0xD3BC\t0x868D\n0xD3BD\t0x8691\n0xD3BE\t0x869E\n0xD3BF\t0x8687\n0xD3C0\t0x8697\n0xD3C1\t0x8686\n0xD3C2\t0x868B\n0xD3C3\t0x869A\n0xD3C4\t0x8685\n0xD3C5\t0x86A5\n0xD3C6\t0x8699\n0xD3C7\t0x86A1\n0xD3C8\t0x86A7\n0xD3C9\t0x8695\n0xD3CA\t0x8698\n0xD3CB\t0x868E\n0xD3CC\t0x869D\n0xD3CD\t0x8690\n0xD3CE\t0x8694\n0xD3CF\t0x8843\n0xD3D0\t0x8844\n0xD3D1\t0x886D\n0xD3D2\t0x8875\n0xD3D3\t0x8876\n0xD3D4\t0x8872\n0xD3D5\t0x8880\n0xD3D6\t0x8871\n0xD3D7\t0x887F\n0xD3D8\t0x886F\n0xD3D9\t0x8883\n0xD3DA\t0x887E\n0xD3DB\t0x8874\n0xD3DC\t0x887C\n0xD3DD\t0x8A12\n0xD3DE\t0x8C47\n0xD3DF\t0x8C57\n0xD3E0\t0x8C7B\n0xD3E1\t0x8CA4\n0xD3E2\t0x8CA3\n0xD3E3\t0x8D76\n0xD3E4\t0x8D78\n0xD3E5\t0x8DB5\n0xD3E6\t0x8DB7\n0xD3E7\t0x8DB6\n0xD3E8\t0x8ED1\n0xD3E9\t0x8ED3\n0xD3EA\t0x8FFE\n0xD3EB\t0x8FF5\n0xD3EC\t0x9002\n0xD3ED\t0x8FFF\n0xD3EE\t0x8FFB\n0xD3EF\t0x9004\n0xD3F0\t0x8FFC\n0xD3F1\t0x8FF6\n0xD3F2\t0x90D6\n0xD3F3\t0x90E0\n0xD3F4\t0x90D9\n0xD3F5\t0x90DA\n0xD3F6\t0x90E3\n0xD3F7\t0x90DF\n0xD3F8\t0x90E5\n0xD3F9\t0x90D8\n0xD3FA\t0x90DB\n0xD3FB\t0x90D7\n0xD3FC\t0x90DC\n0xD3FD\t0x90E4\n0xD3FE\t0x9150\n0xD440\t0x914E\n0xD441\t0x914F\n0xD442\t0x91D5\n0xD443\t0x91E2\n0xD444\t0x91DA\n0xD445\t0x965C\n0xD446\t0x965F\n0xD447\t0x96BC\n0xD448\t0x98E3\n0xD449\t0x9ADF\n0xD44A\t0x9B2F\n0xD44B\t0x4E7F\n0xD44C\t0x5070\n0xD44D\t0x506A\n0xD44E\t0x5061\n0xD44F\t0x505E\n0xD450\t0x5060\n0xD451\t0x5053\n0xD452\t0x504B\n0xD453\t0x505D\n0xD454\t0x5072\n0xD455\t0x5048\n0xD456\t0x504D\n0xD457\t0x5041\n0xD458\t0x505B\n0xD459\t0x504A\n0xD45A\t0x5062\n0xD45B\t0x5015\n0xD45C\t0x5045\n0xD45D\t0x505F\n0xD45E\t0x5069\n0xD45F\t0x506B\n0xD460\t0x5063\n0xD461\t0x5064\n0xD462\t0x5046\n0xD463\t0x5040\n0xD464\t0x506E\n0xD465\t0x5073\n0xD466\t0x5057\n0xD467\t0x5051\n0xD468\t0x51D0\n0xD469\t0x526B\n0xD46A\t0x526D\n0xD46B\t0x526C\n0xD46C\t0x526E\n0xD46D\t0x52D6\n0xD46E\t0x52D3\n0xD46F\t0x532D\n0xD470\t0x539C\n0xD471\t0x5575\n0xD472\t0x5576\n0xD473\t0x553C\n0xD474\t0x554D\n0xD475\t0x5550\n0xD476\t0x5534\n0xD477\t0x552A\n0xD478\t0x5551\n0xD479\t0x5562\n0xD47A\t0x5536\n0xD47B\t0x5535\n0xD47C\t0x5530\n0xD47D\t0x5552\n0xD47E\t0x5545\n0xD4A1\t0x550C\n0xD4A2\t0x5532\n0xD4A3\t0x5565\n0xD4A4\t0x554E\n0xD4A5\t0x5539\n0xD4A6\t0x5548\n0xD4A7\t0x552D\n0xD4A8\t0x553B\n0xD4A9\t0x5540\n0xD4AA\t0x554B\n0xD4AB\t0x570A\n0xD4AC\t0x5707\n0xD4AD\t0x57FB\n0xD4AE\t0x5814\n0xD4AF\t0x57E2\n0xD4B0\t0x57F6\n0xD4B1\t0x57DC\n0xD4B2\t0x57F4\n0xD4B3\t0x5800\n0xD4B4\t0x57ED\n0xD4B5\t0x57FD\n0xD4B6\t0x5808\n0xD4B7\t0x57F8\n0xD4B8\t0x580B\n0xD4B9\t0x57F3\n0xD4BA\t0x57CF\n0xD4BB\t0x5807\n0xD4BC\t0x57EE\n0xD4BD\t0x57E3\n0xD4BE\t0x57F2\n0xD4BF\t0x57E5\n0xD4C0\t0x57EC\n0xD4C1\t0x57E1\n0xD4C2\t0x580E\n0xD4C3\t0x57FC\n0xD4C4\t0x5810\n0xD4C5\t0x57E7\n0xD4C6\t0x5801\n0xD4C7\t0x580C\n0xD4C8\t0x57F1\n0xD4C9\t0x57E9\n0xD4CA\t0x57F0\n0xD4CB\t0x580D\n0xD4CC\t0x5804\n0xD4CD\t0x595C\n0xD4CE\t0x5A60\n0xD4CF\t0x5A58\n0xD4D0\t0x5A55\n0xD4D1\t0x5A67\n0xD4D2\t0x5A5E\n0xD4D3\t0x5A38\n0xD4D4\t0x5A35\n0xD4D5\t0x5A6D\n0xD4D6\t0x5A50\n0xD4D7\t0x5A5F\n0xD4D8\t0x5A65\n0xD4D9\t0x5A6C\n0xD4DA\t0x5A53\n0xD4DB\t0x5A64\n0xD4DC\t0x5A57\n0xD4DD\t0x5A43\n0xD4DE\t0x5A5D\n0xD4DF\t0x5A52\n0xD4E0\t0x5A44\n0xD4E1\t0x5A5B\n0xD4E2\t0x5A48\n0xD4E3\t0x5A8E\n0xD4E4\t0x5A3E\n0xD4E5\t0x5A4D\n0xD4E6\t0x5A39\n0xD4E7\t0x5A4C\n0xD4E8\t0x5A70\n0xD4E9\t0x5A69\n0xD4EA\t0x5A47\n0xD4EB\t0x5A51\n0xD4EC\t0x5A56\n0xD4ED\t0x5A42\n0xD4EE\t0x5A5C\n0xD4EF\t0x5B72\n0xD4F0\t0x5B6E\n0xD4F1\t0x5BC1\n0xD4F2\t0x5BC0\n0xD4F3\t0x5C59\n0xD4F4\t0x5D1E\n0xD4F5\t0x5D0B\n0xD4F6\t0x5D1D\n0xD4F7\t0x5D1A\n0xD4F8\t0x5D20\n0xD4F9\t0x5D0C\n0xD4FA\t0x5D28\n0xD4FB\t0x5D0D\n0xD4FC\t0x5D26\n0xD4FD\t0x5D25\n0xD4FE\t0x5D0F\n0xD540\t0x5D30\n0xD541\t0x5D12\n0xD542\t0x5D23\n0xD543\t0x5D1F\n0xD544\t0x5D2E\n0xD545\t0x5E3E\n0xD546\t0x5E34\n0xD547\t0x5EB1\n0xD548\t0x5EB4\n0xD549\t0x5EB9\n0xD54A\t0x5EB2\n0xD54B\t0x5EB3\n0xD54C\t0x5F36\n0xD54D\t0x5F38\n0xD54E\t0x5F9B\n0xD54F\t0x5F96\n0xD550\t0x5F9F\n0xD551\t0x608A\n0xD552\t0x6090\n0xD553\t0x6086\n0xD554\t0x60BE\n0xD555\t0x60B0\n0xD556\t0x60BA\n0xD557\t0x60D3\n0xD558\t0x60D4\n0xD559\t0x60CF\n0xD55A\t0x60E4\n0xD55B\t0x60D9\n0xD55C\t0x60DD\n0xD55D\t0x60C8\n0xD55E\t0x60B1\n0xD55F\t0x60DB\n0xD560\t0x60B7\n0xD561\t0x60CA\n0xD562\t0x60BF\n0xD563\t0x60C3\n0xD564\t0x60CD\n0xD565\t0x60C0\n0xD566\t0x6332\n0xD567\t0x6365\n0xD568\t0x638A\n0xD569\t0x6382\n0xD56A\t0x637D\n0xD56B\t0x63BD\n0xD56C\t0x639E\n0xD56D\t0x63AD\n0xD56E\t0x639D\n0xD56F\t0x6397\n0xD570\t0x63AB\n0xD571\t0x638E\n0xD572\t0x636F\n0xD573\t0x6387\n0xD574\t0x6390\n0xD575\t0x636E\n0xD576\t0x63AF\n0xD577\t0x6375\n0xD578\t0x639C\n0xD579\t0x636D\n0xD57A\t0x63AE\n0xD57B\t0x637C\n0xD57C\t0x63A4\n0xD57D\t0x633B\n0xD57E\t0x639F\n0xD5A1\t0x6378\n0xD5A2\t0x6385\n0xD5A3\t0x6381\n0xD5A4\t0x6391\n0xD5A5\t0x638D\n0xD5A6\t0x6370\n0xD5A7\t0x6553\n0xD5A8\t0x65CD\n0xD5A9\t0x6665\n0xD5AA\t0x6661\n0xD5AB\t0x665B\n0xD5AC\t0x6659\n0xD5AD\t0x665C\n0xD5AE\t0x6662\n0xD5AF\t0x6718\n0xD5B0\t0x6879\n0xD5B1\t0x6887\n0xD5B2\t0x6890\n0xD5B3\t0x689C\n0xD5B4\t0x686D\n0xD5B5\t0x686E\n0xD5B6\t0x68AE\n0xD5B7\t0x68AB\n0xD5B8\t0x6956\n0xD5B9\t0x686F\n0xD5BA\t0x68A3\n0xD5BB\t0x68AC\n0xD5BC\t0x68A9\n0xD5BD\t0x6875\n0xD5BE\t0x6874\n0xD5BF\t0x68B2\n0xD5C0\t0x688F\n0xD5C1\t0x6877\n0xD5C2\t0x6892\n0xD5C3\t0x687C\n0xD5C4\t0x686B\n0xD5C5\t0x6872\n0xD5C6\t0x68AA\n0xD5C7\t0x6880\n0xD5C8\t0x6871\n0xD5C9\t0x687E\n0xD5CA\t0x689B\n0xD5CB\t0x6896\n0xD5CC\t0x688B\n0xD5CD\t0x68A0\n0xD5CE\t0x6889\n0xD5CF\t0x68A4\n0xD5D0\t0x6878\n0xD5D1\t0x687B\n0xD5D2\t0x6891\n0xD5D3\t0x688C\n0xD5D4\t0x688A\n0xD5D5\t0x687D\n0xD5D6\t0x6B36\n0xD5D7\t0x6B33\n0xD5D8\t0x6B37\n0xD5D9\t0x6B38\n0xD5DA\t0x6B91\n0xD5DB\t0x6B8F\n0xD5DC\t0x6B8D\n0xD5DD\t0x6B8E\n0xD5DE\t0x6B8C\n0xD5DF\t0x6C2A\n0xD5E0\t0x6DC0\n0xD5E1\t0x6DAB\n0xD5E2\t0x6DB4\n0xD5E3\t0x6DB3\n0xD5E4\t0x6E74\n0xD5E5\t0x6DAC\n0xD5E6\t0x6DE9\n0xD5E7\t0x6DE2\n0xD5E8\t0x6DB7\n0xD5E9\t0x6DF6\n0xD5EA\t0x6DD4\n0xD5EB\t0x6E00\n0xD5EC\t0x6DC8\n0xD5ED\t0x6DE0\n0xD5EE\t0x6DDF\n0xD5EF\t0x6DD6\n0xD5F0\t0x6DBE\n0xD5F1\t0x6DE5\n0xD5F2\t0x6DDC\n0xD5F3\t0x6DDD\n0xD5F4\t0x6DDB\n0xD5F5\t0x6DF4\n0xD5F6\t0x6DCA\n0xD5F7\t0x6DBD\n0xD5F8\t0x6DED\n0xD5F9\t0x6DF0\n0xD5FA\t0x6DBA\n0xD5FB\t0x6DD5\n0xD5FC\t0x6DC2\n0xD5FD\t0x6DCF\n0xD5FE\t0x6DC9\n0xD640\t0x6DD0\n0xD641\t0x6DF2\n0xD642\t0x6DD3\n0xD643\t0x6DFD\n0xD644\t0x6DD7\n0xD645\t0x6DCD\n0xD646\t0x6DE3\n0xD647\t0x6DBB\n0xD648\t0x70FA\n0xD649\t0x710D\n0xD64A\t0x70F7\n0xD64B\t0x7117\n0xD64C\t0x70F4\n0xD64D\t0x710C\n0xD64E\t0x70F0\n0xD64F\t0x7104\n0xD650\t0x70F3\n0xD651\t0x7110\n0xD652\t0x70FC\n0xD653\t0x70FF\n0xD654\t0x7106\n0xD655\t0x7113\n0xD656\t0x7100\n0xD657\t0x70F8\n0xD658\t0x70F6\n0xD659\t0x710B\n0xD65A\t0x7102\n0xD65B\t0x710E\n0xD65C\t0x727E\n0xD65D\t0x727B\n0xD65E\t0x727C\n0xD65F\t0x727F\n0xD660\t0x731D\n0xD661\t0x7317\n0xD662\t0x7307\n0xD663\t0x7311\n0xD664\t0x7318\n0xD665\t0x730A\n0xD666\t0x7308\n0xD667\t0x72FF\n0xD668\t0x730F\n0xD669\t0x731E\n0xD66A\t0x7388\n0xD66B\t0x73F6\n0xD66C\t0x73F8\n0xD66D\t0x73F5\n0xD66E\t0x7404\n0xD66F\t0x7401\n0xD670\t0x73FD\n0xD671\t0x7407\n0xD672\t0x7400\n0xD673\t0x73FA\n0xD674\t0x73FC\n0xD675\t0x73FF\n0xD676\t0x740C\n0xD677\t0x740B\n0xD678\t0x73F4\n0xD679\t0x7408\n0xD67A\t0x7564\n0xD67B\t0x7563\n0xD67C\t0x75CE\n0xD67D\t0x75D2\n0xD67E\t0x75CF\n0xD6A1\t0x75CB\n0xD6A2\t0x75CC\n0xD6A3\t0x75D1\n0xD6A4\t0x75D0\n0xD6A5\t0x768F\n0xD6A6\t0x7689\n0xD6A7\t0x76D3\n0xD6A8\t0x7739\n0xD6A9\t0x772F\n0xD6AA\t0x772D\n0xD6AB\t0x7731\n0xD6AC\t0x7732\n0xD6AD\t0x7734\n0xD6AE\t0x7733\n0xD6AF\t0x773D\n0xD6B0\t0x7725\n0xD6B1\t0x773B\n0xD6B2\t0x7735\n0xD6B3\t0x7848\n0xD6B4\t0x7852\n0xD6B5\t0x7849\n0xD6B6\t0x784D\n0xD6B7\t0x784A\n0xD6B8\t0x784C\n0xD6B9\t0x7826\n0xD6BA\t0x7845\n0xD6BB\t0x7850\n0xD6BC\t0x7964\n0xD6BD\t0x7967\n0xD6BE\t0x7969\n0xD6BF\t0x796A\n0xD6C0\t0x7963\n0xD6C1\t0x796B\n0xD6C2\t0x7961\n0xD6C3\t0x79BB\n0xD6C4\t0x79FA\n0xD6C5\t0x79F8\n0xD6C6\t0x79F6\n0xD6C7\t0x79F7\n0xD6C8\t0x7A8F\n0xD6C9\t0x7A94\n0xD6CA\t0x7A90\n0xD6CB\t0x7B35\n0xD6CC\t0x7B47\n0xD6CD\t0x7B34\n0xD6CE\t0x7B25\n0xD6CF\t0x7B30\n0xD6D0\t0x7B22\n0xD6D1\t0x7B24\n0xD6D2\t0x7B33\n0xD6D3\t0x7B18\n0xD6D4\t0x7B2A\n0xD6D5\t0x7B1D\n0xD6D6\t0x7B31\n0xD6D7\t0x7B2B\n0xD6D8\t0x7B2D\n0xD6D9\t0x7B2F\n0xD6DA\t0x7B32\n0xD6DB\t0x7B38\n0xD6DC\t0x7B1A\n0xD6DD\t0x7B23\n0xD6DE\t0x7C94\n0xD6DF\t0x7C98\n0xD6E0\t0x7C96\n0xD6E1\t0x7CA3\n0xD6E2\t0x7D35\n0xD6E3\t0x7D3D\n0xD6E4\t0x7D38\n0xD6E5\t0x7D36\n0xD6E6\t0x7D3A\n0xD6E7\t0x7D45\n0xD6E8\t0x7D2C\n0xD6E9\t0x7D29\n0xD6EA\t0x7D41\n0xD6EB\t0x7D47\n0xD6EC\t0x7D3E\n0xD6ED\t0x7D3F\n0xD6EE\t0x7D4A\n0xD6EF\t0x7D3B\n0xD6F0\t0x7D28\n0xD6F1\t0x7F63\n0xD6F2\t0x7F95\n0xD6F3\t0x7F9C\n0xD6F4\t0x7F9D\n0xD6F5\t0x7F9B\n0xD6F6\t0x7FCA\n0xD6F7\t0x7FCB\n0xD6F8\t0x7FCD\n0xD6F9\t0x7FD0\n0xD6FA\t0x7FD1\n0xD6FB\t0x7FC7\n0xD6FC\t0x7FCF\n0xD6FD\t0x7FC9\n0xD6FE\t0x801F\n0xD740\t0x801E\n0xD741\t0x801B\n0xD742\t0x8047\n0xD743\t0x8043\n0xD744\t0x8048\n0xD745\t0x8118\n0xD746\t0x8125\n0xD747\t0x8119\n0xD748\t0x811B\n0xD749\t0x812D\n0xD74A\t0x811F\n0xD74B\t0x812C\n0xD74C\t0x811E\n0xD74D\t0x8121\n0xD74E\t0x8115\n0xD74F\t0x8127\n0xD750\t0x811D\n0xD751\t0x8122\n0xD752\t0x8211\n0xD753\t0x8238\n0xD754\t0x8233\n0xD755\t0x823A\n0xD756\t0x8234\n0xD757\t0x8232\n0xD758\t0x8274\n0xD759\t0x8390\n0xD75A\t0x83A3\n0xD75B\t0x83A8\n0xD75C\t0x838D\n0xD75D\t0x837A\n0xD75E\t0x8373\n0xD75F\t0x83A4\n0xD760\t0x8374\n0xD761\t0x838F\n0xD762\t0x8381\n0xD763\t0x8395\n0xD764\t0x8399\n0xD765\t0x8375\n0xD766\t0x8394\n0xD767\t0x83A9\n0xD768\t0x837D\n0xD769\t0x8383\n0xD76A\t0x838C\n0xD76B\t0x839D\n0xD76C\t0x839B\n0xD76D\t0x83AA\n0xD76E\t0x838B\n0xD76F\t0x837E\n0xD770\t0x83A5\n0xD771\t0x83AF\n0xD772\t0x8388\n0xD773\t0x8397\n0xD774\t0x83B0\n0xD775\t0x837F\n0xD776\t0x83A6\n0xD777\t0x8387\n0xD778\t0x83AE\n0xD779\t0x8376\n0xD77A\t0x839A\n0xD77B\t0x8659\n0xD77C\t0x8656\n0xD77D\t0x86BF\n0xD77E\t0x86B7\n0xD7A1\t0x86C2\n0xD7A2\t0x86C1\n0xD7A3\t0x86C5\n0xD7A4\t0x86BA\n0xD7A5\t0x86B0\n0xD7A6\t0x86C8\n0xD7A7\t0x86B9\n0xD7A8\t0x86B3\n0xD7A9\t0x86B8\n0xD7AA\t0x86CC\n0xD7AB\t0x86B4\n0xD7AC\t0x86BB\n0xD7AD\t0x86BC\n0xD7AE\t0x86C3\n0xD7AF\t0x86BD\n0xD7B0\t0x86BE\n0xD7B1\t0x8852\n0xD7B2\t0x8889\n0xD7B3\t0x8895\n0xD7B4\t0x88A8\n0xD7B5\t0x88A2\n0xD7B6\t0x88AA\n0xD7B7\t0x889A\n0xD7B8\t0x8891\n0xD7B9\t0x88A1\n0xD7BA\t0x889F\n0xD7BB\t0x8898\n0xD7BC\t0x88A7\n0xD7BD\t0x8899\n0xD7BE\t0x889B\n0xD7BF\t0x8897\n0xD7C0\t0x88A4\n0xD7C1\t0x88AC\n0xD7C2\t0x888C\n0xD7C3\t0x8893\n0xD7C4\t0x888E\n0xD7C5\t0x8982\n0xD7C6\t0x89D6\n0xD7C7\t0x89D9\n0xD7C8\t0x89D5\n0xD7C9\t0x8A30\n0xD7CA\t0x8A27\n0xD7CB\t0x8A2C\n0xD7CC\t0x8A1E\n0xD7CD\t0x8C39\n0xD7CE\t0x8C3B\n0xD7CF\t0x8C5C\n0xD7D0\t0x8C5D\n0xD7D1\t0x8C7D\n0xD7D2\t0x8CA5\n0xD7D3\t0x8D7D\n0xD7D4\t0x8D7B\n0xD7D5\t0x8D79\n0xD7D6\t0x8DBC\n0xD7D7\t0x8DC2\n0xD7D8\t0x8DB9\n0xD7D9\t0x8DBF\n0xD7DA\t0x8DC1\n0xD7DB\t0x8ED8\n0xD7DC\t0x8EDE\n0xD7DD\t0x8EDD\n0xD7DE\t0x8EDC\n0xD7DF\t0x8ED7\n0xD7E0\t0x8EE0\n0xD7E1\t0x8EE1\n0xD7E2\t0x9024\n0xD7E3\t0x900B\n0xD7E4\t0x9011\n0xD7E5\t0x901C\n0xD7E6\t0x900C\n0xD7E7\t0x9021\n0xD7E8\t0x90EF\n0xD7E9\t0x90EA\n0xD7EA\t0x90F0\n0xD7EB\t0x90F4\n0xD7EC\t0x90F2\n0xD7ED\t0x90F3\n0xD7EE\t0x90D4\n0xD7EF\t0x90EB\n0xD7F0\t0x90EC\n0xD7F1\t0x90E9\n0xD7F2\t0x9156\n0xD7F3\t0x9158\n0xD7F4\t0x915A\n0xD7F5\t0x9153\n0xD7F6\t0x9155\n0xD7F7\t0x91EC\n0xD7F8\t0x91F4\n0xD7F9\t0x91F1\n0xD7FA\t0x91F3\n0xD7FB\t0x91F8\n0xD7FC\t0x91E4\n0xD7FD\t0x91F9\n0xD7FE\t0x91EA\n0xD840\t0x91EB\n0xD841\t0x91F7\n0xD842\t0x91E8\n0xD843\t0x91EE\n0xD844\t0x957A\n0xD845\t0x9586\n0xD846\t0x9588\n0xD847\t0x967C\n0xD848\t0x966D\n0xD849\t0x966B\n0xD84A\t0x9671\n0xD84B\t0x966F\n0xD84C\t0x96BF\n0xD84D\t0x976A\n0xD84E\t0x9804\n0xD84F\t0x98E5\n0xD850\t0x9997\n0xD851\t0x509B\n0xD852\t0x5095\n0xD853\t0x5094\n0xD854\t0x509E\n0xD855\t0x508B\n0xD856\t0x50A3\n0xD857\t0x5083\n0xD858\t0x508C\n0xD859\t0x508E\n0xD85A\t0x509D\n0xD85B\t0x5068\n0xD85C\t0x509C\n0xD85D\t0x5092\n0xD85E\t0x5082\n0xD85F\t0x5087\n0xD860\t0x515F\n0xD861\t0x51D4\n0xD862\t0x5312\n0xD863\t0x5311\n0xD864\t0x53A4\n0xD865\t0x53A7\n0xD866\t0x5591\n0xD867\t0x55A8\n0xD868\t0x55A5\n0xD869\t0x55AD\n0xD86A\t0x5577\n0xD86B\t0x5645\n0xD86C\t0x55A2\n0xD86D\t0x5593\n0xD86E\t0x5588\n0xD86F\t0x558F\n0xD870\t0x55B5\n0xD871\t0x5581\n0xD872\t0x55A3\n0xD873\t0x5592\n0xD874\t0x55A4\n0xD875\t0x557D\n0xD876\t0x558C\n0xD877\t0x55A6\n0xD878\t0x557F\n0xD879\t0x5595\n0xD87A\t0x55A1\n0xD87B\t0x558E\n0xD87C\t0x570C\n0xD87D\t0x5829\n0xD87E\t0x5837\n0xD8A1\t0x5819\n0xD8A2\t0x581E\n0xD8A3\t0x5827\n0xD8A4\t0x5823\n0xD8A5\t0x5828\n0xD8A6\t0x57F5\n0xD8A7\t0x5848\n0xD8A8\t0x5825\n0xD8A9\t0x581C\n0xD8AA\t0x581B\n0xD8AB\t0x5833\n0xD8AC\t0x583F\n0xD8AD\t0x5836\n0xD8AE\t0x582E\n0xD8AF\t0x5839\n0xD8B0\t0x5838\n0xD8B1\t0x582D\n0xD8B2\t0x582C\n0xD8B3\t0x583B\n0xD8B4\t0x5961\n0xD8B5\t0x5AAF\n0xD8B6\t0x5A94\n0xD8B7\t0x5A9F\n0xD8B8\t0x5A7A\n0xD8B9\t0x5AA2\n0xD8BA\t0x5A9E\n0xD8BB\t0x5A78\n0xD8BC\t0x5AA6\n0xD8BD\t0x5A7C\n0xD8BE\t0x5AA5\n0xD8BF\t0x5AAC\n0xD8C0\t0x5A95\n0xD8C1\t0x5AAE\n0xD8C2\t0x5A37\n0xD8C3\t0x5A84\n0xD8C4\t0x5A8A\n0xD8C5\t0x5A97\n0xD8C6\t0x5A83\n0xD8C7\t0x5A8B\n0xD8C8\t0x5AA9\n0xD8C9\t0x5A7B\n0xD8CA\t0x5A7D\n0xD8CB\t0x5A8C\n0xD8CC\t0x5A9C\n0xD8CD\t0x5A8F\n0xD8CE\t0x5A93\n0xD8CF\t0x5A9D\n0xD8D0\t0x5BEA\n0xD8D1\t0x5BCD\n0xD8D2\t0x5BCB\n0xD8D3\t0x5BD4\n0xD8D4\t0x5BD1\n0xD8D5\t0x5BCA\n0xD8D6\t0x5BCE\n0xD8D7\t0x5C0C\n0xD8D8\t0x5C30\n0xD8D9\t0x5D37\n0xD8DA\t0x5D43\n0xD8DB\t0x5D6B\n0xD8DC\t0x5D41\n0xD8DD\t0x5D4B\n0xD8DE\t0x5D3F\n0xD8DF\t0x5D35\n0xD8E0\t0x5D51\n0xD8E1\t0x5D4E\n0xD8E2\t0x5D55\n0xD8E3\t0x5D33\n0xD8E4\t0x5D3A\n0xD8E5\t0x5D52\n0xD8E6\t0x5D3D\n0xD8E7\t0x5D31\n0xD8E8\t0x5D59\n0xD8E9\t0x5D42\n0xD8EA\t0x5D39\n0xD8EB\t0x5D49\n0xD8EC\t0x5D38\n0xD8ED\t0x5D3C\n0xD8EE\t0x5D32\n0xD8EF\t0x5D36\n0xD8F0\t0x5D40\n0xD8F1\t0x5D45\n0xD8F2\t0x5E44\n0xD8F3\t0x5E41\n0xD8F4\t0x5F58\n0xD8F5\t0x5FA6\n0xD8F6\t0x5FA5\n0xD8F7\t0x5FAB\n0xD8F8\t0x60C9\n0xD8F9\t0x60B9\n0xD8FA\t0x60CC\n0xD8FB\t0x60E2\n0xD8FC\t0x60CE\n0xD8FD\t0x60C4\n0xD8FE\t0x6114\n0xD940\t0x60F2\n0xD941\t0x610A\n0xD942\t0x6116\n0xD943\t0x6105\n0xD944\t0x60F5\n0xD945\t0x6113\n0xD946\t0x60F8\n0xD947\t0x60FC\n0xD948\t0x60FE\n0xD949\t0x60C1\n0xD94A\t0x6103\n0xD94B\t0x6118\n0xD94C\t0x611D\n0xD94D\t0x6110\n0xD94E\t0x60FF\n0xD94F\t0x6104\n0xD950\t0x610B\n0xD951\t0x624A\n0xD952\t0x6394\n0xD953\t0x63B1\n0xD954\t0x63B0\n0xD955\t0x63CE\n0xD956\t0x63E5\n0xD957\t0x63E8\n0xD958\t0x63EF\n0xD959\t0x63C3\n0xD95A\t0x649D\n0xD95B\t0x63F3\n0xD95C\t0x63CA\n0xD95D\t0x63E0\n0xD95E\t0x63F6\n0xD95F\t0x63D5\n0xD960\t0x63F2\n0xD961\t0x63F5\n0xD962\t0x6461\n0xD963\t0x63DF\n0xD964\t0x63BE\n0xD965\t0x63DD\n0xD966\t0x63DC\n0xD967\t0x63C4\n0xD968\t0x63D8\n0xD969\t0x63D3\n0xD96A\t0x63C2\n0xD96B\t0x63C7\n0xD96C\t0x63CC\n0xD96D\t0x63CB\n0xD96E\t0x63C8\n0xD96F\t0x63F0\n0xD970\t0x63D7\n0xD971\t0x63D9\n0xD972\t0x6532\n0xD973\t0x6567\n0xD974\t0x656A\n0xD975\t0x6564\n0xD976\t0x655C\n0xD977\t0x6568\n0xD978\t0x6565\n0xD979\t0x658C\n0xD97A\t0x659D\n0xD97B\t0x659E\n0xD97C\t0x65AE\n0xD97D\t0x65D0\n0xD97E\t0x65D2\n0xD9A1\t0x667C\n0xD9A2\t0x666C\n0xD9A3\t0x667B\n0xD9A4\t0x6680\n0xD9A5\t0x6671\n0xD9A6\t0x6679\n0xD9A7\t0x666A\n0xD9A8\t0x6672\n0xD9A9\t0x6701\n0xD9AA\t0x690C\n0xD9AB\t0x68D3\n0xD9AC\t0x6904\n0xD9AD\t0x68DC\n0xD9AE\t0x692A\n0xD9AF\t0x68EC\n0xD9B0\t0x68EA\n0xD9B1\t0x68F1\n0xD9B2\t0x690F\n0xD9B3\t0x68D6\n0xD9B4\t0x68F7\n0xD9B5\t0x68EB\n0xD9B6\t0x68E4\n0xD9B7\t0x68F6\n0xD9B8\t0x6913\n0xD9B9\t0x6910\n0xD9BA\t0x68F3\n0xD9BB\t0x68E1\n0xD9BC\t0x6907\n0xD9BD\t0x68CC\n0xD9BE\t0x6908\n0xD9BF\t0x6970\n0xD9C0\t0x68B4\n0xD9C1\t0x6911\n0xD9C2\t0x68EF\n0xD9C3\t0x68C6\n0xD9C4\t0x6914\n0xD9C5\t0x68F8\n0xD9C6\t0x68D0\n0xD9C7\t0x68FD\n0xD9C8\t0x68FC\n0xD9C9\t0x68E8\n0xD9CA\t0x690B\n0xD9CB\t0x690A\n0xD9CC\t0x6917\n0xD9CD\t0x68CE\n0xD9CE\t0x68C8\n0xD9CF\t0x68DD\n0xD9D0\t0x68DE\n0xD9D1\t0x68E6\n0xD9D2\t0x68F4\n0xD9D3\t0x68D1\n0xD9D4\t0x6906\n0xD9D5\t0x68D4\n0xD9D6\t0x68E9\n0xD9D7\t0x6915\n0xD9D8\t0x6925\n0xD9D9\t0x68C7\n0xD9DA\t0x6B39\n0xD9DB\t0x6B3B\n0xD9DC\t0x6B3F\n0xD9DD\t0x6B3C\n0xD9DE\t0x6B94\n0xD9DF\t0x6B97\n0xD9E0\t0x6B99\n0xD9E1\t0x6B95\n0xD9E2\t0x6BBD\n0xD9E3\t0x6BF0\n0xD9E4\t0x6BF2\n0xD9E5\t0x6BF3\n0xD9E6\t0x6C30\n0xD9E7\t0x6DFC\n0xD9E8\t0x6E46\n0xD9E9\t0x6E47\n0xD9EA\t0x6E1F\n0xD9EB\t0x6E49\n0xD9EC\t0x6E88\n0xD9ED\t0x6E3C\n0xD9EE\t0x6E3D\n0xD9EF\t0x6E45\n0xD9F0\t0x6E62\n0xD9F1\t0x6E2B\n0xD9F2\t0x6E3F\n0xD9F3\t0x6E41\n0xD9F4\t0x6E5D\n0xD9F5\t0x6E73\n0xD9F6\t0x6E1C\n0xD9F7\t0x6E33\n0xD9F8\t0x6E4B\n0xD9F9\t0x6E40\n0xD9FA\t0x6E51\n0xD9FB\t0x6E3B\n0xD9FC\t0x6E03\n0xD9FD\t0x6E2E\n0xD9FE\t0x6E5E\n0xDA40\t0x6E68\n0xDA41\t0x6E5C\n0xDA42\t0x6E61\n0xDA43\t0x6E31\n0xDA44\t0x6E28\n0xDA45\t0x6E60\n0xDA46\t0x6E71\n0xDA47\t0x6E6B\n0xDA48\t0x6E39\n0xDA49\t0x6E22\n0xDA4A\t0x6E30\n0xDA4B\t0x6E53\n0xDA4C\t0x6E65\n0xDA4D\t0x6E27\n0xDA4E\t0x6E78\n0xDA4F\t0x6E64\n0xDA50\t0x6E77\n0xDA51\t0x6E55\n0xDA52\t0x6E79\n0xDA53\t0x6E52\n0xDA54\t0x6E66\n0xDA55\t0x6E35\n0xDA56\t0x6E36\n0xDA57\t0x6E5A\n0xDA58\t0x7120\n0xDA59\t0x711E\n0xDA5A\t0x712F\n0xDA5B\t0x70FB\n0xDA5C\t0x712E\n0xDA5D\t0x7131\n0xDA5E\t0x7123\n0xDA5F\t0x7125\n0xDA60\t0x7122\n0xDA61\t0x7132\n0xDA62\t0x711F\n0xDA63\t0x7128\n0xDA64\t0x713A\n0xDA65\t0x711B\n0xDA66\t0x724B\n0xDA67\t0x725A\n0xDA68\t0x7288\n0xDA69\t0x7289\n0xDA6A\t0x7286\n0xDA6B\t0x7285\n0xDA6C\t0x728B\n0xDA6D\t0x7312\n0xDA6E\t0x730B\n0xDA6F\t0x7330\n0xDA70\t0x7322\n0xDA71\t0x7331\n0xDA72\t0x7333\n0xDA73\t0x7327\n0xDA74\t0x7332\n0xDA75\t0x732D\n0xDA76\t0x7326\n0xDA77\t0x7323\n0xDA78\t0x7335\n0xDA79\t0x730C\n0xDA7A\t0x742E\n0xDA7B\t0x742C\n0xDA7C\t0x7430\n0xDA7D\t0x742B\n0xDA7E\t0x7416\n0xDAA1\t0x741A\n0xDAA2\t0x7421\n0xDAA3\t0x742D\n0xDAA4\t0x7431\n0xDAA5\t0x7424\n0xDAA6\t0x7423\n0xDAA7\t0x741D\n0xDAA8\t0x7429\n0xDAA9\t0x7420\n0xDAAA\t0x7432\n0xDAAB\t0x74FB\n0xDAAC\t0x752F\n0xDAAD\t0x756F\n0xDAAE\t0x756C\n0xDAAF\t0x75E7\n0xDAB0\t0x75DA\n0xDAB1\t0x75E1\n0xDAB2\t0x75E6\n0xDAB3\t0x75DD\n0xDAB4\t0x75DF\n0xDAB5\t0x75E4\n0xDAB6\t0x75D7\n0xDAB7\t0x7695\n0xDAB8\t0x7692\n0xDAB9\t0x76DA\n0xDABA\t0x7746\n0xDABB\t0x7747\n0xDABC\t0x7744\n0xDABD\t0x774D\n0xDABE\t0x7745\n0xDABF\t0x774A\n0xDAC0\t0x774E\n0xDAC1\t0x774B\n0xDAC2\t0x774C\n0xDAC3\t0x77DE\n0xDAC4\t0x77EC\n0xDAC5\t0x7860\n0xDAC6\t0x7864\n0xDAC7\t0x7865\n0xDAC8\t0x785C\n0xDAC9\t0x786D\n0xDACA\t0x7871\n0xDACB\t0x786A\n0xDACC\t0x786E\n0xDACD\t0x7870\n0xDACE\t0x7869\n0xDACF\t0x7868\n0xDAD0\t0x785E\n0xDAD1\t0x7862\n0xDAD2\t0x7974\n0xDAD3\t0x7973\n0xDAD4\t0x7972\n0xDAD5\t0x7970\n0xDAD6\t0x7A02\n0xDAD7\t0x7A0A\n0xDAD8\t0x7A03\n0xDAD9\t0x7A0C\n0xDADA\t0x7A04\n0xDADB\t0x7A99\n0xDADC\t0x7AE6\n0xDADD\t0x7AE4\n0xDADE\t0x7B4A\n0xDADF\t0x7B3B\n0xDAE0\t0x7B44\n0xDAE1\t0x7B48\n0xDAE2\t0x7B4C\n0xDAE3\t0x7B4E\n0xDAE4\t0x7B40\n0xDAE5\t0x7B58\n0xDAE6\t0x7B45\n0xDAE7\t0x7CA2\n0xDAE8\t0x7C9E\n0xDAE9\t0x7CA8\n0xDAEA\t0x7CA1\n0xDAEB\t0x7D58\n0xDAEC\t0x7D6F\n0xDAED\t0x7D63\n0xDAEE\t0x7D53\n0xDAEF\t0x7D56\n0xDAF0\t0x7D67\n0xDAF1\t0x7D6A\n0xDAF2\t0x7D4F\n0xDAF3\t0x7D6D\n0xDAF4\t0x7D5C\n0xDAF5\t0x7D6B\n0xDAF6\t0x7D52\n0xDAF7\t0x7D54\n0xDAF8\t0x7D69\n0xDAF9\t0x7D51\n0xDAFA\t0x7D5F\n0xDAFB\t0x7D4E\n0xDAFC\t0x7F3E\n0xDAFD\t0x7F3F\n0xDAFE\t0x7F65\n0xDB40\t0x7F66\n0xDB41\t0x7FA2\n0xDB42\t0x7FA0\n0xDB43\t0x7FA1\n0xDB44\t0x7FD7\n0xDB45\t0x8051\n0xDB46\t0x804F\n0xDB47\t0x8050\n0xDB48\t0x80FE\n0xDB49\t0x80D4\n0xDB4A\t0x8143\n0xDB4B\t0x814A\n0xDB4C\t0x8152\n0xDB4D\t0x814F\n0xDB4E\t0x8147\n0xDB4F\t0x813D\n0xDB50\t0x814D\n0xDB51\t0x813A\n0xDB52\t0x81E6\n0xDB53\t0x81EE\n0xDB54\t0x81F7\n0xDB55\t0x81F8\n0xDB56\t0x81F9\n0xDB57\t0x8204\n0xDB58\t0x823C\n0xDB59\t0x823D\n0xDB5A\t0x823F\n0xDB5B\t0x8275\n0xDB5C\t0x833B\n0xDB5D\t0x83CF\n0xDB5E\t0x83F9\n0xDB5F\t0x8423\n0xDB60\t0x83C0\n0xDB61\t0x83E8\n0xDB62\t0x8412\n0xDB63\t0x83E7\n0xDB64\t0x83E4\n0xDB65\t0x83FC\n0xDB66\t0x83F6\n0xDB67\t0x8410\n0xDB68\t0x83C6\n0xDB69\t0x83C8\n0xDB6A\t0x83EB\n0xDB6B\t0x83E3\n0xDB6C\t0x83BF\n0xDB6D\t0x8401\n0xDB6E\t0x83DD\n0xDB6F\t0x83E5\n0xDB70\t0x83D8\n0xDB71\t0x83FF\n0xDB72\t0x83E1\n0xDB73\t0x83CB\n0xDB74\t0x83CE\n0xDB75\t0x83D6\n0xDB76\t0x83F5\n0xDB77\t0x83C9\n0xDB78\t0x8409\n0xDB79\t0x840F\n0xDB7A\t0x83DE\n0xDB7B\t0x8411\n0xDB7C\t0x8406\n0xDB7D\t0x83C2\n0xDB7E\t0x83F3\n0xDBA1\t0x83D5\n0xDBA2\t0x83FA\n0xDBA3\t0x83C7\n0xDBA4\t0x83D1\n0xDBA5\t0x83EA\n0xDBA6\t0x8413\n0xDBA7\t0x83C3\n0xDBA8\t0x83EC\n0xDBA9\t0x83EE\n0xDBAA\t0x83C4\n0xDBAB\t0x83FB\n0xDBAC\t0x83D7\n0xDBAD\t0x83E2\n0xDBAE\t0x841B\n0xDBAF\t0x83DB\n0xDBB0\t0x83FE\n0xDBB1\t0x86D8\n0xDBB2\t0x86E2\n0xDBB3\t0x86E6\n0xDBB4\t0x86D3\n0xDBB5\t0x86E3\n0xDBB6\t0x86DA\n0xDBB7\t0x86EA\n0xDBB8\t0x86DD\n0xDBB9\t0x86EB\n0xDBBA\t0x86DC\n0xDBBB\t0x86EC\n0xDBBC\t0x86E9\n0xDBBD\t0x86D7\n0xDBBE\t0x86E8\n0xDBBF\t0x86D1\n0xDBC0\t0x8848\n0xDBC1\t0x8856\n0xDBC2\t0x8855\n0xDBC3\t0x88BA\n0xDBC4\t0x88D7\n0xDBC5\t0x88B9\n0xDBC6\t0x88B8\n0xDBC7\t0x88C0\n0xDBC8\t0x88BE\n0xDBC9\t0x88B6\n0xDBCA\t0x88BC\n0xDBCB\t0x88B7\n0xDBCC\t0x88BD\n0xDBCD\t0x88B2\n0xDBCE\t0x8901\n0xDBCF\t0x88C9\n0xDBD0\t0x8995\n0xDBD1\t0x8998\n0xDBD2\t0x8997\n0xDBD3\t0x89DD\n0xDBD4\t0x89DA\n0xDBD5\t0x89DB\n0xDBD6\t0x8A4E\n0xDBD7\t0x8A4D\n0xDBD8\t0x8A39\n0xDBD9\t0x8A59\n0xDBDA\t0x8A40\n0xDBDB\t0x8A57\n0xDBDC\t0x8A58\n0xDBDD\t0x8A44\n0xDBDE\t0x8A45\n0xDBDF\t0x8A52\n0xDBE0\t0x8A48\n0xDBE1\t0x8A51\n0xDBE2\t0x8A4A\n0xDBE3\t0x8A4C\n0xDBE4\t0x8A4F\n0xDBE5\t0x8C5F\n0xDBE6\t0x8C81\n0xDBE7\t0x8C80\n0xDBE8\t0x8CBA\n0xDBE9\t0x8CBE\n0xDBEA\t0x8CB0\n0xDBEB\t0x8CB9\n0xDBEC\t0x8CB5\n0xDBED\t0x8D84\n0xDBEE\t0x8D80\n0xDBEF\t0x8D89\n0xDBF0\t0x8DD8\n0xDBF1\t0x8DD3\n0xDBF2\t0x8DCD\n0xDBF3\t0x8DC7\n0xDBF4\t0x8DD6\n0xDBF5\t0x8DDC\n0xDBF6\t0x8DCF\n0xDBF7\t0x8DD5\n0xDBF8\t0x8DD9\n0xDBF9\t0x8DC8\n0xDBFA\t0x8DD7\n0xDBFB\t0x8DC5\n0xDBFC\t0x8EEF\n0xDBFD\t0x8EF7\n0xDBFE\t0x8EFA\n0xDC40\t0x8EF9\n0xDC41\t0x8EE6\n0xDC42\t0x8EEE\n0xDC43\t0x8EE5\n0xDC44\t0x8EF5\n0xDC45\t0x8EE7\n0xDC46\t0x8EE8\n0xDC47\t0x8EF6\n0xDC48\t0x8EEB\n0xDC49\t0x8EF1\n0xDC4A\t0x8EEC\n0xDC4B\t0x8EF4\n0xDC4C\t0x8EE9\n0xDC4D\t0x902D\n0xDC4E\t0x9034\n0xDC4F\t0x902F\n0xDC50\t0x9106\n0xDC51\t0x912C\n0xDC52\t0x9104\n0xDC53\t0x90FF\n0xDC54\t0x90FC\n0xDC55\t0x9108\n0xDC56\t0x90F9\n0xDC57\t0x90FB\n0xDC58\t0x9101\n0xDC59\t0x9100\n0xDC5A\t0x9107\n0xDC5B\t0x9105\n0xDC5C\t0x9103\n0xDC5D\t0x9161\n0xDC5E\t0x9164\n0xDC5F\t0x915F\n0xDC60\t0x9162\n0xDC61\t0x9160\n0xDC62\t0x9201\n0xDC63\t0x920A\n0xDC64\t0x9225\n0xDC65\t0x9203\n0xDC66\t0x921A\n0xDC67\t0x9226\n0xDC68\t0x920F\n0xDC69\t0x920C\n0xDC6A\t0x9200\n0xDC6B\t0x9212\n0xDC6C\t0x91FF\n0xDC6D\t0x91FD\n0xDC6E\t0x9206\n0xDC6F\t0x9204\n0xDC70\t0x9227\n0xDC71\t0x9202\n0xDC72\t0x921C\n0xDC73\t0x9224\n0xDC74\t0x9219\n0xDC75\t0x9217\n0xDC76\t0x9205\n0xDC77\t0x9216\n0xDC78\t0x957B\n0xDC79\t0x958D\n0xDC7A\t0x958C\n0xDC7B\t0x9590\n0xDC7C\t0x9687\n0xDC7D\t0x967E\n0xDC7E\t0x9688\n0xDCA1\t0x9689\n0xDCA2\t0x9683\n0xDCA3\t0x9680\n0xDCA4\t0x96C2\n0xDCA5\t0x96C8\n0xDCA6\t0x96C3\n0xDCA7\t0x96F1\n0xDCA8\t0x96F0\n0xDCA9\t0x976C\n0xDCAA\t0x9770\n0xDCAB\t0x976E\n0xDCAC\t0x9807\n0xDCAD\t0x98A9\n0xDCAE\t0x98EB\n0xDCAF\t0x9CE6\n0xDCB0\t0x9EF9\n0xDCB1\t0x4E83\n0xDCB2\t0x4E84\n0xDCB3\t0x4EB6\n0xDCB4\t0x50BD\n0xDCB5\t0x50BF\n0xDCB6\t0x50C6\n0xDCB7\t0x50AE\n0xDCB8\t0x50C4\n0xDCB9\t0x50CA\n0xDCBA\t0x50B4\n0xDCBB\t0x50C8\n0xDCBC\t0x50C2\n0xDCBD\t0x50B0\n0xDCBE\t0x50C1\n0xDCBF\t0x50BA\n0xDCC0\t0x50B1\n0xDCC1\t0x50CB\n0xDCC2\t0x50C9\n0xDCC3\t0x50B6\n0xDCC4\t0x50B8\n0xDCC5\t0x51D7\n0xDCC6\t0x527A\n0xDCC7\t0x5278\n0xDCC8\t0x527B\n0xDCC9\t0x527C\n0xDCCA\t0x55C3\n0xDCCB\t0x55DB\n0xDCCC\t0x55CC\n0xDCCD\t0x55D0\n0xDCCE\t0x55CB\n0xDCCF\t0x55CA\n0xDCD0\t0x55DD\n0xDCD1\t0x55C0\n0xDCD2\t0x55D4\n0xDCD3\t0x55C4\n0xDCD4\t0x55E9\n0xDCD5\t0x55BF\n0xDCD6\t0x55D2\n0xDCD7\t0x558D\n0xDCD8\t0x55CF\n0xDCD9\t0x55D5\n0xDCDA\t0x55E2\n0xDCDB\t0x55D6\n0xDCDC\t0x55C8\n0xDCDD\t0x55F2\n0xDCDE\t0x55CD\n0xDCDF\t0x55D9\n0xDCE0\t0x55C2\n0xDCE1\t0x5714\n0xDCE2\t0x5853\n0xDCE3\t0x5868\n0xDCE4\t0x5864\n0xDCE5\t0x584F\n0xDCE6\t0x584D\n0xDCE7\t0x5849\n0xDCE8\t0x586F\n0xDCE9\t0x5855\n0xDCEA\t0x584E\n0xDCEB\t0x585D\n0xDCEC\t0x5859\n0xDCED\t0x5865\n0xDCEE\t0x585B\n0xDCEF\t0x583D\n0xDCF0\t0x5863\n0xDCF1\t0x5871\n0xDCF2\t0x58FC\n0xDCF3\t0x5AC7\n0xDCF4\t0x5AC4\n0xDCF5\t0x5ACB\n0xDCF6\t0x5ABA\n0xDCF7\t0x5AB8\n0xDCF8\t0x5AB1\n0xDCF9\t0x5AB5\n0xDCFA\t0x5AB0\n0xDCFB\t0x5ABF\n0xDCFC\t0x5AC8\n0xDCFD\t0x5ABB\n0xDCFE\t0x5AC6\n0xDD40\t0x5AB7\n0xDD41\t0x5AC0\n0xDD42\t0x5ACA\n0xDD43\t0x5AB4\n0xDD44\t0x5AB6\n0xDD45\t0x5ACD\n0xDD46\t0x5AB9\n0xDD47\t0x5A90\n0xDD48\t0x5BD6\n0xDD49\t0x5BD8\n0xDD4A\t0x5BD9\n0xDD4B\t0x5C1F\n0xDD4C\t0x5C33\n0xDD4D\t0x5D71\n0xDD4E\t0x5D63\n0xDD4F\t0x5D4A\n0xDD50\t0x5D65\n0xDD51\t0x5D72\n0xDD52\t0x5D6C\n0xDD53\t0x5D5E\n0xDD54\t0x5D68\n0xDD55\t0x5D67\n0xDD56\t0x5D62\n0xDD57\t0x5DF0\n0xDD58\t0x5E4F\n0xDD59\t0x5E4E\n0xDD5A\t0x5E4A\n0xDD5B\t0x5E4D\n0xDD5C\t0x5E4B\n0xDD5D\t0x5EC5\n0xDD5E\t0x5ECC\n0xDD5F\t0x5EC6\n0xDD60\t0x5ECB\n0xDD61\t0x5EC7\n0xDD62\t0x5F40\n0xDD63\t0x5FAF\n0xDD64\t0x5FAD\n0xDD65\t0x60F7\n0xDD66\t0x6149\n0xDD67\t0x614A\n0xDD68\t0x612B\n0xDD69\t0x6145\n0xDD6A\t0x6136\n0xDD6B\t0x6132\n0xDD6C\t0x612E\n0xDD6D\t0x6146\n0xDD6E\t0x612F\n0xDD6F\t0x614F\n0xDD70\t0x6129\n0xDD71\t0x6140\n0xDD72\t0x6220\n0xDD73\t0x9168\n0xDD74\t0x6223\n0xDD75\t0x6225\n0xDD76\t0x6224\n0xDD77\t0x63C5\n0xDD78\t0x63F1\n0xDD79\t0x63EB\n0xDD7A\t0x6410\n0xDD7B\t0x6412\n0xDD7C\t0x6409\n0xDD7D\t0x6420\n0xDD7E\t0x6424\n0xDDA1\t0x6433\n0xDDA2\t0x6443\n0xDDA3\t0x641F\n0xDDA4\t0x6415\n0xDDA5\t0x6418\n0xDDA6\t0x6439\n0xDDA7\t0x6437\n0xDDA8\t0x6422\n0xDDA9\t0x6423\n0xDDAA\t0x640C\n0xDDAB\t0x6426\n0xDDAC\t0x6430\n0xDDAD\t0x6428\n0xDDAE\t0x6441\n0xDDAF\t0x6435\n0xDDB0\t0x642F\n0xDDB1\t0x640A\n0xDDB2\t0x641A\n0xDDB3\t0x6440\n0xDDB4\t0x6425\n0xDDB5\t0x6427\n0xDDB6\t0x640B\n0xDDB7\t0x63E7\n0xDDB8\t0x641B\n0xDDB9\t0x642E\n0xDDBA\t0x6421\n0xDDBB\t0x640E\n0xDDBC\t0x656F\n0xDDBD\t0x6592\n0xDDBE\t0x65D3\n0xDDBF\t0x6686\n0xDDC0\t0x668C\n0xDDC1\t0x6695\n0xDDC2\t0x6690\n0xDDC3\t0x668B\n0xDDC4\t0x668A\n0xDDC5\t0x6699\n0xDDC6\t0x6694\n0xDDC7\t0x6678\n0xDDC8\t0x6720\n0xDDC9\t0x6966\n0xDDCA\t0x695F\n0xDDCB\t0x6938\n0xDDCC\t0x694E\n0xDDCD\t0x6962\n0xDDCE\t0x6971\n0xDDCF\t0x693F\n0xDDD0\t0x6945\n0xDDD1\t0x696A\n0xDDD2\t0x6939\n0xDDD3\t0x6942\n0xDDD4\t0x6957\n0xDDD5\t0x6959\n0xDDD6\t0x697A\n0xDDD7\t0x6948\n0xDDD8\t0x6949\n0xDDD9\t0x6935\n0xDDDA\t0x696C\n0xDDDB\t0x6933\n0xDDDC\t0x693D\n0xDDDD\t0x6965\n0xDDDE\t0x68F0\n0xDDDF\t0x6978\n0xDDE0\t0x6934\n0xDDE1\t0x6969\n0xDDE2\t0x6940\n0xDDE3\t0x696F\n0xDDE4\t0x6944\n0xDDE5\t0x6976\n0xDDE6\t0x6958\n0xDDE7\t0x6941\n0xDDE8\t0x6974\n0xDDE9\t0x694C\n0xDDEA\t0x693B\n0xDDEB\t0x694B\n0xDDEC\t0x6937\n0xDDED\t0x695C\n0xDDEE\t0x694F\n0xDDEF\t0x6951\n0xDDF0\t0x6932\n0xDDF1\t0x6952\n0xDDF2\t0x692F\n0xDDF3\t0x697B\n0xDDF4\t0x693C\n0xDDF5\t0x6B46\n0xDDF6\t0x6B45\n0xDDF7\t0x6B43\n0xDDF8\t0x6B42\n0xDDF9\t0x6B48\n0xDDFA\t0x6B41\n0xDDFB\t0x6B9B\n0xDDFC\t0xFA0D\n0xDDFD\t0x6BFB\n0xDDFE\t0x6BFC\n0xDE40\t0x6BF9\n0xDE41\t0x6BF7\n0xDE42\t0x6BF8\n0xDE43\t0x6E9B\n0xDE44\t0x6ED6\n0xDE45\t0x6EC8\n0xDE46\t0x6E8F\n0xDE47\t0x6EC0\n0xDE48\t0x6E9F\n0xDE49\t0x6E93\n0xDE4A\t0x6E94\n0xDE4B\t0x6EA0\n0xDE4C\t0x6EB1\n0xDE4D\t0x6EB9\n0xDE4E\t0x6EC6\n0xDE4F\t0x6ED2\n0xDE50\t0x6EBD\n0xDE51\t0x6EC1\n0xDE52\t0x6E9E\n0xDE53\t0x6EC9\n0xDE54\t0x6EB7\n0xDE55\t0x6EB0\n0xDE56\t0x6ECD\n0xDE57\t0x6EA6\n0xDE58\t0x6ECF\n0xDE59\t0x6EB2\n0xDE5A\t0x6EBE\n0xDE5B\t0x6EC3\n0xDE5C\t0x6EDC\n0xDE5D\t0x6ED8\n0xDE5E\t0x6E99\n0xDE5F\t0x6E92\n0xDE60\t0x6E8E\n0xDE61\t0x6E8D\n0xDE62\t0x6EA4\n0xDE63\t0x6EA1\n0xDE64\t0x6EBF\n0xDE65\t0x6EB3\n0xDE66\t0x6ED0\n0xDE67\t0x6ECA\n0xDE68\t0x6E97\n0xDE69\t0x6EAE\n0xDE6A\t0x6EA3\n0xDE6B\t0x7147\n0xDE6C\t0x7154\n0xDE6D\t0x7152\n0xDE6E\t0x7163\n0xDE6F\t0x7160\n0xDE70\t0x7141\n0xDE71\t0x715D\n0xDE72\t0x7162\n0xDE73\t0x7172\n0xDE74\t0x7178\n0xDE75\t0x716A\n0xDE76\t0x7161\n0xDE77\t0x7142\n0xDE78\t0x7158\n0xDE79\t0x7143\n0xDE7A\t0x714B\n0xDE7B\t0x7170\n0xDE7C\t0x715F\n0xDE7D\t0x7150\n0xDE7E\t0x7153\n0xDEA1\t0x7144\n0xDEA2\t0x714D\n0xDEA3\t0x715A\n0xDEA4\t0x724F\n0xDEA5\t0x728D\n0xDEA6\t0x728C\n0xDEA7\t0x7291\n0xDEA8\t0x7290\n0xDEA9\t0x728E\n0xDEAA\t0x733C\n0xDEAB\t0x7342\n0xDEAC\t0x733B\n0xDEAD\t0x733A\n0xDEAE\t0x7340\n0xDEAF\t0x734A\n0xDEB0\t0x7349\n0xDEB1\t0x7444\n0xDEB2\t0x744A\n0xDEB3\t0x744B\n0xDEB4\t0x7452\n0xDEB5\t0x7451\n0xDEB6\t0x7457\n0xDEB7\t0x7440\n0xDEB8\t0x744F\n0xDEB9\t0x7450\n0xDEBA\t0x744E\n0xDEBB\t0x7442\n0xDEBC\t0x7446\n0xDEBD\t0x744D\n0xDEBE\t0x7454\n0xDEBF\t0x74E1\n0xDEC0\t0x74FF\n0xDEC1\t0x74FE\n0xDEC2\t0x74FD\n0xDEC3\t0x751D\n0xDEC4\t0x7579\n0xDEC5\t0x7577\n0xDEC6\t0x6983\n0xDEC7\t0x75EF\n0xDEC8\t0x760F\n0xDEC9\t0x7603\n0xDECA\t0x75F7\n0xDECB\t0x75FE\n0xDECC\t0x75FC\n0xDECD\t0x75F9\n0xDECE\t0x75F8\n0xDECF\t0x7610\n0xDED0\t0x75FB\n0xDED1\t0x75F6\n0xDED2\t0x75ED\n0xDED3\t0x75F5\n0xDED4\t0x75FD\n0xDED5\t0x7699\n0xDED6\t0x76B5\n0xDED7\t0x76DD\n0xDED8\t0x7755\n0xDED9\t0x775F\n0xDEDA\t0x7760\n0xDEDB\t0x7752\n0xDEDC\t0x7756\n0xDEDD\t0x775A\n0xDEDE\t0x7769\n0xDEDF\t0x7767\n0xDEE0\t0x7754\n0xDEE1\t0x7759\n0xDEE2\t0x776D\n0xDEE3\t0x77E0\n0xDEE4\t0x7887\n0xDEE5\t0x789A\n0xDEE6\t0x7894\n0xDEE7\t0x788F\n0xDEE8\t0x7884\n0xDEE9\t0x7895\n0xDEEA\t0x7885\n0xDEEB\t0x7886\n0xDEEC\t0x78A1\n0xDEED\t0x7883\n0xDEEE\t0x7879\n0xDEEF\t0x7899\n0xDEF0\t0x7880\n0xDEF1\t0x7896\n0xDEF2\t0x787B\n0xDEF3\t0x797C\n0xDEF4\t0x7982\n0xDEF5\t0x797D\n0xDEF6\t0x7979\n0xDEF7\t0x7A11\n0xDEF8\t0x7A18\n0xDEF9\t0x7A19\n0xDEFA\t0x7A12\n0xDEFB\t0x7A17\n0xDEFC\t0x7A15\n0xDEFD\t0x7A22\n0xDEFE\t0x7A13\n0xDF40\t0x7A1B\n0xDF41\t0x7A10\n0xDF42\t0x7AA3\n0xDF43\t0x7AA2\n0xDF44\t0x7A9E\n0xDF45\t0x7AEB\n0xDF46\t0x7B66\n0xDF47\t0x7B64\n0xDF48\t0x7B6D\n0xDF49\t0x7B74\n0xDF4A\t0x7B69\n0xDF4B\t0x7B72\n0xDF4C\t0x7B65\n0xDF4D\t0x7B73\n0xDF4E\t0x7B71\n0xDF4F\t0x7B70\n0xDF50\t0x7B61\n0xDF51\t0x7B78\n0xDF52\t0x7B76\n0xDF53\t0x7B63\n0xDF54\t0x7CB2\n0xDF55\t0x7CB4\n0xDF56\t0x7CAF\n0xDF57\t0x7D88\n0xDF58\t0x7D86\n0xDF59\t0x7D80\n0xDF5A\t0x7D8D\n0xDF5B\t0x7D7F\n0xDF5C\t0x7D85\n0xDF5D\t0x7D7A\n0xDF5E\t0x7D8E\n0xDF5F\t0x7D7B\n0xDF60\t0x7D83\n0xDF61\t0x7D7C\n0xDF62\t0x7D8C\n0xDF63\t0x7D94\n0xDF64\t0x7D84\n0xDF65\t0x7D7D\n0xDF66\t0x7D92\n0xDF67\t0x7F6D\n0xDF68\t0x7F6B\n0xDF69\t0x7F67\n0xDF6A\t0x7F68\n0xDF6B\t0x7F6C\n0xDF6C\t0x7FA6\n0xDF6D\t0x7FA5\n0xDF6E\t0x7FA7\n0xDF6F\t0x7FDB\n0xDF70\t0x7FDC\n0xDF71\t0x8021\n0xDF72\t0x8164\n0xDF73\t0x8160\n0xDF74\t0x8177\n0xDF75\t0x815C\n0xDF76\t0x8169\n0xDF77\t0x815B\n0xDF78\t0x8162\n0xDF79\t0x8172\n0xDF7A\t0x6721\n0xDF7B\t0x815E\n0xDF7C\t0x8176\n0xDF7D\t0x8167\n0xDF7E\t0x816F\n0xDFA1\t0x8144\n0xDFA2\t0x8161\n0xDFA3\t0x821D\n0xDFA4\t0x8249\n0xDFA5\t0x8244\n0xDFA6\t0x8240\n0xDFA7\t0x8242\n0xDFA8\t0x8245\n0xDFA9\t0x84F1\n0xDFAA\t0x843F\n0xDFAB\t0x8456\n0xDFAC\t0x8476\n0xDFAD\t0x8479\n0xDFAE\t0x848F\n0xDFAF\t0x848D\n0xDFB0\t0x8465\n0xDFB1\t0x8451\n0xDFB2\t0x8440\n0xDFB3\t0x8486\n0xDFB4\t0x8467\n0xDFB5\t0x8430\n0xDFB6\t0x844D\n0xDFB7\t0x847D\n0xDFB8\t0x845A\n0xDFB9\t0x8459\n0xDFBA\t0x8474\n0xDFBB\t0x8473\n0xDFBC\t0x845D\n0xDFBD\t0x8507\n0xDFBE\t0x845E\n0xDFBF\t0x8437\n0xDFC0\t0x843A\n0xDFC1\t0x8434\n0xDFC2\t0x847A\n0xDFC3\t0x8443\n0xDFC4\t0x8478\n0xDFC5\t0x8432\n0xDFC6\t0x8445\n0xDFC7\t0x8429\n0xDFC8\t0x83D9\n0xDFC9\t0x844B\n0xDFCA\t0x842F\n0xDFCB\t0x8442\n0xDFCC\t0x842D\n0xDFCD\t0x845F\n0xDFCE\t0x8470\n0xDFCF\t0x8439\n0xDFD0\t0x844E\n0xDFD1\t0x844C\n0xDFD2\t0x8452\n0xDFD3\t0x846F\n0xDFD4\t0x84C5\n0xDFD5\t0x848E\n0xDFD6\t0x843B\n0xDFD7\t0x8447\n0xDFD8\t0x8436\n0xDFD9\t0x8433\n0xDFDA\t0x8468\n0xDFDB\t0x847E\n0xDFDC\t0x8444\n0xDFDD\t0x842B\n0xDFDE\t0x8460\n0xDFDF\t0x8454\n0xDFE0\t0x846E\n0xDFE1\t0x8450\n0xDFE2\t0x870B\n0xDFE3\t0x8704\n0xDFE4\t0x86F7\n0xDFE5\t0x870C\n0xDFE6\t0x86FA\n0xDFE7\t0x86D6\n0xDFE8\t0x86F5\n0xDFE9\t0x874D\n0xDFEA\t0x86F8\n0xDFEB\t0x870E\n0xDFEC\t0x8709\n0xDFED\t0x8701\n0xDFEE\t0x86F6\n0xDFEF\t0x870D\n0xDFF0\t0x8705\n0xDFF1\t0x88D6\n0xDFF2\t0x88CB\n0xDFF3\t0x88CD\n0xDFF4\t0x88CE\n0xDFF5\t0x88DE\n0xDFF6\t0x88DB\n0xDFF7\t0x88DA\n0xDFF8\t0x88CC\n0xDFF9\t0x88D0\n0xDFFA\t0x8985\n0xDFFB\t0x899B\n0xDFFC\t0x89DF\n0xDFFD\t0x89E5\n0xDFFE\t0x89E4\n0xE040\t0x89E1\n0xE041\t0x89E0\n0xE042\t0x89E2\n0xE043\t0x89DC\n0xE044\t0x89E6\n0xE045\t0x8A76\n0xE046\t0x8A86\n0xE047\t0x8A7F\n0xE048\t0x8A61\n0xE049\t0x8A3F\n0xE04A\t0x8A77\n0xE04B\t0x8A82\n0xE04C\t0x8A84\n0xE04D\t0x8A75\n0xE04E\t0x8A83\n0xE04F\t0x8A81\n0xE050\t0x8A74\n0xE051\t0x8A7A\n0xE052\t0x8C3C\n0xE053\t0x8C4B\n0xE054\t0x8C4A\n0xE055\t0x8C65\n0xE056\t0x8C64\n0xE057\t0x8C66\n0xE058\t0x8C86\n0xE059\t0x8C84\n0xE05A\t0x8C85\n0xE05B\t0x8CCC\n0xE05C\t0x8D68\n0xE05D\t0x8D69\n0xE05E\t0x8D91\n0xE05F\t0x8D8C\n0xE060\t0x8D8E\n0xE061\t0x8D8F\n0xE062\t0x8D8D\n0xE063\t0x8D93\n0xE064\t0x8D94\n0xE065\t0x8D90\n0xE066\t0x8D92\n0xE067\t0x8DF0\n0xE068\t0x8DE0\n0xE069\t0x8DEC\n0xE06A\t0x8DF1\n0xE06B\t0x8DEE\n0xE06C\t0x8DD0\n0xE06D\t0x8DE9\n0xE06E\t0x8DE3\n0xE06F\t0x8DE2\n0xE070\t0x8DE7\n0xE071\t0x8DF2\n0xE072\t0x8DEB\n0xE073\t0x8DF4\n0xE074\t0x8F06\n0xE075\t0x8EFF\n0xE076\t0x8F01\n0xE077\t0x8F00\n0xE078\t0x8F05\n0xE079\t0x8F07\n0xE07A\t0x8F08\n0xE07B\t0x8F02\n0xE07C\t0x8F0B\n0xE07D\t0x9052\n0xE07E\t0x903F\n0xE0A1\t0x9044\n0xE0A2\t0x9049\n0xE0A3\t0x903D\n0xE0A4\t0x9110\n0xE0A5\t0x910D\n0xE0A6\t0x910F\n0xE0A7\t0x9111\n0xE0A8\t0x9116\n0xE0A9\t0x9114\n0xE0AA\t0x910B\n0xE0AB\t0x910E\n0xE0AC\t0x916E\n0xE0AD\t0x916F\n0xE0AE\t0x9248\n0xE0AF\t0x9252\n0xE0B0\t0x9230\n0xE0B1\t0x923A\n0xE0B2\t0x9266\n0xE0B3\t0x9233\n0xE0B4\t0x9265\n0xE0B5\t0x925E\n0xE0B6\t0x9283\n0xE0B7\t0x922E\n0xE0B8\t0x924A\n0xE0B9\t0x9246\n0xE0BA\t0x926D\n0xE0BB\t0x926C\n0xE0BC\t0x924F\n0xE0BD\t0x9260\n0xE0BE\t0x9267\n0xE0BF\t0x926F\n0xE0C0\t0x9236\n0xE0C1\t0x9261\n0xE0C2\t0x9270\n0xE0C3\t0x9231\n0xE0C4\t0x9254\n0xE0C5\t0x9263\n0xE0C6\t0x9250\n0xE0C7\t0x9272\n0xE0C8\t0x924E\n0xE0C9\t0x9253\n0xE0CA\t0x924C\n0xE0CB\t0x9256\n0xE0CC\t0x9232\n0xE0CD\t0x959F\n0xE0CE\t0x959C\n0xE0CF\t0x959E\n0xE0D0\t0x959B\n0xE0D1\t0x9692\n0xE0D2\t0x9693\n0xE0D3\t0x9691\n0xE0D4\t0x9697\n0xE0D5\t0x96CE\n0xE0D6\t0x96FA\n0xE0D7\t0x96FD\n0xE0D8\t0x96F8\n0xE0D9\t0x96F5\n0xE0DA\t0x9773\n0xE0DB\t0x9777\n0xE0DC\t0x9778\n0xE0DD\t0x9772\n0xE0DE\t0x980F\n0xE0DF\t0x980D\n0xE0E0\t0x980E\n0xE0E1\t0x98AC\n0xE0E2\t0x98F6\n0xE0E3\t0x98F9\n0xE0E4\t0x99AF\n0xE0E5\t0x99B2\n0xE0E6\t0x99B0\n0xE0E7\t0x99B5\n0xE0E8\t0x9AAD\n0xE0E9\t0x9AAB\n0xE0EA\t0x9B5B\n0xE0EB\t0x9CEA\n0xE0EC\t0x9CED\n0xE0ED\t0x9CE7\n0xE0EE\t0x9E80\n0xE0EF\t0x9EFD\n0xE0F0\t0x50E6\n0xE0F1\t0x50D4\n0xE0F2\t0x50D7\n0xE0F3\t0x50E8\n0xE0F4\t0x50F3\n0xE0F5\t0x50DB\n0xE0F6\t0x50EA\n0xE0F7\t0x50DD\n0xE0F8\t0x50E4\n0xE0F9\t0x50D3\n0xE0FA\t0x50EC\n0xE0FB\t0x50F0\n0xE0FC\t0x50EF\n0xE0FD\t0x50E3\n0xE0FE\t0x50E0\n0xE140\t0x51D8\n0xE141\t0x5280\n0xE142\t0x5281\n0xE143\t0x52E9\n0xE144\t0x52EB\n0xE145\t0x5330\n0xE146\t0x53AC\n0xE147\t0x5627\n0xE148\t0x5615\n0xE149\t0x560C\n0xE14A\t0x5612\n0xE14B\t0x55FC\n0xE14C\t0x560F\n0xE14D\t0x561C\n0xE14E\t0x5601\n0xE14F\t0x5613\n0xE150\t0x5602\n0xE151\t0x55FA\n0xE152\t0x561D\n0xE153\t0x5604\n0xE154\t0x55FF\n0xE155\t0x55F9\n0xE156\t0x5889\n0xE157\t0x587C\n0xE158\t0x5890\n0xE159\t0x5898\n0xE15A\t0x5886\n0xE15B\t0x5881\n0xE15C\t0x587F\n0xE15D\t0x5874\n0xE15E\t0x588B\n0xE15F\t0x587A\n0xE160\t0x5887\n0xE161\t0x5891\n0xE162\t0x588E\n0xE163\t0x5876\n0xE164\t0x5882\n0xE165\t0x5888\n0xE166\t0x587B\n0xE167\t0x5894\n0xE168\t0x588F\n0xE169\t0x58FE\n0xE16A\t0x596B\n0xE16B\t0x5ADC\n0xE16C\t0x5AEE\n0xE16D\t0x5AE5\n0xE16E\t0x5AD5\n0xE16F\t0x5AEA\n0xE170\t0x5ADA\n0xE171\t0x5AED\n0xE172\t0x5AEB\n0xE173\t0x5AF3\n0xE174\t0x5AE2\n0xE175\t0x5AE0\n0xE176\t0x5ADB\n0xE177\t0x5AEC\n0xE178\t0x5ADE\n0xE179\t0x5ADD\n0xE17A\t0x5AD9\n0xE17B\t0x5AE8\n0xE17C\t0x5ADF\n0xE17D\t0x5B77\n0xE17E\t0x5BE0\n0xE1A1\t0x5BE3\n0xE1A2\t0x5C63\n0xE1A3\t0x5D82\n0xE1A4\t0x5D80\n0xE1A5\t0x5D7D\n0xE1A6\t0x5D86\n0xE1A7\t0x5D7A\n0xE1A8\t0x5D81\n0xE1A9\t0x5D77\n0xE1AA\t0x5D8A\n0xE1AB\t0x5D89\n0xE1AC\t0x5D88\n0xE1AD\t0x5D7E\n0xE1AE\t0x5D7C\n0xE1AF\t0x5D8D\n0xE1B0\t0x5D79\n0xE1B1\t0x5D7F\n0xE1B2\t0x5E58\n0xE1B3\t0x5E59\n0xE1B4\t0x5E53\n0xE1B5\t0x5ED8\n0xE1B6\t0x5ED1\n0xE1B7\t0x5ED7\n0xE1B8\t0x5ECE\n0xE1B9\t0x5EDC\n0xE1BA\t0x5ED5\n0xE1BB\t0x5ED9\n0xE1BC\t0x5ED2\n0xE1BD\t0x5ED4\n0xE1BE\t0x5F44\n0xE1BF\t0x5F43\n0xE1C0\t0x5F6F\n0xE1C1\t0x5FB6\n0xE1C2\t0x612C\n0xE1C3\t0x6128\n0xE1C4\t0x6141\n0xE1C5\t0x615E\n0xE1C6\t0x6171\n0xE1C7\t0x6173\n0xE1C8\t0x6152\n0xE1C9\t0x6153\n0xE1CA\t0x6172\n0xE1CB\t0x616C\n0xE1CC\t0x6180\n0xE1CD\t0x6174\n0xE1CE\t0x6154\n0xE1CF\t0x617A\n0xE1D0\t0x615B\n0xE1D1\t0x6165\n0xE1D2\t0x613B\n0xE1D3\t0x616A\n0xE1D4\t0x6161\n0xE1D5\t0x6156\n0xE1D6\t0x6229\n0xE1D7\t0x6227\n0xE1D8\t0x622B\n0xE1D9\t0x642B\n0xE1DA\t0x644D\n0xE1DB\t0x645B\n0xE1DC\t0x645D\n0xE1DD\t0x6474\n0xE1DE\t0x6476\n0xE1DF\t0x6472\n0xE1E0\t0x6473\n0xE1E1\t0x647D\n0xE1E2\t0x6475\n0xE1E3\t0x6466\n0xE1E4\t0x64A6\n0xE1E5\t0x644E\n0xE1E6\t0x6482\n0xE1E7\t0x645E\n0xE1E8\t0x645C\n0xE1E9\t0x644B\n0xE1EA\t0x6453\n0xE1EB\t0x6460\n0xE1EC\t0x6450\n0xE1ED\t0x647F\n0xE1EE\t0x643F\n0xE1EF\t0x646C\n0xE1F0\t0x646B\n0xE1F1\t0x6459\n0xE1F2\t0x6465\n0xE1F3\t0x6477\n0xE1F4\t0x6573\n0xE1F5\t0x65A0\n0xE1F6\t0x66A1\n0xE1F7\t0x66A0\n0xE1F8\t0x669F\n0xE1F9\t0x6705\n0xE1FA\t0x6704\n0xE1FB\t0x6722\n0xE1FC\t0x69B1\n0xE1FD\t0x69B6\n0xE1FE\t0x69C9\n0xE240\t0x69A0\n0xE241\t0x69CE\n0xE242\t0x6996\n0xE243\t0x69B0\n0xE244\t0x69AC\n0xE245\t0x69BC\n0xE246\t0x6991\n0xE247\t0x6999\n0xE248\t0x698E\n0xE249\t0x69A7\n0xE24A\t0x698D\n0xE24B\t0x69A9\n0xE24C\t0x69BE\n0xE24D\t0x69AF\n0xE24E\t0x69BF\n0xE24F\t0x69C4\n0xE250\t0x69BD\n0xE251\t0x69A4\n0xE252\t0x69D4\n0xE253\t0x69B9\n0xE254\t0x69CA\n0xE255\t0x699A\n0xE256\t0x69CF\n0xE257\t0x69B3\n0xE258\t0x6993\n0xE259\t0x69AA\n0xE25A\t0x69A1\n0xE25B\t0x699E\n0xE25C\t0x69D9\n0xE25D\t0x6997\n0xE25E\t0x6990\n0xE25F\t0x69C2\n0xE260\t0x69B5\n0xE261\t0x69A5\n0xE262\t0x69C6\n0xE263\t0x6B4A\n0xE264\t0x6B4D\n0xE265\t0x6B4B\n0xE266\t0x6B9E\n0xE267\t0x6B9F\n0xE268\t0x6BA0\n0xE269\t0x6BC3\n0xE26A\t0x6BC4\n0xE26B\t0x6BFE\n0xE26C\t0x6ECE\n0xE26D\t0x6EF5\n0xE26E\t0x6EF1\n0xE26F\t0x6F03\n0xE270\t0x6F25\n0xE271\t0x6EF8\n0xE272\t0x6F37\n0xE273\t0x6EFB\n0xE274\t0x6F2E\n0xE275\t0x6F09\n0xE276\t0x6F4E\n0xE277\t0x6F19\n0xE278\t0x6F1A\n0xE279\t0x6F27\n0xE27A\t0x6F18\n0xE27B\t0x6F3B\n0xE27C\t0x6F12\n0xE27D\t0x6EED\n0xE27E\t0x6F0A\n0xE2A1\t0x6F36\n0xE2A2\t0x6F73\n0xE2A3\t0x6EF9\n0xE2A4\t0x6EEE\n0xE2A5\t0x6F2D\n0xE2A6\t0x6F40\n0xE2A7\t0x6F30\n0xE2A8\t0x6F3C\n0xE2A9\t0x6F35\n0xE2AA\t0x6EEB\n0xE2AB\t0x6F07\n0xE2AC\t0x6F0E\n0xE2AD\t0x6F43\n0xE2AE\t0x6F05\n0xE2AF\t0x6EFD\n0xE2B0\t0x6EF6\n0xE2B1\t0x6F39\n0xE2B2\t0x6F1C\n0xE2B3\t0x6EFC\n0xE2B4\t0x6F3A\n0xE2B5\t0x6F1F\n0xE2B6\t0x6F0D\n0xE2B7\t0x6F1E\n0xE2B8\t0x6F08\n0xE2B9\t0x6F21\n0xE2BA\t0x7187\n0xE2BB\t0x7190\n0xE2BC\t0x7189\n0xE2BD\t0x7180\n0xE2BE\t0x7185\n0xE2BF\t0x7182\n0xE2C0\t0x718F\n0xE2C1\t0x717B\n0xE2C2\t0x7186\n0xE2C3\t0x7181\n0xE2C4\t0x7197\n0xE2C5\t0x7244\n0xE2C6\t0x7253\n0xE2C7\t0x7297\n0xE2C8\t0x7295\n0xE2C9\t0x7293\n0xE2CA\t0x7343\n0xE2CB\t0x734D\n0xE2CC\t0x7351\n0xE2CD\t0x734C\n0xE2CE\t0x7462\n0xE2CF\t0x7473\n0xE2D0\t0x7471\n0xE2D1\t0x7475\n0xE2D2\t0x7472\n0xE2D3\t0x7467\n0xE2D4\t0x746E\n0xE2D5\t0x7500\n0xE2D6\t0x7502\n0xE2D7\t0x7503\n0xE2D8\t0x757D\n0xE2D9\t0x7590\n0xE2DA\t0x7616\n0xE2DB\t0x7608\n0xE2DC\t0x760C\n0xE2DD\t0x7615\n0xE2DE\t0x7611\n0xE2DF\t0x760A\n0xE2E0\t0x7614\n0xE2E1\t0x76B8\n0xE2E2\t0x7781\n0xE2E3\t0x777C\n0xE2E4\t0x7785\n0xE2E5\t0x7782\n0xE2E6\t0x776E\n0xE2E7\t0x7780\n0xE2E8\t0x776F\n0xE2E9\t0x777E\n0xE2EA\t0x7783\n0xE2EB\t0x78B2\n0xE2EC\t0x78AA\n0xE2ED\t0x78B4\n0xE2EE\t0x78AD\n0xE2EF\t0x78A8\n0xE2F0\t0x787E\n0xE2F1\t0x78AB\n0xE2F2\t0x789E\n0xE2F3\t0x78A5\n0xE2F4\t0x78A0\n0xE2F5\t0x78AC\n0xE2F6\t0x78A2\n0xE2F7\t0x78A4\n0xE2F8\t0x7998\n0xE2F9\t0x798A\n0xE2FA\t0x798B\n0xE2FB\t0x7996\n0xE2FC\t0x7995\n0xE2FD\t0x7994\n0xE2FE\t0x7993\n0xE340\t0x7997\n0xE341\t0x7988\n0xE342\t0x7992\n0xE343\t0x7990\n0xE344\t0x7A2B\n0xE345\t0x7A4A\n0xE346\t0x7A30\n0xE347\t0x7A2F\n0xE348\t0x7A28\n0xE349\t0x7A26\n0xE34A\t0x7AA8\n0xE34B\t0x7AAB\n0xE34C\t0x7AAC\n0xE34D\t0x7AEE\n0xE34E\t0x7B88\n0xE34F\t0x7B9C\n0xE350\t0x7B8A\n0xE351\t0x7B91\n0xE352\t0x7B90\n0xE353\t0x7B96\n0xE354\t0x7B8D\n0xE355\t0x7B8C\n0xE356\t0x7B9B\n0xE357\t0x7B8E\n0xE358\t0x7B85\n0xE359\t0x7B98\n0xE35A\t0x5284\n0xE35B\t0x7B99\n0xE35C\t0x7BA4\n0xE35D\t0x7B82\n0xE35E\t0x7CBB\n0xE35F\t0x7CBF\n0xE360\t0x7CBC\n0xE361\t0x7CBA\n0xE362\t0x7DA7\n0xE363\t0x7DB7\n0xE364\t0x7DC2\n0xE365\t0x7DA3\n0xE366\t0x7DAA\n0xE367\t0x7DC1\n0xE368\t0x7DC0\n0xE369\t0x7DC5\n0xE36A\t0x7D9D\n0xE36B\t0x7DCE\n0xE36C\t0x7DC4\n0xE36D\t0x7DC6\n0xE36E\t0x7DCB\n0xE36F\t0x7DCC\n0xE370\t0x7DAF\n0xE371\t0x7DB9\n0xE372\t0x7D96\n0xE373\t0x7DBC\n0xE374\t0x7D9F\n0xE375\t0x7DA6\n0xE376\t0x7DAE\n0xE377\t0x7DA9\n0xE378\t0x7DA1\n0xE379\t0x7DC9\n0xE37A\t0x7F73\n0xE37B\t0x7FE2\n0xE37C\t0x7FE3\n0xE37D\t0x7FE5\n0xE37E\t0x7FDE\n0xE3A1\t0x8024\n0xE3A2\t0x805D\n0xE3A3\t0x805C\n0xE3A4\t0x8189\n0xE3A5\t0x8186\n0xE3A6\t0x8183\n0xE3A7\t0x8187\n0xE3A8\t0x818D\n0xE3A9\t0x818C\n0xE3AA\t0x818B\n0xE3AB\t0x8215\n0xE3AC\t0x8497\n0xE3AD\t0x84A4\n0xE3AE\t0x84A1\n0xE3AF\t0x849F\n0xE3B0\t0x84BA\n0xE3B1\t0x84CE\n0xE3B2\t0x84C2\n0xE3B3\t0x84AC\n0xE3B4\t0x84AE\n0xE3B5\t0x84AB\n0xE3B6\t0x84B9\n0xE3B7\t0x84B4\n0xE3B8\t0x84C1\n0xE3B9\t0x84CD\n0xE3BA\t0x84AA\n0xE3BB\t0x849A\n0xE3BC\t0x84B1\n0xE3BD\t0x84D0\n0xE3BE\t0x849D\n0xE3BF\t0x84A7\n0xE3C0\t0x84BB\n0xE3C1\t0x84A2\n0xE3C2\t0x8494\n0xE3C3\t0x84C7\n0xE3C4\t0x84CC\n0xE3C5\t0x849B\n0xE3C6\t0x84A9\n0xE3C7\t0x84AF\n0xE3C8\t0x84A8\n0xE3C9\t0x84D6\n0xE3CA\t0x8498\n0xE3CB\t0x84B6\n0xE3CC\t0x84CF\n0xE3CD\t0x84A0\n0xE3CE\t0x84D7\n0xE3CF\t0x84D4\n0xE3D0\t0x84D2\n0xE3D1\t0x84DB\n0xE3D2\t0x84B0\n0xE3D3\t0x8491\n0xE3D4\t0x8661\n0xE3D5\t0x8733\n0xE3D6\t0x8723\n0xE3D7\t0x8728\n0xE3D8\t0x876B\n0xE3D9\t0x8740\n0xE3DA\t0x872E\n0xE3DB\t0x871E\n0xE3DC\t0x8721\n0xE3DD\t0x8719\n0xE3DE\t0x871B\n0xE3DF\t0x8743\n0xE3E0\t0x872C\n0xE3E1\t0x8741\n0xE3E2\t0x873E\n0xE3E3\t0x8746\n0xE3E4\t0x8720\n0xE3E5\t0x8732\n0xE3E6\t0x872A\n0xE3E7\t0x872D\n0xE3E8\t0x873C\n0xE3E9\t0x8712\n0xE3EA\t0x873A\n0xE3EB\t0x8731\n0xE3EC\t0x8735\n0xE3ED\t0x8742\n0xE3EE\t0x8726\n0xE3EF\t0x8727\n0xE3F0\t0x8738\n0xE3F1\t0x8724\n0xE3F2\t0x871A\n0xE3F3\t0x8730\n0xE3F4\t0x8711\n0xE3F5\t0x88F7\n0xE3F6\t0x88E7\n0xE3F7\t0x88F1\n0xE3F8\t0x88F2\n0xE3F9\t0x88FA\n0xE3FA\t0x88FE\n0xE3FB\t0x88EE\n0xE3FC\t0x88FC\n0xE3FD\t0x88F6\n0xE3FE\t0x88FB\n0xE440\t0x88F0\n0xE441\t0x88EC\n0xE442\t0x88EB\n0xE443\t0x899D\n0xE444\t0x89A1\n0xE445\t0x899F\n0xE446\t0x899E\n0xE447\t0x89E9\n0xE448\t0x89EB\n0xE449\t0x89E8\n0xE44A\t0x8AAB\n0xE44B\t0x8A99\n0xE44C\t0x8A8B\n0xE44D\t0x8A92\n0xE44E\t0x8A8F\n0xE44F\t0x8A96\n0xE450\t0x8C3D\n0xE451\t0x8C68\n0xE452\t0x8C69\n0xE453\t0x8CD5\n0xE454\t0x8CCF\n0xE455\t0x8CD7\n0xE456\t0x8D96\n0xE457\t0x8E09\n0xE458\t0x8E02\n0xE459\t0x8DFF\n0xE45A\t0x8E0D\n0xE45B\t0x8DFD\n0xE45C\t0x8E0A\n0xE45D\t0x8E03\n0xE45E\t0x8E07\n0xE45F\t0x8E06\n0xE460\t0x8E05\n0xE461\t0x8DFE\n0xE462\t0x8E00\n0xE463\t0x8E04\n0xE464\t0x8F10\n0xE465\t0x8F11\n0xE466\t0x8F0E\n0xE467\t0x8F0D\n0xE468\t0x9123\n0xE469\t0x911C\n0xE46A\t0x9120\n0xE46B\t0x9122\n0xE46C\t0x911F\n0xE46D\t0x911D\n0xE46E\t0x911A\n0xE46F\t0x9124\n0xE470\t0x9121\n0xE471\t0x911B\n0xE472\t0x917A\n0xE473\t0x9172\n0xE474\t0x9179\n0xE475\t0x9173\n0xE476\t0x92A5\n0xE477\t0x92A4\n0xE478\t0x9276\n0xE479\t0x929B\n0xE47A\t0x927A\n0xE47B\t0x92A0\n0xE47C\t0x9294\n0xE47D\t0x92AA\n0xE47E\t0x928D\n0xE4A1\t0x92A6\n0xE4A2\t0x929A\n0xE4A3\t0x92AB\n0xE4A4\t0x9279\n0xE4A5\t0x9297\n0xE4A6\t0x927F\n0xE4A7\t0x92A3\n0xE4A8\t0x92EE\n0xE4A9\t0x928E\n0xE4AA\t0x9282\n0xE4AB\t0x9295\n0xE4AC\t0x92A2\n0xE4AD\t0x927D\n0xE4AE\t0x9288\n0xE4AF\t0x92A1\n0xE4B0\t0x928A\n0xE4B1\t0x9286\n0xE4B2\t0x928C\n0xE4B3\t0x9299\n0xE4B4\t0x92A7\n0xE4B5\t0x927E\n0xE4B6\t0x9287\n0xE4B7\t0x92A9\n0xE4B8\t0x929D\n0xE4B9\t0x928B\n0xE4BA\t0x922D\n0xE4BB\t0x969E\n0xE4BC\t0x96A1\n0xE4BD\t0x96FF\n0xE4BE\t0x9758\n0xE4BF\t0x977D\n0xE4C0\t0x977A\n0xE4C1\t0x977E\n0xE4C2\t0x9783\n0xE4C3\t0x9780\n0xE4C4\t0x9782\n0xE4C5\t0x977B\n0xE4C6\t0x9784\n0xE4C7\t0x9781\n0xE4C8\t0x977F\n0xE4C9\t0x97CE\n0xE4CA\t0x97CD\n0xE4CB\t0x9816\n0xE4CC\t0x98AD\n0xE4CD\t0x98AE\n0xE4CE\t0x9902\n0xE4CF\t0x9900\n0xE4D0\t0x9907\n0xE4D1\t0x999D\n0xE4D2\t0x999C\n0xE4D3\t0x99C3\n0xE4D4\t0x99B9\n0xE4D5\t0x99BB\n0xE4D6\t0x99BA\n0xE4D7\t0x99C2\n0xE4D8\t0x99BD\n0xE4D9\t0x99C7\n0xE4DA\t0x9AB1\n0xE4DB\t0x9AE3\n0xE4DC\t0x9AE7\n0xE4DD\t0x9B3E\n0xE4DE\t0x9B3F\n0xE4DF\t0x9B60\n0xE4E0\t0x9B61\n0xE4E1\t0x9B5F\n0xE4E2\t0x9CF1\n0xE4E3\t0x9CF2\n0xE4E4\t0x9CF5\n0xE4E5\t0x9EA7\n0xE4E6\t0x50FF\n0xE4E7\t0x5103\n0xE4E8\t0x5130\n0xE4E9\t0x50F8\n0xE4EA\t0x5106\n0xE4EB\t0x5107\n0xE4EC\t0x50F6\n0xE4ED\t0x50FE\n0xE4EE\t0x510B\n0xE4EF\t0x510C\n0xE4F0\t0x50FD\n0xE4F1\t0x510A\n0xE4F2\t0x528B\n0xE4F3\t0x528C\n0xE4F4\t0x52F1\n0xE4F5\t0x52EF\n0xE4F6\t0x5648\n0xE4F7\t0x5642\n0xE4F8\t0x564C\n0xE4F9\t0x5635\n0xE4FA\t0x5641\n0xE4FB\t0x564A\n0xE4FC\t0x5649\n0xE4FD\t0x5646\n0xE4FE\t0x5658\n0xE540\t0x565A\n0xE541\t0x5640\n0xE542\t0x5633\n0xE543\t0x563D\n0xE544\t0x562C\n0xE545\t0x563E\n0xE546\t0x5638\n0xE547\t0x562A\n0xE548\t0x563A\n0xE549\t0x571A\n0xE54A\t0x58AB\n0xE54B\t0x589D\n0xE54C\t0x58B1\n0xE54D\t0x58A0\n0xE54E\t0x58A3\n0xE54F\t0x58AF\n0xE550\t0x58AC\n0xE551\t0x58A5\n0xE552\t0x58A1\n0xE553\t0x58FF\n0xE554\t0x5AFF\n0xE555\t0x5AF4\n0xE556\t0x5AFD\n0xE557\t0x5AF7\n0xE558\t0x5AF6\n0xE559\t0x5B03\n0xE55A\t0x5AF8\n0xE55B\t0x5B02\n0xE55C\t0x5AF9\n0xE55D\t0x5B01\n0xE55E\t0x5B07\n0xE55F\t0x5B05\n0xE560\t0x5B0F\n0xE561\t0x5C67\n0xE562\t0x5D99\n0xE563\t0x5D97\n0xE564\t0x5D9F\n0xE565\t0x5D92\n0xE566\t0x5DA2\n0xE567\t0x5D93\n0xE568\t0x5D95\n0xE569\t0x5DA0\n0xE56A\t0x5D9C\n0xE56B\t0x5DA1\n0xE56C\t0x5D9A\n0xE56D\t0x5D9E\n0xE56E\t0x5E69\n0xE56F\t0x5E5D\n0xE570\t0x5E60\n0xE571\t0x5E5C\n0xE572\t0x7DF3\n0xE573\t0x5EDB\n0xE574\t0x5EDE\n0xE575\t0x5EE1\n0xE576\t0x5F49\n0xE577\t0x5FB2\n0xE578\t0x618B\n0xE579\t0x6183\n0xE57A\t0x6179\n0xE57B\t0x61B1\n0xE57C\t0x61B0\n0xE57D\t0x61A2\n0xE57E\t0x6189\n0xE5A1\t0x619B\n0xE5A2\t0x6193\n0xE5A3\t0x61AF\n0xE5A4\t0x61AD\n0xE5A5\t0x619F\n0xE5A6\t0x6192\n0xE5A7\t0x61AA\n0xE5A8\t0x61A1\n0xE5A9\t0x618D\n0xE5AA\t0x6166\n0xE5AB\t0x61B3\n0xE5AC\t0x622D\n0xE5AD\t0x646E\n0xE5AE\t0x6470\n0xE5AF\t0x6496\n0xE5B0\t0x64A0\n0xE5B1\t0x6485\n0xE5B2\t0x6497\n0xE5B3\t0x649C\n0xE5B4\t0x648F\n0xE5B5\t0x648B\n0xE5B6\t0x648A\n0xE5B7\t0x648C\n0xE5B8\t0x64A3\n0xE5B9\t0x649F\n0xE5BA\t0x6468\n0xE5BB\t0x64B1\n0xE5BC\t0x6498\n0xE5BD\t0x6576\n0xE5BE\t0x657A\n0xE5BF\t0x6579\n0xE5C0\t0x657B\n0xE5C1\t0x65B2\n0xE5C2\t0x65B3\n0xE5C3\t0x66B5\n0xE5C4\t0x66B0\n0xE5C5\t0x66A9\n0xE5C6\t0x66B2\n0xE5C7\t0x66B7\n0xE5C8\t0x66AA\n0xE5C9\t0x66AF\n0xE5CA\t0x6A00\n0xE5CB\t0x6A06\n0xE5CC\t0x6A17\n0xE5CD\t0x69E5\n0xE5CE\t0x69F8\n0xE5CF\t0x6A15\n0xE5D0\t0x69F1\n0xE5D1\t0x69E4\n0xE5D2\t0x6A20\n0xE5D3\t0x69FF\n0xE5D4\t0x69EC\n0xE5D5\t0x69E2\n0xE5D6\t0x6A1B\n0xE5D7\t0x6A1D\n0xE5D8\t0x69FE\n0xE5D9\t0x6A27\n0xE5DA\t0x69F2\n0xE5DB\t0x69EE\n0xE5DC\t0x6A14\n0xE5DD\t0x69F7\n0xE5DE\t0x69E7\n0xE5DF\t0x6A40\n0xE5E0\t0x6A08\n0xE5E1\t0x69E6\n0xE5E2\t0x69FB\n0xE5E3\t0x6A0D\n0xE5E4\t0x69FC\n0xE5E5\t0x69EB\n0xE5E6\t0x6A09\n0xE5E7\t0x6A04\n0xE5E8\t0x6A18\n0xE5E9\t0x6A25\n0xE5EA\t0x6A0F\n0xE5EB\t0x69F6\n0xE5EC\t0x6A26\n0xE5ED\t0x6A07\n0xE5EE\t0x69F4\n0xE5EF\t0x6A16\n0xE5F0\t0x6B51\n0xE5F1\t0x6BA5\n0xE5F2\t0x6BA3\n0xE5F3\t0x6BA2\n0xE5F4\t0x6BA6\n0xE5F5\t0x6C01\n0xE5F6\t0x6C00\n0xE5F7\t0x6BFF\n0xE5F8\t0x6C02\n0xE5F9\t0x6F41\n0xE5FA\t0x6F26\n0xE5FB\t0x6F7E\n0xE5FC\t0x6F87\n0xE5FD\t0x6FC6\n0xE5FE\t0x6F92\n0xE640\t0x6F8D\n0xE641\t0x6F89\n0xE642\t0x6F8C\n0xE643\t0x6F62\n0xE644\t0x6F4F\n0xE645\t0x6F85\n0xE646\t0x6F5A\n0xE647\t0x6F96\n0xE648\t0x6F76\n0xE649\t0x6F6C\n0xE64A\t0x6F82\n0xE64B\t0x6F55\n0xE64C\t0x6F72\n0xE64D\t0x6F52\n0xE64E\t0x6F50\n0xE64F\t0x6F57\n0xE650\t0x6F94\n0xE651\t0x6F93\n0xE652\t0x6F5D\n0xE653\t0x6F00\n0xE654\t0x6F61\n0xE655\t0x6F6B\n0xE656\t0x6F7D\n0xE657\t0x6F67\n0xE658\t0x6F90\n0xE659\t0x6F53\n0xE65A\t0x6F8B\n0xE65B\t0x6F69\n0xE65C\t0x6F7F\n0xE65D\t0x6F95\n0xE65E\t0x6F63\n0xE65F\t0x6F77\n0xE660\t0x6F6A\n0xE661\t0x6F7B\n0xE662\t0x71B2\n0xE663\t0x71AF\n0xE664\t0x719B\n0xE665\t0x71B0\n0xE666\t0x71A0\n0xE667\t0x719A\n0xE668\t0x71A9\n0xE669\t0x71B5\n0xE66A\t0x719D\n0xE66B\t0x71A5\n0xE66C\t0x719E\n0xE66D\t0x71A4\n0xE66E\t0x71A1\n0xE66F\t0x71AA\n0xE670\t0x719C\n0xE671\t0x71A7\n0xE672\t0x71B3\n0xE673\t0x7298\n0xE674\t0x729A\n0xE675\t0x7358\n0xE676\t0x7352\n0xE677\t0x735E\n0xE678\t0x735F\n0xE679\t0x7360\n0xE67A\t0x735D\n0xE67B\t0x735B\n0xE67C\t0x7361\n0xE67D\t0x735A\n0xE67E\t0x7359\n0xE6A1\t0x7362\n0xE6A2\t0x7487\n0xE6A3\t0x7489\n0xE6A4\t0x748A\n0xE6A5\t0x7486\n0xE6A6\t0x7481\n0xE6A7\t0x747D\n0xE6A8\t0x7485\n0xE6A9\t0x7488\n0xE6AA\t0x747C\n0xE6AB\t0x7479\n0xE6AC\t0x7508\n0xE6AD\t0x7507\n0xE6AE\t0x757E\n0xE6AF\t0x7625\n0xE6B0\t0x761E\n0xE6B1\t0x7619\n0xE6B2\t0x761D\n0xE6B3\t0x761C\n0xE6B4\t0x7623\n0xE6B5\t0x761A\n0xE6B6\t0x7628\n0xE6B7\t0x761B\n0xE6B8\t0x769C\n0xE6B9\t0x769D\n0xE6BA\t0x769E\n0xE6BB\t0x769B\n0xE6BC\t0x778D\n0xE6BD\t0x778F\n0xE6BE\t0x7789\n0xE6BF\t0x7788\n0xE6C0\t0x78CD\n0xE6C1\t0x78BB\n0xE6C2\t0x78CF\n0xE6C3\t0x78CC\n0xE6C4\t0x78D1\n0xE6C5\t0x78CE\n0xE6C6\t0x78D4\n0xE6C7\t0x78C8\n0xE6C8\t0x78C3\n0xE6C9\t0x78C4\n0xE6CA\t0x78C9\n0xE6CB\t0x799A\n0xE6CC\t0x79A1\n0xE6CD\t0x79A0\n0xE6CE\t0x799C\n0xE6CF\t0x79A2\n0xE6D0\t0x799B\n0xE6D1\t0x6B76\n0xE6D2\t0x7A39\n0xE6D3\t0x7AB2\n0xE6D4\t0x7AB4\n0xE6D5\t0x7AB3\n0xE6D6\t0x7BB7\n0xE6D7\t0x7BCB\n0xE6D8\t0x7BBE\n0xE6D9\t0x7BAC\n0xE6DA\t0x7BCE\n0xE6DB\t0x7BAF\n0xE6DC\t0x7BB9\n0xE6DD\t0x7BCA\n0xE6DE\t0x7BB5\n0xE6DF\t0x7CC5\n0xE6E0\t0x7CC8\n0xE6E1\t0x7CCC\n0xE6E2\t0x7CCB\n0xE6E3\t0x7DF7\n0xE6E4\t0x7DDB\n0xE6E5\t0x7DEA\n0xE6E6\t0x7DE7\n0xE6E7\t0x7DD7\n0xE6E8\t0x7DE1\n0xE6E9\t0x7E03\n0xE6EA\t0x7DFA\n0xE6EB\t0x7DE6\n0xE6EC\t0x7DF6\n0xE6ED\t0x7DF1\n0xE6EE\t0x7DF0\n0xE6EF\t0x7DEE\n0xE6F0\t0x7DDF\n0xE6F1\t0x7F76\n0xE6F2\t0x7FAC\n0xE6F3\t0x7FB0\n0xE6F4\t0x7FAD\n0xE6F5\t0x7FED\n0xE6F6\t0x7FEB\n0xE6F7\t0x7FEA\n0xE6F8\t0x7FEC\n0xE6F9\t0x7FE6\n0xE6FA\t0x7FE8\n0xE6FB\t0x8064\n0xE6FC\t0x8067\n0xE6FD\t0x81A3\n0xE6FE\t0x819F\n0xE740\t0x819E\n0xE741\t0x8195\n0xE742\t0x81A2\n0xE743\t0x8199\n0xE744\t0x8197\n0xE745\t0x8216\n0xE746\t0x824F\n0xE747\t0x8253\n0xE748\t0x8252\n0xE749\t0x8250\n0xE74A\t0x824E\n0xE74B\t0x8251\n0xE74C\t0x8524\n0xE74D\t0x853B\n0xE74E\t0x850F\n0xE74F\t0x8500\n0xE750\t0x8529\n0xE751\t0x850E\n0xE752\t0x8509\n0xE753\t0x850D\n0xE754\t0x851F\n0xE755\t0x850A\n0xE756\t0x8527\n0xE757\t0x851C\n0xE758\t0x84FB\n0xE759\t0x852B\n0xE75A\t0x84FA\n0xE75B\t0x8508\n0xE75C\t0x850C\n0xE75D\t0x84F4\n0xE75E\t0x852A\n0xE75F\t0x84F2\n0xE760\t0x8515\n0xE761\t0x84F7\n0xE762\t0x84EB\n0xE763\t0x84F3\n0xE764\t0x84FC\n0xE765\t0x8512\n0xE766\t0x84EA\n0xE767\t0x84E9\n0xE768\t0x8516\n0xE769\t0x84FE\n0xE76A\t0x8528\n0xE76B\t0x851D\n0xE76C\t0x852E\n0xE76D\t0x8502\n0xE76E\t0x84FD\n0xE76F\t0x851E\n0xE770\t0x84F6\n0xE771\t0x8531\n0xE772\t0x8526\n0xE773\t0x84E7\n0xE774\t0x84E8\n0xE775\t0x84F0\n0xE776\t0x84EF\n0xE777\t0x84F9\n0xE778\t0x8518\n0xE779\t0x8520\n0xE77A\t0x8530\n0xE77B\t0x850B\n0xE77C\t0x8519\n0xE77D\t0x852F\n0xE77E\t0x8662\n0xE7A1\t0x8756\n0xE7A2\t0x8763\n0xE7A3\t0x8764\n0xE7A4\t0x8777\n0xE7A5\t0x87E1\n0xE7A6\t0x8773\n0xE7A7\t0x8758\n0xE7A8\t0x8754\n0xE7A9\t0x875B\n0xE7AA\t0x8752\n0xE7AB\t0x8761\n0xE7AC\t0x875A\n0xE7AD\t0x8751\n0xE7AE\t0x875E\n0xE7AF\t0x876D\n0xE7B0\t0x876A\n0xE7B1\t0x8750\n0xE7B2\t0x874E\n0xE7B3\t0x875F\n0xE7B4\t0x875D\n0xE7B5\t0x876F\n0xE7B6\t0x876C\n0xE7B7\t0x877A\n0xE7B8\t0x876E\n0xE7B9\t0x875C\n0xE7BA\t0x8765\n0xE7BB\t0x874F\n0xE7BC\t0x877B\n0xE7BD\t0x8775\n0xE7BE\t0x8762\n0xE7BF\t0x8767\n0xE7C0\t0x8769\n0xE7C1\t0x885A\n0xE7C2\t0x8905\n0xE7C3\t0x890C\n0xE7C4\t0x8914\n0xE7C5\t0x890B\n0xE7C6\t0x8917\n0xE7C7\t0x8918\n0xE7C8\t0x8919\n0xE7C9\t0x8906\n0xE7CA\t0x8916\n0xE7CB\t0x8911\n0xE7CC\t0x890E\n0xE7CD\t0x8909\n0xE7CE\t0x89A2\n0xE7CF\t0x89A4\n0xE7D0\t0x89A3\n0xE7D1\t0x89ED\n0xE7D2\t0x89F0\n0xE7D3\t0x89EC\n0xE7D4\t0x8ACF\n0xE7D5\t0x8AC6\n0xE7D6\t0x8AB8\n0xE7D7\t0x8AD3\n0xE7D8\t0x8AD1\n0xE7D9\t0x8AD4\n0xE7DA\t0x8AD5\n0xE7DB\t0x8ABB\n0xE7DC\t0x8AD7\n0xE7DD\t0x8ABE\n0xE7DE\t0x8AC0\n0xE7DF\t0x8AC5\n0xE7E0\t0x8AD8\n0xE7E1\t0x8AC3\n0xE7E2\t0x8ABA\n0xE7E3\t0x8ABD\n0xE7E4\t0x8AD9\n0xE7E5\t0x8C3E\n0xE7E6\t0x8C4D\n0xE7E7\t0x8C8F\n0xE7E8\t0x8CE5\n0xE7E9\t0x8CDF\n0xE7EA\t0x8CD9\n0xE7EB\t0x8CE8\n0xE7EC\t0x8CDA\n0xE7ED\t0x8CDD\n0xE7EE\t0x8CE7\n0xE7EF\t0x8DA0\n0xE7F0\t0x8D9C\n0xE7F1\t0x8DA1\n0xE7F2\t0x8D9B\n0xE7F3\t0x8E20\n0xE7F4\t0x8E23\n0xE7F5\t0x8E25\n0xE7F6\t0x8E24\n0xE7F7\t0x8E2E\n0xE7F8\t0x8E15\n0xE7F9\t0x8E1B\n0xE7FA\t0x8E16\n0xE7FB\t0x8E11\n0xE7FC\t0x8E19\n0xE7FD\t0x8E26\n0xE7FE\t0x8E27\n0xE840\t0x8E14\n0xE841\t0x8E12\n0xE842\t0x8E18\n0xE843\t0x8E13\n0xE844\t0x8E1C\n0xE845\t0x8E17\n0xE846\t0x8E1A\n0xE847\t0x8F2C\n0xE848\t0x8F24\n0xE849\t0x8F18\n0xE84A\t0x8F1A\n0xE84B\t0x8F20\n0xE84C\t0x8F23\n0xE84D\t0x8F16\n0xE84E\t0x8F17\n0xE84F\t0x9073\n0xE850\t0x9070\n0xE851\t0x906F\n0xE852\t0x9067\n0xE853\t0x906B\n0xE854\t0x912F\n0xE855\t0x912B\n0xE856\t0x9129\n0xE857\t0x912A\n0xE858\t0x9132\n0xE859\t0x9126\n0xE85A\t0x912E\n0xE85B\t0x9185\n0xE85C\t0x9186\n0xE85D\t0x918A\n0xE85E\t0x9181\n0xE85F\t0x9182\n0xE860\t0x9184\n0xE861\t0x9180\n0xE862\t0x92D0\n0xE863\t0x92C3\n0xE864\t0x92C4\n0xE865\t0x92C0\n0xE866\t0x92D9\n0xE867\t0x92B6\n0xE868\t0x92CF\n0xE869\t0x92F1\n0xE86A\t0x92DF\n0xE86B\t0x92D8\n0xE86C\t0x92E9\n0xE86D\t0x92D7\n0xE86E\t0x92DD\n0xE86F\t0x92CC\n0xE870\t0x92EF\n0xE871\t0x92C2\n0xE872\t0x92E8\n0xE873\t0x92CA\n0xE874\t0x92C8\n0xE875\t0x92CE\n0xE876\t0x92E6\n0xE877\t0x92CD\n0xE878\t0x92D5\n0xE879\t0x92C9\n0xE87A\t0x92E0\n0xE87B\t0x92DE\n0xE87C\t0x92E7\n0xE87D\t0x92D1\n0xE87E\t0x92D3\n0xE8A1\t0x92B5\n0xE8A2\t0x92E1\n0xE8A3\t0x92C6\n0xE8A4\t0x92B4\n0xE8A5\t0x957C\n0xE8A6\t0x95AC\n0xE8A7\t0x95AB\n0xE8A8\t0x95AE\n0xE8A9\t0x95B0\n0xE8AA\t0x96A4\n0xE8AB\t0x96A2\n0xE8AC\t0x96D3\n0xE8AD\t0x9705\n0xE8AE\t0x9708\n0xE8AF\t0x9702\n0xE8B0\t0x975A\n0xE8B1\t0x978A\n0xE8B2\t0x978E\n0xE8B3\t0x9788\n0xE8B4\t0x97D0\n0xE8B5\t0x97CF\n0xE8B6\t0x981E\n0xE8B7\t0x981D\n0xE8B8\t0x9826\n0xE8B9\t0x9829\n0xE8BA\t0x9828\n0xE8BB\t0x9820\n0xE8BC\t0x981B\n0xE8BD\t0x9827\n0xE8BE\t0x98B2\n0xE8BF\t0x9908\n0xE8C0\t0x98FA\n0xE8C1\t0x9911\n0xE8C2\t0x9914\n0xE8C3\t0x9916\n0xE8C4\t0x9917\n0xE8C5\t0x9915\n0xE8C6\t0x99DC\n0xE8C7\t0x99CD\n0xE8C8\t0x99CF\n0xE8C9\t0x99D3\n0xE8CA\t0x99D4\n0xE8CB\t0x99CE\n0xE8CC\t0x99C9\n0xE8CD\t0x99D6\n0xE8CE\t0x99D8\n0xE8CF\t0x99CB\n0xE8D0\t0x99D7\n0xE8D1\t0x99CC\n0xE8D2\t0x9AB3\n0xE8D3\t0x9AEC\n0xE8D4\t0x9AEB\n0xE8D5\t0x9AF3\n0xE8D6\t0x9AF2\n0xE8D7\t0x9AF1\n0xE8D8\t0x9B46\n0xE8D9\t0x9B43\n0xE8DA\t0x9B67\n0xE8DB\t0x9B74\n0xE8DC\t0x9B71\n0xE8DD\t0x9B66\n0xE8DE\t0x9B76\n0xE8DF\t0x9B75\n0xE8E0\t0x9B70\n0xE8E1\t0x9B68\n0xE8E2\t0x9B64\n0xE8E3\t0x9B6C\n0xE8E4\t0x9CFC\n0xE8E5\t0x9CFA\n0xE8E6\t0x9CFD\n0xE8E7\t0x9CFF\n0xE8E8\t0x9CF7\n0xE8E9\t0x9D07\n0xE8EA\t0x9D00\n0xE8EB\t0x9CF9\n0xE8EC\t0x9CFB\n0xE8ED\t0x9D08\n0xE8EE\t0x9D05\n0xE8EF\t0x9D04\n0xE8F0\t0x9E83\n0xE8F1\t0x9ED3\n0xE8F2\t0x9F0F\n0xE8F3\t0x9F10\n0xE8F4\t0x511C\n0xE8F5\t0x5113\n0xE8F6\t0x5117\n0xE8F7\t0x511A\n0xE8F8\t0x5111\n0xE8F9\t0x51DE\n0xE8FA\t0x5334\n0xE8FB\t0x53E1\n0xE8FC\t0x5670\n0xE8FD\t0x5660\n0xE8FE\t0x566E\n0xE940\t0x5673\n0xE941\t0x5666\n0xE942\t0x5663\n0xE943\t0x566D\n0xE944\t0x5672\n0xE945\t0x565E\n0xE946\t0x5677\n0xE947\t0x571C\n0xE948\t0x571B\n0xE949\t0x58C8\n0xE94A\t0x58BD\n0xE94B\t0x58C9\n0xE94C\t0x58BF\n0xE94D\t0x58BA\n0xE94E\t0x58C2\n0xE94F\t0x58BC\n0xE950\t0x58C6\n0xE951\t0x5B17\n0xE952\t0x5B19\n0xE953\t0x5B1B\n0xE954\t0x5B21\n0xE955\t0x5B14\n0xE956\t0x5B13\n0xE957\t0x5B10\n0xE958\t0x5B16\n0xE959\t0x5B28\n0xE95A\t0x5B1A\n0xE95B\t0x5B20\n0xE95C\t0x5B1E\n0xE95D\t0x5BEF\n0xE95E\t0x5DAC\n0xE95F\t0x5DB1\n0xE960\t0x5DA9\n0xE961\t0x5DA7\n0xE962\t0x5DB5\n0xE963\t0x5DB0\n0xE964\t0x5DAE\n0xE965\t0x5DAA\n0xE966\t0x5DA8\n0xE967\t0x5DB2\n0xE968\t0x5DAD\n0xE969\t0x5DAF\n0xE96A\t0x5DB4\n0xE96B\t0x5E67\n0xE96C\t0x5E68\n0xE96D\t0x5E66\n0xE96E\t0x5E6F\n0xE96F\t0x5EE9\n0xE970\t0x5EE7\n0xE971\t0x5EE6\n0xE972\t0x5EE8\n0xE973\t0x5EE5\n0xE974\t0x5F4B\n0xE975\t0x5FBC\n0xE976\t0x619D\n0xE977\t0x61A8\n0xE978\t0x6196\n0xE979\t0x61C5\n0xE97A\t0x61B4\n0xE97B\t0x61C6\n0xE97C\t0x61C1\n0xE97D\t0x61CC\n0xE97E\t0x61BA\n0xE9A1\t0x61BF\n0xE9A2\t0x61B8\n0xE9A3\t0x618C\n0xE9A4\t0x64D7\n0xE9A5\t0x64D6\n0xE9A6\t0x64D0\n0xE9A7\t0x64CF\n0xE9A8\t0x64C9\n0xE9A9\t0x64BD\n0xE9AA\t0x6489\n0xE9AB\t0x64C3\n0xE9AC\t0x64DB\n0xE9AD\t0x64F3\n0xE9AE\t0x64D9\n0xE9AF\t0x6533\n0xE9B0\t0x657F\n0xE9B1\t0x657C\n0xE9B2\t0x65A2\n0xE9B3\t0x66C8\n0xE9B4\t0x66BE\n0xE9B5\t0x66C0\n0xE9B6\t0x66CA\n0xE9B7\t0x66CB\n0xE9B8\t0x66CF\n0xE9B9\t0x66BD\n0xE9BA\t0x66BB\n0xE9BB\t0x66BA\n0xE9BC\t0x66CC\n0xE9BD\t0x6723\n0xE9BE\t0x6A34\n0xE9BF\t0x6A66\n0xE9C0\t0x6A49\n0xE9C1\t0x6A67\n0xE9C2\t0x6A32\n0xE9C3\t0x6A68\n0xE9C4\t0x6A3E\n0xE9C5\t0x6A5D\n0xE9C6\t0x6A6D\n0xE9C7\t0x6A76\n0xE9C8\t0x6A5B\n0xE9C9\t0x6A51\n0xE9CA\t0x6A28\n0xE9CB\t0x6A5A\n0xE9CC\t0x6A3B\n0xE9CD\t0x6A3F\n0xE9CE\t0x6A41\n0xE9CF\t0x6A6A\n0xE9D0\t0x6A64\n0xE9D1\t0x6A50\n0xE9D2\t0x6A4F\n0xE9D3\t0x6A54\n0xE9D4\t0x6A6F\n0xE9D5\t0x6A69\n0xE9D6\t0x6A60\n0xE9D7\t0x6A3C\n0xE9D8\t0x6A5E\n0xE9D9\t0x6A56\n0xE9DA\t0x6A55\n0xE9DB\t0x6A4D\n0xE9DC\t0x6A4E\n0xE9DD\t0x6A46\n0xE9DE\t0x6B55\n0xE9DF\t0x6B54\n0xE9E0\t0x6B56\n0xE9E1\t0x6BA7\n0xE9E2\t0x6BAA\n0xE9E3\t0x6BAB\n0xE9E4\t0x6BC8\n0xE9E5\t0x6BC7\n0xE9E6\t0x6C04\n0xE9E7\t0x6C03\n0xE9E8\t0x6C06\n0xE9E9\t0x6FAD\n0xE9EA\t0x6FCB\n0xE9EB\t0x6FA3\n0xE9EC\t0x6FC7\n0xE9ED\t0x6FBC\n0xE9EE\t0x6FCE\n0xE9EF\t0x6FC8\n0xE9F0\t0x6F5E\n0xE9F1\t0x6FC4\n0xE9F2\t0x6FBD\n0xE9F3\t0x6F9E\n0xE9F4\t0x6FCA\n0xE9F5\t0x6FA8\n0xE9F6\t0x7004\n0xE9F7\t0x6FA5\n0xE9F8\t0x6FAE\n0xE9F9\t0x6FBA\n0xE9FA\t0x6FAC\n0xE9FB\t0x6FAA\n0xE9FC\t0x6FCF\n0xE9FD\t0x6FBF\n0xE9FE\t0x6FB8\n0xEA40\t0x6FA2\n0xEA41\t0x6FC9\n0xEA42\t0x6FAB\n0xEA43\t0x6FCD\n0xEA44\t0x6FAF\n0xEA45\t0x6FB2\n0xEA46\t0x6FB0\n0xEA47\t0x71C5\n0xEA48\t0x71C2\n0xEA49\t0x71BF\n0xEA4A\t0x71B8\n0xEA4B\t0x71D6\n0xEA4C\t0x71C0\n0xEA4D\t0x71C1\n0xEA4E\t0x71CB\n0xEA4F\t0x71D4\n0xEA50\t0x71CA\n0xEA51\t0x71C7\n0xEA52\t0x71CF\n0xEA53\t0x71BD\n0xEA54\t0x71D8\n0xEA55\t0x71BC\n0xEA56\t0x71C6\n0xEA57\t0x71DA\n0xEA58\t0x71DB\n0xEA59\t0x729D\n0xEA5A\t0x729E\n0xEA5B\t0x7369\n0xEA5C\t0x7366\n0xEA5D\t0x7367\n0xEA5E\t0x736C\n0xEA5F\t0x7365\n0xEA60\t0x736B\n0xEA61\t0x736A\n0xEA62\t0x747F\n0xEA63\t0x749A\n0xEA64\t0x74A0\n0xEA65\t0x7494\n0xEA66\t0x7492\n0xEA67\t0x7495\n0xEA68\t0x74A1\n0xEA69\t0x750B\n0xEA6A\t0x7580\n0xEA6B\t0x762F\n0xEA6C\t0x762D\n0xEA6D\t0x7631\n0xEA6E\t0x763D\n0xEA6F\t0x7633\n0xEA70\t0x763C\n0xEA71\t0x7635\n0xEA72\t0x7632\n0xEA73\t0x7630\n0xEA74\t0x76BB\n0xEA75\t0x76E6\n0xEA76\t0x779A\n0xEA77\t0x779D\n0xEA78\t0x77A1\n0xEA79\t0x779C\n0xEA7A\t0x779B\n0xEA7B\t0x77A2\n0xEA7C\t0x77A3\n0xEA7D\t0x7795\n0xEA7E\t0x7799\n0xEAA1\t0x7797\n0xEAA2\t0x78DD\n0xEAA3\t0x78E9\n0xEAA4\t0x78E5\n0xEAA5\t0x78EA\n0xEAA6\t0x78DE\n0xEAA7\t0x78E3\n0xEAA8\t0x78DB\n0xEAA9\t0x78E1\n0xEAAA\t0x78E2\n0xEAAB\t0x78ED\n0xEAAC\t0x78DF\n0xEAAD\t0x78E0\n0xEAAE\t0x79A4\n0xEAAF\t0x7A44\n0xEAB0\t0x7A48\n0xEAB1\t0x7A47\n0xEAB2\t0x7AB6\n0xEAB3\t0x7AB8\n0xEAB4\t0x7AB5\n0xEAB5\t0x7AB1\n0xEAB6\t0x7AB7\n0xEAB7\t0x7BDE\n0xEAB8\t0x7BE3\n0xEAB9\t0x7BE7\n0xEABA\t0x7BDD\n0xEABB\t0x7BD5\n0xEABC\t0x7BE5\n0xEABD\t0x7BDA\n0xEABE\t0x7BE8\n0xEABF\t0x7BF9\n0xEAC0\t0x7BD4\n0xEAC1\t0x7BEA\n0xEAC2\t0x7BE2\n0xEAC3\t0x7BDC\n0xEAC4\t0x7BEB\n0xEAC5\t0x7BD8\n0xEAC6\t0x7BDF\n0xEAC7\t0x7CD2\n0xEAC8\t0x7CD4\n0xEAC9\t0x7CD7\n0xEACA\t0x7CD0\n0xEACB\t0x7CD1\n0xEACC\t0x7E12\n0xEACD\t0x7E21\n0xEACE\t0x7E17\n0xEACF\t0x7E0C\n0xEAD0\t0x7E1F\n0xEAD1\t0x7E20\n0xEAD2\t0x7E13\n0xEAD3\t0x7E0E\n0xEAD4\t0x7E1C\n0xEAD5\t0x7E15\n0xEAD6\t0x7E1A\n0xEAD7\t0x7E22\n0xEAD8\t0x7E0B\n0xEAD9\t0x7E0F\n0xEADA\t0x7E16\n0xEADB\t0x7E0D\n0xEADC\t0x7E14\n0xEADD\t0x7E25\n0xEADE\t0x7E24\n0xEADF\t0x7F43\n0xEAE0\t0x7F7B\n0xEAE1\t0x7F7C\n0xEAE2\t0x7F7A\n0xEAE3\t0x7FB1\n0xEAE4\t0x7FEF\n0xEAE5\t0x802A\n0xEAE6\t0x8029\n0xEAE7\t0x806C\n0xEAE8\t0x81B1\n0xEAE9\t0x81A6\n0xEAEA\t0x81AE\n0xEAEB\t0x81B9\n0xEAEC\t0x81B5\n0xEAED\t0x81AB\n0xEAEE\t0x81B0\n0xEAEF\t0x81AC\n0xEAF0\t0x81B4\n0xEAF1\t0x81B2\n0xEAF2\t0x81B7\n0xEAF3\t0x81A7\n0xEAF4\t0x81F2\n0xEAF5\t0x8255\n0xEAF6\t0x8256\n0xEAF7\t0x8257\n0xEAF8\t0x8556\n0xEAF9\t0x8545\n0xEAFA\t0x856B\n0xEAFB\t0x854D\n0xEAFC\t0x8553\n0xEAFD\t0x8561\n0xEAFE\t0x8558\n0xEB40\t0x8540\n0xEB41\t0x8546\n0xEB42\t0x8564\n0xEB43\t0x8541\n0xEB44\t0x8562\n0xEB45\t0x8544\n0xEB46\t0x8551\n0xEB47\t0x8547\n0xEB48\t0x8563\n0xEB49\t0x853E\n0xEB4A\t0x855B\n0xEB4B\t0x8571\n0xEB4C\t0x854E\n0xEB4D\t0x856E\n0xEB4E\t0x8575\n0xEB4F\t0x8555\n0xEB50\t0x8567\n0xEB51\t0x8560\n0xEB52\t0x858C\n0xEB53\t0x8566\n0xEB54\t0x855D\n0xEB55\t0x8554\n0xEB56\t0x8565\n0xEB57\t0x856C\n0xEB58\t0x8663\n0xEB59\t0x8665\n0xEB5A\t0x8664\n0xEB5B\t0x879B\n0xEB5C\t0x878F\n0xEB5D\t0x8797\n0xEB5E\t0x8793\n0xEB5F\t0x8792\n0xEB60\t0x8788\n0xEB61\t0x8781\n0xEB62\t0x8796\n0xEB63\t0x8798\n0xEB64\t0x8779\n0xEB65\t0x8787\n0xEB66\t0x87A3\n0xEB67\t0x8785\n0xEB68\t0x8790\n0xEB69\t0x8791\n0xEB6A\t0x879D\n0xEB6B\t0x8784\n0xEB6C\t0x8794\n0xEB6D\t0x879C\n0xEB6E\t0x879A\n0xEB6F\t0x8789\n0xEB70\t0x891E\n0xEB71\t0x8926\n0xEB72\t0x8930\n0xEB73\t0x892D\n0xEB74\t0x892E\n0xEB75\t0x8927\n0xEB76\t0x8931\n0xEB77\t0x8922\n0xEB78\t0x8929\n0xEB79\t0x8923\n0xEB7A\t0x892F\n0xEB7B\t0x892C\n0xEB7C\t0x891F\n0xEB7D\t0x89F1\n0xEB7E\t0x8AE0\n0xEBA1\t0x8AE2\n0xEBA2\t0x8AF2\n0xEBA3\t0x8AF4\n0xEBA4\t0x8AF5\n0xEBA5\t0x8ADD\n0xEBA6\t0x8B14\n0xEBA7\t0x8AE4\n0xEBA8\t0x8ADF\n0xEBA9\t0x8AF0\n0xEBAA\t0x8AC8\n0xEBAB\t0x8ADE\n0xEBAC\t0x8AE1\n0xEBAD\t0x8AE8\n0xEBAE\t0x8AFF\n0xEBAF\t0x8AEF\n0xEBB0\t0x8AFB\n0xEBB1\t0x8C91\n0xEBB2\t0x8C92\n0xEBB3\t0x8C90\n0xEBB4\t0x8CF5\n0xEBB5\t0x8CEE\n0xEBB6\t0x8CF1\n0xEBB7\t0x8CF0\n0xEBB8\t0x8CF3\n0xEBB9\t0x8D6C\n0xEBBA\t0x8D6E\n0xEBBB\t0x8DA5\n0xEBBC\t0x8DA7\n0xEBBD\t0x8E33\n0xEBBE\t0x8E3E\n0xEBBF\t0x8E38\n0xEBC0\t0x8E40\n0xEBC1\t0x8E45\n0xEBC2\t0x8E36\n0xEBC3\t0x8E3C\n0xEBC4\t0x8E3D\n0xEBC5\t0x8E41\n0xEBC6\t0x8E30\n0xEBC7\t0x8E3F\n0xEBC8\t0x8EBD\n0xEBC9\t0x8F36\n0xEBCA\t0x8F2E\n0xEBCB\t0x8F35\n0xEBCC\t0x8F32\n0xEBCD\t0x8F39\n0xEBCE\t0x8F37\n0xEBCF\t0x8F34\n0xEBD0\t0x9076\n0xEBD1\t0x9079\n0xEBD2\t0x907B\n0xEBD3\t0x9086\n0xEBD4\t0x90FA\n0xEBD5\t0x9133\n0xEBD6\t0x9135\n0xEBD7\t0x9136\n0xEBD8\t0x9193\n0xEBD9\t0x9190\n0xEBDA\t0x9191\n0xEBDB\t0x918D\n0xEBDC\t0x918F\n0xEBDD\t0x9327\n0xEBDE\t0x931E\n0xEBDF\t0x9308\n0xEBE0\t0x931F\n0xEBE1\t0x9306\n0xEBE2\t0x930F\n0xEBE3\t0x937A\n0xEBE4\t0x9338\n0xEBE5\t0x933C\n0xEBE6\t0x931B\n0xEBE7\t0x9323\n0xEBE8\t0x9312\n0xEBE9\t0x9301\n0xEBEA\t0x9346\n0xEBEB\t0x932D\n0xEBEC\t0x930E\n0xEBED\t0x930D\n0xEBEE\t0x92CB\n0xEBEF\t0x931D\n0xEBF0\t0x92FA\n0xEBF1\t0x9325\n0xEBF2\t0x9313\n0xEBF3\t0x92F9\n0xEBF4\t0x92F7\n0xEBF5\t0x9334\n0xEBF6\t0x9302\n0xEBF7\t0x9324\n0xEBF8\t0x92FF\n0xEBF9\t0x9329\n0xEBFA\t0x9339\n0xEBFB\t0x9335\n0xEBFC\t0x932A\n0xEBFD\t0x9314\n0xEBFE\t0x930C\n0xEC40\t0x930B\n0xEC41\t0x92FE\n0xEC42\t0x9309\n0xEC43\t0x9300\n0xEC44\t0x92FB\n0xEC45\t0x9316\n0xEC46\t0x95BC\n0xEC47\t0x95CD\n0xEC48\t0x95BE\n0xEC49\t0x95B9\n0xEC4A\t0x95BA\n0xEC4B\t0x95B6\n0xEC4C\t0x95BF\n0xEC4D\t0x95B5\n0xEC4E\t0x95BD\n0xEC4F\t0x96A9\n0xEC50\t0x96D4\n0xEC51\t0x970B\n0xEC52\t0x9712\n0xEC53\t0x9710\n0xEC54\t0x9799\n0xEC55\t0x9797\n0xEC56\t0x9794\n0xEC57\t0x97F0\n0xEC58\t0x97F8\n0xEC59\t0x9835\n0xEC5A\t0x982F\n0xEC5B\t0x9832\n0xEC5C\t0x9924\n0xEC5D\t0x991F\n0xEC5E\t0x9927\n0xEC5F\t0x9929\n0xEC60\t0x999E\n0xEC61\t0x99EE\n0xEC62\t0x99EC\n0xEC63\t0x99E5\n0xEC64\t0x99E4\n0xEC65\t0x99F0\n0xEC66\t0x99E3\n0xEC67\t0x99EA\n0xEC68\t0x99E9\n0xEC69\t0x99E7\n0xEC6A\t0x9AB9\n0xEC6B\t0x9ABF\n0xEC6C\t0x9AB4\n0xEC6D\t0x9ABB\n0xEC6E\t0x9AF6\n0xEC6F\t0x9AFA\n0xEC70\t0x9AF9\n0xEC71\t0x9AF7\n0xEC72\t0x9B33\n0xEC73\t0x9B80\n0xEC74\t0x9B85\n0xEC75\t0x9B87\n0xEC76\t0x9B7C\n0xEC77\t0x9B7E\n0xEC78\t0x9B7B\n0xEC79\t0x9B82\n0xEC7A\t0x9B93\n0xEC7B\t0x9B92\n0xEC7C\t0x9B90\n0xEC7D\t0x9B7A\n0xEC7E\t0x9B95\n0xECA1\t0x9B7D\n0xECA2\t0x9B88\n0xECA3\t0x9D25\n0xECA4\t0x9D17\n0xECA5\t0x9D20\n0xECA6\t0x9D1E\n0xECA7\t0x9D14\n0xECA8\t0x9D29\n0xECA9\t0x9D1D\n0xECAA\t0x9D18\n0xECAB\t0x9D22\n0xECAC\t0x9D10\n0xECAD\t0x9D19\n0xECAE\t0x9D1F\n0xECAF\t0x9E88\n0xECB0\t0x9E86\n0xECB1\t0x9E87\n0xECB2\t0x9EAE\n0xECB3\t0x9EAD\n0xECB4\t0x9ED5\n0xECB5\t0x9ED6\n0xECB6\t0x9EFA\n0xECB7\t0x9F12\n0xECB8\t0x9F3D\n0xECB9\t0x5126\n0xECBA\t0x5125\n0xECBB\t0x5122\n0xECBC\t0x5124\n0xECBD\t0x5120\n0xECBE\t0x5129\n0xECBF\t0x52F4\n0xECC0\t0x5693\n0xECC1\t0x568C\n0xECC2\t0x568D\n0xECC3\t0x5686\n0xECC4\t0x5684\n0xECC5\t0x5683\n0xECC6\t0x567E\n0xECC7\t0x5682\n0xECC8\t0x567F\n0xECC9\t0x5681\n0xECCA\t0x58D6\n0xECCB\t0x58D4\n0xECCC\t0x58CF\n0xECCD\t0x58D2\n0xECCE\t0x5B2D\n0xECCF\t0x5B25\n0xECD0\t0x5B32\n0xECD1\t0x5B23\n0xECD2\t0x5B2C\n0xECD3\t0x5B27\n0xECD4\t0x5B26\n0xECD5\t0x5B2F\n0xECD6\t0x5B2E\n0xECD7\t0x5B7B\n0xECD8\t0x5BF1\n0xECD9\t0x5BF2\n0xECDA\t0x5DB7\n0xECDB\t0x5E6C\n0xECDC\t0x5E6A\n0xECDD\t0x5FBE\n0xECDE\t0x5FBB\n0xECDF\t0x61C3\n0xECE0\t0x61B5\n0xECE1\t0x61BC\n0xECE2\t0x61E7\n0xECE3\t0x61E0\n0xECE4\t0x61E5\n0xECE5\t0x61E4\n0xECE6\t0x61E8\n0xECE7\t0x61DE\n0xECE8\t0x64EF\n0xECE9\t0x64E9\n0xECEA\t0x64E3\n0xECEB\t0x64EB\n0xECEC\t0x64E4\n0xECED\t0x64E8\n0xECEE\t0x6581\n0xECEF\t0x6580\n0xECF0\t0x65B6\n0xECF1\t0x65DA\n0xECF2\t0x66D2\n0xECF3\t0x6A8D\n0xECF4\t0x6A96\n0xECF5\t0x6A81\n0xECF6\t0x6AA5\n0xECF7\t0x6A89\n0xECF8\t0x6A9F\n0xECF9\t0x6A9B\n0xECFA\t0x6AA1\n0xECFB\t0x6A9E\n0xECFC\t0x6A87\n0xECFD\t0x6A93\n0xECFE\t0x6A8E\n0xED40\t0x6A95\n0xED41\t0x6A83\n0xED42\t0x6AA8\n0xED43\t0x6AA4\n0xED44\t0x6A91\n0xED45\t0x6A7F\n0xED46\t0x6AA6\n0xED47\t0x6A9A\n0xED48\t0x6A85\n0xED49\t0x6A8C\n0xED4A\t0x6A92\n0xED4B\t0x6B5B\n0xED4C\t0x6BAD\n0xED4D\t0x6C09\n0xED4E\t0x6FCC\n0xED4F\t0x6FA9\n0xED50\t0x6FF4\n0xED51\t0x6FD4\n0xED52\t0x6FE3\n0xED53\t0x6FDC\n0xED54\t0x6FED\n0xED55\t0x6FE7\n0xED56\t0x6FE6\n0xED57\t0x6FDE\n0xED58\t0x6FF2\n0xED59\t0x6FDD\n0xED5A\t0x6FE2\n0xED5B\t0x6FE8\n0xED5C\t0x71E1\n0xED5D\t0x71F1\n0xED5E\t0x71E8\n0xED5F\t0x71F2\n0xED60\t0x71E4\n0xED61\t0x71F0\n0xED62\t0x71E2\n0xED63\t0x7373\n0xED64\t0x736E\n0xED65\t0x736F\n0xED66\t0x7497\n0xED67\t0x74B2\n0xED68\t0x74AB\n0xED69\t0x7490\n0xED6A\t0x74AA\n0xED6B\t0x74AD\n0xED6C\t0x74B1\n0xED6D\t0x74A5\n0xED6E\t0x74AF\n0xED6F\t0x7510\n0xED70\t0x7511\n0xED71\t0x7512\n0xED72\t0x750F\n0xED73\t0x7584\n0xED74\t0x7643\n0xED75\t0x7648\n0xED76\t0x7649\n0xED77\t0x7647\n0xED78\t0x76A4\n0xED79\t0x76E9\n0xED7A\t0x77B5\n0xED7B\t0x77AB\n0xED7C\t0x77B2\n0xED7D\t0x77B7\n0xED7E\t0x77B6\n0xEDA1\t0x77B4\n0xEDA2\t0x77B1\n0xEDA3\t0x77A8\n0xEDA4\t0x77F0\n0xEDA5\t0x78F3\n0xEDA6\t0x78FD\n0xEDA7\t0x7902\n0xEDA8\t0x78FB\n0xEDA9\t0x78FC\n0xEDAA\t0x78F2\n0xEDAB\t0x7905\n0xEDAC\t0x78F9\n0xEDAD\t0x78FE\n0xEDAE\t0x7904\n0xEDAF\t0x79AB\n0xEDB0\t0x79A8\n0xEDB1\t0x7A5C\n0xEDB2\t0x7A5B\n0xEDB3\t0x7A56\n0xEDB4\t0x7A58\n0xEDB5\t0x7A54\n0xEDB6\t0x7A5A\n0xEDB7\t0x7ABE\n0xEDB8\t0x7AC0\n0xEDB9\t0x7AC1\n0xEDBA\t0x7C05\n0xEDBB\t0x7C0F\n0xEDBC\t0x7BF2\n0xEDBD\t0x7C00\n0xEDBE\t0x7BFF\n0xEDBF\t0x7BFB\n0xEDC0\t0x7C0E\n0xEDC1\t0x7BF4\n0xEDC2\t0x7C0B\n0xEDC3\t0x7BF3\n0xEDC4\t0x7C02\n0xEDC5\t0x7C09\n0xEDC6\t0x7C03\n0xEDC7\t0x7C01\n0xEDC8\t0x7BF8\n0xEDC9\t0x7BFD\n0xEDCA\t0x7C06\n0xEDCB\t0x7BF0\n0xEDCC\t0x7BF1\n0xEDCD\t0x7C10\n0xEDCE\t0x7C0A\n0xEDCF\t0x7CE8\n0xEDD0\t0x7E2D\n0xEDD1\t0x7E3C\n0xEDD2\t0x7E42\n0xEDD3\t0x7E33\n0xEDD4\t0x9848\n0xEDD5\t0x7E38\n0xEDD6\t0x7E2A\n0xEDD7\t0x7E49\n0xEDD8\t0x7E40\n0xEDD9\t0x7E47\n0xEDDA\t0x7E29\n0xEDDB\t0x7E4C\n0xEDDC\t0x7E30\n0xEDDD\t0x7E3B\n0xEDDE\t0x7E36\n0xEDDF\t0x7E44\n0xEDE0\t0x7E3A\n0xEDE1\t0x7F45\n0xEDE2\t0x7F7F\n0xEDE3\t0x7F7E\n0xEDE4\t0x7F7D\n0xEDE5\t0x7FF4\n0xEDE6\t0x7FF2\n0xEDE7\t0x802C\n0xEDE8\t0x81BB\n0xEDE9\t0x81C4\n0xEDEA\t0x81CC\n0xEDEB\t0x81CA\n0xEDEC\t0x81C5\n0xEDED\t0x81C7\n0xEDEE\t0x81BC\n0xEDEF\t0x81E9\n0xEDF0\t0x825B\n0xEDF1\t0x825A\n0xEDF2\t0x825C\n0xEDF3\t0x8583\n0xEDF4\t0x8580\n0xEDF5\t0x858F\n0xEDF6\t0x85A7\n0xEDF7\t0x8595\n0xEDF8\t0x85A0\n0xEDF9\t0x858B\n0xEDFA\t0x85A3\n0xEDFB\t0x857B\n0xEDFC\t0x85A4\n0xEDFD\t0x859A\n0xEDFE\t0x859E\n0xEE40\t0x8577\n0xEE41\t0x857C\n0xEE42\t0x8589\n0xEE43\t0x85A1\n0xEE44\t0x857A\n0xEE45\t0x8578\n0xEE46\t0x8557\n0xEE47\t0x858E\n0xEE48\t0x8596\n0xEE49\t0x8586\n0xEE4A\t0x858D\n0xEE4B\t0x8599\n0xEE4C\t0x859D\n0xEE4D\t0x8581\n0xEE4E\t0x85A2\n0xEE4F\t0x8582\n0xEE50\t0x8588\n0xEE51\t0x8585\n0xEE52\t0x8579\n0xEE53\t0x8576\n0xEE54\t0x8598\n0xEE55\t0x8590\n0xEE56\t0x859F\n0xEE57\t0x8668\n0xEE58\t0x87BE\n0xEE59\t0x87AA\n0xEE5A\t0x87AD\n0xEE5B\t0x87C5\n0xEE5C\t0x87B0\n0xEE5D\t0x87AC\n0xEE5E\t0x87B9\n0xEE5F\t0x87B5\n0xEE60\t0x87BC\n0xEE61\t0x87AE\n0xEE62\t0x87C9\n0xEE63\t0x87C3\n0xEE64\t0x87C2\n0xEE65\t0x87CC\n0xEE66\t0x87B7\n0xEE67\t0x87AF\n0xEE68\t0x87C4\n0xEE69\t0x87CA\n0xEE6A\t0x87B4\n0xEE6B\t0x87B6\n0xEE6C\t0x87BF\n0xEE6D\t0x87B8\n0xEE6E\t0x87BD\n0xEE6F\t0x87DE\n0xEE70\t0x87B2\n0xEE71\t0x8935\n0xEE72\t0x8933\n0xEE73\t0x893C\n0xEE74\t0x893E\n0xEE75\t0x8941\n0xEE76\t0x8952\n0xEE77\t0x8937\n0xEE78\t0x8942\n0xEE79\t0x89AD\n0xEE7A\t0x89AF\n0xEE7B\t0x89AE\n0xEE7C\t0x89F2\n0xEE7D\t0x89F3\n0xEE7E\t0x8B1E\n0xEEA1\t0x8B18\n0xEEA2\t0x8B16\n0xEEA3\t0x8B11\n0xEEA4\t0x8B05\n0xEEA5\t0x8B0B\n0xEEA6\t0x8B22\n0xEEA7\t0x8B0F\n0xEEA8\t0x8B12\n0xEEA9\t0x8B15\n0xEEAA\t0x8B07\n0xEEAB\t0x8B0D\n0xEEAC\t0x8B08\n0xEEAD\t0x8B06\n0xEEAE\t0x8B1C\n0xEEAF\t0x8B13\n0xEEB0\t0x8B1A\n0xEEB1\t0x8C4F\n0xEEB2\t0x8C70\n0xEEB3\t0x8C72\n0xEEB4\t0x8C71\n0xEEB5\t0x8C6F\n0xEEB6\t0x8C95\n0xEEB7\t0x8C94\n0xEEB8\t0x8CF9\n0xEEB9\t0x8D6F\n0xEEBA\t0x8E4E\n0xEEBB\t0x8E4D\n0xEEBC\t0x8E53\n0xEEBD\t0x8E50\n0xEEBE\t0x8E4C\n0xEEBF\t0x8E47\n0xEEC0\t0x8F43\n0xEEC1\t0x8F40\n0xEEC2\t0x9085\n0xEEC3\t0x907E\n0xEEC4\t0x9138\n0xEEC5\t0x919A\n0xEEC6\t0x91A2\n0xEEC7\t0x919B\n0xEEC8\t0x9199\n0xEEC9\t0x919F\n0xEECA\t0x91A1\n0xEECB\t0x919D\n0xEECC\t0x91A0\n0xEECD\t0x93A1\n0xEECE\t0x9383\n0xEECF\t0x93AF\n0xEED0\t0x9364\n0xEED1\t0x9356\n0xEED2\t0x9347\n0xEED3\t0x937C\n0xEED4\t0x9358\n0xEED5\t0x935C\n0xEED6\t0x9376\n0xEED7\t0x9349\n0xEED8\t0x9350\n0xEED9\t0x9351\n0xEEDA\t0x9360\n0xEEDB\t0x936D\n0xEEDC\t0x938F\n0xEEDD\t0x934C\n0xEEDE\t0x936A\n0xEEDF\t0x9379\n0xEEE0\t0x9357\n0xEEE1\t0x9355\n0xEEE2\t0x9352\n0xEEE3\t0x934F\n0xEEE4\t0x9371\n0xEEE5\t0x9377\n0xEEE6\t0x937B\n0xEEE7\t0x9361\n0xEEE8\t0x935E\n0xEEE9\t0x9363\n0xEEEA\t0x9367\n0xEEEB\t0x9380\n0xEEEC\t0x934E\n0xEEED\t0x9359\n0xEEEE\t0x95C7\n0xEEEF\t0x95C0\n0xEEF0\t0x95C9\n0xEEF1\t0x95C3\n0xEEF2\t0x95C5\n0xEEF3\t0x95B7\n0xEEF4\t0x96AE\n0xEEF5\t0x96B0\n0xEEF6\t0x96AC\n0xEEF7\t0x9720\n0xEEF8\t0x971F\n0xEEF9\t0x9718\n0xEEFA\t0x971D\n0xEEFB\t0x9719\n0xEEFC\t0x979A\n0xEEFD\t0x97A1\n0xEEFE\t0x979C\n0xEF40\t0x979E\n0xEF41\t0x979D\n0xEF42\t0x97D5\n0xEF43\t0x97D4\n0xEF44\t0x97F1\n0xEF45\t0x9841\n0xEF46\t0x9844\n0xEF47\t0x984A\n0xEF48\t0x9849\n0xEF49\t0x9845\n0xEF4A\t0x9843\n0xEF4B\t0x9925\n0xEF4C\t0x992B\n0xEF4D\t0x992C\n0xEF4E\t0x992A\n0xEF4F\t0x9933\n0xEF50\t0x9932\n0xEF51\t0x992F\n0xEF52\t0x992D\n0xEF53\t0x9931\n0xEF54\t0x9930\n0xEF55\t0x9998\n0xEF56\t0x99A3\n0xEF57\t0x99A1\n0xEF58\t0x9A02\n0xEF59\t0x99FA\n0xEF5A\t0x99F4\n0xEF5B\t0x99F7\n0xEF5C\t0x99F9\n0xEF5D\t0x99F8\n0xEF5E\t0x99F6\n0xEF5F\t0x99FB\n0xEF60\t0x99FD\n0xEF61\t0x99FE\n0xEF62\t0x99FC\n0xEF63\t0x9A03\n0xEF64\t0x9ABE\n0xEF65\t0x9AFE\n0xEF66\t0x9AFD\n0xEF67\t0x9B01\n0xEF68\t0x9AFC\n0xEF69\t0x9B48\n0xEF6A\t0x9B9A\n0xEF6B\t0x9BA8\n0xEF6C\t0x9B9E\n0xEF6D\t0x9B9B\n0xEF6E\t0x9BA6\n0xEF6F\t0x9BA1\n0xEF70\t0x9BA5\n0xEF71\t0x9BA4\n0xEF72\t0x9B86\n0xEF73\t0x9BA2\n0xEF74\t0x9BA0\n0xEF75\t0x9BAF\n0xEF76\t0x9D33\n0xEF77\t0x9D41\n0xEF78\t0x9D67\n0xEF79\t0x9D36\n0xEF7A\t0x9D2E\n0xEF7B\t0x9D2F\n0xEF7C\t0x9D31\n0xEF7D\t0x9D38\n0xEF7E\t0x9D30\n0xEFA1\t0x9D45\n0xEFA2\t0x9D42\n0xEFA3\t0x9D43\n0xEFA4\t0x9D3E\n0xEFA5\t0x9D37\n0xEFA6\t0x9D40\n0xEFA7\t0x9D3D\n0xEFA8\t0x7FF5\n0xEFA9\t0x9D2D\n0xEFAA\t0x9E8A\n0xEFAB\t0x9E89\n0xEFAC\t0x9E8D\n0xEFAD\t0x9EB0\n0xEFAE\t0x9EC8\n0xEFAF\t0x9EDA\n0xEFB0\t0x9EFB\n0xEFB1\t0x9EFF\n0xEFB2\t0x9F24\n0xEFB3\t0x9F23\n0xEFB4\t0x9F22\n0xEFB5\t0x9F54\n0xEFB6\t0x9FA0\n0xEFB7\t0x5131\n0xEFB8\t0x512D\n0xEFB9\t0x512E\n0xEFBA\t0x5698\n0xEFBB\t0x569C\n0xEFBC\t0x5697\n0xEFBD\t0x569A\n0xEFBE\t0x569D\n0xEFBF\t0x5699\n0xEFC0\t0x5970\n0xEFC1\t0x5B3C\n0xEFC2\t0x5C69\n0xEFC3\t0x5C6A\n0xEFC4\t0x5DC0\n0xEFC5\t0x5E6D\n0xEFC6\t0x5E6E\n0xEFC7\t0x61D8\n0xEFC8\t0x61DF\n0xEFC9\t0x61ED\n0xEFCA\t0x61EE\n0xEFCB\t0x61F1\n0xEFCC\t0x61EA\n0xEFCD\t0x61F0\n0xEFCE\t0x61EB\n0xEFCF\t0x61D6\n0xEFD0\t0x61E9\n0xEFD1\t0x64FF\n0xEFD2\t0x6504\n0xEFD3\t0x64FD\n0xEFD4\t0x64F8\n0xEFD5\t0x6501\n0xEFD6\t0x6503\n0xEFD7\t0x64FC\n0xEFD8\t0x6594\n0xEFD9\t0x65DB\n0xEFDA\t0x66DA\n0xEFDB\t0x66DB\n0xEFDC\t0x66D8\n0xEFDD\t0x6AC5\n0xEFDE\t0x6AB9\n0xEFDF\t0x6ABD\n0xEFE0\t0x6AE1\n0xEFE1\t0x6AC6\n0xEFE2\t0x6ABA\n0xEFE3\t0x6AB6\n0xEFE4\t0x6AB7\n0xEFE5\t0x6AC7\n0xEFE6\t0x6AB4\n0xEFE7\t0x6AAD\n0xEFE8\t0x6B5E\n0xEFE9\t0x6BC9\n0xEFEA\t0x6C0B\n0xEFEB\t0x7007\n0xEFEC\t0x700C\n0xEFED\t0x700D\n0xEFEE\t0x7001\n0xEFEF\t0x7005\n0xEFF0\t0x7014\n0xEFF1\t0x700E\n0xEFF2\t0x6FFF\n0xEFF3\t0x7000\n0xEFF4\t0x6FFB\n0xEFF5\t0x7026\n0xEFF6\t0x6FFC\n0xEFF7\t0x6FF7\n0xEFF8\t0x700A\n0xEFF9\t0x7201\n0xEFFA\t0x71FF\n0xEFFB\t0x71F9\n0xEFFC\t0x7203\n0xEFFD\t0x71FD\n0xEFFE\t0x7376\n0xF040\t0x74B8\n0xF041\t0x74C0\n0xF042\t0x74B5\n0xF043\t0x74C1\n0xF044\t0x74BE\n0xF045\t0x74B6\n0xF046\t0x74BB\n0xF047\t0x74C2\n0xF048\t0x7514\n0xF049\t0x7513\n0xF04A\t0x765C\n0xF04B\t0x7664\n0xF04C\t0x7659\n0xF04D\t0x7650\n0xF04E\t0x7653\n0xF04F\t0x7657\n0xF050\t0x765A\n0xF051\t0x76A6\n0xF052\t0x76BD\n0xF053\t0x76EC\n0xF054\t0x77C2\n0xF055\t0x77BA\n0xF056\t0x78FF\n0xF057\t0x790C\n0xF058\t0x7913\n0xF059\t0x7914\n0xF05A\t0x7909\n0xF05B\t0x7910\n0xF05C\t0x7912\n0xF05D\t0x7911\n0xF05E\t0x79AD\n0xF05F\t0x79AC\n0xF060\t0x7A5F\n0xF061\t0x7C1C\n0xF062\t0x7C29\n0xF063\t0x7C19\n0xF064\t0x7C20\n0xF065\t0x7C1F\n0xF066\t0x7C2D\n0xF067\t0x7C1D\n0xF068\t0x7C26\n0xF069\t0x7C28\n0xF06A\t0x7C22\n0xF06B\t0x7C25\n0xF06C\t0x7C30\n0xF06D\t0x7E5C\n0xF06E\t0x7E50\n0xF06F\t0x7E56\n0xF070\t0x7E63\n0xF071\t0x7E58\n0xF072\t0x7E62\n0xF073\t0x7E5F\n0xF074\t0x7E51\n0xF075\t0x7E60\n0xF076\t0x7E57\n0xF077\t0x7E53\n0xF078\t0x7FB5\n0xF079\t0x7FB3\n0xF07A\t0x7FF7\n0xF07B\t0x7FF8\n0xF07C\t0x8075\n0xF07D\t0x81D1\n0xF07E\t0x81D2\n0xF0A1\t0x81D0\n0xF0A2\t0x825F\n0xF0A3\t0x825E\n0xF0A4\t0x85B4\n0xF0A5\t0x85C6\n0xF0A6\t0x85C0\n0xF0A7\t0x85C3\n0xF0A8\t0x85C2\n0xF0A9\t0x85B3\n0xF0AA\t0x85B5\n0xF0AB\t0x85BD\n0xF0AC\t0x85C7\n0xF0AD\t0x85C4\n0xF0AE\t0x85BF\n0xF0AF\t0x85CB\n0xF0B0\t0x85CE\n0xF0B1\t0x85C8\n0xF0B2\t0x85C5\n0xF0B3\t0x85B1\n0xF0B4\t0x85B6\n0xF0B5\t0x85D2\n0xF0B6\t0x8624\n0xF0B7\t0x85B8\n0xF0B8\t0x85B7\n0xF0B9\t0x85BE\n0xF0BA\t0x8669\n0xF0BB\t0x87E7\n0xF0BC\t0x87E6\n0xF0BD\t0x87E2\n0xF0BE\t0x87DB\n0xF0BF\t0x87EB\n0xF0C0\t0x87EA\n0xF0C1\t0x87E5\n0xF0C2\t0x87DF\n0xF0C3\t0x87F3\n0xF0C4\t0x87E4\n0xF0C5\t0x87D4\n0xF0C6\t0x87DC\n0xF0C7\t0x87D3\n0xF0C8\t0x87ED\n0xF0C9\t0x87D8\n0xF0CA\t0x87E3\n0xF0CB\t0x87A4\n0xF0CC\t0x87D7\n0xF0CD\t0x87D9\n0xF0CE\t0x8801\n0xF0CF\t0x87F4\n0xF0D0\t0x87E8\n0xF0D1\t0x87DD\n0xF0D2\t0x8953\n0xF0D3\t0x894B\n0xF0D4\t0x894F\n0xF0D5\t0x894C\n0xF0D6\t0x8946\n0xF0D7\t0x8950\n0xF0D8\t0x8951\n0xF0D9\t0x8949\n0xF0DA\t0x8B2A\n0xF0DB\t0x8B27\n0xF0DC\t0x8B23\n0xF0DD\t0x8B33\n0xF0DE\t0x8B30\n0xF0DF\t0x8B35\n0xF0E0\t0x8B47\n0xF0E1\t0x8B2F\n0xF0E2\t0x8B3C\n0xF0E3\t0x8B3E\n0xF0E4\t0x8B31\n0xF0E5\t0x8B25\n0xF0E6\t0x8B37\n0xF0E7\t0x8B26\n0xF0E8\t0x8B36\n0xF0E9\t0x8B2E\n0xF0EA\t0x8B24\n0xF0EB\t0x8B3B\n0xF0EC\t0x8B3D\n0xF0ED\t0x8B3A\n0xF0EE\t0x8C42\n0xF0EF\t0x8C75\n0xF0F0\t0x8C99\n0xF0F1\t0x8C98\n0xF0F2\t0x8C97\n0xF0F3\t0x8CFE\n0xF0F4\t0x8D04\n0xF0F5\t0x8D02\n0xF0F6\t0x8D00\n0xF0F7\t0x8E5C\n0xF0F8\t0x8E62\n0xF0F9\t0x8E60\n0xF0FA\t0x8E57\n0xF0FB\t0x8E56\n0xF0FC\t0x8E5E\n0xF0FD\t0x8E65\n0xF0FE\t0x8E67\n0xF140\t0x8E5B\n0xF141\t0x8E5A\n0xF142\t0x8E61\n0xF143\t0x8E5D\n0xF144\t0x8E69\n0xF145\t0x8E54\n0xF146\t0x8F46\n0xF147\t0x8F47\n0xF148\t0x8F48\n0xF149\t0x8F4B\n0xF14A\t0x9128\n0xF14B\t0x913A\n0xF14C\t0x913B\n0xF14D\t0x913E\n0xF14E\t0x91A8\n0xF14F\t0x91A5\n0xF150\t0x91A7\n0xF151\t0x91AF\n0xF152\t0x91AA\n0xF153\t0x93B5\n0xF154\t0x938C\n0xF155\t0x9392\n0xF156\t0x93B7\n0xF157\t0x939B\n0xF158\t0x939D\n0xF159\t0x9389\n0xF15A\t0x93A7\n0xF15B\t0x938E\n0xF15C\t0x93AA\n0xF15D\t0x939E\n0xF15E\t0x93A6\n0xF15F\t0x9395\n0xF160\t0x9388\n0xF161\t0x9399\n0xF162\t0x939F\n0xF163\t0x938D\n0xF164\t0x93B1\n0xF165\t0x9391\n0xF166\t0x93B2\n0xF167\t0x93A4\n0xF168\t0x93A8\n0xF169\t0x93B4\n0xF16A\t0x93A3\n0xF16B\t0x93A5\n0xF16C\t0x95D2\n0xF16D\t0x95D3\n0xF16E\t0x95D1\n0xF16F\t0x96B3\n0xF170\t0x96D7\n0xF171\t0x96DA\n0xF172\t0x5DC2\n0xF173\t0x96DF\n0xF174\t0x96D8\n0xF175\t0x96DD\n0xF176\t0x9723\n0xF177\t0x9722\n0xF178\t0x9725\n0xF179\t0x97AC\n0xF17A\t0x97AE\n0xF17B\t0x97A8\n0xF17C\t0x97AB\n0xF17D\t0x97A4\n0xF17E\t0x97AA\n0xF1A1\t0x97A2\n0xF1A2\t0x97A5\n0xF1A3\t0x97D7\n0xF1A4\t0x97D9\n0xF1A5\t0x97D6\n0xF1A6\t0x97D8\n0xF1A7\t0x97FA\n0xF1A8\t0x9850\n0xF1A9\t0x9851\n0xF1AA\t0x9852\n0xF1AB\t0x98B8\n0xF1AC\t0x9941\n0xF1AD\t0x993C\n0xF1AE\t0x993A\n0xF1AF\t0x9A0F\n0xF1B0\t0x9A0B\n0xF1B1\t0x9A09\n0xF1B2\t0x9A0D\n0xF1B3\t0x9A04\n0xF1B4\t0x9A11\n0xF1B5\t0x9A0A\n0xF1B6\t0x9A05\n0xF1B7\t0x9A07\n0xF1B8\t0x9A06\n0xF1B9\t0x9AC0\n0xF1BA\t0x9ADC\n0xF1BB\t0x9B08\n0xF1BC\t0x9B04\n0xF1BD\t0x9B05\n0xF1BE\t0x9B29\n0xF1BF\t0x9B35\n0xF1C0\t0x9B4A\n0xF1C1\t0x9B4C\n0xF1C2\t0x9B4B\n0xF1C3\t0x9BC7\n0xF1C4\t0x9BC6\n0xF1C5\t0x9BC3\n0xF1C6\t0x9BBF\n0xF1C7\t0x9BC1\n0xF1C8\t0x9BB5\n0xF1C9\t0x9BB8\n0xF1CA\t0x9BD3\n0xF1CB\t0x9BB6\n0xF1CC\t0x9BC4\n0xF1CD\t0x9BB9\n0xF1CE\t0x9BBD\n0xF1CF\t0x9D5C\n0xF1D0\t0x9D53\n0xF1D1\t0x9D4F\n0xF1D2\t0x9D4A\n0xF1D3\t0x9D5B\n0xF1D4\t0x9D4B\n0xF1D5\t0x9D59\n0xF1D6\t0x9D56\n0xF1D7\t0x9D4C\n0xF1D8\t0x9D57\n0xF1D9\t0x9D52\n0xF1DA\t0x9D54\n0xF1DB\t0x9D5F\n0xF1DC\t0x9D58\n0xF1DD\t0x9D5A\n0xF1DE\t0x9E8E\n0xF1DF\t0x9E8C\n0xF1E0\t0x9EDF\n0xF1E1\t0x9F01\n0xF1E2\t0x9F00\n0xF1E3\t0x9F16\n0xF1E4\t0x9F25\n0xF1E5\t0x9F2B\n0xF1E6\t0x9F2A\n0xF1E7\t0x9F29\n0xF1E8\t0x9F28\n0xF1E9\t0x9F4C\n0xF1EA\t0x9F55\n0xF1EB\t0x5134\n0xF1EC\t0x5135\n0xF1ED\t0x5296\n0xF1EE\t0x52F7\n0xF1EF\t0x53B4\n0xF1F0\t0x56AB\n0xF1F1\t0x56AD\n0xF1F2\t0x56A6\n0xF1F3\t0x56A7\n0xF1F4\t0x56AA\n0xF1F5\t0x56AC\n0xF1F6\t0x58DA\n0xF1F7\t0x58DD\n0xF1F8\t0x58DB\n0xF1F9\t0x5912\n0xF1FA\t0x5B3D\n0xF1FB\t0x5B3E\n0xF1FC\t0x5B3F\n0xF1FD\t0x5DC3\n0xF1FE\t0x5E70\n0xF240\t0x5FBF\n0xF241\t0x61FB\n0xF242\t0x6507\n0xF243\t0x6510\n0xF244\t0x650D\n0xF245\t0x6509\n0xF246\t0x650C\n0xF247\t0x650E\n0xF248\t0x6584\n0xF249\t0x65DE\n0xF24A\t0x65DD\n0xF24B\t0x66DE\n0xF24C\t0x6AE7\n0xF24D\t0x6AE0\n0xF24E\t0x6ACC\n0xF24F\t0x6AD1\n0xF250\t0x6AD9\n0xF251\t0x6ACB\n0xF252\t0x6ADF\n0xF253\t0x6ADC\n0xF254\t0x6AD0\n0xF255\t0x6AEB\n0xF256\t0x6ACF\n0xF257\t0x6ACD\n0xF258\t0x6ADE\n0xF259\t0x6B60\n0xF25A\t0x6BB0\n0xF25B\t0x6C0C\n0xF25C\t0x7019\n0xF25D\t0x7027\n0xF25E\t0x7020\n0xF25F\t0x7016\n0xF260\t0x702B\n0xF261\t0x7021\n0xF262\t0x7022\n0xF263\t0x7023\n0xF264\t0x7029\n0xF265\t0x7017\n0xF266\t0x7024\n0xF267\t0x701C\n0xF268\t0x702A\n0xF269\t0x720C\n0xF26A\t0x720A\n0xF26B\t0x7207\n0xF26C\t0x7202\n0xF26D\t0x7205\n0xF26E\t0x72A5\n0xF26F\t0x72A6\n0xF270\t0x72A4\n0xF271\t0x72A3\n0xF272\t0x72A1\n0xF273\t0x74CB\n0xF274\t0x74C5\n0xF275\t0x74B7\n0xF276\t0x74C3\n0xF277\t0x7516\n0xF278\t0x7660\n0xF279\t0x77C9\n0xF27A\t0x77CA\n0xF27B\t0x77C4\n0xF27C\t0x77F1\n0xF27D\t0x791D\n0xF27E\t0x791B\n0xF2A1\t0x7921\n0xF2A2\t0x791C\n0xF2A3\t0x7917\n0xF2A4\t0x791E\n0xF2A5\t0x79B0\n0xF2A6\t0x7A67\n0xF2A7\t0x7A68\n0xF2A8\t0x7C33\n0xF2A9\t0x7C3C\n0xF2AA\t0x7C39\n0xF2AB\t0x7C2C\n0xF2AC\t0x7C3B\n0xF2AD\t0x7CEC\n0xF2AE\t0x7CEA\n0xF2AF\t0x7E76\n0xF2B0\t0x7E75\n0xF2B1\t0x7E78\n0xF2B2\t0x7E70\n0xF2B3\t0x7E77\n0xF2B4\t0x7E6F\n0xF2B5\t0x7E7A\n0xF2B6\t0x7E72\n0xF2B7\t0x7E74\n0xF2B8\t0x7E68\n0xF2B9\t0x7F4B\n0xF2BA\t0x7F4A\n0xF2BB\t0x7F83\n0xF2BC\t0x7F86\n0xF2BD\t0x7FB7\n0xF2BE\t0x7FFD\n0xF2BF\t0x7FFE\n0xF2C0\t0x8078\n0xF2C1\t0x81D7\n0xF2C2\t0x81D5\n0xF2C3\t0x8264\n0xF2C4\t0x8261\n0xF2C5\t0x8263\n0xF2C6\t0x85EB\n0xF2C7\t0x85F1\n0xF2C8\t0x85ED\n0xF2C9\t0x85D9\n0xF2CA\t0x85E1\n0xF2CB\t0x85E8\n0xF2CC\t0x85DA\n0xF2CD\t0x85D7\n0xF2CE\t0x85EC\n0xF2CF\t0x85F2\n0xF2D0\t0x85F8\n0xF2D1\t0x85D8\n0xF2D2\t0x85DF\n0xF2D3\t0x85E3\n0xF2D4\t0x85DC\n0xF2D5\t0x85D1\n0xF2D6\t0x85F0\n0xF2D7\t0x85E6\n0xF2D8\t0x85EF\n0xF2D9\t0x85DE\n0xF2DA\t0x85E2\n0xF2DB\t0x8800\n0xF2DC\t0x87FA\n0xF2DD\t0x8803\n0xF2DE\t0x87F6\n0xF2DF\t0x87F7\n0xF2E0\t0x8809\n0xF2E1\t0x880C\n0xF2E2\t0x880B\n0xF2E3\t0x8806\n0xF2E4\t0x87FC\n0xF2E5\t0x8808\n0xF2E6\t0x87FF\n0xF2E7\t0x880A\n0xF2E8\t0x8802\n0xF2E9\t0x8962\n0xF2EA\t0x895A\n0xF2EB\t0x895B\n0xF2EC\t0x8957\n0xF2ED\t0x8961\n0xF2EE\t0x895C\n0xF2EF\t0x8958\n0xF2F0\t0x895D\n0xF2F1\t0x8959\n0xF2F2\t0x8988\n0xF2F3\t0x89B7\n0xF2F4\t0x89B6\n0xF2F5\t0x89F6\n0xF2F6\t0x8B50\n0xF2F7\t0x8B48\n0xF2F8\t0x8B4A\n0xF2F9\t0x8B40\n0xF2FA\t0x8B53\n0xF2FB\t0x8B56\n0xF2FC\t0x8B54\n0xF2FD\t0x8B4B\n0xF2FE\t0x8B55\n0xF340\t0x8B51\n0xF341\t0x8B42\n0xF342\t0x8B52\n0xF343\t0x8B57\n0xF344\t0x8C43\n0xF345\t0x8C77\n0xF346\t0x8C76\n0xF347\t0x8C9A\n0xF348\t0x8D06\n0xF349\t0x8D07\n0xF34A\t0x8D09\n0xF34B\t0x8DAC\n0xF34C\t0x8DAA\n0xF34D\t0x8DAD\n0xF34E\t0x8DAB\n0xF34F\t0x8E6D\n0xF350\t0x8E78\n0xF351\t0x8E73\n0xF352\t0x8E6A\n0xF353\t0x8E6F\n0xF354\t0x8E7B\n0xF355\t0x8EC2\n0xF356\t0x8F52\n0xF357\t0x8F51\n0xF358\t0x8F4F\n0xF359\t0x8F50\n0xF35A\t0x8F53\n0xF35B\t0x8FB4\n0xF35C\t0x9140\n0xF35D\t0x913F\n0xF35E\t0x91B0\n0xF35F\t0x91AD\n0xF360\t0x93DE\n0xF361\t0x93C7\n0xF362\t0x93CF\n0xF363\t0x93C2\n0xF364\t0x93DA\n0xF365\t0x93D0\n0xF366\t0x93F9\n0xF367\t0x93EC\n0xF368\t0x93CC\n0xF369\t0x93D9\n0xF36A\t0x93A9\n0xF36B\t0x93E6\n0xF36C\t0x93CA\n0xF36D\t0x93D4\n0xF36E\t0x93EE\n0xF36F\t0x93E3\n0xF370\t0x93D5\n0xF371\t0x93C4\n0xF372\t0x93CE\n0xF373\t0x93C0\n0xF374\t0x93D2\n0xF375\t0x93E7\n0xF376\t0x957D\n0xF377\t0x95DA\n0xF378\t0x95DB\n0xF379\t0x96E1\n0xF37A\t0x9729\n0xF37B\t0x972B\n0xF37C\t0x972C\n0xF37D\t0x9728\n0xF37E\t0x9726\n0xF3A1\t0x97B3\n0xF3A2\t0x97B7\n0xF3A3\t0x97B6\n0xF3A4\t0x97DD\n0xF3A5\t0x97DE\n0xF3A6\t0x97DF\n0xF3A7\t0x985C\n0xF3A8\t0x9859\n0xF3A9\t0x985D\n0xF3AA\t0x9857\n0xF3AB\t0x98BF\n0xF3AC\t0x98BD\n0xF3AD\t0x98BB\n0xF3AE\t0x98BE\n0xF3AF\t0x9948\n0xF3B0\t0x9947\n0xF3B1\t0x9943\n0xF3B2\t0x99A6\n0xF3B3\t0x99A7\n0xF3B4\t0x9A1A\n0xF3B5\t0x9A15\n0xF3B6\t0x9A25\n0xF3B7\t0x9A1D\n0xF3B8\t0x9A24\n0xF3B9\t0x9A1B\n0xF3BA\t0x9A22\n0xF3BB\t0x9A20\n0xF3BC\t0x9A27\n0xF3BD\t0x9A23\n0xF3BE\t0x9A1E\n0xF3BF\t0x9A1C\n0xF3C0\t0x9A14\n0xF3C1\t0x9AC2\n0xF3C2\t0x9B0B\n0xF3C3\t0x9B0A\n0xF3C4\t0x9B0E\n0xF3C5\t0x9B0C\n0xF3C6\t0x9B37\n0xF3C7\t0x9BEA\n0xF3C8\t0x9BEB\n0xF3C9\t0x9BE0\n0xF3CA\t0x9BDE\n0xF3CB\t0x9BE4\n0xF3CC\t0x9BE6\n0xF3CD\t0x9BE2\n0xF3CE\t0x9BF0\n0xF3CF\t0x9BD4\n0xF3D0\t0x9BD7\n0xF3D1\t0x9BEC\n0xF3D2\t0x9BDC\n0xF3D3\t0x9BD9\n0xF3D4\t0x9BE5\n0xF3D5\t0x9BD5\n0xF3D6\t0x9BE1\n0xF3D7\t0x9BDA\n0xF3D8\t0x9D77\n0xF3D9\t0x9D81\n0xF3DA\t0x9D8A\n0xF3DB\t0x9D84\n0xF3DC\t0x9D88\n0xF3DD\t0x9D71\n0xF3DE\t0x9D80\n0xF3DF\t0x9D78\n0xF3E0\t0x9D86\n0xF3E1\t0x9D8B\n0xF3E2\t0x9D8C\n0xF3E3\t0x9D7D\n0xF3E4\t0x9D6B\n0xF3E5\t0x9D74\n0xF3E6\t0x9D75\n0xF3E7\t0x9D70\n0xF3E8\t0x9D69\n0xF3E9\t0x9D85\n0xF3EA\t0x9D73\n0xF3EB\t0x9D7B\n0xF3EC\t0x9D82\n0xF3ED\t0x9D6F\n0xF3EE\t0x9D79\n0xF3EF\t0x9D7F\n0xF3F0\t0x9D87\n0xF3F1\t0x9D68\n0xF3F2\t0x9E94\n0xF3F3\t0x9E91\n0xF3F4\t0x9EC0\n0xF3F5\t0x9EFC\n0xF3F6\t0x9F2D\n0xF3F7\t0x9F40\n0xF3F8\t0x9F41\n0xF3F9\t0x9F4D\n0xF3FA\t0x9F56\n0xF3FB\t0x9F57\n0xF3FC\t0x9F58\n0xF3FD\t0x5337\n0xF3FE\t0x56B2\n0xF440\t0x56B5\n0xF441\t0x56B3\n0xF442\t0x58E3\n0xF443\t0x5B45\n0xF444\t0x5DC6\n0xF445\t0x5DC7\n0xF446\t0x5EEE\n0xF447\t0x5EEF\n0xF448\t0x5FC0\n0xF449\t0x5FC1\n0xF44A\t0x61F9\n0xF44B\t0x6517\n0xF44C\t0x6516\n0xF44D\t0x6515\n0xF44E\t0x6513\n0xF44F\t0x65DF\n0xF450\t0x66E8\n0xF451\t0x66E3\n0xF452\t0x66E4\n0xF453\t0x6AF3\n0xF454\t0x6AF0\n0xF455\t0x6AEA\n0xF456\t0x6AE8\n0xF457\t0x6AF9\n0xF458\t0x6AF1\n0xF459\t0x6AEE\n0xF45A\t0x6AEF\n0xF45B\t0x703C\n0xF45C\t0x7035\n0xF45D\t0x702F\n0xF45E\t0x7037\n0xF45F\t0x7034\n0xF460\t0x7031\n0xF461\t0x7042\n0xF462\t0x7038\n0xF463\t0x703F\n0xF464\t0x703A\n0xF465\t0x7039\n0xF466\t0x7040\n0xF467\t0x703B\n0xF468\t0x7033\n0xF469\t0x7041\n0xF46A\t0x7213\n0xF46B\t0x7214\n0xF46C\t0x72A8\n0xF46D\t0x737D\n0xF46E\t0x737C\n0xF46F\t0x74BA\n0xF470\t0x76AB\n0xF471\t0x76AA\n0xF472\t0x76BE\n0xF473\t0x76ED\n0xF474\t0x77CC\n0xF475\t0x77CE\n0xF476\t0x77CF\n0xF477\t0x77CD\n0xF478\t0x77F2\n0xF479\t0x7925\n0xF47A\t0x7923\n0xF47B\t0x7927\n0xF47C\t0x7928\n0xF47D\t0x7924\n0xF47E\t0x7929\n0xF4A1\t0x79B2\n0xF4A2\t0x7A6E\n0xF4A3\t0x7A6C\n0xF4A4\t0x7A6D\n0xF4A5\t0x7AF7\n0xF4A6\t0x7C49\n0xF4A7\t0x7C48\n0xF4A8\t0x7C4A\n0xF4A9\t0x7C47\n0xF4AA\t0x7C45\n0xF4AB\t0x7CEE\n0xF4AC\t0x7E7B\n0xF4AD\t0x7E7E\n0xF4AE\t0x7E81\n0xF4AF\t0x7E80\n0xF4B0\t0x7FBA\n0xF4B1\t0x7FFF\n0xF4B2\t0x8079\n0xF4B3\t0x81DB\n0xF4B4\t0x81D9\n0xF4B5\t0x820B\n0xF4B6\t0x8268\n0xF4B7\t0x8269\n0xF4B8\t0x8622\n0xF4B9\t0x85FF\n0xF4BA\t0x8601\n0xF4BB\t0x85FE\n0xF4BC\t0x861B\n0xF4BD\t0x8600\n0xF4BE\t0x85F6\n0xF4BF\t0x8604\n0xF4C0\t0x8609\n0xF4C1\t0x8605\n0xF4C2\t0x860C\n0xF4C3\t0x85FD\n0xF4C4\t0x8819\n0xF4C5\t0x8810\n0xF4C6\t0x8811\n0xF4C7\t0x8817\n0xF4C8\t0x8813\n0xF4C9\t0x8816\n0xF4CA\t0x8963\n0xF4CB\t0x8966\n0xF4CC\t0x89B9\n0xF4CD\t0x89F7\n0xF4CE\t0x8B60\n0xF4CF\t0x8B6A\n0xF4D0\t0x8B5D\n0xF4D1\t0x8B68\n0xF4D2\t0x8B63\n0xF4D3\t0x8B65\n0xF4D4\t0x8B67\n0xF4D5\t0x8B6D\n0xF4D6\t0x8DAE\n0xF4D7\t0x8E86\n0xF4D8\t0x8E88\n0xF4D9\t0x8E84\n0xF4DA\t0x8F59\n0xF4DB\t0x8F56\n0xF4DC\t0x8F57\n0xF4DD\t0x8F55\n0xF4DE\t0x8F58\n0xF4DF\t0x8F5A\n0xF4E0\t0x908D\n0xF4E1\t0x9143\n0xF4E2\t0x9141\n0xF4E3\t0x91B7\n0xF4E4\t0x91B5\n0xF4E5\t0x91B2\n0xF4E6\t0x91B3\n0xF4E7\t0x940B\n0xF4E8\t0x9413\n0xF4E9\t0x93FB\n0xF4EA\t0x9420\n0xF4EB\t0x940F\n0xF4EC\t0x9414\n0xF4ED\t0x93FE\n0xF4EE\t0x9415\n0xF4EF\t0x9410\n0xF4F0\t0x9428\n0xF4F1\t0x9419\n0xF4F2\t0x940D\n0xF4F3\t0x93F5\n0xF4F4\t0x9400\n0xF4F5\t0x93F7\n0xF4F6\t0x9407\n0xF4F7\t0x940E\n0xF4F8\t0x9416\n0xF4F9\t0x9412\n0xF4FA\t0x93FA\n0xF4FB\t0x9409\n0xF4FC\t0x93F8\n0xF4FD\t0x940A\n0xF4FE\t0x93FF\n0xF540\t0x93FC\n0xF541\t0x940C\n0xF542\t0x93F6\n0xF543\t0x9411\n0xF544\t0x9406\n0xF545\t0x95DE\n0xF546\t0x95E0\n0xF547\t0x95DF\n0xF548\t0x972E\n0xF549\t0x972F\n0xF54A\t0x97B9\n0xF54B\t0x97BB\n0xF54C\t0x97FD\n0xF54D\t0x97FE\n0xF54E\t0x9860\n0xF54F\t0x9862\n0xF550\t0x9863\n0xF551\t0x985F\n0xF552\t0x98C1\n0xF553\t0x98C2\n0xF554\t0x9950\n0xF555\t0x994E\n0xF556\t0x9959\n0xF557\t0x994C\n0xF558\t0x994B\n0xF559\t0x9953\n0xF55A\t0x9A32\n0xF55B\t0x9A34\n0xF55C\t0x9A31\n0xF55D\t0x9A2C\n0xF55E\t0x9A2A\n0xF55F\t0x9A36\n0xF560\t0x9A29\n0xF561\t0x9A2E\n0xF562\t0x9A38\n0xF563\t0x9A2D\n0xF564\t0x9AC7\n0xF565\t0x9ACA\n0xF566\t0x9AC6\n0xF567\t0x9B10\n0xF568\t0x9B12\n0xF569\t0x9B11\n0xF56A\t0x9C0B\n0xF56B\t0x9C08\n0xF56C\t0x9BF7\n0xF56D\t0x9C05\n0xF56E\t0x9C12\n0xF56F\t0x9BF8\n0xF570\t0x9C40\n0xF571\t0x9C07\n0xF572\t0x9C0E\n0xF573\t0x9C06\n0xF574\t0x9C17\n0xF575\t0x9C14\n0xF576\t0x9C09\n0xF577\t0x9D9F\n0xF578\t0x9D99\n0xF579\t0x9DA4\n0xF57A\t0x9D9D\n0xF57B\t0x9D92\n0xF57C\t0x9D98\n0xF57D\t0x9D90\n0xF57E\t0x9D9B\n0xF5A1\t0x9DA0\n0xF5A2\t0x9D94\n0xF5A3\t0x9D9C\n0xF5A4\t0x9DAA\n0xF5A5\t0x9D97\n0xF5A6\t0x9DA1\n0xF5A7\t0x9D9A\n0xF5A8\t0x9DA2\n0xF5A9\t0x9DA8\n0xF5AA\t0x9D9E\n0xF5AB\t0x9DA3\n0xF5AC\t0x9DBF\n0xF5AD\t0x9DA9\n0xF5AE\t0x9D96\n0xF5AF\t0x9DA6\n0xF5B0\t0x9DA7\n0xF5B1\t0x9E99\n0xF5B2\t0x9E9B\n0xF5B3\t0x9E9A\n0xF5B4\t0x9EE5\n0xF5B5\t0x9EE4\n0xF5B6\t0x9EE7\n0xF5B7\t0x9EE6\n0xF5B8\t0x9F30\n0xF5B9\t0x9F2E\n0xF5BA\t0x9F5B\n0xF5BB\t0x9F60\n0xF5BC\t0x9F5E\n0xF5BD\t0x9F5D\n0xF5BE\t0x9F59\n0xF5BF\t0x9F91\n0xF5C0\t0x513A\n0xF5C1\t0x5139\n0xF5C2\t0x5298\n0xF5C3\t0x5297\n0xF5C4\t0x56C3\n0xF5C5\t0x56BD\n0xF5C6\t0x56BE\n0xF5C7\t0x5B48\n0xF5C8\t0x5B47\n0xF5C9\t0x5DCB\n0xF5CA\t0x5DCF\n0xF5CB\t0x5EF1\n0xF5CC\t0x61FD\n0xF5CD\t0x651B\n0xF5CE\t0x6B02\n0xF5CF\t0x6AFC\n0xF5D0\t0x6B03\n0xF5D1\t0x6AF8\n0xF5D2\t0x6B00\n0xF5D3\t0x7043\n0xF5D4\t0x7044\n0xF5D5\t0x704A\n0xF5D6\t0x7048\n0xF5D7\t0x7049\n0xF5D8\t0x7045\n0xF5D9\t0x7046\n0xF5DA\t0x721D\n0xF5DB\t0x721A\n0xF5DC\t0x7219\n0xF5DD\t0x737E\n0xF5DE\t0x7517\n0xF5DF\t0x766A\n0xF5E0\t0x77D0\n0xF5E1\t0x792D\n0xF5E2\t0x7931\n0xF5E3\t0x792F\n0xF5E4\t0x7C54\n0xF5E5\t0x7C53\n0xF5E6\t0x7CF2\n0xF5E7\t0x7E8A\n0xF5E8\t0x7E87\n0xF5E9\t0x7E88\n0xF5EA\t0x7E8B\n0xF5EB\t0x7E86\n0xF5EC\t0x7E8D\n0xF5ED\t0x7F4D\n0xF5EE\t0x7FBB\n0xF5EF\t0x8030\n0xF5F0\t0x81DD\n0xF5F1\t0x8618\n0xF5F2\t0x862A\n0xF5F3\t0x8626\n0xF5F4\t0x861F\n0xF5F5\t0x8623\n0xF5F6\t0x861C\n0xF5F7\t0x8619\n0xF5F8\t0x8627\n0xF5F9\t0x862E\n0xF5FA\t0x8621\n0xF5FB\t0x8620\n0xF5FC\t0x8629\n0xF5FD\t0x861E\n0xF5FE\t0x8625\n0xF640\t0x8829\n0xF641\t0x881D\n0xF642\t0x881B\n0xF643\t0x8820\n0xF644\t0x8824\n0xF645\t0x881C\n0xF646\t0x882B\n0xF647\t0x884A\n0xF648\t0x896D\n0xF649\t0x8969\n0xF64A\t0x896E\n0xF64B\t0x896B\n0xF64C\t0x89FA\n0xF64D\t0x8B79\n0xF64E\t0x8B78\n0xF64F\t0x8B45\n0xF650\t0x8B7A\n0xF651\t0x8B7B\n0xF652\t0x8D10\n0xF653\t0x8D14\n0xF654\t0x8DAF\n0xF655\t0x8E8E\n0xF656\t0x8E8C\n0xF657\t0x8F5E\n0xF658\t0x8F5B\n0xF659\t0x8F5D\n0xF65A\t0x9146\n0xF65B\t0x9144\n0xF65C\t0x9145\n0xF65D\t0x91B9\n0xF65E\t0x943F\n0xF65F\t0x943B\n0xF660\t0x9436\n0xF661\t0x9429\n0xF662\t0x943D\n0xF663\t0x943C\n0xF664\t0x9430\n0xF665\t0x9439\n0xF666\t0x942A\n0xF667\t0x9437\n0xF668\t0x942C\n0xF669\t0x9440\n0xF66A\t0x9431\n0xF66B\t0x95E5\n0xF66C\t0x95E4\n0xF66D\t0x95E3\n0xF66E\t0x9735\n0xF66F\t0x973A\n0xF670\t0x97BF\n0xF671\t0x97E1\n0xF672\t0x9864\n0xF673\t0x98C9\n0xF674\t0x98C6\n0xF675\t0x98C0\n0xF676\t0x9958\n0xF677\t0x9956\n0xF678\t0x9A39\n0xF679\t0x9A3D\n0xF67A\t0x9A46\n0xF67B\t0x9A44\n0xF67C\t0x9A42\n0xF67D\t0x9A41\n0xF67E\t0x9A3A\n0xF6A1\t0x9A3F\n0xF6A2\t0x9ACD\n0xF6A3\t0x9B15\n0xF6A4\t0x9B17\n0xF6A5\t0x9B18\n0xF6A6\t0x9B16\n0xF6A7\t0x9B3A\n0xF6A8\t0x9B52\n0xF6A9\t0x9C2B\n0xF6AA\t0x9C1D\n0xF6AB\t0x9C1C\n0xF6AC\t0x9C2C\n0xF6AD\t0x9C23\n0xF6AE\t0x9C28\n0xF6AF\t0x9C29\n0xF6B0\t0x9C24\n0xF6B1\t0x9C21\n0xF6B2\t0x9DB7\n0xF6B3\t0x9DB6\n0xF6B4\t0x9DBC\n0xF6B5\t0x9DC1\n0xF6B6\t0x9DC7\n0xF6B7\t0x9DCA\n0xF6B8\t0x9DCF\n0xF6B9\t0x9DBE\n0xF6BA\t0x9DC5\n0xF6BB\t0x9DC3\n0xF6BC\t0x9DBB\n0xF6BD\t0x9DB5\n0xF6BE\t0x9DCE\n0xF6BF\t0x9DB9\n0xF6C0\t0x9DBA\n0xF6C1\t0x9DAC\n0xF6C2\t0x9DC8\n0xF6C3\t0x9DB1\n0xF6C4\t0x9DAD\n0xF6C5\t0x9DCC\n0xF6C6\t0x9DB3\n0xF6C7\t0x9DCD\n0xF6C8\t0x9DB2\n0xF6C9\t0x9E7A\n0xF6CA\t0x9E9C\n0xF6CB\t0x9EEB\n0xF6CC\t0x9EEE\n0xF6CD\t0x9EED\n0xF6CE\t0x9F1B\n0xF6CF\t0x9F18\n0xF6D0\t0x9F1A\n0xF6D1\t0x9F31\n0xF6D2\t0x9F4E\n0xF6D3\t0x9F65\n0xF6D4\t0x9F64\n0xF6D5\t0x9F92\n0xF6D6\t0x4EB9\n0xF6D7\t0x56C6\n0xF6D8\t0x56C5\n0xF6D9\t0x56CB\n0xF6DA\t0x5971\n0xF6DB\t0x5B4B\n0xF6DC\t0x5B4C\n0xF6DD\t0x5DD5\n0xF6DE\t0x5DD1\n0xF6DF\t0x5EF2\n0xF6E0\t0x6521\n0xF6E1\t0x6520\n0xF6E2\t0x6526\n0xF6E3\t0x6522\n0xF6E4\t0x6B0B\n0xF6E5\t0x6B08\n0xF6E6\t0x6B09\n0xF6E7\t0x6C0D\n0xF6E8\t0x7055\n0xF6E9\t0x7056\n0xF6EA\t0x7057\n0xF6EB\t0x7052\n0xF6EC\t0x721E\n0xF6ED\t0x721F\n0xF6EE\t0x72A9\n0xF6EF\t0x737F\n0xF6F0\t0x74D8\n0xF6F1\t0x74D5\n0xF6F2\t0x74D9\n0xF6F3\t0x74D7\n0xF6F4\t0x766D\n0xF6F5\t0x76AD\n0xF6F6\t0x7935\n0xF6F7\t0x79B4\n0xF6F8\t0x7A70\n0xF6F9\t0x7A71\n0xF6FA\t0x7C57\n0xF6FB\t0x7C5C\n0xF6FC\t0x7C59\n0xF6FD\t0x7C5B\n0xF6FE\t0x7C5A\n0xF740\t0x7CF4\n0xF741\t0x7CF1\n0xF742\t0x7E91\n0xF743\t0x7F4F\n0xF744\t0x7F87\n0xF745\t0x81DE\n0xF746\t0x826B\n0xF747\t0x8634\n0xF748\t0x8635\n0xF749\t0x8633\n0xF74A\t0x862C\n0xF74B\t0x8632\n0xF74C\t0x8636\n0xF74D\t0x882C\n0xF74E\t0x8828\n0xF74F\t0x8826\n0xF750\t0x882A\n0xF751\t0x8825\n0xF752\t0x8971\n0xF753\t0x89BF\n0xF754\t0x89BE\n0xF755\t0x89FB\n0xF756\t0x8B7E\n0xF757\t0x8B84\n0xF758\t0x8B82\n0xF759\t0x8B86\n0xF75A\t0x8B85\n0xF75B\t0x8B7F\n0xF75C\t0x8D15\n0xF75D\t0x8E95\n0xF75E\t0x8E94\n0xF75F\t0x8E9A\n0xF760\t0x8E92\n0xF761\t0x8E90\n0xF762\t0x8E96\n0xF763\t0x8E97\n0xF764\t0x8F60\n0xF765\t0x8F62\n0xF766\t0x9147\n0xF767\t0x944C\n0xF768\t0x9450\n0xF769\t0x944A\n0xF76A\t0x944B\n0xF76B\t0x944F\n0xF76C\t0x9447\n0xF76D\t0x9445\n0xF76E\t0x9448\n0xF76F\t0x9449\n0xF770\t0x9446\n0xF771\t0x973F\n0xF772\t0x97E3\n0xF773\t0x986A\n0xF774\t0x9869\n0xF775\t0x98CB\n0xF776\t0x9954\n0xF777\t0x995B\n0xF778\t0x9A4E\n0xF779\t0x9A53\n0xF77A\t0x9A54\n0xF77B\t0x9A4C\n0xF77C\t0x9A4F\n0xF77D\t0x9A48\n0xF77E\t0x9A4A\n0xF7A1\t0x9A49\n0xF7A2\t0x9A52\n0xF7A3\t0x9A50\n0xF7A4\t0x9AD0\n0xF7A5\t0x9B19\n0xF7A6\t0x9B2B\n0xF7A7\t0x9B3B\n0xF7A8\t0x9B56\n0xF7A9\t0x9B55\n0xF7AA\t0x9C46\n0xF7AB\t0x9C48\n0xF7AC\t0x9C3F\n0xF7AD\t0x9C44\n0xF7AE\t0x9C39\n0xF7AF\t0x9C33\n0xF7B0\t0x9C41\n0xF7B1\t0x9C3C\n0xF7B2\t0x9C37\n0xF7B3\t0x9C34\n0xF7B4\t0x9C32\n0xF7B5\t0x9C3D\n0xF7B6\t0x9C36\n0xF7B7\t0x9DDB\n0xF7B8\t0x9DD2\n0xF7B9\t0x9DDE\n0xF7BA\t0x9DDA\n0xF7BB\t0x9DCB\n0xF7BC\t0x9DD0\n0xF7BD\t0x9DDC\n0xF7BE\t0x9DD1\n0xF7BF\t0x9DDF\n0xF7C0\t0x9DE9\n0xF7C1\t0x9DD9\n0xF7C2\t0x9DD8\n0xF7C3\t0x9DD6\n0xF7C4\t0x9DF5\n0xF7C5\t0x9DD5\n0xF7C6\t0x9DDD\n0xF7C7\t0x9EB6\n0xF7C8\t0x9EF0\n0xF7C9\t0x9F35\n0xF7CA\t0x9F33\n0xF7CB\t0x9F32\n0xF7CC\t0x9F42\n0xF7CD\t0x9F6B\n0xF7CE\t0x9F95\n0xF7CF\t0x9FA2\n0xF7D0\t0x513D\n0xF7D1\t0x5299\n0xF7D2\t0x58E8\n0xF7D3\t0x58E7\n0xF7D4\t0x5972\n0xF7D5\t0x5B4D\n0xF7D6\t0x5DD8\n0xF7D7\t0x882F\n0xF7D8\t0x5F4F\n0xF7D9\t0x6201\n0xF7DA\t0x6203\n0xF7DB\t0x6204\n0xF7DC\t0x6529\n0xF7DD\t0x6525\n0xF7DE\t0x6596\n0xF7DF\t0x66EB\n0xF7E0\t0x6B11\n0xF7E1\t0x6B12\n0xF7E2\t0x6B0F\n0xF7E3\t0x6BCA\n0xF7E4\t0x705B\n0xF7E5\t0x705A\n0xF7E6\t0x7222\n0xF7E7\t0x7382\n0xF7E8\t0x7381\n0xF7E9\t0x7383\n0xF7EA\t0x7670\n0xF7EB\t0x77D4\n0xF7EC\t0x7C67\n0xF7ED\t0x7C66\n0xF7EE\t0x7E95\n0xF7EF\t0x826C\n0xF7F0\t0x863A\n0xF7F1\t0x8640\n0xF7F2\t0x8639\n0xF7F3\t0x863C\n0xF7F4\t0x8631\n0xF7F5\t0x863B\n0xF7F6\t0x863E\n0xF7F7\t0x8830\n0xF7F8\t0x8832\n0xF7F9\t0x882E\n0xF7FA\t0x8833\n0xF7FB\t0x8976\n0xF7FC\t0x8974\n0xF7FD\t0x8973\n0xF7FE\t0x89FE\n0xF840\t0x8B8C\n0xF841\t0x8B8E\n0xF842\t0x8B8B\n0xF843\t0x8B88\n0xF844\t0x8C45\n0xF845\t0x8D19\n0xF846\t0x8E98\n0xF847\t0x8F64\n0xF848\t0x8F63\n0xF849\t0x91BC\n0xF84A\t0x9462\n0xF84B\t0x9455\n0xF84C\t0x945D\n0xF84D\t0x9457\n0xF84E\t0x945E\n0xF84F\t0x97C4\n0xF850\t0x97C5\n0xF851\t0x9800\n0xF852\t0x9A56\n0xF853\t0x9A59\n0xF854\t0x9B1E\n0xF855\t0x9B1F\n0xF856\t0x9B20\n0xF857\t0x9C52\n0xF858\t0x9C58\n0xF859\t0x9C50\n0xF85A\t0x9C4A\n0xF85B\t0x9C4D\n0xF85C\t0x9C4B\n0xF85D\t0x9C55\n0xF85E\t0x9C59\n0xF85F\t0x9C4C\n0xF860\t0x9C4E\n0xF861\t0x9DFB\n0xF862\t0x9DF7\n0xF863\t0x9DEF\n0xF864\t0x9DE3\n0xF865\t0x9DEB\n0xF866\t0x9DF8\n0xF867\t0x9DE4\n0xF868\t0x9DF6\n0xF869\t0x9DE1\n0xF86A\t0x9DEE\n0xF86B\t0x9DE6\n0xF86C\t0x9DF2\n0xF86D\t0x9DF0\n0xF86E\t0x9DE2\n0xF86F\t0x9DEC\n0xF870\t0x9DF4\n0xF871\t0x9DF3\n0xF872\t0x9DE8\n0xF873\t0x9DED\n0xF874\t0x9EC2\n0xF875\t0x9ED0\n0xF876\t0x9EF2\n0xF877\t0x9EF3\n0xF878\t0x9F06\n0xF879\t0x9F1C\n0xF87A\t0x9F38\n0xF87B\t0x9F37\n0xF87C\t0x9F36\n0xF87D\t0x9F43\n0xF87E\t0x9F4F\n0xF8A1\t0x9F71\n0xF8A2\t0x9F70\n0xF8A3\t0x9F6E\n0xF8A4\t0x9F6F\n0xF8A5\t0x56D3\n0xF8A6\t0x56CD\n0xF8A7\t0x5B4E\n0xF8A8\t0x5C6D\n0xF8A9\t0x652D\n0xF8AA\t0x66ED\n0xF8AB\t0x66EE\n0xF8AC\t0x6B13\n0xF8AD\t0x705F\n0xF8AE\t0x7061\n0xF8AF\t0x705D\n0xF8B0\t0x7060\n0xF8B1\t0x7223\n0xF8B2\t0x74DB\n0xF8B3\t0x74E5\n0xF8B4\t0x77D5\n0xF8B5\t0x7938\n0xF8B6\t0x79B7\n0xF8B7\t0x79B6\n0xF8B8\t0x7C6A\n0xF8B9\t0x7E97\n0xF8BA\t0x7F89\n0xF8BB\t0x826D\n0xF8BC\t0x8643\n0xF8BD\t0x8838\n0xF8BE\t0x8837\n0xF8BF\t0x8835\n0xF8C0\t0x884B\n0xF8C1\t0x8B94\n0xF8C2\t0x8B95\n0xF8C3\t0x8E9E\n0xF8C4\t0x8E9F\n0xF8C5\t0x8EA0\n0xF8C6\t0x8E9D\n0xF8C7\t0x91BE\n0xF8C8\t0x91BD\n0xF8C9\t0x91C2\n0xF8CA\t0x946B\n0xF8CB\t0x9468\n0xF8CC\t0x9469\n0xF8CD\t0x96E5\n0xF8CE\t0x9746\n0xF8CF\t0x9743\n0xF8D0\t0x9747\n0xF8D1\t0x97C7\n0xF8D2\t0x97E5\n0xF8D3\t0x9A5E\n0xF8D4\t0x9AD5\n0xF8D5\t0x9B59\n0xF8D6\t0x9C63\n0xF8D7\t0x9C67\n0xF8D8\t0x9C66\n0xF8D9\t0x9C62\n0xF8DA\t0x9C5E\n0xF8DB\t0x9C60\n0xF8DC\t0x9E02\n0xF8DD\t0x9DFE\n0xF8DE\t0x9E07\n0xF8DF\t0x9E03\n0xF8E0\t0x9E06\n0xF8E1\t0x9E05\n0xF8E2\t0x9E00\n0xF8E3\t0x9E01\n0xF8E4\t0x9E09\n0xF8E5\t0x9DFF\n0xF8E6\t0x9DFD\n0xF8E7\t0x9E04\n0xF8E8\t0x9EA0\n0xF8E9\t0x9F1E\n0xF8EA\t0x9F46\n0xF8EB\t0x9F74\n0xF8EC\t0x9F75\n0xF8ED\t0x9F76\n0xF8EE\t0x56D4\n0xF8EF\t0x652E\n0xF8F0\t0x65B8\n0xF8F1\t0x6B18\n0xF8F2\t0x6B19\n0xF8F3\t0x6B17\n0xF8F4\t0x6B1A\n0xF8F5\t0x7062\n0xF8F6\t0x7226\n0xF8F7\t0x72AA\n0xF8F8\t0x77D8\n0xF8F9\t0x77D9\n0xF8FA\t0x7939\n0xF8FB\t0x7C69\n0xF8FC\t0x7C6B\n0xF8FD\t0x7CF6\n0xF8FE\t0x7E9A\n0xF940\t0x7E98\n0xF941\t0x7E9B\n0xF942\t0x7E99\n0xF943\t0x81E0\n0xF944\t0x81E1\n0xF945\t0x8646\n0xF946\t0x8647\n0xF947\t0x8648\n0xF948\t0x8979\n0xF949\t0x897A\n0xF94A\t0x897C\n0xF94B\t0x897B\n0xF94C\t0x89FF\n0xF94D\t0x8B98\n0xF94E\t0x8B99\n0xF94F\t0x8EA5\n0xF950\t0x8EA4\n0xF951\t0x8EA3\n0xF952\t0x946E\n0xF953\t0x946D\n0xF954\t0x946F\n0xF955\t0x9471\n0xF956\t0x9473\n0xF957\t0x9749\n0xF958\t0x9872\n0xF959\t0x995F\n0xF95A\t0x9C68\n0xF95B\t0x9C6E\n0xF95C\t0x9C6D\n0xF95D\t0x9E0B\n0xF95E\t0x9E0D\n0xF95F\t0x9E10\n0xF960\t0x9E0F\n0xF961\t0x9E12\n0xF962\t0x9E11\n0xF963\t0x9EA1\n0xF964\t0x9EF5\n0xF965\t0x9F09\n0xF966\t0x9F47\n0xF967\t0x9F78\n0xF968\t0x9F7B\n0xF969\t0x9F7A\n0xF96A\t0x9F79\n0xF96B\t0x571E\n0xF96C\t0x7066\n0xF96D\t0x7C6F\n0xF96E\t0x883C\n0xF96F\t0x8DB2\n0xF970\t0x8EA6\n0xF971\t0x91C3\n0xF972\t0x9474\n0xF973\t0x9478\n0xF974\t0x9476\n0xF975\t0x9475\n0xF976\t0x9A60\n0xF977\t0x9C74\n0xF978\t0x9C73\n0xF979\t0x9C71\n0xF97A\t0x9C75\n0xF97B\t0x9E14\n0xF97C\t0x9E13\n0xF97D\t0x9EF6\n0xF97E\t0x9F0A\n0xF9A1\t0x9FA4\n0xF9A2\t0x7068\n0xF9A3\t0x7065\n0xF9A4\t0x7CF7\n0xF9A5\t0x866A\n0xF9A6\t0x883E\n0xF9A7\t0x883D\n0xF9A8\t0x883F\n0xF9A9\t0x8B9E\n0xF9AA\t0x8C9C\n0xF9AB\t0x8EA9\n0xF9AC\t0x8EC9\n0xF9AD\t0x974B\n0xF9AE\t0x9873\n0xF9AF\t0x9874\n0xF9B0\t0x98CC\n0xF9B1\t0x9961\n0xF9B2\t0x99AB\n0xF9B3\t0x9A64\n0xF9B4\t0x9A66\n0xF9B5\t0x9A67\n0xF9B6\t0x9B24\n0xF9B7\t0x9E15\n0xF9B8\t0x9E17\n0xF9B9\t0x9F48\n0xF9BA\t0x6207\n0xF9BB\t0x6B1E\n0xF9BC\t0x7227\n0xF9BD\t0x864C\n0xF9BE\t0x8EA8\n0xF9BF\t0x9482\n0xF9C0\t0x9480\n0xF9C1\t0x9481\n0xF9C2\t0x9A69\n0xF9C3\t0x9A68\n0xF9C4\t0x9B2E\n0xF9C5\t0x9E19\n0xF9C6\t0x7229\n0xF9C7\t0x864B\n0xF9C8\t0x8B9F\n0xF9C9\t0x9483\n0xF9CA\t0x9C79\n0xF9CB\t0x9EB7\n0xF9CC\t0x7675\n0xF9CD\t0x9A6B\n0xF9CE\t0x9C7A\n0xF9CF\t0x9E1D\n0xF9D0\t0x7069\n0xF9D1\t0x706A\n0xF9D2\t0x9EA4\n0xF9D3\t0x9F7E\n0xF9D4\t0x9F49\n0xF9D5\t0x9F98\n0xF9D6\t0x7881\n0xF9D7\t0x92B9\n0xF9D8\t0x88CF\n0xF9D9\t0x58BB\n0xF9DA\t0x6052\n0xF9DB\t0x7CA7\n0xF9DC\t0x5AFA\n0xF9DD\t0x2554\n0xF9DE\t0x2566\n0xF9DF\t0x2557\n0xF9E0\t0x2560\n0xF9E1\t0x256C\n0xF9E2\t0x2563\n0xF9E3\t0x255A\n0xF9E4\t0x2569\n0xF9E5\t0x255D\n0xF9E6\t0x2552\n0xF9E7\t0x2564\n0xF9E8\t0x2555\n0xF9E9\t0x255E\n0xF9EA\t0x256A\n0xF9EB\t0x2561\n0xF9EC\t0x2558\n0xF9ED\t0x2567\n0xF9EE\t0x255B\n0xF9EF\t0x2553\n0xF9F0\t0x2565\n0xF9F1\t0x2556\n0xF9F2\t0x255F\n0xF9F3\t0x256B\n0xF9F4\t0x2562\n0xF9F5\t0x2559\n0xF9F6\t0x2568\n0xF9F7\t0x255C\n0xF9F8\t0x2551\n0xF9F9\t0x2550\n0xF9FA\t0x256D\n0xF9FB\t0x256E\n0xF9FC\t0x2570\n0xF9FD\t0x256F\n0xF9FE\t0xFFED\n0xFA40\t0x20547\n0xFA41\t0x92DB\n0xFA42\t0x205DF\n0xFA43\t0x23FC5\n0xFA44\t0x854C\n0xFA45\t0x42B5\n0xFA46\t0x73EF\n0xFA47\t0x51B5\n0xFA48\t0x3649\n0xFA49\t0x24942\n0xFA4A\t0x289E4\n0xFA4B\t0x9344\n0xFA4C\t0x219DB\n0xFA4D\t0x82EE\n0xFA4E\t0x23CC8\n0xFA4F\t0x783C\n0xFA50\t0x6744\n0xFA51\t0x62DF\n0xFA52\t0x24933\n0xFA53\t0x289AA\n0xFA54\t0x202A0\n0xFA55\t0x26BB3\n0xFA56\t0x21305\n0xFA57\t0x4FAB\n0xFA58\t0x224ED\n0xFA59\t0x5008\n0xFA5A\t0x26D29\n0xFA5B\t0x27A84\n0xFA5C\t0x23600\n0xFA5D\t0x24AB1\n0xFA5E\t0x22513\n0xFA60\t0x2037E\n0xFA61\t0x5FA4\n0xFA62\t0x20380\n0xFA63\t0x20347\n0xFA64\t0x6EDB\n0xFA65\t0x2041F\n0xFA67\t0x5101\n0xFA68\t0x347A\n0xFA69\t0x510E\n0xFA6A\t0x986C\n0xFA6B\t0x3743\n0xFA6C\t0x8416\n0xFA6D\t0x249A4\n0xFA6E\t0x20487\n0xFA6F\t0x5160\n0xFA70\t0x233B4\n0xFA71\t0x516A\n0xFA72\t0x20BFF\n0xFA73\t0x220FC\n0xFA74\t0x202E5\n0xFA75\t0x22530\n0xFA76\t0x2058E\n0xFA77\t0x23233\n0xFA78\t0x21983\n0xFA79\t0x5B82\n0xFA7A\t0x877D\n0xFA7B\t0x205B3\n0xFA7C\t0x23C99\n0xFA7D\t0x51B2\n0xFA7E\t0x51B8\n0xFAA1\t0x9D34\n0xFAA2\t0x51C9\n0xFAA3\t0x51CF\n0xFAA4\t0x51D1\n0xFAA5\t0x3CDC\n0xFAA6\t0x51D3\n0xFAA7\t0x24AA6\n0xFAA8\t0x51B3\n0xFAA9\t0x51E2\n0xFAAA\t0x5342\n0xFAAB\t0x51ED\n0xFAAC\t0x83CD\n0xFAAD\t0x693E\n0xFAAE\t0x2372D\n0xFAAF\t0x5F7B\n0xFAB0\t0x520B\n0xFAB1\t0x5226\n0xFAB2\t0x523C\n0xFAB3\t0x52B5\n0xFAB4\t0x5257\n0xFAB5\t0x5294\n0xFAB6\t0x52B9\n0xFAB7\t0x52C5\n0xFAB8\t0x7C15\n0xFAB9\t0x8542\n0xFABA\t0x52E0\n0xFABB\t0x860D\n0xFABC\t0x26B13\n0xFABE\t0x28ADE\n0xFABF\t0x5549\n0xFAC0\t0x6ED9\n0xFAC1\t0x23F80\n0xFAC2\t0x20954\n0xFAC3\t0x23FEC\n0xFAC4\t0x5333\n0xFAC6\t0x20BE2\n0xFAC7\t0x6CCB\n0xFAC8\t0x21726\n0xFAC9\t0x681B\n0xFACA\t0x73D5\n0xFACB\t0x604A\n0xFACC\t0x3EAA\n0xFACD\t0x38CC\n0xFACE\t0x216E8\n0xFACF\t0x71DD\n0xFAD0\t0x44A2\n0xFAD1\t0x536D\n0xFAD2\t0x5374\n0xFAD3\t0x286AB\n0xFAD4\t0x537E\n0xFAD6\t0x21596\n0xFAD7\t0x21613\n0xFAD8\t0x77E6\n0xFAD9\t0x5393\n0xFADA\t0x28A9B\n0xFADB\t0x53A0\n0xFADC\t0x53AB\n0xFADD\t0x53AE\n0xFADE\t0x73A7\n0xFADF\t0x25772\n0xFAE0\t0x3F59\n0xFAE1\t0x739C\n0xFAE2\t0x53C1\n0xFAE3\t0x53C5\n0xFAE4\t0x6C49\n0xFAE5\t0x4E49\n0xFAE6\t0x57FE\n0xFAE7\t0x53D9\n0xFAE8\t0x3AAB\n0xFAE9\t0x20B8F\n0xFAEA\t0x53E0\n0xFAEB\t0x23FEB\n0xFAEC\t0x22DA3\n0xFAED\t0x53F6\n0xFAEE\t0x20C77\n0xFAEF\t0x5413\n0xFAF0\t0x7079\n0xFAF1\t0x552B\n0xFAF2\t0x6657\n0xFAF3\t0x6D5B\n0xFAF4\t0x546D\n0xFAF5\t0x26B53\n0xFAF6\t0x20D74\n0xFAF7\t0x555D\n0xFAF8\t0x548F\n0xFAF9\t0x54A4\n0xFAFA\t0x47A6\n0xFAFB\t0x2170D\n0xFAFC\t0x20EDD\n0xFAFD\t0x3DB4\n0xFAFE\t0x20D4D\n0xFB40\t0x289BC\n0xFB41\t0x22698\n0xFB42\t0x5547\n0xFB43\t0x4CED\n0xFB44\t0x542F\n0xFB45\t0x7417\n0xFB46\t0x5586\n0xFB47\t0x55A9\n0xFB49\t0x218D7\n0xFB4A\t0x2403A\n0xFB4B\t0x4552\n0xFB4C\t0x24435\n0xFB4D\t0x66B3\n0xFB4E\t0x210B4\n0xFB4F\t0x5637\n0xFB50\t0x66CD\n0xFB51\t0x2328A\n0xFB52\t0x66A4\n0xFB53\t0x66AD\n0xFB54\t0x564D\n0xFB55\t0x564F\n0xFB56\t0x78F1\n0xFB57\t0x56F1\n0xFB58\t0x9787\n0xFB59\t0x53FE\n0xFB5A\t0x5700\n0xFB5B\t0x56EF\n0xFB5C\t0x56ED\n0xFB5D\t0x28B66\n0xFB5E\t0x3623\n0xFB5F\t0x2124F\n0xFB60\t0x5746\n0xFB61\t0x241A5\n0xFB62\t0x6C6E\n0xFB63\t0x708B\n0xFB64\t0x5742\n0xFB65\t0x36B1\n0xFB66\t0x26C7E\n0xFB67\t0x57E6\n0xFB68\t0x21416\n0xFB69\t0x5803\n0xFB6A\t0x21454\n0xFB6B\t0x24363\n0xFB6C\t0x5826\n0xFB6D\t0x24BF5\n0xFB6E\t0x585C\n0xFB6F\t0x58AA\n0xFB70\t0x3561\n0xFB71\t0x58E0\n0xFB72\t0x58DC\n0xFB73\t0x2123C\n0xFB74\t0x58FB\n0xFB75\t0x5BFF\n0xFB76\t0x5743\n0xFB77\t0x2A150\n0xFB78\t0x24278\n0xFB79\t0x93D3\n0xFB7A\t0x35A1\n0xFB7B\t0x591F\n0xFB7C\t0x68A6\n0xFB7D\t0x36C3\n0xFB7E\t0x6E59\n0xFBA1\t0x2163E\n0xFBA2\t0x5A24\n0xFBA3\t0x5553\n0xFBA4\t0x21692\n0xFBA5\t0x8505\n0xFBA6\t0x59C9\n0xFBA7\t0x20D4E\n0xFBA8\t0x26C81\n0xFBA9\t0x26D2A\n0xFBAA\t0x217DC\n0xFBAB\t0x59D9\n0xFBAC\t0x217FB\n0xFBAD\t0x217B2\n0xFBAE\t0x26DA6\n0xFBAF\t0x6D71\n0xFBB0\t0x21828\n0xFBB1\t0x216D5\n0xFBB2\t0x59F9\n0xFBB3\t0x26E45\n0xFBB4\t0x5AAB\n0xFBB5\t0x5A63\n0xFBB6\t0x36E6\n0xFBB7\t0x249A9\n0xFBB9\t0x3708\n0xFBBA\t0x5A96\n0xFBBB\t0x7465\n0xFBBC\t0x5AD3\n0xFBBD\t0x26FA1\n0xFBBE\t0x22554\n0xFBBF\t0x3D85\n0xFBC0\t0x21911\n0xFBC1\t0x3732\n0xFBC2\t0x216B8\n0xFBC3\t0x5E83\n0xFBC4\t0x52D0\n0xFBC5\t0x5B76\n0xFBC6\t0x6588\n0xFBC7\t0x5B7C\n0xFBC8\t0x27A0E\n0xFBC9\t0x4004\n0xFBCA\t0x485D\n0xFBCB\t0x20204\n0xFBCC\t0x5BD5\n0xFBCD\t0x6160\n0xFBCE\t0x21A34\n0xFBCF\t0x259CC\n0xFBD0\t0x205A5\n0xFBD1\t0x5BF3\n0xFBD2\t0x5B9D\n0xFBD3\t0x4D10\n0xFBD4\t0x5C05\n0xFBD5\t0x21B44\n0xFBD6\t0x5C13\n0xFBD7\t0x73CE\n0xFBD8\t0x5C14\n0xFBD9\t0x21CA5\n0xFBDA\t0x26B28\n0xFBDB\t0x5C49\n0xFBDC\t0x48DD\n0xFBDD\t0x5C85\n0xFBDE\t0x5CE9\n0xFBDF\t0x5CEF\n0xFBE0\t0x5D8B\n0xFBE1\t0x21DF9\n0xFBE2\t0x21E37\n0xFBE3\t0x5D10\n0xFBE4\t0x5D18\n0xFBE5\t0x5D46\n0xFBE6\t0x21EA4\n0xFBE7\t0x5CBA\n0xFBE8\t0x5DD7\n0xFBE9\t0x82FC\n0xFBEA\t0x382D\n0xFBEB\t0x24901\n0xFBEC\t0x22049\n0xFBED\t0x22173\n0xFBEE\t0x8287\n0xFBEF\t0x3836\n0xFBF0\t0x3BC2\n0xFBF1\t0x5E2E\n0xFBF2\t0x6A8A\n0xFBF4\t0x5E7A\n0xFBF5\t0x244BC\n0xFBF6\t0x20CD3\n0xFBF7\t0x53A6\n0xFBF8\t0x4EB7\n0xFBFA\t0x53A8\n0xFBFB\t0x21771\n0xFBFC\t0x5E09\n0xFBFD\t0x5EF4\n0xFBFE\t0x28482\n0xFC40\t0x5EF9\n0xFC41\t0x5EFB\n0xFC42\t0x38A0\n0xFC43\t0x5EFC\n0xFC44\t0x683E\n0xFC45\t0x941B\n0xFC46\t0x5F0D\n0xFC47\t0x201C1\n0xFC48\t0x2F894\n0xFC49\t0x3ADE\n0xFC4A\t0x48AE\n0xFC4B\t0x2133A\n0xFC4C\t0x5F3A\n0xFC4D\t0x26888\n0xFC4E\t0x223D0\n0xFC50\t0x22471\n0xFC51\t0x5F63\n0xFC52\t0x97BD\n0xFC53\t0x26E6E\n0xFC54\t0x5F72\n0xFC55\t0x9340\n0xFC56\t0x28A36\n0xFC57\t0x5FA7\n0xFC58\t0x5DB6\n0xFC59\t0x3D5F\n0xFC5A\t0x25250\n0xFC5B\t0x21F6A\n0xFC5C\t0x270F8\n0xFC5D\t0x22668\n0xFC5E\t0x91D6\n0xFC5F\t0x2029E\n0xFC60\t0x28A29\n0xFC61\t0x6031\n0xFC62\t0x6685\n0xFC63\t0x21877\n0xFC64\t0x3963\n0xFC65\t0x3DC7\n0xFC66\t0x3639\n0xFC67\t0x5790\n0xFC68\t0x227B4\n0xFC69\t0x7971\n0xFC6A\t0x3E40\n0xFC6B\t0x609E\n0xFC6D\t0x60B3\n0xFC6E\t0x24982\n0xFC6F\t0x2498F\n0xFC70\t0x27A53\n0xFC71\t0x74A4\n0xFC72\t0x50E1\n0xFC73\t0x5AA0\n0xFC74\t0x6164\n0xFC75\t0x8424\n0xFC76\t0x6142\n0xFC77\t0x2F8A6\n0xFC78\t0x26ED2\n0xFC79\t0x6181\n0xFC7A\t0x51F4\n0xFC7B\t0x20656\n0xFC7C\t0x6187\n0xFC7D\t0x5BAA\n0xFC7E\t0x23FB7\n0xFCA1\t0x2285F\n0xFCA2\t0x61D3\n0xFCA3\t0x28B9D\n0xFCA4\t0x2995D\n0xFCA5\t0x61D0\n0xFCA6\t0x3932\n0xFCA7\t0x22980\n0xFCA8\t0x228C1\n0xFCA9\t0x6023\n0xFCAA\t0x615C\n0xFCAB\t0x651E\n0xFCAC\t0x638B\n0xFCAD\t0x20118\n0xFCAE\t0x62C5\n0xFCAF\t0x21770\n0xFCB0\t0x62D5\n0xFCB1\t0x22E0D\n0xFCB2\t0x636C\n0xFCB3\t0x249DF\n0xFCB4\t0x3A17\n0xFCB5\t0x6438\n0xFCB6\t0x63F8\n0xFCB7\t0x2138E\n0xFCB8\t0x217FC\n0xFCBA\t0x6F8A\n0xFCBB\t0x22E36\n0xFCBC\t0x9814\n0xFCBD\t0x2408C\n0xFCBE\t0x2571D\n0xFCBF\t0x64E1\n0xFCC0\t0x64E5\n0xFCC1\t0x947B\n0xFCC2\t0x3A66\n0xFCC3\t0x643A\n0xFCC4\t0x3A57\n0xFCC5\t0x654D\n0xFCC6\t0x6F16\n0xFCC7\t0x24A28\n0xFCC8\t0x24A23\n0xFCC9\t0x6585\n0xFCCA\t0x656D\n0xFCCB\t0x655F\n0xFCCC\t0x2307E\n0xFCCD\t0x65B5\n0xFCCE\t0x24940\n0xFCCF\t0x4B37\n0xFCD0\t0x65D1\n0xFCD1\t0x40D8\n0xFCD2\t0x21829\n0xFCD3\t0x65E0\n0xFCD4\t0x65E3\n0xFCD5\t0x5FDF\n0xFCD6\t0x23400\n0xFCD7\t0x6618\n0xFCD8\t0x231F7\n0xFCD9\t0x231F8\n0xFCDA\t0x6644\n0xFCDB\t0x231A4\n0xFCDC\t0x231A5\n0xFCDD\t0x664B\n0xFCDE\t0x20E75\n0xFCDF\t0x6667\n0xFCE0\t0x251E6\n0xFCE1\t0x6673\n0xFCE3\t0x21E3D\n0xFCE4\t0x23231\n0xFCE5\t0x285F4\n0xFCE6\t0x231C8\n0xFCE7\t0x25313\n0xFCE8\t0x77C5\n0xFCE9\t0x228F7\n0xFCEA\t0x99A4\n0xFCEB\t0x6702\n0xFCEC\t0x2439C\n0xFCED\t0x24A21\n0xFCEE\t0x3B2B\n0xFCEF\t0x69FA\n0xFCF0\t0x237C2\n0xFCF2\t0x6767\n0xFCF3\t0x6762\n0xFCF4\t0x241CD\n0xFCF5\t0x290ED\n0xFCF6\t0x67D7\n0xFCF7\t0x44E9\n0xFCF8\t0x6822\n0xFCF9\t0x6E50\n0xFCFA\t0x923C\n0xFCFB\t0x6801\n0xFCFC\t0x233E6\n0xFCFD\t0x26DA0\n0xFCFE\t0x685D\n0xFD40\t0x2346F\n0xFD41\t0x69E1\n0xFD42\t0x6A0B\n0xFD43\t0x28ADF\n0xFD44\t0x6973\n0xFD45\t0x68C3\n0xFD46\t0x235CD\n0xFD47\t0x6901\n0xFD48\t0x6900\n0xFD49\t0x3D32\n0xFD4A\t0x3A01\n0xFD4B\t0x2363C\n0xFD4C\t0x3B80\n0xFD4D\t0x67AC\n0xFD4E\t0x6961\n0xFD4F\t0x28A4A\n0xFD50\t0x42FC\n0xFD51\t0x6936\n0xFD52\t0x6998\n0xFD53\t0x3BA1\n0xFD54\t0x203C9\n0xFD55\t0x8363\n0xFD56\t0x5090\n0xFD57\t0x69F9\n0xFD58\t0x23659\n0xFD59\t0x2212A\n0xFD5A\t0x6A45\n0xFD5B\t0x23703\n0xFD5C\t0x6A9D\n0xFD5D\t0x3BF3\n0xFD5E\t0x67B1\n0xFD5F\t0x6AC8\n0xFD60\t0x2919C\n0xFD61\t0x3C0D\n0xFD62\t0x6B1D\n0xFD63\t0x20923\n0xFD64\t0x60DE\n0xFD65\t0x6B35\n0xFD66\t0x6B74\n0xFD67\t0x227CD\n0xFD68\t0x6EB5\n0xFD69\t0x23ADB\n0xFD6A\t0x203B5\n0xFD6B\t0x21958\n0xFD6C\t0x3740\n0xFD6D\t0x5421\n0xFD6E\t0x23B5A\n0xFD6F\t0x6BE1\n0xFD70\t0x23EFC\n0xFD71\t0x6BDC\n0xFD72\t0x6C37\n0xFD73\t0x2248B\n0xFD74\t0x248F1\n0xFD75\t0x26B51\n0xFD76\t0x6C5A\n0xFD77\t0x8226\n0xFD78\t0x6C79\n0xFD79\t0x23DBC\n0xFD7A\t0x44C5\n0xFD7B\t0x23DBD\n0xFD7C\t0x241A4\n0xFD7D\t0x2490C\n0xFD7E\t0x24900\n0xFDA1\t0x23CC9\n0xFDA2\t0x36E5\n0xFDA3\t0x3CEB\n0xFDA4\t0x20D32\n0xFDA5\t0x9B83\n0xFDA6\t0x231F9\n0xFDA7\t0x22491\n0xFDA8\t0x7F8F\n0xFDA9\t0x6837\n0xFDAA\t0x26D25\n0xFDAB\t0x26DA1\n0xFDAC\t0x26DEB\n0xFDAD\t0x6D96\n0xFDAE\t0x6D5C\n0xFDAF\t0x6E7C\n0xFDB0\t0x6F04\n0xFDB1\t0x2497F\n0xFDB2\t0x24085\n0xFDB3\t0x26E72\n0xFDB4\t0x8533\n0xFDB5\t0x26F74\n0xFDB6\t0x51C7\n0xFDB9\t0x842E\n0xFDBA\t0x28B21\n0xFDBC\t0x23E2F\n0xFDBD\t0x7453\n0xFDBE\t0x23F82\n0xFDBF\t0x79CC\n0xFDC0\t0x6E4F\n0xFDC1\t0x5A91\n0xFDC2\t0x2304B\n0xFDC3\t0x6FF8\n0xFDC4\t0x370D\n0xFDC5\t0x6F9D\n0xFDC6\t0x23E30\n0xFDC7\t0x6EFA\n0xFDC8\t0x21497\n0xFDC9\t0x2403D\n0xFDCA\t0x4555\n0xFDCB\t0x93F0\n0xFDCC\t0x6F44\n0xFDCD\t0x6F5C\n0xFDCE\t0x3D4E\n0xFDCF\t0x6F74\n0xFDD0\t0x29170\n0xFDD1\t0x3D3B\n0xFDD2\t0x6F9F\n0xFDD3\t0x24144\n0xFDD4\t0x6FD3\n0xFDD5\t0x24091\n0xFDD6\t0x24155\n0xFDD7\t0x24039\n0xFDD8\t0x23FF0\n0xFDD9\t0x23FB4\n0xFDDA\t0x2413F\n0xFDDB\t0x51DF\n0xFDDC\t0x24156\n0xFDDD\t0x24157\n0xFDDE\t0x24140\n0xFDDF\t0x261DD\n0xFDE0\t0x704B\n0xFDE1\t0x707E\n0xFDE2\t0x70A7\n0xFDE3\t0x7081\n0xFDE4\t0x70CC\n0xFDE5\t0x70D5\n0xFDE6\t0x70D6\n0xFDE7\t0x70DF\n0xFDE8\t0x4104\n0xFDE9\t0x3DE8\n0xFDEA\t0x71B4\n0xFDEB\t0x7196\n0xFDEC\t0x24277\n0xFDED\t0x712B\n0xFDEE\t0x7145\n0xFDEF\t0x5A88\n0xFDF0\t0x714A\n0xFDF2\t0x5C9C\n0xFDF3\t0x24365\n0xFDF4\t0x714F\n0xFDF5\t0x9362\n0xFDF6\t0x242C1\n0xFDF7\t0x712C\n0xFDF8\t0x2445A\n0xFDF9\t0x24A27\n0xFDFA\t0x24A22\n0xFDFB\t0x71BA\n0xFDFC\t0x28BE8\n0xFDFD\t0x70BD\n0xFDFE\t0x720E\n0xFE40\t0x9442\n0xFE41\t0x7215\n0xFE42\t0x5911\n0xFE43\t0x9443\n0xFE44\t0x7224\n0xFE45\t0x9341\n0xFE46\t0x25605\n0xFE47\t0x722E\n0xFE48\t0x7240\n0xFE49\t0x24974\n0xFE4A\t0x68BD\n0xFE4B\t0x7255\n0xFE4C\t0x7257\n0xFE4D\t0x3E55\n0xFE4E\t0x23044\n0xFE4F\t0x680D\n0xFE50\t0x6F3D\n0xFE51\t0x7282\n0xFE53\t0x732B\n0xFE54\t0x24823\n0xFE55\t0x2882B\n0xFE56\t0x48ED\n0xFE57\t0x28804\n0xFE58\t0x7328\n0xFE59\t0x732E\n0xFE5A\t0x73CF\n0xFE5B\t0x73AA\n0xFE5C\t0x20C3A\n0xFE5D\t0x26A2E\n0xFE5E\t0x73C9\n0xFE5F\t0x7449\n0xFE60\t0x241E2\n0xFE61\t0x216E7\n0xFE62\t0x24A24\n0xFE63\t0x6623\n0xFE64\t0x36C5\n0xFE65\t0x249B7\n0xFE66\t0x2498D\n0xFE67\t0x249FB\n0xFE68\t0x73F7\n0xFE69\t0x7415\n0xFE6A\t0x6903\n0xFE6B\t0x24A26\n0xFE6C\t0x7439\n0xFE6D\t0x205C3\n0xFE6E\t0x3ED7\n0xFE70\t0x228AD\n0xFE71\t0x7460\n0xFE72\t0x28EB2\n0xFE73\t0x7447\n0xFE74\t0x73E4\n0xFE75\t0x7476\n0xFE76\t0x83B9\n0xFE77\t0x746C\n0xFE78\t0x3730\n0xFE79\t0x7474\n0xFE7A\t0x93F1\n0xFE7B\t0x6A2C\n0xFE7C\t0x7482\n0xFE7D\t0x4953\n0xFE7E\t0x24A8C\n0xFEA1\t0x2415F\n0xFEA2\t0x24A79\n0xFEA3\t0x28B8F\n0xFEA4\t0x5B46\n0xFEA5\t0x28C03\n0xFEA6\t0x2189E\n0xFEA7\t0x74C8\n0xFEA8\t0x21988\n0xFEA9\t0x750E\n0xFEAB\t0x751E\n0xFEAC\t0x28ED9\n0xFEAD\t0x21A4B\n0xFEAE\t0x5BD7\n0xFEAF\t0x28EAC\n0xFEB0\t0x9385\n0xFEB1\t0x754D\n0xFEB2\t0x754A\n0xFEB3\t0x7567\n0xFEB4\t0x756E\n0xFEB5\t0x24F82\n0xFEB6\t0x3F04\n0xFEB7\t0x24D13\n0xFEB8\t0x758E\n0xFEB9\t0x745D\n0xFEBA\t0x759E\n0xFEBB\t0x75B4\n0xFEBC\t0x7602\n0xFEBD\t0x762C\n0xFEBE\t0x7651\n0xFEBF\t0x764F\n0xFEC0\t0x766F\n0xFEC1\t0x7676\n0xFEC2\t0x263F5\n0xFEC3\t0x7690\n0xFEC4\t0x81EF\n0xFEC5\t0x37F8\n0xFEC6\t0x26911\n0xFEC7\t0x2690E\n0xFEC8\t0x76A1\n0xFEC9\t0x76A5\n0xFECA\t0x76B7\n0xFECB\t0x76CC\n0xFECC\t0x26F9F\n0xFECD\t0x8462\n0xFECE\t0x2509D\n0xFECF\t0x2517D\n0xFED0\t0x21E1C\n0xFED1\t0x771E\n0xFED2\t0x7726\n0xFED3\t0x7740\n0xFED4\t0x64AF\n0xFED5\t0x25220\n0xFED6\t0x7758\n0xFED7\t0x232AC\n0xFED8\t0x77AF\n0xFED9\t0x28964\n0xFEDA\t0x28968\n0xFEDB\t0x216C1\n0xFEDC\t0x77F4\n0xFEDE\t0x21376\n0xFEDF\t0x24A12\n0xFEE0\t0x68CA\n0xFEE1\t0x78AF\n0xFEE2\t0x78C7\n0xFEE3\t0x78D3\n0xFEE4\t0x96A5\n0xFEE5\t0x792E\n0xFEE6\t0x255E0\n0xFEE7\t0x78D7\n0xFEE8\t0x7934\n0xFEE9\t0x78B1\n0xFEEA\t0x2760C\n0xFEEB\t0x8FB8\n0xFEEC\t0x8884\n0xFEED\t0x28B2B\n0xFEEE\t0x26083\n0xFEEF\t0x2261C\n0xFEF0\t0x7986\n0xFEF1\t0x8900\n0xFEF2\t0x6902\n0xFEF3\t0x7980\n0xFEF4\t0x25857\n0xFEF5\t0x799D\n0xFEF6\t0x27B39\n0xFEF7\t0x793C\n0xFEF8\t0x79A9\n0xFEF9\t0x6E2A\n0xFEFA\t0x27126\n0xFEFB\t0x3EA8\n0xFEFC\t0x79C6\n0xFEFD\t0x2910D\n0xFEFE\t0x79D4\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2008-snippet",
    "content": "@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e   g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n           \n@ A    C       F G H I       L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                        \n                   \n                   \n               \n               \n              \n@ A    C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b    d e f g h i j k l m n o\np q r s t    v w x y z { | } ~\n                   \n                   \n                   \n                   \n               \n                \n@ A B C D E F G H I J K L M N O\nP Q R S    U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n                 \n               \n             \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                   \n               \n                       \n               \n                 \n              \n@    B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h    j k l m n\np q r s t u v w x y z { | }\n                   \n                 \n                 \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V    X Y Z [ \\ ] ^ _\n` a b c d e f g h    j k l m    o\np q r s t u v w x y z { | } ~\n                 \n               \n                   \n               \n               \n             \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l    n o\np q r s t u v w x y    { | } ~\n                 \n               \n               \n                 \n               \n                \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n              \n               \n               \n               \n              \n@ A B C    E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                \n                     \n                 \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F    H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n                 \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n                 \n               \n              \n@ A B C    E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n                 \n                \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n               \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n`    b c d e f g h i j k l m n o\np q r s t u    w    y z    | } ~\n                 \n               \n                 \n                 \n                 \n                \n@ A    C D E F G H I J K L M N O\nP Q R    T U V W X Y Z [ \\ ] ^ _\n` a    c d e f g    i j    l m n o\np q r s t u v    x y z { | } ~\n                 \n                   \n               \n                 \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V    X Y    [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                 \n               \n                 \n               \n               \n              \n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n                     \n               \n                 \n               \n              \n                  \n@ A B C D E F G H I J K L M    O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n   a b c d e    g h i j k l m n o\np q r s t u v w x y z { | } ~\n                   \n                 \n                     \n                   \n                  \n              \n@ A B C D E F G H I J K L M N O\nP Q R S    U V    X Y    [ \\ ] ^ _\n` a       d e f g h i j k l m n o\np q    s t u v    x y z { | } ~\n                    \n               \n               \n                  \n                   \n              \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2008-snippet.UTF-8",
    "content": "䏰 䰲 䘃 䖦 䕸 𧉧 䵷 䖳 𧲱 䳢 𧳅 㮕 䜶 䝄 䱇 䱀\n𤊿 𣘗 𧍒 𦺋 𧃒 䱗 𪍑 䝏 䗚 䲅 𧱬 䴇 䪤 䚡 𦬣 爥\n𥩔 𡩣 𣸆 𣽡 晍 囻   綕 夝 𨮹 㷴 霴 𧯯 寛 𡵞 媤\n㘥 𩺰 嫑 宷 峼 杮 薓 𩥅 瑡 璝 㡵 𡵓 𣚞 𦀡 㻬\n   𥣞 㫵 竼 龗 𤅡 𨤍 𣇪 𠪊 𣉞 䌊 蒄 龖 鐯 䤰 蘓\n墖 靊 鈘 秐 稲 晠 権 袝 瑌 篅 枂 稬 剏 遆 㓦 珄\n𥶹 瓆 鿇 垳 䤯 呌 䄱 𣚎 堘 穲 𧭥 讏 䚮 𦺈 䆁 𥶙\n箮 𢒼 鿈 𢓁 𢓉 𢓌 鿉 蔄 𣖻 䂴 鿊 䓡 𪷿 拁 灮 鿋\n㇀ ㇁ ㇂ ㇃ ㇄ 𠄌 ㇅ 𠃑 𠃍 ㇆ ㇇ 𠃋 𡿨 ㇈ 𠃊 ㇉\n㇊ ㇋ ㇌ 𠄎 ㇍ ㇎ Ā Á Ǎ À Ē É Ě È Ō Ó\nǑ Ò Ê̄ Ế Ê̌ Ề Ê ā á ǎ à ɑ ē é ě è\nī í ǐ ì ō ó ǒ ò ū ú ǔ ù ǖ ǘ ǚ\n  ǜ ü ê̄ ế ê̌ ề ê ɡ ⏚ ⏛\n𪎩 𡅅    攊       丽 滝 鵎 釟       𧜵 撑 会 伨\n侨 兖 兴 农 凤 务 动 医 华 发 变 团 声 处 备 夲\n头 学 实 実 岚 庆 总 斉 柾 栄 桥 济 炼 电 纤 纬\n纺 织 经 统 缆 缷 艺 苏 药 视 设 询 车 轧 轮\n   琑 糼 緍 楆 竉 刧             醌 碸 酞 肼\n贋 胶 𠧧       肟 黇 䳍 鷉 鸌 䰾 𩷶 𧀎 鸊 𪄳 㗁\n   溚 舾 甙    䤑 马 骏 龙 禇 𨑬 𡷊 𠗐 𢫦 两 亁\n亀 亇 亿 仫 伷 㑌 侽 㹈 倃 傈 㑽 㒓 㒥 円 夅 凛\n凼 刅 争 剹 劐 匧 㗇 厩 㕑 厰 㕓 参 吣 㕭 㕲 㚁\n咓 咣 咴 咹 哐 哯 唘 唣 唨 㖘 唿 㖥 㖿 嗗 㗅\n𧶄 唥    𠱂 𠴕 𥄫 喐 𢳆 㧬 𠍁 蹆 𤶸 𩓥 䁓 𨂾 睺\n𢰸 㨴 䟕 𨅝 𦧲 𤷪 擝 𠵼 𠾴 𠳕 𡃴 撍 蹾 𠺖 𠰋 𠽤\n𢲩 𨉖 𤓓    𠵆 𩩍 𨃩 䟴 𤺧 𢳂 骲 㩧 𩗴 㿭 㔆 𥋇\n𩟔 𧣈 𢵄 鵮 頕    䏙 𦂥 撴 哣 𢵌 𢯊 𡁷 㧻 𡁯\n   𦛚 𦜖 𧦠 擪 𥁒 𠱃 蹨 𢆡 𨭌 𠜱    䠋 𠆩 㿺 塳\n𢶍    𤗈 𠓼 𦂗 𠽌 𠶖 啹 䂻 䎺    䪴 𢩦 𡂝 膪 飵\n𠶜 捹 㧾 𢝵 跀 嚡 摼 㹃    𪘁 𠸉 𢫏 𢳉    𡃈 𣧂\n㦒 㨆 𨊛 㕸 𥹉 𢃇 噒 𠼱 𢲲 𩜠 㒼 氽 𤸻       𧕴\n𢺋 𢈈 𪙛 𨳍 𠹺 𠰴 𦠜 羓 𡃏 𢠃 𢤹 㗻 𥇣 𠺌 𠾍 𠺪\n㾓 𠼰 𠵇 𡅏 𠹌    𠺫 𠮩 𠵈 𡃀 𡄽 㿹 𢚖 搲 𠾭\n𣏴 𧘹 𢯎 𠵾 𠵿 𢱑 𢱕 㨘 𠺘 𡃇 𠼮 𪘲 𦭐 𨳒 𨶙 𨳊\n閪 哌 苄 喹    𩻃 鰦 骶 𧝞 𢷮 煀 腭 胬 尜 𦕲 脴\n㞗 卟 𨂽 醶 𠻺 𠸏 𠹷 𠻻 㗝 𤷫 㘉 𠳖 嚯 𢞵 𡃉 𠸐\n𠹸 𡁸 𡅈 𨈇 𡑕 𠹹 𤹐 𢶤 婔 𡀝 𡀞 𡃵 𡃶 垜 𠸑\n   𧚔 𨋍 𠾵 𠹻 𥅾 㜃 𠾶 𡆀 𥋘 𪊽 𤧚 𡠺 𤅷 𨉼 墙\n剨 㘚 𥜽 箲 孨 䠀 䬬 鼧 䧧 鰟 鮍 𥭴 𣄽 嗻 㗲 嚉\n丨 夂 𡯁 屮 靑 𠂆 乛 亻 㔾 尣 彑 忄 㣺 扌 攵 歺\n氵 氺 灬 爫 丬 犭 𤣩 罒 礻 糹 罓 𦉪 㓁    𦍋 耂\n肀 𦘒 𦥑 卝 衤 见 𧢲 讠 贝 钅 镸 长 门 𨸏 韦 页\n风 飞 饣 𩠐 鱼 鸟 黄 歯 龜 丷 𠂇 阝 户 钢\n倻 淾 𩱳 龦 㷉 袏 𤅎 灷 峵 䬠 𥇍 㕙 𥴰 愢 𨨲 辧\n釶 熑 朙 玺 𣊁 𪄇 㲋 𡦀 䬐 磤 琂 冮 𨜏 䀉 橣 𪊺\n䈣 蘏 𠩯 稪 𩥇 𨫪 靕 灍 匤 𢁾 鏴 盙 𨧣 龧 矝 亣\n俰 傼 丯 众 龨 吴 綋 墒 壐 𡶶 庒 庙 忂 𢜒 斋\n   𣏹 椙 橃 𣱣 泿    爀 𤔅 玌 㻛 𤨓 嬕 璹 讃 𥲤\n𥚕 窓 篬 糃 繬 苸 薗 龩 袐 龪 躹 龫 迏 蕟 駠 鈡\n龬 𨶹 𡐿 䁱 䊢 娚          顨 杫 䉶 圽    藖 𤥻\n芿 𧄍 䲁 𦵴 嵻 𦬕 𦾾 龭 龮 宖 龯 曧 繛 湗 秊 㶈\n䓃 𣉖 𢞖 䎚 䔶    峕 𣬚 諹 屸 㴒 𣕑 嵸 龲 煗 䕘\n𤃬 𡸣 䱷 㥸 㑊 𠆤 𦱁 諌 侴 𠈹 妿 腬 顖 𩣺 弻\n𠮟    𢇁 𨥭 䄂 䚻 𩁹 㼇 龳 𪆵 䃸 㟖 䛷 𦱆 䅼 𨚲\n𧏿 䕭 㣔 𥒚 䕡 䔛 䶉 䱻 䵶 䗪 㿈 𤬏 㙡 䓞 䒽 䇭\n崾 嵈 嵖 㷼 㠏 嶤 嶹 㠠 㠸 幂 庽 弥 徃 㤈 㤔 㤿\n㥍 惗 愽 峥 㦉 憷 憹 懏 㦸 戬 抐 拥 挘 㧸 嚱\n   㨃 揢 揻 搇 摚 㩋 擀 崕 嘡 龟 㪗 斆 㪽 旿 晓\n㫲 暒 㬢 朖 㭂 枤 栀 㭘 桊 梄 㭲 㭱 㭻 椉 楃 牜\n楤 榟 榅 㮼 槖 㯝 橥 橴 橱 檂 㯬 檙 㯲 檫 檵 櫔\n櫶 殁 毁 毪 汵 沪 㳋 洂 洆 洦 涁 㳯 涤 涱 渕 渘\n温 溆 𨧀 溻 滢 滚 齿 滨 滩 漤 漴 㵆 𣽁 澁 澾 㵪\n㵵 熷 岙 㶊 瀬 㶑 灐 灔 灯 灿 炉 𠌥 䏁 㗱 𠻘\n𣻗 垾 𦻓 焾 𥟠 㙎 榢 𨯩 孴 穉 𥣡 𩓙 穥 穽 𥦬 窻\n窰 竂 竃 燑 𦒍 䇊 竚 竝 竪 䇯 咲 𥰁 笋 筕 笩 𥌎\n𥳾 箢 筯 莜 𥮴 𦱿 篐 萡 箒    𥴠 㶭 𥱥 蒒 篺\n簵 𥳁 籄 粃 𤢂 粦 晽 𤕸 糉 糇 糦 籴 糳 糵\n   繧 䔝 𦹄 絝 𦻖 璍 綉 綫 焵 綳    𤁗 𦀩 緤 㴓\n緵 𡟹 緥 𨍭    𦄡 𦅚 繮 纒 䌫 鑬 縧 罀 罁 罇 礶\n𦋐 駡 羗 𦍑 羣 𡙡 𠁨 䕜 𣝦 䔃 𨌺 翺 𦒉    耈 耝\n   耯 𪂇 𦳃 耻 耼 聡 𢜔 䦉 𦘦 𣷣 𦛨 朥 肧 𨩈 脇\n脚 墰 𢛶 汿 𦒘 𤾸 擧 𡒊 舘 𡡞 橓 𤩥 𤪕 䑺 舩 𠬍\n𦩒 𣵾 俹 𡓽 蓢 荢 𦬊 𤦧 𣔰 𡝳 𣷸 芪 椛 芳 䇛\n蕋 苐 茚 𠸖 𡞴 㛁 𣅽 𣕚 艻 苢 茘 𣺋 𦶣 𦬅 𦮗 𣗎\n㶿 茝 嗬 莅 䔋 𦶥 莬    菓 㑾 𦻔 橗 蕚 㒖 𦹂 𢻯\n葘 𥯤 葱 㷓 䓤 檧 葊 𣲵 祘    𦮖 𦹷 𦹃 蓞    莑\n䒠 蒓 蓤 𥲑 䉀 𥳀 䕃 蔴 嫲 𦺙 䔧 蕳 䔖 枿 蘖\n   𨘥 𨘻 藁 𧂈 蘂 𡖂 𧃍 䕫 䕪 蘨 㙈 𡢢 号 𧎚 虾\n蝱 𪃸 蟮 𢰧 螱 蟚 蠏 噡 虬 桖 䘏 衅 衆 𧗠 𣶹 𧗤\n衞 袜 䙛 袴 袵 揁 装 睷 𧜏 覇 覊       覧 覼 𨨥\n觧 𧤤 𧪽 誜 瞓 釾 誐 𧩙 竩 𧬺 𣾏 䜓 𧬸 煼 謌 謟\n𥐰 𥕥 謿 譌 譍 誩 𤩺 讐 讛 誯 𡛟 䘕 衏 貛 𧵔 𧶏\n貫 㜥 𧵓 賖 𧶘 𧶽 贒 贃 𡤐 賛 灜 贑 𤳉 㻐\n趩 𨀂 𡀔 𤦊 㭼 𨆼 𧄌 竧 躭 躶 軃 鋔 輙 輭 𨍥 𨐒\n辥 錃 𪊟 𠩐 辳 䤪 𨧞 𨔽 𣶻 廸 𣉢 迹 𪀔 𨚼 𨔁 𢌥\n㦀 𦻗 逷 𨔼 𧪾 遡 𨕬 𨘋 邨 𨜓 郄 𨛦 邮    酧 㫰\n醩 釄 粬 𨤳 𡺉 鈎 沟 鉁 鉢 𥖹    𨫆 𣲛 𨬌 𥗛\n   𠴱 錬 鍫 𨫡 𨯫 炏 嫃 𨫢 𨫥 䥥 鉄 𨯬 𨰹 𨯿 鍳\n鑛 躼 閅 閦 鐦 閠 濶 䊹 𢙺 𨛘 𡉼 𣸮 䧟 氜 陻 隖\n䅬 隣 𦻕 懚 隶 磵 𨫠 隽 双 䦡 𦲸 𠉴 𦐐 𩂯 𩃥 𤫑\n𡤕 𣌊 霱 虂 霶 䨏 䔽 䖅 𤫩 灵 孁 霛    𩇕 靗 孊\n𩇫 靟 鐥 僐 𣂷 𣂼 鞉 鞟 鞱 鞾 韀 韒 韠 𥑬 韮 琜\n𩐳    韵 𩐝 𧥺 䫑 頴 頳 顋 顦 㬎 𧅵 㵑 𠘰 𤅜\n𥜆 飊 颷 飈 飇 䫿 𦴧 𡛓 喰 飡 飦 飬 鍸 餹 𤨩 䭲\n𩡗 𩤅 駵 騌 騻 騐 驘 𥜥 㛄 𩂱 𩯕 髠 髢 𩬅 髴 䰎\n鬔 鬭 𨘀 倴 鬴 𦦨 㣃 𣁽 魐 魀 𩴾 婅 𡡣 鮎 𤉋 鰂\n鯿 鰌 𩹨 鷔 𩾷 𪆒 𪆫 𪃡 𪄣 𪇟 鵾 鶃 𪄴 鸎 梈\n   鷄 𢅛 𪆓 𪈠 𡤻 𪈳 鴹 𪂹 𪊴 麐 麕 麞 麢 䴴 麪\n麯 𤍤 黁 㭠 㧥 㴝 伲 㞾 𨰫 鼂 鼈 䮖 鐤 𦶢 鼗\n鼹 嚟 嚊 齅 馸 𩂋 韲 葿 齢 齩 竜 龎 爖 䮾 𤥵 𤦻\n煷 𤧸 𤍈 𤩑 玞 𨯚 𡣺 禟 𨥾 𨸶 鍩 鏳 𨩄 鋬 鎁 鏋\n𨥬 𤒹 爗 㻫 睲 穃 烐 𤑳 𤏸 煾 𡟯 炣 𡢾 𣖙 㻇 𡢅\n𥐯 𡟸 㜢 𡛻 𡠹 㛡 𡝴 𡣑 𥽋 㜣 𡛀 坛 𤨥 𡏾 𡊨\n𡏆 𡒶 蔃 𣚦    葕 𤦔 𧅥 𣸱 𥕜 𣻻 𧁒 䓴 𣛮 𩦝 𦼦\n柹 㜳 㰕 㷧 塬 𡤢 栐 䁗 𣜿 𤃡 𤂋 𤄏 𦰡 哋 嚞 𦚱\n嚒 𠿟 𠮨 𠸍 鏆 𨬓 鎜 仸 儫 㠙 𤐶 亼 𠑥 𠍿 佋 侊\n𥙑 婨 𠆫 𠏋 㦙 𠌊 𠐔 㐵 伩 𠋀 𨺳 𠉵 諚 𠈌 亘\n   働 儍 侢 伃 𤨎 𣺊 佂 倮 偬 傁 俌 俥 偘 僼\n         湶 𣖕 𣸹 𣺿 浲 𡢄 𣺉 冨 凃 𠗠 䓝 𠒣 𠒒\n𠒑 赺 𨪜 𠜎 剙 劤 𠡳 勡    䙺 熌 𤎌 𠰠 𤦬 𡃤 槑\n𠸝    㻞 璙 琔 瑖 玘 䮎 𤪼 𤂍 叐 㖄 爏 𤃉 喴 𠍅\n响 𠯆 圝 鉝 雴 鍦 埝 垍 坿 㘾 壋 媙 𨩆 𡛺 𡝯 𡜐\n娬 妸 銏 婾 嫏 娒 𥥆 𡧳 𡡡 𤊕 㛵 洅 瑃 娡 𥺃\n媁 𨯗 𠐓 鏠 璌 𡌃 焅 䥲 鐈 𨧻 鎽 㞠 尞 岞 幞 幈\n𡦖 𡥼 𣫮 廍 孏 𡤃 𡤄 㜁 𡢠 㛝 𡛾 㛓 脪 𨩇 𡶺 𣑲\n𨦨 弌 弎 𡤧 𡞫 婫 𡜻 孄 蘔 𧗽 衠 恾 𢡠 𢘫 忛 㺸\n𢖯 𢖾 𩂈 𦽳 懀 𠀾 𠁆 𢘛 憙 憘 恵 𢲛 𢴇 𤛔 𩅍\n   摱 𤙥 𢭪 㨩 𢬢 𣑐 𩣪 𢹸 挷 𪑛 撶 挱 揑 𤧣 𢵧\n护 𢲡 搻 敫 楲 㯴 𣂎 𣊭 𤦉 𣊫 唍 𣋠 𡣙 𩐿 曎 𣊉\n𣆳 㫠 䆐 𥖄 𨬢 𥖏 𡛼 𥕛 𥐥 磮 𣄃 𡠪 𣈴 㑤 𣈏 𣆂\n𤋉 暎 𦴤 晫 䮓 昰 𧡰 𡷫 晣 𣋒 𣋡 昞 𥡲 㣑 𣠺 𣞼\n㮙 𣞢 𣏾 瓐 㮖 枏 𤘪 梶 栞 㯄 檾 㡣 𣟕 𤒇 樳 橒\n櫉 欅 𡤒 攑 梘 橌 㯗 橺 歗 𣿀 𣲚 鎠 鋲 𨯪 𨫋\n銉 𨀞 𨧜 鑧 涥 漋 𤧬    𣽿 㶏 渄 𤀼 娽 渊 塇 洤\n硂 焻 𤌚 𤉶 烱 牐 犇 犔 𤞏 𤜥 兹 𤪤 𠗫 瑺 𣻸 𣙟\n𤩊 𤤗 𥿡 㼆 㺱 𤫟 𨰣 𣼵 悧 㻳 瓌 琼 鎇 琷 䒟 𦷪\n䕑 疃 㽣 𤳙 𤴆 㽘 畕 癳 𪗆 㬙 瑨 𨫌 𤦫 𤦎 㫻\n   㷍 𤩎 㻿 𤧅 𤣳 釺 圲 鍂 𨫣 𡡤 僟 𥈡 𥇧 睸 𣈲\n眎 眏 睻 𤚗 𣞁 㩞 𤣰 琸 璛 㺿 𤪺 𤫇 䃈 𤪖 𦆮 錇\n𥖁 砞 碍 碈 磒 珐 祙 𧝁 𥛣 䄎    蒖 禥 樭 𣻺 稺\n秴 䅮 𡛦 䄲 鈵 秱 𠵌 𤦌 𠊙 𣶺 𡝮 㖗 啫 㕰 㚪 𠇔\n𠰍 竢 婙 𢛵 𥪯 𥪜 娍 𠉛 磰 娪 𥯆 竾 䇹 籝 籭 䈑\n𥮳 𥺼 𥺦 糍 𤧹 𡞰 粎 籼 粮 檲 緜 縇 緓 罎 𦉡\n𦅜 𧭈 綗 𥺂 䉪 𦭵 𠤖 柖 𠁎 𣗏 埄 𦐒 𦏸 𤥢 翝 笧\n𠠬 𥫩 𥵃 笌 𥸎 駦 虅 驣 樜 𣐿 㧢 𤧷 𦖭 騟 𦖠 蒀\n𧄧 𦳑 䓪 脷 䐂 胆 脉 腂 𦞴 飃 𦩂 艢 艥 𦩑 葓 𦶧\n蘐 𧈛 媆 䅿 𡡀 嬫 𡢡 嫤 𡣘 蚠 蜨 𣶏 蠭 𧐢 娂\n   衮 佅 袇 袿 裦 襥 襍 𥚃 襔 𧞅 𧞄 𨯵 𨯙 𨮜 𨧹\n㺭 蒣 䛵 䛏 㟲 訽 訜 𩑈 彍 鈫 𤊄 旔 焩 烄 𡡅 鵭\n貟 賩 𧷜 妚 矃 姰 䍮 㛔 踪 躧 𤰉 輰 轊 䋴 汘 澻\n𢌡 䢛 潹 溋 𡟚 鯩 㚵 𤤯 邻    啱 䤆 醻 鐄 𨩋 䁢\n𨫼 鐧 𨰝 𨰻 蓥 訫 閙 閧 閗 閖 𨴴 瑅 㻂 𤣿 𤩂 𤏪\n㻧 𣈥 随 𨻧 𨹦 𨹥 㻌 𤧭 𤩸 𣿮 琒 瑫 㻼 靁 𩂰\n桇 䨝 𩂓 𥟟    鍨 𨦉 𨰦 𨬯 𦎾 銺 嬑 譩 䤼 珹 𤈛\n鞛 靱 餸 𠼦 巁 𨯅 𤪲 頟 𩓚 鋶 𩗗 釥 䓀 𨭐 𤩧 𨭤\n飜 𨩅 㼀 鈪 䤥 萔 餻 饍 𧬆 㷽 馛 䭯 馪 驜 𨭥 𥣈\n檏 騡 嫾 騯 𩣱 䮐 𩥈 馼 䮽 䮗 鍽 塲 𡌂 堢 𤦸\n   𡓨 硄 𢜟 𣶸 棅 㵽 鑘 㤧 慐 𢞁 𢥫 愇 鱏 鱓 鱻\n鰵 鰐 魿 鯏 𩸭 鮟 𪇵 𪃾 鴡 䲮 𤄄 鸘 䲰 鴌 𪆴 𪃭\n𪃳 𩤯 鶥 蒽 𦸒 𦿟 𦮂 藼 䔳 𦶤 𦺄 𦷰 萠 藮 𦸀 𣟗\n𦁤 秢 𣖜 𣙀 䤭 𤧞 㵢 鏛 銾 鍈 𠊿 碹 鉷 鑍 俤 㑀\n遤 𥕝 砽 硔 碶 硋 𡝗 𣇉 𤥁 㚚 佲 濚 濙    瀞 吔\n𤆵 垻 壳 垊 鴖 埗 焴 㒯 𤆬 燫 𦱀 𤾗    𡞵 𨩉\n愌 嫎 娋 䊼 𤒈 㜬 䭻 𨧼 鎻 鎸 𡣖 𠼝 葲 𦳀 𡐓 𤋺\n𢰦 𤏁 妔 𣶷 𦝁 綨 𦅛 𦂤 𤦹 𤦋 𨧺 鋥 珢 㻩 璴 𨭣\n𡢟 㻡 𤪳 櫘 珳 珻 㻖 𤨾 𤪔 𡟙 𤩦 𠎧 𡐤 𤧥 瑈 𤤖\n炥 𤥶 銄 珦 鍟 𠓾 錱 𨫎 𨨖 鎆 𨯧 𥗕 䤵 𨪂 煫\n   𤥃 𠳿 嚤 𠘚 𠯫 𠲸 唂 秄 𡟺 緾 𡛂 𤩐 𡡒 䔮 鐁\n㜊 𨫀 𤦭 妰 𡢿 𡢃 𧒄 媡 㛢 𣵛 㚰 鉟 婹 𨪁 𡡢 鍴\n㳍 𠪴 䪖 㦊 僴 㵩 㵌 𡎜 煵 䋻 𨈘 渏 𩃤 䓫 浗 𧹏\n灧 沯 㳖 𣿭 𣸭 渂 漌 㵯 𠏵 畑 㚼 㓈 䚀 㻚 䡱 姄\n鉮 䤾 轁 𨰜 𦯀 堒 埈 㛖 𡑒 烾 𤍢 𤩱 𢿣 𡊰 𢎽 梹\n楧 𡎘 𣓥 𧯴 𣛟 𨪃 𣟖 𣏺 𤲟 樚 𣚭 𦲷 萾 䓟 䓎\n𦴦 𦵑 𦲂 𦿞 漗 𧄉 茽 𡜺 菭 𦲀 𧁓 𡟛 妉 媂 𡞳 婡\n婱 𡤅 𤇼 㜭 姯 𡜼 㛇 熎 鎐 暚 𤊥 婮 娫 𤊓 樫 𣻹\n𧜶 𤑛 𤋊 焝 𤉙 𨧡 侰 𦴨 峂 𤓎 𧹍 𤎽 樌 𤉖 𡌄 炦\n焳 𤏩 㶥 泟 勇 𤩏 繥 姫 崯 㷳 彜 𤩝 𡟟 綤 萦\n   咅 𣫺 𣌀 𠈔 坾 𠣕 𠘙 㿥 𡾞 𪊶 瀃 𩅛 嵰 玏 糓\n𨩙 𩐠 俈 翧 狍 猐 𧫴 猸 猹 𥛶 獁 獈 㺩 𧬘 遬 燵\n𤣲 珡 臶 㻊 県 㻑 沢 国 琙 琞 琟 㻢 㻰 㻴 㻺 瓓\n㼎 㽓 畂 畭 畲 疍 㽼 痈 痜 㿀 癍 㿗 癴 㿜 発 𤽜\n熈 嘣 覀 塩 䀝 睃 䀹 条 䁅 㗛 瞘 䁪 䁯 属 瞾 矋\n売 砘 点 砜 䂨 砹 硇 硑 硦 葈 𥔵 礳 栃 礲 䄃\n䄉 禑 禙 辻 稆 込 䅧 窑 䆲 窼 艹 䇄 竏 竛 䇏 両\n筢 筬 筻 簒 簛 䉠 䉺 类 粜 䊌 粸 䊔 糭 输 烀 𠳏\n総 緔 緐 緽 羮 羴 犟 䎗 耠 耥 笹 耮 耱 联 㷌 垴\n炠 肷 胩 䏭 脌 猪 脎 脒 畠 脔 䐁 㬹 腖 腙 腚\n   䐓 堺 腼 膄 䐥 膓 䐭 膥 埯 臁 臤 艔 䒏 芦 艶\n苊 苘 苿 䒰 荗 险 榊 萅 烵 葤 惣 蒈 䔄 蒾 蓡 蓸\n蔐 蔸 蕒 䔻 蕯 蕰 藠 䕷 虲 蚒 蚲 蛯 际 螋 䘆 䘗\n袮 裿 褤 襇 覑 𧥧 訩 訸 誔 誴 豑 賔 賲 贜 䞘 塟\n跃 䟭 仮 踺 嗘 坔 蹱 嗵 躰 䠷 軎 転 軤 軭 軲 辷\n迁 迊 迌 逳 駄 䢭 飠 鈓 䤞 鈨 鉘 鉫 銱 銮 銿\n鋣 鋫 鋳 鋴 鋽 鍃 鎄 鎭 䥅 䥑 麿 鐗 匁 鐝 鐭 鐾\n䥪 鑔 鑹 锭 関 䦧 间 阳 䧥 枠 䨤 靀 䨵 鞲 韂 噔\n䫤 惨 颹 䬙 飱 塄 餎 餙 冴 餜 餷 饂 饝 饢 䭰 駅\n䮝 騼 鬏 窃 魩 鮁 鯝 鯱 鯴 䱭 鰠 㝯 𡯂 鵉 鰺\n   黾 噐 鶓 鶽 鷀 鷼 银 辶 鹻 麬 麱 麽 黆 铜 黢\n黱 黸 竈 齄 𠂔 𠊷 𠎠 椚 铃 妬 𠓗 塀 铁 㞹 𠗕 𠘕\n𠙶 𡚺 块 煳 𠫂 𠫍 𠮿 呪 吆 𠯋 咞 𠯻 𠰻 𠱓 𠱥 𠱼\n惧 𠲍 噺 𠲵 𠳝 𠳭 𠵯 𠶲 𠷈 楕 鰯 螥 𠸄 𠸎 𠻗 𠾐\n𠼭 𠹳 尠 𠾼 帋 𡁜 𡁏 𡁶 朞 𡁻 𡂈 𡂖 㙇 𡂿 𡃓 𡄯\n𡄻 卤 蒭 𡋣 𡍵 𡌶 讁 𡕷 𡘙 𡟃 𡟇 乸 炻 𡠭 𡥪\n𡨭 𡩅 𡰪 𡱰 𡲬 𡻈 拃 𡻕 𡼕 熘 桕 𢁅 槩 㛈 𢉼 𢏗\n𢏺 𢜪 𢡱 𢥏 苽 𢥧 𢦓 𢫕 覥 𢫨 辠 𢬎 鞸 𢬿 顇 骽\n𢱌    𢲈 𢲷 𥯨 𢴈 𢴒 𢶷 𢶕 𢹂 𢽴 𢿌 𣀳 𣁦 𣌟 𣏞\n徱 晈 暿 𧩹 𣕧 𣗳    𤦺    𣘚 𣜖    𠍆 墵 朎\n   椘 𣪧 𧙗 𥿢 𣸑 𣺹 𧗾 𢂚 䣐 䪸 𤄙 𨪚 𤋮 𤌍 𤀻\n𤌴 𤎖 𤩅 𠗊 凒 𠘑 妟 𡺨 㮾 𣳿 𤐄 𤓖 垈 𤙴 㦛 𤜯\n𨗨 𩧉 㝢 𢇃 譞 𨭎    𤠒 𤣻 𤨕 爉 𤫀 𠱸 奥 𤺥 𤾆\n𠝹 軚 𥀬 劏 圿 煱 𥊙 𥐙 𣽊 𤪧 喼 𥑆 𥑮 𦭒    㑳\n𥔿 𧘲 𥕞 䜘 𥕢 𥕦 𥟇 𤤿 𥡝 偦 㓻 𣏌    𥤃 䝼 𨥈\n𥪮 𥮉 𥰆 𡶐 垡 煑    𦄂 𧰒 遖 𦆲 𤾚 譢 𦐂 𦑊\n嵛 𦯷    𦒄 𡤜 諪 𤧶 𦒈 𣿯 𦔒 䯀 𦖿 𦚵 𢜛 鑥 𥟡\n憕 娧 晉    嚹 𤔡 𦛼 乪 𤤴 陖 涏 𦲽 㘘 襷 𦞙 𦡮\n𦐑 𦡞    𦣇 筂 𩃀 𠨑 𦤦    𦤹 穅    𦧺 騦 𦨭 㙟\n𦑩 𠀡 禃 𦨴 𦭛 崬 𣔙    𦮝 䛐 𦲤 画 补 𦶮 墶\n   㜜 𢖍 𧁋 𧇍 㱔 𧊀 𧊅 銁 𢅺 𧊋 錰 𧋦 𤧐 氹 钟\n𧑐 𠻸 蠧 裵 𢤦 𨑳 𡞱 溸 𤨪 𡠠 㦤 㚹       䔿 暶\n𩲭 𩢤 襃 𧟌 𧡘 囖 䃟 𡘊 㦡 𣜯 𨃨 𡏅 熭 荦 𧧝 𩆨\n   䲷 𧂯 𨦫 𧧽 𧨊 𧬋 𧵦 𤅺 筃 祾 𨀉 澵 𪋟 樃 𨌘\n厢 𦸇 鎿 栶 靝 𨅯 𨀣 𦦵 𡏭 𣈯 𨁈 嶅 𨰰 𨂃 圕 頣\n𨥉 嶫 𤦈 斾 槕 叒 𤪥 𣾁 㰑 朶 𨂐 𨃴 𨄮 𡾡 𨅏\n𨆉 𨆯 𨈚 𨌆 𨌯 𨎊 㗊 𨑨 𨚪 䣺 揦 𨥖 砈 鉕 𨦸 䏲\n𨧧 䏟 𨧨 𨭆 𨯔 姸 𨰉    𨿅 𩃬    𩄐 𩄼 㷷 𩅞 𤫊\n运 犏 嚋 𩓧 𩗩 𩖰 𩖸 𩜲 𩣑 𩥉 𩥪 𩧃 𩨨 𩬎 𩵚 𩶛\n纟 𩻸 𩼣 䲤 镇 𪊓 熢 𪋿 䶑 递 𪗋 䶜 𠲜 达 嗁\n   辺 𢒰 边 𤪓 䔉 繿 潖 檱 仪 㓤 𨬬 𧢝 㜺 躀 𡟵\n𨀤 𨭬 𨮙 𧨾 𦚯 㷫 𧙕 𣲷 𥘵 𥥖 亚 𥺁 𦉘 嚿 𠹭 踎\n孭 𣺈 𤲞 揞    𡟶 𡡻 攰 嘭 𥱊 吚 𥌑 㷆 𩶘 䱽 嘢\n嘞 罉 𥻘 奵 𣵀 蝰 东 𠿪 𠵉 𣚺 脗 鵞 贘 瘻 鱅 癎\n瞹 鍅 吲 腈 苷 嘥 脲 萘 肽 嗪 祢 噃 吖 𠺝 㗎 嘅\n嗱 曱 𨋢 㘭 甴 嗰 喺 咗 啲 𠱁 𠲖 廐 𥅈 𠹶 𢱢\n𠺢 麫 絚 嗞 𡁵 抝 靭 咔 賍 燶 酶 揼 掹 揾 啩 𢭃\n鱲 𢺳 冚 㓟 𠶧 冧 呍 唞 唓 癦 踭 𦢊 疱 肶 蠄 螆\n裇 膶 萜 𡃁 䓬 猄 𤜆 宐 茋 𦢓 噻 𢛴 𧴯 𤆣 𧵳 𦻐\n𧊶 酰 𡇙 鈈 𣳼 𪚩 𠺬 𠻹 牦 𡲢 䝎 𤿂 𧿹 𠿫 䃺\n   鱝 攟 𢶠 䣳 𤟠 𩵼 𠿬 𠸊    𧖣 𠿭    𦁈 𡆇 熣\n纎 鵐 业 丄 㕷 嬍 沲 卧 㚬 㧜 卽 㚥 𤘘 墚 𤭮 舭\n呋 垪 𥪕 𠥹    㩒 𢑥 獴 𩺬 䴉 鯭 𣳾 𩼰 䱛 𤾩 𩖞\n𩿞 葜 𣶶 𧊲 𦞳 𣜠 挮 紥 𣻷 𣸬 㨪 逈 勌 㹴 㙺 䗩\n𠒎 癀 嫰 𠺶 硺 𧼮 墧 䂿 噼 鮋 嵴 癔 𪐴 麅 䳡\n㟻 愙 𣃚 𤏲    噝 𡊩 垧 𤥣 𩸆 刴 𧂮 㖭    鵼\n籖 鬹 埞 𡝬 屓 擓 𩓐 𦌵 𧅤 蚭 𠴨 𦴢 𤫢 𠵱    凾\n𡼏 嶎 霃 𡷑 麁 遌 笟 鬂 峑 箣 扨 挵 髿 篏 鬪 籾\n   籂 粆 鰕 篼 鬉    鰛 𤤾 齚 啳 寃 俽 麘 俲 剠\n㸆 勑 坧 偖 妷 帒 韈 鶫 轜 呩 鞴 饀 鞺 匬 愰\n   椬 叚 鰊 鴂 䰻 陁 榀 傦 畆 𡝭 駚 剳    酙 隁\n酜    酑 𨺗 捿 𦴣 櫊 嘑 醎 畺 抅 𠏼 獏 籰 𥰡 𣳽\n   𤤙 盖 鮝 个 𠳔 莾 衂    届 槀    坺 刟 巵 从\n氱 𠇲 伹 咜 哚 劚 趂 㗾    㗳    歒 酼 龥 鮗 頮\n颴 骺 麨 麄 煺 笔    毺 蠘 罸    嘠 𪙊 蹷 齓\n跔 蹏 鸜 踁 抂 𨍽 踨 蹵 竓 𤩷 稾 磘 泪 詧 瘇\n𨩚 鼦 泎 蟖 痃 𪊲 硓 咢 贌 狢 獱 謭 猂 瓱 賫 𤪻\n蘯 徺 袠 䒷    𡠻 𦸅    詾 𢔛    惽 癧 髗 鵄 鍮\n鮏 蟵       賷 猬 霡 鮰 㗖 犲 䰇 籑 饊 𦅙 慙 䰄\n麖 慽    坟 慯 抦 戹    㩜 懢 厪 𣏵 捤 栂 㗒\n   嵗 𨯂 迚 𨸹    僙 𡵆 礆 匲 阸 𠼻 䁥    矾\n糂 𥼚 糚 稭 聦 聣 絍 甅 瓲 覔 舚 朌 聢 𧒆 聛 瓰\n脃 眤 覉 𦟌 畓 𦻑 螩 蟎 臈 螌 詉 貭 譃 眫 瓸 蓚\n㘵 榲 趦    覩    涹 蟁 𤀑 瓧 㷛 煶 悤 憜 㳑\n恷    罱 𨬭    惩 䭾 删 㰘 𣳇 𥻗 𧙖 𥔱 𡥄 𡋾 𩤃\n𦷜 𧂭 峁 𦆭 𨨏 𣙷 𠃮 𦡆 𤼎 䕢 嬟 𦍌 齐 麦 𦉫\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2008.IRREVERSIBLE.TXT",
    "content": "0xF9E9\t0x255E\n0xF9EA\t0x256A\n0xF9EB\t0x2561\n0xF9F9\t0x2550\n0xF9FA\t0x256D\n0xF9FB\t0x256E\n0xF9FC\t0x2570\n0xF9FD\t0x256F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5-HKSCS-2008.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8740\t0x43F0\n0x8741\t0x4C32\n0x8742\t0x4603\n0x8743\t0x45A6\n0x8744\t0x4578\n0x8745\t0x27267\n0x8746\t0x4D77\n0x8747\t0x45B3\n0x8748\t0x27CB1\n0x8749\t0x4CE2\n0x874A\t0x27CC5\n0x874B\t0x3B95\n0x874C\t0x4736\n0x874D\t0x4744\n0x874E\t0x4C47\n0x874F\t0x4C40\n0x8750\t0x242BF\n0x8751\t0x23617\n0x8752\t0x27352\n0x8753\t0x26E8B\n0x8754\t0x270D2\n0x8755\t0x4C57\n0x8756\t0x2A351\n0x8757\t0x474F\n0x8758\t0x45DA\n0x8759\t0x4C85\n0x875A\t0x27C6C\n0x875B\t0x4D07\n0x875C\t0x4AA4\n0x875D\t0x46A1\n0x875E\t0x26B23\n0x875F\t0x7225\n0x8760\t0x25A54\n0x8761\t0x21A63\n0x8762\t0x23E06\n0x8763\t0x23F61\n0x8764\t0x664D\n0x8765\t0x56FB\n0x8767\t0x7D95\n0x8768\t0x591D\n0x8769\t0x28BB9\n0x876A\t0x3DF4\n0x876B\t0x9734\n0x876C\t0x27BEF\n0x876D\t0x5BDB\n0x876E\t0x21D5E\n0x876F\t0x5AA4\n0x8770\t0x3625\n0x8771\t0x29EB0\n0x8772\t0x5AD1\n0x8773\t0x5BB7\n0x8774\t0x5CFC\n0x8775\t0x676E\n0x8776\t0x8593\n0x8777\t0x29945\n0x8778\t0x7461\n0x8779\t0x749D\n0x877A\t0x3875\n0x877B\t0x21D53\n0x877C\t0x2369E\n0x877D\t0x26021\n0x877E\t0x3EEC\n0x87A1\t0x258DE\n0x87A2\t0x3AF5\n0x87A3\t0x7AFC\n0x87A4\t0x9F97\n0x87A5\t0x24161\n0x87A6\t0x2890D\n0x87A7\t0x231EA\n0x87A8\t0x20A8A\n0x87A9\t0x2325E\n0x87AA\t0x430A\n0x87AB\t0x8484\n0x87AC\t0x9F96\n0x87AD\t0x942F\n0x87AE\t0x4930\n0x87AF\t0x8613\n0x87B0\t0x5896\n0x87B1\t0x974A\n0x87B2\t0x9218\n0x87B3\t0x79D0\n0x87B4\t0x7A32\n0x87B5\t0x6660\n0x87B6\t0x6A29\n0x87B7\t0x889D\n0x87B8\t0x744C\n0x87B9\t0x7BC5\n0x87BA\t0x6782\n0x87BB\t0x7A2C\n0x87BC\t0x524F\n0x87BD\t0x9046\n0x87BE\t0x34E6\n0x87BF\t0x73C4\n0x87C0\t0x25DB9\n0x87C1\t0x74C6\n0x87C2\t0x9FC7\n0x87C3\t0x57B3\n0x87C4\t0x492F\n0x87C5\t0x544C\n0x87C6\t0x4131\n0x87C7\t0x2368E\n0x87C8\t0x5818\n0x87C9\t0x7A72\n0x87CA\t0x27B65\n0x87CB\t0x8B8F\n0x87CC\t0x46AE\n0x87CD\t0x26E88\n0x87CE\t0x4181\n0x87CF\t0x25D99\n0x87D0\t0x7BAE\n0x87D1\t0x224BC\n0x87D2\t0x9FC8\n0x87D3\t0x224C1\n0x87D4\t0x224C9\n0x87D5\t0x224CC\n0x87D6\t0x9FC9\n0x87D7\t0x8504\n0x87D8\t0x235BB\n0x87D9\t0x40B4\n0x87DA\t0x9FCA\n0x87DB\t0x44E1\n0x87DC\t0x2ADFF\n0x87DD\t0x62C1\n0x87DE\t0x706E\n0x87DF\t0x9FCB\n0x8840\t0x31C0\n0x8841\t0x31C1\n0x8842\t0x31C2\n0x8843\t0x31C3\n0x8844\t0x31C4\n0x8845\t0x2010C\n0x8846\t0x31C5\n0x8847\t0x200D1\n0x8848\t0x200CD\n0x8849\t0x31C6\n0x884A\t0x31C7\n0x884B\t0x200CB\n0x884C\t0x21FE8\n0x884D\t0x31C8\n0x884E\t0x200CA\n0x884F\t0x31C9\n0x8850\t0x31CA\n0x8851\t0x31CB\n0x8852\t0x31CC\n0x8853\t0x2010E\n0x8854\t0x31CD\n0x8855\t0x31CE\n0x8856\t0x0100\n0x8857\t0x00C1\n0x8858\t0x01CD\n0x8859\t0x00C0\n0x885A\t0x0112\n0x885B\t0x00C9\n0x885C\t0x011A\n0x885D\t0x00C8\n0x885E\t0x014C\n0x885F\t0x00D3\n0x8860\t0x01D1\n0x8861\t0x00D2\n0x8862\t0x00CA 0x0304\n0x8863\t0x1EBE\n0x8864\t0x00CA 0x030C\n0x8865\t0x1EC0\n0x8866\t0x00CA\n0x8867\t0x0101\n0x8868\t0x00E1\n0x8869\t0x01CE\n0x886A\t0x00E0\n0x886B\t0x0251\n0x886C\t0x0113\n0x886D\t0x00E9\n0x886E\t0x011B\n0x886F\t0x00E8\n0x8870\t0x012B\n0x8871\t0x00ED\n0x8872\t0x01D0\n0x8873\t0x00EC\n0x8874\t0x014D\n0x8875\t0x00F3\n0x8876\t0x01D2\n0x8877\t0x00F2\n0x8878\t0x016B\n0x8879\t0x00FA\n0x887A\t0x01D4\n0x887B\t0x00F9\n0x887C\t0x01D6\n0x887D\t0x01D8\n0x887E\t0x01DA\n0x88A1\t0x01DC\n0x88A2\t0x00FC\n0x88A3\t0x00EA 0x0304\n0x88A4\t0x1EBF\n0x88A5\t0x00EA 0x030C\n0x88A6\t0x1EC1\n0x88A7\t0x00EA\n0x88A8\t0x0261\n0x88A9\t0x23DA\n0x88AA\t0x23DB\n0x8940\t0x2A3A9\n0x8941\t0x21145\n0x8943\t0x650A\n0x8946\t0x4E3D\n0x8947\t0x6EDD\n0x8948\t0x9D4E\n0x8949\t0x91DF\n0x894C\t0x27735\n0x894D\t0x6491\n0x894E\t0x4F1A\n0x894F\t0x4F28\n0x8950\t0x4FA8\n0x8951\t0x5156\n0x8952\t0x5174\n0x8953\t0x519C\n0x8954\t0x51E4\n0x8955\t0x52A1\n0x8956\t0x52A8\n0x8957\t0x533B\n0x8958\t0x534E\n0x8959\t0x53D1\n0x895A\t0x53D8\n0x895B\t0x56E2\n0x895C\t0x58F0\n0x895D\t0x5904\n0x895E\t0x5907\n0x895F\t0x5932\n0x8960\t0x5934\n0x8961\t0x5B66\n0x8962\t0x5B9E\n0x8963\t0x5B9F\n0x8964\t0x5C9A\n0x8965\t0x5E86\n0x8966\t0x603B\n0x8967\t0x6589\n0x8968\t0x67FE\n0x8969\t0x6804\n0x896A\t0x6865\n0x896B\t0x6D4E\n0x896C\t0x70BC\n0x896D\t0x7535\n0x896E\t0x7EA4\n0x896F\t0x7EAC\n0x8970\t0x7EBA\n0x8971\t0x7EC7\n0x8972\t0x7ECF\n0x8973\t0x7EDF\n0x8974\t0x7F06\n0x8975\t0x7F37\n0x8976\t0x827A\n0x8977\t0x82CF\n0x8978\t0x836F\n0x8979\t0x89C6\n0x897A\t0x8BBE\n0x897B\t0x8BE2\n0x897C\t0x8F66\n0x897D\t0x8F67\n0x897E\t0x8F6E\n0x89A1\t0x7411\n0x89A2\t0x7CFC\n0x89A3\t0x7DCD\n0x89A4\t0x6946\n0x89A5\t0x7AC9\n0x89A6\t0x5227\n0x89AB\t0x918C\n0x89AC\t0x78B8\n0x89AD\t0x915E\n0x89AE\t0x80BC\n0x89B0\t0x8D0B\n0x89B1\t0x80F6\n0x89B2\t0x209E7\n0x89B5\t0x809F\n0x89B6\t0x9EC7\n0x89B7\t0x4CCD\n0x89B8\t0x9DC9\n0x89B9\t0x9E0C\n0x89BA\t0x4C3E\n0x89BB\t0x29DF6\n0x89BC\t0x2700E\n0x89BD\t0x9E0A\n0x89BE\t0x2A133\n0x89BF\t0x35C1\n0x89C1\t0x6E9A\n0x89C2\t0x823E\n0x89C3\t0x7519\n0x89C5\t0x4911\n0x89C6\t0x9A6C\n0x89C7\t0x9A8F\n0x89C8\t0x9F99\n0x89C9\t0x7987\n0x89CA\t0x2846C\n0x89CB\t0x21DCA\n0x89CC\t0x205D0\n0x89CD\t0x22AE6\n0x89CE\t0x4E24\n0x89CF\t0x4E81\n0x89D0\t0x4E80\n0x89D1\t0x4E87\n0x89D2\t0x4EBF\n0x89D3\t0x4EEB\n0x89D4\t0x4F37\n0x89D5\t0x344C\n0x89D6\t0x4FBD\n0x89D7\t0x3E48\n0x89D8\t0x5003\n0x89D9\t0x5088\n0x89DA\t0x347D\n0x89DB\t0x3493\n0x89DC\t0x34A5\n0x89DD\t0x5186\n0x89DE\t0x5905\n0x89DF\t0x51DB\n0x89E0\t0x51FC\n0x89E1\t0x5205\n0x89E2\t0x4E89\n0x89E3\t0x5279\n0x89E4\t0x5290\n0x89E5\t0x5327\n0x89E6\t0x35C7\n0x89E7\t0x53A9\n0x89E8\t0x3551\n0x89E9\t0x53B0\n0x89EA\t0x3553\n0x89EB\t0x53C2\n0x89EC\t0x5423\n0x89ED\t0x356D\n0x89EE\t0x3572\n0x89EF\t0x3681\n0x89F0\t0x5493\n0x89F1\t0x54A3\n0x89F2\t0x54B4\n0x89F3\t0x54B9\n0x89F4\t0x54D0\n0x89F5\t0x54EF\n0x89F6\t0x5518\n0x89F7\t0x5523\n0x89F8\t0x5528\n0x89F9\t0x3598\n0x89FA\t0x553F\n0x89FB\t0x35A5\n0x89FC\t0x35BF\n0x89FD\t0x55D7\n0x89FE\t0x35C5\n0x8A40\t0x27D84\n0x8A41\t0x5525\n0x8A43\t0x20C42\n0x8A44\t0x20D15\n0x8A45\t0x2512B\n0x8A46\t0x5590\n0x8A47\t0x22CC6\n0x8A48\t0x39EC\n0x8A49\t0x20341\n0x8A4A\t0x8E46\n0x8A4B\t0x24DB8\n0x8A4C\t0x294E5\n0x8A4D\t0x4053\n0x8A4E\t0x280BE\n0x8A4F\t0x777A\n0x8A50\t0x22C38\n0x8A51\t0x3A34\n0x8A52\t0x47D5\n0x8A53\t0x2815D\n0x8A54\t0x269F2\n0x8A55\t0x24DEA\n0x8A56\t0x64DD\n0x8A57\t0x20D7C\n0x8A58\t0x20FB4\n0x8A59\t0x20CD5\n0x8A5A\t0x210F4\n0x8A5B\t0x648D\n0x8A5C\t0x8E7E\n0x8A5D\t0x20E96\n0x8A5E\t0x20C0B\n0x8A5F\t0x20F64\n0x8A60\t0x22CA9\n0x8A61\t0x28256\n0x8A62\t0x244D3\n0x8A64\t0x20D46\n0x8A65\t0x29A4D\n0x8A66\t0x280E9\n0x8A67\t0x47F4\n0x8A68\t0x24EA7\n0x8A69\t0x22CC2\n0x8A6A\t0x9AB2\n0x8A6B\t0x3A67\n0x8A6C\t0x295F4\n0x8A6D\t0x3FED\n0x8A6E\t0x3506\n0x8A6F\t0x252C7\n0x8A70\t0x297D4\n0x8A71\t0x278C8\n0x8A72\t0x22D44\n0x8A73\t0x9D6E\n0x8A74\t0x9815\n0x8A76\t0x43D9\n0x8A77\t0x260A5\n0x8A78\t0x64B4\n0x8A79\t0x54E3\n0x8A7A\t0x22D4C\n0x8A7B\t0x22BCA\n0x8A7C\t0x21077\n0x8A7D\t0x39FB\n0x8A7E\t0x2106F\n0x8AA1\t0x266DA\n0x8AA2\t0x26716\n0x8AA3\t0x279A0\n0x8AA4\t0x64EA\n0x8AA5\t0x25052\n0x8AA6\t0x20C43\n0x8AA7\t0x8E68\n0x8AA8\t0x221A1\n0x8AA9\t0x28B4C\n0x8AAA\t0x20731\n0x8AAC\t0x480B\n0x8AAD\t0x201A9\n0x8AAE\t0x3FFA\n0x8AAF\t0x5873\n0x8AB0\t0x22D8D\n0x8AB2\t0x245C8\n0x8AB3\t0x204FC\n0x8AB4\t0x26097\n0x8AB5\t0x20F4C\n0x8AB6\t0x20D96\n0x8AB7\t0x5579\n0x8AB8\t0x40BB\n0x8AB9\t0x43BA\n0x8ABB\t0x4AB4\n0x8ABC\t0x22A66\n0x8ABD\t0x2109D\n0x8ABE\t0x81AA\n0x8ABF\t0x98F5\n0x8AC0\t0x20D9C\n0x8AC1\t0x6379\n0x8AC2\t0x39FE\n0x8AC3\t0x22775\n0x8AC4\t0x8DC0\n0x8AC5\t0x56A1\n0x8AC6\t0x647C\n0x8AC7\t0x3E43\n0x8AC9\t0x2A601\n0x8ACA\t0x20E09\n0x8ACB\t0x22ACF\n0x8ACC\t0x22CC9\n0x8ACE\t0x210C8\n0x8ACF\t0x239C2\n0x8AD0\t0x3992\n0x8AD1\t0x3A06\n0x8AD2\t0x2829B\n0x8AD3\t0x3578\n0x8AD4\t0x25E49\n0x8AD5\t0x220C7\n0x8AD6\t0x5652\n0x8AD7\t0x20F31\n0x8AD8\t0x22CB2\n0x8AD9\t0x29720\n0x8ADA\t0x34BC\n0x8ADB\t0x6C3D\n0x8ADC\t0x24E3B\n0x8ADF\t0x27574\n0x8AE0\t0x22E8B\n0x8AE1\t0x22208\n0x8AE2\t0x2A65B\n0x8AE3\t0x28CCD\n0x8AE4\t0x20E7A\n0x8AE5\t0x20C34\n0x8AE6\t0x2681C\n0x8AE7\t0x7F93\n0x8AE8\t0x210CF\n0x8AE9\t0x22803\n0x8AEA\t0x22939\n0x8AEB\t0x35FB\n0x8AEC\t0x251E3\n0x8AED\t0x20E8C\n0x8AEE\t0x20F8D\n0x8AEF\t0x20EAA\n0x8AF0\t0x3F93\n0x8AF1\t0x20F30\n0x8AF2\t0x20D47\n0x8AF3\t0x2114F\n0x8AF4\t0x20E4C\n0x8AF6\t0x20EAB\n0x8AF7\t0x20BA9\n0x8AF8\t0x20D48\n0x8AF9\t0x210C0\n0x8AFA\t0x2113D\n0x8AFB\t0x3FF9\n0x8AFC\t0x22696\n0x8AFD\t0x6432\n0x8AFE\t0x20FAD\n0x8B40\t0x233F4\n0x8B41\t0x27639\n0x8B42\t0x22BCE\n0x8B43\t0x20D7E\n0x8B44\t0x20D7F\n0x8B45\t0x22C51\n0x8B46\t0x22C55\n0x8B47\t0x3A18\n0x8B48\t0x20E98\n0x8B49\t0x210C7\n0x8B4A\t0x20F2E\n0x8B4B\t0x2A632\n0x8B4C\t0x26B50\n0x8B4D\t0x28CD2\n0x8B4E\t0x28D99\n0x8B4F\t0x28CCA\n0x8B50\t0x95AA\n0x8B51\t0x54CC\n0x8B52\t0x82C4\n0x8B53\t0x55B9\n0x8B55\t0x29EC3\n0x8B56\t0x9C26\n0x8B57\t0x9AB6\n0x8B58\t0x2775E\n0x8B59\t0x22DEE\n0x8B5A\t0x7140\n0x8B5B\t0x816D\n0x8B5C\t0x80EC\n0x8B5D\t0x5C1C\n0x8B5E\t0x26572\n0x8B5F\t0x8134\n0x8B60\t0x3797\n0x8B61\t0x535F\n0x8B62\t0x280BD\n0x8B63\t0x91B6\n0x8B64\t0x20EFA\n0x8B65\t0x20E0F\n0x8B66\t0x20E77\n0x8B67\t0x20EFB\n0x8B68\t0x35DD\n0x8B69\t0x24DEB\n0x8B6A\t0x3609\n0x8B6B\t0x20CD6\n0x8B6C\t0x56AF\n0x8B6D\t0x227B5\n0x8B6E\t0x210C9\n0x8B6F\t0x20E10\n0x8B70\t0x20E78\n0x8B71\t0x21078\n0x8B72\t0x21148\n0x8B73\t0x28207\n0x8B74\t0x21455\n0x8B75\t0x20E79\n0x8B76\t0x24E50\n0x8B77\t0x22DA4\n0x8B78\t0x5A54\n0x8B79\t0x2101D\n0x8B7A\t0x2101E\n0x8B7B\t0x210F5\n0x8B7C\t0x210F6\n0x8B7D\t0x579C\n0x8B7E\t0x20E11\n0x8BA1\t0x27694\n0x8BA2\t0x282CD\n0x8BA3\t0x20FB5\n0x8BA4\t0x20E7B\n0x8BA5\t0x2517E\n0x8BA6\t0x3703\n0x8BA7\t0x20FB6\n0x8BA8\t0x21180\n0x8BA9\t0x252D8\n0x8BAA\t0x2A2BD\n0x8BAB\t0x249DA\n0x8BAC\t0x2183A\n0x8BAD\t0x24177\n0x8BAE\t0x2827C\n0x8BAF\t0x5899\n0x8BB0\t0x5268\n0x8BB1\t0x361A\n0x8BB2\t0x2573D\n0x8BB3\t0x7BB2\n0x8BB4\t0x5B68\n0x8BB5\t0x4800\n0x8BB6\t0x4B2C\n0x8BB7\t0x9F27\n0x8BB8\t0x49E7\n0x8BB9\t0x9C1F\n0x8BBA\t0x9B8D\n0x8BBB\t0x25B74\n0x8BBC\t0x2313D\n0x8BBD\t0x55FB\n0x8BBE\t0x35F2\n0x8BBF\t0x5689\n0x8BC0\t0x4E28\n0x8BC1\t0x5902\n0x8BC2\t0x21BC1\n0x8BC3\t0x2F878\n0x8BC4\t0x9751\n0x8BC5\t0x20086\n0x8BC6\t0x4E5B\n0x8BC7\t0x4EBB\n0x8BC8\t0x353E\n0x8BC9\t0x5C23\n0x8BCA\t0x5F51\n0x8BCB\t0x5FC4\n0x8BCC\t0x38FA\n0x8BCD\t0x624C\n0x8BCE\t0x6535\n0x8BCF\t0x6B7A\n0x8BD0\t0x6C35\n0x8BD1\t0x6C3A\n0x8BD2\t0x706C\n0x8BD3\t0x722B\n0x8BD4\t0x4E2C\n0x8BD5\t0x72AD\n0x8BD6\t0x248E9\n0x8BD7\t0x7F52\n0x8BD8\t0x793B\n0x8BD9\t0x7CF9\n0x8BDA\t0x7F53\n0x8BDB\t0x2626A\n0x8BDC\t0x34C1\n0x8BDE\t0x2634B\n0x8BDF\t0x8002\n0x8BE0\t0x8080\n0x8BE1\t0x26612\n0x8BE2\t0x26951\n0x8BE3\t0x535D\n0x8BE4\t0x8864\n0x8BE5\t0x89C1\n0x8BE6\t0x278B2\n0x8BE7\t0x8BA0\n0x8BE8\t0x8D1D\n0x8BE9\t0x9485\n0x8BEA\t0x9578\n0x8BEB\t0x957F\n0x8BEC\t0x95E8\n0x8BED\t0x28E0F\n0x8BEE\t0x97E6\n0x8BEF\t0x9875\n0x8BF0\t0x98CE\n0x8BF1\t0x98DE\n0x8BF2\t0x9963\n0x8BF3\t0x29810\n0x8BF4\t0x9C7C\n0x8BF5\t0x9E1F\n0x8BF6\t0x9EC4\n0x8BF7\t0x6B6F\n0x8BF8\t0xF907\n0x8BF9\t0x4E37\n0x8BFA\t0x20087\n0x8BFB\t0x961D\n0x8BFC\t0x6237\n0x8BFD\t0x94A2\n0x8C40\t0x503B\n0x8C41\t0x6DFE\n0x8C42\t0x29C73\n0x8C43\t0x9FA6\n0x8C44\t0x3DC9\n0x8C45\t0x888F\n0x8C46\t0x2414E\n0x8C47\t0x7077\n0x8C48\t0x5CF5\n0x8C49\t0x4B20\n0x8C4A\t0x251CD\n0x8C4B\t0x3559\n0x8C4C\t0x25D30\n0x8C4D\t0x6122\n0x8C4E\t0x28A32\n0x8C4F\t0x8FA7\n0x8C50\t0x91F6\n0x8C51\t0x7191\n0x8C52\t0x6719\n0x8C53\t0x73BA\n0x8C54\t0x23281\n0x8C55\t0x2A107\n0x8C56\t0x3C8B\n0x8C57\t0x21980\n0x8C58\t0x4B10\n0x8C59\t0x78E4\n0x8C5A\t0x7402\n0x8C5B\t0x51AE\n0x8C5C\t0x2870F\n0x8C5D\t0x4009\n0x8C5E\t0x6A63\n0x8C5F\t0x2A2BA\n0x8C60\t0x4223\n0x8C61\t0x860F\n0x8C62\t0x20A6F\n0x8C63\t0x7A2A\n0x8C64\t0x29947\n0x8C65\t0x28AEA\n0x8C66\t0x9755\n0x8C67\t0x704D\n0x8C68\t0x5324\n0x8C69\t0x2207E\n0x8C6A\t0x93F4\n0x8C6B\t0x76D9\n0x8C6C\t0x289E3\n0x8C6D\t0x9FA7\n0x8C6E\t0x77DD\n0x8C6F\t0x4EA3\n0x8C70\t0x4FF0\n0x8C71\t0x50BC\n0x8C72\t0x4E2F\n0x8C73\t0x4F17\n0x8C74\t0x9FA8\n0x8C75\t0x5434\n0x8C76\t0x7D8B\n0x8C77\t0x5892\n0x8C78\t0x58D0\n0x8C79\t0x21DB6\n0x8C7A\t0x5E92\n0x8C7B\t0x5E99\n0x8C7C\t0x5FC2\n0x8C7D\t0x22712\n0x8C7E\t0x658B\n0x8CA1\t0x233F9\n0x8CA2\t0x6919\n0x8CA3\t0x6A43\n0x8CA4\t0x23C63\n0x8CA5\t0x6CFF\n0x8CA7\t0x7200\n0x8CA8\t0x24505\n0x8CA9\t0x738C\n0x8CAA\t0x3EDB\n0x8CAB\t0x24A13\n0x8CAC\t0x5B15\n0x8CAD\t0x74B9\n0x8CAE\t0x8B83\n0x8CAF\t0x25CA4\n0x8CB0\t0x25695\n0x8CB1\t0x7A93\n0x8CB2\t0x7BEC\n0x8CB3\t0x7CC3\n0x8CB4\t0x7E6C\n0x8CB5\t0x82F8\n0x8CB6\t0x8597\n0x8CB7\t0x9FA9\n0x8CB8\t0x8890\n0x8CB9\t0x9FAA\n0x8CBA\t0x8EB9\n0x8CBB\t0x9FAB\n0x8CBC\t0x8FCF\n0x8CBD\t0x855F\n0x8CBE\t0x99E0\n0x8CBF\t0x9221\n0x8CC0\t0x9FAC\n0x8CC1\t0x28DB9\n0x8CC2\t0x2143F\n0x8CC3\t0x4071\n0x8CC4\t0x42A2\n0x8CC5\t0x5A1A\n0x8CC9\t0x9868\n0x8CCA\t0x676B\n0x8CCB\t0x4276\n0x8CCC\t0x573D\n0x8CCE\t0x85D6\n0x8CCF\t0x2497B\n0x8CD0\t0x82BF\n0x8CD1\t0x2710D\n0x8CD2\t0x4C81\n0x8CD3\t0x26D74\n0x8CD4\t0x5D7B\n0x8CD5\t0x26B15\n0x8CD6\t0x26FBE\n0x8CD7\t0x9FAD\n0x8CD8\t0x9FAE\n0x8CD9\t0x5B96\n0x8CDA\t0x9FAF\n0x8CDB\t0x66E7\n0x8CDC\t0x7E5B\n0x8CDD\t0x6E57\n0x8CDE\t0x79CA\n0x8CDF\t0x3D88\n0x8CE0\t0x44C3\n0x8CE1\t0x23256\n0x8CE2\t0x22796\n0x8CE3\t0x439A\n0x8CE4\t0x4536\n0x8CE6\t0x5CD5\n0x8CE7\t0x23B1A\n0x8CE8\t0x8AF9\n0x8CE9\t0x5C78\n0x8CEA\t0x3D12\n0x8CEB\t0x23551\n0x8CEC\t0x5D78\n0x8CED\t0x9FB2\n0x8CEE\t0x7157\n0x8CEF\t0x4558\n0x8CF0\t0x240EC\n0x8CF1\t0x21E23\n0x8CF2\t0x4C77\n0x8CF3\t0x3978\n0x8CF4\t0x344A\n0x8CF5\t0x201A4\n0x8CF6\t0x26C41\n0x8CF7\t0x8ACC\n0x8CF8\t0x4FB4\n0x8CF9\t0x20239\n0x8CFA\t0x59BF\n0x8CFB\t0x816C\n0x8CFC\t0x9856\n0x8CFD\t0x298FA\n0x8CFE\t0x5F3B\n0x8D40\t0x20B9F\n0x8D42\t0x221C1\n0x8D43\t0x2896D\n0x8D44\t0x4102\n0x8D45\t0x46BB\n0x8D46\t0x29079\n0x8D47\t0x3F07\n0x8D48\t0x9FB3\n0x8D49\t0x2A1B5\n0x8D4A\t0x40F8\n0x8D4B\t0x37D6\n0x8D4C\t0x46F7\n0x8D4D\t0x26C46\n0x8D4E\t0x417C\n0x8D4F\t0x286B2\n0x8D50\t0x273FF\n0x8D51\t0x456D\n0x8D52\t0x38D4\n0x8D53\t0x2549A\n0x8D54\t0x4561\n0x8D55\t0x451B\n0x8D56\t0x4D89\n0x8D57\t0x4C7B\n0x8D58\t0x4D76\n0x8D59\t0x45EA\n0x8D5A\t0x3FC8\n0x8D5B\t0x24B0F\n0x8D5C\t0x3661\n0x8D5D\t0x44DE\n0x8D5E\t0x44BD\n0x8D5F\t0x41ED\n0x8D60\t0x5D3E\n0x8D61\t0x5D48\n0x8D62\t0x5D56\n0x8D63\t0x3DFC\n0x8D64\t0x380F\n0x8D65\t0x5DA4\n0x8D66\t0x5DB9\n0x8D67\t0x3820\n0x8D68\t0x3838\n0x8D69\t0x5E42\n0x8D6A\t0x5EBD\n0x8D6B\t0x5F25\n0x8D6C\t0x5F83\n0x8D6D\t0x3908\n0x8D6E\t0x3914\n0x8D6F\t0x393F\n0x8D70\t0x394D\n0x8D71\t0x60D7\n0x8D72\t0x613D\n0x8D73\t0x5CE5\n0x8D74\t0x3989\n0x8D75\t0x61B7\n0x8D76\t0x61B9\n0x8D77\t0x61CF\n0x8D78\t0x39B8\n0x8D79\t0x622C\n0x8D7A\t0x6290\n0x8D7B\t0x62E5\n0x8D7C\t0x6318\n0x8D7D\t0x39F8\n0x8D7E\t0x56B1\n0x8DA1\t0x3A03\n0x8DA2\t0x63E2\n0x8DA3\t0x63FB\n0x8DA4\t0x6407\n0x8DA5\t0x645A\n0x8DA6\t0x3A4B\n0x8DA7\t0x64C0\n0x8DA8\t0x5D15\n0x8DA9\t0x5621\n0x8DAA\t0x9F9F\n0x8DAB\t0x3A97\n0x8DAC\t0x6586\n0x8DAD\t0x3ABD\n0x8DAE\t0x65FF\n0x8DAF\t0x6653\n0x8DB0\t0x3AF2\n0x8DB1\t0x6692\n0x8DB2\t0x3B22\n0x8DB3\t0x6716\n0x8DB4\t0x3B42\n0x8DB5\t0x67A4\n0x8DB6\t0x6800\n0x8DB7\t0x3B58\n0x8DB8\t0x684A\n0x8DB9\t0x6884\n0x8DBA\t0x3B72\n0x8DBB\t0x3B71\n0x8DBC\t0x3B7B\n0x8DBD\t0x6909\n0x8DBE\t0x6943\n0x8DBF\t0x725C\n0x8DC0\t0x6964\n0x8DC1\t0x699F\n0x8DC2\t0x6985\n0x8DC3\t0x3BBC\n0x8DC4\t0x69D6\n0x8DC5\t0x3BDD\n0x8DC6\t0x6A65\n0x8DC7\t0x6A74\n0x8DC8\t0x6A71\n0x8DC9\t0x6A82\n0x8DCA\t0x3BEC\n0x8DCB\t0x6A99\n0x8DCC\t0x3BF2\n0x8DCD\t0x6AAB\n0x8DCE\t0x6AB5\n0x8DCF\t0x6AD4\n0x8DD0\t0x6AF6\n0x8DD1\t0x6B81\n0x8DD2\t0x6BC1\n0x8DD3\t0x6BEA\n0x8DD4\t0x6C75\n0x8DD5\t0x6CAA\n0x8DD6\t0x3CCB\n0x8DD7\t0x6D02\n0x8DD8\t0x6D06\n0x8DD9\t0x6D26\n0x8DDA\t0x6D81\n0x8DDB\t0x3CEF\n0x8DDC\t0x6DA4\n0x8DDD\t0x6DB1\n0x8DDE\t0x6E15\n0x8DDF\t0x6E18\n0x8DE0\t0x6E29\n0x8DE1\t0x6E86\n0x8DE2\t0x289C0\n0x8DE3\t0x6EBB\n0x8DE4\t0x6EE2\n0x8DE5\t0x6EDA\n0x8DE6\t0x9F7F\n0x8DE7\t0x6EE8\n0x8DE8\t0x6EE9\n0x8DE9\t0x6F24\n0x8DEA\t0x6F34\n0x8DEB\t0x3D46\n0x8DEC\t0x23F41\n0x8DED\t0x6F81\n0x8DEE\t0x6FBE\n0x8DEF\t0x3D6A\n0x8DF0\t0x3D75\n0x8DF1\t0x71B7\n0x8DF2\t0x5C99\n0x8DF3\t0x3D8A\n0x8DF4\t0x702C\n0x8DF5\t0x3D91\n0x8DF6\t0x7050\n0x8DF7\t0x7054\n0x8DF8\t0x706F\n0x8DF9\t0x707F\n0x8DFA\t0x7089\n0x8DFB\t0x20325\n0x8DFC\t0x43C1\n0x8DFD\t0x35F1\n0x8DFE\t0x20ED8\n0x8E40\t0x23ED7\n0x8E41\t0x57BE\n0x8E42\t0x26ED3\n0x8E43\t0x713E\n0x8E44\t0x257E0\n0x8E45\t0x364E\n0x8E46\t0x69A2\n0x8E47\t0x28BE9\n0x8E48\t0x5B74\n0x8E49\t0x7A49\n0x8E4A\t0x258E1\n0x8E4B\t0x294D9\n0x8E4C\t0x7A65\n0x8E4D\t0x7A7D\n0x8E4E\t0x259AC\n0x8E4F\t0x7ABB\n0x8E50\t0x7AB0\n0x8E51\t0x7AC2\n0x8E52\t0x7AC3\n0x8E53\t0x71D1\n0x8E54\t0x2648D\n0x8E55\t0x41CA\n0x8E56\t0x7ADA\n0x8E57\t0x7ADD\n0x8E58\t0x7AEA\n0x8E59\t0x41EF\n0x8E5A\t0x54B2\n0x8E5B\t0x25C01\n0x8E5C\t0x7B0B\n0x8E5D\t0x7B55\n0x8E5E\t0x7B29\n0x8E5F\t0x2530E\n0x8E60\t0x25CFE\n0x8E61\t0x7BA2\n0x8E62\t0x7B6F\n0x8E63\t0x839C\n0x8E64\t0x25BB4\n0x8E65\t0x26C7F\n0x8E66\t0x7BD0\n0x8E67\t0x8421\n0x8E68\t0x7B92\n0x8E6A\t0x25D20\n0x8E6B\t0x3DAD\n0x8E6C\t0x25C65\n0x8E6D\t0x8492\n0x8E6E\t0x7BFA\n0x8E70\t0x7C35\n0x8E71\t0x25CC1\n0x8E72\t0x7C44\n0x8E73\t0x7C83\n0x8E74\t0x24882\n0x8E75\t0x7CA6\n0x8E76\t0x667D\n0x8E77\t0x24578\n0x8E78\t0x7CC9\n0x8E79\t0x7CC7\n0x8E7A\t0x7CE6\n0x8E7B\t0x7C74\n0x8E7C\t0x7CF3\n0x8E7D\t0x7CF5\n0x8EA1\t0x7E67\n0x8EA2\t0x451D\n0x8EA3\t0x26E44\n0x8EA4\t0x7D5D\n0x8EA5\t0x26ED6\n0x8EA6\t0x748D\n0x8EA7\t0x7D89\n0x8EA8\t0x7DAB\n0x8EA9\t0x7135\n0x8EAA\t0x7DB3\n0x8EAC\t0x24057\n0x8EAD\t0x26029\n0x8EAE\t0x7DE4\n0x8EAF\t0x3D13\n0x8EB0\t0x7DF5\n0x8EB1\t0x217F9\n0x8EB2\t0x7DE5\n0x8EB3\t0x2836D\n0x8EB5\t0x26121\n0x8EB6\t0x2615A\n0x8EB7\t0x7E6E\n0x8EB8\t0x7E92\n0x8EB9\t0x432B\n0x8EBA\t0x946C\n0x8EBB\t0x7E27\n0x8EBC\t0x7F40\n0x8EBD\t0x7F41\n0x8EBE\t0x7F47\n0x8EBF\t0x7936\n0x8EC0\t0x262D0\n0x8EC1\t0x99E1\n0x8EC2\t0x7F97\n0x8EC3\t0x26351\n0x8EC4\t0x7FA3\n0x8EC5\t0x21661\n0x8EC6\t0x20068\n0x8EC7\t0x455C\n0x8EC8\t0x23766\n0x8EC9\t0x4503\n0x8ECA\t0x2833A\n0x8ECB\t0x7FFA\n0x8ECC\t0x26489\n0x8ECE\t0x8008\n0x8ECF\t0x801D\n0x8ED1\t0x802F\n0x8ED2\t0x2A087\n0x8ED3\t0x26CC3\n0x8ED4\t0x803B\n0x8ED5\t0x803C\n0x8ED6\t0x8061\n0x8ED7\t0x22714\n0x8ED8\t0x4989\n0x8ED9\t0x26626\n0x8EDA\t0x23DE3\n0x8EDB\t0x266E8\n0x8EDC\t0x6725\n0x8EDD\t0x80A7\n0x8EDE\t0x28A48\n0x8EDF\t0x8107\n0x8EE0\t0x811A\n0x8EE1\t0x58B0\n0x8EE2\t0x226F6\n0x8EE3\t0x6C7F\n0x8EE4\t0x26498\n0x8EE5\t0x24FB8\n0x8EE6\t0x64E7\n0x8EE7\t0x2148A\n0x8EE8\t0x8218\n0x8EE9\t0x2185E\n0x8EEA\t0x6A53\n0x8EEB\t0x24A65\n0x8EEC\t0x24A95\n0x8EED\t0x447A\n0x8EEE\t0x8229\n0x8EEF\t0x20B0D\n0x8EF0\t0x26A52\n0x8EF1\t0x23D7E\n0x8EF2\t0x4FF9\n0x8EF3\t0x214FD\n0x8EF4\t0x84E2\n0x8EF5\t0x8362\n0x8EF6\t0x26B0A\n0x8EF7\t0x249A7\n0x8EF8\t0x23530\n0x8EF9\t0x21773\n0x8EFA\t0x23DF8\n0x8EFB\t0x82AA\n0x8EFC\t0x691B\n0x8EFD\t0x2F994\n0x8EFE\t0x41DB\n0x8F40\t0x854B\n0x8F41\t0x82D0\n0x8F42\t0x831A\n0x8F43\t0x20E16\n0x8F44\t0x217B4\n0x8F45\t0x36C1\n0x8F46\t0x2317D\n0x8F47\t0x2355A\n0x8F48\t0x827B\n0x8F49\t0x82E2\n0x8F4A\t0x8318\n0x8F4B\t0x23E8B\n0x8F4C\t0x26DA3\n0x8F4D\t0x26B05\n0x8F4E\t0x26B97\n0x8F4F\t0x235CE\n0x8F50\t0x3DBF\n0x8F51\t0x831D\n0x8F52\t0x55EC\n0x8F53\t0x8385\n0x8F54\t0x450B\n0x8F55\t0x26DA5\n0x8F56\t0x83AC\n0x8F58\t0x83D3\n0x8F59\t0x347E\n0x8F5A\t0x26ED4\n0x8F5B\t0x6A57\n0x8F5C\t0x855A\n0x8F5D\t0x3496\n0x8F5E\t0x26E42\n0x8F5F\t0x22EEF\n0x8F60\t0x8458\n0x8F61\t0x25BE4\n0x8F62\t0x8471\n0x8F63\t0x3DD3\n0x8F64\t0x44E4\n0x8F65\t0x6AA7\n0x8F66\t0x844A\n0x8F67\t0x23CB5\n0x8F68\t0x7958\n0x8F6A\t0x26B96\n0x8F6B\t0x26E77\n0x8F6C\t0x26E43\n0x8F6D\t0x84DE\n0x8F6F\t0x8391\n0x8F70\t0x44A0\n0x8F71\t0x8493\n0x8F72\t0x84E4\n0x8F73\t0x25C91\n0x8F74\t0x4240\n0x8F75\t0x25CC0\n0x8F76\t0x4543\n0x8F77\t0x8534\n0x8F78\t0x5AF2\n0x8F79\t0x26E99\n0x8F7A\t0x4527\n0x8F7B\t0x8573\n0x8F7C\t0x4516\n0x8F7D\t0x67BF\n0x8F7E\t0x8616\n0x8FA1\t0x28625\n0x8FA2\t0x2863B\n0x8FA3\t0x85C1\n0x8FA4\t0x27088\n0x8FA5\t0x8602\n0x8FA6\t0x21582\n0x8FA7\t0x270CD\n0x8FA8\t0x2F9B2\n0x8FA9\t0x456A\n0x8FAA\t0x8628\n0x8FAB\t0x3648\n0x8FAC\t0x218A2\n0x8FAD\t0x53F7\n0x8FAE\t0x2739A\n0x8FAF\t0x867E\n0x8FB0\t0x8771\n0x8FB1\t0x2A0F8\n0x8FB2\t0x87EE\n0x8FB3\t0x22C27\n0x8FB4\t0x87B1\n0x8FB5\t0x87DA\n0x8FB6\t0x880F\n0x8FB7\t0x5661\n0x8FB8\t0x866C\n0x8FB9\t0x6856\n0x8FBA\t0x460F\n0x8FBB\t0x8845\n0x8FBC\t0x8846\n0x8FBD\t0x275E0\n0x8FBE\t0x23DB9\n0x8FBF\t0x275E4\n0x8FC0\t0x885E\n0x8FC1\t0x889C\n0x8FC2\t0x465B\n0x8FC3\t0x88B4\n0x8FC4\t0x88B5\n0x8FC5\t0x63C1\n0x8FC6\t0x88C5\n0x8FC7\t0x7777\n0x8FC8\t0x2770F\n0x8FC9\t0x8987\n0x8FCA\t0x898A\n0x8FCD\t0x89A7\n0x8FCE\t0x89BC\n0x8FCF\t0x28A25\n0x8FD0\t0x89E7\n0x8FD1\t0x27924\n0x8FD2\t0x27ABD\n0x8FD3\t0x8A9C\n0x8FD4\t0x7793\n0x8FD5\t0x91FE\n0x8FD6\t0x8A90\n0x8FD7\t0x27A59\n0x8FD8\t0x7AE9\n0x8FD9\t0x27B3A\n0x8FDA\t0x23F8F\n0x8FDB\t0x4713\n0x8FDC\t0x27B38\n0x8FDD\t0x717C\n0x8FDE\t0x8B0C\n0x8FDF\t0x8B1F\n0x8FE0\t0x25430\n0x8FE1\t0x25565\n0x8FE2\t0x8B3F\n0x8FE3\t0x8B4C\n0x8FE4\t0x8B4D\n0x8FE5\t0x8AA9\n0x8FE6\t0x24A7A\n0x8FE7\t0x8B90\n0x8FE8\t0x8B9B\n0x8FE9\t0x8AAF\n0x8FEA\t0x216DF\n0x8FEB\t0x4615\n0x8FEC\t0x884F\n0x8FED\t0x8C9B\n0x8FEE\t0x27D54\n0x8FEF\t0x27D8F\n0x8FF0\t0x2F9D4\n0x8FF1\t0x3725\n0x8FF2\t0x27D53\n0x8FF3\t0x8CD6\n0x8FF4\t0x27D98\n0x8FF5\t0x27DBD\n0x8FF6\t0x8D12\n0x8FF7\t0x8D03\n0x8FF8\t0x21910\n0x8FF9\t0x8CDB\n0x8FFA\t0x705C\n0x8FFB\t0x8D11\n0x8FFC\t0x24CC9\n0x8FFD\t0x3ED0\n0x9040\t0x8DA9\n0x9041\t0x28002\n0x9042\t0x21014\n0x9043\t0x2498A\n0x9044\t0x3B7C\n0x9045\t0x281BC\n0x9046\t0x2710C\n0x9047\t0x7AE7\n0x9048\t0x8EAD\n0x9049\t0x8EB6\n0x904A\t0x8EC3\n0x904B\t0x92D4\n0x904C\t0x8F19\n0x904D\t0x8F2D\n0x904E\t0x28365\n0x904F\t0x28412\n0x9050\t0x8FA5\n0x9051\t0x9303\n0x9052\t0x2A29F\n0x9053\t0x20A50\n0x9054\t0x8FB3\n0x9055\t0x492A\n0x9056\t0x289DE\n0x9057\t0x2853D\n0x9058\t0x23DBB\n0x9059\t0x5EF8\n0x905A\t0x23262\n0x905B\t0x8FF9\n0x905C\t0x2A014\n0x905D\t0x286BC\n0x905E\t0x28501\n0x905F\t0x22325\n0x9060\t0x3980\n0x9061\t0x26ED7\n0x9062\t0x9037\n0x9063\t0x2853C\n0x9064\t0x27ABE\n0x9065\t0x9061\n0x9066\t0x2856C\n0x9067\t0x2860B\n0x9068\t0x90A8\n0x9069\t0x28713\n0x906A\t0x90C4\n0x906B\t0x286E6\n0x906C\t0x90AE\n0x906E\t0x9167\n0x906F\t0x3AF0\n0x9070\t0x91A9\n0x9071\t0x91C4\n0x9072\t0x7CAC\n0x9073\t0x28933\n0x9074\t0x21E89\n0x9075\t0x920E\n0x9076\t0x6C9F\n0x9077\t0x9241\n0x9078\t0x9262\n0x9079\t0x255B9\n0x907B\t0x28AC6\n0x907C\t0x23C9B\n0x907D\t0x28B0C\n0x907E\t0x255DB\n0x90A1\t0x20D31\n0x90A2\t0x932C\n0x90A3\t0x936B\n0x90A4\t0x28AE1\n0x90A5\t0x28BEB\n0x90A6\t0x708F\n0x90A7\t0x5AC3\n0x90A8\t0x28AE2\n0x90A9\t0x28AE5\n0x90AA\t0x4965\n0x90AB\t0x9244\n0x90AC\t0x28BEC\n0x90AD\t0x28C39\n0x90AE\t0x28BFF\n0x90AF\t0x9373\n0x90B0\t0x945B\n0x90B1\t0x8EBC\n0x90B2\t0x9585\n0x90B3\t0x95A6\n0x90B4\t0x9426\n0x90B5\t0x95A0\n0x90B6\t0x6FF6\n0x90B7\t0x42B9\n0x90B8\t0x2267A\n0x90B9\t0x286D8\n0x90BA\t0x2127C\n0x90BB\t0x23E2E\n0x90BC\t0x49DF\n0x90BD\t0x6C1C\n0x90BE\t0x967B\n0x90BF\t0x9696\n0x90C0\t0x416C\n0x90C1\t0x96A3\n0x90C2\t0x26ED5\n0x90C3\t0x61DA\n0x90C4\t0x96B6\n0x90C5\t0x78F5\n0x90C6\t0x28AE0\n0x90C7\t0x96BD\n0x90C8\t0x53CC\n0x90C9\t0x49A1\n0x90CA\t0x26CB8\n0x90CB\t0x20274\n0x90CC\t0x26410\n0x90CD\t0x290AF\n0x90CE\t0x290E5\n0x90CF\t0x24AD1\n0x90D0\t0x21915\n0x90D1\t0x2330A\n0x90D2\t0x9731\n0x90D3\t0x8642\n0x90D4\t0x9736\n0x90D5\t0x4A0F\n0x90D6\t0x453D\n0x90D7\t0x4585\n0x90D8\t0x24AE9\n0x90D9\t0x7075\n0x90DA\t0x5B41\n0x90DB\t0x971B\n0x90DD\t0x291D5\n0x90DE\t0x9757\n0x90DF\t0x5B4A\n0x90E0\t0x291EB\n0x90E1\t0x975F\n0x90E2\t0x9425\n0x90E3\t0x50D0\n0x90E4\t0x230B7\n0x90E5\t0x230BC\n0x90E6\t0x9789\n0x90E7\t0x979F\n0x90E8\t0x97B1\n0x90E9\t0x97BE\n0x90EA\t0x97C0\n0x90EB\t0x97D2\n0x90EC\t0x97E0\n0x90ED\t0x2546C\n0x90EE\t0x97EE\n0x90EF\t0x741C\n0x90F0\t0x29433\n0x90F2\t0x97F5\n0x90F3\t0x2941D\n0x90F4\t0x2797A\n0x90F5\t0x4AD1\n0x90F6\t0x9834\n0x90F7\t0x9833\n0x90F8\t0x984B\n0x90F9\t0x9866\n0x90FA\t0x3B0E\n0x90FB\t0x27175\n0x90FC\t0x3D51\n0x90FD\t0x20630\n0x90FE\t0x2415C\n0x9140\t0x25706\n0x9141\t0x98CA\n0x9142\t0x98B7\n0x9143\t0x98C8\n0x9144\t0x98C7\n0x9145\t0x4AFF\n0x9146\t0x26D27\n0x9147\t0x216D3\n0x9148\t0x55B0\n0x9149\t0x98E1\n0x914A\t0x98E6\n0x914B\t0x98EC\n0x914C\t0x9378\n0x914D\t0x9939\n0x914E\t0x24A29\n0x914F\t0x4B72\n0x9150\t0x29857\n0x9151\t0x29905\n0x9152\t0x99F5\n0x9153\t0x9A0C\n0x9154\t0x9A3B\n0x9155\t0x9A10\n0x9156\t0x9A58\n0x9157\t0x25725\n0x9158\t0x36C4\n0x9159\t0x290B1\n0x915A\t0x29BD5\n0x915B\t0x9AE0\n0x915C\t0x9AE2\n0x915D\t0x29B05\n0x915E\t0x9AF4\n0x915F\t0x4C0E\n0x9160\t0x9B14\n0x9161\t0x9B2D\n0x9162\t0x28600\n0x9163\t0x5034\n0x9164\t0x9B34\n0x9165\t0x269A8\n0x9166\t0x38C3\n0x9167\t0x2307D\n0x9168\t0x9B50\n0x9169\t0x9B40\n0x916A\t0x29D3E\n0x916B\t0x5A45\n0x916C\t0x21863\n0x916D\t0x9B8E\n0x916E\t0x2424B\n0x916F\t0x9C02\n0x9170\t0x9BFF\n0x9171\t0x9C0C\n0x9172\t0x29E68\n0x9173\t0x9DD4\n0x9174\t0x29FB7\n0x9175\t0x2A192\n0x9176\t0x2A1AB\n0x9177\t0x2A0E1\n0x9178\t0x2A123\n0x9179\t0x2A1DF\n0x917A\t0x9D7E\n0x917B\t0x9D83\n0x917C\t0x2A134\n0x917D\t0x9E0E\n0x917E\t0x6888\n0x91A1\t0x9DC4\n0x91A2\t0x2215B\n0x91A3\t0x2A193\n0x91A4\t0x2A220\n0x91A5\t0x2193B\n0x91A6\t0x2A233\n0x91A7\t0x9D39\n0x91A8\t0x2A0B9\n0x91A9\t0x2A2B4\n0x91AA\t0x9E90\n0x91AB\t0x9E95\n0x91AC\t0x9E9E\n0x91AD\t0x9EA2\n0x91AE\t0x4D34\n0x91AF\t0x9EAA\n0x91B0\t0x9EAF\n0x91B1\t0x24364\n0x91B2\t0x9EC1\n0x91B3\t0x3B60\n0x91B4\t0x39E5\n0x91B5\t0x3D1D\n0x91B6\t0x4F32\n0x91B7\t0x37BE\n0x91B8\t0x28C2B\n0x91B9\t0x9F02\n0x91BA\t0x9F08\n0x91BB\t0x4B96\n0x91BC\t0x9424\n0x91BD\t0x26DA2\n0x91BE\t0x9F17\n0x91C0\t0x9F39\n0x91C1\t0x569F\n0x91C2\t0x568A\n0x91C3\t0x9F45\n0x91C4\t0x99B8\n0x91C5\t0x2908B\n0x91C6\t0x97F2\n0x91C7\t0x847F\n0x91C8\t0x9F62\n0x91C9\t0x9F69\n0x91CA\t0x7ADC\n0x91CB\t0x9F8E\n0x91CC\t0x7216\n0x91CD\t0x4BBE\n0x91CE\t0x24975\n0x91CF\t0x249BB\n0x91D0\t0x7177\n0x91D1\t0x249F8\n0x91D2\t0x24348\n0x91D3\t0x24A51\n0x91D4\t0x739E\n0x91D5\t0x28BDA\n0x91D6\t0x218FA\n0x91D7\t0x799F\n0x91D8\t0x2897E\n0x91D9\t0x28E36\n0x91DA\t0x9369\n0x91DB\t0x93F3\n0x91DC\t0x28A44\n0x91DD\t0x92EC\n0x91DE\t0x9381\n0x91DF\t0x93CB\n0x91E0\t0x2896C\n0x91E1\t0x244B9\n0x91E2\t0x7217\n0x91E3\t0x3EEB\n0x91E4\t0x7772\n0x91E5\t0x7A43\n0x91E6\t0x70D0\n0x91E7\t0x24473\n0x91E8\t0x243F8\n0x91E9\t0x717E\n0x91EA\t0x217EF\n0x91EB\t0x70A3\n0x91EC\t0x218BE\n0x91ED\t0x23599\n0x91EE\t0x3EC7\n0x91EF\t0x21885\n0x91F0\t0x2542F\n0x91F1\t0x217F8\n0x91F2\t0x3722\n0x91F3\t0x216FB\n0x91F4\t0x21839\n0x91F5\t0x36E1\n0x91F6\t0x21774\n0x91F7\t0x218D1\n0x91F8\t0x25F4B\n0x91F9\t0x3723\n0x91FA\t0x216C0\n0x91FB\t0x575B\n0x91FC\t0x24A25\n0x91FD\t0x213FE\n0x91FE\t0x212A8\n0x9240\t0x213C6\n0x9241\t0x214B6\n0x9242\t0x8503\n0x9243\t0x236A6\n0x9245\t0x8455\n0x9246\t0x24994\n0x9247\t0x27165\n0x9248\t0x23E31\n0x9249\t0x2555C\n0x924A\t0x23EFB\n0x924B\t0x27052\n0x924C\t0x44F4\n0x924D\t0x236EE\n0x924E\t0x2999D\n0x924F\t0x26F26\n0x9250\t0x67F9\n0x9251\t0x3733\n0x9252\t0x3C15\n0x9253\t0x3DE7\n0x9254\t0x586C\n0x9255\t0x21922\n0x9256\t0x6810\n0x9257\t0x4057\n0x9258\t0x2373F\n0x9259\t0x240E1\n0x925A\t0x2408B\n0x925B\t0x2410F\n0x925C\t0x26C21\n0x925D\t0x54CB\n0x925E\t0x569E\n0x925F\t0x266B1\n0x9260\t0x5692\n0x9261\t0x20FDF\n0x9262\t0x20BA8\n0x9263\t0x20E0D\n0x9264\t0x93C6\n0x9265\t0x28B13\n0x9266\t0x939C\n0x9267\t0x4EF8\n0x9268\t0x512B\n0x9269\t0x3819\n0x926A\t0x24436\n0x926B\t0x4EBC\n0x926C\t0x20465\n0x926D\t0x2037F\n0x926E\t0x4F4B\n0x926F\t0x4F8A\n0x9270\t0x25651\n0x9271\t0x5A68\n0x9272\t0x201AB\n0x9273\t0x203CB\n0x9274\t0x3999\n0x9275\t0x2030A\n0x9276\t0x20414\n0x9277\t0x3435\n0x9278\t0x4F29\n0x9279\t0x202C0\n0x927A\t0x28EB3\n0x927B\t0x20275\n0x927C\t0x8ADA\n0x927D\t0x2020C\n0x927E\t0x4E98\n0x92A1\t0x50CD\n0x92A2\t0x510D\n0x92A3\t0x4FA2\n0x92A4\t0x4F03\n0x92A5\t0x24A0E\n0x92A6\t0x23E8A\n0x92A7\t0x4F42\n0x92A8\t0x502E\n0x92A9\t0x506C\n0x92AA\t0x5081\n0x92AB\t0x4FCC\n0x92AC\t0x4FE5\n0x92AD\t0x5058\n0x92AE\t0x50FC\n0x92B3\t0x6E76\n0x92B4\t0x23595\n0x92B5\t0x23E39\n0x92B6\t0x23EBF\n0x92B7\t0x6D72\n0x92B8\t0x21884\n0x92B9\t0x23E89\n0x92BA\t0x51A8\n0x92BB\t0x51C3\n0x92BC\t0x205E0\n0x92BD\t0x44DD\n0x92BE\t0x204A3\n0x92BF\t0x20492\n0x92C0\t0x20491\n0x92C1\t0x8D7A\n0x92C2\t0x28A9C\n0x92C3\t0x2070E\n0x92C4\t0x5259\n0x92C5\t0x52A4\n0x92C6\t0x20873\n0x92C7\t0x52E1\n0x92C9\t0x467A\n0x92CA\t0x718C\n0x92CB\t0x2438C\n0x92CC\t0x20C20\n0x92CD\t0x249AC\n0x92CE\t0x210E4\n0x92CF\t0x69D1\n0x92D0\t0x20E1D\n0x92D2\t0x3EDE\n0x92D3\t0x7499\n0x92D4\t0x7414\n0x92D5\t0x7456\n0x92D6\t0x7398\n0x92D7\t0x4B8E\n0x92D8\t0x24ABC\n0x92D9\t0x2408D\n0x92DA\t0x53D0\n0x92DB\t0x3584\n0x92DC\t0x720F\n0x92DD\t0x240C9\n0x92DE\t0x55B4\n0x92DF\t0x20345\n0x92E0\t0x54CD\n0x92E1\t0x20BC6\n0x92E2\t0x571D\n0x92E3\t0x925D\n0x92E4\t0x96F4\n0x92E5\t0x9366\n0x92E6\t0x57DD\n0x92E7\t0x578D\n0x92E8\t0x577F\n0x92E9\t0x363E\n0x92EA\t0x58CB\n0x92EB\t0x5A99\n0x92EC\t0x28A46\n0x92ED\t0x216FA\n0x92EE\t0x2176F\n0x92EF\t0x21710\n0x92F0\t0x5A2C\n0x92F1\t0x59B8\n0x92F2\t0x928F\n0x92F3\t0x5A7E\n0x92F4\t0x5ACF\n0x92F5\t0x5A12\n0x92F6\t0x25946\n0x92F7\t0x219F3\n0x92F8\t0x21861\n0x92F9\t0x24295\n0x92FA\t0x36F5\n0x92FB\t0x6D05\n0x92FC\t0x7443\n0x92FD\t0x5A21\n0x92FE\t0x25E83\n0x9340\t0x5A81\n0x9341\t0x28BD7\n0x9342\t0x20413\n0x9343\t0x93E0\n0x9344\t0x748C\n0x9345\t0x21303\n0x9346\t0x7105\n0x9347\t0x4972\n0x9348\t0x9408\n0x9349\t0x289FB\n0x934A\t0x93BD\n0x934B\t0x37A0\n0x934C\t0x5C1E\n0x934D\t0x5C9E\n0x934E\t0x5E5E\n0x934F\t0x5E48\n0x9350\t0x21996\n0x9351\t0x2197C\n0x9352\t0x23AEE\n0x9353\t0x5ECD\n0x9354\t0x5B4F\n0x9355\t0x21903\n0x9356\t0x21904\n0x9357\t0x3701\n0x9358\t0x218A0\n0x9359\t0x36DD\n0x935A\t0x216FE\n0x935B\t0x36D3\n0x935C\t0x812A\n0x935D\t0x28A47\n0x935E\t0x21DBA\n0x935F\t0x23472\n0x9360\t0x289A8\n0x9361\t0x5F0C\n0x9362\t0x5F0E\n0x9363\t0x21927\n0x9364\t0x217AB\n0x9365\t0x5A6B\n0x9366\t0x2173B\n0x9367\t0x5B44\n0x9368\t0x8614\n0x9369\t0x275FD\n0x936A\t0x8860\n0x936B\t0x607E\n0x936C\t0x22860\n0x936D\t0x2262B\n0x936E\t0x5FDB\n0x936F\t0x3EB8\n0x9370\t0x225AF\n0x9371\t0x225BE\n0x9372\t0x29088\n0x9373\t0x26F73\n0x9374\t0x61C0\n0x9375\t0x2003E\n0x9376\t0x20046\n0x9377\t0x2261B\n0x9378\t0x6199\n0x9379\t0x6198\n0x937A\t0x6075\n0x937B\t0x22C9B\n0x937C\t0x22D07\n0x937D\t0x246D4\n0x937E\t0x2914D\n0x93A1\t0x6471\n0x93A2\t0x24665\n0x93A3\t0x22B6A\n0x93A4\t0x3A29\n0x93A5\t0x22B22\n0x93A6\t0x23450\n0x93A7\t0x298EA\n0x93A8\t0x22E78\n0x93A9\t0x6337\n0x93AA\t0x2A45B\n0x93AB\t0x64B6\n0x93AC\t0x6331\n0x93AD\t0x63D1\n0x93AE\t0x249E3\n0x93AF\t0x22D67\n0x93B0\t0x62A4\n0x93B1\t0x22CA1\n0x93B2\t0x643B\n0x93B3\t0x656B\n0x93B4\t0x6972\n0x93B5\t0x3BF4\n0x93B6\t0x2308E\n0x93B7\t0x232AD\n0x93B8\t0x24989\n0x93B9\t0x232AB\n0x93BA\t0x550D\n0x93BB\t0x232E0\n0x93BC\t0x218D9\n0x93BD\t0x2943F\n0x93BE\t0x66CE\n0x93BF\t0x23289\n0x93C0\t0x231B3\n0x93C1\t0x3AE0\n0x93C2\t0x4190\n0x93C3\t0x25584\n0x93C4\t0x28B22\n0x93C5\t0x2558F\n0x93C6\t0x216FC\n0x93C7\t0x2555B\n0x93C8\t0x25425\n0x93C9\t0x78EE\n0x93CA\t0x23103\n0x93CB\t0x2182A\n0x93CC\t0x23234\n0x93CD\t0x3464\n0x93CE\t0x2320F\n0x93CF\t0x23182\n0x93D0\t0x242C9\n0x93D1\t0x668E\n0x93D2\t0x26D24\n0x93D3\t0x666B\n0x93D4\t0x4B93\n0x93D5\t0x6630\n0x93D6\t0x27870\n0x93D7\t0x21DEB\n0x93D8\t0x6663\n0x93D9\t0x232D2\n0x93DA\t0x232E1\n0x93DB\t0x661E\n0x93DC\t0x25872\n0x93DD\t0x38D1\n0x93DE\t0x2383A\n0x93DF\t0x237BC\n0x93E0\t0x3B99\n0x93E1\t0x237A2\n0x93E2\t0x233FE\n0x93E3\t0x74D0\n0x93E4\t0x3B96\n0x93E5\t0x678F\n0x93E6\t0x2462A\n0x93E7\t0x68B6\n0x93E8\t0x681E\n0x93E9\t0x3BC4\n0x93EA\t0x6ABE\n0x93EB\t0x3863\n0x93EC\t0x237D5\n0x93ED\t0x24487\n0x93EE\t0x6A33\n0x93EF\t0x6A52\n0x93F0\t0x6AC9\n0x93F1\t0x6B05\n0x93F2\t0x21912\n0x93F3\t0x6511\n0x93F4\t0x6898\n0x93F5\t0x6A4C\n0x93F6\t0x3BD7\n0x93F7\t0x6A7A\n0x93F8\t0x6B57\n0x93F9\t0x23FC0\n0x93FA\t0x23C9A\n0x93FB\t0x93A0\n0x93FC\t0x92F2\n0x93FD\t0x28BEA\n0x93FE\t0x28ACB\n0x9440\t0x9289\n0x9441\t0x2801E\n0x9442\t0x289DC\n0x9443\t0x9467\n0x9444\t0x6DA5\n0x9445\t0x6F0B\n0x9446\t0x249EC\n0x9448\t0x23F7F\n0x9449\t0x3D8F\n0x944A\t0x6E04\n0x944B\t0x2403C\n0x944C\t0x5A3D\n0x944D\t0x6E0A\n0x944E\t0x5847\n0x944F\t0x6D24\n0x9450\t0x7842\n0x9451\t0x713B\n0x9452\t0x2431A\n0x9453\t0x24276\n0x9454\t0x70F1\n0x9455\t0x7250\n0x9456\t0x7287\n0x9457\t0x7294\n0x9458\t0x2478F\n0x9459\t0x24725\n0x945A\t0x5179\n0x945B\t0x24AA4\n0x945C\t0x205EB\n0x945D\t0x747A\n0x945E\t0x23EF8\n0x945F\t0x2365F\n0x9460\t0x24A4A\n0x9461\t0x24917\n0x9462\t0x25FE1\n0x9463\t0x3F06\n0x9464\t0x3EB1\n0x9465\t0x24ADF\n0x9466\t0x28C23\n0x9467\t0x23F35\n0x9468\t0x60A7\n0x9469\t0x3EF3\n0x946A\t0x74CC\n0x946B\t0x743C\n0x946C\t0x9387\n0x946D\t0x7437\n0x946E\t0x449F\n0x946F\t0x26DEA\n0x9470\t0x4551\n0x9471\t0x7583\n0x9472\t0x3F63\n0x9473\t0x24CD9\n0x9474\t0x24D06\n0x9475\t0x3F58\n0x9476\t0x7555\n0x9477\t0x7673\n0x9478\t0x2A5C6\n0x9479\t0x3B19\n0x947A\t0x7468\n0x947B\t0x28ACC\n0x947C\t0x249AB\n0x947D\t0x2498E\n0x947E\t0x3AFB\n0x94A1\t0x3DCD\n0x94A2\t0x24A4E\n0x94A3\t0x3EFF\n0x94A4\t0x249C5\n0x94A5\t0x248F3\n0x94A6\t0x91FA\n0x94A7\t0x5732\n0x94A8\t0x9342\n0x94A9\t0x28AE3\n0x94AA\t0x21864\n0x94AB\t0x50DF\n0x94AC\t0x25221\n0x94AD\t0x251E7\n0x94AE\t0x7778\n0x94AF\t0x23232\n0x94B0\t0x770E\n0x94B1\t0x770F\n0x94B2\t0x777B\n0x94B3\t0x24697\n0x94B4\t0x23781\n0x94B5\t0x3A5E\n0x94B6\t0x248F0\n0x94B7\t0x7438\n0x94B8\t0x749B\n0x94B9\t0x3EBF\n0x94BA\t0x24ABA\n0x94BB\t0x24AC7\n0x94BC\t0x40C8\n0x94BD\t0x24A96\n0x94BE\t0x261AE\n0x94BF\t0x9307\n0x94C0\t0x25581\n0x94C1\t0x781E\n0x94C2\t0x788D\n0x94C3\t0x7888\n0x94C4\t0x78D2\n0x94C5\t0x73D0\n0x94C6\t0x7959\n0x94C7\t0x27741\n0x94C8\t0x256E3\n0x94C9\t0x410E\n0x94CB\t0x8496\n0x94CC\t0x79A5\n0x94CD\t0x6A2D\n0x94CE\t0x23EFA\n0x94CF\t0x7A3A\n0x94D0\t0x79F4\n0x94D1\t0x416E\n0x94D2\t0x216E6\n0x94D3\t0x4132\n0x94D4\t0x9235\n0x94D5\t0x79F1\n0x94D6\t0x20D4C\n0x94D7\t0x2498C\n0x94D8\t0x20299\n0x94D9\t0x23DBA\n0x94DA\t0x2176E\n0x94DB\t0x3597\n0x94DC\t0x556B\n0x94DD\t0x3570\n0x94DE\t0x36AA\n0x94DF\t0x201D4\n0x94E0\t0x20C0D\n0x94E1\t0x7AE2\n0x94E2\t0x5A59\n0x94E3\t0x226F5\n0x94E4\t0x25AAF\n0x94E5\t0x25A9C\n0x94E6\t0x5A0D\n0x94E7\t0x2025B\n0x94E8\t0x78F0\n0x94E9\t0x5A2A\n0x94EA\t0x25BC6\n0x94EB\t0x7AFE\n0x94EC\t0x41F9\n0x94ED\t0x7C5D\n0x94EE\t0x7C6D\n0x94EF\t0x4211\n0x94F0\t0x25BB3\n0x94F1\t0x25EBC\n0x94F2\t0x25EA6\n0x94F3\t0x7CCD\n0x94F4\t0x249F9\n0x94F5\t0x217B0\n0x94F6\t0x7C8E\n0x94F7\t0x7C7C\n0x94F8\t0x7CAE\n0x94F9\t0x6AB2\n0x94FA\t0x7DDC\n0x94FB\t0x7E07\n0x94FC\t0x7DD3\n0x94FD\t0x7F4E\n0x94FE\t0x26261\n0x9540\t0x2615C\n0x9541\t0x27B48\n0x9542\t0x7D97\n0x9543\t0x25E82\n0x9544\t0x426A\n0x9545\t0x26B75\n0x9546\t0x20916\n0x9547\t0x67D6\n0x9548\t0x2004E\n0x9549\t0x235CF\n0x954A\t0x57C4\n0x954B\t0x26412\n0x954C\t0x263F8\n0x954D\t0x24962\n0x954E\t0x7FDD\n0x954F\t0x7B27\n0x9550\t0x2082C\n0x9551\t0x25AE9\n0x9552\t0x25D43\n0x9553\t0x7B0C\n0x9554\t0x25E0E\n0x9555\t0x99E6\n0x9556\t0x8645\n0x9557\t0x9A63\n0x9558\t0x6A1C\n0x9559\t0x2343F\n0x955A\t0x39E2\n0x955B\t0x249F7\n0x955C\t0x265AD\n0x955D\t0x9A1F\n0x955E\t0x265A0\n0x955F\t0x8480\n0x9560\t0x27127\n0x9561\t0x26CD1\n0x9562\t0x44EA\n0x9563\t0x8137\n0x9564\t0x4402\n0x9565\t0x80C6\n0x9566\t0x8109\n0x9567\t0x8142\n0x9568\t0x267B4\n0x9569\t0x98C3\n0x956A\t0x26A42\n0x956B\t0x8262\n0x956C\t0x8265\n0x956D\t0x26A51\n0x956E\t0x8453\n0x956F\t0x26DA7\n0x9570\t0x8610\n0x9571\t0x2721B\n0x9572\t0x5A86\n0x9573\t0x417F\n0x9574\t0x21840\n0x9575\t0x5B2B\n0x9576\t0x218A1\n0x9577\t0x5AE4\n0x9578\t0x218D8\n0x9579\t0x86A0\n0x957A\t0x2F9BC\n0x957B\t0x23D8F\n0x957C\t0x882D\n0x957D\t0x27422\n0x957E\t0x5A02\n0x95A1\t0x886E\n0x95A2\t0x4F45\n0x95A3\t0x8887\n0x95A4\t0x88BF\n0x95A5\t0x88E6\n0x95A6\t0x8965\n0x95A7\t0x894D\n0x95A8\t0x25683\n0x95A9\t0x8954\n0x95AA\t0x27785\n0x95AB\t0x27784\n0x95AC\t0x28BF5\n0x95AD\t0x28BD9\n0x95AE\t0x28B9C\n0x95AF\t0x289F9\n0x95B0\t0x3EAD\n0x95B1\t0x84A3\n0x95B2\t0x46F5\n0x95B3\t0x46CF\n0x95B4\t0x37F2\n0x95B5\t0x8A3D\n0x95B6\t0x8A1C\n0x95B7\t0x29448\n0x95B8\t0x5F4D\n0x95B9\t0x922B\n0x95BA\t0x24284\n0x95BB\t0x65D4\n0x95BC\t0x7129\n0x95BD\t0x70C4\n0x95BE\t0x21845\n0x95BF\t0x9D6D\n0x95C0\t0x8C9F\n0x95C1\t0x8CE9\n0x95C2\t0x27DDC\n0x95C3\t0x599A\n0x95C4\t0x77C3\n0x95C5\t0x59F0\n0x95C6\t0x436E\n0x95C7\t0x36D4\n0x95C8\t0x8E2A\n0x95C9\t0x8EA7\n0x95CA\t0x24C09\n0x95CB\t0x8F30\n0x95CC\t0x8F4A\n0x95CD\t0x42F4\n0x95CE\t0x6C58\n0x95CF\t0x6FBB\n0x95D0\t0x22321\n0x95D1\t0x489B\n0x95D2\t0x6F79\n0x95D3\t0x6E8B\n0x95D4\t0x217DA\n0x95D5\t0x9BE9\n0x95D6\t0x36B5\n0x95D7\t0x2492F\n0x95D8\t0x90BB\n0x95DA\t0x5571\n0x95DB\t0x4906\n0x95DC\t0x91BB\n0x95DD\t0x9404\n0x95DE\t0x28A4B\n0x95DF\t0x4062\n0x95E0\t0x28AFC\n0x95E1\t0x9427\n0x95E2\t0x28C1D\n0x95E3\t0x28C3B\n0x95E4\t0x84E5\n0x95E5\t0x8A2B\n0x95E6\t0x9599\n0x95E7\t0x95A7\n0x95E8\t0x9597\n0x95E9\t0x9596\n0x95EA\t0x28D34\n0x95EB\t0x7445\n0x95EC\t0x3EC2\n0x95ED\t0x248FF\n0x95EE\t0x24A42\n0x95EF\t0x243EA\n0x95F0\t0x3EE7\n0x95F1\t0x23225\n0x95F2\t0x968F\n0x95F3\t0x28EE7\n0x95F4\t0x28E66\n0x95F5\t0x28E65\n0x95F6\t0x3ECC\n0x95F7\t0x249ED\n0x95F8\t0x24A78\n0x95F9\t0x23FEE\n0x95FA\t0x7412\n0x95FB\t0x746B\n0x95FC\t0x3EFC\n0x95FD\t0x9741\n0x95FE\t0x290B0\n0x9640\t0x6847\n0x9641\t0x4A1D\n0x9642\t0x29093\n0x9643\t0x257DF\n0x9645\t0x9368\n0x9646\t0x28989\n0x9647\t0x28C26\n0x9648\t0x28B2F\n0x9649\t0x263BE\n0x964A\t0x92BA\n0x964B\t0x5B11\n0x964C\t0x8B69\n0x964D\t0x493C\n0x964E\t0x73F9\n0x964F\t0x2421B\n0x9650\t0x979B\n0x9651\t0x9771\n0x9652\t0x9938\n0x9653\t0x20F26\n0x9654\t0x5DC1\n0x9655\t0x28BC5\n0x9656\t0x24AB2\n0x9657\t0x981F\n0x9658\t0x294DA\n0x9659\t0x92F6\n0x965A\t0x295D7\n0x965B\t0x91E5\n0x965C\t0x44C0\n0x965D\t0x28B50\n0x965E\t0x24A67\n0x965F\t0x28B64\n0x9660\t0x98DC\n0x9661\t0x28A45\n0x9662\t0x3F00\n0x9663\t0x922A\n0x9664\t0x4925\n0x9665\t0x8414\n0x9666\t0x993B\n0x9667\t0x994D\n0x9668\t0x27B06\n0x9669\t0x3DFD\n0x966A\t0x999B\n0x966B\t0x4B6F\n0x966C\t0x99AA\n0x966D\t0x9A5C\n0x966E\t0x28B65\n0x966F\t0x258C8\n0x9670\t0x6A8F\n0x9671\t0x9A21\n0x9672\t0x5AFE\n0x9673\t0x9A2F\n0x9674\t0x298F1\n0x9675\t0x4B90\n0x9676\t0x29948\n0x9677\t0x99BC\n0x9678\t0x4BBD\n0x9679\t0x4B97\n0x967A\t0x937D\n0x967B\t0x5872\n0x967C\t0x21302\n0x967D\t0x5822\n0x967E\t0x249B8\n0x96A1\t0x214E8\n0x96A2\t0x7844\n0x96A3\t0x2271F\n0x96A4\t0x23DB8\n0x96A5\t0x68C5\n0x96A6\t0x3D7D\n0x96A7\t0x9458\n0x96A8\t0x3927\n0x96A9\t0x6150\n0x96AA\t0x22781\n0x96AB\t0x2296B\n0x96AC\t0x6107\n0x96AD\t0x9C4F\n0x96AE\t0x9C53\n0x96AF\t0x9C7B\n0x96B0\t0x9C35\n0x96B1\t0x9C10\n0x96B2\t0x9B7F\n0x96B3\t0x9BCF\n0x96B4\t0x29E2D\n0x96B5\t0x9B9F\n0x96B6\t0x2A1F5\n0x96B7\t0x2A0FE\n0x96B8\t0x9D21\n0x96B9\t0x4CAE\n0x96BA\t0x24104\n0x96BB\t0x9E18\n0x96BC\t0x4CB0\n0x96BD\t0x9D0C\n0x96BE\t0x2A1B4\n0x96BF\t0x2A0ED\n0x96C0\t0x2A0F3\n0x96C1\t0x2992F\n0x96C2\t0x9DA5\n0x96C3\t0x84BD\n0x96C4\t0x26E12\n0x96C5\t0x26FDF\n0x96C6\t0x26B82\n0x96C7\t0x85FC\n0x96C8\t0x4533\n0x96C9\t0x26DA4\n0x96CA\t0x26E84\n0x96CB\t0x26DF0\n0x96CC\t0x8420\n0x96CD\t0x85EE\n0x96CE\t0x26E00\n0x96CF\t0x237D7\n0x96D0\t0x26064\n0x96D1\t0x79E2\n0x96D2\t0x2359C\n0x96D3\t0x23640\n0x96D4\t0x492D\n0x96D5\t0x249DE\n0x96D6\t0x3D62\n0x96D7\t0x93DB\n0x96D8\t0x92BE\n0x96D9\t0x9348\n0x96DA\t0x202BF\n0x96DB\t0x78B9\n0x96DC\t0x9277\n0x96DD\t0x944D\n0x96DE\t0x4FE4\n0x96DF\t0x3440\n0x96E0\t0x9064\n0x96E1\t0x2555D\n0x96E2\t0x783D\n0x96E3\t0x7854\n0x96E4\t0x78B6\n0x96E5\t0x784B\n0x96E6\t0x21757\n0x96E7\t0x231C9\n0x96E8\t0x24941\n0x96E9\t0x369A\n0x96EA\t0x4F72\n0x96EB\t0x6FDA\n0x96EC\t0x6FD9\n0x96EE\t0x701E\n0x96EF\t0x5414\n0x96F0\t0x241B5\n0x96F1\t0x57BB\n0x96F2\t0x58F3\n0x96F3\t0x578A\n0x96F4\t0x9D16\n0x96F5\t0x57D7\n0x96F6\t0x7134\n0x96F7\t0x34AF\n0x96F8\t0x241AC\n0x96F9\t0x71EB\n0x96FA\t0x26C40\n0x96FB\t0x24F97\n0x96FD\t0x217B5\n0x96FE\t0x28A49\n0x9740\t0x610C\n0x9741\t0x5ACE\n0x9742\t0x5A0B\n0x9743\t0x42BC\n0x9744\t0x24488\n0x9745\t0x372C\n0x9746\t0x4B7B\n0x9747\t0x289FC\n0x9748\t0x93BB\n0x9749\t0x93B8\n0x974A\t0x218D6\n0x974B\t0x20F1D\n0x974C\t0x8472\n0x974D\t0x26CC0\n0x974E\t0x21413\n0x974F\t0x242FA\n0x9750\t0x22C26\n0x9751\t0x243C1\n0x9752\t0x5994\n0x9753\t0x23DB7\n0x9754\t0x26741\n0x9755\t0x7DA8\n0x9756\t0x2615B\n0x9757\t0x260A4\n0x9758\t0x249B9\n0x9759\t0x2498B\n0x975A\t0x289FA\n0x975B\t0x92E5\n0x975C\t0x73E2\n0x975D\t0x3EE9\n0x975E\t0x74B4\n0x975F\t0x28B63\n0x9760\t0x2189F\n0x9761\t0x3EE1\n0x9762\t0x24AB3\n0x9763\t0x6AD8\n0x9764\t0x73F3\n0x9765\t0x73FB\n0x9766\t0x3ED6\n0x9767\t0x24A3E\n0x9768\t0x24A94\n0x9769\t0x217D9\n0x976A\t0x24A66\n0x976B\t0x203A7\n0x976C\t0x21424\n0x976D\t0x249E5\n0x976E\t0x7448\n0x976F\t0x24916\n0x9770\t0x70A5\n0x9771\t0x24976\n0x9772\t0x9284\n0x9773\t0x73E6\n0x9774\t0x935F\n0x9775\t0x204FE\n0x9776\t0x9331\n0x9777\t0x28ACE\n0x9778\t0x28A16\n0x9779\t0x9386\n0x977A\t0x28BE7\n0x977B\t0x255D5\n0x977C\t0x4935\n0x977D\t0x28A82\n0x977E\t0x716B\n0x97A1\t0x24943\n0x97A2\t0x20CFF\n0x97A3\t0x56A4\n0x97A4\t0x2061A\n0x97A5\t0x20BEB\n0x97A6\t0x20CB8\n0x97A7\t0x5502\n0x97A8\t0x79C4\n0x97A9\t0x217FA\n0x97AA\t0x7DFE\n0x97AB\t0x216C2\n0x97AC\t0x24A50\n0x97AD\t0x21852\n0x97AE\t0x452E\n0x97AF\t0x9401\n0x97B0\t0x370A\n0x97B1\t0x28AC0\n0x97B2\t0x249AD\n0x97B3\t0x59B0\n0x97B4\t0x218BF\n0x97B5\t0x21883\n0x97B6\t0x27484\n0x97B7\t0x5AA1\n0x97B8\t0x36E2\n0x97B9\t0x23D5B\n0x97BA\t0x36B0\n0x97BB\t0x925F\n0x97BC\t0x5A79\n0x97BD\t0x28A81\n0x97BE\t0x21862\n0x97BF\t0x9374\n0x97C0\t0x3CCD\n0x97C1\t0x20AB4\n0x97C2\t0x4A96\n0x97C3\t0x398A\n0x97C4\t0x50F4\n0x97C5\t0x3D69\n0x97C6\t0x3D4C\n0x97C7\t0x2139C\n0x97C8\t0x7175\n0x97C9\t0x42FB\n0x97CA\t0x28218\n0x97CB\t0x6E0F\n0x97CC\t0x290E4\n0x97CD\t0x44EB\n0x97CE\t0x6D57\n0x97CF\t0x27E4F\n0x97D0\t0x7067\n0x97D1\t0x6CAF\n0x97D2\t0x3CD6\n0x97D3\t0x23FED\n0x97D4\t0x23E2D\n0x97D5\t0x6E02\n0x97D6\t0x6F0C\n0x97D7\t0x3D6F\n0x97D8\t0x203F5\n0x97D9\t0x7551\n0x97DA\t0x36BC\n0x97DB\t0x34C8\n0x97DC\t0x4680\n0x97DD\t0x3EDA\n0x97DE\t0x4871\n0x97DF\t0x59C4\n0x97E0\t0x926E\n0x97E1\t0x493E\n0x97E2\t0x8F41\n0x97E3\t0x28C1C\n0x97E4\t0x26BC0\n0x97E5\t0x5812\n0x97E6\t0x57C8\n0x97E7\t0x36D6\n0x97E8\t0x21452\n0x97E9\t0x70FE\n0x97EA\t0x24362\n0x97EB\t0x24A71\n0x97EC\t0x22FE3\n0x97ED\t0x212B0\n0x97EE\t0x223BD\n0x97EF\t0x68B9\n0x97F0\t0x6967\n0x97F1\t0x21398\n0x97F2\t0x234E5\n0x97F3\t0x27BF4\n0x97F4\t0x236DF\n0x97F5\t0x28A83\n0x97F6\t0x237D6\n0x97F7\t0x233FA\n0x97F8\t0x24C9F\n0x97F9\t0x6A1A\n0x97FA\t0x236AD\n0x97FB\t0x26CB7\n0x97FC\t0x843E\n0x97FD\t0x44DF\n0x97FE\t0x44CE\n0x9840\t0x26D26\n0x9841\t0x26D51\n0x9842\t0x26C82\n0x9843\t0x26FDE\n0x9844\t0x6F17\n0x9845\t0x27109\n0x9846\t0x833D\n0x9847\t0x2173A\n0x9848\t0x83ED\n0x9849\t0x26C80\n0x984A\t0x27053\n0x984B\t0x217DB\n0x984C\t0x5989\n0x984D\t0x5A82\n0x984E\t0x217B3\n0x984F\t0x5A61\n0x9850\t0x5A71\n0x9851\t0x21905\n0x9852\t0x241FC\n0x9853\t0x372D\n0x9854\t0x59EF\n0x9855\t0x2173C\n0x9856\t0x36C7\n0x9857\t0x718E\n0x9858\t0x9390\n0x9859\t0x669A\n0x985A\t0x242A5\n0x985B\t0x5A6E\n0x985C\t0x5A2B\n0x985D\t0x24293\n0x985E\t0x6A2B\n0x985F\t0x23EF9\n0x9860\t0x27736\n0x9861\t0x2445B\n0x9862\t0x242CA\n0x9863\t0x711D\n0x9864\t0x24259\n0x9865\t0x289E1\n0x9866\t0x4FB0\n0x9867\t0x26D28\n0x9868\t0x5CC2\n0x9869\t0x244CE\n0x986A\t0x27E4D\n0x986B\t0x243BD\n0x986C\t0x6A0C\n0x986D\t0x24256\n0x986E\t0x21304\n0x986F\t0x70A6\n0x9870\t0x7133\n0x9871\t0x243E9\n0x9872\t0x3DA5\n0x9873\t0x6CDF\n0x9874\t0x2F825\n0x9875\t0x24A4F\n0x9876\t0x7E65\n0x9877\t0x59EB\n0x9878\t0x5D2F\n0x9879\t0x3DF3\n0x987A\t0x5F5C\n0x987B\t0x24A5D\n0x987C\t0x217DF\n0x987D\t0x7DA4\n0x987E\t0x8426\n0x98A1\t0x5485\n0x98A2\t0x23AFA\n0x98A3\t0x23300\n0x98A4\t0x20214\n0x98A5\t0x577E\n0x98A6\t0x208D5\n0x98A7\t0x20619\n0x98A8\t0x3FE5\n0x98A9\t0x21F9E\n0x98AA\t0x2A2B6\n0x98AB\t0x7003\n0x98AC\t0x2915B\n0x98AD\t0x5D70\n0x98AE\t0x738F\n0x98AF\t0x7CD3\n0x98B0\t0x28A59\n0x98B1\t0x29420\n0x98B2\t0x4FC8\n0x98B3\t0x7FE7\n0x98B4\t0x72CD\n0x98B5\t0x7310\n0x98B6\t0x27AF4\n0x98B7\t0x7338\n0x98B8\t0x7339\n0x98B9\t0x256F6\n0x98BA\t0x7341\n0x98BB\t0x7348\n0x98BC\t0x3EA9\n0x98BD\t0x27B18\n0x98BE\t0x906C\n0x98BF\t0x71F5\n0x98C0\t0x248F2\n0x98C1\t0x73E1\n0x98C2\t0x81F6\n0x98C3\t0x3ECA\n0x98C4\t0x770C\n0x98C5\t0x3ED1\n0x98C6\t0x6CA2\n0x98C7\t0x56FD\n0x98C8\t0x7419\n0x98C9\t0x741E\n0x98CA\t0x741F\n0x98CB\t0x3EE2\n0x98CC\t0x3EF0\n0x98CD\t0x3EF4\n0x98CE\t0x3EFA\n0x98CF\t0x74D3\n0x98D0\t0x3F0E\n0x98D1\t0x3F53\n0x98D2\t0x7542\n0x98D3\t0x756D\n0x98D4\t0x7572\n0x98D5\t0x758D\n0x98D6\t0x3F7C\n0x98D7\t0x75C8\n0x98D8\t0x75DC\n0x98D9\t0x3FC0\n0x98DA\t0x764D\n0x98DB\t0x3FD7\n0x98DC\t0x7674\n0x98DD\t0x3FDC\n0x98DE\t0x767A\n0x98DF\t0x24F5C\n0x98E0\t0x7188\n0x98E1\t0x5623\n0x98E2\t0x8980\n0x98E3\t0x5869\n0x98E4\t0x401D\n0x98E5\t0x7743\n0x98E6\t0x4039\n0x98E7\t0x6761\n0x98E8\t0x4045\n0x98E9\t0x35DB\n0x98EA\t0x7798\n0x98EB\t0x406A\n0x98EC\t0x406F\n0x98ED\t0x5C5E\n0x98EE\t0x77BE\n0x98EF\t0x77CB\n0x98F0\t0x58F2\n0x98F1\t0x7818\n0x98F2\t0x70B9\n0x98F3\t0x781C\n0x98F4\t0x40A8\n0x98F5\t0x7839\n0x98F6\t0x7847\n0x98F7\t0x7851\n0x98F8\t0x7866\n0x98F9\t0x8448\n0x98FA\t0x25535\n0x98FB\t0x7933\n0x98FC\t0x6803\n0x98FD\t0x7932\n0x98FE\t0x4103\n0x9940\t0x4109\n0x9941\t0x7991\n0x9942\t0x7999\n0x9943\t0x8FBB\n0x9944\t0x7A06\n0x9945\t0x8FBC\n0x9946\t0x4167\n0x9947\t0x7A91\n0x9948\t0x41B2\n0x9949\t0x7ABC\n0x994A\t0x8279\n0x994B\t0x41C4\n0x994C\t0x7ACF\n0x994D\t0x7ADB\n0x994E\t0x41CF\n0x994F\t0x4E21\n0x9950\t0x7B62\n0x9951\t0x7B6C\n0x9952\t0x7B7B\n0x9953\t0x7C12\n0x9954\t0x7C1B\n0x9955\t0x4260\n0x9956\t0x427A\n0x9957\t0x7C7B\n0x9958\t0x7C9C\n0x9959\t0x428C\n0x995A\t0x7CB8\n0x995B\t0x4294\n0x995C\t0x7CED\n0x995D\t0x8F93\n0x995E\t0x70C0\n0x995F\t0x20CCF\n0x9960\t0x7DCF\n0x9961\t0x7DD4\n0x9962\t0x7DD0\n0x9963\t0x7DFD\n0x9964\t0x7FAE\n0x9965\t0x7FB4\n0x9966\t0x729F\n0x9967\t0x4397\n0x9968\t0x8020\n0x9969\t0x8025\n0x996A\t0x7B39\n0x996B\t0x802E\n0x996C\t0x8031\n0x996D\t0x8054\n0x996E\t0x3DCC\n0x996F\t0x57B4\n0x9970\t0x70A0\n0x9971\t0x80B7\n0x9972\t0x80E9\n0x9973\t0x43ED\n0x9974\t0x810C\n0x9975\t0x732A\n0x9976\t0x810E\n0x9977\t0x8112\n0x9978\t0x7560\n0x9979\t0x8114\n0x997A\t0x4401\n0x997B\t0x3B39\n0x997C\t0x8156\n0x997D\t0x8159\n0x997E\t0x815A\n0x99A1\t0x4413\n0x99A2\t0x583A\n0x99A3\t0x817C\n0x99A4\t0x8184\n0x99A5\t0x4425\n0x99A6\t0x8193\n0x99A7\t0x442D\n0x99A8\t0x81A5\n0x99A9\t0x57EF\n0x99AA\t0x81C1\n0x99AB\t0x81E4\n0x99AC\t0x8254\n0x99AD\t0x448F\n0x99AE\t0x82A6\n0x99AF\t0x8276\n0x99B0\t0x82CA\n0x99B1\t0x82D8\n0x99B2\t0x82FF\n0x99B3\t0x44B0\n0x99B4\t0x8357\n0x99B5\t0x9669\n0x99B6\t0x698A\n0x99B7\t0x8405\n0x99B8\t0x70F5\n0x99B9\t0x8464\n0x99BA\t0x60E3\n0x99BB\t0x8488\n0x99BC\t0x4504\n0x99BD\t0x84BE\n0x99BE\t0x84E1\n0x99BF\t0x84F8\n0x99C0\t0x8510\n0x99C1\t0x8538\n0x99C2\t0x8552\n0x99C3\t0x453B\n0x99C4\t0x856F\n0x99C5\t0x8570\n0x99C6\t0x85E0\n0x99C7\t0x4577\n0x99C8\t0x8672\n0x99C9\t0x8692\n0x99CA\t0x86B2\n0x99CB\t0x86EF\n0x99CC\t0x9645\n0x99CD\t0x878B\n0x99CE\t0x4606\n0x99CF\t0x4617\n0x99D0\t0x88AE\n0x99D1\t0x88FF\n0x99D2\t0x8924\n0x99D3\t0x8947\n0x99D4\t0x8991\n0x99D5\t0x27967\n0x99D6\t0x8A29\n0x99D7\t0x8A38\n0x99D8\t0x8A94\n0x99D9\t0x8AB4\n0x99DA\t0x8C51\n0x99DB\t0x8CD4\n0x99DC\t0x8CF2\n0x99DD\t0x8D1C\n0x99DE\t0x4798\n0x99DF\t0x585F\n0x99E0\t0x8DC3\n0x99E1\t0x47ED\n0x99E2\t0x4EEE\n0x99E3\t0x8E3A\n0x99E4\t0x55D8\n0x99E5\t0x5754\n0x99E6\t0x8E71\n0x99E7\t0x55F5\n0x99E8\t0x8EB0\n0x99E9\t0x4837\n0x99EA\t0x8ECE\n0x99EB\t0x8EE2\n0x99EC\t0x8EE4\n0x99ED\t0x8EED\n0x99EE\t0x8EF2\n0x99EF\t0x8FB7\n0x99F0\t0x8FC1\n0x99F1\t0x8FCA\n0x99F2\t0x8FCC\n0x99F3\t0x9033\n0x99F4\t0x99C4\n0x99F5\t0x48AD\n0x99F6\t0x98E0\n0x99F7\t0x9213\n0x99F8\t0x491E\n0x99F9\t0x9228\n0x99FA\t0x9258\n0x99FB\t0x926B\n0x99FC\t0x92B1\n0x99FD\t0x92AE\n0x99FE\t0x92BF\n0x9A40\t0x92E3\n0x9A41\t0x92EB\n0x9A42\t0x92F3\n0x9A43\t0x92F4\n0x9A44\t0x92FD\n0x9A45\t0x9343\n0x9A46\t0x9384\n0x9A47\t0x93AD\n0x9A48\t0x4945\n0x9A49\t0x4951\n0x9A4A\t0x9EBF\n0x9A4B\t0x9417\n0x9A4C\t0x5301\n0x9A4D\t0x941D\n0x9A4E\t0x942D\n0x9A4F\t0x943E\n0x9A50\t0x496A\n0x9A51\t0x9454\n0x9A52\t0x9479\n0x9A53\t0x952D\n0x9A54\t0x95A2\n0x9A55\t0x49A7\n0x9A56\t0x95F4\n0x9A57\t0x9633\n0x9A58\t0x49E5\n0x9A59\t0x67A0\n0x9A5A\t0x4A24\n0x9A5B\t0x9740\n0x9A5C\t0x4A35\n0x9A5D\t0x97B2\n0x9A5E\t0x97C2\n0x9A5F\t0x5654\n0x9A60\t0x4AE4\n0x9A61\t0x60E8\n0x9A62\t0x98B9\n0x9A63\t0x4B19\n0x9A64\t0x98F1\n0x9A65\t0x5844\n0x9A66\t0x990E\n0x9A67\t0x9919\n0x9A68\t0x51B4\n0x9A69\t0x991C\n0x9A6A\t0x9937\n0x9A6B\t0x9942\n0x9A6C\t0x995D\n0x9A6D\t0x9962\n0x9A6E\t0x4B70\n0x9A6F\t0x99C5\n0x9A70\t0x4B9D\n0x9A71\t0x9A3C\n0x9A72\t0x9B0F\n0x9A73\t0x7A83\n0x9A74\t0x9B69\n0x9A75\t0x9B81\n0x9A76\t0x9BDD\n0x9A77\t0x9BF1\n0x9A78\t0x9BF4\n0x9A79\t0x4C6D\n0x9A7A\t0x9C20\n0x9A7B\t0x376F\n0x9A7C\t0x21BC2\n0x9A7D\t0x9D49\n0x9A7E\t0x9C3A\n0x9AA1\t0x9EFE\n0x9AA2\t0x5650\n0x9AA3\t0x9D93\n0x9AA4\t0x9DBD\n0x9AA5\t0x9DC0\n0x9AA6\t0x9DFC\n0x9AA7\t0x94F6\n0x9AA8\t0x8FB6\n0x9AA9\t0x9E7B\n0x9AAA\t0x9EAC\n0x9AAB\t0x9EB1\n0x9AAC\t0x9EBD\n0x9AAD\t0x9EC6\n0x9AAE\t0x94DC\n0x9AAF\t0x9EE2\n0x9AB0\t0x9EF1\n0x9AB1\t0x9EF8\n0x9AB2\t0x7AC8\n0x9AB3\t0x9F44\n0x9AB4\t0x20094\n0x9AB5\t0x202B7\n0x9AB6\t0x203A0\n0x9AB7\t0x691A\n0x9AB8\t0x94C3\n0x9AB9\t0x59AC\n0x9ABA\t0x204D7\n0x9ABB\t0x5840\n0x9ABC\t0x94C1\n0x9ABD\t0x37B9\n0x9ABE\t0x205D5\n0x9ABF\t0x20615\n0x9AC0\t0x20676\n0x9AC1\t0x216BA\n0x9AC2\t0x5757\n0x9AC3\t0x7173\n0x9AC4\t0x20AC2\n0x9AC5\t0x20ACD\n0x9AC6\t0x20BBF\n0x9AC7\t0x546A\n0x9AC8\t0x2F83B\n0x9AC9\t0x20BCB\n0x9ACA\t0x549E\n0x9ACB\t0x20BFB\n0x9ACC\t0x20C3B\n0x9ACD\t0x20C53\n0x9ACE\t0x20C65\n0x9ACF\t0x20C7C\n0x9AD0\t0x60E7\n0x9AD1\t0x20C8D\n0x9AD2\t0x567A\n0x9AD3\t0x20CB5\n0x9AD4\t0x20CDD\n0x9AD5\t0x20CED\n0x9AD6\t0x20D6F\n0x9AD7\t0x20DB2\n0x9AD8\t0x20DC8\n0x9AD9\t0x6955\n0x9ADA\t0x9C2F\n0x9ADB\t0x87A5\n0x9ADC\t0x20E04\n0x9ADD\t0x20E0E\n0x9ADE\t0x20ED7\n0x9ADF\t0x20F90\n0x9AE0\t0x20F2D\n0x9AE1\t0x20E73\n0x9AE2\t0x5C20\n0x9AE3\t0x20FBC\n0x9AE4\t0x5E0B\n0x9AE5\t0x2105C\n0x9AE6\t0x2104F\n0x9AE7\t0x21076\n0x9AE8\t0x671E\n0x9AE9\t0x2107B\n0x9AEA\t0x21088\n0x9AEB\t0x21096\n0x9AEC\t0x3647\n0x9AED\t0x210BF\n0x9AEE\t0x210D3\n0x9AEF\t0x2112F\n0x9AF0\t0x2113B\n0x9AF1\t0x5364\n0x9AF2\t0x84AD\n0x9AF3\t0x212E3\n0x9AF4\t0x21375\n0x9AF5\t0x21336\n0x9AF6\t0x8B81\n0x9AF7\t0x21577\n0x9AF8\t0x21619\n0x9AF9\t0x217C3\n0x9AFA\t0x217C7\n0x9AFB\t0x4E78\n0x9AFC\t0x70BB\n0x9AFD\t0x2182D\n0x9AFE\t0x2196A\n0x9B40\t0x21A2D\n0x9B41\t0x21A45\n0x9B42\t0x21C2A\n0x9B43\t0x21C70\n0x9B44\t0x21CAC\n0x9B45\t0x21EC8\n0x9B46\t0x62C3\n0x9B47\t0x21ED5\n0x9B48\t0x21F15\n0x9B49\t0x7198\n0x9B4A\t0x6855\n0x9B4B\t0x22045\n0x9B4C\t0x69E9\n0x9B4D\t0x36C8\n0x9B4E\t0x2227C\n0x9B4F\t0x223D7\n0x9B50\t0x223FA\n0x9B51\t0x2272A\n0x9B52\t0x22871\n0x9B53\t0x2294F\n0x9B54\t0x82FD\n0x9B55\t0x22967\n0x9B56\t0x22993\n0x9B57\t0x22AD5\n0x9B58\t0x89A5\n0x9B59\t0x22AE8\n0x9B5A\t0x8FA0\n0x9B5B\t0x22B0E\n0x9B5C\t0x97B8\n0x9B5D\t0x22B3F\n0x9B5E\t0x9847\n0x9B5F\t0x9ABD\n0x9B60\t0x22C4C\n0x9B62\t0x22C88\n0x9B63\t0x22CB7\n0x9B64\t0x25BE8\n0x9B65\t0x22D08\n0x9B66\t0x22D12\n0x9B67\t0x22DB7\n0x9B68\t0x22D95\n0x9B69\t0x22E42\n0x9B6A\t0x22F74\n0x9B6B\t0x22FCC\n0x9B6C\t0x23033\n0x9B6D\t0x23066\n0x9B6E\t0x2331F\n0x9B6F\t0x233DE\n0x9B70\t0x5FB1\n0x9B71\t0x6648\n0x9B72\t0x66BF\n0x9B73\t0x27A79\n0x9B74\t0x23567\n0x9B75\t0x235F3\n0x9B77\t0x249BA\n0x9B79\t0x2361A\n0x9B7A\t0x23716\n0x9B7C\t0x20346\n0x9B7D\t0x58B5\n0x9B7E\t0x670E\n0x9BA1\t0x6918\n0x9BA2\t0x23AA7\n0x9BA3\t0x27657\n0x9BA4\t0x25FE2\n0x9BA5\t0x23E11\n0x9BA6\t0x23EB9\n0x9BA7\t0x275FE\n0x9BA8\t0x2209A\n0x9BA9\t0x48D0\n0x9BAA\t0x4AB8\n0x9BAB\t0x24119\n0x9BAC\t0x28A9A\n0x9BAD\t0x242EE\n0x9BAE\t0x2430D\n0x9BAF\t0x2403B\n0x9BB0\t0x24334\n0x9BB1\t0x24396\n0x9BB2\t0x24A45\n0x9BB3\t0x205CA\n0x9BB4\t0x51D2\n0x9BB5\t0x20611\n0x9BB6\t0x599F\n0x9BB7\t0x21EA8\n0x9BB8\t0x3BBE\n0x9BB9\t0x23CFF\n0x9BBA\t0x24404\n0x9BBB\t0x244D6\n0x9BBC\t0x5788\n0x9BBD\t0x24674\n0x9BBE\t0x399B\n0x9BBF\t0x2472F\n0x9BC0\t0x285E8\n0x9BC1\t0x299C9\n0x9BC2\t0x3762\n0x9BC3\t0x221C3\n0x9BC4\t0x8B5E\n0x9BC5\t0x28B4E\n0x9BC7\t0x24812\n0x9BC8\t0x248FB\n0x9BC9\t0x24A15\n0x9BCA\t0x7209\n0x9BCB\t0x24AC0\n0x9BCC\t0x20C78\n0x9BCD\t0x5965\n0x9BCE\t0x24EA5\n0x9BCF\t0x24F86\n0x9BD0\t0x20779\n0x9BD1\t0x8EDA\n0x9BD2\t0x2502C\n0x9BD3\t0x528F\n0x9BD4\t0x573F\n0x9BD5\t0x7171\n0x9BD6\t0x25299\n0x9BD7\t0x25419\n0x9BD8\t0x23F4A\n0x9BD9\t0x24AA7\n0x9BDA\t0x55BC\n0x9BDB\t0x25446\n0x9BDC\t0x2546E\n0x9BDD\t0x26B52\n0x9BDF\t0x3473\n0x9BE0\t0x2553F\n0x9BE1\t0x27632\n0x9BE2\t0x2555E\n0x9BE3\t0x4718\n0x9BE4\t0x25562\n0x9BE5\t0x25566\n0x9BE6\t0x257C7\n0x9BE7\t0x2493F\n0x9BE8\t0x2585D\n0x9BE9\t0x5066\n0x9BEA\t0x34FB\n0x9BEB\t0x233CC\n0x9BED\t0x25903\n0x9BEE\t0x477C\n0x9BEF\t0x28948\n0x9BF0\t0x25AAE\n0x9BF1\t0x25B89\n0x9BF2\t0x25C06\n0x9BF3\t0x21D90\n0x9BF4\t0x57A1\n0x9BF5\t0x7151\n0x9BF7\t0x26102\n0x9BF8\t0x27C12\n0x9BF9\t0x9056\n0x9BFA\t0x261B2\n0x9BFB\t0x24F9A\n0x9BFC\t0x8B62\n0x9BFD\t0x26402\n0x9BFE\t0x2644A\n0x9C40\t0x5D5B\n0x9C41\t0x26BF7\n0x9C43\t0x26484\n0x9C44\t0x2191C\n0x9C45\t0x8AEA\n0x9C46\t0x249F6\n0x9C47\t0x26488\n0x9C48\t0x23FEF\n0x9C49\t0x26512\n0x9C4A\t0x4BC0\n0x9C4B\t0x265BF\n0x9C4C\t0x266B5\n0x9C4D\t0x2271B\n0x9C4E\t0x9465\n0x9C4F\t0x257E1\n0x9C50\t0x6195\n0x9C51\t0x5A27\n0x9C52\t0x2F8CD\n0x9C54\t0x56B9\n0x9C55\t0x24521\n0x9C56\t0x266FC\n0x9C57\t0x4E6A\n0x9C58\t0x24934\n0x9C59\t0x9656\n0x9C5A\t0x6D8F\n0x9C5B\t0x26CBD\n0x9C5C\t0x3618\n0x9C5D\t0x8977\n0x9C5E\t0x26799\n0x9C5F\t0x2686E\n0x9C60\t0x26411\n0x9C61\t0x2685E\n0x9C63\t0x268C7\n0x9C64\t0x7B42\n0x9C65\t0x290C0\n0x9C66\t0x20A11\n0x9C67\t0x26926\n0x9C69\t0x26939\n0x9C6A\t0x7A45\n0x9C6C\t0x269FA\n0x9C6D\t0x9A26\n0x9C6E\t0x26A2D\n0x9C6F\t0x365F\n0x9C70\t0x26469\n0x9C71\t0x20021\n0x9C72\t0x7983\n0x9C73\t0x26A34\n0x9C74\t0x26B5B\n0x9C75\t0x5D2C\n0x9C76\t0x23519\n0x9C78\t0x26B9D\n0x9C79\t0x46D0\n0x9C7A\t0x26CA4\n0x9C7B\t0x753B\n0x9C7C\t0x8865\n0x9C7D\t0x26DAE\n0x9C7E\t0x58B6\n0x9CA1\t0x371C\n0x9CA2\t0x2258D\n0x9CA3\t0x2704B\n0x9CA4\t0x271CD\n0x9CA5\t0x3C54\n0x9CA6\t0x27280\n0x9CA7\t0x27285\n0x9CA8\t0x9281\n0x9CA9\t0x2217A\n0x9CAA\t0x2728B\n0x9CAB\t0x9330\n0x9CAC\t0x272E6\n0x9CAD\t0x249D0\n0x9CAE\t0x6C39\n0x9CAF\t0x949F\n0x9CB0\t0x27450\n0x9CB1\t0x20EF8\n0x9CB2\t0x8827\n0x9CB3\t0x88F5\n0x9CB4\t0x22926\n0x9CB5\t0x28473\n0x9CB6\t0x217B1\n0x9CB7\t0x6EB8\n0x9CB8\t0x24A2A\n0x9CB9\t0x21820\n0x9CBA\t0x39A4\n0x9CBB\t0x36B9\n0x9CBE\t0x453F\n0x9CBF\t0x66B6\n0x9CC0\t0x29CAD\n0x9CC1\t0x298A4\n0x9CC2\t0x8943\n0x9CC3\t0x277CC\n0x9CC4\t0x27858\n0x9CC5\t0x56D6\n0x9CC6\t0x40DF\n0x9CC7\t0x2160A\n0x9CC8\t0x39A1\n0x9CC9\t0x2372F\n0x9CCA\t0x280E8\n0x9CCB\t0x213C5\n0x9CCC\t0x71AD\n0x9CCD\t0x8366\n0x9CCE\t0x279DD\n0x9CCF\t0x291A8\n0x9CD1\t0x4CB7\n0x9CD2\t0x270AF\n0x9CD3\t0x289AB\n0x9CD4\t0x279FD\n0x9CD5\t0x27A0A\n0x9CD6\t0x27B0B\n0x9CD7\t0x27D66\n0x9CD8\t0x2417A\n0x9CD9\t0x7B43\n0x9CDA\t0x797E\n0x9CDB\t0x28009\n0x9CDC\t0x6FB5\n0x9CDD\t0x2A2DF\n0x9CDE\t0x6A03\n0x9CDF\t0x28318\n0x9CE0\t0x53A2\n0x9CE1\t0x26E07\n0x9CE2\t0x93BF\n0x9CE3\t0x6836\n0x9CE4\t0x975D\n0x9CE5\t0x2816F\n0x9CE6\t0x28023\n0x9CE7\t0x269B5\n0x9CE8\t0x213ED\n0x9CE9\t0x2322F\n0x9CEA\t0x28048\n0x9CEB\t0x5D85\n0x9CEC\t0x28C30\n0x9CED\t0x28083\n0x9CEE\t0x5715\n0x9CEF\t0x9823\n0x9CF0\t0x28949\n0x9CF1\t0x5DAB\n0x9CF2\t0x24988\n0x9CF3\t0x65BE\n0x9CF4\t0x69D5\n0x9CF5\t0x53D2\n0x9CF6\t0x24AA5\n0x9CF7\t0x23F81\n0x9CF8\t0x3C11\n0x9CF9\t0x6736\n0x9CFA\t0x28090\n0x9CFB\t0x280F4\n0x9CFC\t0x2812E\n0x9CFD\t0x21FA1\n0x9CFE\t0x2814F\n0x9D40\t0x28189\n0x9D41\t0x281AF\n0x9D42\t0x2821A\n0x9D43\t0x28306\n0x9D44\t0x2832F\n0x9D45\t0x2838A\n0x9D46\t0x35CA\n0x9D47\t0x28468\n0x9D48\t0x286AA\n0x9D49\t0x48FA\n0x9D4A\t0x63E6\n0x9D4B\t0x28956\n0x9D4C\t0x7808\n0x9D4D\t0x9255\n0x9D4E\t0x289B8\n0x9D4F\t0x43F2\n0x9D50\t0x289E7\n0x9D51\t0x43DF\n0x9D52\t0x289E8\n0x9D53\t0x28B46\n0x9D54\t0x28BD4\n0x9D55\t0x59F8\n0x9D56\t0x28C09\n0x9D58\t0x28FC5\n0x9D59\t0x290EC\n0x9D5B\t0x29110\n0x9D5C\t0x2913C\n0x9D5D\t0x3DF7\n0x9D5E\t0x2915E\n0x9D5F\t0x24ACA\n0x9D60\t0x8FD0\n0x9D61\t0x728F\n0x9D62\t0x568B\n0x9D63\t0x294E7\n0x9D64\t0x295E9\n0x9D65\t0x295B0\n0x9D66\t0x295B8\n0x9D67\t0x29732\n0x9D68\t0x298D1\n0x9D69\t0x29949\n0x9D6A\t0x2996A\n0x9D6B\t0x299C3\n0x9D6C\t0x29A28\n0x9D6D\t0x29B0E\n0x9D6E\t0x29D5A\n0x9D6F\t0x29D9B\n0x9D70\t0x7E9F\n0x9D71\t0x29EF8\n0x9D72\t0x29F23\n0x9D73\t0x4CA4\n0x9D74\t0x9547\n0x9D75\t0x2A293\n0x9D76\t0x71A2\n0x9D77\t0x2A2FF\n0x9D78\t0x4D91\n0x9D79\t0x9012\n0x9D7A\t0x2A5CB\n0x9D7B\t0x4D9C\n0x9D7C\t0x20C9C\n0x9D7D\t0x8FBE\n0x9D7E\t0x55C1\n0x9DA1\t0x8FBA\n0x9DA2\t0x224B0\n0x9DA3\t0x8FB9\n0x9DA4\t0x24A93\n0x9DA5\t0x4509\n0x9DA6\t0x7E7F\n0x9DA7\t0x6F56\n0x9DA8\t0x6AB1\n0x9DA9\t0x4EEA\n0x9DAA\t0x34E4\n0x9DAB\t0x28B2C\n0x9DAC\t0x2789D\n0x9DAD\t0x373A\n0x9DAE\t0x8E80\n0x9DAF\t0x217F5\n0x9DB0\t0x28024\n0x9DB1\t0x28B6C\n0x9DB2\t0x28B99\n0x9DB3\t0x27A3E\n0x9DB4\t0x266AF\n0x9DB5\t0x3DEB\n0x9DB6\t0x27655\n0x9DB7\t0x23CB7\n0x9DB8\t0x25635\n0x9DB9\t0x25956\n0x9DBA\t0x4E9A\n0x9DBB\t0x25E81\n0x9DBC\t0x26258\n0x9DBD\t0x56BF\n0x9DBE\t0x20E6D\n0x9DBF\t0x8E0E\n0x9DC0\t0x5B6D\n0x9DC1\t0x23E88\n0x9DC2\t0x24C9E\n0x9DC3\t0x63DE\n0x9DC5\t0x217F6\n0x9DC6\t0x2187B\n0x9DC7\t0x6530\n0x9DC8\t0x562D\n0x9DC9\t0x25C4A\n0x9DCA\t0x541A\n0x9DCB\t0x25311\n0x9DCC\t0x3DC6\n0x9DCD\t0x29D98\n0x9DCE\t0x4C7D\n0x9DCF\t0x5622\n0x9DD0\t0x561E\n0x9DD1\t0x7F49\n0x9DD2\t0x25ED8\n0x9DD3\t0x5975\n0x9DD4\t0x23D40\n0x9DD5\t0x8770\n0x9DD6\t0x4E1C\n0x9DD7\t0x20FEA\n0x9DD8\t0x20D49\n0x9DD9\t0x236BA\n0x9DDA\t0x8117\n0x9DDB\t0x9D5E\n0x9DDC\t0x8D18\n0x9DDD\t0x763B\n0x9DDE\t0x9C45\n0x9DDF\t0x764E\n0x9DE0\t0x77B9\n0x9DE1\t0x9345\n0x9DE2\t0x5432\n0x9DE3\t0x8148\n0x9DE4\t0x82F7\n0x9DE5\t0x5625\n0x9DE6\t0x8132\n0x9DE7\t0x8418\n0x9DE8\t0x80BD\n0x9DE9\t0x55EA\n0x9DEA\t0x7962\n0x9DEB\t0x5643\n0x9DEC\t0x5416\n0x9DED\t0x20E9D\n0x9DEE\t0x35CE\n0x9DEF\t0x5605\n0x9DF0\t0x55F1\n0x9DF1\t0x66F1\n0x9DF2\t0x282E2\n0x9DF3\t0x362D\n0x9DF4\t0x7534\n0x9DF5\t0x55F0\n0x9DF6\t0x55BA\n0x9DF7\t0x5497\n0x9DF8\t0x5572\n0x9DF9\t0x20C41\n0x9DFA\t0x20C96\n0x9DFB\t0x5ED0\n0x9DFC\t0x25148\n0x9DFD\t0x20E76\n0x9DFE\t0x22C62\n0x9E40\t0x20EA2\n0x9E41\t0x9EAB\n0x9E42\t0x7D5A\n0x9E43\t0x55DE\n0x9E44\t0x21075\n0x9E45\t0x629D\n0x9E46\t0x976D\n0x9E47\t0x5494\n0x9E48\t0x8CCD\n0x9E49\t0x71F6\n0x9E4A\t0x9176\n0x9E4B\t0x63FC\n0x9E4C\t0x63B9\n0x9E4D\t0x63FE\n0x9E4E\t0x5569\n0x9E4F\t0x22B43\n0x9E50\t0x9C72\n0x9E51\t0x22EB3\n0x9E52\t0x519A\n0x9E53\t0x34DF\n0x9E54\t0x20DA7\n0x9E55\t0x51A7\n0x9E56\t0x544D\n0x9E57\t0x551E\n0x9E58\t0x5513\n0x9E59\t0x7666\n0x9E5A\t0x8E2D\n0x9E5B\t0x2688A\n0x9E5C\t0x75B1\n0x9E5D\t0x80B6\n0x9E5E\t0x8804\n0x9E5F\t0x8786\n0x9E60\t0x88C7\n0x9E61\t0x81B6\n0x9E62\t0x841C\n0x9E63\t0x210C1\n0x9E64\t0x44EC\n0x9E65\t0x7304\n0x9E66\t0x24706\n0x9E67\t0x5B90\n0x9E68\t0x830B\n0x9E69\t0x26893\n0x9E6A\t0x567B\n0x9E6B\t0x226F4\n0x9E6C\t0x27D2F\n0x9E6D\t0x241A3\n0x9E6E\t0x27D73\n0x9E6F\t0x26ED0\n0x9E70\t0x272B6\n0x9E71\t0x9170\n0x9E72\t0x211D9\n0x9E73\t0x9208\n0x9E74\t0x23CFC\n0x9E75\t0x2A6A9\n0x9E76\t0x20EAC\n0x9E77\t0x20EF9\n0x9E78\t0x7266\n0x9E79\t0x21CA2\n0x9E7A\t0x474E\n0x9E7B\t0x24FC2\n0x9E7C\t0x27FF9\n0x9E7D\t0x20FEB\n0x9E7E\t0x40FA\n0x9EA1\t0x9C5D\n0x9EA2\t0x651F\n0x9EA3\t0x22DA0\n0x9EA4\t0x48F3\n0x9EA5\t0x247E0\n0x9EA6\t0x29D7C\n0x9EA7\t0x20FEC\n0x9EA8\t0x20E0A\n0x9EAA\t0x275A3\n0x9EAB\t0x20FED\n0x9EAD\t0x26048\n0x9EAE\t0x21187\n0x9EAF\t0x71A3\n0x9EB0\t0x7E8E\n0x9EB1\t0x9D50\n0x9EB2\t0x4E1A\n0x9EB3\t0x4E04\n0x9EB4\t0x3577\n0x9EB5\t0x5B0D\n0x9EB6\t0x6CB2\n0x9EB7\t0x5367\n0x9EB8\t0x36AC\n0x9EB9\t0x39DC\n0x9EBA\t0x537D\n0x9EBB\t0x36A5\n0x9EBC\t0x24618\n0x9EBD\t0x589A\n0x9EBE\t0x24B6E\n0x9EBF\t0x822D\n0x9EC0\t0x544B\n0x9EC1\t0x57AA\n0x9EC2\t0x25A95\n0x9EC3\t0x20979\n0x9EC5\t0x3A52\n0x9EC6\t0x22465\n0x9EC7\t0x7374\n0x9EC8\t0x29EAC\n0x9EC9\t0x4D09\n0x9ECA\t0x9BED\n0x9ECB\t0x23CFE\n0x9ECC\t0x29F30\n0x9ECD\t0x4C5B\n0x9ECE\t0x24FA9\n0x9ECF\t0x2959E\n0x9ED0\t0x29FDE\n0x9ED1\t0x845C\n0x9ED2\t0x23DB6\n0x9ED3\t0x272B2\n0x9ED4\t0x267B3\n0x9ED5\t0x23720\n0x9ED6\t0x632E\n0x9ED7\t0x7D25\n0x9ED8\t0x23EF7\n0x9ED9\t0x23E2C\n0x9EDA\t0x3A2A\n0x9EDB\t0x9008\n0x9EDC\t0x52CC\n0x9EDD\t0x3E74\n0x9EDE\t0x367A\n0x9EDF\t0x45E9\n0x9EE0\t0x2048E\n0x9EE1\t0x7640\n0x9EE2\t0x5AF0\n0x9EE3\t0x20EB6\n0x9EE4\t0x787A\n0x9EE5\t0x27F2E\n0x9EE6\t0x58A7\n0x9EE7\t0x40BF\n0x9EE8\t0x567C\n0x9EE9\t0x9B8B\n0x9EEA\t0x5D74\n0x9EEB\t0x7654\n0x9EEC\t0x2A434\n0x9EED\t0x9E85\n0x9EEE\t0x4CE1\n0x9EF0\t0x37FB\n0x9EF1\t0x6119\n0x9EF2\t0x230DA\n0x9EF3\t0x243F2\n0x9EF5\t0x565D\n0x9EF6\t0x212A9\n0x9EF7\t0x57A7\n0x9EF8\t0x24963\n0x9EF9\t0x29E06\n0x9EFA\t0x5234\n0x9EFB\t0x270AE\n0x9EFC\t0x35AD\n0x9EFE\t0x9D7C\n0x9F40\t0x7C56\n0x9F41\t0x9B39\n0x9F42\t0x57DE\n0x9F43\t0x2176C\n0x9F44\t0x5C53\n0x9F45\t0x64D3\n0x9F46\t0x294D0\n0x9F47\t0x26335\n0x9F48\t0x27164\n0x9F49\t0x86AD\n0x9F4A\t0x20D28\n0x9F4B\t0x26D22\n0x9F4C\t0x24AE2\n0x9F4D\t0x20D71\n0x9F4F\t0x51FE\n0x9F50\t0x21F0F\n0x9F51\t0x5D8E\n0x9F52\t0x9703\n0x9F53\t0x21DD1\n0x9F54\t0x9E81\n0x9F55\t0x904C\n0x9F56\t0x7B1F\n0x9F57\t0x9B02\n0x9F58\t0x5CD1\n0x9F59\t0x7BA3\n0x9F5A\t0x6268\n0x9F5B\t0x6335\n0x9F5C\t0x9AFF\n0x9F5D\t0x7BCF\n0x9F5E\t0x9B2A\n0x9F5F\t0x7C7E\n0x9F61\t0x7C42\n0x9F62\t0x7C86\n0x9F63\t0x9C15\n0x9F64\t0x7BFC\n0x9F65\t0x9B09\n0x9F67\t0x9C1B\n0x9F68\t0x2493E\n0x9F69\t0x9F5A\n0x9F6A\t0x5573\n0x9F6B\t0x5BC3\n0x9F6C\t0x4FFD\n0x9F6D\t0x9E98\n0x9F6E\t0x4FF2\n0x9F6F\t0x5260\n0x9F70\t0x3E06\n0x9F71\t0x52D1\n0x9F72\t0x5767\n0x9F73\t0x5056\n0x9F74\t0x59B7\n0x9F75\t0x5E12\n0x9F76\t0x97C8\n0x9F77\t0x9DAB\n0x9F78\t0x8F5C\n0x9F79\t0x5469\n0x9F7A\t0x97B4\n0x9F7B\t0x9940\n0x9F7C\t0x97BA\n0x9F7D\t0x532C\n0x9F7E\t0x6130\n0x9FA1\t0x692C\n0x9FA2\t0x53DA\n0x9FA3\t0x9C0A\n0x9FA4\t0x9D02\n0x9FA5\t0x4C3B\n0x9FA6\t0x9641\n0x9FA7\t0x6980\n0x9FA8\t0x50A6\n0x9FA9\t0x7546\n0x9FAA\t0x2176D\n0x9FAB\t0x99DA\n0x9FAC\t0x5273\n0x9FAE\t0x9159\n0x9FAF\t0x9681\n0x9FB0\t0x915C\n0x9FB2\t0x9151\n0x9FB3\t0x28E97\n0x9FB4\t0x637F\n0x9FB5\t0x26D23\n0x9FB6\t0x6ACA\n0x9FB7\t0x5611\n0x9FB8\t0x918E\n0x9FB9\t0x757A\n0x9FBA\t0x6285\n0x9FBB\t0x203FC\n0x9FBC\t0x734F\n0x9FBD\t0x7C70\n0x9FBE\t0x25C21\n0x9FBF\t0x23CFD\n0x9FC1\t0x24919\n0x9FC2\t0x76D6\n0x9FC3\t0x9B9D\n0x9FC4\t0x4E2A\n0x9FC5\t0x20CD4\n0x9FC6\t0x83BE\n0x9FC7\t0x8842\n0x9FC9\t0x5C4A\n0x9FCA\t0x69C0\n0x9FCC\t0x577A\n0x9FCD\t0x521F\n0x9FCE\t0x5DF5\n0x9FCF\t0x4ECE\n0x9FD0\t0x6C31\n0x9FD1\t0x201F2\n0x9FD2\t0x4F39\n0x9FD3\t0x549C\n0x9FD4\t0x54DA\n0x9FD5\t0x529A\n0x9FD6\t0x8D82\n0x9FD7\t0x35FE\n0x9FD9\t0x35F3\n0x9FDB\t0x6B52\n0x9FDC\t0x917C\n0x9FDD\t0x9FA5\n0x9FDE\t0x9B97\n0x9FDF\t0x982E\n0x9FE0\t0x98B4\n0x9FE1\t0x9ABA\n0x9FE2\t0x9EA8\n0x9FE3\t0x9E84\n0x9FE4\t0x717A\n0x9FE5\t0x7B14\n0x9FE7\t0x6BFA\n0x9FE8\t0x8818\n0x9FE9\t0x7F78\n0x9FEB\t0x5620\n0x9FEC\t0x2A64A\n0x9FED\t0x8E77\n0x9FEE\t0x9F53\n0x9FF0\t0x8DD4\n0x9FF1\t0x8E4F\n0x9FF2\t0x9E1C\n0x9FF3\t0x8E01\n0x9FF4\t0x6282\n0x9FF5\t0x2837D\n0x9FF6\t0x8E28\n0x9FF7\t0x8E75\n0x9FF8\t0x7AD3\n0x9FF9\t0x24A77\n0x9FFA\t0x7A3E\n0x9FFB\t0x78D8\n0x9FFC\t0x6CEA\n0x9FFD\t0x8A67\n0x9FFE\t0x7607\n0xA040\t0x28A5A\n0xA041\t0x9F26\n0xA042\t0x6CCE\n0xA043\t0x87D6\n0xA044\t0x75C3\n0xA045\t0x2A2B2\n0xA046\t0x7853\n0xA047\t0x2F840\n0xA048\t0x8D0C\n0xA049\t0x72E2\n0xA04A\t0x7371\n0xA04B\t0x8B2D\n0xA04C\t0x7302\n0xA04D\t0x74F1\n0xA04E\t0x8CEB\n0xA04F\t0x24ABB\n0xA050\t0x862F\n0xA051\t0x5FBA\n0xA052\t0x88A0\n0xA053\t0x44B7\n0xA055\t0x2183B\n0xA056\t0x26E05\n0xA058\t0x8A7E\n0xA059\t0x2251B\n0xA05B\t0x60FD\n0xA05C\t0x7667\n0xA05D\t0x9AD7\n0xA05E\t0x9D44\n0xA05F\t0x936E\n0xA060\t0x9B8F\n0xA061\t0x87F5\n0xA064\t0x8CF7\n0xA065\t0x732C\n0xA066\t0x9721\n0xA067\t0x9BB0\n0xA068\t0x35D6\n0xA069\t0x72B2\n0xA06A\t0x4C07\n0xA06B\t0x7C51\n0xA06C\t0x994A\n0xA06D\t0x26159\n0xA06E\t0x6159\n0xA06F\t0x4C04\n0xA070\t0x9E96\n0xA071\t0x617D\n0xA073\t0x575F\n0xA074\t0x616F\n0xA075\t0x62A6\n0xA076\t0x6239\n0xA078\t0x3A5C\n0xA079\t0x61E2\n0xA07A\t0x53AA\n0xA07B\t0x233F5\n0xA07C\t0x6364\n0xA07D\t0x6802\n0xA07E\t0x35D2\n0xA0A1\t0x5D57\n0xA0A2\t0x28BC2\n0xA0A3\t0x8FDA\n0xA0A4\t0x28E39\n0xA0A6\t0x50D9\n0xA0A7\t0x21D46\n0xA0A8\t0x7906\n0xA0A9\t0x5332\n0xA0AA\t0x9638\n0xA0AB\t0x20F3B\n0xA0AC\t0x4065\n0xA0AE\t0x77FE\n0xA0B0\t0x7CC2\n0xA0B1\t0x25F1A\n0xA0B2\t0x7CDA\n0xA0B3\t0x7A2D\n0xA0B4\t0x8066\n0xA0B5\t0x8063\n0xA0B6\t0x7D4D\n0xA0B7\t0x7505\n0xA0B8\t0x74F2\n0xA0B9\t0x8994\n0xA0BA\t0x821A\n0xA0BB\t0x670C\n0xA0BC\t0x8062\n0xA0BD\t0x27486\n0xA0BE\t0x805B\n0xA0BF\t0x74F0\n0xA0C0\t0x8103\n0xA0C1\t0x7724\n0xA0C2\t0x8989\n0xA0C3\t0x267CC\n0xA0C4\t0x7553\n0xA0C5\t0x26ED1\n0xA0C6\t0x87A9\n0xA0C7\t0x87CE\n0xA0C8\t0x81C8\n0xA0C9\t0x878C\n0xA0CA\t0x8A49\n0xA0CB\t0x8CAD\n0xA0CC\t0x8B43\n0xA0CD\t0x772B\n0xA0CE\t0x74F8\n0xA0CF\t0x84DA\n0xA0D0\t0x3635\n0xA0D1\t0x69B2\n0xA0D2\t0x8DA6\n0xA0D4\t0x89A9\n0xA0D6\t0x6DB9\n0xA0D7\t0x87C1\n0xA0D8\t0x24011\n0xA0D9\t0x74E7\n0xA0DA\t0x3DDB\n0xA0DB\t0x7176\n0xA0DC\t0x60A4\n0xA0DD\t0x619C\n0xA0DE\t0x3CD1\n0xA0E0\t0x6077\n0xA0E2\t0x7F71\n0xA0E3\t0x28B2D\n0xA0E5\t0x60E9\n0xA0E6\t0x4B7E\n0xA0E7\t0x5220\n0xA0E8\t0x3C18\n0xA0E9\t0x23CC7\n0xA0EA\t0x25ED7\n0xA0EB\t0x27656\n0xA0EC\t0x25531\n0xA0ED\t0x21944\n0xA0EE\t0x212FE\n0xA0EF\t0x29903\n0xA0F0\t0x26DDC\n0xA0F1\t0x270AD\n0xA0F2\t0x5CC1\n0xA0F3\t0x261AD\n0xA0F4\t0x28A0F\n0xA0F5\t0x23677\n0xA0F6\t0x200EE\n0xA0F7\t0x26846\n0xA0F8\t0x24F0E\n0xA0F9\t0x4562\n0xA0FA\t0x5B1F\n0xA0FB\t0x2634C\n0xA0FC\t0x9F50\n0xA0FD\t0x9EA6\n0xA0FE\t0x2626B\n0xA140\t0x3000\n0xA141\t0xFF0C\n0xA142\t0x3001\n0xA143\t0x3002\n0xA144\t0xFF0E\n0xA145\t0x2022\n0xA146\t0xFF1B\n0xA147\t0xFF1A\n0xA148\t0xFF1F\n0xA149\t0xFF01\n0xA14A\t0xFE30\n0xA14B\t0x2026\n0xA14C\t0x2025\n0xA14D\t0xFE50\n0xA14E\t0xFF64\n0xA14F\t0xFE52\n0xA150\t0x00B7\n0xA151\t0xFE54\n0xA152\t0xFE55\n0xA153\t0xFE56\n0xA154\t0xFE57\n0xA155\t0xFF5C\n0xA156\t0x2013\n0xA157\t0xFE31\n0xA158\t0x2014\n0xA159\t0xFE33\n0xA15B\t0xFE34\n0xA15C\t0xFE4F\n0xA15D\t0xFF08\n0xA15E\t0xFF09\n0xA15F\t0xFE35\n0xA160\t0xFE36\n0xA161\t0xFF5B\n0xA162\t0xFF5D\n0xA163\t0xFE37\n0xA164\t0xFE38\n0xA165\t0x3014\n0xA166\t0x3015\n0xA167\t0xFE39\n0xA168\t0xFE3A\n0xA169\t0x3010\n0xA16A\t0x3011\n0xA16B\t0xFE3B\n0xA16C\t0xFE3C\n0xA16D\t0x300A\n0xA16E\t0x300B\n0xA16F\t0xFE3D\n0xA170\t0xFE3E\n0xA171\t0x3008\n0xA172\t0x3009\n0xA173\t0xFE3F\n0xA174\t0xFE40\n0xA175\t0x300C\n0xA176\t0x300D\n0xA177\t0xFE41\n0xA178\t0xFE42\n0xA179\t0x300E\n0xA17A\t0x300F\n0xA17B\t0xFE43\n0xA17C\t0xFE44\n0xA17D\t0xFE59\n0xA17E\t0xFE5A\n0xA1A1\t0xFE5B\n0xA1A2\t0xFE5C\n0xA1A3\t0xFE5D\n0xA1A4\t0xFE5E\n0xA1A5\t0x2018\n0xA1A6\t0x2019\n0xA1A7\t0x201C\n0xA1A8\t0x201D\n0xA1A9\t0x301D\n0xA1AA\t0x301E\n0xA1AB\t0x2035\n0xA1AC\t0x2032\n0xA1AD\t0xFF03\n0xA1AE\t0xFF06\n0xA1AF\t0xFF0A\n0xA1B0\t0x203B\n0xA1B1\t0x00A7\n0xA1B2\t0x3003\n0xA1B3\t0x25CB\n0xA1B4\t0x25CF\n0xA1B5\t0x25B3\n0xA1B6\t0x25B2\n0xA1B7\t0x25CE\n0xA1B8\t0x2606\n0xA1B9\t0x2605\n0xA1BA\t0x25C7\n0xA1BB\t0x25C6\n0xA1BC\t0x25A1\n0xA1BD\t0x25A0\n0xA1BE\t0x25BD\n0xA1BF\t0x25BC\n0xA1C0\t0x32A3\n0xA1C1\t0x2105\n0xA1C2\t0x203E\n0xA1C4\t0xFF3F\n0xA1C6\t0xFE49\n0xA1C7\t0xFE4A\n0xA1C8\t0xFE4D\n0xA1C9\t0xFE4E\n0xA1CA\t0xFE4B\n0xA1CB\t0xFE4C\n0xA1CC\t0xFE5F\n0xA1CD\t0xFE60\n0xA1CE\t0xFE61\n0xA1CF\t0xFF0B\n0xA1D0\t0xFF0D\n0xA1D1\t0x00D7\n0xA1D2\t0x00F7\n0xA1D3\t0x00B1\n0xA1D4\t0x221A\n0xA1D5\t0xFF1C\n0xA1D6\t0xFF1E\n0xA1D7\t0xFF1D\n0xA1D8\t0x2266\n0xA1D9\t0x2267\n0xA1DA\t0x2260\n0xA1DB\t0x221E\n0xA1DC\t0x2252\n0xA1DD\t0x2261\n0xA1DE\t0xFE62\n0xA1DF\t0xFE63\n0xA1E0\t0xFE64\n0xA1E1\t0xFE65\n0xA1E2\t0xFE66\n0xA1E3\t0x223C\n0xA1E4\t0x2229\n0xA1E5\t0x222A\n0xA1E6\t0x22A5\n0xA1E7\t0x2220\n0xA1E8\t0x221F\n0xA1E9\t0x22BF\n0xA1EA\t0x33D2\n0xA1EB\t0x33D1\n0xA1EC\t0x222B\n0xA1ED\t0x222E\n0xA1EE\t0x2235\n0xA1EF\t0x2234\n0xA1F0\t0x2640\n0xA1F1\t0x2642\n0xA1F2\t0x2641\n0xA1F3\t0x2609\n0xA1F4\t0x2191\n0xA1F5\t0x2193\n0xA1F6\t0x2190\n0xA1F7\t0x2192\n0xA1F8\t0x2196\n0xA1F9\t0x2197\n0xA1FA\t0x2199\n0xA1FB\t0x2198\n0xA1FC\t0x2225\n0xA1FD\t0x2223\n0xA241\t0xFF0F\n0xA242\t0xFF3C\n0xA243\t0xFF04\n0xA244\t0x00A5\n0xA245\t0x3012\n0xA246\t0x00A2\n0xA247\t0x00A3\n0xA248\t0xFF05\n0xA249\t0xFF20\n0xA24A\t0x2103\n0xA24B\t0x2109\n0xA24C\t0xFE69\n0xA24D\t0xFE6A\n0xA24E\t0xFE6B\n0xA24F\t0x33D5\n0xA250\t0x339C\n0xA251\t0x339D\n0xA252\t0x339E\n0xA253\t0x33CE\n0xA254\t0x33A1\n0xA255\t0x338E\n0xA256\t0x338F\n0xA257\t0x33C4\n0xA258\t0x00B0\n0xA259\t0x5159\n0xA25A\t0x515B\n0xA25B\t0x515E\n0xA25C\t0x515D\n0xA25D\t0x5161\n0xA25E\t0x5163\n0xA25F\t0x55E7\n0xA260\t0x74E9\n0xA261\t0x7CCE\n0xA262\t0x2581\n0xA263\t0x2582\n0xA264\t0x2583\n0xA265\t0x2584\n0xA266\t0x2585\n0xA267\t0x2586\n0xA268\t0x2587\n0xA269\t0x2588\n0xA26A\t0x258F\n0xA26B\t0x258E\n0xA26C\t0x258D\n0xA26D\t0x258C\n0xA26E\t0x258B\n0xA26F\t0x258A\n0xA270\t0x2589\n0xA271\t0x253C\n0xA272\t0x2534\n0xA273\t0x252C\n0xA274\t0x2524\n0xA275\t0x251C\n0xA276\t0x2594\n0xA277\t0x2500\n0xA278\t0x2502\n0xA279\t0x2595\n0xA27A\t0x250C\n0xA27B\t0x2510\n0xA27C\t0x2514\n0xA27D\t0x2518\n0xA27E\t0x256D\n0xA2A1\t0x256E\n0xA2A2\t0x2570\n0xA2A3\t0x256F\n0xA2A4\t0x2550\n0xA2A5\t0x255E\n0xA2A6\t0x256A\n0xA2A7\t0x2561\n0xA2A8\t0x25E2\n0xA2A9\t0x25E3\n0xA2AA\t0x25E5\n0xA2AB\t0x25E4\n0xA2AC\t0x2571\n0xA2AD\t0x2572\n0xA2AE\t0x2573\n0xA2AF\t0xFF10\n0xA2B0\t0xFF11\n0xA2B1\t0xFF12\n0xA2B2\t0xFF13\n0xA2B3\t0xFF14\n0xA2B4\t0xFF15\n0xA2B5\t0xFF16\n0xA2B6\t0xFF17\n0xA2B7\t0xFF18\n0xA2B8\t0xFF19\n0xA2B9\t0x2160\n0xA2BA\t0x2161\n0xA2BB\t0x2162\n0xA2BC\t0x2163\n0xA2BD\t0x2164\n0xA2BE\t0x2165\n0xA2BF\t0x2166\n0xA2C0\t0x2167\n0xA2C1\t0x2168\n0xA2C2\t0x2169\n0xA2C3\t0x3021\n0xA2C4\t0x3022\n0xA2C5\t0x3023\n0xA2C6\t0x3024\n0xA2C7\t0x3025\n0xA2C8\t0x3026\n0xA2C9\t0x3027\n0xA2CA\t0x3028\n0xA2CB\t0x3029\n0xA2CD\t0x5344\n0xA2CF\t0xFF21\n0xA2D0\t0xFF22\n0xA2D1\t0xFF23\n0xA2D2\t0xFF24\n0xA2D3\t0xFF25\n0xA2D4\t0xFF26\n0xA2D5\t0xFF27\n0xA2D6\t0xFF28\n0xA2D7\t0xFF29\n0xA2D8\t0xFF2A\n0xA2D9\t0xFF2B\n0xA2DA\t0xFF2C\n0xA2DB\t0xFF2D\n0xA2DC\t0xFF2E\n0xA2DD\t0xFF2F\n0xA2DE\t0xFF30\n0xA2DF\t0xFF31\n0xA2E0\t0xFF32\n0xA2E1\t0xFF33\n0xA2E2\t0xFF34\n0xA2E3\t0xFF35\n0xA2E4\t0xFF36\n0xA2E5\t0xFF37\n0xA2E6\t0xFF38\n0xA2E7\t0xFF39\n0xA2E8\t0xFF3A\n0xA2E9\t0xFF41\n0xA2EA\t0xFF42\n0xA2EB\t0xFF43\n0xA2EC\t0xFF44\n0xA2ED\t0xFF45\n0xA2EE\t0xFF46\n0xA2EF\t0xFF47\n0xA2F0\t0xFF48\n0xA2F1\t0xFF49\n0xA2F2\t0xFF4A\n0xA2F3\t0xFF4B\n0xA2F4\t0xFF4C\n0xA2F5\t0xFF4D\n0xA2F6\t0xFF4E\n0xA2F7\t0xFF4F\n0xA2F8\t0xFF50\n0xA2F9\t0xFF51\n0xA2FA\t0xFF52\n0xA2FB\t0xFF53\n0xA2FC\t0xFF54\n0xA2FD\t0xFF55\n0xA2FE\t0xFF56\n0xA340\t0xFF57\n0xA341\t0xFF58\n0xA342\t0xFF59\n0xA343\t0xFF5A\n0xA344\t0x0391\n0xA345\t0x0392\n0xA346\t0x0393\n0xA347\t0x0394\n0xA348\t0x0395\n0xA349\t0x0396\n0xA34A\t0x0397\n0xA34B\t0x0398\n0xA34C\t0x0399\n0xA34D\t0x039A\n0xA34E\t0x039B\n0xA34F\t0x039C\n0xA350\t0x039D\n0xA351\t0x039E\n0xA352\t0x039F\n0xA353\t0x03A0\n0xA354\t0x03A1\n0xA355\t0x03A3\n0xA356\t0x03A4\n0xA357\t0x03A5\n0xA358\t0x03A6\n0xA359\t0x03A7\n0xA35A\t0x03A8\n0xA35B\t0x03A9\n0xA35C\t0x03B1\n0xA35D\t0x03B2\n0xA35E\t0x03B3\n0xA35F\t0x03B4\n0xA360\t0x03B5\n0xA361\t0x03B6\n0xA362\t0x03B7\n0xA363\t0x03B8\n0xA364\t0x03B9\n0xA365\t0x03BA\n0xA366\t0x03BB\n0xA367\t0x03BC\n0xA368\t0x03BD\n0xA369\t0x03BE\n0xA36A\t0x03BF\n0xA36B\t0x03C0\n0xA36C\t0x03C1\n0xA36D\t0x03C3\n0xA36E\t0x03C4\n0xA36F\t0x03C5\n0xA370\t0x03C6\n0xA371\t0x03C7\n0xA372\t0x03C8\n0xA373\t0x03C9\n0xA374\t0x3105\n0xA375\t0x3106\n0xA376\t0x3107\n0xA377\t0x3108\n0xA378\t0x3109\n0xA379\t0x310A\n0xA37A\t0x310B\n0xA37B\t0x310C\n0xA37C\t0x310D\n0xA37D\t0x310E\n0xA37E\t0x310F\n0xA3A1\t0x3110\n0xA3A2\t0x3111\n0xA3A3\t0x3112\n0xA3A4\t0x3113\n0xA3A5\t0x3114\n0xA3A6\t0x3115\n0xA3A7\t0x3116\n0xA3A8\t0x3117\n0xA3A9\t0x3118\n0xA3AA\t0x3119\n0xA3AB\t0x311A\n0xA3AC\t0x311B\n0xA3AD\t0x311C\n0xA3AE\t0x311D\n0xA3AF\t0x311E\n0xA3B0\t0x311F\n0xA3B1\t0x3120\n0xA3B2\t0x3121\n0xA3B3\t0x3122\n0xA3B4\t0x3123\n0xA3B5\t0x3124\n0xA3B6\t0x3125\n0xA3B7\t0x3126\n0xA3B8\t0x3127\n0xA3B9\t0x3128\n0xA3BA\t0x3129\n0xA3BB\t0x02D9\n0xA3BC\t0x02C9\n0xA3BD\t0x02CA\n0xA3BE\t0x02C7\n0xA3BF\t0x02CB\n0xA440\t0x4E00\n0xA441\t0x4E59\n0xA442\t0x4E01\n0xA443\t0x4E03\n0xA444\t0x4E43\n0xA445\t0x4E5D\n0xA446\t0x4E86\n0xA447\t0x4E8C\n0xA448\t0x4EBA\n0xA449\t0x513F\n0xA44A\t0x5165\n0xA44B\t0x516B\n0xA44C\t0x51E0\n0xA44D\t0x5200\n0xA44E\t0x5201\n0xA44F\t0x529B\n0xA450\t0x5315\n0xA451\t0x5341\n0xA452\t0x535C\n0xA453\t0x53C8\n0xA454\t0x4E09\n0xA455\t0x4E0B\n0xA456\t0x4E08\n0xA457\t0x4E0A\n0xA458\t0x4E2B\n0xA459\t0x4E38\n0xA45A\t0x51E1\n0xA45B\t0x4E45\n0xA45C\t0x4E48\n0xA45D\t0x4E5F\n0xA45E\t0x4E5E\n0xA45F\t0x4E8E\n0xA460\t0x4EA1\n0xA461\t0x5140\n0xA462\t0x5203\n0xA463\t0x52FA\n0xA464\t0x5343\n0xA465\t0x53C9\n0xA466\t0x53E3\n0xA467\t0x571F\n0xA468\t0x58EB\n0xA469\t0x5915\n0xA46A\t0x5927\n0xA46B\t0x5973\n0xA46C\t0x5B50\n0xA46D\t0x5B51\n0xA46E\t0x5B53\n0xA46F\t0x5BF8\n0xA470\t0x5C0F\n0xA471\t0x5C22\n0xA472\t0x5C38\n0xA473\t0x5C71\n0xA474\t0x5DDD\n0xA475\t0x5DE5\n0xA476\t0x5DF1\n0xA477\t0x5DF2\n0xA478\t0x5DF3\n0xA479\t0x5DFE\n0xA47A\t0x5E72\n0xA47B\t0x5EFE\n0xA47C\t0x5F0B\n0xA47D\t0x5F13\n0xA47E\t0x624D\n0xA4A1\t0x4E11\n0xA4A2\t0x4E10\n0xA4A3\t0x4E0D\n0xA4A4\t0x4E2D\n0xA4A5\t0x4E30\n0xA4A6\t0x4E39\n0xA4A7\t0x4E4B\n0xA4A8\t0x5C39\n0xA4A9\t0x4E88\n0xA4AA\t0x4E91\n0xA4AB\t0x4E95\n0xA4AC\t0x4E92\n0xA4AD\t0x4E94\n0xA4AE\t0x4EA2\n0xA4AF\t0x4EC1\n0xA4B0\t0x4EC0\n0xA4B1\t0x4EC3\n0xA4B2\t0x4EC6\n0xA4B3\t0x4EC7\n0xA4B4\t0x4ECD\n0xA4B5\t0x4ECA\n0xA4B6\t0x4ECB\n0xA4B7\t0x4EC4\n0xA4B8\t0x5143\n0xA4B9\t0x5141\n0xA4BA\t0x5167\n0xA4BB\t0x516D\n0xA4BC\t0x516E\n0xA4BD\t0x516C\n0xA4BE\t0x5197\n0xA4BF\t0x51F6\n0xA4C0\t0x5206\n0xA4C1\t0x5207\n0xA4C2\t0x5208\n0xA4C3\t0x52FB\n0xA4C4\t0x52FE\n0xA4C5\t0x52FF\n0xA4C6\t0x5316\n0xA4C7\t0x5339\n0xA4C8\t0x5348\n0xA4C9\t0x5347\n0xA4CA\t0x5345\n0xA4CB\t0x535E\n0xA4CC\t0x5384\n0xA4CD\t0x53CB\n0xA4CE\t0x53CA\n0xA4CF\t0x53CD\n0xA4D0\t0x58EC\n0xA4D1\t0x5929\n0xA4D2\t0x592B\n0xA4D3\t0x592A\n0xA4D4\t0x592D\n0xA4D5\t0x5B54\n0xA4D6\t0x5C11\n0xA4D7\t0x5C24\n0xA4D8\t0x5C3A\n0xA4D9\t0x5C6F\n0xA4DA\t0x5DF4\n0xA4DB\t0x5E7B\n0xA4DC\t0x5EFF\n0xA4DD\t0x5F14\n0xA4DE\t0x5F15\n0xA4DF\t0x5FC3\n0xA4E0\t0x6208\n0xA4E1\t0x6236\n0xA4E2\t0x624B\n0xA4E3\t0x624E\n0xA4E4\t0x652F\n0xA4E5\t0x6587\n0xA4E6\t0x6597\n0xA4E7\t0x65A4\n0xA4E8\t0x65B9\n0xA4E9\t0x65E5\n0xA4EA\t0x66F0\n0xA4EB\t0x6708\n0xA4EC\t0x6728\n0xA4ED\t0x6B20\n0xA4EE\t0x6B62\n0xA4EF\t0x6B79\n0xA4F0\t0x6BCB\n0xA4F1\t0x6BD4\n0xA4F2\t0x6BDB\n0xA4F3\t0x6C0F\n0xA4F4\t0x6C34\n0xA4F5\t0x706B\n0xA4F6\t0x722A\n0xA4F7\t0x7236\n0xA4F8\t0x723B\n0xA4F9\t0x7247\n0xA4FA\t0x7259\n0xA4FB\t0x725B\n0xA4FC\t0x72AC\n0xA4FD\t0x738B\n0xA4FE\t0x4E19\n0xA540\t0x4E16\n0xA541\t0x4E15\n0xA542\t0x4E14\n0xA543\t0x4E18\n0xA544\t0x4E3B\n0xA545\t0x4E4D\n0xA546\t0x4E4F\n0xA547\t0x4E4E\n0xA548\t0x4EE5\n0xA549\t0x4ED8\n0xA54A\t0x4ED4\n0xA54B\t0x4ED5\n0xA54C\t0x4ED6\n0xA54D\t0x4ED7\n0xA54E\t0x4EE3\n0xA54F\t0x4EE4\n0xA550\t0x4ED9\n0xA551\t0x4EDE\n0xA552\t0x5145\n0xA553\t0x5144\n0xA554\t0x5189\n0xA555\t0x518A\n0xA556\t0x51AC\n0xA557\t0x51F9\n0xA558\t0x51FA\n0xA559\t0x51F8\n0xA55A\t0x520A\n0xA55B\t0x52A0\n0xA55C\t0x529F\n0xA55D\t0x5305\n0xA55E\t0x5306\n0xA55F\t0x5317\n0xA560\t0x531D\n0xA561\t0x4EDF\n0xA562\t0x534A\n0xA563\t0x5349\n0xA564\t0x5361\n0xA565\t0x5360\n0xA566\t0x536F\n0xA567\t0x536E\n0xA568\t0x53BB\n0xA569\t0x53EF\n0xA56A\t0x53E4\n0xA56B\t0x53F3\n0xA56C\t0x53EC\n0xA56D\t0x53EE\n0xA56E\t0x53E9\n0xA56F\t0x53E8\n0xA570\t0x53FC\n0xA571\t0x53F8\n0xA572\t0x53F5\n0xA573\t0x53EB\n0xA574\t0x53E6\n0xA575\t0x53EA\n0xA576\t0x53F2\n0xA577\t0x53F1\n0xA578\t0x53F0\n0xA579\t0x53E5\n0xA57A\t0x53ED\n0xA57B\t0x53FB\n0xA57C\t0x56DB\n0xA57D\t0x56DA\n0xA57E\t0x5916\n0xA5A1\t0x592E\n0xA5A2\t0x5931\n0xA5A3\t0x5974\n0xA5A4\t0x5976\n0xA5A5\t0x5B55\n0xA5A6\t0x5B83\n0xA5A7\t0x5C3C\n0xA5A8\t0x5DE8\n0xA5A9\t0x5DE7\n0xA5AA\t0x5DE6\n0xA5AB\t0x5E02\n0xA5AC\t0x5E03\n0xA5AD\t0x5E73\n0xA5AE\t0x5E7C\n0xA5AF\t0x5F01\n0xA5B0\t0x5F18\n0xA5B1\t0x5F17\n0xA5B2\t0x5FC5\n0xA5B3\t0x620A\n0xA5B4\t0x6253\n0xA5B5\t0x6254\n0xA5B6\t0x6252\n0xA5B7\t0x6251\n0xA5B8\t0x65A5\n0xA5B9\t0x65E6\n0xA5BA\t0x672E\n0xA5BB\t0x672C\n0xA5BC\t0x672A\n0xA5BD\t0x672B\n0xA5BE\t0x672D\n0xA5BF\t0x6B63\n0xA5C0\t0x6BCD\n0xA5C1\t0x6C11\n0xA5C2\t0x6C10\n0xA5C3\t0x6C38\n0xA5C4\t0x6C41\n0xA5C5\t0x6C40\n0xA5C6\t0x6C3E\n0xA5C7\t0x72AF\n0xA5C8\t0x7384\n0xA5C9\t0x7389\n0xA5CA\t0x74DC\n0xA5CB\t0x74E6\n0xA5CC\t0x7518\n0xA5CD\t0x751F\n0xA5CE\t0x7528\n0xA5CF\t0x7529\n0xA5D0\t0x7530\n0xA5D1\t0x7531\n0xA5D2\t0x7532\n0xA5D3\t0x7533\n0xA5D4\t0x758B\n0xA5D5\t0x767D\n0xA5D6\t0x76AE\n0xA5D7\t0x76BF\n0xA5D8\t0x76EE\n0xA5D9\t0x77DB\n0xA5DA\t0x77E2\n0xA5DB\t0x77F3\n0xA5DC\t0x793A\n0xA5DD\t0x79BE\n0xA5DE\t0x7A74\n0xA5DF\t0x7ACB\n0xA5E0\t0x4E1E\n0xA5E1\t0x4E1F\n0xA5E2\t0x4E52\n0xA5E3\t0x4E53\n0xA5E4\t0x4E69\n0xA5E5\t0x4E99\n0xA5E6\t0x4EA4\n0xA5E7\t0x4EA6\n0xA5E8\t0x4EA5\n0xA5E9\t0x4EFF\n0xA5EA\t0x4F09\n0xA5EB\t0x4F19\n0xA5EC\t0x4F0A\n0xA5ED\t0x4F15\n0xA5EE\t0x4F0D\n0xA5EF\t0x4F10\n0xA5F0\t0x4F11\n0xA5F1\t0x4F0F\n0xA5F2\t0x4EF2\n0xA5F3\t0x4EF6\n0xA5F4\t0x4EFB\n0xA5F5\t0x4EF0\n0xA5F6\t0x4EF3\n0xA5F7\t0x4EFD\n0xA5F8\t0x4F01\n0xA5F9\t0x4F0B\n0xA5FA\t0x5149\n0xA5FB\t0x5147\n0xA5FC\t0x5146\n0xA5FD\t0x5148\n0xA5FE\t0x5168\n0xA640\t0x5171\n0xA641\t0x518D\n0xA642\t0x51B0\n0xA643\t0x5217\n0xA644\t0x5211\n0xA645\t0x5212\n0xA646\t0x520E\n0xA647\t0x5216\n0xA648\t0x52A3\n0xA649\t0x5308\n0xA64A\t0x5321\n0xA64B\t0x5320\n0xA64C\t0x5370\n0xA64D\t0x5371\n0xA64E\t0x5409\n0xA64F\t0x540F\n0xA650\t0x540C\n0xA651\t0x540A\n0xA652\t0x5410\n0xA653\t0x5401\n0xA654\t0x540B\n0xA655\t0x5404\n0xA656\t0x5411\n0xA657\t0x540D\n0xA658\t0x5408\n0xA659\t0x5403\n0xA65A\t0x540E\n0xA65B\t0x5406\n0xA65C\t0x5412\n0xA65D\t0x56E0\n0xA65E\t0x56DE\n0xA65F\t0x56DD\n0xA660\t0x5733\n0xA661\t0x5730\n0xA662\t0x5728\n0xA663\t0x572D\n0xA664\t0x572C\n0xA665\t0x572F\n0xA666\t0x5729\n0xA667\t0x5919\n0xA668\t0x591A\n0xA669\t0x5937\n0xA66A\t0x5938\n0xA66B\t0x5984\n0xA66C\t0x5978\n0xA66D\t0x5983\n0xA66E\t0x597D\n0xA66F\t0x5979\n0xA670\t0x5982\n0xA671\t0x5981\n0xA672\t0x5B57\n0xA673\t0x5B58\n0xA674\t0x5B87\n0xA675\t0x5B88\n0xA676\t0x5B85\n0xA677\t0x5B89\n0xA678\t0x5BFA\n0xA679\t0x5C16\n0xA67A\t0x5C79\n0xA67B\t0x5DDE\n0xA67C\t0x5E06\n0xA67D\t0x5E76\n0xA67E\t0x5E74\n0xA6A1\t0x5F0F\n0xA6A2\t0x5F1B\n0xA6A3\t0x5FD9\n0xA6A4\t0x5FD6\n0xA6A5\t0x620E\n0xA6A6\t0x620C\n0xA6A7\t0x620D\n0xA6A8\t0x6210\n0xA6A9\t0x6263\n0xA6AA\t0x625B\n0xA6AB\t0x6258\n0xA6AC\t0x6536\n0xA6AD\t0x65E9\n0xA6AE\t0x65E8\n0xA6AF\t0x65EC\n0xA6B0\t0x65ED\n0xA6B1\t0x66F2\n0xA6B2\t0x66F3\n0xA6B3\t0x6709\n0xA6B4\t0x673D\n0xA6B5\t0x6734\n0xA6B6\t0x6731\n0xA6B7\t0x6735\n0xA6B8\t0x6B21\n0xA6B9\t0x6B64\n0xA6BA\t0x6B7B\n0xA6BB\t0x6C16\n0xA6BC\t0x6C5D\n0xA6BD\t0x6C57\n0xA6BE\t0x6C59\n0xA6BF\t0x6C5F\n0xA6C0\t0x6C60\n0xA6C1\t0x6C50\n0xA6C2\t0x6C55\n0xA6C3\t0x6C61\n0xA6C4\t0x6C5B\n0xA6C5\t0x6C4D\n0xA6C6\t0x6C4E\n0xA6C7\t0x7070\n0xA6C8\t0x725F\n0xA6C9\t0x725D\n0xA6CA\t0x767E\n0xA6CB\t0x7AF9\n0xA6CC\t0x7C73\n0xA6CD\t0x7CF8\n0xA6CE\t0x7F36\n0xA6CF\t0x7F8A\n0xA6D0\t0x7FBD\n0xA6D1\t0x8001\n0xA6D2\t0x8003\n0xA6D3\t0x800C\n0xA6D4\t0x8012\n0xA6D5\t0x8033\n0xA6D6\t0x807F\n0xA6D7\t0x8089\n0xA6D8\t0x808B\n0xA6D9\t0x808C\n0xA6DA\t0x81E3\n0xA6DB\t0x81EA\n0xA6DC\t0x81F3\n0xA6DD\t0x81FC\n0xA6DE\t0x820C\n0xA6DF\t0x821B\n0xA6E0\t0x821F\n0xA6E1\t0x826E\n0xA6E2\t0x8272\n0xA6E3\t0x827E\n0xA6E4\t0x866B\n0xA6E5\t0x8840\n0xA6E6\t0x884C\n0xA6E7\t0x8863\n0xA6E8\t0x897F\n0xA6E9\t0x9621\n0xA6EA\t0x4E32\n0xA6EB\t0x4EA8\n0xA6EC\t0x4F4D\n0xA6ED\t0x4F4F\n0xA6EE\t0x4F47\n0xA6EF\t0x4F57\n0xA6F0\t0x4F5E\n0xA6F1\t0x4F34\n0xA6F2\t0x4F5B\n0xA6F3\t0x4F55\n0xA6F4\t0x4F30\n0xA6F5\t0x4F50\n0xA6F6\t0x4F51\n0xA6F7\t0x4F3D\n0xA6F8\t0x4F3A\n0xA6F9\t0x4F38\n0xA6FA\t0x4F43\n0xA6FB\t0x4F54\n0xA6FC\t0x4F3C\n0xA6FD\t0x4F46\n0xA6FE\t0x4F63\n0xA740\t0x4F5C\n0xA741\t0x4F60\n0xA742\t0x4F2F\n0xA743\t0x4F4E\n0xA744\t0x4F36\n0xA745\t0x4F59\n0xA746\t0x4F5D\n0xA747\t0x4F48\n0xA748\t0x4F5A\n0xA749\t0x514C\n0xA74A\t0x514B\n0xA74B\t0x514D\n0xA74C\t0x5175\n0xA74D\t0x51B6\n0xA74E\t0x51B7\n0xA74F\t0x5225\n0xA750\t0x5224\n0xA751\t0x5229\n0xA752\t0x522A\n0xA753\t0x5228\n0xA754\t0x52AB\n0xA755\t0x52A9\n0xA756\t0x52AA\n0xA757\t0x52AC\n0xA758\t0x5323\n0xA759\t0x5373\n0xA75A\t0x5375\n0xA75B\t0x541D\n0xA75C\t0x542D\n0xA75D\t0x541E\n0xA75E\t0x543E\n0xA75F\t0x5426\n0xA760\t0x544E\n0xA761\t0x5427\n0xA762\t0x5446\n0xA763\t0x5443\n0xA764\t0x5433\n0xA765\t0x5448\n0xA766\t0x5442\n0xA767\t0x541B\n0xA768\t0x5429\n0xA769\t0x544A\n0xA76A\t0x5439\n0xA76B\t0x543B\n0xA76C\t0x5438\n0xA76D\t0x542E\n0xA76E\t0x5435\n0xA76F\t0x5436\n0xA770\t0x5420\n0xA771\t0x543C\n0xA772\t0x5440\n0xA773\t0x5431\n0xA774\t0x542B\n0xA775\t0x541F\n0xA776\t0x542C\n0xA777\t0x56EA\n0xA778\t0x56F0\n0xA779\t0x56E4\n0xA77A\t0x56EB\n0xA77B\t0x574A\n0xA77C\t0x5751\n0xA77D\t0x5740\n0xA77E\t0x574D\n0xA7A1\t0x5747\n0xA7A2\t0x574E\n0xA7A3\t0x573E\n0xA7A4\t0x5750\n0xA7A5\t0x574F\n0xA7A6\t0x573B\n0xA7A7\t0x58EF\n0xA7A8\t0x593E\n0xA7A9\t0x599D\n0xA7AA\t0x5992\n0xA7AB\t0x59A8\n0xA7AC\t0x599E\n0xA7AD\t0x59A3\n0xA7AE\t0x5999\n0xA7AF\t0x5996\n0xA7B0\t0x598D\n0xA7B1\t0x59A4\n0xA7B2\t0x5993\n0xA7B3\t0x598A\n0xA7B4\t0x59A5\n0xA7B5\t0x5B5D\n0xA7B6\t0x5B5C\n0xA7B7\t0x5B5A\n0xA7B8\t0x5B5B\n0xA7B9\t0x5B8C\n0xA7BA\t0x5B8B\n0xA7BB\t0x5B8F\n0xA7BC\t0x5C2C\n0xA7BD\t0x5C40\n0xA7BE\t0x5C41\n0xA7BF\t0x5C3F\n0xA7C0\t0x5C3E\n0xA7C1\t0x5C90\n0xA7C2\t0x5C91\n0xA7C3\t0x5C94\n0xA7C4\t0x5C8C\n0xA7C5\t0x5DEB\n0xA7C6\t0x5E0C\n0xA7C7\t0x5E8F\n0xA7C8\t0x5E87\n0xA7C9\t0x5E8A\n0xA7CA\t0x5EF7\n0xA7CB\t0x5F04\n0xA7CC\t0x5F1F\n0xA7CD\t0x5F64\n0xA7CE\t0x5F62\n0xA7CF\t0x5F77\n0xA7D0\t0x5F79\n0xA7D1\t0x5FD8\n0xA7D2\t0x5FCC\n0xA7D3\t0x5FD7\n0xA7D4\t0x5FCD\n0xA7D5\t0x5FF1\n0xA7D6\t0x5FEB\n0xA7D7\t0x5FF8\n0xA7D8\t0x5FEA\n0xA7D9\t0x6212\n0xA7DA\t0x6211\n0xA7DB\t0x6284\n0xA7DC\t0x6297\n0xA7DD\t0x6296\n0xA7DE\t0x6280\n0xA7DF\t0x6276\n0xA7E0\t0x6289\n0xA7E1\t0x626D\n0xA7E2\t0x628A\n0xA7E3\t0x627C\n0xA7E4\t0x627E\n0xA7E5\t0x6279\n0xA7E6\t0x6273\n0xA7E7\t0x6292\n0xA7E8\t0x626F\n0xA7E9\t0x6298\n0xA7EA\t0x626E\n0xA7EB\t0x6295\n0xA7EC\t0x6293\n0xA7ED\t0x6291\n0xA7EE\t0x6286\n0xA7EF\t0x6539\n0xA7F0\t0x653B\n0xA7F1\t0x6538\n0xA7F2\t0x65F1\n0xA7F3\t0x66F4\n0xA7F4\t0x675F\n0xA7F5\t0x674E\n0xA7F6\t0x674F\n0xA7F7\t0x6750\n0xA7F8\t0x6751\n0xA7F9\t0x675C\n0xA7FA\t0x6756\n0xA7FB\t0x675E\n0xA7FC\t0x6749\n0xA7FD\t0x6746\n0xA7FE\t0x6760\n0xA840\t0x6753\n0xA841\t0x6757\n0xA842\t0x6B65\n0xA843\t0x6BCF\n0xA844\t0x6C42\n0xA845\t0x6C5E\n0xA846\t0x6C99\n0xA847\t0x6C81\n0xA848\t0x6C88\n0xA849\t0x6C89\n0xA84A\t0x6C85\n0xA84B\t0x6C9B\n0xA84C\t0x6C6A\n0xA84D\t0x6C7A\n0xA84E\t0x6C90\n0xA84F\t0x6C70\n0xA850\t0x6C8C\n0xA851\t0x6C68\n0xA852\t0x6C96\n0xA853\t0x6C92\n0xA854\t0x6C7D\n0xA855\t0x6C83\n0xA856\t0x6C72\n0xA857\t0x6C7E\n0xA858\t0x6C74\n0xA859\t0x6C86\n0xA85A\t0x6C76\n0xA85B\t0x6C8D\n0xA85C\t0x6C94\n0xA85D\t0x6C98\n0xA85E\t0x6C82\n0xA85F\t0x7076\n0xA860\t0x707C\n0xA861\t0x707D\n0xA862\t0x7078\n0xA863\t0x7262\n0xA864\t0x7261\n0xA865\t0x7260\n0xA866\t0x72C4\n0xA867\t0x72C2\n0xA868\t0x7396\n0xA869\t0x752C\n0xA86A\t0x752B\n0xA86B\t0x7537\n0xA86C\t0x7538\n0xA86D\t0x7682\n0xA86E\t0x76EF\n0xA86F\t0x77E3\n0xA870\t0x79C1\n0xA871\t0x79C0\n0xA872\t0x79BF\n0xA873\t0x7A76\n0xA874\t0x7CFB\n0xA875\t0x7F55\n0xA876\t0x8096\n0xA877\t0x8093\n0xA878\t0x809D\n0xA879\t0x8098\n0xA87A\t0x809B\n0xA87B\t0x809A\n0xA87C\t0x80B2\n0xA87D\t0x826F\n0xA87E\t0x8292\n0xA8A1\t0x828B\n0xA8A2\t0x828D\n0xA8A3\t0x898B\n0xA8A4\t0x89D2\n0xA8A5\t0x8A00\n0xA8A6\t0x8C37\n0xA8A7\t0x8C46\n0xA8A8\t0x8C55\n0xA8A9\t0x8C9D\n0xA8AA\t0x8D64\n0xA8AB\t0x8D70\n0xA8AC\t0x8DB3\n0xA8AD\t0x8EAB\n0xA8AE\t0x8ECA\n0xA8AF\t0x8F9B\n0xA8B0\t0x8FB0\n0xA8B1\t0x8FC2\n0xA8B2\t0x8FC6\n0xA8B3\t0x8FC5\n0xA8B4\t0x8FC4\n0xA8B5\t0x5DE1\n0xA8B6\t0x9091\n0xA8B7\t0x90A2\n0xA8B8\t0x90AA\n0xA8B9\t0x90A6\n0xA8BA\t0x90A3\n0xA8BB\t0x9149\n0xA8BC\t0x91C6\n0xA8BD\t0x91CC\n0xA8BE\t0x9632\n0xA8BF\t0x962E\n0xA8C0\t0x9631\n0xA8C1\t0x962A\n0xA8C2\t0x962C\n0xA8C3\t0x4E26\n0xA8C4\t0x4E56\n0xA8C5\t0x4E73\n0xA8C6\t0x4E8B\n0xA8C7\t0x4E9B\n0xA8C8\t0x4E9E\n0xA8C9\t0x4EAB\n0xA8CA\t0x4EAC\n0xA8CB\t0x4F6F\n0xA8CC\t0x4F9D\n0xA8CD\t0x4F8D\n0xA8CE\t0x4F73\n0xA8CF\t0x4F7F\n0xA8D0\t0x4F6C\n0xA8D1\t0x4F9B\n0xA8D2\t0x4F8B\n0xA8D3\t0x4F86\n0xA8D4\t0x4F83\n0xA8D5\t0x4F70\n0xA8D6\t0x4F75\n0xA8D7\t0x4F88\n0xA8D8\t0x4F69\n0xA8D9\t0x4F7B\n0xA8DA\t0x4F96\n0xA8DB\t0x4F7E\n0xA8DC\t0x4F8F\n0xA8DD\t0x4F91\n0xA8DE\t0x4F7A\n0xA8DF\t0x5154\n0xA8E0\t0x5152\n0xA8E1\t0x5155\n0xA8E2\t0x5169\n0xA8E3\t0x5177\n0xA8E4\t0x5176\n0xA8E5\t0x5178\n0xA8E6\t0x51BD\n0xA8E7\t0x51FD\n0xA8E8\t0x523B\n0xA8E9\t0x5238\n0xA8EA\t0x5237\n0xA8EB\t0x523A\n0xA8EC\t0x5230\n0xA8ED\t0x522E\n0xA8EE\t0x5236\n0xA8EF\t0x5241\n0xA8F0\t0x52BE\n0xA8F1\t0x52BB\n0xA8F2\t0x5352\n0xA8F3\t0x5354\n0xA8F4\t0x5353\n0xA8F5\t0x5351\n0xA8F6\t0x5366\n0xA8F7\t0x5377\n0xA8F8\t0x5378\n0xA8F9\t0x5379\n0xA8FA\t0x53D6\n0xA8FB\t0x53D4\n0xA8FC\t0x53D7\n0xA8FD\t0x5473\n0xA8FE\t0x5475\n0xA940\t0x5496\n0xA941\t0x5478\n0xA942\t0x5495\n0xA943\t0x5480\n0xA944\t0x547B\n0xA945\t0x5477\n0xA946\t0x5484\n0xA947\t0x5492\n0xA948\t0x5486\n0xA949\t0x547C\n0xA94A\t0x5490\n0xA94B\t0x5471\n0xA94C\t0x5476\n0xA94D\t0x548C\n0xA94E\t0x549A\n0xA94F\t0x5462\n0xA950\t0x5468\n0xA951\t0x548B\n0xA952\t0x547D\n0xA953\t0x548E\n0xA954\t0x56FA\n0xA955\t0x5783\n0xA956\t0x5777\n0xA957\t0x576A\n0xA958\t0x5769\n0xA959\t0x5761\n0xA95A\t0x5766\n0xA95B\t0x5764\n0xA95C\t0x577C\n0xA95D\t0x591C\n0xA95E\t0x5949\n0xA95F\t0x5947\n0xA960\t0x5948\n0xA961\t0x5944\n0xA962\t0x5954\n0xA963\t0x59BE\n0xA964\t0x59BB\n0xA965\t0x59D4\n0xA966\t0x59B9\n0xA967\t0x59AE\n0xA968\t0x59D1\n0xA969\t0x59C6\n0xA96A\t0x59D0\n0xA96B\t0x59CD\n0xA96C\t0x59CB\n0xA96D\t0x59D3\n0xA96E\t0x59CA\n0xA96F\t0x59AF\n0xA970\t0x59B3\n0xA971\t0x59D2\n0xA972\t0x59C5\n0xA973\t0x5B5F\n0xA974\t0x5B64\n0xA975\t0x5B63\n0xA976\t0x5B97\n0xA977\t0x5B9A\n0xA978\t0x5B98\n0xA979\t0x5B9C\n0xA97A\t0x5B99\n0xA97B\t0x5B9B\n0xA97C\t0x5C1A\n0xA97D\t0x5C48\n0xA97E\t0x5C45\n0xA9A1\t0x5C46\n0xA9A2\t0x5CB7\n0xA9A3\t0x5CA1\n0xA9A4\t0x5CB8\n0xA9A5\t0x5CA9\n0xA9A6\t0x5CAB\n0xA9A7\t0x5CB1\n0xA9A8\t0x5CB3\n0xA9A9\t0x5E18\n0xA9AA\t0x5E1A\n0xA9AB\t0x5E16\n0xA9AC\t0x5E15\n0xA9AD\t0x5E1B\n0xA9AE\t0x5E11\n0xA9AF\t0x5E78\n0xA9B0\t0x5E9A\n0xA9B1\t0x5E97\n0xA9B2\t0x5E9C\n0xA9B3\t0x5E95\n0xA9B4\t0x5E96\n0xA9B5\t0x5EF6\n0xA9B6\t0x5F26\n0xA9B7\t0x5F27\n0xA9B8\t0x5F29\n0xA9B9\t0x5F80\n0xA9BA\t0x5F81\n0xA9BB\t0x5F7F\n0xA9BC\t0x5F7C\n0xA9BD\t0x5FDD\n0xA9BE\t0x5FE0\n0xA9BF\t0x5FFD\n0xA9C0\t0x5FF5\n0xA9C1\t0x5FFF\n0xA9C2\t0x600F\n0xA9C3\t0x6014\n0xA9C4\t0x602F\n0xA9C5\t0x6035\n0xA9C6\t0x6016\n0xA9C7\t0x602A\n0xA9C8\t0x6015\n0xA9C9\t0x6021\n0xA9CA\t0x6027\n0xA9CB\t0x6029\n0xA9CC\t0x602B\n0xA9CD\t0x601B\n0xA9CE\t0x6216\n0xA9CF\t0x6215\n0xA9D0\t0x623F\n0xA9D1\t0x623E\n0xA9D2\t0x6240\n0xA9D3\t0x627F\n0xA9D4\t0x62C9\n0xA9D5\t0x62CC\n0xA9D6\t0x62C4\n0xA9D7\t0x62BF\n0xA9D8\t0x62C2\n0xA9D9\t0x62B9\n0xA9DA\t0x62D2\n0xA9DB\t0x62DB\n0xA9DC\t0x62AB\n0xA9DD\t0x62D3\n0xA9DE\t0x62D4\n0xA9DF\t0x62CB\n0xA9E0\t0x62C8\n0xA9E1\t0x62A8\n0xA9E2\t0x62BD\n0xA9E3\t0x62BC\n0xA9E4\t0x62D0\n0xA9E5\t0x62D9\n0xA9E6\t0x62C7\n0xA9E7\t0x62CD\n0xA9E8\t0x62B5\n0xA9E9\t0x62DA\n0xA9EA\t0x62B1\n0xA9EB\t0x62D8\n0xA9EC\t0x62D6\n0xA9ED\t0x62D7\n0xA9EE\t0x62C6\n0xA9EF\t0x62AC\n0xA9F0\t0x62CE\n0xA9F1\t0x653E\n0xA9F2\t0x65A7\n0xA9F3\t0x65BC\n0xA9F4\t0x65FA\n0xA9F5\t0x6614\n0xA9F6\t0x6613\n0xA9F7\t0x660C\n0xA9F8\t0x6606\n0xA9F9\t0x6602\n0xA9FA\t0x660E\n0xA9FB\t0x6600\n0xA9FC\t0x660F\n0xA9FD\t0x6615\n0xA9FE\t0x660A\n0xAA40\t0x6607\n0xAA41\t0x670D\n0xAA42\t0x670B\n0xAA43\t0x676D\n0xAA44\t0x678B\n0xAA45\t0x6795\n0xAA46\t0x6771\n0xAA47\t0x679C\n0xAA48\t0x6773\n0xAA49\t0x6777\n0xAA4A\t0x6787\n0xAA4B\t0x679D\n0xAA4C\t0x6797\n0xAA4D\t0x676F\n0xAA4E\t0x6770\n0xAA4F\t0x677F\n0xAA50\t0x6789\n0xAA51\t0x677E\n0xAA52\t0x6790\n0xAA53\t0x6775\n0xAA54\t0x679A\n0xAA55\t0x6793\n0xAA56\t0x677C\n0xAA57\t0x676A\n0xAA58\t0x6772\n0xAA59\t0x6B23\n0xAA5A\t0x6B66\n0xAA5B\t0x6B67\n0xAA5C\t0x6B7F\n0xAA5D\t0x6C13\n0xAA5E\t0x6C1B\n0xAA5F\t0x6CE3\n0xAA60\t0x6CE8\n0xAA61\t0x6CF3\n0xAA62\t0x6CB1\n0xAA63\t0x6CCC\n0xAA64\t0x6CE5\n0xAA65\t0x6CB3\n0xAA66\t0x6CBD\n0xAA67\t0x6CBE\n0xAA68\t0x6CBC\n0xAA69\t0x6CE2\n0xAA6A\t0x6CAB\n0xAA6B\t0x6CD5\n0xAA6C\t0x6CD3\n0xAA6D\t0x6CB8\n0xAA6E\t0x6CC4\n0xAA6F\t0x6CB9\n0xAA70\t0x6CC1\n0xAA71\t0x6CAE\n0xAA72\t0x6CD7\n0xAA73\t0x6CC5\n0xAA74\t0x6CF1\n0xAA75\t0x6CBF\n0xAA76\t0x6CBB\n0xAA77\t0x6CE1\n0xAA78\t0x6CDB\n0xAA79\t0x6CCA\n0xAA7A\t0x6CAC\n0xAA7B\t0x6CEF\n0xAA7C\t0x6CDC\n0xAA7D\t0x6CD6\n0xAA7E\t0x6CE0\n0xAAA1\t0x7095\n0xAAA2\t0x708E\n0xAAA3\t0x7092\n0xAAA4\t0x708A\n0xAAA5\t0x7099\n0xAAA6\t0x722C\n0xAAA7\t0x722D\n0xAAA8\t0x7238\n0xAAA9\t0x7248\n0xAAAA\t0x7267\n0xAAAB\t0x7269\n0xAAAC\t0x72C0\n0xAAAD\t0x72CE\n0xAAAE\t0x72D9\n0xAAAF\t0x72D7\n0xAAB0\t0x72D0\n0xAAB1\t0x73A9\n0xAAB2\t0x73A8\n0xAAB3\t0x739F\n0xAAB4\t0x73AB\n0xAAB5\t0x73A5\n0xAAB6\t0x753D\n0xAAB7\t0x759D\n0xAAB8\t0x7599\n0xAAB9\t0x759A\n0xAABA\t0x7684\n0xAABB\t0x76C2\n0xAABC\t0x76F2\n0xAABD\t0x76F4\n0xAABE\t0x77E5\n0xAABF\t0x77FD\n0xAAC0\t0x793E\n0xAAC1\t0x7940\n0xAAC2\t0x7941\n0xAAC3\t0x79C9\n0xAAC4\t0x79C8\n0xAAC5\t0x7A7A\n0xAAC6\t0x7A79\n0xAAC7\t0x7AFA\n0xAAC8\t0x7CFE\n0xAAC9\t0x7F54\n0xAACA\t0x7F8C\n0xAACB\t0x7F8B\n0xAACC\t0x8005\n0xAACD\t0x80BA\n0xAACE\t0x80A5\n0xAACF\t0x80A2\n0xAAD0\t0x80B1\n0xAAD1\t0x80A1\n0xAAD2\t0x80AB\n0xAAD3\t0x80A9\n0xAAD4\t0x80B4\n0xAAD5\t0x80AA\n0xAAD6\t0x80AF\n0xAAD7\t0x81E5\n0xAAD8\t0x81FE\n0xAAD9\t0x820D\n0xAADA\t0x82B3\n0xAADB\t0x829D\n0xAADC\t0x8299\n0xAADD\t0x82AD\n0xAADE\t0x82BD\n0xAADF\t0x829F\n0xAAE0\t0x82B9\n0xAAE1\t0x82B1\n0xAAE2\t0x82AC\n0xAAE3\t0x82A5\n0xAAE4\t0x82AF\n0xAAE5\t0x82B8\n0xAAE6\t0x82A3\n0xAAE7\t0x82B0\n0xAAE8\t0x82BE\n0xAAE9\t0x82B7\n0xAAEA\t0x864E\n0xAAEB\t0x8671\n0xAAEC\t0x521D\n0xAAED\t0x8868\n0xAAEE\t0x8ECB\n0xAAEF\t0x8FCE\n0xAAF0\t0x8FD4\n0xAAF1\t0x8FD1\n0xAAF2\t0x90B5\n0xAAF3\t0x90B8\n0xAAF4\t0x90B1\n0xAAF5\t0x90B6\n0xAAF6\t0x91C7\n0xAAF7\t0x91D1\n0xAAF8\t0x9577\n0xAAF9\t0x9580\n0xAAFA\t0x961C\n0xAAFB\t0x9640\n0xAAFC\t0x963F\n0xAAFD\t0x963B\n0xAAFE\t0x9644\n0xAB40\t0x9642\n0xAB41\t0x96B9\n0xAB42\t0x96E8\n0xAB43\t0x9752\n0xAB44\t0x975E\n0xAB45\t0x4E9F\n0xAB46\t0x4EAD\n0xAB47\t0x4EAE\n0xAB48\t0x4FE1\n0xAB49\t0x4FB5\n0xAB4A\t0x4FAF\n0xAB4B\t0x4FBF\n0xAB4C\t0x4FE0\n0xAB4D\t0x4FD1\n0xAB4E\t0x4FCF\n0xAB4F\t0x4FDD\n0xAB50\t0x4FC3\n0xAB51\t0x4FB6\n0xAB52\t0x4FD8\n0xAB53\t0x4FDF\n0xAB54\t0x4FCA\n0xAB55\t0x4FD7\n0xAB56\t0x4FAE\n0xAB57\t0x4FD0\n0xAB58\t0x4FC4\n0xAB59\t0x4FC2\n0xAB5A\t0x4FDA\n0xAB5B\t0x4FCE\n0xAB5C\t0x4FDE\n0xAB5D\t0x4FB7\n0xAB5E\t0x5157\n0xAB5F\t0x5192\n0xAB60\t0x5191\n0xAB61\t0x51A0\n0xAB62\t0x524E\n0xAB63\t0x5243\n0xAB64\t0x524A\n0xAB65\t0x524D\n0xAB66\t0x524C\n0xAB67\t0x524B\n0xAB68\t0x5247\n0xAB69\t0x52C7\n0xAB6A\t0x52C9\n0xAB6B\t0x52C3\n0xAB6C\t0x52C1\n0xAB6D\t0x530D\n0xAB6E\t0x5357\n0xAB6F\t0x537B\n0xAB70\t0x539A\n0xAB71\t0x53DB\n0xAB72\t0x54AC\n0xAB73\t0x54C0\n0xAB74\t0x54A8\n0xAB75\t0x54CE\n0xAB76\t0x54C9\n0xAB77\t0x54B8\n0xAB78\t0x54A6\n0xAB79\t0x54B3\n0xAB7A\t0x54C7\n0xAB7B\t0x54C2\n0xAB7C\t0x54BD\n0xAB7D\t0x54AA\n0xAB7E\t0x54C1\n0xABA1\t0x54C4\n0xABA2\t0x54C8\n0xABA3\t0x54AF\n0xABA4\t0x54AB\n0xABA5\t0x54B1\n0xABA6\t0x54BB\n0xABA7\t0x54A9\n0xABA8\t0x54A7\n0xABA9\t0x54BF\n0xABAA\t0x56FF\n0xABAB\t0x5782\n0xABAC\t0x578B\n0xABAD\t0x57A0\n0xABAE\t0x57A3\n0xABAF\t0x57A2\n0xABB0\t0x57CE\n0xABB1\t0x57AE\n0xABB2\t0x5793\n0xABB3\t0x5955\n0xABB4\t0x5951\n0xABB5\t0x594F\n0xABB6\t0x594E\n0xABB7\t0x5950\n0xABB8\t0x59DC\n0xABB9\t0x59D8\n0xABBA\t0x59FF\n0xABBB\t0x59E3\n0xABBC\t0x59E8\n0xABBD\t0x5A03\n0xABBE\t0x59E5\n0xABBF\t0x59EA\n0xABC0\t0x59DA\n0xABC1\t0x59E6\n0xABC2\t0x5A01\n0xABC3\t0x59FB\n0xABC4\t0x5B69\n0xABC5\t0x5BA3\n0xABC6\t0x5BA6\n0xABC7\t0x5BA4\n0xABC8\t0x5BA2\n0xABC9\t0x5BA5\n0xABCA\t0x5C01\n0xABCB\t0x5C4E\n0xABCC\t0x5C4F\n0xABCD\t0x5C4D\n0xABCE\t0x5C4B\n0xABCF\t0x5CD9\n0xABD0\t0x5CD2\n0xABD1\t0x5DF7\n0xABD2\t0x5E1D\n0xABD3\t0x5E25\n0xABD4\t0x5E1F\n0xABD5\t0x5E7D\n0xABD6\t0x5EA0\n0xABD7\t0x5EA6\n0xABD8\t0x5EFA\n0xABD9\t0x5F08\n0xABDA\t0x5F2D\n0xABDB\t0x5F65\n0xABDC\t0x5F88\n0xABDD\t0x5F85\n0xABDE\t0x5F8A\n0xABDF\t0x5F8B\n0xABE0\t0x5F87\n0xABE1\t0x5F8C\n0xABE2\t0x5F89\n0xABE3\t0x6012\n0xABE4\t0x601D\n0xABE5\t0x6020\n0xABE6\t0x6025\n0xABE7\t0x600E\n0xABE8\t0x6028\n0xABE9\t0x604D\n0xABEA\t0x6070\n0xABEB\t0x6068\n0xABEC\t0x6062\n0xABED\t0x6046\n0xABEE\t0x6043\n0xABEF\t0x606C\n0xABF0\t0x606B\n0xABF1\t0x606A\n0xABF2\t0x6064\n0xABF3\t0x6241\n0xABF4\t0x62DC\n0xABF5\t0x6316\n0xABF6\t0x6309\n0xABF7\t0x62FC\n0xABF8\t0x62ED\n0xABF9\t0x6301\n0xABFA\t0x62EE\n0xABFB\t0x62FD\n0xABFC\t0x6307\n0xABFD\t0x62F1\n0xABFE\t0x62F7\n0xAC40\t0x62EF\n0xAC41\t0x62EC\n0xAC42\t0x62FE\n0xAC43\t0x62F4\n0xAC44\t0x6311\n0xAC45\t0x6302\n0xAC46\t0x653F\n0xAC47\t0x6545\n0xAC48\t0x65AB\n0xAC49\t0x65BD\n0xAC4A\t0x65E2\n0xAC4B\t0x6625\n0xAC4C\t0x662D\n0xAC4D\t0x6620\n0xAC4E\t0x6627\n0xAC4F\t0x662F\n0xAC50\t0x661F\n0xAC51\t0x6628\n0xAC52\t0x6631\n0xAC53\t0x6624\n0xAC54\t0x66F7\n0xAC55\t0x67FF\n0xAC56\t0x67D3\n0xAC57\t0x67F1\n0xAC58\t0x67D4\n0xAC59\t0x67D0\n0xAC5A\t0x67EC\n0xAC5B\t0x67B6\n0xAC5C\t0x67AF\n0xAC5D\t0x67F5\n0xAC5E\t0x67E9\n0xAC5F\t0x67EF\n0xAC60\t0x67C4\n0xAC61\t0x67D1\n0xAC62\t0x67B4\n0xAC63\t0x67DA\n0xAC64\t0x67E5\n0xAC65\t0x67B8\n0xAC66\t0x67CF\n0xAC67\t0x67DE\n0xAC68\t0x67F3\n0xAC69\t0x67B0\n0xAC6A\t0x67D9\n0xAC6B\t0x67E2\n0xAC6C\t0x67DD\n0xAC6D\t0x67D2\n0xAC6E\t0x6B6A\n0xAC6F\t0x6B83\n0xAC70\t0x6B86\n0xAC71\t0x6BB5\n0xAC72\t0x6BD2\n0xAC73\t0x6BD7\n0xAC74\t0x6C1F\n0xAC75\t0x6CC9\n0xAC76\t0x6D0B\n0xAC77\t0x6D32\n0xAC78\t0x6D2A\n0xAC79\t0x6D41\n0xAC7A\t0x6D25\n0xAC7B\t0x6D0C\n0xAC7C\t0x6D31\n0xAC7D\t0x6D1E\n0xAC7E\t0x6D17\n0xACA1\t0x6D3B\n0xACA2\t0x6D3D\n0xACA3\t0x6D3E\n0xACA4\t0x6D36\n0xACA5\t0x6D1B\n0xACA6\t0x6CF5\n0xACA7\t0x6D39\n0xACA8\t0x6D27\n0xACA9\t0x6D38\n0xACAA\t0x6D29\n0xACAB\t0x6D2E\n0xACAC\t0x6D35\n0xACAD\t0x6D0E\n0xACAE\t0x6D2B\n0xACAF\t0x70AB\n0xACB0\t0x70BA\n0xACB1\t0x70B3\n0xACB2\t0x70AC\n0xACB3\t0x70AF\n0xACB4\t0x70AD\n0xACB5\t0x70B8\n0xACB6\t0x70AE\n0xACB7\t0x70A4\n0xACB8\t0x7230\n0xACB9\t0x7272\n0xACBA\t0x726F\n0xACBB\t0x7274\n0xACBC\t0x72E9\n0xACBD\t0x72E0\n0xACBE\t0x72E1\n0xACBF\t0x73B7\n0xACC0\t0x73CA\n0xACC1\t0x73BB\n0xACC2\t0x73B2\n0xACC3\t0x73CD\n0xACC4\t0x73C0\n0xACC5\t0x73B3\n0xACC6\t0x751A\n0xACC7\t0x752D\n0xACC8\t0x754F\n0xACC9\t0x754C\n0xACCA\t0x754E\n0xACCB\t0x754B\n0xACCC\t0x75AB\n0xACCD\t0x75A4\n0xACCE\t0x75A5\n0xACCF\t0x75A2\n0xACD0\t0x75A3\n0xACD1\t0x7678\n0xACD2\t0x7686\n0xACD3\t0x7687\n0xACD4\t0x7688\n0xACD5\t0x76C8\n0xACD6\t0x76C6\n0xACD7\t0x76C3\n0xACD8\t0x76C5\n0xACD9\t0x7701\n0xACDA\t0x76F9\n0xACDB\t0x76F8\n0xACDC\t0x7709\n0xACDD\t0x770B\n0xACDE\t0x76FE\n0xACDF\t0x76FC\n0xACE0\t0x7707\n0xACE1\t0x77DC\n0xACE2\t0x7802\n0xACE3\t0x7814\n0xACE4\t0x780C\n0xACE5\t0x780D\n0xACE6\t0x7946\n0xACE7\t0x7949\n0xACE8\t0x7948\n0xACE9\t0x7947\n0xACEA\t0x79B9\n0xACEB\t0x79BA\n0xACEC\t0x79D1\n0xACED\t0x79D2\n0xACEE\t0x79CB\n0xACEF\t0x7A7F\n0xACF0\t0x7A81\n0xACF1\t0x7AFF\n0xACF2\t0x7AFD\n0xACF3\t0x7C7D\n0xACF4\t0x7D02\n0xACF5\t0x7D05\n0xACF6\t0x7D00\n0xACF7\t0x7D09\n0xACF8\t0x7D07\n0xACF9\t0x7D04\n0xACFA\t0x7D06\n0xACFB\t0x7F38\n0xACFC\t0x7F8E\n0xACFD\t0x7FBF\n0xACFE\t0x8004\n0xAD40\t0x8010\n0xAD41\t0x800D\n0xAD42\t0x8011\n0xAD43\t0x8036\n0xAD44\t0x80D6\n0xAD45\t0x80E5\n0xAD46\t0x80DA\n0xAD47\t0x80C3\n0xAD48\t0x80C4\n0xAD49\t0x80CC\n0xAD4A\t0x80E1\n0xAD4B\t0x80DB\n0xAD4C\t0x80CE\n0xAD4D\t0x80DE\n0xAD4E\t0x80E4\n0xAD4F\t0x80DD\n0xAD50\t0x81F4\n0xAD51\t0x8222\n0xAD52\t0x82E7\n0xAD53\t0x8303\n0xAD54\t0x8305\n0xAD55\t0x82E3\n0xAD56\t0x82DB\n0xAD57\t0x82E6\n0xAD58\t0x8304\n0xAD59\t0x82E5\n0xAD5A\t0x8302\n0xAD5B\t0x8309\n0xAD5C\t0x82D2\n0xAD5D\t0x82D7\n0xAD5E\t0x82F1\n0xAD5F\t0x8301\n0xAD60\t0x82DC\n0xAD61\t0x82D4\n0xAD62\t0x82D1\n0xAD63\t0x82DE\n0xAD64\t0x82D3\n0xAD65\t0x82DF\n0xAD66\t0x82EF\n0xAD67\t0x8306\n0xAD68\t0x8650\n0xAD69\t0x8679\n0xAD6A\t0x867B\n0xAD6B\t0x867A\n0xAD6C\t0x884D\n0xAD6D\t0x886B\n0xAD6E\t0x8981\n0xAD6F\t0x89D4\n0xAD70\t0x8A08\n0xAD71\t0x8A02\n0xAD72\t0x8A03\n0xAD73\t0x8C9E\n0xAD74\t0x8CA0\n0xAD75\t0x8D74\n0xAD76\t0x8D73\n0xAD77\t0x8DB4\n0xAD78\t0x8ECD\n0xAD79\t0x8ECC\n0xAD7A\t0x8FF0\n0xAD7B\t0x8FE6\n0xAD7C\t0x8FE2\n0xAD7D\t0x8FEA\n0xAD7E\t0x8FE5\n0xADA1\t0x8FED\n0xADA2\t0x8FEB\n0xADA3\t0x8FE4\n0xADA4\t0x8FE8\n0xADA5\t0x90CA\n0xADA6\t0x90CE\n0xADA7\t0x90C1\n0xADA8\t0x90C3\n0xADA9\t0x914B\n0xADAA\t0x914A\n0xADAB\t0x91CD\n0xADAC\t0x9582\n0xADAD\t0x9650\n0xADAE\t0x964B\n0xADAF\t0x964C\n0xADB0\t0x964D\n0xADB1\t0x9762\n0xADB2\t0x9769\n0xADB3\t0x97CB\n0xADB4\t0x97ED\n0xADB5\t0x97F3\n0xADB6\t0x9801\n0xADB7\t0x98A8\n0xADB8\t0x98DB\n0xADB9\t0x98DF\n0xADBA\t0x9996\n0xADBB\t0x9999\n0xADBC\t0x4E58\n0xADBD\t0x4EB3\n0xADBE\t0x500C\n0xADBF\t0x500D\n0xADC0\t0x5023\n0xADC1\t0x4FEF\n0xADC2\t0x5026\n0xADC3\t0x5025\n0xADC4\t0x4FF8\n0xADC5\t0x5029\n0xADC6\t0x5016\n0xADC7\t0x5006\n0xADC8\t0x503C\n0xADC9\t0x501F\n0xADCA\t0x501A\n0xADCB\t0x5012\n0xADCC\t0x5011\n0xADCD\t0x4FFA\n0xADCE\t0x5000\n0xADCF\t0x5014\n0xADD0\t0x5028\n0xADD1\t0x4FF1\n0xADD2\t0x5021\n0xADD3\t0x500B\n0xADD4\t0x5019\n0xADD5\t0x5018\n0xADD6\t0x4FF3\n0xADD7\t0x4FEE\n0xADD8\t0x502D\n0xADD9\t0x502A\n0xADDA\t0x4FFE\n0xADDB\t0x502B\n0xADDC\t0x5009\n0xADDD\t0x517C\n0xADDE\t0x51A4\n0xADDF\t0x51A5\n0xADE0\t0x51A2\n0xADE1\t0x51CD\n0xADE2\t0x51CC\n0xADE3\t0x51C6\n0xADE4\t0x51CB\n0xADE5\t0x5256\n0xADE6\t0x525C\n0xADE7\t0x5254\n0xADE8\t0x525B\n0xADE9\t0x525D\n0xADEA\t0x532A\n0xADEB\t0x537F\n0xADEC\t0x539F\n0xADED\t0x539D\n0xADEE\t0x53DF\n0xADEF\t0x54E8\n0xADF0\t0x5510\n0xADF1\t0x5501\n0xADF2\t0x5537\n0xADF3\t0x54FC\n0xADF4\t0x54E5\n0xADF5\t0x54F2\n0xADF6\t0x5506\n0xADF7\t0x54FA\n0xADF8\t0x5514\n0xADF9\t0x54E9\n0xADFA\t0x54ED\n0xADFB\t0x54E1\n0xADFC\t0x5509\n0xADFD\t0x54EE\n0xADFE\t0x54EA\n0xAE40\t0x54E6\n0xAE41\t0x5527\n0xAE42\t0x5507\n0xAE43\t0x54FD\n0xAE44\t0x550F\n0xAE45\t0x5703\n0xAE46\t0x5704\n0xAE47\t0x57C2\n0xAE48\t0x57D4\n0xAE49\t0x57CB\n0xAE4A\t0x57C3\n0xAE4B\t0x5809\n0xAE4C\t0x590F\n0xAE4D\t0x5957\n0xAE4E\t0x5958\n0xAE4F\t0x595A\n0xAE50\t0x5A11\n0xAE51\t0x5A18\n0xAE52\t0x5A1C\n0xAE53\t0x5A1F\n0xAE54\t0x5A1B\n0xAE55\t0x5A13\n0xAE56\t0x59EC\n0xAE57\t0x5A20\n0xAE58\t0x5A23\n0xAE59\t0x5A29\n0xAE5A\t0x5A25\n0xAE5B\t0x5A0C\n0xAE5C\t0x5A09\n0xAE5D\t0x5B6B\n0xAE5E\t0x5C58\n0xAE5F\t0x5BB0\n0xAE60\t0x5BB3\n0xAE61\t0x5BB6\n0xAE62\t0x5BB4\n0xAE63\t0x5BAE\n0xAE64\t0x5BB5\n0xAE65\t0x5BB9\n0xAE66\t0x5BB8\n0xAE67\t0x5C04\n0xAE68\t0x5C51\n0xAE69\t0x5C55\n0xAE6A\t0x5C50\n0xAE6B\t0x5CED\n0xAE6C\t0x5CFD\n0xAE6D\t0x5CFB\n0xAE6E\t0x5CEA\n0xAE6F\t0x5CE8\n0xAE70\t0x5CF0\n0xAE71\t0x5CF6\n0xAE72\t0x5D01\n0xAE73\t0x5CF4\n0xAE74\t0x5DEE\n0xAE75\t0x5E2D\n0xAE76\t0x5E2B\n0xAE77\t0x5EAB\n0xAE78\t0x5EAD\n0xAE79\t0x5EA7\n0xAE7A\t0x5F31\n0xAE7B\t0x5F92\n0xAE7C\t0x5F91\n0xAE7D\t0x5F90\n0xAE7E\t0x6059\n0xAEA1\t0x6063\n0xAEA2\t0x6065\n0xAEA3\t0x6050\n0xAEA4\t0x6055\n0xAEA5\t0x606D\n0xAEA6\t0x6069\n0xAEA7\t0x606F\n0xAEA8\t0x6084\n0xAEA9\t0x609F\n0xAEAA\t0x609A\n0xAEAB\t0x608D\n0xAEAC\t0x6094\n0xAEAD\t0x608C\n0xAEAE\t0x6085\n0xAEAF\t0x6096\n0xAEB0\t0x6247\n0xAEB1\t0x62F3\n0xAEB2\t0x6308\n0xAEB3\t0x62FF\n0xAEB4\t0x634E\n0xAEB5\t0x633E\n0xAEB6\t0x632F\n0xAEB7\t0x6355\n0xAEB8\t0x6342\n0xAEB9\t0x6346\n0xAEBA\t0x634F\n0xAEBB\t0x6349\n0xAEBC\t0x633A\n0xAEBD\t0x6350\n0xAEBE\t0x633D\n0xAEBF\t0x632A\n0xAEC0\t0x632B\n0xAEC1\t0x6328\n0xAEC2\t0x634D\n0xAEC3\t0x634C\n0xAEC4\t0x6548\n0xAEC5\t0x6549\n0xAEC6\t0x6599\n0xAEC7\t0x65C1\n0xAEC8\t0x65C5\n0xAEC9\t0x6642\n0xAECA\t0x6649\n0xAECB\t0x664F\n0xAECC\t0x6643\n0xAECD\t0x6652\n0xAECE\t0x664C\n0xAECF\t0x6645\n0xAED0\t0x6641\n0xAED1\t0x66F8\n0xAED2\t0x6714\n0xAED3\t0x6715\n0xAED4\t0x6717\n0xAED5\t0x6821\n0xAED6\t0x6838\n0xAED7\t0x6848\n0xAED8\t0x6846\n0xAED9\t0x6853\n0xAEDA\t0x6839\n0xAEDB\t0x6842\n0xAEDC\t0x6854\n0xAEDD\t0x6829\n0xAEDE\t0x68B3\n0xAEDF\t0x6817\n0xAEE0\t0x684C\n0xAEE1\t0x6851\n0xAEE2\t0x683D\n0xAEE3\t0x67F4\n0xAEE4\t0x6850\n0xAEE5\t0x6840\n0xAEE6\t0x683C\n0xAEE7\t0x6843\n0xAEE8\t0x682A\n0xAEE9\t0x6845\n0xAEEA\t0x6813\n0xAEEB\t0x6818\n0xAEEC\t0x6841\n0xAEED\t0x6B8A\n0xAEEE\t0x6B89\n0xAEEF\t0x6BB7\n0xAEF0\t0x6C23\n0xAEF1\t0x6C27\n0xAEF2\t0x6C28\n0xAEF3\t0x6C26\n0xAEF4\t0x6C24\n0xAEF5\t0x6CF0\n0xAEF6\t0x6D6A\n0xAEF7\t0x6D95\n0xAEF8\t0x6D88\n0xAEF9\t0x6D87\n0xAEFA\t0x6D66\n0xAEFB\t0x6D78\n0xAEFC\t0x6D77\n0xAEFD\t0x6D59\n0xAEFE\t0x6D93\n0xAF40\t0x6D6C\n0xAF41\t0x6D89\n0xAF42\t0x6D6E\n0xAF43\t0x6D5A\n0xAF44\t0x6D74\n0xAF45\t0x6D69\n0xAF46\t0x6D8C\n0xAF47\t0x6D8A\n0xAF48\t0x6D79\n0xAF49\t0x6D85\n0xAF4A\t0x6D65\n0xAF4B\t0x6D94\n0xAF4C\t0x70CA\n0xAF4D\t0x70D8\n0xAF4E\t0x70E4\n0xAF4F\t0x70D9\n0xAF50\t0x70C8\n0xAF51\t0x70CF\n0xAF52\t0x7239\n0xAF53\t0x7279\n0xAF54\t0x72FC\n0xAF55\t0x72F9\n0xAF56\t0x72FD\n0xAF57\t0x72F8\n0xAF58\t0x72F7\n0xAF59\t0x7386\n0xAF5A\t0x73ED\n0xAF5B\t0x7409\n0xAF5C\t0x73EE\n0xAF5D\t0x73E0\n0xAF5E\t0x73EA\n0xAF5F\t0x73DE\n0xAF60\t0x7554\n0xAF61\t0x755D\n0xAF62\t0x755C\n0xAF63\t0x755A\n0xAF64\t0x7559\n0xAF65\t0x75BE\n0xAF66\t0x75C5\n0xAF67\t0x75C7\n0xAF68\t0x75B2\n0xAF69\t0x75B3\n0xAF6A\t0x75BD\n0xAF6B\t0x75BC\n0xAF6C\t0x75B9\n0xAF6D\t0x75C2\n0xAF6E\t0x75B8\n0xAF6F\t0x768B\n0xAF70\t0x76B0\n0xAF71\t0x76CA\n0xAF72\t0x76CD\n0xAF73\t0x76CE\n0xAF74\t0x7729\n0xAF75\t0x771F\n0xAF76\t0x7720\n0xAF77\t0x7728\n0xAF78\t0x77E9\n0xAF79\t0x7830\n0xAF7A\t0x7827\n0xAF7B\t0x7838\n0xAF7C\t0x781D\n0xAF7D\t0x7834\n0xAF7E\t0x7837\n0xAFA1\t0x7825\n0xAFA2\t0x782D\n0xAFA3\t0x7820\n0xAFA4\t0x781F\n0xAFA5\t0x7832\n0xAFA6\t0x7955\n0xAFA7\t0x7950\n0xAFA8\t0x7960\n0xAFA9\t0x795F\n0xAFAA\t0x7956\n0xAFAB\t0x795E\n0xAFAC\t0x795D\n0xAFAD\t0x7957\n0xAFAE\t0x795A\n0xAFAF\t0x79E4\n0xAFB0\t0x79E3\n0xAFB1\t0x79E7\n0xAFB2\t0x79DF\n0xAFB3\t0x79E6\n0xAFB4\t0x79E9\n0xAFB5\t0x79D8\n0xAFB6\t0x7A84\n0xAFB7\t0x7A88\n0xAFB8\t0x7AD9\n0xAFB9\t0x7B06\n0xAFBA\t0x7B11\n0xAFBB\t0x7C89\n0xAFBC\t0x7D21\n0xAFBD\t0x7D17\n0xAFBE\t0x7D0B\n0xAFBF\t0x7D0A\n0xAFC0\t0x7D20\n0xAFC1\t0x7D22\n0xAFC2\t0x7D14\n0xAFC3\t0x7D10\n0xAFC4\t0x7D15\n0xAFC5\t0x7D1A\n0xAFC6\t0x7D1C\n0xAFC7\t0x7D0D\n0xAFC8\t0x7D19\n0xAFC9\t0x7D1B\n0xAFCA\t0x7F3A\n0xAFCB\t0x7F5F\n0xAFCC\t0x7F94\n0xAFCD\t0x7FC5\n0xAFCE\t0x7FC1\n0xAFCF\t0x8006\n0xAFD0\t0x8018\n0xAFD1\t0x8015\n0xAFD2\t0x8019\n0xAFD3\t0x8017\n0xAFD4\t0x803D\n0xAFD5\t0x803F\n0xAFD6\t0x80F1\n0xAFD7\t0x8102\n0xAFD8\t0x80F0\n0xAFD9\t0x8105\n0xAFDA\t0x80ED\n0xAFDB\t0x80F4\n0xAFDC\t0x8106\n0xAFDD\t0x80F8\n0xAFDE\t0x80F3\n0xAFDF\t0x8108\n0xAFE0\t0x80FD\n0xAFE1\t0x810A\n0xAFE2\t0x80FC\n0xAFE3\t0x80EF\n0xAFE4\t0x81ED\n0xAFE5\t0x81EC\n0xAFE6\t0x8200\n0xAFE7\t0x8210\n0xAFE8\t0x822A\n0xAFE9\t0x822B\n0xAFEA\t0x8228\n0xAFEB\t0x822C\n0xAFEC\t0x82BB\n0xAFED\t0x832B\n0xAFEE\t0x8352\n0xAFEF\t0x8354\n0xAFF0\t0x834A\n0xAFF1\t0x8338\n0xAFF2\t0x8350\n0xAFF3\t0x8349\n0xAFF4\t0x8335\n0xAFF5\t0x8334\n0xAFF6\t0x834F\n0xAFF7\t0x8332\n0xAFF8\t0x8339\n0xAFF9\t0x8336\n0xAFFA\t0x8317\n0xAFFB\t0x8340\n0xAFFC\t0x8331\n0xAFFD\t0x8328\n0xAFFE\t0x8343\n0xB040\t0x8654\n0xB041\t0x868A\n0xB042\t0x86AA\n0xB043\t0x8693\n0xB044\t0x86A4\n0xB045\t0x86A9\n0xB046\t0x868C\n0xB047\t0x86A3\n0xB048\t0x869C\n0xB049\t0x8870\n0xB04A\t0x8877\n0xB04B\t0x8881\n0xB04C\t0x8882\n0xB04D\t0x887D\n0xB04E\t0x8879\n0xB04F\t0x8A18\n0xB050\t0x8A10\n0xB051\t0x8A0E\n0xB052\t0x8A0C\n0xB053\t0x8A15\n0xB054\t0x8A0A\n0xB055\t0x8A17\n0xB056\t0x8A13\n0xB057\t0x8A16\n0xB058\t0x8A0F\n0xB059\t0x8A11\n0xB05A\t0x8C48\n0xB05B\t0x8C7A\n0xB05C\t0x8C79\n0xB05D\t0x8CA1\n0xB05E\t0x8CA2\n0xB05F\t0x8D77\n0xB060\t0x8EAC\n0xB061\t0x8ED2\n0xB062\t0x8ED4\n0xB063\t0x8ECF\n0xB064\t0x8FB1\n0xB065\t0x9001\n0xB066\t0x9006\n0xB067\t0x8FF7\n0xB068\t0x9000\n0xB069\t0x8FFA\n0xB06A\t0x8FF4\n0xB06B\t0x9003\n0xB06C\t0x8FFD\n0xB06D\t0x9005\n0xB06E\t0x8FF8\n0xB06F\t0x9095\n0xB070\t0x90E1\n0xB071\t0x90DD\n0xB072\t0x90E2\n0xB073\t0x9152\n0xB074\t0x914D\n0xB075\t0x914C\n0xB076\t0x91D8\n0xB077\t0x91DD\n0xB078\t0x91D7\n0xB079\t0x91DC\n0xB07A\t0x91D9\n0xB07B\t0x9583\n0xB07C\t0x9662\n0xB07D\t0x9663\n0xB07E\t0x9661\n0xB0A1\t0x965B\n0xB0A2\t0x965D\n0xB0A3\t0x9664\n0xB0A4\t0x9658\n0xB0A5\t0x965E\n0xB0A6\t0x96BB\n0xB0A7\t0x98E2\n0xB0A8\t0x99AC\n0xB0A9\t0x9AA8\n0xB0AA\t0x9AD8\n0xB0AB\t0x9B25\n0xB0AC\t0x9B32\n0xB0AD\t0x9B3C\n0xB0AE\t0x4E7E\n0xB0AF\t0x507A\n0xB0B0\t0x507D\n0xB0B1\t0x505C\n0xB0B2\t0x5047\n0xB0B3\t0x5043\n0xB0B4\t0x504C\n0xB0B5\t0x505A\n0xB0B6\t0x5049\n0xB0B7\t0x5065\n0xB0B8\t0x5076\n0xB0B9\t0x504E\n0xB0BA\t0x5055\n0xB0BB\t0x5075\n0xB0BC\t0x5074\n0xB0BD\t0x5077\n0xB0BE\t0x504F\n0xB0BF\t0x500F\n0xB0C0\t0x506F\n0xB0C1\t0x506D\n0xB0C2\t0x515C\n0xB0C3\t0x5195\n0xB0C4\t0x51F0\n0xB0C5\t0x526A\n0xB0C6\t0x526F\n0xB0C7\t0x52D2\n0xB0C8\t0x52D9\n0xB0C9\t0x52D8\n0xB0CA\t0x52D5\n0xB0CB\t0x5310\n0xB0CC\t0x530F\n0xB0CD\t0x5319\n0xB0CE\t0x533F\n0xB0CF\t0x5340\n0xB0D0\t0x533E\n0xB0D1\t0x53C3\n0xB0D2\t0x66FC\n0xB0D3\t0x5546\n0xB0D4\t0x556A\n0xB0D5\t0x5566\n0xB0D6\t0x5544\n0xB0D7\t0x555E\n0xB0D8\t0x5561\n0xB0D9\t0x5543\n0xB0DA\t0x554A\n0xB0DB\t0x5531\n0xB0DC\t0x5556\n0xB0DD\t0x554F\n0xB0DE\t0x5555\n0xB0DF\t0x552F\n0xB0E0\t0x5564\n0xB0E1\t0x5538\n0xB0E2\t0x552E\n0xB0E3\t0x555C\n0xB0E4\t0x552C\n0xB0E5\t0x5563\n0xB0E6\t0x5533\n0xB0E7\t0x5541\n0xB0E8\t0x5557\n0xB0E9\t0x5708\n0xB0EA\t0x570B\n0xB0EB\t0x5709\n0xB0EC\t0x57DF\n0xB0ED\t0x5805\n0xB0EE\t0x580A\n0xB0EF\t0x5806\n0xB0F0\t0x57E0\n0xB0F1\t0x57E4\n0xB0F2\t0x57FA\n0xB0F3\t0x5802\n0xB0F4\t0x5835\n0xB0F5\t0x57F7\n0xB0F6\t0x57F9\n0xB0F7\t0x5920\n0xB0F8\t0x5962\n0xB0F9\t0x5A36\n0xB0FA\t0x5A41\n0xB0FB\t0x5A49\n0xB0FC\t0x5A66\n0xB0FD\t0x5A6A\n0xB0FE\t0x5A40\n0xB140\t0x5A3C\n0xB141\t0x5A62\n0xB142\t0x5A5A\n0xB143\t0x5A46\n0xB144\t0x5A4A\n0xB145\t0x5B70\n0xB146\t0x5BC7\n0xB147\t0x5BC5\n0xB148\t0x5BC4\n0xB149\t0x5BC2\n0xB14A\t0x5BBF\n0xB14B\t0x5BC6\n0xB14C\t0x5C09\n0xB14D\t0x5C08\n0xB14E\t0x5C07\n0xB14F\t0x5C60\n0xB150\t0x5C5C\n0xB151\t0x5C5D\n0xB152\t0x5D07\n0xB153\t0x5D06\n0xB154\t0x5D0E\n0xB155\t0x5D1B\n0xB156\t0x5D16\n0xB157\t0x5D22\n0xB158\t0x5D11\n0xB159\t0x5D29\n0xB15A\t0x5D14\n0xB15B\t0x5D19\n0xB15C\t0x5D24\n0xB15D\t0x5D27\n0xB15E\t0x5D17\n0xB15F\t0x5DE2\n0xB160\t0x5E38\n0xB161\t0x5E36\n0xB162\t0x5E33\n0xB163\t0x5E37\n0xB164\t0x5EB7\n0xB165\t0x5EB8\n0xB166\t0x5EB6\n0xB167\t0x5EB5\n0xB168\t0x5EBE\n0xB169\t0x5F35\n0xB16A\t0x5F37\n0xB16B\t0x5F57\n0xB16C\t0x5F6C\n0xB16D\t0x5F69\n0xB16E\t0x5F6B\n0xB16F\t0x5F97\n0xB170\t0x5F99\n0xB171\t0x5F9E\n0xB172\t0x5F98\n0xB173\t0x5FA1\n0xB174\t0x5FA0\n0xB175\t0x5F9C\n0xB176\t0x607F\n0xB177\t0x60A3\n0xB178\t0x6089\n0xB179\t0x60A0\n0xB17A\t0x60A8\n0xB17B\t0x60CB\n0xB17C\t0x60B4\n0xB17D\t0x60E6\n0xB17E\t0x60BD\n0xB1A1\t0x60C5\n0xB1A2\t0x60BB\n0xB1A3\t0x60B5\n0xB1A4\t0x60DC\n0xB1A5\t0x60BC\n0xB1A6\t0x60D8\n0xB1A7\t0x60D5\n0xB1A8\t0x60C6\n0xB1A9\t0x60DF\n0xB1AA\t0x60B8\n0xB1AB\t0x60DA\n0xB1AC\t0x60C7\n0xB1AD\t0x621A\n0xB1AE\t0x621B\n0xB1AF\t0x6248\n0xB1B0\t0x63A0\n0xB1B1\t0x63A7\n0xB1B2\t0x6372\n0xB1B3\t0x6396\n0xB1B4\t0x63A2\n0xB1B5\t0x63A5\n0xB1B6\t0x6377\n0xB1B7\t0x6367\n0xB1B8\t0x6398\n0xB1B9\t0x63AA\n0xB1BA\t0x6371\n0xB1BB\t0x63A9\n0xB1BC\t0x6389\n0xB1BD\t0x6383\n0xB1BE\t0x639B\n0xB1BF\t0x636B\n0xB1C0\t0x63A8\n0xB1C1\t0x6384\n0xB1C2\t0x6388\n0xB1C3\t0x6399\n0xB1C4\t0x63A1\n0xB1C5\t0x63AC\n0xB1C6\t0x6392\n0xB1C7\t0x638F\n0xB1C8\t0x6380\n0xB1C9\t0x637B\n0xB1CA\t0x6369\n0xB1CB\t0x6368\n0xB1CC\t0x637A\n0xB1CD\t0x655D\n0xB1CE\t0x6556\n0xB1CF\t0x6551\n0xB1D0\t0x6559\n0xB1D1\t0x6557\n0xB1D2\t0x555F\n0xB1D3\t0x654F\n0xB1D4\t0x6558\n0xB1D5\t0x6555\n0xB1D6\t0x6554\n0xB1D7\t0x659C\n0xB1D8\t0x659B\n0xB1D9\t0x65AC\n0xB1DA\t0x65CF\n0xB1DB\t0x65CB\n0xB1DC\t0x65CC\n0xB1DD\t0x65CE\n0xB1DE\t0x665D\n0xB1DF\t0x665A\n0xB1E0\t0x6664\n0xB1E1\t0x6668\n0xB1E2\t0x6666\n0xB1E3\t0x665E\n0xB1E4\t0x66F9\n0xB1E5\t0x52D7\n0xB1E6\t0x671B\n0xB1E7\t0x6881\n0xB1E8\t0x68AF\n0xB1E9\t0x68A2\n0xB1EA\t0x6893\n0xB1EB\t0x68B5\n0xB1EC\t0x687F\n0xB1ED\t0x6876\n0xB1EE\t0x68B1\n0xB1EF\t0x68A7\n0xB1F0\t0x6897\n0xB1F1\t0x68B0\n0xB1F2\t0x6883\n0xB1F3\t0x68C4\n0xB1F4\t0x68AD\n0xB1F5\t0x6886\n0xB1F6\t0x6885\n0xB1F7\t0x6894\n0xB1F8\t0x689D\n0xB1F9\t0x68A8\n0xB1FA\t0x689F\n0xB1FB\t0x68A1\n0xB1FC\t0x6882\n0xB1FD\t0x6B32\n0xB1FE\t0x6BBA\n0xB240\t0x6BEB\n0xB241\t0x6BEC\n0xB242\t0x6C2B\n0xB243\t0x6D8E\n0xB244\t0x6DBC\n0xB245\t0x6DF3\n0xB246\t0x6DD9\n0xB247\t0x6DB2\n0xB248\t0x6DE1\n0xB249\t0x6DCC\n0xB24A\t0x6DE4\n0xB24B\t0x6DFB\n0xB24C\t0x6DFA\n0xB24D\t0x6E05\n0xB24E\t0x6DC7\n0xB24F\t0x6DCB\n0xB250\t0x6DAF\n0xB251\t0x6DD1\n0xB252\t0x6DAE\n0xB253\t0x6DDE\n0xB254\t0x6DF9\n0xB255\t0x6DB8\n0xB256\t0x6DF7\n0xB257\t0x6DF5\n0xB258\t0x6DC5\n0xB259\t0x6DD2\n0xB25A\t0x6E1A\n0xB25B\t0x6DB5\n0xB25C\t0x6DDA\n0xB25D\t0x6DEB\n0xB25E\t0x6DD8\n0xB25F\t0x6DEA\n0xB260\t0x6DF1\n0xB261\t0x6DEE\n0xB262\t0x6DE8\n0xB263\t0x6DC6\n0xB264\t0x6DC4\n0xB265\t0x6DAA\n0xB266\t0x6DEC\n0xB267\t0x6DBF\n0xB268\t0x6DE6\n0xB269\t0x70F9\n0xB26A\t0x7109\n0xB26B\t0x710A\n0xB26C\t0x70FD\n0xB26D\t0x70EF\n0xB26E\t0x723D\n0xB26F\t0x727D\n0xB270\t0x7281\n0xB271\t0x731C\n0xB272\t0x731B\n0xB273\t0x7316\n0xB274\t0x7313\n0xB275\t0x7319\n0xB276\t0x7387\n0xB277\t0x7405\n0xB278\t0x740A\n0xB279\t0x7403\n0xB27A\t0x7406\n0xB27B\t0x73FE\n0xB27C\t0x740D\n0xB27D\t0x74E0\n0xB27E\t0x74F6\n0xB2A1\t0x74F7\n0xB2A2\t0x751C\n0xB2A3\t0x7522\n0xB2A4\t0x7565\n0xB2A5\t0x7566\n0xB2A6\t0x7562\n0xB2A7\t0x7570\n0xB2A8\t0x758F\n0xB2A9\t0x75D4\n0xB2AA\t0x75D5\n0xB2AB\t0x75B5\n0xB2AC\t0x75CA\n0xB2AD\t0x75CD\n0xB2AE\t0x768E\n0xB2AF\t0x76D4\n0xB2B0\t0x76D2\n0xB2B1\t0x76DB\n0xB2B2\t0x7737\n0xB2B3\t0x773E\n0xB2B4\t0x773C\n0xB2B5\t0x7736\n0xB2B6\t0x7738\n0xB2B7\t0x773A\n0xB2B8\t0x786B\n0xB2B9\t0x7843\n0xB2BA\t0x784E\n0xB2BB\t0x7965\n0xB2BC\t0x7968\n0xB2BD\t0x796D\n0xB2BE\t0x79FB\n0xB2BF\t0x7A92\n0xB2C0\t0x7A95\n0xB2C1\t0x7B20\n0xB2C2\t0x7B28\n0xB2C3\t0x7B1B\n0xB2C4\t0x7B2C\n0xB2C5\t0x7B26\n0xB2C6\t0x7B19\n0xB2C7\t0x7B1E\n0xB2C8\t0x7B2E\n0xB2C9\t0x7C92\n0xB2CA\t0x7C97\n0xB2CB\t0x7C95\n0xB2CC\t0x7D46\n0xB2CD\t0x7D43\n0xB2CE\t0x7D71\n0xB2CF\t0x7D2E\n0xB2D0\t0x7D39\n0xB2D1\t0x7D3C\n0xB2D2\t0x7D40\n0xB2D3\t0x7D30\n0xB2D4\t0x7D33\n0xB2D5\t0x7D44\n0xB2D6\t0x7D2F\n0xB2D7\t0x7D42\n0xB2D8\t0x7D32\n0xB2D9\t0x7D31\n0xB2DA\t0x7F3D\n0xB2DB\t0x7F9E\n0xB2DC\t0x7F9A\n0xB2DD\t0x7FCC\n0xB2DE\t0x7FCE\n0xB2DF\t0x7FD2\n0xB2E0\t0x801C\n0xB2E1\t0x804A\n0xB2E2\t0x8046\n0xB2E3\t0x812F\n0xB2E4\t0x8116\n0xB2E5\t0x8123\n0xB2E6\t0x812B\n0xB2E7\t0x8129\n0xB2E8\t0x8130\n0xB2E9\t0x8124\n0xB2EA\t0x8202\n0xB2EB\t0x8235\n0xB2EC\t0x8237\n0xB2ED\t0x8236\n0xB2EE\t0x8239\n0xB2EF\t0x838E\n0xB2F0\t0x839E\n0xB2F1\t0x8398\n0xB2F2\t0x8378\n0xB2F3\t0x83A2\n0xB2F4\t0x8396\n0xB2F5\t0x83BD\n0xB2F6\t0x83AB\n0xB2F7\t0x8392\n0xB2F8\t0x838A\n0xB2F9\t0x8393\n0xB2FA\t0x8389\n0xB2FB\t0x83A0\n0xB2FC\t0x8377\n0xB2FD\t0x837B\n0xB2FE\t0x837C\n0xB340\t0x8386\n0xB341\t0x83A7\n0xB342\t0x8655\n0xB343\t0x5F6A\n0xB344\t0x86C7\n0xB345\t0x86C0\n0xB346\t0x86B6\n0xB347\t0x86C4\n0xB348\t0x86B5\n0xB349\t0x86C6\n0xB34A\t0x86CB\n0xB34B\t0x86B1\n0xB34C\t0x86AF\n0xB34D\t0x86C9\n0xB34E\t0x8853\n0xB34F\t0x889E\n0xB350\t0x8888\n0xB351\t0x88AB\n0xB352\t0x8892\n0xB353\t0x8896\n0xB354\t0x888D\n0xB355\t0x888B\n0xB356\t0x8993\n0xB357\t0x898F\n0xB358\t0x8A2A\n0xB359\t0x8A1D\n0xB35A\t0x8A23\n0xB35B\t0x8A25\n0xB35C\t0x8A31\n0xB35D\t0x8A2D\n0xB35E\t0x8A1F\n0xB35F\t0x8A1B\n0xB360\t0x8A22\n0xB361\t0x8C49\n0xB362\t0x8C5A\n0xB363\t0x8CA9\n0xB364\t0x8CAC\n0xB365\t0x8CAB\n0xB366\t0x8CA8\n0xB367\t0x8CAA\n0xB368\t0x8CA7\n0xB369\t0x8D67\n0xB36A\t0x8D66\n0xB36B\t0x8DBE\n0xB36C\t0x8DBA\n0xB36D\t0x8EDB\n0xB36E\t0x8EDF\n0xB36F\t0x9019\n0xB370\t0x900D\n0xB371\t0x901A\n0xB372\t0x9017\n0xB373\t0x9023\n0xB374\t0x901F\n0xB375\t0x901D\n0xB376\t0x9010\n0xB377\t0x9015\n0xB378\t0x901E\n0xB379\t0x9020\n0xB37A\t0x900F\n0xB37B\t0x9022\n0xB37C\t0x9016\n0xB37D\t0x901B\n0xB37E\t0x9014\n0xB3A1\t0x90E8\n0xB3A2\t0x90ED\n0xB3A3\t0x90FD\n0xB3A4\t0x9157\n0xB3A5\t0x91CE\n0xB3A6\t0x91F5\n0xB3A7\t0x91E6\n0xB3A8\t0x91E3\n0xB3A9\t0x91E7\n0xB3AA\t0x91ED\n0xB3AB\t0x91E9\n0xB3AC\t0x9589\n0xB3AD\t0x966A\n0xB3AE\t0x9675\n0xB3AF\t0x9673\n0xB3B0\t0x9678\n0xB3B1\t0x9670\n0xB3B2\t0x9674\n0xB3B3\t0x9676\n0xB3B4\t0x9677\n0xB3B5\t0x966C\n0xB3B6\t0x96C0\n0xB3B7\t0x96EA\n0xB3B8\t0x96E9\n0xB3B9\t0x7AE0\n0xB3BA\t0x7ADF\n0xB3BB\t0x9802\n0xB3BC\t0x9803\n0xB3BD\t0x9B5A\n0xB3BE\t0x9CE5\n0xB3BF\t0x9E75\n0xB3C0\t0x9E7F\n0xB3C1\t0x9EA5\n0xB3C2\t0x9EBB\n0xB3C3\t0x50A2\n0xB3C4\t0x508D\n0xB3C5\t0x5085\n0xB3C6\t0x5099\n0xB3C7\t0x5091\n0xB3C8\t0x5080\n0xB3C9\t0x5096\n0xB3CA\t0x5098\n0xB3CB\t0x509A\n0xB3CC\t0x6700\n0xB3CD\t0x51F1\n0xB3CE\t0x5272\n0xB3CF\t0x5274\n0xB3D0\t0x5275\n0xB3D1\t0x5269\n0xB3D2\t0x52DE\n0xB3D3\t0x52DD\n0xB3D4\t0x52DB\n0xB3D5\t0x535A\n0xB3D6\t0x53A5\n0xB3D7\t0x557B\n0xB3D8\t0x5580\n0xB3D9\t0x55A7\n0xB3DA\t0x557C\n0xB3DB\t0x558A\n0xB3DC\t0x559D\n0xB3DD\t0x5598\n0xB3DE\t0x5582\n0xB3DF\t0x559C\n0xB3E0\t0x55AA\n0xB3E1\t0x5594\n0xB3E2\t0x5587\n0xB3E3\t0x558B\n0xB3E4\t0x5583\n0xB3E5\t0x55B3\n0xB3E6\t0x55AE\n0xB3E7\t0x559F\n0xB3E8\t0x553E\n0xB3E9\t0x55B2\n0xB3EA\t0x559A\n0xB3EB\t0x55BB\n0xB3EC\t0x55AC\n0xB3ED\t0x55B1\n0xB3EE\t0x557E\n0xB3EF\t0x5589\n0xB3F0\t0x55AB\n0xB3F1\t0x5599\n0xB3F2\t0x570D\n0xB3F3\t0x582F\n0xB3F4\t0x582A\n0xB3F5\t0x5834\n0xB3F6\t0x5824\n0xB3F7\t0x5830\n0xB3F8\t0x5831\n0xB3F9\t0x5821\n0xB3FA\t0x581D\n0xB3FB\t0x5820\n0xB3FC\t0x58F9\n0xB3FD\t0x58FA\n0xB3FE\t0x5960\n0xB440\t0x5A77\n0xB441\t0x5A9A\n0xB442\t0x5A7F\n0xB443\t0x5A92\n0xB444\t0x5A9B\n0xB445\t0x5AA7\n0xB446\t0x5B73\n0xB447\t0x5B71\n0xB448\t0x5BD2\n0xB449\t0x5BCC\n0xB44A\t0x5BD3\n0xB44B\t0x5BD0\n0xB44C\t0x5C0A\n0xB44D\t0x5C0B\n0xB44E\t0x5C31\n0xB44F\t0x5D4C\n0xB450\t0x5D50\n0xB451\t0x5D34\n0xB452\t0x5D47\n0xB453\t0x5DFD\n0xB454\t0x5E45\n0xB455\t0x5E3D\n0xB456\t0x5E40\n0xB457\t0x5E43\n0xB458\t0x5E7E\n0xB459\t0x5ECA\n0xB45A\t0x5EC1\n0xB45B\t0x5EC2\n0xB45C\t0x5EC4\n0xB45D\t0x5F3C\n0xB45E\t0x5F6D\n0xB45F\t0x5FA9\n0xB460\t0x5FAA\n0xB461\t0x5FA8\n0xB462\t0x60D1\n0xB463\t0x60E1\n0xB464\t0x60B2\n0xB465\t0x60B6\n0xB466\t0x60E0\n0xB467\t0x611C\n0xB468\t0x6123\n0xB469\t0x60FA\n0xB46A\t0x6115\n0xB46B\t0x60F0\n0xB46C\t0x60FB\n0xB46D\t0x60F4\n0xB46E\t0x6168\n0xB46F\t0x60F1\n0xB470\t0x610E\n0xB471\t0x60F6\n0xB472\t0x6109\n0xB473\t0x6100\n0xB474\t0x6112\n0xB475\t0x621F\n0xB476\t0x6249\n0xB477\t0x63A3\n0xB478\t0x638C\n0xB479\t0x63CF\n0xB47A\t0x63C0\n0xB47B\t0x63E9\n0xB47C\t0x63C9\n0xB47D\t0x63C6\n0xB47E\t0x63CD\n0xB4A1\t0x63D2\n0xB4A2\t0x63E3\n0xB4A3\t0x63D0\n0xB4A4\t0x63E1\n0xB4A5\t0x63D6\n0xB4A6\t0x63ED\n0xB4A7\t0x63EE\n0xB4A8\t0x6376\n0xB4A9\t0x63F4\n0xB4AA\t0x63EA\n0xB4AB\t0x63DB\n0xB4AC\t0x6452\n0xB4AD\t0x63DA\n0xB4AE\t0x63F9\n0xB4AF\t0x655E\n0xB4B0\t0x6566\n0xB4B1\t0x6562\n0xB4B2\t0x6563\n0xB4B3\t0x6591\n0xB4B4\t0x6590\n0xB4B5\t0x65AF\n0xB4B6\t0x666E\n0xB4B7\t0x6670\n0xB4B8\t0x6674\n0xB4B9\t0x6676\n0xB4BA\t0x666F\n0xB4BB\t0x6691\n0xB4BC\t0x667A\n0xB4BD\t0x667E\n0xB4BE\t0x6677\n0xB4BF\t0x66FE\n0xB4C0\t0x66FF\n0xB4C1\t0x671F\n0xB4C2\t0x671D\n0xB4C3\t0x68FA\n0xB4C4\t0x68D5\n0xB4C5\t0x68E0\n0xB4C6\t0x68D8\n0xB4C7\t0x68D7\n0xB4C8\t0x6905\n0xB4C9\t0x68DF\n0xB4CA\t0x68F5\n0xB4CB\t0x68EE\n0xB4CC\t0x68E7\n0xB4CD\t0x68F9\n0xB4CE\t0x68D2\n0xB4CF\t0x68F2\n0xB4D0\t0x68E3\n0xB4D1\t0x68CB\n0xB4D2\t0x68CD\n0xB4D3\t0x690D\n0xB4D4\t0x6912\n0xB4D5\t0x690E\n0xB4D6\t0x68C9\n0xB4D7\t0x68DA\n0xB4D8\t0x696E\n0xB4D9\t0x68FB\n0xB4DA\t0x6B3E\n0xB4DB\t0x6B3A\n0xB4DC\t0x6B3D\n0xB4DD\t0x6B98\n0xB4DE\t0x6B96\n0xB4DF\t0x6BBC\n0xB4E0\t0x6BEF\n0xB4E1\t0x6C2E\n0xB4E2\t0x6C2F\n0xB4E3\t0x6C2C\n0xB4E4\t0x6E2F\n0xB4E5\t0x6E38\n0xB4E6\t0x6E54\n0xB4E7\t0x6E21\n0xB4E8\t0x6E32\n0xB4E9\t0x6E67\n0xB4EA\t0x6E4A\n0xB4EB\t0x6E20\n0xB4EC\t0x6E25\n0xB4ED\t0x6E23\n0xB4EE\t0x6E1B\n0xB4EF\t0x6E5B\n0xB4F0\t0x6E58\n0xB4F1\t0x6E24\n0xB4F2\t0x6E56\n0xB4F3\t0x6E6E\n0xB4F4\t0x6E2D\n0xB4F5\t0x6E26\n0xB4F6\t0x6E6F\n0xB4F7\t0x6E34\n0xB4F8\t0x6E4D\n0xB4F9\t0x6E3A\n0xB4FA\t0x6E2C\n0xB4FB\t0x6E43\n0xB4FC\t0x6E1D\n0xB4FD\t0x6E3E\n0xB4FE\t0x6ECB\n0xB540\t0x6E89\n0xB541\t0x6E19\n0xB542\t0x6E4E\n0xB543\t0x6E63\n0xB544\t0x6E44\n0xB545\t0x6E72\n0xB546\t0x6E69\n0xB547\t0x6E5F\n0xB548\t0x7119\n0xB549\t0x711A\n0xB54A\t0x7126\n0xB54B\t0x7130\n0xB54C\t0x7121\n0xB54D\t0x7136\n0xB54E\t0x716E\n0xB54F\t0x711C\n0xB550\t0x724C\n0xB551\t0x7284\n0xB552\t0x7280\n0xB553\t0x7336\n0xB554\t0x7325\n0xB555\t0x7334\n0xB556\t0x7329\n0xB557\t0x743A\n0xB558\t0x742A\n0xB559\t0x7433\n0xB55A\t0x7422\n0xB55B\t0x7425\n0xB55C\t0x7435\n0xB55D\t0x7436\n0xB55E\t0x7434\n0xB55F\t0x742F\n0xB560\t0x741B\n0xB561\t0x7426\n0xB562\t0x7428\n0xB563\t0x7525\n0xB564\t0x7526\n0xB565\t0x756B\n0xB566\t0x756A\n0xB567\t0x75E2\n0xB568\t0x75DB\n0xB569\t0x75E3\n0xB56A\t0x75D9\n0xB56B\t0x75D8\n0xB56C\t0x75DE\n0xB56D\t0x75E0\n0xB56E\t0x767B\n0xB56F\t0x767C\n0xB570\t0x7696\n0xB571\t0x7693\n0xB572\t0x76B4\n0xB573\t0x76DC\n0xB574\t0x774F\n0xB575\t0x77ED\n0xB576\t0x785D\n0xB577\t0x786C\n0xB578\t0x786F\n0xB579\t0x7A0D\n0xB57A\t0x7A08\n0xB57B\t0x7A0B\n0xB57C\t0x7A05\n0xB57D\t0x7A00\n0xB57E\t0x7A98\n0xB5A1\t0x7A97\n0xB5A2\t0x7A96\n0xB5A3\t0x7AE5\n0xB5A4\t0x7AE3\n0xB5A5\t0x7B49\n0xB5A6\t0x7B56\n0xB5A7\t0x7B46\n0xB5A8\t0x7B50\n0xB5A9\t0x7B52\n0xB5AA\t0x7B54\n0xB5AB\t0x7B4D\n0xB5AC\t0x7B4B\n0xB5AD\t0x7B4F\n0xB5AE\t0x7B51\n0xB5AF\t0x7C9F\n0xB5B0\t0x7CA5\n0xB5B1\t0x7D5E\n0xB5B2\t0x7D50\n0xB5B3\t0x7D68\n0xB5B4\t0x7D55\n0xB5B5\t0x7D2B\n0xB5B6\t0x7D6E\n0xB5B7\t0x7D72\n0xB5B8\t0x7D61\n0xB5B9\t0x7D66\n0xB5BA\t0x7D62\n0xB5BB\t0x7D70\n0xB5BC\t0x7D73\n0xB5BD\t0x5584\n0xB5BE\t0x7FD4\n0xB5BF\t0x7FD5\n0xB5C0\t0x800B\n0xB5C1\t0x8052\n0xB5C2\t0x8085\n0xB5C3\t0x8155\n0xB5C4\t0x8154\n0xB5C5\t0x814B\n0xB5C6\t0x8151\n0xB5C7\t0x814E\n0xB5C8\t0x8139\n0xB5C9\t0x8146\n0xB5CA\t0x813E\n0xB5CB\t0x814C\n0xB5CC\t0x8153\n0xB5CD\t0x8174\n0xB5CE\t0x8212\n0xB5CF\t0x821C\n0xB5D0\t0x83E9\n0xB5D1\t0x8403\n0xB5D2\t0x83F8\n0xB5D3\t0x840D\n0xB5D4\t0x83E0\n0xB5D5\t0x83C5\n0xB5D6\t0x840B\n0xB5D7\t0x83C1\n0xB5D8\t0x83EF\n0xB5D9\t0x83F1\n0xB5DA\t0x83F4\n0xB5DB\t0x8457\n0xB5DC\t0x840A\n0xB5DD\t0x83F0\n0xB5DE\t0x840C\n0xB5DF\t0x83CC\n0xB5E0\t0x83FD\n0xB5E1\t0x83F2\n0xB5E2\t0x83CA\n0xB5E3\t0x8438\n0xB5E4\t0x840E\n0xB5E5\t0x8404\n0xB5E6\t0x83DC\n0xB5E7\t0x8407\n0xB5E8\t0x83D4\n0xB5E9\t0x83DF\n0xB5EA\t0x865B\n0xB5EB\t0x86DF\n0xB5EC\t0x86D9\n0xB5ED\t0x86ED\n0xB5EE\t0x86D4\n0xB5EF\t0x86DB\n0xB5F0\t0x86E4\n0xB5F1\t0x86D0\n0xB5F2\t0x86DE\n0xB5F3\t0x8857\n0xB5F4\t0x88C1\n0xB5F5\t0x88C2\n0xB5F6\t0x88B1\n0xB5F7\t0x8983\n0xB5F8\t0x8996\n0xB5F9\t0x8A3B\n0xB5FA\t0x8A60\n0xB5FB\t0x8A55\n0xB5FC\t0x8A5E\n0xB5FD\t0x8A3C\n0xB5FE\t0x8A41\n0xB640\t0x8A54\n0xB641\t0x8A5B\n0xB642\t0x8A50\n0xB643\t0x8A46\n0xB644\t0x8A34\n0xB645\t0x8A3A\n0xB646\t0x8A36\n0xB647\t0x8A56\n0xB648\t0x8C61\n0xB649\t0x8C82\n0xB64A\t0x8CAF\n0xB64B\t0x8CBC\n0xB64C\t0x8CB3\n0xB64D\t0x8CBD\n0xB64E\t0x8CC1\n0xB64F\t0x8CBB\n0xB650\t0x8CC0\n0xB651\t0x8CB4\n0xB652\t0x8CB7\n0xB653\t0x8CB6\n0xB654\t0x8CBF\n0xB655\t0x8CB8\n0xB656\t0x8D8A\n0xB657\t0x8D85\n0xB658\t0x8D81\n0xB659\t0x8DCE\n0xB65A\t0x8DDD\n0xB65B\t0x8DCB\n0xB65C\t0x8DDA\n0xB65D\t0x8DD1\n0xB65E\t0x8DCC\n0xB65F\t0x8DDB\n0xB660\t0x8DC6\n0xB661\t0x8EFB\n0xB662\t0x8EF8\n0xB663\t0x8EFC\n0xB664\t0x8F9C\n0xB665\t0x902E\n0xB666\t0x9035\n0xB667\t0x9031\n0xB668\t0x9038\n0xB669\t0x9032\n0xB66A\t0x9036\n0xB66B\t0x9102\n0xB66C\t0x90F5\n0xB66D\t0x9109\n0xB66E\t0x90FE\n0xB66F\t0x9163\n0xB670\t0x9165\n0xB671\t0x91CF\n0xB672\t0x9214\n0xB673\t0x9215\n0xB674\t0x9223\n0xB675\t0x9209\n0xB676\t0x921E\n0xB677\t0x920D\n0xB678\t0x9210\n0xB679\t0x9207\n0xB67A\t0x9211\n0xB67B\t0x9594\n0xB67C\t0x958F\n0xB67D\t0x958B\n0xB67E\t0x9591\n0xB6A1\t0x9593\n0xB6A2\t0x9592\n0xB6A3\t0x958E\n0xB6A4\t0x968A\n0xB6A5\t0x968E\n0xB6A6\t0x968B\n0xB6A7\t0x967D\n0xB6A8\t0x9685\n0xB6A9\t0x9686\n0xB6AA\t0x968D\n0xB6AB\t0x9672\n0xB6AC\t0x9684\n0xB6AD\t0x96C1\n0xB6AE\t0x96C5\n0xB6AF\t0x96C4\n0xB6B0\t0x96C6\n0xB6B1\t0x96C7\n0xB6B2\t0x96EF\n0xB6B3\t0x96F2\n0xB6B4\t0x97CC\n0xB6B5\t0x9805\n0xB6B6\t0x9806\n0xB6B7\t0x9808\n0xB6B8\t0x98E7\n0xB6B9\t0x98EA\n0xB6BA\t0x98EF\n0xB6BB\t0x98E9\n0xB6BC\t0x98F2\n0xB6BD\t0x98ED\n0xB6BE\t0x99AE\n0xB6BF\t0x99AD\n0xB6C0\t0x9EC3\n0xB6C1\t0x9ECD\n0xB6C2\t0x9ED1\n0xB6C3\t0x4E82\n0xB6C4\t0x50AD\n0xB6C5\t0x50B5\n0xB6C6\t0x50B2\n0xB6C7\t0x50B3\n0xB6C8\t0x50C5\n0xB6C9\t0x50BE\n0xB6CA\t0x50AC\n0xB6CB\t0x50B7\n0xB6CC\t0x50BB\n0xB6CD\t0x50AF\n0xB6CE\t0x50C7\n0xB6CF\t0x527F\n0xB6D0\t0x5277\n0xB6D1\t0x527D\n0xB6D2\t0x52DF\n0xB6D3\t0x52E6\n0xB6D4\t0x52E4\n0xB6D5\t0x52E2\n0xB6D6\t0x52E3\n0xB6D7\t0x532F\n0xB6D8\t0x55DF\n0xB6D9\t0x55E8\n0xB6DA\t0x55D3\n0xB6DB\t0x55E6\n0xB6DC\t0x55CE\n0xB6DD\t0x55DC\n0xB6DE\t0x55C7\n0xB6DF\t0x55D1\n0xB6E0\t0x55E3\n0xB6E1\t0x55E4\n0xB6E2\t0x55EF\n0xB6E3\t0x55DA\n0xB6E4\t0x55E1\n0xB6E5\t0x55C5\n0xB6E6\t0x55C6\n0xB6E7\t0x55E5\n0xB6E8\t0x55C9\n0xB6E9\t0x5712\n0xB6EA\t0x5713\n0xB6EB\t0x585E\n0xB6EC\t0x5851\n0xB6ED\t0x5858\n0xB6EE\t0x5857\n0xB6EF\t0x585A\n0xB6F0\t0x5854\n0xB6F1\t0x586B\n0xB6F2\t0x584C\n0xB6F3\t0x586D\n0xB6F4\t0x584A\n0xB6F5\t0x5862\n0xB6F6\t0x5852\n0xB6F7\t0x584B\n0xB6F8\t0x5967\n0xB6F9\t0x5AC1\n0xB6FA\t0x5AC9\n0xB6FB\t0x5ACC\n0xB6FC\t0x5ABE\n0xB6FD\t0x5ABD\n0xB6FE\t0x5ABC\n0xB740\t0x5AB3\n0xB741\t0x5AC2\n0xB742\t0x5AB2\n0xB743\t0x5D69\n0xB744\t0x5D6F\n0xB745\t0x5E4C\n0xB746\t0x5E79\n0xB747\t0x5EC9\n0xB748\t0x5EC8\n0xB749\t0x5F12\n0xB74A\t0x5F59\n0xB74B\t0x5FAC\n0xB74C\t0x5FAE\n0xB74D\t0x611A\n0xB74E\t0x610F\n0xB74F\t0x6148\n0xB750\t0x611F\n0xB751\t0x60F3\n0xB752\t0x611B\n0xB753\t0x60F9\n0xB754\t0x6101\n0xB755\t0x6108\n0xB756\t0x614E\n0xB757\t0x614C\n0xB758\t0x6144\n0xB759\t0x614D\n0xB75A\t0x613E\n0xB75B\t0x6134\n0xB75C\t0x6127\n0xB75D\t0x610D\n0xB75E\t0x6106\n0xB75F\t0x6137\n0xB760\t0x6221\n0xB761\t0x6222\n0xB762\t0x6413\n0xB763\t0x643E\n0xB764\t0x641E\n0xB765\t0x642A\n0xB766\t0x642D\n0xB767\t0x643D\n0xB768\t0x642C\n0xB769\t0x640F\n0xB76A\t0x641C\n0xB76B\t0x6414\n0xB76C\t0x640D\n0xB76D\t0x6436\n0xB76E\t0x6416\n0xB76F\t0x6417\n0xB770\t0x6406\n0xB771\t0x656C\n0xB772\t0x659F\n0xB773\t0x65B0\n0xB774\t0x6697\n0xB775\t0x6689\n0xB776\t0x6687\n0xB777\t0x6688\n0xB778\t0x6696\n0xB779\t0x6684\n0xB77A\t0x6698\n0xB77B\t0x668D\n0xB77C\t0x6703\n0xB77D\t0x6994\n0xB77E\t0x696D\n0xB7A1\t0x695A\n0xB7A2\t0x6977\n0xB7A3\t0x6960\n0xB7A4\t0x6954\n0xB7A5\t0x6975\n0xB7A6\t0x6930\n0xB7A7\t0x6982\n0xB7A8\t0x694A\n0xB7A9\t0x6968\n0xB7AA\t0x696B\n0xB7AB\t0x695E\n0xB7AC\t0x6953\n0xB7AD\t0x6979\n0xB7AE\t0x6986\n0xB7AF\t0x695D\n0xB7B0\t0x6963\n0xB7B1\t0x695B\n0xB7B2\t0x6B47\n0xB7B3\t0x6B72\n0xB7B4\t0x6BC0\n0xB7B5\t0x6BBF\n0xB7B6\t0x6BD3\n0xB7B7\t0x6BFD\n0xB7B8\t0x6EA2\n0xB7B9\t0x6EAF\n0xB7BA\t0x6ED3\n0xB7BB\t0x6EB6\n0xB7BC\t0x6EC2\n0xB7BD\t0x6E90\n0xB7BE\t0x6E9D\n0xB7BF\t0x6EC7\n0xB7C0\t0x6EC5\n0xB7C1\t0x6EA5\n0xB7C2\t0x6E98\n0xB7C3\t0x6EBC\n0xB7C4\t0x6EBA\n0xB7C5\t0x6EAB\n0xB7C6\t0x6ED1\n0xB7C7\t0x6E96\n0xB7C8\t0x6E9C\n0xB7C9\t0x6EC4\n0xB7CA\t0x6ED4\n0xB7CB\t0x6EAA\n0xB7CC\t0x6EA7\n0xB7CD\t0x6EB4\n0xB7CE\t0x714E\n0xB7CF\t0x7159\n0xB7D0\t0x7169\n0xB7D1\t0x7164\n0xB7D2\t0x7149\n0xB7D3\t0x7167\n0xB7D4\t0x715C\n0xB7D5\t0x716C\n0xB7D6\t0x7166\n0xB7D7\t0x714C\n0xB7D8\t0x7165\n0xB7D9\t0x715E\n0xB7DA\t0x7146\n0xB7DB\t0x7168\n0xB7DC\t0x7156\n0xB7DD\t0x723A\n0xB7DE\t0x7252\n0xB7DF\t0x7337\n0xB7E0\t0x7345\n0xB7E1\t0x733F\n0xB7E2\t0x733E\n0xB7E3\t0x746F\n0xB7E4\t0x745A\n0xB7E5\t0x7455\n0xB7E6\t0x745F\n0xB7E7\t0x745E\n0xB7E8\t0x7441\n0xB7E9\t0x743F\n0xB7EA\t0x7459\n0xB7EB\t0x745B\n0xB7EC\t0x745C\n0xB7ED\t0x7576\n0xB7EE\t0x7578\n0xB7EF\t0x7600\n0xB7F0\t0x75F0\n0xB7F1\t0x7601\n0xB7F2\t0x75F2\n0xB7F3\t0x75F1\n0xB7F4\t0x75FA\n0xB7F5\t0x75FF\n0xB7F6\t0x75F4\n0xB7F7\t0x75F3\n0xB7F8\t0x76DE\n0xB7F9\t0x76DF\n0xB7FA\t0x775B\n0xB7FB\t0x776B\n0xB7FC\t0x7766\n0xB7FD\t0x775E\n0xB7FE\t0x7763\n0xB840\t0x7779\n0xB841\t0x776A\n0xB842\t0x776C\n0xB843\t0x775C\n0xB844\t0x7765\n0xB845\t0x7768\n0xB846\t0x7762\n0xB847\t0x77EE\n0xB848\t0x788E\n0xB849\t0x78B0\n0xB84A\t0x7897\n0xB84B\t0x7898\n0xB84C\t0x788C\n0xB84D\t0x7889\n0xB84E\t0x787C\n0xB84F\t0x7891\n0xB850\t0x7893\n0xB851\t0x787F\n0xB852\t0x797A\n0xB853\t0x797F\n0xB854\t0x7981\n0xB855\t0x842C\n0xB856\t0x79BD\n0xB857\t0x7A1C\n0xB858\t0x7A1A\n0xB859\t0x7A20\n0xB85A\t0x7A14\n0xB85B\t0x7A1F\n0xB85C\t0x7A1E\n0xB85D\t0x7A9F\n0xB85E\t0x7AA0\n0xB85F\t0x7B77\n0xB860\t0x7BC0\n0xB861\t0x7B60\n0xB862\t0x7B6E\n0xB863\t0x7B67\n0xB864\t0x7CB1\n0xB865\t0x7CB3\n0xB866\t0x7CB5\n0xB867\t0x7D93\n0xB868\t0x7D79\n0xB869\t0x7D91\n0xB86A\t0x7D81\n0xB86B\t0x7D8F\n0xB86C\t0x7D5B\n0xB86D\t0x7F6E\n0xB86E\t0x7F69\n0xB86F\t0x7F6A\n0xB870\t0x7F72\n0xB871\t0x7FA9\n0xB872\t0x7FA8\n0xB873\t0x7FA4\n0xB874\t0x8056\n0xB875\t0x8058\n0xB876\t0x8086\n0xB877\t0x8084\n0xB878\t0x8171\n0xB879\t0x8170\n0xB87A\t0x8178\n0xB87B\t0x8165\n0xB87C\t0x816E\n0xB87D\t0x8173\n0xB87E\t0x816B\n0xB8A1\t0x8179\n0xB8A2\t0x817A\n0xB8A3\t0x8166\n0xB8A4\t0x8205\n0xB8A5\t0x8247\n0xB8A6\t0x8482\n0xB8A7\t0x8477\n0xB8A8\t0x843D\n0xB8A9\t0x8431\n0xB8AA\t0x8475\n0xB8AB\t0x8466\n0xB8AC\t0x846B\n0xB8AD\t0x8449\n0xB8AE\t0x846C\n0xB8AF\t0x845B\n0xB8B0\t0x843C\n0xB8B1\t0x8435\n0xB8B2\t0x8461\n0xB8B3\t0x8463\n0xB8B4\t0x8469\n0xB8B5\t0x846D\n0xB8B6\t0x8446\n0xB8B7\t0x865E\n0xB8B8\t0x865C\n0xB8B9\t0x865F\n0xB8BA\t0x86F9\n0xB8BB\t0x8713\n0xB8BC\t0x8708\n0xB8BD\t0x8707\n0xB8BE\t0x8700\n0xB8BF\t0x86FE\n0xB8C0\t0x86FB\n0xB8C1\t0x8702\n0xB8C2\t0x8703\n0xB8C3\t0x8706\n0xB8C4\t0x870A\n0xB8C5\t0x8859\n0xB8C6\t0x88DF\n0xB8C7\t0x88D4\n0xB8C8\t0x88D9\n0xB8C9\t0x88DC\n0xB8CA\t0x88D8\n0xB8CB\t0x88DD\n0xB8CC\t0x88E1\n0xB8CD\t0x88CA\n0xB8CE\t0x88D5\n0xB8CF\t0x88D2\n0xB8D0\t0x899C\n0xB8D1\t0x89E3\n0xB8D2\t0x8A6B\n0xB8D3\t0x8A72\n0xB8D4\t0x8A73\n0xB8D5\t0x8A66\n0xB8D6\t0x8A69\n0xB8D7\t0x8A70\n0xB8D8\t0x8A87\n0xB8D9\t0x8A7C\n0xB8DA\t0x8A63\n0xB8DB\t0x8AA0\n0xB8DC\t0x8A71\n0xB8DD\t0x8A85\n0xB8DE\t0x8A6D\n0xB8DF\t0x8A62\n0xB8E0\t0x8A6E\n0xB8E1\t0x8A6C\n0xB8E2\t0x8A79\n0xB8E3\t0x8A7B\n0xB8E4\t0x8A3E\n0xB8E5\t0x8A68\n0xB8E6\t0x8C62\n0xB8E7\t0x8C8A\n0xB8E8\t0x8C89\n0xB8E9\t0x8CCA\n0xB8EA\t0x8CC7\n0xB8EB\t0x8CC8\n0xB8EC\t0x8CC4\n0xB8ED\t0x8CB2\n0xB8EE\t0x8CC3\n0xB8EF\t0x8CC2\n0xB8F0\t0x8CC5\n0xB8F1\t0x8DE1\n0xB8F2\t0x8DDF\n0xB8F3\t0x8DE8\n0xB8F4\t0x8DEF\n0xB8F5\t0x8DF3\n0xB8F6\t0x8DFA\n0xB8F7\t0x8DEA\n0xB8F8\t0x8DE4\n0xB8F9\t0x8DE6\n0xB8FA\t0x8EB2\n0xB8FB\t0x8F03\n0xB8FC\t0x8F09\n0xB8FD\t0x8EFE\n0xB8FE\t0x8F0A\n0xB940\t0x8F9F\n0xB941\t0x8FB2\n0xB942\t0x904B\n0xB943\t0x904A\n0xB944\t0x9053\n0xB945\t0x9042\n0xB946\t0x9054\n0xB947\t0x903C\n0xB948\t0x9055\n0xB949\t0x9050\n0xB94A\t0x9047\n0xB94B\t0x904F\n0xB94C\t0x904E\n0xB94D\t0x904D\n0xB94E\t0x9051\n0xB94F\t0x903E\n0xB950\t0x9041\n0xB951\t0x9112\n0xB952\t0x9117\n0xB953\t0x916C\n0xB954\t0x916A\n0xB955\t0x9169\n0xB956\t0x91C9\n0xB957\t0x9237\n0xB958\t0x9257\n0xB959\t0x9238\n0xB95A\t0x923D\n0xB95B\t0x9240\n0xB95C\t0x923E\n0xB95D\t0x925B\n0xB95E\t0x924B\n0xB95F\t0x9264\n0xB960\t0x9251\n0xB961\t0x9234\n0xB962\t0x9249\n0xB963\t0x924D\n0xB964\t0x9245\n0xB965\t0x9239\n0xB966\t0x923F\n0xB967\t0x925A\n0xB968\t0x9598\n0xB969\t0x9698\n0xB96A\t0x9694\n0xB96B\t0x9695\n0xB96C\t0x96CD\n0xB96D\t0x96CB\n0xB96E\t0x96C9\n0xB96F\t0x96CA\n0xB970\t0x96F7\n0xB971\t0x96FB\n0xB972\t0x96F9\n0xB973\t0x96F6\n0xB974\t0x9756\n0xB975\t0x9774\n0xB976\t0x9776\n0xB977\t0x9810\n0xB978\t0x9811\n0xB979\t0x9813\n0xB97A\t0x980A\n0xB97B\t0x9812\n0xB97C\t0x980C\n0xB97D\t0x98FC\n0xB97E\t0x98F4\n0xB9A1\t0x98FD\n0xB9A2\t0x98FE\n0xB9A3\t0x99B3\n0xB9A4\t0x99B1\n0xB9A5\t0x99B4\n0xB9A6\t0x9AE1\n0xB9A7\t0x9CE9\n0xB9A8\t0x9E82\n0xB9A9\t0x9F0E\n0xB9AA\t0x9F13\n0xB9AB\t0x9F20\n0xB9AC\t0x50E7\n0xB9AD\t0x50EE\n0xB9AE\t0x50E5\n0xB9AF\t0x50D6\n0xB9B0\t0x50ED\n0xB9B1\t0x50DA\n0xB9B2\t0x50D5\n0xB9B3\t0x50CF\n0xB9B4\t0x50D1\n0xB9B5\t0x50F1\n0xB9B6\t0x50CE\n0xB9B7\t0x50E9\n0xB9B8\t0x5162\n0xB9B9\t0x51F3\n0xB9BA\t0x5283\n0xB9BB\t0x5282\n0xB9BC\t0x5331\n0xB9BD\t0x53AD\n0xB9BE\t0x55FE\n0xB9BF\t0x5600\n0xB9C0\t0x561B\n0xB9C1\t0x5617\n0xB9C2\t0x55FD\n0xB9C3\t0x5614\n0xB9C4\t0x5606\n0xB9C5\t0x5609\n0xB9C6\t0x560D\n0xB9C7\t0x560E\n0xB9C8\t0x55F7\n0xB9C9\t0x5616\n0xB9CA\t0x561F\n0xB9CB\t0x5608\n0xB9CC\t0x5610\n0xB9CD\t0x55F6\n0xB9CE\t0x5718\n0xB9CF\t0x5716\n0xB9D0\t0x5875\n0xB9D1\t0x587E\n0xB9D2\t0x5883\n0xB9D3\t0x5893\n0xB9D4\t0x588A\n0xB9D5\t0x5879\n0xB9D6\t0x5885\n0xB9D7\t0x587D\n0xB9D8\t0x58FD\n0xB9D9\t0x5925\n0xB9DA\t0x5922\n0xB9DB\t0x5924\n0xB9DC\t0x596A\n0xB9DD\t0x5969\n0xB9DE\t0x5AE1\n0xB9DF\t0x5AE6\n0xB9E0\t0x5AE9\n0xB9E1\t0x5AD7\n0xB9E2\t0x5AD6\n0xB9E3\t0x5AD8\n0xB9E4\t0x5AE3\n0xB9E5\t0x5B75\n0xB9E6\t0x5BDE\n0xB9E7\t0x5BE7\n0xB9E8\t0x5BE1\n0xB9E9\t0x5BE5\n0xB9EA\t0x5BE6\n0xB9EB\t0x5BE8\n0xB9EC\t0x5BE2\n0xB9ED\t0x5BE4\n0xB9EE\t0x5BDF\n0xB9EF\t0x5C0D\n0xB9F0\t0x5C62\n0xB9F1\t0x5D84\n0xB9F2\t0x5D87\n0xB9F3\t0x5E5B\n0xB9F4\t0x5E63\n0xB9F5\t0x5E55\n0xB9F6\t0x5E57\n0xB9F7\t0x5E54\n0xB9F8\t0x5ED3\n0xB9F9\t0x5ED6\n0xB9FA\t0x5F0A\n0xB9FB\t0x5F46\n0xB9FC\t0x5F70\n0xB9FD\t0x5FB9\n0xB9FE\t0x6147\n0xBA40\t0x613F\n0xBA41\t0x614B\n0xBA42\t0x6177\n0xBA43\t0x6162\n0xBA44\t0x6163\n0xBA45\t0x615F\n0xBA46\t0x615A\n0xBA47\t0x6158\n0xBA48\t0x6175\n0xBA49\t0x622A\n0xBA4A\t0x6487\n0xBA4B\t0x6458\n0xBA4C\t0x6454\n0xBA4D\t0x64A4\n0xBA4E\t0x6478\n0xBA4F\t0x645F\n0xBA50\t0x647A\n0xBA51\t0x6451\n0xBA52\t0x6467\n0xBA53\t0x6434\n0xBA54\t0x646D\n0xBA55\t0x647B\n0xBA56\t0x6572\n0xBA57\t0x65A1\n0xBA58\t0x65D7\n0xBA59\t0x65D6\n0xBA5A\t0x66A2\n0xBA5B\t0x66A8\n0xBA5C\t0x669D\n0xBA5D\t0x699C\n0xBA5E\t0x69A8\n0xBA5F\t0x6995\n0xBA60\t0x69C1\n0xBA61\t0x69AE\n0xBA62\t0x69D3\n0xBA63\t0x69CB\n0xBA64\t0x699B\n0xBA65\t0x69B7\n0xBA66\t0x69BB\n0xBA67\t0x69AB\n0xBA68\t0x69B4\n0xBA69\t0x69D0\n0xBA6A\t0x69CD\n0xBA6B\t0x69AD\n0xBA6C\t0x69CC\n0xBA6D\t0x69A6\n0xBA6E\t0x69C3\n0xBA6F\t0x69A3\n0xBA70\t0x6B49\n0xBA71\t0x6B4C\n0xBA72\t0x6C33\n0xBA73\t0x6F33\n0xBA74\t0x6F14\n0xBA75\t0x6EFE\n0xBA76\t0x6F13\n0xBA77\t0x6EF4\n0xBA78\t0x6F29\n0xBA79\t0x6F3E\n0xBA7A\t0x6F20\n0xBA7B\t0x6F2C\n0xBA7C\t0x6F0F\n0xBA7D\t0x6F02\n0xBA7E\t0x6F22\n0xBAA1\t0x6EFF\n0xBAA2\t0x6EEF\n0xBAA3\t0x6F06\n0xBAA4\t0x6F31\n0xBAA5\t0x6F38\n0xBAA6\t0x6F32\n0xBAA7\t0x6F23\n0xBAA8\t0x6F15\n0xBAA9\t0x6F2B\n0xBAAA\t0x6F2F\n0xBAAB\t0x6F88\n0xBAAC\t0x6F2A\n0xBAAD\t0x6EEC\n0xBAAE\t0x6F01\n0xBAAF\t0x6EF2\n0xBAB0\t0x6ECC\n0xBAB1\t0x6EF7\n0xBAB2\t0x7194\n0xBAB3\t0x7199\n0xBAB4\t0x717D\n0xBAB5\t0x718A\n0xBAB6\t0x7184\n0xBAB7\t0x7192\n0xBAB8\t0x723E\n0xBAB9\t0x7292\n0xBABA\t0x7296\n0xBABB\t0x7344\n0xBABC\t0x7350\n0xBABD\t0x7464\n0xBABE\t0x7463\n0xBABF\t0x746A\n0xBAC0\t0x7470\n0xBAC1\t0x746D\n0xBAC2\t0x7504\n0xBAC3\t0x7591\n0xBAC4\t0x7627\n0xBAC5\t0x760D\n0xBAC6\t0x760B\n0xBAC7\t0x7609\n0xBAC8\t0x7613\n0xBAC9\t0x76E1\n0xBACA\t0x76E3\n0xBACB\t0x7784\n0xBACC\t0x777D\n0xBACD\t0x777F\n0xBACE\t0x7761\n0xBACF\t0x78C1\n0xBAD0\t0x789F\n0xBAD1\t0x78A7\n0xBAD2\t0x78B3\n0xBAD3\t0x78A9\n0xBAD4\t0x78A3\n0xBAD5\t0x798E\n0xBAD6\t0x798F\n0xBAD7\t0x798D\n0xBAD8\t0x7A2E\n0xBAD9\t0x7A31\n0xBADA\t0x7AAA\n0xBADB\t0x7AA9\n0xBADC\t0x7AED\n0xBADD\t0x7AEF\n0xBADE\t0x7BA1\n0xBADF\t0x7B95\n0xBAE0\t0x7B8B\n0xBAE1\t0x7B75\n0xBAE2\t0x7B97\n0xBAE3\t0x7B9D\n0xBAE4\t0x7B94\n0xBAE5\t0x7B8F\n0xBAE6\t0x7BB8\n0xBAE7\t0x7B87\n0xBAE8\t0x7B84\n0xBAE9\t0x7CB9\n0xBAEA\t0x7CBD\n0xBAEB\t0x7CBE\n0xBAEC\t0x7DBB\n0xBAED\t0x7DB0\n0xBAEE\t0x7D9C\n0xBAEF\t0x7DBD\n0xBAF0\t0x7DBE\n0xBAF1\t0x7DA0\n0xBAF2\t0x7DCA\n0xBAF3\t0x7DB4\n0xBAF4\t0x7DB2\n0xBAF5\t0x7DB1\n0xBAF6\t0x7DBA\n0xBAF7\t0x7DA2\n0xBAF8\t0x7DBF\n0xBAF9\t0x7DB5\n0xBAFA\t0x7DB8\n0xBAFB\t0x7DAD\n0xBAFC\t0x7DD2\n0xBAFD\t0x7DC7\n0xBAFE\t0x7DAC\n0xBB40\t0x7F70\n0xBB41\t0x7FE0\n0xBB42\t0x7FE1\n0xBB43\t0x7FDF\n0xBB44\t0x805E\n0xBB45\t0x805A\n0xBB46\t0x8087\n0xBB47\t0x8150\n0xBB48\t0x8180\n0xBB49\t0x818F\n0xBB4A\t0x8188\n0xBB4B\t0x818A\n0xBB4C\t0x817F\n0xBB4D\t0x8182\n0xBB4E\t0x81E7\n0xBB4F\t0x81FA\n0xBB50\t0x8207\n0xBB51\t0x8214\n0xBB52\t0x821E\n0xBB53\t0x824B\n0xBB54\t0x84C9\n0xBB55\t0x84BF\n0xBB56\t0x84C6\n0xBB57\t0x84C4\n0xBB58\t0x8499\n0xBB59\t0x849E\n0xBB5A\t0x84B2\n0xBB5B\t0x849C\n0xBB5C\t0x84CB\n0xBB5D\t0x84B8\n0xBB5E\t0x84C0\n0xBB5F\t0x84D3\n0xBB60\t0x8490\n0xBB61\t0x84BC\n0xBB62\t0x84D1\n0xBB63\t0x84CA\n0xBB64\t0x873F\n0xBB65\t0x871C\n0xBB66\t0x873B\n0xBB67\t0x8722\n0xBB68\t0x8725\n0xBB69\t0x8734\n0xBB6A\t0x8718\n0xBB6B\t0x8755\n0xBB6C\t0x8737\n0xBB6D\t0x8729\n0xBB6E\t0x88F3\n0xBB6F\t0x8902\n0xBB70\t0x88F4\n0xBB71\t0x88F9\n0xBB72\t0x88F8\n0xBB73\t0x88FD\n0xBB74\t0x88E8\n0xBB75\t0x891A\n0xBB76\t0x88EF\n0xBB77\t0x8AA6\n0xBB78\t0x8A8C\n0xBB79\t0x8A9E\n0xBB7A\t0x8AA3\n0xBB7B\t0x8A8D\n0xBB7C\t0x8AA1\n0xBB7D\t0x8A93\n0xBB7E\t0x8AA4\n0xBBA1\t0x8AAA\n0xBBA2\t0x8AA5\n0xBBA3\t0x8AA8\n0xBBA4\t0x8A98\n0xBBA5\t0x8A91\n0xBBA6\t0x8A9A\n0xBBA7\t0x8AA7\n0xBBA8\t0x8C6A\n0xBBA9\t0x8C8D\n0xBBAA\t0x8C8C\n0xBBAB\t0x8CD3\n0xBBAC\t0x8CD1\n0xBBAD\t0x8CD2\n0xBBAE\t0x8D6B\n0xBBAF\t0x8D99\n0xBBB0\t0x8D95\n0xBBB1\t0x8DFC\n0xBBB2\t0x8F14\n0xBBB3\t0x8F12\n0xBBB4\t0x8F15\n0xBBB5\t0x8F13\n0xBBB6\t0x8FA3\n0xBBB7\t0x9060\n0xBBB8\t0x9058\n0xBBB9\t0x905C\n0xBBBA\t0x9063\n0xBBBB\t0x9059\n0xBBBC\t0x905E\n0xBBBD\t0x9062\n0xBBBE\t0x905D\n0xBBBF\t0x905B\n0xBBC0\t0x9119\n0xBBC1\t0x9118\n0xBBC2\t0x911E\n0xBBC3\t0x9175\n0xBBC4\t0x9178\n0xBBC5\t0x9177\n0xBBC6\t0x9174\n0xBBC7\t0x9278\n0xBBC8\t0x9280\n0xBBC9\t0x9285\n0xBBCA\t0x9298\n0xBBCB\t0x9296\n0xBBCC\t0x927B\n0xBBCD\t0x9293\n0xBBCE\t0x929C\n0xBBCF\t0x92A8\n0xBBD0\t0x927C\n0xBBD1\t0x9291\n0xBBD2\t0x95A1\n0xBBD3\t0x95A8\n0xBBD4\t0x95A9\n0xBBD5\t0x95A3\n0xBBD6\t0x95A5\n0xBBD7\t0x95A4\n0xBBD8\t0x9699\n0xBBD9\t0x969C\n0xBBDA\t0x969B\n0xBBDB\t0x96CC\n0xBBDC\t0x96D2\n0xBBDD\t0x9700\n0xBBDE\t0x977C\n0xBBDF\t0x9785\n0xBBE0\t0x97F6\n0xBBE1\t0x9817\n0xBBE2\t0x9818\n0xBBE3\t0x98AF\n0xBBE4\t0x98B1\n0xBBE5\t0x9903\n0xBBE6\t0x9905\n0xBBE7\t0x990C\n0xBBE8\t0x9909\n0xBBE9\t0x99C1\n0xBBEA\t0x9AAF\n0xBBEB\t0x9AB0\n0xBBEC\t0x9AE6\n0xBBED\t0x9B41\n0xBBEE\t0x9B42\n0xBBEF\t0x9CF4\n0xBBF0\t0x9CF6\n0xBBF1\t0x9CF3\n0xBBF2\t0x9EBC\n0xBBF3\t0x9F3B\n0xBBF4\t0x9F4A\n0xBBF5\t0x5104\n0xBBF6\t0x5100\n0xBBF7\t0x50FB\n0xBBF8\t0x50F5\n0xBBF9\t0x50F9\n0xBBFA\t0x5102\n0xBBFB\t0x5108\n0xBBFC\t0x5109\n0xBBFD\t0x5105\n0xBBFE\t0x51DC\n0xBC40\t0x5287\n0xBC41\t0x5288\n0xBC42\t0x5289\n0xBC43\t0x528D\n0xBC44\t0x528A\n0xBC45\t0x52F0\n0xBC46\t0x53B2\n0xBC47\t0x562E\n0xBC48\t0x563B\n0xBC49\t0x5639\n0xBC4A\t0x5632\n0xBC4B\t0x563F\n0xBC4C\t0x5634\n0xBC4D\t0x5629\n0xBC4E\t0x5653\n0xBC4F\t0x564E\n0xBC50\t0x5657\n0xBC51\t0x5674\n0xBC52\t0x5636\n0xBC53\t0x562F\n0xBC54\t0x5630\n0xBC55\t0x5880\n0xBC56\t0x589F\n0xBC57\t0x589E\n0xBC58\t0x58B3\n0xBC59\t0x589C\n0xBC5A\t0x58AE\n0xBC5B\t0x58A9\n0xBC5C\t0x58A6\n0xBC5D\t0x596D\n0xBC5E\t0x5B09\n0xBC5F\t0x5AFB\n0xBC60\t0x5B0B\n0xBC61\t0x5AF5\n0xBC62\t0x5B0C\n0xBC63\t0x5B08\n0xBC64\t0x5BEE\n0xBC65\t0x5BEC\n0xBC66\t0x5BE9\n0xBC67\t0x5BEB\n0xBC68\t0x5C64\n0xBC69\t0x5C65\n0xBC6A\t0x5D9D\n0xBC6B\t0x5D94\n0xBC6C\t0x5E62\n0xBC6D\t0x5E5F\n0xBC6E\t0x5E61\n0xBC6F\t0x5EE2\n0xBC70\t0x5EDA\n0xBC71\t0x5EDF\n0xBC72\t0x5EDD\n0xBC73\t0x5EE3\n0xBC74\t0x5EE0\n0xBC75\t0x5F48\n0xBC76\t0x5F71\n0xBC77\t0x5FB7\n0xBC78\t0x5FB5\n0xBC79\t0x6176\n0xBC7A\t0x6167\n0xBC7B\t0x616E\n0xBC7C\t0x615D\n0xBC7D\t0x6155\n0xBC7E\t0x6182\n0xBCA1\t0x617C\n0xBCA2\t0x6170\n0xBCA3\t0x616B\n0xBCA4\t0x617E\n0xBCA5\t0x61A7\n0xBCA6\t0x6190\n0xBCA7\t0x61AB\n0xBCA8\t0x618E\n0xBCA9\t0x61AC\n0xBCAA\t0x619A\n0xBCAB\t0x61A4\n0xBCAC\t0x6194\n0xBCAD\t0x61AE\n0xBCAE\t0x622E\n0xBCAF\t0x6469\n0xBCB0\t0x646F\n0xBCB1\t0x6479\n0xBCB2\t0x649E\n0xBCB3\t0x64B2\n0xBCB4\t0x6488\n0xBCB5\t0x6490\n0xBCB6\t0x64B0\n0xBCB7\t0x64A5\n0xBCB8\t0x6493\n0xBCB9\t0x6495\n0xBCBA\t0x64A9\n0xBCBB\t0x6492\n0xBCBC\t0x64AE\n0xBCBD\t0x64AD\n0xBCBE\t0x64AB\n0xBCBF\t0x649A\n0xBCC0\t0x64AC\n0xBCC1\t0x6499\n0xBCC2\t0x64A2\n0xBCC3\t0x64B3\n0xBCC4\t0x6575\n0xBCC5\t0x6577\n0xBCC6\t0x6578\n0xBCC7\t0x66AE\n0xBCC8\t0x66AB\n0xBCC9\t0x66B4\n0xBCCA\t0x66B1\n0xBCCB\t0x6A23\n0xBCCC\t0x6A1F\n0xBCCD\t0x69E8\n0xBCCE\t0x6A01\n0xBCCF\t0x6A1E\n0xBCD0\t0x6A19\n0xBCD1\t0x69FD\n0xBCD2\t0x6A21\n0xBCD3\t0x6A13\n0xBCD4\t0x6A0A\n0xBCD5\t0x69F3\n0xBCD6\t0x6A02\n0xBCD7\t0x6A05\n0xBCD8\t0x69ED\n0xBCD9\t0x6A11\n0xBCDA\t0x6B50\n0xBCDB\t0x6B4E\n0xBCDC\t0x6BA4\n0xBCDD\t0x6BC5\n0xBCDE\t0x6BC6\n0xBCDF\t0x6F3F\n0xBCE0\t0x6F7C\n0xBCE1\t0x6F84\n0xBCE2\t0x6F51\n0xBCE3\t0x6F66\n0xBCE4\t0x6F54\n0xBCE5\t0x6F86\n0xBCE6\t0x6F6D\n0xBCE7\t0x6F5B\n0xBCE8\t0x6F78\n0xBCE9\t0x6F6E\n0xBCEA\t0x6F8E\n0xBCEB\t0x6F7A\n0xBCEC\t0x6F70\n0xBCED\t0x6F64\n0xBCEE\t0x6F97\n0xBCEF\t0x6F58\n0xBCF0\t0x6ED5\n0xBCF1\t0x6F6F\n0xBCF2\t0x6F60\n0xBCF3\t0x6F5F\n0xBCF4\t0x719F\n0xBCF5\t0x71AC\n0xBCF6\t0x71B1\n0xBCF7\t0x71A8\n0xBCF8\t0x7256\n0xBCF9\t0x729B\n0xBCFA\t0x734E\n0xBCFB\t0x7357\n0xBCFC\t0x7469\n0xBCFD\t0x748B\n0xBCFE\t0x7483\n0xBD40\t0x747E\n0xBD41\t0x7480\n0xBD42\t0x757F\n0xBD43\t0x7620\n0xBD44\t0x7629\n0xBD45\t0x761F\n0xBD46\t0x7624\n0xBD47\t0x7626\n0xBD48\t0x7621\n0xBD49\t0x7622\n0xBD4A\t0x769A\n0xBD4B\t0x76BA\n0xBD4C\t0x76E4\n0xBD4D\t0x778E\n0xBD4E\t0x7787\n0xBD4F\t0x778C\n0xBD50\t0x7791\n0xBD51\t0x778B\n0xBD52\t0x78CB\n0xBD53\t0x78C5\n0xBD54\t0x78BA\n0xBD55\t0x78CA\n0xBD56\t0x78BE\n0xBD57\t0x78D5\n0xBD58\t0x78BC\n0xBD59\t0x78D0\n0xBD5A\t0x7A3F\n0xBD5B\t0x7A3C\n0xBD5C\t0x7A40\n0xBD5D\t0x7A3D\n0xBD5E\t0x7A37\n0xBD5F\t0x7A3B\n0xBD60\t0x7AAF\n0xBD61\t0x7AAE\n0xBD62\t0x7BAD\n0xBD63\t0x7BB1\n0xBD64\t0x7BC4\n0xBD65\t0x7BB4\n0xBD66\t0x7BC6\n0xBD67\t0x7BC7\n0xBD68\t0x7BC1\n0xBD69\t0x7BA0\n0xBD6A\t0x7BCC\n0xBD6B\t0x7CCA\n0xBD6C\t0x7DE0\n0xBD6D\t0x7DF4\n0xBD6E\t0x7DEF\n0xBD6F\t0x7DFB\n0xBD70\t0x7DD8\n0xBD71\t0x7DEC\n0xBD72\t0x7DDD\n0xBD73\t0x7DE8\n0xBD74\t0x7DE3\n0xBD75\t0x7DDA\n0xBD76\t0x7DDE\n0xBD77\t0x7DE9\n0xBD78\t0x7D9E\n0xBD79\t0x7DD9\n0xBD7A\t0x7DF2\n0xBD7B\t0x7DF9\n0xBD7C\t0x7F75\n0xBD7D\t0x7F77\n0xBD7E\t0x7FAF\n0xBDA1\t0x7FE9\n0xBDA2\t0x8026\n0xBDA3\t0x819B\n0xBDA4\t0x819C\n0xBDA5\t0x819D\n0xBDA6\t0x81A0\n0xBDA7\t0x819A\n0xBDA8\t0x8198\n0xBDA9\t0x8517\n0xBDAA\t0x853D\n0xBDAB\t0x851A\n0xBDAC\t0x84EE\n0xBDAD\t0x852C\n0xBDAE\t0x852D\n0xBDAF\t0x8513\n0xBDB0\t0x8511\n0xBDB1\t0x8523\n0xBDB2\t0x8521\n0xBDB3\t0x8514\n0xBDB4\t0x84EC\n0xBDB5\t0x8525\n0xBDB6\t0x84FF\n0xBDB7\t0x8506\n0xBDB8\t0x8782\n0xBDB9\t0x8774\n0xBDBA\t0x8776\n0xBDBB\t0x8760\n0xBDBC\t0x8766\n0xBDBD\t0x8778\n0xBDBE\t0x8768\n0xBDBF\t0x8759\n0xBDC0\t0x8757\n0xBDC1\t0x874C\n0xBDC2\t0x8753\n0xBDC3\t0x885B\n0xBDC4\t0x885D\n0xBDC5\t0x8910\n0xBDC6\t0x8907\n0xBDC7\t0x8912\n0xBDC8\t0x8913\n0xBDC9\t0x8915\n0xBDCA\t0x890A\n0xBDCB\t0x8ABC\n0xBDCC\t0x8AD2\n0xBDCD\t0x8AC7\n0xBDCE\t0x8AC4\n0xBDCF\t0x8A95\n0xBDD0\t0x8ACB\n0xBDD1\t0x8AF8\n0xBDD2\t0x8AB2\n0xBDD3\t0x8AC9\n0xBDD4\t0x8AC2\n0xBDD5\t0x8ABF\n0xBDD6\t0x8AB0\n0xBDD7\t0x8AD6\n0xBDD8\t0x8ACD\n0xBDD9\t0x8AB6\n0xBDDA\t0x8AB9\n0xBDDB\t0x8ADB\n0xBDDC\t0x8C4C\n0xBDDD\t0x8C4E\n0xBDDE\t0x8C6C\n0xBDDF\t0x8CE0\n0xBDE0\t0x8CDE\n0xBDE1\t0x8CE6\n0xBDE2\t0x8CE4\n0xBDE3\t0x8CEC\n0xBDE4\t0x8CED\n0xBDE5\t0x8CE2\n0xBDE6\t0x8CE3\n0xBDE7\t0x8CDC\n0xBDE8\t0x8CEA\n0xBDE9\t0x8CE1\n0xBDEA\t0x8D6D\n0xBDEB\t0x8D9F\n0xBDEC\t0x8DA3\n0xBDED\t0x8E2B\n0xBDEE\t0x8E10\n0xBDEF\t0x8E1D\n0xBDF0\t0x8E22\n0xBDF1\t0x8E0F\n0xBDF2\t0x8E29\n0xBDF3\t0x8E1F\n0xBDF4\t0x8E21\n0xBDF5\t0x8E1E\n0xBDF6\t0x8EBA\n0xBDF7\t0x8F1D\n0xBDF8\t0x8F1B\n0xBDF9\t0x8F1F\n0xBDFA\t0x8F29\n0xBDFB\t0x8F26\n0xBDFC\t0x8F2A\n0xBDFD\t0x8F1C\n0xBDFE\t0x8F1E\n0xBE40\t0x8F25\n0xBE41\t0x9069\n0xBE42\t0x906E\n0xBE43\t0x9068\n0xBE44\t0x906D\n0xBE45\t0x9077\n0xBE46\t0x9130\n0xBE47\t0x912D\n0xBE48\t0x9127\n0xBE49\t0x9131\n0xBE4A\t0x9187\n0xBE4B\t0x9189\n0xBE4C\t0x918B\n0xBE4D\t0x9183\n0xBE4E\t0x92C5\n0xBE4F\t0x92BB\n0xBE50\t0x92B7\n0xBE51\t0x92EA\n0xBE52\t0x92AC\n0xBE53\t0x92E4\n0xBE54\t0x92C1\n0xBE55\t0x92B3\n0xBE56\t0x92BC\n0xBE57\t0x92D2\n0xBE58\t0x92C7\n0xBE59\t0x92F0\n0xBE5A\t0x92B2\n0xBE5B\t0x95AD\n0xBE5C\t0x95B1\n0xBE5D\t0x9704\n0xBE5E\t0x9706\n0xBE5F\t0x9707\n0xBE60\t0x9709\n0xBE61\t0x9760\n0xBE62\t0x978D\n0xBE63\t0x978B\n0xBE64\t0x978F\n0xBE65\t0x9821\n0xBE66\t0x982B\n0xBE67\t0x981C\n0xBE68\t0x98B3\n0xBE69\t0x990A\n0xBE6A\t0x9913\n0xBE6B\t0x9912\n0xBE6C\t0x9918\n0xBE6D\t0x99DD\n0xBE6E\t0x99D0\n0xBE6F\t0x99DF\n0xBE70\t0x99DB\n0xBE71\t0x99D1\n0xBE72\t0x99D5\n0xBE73\t0x99D2\n0xBE74\t0x99D9\n0xBE75\t0x9AB7\n0xBE76\t0x9AEE\n0xBE77\t0x9AEF\n0xBE78\t0x9B27\n0xBE79\t0x9B45\n0xBE7A\t0x9B44\n0xBE7B\t0x9B77\n0xBE7C\t0x9B6F\n0xBE7D\t0x9D06\n0xBE7E\t0x9D09\n0xBEA1\t0x9D03\n0xBEA2\t0x9EA9\n0xBEA3\t0x9EBE\n0xBEA4\t0x9ECE\n0xBEA5\t0x58A8\n0xBEA6\t0x9F52\n0xBEA7\t0x5112\n0xBEA8\t0x5118\n0xBEA9\t0x5114\n0xBEAA\t0x5110\n0xBEAB\t0x5115\n0xBEAC\t0x5180\n0xBEAD\t0x51AA\n0xBEAE\t0x51DD\n0xBEAF\t0x5291\n0xBEB0\t0x5293\n0xBEB1\t0x52F3\n0xBEB2\t0x5659\n0xBEB3\t0x566B\n0xBEB4\t0x5679\n0xBEB5\t0x5669\n0xBEB6\t0x5664\n0xBEB7\t0x5678\n0xBEB8\t0x566A\n0xBEB9\t0x5668\n0xBEBA\t0x5665\n0xBEBB\t0x5671\n0xBEBC\t0x566F\n0xBEBD\t0x566C\n0xBEBE\t0x5662\n0xBEBF\t0x5676\n0xBEC0\t0x58C1\n0xBEC1\t0x58BE\n0xBEC2\t0x58C7\n0xBEC3\t0x58C5\n0xBEC4\t0x596E\n0xBEC5\t0x5B1D\n0xBEC6\t0x5B34\n0xBEC7\t0x5B78\n0xBEC8\t0x5BF0\n0xBEC9\t0x5C0E\n0xBECA\t0x5F4A\n0xBECB\t0x61B2\n0xBECC\t0x6191\n0xBECD\t0x61A9\n0xBECE\t0x618A\n0xBECF\t0x61CD\n0xBED0\t0x61B6\n0xBED1\t0x61BE\n0xBED2\t0x61CA\n0xBED3\t0x61C8\n0xBED4\t0x6230\n0xBED5\t0x64C5\n0xBED6\t0x64C1\n0xBED7\t0x64CB\n0xBED8\t0x64BB\n0xBED9\t0x64BC\n0xBEDA\t0x64DA\n0xBEDB\t0x64C4\n0xBEDC\t0x64C7\n0xBEDD\t0x64C2\n0xBEDE\t0x64CD\n0xBEDF\t0x64BF\n0xBEE0\t0x64D2\n0xBEE1\t0x64D4\n0xBEE2\t0x64BE\n0xBEE3\t0x6574\n0xBEE4\t0x66C6\n0xBEE5\t0x66C9\n0xBEE6\t0x66B9\n0xBEE7\t0x66C4\n0xBEE8\t0x66C7\n0xBEE9\t0x66B8\n0xBEEA\t0x6A3D\n0xBEEB\t0x6A38\n0xBEEC\t0x6A3A\n0xBEED\t0x6A59\n0xBEEE\t0x6A6B\n0xBEEF\t0x6A58\n0xBEF0\t0x6A39\n0xBEF1\t0x6A44\n0xBEF2\t0x6A62\n0xBEF3\t0x6A61\n0xBEF4\t0x6A4B\n0xBEF5\t0x6A47\n0xBEF6\t0x6A35\n0xBEF7\t0x6A5F\n0xBEF8\t0x6A48\n0xBEF9\t0x6B59\n0xBEFA\t0x6B77\n0xBEFB\t0x6C05\n0xBEFC\t0x6FC2\n0xBEFD\t0x6FB1\n0xBEFE\t0x6FA1\n0xBF40\t0x6FC3\n0xBF41\t0x6FA4\n0xBF42\t0x6FC1\n0xBF43\t0x6FA7\n0xBF44\t0x6FB3\n0xBF45\t0x6FC0\n0xBF46\t0x6FB9\n0xBF47\t0x6FB6\n0xBF48\t0x6FA6\n0xBF49\t0x6FA0\n0xBF4A\t0x6FB4\n0xBF4B\t0x71BE\n0xBF4C\t0x71C9\n0xBF4D\t0x71D0\n0xBF4E\t0x71D2\n0xBF4F\t0x71C8\n0xBF50\t0x71D5\n0xBF51\t0x71B9\n0xBF52\t0x71CE\n0xBF53\t0x71D9\n0xBF54\t0x71DC\n0xBF55\t0x71C3\n0xBF56\t0x71C4\n0xBF57\t0x7368\n0xBF58\t0x749C\n0xBF59\t0x74A3\n0xBF5A\t0x7498\n0xBF5B\t0x749F\n0xBF5C\t0x749E\n0xBF5D\t0x74E2\n0xBF5E\t0x750C\n0xBF5F\t0x750D\n0xBF60\t0x7634\n0xBF61\t0x7638\n0xBF62\t0x763A\n0xBF63\t0x76E7\n0xBF64\t0x76E5\n0xBF65\t0x77A0\n0xBF66\t0x779E\n0xBF67\t0x779F\n0xBF68\t0x77A5\n0xBF69\t0x78E8\n0xBF6A\t0x78DA\n0xBF6B\t0x78EC\n0xBF6C\t0x78E7\n0xBF6D\t0x79A6\n0xBF6E\t0x7A4D\n0xBF6F\t0x7A4E\n0xBF70\t0x7A46\n0xBF71\t0x7A4C\n0xBF72\t0x7A4B\n0xBF73\t0x7ABA\n0xBF74\t0x7BD9\n0xBF75\t0x7C11\n0xBF76\t0x7BC9\n0xBF77\t0x7BE4\n0xBF78\t0x7BDB\n0xBF79\t0x7BE1\n0xBF7A\t0x7BE9\n0xBF7B\t0x7BE6\n0xBF7C\t0x7CD5\n0xBF7D\t0x7CD6\n0xBF7E\t0x7E0A\n0xBFA1\t0x7E11\n0xBFA2\t0x7E08\n0xBFA3\t0x7E1B\n0xBFA4\t0x7E23\n0xBFA5\t0x7E1E\n0xBFA6\t0x7E1D\n0xBFA7\t0x7E09\n0xBFA8\t0x7E10\n0xBFA9\t0x7F79\n0xBFAA\t0x7FB2\n0xBFAB\t0x7FF0\n0xBFAC\t0x7FF1\n0xBFAD\t0x7FEE\n0xBFAE\t0x8028\n0xBFAF\t0x81B3\n0xBFB0\t0x81A9\n0xBFB1\t0x81A8\n0xBFB2\t0x81FB\n0xBFB3\t0x8208\n0xBFB4\t0x8258\n0xBFB5\t0x8259\n0xBFB6\t0x854A\n0xBFB7\t0x8559\n0xBFB8\t0x8548\n0xBFB9\t0x8568\n0xBFBA\t0x8569\n0xBFBB\t0x8543\n0xBFBC\t0x8549\n0xBFBD\t0x856D\n0xBFBE\t0x856A\n0xBFBF\t0x855E\n0xBFC0\t0x8783\n0xBFC1\t0x879F\n0xBFC2\t0x879E\n0xBFC3\t0x87A2\n0xBFC4\t0x878D\n0xBFC5\t0x8861\n0xBFC6\t0x892A\n0xBFC7\t0x8932\n0xBFC8\t0x8925\n0xBFC9\t0x892B\n0xBFCA\t0x8921\n0xBFCB\t0x89AA\n0xBFCC\t0x89A6\n0xBFCD\t0x8AE6\n0xBFCE\t0x8AFA\n0xBFCF\t0x8AEB\n0xBFD0\t0x8AF1\n0xBFD1\t0x8B00\n0xBFD2\t0x8ADC\n0xBFD3\t0x8AE7\n0xBFD4\t0x8AEE\n0xBFD5\t0x8AFE\n0xBFD6\t0x8B01\n0xBFD7\t0x8B02\n0xBFD8\t0x8AF7\n0xBFD9\t0x8AED\n0xBFDA\t0x8AF3\n0xBFDB\t0x8AF6\n0xBFDC\t0x8AFC\n0xBFDD\t0x8C6B\n0xBFDE\t0x8C6D\n0xBFDF\t0x8C93\n0xBFE0\t0x8CF4\n0xBFE1\t0x8E44\n0xBFE2\t0x8E31\n0xBFE3\t0x8E34\n0xBFE4\t0x8E42\n0xBFE5\t0x8E39\n0xBFE6\t0x8E35\n0xBFE7\t0x8F3B\n0xBFE8\t0x8F2F\n0xBFE9\t0x8F38\n0xBFEA\t0x8F33\n0xBFEB\t0x8FA8\n0xBFEC\t0x8FA6\n0xBFED\t0x9075\n0xBFEE\t0x9074\n0xBFEF\t0x9078\n0xBFF0\t0x9072\n0xBFF1\t0x907C\n0xBFF2\t0x907A\n0xBFF3\t0x9134\n0xBFF4\t0x9192\n0xBFF5\t0x9320\n0xBFF6\t0x9336\n0xBFF7\t0x92F8\n0xBFF8\t0x9333\n0xBFF9\t0x932F\n0xBFFA\t0x9322\n0xBFFB\t0x92FC\n0xBFFC\t0x932B\n0xBFFD\t0x9304\n0xBFFE\t0x931A\n0xC040\t0x9310\n0xC041\t0x9326\n0xC042\t0x9321\n0xC043\t0x9315\n0xC044\t0x932E\n0xC045\t0x9319\n0xC046\t0x95BB\n0xC047\t0x96A7\n0xC048\t0x96A8\n0xC049\t0x96AA\n0xC04A\t0x96D5\n0xC04B\t0x970E\n0xC04C\t0x9711\n0xC04D\t0x9716\n0xC04E\t0x970D\n0xC04F\t0x9713\n0xC050\t0x970F\n0xC051\t0x975B\n0xC052\t0x975C\n0xC053\t0x9766\n0xC054\t0x9798\n0xC055\t0x9830\n0xC056\t0x9838\n0xC057\t0x983B\n0xC058\t0x9837\n0xC059\t0x982D\n0xC05A\t0x9839\n0xC05B\t0x9824\n0xC05C\t0x9910\n0xC05D\t0x9928\n0xC05E\t0x991E\n0xC05F\t0x991B\n0xC060\t0x9921\n0xC061\t0x991A\n0xC062\t0x99ED\n0xC063\t0x99E2\n0xC064\t0x99F1\n0xC065\t0x9AB8\n0xC066\t0x9ABC\n0xC067\t0x9AFB\n0xC068\t0x9AED\n0xC069\t0x9B28\n0xC06A\t0x9B91\n0xC06B\t0x9D15\n0xC06C\t0x9D23\n0xC06D\t0x9D26\n0xC06E\t0x9D28\n0xC06F\t0x9D12\n0xC070\t0x9D1B\n0xC071\t0x9ED8\n0xC072\t0x9ED4\n0xC073\t0x9F8D\n0xC074\t0x9F9C\n0xC075\t0x512A\n0xC076\t0x511F\n0xC077\t0x5121\n0xC078\t0x5132\n0xC079\t0x52F5\n0xC07A\t0x568E\n0xC07B\t0x5680\n0xC07C\t0x5690\n0xC07D\t0x5685\n0xC07E\t0x5687\n0xC0A1\t0x568F\n0xC0A2\t0x58D5\n0xC0A3\t0x58D3\n0xC0A4\t0x58D1\n0xC0A5\t0x58CE\n0xC0A6\t0x5B30\n0xC0A7\t0x5B2A\n0xC0A8\t0x5B24\n0xC0A9\t0x5B7A\n0xC0AA\t0x5C37\n0xC0AB\t0x5C68\n0xC0AC\t0x5DBC\n0xC0AD\t0x5DBA\n0xC0AE\t0x5DBD\n0xC0AF\t0x5DB8\n0xC0B0\t0x5E6B\n0xC0B1\t0x5F4C\n0xC0B2\t0x5FBD\n0xC0B3\t0x61C9\n0xC0B4\t0x61C2\n0xC0B5\t0x61C7\n0xC0B6\t0x61E6\n0xC0B7\t0x61CB\n0xC0B8\t0x6232\n0xC0B9\t0x6234\n0xC0BA\t0x64CE\n0xC0BB\t0x64CA\n0xC0BC\t0x64D8\n0xC0BD\t0x64E0\n0xC0BE\t0x64F0\n0xC0BF\t0x64E6\n0xC0C0\t0x64EC\n0xC0C1\t0x64F1\n0xC0C2\t0x64E2\n0xC0C3\t0x64ED\n0xC0C4\t0x6582\n0xC0C5\t0x6583\n0xC0C6\t0x66D9\n0xC0C7\t0x66D6\n0xC0C8\t0x6A80\n0xC0C9\t0x6A94\n0xC0CA\t0x6A84\n0xC0CB\t0x6AA2\n0xC0CC\t0x6A9C\n0xC0CD\t0x6ADB\n0xC0CE\t0x6AA3\n0xC0CF\t0x6A7E\n0xC0D0\t0x6A97\n0xC0D1\t0x6A90\n0xC0D2\t0x6AA0\n0xC0D3\t0x6B5C\n0xC0D4\t0x6BAE\n0xC0D5\t0x6BDA\n0xC0D6\t0x6C08\n0xC0D7\t0x6FD8\n0xC0D8\t0x6FF1\n0xC0D9\t0x6FDF\n0xC0DA\t0x6FE0\n0xC0DB\t0x6FDB\n0xC0DC\t0x6FE4\n0xC0DD\t0x6FEB\n0xC0DE\t0x6FEF\n0xC0DF\t0x6F80\n0xC0E0\t0x6FEC\n0xC0E1\t0x6FE1\n0xC0E2\t0x6FE9\n0xC0E3\t0x6FD5\n0xC0E4\t0x6FEE\n0xC0E5\t0x6FF0\n0xC0E6\t0x71E7\n0xC0E7\t0x71DF\n0xC0E8\t0x71EE\n0xC0E9\t0x71E6\n0xC0EA\t0x71E5\n0xC0EB\t0x71ED\n0xC0EC\t0x71EC\n0xC0ED\t0x71F4\n0xC0EE\t0x71E0\n0xC0EF\t0x7235\n0xC0F0\t0x7246\n0xC0F1\t0x7370\n0xC0F2\t0x7372\n0xC0F3\t0x74A9\n0xC0F4\t0x74B0\n0xC0F5\t0x74A6\n0xC0F6\t0x74A8\n0xC0F7\t0x7646\n0xC0F8\t0x7642\n0xC0F9\t0x764C\n0xC0FA\t0x76EA\n0xC0FB\t0x77B3\n0xC0FC\t0x77AA\n0xC0FD\t0x77B0\n0xC0FE\t0x77AC\n0xC140\t0x77A7\n0xC141\t0x77AD\n0xC142\t0x77EF\n0xC143\t0x78F7\n0xC144\t0x78FA\n0xC145\t0x78F4\n0xC146\t0x78EF\n0xC147\t0x7901\n0xC148\t0x79A7\n0xC149\t0x79AA\n0xC14A\t0x7A57\n0xC14B\t0x7ABF\n0xC14C\t0x7C07\n0xC14D\t0x7C0D\n0xC14E\t0x7BFE\n0xC14F\t0x7BF7\n0xC150\t0x7C0C\n0xC151\t0x7BE0\n0xC152\t0x7CE0\n0xC153\t0x7CDC\n0xC154\t0x7CDE\n0xC155\t0x7CE2\n0xC156\t0x7CDF\n0xC157\t0x7CD9\n0xC158\t0x7CDD\n0xC159\t0x7E2E\n0xC15A\t0x7E3E\n0xC15B\t0x7E46\n0xC15C\t0x7E37\n0xC15D\t0x7E32\n0xC15E\t0x7E43\n0xC15F\t0x7E2B\n0xC160\t0x7E3D\n0xC161\t0x7E31\n0xC162\t0x7E45\n0xC163\t0x7E41\n0xC164\t0x7E34\n0xC165\t0x7E39\n0xC166\t0x7E48\n0xC167\t0x7E35\n0xC168\t0x7E3F\n0xC169\t0x7E2F\n0xC16A\t0x7F44\n0xC16B\t0x7FF3\n0xC16C\t0x7FFC\n0xC16D\t0x8071\n0xC16E\t0x8072\n0xC16F\t0x8070\n0xC170\t0x806F\n0xC171\t0x8073\n0xC172\t0x81C6\n0xC173\t0x81C3\n0xC174\t0x81BA\n0xC175\t0x81C2\n0xC176\t0x81C0\n0xC177\t0x81BF\n0xC178\t0x81BD\n0xC179\t0x81C9\n0xC17A\t0x81BE\n0xC17B\t0x81E8\n0xC17C\t0x8209\n0xC17D\t0x8271\n0xC17E\t0x85AA\n0xC1A1\t0x8584\n0xC1A2\t0x857E\n0xC1A3\t0x859C\n0xC1A4\t0x8591\n0xC1A5\t0x8594\n0xC1A6\t0x85AF\n0xC1A7\t0x859B\n0xC1A8\t0x8587\n0xC1A9\t0x85A8\n0xC1AA\t0x858A\n0xC1AB\t0x8667\n0xC1AC\t0x87C0\n0xC1AD\t0x87D1\n0xC1AE\t0x87B3\n0xC1AF\t0x87D2\n0xC1B0\t0x87C6\n0xC1B1\t0x87AB\n0xC1B2\t0x87BB\n0xC1B3\t0x87BA\n0xC1B4\t0x87C8\n0xC1B5\t0x87CB\n0xC1B6\t0x893B\n0xC1B7\t0x8936\n0xC1B8\t0x8944\n0xC1B9\t0x8938\n0xC1BA\t0x893D\n0xC1BB\t0x89AC\n0xC1BC\t0x8B0E\n0xC1BD\t0x8B17\n0xC1BE\t0x8B19\n0xC1BF\t0x8B1B\n0xC1C0\t0x8B0A\n0xC1C1\t0x8B20\n0xC1C2\t0x8B1D\n0xC1C3\t0x8B04\n0xC1C4\t0x8B10\n0xC1C5\t0x8C41\n0xC1C6\t0x8C3F\n0xC1C7\t0x8C73\n0xC1C8\t0x8CFA\n0xC1C9\t0x8CFD\n0xC1CA\t0x8CFC\n0xC1CB\t0x8CF8\n0xC1CC\t0x8CFB\n0xC1CD\t0x8DA8\n0xC1CE\t0x8E49\n0xC1CF\t0x8E4B\n0xC1D0\t0x8E48\n0xC1D1\t0x8E4A\n0xC1D2\t0x8F44\n0xC1D3\t0x8F3E\n0xC1D4\t0x8F42\n0xC1D5\t0x8F45\n0xC1D6\t0x8F3F\n0xC1D7\t0x907F\n0xC1D8\t0x907D\n0xC1D9\t0x9084\n0xC1DA\t0x9081\n0xC1DB\t0x9082\n0xC1DC\t0x9080\n0xC1DD\t0x9139\n0xC1DE\t0x91A3\n0xC1DF\t0x919E\n0xC1E0\t0x919C\n0xC1E1\t0x934D\n0xC1E2\t0x9382\n0xC1E3\t0x9328\n0xC1E4\t0x9375\n0xC1E5\t0x934A\n0xC1E6\t0x9365\n0xC1E7\t0x934B\n0xC1E8\t0x9318\n0xC1E9\t0x937E\n0xC1EA\t0x936C\n0xC1EB\t0x935B\n0xC1EC\t0x9370\n0xC1ED\t0x935A\n0xC1EE\t0x9354\n0xC1EF\t0x95CA\n0xC1F0\t0x95CB\n0xC1F1\t0x95CC\n0xC1F2\t0x95C8\n0xC1F3\t0x95C6\n0xC1F4\t0x96B1\n0xC1F5\t0x96B8\n0xC1F6\t0x96D6\n0xC1F7\t0x971C\n0xC1F8\t0x971E\n0xC1F9\t0x97A0\n0xC1FA\t0x97D3\n0xC1FB\t0x9846\n0xC1FC\t0x98B6\n0xC1FD\t0x9935\n0xC1FE\t0x9A01\n0xC240\t0x99FF\n0xC241\t0x9BAE\n0xC242\t0x9BAB\n0xC243\t0x9BAA\n0xC244\t0x9BAD\n0xC245\t0x9D3B\n0xC246\t0x9D3F\n0xC247\t0x9E8B\n0xC248\t0x9ECF\n0xC249\t0x9EDE\n0xC24A\t0x9EDC\n0xC24B\t0x9EDD\n0xC24C\t0x9EDB\n0xC24D\t0x9F3E\n0xC24E\t0x9F4B\n0xC24F\t0x53E2\n0xC250\t0x5695\n0xC251\t0x56AE\n0xC252\t0x58D9\n0xC253\t0x58D8\n0xC254\t0x5B38\n0xC255\t0x5F5D\n0xC256\t0x61E3\n0xC257\t0x6233\n0xC258\t0x64F4\n0xC259\t0x64F2\n0xC25A\t0x64FE\n0xC25B\t0x6506\n0xC25C\t0x64FA\n0xC25D\t0x64FB\n0xC25E\t0x64F7\n0xC25F\t0x65B7\n0xC260\t0x66DC\n0xC261\t0x6726\n0xC262\t0x6AB3\n0xC263\t0x6AAC\n0xC264\t0x6AC3\n0xC265\t0x6ABB\n0xC266\t0x6AB8\n0xC267\t0x6AC2\n0xC268\t0x6AAE\n0xC269\t0x6AAF\n0xC26A\t0x6B5F\n0xC26B\t0x6B78\n0xC26C\t0x6BAF\n0xC26D\t0x7009\n0xC26E\t0x700B\n0xC26F\t0x6FFE\n0xC270\t0x7006\n0xC271\t0x6FFA\n0xC272\t0x7011\n0xC273\t0x700F\n0xC274\t0x71FB\n0xC275\t0x71FC\n0xC276\t0x71FE\n0xC277\t0x71F8\n0xC278\t0x7377\n0xC279\t0x7375\n0xC27A\t0x74A7\n0xC27B\t0x74BF\n0xC27C\t0x7515\n0xC27D\t0x7656\n0xC27E\t0x7658\n0xC2A1\t0x7652\n0xC2A2\t0x77BD\n0xC2A3\t0x77BF\n0xC2A4\t0x77BB\n0xC2A5\t0x77BC\n0xC2A6\t0x790E\n0xC2A7\t0x79AE\n0xC2A8\t0x7A61\n0xC2A9\t0x7A62\n0xC2AA\t0x7A60\n0xC2AB\t0x7AC4\n0xC2AC\t0x7AC5\n0xC2AD\t0x7C2B\n0xC2AE\t0x7C27\n0xC2AF\t0x7C2A\n0xC2B0\t0x7C1E\n0xC2B1\t0x7C23\n0xC2B2\t0x7C21\n0xC2B3\t0x7CE7\n0xC2B4\t0x7E54\n0xC2B5\t0x7E55\n0xC2B6\t0x7E5E\n0xC2B7\t0x7E5A\n0xC2B8\t0x7E61\n0xC2B9\t0x7E52\n0xC2BA\t0x7E59\n0xC2BB\t0x7F48\n0xC2BC\t0x7FF9\n0xC2BD\t0x7FFB\n0xC2BE\t0x8077\n0xC2BF\t0x8076\n0xC2C0\t0x81CD\n0xC2C1\t0x81CF\n0xC2C2\t0x820A\n0xC2C3\t0x85CF\n0xC2C4\t0x85A9\n0xC2C5\t0x85CD\n0xC2C6\t0x85D0\n0xC2C7\t0x85C9\n0xC2C8\t0x85B0\n0xC2C9\t0x85BA\n0xC2CA\t0x85B9\n0xC2CB\t0x85A6\n0xC2CC\t0x87EF\n0xC2CD\t0x87EC\n0xC2CE\t0x87F2\n0xC2CF\t0x87E0\n0xC2D0\t0x8986\n0xC2D1\t0x89B2\n0xC2D2\t0x89F4\n0xC2D3\t0x8B28\n0xC2D4\t0x8B39\n0xC2D5\t0x8B2C\n0xC2D6\t0x8B2B\n0xC2D7\t0x8C50\n0xC2D8\t0x8D05\n0xC2D9\t0x8E59\n0xC2DA\t0x8E63\n0xC2DB\t0x8E66\n0xC2DC\t0x8E64\n0xC2DD\t0x8E5F\n0xC2DE\t0x8E55\n0xC2DF\t0x8EC0\n0xC2E0\t0x8F49\n0xC2E1\t0x8F4D\n0xC2E2\t0x9087\n0xC2E3\t0x9083\n0xC2E4\t0x9088\n0xC2E5\t0x91AB\n0xC2E6\t0x91AC\n0xC2E7\t0x91D0\n0xC2E8\t0x9394\n0xC2E9\t0x938A\n0xC2EA\t0x9396\n0xC2EB\t0x93A2\n0xC2EC\t0x93B3\n0xC2ED\t0x93AE\n0xC2EE\t0x93AC\n0xC2EF\t0x93B0\n0xC2F0\t0x9398\n0xC2F1\t0x939A\n0xC2F2\t0x9397\n0xC2F3\t0x95D4\n0xC2F4\t0x95D6\n0xC2F5\t0x95D0\n0xC2F6\t0x95D5\n0xC2F7\t0x96E2\n0xC2F8\t0x96DC\n0xC2F9\t0x96D9\n0xC2FA\t0x96DB\n0xC2FB\t0x96DE\n0xC2FC\t0x9724\n0xC2FD\t0x97A3\n0xC2FE\t0x97A6\n0xC340\t0x97AD\n0xC341\t0x97F9\n0xC342\t0x984D\n0xC343\t0x984F\n0xC344\t0x984C\n0xC345\t0x984E\n0xC346\t0x9853\n0xC347\t0x98BA\n0xC348\t0x993E\n0xC349\t0x993F\n0xC34A\t0x993D\n0xC34B\t0x992E\n0xC34C\t0x99A5\n0xC34D\t0x9A0E\n0xC34E\t0x9AC1\n0xC34F\t0x9B03\n0xC350\t0x9B06\n0xC351\t0x9B4F\n0xC352\t0x9B4E\n0xC353\t0x9B4D\n0xC354\t0x9BCA\n0xC355\t0x9BC9\n0xC356\t0x9BFD\n0xC357\t0x9BC8\n0xC358\t0x9BC0\n0xC359\t0x9D51\n0xC35A\t0x9D5D\n0xC35B\t0x9D60\n0xC35C\t0x9EE0\n0xC35D\t0x9F15\n0xC35E\t0x9F2C\n0xC35F\t0x5133\n0xC360\t0x56A5\n0xC361\t0x58DE\n0xC362\t0x58DF\n0xC363\t0x58E2\n0xC364\t0x5BF5\n0xC365\t0x9F90\n0xC366\t0x5EEC\n0xC367\t0x61F2\n0xC368\t0x61F7\n0xC369\t0x61F6\n0xC36A\t0x61F5\n0xC36B\t0x6500\n0xC36C\t0x650F\n0xC36D\t0x66E0\n0xC36E\t0x66DD\n0xC36F\t0x6AE5\n0xC370\t0x6ADD\n0xC371\t0x6ADA\n0xC372\t0x6AD3\n0xC373\t0x701B\n0xC374\t0x701F\n0xC375\t0x7028\n0xC376\t0x701A\n0xC377\t0x701D\n0xC378\t0x7015\n0xC379\t0x7018\n0xC37A\t0x7206\n0xC37B\t0x720D\n0xC37C\t0x7258\n0xC37D\t0x72A2\n0xC37E\t0x7378\n0xC3A1\t0x737A\n0xC3A2\t0x74BD\n0xC3A3\t0x74CA\n0xC3A4\t0x74E3\n0xC3A5\t0x7587\n0xC3A6\t0x7586\n0xC3A7\t0x765F\n0xC3A8\t0x7661\n0xC3A9\t0x77C7\n0xC3AA\t0x7919\n0xC3AB\t0x79B1\n0xC3AC\t0x7A6B\n0xC3AD\t0x7A69\n0xC3AE\t0x7C3E\n0xC3AF\t0x7C3F\n0xC3B0\t0x7C38\n0xC3B1\t0x7C3D\n0xC3B2\t0x7C37\n0xC3B3\t0x7C40\n0xC3B4\t0x7E6B\n0xC3B5\t0x7E6D\n0xC3B6\t0x7E79\n0xC3B7\t0x7E69\n0xC3B8\t0x7E6A\n0xC3B9\t0x7F85\n0xC3BA\t0x7E73\n0xC3BB\t0x7FB6\n0xC3BC\t0x7FB9\n0xC3BD\t0x7FB8\n0xC3BE\t0x81D8\n0xC3BF\t0x85E9\n0xC3C0\t0x85DD\n0xC3C1\t0x85EA\n0xC3C2\t0x85D5\n0xC3C3\t0x85E4\n0xC3C4\t0x85E5\n0xC3C5\t0x85F7\n0xC3C6\t0x87FB\n0xC3C7\t0x8805\n0xC3C8\t0x880D\n0xC3C9\t0x87F9\n0xC3CA\t0x87FE\n0xC3CB\t0x8960\n0xC3CC\t0x895F\n0xC3CD\t0x8956\n0xC3CE\t0x895E\n0xC3CF\t0x8B41\n0xC3D0\t0x8B5C\n0xC3D1\t0x8B58\n0xC3D2\t0x8B49\n0xC3D3\t0x8B5A\n0xC3D4\t0x8B4E\n0xC3D5\t0x8B4F\n0xC3D6\t0x8B46\n0xC3D7\t0x8B59\n0xC3D8\t0x8D08\n0xC3D9\t0x8D0A\n0xC3DA\t0x8E7C\n0xC3DB\t0x8E72\n0xC3DC\t0x8E87\n0xC3DD\t0x8E76\n0xC3DE\t0x8E6C\n0xC3DF\t0x8E7A\n0xC3E0\t0x8E74\n0xC3E1\t0x8F54\n0xC3E2\t0x8F4E\n0xC3E3\t0x8FAD\n0xC3E4\t0x908A\n0xC3E5\t0x908B\n0xC3E6\t0x91B1\n0xC3E7\t0x91AE\n0xC3E8\t0x93E1\n0xC3E9\t0x93D1\n0xC3EA\t0x93DF\n0xC3EB\t0x93C3\n0xC3EC\t0x93C8\n0xC3ED\t0x93DC\n0xC3EE\t0x93DD\n0xC3EF\t0x93D6\n0xC3F0\t0x93E2\n0xC3F1\t0x93CD\n0xC3F2\t0x93D8\n0xC3F3\t0x93E4\n0xC3F4\t0x93D7\n0xC3F5\t0x93E8\n0xC3F6\t0x95DC\n0xC3F7\t0x96B4\n0xC3F8\t0x96E3\n0xC3F9\t0x972A\n0xC3FA\t0x9727\n0xC3FB\t0x9761\n0xC3FC\t0x97DC\n0xC3FD\t0x97FB\n0xC3FE\t0x985E\n0xC440\t0x9858\n0xC441\t0x985B\n0xC442\t0x98BC\n0xC443\t0x9945\n0xC444\t0x9949\n0xC445\t0x9A16\n0xC446\t0x9A19\n0xC447\t0x9B0D\n0xC448\t0x9BE8\n0xC449\t0x9BE7\n0xC44A\t0x9BD6\n0xC44B\t0x9BDB\n0xC44C\t0x9D89\n0xC44D\t0x9D61\n0xC44E\t0x9D72\n0xC44F\t0x9D6A\n0xC450\t0x9D6C\n0xC451\t0x9E92\n0xC452\t0x9E97\n0xC453\t0x9E93\n0xC454\t0x9EB4\n0xC455\t0x52F8\n0xC456\t0x56A8\n0xC457\t0x56B7\n0xC458\t0x56B6\n0xC459\t0x56B4\n0xC45A\t0x56BC\n0xC45B\t0x58E4\n0xC45C\t0x5B40\n0xC45D\t0x5B43\n0xC45E\t0x5B7D\n0xC45F\t0x5BF6\n0xC460\t0x5DC9\n0xC461\t0x61F8\n0xC462\t0x61FA\n0xC463\t0x6518\n0xC464\t0x6514\n0xC465\t0x6519\n0xC466\t0x66E6\n0xC467\t0x6727\n0xC468\t0x6AEC\n0xC469\t0x703E\n0xC46A\t0x7030\n0xC46B\t0x7032\n0xC46C\t0x7210\n0xC46D\t0x737B\n0xC46E\t0x74CF\n0xC46F\t0x7662\n0xC470\t0x7665\n0xC471\t0x7926\n0xC472\t0x792A\n0xC473\t0x792C\n0xC474\t0x792B\n0xC475\t0x7AC7\n0xC476\t0x7AF6\n0xC477\t0x7C4C\n0xC478\t0x7C43\n0xC479\t0x7C4D\n0xC47A\t0x7CEF\n0xC47B\t0x7CF0\n0xC47C\t0x8FAE\n0xC47D\t0x7E7D\n0xC47E\t0x7E7C\n0xC4A1\t0x7E82\n0xC4A2\t0x7F4C\n0xC4A3\t0x8000\n0xC4A4\t0x81DA\n0xC4A5\t0x8266\n0xC4A6\t0x85FB\n0xC4A7\t0x85F9\n0xC4A8\t0x8611\n0xC4A9\t0x85FA\n0xC4AA\t0x8606\n0xC4AB\t0x860B\n0xC4AC\t0x8607\n0xC4AD\t0x860A\n0xC4AE\t0x8814\n0xC4AF\t0x8815\n0xC4B0\t0x8964\n0xC4B1\t0x89BA\n0xC4B2\t0x89F8\n0xC4B3\t0x8B70\n0xC4B4\t0x8B6C\n0xC4B5\t0x8B66\n0xC4B6\t0x8B6F\n0xC4B7\t0x8B5F\n0xC4B8\t0x8B6B\n0xC4B9\t0x8D0F\n0xC4BA\t0x8D0D\n0xC4BB\t0x8E89\n0xC4BC\t0x8E81\n0xC4BD\t0x8E85\n0xC4BE\t0x8E82\n0xC4BF\t0x91B4\n0xC4C0\t0x91CB\n0xC4C1\t0x9418\n0xC4C2\t0x9403\n0xC4C3\t0x93FD\n0xC4C4\t0x95E1\n0xC4C5\t0x9730\n0xC4C6\t0x98C4\n0xC4C7\t0x9952\n0xC4C8\t0x9951\n0xC4C9\t0x99A8\n0xC4CA\t0x9A2B\n0xC4CB\t0x9A30\n0xC4CC\t0x9A37\n0xC4CD\t0x9A35\n0xC4CE\t0x9C13\n0xC4CF\t0x9C0D\n0xC4D0\t0x9E79\n0xC4D1\t0x9EB5\n0xC4D2\t0x9EE8\n0xC4D3\t0x9F2F\n0xC4D4\t0x9F5F\n0xC4D5\t0x9F63\n0xC4D6\t0x9F61\n0xC4D7\t0x5137\n0xC4D8\t0x5138\n0xC4D9\t0x56C1\n0xC4DA\t0x56C0\n0xC4DB\t0x56C2\n0xC4DC\t0x5914\n0xC4DD\t0x5C6C\n0xC4DE\t0x5DCD\n0xC4DF\t0x61FC\n0xC4E0\t0x61FE\n0xC4E1\t0x651D\n0xC4E2\t0x651C\n0xC4E3\t0x6595\n0xC4E4\t0x66E9\n0xC4E5\t0x6AFB\n0xC4E6\t0x6B04\n0xC4E7\t0x6AFA\n0xC4E8\t0x6BB2\n0xC4E9\t0x704C\n0xC4EA\t0x721B\n0xC4EB\t0x72A7\n0xC4EC\t0x74D6\n0xC4ED\t0x74D4\n0xC4EE\t0x7669\n0xC4EF\t0x77D3\n0xC4F0\t0x7C50\n0xC4F1\t0x7E8F\n0xC4F2\t0x7E8C\n0xC4F3\t0x7FBC\n0xC4F4\t0x8617\n0xC4F5\t0x862D\n0xC4F6\t0x861A\n0xC4F7\t0x8823\n0xC4F8\t0x8822\n0xC4F9\t0x8821\n0xC4FA\t0x881F\n0xC4FB\t0x896A\n0xC4FC\t0x896C\n0xC4FD\t0x89BD\n0xC4FE\t0x8B74\n0xC540\t0x8B77\n0xC541\t0x8B7D\n0xC542\t0x8D13\n0xC543\t0x8E8A\n0xC544\t0x8E8D\n0xC545\t0x8E8B\n0xC546\t0x8F5F\n0xC547\t0x8FAF\n0xC548\t0x91BA\n0xC549\t0x942E\n0xC54A\t0x9433\n0xC54B\t0x9435\n0xC54C\t0x943A\n0xC54D\t0x9438\n0xC54E\t0x9432\n0xC54F\t0x942B\n0xC550\t0x95E2\n0xC551\t0x9738\n0xC552\t0x9739\n0xC553\t0x9732\n0xC554\t0x97FF\n0xC555\t0x9867\n0xC556\t0x9865\n0xC557\t0x9957\n0xC558\t0x9A45\n0xC559\t0x9A43\n0xC55A\t0x9A40\n0xC55B\t0x9A3E\n0xC55C\t0x9ACF\n0xC55D\t0x9B54\n0xC55E\t0x9B51\n0xC55F\t0x9C2D\n0xC560\t0x9C25\n0xC561\t0x9DAF\n0xC562\t0x9DB4\n0xC563\t0x9DC2\n0xC564\t0x9DB8\n0xC565\t0x9E9D\n0xC566\t0x9EEF\n0xC567\t0x9F19\n0xC568\t0x9F5C\n0xC569\t0x9F66\n0xC56A\t0x9F67\n0xC56B\t0x513C\n0xC56C\t0x513B\n0xC56D\t0x56C8\n0xC56E\t0x56CA\n0xC56F\t0x56C9\n0xC570\t0x5B7F\n0xC571\t0x5DD4\n0xC572\t0x5DD2\n0xC573\t0x5F4E\n0xC574\t0x61FF\n0xC575\t0x6524\n0xC576\t0x6B0A\n0xC577\t0x6B61\n0xC578\t0x7051\n0xC579\t0x7058\n0xC57A\t0x7380\n0xC57B\t0x74E4\n0xC57C\t0x758A\n0xC57D\t0x766E\n0xC57E\t0x766C\n0xC5A1\t0x79B3\n0xC5A2\t0x7C60\n0xC5A3\t0x7C5F\n0xC5A4\t0x807E\n0xC5A5\t0x807D\n0xC5A6\t0x81DF\n0xC5A7\t0x8972\n0xC5A8\t0x896F\n0xC5A9\t0x89FC\n0xC5AA\t0x8B80\n0xC5AB\t0x8D16\n0xC5AC\t0x8D17\n0xC5AD\t0x8E91\n0xC5AE\t0x8E93\n0xC5AF\t0x8F61\n0xC5B0\t0x9148\n0xC5B1\t0x9444\n0xC5B2\t0x9451\n0xC5B3\t0x9452\n0xC5B4\t0x973D\n0xC5B5\t0x973E\n0xC5B6\t0x97C3\n0xC5B7\t0x97C1\n0xC5B8\t0x986B\n0xC5B9\t0x9955\n0xC5BA\t0x9A55\n0xC5BB\t0x9A4D\n0xC5BC\t0x9AD2\n0xC5BD\t0x9B1A\n0xC5BE\t0x9C49\n0xC5BF\t0x9C31\n0xC5C0\t0x9C3E\n0xC5C1\t0x9C3B\n0xC5C2\t0x9DD3\n0xC5C3\t0x9DD7\n0xC5C4\t0x9F34\n0xC5C5\t0x9F6C\n0xC5C6\t0x9F6A\n0xC5C7\t0x9F94\n0xC5C8\t0x56CC\n0xC5C9\t0x5DD6\n0xC5CA\t0x6200\n0xC5CB\t0x6523\n0xC5CC\t0x652B\n0xC5CD\t0x652A\n0xC5CE\t0x66EC\n0xC5CF\t0x6B10\n0xC5D0\t0x74DA\n0xC5D1\t0x7ACA\n0xC5D2\t0x7C64\n0xC5D3\t0x7C63\n0xC5D4\t0x7C65\n0xC5D5\t0x7E93\n0xC5D6\t0x7E96\n0xC5D7\t0x7E94\n0xC5D8\t0x81E2\n0xC5D9\t0x8638\n0xC5DA\t0x863F\n0xC5DB\t0x8831\n0xC5DC\t0x8B8A\n0xC5DD\t0x9090\n0xC5DE\t0x908F\n0xC5DF\t0x9463\n0xC5E0\t0x9460\n0xC5E1\t0x9464\n0xC5E2\t0x9768\n0xC5E3\t0x986F\n0xC5E4\t0x995C\n0xC5E5\t0x9A5A\n0xC5E6\t0x9A5B\n0xC5E7\t0x9A57\n0xC5E8\t0x9AD3\n0xC5E9\t0x9AD4\n0xC5EA\t0x9AD1\n0xC5EB\t0x9C54\n0xC5EC\t0x9C57\n0xC5ED\t0x9C56\n0xC5EE\t0x9DE5\n0xC5EF\t0x9E9F\n0xC5F0\t0x9EF4\n0xC5F1\t0x56D1\n0xC5F2\t0x58E9\n0xC5F3\t0x652C\n0xC5F4\t0x705E\n0xC5F5\t0x7671\n0xC5F6\t0x7672\n0xC5F7\t0x77D7\n0xC5F8\t0x7F50\n0xC5F9\t0x7F88\n0xC5FA\t0x8836\n0xC5FB\t0x8839\n0xC5FC\t0x8862\n0xC5FD\t0x8B93\n0xC5FE\t0x8B92\n0xC640\t0x8B96\n0xC641\t0x8277\n0xC642\t0x8D1B\n0xC643\t0x91C0\n0xC644\t0x946A\n0xC645\t0x9742\n0xC646\t0x9748\n0xC647\t0x9744\n0xC648\t0x97C6\n0xC649\t0x9870\n0xC64A\t0x9A5F\n0xC64B\t0x9B22\n0xC64C\t0x9B58\n0xC64D\t0x9C5F\n0xC64E\t0x9DF9\n0xC64F\t0x9DFA\n0xC650\t0x9E7C\n0xC651\t0x9E7D\n0xC652\t0x9F07\n0xC653\t0x9F77\n0xC654\t0x9F72\n0xC655\t0x5EF3\n0xC656\t0x6B16\n0xC657\t0x7063\n0xC658\t0x7C6C\n0xC659\t0x7C6E\n0xC65A\t0x883B\n0xC65B\t0x89C0\n0xC65C\t0x8EA1\n0xC65D\t0x91C1\n0xC65E\t0x9472\n0xC65F\t0x9470\n0xC660\t0x9871\n0xC661\t0x995E\n0xC662\t0x9AD6\n0xC663\t0x9B23\n0xC664\t0x9ECC\n0xC665\t0x7064\n0xC666\t0x77DA\n0xC667\t0x8B9A\n0xC668\t0x9477\n0xC669\t0x97C9\n0xC66A\t0x9A62\n0xC66B\t0x9A65\n0xC66C\t0x7E9C\n0xC66D\t0x8B9C\n0xC66E\t0x8EAA\n0xC66F\t0x91C5\n0xC670\t0x947D\n0xC671\t0x947E\n0xC672\t0x947C\n0xC673\t0x9C77\n0xC674\t0x9C78\n0xC675\t0x9EF7\n0xC676\t0x8C54\n0xC677\t0x947F\n0xC678\t0x9E1A\n0xC679\t0x7228\n0xC67A\t0x9A6A\n0xC67B\t0x9B31\n0xC67C\t0x9E1B\n0xC67D\t0x9E1E\n0xC67E\t0x7C72\n0xC6A1\t0x2460\n0xC6A2\t0x2461\n0xC6A3\t0x2462\n0xC6A4\t0x2463\n0xC6A5\t0x2464\n0xC6A6\t0x2465\n0xC6A7\t0x2466\n0xC6A8\t0x2467\n0xC6A9\t0x2468\n0xC6AA\t0x2469\n0xC6AB\t0x2474\n0xC6AC\t0x2475\n0xC6AD\t0x2476\n0xC6AE\t0x2477\n0xC6AF\t0x2478\n0xC6B0\t0x2479\n0xC6B1\t0x247A\n0xC6B2\t0x247B\n0xC6B3\t0x247C\n0xC6B4\t0x247D\n0xC6B5\t0x2170\n0xC6B6\t0x2171\n0xC6B7\t0x2172\n0xC6B8\t0x2173\n0xC6B9\t0x2174\n0xC6BA\t0x2175\n0xC6BB\t0x2176\n0xC6BC\t0x2177\n0xC6BD\t0x2178\n0xC6BE\t0x2179\n0xC6BF\t0x4E36\n0xC6C0\t0x4E3F\n0xC6C1\t0x4E85\n0xC6C2\t0x4EA0\n0xC6C3\t0x5182\n0xC6C4\t0x5196\n0xC6C5\t0x51AB\n0xC6C6\t0x52F9\n0xC6C7\t0x5338\n0xC6C8\t0x5369\n0xC6C9\t0x53B6\n0xC6CA\t0x590A\n0xC6CB\t0x5B80\n0xC6CC\t0x5DDB\n0xC6CD\t0x2F33\n0xC6CE\t0x5E7F\n0xC6D0\t0x5F50\n0xC6D1\t0x5F61\n0xC6D2\t0x6534\n0xC6D4\t0x7592\n0xC6D6\t0x8FB5\n0xC6D8\t0x00A8\n0xC6D9\t0x02C6\n0xC6DA\t0x30FD\n0xC6DB\t0x30FE\n0xC6DC\t0x309D\n0xC6DD\t0x309E\n0xC6E0\t0x3005\n0xC6E1\t0x3006\n0xC6E2\t0x3007\n0xC6E3\t0x30FC\n0xC6E4\t0xFF3B\n0xC6E5\t0xFF3D\n0xC6E6\t0x273D\n0xC6E7\t0x3041\n0xC6E8\t0x3042\n0xC6E9\t0x3043\n0xC6EA\t0x3044\n0xC6EB\t0x3045\n0xC6EC\t0x3046\n0xC6ED\t0x3047\n0xC6EE\t0x3048\n0xC6EF\t0x3049\n0xC6F0\t0x304A\n0xC6F1\t0x304B\n0xC6F2\t0x304C\n0xC6F3\t0x304D\n0xC6F4\t0x304E\n0xC6F5\t0x304F\n0xC6F6\t0x3050\n0xC6F7\t0x3051\n0xC6F8\t0x3052\n0xC6F9\t0x3053\n0xC6FA\t0x3054\n0xC6FB\t0x3055\n0xC6FC\t0x3056\n0xC6FD\t0x3057\n0xC6FE\t0x3058\n0xC740\t0x3059\n0xC741\t0x305A\n0xC742\t0x305B\n0xC743\t0x305C\n0xC744\t0x305D\n0xC745\t0x305E\n0xC746\t0x305F\n0xC747\t0x3060\n0xC748\t0x3061\n0xC749\t0x3062\n0xC74A\t0x3063\n0xC74B\t0x3064\n0xC74C\t0x3065\n0xC74D\t0x3066\n0xC74E\t0x3067\n0xC74F\t0x3068\n0xC750\t0x3069\n0xC751\t0x306A\n0xC752\t0x306B\n0xC753\t0x306C\n0xC754\t0x306D\n0xC755\t0x306E\n0xC756\t0x306F\n0xC757\t0x3070\n0xC758\t0x3071\n0xC759\t0x3072\n0xC75A\t0x3073\n0xC75B\t0x3074\n0xC75C\t0x3075\n0xC75D\t0x3076\n0xC75E\t0x3077\n0xC75F\t0x3078\n0xC760\t0x3079\n0xC761\t0x307A\n0xC762\t0x307B\n0xC763\t0x307C\n0xC764\t0x307D\n0xC765\t0x307E\n0xC766\t0x307F\n0xC767\t0x3080\n0xC768\t0x3081\n0xC769\t0x3082\n0xC76A\t0x3083\n0xC76B\t0x3084\n0xC76C\t0x3085\n0xC76D\t0x3086\n0xC76E\t0x3087\n0xC76F\t0x3088\n0xC770\t0x3089\n0xC771\t0x308A\n0xC772\t0x308B\n0xC773\t0x308C\n0xC774\t0x308D\n0xC775\t0x308E\n0xC776\t0x308F\n0xC777\t0x3090\n0xC778\t0x3091\n0xC779\t0x3092\n0xC77A\t0x3093\n0xC77B\t0x30A1\n0xC77C\t0x30A2\n0xC77D\t0x30A3\n0xC77E\t0x30A4\n0xC7A1\t0x30A5\n0xC7A2\t0x30A6\n0xC7A3\t0x30A7\n0xC7A4\t0x30A8\n0xC7A5\t0x30A9\n0xC7A6\t0x30AA\n0xC7A7\t0x30AB\n0xC7A8\t0x30AC\n0xC7A9\t0x30AD\n0xC7AA\t0x30AE\n0xC7AB\t0x30AF\n0xC7AC\t0x30B0\n0xC7AD\t0x30B1\n0xC7AE\t0x30B2\n0xC7AF\t0x30B3\n0xC7B0\t0x30B4\n0xC7B1\t0x30B5\n0xC7B2\t0x30B6\n0xC7B3\t0x30B7\n0xC7B4\t0x30B8\n0xC7B5\t0x30B9\n0xC7B6\t0x30BA\n0xC7B7\t0x30BB\n0xC7B8\t0x30BC\n0xC7B9\t0x30BD\n0xC7BA\t0x30BE\n0xC7BB\t0x30BF\n0xC7BC\t0x30C0\n0xC7BD\t0x30C1\n0xC7BE\t0x30C2\n0xC7BF\t0x30C3\n0xC7C0\t0x30C4\n0xC7C1\t0x30C5\n0xC7C2\t0x30C6\n0xC7C3\t0x30C7\n0xC7C4\t0x30C8\n0xC7C5\t0x30C9\n0xC7C6\t0x30CA\n0xC7C7\t0x30CB\n0xC7C8\t0x30CC\n0xC7C9\t0x30CD\n0xC7CA\t0x30CE\n0xC7CB\t0x30CF\n0xC7CC\t0x30D0\n0xC7CD\t0x30D1\n0xC7CE\t0x30D2\n0xC7CF\t0x30D3\n0xC7D0\t0x30D4\n0xC7D1\t0x30D5\n0xC7D2\t0x30D6\n0xC7D3\t0x30D7\n0xC7D4\t0x30D8\n0xC7D5\t0x30D9\n0xC7D6\t0x30DA\n0xC7D7\t0x30DB\n0xC7D8\t0x30DC\n0xC7D9\t0x30DD\n0xC7DA\t0x30DE\n0xC7DB\t0x30DF\n0xC7DC\t0x30E0\n0xC7DD\t0x30E1\n0xC7DE\t0x30E2\n0xC7DF\t0x30E3\n0xC7E0\t0x30E4\n0xC7E1\t0x30E5\n0xC7E2\t0x30E6\n0xC7E3\t0x30E7\n0xC7E4\t0x30E8\n0xC7E5\t0x30E9\n0xC7E6\t0x30EA\n0xC7E7\t0x30EB\n0xC7E8\t0x30EC\n0xC7E9\t0x30ED\n0xC7EA\t0x30EE\n0xC7EB\t0x30EF\n0xC7EC\t0x30F0\n0xC7ED\t0x30F1\n0xC7EE\t0x30F2\n0xC7EF\t0x30F3\n0xC7F0\t0x30F4\n0xC7F1\t0x30F5\n0xC7F2\t0x30F6\n0xC7F3\t0x0410\n0xC7F4\t0x0411\n0xC7F5\t0x0412\n0xC7F6\t0x0413\n0xC7F7\t0x0414\n0xC7F8\t0x0415\n0xC7F9\t0x0401\n0xC7FA\t0x0416\n0xC7FB\t0x0417\n0xC7FC\t0x0418\n0xC7FD\t0x0419\n0xC7FE\t0x041A\n0xC840\t0x041B\n0xC841\t0x041C\n0xC842\t0x041D\n0xC843\t0x041E\n0xC844\t0x041F\n0xC845\t0x0420\n0xC846\t0x0421\n0xC847\t0x0422\n0xC848\t0x0423\n0xC849\t0x0424\n0xC84A\t0x0425\n0xC84B\t0x0426\n0xC84C\t0x0427\n0xC84D\t0x0428\n0xC84E\t0x0429\n0xC84F\t0x042A\n0xC850\t0x042B\n0xC851\t0x042C\n0xC852\t0x042D\n0xC853\t0x042E\n0xC854\t0x042F\n0xC855\t0x0430\n0xC856\t0x0431\n0xC857\t0x0432\n0xC858\t0x0433\n0xC859\t0x0434\n0xC85A\t0x0435\n0xC85B\t0x0451\n0xC85C\t0x0436\n0xC85D\t0x0437\n0xC85E\t0x0438\n0xC85F\t0x0439\n0xC860\t0x043A\n0xC861\t0x043B\n0xC862\t0x043C\n0xC863\t0x043D\n0xC864\t0x043E\n0xC865\t0x043F\n0xC866\t0x0440\n0xC867\t0x0441\n0xC868\t0x0442\n0xC869\t0x0443\n0xC86A\t0x0444\n0xC86B\t0x0445\n0xC86C\t0x0446\n0xC86D\t0x0447\n0xC86E\t0x0448\n0xC86F\t0x0449\n0xC870\t0x044A\n0xC871\t0x044B\n0xC872\t0x044C\n0xC873\t0x044D\n0xC874\t0x044E\n0xC875\t0x044F\n0xC876\t0x21E7\n0xC877\t0x21B8\n0xC878\t0x21B9\n0xC879\t0x31CF\n0xC87A\t0x200CC\n0xC87B\t0x4E5A\n0xC87C\t0x2008A\n0xC87D\t0x5202\n0xC87E\t0x4491\n0xC8A1\t0x9FB0\n0xC8A2\t0x5188\n0xC8A3\t0x9FB1\n0xC8A4\t0x27607\n0xC8CD\t0xFFE2\n0xC8CE\t0xFFE4\n0xC8CF\t0xFF07\n0xC8D0\t0xFF02\n0xC8D1\t0x3231\n0xC8D2\t0x2116\n0xC8D3\t0x2121\n0xC8D4\t0x309B\n0xC8D5\t0x309C\n0xC8D6\t0x2E80\n0xC8D7\t0x2E84\n0xC8D8\t0x2E86\n0xC8D9\t0x2E87\n0xC8DA\t0x2E88\n0xC8DB\t0x2E8A\n0xC8DC\t0x2E8C\n0xC8DD\t0x2E8D\n0xC8DE\t0x2E95\n0xC8DF\t0x2E9C\n0xC8E0\t0x2E9D\n0xC8E1\t0x2EA5\n0xC8E2\t0x2EA7\n0xC8E3\t0x2EAA\n0xC8E4\t0x2EAC\n0xC8E5\t0x2EAE\n0xC8E6\t0x2EB6\n0xC8E7\t0x2EBC\n0xC8E8\t0x2EBE\n0xC8E9\t0x2EC6\n0xC8EA\t0x2ECA\n0xC8EB\t0x2ECC\n0xC8EC\t0x2ECD\n0xC8ED\t0x2ECF\n0xC8EE\t0x2ED6\n0xC8EF\t0x2ED7\n0xC8F0\t0x2EDE\n0xC8F1\t0x2EE3\n0xC8F5\t0x0283\n0xC8F6\t0x0250\n0xC8F7\t0x025B\n0xC8F8\t0x0254\n0xC8F9\t0x0275\n0xC8FA\t0x0153\n0xC8FB\t0x00F8\n0xC8FC\t0x014B\n0xC8FD\t0x028A\n0xC8FE\t0x026A\n0xC940\t0x4E42\n0xC941\t0x4E5C\n0xC942\t0x51F5\n0xC943\t0x531A\n0xC944\t0x5382\n0xC945\t0x4E07\n0xC946\t0x4E0C\n0xC947\t0x4E47\n0xC948\t0x4E8D\n0xC949\t0x56D7\n0xC94A\t0xFA0C\n0xC94B\t0x5C6E\n0xC94C\t0x5F73\n0xC94D\t0x4E0F\n0xC94E\t0x5187\n0xC94F\t0x4E0E\n0xC950\t0x4E2E\n0xC951\t0x4E93\n0xC952\t0x4EC2\n0xC953\t0x4EC9\n0xC954\t0x4EC8\n0xC955\t0x5198\n0xC956\t0x52FC\n0xC957\t0x536C\n0xC958\t0x53B9\n0xC959\t0x5720\n0xC95A\t0x5903\n0xC95B\t0x592C\n0xC95C\t0x5C10\n0xC95D\t0x5DFF\n0xC95E\t0x65E1\n0xC95F\t0x6BB3\n0xC960\t0x6BCC\n0xC961\t0x6C14\n0xC962\t0x723F\n0xC963\t0x4E31\n0xC964\t0x4E3C\n0xC965\t0x4EE8\n0xC966\t0x4EDC\n0xC967\t0x4EE9\n0xC968\t0x4EE1\n0xC969\t0x4EDD\n0xC96A\t0x4EDA\n0xC96B\t0x520C\n0xC96C\t0x531C\n0xC96D\t0x534C\n0xC96E\t0x5722\n0xC96F\t0x5723\n0xC970\t0x5917\n0xC971\t0x592F\n0xC972\t0x5B81\n0xC973\t0x5B84\n0xC974\t0x5C12\n0xC975\t0x5C3B\n0xC976\t0x5C74\n0xC977\t0x5C73\n0xC978\t0x5E04\n0xC979\t0x5E80\n0xC97A\t0x5E82\n0xC97B\t0x5FC9\n0xC97C\t0x6209\n0xC97D\t0x6250\n0xC97E\t0x6C15\n0xC9A1\t0x6C36\n0xC9A2\t0x6C43\n0xC9A3\t0x6C3F\n0xC9A4\t0x6C3B\n0xC9A5\t0x72AE\n0xC9A6\t0x72B0\n0xC9A7\t0x738A\n0xC9A8\t0x79B8\n0xC9A9\t0x808A\n0xC9AA\t0x961E\n0xC9AB\t0x4F0E\n0xC9AC\t0x4F18\n0xC9AD\t0x4F2C\n0xC9AE\t0x4EF5\n0xC9AF\t0x4F14\n0xC9B0\t0x4EF1\n0xC9B1\t0x4F00\n0xC9B2\t0x4EF7\n0xC9B3\t0x4F08\n0xC9B4\t0x4F1D\n0xC9B5\t0x4F02\n0xC9B6\t0x4F05\n0xC9B7\t0x4F22\n0xC9B8\t0x4F13\n0xC9B9\t0x4F04\n0xC9BA\t0x4EF4\n0xC9BB\t0x4F12\n0xC9BC\t0x51B1\n0xC9BD\t0x5213\n0xC9BE\t0x5209\n0xC9BF\t0x5210\n0xC9C0\t0x52A6\n0xC9C1\t0x5322\n0xC9C2\t0x531F\n0xC9C3\t0x534D\n0xC9C4\t0x538A\n0xC9C5\t0x5407\n0xC9C6\t0x56E1\n0xC9C7\t0x56DF\n0xC9C8\t0x572E\n0xC9C9\t0x572A\n0xC9CA\t0x5734\n0xC9CB\t0x593C\n0xC9CC\t0x5980\n0xC9CD\t0x597C\n0xC9CE\t0x5985\n0xC9CF\t0x597B\n0xC9D0\t0x597E\n0xC9D1\t0x5977\n0xC9D2\t0x597F\n0xC9D3\t0x5B56\n0xC9D4\t0x5C15\n0xC9D5\t0x5C25\n0xC9D6\t0x5C7C\n0xC9D7\t0x5C7A\n0xC9D8\t0x5C7B\n0xC9D9\t0x5C7E\n0xC9DA\t0x5DDF\n0xC9DB\t0x5E75\n0xC9DC\t0x5E84\n0xC9DD\t0x5F02\n0xC9DE\t0x5F1A\n0xC9DF\t0x5F74\n0xC9E0\t0x5FD5\n0xC9E1\t0x5FD4\n0xC9E2\t0x5FCF\n0xC9E3\t0x625C\n0xC9E4\t0x625E\n0xC9E5\t0x6264\n0xC9E6\t0x6261\n0xC9E7\t0x6266\n0xC9E8\t0x6262\n0xC9E9\t0x6259\n0xC9EA\t0x6260\n0xC9EB\t0x625A\n0xC9EC\t0x6265\n0xC9ED\t0x65EF\n0xC9EE\t0x65EE\n0xC9EF\t0x673E\n0xC9F0\t0x6739\n0xC9F1\t0x6738\n0xC9F2\t0x673B\n0xC9F3\t0x673A\n0xC9F4\t0x673F\n0xC9F5\t0x673C\n0xC9F6\t0x6733\n0xC9F7\t0x6C18\n0xC9F8\t0x6C46\n0xC9F9\t0x6C52\n0xC9FA\t0x6C5C\n0xC9FB\t0x6C4F\n0xC9FC\t0x6C4A\n0xC9FD\t0x6C54\n0xC9FE\t0x6C4B\n0xCA40\t0x6C4C\n0xCA41\t0x7071\n0xCA42\t0x725E\n0xCA43\t0x72B4\n0xCA44\t0x72B5\n0xCA45\t0x738E\n0xCA46\t0x752A\n0xCA47\t0x767F\n0xCA48\t0x7A75\n0xCA49\t0x7F51\n0xCA4A\t0x8278\n0xCA4B\t0x827C\n0xCA4C\t0x8280\n0xCA4D\t0x827D\n0xCA4E\t0x827F\n0xCA4F\t0x864D\n0xCA50\t0x897E\n0xCA51\t0x9099\n0xCA52\t0x9097\n0xCA53\t0x9098\n0xCA54\t0x909B\n0xCA55\t0x9094\n0xCA56\t0x9622\n0xCA57\t0x9624\n0xCA58\t0x9620\n0xCA59\t0x9623\n0xCA5A\t0x4F56\n0xCA5B\t0x4F3B\n0xCA5C\t0x4F62\n0xCA5D\t0x4F49\n0xCA5E\t0x4F53\n0xCA5F\t0x4F64\n0xCA60\t0x4F3E\n0xCA61\t0x4F67\n0xCA62\t0x4F52\n0xCA63\t0x4F5F\n0xCA64\t0x4F41\n0xCA65\t0x4F58\n0xCA66\t0x4F2D\n0xCA67\t0x4F33\n0xCA68\t0x4F3F\n0xCA69\t0x4F61\n0xCA6A\t0x518F\n0xCA6B\t0x51B9\n0xCA6C\t0x521C\n0xCA6D\t0x521E\n0xCA6E\t0x5221\n0xCA6F\t0x52AD\n0xCA70\t0x52AE\n0xCA71\t0x5309\n0xCA72\t0x5363\n0xCA73\t0x5372\n0xCA74\t0x538E\n0xCA75\t0x538F\n0xCA76\t0x5430\n0xCA77\t0x5437\n0xCA78\t0x542A\n0xCA79\t0x5454\n0xCA7A\t0x5445\n0xCA7B\t0x5419\n0xCA7C\t0x541C\n0xCA7D\t0x5425\n0xCA7E\t0x5418\n0xCAA1\t0x543D\n0xCAA2\t0x544F\n0xCAA3\t0x5441\n0xCAA4\t0x5428\n0xCAA5\t0x5424\n0xCAA6\t0x5447\n0xCAA7\t0x56EE\n0xCAA8\t0x56E7\n0xCAA9\t0x56E5\n0xCAAA\t0x5741\n0xCAAB\t0x5745\n0xCAAC\t0x574C\n0xCAAD\t0x5749\n0xCAAE\t0x574B\n0xCAAF\t0x5752\n0xCAB0\t0x5906\n0xCAB1\t0x5940\n0xCAB2\t0x59A6\n0xCAB3\t0x5998\n0xCAB4\t0x59A0\n0xCAB5\t0x5997\n0xCAB6\t0x598E\n0xCAB7\t0x59A2\n0xCAB8\t0x5990\n0xCAB9\t0x598F\n0xCABA\t0x59A7\n0xCABB\t0x59A1\n0xCABC\t0x5B8E\n0xCABD\t0x5B92\n0xCABE\t0x5C28\n0xCABF\t0x5C2A\n0xCAC0\t0x5C8D\n0xCAC1\t0x5C8F\n0xCAC2\t0x5C88\n0xCAC3\t0x5C8B\n0xCAC4\t0x5C89\n0xCAC5\t0x5C92\n0xCAC6\t0x5C8A\n0xCAC7\t0x5C86\n0xCAC8\t0x5C93\n0xCAC9\t0x5C95\n0xCACA\t0x5DE0\n0xCACB\t0x5E0A\n0xCACC\t0x5E0E\n0xCACD\t0x5E8B\n0xCACE\t0x5E89\n0xCACF\t0x5E8C\n0xCAD0\t0x5E88\n0xCAD1\t0x5E8D\n0xCAD2\t0x5F05\n0xCAD3\t0x5F1D\n0xCAD4\t0x5F78\n0xCAD5\t0x5F76\n0xCAD6\t0x5FD2\n0xCAD7\t0x5FD1\n0xCAD8\t0x5FD0\n0xCAD9\t0x5FED\n0xCADA\t0x5FE8\n0xCADB\t0x5FEE\n0xCADC\t0x5FF3\n0xCADD\t0x5FE1\n0xCADE\t0x5FE4\n0xCADF\t0x5FE3\n0xCAE0\t0x5FFA\n0xCAE1\t0x5FEF\n0xCAE2\t0x5FF7\n0xCAE3\t0x5FFB\n0xCAE4\t0x6000\n0xCAE5\t0x5FF4\n0xCAE6\t0x623A\n0xCAE7\t0x6283\n0xCAE8\t0x628C\n0xCAE9\t0x628E\n0xCAEA\t0x628F\n0xCAEB\t0x6294\n0xCAEC\t0x6287\n0xCAED\t0x6271\n0xCAEE\t0x627B\n0xCAEF\t0x627A\n0xCAF0\t0x6270\n0xCAF1\t0x6281\n0xCAF2\t0x6288\n0xCAF3\t0x6277\n0xCAF4\t0x627D\n0xCAF5\t0x6272\n0xCAF6\t0x6274\n0xCAF7\t0x6537\n0xCAF8\t0x65F0\n0xCAF9\t0x65F4\n0xCAFA\t0x65F3\n0xCAFB\t0x65F2\n0xCAFC\t0x65F5\n0xCAFD\t0x6745\n0xCAFE\t0x6747\n0xCB40\t0x6759\n0xCB41\t0x6755\n0xCB42\t0x674C\n0xCB43\t0x6748\n0xCB44\t0x675D\n0xCB45\t0x674D\n0xCB46\t0x675A\n0xCB47\t0x674B\n0xCB48\t0x6BD0\n0xCB49\t0x6C19\n0xCB4A\t0x6C1A\n0xCB4B\t0x6C78\n0xCB4C\t0x6C67\n0xCB4D\t0x6C6B\n0xCB4E\t0x6C84\n0xCB4F\t0x6C8B\n0xCB50\t0x6C8F\n0xCB51\t0x6C71\n0xCB52\t0x6C6F\n0xCB53\t0x6C69\n0xCB54\t0x6C9A\n0xCB55\t0x6C6D\n0xCB56\t0x6C87\n0xCB57\t0x6C95\n0xCB58\t0x6C9C\n0xCB59\t0x6C66\n0xCB5A\t0x6C73\n0xCB5B\t0x6C65\n0xCB5C\t0x6C7B\n0xCB5D\t0x6C8E\n0xCB5E\t0x7074\n0xCB5F\t0x707A\n0xCB60\t0x7263\n0xCB61\t0x72BF\n0xCB62\t0x72BD\n0xCB63\t0x72C3\n0xCB64\t0x72C6\n0xCB65\t0x72C1\n0xCB66\t0x72BA\n0xCB67\t0x72C5\n0xCB68\t0x7395\n0xCB69\t0x7397\n0xCB6A\t0x7393\n0xCB6B\t0x7394\n0xCB6C\t0x7392\n0xCB6D\t0x753A\n0xCB6E\t0x7539\n0xCB6F\t0x7594\n0xCB70\t0x7595\n0xCB71\t0x7681\n0xCB72\t0x793D\n0xCB73\t0x8034\n0xCB74\t0x8095\n0xCB75\t0x8099\n0xCB76\t0x8090\n0xCB77\t0x8092\n0xCB78\t0x809C\n0xCB79\t0x8290\n0xCB7A\t0x828F\n0xCB7B\t0x8285\n0xCB7C\t0x828E\n0xCB7D\t0x8291\n0xCB7E\t0x8293\n0xCBA1\t0x828A\n0xCBA2\t0x8283\n0xCBA3\t0x8284\n0xCBA4\t0x8C78\n0xCBA5\t0x8FC9\n0xCBA6\t0x8FBF\n0xCBA7\t0x909F\n0xCBA8\t0x90A1\n0xCBA9\t0x90A5\n0xCBAA\t0x909E\n0xCBAB\t0x90A7\n0xCBAC\t0x90A0\n0xCBAD\t0x9630\n0xCBAE\t0x9628\n0xCBAF\t0x962F\n0xCBB0\t0x962D\n0xCBB1\t0x4E33\n0xCBB2\t0x4F98\n0xCBB3\t0x4F7C\n0xCBB4\t0x4F85\n0xCBB5\t0x4F7D\n0xCBB6\t0x4F80\n0xCBB7\t0x4F87\n0xCBB8\t0x4F76\n0xCBB9\t0x4F74\n0xCBBA\t0x4F89\n0xCBBB\t0x4F84\n0xCBBC\t0x4F77\n0xCBBD\t0x4F4C\n0xCBBE\t0x4F97\n0xCBBF\t0x4F6A\n0xCBC0\t0x4F9A\n0xCBC1\t0x4F79\n0xCBC2\t0x4F81\n0xCBC3\t0x4F78\n0xCBC4\t0x4F90\n0xCBC5\t0x4F9C\n0xCBC6\t0x4F94\n0xCBC7\t0x4F9E\n0xCBC8\t0x4F92\n0xCBC9\t0x4F82\n0xCBCA\t0x4F95\n0xCBCB\t0x4F6B\n0xCBCC\t0x4F6E\n0xCBCD\t0x519E\n0xCBCE\t0x51BC\n0xCBCF\t0x51BE\n0xCBD0\t0x5235\n0xCBD1\t0x5232\n0xCBD2\t0x5233\n0xCBD3\t0x5246\n0xCBD4\t0x5231\n0xCBD5\t0x52BC\n0xCBD6\t0x530A\n0xCBD7\t0x530B\n0xCBD8\t0x533C\n0xCBD9\t0x5392\n0xCBDA\t0x5394\n0xCBDB\t0x5487\n0xCBDC\t0x547F\n0xCBDD\t0x5481\n0xCBDE\t0x5491\n0xCBDF\t0x5482\n0xCBE0\t0x5488\n0xCBE1\t0x546B\n0xCBE2\t0x547A\n0xCBE3\t0x547E\n0xCBE4\t0x5465\n0xCBE5\t0x546C\n0xCBE6\t0x5474\n0xCBE7\t0x5466\n0xCBE8\t0x548D\n0xCBE9\t0x546F\n0xCBEA\t0x5461\n0xCBEB\t0x5460\n0xCBEC\t0x5498\n0xCBED\t0x5463\n0xCBEE\t0x5467\n0xCBEF\t0x5464\n0xCBF0\t0x56F7\n0xCBF1\t0x56F9\n0xCBF2\t0x576F\n0xCBF3\t0x5772\n0xCBF4\t0x576D\n0xCBF5\t0x576B\n0xCBF6\t0x5771\n0xCBF7\t0x5770\n0xCBF8\t0x5776\n0xCBF9\t0x5780\n0xCBFA\t0x5775\n0xCBFB\t0x577B\n0xCBFC\t0x5773\n0xCBFD\t0x5774\n0xCBFE\t0x5762\n0xCC40\t0x5768\n0xCC41\t0x577D\n0xCC42\t0x590C\n0xCC43\t0x5945\n0xCC44\t0x59B5\n0xCC45\t0x59BA\n0xCC46\t0x59CF\n0xCC47\t0x59CE\n0xCC48\t0x59B2\n0xCC49\t0x59CC\n0xCC4A\t0x59C1\n0xCC4B\t0x59B6\n0xCC4C\t0x59BC\n0xCC4D\t0x59C3\n0xCC4E\t0x59D6\n0xCC4F\t0x59B1\n0xCC50\t0x59BD\n0xCC51\t0x59C0\n0xCC52\t0x59C8\n0xCC53\t0x59B4\n0xCC54\t0x59C7\n0xCC55\t0x5B62\n0xCC56\t0x5B65\n0xCC57\t0x5B93\n0xCC58\t0x5B95\n0xCC59\t0x5C44\n0xCC5A\t0x5C47\n0xCC5B\t0x5CAE\n0xCC5C\t0x5CA4\n0xCC5D\t0x5CA0\n0xCC5E\t0x5CB5\n0xCC5F\t0x5CAF\n0xCC60\t0x5CA8\n0xCC61\t0x5CAC\n0xCC62\t0x5C9F\n0xCC63\t0x5CA3\n0xCC64\t0x5CAD\n0xCC65\t0x5CA2\n0xCC66\t0x5CAA\n0xCC67\t0x5CA7\n0xCC68\t0x5C9D\n0xCC69\t0x5CA5\n0xCC6A\t0x5CB6\n0xCC6B\t0x5CB0\n0xCC6C\t0x5CA6\n0xCC6D\t0x5E17\n0xCC6E\t0x5E14\n0xCC6F\t0x5E19\n0xCC70\t0x5F28\n0xCC71\t0x5F22\n0xCC72\t0x5F23\n0xCC73\t0x5F24\n0xCC74\t0x5F54\n0xCC75\t0x5F82\n0xCC76\t0x5F7E\n0xCC77\t0x5F7D\n0xCC78\t0x5FDE\n0xCC79\t0x5FE5\n0xCC7A\t0x602D\n0xCC7B\t0x6026\n0xCC7C\t0x6019\n0xCC7D\t0x6032\n0xCC7E\t0x600B\n0xCCA1\t0x6034\n0xCCA2\t0x600A\n0xCCA3\t0x6017\n0xCCA4\t0x6033\n0xCCA5\t0x601A\n0xCCA6\t0x601E\n0xCCA7\t0x602C\n0xCCA8\t0x6022\n0xCCA9\t0x600D\n0xCCAA\t0x6010\n0xCCAB\t0x602E\n0xCCAC\t0x6013\n0xCCAD\t0x6011\n0xCCAE\t0x600C\n0xCCAF\t0x6009\n0xCCB0\t0x601C\n0xCCB1\t0x6214\n0xCCB2\t0x623D\n0xCCB3\t0x62AD\n0xCCB4\t0x62B4\n0xCCB5\t0x62D1\n0xCCB6\t0x62BE\n0xCCB7\t0x62AA\n0xCCB8\t0x62B6\n0xCCB9\t0x62CA\n0xCCBA\t0x62AE\n0xCCBB\t0x62B3\n0xCCBC\t0x62AF\n0xCCBD\t0x62BB\n0xCCBE\t0x62A9\n0xCCBF\t0x62B0\n0xCCC0\t0x62B8\n0xCCC1\t0x653D\n0xCCC2\t0x65A8\n0xCCC3\t0x65BB\n0xCCC4\t0x6609\n0xCCC5\t0x65FC\n0xCCC6\t0x6604\n0xCCC7\t0x6612\n0xCCC8\t0x6608\n0xCCC9\t0x65FB\n0xCCCA\t0x6603\n0xCCCB\t0x660B\n0xCCCC\t0x660D\n0xCCCD\t0x6605\n0xCCCE\t0x65FD\n0xCCCF\t0x6611\n0xCCD0\t0x6610\n0xCCD1\t0x66F6\n0xCCD2\t0x670A\n0xCCD3\t0x6785\n0xCCD4\t0x676C\n0xCCD5\t0x678E\n0xCCD6\t0x6792\n0xCCD7\t0x6776\n0xCCD8\t0x677B\n0xCCD9\t0x6798\n0xCCDA\t0x6786\n0xCCDB\t0x6784\n0xCCDC\t0x6774\n0xCCDD\t0x678D\n0xCCDE\t0x678C\n0xCCDF\t0x677A\n0xCCE0\t0x679F\n0xCCE1\t0x6791\n0xCCE2\t0x6799\n0xCCE3\t0x6783\n0xCCE4\t0x677D\n0xCCE5\t0x6781\n0xCCE6\t0x6778\n0xCCE7\t0x6779\n0xCCE8\t0x6794\n0xCCE9\t0x6B25\n0xCCEA\t0x6B80\n0xCCEB\t0x6B7E\n0xCCEC\t0x6BDE\n0xCCED\t0x6C1D\n0xCCEE\t0x6C93\n0xCCEF\t0x6CEC\n0xCCF0\t0x6CEB\n0xCCF1\t0x6CEE\n0xCCF2\t0x6CD9\n0xCCF3\t0x6CB6\n0xCCF4\t0x6CD4\n0xCCF5\t0x6CAD\n0xCCF6\t0x6CE7\n0xCCF7\t0x6CB7\n0xCCF8\t0x6CD0\n0xCCF9\t0x6CC2\n0xCCFA\t0x6CBA\n0xCCFB\t0x6CC3\n0xCCFC\t0x6CC6\n0xCCFD\t0x6CED\n0xCCFE\t0x6CF2\n0xCD40\t0x6CD2\n0xCD41\t0x6CDD\n0xCD42\t0x6CB4\n0xCD43\t0x6C8A\n0xCD44\t0x6C9D\n0xCD45\t0x6C80\n0xCD46\t0x6CDE\n0xCD47\t0x6CC0\n0xCD48\t0x6D30\n0xCD49\t0x6CCD\n0xCD4A\t0x6CC7\n0xCD4B\t0x6CB0\n0xCD4C\t0x6CF9\n0xCD4D\t0x6CCF\n0xCD4E\t0x6CE9\n0xCD4F\t0x6CD1\n0xCD50\t0x7094\n0xCD51\t0x7098\n0xCD52\t0x7085\n0xCD53\t0x7093\n0xCD54\t0x7086\n0xCD55\t0x7084\n0xCD56\t0x7091\n0xCD57\t0x7096\n0xCD58\t0x7082\n0xCD59\t0x709A\n0xCD5A\t0x7083\n0xCD5B\t0x726A\n0xCD5C\t0x72D6\n0xCD5D\t0x72CB\n0xCD5E\t0x72D8\n0xCD5F\t0x72C9\n0xCD60\t0x72DC\n0xCD61\t0x72D2\n0xCD62\t0x72D4\n0xCD63\t0x72DA\n0xCD64\t0x72CC\n0xCD65\t0x72D1\n0xCD66\t0x73A4\n0xCD67\t0x73A1\n0xCD68\t0x73AD\n0xCD69\t0x73A6\n0xCD6A\t0x73A2\n0xCD6B\t0x73A0\n0xCD6C\t0x73AC\n0xCD6D\t0x739D\n0xCD6E\t0x74DD\n0xCD6F\t0x74E8\n0xCD70\t0x753F\n0xCD71\t0x7540\n0xCD72\t0x753E\n0xCD73\t0x758C\n0xCD74\t0x7598\n0xCD75\t0x76AF\n0xCD76\t0x76F3\n0xCD77\t0x76F1\n0xCD78\t0x76F0\n0xCD79\t0x76F5\n0xCD7A\t0x77F8\n0xCD7B\t0x77FC\n0xCD7C\t0x77F9\n0xCD7D\t0x77FB\n0xCD7E\t0x77FA\n0xCDA1\t0x77F7\n0xCDA2\t0x7942\n0xCDA3\t0x793F\n0xCDA4\t0x79C5\n0xCDA5\t0x7A78\n0xCDA6\t0x7A7B\n0xCDA7\t0x7AFB\n0xCDA8\t0x7C75\n0xCDA9\t0x7CFD\n0xCDAA\t0x8035\n0xCDAB\t0x808F\n0xCDAC\t0x80AE\n0xCDAD\t0x80A3\n0xCDAE\t0x80B8\n0xCDAF\t0x80B5\n0xCDB0\t0x80AD\n0xCDB1\t0x8220\n0xCDB2\t0x82A0\n0xCDB3\t0x82C0\n0xCDB4\t0x82AB\n0xCDB5\t0x829A\n0xCDB6\t0x8298\n0xCDB7\t0x829B\n0xCDB8\t0x82B5\n0xCDB9\t0x82A7\n0xCDBA\t0x82AE\n0xCDBB\t0x82BC\n0xCDBC\t0x829E\n0xCDBD\t0x82BA\n0xCDBE\t0x82B4\n0xCDBF\t0x82A8\n0xCDC0\t0x82A1\n0xCDC1\t0x82A9\n0xCDC2\t0x82C2\n0xCDC3\t0x82A4\n0xCDC4\t0x82C3\n0xCDC5\t0x82B6\n0xCDC6\t0x82A2\n0xCDC7\t0x8670\n0xCDC8\t0x866F\n0xCDC9\t0x866D\n0xCDCA\t0x866E\n0xCDCB\t0x8C56\n0xCDCC\t0x8FD2\n0xCDCD\t0x8FCB\n0xCDCE\t0x8FD3\n0xCDCF\t0x8FCD\n0xCDD0\t0x8FD6\n0xCDD1\t0x8FD5\n0xCDD2\t0x8FD7\n0xCDD3\t0x90B2\n0xCDD4\t0x90B4\n0xCDD5\t0x90AF\n0xCDD6\t0x90B3\n0xCDD7\t0x90B0\n0xCDD8\t0x9639\n0xCDD9\t0x963D\n0xCDDA\t0x963C\n0xCDDB\t0x963A\n0xCDDC\t0x9643\n0xCDDD\t0x4FCD\n0xCDDE\t0x4FC5\n0xCDDF\t0x4FD3\n0xCDE0\t0x4FB2\n0xCDE1\t0x4FC9\n0xCDE2\t0x4FCB\n0xCDE3\t0x4FC1\n0xCDE4\t0x4FD4\n0xCDE5\t0x4FDC\n0xCDE6\t0x4FD9\n0xCDE7\t0x4FBB\n0xCDE8\t0x4FB3\n0xCDE9\t0x4FDB\n0xCDEA\t0x4FC7\n0xCDEB\t0x4FD6\n0xCDEC\t0x4FBA\n0xCDED\t0x4FC0\n0xCDEE\t0x4FB9\n0xCDEF\t0x4FEC\n0xCDF0\t0x5244\n0xCDF1\t0x5249\n0xCDF2\t0x52C0\n0xCDF3\t0x52C2\n0xCDF4\t0x533D\n0xCDF5\t0x537C\n0xCDF6\t0x5397\n0xCDF7\t0x5396\n0xCDF8\t0x5399\n0xCDF9\t0x5398\n0xCDFA\t0x54BA\n0xCDFB\t0x54A1\n0xCDFC\t0x54AD\n0xCDFD\t0x54A5\n0xCDFE\t0x54CF\n0xCE40\t0x54C3\n0xCE41\t0x830D\n0xCE42\t0x54B7\n0xCE43\t0x54AE\n0xCE44\t0x54D6\n0xCE45\t0x54B6\n0xCE46\t0x54C5\n0xCE47\t0x54C6\n0xCE48\t0x54A0\n0xCE49\t0x5470\n0xCE4A\t0x54BC\n0xCE4B\t0x54A2\n0xCE4C\t0x54BE\n0xCE4D\t0x5472\n0xCE4E\t0x54DE\n0xCE4F\t0x54B0\n0xCE50\t0x57B5\n0xCE51\t0x579E\n0xCE52\t0x579F\n0xCE53\t0x57A4\n0xCE54\t0x578C\n0xCE55\t0x5797\n0xCE56\t0x579D\n0xCE57\t0x579B\n0xCE58\t0x5794\n0xCE59\t0x5798\n0xCE5A\t0x578F\n0xCE5B\t0x5799\n0xCE5C\t0x57A5\n0xCE5D\t0x579A\n0xCE5E\t0x5795\n0xCE5F\t0x58F4\n0xCE60\t0x590D\n0xCE61\t0x5953\n0xCE62\t0x59E1\n0xCE63\t0x59DE\n0xCE64\t0x59EE\n0xCE65\t0x5A00\n0xCE66\t0x59F1\n0xCE67\t0x59DD\n0xCE68\t0x59FA\n0xCE69\t0x59FD\n0xCE6A\t0x59FC\n0xCE6B\t0x59F6\n0xCE6C\t0x59E4\n0xCE6D\t0x59F2\n0xCE6E\t0x59F7\n0xCE6F\t0x59DB\n0xCE70\t0x59E9\n0xCE71\t0x59F3\n0xCE72\t0x59F5\n0xCE73\t0x59E0\n0xCE74\t0x59FE\n0xCE75\t0x59F4\n0xCE76\t0x59ED\n0xCE77\t0x5BA8\n0xCE78\t0x5C4C\n0xCE79\t0x5CD0\n0xCE7A\t0x5CD8\n0xCE7B\t0x5CCC\n0xCE7C\t0x5CD7\n0xCE7D\t0x5CCB\n0xCE7E\t0x5CDB\n0xCEA1\t0x5CDE\n0xCEA2\t0x5CDA\n0xCEA3\t0x5CC9\n0xCEA4\t0x5CC7\n0xCEA5\t0x5CCA\n0xCEA6\t0x5CD6\n0xCEA7\t0x5CD3\n0xCEA8\t0x5CD4\n0xCEA9\t0x5CCF\n0xCEAA\t0x5CC8\n0xCEAB\t0x5CC6\n0xCEAC\t0x5CCE\n0xCEAD\t0x5CDF\n0xCEAE\t0x5CF8\n0xCEAF\t0x5DF9\n0xCEB0\t0x5E21\n0xCEB1\t0x5E22\n0xCEB2\t0x5E23\n0xCEB3\t0x5E20\n0xCEB4\t0x5E24\n0xCEB5\t0x5EB0\n0xCEB6\t0x5EA4\n0xCEB7\t0x5EA2\n0xCEB8\t0x5E9B\n0xCEB9\t0x5EA3\n0xCEBA\t0x5EA5\n0xCEBB\t0x5F07\n0xCEBC\t0x5F2E\n0xCEBD\t0x5F56\n0xCEBE\t0x5F86\n0xCEBF\t0x6037\n0xCEC0\t0x6039\n0xCEC1\t0x6054\n0xCEC2\t0x6072\n0xCEC3\t0x605E\n0xCEC4\t0x6045\n0xCEC5\t0x6053\n0xCEC6\t0x6047\n0xCEC7\t0x6049\n0xCEC8\t0x605B\n0xCEC9\t0x604C\n0xCECA\t0x6040\n0xCECB\t0x6042\n0xCECC\t0x605F\n0xCECD\t0x6024\n0xCECE\t0x6044\n0xCECF\t0x6058\n0xCED0\t0x6066\n0xCED1\t0x606E\n0xCED2\t0x6242\n0xCED3\t0x6243\n0xCED4\t0x62CF\n0xCED5\t0x630D\n0xCED6\t0x630B\n0xCED7\t0x62F5\n0xCED8\t0x630E\n0xCED9\t0x6303\n0xCEDA\t0x62EB\n0xCEDB\t0x62F9\n0xCEDC\t0x630F\n0xCEDD\t0x630C\n0xCEDE\t0x62F8\n0xCEDF\t0x62F6\n0xCEE0\t0x6300\n0xCEE1\t0x6313\n0xCEE2\t0x6314\n0xCEE3\t0x62FA\n0xCEE4\t0x6315\n0xCEE5\t0x62FB\n0xCEE6\t0x62F0\n0xCEE7\t0x6541\n0xCEE8\t0x6543\n0xCEE9\t0x65AA\n0xCEEA\t0x65BF\n0xCEEB\t0x6636\n0xCEEC\t0x6621\n0xCEED\t0x6632\n0xCEEE\t0x6635\n0xCEEF\t0x661C\n0xCEF0\t0x6626\n0xCEF1\t0x6622\n0xCEF2\t0x6633\n0xCEF3\t0x662B\n0xCEF4\t0x663A\n0xCEF5\t0x661D\n0xCEF6\t0x6634\n0xCEF7\t0x6639\n0xCEF8\t0x662E\n0xCEF9\t0x670F\n0xCEFA\t0x6710\n0xCEFB\t0x67C1\n0xCEFC\t0x67F2\n0xCEFD\t0x67C8\n0xCEFE\t0x67BA\n0xCF40\t0x67DC\n0xCF41\t0x67BB\n0xCF42\t0x67F8\n0xCF43\t0x67D8\n0xCF44\t0x67C0\n0xCF45\t0x67B7\n0xCF46\t0x67C5\n0xCF47\t0x67EB\n0xCF48\t0x67E4\n0xCF49\t0x67DF\n0xCF4A\t0x67B5\n0xCF4B\t0x67CD\n0xCF4C\t0x67B3\n0xCF4D\t0x67F7\n0xCF4E\t0x67F6\n0xCF4F\t0x67EE\n0xCF50\t0x67E3\n0xCF51\t0x67C2\n0xCF52\t0x67B9\n0xCF53\t0x67CE\n0xCF54\t0x67E7\n0xCF55\t0x67F0\n0xCF56\t0x67B2\n0xCF57\t0x67FC\n0xCF58\t0x67C6\n0xCF59\t0x67ED\n0xCF5A\t0x67CC\n0xCF5B\t0x67AE\n0xCF5C\t0x67E6\n0xCF5D\t0x67DB\n0xCF5E\t0x67FA\n0xCF5F\t0x67C9\n0xCF60\t0x67CA\n0xCF61\t0x67C3\n0xCF62\t0x67EA\n0xCF63\t0x67CB\n0xCF64\t0x6B28\n0xCF65\t0x6B82\n0xCF66\t0x6B84\n0xCF67\t0x6BB6\n0xCF68\t0x6BD6\n0xCF69\t0x6BD8\n0xCF6A\t0x6BE0\n0xCF6B\t0x6C20\n0xCF6C\t0x6C21\n0xCF6D\t0x6D28\n0xCF6E\t0x6D34\n0xCF6F\t0x6D2D\n0xCF70\t0x6D1F\n0xCF71\t0x6D3C\n0xCF72\t0x6D3F\n0xCF73\t0x6D12\n0xCF74\t0x6D0A\n0xCF75\t0x6CDA\n0xCF76\t0x6D33\n0xCF77\t0x6D04\n0xCF78\t0x6D19\n0xCF79\t0x6D3A\n0xCF7A\t0x6D1A\n0xCF7B\t0x6D11\n0xCF7C\t0x6D00\n0xCF7D\t0x6D1D\n0xCF7E\t0x6D42\n0xCFA1\t0x6D01\n0xCFA2\t0x6D18\n0xCFA3\t0x6D37\n0xCFA4\t0x6D03\n0xCFA5\t0x6D0F\n0xCFA6\t0x6D40\n0xCFA7\t0x6D07\n0xCFA8\t0x6D20\n0xCFA9\t0x6D2C\n0xCFAA\t0x6D08\n0xCFAB\t0x6D22\n0xCFAC\t0x6D09\n0xCFAD\t0x6D10\n0xCFAE\t0x70B7\n0xCFAF\t0x709F\n0xCFB0\t0x70BE\n0xCFB1\t0x70B1\n0xCFB2\t0x70B0\n0xCFB3\t0x70A1\n0xCFB4\t0x70B4\n0xCFB5\t0x70B5\n0xCFB6\t0x70A9\n0xCFB7\t0x7241\n0xCFB8\t0x7249\n0xCFB9\t0x724A\n0xCFBA\t0x726C\n0xCFBB\t0x7270\n0xCFBC\t0x7273\n0xCFBD\t0x726E\n0xCFBE\t0x72CA\n0xCFBF\t0x72E4\n0xCFC0\t0x72E8\n0xCFC1\t0x72EB\n0xCFC2\t0x72DF\n0xCFC3\t0x72EA\n0xCFC4\t0x72E6\n0xCFC5\t0x72E3\n0xCFC6\t0x7385\n0xCFC7\t0x73CC\n0xCFC8\t0x73C2\n0xCFC9\t0x73C8\n0xCFCA\t0x73C5\n0xCFCB\t0x73B9\n0xCFCC\t0x73B6\n0xCFCD\t0x73B5\n0xCFCE\t0x73B4\n0xCFCF\t0x73EB\n0xCFD0\t0x73BF\n0xCFD1\t0x73C7\n0xCFD2\t0x73BE\n0xCFD3\t0x73C3\n0xCFD4\t0x73C6\n0xCFD5\t0x73B8\n0xCFD6\t0x73CB\n0xCFD7\t0x74EC\n0xCFD8\t0x74EE\n0xCFD9\t0x752E\n0xCFDA\t0x7547\n0xCFDB\t0x7548\n0xCFDC\t0x75A7\n0xCFDD\t0x75AA\n0xCFDE\t0x7679\n0xCFDF\t0x76C4\n0xCFE0\t0x7708\n0xCFE1\t0x7703\n0xCFE2\t0x7704\n0xCFE3\t0x7705\n0xCFE4\t0x770A\n0xCFE5\t0x76F7\n0xCFE6\t0x76FB\n0xCFE7\t0x76FA\n0xCFE8\t0x77E7\n0xCFE9\t0x77E8\n0xCFEA\t0x7806\n0xCFEB\t0x7811\n0xCFEC\t0x7812\n0xCFED\t0x7805\n0xCFEE\t0x7810\n0xCFEF\t0x780F\n0xCFF0\t0x780E\n0xCFF1\t0x7809\n0xCFF2\t0x7803\n0xCFF3\t0x7813\n0xCFF4\t0x794A\n0xCFF5\t0x794C\n0xCFF6\t0x794B\n0xCFF7\t0x7945\n0xCFF8\t0x7944\n0xCFF9\t0x79D5\n0xCFFA\t0x79CD\n0xCFFB\t0x79CF\n0xCFFC\t0x79D6\n0xCFFD\t0x79CE\n0xCFFE\t0x7A80\n0xD040\t0x7A7E\n0xD041\t0x7AD1\n0xD042\t0x7B00\n0xD043\t0x7B01\n0xD044\t0x7C7A\n0xD045\t0x7C78\n0xD046\t0x7C79\n0xD047\t0x7C7F\n0xD048\t0x7C80\n0xD049\t0x7C81\n0xD04A\t0x7D03\n0xD04B\t0x7D08\n0xD04C\t0x7D01\n0xD04D\t0x7F58\n0xD04E\t0x7F91\n0xD04F\t0x7F8D\n0xD050\t0x7FBE\n0xD051\t0x8007\n0xD052\t0x800E\n0xD053\t0x800F\n0xD054\t0x8014\n0xD055\t0x8037\n0xD056\t0x80D8\n0xD057\t0x80C7\n0xD058\t0x80E0\n0xD059\t0x80D1\n0xD05A\t0x80C8\n0xD05B\t0x80C2\n0xD05C\t0x80D0\n0xD05D\t0x80C5\n0xD05E\t0x80E3\n0xD05F\t0x80D9\n0xD060\t0x80DC\n0xD061\t0x80CA\n0xD062\t0x80D5\n0xD063\t0x80C9\n0xD064\t0x80CF\n0xD065\t0x80D7\n0xD066\t0x80E6\n0xD067\t0x80CD\n0xD068\t0x81FF\n0xD069\t0x8221\n0xD06A\t0x8294\n0xD06B\t0x82D9\n0xD06C\t0x82FE\n0xD06D\t0x82F9\n0xD06E\t0x8307\n0xD06F\t0x82E8\n0xD070\t0x8300\n0xD071\t0x82D5\n0xD072\t0x833A\n0xD073\t0x82EB\n0xD074\t0x82D6\n0xD075\t0x82F4\n0xD076\t0x82EC\n0xD077\t0x82E1\n0xD078\t0x82F2\n0xD079\t0x82F5\n0xD07A\t0x830C\n0xD07B\t0x82FB\n0xD07C\t0x82F6\n0xD07D\t0x82F0\n0xD07E\t0x82EA\n0xD0A1\t0x82E4\n0xD0A2\t0x82E0\n0xD0A3\t0x82FA\n0xD0A4\t0x82F3\n0xD0A5\t0x82ED\n0xD0A6\t0x8677\n0xD0A7\t0x8674\n0xD0A8\t0x867C\n0xD0A9\t0x8673\n0xD0AA\t0x8841\n0xD0AB\t0x884E\n0xD0AC\t0x8867\n0xD0AD\t0x886A\n0xD0AE\t0x8869\n0xD0AF\t0x89D3\n0xD0B0\t0x8A04\n0xD0B1\t0x8A07\n0xD0B2\t0x8D72\n0xD0B3\t0x8FE3\n0xD0B4\t0x8FE1\n0xD0B5\t0x8FEE\n0xD0B6\t0x8FE0\n0xD0B7\t0x90F1\n0xD0B8\t0x90BD\n0xD0B9\t0x90BF\n0xD0BA\t0x90D5\n0xD0BB\t0x90C5\n0xD0BC\t0x90BE\n0xD0BD\t0x90C7\n0xD0BE\t0x90CB\n0xD0BF\t0x90C8\n0xD0C0\t0x91D4\n0xD0C1\t0x91D3\n0xD0C2\t0x9654\n0xD0C3\t0x964F\n0xD0C4\t0x9651\n0xD0C5\t0x9653\n0xD0C6\t0x964A\n0xD0C7\t0x964E\n0xD0C8\t0x501E\n0xD0C9\t0x5005\n0xD0CA\t0x5007\n0xD0CB\t0x5013\n0xD0CC\t0x5022\n0xD0CD\t0x5030\n0xD0CE\t0x501B\n0xD0CF\t0x4FF5\n0xD0D0\t0x4FF4\n0xD0D1\t0x5033\n0xD0D2\t0x5037\n0xD0D3\t0x502C\n0xD0D4\t0x4FF6\n0xD0D5\t0x4FF7\n0xD0D6\t0x5017\n0xD0D7\t0x501C\n0xD0D8\t0x5020\n0xD0D9\t0x5027\n0xD0DA\t0x5035\n0xD0DB\t0x502F\n0xD0DC\t0x5031\n0xD0DD\t0x500E\n0xD0DE\t0x515A\n0xD0DF\t0x5194\n0xD0E0\t0x5193\n0xD0E1\t0x51CA\n0xD0E2\t0x51C4\n0xD0E3\t0x51C5\n0xD0E4\t0x51C8\n0xD0E5\t0x51CE\n0xD0E6\t0x5261\n0xD0E7\t0x525A\n0xD0E8\t0x5252\n0xD0E9\t0x525E\n0xD0EA\t0x525F\n0xD0EB\t0x5255\n0xD0EC\t0x5262\n0xD0ED\t0x52CD\n0xD0EE\t0x530E\n0xD0EF\t0x539E\n0xD0F0\t0x5526\n0xD0F1\t0x54E2\n0xD0F2\t0x5517\n0xD0F3\t0x5512\n0xD0F4\t0x54E7\n0xD0F5\t0x54F3\n0xD0F6\t0x54E4\n0xD0F7\t0x551A\n0xD0F8\t0x54FF\n0xD0F9\t0x5504\n0xD0FA\t0x5508\n0xD0FB\t0x54EB\n0xD0FC\t0x5511\n0xD0FD\t0x5505\n0xD0FE\t0x54F1\n0xD140\t0x550A\n0xD141\t0x54FB\n0xD142\t0x54F7\n0xD143\t0x54F8\n0xD144\t0x54E0\n0xD145\t0x550E\n0xD146\t0x5503\n0xD147\t0x550B\n0xD148\t0x5701\n0xD149\t0x5702\n0xD14A\t0x57CC\n0xD14B\t0x5832\n0xD14C\t0x57D5\n0xD14D\t0x57D2\n0xD14E\t0x57BA\n0xD14F\t0x57C6\n0xD150\t0x57BD\n0xD151\t0x57BC\n0xD152\t0x57B8\n0xD153\t0x57B6\n0xD154\t0x57BF\n0xD155\t0x57C7\n0xD156\t0x57D0\n0xD157\t0x57B9\n0xD158\t0x57C1\n0xD159\t0x590E\n0xD15A\t0x594A\n0xD15B\t0x5A19\n0xD15C\t0x5A16\n0xD15D\t0x5A2D\n0xD15E\t0x5A2E\n0xD15F\t0x5A15\n0xD160\t0x5A0F\n0xD161\t0x5A17\n0xD162\t0x5A0A\n0xD163\t0x5A1E\n0xD164\t0x5A33\n0xD165\t0x5B6C\n0xD166\t0x5BA7\n0xD167\t0x5BAD\n0xD168\t0x5BAC\n0xD169\t0x5C03\n0xD16A\t0x5C56\n0xD16B\t0x5C54\n0xD16C\t0x5CEC\n0xD16D\t0x5CFF\n0xD16E\t0x5CEE\n0xD16F\t0x5CF1\n0xD170\t0x5CF7\n0xD171\t0x5D00\n0xD172\t0x5CF9\n0xD173\t0x5E29\n0xD174\t0x5E28\n0xD175\t0x5EA8\n0xD176\t0x5EAE\n0xD177\t0x5EAA\n0xD178\t0x5EAC\n0xD179\t0x5F33\n0xD17A\t0x5F30\n0xD17B\t0x5F67\n0xD17C\t0x605D\n0xD17D\t0x605A\n0xD17E\t0x6067\n0xD1A1\t0x6041\n0xD1A2\t0x60A2\n0xD1A3\t0x6088\n0xD1A4\t0x6080\n0xD1A5\t0x6092\n0xD1A6\t0x6081\n0xD1A7\t0x609D\n0xD1A8\t0x6083\n0xD1A9\t0x6095\n0xD1AA\t0x609B\n0xD1AB\t0x6097\n0xD1AC\t0x6087\n0xD1AD\t0x609C\n0xD1AE\t0x608E\n0xD1AF\t0x6219\n0xD1B0\t0x6246\n0xD1B1\t0x62F2\n0xD1B2\t0x6310\n0xD1B3\t0x6356\n0xD1B4\t0x632C\n0xD1B5\t0x6344\n0xD1B6\t0x6345\n0xD1B7\t0x6336\n0xD1B8\t0x6343\n0xD1B9\t0x63E4\n0xD1BA\t0x6339\n0xD1BB\t0x634B\n0xD1BC\t0x634A\n0xD1BD\t0x633C\n0xD1BE\t0x6329\n0xD1BF\t0x6341\n0xD1C0\t0x6334\n0xD1C1\t0x6358\n0xD1C2\t0x6354\n0xD1C3\t0x6359\n0xD1C4\t0x632D\n0xD1C5\t0x6347\n0xD1C6\t0x6333\n0xD1C7\t0x635A\n0xD1C8\t0x6351\n0xD1C9\t0x6338\n0xD1CA\t0x6357\n0xD1CB\t0x6340\n0xD1CC\t0x6348\n0xD1CD\t0x654A\n0xD1CE\t0x6546\n0xD1CF\t0x65C6\n0xD1D0\t0x65C3\n0xD1D1\t0x65C4\n0xD1D2\t0x65C2\n0xD1D3\t0x664A\n0xD1D4\t0x665F\n0xD1D5\t0x6647\n0xD1D6\t0x6651\n0xD1D7\t0x6712\n0xD1D8\t0x6713\n0xD1D9\t0x681F\n0xD1DA\t0x681A\n0xD1DB\t0x6849\n0xD1DC\t0x6832\n0xD1DD\t0x6833\n0xD1DE\t0x683B\n0xD1DF\t0x684B\n0xD1E0\t0x684F\n0xD1E1\t0x6816\n0xD1E2\t0x6831\n0xD1E3\t0x681C\n0xD1E4\t0x6835\n0xD1E5\t0x682B\n0xD1E6\t0x682D\n0xD1E7\t0x682F\n0xD1E8\t0x684E\n0xD1E9\t0x6844\n0xD1EA\t0x6834\n0xD1EB\t0x681D\n0xD1EC\t0x6812\n0xD1ED\t0x6814\n0xD1EE\t0x6826\n0xD1EF\t0x6828\n0xD1F0\t0x682E\n0xD1F1\t0x684D\n0xD1F2\t0x683A\n0xD1F3\t0x6825\n0xD1F4\t0x6820\n0xD1F5\t0x6B2C\n0xD1F6\t0x6B2F\n0xD1F7\t0x6B2D\n0xD1F8\t0x6B31\n0xD1F9\t0x6B34\n0xD1FA\t0x6B6D\n0xD1FB\t0x8082\n0xD1FC\t0x6B88\n0xD1FD\t0x6BE6\n0xD1FE\t0x6BE4\n0xD240\t0x6BE8\n0xD241\t0x6BE3\n0xD242\t0x6BE2\n0xD243\t0x6BE7\n0xD244\t0x6C25\n0xD245\t0x6D7A\n0xD246\t0x6D63\n0xD247\t0x6D64\n0xD248\t0x6D76\n0xD249\t0x6D0D\n0xD24A\t0x6D61\n0xD24B\t0x6D92\n0xD24C\t0x6D58\n0xD24D\t0x6D62\n0xD24E\t0x6D6D\n0xD24F\t0x6D6F\n0xD250\t0x6D91\n0xD251\t0x6D8D\n0xD252\t0x6DEF\n0xD253\t0x6D7F\n0xD254\t0x6D86\n0xD255\t0x6D5E\n0xD256\t0x6D67\n0xD257\t0x6D60\n0xD258\t0x6D97\n0xD259\t0x6D70\n0xD25A\t0x6D7C\n0xD25B\t0x6D5F\n0xD25C\t0x6D82\n0xD25D\t0x6D98\n0xD25E\t0x6D2F\n0xD25F\t0x6D68\n0xD260\t0x6D8B\n0xD261\t0x6D7E\n0xD262\t0x6D80\n0xD263\t0x6D84\n0xD264\t0x6D16\n0xD265\t0x6D83\n0xD266\t0x6D7B\n0xD267\t0x6D7D\n0xD268\t0x6D75\n0xD269\t0x6D90\n0xD26A\t0x70DC\n0xD26B\t0x70D3\n0xD26C\t0x70D1\n0xD26D\t0x70DD\n0xD26E\t0x70CB\n0xD26F\t0x7F39\n0xD270\t0x70E2\n0xD271\t0x70D7\n0xD272\t0x70D2\n0xD273\t0x70DE\n0xD274\t0x70E0\n0xD275\t0x70D4\n0xD276\t0x70CD\n0xD277\t0x70C5\n0xD278\t0x70C6\n0xD279\t0x70C7\n0xD27A\t0x70DA\n0xD27B\t0x70CE\n0xD27C\t0x70E1\n0xD27D\t0x7242\n0xD27E\t0x7278\n0xD2A1\t0x7277\n0xD2A2\t0x7276\n0xD2A3\t0x7300\n0xD2A4\t0x72FA\n0xD2A5\t0x72F4\n0xD2A6\t0x72FE\n0xD2A7\t0x72F6\n0xD2A8\t0x72F3\n0xD2A9\t0x72FB\n0xD2AA\t0x7301\n0xD2AB\t0x73D3\n0xD2AC\t0x73D9\n0xD2AD\t0x73E5\n0xD2AE\t0x73D6\n0xD2AF\t0x73BC\n0xD2B0\t0x73E7\n0xD2B1\t0x73E3\n0xD2B2\t0x73E9\n0xD2B3\t0x73DC\n0xD2B4\t0x73D2\n0xD2B5\t0x73DB\n0xD2B6\t0x73D4\n0xD2B7\t0x73DD\n0xD2B8\t0x73DA\n0xD2B9\t0x73D7\n0xD2BA\t0x73D8\n0xD2BB\t0x73E8\n0xD2BC\t0x74DE\n0xD2BD\t0x74DF\n0xD2BE\t0x74F4\n0xD2BF\t0x74F5\n0xD2C0\t0x7521\n0xD2C1\t0x755B\n0xD2C2\t0x755F\n0xD2C3\t0x75B0\n0xD2C4\t0x75C1\n0xD2C5\t0x75BB\n0xD2C6\t0x75C4\n0xD2C7\t0x75C0\n0xD2C8\t0x75BF\n0xD2C9\t0x75B6\n0xD2CA\t0x75BA\n0xD2CB\t0x768A\n0xD2CC\t0x76C9\n0xD2CD\t0x771D\n0xD2CE\t0x771B\n0xD2CF\t0x7710\n0xD2D0\t0x7713\n0xD2D1\t0x7712\n0xD2D2\t0x7723\n0xD2D3\t0x7711\n0xD2D4\t0x7715\n0xD2D5\t0x7719\n0xD2D6\t0x771A\n0xD2D7\t0x7722\n0xD2D8\t0x7727\n0xD2D9\t0x7823\n0xD2DA\t0x782C\n0xD2DB\t0x7822\n0xD2DC\t0x7835\n0xD2DD\t0x782F\n0xD2DE\t0x7828\n0xD2DF\t0x782E\n0xD2E0\t0x782B\n0xD2E1\t0x7821\n0xD2E2\t0x7829\n0xD2E3\t0x7833\n0xD2E4\t0x782A\n0xD2E5\t0x7831\n0xD2E6\t0x7954\n0xD2E7\t0x795B\n0xD2E8\t0x794F\n0xD2E9\t0x795C\n0xD2EA\t0x7953\n0xD2EB\t0x7952\n0xD2EC\t0x7951\n0xD2ED\t0x79EB\n0xD2EE\t0x79EC\n0xD2EF\t0x79E0\n0xD2F0\t0x79EE\n0xD2F1\t0x79ED\n0xD2F2\t0x79EA\n0xD2F3\t0x79DC\n0xD2F4\t0x79DE\n0xD2F5\t0x79DD\n0xD2F6\t0x7A86\n0xD2F7\t0x7A89\n0xD2F8\t0x7A85\n0xD2F9\t0x7A8B\n0xD2FA\t0x7A8C\n0xD2FB\t0x7A8A\n0xD2FC\t0x7A87\n0xD2FD\t0x7AD8\n0xD2FE\t0x7B10\n0xD340\t0x7B04\n0xD341\t0x7B13\n0xD342\t0x7B05\n0xD343\t0x7B0F\n0xD344\t0x7B08\n0xD345\t0x7B0A\n0xD346\t0x7B0E\n0xD347\t0x7B09\n0xD348\t0x7B12\n0xD349\t0x7C84\n0xD34A\t0x7C91\n0xD34B\t0x7C8A\n0xD34C\t0x7C8C\n0xD34D\t0x7C88\n0xD34E\t0x7C8D\n0xD34F\t0x7C85\n0xD350\t0x7D1E\n0xD351\t0x7D1D\n0xD352\t0x7D11\n0xD353\t0x7D0E\n0xD354\t0x7D18\n0xD355\t0x7D16\n0xD356\t0x7D13\n0xD357\t0x7D1F\n0xD358\t0x7D12\n0xD359\t0x7D0F\n0xD35A\t0x7D0C\n0xD35B\t0x7F5C\n0xD35C\t0x7F61\n0xD35D\t0x7F5E\n0xD35E\t0x7F60\n0xD35F\t0x7F5D\n0xD360\t0x7F5B\n0xD361\t0x7F96\n0xD362\t0x7F92\n0xD363\t0x7FC3\n0xD364\t0x7FC2\n0xD365\t0x7FC0\n0xD366\t0x8016\n0xD367\t0x803E\n0xD368\t0x8039\n0xD369\t0x80FA\n0xD36A\t0x80F2\n0xD36B\t0x80F9\n0xD36C\t0x80F5\n0xD36D\t0x8101\n0xD36E\t0x80FB\n0xD36F\t0x8100\n0xD370\t0x8201\n0xD371\t0x822F\n0xD372\t0x8225\n0xD373\t0x8333\n0xD374\t0x832D\n0xD375\t0x8344\n0xD376\t0x8319\n0xD377\t0x8351\n0xD378\t0x8325\n0xD379\t0x8356\n0xD37A\t0x833F\n0xD37B\t0x8341\n0xD37C\t0x8326\n0xD37D\t0x831C\n0xD37E\t0x8322\n0xD3A1\t0x8342\n0xD3A2\t0x834E\n0xD3A3\t0x831B\n0xD3A4\t0x832A\n0xD3A5\t0x8308\n0xD3A6\t0x833C\n0xD3A7\t0x834D\n0xD3A8\t0x8316\n0xD3A9\t0x8324\n0xD3AA\t0x8320\n0xD3AB\t0x8337\n0xD3AC\t0x832F\n0xD3AD\t0x8329\n0xD3AE\t0x8347\n0xD3AF\t0x8345\n0xD3B0\t0x834C\n0xD3B1\t0x8353\n0xD3B2\t0x831E\n0xD3B3\t0x832C\n0xD3B4\t0x834B\n0xD3B5\t0x8327\n0xD3B6\t0x8348\n0xD3B7\t0x8653\n0xD3B8\t0x8652\n0xD3B9\t0x86A2\n0xD3BA\t0x86A8\n0xD3BB\t0x8696\n0xD3BC\t0x868D\n0xD3BD\t0x8691\n0xD3BE\t0x869E\n0xD3BF\t0x8687\n0xD3C0\t0x8697\n0xD3C1\t0x8686\n0xD3C2\t0x868B\n0xD3C3\t0x869A\n0xD3C4\t0x8685\n0xD3C5\t0x86A5\n0xD3C6\t0x8699\n0xD3C7\t0x86A1\n0xD3C8\t0x86A7\n0xD3C9\t0x8695\n0xD3CA\t0x8698\n0xD3CB\t0x868E\n0xD3CC\t0x869D\n0xD3CD\t0x8690\n0xD3CE\t0x8694\n0xD3CF\t0x8843\n0xD3D0\t0x8844\n0xD3D1\t0x886D\n0xD3D2\t0x8875\n0xD3D3\t0x8876\n0xD3D4\t0x8872\n0xD3D5\t0x8880\n0xD3D6\t0x8871\n0xD3D7\t0x887F\n0xD3D8\t0x886F\n0xD3D9\t0x8883\n0xD3DA\t0x887E\n0xD3DB\t0x8874\n0xD3DC\t0x887C\n0xD3DD\t0x8A12\n0xD3DE\t0x8C47\n0xD3DF\t0x8C57\n0xD3E0\t0x8C7B\n0xD3E1\t0x8CA4\n0xD3E2\t0x8CA3\n0xD3E3\t0x8D76\n0xD3E4\t0x8D78\n0xD3E5\t0x8DB5\n0xD3E6\t0x8DB7\n0xD3E7\t0x8DB6\n0xD3E8\t0x8ED1\n0xD3E9\t0x8ED3\n0xD3EA\t0x8FFE\n0xD3EB\t0x8FF5\n0xD3EC\t0x9002\n0xD3ED\t0x8FFF\n0xD3EE\t0x8FFB\n0xD3EF\t0x9004\n0xD3F0\t0x8FFC\n0xD3F1\t0x8FF6\n0xD3F2\t0x90D6\n0xD3F3\t0x90E0\n0xD3F4\t0x90D9\n0xD3F5\t0x90DA\n0xD3F6\t0x90E3\n0xD3F7\t0x90DF\n0xD3F8\t0x90E5\n0xD3F9\t0x90D8\n0xD3FA\t0x90DB\n0xD3FB\t0x90D7\n0xD3FC\t0x90DC\n0xD3FD\t0x90E4\n0xD3FE\t0x9150\n0xD440\t0x914E\n0xD441\t0x914F\n0xD442\t0x91D5\n0xD443\t0x91E2\n0xD444\t0x91DA\n0xD445\t0x965C\n0xD446\t0x965F\n0xD447\t0x96BC\n0xD448\t0x98E3\n0xD449\t0x9ADF\n0xD44A\t0x9B2F\n0xD44B\t0x4E7F\n0xD44C\t0x5070\n0xD44D\t0x506A\n0xD44E\t0x5061\n0xD44F\t0x505E\n0xD450\t0x5060\n0xD451\t0x5053\n0xD452\t0x504B\n0xD453\t0x505D\n0xD454\t0x5072\n0xD455\t0x5048\n0xD456\t0x504D\n0xD457\t0x5041\n0xD458\t0x505B\n0xD459\t0x504A\n0xD45A\t0x5062\n0xD45B\t0x5015\n0xD45C\t0x5045\n0xD45D\t0x505F\n0xD45E\t0x5069\n0xD45F\t0x506B\n0xD460\t0x5063\n0xD461\t0x5064\n0xD462\t0x5046\n0xD463\t0x5040\n0xD464\t0x506E\n0xD465\t0x5073\n0xD466\t0x5057\n0xD467\t0x5051\n0xD468\t0x51D0\n0xD469\t0x526B\n0xD46A\t0x526D\n0xD46B\t0x526C\n0xD46C\t0x526E\n0xD46D\t0x52D6\n0xD46E\t0x52D3\n0xD46F\t0x532D\n0xD470\t0x539C\n0xD471\t0x5575\n0xD472\t0x5576\n0xD473\t0x553C\n0xD474\t0x554D\n0xD475\t0x5550\n0xD476\t0x5534\n0xD477\t0x552A\n0xD478\t0x5551\n0xD479\t0x5562\n0xD47A\t0x5536\n0xD47B\t0x5535\n0xD47C\t0x5530\n0xD47D\t0x5552\n0xD47E\t0x5545\n0xD4A1\t0x550C\n0xD4A2\t0x5532\n0xD4A3\t0x5565\n0xD4A4\t0x554E\n0xD4A5\t0x5539\n0xD4A6\t0x5548\n0xD4A7\t0x552D\n0xD4A8\t0x553B\n0xD4A9\t0x5540\n0xD4AA\t0x554B\n0xD4AB\t0x570A\n0xD4AC\t0x5707\n0xD4AD\t0x57FB\n0xD4AE\t0x5814\n0xD4AF\t0x57E2\n0xD4B0\t0x57F6\n0xD4B1\t0x57DC\n0xD4B2\t0x57F4\n0xD4B3\t0x5800\n0xD4B4\t0x57ED\n0xD4B5\t0x57FD\n0xD4B6\t0x5808\n0xD4B7\t0x57F8\n0xD4B8\t0x580B\n0xD4B9\t0x57F3\n0xD4BA\t0x57CF\n0xD4BB\t0x5807\n0xD4BC\t0x57EE\n0xD4BD\t0x57E3\n0xD4BE\t0x57F2\n0xD4BF\t0x57E5\n0xD4C0\t0x57EC\n0xD4C1\t0x57E1\n0xD4C2\t0x580E\n0xD4C3\t0x57FC\n0xD4C4\t0x5810\n0xD4C5\t0x57E7\n0xD4C6\t0x5801\n0xD4C7\t0x580C\n0xD4C8\t0x57F1\n0xD4C9\t0x57E9\n0xD4CA\t0x57F0\n0xD4CB\t0x580D\n0xD4CC\t0x5804\n0xD4CD\t0x595C\n0xD4CE\t0x5A60\n0xD4CF\t0x5A58\n0xD4D0\t0x5A55\n0xD4D1\t0x5A67\n0xD4D2\t0x5A5E\n0xD4D3\t0x5A38\n0xD4D4\t0x5A35\n0xD4D5\t0x5A6D\n0xD4D6\t0x5A50\n0xD4D7\t0x5A5F\n0xD4D8\t0x5A65\n0xD4D9\t0x5A6C\n0xD4DA\t0x5A53\n0xD4DB\t0x5A64\n0xD4DC\t0x5A57\n0xD4DD\t0x5A43\n0xD4DE\t0x5A5D\n0xD4DF\t0x5A52\n0xD4E0\t0x5A44\n0xD4E1\t0x5A5B\n0xD4E2\t0x5A48\n0xD4E3\t0x5A8E\n0xD4E4\t0x5A3E\n0xD4E5\t0x5A4D\n0xD4E6\t0x5A39\n0xD4E7\t0x5A4C\n0xD4E8\t0x5A70\n0xD4E9\t0x5A69\n0xD4EA\t0x5A47\n0xD4EB\t0x5A51\n0xD4EC\t0x5A56\n0xD4ED\t0x5A42\n0xD4EE\t0x5A5C\n0xD4EF\t0x5B72\n0xD4F0\t0x5B6E\n0xD4F1\t0x5BC1\n0xD4F2\t0x5BC0\n0xD4F3\t0x5C59\n0xD4F4\t0x5D1E\n0xD4F5\t0x5D0B\n0xD4F6\t0x5D1D\n0xD4F7\t0x5D1A\n0xD4F8\t0x5D20\n0xD4F9\t0x5D0C\n0xD4FA\t0x5D28\n0xD4FB\t0x5D0D\n0xD4FC\t0x5D26\n0xD4FD\t0x5D25\n0xD4FE\t0x5D0F\n0xD540\t0x5D30\n0xD541\t0x5D12\n0xD542\t0x5D23\n0xD543\t0x5D1F\n0xD544\t0x5D2E\n0xD545\t0x5E3E\n0xD546\t0x5E34\n0xD547\t0x5EB1\n0xD548\t0x5EB4\n0xD549\t0x5EB9\n0xD54A\t0x5EB2\n0xD54B\t0x5EB3\n0xD54C\t0x5F36\n0xD54D\t0x5F38\n0xD54E\t0x5F9B\n0xD54F\t0x5F96\n0xD550\t0x5F9F\n0xD551\t0x608A\n0xD552\t0x6090\n0xD553\t0x6086\n0xD554\t0x60BE\n0xD555\t0x60B0\n0xD556\t0x60BA\n0xD557\t0x60D3\n0xD558\t0x60D4\n0xD559\t0x60CF\n0xD55A\t0x60E4\n0xD55B\t0x60D9\n0xD55C\t0x60DD\n0xD55D\t0x60C8\n0xD55E\t0x60B1\n0xD55F\t0x60DB\n0xD560\t0x60B7\n0xD561\t0x60CA\n0xD562\t0x60BF\n0xD563\t0x60C3\n0xD564\t0x60CD\n0xD565\t0x60C0\n0xD566\t0x6332\n0xD567\t0x6365\n0xD568\t0x638A\n0xD569\t0x6382\n0xD56A\t0x637D\n0xD56B\t0x63BD\n0xD56C\t0x639E\n0xD56D\t0x63AD\n0xD56E\t0x639D\n0xD56F\t0x6397\n0xD570\t0x63AB\n0xD571\t0x638E\n0xD572\t0x636F\n0xD573\t0x6387\n0xD574\t0x6390\n0xD575\t0x636E\n0xD576\t0x63AF\n0xD577\t0x6375\n0xD578\t0x639C\n0xD579\t0x636D\n0xD57A\t0x63AE\n0xD57B\t0x637C\n0xD57C\t0x63A4\n0xD57D\t0x633B\n0xD57E\t0x639F\n0xD5A1\t0x6378\n0xD5A2\t0x6385\n0xD5A3\t0x6381\n0xD5A4\t0x6391\n0xD5A5\t0x638D\n0xD5A6\t0x6370\n0xD5A7\t0x6553\n0xD5A8\t0x65CD\n0xD5A9\t0x6665\n0xD5AA\t0x6661\n0xD5AB\t0x665B\n0xD5AC\t0x6659\n0xD5AD\t0x665C\n0xD5AE\t0x6662\n0xD5AF\t0x6718\n0xD5B0\t0x6879\n0xD5B1\t0x6887\n0xD5B2\t0x6890\n0xD5B3\t0x689C\n0xD5B4\t0x686D\n0xD5B5\t0x686E\n0xD5B6\t0x68AE\n0xD5B7\t0x68AB\n0xD5B8\t0x6956\n0xD5B9\t0x686F\n0xD5BA\t0x68A3\n0xD5BB\t0x68AC\n0xD5BC\t0x68A9\n0xD5BD\t0x6875\n0xD5BE\t0x6874\n0xD5BF\t0x68B2\n0xD5C0\t0x688F\n0xD5C1\t0x6877\n0xD5C2\t0x6892\n0xD5C3\t0x687C\n0xD5C4\t0x686B\n0xD5C5\t0x6872\n0xD5C6\t0x68AA\n0xD5C7\t0x6880\n0xD5C8\t0x6871\n0xD5C9\t0x687E\n0xD5CA\t0x689B\n0xD5CB\t0x6896\n0xD5CC\t0x688B\n0xD5CD\t0x68A0\n0xD5CE\t0x6889\n0xD5CF\t0x68A4\n0xD5D0\t0x6878\n0xD5D1\t0x687B\n0xD5D2\t0x6891\n0xD5D3\t0x688C\n0xD5D4\t0x688A\n0xD5D5\t0x687D\n0xD5D6\t0x6B36\n0xD5D7\t0x6B33\n0xD5D8\t0x6B37\n0xD5D9\t0x6B38\n0xD5DA\t0x6B91\n0xD5DB\t0x6B8F\n0xD5DC\t0x6B8D\n0xD5DD\t0x6B8E\n0xD5DE\t0x6B8C\n0xD5DF\t0x6C2A\n0xD5E0\t0x6DC0\n0xD5E1\t0x6DAB\n0xD5E2\t0x6DB4\n0xD5E3\t0x6DB3\n0xD5E4\t0x6E74\n0xD5E5\t0x6DAC\n0xD5E6\t0x6DE9\n0xD5E7\t0x6DE2\n0xD5E8\t0x6DB7\n0xD5E9\t0x6DF6\n0xD5EA\t0x6DD4\n0xD5EB\t0x6E00\n0xD5EC\t0x6DC8\n0xD5ED\t0x6DE0\n0xD5EE\t0x6DDF\n0xD5EF\t0x6DD6\n0xD5F0\t0x6DBE\n0xD5F1\t0x6DE5\n0xD5F2\t0x6DDC\n0xD5F3\t0x6DDD\n0xD5F4\t0x6DDB\n0xD5F5\t0x6DF4\n0xD5F6\t0x6DCA\n0xD5F7\t0x6DBD\n0xD5F8\t0x6DED\n0xD5F9\t0x6DF0\n0xD5FA\t0x6DBA\n0xD5FB\t0x6DD5\n0xD5FC\t0x6DC2\n0xD5FD\t0x6DCF\n0xD5FE\t0x6DC9\n0xD640\t0x6DD0\n0xD641\t0x6DF2\n0xD642\t0x6DD3\n0xD643\t0x6DFD\n0xD644\t0x6DD7\n0xD645\t0x6DCD\n0xD646\t0x6DE3\n0xD647\t0x6DBB\n0xD648\t0x70FA\n0xD649\t0x710D\n0xD64A\t0x70F7\n0xD64B\t0x7117\n0xD64C\t0x70F4\n0xD64D\t0x710C\n0xD64E\t0x70F0\n0xD64F\t0x7104\n0xD650\t0x70F3\n0xD651\t0x7110\n0xD652\t0x70FC\n0xD653\t0x70FF\n0xD654\t0x7106\n0xD655\t0x7113\n0xD656\t0x7100\n0xD657\t0x70F8\n0xD658\t0x70F6\n0xD659\t0x710B\n0xD65A\t0x7102\n0xD65B\t0x710E\n0xD65C\t0x727E\n0xD65D\t0x727B\n0xD65E\t0x727C\n0xD65F\t0x727F\n0xD660\t0x731D\n0xD661\t0x7317\n0xD662\t0x7307\n0xD663\t0x7311\n0xD664\t0x7318\n0xD665\t0x730A\n0xD666\t0x7308\n0xD667\t0x72FF\n0xD668\t0x730F\n0xD669\t0x731E\n0xD66A\t0x7388\n0xD66B\t0x73F6\n0xD66C\t0x73F8\n0xD66D\t0x73F5\n0xD66E\t0x7404\n0xD66F\t0x7401\n0xD670\t0x73FD\n0xD671\t0x7407\n0xD672\t0x7400\n0xD673\t0x73FA\n0xD674\t0x73FC\n0xD675\t0x73FF\n0xD676\t0x740C\n0xD677\t0x740B\n0xD678\t0x73F4\n0xD679\t0x7408\n0xD67A\t0x7564\n0xD67B\t0x7563\n0xD67C\t0x75CE\n0xD67D\t0x75D2\n0xD67E\t0x75CF\n0xD6A1\t0x75CB\n0xD6A2\t0x75CC\n0xD6A3\t0x75D1\n0xD6A4\t0x75D0\n0xD6A5\t0x768F\n0xD6A6\t0x7689\n0xD6A7\t0x76D3\n0xD6A8\t0x7739\n0xD6A9\t0x772F\n0xD6AA\t0x772D\n0xD6AB\t0x7731\n0xD6AC\t0x7732\n0xD6AD\t0x7734\n0xD6AE\t0x7733\n0xD6AF\t0x773D\n0xD6B0\t0x7725\n0xD6B1\t0x773B\n0xD6B2\t0x7735\n0xD6B3\t0x7848\n0xD6B4\t0x7852\n0xD6B5\t0x7849\n0xD6B6\t0x784D\n0xD6B7\t0x784A\n0xD6B8\t0x784C\n0xD6B9\t0x7826\n0xD6BA\t0x7845\n0xD6BB\t0x7850\n0xD6BC\t0x7964\n0xD6BD\t0x7967\n0xD6BE\t0x7969\n0xD6BF\t0x796A\n0xD6C0\t0x7963\n0xD6C1\t0x796B\n0xD6C2\t0x7961\n0xD6C3\t0x79BB\n0xD6C4\t0x79FA\n0xD6C5\t0x79F8\n0xD6C6\t0x79F6\n0xD6C7\t0x79F7\n0xD6C8\t0x7A8F\n0xD6C9\t0x7A94\n0xD6CA\t0x7A90\n0xD6CB\t0x7B35\n0xD6CC\t0x7B47\n0xD6CD\t0x7B34\n0xD6CE\t0x7B25\n0xD6CF\t0x7B30\n0xD6D0\t0x7B22\n0xD6D1\t0x7B24\n0xD6D2\t0x7B33\n0xD6D3\t0x7B18\n0xD6D4\t0x7B2A\n0xD6D5\t0x7B1D\n0xD6D6\t0x7B31\n0xD6D7\t0x7B2B\n0xD6D8\t0x7B2D\n0xD6D9\t0x7B2F\n0xD6DA\t0x7B32\n0xD6DB\t0x7B38\n0xD6DC\t0x7B1A\n0xD6DD\t0x7B23\n0xD6DE\t0x7C94\n0xD6DF\t0x7C98\n0xD6E0\t0x7C96\n0xD6E1\t0x7CA3\n0xD6E2\t0x7D35\n0xD6E3\t0x7D3D\n0xD6E4\t0x7D38\n0xD6E5\t0x7D36\n0xD6E6\t0x7D3A\n0xD6E7\t0x7D45\n0xD6E8\t0x7D2C\n0xD6E9\t0x7D29\n0xD6EA\t0x7D41\n0xD6EB\t0x7D47\n0xD6EC\t0x7D3E\n0xD6ED\t0x7D3F\n0xD6EE\t0x7D4A\n0xD6EF\t0x7D3B\n0xD6F0\t0x7D28\n0xD6F1\t0x7F63\n0xD6F2\t0x7F95\n0xD6F3\t0x7F9C\n0xD6F4\t0x7F9D\n0xD6F5\t0x7F9B\n0xD6F6\t0x7FCA\n0xD6F7\t0x7FCB\n0xD6F8\t0x7FCD\n0xD6F9\t0x7FD0\n0xD6FA\t0x7FD1\n0xD6FB\t0x7FC7\n0xD6FC\t0x7FCF\n0xD6FD\t0x7FC9\n0xD6FE\t0x801F\n0xD740\t0x801E\n0xD741\t0x801B\n0xD742\t0x8047\n0xD743\t0x8043\n0xD744\t0x8048\n0xD745\t0x8118\n0xD746\t0x8125\n0xD747\t0x8119\n0xD748\t0x811B\n0xD749\t0x812D\n0xD74A\t0x811F\n0xD74B\t0x812C\n0xD74C\t0x811E\n0xD74D\t0x8121\n0xD74E\t0x8115\n0xD74F\t0x8127\n0xD750\t0x811D\n0xD751\t0x8122\n0xD752\t0x8211\n0xD753\t0x8238\n0xD754\t0x8233\n0xD755\t0x823A\n0xD756\t0x8234\n0xD757\t0x8232\n0xD758\t0x8274\n0xD759\t0x8390\n0xD75A\t0x83A3\n0xD75B\t0x83A8\n0xD75C\t0x838D\n0xD75D\t0x837A\n0xD75E\t0x8373\n0xD75F\t0x83A4\n0xD760\t0x8374\n0xD761\t0x838F\n0xD762\t0x8381\n0xD763\t0x8395\n0xD764\t0x8399\n0xD765\t0x8375\n0xD766\t0x8394\n0xD767\t0x83A9\n0xD768\t0x837D\n0xD769\t0x8383\n0xD76A\t0x838C\n0xD76B\t0x839D\n0xD76C\t0x839B\n0xD76D\t0x83AA\n0xD76E\t0x838B\n0xD76F\t0x837E\n0xD770\t0x83A5\n0xD771\t0x83AF\n0xD772\t0x8388\n0xD773\t0x8397\n0xD774\t0x83B0\n0xD775\t0x837F\n0xD776\t0x83A6\n0xD777\t0x8387\n0xD778\t0x83AE\n0xD779\t0x8376\n0xD77A\t0x839A\n0xD77B\t0x8659\n0xD77C\t0x8656\n0xD77D\t0x86BF\n0xD77E\t0x86B7\n0xD7A1\t0x86C2\n0xD7A2\t0x86C1\n0xD7A3\t0x86C5\n0xD7A4\t0x86BA\n0xD7A5\t0x86B0\n0xD7A6\t0x86C8\n0xD7A7\t0x86B9\n0xD7A8\t0x86B3\n0xD7A9\t0x86B8\n0xD7AA\t0x86CC\n0xD7AB\t0x86B4\n0xD7AC\t0x86BB\n0xD7AD\t0x86BC\n0xD7AE\t0x86C3\n0xD7AF\t0x86BD\n0xD7B0\t0x86BE\n0xD7B1\t0x8852\n0xD7B2\t0x8889\n0xD7B3\t0x8895\n0xD7B4\t0x88A8\n0xD7B5\t0x88A2\n0xD7B6\t0x88AA\n0xD7B7\t0x889A\n0xD7B8\t0x8891\n0xD7B9\t0x88A1\n0xD7BA\t0x889F\n0xD7BB\t0x8898\n0xD7BC\t0x88A7\n0xD7BD\t0x8899\n0xD7BE\t0x889B\n0xD7BF\t0x8897\n0xD7C0\t0x88A4\n0xD7C1\t0x88AC\n0xD7C2\t0x888C\n0xD7C3\t0x8893\n0xD7C4\t0x888E\n0xD7C5\t0x8982\n0xD7C6\t0x89D6\n0xD7C7\t0x89D9\n0xD7C8\t0x89D5\n0xD7C9\t0x8A30\n0xD7CA\t0x8A27\n0xD7CB\t0x8A2C\n0xD7CC\t0x8A1E\n0xD7CD\t0x8C39\n0xD7CE\t0x8C3B\n0xD7CF\t0x8C5C\n0xD7D0\t0x8C5D\n0xD7D1\t0x8C7D\n0xD7D2\t0x8CA5\n0xD7D3\t0x8D7D\n0xD7D4\t0x8D7B\n0xD7D5\t0x8D79\n0xD7D6\t0x8DBC\n0xD7D7\t0x8DC2\n0xD7D8\t0x8DB9\n0xD7D9\t0x8DBF\n0xD7DA\t0x8DC1\n0xD7DB\t0x8ED8\n0xD7DC\t0x8EDE\n0xD7DD\t0x8EDD\n0xD7DE\t0x8EDC\n0xD7DF\t0x8ED7\n0xD7E0\t0x8EE0\n0xD7E1\t0x8EE1\n0xD7E2\t0x9024\n0xD7E3\t0x900B\n0xD7E4\t0x9011\n0xD7E5\t0x901C\n0xD7E6\t0x900C\n0xD7E7\t0x9021\n0xD7E8\t0x90EF\n0xD7E9\t0x90EA\n0xD7EA\t0x90F0\n0xD7EB\t0x90F4\n0xD7EC\t0x90F2\n0xD7ED\t0x90F3\n0xD7EE\t0x90D4\n0xD7EF\t0x90EB\n0xD7F0\t0x90EC\n0xD7F1\t0x90E9\n0xD7F2\t0x9156\n0xD7F3\t0x9158\n0xD7F4\t0x915A\n0xD7F5\t0x9153\n0xD7F6\t0x9155\n0xD7F7\t0x91EC\n0xD7F8\t0x91F4\n0xD7F9\t0x91F1\n0xD7FA\t0x91F3\n0xD7FB\t0x91F8\n0xD7FC\t0x91E4\n0xD7FD\t0x91F9\n0xD7FE\t0x91EA\n0xD840\t0x91EB\n0xD841\t0x91F7\n0xD842\t0x91E8\n0xD843\t0x91EE\n0xD844\t0x957A\n0xD845\t0x9586\n0xD846\t0x9588\n0xD847\t0x967C\n0xD848\t0x966D\n0xD849\t0x966B\n0xD84A\t0x9671\n0xD84B\t0x966F\n0xD84C\t0x96BF\n0xD84D\t0x976A\n0xD84E\t0x9804\n0xD84F\t0x98E5\n0xD850\t0x9997\n0xD851\t0x509B\n0xD852\t0x5095\n0xD853\t0x5094\n0xD854\t0x509E\n0xD855\t0x508B\n0xD856\t0x50A3\n0xD857\t0x5083\n0xD858\t0x508C\n0xD859\t0x508E\n0xD85A\t0x509D\n0xD85B\t0x5068\n0xD85C\t0x509C\n0xD85D\t0x5092\n0xD85E\t0x5082\n0xD85F\t0x5087\n0xD860\t0x515F\n0xD861\t0x51D4\n0xD862\t0x5312\n0xD863\t0x5311\n0xD864\t0x53A4\n0xD865\t0x53A7\n0xD866\t0x5591\n0xD867\t0x55A8\n0xD868\t0x55A5\n0xD869\t0x55AD\n0xD86A\t0x5577\n0xD86B\t0x5645\n0xD86C\t0x55A2\n0xD86D\t0x5593\n0xD86E\t0x5588\n0xD86F\t0x558F\n0xD870\t0x55B5\n0xD871\t0x5581\n0xD872\t0x55A3\n0xD873\t0x5592\n0xD874\t0x55A4\n0xD875\t0x557D\n0xD876\t0x558C\n0xD877\t0x55A6\n0xD878\t0x557F\n0xD879\t0x5595\n0xD87A\t0x55A1\n0xD87B\t0x558E\n0xD87C\t0x570C\n0xD87D\t0x5829\n0xD87E\t0x5837\n0xD8A1\t0x5819\n0xD8A2\t0x581E\n0xD8A3\t0x5827\n0xD8A4\t0x5823\n0xD8A5\t0x5828\n0xD8A6\t0x57F5\n0xD8A7\t0x5848\n0xD8A8\t0x5825\n0xD8A9\t0x581C\n0xD8AA\t0x581B\n0xD8AB\t0x5833\n0xD8AC\t0x583F\n0xD8AD\t0x5836\n0xD8AE\t0x582E\n0xD8AF\t0x5839\n0xD8B0\t0x5838\n0xD8B1\t0x582D\n0xD8B2\t0x582C\n0xD8B3\t0x583B\n0xD8B4\t0x5961\n0xD8B5\t0x5AAF\n0xD8B6\t0x5A94\n0xD8B7\t0x5A9F\n0xD8B8\t0x5A7A\n0xD8B9\t0x5AA2\n0xD8BA\t0x5A9E\n0xD8BB\t0x5A78\n0xD8BC\t0x5AA6\n0xD8BD\t0x5A7C\n0xD8BE\t0x5AA5\n0xD8BF\t0x5AAC\n0xD8C0\t0x5A95\n0xD8C1\t0x5AAE\n0xD8C2\t0x5A37\n0xD8C3\t0x5A84\n0xD8C4\t0x5A8A\n0xD8C5\t0x5A97\n0xD8C6\t0x5A83\n0xD8C7\t0x5A8B\n0xD8C8\t0x5AA9\n0xD8C9\t0x5A7B\n0xD8CA\t0x5A7D\n0xD8CB\t0x5A8C\n0xD8CC\t0x5A9C\n0xD8CD\t0x5A8F\n0xD8CE\t0x5A93\n0xD8CF\t0x5A9D\n0xD8D0\t0x5BEA\n0xD8D1\t0x5BCD\n0xD8D2\t0x5BCB\n0xD8D3\t0x5BD4\n0xD8D4\t0x5BD1\n0xD8D5\t0x5BCA\n0xD8D6\t0x5BCE\n0xD8D7\t0x5C0C\n0xD8D8\t0x5C30\n0xD8D9\t0x5D37\n0xD8DA\t0x5D43\n0xD8DB\t0x5D6B\n0xD8DC\t0x5D41\n0xD8DD\t0x5D4B\n0xD8DE\t0x5D3F\n0xD8DF\t0x5D35\n0xD8E0\t0x5D51\n0xD8E1\t0x5D4E\n0xD8E2\t0x5D55\n0xD8E3\t0x5D33\n0xD8E4\t0x5D3A\n0xD8E5\t0x5D52\n0xD8E6\t0x5D3D\n0xD8E7\t0x5D31\n0xD8E8\t0x5D59\n0xD8E9\t0x5D42\n0xD8EA\t0x5D39\n0xD8EB\t0x5D49\n0xD8EC\t0x5D38\n0xD8ED\t0x5D3C\n0xD8EE\t0x5D32\n0xD8EF\t0x5D36\n0xD8F0\t0x5D40\n0xD8F1\t0x5D45\n0xD8F2\t0x5E44\n0xD8F3\t0x5E41\n0xD8F4\t0x5F58\n0xD8F5\t0x5FA6\n0xD8F6\t0x5FA5\n0xD8F7\t0x5FAB\n0xD8F8\t0x60C9\n0xD8F9\t0x60B9\n0xD8FA\t0x60CC\n0xD8FB\t0x60E2\n0xD8FC\t0x60CE\n0xD8FD\t0x60C4\n0xD8FE\t0x6114\n0xD940\t0x60F2\n0xD941\t0x610A\n0xD942\t0x6116\n0xD943\t0x6105\n0xD944\t0x60F5\n0xD945\t0x6113\n0xD946\t0x60F8\n0xD947\t0x60FC\n0xD948\t0x60FE\n0xD949\t0x60C1\n0xD94A\t0x6103\n0xD94B\t0x6118\n0xD94C\t0x611D\n0xD94D\t0x6110\n0xD94E\t0x60FF\n0xD94F\t0x6104\n0xD950\t0x610B\n0xD951\t0x624A\n0xD952\t0x6394\n0xD953\t0x63B1\n0xD954\t0x63B0\n0xD955\t0x63CE\n0xD956\t0x63E5\n0xD957\t0x63E8\n0xD958\t0x63EF\n0xD959\t0x63C3\n0xD95A\t0x649D\n0xD95B\t0x63F3\n0xD95C\t0x63CA\n0xD95D\t0x63E0\n0xD95E\t0x63F6\n0xD95F\t0x63D5\n0xD960\t0x63F2\n0xD961\t0x63F5\n0xD962\t0x6461\n0xD963\t0x63DF\n0xD964\t0x63BE\n0xD965\t0x63DD\n0xD966\t0x63DC\n0xD967\t0x63C4\n0xD968\t0x63D8\n0xD969\t0x63D3\n0xD96A\t0x63C2\n0xD96B\t0x63C7\n0xD96C\t0x63CC\n0xD96D\t0x63CB\n0xD96E\t0x63C8\n0xD96F\t0x63F0\n0xD970\t0x63D7\n0xD971\t0x63D9\n0xD972\t0x6532\n0xD973\t0x6567\n0xD974\t0x656A\n0xD975\t0x6564\n0xD976\t0x655C\n0xD977\t0x6568\n0xD978\t0x6565\n0xD979\t0x658C\n0xD97A\t0x659D\n0xD97B\t0x659E\n0xD97C\t0x65AE\n0xD97D\t0x65D0\n0xD97E\t0x65D2\n0xD9A1\t0x667C\n0xD9A2\t0x666C\n0xD9A3\t0x667B\n0xD9A4\t0x6680\n0xD9A5\t0x6671\n0xD9A6\t0x6679\n0xD9A7\t0x666A\n0xD9A8\t0x6672\n0xD9A9\t0x6701\n0xD9AA\t0x690C\n0xD9AB\t0x68D3\n0xD9AC\t0x6904\n0xD9AD\t0x68DC\n0xD9AE\t0x692A\n0xD9AF\t0x68EC\n0xD9B0\t0x68EA\n0xD9B1\t0x68F1\n0xD9B2\t0x690F\n0xD9B3\t0x68D6\n0xD9B4\t0x68F7\n0xD9B5\t0x68EB\n0xD9B6\t0x68E4\n0xD9B7\t0x68F6\n0xD9B8\t0x6913\n0xD9B9\t0x6910\n0xD9BA\t0x68F3\n0xD9BB\t0x68E1\n0xD9BC\t0x6907\n0xD9BD\t0x68CC\n0xD9BE\t0x6908\n0xD9BF\t0x6970\n0xD9C0\t0x68B4\n0xD9C1\t0x6911\n0xD9C2\t0x68EF\n0xD9C3\t0x68C6\n0xD9C4\t0x6914\n0xD9C5\t0x68F8\n0xD9C6\t0x68D0\n0xD9C7\t0x68FD\n0xD9C8\t0x68FC\n0xD9C9\t0x68E8\n0xD9CA\t0x690B\n0xD9CB\t0x690A\n0xD9CC\t0x6917\n0xD9CD\t0x68CE\n0xD9CE\t0x68C8\n0xD9CF\t0x68DD\n0xD9D0\t0x68DE\n0xD9D1\t0x68E6\n0xD9D2\t0x68F4\n0xD9D3\t0x68D1\n0xD9D4\t0x6906\n0xD9D5\t0x68D4\n0xD9D6\t0x68E9\n0xD9D7\t0x6915\n0xD9D8\t0x6925\n0xD9D9\t0x68C7\n0xD9DA\t0x6B39\n0xD9DB\t0x6B3B\n0xD9DC\t0x6B3F\n0xD9DD\t0x6B3C\n0xD9DE\t0x6B94\n0xD9DF\t0x6B97\n0xD9E0\t0x6B99\n0xD9E1\t0x6B95\n0xD9E2\t0x6BBD\n0xD9E3\t0x6BF0\n0xD9E4\t0x6BF2\n0xD9E5\t0x6BF3\n0xD9E6\t0x6C30\n0xD9E7\t0x6DFC\n0xD9E8\t0x6E46\n0xD9E9\t0x6E47\n0xD9EA\t0x6E1F\n0xD9EB\t0x6E49\n0xD9EC\t0x6E88\n0xD9ED\t0x6E3C\n0xD9EE\t0x6E3D\n0xD9EF\t0x6E45\n0xD9F0\t0x6E62\n0xD9F1\t0x6E2B\n0xD9F2\t0x6E3F\n0xD9F3\t0x6E41\n0xD9F4\t0x6E5D\n0xD9F5\t0x6E73\n0xD9F6\t0x6E1C\n0xD9F7\t0x6E33\n0xD9F8\t0x6E4B\n0xD9F9\t0x6E40\n0xD9FA\t0x6E51\n0xD9FB\t0x6E3B\n0xD9FC\t0x6E03\n0xD9FD\t0x6E2E\n0xD9FE\t0x6E5E\n0xDA40\t0x6E68\n0xDA41\t0x6E5C\n0xDA42\t0x6E61\n0xDA43\t0x6E31\n0xDA44\t0x6E28\n0xDA45\t0x6E60\n0xDA46\t0x6E71\n0xDA47\t0x6E6B\n0xDA48\t0x6E39\n0xDA49\t0x6E22\n0xDA4A\t0x6E30\n0xDA4B\t0x6E53\n0xDA4C\t0x6E65\n0xDA4D\t0x6E27\n0xDA4E\t0x6E78\n0xDA4F\t0x6E64\n0xDA50\t0x6E77\n0xDA51\t0x6E55\n0xDA52\t0x6E79\n0xDA53\t0x6E52\n0xDA54\t0x6E66\n0xDA55\t0x6E35\n0xDA56\t0x6E36\n0xDA57\t0x6E5A\n0xDA58\t0x7120\n0xDA59\t0x711E\n0xDA5A\t0x712F\n0xDA5B\t0x70FB\n0xDA5C\t0x712E\n0xDA5D\t0x7131\n0xDA5E\t0x7123\n0xDA5F\t0x7125\n0xDA60\t0x7122\n0xDA61\t0x7132\n0xDA62\t0x711F\n0xDA63\t0x7128\n0xDA64\t0x713A\n0xDA65\t0x711B\n0xDA66\t0x724B\n0xDA67\t0x725A\n0xDA68\t0x7288\n0xDA69\t0x7289\n0xDA6A\t0x7286\n0xDA6B\t0x7285\n0xDA6C\t0x728B\n0xDA6D\t0x7312\n0xDA6E\t0x730B\n0xDA6F\t0x7330\n0xDA70\t0x7322\n0xDA71\t0x7331\n0xDA72\t0x7333\n0xDA73\t0x7327\n0xDA74\t0x7332\n0xDA75\t0x732D\n0xDA76\t0x7326\n0xDA77\t0x7323\n0xDA78\t0x7335\n0xDA79\t0x730C\n0xDA7A\t0x742E\n0xDA7B\t0x742C\n0xDA7C\t0x7430\n0xDA7D\t0x742B\n0xDA7E\t0x7416\n0xDAA1\t0x741A\n0xDAA2\t0x7421\n0xDAA3\t0x742D\n0xDAA4\t0x7431\n0xDAA5\t0x7424\n0xDAA6\t0x7423\n0xDAA7\t0x741D\n0xDAA8\t0x7429\n0xDAA9\t0x7420\n0xDAAA\t0x7432\n0xDAAB\t0x74FB\n0xDAAC\t0x752F\n0xDAAD\t0x756F\n0xDAAE\t0x756C\n0xDAAF\t0x75E7\n0xDAB0\t0x75DA\n0xDAB1\t0x75E1\n0xDAB2\t0x75E6\n0xDAB3\t0x75DD\n0xDAB4\t0x75DF\n0xDAB5\t0x75E4\n0xDAB6\t0x75D7\n0xDAB7\t0x7695\n0xDAB8\t0x7692\n0xDAB9\t0x76DA\n0xDABA\t0x7746\n0xDABB\t0x7747\n0xDABC\t0x7744\n0xDABD\t0x774D\n0xDABE\t0x7745\n0xDABF\t0x774A\n0xDAC0\t0x774E\n0xDAC1\t0x774B\n0xDAC2\t0x774C\n0xDAC3\t0x77DE\n0xDAC4\t0x77EC\n0xDAC5\t0x7860\n0xDAC6\t0x7864\n0xDAC7\t0x7865\n0xDAC8\t0x785C\n0xDAC9\t0x786D\n0xDACA\t0x7871\n0xDACB\t0x786A\n0xDACC\t0x786E\n0xDACD\t0x7870\n0xDACE\t0x7869\n0xDACF\t0x7868\n0xDAD0\t0x785E\n0xDAD1\t0x7862\n0xDAD2\t0x7974\n0xDAD3\t0x7973\n0xDAD4\t0x7972\n0xDAD5\t0x7970\n0xDAD6\t0x7A02\n0xDAD7\t0x7A0A\n0xDAD8\t0x7A03\n0xDAD9\t0x7A0C\n0xDADA\t0x7A04\n0xDADB\t0x7A99\n0xDADC\t0x7AE6\n0xDADD\t0x7AE4\n0xDADE\t0x7B4A\n0xDADF\t0x7B3B\n0xDAE0\t0x7B44\n0xDAE1\t0x7B48\n0xDAE2\t0x7B4C\n0xDAE3\t0x7B4E\n0xDAE4\t0x7B40\n0xDAE5\t0x7B58\n0xDAE6\t0x7B45\n0xDAE7\t0x7CA2\n0xDAE8\t0x7C9E\n0xDAE9\t0x7CA8\n0xDAEA\t0x7CA1\n0xDAEB\t0x7D58\n0xDAEC\t0x7D6F\n0xDAED\t0x7D63\n0xDAEE\t0x7D53\n0xDAEF\t0x7D56\n0xDAF0\t0x7D67\n0xDAF1\t0x7D6A\n0xDAF2\t0x7D4F\n0xDAF3\t0x7D6D\n0xDAF4\t0x7D5C\n0xDAF5\t0x7D6B\n0xDAF6\t0x7D52\n0xDAF7\t0x7D54\n0xDAF8\t0x7D69\n0xDAF9\t0x7D51\n0xDAFA\t0x7D5F\n0xDAFB\t0x7D4E\n0xDAFC\t0x7F3E\n0xDAFD\t0x7F3F\n0xDAFE\t0x7F65\n0xDB40\t0x7F66\n0xDB41\t0x7FA2\n0xDB42\t0x7FA0\n0xDB43\t0x7FA1\n0xDB44\t0x7FD7\n0xDB45\t0x8051\n0xDB46\t0x804F\n0xDB47\t0x8050\n0xDB48\t0x80FE\n0xDB49\t0x80D4\n0xDB4A\t0x8143\n0xDB4B\t0x814A\n0xDB4C\t0x8152\n0xDB4D\t0x814F\n0xDB4E\t0x8147\n0xDB4F\t0x813D\n0xDB50\t0x814D\n0xDB51\t0x813A\n0xDB52\t0x81E6\n0xDB53\t0x81EE\n0xDB54\t0x81F7\n0xDB55\t0x81F8\n0xDB56\t0x81F9\n0xDB57\t0x8204\n0xDB58\t0x823C\n0xDB59\t0x823D\n0xDB5A\t0x823F\n0xDB5B\t0x8275\n0xDB5C\t0x833B\n0xDB5D\t0x83CF\n0xDB5E\t0x83F9\n0xDB5F\t0x8423\n0xDB60\t0x83C0\n0xDB61\t0x83E8\n0xDB62\t0x8412\n0xDB63\t0x83E7\n0xDB64\t0x83E4\n0xDB65\t0x83FC\n0xDB66\t0x83F6\n0xDB67\t0x8410\n0xDB68\t0x83C6\n0xDB69\t0x83C8\n0xDB6A\t0x83EB\n0xDB6B\t0x83E3\n0xDB6C\t0x83BF\n0xDB6D\t0x8401\n0xDB6E\t0x83DD\n0xDB6F\t0x83E5\n0xDB70\t0x83D8\n0xDB71\t0x83FF\n0xDB72\t0x83E1\n0xDB73\t0x83CB\n0xDB74\t0x83CE\n0xDB75\t0x83D6\n0xDB76\t0x83F5\n0xDB77\t0x83C9\n0xDB78\t0x8409\n0xDB79\t0x840F\n0xDB7A\t0x83DE\n0xDB7B\t0x8411\n0xDB7C\t0x8406\n0xDB7D\t0x83C2\n0xDB7E\t0x83F3\n0xDBA1\t0x83D5\n0xDBA2\t0x83FA\n0xDBA3\t0x83C7\n0xDBA4\t0x83D1\n0xDBA5\t0x83EA\n0xDBA6\t0x8413\n0xDBA7\t0x83C3\n0xDBA8\t0x83EC\n0xDBA9\t0x83EE\n0xDBAA\t0x83C4\n0xDBAB\t0x83FB\n0xDBAC\t0x83D7\n0xDBAD\t0x83E2\n0xDBAE\t0x841B\n0xDBAF\t0x83DB\n0xDBB0\t0x83FE\n0xDBB1\t0x86D8\n0xDBB2\t0x86E2\n0xDBB3\t0x86E6\n0xDBB4\t0x86D3\n0xDBB5\t0x86E3\n0xDBB6\t0x86DA\n0xDBB7\t0x86EA\n0xDBB8\t0x86DD\n0xDBB9\t0x86EB\n0xDBBA\t0x86DC\n0xDBBB\t0x86EC\n0xDBBC\t0x86E9\n0xDBBD\t0x86D7\n0xDBBE\t0x86E8\n0xDBBF\t0x86D1\n0xDBC0\t0x8848\n0xDBC1\t0x8856\n0xDBC2\t0x8855\n0xDBC3\t0x88BA\n0xDBC4\t0x88D7\n0xDBC5\t0x88B9\n0xDBC6\t0x88B8\n0xDBC7\t0x88C0\n0xDBC8\t0x88BE\n0xDBC9\t0x88B6\n0xDBCA\t0x88BC\n0xDBCB\t0x88B7\n0xDBCC\t0x88BD\n0xDBCD\t0x88B2\n0xDBCE\t0x8901\n0xDBCF\t0x88C9\n0xDBD0\t0x8995\n0xDBD1\t0x8998\n0xDBD2\t0x8997\n0xDBD3\t0x89DD\n0xDBD4\t0x89DA\n0xDBD5\t0x89DB\n0xDBD6\t0x8A4E\n0xDBD7\t0x8A4D\n0xDBD8\t0x8A39\n0xDBD9\t0x8A59\n0xDBDA\t0x8A40\n0xDBDB\t0x8A57\n0xDBDC\t0x8A58\n0xDBDD\t0x8A44\n0xDBDE\t0x8A45\n0xDBDF\t0x8A52\n0xDBE0\t0x8A48\n0xDBE1\t0x8A51\n0xDBE2\t0x8A4A\n0xDBE3\t0x8A4C\n0xDBE4\t0x8A4F\n0xDBE5\t0x8C5F\n0xDBE6\t0x8C81\n0xDBE7\t0x8C80\n0xDBE8\t0x8CBA\n0xDBE9\t0x8CBE\n0xDBEA\t0x8CB0\n0xDBEB\t0x8CB9\n0xDBEC\t0x8CB5\n0xDBED\t0x8D84\n0xDBEE\t0x8D80\n0xDBEF\t0x8D89\n0xDBF0\t0x8DD8\n0xDBF1\t0x8DD3\n0xDBF2\t0x8DCD\n0xDBF3\t0x8DC7\n0xDBF4\t0x8DD6\n0xDBF5\t0x8DDC\n0xDBF6\t0x8DCF\n0xDBF7\t0x8DD5\n0xDBF8\t0x8DD9\n0xDBF9\t0x8DC8\n0xDBFA\t0x8DD7\n0xDBFB\t0x8DC5\n0xDBFC\t0x8EEF\n0xDBFD\t0x8EF7\n0xDBFE\t0x8EFA\n0xDC40\t0x8EF9\n0xDC41\t0x8EE6\n0xDC42\t0x8EEE\n0xDC43\t0x8EE5\n0xDC44\t0x8EF5\n0xDC45\t0x8EE7\n0xDC46\t0x8EE8\n0xDC47\t0x8EF6\n0xDC48\t0x8EEB\n0xDC49\t0x8EF1\n0xDC4A\t0x8EEC\n0xDC4B\t0x8EF4\n0xDC4C\t0x8EE9\n0xDC4D\t0x902D\n0xDC4E\t0x9034\n0xDC4F\t0x902F\n0xDC50\t0x9106\n0xDC51\t0x912C\n0xDC52\t0x9104\n0xDC53\t0x90FF\n0xDC54\t0x90FC\n0xDC55\t0x9108\n0xDC56\t0x90F9\n0xDC57\t0x90FB\n0xDC58\t0x9101\n0xDC59\t0x9100\n0xDC5A\t0x9107\n0xDC5B\t0x9105\n0xDC5C\t0x9103\n0xDC5D\t0x9161\n0xDC5E\t0x9164\n0xDC5F\t0x915F\n0xDC60\t0x9162\n0xDC61\t0x9160\n0xDC62\t0x9201\n0xDC63\t0x920A\n0xDC64\t0x9225\n0xDC65\t0x9203\n0xDC66\t0x921A\n0xDC67\t0x9226\n0xDC68\t0x920F\n0xDC69\t0x920C\n0xDC6A\t0x9200\n0xDC6B\t0x9212\n0xDC6C\t0x91FF\n0xDC6D\t0x91FD\n0xDC6E\t0x9206\n0xDC6F\t0x9204\n0xDC70\t0x9227\n0xDC71\t0x9202\n0xDC72\t0x921C\n0xDC73\t0x9224\n0xDC74\t0x9219\n0xDC75\t0x9217\n0xDC76\t0x9205\n0xDC77\t0x9216\n0xDC78\t0x957B\n0xDC79\t0x958D\n0xDC7A\t0x958C\n0xDC7B\t0x9590\n0xDC7C\t0x9687\n0xDC7D\t0x967E\n0xDC7E\t0x9688\n0xDCA1\t0x9689\n0xDCA2\t0x9683\n0xDCA3\t0x9680\n0xDCA4\t0x96C2\n0xDCA5\t0x96C8\n0xDCA6\t0x96C3\n0xDCA7\t0x96F1\n0xDCA8\t0x96F0\n0xDCA9\t0x976C\n0xDCAA\t0x9770\n0xDCAB\t0x976E\n0xDCAC\t0x9807\n0xDCAD\t0x98A9\n0xDCAE\t0x98EB\n0xDCAF\t0x9CE6\n0xDCB0\t0x9EF9\n0xDCB1\t0x4E83\n0xDCB2\t0x4E84\n0xDCB3\t0x4EB6\n0xDCB4\t0x50BD\n0xDCB5\t0x50BF\n0xDCB6\t0x50C6\n0xDCB7\t0x50AE\n0xDCB8\t0x50C4\n0xDCB9\t0x50CA\n0xDCBA\t0x50B4\n0xDCBB\t0x50C8\n0xDCBC\t0x50C2\n0xDCBD\t0x50B0\n0xDCBE\t0x50C1\n0xDCBF\t0x50BA\n0xDCC0\t0x50B1\n0xDCC1\t0x50CB\n0xDCC2\t0x50C9\n0xDCC3\t0x50B6\n0xDCC4\t0x50B8\n0xDCC5\t0x51D7\n0xDCC6\t0x527A\n0xDCC7\t0x5278\n0xDCC8\t0x527B\n0xDCC9\t0x527C\n0xDCCA\t0x55C3\n0xDCCB\t0x55DB\n0xDCCC\t0x55CC\n0xDCCD\t0x55D0\n0xDCCE\t0x55CB\n0xDCCF\t0x55CA\n0xDCD0\t0x55DD\n0xDCD1\t0x55C0\n0xDCD2\t0x55D4\n0xDCD3\t0x55C4\n0xDCD4\t0x55E9\n0xDCD5\t0x55BF\n0xDCD6\t0x55D2\n0xDCD7\t0x558D\n0xDCD8\t0x55CF\n0xDCD9\t0x55D5\n0xDCDA\t0x55E2\n0xDCDB\t0x55D6\n0xDCDC\t0x55C8\n0xDCDD\t0x55F2\n0xDCDE\t0x55CD\n0xDCDF\t0x55D9\n0xDCE0\t0x55C2\n0xDCE1\t0x5714\n0xDCE2\t0x5853\n0xDCE3\t0x5868\n0xDCE4\t0x5864\n0xDCE5\t0x584F\n0xDCE6\t0x584D\n0xDCE7\t0x5849\n0xDCE8\t0x586F\n0xDCE9\t0x5855\n0xDCEA\t0x584E\n0xDCEB\t0x585D\n0xDCEC\t0x5859\n0xDCED\t0x5865\n0xDCEE\t0x585B\n0xDCEF\t0x583D\n0xDCF0\t0x5863\n0xDCF1\t0x5871\n0xDCF2\t0x58FC\n0xDCF3\t0x5AC7\n0xDCF4\t0x5AC4\n0xDCF5\t0x5ACB\n0xDCF6\t0x5ABA\n0xDCF7\t0x5AB8\n0xDCF8\t0x5AB1\n0xDCF9\t0x5AB5\n0xDCFA\t0x5AB0\n0xDCFB\t0x5ABF\n0xDCFC\t0x5AC8\n0xDCFD\t0x5ABB\n0xDCFE\t0x5AC6\n0xDD40\t0x5AB7\n0xDD41\t0x5AC0\n0xDD42\t0x5ACA\n0xDD43\t0x5AB4\n0xDD44\t0x5AB6\n0xDD45\t0x5ACD\n0xDD46\t0x5AB9\n0xDD47\t0x5A90\n0xDD48\t0x5BD6\n0xDD49\t0x5BD8\n0xDD4A\t0x5BD9\n0xDD4B\t0x5C1F\n0xDD4C\t0x5C33\n0xDD4D\t0x5D71\n0xDD4E\t0x5D63\n0xDD4F\t0x5D4A\n0xDD50\t0x5D65\n0xDD51\t0x5D72\n0xDD52\t0x5D6C\n0xDD53\t0x5D5E\n0xDD54\t0x5D68\n0xDD55\t0x5D67\n0xDD56\t0x5D62\n0xDD57\t0x5DF0\n0xDD58\t0x5E4F\n0xDD59\t0x5E4E\n0xDD5A\t0x5E4A\n0xDD5B\t0x5E4D\n0xDD5C\t0x5E4B\n0xDD5D\t0x5EC5\n0xDD5E\t0x5ECC\n0xDD5F\t0x5EC6\n0xDD60\t0x5ECB\n0xDD61\t0x5EC7\n0xDD62\t0x5F40\n0xDD63\t0x5FAF\n0xDD64\t0x5FAD\n0xDD65\t0x60F7\n0xDD66\t0x6149\n0xDD67\t0x614A\n0xDD68\t0x612B\n0xDD69\t0x6145\n0xDD6A\t0x6136\n0xDD6B\t0x6132\n0xDD6C\t0x612E\n0xDD6D\t0x6146\n0xDD6E\t0x612F\n0xDD6F\t0x614F\n0xDD70\t0x6129\n0xDD71\t0x6140\n0xDD72\t0x6220\n0xDD73\t0x9168\n0xDD74\t0x6223\n0xDD75\t0x6225\n0xDD76\t0x6224\n0xDD77\t0x63C5\n0xDD78\t0x63F1\n0xDD79\t0x63EB\n0xDD7A\t0x6410\n0xDD7B\t0x6412\n0xDD7C\t0x6409\n0xDD7D\t0x6420\n0xDD7E\t0x6424\n0xDDA1\t0x6433\n0xDDA2\t0x6443\n0xDDA3\t0x641F\n0xDDA4\t0x6415\n0xDDA5\t0x6418\n0xDDA6\t0x6439\n0xDDA7\t0x6437\n0xDDA8\t0x6422\n0xDDA9\t0x6423\n0xDDAA\t0x640C\n0xDDAB\t0x6426\n0xDDAC\t0x6430\n0xDDAD\t0x6428\n0xDDAE\t0x6441\n0xDDAF\t0x6435\n0xDDB0\t0x642F\n0xDDB1\t0x640A\n0xDDB2\t0x641A\n0xDDB3\t0x6440\n0xDDB4\t0x6425\n0xDDB5\t0x6427\n0xDDB6\t0x640B\n0xDDB7\t0x63E7\n0xDDB8\t0x641B\n0xDDB9\t0x642E\n0xDDBA\t0x6421\n0xDDBB\t0x640E\n0xDDBC\t0x656F\n0xDDBD\t0x6592\n0xDDBE\t0x65D3\n0xDDBF\t0x6686\n0xDDC0\t0x668C\n0xDDC1\t0x6695\n0xDDC2\t0x6690\n0xDDC3\t0x668B\n0xDDC4\t0x668A\n0xDDC5\t0x6699\n0xDDC6\t0x6694\n0xDDC7\t0x6678\n0xDDC8\t0x6720\n0xDDC9\t0x6966\n0xDDCA\t0x695F\n0xDDCB\t0x6938\n0xDDCC\t0x694E\n0xDDCD\t0x6962\n0xDDCE\t0x6971\n0xDDCF\t0x693F\n0xDDD0\t0x6945\n0xDDD1\t0x696A\n0xDDD2\t0x6939\n0xDDD3\t0x6942\n0xDDD4\t0x6957\n0xDDD5\t0x6959\n0xDDD6\t0x697A\n0xDDD7\t0x6948\n0xDDD8\t0x6949\n0xDDD9\t0x6935\n0xDDDA\t0x696C\n0xDDDB\t0x6933\n0xDDDC\t0x693D\n0xDDDD\t0x6965\n0xDDDE\t0x68F0\n0xDDDF\t0x6978\n0xDDE0\t0x6934\n0xDDE1\t0x6969\n0xDDE2\t0x6940\n0xDDE3\t0x696F\n0xDDE4\t0x6944\n0xDDE5\t0x6976\n0xDDE6\t0x6958\n0xDDE7\t0x6941\n0xDDE8\t0x6974\n0xDDE9\t0x694C\n0xDDEA\t0x693B\n0xDDEB\t0x694B\n0xDDEC\t0x6937\n0xDDED\t0x695C\n0xDDEE\t0x694F\n0xDDEF\t0x6951\n0xDDF0\t0x6932\n0xDDF1\t0x6952\n0xDDF2\t0x692F\n0xDDF3\t0x697B\n0xDDF4\t0x693C\n0xDDF5\t0x6B46\n0xDDF6\t0x6B45\n0xDDF7\t0x6B43\n0xDDF8\t0x6B42\n0xDDF9\t0x6B48\n0xDDFA\t0x6B41\n0xDDFB\t0x6B9B\n0xDDFC\t0xFA0D\n0xDDFD\t0x6BFB\n0xDDFE\t0x6BFC\n0xDE40\t0x6BF9\n0xDE41\t0x6BF7\n0xDE42\t0x6BF8\n0xDE43\t0x6E9B\n0xDE44\t0x6ED6\n0xDE45\t0x6EC8\n0xDE46\t0x6E8F\n0xDE47\t0x6EC0\n0xDE48\t0x6E9F\n0xDE49\t0x6E93\n0xDE4A\t0x6E94\n0xDE4B\t0x6EA0\n0xDE4C\t0x6EB1\n0xDE4D\t0x6EB9\n0xDE4E\t0x6EC6\n0xDE4F\t0x6ED2\n0xDE50\t0x6EBD\n0xDE51\t0x6EC1\n0xDE52\t0x6E9E\n0xDE53\t0x6EC9\n0xDE54\t0x6EB7\n0xDE55\t0x6EB0\n0xDE56\t0x6ECD\n0xDE57\t0x6EA6\n0xDE58\t0x6ECF\n0xDE59\t0x6EB2\n0xDE5A\t0x6EBE\n0xDE5B\t0x6EC3\n0xDE5C\t0x6EDC\n0xDE5D\t0x6ED8\n0xDE5E\t0x6E99\n0xDE5F\t0x6E92\n0xDE60\t0x6E8E\n0xDE61\t0x6E8D\n0xDE62\t0x6EA4\n0xDE63\t0x6EA1\n0xDE64\t0x6EBF\n0xDE65\t0x6EB3\n0xDE66\t0x6ED0\n0xDE67\t0x6ECA\n0xDE68\t0x6E97\n0xDE69\t0x6EAE\n0xDE6A\t0x6EA3\n0xDE6B\t0x7147\n0xDE6C\t0x7154\n0xDE6D\t0x7152\n0xDE6E\t0x7163\n0xDE6F\t0x7160\n0xDE70\t0x7141\n0xDE71\t0x715D\n0xDE72\t0x7162\n0xDE73\t0x7172\n0xDE74\t0x7178\n0xDE75\t0x716A\n0xDE76\t0x7161\n0xDE77\t0x7142\n0xDE78\t0x7158\n0xDE79\t0x7143\n0xDE7A\t0x714B\n0xDE7B\t0x7170\n0xDE7C\t0x715F\n0xDE7D\t0x7150\n0xDE7E\t0x7153\n0xDEA1\t0x7144\n0xDEA2\t0x714D\n0xDEA3\t0x715A\n0xDEA4\t0x724F\n0xDEA5\t0x728D\n0xDEA6\t0x728C\n0xDEA7\t0x7291\n0xDEA8\t0x7290\n0xDEA9\t0x728E\n0xDEAA\t0x733C\n0xDEAB\t0x7342\n0xDEAC\t0x733B\n0xDEAD\t0x733A\n0xDEAE\t0x7340\n0xDEAF\t0x734A\n0xDEB0\t0x7349\n0xDEB1\t0x7444\n0xDEB2\t0x744A\n0xDEB3\t0x744B\n0xDEB4\t0x7452\n0xDEB5\t0x7451\n0xDEB6\t0x7457\n0xDEB7\t0x7440\n0xDEB8\t0x744F\n0xDEB9\t0x7450\n0xDEBA\t0x744E\n0xDEBB\t0x7442\n0xDEBC\t0x7446\n0xDEBD\t0x744D\n0xDEBE\t0x7454\n0xDEBF\t0x74E1\n0xDEC0\t0x74FF\n0xDEC1\t0x74FE\n0xDEC2\t0x74FD\n0xDEC3\t0x751D\n0xDEC4\t0x7579\n0xDEC5\t0x7577\n0xDEC6\t0x6983\n0xDEC7\t0x75EF\n0xDEC8\t0x760F\n0xDEC9\t0x7603\n0xDECA\t0x75F7\n0xDECB\t0x75FE\n0xDECC\t0x75FC\n0xDECD\t0x75F9\n0xDECE\t0x75F8\n0xDECF\t0x7610\n0xDED0\t0x75FB\n0xDED1\t0x75F6\n0xDED2\t0x75ED\n0xDED3\t0x75F5\n0xDED4\t0x75FD\n0xDED5\t0x7699\n0xDED6\t0x76B5\n0xDED7\t0x76DD\n0xDED8\t0x7755\n0xDED9\t0x775F\n0xDEDA\t0x7760\n0xDEDB\t0x7752\n0xDEDC\t0x7756\n0xDEDD\t0x775A\n0xDEDE\t0x7769\n0xDEDF\t0x7767\n0xDEE0\t0x7754\n0xDEE1\t0x7759\n0xDEE2\t0x776D\n0xDEE3\t0x77E0\n0xDEE4\t0x7887\n0xDEE5\t0x789A\n0xDEE6\t0x7894\n0xDEE7\t0x788F\n0xDEE8\t0x7884\n0xDEE9\t0x7895\n0xDEEA\t0x7885\n0xDEEB\t0x7886\n0xDEEC\t0x78A1\n0xDEED\t0x7883\n0xDEEE\t0x7879\n0xDEEF\t0x7899\n0xDEF0\t0x7880\n0xDEF1\t0x7896\n0xDEF2\t0x787B\n0xDEF3\t0x797C\n0xDEF4\t0x7982\n0xDEF5\t0x797D\n0xDEF6\t0x7979\n0xDEF7\t0x7A11\n0xDEF8\t0x7A18\n0xDEF9\t0x7A19\n0xDEFA\t0x7A12\n0xDEFB\t0x7A17\n0xDEFC\t0x7A15\n0xDEFD\t0x7A22\n0xDEFE\t0x7A13\n0xDF40\t0x7A1B\n0xDF41\t0x7A10\n0xDF42\t0x7AA3\n0xDF43\t0x7AA2\n0xDF44\t0x7A9E\n0xDF45\t0x7AEB\n0xDF46\t0x7B66\n0xDF47\t0x7B64\n0xDF48\t0x7B6D\n0xDF49\t0x7B74\n0xDF4A\t0x7B69\n0xDF4B\t0x7B72\n0xDF4C\t0x7B65\n0xDF4D\t0x7B73\n0xDF4E\t0x7B71\n0xDF4F\t0x7B70\n0xDF50\t0x7B61\n0xDF51\t0x7B78\n0xDF52\t0x7B76\n0xDF53\t0x7B63\n0xDF54\t0x7CB2\n0xDF55\t0x7CB4\n0xDF56\t0x7CAF\n0xDF57\t0x7D88\n0xDF58\t0x7D86\n0xDF59\t0x7D80\n0xDF5A\t0x7D8D\n0xDF5B\t0x7D7F\n0xDF5C\t0x7D85\n0xDF5D\t0x7D7A\n0xDF5E\t0x7D8E\n0xDF5F\t0x7D7B\n0xDF60\t0x7D83\n0xDF61\t0x7D7C\n0xDF62\t0x7D8C\n0xDF63\t0x7D94\n0xDF64\t0x7D84\n0xDF65\t0x7D7D\n0xDF66\t0x7D92\n0xDF67\t0x7F6D\n0xDF68\t0x7F6B\n0xDF69\t0x7F67\n0xDF6A\t0x7F68\n0xDF6B\t0x7F6C\n0xDF6C\t0x7FA6\n0xDF6D\t0x7FA5\n0xDF6E\t0x7FA7\n0xDF6F\t0x7FDB\n0xDF70\t0x7FDC\n0xDF71\t0x8021\n0xDF72\t0x8164\n0xDF73\t0x8160\n0xDF74\t0x8177\n0xDF75\t0x815C\n0xDF76\t0x8169\n0xDF77\t0x815B\n0xDF78\t0x8162\n0xDF79\t0x8172\n0xDF7A\t0x6721\n0xDF7B\t0x815E\n0xDF7C\t0x8176\n0xDF7D\t0x8167\n0xDF7E\t0x816F\n0xDFA1\t0x8144\n0xDFA2\t0x8161\n0xDFA3\t0x821D\n0xDFA4\t0x8249\n0xDFA5\t0x8244\n0xDFA6\t0x8240\n0xDFA7\t0x8242\n0xDFA8\t0x8245\n0xDFA9\t0x84F1\n0xDFAA\t0x843F\n0xDFAB\t0x8456\n0xDFAC\t0x8476\n0xDFAD\t0x8479\n0xDFAE\t0x848F\n0xDFAF\t0x848D\n0xDFB0\t0x8465\n0xDFB1\t0x8451\n0xDFB2\t0x8440\n0xDFB3\t0x8486\n0xDFB4\t0x8467\n0xDFB5\t0x8430\n0xDFB6\t0x844D\n0xDFB7\t0x847D\n0xDFB8\t0x845A\n0xDFB9\t0x8459\n0xDFBA\t0x8474\n0xDFBB\t0x8473\n0xDFBC\t0x845D\n0xDFBD\t0x8507\n0xDFBE\t0x845E\n0xDFBF\t0x8437\n0xDFC0\t0x843A\n0xDFC1\t0x8434\n0xDFC2\t0x847A\n0xDFC3\t0x8443\n0xDFC4\t0x8478\n0xDFC5\t0x8432\n0xDFC6\t0x8445\n0xDFC7\t0x8429\n0xDFC8\t0x83D9\n0xDFC9\t0x844B\n0xDFCA\t0x842F\n0xDFCB\t0x8442\n0xDFCC\t0x842D\n0xDFCD\t0x845F\n0xDFCE\t0x8470\n0xDFCF\t0x8439\n0xDFD0\t0x844E\n0xDFD1\t0x844C\n0xDFD2\t0x8452\n0xDFD3\t0x846F\n0xDFD4\t0x84C5\n0xDFD5\t0x848E\n0xDFD6\t0x843B\n0xDFD7\t0x8447\n0xDFD8\t0x8436\n0xDFD9\t0x8433\n0xDFDA\t0x8468\n0xDFDB\t0x847E\n0xDFDC\t0x8444\n0xDFDD\t0x842B\n0xDFDE\t0x8460\n0xDFDF\t0x8454\n0xDFE0\t0x846E\n0xDFE1\t0x8450\n0xDFE2\t0x870B\n0xDFE3\t0x8704\n0xDFE4\t0x86F7\n0xDFE5\t0x870C\n0xDFE6\t0x86FA\n0xDFE7\t0x86D6\n0xDFE8\t0x86F5\n0xDFE9\t0x874D\n0xDFEA\t0x86F8\n0xDFEB\t0x870E\n0xDFEC\t0x8709\n0xDFED\t0x8701\n0xDFEE\t0x86F6\n0xDFEF\t0x870D\n0xDFF0\t0x8705\n0xDFF1\t0x88D6\n0xDFF2\t0x88CB\n0xDFF3\t0x88CD\n0xDFF4\t0x88CE\n0xDFF5\t0x88DE\n0xDFF6\t0x88DB\n0xDFF7\t0x88DA\n0xDFF8\t0x88CC\n0xDFF9\t0x88D0\n0xDFFA\t0x8985\n0xDFFB\t0x899B\n0xDFFC\t0x89DF\n0xDFFD\t0x89E5\n0xDFFE\t0x89E4\n0xE040\t0x89E1\n0xE041\t0x89E0\n0xE042\t0x89E2\n0xE043\t0x89DC\n0xE044\t0x89E6\n0xE045\t0x8A76\n0xE046\t0x8A86\n0xE047\t0x8A7F\n0xE048\t0x8A61\n0xE049\t0x8A3F\n0xE04A\t0x8A77\n0xE04B\t0x8A82\n0xE04C\t0x8A84\n0xE04D\t0x8A75\n0xE04E\t0x8A83\n0xE04F\t0x8A81\n0xE050\t0x8A74\n0xE051\t0x8A7A\n0xE052\t0x8C3C\n0xE053\t0x8C4B\n0xE054\t0x8C4A\n0xE055\t0x8C65\n0xE056\t0x8C64\n0xE057\t0x8C66\n0xE058\t0x8C86\n0xE059\t0x8C84\n0xE05A\t0x8C85\n0xE05B\t0x8CCC\n0xE05C\t0x8D68\n0xE05D\t0x8D69\n0xE05E\t0x8D91\n0xE05F\t0x8D8C\n0xE060\t0x8D8E\n0xE061\t0x8D8F\n0xE062\t0x8D8D\n0xE063\t0x8D93\n0xE064\t0x8D94\n0xE065\t0x8D90\n0xE066\t0x8D92\n0xE067\t0x8DF0\n0xE068\t0x8DE0\n0xE069\t0x8DEC\n0xE06A\t0x8DF1\n0xE06B\t0x8DEE\n0xE06C\t0x8DD0\n0xE06D\t0x8DE9\n0xE06E\t0x8DE3\n0xE06F\t0x8DE2\n0xE070\t0x8DE7\n0xE071\t0x8DF2\n0xE072\t0x8DEB\n0xE073\t0x8DF4\n0xE074\t0x8F06\n0xE075\t0x8EFF\n0xE076\t0x8F01\n0xE077\t0x8F00\n0xE078\t0x8F05\n0xE079\t0x8F07\n0xE07A\t0x8F08\n0xE07B\t0x8F02\n0xE07C\t0x8F0B\n0xE07D\t0x9052\n0xE07E\t0x903F\n0xE0A1\t0x9044\n0xE0A2\t0x9049\n0xE0A3\t0x903D\n0xE0A4\t0x9110\n0xE0A5\t0x910D\n0xE0A6\t0x910F\n0xE0A7\t0x9111\n0xE0A8\t0x9116\n0xE0A9\t0x9114\n0xE0AA\t0x910B\n0xE0AB\t0x910E\n0xE0AC\t0x916E\n0xE0AD\t0x916F\n0xE0AE\t0x9248\n0xE0AF\t0x9252\n0xE0B0\t0x9230\n0xE0B1\t0x923A\n0xE0B2\t0x9266\n0xE0B3\t0x9233\n0xE0B4\t0x9265\n0xE0B5\t0x925E\n0xE0B6\t0x9283\n0xE0B7\t0x922E\n0xE0B8\t0x924A\n0xE0B9\t0x9246\n0xE0BA\t0x926D\n0xE0BB\t0x926C\n0xE0BC\t0x924F\n0xE0BD\t0x9260\n0xE0BE\t0x9267\n0xE0BF\t0x926F\n0xE0C0\t0x9236\n0xE0C1\t0x9261\n0xE0C2\t0x9270\n0xE0C3\t0x9231\n0xE0C4\t0x9254\n0xE0C5\t0x9263\n0xE0C6\t0x9250\n0xE0C7\t0x9272\n0xE0C8\t0x924E\n0xE0C9\t0x9253\n0xE0CA\t0x924C\n0xE0CB\t0x9256\n0xE0CC\t0x9232\n0xE0CD\t0x959F\n0xE0CE\t0x959C\n0xE0CF\t0x959E\n0xE0D0\t0x959B\n0xE0D1\t0x9692\n0xE0D2\t0x9693\n0xE0D3\t0x9691\n0xE0D4\t0x9697\n0xE0D5\t0x96CE\n0xE0D6\t0x96FA\n0xE0D7\t0x96FD\n0xE0D8\t0x96F8\n0xE0D9\t0x96F5\n0xE0DA\t0x9773\n0xE0DB\t0x9777\n0xE0DC\t0x9778\n0xE0DD\t0x9772\n0xE0DE\t0x980F\n0xE0DF\t0x980D\n0xE0E0\t0x980E\n0xE0E1\t0x98AC\n0xE0E2\t0x98F6\n0xE0E3\t0x98F9\n0xE0E4\t0x99AF\n0xE0E5\t0x99B2\n0xE0E6\t0x99B0\n0xE0E7\t0x99B5\n0xE0E8\t0x9AAD\n0xE0E9\t0x9AAB\n0xE0EA\t0x9B5B\n0xE0EB\t0x9CEA\n0xE0EC\t0x9CED\n0xE0ED\t0x9CE7\n0xE0EE\t0x9E80\n0xE0EF\t0x9EFD\n0xE0F0\t0x50E6\n0xE0F1\t0x50D4\n0xE0F2\t0x50D7\n0xE0F3\t0x50E8\n0xE0F4\t0x50F3\n0xE0F5\t0x50DB\n0xE0F6\t0x50EA\n0xE0F7\t0x50DD\n0xE0F8\t0x50E4\n0xE0F9\t0x50D3\n0xE0FA\t0x50EC\n0xE0FB\t0x50F0\n0xE0FC\t0x50EF\n0xE0FD\t0x50E3\n0xE0FE\t0x50E0\n0xE140\t0x51D8\n0xE141\t0x5280\n0xE142\t0x5281\n0xE143\t0x52E9\n0xE144\t0x52EB\n0xE145\t0x5330\n0xE146\t0x53AC\n0xE147\t0x5627\n0xE148\t0x5615\n0xE149\t0x560C\n0xE14A\t0x5612\n0xE14B\t0x55FC\n0xE14C\t0x560F\n0xE14D\t0x561C\n0xE14E\t0x5601\n0xE14F\t0x5613\n0xE150\t0x5602\n0xE151\t0x55FA\n0xE152\t0x561D\n0xE153\t0x5604\n0xE154\t0x55FF\n0xE155\t0x55F9\n0xE156\t0x5889\n0xE157\t0x587C\n0xE158\t0x5890\n0xE159\t0x5898\n0xE15A\t0x5886\n0xE15B\t0x5881\n0xE15C\t0x587F\n0xE15D\t0x5874\n0xE15E\t0x588B\n0xE15F\t0x587A\n0xE160\t0x5887\n0xE161\t0x5891\n0xE162\t0x588E\n0xE163\t0x5876\n0xE164\t0x5882\n0xE165\t0x5888\n0xE166\t0x587B\n0xE167\t0x5894\n0xE168\t0x588F\n0xE169\t0x58FE\n0xE16A\t0x596B\n0xE16B\t0x5ADC\n0xE16C\t0x5AEE\n0xE16D\t0x5AE5\n0xE16E\t0x5AD5\n0xE16F\t0x5AEA\n0xE170\t0x5ADA\n0xE171\t0x5AED\n0xE172\t0x5AEB\n0xE173\t0x5AF3\n0xE174\t0x5AE2\n0xE175\t0x5AE0\n0xE176\t0x5ADB\n0xE177\t0x5AEC\n0xE178\t0x5ADE\n0xE179\t0x5ADD\n0xE17A\t0x5AD9\n0xE17B\t0x5AE8\n0xE17C\t0x5ADF\n0xE17D\t0x5B77\n0xE17E\t0x5BE0\n0xE1A1\t0x5BE3\n0xE1A2\t0x5C63\n0xE1A3\t0x5D82\n0xE1A4\t0x5D80\n0xE1A5\t0x5D7D\n0xE1A6\t0x5D86\n0xE1A7\t0x5D7A\n0xE1A8\t0x5D81\n0xE1A9\t0x5D77\n0xE1AA\t0x5D8A\n0xE1AB\t0x5D89\n0xE1AC\t0x5D88\n0xE1AD\t0x5D7E\n0xE1AE\t0x5D7C\n0xE1AF\t0x5D8D\n0xE1B0\t0x5D79\n0xE1B1\t0x5D7F\n0xE1B2\t0x5E58\n0xE1B3\t0x5E59\n0xE1B4\t0x5E53\n0xE1B5\t0x5ED8\n0xE1B6\t0x5ED1\n0xE1B7\t0x5ED7\n0xE1B8\t0x5ECE\n0xE1B9\t0x5EDC\n0xE1BA\t0x5ED5\n0xE1BB\t0x5ED9\n0xE1BC\t0x5ED2\n0xE1BD\t0x5ED4\n0xE1BE\t0x5F44\n0xE1BF\t0x5F43\n0xE1C0\t0x5F6F\n0xE1C1\t0x5FB6\n0xE1C2\t0x612C\n0xE1C3\t0x6128\n0xE1C4\t0x6141\n0xE1C5\t0x615E\n0xE1C6\t0x6171\n0xE1C7\t0x6173\n0xE1C8\t0x6152\n0xE1C9\t0x6153\n0xE1CA\t0x6172\n0xE1CB\t0x616C\n0xE1CC\t0x6180\n0xE1CD\t0x6174\n0xE1CE\t0x6154\n0xE1CF\t0x617A\n0xE1D0\t0x615B\n0xE1D1\t0x6165\n0xE1D2\t0x613B\n0xE1D3\t0x616A\n0xE1D4\t0x6161\n0xE1D5\t0x6156\n0xE1D6\t0x6229\n0xE1D7\t0x6227\n0xE1D8\t0x622B\n0xE1D9\t0x642B\n0xE1DA\t0x644D\n0xE1DB\t0x645B\n0xE1DC\t0x645D\n0xE1DD\t0x6474\n0xE1DE\t0x6476\n0xE1DF\t0x6472\n0xE1E0\t0x6473\n0xE1E1\t0x647D\n0xE1E2\t0x6475\n0xE1E3\t0x6466\n0xE1E4\t0x64A6\n0xE1E5\t0x644E\n0xE1E6\t0x6482\n0xE1E7\t0x645E\n0xE1E8\t0x645C\n0xE1E9\t0x644B\n0xE1EA\t0x6453\n0xE1EB\t0x6460\n0xE1EC\t0x6450\n0xE1ED\t0x647F\n0xE1EE\t0x643F\n0xE1EF\t0x646C\n0xE1F0\t0x646B\n0xE1F1\t0x6459\n0xE1F2\t0x6465\n0xE1F3\t0x6477\n0xE1F4\t0x6573\n0xE1F5\t0x65A0\n0xE1F6\t0x66A1\n0xE1F7\t0x66A0\n0xE1F8\t0x669F\n0xE1F9\t0x6705\n0xE1FA\t0x6704\n0xE1FB\t0x6722\n0xE1FC\t0x69B1\n0xE1FD\t0x69B6\n0xE1FE\t0x69C9\n0xE240\t0x69A0\n0xE241\t0x69CE\n0xE242\t0x6996\n0xE243\t0x69B0\n0xE244\t0x69AC\n0xE245\t0x69BC\n0xE246\t0x6991\n0xE247\t0x6999\n0xE248\t0x698E\n0xE249\t0x69A7\n0xE24A\t0x698D\n0xE24B\t0x69A9\n0xE24C\t0x69BE\n0xE24D\t0x69AF\n0xE24E\t0x69BF\n0xE24F\t0x69C4\n0xE250\t0x69BD\n0xE251\t0x69A4\n0xE252\t0x69D4\n0xE253\t0x69B9\n0xE254\t0x69CA\n0xE255\t0x699A\n0xE256\t0x69CF\n0xE257\t0x69B3\n0xE258\t0x6993\n0xE259\t0x69AA\n0xE25A\t0x69A1\n0xE25B\t0x699E\n0xE25C\t0x69D9\n0xE25D\t0x6997\n0xE25E\t0x6990\n0xE25F\t0x69C2\n0xE260\t0x69B5\n0xE261\t0x69A5\n0xE262\t0x69C6\n0xE263\t0x6B4A\n0xE264\t0x6B4D\n0xE265\t0x6B4B\n0xE266\t0x6B9E\n0xE267\t0x6B9F\n0xE268\t0x6BA0\n0xE269\t0x6BC3\n0xE26A\t0x6BC4\n0xE26B\t0x6BFE\n0xE26C\t0x6ECE\n0xE26D\t0x6EF5\n0xE26E\t0x6EF1\n0xE26F\t0x6F03\n0xE270\t0x6F25\n0xE271\t0x6EF8\n0xE272\t0x6F37\n0xE273\t0x6EFB\n0xE274\t0x6F2E\n0xE275\t0x6F09\n0xE276\t0x6F4E\n0xE277\t0x6F19\n0xE278\t0x6F1A\n0xE279\t0x6F27\n0xE27A\t0x6F18\n0xE27B\t0x6F3B\n0xE27C\t0x6F12\n0xE27D\t0x6EED\n0xE27E\t0x6F0A\n0xE2A1\t0x6F36\n0xE2A2\t0x6F73\n0xE2A3\t0x6EF9\n0xE2A4\t0x6EEE\n0xE2A5\t0x6F2D\n0xE2A6\t0x6F40\n0xE2A7\t0x6F30\n0xE2A8\t0x6F3C\n0xE2A9\t0x6F35\n0xE2AA\t0x6EEB\n0xE2AB\t0x6F07\n0xE2AC\t0x6F0E\n0xE2AD\t0x6F43\n0xE2AE\t0x6F05\n0xE2AF\t0x6EFD\n0xE2B0\t0x6EF6\n0xE2B1\t0x6F39\n0xE2B2\t0x6F1C\n0xE2B3\t0x6EFC\n0xE2B4\t0x6F3A\n0xE2B5\t0x6F1F\n0xE2B6\t0x6F0D\n0xE2B7\t0x6F1E\n0xE2B8\t0x6F08\n0xE2B9\t0x6F21\n0xE2BA\t0x7187\n0xE2BB\t0x7190\n0xE2BC\t0x7189\n0xE2BD\t0x7180\n0xE2BE\t0x7185\n0xE2BF\t0x7182\n0xE2C0\t0x718F\n0xE2C1\t0x717B\n0xE2C2\t0x7186\n0xE2C3\t0x7181\n0xE2C4\t0x7197\n0xE2C5\t0x7244\n0xE2C6\t0x7253\n0xE2C7\t0x7297\n0xE2C8\t0x7295\n0xE2C9\t0x7293\n0xE2CA\t0x7343\n0xE2CB\t0x734D\n0xE2CC\t0x7351\n0xE2CD\t0x734C\n0xE2CE\t0x7462\n0xE2CF\t0x7473\n0xE2D0\t0x7471\n0xE2D1\t0x7475\n0xE2D2\t0x7472\n0xE2D3\t0x7467\n0xE2D4\t0x746E\n0xE2D5\t0x7500\n0xE2D6\t0x7502\n0xE2D7\t0x7503\n0xE2D8\t0x757D\n0xE2D9\t0x7590\n0xE2DA\t0x7616\n0xE2DB\t0x7608\n0xE2DC\t0x760C\n0xE2DD\t0x7615\n0xE2DE\t0x7611\n0xE2DF\t0x760A\n0xE2E0\t0x7614\n0xE2E1\t0x76B8\n0xE2E2\t0x7781\n0xE2E3\t0x777C\n0xE2E4\t0x7785\n0xE2E5\t0x7782\n0xE2E6\t0x776E\n0xE2E7\t0x7780\n0xE2E8\t0x776F\n0xE2E9\t0x777E\n0xE2EA\t0x7783\n0xE2EB\t0x78B2\n0xE2EC\t0x78AA\n0xE2ED\t0x78B4\n0xE2EE\t0x78AD\n0xE2EF\t0x78A8\n0xE2F0\t0x787E\n0xE2F1\t0x78AB\n0xE2F2\t0x789E\n0xE2F3\t0x78A5\n0xE2F4\t0x78A0\n0xE2F5\t0x78AC\n0xE2F6\t0x78A2\n0xE2F7\t0x78A4\n0xE2F8\t0x7998\n0xE2F9\t0x798A\n0xE2FA\t0x798B\n0xE2FB\t0x7996\n0xE2FC\t0x7995\n0xE2FD\t0x7994\n0xE2FE\t0x7993\n0xE340\t0x7997\n0xE341\t0x7988\n0xE342\t0x7992\n0xE343\t0x7990\n0xE344\t0x7A2B\n0xE345\t0x7A4A\n0xE346\t0x7A30\n0xE347\t0x7A2F\n0xE348\t0x7A28\n0xE349\t0x7A26\n0xE34A\t0x7AA8\n0xE34B\t0x7AAB\n0xE34C\t0x7AAC\n0xE34D\t0x7AEE\n0xE34E\t0x7B88\n0xE34F\t0x7B9C\n0xE350\t0x7B8A\n0xE351\t0x7B91\n0xE352\t0x7B90\n0xE353\t0x7B96\n0xE354\t0x7B8D\n0xE355\t0x7B8C\n0xE356\t0x7B9B\n0xE357\t0x7B8E\n0xE358\t0x7B85\n0xE359\t0x7B98\n0xE35A\t0x5284\n0xE35B\t0x7B99\n0xE35C\t0x7BA4\n0xE35D\t0x7B82\n0xE35E\t0x7CBB\n0xE35F\t0x7CBF\n0xE360\t0x7CBC\n0xE361\t0x7CBA\n0xE362\t0x7DA7\n0xE363\t0x7DB7\n0xE364\t0x7DC2\n0xE365\t0x7DA3\n0xE366\t0x7DAA\n0xE367\t0x7DC1\n0xE368\t0x7DC0\n0xE369\t0x7DC5\n0xE36A\t0x7D9D\n0xE36B\t0x7DCE\n0xE36C\t0x7DC4\n0xE36D\t0x7DC6\n0xE36E\t0x7DCB\n0xE36F\t0x7DCC\n0xE370\t0x7DAF\n0xE371\t0x7DB9\n0xE372\t0x7D96\n0xE373\t0x7DBC\n0xE374\t0x7D9F\n0xE375\t0x7DA6\n0xE376\t0x7DAE\n0xE377\t0x7DA9\n0xE378\t0x7DA1\n0xE379\t0x7DC9\n0xE37A\t0x7F73\n0xE37B\t0x7FE2\n0xE37C\t0x7FE3\n0xE37D\t0x7FE5\n0xE37E\t0x7FDE\n0xE3A1\t0x8024\n0xE3A2\t0x805D\n0xE3A3\t0x805C\n0xE3A4\t0x8189\n0xE3A5\t0x8186\n0xE3A6\t0x8183\n0xE3A7\t0x8187\n0xE3A8\t0x818D\n0xE3A9\t0x818C\n0xE3AA\t0x818B\n0xE3AB\t0x8215\n0xE3AC\t0x8497\n0xE3AD\t0x84A4\n0xE3AE\t0x84A1\n0xE3AF\t0x849F\n0xE3B0\t0x84BA\n0xE3B1\t0x84CE\n0xE3B2\t0x84C2\n0xE3B3\t0x84AC\n0xE3B4\t0x84AE\n0xE3B5\t0x84AB\n0xE3B6\t0x84B9\n0xE3B7\t0x84B4\n0xE3B8\t0x84C1\n0xE3B9\t0x84CD\n0xE3BA\t0x84AA\n0xE3BB\t0x849A\n0xE3BC\t0x84B1\n0xE3BD\t0x84D0\n0xE3BE\t0x849D\n0xE3BF\t0x84A7\n0xE3C0\t0x84BB\n0xE3C1\t0x84A2\n0xE3C2\t0x8494\n0xE3C3\t0x84C7\n0xE3C4\t0x84CC\n0xE3C5\t0x849B\n0xE3C6\t0x84A9\n0xE3C7\t0x84AF\n0xE3C8\t0x84A8\n0xE3C9\t0x84D6\n0xE3CA\t0x8498\n0xE3CB\t0x84B6\n0xE3CC\t0x84CF\n0xE3CD\t0x84A0\n0xE3CE\t0x84D7\n0xE3CF\t0x84D4\n0xE3D0\t0x84D2\n0xE3D1\t0x84DB\n0xE3D2\t0x84B0\n0xE3D3\t0x8491\n0xE3D4\t0x8661\n0xE3D5\t0x8733\n0xE3D6\t0x8723\n0xE3D7\t0x8728\n0xE3D8\t0x876B\n0xE3D9\t0x8740\n0xE3DA\t0x872E\n0xE3DB\t0x871E\n0xE3DC\t0x8721\n0xE3DD\t0x8719\n0xE3DE\t0x871B\n0xE3DF\t0x8743\n0xE3E0\t0x872C\n0xE3E1\t0x8741\n0xE3E2\t0x873E\n0xE3E3\t0x8746\n0xE3E4\t0x8720\n0xE3E5\t0x8732\n0xE3E6\t0x872A\n0xE3E7\t0x872D\n0xE3E8\t0x873C\n0xE3E9\t0x8712\n0xE3EA\t0x873A\n0xE3EB\t0x8731\n0xE3EC\t0x8735\n0xE3ED\t0x8742\n0xE3EE\t0x8726\n0xE3EF\t0x8727\n0xE3F0\t0x8738\n0xE3F1\t0x8724\n0xE3F2\t0x871A\n0xE3F3\t0x8730\n0xE3F4\t0x8711\n0xE3F5\t0x88F7\n0xE3F6\t0x88E7\n0xE3F7\t0x88F1\n0xE3F8\t0x88F2\n0xE3F9\t0x88FA\n0xE3FA\t0x88FE\n0xE3FB\t0x88EE\n0xE3FC\t0x88FC\n0xE3FD\t0x88F6\n0xE3FE\t0x88FB\n0xE440\t0x88F0\n0xE441\t0x88EC\n0xE442\t0x88EB\n0xE443\t0x899D\n0xE444\t0x89A1\n0xE445\t0x899F\n0xE446\t0x899E\n0xE447\t0x89E9\n0xE448\t0x89EB\n0xE449\t0x89E8\n0xE44A\t0x8AAB\n0xE44B\t0x8A99\n0xE44C\t0x8A8B\n0xE44D\t0x8A92\n0xE44E\t0x8A8F\n0xE44F\t0x8A96\n0xE450\t0x8C3D\n0xE451\t0x8C68\n0xE452\t0x8C69\n0xE453\t0x8CD5\n0xE454\t0x8CCF\n0xE455\t0x8CD7\n0xE456\t0x8D96\n0xE457\t0x8E09\n0xE458\t0x8E02\n0xE459\t0x8DFF\n0xE45A\t0x8E0D\n0xE45B\t0x8DFD\n0xE45C\t0x8E0A\n0xE45D\t0x8E03\n0xE45E\t0x8E07\n0xE45F\t0x8E06\n0xE460\t0x8E05\n0xE461\t0x8DFE\n0xE462\t0x8E00\n0xE463\t0x8E04\n0xE464\t0x8F10\n0xE465\t0x8F11\n0xE466\t0x8F0E\n0xE467\t0x8F0D\n0xE468\t0x9123\n0xE469\t0x911C\n0xE46A\t0x9120\n0xE46B\t0x9122\n0xE46C\t0x911F\n0xE46D\t0x911D\n0xE46E\t0x911A\n0xE46F\t0x9124\n0xE470\t0x9121\n0xE471\t0x911B\n0xE472\t0x917A\n0xE473\t0x9172\n0xE474\t0x9179\n0xE475\t0x9173\n0xE476\t0x92A5\n0xE477\t0x92A4\n0xE478\t0x9276\n0xE479\t0x929B\n0xE47A\t0x927A\n0xE47B\t0x92A0\n0xE47C\t0x9294\n0xE47D\t0x92AA\n0xE47E\t0x928D\n0xE4A1\t0x92A6\n0xE4A2\t0x929A\n0xE4A3\t0x92AB\n0xE4A4\t0x9279\n0xE4A5\t0x9297\n0xE4A6\t0x927F\n0xE4A7\t0x92A3\n0xE4A8\t0x92EE\n0xE4A9\t0x928E\n0xE4AA\t0x9282\n0xE4AB\t0x9295\n0xE4AC\t0x92A2\n0xE4AD\t0x927D\n0xE4AE\t0x9288\n0xE4AF\t0x92A1\n0xE4B0\t0x928A\n0xE4B1\t0x9286\n0xE4B2\t0x928C\n0xE4B3\t0x9299\n0xE4B4\t0x92A7\n0xE4B5\t0x927E\n0xE4B6\t0x9287\n0xE4B7\t0x92A9\n0xE4B8\t0x929D\n0xE4B9\t0x928B\n0xE4BA\t0x922D\n0xE4BB\t0x969E\n0xE4BC\t0x96A1\n0xE4BD\t0x96FF\n0xE4BE\t0x9758\n0xE4BF\t0x977D\n0xE4C0\t0x977A\n0xE4C1\t0x977E\n0xE4C2\t0x9783\n0xE4C3\t0x9780\n0xE4C4\t0x9782\n0xE4C5\t0x977B\n0xE4C6\t0x9784\n0xE4C7\t0x9781\n0xE4C8\t0x977F\n0xE4C9\t0x97CE\n0xE4CA\t0x97CD\n0xE4CB\t0x9816\n0xE4CC\t0x98AD\n0xE4CD\t0x98AE\n0xE4CE\t0x9902\n0xE4CF\t0x9900\n0xE4D0\t0x9907\n0xE4D1\t0x999D\n0xE4D2\t0x999C\n0xE4D3\t0x99C3\n0xE4D4\t0x99B9\n0xE4D5\t0x99BB\n0xE4D6\t0x99BA\n0xE4D7\t0x99C2\n0xE4D8\t0x99BD\n0xE4D9\t0x99C7\n0xE4DA\t0x9AB1\n0xE4DB\t0x9AE3\n0xE4DC\t0x9AE7\n0xE4DD\t0x9B3E\n0xE4DE\t0x9B3F\n0xE4DF\t0x9B60\n0xE4E0\t0x9B61\n0xE4E1\t0x9B5F\n0xE4E2\t0x9CF1\n0xE4E3\t0x9CF2\n0xE4E4\t0x9CF5\n0xE4E5\t0x9EA7\n0xE4E6\t0x50FF\n0xE4E7\t0x5103\n0xE4E8\t0x5130\n0xE4E9\t0x50F8\n0xE4EA\t0x5106\n0xE4EB\t0x5107\n0xE4EC\t0x50F6\n0xE4ED\t0x50FE\n0xE4EE\t0x510B\n0xE4EF\t0x510C\n0xE4F0\t0x50FD\n0xE4F1\t0x510A\n0xE4F2\t0x528B\n0xE4F3\t0x528C\n0xE4F4\t0x52F1\n0xE4F5\t0x52EF\n0xE4F6\t0x5648\n0xE4F7\t0x5642\n0xE4F8\t0x564C\n0xE4F9\t0x5635\n0xE4FA\t0x5641\n0xE4FB\t0x564A\n0xE4FC\t0x5649\n0xE4FD\t0x5646\n0xE4FE\t0x5658\n0xE540\t0x565A\n0xE541\t0x5640\n0xE542\t0x5633\n0xE543\t0x563D\n0xE544\t0x562C\n0xE545\t0x563E\n0xE546\t0x5638\n0xE547\t0x562A\n0xE548\t0x563A\n0xE549\t0x571A\n0xE54A\t0x58AB\n0xE54B\t0x589D\n0xE54C\t0x58B1\n0xE54D\t0x58A0\n0xE54E\t0x58A3\n0xE54F\t0x58AF\n0xE550\t0x58AC\n0xE551\t0x58A5\n0xE552\t0x58A1\n0xE553\t0x58FF\n0xE554\t0x5AFF\n0xE555\t0x5AF4\n0xE556\t0x5AFD\n0xE557\t0x5AF7\n0xE558\t0x5AF6\n0xE559\t0x5B03\n0xE55A\t0x5AF8\n0xE55B\t0x5B02\n0xE55C\t0x5AF9\n0xE55D\t0x5B01\n0xE55E\t0x5B07\n0xE55F\t0x5B05\n0xE560\t0x5B0F\n0xE561\t0x5C67\n0xE562\t0x5D99\n0xE563\t0x5D97\n0xE564\t0x5D9F\n0xE565\t0x5D92\n0xE566\t0x5DA2\n0xE567\t0x5D93\n0xE568\t0x5D95\n0xE569\t0x5DA0\n0xE56A\t0x5D9C\n0xE56B\t0x5DA1\n0xE56C\t0x5D9A\n0xE56D\t0x5D9E\n0xE56E\t0x5E69\n0xE56F\t0x5E5D\n0xE570\t0x5E60\n0xE571\t0x5E5C\n0xE572\t0x7DF3\n0xE573\t0x5EDB\n0xE574\t0x5EDE\n0xE575\t0x5EE1\n0xE576\t0x5F49\n0xE577\t0x5FB2\n0xE578\t0x618B\n0xE579\t0x6183\n0xE57A\t0x6179\n0xE57B\t0x61B1\n0xE57C\t0x61B0\n0xE57D\t0x61A2\n0xE57E\t0x6189\n0xE5A1\t0x619B\n0xE5A2\t0x6193\n0xE5A3\t0x61AF\n0xE5A4\t0x61AD\n0xE5A5\t0x619F\n0xE5A6\t0x6192\n0xE5A7\t0x61AA\n0xE5A8\t0x61A1\n0xE5A9\t0x618D\n0xE5AA\t0x6166\n0xE5AB\t0x61B3\n0xE5AC\t0x622D\n0xE5AD\t0x646E\n0xE5AE\t0x6470\n0xE5AF\t0x6496\n0xE5B0\t0x64A0\n0xE5B1\t0x6485\n0xE5B2\t0x6497\n0xE5B3\t0x649C\n0xE5B4\t0x648F\n0xE5B5\t0x648B\n0xE5B6\t0x648A\n0xE5B7\t0x648C\n0xE5B8\t0x64A3\n0xE5B9\t0x649F\n0xE5BA\t0x6468\n0xE5BB\t0x64B1\n0xE5BC\t0x6498\n0xE5BD\t0x6576\n0xE5BE\t0x657A\n0xE5BF\t0x6579\n0xE5C0\t0x657B\n0xE5C1\t0x65B2\n0xE5C2\t0x65B3\n0xE5C3\t0x66B5\n0xE5C4\t0x66B0\n0xE5C5\t0x66A9\n0xE5C6\t0x66B2\n0xE5C7\t0x66B7\n0xE5C8\t0x66AA\n0xE5C9\t0x66AF\n0xE5CA\t0x6A00\n0xE5CB\t0x6A06\n0xE5CC\t0x6A17\n0xE5CD\t0x69E5\n0xE5CE\t0x69F8\n0xE5CF\t0x6A15\n0xE5D0\t0x69F1\n0xE5D1\t0x69E4\n0xE5D2\t0x6A20\n0xE5D3\t0x69FF\n0xE5D4\t0x69EC\n0xE5D5\t0x69E2\n0xE5D6\t0x6A1B\n0xE5D7\t0x6A1D\n0xE5D8\t0x69FE\n0xE5D9\t0x6A27\n0xE5DA\t0x69F2\n0xE5DB\t0x69EE\n0xE5DC\t0x6A14\n0xE5DD\t0x69F7\n0xE5DE\t0x69E7\n0xE5DF\t0x6A40\n0xE5E0\t0x6A08\n0xE5E1\t0x69E6\n0xE5E2\t0x69FB\n0xE5E3\t0x6A0D\n0xE5E4\t0x69FC\n0xE5E5\t0x69EB\n0xE5E6\t0x6A09\n0xE5E7\t0x6A04\n0xE5E8\t0x6A18\n0xE5E9\t0x6A25\n0xE5EA\t0x6A0F\n0xE5EB\t0x69F6\n0xE5EC\t0x6A26\n0xE5ED\t0x6A07\n0xE5EE\t0x69F4\n0xE5EF\t0x6A16\n0xE5F0\t0x6B51\n0xE5F1\t0x6BA5\n0xE5F2\t0x6BA3\n0xE5F3\t0x6BA2\n0xE5F4\t0x6BA6\n0xE5F5\t0x6C01\n0xE5F6\t0x6C00\n0xE5F7\t0x6BFF\n0xE5F8\t0x6C02\n0xE5F9\t0x6F41\n0xE5FA\t0x6F26\n0xE5FB\t0x6F7E\n0xE5FC\t0x6F87\n0xE5FD\t0x6FC6\n0xE5FE\t0x6F92\n0xE640\t0x6F8D\n0xE641\t0x6F89\n0xE642\t0x6F8C\n0xE643\t0x6F62\n0xE644\t0x6F4F\n0xE645\t0x6F85\n0xE646\t0x6F5A\n0xE647\t0x6F96\n0xE648\t0x6F76\n0xE649\t0x6F6C\n0xE64A\t0x6F82\n0xE64B\t0x6F55\n0xE64C\t0x6F72\n0xE64D\t0x6F52\n0xE64E\t0x6F50\n0xE64F\t0x6F57\n0xE650\t0x6F94\n0xE651\t0x6F93\n0xE652\t0x6F5D\n0xE653\t0x6F00\n0xE654\t0x6F61\n0xE655\t0x6F6B\n0xE656\t0x6F7D\n0xE657\t0x6F67\n0xE658\t0x6F90\n0xE659\t0x6F53\n0xE65A\t0x6F8B\n0xE65B\t0x6F69\n0xE65C\t0x6F7F\n0xE65D\t0x6F95\n0xE65E\t0x6F63\n0xE65F\t0x6F77\n0xE660\t0x6F6A\n0xE661\t0x6F7B\n0xE662\t0x71B2\n0xE663\t0x71AF\n0xE664\t0x719B\n0xE665\t0x71B0\n0xE666\t0x71A0\n0xE667\t0x719A\n0xE668\t0x71A9\n0xE669\t0x71B5\n0xE66A\t0x719D\n0xE66B\t0x71A5\n0xE66C\t0x719E\n0xE66D\t0x71A4\n0xE66E\t0x71A1\n0xE66F\t0x71AA\n0xE670\t0x719C\n0xE671\t0x71A7\n0xE672\t0x71B3\n0xE673\t0x7298\n0xE674\t0x729A\n0xE675\t0x7358\n0xE676\t0x7352\n0xE677\t0x735E\n0xE678\t0x735F\n0xE679\t0x7360\n0xE67A\t0x735D\n0xE67B\t0x735B\n0xE67C\t0x7361\n0xE67D\t0x735A\n0xE67E\t0x7359\n0xE6A1\t0x7362\n0xE6A2\t0x7487\n0xE6A3\t0x7489\n0xE6A4\t0x748A\n0xE6A5\t0x7486\n0xE6A6\t0x7481\n0xE6A7\t0x747D\n0xE6A8\t0x7485\n0xE6A9\t0x7488\n0xE6AA\t0x747C\n0xE6AB\t0x7479\n0xE6AC\t0x7508\n0xE6AD\t0x7507\n0xE6AE\t0x757E\n0xE6AF\t0x7625\n0xE6B0\t0x761E\n0xE6B1\t0x7619\n0xE6B2\t0x761D\n0xE6B3\t0x761C\n0xE6B4\t0x7623\n0xE6B5\t0x761A\n0xE6B6\t0x7628\n0xE6B7\t0x761B\n0xE6B8\t0x769C\n0xE6B9\t0x769D\n0xE6BA\t0x769E\n0xE6BB\t0x769B\n0xE6BC\t0x778D\n0xE6BD\t0x778F\n0xE6BE\t0x7789\n0xE6BF\t0x7788\n0xE6C0\t0x78CD\n0xE6C1\t0x78BB\n0xE6C2\t0x78CF\n0xE6C3\t0x78CC\n0xE6C4\t0x78D1\n0xE6C5\t0x78CE\n0xE6C6\t0x78D4\n0xE6C7\t0x78C8\n0xE6C8\t0x78C3\n0xE6C9\t0x78C4\n0xE6CA\t0x78C9\n0xE6CB\t0x799A\n0xE6CC\t0x79A1\n0xE6CD\t0x79A0\n0xE6CE\t0x799C\n0xE6CF\t0x79A2\n0xE6D0\t0x799B\n0xE6D1\t0x6B76\n0xE6D2\t0x7A39\n0xE6D3\t0x7AB2\n0xE6D4\t0x7AB4\n0xE6D5\t0x7AB3\n0xE6D6\t0x7BB7\n0xE6D7\t0x7BCB\n0xE6D8\t0x7BBE\n0xE6D9\t0x7BAC\n0xE6DA\t0x7BCE\n0xE6DB\t0x7BAF\n0xE6DC\t0x7BB9\n0xE6DD\t0x7BCA\n0xE6DE\t0x7BB5\n0xE6DF\t0x7CC5\n0xE6E0\t0x7CC8\n0xE6E1\t0x7CCC\n0xE6E2\t0x7CCB\n0xE6E3\t0x7DF7\n0xE6E4\t0x7DDB\n0xE6E5\t0x7DEA\n0xE6E6\t0x7DE7\n0xE6E7\t0x7DD7\n0xE6E8\t0x7DE1\n0xE6E9\t0x7E03\n0xE6EA\t0x7DFA\n0xE6EB\t0x7DE6\n0xE6EC\t0x7DF6\n0xE6ED\t0x7DF1\n0xE6EE\t0x7DF0\n0xE6EF\t0x7DEE\n0xE6F0\t0x7DDF\n0xE6F1\t0x7F76\n0xE6F2\t0x7FAC\n0xE6F3\t0x7FB0\n0xE6F4\t0x7FAD\n0xE6F5\t0x7FED\n0xE6F6\t0x7FEB\n0xE6F7\t0x7FEA\n0xE6F8\t0x7FEC\n0xE6F9\t0x7FE6\n0xE6FA\t0x7FE8\n0xE6FB\t0x8064\n0xE6FC\t0x8067\n0xE6FD\t0x81A3\n0xE6FE\t0x819F\n0xE740\t0x819E\n0xE741\t0x8195\n0xE742\t0x81A2\n0xE743\t0x8199\n0xE744\t0x8197\n0xE745\t0x8216\n0xE746\t0x824F\n0xE747\t0x8253\n0xE748\t0x8252\n0xE749\t0x8250\n0xE74A\t0x824E\n0xE74B\t0x8251\n0xE74C\t0x8524\n0xE74D\t0x853B\n0xE74E\t0x850F\n0xE74F\t0x8500\n0xE750\t0x8529\n0xE751\t0x850E\n0xE752\t0x8509\n0xE753\t0x850D\n0xE754\t0x851F\n0xE755\t0x850A\n0xE756\t0x8527\n0xE757\t0x851C\n0xE758\t0x84FB\n0xE759\t0x852B\n0xE75A\t0x84FA\n0xE75B\t0x8508\n0xE75C\t0x850C\n0xE75D\t0x84F4\n0xE75E\t0x852A\n0xE75F\t0x84F2\n0xE760\t0x8515\n0xE761\t0x84F7\n0xE762\t0x84EB\n0xE763\t0x84F3\n0xE764\t0x84FC\n0xE765\t0x8512\n0xE766\t0x84EA\n0xE767\t0x84E9\n0xE768\t0x8516\n0xE769\t0x84FE\n0xE76A\t0x8528\n0xE76B\t0x851D\n0xE76C\t0x852E\n0xE76D\t0x8502\n0xE76E\t0x84FD\n0xE76F\t0x851E\n0xE770\t0x84F6\n0xE771\t0x8531\n0xE772\t0x8526\n0xE773\t0x84E7\n0xE774\t0x84E8\n0xE775\t0x84F0\n0xE776\t0x84EF\n0xE777\t0x84F9\n0xE778\t0x8518\n0xE779\t0x8520\n0xE77A\t0x8530\n0xE77B\t0x850B\n0xE77C\t0x8519\n0xE77D\t0x852F\n0xE77E\t0x8662\n0xE7A1\t0x8756\n0xE7A2\t0x8763\n0xE7A3\t0x8764\n0xE7A4\t0x8777\n0xE7A5\t0x87E1\n0xE7A6\t0x8773\n0xE7A7\t0x8758\n0xE7A8\t0x8754\n0xE7A9\t0x875B\n0xE7AA\t0x8752\n0xE7AB\t0x8761\n0xE7AC\t0x875A\n0xE7AD\t0x8751\n0xE7AE\t0x875E\n0xE7AF\t0x876D\n0xE7B0\t0x876A\n0xE7B1\t0x8750\n0xE7B2\t0x874E\n0xE7B3\t0x875F\n0xE7B4\t0x875D\n0xE7B5\t0x876F\n0xE7B6\t0x876C\n0xE7B7\t0x877A\n0xE7B8\t0x876E\n0xE7B9\t0x875C\n0xE7BA\t0x8765\n0xE7BB\t0x874F\n0xE7BC\t0x877B\n0xE7BD\t0x8775\n0xE7BE\t0x8762\n0xE7BF\t0x8767\n0xE7C0\t0x8769\n0xE7C1\t0x885A\n0xE7C2\t0x8905\n0xE7C3\t0x890C\n0xE7C4\t0x8914\n0xE7C5\t0x890B\n0xE7C6\t0x8917\n0xE7C7\t0x8918\n0xE7C8\t0x8919\n0xE7C9\t0x8906\n0xE7CA\t0x8916\n0xE7CB\t0x8911\n0xE7CC\t0x890E\n0xE7CD\t0x8909\n0xE7CE\t0x89A2\n0xE7CF\t0x89A4\n0xE7D0\t0x89A3\n0xE7D1\t0x89ED\n0xE7D2\t0x89F0\n0xE7D3\t0x89EC\n0xE7D4\t0x8ACF\n0xE7D5\t0x8AC6\n0xE7D6\t0x8AB8\n0xE7D7\t0x8AD3\n0xE7D8\t0x8AD1\n0xE7D9\t0x8AD4\n0xE7DA\t0x8AD5\n0xE7DB\t0x8ABB\n0xE7DC\t0x8AD7\n0xE7DD\t0x8ABE\n0xE7DE\t0x8AC0\n0xE7DF\t0x8AC5\n0xE7E0\t0x8AD8\n0xE7E1\t0x8AC3\n0xE7E2\t0x8ABA\n0xE7E3\t0x8ABD\n0xE7E4\t0x8AD9\n0xE7E5\t0x8C3E\n0xE7E6\t0x8C4D\n0xE7E7\t0x8C8F\n0xE7E8\t0x8CE5\n0xE7E9\t0x8CDF\n0xE7EA\t0x8CD9\n0xE7EB\t0x8CE8\n0xE7EC\t0x8CDA\n0xE7ED\t0x8CDD\n0xE7EE\t0x8CE7\n0xE7EF\t0x8DA0\n0xE7F0\t0x8D9C\n0xE7F1\t0x8DA1\n0xE7F2\t0x8D9B\n0xE7F3\t0x8E20\n0xE7F4\t0x8E23\n0xE7F5\t0x8E25\n0xE7F6\t0x8E24\n0xE7F7\t0x8E2E\n0xE7F8\t0x8E15\n0xE7F9\t0x8E1B\n0xE7FA\t0x8E16\n0xE7FB\t0x8E11\n0xE7FC\t0x8E19\n0xE7FD\t0x8E26\n0xE7FE\t0x8E27\n0xE840\t0x8E14\n0xE841\t0x8E12\n0xE842\t0x8E18\n0xE843\t0x8E13\n0xE844\t0x8E1C\n0xE845\t0x8E17\n0xE846\t0x8E1A\n0xE847\t0x8F2C\n0xE848\t0x8F24\n0xE849\t0x8F18\n0xE84A\t0x8F1A\n0xE84B\t0x8F20\n0xE84C\t0x8F23\n0xE84D\t0x8F16\n0xE84E\t0x8F17\n0xE84F\t0x9073\n0xE850\t0x9070\n0xE851\t0x906F\n0xE852\t0x9067\n0xE853\t0x906B\n0xE854\t0x912F\n0xE855\t0x912B\n0xE856\t0x9129\n0xE857\t0x912A\n0xE858\t0x9132\n0xE859\t0x9126\n0xE85A\t0x912E\n0xE85B\t0x9185\n0xE85C\t0x9186\n0xE85D\t0x918A\n0xE85E\t0x9181\n0xE85F\t0x9182\n0xE860\t0x9184\n0xE861\t0x9180\n0xE862\t0x92D0\n0xE863\t0x92C3\n0xE864\t0x92C4\n0xE865\t0x92C0\n0xE866\t0x92D9\n0xE867\t0x92B6\n0xE868\t0x92CF\n0xE869\t0x92F1\n0xE86A\t0x92DF\n0xE86B\t0x92D8\n0xE86C\t0x92E9\n0xE86D\t0x92D7\n0xE86E\t0x92DD\n0xE86F\t0x92CC\n0xE870\t0x92EF\n0xE871\t0x92C2\n0xE872\t0x92E8\n0xE873\t0x92CA\n0xE874\t0x92C8\n0xE875\t0x92CE\n0xE876\t0x92E6\n0xE877\t0x92CD\n0xE878\t0x92D5\n0xE879\t0x92C9\n0xE87A\t0x92E0\n0xE87B\t0x92DE\n0xE87C\t0x92E7\n0xE87D\t0x92D1\n0xE87E\t0x92D3\n0xE8A1\t0x92B5\n0xE8A2\t0x92E1\n0xE8A3\t0x92C6\n0xE8A4\t0x92B4\n0xE8A5\t0x957C\n0xE8A6\t0x95AC\n0xE8A7\t0x95AB\n0xE8A8\t0x95AE\n0xE8A9\t0x95B0\n0xE8AA\t0x96A4\n0xE8AB\t0x96A2\n0xE8AC\t0x96D3\n0xE8AD\t0x9705\n0xE8AE\t0x9708\n0xE8AF\t0x9702\n0xE8B0\t0x975A\n0xE8B1\t0x978A\n0xE8B2\t0x978E\n0xE8B3\t0x9788\n0xE8B4\t0x97D0\n0xE8B5\t0x97CF\n0xE8B6\t0x981E\n0xE8B7\t0x981D\n0xE8B8\t0x9826\n0xE8B9\t0x9829\n0xE8BA\t0x9828\n0xE8BB\t0x9820\n0xE8BC\t0x981B\n0xE8BD\t0x9827\n0xE8BE\t0x98B2\n0xE8BF\t0x9908\n0xE8C0\t0x98FA\n0xE8C1\t0x9911\n0xE8C2\t0x9914\n0xE8C3\t0x9916\n0xE8C4\t0x9917\n0xE8C5\t0x9915\n0xE8C6\t0x99DC\n0xE8C7\t0x99CD\n0xE8C8\t0x99CF\n0xE8C9\t0x99D3\n0xE8CA\t0x99D4\n0xE8CB\t0x99CE\n0xE8CC\t0x99C9\n0xE8CD\t0x99D6\n0xE8CE\t0x99D8\n0xE8CF\t0x99CB\n0xE8D0\t0x99D7\n0xE8D1\t0x99CC\n0xE8D2\t0x9AB3\n0xE8D3\t0x9AEC\n0xE8D4\t0x9AEB\n0xE8D5\t0x9AF3\n0xE8D6\t0x9AF2\n0xE8D7\t0x9AF1\n0xE8D8\t0x9B46\n0xE8D9\t0x9B43\n0xE8DA\t0x9B67\n0xE8DB\t0x9B74\n0xE8DC\t0x9B71\n0xE8DD\t0x9B66\n0xE8DE\t0x9B76\n0xE8DF\t0x9B75\n0xE8E0\t0x9B70\n0xE8E1\t0x9B68\n0xE8E2\t0x9B64\n0xE8E3\t0x9B6C\n0xE8E4\t0x9CFC\n0xE8E5\t0x9CFA\n0xE8E6\t0x9CFD\n0xE8E7\t0x9CFF\n0xE8E8\t0x9CF7\n0xE8E9\t0x9D07\n0xE8EA\t0x9D00\n0xE8EB\t0x9CF9\n0xE8EC\t0x9CFB\n0xE8ED\t0x9D08\n0xE8EE\t0x9D05\n0xE8EF\t0x9D04\n0xE8F0\t0x9E83\n0xE8F1\t0x9ED3\n0xE8F2\t0x9F0F\n0xE8F3\t0x9F10\n0xE8F4\t0x511C\n0xE8F5\t0x5113\n0xE8F6\t0x5117\n0xE8F7\t0x511A\n0xE8F8\t0x5111\n0xE8F9\t0x51DE\n0xE8FA\t0x5334\n0xE8FB\t0x53E1\n0xE8FC\t0x5670\n0xE8FD\t0x5660\n0xE8FE\t0x566E\n0xE940\t0x5673\n0xE941\t0x5666\n0xE942\t0x5663\n0xE943\t0x566D\n0xE944\t0x5672\n0xE945\t0x565E\n0xE946\t0x5677\n0xE947\t0x571C\n0xE948\t0x571B\n0xE949\t0x58C8\n0xE94A\t0x58BD\n0xE94B\t0x58C9\n0xE94C\t0x58BF\n0xE94D\t0x58BA\n0xE94E\t0x58C2\n0xE94F\t0x58BC\n0xE950\t0x58C6\n0xE951\t0x5B17\n0xE952\t0x5B19\n0xE953\t0x5B1B\n0xE954\t0x5B21\n0xE955\t0x5B14\n0xE956\t0x5B13\n0xE957\t0x5B10\n0xE958\t0x5B16\n0xE959\t0x5B28\n0xE95A\t0x5B1A\n0xE95B\t0x5B20\n0xE95C\t0x5B1E\n0xE95D\t0x5BEF\n0xE95E\t0x5DAC\n0xE95F\t0x5DB1\n0xE960\t0x5DA9\n0xE961\t0x5DA7\n0xE962\t0x5DB5\n0xE963\t0x5DB0\n0xE964\t0x5DAE\n0xE965\t0x5DAA\n0xE966\t0x5DA8\n0xE967\t0x5DB2\n0xE968\t0x5DAD\n0xE969\t0x5DAF\n0xE96A\t0x5DB4\n0xE96B\t0x5E67\n0xE96C\t0x5E68\n0xE96D\t0x5E66\n0xE96E\t0x5E6F\n0xE96F\t0x5EE9\n0xE970\t0x5EE7\n0xE971\t0x5EE6\n0xE972\t0x5EE8\n0xE973\t0x5EE5\n0xE974\t0x5F4B\n0xE975\t0x5FBC\n0xE976\t0x619D\n0xE977\t0x61A8\n0xE978\t0x6196\n0xE979\t0x61C5\n0xE97A\t0x61B4\n0xE97B\t0x61C6\n0xE97C\t0x61C1\n0xE97D\t0x61CC\n0xE97E\t0x61BA\n0xE9A1\t0x61BF\n0xE9A2\t0x61B8\n0xE9A3\t0x618C\n0xE9A4\t0x64D7\n0xE9A5\t0x64D6\n0xE9A6\t0x64D0\n0xE9A7\t0x64CF\n0xE9A8\t0x64C9\n0xE9A9\t0x64BD\n0xE9AA\t0x6489\n0xE9AB\t0x64C3\n0xE9AC\t0x64DB\n0xE9AD\t0x64F3\n0xE9AE\t0x64D9\n0xE9AF\t0x6533\n0xE9B0\t0x657F\n0xE9B1\t0x657C\n0xE9B2\t0x65A2\n0xE9B3\t0x66C8\n0xE9B4\t0x66BE\n0xE9B5\t0x66C0\n0xE9B6\t0x66CA\n0xE9B7\t0x66CB\n0xE9B8\t0x66CF\n0xE9B9\t0x66BD\n0xE9BA\t0x66BB\n0xE9BB\t0x66BA\n0xE9BC\t0x66CC\n0xE9BD\t0x6723\n0xE9BE\t0x6A34\n0xE9BF\t0x6A66\n0xE9C0\t0x6A49\n0xE9C1\t0x6A67\n0xE9C2\t0x6A32\n0xE9C3\t0x6A68\n0xE9C4\t0x6A3E\n0xE9C5\t0x6A5D\n0xE9C6\t0x6A6D\n0xE9C7\t0x6A76\n0xE9C8\t0x6A5B\n0xE9C9\t0x6A51\n0xE9CA\t0x6A28\n0xE9CB\t0x6A5A\n0xE9CC\t0x6A3B\n0xE9CD\t0x6A3F\n0xE9CE\t0x6A41\n0xE9CF\t0x6A6A\n0xE9D0\t0x6A64\n0xE9D1\t0x6A50\n0xE9D2\t0x6A4F\n0xE9D3\t0x6A54\n0xE9D4\t0x6A6F\n0xE9D5\t0x6A69\n0xE9D6\t0x6A60\n0xE9D7\t0x6A3C\n0xE9D8\t0x6A5E\n0xE9D9\t0x6A56\n0xE9DA\t0x6A55\n0xE9DB\t0x6A4D\n0xE9DC\t0x6A4E\n0xE9DD\t0x6A46\n0xE9DE\t0x6B55\n0xE9DF\t0x6B54\n0xE9E0\t0x6B56\n0xE9E1\t0x6BA7\n0xE9E2\t0x6BAA\n0xE9E3\t0x6BAB\n0xE9E4\t0x6BC8\n0xE9E5\t0x6BC7\n0xE9E6\t0x6C04\n0xE9E7\t0x6C03\n0xE9E8\t0x6C06\n0xE9E9\t0x6FAD\n0xE9EA\t0x6FCB\n0xE9EB\t0x6FA3\n0xE9EC\t0x6FC7\n0xE9ED\t0x6FBC\n0xE9EE\t0x6FCE\n0xE9EF\t0x6FC8\n0xE9F0\t0x6F5E\n0xE9F1\t0x6FC4\n0xE9F2\t0x6FBD\n0xE9F3\t0x6F9E\n0xE9F4\t0x6FCA\n0xE9F5\t0x6FA8\n0xE9F6\t0x7004\n0xE9F7\t0x6FA5\n0xE9F8\t0x6FAE\n0xE9F9\t0x6FBA\n0xE9FA\t0x6FAC\n0xE9FB\t0x6FAA\n0xE9FC\t0x6FCF\n0xE9FD\t0x6FBF\n0xE9FE\t0x6FB8\n0xEA40\t0x6FA2\n0xEA41\t0x6FC9\n0xEA42\t0x6FAB\n0xEA43\t0x6FCD\n0xEA44\t0x6FAF\n0xEA45\t0x6FB2\n0xEA46\t0x6FB0\n0xEA47\t0x71C5\n0xEA48\t0x71C2\n0xEA49\t0x71BF\n0xEA4A\t0x71B8\n0xEA4B\t0x71D6\n0xEA4C\t0x71C0\n0xEA4D\t0x71C1\n0xEA4E\t0x71CB\n0xEA4F\t0x71D4\n0xEA50\t0x71CA\n0xEA51\t0x71C7\n0xEA52\t0x71CF\n0xEA53\t0x71BD\n0xEA54\t0x71D8\n0xEA55\t0x71BC\n0xEA56\t0x71C6\n0xEA57\t0x71DA\n0xEA58\t0x71DB\n0xEA59\t0x729D\n0xEA5A\t0x729E\n0xEA5B\t0x7369\n0xEA5C\t0x7366\n0xEA5D\t0x7367\n0xEA5E\t0x736C\n0xEA5F\t0x7365\n0xEA60\t0x736B\n0xEA61\t0x736A\n0xEA62\t0x747F\n0xEA63\t0x749A\n0xEA64\t0x74A0\n0xEA65\t0x7494\n0xEA66\t0x7492\n0xEA67\t0x7495\n0xEA68\t0x74A1\n0xEA69\t0x750B\n0xEA6A\t0x7580\n0xEA6B\t0x762F\n0xEA6C\t0x762D\n0xEA6D\t0x7631\n0xEA6E\t0x763D\n0xEA6F\t0x7633\n0xEA70\t0x763C\n0xEA71\t0x7635\n0xEA72\t0x7632\n0xEA73\t0x7630\n0xEA74\t0x76BB\n0xEA75\t0x76E6\n0xEA76\t0x779A\n0xEA77\t0x779D\n0xEA78\t0x77A1\n0xEA79\t0x779C\n0xEA7A\t0x779B\n0xEA7B\t0x77A2\n0xEA7C\t0x77A3\n0xEA7D\t0x7795\n0xEA7E\t0x7799\n0xEAA1\t0x7797\n0xEAA2\t0x78DD\n0xEAA3\t0x78E9\n0xEAA4\t0x78E5\n0xEAA5\t0x78EA\n0xEAA6\t0x78DE\n0xEAA7\t0x78E3\n0xEAA8\t0x78DB\n0xEAA9\t0x78E1\n0xEAAA\t0x78E2\n0xEAAB\t0x78ED\n0xEAAC\t0x78DF\n0xEAAD\t0x78E0\n0xEAAE\t0x79A4\n0xEAAF\t0x7A44\n0xEAB0\t0x7A48\n0xEAB1\t0x7A47\n0xEAB2\t0x7AB6\n0xEAB3\t0x7AB8\n0xEAB4\t0x7AB5\n0xEAB5\t0x7AB1\n0xEAB6\t0x7AB7\n0xEAB7\t0x7BDE\n0xEAB8\t0x7BE3\n0xEAB9\t0x7BE7\n0xEABA\t0x7BDD\n0xEABB\t0x7BD5\n0xEABC\t0x7BE5\n0xEABD\t0x7BDA\n0xEABE\t0x7BE8\n0xEABF\t0x7BF9\n0xEAC0\t0x7BD4\n0xEAC1\t0x7BEA\n0xEAC2\t0x7BE2\n0xEAC3\t0x7BDC\n0xEAC4\t0x7BEB\n0xEAC5\t0x7BD8\n0xEAC6\t0x7BDF\n0xEAC7\t0x7CD2\n0xEAC8\t0x7CD4\n0xEAC9\t0x7CD7\n0xEACA\t0x7CD0\n0xEACB\t0x7CD1\n0xEACC\t0x7E12\n0xEACD\t0x7E21\n0xEACE\t0x7E17\n0xEACF\t0x7E0C\n0xEAD0\t0x7E1F\n0xEAD1\t0x7E20\n0xEAD2\t0x7E13\n0xEAD3\t0x7E0E\n0xEAD4\t0x7E1C\n0xEAD5\t0x7E15\n0xEAD6\t0x7E1A\n0xEAD7\t0x7E22\n0xEAD8\t0x7E0B\n0xEAD9\t0x7E0F\n0xEADA\t0x7E16\n0xEADB\t0x7E0D\n0xEADC\t0x7E14\n0xEADD\t0x7E25\n0xEADE\t0x7E24\n0xEADF\t0x7F43\n0xEAE0\t0x7F7B\n0xEAE1\t0x7F7C\n0xEAE2\t0x7F7A\n0xEAE3\t0x7FB1\n0xEAE4\t0x7FEF\n0xEAE5\t0x802A\n0xEAE6\t0x8029\n0xEAE7\t0x806C\n0xEAE8\t0x81B1\n0xEAE9\t0x81A6\n0xEAEA\t0x81AE\n0xEAEB\t0x81B9\n0xEAEC\t0x81B5\n0xEAED\t0x81AB\n0xEAEE\t0x81B0\n0xEAEF\t0x81AC\n0xEAF0\t0x81B4\n0xEAF1\t0x81B2\n0xEAF2\t0x81B7\n0xEAF3\t0x81A7\n0xEAF4\t0x81F2\n0xEAF5\t0x8255\n0xEAF6\t0x8256\n0xEAF7\t0x8257\n0xEAF8\t0x8556\n0xEAF9\t0x8545\n0xEAFA\t0x856B\n0xEAFB\t0x854D\n0xEAFC\t0x8553\n0xEAFD\t0x8561\n0xEAFE\t0x8558\n0xEB40\t0x8540\n0xEB41\t0x8546\n0xEB42\t0x8564\n0xEB43\t0x8541\n0xEB44\t0x8562\n0xEB45\t0x8544\n0xEB46\t0x8551\n0xEB47\t0x8547\n0xEB48\t0x8563\n0xEB49\t0x853E\n0xEB4A\t0x855B\n0xEB4B\t0x8571\n0xEB4C\t0x854E\n0xEB4D\t0x856E\n0xEB4E\t0x8575\n0xEB4F\t0x8555\n0xEB50\t0x8567\n0xEB51\t0x8560\n0xEB52\t0x858C\n0xEB53\t0x8566\n0xEB54\t0x855D\n0xEB55\t0x8554\n0xEB56\t0x8565\n0xEB57\t0x856C\n0xEB58\t0x8663\n0xEB59\t0x8665\n0xEB5A\t0x8664\n0xEB5B\t0x879B\n0xEB5C\t0x878F\n0xEB5D\t0x8797\n0xEB5E\t0x8793\n0xEB5F\t0x8792\n0xEB60\t0x8788\n0xEB61\t0x8781\n0xEB62\t0x8796\n0xEB63\t0x8798\n0xEB64\t0x8779\n0xEB65\t0x8787\n0xEB66\t0x87A3\n0xEB67\t0x8785\n0xEB68\t0x8790\n0xEB69\t0x8791\n0xEB6A\t0x879D\n0xEB6B\t0x8784\n0xEB6C\t0x8794\n0xEB6D\t0x879C\n0xEB6E\t0x879A\n0xEB6F\t0x8789\n0xEB70\t0x891E\n0xEB71\t0x8926\n0xEB72\t0x8930\n0xEB73\t0x892D\n0xEB74\t0x892E\n0xEB75\t0x8927\n0xEB76\t0x8931\n0xEB77\t0x8922\n0xEB78\t0x8929\n0xEB79\t0x8923\n0xEB7A\t0x892F\n0xEB7B\t0x892C\n0xEB7C\t0x891F\n0xEB7D\t0x89F1\n0xEB7E\t0x8AE0\n0xEBA1\t0x8AE2\n0xEBA2\t0x8AF2\n0xEBA3\t0x8AF4\n0xEBA4\t0x8AF5\n0xEBA5\t0x8ADD\n0xEBA6\t0x8B14\n0xEBA7\t0x8AE4\n0xEBA8\t0x8ADF\n0xEBA9\t0x8AF0\n0xEBAA\t0x8AC8\n0xEBAB\t0x8ADE\n0xEBAC\t0x8AE1\n0xEBAD\t0x8AE8\n0xEBAE\t0x8AFF\n0xEBAF\t0x8AEF\n0xEBB0\t0x8AFB\n0xEBB1\t0x8C91\n0xEBB2\t0x8C92\n0xEBB3\t0x8C90\n0xEBB4\t0x8CF5\n0xEBB5\t0x8CEE\n0xEBB6\t0x8CF1\n0xEBB7\t0x8CF0\n0xEBB8\t0x8CF3\n0xEBB9\t0x8D6C\n0xEBBA\t0x8D6E\n0xEBBB\t0x8DA5\n0xEBBC\t0x8DA7\n0xEBBD\t0x8E33\n0xEBBE\t0x8E3E\n0xEBBF\t0x8E38\n0xEBC0\t0x8E40\n0xEBC1\t0x8E45\n0xEBC2\t0x8E36\n0xEBC3\t0x8E3C\n0xEBC4\t0x8E3D\n0xEBC5\t0x8E41\n0xEBC6\t0x8E30\n0xEBC7\t0x8E3F\n0xEBC8\t0x8EBD\n0xEBC9\t0x8F36\n0xEBCA\t0x8F2E\n0xEBCB\t0x8F35\n0xEBCC\t0x8F32\n0xEBCD\t0x8F39\n0xEBCE\t0x8F37\n0xEBCF\t0x8F34\n0xEBD0\t0x9076\n0xEBD1\t0x9079\n0xEBD2\t0x907B\n0xEBD3\t0x9086\n0xEBD4\t0x90FA\n0xEBD5\t0x9133\n0xEBD6\t0x9135\n0xEBD7\t0x9136\n0xEBD8\t0x9193\n0xEBD9\t0x9190\n0xEBDA\t0x9191\n0xEBDB\t0x918D\n0xEBDC\t0x918F\n0xEBDD\t0x9327\n0xEBDE\t0x931E\n0xEBDF\t0x9308\n0xEBE0\t0x931F\n0xEBE1\t0x9306\n0xEBE2\t0x930F\n0xEBE3\t0x937A\n0xEBE4\t0x9338\n0xEBE5\t0x933C\n0xEBE6\t0x931B\n0xEBE7\t0x9323\n0xEBE8\t0x9312\n0xEBE9\t0x9301\n0xEBEA\t0x9346\n0xEBEB\t0x932D\n0xEBEC\t0x930E\n0xEBED\t0x930D\n0xEBEE\t0x92CB\n0xEBEF\t0x931D\n0xEBF0\t0x92FA\n0xEBF1\t0x9325\n0xEBF2\t0x9313\n0xEBF3\t0x92F9\n0xEBF4\t0x92F7\n0xEBF5\t0x9334\n0xEBF6\t0x9302\n0xEBF7\t0x9324\n0xEBF8\t0x92FF\n0xEBF9\t0x9329\n0xEBFA\t0x9339\n0xEBFB\t0x9335\n0xEBFC\t0x932A\n0xEBFD\t0x9314\n0xEBFE\t0x930C\n0xEC40\t0x930B\n0xEC41\t0x92FE\n0xEC42\t0x9309\n0xEC43\t0x9300\n0xEC44\t0x92FB\n0xEC45\t0x9316\n0xEC46\t0x95BC\n0xEC47\t0x95CD\n0xEC48\t0x95BE\n0xEC49\t0x95B9\n0xEC4A\t0x95BA\n0xEC4B\t0x95B6\n0xEC4C\t0x95BF\n0xEC4D\t0x95B5\n0xEC4E\t0x95BD\n0xEC4F\t0x96A9\n0xEC50\t0x96D4\n0xEC51\t0x970B\n0xEC52\t0x9712\n0xEC53\t0x9710\n0xEC54\t0x9799\n0xEC55\t0x9797\n0xEC56\t0x9794\n0xEC57\t0x97F0\n0xEC58\t0x97F8\n0xEC59\t0x9835\n0xEC5A\t0x982F\n0xEC5B\t0x9832\n0xEC5C\t0x9924\n0xEC5D\t0x991F\n0xEC5E\t0x9927\n0xEC5F\t0x9929\n0xEC60\t0x999E\n0xEC61\t0x99EE\n0xEC62\t0x99EC\n0xEC63\t0x99E5\n0xEC64\t0x99E4\n0xEC65\t0x99F0\n0xEC66\t0x99E3\n0xEC67\t0x99EA\n0xEC68\t0x99E9\n0xEC69\t0x99E7\n0xEC6A\t0x9AB9\n0xEC6B\t0x9ABF\n0xEC6C\t0x9AB4\n0xEC6D\t0x9ABB\n0xEC6E\t0x9AF6\n0xEC6F\t0x9AFA\n0xEC70\t0x9AF9\n0xEC71\t0x9AF7\n0xEC72\t0x9B33\n0xEC73\t0x9B80\n0xEC74\t0x9B85\n0xEC75\t0x9B87\n0xEC76\t0x9B7C\n0xEC77\t0x9B7E\n0xEC78\t0x9B7B\n0xEC79\t0x9B82\n0xEC7A\t0x9B93\n0xEC7B\t0x9B92\n0xEC7C\t0x9B90\n0xEC7D\t0x9B7A\n0xEC7E\t0x9B95\n0xECA1\t0x9B7D\n0xECA2\t0x9B88\n0xECA3\t0x9D25\n0xECA4\t0x9D17\n0xECA5\t0x9D20\n0xECA6\t0x9D1E\n0xECA7\t0x9D14\n0xECA8\t0x9D29\n0xECA9\t0x9D1D\n0xECAA\t0x9D18\n0xECAB\t0x9D22\n0xECAC\t0x9D10\n0xECAD\t0x9D19\n0xECAE\t0x9D1F\n0xECAF\t0x9E88\n0xECB0\t0x9E86\n0xECB1\t0x9E87\n0xECB2\t0x9EAE\n0xECB3\t0x9EAD\n0xECB4\t0x9ED5\n0xECB5\t0x9ED6\n0xECB6\t0x9EFA\n0xECB7\t0x9F12\n0xECB8\t0x9F3D\n0xECB9\t0x5126\n0xECBA\t0x5125\n0xECBB\t0x5122\n0xECBC\t0x5124\n0xECBD\t0x5120\n0xECBE\t0x5129\n0xECBF\t0x52F4\n0xECC0\t0x5693\n0xECC1\t0x568C\n0xECC2\t0x568D\n0xECC3\t0x5686\n0xECC4\t0x5684\n0xECC5\t0x5683\n0xECC6\t0x567E\n0xECC7\t0x5682\n0xECC8\t0x567F\n0xECC9\t0x5681\n0xECCA\t0x58D6\n0xECCB\t0x58D4\n0xECCC\t0x58CF\n0xECCD\t0x58D2\n0xECCE\t0x5B2D\n0xECCF\t0x5B25\n0xECD0\t0x5B32\n0xECD1\t0x5B23\n0xECD2\t0x5B2C\n0xECD3\t0x5B27\n0xECD4\t0x5B26\n0xECD5\t0x5B2F\n0xECD6\t0x5B2E\n0xECD7\t0x5B7B\n0xECD8\t0x5BF1\n0xECD9\t0x5BF2\n0xECDA\t0x5DB7\n0xECDB\t0x5E6C\n0xECDC\t0x5E6A\n0xECDD\t0x5FBE\n0xECDE\t0x5FBB\n0xECDF\t0x61C3\n0xECE0\t0x61B5\n0xECE1\t0x61BC\n0xECE2\t0x61E7\n0xECE3\t0x61E0\n0xECE4\t0x61E5\n0xECE5\t0x61E4\n0xECE6\t0x61E8\n0xECE7\t0x61DE\n0xECE8\t0x64EF\n0xECE9\t0x64E9\n0xECEA\t0x64E3\n0xECEB\t0x64EB\n0xECEC\t0x64E4\n0xECED\t0x64E8\n0xECEE\t0x6581\n0xECEF\t0x6580\n0xECF0\t0x65B6\n0xECF1\t0x65DA\n0xECF2\t0x66D2\n0xECF3\t0x6A8D\n0xECF4\t0x6A96\n0xECF5\t0x6A81\n0xECF6\t0x6AA5\n0xECF7\t0x6A89\n0xECF8\t0x6A9F\n0xECF9\t0x6A9B\n0xECFA\t0x6AA1\n0xECFB\t0x6A9E\n0xECFC\t0x6A87\n0xECFD\t0x6A93\n0xECFE\t0x6A8E\n0xED40\t0x6A95\n0xED41\t0x6A83\n0xED42\t0x6AA8\n0xED43\t0x6AA4\n0xED44\t0x6A91\n0xED45\t0x6A7F\n0xED46\t0x6AA6\n0xED47\t0x6A9A\n0xED48\t0x6A85\n0xED49\t0x6A8C\n0xED4A\t0x6A92\n0xED4B\t0x6B5B\n0xED4C\t0x6BAD\n0xED4D\t0x6C09\n0xED4E\t0x6FCC\n0xED4F\t0x6FA9\n0xED50\t0x6FF4\n0xED51\t0x6FD4\n0xED52\t0x6FE3\n0xED53\t0x6FDC\n0xED54\t0x6FED\n0xED55\t0x6FE7\n0xED56\t0x6FE6\n0xED57\t0x6FDE\n0xED58\t0x6FF2\n0xED59\t0x6FDD\n0xED5A\t0x6FE2\n0xED5B\t0x6FE8\n0xED5C\t0x71E1\n0xED5D\t0x71F1\n0xED5E\t0x71E8\n0xED5F\t0x71F2\n0xED60\t0x71E4\n0xED61\t0x71F0\n0xED62\t0x71E2\n0xED63\t0x7373\n0xED64\t0x736E\n0xED65\t0x736F\n0xED66\t0x7497\n0xED67\t0x74B2\n0xED68\t0x74AB\n0xED69\t0x7490\n0xED6A\t0x74AA\n0xED6B\t0x74AD\n0xED6C\t0x74B1\n0xED6D\t0x74A5\n0xED6E\t0x74AF\n0xED6F\t0x7510\n0xED70\t0x7511\n0xED71\t0x7512\n0xED72\t0x750F\n0xED73\t0x7584\n0xED74\t0x7643\n0xED75\t0x7648\n0xED76\t0x7649\n0xED77\t0x7647\n0xED78\t0x76A4\n0xED79\t0x76E9\n0xED7A\t0x77B5\n0xED7B\t0x77AB\n0xED7C\t0x77B2\n0xED7D\t0x77B7\n0xED7E\t0x77B6\n0xEDA1\t0x77B4\n0xEDA2\t0x77B1\n0xEDA3\t0x77A8\n0xEDA4\t0x77F0\n0xEDA5\t0x78F3\n0xEDA6\t0x78FD\n0xEDA7\t0x7902\n0xEDA8\t0x78FB\n0xEDA9\t0x78FC\n0xEDAA\t0x78F2\n0xEDAB\t0x7905\n0xEDAC\t0x78F9\n0xEDAD\t0x78FE\n0xEDAE\t0x7904\n0xEDAF\t0x79AB\n0xEDB0\t0x79A8\n0xEDB1\t0x7A5C\n0xEDB2\t0x7A5B\n0xEDB3\t0x7A56\n0xEDB4\t0x7A58\n0xEDB5\t0x7A54\n0xEDB6\t0x7A5A\n0xEDB7\t0x7ABE\n0xEDB8\t0x7AC0\n0xEDB9\t0x7AC1\n0xEDBA\t0x7C05\n0xEDBB\t0x7C0F\n0xEDBC\t0x7BF2\n0xEDBD\t0x7C00\n0xEDBE\t0x7BFF\n0xEDBF\t0x7BFB\n0xEDC0\t0x7C0E\n0xEDC1\t0x7BF4\n0xEDC2\t0x7C0B\n0xEDC3\t0x7BF3\n0xEDC4\t0x7C02\n0xEDC5\t0x7C09\n0xEDC6\t0x7C03\n0xEDC7\t0x7C01\n0xEDC8\t0x7BF8\n0xEDC9\t0x7BFD\n0xEDCA\t0x7C06\n0xEDCB\t0x7BF0\n0xEDCC\t0x7BF1\n0xEDCD\t0x7C10\n0xEDCE\t0x7C0A\n0xEDCF\t0x7CE8\n0xEDD0\t0x7E2D\n0xEDD1\t0x7E3C\n0xEDD2\t0x7E42\n0xEDD3\t0x7E33\n0xEDD4\t0x9848\n0xEDD5\t0x7E38\n0xEDD6\t0x7E2A\n0xEDD7\t0x7E49\n0xEDD8\t0x7E40\n0xEDD9\t0x7E47\n0xEDDA\t0x7E29\n0xEDDB\t0x7E4C\n0xEDDC\t0x7E30\n0xEDDD\t0x7E3B\n0xEDDE\t0x7E36\n0xEDDF\t0x7E44\n0xEDE0\t0x7E3A\n0xEDE1\t0x7F45\n0xEDE2\t0x7F7F\n0xEDE3\t0x7F7E\n0xEDE4\t0x7F7D\n0xEDE5\t0x7FF4\n0xEDE6\t0x7FF2\n0xEDE7\t0x802C\n0xEDE8\t0x81BB\n0xEDE9\t0x81C4\n0xEDEA\t0x81CC\n0xEDEB\t0x81CA\n0xEDEC\t0x81C5\n0xEDED\t0x81C7\n0xEDEE\t0x81BC\n0xEDEF\t0x81E9\n0xEDF0\t0x825B\n0xEDF1\t0x825A\n0xEDF2\t0x825C\n0xEDF3\t0x8583\n0xEDF4\t0x8580\n0xEDF5\t0x858F\n0xEDF6\t0x85A7\n0xEDF7\t0x8595\n0xEDF8\t0x85A0\n0xEDF9\t0x858B\n0xEDFA\t0x85A3\n0xEDFB\t0x857B\n0xEDFC\t0x85A4\n0xEDFD\t0x859A\n0xEDFE\t0x859E\n0xEE40\t0x8577\n0xEE41\t0x857C\n0xEE42\t0x8589\n0xEE43\t0x85A1\n0xEE44\t0x857A\n0xEE45\t0x8578\n0xEE46\t0x8557\n0xEE47\t0x858E\n0xEE48\t0x8596\n0xEE49\t0x8586\n0xEE4A\t0x858D\n0xEE4B\t0x8599\n0xEE4C\t0x859D\n0xEE4D\t0x8581\n0xEE4E\t0x85A2\n0xEE4F\t0x8582\n0xEE50\t0x8588\n0xEE51\t0x8585\n0xEE52\t0x8579\n0xEE53\t0x8576\n0xEE54\t0x8598\n0xEE55\t0x8590\n0xEE56\t0x859F\n0xEE57\t0x8668\n0xEE58\t0x87BE\n0xEE59\t0x87AA\n0xEE5A\t0x87AD\n0xEE5B\t0x87C5\n0xEE5C\t0x87B0\n0xEE5D\t0x87AC\n0xEE5E\t0x87B9\n0xEE5F\t0x87B5\n0xEE60\t0x87BC\n0xEE61\t0x87AE\n0xEE62\t0x87C9\n0xEE63\t0x87C3\n0xEE64\t0x87C2\n0xEE65\t0x87CC\n0xEE66\t0x87B7\n0xEE67\t0x87AF\n0xEE68\t0x87C4\n0xEE69\t0x87CA\n0xEE6A\t0x87B4\n0xEE6B\t0x87B6\n0xEE6C\t0x87BF\n0xEE6D\t0x87B8\n0xEE6E\t0x87BD\n0xEE6F\t0x87DE\n0xEE70\t0x87B2\n0xEE71\t0x8935\n0xEE72\t0x8933\n0xEE73\t0x893C\n0xEE74\t0x893E\n0xEE75\t0x8941\n0xEE76\t0x8952\n0xEE77\t0x8937\n0xEE78\t0x8942\n0xEE79\t0x89AD\n0xEE7A\t0x89AF\n0xEE7B\t0x89AE\n0xEE7C\t0x89F2\n0xEE7D\t0x89F3\n0xEE7E\t0x8B1E\n0xEEA1\t0x8B18\n0xEEA2\t0x8B16\n0xEEA3\t0x8B11\n0xEEA4\t0x8B05\n0xEEA5\t0x8B0B\n0xEEA6\t0x8B22\n0xEEA7\t0x8B0F\n0xEEA8\t0x8B12\n0xEEA9\t0x8B15\n0xEEAA\t0x8B07\n0xEEAB\t0x8B0D\n0xEEAC\t0x8B08\n0xEEAD\t0x8B06\n0xEEAE\t0x8B1C\n0xEEAF\t0x8B13\n0xEEB0\t0x8B1A\n0xEEB1\t0x8C4F\n0xEEB2\t0x8C70\n0xEEB3\t0x8C72\n0xEEB4\t0x8C71\n0xEEB5\t0x8C6F\n0xEEB6\t0x8C95\n0xEEB7\t0x8C94\n0xEEB8\t0x8CF9\n0xEEB9\t0x8D6F\n0xEEBA\t0x8E4E\n0xEEBB\t0x8E4D\n0xEEBC\t0x8E53\n0xEEBD\t0x8E50\n0xEEBE\t0x8E4C\n0xEEBF\t0x8E47\n0xEEC0\t0x8F43\n0xEEC1\t0x8F40\n0xEEC2\t0x9085\n0xEEC3\t0x907E\n0xEEC4\t0x9138\n0xEEC5\t0x919A\n0xEEC6\t0x91A2\n0xEEC7\t0x919B\n0xEEC8\t0x9199\n0xEEC9\t0x919F\n0xEECA\t0x91A1\n0xEECB\t0x919D\n0xEECC\t0x91A0\n0xEECD\t0x93A1\n0xEECE\t0x9383\n0xEECF\t0x93AF\n0xEED0\t0x9364\n0xEED1\t0x9356\n0xEED2\t0x9347\n0xEED3\t0x937C\n0xEED4\t0x9358\n0xEED5\t0x935C\n0xEED6\t0x9376\n0xEED7\t0x9349\n0xEED8\t0x9350\n0xEED9\t0x9351\n0xEEDA\t0x9360\n0xEEDB\t0x936D\n0xEEDC\t0x938F\n0xEEDD\t0x934C\n0xEEDE\t0x936A\n0xEEDF\t0x9379\n0xEEE0\t0x9357\n0xEEE1\t0x9355\n0xEEE2\t0x9352\n0xEEE3\t0x934F\n0xEEE4\t0x9371\n0xEEE5\t0x9377\n0xEEE6\t0x937B\n0xEEE7\t0x9361\n0xEEE8\t0x935E\n0xEEE9\t0x9363\n0xEEEA\t0x9367\n0xEEEB\t0x9380\n0xEEEC\t0x934E\n0xEEED\t0x9359\n0xEEEE\t0x95C7\n0xEEEF\t0x95C0\n0xEEF0\t0x95C9\n0xEEF1\t0x95C3\n0xEEF2\t0x95C5\n0xEEF3\t0x95B7\n0xEEF4\t0x96AE\n0xEEF5\t0x96B0\n0xEEF6\t0x96AC\n0xEEF7\t0x9720\n0xEEF8\t0x971F\n0xEEF9\t0x9718\n0xEEFA\t0x971D\n0xEEFB\t0x9719\n0xEEFC\t0x979A\n0xEEFD\t0x97A1\n0xEEFE\t0x979C\n0xEF40\t0x979E\n0xEF41\t0x979D\n0xEF42\t0x97D5\n0xEF43\t0x97D4\n0xEF44\t0x97F1\n0xEF45\t0x9841\n0xEF46\t0x9844\n0xEF47\t0x984A\n0xEF48\t0x9849\n0xEF49\t0x9845\n0xEF4A\t0x9843\n0xEF4B\t0x9925\n0xEF4C\t0x992B\n0xEF4D\t0x992C\n0xEF4E\t0x992A\n0xEF4F\t0x9933\n0xEF50\t0x9932\n0xEF51\t0x992F\n0xEF52\t0x992D\n0xEF53\t0x9931\n0xEF54\t0x9930\n0xEF55\t0x9998\n0xEF56\t0x99A3\n0xEF57\t0x99A1\n0xEF58\t0x9A02\n0xEF59\t0x99FA\n0xEF5A\t0x99F4\n0xEF5B\t0x99F7\n0xEF5C\t0x99F9\n0xEF5D\t0x99F8\n0xEF5E\t0x99F6\n0xEF5F\t0x99FB\n0xEF60\t0x99FD\n0xEF61\t0x99FE\n0xEF62\t0x99FC\n0xEF63\t0x9A03\n0xEF64\t0x9ABE\n0xEF65\t0x9AFE\n0xEF66\t0x9AFD\n0xEF67\t0x9B01\n0xEF68\t0x9AFC\n0xEF69\t0x9B48\n0xEF6A\t0x9B9A\n0xEF6B\t0x9BA8\n0xEF6C\t0x9B9E\n0xEF6D\t0x9B9B\n0xEF6E\t0x9BA6\n0xEF6F\t0x9BA1\n0xEF70\t0x9BA5\n0xEF71\t0x9BA4\n0xEF72\t0x9B86\n0xEF73\t0x9BA2\n0xEF74\t0x9BA0\n0xEF75\t0x9BAF\n0xEF76\t0x9D33\n0xEF77\t0x9D41\n0xEF78\t0x9D67\n0xEF79\t0x9D36\n0xEF7A\t0x9D2E\n0xEF7B\t0x9D2F\n0xEF7C\t0x9D31\n0xEF7D\t0x9D38\n0xEF7E\t0x9D30\n0xEFA1\t0x9D45\n0xEFA2\t0x9D42\n0xEFA3\t0x9D43\n0xEFA4\t0x9D3E\n0xEFA5\t0x9D37\n0xEFA6\t0x9D40\n0xEFA7\t0x9D3D\n0xEFA8\t0x7FF5\n0xEFA9\t0x9D2D\n0xEFAA\t0x9E8A\n0xEFAB\t0x9E89\n0xEFAC\t0x9E8D\n0xEFAD\t0x9EB0\n0xEFAE\t0x9EC8\n0xEFAF\t0x9EDA\n0xEFB0\t0x9EFB\n0xEFB1\t0x9EFF\n0xEFB2\t0x9F24\n0xEFB3\t0x9F23\n0xEFB4\t0x9F22\n0xEFB5\t0x9F54\n0xEFB6\t0x9FA0\n0xEFB7\t0x5131\n0xEFB8\t0x512D\n0xEFB9\t0x512E\n0xEFBA\t0x5698\n0xEFBB\t0x569C\n0xEFBC\t0x5697\n0xEFBD\t0x569A\n0xEFBE\t0x569D\n0xEFBF\t0x5699\n0xEFC0\t0x5970\n0xEFC1\t0x5B3C\n0xEFC2\t0x5C69\n0xEFC3\t0x5C6A\n0xEFC4\t0x5DC0\n0xEFC5\t0x5E6D\n0xEFC6\t0x5E6E\n0xEFC7\t0x61D8\n0xEFC8\t0x61DF\n0xEFC9\t0x61ED\n0xEFCA\t0x61EE\n0xEFCB\t0x61F1\n0xEFCC\t0x61EA\n0xEFCD\t0x61F0\n0xEFCE\t0x61EB\n0xEFCF\t0x61D6\n0xEFD0\t0x61E9\n0xEFD1\t0x64FF\n0xEFD2\t0x6504\n0xEFD3\t0x64FD\n0xEFD4\t0x64F8\n0xEFD5\t0x6501\n0xEFD6\t0x6503\n0xEFD7\t0x64FC\n0xEFD8\t0x6594\n0xEFD9\t0x65DB\n0xEFDA\t0x66DA\n0xEFDB\t0x66DB\n0xEFDC\t0x66D8\n0xEFDD\t0x6AC5\n0xEFDE\t0x6AB9\n0xEFDF\t0x6ABD\n0xEFE0\t0x6AE1\n0xEFE1\t0x6AC6\n0xEFE2\t0x6ABA\n0xEFE3\t0x6AB6\n0xEFE4\t0x6AB7\n0xEFE5\t0x6AC7\n0xEFE6\t0x6AB4\n0xEFE7\t0x6AAD\n0xEFE8\t0x6B5E\n0xEFE9\t0x6BC9\n0xEFEA\t0x6C0B\n0xEFEB\t0x7007\n0xEFEC\t0x700C\n0xEFED\t0x700D\n0xEFEE\t0x7001\n0xEFEF\t0x7005\n0xEFF0\t0x7014\n0xEFF1\t0x700E\n0xEFF2\t0x6FFF\n0xEFF3\t0x7000\n0xEFF4\t0x6FFB\n0xEFF5\t0x7026\n0xEFF6\t0x6FFC\n0xEFF7\t0x6FF7\n0xEFF8\t0x700A\n0xEFF9\t0x7201\n0xEFFA\t0x71FF\n0xEFFB\t0x71F9\n0xEFFC\t0x7203\n0xEFFD\t0x71FD\n0xEFFE\t0x7376\n0xF040\t0x74B8\n0xF041\t0x74C0\n0xF042\t0x74B5\n0xF043\t0x74C1\n0xF044\t0x74BE\n0xF045\t0x74B6\n0xF046\t0x74BB\n0xF047\t0x74C2\n0xF048\t0x7514\n0xF049\t0x7513\n0xF04A\t0x765C\n0xF04B\t0x7664\n0xF04C\t0x7659\n0xF04D\t0x7650\n0xF04E\t0x7653\n0xF04F\t0x7657\n0xF050\t0x765A\n0xF051\t0x76A6\n0xF052\t0x76BD\n0xF053\t0x76EC\n0xF054\t0x77C2\n0xF055\t0x77BA\n0xF056\t0x78FF\n0xF057\t0x790C\n0xF058\t0x7913\n0xF059\t0x7914\n0xF05A\t0x7909\n0xF05B\t0x7910\n0xF05C\t0x7912\n0xF05D\t0x7911\n0xF05E\t0x79AD\n0xF05F\t0x79AC\n0xF060\t0x7A5F\n0xF061\t0x7C1C\n0xF062\t0x7C29\n0xF063\t0x7C19\n0xF064\t0x7C20\n0xF065\t0x7C1F\n0xF066\t0x7C2D\n0xF067\t0x7C1D\n0xF068\t0x7C26\n0xF069\t0x7C28\n0xF06A\t0x7C22\n0xF06B\t0x7C25\n0xF06C\t0x7C30\n0xF06D\t0x7E5C\n0xF06E\t0x7E50\n0xF06F\t0x7E56\n0xF070\t0x7E63\n0xF071\t0x7E58\n0xF072\t0x7E62\n0xF073\t0x7E5F\n0xF074\t0x7E51\n0xF075\t0x7E60\n0xF076\t0x7E57\n0xF077\t0x7E53\n0xF078\t0x7FB5\n0xF079\t0x7FB3\n0xF07A\t0x7FF7\n0xF07B\t0x7FF8\n0xF07C\t0x8075\n0xF07D\t0x81D1\n0xF07E\t0x81D2\n0xF0A1\t0x81D0\n0xF0A2\t0x825F\n0xF0A3\t0x825E\n0xF0A4\t0x85B4\n0xF0A5\t0x85C6\n0xF0A6\t0x85C0\n0xF0A7\t0x85C3\n0xF0A8\t0x85C2\n0xF0A9\t0x85B3\n0xF0AA\t0x85B5\n0xF0AB\t0x85BD\n0xF0AC\t0x85C7\n0xF0AD\t0x85C4\n0xF0AE\t0x85BF\n0xF0AF\t0x85CB\n0xF0B0\t0x85CE\n0xF0B1\t0x85C8\n0xF0B2\t0x85C5\n0xF0B3\t0x85B1\n0xF0B4\t0x85B6\n0xF0B5\t0x85D2\n0xF0B6\t0x8624\n0xF0B7\t0x85B8\n0xF0B8\t0x85B7\n0xF0B9\t0x85BE\n0xF0BA\t0x8669\n0xF0BB\t0x87E7\n0xF0BC\t0x87E6\n0xF0BD\t0x87E2\n0xF0BE\t0x87DB\n0xF0BF\t0x87EB\n0xF0C0\t0x87EA\n0xF0C1\t0x87E5\n0xF0C2\t0x87DF\n0xF0C3\t0x87F3\n0xF0C4\t0x87E4\n0xF0C5\t0x87D4\n0xF0C6\t0x87DC\n0xF0C7\t0x87D3\n0xF0C8\t0x87ED\n0xF0C9\t0x87D8\n0xF0CA\t0x87E3\n0xF0CB\t0x87A4\n0xF0CC\t0x87D7\n0xF0CD\t0x87D9\n0xF0CE\t0x8801\n0xF0CF\t0x87F4\n0xF0D0\t0x87E8\n0xF0D1\t0x87DD\n0xF0D2\t0x8953\n0xF0D3\t0x894B\n0xF0D4\t0x894F\n0xF0D5\t0x894C\n0xF0D6\t0x8946\n0xF0D7\t0x8950\n0xF0D8\t0x8951\n0xF0D9\t0x8949\n0xF0DA\t0x8B2A\n0xF0DB\t0x8B27\n0xF0DC\t0x8B23\n0xF0DD\t0x8B33\n0xF0DE\t0x8B30\n0xF0DF\t0x8B35\n0xF0E0\t0x8B47\n0xF0E1\t0x8B2F\n0xF0E2\t0x8B3C\n0xF0E3\t0x8B3E\n0xF0E4\t0x8B31\n0xF0E5\t0x8B25\n0xF0E6\t0x8B37\n0xF0E7\t0x8B26\n0xF0E8\t0x8B36\n0xF0E9\t0x8B2E\n0xF0EA\t0x8B24\n0xF0EB\t0x8B3B\n0xF0EC\t0x8B3D\n0xF0ED\t0x8B3A\n0xF0EE\t0x8C42\n0xF0EF\t0x8C75\n0xF0F0\t0x8C99\n0xF0F1\t0x8C98\n0xF0F2\t0x8C97\n0xF0F3\t0x8CFE\n0xF0F4\t0x8D04\n0xF0F5\t0x8D02\n0xF0F6\t0x8D00\n0xF0F7\t0x8E5C\n0xF0F8\t0x8E62\n0xF0F9\t0x8E60\n0xF0FA\t0x8E57\n0xF0FB\t0x8E56\n0xF0FC\t0x8E5E\n0xF0FD\t0x8E65\n0xF0FE\t0x8E67\n0xF140\t0x8E5B\n0xF141\t0x8E5A\n0xF142\t0x8E61\n0xF143\t0x8E5D\n0xF144\t0x8E69\n0xF145\t0x8E54\n0xF146\t0x8F46\n0xF147\t0x8F47\n0xF148\t0x8F48\n0xF149\t0x8F4B\n0xF14A\t0x9128\n0xF14B\t0x913A\n0xF14C\t0x913B\n0xF14D\t0x913E\n0xF14E\t0x91A8\n0xF14F\t0x91A5\n0xF150\t0x91A7\n0xF151\t0x91AF\n0xF152\t0x91AA\n0xF153\t0x93B5\n0xF154\t0x938C\n0xF155\t0x9392\n0xF156\t0x93B7\n0xF157\t0x939B\n0xF158\t0x939D\n0xF159\t0x9389\n0xF15A\t0x93A7\n0xF15B\t0x938E\n0xF15C\t0x93AA\n0xF15D\t0x939E\n0xF15E\t0x93A6\n0xF15F\t0x9395\n0xF160\t0x9388\n0xF161\t0x9399\n0xF162\t0x939F\n0xF163\t0x938D\n0xF164\t0x93B1\n0xF165\t0x9391\n0xF166\t0x93B2\n0xF167\t0x93A4\n0xF168\t0x93A8\n0xF169\t0x93B4\n0xF16A\t0x93A3\n0xF16B\t0x93A5\n0xF16C\t0x95D2\n0xF16D\t0x95D3\n0xF16E\t0x95D1\n0xF16F\t0x96B3\n0xF170\t0x96D7\n0xF171\t0x96DA\n0xF172\t0x5DC2\n0xF173\t0x96DF\n0xF174\t0x96D8\n0xF175\t0x96DD\n0xF176\t0x9723\n0xF177\t0x9722\n0xF178\t0x9725\n0xF179\t0x97AC\n0xF17A\t0x97AE\n0xF17B\t0x97A8\n0xF17C\t0x97AB\n0xF17D\t0x97A4\n0xF17E\t0x97AA\n0xF1A1\t0x97A2\n0xF1A2\t0x97A5\n0xF1A3\t0x97D7\n0xF1A4\t0x97D9\n0xF1A5\t0x97D6\n0xF1A6\t0x97D8\n0xF1A7\t0x97FA\n0xF1A8\t0x9850\n0xF1A9\t0x9851\n0xF1AA\t0x9852\n0xF1AB\t0x98B8\n0xF1AC\t0x9941\n0xF1AD\t0x993C\n0xF1AE\t0x993A\n0xF1AF\t0x9A0F\n0xF1B0\t0x9A0B\n0xF1B1\t0x9A09\n0xF1B2\t0x9A0D\n0xF1B3\t0x9A04\n0xF1B4\t0x9A11\n0xF1B5\t0x9A0A\n0xF1B6\t0x9A05\n0xF1B7\t0x9A07\n0xF1B8\t0x9A06\n0xF1B9\t0x9AC0\n0xF1BA\t0x9ADC\n0xF1BB\t0x9B08\n0xF1BC\t0x9B04\n0xF1BD\t0x9B05\n0xF1BE\t0x9B29\n0xF1BF\t0x9B35\n0xF1C0\t0x9B4A\n0xF1C1\t0x9B4C\n0xF1C2\t0x9B4B\n0xF1C3\t0x9BC7\n0xF1C4\t0x9BC6\n0xF1C5\t0x9BC3\n0xF1C6\t0x9BBF\n0xF1C7\t0x9BC1\n0xF1C8\t0x9BB5\n0xF1C9\t0x9BB8\n0xF1CA\t0x9BD3\n0xF1CB\t0x9BB6\n0xF1CC\t0x9BC4\n0xF1CD\t0x9BB9\n0xF1CE\t0x9BBD\n0xF1CF\t0x9D5C\n0xF1D0\t0x9D53\n0xF1D1\t0x9D4F\n0xF1D2\t0x9D4A\n0xF1D3\t0x9D5B\n0xF1D4\t0x9D4B\n0xF1D5\t0x9D59\n0xF1D6\t0x9D56\n0xF1D7\t0x9D4C\n0xF1D8\t0x9D57\n0xF1D9\t0x9D52\n0xF1DA\t0x9D54\n0xF1DB\t0x9D5F\n0xF1DC\t0x9D58\n0xF1DD\t0x9D5A\n0xF1DE\t0x9E8E\n0xF1DF\t0x9E8C\n0xF1E0\t0x9EDF\n0xF1E1\t0x9F01\n0xF1E2\t0x9F00\n0xF1E3\t0x9F16\n0xF1E4\t0x9F25\n0xF1E5\t0x9F2B\n0xF1E6\t0x9F2A\n0xF1E7\t0x9F29\n0xF1E8\t0x9F28\n0xF1E9\t0x9F4C\n0xF1EA\t0x9F55\n0xF1EB\t0x5134\n0xF1EC\t0x5135\n0xF1ED\t0x5296\n0xF1EE\t0x52F7\n0xF1EF\t0x53B4\n0xF1F0\t0x56AB\n0xF1F1\t0x56AD\n0xF1F2\t0x56A6\n0xF1F3\t0x56A7\n0xF1F4\t0x56AA\n0xF1F5\t0x56AC\n0xF1F6\t0x58DA\n0xF1F7\t0x58DD\n0xF1F8\t0x58DB\n0xF1F9\t0x5912\n0xF1FA\t0x5B3D\n0xF1FB\t0x5B3E\n0xF1FC\t0x5B3F\n0xF1FD\t0x5DC3\n0xF1FE\t0x5E70\n0xF240\t0x5FBF\n0xF241\t0x61FB\n0xF242\t0x6507\n0xF243\t0x6510\n0xF244\t0x650D\n0xF245\t0x6509\n0xF246\t0x650C\n0xF247\t0x650E\n0xF248\t0x6584\n0xF249\t0x65DE\n0xF24A\t0x65DD\n0xF24B\t0x66DE\n0xF24C\t0x6AE7\n0xF24D\t0x6AE0\n0xF24E\t0x6ACC\n0xF24F\t0x6AD1\n0xF250\t0x6AD9\n0xF251\t0x6ACB\n0xF252\t0x6ADF\n0xF253\t0x6ADC\n0xF254\t0x6AD0\n0xF255\t0x6AEB\n0xF256\t0x6ACF\n0xF257\t0x6ACD\n0xF258\t0x6ADE\n0xF259\t0x6B60\n0xF25A\t0x6BB0\n0xF25B\t0x6C0C\n0xF25C\t0x7019\n0xF25D\t0x7027\n0xF25E\t0x7020\n0xF25F\t0x7016\n0xF260\t0x702B\n0xF261\t0x7021\n0xF262\t0x7022\n0xF263\t0x7023\n0xF264\t0x7029\n0xF265\t0x7017\n0xF266\t0x7024\n0xF267\t0x701C\n0xF268\t0x702A\n0xF269\t0x720C\n0xF26A\t0x720A\n0xF26B\t0x7207\n0xF26C\t0x7202\n0xF26D\t0x7205\n0xF26E\t0x72A5\n0xF26F\t0x72A6\n0xF270\t0x72A4\n0xF271\t0x72A3\n0xF272\t0x72A1\n0xF273\t0x74CB\n0xF274\t0x74C5\n0xF275\t0x74B7\n0xF276\t0x74C3\n0xF277\t0x7516\n0xF278\t0x7660\n0xF279\t0x77C9\n0xF27A\t0x77CA\n0xF27B\t0x77C4\n0xF27C\t0x77F1\n0xF27D\t0x791D\n0xF27E\t0x791B\n0xF2A1\t0x7921\n0xF2A2\t0x791C\n0xF2A3\t0x7917\n0xF2A4\t0x791E\n0xF2A5\t0x79B0\n0xF2A6\t0x7A67\n0xF2A7\t0x7A68\n0xF2A8\t0x7C33\n0xF2A9\t0x7C3C\n0xF2AA\t0x7C39\n0xF2AB\t0x7C2C\n0xF2AC\t0x7C3B\n0xF2AD\t0x7CEC\n0xF2AE\t0x7CEA\n0xF2AF\t0x7E76\n0xF2B0\t0x7E75\n0xF2B1\t0x7E78\n0xF2B2\t0x7E70\n0xF2B3\t0x7E77\n0xF2B4\t0x7E6F\n0xF2B5\t0x7E7A\n0xF2B6\t0x7E72\n0xF2B7\t0x7E74\n0xF2B8\t0x7E68\n0xF2B9\t0x7F4B\n0xF2BA\t0x7F4A\n0xF2BB\t0x7F83\n0xF2BC\t0x7F86\n0xF2BD\t0x7FB7\n0xF2BE\t0x7FFD\n0xF2BF\t0x7FFE\n0xF2C0\t0x8078\n0xF2C1\t0x81D7\n0xF2C2\t0x81D5\n0xF2C3\t0x8264\n0xF2C4\t0x8261\n0xF2C5\t0x8263\n0xF2C6\t0x85EB\n0xF2C7\t0x85F1\n0xF2C8\t0x85ED\n0xF2C9\t0x85D9\n0xF2CA\t0x85E1\n0xF2CB\t0x85E8\n0xF2CC\t0x85DA\n0xF2CD\t0x85D7\n0xF2CE\t0x85EC\n0xF2CF\t0x85F2\n0xF2D0\t0x85F8\n0xF2D1\t0x85D8\n0xF2D2\t0x85DF\n0xF2D3\t0x85E3\n0xF2D4\t0x85DC\n0xF2D5\t0x85D1\n0xF2D6\t0x85F0\n0xF2D7\t0x85E6\n0xF2D8\t0x85EF\n0xF2D9\t0x85DE\n0xF2DA\t0x85E2\n0xF2DB\t0x8800\n0xF2DC\t0x87FA\n0xF2DD\t0x8803\n0xF2DE\t0x87F6\n0xF2DF\t0x87F7\n0xF2E0\t0x8809\n0xF2E1\t0x880C\n0xF2E2\t0x880B\n0xF2E3\t0x8806\n0xF2E4\t0x87FC\n0xF2E5\t0x8808\n0xF2E6\t0x87FF\n0xF2E7\t0x880A\n0xF2E8\t0x8802\n0xF2E9\t0x8962\n0xF2EA\t0x895A\n0xF2EB\t0x895B\n0xF2EC\t0x8957\n0xF2ED\t0x8961\n0xF2EE\t0x895C\n0xF2EF\t0x8958\n0xF2F0\t0x895D\n0xF2F1\t0x8959\n0xF2F2\t0x8988\n0xF2F3\t0x89B7\n0xF2F4\t0x89B6\n0xF2F5\t0x89F6\n0xF2F6\t0x8B50\n0xF2F7\t0x8B48\n0xF2F8\t0x8B4A\n0xF2F9\t0x8B40\n0xF2FA\t0x8B53\n0xF2FB\t0x8B56\n0xF2FC\t0x8B54\n0xF2FD\t0x8B4B\n0xF2FE\t0x8B55\n0xF340\t0x8B51\n0xF341\t0x8B42\n0xF342\t0x8B52\n0xF343\t0x8B57\n0xF344\t0x8C43\n0xF345\t0x8C77\n0xF346\t0x8C76\n0xF347\t0x8C9A\n0xF348\t0x8D06\n0xF349\t0x8D07\n0xF34A\t0x8D09\n0xF34B\t0x8DAC\n0xF34C\t0x8DAA\n0xF34D\t0x8DAD\n0xF34E\t0x8DAB\n0xF34F\t0x8E6D\n0xF350\t0x8E78\n0xF351\t0x8E73\n0xF352\t0x8E6A\n0xF353\t0x8E6F\n0xF354\t0x8E7B\n0xF355\t0x8EC2\n0xF356\t0x8F52\n0xF357\t0x8F51\n0xF358\t0x8F4F\n0xF359\t0x8F50\n0xF35A\t0x8F53\n0xF35B\t0x8FB4\n0xF35C\t0x9140\n0xF35D\t0x913F\n0xF35E\t0x91B0\n0xF35F\t0x91AD\n0xF360\t0x93DE\n0xF361\t0x93C7\n0xF362\t0x93CF\n0xF363\t0x93C2\n0xF364\t0x93DA\n0xF365\t0x93D0\n0xF366\t0x93F9\n0xF367\t0x93EC\n0xF368\t0x93CC\n0xF369\t0x93D9\n0xF36A\t0x93A9\n0xF36B\t0x93E6\n0xF36C\t0x93CA\n0xF36D\t0x93D4\n0xF36E\t0x93EE\n0xF36F\t0x93E3\n0xF370\t0x93D5\n0xF371\t0x93C4\n0xF372\t0x93CE\n0xF373\t0x93C0\n0xF374\t0x93D2\n0xF375\t0x93E7\n0xF376\t0x957D\n0xF377\t0x95DA\n0xF378\t0x95DB\n0xF379\t0x96E1\n0xF37A\t0x9729\n0xF37B\t0x972B\n0xF37C\t0x972C\n0xF37D\t0x9728\n0xF37E\t0x9726\n0xF3A1\t0x97B3\n0xF3A2\t0x97B7\n0xF3A3\t0x97B6\n0xF3A4\t0x97DD\n0xF3A5\t0x97DE\n0xF3A6\t0x97DF\n0xF3A7\t0x985C\n0xF3A8\t0x9859\n0xF3A9\t0x985D\n0xF3AA\t0x9857\n0xF3AB\t0x98BF\n0xF3AC\t0x98BD\n0xF3AD\t0x98BB\n0xF3AE\t0x98BE\n0xF3AF\t0x9948\n0xF3B0\t0x9947\n0xF3B1\t0x9943\n0xF3B2\t0x99A6\n0xF3B3\t0x99A7\n0xF3B4\t0x9A1A\n0xF3B5\t0x9A15\n0xF3B6\t0x9A25\n0xF3B7\t0x9A1D\n0xF3B8\t0x9A24\n0xF3B9\t0x9A1B\n0xF3BA\t0x9A22\n0xF3BB\t0x9A20\n0xF3BC\t0x9A27\n0xF3BD\t0x9A23\n0xF3BE\t0x9A1E\n0xF3BF\t0x9A1C\n0xF3C0\t0x9A14\n0xF3C1\t0x9AC2\n0xF3C2\t0x9B0B\n0xF3C3\t0x9B0A\n0xF3C4\t0x9B0E\n0xF3C5\t0x9B0C\n0xF3C6\t0x9B37\n0xF3C7\t0x9BEA\n0xF3C8\t0x9BEB\n0xF3C9\t0x9BE0\n0xF3CA\t0x9BDE\n0xF3CB\t0x9BE4\n0xF3CC\t0x9BE6\n0xF3CD\t0x9BE2\n0xF3CE\t0x9BF0\n0xF3CF\t0x9BD4\n0xF3D0\t0x9BD7\n0xF3D1\t0x9BEC\n0xF3D2\t0x9BDC\n0xF3D3\t0x9BD9\n0xF3D4\t0x9BE5\n0xF3D5\t0x9BD5\n0xF3D6\t0x9BE1\n0xF3D7\t0x9BDA\n0xF3D8\t0x9D77\n0xF3D9\t0x9D81\n0xF3DA\t0x9D8A\n0xF3DB\t0x9D84\n0xF3DC\t0x9D88\n0xF3DD\t0x9D71\n0xF3DE\t0x9D80\n0xF3DF\t0x9D78\n0xF3E0\t0x9D86\n0xF3E1\t0x9D8B\n0xF3E2\t0x9D8C\n0xF3E3\t0x9D7D\n0xF3E4\t0x9D6B\n0xF3E5\t0x9D74\n0xF3E6\t0x9D75\n0xF3E7\t0x9D70\n0xF3E8\t0x9D69\n0xF3E9\t0x9D85\n0xF3EA\t0x9D73\n0xF3EB\t0x9D7B\n0xF3EC\t0x9D82\n0xF3ED\t0x9D6F\n0xF3EE\t0x9D79\n0xF3EF\t0x9D7F\n0xF3F0\t0x9D87\n0xF3F1\t0x9D68\n0xF3F2\t0x9E94\n0xF3F3\t0x9E91\n0xF3F4\t0x9EC0\n0xF3F5\t0x9EFC\n0xF3F6\t0x9F2D\n0xF3F7\t0x9F40\n0xF3F8\t0x9F41\n0xF3F9\t0x9F4D\n0xF3FA\t0x9F56\n0xF3FB\t0x9F57\n0xF3FC\t0x9F58\n0xF3FD\t0x5337\n0xF3FE\t0x56B2\n0xF440\t0x56B5\n0xF441\t0x56B3\n0xF442\t0x58E3\n0xF443\t0x5B45\n0xF444\t0x5DC6\n0xF445\t0x5DC7\n0xF446\t0x5EEE\n0xF447\t0x5EEF\n0xF448\t0x5FC0\n0xF449\t0x5FC1\n0xF44A\t0x61F9\n0xF44B\t0x6517\n0xF44C\t0x6516\n0xF44D\t0x6515\n0xF44E\t0x6513\n0xF44F\t0x65DF\n0xF450\t0x66E8\n0xF451\t0x66E3\n0xF452\t0x66E4\n0xF453\t0x6AF3\n0xF454\t0x6AF0\n0xF455\t0x6AEA\n0xF456\t0x6AE8\n0xF457\t0x6AF9\n0xF458\t0x6AF1\n0xF459\t0x6AEE\n0xF45A\t0x6AEF\n0xF45B\t0x703C\n0xF45C\t0x7035\n0xF45D\t0x702F\n0xF45E\t0x7037\n0xF45F\t0x7034\n0xF460\t0x7031\n0xF461\t0x7042\n0xF462\t0x7038\n0xF463\t0x703F\n0xF464\t0x703A\n0xF465\t0x7039\n0xF466\t0x7040\n0xF467\t0x703B\n0xF468\t0x7033\n0xF469\t0x7041\n0xF46A\t0x7213\n0xF46B\t0x7214\n0xF46C\t0x72A8\n0xF46D\t0x737D\n0xF46E\t0x737C\n0xF46F\t0x74BA\n0xF470\t0x76AB\n0xF471\t0x76AA\n0xF472\t0x76BE\n0xF473\t0x76ED\n0xF474\t0x77CC\n0xF475\t0x77CE\n0xF476\t0x77CF\n0xF477\t0x77CD\n0xF478\t0x77F2\n0xF479\t0x7925\n0xF47A\t0x7923\n0xF47B\t0x7927\n0xF47C\t0x7928\n0xF47D\t0x7924\n0xF47E\t0x7929\n0xF4A1\t0x79B2\n0xF4A2\t0x7A6E\n0xF4A3\t0x7A6C\n0xF4A4\t0x7A6D\n0xF4A5\t0x7AF7\n0xF4A6\t0x7C49\n0xF4A7\t0x7C48\n0xF4A8\t0x7C4A\n0xF4A9\t0x7C47\n0xF4AA\t0x7C45\n0xF4AB\t0x7CEE\n0xF4AC\t0x7E7B\n0xF4AD\t0x7E7E\n0xF4AE\t0x7E81\n0xF4AF\t0x7E80\n0xF4B0\t0x7FBA\n0xF4B1\t0x7FFF\n0xF4B2\t0x8079\n0xF4B3\t0x81DB\n0xF4B4\t0x81D9\n0xF4B5\t0x820B\n0xF4B6\t0x8268\n0xF4B7\t0x8269\n0xF4B8\t0x8622\n0xF4B9\t0x85FF\n0xF4BA\t0x8601\n0xF4BB\t0x85FE\n0xF4BC\t0x861B\n0xF4BD\t0x8600\n0xF4BE\t0x85F6\n0xF4BF\t0x8604\n0xF4C0\t0x8609\n0xF4C1\t0x8605\n0xF4C2\t0x860C\n0xF4C3\t0x85FD\n0xF4C4\t0x8819\n0xF4C5\t0x8810\n0xF4C6\t0x8811\n0xF4C7\t0x8817\n0xF4C8\t0x8813\n0xF4C9\t0x8816\n0xF4CA\t0x8963\n0xF4CB\t0x8966\n0xF4CC\t0x89B9\n0xF4CD\t0x89F7\n0xF4CE\t0x8B60\n0xF4CF\t0x8B6A\n0xF4D0\t0x8B5D\n0xF4D1\t0x8B68\n0xF4D2\t0x8B63\n0xF4D3\t0x8B65\n0xF4D4\t0x8B67\n0xF4D5\t0x8B6D\n0xF4D6\t0x8DAE\n0xF4D7\t0x8E86\n0xF4D8\t0x8E88\n0xF4D9\t0x8E84\n0xF4DA\t0x8F59\n0xF4DB\t0x8F56\n0xF4DC\t0x8F57\n0xF4DD\t0x8F55\n0xF4DE\t0x8F58\n0xF4DF\t0x8F5A\n0xF4E0\t0x908D\n0xF4E1\t0x9143\n0xF4E2\t0x9141\n0xF4E3\t0x91B7\n0xF4E4\t0x91B5\n0xF4E5\t0x91B2\n0xF4E6\t0x91B3\n0xF4E7\t0x940B\n0xF4E8\t0x9413\n0xF4E9\t0x93FB\n0xF4EA\t0x9420\n0xF4EB\t0x940F\n0xF4EC\t0x9414\n0xF4ED\t0x93FE\n0xF4EE\t0x9415\n0xF4EF\t0x9410\n0xF4F0\t0x9428\n0xF4F1\t0x9419\n0xF4F2\t0x940D\n0xF4F3\t0x93F5\n0xF4F4\t0x9400\n0xF4F5\t0x93F7\n0xF4F6\t0x9407\n0xF4F7\t0x940E\n0xF4F8\t0x9416\n0xF4F9\t0x9412\n0xF4FA\t0x93FA\n0xF4FB\t0x9409\n0xF4FC\t0x93F8\n0xF4FD\t0x940A\n0xF4FE\t0x93FF\n0xF540\t0x93FC\n0xF541\t0x940C\n0xF542\t0x93F6\n0xF543\t0x9411\n0xF544\t0x9406\n0xF545\t0x95DE\n0xF546\t0x95E0\n0xF547\t0x95DF\n0xF548\t0x972E\n0xF549\t0x972F\n0xF54A\t0x97B9\n0xF54B\t0x97BB\n0xF54C\t0x97FD\n0xF54D\t0x97FE\n0xF54E\t0x9860\n0xF54F\t0x9862\n0xF550\t0x9863\n0xF551\t0x985F\n0xF552\t0x98C1\n0xF553\t0x98C2\n0xF554\t0x9950\n0xF555\t0x994E\n0xF556\t0x9959\n0xF557\t0x994C\n0xF558\t0x994B\n0xF559\t0x9953\n0xF55A\t0x9A32\n0xF55B\t0x9A34\n0xF55C\t0x9A31\n0xF55D\t0x9A2C\n0xF55E\t0x9A2A\n0xF55F\t0x9A36\n0xF560\t0x9A29\n0xF561\t0x9A2E\n0xF562\t0x9A38\n0xF563\t0x9A2D\n0xF564\t0x9AC7\n0xF565\t0x9ACA\n0xF566\t0x9AC6\n0xF567\t0x9B10\n0xF568\t0x9B12\n0xF569\t0x9B11\n0xF56A\t0x9C0B\n0xF56B\t0x9C08\n0xF56C\t0x9BF7\n0xF56D\t0x9C05\n0xF56E\t0x9C12\n0xF56F\t0x9BF8\n0xF570\t0x9C40\n0xF571\t0x9C07\n0xF572\t0x9C0E\n0xF573\t0x9C06\n0xF574\t0x9C17\n0xF575\t0x9C14\n0xF576\t0x9C09\n0xF577\t0x9D9F\n0xF578\t0x9D99\n0xF579\t0x9DA4\n0xF57A\t0x9D9D\n0xF57B\t0x9D92\n0xF57C\t0x9D98\n0xF57D\t0x9D90\n0xF57E\t0x9D9B\n0xF5A1\t0x9DA0\n0xF5A2\t0x9D94\n0xF5A3\t0x9D9C\n0xF5A4\t0x9DAA\n0xF5A5\t0x9D97\n0xF5A6\t0x9DA1\n0xF5A7\t0x9D9A\n0xF5A8\t0x9DA2\n0xF5A9\t0x9DA8\n0xF5AA\t0x9D9E\n0xF5AB\t0x9DA3\n0xF5AC\t0x9DBF\n0xF5AD\t0x9DA9\n0xF5AE\t0x9D96\n0xF5AF\t0x9DA6\n0xF5B0\t0x9DA7\n0xF5B1\t0x9E99\n0xF5B2\t0x9E9B\n0xF5B3\t0x9E9A\n0xF5B4\t0x9EE5\n0xF5B5\t0x9EE4\n0xF5B6\t0x9EE7\n0xF5B7\t0x9EE6\n0xF5B8\t0x9F30\n0xF5B9\t0x9F2E\n0xF5BA\t0x9F5B\n0xF5BB\t0x9F60\n0xF5BC\t0x9F5E\n0xF5BD\t0x9F5D\n0xF5BE\t0x9F59\n0xF5BF\t0x9F91\n0xF5C0\t0x513A\n0xF5C1\t0x5139\n0xF5C2\t0x5298\n0xF5C3\t0x5297\n0xF5C4\t0x56C3\n0xF5C5\t0x56BD\n0xF5C6\t0x56BE\n0xF5C7\t0x5B48\n0xF5C8\t0x5B47\n0xF5C9\t0x5DCB\n0xF5CA\t0x5DCF\n0xF5CB\t0x5EF1\n0xF5CC\t0x61FD\n0xF5CD\t0x651B\n0xF5CE\t0x6B02\n0xF5CF\t0x6AFC\n0xF5D0\t0x6B03\n0xF5D1\t0x6AF8\n0xF5D2\t0x6B00\n0xF5D3\t0x7043\n0xF5D4\t0x7044\n0xF5D5\t0x704A\n0xF5D6\t0x7048\n0xF5D7\t0x7049\n0xF5D8\t0x7045\n0xF5D9\t0x7046\n0xF5DA\t0x721D\n0xF5DB\t0x721A\n0xF5DC\t0x7219\n0xF5DD\t0x737E\n0xF5DE\t0x7517\n0xF5DF\t0x766A\n0xF5E0\t0x77D0\n0xF5E1\t0x792D\n0xF5E2\t0x7931\n0xF5E3\t0x792F\n0xF5E4\t0x7C54\n0xF5E5\t0x7C53\n0xF5E6\t0x7CF2\n0xF5E7\t0x7E8A\n0xF5E8\t0x7E87\n0xF5E9\t0x7E88\n0xF5EA\t0x7E8B\n0xF5EB\t0x7E86\n0xF5EC\t0x7E8D\n0xF5ED\t0x7F4D\n0xF5EE\t0x7FBB\n0xF5EF\t0x8030\n0xF5F0\t0x81DD\n0xF5F1\t0x8618\n0xF5F2\t0x862A\n0xF5F3\t0x8626\n0xF5F4\t0x861F\n0xF5F5\t0x8623\n0xF5F6\t0x861C\n0xF5F7\t0x8619\n0xF5F8\t0x8627\n0xF5F9\t0x862E\n0xF5FA\t0x8621\n0xF5FB\t0x8620\n0xF5FC\t0x8629\n0xF5FD\t0x861E\n0xF5FE\t0x8625\n0xF640\t0x8829\n0xF641\t0x881D\n0xF642\t0x881B\n0xF643\t0x8820\n0xF644\t0x8824\n0xF645\t0x881C\n0xF646\t0x882B\n0xF647\t0x884A\n0xF648\t0x896D\n0xF649\t0x8969\n0xF64A\t0x896E\n0xF64B\t0x896B\n0xF64C\t0x89FA\n0xF64D\t0x8B79\n0xF64E\t0x8B78\n0xF64F\t0x8B45\n0xF650\t0x8B7A\n0xF651\t0x8B7B\n0xF652\t0x8D10\n0xF653\t0x8D14\n0xF654\t0x8DAF\n0xF655\t0x8E8E\n0xF656\t0x8E8C\n0xF657\t0x8F5E\n0xF658\t0x8F5B\n0xF659\t0x8F5D\n0xF65A\t0x9146\n0xF65B\t0x9144\n0xF65C\t0x9145\n0xF65D\t0x91B9\n0xF65E\t0x943F\n0xF65F\t0x943B\n0xF660\t0x9436\n0xF661\t0x9429\n0xF662\t0x943D\n0xF663\t0x943C\n0xF664\t0x9430\n0xF665\t0x9439\n0xF666\t0x942A\n0xF667\t0x9437\n0xF668\t0x942C\n0xF669\t0x9440\n0xF66A\t0x9431\n0xF66B\t0x95E5\n0xF66C\t0x95E4\n0xF66D\t0x95E3\n0xF66E\t0x9735\n0xF66F\t0x973A\n0xF670\t0x97BF\n0xF671\t0x97E1\n0xF672\t0x9864\n0xF673\t0x98C9\n0xF674\t0x98C6\n0xF675\t0x98C0\n0xF676\t0x9958\n0xF677\t0x9956\n0xF678\t0x9A39\n0xF679\t0x9A3D\n0xF67A\t0x9A46\n0xF67B\t0x9A44\n0xF67C\t0x9A42\n0xF67D\t0x9A41\n0xF67E\t0x9A3A\n0xF6A1\t0x9A3F\n0xF6A2\t0x9ACD\n0xF6A3\t0x9B15\n0xF6A4\t0x9B17\n0xF6A5\t0x9B18\n0xF6A6\t0x9B16\n0xF6A7\t0x9B3A\n0xF6A8\t0x9B52\n0xF6A9\t0x9C2B\n0xF6AA\t0x9C1D\n0xF6AB\t0x9C1C\n0xF6AC\t0x9C2C\n0xF6AD\t0x9C23\n0xF6AE\t0x9C28\n0xF6AF\t0x9C29\n0xF6B0\t0x9C24\n0xF6B1\t0x9C21\n0xF6B2\t0x9DB7\n0xF6B3\t0x9DB6\n0xF6B4\t0x9DBC\n0xF6B5\t0x9DC1\n0xF6B6\t0x9DC7\n0xF6B7\t0x9DCA\n0xF6B8\t0x9DCF\n0xF6B9\t0x9DBE\n0xF6BA\t0x9DC5\n0xF6BB\t0x9DC3\n0xF6BC\t0x9DBB\n0xF6BD\t0x9DB5\n0xF6BE\t0x9DCE\n0xF6BF\t0x9DB9\n0xF6C0\t0x9DBA\n0xF6C1\t0x9DAC\n0xF6C2\t0x9DC8\n0xF6C3\t0x9DB1\n0xF6C4\t0x9DAD\n0xF6C5\t0x9DCC\n0xF6C6\t0x9DB3\n0xF6C7\t0x9DCD\n0xF6C8\t0x9DB2\n0xF6C9\t0x9E7A\n0xF6CA\t0x9E9C\n0xF6CB\t0x9EEB\n0xF6CC\t0x9EEE\n0xF6CD\t0x9EED\n0xF6CE\t0x9F1B\n0xF6CF\t0x9F18\n0xF6D0\t0x9F1A\n0xF6D1\t0x9F31\n0xF6D2\t0x9F4E\n0xF6D3\t0x9F65\n0xF6D4\t0x9F64\n0xF6D5\t0x9F92\n0xF6D6\t0x4EB9\n0xF6D7\t0x56C6\n0xF6D8\t0x56C5\n0xF6D9\t0x56CB\n0xF6DA\t0x5971\n0xF6DB\t0x5B4B\n0xF6DC\t0x5B4C\n0xF6DD\t0x5DD5\n0xF6DE\t0x5DD1\n0xF6DF\t0x5EF2\n0xF6E0\t0x6521\n0xF6E1\t0x6520\n0xF6E2\t0x6526\n0xF6E3\t0x6522\n0xF6E4\t0x6B0B\n0xF6E5\t0x6B08\n0xF6E6\t0x6B09\n0xF6E7\t0x6C0D\n0xF6E8\t0x7055\n0xF6E9\t0x7056\n0xF6EA\t0x7057\n0xF6EB\t0x7052\n0xF6EC\t0x721E\n0xF6ED\t0x721F\n0xF6EE\t0x72A9\n0xF6EF\t0x737F\n0xF6F0\t0x74D8\n0xF6F1\t0x74D5\n0xF6F2\t0x74D9\n0xF6F3\t0x74D7\n0xF6F4\t0x766D\n0xF6F5\t0x76AD\n0xF6F6\t0x7935\n0xF6F7\t0x79B4\n0xF6F8\t0x7A70\n0xF6F9\t0x7A71\n0xF6FA\t0x7C57\n0xF6FB\t0x7C5C\n0xF6FC\t0x7C59\n0xF6FD\t0x7C5B\n0xF6FE\t0x7C5A\n0xF740\t0x7CF4\n0xF741\t0x7CF1\n0xF742\t0x7E91\n0xF743\t0x7F4F\n0xF744\t0x7F87\n0xF745\t0x81DE\n0xF746\t0x826B\n0xF747\t0x8634\n0xF748\t0x8635\n0xF749\t0x8633\n0xF74A\t0x862C\n0xF74B\t0x8632\n0xF74C\t0x8636\n0xF74D\t0x882C\n0xF74E\t0x8828\n0xF74F\t0x8826\n0xF750\t0x882A\n0xF751\t0x8825\n0xF752\t0x8971\n0xF753\t0x89BF\n0xF754\t0x89BE\n0xF755\t0x89FB\n0xF756\t0x8B7E\n0xF757\t0x8B84\n0xF758\t0x8B82\n0xF759\t0x8B86\n0xF75A\t0x8B85\n0xF75B\t0x8B7F\n0xF75C\t0x8D15\n0xF75D\t0x8E95\n0xF75E\t0x8E94\n0xF75F\t0x8E9A\n0xF760\t0x8E92\n0xF761\t0x8E90\n0xF762\t0x8E96\n0xF763\t0x8E97\n0xF764\t0x8F60\n0xF765\t0x8F62\n0xF766\t0x9147\n0xF767\t0x944C\n0xF768\t0x9450\n0xF769\t0x944A\n0xF76A\t0x944B\n0xF76B\t0x944F\n0xF76C\t0x9447\n0xF76D\t0x9445\n0xF76E\t0x9448\n0xF76F\t0x9449\n0xF770\t0x9446\n0xF771\t0x973F\n0xF772\t0x97E3\n0xF773\t0x986A\n0xF774\t0x9869\n0xF775\t0x98CB\n0xF776\t0x9954\n0xF777\t0x995B\n0xF778\t0x9A4E\n0xF779\t0x9A53\n0xF77A\t0x9A54\n0xF77B\t0x9A4C\n0xF77C\t0x9A4F\n0xF77D\t0x9A48\n0xF77E\t0x9A4A\n0xF7A1\t0x9A49\n0xF7A2\t0x9A52\n0xF7A3\t0x9A50\n0xF7A4\t0x9AD0\n0xF7A5\t0x9B19\n0xF7A6\t0x9B2B\n0xF7A7\t0x9B3B\n0xF7A8\t0x9B56\n0xF7A9\t0x9B55\n0xF7AA\t0x9C46\n0xF7AB\t0x9C48\n0xF7AC\t0x9C3F\n0xF7AD\t0x9C44\n0xF7AE\t0x9C39\n0xF7AF\t0x9C33\n0xF7B0\t0x9C41\n0xF7B1\t0x9C3C\n0xF7B2\t0x9C37\n0xF7B3\t0x9C34\n0xF7B4\t0x9C32\n0xF7B5\t0x9C3D\n0xF7B6\t0x9C36\n0xF7B7\t0x9DDB\n0xF7B8\t0x9DD2\n0xF7B9\t0x9DDE\n0xF7BA\t0x9DDA\n0xF7BB\t0x9DCB\n0xF7BC\t0x9DD0\n0xF7BD\t0x9DDC\n0xF7BE\t0x9DD1\n0xF7BF\t0x9DDF\n0xF7C0\t0x9DE9\n0xF7C1\t0x9DD9\n0xF7C2\t0x9DD8\n0xF7C3\t0x9DD6\n0xF7C4\t0x9DF5\n0xF7C5\t0x9DD5\n0xF7C6\t0x9DDD\n0xF7C7\t0x9EB6\n0xF7C8\t0x9EF0\n0xF7C9\t0x9F35\n0xF7CA\t0x9F33\n0xF7CB\t0x9F32\n0xF7CC\t0x9F42\n0xF7CD\t0x9F6B\n0xF7CE\t0x9F95\n0xF7CF\t0x9FA2\n0xF7D0\t0x513D\n0xF7D1\t0x5299\n0xF7D2\t0x58E8\n0xF7D3\t0x58E7\n0xF7D4\t0x5972\n0xF7D5\t0x5B4D\n0xF7D6\t0x5DD8\n0xF7D7\t0x882F\n0xF7D8\t0x5F4F\n0xF7D9\t0x6201\n0xF7DA\t0x6203\n0xF7DB\t0x6204\n0xF7DC\t0x6529\n0xF7DD\t0x6525\n0xF7DE\t0x6596\n0xF7DF\t0x66EB\n0xF7E0\t0x6B11\n0xF7E1\t0x6B12\n0xF7E2\t0x6B0F\n0xF7E3\t0x6BCA\n0xF7E4\t0x705B\n0xF7E5\t0x705A\n0xF7E6\t0x7222\n0xF7E7\t0x7382\n0xF7E8\t0x7381\n0xF7E9\t0x7383\n0xF7EA\t0x7670\n0xF7EB\t0x77D4\n0xF7EC\t0x7C67\n0xF7ED\t0x7C66\n0xF7EE\t0x7E95\n0xF7EF\t0x826C\n0xF7F0\t0x863A\n0xF7F1\t0x8640\n0xF7F2\t0x8639\n0xF7F3\t0x863C\n0xF7F4\t0x8631\n0xF7F5\t0x863B\n0xF7F6\t0x863E\n0xF7F7\t0x8830\n0xF7F8\t0x8832\n0xF7F9\t0x882E\n0xF7FA\t0x8833\n0xF7FB\t0x8976\n0xF7FC\t0x8974\n0xF7FD\t0x8973\n0xF7FE\t0x89FE\n0xF840\t0x8B8C\n0xF841\t0x8B8E\n0xF842\t0x8B8B\n0xF843\t0x8B88\n0xF844\t0x8C45\n0xF845\t0x8D19\n0xF846\t0x8E98\n0xF847\t0x8F64\n0xF848\t0x8F63\n0xF849\t0x91BC\n0xF84A\t0x9462\n0xF84B\t0x9455\n0xF84C\t0x945D\n0xF84D\t0x9457\n0xF84E\t0x945E\n0xF84F\t0x97C4\n0xF850\t0x97C5\n0xF851\t0x9800\n0xF852\t0x9A56\n0xF853\t0x9A59\n0xF854\t0x9B1E\n0xF855\t0x9B1F\n0xF856\t0x9B20\n0xF857\t0x9C52\n0xF858\t0x9C58\n0xF859\t0x9C50\n0xF85A\t0x9C4A\n0xF85B\t0x9C4D\n0xF85C\t0x9C4B\n0xF85D\t0x9C55\n0xF85E\t0x9C59\n0xF85F\t0x9C4C\n0xF860\t0x9C4E\n0xF861\t0x9DFB\n0xF862\t0x9DF7\n0xF863\t0x9DEF\n0xF864\t0x9DE3\n0xF865\t0x9DEB\n0xF866\t0x9DF8\n0xF867\t0x9DE4\n0xF868\t0x9DF6\n0xF869\t0x9DE1\n0xF86A\t0x9DEE\n0xF86B\t0x9DE6\n0xF86C\t0x9DF2\n0xF86D\t0x9DF0\n0xF86E\t0x9DE2\n0xF86F\t0x9DEC\n0xF870\t0x9DF4\n0xF871\t0x9DF3\n0xF872\t0x9DE8\n0xF873\t0x9DED\n0xF874\t0x9EC2\n0xF875\t0x9ED0\n0xF876\t0x9EF2\n0xF877\t0x9EF3\n0xF878\t0x9F06\n0xF879\t0x9F1C\n0xF87A\t0x9F38\n0xF87B\t0x9F37\n0xF87C\t0x9F36\n0xF87D\t0x9F43\n0xF87E\t0x9F4F\n0xF8A1\t0x9F71\n0xF8A2\t0x9F70\n0xF8A3\t0x9F6E\n0xF8A4\t0x9F6F\n0xF8A5\t0x56D3\n0xF8A6\t0x56CD\n0xF8A7\t0x5B4E\n0xF8A8\t0x5C6D\n0xF8A9\t0x652D\n0xF8AA\t0x66ED\n0xF8AB\t0x66EE\n0xF8AC\t0x6B13\n0xF8AD\t0x705F\n0xF8AE\t0x7061\n0xF8AF\t0x705D\n0xF8B0\t0x7060\n0xF8B1\t0x7223\n0xF8B2\t0x74DB\n0xF8B3\t0x74E5\n0xF8B4\t0x77D5\n0xF8B5\t0x7938\n0xF8B6\t0x79B7\n0xF8B7\t0x79B6\n0xF8B8\t0x7C6A\n0xF8B9\t0x7E97\n0xF8BA\t0x7F89\n0xF8BB\t0x826D\n0xF8BC\t0x8643\n0xF8BD\t0x8838\n0xF8BE\t0x8837\n0xF8BF\t0x8835\n0xF8C0\t0x884B\n0xF8C1\t0x8B94\n0xF8C2\t0x8B95\n0xF8C3\t0x8E9E\n0xF8C4\t0x8E9F\n0xF8C5\t0x8EA0\n0xF8C6\t0x8E9D\n0xF8C7\t0x91BE\n0xF8C8\t0x91BD\n0xF8C9\t0x91C2\n0xF8CA\t0x946B\n0xF8CB\t0x9468\n0xF8CC\t0x9469\n0xF8CD\t0x96E5\n0xF8CE\t0x9746\n0xF8CF\t0x9743\n0xF8D0\t0x9747\n0xF8D1\t0x97C7\n0xF8D2\t0x97E5\n0xF8D3\t0x9A5E\n0xF8D4\t0x9AD5\n0xF8D5\t0x9B59\n0xF8D6\t0x9C63\n0xF8D7\t0x9C67\n0xF8D8\t0x9C66\n0xF8D9\t0x9C62\n0xF8DA\t0x9C5E\n0xF8DB\t0x9C60\n0xF8DC\t0x9E02\n0xF8DD\t0x9DFE\n0xF8DE\t0x9E07\n0xF8DF\t0x9E03\n0xF8E0\t0x9E06\n0xF8E1\t0x9E05\n0xF8E2\t0x9E00\n0xF8E3\t0x9E01\n0xF8E4\t0x9E09\n0xF8E5\t0x9DFF\n0xF8E6\t0x9DFD\n0xF8E7\t0x9E04\n0xF8E8\t0x9EA0\n0xF8E9\t0x9F1E\n0xF8EA\t0x9F46\n0xF8EB\t0x9F74\n0xF8EC\t0x9F75\n0xF8ED\t0x9F76\n0xF8EE\t0x56D4\n0xF8EF\t0x652E\n0xF8F0\t0x65B8\n0xF8F1\t0x6B18\n0xF8F2\t0x6B19\n0xF8F3\t0x6B17\n0xF8F4\t0x6B1A\n0xF8F5\t0x7062\n0xF8F6\t0x7226\n0xF8F7\t0x72AA\n0xF8F8\t0x77D8\n0xF8F9\t0x77D9\n0xF8FA\t0x7939\n0xF8FB\t0x7C69\n0xF8FC\t0x7C6B\n0xF8FD\t0x7CF6\n0xF8FE\t0x7E9A\n0xF940\t0x7E98\n0xF941\t0x7E9B\n0xF942\t0x7E99\n0xF943\t0x81E0\n0xF944\t0x81E1\n0xF945\t0x8646\n0xF946\t0x8647\n0xF947\t0x8648\n0xF948\t0x8979\n0xF949\t0x897A\n0xF94A\t0x897C\n0xF94B\t0x897B\n0xF94C\t0x89FF\n0xF94D\t0x8B98\n0xF94E\t0x8B99\n0xF94F\t0x8EA5\n0xF950\t0x8EA4\n0xF951\t0x8EA3\n0xF952\t0x946E\n0xF953\t0x946D\n0xF954\t0x946F\n0xF955\t0x9471\n0xF956\t0x9473\n0xF957\t0x9749\n0xF958\t0x9872\n0xF959\t0x995F\n0xF95A\t0x9C68\n0xF95B\t0x9C6E\n0xF95C\t0x9C6D\n0xF95D\t0x9E0B\n0xF95E\t0x9E0D\n0xF95F\t0x9E10\n0xF960\t0x9E0F\n0xF961\t0x9E12\n0xF962\t0x9E11\n0xF963\t0x9EA1\n0xF964\t0x9EF5\n0xF965\t0x9F09\n0xF966\t0x9F47\n0xF967\t0x9F78\n0xF968\t0x9F7B\n0xF969\t0x9F7A\n0xF96A\t0x9F79\n0xF96B\t0x571E\n0xF96C\t0x7066\n0xF96D\t0x7C6F\n0xF96E\t0x883C\n0xF96F\t0x8DB2\n0xF970\t0x8EA6\n0xF971\t0x91C3\n0xF972\t0x9474\n0xF973\t0x9478\n0xF974\t0x9476\n0xF975\t0x9475\n0xF976\t0x9A60\n0xF977\t0x9C74\n0xF978\t0x9C73\n0xF979\t0x9C71\n0xF97A\t0x9C75\n0xF97B\t0x9E14\n0xF97C\t0x9E13\n0xF97D\t0x9EF6\n0xF97E\t0x9F0A\n0xF9A1\t0x9FA4\n0xF9A2\t0x7068\n0xF9A3\t0x7065\n0xF9A4\t0x7CF7\n0xF9A5\t0x866A\n0xF9A6\t0x883E\n0xF9A7\t0x883D\n0xF9A8\t0x883F\n0xF9A9\t0x8B9E\n0xF9AA\t0x8C9C\n0xF9AB\t0x8EA9\n0xF9AC\t0x8EC9\n0xF9AD\t0x974B\n0xF9AE\t0x9873\n0xF9AF\t0x9874\n0xF9B0\t0x98CC\n0xF9B1\t0x9961\n0xF9B2\t0x99AB\n0xF9B3\t0x9A64\n0xF9B4\t0x9A66\n0xF9B5\t0x9A67\n0xF9B6\t0x9B24\n0xF9B7\t0x9E15\n0xF9B8\t0x9E17\n0xF9B9\t0x9F48\n0xF9BA\t0x6207\n0xF9BB\t0x6B1E\n0xF9BC\t0x7227\n0xF9BD\t0x864C\n0xF9BE\t0x8EA8\n0xF9BF\t0x9482\n0xF9C0\t0x9480\n0xF9C1\t0x9481\n0xF9C2\t0x9A69\n0xF9C3\t0x9A68\n0xF9C4\t0x9B2E\n0xF9C5\t0x9E19\n0xF9C6\t0x7229\n0xF9C7\t0x864B\n0xF9C8\t0x8B9F\n0xF9C9\t0x9483\n0xF9CA\t0x9C79\n0xF9CB\t0x9EB7\n0xF9CC\t0x7675\n0xF9CD\t0x9A6B\n0xF9CE\t0x9C7A\n0xF9CF\t0x9E1D\n0xF9D0\t0x7069\n0xF9D1\t0x706A\n0xF9D2\t0x9EA4\n0xF9D3\t0x9F7E\n0xF9D4\t0x9F49\n0xF9D5\t0x9F98\n0xF9D6\t0x7881\n0xF9D7\t0x92B9\n0xF9D8\t0x88CF\n0xF9D9\t0x58BB\n0xF9DA\t0x6052\n0xF9DB\t0x7CA7\n0xF9DC\t0x5AFA\n0xF9DD\t0x2554\n0xF9DE\t0x2566\n0xF9DF\t0x2557\n0xF9E0\t0x2560\n0xF9E1\t0x256C\n0xF9E2\t0x2563\n0xF9E3\t0x255A\n0xF9E4\t0x2569\n0xF9E5\t0x255D\n0xF9E6\t0x2552\n0xF9E7\t0x2564\n0xF9E8\t0x2555\n0xF9E9\t0x255E\n0xF9EA\t0x256A\n0xF9EB\t0x2561\n0xF9EC\t0x2558\n0xF9ED\t0x2567\n0xF9EE\t0x255B\n0xF9EF\t0x2553\n0xF9F0\t0x2565\n0xF9F1\t0x2556\n0xF9F2\t0x255F\n0xF9F3\t0x256B\n0xF9F4\t0x2562\n0xF9F5\t0x2559\n0xF9F6\t0x2568\n0xF9F7\t0x255C\n0xF9F8\t0x2551\n0xF9F9\t0x2550\n0xF9FA\t0x256D\n0xF9FB\t0x256E\n0xF9FC\t0x2570\n0xF9FD\t0x256F\n0xF9FE\t0xFFED\n0xFA40\t0x20547\n0xFA41\t0x92DB\n0xFA42\t0x205DF\n0xFA43\t0x23FC5\n0xFA44\t0x854C\n0xFA45\t0x42B5\n0xFA46\t0x73EF\n0xFA47\t0x51B5\n0xFA48\t0x3649\n0xFA49\t0x24942\n0xFA4A\t0x289E4\n0xFA4B\t0x9344\n0xFA4C\t0x219DB\n0xFA4D\t0x82EE\n0xFA4E\t0x23CC8\n0xFA4F\t0x783C\n0xFA50\t0x6744\n0xFA51\t0x62DF\n0xFA52\t0x24933\n0xFA53\t0x289AA\n0xFA54\t0x202A0\n0xFA55\t0x26BB3\n0xFA56\t0x21305\n0xFA57\t0x4FAB\n0xFA58\t0x224ED\n0xFA59\t0x5008\n0xFA5A\t0x26D29\n0xFA5B\t0x27A84\n0xFA5C\t0x23600\n0xFA5D\t0x24AB1\n0xFA5E\t0x22513\n0xFA60\t0x2037E\n0xFA61\t0x5FA4\n0xFA62\t0x20380\n0xFA63\t0x20347\n0xFA64\t0x6EDB\n0xFA65\t0x2041F\n0xFA67\t0x5101\n0xFA68\t0x347A\n0xFA69\t0x510E\n0xFA6A\t0x986C\n0xFA6B\t0x3743\n0xFA6C\t0x8416\n0xFA6D\t0x249A4\n0xFA6E\t0x20487\n0xFA6F\t0x5160\n0xFA70\t0x233B4\n0xFA71\t0x516A\n0xFA72\t0x20BFF\n0xFA73\t0x220FC\n0xFA74\t0x202E5\n0xFA75\t0x22530\n0xFA76\t0x2058E\n0xFA77\t0x23233\n0xFA78\t0x21983\n0xFA79\t0x5B82\n0xFA7A\t0x877D\n0xFA7B\t0x205B3\n0xFA7C\t0x23C99\n0xFA7D\t0x51B2\n0xFA7E\t0x51B8\n0xFAA1\t0x9D34\n0xFAA2\t0x51C9\n0xFAA3\t0x51CF\n0xFAA4\t0x51D1\n0xFAA5\t0x3CDC\n0xFAA6\t0x51D3\n0xFAA7\t0x24AA6\n0xFAA8\t0x51B3\n0xFAA9\t0x51E2\n0xFAAA\t0x5342\n0xFAAB\t0x51ED\n0xFAAC\t0x83CD\n0xFAAD\t0x693E\n0xFAAE\t0x2372D\n0xFAAF\t0x5F7B\n0xFAB0\t0x520B\n0xFAB1\t0x5226\n0xFAB2\t0x523C\n0xFAB3\t0x52B5\n0xFAB4\t0x5257\n0xFAB5\t0x5294\n0xFAB6\t0x52B9\n0xFAB7\t0x52C5\n0xFAB8\t0x7C15\n0xFAB9\t0x8542\n0xFABA\t0x52E0\n0xFABB\t0x860D\n0xFABC\t0x26B13\n0xFABE\t0x28ADE\n0xFABF\t0x5549\n0xFAC0\t0x6ED9\n0xFAC1\t0x23F80\n0xFAC2\t0x20954\n0xFAC3\t0x23FEC\n0xFAC4\t0x5333\n0xFAC6\t0x20BE2\n0xFAC7\t0x6CCB\n0xFAC8\t0x21726\n0xFAC9\t0x681B\n0xFACA\t0x73D5\n0xFACB\t0x604A\n0xFACC\t0x3EAA\n0xFACD\t0x38CC\n0xFACE\t0x216E8\n0xFACF\t0x71DD\n0xFAD0\t0x44A2\n0xFAD1\t0x536D\n0xFAD2\t0x5374\n0xFAD3\t0x286AB\n0xFAD4\t0x537E\n0xFAD6\t0x21596\n0xFAD7\t0x21613\n0xFAD8\t0x77E6\n0xFAD9\t0x5393\n0xFADA\t0x28A9B\n0xFADB\t0x53A0\n0xFADC\t0x53AB\n0xFADD\t0x53AE\n0xFADE\t0x73A7\n0xFADF\t0x25772\n0xFAE0\t0x3F59\n0xFAE1\t0x739C\n0xFAE2\t0x53C1\n0xFAE3\t0x53C5\n0xFAE4\t0x6C49\n0xFAE5\t0x4E49\n0xFAE6\t0x57FE\n0xFAE7\t0x53D9\n0xFAE8\t0x3AAB\n0xFAE9\t0x20B8F\n0xFAEA\t0x53E0\n0xFAEB\t0x23FEB\n0xFAEC\t0x22DA3\n0xFAED\t0x53F6\n0xFAEE\t0x20C77\n0xFAEF\t0x5413\n0xFAF0\t0x7079\n0xFAF1\t0x552B\n0xFAF2\t0x6657\n0xFAF3\t0x6D5B\n0xFAF4\t0x546D\n0xFAF5\t0x26B53\n0xFAF6\t0x20D74\n0xFAF7\t0x555D\n0xFAF8\t0x548F\n0xFAF9\t0x54A4\n0xFAFA\t0x47A6\n0xFAFB\t0x2170D\n0xFAFC\t0x20EDD\n0xFAFD\t0x3DB4\n0xFAFE\t0x20D4D\n0xFB40\t0x289BC\n0xFB41\t0x22698\n0xFB42\t0x5547\n0xFB43\t0x4CED\n0xFB44\t0x542F\n0xFB45\t0x7417\n0xFB46\t0x5586\n0xFB47\t0x55A9\n0xFB49\t0x218D7\n0xFB4A\t0x2403A\n0xFB4B\t0x4552\n0xFB4C\t0x24435\n0xFB4D\t0x66B3\n0xFB4E\t0x210B4\n0xFB4F\t0x5637\n0xFB50\t0x66CD\n0xFB51\t0x2328A\n0xFB52\t0x66A4\n0xFB53\t0x66AD\n0xFB54\t0x564D\n0xFB55\t0x564F\n0xFB56\t0x78F1\n0xFB57\t0x56F1\n0xFB58\t0x9787\n0xFB59\t0x53FE\n0xFB5A\t0x5700\n0xFB5B\t0x56EF\n0xFB5C\t0x56ED\n0xFB5D\t0x28B66\n0xFB5E\t0x3623\n0xFB5F\t0x2124F\n0xFB60\t0x5746\n0xFB61\t0x241A5\n0xFB62\t0x6C6E\n0xFB63\t0x708B\n0xFB64\t0x5742\n0xFB65\t0x36B1\n0xFB66\t0x26C7E\n0xFB67\t0x57E6\n0xFB68\t0x21416\n0xFB69\t0x5803\n0xFB6A\t0x21454\n0xFB6B\t0x24363\n0xFB6C\t0x5826\n0xFB6D\t0x24BF5\n0xFB6E\t0x585C\n0xFB6F\t0x58AA\n0xFB70\t0x3561\n0xFB71\t0x58E0\n0xFB72\t0x58DC\n0xFB73\t0x2123C\n0xFB74\t0x58FB\n0xFB75\t0x5BFF\n0xFB76\t0x5743\n0xFB77\t0x2A150\n0xFB78\t0x24278\n0xFB79\t0x93D3\n0xFB7A\t0x35A1\n0xFB7B\t0x591F\n0xFB7C\t0x68A6\n0xFB7D\t0x36C3\n0xFB7E\t0x6E59\n0xFBA1\t0x2163E\n0xFBA2\t0x5A24\n0xFBA3\t0x5553\n0xFBA4\t0x21692\n0xFBA5\t0x8505\n0xFBA6\t0x59C9\n0xFBA7\t0x20D4E\n0xFBA8\t0x26C81\n0xFBA9\t0x26D2A\n0xFBAA\t0x217DC\n0xFBAB\t0x59D9\n0xFBAC\t0x217FB\n0xFBAD\t0x217B2\n0xFBAE\t0x26DA6\n0xFBAF\t0x6D71\n0xFBB0\t0x21828\n0xFBB1\t0x216D5\n0xFBB2\t0x59F9\n0xFBB3\t0x26E45\n0xFBB4\t0x5AAB\n0xFBB5\t0x5A63\n0xFBB6\t0x36E6\n0xFBB7\t0x249A9\n0xFBB9\t0x3708\n0xFBBA\t0x5A96\n0xFBBB\t0x7465\n0xFBBC\t0x5AD3\n0xFBBD\t0x26FA1\n0xFBBE\t0x22554\n0xFBBF\t0x3D85\n0xFBC0\t0x21911\n0xFBC1\t0x3732\n0xFBC2\t0x216B8\n0xFBC3\t0x5E83\n0xFBC4\t0x52D0\n0xFBC5\t0x5B76\n0xFBC6\t0x6588\n0xFBC7\t0x5B7C\n0xFBC8\t0x27A0E\n0xFBC9\t0x4004\n0xFBCA\t0x485D\n0xFBCB\t0x20204\n0xFBCC\t0x5BD5\n0xFBCD\t0x6160\n0xFBCE\t0x21A34\n0xFBCF\t0x259CC\n0xFBD0\t0x205A5\n0xFBD1\t0x5BF3\n0xFBD2\t0x5B9D\n0xFBD3\t0x4D10\n0xFBD4\t0x5C05\n0xFBD5\t0x21B44\n0xFBD6\t0x5C13\n0xFBD7\t0x73CE\n0xFBD8\t0x5C14\n0xFBD9\t0x21CA5\n0xFBDA\t0x26B28\n0xFBDB\t0x5C49\n0xFBDC\t0x48DD\n0xFBDD\t0x5C85\n0xFBDE\t0x5CE9\n0xFBDF\t0x5CEF\n0xFBE0\t0x5D8B\n0xFBE1\t0x21DF9\n0xFBE2\t0x21E37\n0xFBE3\t0x5D10\n0xFBE4\t0x5D18\n0xFBE5\t0x5D46\n0xFBE6\t0x21EA4\n0xFBE7\t0x5CBA\n0xFBE8\t0x5DD7\n0xFBE9\t0x82FC\n0xFBEA\t0x382D\n0xFBEB\t0x24901\n0xFBEC\t0x22049\n0xFBED\t0x22173\n0xFBEE\t0x8287\n0xFBEF\t0x3836\n0xFBF0\t0x3BC2\n0xFBF1\t0x5E2E\n0xFBF2\t0x6A8A\n0xFBF4\t0x5E7A\n0xFBF5\t0x244BC\n0xFBF6\t0x20CD3\n0xFBF7\t0x53A6\n0xFBF8\t0x4EB7\n0xFBFA\t0x53A8\n0xFBFB\t0x21771\n0xFBFC\t0x5E09\n0xFBFD\t0x5EF4\n0xFBFE\t0x28482\n0xFC40\t0x5EF9\n0xFC41\t0x5EFB\n0xFC42\t0x38A0\n0xFC43\t0x5EFC\n0xFC44\t0x683E\n0xFC45\t0x941B\n0xFC46\t0x5F0D\n0xFC47\t0x201C1\n0xFC48\t0x2F894\n0xFC49\t0x3ADE\n0xFC4A\t0x48AE\n0xFC4B\t0x2133A\n0xFC4C\t0x5F3A\n0xFC4D\t0x26888\n0xFC4E\t0x223D0\n0xFC50\t0x22471\n0xFC51\t0x5F63\n0xFC52\t0x97BD\n0xFC53\t0x26E6E\n0xFC54\t0x5F72\n0xFC55\t0x9340\n0xFC56\t0x28A36\n0xFC57\t0x5FA7\n0xFC58\t0x5DB6\n0xFC59\t0x3D5F\n0xFC5A\t0x25250\n0xFC5B\t0x21F6A\n0xFC5C\t0x270F8\n0xFC5D\t0x22668\n0xFC5E\t0x91D6\n0xFC5F\t0x2029E\n0xFC60\t0x28A29\n0xFC61\t0x6031\n0xFC62\t0x6685\n0xFC63\t0x21877\n0xFC64\t0x3963\n0xFC65\t0x3DC7\n0xFC66\t0x3639\n0xFC67\t0x5790\n0xFC68\t0x227B4\n0xFC69\t0x7971\n0xFC6A\t0x3E40\n0xFC6B\t0x609E\n0xFC6D\t0x60B3\n0xFC6E\t0x24982\n0xFC6F\t0x2498F\n0xFC70\t0x27A53\n0xFC71\t0x74A4\n0xFC72\t0x50E1\n0xFC73\t0x5AA0\n0xFC74\t0x6164\n0xFC75\t0x8424\n0xFC76\t0x6142\n0xFC77\t0x2F8A6\n0xFC78\t0x26ED2\n0xFC79\t0x6181\n0xFC7A\t0x51F4\n0xFC7B\t0x20656\n0xFC7C\t0x6187\n0xFC7D\t0x5BAA\n0xFC7E\t0x23FB7\n0xFCA1\t0x2285F\n0xFCA2\t0x61D3\n0xFCA3\t0x28B9D\n0xFCA4\t0x2995D\n0xFCA5\t0x61D0\n0xFCA6\t0x3932\n0xFCA7\t0x22980\n0xFCA8\t0x228C1\n0xFCA9\t0x6023\n0xFCAA\t0x615C\n0xFCAB\t0x651E\n0xFCAC\t0x638B\n0xFCAD\t0x20118\n0xFCAE\t0x62C5\n0xFCAF\t0x21770\n0xFCB0\t0x62D5\n0xFCB1\t0x22E0D\n0xFCB2\t0x636C\n0xFCB3\t0x249DF\n0xFCB4\t0x3A17\n0xFCB5\t0x6438\n0xFCB6\t0x63F8\n0xFCB7\t0x2138E\n0xFCB8\t0x217FC\n0xFCBA\t0x6F8A\n0xFCBB\t0x22E36\n0xFCBC\t0x9814\n0xFCBD\t0x2408C\n0xFCBE\t0x2571D\n0xFCBF\t0x64E1\n0xFCC0\t0x64E5\n0xFCC1\t0x947B\n0xFCC2\t0x3A66\n0xFCC3\t0x643A\n0xFCC4\t0x3A57\n0xFCC5\t0x654D\n0xFCC6\t0x6F16\n0xFCC7\t0x24A28\n0xFCC8\t0x24A23\n0xFCC9\t0x6585\n0xFCCA\t0x656D\n0xFCCB\t0x655F\n0xFCCC\t0x2307E\n0xFCCD\t0x65B5\n0xFCCE\t0x24940\n0xFCCF\t0x4B37\n0xFCD0\t0x65D1\n0xFCD1\t0x40D8\n0xFCD2\t0x21829\n0xFCD3\t0x65E0\n0xFCD4\t0x65E3\n0xFCD5\t0x5FDF\n0xFCD6\t0x23400\n0xFCD7\t0x6618\n0xFCD8\t0x231F7\n0xFCD9\t0x231F8\n0xFCDA\t0x6644\n0xFCDB\t0x231A4\n0xFCDC\t0x231A5\n0xFCDD\t0x664B\n0xFCDE\t0x20E75\n0xFCDF\t0x6667\n0xFCE0\t0x251E6\n0xFCE1\t0x6673\n0xFCE3\t0x21E3D\n0xFCE4\t0x23231\n0xFCE5\t0x285F4\n0xFCE6\t0x231C8\n0xFCE7\t0x25313\n0xFCE8\t0x77C5\n0xFCE9\t0x228F7\n0xFCEA\t0x99A4\n0xFCEB\t0x6702\n0xFCEC\t0x2439C\n0xFCED\t0x24A21\n0xFCEE\t0x3B2B\n0xFCEF\t0x69FA\n0xFCF0\t0x237C2\n0xFCF2\t0x6767\n0xFCF3\t0x6762\n0xFCF4\t0x241CD\n0xFCF5\t0x290ED\n0xFCF6\t0x67D7\n0xFCF7\t0x44E9\n0xFCF8\t0x6822\n0xFCF9\t0x6E50\n0xFCFA\t0x923C\n0xFCFB\t0x6801\n0xFCFC\t0x233E6\n0xFCFD\t0x26DA0\n0xFCFE\t0x685D\n0xFD40\t0x2346F\n0xFD41\t0x69E1\n0xFD42\t0x6A0B\n0xFD43\t0x28ADF\n0xFD44\t0x6973\n0xFD45\t0x68C3\n0xFD46\t0x235CD\n0xFD47\t0x6901\n0xFD48\t0x6900\n0xFD49\t0x3D32\n0xFD4A\t0x3A01\n0xFD4B\t0x2363C\n0xFD4C\t0x3B80\n0xFD4D\t0x67AC\n0xFD4E\t0x6961\n0xFD4F\t0x28A4A\n0xFD50\t0x42FC\n0xFD51\t0x6936\n0xFD52\t0x6998\n0xFD53\t0x3BA1\n0xFD54\t0x203C9\n0xFD55\t0x8363\n0xFD56\t0x5090\n0xFD57\t0x69F9\n0xFD58\t0x23659\n0xFD59\t0x2212A\n0xFD5A\t0x6A45\n0xFD5B\t0x23703\n0xFD5C\t0x6A9D\n0xFD5D\t0x3BF3\n0xFD5E\t0x67B1\n0xFD5F\t0x6AC8\n0xFD60\t0x2919C\n0xFD61\t0x3C0D\n0xFD62\t0x6B1D\n0xFD63\t0x20923\n0xFD64\t0x60DE\n0xFD65\t0x6B35\n0xFD66\t0x6B74\n0xFD67\t0x227CD\n0xFD68\t0x6EB5\n0xFD69\t0x23ADB\n0xFD6A\t0x203B5\n0xFD6B\t0x21958\n0xFD6C\t0x3740\n0xFD6D\t0x5421\n0xFD6E\t0x23B5A\n0xFD6F\t0x6BE1\n0xFD70\t0x23EFC\n0xFD71\t0x6BDC\n0xFD72\t0x6C37\n0xFD73\t0x2248B\n0xFD74\t0x248F1\n0xFD75\t0x26B51\n0xFD76\t0x6C5A\n0xFD77\t0x8226\n0xFD78\t0x6C79\n0xFD79\t0x23DBC\n0xFD7A\t0x44C5\n0xFD7B\t0x23DBD\n0xFD7C\t0x241A4\n0xFD7D\t0x2490C\n0xFD7E\t0x24900\n0xFDA1\t0x23CC9\n0xFDA2\t0x36E5\n0xFDA3\t0x3CEB\n0xFDA4\t0x20D32\n0xFDA5\t0x9B83\n0xFDA6\t0x231F9\n0xFDA7\t0x22491\n0xFDA8\t0x7F8F\n0xFDA9\t0x6837\n0xFDAA\t0x26D25\n0xFDAB\t0x26DA1\n0xFDAC\t0x26DEB\n0xFDAD\t0x6D96\n0xFDAE\t0x6D5C\n0xFDAF\t0x6E7C\n0xFDB0\t0x6F04\n0xFDB1\t0x2497F\n0xFDB2\t0x24085\n0xFDB3\t0x26E72\n0xFDB4\t0x8533\n0xFDB5\t0x26F74\n0xFDB6\t0x51C7\n0xFDB9\t0x842E\n0xFDBA\t0x28B21\n0xFDBC\t0x23E2F\n0xFDBD\t0x7453\n0xFDBE\t0x23F82\n0xFDBF\t0x79CC\n0xFDC0\t0x6E4F\n0xFDC1\t0x5A91\n0xFDC2\t0x2304B\n0xFDC3\t0x6FF8\n0xFDC4\t0x370D\n0xFDC5\t0x6F9D\n0xFDC6\t0x23E30\n0xFDC7\t0x6EFA\n0xFDC8\t0x21497\n0xFDC9\t0x2403D\n0xFDCA\t0x4555\n0xFDCB\t0x93F0\n0xFDCC\t0x6F44\n0xFDCD\t0x6F5C\n0xFDCE\t0x3D4E\n0xFDCF\t0x6F74\n0xFDD0\t0x29170\n0xFDD1\t0x3D3B\n0xFDD2\t0x6F9F\n0xFDD3\t0x24144\n0xFDD4\t0x6FD3\n0xFDD5\t0x24091\n0xFDD6\t0x24155\n0xFDD7\t0x24039\n0xFDD8\t0x23FF0\n0xFDD9\t0x23FB4\n0xFDDA\t0x2413F\n0xFDDB\t0x51DF\n0xFDDC\t0x24156\n0xFDDD\t0x24157\n0xFDDE\t0x24140\n0xFDDF\t0x261DD\n0xFDE0\t0x704B\n0xFDE1\t0x707E\n0xFDE2\t0x70A7\n0xFDE3\t0x7081\n0xFDE4\t0x70CC\n0xFDE5\t0x70D5\n0xFDE6\t0x70D6\n0xFDE7\t0x70DF\n0xFDE8\t0x4104\n0xFDE9\t0x3DE8\n0xFDEA\t0x71B4\n0xFDEB\t0x7196\n0xFDEC\t0x24277\n0xFDED\t0x712B\n0xFDEE\t0x7145\n0xFDEF\t0x5A88\n0xFDF0\t0x714A\n0xFDF2\t0x5C9C\n0xFDF3\t0x24365\n0xFDF4\t0x714F\n0xFDF5\t0x9362\n0xFDF6\t0x242C1\n0xFDF7\t0x712C\n0xFDF8\t0x2445A\n0xFDF9\t0x24A27\n0xFDFA\t0x24A22\n0xFDFB\t0x71BA\n0xFDFC\t0x28BE8\n0xFDFD\t0x70BD\n0xFDFE\t0x720E\n0xFE40\t0x9442\n0xFE41\t0x7215\n0xFE42\t0x5911\n0xFE43\t0x9443\n0xFE44\t0x7224\n0xFE45\t0x9341\n0xFE46\t0x25605\n0xFE47\t0x722E\n0xFE48\t0x7240\n0xFE49\t0x24974\n0xFE4A\t0x68BD\n0xFE4B\t0x7255\n0xFE4C\t0x7257\n0xFE4D\t0x3E55\n0xFE4E\t0x23044\n0xFE4F\t0x680D\n0xFE50\t0x6F3D\n0xFE51\t0x7282\n0xFE53\t0x732B\n0xFE54\t0x24823\n0xFE55\t0x2882B\n0xFE56\t0x48ED\n0xFE57\t0x28804\n0xFE58\t0x7328\n0xFE59\t0x732E\n0xFE5A\t0x73CF\n0xFE5B\t0x73AA\n0xFE5C\t0x20C3A\n0xFE5D\t0x26A2E\n0xFE5E\t0x73C9\n0xFE5F\t0x7449\n0xFE60\t0x241E2\n0xFE61\t0x216E7\n0xFE62\t0x24A24\n0xFE63\t0x6623\n0xFE64\t0x36C5\n0xFE65\t0x249B7\n0xFE66\t0x2498D\n0xFE67\t0x249FB\n0xFE68\t0x73F7\n0xFE69\t0x7415\n0xFE6A\t0x6903\n0xFE6B\t0x24A26\n0xFE6C\t0x7439\n0xFE6D\t0x205C3\n0xFE6E\t0x3ED7\n0xFE70\t0x228AD\n0xFE71\t0x7460\n0xFE72\t0x28EB2\n0xFE73\t0x7447\n0xFE74\t0x73E4\n0xFE75\t0x7476\n0xFE76\t0x83B9\n0xFE77\t0x746C\n0xFE78\t0x3730\n0xFE79\t0x7474\n0xFE7A\t0x93F1\n0xFE7B\t0x6A2C\n0xFE7C\t0x7482\n0xFE7D\t0x4953\n0xFE7E\t0x24A8C\n0xFEA1\t0x2415F\n0xFEA2\t0x24A79\n0xFEA3\t0x28B8F\n0xFEA4\t0x5B46\n0xFEA5\t0x28C03\n0xFEA6\t0x2189E\n0xFEA7\t0x74C8\n0xFEA8\t0x21988\n0xFEA9\t0x750E\n0xFEAB\t0x751E\n0xFEAC\t0x28ED9\n0xFEAD\t0x21A4B\n0xFEAE\t0x5BD7\n0xFEAF\t0x28EAC\n0xFEB0\t0x9385\n0xFEB1\t0x754D\n0xFEB2\t0x754A\n0xFEB3\t0x7567\n0xFEB4\t0x756E\n0xFEB5\t0x24F82\n0xFEB6\t0x3F04\n0xFEB7\t0x24D13\n0xFEB8\t0x758E\n0xFEB9\t0x745D\n0xFEBA\t0x759E\n0xFEBB\t0x75B4\n0xFEBC\t0x7602\n0xFEBD\t0x762C\n0xFEBE\t0x7651\n0xFEBF\t0x764F\n0xFEC0\t0x766F\n0xFEC1\t0x7676\n0xFEC2\t0x263F5\n0xFEC3\t0x7690\n0xFEC4\t0x81EF\n0xFEC5\t0x37F8\n0xFEC6\t0x26911\n0xFEC7\t0x2690E\n0xFEC8\t0x76A1\n0xFEC9\t0x76A5\n0xFECA\t0x76B7\n0xFECB\t0x76CC\n0xFECC\t0x26F9F\n0xFECD\t0x8462\n0xFECE\t0x2509D\n0xFECF\t0x2517D\n0xFED0\t0x21E1C\n0xFED1\t0x771E\n0xFED2\t0x7726\n0xFED3\t0x7740\n0xFED4\t0x64AF\n0xFED5\t0x25220\n0xFED6\t0x7758\n0xFED7\t0x232AC\n0xFED8\t0x77AF\n0xFED9\t0x28964\n0xFEDA\t0x28968\n0xFEDB\t0x216C1\n0xFEDC\t0x77F4\n0xFEDE\t0x21376\n0xFEDF\t0x24A12\n0xFEE0\t0x68CA\n0xFEE1\t0x78AF\n0xFEE2\t0x78C7\n0xFEE3\t0x78D3\n0xFEE4\t0x96A5\n0xFEE5\t0x792E\n0xFEE6\t0x255E0\n0xFEE7\t0x78D7\n0xFEE8\t0x7934\n0xFEE9\t0x78B1\n0xFEEA\t0x2760C\n0xFEEB\t0x8FB8\n0xFEEC\t0x8884\n0xFEED\t0x28B2B\n0xFEEE\t0x26083\n0xFEEF\t0x2261C\n0xFEF0\t0x7986\n0xFEF1\t0x8900\n0xFEF2\t0x6902\n0xFEF3\t0x7980\n0xFEF4\t0x25857\n0xFEF5\t0x799D\n0xFEF6\t0x27B39\n0xFEF7\t0x793C\n0xFEF8\t0x79A9\n0xFEF9\t0x6E2A\n0xFEFA\t0x27126\n0xFEFB\t0x3EA8\n0xFEFC\t0x79C6\n0xFEFD\t0x2910D\n0xFEFE\t0x79D4\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/BIG5.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0xA140\t0x3000\n0xA141\t0xFF0C\n0xA142\t0x3001\n0xA143\t0x3002\n0xA144\t0xFF0E\n0xA145\t0x2022\n0xA146\t0xFF1B\n0xA147\t0xFF1A\n0xA148\t0xFF1F\n0xA149\t0xFF01\n0xA14A\t0xFE30\n0xA14B\t0x2026\n0xA14C\t0x2025\n0xA14D\t0xFE50\n0xA14E\t0xFF64\n0xA14F\t0xFE52\n0xA150\t0x00B7\n0xA151\t0xFE54\n0xA152\t0xFE55\n0xA153\t0xFE56\n0xA154\t0xFE57\n0xA155\t0xFF5C\n0xA156\t0x2013\n0xA157\t0xFE31\n0xA158\t0x2014\n0xA159\t0xFE33\n0xA15B\t0xFE34\n0xA15C\t0xFE4F\n0xA15D\t0xFF08\n0xA15E\t0xFF09\n0xA15F\t0xFE35\n0xA160\t0xFE36\n0xA161\t0xFF5B\n0xA162\t0xFF5D\n0xA163\t0xFE37\n0xA164\t0xFE38\n0xA165\t0x3014\n0xA166\t0x3015\n0xA167\t0xFE39\n0xA168\t0xFE3A\n0xA169\t0x3010\n0xA16A\t0x3011\n0xA16B\t0xFE3B\n0xA16C\t0xFE3C\n0xA16D\t0x300A\n0xA16E\t0x300B\n0xA16F\t0xFE3D\n0xA170\t0xFE3E\n0xA171\t0x3008\n0xA172\t0x3009\n0xA173\t0xFE3F\n0xA174\t0xFE40\n0xA175\t0x300C\n0xA176\t0x300D\n0xA177\t0xFE41\n0xA178\t0xFE42\n0xA179\t0x300E\n0xA17A\t0x300F\n0xA17B\t0xFE43\n0xA17C\t0xFE44\n0xA17D\t0xFE59\n0xA17E\t0xFE5A\n0xA1A1\t0xFE5B\n0xA1A2\t0xFE5C\n0xA1A3\t0xFE5D\n0xA1A4\t0xFE5E\n0xA1A5\t0x2018\n0xA1A6\t0x2019\n0xA1A7\t0x201C\n0xA1A8\t0x201D\n0xA1A9\t0x301D\n0xA1AA\t0x301E\n0xA1AB\t0x2035\n0xA1AC\t0x2032\n0xA1AD\t0xFF03\n0xA1AE\t0xFF06\n0xA1AF\t0xFF0A\n0xA1B0\t0x203B\n0xA1B1\t0x00A7\n0xA1B2\t0x3003\n0xA1B3\t0x25CB\n0xA1B4\t0x25CF\n0xA1B5\t0x25B3\n0xA1B6\t0x25B2\n0xA1B7\t0x25CE\n0xA1B8\t0x2606\n0xA1B9\t0x2605\n0xA1BA\t0x25C7\n0xA1BB\t0x25C6\n0xA1BC\t0x25A1\n0xA1BD\t0x25A0\n0xA1BE\t0x25BD\n0xA1BF\t0x25BC\n0xA1C0\t0x32A3\n0xA1C1\t0x2105\n0xA1C2\t0x203E\n0xA1C4\t0xFF3F\n0xA1C6\t0xFE49\n0xA1C7\t0xFE4A\n0xA1C8\t0xFE4D\n0xA1C9\t0xFE4E\n0xA1CA\t0xFE4B\n0xA1CB\t0xFE4C\n0xA1CC\t0xFE5F\n0xA1CD\t0xFE60\n0xA1CE\t0xFE61\n0xA1CF\t0xFF0B\n0xA1D0\t0xFF0D\n0xA1D1\t0x00D7\n0xA1D2\t0x00F7\n0xA1D3\t0x00B1\n0xA1D4\t0x221A\n0xA1D5\t0xFF1C\n0xA1D6\t0xFF1E\n0xA1D7\t0xFF1D\n0xA1D8\t0x2266\n0xA1D9\t0x2267\n0xA1DA\t0x2260\n0xA1DB\t0x221E\n0xA1DC\t0x2252\n0xA1DD\t0x2261\n0xA1DE\t0xFE62\n0xA1DF\t0xFE63\n0xA1E0\t0xFE64\n0xA1E1\t0xFE65\n0xA1E2\t0xFE66\n0xA1E3\t0x223C\n0xA1E4\t0x2229\n0xA1E5\t0x222A\n0xA1E6\t0x22A5\n0xA1E7\t0x2220\n0xA1E8\t0x221F\n0xA1E9\t0x22BF\n0xA1EA\t0x33D2\n0xA1EB\t0x33D1\n0xA1EC\t0x222B\n0xA1ED\t0x222E\n0xA1EE\t0x2235\n0xA1EF\t0x2234\n0xA1F0\t0x2640\n0xA1F1\t0x2642\n0xA1F2\t0x2641\n0xA1F3\t0x2609\n0xA1F4\t0x2191\n0xA1F5\t0x2193\n0xA1F6\t0x2190\n0xA1F7\t0x2192\n0xA1F8\t0x2196\n0xA1F9\t0x2197\n0xA1FA\t0x2199\n0xA1FB\t0x2198\n0xA1FC\t0x2225\n0xA1FD\t0x2223\n0xA241\t0xFF0F\n0xA242\t0xFF3C\n0xA243\t0xFF04\n0xA244\t0x00A5\n0xA245\t0x3012\n0xA246\t0x00A2\n0xA247\t0x00A3\n0xA248\t0xFF05\n0xA249\t0xFF20\n0xA24A\t0x2103\n0xA24B\t0x2109\n0xA24C\t0xFE69\n0xA24D\t0xFE6A\n0xA24E\t0xFE6B\n0xA24F\t0x33D5\n0xA250\t0x339C\n0xA251\t0x339D\n0xA252\t0x339E\n0xA253\t0x33CE\n0xA254\t0x33A1\n0xA255\t0x338E\n0xA256\t0x338F\n0xA257\t0x33C4\n0xA258\t0x00B0\n0xA259\t0x5159\n0xA25A\t0x515B\n0xA25B\t0x515E\n0xA25C\t0x515D\n0xA25D\t0x5161\n0xA25E\t0x5163\n0xA25F\t0x55E7\n0xA260\t0x74E9\n0xA261\t0x7CCE\n0xA262\t0x2581\n0xA263\t0x2582\n0xA264\t0x2583\n0xA265\t0x2584\n0xA266\t0x2585\n0xA267\t0x2586\n0xA268\t0x2587\n0xA269\t0x2588\n0xA26A\t0x258F\n0xA26B\t0x258E\n0xA26C\t0x258D\n0xA26D\t0x258C\n0xA26E\t0x258B\n0xA26F\t0x258A\n0xA270\t0x2589\n0xA271\t0x253C\n0xA272\t0x2534\n0xA273\t0x252C\n0xA274\t0x2524\n0xA275\t0x251C\n0xA276\t0x2594\n0xA277\t0x2500\n0xA278\t0x2502\n0xA279\t0x2595\n0xA27A\t0x250C\n0xA27B\t0x2510\n0xA27C\t0x2514\n0xA27D\t0x2518\n0xA27E\t0x256D\n0xA2A1\t0x256E\n0xA2A2\t0x2570\n0xA2A3\t0x256F\n0xA2A4\t0x2550\n0xA2A5\t0x255E\n0xA2A6\t0x256A\n0xA2A7\t0x2561\n0xA2A8\t0x25E2\n0xA2A9\t0x25E3\n0xA2AA\t0x25E5\n0xA2AB\t0x25E4\n0xA2AC\t0x2571\n0xA2AD\t0x2572\n0xA2AE\t0x2573\n0xA2AF\t0xFF10\n0xA2B0\t0xFF11\n0xA2B1\t0xFF12\n0xA2B2\t0xFF13\n0xA2B3\t0xFF14\n0xA2B4\t0xFF15\n0xA2B5\t0xFF16\n0xA2B6\t0xFF17\n0xA2B7\t0xFF18\n0xA2B8\t0xFF19\n0xA2B9\t0x2160\n0xA2BA\t0x2161\n0xA2BB\t0x2162\n0xA2BC\t0x2163\n0xA2BD\t0x2164\n0xA2BE\t0x2165\n0xA2BF\t0x2166\n0xA2C0\t0x2167\n0xA2C1\t0x2168\n0xA2C2\t0x2169\n0xA2C3\t0x3021\n0xA2C4\t0x3022\n0xA2C5\t0x3023\n0xA2C6\t0x3024\n0xA2C7\t0x3025\n0xA2C8\t0x3026\n0xA2C9\t0x3027\n0xA2CA\t0x3028\n0xA2CB\t0x3029\n0xA2CD\t0x5344\n0xA2CF\t0xFF21\n0xA2D0\t0xFF22\n0xA2D1\t0xFF23\n0xA2D2\t0xFF24\n0xA2D3\t0xFF25\n0xA2D4\t0xFF26\n0xA2D5\t0xFF27\n0xA2D6\t0xFF28\n0xA2D7\t0xFF29\n0xA2D8\t0xFF2A\n0xA2D9\t0xFF2B\n0xA2DA\t0xFF2C\n0xA2DB\t0xFF2D\n0xA2DC\t0xFF2E\n0xA2DD\t0xFF2F\n0xA2DE\t0xFF30\n0xA2DF\t0xFF31\n0xA2E0\t0xFF32\n0xA2E1\t0xFF33\n0xA2E2\t0xFF34\n0xA2E3\t0xFF35\n0xA2E4\t0xFF36\n0xA2E5\t0xFF37\n0xA2E6\t0xFF38\n0xA2E7\t0xFF39\n0xA2E8\t0xFF3A\n0xA2E9\t0xFF41\n0xA2EA\t0xFF42\n0xA2EB\t0xFF43\n0xA2EC\t0xFF44\n0xA2ED\t0xFF45\n0xA2EE\t0xFF46\n0xA2EF\t0xFF47\n0xA2F0\t0xFF48\n0xA2F1\t0xFF49\n0xA2F2\t0xFF4A\n0xA2F3\t0xFF4B\n0xA2F4\t0xFF4C\n0xA2F5\t0xFF4D\n0xA2F6\t0xFF4E\n0xA2F7\t0xFF4F\n0xA2F8\t0xFF50\n0xA2F9\t0xFF51\n0xA2FA\t0xFF52\n0xA2FB\t0xFF53\n0xA2FC\t0xFF54\n0xA2FD\t0xFF55\n0xA2FE\t0xFF56\n0xA340\t0xFF57\n0xA341\t0xFF58\n0xA342\t0xFF59\n0xA343\t0xFF5A\n0xA344\t0x0391\n0xA345\t0x0392\n0xA346\t0x0393\n0xA347\t0x0394\n0xA348\t0x0395\n0xA349\t0x0396\n0xA34A\t0x0397\n0xA34B\t0x0398\n0xA34C\t0x0399\n0xA34D\t0x039A\n0xA34E\t0x039B\n0xA34F\t0x039C\n0xA350\t0x039D\n0xA351\t0x039E\n0xA352\t0x039F\n0xA353\t0x03A0\n0xA354\t0x03A1\n0xA355\t0x03A3\n0xA356\t0x03A4\n0xA357\t0x03A5\n0xA358\t0x03A6\n0xA359\t0x03A7\n0xA35A\t0x03A8\n0xA35B\t0x03A9\n0xA35C\t0x03B1\n0xA35D\t0x03B2\n0xA35E\t0x03B3\n0xA35F\t0x03B4\n0xA360\t0x03B5\n0xA361\t0x03B6\n0xA362\t0x03B7\n0xA363\t0x03B8\n0xA364\t0x03B9\n0xA365\t0x03BA\n0xA366\t0x03BB\n0xA367\t0x03BC\n0xA368\t0x03BD\n0xA369\t0x03BE\n0xA36A\t0x03BF\n0xA36B\t0x03C0\n0xA36C\t0x03C1\n0xA36D\t0x03C3\n0xA36E\t0x03C4\n0xA36F\t0x03C5\n0xA370\t0x03C6\n0xA371\t0x03C7\n0xA372\t0x03C8\n0xA373\t0x03C9\n0xA374\t0x3105\n0xA375\t0x3106\n0xA376\t0x3107\n0xA377\t0x3108\n0xA378\t0x3109\n0xA379\t0x310A\n0xA37A\t0x310B\n0xA37B\t0x310C\n0xA37C\t0x310D\n0xA37D\t0x310E\n0xA37E\t0x310F\n0xA3A1\t0x3110\n0xA3A2\t0x3111\n0xA3A3\t0x3112\n0xA3A4\t0x3113\n0xA3A5\t0x3114\n0xA3A6\t0x3115\n0xA3A7\t0x3116\n0xA3A8\t0x3117\n0xA3A9\t0x3118\n0xA3AA\t0x3119\n0xA3AB\t0x311A\n0xA3AC\t0x311B\n0xA3AD\t0x311C\n0xA3AE\t0x311D\n0xA3AF\t0x311E\n0xA3B0\t0x311F\n0xA3B1\t0x3120\n0xA3B2\t0x3121\n0xA3B3\t0x3122\n0xA3B4\t0x3123\n0xA3B5\t0x3124\n0xA3B6\t0x3125\n0xA3B7\t0x3126\n0xA3B8\t0x3127\n0xA3B9\t0x3128\n0xA3BA\t0x3129\n0xA3BB\t0x02D9\n0xA3BC\t0x02C9\n0xA3BD\t0x02CA\n0xA3BE\t0x02C7\n0xA3BF\t0x02CB\n0xA440\t0x4E00\n0xA441\t0x4E59\n0xA442\t0x4E01\n0xA443\t0x4E03\n0xA444\t0x4E43\n0xA445\t0x4E5D\n0xA446\t0x4E86\n0xA447\t0x4E8C\n0xA448\t0x4EBA\n0xA449\t0x513F\n0xA44A\t0x5165\n0xA44B\t0x516B\n0xA44C\t0x51E0\n0xA44D\t0x5200\n0xA44E\t0x5201\n0xA44F\t0x529B\n0xA450\t0x5315\n0xA451\t0x5341\n0xA452\t0x535C\n0xA453\t0x53C8\n0xA454\t0x4E09\n0xA455\t0x4E0B\n0xA456\t0x4E08\n0xA457\t0x4E0A\n0xA458\t0x4E2B\n0xA459\t0x4E38\n0xA45A\t0x51E1\n0xA45B\t0x4E45\n0xA45C\t0x4E48\n0xA45D\t0x4E5F\n0xA45E\t0x4E5E\n0xA45F\t0x4E8E\n0xA460\t0x4EA1\n0xA461\t0x5140\n0xA462\t0x5203\n0xA463\t0x52FA\n0xA464\t0x5343\n0xA465\t0x53C9\n0xA466\t0x53E3\n0xA467\t0x571F\n0xA468\t0x58EB\n0xA469\t0x5915\n0xA46A\t0x5927\n0xA46B\t0x5973\n0xA46C\t0x5B50\n0xA46D\t0x5B51\n0xA46E\t0x5B53\n0xA46F\t0x5BF8\n0xA470\t0x5C0F\n0xA471\t0x5C22\n0xA472\t0x5C38\n0xA473\t0x5C71\n0xA474\t0x5DDD\n0xA475\t0x5DE5\n0xA476\t0x5DF1\n0xA477\t0x5DF2\n0xA478\t0x5DF3\n0xA479\t0x5DFE\n0xA47A\t0x5E72\n0xA47B\t0x5EFE\n0xA47C\t0x5F0B\n0xA47D\t0x5F13\n0xA47E\t0x624D\n0xA4A1\t0x4E11\n0xA4A2\t0x4E10\n0xA4A3\t0x4E0D\n0xA4A4\t0x4E2D\n0xA4A5\t0x4E30\n0xA4A6\t0x4E39\n0xA4A7\t0x4E4B\n0xA4A8\t0x5C39\n0xA4A9\t0x4E88\n0xA4AA\t0x4E91\n0xA4AB\t0x4E95\n0xA4AC\t0x4E92\n0xA4AD\t0x4E94\n0xA4AE\t0x4EA2\n0xA4AF\t0x4EC1\n0xA4B0\t0x4EC0\n0xA4B1\t0x4EC3\n0xA4B2\t0x4EC6\n0xA4B3\t0x4EC7\n0xA4B4\t0x4ECD\n0xA4B5\t0x4ECA\n0xA4B6\t0x4ECB\n0xA4B7\t0x4EC4\n0xA4B8\t0x5143\n0xA4B9\t0x5141\n0xA4BA\t0x5167\n0xA4BB\t0x516D\n0xA4BC\t0x516E\n0xA4BD\t0x516C\n0xA4BE\t0x5197\n0xA4BF\t0x51F6\n0xA4C0\t0x5206\n0xA4C1\t0x5207\n0xA4C2\t0x5208\n0xA4C3\t0x52FB\n0xA4C4\t0x52FE\n0xA4C5\t0x52FF\n0xA4C6\t0x5316\n0xA4C7\t0x5339\n0xA4C8\t0x5348\n0xA4C9\t0x5347\n0xA4CA\t0x5345\n0xA4CB\t0x535E\n0xA4CC\t0x5384\n0xA4CD\t0x53CB\n0xA4CE\t0x53CA\n0xA4CF\t0x53CD\n0xA4D0\t0x58EC\n0xA4D1\t0x5929\n0xA4D2\t0x592B\n0xA4D3\t0x592A\n0xA4D4\t0x592D\n0xA4D5\t0x5B54\n0xA4D6\t0x5C11\n0xA4D7\t0x5C24\n0xA4D8\t0x5C3A\n0xA4D9\t0x5C6F\n0xA4DA\t0x5DF4\n0xA4DB\t0x5E7B\n0xA4DC\t0x5EFF\n0xA4DD\t0x5F14\n0xA4DE\t0x5F15\n0xA4DF\t0x5FC3\n0xA4E0\t0x6208\n0xA4E1\t0x6236\n0xA4E2\t0x624B\n0xA4E3\t0x624E\n0xA4E4\t0x652F\n0xA4E5\t0x6587\n0xA4E6\t0x6597\n0xA4E7\t0x65A4\n0xA4E8\t0x65B9\n0xA4E9\t0x65E5\n0xA4EA\t0x66F0\n0xA4EB\t0x6708\n0xA4EC\t0x6728\n0xA4ED\t0x6B20\n0xA4EE\t0x6B62\n0xA4EF\t0x6B79\n0xA4F0\t0x6BCB\n0xA4F1\t0x6BD4\n0xA4F2\t0x6BDB\n0xA4F3\t0x6C0F\n0xA4F4\t0x6C34\n0xA4F5\t0x706B\n0xA4F6\t0x722A\n0xA4F7\t0x7236\n0xA4F8\t0x723B\n0xA4F9\t0x7247\n0xA4FA\t0x7259\n0xA4FB\t0x725B\n0xA4FC\t0x72AC\n0xA4FD\t0x738B\n0xA4FE\t0x4E19\n0xA540\t0x4E16\n0xA541\t0x4E15\n0xA542\t0x4E14\n0xA543\t0x4E18\n0xA544\t0x4E3B\n0xA545\t0x4E4D\n0xA546\t0x4E4F\n0xA547\t0x4E4E\n0xA548\t0x4EE5\n0xA549\t0x4ED8\n0xA54A\t0x4ED4\n0xA54B\t0x4ED5\n0xA54C\t0x4ED6\n0xA54D\t0x4ED7\n0xA54E\t0x4EE3\n0xA54F\t0x4EE4\n0xA550\t0x4ED9\n0xA551\t0x4EDE\n0xA552\t0x5145\n0xA553\t0x5144\n0xA554\t0x5189\n0xA555\t0x518A\n0xA556\t0x51AC\n0xA557\t0x51F9\n0xA558\t0x51FA\n0xA559\t0x51F8\n0xA55A\t0x520A\n0xA55B\t0x52A0\n0xA55C\t0x529F\n0xA55D\t0x5305\n0xA55E\t0x5306\n0xA55F\t0x5317\n0xA560\t0x531D\n0xA561\t0x4EDF\n0xA562\t0x534A\n0xA563\t0x5349\n0xA564\t0x5361\n0xA565\t0x5360\n0xA566\t0x536F\n0xA567\t0x536E\n0xA568\t0x53BB\n0xA569\t0x53EF\n0xA56A\t0x53E4\n0xA56B\t0x53F3\n0xA56C\t0x53EC\n0xA56D\t0x53EE\n0xA56E\t0x53E9\n0xA56F\t0x53E8\n0xA570\t0x53FC\n0xA571\t0x53F8\n0xA572\t0x53F5\n0xA573\t0x53EB\n0xA574\t0x53E6\n0xA575\t0x53EA\n0xA576\t0x53F2\n0xA577\t0x53F1\n0xA578\t0x53F0\n0xA579\t0x53E5\n0xA57A\t0x53ED\n0xA57B\t0x53FB\n0xA57C\t0x56DB\n0xA57D\t0x56DA\n0xA57E\t0x5916\n0xA5A1\t0x592E\n0xA5A2\t0x5931\n0xA5A3\t0x5974\n0xA5A4\t0x5976\n0xA5A5\t0x5B55\n0xA5A6\t0x5B83\n0xA5A7\t0x5C3C\n0xA5A8\t0x5DE8\n0xA5A9\t0x5DE7\n0xA5AA\t0x5DE6\n0xA5AB\t0x5E02\n0xA5AC\t0x5E03\n0xA5AD\t0x5E73\n0xA5AE\t0x5E7C\n0xA5AF\t0x5F01\n0xA5B0\t0x5F18\n0xA5B1\t0x5F17\n0xA5B2\t0x5FC5\n0xA5B3\t0x620A\n0xA5B4\t0x6253\n0xA5B5\t0x6254\n0xA5B6\t0x6252\n0xA5B7\t0x6251\n0xA5B8\t0x65A5\n0xA5B9\t0x65E6\n0xA5BA\t0x672E\n0xA5BB\t0x672C\n0xA5BC\t0x672A\n0xA5BD\t0x672B\n0xA5BE\t0x672D\n0xA5BF\t0x6B63\n0xA5C0\t0x6BCD\n0xA5C1\t0x6C11\n0xA5C2\t0x6C10\n0xA5C3\t0x6C38\n0xA5C4\t0x6C41\n0xA5C5\t0x6C40\n0xA5C6\t0x6C3E\n0xA5C7\t0x72AF\n0xA5C8\t0x7384\n0xA5C9\t0x7389\n0xA5CA\t0x74DC\n0xA5CB\t0x74E6\n0xA5CC\t0x7518\n0xA5CD\t0x751F\n0xA5CE\t0x7528\n0xA5CF\t0x7529\n0xA5D0\t0x7530\n0xA5D1\t0x7531\n0xA5D2\t0x7532\n0xA5D3\t0x7533\n0xA5D4\t0x758B\n0xA5D5\t0x767D\n0xA5D6\t0x76AE\n0xA5D7\t0x76BF\n0xA5D8\t0x76EE\n0xA5D9\t0x77DB\n0xA5DA\t0x77E2\n0xA5DB\t0x77F3\n0xA5DC\t0x793A\n0xA5DD\t0x79BE\n0xA5DE\t0x7A74\n0xA5DF\t0x7ACB\n0xA5E0\t0x4E1E\n0xA5E1\t0x4E1F\n0xA5E2\t0x4E52\n0xA5E3\t0x4E53\n0xA5E4\t0x4E69\n0xA5E5\t0x4E99\n0xA5E6\t0x4EA4\n0xA5E7\t0x4EA6\n0xA5E8\t0x4EA5\n0xA5E9\t0x4EFF\n0xA5EA\t0x4F09\n0xA5EB\t0x4F19\n0xA5EC\t0x4F0A\n0xA5ED\t0x4F15\n0xA5EE\t0x4F0D\n0xA5EF\t0x4F10\n0xA5F0\t0x4F11\n0xA5F1\t0x4F0F\n0xA5F2\t0x4EF2\n0xA5F3\t0x4EF6\n0xA5F4\t0x4EFB\n0xA5F5\t0x4EF0\n0xA5F6\t0x4EF3\n0xA5F7\t0x4EFD\n0xA5F8\t0x4F01\n0xA5F9\t0x4F0B\n0xA5FA\t0x5149\n0xA5FB\t0x5147\n0xA5FC\t0x5146\n0xA5FD\t0x5148\n0xA5FE\t0x5168\n0xA640\t0x5171\n0xA641\t0x518D\n0xA642\t0x51B0\n0xA643\t0x5217\n0xA644\t0x5211\n0xA645\t0x5212\n0xA646\t0x520E\n0xA647\t0x5216\n0xA648\t0x52A3\n0xA649\t0x5308\n0xA64A\t0x5321\n0xA64B\t0x5320\n0xA64C\t0x5370\n0xA64D\t0x5371\n0xA64E\t0x5409\n0xA64F\t0x540F\n0xA650\t0x540C\n0xA651\t0x540A\n0xA652\t0x5410\n0xA653\t0x5401\n0xA654\t0x540B\n0xA655\t0x5404\n0xA656\t0x5411\n0xA657\t0x540D\n0xA658\t0x5408\n0xA659\t0x5403\n0xA65A\t0x540E\n0xA65B\t0x5406\n0xA65C\t0x5412\n0xA65D\t0x56E0\n0xA65E\t0x56DE\n0xA65F\t0x56DD\n0xA660\t0x5733\n0xA661\t0x5730\n0xA662\t0x5728\n0xA663\t0x572D\n0xA664\t0x572C\n0xA665\t0x572F\n0xA666\t0x5729\n0xA667\t0x5919\n0xA668\t0x591A\n0xA669\t0x5937\n0xA66A\t0x5938\n0xA66B\t0x5984\n0xA66C\t0x5978\n0xA66D\t0x5983\n0xA66E\t0x597D\n0xA66F\t0x5979\n0xA670\t0x5982\n0xA671\t0x5981\n0xA672\t0x5B57\n0xA673\t0x5B58\n0xA674\t0x5B87\n0xA675\t0x5B88\n0xA676\t0x5B85\n0xA677\t0x5B89\n0xA678\t0x5BFA\n0xA679\t0x5C16\n0xA67A\t0x5C79\n0xA67B\t0x5DDE\n0xA67C\t0x5E06\n0xA67D\t0x5E76\n0xA67E\t0x5E74\n0xA6A1\t0x5F0F\n0xA6A2\t0x5F1B\n0xA6A3\t0x5FD9\n0xA6A4\t0x5FD6\n0xA6A5\t0x620E\n0xA6A6\t0x620C\n0xA6A7\t0x620D\n0xA6A8\t0x6210\n0xA6A9\t0x6263\n0xA6AA\t0x625B\n0xA6AB\t0x6258\n0xA6AC\t0x6536\n0xA6AD\t0x65E9\n0xA6AE\t0x65E8\n0xA6AF\t0x65EC\n0xA6B0\t0x65ED\n0xA6B1\t0x66F2\n0xA6B2\t0x66F3\n0xA6B3\t0x6709\n0xA6B4\t0x673D\n0xA6B5\t0x6734\n0xA6B6\t0x6731\n0xA6B7\t0x6735\n0xA6B8\t0x6B21\n0xA6B9\t0x6B64\n0xA6BA\t0x6B7B\n0xA6BB\t0x6C16\n0xA6BC\t0x6C5D\n0xA6BD\t0x6C57\n0xA6BE\t0x6C59\n0xA6BF\t0x6C5F\n0xA6C0\t0x6C60\n0xA6C1\t0x6C50\n0xA6C2\t0x6C55\n0xA6C3\t0x6C61\n0xA6C4\t0x6C5B\n0xA6C5\t0x6C4D\n0xA6C6\t0x6C4E\n0xA6C7\t0x7070\n0xA6C8\t0x725F\n0xA6C9\t0x725D\n0xA6CA\t0x767E\n0xA6CB\t0x7AF9\n0xA6CC\t0x7C73\n0xA6CD\t0x7CF8\n0xA6CE\t0x7F36\n0xA6CF\t0x7F8A\n0xA6D0\t0x7FBD\n0xA6D1\t0x8001\n0xA6D2\t0x8003\n0xA6D3\t0x800C\n0xA6D4\t0x8012\n0xA6D5\t0x8033\n0xA6D6\t0x807F\n0xA6D7\t0x8089\n0xA6D8\t0x808B\n0xA6D9\t0x808C\n0xA6DA\t0x81E3\n0xA6DB\t0x81EA\n0xA6DC\t0x81F3\n0xA6DD\t0x81FC\n0xA6DE\t0x820C\n0xA6DF\t0x821B\n0xA6E0\t0x821F\n0xA6E1\t0x826E\n0xA6E2\t0x8272\n0xA6E3\t0x827E\n0xA6E4\t0x866B\n0xA6E5\t0x8840\n0xA6E6\t0x884C\n0xA6E7\t0x8863\n0xA6E8\t0x897F\n0xA6E9\t0x9621\n0xA6EA\t0x4E32\n0xA6EB\t0x4EA8\n0xA6EC\t0x4F4D\n0xA6ED\t0x4F4F\n0xA6EE\t0x4F47\n0xA6EF\t0x4F57\n0xA6F0\t0x4F5E\n0xA6F1\t0x4F34\n0xA6F2\t0x4F5B\n0xA6F3\t0x4F55\n0xA6F4\t0x4F30\n0xA6F5\t0x4F50\n0xA6F6\t0x4F51\n0xA6F7\t0x4F3D\n0xA6F8\t0x4F3A\n0xA6F9\t0x4F38\n0xA6FA\t0x4F43\n0xA6FB\t0x4F54\n0xA6FC\t0x4F3C\n0xA6FD\t0x4F46\n0xA6FE\t0x4F63\n0xA740\t0x4F5C\n0xA741\t0x4F60\n0xA742\t0x4F2F\n0xA743\t0x4F4E\n0xA744\t0x4F36\n0xA745\t0x4F59\n0xA746\t0x4F5D\n0xA747\t0x4F48\n0xA748\t0x4F5A\n0xA749\t0x514C\n0xA74A\t0x514B\n0xA74B\t0x514D\n0xA74C\t0x5175\n0xA74D\t0x51B6\n0xA74E\t0x51B7\n0xA74F\t0x5225\n0xA750\t0x5224\n0xA751\t0x5229\n0xA752\t0x522A\n0xA753\t0x5228\n0xA754\t0x52AB\n0xA755\t0x52A9\n0xA756\t0x52AA\n0xA757\t0x52AC\n0xA758\t0x5323\n0xA759\t0x5373\n0xA75A\t0x5375\n0xA75B\t0x541D\n0xA75C\t0x542D\n0xA75D\t0x541E\n0xA75E\t0x543E\n0xA75F\t0x5426\n0xA760\t0x544E\n0xA761\t0x5427\n0xA762\t0x5446\n0xA763\t0x5443\n0xA764\t0x5433\n0xA765\t0x5448\n0xA766\t0x5442\n0xA767\t0x541B\n0xA768\t0x5429\n0xA769\t0x544A\n0xA76A\t0x5439\n0xA76B\t0x543B\n0xA76C\t0x5438\n0xA76D\t0x542E\n0xA76E\t0x5435\n0xA76F\t0x5436\n0xA770\t0x5420\n0xA771\t0x543C\n0xA772\t0x5440\n0xA773\t0x5431\n0xA774\t0x542B\n0xA775\t0x541F\n0xA776\t0x542C\n0xA777\t0x56EA\n0xA778\t0x56F0\n0xA779\t0x56E4\n0xA77A\t0x56EB\n0xA77B\t0x574A\n0xA77C\t0x5751\n0xA77D\t0x5740\n0xA77E\t0x574D\n0xA7A1\t0x5747\n0xA7A2\t0x574E\n0xA7A3\t0x573E\n0xA7A4\t0x5750\n0xA7A5\t0x574F\n0xA7A6\t0x573B\n0xA7A7\t0x58EF\n0xA7A8\t0x593E\n0xA7A9\t0x599D\n0xA7AA\t0x5992\n0xA7AB\t0x59A8\n0xA7AC\t0x599E\n0xA7AD\t0x59A3\n0xA7AE\t0x5999\n0xA7AF\t0x5996\n0xA7B0\t0x598D\n0xA7B1\t0x59A4\n0xA7B2\t0x5993\n0xA7B3\t0x598A\n0xA7B4\t0x59A5\n0xA7B5\t0x5B5D\n0xA7B6\t0x5B5C\n0xA7B7\t0x5B5A\n0xA7B8\t0x5B5B\n0xA7B9\t0x5B8C\n0xA7BA\t0x5B8B\n0xA7BB\t0x5B8F\n0xA7BC\t0x5C2C\n0xA7BD\t0x5C40\n0xA7BE\t0x5C41\n0xA7BF\t0x5C3F\n0xA7C0\t0x5C3E\n0xA7C1\t0x5C90\n0xA7C2\t0x5C91\n0xA7C3\t0x5C94\n0xA7C4\t0x5C8C\n0xA7C5\t0x5DEB\n0xA7C6\t0x5E0C\n0xA7C7\t0x5E8F\n0xA7C8\t0x5E87\n0xA7C9\t0x5E8A\n0xA7CA\t0x5EF7\n0xA7CB\t0x5F04\n0xA7CC\t0x5F1F\n0xA7CD\t0x5F64\n0xA7CE\t0x5F62\n0xA7CF\t0x5F77\n0xA7D0\t0x5F79\n0xA7D1\t0x5FD8\n0xA7D2\t0x5FCC\n0xA7D3\t0x5FD7\n0xA7D4\t0x5FCD\n0xA7D5\t0x5FF1\n0xA7D6\t0x5FEB\n0xA7D7\t0x5FF8\n0xA7D8\t0x5FEA\n0xA7D9\t0x6212\n0xA7DA\t0x6211\n0xA7DB\t0x6284\n0xA7DC\t0x6297\n0xA7DD\t0x6296\n0xA7DE\t0x6280\n0xA7DF\t0x6276\n0xA7E0\t0x6289\n0xA7E1\t0x626D\n0xA7E2\t0x628A\n0xA7E3\t0x627C\n0xA7E4\t0x627E\n0xA7E5\t0x6279\n0xA7E6\t0x6273\n0xA7E7\t0x6292\n0xA7E8\t0x626F\n0xA7E9\t0x6298\n0xA7EA\t0x626E\n0xA7EB\t0x6295\n0xA7EC\t0x6293\n0xA7ED\t0x6291\n0xA7EE\t0x6286\n0xA7EF\t0x6539\n0xA7F0\t0x653B\n0xA7F1\t0x6538\n0xA7F2\t0x65F1\n0xA7F3\t0x66F4\n0xA7F4\t0x675F\n0xA7F5\t0x674E\n0xA7F6\t0x674F\n0xA7F7\t0x6750\n0xA7F8\t0x6751\n0xA7F9\t0x675C\n0xA7FA\t0x6756\n0xA7FB\t0x675E\n0xA7FC\t0x6749\n0xA7FD\t0x6746\n0xA7FE\t0x6760\n0xA840\t0x6753\n0xA841\t0x6757\n0xA842\t0x6B65\n0xA843\t0x6BCF\n0xA844\t0x6C42\n0xA845\t0x6C5E\n0xA846\t0x6C99\n0xA847\t0x6C81\n0xA848\t0x6C88\n0xA849\t0x6C89\n0xA84A\t0x6C85\n0xA84B\t0x6C9B\n0xA84C\t0x6C6A\n0xA84D\t0x6C7A\n0xA84E\t0x6C90\n0xA84F\t0x6C70\n0xA850\t0x6C8C\n0xA851\t0x6C68\n0xA852\t0x6C96\n0xA853\t0x6C92\n0xA854\t0x6C7D\n0xA855\t0x6C83\n0xA856\t0x6C72\n0xA857\t0x6C7E\n0xA858\t0x6C74\n0xA859\t0x6C86\n0xA85A\t0x6C76\n0xA85B\t0x6C8D\n0xA85C\t0x6C94\n0xA85D\t0x6C98\n0xA85E\t0x6C82\n0xA85F\t0x7076\n0xA860\t0x707C\n0xA861\t0x707D\n0xA862\t0x7078\n0xA863\t0x7262\n0xA864\t0x7261\n0xA865\t0x7260\n0xA866\t0x72C4\n0xA867\t0x72C2\n0xA868\t0x7396\n0xA869\t0x752C\n0xA86A\t0x752B\n0xA86B\t0x7537\n0xA86C\t0x7538\n0xA86D\t0x7682\n0xA86E\t0x76EF\n0xA86F\t0x77E3\n0xA870\t0x79C1\n0xA871\t0x79C0\n0xA872\t0x79BF\n0xA873\t0x7A76\n0xA874\t0x7CFB\n0xA875\t0x7F55\n0xA876\t0x8096\n0xA877\t0x8093\n0xA878\t0x809D\n0xA879\t0x8098\n0xA87A\t0x809B\n0xA87B\t0x809A\n0xA87C\t0x80B2\n0xA87D\t0x826F\n0xA87E\t0x8292\n0xA8A1\t0x828B\n0xA8A2\t0x828D\n0xA8A3\t0x898B\n0xA8A4\t0x89D2\n0xA8A5\t0x8A00\n0xA8A6\t0x8C37\n0xA8A7\t0x8C46\n0xA8A8\t0x8C55\n0xA8A9\t0x8C9D\n0xA8AA\t0x8D64\n0xA8AB\t0x8D70\n0xA8AC\t0x8DB3\n0xA8AD\t0x8EAB\n0xA8AE\t0x8ECA\n0xA8AF\t0x8F9B\n0xA8B0\t0x8FB0\n0xA8B1\t0x8FC2\n0xA8B2\t0x8FC6\n0xA8B3\t0x8FC5\n0xA8B4\t0x8FC4\n0xA8B5\t0x5DE1\n0xA8B6\t0x9091\n0xA8B7\t0x90A2\n0xA8B8\t0x90AA\n0xA8B9\t0x90A6\n0xA8BA\t0x90A3\n0xA8BB\t0x9149\n0xA8BC\t0x91C6\n0xA8BD\t0x91CC\n0xA8BE\t0x9632\n0xA8BF\t0x962E\n0xA8C0\t0x9631\n0xA8C1\t0x962A\n0xA8C2\t0x962C\n0xA8C3\t0x4E26\n0xA8C4\t0x4E56\n0xA8C5\t0x4E73\n0xA8C6\t0x4E8B\n0xA8C7\t0x4E9B\n0xA8C8\t0x4E9E\n0xA8C9\t0x4EAB\n0xA8CA\t0x4EAC\n0xA8CB\t0x4F6F\n0xA8CC\t0x4F9D\n0xA8CD\t0x4F8D\n0xA8CE\t0x4F73\n0xA8CF\t0x4F7F\n0xA8D0\t0x4F6C\n0xA8D1\t0x4F9B\n0xA8D2\t0x4F8B\n0xA8D3\t0x4F86\n0xA8D4\t0x4F83\n0xA8D5\t0x4F70\n0xA8D6\t0x4F75\n0xA8D7\t0x4F88\n0xA8D8\t0x4F69\n0xA8D9\t0x4F7B\n0xA8DA\t0x4F96\n0xA8DB\t0x4F7E\n0xA8DC\t0x4F8F\n0xA8DD\t0x4F91\n0xA8DE\t0x4F7A\n0xA8DF\t0x5154\n0xA8E0\t0x5152\n0xA8E1\t0x5155\n0xA8E2\t0x5169\n0xA8E3\t0x5177\n0xA8E4\t0x5176\n0xA8E5\t0x5178\n0xA8E6\t0x51BD\n0xA8E7\t0x51FD\n0xA8E8\t0x523B\n0xA8E9\t0x5238\n0xA8EA\t0x5237\n0xA8EB\t0x523A\n0xA8EC\t0x5230\n0xA8ED\t0x522E\n0xA8EE\t0x5236\n0xA8EF\t0x5241\n0xA8F0\t0x52BE\n0xA8F1\t0x52BB\n0xA8F2\t0x5352\n0xA8F3\t0x5354\n0xA8F4\t0x5353\n0xA8F5\t0x5351\n0xA8F6\t0x5366\n0xA8F7\t0x5377\n0xA8F8\t0x5378\n0xA8F9\t0x5379\n0xA8FA\t0x53D6\n0xA8FB\t0x53D4\n0xA8FC\t0x53D7\n0xA8FD\t0x5473\n0xA8FE\t0x5475\n0xA940\t0x5496\n0xA941\t0x5478\n0xA942\t0x5495\n0xA943\t0x5480\n0xA944\t0x547B\n0xA945\t0x5477\n0xA946\t0x5484\n0xA947\t0x5492\n0xA948\t0x5486\n0xA949\t0x547C\n0xA94A\t0x5490\n0xA94B\t0x5471\n0xA94C\t0x5476\n0xA94D\t0x548C\n0xA94E\t0x549A\n0xA94F\t0x5462\n0xA950\t0x5468\n0xA951\t0x548B\n0xA952\t0x547D\n0xA953\t0x548E\n0xA954\t0x56FA\n0xA955\t0x5783\n0xA956\t0x5777\n0xA957\t0x576A\n0xA958\t0x5769\n0xA959\t0x5761\n0xA95A\t0x5766\n0xA95B\t0x5764\n0xA95C\t0x577C\n0xA95D\t0x591C\n0xA95E\t0x5949\n0xA95F\t0x5947\n0xA960\t0x5948\n0xA961\t0x5944\n0xA962\t0x5954\n0xA963\t0x59BE\n0xA964\t0x59BB\n0xA965\t0x59D4\n0xA966\t0x59B9\n0xA967\t0x59AE\n0xA968\t0x59D1\n0xA969\t0x59C6\n0xA96A\t0x59D0\n0xA96B\t0x59CD\n0xA96C\t0x59CB\n0xA96D\t0x59D3\n0xA96E\t0x59CA\n0xA96F\t0x59AF\n0xA970\t0x59B3\n0xA971\t0x59D2\n0xA972\t0x59C5\n0xA973\t0x5B5F\n0xA974\t0x5B64\n0xA975\t0x5B63\n0xA976\t0x5B97\n0xA977\t0x5B9A\n0xA978\t0x5B98\n0xA979\t0x5B9C\n0xA97A\t0x5B99\n0xA97B\t0x5B9B\n0xA97C\t0x5C1A\n0xA97D\t0x5C48\n0xA97E\t0x5C45\n0xA9A1\t0x5C46\n0xA9A2\t0x5CB7\n0xA9A3\t0x5CA1\n0xA9A4\t0x5CB8\n0xA9A5\t0x5CA9\n0xA9A6\t0x5CAB\n0xA9A7\t0x5CB1\n0xA9A8\t0x5CB3\n0xA9A9\t0x5E18\n0xA9AA\t0x5E1A\n0xA9AB\t0x5E16\n0xA9AC\t0x5E15\n0xA9AD\t0x5E1B\n0xA9AE\t0x5E11\n0xA9AF\t0x5E78\n0xA9B0\t0x5E9A\n0xA9B1\t0x5E97\n0xA9B2\t0x5E9C\n0xA9B3\t0x5E95\n0xA9B4\t0x5E96\n0xA9B5\t0x5EF6\n0xA9B6\t0x5F26\n0xA9B7\t0x5F27\n0xA9B8\t0x5F29\n0xA9B9\t0x5F80\n0xA9BA\t0x5F81\n0xA9BB\t0x5F7F\n0xA9BC\t0x5F7C\n0xA9BD\t0x5FDD\n0xA9BE\t0x5FE0\n0xA9BF\t0x5FFD\n0xA9C0\t0x5FF5\n0xA9C1\t0x5FFF\n0xA9C2\t0x600F\n0xA9C3\t0x6014\n0xA9C4\t0x602F\n0xA9C5\t0x6035\n0xA9C6\t0x6016\n0xA9C7\t0x602A\n0xA9C8\t0x6015\n0xA9C9\t0x6021\n0xA9CA\t0x6027\n0xA9CB\t0x6029\n0xA9CC\t0x602B\n0xA9CD\t0x601B\n0xA9CE\t0x6216\n0xA9CF\t0x6215\n0xA9D0\t0x623F\n0xA9D1\t0x623E\n0xA9D2\t0x6240\n0xA9D3\t0x627F\n0xA9D4\t0x62C9\n0xA9D5\t0x62CC\n0xA9D6\t0x62C4\n0xA9D7\t0x62BF\n0xA9D8\t0x62C2\n0xA9D9\t0x62B9\n0xA9DA\t0x62D2\n0xA9DB\t0x62DB\n0xA9DC\t0x62AB\n0xA9DD\t0x62D3\n0xA9DE\t0x62D4\n0xA9DF\t0x62CB\n0xA9E0\t0x62C8\n0xA9E1\t0x62A8\n0xA9E2\t0x62BD\n0xA9E3\t0x62BC\n0xA9E4\t0x62D0\n0xA9E5\t0x62D9\n0xA9E6\t0x62C7\n0xA9E7\t0x62CD\n0xA9E8\t0x62B5\n0xA9E9\t0x62DA\n0xA9EA\t0x62B1\n0xA9EB\t0x62D8\n0xA9EC\t0x62D6\n0xA9ED\t0x62D7\n0xA9EE\t0x62C6\n0xA9EF\t0x62AC\n0xA9F0\t0x62CE\n0xA9F1\t0x653E\n0xA9F2\t0x65A7\n0xA9F3\t0x65BC\n0xA9F4\t0x65FA\n0xA9F5\t0x6614\n0xA9F6\t0x6613\n0xA9F7\t0x660C\n0xA9F8\t0x6606\n0xA9F9\t0x6602\n0xA9FA\t0x660E\n0xA9FB\t0x6600\n0xA9FC\t0x660F\n0xA9FD\t0x6615\n0xA9FE\t0x660A\n0xAA40\t0x6607\n0xAA41\t0x670D\n0xAA42\t0x670B\n0xAA43\t0x676D\n0xAA44\t0x678B\n0xAA45\t0x6795\n0xAA46\t0x6771\n0xAA47\t0x679C\n0xAA48\t0x6773\n0xAA49\t0x6777\n0xAA4A\t0x6787\n0xAA4B\t0x679D\n0xAA4C\t0x6797\n0xAA4D\t0x676F\n0xAA4E\t0x6770\n0xAA4F\t0x677F\n0xAA50\t0x6789\n0xAA51\t0x677E\n0xAA52\t0x6790\n0xAA53\t0x6775\n0xAA54\t0x679A\n0xAA55\t0x6793\n0xAA56\t0x677C\n0xAA57\t0x676A\n0xAA58\t0x6772\n0xAA59\t0x6B23\n0xAA5A\t0x6B66\n0xAA5B\t0x6B67\n0xAA5C\t0x6B7F\n0xAA5D\t0x6C13\n0xAA5E\t0x6C1B\n0xAA5F\t0x6CE3\n0xAA60\t0x6CE8\n0xAA61\t0x6CF3\n0xAA62\t0x6CB1\n0xAA63\t0x6CCC\n0xAA64\t0x6CE5\n0xAA65\t0x6CB3\n0xAA66\t0x6CBD\n0xAA67\t0x6CBE\n0xAA68\t0x6CBC\n0xAA69\t0x6CE2\n0xAA6A\t0x6CAB\n0xAA6B\t0x6CD5\n0xAA6C\t0x6CD3\n0xAA6D\t0x6CB8\n0xAA6E\t0x6CC4\n0xAA6F\t0x6CB9\n0xAA70\t0x6CC1\n0xAA71\t0x6CAE\n0xAA72\t0x6CD7\n0xAA73\t0x6CC5\n0xAA74\t0x6CF1\n0xAA75\t0x6CBF\n0xAA76\t0x6CBB\n0xAA77\t0x6CE1\n0xAA78\t0x6CDB\n0xAA79\t0x6CCA\n0xAA7A\t0x6CAC\n0xAA7B\t0x6CEF\n0xAA7C\t0x6CDC\n0xAA7D\t0x6CD6\n0xAA7E\t0x6CE0\n0xAAA1\t0x7095\n0xAAA2\t0x708E\n0xAAA3\t0x7092\n0xAAA4\t0x708A\n0xAAA5\t0x7099\n0xAAA6\t0x722C\n0xAAA7\t0x722D\n0xAAA8\t0x7238\n0xAAA9\t0x7248\n0xAAAA\t0x7267\n0xAAAB\t0x7269\n0xAAAC\t0x72C0\n0xAAAD\t0x72CE\n0xAAAE\t0x72D9\n0xAAAF\t0x72D7\n0xAAB0\t0x72D0\n0xAAB1\t0x73A9\n0xAAB2\t0x73A8\n0xAAB3\t0x739F\n0xAAB4\t0x73AB\n0xAAB5\t0x73A5\n0xAAB6\t0x753D\n0xAAB7\t0x759D\n0xAAB8\t0x7599\n0xAAB9\t0x759A\n0xAABA\t0x7684\n0xAABB\t0x76C2\n0xAABC\t0x76F2\n0xAABD\t0x76F4\n0xAABE\t0x77E5\n0xAABF\t0x77FD\n0xAAC0\t0x793E\n0xAAC1\t0x7940\n0xAAC2\t0x7941\n0xAAC3\t0x79C9\n0xAAC4\t0x79C8\n0xAAC5\t0x7A7A\n0xAAC6\t0x7A79\n0xAAC7\t0x7AFA\n0xAAC8\t0x7CFE\n0xAAC9\t0x7F54\n0xAACA\t0x7F8C\n0xAACB\t0x7F8B\n0xAACC\t0x8005\n0xAACD\t0x80BA\n0xAACE\t0x80A5\n0xAACF\t0x80A2\n0xAAD0\t0x80B1\n0xAAD1\t0x80A1\n0xAAD2\t0x80AB\n0xAAD3\t0x80A9\n0xAAD4\t0x80B4\n0xAAD5\t0x80AA\n0xAAD6\t0x80AF\n0xAAD7\t0x81E5\n0xAAD8\t0x81FE\n0xAAD9\t0x820D\n0xAADA\t0x82B3\n0xAADB\t0x829D\n0xAADC\t0x8299\n0xAADD\t0x82AD\n0xAADE\t0x82BD\n0xAADF\t0x829F\n0xAAE0\t0x82B9\n0xAAE1\t0x82B1\n0xAAE2\t0x82AC\n0xAAE3\t0x82A5\n0xAAE4\t0x82AF\n0xAAE5\t0x82B8\n0xAAE6\t0x82A3\n0xAAE7\t0x82B0\n0xAAE8\t0x82BE\n0xAAE9\t0x82B7\n0xAAEA\t0x864E\n0xAAEB\t0x8671\n0xAAEC\t0x521D\n0xAAED\t0x8868\n0xAAEE\t0x8ECB\n0xAAEF\t0x8FCE\n0xAAF0\t0x8FD4\n0xAAF1\t0x8FD1\n0xAAF2\t0x90B5\n0xAAF3\t0x90B8\n0xAAF4\t0x90B1\n0xAAF5\t0x90B6\n0xAAF6\t0x91C7\n0xAAF7\t0x91D1\n0xAAF8\t0x9577\n0xAAF9\t0x9580\n0xAAFA\t0x961C\n0xAAFB\t0x9640\n0xAAFC\t0x963F\n0xAAFD\t0x963B\n0xAAFE\t0x9644\n0xAB40\t0x9642\n0xAB41\t0x96B9\n0xAB42\t0x96E8\n0xAB43\t0x9752\n0xAB44\t0x975E\n0xAB45\t0x4E9F\n0xAB46\t0x4EAD\n0xAB47\t0x4EAE\n0xAB48\t0x4FE1\n0xAB49\t0x4FB5\n0xAB4A\t0x4FAF\n0xAB4B\t0x4FBF\n0xAB4C\t0x4FE0\n0xAB4D\t0x4FD1\n0xAB4E\t0x4FCF\n0xAB4F\t0x4FDD\n0xAB50\t0x4FC3\n0xAB51\t0x4FB6\n0xAB52\t0x4FD8\n0xAB53\t0x4FDF\n0xAB54\t0x4FCA\n0xAB55\t0x4FD7\n0xAB56\t0x4FAE\n0xAB57\t0x4FD0\n0xAB58\t0x4FC4\n0xAB59\t0x4FC2\n0xAB5A\t0x4FDA\n0xAB5B\t0x4FCE\n0xAB5C\t0x4FDE\n0xAB5D\t0x4FB7\n0xAB5E\t0x5157\n0xAB5F\t0x5192\n0xAB60\t0x5191\n0xAB61\t0x51A0\n0xAB62\t0x524E\n0xAB63\t0x5243\n0xAB64\t0x524A\n0xAB65\t0x524D\n0xAB66\t0x524C\n0xAB67\t0x524B\n0xAB68\t0x5247\n0xAB69\t0x52C7\n0xAB6A\t0x52C9\n0xAB6B\t0x52C3\n0xAB6C\t0x52C1\n0xAB6D\t0x530D\n0xAB6E\t0x5357\n0xAB6F\t0x537B\n0xAB70\t0x539A\n0xAB71\t0x53DB\n0xAB72\t0x54AC\n0xAB73\t0x54C0\n0xAB74\t0x54A8\n0xAB75\t0x54CE\n0xAB76\t0x54C9\n0xAB77\t0x54B8\n0xAB78\t0x54A6\n0xAB79\t0x54B3\n0xAB7A\t0x54C7\n0xAB7B\t0x54C2\n0xAB7C\t0x54BD\n0xAB7D\t0x54AA\n0xAB7E\t0x54C1\n0xABA1\t0x54C4\n0xABA2\t0x54C8\n0xABA3\t0x54AF\n0xABA4\t0x54AB\n0xABA5\t0x54B1\n0xABA6\t0x54BB\n0xABA7\t0x54A9\n0xABA8\t0x54A7\n0xABA9\t0x54BF\n0xABAA\t0x56FF\n0xABAB\t0x5782\n0xABAC\t0x578B\n0xABAD\t0x57A0\n0xABAE\t0x57A3\n0xABAF\t0x57A2\n0xABB0\t0x57CE\n0xABB1\t0x57AE\n0xABB2\t0x5793\n0xABB3\t0x5955\n0xABB4\t0x5951\n0xABB5\t0x594F\n0xABB6\t0x594E\n0xABB7\t0x5950\n0xABB8\t0x59DC\n0xABB9\t0x59D8\n0xABBA\t0x59FF\n0xABBB\t0x59E3\n0xABBC\t0x59E8\n0xABBD\t0x5A03\n0xABBE\t0x59E5\n0xABBF\t0x59EA\n0xABC0\t0x59DA\n0xABC1\t0x59E6\n0xABC2\t0x5A01\n0xABC3\t0x59FB\n0xABC4\t0x5B69\n0xABC5\t0x5BA3\n0xABC6\t0x5BA6\n0xABC7\t0x5BA4\n0xABC8\t0x5BA2\n0xABC9\t0x5BA5\n0xABCA\t0x5C01\n0xABCB\t0x5C4E\n0xABCC\t0x5C4F\n0xABCD\t0x5C4D\n0xABCE\t0x5C4B\n0xABCF\t0x5CD9\n0xABD0\t0x5CD2\n0xABD1\t0x5DF7\n0xABD2\t0x5E1D\n0xABD3\t0x5E25\n0xABD4\t0x5E1F\n0xABD5\t0x5E7D\n0xABD6\t0x5EA0\n0xABD7\t0x5EA6\n0xABD8\t0x5EFA\n0xABD9\t0x5F08\n0xABDA\t0x5F2D\n0xABDB\t0x5F65\n0xABDC\t0x5F88\n0xABDD\t0x5F85\n0xABDE\t0x5F8A\n0xABDF\t0x5F8B\n0xABE0\t0x5F87\n0xABE1\t0x5F8C\n0xABE2\t0x5F89\n0xABE3\t0x6012\n0xABE4\t0x601D\n0xABE5\t0x6020\n0xABE6\t0x6025\n0xABE7\t0x600E\n0xABE8\t0x6028\n0xABE9\t0x604D\n0xABEA\t0x6070\n0xABEB\t0x6068\n0xABEC\t0x6062\n0xABED\t0x6046\n0xABEE\t0x6043\n0xABEF\t0x606C\n0xABF0\t0x606B\n0xABF1\t0x606A\n0xABF2\t0x6064\n0xABF3\t0x6241\n0xABF4\t0x62DC\n0xABF5\t0x6316\n0xABF6\t0x6309\n0xABF7\t0x62FC\n0xABF8\t0x62ED\n0xABF9\t0x6301\n0xABFA\t0x62EE\n0xABFB\t0x62FD\n0xABFC\t0x6307\n0xABFD\t0x62F1\n0xABFE\t0x62F7\n0xAC40\t0x62EF\n0xAC41\t0x62EC\n0xAC42\t0x62FE\n0xAC43\t0x62F4\n0xAC44\t0x6311\n0xAC45\t0x6302\n0xAC46\t0x653F\n0xAC47\t0x6545\n0xAC48\t0x65AB\n0xAC49\t0x65BD\n0xAC4A\t0x65E2\n0xAC4B\t0x6625\n0xAC4C\t0x662D\n0xAC4D\t0x6620\n0xAC4E\t0x6627\n0xAC4F\t0x662F\n0xAC50\t0x661F\n0xAC51\t0x6628\n0xAC52\t0x6631\n0xAC53\t0x6624\n0xAC54\t0x66F7\n0xAC55\t0x67FF\n0xAC56\t0x67D3\n0xAC57\t0x67F1\n0xAC58\t0x67D4\n0xAC59\t0x67D0\n0xAC5A\t0x67EC\n0xAC5B\t0x67B6\n0xAC5C\t0x67AF\n0xAC5D\t0x67F5\n0xAC5E\t0x67E9\n0xAC5F\t0x67EF\n0xAC60\t0x67C4\n0xAC61\t0x67D1\n0xAC62\t0x67B4\n0xAC63\t0x67DA\n0xAC64\t0x67E5\n0xAC65\t0x67B8\n0xAC66\t0x67CF\n0xAC67\t0x67DE\n0xAC68\t0x67F3\n0xAC69\t0x67B0\n0xAC6A\t0x67D9\n0xAC6B\t0x67E2\n0xAC6C\t0x67DD\n0xAC6D\t0x67D2\n0xAC6E\t0x6B6A\n0xAC6F\t0x6B83\n0xAC70\t0x6B86\n0xAC71\t0x6BB5\n0xAC72\t0x6BD2\n0xAC73\t0x6BD7\n0xAC74\t0x6C1F\n0xAC75\t0x6CC9\n0xAC76\t0x6D0B\n0xAC77\t0x6D32\n0xAC78\t0x6D2A\n0xAC79\t0x6D41\n0xAC7A\t0x6D25\n0xAC7B\t0x6D0C\n0xAC7C\t0x6D31\n0xAC7D\t0x6D1E\n0xAC7E\t0x6D17\n0xACA1\t0x6D3B\n0xACA2\t0x6D3D\n0xACA3\t0x6D3E\n0xACA4\t0x6D36\n0xACA5\t0x6D1B\n0xACA6\t0x6CF5\n0xACA7\t0x6D39\n0xACA8\t0x6D27\n0xACA9\t0x6D38\n0xACAA\t0x6D29\n0xACAB\t0x6D2E\n0xACAC\t0x6D35\n0xACAD\t0x6D0E\n0xACAE\t0x6D2B\n0xACAF\t0x70AB\n0xACB0\t0x70BA\n0xACB1\t0x70B3\n0xACB2\t0x70AC\n0xACB3\t0x70AF\n0xACB4\t0x70AD\n0xACB5\t0x70B8\n0xACB6\t0x70AE\n0xACB7\t0x70A4\n0xACB8\t0x7230\n0xACB9\t0x7272\n0xACBA\t0x726F\n0xACBB\t0x7274\n0xACBC\t0x72E9\n0xACBD\t0x72E0\n0xACBE\t0x72E1\n0xACBF\t0x73B7\n0xACC0\t0x73CA\n0xACC1\t0x73BB\n0xACC2\t0x73B2\n0xACC3\t0x73CD\n0xACC4\t0x73C0\n0xACC5\t0x73B3\n0xACC6\t0x751A\n0xACC7\t0x752D\n0xACC8\t0x754F\n0xACC9\t0x754C\n0xACCA\t0x754E\n0xACCB\t0x754B\n0xACCC\t0x75AB\n0xACCD\t0x75A4\n0xACCE\t0x75A5\n0xACCF\t0x75A2\n0xACD0\t0x75A3\n0xACD1\t0x7678\n0xACD2\t0x7686\n0xACD3\t0x7687\n0xACD4\t0x7688\n0xACD5\t0x76C8\n0xACD6\t0x76C6\n0xACD7\t0x76C3\n0xACD8\t0x76C5\n0xACD9\t0x7701\n0xACDA\t0x76F9\n0xACDB\t0x76F8\n0xACDC\t0x7709\n0xACDD\t0x770B\n0xACDE\t0x76FE\n0xACDF\t0x76FC\n0xACE0\t0x7707\n0xACE1\t0x77DC\n0xACE2\t0x7802\n0xACE3\t0x7814\n0xACE4\t0x780C\n0xACE5\t0x780D\n0xACE6\t0x7946\n0xACE7\t0x7949\n0xACE8\t0x7948\n0xACE9\t0x7947\n0xACEA\t0x79B9\n0xACEB\t0x79BA\n0xACEC\t0x79D1\n0xACED\t0x79D2\n0xACEE\t0x79CB\n0xACEF\t0x7A7F\n0xACF0\t0x7A81\n0xACF1\t0x7AFF\n0xACF2\t0x7AFD\n0xACF3\t0x7C7D\n0xACF4\t0x7D02\n0xACF5\t0x7D05\n0xACF6\t0x7D00\n0xACF7\t0x7D09\n0xACF8\t0x7D07\n0xACF9\t0x7D04\n0xACFA\t0x7D06\n0xACFB\t0x7F38\n0xACFC\t0x7F8E\n0xACFD\t0x7FBF\n0xACFE\t0x8004\n0xAD40\t0x8010\n0xAD41\t0x800D\n0xAD42\t0x8011\n0xAD43\t0x8036\n0xAD44\t0x80D6\n0xAD45\t0x80E5\n0xAD46\t0x80DA\n0xAD47\t0x80C3\n0xAD48\t0x80C4\n0xAD49\t0x80CC\n0xAD4A\t0x80E1\n0xAD4B\t0x80DB\n0xAD4C\t0x80CE\n0xAD4D\t0x80DE\n0xAD4E\t0x80E4\n0xAD4F\t0x80DD\n0xAD50\t0x81F4\n0xAD51\t0x8222\n0xAD52\t0x82E7\n0xAD53\t0x8303\n0xAD54\t0x8305\n0xAD55\t0x82E3\n0xAD56\t0x82DB\n0xAD57\t0x82E6\n0xAD58\t0x8304\n0xAD59\t0x82E5\n0xAD5A\t0x8302\n0xAD5B\t0x8309\n0xAD5C\t0x82D2\n0xAD5D\t0x82D7\n0xAD5E\t0x82F1\n0xAD5F\t0x8301\n0xAD60\t0x82DC\n0xAD61\t0x82D4\n0xAD62\t0x82D1\n0xAD63\t0x82DE\n0xAD64\t0x82D3\n0xAD65\t0x82DF\n0xAD66\t0x82EF\n0xAD67\t0x8306\n0xAD68\t0x8650\n0xAD69\t0x8679\n0xAD6A\t0x867B\n0xAD6B\t0x867A\n0xAD6C\t0x884D\n0xAD6D\t0x886B\n0xAD6E\t0x8981\n0xAD6F\t0x89D4\n0xAD70\t0x8A08\n0xAD71\t0x8A02\n0xAD72\t0x8A03\n0xAD73\t0x8C9E\n0xAD74\t0x8CA0\n0xAD75\t0x8D74\n0xAD76\t0x8D73\n0xAD77\t0x8DB4\n0xAD78\t0x8ECD\n0xAD79\t0x8ECC\n0xAD7A\t0x8FF0\n0xAD7B\t0x8FE6\n0xAD7C\t0x8FE2\n0xAD7D\t0x8FEA\n0xAD7E\t0x8FE5\n0xADA1\t0x8FED\n0xADA2\t0x8FEB\n0xADA3\t0x8FE4\n0xADA4\t0x8FE8\n0xADA5\t0x90CA\n0xADA6\t0x90CE\n0xADA7\t0x90C1\n0xADA8\t0x90C3\n0xADA9\t0x914B\n0xADAA\t0x914A\n0xADAB\t0x91CD\n0xADAC\t0x9582\n0xADAD\t0x9650\n0xADAE\t0x964B\n0xADAF\t0x964C\n0xADB0\t0x964D\n0xADB1\t0x9762\n0xADB2\t0x9769\n0xADB3\t0x97CB\n0xADB4\t0x97ED\n0xADB5\t0x97F3\n0xADB6\t0x9801\n0xADB7\t0x98A8\n0xADB8\t0x98DB\n0xADB9\t0x98DF\n0xADBA\t0x9996\n0xADBB\t0x9999\n0xADBC\t0x4E58\n0xADBD\t0x4EB3\n0xADBE\t0x500C\n0xADBF\t0x500D\n0xADC0\t0x5023\n0xADC1\t0x4FEF\n0xADC2\t0x5026\n0xADC3\t0x5025\n0xADC4\t0x4FF8\n0xADC5\t0x5029\n0xADC6\t0x5016\n0xADC7\t0x5006\n0xADC8\t0x503C\n0xADC9\t0x501F\n0xADCA\t0x501A\n0xADCB\t0x5012\n0xADCC\t0x5011\n0xADCD\t0x4FFA\n0xADCE\t0x5000\n0xADCF\t0x5014\n0xADD0\t0x5028\n0xADD1\t0x4FF1\n0xADD2\t0x5021\n0xADD3\t0x500B\n0xADD4\t0x5019\n0xADD5\t0x5018\n0xADD6\t0x4FF3\n0xADD7\t0x4FEE\n0xADD8\t0x502D\n0xADD9\t0x502A\n0xADDA\t0x4FFE\n0xADDB\t0x502B\n0xADDC\t0x5009\n0xADDD\t0x517C\n0xADDE\t0x51A4\n0xADDF\t0x51A5\n0xADE0\t0x51A2\n0xADE1\t0x51CD\n0xADE2\t0x51CC\n0xADE3\t0x51C6\n0xADE4\t0x51CB\n0xADE5\t0x5256\n0xADE6\t0x525C\n0xADE7\t0x5254\n0xADE8\t0x525B\n0xADE9\t0x525D\n0xADEA\t0x532A\n0xADEB\t0x537F\n0xADEC\t0x539F\n0xADED\t0x539D\n0xADEE\t0x53DF\n0xADEF\t0x54E8\n0xADF0\t0x5510\n0xADF1\t0x5501\n0xADF2\t0x5537\n0xADF3\t0x54FC\n0xADF4\t0x54E5\n0xADF5\t0x54F2\n0xADF6\t0x5506\n0xADF7\t0x54FA\n0xADF8\t0x5514\n0xADF9\t0x54E9\n0xADFA\t0x54ED\n0xADFB\t0x54E1\n0xADFC\t0x5509\n0xADFD\t0x54EE\n0xADFE\t0x54EA\n0xAE40\t0x54E6\n0xAE41\t0x5527\n0xAE42\t0x5507\n0xAE43\t0x54FD\n0xAE44\t0x550F\n0xAE45\t0x5703\n0xAE46\t0x5704\n0xAE47\t0x57C2\n0xAE48\t0x57D4\n0xAE49\t0x57CB\n0xAE4A\t0x57C3\n0xAE4B\t0x5809\n0xAE4C\t0x590F\n0xAE4D\t0x5957\n0xAE4E\t0x5958\n0xAE4F\t0x595A\n0xAE50\t0x5A11\n0xAE51\t0x5A18\n0xAE52\t0x5A1C\n0xAE53\t0x5A1F\n0xAE54\t0x5A1B\n0xAE55\t0x5A13\n0xAE56\t0x59EC\n0xAE57\t0x5A20\n0xAE58\t0x5A23\n0xAE59\t0x5A29\n0xAE5A\t0x5A25\n0xAE5B\t0x5A0C\n0xAE5C\t0x5A09\n0xAE5D\t0x5B6B\n0xAE5E\t0x5C58\n0xAE5F\t0x5BB0\n0xAE60\t0x5BB3\n0xAE61\t0x5BB6\n0xAE62\t0x5BB4\n0xAE63\t0x5BAE\n0xAE64\t0x5BB5\n0xAE65\t0x5BB9\n0xAE66\t0x5BB8\n0xAE67\t0x5C04\n0xAE68\t0x5C51\n0xAE69\t0x5C55\n0xAE6A\t0x5C50\n0xAE6B\t0x5CED\n0xAE6C\t0x5CFD\n0xAE6D\t0x5CFB\n0xAE6E\t0x5CEA\n0xAE6F\t0x5CE8\n0xAE70\t0x5CF0\n0xAE71\t0x5CF6\n0xAE72\t0x5D01\n0xAE73\t0x5CF4\n0xAE74\t0x5DEE\n0xAE75\t0x5E2D\n0xAE76\t0x5E2B\n0xAE77\t0x5EAB\n0xAE78\t0x5EAD\n0xAE79\t0x5EA7\n0xAE7A\t0x5F31\n0xAE7B\t0x5F92\n0xAE7C\t0x5F91\n0xAE7D\t0x5F90\n0xAE7E\t0x6059\n0xAEA1\t0x6063\n0xAEA2\t0x6065\n0xAEA3\t0x6050\n0xAEA4\t0x6055\n0xAEA5\t0x606D\n0xAEA6\t0x6069\n0xAEA7\t0x606F\n0xAEA8\t0x6084\n0xAEA9\t0x609F\n0xAEAA\t0x609A\n0xAEAB\t0x608D\n0xAEAC\t0x6094\n0xAEAD\t0x608C\n0xAEAE\t0x6085\n0xAEAF\t0x6096\n0xAEB0\t0x6247\n0xAEB1\t0x62F3\n0xAEB2\t0x6308\n0xAEB3\t0x62FF\n0xAEB4\t0x634E\n0xAEB5\t0x633E\n0xAEB6\t0x632F\n0xAEB7\t0x6355\n0xAEB8\t0x6342\n0xAEB9\t0x6346\n0xAEBA\t0x634F\n0xAEBB\t0x6349\n0xAEBC\t0x633A\n0xAEBD\t0x6350\n0xAEBE\t0x633D\n0xAEBF\t0x632A\n0xAEC0\t0x632B\n0xAEC1\t0x6328\n0xAEC2\t0x634D\n0xAEC3\t0x634C\n0xAEC4\t0x6548\n0xAEC5\t0x6549\n0xAEC6\t0x6599\n0xAEC7\t0x65C1\n0xAEC8\t0x65C5\n0xAEC9\t0x6642\n0xAECA\t0x6649\n0xAECB\t0x664F\n0xAECC\t0x6643\n0xAECD\t0x6652\n0xAECE\t0x664C\n0xAECF\t0x6645\n0xAED0\t0x6641\n0xAED1\t0x66F8\n0xAED2\t0x6714\n0xAED3\t0x6715\n0xAED4\t0x6717\n0xAED5\t0x6821\n0xAED6\t0x6838\n0xAED7\t0x6848\n0xAED8\t0x6846\n0xAED9\t0x6853\n0xAEDA\t0x6839\n0xAEDB\t0x6842\n0xAEDC\t0x6854\n0xAEDD\t0x6829\n0xAEDE\t0x68B3\n0xAEDF\t0x6817\n0xAEE0\t0x684C\n0xAEE1\t0x6851\n0xAEE2\t0x683D\n0xAEE3\t0x67F4\n0xAEE4\t0x6850\n0xAEE5\t0x6840\n0xAEE6\t0x683C\n0xAEE7\t0x6843\n0xAEE8\t0x682A\n0xAEE9\t0x6845\n0xAEEA\t0x6813\n0xAEEB\t0x6818\n0xAEEC\t0x6841\n0xAEED\t0x6B8A\n0xAEEE\t0x6B89\n0xAEEF\t0x6BB7\n0xAEF0\t0x6C23\n0xAEF1\t0x6C27\n0xAEF2\t0x6C28\n0xAEF3\t0x6C26\n0xAEF4\t0x6C24\n0xAEF5\t0x6CF0\n0xAEF6\t0x6D6A\n0xAEF7\t0x6D95\n0xAEF8\t0x6D88\n0xAEF9\t0x6D87\n0xAEFA\t0x6D66\n0xAEFB\t0x6D78\n0xAEFC\t0x6D77\n0xAEFD\t0x6D59\n0xAEFE\t0x6D93\n0xAF40\t0x6D6C\n0xAF41\t0x6D89\n0xAF42\t0x6D6E\n0xAF43\t0x6D5A\n0xAF44\t0x6D74\n0xAF45\t0x6D69\n0xAF46\t0x6D8C\n0xAF47\t0x6D8A\n0xAF48\t0x6D79\n0xAF49\t0x6D85\n0xAF4A\t0x6D65\n0xAF4B\t0x6D94\n0xAF4C\t0x70CA\n0xAF4D\t0x70D8\n0xAF4E\t0x70E4\n0xAF4F\t0x70D9\n0xAF50\t0x70C8\n0xAF51\t0x70CF\n0xAF52\t0x7239\n0xAF53\t0x7279\n0xAF54\t0x72FC\n0xAF55\t0x72F9\n0xAF56\t0x72FD\n0xAF57\t0x72F8\n0xAF58\t0x72F7\n0xAF59\t0x7386\n0xAF5A\t0x73ED\n0xAF5B\t0x7409\n0xAF5C\t0x73EE\n0xAF5D\t0x73E0\n0xAF5E\t0x73EA\n0xAF5F\t0x73DE\n0xAF60\t0x7554\n0xAF61\t0x755D\n0xAF62\t0x755C\n0xAF63\t0x755A\n0xAF64\t0x7559\n0xAF65\t0x75BE\n0xAF66\t0x75C5\n0xAF67\t0x75C7\n0xAF68\t0x75B2\n0xAF69\t0x75B3\n0xAF6A\t0x75BD\n0xAF6B\t0x75BC\n0xAF6C\t0x75B9\n0xAF6D\t0x75C2\n0xAF6E\t0x75B8\n0xAF6F\t0x768B\n0xAF70\t0x76B0\n0xAF71\t0x76CA\n0xAF72\t0x76CD\n0xAF73\t0x76CE\n0xAF74\t0x7729\n0xAF75\t0x771F\n0xAF76\t0x7720\n0xAF77\t0x7728\n0xAF78\t0x77E9\n0xAF79\t0x7830\n0xAF7A\t0x7827\n0xAF7B\t0x7838\n0xAF7C\t0x781D\n0xAF7D\t0x7834\n0xAF7E\t0x7837\n0xAFA1\t0x7825\n0xAFA2\t0x782D\n0xAFA3\t0x7820\n0xAFA4\t0x781F\n0xAFA5\t0x7832\n0xAFA6\t0x7955\n0xAFA7\t0x7950\n0xAFA8\t0x7960\n0xAFA9\t0x795F\n0xAFAA\t0x7956\n0xAFAB\t0x795E\n0xAFAC\t0x795D\n0xAFAD\t0x7957\n0xAFAE\t0x795A\n0xAFAF\t0x79E4\n0xAFB0\t0x79E3\n0xAFB1\t0x79E7\n0xAFB2\t0x79DF\n0xAFB3\t0x79E6\n0xAFB4\t0x79E9\n0xAFB5\t0x79D8\n0xAFB6\t0x7A84\n0xAFB7\t0x7A88\n0xAFB8\t0x7AD9\n0xAFB9\t0x7B06\n0xAFBA\t0x7B11\n0xAFBB\t0x7C89\n0xAFBC\t0x7D21\n0xAFBD\t0x7D17\n0xAFBE\t0x7D0B\n0xAFBF\t0x7D0A\n0xAFC0\t0x7D20\n0xAFC1\t0x7D22\n0xAFC2\t0x7D14\n0xAFC3\t0x7D10\n0xAFC4\t0x7D15\n0xAFC5\t0x7D1A\n0xAFC6\t0x7D1C\n0xAFC7\t0x7D0D\n0xAFC8\t0x7D19\n0xAFC9\t0x7D1B\n0xAFCA\t0x7F3A\n0xAFCB\t0x7F5F\n0xAFCC\t0x7F94\n0xAFCD\t0x7FC5\n0xAFCE\t0x7FC1\n0xAFCF\t0x8006\n0xAFD0\t0x8018\n0xAFD1\t0x8015\n0xAFD2\t0x8019\n0xAFD3\t0x8017\n0xAFD4\t0x803D\n0xAFD5\t0x803F\n0xAFD6\t0x80F1\n0xAFD7\t0x8102\n0xAFD8\t0x80F0\n0xAFD9\t0x8105\n0xAFDA\t0x80ED\n0xAFDB\t0x80F4\n0xAFDC\t0x8106\n0xAFDD\t0x80F8\n0xAFDE\t0x80F3\n0xAFDF\t0x8108\n0xAFE0\t0x80FD\n0xAFE1\t0x810A\n0xAFE2\t0x80FC\n0xAFE3\t0x80EF\n0xAFE4\t0x81ED\n0xAFE5\t0x81EC\n0xAFE6\t0x8200\n0xAFE7\t0x8210\n0xAFE8\t0x822A\n0xAFE9\t0x822B\n0xAFEA\t0x8228\n0xAFEB\t0x822C\n0xAFEC\t0x82BB\n0xAFED\t0x832B\n0xAFEE\t0x8352\n0xAFEF\t0x8354\n0xAFF0\t0x834A\n0xAFF1\t0x8338\n0xAFF2\t0x8350\n0xAFF3\t0x8349\n0xAFF4\t0x8335\n0xAFF5\t0x8334\n0xAFF6\t0x834F\n0xAFF7\t0x8332\n0xAFF8\t0x8339\n0xAFF9\t0x8336\n0xAFFA\t0x8317\n0xAFFB\t0x8340\n0xAFFC\t0x8331\n0xAFFD\t0x8328\n0xAFFE\t0x8343\n0xB040\t0x8654\n0xB041\t0x868A\n0xB042\t0x86AA\n0xB043\t0x8693\n0xB044\t0x86A4\n0xB045\t0x86A9\n0xB046\t0x868C\n0xB047\t0x86A3\n0xB048\t0x869C\n0xB049\t0x8870\n0xB04A\t0x8877\n0xB04B\t0x8881\n0xB04C\t0x8882\n0xB04D\t0x887D\n0xB04E\t0x8879\n0xB04F\t0x8A18\n0xB050\t0x8A10\n0xB051\t0x8A0E\n0xB052\t0x8A0C\n0xB053\t0x8A15\n0xB054\t0x8A0A\n0xB055\t0x8A17\n0xB056\t0x8A13\n0xB057\t0x8A16\n0xB058\t0x8A0F\n0xB059\t0x8A11\n0xB05A\t0x8C48\n0xB05B\t0x8C7A\n0xB05C\t0x8C79\n0xB05D\t0x8CA1\n0xB05E\t0x8CA2\n0xB05F\t0x8D77\n0xB060\t0x8EAC\n0xB061\t0x8ED2\n0xB062\t0x8ED4\n0xB063\t0x8ECF\n0xB064\t0x8FB1\n0xB065\t0x9001\n0xB066\t0x9006\n0xB067\t0x8FF7\n0xB068\t0x9000\n0xB069\t0x8FFA\n0xB06A\t0x8FF4\n0xB06B\t0x9003\n0xB06C\t0x8FFD\n0xB06D\t0x9005\n0xB06E\t0x8FF8\n0xB06F\t0x9095\n0xB070\t0x90E1\n0xB071\t0x90DD\n0xB072\t0x90E2\n0xB073\t0x9152\n0xB074\t0x914D\n0xB075\t0x914C\n0xB076\t0x91D8\n0xB077\t0x91DD\n0xB078\t0x91D7\n0xB079\t0x91DC\n0xB07A\t0x91D9\n0xB07B\t0x9583\n0xB07C\t0x9662\n0xB07D\t0x9663\n0xB07E\t0x9661\n0xB0A1\t0x965B\n0xB0A2\t0x965D\n0xB0A3\t0x9664\n0xB0A4\t0x9658\n0xB0A5\t0x965E\n0xB0A6\t0x96BB\n0xB0A7\t0x98E2\n0xB0A8\t0x99AC\n0xB0A9\t0x9AA8\n0xB0AA\t0x9AD8\n0xB0AB\t0x9B25\n0xB0AC\t0x9B32\n0xB0AD\t0x9B3C\n0xB0AE\t0x4E7E\n0xB0AF\t0x507A\n0xB0B0\t0x507D\n0xB0B1\t0x505C\n0xB0B2\t0x5047\n0xB0B3\t0x5043\n0xB0B4\t0x504C\n0xB0B5\t0x505A\n0xB0B6\t0x5049\n0xB0B7\t0x5065\n0xB0B8\t0x5076\n0xB0B9\t0x504E\n0xB0BA\t0x5055\n0xB0BB\t0x5075\n0xB0BC\t0x5074\n0xB0BD\t0x5077\n0xB0BE\t0x504F\n0xB0BF\t0x500F\n0xB0C0\t0x506F\n0xB0C1\t0x506D\n0xB0C2\t0x515C\n0xB0C3\t0x5195\n0xB0C4\t0x51F0\n0xB0C5\t0x526A\n0xB0C6\t0x526F\n0xB0C7\t0x52D2\n0xB0C8\t0x52D9\n0xB0C9\t0x52D8\n0xB0CA\t0x52D5\n0xB0CB\t0x5310\n0xB0CC\t0x530F\n0xB0CD\t0x5319\n0xB0CE\t0x533F\n0xB0CF\t0x5340\n0xB0D0\t0x533E\n0xB0D1\t0x53C3\n0xB0D2\t0x66FC\n0xB0D3\t0x5546\n0xB0D4\t0x556A\n0xB0D5\t0x5566\n0xB0D6\t0x5544\n0xB0D7\t0x555E\n0xB0D8\t0x5561\n0xB0D9\t0x5543\n0xB0DA\t0x554A\n0xB0DB\t0x5531\n0xB0DC\t0x5556\n0xB0DD\t0x554F\n0xB0DE\t0x5555\n0xB0DF\t0x552F\n0xB0E0\t0x5564\n0xB0E1\t0x5538\n0xB0E2\t0x552E\n0xB0E3\t0x555C\n0xB0E4\t0x552C\n0xB0E5\t0x5563\n0xB0E6\t0x5533\n0xB0E7\t0x5541\n0xB0E8\t0x5557\n0xB0E9\t0x5708\n0xB0EA\t0x570B\n0xB0EB\t0x5709\n0xB0EC\t0x57DF\n0xB0ED\t0x5805\n0xB0EE\t0x580A\n0xB0EF\t0x5806\n0xB0F0\t0x57E0\n0xB0F1\t0x57E4\n0xB0F2\t0x57FA\n0xB0F3\t0x5802\n0xB0F4\t0x5835\n0xB0F5\t0x57F7\n0xB0F6\t0x57F9\n0xB0F7\t0x5920\n0xB0F8\t0x5962\n0xB0F9\t0x5A36\n0xB0FA\t0x5A41\n0xB0FB\t0x5A49\n0xB0FC\t0x5A66\n0xB0FD\t0x5A6A\n0xB0FE\t0x5A40\n0xB140\t0x5A3C\n0xB141\t0x5A62\n0xB142\t0x5A5A\n0xB143\t0x5A46\n0xB144\t0x5A4A\n0xB145\t0x5B70\n0xB146\t0x5BC7\n0xB147\t0x5BC5\n0xB148\t0x5BC4\n0xB149\t0x5BC2\n0xB14A\t0x5BBF\n0xB14B\t0x5BC6\n0xB14C\t0x5C09\n0xB14D\t0x5C08\n0xB14E\t0x5C07\n0xB14F\t0x5C60\n0xB150\t0x5C5C\n0xB151\t0x5C5D\n0xB152\t0x5D07\n0xB153\t0x5D06\n0xB154\t0x5D0E\n0xB155\t0x5D1B\n0xB156\t0x5D16\n0xB157\t0x5D22\n0xB158\t0x5D11\n0xB159\t0x5D29\n0xB15A\t0x5D14\n0xB15B\t0x5D19\n0xB15C\t0x5D24\n0xB15D\t0x5D27\n0xB15E\t0x5D17\n0xB15F\t0x5DE2\n0xB160\t0x5E38\n0xB161\t0x5E36\n0xB162\t0x5E33\n0xB163\t0x5E37\n0xB164\t0x5EB7\n0xB165\t0x5EB8\n0xB166\t0x5EB6\n0xB167\t0x5EB5\n0xB168\t0x5EBE\n0xB169\t0x5F35\n0xB16A\t0x5F37\n0xB16B\t0x5F57\n0xB16C\t0x5F6C\n0xB16D\t0x5F69\n0xB16E\t0x5F6B\n0xB16F\t0x5F97\n0xB170\t0x5F99\n0xB171\t0x5F9E\n0xB172\t0x5F98\n0xB173\t0x5FA1\n0xB174\t0x5FA0\n0xB175\t0x5F9C\n0xB176\t0x607F\n0xB177\t0x60A3\n0xB178\t0x6089\n0xB179\t0x60A0\n0xB17A\t0x60A8\n0xB17B\t0x60CB\n0xB17C\t0x60B4\n0xB17D\t0x60E6\n0xB17E\t0x60BD\n0xB1A1\t0x60C5\n0xB1A2\t0x60BB\n0xB1A3\t0x60B5\n0xB1A4\t0x60DC\n0xB1A5\t0x60BC\n0xB1A6\t0x60D8\n0xB1A7\t0x60D5\n0xB1A8\t0x60C6\n0xB1A9\t0x60DF\n0xB1AA\t0x60B8\n0xB1AB\t0x60DA\n0xB1AC\t0x60C7\n0xB1AD\t0x621A\n0xB1AE\t0x621B\n0xB1AF\t0x6248\n0xB1B0\t0x63A0\n0xB1B1\t0x63A7\n0xB1B2\t0x6372\n0xB1B3\t0x6396\n0xB1B4\t0x63A2\n0xB1B5\t0x63A5\n0xB1B6\t0x6377\n0xB1B7\t0x6367\n0xB1B8\t0x6398\n0xB1B9\t0x63AA\n0xB1BA\t0x6371\n0xB1BB\t0x63A9\n0xB1BC\t0x6389\n0xB1BD\t0x6383\n0xB1BE\t0x639B\n0xB1BF\t0x636B\n0xB1C0\t0x63A8\n0xB1C1\t0x6384\n0xB1C2\t0x6388\n0xB1C3\t0x6399\n0xB1C4\t0x63A1\n0xB1C5\t0x63AC\n0xB1C6\t0x6392\n0xB1C7\t0x638F\n0xB1C8\t0x6380\n0xB1C9\t0x637B\n0xB1CA\t0x6369\n0xB1CB\t0x6368\n0xB1CC\t0x637A\n0xB1CD\t0x655D\n0xB1CE\t0x6556\n0xB1CF\t0x6551\n0xB1D0\t0x6559\n0xB1D1\t0x6557\n0xB1D2\t0x555F\n0xB1D3\t0x654F\n0xB1D4\t0x6558\n0xB1D5\t0x6555\n0xB1D6\t0x6554\n0xB1D7\t0x659C\n0xB1D8\t0x659B\n0xB1D9\t0x65AC\n0xB1DA\t0x65CF\n0xB1DB\t0x65CB\n0xB1DC\t0x65CC\n0xB1DD\t0x65CE\n0xB1DE\t0x665D\n0xB1DF\t0x665A\n0xB1E0\t0x6664\n0xB1E1\t0x6668\n0xB1E2\t0x6666\n0xB1E3\t0x665E\n0xB1E4\t0x66F9\n0xB1E5\t0x52D7\n0xB1E6\t0x671B\n0xB1E7\t0x6881\n0xB1E8\t0x68AF\n0xB1E9\t0x68A2\n0xB1EA\t0x6893\n0xB1EB\t0x68B5\n0xB1EC\t0x687F\n0xB1ED\t0x6876\n0xB1EE\t0x68B1\n0xB1EF\t0x68A7\n0xB1F0\t0x6897\n0xB1F1\t0x68B0\n0xB1F2\t0x6883\n0xB1F3\t0x68C4\n0xB1F4\t0x68AD\n0xB1F5\t0x6886\n0xB1F6\t0x6885\n0xB1F7\t0x6894\n0xB1F8\t0x689D\n0xB1F9\t0x68A8\n0xB1FA\t0x689F\n0xB1FB\t0x68A1\n0xB1FC\t0x6882\n0xB1FD\t0x6B32\n0xB1FE\t0x6BBA\n0xB240\t0x6BEB\n0xB241\t0x6BEC\n0xB242\t0x6C2B\n0xB243\t0x6D8E\n0xB244\t0x6DBC\n0xB245\t0x6DF3\n0xB246\t0x6DD9\n0xB247\t0x6DB2\n0xB248\t0x6DE1\n0xB249\t0x6DCC\n0xB24A\t0x6DE4\n0xB24B\t0x6DFB\n0xB24C\t0x6DFA\n0xB24D\t0x6E05\n0xB24E\t0x6DC7\n0xB24F\t0x6DCB\n0xB250\t0x6DAF\n0xB251\t0x6DD1\n0xB252\t0x6DAE\n0xB253\t0x6DDE\n0xB254\t0x6DF9\n0xB255\t0x6DB8\n0xB256\t0x6DF7\n0xB257\t0x6DF5\n0xB258\t0x6DC5\n0xB259\t0x6DD2\n0xB25A\t0x6E1A\n0xB25B\t0x6DB5\n0xB25C\t0x6DDA\n0xB25D\t0x6DEB\n0xB25E\t0x6DD8\n0xB25F\t0x6DEA\n0xB260\t0x6DF1\n0xB261\t0x6DEE\n0xB262\t0x6DE8\n0xB263\t0x6DC6\n0xB264\t0x6DC4\n0xB265\t0x6DAA\n0xB266\t0x6DEC\n0xB267\t0x6DBF\n0xB268\t0x6DE6\n0xB269\t0x70F9\n0xB26A\t0x7109\n0xB26B\t0x710A\n0xB26C\t0x70FD\n0xB26D\t0x70EF\n0xB26E\t0x723D\n0xB26F\t0x727D\n0xB270\t0x7281\n0xB271\t0x731C\n0xB272\t0x731B\n0xB273\t0x7316\n0xB274\t0x7313\n0xB275\t0x7319\n0xB276\t0x7387\n0xB277\t0x7405\n0xB278\t0x740A\n0xB279\t0x7403\n0xB27A\t0x7406\n0xB27B\t0x73FE\n0xB27C\t0x740D\n0xB27D\t0x74E0\n0xB27E\t0x74F6\n0xB2A1\t0x74F7\n0xB2A2\t0x751C\n0xB2A3\t0x7522\n0xB2A4\t0x7565\n0xB2A5\t0x7566\n0xB2A6\t0x7562\n0xB2A7\t0x7570\n0xB2A8\t0x758F\n0xB2A9\t0x75D4\n0xB2AA\t0x75D5\n0xB2AB\t0x75B5\n0xB2AC\t0x75CA\n0xB2AD\t0x75CD\n0xB2AE\t0x768E\n0xB2AF\t0x76D4\n0xB2B0\t0x76D2\n0xB2B1\t0x76DB\n0xB2B2\t0x7737\n0xB2B3\t0x773E\n0xB2B4\t0x773C\n0xB2B5\t0x7736\n0xB2B6\t0x7738\n0xB2B7\t0x773A\n0xB2B8\t0x786B\n0xB2B9\t0x7843\n0xB2BA\t0x784E\n0xB2BB\t0x7965\n0xB2BC\t0x7968\n0xB2BD\t0x796D\n0xB2BE\t0x79FB\n0xB2BF\t0x7A92\n0xB2C0\t0x7A95\n0xB2C1\t0x7B20\n0xB2C2\t0x7B28\n0xB2C3\t0x7B1B\n0xB2C4\t0x7B2C\n0xB2C5\t0x7B26\n0xB2C6\t0x7B19\n0xB2C7\t0x7B1E\n0xB2C8\t0x7B2E\n0xB2C9\t0x7C92\n0xB2CA\t0x7C97\n0xB2CB\t0x7C95\n0xB2CC\t0x7D46\n0xB2CD\t0x7D43\n0xB2CE\t0x7D71\n0xB2CF\t0x7D2E\n0xB2D0\t0x7D39\n0xB2D1\t0x7D3C\n0xB2D2\t0x7D40\n0xB2D3\t0x7D30\n0xB2D4\t0x7D33\n0xB2D5\t0x7D44\n0xB2D6\t0x7D2F\n0xB2D7\t0x7D42\n0xB2D8\t0x7D32\n0xB2D9\t0x7D31\n0xB2DA\t0x7F3D\n0xB2DB\t0x7F9E\n0xB2DC\t0x7F9A\n0xB2DD\t0x7FCC\n0xB2DE\t0x7FCE\n0xB2DF\t0x7FD2\n0xB2E0\t0x801C\n0xB2E1\t0x804A\n0xB2E2\t0x8046\n0xB2E3\t0x812F\n0xB2E4\t0x8116\n0xB2E5\t0x8123\n0xB2E6\t0x812B\n0xB2E7\t0x8129\n0xB2E8\t0x8130\n0xB2E9\t0x8124\n0xB2EA\t0x8202\n0xB2EB\t0x8235\n0xB2EC\t0x8237\n0xB2ED\t0x8236\n0xB2EE\t0x8239\n0xB2EF\t0x838E\n0xB2F0\t0x839E\n0xB2F1\t0x8398\n0xB2F2\t0x8378\n0xB2F3\t0x83A2\n0xB2F4\t0x8396\n0xB2F5\t0x83BD\n0xB2F6\t0x83AB\n0xB2F7\t0x8392\n0xB2F8\t0x838A\n0xB2F9\t0x8393\n0xB2FA\t0x8389\n0xB2FB\t0x83A0\n0xB2FC\t0x8377\n0xB2FD\t0x837B\n0xB2FE\t0x837C\n0xB340\t0x8386\n0xB341\t0x83A7\n0xB342\t0x8655\n0xB343\t0x5F6A\n0xB344\t0x86C7\n0xB345\t0x86C0\n0xB346\t0x86B6\n0xB347\t0x86C4\n0xB348\t0x86B5\n0xB349\t0x86C6\n0xB34A\t0x86CB\n0xB34B\t0x86B1\n0xB34C\t0x86AF\n0xB34D\t0x86C9\n0xB34E\t0x8853\n0xB34F\t0x889E\n0xB350\t0x8888\n0xB351\t0x88AB\n0xB352\t0x8892\n0xB353\t0x8896\n0xB354\t0x888D\n0xB355\t0x888B\n0xB356\t0x8993\n0xB357\t0x898F\n0xB358\t0x8A2A\n0xB359\t0x8A1D\n0xB35A\t0x8A23\n0xB35B\t0x8A25\n0xB35C\t0x8A31\n0xB35D\t0x8A2D\n0xB35E\t0x8A1F\n0xB35F\t0x8A1B\n0xB360\t0x8A22\n0xB361\t0x8C49\n0xB362\t0x8C5A\n0xB363\t0x8CA9\n0xB364\t0x8CAC\n0xB365\t0x8CAB\n0xB366\t0x8CA8\n0xB367\t0x8CAA\n0xB368\t0x8CA7\n0xB369\t0x8D67\n0xB36A\t0x8D66\n0xB36B\t0x8DBE\n0xB36C\t0x8DBA\n0xB36D\t0x8EDB\n0xB36E\t0x8EDF\n0xB36F\t0x9019\n0xB370\t0x900D\n0xB371\t0x901A\n0xB372\t0x9017\n0xB373\t0x9023\n0xB374\t0x901F\n0xB375\t0x901D\n0xB376\t0x9010\n0xB377\t0x9015\n0xB378\t0x901E\n0xB379\t0x9020\n0xB37A\t0x900F\n0xB37B\t0x9022\n0xB37C\t0x9016\n0xB37D\t0x901B\n0xB37E\t0x9014\n0xB3A1\t0x90E8\n0xB3A2\t0x90ED\n0xB3A3\t0x90FD\n0xB3A4\t0x9157\n0xB3A5\t0x91CE\n0xB3A6\t0x91F5\n0xB3A7\t0x91E6\n0xB3A8\t0x91E3\n0xB3A9\t0x91E7\n0xB3AA\t0x91ED\n0xB3AB\t0x91E9\n0xB3AC\t0x9589\n0xB3AD\t0x966A\n0xB3AE\t0x9675\n0xB3AF\t0x9673\n0xB3B0\t0x9678\n0xB3B1\t0x9670\n0xB3B2\t0x9674\n0xB3B3\t0x9676\n0xB3B4\t0x9677\n0xB3B5\t0x966C\n0xB3B6\t0x96C0\n0xB3B7\t0x96EA\n0xB3B8\t0x96E9\n0xB3B9\t0x7AE0\n0xB3BA\t0x7ADF\n0xB3BB\t0x9802\n0xB3BC\t0x9803\n0xB3BD\t0x9B5A\n0xB3BE\t0x9CE5\n0xB3BF\t0x9E75\n0xB3C0\t0x9E7F\n0xB3C1\t0x9EA5\n0xB3C2\t0x9EBB\n0xB3C3\t0x50A2\n0xB3C4\t0x508D\n0xB3C5\t0x5085\n0xB3C6\t0x5099\n0xB3C7\t0x5091\n0xB3C8\t0x5080\n0xB3C9\t0x5096\n0xB3CA\t0x5098\n0xB3CB\t0x509A\n0xB3CC\t0x6700\n0xB3CD\t0x51F1\n0xB3CE\t0x5272\n0xB3CF\t0x5274\n0xB3D0\t0x5275\n0xB3D1\t0x5269\n0xB3D2\t0x52DE\n0xB3D3\t0x52DD\n0xB3D4\t0x52DB\n0xB3D5\t0x535A\n0xB3D6\t0x53A5\n0xB3D7\t0x557B\n0xB3D8\t0x5580\n0xB3D9\t0x55A7\n0xB3DA\t0x557C\n0xB3DB\t0x558A\n0xB3DC\t0x559D\n0xB3DD\t0x5598\n0xB3DE\t0x5582\n0xB3DF\t0x559C\n0xB3E0\t0x55AA\n0xB3E1\t0x5594\n0xB3E2\t0x5587\n0xB3E3\t0x558B\n0xB3E4\t0x5583\n0xB3E5\t0x55B3\n0xB3E6\t0x55AE\n0xB3E7\t0x559F\n0xB3E8\t0x553E\n0xB3E9\t0x55B2\n0xB3EA\t0x559A\n0xB3EB\t0x55BB\n0xB3EC\t0x55AC\n0xB3ED\t0x55B1\n0xB3EE\t0x557E\n0xB3EF\t0x5589\n0xB3F0\t0x55AB\n0xB3F1\t0x5599\n0xB3F2\t0x570D\n0xB3F3\t0x582F\n0xB3F4\t0x582A\n0xB3F5\t0x5834\n0xB3F6\t0x5824\n0xB3F7\t0x5830\n0xB3F8\t0x5831\n0xB3F9\t0x5821\n0xB3FA\t0x581D\n0xB3FB\t0x5820\n0xB3FC\t0x58F9\n0xB3FD\t0x58FA\n0xB3FE\t0x5960\n0xB440\t0x5A77\n0xB441\t0x5A9A\n0xB442\t0x5A7F\n0xB443\t0x5A92\n0xB444\t0x5A9B\n0xB445\t0x5AA7\n0xB446\t0x5B73\n0xB447\t0x5B71\n0xB448\t0x5BD2\n0xB449\t0x5BCC\n0xB44A\t0x5BD3\n0xB44B\t0x5BD0\n0xB44C\t0x5C0A\n0xB44D\t0x5C0B\n0xB44E\t0x5C31\n0xB44F\t0x5D4C\n0xB450\t0x5D50\n0xB451\t0x5D34\n0xB452\t0x5D47\n0xB453\t0x5DFD\n0xB454\t0x5E45\n0xB455\t0x5E3D\n0xB456\t0x5E40\n0xB457\t0x5E43\n0xB458\t0x5E7E\n0xB459\t0x5ECA\n0xB45A\t0x5EC1\n0xB45B\t0x5EC2\n0xB45C\t0x5EC4\n0xB45D\t0x5F3C\n0xB45E\t0x5F6D\n0xB45F\t0x5FA9\n0xB460\t0x5FAA\n0xB461\t0x5FA8\n0xB462\t0x60D1\n0xB463\t0x60E1\n0xB464\t0x60B2\n0xB465\t0x60B6\n0xB466\t0x60E0\n0xB467\t0x611C\n0xB468\t0x6123\n0xB469\t0x60FA\n0xB46A\t0x6115\n0xB46B\t0x60F0\n0xB46C\t0x60FB\n0xB46D\t0x60F4\n0xB46E\t0x6168\n0xB46F\t0x60F1\n0xB470\t0x610E\n0xB471\t0x60F6\n0xB472\t0x6109\n0xB473\t0x6100\n0xB474\t0x6112\n0xB475\t0x621F\n0xB476\t0x6249\n0xB477\t0x63A3\n0xB478\t0x638C\n0xB479\t0x63CF\n0xB47A\t0x63C0\n0xB47B\t0x63E9\n0xB47C\t0x63C9\n0xB47D\t0x63C6\n0xB47E\t0x63CD\n0xB4A1\t0x63D2\n0xB4A2\t0x63E3\n0xB4A3\t0x63D0\n0xB4A4\t0x63E1\n0xB4A5\t0x63D6\n0xB4A6\t0x63ED\n0xB4A7\t0x63EE\n0xB4A8\t0x6376\n0xB4A9\t0x63F4\n0xB4AA\t0x63EA\n0xB4AB\t0x63DB\n0xB4AC\t0x6452\n0xB4AD\t0x63DA\n0xB4AE\t0x63F9\n0xB4AF\t0x655E\n0xB4B0\t0x6566\n0xB4B1\t0x6562\n0xB4B2\t0x6563\n0xB4B3\t0x6591\n0xB4B4\t0x6590\n0xB4B5\t0x65AF\n0xB4B6\t0x666E\n0xB4B7\t0x6670\n0xB4B8\t0x6674\n0xB4B9\t0x6676\n0xB4BA\t0x666F\n0xB4BB\t0x6691\n0xB4BC\t0x667A\n0xB4BD\t0x667E\n0xB4BE\t0x6677\n0xB4BF\t0x66FE\n0xB4C0\t0x66FF\n0xB4C1\t0x671F\n0xB4C2\t0x671D\n0xB4C3\t0x68FA\n0xB4C4\t0x68D5\n0xB4C5\t0x68E0\n0xB4C6\t0x68D8\n0xB4C7\t0x68D7\n0xB4C8\t0x6905\n0xB4C9\t0x68DF\n0xB4CA\t0x68F5\n0xB4CB\t0x68EE\n0xB4CC\t0x68E7\n0xB4CD\t0x68F9\n0xB4CE\t0x68D2\n0xB4CF\t0x68F2\n0xB4D0\t0x68E3\n0xB4D1\t0x68CB\n0xB4D2\t0x68CD\n0xB4D3\t0x690D\n0xB4D4\t0x6912\n0xB4D5\t0x690E\n0xB4D6\t0x68C9\n0xB4D7\t0x68DA\n0xB4D8\t0x696E\n0xB4D9\t0x68FB\n0xB4DA\t0x6B3E\n0xB4DB\t0x6B3A\n0xB4DC\t0x6B3D\n0xB4DD\t0x6B98\n0xB4DE\t0x6B96\n0xB4DF\t0x6BBC\n0xB4E0\t0x6BEF\n0xB4E1\t0x6C2E\n0xB4E2\t0x6C2F\n0xB4E3\t0x6C2C\n0xB4E4\t0x6E2F\n0xB4E5\t0x6E38\n0xB4E6\t0x6E54\n0xB4E7\t0x6E21\n0xB4E8\t0x6E32\n0xB4E9\t0x6E67\n0xB4EA\t0x6E4A\n0xB4EB\t0x6E20\n0xB4EC\t0x6E25\n0xB4ED\t0x6E23\n0xB4EE\t0x6E1B\n0xB4EF\t0x6E5B\n0xB4F0\t0x6E58\n0xB4F1\t0x6E24\n0xB4F2\t0x6E56\n0xB4F3\t0x6E6E\n0xB4F4\t0x6E2D\n0xB4F5\t0x6E26\n0xB4F6\t0x6E6F\n0xB4F7\t0x6E34\n0xB4F8\t0x6E4D\n0xB4F9\t0x6E3A\n0xB4FA\t0x6E2C\n0xB4FB\t0x6E43\n0xB4FC\t0x6E1D\n0xB4FD\t0x6E3E\n0xB4FE\t0x6ECB\n0xB540\t0x6E89\n0xB541\t0x6E19\n0xB542\t0x6E4E\n0xB543\t0x6E63\n0xB544\t0x6E44\n0xB545\t0x6E72\n0xB546\t0x6E69\n0xB547\t0x6E5F\n0xB548\t0x7119\n0xB549\t0x711A\n0xB54A\t0x7126\n0xB54B\t0x7130\n0xB54C\t0x7121\n0xB54D\t0x7136\n0xB54E\t0x716E\n0xB54F\t0x711C\n0xB550\t0x724C\n0xB551\t0x7284\n0xB552\t0x7280\n0xB553\t0x7336\n0xB554\t0x7325\n0xB555\t0x7334\n0xB556\t0x7329\n0xB557\t0x743A\n0xB558\t0x742A\n0xB559\t0x7433\n0xB55A\t0x7422\n0xB55B\t0x7425\n0xB55C\t0x7435\n0xB55D\t0x7436\n0xB55E\t0x7434\n0xB55F\t0x742F\n0xB560\t0x741B\n0xB561\t0x7426\n0xB562\t0x7428\n0xB563\t0x7525\n0xB564\t0x7526\n0xB565\t0x756B\n0xB566\t0x756A\n0xB567\t0x75E2\n0xB568\t0x75DB\n0xB569\t0x75E3\n0xB56A\t0x75D9\n0xB56B\t0x75D8\n0xB56C\t0x75DE\n0xB56D\t0x75E0\n0xB56E\t0x767B\n0xB56F\t0x767C\n0xB570\t0x7696\n0xB571\t0x7693\n0xB572\t0x76B4\n0xB573\t0x76DC\n0xB574\t0x774F\n0xB575\t0x77ED\n0xB576\t0x785D\n0xB577\t0x786C\n0xB578\t0x786F\n0xB579\t0x7A0D\n0xB57A\t0x7A08\n0xB57B\t0x7A0B\n0xB57C\t0x7A05\n0xB57D\t0x7A00\n0xB57E\t0x7A98\n0xB5A1\t0x7A97\n0xB5A2\t0x7A96\n0xB5A3\t0x7AE5\n0xB5A4\t0x7AE3\n0xB5A5\t0x7B49\n0xB5A6\t0x7B56\n0xB5A7\t0x7B46\n0xB5A8\t0x7B50\n0xB5A9\t0x7B52\n0xB5AA\t0x7B54\n0xB5AB\t0x7B4D\n0xB5AC\t0x7B4B\n0xB5AD\t0x7B4F\n0xB5AE\t0x7B51\n0xB5AF\t0x7C9F\n0xB5B0\t0x7CA5\n0xB5B1\t0x7D5E\n0xB5B2\t0x7D50\n0xB5B3\t0x7D68\n0xB5B4\t0x7D55\n0xB5B5\t0x7D2B\n0xB5B6\t0x7D6E\n0xB5B7\t0x7D72\n0xB5B8\t0x7D61\n0xB5B9\t0x7D66\n0xB5BA\t0x7D62\n0xB5BB\t0x7D70\n0xB5BC\t0x7D73\n0xB5BD\t0x5584\n0xB5BE\t0x7FD4\n0xB5BF\t0x7FD5\n0xB5C0\t0x800B\n0xB5C1\t0x8052\n0xB5C2\t0x8085\n0xB5C3\t0x8155\n0xB5C4\t0x8154\n0xB5C5\t0x814B\n0xB5C6\t0x8151\n0xB5C7\t0x814E\n0xB5C8\t0x8139\n0xB5C9\t0x8146\n0xB5CA\t0x813E\n0xB5CB\t0x814C\n0xB5CC\t0x8153\n0xB5CD\t0x8174\n0xB5CE\t0x8212\n0xB5CF\t0x821C\n0xB5D0\t0x83E9\n0xB5D1\t0x8403\n0xB5D2\t0x83F8\n0xB5D3\t0x840D\n0xB5D4\t0x83E0\n0xB5D5\t0x83C5\n0xB5D6\t0x840B\n0xB5D7\t0x83C1\n0xB5D8\t0x83EF\n0xB5D9\t0x83F1\n0xB5DA\t0x83F4\n0xB5DB\t0x8457\n0xB5DC\t0x840A\n0xB5DD\t0x83F0\n0xB5DE\t0x840C\n0xB5DF\t0x83CC\n0xB5E0\t0x83FD\n0xB5E1\t0x83F2\n0xB5E2\t0x83CA\n0xB5E3\t0x8438\n0xB5E4\t0x840E\n0xB5E5\t0x8404\n0xB5E6\t0x83DC\n0xB5E7\t0x8407\n0xB5E8\t0x83D4\n0xB5E9\t0x83DF\n0xB5EA\t0x865B\n0xB5EB\t0x86DF\n0xB5EC\t0x86D9\n0xB5ED\t0x86ED\n0xB5EE\t0x86D4\n0xB5EF\t0x86DB\n0xB5F0\t0x86E4\n0xB5F1\t0x86D0\n0xB5F2\t0x86DE\n0xB5F3\t0x8857\n0xB5F4\t0x88C1\n0xB5F5\t0x88C2\n0xB5F6\t0x88B1\n0xB5F7\t0x8983\n0xB5F8\t0x8996\n0xB5F9\t0x8A3B\n0xB5FA\t0x8A60\n0xB5FB\t0x8A55\n0xB5FC\t0x8A5E\n0xB5FD\t0x8A3C\n0xB5FE\t0x8A41\n0xB640\t0x8A54\n0xB641\t0x8A5B\n0xB642\t0x8A50\n0xB643\t0x8A46\n0xB644\t0x8A34\n0xB645\t0x8A3A\n0xB646\t0x8A36\n0xB647\t0x8A56\n0xB648\t0x8C61\n0xB649\t0x8C82\n0xB64A\t0x8CAF\n0xB64B\t0x8CBC\n0xB64C\t0x8CB3\n0xB64D\t0x8CBD\n0xB64E\t0x8CC1\n0xB64F\t0x8CBB\n0xB650\t0x8CC0\n0xB651\t0x8CB4\n0xB652\t0x8CB7\n0xB653\t0x8CB6\n0xB654\t0x8CBF\n0xB655\t0x8CB8\n0xB656\t0x8D8A\n0xB657\t0x8D85\n0xB658\t0x8D81\n0xB659\t0x8DCE\n0xB65A\t0x8DDD\n0xB65B\t0x8DCB\n0xB65C\t0x8DDA\n0xB65D\t0x8DD1\n0xB65E\t0x8DCC\n0xB65F\t0x8DDB\n0xB660\t0x8DC6\n0xB661\t0x8EFB\n0xB662\t0x8EF8\n0xB663\t0x8EFC\n0xB664\t0x8F9C\n0xB665\t0x902E\n0xB666\t0x9035\n0xB667\t0x9031\n0xB668\t0x9038\n0xB669\t0x9032\n0xB66A\t0x9036\n0xB66B\t0x9102\n0xB66C\t0x90F5\n0xB66D\t0x9109\n0xB66E\t0x90FE\n0xB66F\t0x9163\n0xB670\t0x9165\n0xB671\t0x91CF\n0xB672\t0x9214\n0xB673\t0x9215\n0xB674\t0x9223\n0xB675\t0x9209\n0xB676\t0x921E\n0xB677\t0x920D\n0xB678\t0x9210\n0xB679\t0x9207\n0xB67A\t0x9211\n0xB67B\t0x9594\n0xB67C\t0x958F\n0xB67D\t0x958B\n0xB67E\t0x9591\n0xB6A1\t0x9593\n0xB6A2\t0x9592\n0xB6A3\t0x958E\n0xB6A4\t0x968A\n0xB6A5\t0x968E\n0xB6A6\t0x968B\n0xB6A7\t0x967D\n0xB6A8\t0x9685\n0xB6A9\t0x9686\n0xB6AA\t0x968D\n0xB6AB\t0x9672\n0xB6AC\t0x9684\n0xB6AD\t0x96C1\n0xB6AE\t0x96C5\n0xB6AF\t0x96C4\n0xB6B0\t0x96C6\n0xB6B1\t0x96C7\n0xB6B2\t0x96EF\n0xB6B3\t0x96F2\n0xB6B4\t0x97CC\n0xB6B5\t0x9805\n0xB6B6\t0x9806\n0xB6B7\t0x9808\n0xB6B8\t0x98E7\n0xB6B9\t0x98EA\n0xB6BA\t0x98EF\n0xB6BB\t0x98E9\n0xB6BC\t0x98F2\n0xB6BD\t0x98ED\n0xB6BE\t0x99AE\n0xB6BF\t0x99AD\n0xB6C0\t0x9EC3\n0xB6C1\t0x9ECD\n0xB6C2\t0x9ED1\n0xB6C3\t0x4E82\n0xB6C4\t0x50AD\n0xB6C5\t0x50B5\n0xB6C6\t0x50B2\n0xB6C7\t0x50B3\n0xB6C8\t0x50C5\n0xB6C9\t0x50BE\n0xB6CA\t0x50AC\n0xB6CB\t0x50B7\n0xB6CC\t0x50BB\n0xB6CD\t0x50AF\n0xB6CE\t0x50C7\n0xB6CF\t0x527F\n0xB6D0\t0x5277\n0xB6D1\t0x527D\n0xB6D2\t0x52DF\n0xB6D3\t0x52E6\n0xB6D4\t0x52E4\n0xB6D5\t0x52E2\n0xB6D6\t0x52E3\n0xB6D7\t0x532F\n0xB6D8\t0x55DF\n0xB6D9\t0x55E8\n0xB6DA\t0x55D3\n0xB6DB\t0x55E6\n0xB6DC\t0x55CE\n0xB6DD\t0x55DC\n0xB6DE\t0x55C7\n0xB6DF\t0x55D1\n0xB6E0\t0x55E3\n0xB6E1\t0x55E4\n0xB6E2\t0x55EF\n0xB6E3\t0x55DA\n0xB6E4\t0x55E1\n0xB6E5\t0x55C5\n0xB6E6\t0x55C6\n0xB6E7\t0x55E5\n0xB6E8\t0x55C9\n0xB6E9\t0x5712\n0xB6EA\t0x5713\n0xB6EB\t0x585E\n0xB6EC\t0x5851\n0xB6ED\t0x5858\n0xB6EE\t0x5857\n0xB6EF\t0x585A\n0xB6F0\t0x5854\n0xB6F1\t0x586B\n0xB6F2\t0x584C\n0xB6F3\t0x586D\n0xB6F4\t0x584A\n0xB6F5\t0x5862\n0xB6F6\t0x5852\n0xB6F7\t0x584B\n0xB6F8\t0x5967\n0xB6F9\t0x5AC1\n0xB6FA\t0x5AC9\n0xB6FB\t0x5ACC\n0xB6FC\t0x5ABE\n0xB6FD\t0x5ABD\n0xB6FE\t0x5ABC\n0xB740\t0x5AB3\n0xB741\t0x5AC2\n0xB742\t0x5AB2\n0xB743\t0x5D69\n0xB744\t0x5D6F\n0xB745\t0x5E4C\n0xB746\t0x5E79\n0xB747\t0x5EC9\n0xB748\t0x5EC8\n0xB749\t0x5F12\n0xB74A\t0x5F59\n0xB74B\t0x5FAC\n0xB74C\t0x5FAE\n0xB74D\t0x611A\n0xB74E\t0x610F\n0xB74F\t0x6148\n0xB750\t0x611F\n0xB751\t0x60F3\n0xB752\t0x611B\n0xB753\t0x60F9\n0xB754\t0x6101\n0xB755\t0x6108\n0xB756\t0x614E\n0xB757\t0x614C\n0xB758\t0x6144\n0xB759\t0x614D\n0xB75A\t0x613E\n0xB75B\t0x6134\n0xB75C\t0x6127\n0xB75D\t0x610D\n0xB75E\t0x6106\n0xB75F\t0x6137\n0xB760\t0x6221\n0xB761\t0x6222\n0xB762\t0x6413\n0xB763\t0x643E\n0xB764\t0x641E\n0xB765\t0x642A\n0xB766\t0x642D\n0xB767\t0x643D\n0xB768\t0x642C\n0xB769\t0x640F\n0xB76A\t0x641C\n0xB76B\t0x6414\n0xB76C\t0x640D\n0xB76D\t0x6436\n0xB76E\t0x6416\n0xB76F\t0x6417\n0xB770\t0x6406\n0xB771\t0x656C\n0xB772\t0x659F\n0xB773\t0x65B0\n0xB774\t0x6697\n0xB775\t0x6689\n0xB776\t0x6687\n0xB777\t0x6688\n0xB778\t0x6696\n0xB779\t0x6684\n0xB77A\t0x6698\n0xB77B\t0x668D\n0xB77C\t0x6703\n0xB77D\t0x6994\n0xB77E\t0x696D\n0xB7A1\t0x695A\n0xB7A2\t0x6977\n0xB7A3\t0x6960\n0xB7A4\t0x6954\n0xB7A5\t0x6975\n0xB7A6\t0x6930\n0xB7A7\t0x6982\n0xB7A8\t0x694A\n0xB7A9\t0x6968\n0xB7AA\t0x696B\n0xB7AB\t0x695E\n0xB7AC\t0x6953\n0xB7AD\t0x6979\n0xB7AE\t0x6986\n0xB7AF\t0x695D\n0xB7B0\t0x6963\n0xB7B1\t0x695B\n0xB7B2\t0x6B47\n0xB7B3\t0x6B72\n0xB7B4\t0x6BC0\n0xB7B5\t0x6BBF\n0xB7B6\t0x6BD3\n0xB7B7\t0x6BFD\n0xB7B8\t0x6EA2\n0xB7B9\t0x6EAF\n0xB7BA\t0x6ED3\n0xB7BB\t0x6EB6\n0xB7BC\t0x6EC2\n0xB7BD\t0x6E90\n0xB7BE\t0x6E9D\n0xB7BF\t0x6EC7\n0xB7C0\t0x6EC5\n0xB7C1\t0x6EA5\n0xB7C2\t0x6E98\n0xB7C3\t0x6EBC\n0xB7C4\t0x6EBA\n0xB7C5\t0x6EAB\n0xB7C6\t0x6ED1\n0xB7C7\t0x6E96\n0xB7C8\t0x6E9C\n0xB7C9\t0x6EC4\n0xB7CA\t0x6ED4\n0xB7CB\t0x6EAA\n0xB7CC\t0x6EA7\n0xB7CD\t0x6EB4\n0xB7CE\t0x714E\n0xB7CF\t0x7159\n0xB7D0\t0x7169\n0xB7D1\t0x7164\n0xB7D2\t0x7149\n0xB7D3\t0x7167\n0xB7D4\t0x715C\n0xB7D5\t0x716C\n0xB7D6\t0x7166\n0xB7D7\t0x714C\n0xB7D8\t0x7165\n0xB7D9\t0x715E\n0xB7DA\t0x7146\n0xB7DB\t0x7168\n0xB7DC\t0x7156\n0xB7DD\t0x723A\n0xB7DE\t0x7252\n0xB7DF\t0x7337\n0xB7E0\t0x7345\n0xB7E1\t0x733F\n0xB7E2\t0x733E\n0xB7E3\t0x746F\n0xB7E4\t0x745A\n0xB7E5\t0x7455\n0xB7E6\t0x745F\n0xB7E7\t0x745E\n0xB7E8\t0x7441\n0xB7E9\t0x743F\n0xB7EA\t0x7459\n0xB7EB\t0x745B\n0xB7EC\t0x745C\n0xB7ED\t0x7576\n0xB7EE\t0x7578\n0xB7EF\t0x7600\n0xB7F0\t0x75F0\n0xB7F1\t0x7601\n0xB7F2\t0x75F2\n0xB7F3\t0x75F1\n0xB7F4\t0x75FA\n0xB7F5\t0x75FF\n0xB7F6\t0x75F4\n0xB7F7\t0x75F3\n0xB7F8\t0x76DE\n0xB7F9\t0x76DF\n0xB7FA\t0x775B\n0xB7FB\t0x776B\n0xB7FC\t0x7766\n0xB7FD\t0x775E\n0xB7FE\t0x7763\n0xB840\t0x7779\n0xB841\t0x776A\n0xB842\t0x776C\n0xB843\t0x775C\n0xB844\t0x7765\n0xB845\t0x7768\n0xB846\t0x7762\n0xB847\t0x77EE\n0xB848\t0x788E\n0xB849\t0x78B0\n0xB84A\t0x7897\n0xB84B\t0x7898\n0xB84C\t0x788C\n0xB84D\t0x7889\n0xB84E\t0x787C\n0xB84F\t0x7891\n0xB850\t0x7893\n0xB851\t0x787F\n0xB852\t0x797A\n0xB853\t0x797F\n0xB854\t0x7981\n0xB855\t0x842C\n0xB856\t0x79BD\n0xB857\t0x7A1C\n0xB858\t0x7A1A\n0xB859\t0x7A20\n0xB85A\t0x7A14\n0xB85B\t0x7A1F\n0xB85C\t0x7A1E\n0xB85D\t0x7A9F\n0xB85E\t0x7AA0\n0xB85F\t0x7B77\n0xB860\t0x7BC0\n0xB861\t0x7B60\n0xB862\t0x7B6E\n0xB863\t0x7B67\n0xB864\t0x7CB1\n0xB865\t0x7CB3\n0xB866\t0x7CB5\n0xB867\t0x7D93\n0xB868\t0x7D79\n0xB869\t0x7D91\n0xB86A\t0x7D81\n0xB86B\t0x7D8F\n0xB86C\t0x7D5B\n0xB86D\t0x7F6E\n0xB86E\t0x7F69\n0xB86F\t0x7F6A\n0xB870\t0x7F72\n0xB871\t0x7FA9\n0xB872\t0x7FA8\n0xB873\t0x7FA4\n0xB874\t0x8056\n0xB875\t0x8058\n0xB876\t0x8086\n0xB877\t0x8084\n0xB878\t0x8171\n0xB879\t0x8170\n0xB87A\t0x8178\n0xB87B\t0x8165\n0xB87C\t0x816E\n0xB87D\t0x8173\n0xB87E\t0x816B\n0xB8A1\t0x8179\n0xB8A2\t0x817A\n0xB8A3\t0x8166\n0xB8A4\t0x8205\n0xB8A5\t0x8247\n0xB8A6\t0x8482\n0xB8A7\t0x8477\n0xB8A8\t0x843D\n0xB8A9\t0x8431\n0xB8AA\t0x8475\n0xB8AB\t0x8466\n0xB8AC\t0x846B\n0xB8AD\t0x8449\n0xB8AE\t0x846C\n0xB8AF\t0x845B\n0xB8B0\t0x843C\n0xB8B1\t0x8435\n0xB8B2\t0x8461\n0xB8B3\t0x8463\n0xB8B4\t0x8469\n0xB8B5\t0x846D\n0xB8B6\t0x8446\n0xB8B7\t0x865E\n0xB8B8\t0x865C\n0xB8B9\t0x865F\n0xB8BA\t0x86F9\n0xB8BB\t0x8713\n0xB8BC\t0x8708\n0xB8BD\t0x8707\n0xB8BE\t0x8700\n0xB8BF\t0x86FE\n0xB8C0\t0x86FB\n0xB8C1\t0x8702\n0xB8C2\t0x8703\n0xB8C3\t0x8706\n0xB8C4\t0x870A\n0xB8C5\t0x8859\n0xB8C6\t0x88DF\n0xB8C7\t0x88D4\n0xB8C8\t0x88D9\n0xB8C9\t0x88DC\n0xB8CA\t0x88D8\n0xB8CB\t0x88DD\n0xB8CC\t0x88E1\n0xB8CD\t0x88CA\n0xB8CE\t0x88D5\n0xB8CF\t0x88D2\n0xB8D0\t0x899C\n0xB8D1\t0x89E3\n0xB8D2\t0x8A6B\n0xB8D3\t0x8A72\n0xB8D4\t0x8A73\n0xB8D5\t0x8A66\n0xB8D6\t0x8A69\n0xB8D7\t0x8A70\n0xB8D8\t0x8A87\n0xB8D9\t0x8A7C\n0xB8DA\t0x8A63\n0xB8DB\t0x8AA0\n0xB8DC\t0x8A71\n0xB8DD\t0x8A85\n0xB8DE\t0x8A6D\n0xB8DF\t0x8A62\n0xB8E0\t0x8A6E\n0xB8E1\t0x8A6C\n0xB8E2\t0x8A79\n0xB8E3\t0x8A7B\n0xB8E4\t0x8A3E\n0xB8E5\t0x8A68\n0xB8E6\t0x8C62\n0xB8E7\t0x8C8A\n0xB8E8\t0x8C89\n0xB8E9\t0x8CCA\n0xB8EA\t0x8CC7\n0xB8EB\t0x8CC8\n0xB8EC\t0x8CC4\n0xB8ED\t0x8CB2\n0xB8EE\t0x8CC3\n0xB8EF\t0x8CC2\n0xB8F0\t0x8CC5\n0xB8F1\t0x8DE1\n0xB8F2\t0x8DDF\n0xB8F3\t0x8DE8\n0xB8F4\t0x8DEF\n0xB8F5\t0x8DF3\n0xB8F6\t0x8DFA\n0xB8F7\t0x8DEA\n0xB8F8\t0x8DE4\n0xB8F9\t0x8DE6\n0xB8FA\t0x8EB2\n0xB8FB\t0x8F03\n0xB8FC\t0x8F09\n0xB8FD\t0x8EFE\n0xB8FE\t0x8F0A\n0xB940\t0x8F9F\n0xB941\t0x8FB2\n0xB942\t0x904B\n0xB943\t0x904A\n0xB944\t0x9053\n0xB945\t0x9042\n0xB946\t0x9054\n0xB947\t0x903C\n0xB948\t0x9055\n0xB949\t0x9050\n0xB94A\t0x9047\n0xB94B\t0x904F\n0xB94C\t0x904E\n0xB94D\t0x904D\n0xB94E\t0x9051\n0xB94F\t0x903E\n0xB950\t0x9041\n0xB951\t0x9112\n0xB952\t0x9117\n0xB953\t0x916C\n0xB954\t0x916A\n0xB955\t0x9169\n0xB956\t0x91C9\n0xB957\t0x9237\n0xB958\t0x9257\n0xB959\t0x9238\n0xB95A\t0x923D\n0xB95B\t0x9240\n0xB95C\t0x923E\n0xB95D\t0x925B\n0xB95E\t0x924B\n0xB95F\t0x9264\n0xB960\t0x9251\n0xB961\t0x9234\n0xB962\t0x9249\n0xB963\t0x924D\n0xB964\t0x9245\n0xB965\t0x9239\n0xB966\t0x923F\n0xB967\t0x925A\n0xB968\t0x9598\n0xB969\t0x9698\n0xB96A\t0x9694\n0xB96B\t0x9695\n0xB96C\t0x96CD\n0xB96D\t0x96CB\n0xB96E\t0x96C9\n0xB96F\t0x96CA\n0xB970\t0x96F7\n0xB971\t0x96FB\n0xB972\t0x96F9\n0xB973\t0x96F6\n0xB974\t0x9756\n0xB975\t0x9774\n0xB976\t0x9776\n0xB977\t0x9810\n0xB978\t0x9811\n0xB979\t0x9813\n0xB97A\t0x980A\n0xB97B\t0x9812\n0xB97C\t0x980C\n0xB97D\t0x98FC\n0xB97E\t0x98F4\n0xB9A1\t0x98FD\n0xB9A2\t0x98FE\n0xB9A3\t0x99B3\n0xB9A4\t0x99B1\n0xB9A5\t0x99B4\n0xB9A6\t0x9AE1\n0xB9A7\t0x9CE9\n0xB9A8\t0x9E82\n0xB9A9\t0x9F0E\n0xB9AA\t0x9F13\n0xB9AB\t0x9F20\n0xB9AC\t0x50E7\n0xB9AD\t0x50EE\n0xB9AE\t0x50E5\n0xB9AF\t0x50D6\n0xB9B0\t0x50ED\n0xB9B1\t0x50DA\n0xB9B2\t0x50D5\n0xB9B3\t0x50CF\n0xB9B4\t0x50D1\n0xB9B5\t0x50F1\n0xB9B6\t0x50CE\n0xB9B7\t0x50E9\n0xB9B8\t0x5162\n0xB9B9\t0x51F3\n0xB9BA\t0x5283\n0xB9BB\t0x5282\n0xB9BC\t0x5331\n0xB9BD\t0x53AD\n0xB9BE\t0x55FE\n0xB9BF\t0x5600\n0xB9C0\t0x561B\n0xB9C1\t0x5617\n0xB9C2\t0x55FD\n0xB9C3\t0x5614\n0xB9C4\t0x5606\n0xB9C5\t0x5609\n0xB9C6\t0x560D\n0xB9C7\t0x560E\n0xB9C8\t0x55F7\n0xB9C9\t0x5616\n0xB9CA\t0x561F\n0xB9CB\t0x5608\n0xB9CC\t0x5610\n0xB9CD\t0x55F6\n0xB9CE\t0x5718\n0xB9CF\t0x5716\n0xB9D0\t0x5875\n0xB9D1\t0x587E\n0xB9D2\t0x5883\n0xB9D3\t0x5893\n0xB9D4\t0x588A\n0xB9D5\t0x5879\n0xB9D6\t0x5885\n0xB9D7\t0x587D\n0xB9D8\t0x58FD\n0xB9D9\t0x5925\n0xB9DA\t0x5922\n0xB9DB\t0x5924\n0xB9DC\t0x596A\n0xB9DD\t0x5969\n0xB9DE\t0x5AE1\n0xB9DF\t0x5AE6\n0xB9E0\t0x5AE9\n0xB9E1\t0x5AD7\n0xB9E2\t0x5AD6\n0xB9E3\t0x5AD8\n0xB9E4\t0x5AE3\n0xB9E5\t0x5B75\n0xB9E6\t0x5BDE\n0xB9E7\t0x5BE7\n0xB9E8\t0x5BE1\n0xB9E9\t0x5BE5\n0xB9EA\t0x5BE6\n0xB9EB\t0x5BE8\n0xB9EC\t0x5BE2\n0xB9ED\t0x5BE4\n0xB9EE\t0x5BDF\n0xB9EF\t0x5C0D\n0xB9F0\t0x5C62\n0xB9F1\t0x5D84\n0xB9F2\t0x5D87\n0xB9F3\t0x5E5B\n0xB9F4\t0x5E63\n0xB9F5\t0x5E55\n0xB9F6\t0x5E57\n0xB9F7\t0x5E54\n0xB9F8\t0x5ED3\n0xB9F9\t0x5ED6\n0xB9FA\t0x5F0A\n0xB9FB\t0x5F46\n0xB9FC\t0x5F70\n0xB9FD\t0x5FB9\n0xB9FE\t0x6147\n0xBA40\t0x613F\n0xBA41\t0x614B\n0xBA42\t0x6177\n0xBA43\t0x6162\n0xBA44\t0x6163\n0xBA45\t0x615F\n0xBA46\t0x615A\n0xBA47\t0x6158\n0xBA48\t0x6175\n0xBA49\t0x622A\n0xBA4A\t0x6487\n0xBA4B\t0x6458\n0xBA4C\t0x6454\n0xBA4D\t0x64A4\n0xBA4E\t0x6478\n0xBA4F\t0x645F\n0xBA50\t0x647A\n0xBA51\t0x6451\n0xBA52\t0x6467\n0xBA53\t0x6434\n0xBA54\t0x646D\n0xBA55\t0x647B\n0xBA56\t0x6572\n0xBA57\t0x65A1\n0xBA58\t0x65D7\n0xBA59\t0x65D6\n0xBA5A\t0x66A2\n0xBA5B\t0x66A8\n0xBA5C\t0x669D\n0xBA5D\t0x699C\n0xBA5E\t0x69A8\n0xBA5F\t0x6995\n0xBA60\t0x69C1\n0xBA61\t0x69AE\n0xBA62\t0x69D3\n0xBA63\t0x69CB\n0xBA64\t0x699B\n0xBA65\t0x69B7\n0xBA66\t0x69BB\n0xBA67\t0x69AB\n0xBA68\t0x69B4\n0xBA69\t0x69D0\n0xBA6A\t0x69CD\n0xBA6B\t0x69AD\n0xBA6C\t0x69CC\n0xBA6D\t0x69A6\n0xBA6E\t0x69C3\n0xBA6F\t0x69A3\n0xBA70\t0x6B49\n0xBA71\t0x6B4C\n0xBA72\t0x6C33\n0xBA73\t0x6F33\n0xBA74\t0x6F14\n0xBA75\t0x6EFE\n0xBA76\t0x6F13\n0xBA77\t0x6EF4\n0xBA78\t0x6F29\n0xBA79\t0x6F3E\n0xBA7A\t0x6F20\n0xBA7B\t0x6F2C\n0xBA7C\t0x6F0F\n0xBA7D\t0x6F02\n0xBA7E\t0x6F22\n0xBAA1\t0x6EFF\n0xBAA2\t0x6EEF\n0xBAA3\t0x6F06\n0xBAA4\t0x6F31\n0xBAA5\t0x6F38\n0xBAA6\t0x6F32\n0xBAA7\t0x6F23\n0xBAA8\t0x6F15\n0xBAA9\t0x6F2B\n0xBAAA\t0x6F2F\n0xBAAB\t0x6F88\n0xBAAC\t0x6F2A\n0xBAAD\t0x6EEC\n0xBAAE\t0x6F01\n0xBAAF\t0x6EF2\n0xBAB0\t0x6ECC\n0xBAB1\t0x6EF7\n0xBAB2\t0x7194\n0xBAB3\t0x7199\n0xBAB4\t0x717D\n0xBAB5\t0x718A\n0xBAB6\t0x7184\n0xBAB7\t0x7192\n0xBAB8\t0x723E\n0xBAB9\t0x7292\n0xBABA\t0x7296\n0xBABB\t0x7344\n0xBABC\t0x7350\n0xBABD\t0x7464\n0xBABE\t0x7463\n0xBABF\t0x746A\n0xBAC0\t0x7470\n0xBAC1\t0x746D\n0xBAC2\t0x7504\n0xBAC3\t0x7591\n0xBAC4\t0x7627\n0xBAC5\t0x760D\n0xBAC6\t0x760B\n0xBAC7\t0x7609\n0xBAC8\t0x7613\n0xBAC9\t0x76E1\n0xBACA\t0x76E3\n0xBACB\t0x7784\n0xBACC\t0x777D\n0xBACD\t0x777F\n0xBACE\t0x7761\n0xBACF\t0x78C1\n0xBAD0\t0x789F\n0xBAD1\t0x78A7\n0xBAD2\t0x78B3\n0xBAD3\t0x78A9\n0xBAD4\t0x78A3\n0xBAD5\t0x798E\n0xBAD6\t0x798F\n0xBAD7\t0x798D\n0xBAD8\t0x7A2E\n0xBAD9\t0x7A31\n0xBADA\t0x7AAA\n0xBADB\t0x7AA9\n0xBADC\t0x7AED\n0xBADD\t0x7AEF\n0xBADE\t0x7BA1\n0xBADF\t0x7B95\n0xBAE0\t0x7B8B\n0xBAE1\t0x7B75\n0xBAE2\t0x7B97\n0xBAE3\t0x7B9D\n0xBAE4\t0x7B94\n0xBAE5\t0x7B8F\n0xBAE6\t0x7BB8\n0xBAE7\t0x7B87\n0xBAE8\t0x7B84\n0xBAE9\t0x7CB9\n0xBAEA\t0x7CBD\n0xBAEB\t0x7CBE\n0xBAEC\t0x7DBB\n0xBAED\t0x7DB0\n0xBAEE\t0x7D9C\n0xBAEF\t0x7DBD\n0xBAF0\t0x7DBE\n0xBAF1\t0x7DA0\n0xBAF2\t0x7DCA\n0xBAF3\t0x7DB4\n0xBAF4\t0x7DB2\n0xBAF5\t0x7DB1\n0xBAF6\t0x7DBA\n0xBAF7\t0x7DA2\n0xBAF8\t0x7DBF\n0xBAF9\t0x7DB5\n0xBAFA\t0x7DB8\n0xBAFB\t0x7DAD\n0xBAFC\t0x7DD2\n0xBAFD\t0x7DC7\n0xBAFE\t0x7DAC\n0xBB40\t0x7F70\n0xBB41\t0x7FE0\n0xBB42\t0x7FE1\n0xBB43\t0x7FDF\n0xBB44\t0x805E\n0xBB45\t0x805A\n0xBB46\t0x8087\n0xBB47\t0x8150\n0xBB48\t0x8180\n0xBB49\t0x818F\n0xBB4A\t0x8188\n0xBB4B\t0x818A\n0xBB4C\t0x817F\n0xBB4D\t0x8182\n0xBB4E\t0x81E7\n0xBB4F\t0x81FA\n0xBB50\t0x8207\n0xBB51\t0x8214\n0xBB52\t0x821E\n0xBB53\t0x824B\n0xBB54\t0x84C9\n0xBB55\t0x84BF\n0xBB56\t0x84C6\n0xBB57\t0x84C4\n0xBB58\t0x8499\n0xBB59\t0x849E\n0xBB5A\t0x84B2\n0xBB5B\t0x849C\n0xBB5C\t0x84CB\n0xBB5D\t0x84B8\n0xBB5E\t0x84C0\n0xBB5F\t0x84D3\n0xBB60\t0x8490\n0xBB61\t0x84BC\n0xBB62\t0x84D1\n0xBB63\t0x84CA\n0xBB64\t0x873F\n0xBB65\t0x871C\n0xBB66\t0x873B\n0xBB67\t0x8722\n0xBB68\t0x8725\n0xBB69\t0x8734\n0xBB6A\t0x8718\n0xBB6B\t0x8755\n0xBB6C\t0x8737\n0xBB6D\t0x8729\n0xBB6E\t0x88F3\n0xBB6F\t0x8902\n0xBB70\t0x88F4\n0xBB71\t0x88F9\n0xBB72\t0x88F8\n0xBB73\t0x88FD\n0xBB74\t0x88E8\n0xBB75\t0x891A\n0xBB76\t0x88EF\n0xBB77\t0x8AA6\n0xBB78\t0x8A8C\n0xBB79\t0x8A9E\n0xBB7A\t0x8AA3\n0xBB7B\t0x8A8D\n0xBB7C\t0x8AA1\n0xBB7D\t0x8A93\n0xBB7E\t0x8AA4\n0xBBA1\t0x8AAA\n0xBBA2\t0x8AA5\n0xBBA3\t0x8AA8\n0xBBA4\t0x8A98\n0xBBA5\t0x8A91\n0xBBA6\t0x8A9A\n0xBBA7\t0x8AA7\n0xBBA8\t0x8C6A\n0xBBA9\t0x8C8D\n0xBBAA\t0x8C8C\n0xBBAB\t0x8CD3\n0xBBAC\t0x8CD1\n0xBBAD\t0x8CD2\n0xBBAE\t0x8D6B\n0xBBAF\t0x8D99\n0xBBB0\t0x8D95\n0xBBB1\t0x8DFC\n0xBBB2\t0x8F14\n0xBBB3\t0x8F12\n0xBBB4\t0x8F15\n0xBBB5\t0x8F13\n0xBBB6\t0x8FA3\n0xBBB7\t0x9060\n0xBBB8\t0x9058\n0xBBB9\t0x905C\n0xBBBA\t0x9063\n0xBBBB\t0x9059\n0xBBBC\t0x905E\n0xBBBD\t0x9062\n0xBBBE\t0x905D\n0xBBBF\t0x905B\n0xBBC0\t0x9119\n0xBBC1\t0x9118\n0xBBC2\t0x911E\n0xBBC3\t0x9175\n0xBBC4\t0x9178\n0xBBC5\t0x9177\n0xBBC6\t0x9174\n0xBBC7\t0x9278\n0xBBC8\t0x9280\n0xBBC9\t0x9285\n0xBBCA\t0x9298\n0xBBCB\t0x9296\n0xBBCC\t0x927B\n0xBBCD\t0x9293\n0xBBCE\t0x929C\n0xBBCF\t0x92A8\n0xBBD0\t0x927C\n0xBBD1\t0x9291\n0xBBD2\t0x95A1\n0xBBD3\t0x95A8\n0xBBD4\t0x95A9\n0xBBD5\t0x95A3\n0xBBD6\t0x95A5\n0xBBD7\t0x95A4\n0xBBD8\t0x9699\n0xBBD9\t0x969C\n0xBBDA\t0x969B\n0xBBDB\t0x96CC\n0xBBDC\t0x96D2\n0xBBDD\t0x9700\n0xBBDE\t0x977C\n0xBBDF\t0x9785\n0xBBE0\t0x97F6\n0xBBE1\t0x9817\n0xBBE2\t0x9818\n0xBBE3\t0x98AF\n0xBBE4\t0x98B1\n0xBBE5\t0x9903\n0xBBE6\t0x9905\n0xBBE7\t0x990C\n0xBBE8\t0x9909\n0xBBE9\t0x99C1\n0xBBEA\t0x9AAF\n0xBBEB\t0x9AB0\n0xBBEC\t0x9AE6\n0xBBED\t0x9B41\n0xBBEE\t0x9B42\n0xBBEF\t0x9CF4\n0xBBF0\t0x9CF6\n0xBBF1\t0x9CF3\n0xBBF2\t0x9EBC\n0xBBF3\t0x9F3B\n0xBBF4\t0x9F4A\n0xBBF5\t0x5104\n0xBBF6\t0x5100\n0xBBF7\t0x50FB\n0xBBF8\t0x50F5\n0xBBF9\t0x50F9\n0xBBFA\t0x5102\n0xBBFB\t0x5108\n0xBBFC\t0x5109\n0xBBFD\t0x5105\n0xBBFE\t0x51DC\n0xBC40\t0x5287\n0xBC41\t0x5288\n0xBC42\t0x5289\n0xBC43\t0x528D\n0xBC44\t0x528A\n0xBC45\t0x52F0\n0xBC46\t0x53B2\n0xBC47\t0x562E\n0xBC48\t0x563B\n0xBC49\t0x5639\n0xBC4A\t0x5632\n0xBC4B\t0x563F\n0xBC4C\t0x5634\n0xBC4D\t0x5629\n0xBC4E\t0x5653\n0xBC4F\t0x564E\n0xBC50\t0x5657\n0xBC51\t0x5674\n0xBC52\t0x5636\n0xBC53\t0x562F\n0xBC54\t0x5630\n0xBC55\t0x5880\n0xBC56\t0x589F\n0xBC57\t0x589E\n0xBC58\t0x58B3\n0xBC59\t0x589C\n0xBC5A\t0x58AE\n0xBC5B\t0x58A9\n0xBC5C\t0x58A6\n0xBC5D\t0x596D\n0xBC5E\t0x5B09\n0xBC5F\t0x5AFB\n0xBC60\t0x5B0B\n0xBC61\t0x5AF5\n0xBC62\t0x5B0C\n0xBC63\t0x5B08\n0xBC64\t0x5BEE\n0xBC65\t0x5BEC\n0xBC66\t0x5BE9\n0xBC67\t0x5BEB\n0xBC68\t0x5C64\n0xBC69\t0x5C65\n0xBC6A\t0x5D9D\n0xBC6B\t0x5D94\n0xBC6C\t0x5E62\n0xBC6D\t0x5E5F\n0xBC6E\t0x5E61\n0xBC6F\t0x5EE2\n0xBC70\t0x5EDA\n0xBC71\t0x5EDF\n0xBC72\t0x5EDD\n0xBC73\t0x5EE3\n0xBC74\t0x5EE0\n0xBC75\t0x5F48\n0xBC76\t0x5F71\n0xBC77\t0x5FB7\n0xBC78\t0x5FB5\n0xBC79\t0x6176\n0xBC7A\t0x6167\n0xBC7B\t0x616E\n0xBC7C\t0x615D\n0xBC7D\t0x6155\n0xBC7E\t0x6182\n0xBCA1\t0x617C\n0xBCA2\t0x6170\n0xBCA3\t0x616B\n0xBCA4\t0x617E\n0xBCA5\t0x61A7\n0xBCA6\t0x6190\n0xBCA7\t0x61AB\n0xBCA8\t0x618E\n0xBCA9\t0x61AC\n0xBCAA\t0x619A\n0xBCAB\t0x61A4\n0xBCAC\t0x6194\n0xBCAD\t0x61AE\n0xBCAE\t0x622E\n0xBCAF\t0x6469\n0xBCB0\t0x646F\n0xBCB1\t0x6479\n0xBCB2\t0x649E\n0xBCB3\t0x64B2\n0xBCB4\t0x6488\n0xBCB5\t0x6490\n0xBCB6\t0x64B0\n0xBCB7\t0x64A5\n0xBCB8\t0x6493\n0xBCB9\t0x6495\n0xBCBA\t0x64A9\n0xBCBB\t0x6492\n0xBCBC\t0x64AE\n0xBCBD\t0x64AD\n0xBCBE\t0x64AB\n0xBCBF\t0x649A\n0xBCC0\t0x64AC\n0xBCC1\t0x6499\n0xBCC2\t0x64A2\n0xBCC3\t0x64B3\n0xBCC4\t0x6575\n0xBCC5\t0x6577\n0xBCC6\t0x6578\n0xBCC7\t0x66AE\n0xBCC8\t0x66AB\n0xBCC9\t0x66B4\n0xBCCA\t0x66B1\n0xBCCB\t0x6A23\n0xBCCC\t0x6A1F\n0xBCCD\t0x69E8\n0xBCCE\t0x6A01\n0xBCCF\t0x6A1E\n0xBCD0\t0x6A19\n0xBCD1\t0x69FD\n0xBCD2\t0x6A21\n0xBCD3\t0x6A13\n0xBCD4\t0x6A0A\n0xBCD5\t0x69F3\n0xBCD6\t0x6A02\n0xBCD7\t0x6A05\n0xBCD8\t0x69ED\n0xBCD9\t0x6A11\n0xBCDA\t0x6B50\n0xBCDB\t0x6B4E\n0xBCDC\t0x6BA4\n0xBCDD\t0x6BC5\n0xBCDE\t0x6BC6\n0xBCDF\t0x6F3F\n0xBCE0\t0x6F7C\n0xBCE1\t0x6F84\n0xBCE2\t0x6F51\n0xBCE3\t0x6F66\n0xBCE4\t0x6F54\n0xBCE5\t0x6F86\n0xBCE6\t0x6F6D\n0xBCE7\t0x6F5B\n0xBCE8\t0x6F78\n0xBCE9\t0x6F6E\n0xBCEA\t0x6F8E\n0xBCEB\t0x6F7A\n0xBCEC\t0x6F70\n0xBCED\t0x6F64\n0xBCEE\t0x6F97\n0xBCEF\t0x6F58\n0xBCF0\t0x6ED5\n0xBCF1\t0x6F6F\n0xBCF2\t0x6F60\n0xBCF3\t0x6F5F\n0xBCF4\t0x719F\n0xBCF5\t0x71AC\n0xBCF6\t0x71B1\n0xBCF7\t0x71A8\n0xBCF8\t0x7256\n0xBCF9\t0x729B\n0xBCFA\t0x734E\n0xBCFB\t0x7357\n0xBCFC\t0x7469\n0xBCFD\t0x748B\n0xBCFE\t0x7483\n0xBD40\t0x747E\n0xBD41\t0x7480\n0xBD42\t0x757F\n0xBD43\t0x7620\n0xBD44\t0x7629\n0xBD45\t0x761F\n0xBD46\t0x7624\n0xBD47\t0x7626\n0xBD48\t0x7621\n0xBD49\t0x7622\n0xBD4A\t0x769A\n0xBD4B\t0x76BA\n0xBD4C\t0x76E4\n0xBD4D\t0x778E\n0xBD4E\t0x7787\n0xBD4F\t0x778C\n0xBD50\t0x7791\n0xBD51\t0x778B\n0xBD52\t0x78CB\n0xBD53\t0x78C5\n0xBD54\t0x78BA\n0xBD55\t0x78CA\n0xBD56\t0x78BE\n0xBD57\t0x78D5\n0xBD58\t0x78BC\n0xBD59\t0x78D0\n0xBD5A\t0x7A3F\n0xBD5B\t0x7A3C\n0xBD5C\t0x7A40\n0xBD5D\t0x7A3D\n0xBD5E\t0x7A37\n0xBD5F\t0x7A3B\n0xBD60\t0x7AAF\n0xBD61\t0x7AAE\n0xBD62\t0x7BAD\n0xBD63\t0x7BB1\n0xBD64\t0x7BC4\n0xBD65\t0x7BB4\n0xBD66\t0x7BC6\n0xBD67\t0x7BC7\n0xBD68\t0x7BC1\n0xBD69\t0x7BA0\n0xBD6A\t0x7BCC\n0xBD6B\t0x7CCA\n0xBD6C\t0x7DE0\n0xBD6D\t0x7DF4\n0xBD6E\t0x7DEF\n0xBD6F\t0x7DFB\n0xBD70\t0x7DD8\n0xBD71\t0x7DEC\n0xBD72\t0x7DDD\n0xBD73\t0x7DE8\n0xBD74\t0x7DE3\n0xBD75\t0x7DDA\n0xBD76\t0x7DDE\n0xBD77\t0x7DE9\n0xBD78\t0x7D9E\n0xBD79\t0x7DD9\n0xBD7A\t0x7DF2\n0xBD7B\t0x7DF9\n0xBD7C\t0x7F75\n0xBD7D\t0x7F77\n0xBD7E\t0x7FAF\n0xBDA1\t0x7FE9\n0xBDA2\t0x8026\n0xBDA3\t0x819B\n0xBDA4\t0x819C\n0xBDA5\t0x819D\n0xBDA6\t0x81A0\n0xBDA7\t0x819A\n0xBDA8\t0x8198\n0xBDA9\t0x8517\n0xBDAA\t0x853D\n0xBDAB\t0x851A\n0xBDAC\t0x84EE\n0xBDAD\t0x852C\n0xBDAE\t0x852D\n0xBDAF\t0x8513\n0xBDB0\t0x8511\n0xBDB1\t0x8523\n0xBDB2\t0x8521\n0xBDB3\t0x8514\n0xBDB4\t0x84EC\n0xBDB5\t0x8525\n0xBDB6\t0x84FF\n0xBDB7\t0x8506\n0xBDB8\t0x8782\n0xBDB9\t0x8774\n0xBDBA\t0x8776\n0xBDBB\t0x8760\n0xBDBC\t0x8766\n0xBDBD\t0x8778\n0xBDBE\t0x8768\n0xBDBF\t0x8759\n0xBDC0\t0x8757\n0xBDC1\t0x874C\n0xBDC2\t0x8753\n0xBDC3\t0x885B\n0xBDC4\t0x885D\n0xBDC5\t0x8910\n0xBDC6\t0x8907\n0xBDC7\t0x8912\n0xBDC8\t0x8913\n0xBDC9\t0x8915\n0xBDCA\t0x890A\n0xBDCB\t0x8ABC\n0xBDCC\t0x8AD2\n0xBDCD\t0x8AC7\n0xBDCE\t0x8AC4\n0xBDCF\t0x8A95\n0xBDD0\t0x8ACB\n0xBDD1\t0x8AF8\n0xBDD2\t0x8AB2\n0xBDD3\t0x8AC9\n0xBDD4\t0x8AC2\n0xBDD5\t0x8ABF\n0xBDD6\t0x8AB0\n0xBDD7\t0x8AD6\n0xBDD8\t0x8ACD\n0xBDD9\t0x8AB6\n0xBDDA\t0x8AB9\n0xBDDB\t0x8ADB\n0xBDDC\t0x8C4C\n0xBDDD\t0x8C4E\n0xBDDE\t0x8C6C\n0xBDDF\t0x8CE0\n0xBDE0\t0x8CDE\n0xBDE1\t0x8CE6\n0xBDE2\t0x8CE4\n0xBDE3\t0x8CEC\n0xBDE4\t0x8CED\n0xBDE5\t0x8CE2\n0xBDE6\t0x8CE3\n0xBDE7\t0x8CDC\n0xBDE8\t0x8CEA\n0xBDE9\t0x8CE1\n0xBDEA\t0x8D6D\n0xBDEB\t0x8D9F\n0xBDEC\t0x8DA3\n0xBDED\t0x8E2B\n0xBDEE\t0x8E10\n0xBDEF\t0x8E1D\n0xBDF0\t0x8E22\n0xBDF1\t0x8E0F\n0xBDF2\t0x8E29\n0xBDF3\t0x8E1F\n0xBDF4\t0x8E21\n0xBDF5\t0x8E1E\n0xBDF6\t0x8EBA\n0xBDF7\t0x8F1D\n0xBDF8\t0x8F1B\n0xBDF9\t0x8F1F\n0xBDFA\t0x8F29\n0xBDFB\t0x8F26\n0xBDFC\t0x8F2A\n0xBDFD\t0x8F1C\n0xBDFE\t0x8F1E\n0xBE40\t0x8F25\n0xBE41\t0x9069\n0xBE42\t0x906E\n0xBE43\t0x9068\n0xBE44\t0x906D\n0xBE45\t0x9077\n0xBE46\t0x9130\n0xBE47\t0x912D\n0xBE48\t0x9127\n0xBE49\t0x9131\n0xBE4A\t0x9187\n0xBE4B\t0x9189\n0xBE4C\t0x918B\n0xBE4D\t0x9183\n0xBE4E\t0x92C5\n0xBE4F\t0x92BB\n0xBE50\t0x92B7\n0xBE51\t0x92EA\n0xBE52\t0x92AC\n0xBE53\t0x92E4\n0xBE54\t0x92C1\n0xBE55\t0x92B3\n0xBE56\t0x92BC\n0xBE57\t0x92D2\n0xBE58\t0x92C7\n0xBE59\t0x92F0\n0xBE5A\t0x92B2\n0xBE5B\t0x95AD\n0xBE5C\t0x95B1\n0xBE5D\t0x9704\n0xBE5E\t0x9706\n0xBE5F\t0x9707\n0xBE60\t0x9709\n0xBE61\t0x9760\n0xBE62\t0x978D\n0xBE63\t0x978B\n0xBE64\t0x978F\n0xBE65\t0x9821\n0xBE66\t0x982B\n0xBE67\t0x981C\n0xBE68\t0x98B3\n0xBE69\t0x990A\n0xBE6A\t0x9913\n0xBE6B\t0x9912\n0xBE6C\t0x9918\n0xBE6D\t0x99DD\n0xBE6E\t0x99D0\n0xBE6F\t0x99DF\n0xBE70\t0x99DB\n0xBE71\t0x99D1\n0xBE72\t0x99D5\n0xBE73\t0x99D2\n0xBE74\t0x99D9\n0xBE75\t0x9AB7\n0xBE76\t0x9AEE\n0xBE77\t0x9AEF\n0xBE78\t0x9B27\n0xBE79\t0x9B45\n0xBE7A\t0x9B44\n0xBE7B\t0x9B77\n0xBE7C\t0x9B6F\n0xBE7D\t0x9D06\n0xBE7E\t0x9D09\n0xBEA1\t0x9D03\n0xBEA2\t0x9EA9\n0xBEA3\t0x9EBE\n0xBEA4\t0x9ECE\n0xBEA5\t0x58A8\n0xBEA6\t0x9F52\n0xBEA7\t0x5112\n0xBEA8\t0x5118\n0xBEA9\t0x5114\n0xBEAA\t0x5110\n0xBEAB\t0x5115\n0xBEAC\t0x5180\n0xBEAD\t0x51AA\n0xBEAE\t0x51DD\n0xBEAF\t0x5291\n0xBEB0\t0x5293\n0xBEB1\t0x52F3\n0xBEB2\t0x5659\n0xBEB3\t0x566B\n0xBEB4\t0x5679\n0xBEB5\t0x5669\n0xBEB6\t0x5664\n0xBEB7\t0x5678\n0xBEB8\t0x566A\n0xBEB9\t0x5668\n0xBEBA\t0x5665\n0xBEBB\t0x5671\n0xBEBC\t0x566F\n0xBEBD\t0x566C\n0xBEBE\t0x5662\n0xBEBF\t0x5676\n0xBEC0\t0x58C1\n0xBEC1\t0x58BE\n0xBEC2\t0x58C7\n0xBEC3\t0x58C5\n0xBEC4\t0x596E\n0xBEC5\t0x5B1D\n0xBEC6\t0x5B34\n0xBEC7\t0x5B78\n0xBEC8\t0x5BF0\n0xBEC9\t0x5C0E\n0xBECA\t0x5F4A\n0xBECB\t0x61B2\n0xBECC\t0x6191\n0xBECD\t0x61A9\n0xBECE\t0x618A\n0xBECF\t0x61CD\n0xBED0\t0x61B6\n0xBED1\t0x61BE\n0xBED2\t0x61CA\n0xBED3\t0x61C8\n0xBED4\t0x6230\n0xBED5\t0x64C5\n0xBED6\t0x64C1\n0xBED7\t0x64CB\n0xBED8\t0x64BB\n0xBED9\t0x64BC\n0xBEDA\t0x64DA\n0xBEDB\t0x64C4\n0xBEDC\t0x64C7\n0xBEDD\t0x64C2\n0xBEDE\t0x64CD\n0xBEDF\t0x64BF\n0xBEE0\t0x64D2\n0xBEE1\t0x64D4\n0xBEE2\t0x64BE\n0xBEE3\t0x6574\n0xBEE4\t0x66C6\n0xBEE5\t0x66C9\n0xBEE6\t0x66B9\n0xBEE7\t0x66C4\n0xBEE8\t0x66C7\n0xBEE9\t0x66B8\n0xBEEA\t0x6A3D\n0xBEEB\t0x6A38\n0xBEEC\t0x6A3A\n0xBEED\t0x6A59\n0xBEEE\t0x6A6B\n0xBEEF\t0x6A58\n0xBEF0\t0x6A39\n0xBEF1\t0x6A44\n0xBEF2\t0x6A62\n0xBEF3\t0x6A61\n0xBEF4\t0x6A4B\n0xBEF5\t0x6A47\n0xBEF6\t0x6A35\n0xBEF7\t0x6A5F\n0xBEF8\t0x6A48\n0xBEF9\t0x6B59\n0xBEFA\t0x6B77\n0xBEFB\t0x6C05\n0xBEFC\t0x6FC2\n0xBEFD\t0x6FB1\n0xBEFE\t0x6FA1\n0xBF40\t0x6FC3\n0xBF41\t0x6FA4\n0xBF42\t0x6FC1\n0xBF43\t0x6FA7\n0xBF44\t0x6FB3\n0xBF45\t0x6FC0\n0xBF46\t0x6FB9\n0xBF47\t0x6FB6\n0xBF48\t0x6FA6\n0xBF49\t0x6FA0\n0xBF4A\t0x6FB4\n0xBF4B\t0x71BE\n0xBF4C\t0x71C9\n0xBF4D\t0x71D0\n0xBF4E\t0x71D2\n0xBF4F\t0x71C8\n0xBF50\t0x71D5\n0xBF51\t0x71B9\n0xBF52\t0x71CE\n0xBF53\t0x71D9\n0xBF54\t0x71DC\n0xBF55\t0x71C3\n0xBF56\t0x71C4\n0xBF57\t0x7368\n0xBF58\t0x749C\n0xBF59\t0x74A3\n0xBF5A\t0x7498\n0xBF5B\t0x749F\n0xBF5C\t0x749E\n0xBF5D\t0x74E2\n0xBF5E\t0x750C\n0xBF5F\t0x750D\n0xBF60\t0x7634\n0xBF61\t0x7638\n0xBF62\t0x763A\n0xBF63\t0x76E7\n0xBF64\t0x76E5\n0xBF65\t0x77A0\n0xBF66\t0x779E\n0xBF67\t0x779F\n0xBF68\t0x77A5\n0xBF69\t0x78E8\n0xBF6A\t0x78DA\n0xBF6B\t0x78EC\n0xBF6C\t0x78E7\n0xBF6D\t0x79A6\n0xBF6E\t0x7A4D\n0xBF6F\t0x7A4E\n0xBF70\t0x7A46\n0xBF71\t0x7A4C\n0xBF72\t0x7A4B\n0xBF73\t0x7ABA\n0xBF74\t0x7BD9\n0xBF75\t0x7C11\n0xBF76\t0x7BC9\n0xBF77\t0x7BE4\n0xBF78\t0x7BDB\n0xBF79\t0x7BE1\n0xBF7A\t0x7BE9\n0xBF7B\t0x7BE6\n0xBF7C\t0x7CD5\n0xBF7D\t0x7CD6\n0xBF7E\t0x7E0A\n0xBFA1\t0x7E11\n0xBFA2\t0x7E08\n0xBFA3\t0x7E1B\n0xBFA4\t0x7E23\n0xBFA5\t0x7E1E\n0xBFA6\t0x7E1D\n0xBFA7\t0x7E09\n0xBFA8\t0x7E10\n0xBFA9\t0x7F79\n0xBFAA\t0x7FB2\n0xBFAB\t0x7FF0\n0xBFAC\t0x7FF1\n0xBFAD\t0x7FEE\n0xBFAE\t0x8028\n0xBFAF\t0x81B3\n0xBFB0\t0x81A9\n0xBFB1\t0x81A8\n0xBFB2\t0x81FB\n0xBFB3\t0x8208\n0xBFB4\t0x8258\n0xBFB5\t0x8259\n0xBFB6\t0x854A\n0xBFB7\t0x8559\n0xBFB8\t0x8548\n0xBFB9\t0x8568\n0xBFBA\t0x8569\n0xBFBB\t0x8543\n0xBFBC\t0x8549\n0xBFBD\t0x856D\n0xBFBE\t0x856A\n0xBFBF\t0x855E\n0xBFC0\t0x8783\n0xBFC1\t0x879F\n0xBFC2\t0x879E\n0xBFC3\t0x87A2\n0xBFC4\t0x878D\n0xBFC5\t0x8861\n0xBFC6\t0x892A\n0xBFC7\t0x8932\n0xBFC8\t0x8925\n0xBFC9\t0x892B\n0xBFCA\t0x8921\n0xBFCB\t0x89AA\n0xBFCC\t0x89A6\n0xBFCD\t0x8AE6\n0xBFCE\t0x8AFA\n0xBFCF\t0x8AEB\n0xBFD0\t0x8AF1\n0xBFD1\t0x8B00\n0xBFD2\t0x8ADC\n0xBFD3\t0x8AE7\n0xBFD4\t0x8AEE\n0xBFD5\t0x8AFE\n0xBFD6\t0x8B01\n0xBFD7\t0x8B02\n0xBFD8\t0x8AF7\n0xBFD9\t0x8AED\n0xBFDA\t0x8AF3\n0xBFDB\t0x8AF6\n0xBFDC\t0x8AFC\n0xBFDD\t0x8C6B\n0xBFDE\t0x8C6D\n0xBFDF\t0x8C93\n0xBFE0\t0x8CF4\n0xBFE1\t0x8E44\n0xBFE2\t0x8E31\n0xBFE3\t0x8E34\n0xBFE4\t0x8E42\n0xBFE5\t0x8E39\n0xBFE6\t0x8E35\n0xBFE7\t0x8F3B\n0xBFE8\t0x8F2F\n0xBFE9\t0x8F38\n0xBFEA\t0x8F33\n0xBFEB\t0x8FA8\n0xBFEC\t0x8FA6\n0xBFED\t0x9075\n0xBFEE\t0x9074\n0xBFEF\t0x9078\n0xBFF0\t0x9072\n0xBFF1\t0x907C\n0xBFF2\t0x907A\n0xBFF3\t0x9134\n0xBFF4\t0x9192\n0xBFF5\t0x9320\n0xBFF6\t0x9336\n0xBFF7\t0x92F8\n0xBFF8\t0x9333\n0xBFF9\t0x932F\n0xBFFA\t0x9322\n0xBFFB\t0x92FC\n0xBFFC\t0x932B\n0xBFFD\t0x9304\n0xBFFE\t0x931A\n0xC040\t0x9310\n0xC041\t0x9326\n0xC042\t0x9321\n0xC043\t0x9315\n0xC044\t0x932E\n0xC045\t0x9319\n0xC046\t0x95BB\n0xC047\t0x96A7\n0xC048\t0x96A8\n0xC049\t0x96AA\n0xC04A\t0x96D5\n0xC04B\t0x970E\n0xC04C\t0x9711\n0xC04D\t0x9716\n0xC04E\t0x970D\n0xC04F\t0x9713\n0xC050\t0x970F\n0xC051\t0x975B\n0xC052\t0x975C\n0xC053\t0x9766\n0xC054\t0x9798\n0xC055\t0x9830\n0xC056\t0x9838\n0xC057\t0x983B\n0xC058\t0x9837\n0xC059\t0x982D\n0xC05A\t0x9839\n0xC05B\t0x9824\n0xC05C\t0x9910\n0xC05D\t0x9928\n0xC05E\t0x991E\n0xC05F\t0x991B\n0xC060\t0x9921\n0xC061\t0x991A\n0xC062\t0x99ED\n0xC063\t0x99E2\n0xC064\t0x99F1\n0xC065\t0x9AB8\n0xC066\t0x9ABC\n0xC067\t0x9AFB\n0xC068\t0x9AED\n0xC069\t0x9B28\n0xC06A\t0x9B91\n0xC06B\t0x9D15\n0xC06C\t0x9D23\n0xC06D\t0x9D26\n0xC06E\t0x9D28\n0xC06F\t0x9D12\n0xC070\t0x9D1B\n0xC071\t0x9ED8\n0xC072\t0x9ED4\n0xC073\t0x9F8D\n0xC074\t0x9F9C\n0xC075\t0x512A\n0xC076\t0x511F\n0xC077\t0x5121\n0xC078\t0x5132\n0xC079\t0x52F5\n0xC07A\t0x568E\n0xC07B\t0x5680\n0xC07C\t0x5690\n0xC07D\t0x5685\n0xC07E\t0x5687\n0xC0A1\t0x568F\n0xC0A2\t0x58D5\n0xC0A3\t0x58D3\n0xC0A4\t0x58D1\n0xC0A5\t0x58CE\n0xC0A6\t0x5B30\n0xC0A7\t0x5B2A\n0xC0A8\t0x5B24\n0xC0A9\t0x5B7A\n0xC0AA\t0x5C37\n0xC0AB\t0x5C68\n0xC0AC\t0x5DBC\n0xC0AD\t0x5DBA\n0xC0AE\t0x5DBD\n0xC0AF\t0x5DB8\n0xC0B0\t0x5E6B\n0xC0B1\t0x5F4C\n0xC0B2\t0x5FBD\n0xC0B3\t0x61C9\n0xC0B4\t0x61C2\n0xC0B5\t0x61C7\n0xC0B6\t0x61E6\n0xC0B7\t0x61CB\n0xC0B8\t0x6232\n0xC0B9\t0x6234\n0xC0BA\t0x64CE\n0xC0BB\t0x64CA\n0xC0BC\t0x64D8\n0xC0BD\t0x64E0\n0xC0BE\t0x64F0\n0xC0BF\t0x64E6\n0xC0C0\t0x64EC\n0xC0C1\t0x64F1\n0xC0C2\t0x64E2\n0xC0C3\t0x64ED\n0xC0C4\t0x6582\n0xC0C5\t0x6583\n0xC0C6\t0x66D9\n0xC0C7\t0x66D6\n0xC0C8\t0x6A80\n0xC0C9\t0x6A94\n0xC0CA\t0x6A84\n0xC0CB\t0x6AA2\n0xC0CC\t0x6A9C\n0xC0CD\t0x6ADB\n0xC0CE\t0x6AA3\n0xC0CF\t0x6A7E\n0xC0D0\t0x6A97\n0xC0D1\t0x6A90\n0xC0D2\t0x6AA0\n0xC0D3\t0x6B5C\n0xC0D4\t0x6BAE\n0xC0D5\t0x6BDA\n0xC0D6\t0x6C08\n0xC0D7\t0x6FD8\n0xC0D8\t0x6FF1\n0xC0D9\t0x6FDF\n0xC0DA\t0x6FE0\n0xC0DB\t0x6FDB\n0xC0DC\t0x6FE4\n0xC0DD\t0x6FEB\n0xC0DE\t0x6FEF\n0xC0DF\t0x6F80\n0xC0E0\t0x6FEC\n0xC0E1\t0x6FE1\n0xC0E2\t0x6FE9\n0xC0E3\t0x6FD5\n0xC0E4\t0x6FEE\n0xC0E5\t0x6FF0\n0xC0E6\t0x71E7\n0xC0E7\t0x71DF\n0xC0E8\t0x71EE\n0xC0E9\t0x71E6\n0xC0EA\t0x71E5\n0xC0EB\t0x71ED\n0xC0EC\t0x71EC\n0xC0ED\t0x71F4\n0xC0EE\t0x71E0\n0xC0EF\t0x7235\n0xC0F0\t0x7246\n0xC0F1\t0x7370\n0xC0F2\t0x7372\n0xC0F3\t0x74A9\n0xC0F4\t0x74B0\n0xC0F5\t0x74A6\n0xC0F6\t0x74A8\n0xC0F7\t0x7646\n0xC0F8\t0x7642\n0xC0F9\t0x764C\n0xC0FA\t0x76EA\n0xC0FB\t0x77B3\n0xC0FC\t0x77AA\n0xC0FD\t0x77B0\n0xC0FE\t0x77AC\n0xC140\t0x77A7\n0xC141\t0x77AD\n0xC142\t0x77EF\n0xC143\t0x78F7\n0xC144\t0x78FA\n0xC145\t0x78F4\n0xC146\t0x78EF\n0xC147\t0x7901\n0xC148\t0x79A7\n0xC149\t0x79AA\n0xC14A\t0x7A57\n0xC14B\t0x7ABF\n0xC14C\t0x7C07\n0xC14D\t0x7C0D\n0xC14E\t0x7BFE\n0xC14F\t0x7BF7\n0xC150\t0x7C0C\n0xC151\t0x7BE0\n0xC152\t0x7CE0\n0xC153\t0x7CDC\n0xC154\t0x7CDE\n0xC155\t0x7CE2\n0xC156\t0x7CDF\n0xC157\t0x7CD9\n0xC158\t0x7CDD\n0xC159\t0x7E2E\n0xC15A\t0x7E3E\n0xC15B\t0x7E46\n0xC15C\t0x7E37\n0xC15D\t0x7E32\n0xC15E\t0x7E43\n0xC15F\t0x7E2B\n0xC160\t0x7E3D\n0xC161\t0x7E31\n0xC162\t0x7E45\n0xC163\t0x7E41\n0xC164\t0x7E34\n0xC165\t0x7E39\n0xC166\t0x7E48\n0xC167\t0x7E35\n0xC168\t0x7E3F\n0xC169\t0x7E2F\n0xC16A\t0x7F44\n0xC16B\t0x7FF3\n0xC16C\t0x7FFC\n0xC16D\t0x8071\n0xC16E\t0x8072\n0xC16F\t0x8070\n0xC170\t0x806F\n0xC171\t0x8073\n0xC172\t0x81C6\n0xC173\t0x81C3\n0xC174\t0x81BA\n0xC175\t0x81C2\n0xC176\t0x81C0\n0xC177\t0x81BF\n0xC178\t0x81BD\n0xC179\t0x81C9\n0xC17A\t0x81BE\n0xC17B\t0x81E8\n0xC17C\t0x8209\n0xC17D\t0x8271\n0xC17E\t0x85AA\n0xC1A1\t0x8584\n0xC1A2\t0x857E\n0xC1A3\t0x859C\n0xC1A4\t0x8591\n0xC1A5\t0x8594\n0xC1A6\t0x85AF\n0xC1A7\t0x859B\n0xC1A8\t0x8587\n0xC1A9\t0x85A8\n0xC1AA\t0x858A\n0xC1AB\t0x8667\n0xC1AC\t0x87C0\n0xC1AD\t0x87D1\n0xC1AE\t0x87B3\n0xC1AF\t0x87D2\n0xC1B0\t0x87C6\n0xC1B1\t0x87AB\n0xC1B2\t0x87BB\n0xC1B3\t0x87BA\n0xC1B4\t0x87C8\n0xC1B5\t0x87CB\n0xC1B6\t0x893B\n0xC1B7\t0x8936\n0xC1B8\t0x8944\n0xC1B9\t0x8938\n0xC1BA\t0x893D\n0xC1BB\t0x89AC\n0xC1BC\t0x8B0E\n0xC1BD\t0x8B17\n0xC1BE\t0x8B19\n0xC1BF\t0x8B1B\n0xC1C0\t0x8B0A\n0xC1C1\t0x8B20\n0xC1C2\t0x8B1D\n0xC1C3\t0x8B04\n0xC1C4\t0x8B10\n0xC1C5\t0x8C41\n0xC1C6\t0x8C3F\n0xC1C7\t0x8C73\n0xC1C8\t0x8CFA\n0xC1C9\t0x8CFD\n0xC1CA\t0x8CFC\n0xC1CB\t0x8CF8\n0xC1CC\t0x8CFB\n0xC1CD\t0x8DA8\n0xC1CE\t0x8E49\n0xC1CF\t0x8E4B\n0xC1D0\t0x8E48\n0xC1D1\t0x8E4A\n0xC1D2\t0x8F44\n0xC1D3\t0x8F3E\n0xC1D4\t0x8F42\n0xC1D5\t0x8F45\n0xC1D6\t0x8F3F\n0xC1D7\t0x907F\n0xC1D8\t0x907D\n0xC1D9\t0x9084\n0xC1DA\t0x9081\n0xC1DB\t0x9082\n0xC1DC\t0x9080\n0xC1DD\t0x9139\n0xC1DE\t0x91A3\n0xC1DF\t0x919E\n0xC1E0\t0x919C\n0xC1E1\t0x934D\n0xC1E2\t0x9382\n0xC1E3\t0x9328\n0xC1E4\t0x9375\n0xC1E5\t0x934A\n0xC1E6\t0x9365\n0xC1E7\t0x934B\n0xC1E8\t0x9318\n0xC1E9\t0x937E\n0xC1EA\t0x936C\n0xC1EB\t0x935B\n0xC1EC\t0x9370\n0xC1ED\t0x935A\n0xC1EE\t0x9354\n0xC1EF\t0x95CA\n0xC1F0\t0x95CB\n0xC1F1\t0x95CC\n0xC1F2\t0x95C8\n0xC1F3\t0x95C6\n0xC1F4\t0x96B1\n0xC1F5\t0x96B8\n0xC1F6\t0x96D6\n0xC1F7\t0x971C\n0xC1F8\t0x971E\n0xC1F9\t0x97A0\n0xC1FA\t0x97D3\n0xC1FB\t0x9846\n0xC1FC\t0x98B6\n0xC1FD\t0x9935\n0xC1FE\t0x9A01\n0xC240\t0x99FF\n0xC241\t0x9BAE\n0xC242\t0x9BAB\n0xC243\t0x9BAA\n0xC244\t0x9BAD\n0xC245\t0x9D3B\n0xC246\t0x9D3F\n0xC247\t0x9E8B\n0xC248\t0x9ECF\n0xC249\t0x9EDE\n0xC24A\t0x9EDC\n0xC24B\t0x9EDD\n0xC24C\t0x9EDB\n0xC24D\t0x9F3E\n0xC24E\t0x9F4B\n0xC24F\t0x53E2\n0xC250\t0x5695\n0xC251\t0x56AE\n0xC252\t0x58D9\n0xC253\t0x58D8\n0xC254\t0x5B38\n0xC255\t0x5F5D\n0xC256\t0x61E3\n0xC257\t0x6233\n0xC258\t0x64F4\n0xC259\t0x64F2\n0xC25A\t0x64FE\n0xC25B\t0x6506\n0xC25C\t0x64FA\n0xC25D\t0x64FB\n0xC25E\t0x64F7\n0xC25F\t0x65B7\n0xC260\t0x66DC\n0xC261\t0x6726\n0xC262\t0x6AB3\n0xC263\t0x6AAC\n0xC264\t0x6AC3\n0xC265\t0x6ABB\n0xC266\t0x6AB8\n0xC267\t0x6AC2\n0xC268\t0x6AAE\n0xC269\t0x6AAF\n0xC26A\t0x6B5F\n0xC26B\t0x6B78\n0xC26C\t0x6BAF\n0xC26D\t0x7009\n0xC26E\t0x700B\n0xC26F\t0x6FFE\n0xC270\t0x7006\n0xC271\t0x6FFA\n0xC272\t0x7011\n0xC273\t0x700F\n0xC274\t0x71FB\n0xC275\t0x71FC\n0xC276\t0x71FE\n0xC277\t0x71F8\n0xC278\t0x7377\n0xC279\t0x7375\n0xC27A\t0x74A7\n0xC27B\t0x74BF\n0xC27C\t0x7515\n0xC27D\t0x7656\n0xC27E\t0x7658\n0xC2A1\t0x7652\n0xC2A2\t0x77BD\n0xC2A3\t0x77BF\n0xC2A4\t0x77BB\n0xC2A5\t0x77BC\n0xC2A6\t0x790E\n0xC2A7\t0x79AE\n0xC2A8\t0x7A61\n0xC2A9\t0x7A62\n0xC2AA\t0x7A60\n0xC2AB\t0x7AC4\n0xC2AC\t0x7AC5\n0xC2AD\t0x7C2B\n0xC2AE\t0x7C27\n0xC2AF\t0x7C2A\n0xC2B0\t0x7C1E\n0xC2B1\t0x7C23\n0xC2B2\t0x7C21\n0xC2B3\t0x7CE7\n0xC2B4\t0x7E54\n0xC2B5\t0x7E55\n0xC2B6\t0x7E5E\n0xC2B7\t0x7E5A\n0xC2B8\t0x7E61\n0xC2B9\t0x7E52\n0xC2BA\t0x7E59\n0xC2BB\t0x7F48\n0xC2BC\t0x7FF9\n0xC2BD\t0x7FFB\n0xC2BE\t0x8077\n0xC2BF\t0x8076\n0xC2C0\t0x81CD\n0xC2C1\t0x81CF\n0xC2C2\t0x820A\n0xC2C3\t0x85CF\n0xC2C4\t0x85A9\n0xC2C5\t0x85CD\n0xC2C6\t0x85D0\n0xC2C7\t0x85C9\n0xC2C8\t0x85B0\n0xC2C9\t0x85BA\n0xC2CA\t0x85B9\n0xC2CB\t0x85A6\n0xC2CC\t0x87EF\n0xC2CD\t0x87EC\n0xC2CE\t0x87F2\n0xC2CF\t0x87E0\n0xC2D0\t0x8986\n0xC2D1\t0x89B2\n0xC2D2\t0x89F4\n0xC2D3\t0x8B28\n0xC2D4\t0x8B39\n0xC2D5\t0x8B2C\n0xC2D6\t0x8B2B\n0xC2D7\t0x8C50\n0xC2D8\t0x8D05\n0xC2D9\t0x8E59\n0xC2DA\t0x8E63\n0xC2DB\t0x8E66\n0xC2DC\t0x8E64\n0xC2DD\t0x8E5F\n0xC2DE\t0x8E55\n0xC2DF\t0x8EC0\n0xC2E0\t0x8F49\n0xC2E1\t0x8F4D\n0xC2E2\t0x9087\n0xC2E3\t0x9083\n0xC2E4\t0x9088\n0xC2E5\t0x91AB\n0xC2E6\t0x91AC\n0xC2E7\t0x91D0\n0xC2E8\t0x9394\n0xC2E9\t0x938A\n0xC2EA\t0x9396\n0xC2EB\t0x93A2\n0xC2EC\t0x93B3\n0xC2ED\t0x93AE\n0xC2EE\t0x93AC\n0xC2EF\t0x93B0\n0xC2F0\t0x9398\n0xC2F1\t0x939A\n0xC2F2\t0x9397\n0xC2F3\t0x95D4\n0xC2F4\t0x95D6\n0xC2F5\t0x95D0\n0xC2F6\t0x95D5\n0xC2F7\t0x96E2\n0xC2F8\t0x96DC\n0xC2F9\t0x96D9\n0xC2FA\t0x96DB\n0xC2FB\t0x96DE\n0xC2FC\t0x9724\n0xC2FD\t0x97A3\n0xC2FE\t0x97A6\n0xC340\t0x97AD\n0xC341\t0x97F9\n0xC342\t0x984D\n0xC343\t0x984F\n0xC344\t0x984C\n0xC345\t0x984E\n0xC346\t0x9853\n0xC347\t0x98BA\n0xC348\t0x993E\n0xC349\t0x993F\n0xC34A\t0x993D\n0xC34B\t0x992E\n0xC34C\t0x99A5\n0xC34D\t0x9A0E\n0xC34E\t0x9AC1\n0xC34F\t0x9B03\n0xC350\t0x9B06\n0xC351\t0x9B4F\n0xC352\t0x9B4E\n0xC353\t0x9B4D\n0xC354\t0x9BCA\n0xC355\t0x9BC9\n0xC356\t0x9BFD\n0xC357\t0x9BC8\n0xC358\t0x9BC0\n0xC359\t0x9D51\n0xC35A\t0x9D5D\n0xC35B\t0x9D60\n0xC35C\t0x9EE0\n0xC35D\t0x9F15\n0xC35E\t0x9F2C\n0xC35F\t0x5133\n0xC360\t0x56A5\n0xC361\t0x58DE\n0xC362\t0x58DF\n0xC363\t0x58E2\n0xC364\t0x5BF5\n0xC365\t0x9F90\n0xC366\t0x5EEC\n0xC367\t0x61F2\n0xC368\t0x61F7\n0xC369\t0x61F6\n0xC36A\t0x61F5\n0xC36B\t0x6500\n0xC36C\t0x650F\n0xC36D\t0x66E0\n0xC36E\t0x66DD\n0xC36F\t0x6AE5\n0xC370\t0x6ADD\n0xC371\t0x6ADA\n0xC372\t0x6AD3\n0xC373\t0x701B\n0xC374\t0x701F\n0xC375\t0x7028\n0xC376\t0x701A\n0xC377\t0x701D\n0xC378\t0x7015\n0xC379\t0x7018\n0xC37A\t0x7206\n0xC37B\t0x720D\n0xC37C\t0x7258\n0xC37D\t0x72A2\n0xC37E\t0x7378\n0xC3A1\t0x737A\n0xC3A2\t0x74BD\n0xC3A3\t0x74CA\n0xC3A4\t0x74E3\n0xC3A5\t0x7587\n0xC3A6\t0x7586\n0xC3A7\t0x765F\n0xC3A8\t0x7661\n0xC3A9\t0x77C7\n0xC3AA\t0x7919\n0xC3AB\t0x79B1\n0xC3AC\t0x7A6B\n0xC3AD\t0x7A69\n0xC3AE\t0x7C3E\n0xC3AF\t0x7C3F\n0xC3B0\t0x7C38\n0xC3B1\t0x7C3D\n0xC3B2\t0x7C37\n0xC3B3\t0x7C40\n0xC3B4\t0x7E6B\n0xC3B5\t0x7E6D\n0xC3B6\t0x7E79\n0xC3B7\t0x7E69\n0xC3B8\t0x7E6A\n0xC3B9\t0x7F85\n0xC3BA\t0x7E73\n0xC3BB\t0x7FB6\n0xC3BC\t0x7FB9\n0xC3BD\t0x7FB8\n0xC3BE\t0x81D8\n0xC3BF\t0x85E9\n0xC3C0\t0x85DD\n0xC3C1\t0x85EA\n0xC3C2\t0x85D5\n0xC3C3\t0x85E4\n0xC3C4\t0x85E5\n0xC3C5\t0x85F7\n0xC3C6\t0x87FB\n0xC3C7\t0x8805\n0xC3C8\t0x880D\n0xC3C9\t0x87F9\n0xC3CA\t0x87FE\n0xC3CB\t0x8960\n0xC3CC\t0x895F\n0xC3CD\t0x8956\n0xC3CE\t0x895E\n0xC3CF\t0x8B41\n0xC3D0\t0x8B5C\n0xC3D1\t0x8B58\n0xC3D2\t0x8B49\n0xC3D3\t0x8B5A\n0xC3D4\t0x8B4E\n0xC3D5\t0x8B4F\n0xC3D6\t0x8B46\n0xC3D7\t0x8B59\n0xC3D8\t0x8D08\n0xC3D9\t0x8D0A\n0xC3DA\t0x8E7C\n0xC3DB\t0x8E72\n0xC3DC\t0x8E87\n0xC3DD\t0x8E76\n0xC3DE\t0x8E6C\n0xC3DF\t0x8E7A\n0xC3E0\t0x8E74\n0xC3E1\t0x8F54\n0xC3E2\t0x8F4E\n0xC3E3\t0x8FAD\n0xC3E4\t0x908A\n0xC3E5\t0x908B\n0xC3E6\t0x91B1\n0xC3E7\t0x91AE\n0xC3E8\t0x93E1\n0xC3E9\t0x93D1\n0xC3EA\t0x93DF\n0xC3EB\t0x93C3\n0xC3EC\t0x93C8\n0xC3ED\t0x93DC\n0xC3EE\t0x93DD\n0xC3EF\t0x93D6\n0xC3F0\t0x93E2\n0xC3F1\t0x93CD\n0xC3F2\t0x93D8\n0xC3F3\t0x93E4\n0xC3F4\t0x93D7\n0xC3F5\t0x93E8\n0xC3F6\t0x95DC\n0xC3F7\t0x96B4\n0xC3F8\t0x96E3\n0xC3F9\t0x972A\n0xC3FA\t0x9727\n0xC3FB\t0x9761\n0xC3FC\t0x97DC\n0xC3FD\t0x97FB\n0xC3FE\t0x985E\n0xC440\t0x9858\n0xC441\t0x985B\n0xC442\t0x98BC\n0xC443\t0x9945\n0xC444\t0x9949\n0xC445\t0x9A16\n0xC446\t0x9A19\n0xC447\t0x9B0D\n0xC448\t0x9BE8\n0xC449\t0x9BE7\n0xC44A\t0x9BD6\n0xC44B\t0x9BDB\n0xC44C\t0x9D89\n0xC44D\t0x9D61\n0xC44E\t0x9D72\n0xC44F\t0x9D6A\n0xC450\t0x9D6C\n0xC451\t0x9E92\n0xC452\t0x9E97\n0xC453\t0x9E93\n0xC454\t0x9EB4\n0xC455\t0x52F8\n0xC456\t0x56A8\n0xC457\t0x56B7\n0xC458\t0x56B6\n0xC459\t0x56B4\n0xC45A\t0x56BC\n0xC45B\t0x58E4\n0xC45C\t0x5B40\n0xC45D\t0x5B43\n0xC45E\t0x5B7D\n0xC45F\t0x5BF6\n0xC460\t0x5DC9\n0xC461\t0x61F8\n0xC462\t0x61FA\n0xC463\t0x6518\n0xC464\t0x6514\n0xC465\t0x6519\n0xC466\t0x66E6\n0xC467\t0x6727\n0xC468\t0x6AEC\n0xC469\t0x703E\n0xC46A\t0x7030\n0xC46B\t0x7032\n0xC46C\t0x7210\n0xC46D\t0x737B\n0xC46E\t0x74CF\n0xC46F\t0x7662\n0xC470\t0x7665\n0xC471\t0x7926\n0xC472\t0x792A\n0xC473\t0x792C\n0xC474\t0x792B\n0xC475\t0x7AC7\n0xC476\t0x7AF6\n0xC477\t0x7C4C\n0xC478\t0x7C43\n0xC479\t0x7C4D\n0xC47A\t0x7CEF\n0xC47B\t0x7CF0\n0xC47C\t0x8FAE\n0xC47D\t0x7E7D\n0xC47E\t0x7E7C\n0xC4A1\t0x7E82\n0xC4A2\t0x7F4C\n0xC4A3\t0x8000\n0xC4A4\t0x81DA\n0xC4A5\t0x8266\n0xC4A6\t0x85FB\n0xC4A7\t0x85F9\n0xC4A8\t0x8611\n0xC4A9\t0x85FA\n0xC4AA\t0x8606\n0xC4AB\t0x860B\n0xC4AC\t0x8607\n0xC4AD\t0x860A\n0xC4AE\t0x8814\n0xC4AF\t0x8815\n0xC4B0\t0x8964\n0xC4B1\t0x89BA\n0xC4B2\t0x89F8\n0xC4B3\t0x8B70\n0xC4B4\t0x8B6C\n0xC4B5\t0x8B66\n0xC4B6\t0x8B6F\n0xC4B7\t0x8B5F\n0xC4B8\t0x8B6B\n0xC4B9\t0x8D0F\n0xC4BA\t0x8D0D\n0xC4BB\t0x8E89\n0xC4BC\t0x8E81\n0xC4BD\t0x8E85\n0xC4BE\t0x8E82\n0xC4BF\t0x91B4\n0xC4C0\t0x91CB\n0xC4C1\t0x9418\n0xC4C2\t0x9403\n0xC4C3\t0x93FD\n0xC4C4\t0x95E1\n0xC4C5\t0x9730\n0xC4C6\t0x98C4\n0xC4C7\t0x9952\n0xC4C8\t0x9951\n0xC4C9\t0x99A8\n0xC4CA\t0x9A2B\n0xC4CB\t0x9A30\n0xC4CC\t0x9A37\n0xC4CD\t0x9A35\n0xC4CE\t0x9C13\n0xC4CF\t0x9C0D\n0xC4D0\t0x9E79\n0xC4D1\t0x9EB5\n0xC4D2\t0x9EE8\n0xC4D3\t0x9F2F\n0xC4D4\t0x9F5F\n0xC4D5\t0x9F63\n0xC4D6\t0x9F61\n0xC4D7\t0x5137\n0xC4D8\t0x5138\n0xC4D9\t0x56C1\n0xC4DA\t0x56C0\n0xC4DB\t0x56C2\n0xC4DC\t0x5914\n0xC4DD\t0x5C6C\n0xC4DE\t0x5DCD\n0xC4DF\t0x61FC\n0xC4E0\t0x61FE\n0xC4E1\t0x651D\n0xC4E2\t0x651C\n0xC4E3\t0x6595\n0xC4E4\t0x66E9\n0xC4E5\t0x6AFB\n0xC4E6\t0x6B04\n0xC4E7\t0x6AFA\n0xC4E8\t0x6BB2\n0xC4E9\t0x704C\n0xC4EA\t0x721B\n0xC4EB\t0x72A7\n0xC4EC\t0x74D6\n0xC4ED\t0x74D4\n0xC4EE\t0x7669\n0xC4EF\t0x77D3\n0xC4F0\t0x7C50\n0xC4F1\t0x7E8F\n0xC4F2\t0x7E8C\n0xC4F3\t0x7FBC\n0xC4F4\t0x8617\n0xC4F5\t0x862D\n0xC4F6\t0x861A\n0xC4F7\t0x8823\n0xC4F8\t0x8822\n0xC4F9\t0x8821\n0xC4FA\t0x881F\n0xC4FB\t0x896A\n0xC4FC\t0x896C\n0xC4FD\t0x89BD\n0xC4FE\t0x8B74\n0xC540\t0x8B77\n0xC541\t0x8B7D\n0xC542\t0x8D13\n0xC543\t0x8E8A\n0xC544\t0x8E8D\n0xC545\t0x8E8B\n0xC546\t0x8F5F\n0xC547\t0x8FAF\n0xC548\t0x91BA\n0xC549\t0x942E\n0xC54A\t0x9433\n0xC54B\t0x9435\n0xC54C\t0x943A\n0xC54D\t0x9438\n0xC54E\t0x9432\n0xC54F\t0x942B\n0xC550\t0x95E2\n0xC551\t0x9738\n0xC552\t0x9739\n0xC553\t0x9732\n0xC554\t0x97FF\n0xC555\t0x9867\n0xC556\t0x9865\n0xC557\t0x9957\n0xC558\t0x9A45\n0xC559\t0x9A43\n0xC55A\t0x9A40\n0xC55B\t0x9A3E\n0xC55C\t0x9ACF\n0xC55D\t0x9B54\n0xC55E\t0x9B51\n0xC55F\t0x9C2D\n0xC560\t0x9C25\n0xC561\t0x9DAF\n0xC562\t0x9DB4\n0xC563\t0x9DC2\n0xC564\t0x9DB8\n0xC565\t0x9E9D\n0xC566\t0x9EEF\n0xC567\t0x9F19\n0xC568\t0x9F5C\n0xC569\t0x9F66\n0xC56A\t0x9F67\n0xC56B\t0x513C\n0xC56C\t0x513B\n0xC56D\t0x56C8\n0xC56E\t0x56CA\n0xC56F\t0x56C9\n0xC570\t0x5B7F\n0xC571\t0x5DD4\n0xC572\t0x5DD2\n0xC573\t0x5F4E\n0xC574\t0x61FF\n0xC575\t0x6524\n0xC576\t0x6B0A\n0xC577\t0x6B61\n0xC578\t0x7051\n0xC579\t0x7058\n0xC57A\t0x7380\n0xC57B\t0x74E4\n0xC57C\t0x758A\n0xC57D\t0x766E\n0xC57E\t0x766C\n0xC5A1\t0x79B3\n0xC5A2\t0x7C60\n0xC5A3\t0x7C5F\n0xC5A4\t0x807E\n0xC5A5\t0x807D\n0xC5A6\t0x81DF\n0xC5A7\t0x8972\n0xC5A8\t0x896F\n0xC5A9\t0x89FC\n0xC5AA\t0x8B80\n0xC5AB\t0x8D16\n0xC5AC\t0x8D17\n0xC5AD\t0x8E91\n0xC5AE\t0x8E93\n0xC5AF\t0x8F61\n0xC5B0\t0x9148\n0xC5B1\t0x9444\n0xC5B2\t0x9451\n0xC5B3\t0x9452\n0xC5B4\t0x973D\n0xC5B5\t0x973E\n0xC5B6\t0x97C3\n0xC5B7\t0x97C1\n0xC5B8\t0x986B\n0xC5B9\t0x9955\n0xC5BA\t0x9A55\n0xC5BB\t0x9A4D\n0xC5BC\t0x9AD2\n0xC5BD\t0x9B1A\n0xC5BE\t0x9C49\n0xC5BF\t0x9C31\n0xC5C0\t0x9C3E\n0xC5C1\t0x9C3B\n0xC5C2\t0x9DD3\n0xC5C3\t0x9DD7\n0xC5C4\t0x9F34\n0xC5C5\t0x9F6C\n0xC5C6\t0x9F6A\n0xC5C7\t0x9F94\n0xC5C8\t0x56CC\n0xC5C9\t0x5DD6\n0xC5CA\t0x6200\n0xC5CB\t0x6523\n0xC5CC\t0x652B\n0xC5CD\t0x652A\n0xC5CE\t0x66EC\n0xC5CF\t0x6B10\n0xC5D0\t0x74DA\n0xC5D1\t0x7ACA\n0xC5D2\t0x7C64\n0xC5D3\t0x7C63\n0xC5D4\t0x7C65\n0xC5D5\t0x7E93\n0xC5D6\t0x7E96\n0xC5D7\t0x7E94\n0xC5D8\t0x81E2\n0xC5D9\t0x8638\n0xC5DA\t0x863F\n0xC5DB\t0x8831\n0xC5DC\t0x8B8A\n0xC5DD\t0x9090\n0xC5DE\t0x908F\n0xC5DF\t0x9463\n0xC5E0\t0x9460\n0xC5E1\t0x9464\n0xC5E2\t0x9768\n0xC5E3\t0x986F\n0xC5E4\t0x995C\n0xC5E5\t0x9A5A\n0xC5E6\t0x9A5B\n0xC5E7\t0x9A57\n0xC5E8\t0x9AD3\n0xC5E9\t0x9AD4\n0xC5EA\t0x9AD1\n0xC5EB\t0x9C54\n0xC5EC\t0x9C57\n0xC5ED\t0x9C56\n0xC5EE\t0x9DE5\n0xC5EF\t0x9E9F\n0xC5F0\t0x9EF4\n0xC5F1\t0x56D1\n0xC5F2\t0x58E9\n0xC5F3\t0x652C\n0xC5F4\t0x705E\n0xC5F5\t0x7671\n0xC5F6\t0x7672\n0xC5F7\t0x77D7\n0xC5F8\t0x7F50\n0xC5F9\t0x7F88\n0xC5FA\t0x8836\n0xC5FB\t0x8839\n0xC5FC\t0x8862\n0xC5FD\t0x8B93\n0xC5FE\t0x8B92\n0xC640\t0x8B96\n0xC641\t0x8277\n0xC642\t0x8D1B\n0xC643\t0x91C0\n0xC644\t0x946A\n0xC645\t0x9742\n0xC646\t0x9748\n0xC647\t0x9744\n0xC648\t0x97C6\n0xC649\t0x9870\n0xC64A\t0x9A5F\n0xC64B\t0x9B22\n0xC64C\t0x9B58\n0xC64D\t0x9C5F\n0xC64E\t0x9DF9\n0xC64F\t0x9DFA\n0xC650\t0x9E7C\n0xC651\t0x9E7D\n0xC652\t0x9F07\n0xC653\t0x9F77\n0xC654\t0x9F72\n0xC655\t0x5EF3\n0xC656\t0x6B16\n0xC657\t0x7063\n0xC658\t0x7C6C\n0xC659\t0x7C6E\n0xC65A\t0x883B\n0xC65B\t0x89C0\n0xC65C\t0x8EA1\n0xC65D\t0x91C1\n0xC65E\t0x9472\n0xC65F\t0x9470\n0xC660\t0x9871\n0xC661\t0x995E\n0xC662\t0x9AD6\n0xC663\t0x9B23\n0xC664\t0x9ECC\n0xC665\t0x7064\n0xC666\t0x77DA\n0xC667\t0x8B9A\n0xC668\t0x9477\n0xC669\t0x97C9\n0xC66A\t0x9A62\n0xC66B\t0x9A65\n0xC66C\t0x7E9C\n0xC66D\t0x8B9C\n0xC66E\t0x8EAA\n0xC66F\t0x91C5\n0xC670\t0x947D\n0xC671\t0x947E\n0xC672\t0x947C\n0xC673\t0x9C77\n0xC674\t0x9C78\n0xC675\t0x9EF7\n0xC676\t0x8C54\n0xC677\t0x947F\n0xC678\t0x9E1A\n0xC679\t0x7228\n0xC67A\t0x9A6A\n0xC67B\t0x9B31\n0xC67C\t0x9E1B\n0xC67D\t0x9E1E\n0xC67E\t0x7C72\n0xC6A1\t0x30FE\n0xC6A2\t0x309D\n0xC6A3\t0x309E\n0xC6A4\t0x3005\n0xC6A5\t0x3041\n0xC6A6\t0x3042\n0xC6A7\t0x3043\n0xC6A8\t0x3044\n0xC6A9\t0x3045\n0xC6AA\t0x3046\n0xC6AB\t0x3047\n0xC6AC\t0x3048\n0xC6AD\t0x3049\n0xC6AE\t0x304A\n0xC6AF\t0x304B\n0xC6B0\t0x304C\n0xC6B1\t0x304D\n0xC6B2\t0x304E\n0xC6B3\t0x304F\n0xC6B4\t0x3050\n0xC6B5\t0x3051\n0xC6B6\t0x3052\n0xC6B7\t0x3053\n0xC6B8\t0x3054\n0xC6B9\t0x3055\n0xC6BA\t0x3056\n0xC6BB\t0x3057\n0xC6BC\t0x3058\n0xC6BD\t0x3059\n0xC6BE\t0x305A\n0xC6BF\t0x305B\n0xC6C0\t0x305C\n0xC6C1\t0x305D\n0xC6C2\t0x305E\n0xC6C3\t0x305F\n0xC6C4\t0x3060\n0xC6C5\t0x3061\n0xC6C6\t0x3062\n0xC6C7\t0x3063\n0xC6C8\t0x3064\n0xC6C9\t0x3065\n0xC6CA\t0x3066\n0xC6CB\t0x3067\n0xC6CC\t0x3068\n0xC6CD\t0x3069\n0xC6CE\t0x306A\n0xC6CF\t0x306B\n0xC6D0\t0x306C\n0xC6D1\t0x306D\n0xC6D2\t0x306E\n0xC6D3\t0x306F\n0xC6D4\t0x3070\n0xC6D5\t0x3071\n0xC6D6\t0x3072\n0xC6D7\t0x3073\n0xC6D8\t0x3074\n0xC6D9\t0x3075\n0xC6DA\t0x3076\n0xC6DB\t0x3077\n0xC6DC\t0x3078\n0xC6DD\t0x3079\n0xC6DE\t0x307A\n0xC6DF\t0x307B\n0xC6E0\t0x307C\n0xC6E1\t0x307D\n0xC6E2\t0x307E\n0xC6E3\t0x307F\n0xC6E4\t0x3080\n0xC6E5\t0x3081\n0xC6E6\t0x3082\n0xC6E7\t0x3083\n0xC6E8\t0x3084\n0xC6E9\t0x3085\n0xC6EA\t0x3086\n0xC6EB\t0x3087\n0xC6EC\t0x3088\n0xC6ED\t0x3089\n0xC6EE\t0x308A\n0xC6EF\t0x308B\n0xC6F0\t0x308C\n0xC6F1\t0x308D\n0xC6F2\t0x308E\n0xC6F3\t0x308F\n0xC6F4\t0x3090\n0xC6F5\t0x3091\n0xC6F6\t0x3092\n0xC6F7\t0x3093\n0xC6F8\t0x30A1\n0xC6F9\t0x30A2\n0xC6FA\t0x30A3\n0xC6FB\t0x30A4\n0xC6FC\t0x30A5\n0xC6FD\t0x30A6\n0xC6FE\t0x30A7\n0xC740\t0x30A8\n0xC741\t0x30A9\n0xC742\t0x30AA\n0xC743\t0x30AB\n0xC744\t0x30AC\n0xC745\t0x30AD\n0xC746\t0x30AE\n0xC747\t0x30AF\n0xC748\t0x30B0\n0xC749\t0x30B1\n0xC74A\t0x30B2\n0xC74B\t0x30B3\n0xC74C\t0x30B4\n0xC74D\t0x30B5\n0xC74E\t0x30B6\n0xC74F\t0x30B7\n0xC750\t0x30B8\n0xC751\t0x30B9\n0xC752\t0x30BA\n0xC753\t0x30BB\n0xC754\t0x30BC\n0xC755\t0x30BD\n0xC756\t0x30BE\n0xC757\t0x30BF\n0xC758\t0x30C0\n0xC759\t0x30C1\n0xC75A\t0x30C2\n0xC75B\t0x30C3\n0xC75C\t0x30C4\n0xC75D\t0x30C5\n0xC75E\t0x30C6\n0xC75F\t0x30C7\n0xC760\t0x30C8\n0xC761\t0x30C9\n0xC762\t0x30CA\n0xC763\t0x30CB\n0xC764\t0x30CC\n0xC765\t0x30CD\n0xC766\t0x30CE\n0xC767\t0x30CF\n0xC768\t0x30D0\n0xC769\t0x30D1\n0xC76A\t0x30D2\n0xC76B\t0x30D3\n0xC76C\t0x30D4\n0xC76D\t0x30D5\n0xC76E\t0x30D6\n0xC76F\t0x30D7\n0xC770\t0x30D8\n0xC771\t0x30D9\n0xC772\t0x30DA\n0xC773\t0x30DB\n0xC774\t0x30DC\n0xC775\t0x30DD\n0xC776\t0x30DE\n0xC777\t0x30DF\n0xC778\t0x30E0\n0xC779\t0x30E1\n0xC77A\t0x30E2\n0xC77B\t0x30E3\n0xC77C\t0x30E4\n0xC77D\t0x30E5\n0xC77E\t0x30E6\n0xC7A1\t0x30E7\n0xC7A2\t0x30E8\n0xC7A3\t0x30E9\n0xC7A4\t0x30EA\n0xC7A5\t0x30EB\n0xC7A6\t0x30EC\n0xC7A7\t0x30ED\n0xC7A8\t0x30EE\n0xC7A9\t0x30EF\n0xC7AA\t0x30F0\n0xC7AB\t0x30F1\n0xC7AC\t0x30F2\n0xC7AD\t0x30F3\n0xC7AE\t0x30F4\n0xC7AF\t0x30F5\n0xC7B0\t0x30F6\n0xC7B1\t0x0414\n0xC7B2\t0x0415\n0xC7B3\t0x0401\n0xC7B4\t0x0416\n0xC7B5\t0x0417\n0xC7B6\t0x0418\n0xC7B7\t0x0419\n0xC7B8\t0x041A\n0xC7B9\t0x041B\n0xC7BA\t0x041C\n0xC7BB\t0x0423\n0xC7BC\t0x0424\n0xC7BD\t0x0425\n0xC7BE\t0x0426\n0xC7BF\t0x0427\n0xC7C0\t0x0428\n0xC7C1\t0x0429\n0xC7C2\t0x042A\n0xC7C3\t0x042B\n0xC7C4\t0x042C\n0xC7C5\t0x042D\n0xC7C6\t0x042E\n0xC7C7\t0x042F\n0xC7C8\t0x0430\n0xC7C9\t0x0431\n0xC7CA\t0x0432\n0xC7CB\t0x0433\n0xC7CC\t0x0434\n0xC7CD\t0x0435\n0xC7CE\t0x0451\n0xC7CF\t0x0436\n0xC7D0\t0x0437\n0xC7D1\t0x0438\n0xC7D2\t0x0439\n0xC7D3\t0x043A\n0xC7D4\t0x043B\n0xC7D5\t0x043C\n0xC7D6\t0x043D\n0xC7D7\t0x043E\n0xC7D8\t0x043F\n0xC7D9\t0x0440\n0xC7DA\t0x0441\n0xC7DB\t0x0442\n0xC7DC\t0x0443\n0xC7DD\t0x0444\n0xC7DE\t0x0445\n0xC7DF\t0x0446\n0xC7E0\t0x0447\n0xC7E1\t0x0448\n0xC7E2\t0x0449\n0xC7E3\t0x044A\n0xC7E4\t0x044B\n0xC7E5\t0x044C\n0xC7E6\t0x044D\n0xC7E7\t0x044E\n0xC7E8\t0x044F\n0xC7E9\t0x2460\n0xC7EA\t0x2461\n0xC7EB\t0x2462\n0xC7EC\t0x2463\n0xC7ED\t0x2464\n0xC7EE\t0x2465\n0xC7EF\t0x2466\n0xC7F0\t0x2467\n0xC7F1\t0x2468\n0xC7F2\t0x2469\n0xC7F3\t0x2474\n0xC7F4\t0x2475\n0xC7F5\t0x2476\n0xC7F6\t0x2477\n0xC7F7\t0x2478\n0xC7F8\t0x2479\n0xC7F9\t0x247A\n0xC7FA\t0x247B\n0xC7FB\t0x247C\n0xC7FC\t0x247D\n0xC940\t0x4E42\n0xC941\t0x4E5C\n0xC942\t0x51F5\n0xC943\t0x531A\n0xC944\t0x5382\n0xC945\t0x4E07\n0xC946\t0x4E0C\n0xC947\t0x4E47\n0xC948\t0x4E8D\n0xC949\t0x56D7\n0xC94A\t0xFA0C\n0xC94B\t0x5C6E\n0xC94C\t0x5F73\n0xC94D\t0x4E0F\n0xC94E\t0x5187\n0xC94F\t0x4E0E\n0xC950\t0x4E2E\n0xC951\t0x4E93\n0xC952\t0x4EC2\n0xC953\t0x4EC9\n0xC954\t0x4EC8\n0xC955\t0x5198\n0xC956\t0x52FC\n0xC957\t0x536C\n0xC958\t0x53B9\n0xC959\t0x5720\n0xC95A\t0x5903\n0xC95B\t0x592C\n0xC95C\t0x5C10\n0xC95D\t0x5DFF\n0xC95E\t0x65E1\n0xC95F\t0x6BB3\n0xC960\t0x6BCC\n0xC961\t0x6C14\n0xC962\t0x723F\n0xC963\t0x4E31\n0xC964\t0x4E3C\n0xC965\t0x4EE8\n0xC966\t0x4EDC\n0xC967\t0x4EE9\n0xC968\t0x4EE1\n0xC969\t0x4EDD\n0xC96A\t0x4EDA\n0xC96B\t0x520C\n0xC96C\t0x531C\n0xC96D\t0x534C\n0xC96E\t0x5722\n0xC96F\t0x5723\n0xC970\t0x5917\n0xC971\t0x592F\n0xC972\t0x5B81\n0xC973\t0x5B84\n0xC974\t0x5C12\n0xC975\t0x5C3B\n0xC976\t0x5C74\n0xC977\t0x5C73\n0xC978\t0x5E04\n0xC979\t0x5E80\n0xC97A\t0x5E82\n0xC97B\t0x5FC9\n0xC97C\t0x6209\n0xC97D\t0x6250\n0xC97E\t0x6C15\n0xC9A1\t0x6C36\n0xC9A2\t0x6C43\n0xC9A3\t0x6C3F\n0xC9A4\t0x6C3B\n0xC9A5\t0x72AE\n0xC9A6\t0x72B0\n0xC9A7\t0x738A\n0xC9A8\t0x79B8\n0xC9A9\t0x808A\n0xC9AA\t0x961E\n0xC9AB\t0x4F0E\n0xC9AC\t0x4F18\n0xC9AD\t0x4F2C\n0xC9AE\t0x4EF5\n0xC9AF\t0x4F14\n0xC9B0\t0x4EF1\n0xC9B1\t0x4F00\n0xC9B2\t0x4EF7\n0xC9B3\t0x4F08\n0xC9B4\t0x4F1D\n0xC9B5\t0x4F02\n0xC9B6\t0x4F05\n0xC9B7\t0x4F22\n0xC9B8\t0x4F13\n0xC9B9\t0x4F04\n0xC9BA\t0x4EF4\n0xC9BB\t0x4F12\n0xC9BC\t0x51B1\n0xC9BD\t0x5213\n0xC9BE\t0x5209\n0xC9BF\t0x5210\n0xC9C0\t0x52A6\n0xC9C1\t0x5322\n0xC9C2\t0x531F\n0xC9C3\t0x534D\n0xC9C4\t0x538A\n0xC9C5\t0x5407\n0xC9C6\t0x56E1\n0xC9C7\t0x56DF\n0xC9C8\t0x572E\n0xC9C9\t0x572A\n0xC9CA\t0x5734\n0xC9CB\t0x593C\n0xC9CC\t0x5980\n0xC9CD\t0x597C\n0xC9CE\t0x5985\n0xC9CF\t0x597B\n0xC9D0\t0x597E\n0xC9D1\t0x5977\n0xC9D2\t0x597F\n0xC9D3\t0x5B56\n0xC9D4\t0x5C15\n0xC9D5\t0x5C25\n0xC9D6\t0x5C7C\n0xC9D7\t0x5C7A\n0xC9D8\t0x5C7B\n0xC9D9\t0x5C7E\n0xC9DA\t0x5DDF\n0xC9DB\t0x5E75\n0xC9DC\t0x5E84\n0xC9DD\t0x5F02\n0xC9DE\t0x5F1A\n0xC9DF\t0x5F74\n0xC9E0\t0x5FD5\n0xC9E1\t0x5FD4\n0xC9E2\t0x5FCF\n0xC9E3\t0x625C\n0xC9E4\t0x625E\n0xC9E5\t0x6264\n0xC9E6\t0x6261\n0xC9E7\t0x6266\n0xC9E8\t0x6262\n0xC9E9\t0x6259\n0xC9EA\t0x6260\n0xC9EB\t0x625A\n0xC9EC\t0x6265\n0xC9ED\t0x65EF\n0xC9EE\t0x65EE\n0xC9EF\t0x673E\n0xC9F0\t0x6739\n0xC9F1\t0x6738\n0xC9F2\t0x673B\n0xC9F3\t0x673A\n0xC9F4\t0x673F\n0xC9F5\t0x673C\n0xC9F6\t0x6733\n0xC9F7\t0x6C18\n0xC9F8\t0x6C46\n0xC9F9\t0x6C52\n0xC9FA\t0x6C5C\n0xC9FB\t0x6C4F\n0xC9FC\t0x6C4A\n0xC9FD\t0x6C54\n0xC9FE\t0x6C4B\n0xCA40\t0x6C4C\n0xCA41\t0x7071\n0xCA42\t0x725E\n0xCA43\t0x72B4\n0xCA44\t0x72B5\n0xCA45\t0x738E\n0xCA46\t0x752A\n0xCA47\t0x767F\n0xCA48\t0x7A75\n0xCA49\t0x7F51\n0xCA4A\t0x8278\n0xCA4B\t0x827C\n0xCA4C\t0x8280\n0xCA4D\t0x827D\n0xCA4E\t0x827F\n0xCA4F\t0x864D\n0xCA50\t0x897E\n0xCA51\t0x9099\n0xCA52\t0x9097\n0xCA53\t0x9098\n0xCA54\t0x909B\n0xCA55\t0x9094\n0xCA56\t0x9622\n0xCA57\t0x9624\n0xCA58\t0x9620\n0xCA59\t0x9623\n0xCA5A\t0x4F56\n0xCA5B\t0x4F3B\n0xCA5C\t0x4F62\n0xCA5D\t0x4F49\n0xCA5E\t0x4F53\n0xCA5F\t0x4F64\n0xCA60\t0x4F3E\n0xCA61\t0x4F67\n0xCA62\t0x4F52\n0xCA63\t0x4F5F\n0xCA64\t0x4F41\n0xCA65\t0x4F58\n0xCA66\t0x4F2D\n0xCA67\t0x4F33\n0xCA68\t0x4F3F\n0xCA69\t0x4F61\n0xCA6A\t0x518F\n0xCA6B\t0x51B9\n0xCA6C\t0x521C\n0xCA6D\t0x521E\n0xCA6E\t0x5221\n0xCA6F\t0x52AD\n0xCA70\t0x52AE\n0xCA71\t0x5309\n0xCA72\t0x5363\n0xCA73\t0x5372\n0xCA74\t0x538E\n0xCA75\t0x538F\n0xCA76\t0x5430\n0xCA77\t0x5437\n0xCA78\t0x542A\n0xCA79\t0x5454\n0xCA7A\t0x5445\n0xCA7B\t0x5419\n0xCA7C\t0x541C\n0xCA7D\t0x5425\n0xCA7E\t0x5418\n0xCAA1\t0x543D\n0xCAA2\t0x544F\n0xCAA3\t0x5441\n0xCAA4\t0x5428\n0xCAA5\t0x5424\n0xCAA6\t0x5447\n0xCAA7\t0x56EE\n0xCAA8\t0x56E7\n0xCAA9\t0x56E5\n0xCAAA\t0x5741\n0xCAAB\t0x5745\n0xCAAC\t0x574C\n0xCAAD\t0x5749\n0xCAAE\t0x574B\n0xCAAF\t0x5752\n0xCAB0\t0x5906\n0xCAB1\t0x5940\n0xCAB2\t0x59A6\n0xCAB3\t0x5998\n0xCAB4\t0x59A0\n0xCAB5\t0x5997\n0xCAB6\t0x598E\n0xCAB7\t0x59A2\n0xCAB8\t0x5990\n0xCAB9\t0x598F\n0xCABA\t0x59A7\n0xCABB\t0x59A1\n0xCABC\t0x5B8E\n0xCABD\t0x5B92\n0xCABE\t0x5C28\n0xCABF\t0x5C2A\n0xCAC0\t0x5C8D\n0xCAC1\t0x5C8F\n0xCAC2\t0x5C88\n0xCAC3\t0x5C8B\n0xCAC4\t0x5C89\n0xCAC5\t0x5C92\n0xCAC6\t0x5C8A\n0xCAC7\t0x5C86\n0xCAC8\t0x5C93\n0xCAC9\t0x5C95\n0xCACA\t0x5DE0\n0xCACB\t0x5E0A\n0xCACC\t0x5E0E\n0xCACD\t0x5E8B\n0xCACE\t0x5E89\n0xCACF\t0x5E8C\n0xCAD0\t0x5E88\n0xCAD1\t0x5E8D\n0xCAD2\t0x5F05\n0xCAD3\t0x5F1D\n0xCAD4\t0x5F78\n0xCAD5\t0x5F76\n0xCAD6\t0x5FD2\n0xCAD7\t0x5FD1\n0xCAD8\t0x5FD0\n0xCAD9\t0x5FED\n0xCADA\t0x5FE8\n0xCADB\t0x5FEE\n0xCADC\t0x5FF3\n0xCADD\t0x5FE1\n0xCADE\t0x5FE4\n0xCADF\t0x5FE3\n0xCAE0\t0x5FFA\n0xCAE1\t0x5FEF\n0xCAE2\t0x5FF7\n0xCAE3\t0x5FFB\n0xCAE4\t0x6000\n0xCAE5\t0x5FF4\n0xCAE6\t0x623A\n0xCAE7\t0x6283\n0xCAE8\t0x628C\n0xCAE9\t0x628E\n0xCAEA\t0x628F\n0xCAEB\t0x6294\n0xCAEC\t0x6287\n0xCAED\t0x6271\n0xCAEE\t0x627B\n0xCAEF\t0x627A\n0xCAF0\t0x6270\n0xCAF1\t0x6281\n0xCAF2\t0x6288\n0xCAF3\t0x6277\n0xCAF4\t0x627D\n0xCAF5\t0x6272\n0xCAF6\t0x6274\n0xCAF7\t0x6537\n0xCAF8\t0x65F0\n0xCAF9\t0x65F4\n0xCAFA\t0x65F3\n0xCAFB\t0x65F2\n0xCAFC\t0x65F5\n0xCAFD\t0x6745\n0xCAFE\t0x6747\n0xCB40\t0x6759\n0xCB41\t0x6755\n0xCB42\t0x674C\n0xCB43\t0x6748\n0xCB44\t0x675D\n0xCB45\t0x674D\n0xCB46\t0x675A\n0xCB47\t0x674B\n0xCB48\t0x6BD0\n0xCB49\t0x6C19\n0xCB4A\t0x6C1A\n0xCB4B\t0x6C78\n0xCB4C\t0x6C67\n0xCB4D\t0x6C6B\n0xCB4E\t0x6C84\n0xCB4F\t0x6C8B\n0xCB50\t0x6C8F\n0xCB51\t0x6C71\n0xCB52\t0x6C6F\n0xCB53\t0x6C69\n0xCB54\t0x6C9A\n0xCB55\t0x6C6D\n0xCB56\t0x6C87\n0xCB57\t0x6C95\n0xCB58\t0x6C9C\n0xCB59\t0x6C66\n0xCB5A\t0x6C73\n0xCB5B\t0x6C65\n0xCB5C\t0x6C7B\n0xCB5D\t0x6C8E\n0xCB5E\t0x7074\n0xCB5F\t0x707A\n0xCB60\t0x7263\n0xCB61\t0x72BF\n0xCB62\t0x72BD\n0xCB63\t0x72C3\n0xCB64\t0x72C6\n0xCB65\t0x72C1\n0xCB66\t0x72BA\n0xCB67\t0x72C5\n0xCB68\t0x7395\n0xCB69\t0x7397\n0xCB6A\t0x7393\n0xCB6B\t0x7394\n0xCB6C\t0x7392\n0xCB6D\t0x753A\n0xCB6E\t0x7539\n0xCB6F\t0x7594\n0xCB70\t0x7595\n0xCB71\t0x7681\n0xCB72\t0x793D\n0xCB73\t0x8034\n0xCB74\t0x8095\n0xCB75\t0x8099\n0xCB76\t0x8090\n0xCB77\t0x8092\n0xCB78\t0x809C\n0xCB79\t0x8290\n0xCB7A\t0x828F\n0xCB7B\t0x8285\n0xCB7C\t0x828E\n0xCB7D\t0x8291\n0xCB7E\t0x8293\n0xCBA1\t0x828A\n0xCBA2\t0x8283\n0xCBA3\t0x8284\n0xCBA4\t0x8C78\n0xCBA5\t0x8FC9\n0xCBA6\t0x8FBF\n0xCBA7\t0x909F\n0xCBA8\t0x90A1\n0xCBA9\t0x90A5\n0xCBAA\t0x909E\n0xCBAB\t0x90A7\n0xCBAC\t0x90A0\n0xCBAD\t0x9630\n0xCBAE\t0x9628\n0xCBAF\t0x962F\n0xCBB0\t0x962D\n0xCBB1\t0x4E33\n0xCBB2\t0x4F98\n0xCBB3\t0x4F7C\n0xCBB4\t0x4F85\n0xCBB5\t0x4F7D\n0xCBB6\t0x4F80\n0xCBB7\t0x4F87\n0xCBB8\t0x4F76\n0xCBB9\t0x4F74\n0xCBBA\t0x4F89\n0xCBBB\t0x4F84\n0xCBBC\t0x4F77\n0xCBBD\t0x4F4C\n0xCBBE\t0x4F97\n0xCBBF\t0x4F6A\n0xCBC0\t0x4F9A\n0xCBC1\t0x4F79\n0xCBC2\t0x4F81\n0xCBC3\t0x4F78\n0xCBC4\t0x4F90\n0xCBC5\t0x4F9C\n0xCBC6\t0x4F94\n0xCBC7\t0x4F9E\n0xCBC8\t0x4F92\n0xCBC9\t0x4F82\n0xCBCA\t0x4F95\n0xCBCB\t0x4F6B\n0xCBCC\t0x4F6E\n0xCBCD\t0x519E\n0xCBCE\t0x51BC\n0xCBCF\t0x51BE\n0xCBD0\t0x5235\n0xCBD1\t0x5232\n0xCBD2\t0x5233\n0xCBD3\t0x5246\n0xCBD4\t0x5231\n0xCBD5\t0x52BC\n0xCBD6\t0x530A\n0xCBD7\t0x530B\n0xCBD8\t0x533C\n0xCBD9\t0x5392\n0xCBDA\t0x5394\n0xCBDB\t0x5487\n0xCBDC\t0x547F\n0xCBDD\t0x5481\n0xCBDE\t0x5491\n0xCBDF\t0x5482\n0xCBE0\t0x5488\n0xCBE1\t0x546B\n0xCBE2\t0x547A\n0xCBE3\t0x547E\n0xCBE4\t0x5465\n0xCBE5\t0x546C\n0xCBE6\t0x5474\n0xCBE7\t0x5466\n0xCBE8\t0x548D\n0xCBE9\t0x546F\n0xCBEA\t0x5461\n0xCBEB\t0x5460\n0xCBEC\t0x5498\n0xCBED\t0x5463\n0xCBEE\t0x5467\n0xCBEF\t0x5464\n0xCBF0\t0x56F7\n0xCBF1\t0x56F9\n0xCBF2\t0x576F\n0xCBF3\t0x5772\n0xCBF4\t0x576D\n0xCBF5\t0x576B\n0xCBF6\t0x5771\n0xCBF7\t0x5770\n0xCBF8\t0x5776\n0xCBF9\t0x5780\n0xCBFA\t0x5775\n0xCBFB\t0x577B\n0xCBFC\t0x5773\n0xCBFD\t0x5774\n0xCBFE\t0x5762\n0xCC40\t0x5768\n0xCC41\t0x577D\n0xCC42\t0x590C\n0xCC43\t0x5945\n0xCC44\t0x59B5\n0xCC45\t0x59BA\n0xCC46\t0x59CF\n0xCC47\t0x59CE\n0xCC48\t0x59B2\n0xCC49\t0x59CC\n0xCC4A\t0x59C1\n0xCC4B\t0x59B6\n0xCC4C\t0x59BC\n0xCC4D\t0x59C3\n0xCC4E\t0x59D6\n0xCC4F\t0x59B1\n0xCC50\t0x59BD\n0xCC51\t0x59C0\n0xCC52\t0x59C8\n0xCC53\t0x59B4\n0xCC54\t0x59C7\n0xCC55\t0x5B62\n0xCC56\t0x5B65\n0xCC57\t0x5B93\n0xCC58\t0x5B95\n0xCC59\t0x5C44\n0xCC5A\t0x5C47\n0xCC5B\t0x5CAE\n0xCC5C\t0x5CA4\n0xCC5D\t0x5CA0\n0xCC5E\t0x5CB5\n0xCC5F\t0x5CAF\n0xCC60\t0x5CA8\n0xCC61\t0x5CAC\n0xCC62\t0x5C9F\n0xCC63\t0x5CA3\n0xCC64\t0x5CAD\n0xCC65\t0x5CA2\n0xCC66\t0x5CAA\n0xCC67\t0x5CA7\n0xCC68\t0x5C9D\n0xCC69\t0x5CA5\n0xCC6A\t0x5CB6\n0xCC6B\t0x5CB0\n0xCC6C\t0x5CA6\n0xCC6D\t0x5E17\n0xCC6E\t0x5E14\n0xCC6F\t0x5E19\n0xCC70\t0x5F28\n0xCC71\t0x5F22\n0xCC72\t0x5F23\n0xCC73\t0x5F24\n0xCC74\t0x5F54\n0xCC75\t0x5F82\n0xCC76\t0x5F7E\n0xCC77\t0x5F7D\n0xCC78\t0x5FDE\n0xCC79\t0x5FE5\n0xCC7A\t0x602D\n0xCC7B\t0x6026\n0xCC7C\t0x6019\n0xCC7D\t0x6032\n0xCC7E\t0x600B\n0xCCA1\t0x6034\n0xCCA2\t0x600A\n0xCCA3\t0x6017\n0xCCA4\t0x6033\n0xCCA5\t0x601A\n0xCCA6\t0x601E\n0xCCA7\t0x602C\n0xCCA8\t0x6022\n0xCCA9\t0x600D\n0xCCAA\t0x6010\n0xCCAB\t0x602E\n0xCCAC\t0x6013\n0xCCAD\t0x6011\n0xCCAE\t0x600C\n0xCCAF\t0x6009\n0xCCB0\t0x601C\n0xCCB1\t0x6214\n0xCCB2\t0x623D\n0xCCB3\t0x62AD\n0xCCB4\t0x62B4\n0xCCB5\t0x62D1\n0xCCB6\t0x62BE\n0xCCB7\t0x62AA\n0xCCB8\t0x62B6\n0xCCB9\t0x62CA\n0xCCBA\t0x62AE\n0xCCBB\t0x62B3\n0xCCBC\t0x62AF\n0xCCBD\t0x62BB\n0xCCBE\t0x62A9\n0xCCBF\t0x62B0\n0xCCC0\t0x62B8\n0xCCC1\t0x653D\n0xCCC2\t0x65A8\n0xCCC3\t0x65BB\n0xCCC4\t0x6609\n0xCCC5\t0x65FC\n0xCCC6\t0x6604\n0xCCC7\t0x6612\n0xCCC8\t0x6608\n0xCCC9\t0x65FB\n0xCCCA\t0x6603\n0xCCCB\t0x660B\n0xCCCC\t0x660D\n0xCCCD\t0x6605\n0xCCCE\t0x65FD\n0xCCCF\t0x6611\n0xCCD0\t0x6610\n0xCCD1\t0x66F6\n0xCCD2\t0x670A\n0xCCD3\t0x6785\n0xCCD4\t0x676C\n0xCCD5\t0x678E\n0xCCD6\t0x6792\n0xCCD7\t0x6776\n0xCCD8\t0x677B\n0xCCD9\t0x6798\n0xCCDA\t0x6786\n0xCCDB\t0x6784\n0xCCDC\t0x6774\n0xCCDD\t0x678D\n0xCCDE\t0x678C\n0xCCDF\t0x677A\n0xCCE0\t0x679F\n0xCCE1\t0x6791\n0xCCE2\t0x6799\n0xCCE3\t0x6783\n0xCCE4\t0x677D\n0xCCE5\t0x6781\n0xCCE6\t0x6778\n0xCCE7\t0x6779\n0xCCE8\t0x6794\n0xCCE9\t0x6B25\n0xCCEA\t0x6B80\n0xCCEB\t0x6B7E\n0xCCEC\t0x6BDE\n0xCCED\t0x6C1D\n0xCCEE\t0x6C93\n0xCCEF\t0x6CEC\n0xCCF0\t0x6CEB\n0xCCF1\t0x6CEE\n0xCCF2\t0x6CD9\n0xCCF3\t0x6CB6\n0xCCF4\t0x6CD4\n0xCCF5\t0x6CAD\n0xCCF6\t0x6CE7\n0xCCF7\t0x6CB7\n0xCCF8\t0x6CD0\n0xCCF9\t0x6CC2\n0xCCFA\t0x6CBA\n0xCCFB\t0x6CC3\n0xCCFC\t0x6CC6\n0xCCFD\t0x6CED\n0xCCFE\t0x6CF2\n0xCD40\t0x6CD2\n0xCD41\t0x6CDD\n0xCD42\t0x6CB4\n0xCD43\t0x6C8A\n0xCD44\t0x6C9D\n0xCD45\t0x6C80\n0xCD46\t0x6CDE\n0xCD47\t0x6CC0\n0xCD48\t0x6D30\n0xCD49\t0x6CCD\n0xCD4A\t0x6CC7\n0xCD4B\t0x6CB0\n0xCD4C\t0x6CF9\n0xCD4D\t0x6CCF\n0xCD4E\t0x6CE9\n0xCD4F\t0x6CD1\n0xCD50\t0x7094\n0xCD51\t0x7098\n0xCD52\t0x7085\n0xCD53\t0x7093\n0xCD54\t0x7086\n0xCD55\t0x7084\n0xCD56\t0x7091\n0xCD57\t0x7096\n0xCD58\t0x7082\n0xCD59\t0x709A\n0xCD5A\t0x7083\n0xCD5B\t0x726A\n0xCD5C\t0x72D6\n0xCD5D\t0x72CB\n0xCD5E\t0x72D8\n0xCD5F\t0x72C9\n0xCD60\t0x72DC\n0xCD61\t0x72D2\n0xCD62\t0x72D4\n0xCD63\t0x72DA\n0xCD64\t0x72CC\n0xCD65\t0x72D1\n0xCD66\t0x73A4\n0xCD67\t0x73A1\n0xCD68\t0x73AD\n0xCD69\t0x73A6\n0xCD6A\t0x73A2\n0xCD6B\t0x73A0\n0xCD6C\t0x73AC\n0xCD6D\t0x739D\n0xCD6E\t0x74DD\n0xCD6F\t0x74E8\n0xCD70\t0x753F\n0xCD71\t0x7540\n0xCD72\t0x753E\n0xCD73\t0x758C\n0xCD74\t0x7598\n0xCD75\t0x76AF\n0xCD76\t0x76F3\n0xCD77\t0x76F1\n0xCD78\t0x76F0\n0xCD79\t0x76F5\n0xCD7A\t0x77F8\n0xCD7B\t0x77FC\n0xCD7C\t0x77F9\n0xCD7D\t0x77FB\n0xCD7E\t0x77FA\n0xCDA1\t0x77F7\n0xCDA2\t0x7942\n0xCDA3\t0x793F\n0xCDA4\t0x79C5\n0xCDA5\t0x7A78\n0xCDA6\t0x7A7B\n0xCDA7\t0x7AFB\n0xCDA8\t0x7C75\n0xCDA9\t0x7CFD\n0xCDAA\t0x8035\n0xCDAB\t0x808F\n0xCDAC\t0x80AE\n0xCDAD\t0x80A3\n0xCDAE\t0x80B8\n0xCDAF\t0x80B5\n0xCDB0\t0x80AD\n0xCDB1\t0x8220\n0xCDB2\t0x82A0\n0xCDB3\t0x82C0\n0xCDB4\t0x82AB\n0xCDB5\t0x829A\n0xCDB6\t0x8298\n0xCDB7\t0x829B\n0xCDB8\t0x82B5\n0xCDB9\t0x82A7\n0xCDBA\t0x82AE\n0xCDBB\t0x82BC\n0xCDBC\t0x829E\n0xCDBD\t0x82BA\n0xCDBE\t0x82B4\n0xCDBF\t0x82A8\n0xCDC0\t0x82A1\n0xCDC1\t0x82A9\n0xCDC2\t0x82C2\n0xCDC3\t0x82A4\n0xCDC4\t0x82C3\n0xCDC5\t0x82B6\n0xCDC6\t0x82A2\n0xCDC7\t0x8670\n0xCDC8\t0x866F\n0xCDC9\t0x866D\n0xCDCA\t0x866E\n0xCDCB\t0x8C56\n0xCDCC\t0x8FD2\n0xCDCD\t0x8FCB\n0xCDCE\t0x8FD3\n0xCDCF\t0x8FCD\n0xCDD0\t0x8FD6\n0xCDD1\t0x8FD5\n0xCDD2\t0x8FD7\n0xCDD3\t0x90B2\n0xCDD4\t0x90B4\n0xCDD5\t0x90AF\n0xCDD6\t0x90B3\n0xCDD7\t0x90B0\n0xCDD8\t0x9639\n0xCDD9\t0x963D\n0xCDDA\t0x963C\n0xCDDB\t0x963A\n0xCDDC\t0x9643\n0xCDDD\t0x4FCD\n0xCDDE\t0x4FC5\n0xCDDF\t0x4FD3\n0xCDE0\t0x4FB2\n0xCDE1\t0x4FC9\n0xCDE2\t0x4FCB\n0xCDE3\t0x4FC1\n0xCDE4\t0x4FD4\n0xCDE5\t0x4FDC\n0xCDE6\t0x4FD9\n0xCDE7\t0x4FBB\n0xCDE8\t0x4FB3\n0xCDE9\t0x4FDB\n0xCDEA\t0x4FC7\n0xCDEB\t0x4FD6\n0xCDEC\t0x4FBA\n0xCDED\t0x4FC0\n0xCDEE\t0x4FB9\n0xCDEF\t0x4FEC\n0xCDF0\t0x5244\n0xCDF1\t0x5249\n0xCDF2\t0x52C0\n0xCDF3\t0x52C2\n0xCDF4\t0x533D\n0xCDF5\t0x537C\n0xCDF6\t0x5397\n0xCDF7\t0x5396\n0xCDF8\t0x5399\n0xCDF9\t0x5398\n0xCDFA\t0x54BA\n0xCDFB\t0x54A1\n0xCDFC\t0x54AD\n0xCDFD\t0x54A5\n0xCDFE\t0x54CF\n0xCE40\t0x54C3\n0xCE41\t0x830D\n0xCE42\t0x54B7\n0xCE43\t0x54AE\n0xCE44\t0x54D6\n0xCE45\t0x54B6\n0xCE46\t0x54C5\n0xCE47\t0x54C6\n0xCE48\t0x54A0\n0xCE49\t0x5470\n0xCE4A\t0x54BC\n0xCE4B\t0x54A2\n0xCE4C\t0x54BE\n0xCE4D\t0x5472\n0xCE4E\t0x54DE\n0xCE4F\t0x54B0\n0xCE50\t0x57B5\n0xCE51\t0x579E\n0xCE52\t0x579F\n0xCE53\t0x57A4\n0xCE54\t0x578C\n0xCE55\t0x5797\n0xCE56\t0x579D\n0xCE57\t0x579B\n0xCE58\t0x5794\n0xCE59\t0x5798\n0xCE5A\t0x578F\n0xCE5B\t0x5799\n0xCE5C\t0x57A5\n0xCE5D\t0x579A\n0xCE5E\t0x5795\n0xCE5F\t0x58F4\n0xCE60\t0x590D\n0xCE61\t0x5953\n0xCE62\t0x59E1\n0xCE63\t0x59DE\n0xCE64\t0x59EE\n0xCE65\t0x5A00\n0xCE66\t0x59F1\n0xCE67\t0x59DD\n0xCE68\t0x59FA\n0xCE69\t0x59FD\n0xCE6A\t0x59FC\n0xCE6B\t0x59F6\n0xCE6C\t0x59E4\n0xCE6D\t0x59F2\n0xCE6E\t0x59F7\n0xCE6F\t0x59DB\n0xCE70\t0x59E9\n0xCE71\t0x59F3\n0xCE72\t0x59F5\n0xCE73\t0x59E0\n0xCE74\t0x59FE\n0xCE75\t0x59F4\n0xCE76\t0x59ED\n0xCE77\t0x5BA8\n0xCE78\t0x5C4C\n0xCE79\t0x5CD0\n0xCE7A\t0x5CD8\n0xCE7B\t0x5CCC\n0xCE7C\t0x5CD7\n0xCE7D\t0x5CCB\n0xCE7E\t0x5CDB\n0xCEA1\t0x5CDE\n0xCEA2\t0x5CDA\n0xCEA3\t0x5CC9\n0xCEA4\t0x5CC7\n0xCEA5\t0x5CCA\n0xCEA6\t0x5CD6\n0xCEA7\t0x5CD3\n0xCEA8\t0x5CD4\n0xCEA9\t0x5CCF\n0xCEAA\t0x5CC8\n0xCEAB\t0x5CC6\n0xCEAC\t0x5CCE\n0xCEAD\t0x5CDF\n0xCEAE\t0x5CF8\n0xCEAF\t0x5DF9\n0xCEB0\t0x5E21\n0xCEB1\t0x5E22\n0xCEB2\t0x5E23\n0xCEB3\t0x5E20\n0xCEB4\t0x5E24\n0xCEB5\t0x5EB0\n0xCEB6\t0x5EA4\n0xCEB7\t0x5EA2\n0xCEB8\t0x5E9B\n0xCEB9\t0x5EA3\n0xCEBA\t0x5EA5\n0xCEBB\t0x5F07\n0xCEBC\t0x5F2E\n0xCEBD\t0x5F56\n0xCEBE\t0x5F86\n0xCEBF\t0x6037\n0xCEC0\t0x6039\n0xCEC1\t0x6054\n0xCEC2\t0x6072\n0xCEC3\t0x605E\n0xCEC4\t0x6045\n0xCEC5\t0x6053\n0xCEC6\t0x6047\n0xCEC7\t0x6049\n0xCEC8\t0x605B\n0xCEC9\t0x604C\n0xCECA\t0x6040\n0xCECB\t0x6042\n0xCECC\t0x605F\n0xCECD\t0x6024\n0xCECE\t0x6044\n0xCECF\t0x6058\n0xCED0\t0x6066\n0xCED1\t0x606E\n0xCED2\t0x6242\n0xCED3\t0x6243\n0xCED4\t0x62CF\n0xCED5\t0x630D\n0xCED6\t0x630B\n0xCED7\t0x62F5\n0xCED8\t0x630E\n0xCED9\t0x6303\n0xCEDA\t0x62EB\n0xCEDB\t0x62F9\n0xCEDC\t0x630F\n0xCEDD\t0x630C\n0xCEDE\t0x62F8\n0xCEDF\t0x62F6\n0xCEE0\t0x6300\n0xCEE1\t0x6313\n0xCEE2\t0x6314\n0xCEE3\t0x62FA\n0xCEE4\t0x6315\n0xCEE5\t0x62FB\n0xCEE6\t0x62F0\n0xCEE7\t0x6541\n0xCEE8\t0x6543\n0xCEE9\t0x65AA\n0xCEEA\t0x65BF\n0xCEEB\t0x6636\n0xCEEC\t0x6621\n0xCEED\t0x6632\n0xCEEE\t0x6635\n0xCEEF\t0x661C\n0xCEF0\t0x6626\n0xCEF1\t0x6622\n0xCEF2\t0x6633\n0xCEF3\t0x662B\n0xCEF4\t0x663A\n0xCEF5\t0x661D\n0xCEF6\t0x6634\n0xCEF7\t0x6639\n0xCEF8\t0x662E\n0xCEF9\t0x670F\n0xCEFA\t0x6710\n0xCEFB\t0x67C1\n0xCEFC\t0x67F2\n0xCEFD\t0x67C8\n0xCEFE\t0x67BA\n0xCF40\t0x67DC\n0xCF41\t0x67BB\n0xCF42\t0x67F8\n0xCF43\t0x67D8\n0xCF44\t0x67C0\n0xCF45\t0x67B7\n0xCF46\t0x67C5\n0xCF47\t0x67EB\n0xCF48\t0x67E4\n0xCF49\t0x67DF\n0xCF4A\t0x67B5\n0xCF4B\t0x67CD\n0xCF4C\t0x67B3\n0xCF4D\t0x67F7\n0xCF4E\t0x67F6\n0xCF4F\t0x67EE\n0xCF50\t0x67E3\n0xCF51\t0x67C2\n0xCF52\t0x67B9\n0xCF53\t0x67CE\n0xCF54\t0x67E7\n0xCF55\t0x67F0\n0xCF56\t0x67B2\n0xCF57\t0x67FC\n0xCF58\t0x67C6\n0xCF59\t0x67ED\n0xCF5A\t0x67CC\n0xCF5B\t0x67AE\n0xCF5C\t0x67E6\n0xCF5D\t0x67DB\n0xCF5E\t0x67FA\n0xCF5F\t0x67C9\n0xCF60\t0x67CA\n0xCF61\t0x67C3\n0xCF62\t0x67EA\n0xCF63\t0x67CB\n0xCF64\t0x6B28\n0xCF65\t0x6B82\n0xCF66\t0x6B84\n0xCF67\t0x6BB6\n0xCF68\t0x6BD6\n0xCF69\t0x6BD8\n0xCF6A\t0x6BE0\n0xCF6B\t0x6C20\n0xCF6C\t0x6C21\n0xCF6D\t0x6D28\n0xCF6E\t0x6D34\n0xCF6F\t0x6D2D\n0xCF70\t0x6D1F\n0xCF71\t0x6D3C\n0xCF72\t0x6D3F\n0xCF73\t0x6D12\n0xCF74\t0x6D0A\n0xCF75\t0x6CDA\n0xCF76\t0x6D33\n0xCF77\t0x6D04\n0xCF78\t0x6D19\n0xCF79\t0x6D3A\n0xCF7A\t0x6D1A\n0xCF7B\t0x6D11\n0xCF7C\t0x6D00\n0xCF7D\t0x6D1D\n0xCF7E\t0x6D42\n0xCFA1\t0x6D01\n0xCFA2\t0x6D18\n0xCFA3\t0x6D37\n0xCFA4\t0x6D03\n0xCFA5\t0x6D0F\n0xCFA6\t0x6D40\n0xCFA7\t0x6D07\n0xCFA8\t0x6D20\n0xCFA9\t0x6D2C\n0xCFAA\t0x6D08\n0xCFAB\t0x6D22\n0xCFAC\t0x6D09\n0xCFAD\t0x6D10\n0xCFAE\t0x70B7\n0xCFAF\t0x709F\n0xCFB0\t0x70BE\n0xCFB1\t0x70B1\n0xCFB2\t0x70B0\n0xCFB3\t0x70A1\n0xCFB4\t0x70B4\n0xCFB5\t0x70B5\n0xCFB6\t0x70A9\n0xCFB7\t0x7241\n0xCFB8\t0x7249\n0xCFB9\t0x724A\n0xCFBA\t0x726C\n0xCFBB\t0x7270\n0xCFBC\t0x7273\n0xCFBD\t0x726E\n0xCFBE\t0x72CA\n0xCFBF\t0x72E4\n0xCFC0\t0x72E8\n0xCFC1\t0x72EB\n0xCFC2\t0x72DF\n0xCFC3\t0x72EA\n0xCFC4\t0x72E6\n0xCFC5\t0x72E3\n0xCFC6\t0x7385\n0xCFC7\t0x73CC\n0xCFC8\t0x73C2\n0xCFC9\t0x73C8\n0xCFCA\t0x73C5\n0xCFCB\t0x73B9\n0xCFCC\t0x73B6\n0xCFCD\t0x73B5\n0xCFCE\t0x73B4\n0xCFCF\t0x73EB\n0xCFD0\t0x73BF\n0xCFD1\t0x73C7\n0xCFD2\t0x73BE\n0xCFD3\t0x73C3\n0xCFD4\t0x73C6\n0xCFD5\t0x73B8\n0xCFD6\t0x73CB\n0xCFD7\t0x74EC\n0xCFD8\t0x74EE\n0xCFD9\t0x752E\n0xCFDA\t0x7547\n0xCFDB\t0x7548\n0xCFDC\t0x75A7\n0xCFDD\t0x75AA\n0xCFDE\t0x7679\n0xCFDF\t0x76C4\n0xCFE0\t0x7708\n0xCFE1\t0x7703\n0xCFE2\t0x7704\n0xCFE3\t0x7705\n0xCFE4\t0x770A\n0xCFE5\t0x76F7\n0xCFE6\t0x76FB\n0xCFE7\t0x76FA\n0xCFE8\t0x77E7\n0xCFE9\t0x77E8\n0xCFEA\t0x7806\n0xCFEB\t0x7811\n0xCFEC\t0x7812\n0xCFED\t0x7805\n0xCFEE\t0x7810\n0xCFEF\t0x780F\n0xCFF0\t0x780E\n0xCFF1\t0x7809\n0xCFF2\t0x7803\n0xCFF3\t0x7813\n0xCFF4\t0x794A\n0xCFF5\t0x794C\n0xCFF6\t0x794B\n0xCFF7\t0x7945\n0xCFF8\t0x7944\n0xCFF9\t0x79D5\n0xCFFA\t0x79CD\n0xCFFB\t0x79CF\n0xCFFC\t0x79D6\n0xCFFD\t0x79CE\n0xCFFE\t0x7A80\n0xD040\t0x7A7E\n0xD041\t0x7AD1\n0xD042\t0x7B00\n0xD043\t0x7B01\n0xD044\t0x7C7A\n0xD045\t0x7C78\n0xD046\t0x7C79\n0xD047\t0x7C7F\n0xD048\t0x7C80\n0xD049\t0x7C81\n0xD04A\t0x7D03\n0xD04B\t0x7D08\n0xD04C\t0x7D01\n0xD04D\t0x7F58\n0xD04E\t0x7F91\n0xD04F\t0x7F8D\n0xD050\t0x7FBE\n0xD051\t0x8007\n0xD052\t0x800E\n0xD053\t0x800F\n0xD054\t0x8014\n0xD055\t0x8037\n0xD056\t0x80D8\n0xD057\t0x80C7\n0xD058\t0x80E0\n0xD059\t0x80D1\n0xD05A\t0x80C8\n0xD05B\t0x80C2\n0xD05C\t0x80D0\n0xD05D\t0x80C5\n0xD05E\t0x80E3\n0xD05F\t0x80D9\n0xD060\t0x80DC\n0xD061\t0x80CA\n0xD062\t0x80D5\n0xD063\t0x80C9\n0xD064\t0x80CF\n0xD065\t0x80D7\n0xD066\t0x80E6\n0xD067\t0x80CD\n0xD068\t0x81FF\n0xD069\t0x8221\n0xD06A\t0x8294\n0xD06B\t0x82D9\n0xD06C\t0x82FE\n0xD06D\t0x82F9\n0xD06E\t0x8307\n0xD06F\t0x82E8\n0xD070\t0x8300\n0xD071\t0x82D5\n0xD072\t0x833A\n0xD073\t0x82EB\n0xD074\t0x82D6\n0xD075\t0x82F4\n0xD076\t0x82EC\n0xD077\t0x82E1\n0xD078\t0x82F2\n0xD079\t0x82F5\n0xD07A\t0x830C\n0xD07B\t0x82FB\n0xD07C\t0x82F6\n0xD07D\t0x82F0\n0xD07E\t0x82EA\n0xD0A1\t0x82E4\n0xD0A2\t0x82E0\n0xD0A3\t0x82FA\n0xD0A4\t0x82F3\n0xD0A5\t0x82ED\n0xD0A6\t0x8677\n0xD0A7\t0x8674\n0xD0A8\t0x867C\n0xD0A9\t0x8673\n0xD0AA\t0x8841\n0xD0AB\t0x884E\n0xD0AC\t0x8867\n0xD0AD\t0x886A\n0xD0AE\t0x8869\n0xD0AF\t0x89D3\n0xD0B0\t0x8A04\n0xD0B1\t0x8A07\n0xD0B2\t0x8D72\n0xD0B3\t0x8FE3\n0xD0B4\t0x8FE1\n0xD0B5\t0x8FEE\n0xD0B6\t0x8FE0\n0xD0B7\t0x90F1\n0xD0B8\t0x90BD\n0xD0B9\t0x90BF\n0xD0BA\t0x90D5\n0xD0BB\t0x90C5\n0xD0BC\t0x90BE\n0xD0BD\t0x90C7\n0xD0BE\t0x90CB\n0xD0BF\t0x90C8\n0xD0C0\t0x91D4\n0xD0C1\t0x91D3\n0xD0C2\t0x9654\n0xD0C3\t0x964F\n0xD0C4\t0x9651\n0xD0C5\t0x9653\n0xD0C6\t0x964A\n0xD0C7\t0x964E\n0xD0C8\t0x501E\n0xD0C9\t0x5005\n0xD0CA\t0x5007\n0xD0CB\t0x5013\n0xD0CC\t0x5022\n0xD0CD\t0x5030\n0xD0CE\t0x501B\n0xD0CF\t0x4FF5\n0xD0D0\t0x4FF4\n0xD0D1\t0x5033\n0xD0D2\t0x5037\n0xD0D3\t0x502C\n0xD0D4\t0x4FF6\n0xD0D5\t0x4FF7\n0xD0D6\t0x5017\n0xD0D7\t0x501C\n0xD0D8\t0x5020\n0xD0D9\t0x5027\n0xD0DA\t0x5035\n0xD0DB\t0x502F\n0xD0DC\t0x5031\n0xD0DD\t0x500E\n0xD0DE\t0x515A\n0xD0DF\t0x5194\n0xD0E0\t0x5193\n0xD0E1\t0x51CA\n0xD0E2\t0x51C4\n0xD0E3\t0x51C5\n0xD0E4\t0x51C8\n0xD0E5\t0x51CE\n0xD0E6\t0x5261\n0xD0E7\t0x525A\n0xD0E8\t0x5252\n0xD0E9\t0x525E\n0xD0EA\t0x525F\n0xD0EB\t0x5255\n0xD0EC\t0x5262\n0xD0ED\t0x52CD\n0xD0EE\t0x530E\n0xD0EF\t0x539E\n0xD0F0\t0x5526\n0xD0F1\t0x54E2\n0xD0F2\t0x5517\n0xD0F3\t0x5512\n0xD0F4\t0x54E7\n0xD0F5\t0x54F3\n0xD0F6\t0x54E4\n0xD0F7\t0x551A\n0xD0F8\t0x54FF\n0xD0F9\t0x5504\n0xD0FA\t0x5508\n0xD0FB\t0x54EB\n0xD0FC\t0x5511\n0xD0FD\t0x5505\n0xD0FE\t0x54F1\n0xD140\t0x550A\n0xD141\t0x54FB\n0xD142\t0x54F7\n0xD143\t0x54F8\n0xD144\t0x54E0\n0xD145\t0x550E\n0xD146\t0x5503\n0xD147\t0x550B\n0xD148\t0x5701\n0xD149\t0x5702\n0xD14A\t0x57CC\n0xD14B\t0x5832\n0xD14C\t0x57D5\n0xD14D\t0x57D2\n0xD14E\t0x57BA\n0xD14F\t0x57C6\n0xD150\t0x57BD\n0xD151\t0x57BC\n0xD152\t0x57B8\n0xD153\t0x57B6\n0xD154\t0x57BF\n0xD155\t0x57C7\n0xD156\t0x57D0\n0xD157\t0x57B9\n0xD158\t0x57C1\n0xD159\t0x590E\n0xD15A\t0x594A\n0xD15B\t0x5A19\n0xD15C\t0x5A16\n0xD15D\t0x5A2D\n0xD15E\t0x5A2E\n0xD15F\t0x5A15\n0xD160\t0x5A0F\n0xD161\t0x5A17\n0xD162\t0x5A0A\n0xD163\t0x5A1E\n0xD164\t0x5A33\n0xD165\t0x5B6C\n0xD166\t0x5BA7\n0xD167\t0x5BAD\n0xD168\t0x5BAC\n0xD169\t0x5C03\n0xD16A\t0x5C56\n0xD16B\t0x5C54\n0xD16C\t0x5CEC\n0xD16D\t0x5CFF\n0xD16E\t0x5CEE\n0xD16F\t0x5CF1\n0xD170\t0x5CF7\n0xD171\t0x5D00\n0xD172\t0x5CF9\n0xD173\t0x5E29\n0xD174\t0x5E28\n0xD175\t0x5EA8\n0xD176\t0x5EAE\n0xD177\t0x5EAA\n0xD178\t0x5EAC\n0xD179\t0x5F33\n0xD17A\t0x5F30\n0xD17B\t0x5F67\n0xD17C\t0x605D\n0xD17D\t0x605A\n0xD17E\t0x6067\n0xD1A1\t0x6041\n0xD1A2\t0x60A2\n0xD1A3\t0x6088\n0xD1A4\t0x6080\n0xD1A5\t0x6092\n0xD1A6\t0x6081\n0xD1A7\t0x609D\n0xD1A8\t0x6083\n0xD1A9\t0x6095\n0xD1AA\t0x609B\n0xD1AB\t0x6097\n0xD1AC\t0x6087\n0xD1AD\t0x609C\n0xD1AE\t0x608E\n0xD1AF\t0x6219\n0xD1B0\t0x6246\n0xD1B1\t0x62F2\n0xD1B2\t0x6310\n0xD1B3\t0x6356\n0xD1B4\t0x632C\n0xD1B5\t0x6344\n0xD1B6\t0x6345\n0xD1B7\t0x6336\n0xD1B8\t0x6343\n0xD1B9\t0x63E4\n0xD1BA\t0x6339\n0xD1BB\t0x634B\n0xD1BC\t0x634A\n0xD1BD\t0x633C\n0xD1BE\t0x6329\n0xD1BF\t0x6341\n0xD1C0\t0x6334\n0xD1C1\t0x6358\n0xD1C2\t0x6354\n0xD1C3\t0x6359\n0xD1C4\t0x632D\n0xD1C5\t0x6347\n0xD1C6\t0x6333\n0xD1C7\t0x635A\n0xD1C8\t0x6351\n0xD1C9\t0x6338\n0xD1CA\t0x6357\n0xD1CB\t0x6340\n0xD1CC\t0x6348\n0xD1CD\t0x654A\n0xD1CE\t0x6546\n0xD1CF\t0x65C6\n0xD1D0\t0x65C3\n0xD1D1\t0x65C4\n0xD1D2\t0x65C2\n0xD1D3\t0x664A\n0xD1D4\t0x665F\n0xD1D5\t0x6647\n0xD1D6\t0x6651\n0xD1D7\t0x6712\n0xD1D8\t0x6713\n0xD1D9\t0x681F\n0xD1DA\t0x681A\n0xD1DB\t0x6849\n0xD1DC\t0x6832\n0xD1DD\t0x6833\n0xD1DE\t0x683B\n0xD1DF\t0x684B\n0xD1E0\t0x684F\n0xD1E1\t0x6816\n0xD1E2\t0x6831\n0xD1E3\t0x681C\n0xD1E4\t0x6835\n0xD1E5\t0x682B\n0xD1E6\t0x682D\n0xD1E7\t0x682F\n0xD1E8\t0x684E\n0xD1E9\t0x6844\n0xD1EA\t0x6834\n0xD1EB\t0x681D\n0xD1EC\t0x6812\n0xD1ED\t0x6814\n0xD1EE\t0x6826\n0xD1EF\t0x6828\n0xD1F0\t0x682E\n0xD1F1\t0x684D\n0xD1F2\t0x683A\n0xD1F3\t0x6825\n0xD1F4\t0x6820\n0xD1F5\t0x6B2C\n0xD1F6\t0x6B2F\n0xD1F7\t0x6B2D\n0xD1F8\t0x6B31\n0xD1F9\t0x6B34\n0xD1FA\t0x6B6D\n0xD1FB\t0x8082\n0xD1FC\t0x6B88\n0xD1FD\t0x6BE6\n0xD1FE\t0x6BE4\n0xD240\t0x6BE8\n0xD241\t0x6BE3\n0xD242\t0x6BE2\n0xD243\t0x6BE7\n0xD244\t0x6C25\n0xD245\t0x6D7A\n0xD246\t0x6D63\n0xD247\t0x6D64\n0xD248\t0x6D76\n0xD249\t0x6D0D\n0xD24A\t0x6D61\n0xD24B\t0x6D92\n0xD24C\t0x6D58\n0xD24D\t0x6D62\n0xD24E\t0x6D6D\n0xD24F\t0x6D6F\n0xD250\t0x6D91\n0xD251\t0x6D8D\n0xD252\t0x6DEF\n0xD253\t0x6D7F\n0xD254\t0x6D86\n0xD255\t0x6D5E\n0xD256\t0x6D67\n0xD257\t0x6D60\n0xD258\t0x6D97\n0xD259\t0x6D70\n0xD25A\t0x6D7C\n0xD25B\t0x6D5F\n0xD25C\t0x6D82\n0xD25D\t0x6D98\n0xD25E\t0x6D2F\n0xD25F\t0x6D68\n0xD260\t0x6D8B\n0xD261\t0x6D7E\n0xD262\t0x6D80\n0xD263\t0x6D84\n0xD264\t0x6D16\n0xD265\t0x6D83\n0xD266\t0x6D7B\n0xD267\t0x6D7D\n0xD268\t0x6D75\n0xD269\t0x6D90\n0xD26A\t0x70DC\n0xD26B\t0x70D3\n0xD26C\t0x70D1\n0xD26D\t0x70DD\n0xD26E\t0x70CB\n0xD26F\t0x7F39\n0xD270\t0x70E2\n0xD271\t0x70D7\n0xD272\t0x70D2\n0xD273\t0x70DE\n0xD274\t0x70E0\n0xD275\t0x70D4\n0xD276\t0x70CD\n0xD277\t0x70C5\n0xD278\t0x70C6\n0xD279\t0x70C7\n0xD27A\t0x70DA\n0xD27B\t0x70CE\n0xD27C\t0x70E1\n0xD27D\t0x7242\n0xD27E\t0x7278\n0xD2A1\t0x7277\n0xD2A2\t0x7276\n0xD2A3\t0x7300\n0xD2A4\t0x72FA\n0xD2A5\t0x72F4\n0xD2A6\t0x72FE\n0xD2A7\t0x72F6\n0xD2A8\t0x72F3\n0xD2A9\t0x72FB\n0xD2AA\t0x7301\n0xD2AB\t0x73D3\n0xD2AC\t0x73D9\n0xD2AD\t0x73E5\n0xD2AE\t0x73D6\n0xD2AF\t0x73BC\n0xD2B0\t0x73E7\n0xD2B1\t0x73E3\n0xD2B2\t0x73E9\n0xD2B3\t0x73DC\n0xD2B4\t0x73D2\n0xD2B5\t0x73DB\n0xD2B6\t0x73D4\n0xD2B7\t0x73DD\n0xD2B8\t0x73DA\n0xD2B9\t0x73D7\n0xD2BA\t0x73D8\n0xD2BB\t0x73E8\n0xD2BC\t0x74DE\n0xD2BD\t0x74DF\n0xD2BE\t0x74F4\n0xD2BF\t0x74F5\n0xD2C0\t0x7521\n0xD2C1\t0x755B\n0xD2C2\t0x755F\n0xD2C3\t0x75B0\n0xD2C4\t0x75C1\n0xD2C5\t0x75BB\n0xD2C6\t0x75C4\n0xD2C7\t0x75C0\n0xD2C8\t0x75BF\n0xD2C9\t0x75B6\n0xD2CA\t0x75BA\n0xD2CB\t0x768A\n0xD2CC\t0x76C9\n0xD2CD\t0x771D\n0xD2CE\t0x771B\n0xD2CF\t0x7710\n0xD2D0\t0x7713\n0xD2D1\t0x7712\n0xD2D2\t0x7723\n0xD2D3\t0x7711\n0xD2D4\t0x7715\n0xD2D5\t0x7719\n0xD2D6\t0x771A\n0xD2D7\t0x7722\n0xD2D8\t0x7727\n0xD2D9\t0x7823\n0xD2DA\t0x782C\n0xD2DB\t0x7822\n0xD2DC\t0x7835\n0xD2DD\t0x782F\n0xD2DE\t0x7828\n0xD2DF\t0x782E\n0xD2E0\t0x782B\n0xD2E1\t0x7821\n0xD2E2\t0x7829\n0xD2E3\t0x7833\n0xD2E4\t0x782A\n0xD2E5\t0x7831\n0xD2E6\t0x7954\n0xD2E7\t0x795B\n0xD2E8\t0x794F\n0xD2E9\t0x795C\n0xD2EA\t0x7953\n0xD2EB\t0x7952\n0xD2EC\t0x7951\n0xD2ED\t0x79EB\n0xD2EE\t0x79EC\n0xD2EF\t0x79E0\n0xD2F0\t0x79EE\n0xD2F1\t0x79ED\n0xD2F2\t0x79EA\n0xD2F3\t0x79DC\n0xD2F4\t0x79DE\n0xD2F5\t0x79DD\n0xD2F6\t0x7A86\n0xD2F7\t0x7A89\n0xD2F8\t0x7A85\n0xD2F9\t0x7A8B\n0xD2FA\t0x7A8C\n0xD2FB\t0x7A8A\n0xD2FC\t0x7A87\n0xD2FD\t0x7AD8\n0xD2FE\t0x7B10\n0xD340\t0x7B04\n0xD341\t0x7B13\n0xD342\t0x7B05\n0xD343\t0x7B0F\n0xD344\t0x7B08\n0xD345\t0x7B0A\n0xD346\t0x7B0E\n0xD347\t0x7B09\n0xD348\t0x7B12\n0xD349\t0x7C84\n0xD34A\t0x7C91\n0xD34B\t0x7C8A\n0xD34C\t0x7C8C\n0xD34D\t0x7C88\n0xD34E\t0x7C8D\n0xD34F\t0x7C85\n0xD350\t0x7D1E\n0xD351\t0x7D1D\n0xD352\t0x7D11\n0xD353\t0x7D0E\n0xD354\t0x7D18\n0xD355\t0x7D16\n0xD356\t0x7D13\n0xD357\t0x7D1F\n0xD358\t0x7D12\n0xD359\t0x7D0F\n0xD35A\t0x7D0C\n0xD35B\t0x7F5C\n0xD35C\t0x7F61\n0xD35D\t0x7F5E\n0xD35E\t0x7F60\n0xD35F\t0x7F5D\n0xD360\t0x7F5B\n0xD361\t0x7F96\n0xD362\t0x7F92\n0xD363\t0x7FC3\n0xD364\t0x7FC2\n0xD365\t0x7FC0\n0xD366\t0x8016\n0xD367\t0x803E\n0xD368\t0x8039\n0xD369\t0x80FA\n0xD36A\t0x80F2\n0xD36B\t0x80F9\n0xD36C\t0x80F5\n0xD36D\t0x8101\n0xD36E\t0x80FB\n0xD36F\t0x8100\n0xD370\t0x8201\n0xD371\t0x822F\n0xD372\t0x8225\n0xD373\t0x8333\n0xD374\t0x832D\n0xD375\t0x8344\n0xD376\t0x8319\n0xD377\t0x8351\n0xD378\t0x8325\n0xD379\t0x8356\n0xD37A\t0x833F\n0xD37B\t0x8341\n0xD37C\t0x8326\n0xD37D\t0x831C\n0xD37E\t0x8322\n0xD3A1\t0x8342\n0xD3A2\t0x834E\n0xD3A3\t0x831B\n0xD3A4\t0x832A\n0xD3A5\t0x8308\n0xD3A6\t0x833C\n0xD3A7\t0x834D\n0xD3A8\t0x8316\n0xD3A9\t0x8324\n0xD3AA\t0x8320\n0xD3AB\t0x8337\n0xD3AC\t0x832F\n0xD3AD\t0x8329\n0xD3AE\t0x8347\n0xD3AF\t0x8345\n0xD3B0\t0x834C\n0xD3B1\t0x8353\n0xD3B2\t0x831E\n0xD3B3\t0x832C\n0xD3B4\t0x834B\n0xD3B5\t0x8327\n0xD3B6\t0x8348\n0xD3B7\t0x8653\n0xD3B8\t0x8652\n0xD3B9\t0x86A2\n0xD3BA\t0x86A8\n0xD3BB\t0x8696\n0xD3BC\t0x868D\n0xD3BD\t0x8691\n0xD3BE\t0x869E\n0xD3BF\t0x8687\n0xD3C0\t0x8697\n0xD3C1\t0x8686\n0xD3C2\t0x868B\n0xD3C3\t0x869A\n0xD3C4\t0x8685\n0xD3C5\t0x86A5\n0xD3C6\t0x8699\n0xD3C7\t0x86A1\n0xD3C8\t0x86A7\n0xD3C9\t0x8695\n0xD3CA\t0x8698\n0xD3CB\t0x868E\n0xD3CC\t0x869D\n0xD3CD\t0x8690\n0xD3CE\t0x8694\n0xD3CF\t0x8843\n0xD3D0\t0x8844\n0xD3D1\t0x886D\n0xD3D2\t0x8875\n0xD3D3\t0x8876\n0xD3D4\t0x8872\n0xD3D5\t0x8880\n0xD3D6\t0x8871\n0xD3D7\t0x887F\n0xD3D8\t0x886F\n0xD3D9\t0x8883\n0xD3DA\t0x887E\n0xD3DB\t0x8874\n0xD3DC\t0x887C\n0xD3DD\t0x8A12\n0xD3DE\t0x8C47\n0xD3DF\t0x8C57\n0xD3E0\t0x8C7B\n0xD3E1\t0x8CA4\n0xD3E2\t0x8CA3\n0xD3E3\t0x8D76\n0xD3E4\t0x8D78\n0xD3E5\t0x8DB5\n0xD3E6\t0x8DB7\n0xD3E7\t0x8DB6\n0xD3E8\t0x8ED1\n0xD3E9\t0x8ED3\n0xD3EA\t0x8FFE\n0xD3EB\t0x8FF5\n0xD3EC\t0x9002\n0xD3ED\t0x8FFF\n0xD3EE\t0x8FFB\n0xD3EF\t0x9004\n0xD3F0\t0x8FFC\n0xD3F1\t0x8FF6\n0xD3F2\t0x90D6\n0xD3F3\t0x90E0\n0xD3F4\t0x90D9\n0xD3F5\t0x90DA\n0xD3F6\t0x90E3\n0xD3F7\t0x90DF\n0xD3F8\t0x90E5\n0xD3F9\t0x90D8\n0xD3FA\t0x90DB\n0xD3FB\t0x90D7\n0xD3FC\t0x90DC\n0xD3FD\t0x90E4\n0xD3FE\t0x9150\n0xD440\t0x914E\n0xD441\t0x914F\n0xD442\t0x91D5\n0xD443\t0x91E2\n0xD444\t0x91DA\n0xD445\t0x965C\n0xD446\t0x965F\n0xD447\t0x96BC\n0xD448\t0x98E3\n0xD449\t0x9ADF\n0xD44A\t0x9B2F\n0xD44B\t0x4E7F\n0xD44C\t0x5070\n0xD44D\t0x506A\n0xD44E\t0x5061\n0xD44F\t0x505E\n0xD450\t0x5060\n0xD451\t0x5053\n0xD452\t0x504B\n0xD453\t0x505D\n0xD454\t0x5072\n0xD455\t0x5048\n0xD456\t0x504D\n0xD457\t0x5041\n0xD458\t0x505B\n0xD459\t0x504A\n0xD45A\t0x5062\n0xD45B\t0x5015\n0xD45C\t0x5045\n0xD45D\t0x505F\n0xD45E\t0x5069\n0xD45F\t0x506B\n0xD460\t0x5063\n0xD461\t0x5064\n0xD462\t0x5046\n0xD463\t0x5040\n0xD464\t0x506E\n0xD465\t0x5073\n0xD466\t0x5057\n0xD467\t0x5051\n0xD468\t0x51D0\n0xD469\t0x526B\n0xD46A\t0x526D\n0xD46B\t0x526C\n0xD46C\t0x526E\n0xD46D\t0x52D6\n0xD46E\t0x52D3\n0xD46F\t0x532D\n0xD470\t0x539C\n0xD471\t0x5575\n0xD472\t0x5576\n0xD473\t0x553C\n0xD474\t0x554D\n0xD475\t0x5550\n0xD476\t0x5534\n0xD477\t0x552A\n0xD478\t0x5551\n0xD479\t0x5562\n0xD47A\t0x5536\n0xD47B\t0x5535\n0xD47C\t0x5530\n0xD47D\t0x5552\n0xD47E\t0x5545\n0xD4A1\t0x550C\n0xD4A2\t0x5532\n0xD4A3\t0x5565\n0xD4A4\t0x554E\n0xD4A5\t0x5539\n0xD4A6\t0x5548\n0xD4A7\t0x552D\n0xD4A8\t0x553B\n0xD4A9\t0x5540\n0xD4AA\t0x554B\n0xD4AB\t0x570A\n0xD4AC\t0x5707\n0xD4AD\t0x57FB\n0xD4AE\t0x5814\n0xD4AF\t0x57E2\n0xD4B0\t0x57F6\n0xD4B1\t0x57DC\n0xD4B2\t0x57F4\n0xD4B3\t0x5800\n0xD4B4\t0x57ED\n0xD4B5\t0x57FD\n0xD4B6\t0x5808\n0xD4B7\t0x57F8\n0xD4B8\t0x580B\n0xD4B9\t0x57F3\n0xD4BA\t0x57CF\n0xD4BB\t0x5807\n0xD4BC\t0x57EE\n0xD4BD\t0x57E3\n0xD4BE\t0x57F2\n0xD4BF\t0x57E5\n0xD4C0\t0x57EC\n0xD4C1\t0x57E1\n0xD4C2\t0x580E\n0xD4C3\t0x57FC\n0xD4C4\t0x5810\n0xD4C5\t0x57E7\n0xD4C6\t0x5801\n0xD4C7\t0x580C\n0xD4C8\t0x57F1\n0xD4C9\t0x57E9\n0xD4CA\t0x57F0\n0xD4CB\t0x580D\n0xD4CC\t0x5804\n0xD4CD\t0x595C\n0xD4CE\t0x5A60\n0xD4CF\t0x5A58\n0xD4D0\t0x5A55\n0xD4D1\t0x5A67\n0xD4D2\t0x5A5E\n0xD4D3\t0x5A38\n0xD4D4\t0x5A35\n0xD4D5\t0x5A6D\n0xD4D6\t0x5A50\n0xD4D7\t0x5A5F\n0xD4D8\t0x5A65\n0xD4D9\t0x5A6C\n0xD4DA\t0x5A53\n0xD4DB\t0x5A64\n0xD4DC\t0x5A57\n0xD4DD\t0x5A43\n0xD4DE\t0x5A5D\n0xD4DF\t0x5A52\n0xD4E0\t0x5A44\n0xD4E1\t0x5A5B\n0xD4E2\t0x5A48\n0xD4E3\t0x5A8E\n0xD4E4\t0x5A3E\n0xD4E5\t0x5A4D\n0xD4E6\t0x5A39\n0xD4E7\t0x5A4C\n0xD4E8\t0x5A70\n0xD4E9\t0x5A69\n0xD4EA\t0x5A47\n0xD4EB\t0x5A51\n0xD4EC\t0x5A56\n0xD4ED\t0x5A42\n0xD4EE\t0x5A5C\n0xD4EF\t0x5B72\n0xD4F0\t0x5B6E\n0xD4F1\t0x5BC1\n0xD4F2\t0x5BC0\n0xD4F3\t0x5C59\n0xD4F4\t0x5D1E\n0xD4F5\t0x5D0B\n0xD4F6\t0x5D1D\n0xD4F7\t0x5D1A\n0xD4F8\t0x5D20\n0xD4F9\t0x5D0C\n0xD4FA\t0x5D28\n0xD4FB\t0x5D0D\n0xD4FC\t0x5D26\n0xD4FD\t0x5D25\n0xD4FE\t0x5D0F\n0xD540\t0x5D30\n0xD541\t0x5D12\n0xD542\t0x5D23\n0xD543\t0x5D1F\n0xD544\t0x5D2E\n0xD545\t0x5E3E\n0xD546\t0x5E34\n0xD547\t0x5EB1\n0xD548\t0x5EB4\n0xD549\t0x5EB9\n0xD54A\t0x5EB2\n0xD54B\t0x5EB3\n0xD54C\t0x5F36\n0xD54D\t0x5F38\n0xD54E\t0x5F9B\n0xD54F\t0x5F96\n0xD550\t0x5F9F\n0xD551\t0x608A\n0xD552\t0x6090\n0xD553\t0x6086\n0xD554\t0x60BE\n0xD555\t0x60B0\n0xD556\t0x60BA\n0xD557\t0x60D3\n0xD558\t0x60D4\n0xD559\t0x60CF\n0xD55A\t0x60E4\n0xD55B\t0x60D9\n0xD55C\t0x60DD\n0xD55D\t0x60C8\n0xD55E\t0x60B1\n0xD55F\t0x60DB\n0xD560\t0x60B7\n0xD561\t0x60CA\n0xD562\t0x60BF\n0xD563\t0x60C3\n0xD564\t0x60CD\n0xD565\t0x60C0\n0xD566\t0x6332\n0xD567\t0x6365\n0xD568\t0x638A\n0xD569\t0x6382\n0xD56A\t0x637D\n0xD56B\t0x63BD\n0xD56C\t0x639E\n0xD56D\t0x63AD\n0xD56E\t0x639D\n0xD56F\t0x6397\n0xD570\t0x63AB\n0xD571\t0x638E\n0xD572\t0x636F\n0xD573\t0x6387\n0xD574\t0x6390\n0xD575\t0x636E\n0xD576\t0x63AF\n0xD577\t0x6375\n0xD578\t0x639C\n0xD579\t0x636D\n0xD57A\t0x63AE\n0xD57B\t0x637C\n0xD57C\t0x63A4\n0xD57D\t0x633B\n0xD57E\t0x639F\n0xD5A1\t0x6378\n0xD5A2\t0x6385\n0xD5A3\t0x6381\n0xD5A4\t0x6391\n0xD5A5\t0x638D\n0xD5A6\t0x6370\n0xD5A7\t0x6553\n0xD5A8\t0x65CD\n0xD5A9\t0x6665\n0xD5AA\t0x6661\n0xD5AB\t0x665B\n0xD5AC\t0x6659\n0xD5AD\t0x665C\n0xD5AE\t0x6662\n0xD5AF\t0x6718\n0xD5B0\t0x6879\n0xD5B1\t0x6887\n0xD5B2\t0x6890\n0xD5B3\t0x689C\n0xD5B4\t0x686D\n0xD5B5\t0x686E\n0xD5B6\t0x68AE\n0xD5B7\t0x68AB\n0xD5B8\t0x6956\n0xD5B9\t0x686F\n0xD5BA\t0x68A3\n0xD5BB\t0x68AC\n0xD5BC\t0x68A9\n0xD5BD\t0x6875\n0xD5BE\t0x6874\n0xD5BF\t0x68B2\n0xD5C0\t0x688F\n0xD5C1\t0x6877\n0xD5C2\t0x6892\n0xD5C3\t0x687C\n0xD5C4\t0x686B\n0xD5C5\t0x6872\n0xD5C6\t0x68AA\n0xD5C7\t0x6880\n0xD5C8\t0x6871\n0xD5C9\t0x687E\n0xD5CA\t0x689B\n0xD5CB\t0x6896\n0xD5CC\t0x688B\n0xD5CD\t0x68A0\n0xD5CE\t0x6889\n0xD5CF\t0x68A4\n0xD5D0\t0x6878\n0xD5D1\t0x687B\n0xD5D2\t0x6891\n0xD5D3\t0x688C\n0xD5D4\t0x688A\n0xD5D5\t0x687D\n0xD5D6\t0x6B36\n0xD5D7\t0x6B33\n0xD5D8\t0x6B37\n0xD5D9\t0x6B38\n0xD5DA\t0x6B91\n0xD5DB\t0x6B8F\n0xD5DC\t0x6B8D\n0xD5DD\t0x6B8E\n0xD5DE\t0x6B8C\n0xD5DF\t0x6C2A\n0xD5E0\t0x6DC0\n0xD5E1\t0x6DAB\n0xD5E2\t0x6DB4\n0xD5E3\t0x6DB3\n0xD5E4\t0x6E74\n0xD5E5\t0x6DAC\n0xD5E6\t0x6DE9\n0xD5E7\t0x6DE2\n0xD5E8\t0x6DB7\n0xD5E9\t0x6DF6\n0xD5EA\t0x6DD4\n0xD5EB\t0x6E00\n0xD5EC\t0x6DC8\n0xD5ED\t0x6DE0\n0xD5EE\t0x6DDF\n0xD5EF\t0x6DD6\n0xD5F0\t0x6DBE\n0xD5F1\t0x6DE5\n0xD5F2\t0x6DDC\n0xD5F3\t0x6DDD\n0xD5F4\t0x6DDB\n0xD5F5\t0x6DF4\n0xD5F6\t0x6DCA\n0xD5F7\t0x6DBD\n0xD5F8\t0x6DED\n0xD5F9\t0x6DF0\n0xD5FA\t0x6DBA\n0xD5FB\t0x6DD5\n0xD5FC\t0x6DC2\n0xD5FD\t0x6DCF\n0xD5FE\t0x6DC9\n0xD640\t0x6DD0\n0xD641\t0x6DF2\n0xD642\t0x6DD3\n0xD643\t0x6DFD\n0xD644\t0x6DD7\n0xD645\t0x6DCD\n0xD646\t0x6DE3\n0xD647\t0x6DBB\n0xD648\t0x70FA\n0xD649\t0x710D\n0xD64A\t0x70F7\n0xD64B\t0x7117\n0xD64C\t0x70F4\n0xD64D\t0x710C\n0xD64E\t0x70F0\n0xD64F\t0x7104\n0xD650\t0x70F3\n0xD651\t0x7110\n0xD652\t0x70FC\n0xD653\t0x70FF\n0xD654\t0x7106\n0xD655\t0x7113\n0xD656\t0x7100\n0xD657\t0x70F8\n0xD658\t0x70F6\n0xD659\t0x710B\n0xD65A\t0x7102\n0xD65B\t0x710E\n0xD65C\t0x727E\n0xD65D\t0x727B\n0xD65E\t0x727C\n0xD65F\t0x727F\n0xD660\t0x731D\n0xD661\t0x7317\n0xD662\t0x7307\n0xD663\t0x7311\n0xD664\t0x7318\n0xD665\t0x730A\n0xD666\t0x7308\n0xD667\t0x72FF\n0xD668\t0x730F\n0xD669\t0x731E\n0xD66A\t0x7388\n0xD66B\t0x73F6\n0xD66C\t0x73F8\n0xD66D\t0x73F5\n0xD66E\t0x7404\n0xD66F\t0x7401\n0xD670\t0x73FD\n0xD671\t0x7407\n0xD672\t0x7400\n0xD673\t0x73FA\n0xD674\t0x73FC\n0xD675\t0x73FF\n0xD676\t0x740C\n0xD677\t0x740B\n0xD678\t0x73F4\n0xD679\t0x7408\n0xD67A\t0x7564\n0xD67B\t0x7563\n0xD67C\t0x75CE\n0xD67D\t0x75D2\n0xD67E\t0x75CF\n0xD6A1\t0x75CB\n0xD6A2\t0x75CC\n0xD6A3\t0x75D1\n0xD6A4\t0x75D0\n0xD6A5\t0x768F\n0xD6A6\t0x7689\n0xD6A7\t0x76D3\n0xD6A8\t0x7739\n0xD6A9\t0x772F\n0xD6AA\t0x772D\n0xD6AB\t0x7731\n0xD6AC\t0x7732\n0xD6AD\t0x7734\n0xD6AE\t0x7733\n0xD6AF\t0x773D\n0xD6B0\t0x7725\n0xD6B1\t0x773B\n0xD6B2\t0x7735\n0xD6B3\t0x7848\n0xD6B4\t0x7852\n0xD6B5\t0x7849\n0xD6B6\t0x784D\n0xD6B7\t0x784A\n0xD6B8\t0x784C\n0xD6B9\t0x7826\n0xD6BA\t0x7845\n0xD6BB\t0x7850\n0xD6BC\t0x7964\n0xD6BD\t0x7967\n0xD6BE\t0x7969\n0xD6BF\t0x796A\n0xD6C0\t0x7963\n0xD6C1\t0x796B\n0xD6C2\t0x7961\n0xD6C3\t0x79BB\n0xD6C4\t0x79FA\n0xD6C5\t0x79F8\n0xD6C6\t0x79F6\n0xD6C7\t0x79F7\n0xD6C8\t0x7A8F\n0xD6C9\t0x7A94\n0xD6CA\t0x7A90\n0xD6CB\t0x7B35\n0xD6CC\t0x7B47\n0xD6CD\t0x7B34\n0xD6CE\t0x7B25\n0xD6CF\t0x7B30\n0xD6D0\t0x7B22\n0xD6D1\t0x7B24\n0xD6D2\t0x7B33\n0xD6D3\t0x7B18\n0xD6D4\t0x7B2A\n0xD6D5\t0x7B1D\n0xD6D6\t0x7B31\n0xD6D7\t0x7B2B\n0xD6D8\t0x7B2D\n0xD6D9\t0x7B2F\n0xD6DA\t0x7B32\n0xD6DB\t0x7B38\n0xD6DC\t0x7B1A\n0xD6DD\t0x7B23\n0xD6DE\t0x7C94\n0xD6DF\t0x7C98\n0xD6E0\t0x7C96\n0xD6E1\t0x7CA3\n0xD6E2\t0x7D35\n0xD6E3\t0x7D3D\n0xD6E4\t0x7D38\n0xD6E5\t0x7D36\n0xD6E6\t0x7D3A\n0xD6E7\t0x7D45\n0xD6E8\t0x7D2C\n0xD6E9\t0x7D29\n0xD6EA\t0x7D41\n0xD6EB\t0x7D47\n0xD6EC\t0x7D3E\n0xD6ED\t0x7D3F\n0xD6EE\t0x7D4A\n0xD6EF\t0x7D3B\n0xD6F0\t0x7D28\n0xD6F1\t0x7F63\n0xD6F2\t0x7F95\n0xD6F3\t0x7F9C\n0xD6F4\t0x7F9D\n0xD6F5\t0x7F9B\n0xD6F6\t0x7FCA\n0xD6F7\t0x7FCB\n0xD6F8\t0x7FCD\n0xD6F9\t0x7FD0\n0xD6FA\t0x7FD1\n0xD6FB\t0x7FC7\n0xD6FC\t0x7FCF\n0xD6FD\t0x7FC9\n0xD6FE\t0x801F\n0xD740\t0x801E\n0xD741\t0x801B\n0xD742\t0x8047\n0xD743\t0x8043\n0xD744\t0x8048\n0xD745\t0x8118\n0xD746\t0x8125\n0xD747\t0x8119\n0xD748\t0x811B\n0xD749\t0x812D\n0xD74A\t0x811F\n0xD74B\t0x812C\n0xD74C\t0x811E\n0xD74D\t0x8121\n0xD74E\t0x8115\n0xD74F\t0x8127\n0xD750\t0x811D\n0xD751\t0x8122\n0xD752\t0x8211\n0xD753\t0x8238\n0xD754\t0x8233\n0xD755\t0x823A\n0xD756\t0x8234\n0xD757\t0x8232\n0xD758\t0x8274\n0xD759\t0x8390\n0xD75A\t0x83A3\n0xD75B\t0x83A8\n0xD75C\t0x838D\n0xD75D\t0x837A\n0xD75E\t0x8373\n0xD75F\t0x83A4\n0xD760\t0x8374\n0xD761\t0x838F\n0xD762\t0x8381\n0xD763\t0x8395\n0xD764\t0x8399\n0xD765\t0x8375\n0xD766\t0x8394\n0xD767\t0x83A9\n0xD768\t0x837D\n0xD769\t0x8383\n0xD76A\t0x838C\n0xD76B\t0x839D\n0xD76C\t0x839B\n0xD76D\t0x83AA\n0xD76E\t0x838B\n0xD76F\t0x837E\n0xD770\t0x83A5\n0xD771\t0x83AF\n0xD772\t0x8388\n0xD773\t0x8397\n0xD774\t0x83B0\n0xD775\t0x837F\n0xD776\t0x83A6\n0xD777\t0x8387\n0xD778\t0x83AE\n0xD779\t0x8376\n0xD77A\t0x839A\n0xD77B\t0x8659\n0xD77C\t0x8656\n0xD77D\t0x86BF\n0xD77E\t0x86B7\n0xD7A1\t0x86C2\n0xD7A2\t0x86C1\n0xD7A3\t0x86C5\n0xD7A4\t0x86BA\n0xD7A5\t0x86B0\n0xD7A6\t0x86C8\n0xD7A7\t0x86B9\n0xD7A8\t0x86B3\n0xD7A9\t0x86B8\n0xD7AA\t0x86CC\n0xD7AB\t0x86B4\n0xD7AC\t0x86BB\n0xD7AD\t0x86BC\n0xD7AE\t0x86C3\n0xD7AF\t0x86BD\n0xD7B0\t0x86BE\n0xD7B1\t0x8852\n0xD7B2\t0x8889\n0xD7B3\t0x8895\n0xD7B4\t0x88A8\n0xD7B5\t0x88A2\n0xD7B6\t0x88AA\n0xD7B7\t0x889A\n0xD7B8\t0x8891\n0xD7B9\t0x88A1\n0xD7BA\t0x889F\n0xD7BB\t0x8898\n0xD7BC\t0x88A7\n0xD7BD\t0x8899\n0xD7BE\t0x889B\n0xD7BF\t0x8897\n0xD7C0\t0x88A4\n0xD7C1\t0x88AC\n0xD7C2\t0x888C\n0xD7C3\t0x8893\n0xD7C4\t0x888E\n0xD7C5\t0x8982\n0xD7C6\t0x89D6\n0xD7C7\t0x89D9\n0xD7C8\t0x89D5\n0xD7C9\t0x8A30\n0xD7CA\t0x8A27\n0xD7CB\t0x8A2C\n0xD7CC\t0x8A1E\n0xD7CD\t0x8C39\n0xD7CE\t0x8C3B\n0xD7CF\t0x8C5C\n0xD7D0\t0x8C5D\n0xD7D1\t0x8C7D\n0xD7D2\t0x8CA5\n0xD7D3\t0x8D7D\n0xD7D4\t0x8D7B\n0xD7D5\t0x8D79\n0xD7D6\t0x8DBC\n0xD7D7\t0x8DC2\n0xD7D8\t0x8DB9\n0xD7D9\t0x8DBF\n0xD7DA\t0x8DC1\n0xD7DB\t0x8ED8\n0xD7DC\t0x8EDE\n0xD7DD\t0x8EDD\n0xD7DE\t0x8EDC\n0xD7DF\t0x8ED7\n0xD7E0\t0x8EE0\n0xD7E1\t0x8EE1\n0xD7E2\t0x9024\n0xD7E3\t0x900B\n0xD7E4\t0x9011\n0xD7E5\t0x901C\n0xD7E6\t0x900C\n0xD7E7\t0x9021\n0xD7E8\t0x90EF\n0xD7E9\t0x90EA\n0xD7EA\t0x90F0\n0xD7EB\t0x90F4\n0xD7EC\t0x90F2\n0xD7ED\t0x90F3\n0xD7EE\t0x90D4\n0xD7EF\t0x90EB\n0xD7F0\t0x90EC\n0xD7F1\t0x90E9\n0xD7F2\t0x9156\n0xD7F3\t0x9158\n0xD7F4\t0x915A\n0xD7F5\t0x9153\n0xD7F6\t0x9155\n0xD7F7\t0x91EC\n0xD7F8\t0x91F4\n0xD7F9\t0x91F1\n0xD7FA\t0x91F3\n0xD7FB\t0x91F8\n0xD7FC\t0x91E4\n0xD7FD\t0x91F9\n0xD7FE\t0x91EA\n0xD840\t0x91EB\n0xD841\t0x91F7\n0xD842\t0x91E8\n0xD843\t0x91EE\n0xD844\t0x957A\n0xD845\t0x9586\n0xD846\t0x9588\n0xD847\t0x967C\n0xD848\t0x966D\n0xD849\t0x966B\n0xD84A\t0x9671\n0xD84B\t0x966F\n0xD84C\t0x96BF\n0xD84D\t0x976A\n0xD84E\t0x9804\n0xD84F\t0x98E5\n0xD850\t0x9997\n0xD851\t0x509B\n0xD852\t0x5095\n0xD853\t0x5094\n0xD854\t0x509E\n0xD855\t0x508B\n0xD856\t0x50A3\n0xD857\t0x5083\n0xD858\t0x508C\n0xD859\t0x508E\n0xD85A\t0x509D\n0xD85B\t0x5068\n0xD85C\t0x509C\n0xD85D\t0x5092\n0xD85E\t0x5082\n0xD85F\t0x5087\n0xD860\t0x515F\n0xD861\t0x51D4\n0xD862\t0x5312\n0xD863\t0x5311\n0xD864\t0x53A4\n0xD865\t0x53A7\n0xD866\t0x5591\n0xD867\t0x55A8\n0xD868\t0x55A5\n0xD869\t0x55AD\n0xD86A\t0x5577\n0xD86B\t0x5645\n0xD86C\t0x55A2\n0xD86D\t0x5593\n0xD86E\t0x5588\n0xD86F\t0x558F\n0xD870\t0x55B5\n0xD871\t0x5581\n0xD872\t0x55A3\n0xD873\t0x5592\n0xD874\t0x55A4\n0xD875\t0x557D\n0xD876\t0x558C\n0xD877\t0x55A6\n0xD878\t0x557F\n0xD879\t0x5595\n0xD87A\t0x55A1\n0xD87B\t0x558E\n0xD87C\t0x570C\n0xD87D\t0x5829\n0xD87E\t0x5837\n0xD8A1\t0x5819\n0xD8A2\t0x581E\n0xD8A3\t0x5827\n0xD8A4\t0x5823\n0xD8A5\t0x5828\n0xD8A6\t0x57F5\n0xD8A7\t0x5848\n0xD8A8\t0x5825\n0xD8A9\t0x581C\n0xD8AA\t0x581B\n0xD8AB\t0x5833\n0xD8AC\t0x583F\n0xD8AD\t0x5836\n0xD8AE\t0x582E\n0xD8AF\t0x5839\n0xD8B0\t0x5838\n0xD8B1\t0x582D\n0xD8B2\t0x582C\n0xD8B3\t0x583B\n0xD8B4\t0x5961\n0xD8B5\t0x5AAF\n0xD8B6\t0x5A94\n0xD8B7\t0x5A9F\n0xD8B8\t0x5A7A\n0xD8B9\t0x5AA2\n0xD8BA\t0x5A9E\n0xD8BB\t0x5A78\n0xD8BC\t0x5AA6\n0xD8BD\t0x5A7C\n0xD8BE\t0x5AA5\n0xD8BF\t0x5AAC\n0xD8C0\t0x5A95\n0xD8C1\t0x5AAE\n0xD8C2\t0x5A37\n0xD8C3\t0x5A84\n0xD8C4\t0x5A8A\n0xD8C5\t0x5A97\n0xD8C6\t0x5A83\n0xD8C7\t0x5A8B\n0xD8C8\t0x5AA9\n0xD8C9\t0x5A7B\n0xD8CA\t0x5A7D\n0xD8CB\t0x5A8C\n0xD8CC\t0x5A9C\n0xD8CD\t0x5A8F\n0xD8CE\t0x5A93\n0xD8CF\t0x5A9D\n0xD8D0\t0x5BEA\n0xD8D1\t0x5BCD\n0xD8D2\t0x5BCB\n0xD8D3\t0x5BD4\n0xD8D4\t0x5BD1\n0xD8D5\t0x5BCA\n0xD8D6\t0x5BCE\n0xD8D7\t0x5C0C\n0xD8D8\t0x5C30\n0xD8D9\t0x5D37\n0xD8DA\t0x5D43\n0xD8DB\t0x5D6B\n0xD8DC\t0x5D41\n0xD8DD\t0x5D4B\n0xD8DE\t0x5D3F\n0xD8DF\t0x5D35\n0xD8E0\t0x5D51\n0xD8E1\t0x5D4E\n0xD8E2\t0x5D55\n0xD8E3\t0x5D33\n0xD8E4\t0x5D3A\n0xD8E5\t0x5D52\n0xD8E6\t0x5D3D\n0xD8E7\t0x5D31\n0xD8E8\t0x5D59\n0xD8E9\t0x5D42\n0xD8EA\t0x5D39\n0xD8EB\t0x5D49\n0xD8EC\t0x5D38\n0xD8ED\t0x5D3C\n0xD8EE\t0x5D32\n0xD8EF\t0x5D36\n0xD8F0\t0x5D40\n0xD8F1\t0x5D45\n0xD8F2\t0x5E44\n0xD8F3\t0x5E41\n0xD8F4\t0x5F58\n0xD8F5\t0x5FA6\n0xD8F6\t0x5FA5\n0xD8F7\t0x5FAB\n0xD8F8\t0x60C9\n0xD8F9\t0x60B9\n0xD8FA\t0x60CC\n0xD8FB\t0x60E2\n0xD8FC\t0x60CE\n0xD8FD\t0x60C4\n0xD8FE\t0x6114\n0xD940\t0x60F2\n0xD941\t0x610A\n0xD942\t0x6116\n0xD943\t0x6105\n0xD944\t0x60F5\n0xD945\t0x6113\n0xD946\t0x60F8\n0xD947\t0x60FC\n0xD948\t0x60FE\n0xD949\t0x60C1\n0xD94A\t0x6103\n0xD94B\t0x6118\n0xD94C\t0x611D\n0xD94D\t0x6110\n0xD94E\t0x60FF\n0xD94F\t0x6104\n0xD950\t0x610B\n0xD951\t0x624A\n0xD952\t0x6394\n0xD953\t0x63B1\n0xD954\t0x63B0\n0xD955\t0x63CE\n0xD956\t0x63E5\n0xD957\t0x63E8\n0xD958\t0x63EF\n0xD959\t0x63C3\n0xD95A\t0x649D\n0xD95B\t0x63F3\n0xD95C\t0x63CA\n0xD95D\t0x63E0\n0xD95E\t0x63F6\n0xD95F\t0x63D5\n0xD960\t0x63F2\n0xD961\t0x63F5\n0xD962\t0x6461\n0xD963\t0x63DF\n0xD964\t0x63BE\n0xD965\t0x63DD\n0xD966\t0x63DC\n0xD967\t0x63C4\n0xD968\t0x63D8\n0xD969\t0x63D3\n0xD96A\t0x63C2\n0xD96B\t0x63C7\n0xD96C\t0x63CC\n0xD96D\t0x63CB\n0xD96E\t0x63C8\n0xD96F\t0x63F0\n0xD970\t0x63D7\n0xD971\t0x63D9\n0xD972\t0x6532\n0xD973\t0x6567\n0xD974\t0x656A\n0xD975\t0x6564\n0xD976\t0x655C\n0xD977\t0x6568\n0xD978\t0x6565\n0xD979\t0x658C\n0xD97A\t0x659D\n0xD97B\t0x659E\n0xD97C\t0x65AE\n0xD97D\t0x65D0\n0xD97E\t0x65D2\n0xD9A1\t0x667C\n0xD9A2\t0x666C\n0xD9A3\t0x667B\n0xD9A4\t0x6680\n0xD9A5\t0x6671\n0xD9A6\t0x6679\n0xD9A7\t0x666A\n0xD9A8\t0x6672\n0xD9A9\t0x6701\n0xD9AA\t0x690C\n0xD9AB\t0x68D3\n0xD9AC\t0x6904\n0xD9AD\t0x68DC\n0xD9AE\t0x692A\n0xD9AF\t0x68EC\n0xD9B0\t0x68EA\n0xD9B1\t0x68F1\n0xD9B2\t0x690F\n0xD9B3\t0x68D6\n0xD9B4\t0x68F7\n0xD9B5\t0x68EB\n0xD9B6\t0x68E4\n0xD9B7\t0x68F6\n0xD9B8\t0x6913\n0xD9B9\t0x6910\n0xD9BA\t0x68F3\n0xD9BB\t0x68E1\n0xD9BC\t0x6907\n0xD9BD\t0x68CC\n0xD9BE\t0x6908\n0xD9BF\t0x6970\n0xD9C0\t0x68B4\n0xD9C1\t0x6911\n0xD9C2\t0x68EF\n0xD9C3\t0x68C6\n0xD9C4\t0x6914\n0xD9C5\t0x68F8\n0xD9C6\t0x68D0\n0xD9C7\t0x68FD\n0xD9C8\t0x68FC\n0xD9C9\t0x68E8\n0xD9CA\t0x690B\n0xD9CB\t0x690A\n0xD9CC\t0x6917\n0xD9CD\t0x68CE\n0xD9CE\t0x68C8\n0xD9CF\t0x68DD\n0xD9D0\t0x68DE\n0xD9D1\t0x68E6\n0xD9D2\t0x68F4\n0xD9D3\t0x68D1\n0xD9D4\t0x6906\n0xD9D5\t0x68D4\n0xD9D6\t0x68E9\n0xD9D7\t0x6915\n0xD9D8\t0x6925\n0xD9D9\t0x68C7\n0xD9DA\t0x6B39\n0xD9DB\t0x6B3B\n0xD9DC\t0x6B3F\n0xD9DD\t0x6B3C\n0xD9DE\t0x6B94\n0xD9DF\t0x6B97\n0xD9E0\t0x6B99\n0xD9E1\t0x6B95\n0xD9E2\t0x6BBD\n0xD9E3\t0x6BF0\n0xD9E4\t0x6BF2\n0xD9E5\t0x6BF3\n0xD9E6\t0x6C30\n0xD9E7\t0x6DFC\n0xD9E8\t0x6E46\n0xD9E9\t0x6E47\n0xD9EA\t0x6E1F\n0xD9EB\t0x6E49\n0xD9EC\t0x6E88\n0xD9ED\t0x6E3C\n0xD9EE\t0x6E3D\n0xD9EF\t0x6E45\n0xD9F0\t0x6E62\n0xD9F1\t0x6E2B\n0xD9F2\t0x6E3F\n0xD9F3\t0x6E41\n0xD9F4\t0x6E5D\n0xD9F5\t0x6E73\n0xD9F6\t0x6E1C\n0xD9F7\t0x6E33\n0xD9F8\t0x6E4B\n0xD9F9\t0x6E40\n0xD9FA\t0x6E51\n0xD9FB\t0x6E3B\n0xD9FC\t0x6E03\n0xD9FD\t0x6E2E\n0xD9FE\t0x6E5E\n0xDA40\t0x6E68\n0xDA41\t0x6E5C\n0xDA42\t0x6E61\n0xDA43\t0x6E31\n0xDA44\t0x6E28\n0xDA45\t0x6E60\n0xDA46\t0x6E71\n0xDA47\t0x6E6B\n0xDA48\t0x6E39\n0xDA49\t0x6E22\n0xDA4A\t0x6E30\n0xDA4B\t0x6E53\n0xDA4C\t0x6E65\n0xDA4D\t0x6E27\n0xDA4E\t0x6E78\n0xDA4F\t0x6E64\n0xDA50\t0x6E77\n0xDA51\t0x6E55\n0xDA52\t0x6E79\n0xDA53\t0x6E52\n0xDA54\t0x6E66\n0xDA55\t0x6E35\n0xDA56\t0x6E36\n0xDA57\t0x6E5A\n0xDA58\t0x7120\n0xDA59\t0x711E\n0xDA5A\t0x712F\n0xDA5B\t0x70FB\n0xDA5C\t0x712E\n0xDA5D\t0x7131\n0xDA5E\t0x7123\n0xDA5F\t0x7125\n0xDA60\t0x7122\n0xDA61\t0x7132\n0xDA62\t0x711F\n0xDA63\t0x7128\n0xDA64\t0x713A\n0xDA65\t0x711B\n0xDA66\t0x724B\n0xDA67\t0x725A\n0xDA68\t0x7288\n0xDA69\t0x7289\n0xDA6A\t0x7286\n0xDA6B\t0x7285\n0xDA6C\t0x728B\n0xDA6D\t0x7312\n0xDA6E\t0x730B\n0xDA6F\t0x7330\n0xDA70\t0x7322\n0xDA71\t0x7331\n0xDA72\t0x7333\n0xDA73\t0x7327\n0xDA74\t0x7332\n0xDA75\t0x732D\n0xDA76\t0x7326\n0xDA77\t0x7323\n0xDA78\t0x7335\n0xDA79\t0x730C\n0xDA7A\t0x742E\n0xDA7B\t0x742C\n0xDA7C\t0x7430\n0xDA7D\t0x742B\n0xDA7E\t0x7416\n0xDAA1\t0x741A\n0xDAA2\t0x7421\n0xDAA3\t0x742D\n0xDAA4\t0x7431\n0xDAA5\t0x7424\n0xDAA6\t0x7423\n0xDAA7\t0x741D\n0xDAA8\t0x7429\n0xDAA9\t0x7420\n0xDAAA\t0x7432\n0xDAAB\t0x74FB\n0xDAAC\t0x752F\n0xDAAD\t0x756F\n0xDAAE\t0x756C\n0xDAAF\t0x75E7\n0xDAB0\t0x75DA\n0xDAB1\t0x75E1\n0xDAB2\t0x75E6\n0xDAB3\t0x75DD\n0xDAB4\t0x75DF\n0xDAB5\t0x75E4\n0xDAB6\t0x75D7\n0xDAB7\t0x7695\n0xDAB8\t0x7692\n0xDAB9\t0x76DA\n0xDABA\t0x7746\n0xDABB\t0x7747\n0xDABC\t0x7744\n0xDABD\t0x774D\n0xDABE\t0x7745\n0xDABF\t0x774A\n0xDAC0\t0x774E\n0xDAC1\t0x774B\n0xDAC2\t0x774C\n0xDAC3\t0x77DE\n0xDAC4\t0x77EC\n0xDAC5\t0x7860\n0xDAC6\t0x7864\n0xDAC7\t0x7865\n0xDAC8\t0x785C\n0xDAC9\t0x786D\n0xDACA\t0x7871\n0xDACB\t0x786A\n0xDACC\t0x786E\n0xDACD\t0x7870\n0xDACE\t0x7869\n0xDACF\t0x7868\n0xDAD0\t0x785E\n0xDAD1\t0x7862\n0xDAD2\t0x7974\n0xDAD3\t0x7973\n0xDAD4\t0x7972\n0xDAD5\t0x7970\n0xDAD6\t0x7A02\n0xDAD7\t0x7A0A\n0xDAD8\t0x7A03\n0xDAD9\t0x7A0C\n0xDADA\t0x7A04\n0xDADB\t0x7A99\n0xDADC\t0x7AE6\n0xDADD\t0x7AE4\n0xDADE\t0x7B4A\n0xDADF\t0x7B3B\n0xDAE0\t0x7B44\n0xDAE1\t0x7B48\n0xDAE2\t0x7B4C\n0xDAE3\t0x7B4E\n0xDAE4\t0x7B40\n0xDAE5\t0x7B58\n0xDAE6\t0x7B45\n0xDAE7\t0x7CA2\n0xDAE8\t0x7C9E\n0xDAE9\t0x7CA8\n0xDAEA\t0x7CA1\n0xDAEB\t0x7D58\n0xDAEC\t0x7D6F\n0xDAED\t0x7D63\n0xDAEE\t0x7D53\n0xDAEF\t0x7D56\n0xDAF0\t0x7D67\n0xDAF1\t0x7D6A\n0xDAF2\t0x7D4F\n0xDAF3\t0x7D6D\n0xDAF4\t0x7D5C\n0xDAF5\t0x7D6B\n0xDAF6\t0x7D52\n0xDAF7\t0x7D54\n0xDAF8\t0x7D69\n0xDAF9\t0x7D51\n0xDAFA\t0x7D5F\n0xDAFB\t0x7D4E\n0xDAFC\t0x7F3E\n0xDAFD\t0x7F3F\n0xDAFE\t0x7F65\n0xDB40\t0x7F66\n0xDB41\t0x7FA2\n0xDB42\t0x7FA0\n0xDB43\t0x7FA1\n0xDB44\t0x7FD7\n0xDB45\t0x8051\n0xDB46\t0x804F\n0xDB47\t0x8050\n0xDB48\t0x80FE\n0xDB49\t0x80D4\n0xDB4A\t0x8143\n0xDB4B\t0x814A\n0xDB4C\t0x8152\n0xDB4D\t0x814F\n0xDB4E\t0x8147\n0xDB4F\t0x813D\n0xDB50\t0x814D\n0xDB51\t0x813A\n0xDB52\t0x81E6\n0xDB53\t0x81EE\n0xDB54\t0x81F7\n0xDB55\t0x81F8\n0xDB56\t0x81F9\n0xDB57\t0x8204\n0xDB58\t0x823C\n0xDB59\t0x823D\n0xDB5A\t0x823F\n0xDB5B\t0x8275\n0xDB5C\t0x833B\n0xDB5D\t0x83CF\n0xDB5E\t0x83F9\n0xDB5F\t0x8423\n0xDB60\t0x83C0\n0xDB61\t0x83E8\n0xDB62\t0x8412\n0xDB63\t0x83E7\n0xDB64\t0x83E4\n0xDB65\t0x83FC\n0xDB66\t0x83F6\n0xDB67\t0x8410\n0xDB68\t0x83C6\n0xDB69\t0x83C8\n0xDB6A\t0x83EB\n0xDB6B\t0x83E3\n0xDB6C\t0x83BF\n0xDB6D\t0x8401\n0xDB6E\t0x83DD\n0xDB6F\t0x83E5\n0xDB70\t0x83D8\n0xDB71\t0x83FF\n0xDB72\t0x83E1\n0xDB73\t0x83CB\n0xDB74\t0x83CE\n0xDB75\t0x83D6\n0xDB76\t0x83F5\n0xDB77\t0x83C9\n0xDB78\t0x8409\n0xDB79\t0x840F\n0xDB7A\t0x83DE\n0xDB7B\t0x8411\n0xDB7C\t0x8406\n0xDB7D\t0x83C2\n0xDB7E\t0x83F3\n0xDBA1\t0x83D5\n0xDBA2\t0x83FA\n0xDBA3\t0x83C7\n0xDBA4\t0x83D1\n0xDBA5\t0x83EA\n0xDBA6\t0x8413\n0xDBA7\t0x83C3\n0xDBA8\t0x83EC\n0xDBA9\t0x83EE\n0xDBAA\t0x83C4\n0xDBAB\t0x83FB\n0xDBAC\t0x83D7\n0xDBAD\t0x83E2\n0xDBAE\t0x841B\n0xDBAF\t0x83DB\n0xDBB0\t0x83FE\n0xDBB1\t0x86D8\n0xDBB2\t0x86E2\n0xDBB3\t0x86E6\n0xDBB4\t0x86D3\n0xDBB5\t0x86E3\n0xDBB6\t0x86DA\n0xDBB7\t0x86EA\n0xDBB8\t0x86DD\n0xDBB9\t0x86EB\n0xDBBA\t0x86DC\n0xDBBB\t0x86EC\n0xDBBC\t0x86E9\n0xDBBD\t0x86D7\n0xDBBE\t0x86E8\n0xDBBF\t0x86D1\n0xDBC0\t0x8848\n0xDBC1\t0x8856\n0xDBC2\t0x8855\n0xDBC3\t0x88BA\n0xDBC4\t0x88D7\n0xDBC5\t0x88B9\n0xDBC6\t0x88B8\n0xDBC7\t0x88C0\n0xDBC8\t0x88BE\n0xDBC9\t0x88B6\n0xDBCA\t0x88BC\n0xDBCB\t0x88B7\n0xDBCC\t0x88BD\n0xDBCD\t0x88B2\n0xDBCE\t0x8901\n0xDBCF\t0x88C9\n0xDBD0\t0x8995\n0xDBD1\t0x8998\n0xDBD2\t0x8997\n0xDBD3\t0x89DD\n0xDBD4\t0x89DA\n0xDBD5\t0x89DB\n0xDBD6\t0x8A4E\n0xDBD7\t0x8A4D\n0xDBD8\t0x8A39\n0xDBD9\t0x8A59\n0xDBDA\t0x8A40\n0xDBDB\t0x8A57\n0xDBDC\t0x8A58\n0xDBDD\t0x8A44\n0xDBDE\t0x8A45\n0xDBDF\t0x8A52\n0xDBE0\t0x8A48\n0xDBE1\t0x8A51\n0xDBE2\t0x8A4A\n0xDBE3\t0x8A4C\n0xDBE4\t0x8A4F\n0xDBE5\t0x8C5F\n0xDBE6\t0x8C81\n0xDBE7\t0x8C80\n0xDBE8\t0x8CBA\n0xDBE9\t0x8CBE\n0xDBEA\t0x8CB0\n0xDBEB\t0x8CB9\n0xDBEC\t0x8CB5\n0xDBED\t0x8D84\n0xDBEE\t0x8D80\n0xDBEF\t0x8D89\n0xDBF0\t0x8DD8\n0xDBF1\t0x8DD3\n0xDBF2\t0x8DCD\n0xDBF3\t0x8DC7\n0xDBF4\t0x8DD6\n0xDBF5\t0x8DDC\n0xDBF6\t0x8DCF\n0xDBF7\t0x8DD5\n0xDBF8\t0x8DD9\n0xDBF9\t0x8DC8\n0xDBFA\t0x8DD7\n0xDBFB\t0x8DC5\n0xDBFC\t0x8EEF\n0xDBFD\t0x8EF7\n0xDBFE\t0x8EFA\n0xDC40\t0x8EF9\n0xDC41\t0x8EE6\n0xDC42\t0x8EEE\n0xDC43\t0x8EE5\n0xDC44\t0x8EF5\n0xDC45\t0x8EE7\n0xDC46\t0x8EE8\n0xDC47\t0x8EF6\n0xDC48\t0x8EEB\n0xDC49\t0x8EF1\n0xDC4A\t0x8EEC\n0xDC4B\t0x8EF4\n0xDC4C\t0x8EE9\n0xDC4D\t0x902D\n0xDC4E\t0x9034\n0xDC4F\t0x902F\n0xDC50\t0x9106\n0xDC51\t0x912C\n0xDC52\t0x9104\n0xDC53\t0x90FF\n0xDC54\t0x90FC\n0xDC55\t0x9108\n0xDC56\t0x90F9\n0xDC57\t0x90FB\n0xDC58\t0x9101\n0xDC59\t0x9100\n0xDC5A\t0x9107\n0xDC5B\t0x9105\n0xDC5C\t0x9103\n0xDC5D\t0x9161\n0xDC5E\t0x9164\n0xDC5F\t0x915F\n0xDC60\t0x9162\n0xDC61\t0x9160\n0xDC62\t0x9201\n0xDC63\t0x920A\n0xDC64\t0x9225\n0xDC65\t0x9203\n0xDC66\t0x921A\n0xDC67\t0x9226\n0xDC68\t0x920F\n0xDC69\t0x920C\n0xDC6A\t0x9200\n0xDC6B\t0x9212\n0xDC6C\t0x91FF\n0xDC6D\t0x91FD\n0xDC6E\t0x9206\n0xDC6F\t0x9204\n0xDC70\t0x9227\n0xDC71\t0x9202\n0xDC72\t0x921C\n0xDC73\t0x9224\n0xDC74\t0x9219\n0xDC75\t0x9217\n0xDC76\t0x9205\n0xDC77\t0x9216\n0xDC78\t0x957B\n0xDC79\t0x958D\n0xDC7A\t0x958C\n0xDC7B\t0x9590\n0xDC7C\t0x9687\n0xDC7D\t0x967E\n0xDC7E\t0x9688\n0xDCA1\t0x9689\n0xDCA2\t0x9683\n0xDCA3\t0x9680\n0xDCA4\t0x96C2\n0xDCA5\t0x96C8\n0xDCA6\t0x96C3\n0xDCA7\t0x96F1\n0xDCA8\t0x96F0\n0xDCA9\t0x976C\n0xDCAA\t0x9770\n0xDCAB\t0x976E\n0xDCAC\t0x9807\n0xDCAD\t0x98A9\n0xDCAE\t0x98EB\n0xDCAF\t0x9CE6\n0xDCB0\t0x9EF9\n0xDCB1\t0x4E83\n0xDCB2\t0x4E84\n0xDCB3\t0x4EB6\n0xDCB4\t0x50BD\n0xDCB5\t0x50BF\n0xDCB6\t0x50C6\n0xDCB7\t0x50AE\n0xDCB8\t0x50C4\n0xDCB9\t0x50CA\n0xDCBA\t0x50B4\n0xDCBB\t0x50C8\n0xDCBC\t0x50C2\n0xDCBD\t0x50B0\n0xDCBE\t0x50C1\n0xDCBF\t0x50BA\n0xDCC0\t0x50B1\n0xDCC1\t0x50CB\n0xDCC2\t0x50C9\n0xDCC3\t0x50B6\n0xDCC4\t0x50B8\n0xDCC5\t0x51D7\n0xDCC6\t0x527A\n0xDCC7\t0x5278\n0xDCC8\t0x527B\n0xDCC9\t0x527C\n0xDCCA\t0x55C3\n0xDCCB\t0x55DB\n0xDCCC\t0x55CC\n0xDCCD\t0x55D0\n0xDCCE\t0x55CB\n0xDCCF\t0x55CA\n0xDCD0\t0x55DD\n0xDCD1\t0x55C0\n0xDCD2\t0x55D4\n0xDCD3\t0x55C4\n0xDCD4\t0x55E9\n0xDCD5\t0x55BF\n0xDCD6\t0x55D2\n0xDCD7\t0x558D\n0xDCD8\t0x55CF\n0xDCD9\t0x55D5\n0xDCDA\t0x55E2\n0xDCDB\t0x55D6\n0xDCDC\t0x55C8\n0xDCDD\t0x55F2\n0xDCDE\t0x55CD\n0xDCDF\t0x55D9\n0xDCE0\t0x55C2\n0xDCE1\t0x5714\n0xDCE2\t0x5853\n0xDCE3\t0x5868\n0xDCE4\t0x5864\n0xDCE5\t0x584F\n0xDCE6\t0x584D\n0xDCE7\t0x5849\n0xDCE8\t0x586F\n0xDCE9\t0x5855\n0xDCEA\t0x584E\n0xDCEB\t0x585D\n0xDCEC\t0x5859\n0xDCED\t0x5865\n0xDCEE\t0x585B\n0xDCEF\t0x583D\n0xDCF0\t0x5863\n0xDCF1\t0x5871\n0xDCF2\t0x58FC\n0xDCF3\t0x5AC7\n0xDCF4\t0x5AC4\n0xDCF5\t0x5ACB\n0xDCF6\t0x5ABA\n0xDCF7\t0x5AB8\n0xDCF8\t0x5AB1\n0xDCF9\t0x5AB5\n0xDCFA\t0x5AB0\n0xDCFB\t0x5ABF\n0xDCFC\t0x5AC8\n0xDCFD\t0x5ABB\n0xDCFE\t0x5AC6\n0xDD40\t0x5AB7\n0xDD41\t0x5AC0\n0xDD42\t0x5ACA\n0xDD43\t0x5AB4\n0xDD44\t0x5AB6\n0xDD45\t0x5ACD\n0xDD46\t0x5AB9\n0xDD47\t0x5A90\n0xDD48\t0x5BD6\n0xDD49\t0x5BD8\n0xDD4A\t0x5BD9\n0xDD4B\t0x5C1F\n0xDD4C\t0x5C33\n0xDD4D\t0x5D71\n0xDD4E\t0x5D63\n0xDD4F\t0x5D4A\n0xDD50\t0x5D65\n0xDD51\t0x5D72\n0xDD52\t0x5D6C\n0xDD53\t0x5D5E\n0xDD54\t0x5D68\n0xDD55\t0x5D67\n0xDD56\t0x5D62\n0xDD57\t0x5DF0\n0xDD58\t0x5E4F\n0xDD59\t0x5E4E\n0xDD5A\t0x5E4A\n0xDD5B\t0x5E4D\n0xDD5C\t0x5E4B\n0xDD5D\t0x5EC5\n0xDD5E\t0x5ECC\n0xDD5F\t0x5EC6\n0xDD60\t0x5ECB\n0xDD61\t0x5EC7\n0xDD62\t0x5F40\n0xDD63\t0x5FAF\n0xDD64\t0x5FAD\n0xDD65\t0x60F7\n0xDD66\t0x6149\n0xDD67\t0x614A\n0xDD68\t0x612B\n0xDD69\t0x6145\n0xDD6A\t0x6136\n0xDD6B\t0x6132\n0xDD6C\t0x612E\n0xDD6D\t0x6146\n0xDD6E\t0x612F\n0xDD6F\t0x614F\n0xDD70\t0x6129\n0xDD71\t0x6140\n0xDD72\t0x6220\n0xDD73\t0x9168\n0xDD74\t0x6223\n0xDD75\t0x6225\n0xDD76\t0x6224\n0xDD77\t0x63C5\n0xDD78\t0x63F1\n0xDD79\t0x63EB\n0xDD7A\t0x6410\n0xDD7B\t0x6412\n0xDD7C\t0x6409\n0xDD7D\t0x6420\n0xDD7E\t0x6424\n0xDDA1\t0x6433\n0xDDA2\t0x6443\n0xDDA3\t0x641F\n0xDDA4\t0x6415\n0xDDA5\t0x6418\n0xDDA6\t0x6439\n0xDDA7\t0x6437\n0xDDA8\t0x6422\n0xDDA9\t0x6423\n0xDDAA\t0x640C\n0xDDAB\t0x6426\n0xDDAC\t0x6430\n0xDDAD\t0x6428\n0xDDAE\t0x6441\n0xDDAF\t0x6435\n0xDDB0\t0x642F\n0xDDB1\t0x640A\n0xDDB2\t0x641A\n0xDDB3\t0x6440\n0xDDB4\t0x6425\n0xDDB5\t0x6427\n0xDDB6\t0x640B\n0xDDB7\t0x63E7\n0xDDB8\t0x641B\n0xDDB9\t0x642E\n0xDDBA\t0x6421\n0xDDBB\t0x640E\n0xDDBC\t0x656F\n0xDDBD\t0x6592\n0xDDBE\t0x65D3\n0xDDBF\t0x6686\n0xDDC0\t0x668C\n0xDDC1\t0x6695\n0xDDC2\t0x6690\n0xDDC3\t0x668B\n0xDDC4\t0x668A\n0xDDC5\t0x6699\n0xDDC6\t0x6694\n0xDDC7\t0x6678\n0xDDC8\t0x6720\n0xDDC9\t0x6966\n0xDDCA\t0x695F\n0xDDCB\t0x6938\n0xDDCC\t0x694E\n0xDDCD\t0x6962\n0xDDCE\t0x6971\n0xDDCF\t0x693F\n0xDDD0\t0x6945\n0xDDD1\t0x696A\n0xDDD2\t0x6939\n0xDDD3\t0x6942\n0xDDD4\t0x6957\n0xDDD5\t0x6959\n0xDDD6\t0x697A\n0xDDD7\t0x6948\n0xDDD8\t0x6949\n0xDDD9\t0x6935\n0xDDDA\t0x696C\n0xDDDB\t0x6933\n0xDDDC\t0x693D\n0xDDDD\t0x6965\n0xDDDE\t0x68F0\n0xDDDF\t0x6978\n0xDDE0\t0x6934\n0xDDE1\t0x6969\n0xDDE2\t0x6940\n0xDDE3\t0x696F\n0xDDE4\t0x6944\n0xDDE5\t0x6976\n0xDDE6\t0x6958\n0xDDE7\t0x6941\n0xDDE8\t0x6974\n0xDDE9\t0x694C\n0xDDEA\t0x693B\n0xDDEB\t0x694B\n0xDDEC\t0x6937\n0xDDED\t0x695C\n0xDDEE\t0x694F\n0xDDEF\t0x6951\n0xDDF0\t0x6932\n0xDDF1\t0x6952\n0xDDF2\t0x692F\n0xDDF3\t0x697B\n0xDDF4\t0x693C\n0xDDF5\t0x6B46\n0xDDF6\t0x6B45\n0xDDF7\t0x6B43\n0xDDF8\t0x6B42\n0xDDF9\t0x6B48\n0xDDFA\t0x6B41\n0xDDFB\t0x6B9B\n0xDDFC\t0xFA0D\n0xDDFD\t0x6BFB\n0xDDFE\t0x6BFC\n0xDE40\t0x6BF9\n0xDE41\t0x6BF7\n0xDE42\t0x6BF8\n0xDE43\t0x6E9B\n0xDE44\t0x6ED6\n0xDE45\t0x6EC8\n0xDE46\t0x6E8F\n0xDE47\t0x6EC0\n0xDE48\t0x6E9F\n0xDE49\t0x6E93\n0xDE4A\t0x6E94\n0xDE4B\t0x6EA0\n0xDE4C\t0x6EB1\n0xDE4D\t0x6EB9\n0xDE4E\t0x6EC6\n0xDE4F\t0x6ED2\n0xDE50\t0x6EBD\n0xDE51\t0x6EC1\n0xDE52\t0x6E9E\n0xDE53\t0x6EC9\n0xDE54\t0x6EB7\n0xDE55\t0x6EB0\n0xDE56\t0x6ECD\n0xDE57\t0x6EA6\n0xDE58\t0x6ECF\n0xDE59\t0x6EB2\n0xDE5A\t0x6EBE\n0xDE5B\t0x6EC3\n0xDE5C\t0x6EDC\n0xDE5D\t0x6ED8\n0xDE5E\t0x6E99\n0xDE5F\t0x6E92\n0xDE60\t0x6E8E\n0xDE61\t0x6E8D\n0xDE62\t0x6EA4\n0xDE63\t0x6EA1\n0xDE64\t0x6EBF\n0xDE65\t0x6EB3\n0xDE66\t0x6ED0\n0xDE67\t0x6ECA\n0xDE68\t0x6E97\n0xDE69\t0x6EAE\n0xDE6A\t0x6EA3\n0xDE6B\t0x7147\n0xDE6C\t0x7154\n0xDE6D\t0x7152\n0xDE6E\t0x7163\n0xDE6F\t0x7160\n0xDE70\t0x7141\n0xDE71\t0x715D\n0xDE72\t0x7162\n0xDE73\t0x7172\n0xDE74\t0x7178\n0xDE75\t0x716A\n0xDE76\t0x7161\n0xDE77\t0x7142\n0xDE78\t0x7158\n0xDE79\t0x7143\n0xDE7A\t0x714B\n0xDE7B\t0x7170\n0xDE7C\t0x715F\n0xDE7D\t0x7150\n0xDE7E\t0x7153\n0xDEA1\t0x7144\n0xDEA2\t0x714D\n0xDEA3\t0x715A\n0xDEA4\t0x724F\n0xDEA5\t0x728D\n0xDEA6\t0x728C\n0xDEA7\t0x7291\n0xDEA8\t0x7290\n0xDEA9\t0x728E\n0xDEAA\t0x733C\n0xDEAB\t0x7342\n0xDEAC\t0x733B\n0xDEAD\t0x733A\n0xDEAE\t0x7340\n0xDEAF\t0x734A\n0xDEB0\t0x7349\n0xDEB1\t0x7444\n0xDEB2\t0x744A\n0xDEB3\t0x744B\n0xDEB4\t0x7452\n0xDEB5\t0x7451\n0xDEB6\t0x7457\n0xDEB7\t0x7440\n0xDEB8\t0x744F\n0xDEB9\t0x7450\n0xDEBA\t0x744E\n0xDEBB\t0x7442\n0xDEBC\t0x7446\n0xDEBD\t0x744D\n0xDEBE\t0x7454\n0xDEBF\t0x74E1\n0xDEC0\t0x74FF\n0xDEC1\t0x74FE\n0xDEC2\t0x74FD\n0xDEC3\t0x751D\n0xDEC4\t0x7579\n0xDEC5\t0x7577\n0xDEC6\t0x6983\n0xDEC7\t0x75EF\n0xDEC8\t0x760F\n0xDEC9\t0x7603\n0xDECA\t0x75F7\n0xDECB\t0x75FE\n0xDECC\t0x75FC\n0xDECD\t0x75F9\n0xDECE\t0x75F8\n0xDECF\t0x7610\n0xDED0\t0x75FB\n0xDED1\t0x75F6\n0xDED2\t0x75ED\n0xDED3\t0x75F5\n0xDED4\t0x75FD\n0xDED5\t0x7699\n0xDED6\t0x76B5\n0xDED7\t0x76DD\n0xDED8\t0x7755\n0xDED9\t0x775F\n0xDEDA\t0x7760\n0xDEDB\t0x7752\n0xDEDC\t0x7756\n0xDEDD\t0x775A\n0xDEDE\t0x7769\n0xDEDF\t0x7767\n0xDEE0\t0x7754\n0xDEE1\t0x7759\n0xDEE2\t0x776D\n0xDEE3\t0x77E0\n0xDEE4\t0x7887\n0xDEE5\t0x789A\n0xDEE6\t0x7894\n0xDEE7\t0x788F\n0xDEE8\t0x7884\n0xDEE9\t0x7895\n0xDEEA\t0x7885\n0xDEEB\t0x7886\n0xDEEC\t0x78A1\n0xDEED\t0x7883\n0xDEEE\t0x7879\n0xDEEF\t0x7899\n0xDEF0\t0x7880\n0xDEF1\t0x7896\n0xDEF2\t0x787B\n0xDEF3\t0x797C\n0xDEF4\t0x7982\n0xDEF5\t0x797D\n0xDEF6\t0x7979\n0xDEF7\t0x7A11\n0xDEF8\t0x7A18\n0xDEF9\t0x7A19\n0xDEFA\t0x7A12\n0xDEFB\t0x7A17\n0xDEFC\t0x7A15\n0xDEFD\t0x7A22\n0xDEFE\t0x7A13\n0xDF40\t0x7A1B\n0xDF41\t0x7A10\n0xDF42\t0x7AA3\n0xDF43\t0x7AA2\n0xDF44\t0x7A9E\n0xDF45\t0x7AEB\n0xDF46\t0x7B66\n0xDF47\t0x7B64\n0xDF48\t0x7B6D\n0xDF49\t0x7B74\n0xDF4A\t0x7B69\n0xDF4B\t0x7B72\n0xDF4C\t0x7B65\n0xDF4D\t0x7B73\n0xDF4E\t0x7B71\n0xDF4F\t0x7B70\n0xDF50\t0x7B61\n0xDF51\t0x7B78\n0xDF52\t0x7B76\n0xDF53\t0x7B63\n0xDF54\t0x7CB2\n0xDF55\t0x7CB4\n0xDF56\t0x7CAF\n0xDF57\t0x7D88\n0xDF58\t0x7D86\n0xDF59\t0x7D80\n0xDF5A\t0x7D8D\n0xDF5B\t0x7D7F\n0xDF5C\t0x7D85\n0xDF5D\t0x7D7A\n0xDF5E\t0x7D8E\n0xDF5F\t0x7D7B\n0xDF60\t0x7D83\n0xDF61\t0x7D7C\n0xDF62\t0x7D8C\n0xDF63\t0x7D94\n0xDF64\t0x7D84\n0xDF65\t0x7D7D\n0xDF66\t0x7D92\n0xDF67\t0x7F6D\n0xDF68\t0x7F6B\n0xDF69\t0x7F67\n0xDF6A\t0x7F68\n0xDF6B\t0x7F6C\n0xDF6C\t0x7FA6\n0xDF6D\t0x7FA5\n0xDF6E\t0x7FA7\n0xDF6F\t0x7FDB\n0xDF70\t0x7FDC\n0xDF71\t0x8021\n0xDF72\t0x8164\n0xDF73\t0x8160\n0xDF74\t0x8177\n0xDF75\t0x815C\n0xDF76\t0x8169\n0xDF77\t0x815B\n0xDF78\t0x8162\n0xDF79\t0x8172\n0xDF7A\t0x6721\n0xDF7B\t0x815E\n0xDF7C\t0x8176\n0xDF7D\t0x8167\n0xDF7E\t0x816F\n0xDFA1\t0x8144\n0xDFA2\t0x8161\n0xDFA3\t0x821D\n0xDFA4\t0x8249\n0xDFA5\t0x8244\n0xDFA6\t0x8240\n0xDFA7\t0x8242\n0xDFA8\t0x8245\n0xDFA9\t0x84F1\n0xDFAA\t0x843F\n0xDFAB\t0x8456\n0xDFAC\t0x8476\n0xDFAD\t0x8479\n0xDFAE\t0x848F\n0xDFAF\t0x848D\n0xDFB0\t0x8465\n0xDFB1\t0x8451\n0xDFB2\t0x8440\n0xDFB3\t0x8486\n0xDFB4\t0x8467\n0xDFB5\t0x8430\n0xDFB6\t0x844D\n0xDFB7\t0x847D\n0xDFB8\t0x845A\n0xDFB9\t0x8459\n0xDFBA\t0x8474\n0xDFBB\t0x8473\n0xDFBC\t0x845D\n0xDFBD\t0x8507\n0xDFBE\t0x845E\n0xDFBF\t0x8437\n0xDFC0\t0x843A\n0xDFC1\t0x8434\n0xDFC2\t0x847A\n0xDFC3\t0x8443\n0xDFC4\t0x8478\n0xDFC5\t0x8432\n0xDFC6\t0x8445\n0xDFC7\t0x8429\n0xDFC8\t0x83D9\n0xDFC9\t0x844B\n0xDFCA\t0x842F\n0xDFCB\t0x8442\n0xDFCC\t0x842D\n0xDFCD\t0x845F\n0xDFCE\t0x8470\n0xDFCF\t0x8439\n0xDFD0\t0x844E\n0xDFD1\t0x844C\n0xDFD2\t0x8452\n0xDFD3\t0x846F\n0xDFD4\t0x84C5\n0xDFD5\t0x848E\n0xDFD6\t0x843B\n0xDFD7\t0x8447\n0xDFD8\t0x8436\n0xDFD9\t0x8433\n0xDFDA\t0x8468\n0xDFDB\t0x847E\n0xDFDC\t0x8444\n0xDFDD\t0x842B\n0xDFDE\t0x8460\n0xDFDF\t0x8454\n0xDFE0\t0x846E\n0xDFE1\t0x8450\n0xDFE2\t0x870B\n0xDFE3\t0x8704\n0xDFE4\t0x86F7\n0xDFE5\t0x870C\n0xDFE6\t0x86FA\n0xDFE7\t0x86D6\n0xDFE8\t0x86F5\n0xDFE9\t0x874D\n0xDFEA\t0x86F8\n0xDFEB\t0x870E\n0xDFEC\t0x8709\n0xDFED\t0x8701\n0xDFEE\t0x86F6\n0xDFEF\t0x870D\n0xDFF0\t0x8705\n0xDFF1\t0x88D6\n0xDFF2\t0x88CB\n0xDFF3\t0x88CD\n0xDFF4\t0x88CE\n0xDFF5\t0x88DE\n0xDFF6\t0x88DB\n0xDFF7\t0x88DA\n0xDFF8\t0x88CC\n0xDFF9\t0x88D0\n0xDFFA\t0x8985\n0xDFFB\t0x899B\n0xDFFC\t0x89DF\n0xDFFD\t0x89E5\n0xDFFE\t0x89E4\n0xE040\t0x89E1\n0xE041\t0x89E0\n0xE042\t0x89E2\n0xE043\t0x89DC\n0xE044\t0x89E6\n0xE045\t0x8A76\n0xE046\t0x8A86\n0xE047\t0x8A7F\n0xE048\t0x8A61\n0xE049\t0x8A3F\n0xE04A\t0x8A77\n0xE04B\t0x8A82\n0xE04C\t0x8A84\n0xE04D\t0x8A75\n0xE04E\t0x8A83\n0xE04F\t0x8A81\n0xE050\t0x8A74\n0xE051\t0x8A7A\n0xE052\t0x8C3C\n0xE053\t0x8C4B\n0xE054\t0x8C4A\n0xE055\t0x8C65\n0xE056\t0x8C64\n0xE057\t0x8C66\n0xE058\t0x8C86\n0xE059\t0x8C84\n0xE05A\t0x8C85\n0xE05B\t0x8CCC\n0xE05C\t0x8D68\n0xE05D\t0x8D69\n0xE05E\t0x8D91\n0xE05F\t0x8D8C\n0xE060\t0x8D8E\n0xE061\t0x8D8F\n0xE062\t0x8D8D\n0xE063\t0x8D93\n0xE064\t0x8D94\n0xE065\t0x8D90\n0xE066\t0x8D92\n0xE067\t0x8DF0\n0xE068\t0x8DE0\n0xE069\t0x8DEC\n0xE06A\t0x8DF1\n0xE06B\t0x8DEE\n0xE06C\t0x8DD0\n0xE06D\t0x8DE9\n0xE06E\t0x8DE3\n0xE06F\t0x8DE2\n0xE070\t0x8DE7\n0xE071\t0x8DF2\n0xE072\t0x8DEB\n0xE073\t0x8DF4\n0xE074\t0x8F06\n0xE075\t0x8EFF\n0xE076\t0x8F01\n0xE077\t0x8F00\n0xE078\t0x8F05\n0xE079\t0x8F07\n0xE07A\t0x8F08\n0xE07B\t0x8F02\n0xE07C\t0x8F0B\n0xE07D\t0x9052\n0xE07E\t0x903F\n0xE0A1\t0x9044\n0xE0A2\t0x9049\n0xE0A3\t0x903D\n0xE0A4\t0x9110\n0xE0A5\t0x910D\n0xE0A6\t0x910F\n0xE0A7\t0x9111\n0xE0A8\t0x9116\n0xE0A9\t0x9114\n0xE0AA\t0x910B\n0xE0AB\t0x910E\n0xE0AC\t0x916E\n0xE0AD\t0x916F\n0xE0AE\t0x9248\n0xE0AF\t0x9252\n0xE0B0\t0x9230\n0xE0B1\t0x923A\n0xE0B2\t0x9266\n0xE0B3\t0x9233\n0xE0B4\t0x9265\n0xE0B5\t0x925E\n0xE0B6\t0x9283\n0xE0B7\t0x922E\n0xE0B8\t0x924A\n0xE0B9\t0x9246\n0xE0BA\t0x926D\n0xE0BB\t0x926C\n0xE0BC\t0x924F\n0xE0BD\t0x9260\n0xE0BE\t0x9267\n0xE0BF\t0x926F\n0xE0C0\t0x9236\n0xE0C1\t0x9261\n0xE0C2\t0x9270\n0xE0C3\t0x9231\n0xE0C4\t0x9254\n0xE0C5\t0x9263\n0xE0C6\t0x9250\n0xE0C7\t0x9272\n0xE0C8\t0x924E\n0xE0C9\t0x9253\n0xE0CA\t0x924C\n0xE0CB\t0x9256\n0xE0CC\t0x9232\n0xE0CD\t0x959F\n0xE0CE\t0x959C\n0xE0CF\t0x959E\n0xE0D0\t0x959B\n0xE0D1\t0x9692\n0xE0D2\t0x9693\n0xE0D3\t0x9691\n0xE0D4\t0x9697\n0xE0D5\t0x96CE\n0xE0D6\t0x96FA\n0xE0D7\t0x96FD\n0xE0D8\t0x96F8\n0xE0D9\t0x96F5\n0xE0DA\t0x9773\n0xE0DB\t0x9777\n0xE0DC\t0x9778\n0xE0DD\t0x9772\n0xE0DE\t0x980F\n0xE0DF\t0x980D\n0xE0E0\t0x980E\n0xE0E1\t0x98AC\n0xE0E2\t0x98F6\n0xE0E3\t0x98F9\n0xE0E4\t0x99AF\n0xE0E5\t0x99B2\n0xE0E6\t0x99B0\n0xE0E7\t0x99B5\n0xE0E8\t0x9AAD\n0xE0E9\t0x9AAB\n0xE0EA\t0x9B5B\n0xE0EB\t0x9CEA\n0xE0EC\t0x9CED\n0xE0ED\t0x9CE7\n0xE0EE\t0x9E80\n0xE0EF\t0x9EFD\n0xE0F0\t0x50E6\n0xE0F1\t0x50D4\n0xE0F2\t0x50D7\n0xE0F3\t0x50E8\n0xE0F4\t0x50F3\n0xE0F5\t0x50DB\n0xE0F6\t0x50EA\n0xE0F7\t0x50DD\n0xE0F8\t0x50E4\n0xE0F9\t0x50D3\n0xE0FA\t0x50EC\n0xE0FB\t0x50F0\n0xE0FC\t0x50EF\n0xE0FD\t0x50E3\n0xE0FE\t0x50E0\n0xE140\t0x51D8\n0xE141\t0x5280\n0xE142\t0x5281\n0xE143\t0x52E9\n0xE144\t0x52EB\n0xE145\t0x5330\n0xE146\t0x53AC\n0xE147\t0x5627\n0xE148\t0x5615\n0xE149\t0x560C\n0xE14A\t0x5612\n0xE14B\t0x55FC\n0xE14C\t0x560F\n0xE14D\t0x561C\n0xE14E\t0x5601\n0xE14F\t0x5613\n0xE150\t0x5602\n0xE151\t0x55FA\n0xE152\t0x561D\n0xE153\t0x5604\n0xE154\t0x55FF\n0xE155\t0x55F9\n0xE156\t0x5889\n0xE157\t0x587C\n0xE158\t0x5890\n0xE159\t0x5898\n0xE15A\t0x5886\n0xE15B\t0x5881\n0xE15C\t0x587F\n0xE15D\t0x5874\n0xE15E\t0x588B\n0xE15F\t0x587A\n0xE160\t0x5887\n0xE161\t0x5891\n0xE162\t0x588E\n0xE163\t0x5876\n0xE164\t0x5882\n0xE165\t0x5888\n0xE166\t0x587B\n0xE167\t0x5894\n0xE168\t0x588F\n0xE169\t0x58FE\n0xE16A\t0x596B\n0xE16B\t0x5ADC\n0xE16C\t0x5AEE\n0xE16D\t0x5AE5\n0xE16E\t0x5AD5\n0xE16F\t0x5AEA\n0xE170\t0x5ADA\n0xE171\t0x5AED\n0xE172\t0x5AEB\n0xE173\t0x5AF3\n0xE174\t0x5AE2\n0xE175\t0x5AE0\n0xE176\t0x5ADB\n0xE177\t0x5AEC\n0xE178\t0x5ADE\n0xE179\t0x5ADD\n0xE17A\t0x5AD9\n0xE17B\t0x5AE8\n0xE17C\t0x5ADF\n0xE17D\t0x5B77\n0xE17E\t0x5BE0\n0xE1A1\t0x5BE3\n0xE1A2\t0x5C63\n0xE1A3\t0x5D82\n0xE1A4\t0x5D80\n0xE1A5\t0x5D7D\n0xE1A6\t0x5D86\n0xE1A7\t0x5D7A\n0xE1A8\t0x5D81\n0xE1A9\t0x5D77\n0xE1AA\t0x5D8A\n0xE1AB\t0x5D89\n0xE1AC\t0x5D88\n0xE1AD\t0x5D7E\n0xE1AE\t0x5D7C\n0xE1AF\t0x5D8D\n0xE1B0\t0x5D79\n0xE1B1\t0x5D7F\n0xE1B2\t0x5E58\n0xE1B3\t0x5E59\n0xE1B4\t0x5E53\n0xE1B5\t0x5ED8\n0xE1B6\t0x5ED1\n0xE1B7\t0x5ED7\n0xE1B8\t0x5ECE\n0xE1B9\t0x5EDC\n0xE1BA\t0x5ED5\n0xE1BB\t0x5ED9\n0xE1BC\t0x5ED2\n0xE1BD\t0x5ED4\n0xE1BE\t0x5F44\n0xE1BF\t0x5F43\n0xE1C0\t0x5F6F\n0xE1C1\t0x5FB6\n0xE1C2\t0x612C\n0xE1C3\t0x6128\n0xE1C4\t0x6141\n0xE1C5\t0x615E\n0xE1C6\t0x6171\n0xE1C7\t0x6173\n0xE1C8\t0x6152\n0xE1C9\t0x6153\n0xE1CA\t0x6172\n0xE1CB\t0x616C\n0xE1CC\t0x6180\n0xE1CD\t0x6174\n0xE1CE\t0x6154\n0xE1CF\t0x617A\n0xE1D0\t0x615B\n0xE1D1\t0x6165\n0xE1D2\t0x613B\n0xE1D3\t0x616A\n0xE1D4\t0x6161\n0xE1D5\t0x6156\n0xE1D6\t0x6229\n0xE1D7\t0x6227\n0xE1D8\t0x622B\n0xE1D9\t0x642B\n0xE1DA\t0x644D\n0xE1DB\t0x645B\n0xE1DC\t0x645D\n0xE1DD\t0x6474\n0xE1DE\t0x6476\n0xE1DF\t0x6472\n0xE1E0\t0x6473\n0xE1E1\t0x647D\n0xE1E2\t0x6475\n0xE1E3\t0x6466\n0xE1E4\t0x64A6\n0xE1E5\t0x644E\n0xE1E6\t0x6482\n0xE1E7\t0x645E\n0xE1E8\t0x645C\n0xE1E9\t0x644B\n0xE1EA\t0x6453\n0xE1EB\t0x6460\n0xE1EC\t0x6450\n0xE1ED\t0x647F\n0xE1EE\t0x643F\n0xE1EF\t0x646C\n0xE1F0\t0x646B\n0xE1F1\t0x6459\n0xE1F2\t0x6465\n0xE1F3\t0x6477\n0xE1F4\t0x6573\n0xE1F5\t0x65A0\n0xE1F6\t0x66A1\n0xE1F7\t0x66A0\n0xE1F8\t0x669F\n0xE1F9\t0x6705\n0xE1FA\t0x6704\n0xE1FB\t0x6722\n0xE1FC\t0x69B1\n0xE1FD\t0x69B6\n0xE1FE\t0x69C9\n0xE240\t0x69A0\n0xE241\t0x69CE\n0xE242\t0x6996\n0xE243\t0x69B0\n0xE244\t0x69AC\n0xE245\t0x69BC\n0xE246\t0x6991\n0xE247\t0x6999\n0xE248\t0x698E\n0xE249\t0x69A7\n0xE24A\t0x698D\n0xE24B\t0x69A9\n0xE24C\t0x69BE\n0xE24D\t0x69AF\n0xE24E\t0x69BF\n0xE24F\t0x69C4\n0xE250\t0x69BD\n0xE251\t0x69A4\n0xE252\t0x69D4\n0xE253\t0x69B9\n0xE254\t0x69CA\n0xE255\t0x699A\n0xE256\t0x69CF\n0xE257\t0x69B3\n0xE258\t0x6993\n0xE259\t0x69AA\n0xE25A\t0x69A1\n0xE25B\t0x699E\n0xE25C\t0x69D9\n0xE25D\t0x6997\n0xE25E\t0x6990\n0xE25F\t0x69C2\n0xE260\t0x69B5\n0xE261\t0x69A5\n0xE262\t0x69C6\n0xE263\t0x6B4A\n0xE264\t0x6B4D\n0xE265\t0x6B4B\n0xE266\t0x6B9E\n0xE267\t0x6B9F\n0xE268\t0x6BA0\n0xE269\t0x6BC3\n0xE26A\t0x6BC4\n0xE26B\t0x6BFE\n0xE26C\t0x6ECE\n0xE26D\t0x6EF5\n0xE26E\t0x6EF1\n0xE26F\t0x6F03\n0xE270\t0x6F25\n0xE271\t0x6EF8\n0xE272\t0x6F37\n0xE273\t0x6EFB\n0xE274\t0x6F2E\n0xE275\t0x6F09\n0xE276\t0x6F4E\n0xE277\t0x6F19\n0xE278\t0x6F1A\n0xE279\t0x6F27\n0xE27A\t0x6F18\n0xE27B\t0x6F3B\n0xE27C\t0x6F12\n0xE27D\t0x6EED\n0xE27E\t0x6F0A\n0xE2A1\t0x6F36\n0xE2A2\t0x6F73\n0xE2A3\t0x6EF9\n0xE2A4\t0x6EEE\n0xE2A5\t0x6F2D\n0xE2A6\t0x6F40\n0xE2A7\t0x6F30\n0xE2A8\t0x6F3C\n0xE2A9\t0x6F35\n0xE2AA\t0x6EEB\n0xE2AB\t0x6F07\n0xE2AC\t0x6F0E\n0xE2AD\t0x6F43\n0xE2AE\t0x6F05\n0xE2AF\t0x6EFD\n0xE2B0\t0x6EF6\n0xE2B1\t0x6F39\n0xE2B2\t0x6F1C\n0xE2B3\t0x6EFC\n0xE2B4\t0x6F3A\n0xE2B5\t0x6F1F\n0xE2B6\t0x6F0D\n0xE2B7\t0x6F1E\n0xE2B8\t0x6F08\n0xE2B9\t0x6F21\n0xE2BA\t0x7187\n0xE2BB\t0x7190\n0xE2BC\t0x7189\n0xE2BD\t0x7180\n0xE2BE\t0x7185\n0xE2BF\t0x7182\n0xE2C0\t0x718F\n0xE2C1\t0x717B\n0xE2C2\t0x7186\n0xE2C3\t0x7181\n0xE2C4\t0x7197\n0xE2C5\t0x7244\n0xE2C6\t0x7253\n0xE2C7\t0x7297\n0xE2C8\t0x7295\n0xE2C9\t0x7293\n0xE2CA\t0x7343\n0xE2CB\t0x734D\n0xE2CC\t0x7351\n0xE2CD\t0x734C\n0xE2CE\t0x7462\n0xE2CF\t0x7473\n0xE2D0\t0x7471\n0xE2D1\t0x7475\n0xE2D2\t0x7472\n0xE2D3\t0x7467\n0xE2D4\t0x746E\n0xE2D5\t0x7500\n0xE2D6\t0x7502\n0xE2D7\t0x7503\n0xE2D8\t0x757D\n0xE2D9\t0x7590\n0xE2DA\t0x7616\n0xE2DB\t0x7608\n0xE2DC\t0x760C\n0xE2DD\t0x7615\n0xE2DE\t0x7611\n0xE2DF\t0x760A\n0xE2E0\t0x7614\n0xE2E1\t0x76B8\n0xE2E2\t0x7781\n0xE2E3\t0x777C\n0xE2E4\t0x7785\n0xE2E5\t0x7782\n0xE2E6\t0x776E\n0xE2E7\t0x7780\n0xE2E8\t0x776F\n0xE2E9\t0x777E\n0xE2EA\t0x7783\n0xE2EB\t0x78B2\n0xE2EC\t0x78AA\n0xE2ED\t0x78B4\n0xE2EE\t0x78AD\n0xE2EF\t0x78A8\n0xE2F0\t0x787E\n0xE2F1\t0x78AB\n0xE2F2\t0x789E\n0xE2F3\t0x78A5\n0xE2F4\t0x78A0\n0xE2F5\t0x78AC\n0xE2F6\t0x78A2\n0xE2F7\t0x78A4\n0xE2F8\t0x7998\n0xE2F9\t0x798A\n0xE2FA\t0x798B\n0xE2FB\t0x7996\n0xE2FC\t0x7995\n0xE2FD\t0x7994\n0xE2FE\t0x7993\n0xE340\t0x7997\n0xE341\t0x7988\n0xE342\t0x7992\n0xE343\t0x7990\n0xE344\t0x7A2B\n0xE345\t0x7A4A\n0xE346\t0x7A30\n0xE347\t0x7A2F\n0xE348\t0x7A28\n0xE349\t0x7A26\n0xE34A\t0x7AA8\n0xE34B\t0x7AAB\n0xE34C\t0x7AAC\n0xE34D\t0x7AEE\n0xE34E\t0x7B88\n0xE34F\t0x7B9C\n0xE350\t0x7B8A\n0xE351\t0x7B91\n0xE352\t0x7B90\n0xE353\t0x7B96\n0xE354\t0x7B8D\n0xE355\t0x7B8C\n0xE356\t0x7B9B\n0xE357\t0x7B8E\n0xE358\t0x7B85\n0xE359\t0x7B98\n0xE35A\t0x5284\n0xE35B\t0x7B99\n0xE35C\t0x7BA4\n0xE35D\t0x7B82\n0xE35E\t0x7CBB\n0xE35F\t0x7CBF\n0xE360\t0x7CBC\n0xE361\t0x7CBA\n0xE362\t0x7DA7\n0xE363\t0x7DB7\n0xE364\t0x7DC2\n0xE365\t0x7DA3\n0xE366\t0x7DAA\n0xE367\t0x7DC1\n0xE368\t0x7DC0\n0xE369\t0x7DC5\n0xE36A\t0x7D9D\n0xE36B\t0x7DCE\n0xE36C\t0x7DC4\n0xE36D\t0x7DC6\n0xE36E\t0x7DCB\n0xE36F\t0x7DCC\n0xE370\t0x7DAF\n0xE371\t0x7DB9\n0xE372\t0x7D96\n0xE373\t0x7DBC\n0xE374\t0x7D9F\n0xE375\t0x7DA6\n0xE376\t0x7DAE\n0xE377\t0x7DA9\n0xE378\t0x7DA1\n0xE379\t0x7DC9\n0xE37A\t0x7F73\n0xE37B\t0x7FE2\n0xE37C\t0x7FE3\n0xE37D\t0x7FE5\n0xE37E\t0x7FDE\n0xE3A1\t0x8024\n0xE3A2\t0x805D\n0xE3A3\t0x805C\n0xE3A4\t0x8189\n0xE3A5\t0x8186\n0xE3A6\t0x8183\n0xE3A7\t0x8187\n0xE3A8\t0x818D\n0xE3A9\t0x818C\n0xE3AA\t0x818B\n0xE3AB\t0x8215\n0xE3AC\t0x8497\n0xE3AD\t0x84A4\n0xE3AE\t0x84A1\n0xE3AF\t0x849F\n0xE3B0\t0x84BA\n0xE3B1\t0x84CE\n0xE3B2\t0x84C2\n0xE3B3\t0x84AC\n0xE3B4\t0x84AE\n0xE3B5\t0x84AB\n0xE3B6\t0x84B9\n0xE3B7\t0x84B4\n0xE3B8\t0x84C1\n0xE3B9\t0x84CD\n0xE3BA\t0x84AA\n0xE3BB\t0x849A\n0xE3BC\t0x84B1\n0xE3BD\t0x84D0\n0xE3BE\t0x849D\n0xE3BF\t0x84A7\n0xE3C0\t0x84BB\n0xE3C1\t0x84A2\n0xE3C2\t0x8494\n0xE3C3\t0x84C7\n0xE3C4\t0x84CC\n0xE3C5\t0x849B\n0xE3C6\t0x84A9\n0xE3C7\t0x84AF\n0xE3C8\t0x84A8\n0xE3C9\t0x84D6\n0xE3CA\t0x8498\n0xE3CB\t0x84B6\n0xE3CC\t0x84CF\n0xE3CD\t0x84A0\n0xE3CE\t0x84D7\n0xE3CF\t0x84D4\n0xE3D0\t0x84D2\n0xE3D1\t0x84DB\n0xE3D2\t0x84B0\n0xE3D3\t0x8491\n0xE3D4\t0x8661\n0xE3D5\t0x8733\n0xE3D6\t0x8723\n0xE3D7\t0x8728\n0xE3D8\t0x876B\n0xE3D9\t0x8740\n0xE3DA\t0x872E\n0xE3DB\t0x871E\n0xE3DC\t0x8721\n0xE3DD\t0x8719\n0xE3DE\t0x871B\n0xE3DF\t0x8743\n0xE3E0\t0x872C\n0xE3E1\t0x8741\n0xE3E2\t0x873E\n0xE3E3\t0x8746\n0xE3E4\t0x8720\n0xE3E5\t0x8732\n0xE3E6\t0x872A\n0xE3E7\t0x872D\n0xE3E8\t0x873C\n0xE3E9\t0x8712\n0xE3EA\t0x873A\n0xE3EB\t0x8731\n0xE3EC\t0x8735\n0xE3ED\t0x8742\n0xE3EE\t0x8726\n0xE3EF\t0x8727\n0xE3F0\t0x8738\n0xE3F1\t0x8724\n0xE3F2\t0x871A\n0xE3F3\t0x8730\n0xE3F4\t0x8711\n0xE3F5\t0x88F7\n0xE3F6\t0x88E7\n0xE3F7\t0x88F1\n0xE3F8\t0x88F2\n0xE3F9\t0x88FA\n0xE3FA\t0x88FE\n0xE3FB\t0x88EE\n0xE3FC\t0x88FC\n0xE3FD\t0x88F6\n0xE3FE\t0x88FB\n0xE440\t0x88F0\n0xE441\t0x88EC\n0xE442\t0x88EB\n0xE443\t0x899D\n0xE444\t0x89A1\n0xE445\t0x899F\n0xE446\t0x899E\n0xE447\t0x89E9\n0xE448\t0x89EB\n0xE449\t0x89E8\n0xE44A\t0x8AAB\n0xE44B\t0x8A99\n0xE44C\t0x8A8B\n0xE44D\t0x8A92\n0xE44E\t0x8A8F\n0xE44F\t0x8A96\n0xE450\t0x8C3D\n0xE451\t0x8C68\n0xE452\t0x8C69\n0xE453\t0x8CD5\n0xE454\t0x8CCF\n0xE455\t0x8CD7\n0xE456\t0x8D96\n0xE457\t0x8E09\n0xE458\t0x8E02\n0xE459\t0x8DFF\n0xE45A\t0x8E0D\n0xE45B\t0x8DFD\n0xE45C\t0x8E0A\n0xE45D\t0x8E03\n0xE45E\t0x8E07\n0xE45F\t0x8E06\n0xE460\t0x8E05\n0xE461\t0x8DFE\n0xE462\t0x8E00\n0xE463\t0x8E04\n0xE464\t0x8F10\n0xE465\t0x8F11\n0xE466\t0x8F0E\n0xE467\t0x8F0D\n0xE468\t0x9123\n0xE469\t0x911C\n0xE46A\t0x9120\n0xE46B\t0x9122\n0xE46C\t0x911F\n0xE46D\t0x911D\n0xE46E\t0x911A\n0xE46F\t0x9124\n0xE470\t0x9121\n0xE471\t0x911B\n0xE472\t0x917A\n0xE473\t0x9172\n0xE474\t0x9179\n0xE475\t0x9173\n0xE476\t0x92A5\n0xE477\t0x92A4\n0xE478\t0x9276\n0xE479\t0x929B\n0xE47A\t0x927A\n0xE47B\t0x92A0\n0xE47C\t0x9294\n0xE47D\t0x92AA\n0xE47E\t0x928D\n0xE4A1\t0x92A6\n0xE4A2\t0x929A\n0xE4A3\t0x92AB\n0xE4A4\t0x9279\n0xE4A5\t0x9297\n0xE4A6\t0x927F\n0xE4A7\t0x92A3\n0xE4A8\t0x92EE\n0xE4A9\t0x928E\n0xE4AA\t0x9282\n0xE4AB\t0x9295\n0xE4AC\t0x92A2\n0xE4AD\t0x927D\n0xE4AE\t0x9288\n0xE4AF\t0x92A1\n0xE4B0\t0x928A\n0xE4B1\t0x9286\n0xE4B2\t0x928C\n0xE4B3\t0x9299\n0xE4B4\t0x92A7\n0xE4B5\t0x927E\n0xE4B6\t0x9287\n0xE4B7\t0x92A9\n0xE4B8\t0x929D\n0xE4B9\t0x928B\n0xE4BA\t0x922D\n0xE4BB\t0x969E\n0xE4BC\t0x96A1\n0xE4BD\t0x96FF\n0xE4BE\t0x9758\n0xE4BF\t0x977D\n0xE4C0\t0x977A\n0xE4C1\t0x977E\n0xE4C2\t0x9783\n0xE4C3\t0x9780\n0xE4C4\t0x9782\n0xE4C5\t0x977B\n0xE4C6\t0x9784\n0xE4C7\t0x9781\n0xE4C8\t0x977F\n0xE4C9\t0x97CE\n0xE4CA\t0x97CD\n0xE4CB\t0x9816\n0xE4CC\t0x98AD\n0xE4CD\t0x98AE\n0xE4CE\t0x9902\n0xE4CF\t0x9900\n0xE4D0\t0x9907\n0xE4D1\t0x999D\n0xE4D2\t0x999C\n0xE4D3\t0x99C3\n0xE4D4\t0x99B9\n0xE4D5\t0x99BB\n0xE4D6\t0x99BA\n0xE4D7\t0x99C2\n0xE4D8\t0x99BD\n0xE4D9\t0x99C7\n0xE4DA\t0x9AB1\n0xE4DB\t0x9AE3\n0xE4DC\t0x9AE7\n0xE4DD\t0x9B3E\n0xE4DE\t0x9B3F\n0xE4DF\t0x9B60\n0xE4E0\t0x9B61\n0xE4E1\t0x9B5F\n0xE4E2\t0x9CF1\n0xE4E3\t0x9CF2\n0xE4E4\t0x9CF5\n0xE4E5\t0x9EA7\n0xE4E6\t0x50FF\n0xE4E7\t0x5103\n0xE4E8\t0x5130\n0xE4E9\t0x50F8\n0xE4EA\t0x5106\n0xE4EB\t0x5107\n0xE4EC\t0x50F6\n0xE4ED\t0x50FE\n0xE4EE\t0x510B\n0xE4EF\t0x510C\n0xE4F0\t0x50FD\n0xE4F1\t0x510A\n0xE4F2\t0x528B\n0xE4F3\t0x528C\n0xE4F4\t0x52F1\n0xE4F5\t0x52EF\n0xE4F6\t0x5648\n0xE4F7\t0x5642\n0xE4F8\t0x564C\n0xE4F9\t0x5635\n0xE4FA\t0x5641\n0xE4FB\t0x564A\n0xE4FC\t0x5649\n0xE4FD\t0x5646\n0xE4FE\t0x5658\n0xE540\t0x565A\n0xE541\t0x5640\n0xE542\t0x5633\n0xE543\t0x563D\n0xE544\t0x562C\n0xE545\t0x563E\n0xE546\t0x5638\n0xE547\t0x562A\n0xE548\t0x563A\n0xE549\t0x571A\n0xE54A\t0x58AB\n0xE54B\t0x589D\n0xE54C\t0x58B1\n0xE54D\t0x58A0\n0xE54E\t0x58A3\n0xE54F\t0x58AF\n0xE550\t0x58AC\n0xE551\t0x58A5\n0xE552\t0x58A1\n0xE553\t0x58FF\n0xE554\t0x5AFF\n0xE555\t0x5AF4\n0xE556\t0x5AFD\n0xE557\t0x5AF7\n0xE558\t0x5AF6\n0xE559\t0x5B03\n0xE55A\t0x5AF8\n0xE55B\t0x5B02\n0xE55C\t0x5AF9\n0xE55D\t0x5B01\n0xE55E\t0x5B07\n0xE55F\t0x5B05\n0xE560\t0x5B0F\n0xE561\t0x5C67\n0xE562\t0x5D99\n0xE563\t0x5D97\n0xE564\t0x5D9F\n0xE565\t0x5D92\n0xE566\t0x5DA2\n0xE567\t0x5D93\n0xE568\t0x5D95\n0xE569\t0x5DA0\n0xE56A\t0x5D9C\n0xE56B\t0x5DA1\n0xE56C\t0x5D9A\n0xE56D\t0x5D9E\n0xE56E\t0x5E69\n0xE56F\t0x5E5D\n0xE570\t0x5E60\n0xE571\t0x5E5C\n0xE572\t0x7DF3\n0xE573\t0x5EDB\n0xE574\t0x5EDE\n0xE575\t0x5EE1\n0xE576\t0x5F49\n0xE577\t0x5FB2\n0xE578\t0x618B\n0xE579\t0x6183\n0xE57A\t0x6179\n0xE57B\t0x61B1\n0xE57C\t0x61B0\n0xE57D\t0x61A2\n0xE57E\t0x6189\n0xE5A1\t0x619B\n0xE5A2\t0x6193\n0xE5A3\t0x61AF\n0xE5A4\t0x61AD\n0xE5A5\t0x619F\n0xE5A6\t0x6192\n0xE5A7\t0x61AA\n0xE5A8\t0x61A1\n0xE5A9\t0x618D\n0xE5AA\t0x6166\n0xE5AB\t0x61B3\n0xE5AC\t0x622D\n0xE5AD\t0x646E\n0xE5AE\t0x6470\n0xE5AF\t0x6496\n0xE5B0\t0x64A0\n0xE5B1\t0x6485\n0xE5B2\t0x6497\n0xE5B3\t0x649C\n0xE5B4\t0x648F\n0xE5B5\t0x648B\n0xE5B6\t0x648A\n0xE5B7\t0x648C\n0xE5B8\t0x64A3\n0xE5B9\t0x649F\n0xE5BA\t0x6468\n0xE5BB\t0x64B1\n0xE5BC\t0x6498\n0xE5BD\t0x6576\n0xE5BE\t0x657A\n0xE5BF\t0x6579\n0xE5C0\t0x657B\n0xE5C1\t0x65B2\n0xE5C2\t0x65B3\n0xE5C3\t0x66B5\n0xE5C4\t0x66B0\n0xE5C5\t0x66A9\n0xE5C6\t0x66B2\n0xE5C7\t0x66B7\n0xE5C8\t0x66AA\n0xE5C9\t0x66AF\n0xE5CA\t0x6A00\n0xE5CB\t0x6A06\n0xE5CC\t0x6A17\n0xE5CD\t0x69E5\n0xE5CE\t0x69F8\n0xE5CF\t0x6A15\n0xE5D0\t0x69F1\n0xE5D1\t0x69E4\n0xE5D2\t0x6A20\n0xE5D3\t0x69FF\n0xE5D4\t0x69EC\n0xE5D5\t0x69E2\n0xE5D6\t0x6A1B\n0xE5D7\t0x6A1D\n0xE5D8\t0x69FE\n0xE5D9\t0x6A27\n0xE5DA\t0x69F2\n0xE5DB\t0x69EE\n0xE5DC\t0x6A14\n0xE5DD\t0x69F7\n0xE5DE\t0x69E7\n0xE5DF\t0x6A40\n0xE5E0\t0x6A08\n0xE5E1\t0x69E6\n0xE5E2\t0x69FB\n0xE5E3\t0x6A0D\n0xE5E4\t0x69FC\n0xE5E5\t0x69EB\n0xE5E6\t0x6A09\n0xE5E7\t0x6A04\n0xE5E8\t0x6A18\n0xE5E9\t0x6A25\n0xE5EA\t0x6A0F\n0xE5EB\t0x69F6\n0xE5EC\t0x6A26\n0xE5ED\t0x6A07\n0xE5EE\t0x69F4\n0xE5EF\t0x6A16\n0xE5F0\t0x6B51\n0xE5F1\t0x6BA5\n0xE5F2\t0x6BA3\n0xE5F3\t0x6BA2\n0xE5F4\t0x6BA6\n0xE5F5\t0x6C01\n0xE5F6\t0x6C00\n0xE5F7\t0x6BFF\n0xE5F8\t0x6C02\n0xE5F9\t0x6F41\n0xE5FA\t0x6F26\n0xE5FB\t0x6F7E\n0xE5FC\t0x6F87\n0xE5FD\t0x6FC6\n0xE5FE\t0x6F92\n0xE640\t0x6F8D\n0xE641\t0x6F89\n0xE642\t0x6F8C\n0xE643\t0x6F62\n0xE644\t0x6F4F\n0xE645\t0x6F85\n0xE646\t0x6F5A\n0xE647\t0x6F96\n0xE648\t0x6F76\n0xE649\t0x6F6C\n0xE64A\t0x6F82\n0xE64B\t0x6F55\n0xE64C\t0x6F72\n0xE64D\t0x6F52\n0xE64E\t0x6F50\n0xE64F\t0x6F57\n0xE650\t0x6F94\n0xE651\t0x6F93\n0xE652\t0x6F5D\n0xE653\t0x6F00\n0xE654\t0x6F61\n0xE655\t0x6F6B\n0xE656\t0x6F7D\n0xE657\t0x6F67\n0xE658\t0x6F90\n0xE659\t0x6F53\n0xE65A\t0x6F8B\n0xE65B\t0x6F69\n0xE65C\t0x6F7F\n0xE65D\t0x6F95\n0xE65E\t0x6F63\n0xE65F\t0x6F77\n0xE660\t0x6F6A\n0xE661\t0x6F7B\n0xE662\t0x71B2\n0xE663\t0x71AF\n0xE664\t0x719B\n0xE665\t0x71B0\n0xE666\t0x71A0\n0xE667\t0x719A\n0xE668\t0x71A9\n0xE669\t0x71B5\n0xE66A\t0x719D\n0xE66B\t0x71A5\n0xE66C\t0x719E\n0xE66D\t0x71A4\n0xE66E\t0x71A1\n0xE66F\t0x71AA\n0xE670\t0x719C\n0xE671\t0x71A7\n0xE672\t0x71B3\n0xE673\t0x7298\n0xE674\t0x729A\n0xE675\t0x7358\n0xE676\t0x7352\n0xE677\t0x735E\n0xE678\t0x735F\n0xE679\t0x7360\n0xE67A\t0x735D\n0xE67B\t0x735B\n0xE67C\t0x7361\n0xE67D\t0x735A\n0xE67E\t0x7359\n0xE6A1\t0x7362\n0xE6A2\t0x7487\n0xE6A3\t0x7489\n0xE6A4\t0x748A\n0xE6A5\t0x7486\n0xE6A6\t0x7481\n0xE6A7\t0x747D\n0xE6A8\t0x7485\n0xE6A9\t0x7488\n0xE6AA\t0x747C\n0xE6AB\t0x7479\n0xE6AC\t0x7508\n0xE6AD\t0x7507\n0xE6AE\t0x757E\n0xE6AF\t0x7625\n0xE6B0\t0x761E\n0xE6B1\t0x7619\n0xE6B2\t0x761D\n0xE6B3\t0x761C\n0xE6B4\t0x7623\n0xE6B5\t0x761A\n0xE6B6\t0x7628\n0xE6B7\t0x761B\n0xE6B8\t0x769C\n0xE6B9\t0x769D\n0xE6BA\t0x769E\n0xE6BB\t0x769B\n0xE6BC\t0x778D\n0xE6BD\t0x778F\n0xE6BE\t0x7789\n0xE6BF\t0x7788\n0xE6C0\t0x78CD\n0xE6C1\t0x78BB\n0xE6C2\t0x78CF\n0xE6C3\t0x78CC\n0xE6C4\t0x78D1\n0xE6C5\t0x78CE\n0xE6C6\t0x78D4\n0xE6C7\t0x78C8\n0xE6C8\t0x78C3\n0xE6C9\t0x78C4\n0xE6CA\t0x78C9\n0xE6CB\t0x799A\n0xE6CC\t0x79A1\n0xE6CD\t0x79A0\n0xE6CE\t0x799C\n0xE6CF\t0x79A2\n0xE6D0\t0x799B\n0xE6D1\t0x6B76\n0xE6D2\t0x7A39\n0xE6D3\t0x7AB2\n0xE6D4\t0x7AB4\n0xE6D5\t0x7AB3\n0xE6D6\t0x7BB7\n0xE6D7\t0x7BCB\n0xE6D8\t0x7BBE\n0xE6D9\t0x7BAC\n0xE6DA\t0x7BCE\n0xE6DB\t0x7BAF\n0xE6DC\t0x7BB9\n0xE6DD\t0x7BCA\n0xE6DE\t0x7BB5\n0xE6DF\t0x7CC5\n0xE6E0\t0x7CC8\n0xE6E1\t0x7CCC\n0xE6E2\t0x7CCB\n0xE6E3\t0x7DF7\n0xE6E4\t0x7DDB\n0xE6E5\t0x7DEA\n0xE6E6\t0x7DE7\n0xE6E7\t0x7DD7\n0xE6E8\t0x7DE1\n0xE6E9\t0x7E03\n0xE6EA\t0x7DFA\n0xE6EB\t0x7DE6\n0xE6EC\t0x7DF6\n0xE6ED\t0x7DF1\n0xE6EE\t0x7DF0\n0xE6EF\t0x7DEE\n0xE6F0\t0x7DDF\n0xE6F1\t0x7F76\n0xE6F2\t0x7FAC\n0xE6F3\t0x7FB0\n0xE6F4\t0x7FAD\n0xE6F5\t0x7FED\n0xE6F6\t0x7FEB\n0xE6F7\t0x7FEA\n0xE6F8\t0x7FEC\n0xE6F9\t0x7FE6\n0xE6FA\t0x7FE8\n0xE6FB\t0x8064\n0xE6FC\t0x8067\n0xE6FD\t0x81A3\n0xE6FE\t0x819F\n0xE740\t0x819E\n0xE741\t0x8195\n0xE742\t0x81A2\n0xE743\t0x8199\n0xE744\t0x8197\n0xE745\t0x8216\n0xE746\t0x824F\n0xE747\t0x8253\n0xE748\t0x8252\n0xE749\t0x8250\n0xE74A\t0x824E\n0xE74B\t0x8251\n0xE74C\t0x8524\n0xE74D\t0x853B\n0xE74E\t0x850F\n0xE74F\t0x8500\n0xE750\t0x8529\n0xE751\t0x850E\n0xE752\t0x8509\n0xE753\t0x850D\n0xE754\t0x851F\n0xE755\t0x850A\n0xE756\t0x8527\n0xE757\t0x851C\n0xE758\t0x84FB\n0xE759\t0x852B\n0xE75A\t0x84FA\n0xE75B\t0x8508\n0xE75C\t0x850C\n0xE75D\t0x84F4\n0xE75E\t0x852A\n0xE75F\t0x84F2\n0xE760\t0x8515\n0xE761\t0x84F7\n0xE762\t0x84EB\n0xE763\t0x84F3\n0xE764\t0x84FC\n0xE765\t0x8512\n0xE766\t0x84EA\n0xE767\t0x84E9\n0xE768\t0x8516\n0xE769\t0x84FE\n0xE76A\t0x8528\n0xE76B\t0x851D\n0xE76C\t0x852E\n0xE76D\t0x8502\n0xE76E\t0x84FD\n0xE76F\t0x851E\n0xE770\t0x84F6\n0xE771\t0x8531\n0xE772\t0x8526\n0xE773\t0x84E7\n0xE774\t0x84E8\n0xE775\t0x84F0\n0xE776\t0x84EF\n0xE777\t0x84F9\n0xE778\t0x8518\n0xE779\t0x8520\n0xE77A\t0x8530\n0xE77B\t0x850B\n0xE77C\t0x8519\n0xE77D\t0x852F\n0xE77E\t0x8662\n0xE7A1\t0x8756\n0xE7A2\t0x8763\n0xE7A3\t0x8764\n0xE7A4\t0x8777\n0xE7A5\t0x87E1\n0xE7A6\t0x8773\n0xE7A7\t0x8758\n0xE7A8\t0x8754\n0xE7A9\t0x875B\n0xE7AA\t0x8752\n0xE7AB\t0x8761\n0xE7AC\t0x875A\n0xE7AD\t0x8751\n0xE7AE\t0x875E\n0xE7AF\t0x876D\n0xE7B0\t0x876A\n0xE7B1\t0x8750\n0xE7B2\t0x874E\n0xE7B3\t0x875F\n0xE7B4\t0x875D\n0xE7B5\t0x876F\n0xE7B6\t0x876C\n0xE7B7\t0x877A\n0xE7B8\t0x876E\n0xE7B9\t0x875C\n0xE7BA\t0x8765\n0xE7BB\t0x874F\n0xE7BC\t0x877B\n0xE7BD\t0x8775\n0xE7BE\t0x8762\n0xE7BF\t0x8767\n0xE7C0\t0x8769\n0xE7C1\t0x885A\n0xE7C2\t0x8905\n0xE7C3\t0x890C\n0xE7C4\t0x8914\n0xE7C5\t0x890B\n0xE7C6\t0x8917\n0xE7C7\t0x8918\n0xE7C8\t0x8919\n0xE7C9\t0x8906\n0xE7CA\t0x8916\n0xE7CB\t0x8911\n0xE7CC\t0x890E\n0xE7CD\t0x8909\n0xE7CE\t0x89A2\n0xE7CF\t0x89A4\n0xE7D0\t0x89A3\n0xE7D1\t0x89ED\n0xE7D2\t0x89F0\n0xE7D3\t0x89EC\n0xE7D4\t0x8ACF\n0xE7D5\t0x8AC6\n0xE7D6\t0x8AB8\n0xE7D7\t0x8AD3\n0xE7D8\t0x8AD1\n0xE7D9\t0x8AD4\n0xE7DA\t0x8AD5\n0xE7DB\t0x8ABB\n0xE7DC\t0x8AD7\n0xE7DD\t0x8ABE\n0xE7DE\t0x8AC0\n0xE7DF\t0x8AC5\n0xE7E0\t0x8AD8\n0xE7E1\t0x8AC3\n0xE7E2\t0x8ABA\n0xE7E3\t0x8ABD\n0xE7E4\t0x8AD9\n0xE7E5\t0x8C3E\n0xE7E6\t0x8C4D\n0xE7E7\t0x8C8F\n0xE7E8\t0x8CE5\n0xE7E9\t0x8CDF\n0xE7EA\t0x8CD9\n0xE7EB\t0x8CE8\n0xE7EC\t0x8CDA\n0xE7ED\t0x8CDD\n0xE7EE\t0x8CE7\n0xE7EF\t0x8DA0\n0xE7F0\t0x8D9C\n0xE7F1\t0x8DA1\n0xE7F2\t0x8D9B\n0xE7F3\t0x8E20\n0xE7F4\t0x8E23\n0xE7F5\t0x8E25\n0xE7F6\t0x8E24\n0xE7F7\t0x8E2E\n0xE7F8\t0x8E15\n0xE7F9\t0x8E1B\n0xE7FA\t0x8E16\n0xE7FB\t0x8E11\n0xE7FC\t0x8E19\n0xE7FD\t0x8E26\n0xE7FE\t0x8E27\n0xE840\t0x8E14\n0xE841\t0x8E12\n0xE842\t0x8E18\n0xE843\t0x8E13\n0xE844\t0x8E1C\n0xE845\t0x8E17\n0xE846\t0x8E1A\n0xE847\t0x8F2C\n0xE848\t0x8F24\n0xE849\t0x8F18\n0xE84A\t0x8F1A\n0xE84B\t0x8F20\n0xE84C\t0x8F23\n0xE84D\t0x8F16\n0xE84E\t0x8F17\n0xE84F\t0x9073\n0xE850\t0x9070\n0xE851\t0x906F\n0xE852\t0x9067\n0xE853\t0x906B\n0xE854\t0x912F\n0xE855\t0x912B\n0xE856\t0x9129\n0xE857\t0x912A\n0xE858\t0x9132\n0xE859\t0x9126\n0xE85A\t0x912E\n0xE85B\t0x9185\n0xE85C\t0x9186\n0xE85D\t0x918A\n0xE85E\t0x9181\n0xE85F\t0x9182\n0xE860\t0x9184\n0xE861\t0x9180\n0xE862\t0x92D0\n0xE863\t0x92C3\n0xE864\t0x92C4\n0xE865\t0x92C0\n0xE866\t0x92D9\n0xE867\t0x92B6\n0xE868\t0x92CF\n0xE869\t0x92F1\n0xE86A\t0x92DF\n0xE86B\t0x92D8\n0xE86C\t0x92E9\n0xE86D\t0x92D7\n0xE86E\t0x92DD\n0xE86F\t0x92CC\n0xE870\t0x92EF\n0xE871\t0x92C2\n0xE872\t0x92E8\n0xE873\t0x92CA\n0xE874\t0x92C8\n0xE875\t0x92CE\n0xE876\t0x92E6\n0xE877\t0x92CD\n0xE878\t0x92D5\n0xE879\t0x92C9\n0xE87A\t0x92E0\n0xE87B\t0x92DE\n0xE87C\t0x92E7\n0xE87D\t0x92D1\n0xE87E\t0x92D3\n0xE8A1\t0x92B5\n0xE8A2\t0x92E1\n0xE8A3\t0x92C6\n0xE8A4\t0x92B4\n0xE8A5\t0x957C\n0xE8A6\t0x95AC\n0xE8A7\t0x95AB\n0xE8A8\t0x95AE\n0xE8A9\t0x95B0\n0xE8AA\t0x96A4\n0xE8AB\t0x96A2\n0xE8AC\t0x96D3\n0xE8AD\t0x9705\n0xE8AE\t0x9708\n0xE8AF\t0x9702\n0xE8B0\t0x975A\n0xE8B1\t0x978A\n0xE8B2\t0x978E\n0xE8B3\t0x9788\n0xE8B4\t0x97D0\n0xE8B5\t0x97CF\n0xE8B6\t0x981E\n0xE8B7\t0x981D\n0xE8B8\t0x9826\n0xE8B9\t0x9829\n0xE8BA\t0x9828\n0xE8BB\t0x9820\n0xE8BC\t0x981B\n0xE8BD\t0x9827\n0xE8BE\t0x98B2\n0xE8BF\t0x9908\n0xE8C0\t0x98FA\n0xE8C1\t0x9911\n0xE8C2\t0x9914\n0xE8C3\t0x9916\n0xE8C4\t0x9917\n0xE8C5\t0x9915\n0xE8C6\t0x99DC\n0xE8C7\t0x99CD\n0xE8C8\t0x99CF\n0xE8C9\t0x99D3\n0xE8CA\t0x99D4\n0xE8CB\t0x99CE\n0xE8CC\t0x99C9\n0xE8CD\t0x99D6\n0xE8CE\t0x99D8\n0xE8CF\t0x99CB\n0xE8D0\t0x99D7\n0xE8D1\t0x99CC\n0xE8D2\t0x9AB3\n0xE8D3\t0x9AEC\n0xE8D4\t0x9AEB\n0xE8D5\t0x9AF3\n0xE8D6\t0x9AF2\n0xE8D7\t0x9AF1\n0xE8D8\t0x9B46\n0xE8D9\t0x9B43\n0xE8DA\t0x9B67\n0xE8DB\t0x9B74\n0xE8DC\t0x9B71\n0xE8DD\t0x9B66\n0xE8DE\t0x9B76\n0xE8DF\t0x9B75\n0xE8E0\t0x9B70\n0xE8E1\t0x9B68\n0xE8E2\t0x9B64\n0xE8E3\t0x9B6C\n0xE8E4\t0x9CFC\n0xE8E5\t0x9CFA\n0xE8E6\t0x9CFD\n0xE8E7\t0x9CFF\n0xE8E8\t0x9CF7\n0xE8E9\t0x9D07\n0xE8EA\t0x9D00\n0xE8EB\t0x9CF9\n0xE8EC\t0x9CFB\n0xE8ED\t0x9D08\n0xE8EE\t0x9D05\n0xE8EF\t0x9D04\n0xE8F0\t0x9E83\n0xE8F1\t0x9ED3\n0xE8F2\t0x9F0F\n0xE8F3\t0x9F10\n0xE8F4\t0x511C\n0xE8F5\t0x5113\n0xE8F6\t0x5117\n0xE8F7\t0x511A\n0xE8F8\t0x5111\n0xE8F9\t0x51DE\n0xE8FA\t0x5334\n0xE8FB\t0x53E1\n0xE8FC\t0x5670\n0xE8FD\t0x5660\n0xE8FE\t0x566E\n0xE940\t0x5673\n0xE941\t0x5666\n0xE942\t0x5663\n0xE943\t0x566D\n0xE944\t0x5672\n0xE945\t0x565E\n0xE946\t0x5677\n0xE947\t0x571C\n0xE948\t0x571B\n0xE949\t0x58C8\n0xE94A\t0x58BD\n0xE94B\t0x58C9\n0xE94C\t0x58BF\n0xE94D\t0x58BA\n0xE94E\t0x58C2\n0xE94F\t0x58BC\n0xE950\t0x58C6\n0xE951\t0x5B17\n0xE952\t0x5B19\n0xE953\t0x5B1B\n0xE954\t0x5B21\n0xE955\t0x5B14\n0xE956\t0x5B13\n0xE957\t0x5B10\n0xE958\t0x5B16\n0xE959\t0x5B28\n0xE95A\t0x5B1A\n0xE95B\t0x5B20\n0xE95C\t0x5B1E\n0xE95D\t0x5BEF\n0xE95E\t0x5DAC\n0xE95F\t0x5DB1\n0xE960\t0x5DA9\n0xE961\t0x5DA7\n0xE962\t0x5DB5\n0xE963\t0x5DB0\n0xE964\t0x5DAE\n0xE965\t0x5DAA\n0xE966\t0x5DA8\n0xE967\t0x5DB2\n0xE968\t0x5DAD\n0xE969\t0x5DAF\n0xE96A\t0x5DB4\n0xE96B\t0x5E67\n0xE96C\t0x5E68\n0xE96D\t0x5E66\n0xE96E\t0x5E6F\n0xE96F\t0x5EE9\n0xE970\t0x5EE7\n0xE971\t0x5EE6\n0xE972\t0x5EE8\n0xE973\t0x5EE5\n0xE974\t0x5F4B\n0xE975\t0x5FBC\n0xE976\t0x619D\n0xE977\t0x61A8\n0xE978\t0x6196\n0xE979\t0x61C5\n0xE97A\t0x61B4\n0xE97B\t0x61C6\n0xE97C\t0x61C1\n0xE97D\t0x61CC\n0xE97E\t0x61BA\n0xE9A1\t0x61BF\n0xE9A2\t0x61B8\n0xE9A3\t0x618C\n0xE9A4\t0x64D7\n0xE9A5\t0x64D6\n0xE9A6\t0x64D0\n0xE9A7\t0x64CF\n0xE9A8\t0x64C9\n0xE9A9\t0x64BD\n0xE9AA\t0x6489\n0xE9AB\t0x64C3\n0xE9AC\t0x64DB\n0xE9AD\t0x64F3\n0xE9AE\t0x64D9\n0xE9AF\t0x6533\n0xE9B0\t0x657F\n0xE9B1\t0x657C\n0xE9B2\t0x65A2\n0xE9B3\t0x66C8\n0xE9B4\t0x66BE\n0xE9B5\t0x66C0\n0xE9B6\t0x66CA\n0xE9B7\t0x66CB\n0xE9B8\t0x66CF\n0xE9B9\t0x66BD\n0xE9BA\t0x66BB\n0xE9BB\t0x66BA\n0xE9BC\t0x66CC\n0xE9BD\t0x6723\n0xE9BE\t0x6A34\n0xE9BF\t0x6A66\n0xE9C0\t0x6A49\n0xE9C1\t0x6A67\n0xE9C2\t0x6A32\n0xE9C3\t0x6A68\n0xE9C4\t0x6A3E\n0xE9C5\t0x6A5D\n0xE9C6\t0x6A6D\n0xE9C7\t0x6A76\n0xE9C8\t0x6A5B\n0xE9C9\t0x6A51\n0xE9CA\t0x6A28\n0xE9CB\t0x6A5A\n0xE9CC\t0x6A3B\n0xE9CD\t0x6A3F\n0xE9CE\t0x6A41\n0xE9CF\t0x6A6A\n0xE9D0\t0x6A64\n0xE9D1\t0x6A50\n0xE9D2\t0x6A4F\n0xE9D3\t0x6A54\n0xE9D4\t0x6A6F\n0xE9D5\t0x6A69\n0xE9D6\t0x6A60\n0xE9D7\t0x6A3C\n0xE9D8\t0x6A5E\n0xE9D9\t0x6A56\n0xE9DA\t0x6A55\n0xE9DB\t0x6A4D\n0xE9DC\t0x6A4E\n0xE9DD\t0x6A46\n0xE9DE\t0x6B55\n0xE9DF\t0x6B54\n0xE9E0\t0x6B56\n0xE9E1\t0x6BA7\n0xE9E2\t0x6BAA\n0xE9E3\t0x6BAB\n0xE9E4\t0x6BC8\n0xE9E5\t0x6BC7\n0xE9E6\t0x6C04\n0xE9E7\t0x6C03\n0xE9E8\t0x6C06\n0xE9E9\t0x6FAD\n0xE9EA\t0x6FCB\n0xE9EB\t0x6FA3\n0xE9EC\t0x6FC7\n0xE9ED\t0x6FBC\n0xE9EE\t0x6FCE\n0xE9EF\t0x6FC8\n0xE9F0\t0x6F5E\n0xE9F1\t0x6FC4\n0xE9F2\t0x6FBD\n0xE9F3\t0x6F9E\n0xE9F4\t0x6FCA\n0xE9F5\t0x6FA8\n0xE9F6\t0x7004\n0xE9F7\t0x6FA5\n0xE9F8\t0x6FAE\n0xE9F9\t0x6FBA\n0xE9FA\t0x6FAC\n0xE9FB\t0x6FAA\n0xE9FC\t0x6FCF\n0xE9FD\t0x6FBF\n0xE9FE\t0x6FB8\n0xEA40\t0x6FA2\n0xEA41\t0x6FC9\n0xEA42\t0x6FAB\n0xEA43\t0x6FCD\n0xEA44\t0x6FAF\n0xEA45\t0x6FB2\n0xEA46\t0x6FB0\n0xEA47\t0x71C5\n0xEA48\t0x71C2\n0xEA49\t0x71BF\n0xEA4A\t0x71B8\n0xEA4B\t0x71D6\n0xEA4C\t0x71C0\n0xEA4D\t0x71C1\n0xEA4E\t0x71CB\n0xEA4F\t0x71D4\n0xEA50\t0x71CA\n0xEA51\t0x71C7\n0xEA52\t0x71CF\n0xEA53\t0x71BD\n0xEA54\t0x71D8\n0xEA55\t0x71BC\n0xEA56\t0x71C6\n0xEA57\t0x71DA\n0xEA58\t0x71DB\n0xEA59\t0x729D\n0xEA5A\t0x729E\n0xEA5B\t0x7369\n0xEA5C\t0x7366\n0xEA5D\t0x7367\n0xEA5E\t0x736C\n0xEA5F\t0x7365\n0xEA60\t0x736B\n0xEA61\t0x736A\n0xEA62\t0x747F\n0xEA63\t0x749A\n0xEA64\t0x74A0\n0xEA65\t0x7494\n0xEA66\t0x7492\n0xEA67\t0x7495\n0xEA68\t0x74A1\n0xEA69\t0x750B\n0xEA6A\t0x7580\n0xEA6B\t0x762F\n0xEA6C\t0x762D\n0xEA6D\t0x7631\n0xEA6E\t0x763D\n0xEA6F\t0x7633\n0xEA70\t0x763C\n0xEA71\t0x7635\n0xEA72\t0x7632\n0xEA73\t0x7630\n0xEA74\t0x76BB\n0xEA75\t0x76E6\n0xEA76\t0x779A\n0xEA77\t0x779D\n0xEA78\t0x77A1\n0xEA79\t0x779C\n0xEA7A\t0x779B\n0xEA7B\t0x77A2\n0xEA7C\t0x77A3\n0xEA7D\t0x7795\n0xEA7E\t0x7799\n0xEAA1\t0x7797\n0xEAA2\t0x78DD\n0xEAA3\t0x78E9\n0xEAA4\t0x78E5\n0xEAA5\t0x78EA\n0xEAA6\t0x78DE\n0xEAA7\t0x78E3\n0xEAA8\t0x78DB\n0xEAA9\t0x78E1\n0xEAAA\t0x78E2\n0xEAAB\t0x78ED\n0xEAAC\t0x78DF\n0xEAAD\t0x78E0\n0xEAAE\t0x79A4\n0xEAAF\t0x7A44\n0xEAB0\t0x7A48\n0xEAB1\t0x7A47\n0xEAB2\t0x7AB6\n0xEAB3\t0x7AB8\n0xEAB4\t0x7AB5\n0xEAB5\t0x7AB1\n0xEAB6\t0x7AB7\n0xEAB7\t0x7BDE\n0xEAB8\t0x7BE3\n0xEAB9\t0x7BE7\n0xEABA\t0x7BDD\n0xEABB\t0x7BD5\n0xEABC\t0x7BE5\n0xEABD\t0x7BDA\n0xEABE\t0x7BE8\n0xEABF\t0x7BF9\n0xEAC0\t0x7BD4\n0xEAC1\t0x7BEA\n0xEAC2\t0x7BE2\n0xEAC3\t0x7BDC\n0xEAC4\t0x7BEB\n0xEAC5\t0x7BD8\n0xEAC6\t0x7BDF\n0xEAC7\t0x7CD2\n0xEAC8\t0x7CD4\n0xEAC9\t0x7CD7\n0xEACA\t0x7CD0\n0xEACB\t0x7CD1\n0xEACC\t0x7E12\n0xEACD\t0x7E21\n0xEACE\t0x7E17\n0xEACF\t0x7E0C\n0xEAD0\t0x7E1F\n0xEAD1\t0x7E20\n0xEAD2\t0x7E13\n0xEAD3\t0x7E0E\n0xEAD4\t0x7E1C\n0xEAD5\t0x7E15\n0xEAD6\t0x7E1A\n0xEAD7\t0x7E22\n0xEAD8\t0x7E0B\n0xEAD9\t0x7E0F\n0xEADA\t0x7E16\n0xEADB\t0x7E0D\n0xEADC\t0x7E14\n0xEADD\t0x7E25\n0xEADE\t0x7E24\n0xEADF\t0x7F43\n0xEAE0\t0x7F7B\n0xEAE1\t0x7F7C\n0xEAE2\t0x7F7A\n0xEAE3\t0x7FB1\n0xEAE4\t0x7FEF\n0xEAE5\t0x802A\n0xEAE6\t0x8029\n0xEAE7\t0x806C\n0xEAE8\t0x81B1\n0xEAE9\t0x81A6\n0xEAEA\t0x81AE\n0xEAEB\t0x81B9\n0xEAEC\t0x81B5\n0xEAED\t0x81AB\n0xEAEE\t0x81B0\n0xEAEF\t0x81AC\n0xEAF0\t0x81B4\n0xEAF1\t0x81B2\n0xEAF2\t0x81B7\n0xEAF3\t0x81A7\n0xEAF4\t0x81F2\n0xEAF5\t0x8255\n0xEAF6\t0x8256\n0xEAF7\t0x8257\n0xEAF8\t0x8556\n0xEAF9\t0x8545\n0xEAFA\t0x856B\n0xEAFB\t0x854D\n0xEAFC\t0x8553\n0xEAFD\t0x8561\n0xEAFE\t0x8558\n0xEB40\t0x8540\n0xEB41\t0x8546\n0xEB42\t0x8564\n0xEB43\t0x8541\n0xEB44\t0x8562\n0xEB45\t0x8544\n0xEB46\t0x8551\n0xEB47\t0x8547\n0xEB48\t0x8563\n0xEB49\t0x853E\n0xEB4A\t0x855B\n0xEB4B\t0x8571\n0xEB4C\t0x854E\n0xEB4D\t0x856E\n0xEB4E\t0x8575\n0xEB4F\t0x8555\n0xEB50\t0x8567\n0xEB51\t0x8560\n0xEB52\t0x858C\n0xEB53\t0x8566\n0xEB54\t0x855D\n0xEB55\t0x8554\n0xEB56\t0x8565\n0xEB57\t0x856C\n0xEB58\t0x8663\n0xEB59\t0x8665\n0xEB5A\t0x8664\n0xEB5B\t0x879B\n0xEB5C\t0x878F\n0xEB5D\t0x8797\n0xEB5E\t0x8793\n0xEB5F\t0x8792\n0xEB60\t0x8788\n0xEB61\t0x8781\n0xEB62\t0x8796\n0xEB63\t0x8798\n0xEB64\t0x8779\n0xEB65\t0x8787\n0xEB66\t0x87A3\n0xEB67\t0x8785\n0xEB68\t0x8790\n0xEB69\t0x8791\n0xEB6A\t0x879D\n0xEB6B\t0x8784\n0xEB6C\t0x8794\n0xEB6D\t0x879C\n0xEB6E\t0x879A\n0xEB6F\t0x8789\n0xEB70\t0x891E\n0xEB71\t0x8926\n0xEB72\t0x8930\n0xEB73\t0x892D\n0xEB74\t0x892E\n0xEB75\t0x8927\n0xEB76\t0x8931\n0xEB77\t0x8922\n0xEB78\t0x8929\n0xEB79\t0x8923\n0xEB7A\t0x892F\n0xEB7B\t0x892C\n0xEB7C\t0x891F\n0xEB7D\t0x89F1\n0xEB7E\t0x8AE0\n0xEBA1\t0x8AE2\n0xEBA2\t0x8AF2\n0xEBA3\t0x8AF4\n0xEBA4\t0x8AF5\n0xEBA5\t0x8ADD\n0xEBA6\t0x8B14\n0xEBA7\t0x8AE4\n0xEBA8\t0x8ADF\n0xEBA9\t0x8AF0\n0xEBAA\t0x8AC8\n0xEBAB\t0x8ADE\n0xEBAC\t0x8AE1\n0xEBAD\t0x8AE8\n0xEBAE\t0x8AFF\n0xEBAF\t0x8AEF\n0xEBB0\t0x8AFB\n0xEBB1\t0x8C91\n0xEBB2\t0x8C92\n0xEBB3\t0x8C90\n0xEBB4\t0x8CF5\n0xEBB5\t0x8CEE\n0xEBB6\t0x8CF1\n0xEBB7\t0x8CF0\n0xEBB8\t0x8CF3\n0xEBB9\t0x8D6C\n0xEBBA\t0x8D6E\n0xEBBB\t0x8DA5\n0xEBBC\t0x8DA7\n0xEBBD\t0x8E33\n0xEBBE\t0x8E3E\n0xEBBF\t0x8E38\n0xEBC0\t0x8E40\n0xEBC1\t0x8E45\n0xEBC2\t0x8E36\n0xEBC3\t0x8E3C\n0xEBC4\t0x8E3D\n0xEBC5\t0x8E41\n0xEBC6\t0x8E30\n0xEBC7\t0x8E3F\n0xEBC8\t0x8EBD\n0xEBC9\t0x8F36\n0xEBCA\t0x8F2E\n0xEBCB\t0x8F35\n0xEBCC\t0x8F32\n0xEBCD\t0x8F39\n0xEBCE\t0x8F37\n0xEBCF\t0x8F34\n0xEBD0\t0x9076\n0xEBD1\t0x9079\n0xEBD2\t0x907B\n0xEBD3\t0x9086\n0xEBD4\t0x90FA\n0xEBD5\t0x9133\n0xEBD6\t0x9135\n0xEBD7\t0x9136\n0xEBD8\t0x9193\n0xEBD9\t0x9190\n0xEBDA\t0x9191\n0xEBDB\t0x918D\n0xEBDC\t0x918F\n0xEBDD\t0x9327\n0xEBDE\t0x931E\n0xEBDF\t0x9308\n0xEBE0\t0x931F\n0xEBE1\t0x9306\n0xEBE2\t0x930F\n0xEBE3\t0x937A\n0xEBE4\t0x9338\n0xEBE5\t0x933C\n0xEBE6\t0x931B\n0xEBE7\t0x9323\n0xEBE8\t0x9312\n0xEBE9\t0x9301\n0xEBEA\t0x9346\n0xEBEB\t0x932D\n0xEBEC\t0x930E\n0xEBED\t0x930D\n0xEBEE\t0x92CB\n0xEBEF\t0x931D\n0xEBF0\t0x92FA\n0xEBF1\t0x9325\n0xEBF2\t0x9313\n0xEBF3\t0x92F9\n0xEBF4\t0x92F7\n0xEBF5\t0x9334\n0xEBF6\t0x9302\n0xEBF7\t0x9324\n0xEBF8\t0x92FF\n0xEBF9\t0x9329\n0xEBFA\t0x9339\n0xEBFB\t0x9335\n0xEBFC\t0x932A\n0xEBFD\t0x9314\n0xEBFE\t0x930C\n0xEC40\t0x930B\n0xEC41\t0x92FE\n0xEC42\t0x9309\n0xEC43\t0x9300\n0xEC44\t0x92FB\n0xEC45\t0x9316\n0xEC46\t0x95BC\n0xEC47\t0x95CD\n0xEC48\t0x95BE\n0xEC49\t0x95B9\n0xEC4A\t0x95BA\n0xEC4B\t0x95B6\n0xEC4C\t0x95BF\n0xEC4D\t0x95B5\n0xEC4E\t0x95BD\n0xEC4F\t0x96A9\n0xEC50\t0x96D4\n0xEC51\t0x970B\n0xEC52\t0x9712\n0xEC53\t0x9710\n0xEC54\t0x9799\n0xEC55\t0x9797\n0xEC56\t0x9794\n0xEC57\t0x97F0\n0xEC58\t0x97F8\n0xEC59\t0x9835\n0xEC5A\t0x982F\n0xEC5B\t0x9832\n0xEC5C\t0x9924\n0xEC5D\t0x991F\n0xEC5E\t0x9927\n0xEC5F\t0x9929\n0xEC60\t0x999E\n0xEC61\t0x99EE\n0xEC62\t0x99EC\n0xEC63\t0x99E5\n0xEC64\t0x99E4\n0xEC65\t0x99F0\n0xEC66\t0x99E3\n0xEC67\t0x99EA\n0xEC68\t0x99E9\n0xEC69\t0x99E7\n0xEC6A\t0x9AB9\n0xEC6B\t0x9ABF\n0xEC6C\t0x9AB4\n0xEC6D\t0x9ABB\n0xEC6E\t0x9AF6\n0xEC6F\t0x9AFA\n0xEC70\t0x9AF9\n0xEC71\t0x9AF7\n0xEC72\t0x9B33\n0xEC73\t0x9B80\n0xEC74\t0x9B85\n0xEC75\t0x9B87\n0xEC76\t0x9B7C\n0xEC77\t0x9B7E\n0xEC78\t0x9B7B\n0xEC79\t0x9B82\n0xEC7A\t0x9B93\n0xEC7B\t0x9B92\n0xEC7C\t0x9B90\n0xEC7D\t0x9B7A\n0xEC7E\t0x9B95\n0xECA1\t0x9B7D\n0xECA2\t0x9B88\n0xECA3\t0x9D25\n0xECA4\t0x9D17\n0xECA5\t0x9D20\n0xECA6\t0x9D1E\n0xECA7\t0x9D14\n0xECA8\t0x9D29\n0xECA9\t0x9D1D\n0xECAA\t0x9D18\n0xECAB\t0x9D22\n0xECAC\t0x9D10\n0xECAD\t0x9D19\n0xECAE\t0x9D1F\n0xECAF\t0x9E88\n0xECB0\t0x9E86\n0xECB1\t0x9E87\n0xECB2\t0x9EAE\n0xECB3\t0x9EAD\n0xECB4\t0x9ED5\n0xECB5\t0x9ED6\n0xECB6\t0x9EFA\n0xECB7\t0x9F12\n0xECB8\t0x9F3D\n0xECB9\t0x5126\n0xECBA\t0x5125\n0xECBB\t0x5122\n0xECBC\t0x5124\n0xECBD\t0x5120\n0xECBE\t0x5129\n0xECBF\t0x52F4\n0xECC0\t0x5693\n0xECC1\t0x568C\n0xECC2\t0x568D\n0xECC3\t0x5686\n0xECC4\t0x5684\n0xECC5\t0x5683\n0xECC6\t0x567E\n0xECC7\t0x5682\n0xECC8\t0x567F\n0xECC9\t0x5681\n0xECCA\t0x58D6\n0xECCB\t0x58D4\n0xECCC\t0x58CF\n0xECCD\t0x58D2\n0xECCE\t0x5B2D\n0xECCF\t0x5B25\n0xECD0\t0x5B32\n0xECD1\t0x5B23\n0xECD2\t0x5B2C\n0xECD3\t0x5B27\n0xECD4\t0x5B26\n0xECD5\t0x5B2F\n0xECD6\t0x5B2E\n0xECD7\t0x5B7B\n0xECD8\t0x5BF1\n0xECD9\t0x5BF2\n0xECDA\t0x5DB7\n0xECDB\t0x5E6C\n0xECDC\t0x5E6A\n0xECDD\t0x5FBE\n0xECDE\t0x5FBB\n0xECDF\t0x61C3\n0xECE0\t0x61B5\n0xECE1\t0x61BC\n0xECE2\t0x61E7\n0xECE3\t0x61E0\n0xECE4\t0x61E5\n0xECE5\t0x61E4\n0xECE6\t0x61E8\n0xECE7\t0x61DE\n0xECE8\t0x64EF\n0xECE9\t0x64E9\n0xECEA\t0x64E3\n0xECEB\t0x64EB\n0xECEC\t0x64E4\n0xECED\t0x64E8\n0xECEE\t0x6581\n0xECEF\t0x6580\n0xECF0\t0x65B6\n0xECF1\t0x65DA\n0xECF2\t0x66D2\n0xECF3\t0x6A8D\n0xECF4\t0x6A96\n0xECF5\t0x6A81\n0xECF6\t0x6AA5\n0xECF7\t0x6A89\n0xECF8\t0x6A9F\n0xECF9\t0x6A9B\n0xECFA\t0x6AA1\n0xECFB\t0x6A9E\n0xECFC\t0x6A87\n0xECFD\t0x6A93\n0xECFE\t0x6A8E\n0xED40\t0x6A95\n0xED41\t0x6A83\n0xED42\t0x6AA8\n0xED43\t0x6AA4\n0xED44\t0x6A91\n0xED45\t0x6A7F\n0xED46\t0x6AA6\n0xED47\t0x6A9A\n0xED48\t0x6A85\n0xED49\t0x6A8C\n0xED4A\t0x6A92\n0xED4B\t0x6B5B\n0xED4C\t0x6BAD\n0xED4D\t0x6C09\n0xED4E\t0x6FCC\n0xED4F\t0x6FA9\n0xED50\t0x6FF4\n0xED51\t0x6FD4\n0xED52\t0x6FE3\n0xED53\t0x6FDC\n0xED54\t0x6FED\n0xED55\t0x6FE7\n0xED56\t0x6FE6\n0xED57\t0x6FDE\n0xED58\t0x6FF2\n0xED59\t0x6FDD\n0xED5A\t0x6FE2\n0xED5B\t0x6FE8\n0xED5C\t0x71E1\n0xED5D\t0x71F1\n0xED5E\t0x71E8\n0xED5F\t0x71F2\n0xED60\t0x71E4\n0xED61\t0x71F0\n0xED62\t0x71E2\n0xED63\t0x7373\n0xED64\t0x736E\n0xED65\t0x736F\n0xED66\t0x7497\n0xED67\t0x74B2\n0xED68\t0x74AB\n0xED69\t0x7490\n0xED6A\t0x74AA\n0xED6B\t0x74AD\n0xED6C\t0x74B1\n0xED6D\t0x74A5\n0xED6E\t0x74AF\n0xED6F\t0x7510\n0xED70\t0x7511\n0xED71\t0x7512\n0xED72\t0x750F\n0xED73\t0x7584\n0xED74\t0x7643\n0xED75\t0x7648\n0xED76\t0x7649\n0xED77\t0x7647\n0xED78\t0x76A4\n0xED79\t0x76E9\n0xED7A\t0x77B5\n0xED7B\t0x77AB\n0xED7C\t0x77B2\n0xED7D\t0x77B7\n0xED7E\t0x77B6\n0xEDA1\t0x77B4\n0xEDA2\t0x77B1\n0xEDA3\t0x77A8\n0xEDA4\t0x77F0\n0xEDA5\t0x78F3\n0xEDA6\t0x78FD\n0xEDA7\t0x7902\n0xEDA8\t0x78FB\n0xEDA9\t0x78FC\n0xEDAA\t0x78F2\n0xEDAB\t0x7905\n0xEDAC\t0x78F9\n0xEDAD\t0x78FE\n0xEDAE\t0x7904\n0xEDAF\t0x79AB\n0xEDB0\t0x79A8\n0xEDB1\t0x7A5C\n0xEDB2\t0x7A5B\n0xEDB3\t0x7A56\n0xEDB4\t0x7A58\n0xEDB5\t0x7A54\n0xEDB6\t0x7A5A\n0xEDB7\t0x7ABE\n0xEDB8\t0x7AC0\n0xEDB9\t0x7AC1\n0xEDBA\t0x7C05\n0xEDBB\t0x7C0F\n0xEDBC\t0x7BF2\n0xEDBD\t0x7C00\n0xEDBE\t0x7BFF\n0xEDBF\t0x7BFB\n0xEDC0\t0x7C0E\n0xEDC1\t0x7BF4\n0xEDC2\t0x7C0B\n0xEDC3\t0x7BF3\n0xEDC4\t0x7C02\n0xEDC5\t0x7C09\n0xEDC6\t0x7C03\n0xEDC7\t0x7C01\n0xEDC8\t0x7BF8\n0xEDC9\t0x7BFD\n0xEDCA\t0x7C06\n0xEDCB\t0x7BF0\n0xEDCC\t0x7BF1\n0xEDCD\t0x7C10\n0xEDCE\t0x7C0A\n0xEDCF\t0x7CE8\n0xEDD0\t0x7E2D\n0xEDD1\t0x7E3C\n0xEDD2\t0x7E42\n0xEDD3\t0x7E33\n0xEDD4\t0x9848\n0xEDD5\t0x7E38\n0xEDD6\t0x7E2A\n0xEDD7\t0x7E49\n0xEDD8\t0x7E40\n0xEDD9\t0x7E47\n0xEDDA\t0x7E29\n0xEDDB\t0x7E4C\n0xEDDC\t0x7E30\n0xEDDD\t0x7E3B\n0xEDDE\t0x7E36\n0xEDDF\t0x7E44\n0xEDE0\t0x7E3A\n0xEDE1\t0x7F45\n0xEDE2\t0x7F7F\n0xEDE3\t0x7F7E\n0xEDE4\t0x7F7D\n0xEDE5\t0x7FF4\n0xEDE6\t0x7FF2\n0xEDE7\t0x802C\n0xEDE8\t0x81BB\n0xEDE9\t0x81C4\n0xEDEA\t0x81CC\n0xEDEB\t0x81CA\n0xEDEC\t0x81C5\n0xEDED\t0x81C7\n0xEDEE\t0x81BC\n0xEDEF\t0x81E9\n0xEDF0\t0x825B\n0xEDF1\t0x825A\n0xEDF2\t0x825C\n0xEDF3\t0x8583\n0xEDF4\t0x8580\n0xEDF5\t0x858F\n0xEDF6\t0x85A7\n0xEDF7\t0x8595\n0xEDF8\t0x85A0\n0xEDF9\t0x858B\n0xEDFA\t0x85A3\n0xEDFB\t0x857B\n0xEDFC\t0x85A4\n0xEDFD\t0x859A\n0xEDFE\t0x859E\n0xEE40\t0x8577\n0xEE41\t0x857C\n0xEE42\t0x8589\n0xEE43\t0x85A1\n0xEE44\t0x857A\n0xEE45\t0x8578\n0xEE46\t0x8557\n0xEE47\t0x858E\n0xEE48\t0x8596\n0xEE49\t0x8586\n0xEE4A\t0x858D\n0xEE4B\t0x8599\n0xEE4C\t0x859D\n0xEE4D\t0x8581\n0xEE4E\t0x85A2\n0xEE4F\t0x8582\n0xEE50\t0x8588\n0xEE51\t0x8585\n0xEE52\t0x8579\n0xEE53\t0x8576\n0xEE54\t0x8598\n0xEE55\t0x8590\n0xEE56\t0x859F\n0xEE57\t0x8668\n0xEE58\t0x87BE\n0xEE59\t0x87AA\n0xEE5A\t0x87AD\n0xEE5B\t0x87C5\n0xEE5C\t0x87B0\n0xEE5D\t0x87AC\n0xEE5E\t0x87B9\n0xEE5F\t0x87B5\n0xEE60\t0x87BC\n0xEE61\t0x87AE\n0xEE62\t0x87C9\n0xEE63\t0x87C3\n0xEE64\t0x87C2\n0xEE65\t0x87CC\n0xEE66\t0x87B7\n0xEE67\t0x87AF\n0xEE68\t0x87C4\n0xEE69\t0x87CA\n0xEE6A\t0x87B4\n0xEE6B\t0x87B6\n0xEE6C\t0x87BF\n0xEE6D\t0x87B8\n0xEE6E\t0x87BD\n0xEE6F\t0x87DE\n0xEE70\t0x87B2\n0xEE71\t0x8935\n0xEE72\t0x8933\n0xEE73\t0x893C\n0xEE74\t0x893E\n0xEE75\t0x8941\n0xEE76\t0x8952\n0xEE77\t0x8937\n0xEE78\t0x8942\n0xEE79\t0x89AD\n0xEE7A\t0x89AF\n0xEE7B\t0x89AE\n0xEE7C\t0x89F2\n0xEE7D\t0x89F3\n0xEE7E\t0x8B1E\n0xEEA1\t0x8B18\n0xEEA2\t0x8B16\n0xEEA3\t0x8B11\n0xEEA4\t0x8B05\n0xEEA5\t0x8B0B\n0xEEA6\t0x8B22\n0xEEA7\t0x8B0F\n0xEEA8\t0x8B12\n0xEEA9\t0x8B15\n0xEEAA\t0x8B07\n0xEEAB\t0x8B0D\n0xEEAC\t0x8B08\n0xEEAD\t0x8B06\n0xEEAE\t0x8B1C\n0xEEAF\t0x8B13\n0xEEB0\t0x8B1A\n0xEEB1\t0x8C4F\n0xEEB2\t0x8C70\n0xEEB3\t0x8C72\n0xEEB4\t0x8C71\n0xEEB5\t0x8C6F\n0xEEB6\t0x8C95\n0xEEB7\t0x8C94\n0xEEB8\t0x8CF9\n0xEEB9\t0x8D6F\n0xEEBA\t0x8E4E\n0xEEBB\t0x8E4D\n0xEEBC\t0x8E53\n0xEEBD\t0x8E50\n0xEEBE\t0x8E4C\n0xEEBF\t0x8E47\n0xEEC0\t0x8F43\n0xEEC1\t0x8F40\n0xEEC2\t0x9085\n0xEEC3\t0x907E\n0xEEC4\t0x9138\n0xEEC5\t0x919A\n0xEEC6\t0x91A2\n0xEEC7\t0x919B\n0xEEC8\t0x9199\n0xEEC9\t0x919F\n0xEECA\t0x91A1\n0xEECB\t0x919D\n0xEECC\t0x91A0\n0xEECD\t0x93A1\n0xEECE\t0x9383\n0xEECF\t0x93AF\n0xEED0\t0x9364\n0xEED1\t0x9356\n0xEED2\t0x9347\n0xEED3\t0x937C\n0xEED4\t0x9358\n0xEED5\t0x935C\n0xEED6\t0x9376\n0xEED7\t0x9349\n0xEED8\t0x9350\n0xEED9\t0x9351\n0xEEDA\t0x9360\n0xEEDB\t0x936D\n0xEEDC\t0x938F\n0xEEDD\t0x934C\n0xEEDE\t0x936A\n0xEEDF\t0x9379\n0xEEE0\t0x9357\n0xEEE1\t0x9355\n0xEEE2\t0x9352\n0xEEE3\t0x934F\n0xEEE4\t0x9371\n0xEEE5\t0x9377\n0xEEE6\t0x937B\n0xEEE7\t0x9361\n0xEEE8\t0x935E\n0xEEE9\t0x9363\n0xEEEA\t0x9367\n0xEEEB\t0x9380\n0xEEEC\t0x934E\n0xEEED\t0x9359\n0xEEEE\t0x95C7\n0xEEEF\t0x95C0\n0xEEF0\t0x95C9\n0xEEF1\t0x95C3\n0xEEF2\t0x95C5\n0xEEF3\t0x95B7\n0xEEF4\t0x96AE\n0xEEF5\t0x96B0\n0xEEF6\t0x96AC\n0xEEF7\t0x9720\n0xEEF8\t0x971F\n0xEEF9\t0x9718\n0xEEFA\t0x971D\n0xEEFB\t0x9719\n0xEEFC\t0x979A\n0xEEFD\t0x97A1\n0xEEFE\t0x979C\n0xEF40\t0x979E\n0xEF41\t0x979D\n0xEF42\t0x97D5\n0xEF43\t0x97D4\n0xEF44\t0x97F1\n0xEF45\t0x9841\n0xEF46\t0x9844\n0xEF47\t0x984A\n0xEF48\t0x9849\n0xEF49\t0x9845\n0xEF4A\t0x9843\n0xEF4B\t0x9925\n0xEF4C\t0x992B\n0xEF4D\t0x992C\n0xEF4E\t0x992A\n0xEF4F\t0x9933\n0xEF50\t0x9932\n0xEF51\t0x992F\n0xEF52\t0x992D\n0xEF53\t0x9931\n0xEF54\t0x9930\n0xEF55\t0x9998\n0xEF56\t0x99A3\n0xEF57\t0x99A1\n0xEF58\t0x9A02\n0xEF59\t0x99FA\n0xEF5A\t0x99F4\n0xEF5B\t0x99F7\n0xEF5C\t0x99F9\n0xEF5D\t0x99F8\n0xEF5E\t0x99F6\n0xEF5F\t0x99FB\n0xEF60\t0x99FD\n0xEF61\t0x99FE\n0xEF62\t0x99FC\n0xEF63\t0x9A03\n0xEF64\t0x9ABE\n0xEF65\t0x9AFE\n0xEF66\t0x9AFD\n0xEF67\t0x9B01\n0xEF68\t0x9AFC\n0xEF69\t0x9B48\n0xEF6A\t0x9B9A\n0xEF6B\t0x9BA8\n0xEF6C\t0x9B9E\n0xEF6D\t0x9B9B\n0xEF6E\t0x9BA6\n0xEF6F\t0x9BA1\n0xEF70\t0x9BA5\n0xEF71\t0x9BA4\n0xEF72\t0x9B86\n0xEF73\t0x9BA2\n0xEF74\t0x9BA0\n0xEF75\t0x9BAF\n0xEF76\t0x9D33\n0xEF77\t0x9D41\n0xEF78\t0x9D67\n0xEF79\t0x9D36\n0xEF7A\t0x9D2E\n0xEF7B\t0x9D2F\n0xEF7C\t0x9D31\n0xEF7D\t0x9D38\n0xEF7E\t0x9D30\n0xEFA1\t0x9D45\n0xEFA2\t0x9D42\n0xEFA3\t0x9D43\n0xEFA4\t0x9D3E\n0xEFA5\t0x9D37\n0xEFA6\t0x9D40\n0xEFA7\t0x9D3D\n0xEFA8\t0x7FF5\n0xEFA9\t0x9D2D\n0xEFAA\t0x9E8A\n0xEFAB\t0x9E89\n0xEFAC\t0x9E8D\n0xEFAD\t0x9EB0\n0xEFAE\t0x9EC8\n0xEFAF\t0x9EDA\n0xEFB0\t0x9EFB\n0xEFB1\t0x9EFF\n0xEFB2\t0x9F24\n0xEFB3\t0x9F23\n0xEFB4\t0x9F22\n0xEFB5\t0x9F54\n0xEFB6\t0x9FA0\n0xEFB7\t0x5131\n0xEFB8\t0x512D\n0xEFB9\t0x512E\n0xEFBA\t0x5698\n0xEFBB\t0x569C\n0xEFBC\t0x5697\n0xEFBD\t0x569A\n0xEFBE\t0x569D\n0xEFBF\t0x5699\n0xEFC0\t0x5970\n0xEFC1\t0x5B3C\n0xEFC2\t0x5C69\n0xEFC3\t0x5C6A\n0xEFC4\t0x5DC0\n0xEFC5\t0x5E6D\n0xEFC6\t0x5E6E\n0xEFC7\t0x61D8\n0xEFC8\t0x61DF\n0xEFC9\t0x61ED\n0xEFCA\t0x61EE\n0xEFCB\t0x61F1\n0xEFCC\t0x61EA\n0xEFCD\t0x61F0\n0xEFCE\t0x61EB\n0xEFCF\t0x61D6\n0xEFD0\t0x61E9\n0xEFD1\t0x64FF\n0xEFD2\t0x6504\n0xEFD3\t0x64FD\n0xEFD4\t0x64F8\n0xEFD5\t0x6501\n0xEFD6\t0x6503\n0xEFD7\t0x64FC\n0xEFD8\t0x6594\n0xEFD9\t0x65DB\n0xEFDA\t0x66DA\n0xEFDB\t0x66DB\n0xEFDC\t0x66D8\n0xEFDD\t0x6AC5\n0xEFDE\t0x6AB9\n0xEFDF\t0x6ABD\n0xEFE0\t0x6AE1\n0xEFE1\t0x6AC6\n0xEFE2\t0x6ABA\n0xEFE3\t0x6AB6\n0xEFE4\t0x6AB7\n0xEFE5\t0x6AC7\n0xEFE6\t0x6AB4\n0xEFE7\t0x6AAD\n0xEFE8\t0x6B5E\n0xEFE9\t0x6BC9\n0xEFEA\t0x6C0B\n0xEFEB\t0x7007\n0xEFEC\t0x700C\n0xEFED\t0x700D\n0xEFEE\t0x7001\n0xEFEF\t0x7005\n0xEFF0\t0x7014\n0xEFF1\t0x700E\n0xEFF2\t0x6FFF\n0xEFF3\t0x7000\n0xEFF4\t0x6FFB\n0xEFF5\t0x7026\n0xEFF6\t0x6FFC\n0xEFF7\t0x6FF7\n0xEFF8\t0x700A\n0xEFF9\t0x7201\n0xEFFA\t0x71FF\n0xEFFB\t0x71F9\n0xEFFC\t0x7203\n0xEFFD\t0x71FD\n0xEFFE\t0x7376\n0xF040\t0x74B8\n0xF041\t0x74C0\n0xF042\t0x74B5\n0xF043\t0x74C1\n0xF044\t0x74BE\n0xF045\t0x74B6\n0xF046\t0x74BB\n0xF047\t0x74C2\n0xF048\t0x7514\n0xF049\t0x7513\n0xF04A\t0x765C\n0xF04B\t0x7664\n0xF04C\t0x7659\n0xF04D\t0x7650\n0xF04E\t0x7653\n0xF04F\t0x7657\n0xF050\t0x765A\n0xF051\t0x76A6\n0xF052\t0x76BD\n0xF053\t0x76EC\n0xF054\t0x77C2\n0xF055\t0x77BA\n0xF056\t0x78FF\n0xF057\t0x790C\n0xF058\t0x7913\n0xF059\t0x7914\n0xF05A\t0x7909\n0xF05B\t0x7910\n0xF05C\t0x7912\n0xF05D\t0x7911\n0xF05E\t0x79AD\n0xF05F\t0x79AC\n0xF060\t0x7A5F\n0xF061\t0x7C1C\n0xF062\t0x7C29\n0xF063\t0x7C19\n0xF064\t0x7C20\n0xF065\t0x7C1F\n0xF066\t0x7C2D\n0xF067\t0x7C1D\n0xF068\t0x7C26\n0xF069\t0x7C28\n0xF06A\t0x7C22\n0xF06B\t0x7C25\n0xF06C\t0x7C30\n0xF06D\t0x7E5C\n0xF06E\t0x7E50\n0xF06F\t0x7E56\n0xF070\t0x7E63\n0xF071\t0x7E58\n0xF072\t0x7E62\n0xF073\t0x7E5F\n0xF074\t0x7E51\n0xF075\t0x7E60\n0xF076\t0x7E57\n0xF077\t0x7E53\n0xF078\t0x7FB5\n0xF079\t0x7FB3\n0xF07A\t0x7FF7\n0xF07B\t0x7FF8\n0xF07C\t0x8075\n0xF07D\t0x81D1\n0xF07E\t0x81D2\n0xF0A1\t0x81D0\n0xF0A2\t0x825F\n0xF0A3\t0x825E\n0xF0A4\t0x85B4\n0xF0A5\t0x85C6\n0xF0A6\t0x85C0\n0xF0A7\t0x85C3\n0xF0A8\t0x85C2\n0xF0A9\t0x85B3\n0xF0AA\t0x85B5\n0xF0AB\t0x85BD\n0xF0AC\t0x85C7\n0xF0AD\t0x85C4\n0xF0AE\t0x85BF\n0xF0AF\t0x85CB\n0xF0B0\t0x85CE\n0xF0B1\t0x85C8\n0xF0B2\t0x85C5\n0xF0B3\t0x85B1\n0xF0B4\t0x85B6\n0xF0B5\t0x85D2\n0xF0B6\t0x8624\n0xF0B7\t0x85B8\n0xF0B8\t0x85B7\n0xF0B9\t0x85BE\n0xF0BA\t0x8669\n0xF0BB\t0x87E7\n0xF0BC\t0x87E6\n0xF0BD\t0x87E2\n0xF0BE\t0x87DB\n0xF0BF\t0x87EB\n0xF0C0\t0x87EA\n0xF0C1\t0x87E5\n0xF0C2\t0x87DF\n0xF0C3\t0x87F3\n0xF0C4\t0x87E4\n0xF0C5\t0x87D4\n0xF0C6\t0x87DC\n0xF0C7\t0x87D3\n0xF0C8\t0x87ED\n0xF0C9\t0x87D8\n0xF0CA\t0x87E3\n0xF0CB\t0x87A4\n0xF0CC\t0x87D7\n0xF0CD\t0x87D9\n0xF0CE\t0x8801\n0xF0CF\t0x87F4\n0xF0D0\t0x87E8\n0xF0D1\t0x87DD\n0xF0D2\t0x8953\n0xF0D3\t0x894B\n0xF0D4\t0x894F\n0xF0D5\t0x894C\n0xF0D6\t0x8946\n0xF0D7\t0x8950\n0xF0D8\t0x8951\n0xF0D9\t0x8949\n0xF0DA\t0x8B2A\n0xF0DB\t0x8B27\n0xF0DC\t0x8B23\n0xF0DD\t0x8B33\n0xF0DE\t0x8B30\n0xF0DF\t0x8B35\n0xF0E0\t0x8B47\n0xF0E1\t0x8B2F\n0xF0E2\t0x8B3C\n0xF0E3\t0x8B3E\n0xF0E4\t0x8B31\n0xF0E5\t0x8B25\n0xF0E6\t0x8B37\n0xF0E7\t0x8B26\n0xF0E8\t0x8B36\n0xF0E9\t0x8B2E\n0xF0EA\t0x8B24\n0xF0EB\t0x8B3B\n0xF0EC\t0x8B3D\n0xF0ED\t0x8B3A\n0xF0EE\t0x8C42\n0xF0EF\t0x8C75\n0xF0F0\t0x8C99\n0xF0F1\t0x8C98\n0xF0F2\t0x8C97\n0xF0F3\t0x8CFE\n0xF0F4\t0x8D04\n0xF0F5\t0x8D02\n0xF0F6\t0x8D00\n0xF0F7\t0x8E5C\n0xF0F8\t0x8E62\n0xF0F9\t0x8E60\n0xF0FA\t0x8E57\n0xF0FB\t0x8E56\n0xF0FC\t0x8E5E\n0xF0FD\t0x8E65\n0xF0FE\t0x8E67\n0xF140\t0x8E5B\n0xF141\t0x8E5A\n0xF142\t0x8E61\n0xF143\t0x8E5D\n0xF144\t0x8E69\n0xF145\t0x8E54\n0xF146\t0x8F46\n0xF147\t0x8F47\n0xF148\t0x8F48\n0xF149\t0x8F4B\n0xF14A\t0x9128\n0xF14B\t0x913A\n0xF14C\t0x913B\n0xF14D\t0x913E\n0xF14E\t0x91A8\n0xF14F\t0x91A5\n0xF150\t0x91A7\n0xF151\t0x91AF\n0xF152\t0x91AA\n0xF153\t0x93B5\n0xF154\t0x938C\n0xF155\t0x9392\n0xF156\t0x93B7\n0xF157\t0x939B\n0xF158\t0x939D\n0xF159\t0x9389\n0xF15A\t0x93A7\n0xF15B\t0x938E\n0xF15C\t0x93AA\n0xF15D\t0x939E\n0xF15E\t0x93A6\n0xF15F\t0x9395\n0xF160\t0x9388\n0xF161\t0x9399\n0xF162\t0x939F\n0xF163\t0x938D\n0xF164\t0x93B1\n0xF165\t0x9391\n0xF166\t0x93B2\n0xF167\t0x93A4\n0xF168\t0x93A8\n0xF169\t0x93B4\n0xF16A\t0x93A3\n0xF16B\t0x93A5\n0xF16C\t0x95D2\n0xF16D\t0x95D3\n0xF16E\t0x95D1\n0xF16F\t0x96B3\n0xF170\t0x96D7\n0xF171\t0x96DA\n0xF172\t0x5DC2\n0xF173\t0x96DF\n0xF174\t0x96D8\n0xF175\t0x96DD\n0xF176\t0x9723\n0xF177\t0x9722\n0xF178\t0x9725\n0xF179\t0x97AC\n0xF17A\t0x97AE\n0xF17B\t0x97A8\n0xF17C\t0x97AB\n0xF17D\t0x97A4\n0xF17E\t0x97AA\n0xF1A1\t0x97A2\n0xF1A2\t0x97A5\n0xF1A3\t0x97D7\n0xF1A4\t0x97D9\n0xF1A5\t0x97D6\n0xF1A6\t0x97D8\n0xF1A7\t0x97FA\n0xF1A8\t0x9850\n0xF1A9\t0x9851\n0xF1AA\t0x9852\n0xF1AB\t0x98B8\n0xF1AC\t0x9941\n0xF1AD\t0x993C\n0xF1AE\t0x993A\n0xF1AF\t0x9A0F\n0xF1B0\t0x9A0B\n0xF1B1\t0x9A09\n0xF1B2\t0x9A0D\n0xF1B3\t0x9A04\n0xF1B4\t0x9A11\n0xF1B5\t0x9A0A\n0xF1B6\t0x9A05\n0xF1B7\t0x9A07\n0xF1B8\t0x9A06\n0xF1B9\t0x9AC0\n0xF1BA\t0x9ADC\n0xF1BB\t0x9B08\n0xF1BC\t0x9B04\n0xF1BD\t0x9B05\n0xF1BE\t0x9B29\n0xF1BF\t0x9B35\n0xF1C0\t0x9B4A\n0xF1C1\t0x9B4C\n0xF1C2\t0x9B4B\n0xF1C3\t0x9BC7\n0xF1C4\t0x9BC6\n0xF1C5\t0x9BC3\n0xF1C6\t0x9BBF\n0xF1C7\t0x9BC1\n0xF1C8\t0x9BB5\n0xF1C9\t0x9BB8\n0xF1CA\t0x9BD3\n0xF1CB\t0x9BB6\n0xF1CC\t0x9BC4\n0xF1CD\t0x9BB9\n0xF1CE\t0x9BBD\n0xF1CF\t0x9D5C\n0xF1D0\t0x9D53\n0xF1D1\t0x9D4F\n0xF1D2\t0x9D4A\n0xF1D3\t0x9D5B\n0xF1D4\t0x9D4B\n0xF1D5\t0x9D59\n0xF1D6\t0x9D56\n0xF1D7\t0x9D4C\n0xF1D8\t0x9D57\n0xF1D9\t0x9D52\n0xF1DA\t0x9D54\n0xF1DB\t0x9D5F\n0xF1DC\t0x9D58\n0xF1DD\t0x9D5A\n0xF1DE\t0x9E8E\n0xF1DF\t0x9E8C\n0xF1E0\t0x9EDF\n0xF1E1\t0x9F01\n0xF1E2\t0x9F00\n0xF1E3\t0x9F16\n0xF1E4\t0x9F25\n0xF1E5\t0x9F2B\n0xF1E6\t0x9F2A\n0xF1E7\t0x9F29\n0xF1E8\t0x9F28\n0xF1E9\t0x9F4C\n0xF1EA\t0x9F55\n0xF1EB\t0x5134\n0xF1EC\t0x5135\n0xF1ED\t0x5296\n0xF1EE\t0x52F7\n0xF1EF\t0x53B4\n0xF1F0\t0x56AB\n0xF1F1\t0x56AD\n0xF1F2\t0x56A6\n0xF1F3\t0x56A7\n0xF1F4\t0x56AA\n0xF1F5\t0x56AC\n0xF1F6\t0x58DA\n0xF1F7\t0x58DD\n0xF1F8\t0x58DB\n0xF1F9\t0x5912\n0xF1FA\t0x5B3D\n0xF1FB\t0x5B3E\n0xF1FC\t0x5B3F\n0xF1FD\t0x5DC3\n0xF1FE\t0x5E70\n0xF240\t0x5FBF\n0xF241\t0x61FB\n0xF242\t0x6507\n0xF243\t0x6510\n0xF244\t0x650D\n0xF245\t0x6509\n0xF246\t0x650C\n0xF247\t0x650E\n0xF248\t0x6584\n0xF249\t0x65DE\n0xF24A\t0x65DD\n0xF24B\t0x66DE\n0xF24C\t0x6AE7\n0xF24D\t0x6AE0\n0xF24E\t0x6ACC\n0xF24F\t0x6AD1\n0xF250\t0x6AD9\n0xF251\t0x6ACB\n0xF252\t0x6ADF\n0xF253\t0x6ADC\n0xF254\t0x6AD0\n0xF255\t0x6AEB\n0xF256\t0x6ACF\n0xF257\t0x6ACD\n0xF258\t0x6ADE\n0xF259\t0x6B60\n0xF25A\t0x6BB0\n0xF25B\t0x6C0C\n0xF25C\t0x7019\n0xF25D\t0x7027\n0xF25E\t0x7020\n0xF25F\t0x7016\n0xF260\t0x702B\n0xF261\t0x7021\n0xF262\t0x7022\n0xF263\t0x7023\n0xF264\t0x7029\n0xF265\t0x7017\n0xF266\t0x7024\n0xF267\t0x701C\n0xF268\t0x702A\n0xF269\t0x720C\n0xF26A\t0x720A\n0xF26B\t0x7207\n0xF26C\t0x7202\n0xF26D\t0x7205\n0xF26E\t0x72A5\n0xF26F\t0x72A6\n0xF270\t0x72A4\n0xF271\t0x72A3\n0xF272\t0x72A1\n0xF273\t0x74CB\n0xF274\t0x74C5\n0xF275\t0x74B7\n0xF276\t0x74C3\n0xF277\t0x7516\n0xF278\t0x7660\n0xF279\t0x77C9\n0xF27A\t0x77CA\n0xF27B\t0x77C4\n0xF27C\t0x77F1\n0xF27D\t0x791D\n0xF27E\t0x791B\n0xF2A1\t0x7921\n0xF2A2\t0x791C\n0xF2A3\t0x7917\n0xF2A4\t0x791E\n0xF2A5\t0x79B0\n0xF2A6\t0x7A67\n0xF2A7\t0x7A68\n0xF2A8\t0x7C33\n0xF2A9\t0x7C3C\n0xF2AA\t0x7C39\n0xF2AB\t0x7C2C\n0xF2AC\t0x7C3B\n0xF2AD\t0x7CEC\n0xF2AE\t0x7CEA\n0xF2AF\t0x7E76\n0xF2B0\t0x7E75\n0xF2B1\t0x7E78\n0xF2B2\t0x7E70\n0xF2B3\t0x7E77\n0xF2B4\t0x7E6F\n0xF2B5\t0x7E7A\n0xF2B6\t0x7E72\n0xF2B7\t0x7E74\n0xF2B8\t0x7E68\n0xF2B9\t0x7F4B\n0xF2BA\t0x7F4A\n0xF2BB\t0x7F83\n0xF2BC\t0x7F86\n0xF2BD\t0x7FB7\n0xF2BE\t0x7FFD\n0xF2BF\t0x7FFE\n0xF2C0\t0x8078\n0xF2C1\t0x81D7\n0xF2C2\t0x81D5\n0xF2C3\t0x8264\n0xF2C4\t0x8261\n0xF2C5\t0x8263\n0xF2C6\t0x85EB\n0xF2C7\t0x85F1\n0xF2C8\t0x85ED\n0xF2C9\t0x85D9\n0xF2CA\t0x85E1\n0xF2CB\t0x85E8\n0xF2CC\t0x85DA\n0xF2CD\t0x85D7\n0xF2CE\t0x85EC\n0xF2CF\t0x85F2\n0xF2D0\t0x85F8\n0xF2D1\t0x85D8\n0xF2D2\t0x85DF\n0xF2D3\t0x85E3\n0xF2D4\t0x85DC\n0xF2D5\t0x85D1\n0xF2D6\t0x85F0\n0xF2D7\t0x85E6\n0xF2D8\t0x85EF\n0xF2D9\t0x85DE\n0xF2DA\t0x85E2\n0xF2DB\t0x8800\n0xF2DC\t0x87FA\n0xF2DD\t0x8803\n0xF2DE\t0x87F6\n0xF2DF\t0x87F7\n0xF2E0\t0x8809\n0xF2E1\t0x880C\n0xF2E2\t0x880B\n0xF2E3\t0x8806\n0xF2E4\t0x87FC\n0xF2E5\t0x8808\n0xF2E6\t0x87FF\n0xF2E7\t0x880A\n0xF2E8\t0x8802\n0xF2E9\t0x8962\n0xF2EA\t0x895A\n0xF2EB\t0x895B\n0xF2EC\t0x8957\n0xF2ED\t0x8961\n0xF2EE\t0x895C\n0xF2EF\t0x8958\n0xF2F0\t0x895D\n0xF2F1\t0x8959\n0xF2F2\t0x8988\n0xF2F3\t0x89B7\n0xF2F4\t0x89B6\n0xF2F5\t0x89F6\n0xF2F6\t0x8B50\n0xF2F7\t0x8B48\n0xF2F8\t0x8B4A\n0xF2F9\t0x8B40\n0xF2FA\t0x8B53\n0xF2FB\t0x8B56\n0xF2FC\t0x8B54\n0xF2FD\t0x8B4B\n0xF2FE\t0x8B55\n0xF340\t0x8B51\n0xF341\t0x8B42\n0xF342\t0x8B52\n0xF343\t0x8B57\n0xF344\t0x8C43\n0xF345\t0x8C77\n0xF346\t0x8C76\n0xF347\t0x8C9A\n0xF348\t0x8D06\n0xF349\t0x8D07\n0xF34A\t0x8D09\n0xF34B\t0x8DAC\n0xF34C\t0x8DAA\n0xF34D\t0x8DAD\n0xF34E\t0x8DAB\n0xF34F\t0x8E6D\n0xF350\t0x8E78\n0xF351\t0x8E73\n0xF352\t0x8E6A\n0xF353\t0x8E6F\n0xF354\t0x8E7B\n0xF355\t0x8EC2\n0xF356\t0x8F52\n0xF357\t0x8F51\n0xF358\t0x8F4F\n0xF359\t0x8F50\n0xF35A\t0x8F53\n0xF35B\t0x8FB4\n0xF35C\t0x9140\n0xF35D\t0x913F\n0xF35E\t0x91B0\n0xF35F\t0x91AD\n0xF360\t0x93DE\n0xF361\t0x93C7\n0xF362\t0x93CF\n0xF363\t0x93C2\n0xF364\t0x93DA\n0xF365\t0x93D0\n0xF366\t0x93F9\n0xF367\t0x93EC\n0xF368\t0x93CC\n0xF369\t0x93D9\n0xF36A\t0x93A9\n0xF36B\t0x93E6\n0xF36C\t0x93CA\n0xF36D\t0x93D4\n0xF36E\t0x93EE\n0xF36F\t0x93E3\n0xF370\t0x93D5\n0xF371\t0x93C4\n0xF372\t0x93CE\n0xF373\t0x93C0\n0xF374\t0x93D2\n0xF375\t0x93E7\n0xF376\t0x957D\n0xF377\t0x95DA\n0xF378\t0x95DB\n0xF379\t0x96E1\n0xF37A\t0x9729\n0xF37B\t0x972B\n0xF37C\t0x972C\n0xF37D\t0x9728\n0xF37E\t0x9726\n0xF3A1\t0x97B3\n0xF3A2\t0x97B7\n0xF3A3\t0x97B6\n0xF3A4\t0x97DD\n0xF3A5\t0x97DE\n0xF3A6\t0x97DF\n0xF3A7\t0x985C\n0xF3A8\t0x9859\n0xF3A9\t0x985D\n0xF3AA\t0x9857\n0xF3AB\t0x98BF\n0xF3AC\t0x98BD\n0xF3AD\t0x98BB\n0xF3AE\t0x98BE\n0xF3AF\t0x9948\n0xF3B0\t0x9947\n0xF3B1\t0x9943\n0xF3B2\t0x99A6\n0xF3B3\t0x99A7\n0xF3B4\t0x9A1A\n0xF3B5\t0x9A15\n0xF3B6\t0x9A25\n0xF3B7\t0x9A1D\n0xF3B8\t0x9A24\n0xF3B9\t0x9A1B\n0xF3BA\t0x9A22\n0xF3BB\t0x9A20\n0xF3BC\t0x9A27\n0xF3BD\t0x9A23\n0xF3BE\t0x9A1E\n0xF3BF\t0x9A1C\n0xF3C0\t0x9A14\n0xF3C1\t0x9AC2\n0xF3C2\t0x9B0B\n0xF3C3\t0x9B0A\n0xF3C4\t0x9B0E\n0xF3C5\t0x9B0C\n0xF3C6\t0x9B37\n0xF3C7\t0x9BEA\n0xF3C8\t0x9BEB\n0xF3C9\t0x9BE0\n0xF3CA\t0x9BDE\n0xF3CB\t0x9BE4\n0xF3CC\t0x9BE6\n0xF3CD\t0x9BE2\n0xF3CE\t0x9BF0\n0xF3CF\t0x9BD4\n0xF3D0\t0x9BD7\n0xF3D1\t0x9BEC\n0xF3D2\t0x9BDC\n0xF3D3\t0x9BD9\n0xF3D4\t0x9BE5\n0xF3D5\t0x9BD5\n0xF3D6\t0x9BE1\n0xF3D7\t0x9BDA\n0xF3D8\t0x9D77\n0xF3D9\t0x9D81\n0xF3DA\t0x9D8A\n0xF3DB\t0x9D84\n0xF3DC\t0x9D88\n0xF3DD\t0x9D71\n0xF3DE\t0x9D80\n0xF3DF\t0x9D78\n0xF3E0\t0x9D86\n0xF3E1\t0x9D8B\n0xF3E2\t0x9D8C\n0xF3E3\t0x9D7D\n0xF3E4\t0x9D6B\n0xF3E5\t0x9D74\n0xF3E6\t0x9D75\n0xF3E7\t0x9D70\n0xF3E8\t0x9D69\n0xF3E9\t0x9D85\n0xF3EA\t0x9D73\n0xF3EB\t0x9D7B\n0xF3EC\t0x9D82\n0xF3ED\t0x9D6F\n0xF3EE\t0x9D79\n0xF3EF\t0x9D7F\n0xF3F0\t0x9D87\n0xF3F1\t0x9D68\n0xF3F2\t0x9E94\n0xF3F3\t0x9E91\n0xF3F4\t0x9EC0\n0xF3F5\t0x9EFC\n0xF3F6\t0x9F2D\n0xF3F7\t0x9F40\n0xF3F8\t0x9F41\n0xF3F9\t0x9F4D\n0xF3FA\t0x9F56\n0xF3FB\t0x9F57\n0xF3FC\t0x9F58\n0xF3FD\t0x5337\n0xF3FE\t0x56B2\n0xF440\t0x56B5\n0xF441\t0x56B3\n0xF442\t0x58E3\n0xF443\t0x5B45\n0xF444\t0x5DC6\n0xF445\t0x5DC7\n0xF446\t0x5EEE\n0xF447\t0x5EEF\n0xF448\t0x5FC0\n0xF449\t0x5FC1\n0xF44A\t0x61F9\n0xF44B\t0x6517\n0xF44C\t0x6516\n0xF44D\t0x6515\n0xF44E\t0x6513\n0xF44F\t0x65DF\n0xF450\t0x66E8\n0xF451\t0x66E3\n0xF452\t0x66E4\n0xF453\t0x6AF3\n0xF454\t0x6AF0\n0xF455\t0x6AEA\n0xF456\t0x6AE8\n0xF457\t0x6AF9\n0xF458\t0x6AF1\n0xF459\t0x6AEE\n0xF45A\t0x6AEF\n0xF45B\t0x703C\n0xF45C\t0x7035\n0xF45D\t0x702F\n0xF45E\t0x7037\n0xF45F\t0x7034\n0xF460\t0x7031\n0xF461\t0x7042\n0xF462\t0x7038\n0xF463\t0x703F\n0xF464\t0x703A\n0xF465\t0x7039\n0xF466\t0x7040\n0xF467\t0x703B\n0xF468\t0x7033\n0xF469\t0x7041\n0xF46A\t0x7213\n0xF46B\t0x7214\n0xF46C\t0x72A8\n0xF46D\t0x737D\n0xF46E\t0x737C\n0xF46F\t0x74BA\n0xF470\t0x76AB\n0xF471\t0x76AA\n0xF472\t0x76BE\n0xF473\t0x76ED\n0xF474\t0x77CC\n0xF475\t0x77CE\n0xF476\t0x77CF\n0xF477\t0x77CD\n0xF478\t0x77F2\n0xF479\t0x7925\n0xF47A\t0x7923\n0xF47B\t0x7927\n0xF47C\t0x7928\n0xF47D\t0x7924\n0xF47E\t0x7929\n0xF4A1\t0x79B2\n0xF4A2\t0x7A6E\n0xF4A3\t0x7A6C\n0xF4A4\t0x7A6D\n0xF4A5\t0x7AF7\n0xF4A6\t0x7C49\n0xF4A7\t0x7C48\n0xF4A8\t0x7C4A\n0xF4A9\t0x7C47\n0xF4AA\t0x7C45\n0xF4AB\t0x7CEE\n0xF4AC\t0x7E7B\n0xF4AD\t0x7E7E\n0xF4AE\t0x7E81\n0xF4AF\t0x7E80\n0xF4B0\t0x7FBA\n0xF4B1\t0x7FFF\n0xF4B2\t0x8079\n0xF4B3\t0x81DB\n0xF4B4\t0x81D9\n0xF4B5\t0x820B\n0xF4B6\t0x8268\n0xF4B7\t0x8269\n0xF4B8\t0x8622\n0xF4B9\t0x85FF\n0xF4BA\t0x8601\n0xF4BB\t0x85FE\n0xF4BC\t0x861B\n0xF4BD\t0x8600\n0xF4BE\t0x85F6\n0xF4BF\t0x8604\n0xF4C0\t0x8609\n0xF4C1\t0x8605\n0xF4C2\t0x860C\n0xF4C3\t0x85FD\n0xF4C4\t0x8819\n0xF4C5\t0x8810\n0xF4C6\t0x8811\n0xF4C7\t0x8817\n0xF4C8\t0x8813\n0xF4C9\t0x8816\n0xF4CA\t0x8963\n0xF4CB\t0x8966\n0xF4CC\t0x89B9\n0xF4CD\t0x89F7\n0xF4CE\t0x8B60\n0xF4CF\t0x8B6A\n0xF4D0\t0x8B5D\n0xF4D1\t0x8B68\n0xF4D2\t0x8B63\n0xF4D3\t0x8B65\n0xF4D4\t0x8B67\n0xF4D5\t0x8B6D\n0xF4D6\t0x8DAE\n0xF4D7\t0x8E86\n0xF4D8\t0x8E88\n0xF4D9\t0x8E84\n0xF4DA\t0x8F59\n0xF4DB\t0x8F56\n0xF4DC\t0x8F57\n0xF4DD\t0x8F55\n0xF4DE\t0x8F58\n0xF4DF\t0x8F5A\n0xF4E0\t0x908D\n0xF4E1\t0x9143\n0xF4E2\t0x9141\n0xF4E3\t0x91B7\n0xF4E4\t0x91B5\n0xF4E5\t0x91B2\n0xF4E6\t0x91B3\n0xF4E7\t0x940B\n0xF4E8\t0x9413\n0xF4E9\t0x93FB\n0xF4EA\t0x9420\n0xF4EB\t0x940F\n0xF4EC\t0x9414\n0xF4ED\t0x93FE\n0xF4EE\t0x9415\n0xF4EF\t0x9410\n0xF4F0\t0x9428\n0xF4F1\t0x9419\n0xF4F2\t0x940D\n0xF4F3\t0x93F5\n0xF4F4\t0x9400\n0xF4F5\t0x93F7\n0xF4F6\t0x9407\n0xF4F7\t0x940E\n0xF4F8\t0x9416\n0xF4F9\t0x9412\n0xF4FA\t0x93FA\n0xF4FB\t0x9409\n0xF4FC\t0x93F8\n0xF4FD\t0x940A\n0xF4FE\t0x93FF\n0xF540\t0x93FC\n0xF541\t0x940C\n0xF542\t0x93F6\n0xF543\t0x9411\n0xF544\t0x9406\n0xF545\t0x95DE\n0xF546\t0x95E0\n0xF547\t0x95DF\n0xF548\t0x972E\n0xF549\t0x972F\n0xF54A\t0x97B9\n0xF54B\t0x97BB\n0xF54C\t0x97FD\n0xF54D\t0x97FE\n0xF54E\t0x9860\n0xF54F\t0x9862\n0xF550\t0x9863\n0xF551\t0x985F\n0xF552\t0x98C1\n0xF553\t0x98C2\n0xF554\t0x9950\n0xF555\t0x994E\n0xF556\t0x9959\n0xF557\t0x994C\n0xF558\t0x994B\n0xF559\t0x9953\n0xF55A\t0x9A32\n0xF55B\t0x9A34\n0xF55C\t0x9A31\n0xF55D\t0x9A2C\n0xF55E\t0x9A2A\n0xF55F\t0x9A36\n0xF560\t0x9A29\n0xF561\t0x9A2E\n0xF562\t0x9A38\n0xF563\t0x9A2D\n0xF564\t0x9AC7\n0xF565\t0x9ACA\n0xF566\t0x9AC6\n0xF567\t0x9B10\n0xF568\t0x9B12\n0xF569\t0x9B11\n0xF56A\t0x9C0B\n0xF56B\t0x9C08\n0xF56C\t0x9BF7\n0xF56D\t0x9C05\n0xF56E\t0x9C12\n0xF56F\t0x9BF8\n0xF570\t0x9C40\n0xF571\t0x9C07\n0xF572\t0x9C0E\n0xF573\t0x9C06\n0xF574\t0x9C17\n0xF575\t0x9C14\n0xF576\t0x9C09\n0xF577\t0x9D9F\n0xF578\t0x9D99\n0xF579\t0x9DA4\n0xF57A\t0x9D9D\n0xF57B\t0x9D92\n0xF57C\t0x9D98\n0xF57D\t0x9D90\n0xF57E\t0x9D9B\n0xF5A1\t0x9DA0\n0xF5A2\t0x9D94\n0xF5A3\t0x9D9C\n0xF5A4\t0x9DAA\n0xF5A5\t0x9D97\n0xF5A6\t0x9DA1\n0xF5A7\t0x9D9A\n0xF5A8\t0x9DA2\n0xF5A9\t0x9DA8\n0xF5AA\t0x9D9E\n0xF5AB\t0x9DA3\n0xF5AC\t0x9DBF\n0xF5AD\t0x9DA9\n0xF5AE\t0x9D96\n0xF5AF\t0x9DA6\n0xF5B0\t0x9DA7\n0xF5B1\t0x9E99\n0xF5B2\t0x9E9B\n0xF5B3\t0x9E9A\n0xF5B4\t0x9EE5\n0xF5B5\t0x9EE4\n0xF5B6\t0x9EE7\n0xF5B7\t0x9EE6\n0xF5B8\t0x9F30\n0xF5B9\t0x9F2E\n0xF5BA\t0x9F5B\n0xF5BB\t0x9F60\n0xF5BC\t0x9F5E\n0xF5BD\t0x9F5D\n0xF5BE\t0x9F59\n0xF5BF\t0x9F91\n0xF5C0\t0x513A\n0xF5C1\t0x5139\n0xF5C2\t0x5298\n0xF5C3\t0x5297\n0xF5C4\t0x56C3\n0xF5C5\t0x56BD\n0xF5C6\t0x56BE\n0xF5C7\t0x5B48\n0xF5C8\t0x5B47\n0xF5C9\t0x5DCB\n0xF5CA\t0x5DCF\n0xF5CB\t0x5EF1\n0xF5CC\t0x61FD\n0xF5CD\t0x651B\n0xF5CE\t0x6B02\n0xF5CF\t0x6AFC\n0xF5D0\t0x6B03\n0xF5D1\t0x6AF8\n0xF5D2\t0x6B00\n0xF5D3\t0x7043\n0xF5D4\t0x7044\n0xF5D5\t0x704A\n0xF5D6\t0x7048\n0xF5D7\t0x7049\n0xF5D8\t0x7045\n0xF5D9\t0x7046\n0xF5DA\t0x721D\n0xF5DB\t0x721A\n0xF5DC\t0x7219\n0xF5DD\t0x737E\n0xF5DE\t0x7517\n0xF5DF\t0x766A\n0xF5E0\t0x77D0\n0xF5E1\t0x792D\n0xF5E2\t0x7931\n0xF5E3\t0x792F\n0xF5E4\t0x7C54\n0xF5E5\t0x7C53\n0xF5E6\t0x7CF2\n0xF5E7\t0x7E8A\n0xF5E8\t0x7E87\n0xF5E9\t0x7E88\n0xF5EA\t0x7E8B\n0xF5EB\t0x7E86\n0xF5EC\t0x7E8D\n0xF5ED\t0x7F4D\n0xF5EE\t0x7FBB\n0xF5EF\t0x8030\n0xF5F0\t0x81DD\n0xF5F1\t0x8618\n0xF5F2\t0x862A\n0xF5F3\t0x8626\n0xF5F4\t0x861F\n0xF5F5\t0x8623\n0xF5F6\t0x861C\n0xF5F7\t0x8619\n0xF5F8\t0x8627\n0xF5F9\t0x862E\n0xF5FA\t0x8621\n0xF5FB\t0x8620\n0xF5FC\t0x8629\n0xF5FD\t0x861E\n0xF5FE\t0x8625\n0xF640\t0x8829\n0xF641\t0x881D\n0xF642\t0x881B\n0xF643\t0x8820\n0xF644\t0x8824\n0xF645\t0x881C\n0xF646\t0x882B\n0xF647\t0x884A\n0xF648\t0x896D\n0xF649\t0x8969\n0xF64A\t0x896E\n0xF64B\t0x896B\n0xF64C\t0x89FA\n0xF64D\t0x8B79\n0xF64E\t0x8B78\n0xF64F\t0x8B45\n0xF650\t0x8B7A\n0xF651\t0x8B7B\n0xF652\t0x8D10\n0xF653\t0x8D14\n0xF654\t0x8DAF\n0xF655\t0x8E8E\n0xF656\t0x8E8C\n0xF657\t0x8F5E\n0xF658\t0x8F5B\n0xF659\t0x8F5D\n0xF65A\t0x9146\n0xF65B\t0x9144\n0xF65C\t0x9145\n0xF65D\t0x91B9\n0xF65E\t0x943F\n0xF65F\t0x943B\n0xF660\t0x9436\n0xF661\t0x9429\n0xF662\t0x943D\n0xF663\t0x943C\n0xF664\t0x9430\n0xF665\t0x9439\n0xF666\t0x942A\n0xF667\t0x9437\n0xF668\t0x942C\n0xF669\t0x9440\n0xF66A\t0x9431\n0xF66B\t0x95E5\n0xF66C\t0x95E4\n0xF66D\t0x95E3\n0xF66E\t0x9735\n0xF66F\t0x973A\n0xF670\t0x97BF\n0xF671\t0x97E1\n0xF672\t0x9864\n0xF673\t0x98C9\n0xF674\t0x98C6\n0xF675\t0x98C0\n0xF676\t0x9958\n0xF677\t0x9956\n0xF678\t0x9A39\n0xF679\t0x9A3D\n0xF67A\t0x9A46\n0xF67B\t0x9A44\n0xF67C\t0x9A42\n0xF67D\t0x9A41\n0xF67E\t0x9A3A\n0xF6A1\t0x9A3F\n0xF6A2\t0x9ACD\n0xF6A3\t0x9B15\n0xF6A4\t0x9B17\n0xF6A5\t0x9B18\n0xF6A6\t0x9B16\n0xF6A7\t0x9B3A\n0xF6A8\t0x9B52\n0xF6A9\t0x9C2B\n0xF6AA\t0x9C1D\n0xF6AB\t0x9C1C\n0xF6AC\t0x9C2C\n0xF6AD\t0x9C23\n0xF6AE\t0x9C28\n0xF6AF\t0x9C29\n0xF6B0\t0x9C24\n0xF6B1\t0x9C21\n0xF6B2\t0x9DB7\n0xF6B3\t0x9DB6\n0xF6B4\t0x9DBC\n0xF6B5\t0x9DC1\n0xF6B6\t0x9DC7\n0xF6B7\t0x9DCA\n0xF6B8\t0x9DCF\n0xF6B9\t0x9DBE\n0xF6BA\t0x9DC5\n0xF6BB\t0x9DC3\n0xF6BC\t0x9DBB\n0xF6BD\t0x9DB5\n0xF6BE\t0x9DCE\n0xF6BF\t0x9DB9\n0xF6C0\t0x9DBA\n0xF6C1\t0x9DAC\n0xF6C2\t0x9DC8\n0xF6C3\t0x9DB1\n0xF6C4\t0x9DAD\n0xF6C5\t0x9DCC\n0xF6C6\t0x9DB3\n0xF6C7\t0x9DCD\n0xF6C8\t0x9DB2\n0xF6C9\t0x9E7A\n0xF6CA\t0x9E9C\n0xF6CB\t0x9EEB\n0xF6CC\t0x9EEE\n0xF6CD\t0x9EED\n0xF6CE\t0x9F1B\n0xF6CF\t0x9F18\n0xF6D0\t0x9F1A\n0xF6D1\t0x9F31\n0xF6D2\t0x9F4E\n0xF6D3\t0x9F65\n0xF6D4\t0x9F64\n0xF6D5\t0x9F92\n0xF6D6\t0x4EB9\n0xF6D7\t0x56C6\n0xF6D8\t0x56C5\n0xF6D9\t0x56CB\n0xF6DA\t0x5971\n0xF6DB\t0x5B4B\n0xF6DC\t0x5B4C\n0xF6DD\t0x5DD5\n0xF6DE\t0x5DD1\n0xF6DF\t0x5EF2\n0xF6E0\t0x6521\n0xF6E1\t0x6520\n0xF6E2\t0x6526\n0xF6E3\t0x6522\n0xF6E4\t0x6B0B\n0xF6E5\t0x6B08\n0xF6E6\t0x6B09\n0xF6E7\t0x6C0D\n0xF6E8\t0x7055\n0xF6E9\t0x7056\n0xF6EA\t0x7057\n0xF6EB\t0x7052\n0xF6EC\t0x721E\n0xF6ED\t0x721F\n0xF6EE\t0x72A9\n0xF6EF\t0x737F\n0xF6F0\t0x74D8\n0xF6F1\t0x74D5\n0xF6F2\t0x74D9\n0xF6F3\t0x74D7\n0xF6F4\t0x766D\n0xF6F5\t0x76AD\n0xF6F6\t0x7935\n0xF6F7\t0x79B4\n0xF6F8\t0x7A70\n0xF6F9\t0x7A71\n0xF6FA\t0x7C57\n0xF6FB\t0x7C5C\n0xF6FC\t0x7C59\n0xF6FD\t0x7C5B\n0xF6FE\t0x7C5A\n0xF740\t0x7CF4\n0xF741\t0x7CF1\n0xF742\t0x7E91\n0xF743\t0x7F4F\n0xF744\t0x7F87\n0xF745\t0x81DE\n0xF746\t0x826B\n0xF747\t0x8634\n0xF748\t0x8635\n0xF749\t0x8633\n0xF74A\t0x862C\n0xF74B\t0x8632\n0xF74C\t0x8636\n0xF74D\t0x882C\n0xF74E\t0x8828\n0xF74F\t0x8826\n0xF750\t0x882A\n0xF751\t0x8825\n0xF752\t0x8971\n0xF753\t0x89BF\n0xF754\t0x89BE\n0xF755\t0x89FB\n0xF756\t0x8B7E\n0xF757\t0x8B84\n0xF758\t0x8B82\n0xF759\t0x8B86\n0xF75A\t0x8B85\n0xF75B\t0x8B7F\n0xF75C\t0x8D15\n0xF75D\t0x8E95\n0xF75E\t0x8E94\n0xF75F\t0x8E9A\n0xF760\t0x8E92\n0xF761\t0x8E90\n0xF762\t0x8E96\n0xF763\t0x8E97\n0xF764\t0x8F60\n0xF765\t0x8F62\n0xF766\t0x9147\n0xF767\t0x944C\n0xF768\t0x9450\n0xF769\t0x944A\n0xF76A\t0x944B\n0xF76B\t0x944F\n0xF76C\t0x9447\n0xF76D\t0x9445\n0xF76E\t0x9448\n0xF76F\t0x9449\n0xF770\t0x9446\n0xF771\t0x973F\n0xF772\t0x97E3\n0xF773\t0x986A\n0xF774\t0x9869\n0xF775\t0x98CB\n0xF776\t0x9954\n0xF777\t0x995B\n0xF778\t0x9A4E\n0xF779\t0x9A53\n0xF77A\t0x9A54\n0xF77B\t0x9A4C\n0xF77C\t0x9A4F\n0xF77D\t0x9A48\n0xF77E\t0x9A4A\n0xF7A1\t0x9A49\n0xF7A2\t0x9A52\n0xF7A3\t0x9A50\n0xF7A4\t0x9AD0\n0xF7A5\t0x9B19\n0xF7A6\t0x9B2B\n0xF7A7\t0x9B3B\n0xF7A8\t0x9B56\n0xF7A9\t0x9B55\n0xF7AA\t0x9C46\n0xF7AB\t0x9C48\n0xF7AC\t0x9C3F\n0xF7AD\t0x9C44\n0xF7AE\t0x9C39\n0xF7AF\t0x9C33\n0xF7B0\t0x9C41\n0xF7B1\t0x9C3C\n0xF7B2\t0x9C37\n0xF7B3\t0x9C34\n0xF7B4\t0x9C32\n0xF7B5\t0x9C3D\n0xF7B6\t0x9C36\n0xF7B7\t0x9DDB\n0xF7B8\t0x9DD2\n0xF7B9\t0x9DDE\n0xF7BA\t0x9DDA\n0xF7BB\t0x9DCB\n0xF7BC\t0x9DD0\n0xF7BD\t0x9DDC\n0xF7BE\t0x9DD1\n0xF7BF\t0x9DDF\n0xF7C0\t0x9DE9\n0xF7C1\t0x9DD9\n0xF7C2\t0x9DD8\n0xF7C3\t0x9DD6\n0xF7C4\t0x9DF5\n0xF7C5\t0x9DD5\n0xF7C6\t0x9DDD\n0xF7C7\t0x9EB6\n0xF7C8\t0x9EF0\n0xF7C9\t0x9F35\n0xF7CA\t0x9F33\n0xF7CB\t0x9F32\n0xF7CC\t0x9F42\n0xF7CD\t0x9F6B\n0xF7CE\t0x9F95\n0xF7CF\t0x9FA2\n0xF7D0\t0x513D\n0xF7D1\t0x5299\n0xF7D2\t0x58E8\n0xF7D3\t0x58E7\n0xF7D4\t0x5972\n0xF7D5\t0x5B4D\n0xF7D6\t0x5DD8\n0xF7D7\t0x882F\n0xF7D8\t0x5F4F\n0xF7D9\t0x6201\n0xF7DA\t0x6203\n0xF7DB\t0x6204\n0xF7DC\t0x6529\n0xF7DD\t0x6525\n0xF7DE\t0x6596\n0xF7DF\t0x66EB\n0xF7E0\t0x6B11\n0xF7E1\t0x6B12\n0xF7E2\t0x6B0F\n0xF7E3\t0x6BCA\n0xF7E4\t0x705B\n0xF7E5\t0x705A\n0xF7E6\t0x7222\n0xF7E7\t0x7382\n0xF7E8\t0x7381\n0xF7E9\t0x7383\n0xF7EA\t0x7670\n0xF7EB\t0x77D4\n0xF7EC\t0x7C67\n0xF7ED\t0x7C66\n0xF7EE\t0x7E95\n0xF7EF\t0x826C\n0xF7F0\t0x863A\n0xF7F1\t0x8640\n0xF7F2\t0x8639\n0xF7F3\t0x863C\n0xF7F4\t0x8631\n0xF7F5\t0x863B\n0xF7F6\t0x863E\n0xF7F7\t0x8830\n0xF7F8\t0x8832\n0xF7F9\t0x882E\n0xF7FA\t0x8833\n0xF7FB\t0x8976\n0xF7FC\t0x8974\n0xF7FD\t0x8973\n0xF7FE\t0x89FE\n0xF840\t0x8B8C\n0xF841\t0x8B8E\n0xF842\t0x8B8B\n0xF843\t0x8B88\n0xF844\t0x8C45\n0xF845\t0x8D19\n0xF846\t0x8E98\n0xF847\t0x8F64\n0xF848\t0x8F63\n0xF849\t0x91BC\n0xF84A\t0x9462\n0xF84B\t0x9455\n0xF84C\t0x945D\n0xF84D\t0x9457\n0xF84E\t0x945E\n0xF84F\t0x97C4\n0xF850\t0x97C5\n0xF851\t0x9800\n0xF852\t0x9A56\n0xF853\t0x9A59\n0xF854\t0x9B1E\n0xF855\t0x9B1F\n0xF856\t0x9B20\n0xF857\t0x9C52\n0xF858\t0x9C58\n0xF859\t0x9C50\n0xF85A\t0x9C4A\n0xF85B\t0x9C4D\n0xF85C\t0x9C4B\n0xF85D\t0x9C55\n0xF85E\t0x9C59\n0xF85F\t0x9C4C\n0xF860\t0x9C4E\n0xF861\t0x9DFB\n0xF862\t0x9DF7\n0xF863\t0x9DEF\n0xF864\t0x9DE3\n0xF865\t0x9DEB\n0xF866\t0x9DF8\n0xF867\t0x9DE4\n0xF868\t0x9DF6\n0xF869\t0x9DE1\n0xF86A\t0x9DEE\n0xF86B\t0x9DE6\n0xF86C\t0x9DF2\n0xF86D\t0x9DF0\n0xF86E\t0x9DE2\n0xF86F\t0x9DEC\n0xF870\t0x9DF4\n0xF871\t0x9DF3\n0xF872\t0x9DE8\n0xF873\t0x9DED\n0xF874\t0x9EC2\n0xF875\t0x9ED0\n0xF876\t0x9EF2\n0xF877\t0x9EF3\n0xF878\t0x9F06\n0xF879\t0x9F1C\n0xF87A\t0x9F38\n0xF87B\t0x9F37\n0xF87C\t0x9F36\n0xF87D\t0x9F43\n0xF87E\t0x9F4F\n0xF8A1\t0x9F71\n0xF8A2\t0x9F70\n0xF8A3\t0x9F6E\n0xF8A4\t0x9F6F\n0xF8A5\t0x56D3\n0xF8A6\t0x56CD\n0xF8A7\t0x5B4E\n0xF8A8\t0x5C6D\n0xF8A9\t0x652D\n0xF8AA\t0x66ED\n0xF8AB\t0x66EE\n0xF8AC\t0x6B13\n0xF8AD\t0x705F\n0xF8AE\t0x7061\n0xF8AF\t0x705D\n0xF8B0\t0x7060\n0xF8B1\t0x7223\n0xF8B2\t0x74DB\n0xF8B3\t0x74E5\n0xF8B4\t0x77D5\n0xF8B5\t0x7938\n0xF8B6\t0x79B7\n0xF8B7\t0x79B6\n0xF8B8\t0x7C6A\n0xF8B9\t0x7E97\n0xF8BA\t0x7F89\n0xF8BB\t0x826D\n0xF8BC\t0x8643\n0xF8BD\t0x8838\n0xF8BE\t0x8837\n0xF8BF\t0x8835\n0xF8C0\t0x884B\n0xF8C1\t0x8B94\n0xF8C2\t0x8B95\n0xF8C3\t0x8E9E\n0xF8C4\t0x8E9F\n0xF8C5\t0x8EA0\n0xF8C6\t0x8E9D\n0xF8C7\t0x91BE\n0xF8C8\t0x91BD\n0xF8C9\t0x91C2\n0xF8CA\t0x946B\n0xF8CB\t0x9468\n0xF8CC\t0x9469\n0xF8CD\t0x96E5\n0xF8CE\t0x9746\n0xF8CF\t0x9743\n0xF8D0\t0x9747\n0xF8D1\t0x97C7\n0xF8D2\t0x97E5\n0xF8D3\t0x9A5E\n0xF8D4\t0x9AD5\n0xF8D5\t0x9B59\n0xF8D6\t0x9C63\n0xF8D7\t0x9C67\n0xF8D8\t0x9C66\n0xF8D9\t0x9C62\n0xF8DA\t0x9C5E\n0xF8DB\t0x9C60\n0xF8DC\t0x9E02\n0xF8DD\t0x9DFE\n0xF8DE\t0x9E07\n0xF8DF\t0x9E03\n0xF8E0\t0x9E06\n0xF8E1\t0x9E05\n0xF8E2\t0x9E00\n0xF8E3\t0x9E01\n0xF8E4\t0x9E09\n0xF8E5\t0x9DFF\n0xF8E6\t0x9DFD\n0xF8E7\t0x9E04\n0xF8E8\t0x9EA0\n0xF8E9\t0x9F1E\n0xF8EA\t0x9F46\n0xF8EB\t0x9F74\n0xF8EC\t0x9F75\n0xF8ED\t0x9F76\n0xF8EE\t0x56D4\n0xF8EF\t0x652E\n0xF8F0\t0x65B8\n0xF8F1\t0x6B18\n0xF8F2\t0x6B19\n0xF8F3\t0x6B17\n0xF8F4\t0x6B1A\n0xF8F5\t0x7062\n0xF8F6\t0x7226\n0xF8F7\t0x72AA\n0xF8F8\t0x77D8\n0xF8F9\t0x77D9\n0xF8FA\t0x7939\n0xF8FB\t0x7C69\n0xF8FC\t0x7C6B\n0xF8FD\t0x7CF6\n0xF8FE\t0x7E9A\n0xF940\t0x7E98\n0xF941\t0x7E9B\n0xF942\t0x7E99\n0xF943\t0x81E0\n0xF944\t0x81E1\n0xF945\t0x8646\n0xF946\t0x8647\n0xF947\t0x8648\n0xF948\t0x8979\n0xF949\t0x897A\n0xF94A\t0x897C\n0xF94B\t0x897B\n0xF94C\t0x89FF\n0xF94D\t0x8B98\n0xF94E\t0x8B99\n0xF94F\t0x8EA5\n0xF950\t0x8EA4\n0xF951\t0x8EA3\n0xF952\t0x946E\n0xF953\t0x946D\n0xF954\t0x946F\n0xF955\t0x9471\n0xF956\t0x9473\n0xF957\t0x9749\n0xF958\t0x9872\n0xF959\t0x995F\n0xF95A\t0x9C68\n0xF95B\t0x9C6E\n0xF95C\t0x9C6D\n0xF95D\t0x9E0B\n0xF95E\t0x9E0D\n0xF95F\t0x9E10\n0xF960\t0x9E0F\n0xF961\t0x9E12\n0xF962\t0x9E11\n0xF963\t0x9EA1\n0xF964\t0x9EF5\n0xF965\t0x9F09\n0xF966\t0x9F47\n0xF967\t0x9F78\n0xF968\t0x9F7B\n0xF969\t0x9F7A\n0xF96A\t0x9F79\n0xF96B\t0x571E\n0xF96C\t0x7066\n0xF96D\t0x7C6F\n0xF96E\t0x883C\n0xF96F\t0x8DB2\n0xF970\t0x8EA6\n0xF971\t0x91C3\n0xF972\t0x9474\n0xF973\t0x9478\n0xF974\t0x9476\n0xF975\t0x9475\n0xF976\t0x9A60\n0xF977\t0x9C74\n0xF978\t0x9C73\n0xF979\t0x9C71\n0xF97A\t0x9C75\n0xF97B\t0x9E14\n0xF97C\t0x9E13\n0xF97D\t0x9EF6\n0xF97E\t0x9F0A\n0xF9A1\t0x9FA4\n0xF9A2\t0x7068\n0xF9A3\t0x7065\n0xF9A4\t0x7CF7\n0xF9A5\t0x866A\n0xF9A6\t0x883E\n0xF9A7\t0x883D\n0xF9A8\t0x883F\n0xF9A9\t0x8B9E\n0xF9AA\t0x8C9C\n0xF9AB\t0x8EA9\n0xF9AC\t0x8EC9\n0xF9AD\t0x974B\n0xF9AE\t0x9873\n0xF9AF\t0x9874\n0xF9B0\t0x98CC\n0xF9B1\t0x9961\n0xF9B2\t0x99AB\n0xF9B3\t0x9A64\n0xF9B4\t0x9A66\n0xF9B5\t0x9A67\n0xF9B6\t0x9B24\n0xF9B7\t0x9E15\n0xF9B8\t0x9E17\n0xF9B9\t0x9F48\n0xF9BA\t0x6207\n0xF9BB\t0x6B1E\n0xF9BC\t0x7227\n0xF9BD\t0x864C\n0xF9BE\t0x8EA8\n0xF9BF\t0x9482\n0xF9C0\t0x9480\n0xF9C1\t0x9481\n0xF9C2\t0x9A69\n0xF9C3\t0x9A68\n0xF9C4\t0x9B2E\n0xF9C5\t0x9E19\n0xF9C6\t0x7229\n0xF9C7\t0x864B\n0xF9C8\t0x8B9F\n0xF9C9\t0x9483\n0xF9CA\t0x9C79\n0xF9CB\t0x9EB7\n0xF9CC\t0x7675\n0xF9CD\t0x9A6B\n0xF9CE\t0x9C7A\n0xF9CF\t0x9E1D\n0xF9D0\t0x7069\n0xF9D1\t0x706A\n0xF9D2\t0x9EA4\n0xF9D3\t0x9F7E\n0xF9D4\t0x9F49\n0xF9D5\t0x9F98\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1046.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0xFE88\n0x81\t0x00D7\n0x82\t0x00F7\n0x83\t0xF8F6\n0x84\t0xF8F5\n0x85\t0xF8F4\n0x86\t0xF8F7\n0x87\t0xFE71\n0x88\t0x0088\n0x89\t0x25A0\n0x8A\t0x2502\n0x8B\t0x2500\n0x8C\t0x2510\n0x8D\t0x250C\n0x8E\t0x2514\n0x8F\t0x2518\n0x90\t0xFE79\n0x91\t0xFE7B\n0x92\t0xFE7D\n0x93\t0xFE7F\n0x94\t0xFE77\n0x95\t0xFE8A\n0x96\t0xFEF0\n0x97\t0xFEF3\n0x98\t0xFEF2\n0x99\t0xFECE\n0x9A\t0xFECF\n0x9B\t0xFED0\n0x9C\t0xFEF6\n0x9D\t0xFEF8\n0x9E\t0xFEFA\n0x9F\t0xFEFC\n0xA0\t0x00A0\n0xA1\t0xF8FA\n0xA2\t0xF8F9\n0xA3\t0xF8F8\n0xA4\t0x00A4\n0xA5\t0xF8FB\n0xA6\t0xFE8B\n0xA7\t0xFE91\n0xA8\t0xFE97\n0xA9\t0xFE9B\n0xAA\t0xFE9F\n0xAB\t0xFEA3\n0xAC\t0x060C\n0xAD\t0x00AD\n0xAE\t0xFEA7\n0xAF\t0xFEB3\n0xB0\t0x0660\n0xB1\t0x0661\n0xB2\t0x0662\n0xB3\t0x0663\n0xB4\t0x0664\n0xB5\t0x0665\n0xB6\t0x0666\n0xB7\t0x0667\n0xB8\t0x0668\n0xB9\t0x0669\n0xBA\t0xFEB7\n0xBB\t0x061B\n0xBC\t0xFEBB\n0xBD\t0xFEBF\n0xBE\t0xFECA\n0xBF\t0x061F\n0xC0\t0xFECB\n0xC1\t0x0621\n0xC2\t0x0622\n0xC3\t0x0623\n0xC4\t0x0624\n0xC5\t0x0625\n0xC6\t0x0626\n0xC7\t0x0627\n0xC8\t0x0628\n0xC9\t0x0629\n0xCA\t0x062A\n0xCB\t0x062B\n0xCC\t0x062C\n0xCD\t0x062D\n0xCE\t0x062E\n0xCF\t0x062F\n0xD0\t0x0630\n0xD1\t0x0631\n0xD2\t0x0632\n0xD3\t0x0633\n0xD4\t0x0634\n0xD5\t0x0635\n0xD6\t0x0636\n0xD7\t0x0637\n0xD8\t0xFEC7\n0xD9\t0x0639\n0xDA\t0x063A\n0xDB\t0xFECC\n0xDC\t0xFE82\n0xDD\t0xFE84\n0xDE\t0xFE8E\n0xDF\t0xFED3\n0xE0\t0x0640\n0xE1\t0x0641\n0xE2\t0x0642\n0xE3\t0x0643\n0xE4\t0x0644\n0xE5\t0x0645\n0xE6\t0x0646\n0xE7\t0x0647\n0xE8\t0x0648\n0xE9\t0x0649\n0xEA\t0x064A\n0xEB\t0x064B\n0xEC\t0x064C\n0xED\t0x064D\n0xEE\t0x064E\n0xEF\t0x064F\n0xF0\t0x0650\n0xF1\t0x0651\n0xF2\t0x0652\n0xF3\t0xFED7\n0xF4\t0xFEDB\n0xF5\t0xFEDF\n0xF6\t0xF8FC\n0xF7\t0xFEF5\n0xF8\t0xFEF7\n0xF9\t0xFEF9\n0xFA\t0xFEFB\n0xFB\t0xFEE3\n0xFC\t0xFEE7\n0xFD\t0xFEEC\n0xFE\t0xFEE9\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1124.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x0401\n0xA2\t0x0402\n0xA3\t0x0490\n0xA4\t0x0404\n0xA5\t0x0405\n0xA6\t0x0406\n0xA7\t0x0407\n0xA8\t0x0408\n0xA9\t0x0409\n0xAA\t0x040A\n0xAB\t0x040B\n0xAC\t0x040C\n0xAD\t0x00AD\n0xAE\t0x040E\n0xAF\t0x040F\n0xB0\t0x0410\n0xB1\t0x0411\n0xB2\t0x0412\n0xB3\t0x0413\n0xB4\t0x0414\n0xB5\t0x0415\n0xB6\t0x0416\n0xB7\t0x0417\n0xB8\t0x0418\n0xB9\t0x0419\n0xBA\t0x041A\n0xBB\t0x041B\n0xBC\t0x041C\n0xBD\t0x041D\n0xBE\t0x041E\n0xBF\t0x041F\n0xC0\t0x0420\n0xC1\t0x0421\n0xC2\t0x0422\n0xC3\t0x0423\n0xC4\t0x0424\n0xC5\t0x0425\n0xC6\t0x0426\n0xC7\t0x0427\n0xC8\t0x0428\n0xC9\t0x0429\n0xCA\t0x042A\n0xCB\t0x042B\n0xCC\t0x042C\n0xCD\t0x042D\n0xCE\t0x042E\n0xCF\t0x042F\n0xD0\t0x0430\n0xD1\t0x0431\n0xD2\t0x0432\n0xD3\t0x0433\n0xD4\t0x0434\n0xD5\t0x0435\n0xD6\t0x0436\n0xD7\t0x0437\n0xD8\t0x0438\n0xD9\t0x0439\n0xDA\t0x043A\n0xDB\t0x043B\n0xDC\t0x043C\n0xDD\t0x043D\n0xDE\t0x043E\n0xDF\t0x043F\n0xE0\t0x0440\n0xE1\t0x0441\n0xE2\t0x0442\n0xE3\t0x0443\n0xE4\t0x0444\n0xE5\t0x0445\n0xE6\t0x0446\n0xE7\t0x0447\n0xE8\t0x0448\n0xE9\t0x0449\n0xEA\t0x044A\n0xEB\t0x044B\n0xEC\t0x044C\n0xED\t0x044D\n0xEE\t0x044E\n0xEF\t0x044F\n0xF0\t0x2116\n0xF1\t0x0451\n0xF2\t0x0452\n0xF3\t0x0491\n0xF4\t0x0454\n0xF5\t0x0455\n0xF6\t0x0456\n0xF7\t0x0457\n0xF8\t0x0458\n0xF9\t0x0459\n0xFA\t0x045A\n0xFB\t0x045B\n0xFC\t0x045C\n0xFD\t0x00A7\n0xFE\t0x045E\n0xFF\t0x045F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1125.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0410\n0x81\t0x0411\n0x82\t0x0412\n0x83\t0x0413\n0x84\t0x0414\n0x85\t0x0415\n0x86\t0x0416\n0x87\t0x0417\n0x88\t0x0418\n0x89\t0x0419\n0x8A\t0x041A\n0x8B\t0x041B\n0x8C\t0x041C\n0x8D\t0x041D\n0x8E\t0x041E\n0x8F\t0x041F\n0x90\t0x0420\n0x91\t0x0421\n0x92\t0x0422\n0x93\t0x0423\n0x94\t0x0424\n0x95\t0x0425\n0x96\t0x0426\n0x97\t0x0427\n0x98\t0x0428\n0x99\t0x0429\n0x9A\t0x042A\n0x9B\t0x042B\n0x9C\t0x042C\n0x9D\t0x042D\n0x9E\t0x042E\n0x9F\t0x042F\n0xA0\t0x0430\n0xA1\t0x0431\n0xA2\t0x0432\n0xA3\t0x0433\n0xA4\t0x0434\n0xA5\t0x0435\n0xA6\t0x0436\n0xA7\t0x0437\n0xA8\t0x0438\n0xA9\t0x0439\n0xAA\t0x043A\n0xAB\t0x043B\n0xAC\t0x043C\n0xAD\t0x043D\n0xAE\t0x043E\n0xAF\t0x043F\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x2561\n0xB6\t0x2562\n0xB7\t0x2556\n0xB8\t0x2555\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x255C\n0xBE\t0x255B\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x255E\n0xC7\t0x255F\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x2567\n0xD0\t0x2568\n0xD1\t0x2564\n0xD2\t0x2565\n0xD3\t0x2559\n0xD4\t0x2558\n0xD5\t0x2552\n0xD6\t0x2553\n0xD7\t0x256B\n0xD8\t0x256A\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x258C\n0xDE\t0x2590\n0xDF\t0x2580\n0xE0\t0x0440\n0xE1\t0x0441\n0xE2\t0x0442\n0xE3\t0x0443\n0xE4\t0x0444\n0xE5\t0x0445\n0xE6\t0x0446\n0xE7\t0x0447\n0xE8\t0x0448\n0xE9\t0x0449\n0xEA\t0x044A\n0xEB\t0x044B\n0xEC\t0x044C\n0xED\t0x044D\n0xEE\t0x044E\n0xEF\t0x044F\n0xF0\t0x0401\n0xF1\t0x0451\n0xF2\t0x0490\n0xF3\t0x0491\n0xF4\t0x0404\n0xF5\t0x0454\n0xF6\t0x0406\n0xF7\t0x0456\n0xF8\t0x0407\n0xF9\t0x0457\n0xFA\t0x00B7\n0xFB\t0x221A\n0xFC\t0x2116\n0xFD\t0x00A4\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1129.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x0153\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x0178\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x0152\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x0102\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x0300\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x0110\n0xD1\t0x00D1\n0xD2\t0x0309\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x01A0\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x00D8\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x01AF\n0xDE\t0x0303\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x0103\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x0301\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x0111\n0xF1\t0x00F1\n0xF2\t0x0323\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x01A1\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x01B0\n0xFE\t0x20AB\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1131.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0410\n0x81\t0x0411\n0x82\t0x0412\n0x83\t0x0413\n0x84\t0x0414\n0x85\t0x0415\n0x86\t0x0416\n0x87\t0x0417\n0x88\t0x0418\n0x89\t0x0419\n0x8A\t0x041A\n0x8B\t0x041B\n0x8C\t0x041C\n0x8D\t0x041D\n0x8E\t0x041E\n0x8F\t0x041F\n0x90\t0x0420\n0x91\t0x0421\n0x92\t0x0422\n0x93\t0x0423\n0x94\t0x0424\n0x95\t0x0425\n0x96\t0x0426\n0x97\t0x0427\n0x98\t0x0428\n0x99\t0x0429\n0x9A\t0x042A\n0x9B\t0x042B\n0x9C\t0x042C\n0x9D\t0x042D\n0x9E\t0x042E\n0x9F\t0x042F\n0xA0\t0x0430\n0xA1\t0x0431\n0xA2\t0x0432\n0xA3\t0x0433\n0xA4\t0x0434\n0xA5\t0x0435\n0xA6\t0x0436\n0xA7\t0x0437\n0xA8\t0x0438\n0xA9\t0x0439\n0xAA\t0x043A\n0xAB\t0x043B\n0xAC\t0x043C\n0xAD\t0x043D\n0xAE\t0x043E\n0xAF\t0x043F\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x2561\n0xB6\t0x2562\n0xB7\t0x2556\n0xB8\t0x2555\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x255C\n0xBE\t0x255B\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x255E\n0xC7\t0x255F\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x2567\n0xD0\t0x2568\n0xD1\t0x2564\n0xD2\t0x2565\n0xD3\t0x2559\n0xD4\t0x2558\n0xD5\t0x2552\n0xD6\t0x2553\n0xD7\t0x256B\n0xD8\t0x256A\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x258C\n0xDE\t0x2590\n0xDF\t0x2580\n0xE0\t0x0440\n0xE1\t0x0441\n0xE2\t0x0442\n0xE3\t0x0443\n0xE4\t0x0444\n0xE5\t0x0445\n0xE6\t0x0446\n0xE7\t0x0447\n0xE8\t0x0448\n0xE9\t0x0449\n0xEA\t0x044A\n0xEB\t0x044B\n0xEC\t0x044C\n0xED\t0x044D\n0xEE\t0x044E\n0xEF\t0x044F\n0xF0\t0x0401\n0xF1\t0x0451\n0xF2\t0x0404\n0xF3\t0x0454\n0xF4\t0x0407\n0xF5\t0x0457\n0xF6\t0x040E\n0xF7\t0x045E\n0xF8\t0x0406\n0xF9\t0x0456\n0xFA\t0x00B7\n0xFB\t0x00A4\n0xFC\t0x0490\n0xFD\t0x0491\n0xFE\t0x2219\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1133.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x0E81\n0xA2\t0x0E82\n0xA3\t0x0E84\n0xA4\t0x0E87\n0xA5\t0x0E88\n0xA6\t0x0EAA\n0xA7\t0x0E8A\n0xA8\t0x0E8D\n0xA9\t0x0E94\n0xAA\t0x0E95\n0xAB\t0x0E96\n0xAC\t0x0E97\n0xAD\t0x0E99\n0xAE\t0x0E9A\n0xAF\t0x0E9B\n0xB0\t0x0E9C\n0xB1\t0x0E9D\n0xB2\t0x0E9E\n0xB3\t0x0E9F\n0xB4\t0x0EA1\n0xB5\t0x0EA2\n0xB6\t0x0EA3\n0xB7\t0x0EA5\n0xB8\t0x0EA7\n0xB9\t0x0EAB\n0xBA\t0x0EAD\n0xBB\t0x0EAE\n0xBF\t0x0EAF\n0xC0\t0x0EB0\n0xC1\t0x0EB2\n0xC2\t0x0EB3\n0xC3\t0x0EB4\n0xC4\t0x0EB5\n0xC5\t0x0EB6\n0xC6\t0x0EB7\n0xC7\t0x0EB8\n0xC8\t0x0EB9\n0xC9\t0x0EBC\n0xCA\t0x0EB1\n0xCB\t0x0EBB\n0xCC\t0x0EBD\n0xD0\t0x0EC0\n0xD1\t0x0EC1\n0xD2\t0x0EC2\n0xD3\t0x0EC3\n0xD4\t0x0EC4\n0xD5\t0x0EC8\n0xD6\t0x0EC9\n0xD7\t0x0ECA\n0xD8\t0x0ECB\n0xD9\t0x0ECC\n0xDA\t0x0ECD\n0xDB\t0x0EC6\n0xDD\t0x0EDC\n0xDE\t0x0EDD\n0xDF\t0x20AD\n0xF0\t0x0ED0\n0xF1\t0x0ED1\n0xF2\t0x0ED2\n0xF3\t0x0ED3\n0xF4\t0x0ED4\n0xF5\t0x0ED5\n0xF6\t0x0ED6\n0xF7\t0x0ED7\n0xF8\t0x0ED8\n0xF9\t0x0ED9\n0xFC\t0x00A2\n0xFD\t0x00AC\n0xFE\t0x00A6\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1161.IRREVERSIBLE.TXT",
    "content": "0xA0\t0x0E48\n0xDB\t0x0E49\n0xDC\t0x0E4A\n0xDD\t0x0E4B\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1161.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0xA0\t0x0E48\n0xA1\t0x0E01\n0xA2\t0x0E02\n0xA3\t0x0E03\n0xA4\t0x0E04\n0xA5\t0x0E05\n0xA6\t0x0E06\n0xA7\t0x0E07\n0xA8\t0x0E08\n0xA9\t0x0E09\n0xAA\t0x0E0A\n0xAB\t0x0E0B\n0xAC\t0x0E0C\n0xAD\t0x0E0D\n0xAE\t0x0E0E\n0xAF\t0x0E0F\n0xB0\t0x0E10\n0xB1\t0x0E11\n0xB2\t0x0E12\n0xB3\t0x0E13\n0xB4\t0x0E14\n0xB5\t0x0E15\n0xB6\t0x0E16\n0xB7\t0x0E17\n0xB8\t0x0E18\n0xB9\t0x0E19\n0xBA\t0x0E1A\n0xBB\t0x0E1B\n0xBC\t0x0E1C\n0xBD\t0x0E1D\n0xBE\t0x0E1E\n0xBF\t0x0E1F\n0xC0\t0x0E20\n0xC1\t0x0E21\n0xC2\t0x0E22\n0xC3\t0x0E23\n0xC4\t0x0E24\n0xC5\t0x0E25\n0xC6\t0x0E26\n0xC7\t0x0E27\n0xC8\t0x0E28\n0xC9\t0x0E29\n0xCA\t0x0E2A\n0xCB\t0x0E2B\n0xCC\t0x0E2C\n0xCD\t0x0E2D\n0xCE\t0x0E2E\n0xCF\t0x0E2F\n0xD0\t0x0E30\n0xD1\t0x0E31\n0xD2\t0x0E32\n0xD3\t0x0E33\n0xD4\t0x0E34\n0xD5\t0x0E35\n0xD6\t0x0E36\n0xD7\t0x0E37\n0xD8\t0x0E38\n0xD9\t0x0E39\n0xDA\t0x0E3A\n0xDB\t0x0E49\n0xDC\t0x0E4A\n0xDD\t0x0E4B\n0xDE\t0x20AC\n0xDF\t0x0E3F\n0xE0\t0x0E40\n0xE1\t0x0E41\n0xE2\t0x0E42\n0xE3\t0x0E43\n0xE4\t0x0E44\n0xE5\t0x0E45\n0xE6\t0x0E46\n0xE7\t0x0E47\n0xE8\t0x0E48\n0xE9\t0x0E49\n0xEA\t0x0E4A\n0xEB\t0x0E4B\n0xEC\t0x0E4C\n0xED\t0x0E4D\n0xEE\t0x0E4E\n0xEF\t0x0E4F\n0xF0\t0x0E50\n0xF1\t0x0E51\n0xF2\t0x0E52\n0xF3\t0x0E53\n0xF4\t0x0E54\n0xF5\t0x0E55\n0xF6\t0x0E56\n0xF7\t0x0E57\n0xF8\t0x0E58\n0xF9\t0x0E59\n0xFA\t0x0E5A\n0xFB\t0x0E5B\n0xFC\t0x00A2\n0xFD\t0x00AC\n0xFE\t0x00A6\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1162.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x20AC\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x2026\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x0E01\n0xA2\t0x0E02\n0xA3\t0x0E03\n0xA4\t0x0E04\n0xA5\t0x0E05\n0xA6\t0x0E06\n0xA7\t0x0E07\n0xA8\t0x0E08\n0xA9\t0x0E09\n0xAA\t0x0E0A\n0xAB\t0x0E0B\n0xAC\t0x0E0C\n0xAD\t0x0E0D\n0xAE\t0x0E0E\n0xAF\t0x0E0F\n0xB0\t0x0E10\n0xB1\t0x0E11\n0xB2\t0x0E12\n0xB3\t0x0E13\n0xB4\t0x0E14\n0xB5\t0x0E15\n0xB6\t0x0E16\n0xB7\t0x0E17\n0xB8\t0x0E18\n0xB9\t0x0E19\n0xBA\t0x0E1A\n0xBB\t0x0E1B\n0xBC\t0x0E1C\n0xBD\t0x0E1D\n0xBE\t0x0E1E\n0xBF\t0x0E1F\n0xC0\t0x0E20\n0xC1\t0x0E21\n0xC2\t0x0E22\n0xC3\t0x0E23\n0xC4\t0x0E24\n0xC5\t0x0E25\n0xC6\t0x0E26\n0xC7\t0x0E27\n0xC8\t0x0E28\n0xC9\t0x0E29\n0xCA\t0x0E2A\n0xCB\t0x0E2B\n0xCC\t0x0E2C\n0xCD\t0x0E2D\n0xCE\t0x0E2E\n0xCF\t0x0E2F\n0xD0\t0x0E30\n0xD1\t0x0E31\n0xD2\t0x0E32\n0xD3\t0x0E33\n0xD4\t0x0E34\n0xD5\t0x0E35\n0xD6\t0x0E36\n0xD7\t0x0E37\n0xD8\t0x0E38\n0xD9\t0x0E39\n0xDA\t0x0E3A\n0xDF\t0x0E3F\n0xE0\t0x0E40\n0xE1\t0x0E41\n0xE2\t0x0E42\n0xE3\t0x0E43\n0xE4\t0x0E44\n0xE5\t0x0E45\n0xE6\t0x0E46\n0xE7\t0x0E47\n0xE8\t0x0E48\n0xE9\t0x0E49\n0xEA\t0x0E4A\n0xEB\t0x0E4B\n0xEC\t0x0E4C\n0xED\t0x0E4D\n0xEE\t0x0E4E\n0xEF\t0x0E4F\n0xF0\t0x0E50\n0xF1\t0x0E51\n0xF2\t0x0E52\n0xF3\t0x0E53\n0xF4\t0x0E54\n0xF5\t0x0E55\n0xF6\t0x0E56\n0xF7\t0x0E57\n0xF8\t0x0E58\n0xF9\t0x0E59\n0xFA\t0x0E5A\n0xFB\t0x0E5B\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1163.IRREVERSIBLE.TXT",
    "content": "0xAF\t0x203E\n0xD0\t0x00D0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1163.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x20AC\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x0153\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x0178\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x0152\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x0102\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x0300\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x0110\n0xD1\t0x00D1\n0xD2\t0x0309\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x01A0\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x00D8\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x01AF\n0xDE\t0x0303\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x0103\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x0301\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x0111\n0xF1\t0x00F1\n0xF2\t0x0323\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x01A1\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x01B0\n0xFE\t0x20AB\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1250.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x20AC\n0x82\t0x201A\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x89\t0x2030\n0x8A\t0x0160\n0x8B\t0x2039\n0x8C\t0x015A\n0x8D\t0x0164\n0x8E\t0x017D\n0x8F\t0x0179\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x99\t0x2122\n0x9A\t0x0161\n0x9B\t0x203A\n0x9C\t0x015B\n0x9D\t0x0165\n0x9E\t0x017E\n0x9F\t0x017A\n0xA0\t0x00A0\n0xA1\t0x02C7\n0xA2\t0x02D8\n0xA3\t0x0141\n0xA4\t0x00A4\n0xA5\t0x0104\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x015E\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x017B\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x02DB\n0xB3\t0x0142\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x0105\n0xBA\t0x015F\n0xBB\t0x00BB\n0xBC\t0x013D\n0xBD\t0x02DD\n0xBE\t0x013E\n0xBF\t0x017C\n0xC0\t0x0154\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x0102\n0xC4\t0x00C4\n0xC5\t0x0139\n0xC6\t0x0106\n0xC7\t0x00C7\n0xC8\t0x010C\n0xC9\t0x00C9\n0xCA\t0x0118\n0xCB\t0x00CB\n0xCC\t0x011A\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x010E\n0xD0\t0x0110\n0xD1\t0x0143\n0xD2\t0x0147\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x0150\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x0158\n0xD9\t0x016E\n0xDA\t0x00DA\n0xDB\t0x0170\n0xDC\t0x00DC\n0xDD\t0x00DD\n0xDE\t0x0162\n0xDF\t0x00DF\n0xE0\t0x0155\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x0103\n0xE4\t0x00E4\n0xE5\t0x013A\n0xE6\t0x0107\n0xE7\t0x00E7\n0xE8\t0x010D\n0xE9\t0x00E9\n0xEA\t0x0119\n0xEB\t0x00EB\n0xEC\t0x011B\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x010F\n0xF0\t0x0111\n0xF1\t0x0144\n0xF2\t0x0148\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x0151\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x0159\n0xF9\t0x016F\n0xFA\t0x00FA\n0xFB\t0x0171\n0xFC\t0x00FC\n0xFD\t0x00FD\n0xFE\t0x0163\n0xFF\t0x02D9\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1251.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0402\n0x81\t0x0403\n0x82\t0x201A\n0x83\t0x0453\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x88\t0x20AC\n0x89\t0x2030\n0x8A\t0x0409\n0x8B\t0x2039\n0x8C\t0x040A\n0x8D\t0x040C\n0x8E\t0x040B\n0x8F\t0x040F\n0x90\t0x0452\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x99\t0x2122\n0x9A\t0x0459\n0x9B\t0x203A\n0x9C\t0x045A\n0x9D\t0x045C\n0x9E\t0x045B\n0x9F\t0x045F\n0xA0\t0x00A0\n0xA1\t0x040E\n0xA2\t0x045E\n0xA3\t0x0408\n0xA4\t0x00A4\n0xA5\t0x0490\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x0401\n0xA9\t0x00A9\n0xAA\t0x0404\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x0407\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x0406\n0xB3\t0x0456\n0xB4\t0x0491\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x0451\n0xB9\t0x2116\n0xBA\t0x0454\n0xBB\t0x00BB\n0xBC\t0x0458\n0xBD\t0x0405\n0xBE\t0x0455\n0xBF\t0x0457\n0xC0\t0x0410\n0xC1\t0x0411\n0xC2\t0x0412\n0xC3\t0x0413\n0xC4\t0x0414\n0xC5\t0x0415\n0xC6\t0x0416\n0xC7\t0x0417\n0xC8\t0x0418\n0xC9\t0x0419\n0xCA\t0x041A\n0xCB\t0x041B\n0xCC\t0x041C\n0xCD\t0x041D\n0xCE\t0x041E\n0xCF\t0x041F\n0xD0\t0x0420\n0xD1\t0x0421\n0xD2\t0x0422\n0xD3\t0x0423\n0xD4\t0x0424\n0xD5\t0x0425\n0xD6\t0x0426\n0xD7\t0x0427\n0xD8\t0x0428\n0xD9\t0x0429\n0xDA\t0x042A\n0xDB\t0x042B\n0xDC\t0x042C\n0xDD\t0x042D\n0xDE\t0x042E\n0xDF\t0x042F\n0xE0\t0x0430\n0xE1\t0x0431\n0xE2\t0x0432\n0xE3\t0x0433\n0xE4\t0x0434\n0xE5\t0x0435\n0xE6\t0x0436\n0xE7\t0x0437\n0xE8\t0x0438\n0xE9\t0x0439\n0xEA\t0x043A\n0xEB\t0x043B\n0xEC\t0x043C\n0xED\t0x043D\n0xEE\t0x043E\n0xEF\t0x043F\n0xF0\t0x0440\n0xF1\t0x0441\n0xF2\t0x0442\n0xF3\t0x0443\n0xF4\t0x0444\n0xF5\t0x0445\n0xF6\t0x0446\n0xF7\t0x0447\n0xF8\t0x0448\n0xF9\t0x0449\n0xFA\t0x044A\n0xFB\t0x044B\n0xFC\t0x044C\n0xFD\t0x044D\n0xFE\t0x044E\n0xFF\t0x044F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1252.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x20AC\n0x82\t0x201A\n0x83\t0x0192\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x88\t0x02C6\n0x89\t0x2030\n0x8A\t0x0160\n0x8B\t0x2039\n0x8C\t0x0152\n0x8E\t0x017D\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x98\t0x02DC\n0x99\t0x2122\n0x9A\t0x0161\n0x9B\t0x203A\n0x9C\t0x0153\n0x9E\t0x017E\n0x9F\t0x0178\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x00C3\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x00CC\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x00D0\n0xD1\t0x00D1\n0xD2\t0x00D2\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x00D8\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x00DD\n0xDE\t0x00DE\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x00E3\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x00F0\n0xF1\t0x00F1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x00FD\n0xFE\t0x00FE\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1253.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x20AC\n0x82\t0x201A\n0x83\t0x0192\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x89\t0x2030\n0x8B\t0x2039\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x99\t0x2122\n0x9B\t0x203A\n0xA0\t0x00A0\n0xA1\t0x0385\n0xA2\t0x0386\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x2015\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x0384\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x0388\n0xB9\t0x0389\n0xBA\t0x038A\n0xBB\t0x00BB\n0xBC\t0x038C\n0xBD\t0x00BD\n0xBE\t0x038E\n0xBF\t0x038F\n0xC0\t0x0390\n0xC1\t0x0391\n0xC2\t0x0392\n0xC3\t0x0393\n0xC4\t0x0394\n0xC5\t0x0395\n0xC6\t0x0396\n0xC7\t0x0397\n0xC8\t0x0398\n0xC9\t0x0399\n0xCA\t0x039A\n0xCB\t0x039B\n0xCC\t0x039C\n0xCD\t0x039D\n0xCE\t0x039E\n0xCF\t0x039F\n0xD0\t0x03A0\n0xD1\t0x03A1\n0xD3\t0x03A3\n0xD4\t0x03A4\n0xD5\t0x03A5\n0xD6\t0x03A6\n0xD7\t0x03A7\n0xD8\t0x03A8\n0xD9\t0x03A9\n0xDA\t0x03AA\n0xDB\t0x03AB\n0xDC\t0x03AC\n0xDD\t0x03AD\n0xDE\t0x03AE\n0xDF\t0x03AF\n0xE0\t0x03B0\n0xE1\t0x03B1\n0xE2\t0x03B2\n0xE3\t0x03B3\n0xE4\t0x03B4\n0xE5\t0x03B5\n0xE6\t0x03B6\n0xE7\t0x03B7\n0xE8\t0x03B8\n0xE9\t0x03B9\n0xEA\t0x03BA\n0xEB\t0x03BB\n0xEC\t0x03BC\n0xED\t0x03BD\n0xEE\t0x03BE\n0xEF\t0x03BF\n0xF0\t0x03C0\n0xF1\t0x03C1\n0xF2\t0x03C2\n0xF3\t0x03C3\n0xF4\t0x03C4\n0xF5\t0x03C5\n0xF6\t0x03C6\n0xF7\t0x03C7\n0xF8\t0x03C8\n0xF9\t0x03C9\n0xFA\t0x03CA\n0xFB\t0x03CB\n0xFC\t0x03CC\n0xFD\t0x03CD\n0xFE\t0x03CE\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1254.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x20AC\n0x82\t0x201A\n0x83\t0x0192\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x88\t0x02C6\n0x89\t0x2030\n0x8A\t0x0160\n0x8B\t0x2039\n0x8C\t0x0152\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x98\t0x02DC\n0x99\t0x2122\n0x9A\t0x0161\n0x9B\t0x203A\n0x9C\t0x0153\n0x9F\t0x0178\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x00C3\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x00CC\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x011E\n0xD1\t0x00D1\n0xD2\t0x00D2\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x00D8\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x0130\n0xDE\t0x015E\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x00E3\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x011F\n0xF1\t0x00F1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x0131\n0xFE\t0x015F\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1255-snippet",
    "content": "\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1255-snippet.UTF-8",
    "content": "דָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\nדָּם\nצִפַרְדֵּעַ\nכִּנִּים\nעָרוֹב\nדֶּבֶר\nשְׁחִין\nבָּרָד\nאַרְבֶּה\nחֹשֶׁךְ\nמַכַּת בְּכוֹרוֹת\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1255.IRREVERSIBLE.TXT",
    "content": "0xD6C7\t0xFB1F\n0xE0C7\t0xFB2E\n0xE0C8\t0xFB2F\n0xE0CC\t0xFB30\n0xE1CC\t0xFB31\n0xE1CF\t0xFB4C\n0xE2CC\t0xFB32\n0xE3CC\t0xFB33\n0xE4CC\t0xFB34\n0xE5C9\t0xFB4B\n0xE5CC\t0xFB35\n0xE6CC\t0xFB36\n0xE8CC\t0xFB38\n0xE9C4\t0xFB1D\n0xE9CC\t0xFB39\n0xEACC\t0xFB3A\n0xEBCC\t0xFB3B\n0xEBCF\t0xFB4D\n0xECCC\t0xFB3C\n0xEECC\t0xFB3E\n0xF0CC\t0xFB40\n0xF1CC\t0xFB41\n0xF3CC\t0xFB43\n0xF4CC\t0xFB44\n0xF4CF\t0xFB4E\n0xF6CC\t0xFB46\n0xF7CC\t0xFB47\n0xF8CC\t0xFB48\n0xF9CC\t0xFB49\n0xF9CCD1\t0xFB2C\n0xF9CCD2\t0xFB2D\n0xF9D1\t0xFB2A\n0xF9D2\t0xFB2B\n0xFACC\t0xFB4A\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1255.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x20AC\n0x82\t0x201A\n0x83\t0x0192\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x88\t0x02C6\n0x89\t0x2030\n0x8B\t0x2039\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x98\t0x02DC\n0x99\t0x2122\n0x9B\t0x203A\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x20AA\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x00D7\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x00F7\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x05B0\n0xC1\t0x05B1\n0xC2\t0x05B2\n0xC3\t0x05B3\n0xC4\t0x05B4\n0xC5\t0x05B5\n0xC6\t0x05B6\n0xC7\t0x05B7\n0xC8\t0x05B8\n0xC9\t0x05B9\n0xCA\t0x05BA\n0xCB\t0x05BB\n0xCC\t0x05BC\n0xCD\t0x05BD\n0xCE\t0x05BE\n0xCF\t0x05BF\n0xD0\t0x05C0\n0xD1\t0x05C1\n0xD2\t0x05C2\n0xD3\t0x05C3\n0xD4\t0x05F0\n0xD5\t0x05F1\n0xD6\t0x05F2\n0xD7\t0x05F3\n0xD8\t0x05F4\n0xE0\t0x05D0\n0xE1\t0x05D1\n0xE2\t0x05D2\n0xE3\t0x05D3\n0xE4\t0x05D4\n0xE5\t0x05D5\n0xE6\t0x05D6\n0xE7\t0x05D7\n0xE8\t0x05D8\n0xE9\t0x05D9\n0xEA\t0x05DA\n0xEB\t0x05DB\n0xEC\t0x05DC\n0xED\t0x05DD\n0xEE\t0x05DE\n0xEF\t0x05DF\n0xF0\t0x05E0\n0xF1\t0x05E1\n0xF2\t0x05E2\n0xF3\t0x05E3\n0xF4\t0x05E4\n0xF5\t0x05E5\n0xF6\t0x05E6\n0xF7\t0x05E7\n0xF8\t0x05E8\n0xF9\t0x05E9\n0xFA\t0x05EA\n0xFD\t0x200E\n0xFE\t0x200F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1256.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x20AC\n0x81\t0x067E\n0x82\t0x201A\n0x83\t0x0192\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x88\t0x02C6\n0x89\t0x2030\n0x8A\t0x0679\n0x8B\t0x2039\n0x8C\t0x0152\n0x8D\t0x0686\n0x8E\t0x0698\n0x8F\t0x0688\n0x90\t0x06AF\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x98\t0x06A9\n0x99\t0x2122\n0x9A\t0x0691\n0x9B\t0x203A\n0x9C\t0x0153\n0x9D\t0x200C\n0x9E\t0x200D\n0x9F\t0x06BA\n0xA0\t0x00A0\n0xA1\t0x060C\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x06BE\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x061B\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x061F\n0xC0\t0x06C1\n0xC1\t0x0621\n0xC2\t0x0622\n0xC3\t0x0623\n0xC4\t0x0624\n0xC5\t0x0625\n0xC6\t0x0626\n0xC7\t0x0627\n0xC8\t0x0628\n0xC9\t0x0629\n0xCA\t0x062A\n0xCB\t0x062B\n0xCC\t0x062C\n0xCD\t0x062D\n0xCE\t0x062E\n0xCF\t0x062F\n0xD0\t0x0630\n0xD1\t0x0631\n0xD2\t0x0632\n0xD3\t0x0633\n0xD4\t0x0634\n0xD5\t0x0635\n0xD6\t0x0636\n0xD7\t0x00D7\n0xD8\t0x0637\n0xD9\t0x0638\n0xDA\t0x0639\n0xDB\t0x063A\n0xDC\t0x0640\n0xDD\t0x0641\n0xDE\t0x0642\n0xDF\t0x0643\n0xE0\t0x00E0\n0xE1\t0x0644\n0xE2\t0x00E2\n0xE3\t0x0645\n0xE4\t0x0646\n0xE5\t0x0647\n0xE6\t0x0648\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x0649\n0xED\t0x064A\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x064B\n0xF1\t0x064C\n0xF2\t0x064D\n0xF3\t0x064E\n0xF4\t0x00F4\n0xF5\t0x064F\n0xF6\t0x0650\n0xF7\t0x00F7\n0xF8\t0x0651\n0xF9\t0x00F9\n0xFA\t0x0652\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x200E\n0xFE\t0x200F\n0xFF\t0x06D2\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1257.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x20AC\n0x82\t0x201A\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x89\t0x2030\n0x8B\t0x2039\n0x8D\t0x00A8\n0x8E\t0x02C7\n0x8F\t0x00B8\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x99\t0x2122\n0x9B\t0x203A\n0x9D\t0x00AF\n0x9E\t0x02DB\n0xA0\t0x00A0\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00D8\n0xA9\t0x00A9\n0xAA\t0x0156\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00C6\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00F8\n0xB9\t0x00B9\n0xBA\t0x0157\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00E6\n0xC0\t0x0104\n0xC1\t0x012E\n0xC2\t0x0100\n0xC3\t0x0106\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x0118\n0xC7\t0x0112\n0xC8\t0x010C\n0xC9\t0x00C9\n0xCA\t0x0179\n0xCB\t0x0116\n0xCC\t0x0122\n0xCD\t0x0136\n0xCE\t0x012A\n0xCF\t0x013B\n0xD0\t0x0160\n0xD1\t0x0143\n0xD2\t0x0145\n0xD3\t0x00D3\n0xD4\t0x014C\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x0172\n0xD9\t0x0141\n0xDA\t0x015A\n0xDB\t0x016A\n0xDC\t0x00DC\n0xDD\t0x017B\n0xDE\t0x017D\n0xDF\t0x00DF\n0xE0\t0x0105\n0xE1\t0x012F\n0xE2\t0x0101\n0xE3\t0x0107\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x0119\n0xE7\t0x0113\n0xE8\t0x010D\n0xE9\t0x00E9\n0xEA\t0x017A\n0xEB\t0x0117\n0xEC\t0x0123\n0xED\t0x0137\n0xEE\t0x012B\n0xEF\t0x013C\n0xF0\t0x0161\n0xF1\t0x0144\n0xF2\t0x0146\n0xF3\t0x00F3\n0xF4\t0x014D\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x0173\n0xF9\t0x0142\n0xFA\t0x015B\n0xFB\t0x016B\n0xFC\t0x00FC\n0xFD\t0x017C\n0xFE\t0x017E\n0xFF\t0x02D9\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1258-snippet",
    "content": "// The last line of this file is missing the end-of-line terminator\n// on purpose, in order to test that the conversion empties the bit buffer\n// and shifts back to the initial state at the end of the conversion.\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban\nVietnamese (Ting Vit)\tCho ban"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1258-snippet.UTF-8",
    "content": "// The last line of this file is missing the end-of-line terminator\n// on purpose, in order to test that the conversion empties the bit buffer\n// and shifts back to the initial state at the end of the conversion.\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1258.IRREVERSIBLE.TXT",
    "content": "0x41D2\t0x1EA2\n0x41DE\t0x00C3\n0x41F2\t0x1EA0\n0x42F2\t0x1E04\n0x43EC\t0x0106\n0x44F2\t0x1E0C\n0x45D2\t0x1EBA\n0x45DE\t0x1EBC\n0x45F2\t0x1EB8\n0x47EC\t0x01F4\n0x48F2\t0x1E24\n0x49CC\t0x00CC\n0x49D2\t0x1EC8\n0x49DE\t0x0128\n0x49F2\t0x1ECA\n0x4BEC\t0x1E30\n0x4BF2\t0x1E32\n0x4CEC\t0x0139\n0x4CF2\t0x1E36\n0x4DEC\t0x1E3E\n0x4DF2\t0x1E42\n0x4ECC\t0x01F8\n0x4EEC\t0x0143\n0x4EF2\t0x1E46\n0x4FCC\t0x00D2\n0x4FD2\t0x1ECE\n0x4FDE\t0x00D5\n0x4FF2\t0x1ECC\n0x50EC\t0x1E54\n0x52EC\t0x0154\n0x52F2\t0x1E5A\n0x53EC\t0x015A\n0x53F2\t0x1E62\n0x54F2\t0x1E6C\n0x55D2\t0x1EE6\n0x55DE\t0x0168\n0x55F2\t0x1EE4\n0x56DE\t0x1E7C\n0x56F2\t0x1E7E\n0x57CC\t0x1E80\n0x57EC\t0x1E82\n0x57F2\t0x1E88\n0x59CC\t0x1EF2\n0x59D2\t0x1EF6\n0x59DE\t0x1EF8\n0x59EC\t0x00DD\n0x59F2\t0x1EF4\n0x5AEC\t0x0179\n0x5AF2\t0x1E92\n0x61D2\t0x1EA3\n0x61DE\t0x00E3\n0x61F2\t0x1EA1\n0x62F2\t0x1E05\n0x63EC\t0x0107\n0x64F2\t0x1E0D\n0x65D2\t0x1EBB\n0x65DE\t0x1EBD\n0x65F2\t0x1EB9\n0x67EC\t0x01F5\n0x68F2\t0x1E25\n0x69CC\t0x00EC\n0x69D2\t0x1EC9\n0x69DE\t0x0129\n0x69F2\t0x1ECB\n0x6BEC\t0x1E31\n0x6BF2\t0x1E33\n0x6CEC\t0x013A\n0x6CF2\t0x1E37\n0x6DEC\t0x1E3F\n0x6DF2\t0x1E43\n0x6ECC\t0x01F9\n0x6EEC\t0x0144\n0x6EF2\t0x1E47\n0x6FCC\t0x00F2\n0x6FD2\t0x1ECF\n0x6FDE\t0x00F5\n0x6FF2\t0x1ECD\n0x70EC\t0x1E55\n0x72EC\t0x0155\n0x72F2\t0x1E5B\n0x73EC\t0x015B\n0x73F2\t0x1E63\n0x74F2\t0x1E6D\n0x75D2\t0x1EE7\n0x75DE\t0x0169\n0x75F2\t0x1EE5\n0x76DE\t0x1E7D\n0x76F2\t0x1E7F\n0x77CC\t0x1E81\n0x77EC\t0x1E83\n0x77F2\t0x1E89\n0x79CC\t0x1EF3\n0x79D2\t0x1EF7\n0x79DE\t0x1EF9\n0x79EC\t0x00FD\n0x79F2\t0x1EF5\n0x7AEC\t0x017A\n0x7AF2\t0x1E93\n0xA8CC\t0x1FED\n0xA8EC\t0x0385\n0xA8EC\t0x1FEE\n0xC2CC\t0x1EA6\n0xC2D2\t0x1EA8\n0xC2DE\t0x1EAA\n0xC2EC\t0x1EA4\n0xC2F2\t0x1EAC\n0xC3CC\t0x1EB0\n0xC3D2\t0x1EB2\n0xC3DE\t0x1EB4\n0xC3EC\t0x1EAE\n0xC3F2\t0x1EB6\n0xC5EC\t0x01FA\n0xC6EC\t0x01FC\n0xC7EC\t0x1E08\n0xCACC\t0x1EC0\n0xCAD2\t0x1EC2\n0xCADE\t0x1EC4\n0xCAEC\t0x1EBE\n0xCAF2\t0x1EC6\n0xCC\t0x0340\n0xCFEC\t0x1E2E\n0xD3DE\t0x1E4C\n0xD4CC\t0x1ED2\n0xD4D2\t0x1ED4\n0xD4DE\t0x1ED6\n0xD4EC\t0x1ED0\n0xD4F2\t0x1ED8\n0xD5CC\t0x1EDC\n0xD5D2\t0x1EDE\n0xD5DE\t0x1EE0\n0xD5EC\t0x1EDA\n0xD5F2\t0x1EE2\n0xD6DE\t0x1E4E\n0xD8EC\t0x01FE\n0xDADE\t0x1E78\n0xDCCC\t0x01DB\n0xDCEC\t0x01D7\n0xDDCC\t0x1EEA\n0xDDD2\t0x1EEC\n0xDDDE\t0x1EEE\n0xDDEC\t0x1EE8\n0xDDF2\t0x1EF0\n0xE2CC\t0x1EA7\n0xE2D2\t0x1EA9\n0xE2DE\t0x1EAB\n0xE2EC\t0x1EA5\n0xE2F2\t0x1EAD\n0xE3CC\t0x1EB1\n0xE3D2\t0x1EB3\n0xE3DE\t0x1EB5\n0xE3EC\t0x1EAF\n0xE3F2\t0x1EB7\n0xE5EC\t0x01FB\n0xE6EC\t0x01FD\n0xE7EC\t0x1E09\n0xEACC\t0x1EC1\n0xEAD2\t0x1EC3\n0xEADE\t0x1EC5\n0xEAEC\t0x1EBF\n0xEAF2\t0x1EC7\n0xEC\t0x0341\n0xEFEC\t0x1E2F\n0xF3DE\t0x1E4D\n0xF4CC\t0x1ED3\n0xF4D2\t0x1ED5\n0xF4DE\t0x1ED7\n0xF4EC\t0x1ED1\n0xF4F2\t0x1ED9\n0xF5CC\t0x1EDD\n0xF5D2\t0x1EDF\n0xF5DE\t0x1EE1\n0xF5EC\t0x1EDB\n0xF5F2\t0x1EE3\n0xF6DE\t0x1E4F\n0xF8EC\t0x01FF\n0xFADE\t0x1E79\n0xFCCC\t0x01DC\n0xFCEC\t0x01D8\n0xFDCC\t0x1EEB\n0xFDD2\t0x1EED\n0xFDDE\t0x1EEF\n0xFDEC\t0x1EE9\n0xFDF2\t0x1EF1\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP1258.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x20AC\n0x82\t0x201A\n0x83\t0x0192\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x88\t0x02C6\n0x89\t0x2030\n0x8B\t0x2039\n0x8C\t0x0152\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x98\t0x02DC\n0x99\t0x2122\n0x9B\t0x203A\n0x9C\t0x0153\n0x9F\t0x0178\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x0102\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x0300\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x0110\n0xD1\t0x00D1\n0xD2\t0x0309\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x01A0\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x00D8\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x01AF\n0xDE\t0x0303\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x0103\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x0301\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x0111\n0xF1\t0x00F1\n0xF2\t0x0323\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x01A1\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x01B0\n0xFE\t0x20AB\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP437.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C7\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x00E2\n0x84\t0x00E4\n0x85\t0x00E0\n0x86\t0x00E5\n0x87\t0x00E7\n0x88\t0x00EA\n0x89\t0x00EB\n0x8A\t0x00E8\n0x8B\t0x00EF\n0x8C\t0x00EE\n0x8D\t0x00EC\n0x8E\t0x00C4\n0x8F\t0x00C5\n0x90\t0x00C9\n0x91\t0x00E6\n0x92\t0x00C6\n0x93\t0x00F4\n0x94\t0x00F6\n0x95\t0x00F2\n0x96\t0x00FB\n0x97\t0x00F9\n0x98\t0x00FF\n0x99\t0x00D6\n0x9A\t0x00DC\n0x9B\t0x00A2\n0x9C\t0x00A3\n0x9D\t0x00A5\n0x9E\t0x20A7\n0x9F\t0x0192\n0xA0\t0x00E1\n0xA1\t0x00ED\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x00F1\n0xA5\t0x00D1\n0xA6\t0x00AA\n0xA7\t0x00BA\n0xA8\t0x00BF\n0xA9\t0x2310\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAD\t0x00A1\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x2561\n0xB6\t0x2562\n0xB7\t0x2556\n0xB8\t0x2555\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x255C\n0xBE\t0x255B\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x255E\n0xC7\t0x255F\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x2567\n0xD0\t0x2568\n0xD1\t0x2564\n0xD2\t0x2565\n0xD3\t0x2559\n0xD4\t0x2558\n0xD5\t0x2552\n0xD6\t0x2553\n0xD7\t0x256B\n0xD8\t0x256A\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x258C\n0xDE\t0x2590\n0xDF\t0x2580\n0xE0\t0x03B1\n0xE1\t0x00DF\n0xE2\t0x0393\n0xE3\t0x03C0\n0xE4\t0x03A3\n0xE5\t0x03C3\n0xE6\t0x00B5\n0xE7\t0x03C4\n0xE8\t0x03A6\n0xE9\t0x0398\n0xEA\t0x03A9\n0xEB\t0x03B4\n0xEC\t0x221E\n0xED\t0x03C6\n0xEE\t0x03B5\n0xEF\t0x2229\n0xF0\t0x2261\n0xF1\t0x00B1\n0xF2\t0x2265\n0xF3\t0x2264\n0xF4\t0x2320\n0xF5\t0x2321\n0xF6\t0x00F7\n0xF7\t0x2248\n0xF8\t0x00B0\n0xF9\t0x2219\n0xFA\t0x00B7\n0xFB\t0x221A\n0xFC\t0x207F\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP737.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0391\n0x81\t0x0392\n0x82\t0x0393\n0x83\t0x0394\n0x84\t0x0395\n0x85\t0x0396\n0x86\t0x0397\n0x87\t0x0398\n0x88\t0x0399\n0x89\t0x039A\n0x8A\t0x039B\n0x8B\t0x039C\n0x8C\t0x039D\n0x8D\t0x039E\n0x8E\t0x039F\n0x8F\t0x03A0\n0x90\t0x03A1\n0x91\t0x03A3\n0x92\t0x03A4\n0x93\t0x03A5\n0x94\t0x03A6\n0x95\t0x03A7\n0x96\t0x03A8\n0x97\t0x03A9\n0x98\t0x03B1\n0x99\t0x03B2\n0x9A\t0x03B3\n0x9B\t0x03B4\n0x9C\t0x03B5\n0x9D\t0x03B6\n0x9E\t0x03B7\n0x9F\t0x03B8\n0xA0\t0x03B9\n0xA1\t0x03BA\n0xA2\t0x03BB\n0xA3\t0x03BC\n0xA4\t0x03BD\n0xA5\t0x03BE\n0xA6\t0x03BF\n0xA7\t0x03C0\n0xA8\t0x03C1\n0xA9\t0x03C3\n0xAA\t0x03C2\n0xAB\t0x03C4\n0xAC\t0x03C5\n0xAD\t0x03C6\n0xAE\t0x03C7\n0xAF\t0x03C8\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x2561\n0xB6\t0x2562\n0xB7\t0x2556\n0xB8\t0x2555\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x255C\n0xBE\t0x255B\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x255E\n0xC7\t0x255F\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x2567\n0xD0\t0x2568\n0xD1\t0x2564\n0xD2\t0x2565\n0xD3\t0x2559\n0xD4\t0x2558\n0xD5\t0x2552\n0xD6\t0x2553\n0xD7\t0x256B\n0xD8\t0x256A\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x258C\n0xDE\t0x2590\n0xDF\t0x2580\n0xE0\t0x03C9\n0xE1\t0x03AC\n0xE2\t0x03AD\n0xE3\t0x03AE\n0xE4\t0x03CA\n0xE5\t0x03AF\n0xE6\t0x03CC\n0xE7\t0x03CD\n0xE8\t0x03CB\n0xE9\t0x03CE\n0xEA\t0x0386\n0xEB\t0x0388\n0xEC\t0x0389\n0xED\t0x038A\n0xEE\t0x038C\n0xEF\t0x038E\n0xF0\t0x038F\n0xF1\t0x00B1\n0xF2\t0x2265\n0xF3\t0x2264\n0xF4\t0x03AA\n0xF5\t0x03AB\n0xF6\t0x00F7\n0xF7\t0x2248\n0xF8\t0x00B0\n0xF9\t0x2219\n0xFA\t0x00B7\n0xFB\t0x221A\n0xFC\t0x207F\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP775.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0106\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x0101\n0x84\t0x00E4\n0x85\t0x0123\n0x86\t0x00E5\n0x87\t0x0107\n0x88\t0x0142\n0x89\t0x0113\n0x8A\t0x0156\n0x8B\t0x0157\n0x8C\t0x012B\n0x8D\t0x0179\n0x8E\t0x00C4\n0x8F\t0x00C5\n0x90\t0x00C9\n0x91\t0x00E6\n0x92\t0x00C6\n0x93\t0x014D\n0x94\t0x00F6\n0x95\t0x0122\n0x96\t0x00A2\n0x97\t0x015A\n0x98\t0x015B\n0x99\t0x00D6\n0x9A\t0x00DC\n0x9B\t0x00F8\n0x9C\t0x00A3\n0x9D\t0x00D8\n0x9E\t0x00D7\n0x9F\t0x00A4\n0xA0\t0x0100\n0xA1\t0x012A\n0xA2\t0x00F3\n0xA3\t0x017B\n0xA4\t0x017C\n0xA5\t0x017A\n0xA6\t0x201D\n0xA7\t0x00A6\n0xA8\t0x00A9\n0xA9\t0x00AE\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAD\t0x0141\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x0104\n0xB6\t0x010C\n0xB7\t0x0118\n0xB8\t0x0116\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x012E\n0xBE\t0x0160\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x0172\n0xC7\t0x016A\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x017D\n0xD0\t0x0105\n0xD1\t0x010D\n0xD2\t0x0119\n0xD3\t0x0117\n0xD4\t0x012F\n0xD5\t0x0161\n0xD6\t0x0173\n0xD7\t0x016B\n0xD8\t0x017E\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x258C\n0xDE\t0x2590\n0xDF\t0x2580\n0xE0\t0x00D3\n0xE1\t0x00DF\n0xE2\t0x014C\n0xE3\t0x0143\n0xE4\t0x00F5\n0xE5\t0x00D5\n0xE6\t0x00B5\n0xE7\t0x0144\n0xE8\t0x0136\n0xE9\t0x0137\n0xEA\t0x013B\n0xEB\t0x013C\n0xEC\t0x0146\n0xED\t0x0112\n0xEE\t0x0145\n0xEF\t0x2019\n0xF0\t0x00AD\n0xF1\t0x00B1\n0xF2\t0x201C\n0xF3\t0x00BE\n0xF4\t0x00B6\n0xF5\t0x00A7\n0xF6\t0x00F7\n0xF7\t0x201E\n0xF8\t0x00B0\n0xF9\t0x2219\n0xFA\t0x00B7\n0xFB\t0x00B9\n0xFC\t0x00B3\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP850.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C7\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x00E2\n0x84\t0x00E4\n0x85\t0x00E0\n0x86\t0x00E5\n0x87\t0x00E7\n0x88\t0x00EA\n0x89\t0x00EB\n0x8A\t0x00E8\n0x8B\t0x00EF\n0x8C\t0x00EE\n0x8D\t0x00EC\n0x8E\t0x00C4\n0x8F\t0x00C5\n0x90\t0x00C9\n0x91\t0x00E6\n0x92\t0x00C6\n0x93\t0x00F4\n0x94\t0x00F6\n0x95\t0x00F2\n0x96\t0x00FB\n0x97\t0x00F9\n0x98\t0x00FF\n0x99\t0x00D6\n0x9A\t0x00DC\n0x9B\t0x00F8\n0x9C\t0x00A3\n0x9D\t0x00D8\n0x9E\t0x00D7\n0x9F\t0x0192\n0xA0\t0x00E1\n0xA1\t0x00ED\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x00F1\n0xA5\t0x00D1\n0xA6\t0x00AA\n0xA7\t0x00BA\n0xA8\t0x00BF\n0xA9\t0x00AE\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAD\t0x00A1\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x00C1\n0xB6\t0x00C2\n0xB7\t0x00C0\n0xB8\t0x00A9\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x00A2\n0xBE\t0x00A5\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x00E3\n0xC7\t0x00C3\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x00A4\n0xD0\t0x00F0\n0xD1\t0x00D0\n0xD2\t0x00CA\n0xD3\t0x00CB\n0xD4\t0x00C8\n0xD5\t0x0131\n0xD6\t0x00CD\n0xD7\t0x00CE\n0xD8\t0x00CF\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x00A6\n0xDE\t0x00CC\n0xDF\t0x2580\n0xE0\t0x00D3\n0xE1\t0x00DF\n0xE2\t0x00D4\n0xE3\t0x00D2\n0xE4\t0x00F5\n0xE5\t0x00D5\n0xE6\t0x00B5\n0xE7\t0x00FE\n0xE8\t0x00DE\n0xE9\t0x00DA\n0xEA\t0x00DB\n0xEB\t0x00D9\n0xEC\t0x00FD\n0xED\t0x00DD\n0xEE\t0x00AF\n0xEF\t0x00B4\n0xF0\t0x00AD\n0xF1\t0x00B1\n0xF2\t0x2017\n0xF3\t0x00BE\n0xF4\t0x00B6\n0xF5\t0x00A7\n0xF6\t0x00F7\n0xF7\t0x00B8\n0xF8\t0x00B0\n0xF9\t0x00A8\n0xFA\t0x00B7\n0xFB\t0x00B9\n0xFC\t0x00B3\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP852.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C7\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x00E2\n0x84\t0x00E4\n0x85\t0x016F\n0x86\t0x0107\n0x87\t0x00E7\n0x88\t0x0142\n0x89\t0x00EB\n0x8A\t0x0150\n0x8B\t0x0151\n0x8C\t0x00EE\n0x8D\t0x0179\n0x8E\t0x00C4\n0x8F\t0x0106\n0x90\t0x00C9\n0x91\t0x0139\n0x92\t0x013A\n0x93\t0x00F4\n0x94\t0x00F6\n0x95\t0x013D\n0x96\t0x013E\n0x97\t0x015A\n0x98\t0x015B\n0x99\t0x00D6\n0x9A\t0x00DC\n0x9B\t0x0164\n0x9C\t0x0165\n0x9D\t0x0141\n0x9E\t0x00D7\n0x9F\t0x010D\n0xA0\t0x00E1\n0xA1\t0x00ED\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x0104\n0xA5\t0x0105\n0xA6\t0x017D\n0xA7\t0x017E\n0xA8\t0x0118\n0xA9\t0x0119\n0xAA\t0x00AC\n0xAB\t0x017A\n0xAC\t0x010C\n0xAD\t0x015F\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x00C1\n0xB6\t0x00C2\n0xB7\t0x011A\n0xB8\t0x015E\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x017B\n0xBE\t0x017C\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x0102\n0xC7\t0x0103\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x00A4\n0xD0\t0x0111\n0xD1\t0x0110\n0xD2\t0x010E\n0xD3\t0x00CB\n0xD4\t0x010F\n0xD5\t0x0147\n0xD6\t0x00CD\n0xD7\t0x00CE\n0xD8\t0x011B\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x0162\n0xDE\t0x016E\n0xDF\t0x2580\n0xE0\t0x00D3\n0xE1\t0x00DF\n0xE2\t0x00D4\n0xE3\t0x0143\n0xE4\t0x0144\n0xE5\t0x0148\n0xE6\t0x0160\n0xE7\t0x0161\n0xE8\t0x0154\n0xE9\t0x00DA\n0xEA\t0x0155\n0xEB\t0x0170\n0xEC\t0x00FD\n0xED\t0x00DD\n0xEE\t0x0163\n0xEF\t0x00B4\n0xF0\t0x00AD\n0xF1\t0x02DD\n0xF2\t0x02DB\n0xF3\t0x02C7\n0xF4\t0x02D8\n0xF5\t0x00A7\n0xF6\t0x00F7\n0xF7\t0x00B8\n0xF8\t0x00B0\n0xF9\t0x00A8\n0xFA\t0x02D9\n0xFB\t0x0171\n0xFC\t0x0158\n0xFD\t0x0159\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP853.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C7\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x00E2\n0x84\t0x00E4\n0x85\t0x00E0\n0x86\t0x0109\n0x87\t0x00E7\n0x88\t0x00EA\n0x89\t0x00EB\n0x8A\t0x00E8\n0x8B\t0x00EF\n0x8C\t0x00EE\n0x8D\t0x00EC\n0x8E\t0x00C4\n0x8F\t0x0108\n0x90\t0x00C9\n0x91\t0x010B\n0x92\t0x010A\n0x93\t0x00F4\n0x94\t0x00F6\n0x95\t0x00F2\n0x96\t0x00FB\n0x97\t0x00F9\n0x98\t0x0130\n0x99\t0x00D6\n0x9A\t0x00DC\n0x9B\t0x011D\n0x9C\t0x00A3\n0x9D\t0x011C\n0x9E\t0x00D7\n0x9F\t0x0135\n0xA0\t0x00E1\n0xA1\t0x00ED\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x00F1\n0xA5\t0x00D1\n0xA6\t0x011E\n0xA7\t0x011F\n0xA8\t0x0124\n0xA9\t0x0125\n0xAB\t0x00BD\n0xAC\t0x0134\n0xAD\t0x015F\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x00C1\n0xB6\t0x00C2\n0xB7\t0x00C0\n0xB8\t0x015E\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x017B\n0xBE\t0x017C\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x015C\n0xC7\t0x015D\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x00A4\n0xD2\t0x00CA\n0xD3\t0x00CB\n0xD4\t0x00C8\n0xD5\t0x0131\n0xD6\t0x00CD\n0xD7\t0x00CE\n0xD8\t0x00CF\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDE\t0x00CC\n0xDF\t0x2580\n0xE0\t0x00D3\n0xE1\t0x00DF\n0xE2\t0x00D4\n0xE3\t0x00D2\n0xE4\t0x0120\n0xE5\t0x0121\n0xE6\t0x00B5\n0xE7\t0x0126\n0xE8\t0x0127\n0xE9\t0x00DA\n0xEA\t0x00DB\n0xEB\t0x00D9\n0xEC\t0x016C\n0xED\t0x016D\n0xEF\t0x00B4\n0xF0\t0x00AD\n0xF2\t0x2113\n0xF3\t0x0149\n0xF4\t0x02D8\n0xF5\t0x00A7\n0xF6\t0x00F7\n0xF7\t0x00B8\n0xF8\t0x00B0\n0xF9\t0x00A8\n0xFA\t0x02D9\n0xFC\t0x00B3\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP855.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0452\n0x81\t0x0402\n0x82\t0x0453\n0x83\t0x0403\n0x84\t0x0451\n0x85\t0x0401\n0x86\t0x0454\n0x87\t0x0404\n0x88\t0x0455\n0x89\t0x0405\n0x8A\t0x0456\n0x8B\t0x0406\n0x8C\t0x0457\n0x8D\t0x0407\n0x8E\t0x0458\n0x8F\t0x0408\n0x90\t0x0459\n0x91\t0x0409\n0x92\t0x045A\n0x93\t0x040A\n0x94\t0x045B\n0x95\t0x040B\n0x96\t0x045C\n0x97\t0x040C\n0x98\t0x045E\n0x99\t0x040E\n0x9A\t0x045F\n0x9B\t0x040F\n0x9C\t0x044E\n0x9D\t0x042E\n0x9E\t0x044A\n0x9F\t0x042A\n0xA0\t0x0430\n0xA1\t0x0410\n0xA2\t0x0431\n0xA3\t0x0411\n0xA4\t0x0446\n0xA5\t0x0426\n0xA6\t0x0434\n0xA7\t0x0414\n0xA8\t0x0435\n0xA9\t0x0415\n0xAA\t0x0444\n0xAB\t0x0424\n0xAC\t0x0433\n0xAD\t0x0413\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x0445\n0xB6\t0x0425\n0xB7\t0x0438\n0xB8\t0x0418\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x0439\n0xBE\t0x0419\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x043A\n0xC7\t0x041A\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x00A4\n0xD0\t0x043B\n0xD1\t0x041B\n0xD2\t0x043C\n0xD3\t0x041C\n0xD4\t0x043D\n0xD5\t0x041D\n0xD6\t0x043E\n0xD7\t0x041E\n0xD8\t0x043F\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x041F\n0xDE\t0x044F\n0xDF\t0x2580\n0xE0\t0x042F\n0xE1\t0x0440\n0xE2\t0x0420\n0xE3\t0x0441\n0xE4\t0x0421\n0xE5\t0x0442\n0xE6\t0x0422\n0xE7\t0x0443\n0xE8\t0x0423\n0xE9\t0x0436\n0xEA\t0x0416\n0xEB\t0x0432\n0xEC\t0x0412\n0xED\t0x044C\n0xEE\t0x042C\n0xEF\t0x2116\n0xF0\t0x00AD\n0xF1\t0x044B\n0xF2\t0x042B\n0xF3\t0x0437\n0xF4\t0x0417\n0xF5\t0x0448\n0xF6\t0x0428\n0xF7\t0x044D\n0xF8\t0x042D\n0xF9\t0x0449\n0xFA\t0x0429\n0xFB\t0x0447\n0xFC\t0x0427\n0xFD\t0x00A7\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP856.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x05D0\n0x81\t0x05D1\n0x82\t0x05D2\n0x83\t0x05D3\n0x84\t0x05D4\n0x85\t0x05D5\n0x86\t0x05D6\n0x87\t0x05D7\n0x88\t0x05D8\n0x89\t0x05D9\n0x8A\t0x05DA\n0x8B\t0x05DB\n0x8C\t0x05DC\n0x8D\t0x05DD\n0x8E\t0x05DE\n0x8F\t0x05DF\n0x90\t0x05E0\n0x91\t0x05E1\n0x92\t0x05E2\n0x93\t0x05E3\n0x94\t0x05E4\n0x95\t0x05E5\n0x96\t0x05E6\n0x97\t0x05E7\n0x98\t0x05E8\n0x99\t0x05E9\n0x9A\t0x05EA\n0x9C\t0x00A3\n0x9E\t0x00D7\n0xA9\t0x00AE\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB8\t0x00A9\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x00A2\n0xBE\t0x00A5\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x00A4\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x00A6\n0xDF\t0x2580\n0xE6\t0x00B5\n0xEE\t0x00AF\n0xEF\t0x00B4\n0xF0\t0x00AD\n0xF1\t0x00B1\n0xF2\t0x2017\n0xF3\t0x00BE\n0xF4\t0x00B6\n0xF5\t0x00A7\n0xF6\t0x00F7\n0xF7\t0x00B8\n0xF8\t0x00B0\n0xF9\t0x00A8\n0xFA\t0x00B7\n0xFB\t0x00B9\n0xFC\t0x00B3\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP857.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C7\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x00E2\n0x84\t0x00E4\n0x85\t0x00E0\n0x86\t0x00E5\n0x87\t0x00E7\n0x88\t0x00EA\n0x89\t0x00EB\n0x8A\t0x00E8\n0x8B\t0x00EF\n0x8C\t0x00EE\n0x8D\t0x0131\n0x8E\t0x00C4\n0x8F\t0x00C5\n0x90\t0x00C9\n0x91\t0x00E6\n0x92\t0x00C6\n0x93\t0x00F4\n0x94\t0x00F6\n0x95\t0x00F2\n0x96\t0x00FB\n0x97\t0x00F9\n0x98\t0x0130\n0x99\t0x00D6\n0x9A\t0x00DC\n0x9B\t0x00F8\n0x9C\t0x00A3\n0x9D\t0x00D8\n0x9E\t0x015E\n0x9F\t0x015F\n0xA0\t0x00E1\n0xA1\t0x00ED\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x00F1\n0xA5\t0x00D1\n0xA6\t0x011E\n0xA7\t0x011F\n0xA8\t0x00BF\n0xA9\t0x00AE\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAD\t0x00A1\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x00C1\n0xB6\t0x00C2\n0xB7\t0x00C0\n0xB8\t0x00A9\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x00A2\n0xBE\t0x00A5\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x00E3\n0xC7\t0x00C3\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x00A4\n0xD0\t0x00BA\n0xD1\t0x00AA\n0xD2\t0x00CA\n0xD3\t0x00CB\n0xD4\t0x00C8\n0xD6\t0x00CD\n0xD7\t0x00CE\n0xD8\t0x00CF\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x00A6\n0xDE\t0x00CC\n0xDF\t0x2580\n0xE0\t0x00D3\n0xE1\t0x00DF\n0xE2\t0x00D4\n0xE3\t0x00D2\n0xE4\t0x00F5\n0xE5\t0x00D5\n0xE6\t0x00B5\n0xE8\t0x00D7\n0xE9\t0x00DA\n0xEA\t0x00DB\n0xEB\t0x00D9\n0xEC\t0x00EC\n0xED\t0x00FF\n0xEE\t0x00AF\n0xEF\t0x00B4\n0xF0\t0x00AD\n0xF1\t0x00B1\n0xF3\t0x00BE\n0xF4\t0x00B6\n0xF5\t0x00A7\n0xF6\t0x00F7\n0xF7\t0x00B8\n0xF8\t0x00B0\n0xF9\t0x00A8\n0xFA\t0x00B7\n0xFB\t0x00B9\n0xFC\t0x00B3\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP858.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C7\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x00E2\n0x84\t0x00E4\n0x85\t0x00E0\n0x86\t0x00E5\n0x87\t0x00E7\n0x88\t0x00EA\n0x89\t0x00EB\n0x8A\t0x00E8\n0x8B\t0x00EF\n0x8C\t0x00EE\n0x8D\t0x00EC\n0x8E\t0x00C4\n0x8F\t0x00C5\n0x90\t0x00C9\n0x91\t0x00E6\n0x92\t0x00C6\n0x93\t0x00F4\n0x94\t0x00F6\n0x95\t0x00F2\n0x96\t0x00FB\n0x97\t0x00F9\n0x98\t0x00FF\n0x99\t0x00D6\n0x9A\t0x00DC\n0x9B\t0x00F8\n0x9C\t0x00A3\n0x9D\t0x00D8\n0x9E\t0x00D7\n0x9F\t0x0192\n0xA0\t0x00E1\n0xA1\t0x00ED\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x00F1\n0xA5\t0x00D1\n0xA6\t0x00AA\n0xA7\t0x00BA\n0xA8\t0x00BF\n0xA9\t0x00AE\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAD\t0x00A1\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x00C1\n0xB6\t0x00C2\n0xB7\t0x00C0\n0xB8\t0x00A9\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x00A2\n0xBE\t0x00A5\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x00E3\n0xC7\t0x00C3\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x00A4\n0xD0\t0x00F0\n0xD1\t0x00D0\n0xD2\t0x00CA\n0xD3\t0x00CB\n0xD4\t0x00C8\n0xD5\t0x20AC\n0xD6\t0x00CD\n0xD7\t0x00CE\n0xD8\t0x00CF\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x00A6\n0xDE\t0x00CC\n0xDF\t0x2580\n0xE0\t0x00D3\n0xE1\t0x00DF\n0xE2\t0x00D4\n0xE3\t0x00D2\n0xE4\t0x00F5\n0xE5\t0x00D5\n0xE6\t0x00B5\n0xE7\t0x00FE\n0xE8\t0x00DE\n0xE9\t0x00DA\n0xEA\t0x00DB\n0xEB\t0x00D9\n0xEC\t0x00FD\n0xED\t0x00DD\n0xEE\t0x00AF\n0xEF\t0x00B4\n0xF0\t0x00AD\n0xF1\t0x00B1\n0xF2\t0x2017\n0xF3\t0x00BE\n0xF4\t0x00B6\n0xF5\t0x00A7\n0xF6\t0x00F7\n0xF7\t0x00B8\n0xF8\t0x00B0\n0xF9\t0x00A8\n0xFA\t0x00B7\n0xFB\t0x00B9\n0xFC\t0x00B3\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP860.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C7\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x00E2\n0x84\t0x00E3\n0x85\t0x00E0\n0x86\t0x00C1\n0x87\t0x00E7\n0x88\t0x00EA\n0x89\t0x00CA\n0x8A\t0x00E8\n0x8B\t0x00CD\n0x8C\t0x00D4\n0x8D\t0x00EC\n0x8E\t0x00C3\n0x8F\t0x00C2\n0x90\t0x00C9\n0x91\t0x00C0\n0x92\t0x00C8\n0x93\t0x00F4\n0x94\t0x00F5\n0x95\t0x00F2\n0x96\t0x00DA\n0x97\t0x00F9\n0x98\t0x00CC\n0x99\t0x00D5\n0x9A\t0x00DC\n0x9B\t0x00A2\n0x9C\t0x00A3\n0x9D\t0x00D9\n0x9E\t0x20A7\n0x9F\t0x00D3\n0xA0\t0x00E1\n0xA1\t0x00ED\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x00F1\n0xA5\t0x00D1\n0xA6\t0x00AA\n0xA7\t0x00BA\n0xA8\t0x00BF\n0xA9\t0x00D2\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAD\t0x00A1\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x2561\n0xB6\t0x2562\n0xB7\t0x2556\n0xB8\t0x2555\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x255C\n0xBE\t0x255B\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x255E\n0xC7\t0x255F\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x2567\n0xD0\t0x2568\n0xD1\t0x2564\n0xD2\t0x2565\n0xD3\t0x2559\n0xD4\t0x2558\n0xD5\t0x2552\n0xD6\t0x2553\n0xD7\t0x256B\n0xD8\t0x256A\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x258C\n0xDE\t0x2590\n0xDF\t0x2580\n0xE0\t0x03B1\n0xE1\t0x00DF\n0xE2\t0x0393\n0xE3\t0x03C0\n0xE4\t0x03A3\n0xE5\t0x03C3\n0xE6\t0x00B5\n0xE7\t0x03C4\n0xE8\t0x03A6\n0xE9\t0x0398\n0xEA\t0x03A9\n0xEB\t0x03B4\n0xEC\t0x221E\n0xED\t0x03C6\n0xEE\t0x03B5\n0xEF\t0x2229\n0xF0\t0x2261\n0xF1\t0x00B1\n0xF2\t0x2265\n0xF3\t0x2264\n0xF4\t0x2320\n0xF5\t0x2321\n0xF6\t0x00F7\n0xF7\t0x2248\n0xF8\t0x00B0\n0xF9\t0x2219\n0xFA\t0x00B7\n0xFB\t0x221A\n0xFC\t0x207F\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP861.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C7\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x00E2\n0x84\t0x00E4\n0x85\t0x00E0\n0x86\t0x00E5\n0x87\t0x00E7\n0x88\t0x00EA\n0x89\t0x00EB\n0x8A\t0x00E8\n0x8B\t0x00D0\n0x8C\t0x00F0\n0x8D\t0x00DE\n0x8E\t0x00C4\n0x8F\t0x00C5\n0x90\t0x00C9\n0x91\t0x00E6\n0x92\t0x00C6\n0x93\t0x00F4\n0x94\t0x00F6\n0x95\t0x00FE\n0x96\t0x00FB\n0x97\t0x00DD\n0x98\t0x00FD\n0x99\t0x00D6\n0x9A\t0x00DC\n0x9B\t0x00F8\n0x9C\t0x00A3\n0x9D\t0x00D8\n0x9E\t0x20A7\n0x9F\t0x0192\n0xA0\t0x00E1\n0xA1\t0x00ED\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x00C1\n0xA5\t0x00CD\n0xA6\t0x00D3\n0xA7\t0x00DA\n0xA8\t0x00BF\n0xA9\t0x2310\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAD\t0x00A1\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x2561\n0xB6\t0x2562\n0xB7\t0x2556\n0xB8\t0x2555\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x255C\n0xBE\t0x255B\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x255E\n0xC7\t0x255F\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x2567\n0xD0\t0x2568\n0xD1\t0x2564\n0xD2\t0x2565\n0xD3\t0x2559\n0xD4\t0x2558\n0xD5\t0x2552\n0xD6\t0x2553\n0xD7\t0x256B\n0xD8\t0x256A\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x258C\n0xDE\t0x2590\n0xDF\t0x2580\n0xE0\t0x03B1\n0xE1\t0x00DF\n0xE2\t0x0393\n0xE3\t0x03C0\n0xE4\t0x03A3\n0xE5\t0x03C3\n0xE6\t0x00B5\n0xE7\t0x03C4\n0xE8\t0x03A6\n0xE9\t0x0398\n0xEA\t0x03A9\n0xEB\t0x03B4\n0xEC\t0x221E\n0xED\t0x03C6\n0xEE\t0x03B5\n0xEF\t0x2229\n0xF0\t0x2261\n0xF1\t0x00B1\n0xF2\t0x2265\n0xF3\t0x2264\n0xF4\t0x2320\n0xF5\t0x2321\n0xF6\t0x00F7\n0xF7\t0x2248\n0xF8\t0x00B0\n0xF9\t0x2219\n0xFA\t0x00B7\n0xFB\t0x221A\n0xFC\t0x207F\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP862.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x05D0\n0x81\t0x05D1\n0x82\t0x05D2\n0x83\t0x05D3\n0x84\t0x05D4\n0x85\t0x05D5\n0x86\t0x05D6\n0x87\t0x05D7\n0x88\t0x05D8\n0x89\t0x05D9\n0x8A\t0x05DA\n0x8B\t0x05DB\n0x8C\t0x05DC\n0x8D\t0x05DD\n0x8E\t0x05DE\n0x8F\t0x05DF\n0x90\t0x05E0\n0x91\t0x05E1\n0x92\t0x05E2\n0x93\t0x05E3\n0x94\t0x05E4\n0x95\t0x05E5\n0x96\t0x05E6\n0x97\t0x05E7\n0x98\t0x05E8\n0x99\t0x05E9\n0x9A\t0x05EA\n0x9B\t0x00A2\n0x9C\t0x00A3\n0x9D\t0x00A5\n0x9E\t0x20A7\n0x9F\t0x0192\n0xA0\t0x00E1\n0xA1\t0x00ED\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x00F1\n0xA5\t0x00D1\n0xA6\t0x00AA\n0xA7\t0x00BA\n0xA8\t0x00BF\n0xA9\t0x2310\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAD\t0x00A1\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x2561\n0xB6\t0x2562\n0xB7\t0x2556\n0xB8\t0x2555\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x255C\n0xBE\t0x255B\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x255E\n0xC7\t0x255F\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x2567\n0xD0\t0x2568\n0xD1\t0x2564\n0xD2\t0x2565\n0xD3\t0x2559\n0xD4\t0x2558\n0xD5\t0x2552\n0xD6\t0x2553\n0xD7\t0x256B\n0xD8\t0x256A\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x258C\n0xDE\t0x2590\n0xDF\t0x2580\n0xE0\t0x03B1\n0xE1\t0x00DF\n0xE2\t0x0393\n0xE3\t0x03C0\n0xE4\t0x03A3\n0xE5\t0x03C3\n0xE6\t0x00B5\n0xE7\t0x03C4\n0xE8\t0x03A6\n0xE9\t0x0398\n0xEA\t0x03A9\n0xEB\t0x03B4\n0xEC\t0x221E\n0xED\t0x03C6\n0xEE\t0x03B5\n0xEF\t0x2229\n0xF0\t0x2261\n0xF1\t0x00B1\n0xF2\t0x2265\n0xF3\t0x2264\n0xF4\t0x2320\n0xF5\t0x2321\n0xF6\t0x00F7\n0xF7\t0x2248\n0xF8\t0x00B0\n0xF9\t0x2219\n0xFA\t0x00B7\n0xFB\t0x221A\n0xFC\t0x207F\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP863.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C7\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x00E2\n0x84\t0x00C2\n0x85\t0x00E0\n0x86\t0x00B6\n0x87\t0x00E7\n0x88\t0x00EA\n0x89\t0x00EB\n0x8A\t0x00E8\n0x8B\t0x00EF\n0x8C\t0x00EE\n0x8D\t0x2017\n0x8E\t0x00C0\n0x8F\t0x00A7\n0x90\t0x00C9\n0x91\t0x00C8\n0x92\t0x00CA\n0x93\t0x00F4\n0x94\t0x00CB\n0x95\t0x00CF\n0x96\t0x00FB\n0x97\t0x00F9\n0x98\t0x00A4\n0x99\t0x00D4\n0x9A\t0x00DC\n0x9B\t0x00A2\n0x9C\t0x00A3\n0x9D\t0x00D9\n0x9E\t0x00DB\n0x9F\t0x0192\n0xA0\t0x00A6\n0xA1\t0x00B4\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x00A8\n0xA5\t0x00B8\n0xA6\t0x00B3\n0xA7\t0x00AF\n0xA8\t0x00CE\n0xA9\t0x2310\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAD\t0x00BE\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x2561\n0xB6\t0x2562\n0xB7\t0x2556\n0xB8\t0x2555\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x255C\n0xBE\t0x255B\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x255E\n0xC7\t0x255F\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x2567\n0xD0\t0x2568\n0xD1\t0x2564\n0xD2\t0x2565\n0xD3\t0x2559\n0xD4\t0x2558\n0xD5\t0x2552\n0xD6\t0x2553\n0xD7\t0x256B\n0xD8\t0x256A\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x258C\n0xDE\t0x2590\n0xDF\t0x2580\n0xE0\t0x03B1\n0xE1\t0x00DF\n0xE2\t0x0393\n0xE3\t0x03C0\n0xE4\t0x03A3\n0xE5\t0x03C3\n0xE6\t0x00B5\n0xE7\t0x03C4\n0xE8\t0x03A6\n0xE9\t0x0398\n0xEA\t0x03A9\n0xEB\t0x03B4\n0xEC\t0x221E\n0xED\t0x03C6\n0xEE\t0x03B5\n0xEF\t0x2229\n0xF0\t0x2261\n0xF1\t0x00B1\n0xF2\t0x2265\n0xF3\t0x2264\n0xF4\t0x2320\n0xF5\t0x2321\n0xF6\t0x00F7\n0xF7\t0x2248\n0xF8\t0x00B0\n0xF9\t0x2219\n0xFA\t0x00B7\n0xFB\t0x221A\n0xFC\t0x207F\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP864.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x066A\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00B0\n0x81\t0x00B7\n0x82\t0x2219\n0x83\t0x221A\n0x84\t0x2592\n0x85\t0x2500\n0x86\t0x2502\n0x87\t0x253C\n0x88\t0x2524\n0x89\t0x252C\n0x8A\t0x251C\n0x8B\t0x2534\n0x8C\t0x2510\n0x8D\t0x250C\n0x8E\t0x2514\n0x8F\t0x2518\n0x90\t0x03B2\n0x91\t0x221E\n0x92\t0x03C6\n0x93\t0x00B1\n0x94\t0x00BD\n0x95\t0x00BC\n0x96\t0x2248\n0x97\t0x00AB\n0x98\t0x00BB\n0x99\t0xFEF7\n0x9A\t0xFEF8\n0x9D\t0xFEFB\n0x9E\t0xFEFC\n0xA0\t0x00A0\n0xA1\t0x00AD\n0xA2\t0xFE82\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0xFE84\n0xA8\t0xFE8E\n0xA9\t0xFE8F\n0xAA\t0xFE95\n0xAB\t0xFE99\n0xAC\t0x060C\n0xAD\t0xFE9D\n0xAE\t0xFEA1\n0xAF\t0xFEA5\n0xB0\t0x0660\n0xB1\t0x0661\n0xB2\t0x0662\n0xB3\t0x0663\n0xB4\t0x0664\n0xB5\t0x0665\n0xB6\t0x0666\n0xB7\t0x0667\n0xB8\t0x0668\n0xB9\t0x0669\n0xBA\t0xFED1\n0xBB\t0x061B\n0xBC\t0xFEB1\n0xBD\t0xFEB5\n0xBE\t0xFEB9\n0xBF\t0x061F\n0xC0\t0x00A2\n0xC1\t0xFE80\n0xC2\t0xFE81\n0xC3\t0xFE83\n0xC4\t0xFE85\n0xC5\t0xFECA\n0xC6\t0xFE8B\n0xC7\t0xFE8D\n0xC8\t0xFE91\n0xC9\t0xFE93\n0xCA\t0xFE97\n0xCB\t0xFE9B\n0xCC\t0xFE9F\n0xCD\t0xFEA3\n0xCE\t0xFEA7\n0xCF\t0xFEA9\n0xD0\t0xFEAB\n0xD1\t0xFEAD\n0xD2\t0xFEAF\n0xD3\t0xFEB3\n0xD4\t0xFEB7\n0xD5\t0xFEBB\n0xD6\t0xFEBF\n0xD7\t0xFEC1\n0xD8\t0xFEC5\n0xD9\t0xFECB\n0xDA\t0xFECF\n0xDB\t0x00A6\n0xDC\t0x00AC\n0xDD\t0x00F7\n0xDE\t0x00D7\n0xDF\t0xFEC9\n0xE0\t0x0640\n0xE1\t0xFED3\n0xE2\t0xFED7\n0xE3\t0xFEDB\n0xE4\t0xFEDF\n0xE5\t0xFEE3\n0xE6\t0xFEE7\n0xE7\t0xFEEB\n0xE8\t0xFEED\n0xE9\t0xFEEF\n0xEA\t0xFEF3\n0xEB\t0xFEBD\n0xEC\t0xFECC\n0xED\t0xFECE\n0xEE\t0xFECD\n0xEF\t0xFEE1\n0xF0\t0xFE7D\n0xF1\t0x0651\n0xF2\t0xFEE5\n0xF3\t0xFEE9\n0xF4\t0xFEEC\n0xF5\t0xFEF0\n0xF6\t0xFEF2\n0xF7\t0xFED0\n0xF8\t0xFED5\n0xF9\t0xFEF5\n0xFA\t0xFEF6\n0xFB\t0xFEDD\n0xFC\t0xFED9\n0xFD\t0xFEF1\n0xFE\t0x25A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP865.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C7\n0x81\t0x00FC\n0x82\t0x00E9\n0x83\t0x00E2\n0x84\t0x00E4\n0x85\t0x00E0\n0x86\t0x00E5\n0x87\t0x00E7\n0x88\t0x00EA\n0x89\t0x00EB\n0x8A\t0x00E8\n0x8B\t0x00EF\n0x8C\t0x00EE\n0x8D\t0x00EC\n0x8E\t0x00C4\n0x8F\t0x00C5\n0x90\t0x00C9\n0x91\t0x00E6\n0x92\t0x00C6\n0x93\t0x00F4\n0x94\t0x00F6\n0x95\t0x00F2\n0x96\t0x00FB\n0x97\t0x00F9\n0x98\t0x00FF\n0x99\t0x00D6\n0x9A\t0x00DC\n0x9B\t0x00F8\n0x9C\t0x00A3\n0x9D\t0x00D8\n0x9E\t0x20A7\n0x9F\t0x0192\n0xA0\t0x00E1\n0xA1\t0x00ED\n0xA2\t0x00F3\n0xA3\t0x00FA\n0xA4\t0x00F1\n0xA5\t0x00D1\n0xA6\t0x00AA\n0xA7\t0x00BA\n0xA8\t0x00BF\n0xA9\t0x2310\n0xAA\t0x00AC\n0xAB\t0x00BD\n0xAC\t0x00BC\n0xAD\t0x00A1\n0xAE\t0x00AB\n0xAF\t0x00A4\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x2561\n0xB6\t0x2562\n0xB7\t0x2556\n0xB8\t0x2555\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x255C\n0xBE\t0x255B\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x255E\n0xC7\t0x255F\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x2567\n0xD0\t0x2568\n0xD1\t0x2564\n0xD2\t0x2565\n0xD3\t0x2559\n0xD4\t0x2558\n0xD5\t0x2552\n0xD6\t0x2553\n0xD7\t0x256B\n0xD8\t0x256A\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x258C\n0xDE\t0x2590\n0xDF\t0x2580\n0xE0\t0x03B1\n0xE1\t0x00DF\n0xE2\t0x0393\n0xE3\t0x03C0\n0xE4\t0x03A3\n0xE5\t0x03C3\n0xE6\t0x00B5\n0xE7\t0x03C4\n0xE8\t0x03A6\n0xE9\t0x0398\n0xEA\t0x03A9\n0xEB\t0x03B4\n0xEC\t0x221E\n0xED\t0x03C6\n0xEE\t0x03B5\n0xEF\t0x2229\n0xF0\t0x2261\n0xF1\t0x00B1\n0xF2\t0x2265\n0xF3\t0x2264\n0xF4\t0x2320\n0xF5\t0x2321\n0xF6\t0x00F7\n0xF7\t0x2248\n0xF8\t0x00B0\n0xF9\t0x2219\n0xFA\t0x00B7\n0xFB\t0x221A\n0xFC\t0x207F\n0xFD\t0x00B2\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP866.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0410\n0x81\t0x0411\n0x82\t0x0412\n0x83\t0x0413\n0x84\t0x0414\n0x85\t0x0415\n0x86\t0x0416\n0x87\t0x0417\n0x88\t0x0418\n0x89\t0x0419\n0x8A\t0x041A\n0x8B\t0x041B\n0x8C\t0x041C\n0x8D\t0x041D\n0x8E\t0x041E\n0x8F\t0x041F\n0x90\t0x0420\n0x91\t0x0421\n0x92\t0x0422\n0x93\t0x0423\n0x94\t0x0424\n0x95\t0x0425\n0x96\t0x0426\n0x97\t0x0427\n0x98\t0x0428\n0x99\t0x0429\n0x9A\t0x042A\n0x9B\t0x042B\n0x9C\t0x042C\n0x9D\t0x042D\n0x9E\t0x042E\n0x9F\t0x042F\n0xA0\t0x0430\n0xA1\t0x0431\n0xA2\t0x0432\n0xA3\t0x0433\n0xA4\t0x0434\n0xA5\t0x0435\n0xA6\t0x0436\n0xA7\t0x0437\n0xA8\t0x0438\n0xA9\t0x0439\n0xAA\t0x043A\n0xAB\t0x043B\n0xAC\t0x043C\n0xAD\t0x043D\n0xAE\t0x043E\n0xAF\t0x043F\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x2561\n0xB6\t0x2562\n0xB7\t0x2556\n0xB8\t0x2555\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x255C\n0xBE\t0x255B\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x255E\n0xC7\t0x255F\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x2567\n0xD0\t0x2568\n0xD1\t0x2564\n0xD2\t0x2565\n0xD3\t0x2559\n0xD4\t0x2558\n0xD5\t0x2552\n0xD6\t0x2553\n0xD7\t0x256B\n0xD8\t0x256A\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x258C\n0xDE\t0x2590\n0xDF\t0x2580\n0xE0\t0x0440\n0xE1\t0x0441\n0xE2\t0x0442\n0xE3\t0x0443\n0xE4\t0x0444\n0xE5\t0x0445\n0xE6\t0x0446\n0xE7\t0x0447\n0xE8\t0x0448\n0xE9\t0x0449\n0xEA\t0x044A\n0xEB\t0x044B\n0xEC\t0x044C\n0xED\t0x044D\n0xEE\t0x044E\n0xEF\t0x044F\n0xF0\t0x0401\n0xF1\t0x0451\n0xF2\t0x0404\n0xF3\t0x0454\n0xF4\t0x0407\n0xF5\t0x0457\n0xF6\t0x040E\n0xF7\t0x045E\n0xF8\t0x00B0\n0xF9\t0x2219\n0xFA\t0x00B7\n0xFB\t0x221A\n0xFC\t0x2116\n0xFD\t0x00A4\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP869.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x86\t0x0386\n0x88\t0x00B7\n0x89\t0x00AC\n0x8A\t0x00A6\n0x8B\t0x2018\n0x8C\t0x2019\n0x8D\t0x0388\n0x8E\t0x2015\n0x8F\t0x0389\n0x90\t0x038A\n0x91\t0x03AA\n0x92\t0x038C\n0x95\t0x038E\n0x96\t0x03AB\n0x97\t0x00A9\n0x98\t0x038F\n0x99\t0x00B2\n0x9A\t0x00B3\n0x9B\t0x03AC\n0x9C\t0x00A3\n0x9D\t0x03AD\n0x9E\t0x03AE\n0x9F\t0x03AF\n0xA0\t0x03CA\n0xA1\t0x0390\n0xA2\t0x03CC\n0xA3\t0x03CD\n0xA4\t0x0391\n0xA5\t0x0392\n0xA6\t0x0393\n0xA7\t0x0394\n0xA8\t0x0395\n0xA9\t0x0396\n0xAA\t0x0397\n0xAB\t0x00BD\n0xAC\t0x0398\n0xAD\t0x0399\n0xAE\t0x00AB\n0xAF\t0x00BB\n0xB0\t0x2591\n0xB1\t0x2592\n0xB2\t0x2593\n0xB3\t0x2502\n0xB4\t0x2524\n0xB5\t0x039A\n0xB6\t0x039B\n0xB7\t0x039C\n0xB8\t0x039D\n0xB9\t0x2563\n0xBA\t0x2551\n0xBB\t0x2557\n0xBC\t0x255D\n0xBD\t0x039E\n0xBE\t0x039F\n0xBF\t0x2510\n0xC0\t0x2514\n0xC1\t0x2534\n0xC2\t0x252C\n0xC3\t0x251C\n0xC4\t0x2500\n0xC5\t0x253C\n0xC6\t0x03A0\n0xC7\t0x03A1\n0xC8\t0x255A\n0xC9\t0x2554\n0xCA\t0x2569\n0xCB\t0x2566\n0xCC\t0x2560\n0xCD\t0x2550\n0xCE\t0x256C\n0xCF\t0x03A3\n0xD0\t0x03A4\n0xD1\t0x03A5\n0xD2\t0x03A6\n0xD3\t0x03A7\n0xD4\t0x03A8\n0xD5\t0x03A9\n0xD6\t0x03B1\n0xD7\t0x03B2\n0xD8\t0x03B3\n0xD9\t0x2518\n0xDA\t0x250C\n0xDB\t0x2588\n0xDC\t0x2584\n0xDD\t0x03B4\n0xDE\t0x03B5\n0xDF\t0x2580\n0xE0\t0x03B6\n0xE1\t0x03B7\n0xE2\t0x03B8\n0xE3\t0x03B9\n0xE4\t0x03BA\n0xE5\t0x03BB\n0xE6\t0x03BC\n0xE7\t0x03BD\n0xE8\t0x03BE\n0xE9\t0x03BF\n0xEA\t0x03C0\n0xEB\t0x03C1\n0xEC\t0x03C3\n0xED\t0x03C2\n0xEE\t0x03C4\n0xEF\t0x0384\n0xF0\t0x00AD\n0xF1\t0x00B1\n0xF2\t0x03C5\n0xF3\t0x03C6\n0xF4\t0x03C7\n0xF5\t0x00A7\n0xF6\t0x03C8\n0xF7\t0x0385\n0xF8\t0x00B0\n0xF9\t0x00A8\n0xFA\t0x03C9\n0xFB\t0x03CB\n0xFC\t0x03B0\n0xFD\t0x03CE\n0xFE\t0x25A0\n0xFF\t0x00A0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP874.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x20AC\n0x85\t0x2026\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0xA0\t0x00A0\n0xA1\t0x0E01\n0xA2\t0x0E02\n0xA3\t0x0E03\n0xA4\t0x0E04\n0xA5\t0x0E05\n0xA6\t0x0E06\n0xA7\t0x0E07\n0xA8\t0x0E08\n0xA9\t0x0E09\n0xAA\t0x0E0A\n0xAB\t0x0E0B\n0xAC\t0x0E0C\n0xAD\t0x0E0D\n0xAE\t0x0E0E\n0xAF\t0x0E0F\n0xB0\t0x0E10\n0xB1\t0x0E11\n0xB2\t0x0E12\n0xB3\t0x0E13\n0xB4\t0x0E14\n0xB5\t0x0E15\n0xB6\t0x0E16\n0xB7\t0x0E17\n0xB8\t0x0E18\n0xB9\t0x0E19\n0xBA\t0x0E1A\n0xBB\t0x0E1B\n0xBC\t0x0E1C\n0xBD\t0x0E1D\n0xBE\t0x0E1E\n0xBF\t0x0E1F\n0xC0\t0x0E20\n0xC1\t0x0E21\n0xC2\t0x0E22\n0xC3\t0x0E23\n0xC4\t0x0E24\n0xC5\t0x0E25\n0xC6\t0x0E26\n0xC7\t0x0E27\n0xC8\t0x0E28\n0xC9\t0x0E29\n0xCA\t0x0E2A\n0xCB\t0x0E2B\n0xCC\t0x0E2C\n0xCD\t0x0E2D\n0xCE\t0x0E2E\n0xCF\t0x0E2F\n0xD0\t0x0E30\n0xD1\t0x0E31\n0xD2\t0x0E32\n0xD3\t0x0E33\n0xD4\t0x0E34\n0xD5\t0x0E35\n0xD6\t0x0E36\n0xD7\t0x0E37\n0xD8\t0x0E38\n0xD9\t0x0E39\n0xDA\t0x0E3A\n0xDF\t0x0E3F\n0xE0\t0x0E40\n0xE1\t0x0E41\n0xE2\t0x0E42\n0xE3\t0x0E43\n0xE4\t0x0E44\n0xE5\t0x0E45\n0xE6\t0x0E46\n0xE7\t0x0E47\n0xE8\t0x0E48\n0xE9\t0x0E49\n0xEA\t0x0E4A\n0xEB\t0x0E4B\n0xEC\t0x0E4C\n0xED\t0x0E4D\n0xEE\t0x0E4E\n0xEF\t0x0E4F\n0xF0\t0x0E50\n0xF1\t0x0E51\n0xF2\t0x0E52\n0xF3\t0x0E53\n0xF4\t0x0E54\n0xF5\t0x0E55\n0xF6\t0x0E56\n0xF7\t0x0E57\n0xF8\t0x0E58\n0xF9\t0x0E59\n0xFA\t0x0E5A\n0xFB\t0x0E5B\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP922.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x203E\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x00C3\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x00CC\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x0160\n0xD1\t0x00D1\n0xD2\t0x00D2\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x00D8\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x00DD\n0xDE\t0x017D\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x00E3\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x0161\n0xF1\t0x00F1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x00FD\n0xFE\t0x017E\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP932.IRREVERSIBLE.TXT",
    "content": "0x8160\t0xFF5E\n0x8161\t0x2225\n0x817C\t0xFF0D\n0x8191\t0xFFE0\n0x8192\t0xFFE1\n0x8754\t0x2160\n0x8755\t0x2161\n0x8756\t0x2162\n0x8757\t0x2163\n0x8758\t0x2164\n0x8759\t0x2165\n0x875A\t0x2166\n0x875B\t0x2167\n0x875C\t0x2168\n0x875D\t0x2169\n0x8782\t0x2116\n0x8784\t0x2121\n0x878A\t0x3231\n0x8790\t0x2252\n0x8791\t0x2261\n0x8792\t0x222B\n0x8795\t0x221A\n0x8796\t0x22A5\n0x8797\t0x2220\n0x879A\t0x2235\n0x879B\t0x2229\n0x879C\t0x222A\n0xED40\t0x7E8A\n0xED41\t0x891C\n0xED42\t0x9348\n0xED43\t0x9288\n0xED44\t0x84DC\n0xED45\t0x4FC9\n0xED46\t0x70BB\n0xED47\t0x6631\n0xED48\t0x68C8\n0xED49\t0x92F9\n0xED4A\t0x66FB\n0xED4B\t0x5F45\n0xED4C\t0x4E28\n0xED4D\t0x4EE1\n0xED4E\t0x4EFC\n0xED4F\t0x4F00\n0xED50\t0x4F03\n0xED51\t0x4F39\n0xED52\t0x4F56\n0xED53\t0x4F92\n0xED54\t0x4F8A\n0xED55\t0x4F9A\n0xED56\t0x4F94\n0xED57\t0x4FCD\n0xED58\t0x5040\n0xED59\t0x5022\n0xED5A\t0x4FFF\n0xED5B\t0x501E\n0xED5C\t0x5046\n0xED5D\t0x5070\n0xED5E\t0x5042\n0xED5F\t0x5094\n0xED60\t0x50F4\n0xED61\t0x50D8\n0xED62\t0x514A\n0xED63\t0x5164\n0xED64\t0x519D\n0xED65\t0x51BE\n0xED66\t0x51EC\n0xED67\t0x5215\n0xED68\t0x529C\n0xED69\t0x52A6\n0xED6A\t0x52C0\n0xED6B\t0x52DB\n0xED6C\t0x5300\n0xED6D\t0x5307\n0xED6E\t0x5324\n0xED6F\t0x5372\n0xED70\t0x5393\n0xED71\t0x53B2\n0xED72\t0x53DD\n0xED73\t0xFA0E\n0xED74\t0x549C\n0xED75\t0x548A\n0xED76\t0x54A9\n0xED77\t0x54FF\n0xED78\t0x5586\n0xED79\t0x5759\n0xED7A\t0x5765\n0xED7B\t0x57AC\n0xED7C\t0x57C8\n0xED7D\t0x57C7\n0xED7E\t0xFA0F\n0xED80\t0xFA10\n0xED81\t0x589E\n0xED82\t0x58B2\n0xED83\t0x590B\n0xED84\t0x5953\n0xED85\t0x595B\n0xED86\t0x595D\n0xED87\t0x5963\n0xED88\t0x59A4\n0xED89\t0x59BA\n0xED8A\t0x5B56\n0xED8B\t0x5BC0\n0xED8C\t0x752F\n0xED8D\t0x5BD8\n0xED8E\t0x5BEC\n0xED8F\t0x5C1E\n0xED90\t0x5CA6\n0xED91\t0x5CBA\n0xED92\t0x5CF5\n0xED93\t0x5D27\n0xED94\t0x5D53\n0xED95\t0xFA11\n0xED96\t0x5D42\n0xED97\t0x5D6D\n0xED98\t0x5DB8\n0xED99\t0x5DB9\n0xED9A\t0x5DD0\n0xED9B\t0x5F21\n0xED9C\t0x5F34\n0xED9D\t0x5F67\n0xED9E\t0x5FB7\n0xED9F\t0x5FDE\n0xEDA0\t0x605D\n0xEDA1\t0x6085\n0xEDA2\t0x608A\n0xEDA3\t0x60DE\n0xEDA4\t0x60D5\n0xEDA5\t0x6120\n0xEDA6\t0x60F2\n0xEDA7\t0x6111\n0xEDA8\t0x6137\n0xEDA9\t0x6130\n0xEDAA\t0x6198\n0xEDAB\t0x6213\n0xEDAC\t0x62A6\n0xEDAD\t0x63F5\n0xEDAE\t0x6460\n0xEDAF\t0x649D\n0xEDB0\t0x64CE\n0xEDB1\t0x654E\n0xEDB2\t0x6600\n0xEDB3\t0x6615\n0xEDB4\t0x663B\n0xEDB5\t0x6609\n0xEDB6\t0x662E\n0xEDB7\t0x661E\n0xEDB8\t0x6624\n0xEDB9\t0x6665\n0xEDBA\t0x6657\n0xEDBB\t0x6659\n0xEDBC\t0xFA12\n0xEDBD\t0x6673\n0xEDBE\t0x6699\n0xEDBF\t0x66A0\n0xEDC0\t0x66B2\n0xEDC1\t0x66BF\n0xEDC2\t0x66FA\n0xEDC3\t0x670E\n0xEDC4\t0xF929\n0xEDC5\t0x6766\n0xEDC6\t0x67BB\n0xEDC7\t0x6852\n0xEDC8\t0x67C0\n0xEDC9\t0x6801\n0xEDCA\t0x6844\n0xEDCB\t0x68CF\n0xEDCC\t0xFA13\n0xEDCD\t0x6968\n0xEDCE\t0xFA14\n0xEDCF\t0x6998\n0xEDD0\t0x69E2\n0xEDD1\t0x6A30\n0xEDD2\t0x6A6B\n0xEDD3\t0x6A46\n0xEDD4\t0x6A73\n0xEDD5\t0x6A7E\n0xEDD6\t0x6AE2\n0xEDD7\t0x6AE4\n0xEDD8\t0x6BD6\n0xEDD9\t0x6C3F\n0xEDDA\t0x6C5C\n0xEDDB\t0x6C86\n0xEDDC\t0x6C6F\n0xEDDD\t0x6CDA\n0xEDDE\t0x6D04\n0xEDDF\t0x6D87\n0xEDE0\t0x6D6F\n0xEDE1\t0x6D96\n0xEDE2\t0x6DAC\n0xEDE3\t0x6DCF\n0xEDE4\t0x6DF8\n0xEDE5\t0x6DF2\n0xEDE6\t0x6DFC\n0xEDE7\t0x6E39\n0xEDE8\t0x6E5C\n0xEDE9\t0x6E27\n0xEDEA\t0x6E3C\n0xEDEB\t0x6EBF\n0xEDEC\t0x6F88\n0xEDED\t0x6FB5\n0xEDEE\t0x6FF5\n0xEDEF\t0x7005\n0xEDF0\t0x7007\n0xEDF1\t0x7028\n0xEDF2\t0x7085\n0xEDF3\t0x70AB\n0xEDF4\t0x710F\n0xEDF5\t0x7104\n0xEDF6\t0x715C\n0xEDF7\t0x7146\n0xEDF8\t0x7147\n0xEDF9\t0xFA15\n0xEDFA\t0x71C1\n0xEDFB\t0x71FE\n0xEDFC\t0x72B1\n0xEE40\t0x72BE\n0xEE41\t0x7324\n0xEE42\t0xFA16\n0xEE43\t0x7377\n0xEE44\t0x73BD\n0xEE45\t0x73C9\n0xEE46\t0x73D6\n0xEE47\t0x73E3\n0xEE48\t0x73D2\n0xEE49\t0x7407\n0xEE4A\t0x73F5\n0xEE4B\t0x7426\n0xEE4C\t0x742A\n0xEE4D\t0x7429\n0xEE4E\t0x742E\n0xEE4F\t0x7462\n0xEE50\t0x7489\n0xEE51\t0x749F\n0xEE52\t0x7501\n0xEE53\t0x756F\n0xEE54\t0x7682\n0xEE55\t0x769C\n0xEE56\t0x769E\n0xEE57\t0x769B\n0xEE58\t0x76A6\n0xEE59\t0xFA17\n0xEE5A\t0x7746\n0xEE5B\t0x52AF\n0xEE5C\t0x7821\n0xEE5D\t0x784E\n0xEE5E\t0x7864\n0xEE5F\t0x787A\n0xEE60\t0x7930\n0xEE61\t0xFA18\n0xEE62\t0xFA19\n0xEE63\t0xFA1A\n0xEE64\t0x7994\n0xEE65\t0xFA1B\n0xEE66\t0x799B\n0xEE67\t0x7AD1\n0xEE68\t0x7AE7\n0xEE69\t0xFA1C\n0xEE6A\t0x7AEB\n0xEE6B\t0x7B9E\n0xEE6C\t0xFA1D\n0xEE6D\t0x7D48\n0xEE6E\t0x7D5C\n0xEE6F\t0x7DB7\n0xEE70\t0x7DA0\n0xEE71\t0x7DD6\n0xEE72\t0x7E52\n0xEE73\t0x7F47\n0xEE74\t0x7FA1\n0xEE75\t0xFA1E\n0xEE76\t0x8301\n0xEE77\t0x8362\n0xEE78\t0x837F\n0xEE79\t0x83C7\n0xEE7A\t0x83F6\n0xEE7B\t0x8448\n0xEE7C\t0x84B4\n0xEE7D\t0x8553\n0xEE7E\t0x8559\n0xEE80\t0x856B\n0xEE81\t0xFA1F\n0xEE82\t0x85B0\n0xEE83\t0xFA20\n0xEE84\t0xFA21\n0xEE85\t0x8807\n0xEE86\t0x88F5\n0xEE87\t0x8A12\n0xEE88\t0x8A37\n0xEE89\t0x8A79\n0xEE8A\t0x8AA7\n0xEE8B\t0x8ABE\n0xEE8C\t0x8ADF\n0xEE8D\t0xFA22\n0xEE8E\t0x8AF6\n0xEE8F\t0x8B53\n0xEE90\t0x8B7F\n0xEE91\t0x8CF0\n0xEE92\t0x8CF4\n0xEE93\t0x8D12\n0xEE94\t0x8D76\n0xEE95\t0xFA23\n0xEE96\t0x8ECF\n0xEE97\t0xFA24\n0xEE98\t0xFA25\n0xEE99\t0x9067\n0xEE9A\t0x90DE\n0xEE9B\t0xFA26\n0xEE9C\t0x9115\n0xEE9D\t0x9127\n0xEE9E\t0x91DA\n0xEE9F\t0x91D7\n0xEEA0\t0x91DE\n0xEEA1\t0x91ED\n0xEEA2\t0x91EE\n0xEEA3\t0x91E4\n0xEEA4\t0x91E5\n0xEEA5\t0x9206\n0xEEA6\t0x9210\n0xEEA7\t0x920A\n0xEEA8\t0x923A\n0xEEA9\t0x9240\n0xEEAA\t0x923C\n0xEEAB\t0x924E\n0xEEAC\t0x9259\n0xEEAD\t0x9251\n0xEEAE\t0x9239\n0xEEAF\t0x9267\n0xEEB0\t0x92A7\n0xEEB1\t0x9277\n0xEEB2\t0x9278\n0xEEB3\t0x92E7\n0xEEB4\t0x92D7\n0xEEB5\t0x92D9\n0xEEB6\t0x92D0\n0xEEB7\t0xFA27\n0xEEB8\t0x92D5\n0xEEB9\t0x92E0\n0xEEBA\t0x92D3\n0xEEBB\t0x9325\n0xEEBC\t0x9321\n0xEEBD\t0x92FB\n0xEEBE\t0xFA28\n0xEEBF\t0x931E\n0xEEC0\t0x92FF\n0xEEC1\t0x931D\n0xEEC2\t0x9302\n0xEEC3\t0x9370\n0xEEC4\t0x9357\n0xEEC5\t0x93A4\n0xEEC6\t0x93C6\n0xEEC7\t0x93DE\n0xEEC8\t0x93F8\n0xEEC9\t0x9431\n0xEECA\t0x9445\n0xEECB\t0x9448\n0xEECC\t0x9592\n0xEECD\t0xF9DC\n0xEECE\t0xFA29\n0xEECF\t0x969D\n0xEED0\t0x96AF\n0xEED1\t0x9733\n0xEED2\t0x973B\n0xEED3\t0x9743\n0xEED4\t0x974D\n0xEED5\t0x974F\n0xEED6\t0x9751\n0xEED7\t0x9755\n0xEED8\t0x9857\n0xEED9\t0x9865\n0xEEDA\t0xFA2A\n0xEEDB\t0xFA2B\n0xEEDC\t0x9927\n0xEEDD\t0xFA2C\n0xEEDE\t0x999E\n0xEEDF\t0x9A4E\n0xEEE0\t0x9AD9\n0xEEE1\t0x9ADC\n0xEEE2\t0x9B75\n0xEEE3\t0x9B72\n0xEEE4\t0x9B8F\n0xEEE5\t0x9BB1\n0xEEE6\t0x9BBB\n0xEEE7\t0x9C00\n0xEEE8\t0x9D70\n0xEEE9\t0x9D6B\n0xEEEA\t0xFA2D\n0xEEEB\t0x9E19\n0xEEEC\t0x9ED1\n0xEEEF\t0x2170\n0xEEF0\t0x2171\n0xEEF1\t0x2172\n0xEEF2\t0x2173\n0xEEF3\t0x2174\n0xEEF4\t0x2175\n0xEEF5\t0x2176\n0xEEF6\t0x2177\n0xEEF7\t0x2178\n0xEEF8\t0x2179\n0xEEF9\t0xFFE2\n0xEEFA\t0xFFE4\n0xEEFB\t0xFF07\n0xEEFC\t0xFF02\n0xFA5B\t0x2235\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP932.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8140\t0x3000\n0x8141\t0x3001\n0x8142\t0x3002\n0x8143\t0xFF0C\n0x8144\t0xFF0E\n0x8145\t0x30FB\n0x8146\t0xFF1A\n0x8147\t0xFF1B\n0x8148\t0xFF1F\n0x8149\t0xFF01\n0x814A\t0x309B\n0x814B\t0x309C\n0x814C\t0x00B4\n0x814D\t0xFF40\n0x814E\t0x00A8\n0x814F\t0xFF3E\n0x8150\t0xFFE3\n0x8151\t0xFF3F\n0x8152\t0x30FD\n0x8153\t0x30FE\n0x8154\t0x309D\n0x8155\t0x309E\n0x8156\t0x3003\n0x8157\t0x4EDD\n0x8158\t0x3005\n0x8159\t0x3006\n0x815A\t0x3007\n0x815B\t0x30FC\n0x815C\t0x2015\n0x815D\t0x2010\n0x815E\t0xFF0F\n0x815F\t0xFF3C\n0x8160\t0x301C\n0x8161\t0x2016\n0x8162\t0xFF5C\n0x8163\t0x2026\n0x8164\t0x2025\n0x8165\t0x2018\n0x8166\t0x2019\n0x8167\t0x201C\n0x8168\t0x201D\n0x8169\t0xFF08\n0x816A\t0xFF09\n0x816B\t0x3014\n0x816C\t0x3015\n0x816D\t0xFF3B\n0x816E\t0xFF3D\n0x816F\t0xFF5B\n0x8170\t0xFF5D\n0x8171\t0x3008\n0x8172\t0x3009\n0x8173\t0x300A\n0x8174\t0x300B\n0x8175\t0x300C\n0x8176\t0x300D\n0x8177\t0x300E\n0x8178\t0x300F\n0x8179\t0x3010\n0x817A\t0x3011\n0x817B\t0xFF0B\n0x817C\t0x2212\n0x817D\t0x00B1\n0x817E\t0x00D7\n0x8180\t0x00F7\n0x8181\t0xFF1D\n0x8182\t0x2260\n0x8183\t0xFF1C\n0x8184\t0xFF1E\n0x8185\t0x2266\n0x8186\t0x2267\n0x8187\t0x221E\n0x8188\t0x2234\n0x8189\t0x2642\n0x818A\t0x2640\n0x818B\t0x00B0\n0x818C\t0x2032\n0x818D\t0x2033\n0x818E\t0x2103\n0x818F\t0xFFE5\n0x8190\t0xFF04\n0x8191\t0x00A2\n0x8192\t0x00A3\n0x8193\t0xFF05\n0x8194\t0xFF03\n0x8195\t0xFF06\n0x8196\t0xFF0A\n0x8197\t0xFF20\n0x8198\t0x00A7\n0x8199\t0x2606\n0x819A\t0x2605\n0x819B\t0x25CB\n0x819C\t0x25CF\n0x819D\t0x25CE\n0x819E\t0x25C7\n0x819F\t0x25C6\n0x81A0\t0x25A1\n0x81A1\t0x25A0\n0x81A2\t0x25B3\n0x81A3\t0x25B2\n0x81A4\t0x25BD\n0x81A5\t0x25BC\n0x81A6\t0x203B\n0x81A7\t0x3012\n0x81A8\t0x2192\n0x81A9\t0x2190\n0x81AA\t0x2191\n0x81AB\t0x2193\n0x81AC\t0x3013\n0x81B8\t0x2208\n0x81B9\t0x220B\n0x81BA\t0x2286\n0x81BB\t0x2287\n0x81BC\t0x2282\n0x81BD\t0x2283\n0x81BE\t0x222A\n0x81BF\t0x2229\n0x81C8\t0x2227\n0x81C9\t0x2228\n0x81CA\t0x00AC\n0x81CB\t0x21D2\n0x81CC\t0x21D4\n0x81CD\t0x2200\n0x81CE\t0x2203\n0x81DA\t0x2220\n0x81DB\t0x22A5\n0x81DC\t0x2312\n0x81DD\t0x2202\n0x81DE\t0x2207\n0x81DF\t0x2261\n0x81E0\t0x2252\n0x81E1\t0x226A\n0x81E2\t0x226B\n0x81E3\t0x221A\n0x81E4\t0x223D\n0x81E5\t0x221D\n0x81E6\t0x2235\n0x81E7\t0x222B\n0x81E8\t0x222C\n0x81F0\t0x212B\n0x81F1\t0x2030\n0x81F2\t0x266F\n0x81F3\t0x266D\n0x81F4\t0x266A\n0x81F5\t0x2020\n0x81F6\t0x2021\n0x81F7\t0x00B6\n0x81FC\t0x25EF\n0x824F\t0xFF10\n0x8250\t0xFF11\n0x8251\t0xFF12\n0x8252\t0xFF13\n0x8253\t0xFF14\n0x8254\t0xFF15\n0x8255\t0xFF16\n0x8256\t0xFF17\n0x8257\t0xFF18\n0x8258\t0xFF19\n0x8260\t0xFF21\n0x8261\t0xFF22\n0x8262\t0xFF23\n0x8263\t0xFF24\n0x8264\t0xFF25\n0x8265\t0xFF26\n0x8266\t0xFF27\n0x8267\t0xFF28\n0x8268\t0xFF29\n0x8269\t0xFF2A\n0x826A\t0xFF2B\n0x826B\t0xFF2C\n0x826C\t0xFF2D\n0x826D\t0xFF2E\n0x826E\t0xFF2F\n0x826F\t0xFF30\n0x8270\t0xFF31\n0x8271\t0xFF32\n0x8272\t0xFF33\n0x8273\t0xFF34\n0x8274\t0xFF35\n0x8275\t0xFF36\n0x8276\t0xFF37\n0x8277\t0xFF38\n0x8278\t0xFF39\n0x8279\t0xFF3A\n0x8281\t0xFF41\n0x8282\t0xFF42\n0x8283\t0xFF43\n0x8284\t0xFF44\n0x8285\t0xFF45\n0x8286\t0xFF46\n0x8287\t0xFF47\n0x8288\t0xFF48\n0x8289\t0xFF49\n0x828A\t0xFF4A\n0x828B\t0xFF4B\n0x828C\t0xFF4C\n0x828D\t0xFF4D\n0x828E\t0xFF4E\n0x828F\t0xFF4F\n0x8290\t0xFF50\n0x8291\t0xFF51\n0x8292\t0xFF52\n0x8293\t0xFF53\n0x8294\t0xFF54\n0x8295\t0xFF55\n0x8296\t0xFF56\n0x8297\t0xFF57\n0x8298\t0xFF58\n0x8299\t0xFF59\n0x829A\t0xFF5A\n0x829F\t0x3041\n0x82A0\t0x3042\n0x82A1\t0x3043\n0x82A2\t0x3044\n0x82A3\t0x3045\n0x82A4\t0x3046\n0x82A5\t0x3047\n0x82A6\t0x3048\n0x82A7\t0x3049\n0x82A8\t0x304A\n0x82A9\t0x304B\n0x82AA\t0x304C\n0x82AB\t0x304D\n0x82AC\t0x304E\n0x82AD\t0x304F\n0x82AE\t0x3050\n0x82AF\t0x3051\n0x82B0\t0x3052\n0x82B1\t0x3053\n0x82B2\t0x3054\n0x82B3\t0x3055\n0x82B4\t0x3056\n0x82B5\t0x3057\n0x82B6\t0x3058\n0x82B7\t0x3059\n0x82B8\t0x305A\n0x82B9\t0x305B\n0x82BA\t0x305C\n0x82BB\t0x305D\n0x82BC\t0x305E\n0x82BD\t0x305F\n0x82BE\t0x3060\n0x82BF\t0x3061\n0x82C0\t0x3062\n0x82C1\t0x3063\n0x82C2\t0x3064\n0x82C3\t0x3065\n0x82C4\t0x3066\n0x82C5\t0x3067\n0x82C6\t0x3068\n0x82C7\t0x3069\n0x82C8\t0x306A\n0x82C9\t0x306B\n0x82CA\t0x306C\n0x82CB\t0x306D\n0x82CC\t0x306E\n0x82CD\t0x306F\n0x82CE\t0x3070\n0x82CF\t0x3071\n0x82D0\t0x3072\n0x82D1\t0x3073\n0x82D2\t0x3074\n0x82D3\t0x3075\n0x82D4\t0x3076\n0x82D5\t0x3077\n0x82D6\t0x3078\n0x82D7\t0x3079\n0x82D8\t0x307A\n0x82D9\t0x307B\n0x82DA\t0x307C\n0x82DB\t0x307D\n0x82DC\t0x307E\n0x82DD\t0x307F\n0x82DE\t0x3080\n0x82DF\t0x3081\n0x82E0\t0x3082\n0x82E1\t0x3083\n0x82E2\t0x3084\n0x82E3\t0x3085\n0x82E4\t0x3086\n0x82E5\t0x3087\n0x82E6\t0x3088\n0x82E7\t0x3089\n0x82E8\t0x308A\n0x82E9\t0x308B\n0x82EA\t0x308C\n0x82EB\t0x308D\n0x82EC\t0x308E\n0x82ED\t0x308F\n0x82EE\t0x3090\n0x82EF\t0x3091\n0x82F0\t0x3092\n0x82F1\t0x3093\n0x8340\t0x30A1\n0x8341\t0x30A2\n0x8342\t0x30A3\n0x8343\t0x30A4\n0x8344\t0x30A5\n0x8345\t0x30A6\n0x8346\t0x30A7\n0x8347\t0x30A8\n0x8348\t0x30A9\n0x8349\t0x30AA\n0x834A\t0x30AB\n0x834B\t0x30AC\n0x834C\t0x30AD\n0x834D\t0x30AE\n0x834E\t0x30AF\n0x834F\t0x30B0\n0x8350\t0x30B1\n0x8351\t0x30B2\n0x8352\t0x30B3\n0x8353\t0x30B4\n0x8354\t0x30B5\n0x8355\t0x30B6\n0x8356\t0x30B7\n0x8357\t0x30B8\n0x8358\t0x30B9\n0x8359\t0x30BA\n0x835A\t0x30BB\n0x835B\t0x30BC\n0x835C\t0x30BD\n0x835D\t0x30BE\n0x835E\t0x30BF\n0x835F\t0x30C0\n0x8360\t0x30C1\n0x8361\t0x30C2\n0x8362\t0x30C3\n0x8363\t0x30C4\n0x8364\t0x30C5\n0x8365\t0x30C6\n0x8366\t0x30C7\n0x8367\t0x30C8\n0x8368\t0x30C9\n0x8369\t0x30CA\n0x836A\t0x30CB\n0x836B\t0x30CC\n0x836C\t0x30CD\n0x836D\t0x30CE\n0x836E\t0x30CF\n0x836F\t0x30D0\n0x8370\t0x30D1\n0x8371\t0x30D2\n0x8372\t0x30D3\n0x8373\t0x30D4\n0x8374\t0x30D5\n0x8375\t0x30D6\n0x8376\t0x30D7\n0x8377\t0x30D8\n0x8378\t0x30D9\n0x8379\t0x30DA\n0x837A\t0x30DB\n0x837B\t0x30DC\n0x837C\t0x30DD\n0x837D\t0x30DE\n0x837E\t0x30DF\n0x8380\t0x30E0\n0x8381\t0x30E1\n0x8382\t0x30E2\n0x8383\t0x30E3\n0x8384\t0x30E4\n0x8385\t0x30E5\n0x8386\t0x30E6\n0x8387\t0x30E7\n0x8388\t0x30E8\n0x8389\t0x30E9\n0x838A\t0x30EA\n0x838B\t0x30EB\n0x838C\t0x30EC\n0x838D\t0x30ED\n0x838E\t0x30EE\n0x838F\t0x30EF\n0x8390\t0x30F0\n0x8391\t0x30F1\n0x8392\t0x30F2\n0x8393\t0x30F3\n0x8394\t0x30F4\n0x8395\t0x30F5\n0x8396\t0x30F6\n0x839F\t0x0391\n0x83A0\t0x0392\n0x83A1\t0x0393\n0x83A2\t0x0394\n0x83A3\t0x0395\n0x83A4\t0x0396\n0x83A5\t0x0397\n0x83A6\t0x0398\n0x83A7\t0x0399\n0x83A8\t0x039A\n0x83A9\t0x039B\n0x83AA\t0x039C\n0x83AB\t0x039D\n0x83AC\t0x039E\n0x83AD\t0x039F\n0x83AE\t0x03A0\n0x83AF\t0x03A1\n0x83B0\t0x03A3\n0x83B1\t0x03A4\n0x83B2\t0x03A5\n0x83B3\t0x03A6\n0x83B4\t0x03A7\n0x83B5\t0x03A8\n0x83B6\t0x03A9\n0x83BF\t0x03B1\n0x83C0\t0x03B2\n0x83C1\t0x03B3\n0x83C2\t0x03B4\n0x83C3\t0x03B5\n0x83C4\t0x03B6\n0x83C5\t0x03B7\n0x83C6\t0x03B8\n0x83C7\t0x03B9\n0x83C8\t0x03BA\n0x83C9\t0x03BB\n0x83CA\t0x03BC\n0x83CB\t0x03BD\n0x83CC\t0x03BE\n0x83CD\t0x03BF\n0x83CE\t0x03C0\n0x83CF\t0x03C1\n0x83D0\t0x03C3\n0x83D1\t0x03C4\n0x83D2\t0x03C5\n0x83D3\t0x03C6\n0x83D4\t0x03C7\n0x83D5\t0x03C8\n0x83D6\t0x03C9\n0x8440\t0x0410\n0x8441\t0x0411\n0x8442\t0x0412\n0x8443\t0x0413\n0x8444\t0x0414\n0x8445\t0x0415\n0x8446\t0x0401\n0x8447\t0x0416\n0x8448\t0x0417\n0x8449\t0x0418\n0x844A\t0x0419\n0x844B\t0x041A\n0x844C\t0x041B\n0x844D\t0x041C\n0x844E\t0x041D\n0x844F\t0x041E\n0x8450\t0x041F\n0x8451\t0x0420\n0x8452\t0x0421\n0x8453\t0x0422\n0x8454\t0x0423\n0x8455\t0x0424\n0x8456\t0x0425\n0x8457\t0x0426\n0x8458\t0x0427\n0x8459\t0x0428\n0x845A\t0x0429\n0x845B\t0x042A\n0x845C\t0x042B\n0x845D\t0x042C\n0x845E\t0x042D\n0x845F\t0x042E\n0x8460\t0x042F\n0x8470\t0x0430\n0x8471\t0x0431\n0x8472\t0x0432\n0x8473\t0x0433\n0x8474\t0x0434\n0x8475\t0x0435\n0x8476\t0x0451\n0x8477\t0x0436\n0x8478\t0x0437\n0x8479\t0x0438\n0x847A\t0x0439\n0x847B\t0x043A\n0x847C\t0x043B\n0x847D\t0x043C\n0x847E\t0x043D\n0x8480\t0x043E\n0x8481\t0x043F\n0x8482\t0x0440\n0x8483\t0x0441\n0x8484\t0x0442\n0x8485\t0x0443\n0x8486\t0x0444\n0x8487\t0x0445\n0x8488\t0x0446\n0x8489\t0x0447\n0x848A\t0x0448\n0x848B\t0x0449\n0x848C\t0x044A\n0x848D\t0x044B\n0x848E\t0x044C\n0x848F\t0x044D\n0x8490\t0x044E\n0x8491\t0x044F\n0x849F\t0x2500\n0x84A0\t0x2502\n0x84A1\t0x250C\n0x84A2\t0x2510\n0x84A3\t0x2518\n0x84A4\t0x2514\n0x84A5\t0x251C\n0x84A6\t0x252C\n0x84A7\t0x2524\n0x84A8\t0x2534\n0x84A9\t0x253C\n0x84AA\t0x2501\n0x84AB\t0x2503\n0x84AC\t0x250F\n0x84AD\t0x2513\n0x84AE\t0x251B\n0x84AF\t0x2517\n0x84B0\t0x2523\n0x84B1\t0x2533\n0x84B2\t0x252B\n0x84B3\t0x253B\n0x84B4\t0x254B\n0x84B5\t0x2520\n0x84B6\t0x252F\n0x84B7\t0x2528\n0x84B8\t0x2537\n0x84B9\t0x253F\n0x84BA\t0x251D\n0x84BB\t0x2530\n0x84BC\t0x2525\n0x84BD\t0x2538\n0x84BE\t0x2542\n0x8740\t0x2460\n0x8741\t0x2461\n0x8742\t0x2462\n0x8743\t0x2463\n0x8744\t0x2464\n0x8745\t0x2465\n0x8746\t0x2466\n0x8747\t0x2467\n0x8748\t0x2468\n0x8749\t0x2469\n0x874A\t0x246A\n0x874B\t0x246B\n0x874C\t0x246C\n0x874D\t0x246D\n0x874E\t0x246E\n0x874F\t0x246F\n0x8750\t0x2470\n0x8751\t0x2471\n0x8752\t0x2472\n0x8753\t0x2473\n0x8754\t0x2160\n0x8755\t0x2161\n0x8756\t0x2162\n0x8757\t0x2163\n0x8758\t0x2164\n0x8759\t0x2165\n0x875A\t0x2166\n0x875B\t0x2167\n0x875C\t0x2168\n0x875D\t0x2169\n0x875F\t0x3349\n0x8760\t0x3314\n0x8761\t0x3322\n0x8762\t0x334D\n0x8763\t0x3318\n0x8764\t0x3327\n0x8765\t0x3303\n0x8766\t0x3336\n0x8767\t0x3351\n0x8768\t0x3357\n0x8769\t0x330D\n0x876A\t0x3326\n0x876B\t0x3323\n0x876C\t0x332B\n0x876D\t0x334A\n0x876E\t0x333B\n0x876F\t0x339C\n0x8770\t0x339D\n0x8771\t0x339E\n0x8772\t0x338E\n0x8773\t0x338F\n0x8774\t0x33C4\n0x8775\t0x33A1\n0x877E\t0x337B\n0x8780\t0x301D\n0x8781\t0x301F\n0x8782\t0x2116\n0x8783\t0x33CD\n0x8784\t0x2121\n0x8785\t0x32A4\n0x8786\t0x32A5\n0x8787\t0x32A6\n0x8788\t0x32A7\n0x8789\t0x32A8\n0x878A\t0x3231\n0x878B\t0x3232\n0x878C\t0x3239\n0x878D\t0x337E\n0x878E\t0x337D\n0x878F\t0x337C\n0x8790\t0x2252\n0x8791\t0x2261\n0x8792\t0x222B\n0x8793\t0x222E\n0x8794\t0x2211\n0x8795\t0x221A\n0x8796\t0x22A5\n0x8797\t0x2220\n0x8798\t0x221F\n0x8799\t0x22BF\n0x879A\t0x2235\n0x879B\t0x2229\n0x879C\t0x222A\n0x889F\t0x4E9C\n0x88A0\t0x5516\n0x88A1\t0x5A03\n0x88A2\t0x963F\n0x88A3\t0x54C0\n0x88A4\t0x611B\n0x88A5\t0x6328\n0x88A6\t0x59F6\n0x88A7\t0x9022\n0x88A8\t0x8475\n0x88A9\t0x831C\n0x88AA\t0x7A50\n0x88AB\t0x60AA\n0x88AC\t0x63E1\n0x88AD\t0x6E25\n0x88AE\t0x65ED\n0x88AF\t0x8466\n0x88B0\t0x82A6\n0x88B1\t0x9BF5\n0x88B2\t0x6893\n0x88B3\t0x5727\n0x88B4\t0x65A1\n0x88B5\t0x6271\n0x88B6\t0x5B9B\n0x88B7\t0x59D0\n0x88B8\t0x867B\n0x88B9\t0x98F4\n0x88BA\t0x7D62\n0x88BB\t0x7DBE\n0x88BC\t0x9B8E\n0x88BD\t0x6216\n0x88BE\t0x7C9F\n0x88BF\t0x88B7\n0x88C0\t0x5B89\n0x88C1\t0x5EB5\n0x88C2\t0x6309\n0x88C3\t0x6697\n0x88C4\t0x6848\n0x88C5\t0x95C7\n0x88C6\t0x978D\n0x88C7\t0x674F\n0x88C8\t0x4EE5\n0x88C9\t0x4F0A\n0x88CA\t0x4F4D\n0x88CB\t0x4F9D\n0x88CC\t0x5049\n0x88CD\t0x56F2\n0x88CE\t0x5937\n0x88CF\t0x59D4\n0x88D0\t0x5A01\n0x88D1\t0x5C09\n0x88D2\t0x60DF\n0x88D3\t0x610F\n0x88D4\t0x6170\n0x88D5\t0x6613\n0x88D6\t0x6905\n0x88D7\t0x70BA\n0x88D8\t0x754F\n0x88D9\t0x7570\n0x88DA\t0x79FB\n0x88DB\t0x7DAD\n0x88DC\t0x7DEF\n0x88DD\t0x80C3\n0x88DE\t0x840E\n0x88DF\t0x8863\n0x88E0\t0x8B02\n0x88E1\t0x9055\n0x88E2\t0x907A\n0x88E3\t0x533B\n0x88E4\t0x4E95\n0x88E5\t0x4EA5\n0x88E6\t0x57DF\n0x88E7\t0x80B2\n0x88E8\t0x90C1\n0x88E9\t0x78EF\n0x88EA\t0x4E00\n0x88EB\t0x58F1\n0x88EC\t0x6EA2\n0x88ED\t0x9038\n0x88EE\t0x7A32\n0x88EF\t0x8328\n0x88F0\t0x828B\n0x88F1\t0x9C2F\n0x88F2\t0x5141\n0x88F3\t0x5370\n0x88F4\t0x54BD\n0x88F5\t0x54E1\n0x88F6\t0x56E0\n0x88F7\t0x59FB\n0x88F8\t0x5F15\n0x88F9\t0x98F2\n0x88FA\t0x6DEB\n0x88FB\t0x80E4\n0x88FC\t0x852D\n0x8940\t0x9662\n0x8941\t0x9670\n0x8942\t0x96A0\n0x8943\t0x97FB\n0x8944\t0x540B\n0x8945\t0x53F3\n0x8946\t0x5B87\n0x8947\t0x70CF\n0x8948\t0x7FBD\n0x8949\t0x8FC2\n0x894A\t0x96E8\n0x894B\t0x536F\n0x894C\t0x9D5C\n0x894D\t0x7ABA\n0x894E\t0x4E11\n0x894F\t0x7893\n0x8950\t0x81FC\n0x8951\t0x6E26\n0x8952\t0x5618\n0x8953\t0x5504\n0x8954\t0x6B1D\n0x8955\t0x851A\n0x8956\t0x9C3B\n0x8957\t0x59E5\n0x8958\t0x53A9\n0x8959\t0x6D66\n0x895A\t0x74DC\n0x895B\t0x958F\n0x895C\t0x5642\n0x895D\t0x4E91\n0x895E\t0x904B\n0x895F\t0x96F2\n0x8960\t0x834F\n0x8961\t0x990C\n0x8962\t0x53E1\n0x8963\t0x55B6\n0x8964\t0x5B30\n0x8965\t0x5F71\n0x8966\t0x6620\n0x8967\t0x66F3\n0x8968\t0x6804\n0x8969\t0x6C38\n0x896A\t0x6CF3\n0x896B\t0x6D29\n0x896C\t0x745B\n0x896D\t0x76C8\n0x896E\t0x7A4E\n0x896F\t0x9834\n0x8970\t0x82F1\n0x8971\t0x885B\n0x8972\t0x8A60\n0x8973\t0x92ED\n0x8974\t0x6DB2\n0x8975\t0x75AB\n0x8976\t0x76CA\n0x8977\t0x99C5\n0x8978\t0x60A6\n0x8979\t0x8B01\n0x897A\t0x8D8A\n0x897B\t0x95B2\n0x897C\t0x698E\n0x897D\t0x53AD\n0x897E\t0x5186\n0x8980\t0x5712\n0x8981\t0x5830\n0x8982\t0x5944\n0x8983\t0x5BB4\n0x8984\t0x5EF6\n0x8985\t0x6028\n0x8986\t0x63A9\n0x8987\t0x63F4\n0x8988\t0x6CBF\n0x8989\t0x6F14\n0x898A\t0x708E\n0x898B\t0x7114\n0x898C\t0x7159\n0x898D\t0x71D5\n0x898E\t0x733F\n0x898F\t0x7E01\n0x8990\t0x8276\n0x8991\t0x82D1\n0x8992\t0x8597\n0x8993\t0x9060\n0x8994\t0x925B\n0x8995\t0x9D1B\n0x8996\t0x5869\n0x8997\t0x65BC\n0x8998\t0x6C5A\n0x8999\t0x7525\n0x899A\t0x51F9\n0x899B\t0x592E\n0x899C\t0x5965\n0x899D\t0x5F80\n0x899E\t0x5FDC\n0x899F\t0x62BC\n0x89A0\t0x65FA\n0x89A1\t0x6A2A\n0x89A2\t0x6B27\n0x89A3\t0x6BB4\n0x89A4\t0x738B\n0x89A5\t0x7FC1\n0x89A6\t0x8956\n0x89A7\t0x9D2C\n0x89A8\t0x9D0E\n0x89A9\t0x9EC4\n0x89AA\t0x5CA1\n0x89AB\t0x6C96\n0x89AC\t0x837B\n0x89AD\t0x5104\n0x89AE\t0x5C4B\n0x89AF\t0x61B6\n0x89B0\t0x81C6\n0x89B1\t0x6876\n0x89B2\t0x7261\n0x89B3\t0x4E59\n0x89B4\t0x4FFA\n0x89B5\t0x5378\n0x89B6\t0x6069\n0x89B7\t0x6E29\n0x89B8\t0x7A4F\n0x89B9\t0x97F3\n0x89BA\t0x4E0B\n0x89BB\t0x5316\n0x89BC\t0x4EEE\n0x89BD\t0x4F55\n0x89BE\t0x4F3D\n0x89BF\t0x4FA1\n0x89C0\t0x4F73\n0x89C1\t0x52A0\n0x89C2\t0x53EF\n0x89C3\t0x5609\n0x89C4\t0x590F\n0x89C5\t0x5AC1\n0x89C6\t0x5BB6\n0x89C7\t0x5BE1\n0x89C8\t0x79D1\n0x89C9\t0x6687\n0x89CA\t0x679C\n0x89CB\t0x67B6\n0x89CC\t0x6B4C\n0x89CD\t0x6CB3\n0x89CE\t0x706B\n0x89CF\t0x73C2\n0x89D0\t0x798D\n0x89D1\t0x79BE\n0x89D2\t0x7A3C\n0x89D3\t0x7B87\n0x89D4\t0x82B1\n0x89D5\t0x82DB\n0x89D6\t0x8304\n0x89D7\t0x8377\n0x89D8\t0x83EF\n0x89D9\t0x83D3\n0x89DA\t0x8766\n0x89DB\t0x8AB2\n0x89DC\t0x5629\n0x89DD\t0x8CA8\n0x89DE\t0x8FE6\n0x89DF\t0x904E\n0x89E0\t0x971E\n0x89E1\t0x868A\n0x89E2\t0x4FC4\n0x89E3\t0x5CE8\n0x89E4\t0x6211\n0x89E5\t0x7259\n0x89E6\t0x753B\n0x89E7\t0x81E5\n0x89E8\t0x82BD\n0x89E9\t0x86FE\n0x89EA\t0x8CC0\n0x89EB\t0x96C5\n0x89EC\t0x9913\n0x89ED\t0x99D5\n0x89EE\t0x4ECB\n0x89EF\t0x4F1A\n0x89F0\t0x89E3\n0x89F1\t0x56DE\n0x89F2\t0x584A\n0x89F3\t0x58CA\n0x89F4\t0x5EFB\n0x89F5\t0x5FEB\n0x89F6\t0x602A\n0x89F7\t0x6094\n0x89F8\t0x6062\n0x89F9\t0x61D0\n0x89FA\t0x6212\n0x89FB\t0x62D0\n0x89FC\t0x6539\n0x8A40\t0x9B41\n0x8A41\t0x6666\n0x8A42\t0x68B0\n0x8A43\t0x6D77\n0x8A44\t0x7070\n0x8A45\t0x754C\n0x8A46\t0x7686\n0x8A47\t0x7D75\n0x8A48\t0x82A5\n0x8A49\t0x87F9\n0x8A4A\t0x958B\n0x8A4B\t0x968E\n0x8A4C\t0x8C9D\n0x8A4D\t0x51F1\n0x8A4E\t0x52BE\n0x8A4F\t0x5916\n0x8A50\t0x54B3\n0x8A51\t0x5BB3\n0x8A52\t0x5D16\n0x8A53\t0x6168\n0x8A54\t0x6982\n0x8A55\t0x6DAF\n0x8A56\t0x788D\n0x8A57\t0x84CB\n0x8A58\t0x8857\n0x8A59\t0x8A72\n0x8A5A\t0x93A7\n0x8A5B\t0x9AB8\n0x8A5C\t0x6D6C\n0x8A5D\t0x99A8\n0x8A5E\t0x86D9\n0x8A5F\t0x57A3\n0x8A60\t0x67FF\n0x8A61\t0x86CE\n0x8A62\t0x920E\n0x8A63\t0x5283\n0x8A64\t0x5687\n0x8A65\t0x5404\n0x8A66\t0x5ED3\n0x8A67\t0x62E1\n0x8A68\t0x64B9\n0x8A69\t0x683C\n0x8A6A\t0x6838\n0x8A6B\t0x6BBB\n0x8A6C\t0x7372\n0x8A6D\t0x78BA\n0x8A6E\t0x7A6B\n0x8A6F\t0x899A\n0x8A70\t0x89D2\n0x8A71\t0x8D6B\n0x8A72\t0x8F03\n0x8A73\t0x90ED\n0x8A74\t0x95A3\n0x8A75\t0x9694\n0x8A76\t0x9769\n0x8A77\t0x5B66\n0x8A78\t0x5CB3\n0x8A79\t0x697D\n0x8A7A\t0x984D\n0x8A7B\t0x984E\n0x8A7C\t0x639B\n0x8A7D\t0x7B20\n0x8A7E\t0x6A2B\n0x8A80\t0x6A7F\n0x8A81\t0x68B6\n0x8A82\t0x9C0D\n0x8A83\t0x6F5F\n0x8A84\t0x5272\n0x8A85\t0x559D\n0x8A86\t0x6070\n0x8A87\t0x62EC\n0x8A88\t0x6D3B\n0x8A89\t0x6E07\n0x8A8A\t0x6ED1\n0x8A8B\t0x845B\n0x8A8C\t0x8910\n0x8A8D\t0x8F44\n0x8A8E\t0x4E14\n0x8A8F\t0x9C39\n0x8A90\t0x53F6\n0x8A91\t0x691B\n0x8A92\t0x6A3A\n0x8A93\t0x9784\n0x8A94\t0x682A\n0x8A95\t0x515C\n0x8A96\t0x7AC3\n0x8A97\t0x84B2\n0x8A98\t0x91DC\n0x8A99\t0x938C\n0x8A9A\t0x565B\n0x8A9B\t0x9D28\n0x8A9C\t0x6822\n0x8A9D\t0x8305\n0x8A9E\t0x8431\n0x8A9F\t0x7CA5\n0x8AA0\t0x5208\n0x8AA1\t0x82C5\n0x8AA2\t0x74E6\n0x8AA3\t0x4E7E\n0x8AA4\t0x4F83\n0x8AA5\t0x51A0\n0x8AA6\t0x5BD2\n0x8AA7\t0x520A\n0x8AA8\t0x52D8\n0x8AA9\t0x52E7\n0x8AAA\t0x5DFB\n0x8AAB\t0x559A\n0x8AAC\t0x582A\n0x8AAD\t0x59E6\n0x8AAE\t0x5B8C\n0x8AAF\t0x5B98\n0x8AB0\t0x5BDB\n0x8AB1\t0x5E72\n0x8AB2\t0x5E79\n0x8AB3\t0x60A3\n0x8AB4\t0x611F\n0x8AB5\t0x6163\n0x8AB6\t0x61BE\n0x8AB7\t0x63DB\n0x8AB8\t0x6562\n0x8AB9\t0x67D1\n0x8ABA\t0x6853\n0x8ABB\t0x68FA\n0x8ABC\t0x6B3E\n0x8ABD\t0x6B53\n0x8ABE\t0x6C57\n0x8ABF\t0x6F22\n0x8AC0\t0x6F97\n0x8AC1\t0x6F45\n0x8AC2\t0x74B0\n0x8AC3\t0x7518\n0x8AC4\t0x76E3\n0x8AC5\t0x770B\n0x8AC6\t0x7AFF\n0x8AC7\t0x7BA1\n0x8AC8\t0x7C21\n0x8AC9\t0x7DE9\n0x8ACA\t0x7F36\n0x8ACB\t0x7FF0\n0x8ACC\t0x809D\n0x8ACD\t0x8266\n0x8ACE\t0x839E\n0x8ACF\t0x89B3\n0x8AD0\t0x8ACC\n0x8AD1\t0x8CAB\n0x8AD2\t0x9084\n0x8AD3\t0x9451\n0x8AD4\t0x9593\n0x8AD5\t0x9591\n0x8AD6\t0x95A2\n0x8AD7\t0x9665\n0x8AD8\t0x97D3\n0x8AD9\t0x9928\n0x8ADA\t0x8218\n0x8ADB\t0x4E38\n0x8ADC\t0x542B\n0x8ADD\t0x5CB8\n0x8ADE\t0x5DCC\n0x8ADF\t0x73A9\n0x8AE0\t0x764C\n0x8AE1\t0x773C\n0x8AE2\t0x5CA9\n0x8AE3\t0x7FEB\n0x8AE4\t0x8D0B\n0x8AE5\t0x96C1\n0x8AE6\t0x9811\n0x8AE7\t0x9854\n0x8AE8\t0x9858\n0x8AE9\t0x4F01\n0x8AEA\t0x4F0E\n0x8AEB\t0x5371\n0x8AEC\t0x559C\n0x8AED\t0x5668\n0x8AEE\t0x57FA\n0x8AEF\t0x5947\n0x8AF0\t0x5B09\n0x8AF1\t0x5BC4\n0x8AF2\t0x5C90\n0x8AF3\t0x5E0C\n0x8AF4\t0x5E7E\n0x8AF5\t0x5FCC\n0x8AF6\t0x63EE\n0x8AF7\t0x673A\n0x8AF8\t0x65D7\n0x8AF9\t0x65E2\n0x8AFA\t0x671F\n0x8AFB\t0x68CB\n0x8AFC\t0x68C4\n0x8B40\t0x6A5F\n0x8B41\t0x5E30\n0x8B42\t0x6BC5\n0x8B43\t0x6C17\n0x8B44\t0x6C7D\n0x8B45\t0x757F\n0x8B46\t0x7948\n0x8B47\t0x5B63\n0x8B48\t0x7A00\n0x8B49\t0x7D00\n0x8B4A\t0x5FBD\n0x8B4B\t0x898F\n0x8B4C\t0x8A18\n0x8B4D\t0x8CB4\n0x8B4E\t0x8D77\n0x8B4F\t0x8ECC\n0x8B50\t0x8F1D\n0x8B51\t0x98E2\n0x8B52\t0x9A0E\n0x8B53\t0x9B3C\n0x8B54\t0x4E80\n0x8B55\t0x507D\n0x8B56\t0x5100\n0x8B57\t0x5993\n0x8B58\t0x5B9C\n0x8B59\t0x622F\n0x8B5A\t0x6280\n0x8B5B\t0x64EC\n0x8B5C\t0x6B3A\n0x8B5D\t0x72A0\n0x8B5E\t0x7591\n0x8B5F\t0x7947\n0x8B60\t0x7FA9\n0x8B61\t0x87FB\n0x8B62\t0x8ABC\n0x8B63\t0x8B70\n0x8B64\t0x63AC\n0x8B65\t0x83CA\n0x8B66\t0x97A0\n0x8B67\t0x5409\n0x8B68\t0x5403\n0x8B69\t0x55AB\n0x8B6A\t0x6854\n0x8B6B\t0x6A58\n0x8B6C\t0x8A70\n0x8B6D\t0x7827\n0x8B6E\t0x6775\n0x8B6F\t0x9ECD\n0x8B70\t0x5374\n0x8B71\t0x5BA2\n0x8B72\t0x811A\n0x8B73\t0x8650\n0x8B74\t0x9006\n0x8B75\t0x4E18\n0x8B76\t0x4E45\n0x8B77\t0x4EC7\n0x8B78\t0x4F11\n0x8B79\t0x53CA\n0x8B7A\t0x5438\n0x8B7B\t0x5BAE\n0x8B7C\t0x5F13\n0x8B7D\t0x6025\n0x8B7E\t0x6551\n0x8B80\t0x673D\n0x8B81\t0x6C42\n0x8B82\t0x6C72\n0x8B83\t0x6CE3\n0x8B84\t0x7078\n0x8B85\t0x7403\n0x8B86\t0x7A76\n0x8B87\t0x7AAE\n0x8B88\t0x7B08\n0x8B89\t0x7D1A\n0x8B8A\t0x7CFE\n0x8B8B\t0x7D66\n0x8B8C\t0x65E7\n0x8B8D\t0x725B\n0x8B8E\t0x53BB\n0x8B8F\t0x5C45\n0x8B90\t0x5DE8\n0x8B91\t0x62D2\n0x8B92\t0x62E0\n0x8B93\t0x6319\n0x8B94\t0x6E20\n0x8B95\t0x865A\n0x8B96\t0x8A31\n0x8B97\t0x8DDD\n0x8B98\t0x92F8\n0x8B99\t0x6F01\n0x8B9A\t0x79A6\n0x8B9B\t0x9B5A\n0x8B9C\t0x4EA8\n0x8B9D\t0x4EAB\n0x8B9E\t0x4EAC\n0x8B9F\t0x4F9B\n0x8BA0\t0x4FA0\n0x8BA1\t0x50D1\n0x8BA2\t0x5147\n0x8BA3\t0x7AF6\n0x8BA4\t0x5171\n0x8BA5\t0x51F6\n0x8BA6\t0x5354\n0x8BA7\t0x5321\n0x8BA8\t0x537F\n0x8BA9\t0x53EB\n0x8BAA\t0x55AC\n0x8BAB\t0x5883\n0x8BAC\t0x5CE1\n0x8BAD\t0x5F37\n0x8BAE\t0x5F4A\n0x8BAF\t0x602F\n0x8BB0\t0x6050\n0x8BB1\t0x606D\n0x8BB2\t0x631F\n0x8BB3\t0x6559\n0x8BB4\t0x6A4B\n0x8BB5\t0x6CC1\n0x8BB6\t0x72C2\n0x8BB7\t0x72ED\n0x8BB8\t0x77EF\n0x8BB9\t0x80F8\n0x8BBA\t0x8105\n0x8BBB\t0x8208\n0x8BBC\t0x854E\n0x8BBD\t0x90F7\n0x8BBE\t0x93E1\n0x8BBF\t0x97FF\n0x8BC0\t0x9957\n0x8BC1\t0x9A5A\n0x8BC2\t0x4EF0\n0x8BC3\t0x51DD\n0x8BC4\t0x5C2D\n0x8BC5\t0x6681\n0x8BC6\t0x696D\n0x8BC7\t0x5C40\n0x8BC8\t0x66F2\n0x8BC9\t0x6975\n0x8BCA\t0x7389\n0x8BCB\t0x6850\n0x8BCC\t0x7C81\n0x8BCD\t0x50C5\n0x8BCE\t0x52E4\n0x8BCF\t0x5747\n0x8BD0\t0x5DFE\n0x8BD1\t0x9326\n0x8BD2\t0x65A4\n0x8BD3\t0x6B23\n0x8BD4\t0x6B3D\n0x8BD5\t0x7434\n0x8BD6\t0x7981\n0x8BD7\t0x79BD\n0x8BD8\t0x7B4B\n0x8BD9\t0x7DCA\n0x8BDA\t0x82B9\n0x8BDB\t0x83CC\n0x8BDC\t0x887F\n0x8BDD\t0x895F\n0x8BDE\t0x8B39\n0x8BDF\t0x8FD1\n0x8BE0\t0x91D1\n0x8BE1\t0x541F\n0x8BE2\t0x9280\n0x8BE3\t0x4E5D\n0x8BE4\t0x5036\n0x8BE5\t0x53E5\n0x8BE6\t0x533A\n0x8BE7\t0x72D7\n0x8BE8\t0x7396\n0x8BE9\t0x77E9\n0x8BEA\t0x82E6\n0x8BEB\t0x8EAF\n0x8BEC\t0x99C6\n0x8BED\t0x99C8\n0x8BEE\t0x99D2\n0x8BEF\t0x5177\n0x8BF0\t0x611A\n0x8BF1\t0x865E\n0x8BF2\t0x55B0\n0x8BF3\t0x7A7A\n0x8BF4\t0x5076\n0x8BF5\t0x5BD3\n0x8BF6\t0x9047\n0x8BF7\t0x9685\n0x8BF8\t0x4E32\n0x8BF9\t0x6ADB\n0x8BFA\t0x91E7\n0x8BFB\t0x5C51\n0x8BFC\t0x5C48\n0x8C40\t0x6398\n0x8C41\t0x7A9F\n0x8C42\t0x6C93\n0x8C43\t0x9774\n0x8C44\t0x8F61\n0x8C45\t0x7AAA\n0x8C46\t0x718A\n0x8C47\t0x9688\n0x8C48\t0x7C82\n0x8C49\t0x6817\n0x8C4A\t0x7E70\n0x8C4B\t0x6851\n0x8C4C\t0x936C\n0x8C4D\t0x52F2\n0x8C4E\t0x541B\n0x8C4F\t0x85AB\n0x8C50\t0x8A13\n0x8C51\t0x7FA4\n0x8C52\t0x8ECD\n0x8C53\t0x90E1\n0x8C54\t0x5366\n0x8C55\t0x8888\n0x8C56\t0x7941\n0x8C57\t0x4FC2\n0x8C58\t0x50BE\n0x8C59\t0x5211\n0x8C5A\t0x5144\n0x8C5B\t0x5553\n0x8C5C\t0x572D\n0x8C5D\t0x73EA\n0x8C5E\t0x578B\n0x8C5F\t0x5951\n0x8C60\t0x5F62\n0x8C61\t0x5F84\n0x8C62\t0x6075\n0x8C63\t0x6176\n0x8C64\t0x6167\n0x8C65\t0x61A9\n0x8C66\t0x63B2\n0x8C67\t0x643A\n0x8C68\t0x656C\n0x8C69\t0x666F\n0x8C6A\t0x6842\n0x8C6B\t0x6E13\n0x8C6C\t0x7566\n0x8C6D\t0x7A3D\n0x8C6E\t0x7CFB\n0x8C6F\t0x7D4C\n0x8C70\t0x7D99\n0x8C71\t0x7E4B\n0x8C72\t0x7F6B\n0x8C73\t0x830E\n0x8C74\t0x834A\n0x8C75\t0x86CD\n0x8C76\t0x8A08\n0x8C77\t0x8A63\n0x8C78\t0x8B66\n0x8C79\t0x8EFD\n0x8C7A\t0x981A\n0x8C7B\t0x9D8F\n0x8C7C\t0x82B8\n0x8C7D\t0x8FCE\n0x8C7E\t0x9BE8\n0x8C80\t0x5287\n0x8C81\t0x621F\n0x8C82\t0x6483\n0x8C83\t0x6FC0\n0x8C84\t0x9699\n0x8C85\t0x6841\n0x8C86\t0x5091\n0x8C87\t0x6B20\n0x8C88\t0x6C7A\n0x8C89\t0x6F54\n0x8C8A\t0x7A74\n0x8C8B\t0x7D50\n0x8C8C\t0x8840\n0x8C8D\t0x8A23\n0x8C8E\t0x6708\n0x8C8F\t0x4EF6\n0x8C90\t0x5039\n0x8C91\t0x5026\n0x8C92\t0x5065\n0x8C93\t0x517C\n0x8C94\t0x5238\n0x8C95\t0x5263\n0x8C96\t0x55A7\n0x8C97\t0x570F\n0x8C98\t0x5805\n0x8C99\t0x5ACC\n0x8C9A\t0x5EFA\n0x8C9B\t0x61B2\n0x8C9C\t0x61F8\n0x8C9D\t0x62F3\n0x8C9E\t0x6372\n0x8C9F\t0x691C\n0x8CA0\t0x6A29\n0x8CA1\t0x727D\n0x8CA2\t0x72AC\n0x8CA3\t0x732E\n0x8CA4\t0x7814\n0x8CA5\t0x786F\n0x8CA6\t0x7D79\n0x8CA7\t0x770C\n0x8CA8\t0x80A9\n0x8CA9\t0x898B\n0x8CAA\t0x8B19\n0x8CAB\t0x8CE2\n0x8CAC\t0x8ED2\n0x8CAD\t0x9063\n0x8CAE\t0x9375\n0x8CAF\t0x967A\n0x8CB0\t0x9855\n0x8CB1\t0x9A13\n0x8CB2\t0x9E78\n0x8CB3\t0x5143\n0x8CB4\t0x539F\n0x8CB5\t0x53B3\n0x8CB6\t0x5E7B\n0x8CB7\t0x5F26\n0x8CB8\t0x6E1B\n0x8CB9\t0x6E90\n0x8CBA\t0x7384\n0x8CBB\t0x73FE\n0x8CBC\t0x7D43\n0x8CBD\t0x8237\n0x8CBE\t0x8A00\n0x8CBF\t0x8AFA\n0x8CC0\t0x9650\n0x8CC1\t0x4E4E\n0x8CC2\t0x500B\n0x8CC3\t0x53E4\n0x8CC4\t0x547C\n0x8CC5\t0x56FA\n0x8CC6\t0x59D1\n0x8CC7\t0x5B64\n0x8CC8\t0x5DF1\n0x8CC9\t0x5EAB\n0x8CCA\t0x5F27\n0x8CCB\t0x6238\n0x8CCC\t0x6545\n0x8CCD\t0x67AF\n0x8CCE\t0x6E56\n0x8CCF\t0x72D0\n0x8CD0\t0x7CCA\n0x8CD1\t0x88B4\n0x8CD2\t0x80A1\n0x8CD3\t0x80E1\n0x8CD4\t0x83F0\n0x8CD5\t0x864E\n0x8CD6\t0x8A87\n0x8CD7\t0x8DE8\n0x8CD8\t0x9237\n0x8CD9\t0x96C7\n0x8CDA\t0x9867\n0x8CDB\t0x9F13\n0x8CDC\t0x4E94\n0x8CDD\t0x4E92\n0x8CDE\t0x4F0D\n0x8CDF\t0x5348\n0x8CE0\t0x5449\n0x8CE1\t0x543E\n0x8CE2\t0x5A2F\n0x8CE3\t0x5F8C\n0x8CE4\t0x5FA1\n0x8CE5\t0x609F\n0x8CE6\t0x68A7\n0x8CE7\t0x6A8E\n0x8CE8\t0x745A\n0x8CE9\t0x7881\n0x8CEA\t0x8A9E\n0x8CEB\t0x8AA4\n0x8CEC\t0x8B77\n0x8CED\t0x9190\n0x8CEE\t0x4E5E\n0x8CEF\t0x9BC9\n0x8CF0\t0x4EA4\n0x8CF1\t0x4F7C\n0x8CF2\t0x4FAF\n0x8CF3\t0x5019\n0x8CF4\t0x5016\n0x8CF5\t0x5149\n0x8CF6\t0x516C\n0x8CF7\t0x529F\n0x8CF8\t0x52B9\n0x8CF9\t0x52FE\n0x8CFA\t0x539A\n0x8CFB\t0x53E3\n0x8CFC\t0x5411\n0x8D40\t0x540E\n0x8D41\t0x5589\n0x8D42\t0x5751\n0x8D43\t0x57A2\n0x8D44\t0x597D\n0x8D45\t0x5B54\n0x8D46\t0x5B5D\n0x8D47\t0x5B8F\n0x8D48\t0x5DE5\n0x8D49\t0x5DE7\n0x8D4A\t0x5DF7\n0x8D4B\t0x5E78\n0x8D4C\t0x5E83\n0x8D4D\t0x5E9A\n0x8D4E\t0x5EB7\n0x8D4F\t0x5F18\n0x8D50\t0x6052\n0x8D51\t0x614C\n0x8D52\t0x6297\n0x8D53\t0x62D8\n0x8D54\t0x63A7\n0x8D55\t0x653B\n0x8D56\t0x6602\n0x8D57\t0x6643\n0x8D58\t0x66F4\n0x8D59\t0x676D\n0x8D5A\t0x6821\n0x8D5B\t0x6897\n0x8D5C\t0x69CB\n0x8D5D\t0x6C5F\n0x8D5E\t0x6D2A\n0x8D5F\t0x6D69\n0x8D60\t0x6E2F\n0x8D61\t0x6E9D\n0x8D62\t0x7532\n0x8D63\t0x7687\n0x8D64\t0x786C\n0x8D65\t0x7A3F\n0x8D66\t0x7CE0\n0x8D67\t0x7D05\n0x8D68\t0x7D18\n0x8D69\t0x7D5E\n0x8D6A\t0x7DB1\n0x8D6B\t0x8015\n0x8D6C\t0x8003\n0x8D6D\t0x80AF\n0x8D6E\t0x80B1\n0x8D6F\t0x8154\n0x8D70\t0x818F\n0x8D71\t0x822A\n0x8D72\t0x8352\n0x8D73\t0x884C\n0x8D74\t0x8861\n0x8D75\t0x8B1B\n0x8D76\t0x8CA2\n0x8D77\t0x8CFC\n0x8D78\t0x90CA\n0x8D79\t0x9175\n0x8D7A\t0x9271\n0x8D7B\t0x783F\n0x8D7C\t0x92FC\n0x8D7D\t0x95A4\n0x8D7E\t0x964D\n0x8D80\t0x9805\n0x8D81\t0x9999\n0x8D82\t0x9AD8\n0x8D83\t0x9D3B\n0x8D84\t0x525B\n0x8D85\t0x52AB\n0x8D86\t0x53F7\n0x8D87\t0x5408\n0x8D88\t0x58D5\n0x8D89\t0x62F7\n0x8D8A\t0x6FE0\n0x8D8B\t0x8C6A\n0x8D8C\t0x8F5F\n0x8D8D\t0x9EB9\n0x8D8E\t0x514B\n0x8D8F\t0x523B\n0x8D90\t0x544A\n0x8D91\t0x56FD\n0x8D92\t0x7A40\n0x8D93\t0x9177\n0x8D94\t0x9D60\n0x8D95\t0x9ED2\n0x8D96\t0x7344\n0x8D97\t0x6F09\n0x8D98\t0x8170\n0x8D99\t0x7511\n0x8D9A\t0x5FFD\n0x8D9B\t0x60DA\n0x8D9C\t0x9AA8\n0x8D9D\t0x72DB\n0x8D9E\t0x8FBC\n0x8D9F\t0x6B64\n0x8DA0\t0x9803\n0x8DA1\t0x4ECA\n0x8DA2\t0x56F0\n0x8DA3\t0x5764\n0x8DA4\t0x58BE\n0x8DA5\t0x5A5A\n0x8DA6\t0x6068\n0x8DA7\t0x61C7\n0x8DA8\t0x660F\n0x8DA9\t0x6606\n0x8DAA\t0x6839\n0x8DAB\t0x68B1\n0x8DAC\t0x6DF7\n0x8DAD\t0x75D5\n0x8DAE\t0x7D3A\n0x8DAF\t0x826E\n0x8DB0\t0x9B42\n0x8DB1\t0x4E9B\n0x8DB2\t0x4F50\n0x8DB3\t0x53C9\n0x8DB4\t0x5506\n0x8DB5\t0x5D6F\n0x8DB6\t0x5DE6\n0x8DB7\t0x5DEE\n0x8DB8\t0x67FB\n0x8DB9\t0x6C99\n0x8DBA\t0x7473\n0x8DBB\t0x7802\n0x8DBC\t0x8A50\n0x8DBD\t0x9396\n0x8DBE\t0x88DF\n0x8DBF\t0x5750\n0x8DC0\t0x5EA7\n0x8DC1\t0x632B\n0x8DC2\t0x50B5\n0x8DC3\t0x50AC\n0x8DC4\t0x518D\n0x8DC5\t0x6700\n0x8DC6\t0x54C9\n0x8DC7\t0x585E\n0x8DC8\t0x59BB\n0x8DC9\t0x5BB0\n0x8DCA\t0x5F69\n0x8DCB\t0x624D\n0x8DCC\t0x63A1\n0x8DCD\t0x683D\n0x8DCE\t0x6B73\n0x8DCF\t0x6E08\n0x8DD0\t0x707D\n0x8DD1\t0x91C7\n0x8DD2\t0x7280\n0x8DD3\t0x7815\n0x8DD4\t0x7826\n0x8DD5\t0x796D\n0x8DD6\t0x658E\n0x8DD7\t0x7D30\n0x8DD8\t0x83DC\n0x8DD9\t0x88C1\n0x8DDA\t0x8F09\n0x8DDB\t0x969B\n0x8DDC\t0x5264\n0x8DDD\t0x5728\n0x8DDE\t0x6750\n0x8DDF\t0x7F6A\n0x8DE0\t0x8CA1\n0x8DE1\t0x51B4\n0x8DE2\t0x5742\n0x8DE3\t0x962A\n0x8DE4\t0x583A\n0x8DE5\t0x698A\n0x8DE6\t0x80B4\n0x8DE7\t0x54B2\n0x8DE8\t0x5D0E\n0x8DE9\t0x57FC\n0x8DEA\t0x7895\n0x8DEB\t0x9DFA\n0x8DEC\t0x4F5C\n0x8DED\t0x524A\n0x8DEE\t0x548B\n0x8DEF\t0x643E\n0x8DF0\t0x6628\n0x8DF1\t0x6714\n0x8DF2\t0x67F5\n0x8DF3\t0x7A84\n0x8DF4\t0x7B56\n0x8DF5\t0x7D22\n0x8DF6\t0x932F\n0x8DF7\t0x685C\n0x8DF8\t0x9BAD\n0x8DF9\t0x7B39\n0x8DFA\t0x5319\n0x8DFB\t0x518A\n0x8DFC\t0x5237\n0x8E40\t0x5BDF\n0x8E41\t0x62F6\n0x8E42\t0x64AE\n0x8E43\t0x64E6\n0x8E44\t0x672D\n0x8E45\t0x6BBA\n0x8E46\t0x85A9\n0x8E47\t0x96D1\n0x8E48\t0x7690\n0x8E49\t0x9BD6\n0x8E4A\t0x634C\n0x8E4B\t0x9306\n0x8E4C\t0x9BAB\n0x8E4D\t0x76BF\n0x8E4E\t0x6652\n0x8E4F\t0x4E09\n0x8E50\t0x5098\n0x8E51\t0x53C2\n0x8E52\t0x5C71\n0x8E53\t0x60E8\n0x8E54\t0x6492\n0x8E55\t0x6563\n0x8E56\t0x685F\n0x8E57\t0x71E6\n0x8E58\t0x73CA\n0x8E59\t0x7523\n0x8E5A\t0x7B97\n0x8E5B\t0x7E82\n0x8E5C\t0x8695\n0x8E5D\t0x8B83\n0x8E5E\t0x8CDB\n0x8E5F\t0x9178\n0x8E60\t0x9910\n0x8E61\t0x65AC\n0x8E62\t0x66AB\n0x8E63\t0x6B8B\n0x8E64\t0x4ED5\n0x8E65\t0x4ED4\n0x8E66\t0x4F3A\n0x8E67\t0x4F7F\n0x8E68\t0x523A\n0x8E69\t0x53F8\n0x8E6A\t0x53F2\n0x8E6B\t0x55E3\n0x8E6C\t0x56DB\n0x8E6D\t0x58EB\n0x8E6E\t0x59CB\n0x8E6F\t0x59C9\n0x8E70\t0x59FF\n0x8E71\t0x5B50\n0x8E72\t0x5C4D\n0x8E73\t0x5E02\n0x8E74\t0x5E2B\n0x8E75\t0x5FD7\n0x8E76\t0x601D\n0x8E77\t0x6307\n0x8E78\t0x652F\n0x8E79\t0x5B5C\n0x8E7A\t0x65AF\n0x8E7B\t0x65BD\n0x8E7C\t0x65E8\n0x8E7D\t0x679D\n0x8E7E\t0x6B62\n0x8E80\t0x6B7B\n0x8E81\t0x6C0F\n0x8E82\t0x7345\n0x8E83\t0x7949\n0x8E84\t0x79C1\n0x8E85\t0x7CF8\n0x8E86\t0x7D19\n0x8E87\t0x7D2B\n0x8E88\t0x80A2\n0x8E89\t0x8102\n0x8E8A\t0x81F3\n0x8E8B\t0x8996\n0x8E8C\t0x8A5E\n0x8E8D\t0x8A69\n0x8E8E\t0x8A66\n0x8E8F\t0x8A8C\n0x8E90\t0x8AEE\n0x8E91\t0x8CC7\n0x8E92\t0x8CDC\n0x8E93\t0x96CC\n0x8E94\t0x98FC\n0x8E95\t0x6B6F\n0x8E96\t0x4E8B\n0x8E97\t0x4F3C\n0x8E98\t0x4F8D\n0x8E99\t0x5150\n0x8E9A\t0x5B57\n0x8E9B\t0x5BFA\n0x8E9C\t0x6148\n0x8E9D\t0x6301\n0x8E9E\t0x6642\n0x8E9F\t0x6B21\n0x8EA0\t0x6ECB\n0x8EA1\t0x6CBB\n0x8EA2\t0x723E\n0x8EA3\t0x74BD\n0x8EA4\t0x75D4\n0x8EA5\t0x78C1\n0x8EA6\t0x793A\n0x8EA7\t0x800C\n0x8EA8\t0x8033\n0x8EA9\t0x81EA\n0x8EAA\t0x8494\n0x8EAB\t0x8F9E\n0x8EAC\t0x6C50\n0x8EAD\t0x9E7F\n0x8EAE\t0x5F0F\n0x8EAF\t0x8B58\n0x8EB0\t0x9D2B\n0x8EB1\t0x7AFA\n0x8EB2\t0x8EF8\n0x8EB3\t0x5B8D\n0x8EB4\t0x96EB\n0x8EB5\t0x4E03\n0x8EB6\t0x53F1\n0x8EB7\t0x57F7\n0x8EB8\t0x5931\n0x8EB9\t0x5AC9\n0x8EBA\t0x5BA4\n0x8EBB\t0x6089\n0x8EBC\t0x6E7F\n0x8EBD\t0x6F06\n0x8EBE\t0x75BE\n0x8EBF\t0x8CEA\n0x8EC0\t0x5B9F\n0x8EC1\t0x8500\n0x8EC2\t0x7BE0\n0x8EC3\t0x5072\n0x8EC4\t0x67F4\n0x8EC5\t0x829D\n0x8EC6\t0x5C61\n0x8EC7\t0x854A\n0x8EC8\t0x7E1E\n0x8EC9\t0x820E\n0x8ECA\t0x5199\n0x8ECB\t0x5C04\n0x8ECC\t0x6368\n0x8ECD\t0x8D66\n0x8ECE\t0x659C\n0x8ECF\t0x716E\n0x8ED0\t0x793E\n0x8ED1\t0x7D17\n0x8ED2\t0x8005\n0x8ED3\t0x8B1D\n0x8ED4\t0x8ECA\n0x8ED5\t0x906E\n0x8ED6\t0x86C7\n0x8ED7\t0x90AA\n0x8ED8\t0x501F\n0x8ED9\t0x52FA\n0x8EDA\t0x5C3A\n0x8EDB\t0x6753\n0x8EDC\t0x707C\n0x8EDD\t0x7235\n0x8EDE\t0x914C\n0x8EDF\t0x91C8\n0x8EE0\t0x932B\n0x8EE1\t0x82E5\n0x8EE2\t0x5BC2\n0x8EE3\t0x5F31\n0x8EE4\t0x60F9\n0x8EE5\t0x4E3B\n0x8EE6\t0x53D6\n0x8EE7\t0x5B88\n0x8EE8\t0x624B\n0x8EE9\t0x6731\n0x8EEA\t0x6B8A\n0x8EEB\t0x72E9\n0x8EEC\t0x73E0\n0x8EED\t0x7A2E\n0x8EEE\t0x816B\n0x8EEF\t0x8DA3\n0x8EF0\t0x9152\n0x8EF1\t0x9996\n0x8EF2\t0x5112\n0x8EF3\t0x53D7\n0x8EF4\t0x546A\n0x8EF5\t0x5BFF\n0x8EF6\t0x6388\n0x8EF7\t0x6A39\n0x8EF8\t0x7DAC\n0x8EF9\t0x9700\n0x8EFA\t0x56DA\n0x8EFB\t0x53CE\n0x8EFC\t0x5468\n0x8F40\t0x5B97\n0x8F41\t0x5C31\n0x8F42\t0x5DDE\n0x8F43\t0x4FEE\n0x8F44\t0x6101\n0x8F45\t0x62FE\n0x8F46\t0x6D32\n0x8F47\t0x79C0\n0x8F48\t0x79CB\n0x8F49\t0x7D42\n0x8F4A\t0x7E4D\n0x8F4B\t0x7FD2\n0x8F4C\t0x81ED\n0x8F4D\t0x821F\n0x8F4E\t0x8490\n0x8F4F\t0x8846\n0x8F50\t0x8972\n0x8F51\t0x8B90\n0x8F52\t0x8E74\n0x8F53\t0x8F2F\n0x8F54\t0x9031\n0x8F55\t0x914B\n0x8F56\t0x916C\n0x8F57\t0x96C6\n0x8F58\t0x919C\n0x8F59\t0x4EC0\n0x8F5A\t0x4F4F\n0x8F5B\t0x5145\n0x8F5C\t0x5341\n0x8F5D\t0x5F93\n0x8F5E\t0x620E\n0x8F5F\t0x67D4\n0x8F60\t0x6C41\n0x8F61\t0x6E0B\n0x8F62\t0x7363\n0x8F63\t0x7E26\n0x8F64\t0x91CD\n0x8F65\t0x9283\n0x8F66\t0x53D4\n0x8F67\t0x5919\n0x8F68\t0x5BBF\n0x8F69\t0x6DD1\n0x8F6A\t0x795D\n0x8F6B\t0x7E2E\n0x8F6C\t0x7C9B\n0x8F6D\t0x587E\n0x8F6E\t0x719F\n0x8F6F\t0x51FA\n0x8F70\t0x8853\n0x8F71\t0x8FF0\n0x8F72\t0x4FCA\n0x8F73\t0x5CFB\n0x8F74\t0x6625\n0x8F75\t0x77AC\n0x8F76\t0x7AE3\n0x8F77\t0x821C\n0x8F78\t0x99FF\n0x8F79\t0x51C6\n0x8F7A\t0x5FAA\n0x8F7B\t0x65EC\n0x8F7C\t0x696F\n0x8F7D\t0x6B89\n0x8F7E\t0x6DF3\n0x8F80\t0x6E96\n0x8F81\t0x6F64\n0x8F82\t0x76FE\n0x8F83\t0x7D14\n0x8F84\t0x5DE1\n0x8F85\t0x9075\n0x8F86\t0x9187\n0x8F87\t0x9806\n0x8F88\t0x51E6\n0x8F89\t0x521D\n0x8F8A\t0x6240\n0x8F8B\t0x6691\n0x8F8C\t0x66D9\n0x8F8D\t0x6E1A\n0x8F8E\t0x5EB6\n0x8F8F\t0x7DD2\n0x8F90\t0x7F72\n0x8F91\t0x66F8\n0x8F92\t0x85AF\n0x8F93\t0x85F7\n0x8F94\t0x8AF8\n0x8F95\t0x52A9\n0x8F96\t0x53D9\n0x8F97\t0x5973\n0x8F98\t0x5E8F\n0x8F99\t0x5F90\n0x8F9A\t0x6055\n0x8F9B\t0x92E4\n0x8F9C\t0x9664\n0x8F9D\t0x50B7\n0x8F9E\t0x511F\n0x8F9F\t0x52DD\n0x8FA0\t0x5320\n0x8FA1\t0x5347\n0x8FA2\t0x53EC\n0x8FA3\t0x54E8\n0x8FA4\t0x5546\n0x8FA5\t0x5531\n0x8FA6\t0x5617\n0x8FA7\t0x5968\n0x8FA8\t0x59BE\n0x8FA9\t0x5A3C\n0x8FAA\t0x5BB5\n0x8FAB\t0x5C06\n0x8FAC\t0x5C0F\n0x8FAD\t0x5C11\n0x8FAE\t0x5C1A\n0x8FAF\t0x5E84\n0x8FB0\t0x5E8A\n0x8FB1\t0x5EE0\n0x8FB2\t0x5F70\n0x8FB3\t0x627F\n0x8FB4\t0x6284\n0x8FB5\t0x62DB\n0x8FB6\t0x638C\n0x8FB7\t0x6377\n0x8FB8\t0x6607\n0x8FB9\t0x660C\n0x8FBA\t0x662D\n0x8FBB\t0x6676\n0x8FBC\t0x677E\n0x8FBD\t0x68A2\n0x8FBE\t0x6A1F\n0x8FBF\t0x6A35\n0x8FC0\t0x6CBC\n0x8FC1\t0x6D88\n0x8FC2\t0x6E09\n0x8FC3\t0x6E58\n0x8FC4\t0x713C\n0x8FC5\t0x7126\n0x8FC6\t0x7167\n0x8FC7\t0x75C7\n0x8FC8\t0x7701\n0x8FC9\t0x785D\n0x8FCA\t0x7901\n0x8FCB\t0x7965\n0x8FCC\t0x79F0\n0x8FCD\t0x7AE0\n0x8FCE\t0x7B11\n0x8FCF\t0x7CA7\n0x8FD0\t0x7D39\n0x8FD1\t0x8096\n0x8FD2\t0x83D6\n0x8FD3\t0x848B\n0x8FD4\t0x8549\n0x8FD5\t0x885D\n0x8FD6\t0x88F3\n0x8FD7\t0x8A1F\n0x8FD8\t0x8A3C\n0x8FD9\t0x8A54\n0x8FDA\t0x8A73\n0x8FDB\t0x8C61\n0x8FDC\t0x8CDE\n0x8FDD\t0x91A4\n0x8FDE\t0x9266\n0x8FDF\t0x937E\n0x8FE0\t0x9418\n0x8FE1\t0x969C\n0x8FE2\t0x9798\n0x8FE3\t0x4E0A\n0x8FE4\t0x4E08\n0x8FE5\t0x4E1E\n0x8FE6\t0x4E57\n0x8FE7\t0x5197\n0x8FE8\t0x5270\n0x8FE9\t0x57CE\n0x8FEA\t0x5834\n0x8FEB\t0x58CC\n0x8FEC\t0x5B22\n0x8FED\t0x5E38\n0x8FEE\t0x60C5\n0x8FEF\t0x64FE\n0x8FF0\t0x6761\n0x8FF1\t0x6756\n0x8FF2\t0x6D44\n0x8FF3\t0x72B6\n0x8FF4\t0x7573\n0x8FF5\t0x7A63\n0x8FF6\t0x84B8\n0x8FF7\t0x8B72\n0x8FF8\t0x91B8\n0x8FF9\t0x9320\n0x8FFA\t0x5631\n0x8FFB\t0x57F4\n0x8FFC\t0x98FE\n0x9040\t0x62ED\n0x9041\t0x690D\n0x9042\t0x6B96\n0x9043\t0x71ED\n0x9044\t0x7E54\n0x9045\t0x8077\n0x9046\t0x8272\n0x9047\t0x89E6\n0x9048\t0x98DF\n0x9049\t0x8755\n0x904A\t0x8FB1\n0x904B\t0x5C3B\n0x904C\t0x4F38\n0x904D\t0x4FE1\n0x904E\t0x4FB5\n0x904F\t0x5507\n0x9050\t0x5A20\n0x9051\t0x5BDD\n0x9052\t0x5BE9\n0x9053\t0x5FC3\n0x9054\t0x614E\n0x9055\t0x632F\n0x9056\t0x65B0\n0x9057\t0x664B\n0x9058\t0x68EE\n0x9059\t0x699B\n0x905A\t0x6D78\n0x905B\t0x6DF1\n0x905C\t0x7533\n0x905D\t0x75B9\n0x905E\t0x771F\n0x905F\t0x795E\n0x9060\t0x79E6\n0x9061\t0x7D33\n0x9062\t0x81E3\n0x9063\t0x82AF\n0x9064\t0x85AA\n0x9065\t0x89AA\n0x9066\t0x8A3A\n0x9067\t0x8EAB\n0x9068\t0x8F9B\n0x9069\t0x9032\n0x906A\t0x91DD\n0x906B\t0x9707\n0x906C\t0x4EBA\n0x906D\t0x4EC1\n0x906E\t0x5203\n0x906F\t0x5875\n0x9070\t0x58EC\n0x9071\t0x5C0B\n0x9072\t0x751A\n0x9073\t0x5C3D\n0x9074\t0x814E\n0x9075\t0x8A0A\n0x9076\t0x8FC5\n0x9077\t0x9663\n0x9078\t0x976D\n0x9079\t0x7B25\n0x907A\t0x8ACF\n0x907B\t0x9808\n0x907C\t0x9162\n0x907D\t0x56F3\n0x907E\t0x53A8\n0x9080\t0x9017\n0x9081\t0x5439\n0x9082\t0x5782\n0x9083\t0x5E25\n0x9084\t0x63A8\n0x9085\t0x6C34\n0x9086\t0x708A\n0x9087\t0x7761\n0x9088\t0x7C8B\n0x9089\t0x7FE0\n0x908A\t0x8870\n0x908B\t0x9042\n0x908C\t0x9154\n0x908D\t0x9310\n0x908E\t0x9318\n0x908F\t0x968F\n0x9090\t0x745E\n0x9091\t0x9AC4\n0x9092\t0x5D07\n0x9093\t0x5D69\n0x9094\t0x6570\n0x9095\t0x67A2\n0x9096\t0x8DA8\n0x9097\t0x96DB\n0x9098\t0x636E\n0x9099\t0x6749\n0x909A\t0x6919\n0x909B\t0x83C5\n0x909C\t0x9817\n0x909D\t0x96C0\n0x909E\t0x88FE\n0x909F\t0x6F84\n0x90A0\t0x647A\n0x90A1\t0x5BF8\n0x90A2\t0x4E16\n0x90A3\t0x702C\n0x90A4\t0x755D\n0x90A5\t0x662F\n0x90A6\t0x51C4\n0x90A7\t0x5236\n0x90A8\t0x52E2\n0x90A9\t0x59D3\n0x90AA\t0x5F81\n0x90AB\t0x6027\n0x90AC\t0x6210\n0x90AD\t0x653F\n0x90AE\t0x6574\n0x90AF\t0x661F\n0x90B0\t0x6674\n0x90B1\t0x68F2\n0x90B2\t0x6816\n0x90B3\t0x6B63\n0x90B4\t0x6E05\n0x90B5\t0x7272\n0x90B6\t0x751F\n0x90B7\t0x76DB\n0x90B8\t0x7CBE\n0x90B9\t0x8056\n0x90BA\t0x58F0\n0x90BB\t0x88FD\n0x90BC\t0x897F\n0x90BD\t0x8AA0\n0x90BE\t0x8A93\n0x90BF\t0x8ACB\n0x90C0\t0x901D\n0x90C1\t0x9192\n0x90C2\t0x9752\n0x90C3\t0x9759\n0x90C4\t0x6589\n0x90C5\t0x7A0E\n0x90C6\t0x8106\n0x90C7\t0x96BB\n0x90C8\t0x5E2D\n0x90C9\t0x60DC\n0x90CA\t0x621A\n0x90CB\t0x65A5\n0x90CC\t0x6614\n0x90CD\t0x6790\n0x90CE\t0x77F3\n0x90CF\t0x7A4D\n0x90D0\t0x7C4D\n0x90D1\t0x7E3E\n0x90D2\t0x810A\n0x90D3\t0x8CAC\n0x90D4\t0x8D64\n0x90D5\t0x8DE1\n0x90D6\t0x8E5F\n0x90D7\t0x78A9\n0x90D8\t0x5207\n0x90D9\t0x62D9\n0x90DA\t0x63A5\n0x90DB\t0x6442\n0x90DC\t0x6298\n0x90DD\t0x8A2D\n0x90DE\t0x7A83\n0x90DF\t0x7BC0\n0x90E0\t0x8AAC\n0x90E1\t0x96EA\n0x90E2\t0x7D76\n0x90E3\t0x820C\n0x90E4\t0x8749\n0x90E5\t0x4ED9\n0x90E6\t0x5148\n0x90E7\t0x5343\n0x90E8\t0x5360\n0x90E9\t0x5BA3\n0x90EA\t0x5C02\n0x90EB\t0x5C16\n0x90EC\t0x5DDD\n0x90ED\t0x6226\n0x90EE\t0x6247\n0x90EF\t0x64B0\n0x90F0\t0x6813\n0x90F1\t0x6834\n0x90F2\t0x6CC9\n0x90F3\t0x6D45\n0x90F4\t0x6D17\n0x90F5\t0x67D3\n0x90F6\t0x6F5C\n0x90F7\t0x714E\n0x90F8\t0x717D\n0x90F9\t0x65CB\n0x90FA\t0x7A7F\n0x90FB\t0x7BAD\n0x90FC\t0x7DDA\n0x9140\t0x7E4A\n0x9141\t0x7FA8\n0x9142\t0x817A\n0x9143\t0x821B\n0x9144\t0x8239\n0x9145\t0x85A6\n0x9146\t0x8A6E\n0x9147\t0x8CCE\n0x9148\t0x8DF5\n0x9149\t0x9078\n0x914A\t0x9077\n0x914B\t0x92AD\n0x914C\t0x9291\n0x914D\t0x9583\n0x914E\t0x9BAE\n0x914F\t0x524D\n0x9150\t0x5584\n0x9151\t0x6F38\n0x9152\t0x7136\n0x9153\t0x5168\n0x9154\t0x7985\n0x9155\t0x7E55\n0x9156\t0x81B3\n0x9157\t0x7CCE\n0x9158\t0x564C\n0x9159\t0x5851\n0x915A\t0x5CA8\n0x915B\t0x63AA\n0x915C\t0x66FE\n0x915D\t0x66FD\n0x915E\t0x695A\n0x915F\t0x72D9\n0x9160\t0x758F\n0x9161\t0x758E\n0x9162\t0x790E\n0x9163\t0x7956\n0x9164\t0x79DF\n0x9165\t0x7C97\n0x9166\t0x7D20\n0x9167\t0x7D44\n0x9168\t0x8607\n0x9169\t0x8A34\n0x916A\t0x963B\n0x916B\t0x9061\n0x916C\t0x9F20\n0x916D\t0x50E7\n0x916E\t0x5275\n0x916F\t0x53CC\n0x9170\t0x53E2\n0x9171\t0x5009\n0x9172\t0x55AA\n0x9173\t0x58EE\n0x9174\t0x594F\n0x9175\t0x723D\n0x9176\t0x5B8B\n0x9177\t0x5C64\n0x9178\t0x531D\n0x9179\t0x60E3\n0x917A\t0x60F3\n0x917B\t0x635C\n0x917C\t0x6383\n0x917D\t0x633F\n0x917E\t0x63BB\n0x9180\t0x64CD\n0x9181\t0x65E9\n0x9182\t0x66F9\n0x9183\t0x5DE3\n0x9184\t0x69CD\n0x9185\t0x69FD\n0x9186\t0x6F15\n0x9187\t0x71E5\n0x9188\t0x4E89\n0x9189\t0x75E9\n0x918A\t0x76F8\n0x918B\t0x7A93\n0x918C\t0x7CDF\n0x918D\t0x7DCF\n0x918E\t0x7D9C\n0x918F\t0x8061\n0x9190\t0x8349\n0x9191\t0x8358\n0x9192\t0x846C\n0x9193\t0x84BC\n0x9194\t0x85FB\n0x9195\t0x88C5\n0x9196\t0x8D70\n0x9197\t0x9001\n0x9198\t0x906D\n0x9199\t0x9397\n0x919A\t0x971C\n0x919B\t0x9A12\n0x919C\t0x50CF\n0x919D\t0x5897\n0x919E\t0x618E\n0x919F\t0x81D3\n0x91A0\t0x8535\n0x91A1\t0x8D08\n0x91A2\t0x9020\n0x91A3\t0x4FC3\n0x91A4\t0x5074\n0x91A5\t0x5247\n0x91A6\t0x5373\n0x91A7\t0x606F\n0x91A8\t0x6349\n0x91A9\t0x675F\n0x91AA\t0x6E2C\n0x91AB\t0x8DB3\n0x91AC\t0x901F\n0x91AD\t0x4FD7\n0x91AE\t0x5C5E\n0x91AF\t0x8CCA\n0x91B0\t0x65CF\n0x91B1\t0x7D9A\n0x91B2\t0x5352\n0x91B3\t0x8896\n0x91B4\t0x5176\n0x91B5\t0x63C3\n0x91B6\t0x5B58\n0x91B7\t0x5B6B\n0x91B8\t0x5C0A\n0x91B9\t0x640D\n0x91BA\t0x6751\n0x91BB\t0x905C\n0x91BC\t0x4ED6\n0x91BD\t0x591A\n0x91BE\t0x592A\n0x91BF\t0x6C70\n0x91C0\t0x8A51\n0x91C1\t0x553E\n0x91C2\t0x5815\n0x91C3\t0x59A5\n0x91C4\t0x60F0\n0x91C5\t0x6253\n0x91C6\t0x67C1\n0x91C7\t0x8235\n0x91C8\t0x6955\n0x91C9\t0x9640\n0x91CA\t0x99C4\n0x91CB\t0x9A28\n0x91CC\t0x4F53\n0x91CD\t0x5806\n0x91CE\t0x5BFE\n0x91CF\t0x8010\n0x91D0\t0x5CB1\n0x91D1\t0x5E2F\n0x91D2\t0x5F85\n0x91D3\t0x6020\n0x91D4\t0x614B\n0x91D5\t0x6234\n0x91D6\t0x66FF\n0x91D7\t0x6CF0\n0x91D8\t0x6EDE\n0x91D9\t0x80CE\n0x91DA\t0x817F\n0x91DB\t0x82D4\n0x91DC\t0x888B\n0x91DD\t0x8CB8\n0x91DE\t0x9000\n0x91DF\t0x902E\n0x91E0\t0x968A\n0x91E1\t0x9EDB\n0x91E2\t0x9BDB\n0x91E3\t0x4EE3\n0x91E4\t0x53F0\n0x91E5\t0x5927\n0x91E6\t0x7B2C\n0x91E7\t0x918D\n0x91E8\t0x984C\n0x91E9\t0x9DF9\n0x91EA\t0x6EDD\n0x91EB\t0x7027\n0x91EC\t0x5353\n0x91ED\t0x5544\n0x91EE\t0x5B85\n0x91EF\t0x6258\n0x91F0\t0x629E\n0x91F1\t0x62D3\n0x91F2\t0x6CA2\n0x91F3\t0x6FEF\n0x91F4\t0x7422\n0x91F5\t0x8A17\n0x91F6\t0x9438\n0x91F7\t0x6FC1\n0x91F8\t0x8AFE\n0x91F9\t0x8338\n0x91FA\t0x51E7\n0x91FB\t0x86F8\n0x91FC\t0x53EA\n0x9240\t0x53E9\n0x9241\t0x4F46\n0x9242\t0x9054\n0x9243\t0x8FB0\n0x9244\t0x596A\n0x9245\t0x8131\n0x9246\t0x5DFD\n0x9247\t0x7AEA\n0x9248\t0x8FBF\n0x9249\t0x68DA\n0x924A\t0x8C37\n0x924B\t0x72F8\n0x924C\t0x9C48\n0x924D\t0x6A3D\n0x924E\t0x8AB0\n0x924F\t0x4E39\n0x9250\t0x5358\n0x9251\t0x5606\n0x9252\t0x5766\n0x9253\t0x62C5\n0x9254\t0x63A2\n0x9255\t0x65E6\n0x9256\t0x6B4E\n0x9257\t0x6DE1\n0x9258\t0x6E5B\n0x9259\t0x70AD\n0x925A\t0x77ED\n0x925B\t0x7AEF\n0x925C\t0x7BAA\n0x925D\t0x7DBB\n0x925E\t0x803D\n0x925F\t0x80C6\n0x9260\t0x86CB\n0x9261\t0x8A95\n0x9262\t0x935B\n0x9263\t0x56E3\n0x9264\t0x58C7\n0x9265\t0x5F3E\n0x9266\t0x65AD\n0x9267\t0x6696\n0x9268\t0x6A80\n0x9269\t0x6BB5\n0x926A\t0x7537\n0x926B\t0x8AC7\n0x926C\t0x5024\n0x926D\t0x77E5\n0x926E\t0x5730\n0x926F\t0x5F1B\n0x9270\t0x6065\n0x9271\t0x667A\n0x9272\t0x6C60\n0x9273\t0x75F4\n0x9274\t0x7A1A\n0x9275\t0x7F6E\n0x9276\t0x81F4\n0x9277\t0x8718\n0x9278\t0x9045\n0x9279\t0x99B3\n0x927A\t0x7BC9\n0x927B\t0x755C\n0x927C\t0x7AF9\n0x927D\t0x7B51\n0x927E\t0x84C4\n0x9280\t0x9010\n0x9281\t0x79E9\n0x9282\t0x7A92\n0x9283\t0x8336\n0x9284\t0x5AE1\n0x9285\t0x7740\n0x9286\t0x4E2D\n0x9287\t0x4EF2\n0x9288\t0x5B99\n0x9289\t0x5FE0\n0x928A\t0x62BD\n0x928B\t0x663C\n0x928C\t0x67F1\n0x928D\t0x6CE8\n0x928E\t0x866B\n0x928F\t0x8877\n0x9290\t0x8A3B\n0x9291\t0x914E\n0x9292\t0x92F3\n0x9293\t0x99D0\n0x9294\t0x6A17\n0x9295\t0x7026\n0x9296\t0x732A\n0x9297\t0x82E7\n0x9298\t0x8457\n0x9299\t0x8CAF\n0x929A\t0x4E01\n0x929B\t0x5146\n0x929C\t0x51CB\n0x929D\t0x558B\n0x929E\t0x5BF5\n0x929F\t0x5E16\n0x92A0\t0x5E33\n0x92A1\t0x5E81\n0x92A2\t0x5F14\n0x92A3\t0x5F35\n0x92A4\t0x5F6B\n0x92A5\t0x5FB4\n0x92A6\t0x61F2\n0x92A7\t0x6311\n0x92A8\t0x66A2\n0x92A9\t0x671D\n0x92AA\t0x6F6E\n0x92AB\t0x7252\n0x92AC\t0x753A\n0x92AD\t0x773A\n0x92AE\t0x8074\n0x92AF\t0x8139\n0x92B0\t0x8178\n0x92B1\t0x8776\n0x92B2\t0x8ABF\n0x92B3\t0x8ADC\n0x92B4\t0x8D85\n0x92B5\t0x8DF3\n0x92B6\t0x929A\n0x92B7\t0x9577\n0x92B8\t0x9802\n0x92B9\t0x9CE5\n0x92BA\t0x52C5\n0x92BB\t0x6357\n0x92BC\t0x76F4\n0x92BD\t0x6715\n0x92BE\t0x6C88\n0x92BF\t0x73CD\n0x92C0\t0x8CC3\n0x92C1\t0x93AE\n0x92C2\t0x9673\n0x92C3\t0x6D25\n0x92C4\t0x589C\n0x92C5\t0x690E\n0x92C6\t0x69CC\n0x92C7\t0x8FFD\n0x92C8\t0x939A\n0x92C9\t0x75DB\n0x92CA\t0x901A\n0x92CB\t0x585A\n0x92CC\t0x6802\n0x92CD\t0x63B4\n0x92CE\t0x69FB\n0x92CF\t0x4F43\n0x92D0\t0x6F2C\n0x92D1\t0x67D8\n0x92D2\t0x8FBB\n0x92D3\t0x8526\n0x92D4\t0x7DB4\n0x92D5\t0x9354\n0x92D6\t0x693F\n0x92D7\t0x6F70\n0x92D8\t0x576A\n0x92D9\t0x58F7\n0x92DA\t0x5B2C\n0x92DB\t0x7D2C\n0x92DC\t0x722A\n0x92DD\t0x540A\n0x92DE\t0x91E3\n0x92DF\t0x9DB4\n0x92E0\t0x4EAD\n0x92E1\t0x4F4E\n0x92E2\t0x505C\n0x92E3\t0x5075\n0x92E4\t0x5243\n0x92E5\t0x8C9E\n0x92E6\t0x5448\n0x92E7\t0x5824\n0x92E8\t0x5B9A\n0x92E9\t0x5E1D\n0x92EA\t0x5E95\n0x92EB\t0x5EAD\n0x92EC\t0x5EF7\n0x92ED\t0x5F1F\n0x92EE\t0x608C\n0x92EF\t0x62B5\n0x92F0\t0x633A\n0x92F1\t0x63D0\n0x92F2\t0x68AF\n0x92F3\t0x6C40\n0x92F4\t0x7887\n0x92F5\t0x798E\n0x92F6\t0x7A0B\n0x92F7\t0x7DE0\n0x92F8\t0x8247\n0x92F9\t0x8A02\n0x92FA\t0x8AE6\n0x92FB\t0x8E44\n0x92FC\t0x9013\n0x9340\t0x90B8\n0x9341\t0x912D\n0x9342\t0x91D8\n0x9343\t0x9F0E\n0x9344\t0x6CE5\n0x9345\t0x6458\n0x9346\t0x64E2\n0x9347\t0x6575\n0x9348\t0x6EF4\n0x9349\t0x7684\n0x934A\t0x7B1B\n0x934B\t0x9069\n0x934C\t0x93D1\n0x934D\t0x6EBA\n0x934E\t0x54F2\n0x934F\t0x5FB9\n0x9350\t0x64A4\n0x9351\t0x8F4D\n0x9352\t0x8FED\n0x9353\t0x9244\n0x9354\t0x5178\n0x9355\t0x586B\n0x9356\t0x5929\n0x9357\t0x5C55\n0x9358\t0x5E97\n0x9359\t0x6DFB\n0x935A\t0x7E8F\n0x935B\t0x751C\n0x935C\t0x8CBC\n0x935D\t0x8EE2\n0x935E\t0x985B\n0x935F\t0x70B9\n0x9360\t0x4F1D\n0x9361\t0x6BBF\n0x9362\t0x6FB1\n0x9363\t0x7530\n0x9364\t0x96FB\n0x9365\t0x514E\n0x9366\t0x5410\n0x9367\t0x5835\n0x9368\t0x5857\n0x9369\t0x59AC\n0x936A\t0x5C60\n0x936B\t0x5F92\n0x936C\t0x6597\n0x936D\t0x675C\n0x936E\t0x6E21\n0x936F\t0x767B\n0x9370\t0x83DF\n0x9371\t0x8CED\n0x9372\t0x9014\n0x9373\t0x90FD\n0x9374\t0x934D\n0x9375\t0x7825\n0x9376\t0x783A\n0x9377\t0x52AA\n0x9378\t0x5EA6\n0x9379\t0x571F\n0x937A\t0x5974\n0x937B\t0x6012\n0x937C\t0x5012\n0x937D\t0x515A\n0x937E\t0x51AC\n0x9380\t0x51CD\n0x9381\t0x5200\n0x9382\t0x5510\n0x9383\t0x5854\n0x9384\t0x5858\n0x9385\t0x5957\n0x9386\t0x5B95\n0x9387\t0x5CF6\n0x9388\t0x5D8B\n0x9389\t0x60BC\n0x938A\t0x6295\n0x938B\t0x642D\n0x938C\t0x6771\n0x938D\t0x6843\n0x938E\t0x68BC\n0x938F\t0x68DF\n0x9390\t0x76D7\n0x9391\t0x6DD8\n0x9392\t0x6E6F\n0x9393\t0x6D9B\n0x9394\t0x706F\n0x9395\t0x71C8\n0x9396\t0x5F53\n0x9397\t0x75D8\n0x9398\t0x7977\n0x9399\t0x7B49\n0x939A\t0x7B54\n0x939B\t0x7B52\n0x939C\t0x7CD6\n0x939D\t0x7D71\n0x939E\t0x5230\n0x939F\t0x8463\n0x93A0\t0x8569\n0x93A1\t0x85E4\n0x93A2\t0x8A0E\n0x93A3\t0x8B04\n0x93A4\t0x8C46\n0x93A5\t0x8E0F\n0x93A6\t0x9003\n0x93A7\t0x900F\n0x93A8\t0x9419\n0x93A9\t0x9676\n0x93AA\t0x982D\n0x93AB\t0x9A30\n0x93AC\t0x95D8\n0x93AD\t0x50CD\n0x93AE\t0x52D5\n0x93AF\t0x540C\n0x93B0\t0x5802\n0x93B1\t0x5C0E\n0x93B2\t0x61A7\n0x93B3\t0x649E\n0x93B4\t0x6D1E\n0x93B5\t0x77B3\n0x93B6\t0x7AE5\n0x93B7\t0x80F4\n0x93B8\t0x8404\n0x93B9\t0x9053\n0x93BA\t0x9285\n0x93BB\t0x5CE0\n0x93BC\t0x9D07\n0x93BD\t0x533F\n0x93BE\t0x5F97\n0x93BF\t0x5FB3\n0x93C0\t0x6D9C\n0x93C1\t0x7279\n0x93C2\t0x7763\n0x93C3\t0x79BF\n0x93C4\t0x7BE4\n0x93C5\t0x6BD2\n0x93C6\t0x72EC\n0x93C7\t0x8AAD\n0x93C8\t0x6803\n0x93C9\t0x6A61\n0x93CA\t0x51F8\n0x93CB\t0x7A81\n0x93CC\t0x6934\n0x93CD\t0x5C4A\n0x93CE\t0x9CF6\n0x93CF\t0x82EB\n0x93D0\t0x5BC5\n0x93D1\t0x9149\n0x93D2\t0x701E\n0x93D3\t0x5678\n0x93D4\t0x5C6F\n0x93D5\t0x60C7\n0x93D6\t0x6566\n0x93D7\t0x6C8C\n0x93D8\t0x8C5A\n0x93D9\t0x9041\n0x93DA\t0x9813\n0x93DB\t0x5451\n0x93DC\t0x66C7\n0x93DD\t0x920D\n0x93DE\t0x5948\n0x93DF\t0x90A3\n0x93E0\t0x5185\n0x93E1\t0x4E4D\n0x93E2\t0x51EA\n0x93E3\t0x8599\n0x93E4\t0x8B0E\n0x93E5\t0x7058\n0x93E6\t0x637A\n0x93E7\t0x934B\n0x93E8\t0x6962\n0x93E9\t0x99B4\n0x93EA\t0x7E04\n0x93EB\t0x7577\n0x93EC\t0x5357\n0x93ED\t0x6960\n0x93EE\t0x8EDF\n0x93EF\t0x96E3\n0x93F0\t0x6C5D\n0x93F1\t0x4E8C\n0x93F2\t0x5C3C\n0x93F3\t0x5F10\n0x93F4\t0x8FE9\n0x93F5\t0x5302\n0x93F6\t0x8CD1\n0x93F7\t0x8089\n0x93F8\t0x8679\n0x93F9\t0x5EFF\n0x93FA\t0x65E5\n0x93FB\t0x4E73\n0x93FC\t0x5165\n0x9440\t0x5982\n0x9441\t0x5C3F\n0x9442\t0x97EE\n0x9443\t0x4EFB\n0x9444\t0x598A\n0x9445\t0x5FCD\n0x9446\t0x8A8D\n0x9447\t0x6FE1\n0x9448\t0x79B0\n0x9449\t0x7962\n0x944A\t0x5BE7\n0x944B\t0x8471\n0x944C\t0x732B\n0x944D\t0x71B1\n0x944E\t0x5E74\n0x944F\t0x5FF5\n0x9450\t0x637B\n0x9451\t0x649A\n0x9452\t0x71C3\n0x9453\t0x7C98\n0x9454\t0x4E43\n0x9455\t0x5EFC\n0x9456\t0x4E4B\n0x9457\t0x57DC\n0x9458\t0x56A2\n0x9459\t0x60A9\n0x945A\t0x6FC3\n0x945B\t0x7D0D\n0x945C\t0x80FD\n0x945D\t0x8133\n0x945E\t0x81BF\n0x945F\t0x8FB2\n0x9460\t0x8997\n0x9461\t0x86A4\n0x9462\t0x5DF4\n0x9463\t0x628A\n0x9464\t0x64AD\n0x9465\t0x8987\n0x9466\t0x6777\n0x9467\t0x6CE2\n0x9468\t0x6D3E\n0x9469\t0x7436\n0x946A\t0x7834\n0x946B\t0x5A46\n0x946C\t0x7F75\n0x946D\t0x82AD\n0x946E\t0x99AC\n0x946F\t0x4FF3\n0x9470\t0x5EC3\n0x9471\t0x62DD\n0x9472\t0x6392\n0x9473\t0x6557\n0x9474\t0x676F\n0x9475\t0x76C3\n0x9476\t0x724C\n0x9477\t0x80CC\n0x9478\t0x80BA\n0x9479\t0x8F29\n0x947A\t0x914D\n0x947B\t0x500D\n0x947C\t0x57F9\n0x947D\t0x5A92\n0x947E\t0x6885\n0x9480\t0x6973\n0x9481\t0x7164\n0x9482\t0x72FD\n0x9483\t0x8CB7\n0x9484\t0x58F2\n0x9485\t0x8CE0\n0x9486\t0x966A\n0x9487\t0x9019\n0x9488\t0x877F\n0x9489\t0x79E4\n0x948A\t0x77E7\n0x948B\t0x8429\n0x948C\t0x4F2F\n0x948D\t0x5265\n0x948E\t0x535A\n0x948F\t0x62CD\n0x9490\t0x67CF\n0x9491\t0x6CCA\n0x9492\t0x767D\n0x9493\t0x7B94\n0x9494\t0x7C95\n0x9495\t0x8236\n0x9496\t0x8584\n0x9497\t0x8FEB\n0x9498\t0x66DD\n0x9499\t0x6F20\n0x949A\t0x7206\n0x949B\t0x7E1B\n0x949C\t0x83AB\n0x949D\t0x99C1\n0x949E\t0x9EA6\n0x949F\t0x51FD\n0x94A0\t0x7BB1\n0x94A1\t0x7872\n0x94A2\t0x7BB8\n0x94A3\t0x8087\n0x94A4\t0x7B48\n0x94A5\t0x6AE8\n0x94A6\t0x5E61\n0x94A7\t0x808C\n0x94A8\t0x7551\n0x94A9\t0x7560\n0x94AA\t0x516B\n0x94AB\t0x9262\n0x94AC\t0x6E8C\n0x94AD\t0x767A\n0x94AE\t0x9197\n0x94AF\t0x9AEA\n0x94B0\t0x4F10\n0x94B1\t0x7F70\n0x94B2\t0x629C\n0x94B3\t0x7B4F\n0x94B4\t0x95A5\n0x94B5\t0x9CE9\n0x94B6\t0x567A\n0x94B7\t0x5859\n0x94B8\t0x86E4\n0x94B9\t0x96BC\n0x94BA\t0x4F34\n0x94BB\t0x5224\n0x94BC\t0x534A\n0x94BD\t0x53CD\n0x94BE\t0x53DB\n0x94BF\t0x5E06\n0x94C0\t0x642C\n0x94C1\t0x6591\n0x94C2\t0x677F\n0x94C3\t0x6C3E\n0x94C4\t0x6C4E\n0x94C5\t0x7248\n0x94C6\t0x72AF\n0x94C7\t0x73ED\n0x94C8\t0x7554\n0x94C9\t0x7E41\n0x94CA\t0x822C\n0x94CB\t0x85E9\n0x94CC\t0x8CA9\n0x94CD\t0x7BC4\n0x94CE\t0x91C6\n0x94CF\t0x7169\n0x94D0\t0x9812\n0x94D1\t0x98EF\n0x94D2\t0x633D\n0x94D3\t0x6669\n0x94D4\t0x756A\n0x94D5\t0x76E4\n0x94D6\t0x78D0\n0x94D7\t0x8543\n0x94D8\t0x86EE\n0x94D9\t0x532A\n0x94DA\t0x5351\n0x94DB\t0x5426\n0x94DC\t0x5983\n0x94DD\t0x5E87\n0x94DE\t0x5F7C\n0x94DF\t0x60B2\n0x94E0\t0x6249\n0x94E1\t0x6279\n0x94E2\t0x62AB\n0x94E3\t0x6590\n0x94E4\t0x6BD4\n0x94E5\t0x6CCC\n0x94E6\t0x75B2\n0x94E7\t0x76AE\n0x94E8\t0x7891\n0x94E9\t0x79D8\n0x94EA\t0x7DCB\n0x94EB\t0x7F77\n0x94EC\t0x80A5\n0x94ED\t0x88AB\n0x94EE\t0x8AB9\n0x94EF\t0x8CBB\n0x94F0\t0x907F\n0x94F1\t0x975E\n0x94F2\t0x98DB\n0x94F3\t0x6A0B\n0x94F4\t0x7C38\n0x94F5\t0x5099\n0x94F6\t0x5C3E\n0x94F7\t0x5FAE\n0x94F8\t0x6787\n0x94F9\t0x6BD8\n0x94FA\t0x7435\n0x94FB\t0x7709\n0x94FC\t0x7F8E\n0x9540\t0x9F3B\n0x9541\t0x67CA\n0x9542\t0x7A17\n0x9543\t0x5339\n0x9544\t0x758B\n0x9545\t0x9AED\n0x9546\t0x5F66\n0x9547\t0x819D\n0x9548\t0x83F1\n0x9549\t0x8098\n0x954A\t0x5F3C\n0x954B\t0x5FC5\n0x954C\t0x7562\n0x954D\t0x7B46\n0x954E\t0x903C\n0x954F\t0x6867\n0x9550\t0x59EB\n0x9551\t0x5A9B\n0x9552\t0x7D10\n0x9553\t0x767E\n0x9554\t0x8B2C\n0x9555\t0x4FF5\n0x9556\t0x5F6A\n0x9557\t0x6A19\n0x9558\t0x6C37\n0x9559\t0x6F02\n0x955A\t0x74E2\n0x955B\t0x7968\n0x955C\t0x8868\n0x955D\t0x8A55\n0x955E\t0x8C79\n0x955F\t0x5EDF\n0x9560\t0x63CF\n0x9561\t0x75C5\n0x9562\t0x79D2\n0x9563\t0x82D7\n0x9564\t0x9328\n0x9565\t0x92F2\n0x9566\t0x849C\n0x9567\t0x86ED\n0x9568\t0x9C2D\n0x9569\t0x54C1\n0x956A\t0x5F6C\n0x956B\t0x658C\n0x956C\t0x6D5C\n0x956D\t0x7015\n0x956E\t0x8CA7\n0x956F\t0x8CD3\n0x9570\t0x983B\n0x9571\t0x654F\n0x9572\t0x74F6\n0x9573\t0x4E0D\n0x9574\t0x4ED8\n0x9575\t0x57E0\n0x9576\t0x592B\n0x9577\t0x5A66\n0x9578\t0x5BCC\n0x9579\t0x51A8\n0x957A\t0x5E03\n0x957B\t0x5E9C\n0x957C\t0x6016\n0x957D\t0x6276\n0x957E\t0x6577\n0x9580\t0x65A7\n0x9581\t0x666E\n0x9582\t0x6D6E\n0x9583\t0x7236\n0x9584\t0x7B26\n0x9585\t0x8150\n0x9586\t0x819A\n0x9587\t0x8299\n0x9588\t0x8B5C\n0x9589\t0x8CA0\n0x958A\t0x8CE6\n0x958B\t0x8D74\n0x958C\t0x961C\n0x958D\t0x9644\n0x958E\t0x4FAE\n0x958F\t0x64AB\n0x9590\t0x6B66\n0x9591\t0x821E\n0x9592\t0x8461\n0x9593\t0x856A\n0x9594\t0x90E8\n0x9595\t0x5C01\n0x9596\t0x6953\n0x9597\t0x98A8\n0x9598\t0x847A\n0x9599\t0x8557\n0x959A\t0x4F0F\n0x959B\t0x526F\n0x959C\t0x5FA9\n0x959D\t0x5E45\n0x959E\t0x670D\n0x959F\t0x798F\n0x95A0\t0x8179\n0x95A1\t0x8907\n0x95A2\t0x8986\n0x95A3\t0x6DF5\n0x95A4\t0x5F17\n0x95A5\t0x6255\n0x95A6\t0x6CB8\n0x95A7\t0x4ECF\n0x95A8\t0x7269\n0x95A9\t0x9B92\n0x95AA\t0x5206\n0x95AB\t0x543B\n0x95AC\t0x5674\n0x95AD\t0x58B3\n0x95AE\t0x61A4\n0x95AF\t0x626E\n0x95B0\t0x711A\n0x95B1\t0x596E\n0x95B2\t0x7C89\n0x95B3\t0x7CDE\n0x95B4\t0x7D1B\n0x95B5\t0x96F0\n0x95B6\t0x6587\n0x95B7\t0x805E\n0x95B8\t0x4E19\n0x95B9\t0x4F75\n0x95BA\t0x5175\n0x95BB\t0x5840\n0x95BC\t0x5E63\n0x95BD\t0x5E73\n0x95BE\t0x5F0A\n0x95BF\t0x67C4\n0x95C0\t0x4E26\n0x95C1\t0x853D\n0x95C2\t0x9589\n0x95C3\t0x965B\n0x95C4\t0x7C73\n0x95C5\t0x9801\n0x95C6\t0x50FB\n0x95C7\t0x58C1\n0x95C8\t0x7656\n0x95C9\t0x78A7\n0x95CA\t0x5225\n0x95CB\t0x77A5\n0x95CC\t0x8511\n0x95CD\t0x7B86\n0x95CE\t0x504F\n0x95CF\t0x5909\n0x95D0\t0x7247\n0x95D1\t0x7BC7\n0x95D2\t0x7DE8\n0x95D3\t0x8FBA\n0x95D4\t0x8FD4\n0x95D5\t0x904D\n0x95D6\t0x4FBF\n0x95D7\t0x52C9\n0x95D8\t0x5A29\n0x95D9\t0x5F01\n0x95DA\t0x97AD\n0x95DB\t0x4FDD\n0x95DC\t0x8217\n0x95DD\t0x92EA\n0x95DE\t0x5703\n0x95DF\t0x6355\n0x95E0\t0x6B69\n0x95E1\t0x752B\n0x95E2\t0x88DC\n0x95E3\t0x8F14\n0x95E4\t0x7A42\n0x95E5\t0x52DF\n0x95E6\t0x5893\n0x95E7\t0x6155\n0x95E8\t0x620A\n0x95E9\t0x66AE\n0x95EA\t0x6BCD\n0x95EB\t0x7C3F\n0x95EC\t0x83E9\n0x95ED\t0x5023\n0x95EE\t0x4FF8\n0x95EF\t0x5305\n0x95F0\t0x5446\n0x95F1\t0x5831\n0x95F2\t0x5949\n0x95F3\t0x5B9D\n0x95F4\t0x5CF0\n0x95F5\t0x5CEF\n0x95F6\t0x5D29\n0x95F7\t0x5E96\n0x95F8\t0x62B1\n0x95F9\t0x6367\n0x95FA\t0x653E\n0x95FB\t0x65B9\n0x95FC\t0x670B\n0x9640\t0x6CD5\n0x9641\t0x6CE1\n0x9642\t0x70F9\n0x9643\t0x7832\n0x9644\t0x7E2B\n0x9645\t0x80DE\n0x9646\t0x82B3\n0x9647\t0x840C\n0x9648\t0x84EC\n0x9649\t0x8702\n0x964A\t0x8912\n0x964B\t0x8A2A\n0x964C\t0x8C4A\n0x964D\t0x90A6\n0x964E\t0x92D2\n0x964F\t0x98FD\n0x9650\t0x9CF3\n0x9651\t0x9D6C\n0x9652\t0x4E4F\n0x9653\t0x4EA1\n0x9654\t0x508D\n0x9655\t0x5256\n0x9656\t0x574A\n0x9657\t0x59A8\n0x9658\t0x5E3D\n0x9659\t0x5FD8\n0x965A\t0x5FD9\n0x965B\t0x623F\n0x965C\t0x66B4\n0x965D\t0x671B\n0x965E\t0x67D0\n0x965F\t0x68D2\n0x9660\t0x5192\n0x9661\t0x7D21\n0x9662\t0x80AA\n0x9663\t0x81A8\n0x9664\t0x8B00\n0x9665\t0x8C8C\n0x9666\t0x8CBF\n0x9667\t0x927E\n0x9668\t0x9632\n0x9669\t0x5420\n0x966A\t0x982C\n0x966B\t0x5317\n0x966C\t0x50D5\n0x966D\t0x535C\n0x966E\t0x58A8\n0x966F\t0x64B2\n0x9670\t0x6734\n0x9671\t0x7267\n0x9672\t0x7766\n0x9673\t0x7A46\n0x9674\t0x91E6\n0x9675\t0x52C3\n0x9676\t0x6CA1\n0x9677\t0x6B86\n0x9678\t0x5800\n0x9679\t0x5E4C\n0x967A\t0x5954\n0x967B\t0x672C\n0x967C\t0x7FFB\n0x967D\t0x51E1\n0x967E\t0x76C6\n0x9680\t0x6469\n0x9681\t0x78E8\n0x9682\t0x9B54\n0x9683\t0x9EBB\n0x9684\t0x57CB\n0x9685\t0x59B9\n0x9686\t0x6627\n0x9687\t0x679A\n0x9688\t0x6BCE\n0x9689\t0x54E9\n0x968A\t0x69D9\n0x968B\t0x5E55\n0x968C\t0x819C\n0x968D\t0x6795\n0x968E\t0x9BAA\n0x968F\t0x67FE\n0x9690\t0x9C52\n0x9691\t0x685D\n0x9692\t0x4EA6\n0x9693\t0x4FE3\n0x9694\t0x53C8\n0x9695\t0x62B9\n0x9696\t0x672B\n0x9697\t0x6CAB\n0x9698\t0x8FC4\n0x9699\t0x4FAD\n0x969A\t0x7E6D\n0x969B\t0x9EBF\n0x969C\t0x4E07\n0x969D\t0x6162\n0x969E\t0x6E80\n0x969F\t0x6F2B\n0x96A0\t0x8513\n0x96A1\t0x5473\n0x96A2\t0x672A\n0x96A3\t0x9B45\n0x96A4\t0x5DF3\n0x96A5\t0x7B95\n0x96A6\t0x5CAC\n0x96A7\t0x5BC6\n0x96A8\t0x871C\n0x96A9\t0x6E4A\n0x96AA\t0x84D1\n0x96AB\t0x7A14\n0x96AC\t0x8108\n0x96AD\t0x5999\n0x96AE\t0x7C8D\n0x96AF\t0x6C11\n0x96B0\t0x7720\n0x96B1\t0x52D9\n0x96B2\t0x5922\n0x96B3\t0x7121\n0x96B4\t0x725F\n0x96B5\t0x77DB\n0x96B6\t0x9727\n0x96B7\t0x9D61\n0x96B8\t0x690B\n0x96B9\t0x5A7F\n0x96BA\t0x5A18\n0x96BB\t0x51A5\n0x96BC\t0x540D\n0x96BD\t0x547D\n0x96BE\t0x660E\n0x96BF\t0x76DF\n0x96C0\t0x8FF7\n0x96C1\t0x9298\n0x96C2\t0x9CF4\n0x96C3\t0x59EA\n0x96C4\t0x725D\n0x96C5\t0x6EC5\n0x96C6\t0x514D\n0x96C7\t0x68C9\n0x96C8\t0x7DBF\n0x96C9\t0x7DEC\n0x96CA\t0x9762\n0x96CB\t0x9EBA\n0x96CC\t0x6478\n0x96CD\t0x6A21\n0x96CE\t0x8302\n0x96CF\t0x5984\n0x96D0\t0x5B5F\n0x96D1\t0x6BDB\n0x96D2\t0x731B\n0x96D3\t0x76F2\n0x96D4\t0x7DB2\n0x96D5\t0x8017\n0x96D6\t0x8499\n0x96D7\t0x5132\n0x96D8\t0x6728\n0x96D9\t0x9ED9\n0x96DA\t0x76EE\n0x96DB\t0x6762\n0x96DC\t0x52FF\n0x96DD\t0x9905\n0x96DE\t0x5C24\n0x96DF\t0x623B\n0x96E0\t0x7C7E\n0x96E1\t0x8CB0\n0x96E2\t0x554F\n0x96E3\t0x60B6\n0x96E4\t0x7D0B\n0x96E5\t0x9580\n0x96E6\t0x5301\n0x96E7\t0x4E5F\n0x96E8\t0x51B6\n0x96E9\t0x591C\n0x96EA\t0x723A\n0x96EB\t0x8036\n0x96EC\t0x91CE\n0x96ED\t0x5F25\n0x96EE\t0x77E2\n0x96EF\t0x5384\n0x96F0\t0x5F79\n0x96F1\t0x7D04\n0x96F2\t0x85AC\n0x96F3\t0x8A33\n0x96F4\t0x8E8D\n0x96F5\t0x9756\n0x96F6\t0x67F3\n0x96F7\t0x85AE\n0x96F8\t0x9453\n0x96F9\t0x6109\n0x96FA\t0x6108\n0x96FB\t0x6CB9\n0x96FC\t0x7652\n0x9740\t0x8AED\n0x9741\t0x8F38\n0x9742\t0x552F\n0x9743\t0x4F51\n0x9744\t0x512A\n0x9745\t0x52C7\n0x9746\t0x53CB\n0x9747\t0x5BA5\n0x9748\t0x5E7D\n0x9749\t0x60A0\n0x974A\t0x6182\n0x974B\t0x63D6\n0x974C\t0x6709\n0x974D\t0x67DA\n0x974E\t0x6E67\n0x974F\t0x6D8C\n0x9750\t0x7336\n0x9751\t0x7337\n0x9752\t0x7531\n0x9753\t0x7950\n0x9754\t0x88D5\n0x9755\t0x8A98\n0x9756\t0x904A\n0x9757\t0x9091\n0x9758\t0x90F5\n0x9759\t0x96C4\n0x975A\t0x878D\n0x975B\t0x5915\n0x975C\t0x4E88\n0x975D\t0x4F59\n0x975E\t0x4E0E\n0x975F\t0x8A89\n0x9760\t0x8F3F\n0x9761\t0x9810\n0x9762\t0x50AD\n0x9763\t0x5E7C\n0x9764\t0x5996\n0x9765\t0x5BB9\n0x9766\t0x5EB8\n0x9767\t0x63DA\n0x9768\t0x63FA\n0x9769\t0x64C1\n0x976A\t0x66DC\n0x976B\t0x694A\n0x976C\t0x69D8\n0x976D\t0x6D0B\n0x976E\t0x6EB6\n0x976F\t0x7194\n0x9770\t0x7528\n0x9771\t0x7AAF\n0x9772\t0x7F8A\n0x9773\t0x8000\n0x9774\t0x8449\n0x9775\t0x84C9\n0x9776\t0x8981\n0x9777\t0x8B21\n0x9778\t0x8E0A\n0x9779\t0x9065\n0x977A\t0x967D\n0x977B\t0x990A\n0x977C\t0x617E\n0x977D\t0x6291\n0x977E\t0x6B32\n0x9780\t0x6C83\n0x9781\t0x6D74\n0x9782\t0x7FCC\n0x9783\t0x7FFC\n0x9784\t0x6DC0\n0x9785\t0x7F85\n0x9786\t0x87BA\n0x9787\t0x88F8\n0x9788\t0x6765\n0x9789\t0x83B1\n0x978A\t0x983C\n0x978B\t0x96F7\n0x978C\t0x6D1B\n0x978D\t0x7D61\n0x978E\t0x843D\n0x978F\t0x916A\n0x9790\t0x4E71\n0x9791\t0x5375\n0x9792\t0x5D50\n0x9793\t0x6B04\n0x9794\t0x6FEB\n0x9795\t0x85CD\n0x9796\t0x862D\n0x9797\t0x89A7\n0x9798\t0x5229\n0x9799\t0x540F\n0x979A\t0x5C65\n0x979B\t0x674E\n0x979C\t0x68A8\n0x979D\t0x7406\n0x979E\t0x7483\n0x979F\t0x75E2\n0x97A0\t0x88CF\n0x97A1\t0x88E1\n0x97A2\t0x91CC\n0x97A3\t0x96E2\n0x97A4\t0x9678\n0x97A5\t0x5F8B\n0x97A6\t0x7387\n0x97A7\t0x7ACB\n0x97A8\t0x844E\n0x97A9\t0x63A0\n0x97AA\t0x7565\n0x97AB\t0x5289\n0x97AC\t0x6D41\n0x97AD\t0x6E9C\n0x97AE\t0x7409\n0x97AF\t0x7559\n0x97B0\t0x786B\n0x97B1\t0x7C92\n0x97B2\t0x9686\n0x97B3\t0x7ADC\n0x97B4\t0x9F8D\n0x97B5\t0x4FB6\n0x97B6\t0x616E\n0x97B7\t0x65C5\n0x97B8\t0x865C\n0x97B9\t0x4E86\n0x97BA\t0x4EAE\n0x97BB\t0x50DA\n0x97BC\t0x4E21\n0x97BD\t0x51CC\n0x97BE\t0x5BEE\n0x97BF\t0x6599\n0x97C0\t0x6881\n0x97C1\t0x6DBC\n0x97C2\t0x731F\n0x97C3\t0x7642\n0x97C4\t0x77AD\n0x97C5\t0x7A1C\n0x97C6\t0x7CE7\n0x97C7\t0x826F\n0x97C8\t0x8AD2\n0x97C9\t0x907C\n0x97CA\t0x91CF\n0x97CB\t0x9675\n0x97CC\t0x9818\n0x97CD\t0x529B\n0x97CE\t0x7DD1\n0x97CF\t0x502B\n0x97D0\t0x5398\n0x97D1\t0x6797\n0x97D2\t0x6DCB\n0x97D3\t0x71D0\n0x97D4\t0x7433\n0x97D5\t0x81E8\n0x97D6\t0x8F2A\n0x97D7\t0x96A3\n0x97D8\t0x9C57\n0x97D9\t0x9E9F\n0x97DA\t0x7460\n0x97DB\t0x5841\n0x97DC\t0x6D99\n0x97DD\t0x7D2F\n0x97DE\t0x985E\n0x97DF\t0x4EE4\n0x97E0\t0x4F36\n0x97E1\t0x4F8B\n0x97E2\t0x51B7\n0x97E3\t0x52B1\n0x97E4\t0x5DBA\n0x97E5\t0x601C\n0x97E6\t0x73B2\n0x97E7\t0x793C\n0x97E8\t0x82D3\n0x97E9\t0x9234\n0x97EA\t0x96B7\n0x97EB\t0x96F6\n0x97EC\t0x970A\n0x97ED\t0x9E97\n0x97EE\t0x9F62\n0x97EF\t0x66A6\n0x97F0\t0x6B74\n0x97F1\t0x5217\n0x97F2\t0x52A3\n0x97F3\t0x70C8\n0x97F4\t0x88C2\n0x97F5\t0x5EC9\n0x97F6\t0x604B\n0x97F7\t0x6190\n0x97F8\t0x6F23\n0x97F9\t0x7149\n0x97FA\t0x7C3E\n0x97FB\t0x7DF4\n0x97FC\t0x806F\n0x9840\t0x84EE\n0x9841\t0x9023\n0x9842\t0x932C\n0x9843\t0x5442\n0x9844\t0x9B6F\n0x9845\t0x6AD3\n0x9846\t0x7089\n0x9847\t0x8CC2\n0x9848\t0x8DEF\n0x9849\t0x9732\n0x984A\t0x52B4\n0x984B\t0x5A41\n0x984C\t0x5ECA\n0x984D\t0x5F04\n0x984E\t0x6717\n0x984F\t0x697C\n0x9850\t0x6994\n0x9851\t0x6D6A\n0x9852\t0x6F0F\n0x9853\t0x7262\n0x9854\t0x72FC\n0x9855\t0x7BED\n0x9856\t0x8001\n0x9857\t0x807E\n0x9858\t0x874B\n0x9859\t0x90CE\n0x985A\t0x516D\n0x985B\t0x9E93\n0x985C\t0x7984\n0x985D\t0x808B\n0x985E\t0x9332\n0x985F\t0x8AD6\n0x9860\t0x502D\n0x9861\t0x548C\n0x9862\t0x8A71\n0x9863\t0x6B6A\n0x9864\t0x8CC4\n0x9865\t0x8107\n0x9866\t0x60D1\n0x9867\t0x67A0\n0x9868\t0x9DF2\n0x9869\t0x4E99\n0x986A\t0x4E98\n0x986B\t0x9C10\n0x986C\t0x8A6B\n0x986D\t0x85C1\n0x986E\t0x8568\n0x986F\t0x6900\n0x9870\t0x6E7E\n0x9871\t0x7897\n0x9872\t0x8155\n0x989F\t0x5F0C\n0x98A0\t0x4E10\n0x98A1\t0x4E15\n0x98A2\t0x4E2A\n0x98A3\t0x4E31\n0x98A4\t0x4E36\n0x98A5\t0x4E3C\n0x98A6\t0x4E3F\n0x98A7\t0x4E42\n0x98A8\t0x4E56\n0x98A9\t0x4E58\n0x98AA\t0x4E82\n0x98AB\t0x4E85\n0x98AC\t0x8C6B\n0x98AD\t0x4E8A\n0x98AE\t0x8212\n0x98AF\t0x5F0D\n0x98B0\t0x4E8E\n0x98B1\t0x4E9E\n0x98B2\t0x4E9F\n0x98B3\t0x4EA0\n0x98B4\t0x4EA2\n0x98B5\t0x4EB0\n0x98B6\t0x4EB3\n0x98B7\t0x4EB6\n0x98B8\t0x4ECE\n0x98B9\t0x4ECD\n0x98BA\t0x4EC4\n0x98BB\t0x4EC6\n0x98BC\t0x4EC2\n0x98BD\t0x4ED7\n0x98BE\t0x4EDE\n0x98BF\t0x4EED\n0x98C0\t0x4EDF\n0x98C1\t0x4EF7\n0x98C2\t0x4F09\n0x98C3\t0x4F5A\n0x98C4\t0x4F30\n0x98C5\t0x4F5B\n0x98C6\t0x4F5D\n0x98C7\t0x4F57\n0x98C8\t0x4F47\n0x98C9\t0x4F76\n0x98CA\t0x4F88\n0x98CB\t0x4F8F\n0x98CC\t0x4F98\n0x98CD\t0x4F7B\n0x98CE\t0x4F69\n0x98CF\t0x4F70\n0x98D0\t0x4F91\n0x98D1\t0x4F6F\n0x98D2\t0x4F86\n0x98D3\t0x4F96\n0x98D4\t0x5118\n0x98D5\t0x4FD4\n0x98D6\t0x4FDF\n0x98D7\t0x4FCE\n0x98D8\t0x4FD8\n0x98D9\t0x4FDB\n0x98DA\t0x4FD1\n0x98DB\t0x4FDA\n0x98DC\t0x4FD0\n0x98DD\t0x4FE4\n0x98DE\t0x4FE5\n0x98DF\t0x501A\n0x98E0\t0x5028\n0x98E1\t0x5014\n0x98E2\t0x502A\n0x98E3\t0x5025\n0x98E4\t0x5005\n0x98E5\t0x4F1C\n0x98E6\t0x4FF6\n0x98E7\t0x5021\n0x98E8\t0x5029\n0x98E9\t0x502C\n0x98EA\t0x4FFE\n0x98EB\t0x4FEF\n0x98EC\t0x5011\n0x98ED\t0x5006\n0x98EE\t0x5043\n0x98EF\t0x5047\n0x98F0\t0x6703\n0x98F1\t0x5055\n0x98F2\t0x5050\n0x98F3\t0x5048\n0x98F4\t0x505A\n0x98F5\t0x5056\n0x98F6\t0x506C\n0x98F7\t0x5078\n0x98F8\t0x5080\n0x98F9\t0x509A\n0x98FA\t0x5085\n0x98FB\t0x50B4\n0x98FC\t0x50B2\n0x9940\t0x50C9\n0x9941\t0x50CA\n0x9942\t0x50B3\n0x9943\t0x50C2\n0x9944\t0x50D6\n0x9945\t0x50DE\n0x9946\t0x50E5\n0x9947\t0x50ED\n0x9948\t0x50E3\n0x9949\t0x50EE\n0x994A\t0x50F9\n0x994B\t0x50F5\n0x994C\t0x5109\n0x994D\t0x5101\n0x994E\t0x5102\n0x994F\t0x5116\n0x9950\t0x5115\n0x9951\t0x5114\n0x9952\t0x511A\n0x9953\t0x5121\n0x9954\t0x513A\n0x9955\t0x5137\n0x9956\t0x513C\n0x9957\t0x513B\n0x9958\t0x513F\n0x9959\t0x5140\n0x995A\t0x5152\n0x995B\t0x514C\n0x995C\t0x5154\n0x995D\t0x5162\n0x995E\t0x7AF8\n0x995F\t0x5169\n0x9960\t0x516A\n0x9961\t0x516E\n0x9962\t0x5180\n0x9963\t0x5182\n0x9964\t0x56D8\n0x9965\t0x518C\n0x9966\t0x5189\n0x9967\t0x518F\n0x9968\t0x5191\n0x9969\t0x5193\n0x996A\t0x5195\n0x996B\t0x5196\n0x996C\t0x51A4\n0x996D\t0x51A6\n0x996E\t0x51A2\n0x996F\t0x51A9\n0x9970\t0x51AA\n0x9971\t0x51AB\n0x9972\t0x51B3\n0x9973\t0x51B1\n0x9974\t0x51B2\n0x9975\t0x51B0\n0x9976\t0x51B5\n0x9977\t0x51BD\n0x9978\t0x51C5\n0x9979\t0x51C9\n0x997A\t0x51DB\n0x997B\t0x51E0\n0x997C\t0x8655\n0x997D\t0x51E9\n0x997E\t0x51ED\n0x9980\t0x51F0\n0x9981\t0x51F5\n0x9982\t0x51FE\n0x9983\t0x5204\n0x9984\t0x520B\n0x9985\t0x5214\n0x9986\t0x520E\n0x9987\t0x5227\n0x9988\t0x522A\n0x9989\t0x522E\n0x998A\t0x5233\n0x998B\t0x5239\n0x998C\t0x524F\n0x998D\t0x5244\n0x998E\t0x524B\n0x998F\t0x524C\n0x9990\t0x525E\n0x9991\t0x5254\n0x9992\t0x526A\n0x9993\t0x5274\n0x9994\t0x5269\n0x9995\t0x5273\n0x9996\t0x527F\n0x9997\t0x527D\n0x9998\t0x528D\n0x9999\t0x5294\n0x999A\t0x5292\n0x999B\t0x5271\n0x999C\t0x5288\n0x999D\t0x5291\n0x999E\t0x8FA8\n0x999F\t0x8FA7\n0x99A0\t0x52AC\n0x99A1\t0x52AD\n0x99A2\t0x52BC\n0x99A3\t0x52B5\n0x99A4\t0x52C1\n0x99A5\t0x52CD\n0x99A6\t0x52D7\n0x99A7\t0x52DE\n0x99A8\t0x52E3\n0x99A9\t0x52E6\n0x99AA\t0x98ED\n0x99AB\t0x52E0\n0x99AC\t0x52F3\n0x99AD\t0x52F5\n0x99AE\t0x52F8\n0x99AF\t0x52F9\n0x99B0\t0x5306\n0x99B1\t0x5308\n0x99B2\t0x7538\n0x99B3\t0x530D\n0x99B4\t0x5310\n0x99B5\t0x530F\n0x99B6\t0x5315\n0x99B7\t0x531A\n0x99B8\t0x5323\n0x99B9\t0x532F\n0x99BA\t0x5331\n0x99BB\t0x5333\n0x99BC\t0x5338\n0x99BD\t0x5340\n0x99BE\t0x5346\n0x99BF\t0x5345\n0x99C0\t0x4E17\n0x99C1\t0x5349\n0x99C2\t0x534D\n0x99C3\t0x51D6\n0x99C4\t0x535E\n0x99C5\t0x5369\n0x99C6\t0x536E\n0x99C7\t0x5918\n0x99C8\t0x537B\n0x99C9\t0x5377\n0x99CA\t0x5382\n0x99CB\t0x5396\n0x99CC\t0x53A0\n0x99CD\t0x53A6\n0x99CE\t0x53A5\n0x99CF\t0x53AE\n0x99D0\t0x53B0\n0x99D1\t0x53B6\n0x99D2\t0x53C3\n0x99D3\t0x7C12\n0x99D4\t0x96D9\n0x99D5\t0x53DF\n0x99D6\t0x66FC\n0x99D7\t0x71EE\n0x99D8\t0x53EE\n0x99D9\t0x53E8\n0x99DA\t0x53ED\n0x99DB\t0x53FA\n0x99DC\t0x5401\n0x99DD\t0x543D\n0x99DE\t0x5440\n0x99DF\t0x542C\n0x99E0\t0x542D\n0x99E1\t0x543C\n0x99E2\t0x542E\n0x99E3\t0x5436\n0x99E4\t0x5429\n0x99E5\t0x541D\n0x99E6\t0x544E\n0x99E7\t0x548F\n0x99E8\t0x5475\n0x99E9\t0x548E\n0x99EA\t0x545F\n0x99EB\t0x5471\n0x99EC\t0x5477\n0x99ED\t0x5470\n0x99EE\t0x5492\n0x99EF\t0x547B\n0x99F0\t0x5480\n0x99F1\t0x5476\n0x99F2\t0x5484\n0x99F3\t0x5490\n0x99F4\t0x5486\n0x99F5\t0x54C7\n0x99F6\t0x54A2\n0x99F7\t0x54B8\n0x99F8\t0x54A5\n0x99F9\t0x54AC\n0x99FA\t0x54C4\n0x99FB\t0x54C8\n0x99FC\t0x54A8\n0x9A40\t0x54AB\n0x9A41\t0x54C2\n0x9A42\t0x54A4\n0x9A43\t0x54BE\n0x9A44\t0x54BC\n0x9A45\t0x54D8\n0x9A46\t0x54E5\n0x9A47\t0x54E6\n0x9A48\t0x550F\n0x9A49\t0x5514\n0x9A4A\t0x54FD\n0x9A4B\t0x54EE\n0x9A4C\t0x54ED\n0x9A4D\t0x54FA\n0x9A4E\t0x54E2\n0x9A4F\t0x5539\n0x9A50\t0x5540\n0x9A51\t0x5563\n0x9A52\t0x554C\n0x9A53\t0x552E\n0x9A54\t0x555C\n0x9A55\t0x5545\n0x9A56\t0x5556\n0x9A57\t0x5557\n0x9A58\t0x5538\n0x9A59\t0x5533\n0x9A5A\t0x555D\n0x9A5B\t0x5599\n0x9A5C\t0x5580\n0x9A5D\t0x54AF\n0x9A5E\t0x558A\n0x9A5F\t0x559F\n0x9A60\t0x557B\n0x9A61\t0x557E\n0x9A62\t0x5598\n0x9A63\t0x559E\n0x9A64\t0x55AE\n0x9A65\t0x557C\n0x9A66\t0x5583\n0x9A67\t0x55A9\n0x9A68\t0x5587\n0x9A69\t0x55A8\n0x9A6A\t0x55DA\n0x9A6B\t0x55C5\n0x9A6C\t0x55DF\n0x9A6D\t0x55C4\n0x9A6E\t0x55DC\n0x9A6F\t0x55E4\n0x9A70\t0x55D4\n0x9A71\t0x5614\n0x9A72\t0x55F7\n0x9A73\t0x5616\n0x9A74\t0x55FE\n0x9A75\t0x55FD\n0x9A76\t0x561B\n0x9A77\t0x55F9\n0x9A78\t0x564E\n0x9A79\t0x5650\n0x9A7A\t0x71DF\n0x9A7B\t0x5634\n0x9A7C\t0x5636\n0x9A7D\t0x5632\n0x9A7E\t0x5638\n0x9A80\t0x566B\n0x9A81\t0x5664\n0x9A82\t0x562F\n0x9A83\t0x566C\n0x9A84\t0x566A\n0x9A85\t0x5686\n0x9A86\t0x5680\n0x9A87\t0x568A\n0x9A88\t0x56A0\n0x9A89\t0x5694\n0x9A8A\t0x568F\n0x9A8B\t0x56A5\n0x9A8C\t0x56AE\n0x9A8D\t0x56B6\n0x9A8E\t0x56B4\n0x9A8F\t0x56C2\n0x9A90\t0x56BC\n0x9A91\t0x56C1\n0x9A92\t0x56C3\n0x9A93\t0x56C0\n0x9A94\t0x56C8\n0x9A95\t0x56CE\n0x9A96\t0x56D1\n0x9A97\t0x56D3\n0x9A98\t0x56D7\n0x9A99\t0x56EE\n0x9A9A\t0x56F9\n0x9A9B\t0x5700\n0x9A9C\t0x56FF\n0x9A9D\t0x5704\n0x9A9E\t0x5709\n0x9A9F\t0x5708\n0x9AA0\t0x570B\n0x9AA1\t0x570D\n0x9AA2\t0x5713\n0x9AA3\t0x5718\n0x9AA4\t0x5716\n0x9AA5\t0x55C7\n0x9AA6\t0x571C\n0x9AA7\t0x5726\n0x9AA8\t0x5737\n0x9AA9\t0x5738\n0x9AAA\t0x574E\n0x9AAB\t0x573B\n0x9AAC\t0x5740\n0x9AAD\t0x574F\n0x9AAE\t0x5769\n0x9AAF\t0x57C0\n0x9AB0\t0x5788\n0x9AB1\t0x5761\n0x9AB2\t0x577F\n0x9AB3\t0x5789\n0x9AB4\t0x5793\n0x9AB5\t0x57A0\n0x9AB6\t0x57B3\n0x9AB7\t0x57A4\n0x9AB8\t0x57AA\n0x9AB9\t0x57B0\n0x9ABA\t0x57C3\n0x9ABB\t0x57C6\n0x9ABC\t0x57D4\n0x9ABD\t0x57D2\n0x9ABE\t0x57D3\n0x9ABF\t0x580A\n0x9AC0\t0x57D6\n0x9AC1\t0x57E3\n0x9AC2\t0x580B\n0x9AC3\t0x5819\n0x9AC4\t0x581D\n0x9AC5\t0x5872\n0x9AC6\t0x5821\n0x9AC7\t0x5862\n0x9AC8\t0x584B\n0x9AC9\t0x5870\n0x9ACA\t0x6BC0\n0x9ACB\t0x5852\n0x9ACC\t0x583D\n0x9ACD\t0x5879\n0x9ACE\t0x5885\n0x9ACF\t0x58B9\n0x9AD0\t0x589F\n0x9AD1\t0x58AB\n0x9AD2\t0x58BA\n0x9AD3\t0x58DE\n0x9AD4\t0x58BB\n0x9AD5\t0x58B8\n0x9AD6\t0x58AE\n0x9AD7\t0x58C5\n0x9AD8\t0x58D3\n0x9AD9\t0x58D1\n0x9ADA\t0x58D7\n0x9ADB\t0x58D9\n0x9ADC\t0x58D8\n0x9ADD\t0x58E5\n0x9ADE\t0x58DC\n0x9ADF\t0x58E4\n0x9AE0\t0x58DF\n0x9AE1\t0x58EF\n0x9AE2\t0x58FA\n0x9AE3\t0x58F9\n0x9AE4\t0x58FB\n0x9AE5\t0x58FC\n0x9AE6\t0x58FD\n0x9AE7\t0x5902\n0x9AE8\t0x590A\n0x9AE9\t0x5910\n0x9AEA\t0x591B\n0x9AEB\t0x68A6\n0x9AEC\t0x5925\n0x9AED\t0x592C\n0x9AEE\t0x592D\n0x9AEF\t0x5932\n0x9AF0\t0x5938\n0x9AF1\t0x593E\n0x9AF2\t0x7AD2\n0x9AF3\t0x5955\n0x9AF4\t0x5950\n0x9AF5\t0x594E\n0x9AF6\t0x595A\n0x9AF7\t0x5958\n0x9AF8\t0x5962\n0x9AF9\t0x5960\n0x9AFA\t0x5967\n0x9AFB\t0x596C\n0x9AFC\t0x5969\n0x9B40\t0x5978\n0x9B41\t0x5981\n0x9B42\t0x599D\n0x9B43\t0x4F5E\n0x9B44\t0x4FAB\n0x9B45\t0x59A3\n0x9B46\t0x59B2\n0x9B47\t0x59C6\n0x9B48\t0x59E8\n0x9B49\t0x59DC\n0x9B4A\t0x598D\n0x9B4B\t0x59D9\n0x9B4C\t0x59DA\n0x9B4D\t0x5A25\n0x9B4E\t0x5A1F\n0x9B4F\t0x5A11\n0x9B50\t0x5A1C\n0x9B51\t0x5A09\n0x9B52\t0x5A1A\n0x9B53\t0x5A40\n0x9B54\t0x5A6C\n0x9B55\t0x5A49\n0x9B56\t0x5A35\n0x9B57\t0x5A36\n0x9B58\t0x5A62\n0x9B59\t0x5A6A\n0x9B5A\t0x5A9A\n0x9B5B\t0x5ABC\n0x9B5C\t0x5ABE\n0x9B5D\t0x5ACB\n0x9B5E\t0x5AC2\n0x9B5F\t0x5ABD\n0x9B60\t0x5AE3\n0x9B61\t0x5AD7\n0x9B62\t0x5AE6\n0x9B63\t0x5AE9\n0x9B64\t0x5AD6\n0x9B65\t0x5AFA\n0x9B66\t0x5AFB\n0x9B67\t0x5B0C\n0x9B68\t0x5B0B\n0x9B69\t0x5B16\n0x9B6A\t0x5B32\n0x9B6B\t0x5AD0\n0x9B6C\t0x5B2A\n0x9B6D\t0x5B36\n0x9B6E\t0x5B3E\n0x9B6F\t0x5B43\n0x9B70\t0x5B45\n0x9B71\t0x5B40\n0x9B72\t0x5B51\n0x9B73\t0x5B55\n0x9B74\t0x5B5A\n0x9B75\t0x5B5B\n0x9B76\t0x5B65\n0x9B77\t0x5B69\n0x9B78\t0x5B70\n0x9B79\t0x5B73\n0x9B7A\t0x5B75\n0x9B7B\t0x5B78\n0x9B7C\t0x6588\n0x9B7D\t0x5B7A\n0x9B7E\t0x5B80\n0x9B80\t0x5B83\n0x9B81\t0x5BA6\n0x9B82\t0x5BB8\n0x9B83\t0x5BC3\n0x9B84\t0x5BC7\n0x9B85\t0x5BC9\n0x9B86\t0x5BD4\n0x9B87\t0x5BD0\n0x9B88\t0x5BE4\n0x9B89\t0x5BE6\n0x9B8A\t0x5BE2\n0x9B8B\t0x5BDE\n0x9B8C\t0x5BE5\n0x9B8D\t0x5BEB\n0x9B8E\t0x5BF0\n0x9B8F\t0x5BF6\n0x9B90\t0x5BF3\n0x9B91\t0x5C05\n0x9B92\t0x5C07\n0x9B93\t0x5C08\n0x9B94\t0x5C0D\n0x9B95\t0x5C13\n0x9B96\t0x5C20\n0x9B97\t0x5C22\n0x9B98\t0x5C28\n0x9B99\t0x5C38\n0x9B9A\t0x5C39\n0x9B9B\t0x5C41\n0x9B9C\t0x5C46\n0x9B9D\t0x5C4E\n0x9B9E\t0x5C53\n0x9B9F\t0x5C50\n0x9BA0\t0x5C4F\n0x9BA1\t0x5B71\n0x9BA2\t0x5C6C\n0x9BA3\t0x5C6E\n0x9BA4\t0x4E62\n0x9BA5\t0x5C76\n0x9BA6\t0x5C79\n0x9BA7\t0x5C8C\n0x9BA8\t0x5C91\n0x9BA9\t0x5C94\n0x9BAA\t0x599B\n0x9BAB\t0x5CAB\n0x9BAC\t0x5CBB\n0x9BAD\t0x5CB6\n0x9BAE\t0x5CBC\n0x9BAF\t0x5CB7\n0x9BB0\t0x5CC5\n0x9BB1\t0x5CBE\n0x9BB2\t0x5CC7\n0x9BB3\t0x5CD9\n0x9BB4\t0x5CE9\n0x9BB5\t0x5CFD\n0x9BB6\t0x5CFA\n0x9BB7\t0x5CED\n0x9BB8\t0x5D8C\n0x9BB9\t0x5CEA\n0x9BBA\t0x5D0B\n0x9BBB\t0x5D15\n0x9BBC\t0x5D17\n0x9BBD\t0x5D5C\n0x9BBE\t0x5D1F\n0x9BBF\t0x5D1B\n0x9BC0\t0x5D11\n0x9BC1\t0x5D14\n0x9BC2\t0x5D22\n0x9BC3\t0x5D1A\n0x9BC4\t0x5D19\n0x9BC5\t0x5D18\n0x9BC6\t0x5D4C\n0x9BC7\t0x5D52\n0x9BC8\t0x5D4E\n0x9BC9\t0x5D4B\n0x9BCA\t0x5D6C\n0x9BCB\t0x5D73\n0x9BCC\t0x5D76\n0x9BCD\t0x5D87\n0x9BCE\t0x5D84\n0x9BCF\t0x5D82\n0x9BD0\t0x5DA2\n0x9BD1\t0x5D9D\n0x9BD2\t0x5DAC\n0x9BD3\t0x5DAE\n0x9BD4\t0x5DBD\n0x9BD5\t0x5D90\n0x9BD6\t0x5DB7\n0x9BD7\t0x5DBC\n0x9BD8\t0x5DC9\n0x9BD9\t0x5DCD\n0x9BDA\t0x5DD3\n0x9BDB\t0x5DD2\n0x9BDC\t0x5DD6\n0x9BDD\t0x5DDB\n0x9BDE\t0x5DEB\n0x9BDF\t0x5DF2\n0x9BE0\t0x5DF5\n0x9BE1\t0x5E0B\n0x9BE2\t0x5E1A\n0x9BE3\t0x5E19\n0x9BE4\t0x5E11\n0x9BE5\t0x5E1B\n0x9BE6\t0x5E36\n0x9BE7\t0x5E37\n0x9BE8\t0x5E44\n0x9BE9\t0x5E43\n0x9BEA\t0x5E40\n0x9BEB\t0x5E4E\n0x9BEC\t0x5E57\n0x9BED\t0x5E54\n0x9BEE\t0x5E5F\n0x9BEF\t0x5E62\n0x9BF0\t0x5E64\n0x9BF1\t0x5E47\n0x9BF2\t0x5E75\n0x9BF3\t0x5E76\n0x9BF4\t0x5E7A\n0x9BF5\t0x9EBC\n0x9BF6\t0x5E7F\n0x9BF7\t0x5EA0\n0x9BF8\t0x5EC1\n0x9BF9\t0x5EC2\n0x9BFA\t0x5EC8\n0x9BFB\t0x5ED0\n0x9BFC\t0x5ECF\n0x9C40\t0x5ED6\n0x9C41\t0x5EE3\n0x9C42\t0x5EDD\n0x9C43\t0x5EDA\n0x9C44\t0x5EDB\n0x9C45\t0x5EE2\n0x9C46\t0x5EE1\n0x9C47\t0x5EE8\n0x9C48\t0x5EE9\n0x9C49\t0x5EEC\n0x9C4A\t0x5EF1\n0x9C4B\t0x5EF3\n0x9C4C\t0x5EF0\n0x9C4D\t0x5EF4\n0x9C4E\t0x5EF8\n0x9C4F\t0x5EFE\n0x9C50\t0x5F03\n0x9C51\t0x5F09\n0x9C52\t0x5F5D\n0x9C53\t0x5F5C\n0x9C54\t0x5F0B\n0x9C55\t0x5F11\n0x9C56\t0x5F16\n0x9C57\t0x5F29\n0x9C58\t0x5F2D\n0x9C59\t0x5F38\n0x9C5A\t0x5F41\n0x9C5B\t0x5F48\n0x9C5C\t0x5F4C\n0x9C5D\t0x5F4E\n0x9C5E\t0x5F2F\n0x9C5F\t0x5F51\n0x9C60\t0x5F56\n0x9C61\t0x5F57\n0x9C62\t0x5F59\n0x9C63\t0x5F61\n0x9C64\t0x5F6D\n0x9C65\t0x5F73\n0x9C66\t0x5F77\n0x9C67\t0x5F83\n0x9C68\t0x5F82\n0x9C69\t0x5F7F\n0x9C6A\t0x5F8A\n0x9C6B\t0x5F88\n0x9C6C\t0x5F91\n0x9C6D\t0x5F87\n0x9C6E\t0x5F9E\n0x9C6F\t0x5F99\n0x9C70\t0x5F98\n0x9C71\t0x5FA0\n0x9C72\t0x5FA8\n0x9C73\t0x5FAD\n0x9C74\t0x5FBC\n0x9C75\t0x5FD6\n0x9C76\t0x5FFB\n0x9C77\t0x5FE4\n0x9C78\t0x5FF8\n0x9C79\t0x5FF1\n0x9C7A\t0x5FDD\n0x9C7B\t0x60B3\n0x9C7C\t0x5FFF\n0x9C7D\t0x6021\n0x9C7E\t0x6060\n0x9C80\t0x6019\n0x9C81\t0x6010\n0x9C82\t0x6029\n0x9C83\t0x600E\n0x9C84\t0x6031\n0x9C85\t0x601B\n0x9C86\t0x6015\n0x9C87\t0x602B\n0x9C88\t0x6026\n0x9C89\t0x600F\n0x9C8A\t0x603A\n0x9C8B\t0x605A\n0x9C8C\t0x6041\n0x9C8D\t0x606A\n0x9C8E\t0x6077\n0x9C8F\t0x605F\n0x9C90\t0x604A\n0x9C91\t0x6046\n0x9C92\t0x604D\n0x9C93\t0x6063\n0x9C94\t0x6043\n0x9C95\t0x6064\n0x9C96\t0x6042\n0x9C97\t0x606C\n0x9C98\t0x606B\n0x9C99\t0x6059\n0x9C9A\t0x6081\n0x9C9B\t0x608D\n0x9C9C\t0x60E7\n0x9C9D\t0x6083\n0x9C9E\t0x609A\n0x9C9F\t0x6084\n0x9CA0\t0x609B\n0x9CA1\t0x6096\n0x9CA2\t0x6097\n0x9CA3\t0x6092\n0x9CA4\t0x60A7\n0x9CA5\t0x608B\n0x9CA6\t0x60E1\n0x9CA7\t0x60B8\n0x9CA8\t0x60E0\n0x9CA9\t0x60D3\n0x9CAA\t0x60B4\n0x9CAB\t0x5FF0\n0x9CAC\t0x60BD\n0x9CAD\t0x60C6\n0x9CAE\t0x60B5\n0x9CAF\t0x60D8\n0x9CB0\t0x614D\n0x9CB1\t0x6115\n0x9CB2\t0x6106\n0x9CB3\t0x60F6\n0x9CB4\t0x60F7\n0x9CB5\t0x6100\n0x9CB6\t0x60F4\n0x9CB7\t0x60FA\n0x9CB8\t0x6103\n0x9CB9\t0x6121\n0x9CBA\t0x60FB\n0x9CBB\t0x60F1\n0x9CBC\t0x610D\n0x9CBD\t0x610E\n0x9CBE\t0x6147\n0x9CBF\t0x613E\n0x9CC0\t0x6128\n0x9CC1\t0x6127\n0x9CC2\t0x614A\n0x9CC3\t0x613F\n0x9CC4\t0x613C\n0x9CC5\t0x612C\n0x9CC6\t0x6134\n0x9CC7\t0x613D\n0x9CC8\t0x6142\n0x9CC9\t0x6144\n0x9CCA\t0x6173\n0x9CCB\t0x6177\n0x9CCC\t0x6158\n0x9CCD\t0x6159\n0x9CCE\t0x615A\n0x9CCF\t0x616B\n0x9CD0\t0x6174\n0x9CD1\t0x616F\n0x9CD2\t0x6165\n0x9CD3\t0x6171\n0x9CD4\t0x615F\n0x9CD5\t0x615D\n0x9CD6\t0x6153\n0x9CD7\t0x6175\n0x9CD8\t0x6199\n0x9CD9\t0x6196\n0x9CDA\t0x6187\n0x9CDB\t0x61AC\n0x9CDC\t0x6194\n0x9CDD\t0x619A\n0x9CDE\t0x618A\n0x9CDF\t0x6191\n0x9CE0\t0x61AB\n0x9CE1\t0x61AE\n0x9CE2\t0x61CC\n0x9CE3\t0x61CA\n0x9CE4\t0x61C9\n0x9CE5\t0x61F7\n0x9CE6\t0x61C8\n0x9CE7\t0x61C3\n0x9CE8\t0x61C6\n0x9CE9\t0x61BA\n0x9CEA\t0x61CB\n0x9CEB\t0x7F79\n0x9CEC\t0x61CD\n0x9CED\t0x61E6\n0x9CEE\t0x61E3\n0x9CEF\t0x61F6\n0x9CF0\t0x61FA\n0x9CF1\t0x61F4\n0x9CF2\t0x61FF\n0x9CF3\t0x61FD\n0x9CF4\t0x61FC\n0x9CF5\t0x61FE\n0x9CF6\t0x6200\n0x9CF7\t0x6208\n0x9CF8\t0x6209\n0x9CF9\t0x620D\n0x9CFA\t0x620C\n0x9CFB\t0x6214\n0x9CFC\t0x621B\n0x9D40\t0x621E\n0x9D41\t0x6221\n0x9D42\t0x622A\n0x9D43\t0x622E\n0x9D44\t0x6230\n0x9D45\t0x6232\n0x9D46\t0x6233\n0x9D47\t0x6241\n0x9D48\t0x624E\n0x9D49\t0x625E\n0x9D4A\t0x6263\n0x9D4B\t0x625B\n0x9D4C\t0x6260\n0x9D4D\t0x6268\n0x9D4E\t0x627C\n0x9D4F\t0x6282\n0x9D50\t0x6289\n0x9D51\t0x627E\n0x9D52\t0x6292\n0x9D53\t0x6293\n0x9D54\t0x6296\n0x9D55\t0x62D4\n0x9D56\t0x6283\n0x9D57\t0x6294\n0x9D58\t0x62D7\n0x9D59\t0x62D1\n0x9D5A\t0x62BB\n0x9D5B\t0x62CF\n0x9D5C\t0x62FF\n0x9D5D\t0x62C6\n0x9D5E\t0x64D4\n0x9D5F\t0x62C8\n0x9D60\t0x62DC\n0x9D61\t0x62CC\n0x9D62\t0x62CA\n0x9D63\t0x62C2\n0x9D64\t0x62C7\n0x9D65\t0x629B\n0x9D66\t0x62C9\n0x9D67\t0x630C\n0x9D68\t0x62EE\n0x9D69\t0x62F1\n0x9D6A\t0x6327\n0x9D6B\t0x6302\n0x9D6C\t0x6308\n0x9D6D\t0x62EF\n0x9D6E\t0x62F5\n0x9D6F\t0x6350\n0x9D70\t0x633E\n0x9D71\t0x634D\n0x9D72\t0x641C\n0x9D73\t0x634F\n0x9D74\t0x6396\n0x9D75\t0x638E\n0x9D76\t0x6380\n0x9D77\t0x63AB\n0x9D78\t0x6376\n0x9D79\t0x63A3\n0x9D7A\t0x638F\n0x9D7B\t0x6389\n0x9D7C\t0x639F\n0x9D7D\t0x63B5\n0x9D7E\t0x636B\n0x9D80\t0x6369\n0x9D81\t0x63BE\n0x9D82\t0x63E9\n0x9D83\t0x63C0\n0x9D84\t0x63C6\n0x9D85\t0x63E3\n0x9D86\t0x63C9\n0x9D87\t0x63D2\n0x9D88\t0x63F6\n0x9D89\t0x63C4\n0x9D8A\t0x6416\n0x9D8B\t0x6434\n0x9D8C\t0x6406\n0x9D8D\t0x6413\n0x9D8E\t0x6426\n0x9D8F\t0x6436\n0x9D90\t0x651D\n0x9D91\t0x6417\n0x9D92\t0x6428\n0x9D93\t0x640F\n0x9D94\t0x6467\n0x9D95\t0x646F\n0x9D96\t0x6476\n0x9D97\t0x644E\n0x9D98\t0x652A\n0x9D99\t0x6495\n0x9D9A\t0x6493\n0x9D9B\t0x64A5\n0x9D9C\t0x64A9\n0x9D9D\t0x6488\n0x9D9E\t0x64BC\n0x9D9F\t0x64DA\n0x9DA0\t0x64D2\n0x9DA1\t0x64C5\n0x9DA2\t0x64C7\n0x9DA3\t0x64BB\n0x9DA4\t0x64D8\n0x9DA5\t0x64C2\n0x9DA6\t0x64F1\n0x9DA7\t0x64E7\n0x9DA8\t0x8209\n0x9DA9\t0x64E0\n0x9DAA\t0x64E1\n0x9DAB\t0x62AC\n0x9DAC\t0x64E3\n0x9DAD\t0x64EF\n0x9DAE\t0x652C\n0x9DAF\t0x64F6\n0x9DB0\t0x64F4\n0x9DB1\t0x64F2\n0x9DB2\t0x64FA\n0x9DB3\t0x6500\n0x9DB4\t0x64FD\n0x9DB5\t0x6518\n0x9DB6\t0x651C\n0x9DB7\t0x6505\n0x9DB8\t0x6524\n0x9DB9\t0x6523\n0x9DBA\t0x652B\n0x9DBB\t0x6534\n0x9DBC\t0x6535\n0x9DBD\t0x6537\n0x9DBE\t0x6536\n0x9DBF\t0x6538\n0x9DC0\t0x754B\n0x9DC1\t0x6548\n0x9DC2\t0x6556\n0x9DC3\t0x6555\n0x9DC4\t0x654D\n0x9DC5\t0x6558\n0x9DC6\t0x655E\n0x9DC7\t0x655D\n0x9DC8\t0x6572\n0x9DC9\t0x6578\n0x9DCA\t0x6582\n0x9DCB\t0x6583\n0x9DCC\t0x8B8A\n0x9DCD\t0x659B\n0x9DCE\t0x659F\n0x9DCF\t0x65AB\n0x9DD0\t0x65B7\n0x9DD1\t0x65C3\n0x9DD2\t0x65C6\n0x9DD3\t0x65C1\n0x9DD4\t0x65C4\n0x9DD5\t0x65CC\n0x9DD6\t0x65D2\n0x9DD7\t0x65DB\n0x9DD8\t0x65D9\n0x9DD9\t0x65E0\n0x9DDA\t0x65E1\n0x9DDB\t0x65F1\n0x9DDC\t0x6772\n0x9DDD\t0x660A\n0x9DDE\t0x6603\n0x9DDF\t0x65FB\n0x9DE0\t0x6773\n0x9DE1\t0x6635\n0x9DE2\t0x6636\n0x9DE3\t0x6634\n0x9DE4\t0x661C\n0x9DE5\t0x664F\n0x9DE6\t0x6644\n0x9DE7\t0x6649\n0x9DE8\t0x6641\n0x9DE9\t0x665E\n0x9DEA\t0x665D\n0x9DEB\t0x6664\n0x9DEC\t0x6667\n0x9DED\t0x6668\n0x9DEE\t0x665F\n0x9DEF\t0x6662\n0x9DF0\t0x6670\n0x9DF1\t0x6683\n0x9DF2\t0x6688\n0x9DF3\t0x668E\n0x9DF4\t0x6689\n0x9DF5\t0x6684\n0x9DF6\t0x6698\n0x9DF7\t0x669D\n0x9DF8\t0x66C1\n0x9DF9\t0x66B9\n0x9DFA\t0x66C9\n0x9DFB\t0x66BE\n0x9DFC\t0x66BC\n0x9E40\t0x66C4\n0x9E41\t0x66B8\n0x9E42\t0x66D6\n0x9E43\t0x66DA\n0x9E44\t0x66E0\n0x9E45\t0x663F\n0x9E46\t0x66E6\n0x9E47\t0x66E9\n0x9E48\t0x66F0\n0x9E49\t0x66F5\n0x9E4A\t0x66F7\n0x9E4B\t0x670F\n0x9E4C\t0x6716\n0x9E4D\t0x671E\n0x9E4E\t0x6726\n0x9E4F\t0x6727\n0x9E50\t0x9738\n0x9E51\t0x672E\n0x9E52\t0x673F\n0x9E53\t0x6736\n0x9E54\t0x6741\n0x9E55\t0x6738\n0x9E56\t0x6737\n0x9E57\t0x6746\n0x9E58\t0x675E\n0x9E59\t0x6760\n0x9E5A\t0x6759\n0x9E5B\t0x6763\n0x9E5C\t0x6764\n0x9E5D\t0x6789\n0x9E5E\t0x6770\n0x9E5F\t0x67A9\n0x9E60\t0x677C\n0x9E61\t0x676A\n0x9E62\t0x678C\n0x9E63\t0x678B\n0x9E64\t0x67A6\n0x9E65\t0x67A1\n0x9E66\t0x6785\n0x9E67\t0x67B7\n0x9E68\t0x67EF\n0x9E69\t0x67B4\n0x9E6A\t0x67EC\n0x9E6B\t0x67B3\n0x9E6C\t0x67E9\n0x9E6D\t0x67B8\n0x9E6E\t0x67E4\n0x9E6F\t0x67DE\n0x9E70\t0x67DD\n0x9E71\t0x67E2\n0x9E72\t0x67EE\n0x9E73\t0x67B9\n0x9E74\t0x67CE\n0x9E75\t0x67C6\n0x9E76\t0x67E7\n0x9E77\t0x6A9C\n0x9E78\t0x681E\n0x9E79\t0x6846\n0x9E7A\t0x6829\n0x9E7B\t0x6840\n0x9E7C\t0x684D\n0x9E7D\t0x6832\n0x9E7E\t0x684E\n0x9E80\t0x68B3\n0x9E81\t0x682B\n0x9E82\t0x6859\n0x9E83\t0x6863\n0x9E84\t0x6877\n0x9E85\t0x687F\n0x9E86\t0x689F\n0x9E87\t0x688F\n0x9E88\t0x68AD\n0x9E89\t0x6894\n0x9E8A\t0x689D\n0x9E8B\t0x689B\n0x9E8C\t0x6883\n0x9E8D\t0x6AAE\n0x9E8E\t0x68B9\n0x9E8F\t0x6874\n0x9E90\t0x68B5\n0x9E91\t0x68A0\n0x9E92\t0x68BA\n0x9E93\t0x690F\n0x9E94\t0x688D\n0x9E95\t0x687E\n0x9E96\t0x6901\n0x9E97\t0x68CA\n0x9E98\t0x6908\n0x9E99\t0x68D8\n0x9E9A\t0x6922\n0x9E9B\t0x6926\n0x9E9C\t0x68E1\n0x9E9D\t0x690C\n0x9E9E\t0x68CD\n0x9E9F\t0x68D4\n0x9EA0\t0x68E7\n0x9EA1\t0x68D5\n0x9EA2\t0x6936\n0x9EA3\t0x6912\n0x9EA4\t0x6904\n0x9EA5\t0x68D7\n0x9EA6\t0x68E3\n0x9EA7\t0x6925\n0x9EA8\t0x68F9\n0x9EA9\t0x68E0\n0x9EAA\t0x68EF\n0x9EAB\t0x6928\n0x9EAC\t0x692A\n0x9EAD\t0x691A\n0x9EAE\t0x6923\n0x9EAF\t0x6921\n0x9EB0\t0x68C6\n0x9EB1\t0x6979\n0x9EB2\t0x6977\n0x9EB3\t0x695C\n0x9EB4\t0x6978\n0x9EB5\t0x696B\n0x9EB6\t0x6954\n0x9EB7\t0x697E\n0x9EB8\t0x696E\n0x9EB9\t0x6939\n0x9EBA\t0x6974\n0x9EBB\t0x693D\n0x9EBC\t0x6959\n0x9EBD\t0x6930\n0x9EBE\t0x6961\n0x9EBF\t0x695E\n0x9EC0\t0x695D\n0x9EC1\t0x6981\n0x9EC2\t0x696A\n0x9EC3\t0x69B2\n0x9EC4\t0x69AE\n0x9EC5\t0x69D0\n0x9EC6\t0x69BF\n0x9EC7\t0x69C1\n0x9EC8\t0x69D3\n0x9EC9\t0x69BE\n0x9ECA\t0x69CE\n0x9ECB\t0x5BE8\n0x9ECC\t0x69CA\n0x9ECD\t0x69DD\n0x9ECE\t0x69BB\n0x9ECF\t0x69C3\n0x9ED0\t0x69A7\n0x9ED1\t0x6A2E\n0x9ED2\t0x6991\n0x9ED3\t0x69A0\n0x9ED4\t0x699C\n0x9ED5\t0x6995\n0x9ED6\t0x69B4\n0x9ED7\t0x69DE\n0x9ED8\t0x69E8\n0x9ED9\t0x6A02\n0x9EDA\t0x6A1B\n0x9EDB\t0x69FF\n0x9EDC\t0x6B0A\n0x9EDD\t0x69F9\n0x9EDE\t0x69F2\n0x9EDF\t0x69E7\n0x9EE0\t0x6A05\n0x9EE1\t0x69B1\n0x9EE2\t0x6A1E\n0x9EE3\t0x69ED\n0x9EE4\t0x6A14\n0x9EE5\t0x69EB\n0x9EE6\t0x6A0A\n0x9EE7\t0x6A12\n0x9EE8\t0x6AC1\n0x9EE9\t0x6A23\n0x9EEA\t0x6A13\n0x9EEB\t0x6A44\n0x9EEC\t0x6A0C\n0x9EED\t0x6A72\n0x9EEE\t0x6A36\n0x9EEF\t0x6A78\n0x9EF0\t0x6A47\n0x9EF1\t0x6A62\n0x9EF2\t0x6A59\n0x9EF3\t0x6A66\n0x9EF4\t0x6A48\n0x9EF5\t0x6A38\n0x9EF6\t0x6A22\n0x9EF7\t0x6A90\n0x9EF8\t0x6A8D\n0x9EF9\t0x6AA0\n0x9EFA\t0x6A84\n0x9EFB\t0x6AA2\n0x9EFC\t0x6AA3\n0x9F40\t0x6A97\n0x9F41\t0x8617\n0x9F42\t0x6ABB\n0x9F43\t0x6AC3\n0x9F44\t0x6AC2\n0x9F45\t0x6AB8\n0x9F46\t0x6AB3\n0x9F47\t0x6AAC\n0x9F48\t0x6ADE\n0x9F49\t0x6AD1\n0x9F4A\t0x6ADF\n0x9F4B\t0x6AAA\n0x9F4C\t0x6ADA\n0x9F4D\t0x6AEA\n0x9F4E\t0x6AFB\n0x9F4F\t0x6B05\n0x9F50\t0x8616\n0x9F51\t0x6AFA\n0x9F52\t0x6B12\n0x9F53\t0x6B16\n0x9F54\t0x9B31\n0x9F55\t0x6B1F\n0x9F56\t0x6B38\n0x9F57\t0x6B37\n0x9F58\t0x76DC\n0x9F59\t0x6B39\n0x9F5A\t0x98EE\n0x9F5B\t0x6B47\n0x9F5C\t0x6B43\n0x9F5D\t0x6B49\n0x9F5E\t0x6B50\n0x9F5F\t0x6B59\n0x9F60\t0x6B54\n0x9F61\t0x6B5B\n0x9F62\t0x6B5F\n0x9F63\t0x6B61\n0x9F64\t0x6B78\n0x9F65\t0x6B79\n0x9F66\t0x6B7F\n0x9F67\t0x6B80\n0x9F68\t0x6B84\n0x9F69\t0x6B83\n0x9F6A\t0x6B8D\n0x9F6B\t0x6B98\n0x9F6C\t0x6B95\n0x9F6D\t0x6B9E\n0x9F6E\t0x6BA4\n0x9F6F\t0x6BAA\n0x9F70\t0x6BAB\n0x9F71\t0x6BAF\n0x9F72\t0x6BB2\n0x9F73\t0x6BB1\n0x9F74\t0x6BB3\n0x9F75\t0x6BB7\n0x9F76\t0x6BBC\n0x9F77\t0x6BC6\n0x9F78\t0x6BCB\n0x9F79\t0x6BD3\n0x9F7A\t0x6BDF\n0x9F7B\t0x6BEC\n0x9F7C\t0x6BEB\n0x9F7D\t0x6BF3\n0x9F7E\t0x6BEF\n0x9F80\t0x9EBE\n0x9F81\t0x6C08\n0x9F82\t0x6C13\n0x9F83\t0x6C14\n0x9F84\t0x6C1B\n0x9F85\t0x6C24\n0x9F86\t0x6C23\n0x9F87\t0x6C5E\n0x9F88\t0x6C55\n0x9F89\t0x6C62\n0x9F8A\t0x6C6A\n0x9F8B\t0x6C82\n0x9F8C\t0x6C8D\n0x9F8D\t0x6C9A\n0x9F8E\t0x6C81\n0x9F8F\t0x6C9B\n0x9F90\t0x6C7E\n0x9F91\t0x6C68\n0x9F92\t0x6C73\n0x9F93\t0x6C92\n0x9F94\t0x6C90\n0x9F95\t0x6CC4\n0x9F96\t0x6CF1\n0x9F97\t0x6CD3\n0x9F98\t0x6CBD\n0x9F99\t0x6CD7\n0x9F9A\t0x6CC5\n0x9F9B\t0x6CDD\n0x9F9C\t0x6CAE\n0x9F9D\t0x6CB1\n0x9F9E\t0x6CBE\n0x9F9F\t0x6CBA\n0x9FA0\t0x6CDB\n0x9FA1\t0x6CEF\n0x9FA2\t0x6CD9\n0x9FA3\t0x6CEA\n0x9FA4\t0x6D1F\n0x9FA5\t0x884D\n0x9FA6\t0x6D36\n0x9FA7\t0x6D2B\n0x9FA8\t0x6D3D\n0x9FA9\t0x6D38\n0x9FAA\t0x6D19\n0x9FAB\t0x6D35\n0x9FAC\t0x6D33\n0x9FAD\t0x6D12\n0x9FAE\t0x6D0C\n0x9FAF\t0x6D63\n0x9FB0\t0x6D93\n0x9FB1\t0x6D64\n0x9FB2\t0x6D5A\n0x9FB3\t0x6D79\n0x9FB4\t0x6D59\n0x9FB5\t0x6D8E\n0x9FB6\t0x6D95\n0x9FB7\t0x6FE4\n0x9FB8\t0x6D85\n0x9FB9\t0x6DF9\n0x9FBA\t0x6E15\n0x9FBB\t0x6E0A\n0x9FBC\t0x6DB5\n0x9FBD\t0x6DC7\n0x9FBE\t0x6DE6\n0x9FBF\t0x6DB8\n0x9FC0\t0x6DC6\n0x9FC1\t0x6DEC\n0x9FC2\t0x6DDE\n0x9FC3\t0x6DCC\n0x9FC4\t0x6DE8\n0x9FC5\t0x6DD2\n0x9FC6\t0x6DC5\n0x9FC7\t0x6DFA\n0x9FC8\t0x6DD9\n0x9FC9\t0x6DE4\n0x9FCA\t0x6DD5\n0x9FCB\t0x6DEA\n0x9FCC\t0x6DEE\n0x9FCD\t0x6E2D\n0x9FCE\t0x6E6E\n0x9FCF\t0x6E2E\n0x9FD0\t0x6E19\n0x9FD1\t0x6E72\n0x9FD2\t0x6E5F\n0x9FD3\t0x6E3E\n0x9FD4\t0x6E23\n0x9FD5\t0x6E6B\n0x9FD6\t0x6E2B\n0x9FD7\t0x6E76\n0x9FD8\t0x6E4D\n0x9FD9\t0x6E1F\n0x9FDA\t0x6E43\n0x9FDB\t0x6E3A\n0x9FDC\t0x6E4E\n0x9FDD\t0x6E24\n0x9FDE\t0x6EFF\n0x9FDF\t0x6E1D\n0x9FE0\t0x6E38\n0x9FE1\t0x6E82\n0x9FE2\t0x6EAA\n0x9FE3\t0x6E98\n0x9FE4\t0x6EC9\n0x9FE5\t0x6EB7\n0x9FE6\t0x6ED3\n0x9FE7\t0x6EBD\n0x9FE8\t0x6EAF\n0x9FE9\t0x6EC4\n0x9FEA\t0x6EB2\n0x9FEB\t0x6ED4\n0x9FEC\t0x6ED5\n0x9FED\t0x6E8F\n0x9FEE\t0x6EA5\n0x9FEF\t0x6EC2\n0x9FF0\t0x6E9F\n0x9FF1\t0x6F41\n0x9FF2\t0x6F11\n0x9FF3\t0x704C\n0x9FF4\t0x6EEC\n0x9FF5\t0x6EF8\n0x9FF6\t0x6EFE\n0x9FF7\t0x6F3F\n0x9FF8\t0x6EF2\n0x9FF9\t0x6F31\n0x9FFA\t0x6EEF\n0x9FFB\t0x6F32\n0x9FFC\t0x6ECC\n0xA1\t0xFF61\n0xA2\t0xFF62\n0xA3\t0xFF63\n0xA4\t0xFF64\n0xA5\t0xFF65\n0xA6\t0xFF66\n0xA7\t0xFF67\n0xA8\t0xFF68\n0xA9\t0xFF69\n0xAA\t0xFF6A\n0xAB\t0xFF6B\n0xAC\t0xFF6C\n0xAD\t0xFF6D\n0xAE\t0xFF6E\n0xAF\t0xFF6F\n0xB0\t0xFF70\n0xB1\t0xFF71\n0xB2\t0xFF72\n0xB3\t0xFF73\n0xB4\t0xFF74\n0xB5\t0xFF75\n0xB6\t0xFF76\n0xB7\t0xFF77\n0xB8\t0xFF78\n0xB9\t0xFF79\n0xBA\t0xFF7A\n0xBB\t0xFF7B\n0xBC\t0xFF7C\n0xBD\t0xFF7D\n0xBE\t0xFF7E\n0xBF\t0xFF7F\n0xC0\t0xFF80\n0xC1\t0xFF81\n0xC2\t0xFF82\n0xC3\t0xFF83\n0xC4\t0xFF84\n0xC5\t0xFF85\n0xC6\t0xFF86\n0xC7\t0xFF87\n0xC8\t0xFF88\n0xC9\t0xFF89\n0xCA\t0xFF8A\n0xCB\t0xFF8B\n0xCC\t0xFF8C\n0xCD\t0xFF8D\n0xCE\t0xFF8E\n0xCF\t0xFF8F\n0xD0\t0xFF90\n0xD1\t0xFF91\n0xD2\t0xFF92\n0xD3\t0xFF93\n0xD4\t0xFF94\n0xD5\t0xFF95\n0xD6\t0xFF96\n0xD7\t0xFF97\n0xD8\t0xFF98\n0xD9\t0xFF99\n0xDA\t0xFF9A\n0xDB\t0xFF9B\n0xDC\t0xFF9C\n0xDD\t0xFF9D\n0xDE\t0xFF9E\n0xDF\t0xFF9F\n0xE040\t0x6F3E\n0xE041\t0x6F13\n0xE042\t0x6EF7\n0xE043\t0x6F86\n0xE044\t0x6F7A\n0xE045\t0x6F78\n0xE046\t0x6F81\n0xE047\t0x6F80\n0xE048\t0x6F6F\n0xE049\t0x6F5B\n0xE04A\t0x6FF3\n0xE04B\t0x6F6D\n0xE04C\t0x6F82\n0xE04D\t0x6F7C\n0xE04E\t0x6F58\n0xE04F\t0x6F8E\n0xE050\t0x6F91\n0xE051\t0x6FC2\n0xE052\t0x6F66\n0xE053\t0x6FB3\n0xE054\t0x6FA3\n0xE055\t0x6FA1\n0xE056\t0x6FA4\n0xE057\t0x6FB9\n0xE058\t0x6FC6\n0xE059\t0x6FAA\n0xE05A\t0x6FDF\n0xE05B\t0x6FD5\n0xE05C\t0x6FEC\n0xE05D\t0x6FD4\n0xE05E\t0x6FD8\n0xE05F\t0x6FF1\n0xE060\t0x6FEE\n0xE061\t0x6FDB\n0xE062\t0x7009\n0xE063\t0x700B\n0xE064\t0x6FFA\n0xE065\t0x7011\n0xE066\t0x7001\n0xE067\t0x700F\n0xE068\t0x6FFE\n0xE069\t0x701B\n0xE06A\t0x701A\n0xE06B\t0x6F74\n0xE06C\t0x701D\n0xE06D\t0x7018\n0xE06E\t0x701F\n0xE06F\t0x7030\n0xE070\t0x703E\n0xE071\t0x7032\n0xE072\t0x7051\n0xE073\t0x7063\n0xE074\t0x7099\n0xE075\t0x7092\n0xE076\t0x70AF\n0xE077\t0x70F1\n0xE078\t0x70AC\n0xE079\t0x70B8\n0xE07A\t0x70B3\n0xE07B\t0x70AE\n0xE07C\t0x70DF\n0xE07D\t0x70CB\n0xE07E\t0x70DD\n0xE080\t0x70D9\n0xE081\t0x7109\n0xE082\t0x70FD\n0xE083\t0x711C\n0xE084\t0x7119\n0xE085\t0x7165\n0xE086\t0x7155\n0xE087\t0x7188\n0xE088\t0x7166\n0xE089\t0x7162\n0xE08A\t0x714C\n0xE08B\t0x7156\n0xE08C\t0x716C\n0xE08D\t0x718F\n0xE08E\t0x71FB\n0xE08F\t0x7184\n0xE090\t0x7195\n0xE091\t0x71A8\n0xE092\t0x71AC\n0xE093\t0x71D7\n0xE094\t0x71B9\n0xE095\t0x71BE\n0xE096\t0x71D2\n0xE097\t0x71C9\n0xE098\t0x71D4\n0xE099\t0x71CE\n0xE09A\t0x71E0\n0xE09B\t0x71EC\n0xE09C\t0x71E7\n0xE09D\t0x71F5\n0xE09E\t0x71FC\n0xE09F\t0x71F9\n0xE0A0\t0x71FF\n0xE0A1\t0x720D\n0xE0A2\t0x7210\n0xE0A3\t0x721B\n0xE0A4\t0x7228\n0xE0A5\t0x722D\n0xE0A6\t0x722C\n0xE0A7\t0x7230\n0xE0A8\t0x7232\n0xE0A9\t0x723B\n0xE0AA\t0x723C\n0xE0AB\t0x723F\n0xE0AC\t0x7240\n0xE0AD\t0x7246\n0xE0AE\t0x724B\n0xE0AF\t0x7258\n0xE0B0\t0x7274\n0xE0B1\t0x727E\n0xE0B2\t0x7282\n0xE0B3\t0x7281\n0xE0B4\t0x7287\n0xE0B5\t0x7292\n0xE0B6\t0x7296\n0xE0B7\t0x72A2\n0xE0B8\t0x72A7\n0xE0B9\t0x72B9\n0xE0BA\t0x72B2\n0xE0BB\t0x72C3\n0xE0BC\t0x72C6\n0xE0BD\t0x72C4\n0xE0BE\t0x72CE\n0xE0BF\t0x72D2\n0xE0C0\t0x72E2\n0xE0C1\t0x72E0\n0xE0C2\t0x72E1\n0xE0C3\t0x72F9\n0xE0C4\t0x72F7\n0xE0C5\t0x500F\n0xE0C6\t0x7317\n0xE0C7\t0x730A\n0xE0C8\t0x731C\n0xE0C9\t0x7316\n0xE0CA\t0x731D\n0xE0CB\t0x7334\n0xE0CC\t0x732F\n0xE0CD\t0x7329\n0xE0CE\t0x7325\n0xE0CF\t0x733E\n0xE0D0\t0x734E\n0xE0D1\t0x734F\n0xE0D2\t0x9ED8\n0xE0D3\t0x7357\n0xE0D4\t0x736A\n0xE0D5\t0x7368\n0xE0D6\t0x7370\n0xE0D7\t0x7378\n0xE0D8\t0x7375\n0xE0D9\t0x737B\n0xE0DA\t0x737A\n0xE0DB\t0x73C8\n0xE0DC\t0x73B3\n0xE0DD\t0x73CE\n0xE0DE\t0x73BB\n0xE0DF\t0x73C0\n0xE0E0\t0x73E5\n0xE0E1\t0x73EE\n0xE0E2\t0x73DE\n0xE0E3\t0x74A2\n0xE0E4\t0x7405\n0xE0E5\t0x746F\n0xE0E6\t0x7425\n0xE0E7\t0x73F8\n0xE0E8\t0x7432\n0xE0E9\t0x743A\n0xE0EA\t0x7455\n0xE0EB\t0x743F\n0xE0EC\t0x745F\n0xE0ED\t0x7459\n0xE0EE\t0x7441\n0xE0EF\t0x745C\n0xE0F0\t0x7469\n0xE0F1\t0x7470\n0xE0F2\t0x7463\n0xE0F3\t0x746A\n0xE0F4\t0x7476\n0xE0F5\t0x747E\n0xE0F6\t0x748B\n0xE0F7\t0x749E\n0xE0F8\t0x74A7\n0xE0F9\t0x74CA\n0xE0FA\t0x74CF\n0xE0FB\t0x74D4\n0xE0FC\t0x73F1\n0xE140\t0x74E0\n0xE141\t0x74E3\n0xE142\t0x74E7\n0xE143\t0x74E9\n0xE144\t0x74EE\n0xE145\t0x74F2\n0xE146\t0x74F0\n0xE147\t0x74F1\n0xE148\t0x74F8\n0xE149\t0x74F7\n0xE14A\t0x7504\n0xE14B\t0x7503\n0xE14C\t0x7505\n0xE14D\t0x750C\n0xE14E\t0x750E\n0xE14F\t0x750D\n0xE150\t0x7515\n0xE151\t0x7513\n0xE152\t0x751E\n0xE153\t0x7526\n0xE154\t0x752C\n0xE155\t0x753C\n0xE156\t0x7544\n0xE157\t0x754D\n0xE158\t0x754A\n0xE159\t0x7549\n0xE15A\t0x755B\n0xE15B\t0x7546\n0xE15C\t0x755A\n0xE15D\t0x7569\n0xE15E\t0x7564\n0xE15F\t0x7567\n0xE160\t0x756B\n0xE161\t0x756D\n0xE162\t0x7578\n0xE163\t0x7576\n0xE164\t0x7586\n0xE165\t0x7587\n0xE166\t0x7574\n0xE167\t0x758A\n0xE168\t0x7589\n0xE169\t0x7582\n0xE16A\t0x7594\n0xE16B\t0x759A\n0xE16C\t0x759D\n0xE16D\t0x75A5\n0xE16E\t0x75A3\n0xE16F\t0x75C2\n0xE170\t0x75B3\n0xE171\t0x75C3\n0xE172\t0x75B5\n0xE173\t0x75BD\n0xE174\t0x75B8\n0xE175\t0x75BC\n0xE176\t0x75B1\n0xE177\t0x75CD\n0xE178\t0x75CA\n0xE179\t0x75D2\n0xE17A\t0x75D9\n0xE17B\t0x75E3\n0xE17C\t0x75DE\n0xE17D\t0x75FE\n0xE17E\t0x75FF\n0xE180\t0x75FC\n0xE181\t0x7601\n0xE182\t0x75F0\n0xE183\t0x75FA\n0xE184\t0x75F2\n0xE185\t0x75F3\n0xE186\t0x760B\n0xE187\t0x760D\n0xE188\t0x7609\n0xE189\t0x761F\n0xE18A\t0x7627\n0xE18B\t0x7620\n0xE18C\t0x7621\n0xE18D\t0x7622\n0xE18E\t0x7624\n0xE18F\t0x7634\n0xE190\t0x7630\n0xE191\t0x763B\n0xE192\t0x7647\n0xE193\t0x7648\n0xE194\t0x7646\n0xE195\t0x765C\n0xE196\t0x7658\n0xE197\t0x7661\n0xE198\t0x7662\n0xE199\t0x7668\n0xE19A\t0x7669\n0xE19B\t0x766A\n0xE19C\t0x7667\n0xE19D\t0x766C\n0xE19E\t0x7670\n0xE19F\t0x7672\n0xE1A0\t0x7676\n0xE1A1\t0x7678\n0xE1A2\t0x767C\n0xE1A3\t0x7680\n0xE1A4\t0x7683\n0xE1A5\t0x7688\n0xE1A6\t0x768B\n0xE1A7\t0x768E\n0xE1A8\t0x7696\n0xE1A9\t0x7693\n0xE1AA\t0x7699\n0xE1AB\t0x769A\n0xE1AC\t0x76B0\n0xE1AD\t0x76B4\n0xE1AE\t0x76B8\n0xE1AF\t0x76B9\n0xE1B0\t0x76BA\n0xE1B1\t0x76C2\n0xE1B2\t0x76CD\n0xE1B3\t0x76D6\n0xE1B4\t0x76D2\n0xE1B5\t0x76DE\n0xE1B6\t0x76E1\n0xE1B7\t0x76E5\n0xE1B8\t0x76E7\n0xE1B9\t0x76EA\n0xE1BA\t0x862F\n0xE1BB\t0x76FB\n0xE1BC\t0x7708\n0xE1BD\t0x7707\n0xE1BE\t0x7704\n0xE1BF\t0x7729\n0xE1C0\t0x7724\n0xE1C1\t0x771E\n0xE1C2\t0x7725\n0xE1C3\t0x7726\n0xE1C4\t0x771B\n0xE1C5\t0x7737\n0xE1C6\t0x7738\n0xE1C7\t0x7747\n0xE1C8\t0x775A\n0xE1C9\t0x7768\n0xE1CA\t0x776B\n0xE1CB\t0x775B\n0xE1CC\t0x7765\n0xE1CD\t0x777F\n0xE1CE\t0x777E\n0xE1CF\t0x7779\n0xE1D0\t0x778E\n0xE1D1\t0x778B\n0xE1D2\t0x7791\n0xE1D3\t0x77A0\n0xE1D4\t0x779E\n0xE1D5\t0x77B0\n0xE1D6\t0x77B6\n0xE1D7\t0x77B9\n0xE1D8\t0x77BF\n0xE1D9\t0x77BC\n0xE1DA\t0x77BD\n0xE1DB\t0x77BB\n0xE1DC\t0x77C7\n0xE1DD\t0x77CD\n0xE1DE\t0x77D7\n0xE1DF\t0x77DA\n0xE1E0\t0x77DC\n0xE1E1\t0x77E3\n0xE1E2\t0x77EE\n0xE1E3\t0x77FC\n0xE1E4\t0x780C\n0xE1E5\t0x7812\n0xE1E6\t0x7926\n0xE1E7\t0x7820\n0xE1E8\t0x792A\n0xE1E9\t0x7845\n0xE1EA\t0x788E\n0xE1EB\t0x7874\n0xE1EC\t0x7886\n0xE1ED\t0x787C\n0xE1EE\t0x789A\n0xE1EF\t0x788C\n0xE1F0\t0x78A3\n0xE1F1\t0x78B5\n0xE1F2\t0x78AA\n0xE1F3\t0x78AF\n0xE1F4\t0x78D1\n0xE1F5\t0x78C6\n0xE1F6\t0x78CB\n0xE1F7\t0x78D4\n0xE1F8\t0x78BE\n0xE1F9\t0x78BC\n0xE1FA\t0x78C5\n0xE1FB\t0x78CA\n0xE1FC\t0x78EC\n0xE240\t0x78E7\n0xE241\t0x78DA\n0xE242\t0x78FD\n0xE243\t0x78F4\n0xE244\t0x7907\n0xE245\t0x7912\n0xE246\t0x7911\n0xE247\t0x7919\n0xE248\t0x792C\n0xE249\t0x792B\n0xE24A\t0x7940\n0xE24B\t0x7960\n0xE24C\t0x7957\n0xE24D\t0x795F\n0xE24E\t0x795A\n0xE24F\t0x7955\n0xE250\t0x7953\n0xE251\t0x797A\n0xE252\t0x797F\n0xE253\t0x798A\n0xE254\t0x799D\n0xE255\t0x79A7\n0xE256\t0x9F4B\n0xE257\t0x79AA\n0xE258\t0x79AE\n0xE259\t0x79B3\n0xE25A\t0x79B9\n0xE25B\t0x79BA\n0xE25C\t0x79C9\n0xE25D\t0x79D5\n0xE25E\t0x79E7\n0xE25F\t0x79EC\n0xE260\t0x79E1\n0xE261\t0x79E3\n0xE262\t0x7A08\n0xE263\t0x7A0D\n0xE264\t0x7A18\n0xE265\t0x7A19\n0xE266\t0x7A20\n0xE267\t0x7A1F\n0xE268\t0x7980\n0xE269\t0x7A31\n0xE26A\t0x7A3B\n0xE26B\t0x7A3E\n0xE26C\t0x7A37\n0xE26D\t0x7A43\n0xE26E\t0x7A57\n0xE26F\t0x7A49\n0xE270\t0x7A61\n0xE271\t0x7A62\n0xE272\t0x7A69\n0xE273\t0x9F9D\n0xE274\t0x7A70\n0xE275\t0x7A79\n0xE276\t0x7A7D\n0xE277\t0x7A88\n0xE278\t0x7A97\n0xE279\t0x7A95\n0xE27A\t0x7A98\n0xE27B\t0x7A96\n0xE27C\t0x7AA9\n0xE27D\t0x7AC8\n0xE27E\t0x7AB0\n0xE280\t0x7AB6\n0xE281\t0x7AC5\n0xE282\t0x7AC4\n0xE283\t0x7ABF\n0xE284\t0x9083\n0xE285\t0x7AC7\n0xE286\t0x7ACA\n0xE287\t0x7ACD\n0xE288\t0x7ACF\n0xE289\t0x7AD5\n0xE28A\t0x7AD3\n0xE28B\t0x7AD9\n0xE28C\t0x7ADA\n0xE28D\t0x7ADD\n0xE28E\t0x7AE1\n0xE28F\t0x7AE2\n0xE290\t0x7AE6\n0xE291\t0x7AED\n0xE292\t0x7AF0\n0xE293\t0x7B02\n0xE294\t0x7B0F\n0xE295\t0x7B0A\n0xE296\t0x7B06\n0xE297\t0x7B33\n0xE298\t0x7B18\n0xE299\t0x7B19\n0xE29A\t0x7B1E\n0xE29B\t0x7B35\n0xE29C\t0x7B28\n0xE29D\t0x7B36\n0xE29E\t0x7B50\n0xE29F\t0x7B7A\n0xE2A0\t0x7B04\n0xE2A1\t0x7B4D\n0xE2A2\t0x7B0B\n0xE2A3\t0x7B4C\n0xE2A4\t0x7B45\n0xE2A5\t0x7B75\n0xE2A6\t0x7B65\n0xE2A7\t0x7B74\n0xE2A8\t0x7B67\n0xE2A9\t0x7B70\n0xE2AA\t0x7B71\n0xE2AB\t0x7B6C\n0xE2AC\t0x7B6E\n0xE2AD\t0x7B9D\n0xE2AE\t0x7B98\n0xE2AF\t0x7B9F\n0xE2B0\t0x7B8D\n0xE2B1\t0x7B9C\n0xE2B2\t0x7B9A\n0xE2B3\t0x7B8B\n0xE2B4\t0x7B92\n0xE2B5\t0x7B8F\n0xE2B6\t0x7B5D\n0xE2B7\t0x7B99\n0xE2B8\t0x7BCB\n0xE2B9\t0x7BC1\n0xE2BA\t0x7BCC\n0xE2BB\t0x7BCF\n0xE2BC\t0x7BB4\n0xE2BD\t0x7BC6\n0xE2BE\t0x7BDD\n0xE2BF\t0x7BE9\n0xE2C0\t0x7C11\n0xE2C1\t0x7C14\n0xE2C2\t0x7BE6\n0xE2C3\t0x7BE5\n0xE2C4\t0x7C60\n0xE2C5\t0x7C00\n0xE2C6\t0x7C07\n0xE2C7\t0x7C13\n0xE2C8\t0x7BF3\n0xE2C9\t0x7BF7\n0xE2CA\t0x7C17\n0xE2CB\t0x7C0D\n0xE2CC\t0x7BF6\n0xE2CD\t0x7C23\n0xE2CE\t0x7C27\n0xE2CF\t0x7C2A\n0xE2D0\t0x7C1F\n0xE2D1\t0x7C37\n0xE2D2\t0x7C2B\n0xE2D3\t0x7C3D\n0xE2D4\t0x7C4C\n0xE2D5\t0x7C43\n0xE2D6\t0x7C54\n0xE2D7\t0x7C4F\n0xE2D8\t0x7C40\n0xE2D9\t0x7C50\n0xE2DA\t0x7C58\n0xE2DB\t0x7C5F\n0xE2DC\t0x7C64\n0xE2DD\t0x7C56\n0xE2DE\t0x7C65\n0xE2DF\t0x7C6C\n0xE2E0\t0x7C75\n0xE2E1\t0x7C83\n0xE2E2\t0x7C90\n0xE2E3\t0x7CA4\n0xE2E4\t0x7CAD\n0xE2E5\t0x7CA2\n0xE2E6\t0x7CAB\n0xE2E7\t0x7CA1\n0xE2E8\t0x7CA8\n0xE2E9\t0x7CB3\n0xE2EA\t0x7CB2\n0xE2EB\t0x7CB1\n0xE2EC\t0x7CAE\n0xE2ED\t0x7CB9\n0xE2EE\t0x7CBD\n0xE2EF\t0x7CC0\n0xE2F0\t0x7CC5\n0xE2F1\t0x7CC2\n0xE2F2\t0x7CD8\n0xE2F3\t0x7CD2\n0xE2F4\t0x7CDC\n0xE2F5\t0x7CE2\n0xE2F6\t0x9B3B\n0xE2F7\t0x7CEF\n0xE2F8\t0x7CF2\n0xE2F9\t0x7CF4\n0xE2FA\t0x7CF6\n0xE2FB\t0x7CFA\n0xE2FC\t0x7D06\n0xE340\t0x7D02\n0xE341\t0x7D1C\n0xE342\t0x7D15\n0xE343\t0x7D0A\n0xE344\t0x7D45\n0xE345\t0x7D4B\n0xE346\t0x7D2E\n0xE347\t0x7D32\n0xE348\t0x7D3F\n0xE349\t0x7D35\n0xE34A\t0x7D46\n0xE34B\t0x7D73\n0xE34C\t0x7D56\n0xE34D\t0x7D4E\n0xE34E\t0x7D72\n0xE34F\t0x7D68\n0xE350\t0x7D6E\n0xE351\t0x7D4F\n0xE352\t0x7D63\n0xE353\t0x7D93\n0xE354\t0x7D89\n0xE355\t0x7D5B\n0xE356\t0x7D8F\n0xE357\t0x7D7D\n0xE358\t0x7D9B\n0xE359\t0x7DBA\n0xE35A\t0x7DAE\n0xE35B\t0x7DA3\n0xE35C\t0x7DB5\n0xE35D\t0x7DC7\n0xE35E\t0x7DBD\n0xE35F\t0x7DAB\n0xE360\t0x7E3D\n0xE361\t0x7DA2\n0xE362\t0x7DAF\n0xE363\t0x7DDC\n0xE364\t0x7DB8\n0xE365\t0x7D9F\n0xE366\t0x7DB0\n0xE367\t0x7DD8\n0xE368\t0x7DDD\n0xE369\t0x7DE4\n0xE36A\t0x7DDE\n0xE36B\t0x7DFB\n0xE36C\t0x7DF2\n0xE36D\t0x7DE1\n0xE36E\t0x7E05\n0xE36F\t0x7E0A\n0xE370\t0x7E23\n0xE371\t0x7E21\n0xE372\t0x7E12\n0xE373\t0x7E31\n0xE374\t0x7E1F\n0xE375\t0x7E09\n0xE376\t0x7E0B\n0xE377\t0x7E22\n0xE378\t0x7E46\n0xE379\t0x7E66\n0xE37A\t0x7E3B\n0xE37B\t0x7E35\n0xE37C\t0x7E39\n0xE37D\t0x7E43\n0xE37E\t0x7E37\n0xE380\t0x7E32\n0xE381\t0x7E3A\n0xE382\t0x7E67\n0xE383\t0x7E5D\n0xE384\t0x7E56\n0xE385\t0x7E5E\n0xE386\t0x7E59\n0xE387\t0x7E5A\n0xE388\t0x7E79\n0xE389\t0x7E6A\n0xE38A\t0x7E69\n0xE38B\t0x7E7C\n0xE38C\t0x7E7B\n0xE38D\t0x7E83\n0xE38E\t0x7DD5\n0xE38F\t0x7E7D\n0xE390\t0x8FAE\n0xE391\t0x7E7F\n0xE392\t0x7E88\n0xE393\t0x7E89\n0xE394\t0x7E8C\n0xE395\t0x7E92\n0xE396\t0x7E90\n0xE397\t0x7E93\n0xE398\t0x7E94\n0xE399\t0x7E96\n0xE39A\t0x7E8E\n0xE39B\t0x7E9B\n0xE39C\t0x7E9C\n0xE39D\t0x7F38\n0xE39E\t0x7F3A\n0xE39F\t0x7F45\n0xE3A0\t0x7F4C\n0xE3A1\t0x7F4D\n0xE3A2\t0x7F4E\n0xE3A3\t0x7F50\n0xE3A4\t0x7F51\n0xE3A5\t0x7F55\n0xE3A6\t0x7F54\n0xE3A7\t0x7F58\n0xE3A8\t0x7F5F\n0xE3A9\t0x7F60\n0xE3AA\t0x7F68\n0xE3AB\t0x7F69\n0xE3AC\t0x7F67\n0xE3AD\t0x7F78\n0xE3AE\t0x7F82\n0xE3AF\t0x7F86\n0xE3B0\t0x7F83\n0xE3B1\t0x7F88\n0xE3B2\t0x7F87\n0xE3B3\t0x7F8C\n0xE3B4\t0x7F94\n0xE3B5\t0x7F9E\n0xE3B6\t0x7F9D\n0xE3B7\t0x7F9A\n0xE3B8\t0x7FA3\n0xE3B9\t0x7FAF\n0xE3BA\t0x7FB2\n0xE3BB\t0x7FB9\n0xE3BC\t0x7FAE\n0xE3BD\t0x7FB6\n0xE3BE\t0x7FB8\n0xE3BF\t0x8B71\n0xE3C0\t0x7FC5\n0xE3C1\t0x7FC6\n0xE3C2\t0x7FCA\n0xE3C3\t0x7FD5\n0xE3C4\t0x7FD4\n0xE3C5\t0x7FE1\n0xE3C6\t0x7FE6\n0xE3C7\t0x7FE9\n0xE3C8\t0x7FF3\n0xE3C9\t0x7FF9\n0xE3CA\t0x98DC\n0xE3CB\t0x8006\n0xE3CC\t0x8004\n0xE3CD\t0x800B\n0xE3CE\t0x8012\n0xE3CF\t0x8018\n0xE3D0\t0x8019\n0xE3D1\t0x801C\n0xE3D2\t0x8021\n0xE3D3\t0x8028\n0xE3D4\t0x803F\n0xE3D5\t0x803B\n0xE3D6\t0x804A\n0xE3D7\t0x8046\n0xE3D8\t0x8052\n0xE3D9\t0x8058\n0xE3DA\t0x805A\n0xE3DB\t0x805F\n0xE3DC\t0x8062\n0xE3DD\t0x8068\n0xE3DE\t0x8073\n0xE3DF\t0x8072\n0xE3E0\t0x8070\n0xE3E1\t0x8076\n0xE3E2\t0x8079\n0xE3E3\t0x807D\n0xE3E4\t0x807F\n0xE3E5\t0x8084\n0xE3E6\t0x8086\n0xE3E7\t0x8085\n0xE3E8\t0x809B\n0xE3E9\t0x8093\n0xE3EA\t0x809A\n0xE3EB\t0x80AD\n0xE3EC\t0x5190\n0xE3ED\t0x80AC\n0xE3EE\t0x80DB\n0xE3EF\t0x80E5\n0xE3F0\t0x80D9\n0xE3F1\t0x80DD\n0xE3F2\t0x80C4\n0xE3F3\t0x80DA\n0xE3F4\t0x80D6\n0xE3F5\t0x8109\n0xE3F6\t0x80EF\n0xE3F7\t0x80F1\n0xE3F8\t0x811B\n0xE3F9\t0x8129\n0xE3FA\t0x8123\n0xE3FB\t0x812F\n0xE3FC\t0x814B\n0xE440\t0x968B\n0xE441\t0x8146\n0xE442\t0x813E\n0xE443\t0x8153\n0xE444\t0x8151\n0xE445\t0x80FC\n0xE446\t0x8171\n0xE447\t0x816E\n0xE448\t0x8165\n0xE449\t0x8166\n0xE44A\t0x8174\n0xE44B\t0x8183\n0xE44C\t0x8188\n0xE44D\t0x818A\n0xE44E\t0x8180\n0xE44F\t0x8182\n0xE450\t0x81A0\n0xE451\t0x8195\n0xE452\t0x81A4\n0xE453\t0x81A3\n0xE454\t0x815F\n0xE455\t0x8193\n0xE456\t0x81A9\n0xE457\t0x81B0\n0xE458\t0x81B5\n0xE459\t0x81BE\n0xE45A\t0x81B8\n0xE45B\t0x81BD\n0xE45C\t0x81C0\n0xE45D\t0x81C2\n0xE45E\t0x81BA\n0xE45F\t0x81C9\n0xE460\t0x81CD\n0xE461\t0x81D1\n0xE462\t0x81D9\n0xE463\t0x81D8\n0xE464\t0x81C8\n0xE465\t0x81DA\n0xE466\t0x81DF\n0xE467\t0x81E0\n0xE468\t0x81E7\n0xE469\t0x81FA\n0xE46A\t0x81FB\n0xE46B\t0x81FE\n0xE46C\t0x8201\n0xE46D\t0x8202\n0xE46E\t0x8205\n0xE46F\t0x8207\n0xE470\t0x820A\n0xE471\t0x820D\n0xE472\t0x8210\n0xE473\t0x8216\n0xE474\t0x8229\n0xE475\t0x822B\n0xE476\t0x8238\n0xE477\t0x8233\n0xE478\t0x8240\n0xE479\t0x8259\n0xE47A\t0x8258\n0xE47B\t0x825D\n0xE47C\t0x825A\n0xE47D\t0x825F\n0xE47E\t0x8264\n0xE480\t0x8262\n0xE481\t0x8268\n0xE482\t0x826A\n0xE483\t0x826B\n0xE484\t0x822E\n0xE485\t0x8271\n0xE486\t0x8277\n0xE487\t0x8278\n0xE488\t0x827E\n0xE489\t0x828D\n0xE48A\t0x8292\n0xE48B\t0x82AB\n0xE48C\t0x829F\n0xE48D\t0x82BB\n0xE48E\t0x82AC\n0xE48F\t0x82E1\n0xE490\t0x82E3\n0xE491\t0x82DF\n0xE492\t0x82D2\n0xE493\t0x82F4\n0xE494\t0x82F3\n0xE495\t0x82FA\n0xE496\t0x8393\n0xE497\t0x8303\n0xE498\t0x82FB\n0xE499\t0x82F9\n0xE49A\t0x82DE\n0xE49B\t0x8306\n0xE49C\t0x82DC\n0xE49D\t0x8309\n0xE49E\t0x82D9\n0xE49F\t0x8335\n0xE4A0\t0x8334\n0xE4A1\t0x8316\n0xE4A2\t0x8332\n0xE4A3\t0x8331\n0xE4A4\t0x8340\n0xE4A5\t0x8339\n0xE4A6\t0x8350\n0xE4A7\t0x8345\n0xE4A8\t0x832F\n0xE4A9\t0x832B\n0xE4AA\t0x8317\n0xE4AB\t0x8318\n0xE4AC\t0x8385\n0xE4AD\t0x839A\n0xE4AE\t0x83AA\n0xE4AF\t0x839F\n0xE4B0\t0x83A2\n0xE4B1\t0x8396\n0xE4B2\t0x8323\n0xE4B3\t0x838E\n0xE4B4\t0x8387\n0xE4B5\t0x838A\n0xE4B6\t0x837C\n0xE4B7\t0x83B5\n0xE4B8\t0x8373\n0xE4B9\t0x8375\n0xE4BA\t0x83A0\n0xE4BB\t0x8389\n0xE4BC\t0x83A8\n0xE4BD\t0x83F4\n0xE4BE\t0x8413\n0xE4BF\t0x83EB\n0xE4C0\t0x83CE\n0xE4C1\t0x83FD\n0xE4C2\t0x8403\n0xE4C3\t0x83D8\n0xE4C4\t0x840B\n0xE4C5\t0x83C1\n0xE4C6\t0x83F7\n0xE4C7\t0x8407\n0xE4C8\t0x83E0\n0xE4C9\t0x83F2\n0xE4CA\t0x840D\n0xE4CB\t0x8422\n0xE4CC\t0x8420\n0xE4CD\t0x83BD\n0xE4CE\t0x8438\n0xE4CF\t0x8506\n0xE4D0\t0x83FB\n0xE4D1\t0x846D\n0xE4D2\t0x842A\n0xE4D3\t0x843C\n0xE4D4\t0x855A\n0xE4D5\t0x8484\n0xE4D6\t0x8477\n0xE4D7\t0x846B\n0xE4D8\t0x84AD\n0xE4D9\t0x846E\n0xE4DA\t0x8482\n0xE4DB\t0x8469\n0xE4DC\t0x8446\n0xE4DD\t0x842C\n0xE4DE\t0x846F\n0xE4DF\t0x8479\n0xE4E0\t0x8435\n0xE4E1\t0x84CA\n0xE4E2\t0x8462\n0xE4E3\t0x84B9\n0xE4E4\t0x84BF\n0xE4E5\t0x849F\n0xE4E6\t0x84D9\n0xE4E7\t0x84CD\n0xE4E8\t0x84BB\n0xE4E9\t0x84DA\n0xE4EA\t0x84D0\n0xE4EB\t0x84C1\n0xE4EC\t0x84C6\n0xE4ED\t0x84D6\n0xE4EE\t0x84A1\n0xE4EF\t0x8521\n0xE4F0\t0x84FF\n0xE4F1\t0x84F4\n0xE4F2\t0x8517\n0xE4F3\t0x8518\n0xE4F4\t0x852C\n0xE4F5\t0x851F\n0xE4F6\t0x8515\n0xE4F7\t0x8514\n0xE4F8\t0x84FC\n0xE4F9\t0x8540\n0xE4FA\t0x8563\n0xE4FB\t0x8558\n0xE4FC\t0x8548\n0xE540\t0x8541\n0xE541\t0x8602\n0xE542\t0x854B\n0xE543\t0x8555\n0xE544\t0x8580\n0xE545\t0x85A4\n0xE546\t0x8588\n0xE547\t0x8591\n0xE548\t0x858A\n0xE549\t0x85A8\n0xE54A\t0x856D\n0xE54B\t0x8594\n0xE54C\t0x859B\n0xE54D\t0x85EA\n0xE54E\t0x8587\n0xE54F\t0x859C\n0xE550\t0x8577\n0xE551\t0x857E\n0xE552\t0x8590\n0xE553\t0x85C9\n0xE554\t0x85BA\n0xE555\t0x85CF\n0xE556\t0x85B9\n0xE557\t0x85D0\n0xE558\t0x85D5\n0xE559\t0x85DD\n0xE55A\t0x85E5\n0xE55B\t0x85DC\n0xE55C\t0x85F9\n0xE55D\t0x860A\n0xE55E\t0x8613\n0xE55F\t0x860B\n0xE560\t0x85FE\n0xE561\t0x85FA\n0xE562\t0x8606\n0xE563\t0x8622\n0xE564\t0x861A\n0xE565\t0x8630\n0xE566\t0x863F\n0xE567\t0x864D\n0xE568\t0x4E55\n0xE569\t0x8654\n0xE56A\t0x865F\n0xE56B\t0x8667\n0xE56C\t0x8671\n0xE56D\t0x8693\n0xE56E\t0x86A3\n0xE56F\t0x86A9\n0xE570\t0x86AA\n0xE571\t0x868B\n0xE572\t0x868C\n0xE573\t0x86B6\n0xE574\t0x86AF\n0xE575\t0x86C4\n0xE576\t0x86C6\n0xE577\t0x86B0\n0xE578\t0x86C9\n0xE579\t0x8823\n0xE57A\t0x86AB\n0xE57B\t0x86D4\n0xE57C\t0x86DE\n0xE57D\t0x86E9\n0xE57E\t0x86EC\n0xE580\t0x86DF\n0xE581\t0x86DB\n0xE582\t0x86EF\n0xE583\t0x8712\n0xE584\t0x8706\n0xE585\t0x8708\n0xE586\t0x8700\n0xE587\t0x8703\n0xE588\t0x86FB\n0xE589\t0x8711\n0xE58A\t0x8709\n0xE58B\t0x870D\n0xE58C\t0x86F9\n0xE58D\t0x870A\n0xE58E\t0x8734\n0xE58F\t0x873F\n0xE590\t0x8737\n0xE591\t0x873B\n0xE592\t0x8725\n0xE593\t0x8729\n0xE594\t0x871A\n0xE595\t0x8760\n0xE596\t0x875F\n0xE597\t0x8778\n0xE598\t0x874C\n0xE599\t0x874E\n0xE59A\t0x8774\n0xE59B\t0x8757\n0xE59C\t0x8768\n0xE59D\t0x876E\n0xE59E\t0x8759\n0xE59F\t0x8753\n0xE5A0\t0x8763\n0xE5A1\t0x876A\n0xE5A2\t0x8805\n0xE5A3\t0x87A2\n0xE5A4\t0x879F\n0xE5A5\t0x8782\n0xE5A6\t0x87AF\n0xE5A7\t0x87CB\n0xE5A8\t0x87BD\n0xE5A9\t0x87C0\n0xE5AA\t0x87D0\n0xE5AB\t0x96D6\n0xE5AC\t0x87AB\n0xE5AD\t0x87C4\n0xE5AE\t0x87B3\n0xE5AF\t0x87C7\n0xE5B0\t0x87C6\n0xE5B1\t0x87BB\n0xE5B2\t0x87EF\n0xE5B3\t0x87F2\n0xE5B4\t0x87E0\n0xE5B5\t0x880F\n0xE5B6\t0x880D\n0xE5B7\t0x87FE\n0xE5B8\t0x87F6\n0xE5B9\t0x87F7\n0xE5BA\t0x880E\n0xE5BB\t0x87D2\n0xE5BC\t0x8811\n0xE5BD\t0x8816\n0xE5BE\t0x8815\n0xE5BF\t0x8822\n0xE5C0\t0x8821\n0xE5C1\t0x8831\n0xE5C2\t0x8836\n0xE5C3\t0x8839\n0xE5C4\t0x8827\n0xE5C5\t0x883B\n0xE5C6\t0x8844\n0xE5C7\t0x8842\n0xE5C8\t0x8852\n0xE5C9\t0x8859\n0xE5CA\t0x885E\n0xE5CB\t0x8862\n0xE5CC\t0x886B\n0xE5CD\t0x8881\n0xE5CE\t0x887E\n0xE5CF\t0x889E\n0xE5D0\t0x8875\n0xE5D1\t0x887D\n0xE5D2\t0x88B5\n0xE5D3\t0x8872\n0xE5D4\t0x8882\n0xE5D5\t0x8897\n0xE5D6\t0x8892\n0xE5D7\t0x88AE\n0xE5D8\t0x8899\n0xE5D9\t0x88A2\n0xE5DA\t0x888D\n0xE5DB\t0x88A4\n0xE5DC\t0x88B0\n0xE5DD\t0x88BF\n0xE5DE\t0x88B1\n0xE5DF\t0x88C3\n0xE5E0\t0x88C4\n0xE5E1\t0x88D4\n0xE5E2\t0x88D8\n0xE5E3\t0x88D9\n0xE5E4\t0x88DD\n0xE5E5\t0x88F9\n0xE5E6\t0x8902\n0xE5E7\t0x88FC\n0xE5E8\t0x88F4\n0xE5E9\t0x88E8\n0xE5EA\t0x88F2\n0xE5EB\t0x8904\n0xE5EC\t0x890C\n0xE5ED\t0x890A\n0xE5EE\t0x8913\n0xE5EF\t0x8943\n0xE5F0\t0x891E\n0xE5F1\t0x8925\n0xE5F2\t0x892A\n0xE5F3\t0x892B\n0xE5F4\t0x8941\n0xE5F5\t0x8944\n0xE5F6\t0x893B\n0xE5F7\t0x8936\n0xE5F8\t0x8938\n0xE5F9\t0x894C\n0xE5FA\t0x891D\n0xE5FB\t0x8960\n0xE5FC\t0x895E\n0xE640\t0x8966\n0xE641\t0x8964\n0xE642\t0x896D\n0xE643\t0x896A\n0xE644\t0x896F\n0xE645\t0x8974\n0xE646\t0x8977\n0xE647\t0x897E\n0xE648\t0x8983\n0xE649\t0x8988\n0xE64A\t0x898A\n0xE64B\t0x8993\n0xE64C\t0x8998\n0xE64D\t0x89A1\n0xE64E\t0x89A9\n0xE64F\t0x89A6\n0xE650\t0x89AC\n0xE651\t0x89AF\n0xE652\t0x89B2\n0xE653\t0x89BA\n0xE654\t0x89BD\n0xE655\t0x89BF\n0xE656\t0x89C0\n0xE657\t0x89DA\n0xE658\t0x89DC\n0xE659\t0x89DD\n0xE65A\t0x89E7\n0xE65B\t0x89F4\n0xE65C\t0x89F8\n0xE65D\t0x8A03\n0xE65E\t0x8A16\n0xE65F\t0x8A10\n0xE660\t0x8A0C\n0xE661\t0x8A1B\n0xE662\t0x8A1D\n0xE663\t0x8A25\n0xE664\t0x8A36\n0xE665\t0x8A41\n0xE666\t0x8A5B\n0xE667\t0x8A52\n0xE668\t0x8A46\n0xE669\t0x8A48\n0xE66A\t0x8A7C\n0xE66B\t0x8A6D\n0xE66C\t0x8A6C\n0xE66D\t0x8A62\n0xE66E\t0x8A85\n0xE66F\t0x8A82\n0xE670\t0x8A84\n0xE671\t0x8AA8\n0xE672\t0x8AA1\n0xE673\t0x8A91\n0xE674\t0x8AA5\n0xE675\t0x8AA6\n0xE676\t0x8A9A\n0xE677\t0x8AA3\n0xE678\t0x8AC4\n0xE679\t0x8ACD\n0xE67A\t0x8AC2\n0xE67B\t0x8ADA\n0xE67C\t0x8AEB\n0xE67D\t0x8AF3\n0xE67E\t0x8AE7\n0xE680\t0x8AE4\n0xE681\t0x8AF1\n0xE682\t0x8B14\n0xE683\t0x8AE0\n0xE684\t0x8AE2\n0xE685\t0x8AF7\n0xE686\t0x8ADE\n0xE687\t0x8ADB\n0xE688\t0x8B0C\n0xE689\t0x8B07\n0xE68A\t0x8B1A\n0xE68B\t0x8AE1\n0xE68C\t0x8B16\n0xE68D\t0x8B10\n0xE68E\t0x8B17\n0xE68F\t0x8B20\n0xE690\t0x8B33\n0xE691\t0x97AB\n0xE692\t0x8B26\n0xE693\t0x8B2B\n0xE694\t0x8B3E\n0xE695\t0x8B28\n0xE696\t0x8B41\n0xE697\t0x8B4C\n0xE698\t0x8B4F\n0xE699\t0x8B4E\n0xE69A\t0x8B49\n0xE69B\t0x8B56\n0xE69C\t0x8B5B\n0xE69D\t0x8B5A\n0xE69E\t0x8B6B\n0xE69F\t0x8B5F\n0xE6A0\t0x8B6C\n0xE6A1\t0x8B6F\n0xE6A2\t0x8B74\n0xE6A3\t0x8B7D\n0xE6A4\t0x8B80\n0xE6A5\t0x8B8C\n0xE6A6\t0x8B8E\n0xE6A7\t0x8B92\n0xE6A8\t0x8B93\n0xE6A9\t0x8B96\n0xE6AA\t0x8B99\n0xE6AB\t0x8B9A\n0xE6AC\t0x8C3A\n0xE6AD\t0x8C41\n0xE6AE\t0x8C3F\n0xE6AF\t0x8C48\n0xE6B0\t0x8C4C\n0xE6B1\t0x8C4E\n0xE6B2\t0x8C50\n0xE6B3\t0x8C55\n0xE6B4\t0x8C62\n0xE6B5\t0x8C6C\n0xE6B6\t0x8C78\n0xE6B7\t0x8C7A\n0xE6B8\t0x8C82\n0xE6B9\t0x8C89\n0xE6BA\t0x8C85\n0xE6BB\t0x8C8A\n0xE6BC\t0x8C8D\n0xE6BD\t0x8C8E\n0xE6BE\t0x8C94\n0xE6BF\t0x8C7C\n0xE6C0\t0x8C98\n0xE6C1\t0x621D\n0xE6C2\t0x8CAD\n0xE6C3\t0x8CAA\n0xE6C4\t0x8CBD\n0xE6C5\t0x8CB2\n0xE6C6\t0x8CB3\n0xE6C7\t0x8CAE\n0xE6C8\t0x8CB6\n0xE6C9\t0x8CC8\n0xE6CA\t0x8CC1\n0xE6CB\t0x8CE4\n0xE6CC\t0x8CE3\n0xE6CD\t0x8CDA\n0xE6CE\t0x8CFD\n0xE6CF\t0x8CFA\n0xE6D0\t0x8CFB\n0xE6D1\t0x8D04\n0xE6D2\t0x8D05\n0xE6D3\t0x8D0A\n0xE6D4\t0x8D07\n0xE6D5\t0x8D0F\n0xE6D6\t0x8D0D\n0xE6D7\t0x8D10\n0xE6D8\t0x9F4E\n0xE6D9\t0x8D13\n0xE6DA\t0x8CCD\n0xE6DB\t0x8D14\n0xE6DC\t0x8D16\n0xE6DD\t0x8D67\n0xE6DE\t0x8D6D\n0xE6DF\t0x8D71\n0xE6E0\t0x8D73\n0xE6E1\t0x8D81\n0xE6E2\t0x8D99\n0xE6E3\t0x8DC2\n0xE6E4\t0x8DBE\n0xE6E5\t0x8DBA\n0xE6E6\t0x8DCF\n0xE6E7\t0x8DDA\n0xE6E8\t0x8DD6\n0xE6E9\t0x8DCC\n0xE6EA\t0x8DDB\n0xE6EB\t0x8DCB\n0xE6EC\t0x8DEA\n0xE6ED\t0x8DEB\n0xE6EE\t0x8DDF\n0xE6EF\t0x8DE3\n0xE6F0\t0x8DFC\n0xE6F1\t0x8E08\n0xE6F2\t0x8E09\n0xE6F3\t0x8DFF\n0xE6F4\t0x8E1D\n0xE6F5\t0x8E1E\n0xE6F6\t0x8E10\n0xE6F7\t0x8E1F\n0xE6F8\t0x8E42\n0xE6F9\t0x8E35\n0xE6FA\t0x8E30\n0xE6FB\t0x8E34\n0xE6FC\t0x8E4A\n0xE740\t0x8E47\n0xE741\t0x8E49\n0xE742\t0x8E4C\n0xE743\t0x8E50\n0xE744\t0x8E48\n0xE745\t0x8E59\n0xE746\t0x8E64\n0xE747\t0x8E60\n0xE748\t0x8E2A\n0xE749\t0x8E63\n0xE74A\t0x8E55\n0xE74B\t0x8E76\n0xE74C\t0x8E72\n0xE74D\t0x8E7C\n0xE74E\t0x8E81\n0xE74F\t0x8E87\n0xE750\t0x8E85\n0xE751\t0x8E84\n0xE752\t0x8E8B\n0xE753\t0x8E8A\n0xE754\t0x8E93\n0xE755\t0x8E91\n0xE756\t0x8E94\n0xE757\t0x8E99\n0xE758\t0x8EAA\n0xE759\t0x8EA1\n0xE75A\t0x8EAC\n0xE75B\t0x8EB0\n0xE75C\t0x8EC6\n0xE75D\t0x8EB1\n0xE75E\t0x8EBE\n0xE75F\t0x8EC5\n0xE760\t0x8EC8\n0xE761\t0x8ECB\n0xE762\t0x8EDB\n0xE763\t0x8EE3\n0xE764\t0x8EFC\n0xE765\t0x8EFB\n0xE766\t0x8EEB\n0xE767\t0x8EFE\n0xE768\t0x8F0A\n0xE769\t0x8F05\n0xE76A\t0x8F15\n0xE76B\t0x8F12\n0xE76C\t0x8F19\n0xE76D\t0x8F13\n0xE76E\t0x8F1C\n0xE76F\t0x8F1F\n0xE770\t0x8F1B\n0xE771\t0x8F0C\n0xE772\t0x8F26\n0xE773\t0x8F33\n0xE774\t0x8F3B\n0xE775\t0x8F39\n0xE776\t0x8F45\n0xE777\t0x8F42\n0xE778\t0x8F3E\n0xE779\t0x8F4C\n0xE77A\t0x8F49\n0xE77B\t0x8F46\n0xE77C\t0x8F4E\n0xE77D\t0x8F57\n0xE77E\t0x8F5C\n0xE780\t0x8F62\n0xE781\t0x8F63\n0xE782\t0x8F64\n0xE783\t0x8F9C\n0xE784\t0x8F9F\n0xE785\t0x8FA3\n0xE786\t0x8FAD\n0xE787\t0x8FAF\n0xE788\t0x8FB7\n0xE789\t0x8FDA\n0xE78A\t0x8FE5\n0xE78B\t0x8FE2\n0xE78C\t0x8FEA\n0xE78D\t0x8FEF\n0xE78E\t0x9087\n0xE78F\t0x8FF4\n0xE790\t0x9005\n0xE791\t0x8FF9\n0xE792\t0x8FFA\n0xE793\t0x9011\n0xE794\t0x9015\n0xE795\t0x9021\n0xE796\t0x900D\n0xE797\t0x901E\n0xE798\t0x9016\n0xE799\t0x900B\n0xE79A\t0x9027\n0xE79B\t0x9036\n0xE79C\t0x9035\n0xE79D\t0x9039\n0xE79E\t0x8FF8\n0xE79F\t0x904F\n0xE7A0\t0x9050\n0xE7A1\t0x9051\n0xE7A2\t0x9052\n0xE7A3\t0x900E\n0xE7A4\t0x9049\n0xE7A5\t0x903E\n0xE7A6\t0x9056\n0xE7A7\t0x9058\n0xE7A8\t0x905E\n0xE7A9\t0x9068\n0xE7AA\t0x906F\n0xE7AB\t0x9076\n0xE7AC\t0x96A8\n0xE7AD\t0x9072\n0xE7AE\t0x9082\n0xE7AF\t0x907D\n0xE7B0\t0x9081\n0xE7B1\t0x9080\n0xE7B2\t0x908A\n0xE7B3\t0x9089\n0xE7B4\t0x908F\n0xE7B5\t0x90A8\n0xE7B6\t0x90AF\n0xE7B7\t0x90B1\n0xE7B8\t0x90B5\n0xE7B9\t0x90E2\n0xE7BA\t0x90E4\n0xE7BB\t0x6248\n0xE7BC\t0x90DB\n0xE7BD\t0x9102\n0xE7BE\t0x9112\n0xE7BF\t0x9119\n0xE7C0\t0x9132\n0xE7C1\t0x9130\n0xE7C2\t0x914A\n0xE7C3\t0x9156\n0xE7C4\t0x9158\n0xE7C5\t0x9163\n0xE7C6\t0x9165\n0xE7C7\t0x9169\n0xE7C8\t0x9173\n0xE7C9\t0x9172\n0xE7CA\t0x918B\n0xE7CB\t0x9189\n0xE7CC\t0x9182\n0xE7CD\t0x91A2\n0xE7CE\t0x91AB\n0xE7CF\t0x91AF\n0xE7D0\t0x91AA\n0xE7D1\t0x91B5\n0xE7D2\t0x91B4\n0xE7D3\t0x91BA\n0xE7D4\t0x91C0\n0xE7D5\t0x91C1\n0xE7D6\t0x91C9\n0xE7D7\t0x91CB\n0xE7D8\t0x91D0\n0xE7D9\t0x91D6\n0xE7DA\t0x91DF\n0xE7DB\t0x91E1\n0xE7DC\t0x91DB\n0xE7DD\t0x91FC\n0xE7DE\t0x91F5\n0xE7DF\t0x91F6\n0xE7E0\t0x921E\n0xE7E1\t0x91FF\n0xE7E2\t0x9214\n0xE7E3\t0x922C\n0xE7E4\t0x9215\n0xE7E5\t0x9211\n0xE7E6\t0x925E\n0xE7E7\t0x9257\n0xE7E8\t0x9245\n0xE7E9\t0x9249\n0xE7EA\t0x9264\n0xE7EB\t0x9248\n0xE7EC\t0x9295\n0xE7ED\t0x923F\n0xE7EE\t0x924B\n0xE7EF\t0x9250\n0xE7F0\t0x929C\n0xE7F1\t0x9296\n0xE7F2\t0x9293\n0xE7F3\t0x929B\n0xE7F4\t0x925A\n0xE7F5\t0x92CF\n0xE7F6\t0x92B9\n0xE7F7\t0x92B7\n0xE7F8\t0x92E9\n0xE7F9\t0x930F\n0xE7FA\t0x92FA\n0xE7FB\t0x9344\n0xE7FC\t0x932E\n0xE840\t0x9319\n0xE841\t0x9322\n0xE842\t0x931A\n0xE843\t0x9323\n0xE844\t0x933A\n0xE845\t0x9335\n0xE846\t0x933B\n0xE847\t0x935C\n0xE848\t0x9360\n0xE849\t0x937C\n0xE84A\t0x936E\n0xE84B\t0x9356\n0xE84C\t0x93B0\n0xE84D\t0x93AC\n0xE84E\t0x93AD\n0xE84F\t0x9394\n0xE850\t0x93B9\n0xE851\t0x93D6\n0xE852\t0x93D7\n0xE853\t0x93E8\n0xE854\t0x93E5\n0xE855\t0x93D8\n0xE856\t0x93C3\n0xE857\t0x93DD\n0xE858\t0x93D0\n0xE859\t0x93C8\n0xE85A\t0x93E4\n0xE85B\t0x941A\n0xE85C\t0x9414\n0xE85D\t0x9413\n0xE85E\t0x9403\n0xE85F\t0x9407\n0xE860\t0x9410\n0xE861\t0x9436\n0xE862\t0x942B\n0xE863\t0x9435\n0xE864\t0x9421\n0xE865\t0x943A\n0xE866\t0x9441\n0xE867\t0x9452\n0xE868\t0x9444\n0xE869\t0x945B\n0xE86A\t0x9460\n0xE86B\t0x9462\n0xE86C\t0x945E\n0xE86D\t0x946A\n0xE86E\t0x9229\n0xE86F\t0x9470\n0xE870\t0x9475\n0xE871\t0x9477\n0xE872\t0x947D\n0xE873\t0x945A\n0xE874\t0x947C\n0xE875\t0x947E\n0xE876\t0x9481\n0xE877\t0x947F\n0xE878\t0x9582\n0xE879\t0x9587\n0xE87A\t0x958A\n0xE87B\t0x9594\n0xE87C\t0x9596\n0xE87D\t0x9598\n0xE87E\t0x9599\n0xE880\t0x95A0\n0xE881\t0x95A8\n0xE882\t0x95A7\n0xE883\t0x95AD\n0xE884\t0x95BC\n0xE885\t0x95BB\n0xE886\t0x95B9\n0xE887\t0x95BE\n0xE888\t0x95CA\n0xE889\t0x6FF6\n0xE88A\t0x95C3\n0xE88B\t0x95CD\n0xE88C\t0x95CC\n0xE88D\t0x95D5\n0xE88E\t0x95D4\n0xE88F\t0x95D6\n0xE890\t0x95DC\n0xE891\t0x95E1\n0xE892\t0x95E5\n0xE893\t0x95E2\n0xE894\t0x9621\n0xE895\t0x9628\n0xE896\t0x962E\n0xE897\t0x962F\n0xE898\t0x9642\n0xE899\t0x964C\n0xE89A\t0x964F\n0xE89B\t0x964B\n0xE89C\t0x9677\n0xE89D\t0x965C\n0xE89E\t0x965E\n0xE89F\t0x965D\n0xE8A0\t0x965F\n0xE8A1\t0x9666\n0xE8A2\t0x9672\n0xE8A3\t0x966C\n0xE8A4\t0x968D\n0xE8A5\t0x9698\n0xE8A6\t0x9695\n0xE8A7\t0x9697\n0xE8A8\t0x96AA\n0xE8A9\t0x96A7\n0xE8AA\t0x96B1\n0xE8AB\t0x96B2\n0xE8AC\t0x96B0\n0xE8AD\t0x96B4\n0xE8AE\t0x96B6\n0xE8AF\t0x96B8\n0xE8B0\t0x96B9\n0xE8B1\t0x96CE\n0xE8B2\t0x96CB\n0xE8B3\t0x96C9\n0xE8B4\t0x96CD\n0xE8B5\t0x894D\n0xE8B6\t0x96DC\n0xE8B7\t0x970D\n0xE8B8\t0x96D5\n0xE8B9\t0x96F9\n0xE8BA\t0x9704\n0xE8BB\t0x9706\n0xE8BC\t0x9708\n0xE8BD\t0x9713\n0xE8BE\t0x970E\n0xE8BF\t0x9711\n0xE8C0\t0x970F\n0xE8C1\t0x9716\n0xE8C2\t0x9719\n0xE8C3\t0x9724\n0xE8C4\t0x972A\n0xE8C5\t0x9730\n0xE8C6\t0x9739\n0xE8C7\t0x973D\n0xE8C8\t0x973E\n0xE8C9\t0x9744\n0xE8CA\t0x9746\n0xE8CB\t0x9748\n0xE8CC\t0x9742\n0xE8CD\t0x9749\n0xE8CE\t0x975C\n0xE8CF\t0x9760\n0xE8D0\t0x9764\n0xE8D1\t0x9766\n0xE8D2\t0x9768\n0xE8D3\t0x52D2\n0xE8D4\t0x976B\n0xE8D5\t0x9771\n0xE8D6\t0x9779\n0xE8D7\t0x9785\n0xE8D8\t0x977C\n0xE8D9\t0x9781\n0xE8DA\t0x977A\n0xE8DB\t0x9786\n0xE8DC\t0x978B\n0xE8DD\t0x978F\n0xE8DE\t0x9790\n0xE8DF\t0x979C\n0xE8E0\t0x97A8\n0xE8E1\t0x97A6\n0xE8E2\t0x97A3\n0xE8E3\t0x97B3\n0xE8E4\t0x97B4\n0xE8E5\t0x97C3\n0xE8E6\t0x97C6\n0xE8E7\t0x97C8\n0xE8E8\t0x97CB\n0xE8E9\t0x97DC\n0xE8EA\t0x97ED\n0xE8EB\t0x9F4F\n0xE8EC\t0x97F2\n0xE8ED\t0x7ADF\n0xE8EE\t0x97F6\n0xE8EF\t0x97F5\n0xE8F0\t0x980F\n0xE8F1\t0x980C\n0xE8F2\t0x9838\n0xE8F3\t0x9824\n0xE8F4\t0x9821\n0xE8F5\t0x9837\n0xE8F6\t0x983D\n0xE8F7\t0x9846\n0xE8F8\t0x984F\n0xE8F9\t0x984B\n0xE8FA\t0x986B\n0xE8FB\t0x986F\n0xE8FC\t0x9870\n0xE940\t0x9871\n0xE941\t0x9874\n0xE942\t0x9873\n0xE943\t0x98AA\n0xE944\t0x98AF\n0xE945\t0x98B1\n0xE946\t0x98B6\n0xE947\t0x98C4\n0xE948\t0x98C3\n0xE949\t0x98C6\n0xE94A\t0x98E9\n0xE94B\t0x98EB\n0xE94C\t0x9903\n0xE94D\t0x9909\n0xE94E\t0x9912\n0xE94F\t0x9914\n0xE950\t0x9918\n0xE951\t0x9921\n0xE952\t0x991D\n0xE953\t0x991E\n0xE954\t0x9924\n0xE955\t0x9920\n0xE956\t0x992C\n0xE957\t0x992E\n0xE958\t0x993D\n0xE959\t0x993E\n0xE95A\t0x9942\n0xE95B\t0x9949\n0xE95C\t0x9945\n0xE95D\t0x9950\n0xE95E\t0x994B\n0xE95F\t0x9951\n0xE960\t0x9952\n0xE961\t0x994C\n0xE962\t0x9955\n0xE963\t0x9997\n0xE964\t0x9998\n0xE965\t0x99A5\n0xE966\t0x99AD\n0xE967\t0x99AE\n0xE968\t0x99BC\n0xE969\t0x99DF\n0xE96A\t0x99DB\n0xE96B\t0x99DD\n0xE96C\t0x99D8\n0xE96D\t0x99D1\n0xE96E\t0x99ED\n0xE96F\t0x99EE\n0xE970\t0x99F1\n0xE971\t0x99F2\n0xE972\t0x99FB\n0xE973\t0x99F8\n0xE974\t0x9A01\n0xE975\t0x9A0F\n0xE976\t0x9A05\n0xE977\t0x99E2\n0xE978\t0x9A19\n0xE979\t0x9A2B\n0xE97A\t0x9A37\n0xE97B\t0x9A45\n0xE97C\t0x9A42\n0xE97D\t0x9A40\n0xE97E\t0x9A43\n0xE980\t0x9A3E\n0xE981\t0x9A55\n0xE982\t0x9A4D\n0xE983\t0x9A5B\n0xE984\t0x9A57\n0xE985\t0x9A5F\n0xE986\t0x9A62\n0xE987\t0x9A65\n0xE988\t0x9A64\n0xE989\t0x9A69\n0xE98A\t0x9A6B\n0xE98B\t0x9A6A\n0xE98C\t0x9AAD\n0xE98D\t0x9AB0\n0xE98E\t0x9ABC\n0xE98F\t0x9AC0\n0xE990\t0x9ACF\n0xE991\t0x9AD1\n0xE992\t0x9AD3\n0xE993\t0x9AD4\n0xE994\t0x9ADE\n0xE995\t0x9ADF\n0xE996\t0x9AE2\n0xE997\t0x9AE3\n0xE998\t0x9AE6\n0xE999\t0x9AEF\n0xE99A\t0x9AEB\n0xE99B\t0x9AEE\n0xE99C\t0x9AF4\n0xE99D\t0x9AF1\n0xE99E\t0x9AF7\n0xE99F\t0x9AFB\n0xE9A0\t0x9B06\n0xE9A1\t0x9B18\n0xE9A2\t0x9B1A\n0xE9A3\t0x9B1F\n0xE9A4\t0x9B22\n0xE9A5\t0x9B23\n0xE9A6\t0x9B25\n0xE9A7\t0x9B27\n0xE9A8\t0x9B28\n0xE9A9\t0x9B29\n0xE9AA\t0x9B2A\n0xE9AB\t0x9B2E\n0xE9AC\t0x9B2F\n0xE9AD\t0x9B32\n0xE9AE\t0x9B44\n0xE9AF\t0x9B43\n0xE9B0\t0x9B4F\n0xE9B1\t0x9B4D\n0xE9B2\t0x9B4E\n0xE9B3\t0x9B51\n0xE9B4\t0x9B58\n0xE9B5\t0x9B74\n0xE9B6\t0x9B93\n0xE9B7\t0x9B83\n0xE9B8\t0x9B91\n0xE9B9\t0x9B96\n0xE9BA\t0x9B97\n0xE9BB\t0x9B9F\n0xE9BC\t0x9BA0\n0xE9BD\t0x9BA8\n0xE9BE\t0x9BB4\n0xE9BF\t0x9BC0\n0xE9C0\t0x9BCA\n0xE9C1\t0x9BB9\n0xE9C2\t0x9BC6\n0xE9C3\t0x9BCF\n0xE9C4\t0x9BD1\n0xE9C5\t0x9BD2\n0xE9C6\t0x9BE3\n0xE9C7\t0x9BE2\n0xE9C8\t0x9BE4\n0xE9C9\t0x9BD4\n0xE9CA\t0x9BE1\n0xE9CB\t0x9C3A\n0xE9CC\t0x9BF2\n0xE9CD\t0x9BF1\n0xE9CE\t0x9BF0\n0xE9CF\t0x9C15\n0xE9D0\t0x9C14\n0xE9D1\t0x9C09\n0xE9D2\t0x9C13\n0xE9D3\t0x9C0C\n0xE9D4\t0x9C06\n0xE9D5\t0x9C08\n0xE9D6\t0x9C12\n0xE9D7\t0x9C0A\n0xE9D8\t0x9C04\n0xE9D9\t0x9C2E\n0xE9DA\t0x9C1B\n0xE9DB\t0x9C25\n0xE9DC\t0x9C24\n0xE9DD\t0x9C21\n0xE9DE\t0x9C30\n0xE9DF\t0x9C47\n0xE9E0\t0x9C32\n0xE9E1\t0x9C46\n0xE9E2\t0x9C3E\n0xE9E3\t0x9C5A\n0xE9E4\t0x9C60\n0xE9E5\t0x9C67\n0xE9E6\t0x9C76\n0xE9E7\t0x9C78\n0xE9E8\t0x9CE7\n0xE9E9\t0x9CEC\n0xE9EA\t0x9CF0\n0xE9EB\t0x9D09\n0xE9EC\t0x9D08\n0xE9ED\t0x9CEB\n0xE9EE\t0x9D03\n0xE9EF\t0x9D06\n0xE9F0\t0x9D2A\n0xE9F1\t0x9D26\n0xE9F2\t0x9DAF\n0xE9F3\t0x9D23\n0xE9F4\t0x9D1F\n0xE9F5\t0x9D44\n0xE9F6\t0x9D15\n0xE9F7\t0x9D12\n0xE9F8\t0x9D41\n0xE9F9\t0x9D3F\n0xE9FA\t0x9D3E\n0xE9FB\t0x9D46\n0xE9FC\t0x9D48\n0xEA40\t0x9D5D\n0xEA41\t0x9D5E\n0xEA42\t0x9D64\n0xEA43\t0x9D51\n0xEA44\t0x9D50\n0xEA45\t0x9D59\n0xEA46\t0x9D72\n0xEA47\t0x9D89\n0xEA48\t0x9D87\n0xEA49\t0x9DAB\n0xEA4A\t0x9D6F\n0xEA4B\t0x9D7A\n0xEA4C\t0x9D9A\n0xEA4D\t0x9DA4\n0xEA4E\t0x9DA9\n0xEA4F\t0x9DB2\n0xEA50\t0x9DC4\n0xEA51\t0x9DC1\n0xEA52\t0x9DBB\n0xEA53\t0x9DB8\n0xEA54\t0x9DBA\n0xEA55\t0x9DC6\n0xEA56\t0x9DCF\n0xEA57\t0x9DC2\n0xEA58\t0x9DD9\n0xEA59\t0x9DD3\n0xEA5A\t0x9DF8\n0xEA5B\t0x9DE6\n0xEA5C\t0x9DED\n0xEA5D\t0x9DEF\n0xEA5E\t0x9DFD\n0xEA5F\t0x9E1A\n0xEA60\t0x9E1B\n0xEA61\t0x9E1E\n0xEA62\t0x9E75\n0xEA63\t0x9E79\n0xEA64\t0x9E7D\n0xEA65\t0x9E81\n0xEA66\t0x9E88\n0xEA67\t0x9E8B\n0xEA68\t0x9E8C\n0xEA69\t0x9E92\n0xEA6A\t0x9E95\n0xEA6B\t0x9E91\n0xEA6C\t0x9E9D\n0xEA6D\t0x9EA5\n0xEA6E\t0x9EA9\n0xEA6F\t0x9EB8\n0xEA70\t0x9EAA\n0xEA71\t0x9EAD\n0xEA72\t0x9761\n0xEA73\t0x9ECC\n0xEA74\t0x9ECE\n0xEA75\t0x9ECF\n0xEA76\t0x9ED0\n0xEA77\t0x9ED4\n0xEA78\t0x9EDC\n0xEA79\t0x9EDE\n0xEA7A\t0x9EDD\n0xEA7B\t0x9EE0\n0xEA7C\t0x9EE5\n0xEA7D\t0x9EE8\n0xEA7E\t0x9EEF\n0xEA80\t0x9EF4\n0xEA81\t0x9EF6\n0xEA82\t0x9EF7\n0xEA83\t0x9EF9\n0xEA84\t0x9EFB\n0xEA85\t0x9EFC\n0xEA86\t0x9EFD\n0xEA87\t0x9F07\n0xEA88\t0x9F08\n0xEA89\t0x76B7\n0xEA8A\t0x9F15\n0xEA8B\t0x9F21\n0xEA8C\t0x9F2C\n0xEA8D\t0x9F3E\n0xEA8E\t0x9F4A\n0xEA8F\t0x9F52\n0xEA90\t0x9F54\n0xEA91\t0x9F63\n0xEA92\t0x9F5F\n0xEA93\t0x9F60\n0xEA94\t0x9F61\n0xEA95\t0x9F66\n0xEA96\t0x9F67\n0xEA97\t0x9F6C\n0xEA98\t0x9F6A\n0xEA99\t0x9F77\n0xEA9A\t0x9F72\n0xEA9B\t0x9F76\n0xEA9C\t0x9F95\n0xEA9D\t0x9F9C\n0xEA9E\t0x9FA0\n0xEA9F\t0x582F\n0xEAA0\t0x69C7\n0xEAA1\t0x9059\n0xEAA2\t0x7464\n0xEAA3\t0x51DC\n0xEAA4\t0x7199\n0xED40\t0x7E8A\n0xED41\t0x891C\n0xED42\t0x9348\n0xED43\t0x9288\n0xED44\t0x84DC\n0xED45\t0x4FC9\n0xED46\t0x70BB\n0xED47\t0x6631\n0xED48\t0x68C8\n0xED49\t0x92F9\n0xED4A\t0x66FB\n0xED4B\t0x5F45\n0xED4C\t0x4E28\n0xED4D\t0x4EE1\n0xED4E\t0x4EFC\n0xED4F\t0x4F00\n0xED50\t0x4F03\n0xED51\t0x4F39\n0xED52\t0x4F56\n0xED53\t0x4F92\n0xED54\t0x4F8A\n0xED55\t0x4F9A\n0xED56\t0x4F94\n0xED57\t0x4FCD\n0xED58\t0x5040\n0xED59\t0x5022\n0xED5A\t0x4FFF\n0xED5B\t0x501E\n0xED5C\t0x5046\n0xED5D\t0x5070\n0xED5E\t0x5042\n0xED5F\t0x5094\n0xED60\t0x50F4\n0xED61\t0x50D8\n0xED62\t0x514A\n0xED63\t0x5164\n0xED64\t0x519D\n0xED65\t0x51BE\n0xED66\t0x51EC\n0xED67\t0x5215\n0xED68\t0x529C\n0xED69\t0x52A6\n0xED6A\t0x52C0\n0xED6B\t0x52DB\n0xED6C\t0x5300\n0xED6D\t0x5307\n0xED6E\t0x5324\n0xED6F\t0x5372\n0xED70\t0x5393\n0xED71\t0x53B2\n0xED72\t0x53DD\n0xED73\t0xFA0E\n0xED74\t0x549C\n0xED75\t0x548A\n0xED76\t0x54A9\n0xED77\t0x54FF\n0xED78\t0x5586\n0xED79\t0x5759\n0xED7A\t0x5765\n0xED7B\t0x57AC\n0xED7C\t0x57C8\n0xED7D\t0x57C7\n0xED7E\t0xFA0F\n0xED80\t0xFA10\n0xED81\t0x589E\n0xED82\t0x58B2\n0xED83\t0x590B\n0xED84\t0x5953\n0xED85\t0x595B\n0xED86\t0x595D\n0xED87\t0x5963\n0xED88\t0x59A4\n0xED89\t0x59BA\n0xED8A\t0x5B56\n0xED8B\t0x5BC0\n0xED8C\t0x752F\n0xED8D\t0x5BD8\n0xED8E\t0x5BEC\n0xED8F\t0x5C1E\n0xED90\t0x5CA6\n0xED91\t0x5CBA\n0xED92\t0x5CF5\n0xED93\t0x5D27\n0xED94\t0x5D53\n0xED95\t0xFA11\n0xED96\t0x5D42\n0xED97\t0x5D6D\n0xED98\t0x5DB8\n0xED99\t0x5DB9\n0xED9A\t0x5DD0\n0xED9B\t0x5F21\n0xED9C\t0x5F34\n0xED9D\t0x5F67\n0xED9E\t0x5FB7\n0xED9F\t0x5FDE\n0xEDA0\t0x605D\n0xEDA1\t0x6085\n0xEDA2\t0x608A\n0xEDA3\t0x60DE\n0xEDA4\t0x60D5\n0xEDA5\t0x6120\n0xEDA6\t0x60F2\n0xEDA7\t0x6111\n0xEDA8\t0x6137\n0xEDA9\t0x6130\n0xEDAA\t0x6198\n0xEDAB\t0x6213\n0xEDAC\t0x62A6\n0xEDAD\t0x63F5\n0xEDAE\t0x6460\n0xEDAF\t0x649D\n0xEDB0\t0x64CE\n0xEDB1\t0x654E\n0xEDB2\t0x6600\n0xEDB3\t0x6615\n0xEDB4\t0x663B\n0xEDB5\t0x6609\n0xEDB6\t0x662E\n0xEDB7\t0x661E\n0xEDB8\t0x6624\n0xEDB9\t0x6665\n0xEDBA\t0x6657\n0xEDBB\t0x6659\n0xEDBC\t0xFA12\n0xEDBD\t0x6673\n0xEDBE\t0x6699\n0xEDBF\t0x66A0\n0xEDC0\t0x66B2\n0xEDC1\t0x66BF\n0xEDC2\t0x66FA\n0xEDC3\t0x670E\n0xEDC4\t0xF929\n0xEDC5\t0x6766\n0xEDC6\t0x67BB\n0xEDC7\t0x6852\n0xEDC8\t0x67C0\n0xEDC9\t0x6801\n0xEDCA\t0x6844\n0xEDCB\t0x68CF\n0xEDCC\t0xFA13\n0xEDCD\t0x6968\n0xEDCE\t0xFA14\n0xEDCF\t0x6998\n0xEDD0\t0x69E2\n0xEDD1\t0x6A30\n0xEDD2\t0x6A6B\n0xEDD3\t0x6A46\n0xEDD4\t0x6A73\n0xEDD5\t0x6A7E\n0xEDD6\t0x6AE2\n0xEDD7\t0x6AE4\n0xEDD8\t0x6BD6\n0xEDD9\t0x6C3F\n0xEDDA\t0x6C5C\n0xEDDB\t0x6C86\n0xEDDC\t0x6C6F\n0xEDDD\t0x6CDA\n0xEDDE\t0x6D04\n0xEDDF\t0x6D87\n0xEDE0\t0x6D6F\n0xEDE1\t0x6D96\n0xEDE2\t0x6DAC\n0xEDE3\t0x6DCF\n0xEDE4\t0x6DF8\n0xEDE5\t0x6DF2\n0xEDE6\t0x6DFC\n0xEDE7\t0x6E39\n0xEDE8\t0x6E5C\n0xEDE9\t0x6E27\n0xEDEA\t0x6E3C\n0xEDEB\t0x6EBF\n0xEDEC\t0x6F88\n0xEDED\t0x6FB5\n0xEDEE\t0x6FF5\n0xEDEF\t0x7005\n0xEDF0\t0x7007\n0xEDF1\t0x7028\n0xEDF2\t0x7085\n0xEDF3\t0x70AB\n0xEDF4\t0x710F\n0xEDF5\t0x7104\n0xEDF6\t0x715C\n0xEDF7\t0x7146\n0xEDF8\t0x7147\n0xEDF9\t0xFA15\n0xEDFA\t0x71C1\n0xEDFB\t0x71FE\n0xEDFC\t0x72B1\n0xEE40\t0x72BE\n0xEE41\t0x7324\n0xEE42\t0xFA16\n0xEE43\t0x7377\n0xEE44\t0x73BD\n0xEE45\t0x73C9\n0xEE46\t0x73D6\n0xEE47\t0x73E3\n0xEE48\t0x73D2\n0xEE49\t0x7407\n0xEE4A\t0x73F5\n0xEE4B\t0x7426\n0xEE4C\t0x742A\n0xEE4D\t0x7429\n0xEE4E\t0x742E\n0xEE4F\t0x7462\n0xEE50\t0x7489\n0xEE51\t0x749F\n0xEE52\t0x7501\n0xEE53\t0x756F\n0xEE54\t0x7682\n0xEE55\t0x769C\n0xEE56\t0x769E\n0xEE57\t0x769B\n0xEE58\t0x76A6\n0xEE59\t0xFA17\n0xEE5A\t0x7746\n0xEE5B\t0x52AF\n0xEE5C\t0x7821\n0xEE5D\t0x784E\n0xEE5E\t0x7864\n0xEE5F\t0x787A\n0xEE60\t0x7930\n0xEE61\t0xFA18\n0xEE62\t0xFA19\n0xEE63\t0xFA1A\n0xEE64\t0x7994\n0xEE65\t0xFA1B\n0xEE66\t0x799B\n0xEE67\t0x7AD1\n0xEE68\t0x7AE7\n0xEE69\t0xFA1C\n0xEE6A\t0x7AEB\n0xEE6B\t0x7B9E\n0xEE6C\t0xFA1D\n0xEE6D\t0x7D48\n0xEE6E\t0x7D5C\n0xEE6F\t0x7DB7\n0xEE70\t0x7DA0\n0xEE71\t0x7DD6\n0xEE72\t0x7E52\n0xEE73\t0x7F47\n0xEE74\t0x7FA1\n0xEE75\t0xFA1E\n0xEE76\t0x8301\n0xEE77\t0x8362\n0xEE78\t0x837F\n0xEE79\t0x83C7\n0xEE7A\t0x83F6\n0xEE7B\t0x8448\n0xEE7C\t0x84B4\n0xEE7D\t0x8553\n0xEE7E\t0x8559\n0xEE80\t0x856B\n0xEE81\t0xFA1F\n0xEE82\t0x85B0\n0xEE83\t0xFA20\n0xEE84\t0xFA21\n0xEE85\t0x8807\n0xEE86\t0x88F5\n0xEE87\t0x8A12\n0xEE88\t0x8A37\n0xEE89\t0x8A79\n0xEE8A\t0x8AA7\n0xEE8B\t0x8ABE\n0xEE8C\t0x8ADF\n0xEE8D\t0xFA22\n0xEE8E\t0x8AF6\n0xEE8F\t0x8B53\n0xEE90\t0x8B7F\n0xEE91\t0x8CF0\n0xEE92\t0x8CF4\n0xEE93\t0x8D12\n0xEE94\t0x8D76\n0xEE95\t0xFA23\n0xEE96\t0x8ECF\n0xEE97\t0xFA24\n0xEE98\t0xFA25\n0xEE99\t0x9067\n0xEE9A\t0x90DE\n0xEE9B\t0xFA26\n0xEE9C\t0x9115\n0xEE9D\t0x9127\n0xEE9E\t0x91DA\n0xEE9F\t0x91D7\n0xEEA0\t0x91DE\n0xEEA1\t0x91ED\n0xEEA2\t0x91EE\n0xEEA3\t0x91E4\n0xEEA4\t0x91E5\n0xEEA5\t0x9206\n0xEEA6\t0x9210\n0xEEA7\t0x920A\n0xEEA8\t0x923A\n0xEEA9\t0x9240\n0xEEAA\t0x923C\n0xEEAB\t0x924E\n0xEEAC\t0x9259\n0xEEAD\t0x9251\n0xEEAE\t0x9239\n0xEEAF\t0x9267\n0xEEB0\t0x92A7\n0xEEB1\t0x9277\n0xEEB2\t0x9278\n0xEEB3\t0x92E7\n0xEEB4\t0x92D7\n0xEEB5\t0x92D9\n0xEEB6\t0x92D0\n0xEEB7\t0xFA27\n0xEEB8\t0x92D5\n0xEEB9\t0x92E0\n0xEEBA\t0x92D3\n0xEEBB\t0x9325\n0xEEBC\t0x9321\n0xEEBD\t0x92FB\n0xEEBE\t0xFA28\n0xEEBF\t0x931E\n0xEEC0\t0x92FF\n0xEEC1\t0x931D\n0xEEC2\t0x9302\n0xEEC3\t0x9370\n0xEEC4\t0x9357\n0xEEC5\t0x93A4\n0xEEC6\t0x93C6\n0xEEC7\t0x93DE\n0xEEC8\t0x93F8\n0xEEC9\t0x9431\n0xEECA\t0x9445\n0xEECB\t0x9448\n0xEECC\t0x9592\n0xEECD\t0xF9DC\n0xEECE\t0xFA29\n0xEECF\t0x969D\n0xEED0\t0x96AF\n0xEED1\t0x9733\n0xEED2\t0x973B\n0xEED3\t0x9743\n0xEED4\t0x974D\n0xEED5\t0x974F\n0xEED6\t0x9751\n0xEED7\t0x9755\n0xEED8\t0x9857\n0xEED9\t0x9865\n0xEEDA\t0xFA2A\n0xEEDB\t0xFA2B\n0xEEDC\t0x9927\n0xEEDD\t0xFA2C\n0xEEDE\t0x999E\n0xEEDF\t0x9A4E\n0xEEE0\t0x9AD9\n0xEEE1\t0x9ADC\n0xEEE2\t0x9B75\n0xEEE3\t0x9B72\n0xEEE4\t0x9B8F\n0xEEE5\t0x9BB1\n0xEEE6\t0x9BBB\n0xEEE7\t0x9C00\n0xEEE8\t0x9D70\n0xEEE9\t0x9D6B\n0xEEEA\t0xFA2D\n0xEEEB\t0x9E19\n0xEEEC\t0x9ED1\n0xEEEF\t0x2170\n0xEEF0\t0x2171\n0xEEF1\t0x2172\n0xEEF2\t0x2173\n0xEEF3\t0x2174\n0xEEF4\t0x2175\n0xEEF5\t0x2176\n0xEEF6\t0x2177\n0xEEF7\t0x2178\n0xEEF8\t0x2179\n0xEEF9\t0xFFE2\n0xEEFA\t0xFFE4\n0xEEFB\t0xFF07\n0xEEFC\t0xFF02\n0xF040\t0xE000\n0xF041\t0xE001\n0xF042\t0xE002\n0xF043\t0xE003\n0xF044\t0xE004\n0xF045\t0xE005\n0xF046\t0xE006\n0xF047\t0xE007\n0xF048\t0xE008\n0xF049\t0xE009\n0xF04A\t0xE00A\n0xF04B\t0xE00B\n0xF04C\t0xE00C\n0xF04D\t0xE00D\n0xF04E\t0xE00E\n0xF04F\t0xE00F\n0xF050\t0xE010\n0xF051\t0xE011\n0xF052\t0xE012\n0xF053\t0xE013\n0xF054\t0xE014\n0xF055\t0xE015\n0xF056\t0xE016\n0xF057\t0xE017\n0xF058\t0xE018\n0xF059\t0xE019\n0xF05A\t0xE01A\n0xF05B\t0xE01B\n0xF05C\t0xE01C\n0xF05D\t0xE01D\n0xF05E\t0xE01E\n0xF05F\t0xE01F\n0xF060\t0xE020\n0xF061\t0xE021\n0xF062\t0xE022\n0xF063\t0xE023\n0xF064\t0xE024\n0xF065\t0xE025\n0xF066\t0xE026\n0xF067\t0xE027\n0xF068\t0xE028\n0xF069\t0xE029\n0xF06A\t0xE02A\n0xF06B\t0xE02B\n0xF06C\t0xE02C\n0xF06D\t0xE02D\n0xF06E\t0xE02E\n0xF06F\t0xE02F\n0xF070\t0xE030\n0xF071\t0xE031\n0xF072\t0xE032\n0xF073\t0xE033\n0xF074\t0xE034\n0xF075\t0xE035\n0xF076\t0xE036\n0xF077\t0xE037\n0xF078\t0xE038\n0xF079\t0xE039\n0xF07A\t0xE03A\n0xF07B\t0xE03B\n0xF07C\t0xE03C\n0xF07D\t0xE03D\n0xF07E\t0xE03E\n0xF080\t0xE03F\n0xF081\t0xE040\n0xF082\t0xE041\n0xF083\t0xE042\n0xF084\t0xE043\n0xF085\t0xE044\n0xF086\t0xE045\n0xF087\t0xE046\n0xF088\t0xE047\n0xF089\t0xE048\n0xF08A\t0xE049\n0xF08B\t0xE04A\n0xF08C\t0xE04B\n0xF08D\t0xE04C\n0xF08E\t0xE04D\n0xF08F\t0xE04E\n0xF090\t0xE04F\n0xF091\t0xE050\n0xF092\t0xE051\n0xF093\t0xE052\n0xF094\t0xE053\n0xF095\t0xE054\n0xF096\t0xE055\n0xF097\t0xE056\n0xF098\t0xE057\n0xF099\t0xE058\n0xF09A\t0xE059\n0xF09B\t0xE05A\n0xF09C\t0xE05B\n0xF09D\t0xE05C\n0xF09E\t0xE05D\n0xF09F\t0xE05E\n0xF0A0\t0xE05F\n0xF0A1\t0xE060\n0xF0A2\t0xE061\n0xF0A3\t0xE062\n0xF0A4\t0xE063\n0xF0A5\t0xE064\n0xF0A6\t0xE065\n0xF0A7\t0xE066\n0xF0A8\t0xE067\n0xF0A9\t0xE068\n0xF0AA\t0xE069\n0xF0AB\t0xE06A\n0xF0AC\t0xE06B\n0xF0AD\t0xE06C\n0xF0AE\t0xE06D\n0xF0AF\t0xE06E\n0xF0B0\t0xE06F\n0xF0B1\t0xE070\n0xF0B2\t0xE071\n0xF0B3\t0xE072\n0xF0B4\t0xE073\n0xF0B5\t0xE074\n0xF0B6\t0xE075\n0xF0B7\t0xE076\n0xF0B8\t0xE077\n0xF0B9\t0xE078\n0xF0BA\t0xE079\n0xF0BB\t0xE07A\n0xF0BC\t0xE07B\n0xF0BD\t0xE07C\n0xF0BE\t0xE07D\n0xF0BF\t0xE07E\n0xF0C0\t0xE07F\n0xF0C1\t0xE080\n0xF0C2\t0xE081\n0xF0C3\t0xE082\n0xF0C4\t0xE083\n0xF0C5\t0xE084\n0xF0C6\t0xE085\n0xF0C7\t0xE086\n0xF0C8\t0xE087\n0xF0C9\t0xE088\n0xF0CA\t0xE089\n0xF0CB\t0xE08A\n0xF0CC\t0xE08B\n0xF0CD\t0xE08C\n0xF0CE\t0xE08D\n0xF0CF\t0xE08E\n0xF0D0\t0xE08F\n0xF0D1\t0xE090\n0xF0D2\t0xE091\n0xF0D3\t0xE092\n0xF0D4\t0xE093\n0xF0D5\t0xE094\n0xF0D6\t0xE095\n0xF0D7\t0xE096\n0xF0D8\t0xE097\n0xF0D9\t0xE098\n0xF0DA\t0xE099\n0xF0DB\t0xE09A\n0xF0DC\t0xE09B\n0xF0DD\t0xE09C\n0xF0DE\t0xE09D\n0xF0DF\t0xE09E\n0xF0E0\t0xE09F\n0xF0E1\t0xE0A0\n0xF0E2\t0xE0A1\n0xF0E3\t0xE0A2\n0xF0E4\t0xE0A3\n0xF0E5\t0xE0A4\n0xF0E6\t0xE0A5\n0xF0E7\t0xE0A6\n0xF0E8\t0xE0A7\n0xF0E9\t0xE0A8\n0xF0EA\t0xE0A9\n0xF0EB\t0xE0AA\n0xF0EC\t0xE0AB\n0xF0ED\t0xE0AC\n0xF0EE\t0xE0AD\n0xF0EF\t0xE0AE\n0xF0F0\t0xE0AF\n0xF0F1\t0xE0B0\n0xF0F2\t0xE0B1\n0xF0F3\t0xE0B2\n0xF0F4\t0xE0B3\n0xF0F5\t0xE0B4\n0xF0F6\t0xE0B5\n0xF0F7\t0xE0B6\n0xF0F8\t0xE0B7\n0xF0F9\t0xE0B8\n0xF0FA\t0xE0B9\n0xF0FB\t0xE0BA\n0xF0FC\t0xE0BB\n0xF140\t0xE0BC\n0xF141\t0xE0BD\n0xF142\t0xE0BE\n0xF143\t0xE0BF\n0xF144\t0xE0C0\n0xF145\t0xE0C1\n0xF146\t0xE0C2\n0xF147\t0xE0C3\n0xF148\t0xE0C4\n0xF149\t0xE0C5\n0xF14A\t0xE0C6\n0xF14B\t0xE0C7\n0xF14C\t0xE0C8\n0xF14D\t0xE0C9\n0xF14E\t0xE0CA\n0xF14F\t0xE0CB\n0xF150\t0xE0CC\n0xF151\t0xE0CD\n0xF152\t0xE0CE\n0xF153\t0xE0CF\n0xF154\t0xE0D0\n0xF155\t0xE0D1\n0xF156\t0xE0D2\n0xF157\t0xE0D3\n0xF158\t0xE0D4\n0xF159\t0xE0D5\n0xF15A\t0xE0D6\n0xF15B\t0xE0D7\n0xF15C\t0xE0D8\n0xF15D\t0xE0D9\n0xF15E\t0xE0DA\n0xF15F\t0xE0DB\n0xF160\t0xE0DC\n0xF161\t0xE0DD\n0xF162\t0xE0DE\n0xF163\t0xE0DF\n0xF164\t0xE0E0\n0xF165\t0xE0E1\n0xF166\t0xE0E2\n0xF167\t0xE0E3\n0xF168\t0xE0E4\n0xF169\t0xE0E5\n0xF16A\t0xE0E6\n0xF16B\t0xE0E7\n0xF16C\t0xE0E8\n0xF16D\t0xE0E9\n0xF16E\t0xE0EA\n0xF16F\t0xE0EB\n0xF170\t0xE0EC\n0xF171\t0xE0ED\n0xF172\t0xE0EE\n0xF173\t0xE0EF\n0xF174\t0xE0F0\n0xF175\t0xE0F1\n0xF176\t0xE0F2\n0xF177\t0xE0F3\n0xF178\t0xE0F4\n0xF179\t0xE0F5\n0xF17A\t0xE0F6\n0xF17B\t0xE0F7\n0xF17C\t0xE0F8\n0xF17D\t0xE0F9\n0xF17E\t0xE0FA\n0xF180\t0xE0FB\n0xF181\t0xE0FC\n0xF182\t0xE0FD\n0xF183\t0xE0FE\n0xF184\t0xE0FF\n0xF185\t0xE100\n0xF186\t0xE101\n0xF187\t0xE102\n0xF188\t0xE103\n0xF189\t0xE104\n0xF18A\t0xE105\n0xF18B\t0xE106\n0xF18C\t0xE107\n0xF18D\t0xE108\n0xF18E\t0xE109\n0xF18F\t0xE10A\n0xF190\t0xE10B\n0xF191\t0xE10C\n0xF192\t0xE10D\n0xF193\t0xE10E\n0xF194\t0xE10F\n0xF195\t0xE110\n0xF196\t0xE111\n0xF197\t0xE112\n0xF198\t0xE113\n0xF199\t0xE114\n0xF19A\t0xE115\n0xF19B\t0xE116\n0xF19C\t0xE117\n0xF19D\t0xE118\n0xF19E\t0xE119\n0xF19F\t0xE11A\n0xF1A0\t0xE11B\n0xF1A1\t0xE11C\n0xF1A2\t0xE11D\n0xF1A3\t0xE11E\n0xF1A4\t0xE11F\n0xF1A5\t0xE120\n0xF1A6\t0xE121\n0xF1A7\t0xE122\n0xF1A8\t0xE123\n0xF1A9\t0xE124\n0xF1AA\t0xE125\n0xF1AB\t0xE126\n0xF1AC\t0xE127\n0xF1AD\t0xE128\n0xF1AE\t0xE129\n0xF1AF\t0xE12A\n0xF1B0\t0xE12B\n0xF1B1\t0xE12C\n0xF1B2\t0xE12D\n0xF1B3\t0xE12E\n0xF1B4\t0xE12F\n0xF1B5\t0xE130\n0xF1B6\t0xE131\n0xF1B7\t0xE132\n0xF1B8\t0xE133\n0xF1B9\t0xE134\n0xF1BA\t0xE135\n0xF1BB\t0xE136\n0xF1BC\t0xE137\n0xF1BD\t0xE138\n0xF1BE\t0xE139\n0xF1BF\t0xE13A\n0xF1C0\t0xE13B\n0xF1C1\t0xE13C\n0xF1C2\t0xE13D\n0xF1C3\t0xE13E\n0xF1C4\t0xE13F\n0xF1C5\t0xE140\n0xF1C6\t0xE141\n0xF1C7\t0xE142\n0xF1C8\t0xE143\n0xF1C9\t0xE144\n0xF1CA\t0xE145\n0xF1CB\t0xE146\n0xF1CC\t0xE147\n0xF1CD\t0xE148\n0xF1CE\t0xE149\n0xF1CF\t0xE14A\n0xF1D0\t0xE14B\n0xF1D1\t0xE14C\n0xF1D2\t0xE14D\n0xF1D3\t0xE14E\n0xF1D4\t0xE14F\n0xF1D5\t0xE150\n0xF1D6\t0xE151\n0xF1D7\t0xE152\n0xF1D8\t0xE153\n0xF1D9\t0xE154\n0xF1DA\t0xE155\n0xF1DB\t0xE156\n0xF1DC\t0xE157\n0xF1DD\t0xE158\n0xF1DE\t0xE159\n0xF1DF\t0xE15A\n0xF1E0\t0xE15B\n0xF1E1\t0xE15C\n0xF1E2\t0xE15D\n0xF1E3\t0xE15E\n0xF1E4\t0xE15F\n0xF1E5\t0xE160\n0xF1E6\t0xE161\n0xF1E7\t0xE162\n0xF1E8\t0xE163\n0xF1E9\t0xE164\n0xF1EA\t0xE165\n0xF1EB\t0xE166\n0xF1EC\t0xE167\n0xF1ED\t0xE168\n0xF1EE\t0xE169\n0xF1EF\t0xE16A\n0xF1F0\t0xE16B\n0xF1F1\t0xE16C\n0xF1F2\t0xE16D\n0xF1F3\t0xE16E\n0xF1F4\t0xE16F\n0xF1F5\t0xE170\n0xF1F6\t0xE171\n0xF1F7\t0xE172\n0xF1F8\t0xE173\n0xF1F9\t0xE174\n0xF1FA\t0xE175\n0xF1FB\t0xE176\n0xF1FC\t0xE177\n0xF240\t0xE178\n0xF241\t0xE179\n0xF242\t0xE17A\n0xF243\t0xE17B\n0xF244\t0xE17C\n0xF245\t0xE17D\n0xF246\t0xE17E\n0xF247\t0xE17F\n0xF248\t0xE180\n0xF249\t0xE181\n0xF24A\t0xE182\n0xF24B\t0xE183\n0xF24C\t0xE184\n0xF24D\t0xE185\n0xF24E\t0xE186\n0xF24F\t0xE187\n0xF250\t0xE188\n0xF251\t0xE189\n0xF252\t0xE18A\n0xF253\t0xE18B\n0xF254\t0xE18C\n0xF255\t0xE18D\n0xF256\t0xE18E\n0xF257\t0xE18F\n0xF258\t0xE190\n0xF259\t0xE191\n0xF25A\t0xE192\n0xF25B\t0xE193\n0xF25C\t0xE194\n0xF25D\t0xE195\n0xF25E\t0xE196\n0xF25F\t0xE197\n0xF260\t0xE198\n0xF261\t0xE199\n0xF262\t0xE19A\n0xF263\t0xE19B\n0xF264\t0xE19C\n0xF265\t0xE19D\n0xF266\t0xE19E\n0xF267\t0xE19F\n0xF268\t0xE1A0\n0xF269\t0xE1A1\n0xF26A\t0xE1A2\n0xF26B\t0xE1A3\n0xF26C\t0xE1A4\n0xF26D\t0xE1A5\n0xF26E\t0xE1A6\n0xF26F\t0xE1A7\n0xF270\t0xE1A8\n0xF271\t0xE1A9\n0xF272\t0xE1AA\n0xF273\t0xE1AB\n0xF274\t0xE1AC\n0xF275\t0xE1AD\n0xF276\t0xE1AE\n0xF277\t0xE1AF\n0xF278\t0xE1B0\n0xF279\t0xE1B1\n0xF27A\t0xE1B2\n0xF27B\t0xE1B3\n0xF27C\t0xE1B4\n0xF27D\t0xE1B5\n0xF27E\t0xE1B6\n0xF280\t0xE1B7\n0xF281\t0xE1B8\n0xF282\t0xE1B9\n0xF283\t0xE1BA\n0xF284\t0xE1BB\n0xF285\t0xE1BC\n0xF286\t0xE1BD\n0xF287\t0xE1BE\n0xF288\t0xE1BF\n0xF289\t0xE1C0\n0xF28A\t0xE1C1\n0xF28B\t0xE1C2\n0xF28C\t0xE1C3\n0xF28D\t0xE1C4\n0xF28E\t0xE1C5\n0xF28F\t0xE1C6\n0xF290\t0xE1C7\n0xF291\t0xE1C8\n0xF292\t0xE1C9\n0xF293\t0xE1CA\n0xF294\t0xE1CB\n0xF295\t0xE1CC\n0xF296\t0xE1CD\n0xF297\t0xE1CE\n0xF298\t0xE1CF\n0xF299\t0xE1D0\n0xF29A\t0xE1D1\n0xF29B\t0xE1D2\n0xF29C\t0xE1D3\n0xF29D\t0xE1D4\n0xF29E\t0xE1D5\n0xF29F\t0xE1D6\n0xF2A0\t0xE1D7\n0xF2A1\t0xE1D8\n0xF2A2\t0xE1D9\n0xF2A3\t0xE1DA\n0xF2A4\t0xE1DB\n0xF2A5\t0xE1DC\n0xF2A6\t0xE1DD\n0xF2A7\t0xE1DE\n0xF2A8\t0xE1DF\n0xF2A9\t0xE1E0\n0xF2AA\t0xE1E1\n0xF2AB\t0xE1E2\n0xF2AC\t0xE1E3\n0xF2AD\t0xE1E4\n0xF2AE\t0xE1E5\n0xF2AF\t0xE1E6\n0xF2B0\t0xE1E7\n0xF2B1\t0xE1E8\n0xF2B2\t0xE1E9\n0xF2B3\t0xE1EA\n0xF2B4\t0xE1EB\n0xF2B5\t0xE1EC\n0xF2B6\t0xE1ED\n0xF2B7\t0xE1EE\n0xF2B8\t0xE1EF\n0xF2B9\t0xE1F0\n0xF2BA\t0xE1F1\n0xF2BB\t0xE1F2\n0xF2BC\t0xE1F3\n0xF2BD\t0xE1F4\n0xF2BE\t0xE1F5\n0xF2BF\t0xE1F6\n0xF2C0\t0xE1F7\n0xF2C1\t0xE1F8\n0xF2C2\t0xE1F9\n0xF2C3\t0xE1FA\n0xF2C4\t0xE1FB\n0xF2C5\t0xE1FC\n0xF2C6\t0xE1FD\n0xF2C7\t0xE1FE\n0xF2C8\t0xE1FF\n0xF2C9\t0xE200\n0xF2CA\t0xE201\n0xF2CB\t0xE202\n0xF2CC\t0xE203\n0xF2CD\t0xE204\n0xF2CE\t0xE205\n0xF2CF\t0xE206\n0xF2D0\t0xE207\n0xF2D1\t0xE208\n0xF2D2\t0xE209\n0xF2D3\t0xE20A\n0xF2D4\t0xE20B\n0xF2D5\t0xE20C\n0xF2D6\t0xE20D\n0xF2D7\t0xE20E\n0xF2D8\t0xE20F\n0xF2D9\t0xE210\n0xF2DA\t0xE211\n0xF2DB\t0xE212\n0xF2DC\t0xE213\n0xF2DD\t0xE214\n0xF2DE\t0xE215\n0xF2DF\t0xE216\n0xF2E0\t0xE217\n0xF2E1\t0xE218\n0xF2E2\t0xE219\n0xF2E3\t0xE21A\n0xF2E4\t0xE21B\n0xF2E5\t0xE21C\n0xF2E6\t0xE21D\n0xF2E7\t0xE21E\n0xF2E8\t0xE21F\n0xF2E9\t0xE220\n0xF2EA\t0xE221\n0xF2EB\t0xE222\n0xF2EC\t0xE223\n0xF2ED\t0xE224\n0xF2EE\t0xE225\n0xF2EF\t0xE226\n0xF2F0\t0xE227\n0xF2F1\t0xE228\n0xF2F2\t0xE229\n0xF2F3\t0xE22A\n0xF2F4\t0xE22B\n0xF2F5\t0xE22C\n0xF2F6\t0xE22D\n0xF2F7\t0xE22E\n0xF2F8\t0xE22F\n0xF2F9\t0xE230\n0xF2FA\t0xE231\n0xF2FB\t0xE232\n0xF2FC\t0xE233\n0xF340\t0xE234\n0xF341\t0xE235\n0xF342\t0xE236\n0xF343\t0xE237\n0xF344\t0xE238\n0xF345\t0xE239\n0xF346\t0xE23A\n0xF347\t0xE23B\n0xF348\t0xE23C\n0xF349\t0xE23D\n0xF34A\t0xE23E\n0xF34B\t0xE23F\n0xF34C\t0xE240\n0xF34D\t0xE241\n0xF34E\t0xE242\n0xF34F\t0xE243\n0xF350\t0xE244\n0xF351\t0xE245\n0xF352\t0xE246\n0xF353\t0xE247\n0xF354\t0xE248\n0xF355\t0xE249\n0xF356\t0xE24A\n0xF357\t0xE24B\n0xF358\t0xE24C\n0xF359\t0xE24D\n0xF35A\t0xE24E\n0xF35B\t0xE24F\n0xF35C\t0xE250\n0xF35D\t0xE251\n0xF35E\t0xE252\n0xF35F\t0xE253\n0xF360\t0xE254\n0xF361\t0xE255\n0xF362\t0xE256\n0xF363\t0xE257\n0xF364\t0xE258\n0xF365\t0xE259\n0xF366\t0xE25A\n0xF367\t0xE25B\n0xF368\t0xE25C\n0xF369\t0xE25D\n0xF36A\t0xE25E\n0xF36B\t0xE25F\n0xF36C\t0xE260\n0xF36D\t0xE261\n0xF36E\t0xE262\n0xF36F\t0xE263\n0xF370\t0xE264\n0xF371\t0xE265\n0xF372\t0xE266\n0xF373\t0xE267\n0xF374\t0xE268\n0xF375\t0xE269\n0xF376\t0xE26A\n0xF377\t0xE26B\n0xF378\t0xE26C\n0xF379\t0xE26D\n0xF37A\t0xE26E\n0xF37B\t0xE26F\n0xF37C\t0xE270\n0xF37D\t0xE271\n0xF37E\t0xE272\n0xF380\t0xE273\n0xF381\t0xE274\n0xF382\t0xE275\n0xF383\t0xE276\n0xF384\t0xE277\n0xF385\t0xE278\n0xF386\t0xE279\n0xF387\t0xE27A\n0xF388\t0xE27B\n0xF389\t0xE27C\n0xF38A\t0xE27D\n0xF38B\t0xE27E\n0xF38C\t0xE27F\n0xF38D\t0xE280\n0xF38E\t0xE281\n0xF38F\t0xE282\n0xF390\t0xE283\n0xF391\t0xE284\n0xF392\t0xE285\n0xF393\t0xE286\n0xF394\t0xE287\n0xF395\t0xE288\n0xF396\t0xE289\n0xF397\t0xE28A\n0xF398\t0xE28B\n0xF399\t0xE28C\n0xF39A\t0xE28D\n0xF39B\t0xE28E\n0xF39C\t0xE28F\n0xF39D\t0xE290\n0xF39E\t0xE291\n0xF39F\t0xE292\n0xF3A0\t0xE293\n0xF3A1\t0xE294\n0xF3A2\t0xE295\n0xF3A3\t0xE296\n0xF3A4\t0xE297\n0xF3A5\t0xE298\n0xF3A6\t0xE299\n0xF3A7\t0xE29A\n0xF3A8\t0xE29B\n0xF3A9\t0xE29C\n0xF3AA\t0xE29D\n0xF3AB\t0xE29E\n0xF3AC\t0xE29F\n0xF3AD\t0xE2A0\n0xF3AE\t0xE2A1\n0xF3AF\t0xE2A2\n0xF3B0\t0xE2A3\n0xF3B1\t0xE2A4\n0xF3B2\t0xE2A5\n0xF3B3\t0xE2A6\n0xF3B4\t0xE2A7\n0xF3B5\t0xE2A8\n0xF3B6\t0xE2A9\n0xF3B7\t0xE2AA\n0xF3B8\t0xE2AB\n0xF3B9\t0xE2AC\n0xF3BA\t0xE2AD\n0xF3BB\t0xE2AE\n0xF3BC\t0xE2AF\n0xF3BD\t0xE2B0\n0xF3BE\t0xE2B1\n0xF3BF\t0xE2B2\n0xF3C0\t0xE2B3\n0xF3C1\t0xE2B4\n0xF3C2\t0xE2B5\n0xF3C3\t0xE2B6\n0xF3C4\t0xE2B7\n0xF3C5\t0xE2B8\n0xF3C6\t0xE2B9\n0xF3C7\t0xE2BA\n0xF3C8\t0xE2BB\n0xF3C9\t0xE2BC\n0xF3CA\t0xE2BD\n0xF3CB\t0xE2BE\n0xF3CC\t0xE2BF\n0xF3CD\t0xE2C0\n0xF3CE\t0xE2C1\n0xF3CF\t0xE2C2\n0xF3D0\t0xE2C3\n0xF3D1\t0xE2C4\n0xF3D2\t0xE2C5\n0xF3D3\t0xE2C6\n0xF3D4\t0xE2C7\n0xF3D5\t0xE2C8\n0xF3D6\t0xE2C9\n0xF3D7\t0xE2CA\n0xF3D8\t0xE2CB\n0xF3D9\t0xE2CC\n0xF3DA\t0xE2CD\n0xF3DB\t0xE2CE\n0xF3DC\t0xE2CF\n0xF3DD\t0xE2D0\n0xF3DE\t0xE2D1\n0xF3DF\t0xE2D2\n0xF3E0\t0xE2D3\n0xF3E1\t0xE2D4\n0xF3E2\t0xE2D5\n0xF3E3\t0xE2D6\n0xF3E4\t0xE2D7\n0xF3E5\t0xE2D8\n0xF3E6\t0xE2D9\n0xF3E7\t0xE2DA\n0xF3E8\t0xE2DB\n0xF3E9\t0xE2DC\n0xF3EA\t0xE2DD\n0xF3EB\t0xE2DE\n0xF3EC\t0xE2DF\n0xF3ED\t0xE2E0\n0xF3EE\t0xE2E1\n0xF3EF\t0xE2E2\n0xF3F0\t0xE2E3\n0xF3F1\t0xE2E4\n0xF3F2\t0xE2E5\n0xF3F3\t0xE2E6\n0xF3F4\t0xE2E7\n0xF3F5\t0xE2E8\n0xF3F6\t0xE2E9\n0xF3F7\t0xE2EA\n0xF3F8\t0xE2EB\n0xF3F9\t0xE2EC\n0xF3FA\t0xE2ED\n0xF3FB\t0xE2EE\n0xF3FC\t0xE2EF\n0xF440\t0xE2F0\n0xF441\t0xE2F1\n0xF442\t0xE2F2\n0xF443\t0xE2F3\n0xF444\t0xE2F4\n0xF445\t0xE2F5\n0xF446\t0xE2F6\n0xF447\t0xE2F7\n0xF448\t0xE2F8\n0xF449\t0xE2F9\n0xF44A\t0xE2FA\n0xF44B\t0xE2FB\n0xF44C\t0xE2FC\n0xF44D\t0xE2FD\n0xF44E\t0xE2FE\n0xF44F\t0xE2FF\n0xF450\t0xE300\n0xF451\t0xE301\n0xF452\t0xE302\n0xF453\t0xE303\n0xF454\t0xE304\n0xF455\t0xE305\n0xF456\t0xE306\n0xF457\t0xE307\n0xF458\t0xE308\n0xF459\t0xE309\n0xF45A\t0xE30A\n0xF45B\t0xE30B\n0xF45C\t0xE30C\n0xF45D\t0xE30D\n0xF45E\t0xE30E\n0xF45F\t0xE30F\n0xF460\t0xE310\n0xF461\t0xE311\n0xF462\t0xE312\n0xF463\t0xE313\n0xF464\t0xE314\n0xF465\t0xE315\n0xF466\t0xE316\n0xF467\t0xE317\n0xF468\t0xE318\n0xF469\t0xE319\n0xF46A\t0xE31A\n0xF46B\t0xE31B\n0xF46C\t0xE31C\n0xF46D\t0xE31D\n0xF46E\t0xE31E\n0xF46F\t0xE31F\n0xF470\t0xE320\n0xF471\t0xE321\n0xF472\t0xE322\n0xF473\t0xE323\n0xF474\t0xE324\n0xF475\t0xE325\n0xF476\t0xE326\n0xF477\t0xE327\n0xF478\t0xE328\n0xF479\t0xE329\n0xF47A\t0xE32A\n0xF47B\t0xE32B\n0xF47C\t0xE32C\n0xF47D\t0xE32D\n0xF47E\t0xE32E\n0xF480\t0xE32F\n0xF481\t0xE330\n0xF482\t0xE331\n0xF483\t0xE332\n0xF484\t0xE333\n0xF485\t0xE334\n0xF486\t0xE335\n0xF487\t0xE336\n0xF488\t0xE337\n0xF489\t0xE338\n0xF48A\t0xE339\n0xF48B\t0xE33A\n0xF48C\t0xE33B\n0xF48D\t0xE33C\n0xF48E\t0xE33D\n0xF48F\t0xE33E\n0xF490\t0xE33F\n0xF491\t0xE340\n0xF492\t0xE341\n0xF493\t0xE342\n0xF494\t0xE343\n0xF495\t0xE344\n0xF496\t0xE345\n0xF497\t0xE346\n0xF498\t0xE347\n0xF499\t0xE348\n0xF49A\t0xE349\n0xF49B\t0xE34A\n0xF49C\t0xE34B\n0xF49D\t0xE34C\n0xF49E\t0xE34D\n0xF49F\t0xE34E\n0xF4A0\t0xE34F\n0xF4A1\t0xE350\n0xF4A2\t0xE351\n0xF4A3\t0xE352\n0xF4A4\t0xE353\n0xF4A5\t0xE354\n0xF4A6\t0xE355\n0xF4A7\t0xE356\n0xF4A8\t0xE357\n0xF4A9\t0xE358\n0xF4AA\t0xE359\n0xF4AB\t0xE35A\n0xF4AC\t0xE35B\n0xF4AD\t0xE35C\n0xF4AE\t0xE35D\n0xF4AF\t0xE35E\n0xF4B0\t0xE35F\n0xF4B1\t0xE360\n0xF4B2\t0xE361\n0xF4B3\t0xE362\n0xF4B4\t0xE363\n0xF4B5\t0xE364\n0xF4B6\t0xE365\n0xF4B7\t0xE366\n0xF4B8\t0xE367\n0xF4B9\t0xE368\n0xF4BA\t0xE369\n0xF4BB\t0xE36A\n0xF4BC\t0xE36B\n0xF4BD\t0xE36C\n0xF4BE\t0xE36D\n0xF4BF\t0xE36E\n0xF4C0\t0xE36F\n0xF4C1\t0xE370\n0xF4C2\t0xE371\n0xF4C3\t0xE372\n0xF4C4\t0xE373\n0xF4C5\t0xE374\n0xF4C6\t0xE375\n0xF4C7\t0xE376\n0xF4C8\t0xE377\n0xF4C9\t0xE378\n0xF4CA\t0xE379\n0xF4CB\t0xE37A\n0xF4CC\t0xE37B\n0xF4CD\t0xE37C\n0xF4CE\t0xE37D\n0xF4CF\t0xE37E\n0xF4D0\t0xE37F\n0xF4D1\t0xE380\n0xF4D2\t0xE381\n0xF4D3\t0xE382\n0xF4D4\t0xE383\n0xF4D5\t0xE384\n0xF4D6\t0xE385\n0xF4D7\t0xE386\n0xF4D8\t0xE387\n0xF4D9\t0xE388\n0xF4DA\t0xE389\n0xF4DB\t0xE38A\n0xF4DC\t0xE38B\n0xF4DD\t0xE38C\n0xF4DE\t0xE38D\n0xF4DF\t0xE38E\n0xF4E0\t0xE38F\n0xF4E1\t0xE390\n0xF4E2\t0xE391\n0xF4E3\t0xE392\n0xF4E4\t0xE393\n0xF4E5\t0xE394\n0xF4E6\t0xE395\n0xF4E7\t0xE396\n0xF4E8\t0xE397\n0xF4E9\t0xE398\n0xF4EA\t0xE399\n0xF4EB\t0xE39A\n0xF4EC\t0xE39B\n0xF4ED\t0xE39C\n0xF4EE\t0xE39D\n0xF4EF\t0xE39E\n0xF4F0\t0xE39F\n0xF4F1\t0xE3A0\n0xF4F2\t0xE3A1\n0xF4F3\t0xE3A2\n0xF4F4\t0xE3A3\n0xF4F5\t0xE3A4\n0xF4F6\t0xE3A5\n0xF4F7\t0xE3A6\n0xF4F8\t0xE3A7\n0xF4F9\t0xE3A8\n0xF4FA\t0xE3A9\n0xF4FB\t0xE3AA\n0xF4FC\t0xE3AB\n0xF540\t0xE3AC\n0xF541\t0xE3AD\n0xF542\t0xE3AE\n0xF543\t0xE3AF\n0xF544\t0xE3B0\n0xF545\t0xE3B1\n0xF546\t0xE3B2\n0xF547\t0xE3B3\n0xF548\t0xE3B4\n0xF549\t0xE3B5\n0xF54A\t0xE3B6\n0xF54B\t0xE3B7\n0xF54C\t0xE3B8\n0xF54D\t0xE3B9\n0xF54E\t0xE3BA\n0xF54F\t0xE3BB\n0xF550\t0xE3BC\n0xF551\t0xE3BD\n0xF552\t0xE3BE\n0xF553\t0xE3BF\n0xF554\t0xE3C0\n0xF555\t0xE3C1\n0xF556\t0xE3C2\n0xF557\t0xE3C3\n0xF558\t0xE3C4\n0xF559\t0xE3C5\n0xF55A\t0xE3C6\n0xF55B\t0xE3C7\n0xF55C\t0xE3C8\n0xF55D\t0xE3C9\n0xF55E\t0xE3CA\n0xF55F\t0xE3CB\n0xF560\t0xE3CC\n0xF561\t0xE3CD\n0xF562\t0xE3CE\n0xF563\t0xE3CF\n0xF564\t0xE3D0\n0xF565\t0xE3D1\n0xF566\t0xE3D2\n0xF567\t0xE3D3\n0xF568\t0xE3D4\n0xF569\t0xE3D5\n0xF56A\t0xE3D6\n0xF56B\t0xE3D7\n0xF56C\t0xE3D8\n0xF56D\t0xE3D9\n0xF56E\t0xE3DA\n0xF56F\t0xE3DB\n0xF570\t0xE3DC\n0xF571\t0xE3DD\n0xF572\t0xE3DE\n0xF573\t0xE3DF\n0xF574\t0xE3E0\n0xF575\t0xE3E1\n0xF576\t0xE3E2\n0xF577\t0xE3E3\n0xF578\t0xE3E4\n0xF579\t0xE3E5\n0xF57A\t0xE3E6\n0xF57B\t0xE3E7\n0xF57C\t0xE3E8\n0xF57D\t0xE3E9\n0xF57E\t0xE3EA\n0xF580\t0xE3EB\n0xF581\t0xE3EC\n0xF582\t0xE3ED\n0xF583\t0xE3EE\n0xF584\t0xE3EF\n0xF585\t0xE3F0\n0xF586\t0xE3F1\n0xF587\t0xE3F2\n0xF588\t0xE3F3\n0xF589\t0xE3F4\n0xF58A\t0xE3F5\n0xF58B\t0xE3F6\n0xF58C\t0xE3F7\n0xF58D\t0xE3F8\n0xF58E\t0xE3F9\n0xF58F\t0xE3FA\n0xF590\t0xE3FB\n0xF591\t0xE3FC\n0xF592\t0xE3FD\n0xF593\t0xE3FE\n0xF594\t0xE3FF\n0xF595\t0xE400\n0xF596\t0xE401\n0xF597\t0xE402\n0xF598\t0xE403\n0xF599\t0xE404\n0xF59A\t0xE405\n0xF59B\t0xE406\n0xF59C\t0xE407\n0xF59D\t0xE408\n0xF59E\t0xE409\n0xF59F\t0xE40A\n0xF5A0\t0xE40B\n0xF5A1\t0xE40C\n0xF5A2\t0xE40D\n0xF5A3\t0xE40E\n0xF5A4\t0xE40F\n0xF5A5\t0xE410\n0xF5A6\t0xE411\n0xF5A7\t0xE412\n0xF5A8\t0xE413\n0xF5A9\t0xE414\n0xF5AA\t0xE415\n0xF5AB\t0xE416\n0xF5AC\t0xE417\n0xF5AD\t0xE418\n0xF5AE\t0xE419\n0xF5AF\t0xE41A\n0xF5B0\t0xE41B\n0xF5B1\t0xE41C\n0xF5B2\t0xE41D\n0xF5B3\t0xE41E\n0xF5B4\t0xE41F\n0xF5B5\t0xE420\n0xF5B6\t0xE421\n0xF5B7\t0xE422\n0xF5B8\t0xE423\n0xF5B9\t0xE424\n0xF5BA\t0xE425\n0xF5BB\t0xE426\n0xF5BC\t0xE427\n0xF5BD\t0xE428\n0xF5BE\t0xE429\n0xF5BF\t0xE42A\n0xF5C0\t0xE42B\n0xF5C1\t0xE42C\n0xF5C2\t0xE42D\n0xF5C3\t0xE42E\n0xF5C4\t0xE42F\n0xF5C5\t0xE430\n0xF5C6\t0xE431\n0xF5C7\t0xE432\n0xF5C8\t0xE433\n0xF5C9\t0xE434\n0xF5CA\t0xE435\n0xF5CB\t0xE436\n0xF5CC\t0xE437\n0xF5CD\t0xE438\n0xF5CE\t0xE439\n0xF5CF\t0xE43A\n0xF5D0\t0xE43B\n0xF5D1\t0xE43C\n0xF5D2\t0xE43D\n0xF5D3\t0xE43E\n0xF5D4\t0xE43F\n0xF5D5\t0xE440\n0xF5D6\t0xE441\n0xF5D7\t0xE442\n0xF5D8\t0xE443\n0xF5D9\t0xE444\n0xF5DA\t0xE445\n0xF5DB\t0xE446\n0xF5DC\t0xE447\n0xF5DD\t0xE448\n0xF5DE\t0xE449\n0xF5DF\t0xE44A\n0xF5E0\t0xE44B\n0xF5E1\t0xE44C\n0xF5E2\t0xE44D\n0xF5E3\t0xE44E\n0xF5E4\t0xE44F\n0xF5E5\t0xE450\n0xF5E6\t0xE451\n0xF5E7\t0xE452\n0xF5E8\t0xE453\n0xF5E9\t0xE454\n0xF5EA\t0xE455\n0xF5EB\t0xE456\n0xF5EC\t0xE457\n0xF5ED\t0xE458\n0xF5EE\t0xE459\n0xF5EF\t0xE45A\n0xF5F0\t0xE45B\n0xF5F1\t0xE45C\n0xF5F2\t0xE45D\n0xF5F3\t0xE45E\n0xF5F4\t0xE45F\n0xF5F5\t0xE460\n0xF5F6\t0xE461\n0xF5F7\t0xE462\n0xF5F8\t0xE463\n0xF5F9\t0xE464\n0xF5FA\t0xE465\n0xF5FB\t0xE466\n0xF5FC\t0xE467\n0xF640\t0xE468\n0xF641\t0xE469\n0xF642\t0xE46A\n0xF643\t0xE46B\n0xF644\t0xE46C\n0xF645\t0xE46D\n0xF646\t0xE46E\n0xF647\t0xE46F\n0xF648\t0xE470\n0xF649\t0xE471\n0xF64A\t0xE472\n0xF64B\t0xE473\n0xF64C\t0xE474\n0xF64D\t0xE475\n0xF64E\t0xE476\n0xF64F\t0xE477\n0xF650\t0xE478\n0xF651\t0xE479\n0xF652\t0xE47A\n0xF653\t0xE47B\n0xF654\t0xE47C\n0xF655\t0xE47D\n0xF656\t0xE47E\n0xF657\t0xE47F\n0xF658\t0xE480\n0xF659\t0xE481\n0xF65A\t0xE482\n0xF65B\t0xE483\n0xF65C\t0xE484\n0xF65D\t0xE485\n0xF65E\t0xE486\n0xF65F\t0xE487\n0xF660\t0xE488\n0xF661\t0xE489\n0xF662\t0xE48A\n0xF663\t0xE48B\n0xF664\t0xE48C\n0xF665\t0xE48D\n0xF666\t0xE48E\n0xF667\t0xE48F\n0xF668\t0xE490\n0xF669\t0xE491\n0xF66A\t0xE492\n0xF66B\t0xE493\n0xF66C\t0xE494\n0xF66D\t0xE495\n0xF66E\t0xE496\n0xF66F\t0xE497\n0xF670\t0xE498\n0xF671\t0xE499\n0xF672\t0xE49A\n0xF673\t0xE49B\n0xF674\t0xE49C\n0xF675\t0xE49D\n0xF676\t0xE49E\n0xF677\t0xE49F\n0xF678\t0xE4A0\n0xF679\t0xE4A1\n0xF67A\t0xE4A2\n0xF67B\t0xE4A3\n0xF67C\t0xE4A4\n0xF67D\t0xE4A5\n0xF67E\t0xE4A6\n0xF680\t0xE4A7\n0xF681\t0xE4A8\n0xF682\t0xE4A9\n0xF683\t0xE4AA\n0xF684\t0xE4AB\n0xF685\t0xE4AC\n0xF686\t0xE4AD\n0xF687\t0xE4AE\n0xF688\t0xE4AF\n0xF689\t0xE4B0\n0xF68A\t0xE4B1\n0xF68B\t0xE4B2\n0xF68C\t0xE4B3\n0xF68D\t0xE4B4\n0xF68E\t0xE4B5\n0xF68F\t0xE4B6\n0xF690\t0xE4B7\n0xF691\t0xE4B8\n0xF692\t0xE4B9\n0xF693\t0xE4BA\n0xF694\t0xE4BB\n0xF695\t0xE4BC\n0xF696\t0xE4BD\n0xF697\t0xE4BE\n0xF698\t0xE4BF\n0xF699\t0xE4C0\n0xF69A\t0xE4C1\n0xF69B\t0xE4C2\n0xF69C\t0xE4C3\n0xF69D\t0xE4C4\n0xF69E\t0xE4C5\n0xF69F\t0xE4C6\n0xF6A0\t0xE4C7\n0xF6A1\t0xE4C8\n0xF6A2\t0xE4C9\n0xF6A3\t0xE4CA\n0xF6A4\t0xE4CB\n0xF6A5\t0xE4CC\n0xF6A6\t0xE4CD\n0xF6A7\t0xE4CE\n0xF6A8\t0xE4CF\n0xF6A9\t0xE4D0\n0xF6AA\t0xE4D1\n0xF6AB\t0xE4D2\n0xF6AC\t0xE4D3\n0xF6AD\t0xE4D4\n0xF6AE\t0xE4D5\n0xF6AF\t0xE4D6\n0xF6B0\t0xE4D7\n0xF6B1\t0xE4D8\n0xF6B2\t0xE4D9\n0xF6B3\t0xE4DA\n0xF6B4\t0xE4DB\n0xF6B5\t0xE4DC\n0xF6B6\t0xE4DD\n0xF6B7\t0xE4DE\n0xF6B8\t0xE4DF\n0xF6B9\t0xE4E0\n0xF6BA\t0xE4E1\n0xF6BB\t0xE4E2\n0xF6BC\t0xE4E3\n0xF6BD\t0xE4E4\n0xF6BE\t0xE4E5\n0xF6BF\t0xE4E6\n0xF6C0\t0xE4E7\n0xF6C1\t0xE4E8\n0xF6C2\t0xE4E9\n0xF6C3\t0xE4EA\n0xF6C4\t0xE4EB\n0xF6C5\t0xE4EC\n0xF6C6\t0xE4ED\n0xF6C7\t0xE4EE\n0xF6C8\t0xE4EF\n0xF6C9\t0xE4F0\n0xF6CA\t0xE4F1\n0xF6CB\t0xE4F2\n0xF6CC\t0xE4F3\n0xF6CD\t0xE4F4\n0xF6CE\t0xE4F5\n0xF6CF\t0xE4F6\n0xF6D0\t0xE4F7\n0xF6D1\t0xE4F8\n0xF6D2\t0xE4F9\n0xF6D3\t0xE4FA\n0xF6D4\t0xE4FB\n0xF6D5\t0xE4FC\n0xF6D6\t0xE4FD\n0xF6D7\t0xE4FE\n0xF6D8\t0xE4FF\n0xF6D9\t0xE500\n0xF6DA\t0xE501\n0xF6DB\t0xE502\n0xF6DC\t0xE503\n0xF6DD\t0xE504\n0xF6DE\t0xE505\n0xF6DF\t0xE506\n0xF6E0\t0xE507\n0xF6E1\t0xE508\n0xF6E2\t0xE509\n0xF6E3\t0xE50A\n0xF6E4\t0xE50B\n0xF6E5\t0xE50C\n0xF6E6\t0xE50D\n0xF6E7\t0xE50E\n0xF6E8\t0xE50F\n0xF6E9\t0xE510\n0xF6EA\t0xE511\n0xF6EB\t0xE512\n0xF6EC\t0xE513\n0xF6ED\t0xE514\n0xF6EE\t0xE515\n0xF6EF\t0xE516\n0xF6F0\t0xE517\n0xF6F1\t0xE518\n0xF6F2\t0xE519\n0xF6F3\t0xE51A\n0xF6F4\t0xE51B\n0xF6F5\t0xE51C\n0xF6F6\t0xE51D\n0xF6F7\t0xE51E\n0xF6F8\t0xE51F\n0xF6F9\t0xE520\n0xF6FA\t0xE521\n0xF6FB\t0xE522\n0xF6FC\t0xE523\n0xF740\t0xE524\n0xF741\t0xE525\n0xF742\t0xE526\n0xF743\t0xE527\n0xF744\t0xE528\n0xF745\t0xE529\n0xF746\t0xE52A\n0xF747\t0xE52B\n0xF748\t0xE52C\n0xF749\t0xE52D\n0xF74A\t0xE52E\n0xF74B\t0xE52F\n0xF74C\t0xE530\n0xF74D\t0xE531\n0xF74E\t0xE532\n0xF74F\t0xE533\n0xF750\t0xE534\n0xF751\t0xE535\n0xF752\t0xE536\n0xF753\t0xE537\n0xF754\t0xE538\n0xF755\t0xE539\n0xF756\t0xE53A\n0xF757\t0xE53B\n0xF758\t0xE53C\n0xF759\t0xE53D\n0xF75A\t0xE53E\n0xF75B\t0xE53F\n0xF75C\t0xE540\n0xF75D\t0xE541\n0xF75E\t0xE542\n0xF75F\t0xE543\n0xF760\t0xE544\n0xF761\t0xE545\n0xF762\t0xE546\n0xF763\t0xE547\n0xF764\t0xE548\n0xF765\t0xE549\n0xF766\t0xE54A\n0xF767\t0xE54B\n0xF768\t0xE54C\n0xF769\t0xE54D\n0xF76A\t0xE54E\n0xF76B\t0xE54F\n0xF76C\t0xE550\n0xF76D\t0xE551\n0xF76E\t0xE552\n0xF76F\t0xE553\n0xF770\t0xE554\n0xF771\t0xE555\n0xF772\t0xE556\n0xF773\t0xE557\n0xF774\t0xE558\n0xF775\t0xE559\n0xF776\t0xE55A\n0xF777\t0xE55B\n0xF778\t0xE55C\n0xF779\t0xE55D\n0xF77A\t0xE55E\n0xF77B\t0xE55F\n0xF77C\t0xE560\n0xF77D\t0xE561\n0xF77E\t0xE562\n0xF780\t0xE563\n0xF781\t0xE564\n0xF782\t0xE565\n0xF783\t0xE566\n0xF784\t0xE567\n0xF785\t0xE568\n0xF786\t0xE569\n0xF787\t0xE56A\n0xF788\t0xE56B\n0xF789\t0xE56C\n0xF78A\t0xE56D\n0xF78B\t0xE56E\n0xF78C\t0xE56F\n0xF78D\t0xE570\n0xF78E\t0xE571\n0xF78F\t0xE572\n0xF790\t0xE573\n0xF791\t0xE574\n0xF792\t0xE575\n0xF793\t0xE576\n0xF794\t0xE577\n0xF795\t0xE578\n0xF796\t0xE579\n0xF797\t0xE57A\n0xF798\t0xE57B\n0xF799\t0xE57C\n0xF79A\t0xE57D\n0xF79B\t0xE57E\n0xF79C\t0xE57F\n0xF79D\t0xE580\n0xF79E\t0xE581\n0xF79F\t0xE582\n0xF7A0\t0xE583\n0xF7A1\t0xE584\n0xF7A2\t0xE585\n0xF7A3\t0xE586\n0xF7A4\t0xE587\n0xF7A5\t0xE588\n0xF7A6\t0xE589\n0xF7A7\t0xE58A\n0xF7A8\t0xE58B\n0xF7A9\t0xE58C\n0xF7AA\t0xE58D\n0xF7AB\t0xE58E\n0xF7AC\t0xE58F\n0xF7AD\t0xE590\n0xF7AE\t0xE591\n0xF7AF\t0xE592\n0xF7B0\t0xE593\n0xF7B1\t0xE594\n0xF7B2\t0xE595\n0xF7B3\t0xE596\n0xF7B4\t0xE597\n0xF7B5\t0xE598\n0xF7B6\t0xE599\n0xF7B7\t0xE59A\n0xF7B8\t0xE59B\n0xF7B9\t0xE59C\n0xF7BA\t0xE59D\n0xF7BB\t0xE59E\n0xF7BC\t0xE59F\n0xF7BD\t0xE5A0\n0xF7BE\t0xE5A1\n0xF7BF\t0xE5A2\n0xF7C0\t0xE5A3\n0xF7C1\t0xE5A4\n0xF7C2\t0xE5A5\n0xF7C3\t0xE5A6\n0xF7C4\t0xE5A7\n0xF7C5\t0xE5A8\n0xF7C6\t0xE5A9\n0xF7C7\t0xE5AA\n0xF7C8\t0xE5AB\n0xF7C9\t0xE5AC\n0xF7CA\t0xE5AD\n0xF7CB\t0xE5AE\n0xF7CC\t0xE5AF\n0xF7CD\t0xE5B0\n0xF7CE\t0xE5B1\n0xF7CF\t0xE5B2\n0xF7D0\t0xE5B3\n0xF7D1\t0xE5B4\n0xF7D2\t0xE5B5\n0xF7D3\t0xE5B6\n0xF7D4\t0xE5B7\n0xF7D5\t0xE5B8\n0xF7D6\t0xE5B9\n0xF7D7\t0xE5BA\n0xF7D8\t0xE5BB\n0xF7D9\t0xE5BC\n0xF7DA\t0xE5BD\n0xF7DB\t0xE5BE\n0xF7DC\t0xE5BF\n0xF7DD\t0xE5C0\n0xF7DE\t0xE5C1\n0xF7DF\t0xE5C2\n0xF7E0\t0xE5C3\n0xF7E1\t0xE5C4\n0xF7E2\t0xE5C5\n0xF7E3\t0xE5C6\n0xF7E4\t0xE5C7\n0xF7E5\t0xE5C8\n0xF7E6\t0xE5C9\n0xF7E7\t0xE5CA\n0xF7E8\t0xE5CB\n0xF7E9\t0xE5CC\n0xF7EA\t0xE5CD\n0xF7EB\t0xE5CE\n0xF7EC\t0xE5CF\n0xF7ED\t0xE5D0\n0xF7EE\t0xE5D1\n0xF7EF\t0xE5D2\n0xF7F0\t0xE5D3\n0xF7F1\t0xE5D4\n0xF7F2\t0xE5D5\n0xF7F3\t0xE5D6\n0xF7F4\t0xE5D7\n0xF7F5\t0xE5D8\n0xF7F6\t0xE5D9\n0xF7F7\t0xE5DA\n0xF7F8\t0xE5DB\n0xF7F9\t0xE5DC\n0xF7FA\t0xE5DD\n0xF7FB\t0xE5DE\n0xF7FC\t0xE5DF\n0xF840\t0xE5E0\n0xF841\t0xE5E1\n0xF842\t0xE5E2\n0xF843\t0xE5E3\n0xF844\t0xE5E4\n0xF845\t0xE5E5\n0xF846\t0xE5E6\n0xF847\t0xE5E7\n0xF848\t0xE5E8\n0xF849\t0xE5E9\n0xF84A\t0xE5EA\n0xF84B\t0xE5EB\n0xF84C\t0xE5EC\n0xF84D\t0xE5ED\n0xF84E\t0xE5EE\n0xF84F\t0xE5EF\n0xF850\t0xE5F0\n0xF851\t0xE5F1\n0xF852\t0xE5F2\n0xF853\t0xE5F3\n0xF854\t0xE5F4\n0xF855\t0xE5F5\n0xF856\t0xE5F6\n0xF857\t0xE5F7\n0xF858\t0xE5F8\n0xF859\t0xE5F9\n0xF85A\t0xE5FA\n0xF85B\t0xE5FB\n0xF85C\t0xE5FC\n0xF85D\t0xE5FD\n0xF85E\t0xE5FE\n0xF85F\t0xE5FF\n0xF860\t0xE600\n0xF861\t0xE601\n0xF862\t0xE602\n0xF863\t0xE603\n0xF864\t0xE604\n0xF865\t0xE605\n0xF866\t0xE606\n0xF867\t0xE607\n0xF868\t0xE608\n0xF869\t0xE609\n0xF86A\t0xE60A\n0xF86B\t0xE60B\n0xF86C\t0xE60C\n0xF86D\t0xE60D\n0xF86E\t0xE60E\n0xF86F\t0xE60F\n0xF870\t0xE610\n0xF871\t0xE611\n0xF872\t0xE612\n0xF873\t0xE613\n0xF874\t0xE614\n0xF875\t0xE615\n0xF876\t0xE616\n0xF877\t0xE617\n0xF878\t0xE618\n0xF879\t0xE619\n0xF87A\t0xE61A\n0xF87B\t0xE61B\n0xF87C\t0xE61C\n0xF87D\t0xE61D\n0xF87E\t0xE61E\n0xF880\t0xE61F\n0xF881\t0xE620\n0xF882\t0xE621\n0xF883\t0xE622\n0xF884\t0xE623\n0xF885\t0xE624\n0xF886\t0xE625\n0xF887\t0xE626\n0xF888\t0xE627\n0xF889\t0xE628\n0xF88A\t0xE629\n0xF88B\t0xE62A\n0xF88C\t0xE62B\n0xF88D\t0xE62C\n0xF88E\t0xE62D\n0xF88F\t0xE62E\n0xF890\t0xE62F\n0xF891\t0xE630\n0xF892\t0xE631\n0xF893\t0xE632\n0xF894\t0xE633\n0xF895\t0xE634\n0xF896\t0xE635\n0xF897\t0xE636\n0xF898\t0xE637\n0xF899\t0xE638\n0xF89A\t0xE639\n0xF89B\t0xE63A\n0xF89C\t0xE63B\n0xF89D\t0xE63C\n0xF89E\t0xE63D\n0xF89F\t0xE63E\n0xF8A0\t0xE63F\n0xF8A1\t0xE640\n0xF8A2\t0xE641\n0xF8A3\t0xE642\n0xF8A4\t0xE643\n0xF8A5\t0xE644\n0xF8A6\t0xE645\n0xF8A7\t0xE646\n0xF8A8\t0xE647\n0xF8A9\t0xE648\n0xF8AA\t0xE649\n0xF8AB\t0xE64A\n0xF8AC\t0xE64B\n0xF8AD\t0xE64C\n0xF8AE\t0xE64D\n0xF8AF\t0xE64E\n0xF8B0\t0xE64F\n0xF8B1\t0xE650\n0xF8B2\t0xE651\n0xF8B3\t0xE652\n0xF8B4\t0xE653\n0xF8B5\t0xE654\n0xF8B6\t0xE655\n0xF8B7\t0xE656\n0xF8B8\t0xE657\n0xF8B9\t0xE658\n0xF8BA\t0xE659\n0xF8BB\t0xE65A\n0xF8BC\t0xE65B\n0xF8BD\t0xE65C\n0xF8BE\t0xE65D\n0xF8BF\t0xE65E\n0xF8C0\t0xE65F\n0xF8C1\t0xE660\n0xF8C2\t0xE661\n0xF8C3\t0xE662\n0xF8C4\t0xE663\n0xF8C5\t0xE664\n0xF8C6\t0xE665\n0xF8C7\t0xE666\n0xF8C8\t0xE667\n0xF8C9\t0xE668\n0xF8CA\t0xE669\n0xF8CB\t0xE66A\n0xF8CC\t0xE66B\n0xF8CD\t0xE66C\n0xF8CE\t0xE66D\n0xF8CF\t0xE66E\n0xF8D0\t0xE66F\n0xF8D1\t0xE670\n0xF8D2\t0xE671\n0xF8D3\t0xE672\n0xF8D4\t0xE673\n0xF8D5\t0xE674\n0xF8D6\t0xE675\n0xF8D7\t0xE676\n0xF8D8\t0xE677\n0xF8D9\t0xE678\n0xF8DA\t0xE679\n0xF8DB\t0xE67A\n0xF8DC\t0xE67B\n0xF8DD\t0xE67C\n0xF8DE\t0xE67D\n0xF8DF\t0xE67E\n0xF8E0\t0xE67F\n0xF8E1\t0xE680\n0xF8E2\t0xE681\n0xF8E3\t0xE682\n0xF8E4\t0xE683\n0xF8E5\t0xE684\n0xF8E6\t0xE685\n0xF8E7\t0xE686\n0xF8E8\t0xE687\n0xF8E9\t0xE688\n0xF8EA\t0xE689\n0xF8EB\t0xE68A\n0xF8EC\t0xE68B\n0xF8ED\t0xE68C\n0xF8EE\t0xE68D\n0xF8EF\t0xE68E\n0xF8F0\t0xE68F\n0xF8F1\t0xE690\n0xF8F2\t0xE691\n0xF8F3\t0xE692\n0xF8F4\t0xE693\n0xF8F5\t0xE694\n0xF8F6\t0xE695\n0xF8F7\t0xE696\n0xF8F8\t0xE697\n0xF8F9\t0xE698\n0xF8FA\t0xE699\n0xF8FB\t0xE69A\n0xF8FC\t0xE69B\n0xF940\t0xE69C\n0xF941\t0xE69D\n0xF942\t0xE69E\n0xF943\t0xE69F\n0xF944\t0xE6A0\n0xF945\t0xE6A1\n0xF946\t0xE6A2\n0xF947\t0xE6A3\n0xF948\t0xE6A4\n0xF949\t0xE6A5\n0xF94A\t0xE6A6\n0xF94B\t0xE6A7\n0xF94C\t0xE6A8\n0xF94D\t0xE6A9\n0xF94E\t0xE6AA\n0xF94F\t0xE6AB\n0xF950\t0xE6AC\n0xF951\t0xE6AD\n0xF952\t0xE6AE\n0xF953\t0xE6AF\n0xF954\t0xE6B0\n0xF955\t0xE6B1\n0xF956\t0xE6B2\n0xF957\t0xE6B3\n0xF958\t0xE6B4\n0xF959\t0xE6B5\n0xF95A\t0xE6B6\n0xF95B\t0xE6B7\n0xF95C\t0xE6B8\n0xF95D\t0xE6B9\n0xF95E\t0xE6BA\n0xF95F\t0xE6BB\n0xF960\t0xE6BC\n0xF961\t0xE6BD\n0xF962\t0xE6BE\n0xF963\t0xE6BF\n0xF964\t0xE6C0\n0xF965\t0xE6C1\n0xF966\t0xE6C2\n0xF967\t0xE6C3\n0xF968\t0xE6C4\n0xF969\t0xE6C5\n0xF96A\t0xE6C6\n0xF96B\t0xE6C7\n0xF96C\t0xE6C8\n0xF96D\t0xE6C9\n0xF96E\t0xE6CA\n0xF96F\t0xE6CB\n0xF970\t0xE6CC\n0xF971\t0xE6CD\n0xF972\t0xE6CE\n0xF973\t0xE6CF\n0xF974\t0xE6D0\n0xF975\t0xE6D1\n0xF976\t0xE6D2\n0xF977\t0xE6D3\n0xF978\t0xE6D4\n0xF979\t0xE6D5\n0xF97A\t0xE6D6\n0xF97B\t0xE6D7\n0xF97C\t0xE6D8\n0xF97D\t0xE6D9\n0xF97E\t0xE6DA\n0xF980\t0xE6DB\n0xF981\t0xE6DC\n0xF982\t0xE6DD\n0xF983\t0xE6DE\n0xF984\t0xE6DF\n0xF985\t0xE6E0\n0xF986\t0xE6E1\n0xF987\t0xE6E2\n0xF988\t0xE6E3\n0xF989\t0xE6E4\n0xF98A\t0xE6E5\n0xF98B\t0xE6E6\n0xF98C\t0xE6E7\n0xF98D\t0xE6E8\n0xF98E\t0xE6E9\n0xF98F\t0xE6EA\n0xF990\t0xE6EB\n0xF991\t0xE6EC\n0xF992\t0xE6ED\n0xF993\t0xE6EE\n0xF994\t0xE6EF\n0xF995\t0xE6F0\n0xF996\t0xE6F1\n0xF997\t0xE6F2\n0xF998\t0xE6F3\n0xF999\t0xE6F4\n0xF99A\t0xE6F5\n0xF99B\t0xE6F6\n0xF99C\t0xE6F7\n0xF99D\t0xE6F8\n0xF99E\t0xE6F9\n0xF99F\t0xE6FA\n0xF9A0\t0xE6FB\n0xF9A1\t0xE6FC\n0xF9A2\t0xE6FD\n0xF9A3\t0xE6FE\n0xF9A4\t0xE6FF\n0xF9A5\t0xE700\n0xF9A6\t0xE701\n0xF9A7\t0xE702\n0xF9A8\t0xE703\n0xF9A9\t0xE704\n0xF9AA\t0xE705\n0xF9AB\t0xE706\n0xF9AC\t0xE707\n0xF9AD\t0xE708\n0xF9AE\t0xE709\n0xF9AF\t0xE70A\n0xF9B0\t0xE70B\n0xF9B1\t0xE70C\n0xF9B2\t0xE70D\n0xF9B3\t0xE70E\n0xF9B4\t0xE70F\n0xF9B5\t0xE710\n0xF9B6\t0xE711\n0xF9B7\t0xE712\n0xF9B8\t0xE713\n0xF9B9\t0xE714\n0xF9BA\t0xE715\n0xF9BB\t0xE716\n0xF9BC\t0xE717\n0xF9BD\t0xE718\n0xF9BE\t0xE719\n0xF9BF\t0xE71A\n0xF9C0\t0xE71B\n0xF9C1\t0xE71C\n0xF9C2\t0xE71D\n0xF9C3\t0xE71E\n0xF9C4\t0xE71F\n0xF9C5\t0xE720\n0xF9C6\t0xE721\n0xF9C7\t0xE722\n0xF9C8\t0xE723\n0xF9C9\t0xE724\n0xF9CA\t0xE725\n0xF9CB\t0xE726\n0xF9CC\t0xE727\n0xF9CD\t0xE728\n0xF9CE\t0xE729\n0xF9CF\t0xE72A\n0xF9D0\t0xE72B\n0xF9D1\t0xE72C\n0xF9D2\t0xE72D\n0xF9D3\t0xE72E\n0xF9D4\t0xE72F\n0xF9D5\t0xE730\n0xF9D6\t0xE731\n0xF9D7\t0xE732\n0xF9D8\t0xE733\n0xF9D9\t0xE734\n0xF9DA\t0xE735\n0xF9DB\t0xE736\n0xF9DC\t0xE737\n0xF9DD\t0xE738\n0xF9DE\t0xE739\n0xF9DF\t0xE73A\n0xF9E0\t0xE73B\n0xF9E1\t0xE73C\n0xF9E2\t0xE73D\n0xF9E3\t0xE73E\n0xF9E4\t0xE73F\n0xF9E5\t0xE740\n0xF9E6\t0xE741\n0xF9E7\t0xE742\n0xF9E8\t0xE743\n0xF9E9\t0xE744\n0xF9EA\t0xE745\n0xF9EB\t0xE746\n0xF9EC\t0xE747\n0xF9ED\t0xE748\n0xF9EE\t0xE749\n0xF9EF\t0xE74A\n0xF9F0\t0xE74B\n0xF9F1\t0xE74C\n0xF9F2\t0xE74D\n0xF9F3\t0xE74E\n0xF9F4\t0xE74F\n0xF9F5\t0xE750\n0xF9F6\t0xE751\n0xF9F7\t0xE752\n0xF9F8\t0xE753\n0xF9F9\t0xE754\n0xF9FA\t0xE755\n0xF9FB\t0xE756\n0xF9FC\t0xE757\n0xFA40\t0x2170\n0xFA41\t0x2171\n0xFA42\t0x2172\n0xFA43\t0x2173\n0xFA44\t0x2174\n0xFA45\t0x2175\n0xFA46\t0x2176\n0xFA47\t0x2177\n0xFA48\t0x2178\n0xFA49\t0x2179\n0xFA4A\t0x2160\n0xFA4B\t0x2161\n0xFA4C\t0x2162\n0xFA4D\t0x2163\n0xFA4E\t0x2164\n0xFA4F\t0x2165\n0xFA50\t0x2166\n0xFA51\t0x2167\n0xFA52\t0x2168\n0xFA53\t0x2169\n0xFA54\t0xFFE2\n0xFA55\t0xFFE4\n0xFA56\t0xFF07\n0xFA57\t0xFF02\n0xFA58\t0x3231\n0xFA59\t0x2116\n0xFA5A\t0x2121\n0xFA5B\t0x2235\n0xFA5C\t0x7E8A\n0xFA5D\t0x891C\n0xFA5E\t0x9348\n0xFA5F\t0x9288\n0xFA60\t0x84DC\n0xFA61\t0x4FC9\n0xFA62\t0x70BB\n0xFA63\t0x6631\n0xFA64\t0x68C8\n0xFA65\t0x92F9\n0xFA66\t0x66FB\n0xFA67\t0x5F45\n0xFA68\t0x4E28\n0xFA69\t0x4EE1\n0xFA6A\t0x4EFC\n0xFA6B\t0x4F00\n0xFA6C\t0x4F03\n0xFA6D\t0x4F39\n0xFA6E\t0x4F56\n0xFA6F\t0x4F92\n0xFA70\t0x4F8A\n0xFA71\t0x4F9A\n0xFA72\t0x4F94\n0xFA73\t0x4FCD\n0xFA74\t0x5040\n0xFA75\t0x5022\n0xFA76\t0x4FFF\n0xFA77\t0x501E\n0xFA78\t0x5046\n0xFA79\t0x5070\n0xFA7A\t0x5042\n0xFA7B\t0x5094\n0xFA7C\t0x50F4\n0xFA7D\t0x50D8\n0xFA7E\t0x514A\n0xFA80\t0x5164\n0xFA81\t0x519D\n0xFA82\t0x51BE\n0xFA83\t0x51EC\n0xFA84\t0x5215\n0xFA85\t0x529C\n0xFA86\t0x52A6\n0xFA87\t0x52C0\n0xFA88\t0x52DB\n0xFA89\t0x5300\n0xFA8A\t0x5307\n0xFA8B\t0x5324\n0xFA8C\t0x5372\n0xFA8D\t0x5393\n0xFA8E\t0x53B2\n0xFA8F\t0x53DD\n0xFA90\t0xFA0E\n0xFA91\t0x549C\n0xFA92\t0x548A\n0xFA93\t0x54A9\n0xFA94\t0x54FF\n0xFA95\t0x5586\n0xFA96\t0x5759\n0xFA97\t0x5765\n0xFA98\t0x57AC\n0xFA99\t0x57C8\n0xFA9A\t0x57C7\n0xFA9B\t0xFA0F\n0xFA9C\t0xFA10\n0xFA9D\t0x589E\n0xFA9E\t0x58B2\n0xFA9F\t0x590B\n0xFAA0\t0x5953\n0xFAA1\t0x595B\n0xFAA2\t0x595D\n0xFAA3\t0x5963\n0xFAA4\t0x59A4\n0xFAA5\t0x59BA\n0xFAA6\t0x5B56\n0xFAA7\t0x5BC0\n0xFAA8\t0x752F\n0xFAA9\t0x5BD8\n0xFAAA\t0x5BEC\n0xFAAB\t0x5C1E\n0xFAAC\t0x5CA6\n0xFAAD\t0x5CBA\n0xFAAE\t0x5CF5\n0xFAAF\t0x5D27\n0xFAB0\t0x5D53\n0xFAB1\t0xFA11\n0xFAB2\t0x5D42\n0xFAB3\t0x5D6D\n0xFAB4\t0x5DB8\n0xFAB5\t0x5DB9\n0xFAB6\t0x5DD0\n0xFAB7\t0x5F21\n0xFAB8\t0x5F34\n0xFAB9\t0x5F67\n0xFABA\t0x5FB7\n0xFABB\t0x5FDE\n0xFABC\t0x605D\n0xFABD\t0x6085\n0xFABE\t0x608A\n0xFABF\t0x60DE\n0xFAC0\t0x60D5\n0xFAC1\t0x6120\n0xFAC2\t0x60F2\n0xFAC3\t0x6111\n0xFAC4\t0x6137\n0xFAC5\t0x6130\n0xFAC6\t0x6198\n0xFAC7\t0x6213\n0xFAC8\t0x62A6\n0xFAC9\t0x63F5\n0xFACA\t0x6460\n0xFACB\t0x649D\n0xFACC\t0x64CE\n0xFACD\t0x654E\n0xFACE\t0x6600\n0xFACF\t0x6615\n0xFAD0\t0x663B\n0xFAD1\t0x6609\n0xFAD2\t0x662E\n0xFAD3\t0x661E\n0xFAD4\t0x6624\n0xFAD5\t0x6665\n0xFAD6\t0x6657\n0xFAD7\t0x6659\n0xFAD8\t0xFA12\n0xFAD9\t0x6673\n0xFADA\t0x6699\n0xFADB\t0x66A0\n0xFADC\t0x66B2\n0xFADD\t0x66BF\n0xFADE\t0x66FA\n0xFADF\t0x670E\n0xFAE0\t0xF929\n0xFAE1\t0x6766\n0xFAE2\t0x67BB\n0xFAE3\t0x6852\n0xFAE4\t0x67C0\n0xFAE5\t0x6801\n0xFAE6\t0x6844\n0xFAE7\t0x68CF\n0xFAE8\t0xFA13\n0xFAE9\t0x6968\n0xFAEA\t0xFA14\n0xFAEB\t0x6998\n0xFAEC\t0x69E2\n0xFAED\t0x6A30\n0xFAEE\t0x6A6B\n0xFAEF\t0x6A46\n0xFAF0\t0x6A73\n0xFAF1\t0x6A7E\n0xFAF2\t0x6AE2\n0xFAF3\t0x6AE4\n0xFAF4\t0x6BD6\n0xFAF5\t0x6C3F\n0xFAF6\t0x6C5C\n0xFAF7\t0x6C86\n0xFAF8\t0x6C6F\n0xFAF9\t0x6CDA\n0xFAFA\t0x6D04\n0xFAFB\t0x6D87\n0xFAFC\t0x6D6F\n0xFB40\t0x6D96\n0xFB41\t0x6DAC\n0xFB42\t0x6DCF\n0xFB43\t0x6DF8\n0xFB44\t0x6DF2\n0xFB45\t0x6DFC\n0xFB46\t0x6E39\n0xFB47\t0x6E5C\n0xFB48\t0x6E27\n0xFB49\t0x6E3C\n0xFB4A\t0x6EBF\n0xFB4B\t0x6F88\n0xFB4C\t0x6FB5\n0xFB4D\t0x6FF5\n0xFB4E\t0x7005\n0xFB4F\t0x7007\n0xFB50\t0x7028\n0xFB51\t0x7085\n0xFB52\t0x70AB\n0xFB53\t0x710F\n0xFB54\t0x7104\n0xFB55\t0x715C\n0xFB56\t0x7146\n0xFB57\t0x7147\n0xFB58\t0xFA15\n0xFB59\t0x71C1\n0xFB5A\t0x71FE\n0xFB5B\t0x72B1\n0xFB5C\t0x72BE\n0xFB5D\t0x7324\n0xFB5E\t0xFA16\n0xFB5F\t0x7377\n0xFB60\t0x73BD\n0xFB61\t0x73C9\n0xFB62\t0x73D6\n0xFB63\t0x73E3\n0xFB64\t0x73D2\n0xFB65\t0x7407\n0xFB66\t0x73F5\n0xFB67\t0x7426\n0xFB68\t0x742A\n0xFB69\t0x7429\n0xFB6A\t0x742E\n0xFB6B\t0x7462\n0xFB6C\t0x7489\n0xFB6D\t0x749F\n0xFB6E\t0x7501\n0xFB6F\t0x756F\n0xFB70\t0x7682\n0xFB71\t0x769C\n0xFB72\t0x769E\n0xFB73\t0x769B\n0xFB74\t0x76A6\n0xFB75\t0xFA17\n0xFB76\t0x7746\n0xFB77\t0x52AF\n0xFB78\t0x7821\n0xFB79\t0x784E\n0xFB7A\t0x7864\n0xFB7B\t0x787A\n0xFB7C\t0x7930\n0xFB7D\t0xFA18\n0xFB7E\t0xFA19\n0xFB80\t0xFA1A\n0xFB81\t0x7994\n0xFB82\t0xFA1B\n0xFB83\t0x799B\n0xFB84\t0x7AD1\n0xFB85\t0x7AE7\n0xFB86\t0xFA1C\n0xFB87\t0x7AEB\n0xFB88\t0x7B9E\n0xFB89\t0xFA1D\n0xFB8A\t0x7D48\n0xFB8B\t0x7D5C\n0xFB8C\t0x7DB7\n0xFB8D\t0x7DA0\n0xFB8E\t0x7DD6\n0xFB8F\t0x7E52\n0xFB90\t0x7F47\n0xFB91\t0x7FA1\n0xFB92\t0xFA1E\n0xFB93\t0x8301\n0xFB94\t0x8362\n0xFB95\t0x837F\n0xFB96\t0x83C7\n0xFB97\t0x83F6\n0xFB98\t0x8448\n0xFB99\t0x84B4\n0xFB9A\t0x8553\n0xFB9B\t0x8559\n0xFB9C\t0x856B\n0xFB9D\t0xFA1F\n0xFB9E\t0x85B0\n0xFB9F\t0xFA20\n0xFBA0\t0xFA21\n0xFBA1\t0x8807\n0xFBA2\t0x88F5\n0xFBA3\t0x8A12\n0xFBA4\t0x8A37\n0xFBA5\t0x8A79\n0xFBA6\t0x8AA7\n0xFBA7\t0x8ABE\n0xFBA8\t0x8ADF\n0xFBA9\t0xFA22\n0xFBAA\t0x8AF6\n0xFBAB\t0x8B53\n0xFBAC\t0x8B7F\n0xFBAD\t0x8CF0\n0xFBAE\t0x8CF4\n0xFBAF\t0x8D12\n0xFBB0\t0x8D76\n0xFBB1\t0xFA23\n0xFBB2\t0x8ECF\n0xFBB3\t0xFA24\n0xFBB4\t0xFA25\n0xFBB5\t0x9067\n0xFBB6\t0x90DE\n0xFBB7\t0xFA26\n0xFBB8\t0x9115\n0xFBB9\t0x9127\n0xFBBA\t0x91DA\n0xFBBB\t0x91D7\n0xFBBC\t0x91DE\n0xFBBD\t0x91ED\n0xFBBE\t0x91EE\n0xFBBF\t0x91E4\n0xFBC0\t0x91E5\n0xFBC1\t0x9206\n0xFBC2\t0x9210\n0xFBC3\t0x920A\n0xFBC4\t0x923A\n0xFBC5\t0x9240\n0xFBC6\t0x923C\n0xFBC7\t0x924E\n0xFBC8\t0x9259\n0xFBC9\t0x9251\n0xFBCA\t0x9239\n0xFBCB\t0x9267\n0xFBCC\t0x92A7\n0xFBCD\t0x9277\n0xFBCE\t0x9278\n0xFBCF\t0x92E7\n0xFBD0\t0x92D7\n0xFBD1\t0x92D9\n0xFBD2\t0x92D0\n0xFBD3\t0xFA27\n0xFBD4\t0x92D5\n0xFBD5\t0x92E0\n0xFBD6\t0x92D3\n0xFBD7\t0x9325\n0xFBD8\t0x9321\n0xFBD9\t0x92FB\n0xFBDA\t0xFA28\n0xFBDB\t0x931E\n0xFBDC\t0x92FF\n0xFBDD\t0x931D\n0xFBDE\t0x9302\n0xFBDF\t0x9370\n0xFBE0\t0x9357\n0xFBE1\t0x93A4\n0xFBE2\t0x93C6\n0xFBE3\t0x93DE\n0xFBE4\t0x93F8\n0xFBE5\t0x9431\n0xFBE6\t0x9445\n0xFBE7\t0x9448\n0xFBE8\t0x9592\n0xFBE9\t0xF9DC\n0xFBEA\t0xFA29\n0xFBEB\t0x969D\n0xFBEC\t0x96AF\n0xFBED\t0x9733\n0xFBEE\t0x973B\n0xFBEF\t0x9743\n0xFBF0\t0x974D\n0xFBF1\t0x974F\n0xFBF2\t0x9751\n0xFBF3\t0x9755\n0xFBF4\t0x9857\n0xFBF5\t0x9865\n0xFBF6\t0xFA2A\n0xFBF7\t0xFA2B\n0xFBF8\t0x9927\n0xFBF9\t0xFA2C\n0xFBFA\t0x999E\n0xFBFB\t0x9A4E\n0xFBFC\t0x9AD9\n0xFC40\t0x9ADC\n0xFC41\t0x9B75\n0xFC42\t0x9B72\n0xFC43\t0x9B8F\n0xFC44\t0x9BB1\n0xFC45\t0x9BBB\n0xFC46\t0x9C00\n0xFC47\t0x9D70\n0xFC48\t0x9D6B\n0xFC49\t0xFA2D\n0xFC4A\t0x9E19\n0xFC4B\t0x9ED1\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP936.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x20AC\n0x8140\t0x4E02\n0x8141\t0x4E04\n0x8142\t0x4E05\n0x8143\t0x4E06\n0x8144\t0x4E0F\n0x8145\t0x4E12\n0x8146\t0x4E17\n0x8147\t0x4E1F\n0x8148\t0x4E20\n0x8149\t0x4E21\n0x814A\t0x4E23\n0x814B\t0x4E26\n0x814C\t0x4E29\n0x814D\t0x4E2E\n0x814E\t0x4E2F\n0x814F\t0x4E31\n0x8150\t0x4E33\n0x8151\t0x4E35\n0x8152\t0x4E37\n0x8153\t0x4E3C\n0x8154\t0x4E40\n0x8155\t0x4E41\n0x8156\t0x4E42\n0x8157\t0x4E44\n0x8158\t0x4E46\n0x8159\t0x4E4A\n0x815A\t0x4E51\n0x815B\t0x4E55\n0x815C\t0x4E57\n0x815D\t0x4E5A\n0x815E\t0x4E5B\n0x815F\t0x4E62\n0x8160\t0x4E63\n0x8161\t0x4E64\n0x8162\t0x4E65\n0x8163\t0x4E67\n0x8164\t0x4E68\n0x8165\t0x4E6A\n0x8166\t0x4E6B\n0x8167\t0x4E6C\n0x8168\t0x4E6D\n0x8169\t0x4E6E\n0x816A\t0x4E6F\n0x816B\t0x4E72\n0x816C\t0x4E74\n0x816D\t0x4E75\n0x816E\t0x4E76\n0x816F\t0x4E77\n0x8170\t0x4E78\n0x8171\t0x4E79\n0x8172\t0x4E7A\n0x8173\t0x4E7B\n0x8174\t0x4E7C\n0x8175\t0x4E7D\n0x8176\t0x4E7F\n0x8177\t0x4E80\n0x8178\t0x4E81\n0x8179\t0x4E82\n0x817A\t0x4E83\n0x817B\t0x4E84\n0x817C\t0x4E85\n0x817D\t0x4E87\n0x817E\t0x4E8A\n0x8180\t0x4E90\n0x8181\t0x4E96\n0x8182\t0x4E97\n0x8183\t0x4E99\n0x8184\t0x4E9C\n0x8185\t0x4E9D\n0x8186\t0x4E9E\n0x8187\t0x4EA3\n0x8188\t0x4EAA\n0x8189\t0x4EAF\n0x818A\t0x4EB0\n0x818B\t0x4EB1\n0x818C\t0x4EB4\n0x818D\t0x4EB6\n0x818E\t0x4EB7\n0x818F\t0x4EB8\n0x8190\t0x4EB9\n0x8191\t0x4EBC\n0x8192\t0x4EBD\n0x8193\t0x4EBE\n0x8194\t0x4EC8\n0x8195\t0x4ECC\n0x8196\t0x4ECF\n0x8197\t0x4ED0\n0x8198\t0x4ED2\n0x8199\t0x4EDA\n0x819A\t0x4EDB\n0x819B\t0x4EDC\n0x819C\t0x4EE0\n0x819D\t0x4EE2\n0x819E\t0x4EE6\n0x819F\t0x4EE7\n0x81A0\t0x4EE9\n0x81A1\t0x4EED\n0x81A2\t0x4EEE\n0x81A3\t0x4EEF\n0x81A4\t0x4EF1\n0x81A5\t0x4EF4\n0x81A6\t0x4EF8\n0x81A7\t0x4EF9\n0x81A8\t0x4EFA\n0x81A9\t0x4EFC\n0x81AA\t0x4EFE\n0x81AB\t0x4F00\n0x81AC\t0x4F02\n0x81AD\t0x4F03\n0x81AE\t0x4F04\n0x81AF\t0x4F05\n0x81B0\t0x4F06\n0x81B1\t0x4F07\n0x81B2\t0x4F08\n0x81B3\t0x4F0B\n0x81B4\t0x4F0C\n0x81B5\t0x4F12\n0x81B6\t0x4F13\n0x81B7\t0x4F14\n0x81B8\t0x4F15\n0x81B9\t0x4F16\n0x81BA\t0x4F1C\n0x81BB\t0x4F1D\n0x81BC\t0x4F21\n0x81BD\t0x4F23\n0x81BE\t0x4F28\n0x81BF\t0x4F29\n0x81C0\t0x4F2C\n0x81C1\t0x4F2D\n0x81C2\t0x4F2E\n0x81C3\t0x4F31\n0x81C4\t0x4F33\n0x81C5\t0x4F35\n0x81C6\t0x4F37\n0x81C7\t0x4F39\n0x81C8\t0x4F3B\n0x81C9\t0x4F3E\n0x81CA\t0x4F3F\n0x81CB\t0x4F40\n0x81CC\t0x4F41\n0x81CD\t0x4F42\n0x81CE\t0x4F44\n0x81CF\t0x4F45\n0x81D0\t0x4F47\n0x81D1\t0x4F48\n0x81D2\t0x4F49\n0x81D3\t0x4F4A\n0x81D4\t0x4F4B\n0x81D5\t0x4F4C\n0x81D6\t0x4F52\n0x81D7\t0x4F54\n0x81D8\t0x4F56\n0x81D9\t0x4F61\n0x81DA\t0x4F62\n0x81DB\t0x4F66\n0x81DC\t0x4F68\n0x81DD\t0x4F6A\n0x81DE\t0x4F6B\n0x81DF\t0x4F6D\n0x81E0\t0x4F6E\n0x81E1\t0x4F71\n0x81E2\t0x4F72\n0x81E3\t0x4F75\n0x81E4\t0x4F77\n0x81E5\t0x4F78\n0x81E6\t0x4F79\n0x81E7\t0x4F7A\n0x81E8\t0x4F7D\n0x81E9\t0x4F80\n0x81EA\t0x4F81\n0x81EB\t0x4F82\n0x81EC\t0x4F85\n0x81ED\t0x4F86\n0x81EE\t0x4F87\n0x81EF\t0x4F8A\n0x81F0\t0x4F8C\n0x81F1\t0x4F8E\n0x81F2\t0x4F90\n0x81F3\t0x4F92\n0x81F4\t0x4F93\n0x81F5\t0x4F95\n0x81F6\t0x4F96\n0x81F7\t0x4F98\n0x81F8\t0x4F99\n0x81F9\t0x4F9A\n0x81FA\t0x4F9C\n0x81FB\t0x4F9E\n0x81FC\t0x4F9F\n0x81FD\t0x4FA1\n0x81FE\t0x4FA2\n0x8240\t0x4FA4\n0x8241\t0x4FAB\n0x8242\t0x4FAD\n0x8243\t0x4FB0\n0x8244\t0x4FB1\n0x8245\t0x4FB2\n0x8246\t0x4FB3\n0x8247\t0x4FB4\n0x8248\t0x4FB6\n0x8249\t0x4FB7\n0x824A\t0x4FB8\n0x824B\t0x4FB9\n0x824C\t0x4FBA\n0x824D\t0x4FBB\n0x824E\t0x4FBC\n0x824F\t0x4FBD\n0x8250\t0x4FBE\n0x8251\t0x4FC0\n0x8252\t0x4FC1\n0x8253\t0x4FC2\n0x8254\t0x4FC6\n0x8255\t0x4FC7\n0x8256\t0x4FC8\n0x8257\t0x4FC9\n0x8258\t0x4FCB\n0x8259\t0x4FCC\n0x825A\t0x4FCD\n0x825B\t0x4FD2\n0x825C\t0x4FD3\n0x825D\t0x4FD4\n0x825E\t0x4FD5\n0x825F\t0x4FD6\n0x8260\t0x4FD9\n0x8261\t0x4FDB\n0x8262\t0x4FE0\n0x8263\t0x4FE2\n0x8264\t0x4FE4\n0x8265\t0x4FE5\n0x8266\t0x4FE7\n0x8267\t0x4FEB\n0x8268\t0x4FEC\n0x8269\t0x4FF0\n0x826A\t0x4FF2\n0x826B\t0x4FF4\n0x826C\t0x4FF5\n0x826D\t0x4FF6\n0x826E\t0x4FF7\n0x826F\t0x4FF9\n0x8270\t0x4FFB\n0x8271\t0x4FFC\n0x8272\t0x4FFD\n0x8273\t0x4FFF\n0x8274\t0x5000\n0x8275\t0x5001\n0x8276\t0x5002\n0x8277\t0x5003\n0x8278\t0x5004\n0x8279\t0x5005\n0x827A\t0x5006\n0x827B\t0x5007\n0x827C\t0x5008\n0x827D\t0x5009\n0x827E\t0x500A\n0x8280\t0x500B\n0x8281\t0x500E\n0x8282\t0x5010\n0x8283\t0x5011\n0x8284\t0x5013\n0x8285\t0x5015\n0x8286\t0x5016\n0x8287\t0x5017\n0x8288\t0x501B\n0x8289\t0x501D\n0x828A\t0x501E\n0x828B\t0x5020\n0x828C\t0x5022\n0x828D\t0x5023\n0x828E\t0x5024\n0x828F\t0x5027\n0x8290\t0x502B\n0x8291\t0x502F\n0x8292\t0x5030\n0x8293\t0x5031\n0x8294\t0x5032\n0x8295\t0x5033\n0x8296\t0x5034\n0x8297\t0x5035\n0x8298\t0x5036\n0x8299\t0x5037\n0x829A\t0x5038\n0x829B\t0x5039\n0x829C\t0x503B\n0x829D\t0x503D\n0x829E\t0x503F\n0x829F\t0x5040\n0x82A0\t0x5041\n0x82A1\t0x5042\n0x82A2\t0x5044\n0x82A3\t0x5045\n0x82A4\t0x5046\n0x82A5\t0x5049\n0x82A6\t0x504A\n0x82A7\t0x504B\n0x82A8\t0x504D\n0x82A9\t0x5050\n0x82AA\t0x5051\n0x82AB\t0x5052\n0x82AC\t0x5053\n0x82AD\t0x5054\n0x82AE\t0x5056\n0x82AF\t0x5057\n0x82B0\t0x5058\n0x82B1\t0x5059\n0x82B2\t0x505B\n0x82B3\t0x505D\n0x82B4\t0x505E\n0x82B5\t0x505F\n0x82B6\t0x5060\n0x82B7\t0x5061\n0x82B8\t0x5062\n0x82B9\t0x5063\n0x82BA\t0x5064\n0x82BB\t0x5066\n0x82BC\t0x5067\n0x82BD\t0x5068\n0x82BE\t0x5069\n0x82BF\t0x506A\n0x82C0\t0x506B\n0x82C1\t0x506D\n0x82C2\t0x506E\n0x82C3\t0x506F\n0x82C4\t0x5070\n0x82C5\t0x5071\n0x82C6\t0x5072\n0x82C7\t0x5073\n0x82C8\t0x5074\n0x82C9\t0x5075\n0x82CA\t0x5078\n0x82CB\t0x5079\n0x82CC\t0x507A\n0x82CD\t0x507C\n0x82CE\t0x507D\n0x82CF\t0x5081\n0x82D0\t0x5082\n0x82D1\t0x5083\n0x82D2\t0x5084\n0x82D3\t0x5086\n0x82D4\t0x5087\n0x82D5\t0x5089\n0x82D6\t0x508A\n0x82D7\t0x508B\n0x82D8\t0x508C\n0x82D9\t0x508E\n0x82DA\t0x508F\n0x82DB\t0x5090\n0x82DC\t0x5091\n0x82DD\t0x5092\n0x82DE\t0x5093\n0x82DF\t0x5094\n0x82E0\t0x5095\n0x82E1\t0x5096\n0x82E2\t0x5097\n0x82E3\t0x5098\n0x82E4\t0x5099\n0x82E5\t0x509A\n0x82E6\t0x509B\n0x82E7\t0x509C\n0x82E8\t0x509D\n0x82E9\t0x509E\n0x82EA\t0x509F\n0x82EB\t0x50A0\n0x82EC\t0x50A1\n0x82ED\t0x50A2\n0x82EE\t0x50A4\n0x82EF\t0x50A6\n0x82F0\t0x50AA\n0x82F1\t0x50AB\n0x82F2\t0x50AD\n0x82F3\t0x50AE\n0x82F4\t0x50AF\n0x82F5\t0x50B0\n0x82F6\t0x50B1\n0x82F7\t0x50B3\n0x82F8\t0x50B4\n0x82F9\t0x50B5\n0x82FA\t0x50B6\n0x82FB\t0x50B7\n0x82FC\t0x50B8\n0x82FD\t0x50B9\n0x82FE\t0x50BC\n0x8340\t0x50BD\n0x8341\t0x50BE\n0x8342\t0x50BF\n0x8343\t0x50C0\n0x8344\t0x50C1\n0x8345\t0x50C2\n0x8346\t0x50C3\n0x8347\t0x50C4\n0x8348\t0x50C5\n0x8349\t0x50C6\n0x834A\t0x50C7\n0x834B\t0x50C8\n0x834C\t0x50C9\n0x834D\t0x50CA\n0x834E\t0x50CB\n0x834F\t0x50CC\n0x8350\t0x50CD\n0x8351\t0x50CE\n0x8352\t0x50D0\n0x8353\t0x50D1\n0x8354\t0x50D2\n0x8355\t0x50D3\n0x8356\t0x50D4\n0x8357\t0x50D5\n0x8358\t0x50D7\n0x8359\t0x50D8\n0x835A\t0x50D9\n0x835B\t0x50DB\n0x835C\t0x50DC\n0x835D\t0x50DD\n0x835E\t0x50DE\n0x835F\t0x50DF\n0x8360\t0x50E0\n0x8361\t0x50E1\n0x8362\t0x50E2\n0x8363\t0x50E3\n0x8364\t0x50E4\n0x8365\t0x50E5\n0x8366\t0x50E8\n0x8367\t0x50E9\n0x8368\t0x50EA\n0x8369\t0x50EB\n0x836A\t0x50EF\n0x836B\t0x50F0\n0x836C\t0x50F1\n0x836D\t0x50F2\n0x836E\t0x50F4\n0x836F\t0x50F6\n0x8370\t0x50F7\n0x8371\t0x50F8\n0x8372\t0x50F9\n0x8373\t0x50FA\n0x8374\t0x50FC\n0x8375\t0x50FD\n0x8376\t0x50FE\n0x8377\t0x50FF\n0x8378\t0x5100\n0x8379\t0x5101\n0x837A\t0x5102\n0x837B\t0x5103\n0x837C\t0x5104\n0x837D\t0x5105\n0x837E\t0x5108\n0x8380\t0x5109\n0x8381\t0x510A\n0x8382\t0x510C\n0x8383\t0x510D\n0x8384\t0x510E\n0x8385\t0x510F\n0x8386\t0x5110\n0x8387\t0x5111\n0x8388\t0x5113\n0x8389\t0x5114\n0x838A\t0x5115\n0x838B\t0x5116\n0x838C\t0x5117\n0x838D\t0x5118\n0x838E\t0x5119\n0x838F\t0x511A\n0x8390\t0x511B\n0x8391\t0x511C\n0x8392\t0x511D\n0x8393\t0x511E\n0x8394\t0x511F\n0x8395\t0x5120\n0x8396\t0x5122\n0x8397\t0x5123\n0x8398\t0x5124\n0x8399\t0x5125\n0x839A\t0x5126\n0x839B\t0x5127\n0x839C\t0x5128\n0x839D\t0x5129\n0x839E\t0x512A\n0x839F\t0x512B\n0x83A0\t0x512C\n0x83A1\t0x512D\n0x83A2\t0x512E\n0x83A3\t0x512F\n0x83A4\t0x5130\n0x83A5\t0x5131\n0x83A6\t0x5132\n0x83A7\t0x5133\n0x83A8\t0x5134\n0x83A9\t0x5135\n0x83AA\t0x5136\n0x83AB\t0x5137\n0x83AC\t0x5138\n0x83AD\t0x5139\n0x83AE\t0x513A\n0x83AF\t0x513B\n0x83B0\t0x513C\n0x83B1\t0x513D\n0x83B2\t0x513E\n0x83B3\t0x5142\n0x83B4\t0x5147\n0x83B5\t0x514A\n0x83B6\t0x514C\n0x83B7\t0x514E\n0x83B8\t0x514F\n0x83B9\t0x5150\n0x83BA\t0x5152\n0x83BB\t0x5153\n0x83BC\t0x5157\n0x83BD\t0x5158\n0x83BE\t0x5159\n0x83BF\t0x515B\n0x83C0\t0x515D\n0x83C1\t0x515E\n0x83C2\t0x515F\n0x83C3\t0x5160\n0x83C4\t0x5161\n0x83C5\t0x5163\n0x83C6\t0x5164\n0x83C7\t0x5166\n0x83C8\t0x5167\n0x83C9\t0x5169\n0x83CA\t0x516A\n0x83CB\t0x516F\n0x83CC\t0x5172\n0x83CD\t0x517A\n0x83CE\t0x517E\n0x83CF\t0x517F\n0x83D0\t0x5183\n0x83D1\t0x5184\n0x83D2\t0x5186\n0x83D3\t0x5187\n0x83D4\t0x518A\n0x83D5\t0x518B\n0x83D6\t0x518E\n0x83D7\t0x518F\n0x83D8\t0x5190\n0x83D9\t0x5191\n0x83DA\t0x5193\n0x83DB\t0x5194\n0x83DC\t0x5198\n0x83DD\t0x519A\n0x83DE\t0x519D\n0x83DF\t0x519E\n0x83E0\t0x519F\n0x83E1\t0x51A1\n0x83E2\t0x51A3\n0x83E3\t0x51A6\n0x83E4\t0x51A7\n0x83E5\t0x51A8\n0x83E6\t0x51A9\n0x83E7\t0x51AA\n0x83E8\t0x51AD\n0x83E9\t0x51AE\n0x83EA\t0x51B4\n0x83EB\t0x51B8\n0x83EC\t0x51B9\n0x83ED\t0x51BA\n0x83EE\t0x51BE\n0x83EF\t0x51BF\n0x83F0\t0x51C1\n0x83F1\t0x51C2\n0x83F2\t0x51C3\n0x83F3\t0x51C5\n0x83F4\t0x51C8\n0x83F5\t0x51CA\n0x83F6\t0x51CD\n0x83F7\t0x51CE\n0x83F8\t0x51D0\n0x83F9\t0x51D2\n0x83FA\t0x51D3\n0x83FB\t0x51D4\n0x83FC\t0x51D5\n0x83FD\t0x51D6\n0x83FE\t0x51D7\n0x8440\t0x51D8\n0x8441\t0x51D9\n0x8442\t0x51DA\n0x8443\t0x51DC\n0x8444\t0x51DE\n0x8445\t0x51DF\n0x8446\t0x51E2\n0x8447\t0x51E3\n0x8448\t0x51E5\n0x8449\t0x51E6\n0x844A\t0x51E7\n0x844B\t0x51E8\n0x844C\t0x51E9\n0x844D\t0x51EA\n0x844E\t0x51EC\n0x844F\t0x51EE\n0x8450\t0x51F1\n0x8451\t0x51F2\n0x8452\t0x51F4\n0x8453\t0x51F7\n0x8454\t0x51FE\n0x8455\t0x5204\n0x8456\t0x5205\n0x8457\t0x5209\n0x8458\t0x520B\n0x8459\t0x520C\n0x845A\t0x520F\n0x845B\t0x5210\n0x845C\t0x5213\n0x845D\t0x5214\n0x845E\t0x5215\n0x845F\t0x521C\n0x8460\t0x521E\n0x8461\t0x521F\n0x8462\t0x5221\n0x8463\t0x5222\n0x8464\t0x5223\n0x8465\t0x5225\n0x8466\t0x5226\n0x8467\t0x5227\n0x8468\t0x522A\n0x8469\t0x522C\n0x846A\t0x522F\n0x846B\t0x5231\n0x846C\t0x5232\n0x846D\t0x5234\n0x846E\t0x5235\n0x846F\t0x523C\n0x8470\t0x523E\n0x8471\t0x5244\n0x8472\t0x5245\n0x8473\t0x5246\n0x8474\t0x5247\n0x8475\t0x5248\n0x8476\t0x5249\n0x8477\t0x524B\n0x8478\t0x524E\n0x8479\t0x524F\n0x847A\t0x5252\n0x847B\t0x5253\n0x847C\t0x5255\n0x847D\t0x5257\n0x847E\t0x5258\n0x8480\t0x5259\n0x8481\t0x525A\n0x8482\t0x525B\n0x8483\t0x525D\n0x8484\t0x525F\n0x8485\t0x5260\n0x8486\t0x5262\n0x8487\t0x5263\n0x8488\t0x5264\n0x8489\t0x5266\n0x848A\t0x5268\n0x848B\t0x526B\n0x848C\t0x526C\n0x848D\t0x526D\n0x848E\t0x526E\n0x848F\t0x5270\n0x8490\t0x5271\n0x8491\t0x5273\n0x8492\t0x5274\n0x8493\t0x5275\n0x8494\t0x5276\n0x8495\t0x5277\n0x8496\t0x5278\n0x8497\t0x5279\n0x8498\t0x527A\n0x8499\t0x527B\n0x849A\t0x527C\n0x849B\t0x527E\n0x849C\t0x5280\n0x849D\t0x5283\n0x849E\t0x5284\n0x849F\t0x5285\n0x84A0\t0x5286\n0x84A1\t0x5287\n0x84A2\t0x5289\n0x84A3\t0x528A\n0x84A4\t0x528B\n0x84A5\t0x528C\n0x84A6\t0x528D\n0x84A7\t0x528E\n0x84A8\t0x528F\n0x84A9\t0x5291\n0x84AA\t0x5292\n0x84AB\t0x5294\n0x84AC\t0x5295\n0x84AD\t0x5296\n0x84AE\t0x5297\n0x84AF\t0x5298\n0x84B0\t0x5299\n0x84B1\t0x529A\n0x84B2\t0x529C\n0x84B3\t0x52A4\n0x84B4\t0x52A5\n0x84B5\t0x52A6\n0x84B6\t0x52A7\n0x84B7\t0x52AE\n0x84B8\t0x52AF\n0x84B9\t0x52B0\n0x84BA\t0x52B4\n0x84BB\t0x52B5\n0x84BC\t0x52B6\n0x84BD\t0x52B7\n0x84BE\t0x52B8\n0x84BF\t0x52B9\n0x84C0\t0x52BA\n0x84C1\t0x52BB\n0x84C2\t0x52BC\n0x84C3\t0x52BD\n0x84C4\t0x52C0\n0x84C5\t0x52C1\n0x84C6\t0x52C2\n0x84C7\t0x52C4\n0x84C8\t0x52C5\n0x84C9\t0x52C6\n0x84CA\t0x52C8\n0x84CB\t0x52CA\n0x84CC\t0x52CC\n0x84CD\t0x52CD\n0x84CE\t0x52CE\n0x84CF\t0x52CF\n0x84D0\t0x52D1\n0x84D1\t0x52D3\n0x84D2\t0x52D4\n0x84D3\t0x52D5\n0x84D4\t0x52D7\n0x84D5\t0x52D9\n0x84D6\t0x52DA\n0x84D7\t0x52DB\n0x84D8\t0x52DC\n0x84D9\t0x52DD\n0x84DA\t0x52DE\n0x84DB\t0x52E0\n0x84DC\t0x52E1\n0x84DD\t0x52E2\n0x84DE\t0x52E3\n0x84DF\t0x52E5\n0x84E0\t0x52E6\n0x84E1\t0x52E7\n0x84E2\t0x52E8\n0x84E3\t0x52E9\n0x84E4\t0x52EA\n0x84E5\t0x52EB\n0x84E6\t0x52EC\n0x84E7\t0x52ED\n0x84E8\t0x52EE\n0x84E9\t0x52EF\n0x84EA\t0x52F1\n0x84EB\t0x52F2\n0x84EC\t0x52F3\n0x84ED\t0x52F4\n0x84EE\t0x52F5\n0x84EF\t0x52F6\n0x84F0\t0x52F7\n0x84F1\t0x52F8\n0x84F2\t0x52FB\n0x84F3\t0x52FC\n0x84F4\t0x52FD\n0x84F5\t0x5301\n0x84F6\t0x5302\n0x84F7\t0x5303\n0x84F8\t0x5304\n0x84F9\t0x5307\n0x84FA\t0x5309\n0x84FB\t0x530A\n0x84FC\t0x530B\n0x84FD\t0x530C\n0x84FE\t0x530E\n0x8540\t0x5311\n0x8541\t0x5312\n0x8542\t0x5313\n0x8543\t0x5314\n0x8544\t0x5318\n0x8545\t0x531B\n0x8546\t0x531C\n0x8547\t0x531E\n0x8548\t0x531F\n0x8549\t0x5322\n0x854A\t0x5324\n0x854B\t0x5325\n0x854C\t0x5327\n0x854D\t0x5328\n0x854E\t0x5329\n0x854F\t0x532B\n0x8550\t0x532C\n0x8551\t0x532D\n0x8552\t0x532F\n0x8553\t0x5330\n0x8554\t0x5331\n0x8555\t0x5332\n0x8556\t0x5333\n0x8557\t0x5334\n0x8558\t0x5335\n0x8559\t0x5336\n0x855A\t0x5337\n0x855B\t0x5338\n0x855C\t0x533C\n0x855D\t0x533D\n0x855E\t0x5340\n0x855F\t0x5342\n0x8560\t0x5344\n0x8561\t0x5346\n0x8562\t0x534B\n0x8563\t0x534C\n0x8564\t0x534D\n0x8565\t0x5350\n0x8566\t0x5354\n0x8567\t0x5358\n0x8568\t0x5359\n0x8569\t0x535B\n0x856A\t0x535D\n0x856B\t0x5365\n0x856C\t0x5368\n0x856D\t0x536A\n0x856E\t0x536C\n0x856F\t0x536D\n0x8570\t0x5372\n0x8571\t0x5376\n0x8572\t0x5379\n0x8573\t0x537B\n0x8574\t0x537C\n0x8575\t0x537D\n0x8576\t0x537E\n0x8577\t0x5380\n0x8578\t0x5381\n0x8579\t0x5383\n0x857A\t0x5387\n0x857B\t0x5388\n0x857C\t0x538A\n0x857D\t0x538E\n0x857E\t0x538F\n0x8580\t0x5390\n0x8581\t0x5391\n0x8582\t0x5392\n0x8583\t0x5393\n0x8584\t0x5394\n0x8585\t0x5396\n0x8586\t0x5397\n0x8587\t0x5399\n0x8588\t0x539B\n0x8589\t0x539C\n0x858A\t0x539E\n0x858B\t0x53A0\n0x858C\t0x53A1\n0x858D\t0x53A4\n0x858E\t0x53A7\n0x858F\t0x53AA\n0x8590\t0x53AB\n0x8591\t0x53AC\n0x8592\t0x53AD\n0x8593\t0x53AF\n0x8594\t0x53B0\n0x8595\t0x53B1\n0x8596\t0x53B2\n0x8597\t0x53B3\n0x8598\t0x53B4\n0x8599\t0x53B5\n0x859A\t0x53B7\n0x859B\t0x53B8\n0x859C\t0x53B9\n0x859D\t0x53BA\n0x859E\t0x53BC\n0x859F\t0x53BD\n0x85A0\t0x53BE\n0x85A1\t0x53C0\n0x85A2\t0x53C3\n0x85A3\t0x53C4\n0x85A4\t0x53C5\n0x85A5\t0x53C6\n0x85A6\t0x53C7\n0x85A7\t0x53CE\n0x85A8\t0x53CF\n0x85A9\t0x53D0\n0x85AA\t0x53D2\n0x85AB\t0x53D3\n0x85AC\t0x53D5\n0x85AD\t0x53DA\n0x85AE\t0x53DC\n0x85AF\t0x53DD\n0x85B0\t0x53DE\n0x85B1\t0x53E1\n0x85B2\t0x53E2\n0x85B3\t0x53E7\n0x85B4\t0x53F4\n0x85B5\t0x53FA\n0x85B6\t0x53FE\n0x85B7\t0x53FF\n0x85B8\t0x5400\n0x85B9\t0x5402\n0x85BA\t0x5405\n0x85BB\t0x5407\n0x85BC\t0x540B\n0x85BD\t0x5414\n0x85BE\t0x5418\n0x85BF\t0x5419\n0x85C0\t0x541A\n0x85C1\t0x541C\n0x85C2\t0x5422\n0x85C3\t0x5424\n0x85C4\t0x5425\n0x85C5\t0x542A\n0x85C6\t0x5430\n0x85C7\t0x5433\n0x85C8\t0x5436\n0x85C9\t0x5437\n0x85CA\t0x543A\n0x85CB\t0x543D\n0x85CC\t0x543F\n0x85CD\t0x5441\n0x85CE\t0x5442\n0x85CF\t0x5444\n0x85D0\t0x5445\n0x85D1\t0x5447\n0x85D2\t0x5449\n0x85D3\t0x544C\n0x85D4\t0x544D\n0x85D5\t0x544E\n0x85D6\t0x544F\n0x85D7\t0x5451\n0x85D8\t0x545A\n0x85D9\t0x545D\n0x85DA\t0x545E\n0x85DB\t0x545F\n0x85DC\t0x5460\n0x85DD\t0x5461\n0x85DE\t0x5463\n0x85DF\t0x5465\n0x85E0\t0x5467\n0x85E1\t0x5469\n0x85E2\t0x546A\n0x85E3\t0x546B\n0x85E4\t0x546C\n0x85E5\t0x546D\n0x85E6\t0x546E\n0x85E7\t0x546F\n0x85E8\t0x5470\n0x85E9\t0x5474\n0x85EA\t0x5479\n0x85EB\t0x547A\n0x85EC\t0x547E\n0x85ED\t0x547F\n0x85EE\t0x5481\n0x85EF\t0x5483\n0x85F0\t0x5485\n0x85F1\t0x5487\n0x85F2\t0x5488\n0x85F3\t0x5489\n0x85F4\t0x548A\n0x85F5\t0x548D\n0x85F6\t0x5491\n0x85F7\t0x5493\n0x85F8\t0x5497\n0x85F9\t0x5498\n0x85FA\t0x549C\n0x85FB\t0x549E\n0x85FC\t0x549F\n0x85FD\t0x54A0\n0x85FE\t0x54A1\n0x8640\t0x54A2\n0x8641\t0x54A5\n0x8642\t0x54AE\n0x8643\t0x54B0\n0x8644\t0x54B2\n0x8645\t0x54B5\n0x8646\t0x54B6\n0x8647\t0x54B7\n0x8648\t0x54B9\n0x8649\t0x54BA\n0x864A\t0x54BC\n0x864B\t0x54BE\n0x864C\t0x54C3\n0x864D\t0x54C5\n0x864E\t0x54CA\n0x864F\t0x54CB\n0x8650\t0x54D6\n0x8651\t0x54D8\n0x8652\t0x54DB\n0x8653\t0x54E0\n0x8654\t0x54E1\n0x8655\t0x54E2\n0x8656\t0x54E3\n0x8657\t0x54E4\n0x8658\t0x54EB\n0x8659\t0x54EC\n0x865A\t0x54EF\n0x865B\t0x54F0\n0x865C\t0x54F1\n0x865D\t0x54F4\n0x865E\t0x54F5\n0x865F\t0x54F6\n0x8660\t0x54F7\n0x8661\t0x54F8\n0x8662\t0x54F9\n0x8663\t0x54FB\n0x8664\t0x54FE\n0x8665\t0x5500\n0x8666\t0x5502\n0x8667\t0x5503\n0x8668\t0x5504\n0x8669\t0x5505\n0x866A\t0x5508\n0x866B\t0x550A\n0x866C\t0x550B\n0x866D\t0x550C\n0x866E\t0x550D\n0x866F\t0x550E\n0x8670\t0x5512\n0x8671\t0x5513\n0x8672\t0x5515\n0x8673\t0x5516\n0x8674\t0x5517\n0x8675\t0x5518\n0x8676\t0x5519\n0x8677\t0x551A\n0x8678\t0x551C\n0x8679\t0x551D\n0x867A\t0x551E\n0x867B\t0x551F\n0x867C\t0x5521\n0x867D\t0x5525\n0x867E\t0x5526\n0x8680\t0x5528\n0x8681\t0x5529\n0x8682\t0x552B\n0x8683\t0x552D\n0x8684\t0x5532\n0x8685\t0x5534\n0x8686\t0x5535\n0x8687\t0x5536\n0x8688\t0x5538\n0x8689\t0x5539\n0x868A\t0x553A\n0x868B\t0x553B\n0x868C\t0x553D\n0x868D\t0x5540\n0x868E\t0x5542\n0x868F\t0x5545\n0x8690\t0x5547\n0x8691\t0x5548\n0x8692\t0x554B\n0x8693\t0x554C\n0x8694\t0x554D\n0x8695\t0x554E\n0x8696\t0x554F\n0x8697\t0x5551\n0x8698\t0x5552\n0x8699\t0x5553\n0x869A\t0x5554\n0x869B\t0x5557\n0x869C\t0x5558\n0x869D\t0x5559\n0x869E\t0x555A\n0x869F\t0x555B\n0x86A0\t0x555D\n0x86A1\t0x555E\n0x86A2\t0x555F\n0x86A3\t0x5560\n0x86A4\t0x5562\n0x86A5\t0x5563\n0x86A6\t0x5568\n0x86A7\t0x5569\n0x86A8\t0x556B\n0x86A9\t0x556F\n0x86AA\t0x5570\n0x86AB\t0x5571\n0x86AC\t0x5572\n0x86AD\t0x5573\n0x86AE\t0x5574\n0x86AF\t0x5579\n0x86B0\t0x557A\n0x86B1\t0x557D\n0x86B2\t0x557F\n0x86B3\t0x5585\n0x86B4\t0x5586\n0x86B5\t0x558C\n0x86B6\t0x558D\n0x86B7\t0x558E\n0x86B8\t0x5590\n0x86B9\t0x5592\n0x86BA\t0x5593\n0x86BB\t0x5595\n0x86BC\t0x5596\n0x86BD\t0x5597\n0x86BE\t0x559A\n0x86BF\t0x559B\n0x86C0\t0x559E\n0x86C1\t0x55A0\n0x86C2\t0x55A1\n0x86C3\t0x55A2\n0x86C4\t0x55A3\n0x86C5\t0x55A4\n0x86C6\t0x55A5\n0x86C7\t0x55A6\n0x86C8\t0x55A8\n0x86C9\t0x55A9\n0x86CA\t0x55AA\n0x86CB\t0x55AB\n0x86CC\t0x55AC\n0x86CD\t0x55AD\n0x86CE\t0x55AE\n0x86CF\t0x55AF\n0x86D0\t0x55B0\n0x86D1\t0x55B2\n0x86D2\t0x55B4\n0x86D3\t0x55B6\n0x86D4\t0x55B8\n0x86D5\t0x55BA\n0x86D6\t0x55BC\n0x86D7\t0x55BF\n0x86D8\t0x55C0\n0x86D9\t0x55C1\n0x86DA\t0x55C2\n0x86DB\t0x55C3\n0x86DC\t0x55C6\n0x86DD\t0x55C7\n0x86DE\t0x55C8\n0x86DF\t0x55CA\n0x86E0\t0x55CB\n0x86E1\t0x55CE\n0x86E2\t0x55CF\n0x86E3\t0x55D0\n0x86E4\t0x55D5\n0x86E5\t0x55D7\n0x86E6\t0x55D8\n0x86E7\t0x55D9\n0x86E8\t0x55DA\n0x86E9\t0x55DB\n0x86EA\t0x55DE\n0x86EB\t0x55E0\n0x86EC\t0x55E2\n0x86ED\t0x55E7\n0x86EE\t0x55E9\n0x86EF\t0x55ED\n0x86F0\t0x55EE\n0x86F1\t0x55F0\n0x86F2\t0x55F1\n0x86F3\t0x55F4\n0x86F4\t0x55F6\n0x86F5\t0x55F8\n0x86F6\t0x55F9\n0x86F7\t0x55FA\n0x86F8\t0x55FB\n0x86F9\t0x55FC\n0x86FA\t0x55FF\n0x86FB\t0x5602\n0x86FC\t0x5603\n0x86FD\t0x5604\n0x86FE\t0x5605\n0x8740\t0x5606\n0x8741\t0x5607\n0x8742\t0x560A\n0x8743\t0x560B\n0x8744\t0x560D\n0x8745\t0x5610\n0x8746\t0x5611\n0x8747\t0x5612\n0x8748\t0x5613\n0x8749\t0x5614\n0x874A\t0x5615\n0x874B\t0x5616\n0x874C\t0x5617\n0x874D\t0x5619\n0x874E\t0x561A\n0x874F\t0x561C\n0x8750\t0x561D\n0x8751\t0x5620\n0x8752\t0x5621\n0x8753\t0x5622\n0x8754\t0x5625\n0x8755\t0x5626\n0x8756\t0x5628\n0x8757\t0x5629\n0x8758\t0x562A\n0x8759\t0x562B\n0x875A\t0x562E\n0x875B\t0x562F\n0x875C\t0x5630\n0x875D\t0x5633\n0x875E\t0x5635\n0x875F\t0x5637\n0x8760\t0x5638\n0x8761\t0x563A\n0x8762\t0x563C\n0x8763\t0x563D\n0x8764\t0x563E\n0x8765\t0x5640\n0x8766\t0x5641\n0x8767\t0x5642\n0x8768\t0x5643\n0x8769\t0x5644\n0x876A\t0x5645\n0x876B\t0x5646\n0x876C\t0x5647\n0x876D\t0x5648\n0x876E\t0x5649\n0x876F\t0x564A\n0x8770\t0x564B\n0x8771\t0x564F\n0x8772\t0x5650\n0x8773\t0x5651\n0x8774\t0x5652\n0x8775\t0x5653\n0x8776\t0x5655\n0x8777\t0x5656\n0x8778\t0x565A\n0x8779\t0x565B\n0x877A\t0x565D\n0x877B\t0x565E\n0x877C\t0x565F\n0x877D\t0x5660\n0x877E\t0x5661\n0x8780\t0x5663\n0x8781\t0x5665\n0x8782\t0x5666\n0x8783\t0x5667\n0x8784\t0x566D\n0x8785\t0x566E\n0x8786\t0x566F\n0x8787\t0x5670\n0x8788\t0x5672\n0x8789\t0x5673\n0x878A\t0x5674\n0x878B\t0x5675\n0x878C\t0x5677\n0x878D\t0x5678\n0x878E\t0x5679\n0x878F\t0x567A\n0x8790\t0x567D\n0x8791\t0x567E\n0x8792\t0x567F\n0x8793\t0x5680\n0x8794\t0x5681\n0x8795\t0x5682\n0x8796\t0x5683\n0x8797\t0x5684\n0x8798\t0x5687\n0x8799\t0x5688\n0x879A\t0x5689\n0x879B\t0x568A\n0x879C\t0x568B\n0x879D\t0x568C\n0x879E\t0x568D\n0x879F\t0x5690\n0x87A0\t0x5691\n0x87A1\t0x5692\n0x87A2\t0x5694\n0x87A3\t0x5695\n0x87A4\t0x5696\n0x87A5\t0x5697\n0x87A6\t0x5698\n0x87A7\t0x5699\n0x87A8\t0x569A\n0x87A9\t0x569B\n0x87AA\t0x569C\n0x87AB\t0x569D\n0x87AC\t0x569E\n0x87AD\t0x569F\n0x87AE\t0x56A0\n0x87AF\t0x56A1\n0x87B0\t0x56A2\n0x87B1\t0x56A4\n0x87B2\t0x56A5\n0x87B3\t0x56A6\n0x87B4\t0x56A7\n0x87B5\t0x56A8\n0x87B6\t0x56A9\n0x87B7\t0x56AA\n0x87B8\t0x56AB\n0x87B9\t0x56AC\n0x87BA\t0x56AD\n0x87BB\t0x56AE\n0x87BC\t0x56B0\n0x87BD\t0x56B1\n0x87BE\t0x56B2\n0x87BF\t0x56B3\n0x87C0\t0x56B4\n0x87C1\t0x56B5\n0x87C2\t0x56B6\n0x87C3\t0x56B8\n0x87C4\t0x56B9\n0x87C5\t0x56BA\n0x87C6\t0x56BB\n0x87C7\t0x56BD\n0x87C8\t0x56BE\n0x87C9\t0x56BF\n0x87CA\t0x56C0\n0x87CB\t0x56C1\n0x87CC\t0x56C2\n0x87CD\t0x56C3\n0x87CE\t0x56C4\n0x87CF\t0x56C5\n0x87D0\t0x56C6\n0x87D1\t0x56C7\n0x87D2\t0x56C8\n0x87D3\t0x56C9\n0x87D4\t0x56CB\n0x87D5\t0x56CC\n0x87D6\t0x56CD\n0x87D7\t0x56CE\n0x87D8\t0x56CF\n0x87D9\t0x56D0\n0x87DA\t0x56D1\n0x87DB\t0x56D2\n0x87DC\t0x56D3\n0x87DD\t0x56D5\n0x87DE\t0x56D6\n0x87DF\t0x56D8\n0x87E0\t0x56D9\n0x87E1\t0x56DC\n0x87E2\t0x56E3\n0x87E3\t0x56E5\n0x87E4\t0x56E6\n0x87E5\t0x56E7\n0x87E6\t0x56E8\n0x87E7\t0x56E9\n0x87E8\t0x56EA\n0x87E9\t0x56EC\n0x87EA\t0x56EE\n0x87EB\t0x56EF\n0x87EC\t0x56F2\n0x87ED\t0x56F3\n0x87EE\t0x56F6\n0x87EF\t0x56F7\n0x87F0\t0x56F8\n0x87F1\t0x56FB\n0x87F2\t0x56FC\n0x87F3\t0x5700\n0x87F4\t0x5701\n0x87F5\t0x5702\n0x87F6\t0x5705\n0x87F7\t0x5707\n0x87F8\t0x570B\n0x87F9\t0x570C\n0x87FA\t0x570D\n0x87FB\t0x570E\n0x87FC\t0x570F\n0x87FD\t0x5710\n0x87FE\t0x5711\n0x8840\t0x5712\n0x8841\t0x5713\n0x8842\t0x5714\n0x8843\t0x5715\n0x8844\t0x5716\n0x8845\t0x5717\n0x8846\t0x5718\n0x8847\t0x5719\n0x8848\t0x571A\n0x8849\t0x571B\n0x884A\t0x571D\n0x884B\t0x571E\n0x884C\t0x5720\n0x884D\t0x5721\n0x884E\t0x5722\n0x884F\t0x5724\n0x8850\t0x5725\n0x8851\t0x5726\n0x8852\t0x5727\n0x8853\t0x572B\n0x8854\t0x5731\n0x8855\t0x5732\n0x8856\t0x5734\n0x8857\t0x5735\n0x8858\t0x5736\n0x8859\t0x5737\n0x885A\t0x5738\n0x885B\t0x573C\n0x885C\t0x573D\n0x885D\t0x573F\n0x885E\t0x5741\n0x885F\t0x5743\n0x8860\t0x5744\n0x8861\t0x5745\n0x8862\t0x5746\n0x8863\t0x5748\n0x8864\t0x5749\n0x8865\t0x574B\n0x8866\t0x5752\n0x8867\t0x5753\n0x8868\t0x5754\n0x8869\t0x5755\n0x886A\t0x5756\n0x886B\t0x5758\n0x886C\t0x5759\n0x886D\t0x5762\n0x886E\t0x5763\n0x886F\t0x5765\n0x8870\t0x5767\n0x8871\t0x576C\n0x8872\t0x576E\n0x8873\t0x5770\n0x8874\t0x5771\n0x8875\t0x5772\n0x8876\t0x5774\n0x8877\t0x5775\n0x8878\t0x5778\n0x8879\t0x5779\n0x887A\t0x577A\n0x887B\t0x577D\n0x887C\t0x577E\n0x887D\t0x577F\n0x887E\t0x5780\n0x8880\t0x5781\n0x8881\t0x5787\n0x8882\t0x5788\n0x8883\t0x5789\n0x8884\t0x578A\n0x8885\t0x578D\n0x8886\t0x578E\n0x8887\t0x578F\n0x8888\t0x5790\n0x8889\t0x5791\n0x888A\t0x5794\n0x888B\t0x5795\n0x888C\t0x5796\n0x888D\t0x5797\n0x888E\t0x5798\n0x888F\t0x5799\n0x8890\t0x579A\n0x8891\t0x579C\n0x8892\t0x579D\n0x8893\t0x579E\n0x8894\t0x579F\n0x8895\t0x57A5\n0x8896\t0x57A8\n0x8897\t0x57AA\n0x8898\t0x57AC\n0x8899\t0x57AF\n0x889A\t0x57B0\n0x889B\t0x57B1\n0x889C\t0x57B3\n0x889D\t0x57B5\n0x889E\t0x57B6\n0x889F\t0x57B7\n0x88A0\t0x57B9\n0x88A1\t0x57BA\n0x88A2\t0x57BB\n0x88A3\t0x57BC\n0x88A4\t0x57BD\n0x88A5\t0x57BE\n0x88A6\t0x57BF\n0x88A7\t0x57C0\n0x88A8\t0x57C1\n0x88A9\t0x57C4\n0x88AA\t0x57C5\n0x88AB\t0x57C6\n0x88AC\t0x57C7\n0x88AD\t0x57C8\n0x88AE\t0x57C9\n0x88AF\t0x57CA\n0x88B0\t0x57CC\n0x88B1\t0x57CD\n0x88B2\t0x57D0\n0x88B3\t0x57D1\n0x88B4\t0x57D3\n0x88B5\t0x57D6\n0x88B6\t0x57D7\n0x88B7\t0x57DB\n0x88B8\t0x57DC\n0x88B9\t0x57DE\n0x88BA\t0x57E1\n0x88BB\t0x57E2\n0x88BC\t0x57E3\n0x88BD\t0x57E5\n0x88BE\t0x57E6\n0x88BF\t0x57E7\n0x88C0\t0x57E8\n0x88C1\t0x57E9\n0x88C2\t0x57EA\n0x88C3\t0x57EB\n0x88C4\t0x57EC\n0x88C5\t0x57EE\n0x88C6\t0x57F0\n0x88C7\t0x57F1\n0x88C8\t0x57F2\n0x88C9\t0x57F3\n0x88CA\t0x57F5\n0x88CB\t0x57F6\n0x88CC\t0x57F7\n0x88CD\t0x57FB\n0x88CE\t0x57FC\n0x88CF\t0x57FE\n0x88D0\t0x57FF\n0x88D1\t0x5801\n0x88D2\t0x5803\n0x88D3\t0x5804\n0x88D4\t0x5805\n0x88D5\t0x5808\n0x88D6\t0x5809\n0x88D7\t0x580A\n0x88D8\t0x580C\n0x88D9\t0x580E\n0x88DA\t0x580F\n0x88DB\t0x5810\n0x88DC\t0x5812\n0x88DD\t0x5813\n0x88DE\t0x5814\n0x88DF\t0x5816\n0x88E0\t0x5817\n0x88E1\t0x5818\n0x88E2\t0x581A\n0x88E3\t0x581B\n0x88E4\t0x581C\n0x88E5\t0x581D\n0x88E6\t0x581F\n0x88E7\t0x5822\n0x88E8\t0x5823\n0x88E9\t0x5825\n0x88EA\t0x5826\n0x88EB\t0x5827\n0x88EC\t0x5828\n0x88ED\t0x5829\n0x88EE\t0x582B\n0x88EF\t0x582C\n0x88F0\t0x582D\n0x88F1\t0x582E\n0x88F2\t0x582F\n0x88F3\t0x5831\n0x88F4\t0x5832\n0x88F5\t0x5833\n0x88F6\t0x5834\n0x88F7\t0x5836\n0x88F8\t0x5837\n0x88F9\t0x5838\n0x88FA\t0x5839\n0x88FB\t0x583A\n0x88FC\t0x583B\n0x88FD\t0x583C\n0x88FE\t0x583D\n0x8940\t0x583E\n0x8941\t0x583F\n0x8942\t0x5840\n0x8943\t0x5841\n0x8944\t0x5842\n0x8945\t0x5843\n0x8946\t0x5845\n0x8947\t0x5846\n0x8948\t0x5847\n0x8949\t0x5848\n0x894A\t0x5849\n0x894B\t0x584A\n0x894C\t0x584B\n0x894D\t0x584E\n0x894E\t0x584F\n0x894F\t0x5850\n0x8950\t0x5852\n0x8951\t0x5853\n0x8952\t0x5855\n0x8953\t0x5856\n0x8954\t0x5857\n0x8955\t0x5859\n0x8956\t0x585A\n0x8957\t0x585B\n0x8958\t0x585C\n0x8959\t0x585D\n0x895A\t0x585F\n0x895B\t0x5860\n0x895C\t0x5861\n0x895D\t0x5862\n0x895E\t0x5863\n0x895F\t0x5864\n0x8960\t0x5866\n0x8961\t0x5867\n0x8962\t0x5868\n0x8963\t0x5869\n0x8964\t0x586A\n0x8965\t0x586D\n0x8966\t0x586E\n0x8967\t0x586F\n0x8968\t0x5870\n0x8969\t0x5871\n0x896A\t0x5872\n0x896B\t0x5873\n0x896C\t0x5874\n0x896D\t0x5875\n0x896E\t0x5876\n0x896F\t0x5877\n0x8970\t0x5878\n0x8971\t0x5879\n0x8972\t0x587A\n0x8973\t0x587B\n0x8974\t0x587C\n0x8975\t0x587D\n0x8976\t0x587F\n0x8977\t0x5882\n0x8978\t0x5884\n0x8979\t0x5886\n0x897A\t0x5887\n0x897B\t0x5888\n0x897C\t0x588A\n0x897D\t0x588B\n0x897E\t0x588C\n0x8980\t0x588D\n0x8981\t0x588E\n0x8982\t0x588F\n0x8983\t0x5890\n0x8984\t0x5891\n0x8985\t0x5894\n0x8986\t0x5895\n0x8987\t0x5896\n0x8988\t0x5897\n0x8989\t0x5898\n0x898A\t0x589B\n0x898B\t0x589C\n0x898C\t0x589D\n0x898D\t0x58A0\n0x898E\t0x58A1\n0x898F\t0x58A2\n0x8990\t0x58A3\n0x8991\t0x58A4\n0x8992\t0x58A5\n0x8993\t0x58A6\n0x8994\t0x58A7\n0x8995\t0x58AA\n0x8996\t0x58AB\n0x8997\t0x58AC\n0x8998\t0x58AD\n0x8999\t0x58AE\n0x899A\t0x58AF\n0x899B\t0x58B0\n0x899C\t0x58B1\n0x899D\t0x58B2\n0x899E\t0x58B3\n0x899F\t0x58B4\n0x89A0\t0x58B5\n0x89A1\t0x58B6\n0x89A2\t0x58B7\n0x89A3\t0x58B8\n0x89A4\t0x58B9\n0x89A5\t0x58BA\n0x89A6\t0x58BB\n0x89A7\t0x58BD\n0x89A8\t0x58BE\n0x89A9\t0x58BF\n0x89AA\t0x58C0\n0x89AB\t0x58C2\n0x89AC\t0x58C3\n0x89AD\t0x58C4\n0x89AE\t0x58C6\n0x89AF\t0x58C7\n0x89B0\t0x58C8\n0x89B1\t0x58C9\n0x89B2\t0x58CA\n0x89B3\t0x58CB\n0x89B4\t0x58CC\n0x89B5\t0x58CD\n0x89B6\t0x58CE\n0x89B7\t0x58CF\n0x89B8\t0x58D0\n0x89B9\t0x58D2\n0x89BA\t0x58D3\n0x89BB\t0x58D4\n0x89BC\t0x58D6\n0x89BD\t0x58D7\n0x89BE\t0x58D8\n0x89BF\t0x58D9\n0x89C0\t0x58DA\n0x89C1\t0x58DB\n0x89C2\t0x58DC\n0x89C3\t0x58DD\n0x89C4\t0x58DE\n0x89C5\t0x58DF\n0x89C6\t0x58E0\n0x89C7\t0x58E1\n0x89C8\t0x58E2\n0x89C9\t0x58E3\n0x89CA\t0x58E5\n0x89CB\t0x58E6\n0x89CC\t0x58E7\n0x89CD\t0x58E8\n0x89CE\t0x58E9\n0x89CF\t0x58EA\n0x89D0\t0x58ED\n0x89D1\t0x58EF\n0x89D2\t0x58F1\n0x89D3\t0x58F2\n0x89D4\t0x58F4\n0x89D5\t0x58F5\n0x89D6\t0x58F7\n0x89D7\t0x58F8\n0x89D8\t0x58FA\n0x89D9\t0x58FB\n0x89DA\t0x58FC\n0x89DB\t0x58FD\n0x89DC\t0x58FE\n0x89DD\t0x58FF\n0x89DE\t0x5900\n0x89DF\t0x5901\n0x89E0\t0x5903\n0x89E1\t0x5905\n0x89E2\t0x5906\n0x89E3\t0x5908\n0x89E4\t0x5909\n0x89E5\t0x590A\n0x89E6\t0x590B\n0x89E7\t0x590C\n0x89E8\t0x590E\n0x89E9\t0x5910\n0x89EA\t0x5911\n0x89EB\t0x5912\n0x89EC\t0x5913\n0x89ED\t0x5917\n0x89EE\t0x5918\n0x89EF\t0x591B\n0x89F0\t0x591D\n0x89F1\t0x591E\n0x89F2\t0x5920\n0x89F3\t0x5921\n0x89F4\t0x5922\n0x89F5\t0x5923\n0x89F6\t0x5926\n0x89F7\t0x5928\n0x89F8\t0x592C\n0x89F9\t0x5930\n0x89FA\t0x5932\n0x89FB\t0x5933\n0x89FC\t0x5935\n0x89FD\t0x5936\n0x89FE\t0x593B\n0x8A40\t0x593D\n0x8A41\t0x593E\n0x8A42\t0x593F\n0x8A43\t0x5940\n0x8A44\t0x5943\n0x8A45\t0x5945\n0x8A46\t0x5946\n0x8A47\t0x594A\n0x8A48\t0x594C\n0x8A49\t0x594D\n0x8A4A\t0x5950\n0x8A4B\t0x5952\n0x8A4C\t0x5953\n0x8A4D\t0x5959\n0x8A4E\t0x595B\n0x8A4F\t0x595C\n0x8A50\t0x595D\n0x8A51\t0x595E\n0x8A52\t0x595F\n0x8A53\t0x5961\n0x8A54\t0x5963\n0x8A55\t0x5964\n0x8A56\t0x5966\n0x8A57\t0x5967\n0x8A58\t0x5968\n0x8A59\t0x5969\n0x8A5A\t0x596A\n0x8A5B\t0x596B\n0x8A5C\t0x596C\n0x8A5D\t0x596D\n0x8A5E\t0x596E\n0x8A5F\t0x596F\n0x8A60\t0x5970\n0x8A61\t0x5971\n0x8A62\t0x5972\n0x8A63\t0x5975\n0x8A64\t0x5977\n0x8A65\t0x597A\n0x8A66\t0x597B\n0x8A67\t0x597C\n0x8A68\t0x597E\n0x8A69\t0x597F\n0x8A6A\t0x5980\n0x8A6B\t0x5985\n0x8A6C\t0x5989\n0x8A6D\t0x598B\n0x8A6E\t0x598C\n0x8A6F\t0x598E\n0x8A70\t0x598F\n0x8A71\t0x5990\n0x8A72\t0x5991\n0x8A73\t0x5994\n0x8A74\t0x5995\n0x8A75\t0x5998\n0x8A76\t0x599A\n0x8A77\t0x599B\n0x8A78\t0x599C\n0x8A79\t0x599D\n0x8A7A\t0x599F\n0x8A7B\t0x59A0\n0x8A7C\t0x59A1\n0x8A7D\t0x59A2\n0x8A7E\t0x59A6\n0x8A80\t0x59A7\n0x8A81\t0x59AC\n0x8A82\t0x59AD\n0x8A83\t0x59B0\n0x8A84\t0x59B1\n0x8A85\t0x59B3\n0x8A86\t0x59B4\n0x8A87\t0x59B5\n0x8A88\t0x59B6\n0x8A89\t0x59B7\n0x8A8A\t0x59B8\n0x8A8B\t0x59BA\n0x8A8C\t0x59BC\n0x8A8D\t0x59BD\n0x8A8E\t0x59BF\n0x8A8F\t0x59C0\n0x8A90\t0x59C1\n0x8A91\t0x59C2\n0x8A92\t0x59C3\n0x8A93\t0x59C4\n0x8A94\t0x59C5\n0x8A95\t0x59C7\n0x8A96\t0x59C8\n0x8A97\t0x59C9\n0x8A98\t0x59CC\n0x8A99\t0x59CD\n0x8A9A\t0x59CE\n0x8A9B\t0x59CF\n0x8A9C\t0x59D5\n0x8A9D\t0x59D6\n0x8A9E\t0x59D9\n0x8A9F\t0x59DB\n0x8AA0\t0x59DE\n0x8AA1\t0x59DF\n0x8AA2\t0x59E0\n0x8AA3\t0x59E1\n0x8AA4\t0x59E2\n0x8AA5\t0x59E4\n0x8AA6\t0x59E6\n0x8AA7\t0x59E7\n0x8AA8\t0x59E9\n0x8AA9\t0x59EA\n0x8AAA\t0x59EB\n0x8AAB\t0x59ED\n0x8AAC\t0x59EE\n0x8AAD\t0x59EF\n0x8AAE\t0x59F0\n0x8AAF\t0x59F1\n0x8AB0\t0x59F2\n0x8AB1\t0x59F3\n0x8AB2\t0x59F4\n0x8AB3\t0x59F5\n0x8AB4\t0x59F6\n0x8AB5\t0x59F7\n0x8AB6\t0x59F8\n0x8AB7\t0x59FA\n0x8AB8\t0x59FC\n0x8AB9\t0x59FD\n0x8ABA\t0x59FE\n0x8ABB\t0x5A00\n0x8ABC\t0x5A02\n0x8ABD\t0x5A0A\n0x8ABE\t0x5A0B\n0x8ABF\t0x5A0D\n0x8AC0\t0x5A0E\n0x8AC1\t0x5A0F\n0x8AC2\t0x5A10\n0x8AC3\t0x5A12\n0x8AC4\t0x5A14\n0x8AC5\t0x5A15\n0x8AC6\t0x5A16\n0x8AC7\t0x5A17\n0x8AC8\t0x5A19\n0x8AC9\t0x5A1A\n0x8ACA\t0x5A1B\n0x8ACB\t0x5A1D\n0x8ACC\t0x5A1E\n0x8ACD\t0x5A21\n0x8ACE\t0x5A22\n0x8ACF\t0x5A24\n0x8AD0\t0x5A26\n0x8AD1\t0x5A27\n0x8AD2\t0x5A28\n0x8AD3\t0x5A2A\n0x8AD4\t0x5A2B\n0x8AD5\t0x5A2C\n0x8AD6\t0x5A2D\n0x8AD7\t0x5A2E\n0x8AD8\t0x5A2F\n0x8AD9\t0x5A30\n0x8ADA\t0x5A33\n0x8ADB\t0x5A35\n0x8ADC\t0x5A37\n0x8ADD\t0x5A38\n0x8ADE\t0x5A39\n0x8ADF\t0x5A3A\n0x8AE0\t0x5A3B\n0x8AE1\t0x5A3D\n0x8AE2\t0x5A3E\n0x8AE3\t0x5A3F\n0x8AE4\t0x5A41\n0x8AE5\t0x5A42\n0x8AE6\t0x5A43\n0x8AE7\t0x5A44\n0x8AE8\t0x5A45\n0x8AE9\t0x5A47\n0x8AEA\t0x5A48\n0x8AEB\t0x5A4B\n0x8AEC\t0x5A4C\n0x8AED\t0x5A4D\n0x8AEE\t0x5A4E\n0x8AEF\t0x5A4F\n0x8AF0\t0x5A50\n0x8AF1\t0x5A51\n0x8AF2\t0x5A52\n0x8AF3\t0x5A53\n0x8AF4\t0x5A54\n0x8AF5\t0x5A56\n0x8AF6\t0x5A57\n0x8AF7\t0x5A58\n0x8AF8\t0x5A59\n0x8AF9\t0x5A5B\n0x8AFA\t0x5A5C\n0x8AFB\t0x5A5D\n0x8AFC\t0x5A5E\n0x8AFD\t0x5A5F\n0x8AFE\t0x5A60\n0x8B40\t0x5A61\n0x8B41\t0x5A63\n0x8B42\t0x5A64\n0x8B43\t0x5A65\n0x8B44\t0x5A66\n0x8B45\t0x5A68\n0x8B46\t0x5A69\n0x8B47\t0x5A6B\n0x8B48\t0x5A6C\n0x8B49\t0x5A6D\n0x8B4A\t0x5A6E\n0x8B4B\t0x5A6F\n0x8B4C\t0x5A70\n0x8B4D\t0x5A71\n0x8B4E\t0x5A72\n0x8B4F\t0x5A73\n0x8B50\t0x5A78\n0x8B51\t0x5A79\n0x8B52\t0x5A7B\n0x8B53\t0x5A7C\n0x8B54\t0x5A7D\n0x8B55\t0x5A7E\n0x8B56\t0x5A80\n0x8B57\t0x5A81\n0x8B58\t0x5A82\n0x8B59\t0x5A83\n0x8B5A\t0x5A84\n0x8B5B\t0x5A85\n0x8B5C\t0x5A86\n0x8B5D\t0x5A87\n0x8B5E\t0x5A88\n0x8B5F\t0x5A89\n0x8B60\t0x5A8A\n0x8B61\t0x5A8B\n0x8B62\t0x5A8C\n0x8B63\t0x5A8D\n0x8B64\t0x5A8E\n0x8B65\t0x5A8F\n0x8B66\t0x5A90\n0x8B67\t0x5A91\n0x8B68\t0x5A93\n0x8B69\t0x5A94\n0x8B6A\t0x5A95\n0x8B6B\t0x5A96\n0x8B6C\t0x5A97\n0x8B6D\t0x5A98\n0x8B6E\t0x5A99\n0x8B6F\t0x5A9C\n0x8B70\t0x5A9D\n0x8B71\t0x5A9E\n0x8B72\t0x5A9F\n0x8B73\t0x5AA0\n0x8B74\t0x5AA1\n0x8B75\t0x5AA2\n0x8B76\t0x5AA3\n0x8B77\t0x5AA4\n0x8B78\t0x5AA5\n0x8B79\t0x5AA6\n0x8B7A\t0x5AA7\n0x8B7B\t0x5AA8\n0x8B7C\t0x5AA9\n0x8B7D\t0x5AAB\n0x8B7E\t0x5AAC\n0x8B80\t0x5AAD\n0x8B81\t0x5AAE\n0x8B82\t0x5AAF\n0x8B83\t0x5AB0\n0x8B84\t0x5AB1\n0x8B85\t0x5AB4\n0x8B86\t0x5AB6\n0x8B87\t0x5AB7\n0x8B88\t0x5AB9\n0x8B89\t0x5ABA\n0x8B8A\t0x5ABB\n0x8B8B\t0x5ABC\n0x8B8C\t0x5ABD\n0x8B8D\t0x5ABF\n0x8B8E\t0x5AC0\n0x8B8F\t0x5AC3\n0x8B90\t0x5AC4\n0x8B91\t0x5AC5\n0x8B92\t0x5AC6\n0x8B93\t0x5AC7\n0x8B94\t0x5AC8\n0x8B95\t0x5ACA\n0x8B96\t0x5ACB\n0x8B97\t0x5ACD\n0x8B98\t0x5ACE\n0x8B99\t0x5ACF\n0x8B9A\t0x5AD0\n0x8B9B\t0x5AD1\n0x8B9C\t0x5AD3\n0x8B9D\t0x5AD5\n0x8B9E\t0x5AD7\n0x8B9F\t0x5AD9\n0x8BA0\t0x5ADA\n0x8BA1\t0x5ADB\n0x8BA2\t0x5ADD\n0x8BA3\t0x5ADE\n0x8BA4\t0x5ADF\n0x8BA5\t0x5AE2\n0x8BA6\t0x5AE4\n0x8BA7\t0x5AE5\n0x8BA8\t0x5AE7\n0x8BA9\t0x5AE8\n0x8BAA\t0x5AEA\n0x8BAB\t0x5AEC\n0x8BAC\t0x5AED\n0x8BAD\t0x5AEE\n0x8BAE\t0x5AEF\n0x8BAF\t0x5AF0\n0x8BB0\t0x5AF2\n0x8BB1\t0x5AF3\n0x8BB2\t0x5AF4\n0x8BB3\t0x5AF5\n0x8BB4\t0x5AF6\n0x8BB5\t0x5AF7\n0x8BB6\t0x5AF8\n0x8BB7\t0x5AF9\n0x8BB8\t0x5AFA\n0x8BB9\t0x5AFB\n0x8BBA\t0x5AFC\n0x8BBB\t0x5AFD\n0x8BBC\t0x5AFE\n0x8BBD\t0x5AFF\n0x8BBE\t0x5B00\n0x8BBF\t0x5B01\n0x8BC0\t0x5B02\n0x8BC1\t0x5B03\n0x8BC2\t0x5B04\n0x8BC3\t0x5B05\n0x8BC4\t0x5B06\n0x8BC5\t0x5B07\n0x8BC6\t0x5B08\n0x8BC7\t0x5B0A\n0x8BC8\t0x5B0B\n0x8BC9\t0x5B0C\n0x8BCA\t0x5B0D\n0x8BCB\t0x5B0E\n0x8BCC\t0x5B0F\n0x8BCD\t0x5B10\n0x8BCE\t0x5B11\n0x8BCF\t0x5B12\n0x8BD0\t0x5B13\n0x8BD1\t0x5B14\n0x8BD2\t0x5B15\n0x8BD3\t0x5B18\n0x8BD4\t0x5B19\n0x8BD5\t0x5B1A\n0x8BD6\t0x5B1B\n0x8BD7\t0x5B1C\n0x8BD8\t0x5B1D\n0x8BD9\t0x5B1E\n0x8BDA\t0x5B1F\n0x8BDB\t0x5B20\n0x8BDC\t0x5B21\n0x8BDD\t0x5B22\n0x8BDE\t0x5B23\n0x8BDF\t0x5B24\n0x8BE0\t0x5B25\n0x8BE1\t0x5B26\n0x8BE2\t0x5B27\n0x8BE3\t0x5B28\n0x8BE4\t0x5B29\n0x8BE5\t0x5B2A\n0x8BE6\t0x5B2B\n0x8BE7\t0x5B2C\n0x8BE8\t0x5B2D\n0x8BE9\t0x5B2E\n0x8BEA\t0x5B2F\n0x8BEB\t0x5B30\n0x8BEC\t0x5B31\n0x8BED\t0x5B33\n0x8BEE\t0x5B35\n0x8BEF\t0x5B36\n0x8BF0\t0x5B38\n0x8BF1\t0x5B39\n0x8BF2\t0x5B3A\n0x8BF3\t0x5B3B\n0x8BF4\t0x5B3C\n0x8BF5\t0x5B3D\n0x8BF6\t0x5B3E\n0x8BF7\t0x5B3F\n0x8BF8\t0x5B41\n0x8BF9\t0x5B42\n0x8BFA\t0x5B43\n0x8BFB\t0x5B44\n0x8BFC\t0x5B45\n0x8BFD\t0x5B46\n0x8BFE\t0x5B47\n0x8C40\t0x5B48\n0x8C41\t0x5B49\n0x8C42\t0x5B4A\n0x8C43\t0x5B4B\n0x8C44\t0x5B4C\n0x8C45\t0x5B4D\n0x8C46\t0x5B4E\n0x8C47\t0x5B4F\n0x8C48\t0x5B52\n0x8C49\t0x5B56\n0x8C4A\t0x5B5E\n0x8C4B\t0x5B60\n0x8C4C\t0x5B61\n0x8C4D\t0x5B67\n0x8C4E\t0x5B68\n0x8C4F\t0x5B6B\n0x8C50\t0x5B6D\n0x8C51\t0x5B6E\n0x8C52\t0x5B6F\n0x8C53\t0x5B72\n0x8C54\t0x5B74\n0x8C55\t0x5B76\n0x8C56\t0x5B77\n0x8C57\t0x5B78\n0x8C58\t0x5B79\n0x8C59\t0x5B7B\n0x8C5A\t0x5B7C\n0x8C5B\t0x5B7E\n0x8C5C\t0x5B7F\n0x8C5D\t0x5B82\n0x8C5E\t0x5B86\n0x8C5F\t0x5B8A\n0x8C60\t0x5B8D\n0x8C61\t0x5B8E\n0x8C62\t0x5B90\n0x8C63\t0x5B91\n0x8C64\t0x5B92\n0x8C65\t0x5B94\n0x8C66\t0x5B96\n0x8C67\t0x5B9F\n0x8C68\t0x5BA7\n0x8C69\t0x5BA8\n0x8C6A\t0x5BA9\n0x8C6B\t0x5BAC\n0x8C6C\t0x5BAD\n0x8C6D\t0x5BAE\n0x8C6E\t0x5BAF\n0x8C6F\t0x5BB1\n0x8C70\t0x5BB2\n0x8C71\t0x5BB7\n0x8C72\t0x5BBA\n0x8C73\t0x5BBB\n0x8C74\t0x5BBC\n0x8C75\t0x5BC0\n0x8C76\t0x5BC1\n0x8C77\t0x5BC3\n0x8C78\t0x5BC8\n0x8C79\t0x5BC9\n0x8C7A\t0x5BCA\n0x8C7B\t0x5BCB\n0x8C7C\t0x5BCD\n0x8C7D\t0x5BCE\n0x8C7E\t0x5BCF\n0x8C80\t0x5BD1\n0x8C81\t0x5BD4\n0x8C82\t0x5BD5\n0x8C83\t0x5BD6\n0x8C84\t0x5BD7\n0x8C85\t0x5BD8\n0x8C86\t0x5BD9\n0x8C87\t0x5BDA\n0x8C88\t0x5BDB\n0x8C89\t0x5BDC\n0x8C8A\t0x5BE0\n0x8C8B\t0x5BE2\n0x8C8C\t0x5BE3\n0x8C8D\t0x5BE6\n0x8C8E\t0x5BE7\n0x8C8F\t0x5BE9\n0x8C90\t0x5BEA\n0x8C91\t0x5BEB\n0x8C92\t0x5BEC\n0x8C93\t0x5BED\n0x8C94\t0x5BEF\n0x8C95\t0x5BF1\n0x8C96\t0x5BF2\n0x8C97\t0x5BF3\n0x8C98\t0x5BF4\n0x8C99\t0x5BF5\n0x8C9A\t0x5BF6\n0x8C9B\t0x5BF7\n0x8C9C\t0x5BFD\n0x8C9D\t0x5BFE\n0x8C9E\t0x5C00\n0x8C9F\t0x5C02\n0x8CA0\t0x5C03\n0x8CA1\t0x5C05\n0x8CA2\t0x5C07\n0x8CA3\t0x5C08\n0x8CA4\t0x5C0B\n0x8CA5\t0x5C0C\n0x8CA6\t0x5C0D\n0x8CA7\t0x5C0E\n0x8CA8\t0x5C10\n0x8CA9\t0x5C12\n0x8CAA\t0x5C13\n0x8CAB\t0x5C17\n0x8CAC\t0x5C19\n0x8CAD\t0x5C1B\n0x8CAE\t0x5C1E\n0x8CAF\t0x5C1F\n0x8CB0\t0x5C20\n0x8CB1\t0x5C21\n0x8CB2\t0x5C23\n0x8CB3\t0x5C26\n0x8CB4\t0x5C28\n0x8CB5\t0x5C29\n0x8CB6\t0x5C2A\n0x8CB7\t0x5C2B\n0x8CB8\t0x5C2D\n0x8CB9\t0x5C2E\n0x8CBA\t0x5C2F\n0x8CBB\t0x5C30\n0x8CBC\t0x5C32\n0x8CBD\t0x5C33\n0x8CBE\t0x5C35\n0x8CBF\t0x5C36\n0x8CC0\t0x5C37\n0x8CC1\t0x5C43\n0x8CC2\t0x5C44\n0x8CC3\t0x5C46\n0x8CC4\t0x5C47\n0x8CC5\t0x5C4C\n0x8CC6\t0x5C4D\n0x8CC7\t0x5C52\n0x8CC8\t0x5C53\n0x8CC9\t0x5C54\n0x8CCA\t0x5C56\n0x8CCB\t0x5C57\n0x8CCC\t0x5C58\n0x8CCD\t0x5C5A\n0x8CCE\t0x5C5B\n0x8CCF\t0x5C5C\n0x8CD0\t0x5C5D\n0x8CD1\t0x5C5F\n0x8CD2\t0x5C62\n0x8CD3\t0x5C64\n0x8CD4\t0x5C67\n0x8CD5\t0x5C68\n0x8CD6\t0x5C69\n0x8CD7\t0x5C6A\n0x8CD8\t0x5C6B\n0x8CD9\t0x5C6C\n0x8CDA\t0x5C6D\n0x8CDB\t0x5C70\n0x8CDC\t0x5C72\n0x8CDD\t0x5C73\n0x8CDE\t0x5C74\n0x8CDF\t0x5C75\n0x8CE0\t0x5C76\n0x8CE1\t0x5C77\n0x8CE2\t0x5C78\n0x8CE3\t0x5C7B\n0x8CE4\t0x5C7C\n0x8CE5\t0x5C7D\n0x8CE6\t0x5C7E\n0x8CE7\t0x5C80\n0x8CE8\t0x5C83\n0x8CE9\t0x5C84\n0x8CEA\t0x5C85\n0x8CEB\t0x5C86\n0x8CEC\t0x5C87\n0x8CED\t0x5C89\n0x8CEE\t0x5C8A\n0x8CEF\t0x5C8B\n0x8CF0\t0x5C8E\n0x8CF1\t0x5C8F\n0x8CF2\t0x5C92\n0x8CF3\t0x5C93\n0x8CF4\t0x5C95\n0x8CF5\t0x5C9D\n0x8CF6\t0x5C9E\n0x8CF7\t0x5C9F\n0x8CF8\t0x5CA0\n0x8CF9\t0x5CA1\n0x8CFA\t0x5CA4\n0x8CFB\t0x5CA5\n0x8CFC\t0x5CA6\n0x8CFD\t0x5CA7\n0x8CFE\t0x5CA8\n0x8D40\t0x5CAA\n0x8D41\t0x5CAE\n0x8D42\t0x5CAF\n0x8D43\t0x5CB0\n0x8D44\t0x5CB2\n0x8D45\t0x5CB4\n0x8D46\t0x5CB6\n0x8D47\t0x5CB9\n0x8D48\t0x5CBA\n0x8D49\t0x5CBB\n0x8D4A\t0x5CBC\n0x8D4B\t0x5CBE\n0x8D4C\t0x5CC0\n0x8D4D\t0x5CC2\n0x8D4E\t0x5CC3\n0x8D4F\t0x5CC5\n0x8D50\t0x5CC6\n0x8D51\t0x5CC7\n0x8D52\t0x5CC8\n0x8D53\t0x5CC9\n0x8D54\t0x5CCA\n0x8D55\t0x5CCC\n0x8D56\t0x5CCD\n0x8D57\t0x5CCE\n0x8D58\t0x5CCF\n0x8D59\t0x5CD0\n0x8D5A\t0x5CD1\n0x8D5B\t0x5CD3\n0x8D5C\t0x5CD4\n0x8D5D\t0x5CD5\n0x8D5E\t0x5CD6\n0x8D5F\t0x5CD7\n0x8D60\t0x5CD8\n0x8D61\t0x5CDA\n0x8D62\t0x5CDB\n0x8D63\t0x5CDC\n0x8D64\t0x5CDD\n0x8D65\t0x5CDE\n0x8D66\t0x5CDF\n0x8D67\t0x5CE0\n0x8D68\t0x5CE2\n0x8D69\t0x5CE3\n0x8D6A\t0x5CE7\n0x8D6B\t0x5CE9\n0x8D6C\t0x5CEB\n0x8D6D\t0x5CEC\n0x8D6E\t0x5CEE\n0x8D6F\t0x5CEF\n0x8D70\t0x5CF1\n0x8D71\t0x5CF2\n0x8D72\t0x5CF3\n0x8D73\t0x5CF4\n0x8D74\t0x5CF5\n0x8D75\t0x5CF6\n0x8D76\t0x5CF7\n0x8D77\t0x5CF8\n0x8D78\t0x5CF9\n0x8D79\t0x5CFA\n0x8D7A\t0x5CFC\n0x8D7B\t0x5CFD\n0x8D7C\t0x5CFE\n0x8D7D\t0x5CFF\n0x8D7E\t0x5D00\n0x8D80\t0x5D01\n0x8D81\t0x5D04\n0x8D82\t0x5D05\n0x8D83\t0x5D08\n0x8D84\t0x5D09\n0x8D85\t0x5D0A\n0x8D86\t0x5D0B\n0x8D87\t0x5D0C\n0x8D88\t0x5D0D\n0x8D89\t0x5D0F\n0x8D8A\t0x5D10\n0x8D8B\t0x5D11\n0x8D8C\t0x5D12\n0x8D8D\t0x5D13\n0x8D8E\t0x5D15\n0x8D8F\t0x5D17\n0x8D90\t0x5D18\n0x8D91\t0x5D19\n0x8D92\t0x5D1A\n0x8D93\t0x5D1C\n0x8D94\t0x5D1D\n0x8D95\t0x5D1F\n0x8D96\t0x5D20\n0x8D97\t0x5D21\n0x8D98\t0x5D22\n0x8D99\t0x5D23\n0x8D9A\t0x5D25\n0x8D9B\t0x5D28\n0x8D9C\t0x5D2A\n0x8D9D\t0x5D2B\n0x8D9E\t0x5D2C\n0x8D9F\t0x5D2F\n0x8DA0\t0x5D30\n0x8DA1\t0x5D31\n0x8DA2\t0x5D32\n0x8DA3\t0x5D33\n0x8DA4\t0x5D35\n0x8DA5\t0x5D36\n0x8DA6\t0x5D37\n0x8DA7\t0x5D38\n0x8DA8\t0x5D39\n0x8DA9\t0x5D3A\n0x8DAA\t0x5D3B\n0x8DAB\t0x5D3C\n0x8DAC\t0x5D3F\n0x8DAD\t0x5D40\n0x8DAE\t0x5D41\n0x8DAF\t0x5D42\n0x8DB0\t0x5D43\n0x8DB1\t0x5D44\n0x8DB2\t0x5D45\n0x8DB3\t0x5D46\n0x8DB4\t0x5D48\n0x8DB5\t0x5D49\n0x8DB6\t0x5D4D\n0x8DB7\t0x5D4E\n0x8DB8\t0x5D4F\n0x8DB9\t0x5D50\n0x8DBA\t0x5D51\n0x8DBB\t0x5D52\n0x8DBC\t0x5D53\n0x8DBD\t0x5D54\n0x8DBE\t0x5D55\n0x8DBF\t0x5D56\n0x8DC0\t0x5D57\n0x8DC1\t0x5D59\n0x8DC2\t0x5D5A\n0x8DC3\t0x5D5C\n0x8DC4\t0x5D5E\n0x8DC5\t0x5D5F\n0x8DC6\t0x5D60\n0x8DC7\t0x5D61\n0x8DC8\t0x5D62\n0x8DC9\t0x5D63\n0x8DCA\t0x5D64\n0x8DCB\t0x5D65\n0x8DCC\t0x5D66\n0x8DCD\t0x5D67\n0x8DCE\t0x5D68\n0x8DCF\t0x5D6A\n0x8DD0\t0x5D6D\n0x8DD1\t0x5D6E\n0x8DD2\t0x5D70\n0x8DD3\t0x5D71\n0x8DD4\t0x5D72\n0x8DD5\t0x5D73\n0x8DD6\t0x5D75\n0x8DD7\t0x5D76\n0x8DD8\t0x5D77\n0x8DD9\t0x5D78\n0x8DDA\t0x5D79\n0x8DDB\t0x5D7A\n0x8DDC\t0x5D7B\n0x8DDD\t0x5D7C\n0x8DDE\t0x5D7D\n0x8DDF\t0x5D7E\n0x8DE0\t0x5D7F\n0x8DE1\t0x5D80\n0x8DE2\t0x5D81\n0x8DE3\t0x5D83\n0x8DE4\t0x5D84\n0x8DE5\t0x5D85\n0x8DE6\t0x5D86\n0x8DE7\t0x5D87\n0x8DE8\t0x5D88\n0x8DE9\t0x5D89\n0x8DEA\t0x5D8A\n0x8DEB\t0x5D8B\n0x8DEC\t0x5D8C\n0x8DED\t0x5D8D\n0x8DEE\t0x5D8E\n0x8DEF\t0x5D8F\n0x8DF0\t0x5D90\n0x8DF1\t0x5D91\n0x8DF2\t0x5D92\n0x8DF3\t0x5D93\n0x8DF4\t0x5D94\n0x8DF5\t0x5D95\n0x8DF6\t0x5D96\n0x8DF7\t0x5D97\n0x8DF8\t0x5D98\n0x8DF9\t0x5D9A\n0x8DFA\t0x5D9B\n0x8DFB\t0x5D9C\n0x8DFC\t0x5D9E\n0x8DFD\t0x5D9F\n0x8DFE\t0x5DA0\n0x8E40\t0x5DA1\n0x8E41\t0x5DA2\n0x8E42\t0x5DA3\n0x8E43\t0x5DA4\n0x8E44\t0x5DA5\n0x8E45\t0x5DA6\n0x8E46\t0x5DA7\n0x8E47\t0x5DA8\n0x8E48\t0x5DA9\n0x8E49\t0x5DAA\n0x8E4A\t0x5DAB\n0x8E4B\t0x5DAC\n0x8E4C\t0x5DAD\n0x8E4D\t0x5DAE\n0x8E4E\t0x5DAF\n0x8E4F\t0x5DB0\n0x8E50\t0x5DB1\n0x8E51\t0x5DB2\n0x8E52\t0x5DB3\n0x8E53\t0x5DB4\n0x8E54\t0x5DB5\n0x8E55\t0x5DB6\n0x8E56\t0x5DB8\n0x8E57\t0x5DB9\n0x8E58\t0x5DBA\n0x8E59\t0x5DBB\n0x8E5A\t0x5DBC\n0x8E5B\t0x5DBD\n0x8E5C\t0x5DBE\n0x8E5D\t0x5DBF\n0x8E5E\t0x5DC0\n0x8E5F\t0x5DC1\n0x8E60\t0x5DC2\n0x8E61\t0x5DC3\n0x8E62\t0x5DC4\n0x8E63\t0x5DC6\n0x8E64\t0x5DC7\n0x8E65\t0x5DC8\n0x8E66\t0x5DC9\n0x8E67\t0x5DCA\n0x8E68\t0x5DCB\n0x8E69\t0x5DCC\n0x8E6A\t0x5DCE\n0x8E6B\t0x5DCF\n0x8E6C\t0x5DD0\n0x8E6D\t0x5DD1\n0x8E6E\t0x5DD2\n0x8E6F\t0x5DD3\n0x8E70\t0x5DD4\n0x8E71\t0x5DD5\n0x8E72\t0x5DD6\n0x8E73\t0x5DD7\n0x8E74\t0x5DD8\n0x8E75\t0x5DD9\n0x8E76\t0x5DDA\n0x8E77\t0x5DDC\n0x8E78\t0x5DDF\n0x8E79\t0x5DE0\n0x8E7A\t0x5DE3\n0x8E7B\t0x5DE4\n0x8E7C\t0x5DEA\n0x8E7D\t0x5DEC\n0x8E7E\t0x5DED\n0x8E80\t0x5DF0\n0x8E81\t0x5DF5\n0x8E82\t0x5DF6\n0x8E83\t0x5DF8\n0x8E84\t0x5DF9\n0x8E85\t0x5DFA\n0x8E86\t0x5DFB\n0x8E87\t0x5DFC\n0x8E88\t0x5DFF\n0x8E89\t0x5E00\n0x8E8A\t0x5E04\n0x8E8B\t0x5E07\n0x8E8C\t0x5E09\n0x8E8D\t0x5E0A\n0x8E8E\t0x5E0B\n0x8E8F\t0x5E0D\n0x8E90\t0x5E0E\n0x8E91\t0x5E12\n0x8E92\t0x5E13\n0x8E93\t0x5E17\n0x8E94\t0x5E1E\n0x8E95\t0x5E1F\n0x8E96\t0x5E20\n0x8E97\t0x5E21\n0x8E98\t0x5E22\n0x8E99\t0x5E23\n0x8E9A\t0x5E24\n0x8E9B\t0x5E25\n0x8E9C\t0x5E28\n0x8E9D\t0x5E29\n0x8E9E\t0x5E2A\n0x8E9F\t0x5E2B\n0x8EA0\t0x5E2C\n0x8EA1\t0x5E2F\n0x8EA2\t0x5E30\n0x8EA3\t0x5E32\n0x8EA4\t0x5E33\n0x8EA5\t0x5E34\n0x8EA6\t0x5E35\n0x8EA7\t0x5E36\n0x8EA8\t0x5E39\n0x8EA9\t0x5E3A\n0x8EAA\t0x5E3E\n0x8EAB\t0x5E3F\n0x8EAC\t0x5E40\n0x8EAD\t0x5E41\n0x8EAE\t0x5E43\n0x8EAF\t0x5E46\n0x8EB0\t0x5E47\n0x8EB1\t0x5E48\n0x8EB2\t0x5E49\n0x8EB3\t0x5E4A\n0x8EB4\t0x5E4B\n0x8EB5\t0x5E4D\n0x8EB6\t0x5E4E\n0x8EB7\t0x5E4F\n0x8EB8\t0x5E50\n0x8EB9\t0x5E51\n0x8EBA\t0x5E52\n0x8EBB\t0x5E53\n0x8EBC\t0x5E56\n0x8EBD\t0x5E57\n0x8EBE\t0x5E58\n0x8EBF\t0x5E59\n0x8EC0\t0x5E5A\n0x8EC1\t0x5E5C\n0x8EC2\t0x5E5D\n0x8EC3\t0x5E5F\n0x8EC4\t0x5E60\n0x8EC5\t0x5E63\n0x8EC6\t0x5E64\n0x8EC7\t0x5E65\n0x8EC8\t0x5E66\n0x8EC9\t0x5E67\n0x8ECA\t0x5E68\n0x8ECB\t0x5E69\n0x8ECC\t0x5E6A\n0x8ECD\t0x5E6B\n0x8ECE\t0x5E6C\n0x8ECF\t0x5E6D\n0x8ED0\t0x5E6E\n0x8ED1\t0x5E6F\n0x8ED2\t0x5E70\n0x8ED3\t0x5E71\n0x8ED4\t0x5E75\n0x8ED5\t0x5E77\n0x8ED6\t0x5E79\n0x8ED7\t0x5E7E\n0x8ED8\t0x5E81\n0x8ED9\t0x5E82\n0x8EDA\t0x5E83\n0x8EDB\t0x5E85\n0x8EDC\t0x5E88\n0x8EDD\t0x5E89\n0x8EDE\t0x5E8C\n0x8EDF\t0x5E8D\n0x8EE0\t0x5E8E\n0x8EE1\t0x5E92\n0x8EE2\t0x5E98\n0x8EE3\t0x5E9B\n0x8EE4\t0x5E9D\n0x8EE5\t0x5EA1\n0x8EE6\t0x5EA2\n0x8EE7\t0x5EA3\n0x8EE8\t0x5EA4\n0x8EE9\t0x5EA8\n0x8EEA\t0x5EA9\n0x8EEB\t0x5EAA\n0x8EEC\t0x5EAB\n0x8EED\t0x5EAC\n0x8EEE\t0x5EAE\n0x8EEF\t0x5EAF\n0x8EF0\t0x5EB0\n0x8EF1\t0x5EB1\n0x8EF2\t0x5EB2\n0x8EF3\t0x5EB4\n0x8EF4\t0x5EBA\n0x8EF5\t0x5EBB\n0x8EF6\t0x5EBC\n0x8EF7\t0x5EBD\n0x8EF8\t0x5EBF\n0x8EF9\t0x5EC0\n0x8EFA\t0x5EC1\n0x8EFB\t0x5EC2\n0x8EFC\t0x5EC3\n0x8EFD\t0x5EC4\n0x8EFE\t0x5EC5\n0x8F40\t0x5EC6\n0x8F41\t0x5EC7\n0x8F42\t0x5EC8\n0x8F43\t0x5ECB\n0x8F44\t0x5ECC\n0x8F45\t0x5ECD\n0x8F46\t0x5ECE\n0x8F47\t0x5ECF\n0x8F48\t0x5ED0\n0x8F49\t0x5ED4\n0x8F4A\t0x5ED5\n0x8F4B\t0x5ED7\n0x8F4C\t0x5ED8\n0x8F4D\t0x5ED9\n0x8F4E\t0x5EDA\n0x8F4F\t0x5EDC\n0x8F50\t0x5EDD\n0x8F51\t0x5EDE\n0x8F52\t0x5EDF\n0x8F53\t0x5EE0\n0x8F54\t0x5EE1\n0x8F55\t0x5EE2\n0x8F56\t0x5EE3\n0x8F57\t0x5EE4\n0x8F58\t0x5EE5\n0x8F59\t0x5EE6\n0x8F5A\t0x5EE7\n0x8F5B\t0x5EE9\n0x8F5C\t0x5EEB\n0x8F5D\t0x5EEC\n0x8F5E\t0x5EED\n0x8F5F\t0x5EEE\n0x8F60\t0x5EEF\n0x8F61\t0x5EF0\n0x8F62\t0x5EF1\n0x8F63\t0x5EF2\n0x8F64\t0x5EF3\n0x8F65\t0x5EF5\n0x8F66\t0x5EF8\n0x8F67\t0x5EF9\n0x8F68\t0x5EFB\n0x8F69\t0x5EFC\n0x8F6A\t0x5EFD\n0x8F6B\t0x5F05\n0x8F6C\t0x5F06\n0x8F6D\t0x5F07\n0x8F6E\t0x5F09\n0x8F6F\t0x5F0C\n0x8F70\t0x5F0D\n0x8F71\t0x5F0E\n0x8F72\t0x5F10\n0x8F73\t0x5F12\n0x8F74\t0x5F14\n0x8F75\t0x5F16\n0x8F76\t0x5F19\n0x8F77\t0x5F1A\n0x8F78\t0x5F1C\n0x8F79\t0x5F1D\n0x8F7A\t0x5F1E\n0x8F7B\t0x5F21\n0x8F7C\t0x5F22\n0x8F7D\t0x5F23\n0x8F7E\t0x5F24\n0x8F80\t0x5F28\n0x8F81\t0x5F2B\n0x8F82\t0x5F2C\n0x8F83\t0x5F2E\n0x8F84\t0x5F30\n0x8F85\t0x5F32\n0x8F86\t0x5F33\n0x8F87\t0x5F34\n0x8F88\t0x5F35\n0x8F89\t0x5F36\n0x8F8A\t0x5F37\n0x8F8B\t0x5F38\n0x8F8C\t0x5F3B\n0x8F8D\t0x5F3D\n0x8F8E\t0x5F3E\n0x8F8F\t0x5F3F\n0x8F90\t0x5F41\n0x8F91\t0x5F42\n0x8F92\t0x5F43\n0x8F93\t0x5F44\n0x8F94\t0x5F45\n0x8F95\t0x5F46\n0x8F96\t0x5F47\n0x8F97\t0x5F48\n0x8F98\t0x5F49\n0x8F99\t0x5F4A\n0x8F9A\t0x5F4B\n0x8F9B\t0x5F4C\n0x8F9C\t0x5F4D\n0x8F9D\t0x5F4E\n0x8F9E\t0x5F4F\n0x8F9F\t0x5F51\n0x8FA0\t0x5F54\n0x8FA1\t0x5F59\n0x8FA2\t0x5F5A\n0x8FA3\t0x5F5B\n0x8FA4\t0x5F5C\n0x8FA5\t0x5F5E\n0x8FA6\t0x5F5F\n0x8FA7\t0x5F60\n0x8FA8\t0x5F63\n0x8FA9\t0x5F65\n0x8FAA\t0x5F67\n0x8FAB\t0x5F68\n0x8FAC\t0x5F6B\n0x8FAD\t0x5F6E\n0x8FAE\t0x5F6F\n0x8FAF\t0x5F72\n0x8FB0\t0x5F74\n0x8FB1\t0x5F75\n0x8FB2\t0x5F76\n0x8FB3\t0x5F78\n0x8FB4\t0x5F7A\n0x8FB5\t0x5F7D\n0x8FB6\t0x5F7E\n0x8FB7\t0x5F7F\n0x8FB8\t0x5F83\n0x8FB9\t0x5F86\n0x8FBA\t0x5F8D\n0x8FBB\t0x5F8E\n0x8FBC\t0x5F8F\n0x8FBD\t0x5F91\n0x8FBE\t0x5F93\n0x8FBF\t0x5F94\n0x8FC0\t0x5F96\n0x8FC1\t0x5F9A\n0x8FC2\t0x5F9B\n0x8FC3\t0x5F9D\n0x8FC4\t0x5F9E\n0x8FC5\t0x5F9F\n0x8FC6\t0x5FA0\n0x8FC7\t0x5FA2\n0x8FC8\t0x5FA3\n0x8FC9\t0x5FA4\n0x8FCA\t0x5FA5\n0x8FCB\t0x5FA6\n0x8FCC\t0x5FA7\n0x8FCD\t0x5FA9\n0x8FCE\t0x5FAB\n0x8FCF\t0x5FAC\n0x8FD0\t0x5FAF\n0x8FD1\t0x5FB0\n0x8FD2\t0x5FB1\n0x8FD3\t0x5FB2\n0x8FD4\t0x5FB3\n0x8FD5\t0x5FB4\n0x8FD6\t0x5FB6\n0x8FD7\t0x5FB8\n0x8FD8\t0x5FB9\n0x8FD9\t0x5FBA\n0x8FDA\t0x5FBB\n0x8FDB\t0x5FBE\n0x8FDC\t0x5FBF\n0x8FDD\t0x5FC0\n0x8FDE\t0x5FC1\n0x8FDF\t0x5FC2\n0x8FE0\t0x5FC7\n0x8FE1\t0x5FC8\n0x8FE2\t0x5FCA\n0x8FE3\t0x5FCB\n0x8FE4\t0x5FCE\n0x8FE5\t0x5FD3\n0x8FE6\t0x5FD4\n0x8FE7\t0x5FD5\n0x8FE8\t0x5FDA\n0x8FE9\t0x5FDB\n0x8FEA\t0x5FDC\n0x8FEB\t0x5FDE\n0x8FEC\t0x5FDF\n0x8FED\t0x5FE2\n0x8FEE\t0x5FE3\n0x8FEF\t0x5FE5\n0x8FF0\t0x5FE6\n0x8FF1\t0x5FE8\n0x8FF2\t0x5FE9\n0x8FF3\t0x5FEC\n0x8FF4\t0x5FEF\n0x8FF5\t0x5FF0\n0x8FF6\t0x5FF2\n0x8FF7\t0x5FF3\n0x8FF8\t0x5FF4\n0x8FF9\t0x5FF6\n0x8FFA\t0x5FF7\n0x8FFB\t0x5FF9\n0x8FFC\t0x5FFA\n0x8FFD\t0x5FFC\n0x8FFE\t0x6007\n0x9040\t0x6008\n0x9041\t0x6009\n0x9042\t0x600B\n0x9043\t0x600C\n0x9044\t0x6010\n0x9045\t0x6011\n0x9046\t0x6013\n0x9047\t0x6017\n0x9048\t0x6018\n0x9049\t0x601A\n0x904A\t0x601E\n0x904B\t0x601F\n0x904C\t0x6022\n0x904D\t0x6023\n0x904E\t0x6024\n0x904F\t0x602C\n0x9050\t0x602D\n0x9051\t0x602E\n0x9052\t0x6030\n0x9053\t0x6031\n0x9054\t0x6032\n0x9055\t0x6033\n0x9056\t0x6034\n0x9057\t0x6036\n0x9058\t0x6037\n0x9059\t0x6038\n0x905A\t0x6039\n0x905B\t0x603A\n0x905C\t0x603D\n0x905D\t0x603E\n0x905E\t0x6040\n0x905F\t0x6044\n0x9060\t0x6045\n0x9061\t0x6046\n0x9062\t0x6047\n0x9063\t0x6048\n0x9064\t0x6049\n0x9065\t0x604A\n0x9066\t0x604C\n0x9067\t0x604E\n0x9068\t0x604F\n0x9069\t0x6051\n0x906A\t0x6053\n0x906B\t0x6054\n0x906C\t0x6056\n0x906D\t0x6057\n0x906E\t0x6058\n0x906F\t0x605B\n0x9070\t0x605C\n0x9071\t0x605E\n0x9072\t0x605F\n0x9073\t0x6060\n0x9074\t0x6061\n0x9075\t0x6065\n0x9076\t0x6066\n0x9077\t0x606E\n0x9078\t0x6071\n0x9079\t0x6072\n0x907A\t0x6074\n0x907B\t0x6075\n0x907C\t0x6077\n0x907D\t0x607E\n0x907E\t0x6080\n0x9080\t0x6081\n0x9081\t0x6082\n0x9082\t0x6085\n0x9083\t0x6086\n0x9084\t0x6087\n0x9085\t0x6088\n0x9086\t0x608A\n0x9087\t0x608B\n0x9088\t0x608E\n0x9089\t0x608F\n0x908A\t0x6090\n0x908B\t0x6091\n0x908C\t0x6093\n0x908D\t0x6095\n0x908E\t0x6097\n0x908F\t0x6098\n0x9090\t0x6099\n0x9091\t0x609C\n0x9092\t0x609E\n0x9093\t0x60A1\n0x9094\t0x60A2\n0x9095\t0x60A4\n0x9096\t0x60A5\n0x9097\t0x60A7\n0x9098\t0x60A9\n0x9099\t0x60AA\n0x909A\t0x60AE\n0x909B\t0x60B0\n0x909C\t0x60B3\n0x909D\t0x60B5\n0x909E\t0x60B6\n0x909F\t0x60B7\n0x90A0\t0x60B9\n0x90A1\t0x60BA\n0x90A2\t0x60BD\n0x90A3\t0x60BE\n0x90A4\t0x60BF\n0x90A5\t0x60C0\n0x90A6\t0x60C1\n0x90A7\t0x60C2\n0x90A8\t0x60C3\n0x90A9\t0x60C4\n0x90AA\t0x60C7\n0x90AB\t0x60C8\n0x90AC\t0x60C9\n0x90AD\t0x60CC\n0x90AE\t0x60CD\n0x90AF\t0x60CE\n0x90B0\t0x60CF\n0x90B1\t0x60D0\n0x90B2\t0x60D2\n0x90B3\t0x60D3\n0x90B4\t0x60D4\n0x90B5\t0x60D6\n0x90B6\t0x60D7\n0x90B7\t0x60D9\n0x90B8\t0x60DB\n0x90B9\t0x60DE\n0x90BA\t0x60E1\n0x90BB\t0x60E2\n0x90BC\t0x60E3\n0x90BD\t0x60E4\n0x90BE\t0x60E5\n0x90BF\t0x60EA\n0x90C0\t0x60F1\n0x90C1\t0x60F2\n0x90C2\t0x60F5\n0x90C3\t0x60F7\n0x90C4\t0x60F8\n0x90C5\t0x60FB\n0x90C6\t0x60FC\n0x90C7\t0x60FD\n0x90C8\t0x60FE\n0x90C9\t0x60FF\n0x90CA\t0x6102\n0x90CB\t0x6103\n0x90CC\t0x6104\n0x90CD\t0x6105\n0x90CE\t0x6107\n0x90CF\t0x610A\n0x90D0\t0x610B\n0x90D1\t0x610C\n0x90D2\t0x6110\n0x90D3\t0x6111\n0x90D4\t0x6112\n0x90D5\t0x6113\n0x90D6\t0x6114\n0x90D7\t0x6116\n0x90D8\t0x6117\n0x90D9\t0x6118\n0x90DA\t0x6119\n0x90DB\t0x611B\n0x90DC\t0x611C\n0x90DD\t0x611D\n0x90DE\t0x611E\n0x90DF\t0x6121\n0x90E0\t0x6122\n0x90E1\t0x6125\n0x90E2\t0x6128\n0x90E3\t0x6129\n0x90E4\t0x612A\n0x90E5\t0x612C\n0x90E6\t0x612D\n0x90E7\t0x612E\n0x90E8\t0x612F\n0x90E9\t0x6130\n0x90EA\t0x6131\n0x90EB\t0x6132\n0x90EC\t0x6133\n0x90ED\t0x6134\n0x90EE\t0x6135\n0x90EF\t0x6136\n0x90F0\t0x6137\n0x90F1\t0x6138\n0x90F2\t0x6139\n0x90F3\t0x613A\n0x90F4\t0x613B\n0x90F5\t0x613C\n0x90F6\t0x613D\n0x90F7\t0x613E\n0x90F8\t0x6140\n0x90F9\t0x6141\n0x90FA\t0x6142\n0x90FB\t0x6143\n0x90FC\t0x6144\n0x90FD\t0x6145\n0x90FE\t0x6146\n0x9140\t0x6147\n0x9141\t0x6149\n0x9142\t0x614B\n0x9143\t0x614D\n0x9144\t0x614F\n0x9145\t0x6150\n0x9146\t0x6152\n0x9147\t0x6153\n0x9148\t0x6154\n0x9149\t0x6156\n0x914A\t0x6157\n0x914B\t0x6158\n0x914C\t0x6159\n0x914D\t0x615A\n0x914E\t0x615B\n0x914F\t0x615C\n0x9150\t0x615E\n0x9151\t0x615F\n0x9152\t0x6160\n0x9153\t0x6161\n0x9154\t0x6163\n0x9155\t0x6164\n0x9156\t0x6165\n0x9157\t0x6166\n0x9158\t0x6169\n0x9159\t0x616A\n0x915A\t0x616B\n0x915B\t0x616C\n0x915C\t0x616D\n0x915D\t0x616E\n0x915E\t0x616F\n0x915F\t0x6171\n0x9160\t0x6172\n0x9161\t0x6173\n0x9162\t0x6174\n0x9163\t0x6176\n0x9164\t0x6178\n0x9165\t0x6179\n0x9166\t0x617A\n0x9167\t0x617B\n0x9168\t0x617C\n0x9169\t0x617D\n0x916A\t0x617E\n0x916B\t0x617F\n0x916C\t0x6180\n0x916D\t0x6181\n0x916E\t0x6182\n0x916F\t0x6183\n0x9170\t0x6184\n0x9171\t0x6185\n0x9172\t0x6186\n0x9173\t0x6187\n0x9174\t0x6188\n0x9175\t0x6189\n0x9176\t0x618A\n0x9177\t0x618C\n0x9178\t0x618D\n0x9179\t0x618F\n0x917A\t0x6190\n0x917B\t0x6191\n0x917C\t0x6192\n0x917D\t0x6193\n0x917E\t0x6195\n0x9180\t0x6196\n0x9181\t0x6197\n0x9182\t0x6198\n0x9183\t0x6199\n0x9184\t0x619A\n0x9185\t0x619B\n0x9186\t0x619C\n0x9187\t0x619E\n0x9188\t0x619F\n0x9189\t0x61A0\n0x918A\t0x61A1\n0x918B\t0x61A2\n0x918C\t0x61A3\n0x918D\t0x61A4\n0x918E\t0x61A5\n0x918F\t0x61A6\n0x9190\t0x61AA\n0x9191\t0x61AB\n0x9192\t0x61AD\n0x9193\t0x61AE\n0x9194\t0x61AF\n0x9195\t0x61B0\n0x9196\t0x61B1\n0x9197\t0x61B2\n0x9198\t0x61B3\n0x9199\t0x61B4\n0x919A\t0x61B5\n0x919B\t0x61B6\n0x919C\t0x61B8\n0x919D\t0x61B9\n0x919E\t0x61BA\n0x919F\t0x61BB\n0x91A0\t0x61BC\n0x91A1\t0x61BD\n0x91A2\t0x61BF\n0x91A3\t0x61C0\n0x91A4\t0x61C1\n0x91A5\t0x61C3\n0x91A6\t0x61C4\n0x91A7\t0x61C5\n0x91A8\t0x61C6\n0x91A9\t0x61C7\n0x91AA\t0x61C9\n0x91AB\t0x61CC\n0x91AC\t0x61CD\n0x91AD\t0x61CE\n0x91AE\t0x61CF\n0x91AF\t0x61D0\n0x91B0\t0x61D3\n0x91B1\t0x61D5\n0x91B2\t0x61D6\n0x91B3\t0x61D7\n0x91B4\t0x61D8\n0x91B5\t0x61D9\n0x91B6\t0x61DA\n0x91B7\t0x61DB\n0x91B8\t0x61DC\n0x91B9\t0x61DD\n0x91BA\t0x61DE\n0x91BB\t0x61DF\n0x91BC\t0x61E0\n0x91BD\t0x61E1\n0x91BE\t0x61E2\n0x91BF\t0x61E3\n0x91C0\t0x61E4\n0x91C1\t0x61E5\n0x91C2\t0x61E7\n0x91C3\t0x61E8\n0x91C4\t0x61E9\n0x91C5\t0x61EA\n0x91C6\t0x61EB\n0x91C7\t0x61EC\n0x91C8\t0x61ED\n0x91C9\t0x61EE\n0x91CA\t0x61EF\n0x91CB\t0x61F0\n0x91CC\t0x61F1\n0x91CD\t0x61F2\n0x91CE\t0x61F3\n0x91CF\t0x61F4\n0x91D0\t0x61F6\n0x91D1\t0x61F7\n0x91D2\t0x61F8\n0x91D3\t0x61F9\n0x91D4\t0x61FA\n0x91D5\t0x61FB\n0x91D6\t0x61FC\n0x91D7\t0x61FD\n0x91D8\t0x61FE\n0x91D9\t0x6200\n0x91DA\t0x6201\n0x91DB\t0x6202\n0x91DC\t0x6203\n0x91DD\t0x6204\n0x91DE\t0x6205\n0x91DF\t0x6207\n0x91E0\t0x6209\n0x91E1\t0x6213\n0x91E2\t0x6214\n0x91E3\t0x6219\n0x91E4\t0x621C\n0x91E5\t0x621D\n0x91E6\t0x621E\n0x91E7\t0x6220\n0x91E8\t0x6223\n0x91E9\t0x6226\n0x91EA\t0x6227\n0x91EB\t0x6228\n0x91EC\t0x6229\n0x91ED\t0x622B\n0x91EE\t0x622D\n0x91EF\t0x622F\n0x91F0\t0x6230\n0x91F1\t0x6231\n0x91F2\t0x6232\n0x91F3\t0x6235\n0x91F4\t0x6236\n0x91F5\t0x6238\n0x91F6\t0x6239\n0x91F7\t0x623A\n0x91F8\t0x623B\n0x91F9\t0x623C\n0x91FA\t0x6242\n0x91FB\t0x6244\n0x91FC\t0x6245\n0x91FD\t0x6246\n0x91FE\t0x624A\n0x9240\t0x624F\n0x9241\t0x6250\n0x9242\t0x6255\n0x9243\t0x6256\n0x9244\t0x6257\n0x9245\t0x6259\n0x9246\t0x625A\n0x9247\t0x625C\n0x9248\t0x625D\n0x9249\t0x625E\n0x924A\t0x625F\n0x924B\t0x6260\n0x924C\t0x6261\n0x924D\t0x6262\n0x924E\t0x6264\n0x924F\t0x6265\n0x9250\t0x6268\n0x9251\t0x6271\n0x9252\t0x6272\n0x9253\t0x6274\n0x9254\t0x6275\n0x9255\t0x6277\n0x9256\t0x6278\n0x9257\t0x627A\n0x9258\t0x627B\n0x9259\t0x627D\n0x925A\t0x6281\n0x925B\t0x6282\n0x925C\t0x6283\n0x925D\t0x6285\n0x925E\t0x6286\n0x925F\t0x6287\n0x9260\t0x6288\n0x9261\t0x628B\n0x9262\t0x628C\n0x9263\t0x628D\n0x9264\t0x628E\n0x9265\t0x628F\n0x9266\t0x6290\n0x9267\t0x6294\n0x9268\t0x6299\n0x9269\t0x629C\n0x926A\t0x629D\n0x926B\t0x629E\n0x926C\t0x62A3\n0x926D\t0x62A6\n0x926E\t0x62A7\n0x926F\t0x62A9\n0x9270\t0x62AA\n0x9271\t0x62AD\n0x9272\t0x62AE\n0x9273\t0x62AF\n0x9274\t0x62B0\n0x9275\t0x62B2\n0x9276\t0x62B3\n0x9277\t0x62B4\n0x9278\t0x62B6\n0x9279\t0x62B7\n0x927A\t0x62B8\n0x927B\t0x62BA\n0x927C\t0x62BE\n0x927D\t0x62C0\n0x927E\t0x62C1\n0x9280\t0x62C3\n0x9281\t0x62CB\n0x9282\t0x62CF\n0x9283\t0x62D1\n0x9284\t0x62D5\n0x9285\t0x62DD\n0x9286\t0x62DE\n0x9287\t0x62E0\n0x9288\t0x62E1\n0x9289\t0x62E4\n0x928A\t0x62EA\n0x928B\t0x62EB\n0x928C\t0x62F0\n0x928D\t0x62F2\n0x928E\t0x62F5\n0x928F\t0x62F8\n0x9290\t0x62F9\n0x9291\t0x62FA\n0x9292\t0x62FB\n0x9293\t0x6300\n0x9294\t0x6303\n0x9295\t0x6304\n0x9296\t0x6305\n0x9297\t0x6306\n0x9298\t0x630A\n0x9299\t0x630B\n0x929A\t0x630C\n0x929B\t0x630D\n0x929C\t0x630F\n0x929D\t0x6310\n0x929E\t0x6312\n0x929F\t0x6313\n0x92A0\t0x6314\n0x92A1\t0x6315\n0x92A2\t0x6317\n0x92A3\t0x6318\n0x92A4\t0x6319\n0x92A5\t0x631C\n0x92A6\t0x6326\n0x92A7\t0x6327\n0x92A8\t0x6329\n0x92A9\t0x632C\n0x92AA\t0x632D\n0x92AB\t0x632E\n0x92AC\t0x6330\n0x92AD\t0x6331\n0x92AE\t0x6333\n0x92AF\t0x6334\n0x92B0\t0x6335\n0x92B1\t0x6336\n0x92B2\t0x6337\n0x92B3\t0x6338\n0x92B4\t0x633B\n0x92B5\t0x633C\n0x92B6\t0x633E\n0x92B7\t0x633F\n0x92B8\t0x6340\n0x92B9\t0x6341\n0x92BA\t0x6344\n0x92BB\t0x6347\n0x92BC\t0x6348\n0x92BD\t0x634A\n0x92BE\t0x6351\n0x92BF\t0x6352\n0x92C0\t0x6353\n0x92C1\t0x6354\n0x92C2\t0x6356\n0x92C3\t0x6357\n0x92C4\t0x6358\n0x92C5\t0x6359\n0x92C6\t0x635A\n0x92C7\t0x635B\n0x92C8\t0x635C\n0x92C9\t0x635D\n0x92CA\t0x6360\n0x92CB\t0x6364\n0x92CC\t0x6365\n0x92CD\t0x6366\n0x92CE\t0x6368\n0x92CF\t0x636A\n0x92D0\t0x636B\n0x92D1\t0x636C\n0x92D2\t0x636F\n0x92D3\t0x6370\n0x92D4\t0x6372\n0x92D5\t0x6373\n0x92D6\t0x6374\n0x92D7\t0x6375\n0x92D8\t0x6378\n0x92D9\t0x6379\n0x92DA\t0x637C\n0x92DB\t0x637D\n0x92DC\t0x637E\n0x92DD\t0x637F\n0x92DE\t0x6381\n0x92DF\t0x6383\n0x92E0\t0x6384\n0x92E1\t0x6385\n0x92E2\t0x6386\n0x92E3\t0x638B\n0x92E4\t0x638D\n0x92E5\t0x6391\n0x92E6\t0x6393\n0x92E7\t0x6394\n0x92E8\t0x6395\n0x92E9\t0x6397\n0x92EA\t0x6399\n0x92EB\t0x639A\n0x92EC\t0x639B\n0x92ED\t0x639C\n0x92EE\t0x639D\n0x92EF\t0x639E\n0x92F0\t0x639F\n0x92F1\t0x63A1\n0x92F2\t0x63A4\n0x92F3\t0x63A6\n0x92F4\t0x63AB\n0x92F5\t0x63AF\n0x92F6\t0x63B1\n0x92F7\t0x63B2\n0x92F8\t0x63B5\n0x92F9\t0x63B6\n0x92FA\t0x63B9\n0x92FB\t0x63BB\n0x92FC\t0x63BD\n0x92FD\t0x63BF\n0x92FE\t0x63C0\n0x9340\t0x63C1\n0x9341\t0x63C2\n0x9342\t0x63C3\n0x9343\t0x63C5\n0x9344\t0x63C7\n0x9345\t0x63C8\n0x9346\t0x63CA\n0x9347\t0x63CB\n0x9348\t0x63CC\n0x9349\t0x63D1\n0x934A\t0x63D3\n0x934B\t0x63D4\n0x934C\t0x63D5\n0x934D\t0x63D7\n0x934E\t0x63D8\n0x934F\t0x63D9\n0x9350\t0x63DA\n0x9351\t0x63DB\n0x9352\t0x63DC\n0x9353\t0x63DD\n0x9354\t0x63DF\n0x9355\t0x63E2\n0x9356\t0x63E4\n0x9357\t0x63E5\n0x9358\t0x63E6\n0x9359\t0x63E7\n0x935A\t0x63E8\n0x935B\t0x63EB\n0x935C\t0x63EC\n0x935D\t0x63EE\n0x935E\t0x63EF\n0x935F\t0x63F0\n0x9360\t0x63F1\n0x9361\t0x63F3\n0x9362\t0x63F5\n0x9363\t0x63F7\n0x9364\t0x63F9\n0x9365\t0x63FA\n0x9366\t0x63FB\n0x9367\t0x63FC\n0x9368\t0x63FE\n0x9369\t0x6403\n0x936A\t0x6404\n0x936B\t0x6406\n0x936C\t0x6407\n0x936D\t0x6408\n0x936E\t0x6409\n0x936F\t0x640A\n0x9370\t0x640D\n0x9371\t0x640E\n0x9372\t0x6411\n0x9373\t0x6412\n0x9374\t0x6415\n0x9375\t0x6416\n0x9376\t0x6417\n0x9377\t0x6418\n0x9378\t0x6419\n0x9379\t0x641A\n0x937A\t0x641D\n0x937B\t0x641F\n0x937C\t0x6422\n0x937D\t0x6423\n0x937E\t0x6424\n0x9380\t0x6425\n0x9381\t0x6427\n0x9382\t0x6428\n0x9383\t0x6429\n0x9384\t0x642B\n0x9385\t0x642E\n0x9386\t0x642F\n0x9387\t0x6430\n0x9388\t0x6431\n0x9389\t0x6432\n0x938A\t0x6433\n0x938B\t0x6435\n0x938C\t0x6436\n0x938D\t0x6437\n0x938E\t0x6438\n0x938F\t0x6439\n0x9390\t0x643B\n0x9391\t0x643C\n0x9392\t0x643E\n0x9393\t0x6440\n0x9394\t0x6442\n0x9395\t0x6443\n0x9396\t0x6449\n0x9397\t0x644B\n0x9398\t0x644C\n0x9399\t0x644D\n0x939A\t0x644E\n0x939B\t0x644F\n0x939C\t0x6450\n0x939D\t0x6451\n0x939E\t0x6453\n0x939F\t0x6455\n0x93A0\t0x6456\n0x93A1\t0x6457\n0x93A2\t0x6459\n0x93A3\t0x645A\n0x93A4\t0x645B\n0x93A5\t0x645C\n0x93A6\t0x645D\n0x93A7\t0x645F\n0x93A8\t0x6460\n0x93A9\t0x6461\n0x93AA\t0x6462\n0x93AB\t0x6463\n0x93AC\t0x6464\n0x93AD\t0x6465\n0x93AE\t0x6466\n0x93AF\t0x6468\n0x93B0\t0x646A\n0x93B1\t0x646B\n0x93B2\t0x646C\n0x93B3\t0x646E\n0x93B4\t0x646F\n0x93B5\t0x6470\n0x93B6\t0x6471\n0x93B7\t0x6472\n0x93B8\t0x6473\n0x93B9\t0x6474\n0x93BA\t0x6475\n0x93BB\t0x6476\n0x93BC\t0x6477\n0x93BD\t0x647B\n0x93BE\t0x647C\n0x93BF\t0x647D\n0x93C0\t0x647E\n0x93C1\t0x647F\n0x93C2\t0x6480\n0x93C3\t0x6481\n0x93C4\t0x6483\n0x93C5\t0x6486\n0x93C6\t0x6488\n0x93C7\t0x6489\n0x93C8\t0x648A\n0x93C9\t0x648B\n0x93CA\t0x648C\n0x93CB\t0x648D\n0x93CC\t0x648E\n0x93CD\t0x648F\n0x93CE\t0x6490\n0x93CF\t0x6493\n0x93D0\t0x6494\n0x93D1\t0x6497\n0x93D2\t0x6498\n0x93D3\t0x649A\n0x93D4\t0x649B\n0x93D5\t0x649C\n0x93D6\t0x649D\n0x93D7\t0x649F\n0x93D8\t0x64A0\n0x93D9\t0x64A1\n0x93DA\t0x64A2\n0x93DB\t0x64A3\n0x93DC\t0x64A5\n0x93DD\t0x64A6\n0x93DE\t0x64A7\n0x93DF\t0x64A8\n0x93E0\t0x64AA\n0x93E1\t0x64AB\n0x93E2\t0x64AF\n0x93E3\t0x64B1\n0x93E4\t0x64B2\n0x93E5\t0x64B3\n0x93E6\t0x64B4\n0x93E7\t0x64B6\n0x93E8\t0x64B9\n0x93E9\t0x64BB\n0x93EA\t0x64BD\n0x93EB\t0x64BE\n0x93EC\t0x64BF\n0x93ED\t0x64C1\n0x93EE\t0x64C3\n0x93EF\t0x64C4\n0x93F0\t0x64C6\n0x93F1\t0x64C7\n0x93F2\t0x64C8\n0x93F3\t0x64C9\n0x93F4\t0x64CA\n0x93F5\t0x64CB\n0x93F6\t0x64CC\n0x93F7\t0x64CF\n0x93F8\t0x64D1\n0x93F9\t0x64D3\n0x93FA\t0x64D4\n0x93FB\t0x64D5\n0x93FC\t0x64D6\n0x93FD\t0x64D9\n0x93FE\t0x64DA\n0x9440\t0x64DB\n0x9441\t0x64DC\n0x9442\t0x64DD\n0x9443\t0x64DF\n0x9444\t0x64E0\n0x9445\t0x64E1\n0x9446\t0x64E3\n0x9447\t0x64E5\n0x9448\t0x64E7\n0x9449\t0x64E8\n0x944A\t0x64E9\n0x944B\t0x64EA\n0x944C\t0x64EB\n0x944D\t0x64EC\n0x944E\t0x64ED\n0x944F\t0x64EE\n0x9450\t0x64EF\n0x9451\t0x64F0\n0x9452\t0x64F1\n0x9453\t0x64F2\n0x9454\t0x64F3\n0x9455\t0x64F4\n0x9456\t0x64F5\n0x9457\t0x64F6\n0x9458\t0x64F7\n0x9459\t0x64F8\n0x945A\t0x64F9\n0x945B\t0x64FA\n0x945C\t0x64FB\n0x945D\t0x64FC\n0x945E\t0x64FD\n0x945F\t0x64FE\n0x9460\t0x64FF\n0x9461\t0x6501\n0x9462\t0x6502\n0x9463\t0x6503\n0x9464\t0x6504\n0x9465\t0x6505\n0x9466\t0x6506\n0x9467\t0x6507\n0x9468\t0x6508\n0x9469\t0x650A\n0x946A\t0x650B\n0x946B\t0x650C\n0x946C\t0x650D\n0x946D\t0x650E\n0x946E\t0x650F\n0x946F\t0x6510\n0x9470\t0x6511\n0x9471\t0x6513\n0x9472\t0x6514\n0x9473\t0x6515\n0x9474\t0x6516\n0x9475\t0x6517\n0x9476\t0x6519\n0x9477\t0x651A\n0x9478\t0x651B\n0x9479\t0x651C\n0x947A\t0x651D\n0x947B\t0x651E\n0x947C\t0x651F\n0x947D\t0x6520\n0x947E\t0x6521\n0x9480\t0x6522\n0x9481\t0x6523\n0x9482\t0x6524\n0x9483\t0x6526\n0x9484\t0x6527\n0x9485\t0x6528\n0x9486\t0x6529\n0x9487\t0x652A\n0x9488\t0x652C\n0x9489\t0x652D\n0x948A\t0x6530\n0x948B\t0x6531\n0x948C\t0x6532\n0x948D\t0x6533\n0x948E\t0x6537\n0x948F\t0x653A\n0x9490\t0x653C\n0x9491\t0x653D\n0x9492\t0x6540\n0x9493\t0x6541\n0x9494\t0x6542\n0x9495\t0x6543\n0x9496\t0x6544\n0x9497\t0x6546\n0x9498\t0x6547\n0x9499\t0x654A\n0x949A\t0x654B\n0x949B\t0x654D\n0x949C\t0x654E\n0x949D\t0x6550\n0x949E\t0x6552\n0x949F\t0x6553\n0x94A0\t0x6554\n0x94A1\t0x6557\n0x94A2\t0x6558\n0x94A3\t0x655A\n0x94A4\t0x655C\n0x94A5\t0x655F\n0x94A6\t0x6560\n0x94A7\t0x6561\n0x94A8\t0x6564\n0x94A9\t0x6565\n0x94AA\t0x6567\n0x94AB\t0x6568\n0x94AC\t0x6569\n0x94AD\t0x656A\n0x94AE\t0x656D\n0x94AF\t0x656E\n0x94B0\t0x656F\n0x94B1\t0x6571\n0x94B2\t0x6573\n0x94B3\t0x6575\n0x94B4\t0x6576\n0x94B5\t0x6578\n0x94B6\t0x6579\n0x94B7\t0x657A\n0x94B8\t0x657B\n0x94B9\t0x657C\n0x94BA\t0x657D\n0x94BB\t0x657E\n0x94BC\t0x657F\n0x94BD\t0x6580\n0x94BE\t0x6581\n0x94BF\t0x6582\n0x94C0\t0x6583\n0x94C1\t0x6584\n0x94C2\t0x6585\n0x94C3\t0x6586\n0x94C4\t0x6588\n0x94C5\t0x6589\n0x94C6\t0x658A\n0x94C7\t0x658D\n0x94C8\t0x658E\n0x94C9\t0x658F\n0x94CA\t0x6592\n0x94CB\t0x6594\n0x94CC\t0x6595\n0x94CD\t0x6596\n0x94CE\t0x6598\n0x94CF\t0x659A\n0x94D0\t0x659D\n0x94D1\t0x659E\n0x94D2\t0x65A0\n0x94D3\t0x65A2\n0x94D4\t0x65A3\n0x94D5\t0x65A6\n0x94D6\t0x65A8\n0x94D7\t0x65AA\n0x94D8\t0x65AC\n0x94D9\t0x65AE\n0x94DA\t0x65B1\n0x94DB\t0x65B2\n0x94DC\t0x65B3\n0x94DD\t0x65B4\n0x94DE\t0x65B5\n0x94DF\t0x65B6\n0x94E0\t0x65B7\n0x94E1\t0x65B8\n0x94E2\t0x65BA\n0x94E3\t0x65BB\n0x94E4\t0x65BE\n0x94E5\t0x65BF\n0x94E6\t0x65C0\n0x94E7\t0x65C2\n0x94E8\t0x65C7\n0x94E9\t0x65C8\n0x94EA\t0x65C9\n0x94EB\t0x65CA\n0x94EC\t0x65CD\n0x94ED\t0x65D0\n0x94EE\t0x65D1\n0x94EF\t0x65D3\n0x94F0\t0x65D4\n0x94F1\t0x65D5\n0x94F2\t0x65D8\n0x94F3\t0x65D9\n0x94F4\t0x65DA\n0x94F5\t0x65DB\n0x94F6\t0x65DC\n0x94F7\t0x65DD\n0x94F8\t0x65DE\n0x94F9\t0x65DF\n0x94FA\t0x65E1\n0x94FB\t0x65E3\n0x94FC\t0x65E4\n0x94FD\t0x65EA\n0x94FE\t0x65EB\n0x9540\t0x65F2\n0x9541\t0x65F3\n0x9542\t0x65F4\n0x9543\t0x65F5\n0x9544\t0x65F8\n0x9545\t0x65F9\n0x9546\t0x65FB\n0x9547\t0x65FC\n0x9548\t0x65FD\n0x9549\t0x65FE\n0x954A\t0x65FF\n0x954B\t0x6601\n0x954C\t0x6604\n0x954D\t0x6605\n0x954E\t0x6607\n0x954F\t0x6608\n0x9550\t0x6609\n0x9551\t0x660B\n0x9552\t0x660D\n0x9553\t0x6610\n0x9554\t0x6611\n0x9555\t0x6612\n0x9556\t0x6616\n0x9557\t0x6617\n0x9558\t0x6618\n0x9559\t0x661A\n0x955A\t0x661B\n0x955B\t0x661C\n0x955C\t0x661E\n0x955D\t0x6621\n0x955E\t0x6622\n0x955F\t0x6623\n0x9560\t0x6624\n0x9561\t0x6626\n0x9562\t0x6629\n0x9563\t0x662A\n0x9564\t0x662B\n0x9565\t0x662C\n0x9566\t0x662E\n0x9567\t0x6630\n0x9568\t0x6632\n0x9569\t0x6633\n0x956A\t0x6637\n0x956B\t0x6638\n0x956C\t0x6639\n0x956D\t0x663A\n0x956E\t0x663B\n0x956F\t0x663D\n0x9570\t0x663F\n0x9571\t0x6640\n0x9572\t0x6642\n0x9573\t0x6644\n0x9574\t0x6645\n0x9575\t0x6646\n0x9576\t0x6647\n0x9577\t0x6648\n0x9578\t0x6649\n0x9579\t0x664A\n0x957A\t0x664D\n0x957B\t0x664E\n0x957C\t0x6650\n0x957D\t0x6651\n0x957E\t0x6658\n0x9580\t0x6659\n0x9581\t0x665B\n0x9582\t0x665C\n0x9583\t0x665D\n0x9584\t0x665E\n0x9585\t0x6660\n0x9586\t0x6662\n0x9587\t0x6663\n0x9588\t0x6665\n0x9589\t0x6667\n0x958A\t0x6669\n0x958B\t0x666A\n0x958C\t0x666B\n0x958D\t0x666C\n0x958E\t0x666D\n0x958F\t0x6671\n0x9590\t0x6672\n0x9591\t0x6673\n0x9592\t0x6675\n0x9593\t0x6678\n0x9594\t0x6679\n0x9595\t0x667B\n0x9596\t0x667C\n0x9597\t0x667D\n0x9598\t0x667F\n0x9599\t0x6680\n0x959A\t0x6681\n0x959B\t0x6683\n0x959C\t0x6685\n0x959D\t0x6686\n0x959E\t0x6688\n0x959F\t0x6689\n0x95A0\t0x668A\n0x95A1\t0x668B\n0x95A2\t0x668D\n0x95A3\t0x668E\n0x95A4\t0x668F\n0x95A5\t0x6690\n0x95A6\t0x6692\n0x95A7\t0x6693\n0x95A8\t0x6694\n0x95A9\t0x6695\n0x95AA\t0x6698\n0x95AB\t0x6699\n0x95AC\t0x669A\n0x95AD\t0x669B\n0x95AE\t0x669C\n0x95AF\t0x669E\n0x95B0\t0x669F\n0x95B1\t0x66A0\n0x95B2\t0x66A1\n0x95B3\t0x66A2\n0x95B4\t0x66A3\n0x95B5\t0x66A4\n0x95B6\t0x66A5\n0x95B7\t0x66A6\n0x95B8\t0x66A9\n0x95B9\t0x66AA\n0x95BA\t0x66AB\n0x95BB\t0x66AC\n0x95BC\t0x66AD\n0x95BD\t0x66AF\n0x95BE\t0x66B0\n0x95BF\t0x66B1\n0x95C0\t0x66B2\n0x95C1\t0x66B3\n0x95C2\t0x66B5\n0x95C3\t0x66B6\n0x95C4\t0x66B7\n0x95C5\t0x66B8\n0x95C6\t0x66BA\n0x95C7\t0x66BB\n0x95C8\t0x66BC\n0x95C9\t0x66BD\n0x95CA\t0x66BF\n0x95CB\t0x66C0\n0x95CC\t0x66C1\n0x95CD\t0x66C2\n0x95CE\t0x66C3\n0x95CF\t0x66C4\n0x95D0\t0x66C5\n0x95D1\t0x66C6\n0x95D2\t0x66C7\n0x95D3\t0x66C8\n0x95D4\t0x66C9\n0x95D5\t0x66CA\n0x95D6\t0x66CB\n0x95D7\t0x66CC\n0x95D8\t0x66CD\n0x95D9\t0x66CE\n0x95DA\t0x66CF\n0x95DB\t0x66D0\n0x95DC\t0x66D1\n0x95DD\t0x66D2\n0x95DE\t0x66D3\n0x95DF\t0x66D4\n0x95E0\t0x66D5\n0x95E1\t0x66D6\n0x95E2\t0x66D7\n0x95E3\t0x66D8\n0x95E4\t0x66DA\n0x95E5\t0x66DE\n0x95E6\t0x66DF\n0x95E7\t0x66E0\n0x95E8\t0x66E1\n0x95E9\t0x66E2\n0x95EA\t0x66E3\n0x95EB\t0x66E4\n0x95EC\t0x66E5\n0x95ED\t0x66E7\n0x95EE\t0x66E8\n0x95EF\t0x66EA\n0x95F0\t0x66EB\n0x95F1\t0x66EC\n0x95F2\t0x66ED\n0x95F3\t0x66EE\n0x95F4\t0x66EF\n0x95F5\t0x66F1\n0x95F6\t0x66F5\n0x95F7\t0x66F6\n0x95F8\t0x66F8\n0x95F9\t0x66FA\n0x95FA\t0x66FB\n0x95FB\t0x66FD\n0x95FC\t0x6701\n0x95FD\t0x6702\n0x95FE\t0x6703\n0x9640\t0x6704\n0x9641\t0x6705\n0x9642\t0x6706\n0x9643\t0x6707\n0x9644\t0x670C\n0x9645\t0x670E\n0x9646\t0x670F\n0x9647\t0x6711\n0x9648\t0x6712\n0x9649\t0x6713\n0x964A\t0x6716\n0x964B\t0x6718\n0x964C\t0x6719\n0x964D\t0x671A\n0x964E\t0x671C\n0x964F\t0x671E\n0x9650\t0x6720\n0x9651\t0x6721\n0x9652\t0x6722\n0x9653\t0x6723\n0x9654\t0x6724\n0x9655\t0x6725\n0x9656\t0x6727\n0x9657\t0x6729\n0x9658\t0x672E\n0x9659\t0x6730\n0x965A\t0x6732\n0x965B\t0x6733\n0x965C\t0x6736\n0x965D\t0x6737\n0x965E\t0x6738\n0x965F\t0x6739\n0x9660\t0x673B\n0x9661\t0x673C\n0x9662\t0x673E\n0x9663\t0x673F\n0x9664\t0x6741\n0x9665\t0x6744\n0x9666\t0x6745\n0x9667\t0x6747\n0x9668\t0x674A\n0x9669\t0x674B\n0x966A\t0x674D\n0x966B\t0x6752\n0x966C\t0x6754\n0x966D\t0x6755\n0x966E\t0x6757\n0x966F\t0x6758\n0x9670\t0x6759\n0x9671\t0x675A\n0x9672\t0x675B\n0x9673\t0x675D\n0x9674\t0x6762\n0x9675\t0x6763\n0x9676\t0x6764\n0x9677\t0x6766\n0x9678\t0x6767\n0x9679\t0x676B\n0x967A\t0x676C\n0x967B\t0x676E\n0x967C\t0x6771\n0x967D\t0x6774\n0x967E\t0x6776\n0x9680\t0x6778\n0x9681\t0x6779\n0x9682\t0x677A\n0x9683\t0x677B\n0x9684\t0x677D\n0x9685\t0x6780\n0x9686\t0x6782\n0x9687\t0x6783\n0x9688\t0x6785\n0x9689\t0x6786\n0x968A\t0x6788\n0x968B\t0x678A\n0x968C\t0x678C\n0x968D\t0x678D\n0x968E\t0x678E\n0x968F\t0x678F\n0x9690\t0x6791\n0x9691\t0x6792\n0x9692\t0x6793\n0x9693\t0x6794\n0x9694\t0x6796\n0x9695\t0x6799\n0x9696\t0x679B\n0x9697\t0x679F\n0x9698\t0x67A0\n0x9699\t0x67A1\n0x969A\t0x67A4\n0x969B\t0x67A6\n0x969C\t0x67A9\n0x969D\t0x67AC\n0x969E\t0x67AE\n0x969F\t0x67B1\n0x96A0\t0x67B2\n0x96A1\t0x67B4\n0x96A2\t0x67B9\n0x96A3\t0x67BA\n0x96A4\t0x67BB\n0x96A5\t0x67BC\n0x96A6\t0x67BD\n0x96A7\t0x67BE\n0x96A8\t0x67BF\n0x96A9\t0x67C0\n0x96AA\t0x67C2\n0x96AB\t0x67C5\n0x96AC\t0x67C6\n0x96AD\t0x67C7\n0x96AE\t0x67C8\n0x96AF\t0x67C9\n0x96B0\t0x67CA\n0x96B1\t0x67CB\n0x96B2\t0x67CC\n0x96B3\t0x67CD\n0x96B4\t0x67CE\n0x96B5\t0x67D5\n0x96B6\t0x67D6\n0x96B7\t0x67D7\n0x96B8\t0x67DB\n0x96B9\t0x67DF\n0x96BA\t0x67E1\n0x96BB\t0x67E3\n0x96BC\t0x67E4\n0x96BD\t0x67E6\n0x96BE\t0x67E7\n0x96BF\t0x67E8\n0x96C0\t0x67EA\n0x96C1\t0x67EB\n0x96C2\t0x67ED\n0x96C3\t0x67EE\n0x96C4\t0x67F2\n0x96C5\t0x67F5\n0x96C6\t0x67F6\n0x96C7\t0x67F7\n0x96C8\t0x67F8\n0x96C9\t0x67F9\n0x96CA\t0x67FA\n0x96CB\t0x67FB\n0x96CC\t0x67FC\n0x96CD\t0x67FE\n0x96CE\t0x6801\n0x96CF\t0x6802\n0x96D0\t0x6803\n0x96D1\t0x6804\n0x96D2\t0x6806\n0x96D3\t0x680D\n0x96D4\t0x6810\n0x96D5\t0x6812\n0x96D6\t0x6814\n0x96D7\t0x6815\n0x96D8\t0x6818\n0x96D9\t0x6819\n0x96DA\t0x681A\n0x96DB\t0x681B\n0x96DC\t0x681C\n0x96DD\t0x681E\n0x96DE\t0x681F\n0x96DF\t0x6820\n0x96E0\t0x6822\n0x96E1\t0x6823\n0x96E2\t0x6824\n0x96E3\t0x6825\n0x96E4\t0x6826\n0x96E5\t0x6827\n0x96E6\t0x6828\n0x96E7\t0x682B\n0x96E8\t0x682C\n0x96E9\t0x682D\n0x96EA\t0x682E\n0x96EB\t0x682F\n0x96EC\t0x6830\n0x96ED\t0x6831\n0x96EE\t0x6834\n0x96EF\t0x6835\n0x96F0\t0x6836\n0x96F1\t0x683A\n0x96F2\t0x683B\n0x96F3\t0x683F\n0x96F4\t0x6847\n0x96F5\t0x684B\n0x96F6\t0x684D\n0x96F7\t0x684F\n0x96F8\t0x6852\n0x96F9\t0x6856\n0x96FA\t0x6857\n0x96FB\t0x6858\n0x96FC\t0x6859\n0x96FD\t0x685A\n0x96FE\t0x685B\n0x9740\t0x685C\n0x9741\t0x685D\n0x9742\t0x685E\n0x9743\t0x685F\n0x9744\t0x686A\n0x9745\t0x686C\n0x9746\t0x686D\n0x9747\t0x686E\n0x9748\t0x686F\n0x9749\t0x6870\n0x974A\t0x6871\n0x974B\t0x6872\n0x974C\t0x6873\n0x974D\t0x6875\n0x974E\t0x6878\n0x974F\t0x6879\n0x9750\t0x687A\n0x9751\t0x687B\n0x9752\t0x687C\n0x9753\t0x687D\n0x9754\t0x687E\n0x9755\t0x687F\n0x9756\t0x6880\n0x9757\t0x6882\n0x9758\t0x6884\n0x9759\t0x6887\n0x975A\t0x6888\n0x975B\t0x6889\n0x975C\t0x688A\n0x975D\t0x688B\n0x975E\t0x688C\n0x975F\t0x688D\n0x9760\t0x688E\n0x9761\t0x6890\n0x9762\t0x6891\n0x9763\t0x6892\n0x9764\t0x6894\n0x9765\t0x6895\n0x9766\t0x6896\n0x9767\t0x6898\n0x9768\t0x6899\n0x9769\t0x689A\n0x976A\t0x689B\n0x976B\t0x689C\n0x976C\t0x689D\n0x976D\t0x689E\n0x976E\t0x689F\n0x976F\t0x68A0\n0x9770\t0x68A1\n0x9771\t0x68A3\n0x9772\t0x68A4\n0x9773\t0x68A5\n0x9774\t0x68A9\n0x9775\t0x68AA\n0x9776\t0x68AB\n0x9777\t0x68AC\n0x9778\t0x68AE\n0x9779\t0x68B1\n0x977A\t0x68B2\n0x977B\t0x68B4\n0x977C\t0x68B6\n0x977D\t0x68B7\n0x977E\t0x68B8\n0x9780\t0x68B9\n0x9781\t0x68BA\n0x9782\t0x68BB\n0x9783\t0x68BC\n0x9784\t0x68BD\n0x9785\t0x68BE\n0x9786\t0x68BF\n0x9787\t0x68C1\n0x9788\t0x68C3\n0x9789\t0x68C4\n0x978A\t0x68C5\n0x978B\t0x68C6\n0x978C\t0x68C7\n0x978D\t0x68C8\n0x978E\t0x68CA\n0x978F\t0x68CC\n0x9790\t0x68CE\n0x9791\t0x68CF\n0x9792\t0x68D0\n0x9793\t0x68D1\n0x9794\t0x68D3\n0x9795\t0x68D4\n0x9796\t0x68D6\n0x9797\t0x68D7\n0x9798\t0x68D9\n0x9799\t0x68DB\n0x979A\t0x68DC\n0x979B\t0x68DD\n0x979C\t0x68DE\n0x979D\t0x68DF\n0x979E\t0x68E1\n0x979F\t0x68E2\n0x97A0\t0x68E4\n0x97A1\t0x68E5\n0x97A2\t0x68E6\n0x97A3\t0x68E7\n0x97A4\t0x68E8\n0x97A5\t0x68E9\n0x97A6\t0x68EA\n0x97A7\t0x68EB\n0x97A8\t0x68EC\n0x97A9\t0x68ED\n0x97AA\t0x68EF\n0x97AB\t0x68F2\n0x97AC\t0x68F3\n0x97AD\t0x68F4\n0x97AE\t0x68F6\n0x97AF\t0x68F7\n0x97B0\t0x68F8\n0x97B1\t0x68FB\n0x97B2\t0x68FD\n0x97B3\t0x68FE\n0x97B4\t0x68FF\n0x97B5\t0x6900\n0x97B6\t0x6902\n0x97B7\t0x6903\n0x97B8\t0x6904\n0x97B9\t0x6906\n0x97BA\t0x6907\n0x97BB\t0x6908\n0x97BC\t0x6909\n0x97BD\t0x690A\n0x97BE\t0x690C\n0x97BF\t0x690F\n0x97C0\t0x6911\n0x97C1\t0x6913\n0x97C2\t0x6914\n0x97C3\t0x6915\n0x97C4\t0x6916\n0x97C5\t0x6917\n0x97C6\t0x6918\n0x97C7\t0x6919\n0x97C8\t0x691A\n0x97C9\t0x691B\n0x97CA\t0x691C\n0x97CB\t0x691D\n0x97CC\t0x691E\n0x97CD\t0x6921\n0x97CE\t0x6922\n0x97CF\t0x6923\n0x97D0\t0x6925\n0x97D1\t0x6926\n0x97D2\t0x6927\n0x97D3\t0x6928\n0x97D4\t0x6929\n0x97D5\t0x692A\n0x97D6\t0x692B\n0x97D7\t0x692C\n0x97D8\t0x692E\n0x97D9\t0x692F\n0x97DA\t0x6931\n0x97DB\t0x6932\n0x97DC\t0x6933\n0x97DD\t0x6935\n0x97DE\t0x6936\n0x97DF\t0x6937\n0x97E0\t0x6938\n0x97E1\t0x693A\n0x97E2\t0x693B\n0x97E3\t0x693C\n0x97E4\t0x693E\n0x97E5\t0x6940\n0x97E6\t0x6941\n0x97E7\t0x6943\n0x97E8\t0x6944\n0x97E9\t0x6945\n0x97EA\t0x6946\n0x97EB\t0x6947\n0x97EC\t0x6948\n0x97ED\t0x6949\n0x97EE\t0x694A\n0x97EF\t0x694B\n0x97F0\t0x694C\n0x97F1\t0x694D\n0x97F2\t0x694E\n0x97F3\t0x694F\n0x97F4\t0x6950\n0x97F5\t0x6951\n0x97F6\t0x6952\n0x97F7\t0x6953\n0x97F8\t0x6955\n0x97F9\t0x6956\n0x97FA\t0x6958\n0x97FB\t0x6959\n0x97FC\t0x695B\n0x97FD\t0x695C\n0x97FE\t0x695F\n0x9840\t0x6961\n0x9841\t0x6962\n0x9842\t0x6964\n0x9843\t0x6965\n0x9844\t0x6967\n0x9845\t0x6968\n0x9846\t0x6969\n0x9847\t0x696A\n0x9848\t0x696C\n0x9849\t0x696D\n0x984A\t0x696F\n0x984B\t0x6970\n0x984C\t0x6972\n0x984D\t0x6973\n0x984E\t0x6974\n0x984F\t0x6975\n0x9850\t0x6976\n0x9851\t0x697A\n0x9852\t0x697B\n0x9853\t0x697D\n0x9854\t0x697E\n0x9855\t0x697F\n0x9856\t0x6981\n0x9857\t0x6983\n0x9858\t0x6985\n0x9859\t0x698A\n0x985A\t0x698B\n0x985B\t0x698C\n0x985C\t0x698E\n0x985D\t0x698F\n0x985E\t0x6990\n0x985F\t0x6991\n0x9860\t0x6992\n0x9861\t0x6993\n0x9862\t0x6996\n0x9863\t0x6997\n0x9864\t0x6999\n0x9865\t0x699A\n0x9866\t0x699D\n0x9867\t0x699E\n0x9868\t0x699F\n0x9869\t0x69A0\n0x986A\t0x69A1\n0x986B\t0x69A2\n0x986C\t0x69A3\n0x986D\t0x69A4\n0x986E\t0x69A5\n0x986F\t0x69A6\n0x9870\t0x69A9\n0x9871\t0x69AA\n0x9872\t0x69AC\n0x9873\t0x69AE\n0x9874\t0x69AF\n0x9875\t0x69B0\n0x9876\t0x69B2\n0x9877\t0x69B3\n0x9878\t0x69B5\n0x9879\t0x69B6\n0x987A\t0x69B8\n0x987B\t0x69B9\n0x987C\t0x69BA\n0x987D\t0x69BC\n0x987E\t0x69BD\n0x9880\t0x69BE\n0x9881\t0x69BF\n0x9882\t0x69C0\n0x9883\t0x69C2\n0x9884\t0x69C3\n0x9885\t0x69C4\n0x9886\t0x69C5\n0x9887\t0x69C6\n0x9888\t0x69C7\n0x9889\t0x69C8\n0x988A\t0x69C9\n0x988B\t0x69CB\n0x988C\t0x69CD\n0x988D\t0x69CF\n0x988E\t0x69D1\n0x988F\t0x69D2\n0x9890\t0x69D3\n0x9891\t0x69D5\n0x9892\t0x69D6\n0x9893\t0x69D7\n0x9894\t0x69D8\n0x9895\t0x69D9\n0x9896\t0x69DA\n0x9897\t0x69DC\n0x9898\t0x69DD\n0x9899\t0x69DE\n0x989A\t0x69E1\n0x989B\t0x69E2\n0x989C\t0x69E3\n0x989D\t0x69E4\n0x989E\t0x69E5\n0x989F\t0x69E6\n0x98A0\t0x69E7\n0x98A1\t0x69E8\n0x98A2\t0x69E9\n0x98A3\t0x69EA\n0x98A4\t0x69EB\n0x98A5\t0x69EC\n0x98A6\t0x69EE\n0x98A7\t0x69EF\n0x98A8\t0x69F0\n0x98A9\t0x69F1\n0x98AA\t0x69F3\n0x98AB\t0x69F4\n0x98AC\t0x69F5\n0x98AD\t0x69F6\n0x98AE\t0x69F7\n0x98AF\t0x69F8\n0x98B0\t0x69F9\n0x98B1\t0x69FA\n0x98B2\t0x69FB\n0x98B3\t0x69FC\n0x98B4\t0x69FE\n0x98B5\t0x6A00\n0x98B6\t0x6A01\n0x98B7\t0x6A02\n0x98B8\t0x6A03\n0x98B9\t0x6A04\n0x98BA\t0x6A05\n0x98BB\t0x6A06\n0x98BC\t0x6A07\n0x98BD\t0x6A08\n0x98BE\t0x6A09\n0x98BF\t0x6A0B\n0x98C0\t0x6A0C\n0x98C1\t0x6A0D\n0x98C2\t0x6A0E\n0x98C3\t0x6A0F\n0x98C4\t0x6A10\n0x98C5\t0x6A11\n0x98C6\t0x6A12\n0x98C7\t0x6A13\n0x98C8\t0x6A14\n0x98C9\t0x6A15\n0x98CA\t0x6A16\n0x98CB\t0x6A19\n0x98CC\t0x6A1A\n0x98CD\t0x6A1B\n0x98CE\t0x6A1C\n0x98CF\t0x6A1D\n0x98D0\t0x6A1E\n0x98D1\t0x6A20\n0x98D2\t0x6A22\n0x98D3\t0x6A23\n0x98D4\t0x6A24\n0x98D5\t0x6A25\n0x98D6\t0x6A26\n0x98D7\t0x6A27\n0x98D8\t0x6A29\n0x98D9\t0x6A2B\n0x98DA\t0x6A2C\n0x98DB\t0x6A2D\n0x98DC\t0x6A2E\n0x98DD\t0x6A30\n0x98DE\t0x6A32\n0x98DF\t0x6A33\n0x98E0\t0x6A34\n0x98E1\t0x6A36\n0x98E2\t0x6A37\n0x98E3\t0x6A38\n0x98E4\t0x6A39\n0x98E5\t0x6A3A\n0x98E6\t0x6A3B\n0x98E7\t0x6A3C\n0x98E8\t0x6A3F\n0x98E9\t0x6A40\n0x98EA\t0x6A41\n0x98EB\t0x6A42\n0x98EC\t0x6A43\n0x98ED\t0x6A45\n0x98EE\t0x6A46\n0x98EF\t0x6A48\n0x98F0\t0x6A49\n0x98F1\t0x6A4A\n0x98F2\t0x6A4B\n0x98F3\t0x6A4C\n0x98F4\t0x6A4D\n0x98F5\t0x6A4E\n0x98F6\t0x6A4F\n0x98F7\t0x6A51\n0x98F8\t0x6A52\n0x98F9\t0x6A53\n0x98FA\t0x6A54\n0x98FB\t0x6A55\n0x98FC\t0x6A56\n0x98FD\t0x6A57\n0x98FE\t0x6A5A\n0x9940\t0x6A5C\n0x9941\t0x6A5D\n0x9942\t0x6A5E\n0x9943\t0x6A5F\n0x9944\t0x6A60\n0x9945\t0x6A62\n0x9946\t0x6A63\n0x9947\t0x6A64\n0x9948\t0x6A66\n0x9949\t0x6A67\n0x994A\t0x6A68\n0x994B\t0x6A69\n0x994C\t0x6A6A\n0x994D\t0x6A6B\n0x994E\t0x6A6C\n0x994F\t0x6A6D\n0x9950\t0x6A6E\n0x9951\t0x6A6F\n0x9952\t0x6A70\n0x9953\t0x6A72\n0x9954\t0x6A73\n0x9955\t0x6A74\n0x9956\t0x6A75\n0x9957\t0x6A76\n0x9958\t0x6A77\n0x9959\t0x6A78\n0x995A\t0x6A7A\n0x995B\t0x6A7B\n0x995C\t0x6A7D\n0x995D\t0x6A7E\n0x995E\t0x6A7F\n0x995F\t0x6A81\n0x9960\t0x6A82\n0x9961\t0x6A83\n0x9962\t0x6A85\n0x9963\t0x6A86\n0x9964\t0x6A87\n0x9965\t0x6A88\n0x9966\t0x6A89\n0x9967\t0x6A8A\n0x9968\t0x6A8B\n0x9969\t0x6A8C\n0x996A\t0x6A8D\n0x996B\t0x6A8F\n0x996C\t0x6A92\n0x996D\t0x6A93\n0x996E\t0x6A94\n0x996F\t0x6A95\n0x9970\t0x6A96\n0x9971\t0x6A98\n0x9972\t0x6A99\n0x9973\t0x6A9A\n0x9974\t0x6A9B\n0x9975\t0x6A9C\n0x9976\t0x6A9D\n0x9977\t0x6A9E\n0x9978\t0x6A9F\n0x9979\t0x6AA1\n0x997A\t0x6AA2\n0x997B\t0x6AA3\n0x997C\t0x6AA4\n0x997D\t0x6AA5\n0x997E\t0x6AA6\n0x9980\t0x6AA7\n0x9981\t0x6AA8\n0x9982\t0x6AAA\n0x9983\t0x6AAD\n0x9984\t0x6AAE\n0x9985\t0x6AAF\n0x9986\t0x6AB0\n0x9987\t0x6AB1\n0x9988\t0x6AB2\n0x9989\t0x6AB3\n0x998A\t0x6AB4\n0x998B\t0x6AB5\n0x998C\t0x6AB6\n0x998D\t0x6AB7\n0x998E\t0x6AB8\n0x998F\t0x6AB9\n0x9990\t0x6ABA\n0x9991\t0x6ABB\n0x9992\t0x6ABC\n0x9993\t0x6ABD\n0x9994\t0x6ABE\n0x9995\t0x6ABF\n0x9996\t0x6AC0\n0x9997\t0x6AC1\n0x9998\t0x6AC2\n0x9999\t0x6AC3\n0x999A\t0x6AC4\n0x999B\t0x6AC5\n0x999C\t0x6AC6\n0x999D\t0x6AC7\n0x999E\t0x6AC8\n0x999F\t0x6AC9\n0x99A0\t0x6ACA\n0x99A1\t0x6ACB\n0x99A2\t0x6ACC\n0x99A3\t0x6ACD\n0x99A4\t0x6ACE\n0x99A5\t0x6ACF\n0x99A6\t0x6AD0\n0x99A7\t0x6AD1\n0x99A8\t0x6AD2\n0x99A9\t0x6AD3\n0x99AA\t0x6AD4\n0x99AB\t0x6AD5\n0x99AC\t0x6AD6\n0x99AD\t0x6AD7\n0x99AE\t0x6AD8\n0x99AF\t0x6AD9\n0x99B0\t0x6ADA\n0x99B1\t0x6ADB\n0x99B2\t0x6ADC\n0x99B3\t0x6ADD\n0x99B4\t0x6ADE\n0x99B5\t0x6ADF\n0x99B6\t0x6AE0\n0x99B7\t0x6AE1\n0x99B8\t0x6AE2\n0x99B9\t0x6AE3\n0x99BA\t0x6AE4\n0x99BB\t0x6AE5\n0x99BC\t0x6AE6\n0x99BD\t0x6AE7\n0x99BE\t0x6AE8\n0x99BF\t0x6AE9\n0x99C0\t0x6AEA\n0x99C1\t0x6AEB\n0x99C2\t0x6AEC\n0x99C3\t0x6AED\n0x99C4\t0x6AEE\n0x99C5\t0x6AEF\n0x99C6\t0x6AF0\n0x99C7\t0x6AF1\n0x99C8\t0x6AF2\n0x99C9\t0x6AF3\n0x99CA\t0x6AF4\n0x99CB\t0x6AF5\n0x99CC\t0x6AF6\n0x99CD\t0x6AF7\n0x99CE\t0x6AF8\n0x99CF\t0x6AF9\n0x99D0\t0x6AFA\n0x99D1\t0x6AFB\n0x99D2\t0x6AFC\n0x99D3\t0x6AFD\n0x99D4\t0x6AFE\n0x99D5\t0x6AFF\n0x99D6\t0x6B00\n0x99D7\t0x6B01\n0x99D8\t0x6B02\n0x99D9\t0x6B03\n0x99DA\t0x6B04\n0x99DB\t0x6B05\n0x99DC\t0x6B06\n0x99DD\t0x6B07\n0x99DE\t0x6B08\n0x99DF\t0x6B09\n0x99E0\t0x6B0A\n0x99E1\t0x6B0B\n0x99E2\t0x6B0C\n0x99E3\t0x6B0D\n0x99E4\t0x6B0E\n0x99E5\t0x6B0F\n0x99E6\t0x6B10\n0x99E7\t0x6B11\n0x99E8\t0x6B12\n0x99E9\t0x6B13\n0x99EA\t0x6B14\n0x99EB\t0x6B15\n0x99EC\t0x6B16\n0x99ED\t0x6B17\n0x99EE\t0x6B18\n0x99EF\t0x6B19\n0x99F0\t0x6B1A\n0x99F1\t0x6B1B\n0x99F2\t0x6B1C\n0x99F3\t0x6B1D\n0x99F4\t0x6B1E\n0x99F5\t0x6B1F\n0x99F6\t0x6B25\n0x99F7\t0x6B26\n0x99F8\t0x6B28\n0x99F9\t0x6B29\n0x99FA\t0x6B2A\n0x99FB\t0x6B2B\n0x99FC\t0x6B2C\n0x99FD\t0x6B2D\n0x99FE\t0x6B2E\n0x9A40\t0x6B2F\n0x9A41\t0x6B30\n0x9A42\t0x6B31\n0x9A43\t0x6B33\n0x9A44\t0x6B34\n0x9A45\t0x6B35\n0x9A46\t0x6B36\n0x9A47\t0x6B38\n0x9A48\t0x6B3B\n0x9A49\t0x6B3C\n0x9A4A\t0x6B3D\n0x9A4B\t0x6B3F\n0x9A4C\t0x6B40\n0x9A4D\t0x6B41\n0x9A4E\t0x6B42\n0x9A4F\t0x6B44\n0x9A50\t0x6B45\n0x9A51\t0x6B48\n0x9A52\t0x6B4A\n0x9A53\t0x6B4B\n0x9A54\t0x6B4D\n0x9A55\t0x6B4E\n0x9A56\t0x6B4F\n0x9A57\t0x6B50\n0x9A58\t0x6B51\n0x9A59\t0x6B52\n0x9A5A\t0x6B53\n0x9A5B\t0x6B54\n0x9A5C\t0x6B55\n0x9A5D\t0x6B56\n0x9A5E\t0x6B57\n0x9A5F\t0x6B58\n0x9A60\t0x6B5A\n0x9A61\t0x6B5B\n0x9A62\t0x6B5C\n0x9A63\t0x6B5D\n0x9A64\t0x6B5E\n0x9A65\t0x6B5F\n0x9A66\t0x6B60\n0x9A67\t0x6B61\n0x9A68\t0x6B68\n0x9A69\t0x6B69\n0x9A6A\t0x6B6B\n0x9A6B\t0x6B6C\n0x9A6C\t0x6B6D\n0x9A6D\t0x6B6E\n0x9A6E\t0x6B6F\n0x9A6F\t0x6B70\n0x9A70\t0x6B71\n0x9A71\t0x6B72\n0x9A72\t0x6B73\n0x9A73\t0x6B74\n0x9A74\t0x6B75\n0x9A75\t0x6B76\n0x9A76\t0x6B77\n0x9A77\t0x6B78\n0x9A78\t0x6B7A\n0x9A79\t0x6B7D\n0x9A7A\t0x6B7E\n0x9A7B\t0x6B7F\n0x9A7C\t0x6B80\n0x9A7D\t0x6B85\n0x9A7E\t0x6B88\n0x9A80\t0x6B8C\n0x9A81\t0x6B8E\n0x9A82\t0x6B8F\n0x9A83\t0x6B90\n0x9A84\t0x6B91\n0x9A85\t0x6B94\n0x9A86\t0x6B95\n0x9A87\t0x6B97\n0x9A88\t0x6B98\n0x9A89\t0x6B99\n0x9A8A\t0x6B9C\n0x9A8B\t0x6B9D\n0x9A8C\t0x6B9E\n0x9A8D\t0x6B9F\n0x9A8E\t0x6BA0\n0x9A8F\t0x6BA2\n0x9A90\t0x6BA3\n0x9A91\t0x6BA4\n0x9A92\t0x6BA5\n0x9A93\t0x6BA6\n0x9A94\t0x6BA7\n0x9A95\t0x6BA8\n0x9A96\t0x6BA9\n0x9A97\t0x6BAB\n0x9A98\t0x6BAC\n0x9A99\t0x6BAD\n0x9A9A\t0x6BAE\n0x9A9B\t0x6BAF\n0x9A9C\t0x6BB0\n0x9A9D\t0x6BB1\n0x9A9E\t0x6BB2\n0x9A9F\t0x6BB6\n0x9AA0\t0x6BB8\n0x9AA1\t0x6BB9\n0x9AA2\t0x6BBA\n0x9AA3\t0x6BBB\n0x9AA4\t0x6BBC\n0x9AA5\t0x6BBD\n0x9AA6\t0x6BBE\n0x9AA7\t0x6BC0\n0x9AA8\t0x6BC3\n0x9AA9\t0x6BC4\n0x9AAA\t0x6BC6\n0x9AAB\t0x6BC7\n0x9AAC\t0x6BC8\n0x9AAD\t0x6BC9\n0x9AAE\t0x6BCA\n0x9AAF\t0x6BCC\n0x9AB0\t0x6BCE\n0x9AB1\t0x6BD0\n0x9AB2\t0x6BD1\n0x9AB3\t0x6BD8\n0x9AB4\t0x6BDA\n0x9AB5\t0x6BDC\n0x9AB6\t0x6BDD\n0x9AB7\t0x6BDE\n0x9AB8\t0x6BDF\n0x9AB9\t0x6BE0\n0x9ABA\t0x6BE2\n0x9ABB\t0x6BE3\n0x9ABC\t0x6BE4\n0x9ABD\t0x6BE5\n0x9ABE\t0x6BE6\n0x9ABF\t0x6BE7\n0x9AC0\t0x6BE8\n0x9AC1\t0x6BE9\n0x9AC2\t0x6BEC\n0x9AC3\t0x6BED\n0x9AC4\t0x6BEE\n0x9AC5\t0x6BF0\n0x9AC6\t0x6BF1\n0x9AC7\t0x6BF2\n0x9AC8\t0x6BF4\n0x9AC9\t0x6BF6\n0x9ACA\t0x6BF7\n0x9ACB\t0x6BF8\n0x9ACC\t0x6BFA\n0x9ACD\t0x6BFB\n0x9ACE\t0x6BFC\n0x9ACF\t0x6BFE\n0x9AD0\t0x6BFF\n0x9AD1\t0x6C00\n0x9AD2\t0x6C01\n0x9AD3\t0x6C02\n0x9AD4\t0x6C03\n0x9AD5\t0x6C04\n0x9AD6\t0x6C08\n0x9AD7\t0x6C09\n0x9AD8\t0x6C0A\n0x9AD9\t0x6C0B\n0x9ADA\t0x6C0C\n0x9ADB\t0x6C0E\n0x9ADC\t0x6C12\n0x9ADD\t0x6C17\n0x9ADE\t0x6C1C\n0x9ADF\t0x6C1D\n0x9AE0\t0x6C1E\n0x9AE1\t0x6C20\n0x9AE2\t0x6C23\n0x9AE3\t0x6C25\n0x9AE4\t0x6C2B\n0x9AE5\t0x6C2C\n0x9AE6\t0x6C2D\n0x9AE7\t0x6C31\n0x9AE8\t0x6C33\n0x9AE9\t0x6C36\n0x9AEA\t0x6C37\n0x9AEB\t0x6C39\n0x9AEC\t0x6C3A\n0x9AED\t0x6C3B\n0x9AEE\t0x6C3C\n0x9AEF\t0x6C3E\n0x9AF0\t0x6C3F\n0x9AF1\t0x6C43\n0x9AF2\t0x6C44\n0x9AF3\t0x6C45\n0x9AF4\t0x6C48\n0x9AF5\t0x6C4B\n0x9AF6\t0x6C4C\n0x9AF7\t0x6C4D\n0x9AF8\t0x6C4E\n0x9AF9\t0x6C4F\n0x9AFA\t0x6C51\n0x9AFB\t0x6C52\n0x9AFC\t0x6C53\n0x9AFD\t0x6C56\n0x9AFE\t0x6C58\n0x9B40\t0x6C59\n0x9B41\t0x6C5A\n0x9B42\t0x6C62\n0x9B43\t0x6C63\n0x9B44\t0x6C65\n0x9B45\t0x6C66\n0x9B46\t0x6C67\n0x9B47\t0x6C6B\n0x9B48\t0x6C6C\n0x9B49\t0x6C6D\n0x9B4A\t0x6C6E\n0x9B4B\t0x6C6F\n0x9B4C\t0x6C71\n0x9B4D\t0x6C73\n0x9B4E\t0x6C75\n0x9B4F\t0x6C77\n0x9B50\t0x6C78\n0x9B51\t0x6C7A\n0x9B52\t0x6C7B\n0x9B53\t0x6C7C\n0x9B54\t0x6C7F\n0x9B55\t0x6C80\n0x9B56\t0x6C84\n0x9B57\t0x6C87\n0x9B58\t0x6C8A\n0x9B59\t0x6C8B\n0x9B5A\t0x6C8D\n0x9B5B\t0x6C8E\n0x9B5C\t0x6C91\n0x9B5D\t0x6C92\n0x9B5E\t0x6C95\n0x9B5F\t0x6C96\n0x9B60\t0x6C97\n0x9B61\t0x6C98\n0x9B62\t0x6C9A\n0x9B63\t0x6C9C\n0x9B64\t0x6C9D\n0x9B65\t0x6C9E\n0x9B66\t0x6CA0\n0x9B67\t0x6CA2\n0x9B68\t0x6CA8\n0x9B69\t0x6CAC\n0x9B6A\t0x6CAF\n0x9B6B\t0x6CB0\n0x9B6C\t0x6CB4\n0x9B6D\t0x6CB5\n0x9B6E\t0x6CB6\n0x9B6F\t0x6CB7\n0x9B70\t0x6CBA\n0x9B71\t0x6CC0\n0x9B72\t0x6CC1\n0x9B73\t0x6CC2\n0x9B74\t0x6CC3\n0x9B75\t0x6CC6\n0x9B76\t0x6CC7\n0x9B77\t0x6CC8\n0x9B78\t0x6CCB\n0x9B79\t0x6CCD\n0x9B7A\t0x6CCE\n0x9B7B\t0x6CCF\n0x9B7C\t0x6CD1\n0x9B7D\t0x6CD2\n0x9B7E\t0x6CD8\n0x9B80\t0x6CD9\n0x9B81\t0x6CDA\n0x9B82\t0x6CDC\n0x9B83\t0x6CDD\n0x9B84\t0x6CDF\n0x9B85\t0x6CE4\n0x9B86\t0x6CE6\n0x9B87\t0x6CE7\n0x9B88\t0x6CE9\n0x9B89\t0x6CEC\n0x9B8A\t0x6CED\n0x9B8B\t0x6CF2\n0x9B8C\t0x6CF4\n0x9B8D\t0x6CF9\n0x9B8E\t0x6CFF\n0x9B8F\t0x6D00\n0x9B90\t0x6D02\n0x9B91\t0x6D03\n0x9B92\t0x6D05\n0x9B93\t0x6D06\n0x9B94\t0x6D08\n0x9B95\t0x6D09\n0x9B96\t0x6D0A\n0x9B97\t0x6D0D\n0x9B98\t0x6D0F\n0x9B99\t0x6D10\n0x9B9A\t0x6D11\n0x9B9B\t0x6D13\n0x9B9C\t0x6D14\n0x9B9D\t0x6D15\n0x9B9E\t0x6D16\n0x9B9F\t0x6D18\n0x9BA0\t0x6D1C\n0x9BA1\t0x6D1D\n0x9BA2\t0x6D1F\n0x9BA3\t0x6D20\n0x9BA4\t0x6D21\n0x9BA5\t0x6D22\n0x9BA6\t0x6D23\n0x9BA7\t0x6D24\n0x9BA8\t0x6D26\n0x9BA9\t0x6D28\n0x9BAA\t0x6D29\n0x9BAB\t0x6D2C\n0x9BAC\t0x6D2D\n0x9BAD\t0x6D2F\n0x9BAE\t0x6D30\n0x9BAF\t0x6D34\n0x9BB0\t0x6D36\n0x9BB1\t0x6D37\n0x9BB2\t0x6D38\n0x9BB3\t0x6D3A\n0x9BB4\t0x6D3F\n0x9BB5\t0x6D40\n0x9BB6\t0x6D42\n0x9BB7\t0x6D44\n0x9BB8\t0x6D49\n0x9BB9\t0x6D4C\n0x9BBA\t0x6D50\n0x9BBB\t0x6D55\n0x9BBC\t0x6D56\n0x9BBD\t0x6D57\n0x9BBE\t0x6D58\n0x9BBF\t0x6D5B\n0x9BC0\t0x6D5D\n0x9BC1\t0x6D5F\n0x9BC2\t0x6D61\n0x9BC3\t0x6D62\n0x9BC4\t0x6D64\n0x9BC5\t0x6D65\n0x9BC6\t0x6D67\n0x9BC7\t0x6D68\n0x9BC8\t0x6D6B\n0x9BC9\t0x6D6C\n0x9BCA\t0x6D6D\n0x9BCB\t0x6D70\n0x9BCC\t0x6D71\n0x9BCD\t0x6D72\n0x9BCE\t0x6D73\n0x9BCF\t0x6D75\n0x9BD0\t0x6D76\n0x9BD1\t0x6D79\n0x9BD2\t0x6D7A\n0x9BD3\t0x6D7B\n0x9BD4\t0x6D7D\n0x9BD5\t0x6D7E\n0x9BD6\t0x6D7F\n0x9BD7\t0x6D80\n0x9BD8\t0x6D81\n0x9BD9\t0x6D83\n0x9BDA\t0x6D84\n0x9BDB\t0x6D86\n0x9BDC\t0x6D87\n0x9BDD\t0x6D8A\n0x9BDE\t0x6D8B\n0x9BDF\t0x6D8D\n0x9BE0\t0x6D8F\n0x9BE1\t0x6D90\n0x9BE2\t0x6D92\n0x9BE3\t0x6D96\n0x9BE4\t0x6D97\n0x9BE5\t0x6D98\n0x9BE6\t0x6D99\n0x9BE7\t0x6D9A\n0x9BE8\t0x6D9C\n0x9BE9\t0x6DA2\n0x9BEA\t0x6DA5\n0x9BEB\t0x6DAC\n0x9BEC\t0x6DAD\n0x9BED\t0x6DB0\n0x9BEE\t0x6DB1\n0x9BEF\t0x6DB3\n0x9BF0\t0x6DB4\n0x9BF1\t0x6DB6\n0x9BF2\t0x6DB7\n0x9BF3\t0x6DB9\n0x9BF4\t0x6DBA\n0x9BF5\t0x6DBB\n0x9BF6\t0x6DBC\n0x9BF7\t0x6DBD\n0x9BF8\t0x6DBE\n0x9BF9\t0x6DC1\n0x9BFA\t0x6DC2\n0x9BFB\t0x6DC3\n0x9BFC\t0x6DC8\n0x9BFD\t0x6DC9\n0x9BFE\t0x6DCA\n0x9C40\t0x6DCD\n0x9C41\t0x6DCE\n0x9C42\t0x6DCF\n0x9C43\t0x6DD0\n0x9C44\t0x6DD2\n0x9C45\t0x6DD3\n0x9C46\t0x6DD4\n0x9C47\t0x6DD5\n0x9C48\t0x6DD7\n0x9C49\t0x6DDA\n0x9C4A\t0x6DDB\n0x9C4B\t0x6DDC\n0x9C4C\t0x6DDF\n0x9C4D\t0x6DE2\n0x9C4E\t0x6DE3\n0x9C4F\t0x6DE5\n0x9C50\t0x6DE7\n0x9C51\t0x6DE8\n0x9C52\t0x6DE9\n0x9C53\t0x6DEA\n0x9C54\t0x6DED\n0x9C55\t0x6DEF\n0x9C56\t0x6DF0\n0x9C57\t0x6DF2\n0x9C58\t0x6DF4\n0x9C59\t0x6DF5\n0x9C5A\t0x6DF6\n0x9C5B\t0x6DF8\n0x9C5C\t0x6DFA\n0x9C5D\t0x6DFD\n0x9C5E\t0x6DFE\n0x9C5F\t0x6DFF\n0x9C60\t0x6E00\n0x9C61\t0x6E01\n0x9C62\t0x6E02\n0x9C63\t0x6E03\n0x9C64\t0x6E04\n0x9C65\t0x6E06\n0x9C66\t0x6E07\n0x9C67\t0x6E08\n0x9C68\t0x6E09\n0x9C69\t0x6E0B\n0x9C6A\t0x6E0F\n0x9C6B\t0x6E12\n0x9C6C\t0x6E13\n0x9C6D\t0x6E15\n0x9C6E\t0x6E18\n0x9C6F\t0x6E19\n0x9C70\t0x6E1B\n0x9C71\t0x6E1C\n0x9C72\t0x6E1E\n0x9C73\t0x6E1F\n0x9C74\t0x6E22\n0x9C75\t0x6E26\n0x9C76\t0x6E27\n0x9C77\t0x6E28\n0x9C78\t0x6E2A\n0x9C79\t0x6E2C\n0x9C7A\t0x6E2E\n0x9C7B\t0x6E30\n0x9C7C\t0x6E31\n0x9C7D\t0x6E33\n0x9C7E\t0x6E35\n0x9C80\t0x6E36\n0x9C81\t0x6E37\n0x9C82\t0x6E39\n0x9C83\t0x6E3B\n0x9C84\t0x6E3C\n0x9C85\t0x6E3D\n0x9C86\t0x6E3E\n0x9C87\t0x6E3F\n0x9C88\t0x6E40\n0x9C89\t0x6E41\n0x9C8A\t0x6E42\n0x9C8B\t0x6E45\n0x9C8C\t0x6E46\n0x9C8D\t0x6E47\n0x9C8E\t0x6E48\n0x9C8F\t0x6E49\n0x9C90\t0x6E4A\n0x9C91\t0x6E4B\n0x9C92\t0x6E4C\n0x9C93\t0x6E4F\n0x9C94\t0x6E50\n0x9C95\t0x6E51\n0x9C96\t0x6E52\n0x9C97\t0x6E55\n0x9C98\t0x6E57\n0x9C99\t0x6E59\n0x9C9A\t0x6E5A\n0x9C9B\t0x6E5C\n0x9C9C\t0x6E5D\n0x9C9D\t0x6E5E\n0x9C9E\t0x6E60\n0x9C9F\t0x6E61\n0x9CA0\t0x6E62\n0x9CA1\t0x6E63\n0x9CA2\t0x6E64\n0x9CA3\t0x6E65\n0x9CA4\t0x6E66\n0x9CA5\t0x6E67\n0x9CA6\t0x6E68\n0x9CA7\t0x6E69\n0x9CA8\t0x6E6A\n0x9CA9\t0x6E6C\n0x9CAA\t0x6E6D\n0x9CAB\t0x6E6F\n0x9CAC\t0x6E70\n0x9CAD\t0x6E71\n0x9CAE\t0x6E72\n0x9CAF\t0x6E73\n0x9CB0\t0x6E74\n0x9CB1\t0x6E75\n0x9CB2\t0x6E76\n0x9CB3\t0x6E77\n0x9CB4\t0x6E78\n0x9CB5\t0x6E79\n0x9CB6\t0x6E7A\n0x9CB7\t0x6E7B\n0x9CB8\t0x6E7C\n0x9CB9\t0x6E7D\n0x9CBA\t0x6E80\n0x9CBB\t0x6E81\n0x9CBC\t0x6E82\n0x9CBD\t0x6E84\n0x9CBE\t0x6E87\n0x9CBF\t0x6E88\n0x9CC0\t0x6E8A\n0x9CC1\t0x6E8B\n0x9CC2\t0x6E8C\n0x9CC3\t0x6E8D\n0x9CC4\t0x6E8E\n0x9CC5\t0x6E91\n0x9CC6\t0x6E92\n0x9CC7\t0x6E93\n0x9CC8\t0x6E94\n0x9CC9\t0x6E95\n0x9CCA\t0x6E96\n0x9CCB\t0x6E97\n0x9CCC\t0x6E99\n0x9CCD\t0x6E9A\n0x9CCE\t0x6E9B\n0x9CCF\t0x6E9D\n0x9CD0\t0x6E9E\n0x9CD1\t0x6EA0\n0x9CD2\t0x6EA1\n0x9CD3\t0x6EA3\n0x9CD4\t0x6EA4\n0x9CD5\t0x6EA6\n0x9CD6\t0x6EA8\n0x9CD7\t0x6EA9\n0x9CD8\t0x6EAB\n0x9CD9\t0x6EAC\n0x9CDA\t0x6EAD\n0x9CDB\t0x6EAE\n0x9CDC\t0x6EB0\n0x9CDD\t0x6EB3\n0x9CDE\t0x6EB5\n0x9CDF\t0x6EB8\n0x9CE0\t0x6EB9\n0x9CE1\t0x6EBC\n0x9CE2\t0x6EBE\n0x9CE3\t0x6EBF\n0x9CE4\t0x6EC0\n0x9CE5\t0x6EC3\n0x9CE6\t0x6EC4\n0x9CE7\t0x6EC5\n0x9CE8\t0x6EC6\n0x9CE9\t0x6EC8\n0x9CEA\t0x6EC9\n0x9CEB\t0x6ECA\n0x9CEC\t0x6ECC\n0x9CED\t0x6ECD\n0x9CEE\t0x6ECE\n0x9CEF\t0x6ED0\n0x9CF0\t0x6ED2\n0x9CF1\t0x6ED6\n0x9CF2\t0x6ED8\n0x9CF3\t0x6ED9\n0x9CF4\t0x6EDB\n0x9CF5\t0x6EDC\n0x9CF6\t0x6EDD\n0x9CF7\t0x6EE3\n0x9CF8\t0x6EE7\n0x9CF9\t0x6EEA\n0x9CFA\t0x6EEB\n0x9CFB\t0x6EEC\n0x9CFC\t0x6EED\n0x9CFD\t0x6EEE\n0x9CFE\t0x6EEF\n0x9D40\t0x6EF0\n0x9D41\t0x6EF1\n0x9D42\t0x6EF2\n0x9D43\t0x6EF3\n0x9D44\t0x6EF5\n0x9D45\t0x6EF6\n0x9D46\t0x6EF7\n0x9D47\t0x6EF8\n0x9D48\t0x6EFA\n0x9D49\t0x6EFB\n0x9D4A\t0x6EFC\n0x9D4B\t0x6EFD\n0x9D4C\t0x6EFE\n0x9D4D\t0x6EFF\n0x9D4E\t0x6F00\n0x9D4F\t0x6F01\n0x9D50\t0x6F03\n0x9D51\t0x6F04\n0x9D52\t0x6F05\n0x9D53\t0x6F07\n0x9D54\t0x6F08\n0x9D55\t0x6F0A\n0x9D56\t0x6F0B\n0x9D57\t0x6F0C\n0x9D58\t0x6F0D\n0x9D59\t0x6F0E\n0x9D5A\t0x6F10\n0x9D5B\t0x6F11\n0x9D5C\t0x6F12\n0x9D5D\t0x6F16\n0x9D5E\t0x6F17\n0x9D5F\t0x6F18\n0x9D60\t0x6F19\n0x9D61\t0x6F1A\n0x9D62\t0x6F1B\n0x9D63\t0x6F1C\n0x9D64\t0x6F1D\n0x9D65\t0x6F1E\n0x9D66\t0x6F1F\n0x9D67\t0x6F21\n0x9D68\t0x6F22\n0x9D69\t0x6F23\n0x9D6A\t0x6F25\n0x9D6B\t0x6F26\n0x9D6C\t0x6F27\n0x9D6D\t0x6F28\n0x9D6E\t0x6F2C\n0x9D6F\t0x6F2E\n0x9D70\t0x6F30\n0x9D71\t0x6F32\n0x9D72\t0x6F34\n0x9D73\t0x6F35\n0x9D74\t0x6F37\n0x9D75\t0x6F38\n0x9D76\t0x6F39\n0x9D77\t0x6F3A\n0x9D78\t0x6F3B\n0x9D79\t0x6F3C\n0x9D7A\t0x6F3D\n0x9D7B\t0x6F3F\n0x9D7C\t0x6F40\n0x9D7D\t0x6F41\n0x9D7E\t0x6F42\n0x9D80\t0x6F43\n0x9D81\t0x6F44\n0x9D82\t0x6F45\n0x9D83\t0x6F48\n0x9D84\t0x6F49\n0x9D85\t0x6F4A\n0x9D86\t0x6F4C\n0x9D87\t0x6F4E\n0x9D88\t0x6F4F\n0x9D89\t0x6F50\n0x9D8A\t0x6F51\n0x9D8B\t0x6F52\n0x9D8C\t0x6F53\n0x9D8D\t0x6F54\n0x9D8E\t0x6F55\n0x9D8F\t0x6F56\n0x9D90\t0x6F57\n0x9D91\t0x6F59\n0x9D92\t0x6F5A\n0x9D93\t0x6F5B\n0x9D94\t0x6F5D\n0x9D95\t0x6F5F\n0x9D96\t0x6F60\n0x9D97\t0x6F61\n0x9D98\t0x6F63\n0x9D99\t0x6F64\n0x9D9A\t0x6F65\n0x9D9B\t0x6F67\n0x9D9C\t0x6F68\n0x9D9D\t0x6F69\n0x9D9E\t0x6F6A\n0x9D9F\t0x6F6B\n0x9DA0\t0x6F6C\n0x9DA1\t0x6F6F\n0x9DA2\t0x6F70\n0x9DA3\t0x6F71\n0x9DA4\t0x6F73\n0x9DA5\t0x6F75\n0x9DA6\t0x6F76\n0x9DA7\t0x6F77\n0x9DA8\t0x6F79\n0x9DA9\t0x6F7B\n0x9DAA\t0x6F7D\n0x9DAB\t0x6F7E\n0x9DAC\t0x6F7F\n0x9DAD\t0x6F80\n0x9DAE\t0x6F81\n0x9DAF\t0x6F82\n0x9DB0\t0x6F83\n0x9DB1\t0x6F85\n0x9DB2\t0x6F86\n0x9DB3\t0x6F87\n0x9DB4\t0x6F8A\n0x9DB5\t0x6F8B\n0x9DB6\t0x6F8F\n0x9DB7\t0x6F90\n0x9DB8\t0x6F91\n0x9DB9\t0x6F92\n0x9DBA\t0x6F93\n0x9DBB\t0x6F94\n0x9DBC\t0x6F95\n0x9DBD\t0x6F96\n0x9DBE\t0x6F97\n0x9DBF\t0x6F98\n0x9DC0\t0x6F99\n0x9DC1\t0x6F9A\n0x9DC2\t0x6F9B\n0x9DC3\t0x6F9D\n0x9DC4\t0x6F9E\n0x9DC5\t0x6F9F\n0x9DC6\t0x6FA0\n0x9DC7\t0x6FA2\n0x9DC8\t0x6FA3\n0x9DC9\t0x6FA4\n0x9DCA\t0x6FA5\n0x9DCB\t0x6FA6\n0x9DCC\t0x6FA8\n0x9DCD\t0x6FA9\n0x9DCE\t0x6FAA\n0x9DCF\t0x6FAB\n0x9DD0\t0x6FAC\n0x9DD1\t0x6FAD\n0x9DD2\t0x6FAE\n0x9DD3\t0x6FAF\n0x9DD4\t0x6FB0\n0x9DD5\t0x6FB1\n0x9DD6\t0x6FB2\n0x9DD7\t0x6FB4\n0x9DD8\t0x6FB5\n0x9DD9\t0x6FB7\n0x9DDA\t0x6FB8\n0x9DDB\t0x6FBA\n0x9DDC\t0x6FBB\n0x9DDD\t0x6FBC\n0x9DDE\t0x6FBD\n0x9DDF\t0x6FBE\n0x9DE0\t0x6FBF\n0x9DE1\t0x6FC1\n0x9DE2\t0x6FC3\n0x9DE3\t0x6FC4\n0x9DE4\t0x6FC5\n0x9DE5\t0x6FC6\n0x9DE6\t0x6FC7\n0x9DE7\t0x6FC8\n0x9DE8\t0x6FCA\n0x9DE9\t0x6FCB\n0x9DEA\t0x6FCC\n0x9DEB\t0x6FCD\n0x9DEC\t0x6FCE\n0x9DED\t0x6FCF\n0x9DEE\t0x6FD0\n0x9DEF\t0x6FD3\n0x9DF0\t0x6FD4\n0x9DF1\t0x6FD5\n0x9DF2\t0x6FD6\n0x9DF3\t0x6FD7\n0x9DF4\t0x6FD8\n0x9DF5\t0x6FD9\n0x9DF6\t0x6FDA\n0x9DF7\t0x6FDB\n0x9DF8\t0x6FDC\n0x9DF9\t0x6FDD\n0x9DFA\t0x6FDF\n0x9DFB\t0x6FE2\n0x9DFC\t0x6FE3\n0x9DFD\t0x6FE4\n0x9DFE\t0x6FE5\n0x9E40\t0x6FE6\n0x9E41\t0x6FE7\n0x9E42\t0x6FE8\n0x9E43\t0x6FE9\n0x9E44\t0x6FEA\n0x9E45\t0x6FEB\n0x9E46\t0x6FEC\n0x9E47\t0x6FED\n0x9E48\t0x6FF0\n0x9E49\t0x6FF1\n0x9E4A\t0x6FF2\n0x9E4B\t0x6FF3\n0x9E4C\t0x6FF4\n0x9E4D\t0x6FF5\n0x9E4E\t0x6FF6\n0x9E4F\t0x6FF7\n0x9E50\t0x6FF8\n0x9E51\t0x6FF9\n0x9E52\t0x6FFA\n0x9E53\t0x6FFB\n0x9E54\t0x6FFC\n0x9E55\t0x6FFD\n0x9E56\t0x6FFE\n0x9E57\t0x6FFF\n0x9E58\t0x7000\n0x9E59\t0x7001\n0x9E5A\t0x7002\n0x9E5B\t0x7003\n0x9E5C\t0x7004\n0x9E5D\t0x7005\n0x9E5E\t0x7006\n0x9E5F\t0x7007\n0x9E60\t0x7008\n0x9E61\t0x7009\n0x9E62\t0x700A\n0x9E63\t0x700B\n0x9E64\t0x700C\n0x9E65\t0x700D\n0x9E66\t0x700E\n0x9E67\t0x700F\n0x9E68\t0x7010\n0x9E69\t0x7012\n0x9E6A\t0x7013\n0x9E6B\t0x7014\n0x9E6C\t0x7015\n0x9E6D\t0x7016\n0x9E6E\t0x7017\n0x9E6F\t0x7018\n0x9E70\t0x7019\n0x9E71\t0x701C\n0x9E72\t0x701D\n0x9E73\t0x701E\n0x9E74\t0x701F\n0x9E75\t0x7020\n0x9E76\t0x7021\n0x9E77\t0x7022\n0x9E78\t0x7024\n0x9E79\t0x7025\n0x9E7A\t0x7026\n0x9E7B\t0x7027\n0x9E7C\t0x7028\n0x9E7D\t0x7029\n0x9E7E\t0x702A\n0x9E80\t0x702B\n0x9E81\t0x702C\n0x9E82\t0x702D\n0x9E83\t0x702E\n0x9E84\t0x702F\n0x9E85\t0x7030\n0x9E86\t0x7031\n0x9E87\t0x7032\n0x9E88\t0x7033\n0x9E89\t0x7034\n0x9E8A\t0x7036\n0x9E8B\t0x7037\n0x9E8C\t0x7038\n0x9E8D\t0x703A\n0x9E8E\t0x703B\n0x9E8F\t0x703C\n0x9E90\t0x703D\n0x9E91\t0x703E\n0x9E92\t0x703F\n0x9E93\t0x7040\n0x9E94\t0x7041\n0x9E95\t0x7042\n0x9E96\t0x7043\n0x9E97\t0x7044\n0x9E98\t0x7045\n0x9E99\t0x7046\n0x9E9A\t0x7047\n0x9E9B\t0x7048\n0x9E9C\t0x7049\n0x9E9D\t0x704A\n0x9E9E\t0x704B\n0x9E9F\t0x704D\n0x9EA0\t0x704E\n0x9EA1\t0x7050\n0x9EA2\t0x7051\n0x9EA3\t0x7052\n0x9EA4\t0x7053\n0x9EA5\t0x7054\n0x9EA6\t0x7055\n0x9EA7\t0x7056\n0x9EA8\t0x7057\n0x9EA9\t0x7058\n0x9EAA\t0x7059\n0x9EAB\t0x705A\n0x9EAC\t0x705B\n0x9EAD\t0x705C\n0x9EAE\t0x705D\n0x9EAF\t0x705F\n0x9EB0\t0x7060\n0x9EB1\t0x7061\n0x9EB2\t0x7062\n0x9EB3\t0x7063\n0x9EB4\t0x7064\n0x9EB5\t0x7065\n0x9EB6\t0x7066\n0x9EB7\t0x7067\n0x9EB8\t0x7068\n0x9EB9\t0x7069\n0x9EBA\t0x706A\n0x9EBB\t0x706E\n0x9EBC\t0x7071\n0x9EBD\t0x7072\n0x9EBE\t0x7073\n0x9EBF\t0x7074\n0x9EC0\t0x7077\n0x9EC1\t0x7079\n0x9EC2\t0x707A\n0x9EC3\t0x707B\n0x9EC4\t0x707D\n0x9EC5\t0x7081\n0x9EC6\t0x7082\n0x9EC7\t0x7083\n0x9EC8\t0x7084\n0x9EC9\t0x7086\n0x9ECA\t0x7087\n0x9ECB\t0x7088\n0x9ECC\t0x708B\n0x9ECD\t0x708C\n0x9ECE\t0x708D\n0x9ECF\t0x708F\n0x9ED0\t0x7090\n0x9ED1\t0x7091\n0x9ED2\t0x7093\n0x9ED3\t0x7097\n0x9ED4\t0x7098\n0x9ED5\t0x709A\n0x9ED6\t0x709B\n0x9ED7\t0x709E\n0x9ED8\t0x709F\n0x9ED9\t0x70A0\n0x9EDA\t0x70A1\n0x9EDB\t0x70A2\n0x9EDC\t0x70A3\n0x9EDD\t0x70A4\n0x9EDE\t0x70A5\n0x9EDF\t0x70A6\n0x9EE0\t0x70A7\n0x9EE1\t0x70A8\n0x9EE2\t0x70A9\n0x9EE3\t0x70AA\n0x9EE4\t0x70B0\n0x9EE5\t0x70B2\n0x9EE6\t0x70B4\n0x9EE7\t0x70B5\n0x9EE8\t0x70B6\n0x9EE9\t0x70BA\n0x9EEA\t0x70BE\n0x9EEB\t0x70BF\n0x9EEC\t0x70C4\n0x9EED\t0x70C5\n0x9EEE\t0x70C6\n0x9EEF\t0x70C7\n0x9EF0\t0x70C9\n0x9EF1\t0x70CB\n0x9EF2\t0x70CC\n0x9EF3\t0x70CD\n0x9EF4\t0x70CE\n0x9EF5\t0x70CF\n0x9EF6\t0x70D0\n0x9EF7\t0x70D1\n0x9EF8\t0x70D2\n0x9EF9\t0x70D3\n0x9EFA\t0x70D4\n0x9EFB\t0x70D5\n0x9EFC\t0x70D6\n0x9EFD\t0x70D7\n0x9EFE\t0x70DA\n0x9F40\t0x70DC\n0x9F41\t0x70DD\n0x9F42\t0x70DE\n0x9F43\t0x70E0\n0x9F44\t0x70E1\n0x9F45\t0x70E2\n0x9F46\t0x70E3\n0x9F47\t0x70E5\n0x9F48\t0x70EA\n0x9F49\t0x70EE\n0x9F4A\t0x70F0\n0x9F4B\t0x70F1\n0x9F4C\t0x70F2\n0x9F4D\t0x70F3\n0x9F4E\t0x70F4\n0x9F4F\t0x70F5\n0x9F50\t0x70F6\n0x9F51\t0x70F8\n0x9F52\t0x70FA\n0x9F53\t0x70FB\n0x9F54\t0x70FC\n0x9F55\t0x70FE\n0x9F56\t0x70FF\n0x9F57\t0x7100\n0x9F58\t0x7101\n0x9F59\t0x7102\n0x9F5A\t0x7103\n0x9F5B\t0x7104\n0x9F5C\t0x7105\n0x9F5D\t0x7106\n0x9F5E\t0x7107\n0x9F5F\t0x7108\n0x9F60\t0x710B\n0x9F61\t0x710C\n0x9F62\t0x710D\n0x9F63\t0x710E\n0x9F64\t0x710F\n0x9F65\t0x7111\n0x9F66\t0x7112\n0x9F67\t0x7114\n0x9F68\t0x7117\n0x9F69\t0x711B\n0x9F6A\t0x711C\n0x9F6B\t0x711D\n0x9F6C\t0x711E\n0x9F6D\t0x711F\n0x9F6E\t0x7120\n0x9F6F\t0x7121\n0x9F70\t0x7122\n0x9F71\t0x7123\n0x9F72\t0x7124\n0x9F73\t0x7125\n0x9F74\t0x7127\n0x9F75\t0x7128\n0x9F76\t0x7129\n0x9F77\t0x712A\n0x9F78\t0x712B\n0x9F79\t0x712C\n0x9F7A\t0x712D\n0x9F7B\t0x712E\n0x9F7C\t0x7132\n0x9F7D\t0x7133\n0x9F7E\t0x7134\n0x9F80\t0x7135\n0x9F81\t0x7137\n0x9F82\t0x7138\n0x9F83\t0x7139\n0x9F84\t0x713A\n0x9F85\t0x713B\n0x9F86\t0x713C\n0x9F87\t0x713D\n0x9F88\t0x713E\n0x9F89\t0x713F\n0x9F8A\t0x7140\n0x9F8B\t0x7141\n0x9F8C\t0x7142\n0x9F8D\t0x7143\n0x9F8E\t0x7144\n0x9F8F\t0x7146\n0x9F90\t0x7147\n0x9F91\t0x7148\n0x9F92\t0x7149\n0x9F93\t0x714B\n0x9F94\t0x714D\n0x9F95\t0x714F\n0x9F96\t0x7150\n0x9F97\t0x7151\n0x9F98\t0x7152\n0x9F99\t0x7153\n0x9F9A\t0x7154\n0x9F9B\t0x7155\n0x9F9C\t0x7156\n0x9F9D\t0x7157\n0x9F9E\t0x7158\n0x9F9F\t0x7159\n0x9FA0\t0x715A\n0x9FA1\t0x715B\n0x9FA2\t0x715D\n0x9FA3\t0x715F\n0x9FA4\t0x7160\n0x9FA5\t0x7161\n0x9FA6\t0x7162\n0x9FA7\t0x7163\n0x9FA8\t0x7165\n0x9FA9\t0x7169\n0x9FAA\t0x716A\n0x9FAB\t0x716B\n0x9FAC\t0x716C\n0x9FAD\t0x716D\n0x9FAE\t0x716F\n0x9FAF\t0x7170\n0x9FB0\t0x7171\n0x9FB1\t0x7174\n0x9FB2\t0x7175\n0x9FB3\t0x7176\n0x9FB4\t0x7177\n0x9FB5\t0x7179\n0x9FB6\t0x717B\n0x9FB7\t0x717C\n0x9FB8\t0x717E\n0x9FB9\t0x717F\n0x9FBA\t0x7180\n0x9FBB\t0x7181\n0x9FBC\t0x7182\n0x9FBD\t0x7183\n0x9FBE\t0x7185\n0x9FBF\t0x7186\n0x9FC0\t0x7187\n0x9FC1\t0x7188\n0x9FC2\t0x7189\n0x9FC3\t0x718B\n0x9FC4\t0x718C\n0x9FC5\t0x718D\n0x9FC6\t0x718E\n0x9FC7\t0x7190\n0x9FC8\t0x7191\n0x9FC9\t0x7192\n0x9FCA\t0x7193\n0x9FCB\t0x7195\n0x9FCC\t0x7196\n0x9FCD\t0x7197\n0x9FCE\t0x719A\n0x9FCF\t0x719B\n0x9FD0\t0x719C\n0x9FD1\t0x719D\n0x9FD2\t0x719E\n0x9FD3\t0x71A1\n0x9FD4\t0x71A2\n0x9FD5\t0x71A3\n0x9FD6\t0x71A4\n0x9FD7\t0x71A5\n0x9FD8\t0x71A6\n0x9FD9\t0x71A7\n0x9FDA\t0x71A9\n0x9FDB\t0x71AA\n0x9FDC\t0x71AB\n0x9FDD\t0x71AD\n0x9FDE\t0x71AE\n0x9FDF\t0x71AF\n0x9FE0\t0x71B0\n0x9FE1\t0x71B1\n0x9FE2\t0x71B2\n0x9FE3\t0x71B4\n0x9FE4\t0x71B6\n0x9FE5\t0x71B7\n0x9FE6\t0x71B8\n0x9FE7\t0x71BA\n0x9FE8\t0x71BB\n0x9FE9\t0x71BC\n0x9FEA\t0x71BD\n0x9FEB\t0x71BE\n0x9FEC\t0x71BF\n0x9FED\t0x71C0\n0x9FEE\t0x71C1\n0x9FEF\t0x71C2\n0x9FF0\t0x71C4\n0x9FF1\t0x71C5\n0x9FF2\t0x71C6\n0x9FF3\t0x71C7\n0x9FF4\t0x71C8\n0x9FF5\t0x71C9\n0x9FF6\t0x71CA\n0x9FF7\t0x71CB\n0x9FF8\t0x71CC\n0x9FF9\t0x71CD\n0x9FFA\t0x71CF\n0x9FFB\t0x71D0\n0x9FFC\t0x71D1\n0x9FFD\t0x71D2\n0x9FFE\t0x71D3\n0xA040\t0x71D6\n0xA041\t0x71D7\n0xA042\t0x71D8\n0xA043\t0x71D9\n0xA044\t0x71DA\n0xA045\t0x71DB\n0xA046\t0x71DC\n0xA047\t0x71DD\n0xA048\t0x71DE\n0xA049\t0x71DF\n0xA04A\t0x71E1\n0xA04B\t0x71E2\n0xA04C\t0x71E3\n0xA04D\t0x71E4\n0xA04E\t0x71E6\n0xA04F\t0x71E8\n0xA050\t0x71E9\n0xA051\t0x71EA\n0xA052\t0x71EB\n0xA053\t0x71EC\n0xA054\t0x71ED\n0xA055\t0x71EF\n0xA056\t0x71F0\n0xA057\t0x71F1\n0xA058\t0x71F2\n0xA059\t0x71F3\n0xA05A\t0x71F4\n0xA05B\t0x71F5\n0xA05C\t0x71F6\n0xA05D\t0x71F7\n0xA05E\t0x71F8\n0xA05F\t0x71FA\n0xA060\t0x71FB\n0xA061\t0x71FC\n0xA062\t0x71FD\n0xA063\t0x71FE\n0xA064\t0x71FF\n0xA065\t0x7200\n0xA066\t0x7201\n0xA067\t0x7202\n0xA068\t0x7203\n0xA069\t0x7204\n0xA06A\t0x7205\n0xA06B\t0x7207\n0xA06C\t0x7208\n0xA06D\t0x7209\n0xA06E\t0x720A\n0xA06F\t0x720B\n0xA070\t0x720C\n0xA071\t0x720D\n0xA072\t0x720E\n0xA073\t0x720F\n0xA074\t0x7210\n0xA075\t0x7211\n0xA076\t0x7212\n0xA077\t0x7213\n0xA078\t0x7214\n0xA079\t0x7215\n0xA07A\t0x7216\n0xA07B\t0x7217\n0xA07C\t0x7218\n0xA07D\t0x7219\n0xA07E\t0x721A\n0xA080\t0x721B\n0xA081\t0x721C\n0xA082\t0x721E\n0xA083\t0x721F\n0xA084\t0x7220\n0xA085\t0x7221\n0xA086\t0x7222\n0xA087\t0x7223\n0xA088\t0x7224\n0xA089\t0x7225\n0xA08A\t0x7226\n0xA08B\t0x7227\n0xA08C\t0x7229\n0xA08D\t0x722B\n0xA08E\t0x722D\n0xA08F\t0x722E\n0xA090\t0x722F\n0xA091\t0x7232\n0xA092\t0x7233\n0xA093\t0x7234\n0xA094\t0x723A\n0xA095\t0x723C\n0xA096\t0x723E\n0xA097\t0x7240\n0xA098\t0x7241\n0xA099\t0x7242\n0xA09A\t0x7243\n0xA09B\t0x7244\n0xA09C\t0x7245\n0xA09D\t0x7246\n0xA09E\t0x7249\n0xA09F\t0x724A\n0xA0A0\t0x724B\n0xA0A1\t0x724E\n0xA0A2\t0x724F\n0xA0A3\t0x7250\n0xA0A4\t0x7251\n0xA0A5\t0x7253\n0xA0A6\t0x7254\n0xA0A7\t0x7255\n0xA0A8\t0x7257\n0xA0A9\t0x7258\n0xA0AA\t0x725A\n0xA0AB\t0x725C\n0xA0AC\t0x725E\n0xA0AD\t0x7260\n0xA0AE\t0x7263\n0xA0AF\t0x7264\n0xA0B0\t0x7265\n0xA0B1\t0x7268\n0xA0B2\t0x726A\n0xA0B3\t0x726B\n0xA0B4\t0x726C\n0xA0B5\t0x726D\n0xA0B6\t0x7270\n0xA0B7\t0x7271\n0xA0B8\t0x7273\n0xA0B9\t0x7274\n0xA0BA\t0x7276\n0xA0BB\t0x7277\n0xA0BC\t0x7278\n0xA0BD\t0x727B\n0xA0BE\t0x727C\n0xA0BF\t0x727D\n0xA0C0\t0x7282\n0xA0C1\t0x7283\n0xA0C2\t0x7285\n0xA0C3\t0x7286\n0xA0C4\t0x7287\n0xA0C5\t0x7288\n0xA0C6\t0x7289\n0xA0C7\t0x728C\n0xA0C8\t0x728E\n0xA0C9\t0x7290\n0xA0CA\t0x7291\n0xA0CB\t0x7293\n0xA0CC\t0x7294\n0xA0CD\t0x7295\n0xA0CE\t0x7296\n0xA0CF\t0x7297\n0xA0D0\t0x7298\n0xA0D1\t0x7299\n0xA0D2\t0x729A\n0xA0D3\t0x729B\n0xA0D4\t0x729C\n0xA0D5\t0x729D\n0xA0D6\t0x729E\n0xA0D7\t0x72A0\n0xA0D8\t0x72A1\n0xA0D9\t0x72A2\n0xA0DA\t0x72A3\n0xA0DB\t0x72A4\n0xA0DC\t0x72A5\n0xA0DD\t0x72A6\n0xA0DE\t0x72A7\n0xA0DF\t0x72A8\n0xA0E0\t0x72A9\n0xA0E1\t0x72AA\n0xA0E2\t0x72AB\n0xA0E3\t0x72AE\n0xA0E4\t0x72B1\n0xA0E5\t0x72B2\n0xA0E6\t0x72B3\n0xA0E7\t0x72B5\n0xA0E8\t0x72BA\n0xA0E9\t0x72BB\n0xA0EA\t0x72BC\n0xA0EB\t0x72BD\n0xA0EC\t0x72BE\n0xA0ED\t0x72BF\n0xA0EE\t0x72C0\n0xA0EF\t0x72C5\n0xA0F0\t0x72C6\n0xA0F1\t0x72C7\n0xA0F2\t0x72C9\n0xA0F3\t0x72CA\n0xA0F4\t0x72CB\n0xA0F5\t0x72CC\n0xA0F6\t0x72CF\n0xA0F7\t0x72D1\n0xA0F8\t0x72D3\n0xA0F9\t0x72D4\n0xA0FA\t0x72D5\n0xA0FB\t0x72D6\n0xA0FC\t0x72D8\n0xA0FD\t0x72DA\n0xA0FE\t0x72DB\n0xA140\t0xE4C6\n0xA141\t0xE4C7\n0xA142\t0xE4C8\n0xA143\t0xE4C9\n0xA144\t0xE4CA\n0xA145\t0xE4CB\n0xA146\t0xE4CC\n0xA147\t0xE4CD\n0xA148\t0xE4CE\n0xA149\t0xE4CF\n0xA14A\t0xE4D0\n0xA14B\t0xE4D1\n0xA14C\t0xE4D2\n0xA14D\t0xE4D3\n0xA14E\t0xE4D4\n0xA14F\t0xE4D5\n0xA150\t0xE4D6\n0xA151\t0xE4D7\n0xA152\t0xE4D8\n0xA153\t0xE4D9\n0xA154\t0xE4DA\n0xA155\t0xE4DB\n0xA156\t0xE4DC\n0xA157\t0xE4DD\n0xA158\t0xE4DE\n0xA159\t0xE4DF\n0xA15A\t0xE4E0\n0xA15B\t0xE4E1\n0xA15C\t0xE4E2\n0xA15D\t0xE4E3\n0xA15E\t0xE4E4\n0xA15F\t0xE4E5\n0xA160\t0xE4E6\n0xA161\t0xE4E7\n0xA162\t0xE4E8\n0xA163\t0xE4E9\n0xA164\t0xE4EA\n0xA165\t0xE4EB\n0xA166\t0xE4EC\n0xA167\t0xE4ED\n0xA168\t0xE4EE\n0xA169\t0xE4EF\n0xA16A\t0xE4F0\n0xA16B\t0xE4F1\n0xA16C\t0xE4F2\n0xA16D\t0xE4F3\n0xA16E\t0xE4F4\n0xA16F\t0xE4F5\n0xA170\t0xE4F6\n0xA171\t0xE4F7\n0xA172\t0xE4F8\n0xA173\t0xE4F9\n0xA174\t0xE4FA\n0xA175\t0xE4FB\n0xA176\t0xE4FC\n0xA177\t0xE4FD\n0xA178\t0xE4FE\n0xA179\t0xE4FF\n0xA17A\t0xE500\n0xA17B\t0xE501\n0xA17C\t0xE502\n0xA17D\t0xE503\n0xA17E\t0xE504\n0xA180\t0xE505\n0xA181\t0xE506\n0xA182\t0xE507\n0xA183\t0xE508\n0xA184\t0xE509\n0xA185\t0xE50A\n0xA186\t0xE50B\n0xA187\t0xE50C\n0xA188\t0xE50D\n0xA189\t0xE50E\n0xA18A\t0xE50F\n0xA18B\t0xE510\n0xA18C\t0xE511\n0xA18D\t0xE512\n0xA18E\t0xE513\n0xA18F\t0xE514\n0xA190\t0xE515\n0xA191\t0xE516\n0xA192\t0xE517\n0xA193\t0xE518\n0xA194\t0xE519\n0xA195\t0xE51A\n0xA196\t0xE51B\n0xA197\t0xE51C\n0xA198\t0xE51D\n0xA199\t0xE51E\n0xA19A\t0xE51F\n0xA19B\t0xE520\n0xA19C\t0xE521\n0xA19D\t0xE522\n0xA19E\t0xE523\n0xA19F\t0xE524\n0xA1A0\t0xE525\n0xA1A1\t0x3000\n0xA1A2\t0x3001\n0xA1A3\t0x3002\n0xA1A4\t0x00B7\n0xA1A5\t0x02C9\n0xA1A6\t0x02C7\n0xA1A7\t0x00A8\n0xA1A8\t0x3003\n0xA1A9\t0x3005\n0xA1AA\t0x2014\n0xA1AB\t0xFF5E\n0xA1AC\t0x2016\n0xA1AD\t0x2026\n0xA1AE\t0x2018\n0xA1AF\t0x2019\n0xA1B0\t0x201C\n0xA1B1\t0x201D\n0xA1B2\t0x3014\n0xA1B3\t0x3015\n0xA1B4\t0x3008\n0xA1B5\t0x3009\n0xA1B6\t0x300A\n0xA1B7\t0x300B\n0xA1B8\t0x300C\n0xA1B9\t0x300D\n0xA1BA\t0x300E\n0xA1BB\t0x300F\n0xA1BC\t0x3016\n0xA1BD\t0x3017\n0xA1BE\t0x3010\n0xA1BF\t0x3011\n0xA1C0\t0x00B1\n0xA1C1\t0x00D7\n0xA1C2\t0x00F7\n0xA1C3\t0x2236\n0xA1C4\t0x2227\n0xA1C5\t0x2228\n0xA1C6\t0x2211\n0xA1C7\t0x220F\n0xA1C8\t0x222A\n0xA1C9\t0x2229\n0xA1CA\t0x2208\n0xA1CB\t0x2237\n0xA1CC\t0x221A\n0xA1CD\t0x22A5\n0xA1CE\t0x2225\n0xA1CF\t0x2220\n0xA1D0\t0x2312\n0xA1D1\t0x2299\n0xA1D2\t0x222B\n0xA1D3\t0x222E\n0xA1D4\t0x2261\n0xA1D5\t0x224C\n0xA1D6\t0x2248\n0xA1D7\t0x223D\n0xA1D8\t0x221D\n0xA1D9\t0x2260\n0xA1DA\t0x226E\n0xA1DB\t0x226F\n0xA1DC\t0x2264\n0xA1DD\t0x2265\n0xA1DE\t0x221E\n0xA1DF\t0x2235\n0xA1E0\t0x2234\n0xA1E1\t0x2642\n0xA1E2\t0x2640\n0xA1E3\t0x00B0\n0xA1E4\t0x2032\n0xA1E5\t0x2033\n0xA1E6\t0x2103\n0xA1E7\t0xFF04\n0xA1E8\t0x00A4\n0xA1E9\t0xFFE0\n0xA1EA\t0xFFE1\n0xA1EB\t0x2030\n0xA1EC\t0x00A7\n0xA1ED\t0x2116\n0xA1EE\t0x2606\n0xA1EF\t0x2605\n0xA1F0\t0x25CB\n0xA1F1\t0x25CF\n0xA1F2\t0x25CE\n0xA1F3\t0x25C7\n0xA1F4\t0x25C6\n0xA1F5\t0x25A1\n0xA1F6\t0x25A0\n0xA1F7\t0x25B3\n0xA1F8\t0x25B2\n0xA1F9\t0x203B\n0xA1FA\t0x2192\n0xA1FB\t0x2190\n0xA1FC\t0x2191\n0xA1FD\t0x2193\n0xA1FE\t0x3013\n0xA240\t0xE526\n0xA241\t0xE527\n0xA242\t0xE528\n0xA243\t0xE529\n0xA244\t0xE52A\n0xA245\t0xE52B\n0xA246\t0xE52C\n0xA247\t0xE52D\n0xA248\t0xE52E\n0xA249\t0xE52F\n0xA24A\t0xE530\n0xA24B\t0xE531\n0xA24C\t0xE532\n0xA24D\t0xE533\n0xA24E\t0xE534\n0xA24F\t0xE535\n0xA250\t0xE536\n0xA251\t0xE537\n0xA252\t0xE538\n0xA253\t0xE539\n0xA254\t0xE53A\n0xA255\t0xE53B\n0xA256\t0xE53C\n0xA257\t0xE53D\n0xA258\t0xE53E\n0xA259\t0xE53F\n0xA25A\t0xE540\n0xA25B\t0xE541\n0xA25C\t0xE542\n0xA25D\t0xE543\n0xA25E\t0xE544\n0xA25F\t0xE545\n0xA260\t0xE546\n0xA261\t0xE547\n0xA262\t0xE548\n0xA263\t0xE549\n0xA264\t0xE54A\n0xA265\t0xE54B\n0xA266\t0xE54C\n0xA267\t0xE54D\n0xA268\t0xE54E\n0xA269\t0xE54F\n0xA26A\t0xE550\n0xA26B\t0xE551\n0xA26C\t0xE552\n0xA26D\t0xE553\n0xA26E\t0xE554\n0xA26F\t0xE555\n0xA270\t0xE556\n0xA271\t0xE557\n0xA272\t0xE558\n0xA273\t0xE559\n0xA274\t0xE55A\n0xA275\t0xE55B\n0xA276\t0xE55C\n0xA277\t0xE55D\n0xA278\t0xE55E\n0xA279\t0xE55F\n0xA27A\t0xE560\n0xA27B\t0xE561\n0xA27C\t0xE562\n0xA27D\t0xE563\n0xA27E\t0xE564\n0xA280\t0xE565\n0xA281\t0xE566\n0xA282\t0xE567\n0xA283\t0xE568\n0xA284\t0xE569\n0xA285\t0xE56A\n0xA286\t0xE56B\n0xA287\t0xE56C\n0xA288\t0xE56D\n0xA289\t0xE56E\n0xA28A\t0xE56F\n0xA28B\t0xE570\n0xA28C\t0xE571\n0xA28D\t0xE572\n0xA28E\t0xE573\n0xA28F\t0xE574\n0xA290\t0xE575\n0xA291\t0xE576\n0xA292\t0xE577\n0xA293\t0xE578\n0xA294\t0xE579\n0xA295\t0xE57A\n0xA296\t0xE57B\n0xA297\t0xE57C\n0xA298\t0xE57D\n0xA299\t0xE57E\n0xA29A\t0xE57F\n0xA29B\t0xE580\n0xA29C\t0xE581\n0xA29D\t0xE582\n0xA29E\t0xE583\n0xA29F\t0xE584\n0xA2A0\t0xE585\n0xA2A1\t0x2170\n0xA2A2\t0x2171\n0xA2A3\t0x2172\n0xA2A4\t0x2173\n0xA2A5\t0x2174\n0xA2A6\t0x2175\n0xA2A7\t0x2176\n0xA2A8\t0x2177\n0xA2A9\t0x2178\n0xA2AA\t0x2179\n0xA2B1\t0x2488\n0xA2B2\t0x2489\n0xA2B3\t0x248A\n0xA2B4\t0x248B\n0xA2B5\t0x248C\n0xA2B6\t0x248D\n0xA2B7\t0x248E\n0xA2B8\t0x248F\n0xA2B9\t0x2490\n0xA2BA\t0x2491\n0xA2BB\t0x2492\n0xA2BC\t0x2493\n0xA2BD\t0x2494\n0xA2BE\t0x2495\n0xA2BF\t0x2496\n0xA2C0\t0x2497\n0xA2C1\t0x2498\n0xA2C2\t0x2499\n0xA2C3\t0x249A\n0xA2C4\t0x249B\n0xA2C5\t0x2474\n0xA2C6\t0x2475\n0xA2C7\t0x2476\n0xA2C8\t0x2477\n0xA2C9\t0x2478\n0xA2CA\t0x2479\n0xA2CB\t0x247A\n0xA2CC\t0x247B\n0xA2CD\t0x247C\n0xA2CE\t0x247D\n0xA2CF\t0x247E\n0xA2D0\t0x247F\n0xA2D1\t0x2480\n0xA2D2\t0x2481\n0xA2D3\t0x2482\n0xA2D4\t0x2483\n0xA2D5\t0x2484\n0xA2D6\t0x2485\n0xA2D7\t0x2486\n0xA2D8\t0x2487\n0xA2D9\t0x2460\n0xA2DA\t0x2461\n0xA2DB\t0x2462\n0xA2DC\t0x2463\n0xA2DD\t0x2464\n0xA2DE\t0x2465\n0xA2DF\t0x2466\n0xA2E0\t0x2467\n0xA2E1\t0x2468\n0xA2E2\t0x2469\n0xA2E5\t0x3220\n0xA2E6\t0x3221\n0xA2E7\t0x3222\n0xA2E8\t0x3223\n0xA2E9\t0x3224\n0xA2EA\t0x3225\n0xA2EB\t0x3226\n0xA2EC\t0x3227\n0xA2ED\t0x3228\n0xA2EE\t0x3229\n0xA2F1\t0x2160\n0xA2F2\t0x2161\n0xA2F3\t0x2162\n0xA2F4\t0x2163\n0xA2F5\t0x2164\n0xA2F6\t0x2165\n0xA2F7\t0x2166\n0xA2F8\t0x2167\n0xA2F9\t0x2168\n0xA2FA\t0x2169\n0xA2FB\t0x216A\n0xA2FC\t0x216B\n0xA3A1\t0xFF01\n0xA3A2\t0xFF02\n0xA3A3\t0xFF03\n0xA3A4\t0xFFE5\n0xA3A5\t0xFF05\n0xA3A6\t0xFF06\n0xA3A7\t0xFF07\n0xA3A8\t0xFF08\n0xA3A9\t0xFF09\n0xA3AA\t0xFF0A\n0xA3AB\t0xFF0B\n0xA3AC\t0xFF0C\n0xA3AD\t0xFF0D\n0xA3AE\t0xFF0E\n0xA3AF\t0xFF0F\n0xA3B0\t0xFF10\n0xA3B1\t0xFF11\n0xA3B2\t0xFF12\n0xA3B3\t0xFF13\n0xA3B4\t0xFF14\n0xA3B5\t0xFF15\n0xA3B6\t0xFF16\n0xA3B7\t0xFF17\n0xA3B8\t0xFF18\n0xA3B9\t0xFF19\n0xA3BA\t0xFF1A\n0xA3BB\t0xFF1B\n0xA3BC\t0xFF1C\n0xA3BD\t0xFF1D\n0xA3BE\t0xFF1E\n0xA3BF\t0xFF1F\n0xA3C0\t0xFF20\n0xA3C1\t0xFF21\n0xA3C2\t0xFF22\n0xA3C3\t0xFF23\n0xA3C4\t0xFF24\n0xA3C5\t0xFF25\n0xA3C6\t0xFF26\n0xA3C7\t0xFF27\n0xA3C8\t0xFF28\n0xA3C9\t0xFF29\n0xA3CA\t0xFF2A\n0xA3CB\t0xFF2B\n0xA3CC\t0xFF2C\n0xA3CD\t0xFF2D\n0xA3CE\t0xFF2E\n0xA3CF\t0xFF2F\n0xA3D0\t0xFF30\n0xA3D1\t0xFF31\n0xA3D2\t0xFF32\n0xA3D3\t0xFF33\n0xA3D4\t0xFF34\n0xA3D5\t0xFF35\n0xA3D6\t0xFF36\n0xA3D7\t0xFF37\n0xA3D8\t0xFF38\n0xA3D9\t0xFF39\n0xA3DA\t0xFF3A\n0xA3DB\t0xFF3B\n0xA3DC\t0xFF3C\n0xA3DD\t0xFF3D\n0xA3DE\t0xFF3E\n0xA3DF\t0xFF3F\n0xA3E0\t0xFF40\n0xA3E1\t0xFF41\n0xA3E2\t0xFF42\n0xA3E3\t0xFF43\n0xA3E4\t0xFF44\n0xA3E5\t0xFF45\n0xA3E6\t0xFF46\n0xA3E7\t0xFF47\n0xA3E8\t0xFF48\n0xA3E9\t0xFF49\n0xA3EA\t0xFF4A\n0xA3EB\t0xFF4B\n0xA3EC\t0xFF4C\n0xA3ED\t0xFF4D\n0xA3EE\t0xFF4E\n0xA3EF\t0xFF4F\n0xA3F0\t0xFF50\n0xA3F1\t0xFF51\n0xA3F2\t0xFF52\n0xA3F3\t0xFF53\n0xA3F4\t0xFF54\n0xA3F5\t0xFF55\n0xA3F6\t0xFF56\n0xA3F7\t0xFF57\n0xA3F8\t0xFF58\n0xA3F9\t0xFF59\n0xA3FA\t0xFF5A\n0xA3FB\t0xFF5B\n0xA3FC\t0xFF5C\n0xA3FD\t0xFF5D\n0xA3FE\t0xFFE3\n0xA4A1\t0x3041\n0xA4A2\t0x3042\n0xA4A3\t0x3043\n0xA4A4\t0x3044\n0xA4A5\t0x3045\n0xA4A6\t0x3046\n0xA4A7\t0x3047\n0xA4A8\t0x3048\n0xA4A9\t0x3049\n0xA4AA\t0x304A\n0xA4AB\t0x304B\n0xA4AC\t0x304C\n0xA4AD\t0x304D\n0xA4AE\t0x304E\n0xA4AF\t0x304F\n0xA4B0\t0x3050\n0xA4B1\t0x3051\n0xA4B2\t0x3052\n0xA4B3\t0x3053\n0xA4B4\t0x3054\n0xA4B5\t0x3055\n0xA4B6\t0x3056\n0xA4B7\t0x3057\n0xA4B8\t0x3058\n0xA4B9\t0x3059\n0xA4BA\t0x305A\n0xA4BB\t0x305B\n0xA4BC\t0x305C\n0xA4BD\t0x305D\n0xA4BE\t0x305E\n0xA4BF\t0x305F\n0xA4C0\t0x3060\n0xA4C1\t0x3061\n0xA4C2\t0x3062\n0xA4C3\t0x3063\n0xA4C4\t0x3064\n0xA4C5\t0x3065\n0xA4C6\t0x3066\n0xA4C7\t0x3067\n0xA4C8\t0x3068\n0xA4C9\t0x3069\n0xA4CA\t0x306A\n0xA4CB\t0x306B\n0xA4CC\t0x306C\n0xA4CD\t0x306D\n0xA4CE\t0x306E\n0xA4CF\t0x306F\n0xA4D0\t0x3070\n0xA4D1\t0x3071\n0xA4D2\t0x3072\n0xA4D3\t0x3073\n0xA4D4\t0x3074\n0xA4D5\t0x3075\n0xA4D6\t0x3076\n0xA4D7\t0x3077\n0xA4D8\t0x3078\n0xA4D9\t0x3079\n0xA4DA\t0x307A\n0xA4DB\t0x307B\n0xA4DC\t0x307C\n0xA4DD\t0x307D\n0xA4DE\t0x307E\n0xA4DF\t0x307F\n0xA4E0\t0x3080\n0xA4E1\t0x3081\n0xA4E2\t0x3082\n0xA4E3\t0x3083\n0xA4E4\t0x3084\n0xA4E5\t0x3085\n0xA4E6\t0x3086\n0xA4E7\t0x3087\n0xA4E8\t0x3088\n0xA4E9\t0x3089\n0xA4EA\t0x308A\n0xA4EB\t0x308B\n0xA4EC\t0x308C\n0xA4ED\t0x308D\n0xA4EE\t0x308E\n0xA4EF\t0x308F\n0xA4F0\t0x3090\n0xA4F1\t0x3091\n0xA4F2\t0x3092\n0xA4F3\t0x3093\n0xA5A1\t0x30A1\n0xA5A2\t0x30A2\n0xA5A3\t0x30A3\n0xA5A4\t0x30A4\n0xA5A5\t0x30A5\n0xA5A6\t0x30A6\n0xA5A7\t0x30A7\n0xA5A8\t0x30A8\n0xA5A9\t0x30A9\n0xA5AA\t0x30AA\n0xA5AB\t0x30AB\n0xA5AC\t0x30AC\n0xA5AD\t0x30AD\n0xA5AE\t0x30AE\n0xA5AF\t0x30AF\n0xA5B0\t0x30B0\n0xA5B1\t0x30B1\n0xA5B2\t0x30B2\n0xA5B3\t0x30B3\n0xA5B4\t0x30B4\n0xA5B5\t0x30B5\n0xA5B6\t0x30B6\n0xA5B7\t0x30B7\n0xA5B8\t0x30B8\n0xA5B9\t0x30B9\n0xA5BA\t0x30BA\n0xA5BB\t0x30BB\n0xA5BC\t0x30BC\n0xA5BD\t0x30BD\n0xA5BE\t0x30BE\n0xA5BF\t0x30BF\n0xA5C0\t0x30C0\n0xA5C1\t0x30C1\n0xA5C2\t0x30C2\n0xA5C3\t0x30C3\n0xA5C4\t0x30C4\n0xA5C5\t0x30C5\n0xA5C6\t0x30C6\n0xA5C7\t0x30C7\n0xA5C8\t0x30C8\n0xA5C9\t0x30C9\n0xA5CA\t0x30CA\n0xA5CB\t0x30CB\n0xA5CC\t0x30CC\n0xA5CD\t0x30CD\n0xA5CE\t0x30CE\n0xA5CF\t0x30CF\n0xA5D0\t0x30D0\n0xA5D1\t0x30D1\n0xA5D2\t0x30D2\n0xA5D3\t0x30D3\n0xA5D4\t0x30D4\n0xA5D5\t0x30D5\n0xA5D6\t0x30D6\n0xA5D7\t0x30D7\n0xA5D8\t0x30D8\n0xA5D9\t0x30D9\n0xA5DA\t0x30DA\n0xA5DB\t0x30DB\n0xA5DC\t0x30DC\n0xA5DD\t0x30DD\n0xA5DE\t0x30DE\n0xA5DF\t0x30DF\n0xA5E0\t0x30E0\n0xA5E1\t0x30E1\n0xA5E2\t0x30E2\n0xA5E3\t0x30E3\n0xA5E4\t0x30E4\n0xA5E5\t0x30E5\n0xA5E6\t0x30E6\n0xA5E7\t0x30E7\n0xA5E8\t0x30E8\n0xA5E9\t0x30E9\n0xA5EA\t0x30EA\n0xA5EB\t0x30EB\n0xA5EC\t0x30EC\n0xA5ED\t0x30ED\n0xA5EE\t0x30EE\n0xA5EF\t0x30EF\n0xA5F0\t0x30F0\n0xA5F1\t0x30F1\n0xA5F2\t0x30F2\n0xA5F3\t0x30F3\n0xA5F4\t0x30F4\n0xA5F5\t0x30F5\n0xA5F6\t0x30F6\n0xA6A1\t0x0391\n0xA6A2\t0x0392\n0xA6A3\t0x0393\n0xA6A4\t0x0394\n0xA6A5\t0x0395\n0xA6A6\t0x0396\n0xA6A7\t0x0397\n0xA6A8\t0x0398\n0xA6A9\t0x0399\n0xA6AA\t0x039A\n0xA6AB\t0x039B\n0xA6AC\t0x039C\n0xA6AD\t0x039D\n0xA6AE\t0x039E\n0xA6AF\t0x039F\n0xA6B0\t0x03A0\n0xA6B1\t0x03A1\n0xA6B2\t0x03A3\n0xA6B3\t0x03A4\n0xA6B4\t0x03A5\n0xA6B5\t0x03A6\n0xA6B6\t0x03A7\n0xA6B7\t0x03A8\n0xA6B8\t0x03A9\n0xA6C1\t0x03B1\n0xA6C2\t0x03B2\n0xA6C3\t0x03B3\n0xA6C4\t0x03B4\n0xA6C5\t0x03B5\n0xA6C6\t0x03B6\n0xA6C7\t0x03B7\n0xA6C8\t0x03B8\n0xA6C9\t0x03B9\n0xA6CA\t0x03BA\n0xA6CB\t0x03BB\n0xA6CC\t0x03BC\n0xA6CD\t0x03BD\n0xA6CE\t0x03BE\n0xA6CF\t0x03BF\n0xA6D0\t0x03C0\n0xA6D1\t0x03C1\n0xA6D2\t0x03C3\n0xA6D3\t0x03C4\n0xA6D4\t0x03C5\n0xA6D5\t0x03C6\n0xA6D6\t0x03C7\n0xA6D7\t0x03C8\n0xA6D8\t0x03C9\n0xA6E0\t0xFE35\n0xA6E1\t0xFE36\n0xA6E2\t0xFE39\n0xA6E3\t0xFE3A\n0xA6E4\t0xFE3F\n0xA6E5\t0xFE40\n0xA6E6\t0xFE3D\n0xA6E7\t0xFE3E\n0xA6E8\t0xFE41\n0xA6E9\t0xFE42\n0xA6EA\t0xFE43\n0xA6EB\t0xFE44\n0xA6EE\t0xFE3B\n0xA6EF\t0xFE3C\n0xA6F0\t0xFE37\n0xA6F1\t0xFE38\n0xA6F2\t0xFE31\n0xA6F4\t0xFE33\n0xA6F5\t0xFE34\n0xA7A1\t0x0410\n0xA7A2\t0x0411\n0xA7A3\t0x0412\n0xA7A4\t0x0413\n0xA7A5\t0x0414\n0xA7A6\t0x0415\n0xA7A7\t0x0401\n0xA7A8\t0x0416\n0xA7A9\t0x0417\n0xA7AA\t0x0418\n0xA7AB\t0x0419\n0xA7AC\t0x041A\n0xA7AD\t0x041B\n0xA7AE\t0x041C\n0xA7AF\t0x041D\n0xA7B0\t0x041E\n0xA7B1\t0x041F\n0xA7B2\t0x0420\n0xA7B3\t0x0421\n0xA7B4\t0x0422\n0xA7B5\t0x0423\n0xA7B6\t0x0424\n0xA7B7\t0x0425\n0xA7B8\t0x0426\n0xA7B9\t0x0427\n0xA7BA\t0x0428\n0xA7BB\t0x0429\n0xA7BC\t0x042A\n0xA7BD\t0x042B\n0xA7BE\t0x042C\n0xA7BF\t0x042D\n0xA7C0\t0x042E\n0xA7C1\t0x042F\n0xA7D1\t0x0430\n0xA7D2\t0x0431\n0xA7D3\t0x0432\n0xA7D4\t0x0433\n0xA7D5\t0x0434\n0xA7D6\t0x0435\n0xA7D7\t0x0451\n0xA7D8\t0x0436\n0xA7D9\t0x0437\n0xA7DA\t0x0438\n0xA7DB\t0x0439\n0xA7DC\t0x043A\n0xA7DD\t0x043B\n0xA7DE\t0x043C\n0xA7DF\t0x043D\n0xA7E0\t0x043E\n0xA7E1\t0x043F\n0xA7E2\t0x0440\n0xA7E3\t0x0441\n0xA7E4\t0x0442\n0xA7E5\t0x0443\n0xA7E6\t0x0444\n0xA7E7\t0x0445\n0xA7E8\t0x0446\n0xA7E9\t0x0447\n0xA7EA\t0x0448\n0xA7EB\t0x0449\n0xA7EC\t0x044A\n0xA7ED\t0x044B\n0xA7EE\t0x044C\n0xA7EF\t0x044D\n0xA7F0\t0x044E\n0xA7F1\t0x044F\n0xA840\t0x02CA\n0xA841\t0x02CB\n0xA842\t0x02D9\n0xA843\t0x2013\n0xA844\t0x2015\n0xA845\t0x2025\n0xA846\t0x2035\n0xA847\t0x2105\n0xA848\t0x2109\n0xA849\t0x2196\n0xA84A\t0x2197\n0xA84B\t0x2198\n0xA84C\t0x2199\n0xA84D\t0x2215\n0xA84E\t0x221F\n0xA84F\t0x2223\n0xA850\t0x2252\n0xA851\t0x2266\n0xA852\t0x2267\n0xA853\t0x22BF\n0xA854\t0x2550\n0xA855\t0x2551\n0xA856\t0x2552\n0xA857\t0x2553\n0xA858\t0x2554\n0xA859\t0x2555\n0xA85A\t0x2556\n0xA85B\t0x2557\n0xA85C\t0x2558\n0xA85D\t0x2559\n0xA85E\t0x255A\n0xA85F\t0x255B\n0xA860\t0x255C\n0xA861\t0x255D\n0xA862\t0x255E\n0xA863\t0x255F\n0xA864\t0x2560\n0xA865\t0x2561\n0xA866\t0x2562\n0xA867\t0x2563\n0xA868\t0x2564\n0xA869\t0x2565\n0xA86A\t0x2566\n0xA86B\t0x2567\n0xA86C\t0x2568\n0xA86D\t0x2569\n0xA86E\t0x256A\n0xA86F\t0x256B\n0xA870\t0x256C\n0xA871\t0x256D\n0xA872\t0x256E\n0xA873\t0x256F\n0xA874\t0x2570\n0xA875\t0x2571\n0xA876\t0x2572\n0xA877\t0x2573\n0xA878\t0x2581\n0xA879\t0x2582\n0xA87A\t0x2583\n0xA87B\t0x2584\n0xA87C\t0x2585\n0xA87D\t0x2586\n0xA87E\t0x2587\n0xA880\t0x2588\n0xA881\t0x2589\n0xA882\t0x258A\n0xA883\t0x258B\n0xA884\t0x258C\n0xA885\t0x258D\n0xA886\t0x258E\n0xA887\t0x258F\n0xA888\t0x2593\n0xA889\t0x2594\n0xA88A\t0x2595\n0xA88B\t0x25BC\n0xA88C\t0x25BD\n0xA88D\t0x25E2\n0xA88E\t0x25E3\n0xA88F\t0x25E4\n0xA890\t0x25E5\n0xA891\t0x2609\n0xA892\t0x2295\n0xA893\t0x3012\n0xA894\t0x301D\n0xA895\t0x301E\n0xA8A1\t0x0101\n0xA8A2\t0x00E1\n0xA8A3\t0x01CE\n0xA8A4\t0x00E0\n0xA8A5\t0x0113\n0xA8A6\t0x00E9\n0xA8A7\t0x011B\n0xA8A8\t0x00E8\n0xA8A9\t0x012B\n0xA8AA\t0x00ED\n0xA8AB\t0x01D0\n0xA8AC\t0x00EC\n0xA8AD\t0x014D\n0xA8AE\t0x00F3\n0xA8AF\t0x01D2\n0xA8B0\t0x00F2\n0xA8B1\t0x016B\n0xA8B2\t0x00FA\n0xA8B3\t0x01D4\n0xA8B4\t0x00F9\n0xA8B5\t0x01D6\n0xA8B6\t0x01D8\n0xA8B7\t0x01DA\n0xA8B8\t0x01DC\n0xA8B9\t0x00FC\n0xA8BA\t0x00EA\n0xA8BB\t0x0251\n0xA8BD\t0x0144\n0xA8BE\t0x0148\n0xA8C0\t0x0261\n0xA8C5\t0x3105\n0xA8C6\t0x3106\n0xA8C7\t0x3107\n0xA8C8\t0x3108\n0xA8C9\t0x3109\n0xA8CA\t0x310A\n0xA8CB\t0x310B\n0xA8CC\t0x310C\n0xA8CD\t0x310D\n0xA8CE\t0x310E\n0xA8CF\t0x310F\n0xA8D0\t0x3110\n0xA8D1\t0x3111\n0xA8D2\t0x3112\n0xA8D3\t0x3113\n0xA8D4\t0x3114\n0xA8D5\t0x3115\n0xA8D6\t0x3116\n0xA8D7\t0x3117\n0xA8D8\t0x3118\n0xA8D9\t0x3119\n0xA8DA\t0x311A\n0xA8DB\t0x311B\n0xA8DC\t0x311C\n0xA8DD\t0x311D\n0xA8DE\t0x311E\n0xA8DF\t0x311F\n0xA8E0\t0x3120\n0xA8E1\t0x3121\n0xA8E2\t0x3122\n0xA8E3\t0x3123\n0xA8E4\t0x3124\n0xA8E5\t0x3125\n0xA8E6\t0x3126\n0xA8E7\t0x3127\n0xA8E8\t0x3128\n0xA8E9\t0x3129\n0xA940\t0x3021\n0xA941\t0x3022\n0xA942\t0x3023\n0xA943\t0x3024\n0xA944\t0x3025\n0xA945\t0x3026\n0xA946\t0x3027\n0xA947\t0x3028\n0xA948\t0x3029\n0xA949\t0x32A3\n0xA94A\t0x338E\n0xA94B\t0x338F\n0xA94C\t0x339C\n0xA94D\t0x339D\n0xA94E\t0x339E\n0xA94F\t0x33A1\n0xA950\t0x33C4\n0xA951\t0x33CE\n0xA952\t0x33D1\n0xA953\t0x33D2\n0xA954\t0x33D5\n0xA955\t0xFE30\n0xA956\t0xFFE2\n0xA957\t0xFFE4\n0xA959\t0x2121\n0xA95A\t0x3231\n0xA95C\t0x2010\n0xA960\t0x30FC\n0xA961\t0x309B\n0xA962\t0x309C\n0xA963\t0x30FD\n0xA964\t0x30FE\n0xA965\t0x3006\n0xA966\t0x309D\n0xA967\t0x309E\n0xA968\t0xFE49\n0xA969\t0xFE4A\n0xA96A\t0xFE4B\n0xA96B\t0xFE4C\n0xA96C\t0xFE4D\n0xA96D\t0xFE4E\n0xA96E\t0xFE4F\n0xA96F\t0xFE50\n0xA970\t0xFE51\n0xA971\t0xFE52\n0xA972\t0xFE54\n0xA973\t0xFE55\n0xA974\t0xFE56\n0xA975\t0xFE57\n0xA976\t0xFE59\n0xA977\t0xFE5A\n0xA978\t0xFE5B\n0xA979\t0xFE5C\n0xA97A\t0xFE5D\n0xA97B\t0xFE5E\n0xA97C\t0xFE5F\n0xA97D\t0xFE60\n0xA97E\t0xFE61\n0xA980\t0xFE62\n0xA981\t0xFE63\n0xA982\t0xFE64\n0xA983\t0xFE65\n0xA984\t0xFE66\n0xA985\t0xFE68\n0xA986\t0xFE69\n0xA987\t0xFE6A\n0xA988\t0xFE6B\n0xA996\t0x3007\n0xA9A4\t0x2500\n0xA9A5\t0x2501\n0xA9A6\t0x2502\n0xA9A7\t0x2503\n0xA9A8\t0x2504\n0xA9A9\t0x2505\n0xA9AA\t0x2506\n0xA9AB\t0x2507\n0xA9AC\t0x2508\n0xA9AD\t0x2509\n0xA9AE\t0x250A\n0xA9AF\t0x250B\n0xA9B0\t0x250C\n0xA9B1\t0x250D\n0xA9B2\t0x250E\n0xA9B3\t0x250F\n0xA9B4\t0x2510\n0xA9B5\t0x2511\n0xA9B6\t0x2512\n0xA9B7\t0x2513\n0xA9B8\t0x2514\n0xA9B9\t0x2515\n0xA9BA\t0x2516\n0xA9BB\t0x2517\n0xA9BC\t0x2518\n0xA9BD\t0x2519\n0xA9BE\t0x251A\n0xA9BF\t0x251B\n0xA9C0\t0x251C\n0xA9C1\t0x251D\n0xA9C2\t0x251E\n0xA9C3\t0x251F\n0xA9C4\t0x2520\n0xA9C5\t0x2521\n0xA9C6\t0x2522\n0xA9C7\t0x2523\n0xA9C8\t0x2524\n0xA9C9\t0x2525\n0xA9CA\t0x2526\n0xA9CB\t0x2527\n0xA9CC\t0x2528\n0xA9CD\t0x2529\n0xA9CE\t0x252A\n0xA9CF\t0x252B\n0xA9D0\t0x252C\n0xA9D1\t0x252D\n0xA9D2\t0x252E\n0xA9D3\t0x252F\n0xA9D4\t0x2530\n0xA9D5\t0x2531\n0xA9D6\t0x2532\n0xA9D7\t0x2533\n0xA9D8\t0x2534\n0xA9D9\t0x2535\n0xA9DA\t0x2536\n0xA9DB\t0x2537\n0xA9DC\t0x2538\n0xA9DD\t0x2539\n0xA9DE\t0x253A\n0xA9DF\t0x253B\n0xA9E0\t0x253C\n0xA9E1\t0x253D\n0xA9E2\t0x253E\n0xA9E3\t0x253F\n0xA9E4\t0x2540\n0xA9E5\t0x2541\n0xA9E6\t0x2542\n0xA9E7\t0x2543\n0xA9E8\t0x2544\n0xA9E9\t0x2545\n0xA9EA\t0x2546\n0xA9EB\t0x2547\n0xA9EC\t0x2548\n0xA9ED\t0x2549\n0xA9EE\t0x254A\n0xA9EF\t0x254B\n0xAA40\t0x72DC\n0xAA41\t0x72DD\n0xAA42\t0x72DF\n0xAA43\t0x72E2\n0xAA44\t0x72E3\n0xAA45\t0x72E4\n0xAA46\t0x72E5\n0xAA47\t0x72E6\n0xAA48\t0x72E7\n0xAA49\t0x72EA\n0xAA4A\t0x72EB\n0xAA4B\t0x72F5\n0xAA4C\t0x72F6\n0xAA4D\t0x72F9\n0xAA4E\t0x72FD\n0xAA4F\t0x72FE\n0xAA50\t0x72FF\n0xAA51\t0x7300\n0xAA52\t0x7302\n0xAA53\t0x7304\n0xAA54\t0x7305\n0xAA55\t0x7306\n0xAA56\t0x7307\n0xAA57\t0x7308\n0xAA58\t0x7309\n0xAA59\t0x730B\n0xAA5A\t0x730C\n0xAA5B\t0x730D\n0xAA5C\t0x730F\n0xAA5D\t0x7310\n0xAA5E\t0x7311\n0xAA5F\t0x7312\n0xAA60\t0x7314\n0xAA61\t0x7318\n0xAA62\t0x7319\n0xAA63\t0x731A\n0xAA64\t0x731F\n0xAA65\t0x7320\n0xAA66\t0x7323\n0xAA67\t0x7324\n0xAA68\t0x7326\n0xAA69\t0x7327\n0xAA6A\t0x7328\n0xAA6B\t0x732D\n0xAA6C\t0x732F\n0xAA6D\t0x7330\n0xAA6E\t0x7332\n0xAA6F\t0x7333\n0xAA70\t0x7335\n0xAA71\t0x7336\n0xAA72\t0x733A\n0xAA73\t0x733B\n0xAA74\t0x733C\n0xAA75\t0x733D\n0xAA76\t0x7340\n0xAA77\t0x7341\n0xAA78\t0x7342\n0xAA79\t0x7343\n0xAA7A\t0x7344\n0xAA7B\t0x7345\n0xAA7C\t0x7346\n0xAA7D\t0x7347\n0xAA7E\t0x7348\n0xAA80\t0x7349\n0xAA81\t0x734A\n0xAA82\t0x734B\n0xAA83\t0x734C\n0xAA84\t0x734E\n0xAA85\t0x734F\n0xAA86\t0x7351\n0xAA87\t0x7353\n0xAA88\t0x7354\n0xAA89\t0x7355\n0xAA8A\t0x7356\n0xAA8B\t0x7358\n0xAA8C\t0x7359\n0xAA8D\t0x735A\n0xAA8E\t0x735B\n0xAA8F\t0x735C\n0xAA90\t0x735D\n0xAA91\t0x735E\n0xAA92\t0x735F\n0xAA93\t0x7361\n0xAA94\t0x7362\n0xAA95\t0x7363\n0xAA96\t0x7364\n0xAA97\t0x7365\n0xAA98\t0x7366\n0xAA99\t0x7367\n0xAA9A\t0x7368\n0xAA9B\t0x7369\n0xAA9C\t0x736A\n0xAA9D\t0x736B\n0xAA9E\t0x736E\n0xAA9F\t0x7370\n0xAAA0\t0x7371\n0xAAA1\t0xE000\n0xAAA2\t0xE001\n0xAAA3\t0xE002\n0xAAA4\t0xE003\n0xAAA5\t0xE004\n0xAAA6\t0xE005\n0xAAA7\t0xE006\n0xAAA8\t0xE007\n0xAAA9\t0xE008\n0xAAAA\t0xE009\n0xAAAB\t0xE00A\n0xAAAC\t0xE00B\n0xAAAD\t0xE00C\n0xAAAE\t0xE00D\n0xAAAF\t0xE00E\n0xAAB0\t0xE00F\n0xAAB1\t0xE010\n0xAAB2\t0xE011\n0xAAB3\t0xE012\n0xAAB4\t0xE013\n0xAAB5\t0xE014\n0xAAB6\t0xE015\n0xAAB7\t0xE016\n0xAAB8\t0xE017\n0xAAB9\t0xE018\n0xAABA\t0xE019\n0xAABB\t0xE01A\n0xAABC\t0xE01B\n0xAABD\t0xE01C\n0xAABE\t0xE01D\n0xAABF\t0xE01E\n0xAAC0\t0xE01F\n0xAAC1\t0xE020\n0xAAC2\t0xE021\n0xAAC3\t0xE022\n0xAAC4\t0xE023\n0xAAC5\t0xE024\n0xAAC6\t0xE025\n0xAAC7\t0xE026\n0xAAC8\t0xE027\n0xAAC9\t0xE028\n0xAACA\t0xE029\n0xAACB\t0xE02A\n0xAACC\t0xE02B\n0xAACD\t0xE02C\n0xAACE\t0xE02D\n0xAACF\t0xE02E\n0xAAD0\t0xE02F\n0xAAD1\t0xE030\n0xAAD2\t0xE031\n0xAAD3\t0xE032\n0xAAD4\t0xE033\n0xAAD5\t0xE034\n0xAAD6\t0xE035\n0xAAD7\t0xE036\n0xAAD8\t0xE037\n0xAAD9\t0xE038\n0xAADA\t0xE039\n0xAADB\t0xE03A\n0xAADC\t0xE03B\n0xAADD\t0xE03C\n0xAADE\t0xE03D\n0xAADF\t0xE03E\n0xAAE0\t0xE03F\n0xAAE1\t0xE040\n0xAAE2\t0xE041\n0xAAE3\t0xE042\n0xAAE4\t0xE043\n0xAAE5\t0xE044\n0xAAE6\t0xE045\n0xAAE7\t0xE046\n0xAAE8\t0xE047\n0xAAE9\t0xE048\n0xAAEA\t0xE049\n0xAAEB\t0xE04A\n0xAAEC\t0xE04B\n0xAAED\t0xE04C\n0xAAEE\t0xE04D\n0xAAEF\t0xE04E\n0xAAF0\t0xE04F\n0xAAF1\t0xE050\n0xAAF2\t0xE051\n0xAAF3\t0xE052\n0xAAF4\t0xE053\n0xAAF5\t0xE054\n0xAAF6\t0xE055\n0xAAF7\t0xE056\n0xAAF8\t0xE057\n0xAAF9\t0xE058\n0xAAFA\t0xE059\n0xAAFB\t0xE05A\n0xAAFC\t0xE05B\n0xAAFD\t0xE05C\n0xAAFE\t0xE05D\n0xAB40\t0x7372\n0xAB41\t0x7373\n0xAB42\t0x7374\n0xAB43\t0x7375\n0xAB44\t0x7376\n0xAB45\t0x7377\n0xAB46\t0x7378\n0xAB47\t0x7379\n0xAB48\t0x737A\n0xAB49\t0x737B\n0xAB4A\t0x737C\n0xAB4B\t0x737D\n0xAB4C\t0x737F\n0xAB4D\t0x7380\n0xAB4E\t0x7381\n0xAB4F\t0x7382\n0xAB50\t0x7383\n0xAB51\t0x7385\n0xAB52\t0x7386\n0xAB53\t0x7388\n0xAB54\t0x738A\n0xAB55\t0x738C\n0xAB56\t0x738D\n0xAB57\t0x738F\n0xAB58\t0x7390\n0xAB59\t0x7392\n0xAB5A\t0x7393\n0xAB5B\t0x7394\n0xAB5C\t0x7395\n0xAB5D\t0x7397\n0xAB5E\t0x7398\n0xAB5F\t0x7399\n0xAB60\t0x739A\n0xAB61\t0x739C\n0xAB62\t0x739D\n0xAB63\t0x739E\n0xAB64\t0x73A0\n0xAB65\t0x73A1\n0xAB66\t0x73A3\n0xAB67\t0x73A4\n0xAB68\t0x73A5\n0xAB69\t0x73A6\n0xAB6A\t0x73A7\n0xAB6B\t0x73A8\n0xAB6C\t0x73AA\n0xAB6D\t0x73AC\n0xAB6E\t0x73AD\n0xAB6F\t0x73B1\n0xAB70\t0x73B4\n0xAB71\t0x73B5\n0xAB72\t0x73B6\n0xAB73\t0x73B8\n0xAB74\t0x73B9\n0xAB75\t0x73BC\n0xAB76\t0x73BD\n0xAB77\t0x73BE\n0xAB78\t0x73BF\n0xAB79\t0x73C1\n0xAB7A\t0x73C3\n0xAB7B\t0x73C4\n0xAB7C\t0x73C5\n0xAB7D\t0x73C6\n0xAB7E\t0x73C7\n0xAB80\t0x73CB\n0xAB81\t0x73CC\n0xAB82\t0x73CE\n0xAB83\t0x73D2\n0xAB84\t0x73D3\n0xAB85\t0x73D4\n0xAB86\t0x73D5\n0xAB87\t0x73D6\n0xAB88\t0x73D7\n0xAB89\t0x73D8\n0xAB8A\t0x73DA\n0xAB8B\t0x73DB\n0xAB8C\t0x73DC\n0xAB8D\t0x73DD\n0xAB8E\t0x73DF\n0xAB8F\t0x73E1\n0xAB90\t0x73E2\n0xAB91\t0x73E3\n0xAB92\t0x73E4\n0xAB93\t0x73E6\n0xAB94\t0x73E8\n0xAB95\t0x73EA\n0xAB96\t0x73EB\n0xAB97\t0x73EC\n0xAB98\t0x73EE\n0xAB99\t0x73EF\n0xAB9A\t0x73F0\n0xAB9B\t0x73F1\n0xAB9C\t0x73F3\n0xAB9D\t0x73F4\n0xAB9E\t0x73F5\n0xAB9F\t0x73F6\n0xABA0\t0x73F7\n0xABA1\t0xE05E\n0xABA2\t0xE05F\n0xABA3\t0xE060\n0xABA4\t0xE061\n0xABA5\t0xE062\n0xABA6\t0xE063\n0xABA7\t0xE064\n0xABA8\t0xE065\n0xABA9\t0xE066\n0xABAA\t0xE067\n0xABAB\t0xE068\n0xABAC\t0xE069\n0xABAD\t0xE06A\n0xABAE\t0xE06B\n0xABAF\t0xE06C\n0xABB0\t0xE06D\n0xABB1\t0xE06E\n0xABB2\t0xE06F\n0xABB3\t0xE070\n0xABB4\t0xE071\n0xABB5\t0xE072\n0xABB6\t0xE073\n0xABB7\t0xE074\n0xABB8\t0xE075\n0xABB9\t0xE076\n0xABBA\t0xE077\n0xABBB\t0xE078\n0xABBC\t0xE079\n0xABBD\t0xE07A\n0xABBE\t0xE07B\n0xABBF\t0xE07C\n0xABC0\t0xE07D\n0xABC1\t0xE07E\n0xABC2\t0xE07F\n0xABC3\t0xE080\n0xABC4\t0xE081\n0xABC5\t0xE082\n0xABC6\t0xE083\n0xABC7\t0xE084\n0xABC8\t0xE085\n0xABC9\t0xE086\n0xABCA\t0xE087\n0xABCB\t0xE088\n0xABCC\t0xE089\n0xABCD\t0xE08A\n0xABCE\t0xE08B\n0xABCF\t0xE08C\n0xABD0\t0xE08D\n0xABD1\t0xE08E\n0xABD2\t0xE08F\n0xABD3\t0xE090\n0xABD4\t0xE091\n0xABD5\t0xE092\n0xABD6\t0xE093\n0xABD7\t0xE094\n0xABD8\t0xE095\n0xABD9\t0xE096\n0xABDA\t0xE097\n0xABDB\t0xE098\n0xABDC\t0xE099\n0xABDD\t0xE09A\n0xABDE\t0xE09B\n0xABDF\t0xE09C\n0xABE0\t0xE09D\n0xABE1\t0xE09E\n0xABE2\t0xE09F\n0xABE3\t0xE0A0\n0xABE4\t0xE0A1\n0xABE5\t0xE0A2\n0xABE6\t0xE0A3\n0xABE7\t0xE0A4\n0xABE8\t0xE0A5\n0xABE9\t0xE0A6\n0xABEA\t0xE0A7\n0xABEB\t0xE0A8\n0xABEC\t0xE0A9\n0xABED\t0xE0AA\n0xABEE\t0xE0AB\n0xABEF\t0xE0AC\n0xABF0\t0xE0AD\n0xABF1\t0xE0AE\n0xABF2\t0xE0AF\n0xABF3\t0xE0B0\n0xABF4\t0xE0B1\n0xABF5\t0xE0B2\n0xABF6\t0xE0B3\n0xABF7\t0xE0B4\n0xABF8\t0xE0B5\n0xABF9\t0xE0B6\n0xABFA\t0xE0B7\n0xABFB\t0xE0B8\n0xABFC\t0xE0B9\n0xABFD\t0xE0BA\n0xABFE\t0xE0BB\n0xAC40\t0x73F8\n0xAC41\t0x73F9\n0xAC42\t0x73FA\n0xAC43\t0x73FB\n0xAC44\t0x73FC\n0xAC45\t0x73FD\n0xAC46\t0x73FE\n0xAC47\t0x73FF\n0xAC48\t0x7400\n0xAC49\t0x7401\n0xAC4A\t0x7402\n0xAC4B\t0x7404\n0xAC4C\t0x7407\n0xAC4D\t0x7408\n0xAC4E\t0x740B\n0xAC4F\t0x740C\n0xAC50\t0x740D\n0xAC51\t0x740E\n0xAC52\t0x7411\n0xAC53\t0x7412\n0xAC54\t0x7413\n0xAC55\t0x7414\n0xAC56\t0x7415\n0xAC57\t0x7416\n0xAC58\t0x7417\n0xAC59\t0x7418\n0xAC5A\t0x7419\n0xAC5B\t0x741C\n0xAC5C\t0x741D\n0xAC5D\t0x741E\n0xAC5E\t0x741F\n0xAC5F\t0x7420\n0xAC60\t0x7421\n0xAC61\t0x7423\n0xAC62\t0x7424\n0xAC63\t0x7427\n0xAC64\t0x7429\n0xAC65\t0x742B\n0xAC66\t0x742D\n0xAC67\t0x742F\n0xAC68\t0x7431\n0xAC69\t0x7432\n0xAC6A\t0x7437\n0xAC6B\t0x7438\n0xAC6C\t0x7439\n0xAC6D\t0x743A\n0xAC6E\t0x743B\n0xAC6F\t0x743D\n0xAC70\t0x743E\n0xAC71\t0x743F\n0xAC72\t0x7440\n0xAC73\t0x7442\n0xAC74\t0x7443\n0xAC75\t0x7444\n0xAC76\t0x7445\n0xAC77\t0x7446\n0xAC78\t0x7447\n0xAC79\t0x7448\n0xAC7A\t0x7449\n0xAC7B\t0x744A\n0xAC7C\t0x744B\n0xAC7D\t0x744C\n0xAC7E\t0x744D\n0xAC80\t0x744E\n0xAC81\t0x744F\n0xAC82\t0x7450\n0xAC83\t0x7451\n0xAC84\t0x7452\n0xAC85\t0x7453\n0xAC86\t0x7454\n0xAC87\t0x7456\n0xAC88\t0x7458\n0xAC89\t0x745D\n0xAC8A\t0x7460\n0xAC8B\t0x7461\n0xAC8C\t0x7462\n0xAC8D\t0x7463\n0xAC8E\t0x7464\n0xAC8F\t0x7465\n0xAC90\t0x7466\n0xAC91\t0x7467\n0xAC92\t0x7468\n0xAC93\t0x7469\n0xAC94\t0x746A\n0xAC95\t0x746B\n0xAC96\t0x746C\n0xAC97\t0x746E\n0xAC98\t0x746F\n0xAC99\t0x7471\n0xAC9A\t0x7472\n0xAC9B\t0x7473\n0xAC9C\t0x7474\n0xAC9D\t0x7475\n0xAC9E\t0x7478\n0xAC9F\t0x7479\n0xACA0\t0x747A\n0xACA1\t0xE0BC\n0xACA2\t0xE0BD\n0xACA3\t0xE0BE\n0xACA4\t0xE0BF\n0xACA5\t0xE0C0\n0xACA6\t0xE0C1\n0xACA7\t0xE0C2\n0xACA8\t0xE0C3\n0xACA9\t0xE0C4\n0xACAA\t0xE0C5\n0xACAB\t0xE0C6\n0xACAC\t0xE0C7\n0xACAD\t0xE0C8\n0xACAE\t0xE0C9\n0xACAF\t0xE0CA\n0xACB0\t0xE0CB\n0xACB1\t0xE0CC\n0xACB2\t0xE0CD\n0xACB3\t0xE0CE\n0xACB4\t0xE0CF\n0xACB5\t0xE0D0\n0xACB6\t0xE0D1\n0xACB7\t0xE0D2\n0xACB8\t0xE0D3\n0xACB9\t0xE0D4\n0xACBA\t0xE0D5\n0xACBB\t0xE0D6\n0xACBC\t0xE0D7\n0xACBD\t0xE0D8\n0xACBE\t0xE0D9\n0xACBF\t0xE0DA\n0xACC0\t0xE0DB\n0xACC1\t0xE0DC\n0xACC2\t0xE0DD\n0xACC3\t0xE0DE\n0xACC4\t0xE0DF\n0xACC5\t0xE0E0\n0xACC6\t0xE0E1\n0xACC7\t0xE0E2\n0xACC8\t0xE0E3\n0xACC9\t0xE0E4\n0xACCA\t0xE0E5\n0xACCB\t0xE0E6\n0xACCC\t0xE0E7\n0xACCD\t0xE0E8\n0xACCE\t0xE0E9\n0xACCF\t0xE0EA\n0xACD0\t0xE0EB\n0xACD1\t0xE0EC\n0xACD2\t0xE0ED\n0xACD3\t0xE0EE\n0xACD4\t0xE0EF\n0xACD5\t0xE0F0\n0xACD6\t0xE0F1\n0xACD7\t0xE0F2\n0xACD8\t0xE0F3\n0xACD9\t0xE0F4\n0xACDA\t0xE0F5\n0xACDB\t0xE0F6\n0xACDC\t0xE0F7\n0xACDD\t0xE0F8\n0xACDE\t0xE0F9\n0xACDF\t0xE0FA\n0xACE0\t0xE0FB\n0xACE1\t0xE0FC\n0xACE2\t0xE0FD\n0xACE3\t0xE0FE\n0xACE4\t0xE0FF\n0xACE5\t0xE100\n0xACE6\t0xE101\n0xACE7\t0xE102\n0xACE8\t0xE103\n0xACE9\t0xE104\n0xACEA\t0xE105\n0xACEB\t0xE106\n0xACEC\t0xE107\n0xACED\t0xE108\n0xACEE\t0xE109\n0xACEF\t0xE10A\n0xACF0\t0xE10B\n0xACF1\t0xE10C\n0xACF2\t0xE10D\n0xACF3\t0xE10E\n0xACF4\t0xE10F\n0xACF5\t0xE110\n0xACF6\t0xE111\n0xACF7\t0xE112\n0xACF8\t0xE113\n0xACF9\t0xE114\n0xACFA\t0xE115\n0xACFB\t0xE116\n0xACFC\t0xE117\n0xACFD\t0xE118\n0xACFE\t0xE119\n0xAD40\t0x747B\n0xAD41\t0x747C\n0xAD42\t0x747D\n0xAD43\t0x747F\n0xAD44\t0x7482\n0xAD45\t0x7484\n0xAD46\t0x7485\n0xAD47\t0x7486\n0xAD48\t0x7488\n0xAD49\t0x7489\n0xAD4A\t0x748A\n0xAD4B\t0x748C\n0xAD4C\t0x748D\n0xAD4D\t0x748F\n0xAD4E\t0x7491\n0xAD4F\t0x7492\n0xAD50\t0x7493\n0xAD51\t0x7494\n0xAD52\t0x7495\n0xAD53\t0x7496\n0xAD54\t0x7497\n0xAD55\t0x7498\n0xAD56\t0x7499\n0xAD57\t0x749A\n0xAD58\t0x749B\n0xAD59\t0x749D\n0xAD5A\t0x749F\n0xAD5B\t0x74A0\n0xAD5C\t0x74A1\n0xAD5D\t0x74A2\n0xAD5E\t0x74A3\n0xAD5F\t0x74A4\n0xAD60\t0x74A5\n0xAD61\t0x74A6\n0xAD62\t0x74AA\n0xAD63\t0x74AB\n0xAD64\t0x74AC\n0xAD65\t0x74AD\n0xAD66\t0x74AE\n0xAD67\t0x74AF\n0xAD68\t0x74B0\n0xAD69\t0x74B1\n0xAD6A\t0x74B2\n0xAD6B\t0x74B3\n0xAD6C\t0x74B4\n0xAD6D\t0x74B5\n0xAD6E\t0x74B6\n0xAD6F\t0x74B7\n0xAD70\t0x74B8\n0xAD71\t0x74B9\n0xAD72\t0x74BB\n0xAD73\t0x74BC\n0xAD74\t0x74BD\n0xAD75\t0x74BE\n0xAD76\t0x74BF\n0xAD77\t0x74C0\n0xAD78\t0x74C1\n0xAD79\t0x74C2\n0xAD7A\t0x74C3\n0xAD7B\t0x74C4\n0xAD7C\t0x74C5\n0xAD7D\t0x74C6\n0xAD7E\t0x74C7\n0xAD80\t0x74C8\n0xAD81\t0x74C9\n0xAD82\t0x74CA\n0xAD83\t0x74CB\n0xAD84\t0x74CC\n0xAD85\t0x74CD\n0xAD86\t0x74CE\n0xAD87\t0x74CF\n0xAD88\t0x74D0\n0xAD89\t0x74D1\n0xAD8A\t0x74D3\n0xAD8B\t0x74D4\n0xAD8C\t0x74D5\n0xAD8D\t0x74D6\n0xAD8E\t0x74D7\n0xAD8F\t0x74D8\n0xAD90\t0x74D9\n0xAD91\t0x74DA\n0xAD92\t0x74DB\n0xAD93\t0x74DD\n0xAD94\t0x74DF\n0xAD95\t0x74E1\n0xAD96\t0x74E5\n0xAD97\t0x74E7\n0xAD98\t0x74E8\n0xAD99\t0x74E9\n0xAD9A\t0x74EA\n0xAD9B\t0x74EB\n0xAD9C\t0x74EC\n0xAD9D\t0x74ED\n0xAD9E\t0x74F0\n0xAD9F\t0x74F1\n0xADA0\t0x74F2\n0xADA1\t0xE11A\n0xADA2\t0xE11B\n0xADA3\t0xE11C\n0xADA4\t0xE11D\n0xADA5\t0xE11E\n0xADA6\t0xE11F\n0xADA7\t0xE120\n0xADA8\t0xE121\n0xADA9\t0xE122\n0xADAA\t0xE123\n0xADAB\t0xE124\n0xADAC\t0xE125\n0xADAD\t0xE126\n0xADAE\t0xE127\n0xADAF\t0xE128\n0xADB0\t0xE129\n0xADB1\t0xE12A\n0xADB2\t0xE12B\n0xADB3\t0xE12C\n0xADB4\t0xE12D\n0xADB5\t0xE12E\n0xADB6\t0xE12F\n0xADB7\t0xE130\n0xADB8\t0xE131\n0xADB9\t0xE132\n0xADBA\t0xE133\n0xADBB\t0xE134\n0xADBC\t0xE135\n0xADBD\t0xE136\n0xADBE\t0xE137\n0xADBF\t0xE138\n0xADC0\t0xE139\n0xADC1\t0xE13A\n0xADC2\t0xE13B\n0xADC3\t0xE13C\n0xADC4\t0xE13D\n0xADC5\t0xE13E\n0xADC6\t0xE13F\n0xADC7\t0xE140\n0xADC8\t0xE141\n0xADC9\t0xE142\n0xADCA\t0xE143\n0xADCB\t0xE144\n0xADCC\t0xE145\n0xADCD\t0xE146\n0xADCE\t0xE147\n0xADCF\t0xE148\n0xADD0\t0xE149\n0xADD1\t0xE14A\n0xADD2\t0xE14B\n0xADD3\t0xE14C\n0xADD4\t0xE14D\n0xADD5\t0xE14E\n0xADD6\t0xE14F\n0xADD7\t0xE150\n0xADD8\t0xE151\n0xADD9\t0xE152\n0xADDA\t0xE153\n0xADDB\t0xE154\n0xADDC\t0xE155\n0xADDD\t0xE156\n0xADDE\t0xE157\n0xADDF\t0xE158\n0xADE0\t0xE159\n0xADE1\t0xE15A\n0xADE2\t0xE15B\n0xADE3\t0xE15C\n0xADE4\t0xE15D\n0xADE5\t0xE15E\n0xADE6\t0xE15F\n0xADE7\t0xE160\n0xADE8\t0xE161\n0xADE9\t0xE162\n0xADEA\t0xE163\n0xADEB\t0xE164\n0xADEC\t0xE165\n0xADED\t0xE166\n0xADEE\t0xE167\n0xADEF\t0xE168\n0xADF0\t0xE169\n0xADF1\t0xE16A\n0xADF2\t0xE16B\n0xADF3\t0xE16C\n0xADF4\t0xE16D\n0xADF5\t0xE16E\n0xADF6\t0xE16F\n0xADF7\t0xE170\n0xADF8\t0xE171\n0xADF9\t0xE172\n0xADFA\t0xE173\n0xADFB\t0xE174\n0xADFC\t0xE175\n0xADFD\t0xE176\n0xADFE\t0xE177\n0xAE40\t0x74F3\n0xAE41\t0x74F5\n0xAE42\t0x74F8\n0xAE43\t0x74F9\n0xAE44\t0x74FA\n0xAE45\t0x74FB\n0xAE46\t0x74FC\n0xAE47\t0x74FD\n0xAE48\t0x74FE\n0xAE49\t0x7500\n0xAE4A\t0x7501\n0xAE4B\t0x7502\n0xAE4C\t0x7503\n0xAE4D\t0x7505\n0xAE4E\t0x7506\n0xAE4F\t0x7507\n0xAE50\t0x7508\n0xAE51\t0x7509\n0xAE52\t0x750A\n0xAE53\t0x750B\n0xAE54\t0x750C\n0xAE55\t0x750E\n0xAE56\t0x7510\n0xAE57\t0x7512\n0xAE58\t0x7514\n0xAE59\t0x7515\n0xAE5A\t0x7516\n0xAE5B\t0x7517\n0xAE5C\t0x751B\n0xAE5D\t0x751D\n0xAE5E\t0x751E\n0xAE5F\t0x7520\n0xAE60\t0x7521\n0xAE61\t0x7522\n0xAE62\t0x7523\n0xAE63\t0x7524\n0xAE64\t0x7526\n0xAE65\t0x7527\n0xAE66\t0x752A\n0xAE67\t0x752E\n0xAE68\t0x7534\n0xAE69\t0x7536\n0xAE6A\t0x7539\n0xAE6B\t0x753C\n0xAE6C\t0x753D\n0xAE6D\t0x753F\n0xAE6E\t0x7541\n0xAE6F\t0x7542\n0xAE70\t0x7543\n0xAE71\t0x7544\n0xAE72\t0x7546\n0xAE73\t0x7547\n0xAE74\t0x7549\n0xAE75\t0x754A\n0xAE76\t0x754D\n0xAE77\t0x7550\n0xAE78\t0x7551\n0xAE79\t0x7552\n0xAE7A\t0x7553\n0xAE7B\t0x7555\n0xAE7C\t0x7556\n0xAE7D\t0x7557\n0xAE7E\t0x7558\n0xAE80\t0x755D\n0xAE81\t0x755E\n0xAE82\t0x755F\n0xAE83\t0x7560\n0xAE84\t0x7561\n0xAE85\t0x7562\n0xAE86\t0x7563\n0xAE87\t0x7564\n0xAE88\t0x7567\n0xAE89\t0x7568\n0xAE8A\t0x7569\n0xAE8B\t0x756B\n0xAE8C\t0x756C\n0xAE8D\t0x756D\n0xAE8E\t0x756E\n0xAE8F\t0x756F\n0xAE90\t0x7570\n0xAE91\t0x7571\n0xAE92\t0x7573\n0xAE93\t0x7575\n0xAE94\t0x7576\n0xAE95\t0x7577\n0xAE96\t0x757A\n0xAE97\t0x757B\n0xAE98\t0x757C\n0xAE99\t0x757D\n0xAE9A\t0x757E\n0xAE9B\t0x7580\n0xAE9C\t0x7581\n0xAE9D\t0x7582\n0xAE9E\t0x7584\n0xAE9F\t0x7585\n0xAEA0\t0x7587\n0xAEA1\t0xE178\n0xAEA2\t0xE179\n0xAEA3\t0xE17A\n0xAEA4\t0xE17B\n0xAEA5\t0xE17C\n0xAEA6\t0xE17D\n0xAEA7\t0xE17E\n0xAEA8\t0xE17F\n0xAEA9\t0xE180\n0xAEAA\t0xE181\n0xAEAB\t0xE182\n0xAEAC\t0xE183\n0xAEAD\t0xE184\n0xAEAE\t0xE185\n0xAEAF\t0xE186\n0xAEB0\t0xE187\n0xAEB1\t0xE188\n0xAEB2\t0xE189\n0xAEB3\t0xE18A\n0xAEB4\t0xE18B\n0xAEB5\t0xE18C\n0xAEB6\t0xE18D\n0xAEB7\t0xE18E\n0xAEB8\t0xE18F\n0xAEB9\t0xE190\n0xAEBA\t0xE191\n0xAEBB\t0xE192\n0xAEBC\t0xE193\n0xAEBD\t0xE194\n0xAEBE\t0xE195\n0xAEBF\t0xE196\n0xAEC0\t0xE197\n0xAEC1\t0xE198\n0xAEC2\t0xE199\n0xAEC3\t0xE19A\n0xAEC4\t0xE19B\n0xAEC5\t0xE19C\n0xAEC6\t0xE19D\n0xAEC7\t0xE19E\n0xAEC8\t0xE19F\n0xAEC9\t0xE1A0\n0xAECA\t0xE1A1\n0xAECB\t0xE1A2\n0xAECC\t0xE1A3\n0xAECD\t0xE1A4\n0xAECE\t0xE1A5\n0xAECF\t0xE1A6\n0xAED0\t0xE1A7\n0xAED1\t0xE1A8\n0xAED2\t0xE1A9\n0xAED3\t0xE1AA\n0xAED4\t0xE1AB\n0xAED5\t0xE1AC\n0xAED6\t0xE1AD\n0xAED7\t0xE1AE\n0xAED8\t0xE1AF\n0xAED9\t0xE1B0\n0xAEDA\t0xE1B1\n0xAEDB\t0xE1B2\n0xAEDC\t0xE1B3\n0xAEDD\t0xE1B4\n0xAEDE\t0xE1B5\n0xAEDF\t0xE1B6\n0xAEE0\t0xE1B7\n0xAEE1\t0xE1B8\n0xAEE2\t0xE1B9\n0xAEE3\t0xE1BA\n0xAEE4\t0xE1BB\n0xAEE5\t0xE1BC\n0xAEE6\t0xE1BD\n0xAEE7\t0xE1BE\n0xAEE8\t0xE1BF\n0xAEE9\t0xE1C0\n0xAEEA\t0xE1C1\n0xAEEB\t0xE1C2\n0xAEEC\t0xE1C3\n0xAEED\t0xE1C4\n0xAEEE\t0xE1C5\n0xAEEF\t0xE1C6\n0xAEF0\t0xE1C7\n0xAEF1\t0xE1C8\n0xAEF2\t0xE1C9\n0xAEF3\t0xE1CA\n0xAEF4\t0xE1CB\n0xAEF5\t0xE1CC\n0xAEF6\t0xE1CD\n0xAEF7\t0xE1CE\n0xAEF8\t0xE1CF\n0xAEF9\t0xE1D0\n0xAEFA\t0xE1D1\n0xAEFB\t0xE1D2\n0xAEFC\t0xE1D3\n0xAEFD\t0xE1D4\n0xAEFE\t0xE1D5\n0xAF40\t0x7588\n0xAF41\t0x7589\n0xAF42\t0x758A\n0xAF43\t0x758C\n0xAF44\t0x758D\n0xAF45\t0x758E\n0xAF46\t0x7590\n0xAF47\t0x7593\n0xAF48\t0x7595\n0xAF49\t0x7598\n0xAF4A\t0x759B\n0xAF4B\t0x759C\n0xAF4C\t0x759E\n0xAF4D\t0x75A2\n0xAF4E\t0x75A6\n0xAF4F\t0x75A7\n0xAF50\t0x75A8\n0xAF51\t0x75A9\n0xAF52\t0x75AA\n0xAF53\t0x75AD\n0xAF54\t0x75B6\n0xAF55\t0x75B7\n0xAF56\t0x75BA\n0xAF57\t0x75BB\n0xAF58\t0x75BF\n0xAF59\t0x75C0\n0xAF5A\t0x75C1\n0xAF5B\t0x75C6\n0xAF5C\t0x75CB\n0xAF5D\t0x75CC\n0xAF5E\t0x75CE\n0xAF5F\t0x75CF\n0xAF60\t0x75D0\n0xAF61\t0x75D1\n0xAF62\t0x75D3\n0xAF63\t0x75D7\n0xAF64\t0x75D9\n0xAF65\t0x75DA\n0xAF66\t0x75DC\n0xAF67\t0x75DD\n0xAF68\t0x75DF\n0xAF69\t0x75E0\n0xAF6A\t0x75E1\n0xAF6B\t0x75E5\n0xAF6C\t0x75E9\n0xAF6D\t0x75EC\n0xAF6E\t0x75ED\n0xAF6F\t0x75EE\n0xAF70\t0x75EF\n0xAF71\t0x75F2\n0xAF72\t0x75F3\n0xAF73\t0x75F5\n0xAF74\t0x75F6\n0xAF75\t0x75F7\n0xAF76\t0x75F8\n0xAF77\t0x75FA\n0xAF78\t0x75FB\n0xAF79\t0x75FD\n0xAF7A\t0x75FE\n0xAF7B\t0x7602\n0xAF7C\t0x7604\n0xAF7D\t0x7606\n0xAF7E\t0x7607\n0xAF80\t0x7608\n0xAF81\t0x7609\n0xAF82\t0x760B\n0xAF83\t0x760D\n0xAF84\t0x760E\n0xAF85\t0x760F\n0xAF86\t0x7611\n0xAF87\t0x7612\n0xAF88\t0x7613\n0xAF89\t0x7614\n0xAF8A\t0x7616\n0xAF8B\t0x761A\n0xAF8C\t0x761C\n0xAF8D\t0x761D\n0xAF8E\t0x761E\n0xAF8F\t0x7621\n0xAF90\t0x7623\n0xAF91\t0x7627\n0xAF92\t0x7628\n0xAF93\t0x762C\n0xAF94\t0x762E\n0xAF95\t0x762F\n0xAF96\t0x7631\n0xAF97\t0x7632\n0xAF98\t0x7636\n0xAF99\t0x7637\n0xAF9A\t0x7639\n0xAF9B\t0x763A\n0xAF9C\t0x763B\n0xAF9D\t0x763D\n0xAF9E\t0x7641\n0xAF9F\t0x7642\n0xAFA0\t0x7644\n0xAFA1\t0xE1D6\n0xAFA2\t0xE1D7\n0xAFA3\t0xE1D8\n0xAFA4\t0xE1D9\n0xAFA5\t0xE1DA\n0xAFA6\t0xE1DB\n0xAFA7\t0xE1DC\n0xAFA8\t0xE1DD\n0xAFA9\t0xE1DE\n0xAFAA\t0xE1DF\n0xAFAB\t0xE1E0\n0xAFAC\t0xE1E1\n0xAFAD\t0xE1E2\n0xAFAE\t0xE1E3\n0xAFAF\t0xE1E4\n0xAFB0\t0xE1E5\n0xAFB1\t0xE1E6\n0xAFB2\t0xE1E7\n0xAFB3\t0xE1E8\n0xAFB4\t0xE1E9\n0xAFB5\t0xE1EA\n0xAFB6\t0xE1EB\n0xAFB7\t0xE1EC\n0xAFB8\t0xE1ED\n0xAFB9\t0xE1EE\n0xAFBA\t0xE1EF\n0xAFBB\t0xE1F0\n0xAFBC\t0xE1F1\n0xAFBD\t0xE1F2\n0xAFBE\t0xE1F3\n0xAFBF\t0xE1F4\n0xAFC0\t0xE1F5\n0xAFC1\t0xE1F6\n0xAFC2\t0xE1F7\n0xAFC3\t0xE1F8\n0xAFC4\t0xE1F9\n0xAFC5\t0xE1FA\n0xAFC6\t0xE1FB\n0xAFC7\t0xE1FC\n0xAFC8\t0xE1FD\n0xAFC9\t0xE1FE\n0xAFCA\t0xE1FF\n0xAFCB\t0xE200\n0xAFCC\t0xE201\n0xAFCD\t0xE202\n0xAFCE\t0xE203\n0xAFCF\t0xE204\n0xAFD0\t0xE205\n0xAFD1\t0xE206\n0xAFD2\t0xE207\n0xAFD3\t0xE208\n0xAFD4\t0xE209\n0xAFD5\t0xE20A\n0xAFD6\t0xE20B\n0xAFD7\t0xE20C\n0xAFD8\t0xE20D\n0xAFD9\t0xE20E\n0xAFDA\t0xE20F\n0xAFDB\t0xE210\n0xAFDC\t0xE211\n0xAFDD\t0xE212\n0xAFDE\t0xE213\n0xAFDF\t0xE214\n0xAFE0\t0xE215\n0xAFE1\t0xE216\n0xAFE2\t0xE217\n0xAFE3\t0xE218\n0xAFE4\t0xE219\n0xAFE5\t0xE21A\n0xAFE6\t0xE21B\n0xAFE7\t0xE21C\n0xAFE8\t0xE21D\n0xAFE9\t0xE21E\n0xAFEA\t0xE21F\n0xAFEB\t0xE220\n0xAFEC\t0xE221\n0xAFED\t0xE222\n0xAFEE\t0xE223\n0xAFEF\t0xE224\n0xAFF0\t0xE225\n0xAFF1\t0xE226\n0xAFF2\t0xE227\n0xAFF3\t0xE228\n0xAFF4\t0xE229\n0xAFF5\t0xE22A\n0xAFF6\t0xE22B\n0xAFF7\t0xE22C\n0xAFF8\t0xE22D\n0xAFF9\t0xE22E\n0xAFFA\t0xE22F\n0xAFFB\t0xE230\n0xAFFC\t0xE231\n0xAFFD\t0xE232\n0xAFFE\t0xE233\n0xB040\t0x7645\n0xB041\t0x7646\n0xB042\t0x7647\n0xB043\t0x7648\n0xB044\t0x7649\n0xB045\t0x764A\n0xB046\t0x764B\n0xB047\t0x764E\n0xB048\t0x764F\n0xB049\t0x7650\n0xB04A\t0x7651\n0xB04B\t0x7652\n0xB04C\t0x7653\n0xB04D\t0x7655\n0xB04E\t0x7657\n0xB04F\t0x7658\n0xB050\t0x7659\n0xB051\t0x765A\n0xB052\t0x765B\n0xB053\t0x765D\n0xB054\t0x765F\n0xB055\t0x7660\n0xB056\t0x7661\n0xB057\t0x7662\n0xB058\t0x7664\n0xB059\t0x7665\n0xB05A\t0x7666\n0xB05B\t0x7667\n0xB05C\t0x7668\n0xB05D\t0x7669\n0xB05E\t0x766A\n0xB05F\t0x766C\n0xB060\t0x766D\n0xB061\t0x766E\n0xB062\t0x7670\n0xB063\t0x7671\n0xB064\t0x7672\n0xB065\t0x7673\n0xB066\t0x7674\n0xB067\t0x7675\n0xB068\t0x7676\n0xB069\t0x7677\n0xB06A\t0x7679\n0xB06B\t0x767A\n0xB06C\t0x767C\n0xB06D\t0x767F\n0xB06E\t0x7680\n0xB06F\t0x7681\n0xB070\t0x7683\n0xB071\t0x7685\n0xB072\t0x7689\n0xB073\t0x768A\n0xB074\t0x768C\n0xB075\t0x768D\n0xB076\t0x768F\n0xB077\t0x7690\n0xB078\t0x7692\n0xB079\t0x7694\n0xB07A\t0x7695\n0xB07B\t0x7697\n0xB07C\t0x7698\n0xB07D\t0x769A\n0xB07E\t0x769B\n0xB080\t0x769C\n0xB081\t0x769D\n0xB082\t0x769E\n0xB083\t0x769F\n0xB084\t0x76A0\n0xB085\t0x76A1\n0xB086\t0x76A2\n0xB087\t0x76A3\n0xB088\t0x76A5\n0xB089\t0x76A6\n0xB08A\t0x76A7\n0xB08B\t0x76A8\n0xB08C\t0x76A9\n0xB08D\t0x76AA\n0xB08E\t0x76AB\n0xB08F\t0x76AC\n0xB090\t0x76AD\n0xB091\t0x76AF\n0xB092\t0x76B0\n0xB093\t0x76B3\n0xB094\t0x76B5\n0xB095\t0x76B6\n0xB096\t0x76B7\n0xB097\t0x76B8\n0xB098\t0x76B9\n0xB099\t0x76BA\n0xB09A\t0x76BB\n0xB09B\t0x76BC\n0xB09C\t0x76BD\n0xB09D\t0x76BE\n0xB09E\t0x76C0\n0xB09F\t0x76C1\n0xB0A0\t0x76C3\n0xB0A1\t0x554A\n0xB0A2\t0x963F\n0xB0A3\t0x57C3\n0xB0A4\t0x6328\n0xB0A5\t0x54CE\n0xB0A6\t0x5509\n0xB0A7\t0x54C0\n0xB0A8\t0x7691\n0xB0A9\t0x764C\n0xB0AA\t0x853C\n0xB0AB\t0x77EE\n0xB0AC\t0x827E\n0xB0AD\t0x788D\n0xB0AE\t0x7231\n0xB0AF\t0x9698\n0xB0B0\t0x978D\n0xB0B1\t0x6C28\n0xB0B2\t0x5B89\n0xB0B3\t0x4FFA\n0xB0B4\t0x6309\n0xB0B5\t0x6697\n0xB0B6\t0x5CB8\n0xB0B7\t0x80FA\n0xB0B8\t0x6848\n0xB0B9\t0x80AE\n0xB0BA\t0x6602\n0xB0BB\t0x76CE\n0xB0BC\t0x51F9\n0xB0BD\t0x6556\n0xB0BE\t0x71AC\n0xB0BF\t0x7FF1\n0xB0C0\t0x8884\n0xB0C1\t0x50B2\n0xB0C2\t0x5965\n0xB0C3\t0x61CA\n0xB0C4\t0x6FB3\n0xB0C5\t0x82AD\n0xB0C6\t0x634C\n0xB0C7\t0x6252\n0xB0C8\t0x53ED\n0xB0C9\t0x5427\n0xB0CA\t0x7B06\n0xB0CB\t0x516B\n0xB0CC\t0x75A4\n0xB0CD\t0x5DF4\n0xB0CE\t0x62D4\n0xB0CF\t0x8DCB\n0xB0D0\t0x9776\n0xB0D1\t0x628A\n0xB0D2\t0x8019\n0xB0D3\t0x575D\n0xB0D4\t0x9738\n0xB0D5\t0x7F62\n0xB0D6\t0x7238\n0xB0D7\t0x767D\n0xB0D8\t0x67CF\n0xB0D9\t0x767E\n0xB0DA\t0x6446\n0xB0DB\t0x4F70\n0xB0DC\t0x8D25\n0xB0DD\t0x62DC\n0xB0DE\t0x7A17\n0xB0DF\t0x6591\n0xB0E0\t0x73ED\n0xB0E1\t0x642C\n0xB0E2\t0x6273\n0xB0E3\t0x822C\n0xB0E4\t0x9881\n0xB0E5\t0x677F\n0xB0E6\t0x7248\n0xB0E7\t0x626E\n0xB0E8\t0x62CC\n0xB0E9\t0x4F34\n0xB0EA\t0x74E3\n0xB0EB\t0x534A\n0xB0EC\t0x529E\n0xB0ED\t0x7ECA\n0xB0EE\t0x90A6\n0xB0EF\t0x5E2E\n0xB0F0\t0x6886\n0xB0F1\t0x699C\n0xB0F2\t0x8180\n0xB0F3\t0x7ED1\n0xB0F4\t0x68D2\n0xB0F5\t0x78C5\n0xB0F6\t0x868C\n0xB0F7\t0x9551\n0xB0F8\t0x508D\n0xB0F9\t0x8C24\n0xB0FA\t0x82DE\n0xB0FB\t0x80DE\n0xB0FC\t0x5305\n0xB0FD\t0x8912\n0xB0FE\t0x5265\n0xB140\t0x76C4\n0xB141\t0x76C7\n0xB142\t0x76C9\n0xB143\t0x76CB\n0xB144\t0x76CC\n0xB145\t0x76D3\n0xB146\t0x76D5\n0xB147\t0x76D9\n0xB148\t0x76DA\n0xB149\t0x76DC\n0xB14A\t0x76DD\n0xB14B\t0x76DE\n0xB14C\t0x76E0\n0xB14D\t0x76E1\n0xB14E\t0x76E2\n0xB14F\t0x76E3\n0xB150\t0x76E4\n0xB151\t0x76E6\n0xB152\t0x76E7\n0xB153\t0x76E8\n0xB154\t0x76E9\n0xB155\t0x76EA\n0xB156\t0x76EB\n0xB157\t0x76EC\n0xB158\t0x76ED\n0xB159\t0x76F0\n0xB15A\t0x76F3\n0xB15B\t0x76F5\n0xB15C\t0x76F6\n0xB15D\t0x76F7\n0xB15E\t0x76FA\n0xB15F\t0x76FB\n0xB160\t0x76FD\n0xB161\t0x76FF\n0xB162\t0x7700\n0xB163\t0x7702\n0xB164\t0x7703\n0xB165\t0x7705\n0xB166\t0x7706\n0xB167\t0x770A\n0xB168\t0x770C\n0xB169\t0x770E\n0xB16A\t0x770F\n0xB16B\t0x7710\n0xB16C\t0x7711\n0xB16D\t0x7712\n0xB16E\t0x7713\n0xB16F\t0x7714\n0xB170\t0x7715\n0xB171\t0x7716\n0xB172\t0x7717\n0xB173\t0x7718\n0xB174\t0x771B\n0xB175\t0x771C\n0xB176\t0x771D\n0xB177\t0x771E\n0xB178\t0x7721\n0xB179\t0x7723\n0xB17A\t0x7724\n0xB17B\t0x7725\n0xB17C\t0x7727\n0xB17D\t0x772A\n0xB17E\t0x772B\n0xB180\t0x772C\n0xB181\t0x772E\n0xB182\t0x7730\n0xB183\t0x7731\n0xB184\t0x7732\n0xB185\t0x7733\n0xB186\t0x7734\n0xB187\t0x7739\n0xB188\t0x773B\n0xB189\t0x773D\n0xB18A\t0x773E\n0xB18B\t0x773F\n0xB18C\t0x7742\n0xB18D\t0x7744\n0xB18E\t0x7745\n0xB18F\t0x7746\n0xB190\t0x7748\n0xB191\t0x7749\n0xB192\t0x774A\n0xB193\t0x774B\n0xB194\t0x774C\n0xB195\t0x774D\n0xB196\t0x774E\n0xB197\t0x774F\n0xB198\t0x7752\n0xB199\t0x7753\n0xB19A\t0x7754\n0xB19B\t0x7755\n0xB19C\t0x7756\n0xB19D\t0x7757\n0xB19E\t0x7758\n0xB19F\t0x7759\n0xB1A0\t0x775C\n0xB1A1\t0x8584\n0xB1A2\t0x96F9\n0xB1A3\t0x4FDD\n0xB1A4\t0x5821\n0xB1A5\t0x9971\n0xB1A6\t0x5B9D\n0xB1A7\t0x62B1\n0xB1A8\t0x62A5\n0xB1A9\t0x66B4\n0xB1AA\t0x8C79\n0xB1AB\t0x9C8D\n0xB1AC\t0x7206\n0xB1AD\t0x676F\n0xB1AE\t0x7891\n0xB1AF\t0x60B2\n0xB1B0\t0x5351\n0xB1B1\t0x5317\n0xB1B2\t0x8F88\n0xB1B3\t0x80CC\n0xB1B4\t0x8D1D\n0xB1B5\t0x94A1\n0xB1B6\t0x500D\n0xB1B7\t0x72C8\n0xB1B8\t0x5907\n0xB1B9\t0x60EB\n0xB1BA\t0x7119\n0xB1BB\t0x88AB\n0xB1BC\t0x5954\n0xB1BD\t0x82EF\n0xB1BE\t0x672C\n0xB1BF\t0x7B28\n0xB1C0\t0x5D29\n0xB1C1\t0x7EF7\n0xB1C2\t0x752D\n0xB1C3\t0x6CF5\n0xB1C4\t0x8E66\n0xB1C5\t0x8FF8\n0xB1C6\t0x903C\n0xB1C7\t0x9F3B\n0xB1C8\t0x6BD4\n0xB1C9\t0x9119\n0xB1CA\t0x7B14\n0xB1CB\t0x5F7C\n0xB1CC\t0x78A7\n0xB1CD\t0x84D6\n0xB1CE\t0x853D\n0xB1CF\t0x6BD5\n0xB1D0\t0x6BD9\n0xB1D1\t0x6BD6\n0xB1D2\t0x5E01\n0xB1D3\t0x5E87\n0xB1D4\t0x75F9\n0xB1D5\t0x95ED\n0xB1D6\t0x655D\n0xB1D7\t0x5F0A\n0xB1D8\t0x5FC5\n0xB1D9\t0x8F9F\n0xB1DA\t0x58C1\n0xB1DB\t0x81C2\n0xB1DC\t0x907F\n0xB1DD\t0x965B\n0xB1DE\t0x97AD\n0xB1DF\t0x8FB9\n0xB1E0\t0x7F16\n0xB1E1\t0x8D2C\n0xB1E2\t0x6241\n0xB1E3\t0x4FBF\n0xB1E4\t0x53D8\n0xB1E5\t0x535E\n0xB1E6\t0x8FA8\n0xB1E7\t0x8FA9\n0xB1E8\t0x8FAB\n0xB1E9\t0x904D\n0xB1EA\t0x6807\n0xB1EB\t0x5F6A\n0xB1EC\t0x8198\n0xB1ED\t0x8868\n0xB1EE\t0x9CD6\n0xB1EF\t0x618B\n0xB1F0\t0x522B\n0xB1F1\t0x762A\n0xB1F2\t0x5F6C\n0xB1F3\t0x658C\n0xB1F4\t0x6FD2\n0xB1F5\t0x6EE8\n0xB1F6\t0x5BBE\n0xB1F7\t0x6448\n0xB1F8\t0x5175\n0xB1F9\t0x51B0\n0xB1FA\t0x67C4\n0xB1FB\t0x4E19\n0xB1FC\t0x79C9\n0xB1FD\t0x997C\n0xB1FE\t0x70B3\n0xB240\t0x775D\n0xB241\t0x775E\n0xB242\t0x775F\n0xB243\t0x7760\n0xB244\t0x7764\n0xB245\t0x7767\n0xB246\t0x7769\n0xB247\t0x776A\n0xB248\t0x776D\n0xB249\t0x776E\n0xB24A\t0x776F\n0xB24B\t0x7770\n0xB24C\t0x7771\n0xB24D\t0x7772\n0xB24E\t0x7773\n0xB24F\t0x7774\n0xB250\t0x7775\n0xB251\t0x7776\n0xB252\t0x7777\n0xB253\t0x7778\n0xB254\t0x777A\n0xB255\t0x777B\n0xB256\t0x777C\n0xB257\t0x7781\n0xB258\t0x7782\n0xB259\t0x7783\n0xB25A\t0x7786\n0xB25B\t0x7787\n0xB25C\t0x7788\n0xB25D\t0x7789\n0xB25E\t0x778A\n0xB25F\t0x778B\n0xB260\t0x778F\n0xB261\t0x7790\n0xB262\t0x7793\n0xB263\t0x7794\n0xB264\t0x7795\n0xB265\t0x7796\n0xB266\t0x7797\n0xB267\t0x7798\n0xB268\t0x7799\n0xB269\t0x779A\n0xB26A\t0x779B\n0xB26B\t0x779C\n0xB26C\t0x779D\n0xB26D\t0x779E\n0xB26E\t0x77A1\n0xB26F\t0x77A3\n0xB270\t0x77A4\n0xB271\t0x77A6\n0xB272\t0x77A8\n0xB273\t0x77AB\n0xB274\t0x77AD\n0xB275\t0x77AE\n0xB276\t0x77AF\n0xB277\t0x77B1\n0xB278\t0x77B2\n0xB279\t0x77B4\n0xB27A\t0x77B6\n0xB27B\t0x77B7\n0xB27C\t0x77B8\n0xB27D\t0x77B9\n0xB27E\t0x77BA\n0xB280\t0x77BC\n0xB281\t0x77BE\n0xB282\t0x77C0\n0xB283\t0x77C1\n0xB284\t0x77C2\n0xB285\t0x77C3\n0xB286\t0x77C4\n0xB287\t0x77C5\n0xB288\t0x77C6\n0xB289\t0x77C7\n0xB28A\t0x77C8\n0xB28B\t0x77C9\n0xB28C\t0x77CA\n0xB28D\t0x77CB\n0xB28E\t0x77CC\n0xB28F\t0x77CE\n0xB290\t0x77CF\n0xB291\t0x77D0\n0xB292\t0x77D1\n0xB293\t0x77D2\n0xB294\t0x77D3\n0xB295\t0x77D4\n0xB296\t0x77D5\n0xB297\t0x77D6\n0xB298\t0x77D8\n0xB299\t0x77D9\n0xB29A\t0x77DA\n0xB29B\t0x77DD\n0xB29C\t0x77DE\n0xB29D\t0x77DF\n0xB29E\t0x77E0\n0xB29F\t0x77E1\n0xB2A0\t0x77E4\n0xB2A1\t0x75C5\n0xB2A2\t0x5E76\n0xB2A3\t0x73BB\n0xB2A4\t0x83E0\n0xB2A5\t0x64AD\n0xB2A6\t0x62E8\n0xB2A7\t0x94B5\n0xB2A8\t0x6CE2\n0xB2A9\t0x535A\n0xB2AA\t0x52C3\n0xB2AB\t0x640F\n0xB2AC\t0x94C2\n0xB2AD\t0x7B94\n0xB2AE\t0x4F2F\n0xB2AF\t0x5E1B\n0xB2B0\t0x8236\n0xB2B1\t0x8116\n0xB2B2\t0x818A\n0xB2B3\t0x6E24\n0xB2B4\t0x6CCA\n0xB2B5\t0x9A73\n0xB2B6\t0x6355\n0xB2B7\t0x535C\n0xB2B8\t0x54FA\n0xB2B9\t0x8865\n0xB2BA\t0x57E0\n0xB2BB\t0x4E0D\n0xB2BC\t0x5E03\n0xB2BD\t0x6B65\n0xB2BE\t0x7C3F\n0xB2BF\t0x90E8\n0xB2C0\t0x6016\n0xB2C1\t0x64E6\n0xB2C2\t0x731C\n0xB2C3\t0x88C1\n0xB2C4\t0x6750\n0xB2C5\t0x624D\n0xB2C6\t0x8D22\n0xB2C7\t0x776C\n0xB2C8\t0x8E29\n0xB2C9\t0x91C7\n0xB2CA\t0x5F69\n0xB2CB\t0x83DC\n0xB2CC\t0x8521\n0xB2CD\t0x9910\n0xB2CE\t0x53C2\n0xB2CF\t0x8695\n0xB2D0\t0x6B8B\n0xB2D1\t0x60ED\n0xB2D2\t0x60E8\n0xB2D3\t0x707F\n0xB2D4\t0x82CD\n0xB2D5\t0x8231\n0xB2D6\t0x4ED3\n0xB2D7\t0x6CA7\n0xB2D8\t0x85CF\n0xB2D9\t0x64CD\n0xB2DA\t0x7CD9\n0xB2DB\t0x69FD\n0xB2DC\t0x66F9\n0xB2DD\t0x8349\n0xB2DE\t0x5395\n0xB2DF\t0x7B56\n0xB2E0\t0x4FA7\n0xB2E1\t0x518C\n0xB2E2\t0x6D4B\n0xB2E3\t0x5C42\n0xB2E4\t0x8E6D\n0xB2E5\t0x63D2\n0xB2E6\t0x53C9\n0xB2E7\t0x832C\n0xB2E8\t0x8336\n0xB2E9\t0x67E5\n0xB2EA\t0x78B4\n0xB2EB\t0x643D\n0xB2EC\t0x5BDF\n0xB2ED\t0x5C94\n0xB2EE\t0x5DEE\n0xB2EF\t0x8BE7\n0xB2F0\t0x62C6\n0xB2F1\t0x67F4\n0xB2F2\t0x8C7A\n0xB2F3\t0x6400\n0xB2F4\t0x63BA\n0xB2F5\t0x8749\n0xB2F6\t0x998B\n0xB2F7\t0x8C17\n0xB2F8\t0x7F20\n0xB2F9\t0x94F2\n0xB2FA\t0x4EA7\n0xB2FB\t0x9610\n0xB2FC\t0x98A4\n0xB2FD\t0x660C\n0xB2FE\t0x7316\n0xB340\t0x77E6\n0xB341\t0x77E8\n0xB342\t0x77EA\n0xB343\t0x77EF\n0xB344\t0x77F0\n0xB345\t0x77F1\n0xB346\t0x77F2\n0xB347\t0x77F4\n0xB348\t0x77F5\n0xB349\t0x77F7\n0xB34A\t0x77F9\n0xB34B\t0x77FA\n0xB34C\t0x77FB\n0xB34D\t0x77FC\n0xB34E\t0x7803\n0xB34F\t0x7804\n0xB350\t0x7805\n0xB351\t0x7806\n0xB352\t0x7807\n0xB353\t0x7808\n0xB354\t0x780A\n0xB355\t0x780B\n0xB356\t0x780E\n0xB357\t0x780F\n0xB358\t0x7810\n0xB359\t0x7813\n0xB35A\t0x7815\n0xB35B\t0x7819\n0xB35C\t0x781B\n0xB35D\t0x781E\n0xB35E\t0x7820\n0xB35F\t0x7821\n0xB360\t0x7822\n0xB361\t0x7824\n0xB362\t0x7828\n0xB363\t0x782A\n0xB364\t0x782B\n0xB365\t0x782E\n0xB366\t0x782F\n0xB367\t0x7831\n0xB368\t0x7832\n0xB369\t0x7833\n0xB36A\t0x7835\n0xB36B\t0x7836\n0xB36C\t0x783D\n0xB36D\t0x783F\n0xB36E\t0x7841\n0xB36F\t0x7842\n0xB370\t0x7843\n0xB371\t0x7844\n0xB372\t0x7846\n0xB373\t0x7848\n0xB374\t0x7849\n0xB375\t0x784A\n0xB376\t0x784B\n0xB377\t0x784D\n0xB378\t0x784F\n0xB379\t0x7851\n0xB37A\t0x7853\n0xB37B\t0x7854\n0xB37C\t0x7858\n0xB37D\t0x7859\n0xB37E\t0x785A\n0xB380\t0x785B\n0xB381\t0x785C\n0xB382\t0x785E\n0xB383\t0x785F\n0xB384\t0x7860\n0xB385\t0x7861\n0xB386\t0x7862\n0xB387\t0x7863\n0xB388\t0x7864\n0xB389\t0x7865\n0xB38A\t0x7866\n0xB38B\t0x7867\n0xB38C\t0x7868\n0xB38D\t0x7869\n0xB38E\t0x786F\n0xB38F\t0x7870\n0xB390\t0x7871\n0xB391\t0x7872\n0xB392\t0x7873\n0xB393\t0x7874\n0xB394\t0x7875\n0xB395\t0x7876\n0xB396\t0x7878\n0xB397\t0x7879\n0xB398\t0x787A\n0xB399\t0x787B\n0xB39A\t0x787D\n0xB39B\t0x787E\n0xB39C\t0x787F\n0xB39D\t0x7880\n0xB39E\t0x7881\n0xB39F\t0x7882\n0xB3A0\t0x7883\n0xB3A1\t0x573A\n0xB3A2\t0x5C1D\n0xB3A3\t0x5E38\n0xB3A4\t0x957F\n0xB3A5\t0x507F\n0xB3A6\t0x80A0\n0xB3A7\t0x5382\n0xB3A8\t0x655E\n0xB3A9\t0x7545\n0xB3AA\t0x5531\n0xB3AB\t0x5021\n0xB3AC\t0x8D85\n0xB3AD\t0x6284\n0xB3AE\t0x949E\n0xB3AF\t0x671D\n0xB3B0\t0x5632\n0xB3B1\t0x6F6E\n0xB3B2\t0x5DE2\n0xB3B3\t0x5435\n0xB3B4\t0x7092\n0xB3B5\t0x8F66\n0xB3B6\t0x626F\n0xB3B7\t0x64A4\n0xB3B8\t0x63A3\n0xB3B9\t0x5F7B\n0xB3BA\t0x6F88\n0xB3BB\t0x90F4\n0xB3BC\t0x81E3\n0xB3BD\t0x8FB0\n0xB3BE\t0x5C18\n0xB3BF\t0x6668\n0xB3C0\t0x5FF1\n0xB3C1\t0x6C89\n0xB3C2\t0x9648\n0xB3C3\t0x8D81\n0xB3C4\t0x886C\n0xB3C5\t0x6491\n0xB3C6\t0x79F0\n0xB3C7\t0x57CE\n0xB3C8\t0x6A59\n0xB3C9\t0x6210\n0xB3CA\t0x5448\n0xB3CB\t0x4E58\n0xB3CC\t0x7A0B\n0xB3CD\t0x60E9\n0xB3CE\t0x6F84\n0xB3CF\t0x8BDA\n0xB3D0\t0x627F\n0xB3D1\t0x901E\n0xB3D2\t0x9A8B\n0xB3D3\t0x79E4\n0xB3D4\t0x5403\n0xB3D5\t0x75F4\n0xB3D6\t0x6301\n0xB3D7\t0x5319\n0xB3D8\t0x6C60\n0xB3D9\t0x8FDF\n0xB3DA\t0x5F1B\n0xB3DB\t0x9A70\n0xB3DC\t0x803B\n0xB3DD\t0x9F7F\n0xB3DE\t0x4F88\n0xB3DF\t0x5C3A\n0xB3E0\t0x8D64\n0xB3E1\t0x7FC5\n0xB3E2\t0x65A5\n0xB3E3\t0x70BD\n0xB3E4\t0x5145\n0xB3E5\t0x51B2\n0xB3E6\t0x866B\n0xB3E7\t0x5D07\n0xB3E8\t0x5BA0\n0xB3E9\t0x62BD\n0xB3EA\t0x916C\n0xB3EB\t0x7574\n0xB3EC\t0x8E0C\n0xB3ED\t0x7A20\n0xB3EE\t0x6101\n0xB3EF\t0x7B79\n0xB3F0\t0x4EC7\n0xB3F1\t0x7EF8\n0xB3F2\t0x7785\n0xB3F3\t0x4E11\n0xB3F4\t0x81ED\n0xB3F5\t0x521D\n0xB3F6\t0x51FA\n0xB3F7\t0x6A71\n0xB3F8\t0x53A8\n0xB3F9\t0x8E87\n0xB3FA\t0x9504\n0xB3FB\t0x96CF\n0xB3FC\t0x6EC1\n0xB3FD\t0x9664\n0xB3FE\t0x695A\n0xB440\t0x7884\n0xB441\t0x7885\n0xB442\t0x7886\n0xB443\t0x7888\n0xB444\t0x788A\n0xB445\t0x788B\n0xB446\t0x788F\n0xB447\t0x7890\n0xB448\t0x7892\n0xB449\t0x7894\n0xB44A\t0x7895\n0xB44B\t0x7896\n0xB44C\t0x7899\n0xB44D\t0x789D\n0xB44E\t0x789E\n0xB44F\t0x78A0\n0xB450\t0x78A2\n0xB451\t0x78A4\n0xB452\t0x78A6\n0xB453\t0x78A8\n0xB454\t0x78A9\n0xB455\t0x78AA\n0xB456\t0x78AB\n0xB457\t0x78AC\n0xB458\t0x78AD\n0xB459\t0x78AE\n0xB45A\t0x78AF\n0xB45B\t0x78B5\n0xB45C\t0x78B6\n0xB45D\t0x78B7\n0xB45E\t0x78B8\n0xB45F\t0x78BA\n0xB460\t0x78BB\n0xB461\t0x78BC\n0xB462\t0x78BD\n0xB463\t0x78BF\n0xB464\t0x78C0\n0xB465\t0x78C2\n0xB466\t0x78C3\n0xB467\t0x78C4\n0xB468\t0x78C6\n0xB469\t0x78C7\n0xB46A\t0x78C8\n0xB46B\t0x78CC\n0xB46C\t0x78CD\n0xB46D\t0x78CE\n0xB46E\t0x78CF\n0xB46F\t0x78D1\n0xB470\t0x78D2\n0xB471\t0x78D3\n0xB472\t0x78D6\n0xB473\t0x78D7\n0xB474\t0x78D8\n0xB475\t0x78DA\n0xB476\t0x78DB\n0xB477\t0x78DC\n0xB478\t0x78DD\n0xB479\t0x78DE\n0xB47A\t0x78DF\n0xB47B\t0x78E0\n0xB47C\t0x78E1\n0xB47D\t0x78E2\n0xB47E\t0x78E3\n0xB480\t0x78E4\n0xB481\t0x78E5\n0xB482\t0x78E6\n0xB483\t0x78E7\n0xB484\t0x78E9\n0xB485\t0x78EA\n0xB486\t0x78EB\n0xB487\t0x78ED\n0xB488\t0x78EE\n0xB489\t0x78EF\n0xB48A\t0x78F0\n0xB48B\t0x78F1\n0xB48C\t0x78F3\n0xB48D\t0x78F5\n0xB48E\t0x78F6\n0xB48F\t0x78F8\n0xB490\t0x78F9\n0xB491\t0x78FB\n0xB492\t0x78FC\n0xB493\t0x78FD\n0xB494\t0x78FE\n0xB495\t0x78FF\n0xB496\t0x7900\n0xB497\t0x7902\n0xB498\t0x7903\n0xB499\t0x7904\n0xB49A\t0x7906\n0xB49B\t0x7907\n0xB49C\t0x7908\n0xB49D\t0x7909\n0xB49E\t0x790A\n0xB49F\t0x790B\n0xB4A0\t0x790C\n0xB4A1\t0x7840\n0xB4A2\t0x50A8\n0xB4A3\t0x77D7\n0xB4A4\t0x6410\n0xB4A5\t0x89E6\n0xB4A6\t0x5904\n0xB4A7\t0x63E3\n0xB4A8\t0x5DDD\n0xB4A9\t0x7A7F\n0xB4AA\t0x693D\n0xB4AB\t0x4F20\n0xB4AC\t0x8239\n0xB4AD\t0x5598\n0xB4AE\t0x4E32\n0xB4AF\t0x75AE\n0xB4B0\t0x7A97\n0xB4B1\t0x5E62\n0xB4B2\t0x5E8A\n0xB4B3\t0x95EF\n0xB4B4\t0x521B\n0xB4B5\t0x5439\n0xB4B6\t0x708A\n0xB4B7\t0x6376\n0xB4B8\t0x9524\n0xB4B9\t0x5782\n0xB4BA\t0x6625\n0xB4BB\t0x693F\n0xB4BC\t0x9187\n0xB4BD\t0x5507\n0xB4BE\t0x6DF3\n0xB4BF\t0x7EAF\n0xB4C0\t0x8822\n0xB4C1\t0x6233\n0xB4C2\t0x7EF0\n0xB4C3\t0x75B5\n0xB4C4\t0x8328\n0xB4C5\t0x78C1\n0xB4C6\t0x96CC\n0xB4C7\t0x8F9E\n0xB4C8\t0x6148\n0xB4C9\t0x74F7\n0xB4CA\t0x8BCD\n0xB4CB\t0x6B64\n0xB4CC\t0x523A\n0xB4CD\t0x8D50\n0xB4CE\t0x6B21\n0xB4CF\t0x806A\n0xB4D0\t0x8471\n0xB4D1\t0x56F1\n0xB4D2\t0x5306\n0xB4D3\t0x4ECE\n0xB4D4\t0x4E1B\n0xB4D5\t0x51D1\n0xB4D6\t0x7C97\n0xB4D7\t0x918B\n0xB4D8\t0x7C07\n0xB4D9\t0x4FC3\n0xB4DA\t0x8E7F\n0xB4DB\t0x7BE1\n0xB4DC\t0x7A9C\n0xB4DD\t0x6467\n0xB4DE\t0x5D14\n0xB4DF\t0x50AC\n0xB4E0\t0x8106\n0xB4E1\t0x7601\n0xB4E2\t0x7CB9\n0xB4E3\t0x6DEC\n0xB4E4\t0x7FE0\n0xB4E5\t0x6751\n0xB4E6\t0x5B58\n0xB4E7\t0x5BF8\n0xB4E8\t0x78CB\n0xB4E9\t0x64AE\n0xB4EA\t0x6413\n0xB4EB\t0x63AA\n0xB4EC\t0x632B\n0xB4ED\t0x9519\n0xB4EE\t0x642D\n0xB4EF\t0x8FBE\n0xB4F0\t0x7B54\n0xB4F1\t0x7629\n0xB4F2\t0x6253\n0xB4F3\t0x5927\n0xB4F4\t0x5446\n0xB4F5\t0x6B79\n0xB4F6\t0x50A3\n0xB4F7\t0x6234\n0xB4F8\t0x5E26\n0xB4F9\t0x6B86\n0xB4FA\t0x4EE3\n0xB4FB\t0x8D37\n0xB4FC\t0x888B\n0xB4FD\t0x5F85\n0xB4FE\t0x902E\n0xB540\t0x790D\n0xB541\t0x790E\n0xB542\t0x790F\n0xB543\t0x7910\n0xB544\t0x7911\n0xB545\t0x7912\n0xB546\t0x7914\n0xB547\t0x7915\n0xB548\t0x7916\n0xB549\t0x7917\n0xB54A\t0x7918\n0xB54B\t0x7919\n0xB54C\t0x791A\n0xB54D\t0x791B\n0xB54E\t0x791C\n0xB54F\t0x791D\n0xB550\t0x791F\n0xB551\t0x7920\n0xB552\t0x7921\n0xB553\t0x7922\n0xB554\t0x7923\n0xB555\t0x7925\n0xB556\t0x7926\n0xB557\t0x7927\n0xB558\t0x7928\n0xB559\t0x7929\n0xB55A\t0x792A\n0xB55B\t0x792B\n0xB55C\t0x792C\n0xB55D\t0x792D\n0xB55E\t0x792E\n0xB55F\t0x792F\n0xB560\t0x7930\n0xB561\t0x7931\n0xB562\t0x7932\n0xB563\t0x7933\n0xB564\t0x7935\n0xB565\t0x7936\n0xB566\t0x7937\n0xB567\t0x7938\n0xB568\t0x7939\n0xB569\t0x793D\n0xB56A\t0x793F\n0xB56B\t0x7942\n0xB56C\t0x7943\n0xB56D\t0x7944\n0xB56E\t0x7945\n0xB56F\t0x7947\n0xB570\t0x794A\n0xB571\t0x794B\n0xB572\t0x794C\n0xB573\t0x794D\n0xB574\t0x794E\n0xB575\t0x794F\n0xB576\t0x7950\n0xB577\t0x7951\n0xB578\t0x7952\n0xB579\t0x7954\n0xB57A\t0x7955\n0xB57B\t0x7958\n0xB57C\t0x7959\n0xB57D\t0x7961\n0xB57E\t0x7963\n0xB580\t0x7964\n0xB581\t0x7966\n0xB582\t0x7969\n0xB583\t0x796A\n0xB584\t0x796B\n0xB585\t0x796C\n0xB586\t0x796E\n0xB587\t0x7970\n0xB588\t0x7971\n0xB589\t0x7972\n0xB58A\t0x7973\n0xB58B\t0x7974\n0xB58C\t0x7975\n0xB58D\t0x7976\n0xB58E\t0x7979\n0xB58F\t0x797B\n0xB590\t0x797C\n0xB591\t0x797D\n0xB592\t0x797E\n0xB593\t0x797F\n0xB594\t0x7982\n0xB595\t0x7983\n0xB596\t0x7986\n0xB597\t0x7987\n0xB598\t0x7988\n0xB599\t0x7989\n0xB59A\t0x798B\n0xB59B\t0x798C\n0xB59C\t0x798D\n0xB59D\t0x798E\n0xB59E\t0x7990\n0xB59F\t0x7991\n0xB5A0\t0x7992\n0xB5A1\t0x6020\n0xB5A2\t0x803D\n0xB5A3\t0x62C5\n0xB5A4\t0x4E39\n0xB5A5\t0x5355\n0xB5A6\t0x90F8\n0xB5A7\t0x63B8\n0xB5A8\t0x80C6\n0xB5A9\t0x65E6\n0xB5AA\t0x6C2E\n0xB5AB\t0x4F46\n0xB5AC\t0x60EE\n0xB5AD\t0x6DE1\n0xB5AE\t0x8BDE\n0xB5AF\t0x5F39\n0xB5B0\t0x86CB\n0xB5B1\t0x5F53\n0xB5B2\t0x6321\n0xB5B3\t0x515A\n0xB5B4\t0x8361\n0xB5B5\t0x6863\n0xB5B6\t0x5200\n0xB5B7\t0x6363\n0xB5B8\t0x8E48\n0xB5B9\t0x5012\n0xB5BA\t0x5C9B\n0xB5BB\t0x7977\n0xB5BC\t0x5BFC\n0xB5BD\t0x5230\n0xB5BE\t0x7A3B\n0xB5BF\t0x60BC\n0xB5C0\t0x9053\n0xB5C1\t0x76D7\n0xB5C2\t0x5FB7\n0xB5C3\t0x5F97\n0xB5C4\t0x7684\n0xB5C5\t0x8E6C\n0xB5C6\t0x706F\n0xB5C7\t0x767B\n0xB5C8\t0x7B49\n0xB5C9\t0x77AA\n0xB5CA\t0x51F3\n0xB5CB\t0x9093\n0xB5CC\t0x5824\n0xB5CD\t0x4F4E\n0xB5CE\t0x6EF4\n0xB5CF\t0x8FEA\n0xB5D0\t0x654C\n0xB5D1\t0x7B1B\n0xB5D2\t0x72C4\n0xB5D3\t0x6DA4\n0xB5D4\t0x7FDF\n0xB5D5\t0x5AE1\n0xB5D6\t0x62B5\n0xB5D7\t0x5E95\n0xB5D8\t0x5730\n0xB5D9\t0x8482\n0xB5DA\t0x7B2C\n0xB5DB\t0x5E1D\n0xB5DC\t0x5F1F\n0xB5DD\t0x9012\n0xB5DE\t0x7F14\n0xB5DF\t0x98A0\n0xB5E0\t0x6382\n0xB5E1\t0x6EC7\n0xB5E2\t0x7898\n0xB5E3\t0x70B9\n0xB5E4\t0x5178\n0xB5E5\t0x975B\n0xB5E6\t0x57AB\n0xB5E7\t0x7535\n0xB5E8\t0x4F43\n0xB5E9\t0x7538\n0xB5EA\t0x5E97\n0xB5EB\t0x60E6\n0xB5EC\t0x5960\n0xB5ED\t0x6DC0\n0xB5EE\t0x6BBF\n0xB5EF\t0x7889\n0xB5F0\t0x53FC\n0xB5F1\t0x96D5\n0xB5F2\t0x51CB\n0xB5F3\t0x5201\n0xB5F4\t0x6389\n0xB5F5\t0x540A\n0xB5F6\t0x9493\n0xB5F7\t0x8C03\n0xB5F8\t0x8DCC\n0xB5F9\t0x7239\n0xB5FA\t0x789F\n0xB5FB\t0x8776\n0xB5FC\t0x8FED\n0xB5FD\t0x8C0D\n0xB5FE\t0x53E0\n0xB640\t0x7993\n0xB641\t0x7994\n0xB642\t0x7995\n0xB643\t0x7996\n0xB644\t0x7997\n0xB645\t0x7998\n0xB646\t0x7999\n0xB647\t0x799B\n0xB648\t0x799C\n0xB649\t0x799D\n0xB64A\t0x799E\n0xB64B\t0x799F\n0xB64C\t0x79A0\n0xB64D\t0x79A1\n0xB64E\t0x79A2\n0xB64F\t0x79A3\n0xB650\t0x79A4\n0xB651\t0x79A5\n0xB652\t0x79A6\n0xB653\t0x79A8\n0xB654\t0x79A9\n0xB655\t0x79AA\n0xB656\t0x79AB\n0xB657\t0x79AC\n0xB658\t0x79AD\n0xB659\t0x79AE\n0xB65A\t0x79AF\n0xB65B\t0x79B0\n0xB65C\t0x79B1\n0xB65D\t0x79B2\n0xB65E\t0x79B4\n0xB65F\t0x79B5\n0xB660\t0x79B6\n0xB661\t0x79B7\n0xB662\t0x79B8\n0xB663\t0x79BC\n0xB664\t0x79BF\n0xB665\t0x79C2\n0xB666\t0x79C4\n0xB667\t0x79C5\n0xB668\t0x79C7\n0xB669\t0x79C8\n0xB66A\t0x79CA\n0xB66B\t0x79CC\n0xB66C\t0x79CE\n0xB66D\t0x79CF\n0xB66E\t0x79D0\n0xB66F\t0x79D3\n0xB670\t0x79D4\n0xB671\t0x79D6\n0xB672\t0x79D7\n0xB673\t0x79D9\n0xB674\t0x79DA\n0xB675\t0x79DB\n0xB676\t0x79DC\n0xB677\t0x79DD\n0xB678\t0x79DE\n0xB679\t0x79E0\n0xB67A\t0x79E1\n0xB67B\t0x79E2\n0xB67C\t0x79E5\n0xB67D\t0x79E8\n0xB67E\t0x79EA\n0xB680\t0x79EC\n0xB681\t0x79EE\n0xB682\t0x79F1\n0xB683\t0x79F2\n0xB684\t0x79F3\n0xB685\t0x79F4\n0xB686\t0x79F5\n0xB687\t0x79F6\n0xB688\t0x79F7\n0xB689\t0x79F9\n0xB68A\t0x79FA\n0xB68B\t0x79FC\n0xB68C\t0x79FE\n0xB68D\t0x79FF\n0xB68E\t0x7A01\n0xB68F\t0x7A04\n0xB690\t0x7A05\n0xB691\t0x7A07\n0xB692\t0x7A08\n0xB693\t0x7A09\n0xB694\t0x7A0A\n0xB695\t0x7A0C\n0xB696\t0x7A0F\n0xB697\t0x7A10\n0xB698\t0x7A11\n0xB699\t0x7A12\n0xB69A\t0x7A13\n0xB69B\t0x7A15\n0xB69C\t0x7A16\n0xB69D\t0x7A18\n0xB69E\t0x7A19\n0xB69F\t0x7A1B\n0xB6A0\t0x7A1C\n0xB6A1\t0x4E01\n0xB6A2\t0x76EF\n0xB6A3\t0x53EE\n0xB6A4\t0x9489\n0xB6A5\t0x9876\n0xB6A6\t0x9F0E\n0xB6A7\t0x952D\n0xB6A8\t0x5B9A\n0xB6A9\t0x8BA2\n0xB6AA\t0x4E22\n0xB6AB\t0x4E1C\n0xB6AC\t0x51AC\n0xB6AD\t0x8463\n0xB6AE\t0x61C2\n0xB6AF\t0x52A8\n0xB6B0\t0x680B\n0xB6B1\t0x4F97\n0xB6B2\t0x606B\n0xB6B3\t0x51BB\n0xB6B4\t0x6D1E\n0xB6B5\t0x515C\n0xB6B6\t0x6296\n0xB6B7\t0x6597\n0xB6B8\t0x9661\n0xB6B9\t0x8C46\n0xB6BA\t0x9017\n0xB6BB\t0x75D8\n0xB6BC\t0x90FD\n0xB6BD\t0x7763\n0xB6BE\t0x6BD2\n0xB6BF\t0x728A\n0xB6C0\t0x72EC\n0xB6C1\t0x8BFB\n0xB6C2\t0x5835\n0xB6C3\t0x7779\n0xB6C4\t0x8D4C\n0xB6C5\t0x675C\n0xB6C6\t0x9540\n0xB6C7\t0x809A\n0xB6C8\t0x5EA6\n0xB6C9\t0x6E21\n0xB6CA\t0x5992\n0xB6CB\t0x7AEF\n0xB6CC\t0x77ED\n0xB6CD\t0x953B\n0xB6CE\t0x6BB5\n0xB6CF\t0x65AD\n0xB6D0\t0x7F0E\n0xB6D1\t0x5806\n0xB6D2\t0x5151\n0xB6D3\t0x961F\n0xB6D4\t0x5BF9\n0xB6D5\t0x58A9\n0xB6D6\t0x5428\n0xB6D7\t0x8E72\n0xB6D8\t0x6566\n0xB6D9\t0x987F\n0xB6DA\t0x56E4\n0xB6DB\t0x949D\n0xB6DC\t0x76FE\n0xB6DD\t0x9041\n0xB6DE\t0x6387\n0xB6DF\t0x54C6\n0xB6E0\t0x591A\n0xB6E1\t0x593A\n0xB6E2\t0x579B\n0xB6E3\t0x8EB2\n0xB6E4\t0x6735\n0xB6E5\t0x8DFA\n0xB6E6\t0x8235\n0xB6E7\t0x5241\n0xB6E8\t0x60F0\n0xB6E9\t0x5815\n0xB6EA\t0x86FE\n0xB6EB\t0x5CE8\n0xB6EC\t0x9E45\n0xB6ED\t0x4FC4\n0xB6EE\t0x989D\n0xB6EF\t0x8BB9\n0xB6F0\t0x5A25\n0xB6F1\t0x6076\n0xB6F2\t0x5384\n0xB6F3\t0x627C\n0xB6F4\t0x904F\n0xB6F5\t0x9102\n0xB6F6\t0x997F\n0xB6F7\t0x6069\n0xB6F8\t0x800C\n0xB6F9\t0x513F\n0xB6FA\t0x8033\n0xB6FB\t0x5C14\n0xB6FC\t0x9975\n0xB6FD\t0x6D31\n0xB6FE\t0x4E8C\n0xB740\t0x7A1D\n0xB741\t0x7A1F\n0xB742\t0x7A21\n0xB743\t0x7A22\n0xB744\t0x7A24\n0xB745\t0x7A25\n0xB746\t0x7A26\n0xB747\t0x7A27\n0xB748\t0x7A28\n0xB749\t0x7A29\n0xB74A\t0x7A2A\n0xB74B\t0x7A2B\n0xB74C\t0x7A2C\n0xB74D\t0x7A2D\n0xB74E\t0x7A2E\n0xB74F\t0x7A2F\n0xB750\t0x7A30\n0xB751\t0x7A31\n0xB752\t0x7A32\n0xB753\t0x7A34\n0xB754\t0x7A35\n0xB755\t0x7A36\n0xB756\t0x7A38\n0xB757\t0x7A3A\n0xB758\t0x7A3E\n0xB759\t0x7A40\n0xB75A\t0x7A41\n0xB75B\t0x7A42\n0xB75C\t0x7A43\n0xB75D\t0x7A44\n0xB75E\t0x7A45\n0xB75F\t0x7A47\n0xB760\t0x7A48\n0xB761\t0x7A49\n0xB762\t0x7A4A\n0xB763\t0x7A4B\n0xB764\t0x7A4C\n0xB765\t0x7A4D\n0xB766\t0x7A4E\n0xB767\t0x7A4F\n0xB768\t0x7A50\n0xB769\t0x7A52\n0xB76A\t0x7A53\n0xB76B\t0x7A54\n0xB76C\t0x7A55\n0xB76D\t0x7A56\n0xB76E\t0x7A58\n0xB76F\t0x7A59\n0xB770\t0x7A5A\n0xB771\t0x7A5B\n0xB772\t0x7A5C\n0xB773\t0x7A5D\n0xB774\t0x7A5E\n0xB775\t0x7A5F\n0xB776\t0x7A60\n0xB777\t0x7A61\n0xB778\t0x7A62\n0xB779\t0x7A63\n0xB77A\t0x7A64\n0xB77B\t0x7A65\n0xB77C\t0x7A66\n0xB77D\t0x7A67\n0xB77E\t0x7A68\n0xB780\t0x7A69\n0xB781\t0x7A6A\n0xB782\t0x7A6B\n0xB783\t0x7A6C\n0xB784\t0x7A6D\n0xB785\t0x7A6E\n0xB786\t0x7A6F\n0xB787\t0x7A71\n0xB788\t0x7A72\n0xB789\t0x7A73\n0xB78A\t0x7A75\n0xB78B\t0x7A7B\n0xB78C\t0x7A7C\n0xB78D\t0x7A7D\n0xB78E\t0x7A7E\n0xB78F\t0x7A82\n0xB790\t0x7A85\n0xB791\t0x7A87\n0xB792\t0x7A89\n0xB793\t0x7A8A\n0xB794\t0x7A8B\n0xB795\t0x7A8C\n0xB796\t0x7A8E\n0xB797\t0x7A8F\n0xB798\t0x7A90\n0xB799\t0x7A93\n0xB79A\t0x7A94\n0xB79B\t0x7A99\n0xB79C\t0x7A9A\n0xB79D\t0x7A9B\n0xB79E\t0x7A9E\n0xB79F\t0x7AA1\n0xB7A0\t0x7AA2\n0xB7A1\t0x8D30\n0xB7A2\t0x53D1\n0xB7A3\t0x7F5A\n0xB7A4\t0x7B4F\n0xB7A5\t0x4F10\n0xB7A6\t0x4E4F\n0xB7A7\t0x9600\n0xB7A8\t0x6CD5\n0xB7A9\t0x73D0\n0xB7AA\t0x85E9\n0xB7AB\t0x5E06\n0xB7AC\t0x756A\n0xB7AD\t0x7FFB\n0xB7AE\t0x6A0A\n0xB7AF\t0x77FE\n0xB7B0\t0x9492\n0xB7B1\t0x7E41\n0xB7B2\t0x51E1\n0xB7B3\t0x70E6\n0xB7B4\t0x53CD\n0xB7B5\t0x8FD4\n0xB7B6\t0x8303\n0xB7B7\t0x8D29\n0xB7B8\t0x72AF\n0xB7B9\t0x996D\n0xB7BA\t0x6CDB\n0xB7BB\t0x574A\n0xB7BC\t0x82B3\n0xB7BD\t0x65B9\n0xB7BE\t0x80AA\n0xB7BF\t0x623F\n0xB7C0\t0x9632\n0xB7C1\t0x59A8\n0xB7C2\t0x4EFF\n0xB7C3\t0x8BBF\n0xB7C4\t0x7EBA\n0xB7C5\t0x653E\n0xB7C6\t0x83F2\n0xB7C7\t0x975E\n0xB7C8\t0x5561\n0xB7C9\t0x98DE\n0xB7CA\t0x80A5\n0xB7CB\t0x532A\n0xB7CC\t0x8BFD\n0xB7CD\t0x5420\n0xB7CE\t0x80BA\n0xB7CF\t0x5E9F\n0xB7D0\t0x6CB8\n0xB7D1\t0x8D39\n0xB7D2\t0x82AC\n0xB7D3\t0x915A\n0xB7D4\t0x5429\n0xB7D5\t0x6C1B\n0xB7D6\t0x5206\n0xB7D7\t0x7EB7\n0xB7D8\t0x575F\n0xB7D9\t0x711A\n0xB7DA\t0x6C7E\n0xB7DB\t0x7C89\n0xB7DC\t0x594B\n0xB7DD\t0x4EFD\n0xB7DE\t0x5FFF\n0xB7DF\t0x6124\n0xB7E0\t0x7CAA\n0xB7E1\t0x4E30\n0xB7E2\t0x5C01\n0xB7E3\t0x67AB\n0xB7E4\t0x8702\n0xB7E5\t0x5CF0\n0xB7E6\t0x950B\n0xB7E7\t0x98CE\n0xB7E8\t0x75AF\n0xB7E9\t0x70FD\n0xB7EA\t0x9022\n0xB7EB\t0x51AF\n0xB7EC\t0x7F1D\n0xB7ED\t0x8BBD\n0xB7EE\t0x5949\n0xB7EF\t0x51E4\n0xB7F0\t0x4F5B\n0xB7F1\t0x5426\n0xB7F2\t0x592B\n0xB7F3\t0x6577\n0xB7F4\t0x80A4\n0xB7F5\t0x5B75\n0xB7F6\t0x6276\n0xB7F7\t0x62C2\n0xB7F8\t0x8F90\n0xB7F9\t0x5E45\n0xB7FA\t0x6C1F\n0xB7FB\t0x7B26\n0xB7FC\t0x4F0F\n0xB7FD\t0x4FD8\n0xB7FE\t0x670D\n0xB840\t0x7AA3\n0xB841\t0x7AA4\n0xB842\t0x7AA7\n0xB843\t0x7AA9\n0xB844\t0x7AAA\n0xB845\t0x7AAB\n0xB846\t0x7AAE\n0xB847\t0x7AAF\n0xB848\t0x7AB0\n0xB849\t0x7AB1\n0xB84A\t0x7AB2\n0xB84B\t0x7AB4\n0xB84C\t0x7AB5\n0xB84D\t0x7AB6\n0xB84E\t0x7AB7\n0xB84F\t0x7AB8\n0xB850\t0x7AB9\n0xB851\t0x7ABA\n0xB852\t0x7ABB\n0xB853\t0x7ABC\n0xB854\t0x7ABD\n0xB855\t0x7ABE\n0xB856\t0x7AC0\n0xB857\t0x7AC1\n0xB858\t0x7AC2\n0xB859\t0x7AC3\n0xB85A\t0x7AC4\n0xB85B\t0x7AC5\n0xB85C\t0x7AC6\n0xB85D\t0x7AC7\n0xB85E\t0x7AC8\n0xB85F\t0x7AC9\n0xB860\t0x7ACA\n0xB861\t0x7ACC\n0xB862\t0x7ACD\n0xB863\t0x7ACE\n0xB864\t0x7ACF\n0xB865\t0x7AD0\n0xB866\t0x7AD1\n0xB867\t0x7AD2\n0xB868\t0x7AD3\n0xB869\t0x7AD4\n0xB86A\t0x7AD5\n0xB86B\t0x7AD7\n0xB86C\t0x7AD8\n0xB86D\t0x7ADA\n0xB86E\t0x7ADB\n0xB86F\t0x7ADC\n0xB870\t0x7ADD\n0xB871\t0x7AE1\n0xB872\t0x7AE2\n0xB873\t0x7AE4\n0xB874\t0x7AE7\n0xB875\t0x7AE8\n0xB876\t0x7AE9\n0xB877\t0x7AEA\n0xB878\t0x7AEB\n0xB879\t0x7AEC\n0xB87A\t0x7AEE\n0xB87B\t0x7AF0\n0xB87C\t0x7AF1\n0xB87D\t0x7AF2\n0xB87E\t0x7AF3\n0xB880\t0x7AF4\n0xB881\t0x7AF5\n0xB882\t0x7AF6\n0xB883\t0x7AF7\n0xB884\t0x7AF8\n0xB885\t0x7AFB\n0xB886\t0x7AFC\n0xB887\t0x7AFE\n0xB888\t0x7B00\n0xB889\t0x7B01\n0xB88A\t0x7B02\n0xB88B\t0x7B05\n0xB88C\t0x7B07\n0xB88D\t0x7B09\n0xB88E\t0x7B0C\n0xB88F\t0x7B0D\n0xB890\t0x7B0E\n0xB891\t0x7B10\n0xB892\t0x7B12\n0xB893\t0x7B13\n0xB894\t0x7B16\n0xB895\t0x7B17\n0xB896\t0x7B18\n0xB897\t0x7B1A\n0xB898\t0x7B1C\n0xB899\t0x7B1D\n0xB89A\t0x7B1F\n0xB89B\t0x7B21\n0xB89C\t0x7B22\n0xB89D\t0x7B23\n0xB89E\t0x7B27\n0xB89F\t0x7B29\n0xB8A0\t0x7B2D\n0xB8A1\t0x6D6E\n0xB8A2\t0x6DAA\n0xB8A3\t0x798F\n0xB8A4\t0x88B1\n0xB8A5\t0x5F17\n0xB8A6\t0x752B\n0xB8A7\t0x629A\n0xB8A8\t0x8F85\n0xB8A9\t0x4FEF\n0xB8AA\t0x91DC\n0xB8AB\t0x65A7\n0xB8AC\t0x812F\n0xB8AD\t0x8151\n0xB8AE\t0x5E9C\n0xB8AF\t0x8150\n0xB8B0\t0x8D74\n0xB8B1\t0x526F\n0xB8B2\t0x8986\n0xB8B3\t0x8D4B\n0xB8B4\t0x590D\n0xB8B5\t0x5085\n0xB8B6\t0x4ED8\n0xB8B7\t0x961C\n0xB8B8\t0x7236\n0xB8B9\t0x8179\n0xB8BA\t0x8D1F\n0xB8BB\t0x5BCC\n0xB8BC\t0x8BA3\n0xB8BD\t0x9644\n0xB8BE\t0x5987\n0xB8BF\t0x7F1A\n0xB8C0\t0x5490\n0xB8C1\t0x5676\n0xB8C2\t0x560E\n0xB8C3\t0x8BE5\n0xB8C4\t0x6539\n0xB8C5\t0x6982\n0xB8C6\t0x9499\n0xB8C7\t0x76D6\n0xB8C8\t0x6E89\n0xB8C9\t0x5E72\n0xB8CA\t0x7518\n0xB8CB\t0x6746\n0xB8CC\t0x67D1\n0xB8CD\t0x7AFF\n0xB8CE\t0x809D\n0xB8CF\t0x8D76\n0xB8D0\t0x611F\n0xB8D1\t0x79C6\n0xB8D2\t0x6562\n0xB8D3\t0x8D63\n0xB8D4\t0x5188\n0xB8D5\t0x521A\n0xB8D6\t0x94A2\n0xB8D7\t0x7F38\n0xB8D8\t0x809B\n0xB8D9\t0x7EB2\n0xB8DA\t0x5C97\n0xB8DB\t0x6E2F\n0xB8DC\t0x6760\n0xB8DD\t0x7BD9\n0xB8DE\t0x768B\n0xB8DF\t0x9AD8\n0xB8E0\t0x818F\n0xB8E1\t0x7F94\n0xB8E2\t0x7CD5\n0xB8E3\t0x641E\n0xB8E4\t0x9550\n0xB8E5\t0x7A3F\n0xB8E6\t0x544A\n0xB8E7\t0x54E5\n0xB8E8\t0x6B4C\n0xB8E9\t0x6401\n0xB8EA\t0x6208\n0xB8EB\t0x9E3D\n0xB8EC\t0x80F3\n0xB8ED\t0x7599\n0xB8EE\t0x5272\n0xB8EF\t0x9769\n0xB8F0\t0x845B\n0xB8F1\t0x683C\n0xB8F2\t0x86E4\n0xB8F3\t0x9601\n0xB8F4\t0x9694\n0xB8F5\t0x94EC\n0xB8F6\t0x4E2A\n0xB8F7\t0x5404\n0xB8F8\t0x7ED9\n0xB8F9\t0x6839\n0xB8FA\t0x8DDF\n0xB8FB\t0x8015\n0xB8FC\t0x66F4\n0xB8FD\t0x5E9A\n0xB8FE\t0x7FB9\n0xB940\t0x7B2F\n0xB941\t0x7B30\n0xB942\t0x7B32\n0xB943\t0x7B34\n0xB944\t0x7B35\n0xB945\t0x7B36\n0xB946\t0x7B37\n0xB947\t0x7B39\n0xB948\t0x7B3B\n0xB949\t0x7B3D\n0xB94A\t0x7B3F\n0xB94B\t0x7B40\n0xB94C\t0x7B41\n0xB94D\t0x7B42\n0xB94E\t0x7B43\n0xB94F\t0x7B44\n0xB950\t0x7B46\n0xB951\t0x7B48\n0xB952\t0x7B4A\n0xB953\t0x7B4D\n0xB954\t0x7B4E\n0xB955\t0x7B53\n0xB956\t0x7B55\n0xB957\t0x7B57\n0xB958\t0x7B59\n0xB959\t0x7B5C\n0xB95A\t0x7B5E\n0xB95B\t0x7B5F\n0xB95C\t0x7B61\n0xB95D\t0x7B63\n0xB95E\t0x7B64\n0xB95F\t0x7B65\n0xB960\t0x7B66\n0xB961\t0x7B67\n0xB962\t0x7B68\n0xB963\t0x7B69\n0xB964\t0x7B6A\n0xB965\t0x7B6B\n0xB966\t0x7B6C\n0xB967\t0x7B6D\n0xB968\t0x7B6F\n0xB969\t0x7B70\n0xB96A\t0x7B73\n0xB96B\t0x7B74\n0xB96C\t0x7B76\n0xB96D\t0x7B78\n0xB96E\t0x7B7A\n0xB96F\t0x7B7C\n0xB970\t0x7B7D\n0xB971\t0x7B7F\n0xB972\t0x7B81\n0xB973\t0x7B82\n0xB974\t0x7B83\n0xB975\t0x7B84\n0xB976\t0x7B86\n0xB977\t0x7B87\n0xB978\t0x7B88\n0xB979\t0x7B89\n0xB97A\t0x7B8A\n0xB97B\t0x7B8B\n0xB97C\t0x7B8C\n0xB97D\t0x7B8E\n0xB97E\t0x7B8F\n0xB980\t0x7B91\n0xB981\t0x7B92\n0xB982\t0x7B93\n0xB983\t0x7B96\n0xB984\t0x7B98\n0xB985\t0x7B99\n0xB986\t0x7B9A\n0xB987\t0x7B9B\n0xB988\t0x7B9E\n0xB989\t0x7B9F\n0xB98A\t0x7BA0\n0xB98B\t0x7BA3\n0xB98C\t0x7BA4\n0xB98D\t0x7BA5\n0xB98E\t0x7BAE\n0xB98F\t0x7BAF\n0xB990\t0x7BB0\n0xB991\t0x7BB2\n0xB992\t0x7BB3\n0xB993\t0x7BB5\n0xB994\t0x7BB6\n0xB995\t0x7BB7\n0xB996\t0x7BB9\n0xB997\t0x7BBA\n0xB998\t0x7BBB\n0xB999\t0x7BBC\n0xB99A\t0x7BBD\n0xB99B\t0x7BBE\n0xB99C\t0x7BBF\n0xB99D\t0x7BC0\n0xB99E\t0x7BC2\n0xB99F\t0x7BC3\n0xB9A0\t0x7BC4\n0xB9A1\t0x57C2\n0xB9A2\t0x803F\n0xB9A3\t0x6897\n0xB9A4\t0x5DE5\n0xB9A5\t0x653B\n0xB9A6\t0x529F\n0xB9A7\t0x606D\n0xB9A8\t0x9F9A\n0xB9A9\t0x4F9B\n0xB9AA\t0x8EAC\n0xB9AB\t0x516C\n0xB9AC\t0x5BAB\n0xB9AD\t0x5F13\n0xB9AE\t0x5DE9\n0xB9AF\t0x6C5E\n0xB9B0\t0x62F1\n0xB9B1\t0x8D21\n0xB9B2\t0x5171\n0xB9B3\t0x94A9\n0xB9B4\t0x52FE\n0xB9B5\t0x6C9F\n0xB9B6\t0x82DF\n0xB9B7\t0x72D7\n0xB9B8\t0x57A2\n0xB9B9\t0x6784\n0xB9BA\t0x8D2D\n0xB9BB\t0x591F\n0xB9BC\t0x8F9C\n0xB9BD\t0x83C7\n0xB9BE\t0x5495\n0xB9BF\t0x7B8D\n0xB9C0\t0x4F30\n0xB9C1\t0x6CBD\n0xB9C2\t0x5B64\n0xB9C3\t0x59D1\n0xB9C4\t0x9F13\n0xB9C5\t0x53E4\n0xB9C6\t0x86CA\n0xB9C7\t0x9AA8\n0xB9C8\t0x8C37\n0xB9C9\t0x80A1\n0xB9CA\t0x6545\n0xB9CB\t0x987E\n0xB9CC\t0x56FA\n0xB9CD\t0x96C7\n0xB9CE\t0x522E\n0xB9CF\t0x74DC\n0xB9D0\t0x5250\n0xB9D1\t0x5BE1\n0xB9D2\t0x6302\n0xB9D3\t0x8902\n0xB9D4\t0x4E56\n0xB9D5\t0x62D0\n0xB9D6\t0x602A\n0xB9D7\t0x68FA\n0xB9D8\t0x5173\n0xB9D9\t0x5B98\n0xB9DA\t0x51A0\n0xB9DB\t0x89C2\n0xB9DC\t0x7BA1\n0xB9DD\t0x9986\n0xB9DE\t0x7F50\n0xB9DF\t0x60EF\n0xB9E0\t0x704C\n0xB9E1\t0x8D2F\n0xB9E2\t0x5149\n0xB9E3\t0x5E7F\n0xB9E4\t0x901B\n0xB9E5\t0x7470\n0xB9E6\t0x89C4\n0xB9E7\t0x572D\n0xB9E8\t0x7845\n0xB9E9\t0x5F52\n0xB9EA\t0x9F9F\n0xB9EB\t0x95FA\n0xB9EC\t0x8F68\n0xB9ED\t0x9B3C\n0xB9EE\t0x8BE1\n0xB9EF\t0x7678\n0xB9F0\t0x6842\n0xB9F1\t0x67DC\n0xB9F2\t0x8DEA\n0xB9F3\t0x8D35\n0xB9F4\t0x523D\n0xB9F5\t0x8F8A\n0xB9F6\t0x6EDA\n0xB9F7\t0x68CD\n0xB9F8\t0x9505\n0xB9F9\t0x90ED\n0xB9FA\t0x56FD\n0xB9FB\t0x679C\n0xB9FC\t0x88F9\n0xB9FD\t0x8FC7\n0xB9FE\t0x54C8\n0xBA40\t0x7BC5\n0xBA41\t0x7BC8\n0xBA42\t0x7BC9\n0xBA43\t0x7BCA\n0xBA44\t0x7BCB\n0xBA45\t0x7BCD\n0xBA46\t0x7BCE\n0xBA47\t0x7BCF\n0xBA48\t0x7BD0\n0xBA49\t0x7BD2\n0xBA4A\t0x7BD4\n0xBA4B\t0x7BD5\n0xBA4C\t0x7BD6\n0xBA4D\t0x7BD7\n0xBA4E\t0x7BD8\n0xBA4F\t0x7BDB\n0xBA50\t0x7BDC\n0xBA51\t0x7BDE\n0xBA52\t0x7BDF\n0xBA53\t0x7BE0\n0xBA54\t0x7BE2\n0xBA55\t0x7BE3\n0xBA56\t0x7BE4\n0xBA57\t0x7BE7\n0xBA58\t0x7BE8\n0xBA59\t0x7BE9\n0xBA5A\t0x7BEB\n0xBA5B\t0x7BEC\n0xBA5C\t0x7BED\n0xBA5D\t0x7BEF\n0xBA5E\t0x7BF0\n0xBA5F\t0x7BF2\n0xBA60\t0x7BF3\n0xBA61\t0x7BF4\n0xBA62\t0x7BF5\n0xBA63\t0x7BF6\n0xBA64\t0x7BF8\n0xBA65\t0x7BF9\n0xBA66\t0x7BFA\n0xBA67\t0x7BFB\n0xBA68\t0x7BFD\n0xBA69\t0x7BFF\n0xBA6A\t0x7C00\n0xBA6B\t0x7C01\n0xBA6C\t0x7C02\n0xBA6D\t0x7C03\n0xBA6E\t0x7C04\n0xBA6F\t0x7C05\n0xBA70\t0x7C06\n0xBA71\t0x7C08\n0xBA72\t0x7C09\n0xBA73\t0x7C0A\n0xBA74\t0x7C0D\n0xBA75\t0x7C0E\n0xBA76\t0x7C10\n0xBA77\t0x7C11\n0xBA78\t0x7C12\n0xBA79\t0x7C13\n0xBA7A\t0x7C14\n0xBA7B\t0x7C15\n0xBA7C\t0x7C17\n0xBA7D\t0x7C18\n0xBA7E\t0x7C19\n0xBA80\t0x7C1A\n0xBA81\t0x7C1B\n0xBA82\t0x7C1C\n0xBA83\t0x7C1D\n0xBA84\t0x7C1E\n0xBA85\t0x7C20\n0xBA86\t0x7C21\n0xBA87\t0x7C22\n0xBA88\t0x7C23\n0xBA89\t0x7C24\n0xBA8A\t0x7C25\n0xBA8B\t0x7C28\n0xBA8C\t0x7C29\n0xBA8D\t0x7C2B\n0xBA8E\t0x7C2C\n0xBA8F\t0x7C2D\n0xBA90\t0x7C2E\n0xBA91\t0x7C2F\n0xBA92\t0x7C30\n0xBA93\t0x7C31\n0xBA94\t0x7C32\n0xBA95\t0x7C33\n0xBA96\t0x7C34\n0xBA97\t0x7C35\n0xBA98\t0x7C36\n0xBA99\t0x7C37\n0xBA9A\t0x7C39\n0xBA9B\t0x7C3A\n0xBA9C\t0x7C3B\n0xBA9D\t0x7C3C\n0xBA9E\t0x7C3D\n0xBA9F\t0x7C3E\n0xBAA0\t0x7C42\n0xBAA1\t0x9AB8\n0xBAA2\t0x5B69\n0xBAA3\t0x6D77\n0xBAA4\t0x6C26\n0xBAA5\t0x4EA5\n0xBAA6\t0x5BB3\n0xBAA7\t0x9A87\n0xBAA8\t0x9163\n0xBAA9\t0x61A8\n0xBAAA\t0x90AF\n0xBAAB\t0x97E9\n0xBAAC\t0x542B\n0xBAAD\t0x6DB5\n0xBAAE\t0x5BD2\n0xBAAF\t0x51FD\n0xBAB0\t0x558A\n0xBAB1\t0x7F55\n0xBAB2\t0x7FF0\n0xBAB3\t0x64BC\n0xBAB4\t0x634D\n0xBAB5\t0x65F1\n0xBAB6\t0x61BE\n0xBAB7\t0x608D\n0xBAB8\t0x710A\n0xBAB9\t0x6C57\n0xBABA\t0x6C49\n0xBABB\t0x592F\n0xBABC\t0x676D\n0xBABD\t0x822A\n0xBABE\t0x58D5\n0xBABF\t0x568E\n0xBAC0\t0x8C6A\n0xBAC1\t0x6BEB\n0xBAC2\t0x90DD\n0xBAC3\t0x597D\n0xBAC4\t0x8017\n0xBAC5\t0x53F7\n0xBAC6\t0x6D69\n0xBAC7\t0x5475\n0xBAC8\t0x559D\n0xBAC9\t0x8377\n0xBACA\t0x83CF\n0xBACB\t0x6838\n0xBACC\t0x79BE\n0xBACD\t0x548C\n0xBACE\t0x4F55\n0xBACF\t0x5408\n0xBAD0\t0x76D2\n0xBAD1\t0x8C89\n0xBAD2\t0x9602\n0xBAD3\t0x6CB3\n0xBAD4\t0x6DB8\n0xBAD5\t0x8D6B\n0xBAD6\t0x8910\n0xBAD7\t0x9E64\n0xBAD8\t0x8D3A\n0xBAD9\t0x563F\n0xBADA\t0x9ED1\n0xBADB\t0x75D5\n0xBADC\t0x5F88\n0xBADD\t0x72E0\n0xBADE\t0x6068\n0xBADF\t0x54FC\n0xBAE0\t0x4EA8\n0xBAE1\t0x6A2A\n0xBAE2\t0x8861\n0xBAE3\t0x6052\n0xBAE4\t0x8F70\n0xBAE5\t0x54C4\n0xBAE6\t0x70D8\n0xBAE7\t0x8679\n0xBAE8\t0x9E3F\n0xBAE9\t0x6D2A\n0xBAEA\t0x5B8F\n0xBAEB\t0x5F18\n0xBAEC\t0x7EA2\n0xBAED\t0x5589\n0xBAEE\t0x4FAF\n0xBAEF\t0x7334\n0xBAF0\t0x543C\n0xBAF1\t0x539A\n0xBAF2\t0x5019\n0xBAF3\t0x540E\n0xBAF4\t0x547C\n0xBAF5\t0x4E4E\n0xBAF6\t0x5FFD\n0xBAF7\t0x745A\n0xBAF8\t0x58F6\n0xBAF9\t0x846B\n0xBAFA\t0x80E1\n0xBAFB\t0x8774\n0xBAFC\t0x72D0\n0xBAFD\t0x7CCA\n0xBAFE\t0x6E56\n0xBB40\t0x7C43\n0xBB41\t0x7C44\n0xBB42\t0x7C45\n0xBB43\t0x7C46\n0xBB44\t0x7C47\n0xBB45\t0x7C48\n0xBB46\t0x7C49\n0xBB47\t0x7C4A\n0xBB48\t0x7C4B\n0xBB49\t0x7C4C\n0xBB4A\t0x7C4E\n0xBB4B\t0x7C4F\n0xBB4C\t0x7C50\n0xBB4D\t0x7C51\n0xBB4E\t0x7C52\n0xBB4F\t0x7C53\n0xBB50\t0x7C54\n0xBB51\t0x7C55\n0xBB52\t0x7C56\n0xBB53\t0x7C57\n0xBB54\t0x7C58\n0xBB55\t0x7C59\n0xBB56\t0x7C5A\n0xBB57\t0x7C5B\n0xBB58\t0x7C5C\n0xBB59\t0x7C5D\n0xBB5A\t0x7C5E\n0xBB5B\t0x7C5F\n0xBB5C\t0x7C60\n0xBB5D\t0x7C61\n0xBB5E\t0x7C62\n0xBB5F\t0x7C63\n0xBB60\t0x7C64\n0xBB61\t0x7C65\n0xBB62\t0x7C66\n0xBB63\t0x7C67\n0xBB64\t0x7C68\n0xBB65\t0x7C69\n0xBB66\t0x7C6A\n0xBB67\t0x7C6B\n0xBB68\t0x7C6C\n0xBB69\t0x7C6D\n0xBB6A\t0x7C6E\n0xBB6B\t0x7C6F\n0xBB6C\t0x7C70\n0xBB6D\t0x7C71\n0xBB6E\t0x7C72\n0xBB6F\t0x7C75\n0xBB70\t0x7C76\n0xBB71\t0x7C77\n0xBB72\t0x7C78\n0xBB73\t0x7C79\n0xBB74\t0x7C7A\n0xBB75\t0x7C7E\n0xBB76\t0x7C7F\n0xBB77\t0x7C80\n0xBB78\t0x7C81\n0xBB79\t0x7C82\n0xBB7A\t0x7C83\n0xBB7B\t0x7C84\n0xBB7C\t0x7C85\n0xBB7D\t0x7C86\n0xBB7E\t0x7C87\n0xBB80\t0x7C88\n0xBB81\t0x7C8A\n0xBB82\t0x7C8B\n0xBB83\t0x7C8C\n0xBB84\t0x7C8D\n0xBB85\t0x7C8E\n0xBB86\t0x7C8F\n0xBB87\t0x7C90\n0xBB88\t0x7C93\n0xBB89\t0x7C94\n0xBB8A\t0x7C96\n0xBB8B\t0x7C99\n0xBB8C\t0x7C9A\n0xBB8D\t0x7C9B\n0xBB8E\t0x7CA0\n0xBB8F\t0x7CA1\n0xBB90\t0x7CA3\n0xBB91\t0x7CA6\n0xBB92\t0x7CA7\n0xBB93\t0x7CA8\n0xBB94\t0x7CA9\n0xBB95\t0x7CAB\n0xBB96\t0x7CAC\n0xBB97\t0x7CAD\n0xBB98\t0x7CAF\n0xBB99\t0x7CB0\n0xBB9A\t0x7CB4\n0xBB9B\t0x7CB5\n0xBB9C\t0x7CB6\n0xBB9D\t0x7CB7\n0xBB9E\t0x7CB8\n0xBB9F\t0x7CBA\n0xBBA0\t0x7CBB\n0xBBA1\t0x5F27\n0xBBA2\t0x864E\n0xBBA3\t0x552C\n0xBBA4\t0x62A4\n0xBBA5\t0x4E92\n0xBBA6\t0x6CAA\n0xBBA7\t0x6237\n0xBBA8\t0x82B1\n0xBBA9\t0x54D7\n0xBBAA\t0x534E\n0xBBAB\t0x733E\n0xBBAC\t0x6ED1\n0xBBAD\t0x753B\n0xBBAE\t0x5212\n0xBBAF\t0x5316\n0xBBB0\t0x8BDD\n0xBBB1\t0x69D0\n0xBBB2\t0x5F8A\n0xBBB3\t0x6000\n0xBBB4\t0x6DEE\n0xBBB5\t0x574F\n0xBBB6\t0x6B22\n0xBBB7\t0x73AF\n0xBBB8\t0x6853\n0xBBB9\t0x8FD8\n0xBBBA\t0x7F13\n0xBBBB\t0x6362\n0xBBBC\t0x60A3\n0xBBBD\t0x5524\n0xBBBE\t0x75EA\n0xBBBF\t0x8C62\n0xBBC0\t0x7115\n0xBBC1\t0x6DA3\n0xBBC2\t0x5BA6\n0xBBC3\t0x5E7B\n0xBBC4\t0x8352\n0xBBC5\t0x614C\n0xBBC6\t0x9EC4\n0xBBC7\t0x78FA\n0xBBC8\t0x8757\n0xBBC9\t0x7C27\n0xBBCA\t0x7687\n0xBBCB\t0x51F0\n0xBBCC\t0x60F6\n0xBBCD\t0x714C\n0xBBCE\t0x6643\n0xBBCF\t0x5E4C\n0xBBD0\t0x604D\n0xBBD1\t0x8C0E\n0xBBD2\t0x7070\n0xBBD3\t0x6325\n0xBBD4\t0x8F89\n0xBBD5\t0x5FBD\n0xBBD6\t0x6062\n0xBBD7\t0x86D4\n0xBBD8\t0x56DE\n0xBBD9\t0x6BC1\n0xBBDA\t0x6094\n0xBBDB\t0x6167\n0xBBDC\t0x5349\n0xBBDD\t0x60E0\n0xBBDE\t0x6666\n0xBBDF\t0x8D3F\n0xBBE0\t0x79FD\n0xBBE1\t0x4F1A\n0xBBE2\t0x70E9\n0xBBE3\t0x6C47\n0xBBE4\t0x8BB3\n0xBBE5\t0x8BF2\n0xBBE6\t0x7ED8\n0xBBE7\t0x8364\n0xBBE8\t0x660F\n0xBBE9\t0x5A5A\n0xBBEA\t0x9B42\n0xBBEB\t0x6D51\n0xBBEC\t0x6DF7\n0xBBED\t0x8C41\n0xBBEE\t0x6D3B\n0xBBEF\t0x4F19\n0xBBF0\t0x706B\n0xBBF1\t0x83B7\n0xBBF2\t0x6216\n0xBBF3\t0x60D1\n0xBBF4\t0x970D\n0xBBF5\t0x8D27\n0xBBF6\t0x7978\n0xBBF7\t0x51FB\n0xBBF8\t0x573E\n0xBBF9\t0x57FA\n0xBBFA\t0x673A\n0xBBFB\t0x7578\n0xBBFC\t0x7A3D\n0xBBFD\t0x79EF\n0xBBFE\t0x7B95\n0xBC40\t0x7CBF\n0xBC41\t0x7CC0\n0xBC42\t0x7CC2\n0xBC43\t0x7CC3\n0xBC44\t0x7CC4\n0xBC45\t0x7CC6\n0xBC46\t0x7CC9\n0xBC47\t0x7CCB\n0xBC48\t0x7CCE\n0xBC49\t0x7CCF\n0xBC4A\t0x7CD0\n0xBC4B\t0x7CD1\n0xBC4C\t0x7CD2\n0xBC4D\t0x7CD3\n0xBC4E\t0x7CD4\n0xBC4F\t0x7CD8\n0xBC50\t0x7CDA\n0xBC51\t0x7CDB\n0xBC52\t0x7CDD\n0xBC53\t0x7CDE\n0xBC54\t0x7CE1\n0xBC55\t0x7CE2\n0xBC56\t0x7CE3\n0xBC57\t0x7CE4\n0xBC58\t0x7CE5\n0xBC59\t0x7CE6\n0xBC5A\t0x7CE7\n0xBC5B\t0x7CE9\n0xBC5C\t0x7CEA\n0xBC5D\t0x7CEB\n0xBC5E\t0x7CEC\n0xBC5F\t0x7CED\n0xBC60\t0x7CEE\n0xBC61\t0x7CF0\n0xBC62\t0x7CF1\n0xBC63\t0x7CF2\n0xBC64\t0x7CF3\n0xBC65\t0x7CF4\n0xBC66\t0x7CF5\n0xBC67\t0x7CF6\n0xBC68\t0x7CF7\n0xBC69\t0x7CF9\n0xBC6A\t0x7CFA\n0xBC6B\t0x7CFC\n0xBC6C\t0x7CFD\n0xBC6D\t0x7CFE\n0xBC6E\t0x7CFF\n0xBC6F\t0x7D00\n0xBC70\t0x7D01\n0xBC71\t0x7D02\n0xBC72\t0x7D03\n0xBC73\t0x7D04\n0xBC74\t0x7D05\n0xBC75\t0x7D06\n0xBC76\t0x7D07\n0xBC77\t0x7D08\n0xBC78\t0x7D09\n0xBC79\t0x7D0B\n0xBC7A\t0x7D0C\n0xBC7B\t0x7D0D\n0xBC7C\t0x7D0E\n0xBC7D\t0x7D0F\n0xBC7E\t0x7D10\n0xBC80\t0x7D11\n0xBC81\t0x7D12\n0xBC82\t0x7D13\n0xBC83\t0x7D14\n0xBC84\t0x7D15\n0xBC85\t0x7D16\n0xBC86\t0x7D17\n0xBC87\t0x7D18\n0xBC88\t0x7D19\n0xBC89\t0x7D1A\n0xBC8A\t0x7D1B\n0xBC8B\t0x7D1C\n0xBC8C\t0x7D1D\n0xBC8D\t0x7D1E\n0xBC8E\t0x7D1F\n0xBC8F\t0x7D21\n0xBC90\t0x7D23\n0xBC91\t0x7D24\n0xBC92\t0x7D25\n0xBC93\t0x7D26\n0xBC94\t0x7D28\n0xBC95\t0x7D29\n0xBC96\t0x7D2A\n0xBC97\t0x7D2C\n0xBC98\t0x7D2D\n0xBC99\t0x7D2E\n0xBC9A\t0x7D30\n0xBC9B\t0x7D31\n0xBC9C\t0x7D32\n0xBC9D\t0x7D33\n0xBC9E\t0x7D34\n0xBC9F\t0x7D35\n0xBCA0\t0x7D36\n0xBCA1\t0x808C\n0xBCA2\t0x9965\n0xBCA3\t0x8FF9\n0xBCA4\t0x6FC0\n0xBCA5\t0x8BA5\n0xBCA6\t0x9E21\n0xBCA7\t0x59EC\n0xBCA8\t0x7EE9\n0xBCA9\t0x7F09\n0xBCAA\t0x5409\n0xBCAB\t0x6781\n0xBCAC\t0x68D8\n0xBCAD\t0x8F91\n0xBCAE\t0x7C4D\n0xBCAF\t0x96C6\n0xBCB0\t0x53CA\n0xBCB1\t0x6025\n0xBCB2\t0x75BE\n0xBCB3\t0x6C72\n0xBCB4\t0x5373\n0xBCB5\t0x5AC9\n0xBCB6\t0x7EA7\n0xBCB7\t0x6324\n0xBCB8\t0x51E0\n0xBCB9\t0x810A\n0xBCBA\t0x5DF1\n0xBCBB\t0x84DF\n0xBCBC\t0x6280\n0xBCBD\t0x5180\n0xBCBE\t0x5B63\n0xBCBF\t0x4F0E\n0xBCC0\t0x796D\n0xBCC1\t0x5242\n0xBCC2\t0x60B8\n0xBCC3\t0x6D4E\n0xBCC4\t0x5BC4\n0xBCC5\t0x5BC2\n0xBCC6\t0x8BA1\n0xBCC7\t0x8BB0\n0xBCC8\t0x65E2\n0xBCC9\t0x5FCC\n0xBCCA\t0x9645\n0xBCCB\t0x5993\n0xBCCC\t0x7EE7\n0xBCCD\t0x7EAA\n0xBCCE\t0x5609\n0xBCCF\t0x67B7\n0xBCD0\t0x5939\n0xBCD1\t0x4F73\n0xBCD2\t0x5BB6\n0xBCD3\t0x52A0\n0xBCD4\t0x835A\n0xBCD5\t0x988A\n0xBCD6\t0x8D3E\n0xBCD7\t0x7532\n0xBCD8\t0x94BE\n0xBCD9\t0x5047\n0xBCDA\t0x7A3C\n0xBCDB\t0x4EF7\n0xBCDC\t0x67B6\n0xBCDD\t0x9A7E\n0xBCDE\t0x5AC1\n0xBCDF\t0x6B7C\n0xBCE0\t0x76D1\n0xBCE1\t0x575A\n0xBCE2\t0x5C16\n0xBCE3\t0x7B3A\n0xBCE4\t0x95F4\n0xBCE5\t0x714E\n0xBCE6\t0x517C\n0xBCE7\t0x80A9\n0xBCE8\t0x8270\n0xBCE9\t0x5978\n0xBCEA\t0x7F04\n0xBCEB\t0x8327\n0xBCEC\t0x68C0\n0xBCED\t0x67EC\n0xBCEE\t0x78B1\n0xBCEF\t0x7877\n0xBCF0\t0x62E3\n0xBCF1\t0x6361\n0xBCF2\t0x7B80\n0xBCF3\t0x4FED\n0xBCF4\t0x526A\n0xBCF5\t0x51CF\n0xBCF6\t0x8350\n0xBCF7\t0x69DB\n0xBCF8\t0x9274\n0xBCF9\t0x8DF5\n0xBCFA\t0x8D31\n0xBCFB\t0x89C1\n0xBCFC\t0x952E\n0xBCFD\t0x7BAD\n0xBCFE\t0x4EF6\n0xBD40\t0x7D37\n0xBD41\t0x7D38\n0xBD42\t0x7D39\n0xBD43\t0x7D3A\n0xBD44\t0x7D3B\n0xBD45\t0x7D3C\n0xBD46\t0x7D3D\n0xBD47\t0x7D3E\n0xBD48\t0x7D3F\n0xBD49\t0x7D40\n0xBD4A\t0x7D41\n0xBD4B\t0x7D42\n0xBD4C\t0x7D43\n0xBD4D\t0x7D44\n0xBD4E\t0x7D45\n0xBD4F\t0x7D46\n0xBD50\t0x7D47\n0xBD51\t0x7D48\n0xBD52\t0x7D49\n0xBD53\t0x7D4A\n0xBD54\t0x7D4B\n0xBD55\t0x7D4C\n0xBD56\t0x7D4D\n0xBD57\t0x7D4E\n0xBD58\t0x7D4F\n0xBD59\t0x7D50\n0xBD5A\t0x7D51\n0xBD5B\t0x7D52\n0xBD5C\t0x7D53\n0xBD5D\t0x7D54\n0xBD5E\t0x7D55\n0xBD5F\t0x7D56\n0xBD60\t0x7D57\n0xBD61\t0x7D58\n0xBD62\t0x7D59\n0xBD63\t0x7D5A\n0xBD64\t0x7D5B\n0xBD65\t0x7D5C\n0xBD66\t0x7D5D\n0xBD67\t0x7D5E\n0xBD68\t0x7D5F\n0xBD69\t0x7D60\n0xBD6A\t0x7D61\n0xBD6B\t0x7D62\n0xBD6C\t0x7D63\n0xBD6D\t0x7D64\n0xBD6E\t0x7D65\n0xBD6F\t0x7D66\n0xBD70\t0x7D67\n0xBD71\t0x7D68\n0xBD72\t0x7D69\n0xBD73\t0x7D6A\n0xBD74\t0x7D6B\n0xBD75\t0x7D6C\n0xBD76\t0x7D6D\n0xBD77\t0x7D6F\n0xBD78\t0x7D70\n0xBD79\t0x7D71\n0xBD7A\t0x7D72\n0xBD7B\t0x7D73\n0xBD7C\t0x7D74\n0xBD7D\t0x7D75\n0xBD7E\t0x7D76\n0xBD80\t0x7D78\n0xBD81\t0x7D79\n0xBD82\t0x7D7A\n0xBD83\t0x7D7B\n0xBD84\t0x7D7C\n0xBD85\t0x7D7D\n0xBD86\t0x7D7E\n0xBD87\t0x7D7F\n0xBD88\t0x7D80\n0xBD89\t0x7D81\n0xBD8A\t0x7D82\n0xBD8B\t0x7D83\n0xBD8C\t0x7D84\n0xBD8D\t0x7D85\n0xBD8E\t0x7D86\n0xBD8F\t0x7D87\n0xBD90\t0x7D88\n0xBD91\t0x7D89\n0xBD92\t0x7D8A\n0xBD93\t0x7D8B\n0xBD94\t0x7D8C\n0xBD95\t0x7D8D\n0xBD96\t0x7D8E\n0xBD97\t0x7D8F\n0xBD98\t0x7D90\n0xBD99\t0x7D91\n0xBD9A\t0x7D92\n0xBD9B\t0x7D93\n0xBD9C\t0x7D94\n0xBD9D\t0x7D95\n0xBD9E\t0x7D96\n0xBD9F\t0x7D97\n0xBDA0\t0x7D98\n0xBDA1\t0x5065\n0xBDA2\t0x8230\n0xBDA3\t0x5251\n0xBDA4\t0x996F\n0xBDA5\t0x6E10\n0xBDA6\t0x6E85\n0xBDA7\t0x6DA7\n0xBDA8\t0x5EFA\n0xBDA9\t0x50F5\n0xBDAA\t0x59DC\n0xBDAB\t0x5C06\n0xBDAC\t0x6D46\n0xBDAD\t0x6C5F\n0xBDAE\t0x7586\n0xBDAF\t0x848B\n0xBDB0\t0x6868\n0xBDB1\t0x5956\n0xBDB2\t0x8BB2\n0xBDB3\t0x5320\n0xBDB4\t0x9171\n0xBDB5\t0x964D\n0xBDB6\t0x8549\n0xBDB7\t0x6912\n0xBDB8\t0x7901\n0xBDB9\t0x7126\n0xBDBA\t0x80F6\n0xBDBB\t0x4EA4\n0xBDBC\t0x90CA\n0xBDBD\t0x6D47\n0xBDBE\t0x9A84\n0xBDBF\t0x5A07\n0xBDC0\t0x56BC\n0xBDC1\t0x6405\n0xBDC2\t0x94F0\n0xBDC3\t0x77EB\n0xBDC4\t0x4FA5\n0xBDC5\t0x811A\n0xBDC6\t0x72E1\n0xBDC7\t0x89D2\n0xBDC8\t0x997A\n0xBDC9\t0x7F34\n0xBDCA\t0x7EDE\n0xBDCB\t0x527F\n0xBDCC\t0x6559\n0xBDCD\t0x9175\n0xBDCE\t0x8F7F\n0xBDCF\t0x8F83\n0xBDD0\t0x53EB\n0xBDD1\t0x7A96\n0xBDD2\t0x63ED\n0xBDD3\t0x63A5\n0xBDD4\t0x7686\n0xBDD5\t0x79F8\n0xBDD6\t0x8857\n0xBDD7\t0x9636\n0xBDD8\t0x622A\n0xBDD9\t0x52AB\n0xBDDA\t0x8282\n0xBDDB\t0x6854\n0xBDDC\t0x6770\n0xBDDD\t0x6377\n0xBDDE\t0x776B\n0xBDDF\t0x7AED\n0xBDE0\t0x6D01\n0xBDE1\t0x7ED3\n0xBDE2\t0x89E3\n0xBDE3\t0x59D0\n0xBDE4\t0x6212\n0xBDE5\t0x85C9\n0xBDE6\t0x82A5\n0xBDE7\t0x754C\n0xBDE8\t0x501F\n0xBDE9\t0x4ECB\n0xBDEA\t0x75A5\n0xBDEB\t0x8BEB\n0xBDEC\t0x5C4A\n0xBDED\t0x5DFE\n0xBDEE\t0x7B4B\n0xBDEF\t0x65A4\n0xBDF0\t0x91D1\n0xBDF1\t0x4ECA\n0xBDF2\t0x6D25\n0xBDF3\t0x895F\n0xBDF4\t0x7D27\n0xBDF5\t0x9526\n0xBDF6\t0x4EC5\n0xBDF7\t0x8C28\n0xBDF8\t0x8FDB\n0xBDF9\t0x9773\n0xBDFA\t0x664B\n0xBDFB\t0x7981\n0xBDFC\t0x8FD1\n0xBDFD\t0x70EC\n0xBDFE\t0x6D78\n0xBE40\t0x7D99\n0xBE41\t0x7D9A\n0xBE42\t0x7D9B\n0xBE43\t0x7D9C\n0xBE44\t0x7D9D\n0xBE45\t0x7D9E\n0xBE46\t0x7D9F\n0xBE47\t0x7DA0\n0xBE48\t0x7DA1\n0xBE49\t0x7DA2\n0xBE4A\t0x7DA3\n0xBE4B\t0x7DA4\n0xBE4C\t0x7DA5\n0xBE4D\t0x7DA7\n0xBE4E\t0x7DA8\n0xBE4F\t0x7DA9\n0xBE50\t0x7DAA\n0xBE51\t0x7DAB\n0xBE52\t0x7DAC\n0xBE53\t0x7DAD\n0xBE54\t0x7DAF\n0xBE55\t0x7DB0\n0xBE56\t0x7DB1\n0xBE57\t0x7DB2\n0xBE58\t0x7DB3\n0xBE59\t0x7DB4\n0xBE5A\t0x7DB5\n0xBE5B\t0x7DB6\n0xBE5C\t0x7DB7\n0xBE5D\t0x7DB8\n0xBE5E\t0x7DB9\n0xBE5F\t0x7DBA\n0xBE60\t0x7DBB\n0xBE61\t0x7DBC\n0xBE62\t0x7DBD\n0xBE63\t0x7DBE\n0xBE64\t0x7DBF\n0xBE65\t0x7DC0\n0xBE66\t0x7DC1\n0xBE67\t0x7DC2\n0xBE68\t0x7DC3\n0xBE69\t0x7DC4\n0xBE6A\t0x7DC5\n0xBE6B\t0x7DC6\n0xBE6C\t0x7DC7\n0xBE6D\t0x7DC8\n0xBE6E\t0x7DC9\n0xBE6F\t0x7DCA\n0xBE70\t0x7DCB\n0xBE71\t0x7DCC\n0xBE72\t0x7DCD\n0xBE73\t0x7DCE\n0xBE74\t0x7DCF\n0xBE75\t0x7DD0\n0xBE76\t0x7DD1\n0xBE77\t0x7DD2\n0xBE78\t0x7DD3\n0xBE79\t0x7DD4\n0xBE7A\t0x7DD5\n0xBE7B\t0x7DD6\n0xBE7C\t0x7DD7\n0xBE7D\t0x7DD8\n0xBE7E\t0x7DD9\n0xBE80\t0x7DDA\n0xBE81\t0x7DDB\n0xBE82\t0x7DDC\n0xBE83\t0x7DDD\n0xBE84\t0x7DDE\n0xBE85\t0x7DDF\n0xBE86\t0x7DE0\n0xBE87\t0x7DE1\n0xBE88\t0x7DE2\n0xBE89\t0x7DE3\n0xBE8A\t0x7DE4\n0xBE8B\t0x7DE5\n0xBE8C\t0x7DE6\n0xBE8D\t0x7DE7\n0xBE8E\t0x7DE8\n0xBE8F\t0x7DE9\n0xBE90\t0x7DEA\n0xBE91\t0x7DEB\n0xBE92\t0x7DEC\n0xBE93\t0x7DED\n0xBE94\t0x7DEE\n0xBE95\t0x7DEF\n0xBE96\t0x7DF0\n0xBE97\t0x7DF1\n0xBE98\t0x7DF2\n0xBE99\t0x7DF3\n0xBE9A\t0x7DF4\n0xBE9B\t0x7DF5\n0xBE9C\t0x7DF6\n0xBE9D\t0x7DF7\n0xBE9E\t0x7DF8\n0xBE9F\t0x7DF9\n0xBEA0\t0x7DFA\n0xBEA1\t0x5C3D\n0xBEA2\t0x52B2\n0xBEA3\t0x8346\n0xBEA4\t0x5162\n0xBEA5\t0x830E\n0xBEA6\t0x775B\n0xBEA7\t0x6676\n0xBEA8\t0x9CB8\n0xBEA9\t0x4EAC\n0xBEAA\t0x60CA\n0xBEAB\t0x7CBE\n0xBEAC\t0x7CB3\n0xBEAD\t0x7ECF\n0xBEAE\t0x4E95\n0xBEAF\t0x8B66\n0xBEB0\t0x666F\n0xBEB1\t0x9888\n0xBEB2\t0x9759\n0xBEB3\t0x5883\n0xBEB4\t0x656C\n0xBEB5\t0x955C\n0xBEB6\t0x5F84\n0xBEB7\t0x75C9\n0xBEB8\t0x9756\n0xBEB9\t0x7ADF\n0xBEBA\t0x7ADE\n0xBEBB\t0x51C0\n0xBEBC\t0x70AF\n0xBEBD\t0x7A98\n0xBEBE\t0x63EA\n0xBEBF\t0x7A76\n0xBEC0\t0x7EA0\n0xBEC1\t0x7396\n0xBEC2\t0x97ED\n0xBEC3\t0x4E45\n0xBEC4\t0x7078\n0xBEC5\t0x4E5D\n0xBEC6\t0x9152\n0xBEC7\t0x53A9\n0xBEC8\t0x6551\n0xBEC9\t0x65E7\n0xBECA\t0x81FC\n0xBECB\t0x8205\n0xBECC\t0x548E\n0xBECD\t0x5C31\n0xBECE\t0x759A\n0xBECF\t0x97A0\n0xBED0\t0x62D8\n0xBED1\t0x72D9\n0xBED2\t0x75BD\n0xBED3\t0x5C45\n0xBED4\t0x9A79\n0xBED5\t0x83CA\n0xBED6\t0x5C40\n0xBED7\t0x5480\n0xBED8\t0x77E9\n0xBED9\t0x4E3E\n0xBEDA\t0x6CAE\n0xBEDB\t0x805A\n0xBEDC\t0x62D2\n0xBEDD\t0x636E\n0xBEDE\t0x5DE8\n0xBEDF\t0x5177\n0xBEE0\t0x8DDD\n0xBEE1\t0x8E1E\n0xBEE2\t0x952F\n0xBEE3\t0x4FF1\n0xBEE4\t0x53E5\n0xBEE5\t0x60E7\n0xBEE6\t0x70AC\n0xBEE7\t0x5267\n0xBEE8\t0x6350\n0xBEE9\t0x9E43\n0xBEEA\t0x5A1F\n0xBEEB\t0x5026\n0xBEEC\t0x7737\n0xBEED\t0x5377\n0xBEEE\t0x7EE2\n0xBEEF\t0x6485\n0xBEF0\t0x652B\n0xBEF1\t0x6289\n0xBEF2\t0x6398\n0xBEF3\t0x5014\n0xBEF4\t0x7235\n0xBEF5\t0x89C9\n0xBEF6\t0x51B3\n0xBEF7\t0x8BC0\n0xBEF8\t0x7EDD\n0xBEF9\t0x5747\n0xBEFA\t0x83CC\n0xBEFB\t0x94A7\n0xBEFC\t0x519B\n0xBEFD\t0x541B\n0xBEFE\t0x5CFB\n0xBF40\t0x7DFB\n0xBF41\t0x7DFC\n0xBF42\t0x7DFD\n0xBF43\t0x7DFE\n0xBF44\t0x7DFF\n0xBF45\t0x7E00\n0xBF46\t0x7E01\n0xBF47\t0x7E02\n0xBF48\t0x7E03\n0xBF49\t0x7E04\n0xBF4A\t0x7E05\n0xBF4B\t0x7E06\n0xBF4C\t0x7E07\n0xBF4D\t0x7E08\n0xBF4E\t0x7E09\n0xBF4F\t0x7E0A\n0xBF50\t0x7E0B\n0xBF51\t0x7E0C\n0xBF52\t0x7E0D\n0xBF53\t0x7E0E\n0xBF54\t0x7E0F\n0xBF55\t0x7E10\n0xBF56\t0x7E11\n0xBF57\t0x7E12\n0xBF58\t0x7E13\n0xBF59\t0x7E14\n0xBF5A\t0x7E15\n0xBF5B\t0x7E16\n0xBF5C\t0x7E17\n0xBF5D\t0x7E18\n0xBF5E\t0x7E19\n0xBF5F\t0x7E1A\n0xBF60\t0x7E1B\n0xBF61\t0x7E1C\n0xBF62\t0x7E1D\n0xBF63\t0x7E1E\n0xBF64\t0x7E1F\n0xBF65\t0x7E20\n0xBF66\t0x7E21\n0xBF67\t0x7E22\n0xBF68\t0x7E23\n0xBF69\t0x7E24\n0xBF6A\t0x7E25\n0xBF6B\t0x7E26\n0xBF6C\t0x7E27\n0xBF6D\t0x7E28\n0xBF6E\t0x7E29\n0xBF6F\t0x7E2A\n0xBF70\t0x7E2B\n0xBF71\t0x7E2C\n0xBF72\t0x7E2D\n0xBF73\t0x7E2E\n0xBF74\t0x7E2F\n0xBF75\t0x7E30\n0xBF76\t0x7E31\n0xBF77\t0x7E32\n0xBF78\t0x7E33\n0xBF79\t0x7E34\n0xBF7A\t0x7E35\n0xBF7B\t0x7E36\n0xBF7C\t0x7E37\n0xBF7D\t0x7E38\n0xBF7E\t0x7E39\n0xBF80\t0x7E3A\n0xBF81\t0x7E3C\n0xBF82\t0x7E3D\n0xBF83\t0x7E3E\n0xBF84\t0x7E3F\n0xBF85\t0x7E40\n0xBF86\t0x7E42\n0xBF87\t0x7E43\n0xBF88\t0x7E44\n0xBF89\t0x7E45\n0xBF8A\t0x7E46\n0xBF8B\t0x7E48\n0xBF8C\t0x7E49\n0xBF8D\t0x7E4A\n0xBF8E\t0x7E4B\n0xBF8F\t0x7E4C\n0xBF90\t0x7E4D\n0xBF91\t0x7E4E\n0xBF92\t0x7E4F\n0xBF93\t0x7E50\n0xBF94\t0x7E51\n0xBF95\t0x7E52\n0xBF96\t0x7E53\n0xBF97\t0x7E54\n0xBF98\t0x7E55\n0xBF99\t0x7E56\n0xBF9A\t0x7E57\n0xBF9B\t0x7E58\n0xBF9C\t0x7E59\n0xBF9D\t0x7E5A\n0xBF9E\t0x7E5B\n0xBF9F\t0x7E5C\n0xBFA0\t0x7E5D\n0xBFA1\t0x4FCA\n0xBFA2\t0x7AE3\n0xBFA3\t0x6D5A\n0xBFA4\t0x90E1\n0xBFA5\t0x9A8F\n0xBFA6\t0x5580\n0xBFA7\t0x5496\n0xBFA8\t0x5361\n0xBFA9\t0x54AF\n0xBFAA\t0x5F00\n0xBFAB\t0x63E9\n0xBFAC\t0x6977\n0xBFAD\t0x51EF\n0xBFAE\t0x6168\n0xBFAF\t0x520A\n0xBFB0\t0x582A\n0xBFB1\t0x52D8\n0xBFB2\t0x574E\n0xBFB3\t0x780D\n0xBFB4\t0x770B\n0xBFB5\t0x5EB7\n0xBFB6\t0x6177\n0xBFB7\t0x7CE0\n0xBFB8\t0x625B\n0xBFB9\t0x6297\n0xBFBA\t0x4EA2\n0xBFBB\t0x7095\n0xBFBC\t0x8003\n0xBFBD\t0x62F7\n0xBFBE\t0x70E4\n0xBFBF\t0x9760\n0xBFC0\t0x5777\n0xBFC1\t0x82DB\n0xBFC2\t0x67EF\n0xBFC3\t0x68F5\n0xBFC4\t0x78D5\n0xBFC5\t0x9897\n0xBFC6\t0x79D1\n0xBFC7\t0x58F3\n0xBFC8\t0x54B3\n0xBFC9\t0x53EF\n0xBFCA\t0x6E34\n0xBFCB\t0x514B\n0xBFCC\t0x523B\n0xBFCD\t0x5BA2\n0xBFCE\t0x8BFE\n0xBFCF\t0x80AF\n0xBFD0\t0x5543\n0xBFD1\t0x57A6\n0xBFD2\t0x6073\n0xBFD3\t0x5751\n0xBFD4\t0x542D\n0xBFD5\t0x7A7A\n0xBFD6\t0x6050\n0xBFD7\t0x5B54\n0xBFD8\t0x63A7\n0xBFD9\t0x62A0\n0xBFDA\t0x53E3\n0xBFDB\t0x6263\n0xBFDC\t0x5BC7\n0xBFDD\t0x67AF\n0xBFDE\t0x54ED\n0xBFDF\t0x7A9F\n0xBFE0\t0x82E6\n0xBFE1\t0x9177\n0xBFE2\t0x5E93\n0xBFE3\t0x88E4\n0xBFE4\t0x5938\n0xBFE5\t0x57AE\n0xBFE6\t0x630E\n0xBFE7\t0x8DE8\n0xBFE8\t0x80EF\n0xBFE9\t0x5757\n0xBFEA\t0x7B77\n0xBFEB\t0x4FA9\n0xBFEC\t0x5FEB\n0xBFED\t0x5BBD\n0xBFEE\t0x6B3E\n0xBFEF\t0x5321\n0xBFF0\t0x7B50\n0xBFF1\t0x72C2\n0xBFF2\t0x6846\n0xBFF3\t0x77FF\n0xBFF4\t0x7736\n0xBFF5\t0x65F7\n0xBFF6\t0x51B5\n0xBFF7\t0x4E8F\n0xBFF8\t0x76D4\n0xBFF9\t0x5CBF\n0xBFFA\t0x7AA5\n0xBFFB\t0x8475\n0xBFFC\t0x594E\n0xBFFD\t0x9B41\n0xBFFE\t0x5080\n0xC040\t0x7E5E\n0xC041\t0x7E5F\n0xC042\t0x7E60\n0xC043\t0x7E61\n0xC044\t0x7E62\n0xC045\t0x7E63\n0xC046\t0x7E64\n0xC047\t0x7E65\n0xC048\t0x7E66\n0xC049\t0x7E67\n0xC04A\t0x7E68\n0xC04B\t0x7E69\n0xC04C\t0x7E6A\n0xC04D\t0x7E6B\n0xC04E\t0x7E6C\n0xC04F\t0x7E6D\n0xC050\t0x7E6E\n0xC051\t0x7E6F\n0xC052\t0x7E70\n0xC053\t0x7E71\n0xC054\t0x7E72\n0xC055\t0x7E73\n0xC056\t0x7E74\n0xC057\t0x7E75\n0xC058\t0x7E76\n0xC059\t0x7E77\n0xC05A\t0x7E78\n0xC05B\t0x7E79\n0xC05C\t0x7E7A\n0xC05D\t0x7E7B\n0xC05E\t0x7E7C\n0xC05F\t0x7E7D\n0xC060\t0x7E7E\n0xC061\t0x7E7F\n0xC062\t0x7E80\n0xC063\t0x7E81\n0xC064\t0x7E83\n0xC065\t0x7E84\n0xC066\t0x7E85\n0xC067\t0x7E86\n0xC068\t0x7E87\n0xC069\t0x7E88\n0xC06A\t0x7E89\n0xC06B\t0x7E8A\n0xC06C\t0x7E8B\n0xC06D\t0x7E8C\n0xC06E\t0x7E8D\n0xC06F\t0x7E8E\n0xC070\t0x7E8F\n0xC071\t0x7E90\n0xC072\t0x7E91\n0xC073\t0x7E92\n0xC074\t0x7E93\n0xC075\t0x7E94\n0xC076\t0x7E95\n0xC077\t0x7E96\n0xC078\t0x7E97\n0xC079\t0x7E98\n0xC07A\t0x7E99\n0xC07B\t0x7E9A\n0xC07C\t0x7E9C\n0xC07D\t0x7E9D\n0xC07E\t0x7E9E\n0xC080\t0x7EAE\n0xC081\t0x7EB4\n0xC082\t0x7EBB\n0xC083\t0x7EBC\n0xC084\t0x7ED6\n0xC085\t0x7EE4\n0xC086\t0x7EEC\n0xC087\t0x7EF9\n0xC088\t0x7F0A\n0xC089\t0x7F10\n0xC08A\t0x7F1E\n0xC08B\t0x7F37\n0xC08C\t0x7F39\n0xC08D\t0x7F3B\n0xC08E\t0x7F3C\n0xC08F\t0x7F3D\n0xC090\t0x7F3E\n0xC091\t0x7F3F\n0xC092\t0x7F40\n0xC093\t0x7F41\n0xC094\t0x7F43\n0xC095\t0x7F46\n0xC096\t0x7F47\n0xC097\t0x7F48\n0xC098\t0x7F49\n0xC099\t0x7F4A\n0xC09A\t0x7F4B\n0xC09B\t0x7F4C\n0xC09C\t0x7F4D\n0xC09D\t0x7F4E\n0xC09E\t0x7F4F\n0xC09F\t0x7F52\n0xC0A0\t0x7F53\n0xC0A1\t0x9988\n0xC0A2\t0x6127\n0xC0A3\t0x6E83\n0xC0A4\t0x5764\n0xC0A5\t0x6606\n0xC0A6\t0x6346\n0xC0A7\t0x56F0\n0xC0A8\t0x62EC\n0xC0A9\t0x6269\n0xC0AA\t0x5ED3\n0xC0AB\t0x9614\n0xC0AC\t0x5783\n0xC0AD\t0x62C9\n0xC0AE\t0x5587\n0xC0AF\t0x8721\n0xC0B0\t0x814A\n0xC0B1\t0x8FA3\n0xC0B2\t0x5566\n0xC0B3\t0x83B1\n0xC0B4\t0x6765\n0xC0B5\t0x8D56\n0xC0B6\t0x84DD\n0xC0B7\t0x5A6A\n0xC0B8\t0x680F\n0xC0B9\t0x62E6\n0xC0BA\t0x7BEE\n0xC0BB\t0x9611\n0xC0BC\t0x5170\n0xC0BD\t0x6F9C\n0xC0BE\t0x8C30\n0xC0BF\t0x63FD\n0xC0C0\t0x89C8\n0xC0C1\t0x61D2\n0xC0C2\t0x7F06\n0xC0C3\t0x70C2\n0xC0C4\t0x6EE5\n0xC0C5\t0x7405\n0xC0C6\t0x6994\n0xC0C7\t0x72FC\n0xC0C8\t0x5ECA\n0xC0C9\t0x90CE\n0xC0CA\t0x6717\n0xC0CB\t0x6D6A\n0xC0CC\t0x635E\n0xC0CD\t0x52B3\n0xC0CE\t0x7262\n0xC0CF\t0x8001\n0xC0D0\t0x4F6C\n0xC0D1\t0x59E5\n0xC0D2\t0x916A\n0xC0D3\t0x70D9\n0xC0D4\t0x6D9D\n0xC0D5\t0x52D2\n0xC0D6\t0x4E50\n0xC0D7\t0x96F7\n0xC0D8\t0x956D\n0xC0D9\t0x857E\n0xC0DA\t0x78CA\n0xC0DB\t0x7D2F\n0xC0DC\t0x5121\n0xC0DD\t0x5792\n0xC0DE\t0x64C2\n0xC0DF\t0x808B\n0xC0E0\t0x7C7B\n0xC0E1\t0x6CEA\n0xC0E2\t0x68F1\n0xC0E3\t0x695E\n0xC0E4\t0x51B7\n0xC0E5\t0x5398\n0xC0E6\t0x68A8\n0xC0E7\t0x7281\n0xC0E8\t0x9ECE\n0xC0E9\t0x7BF1\n0xC0EA\t0x72F8\n0xC0EB\t0x79BB\n0xC0EC\t0x6F13\n0xC0ED\t0x7406\n0xC0EE\t0x674E\n0xC0EF\t0x91CC\n0xC0F0\t0x9CA4\n0xC0F1\t0x793C\n0xC0F2\t0x8389\n0xC0F3\t0x8354\n0xC0F4\t0x540F\n0xC0F5\t0x6817\n0xC0F6\t0x4E3D\n0xC0F7\t0x5389\n0xC0F8\t0x52B1\n0xC0F9\t0x783E\n0xC0FA\t0x5386\n0xC0FB\t0x5229\n0xC0FC\t0x5088\n0xC0FD\t0x4F8B\n0xC0FE\t0x4FD0\n0xC140\t0x7F56\n0xC141\t0x7F59\n0xC142\t0x7F5B\n0xC143\t0x7F5C\n0xC144\t0x7F5D\n0xC145\t0x7F5E\n0xC146\t0x7F60\n0xC147\t0x7F63\n0xC148\t0x7F64\n0xC149\t0x7F65\n0xC14A\t0x7F66\n0xC14B\t0x7F67\n0xC14C\t0x7F6B\n0xC14D\t0x7F6C\n0xC14E\t0x7F6D\n0xC14F\t0x7F6F\n0xC150\t0x7F70\n0xC151\t0x7F73\n0xC152\t0x7F75\n0xC153\t0x7F76\n0xC154\t0x7F77\n0xC155\t0x7F78\n0xC156\t0x7F7A\n0xC157\t0x7F7B\n0xC158\t0x7F7C\n0xC159\t0x7F7D\n0xC15A\t0x7F7F\n0xC15B\t0x7F80\n0xC15C\t0x7F82\n0xC15D\t0x7F83\n0xC15E\t0x7F84\n0xC15F\t0x7F85\n0xC160\t0x7F86\n0xC161\t0x7F87\n0xC162\t0x7F88\n0xC163\t0x7F89\n0xC164\t0x7F8B\n0xC165\t0x7F8D\n0xC166\t0x7F8F\n0xC167\t0x7F90\n0xC168\t0x7F91\n0xC169\t0x7F92\n0xC16A\t0x7F93\n0xC16B\t0x7F95\n0xC16C\t0x7F96\n0xC16D\t0x7F97\n0xC16E\t0x7F98\n0xC16F\t0x7F99\n0xC170\t0x7F9B\n0xC171\t0x7F9C\n0xC172\t0x7FA0\n0xC173\t0x7FA2\n0xC174\t0x7FA3\n0xC175\t0x7FA5\n0xC176\t0x7FA6\n0xC177\t0x7FA8\n0xC178\t0x7FA9\n0xC179\t0x7FAA\n0xC17A\t0x7FAB\n0xC17B\t0x7FAC\n0xC17C\t0x7FAD\n0xC17D\t0x7FAE\n0xC17E\t0x7FB1\n0xC180\t0x7FB3\n0xC181\t0x7FB4\n0xC182\t0x7FB5\n0xC183\t0x7FB6\n0xC184\t0x7FB7\n0xC185\t0x7FBA\n0xC186\t0x7FBB\n0xC187\t0x7FBE\n0xC188\t0x7FC0\n0xC189\t0x7FC2\n0xC18A\t0x7FC3\n0xC18B\t0x7FC4\n0xC18C\t0x7FC6\n0xC18D\t0x7FC7\n0xC18E\t0x7FC8\n0xC18F\t0x7FC9\n0xC190\t0x7FCB\n0xC191\t0x7FCD\n0xC192\t0x7FCF\n0xC193\t0x7FD0\n0xC194\t0x7FD1\n0xC195\t0x7FD2\n0xC196\t0x7FD3\n0xC197\t0x7FD6\n0xC198\t0x7FD7\n0xC199\t0x7FD9\n0xC19A\t0x7FDA\n0xC19B\t0x7FDB\n0xC19C\t0x7FDC\n0xC19D\t0x7FDD\n0xC19E\t0x7FDE\n0xC19F\t0x7FE2\n0xC1A0\t0x7FE3\n0xC1A1\t0x75E2\n0xC1A2\t0x7ACB\n0xC1A3\t0x7C92\n0xC1A4\t0x6CA5\n0xC1A5\t0x96B6\n0xC1A6\t0x529B\n0xC1A7\t0x7483\n0xC1A8\t0x54E9\n0xC1A9\t0x4FE9\n0xC1AA\t0x8054\n0xC1AB\t0x83B2\n0xC1AC\t0x8FDE\n0xC1AD\t0x9570\n0xC1AE\t0x5EC9\n0xC1AF\t0x601C\n0xC1B0\t0x6D9F\n0xC1B1\t0x5E18\n0xC1B2\t0x655B\n0xC1B3\t0x8138\n0xC1B4\t0x94FE\n0xC1B5\t0x604B\n0xC1B6\t0x70BC\n0xC1B7\t0x7EC3\n0xC1B8\t0x7CAE\n0xC1B9\t0x51C9\n0xC1BA\t0x6881\n0xC1BB\t0x7CB1\n0xC1BC\t0x826F\n0xC1BD\t0x4E24\n0xC1BE\t0x8F86\n0xC1BF\t0x91CF\n0xC1C0\t0x667E\n0xC1C1\t0x4EAE\n0xC1C2\t0x8C05\n0xC1C3\t0x64A9\n0xC1C4\t0x804A\n0xC1C5\t0x50DA\n0xC1C6\t0x7597\n0xC1C7\t0x71CE\n0xC1C8\t0x5BE5\n0xC1C9\t0x8FBD\n0xC1CA\t0x6F66\n0xC1CB\t0x4E86\n0xC1CC\t0x6482\n0xC1CD\t0x9563\n0xC1CE\t0x5ED6\n0xC1CF\t0x6599\n0xC1D0\t0x5217\n0xC1D1\t0x88C2\n0xC1D2\t0x70C8\n0xC1D3\t0x52A3\n0xC1D4\t0x730E\n0xC1D5\t0x7433\n0xC1D6\t0x6797\n0xC1D7\t0x78F7\n0xC1D8\t0x9716\n0xC1D9\t0x4E34\n0xC1DA\t0x90BB\n0xC1DB\t0x9CDE\n0xC1DC\t0x6DCB\n0xC1DD\t0x51DB\n0xC1DE\t0x8D41\n0xC1DF\t0x541D\n0xC1E0\t0x62CE\n0xC1E1\t0x73B2\n0xC1E2\t0x83F1\n0xC1E3\t0x96F6\n0xC1E4\t0x9F84\n0xC1E5\t0x94C3\n0xC1E6\t0x4F36\n0xC1E7\t0x7F9A\n0xC1E8\t0x51CC\n0xC1E9\t0x7075\n0xC1EA\t0x9675\n0xC1EB\t0x5CAD\n0xC1EC\t0x9886\n0xC1ED\t0x53E6\n0xC1EE\t0x4EE4\n0xC1EF\t0x6E9C\n0xC1F0\t0x7409\n0xC1F1\t0x69B4\n0xC1F2\t0x786B\n0xC1F3\t0x998F\n0xC1F4\t0x7559\n0xC1F5\t0x5218\n0xC1F6\t0x7624\n0xC1F7\t0x6D41\n0xC1F8\t0x67F3\n0xC1F9\t0x516D\n0xC1FA\t0x9F99\n0xC1FB\t0x804B\n0xC1FC\t0x5499\n0xC1FD\t0x7B3C\n0xC1FE\t0x7ABF\n0xC240\t0x7FE4\n0xC241\t0x7FE7\n0xC242\t0x7FE8\n0xC243\t0x7FEA\n0xC244\t0x7FEB\n0xC245\t0x7FEC\n0xC246\t0x7FED\n0xC247\t0x7FEF\n0xC248\t0x7FF2\n0xC249\t0x7FF4\n0xC24A\t0x7FF5\n0xC24B\t0x7FF6\n0xC24C\t0x7FF7\n0xC24D\t0x7FF8\n0xC24E\t0x7FF9\n0xC24F\t0x7FFA\n0xC250\t0x7FFD\n0xC251\t0x7FFE\n0xC252\t0x7FFF\n0xC253\t0x8002\n0xC254\t0x8007\n0xC255\t0x8008\n0xC256\t0x8009\n0xC257\t0x800A\n0xC258\t0x800E\n0xC259\t0x800F\n0xC25A\t0x8011\n0xC25B\t0x8013\n0xC25C\t0x801A\n0xC25D\t0x801B\n0xC25E\t0x801D\n0xC25F\t0x801E\n0xC260\t0x801F\n0xC261\t0x8021\n0xC262\t0x8023\n0xC263\t0x8024\n0xC264\t0x802B\n0xC265\t0x802C\n0xC266\t0x802D\n0xC267\t0x802E\n0xC268\t0x802F\n0xC269\t0x8030\n0xC26A\t0x8032\n0xC26B\t0x8034\n0xC26C\t0x8039\n0xC26D\t0x803A\n0xC26E\t0x803C\n0xC26F\t0x803E\n0xC270\t0x8040\n0xC271\t0x8041\n0xC272\t0x8044\n0xC273\t0x8045\n0xC274\t0x8047\n0xC275\t0x8048\n0xC276\t0x8049\n0xC277\t0x804E\n0xC278\t0x804F\n0xC279\t0x8050\n0xC27A\t0x8051\n0xC27B\t0x8053\n0xC27C\t0x8055\n0xC27D\t0x8056\n0xC27E\t0x8057\n0xC280\t0x8059\n0xC281\t0x805B\n0xC282\t0x805C\n0xC283\t0x805D\n0xC284\t0x805E\n0xC285\t0x805F\n0xC286\t0x8060\n0xC287\t0x8061\n0xC288\t0x8062\n0xC289\t0x8063\n0xC28A\t0x8064\n0xC28B\t0x8065\n0xC28C\t0x8066\n0xC28D\t0x8067\n0xC28E\t0x8068\n0xC28F\t0x806B\n0xC290\t0x806C\n0xC291\t0x806D\n0xC292\t0x806E\n0xC293\t0x806F\n0xC294\t0x8070\n0xC295\t0x8072\n0xC296\t0x8073\n0xC297\t0x8074\n0xC298\t0x8075\n0xC299\t0x8076\n0xC29A\t0x8077\n0xC29B\t0x8078\n0xC29C\t0x8079\n0xC29D\t0x807A\n0xC29E\t0x807B\n0xC29F\t0x807C\n0xC2A0\t0x807D\n0xC2A1\t0x9686\n0xC2A2\t0x5784\n0xC2A3\t0x62E2\n0xC2A4\t0x9647\n0xC2A5\t0x697C\n0xC2A6\t0x5A04\n0xC2A7\t0x6402\n0xC2A8\t0x7BD3\n0xC2A9\t0x6F0F\n0xC2AA\t0x964B\n0xC2AB\t0x82A6\n0xC2AC\t0x5362\n0xC2AD\t0x9885\n0xC2AE\t0x5E90\n0xC2AF\t0x7089\n0xC2B0\t0x63B3\n0xC2B1\t0x5364\n0xC2B2\t0x864F\n0xC2B3\t0x9C81\n0xC2B4\t0x9E93\n0xC2B5\t0x788C\n0xC2B6\t0x9732\n0xC2B7\t0x8DEF\n0xC2B8\t0x8D42\n0xC2B9\t0x9E7F\n0xC2BA\t0x6F5E\n0xC2BB\t0x7984\n0xC2BC\t0x5F55\n0xC2BD\t0x9646\n0xC2BE\t0x622E\n0xC2BF\t0x9A74\n0xC2C0\t0x5415\n0xC2C1\t0x94DD\n0xC2C2\t0x4FA3\n0xC2C3\t0x65C5\n0xC2C4\t0x5C65\n0xC2C5\t0x5C61\n0xC2C6\t0x7F15\n0xC2C7\t0x8651\n0xC2C8\t0x6C2F\n0xC2C9\t0x5F8B\n0xC2CA\t0x7387\n0xC2CB\t0x6EE4\n0xC2CC\t0x7EFF\n0xC2CD\t0x5CE6\n0xC2CE\t0x631B\n0xC2CF\t0x5B6A\n0xC2D0\t0x6EE6\n0xC2D1\t0x5375\n0xC2D2\t0x4E71\n0xC2D3\t0x63A0\n0xC2D4\t0x7565\n0xC2D5\t0x62A1\n0xC2D6\t0x8F6E\n0xC2D7\t0x4F26\n0xC2D8\t0x4ED1\n0xC2D9\t0x6CA6\n0xC2DA\t0x7EB6\n0xC2DB\t0x8BBA\n0xC2DC\t0x841D\n0xC2DD\t0x87BA\n0xC2DE\t0x7F57\n0xC2DF\t0x903B\n0xC2E0\t0x9523\n0xC2E1\t0x7BA9\n0xC2E2\t0x9AA1\n0xC2E3\t0x88F8\n0xC2E4\t0x843D\n0xC2E5\t0x6D1B\n0xC2E6\t0x9A86\n0xC2E7\t0x7EDC\n0xC2E8\t0x5988\n0xC2E9\t0x9EBB\n0xC2EA\t0x739B\n0xC2EB\t0x7801\n0xC2EC\t0x8682\n0xC2ED\t0x9A6C\n0xC2EE\t0x9A82\n0xC2EF\t0x561B\n0xC2F0\t0x5417\n0xC2F1\t0x57CB\n0xC2F2\t0x4E70\n0xC2F3\t0x9EA6\n0xC2F4\t0x5356\n0xC2F5\t0x8FC8\n0xC2F6\t0x8109\n0xC2F7\t0x7792\n0xC2F8\t0x9992\n0xC2F9\t0x86EE\n0xC2FA\t0x6EE1\n0xC2FB\t0x8513\n0xC2FC\t0x66FC\n0xC2FD\t0x6162\n0xC2FE\t0x6F2B\n0xC340\t0x807E\n0xC341\t0x8081\n0xC342\t0x8082\n0xC343\t0x8085\n0xC344\t0x8088\n0xC345\t0x808A\n0xC346\t0x808D\n0xC347\t0x808E\n0xC348\t0x808F\n0xC349\t0x8090\n0xC34A\t0x8091\n0xC34B\t0x8092\n0xC34C\t0x8094\n0xC34D\t0x8095\n0xC34E\t0x8097\n0xC34F\t0x8099\n0xC350\t0x809E\n0xC351\t0x80A3\n0xC352\t0x80A6\n0xC353\t0x80A7\n0xC354\t0x80A8\n0xC355\t0x80AC\n0xC356\t0x80B0\n0xC357\t0x80B3\n0xC358\t0x80B5\n0xC359\t0x80B6\n0xC35A\t0x80B8\n0xC35B\t0x80B9\n0xC35C\t0x80BB\n0xC35D\t0x80C5\n0xC35E\t0x80C7\n0xC35F\t0x80C8\n0xC360\t0x80C9\n0xC361\t0x80CA\n0xC362\t0x80CB\n0xC363\t0x80CF\n0xC364\t0x80D0\n0xC365\t0x80D1\n0xC366\t0x80D2\n0xC367\t0x80D3\n0xC368\t0x80D4\n0xC369\t0x80D5\n0xC36A\t0x80D8\n0xC36B\t0x80DF\n0xC36C\t0x80E0\n0xC36D\t0x80E2\n0xC36E\t0x80E3\n0xC36F\t0x80E6\n0xC370\t0x80EE\n0xC371\t0x80F5\n0xC372\t0x80F7\n0xC373\t0x80F9\n0xC374\t0x80FB\n0xC375\t0x80FE\n0xC376\t0x80FF\n0xC377\t0x8100\n0xC378\t0x8101\n0xC379\t0x8103\n0xC37A\t0x8104\n0xC37B\t0x8105\n0xC37C\t0x8107\n0xC37D\t0x8108\n0xC37E\t0x810B\n0xC380\t0x810C\n0xC381\t0x8115\n0xC382\t0x8117\n0xC383\t0x8119\n0xC384\t0x811B\n0xC385\t0x811C\n0xC386\t0x811D\n0xC387\t0x811F\n0xC388\t0x8120\n0xC389\t0x8121\n0xC38A\t0x8122\n0xC38B\t0x8123\n0xC38C\t0x8124\n0xC38D\t0x8125\n0xC38E\t0x8126\n0xC38F\t0x8127\n0xC390\t0x8128\n0xC391\t0x8129\n0xC392\t0x812A\n0xC393\t0x812B\n0xC394\t0x812D\n0xC395\t0x812E\n0xC396\t0x8130\n0xC397\t0x8133\n0xC398\t0x8134\n0xC399\t0x8135\n0xC39A\t0x8137\n0xC39B\t0x8139\n0xC39C\t0x813A\n0xC39D\t0x813B\n0xC39E\t0x813C\n0xC39F\t0x813D\n0xC3A0\t0x813F\n0xC3A1\t0x8C29\n0xC3A2\t0x8292\n0xC3A3\t0x832B\n0xC3A4\t0x76F2\n0xC3A5\t0x6C13\n0xC3A6\t0x5FD9\n0xC3A7\t0x83BD\n0xC3A8\t0x732B\n0xC3A9\t0x8305\n0xC3AA\t0x951A\n0xC3AB\t0x6BDB\n0xC3AC\t0x77DB\n0xC3AD\t0x94C6\n0xC3AE\t0x536F\n0xC3AF\t0x8302\n0xC3B0\t0x5192\n0xC3B1\t0x5E3D\n0xC3B2\t0x8C8C\n0xC3B3\t0x8D38\n0xC3B4\t0x4E48\n0xC3B5\t0x73AB\n0xC3B6\t0x679A\n0xC3B7\t0x6885\n0xC3B8\t0x9176\n0xC3B9\t0x9709\n0xC3BA\t0x7164\n0xC3BB\t0x6CA1\n0xC3BC\t0x7709\n0xC3BD\t0x5A92\n0xC3BE\t0x9541\n0xC3BF\t0x6BCF\n0xC3C0\t0x7F8E\n0xC3C1\t0x6627\n0xC3C2\t0x5BD0\n0xC3C3\t0x59B9\n0xC3C4\t0x5A9A\n0xC3C5\t0x95E8\n0xC3C6\t0x95F7\n0xC3C7\t0x4EEC\n0xC3C8\t0x840C\n0xC3C9\t0x8499\n0xC3CA\t0x6AAC\n0xC3CB\t0x76DF\n0xC3CC\t0x9530\n0xC3CD\t0x731B\n0xC3CE\t0x68A6\n0xC3CF\t0x5B5F\n0xC3D0\t0x772F\n0xC3D1\t0x919A\n0xC3D2\t0x9761\n0xC3D3\t0x7CDC\n0xC3D4\t0x8FF7\n0xC3D5\t0x8C1C\n0xC3D6\t0x5F25\n0xC3D7\t0x7C73\n0xC3D8\t0x79D8\n0xC3D9\t0x89C5\n0xC3DA\t0x6CCC\n0xC3DB\t0x871C\n0xC3DC\t0x5BC6\n0xC3DD\t0x5E42\n0xC3DE\t0x68C9\n0xC3DF\t0x7720\n0xC3E0\t0x7EF5\n0xC3E1\t0x5195\n0xC3E2\t0x514D\n0xC3E3\t0x52C9\n0xC3E4\t0x5A29\n0xC3E5\t0x7F05\n0xC3E6\t0x9762\n0xC3E7\t0x82D7\n0xC3E8\t0x63CF\n0xC3E9\t0x7784\n0xC3EA\t0x85D0\n0xC3EB\t0x79D2\n0xC3EC\t0x6E3A\n0xC3ED\t0x5E99\n0xC3EE\t0x5999\n0xC3EF\t0x8511\n0xC3F0\t0x706D\n0xC3F1\t0x6C11\n0xC3F2\t0x62BF\n0xC3F3\t0x76BF\n0xC3F4\t0x654F\n0xC3F5\t0x60AF\n0xC3F6\t0x95FD\n0xC3F7\t0x660E\n0xC3F8\t0x879F\n0xC3F9\t0x9E23\n0xC3FA\t0x94ED\n0xC3FB\t0x540D\n0xC3FC\t0x547D\n0xC3FD\t0x8C2C\n0xC3FE\t0x6478\n0xC440\t0x8140\n0xC441\t0x8141\n0xC442\t0x8142\n0xC443\t0x8143\n0xC444\t0x8144\n0xC445\t0x8145\n0xC446\t0x8147\n0xC447\t0x8149\n0xC448\t0x814D\n0xC449\t0x814E\n0xC44A\t0x814F\n0xC44B\t0x8152\n0xC44C\t0x8156\n0xC44D\t0x8157\n0xC44E\t0x8158\n0xC44F\t0x815B\n0xC450\t0x815C\n0xC451\t0x815D\n0xC452\t0x815E\n0xC453\t0x815F\n0xC454\t0x8161\n0xC455\t0x8162\n0xC456\t0x8163\n0xC457\t0x8164\n0xC458\t0x8166\n0xC459\t0x8168\n0xC45A\t0x816A\n0xC45B\t0x816B\n0xC45C\t0x816C\n0xC45D\t0x816F\n0xC45E\t0x8172\n0xC45F\t0x8173\n0xC460\t0x8175\n0xC461\t0x8176\n0xC462\t0x8177\n0xC463\t0x8178\n0xC464\t0x8181\n0xC465\t0x8183\n0xC466\t0x8184\n0xC467\t0x8185\n0xC468\t0x8186\n0xC469\t0x8187\n0xC46A\t0x8189\n0xC46B\t0x818B\n0xC46C\t0x818C\n0xC46D\t0x818D\n0xC46E\t0x818E\n0xC46F\t0x8190\n0xC470\t0x8192\n0xC471\t0x8193\n0xC472\t0x8194\n0xC473\t0x8195\n0xC474\t0x8196\n0xC475\t0x8197\n0xC476\t0x8199\n0xC477\t0x819A\n0xC478\t0x819E\n0xC479\t0x819F\n0xC47A\t0x81A0\n0xC47B\t0x81A1\n0xC47C\t0x81A2\n0xC47D\t0x81A4\n0xC47E\t0x81A5\n0xC480\t0x81A7\n0xC481\t0x81A9\n0xC482\t0x81AB\n0xC483\t0x81AC\n0xC484\t0x81AD\n0xC485\t0x81AE\n0xC486\t0x81AF\n0xC487\t0x81B0\n0xC488\t0x81B1\n0xC489\t0x81B2\n0xC48A\t0x81B4\n0xC48B\t0x81B5\n0xC48C\t0x81B6\n0xC48D\t0x81B7\n0xC48E\t0x81B8\n0xC48F\t0x81B9\n0xC490\t0x81BC\n0xC491\t0x81BD\n0xC492\t0x81BE\n0xC493\t0x81BF\n0xC494\t0x81C4\n0xC495\t0x81C5\n0xC496\t0x81C7\n0xC497\t0x81C8\n0xC498\t0x81C9\n0xC499\t0x81CB\n0xC49A\t0x81CD\n0xC49B\t0x81CE\n0xC49C\t0x81CF\n0xC49D\t0x81D0\n0xC49E\t0x81D1\n0xC49F\t0x81D2\n0xC4A0\t0x81D3\n0xC4A1\t0x6479\n0xC4A2\t0x8611\n0xC4A3\t0x6A21\n0xC4A4\t0x819C\n0xC4A5\t0x78E8\n0xC4A6\t0x6469\n0xC4A7\t0x9B54\n0xC4A8\t0x62B9\n0xC4A9\t0x672B\n0xC4AA\t0x83AB\n0xC4AB\t0x58A8\n0xC4AC\t0x9ED8\n0xC4AD\t0x6CAB\n0xC4AE\t0x6F20\n0xC4AF\t0x5BDE\n0xC4B0\t0x964C\n0xC4B1\t0x8C0B\n0xC4B2\t0x725F\n0xC4B3\t0x67D0\n0xC4B4\t0x62C7\n0xC4B5\t0x7261\n0xC4B6\t0x4EA9\n0xC4B7\t0x59C6\n0xC4B8\t0x6BCD\n0xC4B9\t0x5893\n0xC4BA\t0x66AE\n0xC4BB\t0x5E55\n0xC4BC\t0x52DF\n0xC4BD\t0x6155\n0xC4BE\t0x6728\n0xC4BF\t0x76EE\n0xC4C0\t0x7766\n0xC4C1\t0x7267\n0xC4C2\t0x7A46\n0xC4C3\t0x62FF\n0xC4C4\t0x54EA\n0xC4C5\t0x5450\n0xC4C6\t0x94A0\n0xC4C7\t0x90A3\n0xC4C8\t0x5A1C\n0xC4C9\t0x7EB3\n0xC4CA\t0x6C16\n0xC4CB\t0x4E43\n0xC4CC\t0x5976\n0xC4CD\t0x8010\n0xC4CE\t0x5948\n0xC4CF\t0x5357\n0xC4D0\t0x7537\n0xC4D1\t0x96BE\n0xC4D2\t0x56CA\n0xC4D3\t0x6320\n0xC4D4\t0x8111\n0xC4D5\t0x607C\n0xC4D6\t0x95F9\n0xC4D7\t0x6DD6\n0xC4D8\t0x5462\n0xC4D9\t0x9981\n0xC4DA\t0x5185\n0xC4DB\t0x5AE9\n0xC4DC\t0x80FD\n0xC4DD\t0x59AE\n0xC4DE\t0x9713\n0xC4DF\t0x502A\n0xC4E0\t0x6CE5\n0xC4E1\t0x5C3C\n0xC4E2\t0x62DF\n0xC4E3\t0x4F60\n0xC4E4\t0x533F\n0xC4E5\t0x817B\n0xC4E6\t0x9006\n0xC4E7\t0x6EBA\n0xC4E8\t0x852B\n0xC4E9\t0x62C8\n0xC4EA\t0x5E74\n0xC4EB\t0x78BE\n0xC4EC\t0x64B5\n0xC4ED\t0x637B\n0xC4EE\t0x5FF5\n0xC4EF\t0x5A18\n0xC4F0\t0x917F\n0xC4F1\t0x9E1F\n0xC4F2\t0x5C3F\n0xC4F3\t0x634F\n0xC4F4\t0x8042\n0xC4F5\t0x5B7D\n0xC4F6\t0x556E\n0xC4F7\t0x954A\n0xC4F8\t0x954D\n0xC4F9\t0x6D85\n0xC4FA\t0x60A8\n0xC4FB\t0x67E0\n0xC4FC\t0x72DE\n0xC4FD\t0x51DD\n0xC4FE\t0x5B81\n0xC540\t0x81D4\n0xC541\t0x81D5\n0xC542\t0x81D6\n0xC543\t0x81D7\n0xC544\t0x81D8\n0xC545\t0x81D9\n0xC546\t0x81DA\n0xC547\t0x81DB\n0xC548\t0x81DC\n0xC549\t0x81DD\n0xC54A\t0x81DE\n0xC54B\t0x81DF\n0xC54C\t0x81E0\n0xC54D\t0x81E1\n0xC54E\t0x81E2\n0xC54F\t0x81E4\n0xC550\t0x81E5\n0xC551\t0x81E6\n0xC552\t0x81E8\n0xC553\t0x81E9\n0xC554\t0x81EB\n0xC555\t0x81EE\n0xC556\t0x81EF\n0xC557\t0x81F0\n0xC558\t0x81F1\n0xC559\t0x81F2\n0xC55A\t0x81F5\n0xC55B\t0x81F6\n0xC55C\t0x81F7\n0xC55D\t0x81F8\n0xC55E\t0x81F9\n0xC55F\t0x81FA\n0xC560\t0x81FD\n0xC561\t0x81FF\n0xC562\t0x8203\n0xC563\t0x8207\n0xC564\t0x8208\n0xC565\t0x8209\n0xC566\t0x820A\n0xC567\t0x820B\n0xC568\t0x820E\n0xC569\t0x820F\n0xC56A\t0x8211\n0xC56B\t0x8213\n0xC56C\t0x8215\n0xC56D\t0x8216\n0xC56E\t0x8217\n0xC56F\t0x8218\n0xC570\t0x8219\n0xC571\t0x821A\n0xC572\t0x821D\n0xC573\t0x8220\n0xC574\t0x8224\n0xC575\t0x8225\n0xC576\t0x8226\n0xC577\t0x8227\n0xC578\t0x8229\n0xC579\t0x822E\n0xC57A\t0x8232\n0xC57B\t0x823A\n0xC57C\t0x823C\n0xC57D\t0x823D\n0xC57E\t0x823F\n0xC580\t0x8240\n0xC581\t0x8241\n0xC582\t0x8242\n0xC583\t0x8243\n0xC584\t0x8245\n0xC585\t0x8246\n0xC586\t0x8248\n0xC587\t0x824A\n0xC588\t0x824C\n0xC589\t0x824D\n0xC58A\t0x824E\n0xC58B\t0x8250\n0xC58C\t0x8251\n0xC58D\t0x8252\n0xC58E\t0x8253\n0xC58F\t0x8254\n0xC590\t0x8255\n0xC591\t0x8256\n0xC592\t0x8257\n0xC593\t0x8259\n0xC594\t0x825B\n0xC595\t0x825C\n0xC596\t0x825D\n0xC597\t0x825E\n0xC598\t0x8260\n0xC599\t0x8261\n0xC59A\t0x8262\n0xC59B\t0x8263\n0xC59C\t0x8264\n0xC59D\t0x8265\n0xC59E\t0x8266\n0xC59F\t0x8267\n0xC5A0\t0x8269\n0xC5A1\t0x62E7\n0xC5A2\t0x6CDE\n0xC5A3\t0x725B\n0xC5A4\t0x626D\n0xC5A5\t0x94AE\n0xC5A6\t0x7EBD\n0xC5A7\t0x8113\n0xC5A8\t0x6D53\n0xC5A9\t0x519C\n0xC5AA\t0x5F04\n0xC5AB\t0x5974\n0xC5AC\t0x52AA\n0xC5AD\t0x6012\n0xC5AE\t0x5973\n0xC5AF\t0x6696\n0xC5B0\t0x8650\n0xC5B1\t0x759F\n0xC5B2\t0x632A\n0xC5B3\t0x61E6\n0xC5B4\t0x7CEF\n0xC5B5\t0x8BFA\n0xC5B6\t0x54E6\n0xC5B7\t0x6B27\n0xC5B8\t0x9E25\n0xC5B9\t0x6BB4\n0xC5BA\t0x85D5\n0xC5BB\t0x5455\n0xC5BC\t0x5076\n0xC5BD\t0x6CA4\n0xC5BE\t0x556A\n0xC5BF\t0x8DB4\n0xC5C0\t0x722C\n0xC5C1\t0x5E15\n0xC5C2\t0x6015\n0xC5C3\t0x7436\n0xC5C4\t0x62CD\n0xC5C5\t0x6392\n0xC5C6\t0x724C\n0xC5C7\t0x5F98\n0xC5C8\t0x6E43\n0xC5C9\t0x6D3E\n0xC5CA\t0x6500\n0xC5CB\t0x6F58\n0xC5CC\t0x76D8\n0xC5CD\t0x78D0\n0xC5CE\t0x76FC\n0xC5CF\t0x7554\n0xC5D0\t0x5224\n0xC5D1\t0x53DB\n0xC5D2\t0x4E53\n0xC5D3\t0x5E9E\n0xC5D4\t0x65C1\n0xC5D5\t0x802A\n0xC5D6\t0x80D6\n0xC5D7\t0x629B\n0xC5D8\t0x5486\n0xC5D9\t0x5228\n0xC5DA\t0x70AE\n0xC5DB\t0x888D\n0xC5DC\t0x8DD1\n0xC5DD\t0x6CE1\n0xC5DE\t0x5478\n0xC5DF\t0x80DA\n0xC5E0\t0x57F9\n0xC5E1\t0x88F4\n0xC5E2\t0x8D54\n0xC5E3\t0x966A\n0xC5E4\t0x914D\n0xC5E5\t0x4F69\n0xC5E6\t0x6C9B\n0xC5E7\t0x55B7\n0xC5E8\t0x76C6\n0xC5E9\t0x7830\n0xC5EA\t0x62A8\n0xC5EB\t0x70F9\n0xC5EC\t0x6F8E\n0xC5ED\t0x5F6D\n0xC5EE\t0x84EC\n0xC5EF\t0x68DA\n0xC5F0\t0x787C\n0xC5F1\t0x7BF7\n0xC5F2\t0x81A8\n0xC5F3\t0x670B\n0xC5F4\t0x9E4F\n0xC5F5\t0x6367\n0xC5F6\t0x78B0\n0xC5F7\t0x576F\n0xC5F8\t0x7812\n0xC5F9\t0x9739\n0xC5FA\t0x6279\n0xC5FB\t0x62AB\n0xC5FC\t0x5288\n0xC5FD\t0x7435\n0xC5FE\t0x6BD7\n0xC640\t0x826A\n0xC641\t0x826B\n0xC642\t0x826C\n0xC643\t0x826D\n0xC644\t0x8271\n0xC645\t0x8275\n0xC646\t0x8276\n0xC647\t0x8277\n0xC648\t0x8278\n0xC649\t0x827B\n0xC64A\t0x827C\n0xC64B\t0x8280\n0xC64C\t0x8281\n0xC64D\t0x8283\n0xC64E\t0x8285\n0xC64F\t0x8286\n0xC650\t0x8287\n0xC651\t0x8289\n0xC652\t0x828C\n0xC653\t0x8290\n0xC654\t0x8293\n0xC655\t0x8294\n0xC656\t0x8295\n0xC657\t0x8296\n0xC658\t0x829A\n0xC659\t0x829B\n0xC65A\t0x829E\n0xC65B\t0x82A0\n0xC65C\t0x82A2\n0xC65D\t0x82A3\n0xC65E\t0x82A7\n0xC65F\t0x82B2\n0xC660\t0x82B5\n0xC661\t0x82B6\n0xC662\t0x82BA\n0xC663\t0x82BB\n0xC664\t0x82BC\n0xC665\t0x82BF\n0xC666\t0x82C0\n0xC667\t0x82C2\n0xC668\t0x82C3\n0xC669\t0x82C5\n0xC66A\t0x82C6\n0xC66B\t0x82C9\n0xC66C\t0x82D0\n0xC66D\t0x82D6\n0xC66E\t0x82D9\n0xC66F\t0x82DA\n0xC670\t0x82DD\n0xC671\t0x82E2\n0xC672\t0x82E7\n0xC673\t0x82E8\n0xC674\t0x82E9\n0xC675\t0x82EA\n0xC676\t0x82EC\n0xC677\t0x82ED\n0xC678\t0x82EE\n0xC679\t0x82F0\n0xC67A\t0x82F2\n0xC67B\t0x82F3\n0xC67C\t0x82F5\n0xC67D\t0x82F6\n0xC67E\t0x82F8\n0xC680\t0x82FA\n0xC681\t0x82FC\n0xC682\t0x82FD\n0xC683\t0x82FE\n0xC684\t0x82FF\n0xC685\t0x8300\n0xC686\t0x830A\n0xC687\t0x830B\n0xC688\t0x830D\n0xC689\t0x8310\n0xC68A\t0x8312\n0xC68B\t0x8313\n0xC68C\t0x8316\n0xC68D\t0x8318\n0xC68E\t0x8319\n0xC68F\t0x831D\n0xC690\t0x831E\n0xC691\t0x831F\n0xC692\t0x8320\n0xC693\t0x8321\n0xC694\t0x8322\n0xC695\t0x8323\n0xC696\t0x8324\n0xC697\t0x8325\n0xC698\t0x8326\n0xC699\t0x8329\n0xC69A\t0x832A\n0xC69B\t0x832E\n0xC69C\t0x8330\n0xC69D\t0x8332\n0xC69E\t0x8337\n0xC69F\t0x833B\n0xC6A0\t0x833D\n0xC6A1\t0x5564\n0xC6A2\t0x813E\n0xC6A3\t0x75B2\n0xC6A4\t0x76AE\n0xC6A5\t0x5339\n0xC6A6\t0x75DE\n0xC6A7\t0x50FB\n0xC6A8\t0x5C41\n0xC6A9\t0x8B6C\n0xC6AA\t0x7BC7\n0xC6AB\t0x504F\n0xC6AC\t0x7247\n0xC6AD\t0x9A97\n0xC6AE\t0x98D8\n0xC6AF\t0x6F02\n0xC6B0\t0x74E2\n0xC6B1\t0x7968\n0xC6B2\t0x6487\n0xC6B3\t0x77A5\n0xC6B4\t0x62FC\n0xC6B5\t0x9891\n0xC6B6\t0x8D2B\n0xC6B7\t0x54C1\n0xC6B8\t0x8058\n0xC6B9\t0x4E52\n0xC6BA\t0x576A\n0xC6BB\t0x82F9\n0xC6BC\t0x840D\n0xC6BD\t0x5E73\n0xC6BE\t0x51ED\n0xC6BF\t0x74F6\n0xC6C0\t0x8BC4\n0xC6C1\t0x5C4F\n0xC6C2\t0x5761\n0xC6C3\t0x6CFC\n0xC6C4\t0x9887\n0xC6C5\t0x5A46\n0xC6C6\t0x7834\n0xC6C7\t0x9B44\n0xC6C8\t0x8FEB\n0xC6C9\t0x7C95\n0xC6CA\t0x5256\n0xC6CB\t0x6251\n0xC6CC\t0x94FA\n0xC6CD\t0x4EC6\n0xC6CE\t0x8386\n0xC6CF\t0x8461\n0xC6D0\t0x83E9\n0xC6D1\t0x84B2\n0xC6D2\t0x57D4\n0xC6D3\t0x6734\n0xC6D4\t0x5703\n0xC6D5\t0x666E\n0xC6D6\t0x6D66\n0xC6D7\t0x8C31\n0xC6D8\t0x66DD\n0xC6D9\t0x7011\n0xC6DA\t0x671F\n0xC6DB\t0x6B3A\n0xC6DC\t0x6816\n0xC6DD\t0x621A\n0xC6DE\t0x59BB\n0xC6DF\t0x4E03\n0xC6E0\t0x51C4\n0xC6E1\t0x6F06\n0xC6E2\t0x67D2\n0xC6E3\t0x6C8F\n0xC6E4\t0x5176\n0xC6E5\t0x68CB\n0xC6E6\t0x5947\n0xC6E7\t0x6B67\n0xC6E8\t0x7566\n0xC6E9\t0x5D0E\n0xC6EA\t0x8110\n0xC6EB\t0x9F50\n0xC6EC\t0x65D7\n0xC6ED\t0x7948\n0xC6EE\t0x7941\n0xC6EF\t0x9A91\n0xC6F0\t0x8D77\n0xC6F1\t0x5C82\n0xC6F2\t0x4E5E\n0xC6F3\t0x4F01\n0xC6F4\t0x542F\n0xC6F5\t0x5951\n0xC6F6\t0x780C\n0xC6F7\t0x5668\n0xC6F8\t0x6C14\n0xC6F9\t0x8FC4\n0xC6FA\t0x5F03\n0xC6FB\t0x6C7D\n0xC6FC\t0x6CE3\n0xC6FD\t0x8BAB\n0xC6FE\t0x6390\n0xC740\t0x833E\n0xC741\t0x833F\n0xC742\t0x8341\n0xC743\t0x8342\n0xC744\t0x8344\n0xC745\t0x8345\n0xC746\t0x8348\n0xC747\t0x834A\n0xC748\t0x834B\n0xC749\t0x834C\n0xC74A\t0x834D\n0xC74B\t0x834E\n0xC74C\t0x8353\n0xC74D\t0x8355\n0xC74E\t0x8356\n0xC74F\t0x8357\n0xC750\t0x8358\n0xC751\t0x8359\n0xC752\t0x835D\n0xC753\t0x8362\n0xC754\t0x8370\n0xC755\t0x8371\n0xC756\t0x8372\n0xC757\t0x8373\n0xC758\t0x8374\n0xC759\t0x8375\n0xC75A\t0x8376\n0xC75B\t0x8379\n0xC75C\t0x837A\n0xC75D\t0x837E\n0xC75E\t0x837F\n0xC75F\t0x8380\n0xC760\t0x8381\n0xC761\t0x8382\n0xC762\t0x8383\n0xC763\t0x8384\n0xC764\t0x8387\n0xC765\t0x8388\n0xC766\t0x838A\n0xC767\t0x838B\n0xC768\t0x838C\n0xC769\t0x838D\n0xC76A\t0x838F\n0xC76B\t0x8390\n0xC76C\t0x8391\n0xC76D\t0x8394\n0xC76E\t0x8395\n0xC76F\t0x8396\n0xC770\t0x8397\n0xC771\t0x8399\n0xC772\t0x839A\n0xC773\t0x839D\n0xC774\t0x839F\n0xC775\t0x83A1\n0xC776\t0x83A2\n0xC777\t0x83A3\n0xC778\t0x83A4\n0xC779\t0x83A5\n0xC77A\t0x83A6\n0xC77B\t0x83A7\n0xC77C\t0x83AC\n0xC77D\t0x83AD\n0xC77E\t0x83AE\n0xC780\t0x83AF\n0xC781\t0x83B5\n0xC782\t0x83BB\n0xC783\t0x83BE\n0xC784\t0x83BF\n0xC785\t0x83C2\n0xC786\t0x83C3\n0xC787\t0x83C4\n0xC788\t0x83C6\n0xC789\t0x83C8\n0xC78A\t0x83C9\n0xC78B\t0x83CB\n0xC78C\t0x83CD\n0xC78D\t0x83CE\n0xC78E\t0x83D0\n0xC78F\t0x83D1\n0xC790\t0x83D2\n0xC791\t0x83D3\n0xC792\t0x83D5\n0xC793\t0x83D7\n0xC794\t0x83D9\n0xC795\t0x83DA\n0xC796\t0x83DB\n0xC797\t0x83DE\n0xC798\t0x83E2\n0xC799\t0x83E3\n0xC79A\t0x83E4\n0xC79B\t0x83E6\n0xC79C\t0x83E7\n0xC79D\t0x83E8\n0xC79E\t0x83EB\n0xC79F\t0x83EC\n0xC7A0\t0x83ED\n0xC7A1\t0x6070\n0xC7A2\t0x6D3D\n0xC7A3\t0x7275\n0xC7A4\t0x6266\n0xC7A5\t0x948E\n0xC7A6\t0x94C5\n0xC7A7\t0x5343\n0xC7A8\t0x8FC1\n0xC7A9\t0x7B7E\n0xC7AA\t0x4EDF\n0xC7AB\t0x8C26\n0xC7AC\t0x4E7E\n0xC7AD\t0x9ED4\n0xC7AE\t0x94B1\n0xC7AF\t0x94B3\n0xC7B0\t0x524D\n0xC7B1\t0x6F5C\n0xC7B2\t0x9063\n0xC7B3\t0x6D45\n0xC7B4\t0x8C34\n0xC7B5\t0x5811\n0xC7B6\t0x5D4C\n0xC7B7\t0x6B20\n0xC7B8\t0x6B49\n0xC7B9\t0x67AA\n0xC7BA\t0x545B\n0xC7BB\t0x8154\n0xC7BC\t0x7F8C\n0xC7BD\t0x5899\n0xC7BE\t0x8537\n0xC7BF\t0x5F3A\n0xC7C0\t0x62A2\n0xC7C1\t0x6A47\n0xC7C2\t0x9539\n0xC7C3\t0x6572\n0xC7C4\t0x6084\n0xC7C5\t0x6865\n0xC7C6\t0x77A7\n0xC7C7\t0x4E54\n0xC7C8\t0x4FA8\n0xC7C9\t0x5DE7\n0xC7CA\t0x9798\n0xC7CB\t0x64AC\n0xC7CC\t0x7FD8\n0xC7CD\t0x5CED\n0xC7CE\t0x4FCF\n0xC7CF\t0x7A8D\n0xC7D0\t0x5207\n0xC7D1\t0x8304\n0xC7D2\t0x4E14\n0xC7D3\t0x602F\n0xC7D4\t0x7A83\n0xC7D5\t0x94A6\n0xC7D6\t0x4FB5\n0xC7D7\t0x4EB2\n0xC7D8\t0x79E6\n0xC7D9\t0x7434\n0xC7DA\t0x52E4\n0xC7DB\t0x82B9\n0xC7DC\t0x64D2\n0xC7DD\t0x79BD\n0xC7DE\t0x5BDD\n0xC7DF\t0x6C81\n0xC7E0\t0x9752\n0xC7E1\t0x8F7B\n0xC7E2\t0x6C22\n0xC7E3\t0x503E\n0xC7E4\t0x537F\n0xC7E5\t0x6E05\n0xC7E6\t0x64CE\n0xC7E7\t0x6674\n0xC7E8\t0x6C30\n0xC7E9\t0x60C5\n0xC7EA\t0x9877\n0xC7EB\t0x8BF7\n0xC7EC\t0x5E86\n0xC7ED\t0x743C\n0xC7EE\t0x7A77\n0xC7EF\t0x79CB\n0xC7F0\t0x4E18\n0xC7F1\t0x90B1\n0xC7F2\t0x7403\n0xC7F3\t0x6C42\n0xC7F4\t0x56DA\n0xC7F5\t0x914B\n0xC7F6\t0x6CC5\n0xC7F7\t0x8D8B\n0xC7F8\t0x533A\n0xC7F9\t0x86C6\n0xC7FA\t0x66F2\n0xC7FB\t0x8EAF\n0xC7FC\t0x5C48\n0xC7FD\t0x9A71\n0xC7FE\t0x6E20\n0xC840\t0x83EE\n0xC841\t0x83EF\n0xC842\t0x83F3\n0xC843\t0x83F4\n0xC844\t0x83F5\n0xC845\t0x83F6\n0xC846\t0x83F7\n0xC847\t0x83FA\n0xC848\t0x83FB\n0xC849\t0x83FC\n0xC84A\t0x83FE\n0xC84B\t0x83FF\n0xC84C\t0x8400\n0xC84D\t0x8402\n0xC84E\t0x8405\n0xC84F\t0x8407\n0xC850\t0x8408\n0xC851\t0x8409\n0xC852\t0x840A\n0xC853\t0x8410\n0xC854\t0x8412\n0xC855\t0x8413\n0xC856\t0x8414\n0xC857\t0x8415\n0xC858\t0x8416\n0xC859\t0x8417\n0xC85A\t0x8419\n0xC85B\t0x841A\n0xC85C\t0x841B\n0xC85D\t0x841E\n0xC85E\t0x841F\n0xC85F\t0x8420\n0xC860\t0x8421\n0xC861\t0x8422\n0xC862\t0x8423\n0xC863\t0x8429\n0xC864\t0x842A\n0xC865\t0x842B\n0xC866\t0x842C\n0xC867\t0x842D\n0xC868\t0x842E\n0xC869\t0x842F\n0xC86A\t0x8430\n0xC86B\t0x8432\n0xC86C\t0x8433\n0xC86D\t0x8434\n0xC86E\t0x8435\n0xC86F\t0x8436\n0xC870\t0x8437\n0xC871\t0x8439\n0xC872\t0x843A\n0xC873\t0x843B\n0xC874\t0x843E\n0xC875\t0x843F\n0xC876\t0x8440\n0xC877\t0x8441\n0xC878\t0x8442\n0xC879\t0x8443\n0xC87A\t0x8444\n0xC87B\t0x8445\n0xC87C\t0x8447\n0xC87D\t0x8448\n0xC87E\t0x8449\n0xC880\t0x844A\n0xC881\t0x844B\n0xC882\t0x844C\n0xC883\t0x844D\n0xC884\t0x844E\n0xC885\t0x844F\n0xC886\t0x8450\n0xC887\t0x8452\n0xC888\t0x8453\n0xC889\t0x8454\n0xC88A\t0x8455\n0xC88B\t0x8456\n0xC88C\t0x8458\n0xC88D\t0x845D\n0xC88E\t0x845E\n0xC88F\t0x845F\n0xC890\t0x8460\n0xC891\t0x8462\n0xC892\t0x8464\n0xC893\t0x8465\n0xC894\t0x8466\n0xC895\t0x8467\n0xC896\t0x8468\n0xC897\t0x846A\n0xC898\t0x846E\n0xC899\t0x846F\n0xC89A\t0x8470\n0xC89B\t0x8472\n0xC89C\t0x8474\n0xC89D\t0x8477\n0xC89E\t0x8479\n0xC89F\t0x847B\n0xC8A0\t0x847C\n0xC8A1\t0x53D6\n0xC8A2\t0x5A36\n0xC8A3\t0x9F8B\n0xC8A4\t0x8DA3\n0xC8A5\t0x53BB\n0xC8A6\t0x5708\n0xC8A7\t0x98A7\n0xC8A8\t0x6743\n0xC8A9\t0x919B\n0xC8AA\t0x6CC9\n0xC8AB\t0x5168\n0xC8AC\t0x75CA\n0xC8AD\t0x62F3\n0xC8AE\t0x72AC\n0xC8AF\t0x5238\n0xC8B0\t0x529D\n0xC8B1\t0x7F3A\n0xC8B2\t0x7094\n0xC8B3\t0x7638\n0xC8B4\t0x5374\n0xC8B5\t0x9E4A\n0xC8B6\t0x69B7\n0xC8B7\t0x786E\n0xC8B8\t0x96C0\n0xC8B9\t0x88D9\n0xC8BA\t0x7FA4\n0xC8BB\t0x7136\n0xC8BC\t0x71C3\n0xC8BD\t0x5189\n0xC8BE\t0x67D3\n0xC8BF\t0x74E4\n0xC8C0\t0x58E4\n0xC8C1\t0x6518\n0xC8C2\t0x56B7\n0xC8C3\t0x8BA9\n0xC8C4\t0x9976\n0xC8C5\t0x6270\n0xC8C6\t0x7ED5\n0xC8C7\t0x60F9\n0xC8C8\t0x70ED\n0xC8C9\t0x58EC\n0xC8CA\t0x4EC1\n0xC8CB\t0x4EBA\n0xC8CC\t0x5FCD\n0xC8CD\t0x97E7\n0xC8CE\t0x4EFB\n0xC8CF\t0x8BA4\n0xC8D0\t0x5203\n0xC8D1\t0x598A\n0xC8D2\t0x7EAB\n0xC8D3\t0x6254\n0xC8D4\t0x4ECD\n0xC8D5\t0x65E5\n0xC8D6\t0x620E\n0xC8D7\t0x8338\n0xC8D8\t0x84C9\n0xC8D9\t0x8363\n0xC8DA\t0x878D\n0xC8DB\t0x7194\n0xC8DC\t0x6EB6\n0xC8DD\t0x5BB9\n0xC8DE\t0x7ED2\n0xC8DF\t0x5197\n0xC8E0\t0x63C9\n0xC8E1\t0x67D4\n0xC8E2\t0x8089\n0xC8E3\t0x8339\n0xC8E4\t0x8815\n0xC8E5\t0x5112\n0xC8E6\t0x5B7A\n0xC8E7\t0x5982\n0xC8E8\t0x8FB1\n0xC8E9\t0x4E73\n0xC8EA\t0x6C5D\n0xC8EB\t0x5165\n0xC8EC\t0x8925\n0xC8ED\t0x8F6F\n0xC8EE\t0x962E\n0xC8EF\t0x854A\n0xC8F0\t0x745E\n0xC8F1\t0x9510\n0xC8F2\t0x95F0\n0xC8F3\t0x6DA6\n0xC8F4\t0x82E5\n0xC8F5\t0x5F31\n0xC8F6\t0x6492\n0xC8F7\t0x6D12\n0xC8F8\t0x8428\n0xC8F9\t0x816E\n0xC8FA\t0x9CC3\n0xC8FB\t0x585E\n0xC8FC\t0x8D5B\n0xC8FD\t0x4E09\n0xC8FE\t0x53C1\n0xC940\t0x847D\n0xC941\t0x847E\n0xC942\t0x847F\n0xC943\t0x8480\n0xC944\t0x8481\n0xC945\t0x8483\n0xC946\t0x8484\n0xC947\t0x8485\n0xC948\t0x8486\n0xC949\t0x848A\n0xC94A\t0x848D\n0xC94B\t0x848F\n0xC94C\t0x8490\n0xC94D\t0x8491\n0xC94E\t0x8492\n0xC94F\t0x8493\n0xC950\t0x8494\n0xC951\t0x8495\n0xC952\t0x8496\n0xC953\t0x8498\n0xC954\t0x849A\n0xC955\t0x849B\n0xC956\t0x849D\n0xC957\t0x849E\n0xC958\t0x849F\n0xC959\t0x84A0\n0xC95A\t0x84A2\n0xC95B\t0x84A3\n0xC95C\t0x84A4\n0xC95D\t0x84A5\n0xC95E\t0x84A6\n0xC95F\t0x84A7\n0xC960\t0x84A8\n0xC961\t0x84A9\n0xC962\t0x84AA\n0xC963\t0x84AB\n0xC964\t0x84AC\n0xC965\t0x84AD\n0xC966\t0x84AE\n0xC967\t0x84B0\n0xC968\t0x84B1\n0xC969\t0x84B3\n0xC96A\t0x84B5\n0xC96B\t0x84B6\n0xC96C\t0x84B7\n0xC96D\t0x84BB\n0xC96E\t0x84BC\n0xC96F\t0x84BE\n0xC970\t0x84C0\n0xC971\t0x84C2\n0xC972\t0x84C3\n0xC973\t0x84C5\n0xC974\t0x84C6\n0xC975\t0x84C7\n0xC976\t0x84C8\n0xC977\t0x84CB\n0xC978\t0x84CC\n0xC979\t0x84CE\n0xC97A\t0x84CF\n0xC97B\t0x84D2\n0xC97C\t0x84D4\n0xC97D\t0x84D5\n0xC97E\t0x84D7\n0xC980\t0x84D8\n0xC981\t0x84D9\n0xC982\t0x84DA\n0xC983\t0x84DB\n0xC984\t0x84DC\n0xC985\t0x84DE\n0xC986\t0x84E1\n0xC987\t0x84E2\n0xC988\t0x84E4\n0xC989\t0x84E7\n0xC98A\t0x84E8\n0xC98B\t0x84E9\n0xC98C\t0x84EA\n0xC98D\t0x84EB\n0xC98E\t0x84ED\n0xC98F\t0x84EE\n0xC990\t0x84EF\n0xC991\t0x84F1\n0xC992\t0x84F2\n0xC993\t0x84F3\n0xC994\t0x84F4\n0xC995\t0x84F5\n0xC996\t0x84F6\n0xC997\t0x84F7\n0xC998\t0x84F8\n0xC999\t0x84F9\n0xC99A\t0x84FA\n0xC99B\t0x84FB\n0xC99C\t0x84FD\n0xC99D\t0x84FE\n0xC99E\t0x8500\n0xC99F\t0x8501\n0xC9A0\t0x8502\n0xC9A1\t0x4F1E\n0xC9A2\t0x6563\n0xC9A3\t0x6851\n0xC9A4\t0x55D3\n0xC9A5\t0x4E27\n0xC9A6\t0x6414\n0xC9A7\t0x9A9A\n0xC9A8\t0x626B\n0xC9A9\t0x5AC2\n0xC9AA\t0x745F\n0xC9AB\t0x8272\n0xC9AC\t0x6DA9\n0xC9AD\t0x68EE\n0xC9AE\t0x50E7\n0xC9AF\t0x838E\n0xC9B0\t0x7802\n0xC9B1\t0x6740\n0xC9B2\t0x5239\n0xC9B3\t0x6C99\n0xC9B4\t0x7EB1\n0xC9B5\t0x50BB\n0xC9B6\t0x5565\n0xC9B7\t0x715E\n0xC9B8\t0x7B5B\n0xC9B9\t0x6652\n0xC9BA\t0x73CA\n0xC9BB\t0x82EB\n0xC9BC\t0x6749\n0xC9BD\t0x5C71\n0xC9BE\t0x5220\n0xC9BF\t0x717D\n0xC9C0\t0x886B\n0xC9C1\t0x95EA\n0xC9C2\t0x9655\n0xC9C3\t0x64C5\n0xC9C4\t0x8D61\n0xC9C5\t0x81B3\n0xC9C6\t0x5584\n0xC9C7\t0x6C55\n0xC9C8\t0x6247\n0xC9C9\t0x7F2E\n0xC9CA\t0x5892\n0xC9CB\t0x4F24\n0xC9CC\t0x5546\n0xC9CD\t0x8D4F\n0xC9CE\t0x664C\n0xC9CF\t0x4E0A\n0xC9D0\t0x5C1A\n0xC9D1\t0x88F3\n0xC9D2\t0x68A2\n0xC9D3\t0x634E\n0xC9D4\t0x7A0D\n0xC9D5\t0x70E7\n0xC9D6\t0x828D\n0xC9D7\t0x52FA\n0xC9D8\t0x97F6\n0xC9D9\t0x5C11\n0xC9DA\t0x54E8\n0xC9DB\t0x90B5\n0xC9DC\t0x7ECD\n0xC9DD\t0x5962\n0xC9DE\t0x8D4A\n0xC9DF\t0x86C7\n0xC9E0\t0x820C\n0xC9E1\t0x820D\n0xC9E2\t0x8D66\n0xC9E3\t0x6444\n0xC9E4\t0x5C04\n0xC9E5\t0x6151\n0xC9E6\t0x6D89\n0xC9E7\t0x793E\n0xC9E8\t0x8BBE\n0xC9E9\t0x7837\n0xC9EA\t0x7533\n0xC9EB\t0x547B\n0xC9EC\t0x4F38\n0xC9ED\t0x8EAB\n0xC9EE\t0x6DF1\n0xC9EF\t0x5A20\n0xC9F0\t0x7EC5\n0xC9F1\t0x795E\n0xC9F2\t0x6C88\n0xC9F3\t0x5BA1\n0xC9F4\t0x5A76\n0xC9F5\t0x751A\n0xC9F6\t0x80BE\n0xC9F7\t0x614E\n0xC9F8\t0x6E17\n0xC9F9\t0x58F0\n0xC9FA\t0x751F\n0xC9FB\t0x7525\n0xC9FC\t0x7272\n0xC9FD\t0x5347\n0xC9FE\t0x7EF3\n0xCA40\t0x8503\n0xCA41\t0x8504\n0xCA42\t0x8505\n0xCA43\t0x8506\n0xCA44\t0x8507\n0xCA45\t0x8508\n0xCA46\t0x8509\n0xCA47\t0x850A\n0xCA48\t0x850B\n0xCA49\t0x850D\n0xCA4A\t0x850E\n0xCA4B\t0x850F\n0xCA4C\t0x8510\n0xCA4D\t0x8512\n0xCA4E\t0x8514\n0xCA4F\t0x8515\n0xCA50\t0x8516\n0xCA51\t0x8518\n0xCA52\t0x8519\n0xCA53\t0x851B\n0xCA54\t0x851C\n0xCA55\t0x851D\n0xCA56\t0x851E\n0xCA57\t0x8520\n0xCA58\t0x8522\n0xCA59\t0x8523\n0xCA5A\t0x8524\n0xCA5B\t0x8525\n0xCA5C\t0x8526\n0xCA5D\t0x8527\n0xCA5E\t0x8528\n0xCA5F\t0x8529\n0xCA60\t0x852A\n0xCA61\t0x852D\n0xCA62\t0x852E\n0xCA63\t0x852F\n0xCA64\t0x8530\n0xCA65\t0x8531\n0xCA66\t0x8532\n0xCA67\t0x8533\n0xCA68\t0x8534\n0xCA69\t0x8535\n0xCA6A\t0x8536\n0xCA6B\t0x853E\n0xCA6C\t0x853F\n0xCA6D\t0x8540\n0xCA6E\t0x8541\n0xCA6F\t0x8542\n0xCA70\t0x8544\n0xCA71\t0x8545\n0xCA72\t0x8546\n0xCA73\t0x8547\n0xCA74\t0x854B\n0xCA75\t0x854C\n0xCA76\t0x854D\n0xCA77\t0x854E\n0xCA78\t0x854F\n0xCA79\t0x8550\n0xCA7A\t0x8551\n0xCA7B\t0x8552\n0xCA7C\t0x8553\n0xCA7D\t0x8554\n0xCA7E\t0x8555\n0xCA80\t0x8557\n0xCA81\t0x8558\n0xCA82\t0x855A\n0xCA83\t0x855B\n0xCA84\t0x855C\n0xCA85\t0x855D\n0xCA86\t0x855F\n0xCA87\t0x8560\n0xCA88\t0x8561\n0xCA89\t0x8562\n0xCA8A\t0x8563\n0xCA8B\t0x8565\n0xCA8C\t0x8566\n0xCA8D\t0x8567\n0xCA8E\t0x8569\n0xCA8F\t0x856A\n0xCA90\t0x856B\n0xCA91\t0x856C\n0xCA92\t0x856D\n0xCA93\t0x856E\n0xCA94\t0x856F\n0xCA95\t0x8570\n0xCA96\t0x8571\n0xCA97\t0x8573\n0xCA98\t0x8575\n0xCA99\t0x8576\n0xCA9A\t0x8577\n0xCA9B\t0x8578\n0xCA9C\t0x857C\n0xCA9D\t0x857D\n0xCA9E\t0x857F\n0xCA9F\t0x8580\n0xCAA0\t0x8581\n0xCAA1\t0x7701\n0xCAA2\t0x76DB\n0xCAA3\t0x5269\n0xCAA4\t0x80DC\n0xCAA5\t0x5723\n0xCAA6\t0x5E08\n0xCAA7\t0x5931\n0xCAA8\t0x72EE\n0xCAA9\t0x65BD\n0xCAAA\t0x6E7F\n0xCAAB\t0x8BD7\n0xCAAC\t0x5C38\n0xCAAD\t0x8671\n0xCAAE\t0x5341\n0xCAAF\t0x77F3\n0xCAB0\t0x62FE\n0xCAB1\t0x65F6\n0xCAB2\t0x4EC0\n0xCAB3\t0x98DF\n0xCAB4\t0x8680\n0xCAB5\t0x5B9E\n0xCAB6\t0x8BC6\n0xCAB7\t0x53F2\n0xCAB8\t0x77E2\n0xCAB9\t0x4F7F\n0xCABA\t0x5C4E\n0xCABB\t0x9A76\n0xCABC\t0x59CB\n0xCABD\t0x5F0F\n0xCABE\t0x793A\n0xCABF\t0x58EB\n0xCAC0\t0x4E16\n0xCAC1\t0x67FF\n0xCAC2\t0x4E8B\n0xCAC3\t0x62ED\n0xCAC4\t0x8A93\n0xCAC5\t0x901D\n0xCAC6\t0x52BF\n0xCAC7\t0x662F\n0xCAC8\t0x55DC\n0xCAC9\t0x566C\n0xCACA\t0x9002\n0xCACB\t0x4ED5\n0xCACC\t0x4F8D\n0xCACD\t0x91CA\n0xCACE\t0x9970\n0xCACF\t0x6C0F\n0xCAD0\t0x5E02\n0xCAD1\t0x6043\n0xCAD2\t0x5BA4\n0xCAD3\t0x89C6\n0xCAD4\t0x8BD5\n0xCAD5\t0x6536\n0xCAD6\t0x624B\n0xCAD7\t0x9996\n0xCAD8\t0x5B88\n0xCAD9\t0x5BFF\n0xCADA\t0x6388\n0xCADB\t0x552E\n0xCADC\t0x53D7\n0xCADD\t0x7626\n0xCADE\t0x517D\n0xCADF\t0x852C\n0xCAE0\t0x67A2\n0xCAE1\t0x68B3\n0xCAE2\t0x6B8A\n0xCAE3\t0x6292\n0xCAE4\t0x8F93\n0xCAE5\t0x53D4\n0xCAE6\t0x8212\n0xCAE7\t0x6DD1\n0xCAE8\t0x758F\n0xCAE9\t0x4E66\n0xCAEA\t0x8D4E\n0xCAEB\t0x5B70\n0xCAEC\t0x719F\n0xCAED\t0x85AF\n0xCAEE\t0x6691\n0xCAEF\t0x66D9\n0xCAF0\t0x7F72\n0xCAF1\t0x8700\n0xCAF2\t0x9ECD\n0xCAF3\t0x9F20\n0xCAF4\t0x5C5E\n0xCAF5\t0x672F\n0xCAF6\t0x8FF0\n0xCAF7\t0x6811\n0xCAF8\t0x675F\n0xCAF9\t0x620D\n0xCAFA\t0x7AD6\n0xCAFB\t0x5885\n0xCAFC\t0x5EB6\n0xCAFD\t0x6570\n0xCAFE\t0x6F31\n0xCB40\t0x8582\n0xCB41\t0x8583\n0xCB42\t0x8586\n0xCB43\t0x8588\n0xCB44\t0x8589\n0xCB45\t0x858A\n0xCB46\t0x858B\n0xCB47\t0x858C\n0xCB48\t0x858D\n0xCB49\t0x858E\n0xCB4A\t0x8590\n0xCB4B\t0x8591\n0xCB4C\t0x8592\n0xCB4D\t0x8593\n0xCB4E\t0x8594\n0xCB4F\t0x8595\n0xCB50\t0x8596\n0xCB51\t0x8597\n0xCB52\t0x8598\n0xCB53\t0x8599\n0xCB54\t0x859A\n0xCB55\t0x859D\n0xCB56\t0x859E\n0xCB57\t0x859F\n0xCB58\t0x85A0\n0xCB59\t0x85A1\n0xCB5A\t0x85A2\n0xCB5B\t0x85A3\n0xCB5C\t0x85A5\n0xCB5D\t0x85A6\n0xCB5E\t0x85A7\n0xCB5F\t0x85A9\n0xCB60\t0x85AB\n0xCB61\t0x85AC\n0xCB62\t0x85AD\n0xCB63\t0x85B1\n0xCB64\t0x85B2\n0xCB65\t0x85B3\n0xCB66\t0x85B4\n0xCB67\t0x85B5\n0xCB68\t0x85B6\n0xCB69\t0x85B8\n0xCB6A\t0x85BA\n0xCB6B\t0x85BB\n0xCB6C\t0x85BC\n0xCB6D\t0x85BD\n0xCB6E\t0x85BE\n0xCB6F\t0x85BF\n0xCB70\t0x85C0\n0xCB71\t0x85C2\n0xCB72\t0x85C3\n0xCB73\t0x85C4\n0xCB74\t0x85C5\n0xCB75\t0x85C6\n0xCB76\t0x85C7\n0xCB77\t0x85C8\n0xCB78\t0x85CA\n0xCB79\t0x85CB\n0xCB7A\t0x85CC\n0xCB7B\t0x85CD\n0xCB7C\t0x85CE\n0xCB7D\t0x85D1\n0xCB7E\t0x85D2\n0xCB80\t0x85D4\n0xCB81\t0x85D6\n0xCB82\t0x85D7\n0xCB83\t0x85D8\n0xCB84\t0x85D9\n0xCB85\t0x85DA\n0xCB86\t0x85DB\n0xCB87\t0x85DD\n0xCB88\t0x85DE\n0xCB89\t0x85DF\n0xCB8A\t0x85E0\n0xCB8B\t0x85E1\n0xCB8C\t0x85E2\n0xCB8D\t0x85E3\n0xCB8E\t0x85E5\n0xCB8F\t0x85E6\n0xCB90\t0x85E7\n0xCB91\t0x85E8\n0xCB92\t0x85EA\n0xCB93\t0x85EB\n0xCB94\t0x85EC\n0xCB95\t0x85ED\n0xCB96\t0x85EE\n0xCB97\t0x85EF\n0xCB98\t0x85F0\n0xCB99\t0x85F1\n0xCB9A\t0x85F2\n0xCB9B\t0x85F3\n0xCB9C\t0x85F4\n0xCB9D\t0x85F5\n0xCB9E\t0x85F6\n0xCB9F\t0x85F7\n0xCBA0\t0x85F8\n0xCBA1\t0x6055\n0xCBA2\t0x5237\n0xCBA3\t0x800D\n0xCBA4\t0x6454\n0xCBA5\t0x8870\n0xCBA6\t0x7529\n0xCBA7\t0x5E05\n0xCBA8\t0x6813\n0xCBA9\t0x62F4\n0xCBAA\t0x971C\n0xCBAB\t0x53CC\n0xCBAC\t0x723D\n0xCBAD\t0x8C01\n0xCBAE\t0x6C34\n0xCBAF\t0x7761\n0xCBB0\t0x7A0E\n0xCBB1\t0x542E\n0xCBB2\t0x77AC\n0xCBB3\t0x987A\n0xCBB4\t0x821C\n0xCBB5\t0x8BF4\n0xCBB6\t0x7855\n0xCBB7\t0x6714\n0xCBB8\t0x70C1\n0xCBB9\t0x65AF\n0xCBBA\t0x6495\n0xCBBB\t0x5636\n0xCBBC\t0x601D\n0xCBBD\t0x79C1\n0xCBBE\t0x53F8\n0xCBBF\t0x4E1D\n0xCBC0\t0x6B7B\n0xCBC1\t0x8086\n0xCBC2\t0x5BFA\n0xCBC3\t0x55E3\n0xCBC4\t0x56DB\n0xCBC5\t0x4F3A\n0xCBC6\t0x4F3C\n0xCBC7\t0x9972\n0xCBC8\t0x5DF3\n0xCBC9\t0x677E\n0xCBCA\t0x8038\n0xCBCB\t0x6002\n0xCBCC\t0x9882\n0xCBCD\t0x9001\n0xCBCE\t0x5B8B\n0xCBCF\t0x8BBC\n0xCBD0\t0x8BF5\n0xCBD1\t0x641C\n0xCBD2\t0x8258\n0xCBD3\t0x64DE\n0xCBD4\t0x55FD\n0xCBD5\t0x82CF\n0xCBD6\t0x9165\n0xCBD7\t0x4FD7\n0xCBD8\t0x7D20\n0xCBD9\t0x901F\n0xCBDA\t0x7C9F\n0xCBDB\t0x50F3\n0xCBDC\t0x5851\n0xCBDD\t0x6EAF\n0xCBDE\t0x5BBF\n0xCBDF\t0x8BC9\n0xCBE0\t0x8083\n0xCBE1\t0x9178\n0xCBE2\t0x849C\n0xCBE3\t0x7B97\n0xCBE4\t0x867D\n0xCBE5\t0x968B\n0xCBE6\t0x968F\n0xCBE7\t0x7EE5\n0xCBE8\t0x9AD3\n0xCBE9\t0x788E\n0xCBEA\t0x5C81\n0xCBEB\t0x7A57\n0xCBEC\t0x9042\n0xCBED\t0x96A7\n0xCBEE\t0x795F\n0xCBEF\t0x5B59\n0xCBF0\t0x635F\n0xCBF1\t0x7B0B\n0xCBF2\t0x84D1\n0xCBF3\t0x68AD\n0xCBF4\t0x5506\n0xCBF5\t0x7F29\n0xCBF6\t0x7410\n0xCBF7\t0x7D22\n0xCBF8\t0x9501\n0xCBF9\t0x6240\n0xCBFA\t0x584C\n0xCBFB\t0x4ED6\n0xCBFC\t0x5B83\n0xCBFD\t0x5979\n0xCBFE\t0x5854\n0xCC40\t0x85F9\n0xCC41\t0x85FA\n0xCC42\t0x85FC\n0xCC43\t0x85FD\n0xCC44\t0x85FE\n0xCC45\t0x8600\n0xCC46\t0x8601\n0xCC47\t0x8602\n0xCC48\t0x8603\n0xCC49\t0x8604\n0xCC4A\t0x8606\n0xCC4B\t0x8607\n0xCC4C\t0x8608\n0xCC4D\t0x8609\n0xCC4E\t0x860A\n0xCC4F\t0x860B\n0xCC50\t0x860C\n0xCC51\t0x860D\n0xCC52\t0x860E\n0xCC53\t0x860F\n0xCC54\t0x8610\n0xCC55\t0x8612\n0xCC56\t0x8613\n0xCC57\t0x8614\n0xCC58\t0x8615\n0xCC59\t0x8617\n0xCC5A\t0x8618\n0xCC5B\t0x8619\n0xCC5C\t0x861A\n0xCC5D\t0x861B\n0xCC5E\t0x861C\n0xCC5F\t0x861D\n0xCC60\t0x861E\n0xCC61\t0x861F\n0xCC62\t0x8620\n0xCC63\t0x8621\n0xCC64\t0x8622\n0xCC65\t0x8623\n0xCC66\t0x8624\n0xCC67\t0x8625\n0xCC68\t0x8626\n0xCC69\t0x8628\n0xCC6A\t0x862A\n0xCC6B\t0x862B\n0xCC6C\t0x862C\n0xCC6D\t0x862D\n0xCC6E\t0x862E\n0xCC6F\t0x862F\n0xCC70\t0x8630\n0xCC71\t0x8631\n0xCC72\t0x8632\n0xCC73\t0x8633\n0xCC74\t0x8634\n0xCC75\t0x8635\n0xCC76\t0x8636\n0xCC77\t0x8637\n0xCC78\t0x8639\n0xCC79\t0x863A\n0xCC7A\t0x863B\n0xCC7B\t0x863D\n0xCC7C\t0x863E\n0xCC7D\t0x863F\n0xCC7E\t0x8640\n0xCC80\t0x8641\n0xCC81\t0x8642\n0xCC82\t0x8643\n0xCC83\t0x8644\n0xCC84\t0x8645\n0xCC85\t0x8646\n0xCC86\t0x8647\n0xCC87\t0x8648\n0xCC88\t0x8649\n0xCC89\t0x864A\n0xCC8A\t0x864B\n0xCC8B\t0x864C\n0xCC8C\t0x8652\n0xCC8D\t0x8653\n0xCC8E\t0x8655\n0xCC8F\t0x8656\n0xCC90\t0x8657\n0xCC91\t0x8658\n0xCC92\t0x8659\n0xCC93\t0x865B\n0xCC94\t0x865C\n0xCC95\t0x865D\n0xCC96\t0x865F\n0xCC97\t0x8660\n0xCC98\t0x8661\n0xCC99\t0x8663\n0xCC9A\t0x8664\n0xCC9B\t0x8665\n0xCC9C\t0x8666\n0xCC9D\t0x8667\n0xCC9E\t0x8668\n0xCC9F\t0x8669\n0xCCA0\t0x866A\n0xCCA1\t0x736D\n0xCCA2\t0x631E\n0xCCA3\t0x8E4B\n0xCCA4\t0x8E0F\n0xCCA5\t0x80CE\n0xCCA6\t0x82D4\n0xCCA7\t0x62AC\n0xCCA8\t0x53F0\n0xCCA9\t0x6CF0\n0xCCAA\t0x915E\n0xCCAB\t0x592A\n0xCCAC\t0x6001\n0xCCAD\t0x6C70\n0xCCAE\t0x574D\n0xCCAF\t0x644A\n0xCCB0\t0x8D2A\n0xCCB1\t0x762B\n0xCCB2\t0x6EE9\n0xCCB3\t0x575B\n0xCCB4\t0x6A80\n0xCCB5\t0x75F0\n0xCCB6\t0x6F6D\n0xCCB7\t0x8C2D\n0xCCB8\t0x8C08\n0xCCB9\t0x5766\n0xCCBA\t0x6BEF\n0xCCBB\t0x8892\n0xCCBC\t0x78B3\n0xCCBD\t0x63A2\n0xCCBE\t0x53F9\n0xCCBF\t0x70AD\n0xCCC0\t0x6C64\n0xCCC1\t0x5858\n0xCCC2\t0x642A\n0xCCC3\t0x5802\n0xCCC4\t0x68E0\n0xCCC5\t0x819B\n0xCCC6\t0x5510\n0xCCC7\t0x7CD6\n0xCCC8\t0x5018\n0xCCC9\t0x8EBA\n0xCCCA\t0x6DCC\n0xCCCB\t0x8D9F\n0xCCCC\t0x70EB\n0xCCCD\t0x638F\n0xCCCE\t0x6D9B\n0xCCCF\t0x6ED4\n0xCCD0\t0x7EE6\n0xCCD1\t0x8404\n0xCCD2\t0x6843\n0xCCD3\t0x9003\n0xCCD4\t0x6DD8\n0xCCD5\t0x9676\n0xCCD6\t0x8BA8\n0xCCD7\t0x5957\n0xCCD8\t0x7279\n0xCCD9\t0x85E4\n0xCCDA\t0x817E\n0xCCDB\t0x75BC\n0xCCDC\t0x8A8A\n0xCCDD\t0x68AF\n0xCCDE\t0x5254\n0xCCDF\t0x8E22\n0xCCE0\t0x9511\n0xCCE1\t0x63D0\n0xCCE2\t0x9898\n0xCCE3\t0x8E44\n0xCCE4\t0x557C\n0xCCE5\t0x4F53\n0xCCE6\t0x66FF\n0xCCE7\t0x568F\n0xCCE8\t0x60D5\n0xCCE9\t0x6D95\n0xCCEA\t0x5243\n0xCCEB\t0x5C49\n0xCCEC\t0x5929\n0xCCED\t0x6DFB\n0xCCEE\t0x586B\n0xCCEF\t0x7530\n0xCCF0\t0x751C\n0xCCF1\t0x606C\n0xCCF2\t0x8214\n0xCCF3\t0x8146\n0xCCF4\t0x6311\n0xCCF5\t0x6761\n0xCCF6\t0x8FE2\n0xCCF7\t0x773A\n0xCCF8\t0x8DF3\n0xCCF9\t0x8D34\n0xCCFA\t0x94C1\n0xCCFB\t0x5E16\n0xCCFC\t0x5385\n0xCCFD\t0x542C\n0xCCFE\t0x70C3\n0xCD40\t0x866D\n0xCD41\t0x866F\n0xCD42\t0x8670\n0xCD43\t0x8672\n0xCD44\t0x8673\n0xCD45\t0x8674\n0xCD46\t0x8675\n0xCD47\t0x8676\n0xCD48\t0x8677\n0xCD49\t0x8678\n0xCD4A\t0x8683\n0xCD4B\t0x8684\n0xCD4C\t0x8685\n0xCD4D\t0x8686\n0xCD4E\t0x8687\n0xCD4F\t0x8688\n0xCD50\t0x8689\n0xCD51\t0x868E\n0xCD52\t0x868F\n0xCD53\t0x8690\n0xCD54\t0x8691\n0xCD55\t0x8692\n0xCD56\t0x8694\n0xCD57\t0x8696\n0xCD58\t0x8697\n0xCD59\t0x8698\n0xCD5A\t0x8699\n0xCD5B\t0x869A\n0xCD5C\t0x869B\n0xCD5D\t0x869E\n0xCD5E\t0x869F\n0xCD5F\t0x86A0\n0xCD60\t0x86A1\n0xCD61\t0x86A2\n0xCD62\t0x86A5\n0xCD63\t0x86A6\n0xCD64\t0x86AB\n0xCD65\t0x86AD\n0xCD66\t0x86AE\n0xCD67\t0x86B2\n0xCD68\t0x86B3\n0xCD69\t0x86B7\n0xCD6A\t0x86B8\n0xCD6B\t0x86B9\n0xCD6C\t0x86BB\n0xCD6D\t0x86BC\n0xCD6E\t0x86BD\n0xCD6F\t0x86BE\n0xCD70\t0x86BF\n0xCD71\t0x86C1\n0xCD72\t0x86C2\n0xCD73\t0x86C3\n0xCD74\t0x86C5\n0xCD75\t0x86C8\n0xCD76\t0x86CC\n0xCD77\t0x86CD\n0xCD78\t0x86D2\n0xCD79\t0x86D3\n0xCD7A\t0x86D5\n0xCD7B\t0x86D6\n0xCD7C\t0x86D7\n0xCD7D\t0x86DA\n0xCD7E\t0x86DC\n0xCD80\t0x86DD\n0xCD81\t0x86E0\n0xCD82\t0x86E1\n0xCD83\t0x86E2\n0xCD84\t0x86E3\n0xCD85\t0x86E5\n0xCD86\t0x86E6\n0xCD87\t0x86E7\n0xCD88\t0x86E8\n0xCD89\t0x86EA\n0xCD8A\t0x86EB\n0xCD8B\t0x86EC\n0xCD8C\t0x86EF\n0xCD8D\t0x86F5\n0xCD8E\t0x86F6\n0xCD8F\t0x86F7\n0xCD90\t0x86FA\n0xCD91\t0x86FB\n0xCD92\t0x86FC\n0xCD93\t0x86FD\n0xCD94\t0x86FF\n0xCD95\t0x8701\n0xCD96\t0x8704\n0xCD97\t0x8705\n0xCD98\t0x8706\n0xCD99\t0x870B\n0xCD9A\t0x870C\n0xCD9B\t0x870E\n0xCD9C\t0x870F\n0xCD9D\t0x8710\n0xCD9E\t0x8711\n0xCD9F\t0x8714\n0xCDA0\t0x8716\n0xCDA1\t0x6C40\n0xCDA2\t0x5EF7\n0xCDA3\t0x505C\n0xCDA4\t0x4EAD\n0xCDA5\t0x5EAD\n0xCDA6\t0x633A\n0xCDA7\t0x8247\n0xCDA8\t0x901A\n0xCDA9\t0x6850\n0xCDAA\t0x916E\n0xCDAB\t0x77B3\n0xCDAC\t0x540C\n0xCDAD\t0x94DC\n0xCDAE\t0x5F64\n0xCDAF\t0x7AE5\n0xCDB0\t0x6876\n0xCDB1\t0x6345\n0xCDB2\t0x7B52\n0xCDB3\t0x7EDF\n0xCDB4\t0x75DB\n0xCDB5\t0x5077\n0xCDB6\t0x6295\n0xCDB7\t0x5934\n0xCDB8\t0x900F\n0xCDB9\t0x51F8\n0xCDBA\t0x79C3\n0xCDBB\t0x7A81\n0xCDBC\t0x56FE\n0xCDBD\t0x5F92\n0xCDBE\t0x9014\n0xCDBF\t0x6D82\n0xCDC0\t0x5C60\n0xCDC1\t0x571F\n0xCDC2\t0x5410\n0xCDC3\t0x5154\n0xCDC4\t0x6E4D\n0xCDC5\t0x56E2\n0xCDC6\t0x63A8\n0xCDC7\t0x9893\n0xCDC8\t0x817F\n0xCDC9\t0x8715\n0xCDCA\t0x892A\n0xCDCB\t0x9000\n0xCDCC\t0x541E\n0xCDCD\t0x5C6F\n0xCDCE\t0x81C0\n0xCDCF\t0x62D6\n0xCDD0\t0x6258\n0xCDD1\t0x8131\n0xCDD2\t0x9E35\n0xCDD3\t0x9640\n0xCDD4\t0x9A6E\n0xCDD5\t0x9A7C\n0xCDD6\t0x692D\n0xCDD7\t0x59A5\n0xCDD8\t0x62D3\n0xCDD9\t0x553E\n0xCDDA\t0x6316\n0xCDDB\t0x54C7\n0xCDDC\t0x86D9\n0xCDDD\t0x6D3C\n0xCDDE\t0x5A03\n0xCDDF\t0x74E6\n0xCDE0\t0x889C\n0xCDE1\t0x6B6A\n0xCDE2\t0x5916\n0xCDE3\t0x8C4C\n0xCDE4\t0x5F2F\n0xCDE5\t0x6E7E\n0xCDE6\t0x73A9\n0xCDE7\t0x987D\n0xCDE8\t0x4E38\n0xCDE9\t0x70F7\n0xCDEA\t0x5B8C\n0xCDEB\t0x7897\n0xCDEC\t0x633D\n0xCDED\t0x665A\n0xCDEE\t0x7696\n0xCDEF\t0x60CB\n0xCDF0\t0x5B9B\n0xCDF1\t0x5A49\n0xCDF2\t0x4E07\n0xCDF3\t0x8155\n0xCDF4\t0x6C6A\n0xCDF5\t0x738B\n0xCDF6\t0x4EA1\n0xCDF7\t0x6789\n0xCDF8\t0x7F51\n0xCDF9\t0x5F80\n0xCDFA\t0x65FA\n0xCDFB\t0x671B\n0xCDFC\t0x5FD8\n0xCDFD\t0x5984\n0xCDFE\t0x5A01\n0xCE40\t0x8719\n0xCE41\t0x871B\n0xCE42\t0x871D\n0xCE43\t0x871F\n0xCE44\t0x8720\n0xCE45\t0x8724\n0xCE46\t0x8726\n0xCE47\t0x8727\n0xCE48\t0x8728\n0xCE49\t0x872A\n0xCE4A\t0x872B\n0xCE4B\t0x872C\n0xCE4C\t0x872D\n0xCE4D\t0x872F\n0xCE4E\t0x8730\n0xCE4F\t0x8732\n0xCE50\t0x8733\n0xCE51\t0x8735\n0xCE52\t0x8736\n0xCE53\t0x8738\n0xCE54\t0x8739\n0xCE55\t0x873A\n0xCE56\t0x873C\n0xCE57\t0x873D\n0xCE58\t0x8740\n0xCE59\t0x8741\n0xCE5A\t0x8742\n0xCE5B\t0x8743\n0xCE5C\t0x8744\n0xCE5D\t0x8745\n0xCE5E\t0x8746\n0xCE5F\t0x874A\n0xCE60\t0x874B\n0xCE61\t0x874D\n0xCE62\t0x874F\n0xCE63\t0x8750\n0xCE64\t0x8751\n0xCE65\t0x8752\n0xCE66\t0x8754\n0xCE67\t0x8755\n0xCE68\t0x8756\n0xCE69\t0x8758\n0xCE6A\t0x875A\n0xCE6B\t0x875B\n0xCE6C\t0x875C\n0xCE6D\t0x875D\n0xCE6E\t0x875E\n0xCE6F\t0x875F\n0xCE70\t0x8761\n0xCE71\t0x8762\n0xCE72\t0x8766\n0xCE73\t0x8767\n0xCE74\t0x8768\n0xCE75\t0x8769\n0xCE76\t0x876A\n0xCE77\t0x876B\n0xCE78\t0x876C\n0xCE79\t0x876D\n0xCE7A\t0x876F\n0xCE7B\t0x8771\n0xCE7C\t0x8772\n0xCE7D\t0x8773\n0xCE7E\t0x8775\n0xCE80\t0x8777\n0xCE81\t0x8778\n0xCE82\t0x8779\n0xCE83\t0x877A\n0xCE84\t0x877F\n0xCE85\t0x8780\n0xCE86\t0x8781\n0xCE87\t0x8784\n0xCE88\t0x8786\n0xCE89\t0x8787\n0xCE8A\t0x8789\n0xCE8B\t0x878A\n0xCE8C\t0x878C\n0xCE8D\t0x878E\n0xCE8E\t0x878F\n0xCE8F\t0x8790\n0xCE90\t0x8791\n0xCE91\t0x8792\n0xCE92\t0x8794\n0xCE93\t0x8795\n0xCE94\t0x8796\n0xCE95\t0x8798\n0xCE96\t0x8799\n0xCE97\t0x879A\n0xCE98\t0x879B\n0xCE99\t0x879C\n0xCE9A\t0x879D\n0xCE9B\t0x879E\n0xCE9C\t0x87A0\n0xCE9D\t0x87A1\n0xCE9E\t0x87A2\n0xCE9F\t0x87A3\n0xCEA0\t0x87A4\n0xCEA1\t0x5DCD\n0xCEA2\t0x5FAE\n0xCEA3\t0x5371\n0xCEA4\t0x97E6\n0xCEA5\t0x8FDD\n0xCEA6\t0x6845\n0xCEA7\t0x56F4\n0xCEA8\t0x552F\n0xCEA9\t0x60DF\n0xCEAA\t0x4E3A\n0xCEAB\t0x6F4D\n0xCEAC\t0x7EF4\n0xCEAD\t0x82C7\n0xCEAE\t0x840E\n0xCEAF\t0x59D4\n0xCEB0\t0x4F1F\n0xCEB1\t0x4F2A\n0xCEB2\t0x5C3E\n0xCEB3\t0x7EAC\n0xCEB4\t0x672A\n0xCEB5\t0x851A\n0xCEB6\t0x5473\n0xCEB7\t0x754F\n0xCEB8\t0x80C3\n0xCEB9\t0x5582\n0xCEBA\t0x9B4F\n0xCEBB\t0x4F4D\n0xCEBC\t0x6E2D\n0xCEBD\t0x8C13\n0xCEBE\t0x5C09\n0xCEBF\t0x6170\n0xCEC0\t0x536B\n0xCEC1\t0x761F\n0xCEC2\t0x6E29\n0xCEC3\t0x868A\n0xCEC4\t0x6587\n0xCEC5\t0x95FB\n0xCEC6\t0x7EB9\n0xCEC7\t0x543B\n0xCEC8\t0x7A33\n0xCEC9\t0x7D0A\n0xCECA\t0x95EE\n0xCECB\t0x55E1\n0xCECC\t0x7FC1\n0xCECD\t0x74EE\n0xCECE\t0x631D\n0xCECF\t0x8717\n0xCED0\t0x6DA1\n0xCED1\t0x7A9D\n0xCED2\t0x6211\n0xCED3\t0x65A1\n0xCED4\t0x5367\n0xCED5\t0x63E1\n0xCED6\t0x6C83\n0xCED7\t0x5DEB\n0xCED8\t0x545C\n0xCED9\t0x94A8\n0xCEDA\t0x4E4C\n0xCEDB\t0x6C61\n0xCEDC\t0x8BEC\n0xCEDD\t0x5C4B\n0xCEDE\t0x65E0\n0xCEDF\t0x829C\n0xCEE0\t0x68A7\n0xCEE1\t0x543E\n0xCEE2\t0x5434\n0xCEE3\t0x6BCB\n0xCEE4\t0x6B66\n0xCEE5\t0x4E94\n0xCEE6\t0x6342\n0xCEE7\t0x5348\n0xCEE8\t0x821E\n0xCEE9\t0x4F0D\n0xCEEA\t0x4FAE\n0xCEEB\t0x575E\n0xCEEC\t0x620A\n0xCEED\t0x96FE\n0xCEEE\t0x6664\n0xCEEF\t0x7269\n0xCEF0\t0x52FF\n0xCEF1\t0x52A1\n0xCEF2\t0x609F\n0xCEF3\t0x8BEF\n0xCEF4\t0x6614\n0xCEF5\t0x7199\n0xCEF6\t0x6790\n0xCEF7\t0x897F\n0xCEF8\t0x7852\n0xCEF9\t0x77FD\n0xCEFA\t0x6670\n0xCEFB\t0x563B\n0xCEFC\t0x5438\n0xCEFD\t0x9521\n0xCEFE\t0x727A\n0xCF40\t0x87A5\n0xCF41\t0x87A6\n0xCF42\t0x87A7\n0xCF43\t0x87A9\n0xCF44\t0x87AA\n0xCF45\t0x87AE\n0xCF46\t0x87B0\n0xCF47\t0x87B1\n0xCF48\t0x87B2\n0xCF49\t0x87B4\n0xCF4A\t0x87B6\n0xCF4B\t0x87B7\n0xCF4C\t0x87B8\n0xCF4D\t0x87B9\n0xCF4E\t0x87BB\n0xCF4F\t0x87BC\n0xCF50\t0x87BE\n0xCF51\t0x87BF\n0xCF52\t0x87C1\n0xCF53\t0x87C2\n0xCF54\t0x87C3\n0xCF55\t0x87C4\n0xCF56\t0x87C5\n0xCF57\t0x87C7\n0xCF58\t0x87C8\n0xCF59\t0x87C9\n0xCF5A\t0x87CC\n0xCF5B\t0x87CD\n0xCF5C\t0x87CE\n0xCF5D\t0x87CF\n0xCF5E\t0x87D0\n0xCF5F\t0x87D4\n0xCF60\t0x87D5\n0xCF61\t0x87D6\n0xCF62\t0x87D7\n0xCF63\t0x87D8\n0xCF64\t0x87D9\n0xCF65\t0x87DA\n0xCF66\t0x87DC\n0xCF67\t0x87DD\n0xCF68\t0x87DE\n0xCF69\t0x87DF\n0xCF6A\t0x87E1\n0xCF6B\t0x87E2\n0xCF6C\t0x87E3\n0xCF6D\t0x87E4\n0xCF6E\t0x87E6\n0xCF6F\t0x87E7\n0xCF70\t0x87E8\n0xCF71\t0x87E9\n0xCF72\t0x87EB\n0xCF73\t0x87EC\n0xCF74\t0x87ED\n0xCF75\t0x87EF\n0xCF76\t0x87F0\n0xCF77\t0x87F1\n0xCF78\t0x87F2\n0xCF79\t0x87F3\n0xCF7A\t0x87F4\n0xCF7B\t0x87F5\n0xCF7C\t0x87F6\n0xCF7D\t0x87F7\n0xCF7E\t0x87F8\n0xCF80\t0x87FA\n0xCF81\t0x87FB\n0xCF82\t0x87FC\n0xCF83\t0x87FD\n0xCF84\t0x87FF\n0xCF85\t0x8800\n0xCF86\t0x8801\n0xCF87\t0x8802\n0xCF88\t0x8804\n0xCF89\t0x8805\n0xCF8A\t0x8806\n0xCF8B\t0x8807\n0xCF8C\t0x8808\n0xCF8D\t0x8809\n0xCF8E\t0x880B\n0xCF8F\t0x880C\n0xCF90\t0x880D\n0xCF91\t0x880E\n0xCF92\t0x880F\n0xCF93\t0x8810\n0xCF94\t0x8811\n0xCF95\t0x8812\n0xCF96\t0x8814\n0xCF97\t0x8817\n0xCF98\t0x8818\n0xCF99\t0x8819\n0xCF9A\t0x881A\n0xCF9B\t0x881C\n0xCF9C\t0x881D\n0xCF9D\t0x881E\n0xCF9E\t0x881F\n0xCF9F\t0x8820\n0xCFA0\t0x8823\n0xCFA1\t0x7A00\n0xCFA2\t0x606F\n0xCFA3\t0x5E0C\n0xCFA4\t0x6089\n0xCFA5\t0x819D\n0xCFA6\t0x5915\n0xCFA7\t0x60DC\n0xCFA8\t0x7184\n0xCFA9\t0x70EF\n0xCFAA\t0x6EAA\n0xCFAB\t0x6C50\n0xCFAC\t0x7280\n0xCFAD\t0x6A84\n0xCFAE\t0x88AD\n0xCFAF\t0x5E2D\n0xCFB0\t0x4E60\n0xCFB1\t0x5AB3\n0xCFB2\t0x559C\n0xCFB3\t0x94E3\n0xCFB4\t0x6D17\n0xCFB5\t0x7CFB\n0xCFB6\t0x9699\n0xCFB7\t0x620F\n0xCFB8\t0x7EC6\n0xCFB9\t0x778E\n0xCFBA\t0x867E\n0xCFBB\t0x5323\n0xCFBC\t0x971E\n0xCFBD\t0x8F96\n0xCFBE\t0x6687\n0xCFBF\t0x5CE1\n0xCFC0\t0x4FA0\n0xCFC1\t0x72ED\n0xCFC2\t0x4E0B\n0xCFC3\t0x53A6\n0xCFC4\t0x590F\n0xCFC5\t0x5413\n0xCFC6\t0x6380\n0xCFC7\t0x9528\n0xCFC8\t0x5148\n0xCFC9\t0x4ED9\n0xCFCA\t0x9C9C\n0xCFCB\t0x7EA4\n0xCFCC\t0x54B8\n0xCFCD\t0x8D24\n0xCFCE\t0x8854\n0xCFCF\t0x8237\n0xCFD0\t0x95F2\n0xCFD1\t0x6D8E\n0xCFD2\t0x5F26\n0xCFD3\t0x5ACC\n0xCFD4\t0x663E\n0xCFD5\t0x9669\n0xCFD6\t0x73B0\n0xCFD7\t0x732E\n0xCFD8\t0x53BF\n0xCFD9\t0x817A\n0xCFDA\t0x9985\n0xCFDB\t0x7FA1\n0xCFDC\t0x5BAA\n0xCFDD\t0x9677\n0xCFDE\t0x9650\n0xCFDF\t0x7EBF\n0xCFE0\t0x76F8\n0xCFE1\t0x53A2\n0xCFE2\t0x9576\n0xCFE3\t0x9999\n0xCFE4\t0x7BB1\n0xCFE5\t0x8944\n0xCFE6\t0x6E58\n0xCFE7\t0x4E61\n0xCFE8\t0x7FD4\n0xCFE9\t0x7965\n0xCFEA\t0x8BE6\n0xCFEB\t0x60F3\n0xCFEC\t0x54CD\n0xCFED\t0x4EAB\n0xCFEE\t0x9879\n0xCFEF\t0x5DF7\n0xCFF0\t0x6A61\n0xCFF1\t0x50CF\n0xCFF2\t0x5411\n0xCFF3\t0x8C61\n0xCFF4\t0x8427\n0xCFF5\t0x785D\n0xCFF6\t0x9704\n0xCFF7\t0x524A\n0xCFF8\t0x54EE\n0xCFF9\t0x56A3\n0xCFFA\t0x9500\n0xCFFB\t0x6D88\n0xCFFC\t0x5BB5\n0xCFFD\t0x6DC6\n0xCFFE\t0x6653\n0xD040\t0x8824\n0xD041\t0x8825\n0xD042\t0x8826\n0xD043\t0x8827\n0xD044\t0x8828\n0xD045\t0x8829\n0xD046\t0x882A\n0xD047\t0x882B\n0xD048\t0x882C\n0xD049\t0x882D\n0xD04A\t0x882E\n0xD04B\t0x882F\n0xD04C\t0x8830\n0xD04D\t0x8831\n0xD04E\t0x8833\n0xD04F\t0x8834\n0xD050\t0x8835\n0xD051\t0x8836\n0xD052\t0x8837\n0xD053\t0x8838\n0xD054\t0x883A\n0xD055\t0x883B\n0xD056\t0x883D\n0xD057\t0x883E\n0xD058\t0x883F\n0xD059\t0x8841\n0xD05A\t0x8842\n0xD05B\t0x8843\n0xD05C\t0x8846\n0xD05D\t0x8847\n0xD05E\t0x8848\n0xD05F\t0x8849\n0xD060\t0x884A\n0xD061\t0x884B\n0xD062\t0x884E\n0xD063\t0x884F\n0xD064\t0x8850\n0xD065\t0x8851\n0xD066\t0x8852\n0xD067\t0x8853\n0xD068\t0x8855\n0xD069\t0x8856\n0xD06A\t0x8858\n0xD06B\t0x885A\n0xD06C\t0x885B\n0xD06D\t0x885C\n0xD06E\t0x885D\n0xD06F\t0x885E\n0xD070\t0x885F\n0xD071\t0x8860\n0xD072\t0x8866\n0xD073\t0x8867\n0xD074\t0x886A\n0xD075\t0x886D\n0xD076\t0x886F\n0xD077\t0x8871\n0xD078\t0x8873\n0xD079\t0x8874\n0xD07A\t0x8875\n0xD07B\t0x8876\n0xD07C\t0x8878\n0xD07D\t0x8879\n0xD07E\t0x887A\n0xD080\t0x887B\n0xD081\t0x887C\n0xD082\t0x8880\n0xD083\t0x8883\n0xD084\t0x8886\n0xD085\t0x8887\n0xD086\t0x8889\n0xD087\t0x888A\n0xD088\t0x888C\n0xD089\t0x888E\n0xD08A\t0x888F\n0xD08B\t0x8890\n0xD08C\t0x8891\n0xD08D\t0x8893\n0xD08E\t0x8894\n0xD08F\t0x8895\n0xD090\t0x8897\n0xD091\t0x8898\n0xD092\t0x8899\n0xD093\t0x889A\n0xD094\t0x889B\n0xD095\t0x889D\n0xD096\t0x889E\n0xD097\t0x889F\n0xD098\t0x88A0\n0xD099\t0x88A1\n0xD09A\t0x88A3\n0xD09B\t0x88A5\n0xD09C\t0x88A6\n0xD09D\t0x88A7\n0xD09E\t0x88A8\n0xD09F\t0x88A9\n0xD0A0\t0x88AA\n0xD0A1\t0x5C0F\n0xD0A2\t0x5B5D\n0xD0A3\t0x6821\n0xD0A4\t0x8096\n0xD0A5\t0x5578\n0xD0A6\t0x7B11\n0xD0A7\t0x6548\n0xD0A8\t0x6954\n0xD0A9\t0x4E9B\n0xD0AA\t0x6B47\n0xD0AB\t0x874E\n0xD0AC\t0x978B\n0xD0AD\t0x534F\n0xD0AE\t0x631F\n0xD0AF\t0x643A\n0xD0B0\t0x90AA\n0xD0B1\t0x659C\n0xD0B2\t0x80C1\n0xD0B3\t0x8C10\n0xD0B4\t0x5199\n0xD0B5\t0x68B0\n0xD0B6\t0x5378\n0xD0B7\t0x87F9\n0xD0B8\t0x61C8\n0xD0B9\t0x6CC4\n0xD0BA\t0x6CFB\n0xD0BB\t0x8C22\n0xD0BC\t0x5C51\n0xD0BD\t0x85AA\n0xD0BE\t0x82AF\n0xD0BF\t0x950C\n0xD0C0\t0x6B23\n0xD0C1\t0x8F9B\n0xD0C2\t0x65B0\n0xD0C3\t0x5FFB\n0xD0C4\t0x5FC3\n0xD0C5\t0x4FE1\n0xD0C6\t0x8845\n0xD0C7\t0x661F\n0xD0C8\t0x8165\n0xD0C9\t0x7329\n0xD0CA\t0x60FA\n0xD0CB\t0x5174\n0xD0CC\t0x5211\n0xD0CD\t0x578B\n0xD0CE\t0x5F62\n0xD0CF\t0x90A2\n0xD0D0\t0x884C\n0xD0D1\t0x9192\n0xD0D2\t0x5E78\n0xD0D3\t0x674F\n0xD0D4\t0x6027\n0xD0D5\t0x59D3\n0xD0D6\t0x5144\n0xD0D7\t0x51F6\n0xD0D8\t0x80F8\n0xD0D9\t0x5308\n0xD0DA\t0x6C79\n0xD0DB\t0x96C4\n0xD0DC\t0x718A\n0xD0DD\t0x4F11\n0xD0DE\t0x4FEE\n0xD0DF\t0x7F9E\n0xD0E0\t0x673D\n0xD0E1\t0x55C5\n0xD0E2\t0x9508\n0xD0E3\t0x79C0\n0xD0E4\t0x8896\n0xD0E5\t0x7EE3\n0xD0E6\t0x589F\n0xD0E7\t0x620C\n0xD0E8\t0x9700\n0xD0E9\t0x865A\n0xD0EA\t0x5618\n0xD0EB\t0x987B\n0xD0EC\t0x5F90\n0xD0ED\t0x8BB8\n0xD0EE\t0x84C4\n0xD0EF\t0x9157\n0xD0F0\t0x53D9\n0xD0F1\t0x65ED\n0xD0F2\t0x5E8F\n0xD0F3\t0x755C\n0xD0F4\t0x6064\n0xD0F5\t0x7D6E\n0xD0F6\t0x5A7F\n0xD0F7\t0x7EEA\n0xD0F8\t0x7EED\n0xD0F9\t0x8F69\n0xD0FA\t0x55A7\n0xD0FB\t0x5BA3\n0xD0FC\t0x60AC\n0xD0FD\t0x65CB\n0xD0FE\t0x7384\n0xD140\t0x88AC\n0xD141\t0x88AE\n0xD142\t0x88AF\n0xD143\t0x88B0\n0xD144\t0x88B2\n0xD145\t0x88B3\n0xD146\t0x88B4\n0xD147\t0x88B5\n0xD148\t0x88B6\n0xD149\t0x88B8\n0xD14A\t0x88B9\n0xD14B\t0x88BA\n0xD14C\t0x88BB\n0xD14D\t0x88BD\n0xD14E\t0x88BE\n0xD14F\t0x88BF\n0xD150\t0x88C0\n0xD151\t0x88C3\n0xD152\t0x88C4\n0xD153\t0x88C7\n0xD154\t0x88C8\n0xD155\t0x88CA\n0xD156\t0x88CB\n0xD157\t0x88CC\n0xD158\t0x88CD\n0xD159\t0x88CF\n0xD15A\t0x88D0\n0xD15B\t0x88D1\n0xD15C\t0x88D3\n0xD15D\t0x88D6\n0xD15E\t0x88D7\n0xD15F\t0x88DA\n0xD160\t0x88DB\n0xD161\t0x88DC\n0xD162\t0x88DD\n0xD163\t0x88DE\n0xD164\t0x88E0\n0xD165\t0x88E1\n0xD166\t0x88E6\n0xD167\t0x88E7\n0xD168\t0x88E9\n0xD169\t0x88EA\n0xD16A\t0x88EB\n0xD16B\t0x88EC\n0xD16C\t0x88ED\n0xD16D\t0x88EE\n0xD16E\t0x88EF\n0xD16F\t0x88F2\n0xD170\t0x88F5\n0xD171\t0x88F6\n0xD172\t0x88F7\n0xD173\t0x88FA\n0xD174\t0x88FB\n0xD175\t0x88FD\n0xD176\t0x88FF\n0xD177\t0x8900\n0xD178\t0x8901\n0xD179\t0x8903\n0xD17A\t0x8904\n0xD17B\t0x8905\n0xD17C\t0x8906\n0xD17D\t0x8907\n0xD17E\t0x8908\n0xD180\t0x8909\n0xD181\t0x890B\n0xD182\t0x890C\n0xD183\t0x890D\n0xD184\t0x890E\n0xD185\t0x890F\n0xD186\t0x8911\n0xD187\t0x8914\n0xD188\t0x8915\n0xD189\t0x8916\n0xD18A\t0x8917\n0xD18B\t0x8918\n0xD18C\t0x891C\n0xD18D\t0x891D\n0xD18E\t0x891E\n0xD18F\t0x891F\n0xD190\t0x8920\n0xD191\t0x8922\n0xD192\t0x8923\n0xD193\t0x8924\n0xD194\t0x8926\n0xD195\t0x8927\n0xD196\t0x8928\n0xD197\t0x8929\n0xD198\t0x892C\n0xD199\t0x892D\n0xD19A\t0x892E\n0xD19B\t0x892F\n0xD19C\t0x8931\n0xD19D\t0x8932\n0xD19E\t0x8933\n0xD19F\t0x8935\n0xD1A0\t0x8937\n0xD1A1\t0x9009\n0xD1A2\t0x7663\n0xD1A3\t0x7729\n0xD1A4\t0x7EDA\n0xD1A5\t0x9774\n0xD1A6\t0x859B\n0xD1A7\t0x5B66\n0xD1A8\t0x7A74\n0xD1A9\t0x96EA\n0xD1AA\t0x8840\n0xD1AB\t0x52CB\n0xD1AC\t0x718F\n0xD1AD\t0x5FAA\n0xD1AE\t0x65EC\n0xD1AF\t0x8BE2\n0xD1B0\t0x5BFB\n0xD1B1\t0x9A6F\n0xD1B2\t0x5DE1\n0xD1B3\t0x6B89\n0xD1B4\t0x6C5B\n0xD1B5\t0x8BAD\n0xD1B6\t0x8BAF\n0xD1B7\t0x900A\n0xD1B8\t0x8FC5\n0xD1B9\t0x538B\n0xD1BA\t0x62BC\n0xD1BB\t0x9E26\n0xD1BC\t0x9E2D\n0xD1BD\t0x5440\n0xD1BE\t0x4E2B\n0xD1BF\t0x82BD\n0xD1C0\t0x7259\n0xD1C1\t0x869C\n0xD1C2\t0x5D16\n0xD1C3\t0x8859\n0xD1C4\t0x6DAF\n0xD1C5\t0x96C5\n0xD1C6\t0x54D1\n0xD1C7\t0x4E9A\n0xD1C8\t0x8BB6\n0xD1C9\t0x7109\n0xD1CA\t0x54BD\n0xD1CB\t0x9609\n0xD1CC\t0x70DF\n0xD1CD\t0x6DF9\n0xD1CE\t0x76D0\n0xD1CF\t0x4E25\n0xD1D0\t0x7814\n0xD1D1\t0x8712\n0xD1D2\t0x5CA9\n0xD1D3\t0x5EF6\n0xD1D4\t0x8A00\n0xD1D5\t0x989C\n0xD1D6\t0x960E\n0xD1D7\t0x708E\n0xD1D8\t0x6CBF\n0xD1D9\t0x5944\n0xD1DA\t0x63A9\n0xD1DB\t0x773C\n0xD1DC\t0x884D\n0xD1DD\t0x6F14\n0xD1DE\t0x8273\n0xD1DF\t0x5830\n0xD1E0\t0x71D5\n0xD1E1\t0x538C\n0xD1E2\t0x781A\n0xD1E3\t0x96C1\n0xD1E4\t0x5501\n0xD1E5\t0x5F66\n0xD1E6\t0x7130\n0xD1E7\t0x5BB4\n0xD1E8\t0x8C1A\n0xD1E9\t0x9A8C\n0xD1EA\t0x6B83\n0xD1EB\t0x592E\n0xD1EC\t0x9E2F\n0xD1ED\t0x79E7\n0xD1EE\t0x6768\n0xD1EF\t0x626C\n0xD1F0\t0x4F6F\n0xD1F1\t0x75A1\n0xD1F2\t0x7F8A\n0xD1F3\t0x6D0B\n0xD1F4\t0x9633\n0xD1F5\t0x6C27\n0xD1F6\t0x4EF0\n0xD1F7\t0x75D2\n0xD1F8\t0x517B\n0xD1F9\t0x6837\n0xD1FA\t0x6F3E\n0xD1FB\t0x9080\n0xD1FC\t0x8170\n0xD1FD\t0x5996\n0xD1FE\t0x7476\n0xD240\t0x8938\n0xD241\t0x8939\n0xD242\t0x893A\n0xD243\t0x893B\n0xD244\t0x893C\n0xD245\t0x893D\n0xD246\t0x893E\n0xD247\t0x893F\n0xD248\t0x8940\n0xD249\t0x8942\n0xD24A\t0x8943\n0xD24B\t0x8945\n0xD24C\t0x8946\n0xD24D\t0x8947\n0xD24E\t0x8948\n0xD24F\t0x8949\n0xD250\t0x894A\n0xD251\t0x894B\n0xD252\t0x894C\n0xD253\t0x894D\n0xD254\t0x894E\n0xD255\t0x894F\n0xD256\t0x8950\n0xD257\t0x8951\n0xD258\t0x8952\n0xD259\t0x8953\n0xD25A\t0x8954\n0xD25B\t0x8955\n0xD25C\t0x8956\n0xD25D\t0x8957\n0xD25E\t0x8958\n0xD25F\t0x8959\n0xD260\t0x895A\n0xD261\t0x895B\n0xD262\t0x895C\n0xD263\t0x895D\n0xD264\t0x8960\n0xD265\t0x8961\n0xD266\t0x8962\n0xD267\t0x8963\n0xD268\t0x8964\n0xD269\t0x8965\n0xD26A\t0x8967\n0xD26B\t0x8968\n0xD26C\t0x8969\n0xD26D\t0x896A\n0xD26E\t0x896B\n0xD26F\t0x896C\n0xD270\t0x896D\n0xD271\t0x896E\n0xD272\t0x896F\n0xD273\t0x8970\n0xD274\t0x8971\n0xD275\t0x8972\n0xD276\t0x8973\n0xD277\t0x8974\n0xD278\t0x8975\n0xD279\t0x8976\n0xD27A\t0x8977\n0xD27B\t0x8978\n0xD27C\t0x8979\n0xD27D\t0x897A\n0xD27E\t0x897C\n0xD280\t0x897D\n0xD281\t0x897E\n0xD282\t0x8980\n0xD283\t0x8982\n0xD284\t0x8984\n0xD285\t0x8985\n0xD286\t0x8987\n0xD287\t0x8988\n0xD288\t0x8989\n0xD289\t0x898A\n0xD28A\t0x898B\n0xD28B\t0x898C\n0xD28C\t0x898D\n0xD28D\t0x898E\n0xD28E\t0x898F\n0xD28F\t0x8990\n0xD290\t0x8991\n0xD291\t0x8992\n0xD292\t0x8993\n0xD293\t0x8994\n0xD294\t0x8995\n0xD295\t0x8996\n0xD296\t0x8997\n0xD297\t0x8998\n0xD298\t0x8999\n0xD299\t0x899A\n0xD29A\t0x899B\n0xD29B\t0x899C\n0xD29C\t0x899D\n0xD29D\t0x899E\n0xD29E\t0x899F\n0xD29F\t0x89A0\n0xD2A0\t0x89A1\n0xD2A1\t0x6447\n0xD2A2\t0x5C27\n0xD2A3\t0x9065\n0xD2A4\t0x7A91\n0xD2A5\t0x8C23\n0xD2A6\t0x59DA\n0xD2A7\t0x54AC\n0xD2A8\t0x8200\n0xD2A9\t0x836F\n0xD2AA\t0x8981\n0xD2AB\t0x8000\n0xD2AC\t0x6930\n0xD2AD\t0x564E\n0xD2AE\t0x8036\n0xD2AF\t0x7237\n0xD2B0\t0x91CE\n0xD2B1\t0x51B6\n0xD2B2\t0x4E5F\n0xD2B3\t0x9875\n0xD2B4\t0x6396\n0xD2B5\t0x4E1A\n0xD2B6\t0x53F6\n0xD2B7\t0x66F3\n0xD2B8\t0x814B\n0xD2B9\t0x591C\n0xD2BA\t0x6DB2\n0xD2BB\t0x4E00\n0xD2BC\t0x58F9\n0xD2BD\t0x533B\n0xD2BE\t0x63D6\n0xD2BF\t0x94F1\n0xD2C0\t0x4F9D\n0xD2C1\t0x4F0A\n0xD2C2\t0x8863\n0xD2C3\t0x9890\n0xD2C4\t0x5937\n0xD2C5\t0x9057\n0xD2C6\t0x79FB\n0xD2C7\t0x4EEA\n0xD2C8\t0x80F0\n0xD2C9\t0x7591\n0xD2CA\t0x6C82\n0xD2CB\t0x5B9C\n0xD2CC\t0x59E8\n0xD2CD\t0x5F5D\n0xD2CE\t0x6905\n0xD2CF\t0x8681\n0xD2D0\t0x501A\n0xD2D1\t0x5DF2\n0xD2D2\t0x4E59\n0xD2D3\t0x77E3\n0xD2D4\t0x4EE5\n0xD2D5\t0x827A\n0xD2D6\t0x6291\n0xD2D7\t0x6613\n0xD2D8\t0x9091\n0xD2D9\t0x5C79\n0xD2DA\t0x4EBF\n0xD2DB\t0x5F79\n0xD2DC\t0x81C6\n0xD2DD\t0x9038\n0xD2DE\t0x8084\n0xD2DF\t0x75AB\n0xD2E0\t0x4EA6\n0xD2E1\t0x88D4\n0xD2E2\t0x610F\n0xD2E3\t0x6BC5\n0xD2E4\t0x5FC6\n0xD2E5\t0x4E49\n0xD2E6\t0x76CA\n0xD2E7\t0x6EA2\n0xD2E8\t0x8BE3\n0xD2E9\t0x8BAE\n0xD2EA\t0x8C0A\n0xD2EB\t0x8BD1\n0xD2EC\t0x5F02\n0xD2ED\t0x7FFC\n0xD2EE\t0x7FCC\n0xD2EF\t0x7ECE\n0xD2F0\t0x8335\n0xD2F1\t0x836B\n0xD2F2\t0x56E0\n0xD2F3\t0x6BB7\n0xD2F4\t0x97F3\n0xD2F5\t0x9634\n0xD2F6\t0x59FB\n0xD2F7\t0x541F\n0xD2F8\t0x94F6\n0xD2F9\t0x6DEB\n0xD2FA\t0x5BC5\n0xD2FB\t0x996E\n0xD2FC\t0x5C39\n0xD2FD\t0x5F15\n0xD2FE\t0x9690\n0xD340\t0x89A2\n0xD341\t0x89A3\n0xD342\t0x89A4\n0xD343\t0x89A5\n0xD344\t0x89A6\n0xD345\t0x89A7\n0xD346\t0x89A8\n0xD347\t0x89A9\n0xD348\t0x89AA\n0xD349\t0x89AB\n0xD34A\t0x89AC\n0xD34B\t0x89AD\n0xD34C\t0x89AE\n0xD34D\t0x89AF\n0xD34E\t0x89B0\n0xD34F\t0x89B1\n0xD350\t0x89B2\n0xD351\t0x89B3\n0xD352\t0x89B4\n0xD353\t0x89B5\n0xD354\t0x89B6\n0xD355\t0x89B7\n0xD356\t0x89B8\n0xD357\t0x89B9\n0xD358\t0x89BA\n0xD359\t0x89BB\n0xD35A\t0x89BC\n0xD35B\t0x89BD\n0xD35C\t0x89BE\n0xD35D\t0x89BF\n0xD35E\t0x89C0\n0xD35F\t0x89C3\n0xD360\t0x89CD\n0xD361\t0x89D3\n0xD362\t0x89D4\n0xD363\t0x89D5\n0xD364\t0x89D7\n0xD365\t0x89D8\n0xD366\t0x89D9\n0xD367\t0x89DB\n0xD368\t0x89DD\n0xD369\t0x89DF\n0xD36A\t0x89E0\n0xD36B\t0x89E1\n0xD36C\t0x89E2\n0xD36D\t0x89E4\n0xD36E\t0x89E7\n0xD36F\t0x89E8\n0xD370\t0x89E9\n0xD371\t0x89EA\n0xD372\t0x89EC\n0xD373\t0x89ED\n0xD374\t0x89EE\n0xD375\t0x89F0\n0xD376\t0x89F1\n0xD377\t0x89F2\n0xD378\t0x89F4\n0xD379\t0x89F5\n0xD37A\t0x89F6\n0xD37B\t0x89F7\n0xD37C\t0x89F8\n0xD37D\t0x89F9\n0xD37E\t0x89FA\n0xD380\t0x89FB\n0xD381\t0x89FC\n0xD382\t0x89FD\n0xD383\t0x89FE\n0xD384\t0x89FF\n0xD385\t0x8A01\n0xD386\t0x8A02\n0xD387\t0x8A03\n0xD388\t0x8A04\n0xD389\t0x8A05\n0xD38A\t0x8A06\n0xD38B\t0x8A08\n0xD38C\t0x8A09\n0xD38D\t0x8A0A\n0xD38E\t0x8A0B\n0xD38F\t0x8A0C\n0xD390\t0x8A0D\n0xD391\t0x8A0E\n0xD392\t0x8A0F\n0xD393\t0x8A10\n0xD394\t0x8A11\n0xD395\t0x8A12\n0xD396\t0x8A13\n0xD397\t0x8A14\n0xD398\t0x8A15\n0xD399\t0x8A16\n0xD39A\t0x8A17\n0xD39B\t0x8A18\n0xD39C\t0x8A19\n0xD39D\t0x8A1A\n0xD39E\t0x8A1B\n0xD39F\t0x8A1C\n0xD3A0\t0x8A1D\n0xD3A1\t0x5370\n0xD3A2\t0x82F1\n0xD3A3\t0x6A31\n0xD3A4\t0x5A74\n0xD3A5\t0x9E70\n0xD3A6\t0x5E94\n0xD3A7\t0x7F28\n0xD3A8\t0x83B9\n0xD3A9\t0x8424\n0xD3AA\t0x8425\n0xD3AB\t0x8367\n0xD3AC\t0x8747\n0xD3AD\t0x8FCE\n0xD3AE\t0x8D62\n0xD3AF\t0x76C8\n0xD3B0\t0x5F71\n0xD3B1\t0x9896\n0xD3B2\t0x786C\n0xD3B3\t0x6620\n0xD3B4\t0x54DF\n0xD3B5\t0x62E5\n0xD3B6\t0x4F63\n0xD3B7\t0x81C3\n0xD3B8\t0x75C8\n0xD3B9\t0x5EB8\n0xD3BA\t0x96CD\n0xD3BB\t0x8E0A\n0xD3BC\t0x86F9\n0xD3BD\t0x548F\n0xD3BE\t0x6CF3\n0xD3BF\t0x6D8C\n0xD3C0\t0x6C38\n0xD3C1\t0x607F\n0xD3C2\t0x52C7\n0xD3C3\t0x7528\n0xD3C4\t0x5E7D\n0xD3C5\t0x4F18\n0xD3C6\t0x60A0\n0xD3C7\t0x5FE7\n0xD3C8\t0x5C24\n0xD3C9\t0x7531\n0xD3CA\t0x90AE\n0xD3CB\t0x94C0\n0xD3CC\t0x72B9\n0xD3CD\t0x6CB9\n0xD3CE\t0x6E38\n0xD3CF\t0x9149\n0xD3D0\t0x6709\n0xD3D1\t0x53CB\n0xD3D2\t0x53F3\n0xD3D3\t0x4F51\n0xD3D4\t0x91C9\n0xD3D5\t0x8BF1\n0xD3D6\t0x53C8\n0xD3D7\t0x5E7C\n0xD3D8\t0x8FC2\n0xD3D9\t0x6DE4\n0xD3DA\t0x4E8E\n0xD3DB\t0x76C2\n0xD3DC\t0x6986\n0xD3DD\t0x865E\n0xD3DE\t0x611A\n0xD3DF\t0x8206\n0xD3E0\t0x4F59\n0xD3E1\t0x4FDE\n0xD3E2\t0x903E\n0xD3E3\t0x9C7C\n0xD3E4\t0x6109\n0xD3E5\t0x6E1D\n0xD3E6\t0x6E14\n0xD3E7\t0x9685\n0xD3E8\t0x4E88\n0xD3E9\t0x5A31\n0xD3EA\t0x96E8\n0xD3EB\t0x4E0E\n0xD3EC\t0x5C7F\n0xD3ED\t0x79B9\n0xD3EE\t0x5B87\n0xD3EF\t0x8BED\n0xD3F0\t0x7FBD\n0xD3F1\t0x7389\n0xD3F2\t0x57DF\n0xD3F3\t0x828B\n0xD3F4\t0x90C1\n0xD3F5\t0x5401\n0xD3F6\t0x9047\n0xD3F7\t0x55BB\n0xD3F8\t0x5CEA\n0xD3F9\t0x5FA1\n0xD3FA\t0x6108\n0xD3FB\t0x6B32\n0xD3FC\t0x72F1\n0xD3FD\t0x80B2\n0xD3FE\t0x8A89\n0xD440\t0x8A1E\n0xD441\t0x8A1F\n0xD442\t0x8A20\n0xD443\t0x8A21\n0xD444\t0x8A22\n0xD445\t0x8A23\n0xD446\t0x8A24\n0xD447\t0x8A25\n0xD448\t0x8A26\n0xD449\t0x8A27\n0xD44A\t0x8A28\n0xD44B\t0x8A29\n0xD44C\t0x8A2A\n0xD44D\t0x8A2B\n0xD44E\t0x8A2C\n0xD44F\t0x8A2D\n0xD450\t0x8A2E\n0xD451\t0x8A2F\n0xD452\t0x8A30\n0xD453\t0x8A31\n0xD454\t0x8A32\n0xD455\t0x8A33\n0xD456\t0x8A34\n0xD457\t0x8A35\n0xD458\t0x8A36\n0xD459\t0x8A37\n0xD45A\t0x8A38\n0xD45B\t0x8A39\n0xD45C\t0x8A3A\n0xD45D\t0x8A3B\n0xD45E\t0x8A3C\n0xD45F\t0x8A3D\n0xD460\t0x8A3F\n0xD461\t0x8A40\n0xD462\t0x8A41\n0xD463\t0x8A42\n0xD464\t0x8A43\n0xD465\t0x8A44\n0xD466\t0x8A45\n0xD467\t0x8A46\n0xD468\t0x8A47\n0xD469\t0x8A49\n0xD46A\t0x8A4A\n0xD46B\t0x8A4B\n0xD46C\t0x8A4C\n0xD46D\t0x8A4D\n0xD46E\t0x8A4E\n0xD46F\t0x8A4F\n0xD470\t0x8A50\n0xD471\t0x8A51\n0xD472\t0x8A52\n0xD473\t0x8A53\n0xD474\t0x8A54\n0xD475\t0x8A55\n0xD476\t0x8A56\n0xD477\t0x8A57\n0xD478\t0x8A58\n0xD479\t0x8A59\n0xD47A\t0x8A5A\n0xD47B\t0x8A5B\n0xD47C\t0x8A5C\n0xD47D\t0x8A5D\n0xD47E\t0x8A5E\n0xD480\t0x8A5F\n0xD481\t0x8A60\n0xD482\t0x8A61\n0xD483\t0x8A62\n0xD484\t0x8A63\n0xD485\t0x8A64\n0xD486\t0x8A65\n0xD487\t0x8A66\n0xD488\t0x8A67\n0xD489\t0x8A68\n0xD48A\t0x8A69\n0xD48B\t0x8A6A\n0xD48C\t0x8A6B\n0xD48D\t0x8A6C\n0xD48E\t0x8A6D\n0xD48F\t0x8A6E\n0xD490\t0x8A6F\n0xD491\t0x8A70\n0xD492\t0x8A71\n0xD493\t0x8A72\n0xD494\t0x8A73\n0xD495\t0x8A74\n0xD496\t0x8A75\n0xD497\t0x8A76\n0xD498\t0x8A77\n0xD499\t0x8A78\n0xD49A\t0x8A7A\n0xD49B\t0x8A7B\n0xD49C\t0x8A7C\n0xD49D\t0x8A7D\n0xD49E\t0x8A7E\n0xD49F\t0x8A7F\n0xD4A0\t0x8A80\n0xD4A1\t0x6D74\n0xD4A2\t0x5BD3\n0xD4A3\t0x88D5\n0xD4A4\t0x9884\n0xD4A5\t0x8C6B\n0xD4A6\t0x9A6D\n0xD4A7\t0x9E33\n0xD4A8\t0x6E0A\n0xD4A9\t0x51A4\n0xD4AA\t0x5143\n0xD4AB\t0x57A3\n0xD4AC\t0x8881\n0xD4AD\t0x539F\n0xD4AE\t0x63F4\n0xD4AF\t0x8F95\n0xD4B0\t0x56ED\n0xD4B1\t0x5458\n0xD4B2\t0x5706\n0xD4B3\t0x733F\n0xD4B4\t0x6E90\n0xD4B5\t0x7F18\n0xD4B6\t0x8FDC\n0xD4B7\t0x82D1\n0xD4B8\t0x613F\n0xD4B9\t0x6028\n0xD4BA\t0x9662\n0xD4BB\t0x66F0\n0xD4BC\t0x7EA6\n0xD4BD\t0x8D8A\n0xD4BE\t0x8DC3\n0xD4BF\t0x94A5\n0xD4C0\t0x5CB3\n0xD4C1\t0x7CA4\n0xD4C2\t0x6708\n0xD4C3\t0x60A6\n0xD4C4\t0x9605\n0xD4C5\t0x8018\n0xD4C6\t0x4E91\n0xD4C7\t0x90E7\n0xD4C8\t0x5300\n0xD4C9\t0x9668\n0xD4CA\t0x5141\n0xD4CB\t0x8FD0\n0xD4CC\t0x8574\n0xD4CD\t0x915D\n0xD4CE\t0x6655\n0xD4CF\t0x97F5\n0xD4D0\t0x5B55\n0xD4D1\t0x531D\n0xD4D2\t0x7838\n0xD4D3\t0x6742\n0xD4D4\t0x683D\n0xD4D5\t0x54C9\n0xD4D6\t0x707E\n0xD4D7\t0x5BB0\n0xD4D8\t0x8F7D\n0xD4D9\t0x518D\n0xD4DA\t0x5728\n0xD4DB\t0x54B1\n0xD4DC\t0x6512\n0xD4DD\t0x6682\n0xD4DE\t0x8D5E\n0xD4DF\t0x8D43\n0xD4E0\t0x810F\n0xD4E1\t0x846C\n0xD4E2\t0x906D\n0xD4E3\t0x7CDF\n0xD4E4\t0x51FF\n0xD4E5\t0x85FB\n0xD4E6\t0x67A3\n0xD4E7\t0x65E9\n0xD4E8\t0x6FA1\n0xD4E9\t0x86A4\n0xD4EA\t0x8E81\n0xD4EB\t0x566A\n0xD4EC\t0x9020\n0xD4ED\t0x7682\n0xD4EE\t0x7076\n0xD4EF\t0x71E5\n0xD4F0\t0x8D23\n0xD4F1\t0x62E9\n0xD4F2\t0x5219\n0xD4F3\t0x6CFD\n0xD4F4\t0x8D3C\n0xD4F5\t0x600E\n0xD4F6\t0x589E\n0xD4F7\t0x618E\n0xD4F8\t0x66FE\n0xD4F9\t0x8D60\n0xD4FA\t0x624E\n0xD4FB\t0x55B3\n0xD4FC\t0x6E23\n0xD4FD\t0x672D\n0xD4FE\t0x8F67\n0xD540\t0x8A81\n0xD541\t0x8A82\n0xD542\t0x8A83\n0xD543\t0x8A84\n0xD544\t0x8A85\n0xD545\t0x8A86\n0xD546\t0x8A87\n0xD547\t0x8A88\n0xD548\t0x8A8B\n0xD549\t0x8A8C\n0xD54A\t0x8A8D\n0xD54B\t0x8A8E\n0xD54C\t0x8A8F\n0xD54D\t0x8A90\n0xD54E\t0x8A91\n0xD54F\t0x8A92\n0xD550\t0x8A94\n0xD551\t0x8A95\n0xD552\t0x8A96\n0xD553\t0x8A97\n0xD554\t0x8A98\n0xD555\t0x8A99\n0xD556\t0x8A9A\n0xD557\t0x8A9B\n0xD558\t0x8A9C\n0xD559\t0x8A9D\n0xD55A\t0x8A9E\n0xD55B\t0x8A9F\n0xD55C\t0x8AA0\n0xD55D\t0x8AA1\n0xD55E\t0x8AA2\n0xD55F\t0x8AA3\n0xD560\t0x8AA4\n0xD561\t0x8AA5\n0xD562\t0x8AA6\n0xD563\t0x8AA7\n0xD564\t0x8AA8\n0xD565\t0x8AA9\n0xD566\t0x8AAA\n0xD567\t0x8AAB\n0xD568\t0x8AAC\n0xD569\t0x8AAD\n0xD56A\t0x8AAE\n0xD56B\t0x8AAF\n0xD56C\t0x8AB0\n0xD56D\t0x8AB1\n0xD56E\t0x8AB2\n0xD56F\t0x8AB3\n0xD570\t0x8AB4\n0xD571\t0x8AB5\n0xD572\t0x8AB6\n0xD573\t0x8AB7\n0xD574\t0x8AB8\n0xD575\t0x8AB9\n0xD576\t0x8ABA\n0xD577\t0x8ABB\n0xD578\t0x8ABC\n0xD579\t0x8ABD\n0xD57A\t0x8ABE\n0xD57B\t0x8ABF\n0xD57C\t0x8AC0\n0xD57D\t0x8AC1\n0xD57E\t0x8AC2\n0xD580\t0x8AC3\n0xD581\t0x8AC4\n0xD582\t0x8AC5\n0xD583\t0x8AC6\n0xD584\t0x8AC7\n0xD585\t0x8AC8\n0xD586\t0x8AC9\n0xD587\t0x8ACA\n0xD588\t0x8ACB\n0xD589\t0x8ACC\n0xD58A\t0x8ACD\n0xD58B\t0x8ACE\n0xD58C\t0x8ACF\n0xD58D\t0x8AD0\n0xD58E\t0x8AD1\n0xD58F\t0x8AD2\n0xD590\t0x8AD3\n0xD591\t0x8AD4\n0xD592\t0x8AD5\n0xD593\t0x8AD6\n0xD594\t0x8AD7\n0xD595\t0x8AD8\n0xD596\t0x8AD9\n0xD597\t0x8ADA\n0xD598\t0x8ADB\n0xD599\t0x8ADC\n0xD59A\t0x8ADD\n0xD59B\t0x8ADE\n0xD59C\t0x8ADF\n0xD59D\t0x8AE0\n0xD59E\t0x8AE1\n0xD59F\t0x8AE2\n0xD5A0\t0x8AE3\n0xD5A1\t0x94E1\n0xD5A2\t0x95F8\n0xD5A3\t0x7728\n0xD5A4\t0x6805\n0xD5A5\t0x69A8\n0xD5A6\t0x548B\n0xD5A7\t0x4E4D\n0xD5A8\t0x70B8\n0xD5A9\t0x8BC8\n0xD5AA\t0x6458\n0xD5AB\t0x658B\n0xD5AC\t0x5B85\n0xD5AD\t0x7A84\n0xD5AE\t0x503A\n0xD5AF\t0x5BE8\n0xD5B0\t0x77BB\n0xD5B1\t0x6BE1\n0xD5B2\t0x8A79\n0xD5B3\t0x7C98\n0xD5B4\t0x6CBE\n0xD5B5\t0x76CF\n0xD5B6\t0x65A9\n0xD5B7\t0x8F97\n0xD5B8\t0x5D2D\n0xD5B9\t0x5C55\n0xD5BA\t0x8638\n0xD5BB\t0x6808\n0xD5BC\t0x5360\n0xD5BD\t0x6218\n0xD5BE\t0x7AD9\n0xD5BF\t0x6E5B\n0xD5C0\t0x7EFD\n0xD5C1\t0x6A1F\n0xD5C2\t0x7AE0\n0xD5C3\t0x5F70\n0xD5C4\t0x6F33\n0xD5C5\t0x5F20\n0xD5C6\t0x638C\n0xD5C7\t0x6DA8\n0xD5C8\t0x6756\n0xD5C9\t0x4E08\n0xD5CA\t0x5E10\n0xD5CB\t0x8D26\n0xD5CC\t0x4ED7\n0xD5CD\t0x80C0\n0xD5CE\t0x7634\n0xD5CF\t0x969C\n0xD5D0\t0x62DB\n0xD5D1\t0x662D\n0xD5D2\t0x627E\n0xD5D3\t0x6CBC\n0xD5D4\t0x8D75\n0xD5D5\t0x7167\n0xD5D6\t0x7F69\n0xD5D7\t0x5146\n0xD5D8\t0x8087\n0xD5D9\t0x53EC\n0xD5DA\t0x906E\n0xD5DB\t0x6298\n0xD5DC\t0x54F2\n0xD5DD\t0x86F0\n0xD5DE\t0x8F99\n0xD5DF\t0x8005\n0xD5E0\t0x9517\n0xD5E1\t0x8517\n0xD5E2\t0x8FD9\n0xD5E3\t0x6D59\n0xD5E4\t0x73CD\n0xD5E5\t0x659F\n0xD5E6\t0x771F\n0xD5E7\t0x7504\n0xD5E8\t0x7827\n0xD5E9\t0x81FB\n0xD5EA\t0x8D1E\n0xD5EB\t0x9488\n0xD5EC\t0x4FA6\n0xD5ED\t0x6795\n0xD5EE\t0x75B9\n0xD5EF\t0x8BCA\n0xD5F0\t0x9707\n0xD5F1\t0x632F\n0xD5F2\t0x9547\n0xD5F3\t0x9635\n0xD5F4\t0x84B8\n0xD5F5\t0x6323\n0xD5F6\t0x7741\n0xD5F7\t0x5F81\n0xD5F8\t0x72F0\n0xD5F9\t0x4E89\n0xD5FA\t0x6014\n0xD5FB\t0x6574\n0xD5FC\t0x62EF\n0xD5FD\t0x6B63\n0xD5FE\t0x653F\n0xD640\t0x8AE4\n0xD641\t0x8AE5\n0xD642\t0x8AE6\n0xD643\t0x8AE7\n0xD644\t0x8AE8\n0xD645\t0x8AE9\n0xD646\t0x8AEA\n0xD647\t0x8AEB\n0xD648\t0x8AEC\n0xD649\t0x8AED\n0xD64A\t0x8AEE\n0xD64B\t0x8AEF\n0xD64C\t0x8AF0\n0xD64D\t0x8AF1\n0xD64E\t0x8AF2\n0xD64F\t0x8AF3\n0xD650\t0x8AF4\n0xD651\t0x8AF5\n0xD652\t0x8AF6\n0xD653\t0x8AF7\n0xD654\t0x8AF8\n0xD655\t0x8AF9\n0xD656\t0x8AFA\n0xD657\t0x8AFB\n0xD658\t0x8AFC\n0xD659\t0x8AFD\n0xD65A\t0x8AFE\n0xD65B\t0x8AFF\n0xD65C\t0x8B00\n0xD65D\t0x8B01\n0xD65E\t0x8B02\n0xD65F\t0x8B03\n0xD660\t0x8B04\n0xD661\t0x8B05\n0xD662\t0x8B06\n0xD663\t0x8B08\n0xD664\t0x8B09\n0xD665\t0x8B0A\n0xD666\t0x8B0B\n0xD667\t0x8B0C\n0xD668\t0x8B0D\n0xD669\t0x8B0E\n0xD66A\t0x8B0F\n0xD66B\t0x8B10\n0xD66C\t0x8B11\n0xD66D\t0x8B12\n0xD66E\t0x8B13\n0xD66F\t0x8B14\n0xD670\t0x8B15\n0xD671\t0x8B16\n0xD672\t0x8B17\n0xD673\t0x8B18\n0xD674\t0x8B19\n0xD675\t0x8B1A\n0xD676\t0x8B1B\n0xD677\t0x8B1C\n0xD678\t0x8B1D\n0xD679\t0x8B1E\n0xD67A\t0x8B1F\n0xD67B\t0x8B20\n0xD67C\t0x8B21\n0xD67D\t0x8B22\n0xD67E\t0x8B23\n0xD680\t0x8B24\n0xD681\t0x8B25\n0xD682\t0x8B27\n0xD683\t0x8B28\n0xD684\t0x8B29\n0xD685\t0x8B2A\n0xD686\t0x8B2B\n0xD687\t0x8B2C\n0xD688\t0x8B2D\n0xD689\t0x8B2E\n0xD68A\t0x8B2F\n0xD68B\t0x8B30\n0xD68C\t0x8B31\n0xD68D\t0x8B32\n0xD68E\t0x8B33\n0xD68F\t0x8B34\n0xD690\t0x8B35\n0xD691\t0x8B36\n0xD692\t0x8B37\n0xD693\t0x8B38\n0xD694\t0x8B39\n0xD695\t0x8B3A\n0xD696\t0x8B3B\n0xD697\t0x8B3C\n0xD698\t0x8B3D\n0xD699\t0x8B3E\n0xD69A\t0x8B3F\n0xD69B\t0x8B40\n0xD69C\t0x8B41\n0xD69D\t0x8B42\n0xD69E\t0x8B43\n0xD69F\t0x8B44\n0xD6A0\t0x8B45\n0xD6A1\t0x5E27\n0xD6A2\t0x75C7\n0xD6A3\t0x90D1\n0xD6A4\t0x8BC1\n0xD6A5\t0x829D\n0xD6A6\t0x679D\n0xD6A7\t0x652F\n0xD6A8\t0x5431\n0xD6A9\t0x8718\n0xD6AA\t0x77E5\n0xD6AB\t0x80A2\n0xD6AC\t0x8102\n0xD6AD\t0x6C41\n0xD6AE\t0x4E4B\n0xD6AF\t0x7EC7\n0xD6B0\t0x804C\n0xD6B1\t0x76F4\n0xD6B2\t0x690D\n0xD6B3\t0x6B96\n0xD6B4\t0x6267\n0xD6B5\t0x503C\n0xD6B6\t0x4F84\n0xD6B7\t0x5740\n0xD6B8\t0x6307\n0xD6B9\t0x6B62\n0xD6BA\t0x8DBE\n0xD6BB\t0x53EA\n0xD6BC\t0x65E8\n0xD6BD\t0x7EB8\n0xD6BE\t0x5FD7\n0xD6BF\t0x631A\n0xD6C0\t0x63B7\n0xD6C1\t0x81F3\n0xD6C2\t0x81F4\n0xD6C3\t0x7F6E\n0xD6C4\t0x5E1C\n0xD6C5\t0x5CD9\n0xD6C6\t0x5236\n0xD6C7\t0x667A\n0xD6C8\t0x79E9\n0xD6C9\t0x7A1A\n0xD6CA\t0x8D28\n0xD6CB\t0x7099\n0xD6CC\t0x75D4\n0xD6CD\t0x6EDE\n0xD6CE\t0x6CBB\n0xD6CF\t0x7A92\n0xD6D0\t0x4E2D\n0xD6D1\t0x76C5\n0xD6D2\t0x5FE0\n0xD6D3\t0x949F\n0xD6D4\t0x8877\n0xD6D5\t0x7EC8\n0xD6D6\t0x79CD\n0xD6D7\t0x80BF\n0xD6D8\t0x91CD\n0xD6D9\t0x4EF2\n0xD6DA\t0x4F17\n0xD6DB\t0x821F\n0xD6DC\t0x5468\n0xD6DD\t0x5DDE\n0xD6DE\t0x6D32\n0xD6DF\t0x8BCC\n0xD6E0\t0x7CA5\n0xD6E1\t0x8F74\n0xD6E2\t0x8098\n0xD6E3\t0x5E1A\n0xD6E4\t0x5492\n0xD6E5\t0x76B1\n0xD6E6\t0x5B99\n0xD6E7\t0x663C\n0xD6E8\t0x9AA4\n0xD6E9\t0x73E0\n0xD6EA\t0x682A\n0xD6EB\t0x86DB\n0xD6EC\t0x6731\n0xD6ED\t0x732A\n0xD6EE\t0x8BF8\n0xD6EF\t0x8BDB\n0xD6F0\t0x9010\n0xD6F1\t0x7AF9\n0xD6F2\t0x70DB\n0xD6F3\t0x716E\n0xD6F4\t0x62C4\n0xD6F5\t0x77A9\n0xD6F6\t0x5631\n0xD6F7\t0x4E3B\n0xD6F8\t0x8457\n0xD6F9\t0x67F1\n0xD6FA\t0x52A9\n0xD6FB\t0x86C0\n0xD6FC\t0x8D2E\n0xD6FD\t0x94F8\n0xD6FE\t0x7B51\n0xD740\t0x8B46\n0xD741\t0x8B47\n0xD742\t0x8B48\n0xD743\t0x8B49\n0xD744\t0x8B4A\n0xD745\t0x8B4B\n0xD746\t0x8B4C\n0xD747\t0x8B4D\n0xD748\t0x8B4E\n0xD749\t0x8B4F\n0xD74A\t0x8B50\n0xD74B\t0x8B51\n0xD74C\t0x8B52\n0xD74D\t0x8B53\n0xD74E\t0x8B54\n0xD74F\t0x8B55\n0xD750\t0x8B56\n0xD751\t0x8B57\n0xD752\t0x8B58\n0xD753\t0x8B59\n0xD754\t0x8B5A\n0xD755\t0x8B5B\n0xD756\t0x8B5C\n0xD757\t0x8B5D\n0xD758\t0x8B5E\n0xD759\t0x8B5F\n0xD75A\t0x8B60\n0xD75B\t0x8B61\n0xD75C\t0x8B62\n0xD75D\t0x8B63\n0xD75E\t0x8B64\n0xD75F\t0x8B65\n0xD760\t0x8B67\n0xD761\t0x8B68\n0xD762\t0x8B69\n0xD763\t0x8B6A\n0xD764\t0x8B6B\n0xD765\t0x8B6D\n0xD766\t0x8B6E\n0xD767\t0x8B6F\n0xD768\t0x8B70\n0xD769\t0x8B71\n0xD76A\t0x8B72\n0xD76B\t0x8B73\n0xD76C\t0x8B74\n0xD76D\t0x8B75\n0xD76E\t0x8B76\n0xD76F\t0x8B77\n0xD770\t0x8B78\n0xD771\t0x8B79\n0xD772\t0x8B7A\n0xD773\t0x8B7B\n0xD774\t0x8B7C\n0xD775\t0x8B7D\n0xD776\t0x8B7E\n0xD777\t0x8B7F\n0xD778\t0x8B80\n0xD779\t0x8B81\n0xD77A\t0x8B82\n0xD77B\t0x8B83\n0xD77C\t0x8B84\n0xD77D\t0x8B85\n0xD77E\t0x8B86\n0xD780\t0x8B87\n0xD781\t0x8B88\n0xD782\t0x8B89\n0xD783\t0x8B8A\n0xD784\t0x8B8B\n0xD785\t0x8B8C\n0xD786\t0x8B8D\n0xD787\t0x8B8E\n0xD788\t0x8B8F\n0xD789\t0x8B90\n0xD78A\t0x8B91\n0xD78B\t0x8B92\n0xD78C\t0x8B93\n0xD78D\t0x8B94\n0xD78E\t0x8B95\n0xD78F\t0x8B96\n0xD790\t0x8B97\n0xD791\t0x8B98\n0xD792\t0x8B99\n0xD793\t0x8B9A\n0xD794\t0x8B9B\n0xD795\t0x8B9C\n0xD796\t0x8B9D\n0xD797\t0x8B9E\n0xD798\t0x8B9F\n0xD799\t0x8BAC\n0xD79A\t0x8BB1\n0xD79B\t0x8BBB\n0xD79C\t0x8BC7\n0xD79D\t0x8BD0\n0xD79E\t0x8BEA\n0xD79F\t0x8C09\n0xD7A0\t0x8C1E\n0xD7A1\t0x4F4F\n0xD7A2\t0x6CE8\n0xD7A3\t0x795D\n0xD7A4\t0x9A7B\n0xD7A5\t0x6293\n0xD7A6\t0x722A\n0xD7A7\t0x62FD\n0xD7A8\t0x4E13\n0xD7A9\t0x7816\n0xD7AA\t0x8F6C\n0xD7AB\t0x64B0\n0xD7AC\t0x8D5A\n0xD7AD\t0x7BC6\n0xD7AE\t0x6869\n0xD7AF\t0x5E84\n0xD7B0\t0x88C5\n0xD7B1\t0x5986\n0xD7B2\t0x649E\n0xD7B3\t0x58EE\n0xD7B4\t0x72B6\n0xD7B5\t0x690E\n0xD7B6\t0x9525\n0xD7B7\t0x8FFD\n0xD7B8\t0x8D58\n0xD7B9\t0x5760\n0xD7BA\t0x7F00\n0xD7BB\t0x8C06\n0xD7BC\t0x51C6\n0xD7BD\t0x6349\n0xD7BE\t0x62D9\n0xD7BF\t0x5353\n0xD7C0\t0x684C\n0xD7C1\t0x7422\n0xD7C2\t0x8301\n0xD7C3\t0x914C\n0xD7C4\t0x5544\n0xD7C5\t0x7740\n0xD7C6\t0x707C\n0xD7C7\t0x6D4A\n0xD7C8\t0x5179\n0xD7C9\t0x54A8\n0xD7CA\t0x8D44\n0xD7CB\t0x59FF\n0xD7CC\t0x6ECB\n0xD7CD\t0x6DC4\n0xD7CE\t0x5B5C\n0xD7CF\t0x7D2B\n0xD7D0\t0x4ED4\n0xD7D1\t0x7C7D\n0xD7D2\t0x6ED3\n0xD7D3\t0x5B50\n0xD7D4\t0x81EA\n0xD7D5\t0x6E0D\n0xD7D6\t0x5B57\n0xD7D7\t0x9B03\n0xD7D8\t0x68D5\n0xD7D9\t0x8E2A\n0xD7DA\t0x5B97\n0xD7DB\t0x7EFC\n0xD7DC\t0x603B\n0xD7DD\t0x7EB5\n0xD7DE\t0x90B9\n0xD7DF\t0x8D70\n0xD7E0\t0x594F\n0xD7E1\t0x63CD\n0xD7E2\t0x79DF\n0xD7E3\t0x8DB3\n0xD7E4\t0x5352\n0xD7E5\t0x65CF\n0xD7E6\t0x7956\n0xD7E7\t0x8BC5\n0xD7E8\t0x963B\n0xD7E9\t0x7EC4\n0xD7EA\t0x94BB\n0xD7EB\t0x7E82\n0xD7EC\t0x5634\n0xD7ED\t0x9189\n0xD7EE\t0x6700\n0xD7EF\t0x7F6A\n0xD7F0\t0x5C0A\n0xD7F1\t0x9075\n0xD7F2\t0x6628\n0xD7F3\t0x5DE6\n0xD7F4\t0x4F50\n0xD7F5\t0x67DE\n0xD7F6\t0x505A\n0xD7F7\t0x4F5C\n0xD7F8\t0x5750\n0xD7F9\t0x5EA7\n0xD840\t0x8C38\n0xD841\t0x8C39\n0xD842\t0x8C3A\n0xD843\t0x8C3B\n0xD844\t0x8C3C\n0xD845\t0x8C3D\n0xD846\t0x8C3E\n0xD847\t0x8C3F\n0xD848\t0x8C40\n0xD849\t0x8C42\n0xD84A\t0x8C43\n0xD84B\t0x8C44\n0xD84C\t0x8C45\n0xD84D\t0x8C48\n0xD84E\t0x8C4A\n0xD84F\t0x8C4B\n0xD850\t0x8C4D\n0xD851\t0x8C4E\n0xD852\t0x8C4F\n0xD853\t0x8C50\n0xD854\t0x8C51\n0xD855\t0x8C52\n0xD856\t0x8C53\n0xD857\t0x8C54\n0xD858\t0x8C56\n0xD859\t0x8C57\n0xD85A\t0x8C58\n0xD85B\t0x8C59\n0xD85C\t0x8C5B\n0xD85D\t0x8C5C\n0xD85E\t0x8C5D\n0xD85F\t0x8C5E\n0xD860\t0x8C5F\n0xD861\t0x8C60\n0xD862\t0x8C63\n0xD863\t0x8C64\n0xD864\t0x8C65\n0xD865\t0x8C66\n0xD866\t0x8C67\n0xD867\t0x8C68\n0xD868\t0x8C69\n0xD869\t0x8C6C\n0xD86A\t0x8C6D\n0xD86B\t0x8C6E\n0xD86C\t0x8C6F\n0xD86D\t0x8C70\n0xD86E\t0x8C71\n0xD86F\t0x8C72\n0xD870\t0x8C74\n0xD871\t0x8C75\n0xD872\t0x8C76\n0xD873\t0x8C77\n0xD874\t0x8C7B\n0xD875\t0x8C7C\n0xD876\t0x8C7D\n0xD877\t0x8C7E\n0xD878\t0x8C7F\n0xD879\t0x8C80\n0xD87A\t0x8C81\n0xD87B\t0x8C83\n0xD87C\t0x8C84\n0xD87D\t0x8C86\n0xD87E\t0x8C87\n0xD880\t0x8C88\n0xD881\t0x8C8B\n0xD882\t0x8C8D\n0xD883\t0x8C8E\n0xD884\t0x8C8F\n0xD885\t0x8C90\n0xD886\t0x8C91\n0xD887\t0x8C92\n0xD888\t0x8C93\n0xD889\t0x8C95\n0xD88A\t0x8C96\n0xD88B\t0x8C97\n0xD88C\t0x8C99\n0xD88D\t0x8C9A\n0xD88E\t0x8C9B\n0xD88F\t0x8C9C\n0xD890\t0x8C9D\n0xD891\t0x8C9E\n0xD892\t0x8C9F\n0xD893\t0x8CA0\n0xD894\t0x8CA1\n0xD895\t0x8CA2\n0xD896\t0x8CA3\n0xD897\t0x8CA4\n0xD898\t0x8CA5\n0xD899\t0x8CA6\n0xD89A\t0x8CA7\n0xD89B\t0x8CA8\n0xD89C\t0x8CA9\n0xD89D\t0x8CAA\n0xD89E\t0x8CAB\n0xD89F\t0x8CAC\n0xD8A0\t0x8CAD\n0xD8A1\t0x4E8D\n0xD8A2\t0x4E0C\n0xD8A3\t0x5140\n0xD8A4\t0x4E10\n0xD8A5\t0x5EFF\n0xD8A6\t0x5345\n0xD8A7\t0x4E15\n0xD8A8\t0x4E98\n0xD8A9\t0x4E1E\n0xD8AA\t0x9B32\n0xD8AB\t0x5B6C\n0xD8AC\t0x5669\n0xD8AD\t0x4E28\n0xD8AE\t0x79BA\n0xD8AF\t0x4E3F\n0xD8B0\t0x5315\n0xD8B1\t0x4E47\n0xD8B2\t0x592D\n0xD8B3\t0x723B\n0xD8B4\t0x536E\n0xD8B5\t0x6C10\n0xD8B6\t0x56DF\n0xD8B7\t0x80E4\n0xD8B8\t0x9997\n0xD8B9\t0x6BD3\n0xD8BA\t0x777E\n0xD8BB\t0x9F17\n0xD8BC\t0x4E36\n0xD8BD\t0x4E9F\n0xD8BE\t0x9F10\n0xD8BF\t0x4E5C\n0xD8C0\t0x4E69\n0xD8C1\t0x4E93\n0xD8C2\t0x8288\n0xD8C3\t0x5B5B\n0xD8C4\t0x556C\n0xD8C5\t0x560F\n0xD8C6\t0x4EC4\n0xD8C7\t0x538D\n0xD8C8\t0x539D\n0xD8C9\t0x53A3\n0xD8CA\t0x53A5\n0xD8CB\t0x53AE\n0xD8CC\t0x9765\n0xD8CD\t0x8D5D\n0xD8CE\t0x531A\n0xD8CF\t0x53F5\n0xD8D0\t0x5326\n0xD8D1\t0x532E\n0xD8D2\t0x533E\n0xD8D3\t0x8D5C\n0xD8D4\t0x5366\n0xD8D5\t0x5363\n0xD8D6\t0x5202\n0xD8D7\t0x5208\n0xD8D8\t0x520E\n0xD8D9\t0x522D\n0xD8DA\t0x5233\n0xD8DB\t0x523F\n0xD8DC\t0x5240\n0xD8DD\t0x524C\n0xD8DE\t0x525E\n0xD8DF\t0x5261\n0xD8E0\t0x525C\n0xD8E1\t0x84AF\n0xD8E2\t0x527D\n0xD8E3\t0x5282\n0xD8E4\t0x5281\n0xD8E5\t0x5290\n0xD8E6\t0x5293\n0xD8E7\t0x5182\n0xD8E8\t0x7F54\n0xD8E9\t0x4EBB\n0xD8EA\t0x4EC3\n0xD8EB\t0x4EC9\n0xD8EC\t0x4EC2\n0xD8ED\t0x4EE8\n0xD8EE\t0x4EE1\n0xD8EF\t0x4EEB\n0xD8F0\t0x4EDE\n0xD8F1\t0x4F1B\n0xD8F2\t0x4EF3\n0xD8F3\t0x4F22\n0xD8F4\t0x4F64\n0xD8F5\t0x4EF5\n0xD8F6\t0x4F25\n0xD8F7\t0x4F27\n0xD8F8\t0x4F09\n0xD8F9\t0x4F2B\n0xD8FA\t0x4F5E\n0xD8FB\t0x4F67\n0xD8FC\t0x6538\n0xD8FD\t0x4F5A\n0xD8FE\t0x4F5D\n0xD940\t0x8CAE\n0xD941\t0x8CAF\n0xD942\t0x8CB0\n0xD943\t0x8CB1\n0xD944\t0x8CB2\n0xD945\t0x8CB3\n0xD946\t0x8CB4\n0xD947\t0x8CB5\n0xD948\t0x8CB6\n0xD949\t0x8CB7\n0xD94A\t0x8CB8\n0xD94B\t0x8CB9\n0xD94C\t0x8CBA\n0xD94D\t0x8CBB\n0xD94E\t0x8CBC\n0xD94F\t0x8CBD\n0xD950\t0x8CBE\n0xD951\t0x8CBF\n0xD952\t0x8CC0\n0xD953\t0x8CC1\n0xD954\t0x8CC2\n0xD955\t0x8CC3\n0xD956\t0x8CC4\n0xD957\t0x8CC5\n0xD958\t0x8CC6\n0xD959\t0x8CC7\n0xD95A\t0x8CC8\n0xD95B\t0x8CC9\n0xD95C\t0x8CCA\n0xD95D\t0x8CCB\n0xD95E\t0x8CCC\n0xD95F\t0x8CCD\n0xD960\t0x8CCE\n0xD961\t0x8CCF\n0xD962\t0x8CD0\n0xD963\t0x8CD1\n0xD964\t0x8CD2\n0xD965\t0x8CD3\n0xD966\t0x8CD4\n0xD967\t0x8CD5\n0xD968\t0x8CD6\n0xD969\t0x8CD7\n0xD96A\t0x8CD8\n0xD96B\t0x8CD9\n0xD96C\t0x8CDA\n0xD96D\t0x8CDB\n0xD96E\t0x8CDC\n0xD96F\t0x8CDD\n0xD970\t0x8CDE\n0xD971\t0x8CDF\n0xD972\t0x8CE0\n0xD973\t0x8CE1\n0xD974\t0x8CE2\n0xD975\t0x8CE3\n0xD976\t0x8CE4\n0xD977\t0x8CE5\n0xD978\t0x8CE6\n0xD979\t0x8CE7\n0xD97A\t0x8CE8\n0xD97B\t0x8CE9\n0xD97C\t0x8CEA\n0xD97D\t0x8CEB\n0xD97E\t0x8CEC\n0xD980\t0x8CED\n0xD981\t0x8CEE\n0xD982\t0x8CEF\n0xD983\t0x8CF0\n0xD984\t0x8CF1\n0xD985\t0x8CF2\n0xD986\t0x8CF3\n0xD987\t0x8CF4\n0xD988\t0x8CF5\n0xD989\t0x8CF6\n0xD98A\t0x8CF7\n0xD98B\t0x8CF8\n0xD98C\t0x8CF9\n0xD98D\t0x8CFA\n0xD98E\t0x8CFB\n0xD98F\t0x8CFC\n0xD990\t0x8CFD\n0xD991\t0x8CFE\n0xD992\t0x8CFF\n0xD993\t0x8D00\n0xD994\t0x8D01\n0xD995\t0x8D02\n0xD996\t0x8D03\n0xD997\t0x8D04\n0xD998\t0x8D05\n0xD999\t0x8D06\n0xD99A\t0x8D07\n0xD99B\t0x8D08\n0xD99C\t0x8D09\n0xD99D\t0x8D0A\n0xD99E\t0x8D0B\n0xD99F\t0x8D0C\n0xD9A0\t0x8D0D\n0xD9A1\t0x4F5F\n0xD9A2\t0x4F57\n0xD9A3\t0x4F32\n0xD9A4\t0x4F3D\n0xD9A5\t0x4F76\n0xD9A6\t0x4F74\n0xD9A7\t0x4F91\n0xD9A8\t0x4F89\n0xD9A9\t0x4F83\n0xD9AA\t0x4F8F\n0xD9AB\t0x4F7E\n0xD9AC\t0x4F7B\n0xD9AD\t0x4FAA\n0xD9AE\t0x4F7C\n0xD9AF\t0x4FAC\n0xD9B0\t0x4F94\n0xD9B1\t0x4FE6\n0xD9B2\t0x4FE8\n0xD9B3\t0x4FEA\n0xD9B4\t0x4FC5\n0xD9B5\t0x4FDA\n0xD9B6\t0x4FE3\n0xD9B7\t0x4FDC\n0xD9B8\t0x4FD1\n0xD9B9\t0x4FDF\n0xD9BA\t0x4FF8\n0xD9BB\t0x5029\n0xD9BC\t0x504C\n0xD9BD\t0x4FF3\n0xD9BE\t0x502C\n0xD9BF\t0x500F\n0xD9C0\t0x502E\n0xD9C1\t0x502D\n0xD9C2\t0x4FFE\n0xD9C3\t0x501C\n0xD9C4\t0x500C\n0xD9C5\t0x5025\n0xD9C6\t0x5028\n0xD9C7\t0x507E\n0xD9C8\t0x5043\n0xD9C9\t0x5055\n0xD9CA\t0x5048\n0xD9CB\t0x504E\n0xD9CC\t0x506C\n0xD9CD\t0x507B\n0xD9CE\t0x50A5\n0xD9CF\t0x50A7\n0xD9D0\t0x50A9\n0xD9D1\t0x50BA\n0xD9D2\t0x50D6\n0xD9D3\t0x5106\n0xD9D4\t0x50ED\n0xD9D5\t0x50EC\n0xD9D6\t0x50E6\n0xD9D7\t0x50EE\n0xD9D8\t0x5107\n0xD9D9\t0x510B\n0xD9DA\t0x4EDD\n0xD9DB\t0x6C3D\n0xD9DC\t0x4F58\n0xD9DD\t0x4F65\n0xD9DE\t0x4FCE\n0xD9DF\t0x9FA0\n0xD9E0\t0x6C46\n0xD9E1\t0x7C74\n0xD9E2\t0x516E\n0xD9E3\t0x5DFD\n0xD9E4\t0x9EC9\n0xD9E5\t0x9998\n0xD9E6\t0x5181\n0xD9E7\t0x5914\n0xD9E8\t0x52F9\n0xD9E9\t0x530D\n0xD9EA\t0x8A07\n0xD9EB\t0x5310\n0xD9EC\t0x51EB\n0xD9ED\t0x5919\n0xD9EE\t0x5155\n0xD9EF\t0x4EA0\n0xD9F0\t0x5156\n0xD9F1\t0x4EB3\n0xD9F2\t0x886E\n0xD9F3\t0x88A4\n0xD9F4\t0x4EB5\n0xD9F5\t0x8114\n0xD9F6\t0x88D2\n0xD9F7\t0x7980\n0xD9F8\t0x5B34\n0xD9F9\t0x8803\n0xD9FA\t0x7FB8\n0xD9FB\t0x51AB\n0xD9FC\t0x51B1\n0xD9FD\t0x51BD\n0xD9FE\t0x51BC\n0xDA40\t0x8D0E\n0xDA41\t0x8D0F\n0xDA42\t0x8D10\n0xDA43\t0x8D11\n0xDA44\t0x8D12\n0xDA45\t0x8D13\n0xDA46\t0x8D14\n0xDA47\t0x8D15\n0xDA48\t0x8D16\n0xDA49\t0x8D17\n0xDA4A\t0x8D18\n0xDA4B\t0x8D19\n0xDA4C\t0x8D1A\n0xDA4D\t0x8D1B\n0xDA4E\t0x8D1C\n0xDA4F\t0x8D20\n0xDA50\t0x8D51\n0xDA51\t0x8D52\n0xDA52\t0x8D57\n0xDA53\t0x8D5F\n0xDA54\t0x8D65\n0xDA55\t0x8D68\n0xDA56\t0x8D69\n0xDA57\t0x8D6A\n0xDA58\t0x8D6C\n0xDA59\t0x8D6E\n0xDA5A\t0x8D6F\n0xDA5B\t0x8D71\n0xDA5C\t0x8D72\n0xDA5D\t0x8D78\n0xDA5E\t0x8D79\n0xDA5F\t0x8D7A\n0xDA60\t0x8D7B\n0xDA61\t0x8D7C\n0xDA62\t0x8D7D\n0xDA63\t0x8D7E\n0xDA64\t0x8D7F\n0xDA65\t0x8D80\n0xDA66\t0x8D82\n0xDA67\t0x8D83\n0xDA68\t0x8D86\n0xDA69\t0x8D87\n0xDA6A\t0x8D88\n0xDA6B\t0x8D89\n0xDA6C\t0x8D8C\n0xDA6D\t0x8D8D\n0xDA6E\t0x8D8E\n0xDA6F\t0x8D8F\n0xDA70\t0x8D90\n0xDA71\t0x8D92\n0xDA72\t0x8D93\n0xDA73\t0x8D95\n0xDA74\t0x8D96\n0xDA75\t0x8D97\n0xDA76\t0x8D98\n0xDA77\t0x8D99\n0xDA78\t0x8D9A\n0xDA79\t0x8D9B\n0xDA7A\t0x8D9C\n0xDA7B\t0x8D9D\n0xDA7C\t0x8D9E\n0xDA7D\t0x8DA0\n0xDA7E\t0x8DA1\n0xDA80\t0x8DA2\n0xDA81\t0x8DA4\n0xDA82\t0x8DA5\n0xDA83\t0x8DA6\n0xDA84\t0x8DA7\n0xDA85\t0x8DA8\n0xDA86\t0x8DA9\n0xDA87\t0x8DAA\n0xDA88\t0x8DAB\n0xDA89\t0x8DAC\n0xDA8A\t0x8DAD\n0xDA8B\t0x8DAE\n0xDA8C\t0x8DAF\n0xDA8D\t0x8DB0\n0xDA8E\t0x8DB2\n0xDA8F\t0x8DB6\n0xDA90\t0x8DB7\n0xDA91\t0x8DB9\n0xDA92\t0x8DBB\n0xDA93\t0x8DBD\n0xDA94\t0x8DC0\n0xDA95\t0x8DC1\n0xDA96\t0x8DC2\n0xDA97\t0x8DC5\n0xDA98\t0x8DC7\n0xDA99\t0x8DC8\n0xDA9A\t0x8DC9\n0xDA9B\t0x8DCA\n0xDA9C\t0x8DCD\n0xDA9D\t0x8DD0\n0xDA9E\t0x8DD2\n0xDA9F\t0x8DD3\n0xDAA0\t0x8DD4\n0xDAA1\t0x51C7\n0xDAA2\t0x5196\n0xDAA3\t0x51A2\n0xDAA4\t0x51A5\n0xDAA5\t0x8BA0\n0xDAA6\t0x8BA6\n0xDAA7\t0x8BA7\n0xDAA8\t0x8BAA\n0xDAA9\t0x8BB4\n0xDAAA\t0x8BB5\n0xDAAB\t0x8BB7\n0xDAAC\t0x8BC2\n0xDAAD\t0x8BC3\n0xDAAE\t0x8BCB\n0xDAAF\t0x8BCF\n0xDAB0\t0x8BCE\n0xDAB1\t0x8BD2\n0xDAB2\t0x8BD3\n0xDAB3\t0x8BD4\n0xDAB4\t0x8BD6\n0xDAB5\t0x8BD8\n0xDAB6\t0x8BD9\n0xDAB7\t0x8BDC\n0xDAB8\t0x8BDF\n0xDAB9\t0x8BE0\n0xDABA\t0x8BE4\n0xDABB\t0x8BE8\n0xDABC\t0x8BE9\n0xDABD\t0x8BEE\n0xDABE\t0x8BF0\n0xDABF\t0x8BF3\n0xDAC0\t0x8BF6\n0xDAC1\t0x8BF9\n0xDAC2\t0x8BFC\n0xDAC3\t0x8BFF\n0xDAC4\t0x8C00\n0xDAC5\t0x8C02\n0xDAC6\t0x8C04\n0xDAC7\t0x8C07\n0xDAC8\t0x8C0C\n0xDAC9\t0x8C0F\n0xDACA\t0x8C11\n0xDACB\t0x8C12\n0xDACC\t0x8C14\n0xDACD\t0x8C15\n0xDACE\t0x8C16\n0xDACF\t0x8C19\n0xDAD0\t0x8C1B\n0xDAD1\t0x8C18\n0xDAD2\t0x8C1D\n0xDAD3\t0x8C1F\n0xDAD4\t0x8C20\n0xDAD5\t0x8C21\n0xDAD6\t0x8C25\n0xDAD7\t0x8C27\n0xDAD8\t0x8C2A\n0xDAD9\t0x8C2B\n0xDADA\t0x8C2E\n0xDADB\t0x8C2F\n0xDADC\t0x8C32\n0xDADD\t0x8C33\n0xDADE\t0x8C35\n0xDADF\t0x8C36\n0xDAE0\t0x5369\n0xDAE1\t0x537A\n0xDAE2\t0x961D\n0xDAE3\t0x9622\n0xDAE4\t0x9621\n0xDAE5\t0x9631\n0xDAE6\t0x962A\n0xDAE7\t0x963D\n0xDAE8\t0x963C\n0xDAE9\t0x9642\n0xDAEA\t0x9649\n0xDAEB\t0x9654\n0xDAEC\t0x965F\n0xDAED\t0x9667\n0xDAEE\t0x966C\n0xDAEF\t0x9672\n0xDAF0\t0x9674\n0xDAF1\t0x9688\n0xDAF2\t0x968D\n0xDAF3\t0x9697\n0xDAF4\t0x96B0\n0xDAF5\t0x9097\n0xDAF6\t0x909B\n0xDAF7\t0x909D\n0xDAF8\t0x9099\n0xDAF9\t0x90AC\n0xDAFA\t0x90A1\n0xDAFB\t0x90B4\n0xDAFC\t0x90B3\n0xDAFD\t0x90B6\n0xDAFE\t0x90BA\n0xDB40\t0x8DD5\n0xDB41\t0x8DD8\n0xDB42\t0x8DD9\n0xDB43\t0x8DDC\n0xDB44\t0x8DE0\n0xDB45\t0x8DE1\n0xDB46\t0x8DE2\n0xDB47\t0x8DE5\n0xDB48\t0x8DE6\n0xDB49\t0x8DE7\n0xDB4A\t0x8DE9\n0xDB4B\t0x8DED\n0xDB4C\t0x8DEE\n0xDB4D\t0x8DF0\n0xDB4E\t0x8DF1\n0xDB4F\t0x8DF2\n0xDB50\t0x8DF4\n0xDB51\t0x8DF6\n0xDB52\t0x8DFC\n0xDB53\t0x8DFE\n0xDB54\t0x8DFF\n0xDB55\t0x8E00\n0xDB56\t0x8E01\n0xDB57\t0x8E02\n0xDB58\t0x8E03\n0xDB59\t0x8E04\n0xDB5A\t0x8E06\n0xDB5B\t0x8E07\n0xDB5C\t0x8E08\n0xDB5D\t0x8E0B\n0xDB5E\t0x8E0D\n0xDB5F\t0x8E0E\n0xDB60\t0x8E10\n0xDB61\t0x8E11\n0xDB62\t0x8E12\n0xDB63\t0x8E13\n0xDB64\t0x8E15\n0xDB65\t0x8E16\n0xDB66\t0x8E17\n0xDB67\t0x8E18\n0xDB68\t0x8E19\n0xDB69\t0x8E1A\n0xDB6A\t0x8E1B\n0xDB6B\t0x8E1C\n0xDB6C\t0x8E20\n0xDB6D\t0x8E21\n0xDB6E\t0x8E24\n0xDB6F\t0x8E25\n0xDB70\t0x8E26\n0xDB71\t0x8E27\n0xDB72\t0x8E28\n0xDB73\t0x8E2B\n0xDB74\t0x8E2D\n0xDB75\t0x8E30\n0xDB76\t0x8E32\n0xDB77\t0x8E33\n0xDB78\t0x8E34\n0xDB79\t0x8E36\n0xDB7A\t0x8E37\n0xDB7B\t0x8E38\n0xDB7C\t0x8E3B\n0xDB7D\t0x8E3C\n0xDB7E\t0x8E3E\n0xDB80\t0x8E3F\n0xDB81\t0x8E43\n0xDB82\t0x8E45\n0xDB83\t0x8E46\n0xDB84\t0x8E4C\n0xDB85\t0x8E4D\n0xDB86\t0x8E4E\n0xDB87\t0x8E4F\n0xDB88\t0x8E50\n0xDB89\t0x8E53\n0xDB8A\t0x8E54\n0xDB8B\t0x8E55\n0xDB8C\t0x8E56\n0xDB8D\t0x8E57\n0xDB8E\t0x8E58\n0xDB8F\t0x8E5A\n0xDB90\t0x8E5B\n0xDB91\t0x8E5C\n0xDB92\t0x8E5D\n0xDB93\t0x8E5E\n0xDB94\t0x8E5F\n0xDB95\t0x8E60\n0xDB96\t0x8E61\n0xDB97\t0x8E62\n0xDB98\t0x8E63\n0xDB99\t0x8E64\n0xDB9A\t0x8E65\n0xDB9B\t0x8E67\n0xDB9C\t0x8E68\n0xDB9D\t0x8E6A\n0xDB9E\t0x8E6B\n0xDB9F\t0x8E6E\n0xDBA0\t0x8E71\n0xDBA1\t0x90B8\n0xDBA2\t0x90B0\n0xDBA3\t0x90CF\n0xDBA4\t0x90C5\n0xDBA5\t0x90BE\n0xDBA6\t0x90D0\n0xDBA7\t0x90C4\n0xDBA8\t0x90C7\n0xDBA9\t0x90D3\n0xDBAA\t0x90E6\n0xDBAB\t0x90E2\n0xDBAC\t0x90DC\n0xDBAD\t0x90D7\n0xDBAE\t0x90DB\n0xDBAF\t0x90EB\n0xDBB0\t0x90EF\n0xDBB1\t0x90FE\n0xDBB2\t0x9104\n0xDBB3\t0x9122\n0xDBB4\t0x911E\n0xDBB5\t0x9123\n0xDBB6\t0x9131\n0xDBB7\t0x912F\n0xDBB8\t0x9139\n0xDBB9\t0x9143\n0xDBBA\t0x9146\n0xDBBB\t0x520D\n0xDBBC\t0x5942\n0xDBBD\t0x52A2\n0xDBBE\t0x52AC\n0xDBBF\t0x52AD\n0xDBC0\t0x52BE\n0xDBC1\t0x54FF\n0xDBC2\t0x52D0\n0xDBC3\t0x52D6\n0xDBC4\t0x52F0\n0xDBC5\t0x53DF\n0xDBC6\t0x71EE\n0xDBC7\t0x77CD\n0xDBC8\t0x5EF4\n0xDBC9\t0x51F5\n0xDBCA\t0x51FC\n0xDBCB\t0x9B2F\n0xDBCC\t0x53B6\n0xDBCD\t0x5F01\n0xDBCE\t0x755A\n0xDBCF\t0x5DEF\n0xDBD0\t0x574C\n0xDBD1\t0x57A9\n0xDBD2\t0x57A1\n0xDBD3\t0x587E\n0xDBD4\t0x58BC\n0xDBD5\t0x58C5\n0xDBD6\t0x58D1\n0xDBD7\t0x5729\n0xDBD8\t0x572C\n0xDBD9\t0x572A\n0xDBDA\t0x5733\n0xDBDB\t0x5739\n0xDBDC\t0x572E\n0xDBDD\t0x572F\n0xDBDE\t0x575C\n0xDBDF\t0x573B\n0xDBE0\t0x5742\n0xDBE1\t0x5769\n0xDBE2\t0x5785\n0xDBE3\t0x576B\n0xDBE4\t0x5786\n0xDBE5\t0x577C\n0xDBE6\t0x577B\n0xDBE7\t0x5768\n0xDBE8\t0x576D\n0xDBE9\t0x5776\n0xDBEA\t0x5773\n0xDBEB\t0x57AD\n0xDBEC\t0x57A4\n0xDBED\t0x578C\n0xDBEE\t0x57B2\n0xDBEF\t0x57CF\n0xDBF0\t0x57A7\n0xDBF1\t0x57B4\n0xDBF2\t0x5793\n0xDBF3\t0x57A0\n0xDBF4\t0x57D5\n0xDBF5\t0x57D8\n0xDBF6\t0x57DA\n0xDBF7\t0x57D9\n0xDBF8\t0x57D2\n0xDBF9\t0x57B8\n0xDBFA\t0x57F4\n0xDBFB\t0x57EF\n0xDBFC\t0x57F8\n0xDBFD\t0x57E4\n0xDBFE\t0x57DD\n0xDC40\t0x8E73\n0xDC41\t0x8E75\n0xDC42\t0x8E77\n0xDC43\t0x8E78\n0xDC44\t0x8E79\n0xDC45\t0x8E7A\n0xDC46\t0x8E7B\n0xDC47\t0x8E7D\n0xDC48\t0x8E7E\n0xDC49\t0x8E80\n0xDC4A\t0x8E82\n0xDC4B\t0x8E83\n0xDC4C\t0x8E84\n0xDC4D\t0x8E86\n0xDC4E\t0x8E88\n0xDC4F\t0x8E89\n0xDC50\t0x8E8A\n0xDC51\t0x8E8B\n0xDC52\t0x8E8C\n0xDC53\t0x8E8D\n0xDC54\t0x8E8E\n0xDC55\t0x8E91\n0xDC56\t0x8E92\n0xDC57\t0x8E93\n0xDC58\t0x8E95\n0xDC59\t0x8E96\n0xDC5A\t0x8E97\n0xDC5B\t0x8E98\n0xDC5C\t0x8E99\n0xDC5D\t0x8E9A\n0xDC5E\t0x8E9B\n0xDC5F\t0x8E9D\n0xDC60\t0x8E9F\n0xDC61\t0x8EA0\n0xDC62\t0x8EA1\n0xDC63\t0x8EA2\n0xDC64\t0x8EA3\n0xDC65\t0x8EA4\n0xDC66\t0x8EA5\n0xDC67\t0x8EA6\n0xDC68\t0x8EA7\n0xDC69\t0x8EA8\n0xDC6A\t0x8EA9\n0xDC6B\t0x8EAA\n0xDC6C\t0x8EAD\n0xDC6D\t0x8EAE\n0xDC6E\t0x8EB0\n0xDC6F\t0x8EB1\n0xDC70\t0x8EB3\n0xDC71\t0x8EB4\n0xDC72\t0x8EB5\n0xDC73\t0x8EB6\n0xDC74\t0x8EB7\n0xDC75\t0x8EB8\n0xDC76\t0x8EB9\n0xDC77\t0x8EBB\n0xDC78\t0x8EBC\n0xDC79\t0x8EBD\n0xDC7A\t0x8EBE\n0xDC7B\t0x8EBF\n0xDC7C\t0x8EC0\n0xDC7D\t0x8EC1\n0xDC7E\t0x8EC2\n0xDC80\t0x8EC3\n0xDC81\t0x8EC4\n0xDC82\t0x8EC5\n0xDC83\t0x8EC6\n0xDC84\t0x8EC7\n0xDC85\t0x8EC8\n0xDC86\t0x8EC9\n0xDC87\t0x8ECA\n0xDC88\t0x8ECB\n0xDC89\t0x8ECC\n0xDC8A\t0x8ECD\n0xDC8B\t0x8ECF\n0xDC8C\t0x8ED0\n0xDC8D\t0x8ED1\n0xDC8E\t0x8ED2\n0xDC8F\t0x8ED3\n0xDC90\t0x8ED4\n0xDC91\t0x8ED5\n0xDC92\t0x8ED6\n0xDC93\t0x8ED7\n0xDC94\t0x8ED8\n0xDC95\t0x8ED9\n0xDC96\t0x8EDA\n0xDC97\t0x8EDB\n0xDC98\t0x8EDC\n0xDC99\t0x8EDD\n0xDC9A\t0x8EDE\n0xDC9B\t0x8EDF\n0xDC9C\t0x8EE0\n0xDC9D\t0x8EE1\n0xDC9E\t0x8EE2\n0xDC9F\t0x8EE3\n0xDCA0\t0x8EE4\n0xDCA1\t0x580B\n0xDCA2\t0x580D\n0xDCA3\t0x57FD\n0xDCA4\t0x57ED\n0xDCA5\t0x5800\n0xDCA6\t0x581E\n0xDCA7\t0x5819\n0xDCA8\t0x5844\n0xDCA9\t0x5820\n0xDCAA\t0x5865\n0xDCAB\t0x586C\n0xDCAC\t0x5881\n0xDCAD\t0x5889\n0xDCAE\t0x589A\n0xDCAF\t0x5880\n0xDCB0\t0x99A8\n0xDCB1\t0x9F19\n0xDCB2\t0x61FF\n0xDCB3\t0x8279\n0xDCB4\t0x827D\n0xDCB5\t0x827F\n0xDCB6\t0x828F\n0xDCB7\t0x828A\n0xDCB8\t0x82A8\n0xDCB9\t0x8284\n0xDCBA\t0x828E\n0xDCBB\t0x8291\n0xDCBC\t0x8297\n0xDCBD\t0x8299\n0xDCBE\t0x82AB\n0xDCBF\t0x82B8\n0xDCC0\t0x82BE\n0xDCC1\t0x82B0\n0xDCC2\t0x82C8\n0xDCC3\t0x82CA\n0xDCC4\t0x82E3\n0xDCC5\t0x8298\n0xDCC6\t0x82B7\n0xDCC7\t0x82AE\n0xDCC8\t0x82CB\n0xDCC9\t0x82CC\n0xDCCA\t0x82C1\n0xDCCB\t0x82A9\n0xDCCC\t0x82B4\n0xDCCD\t0x82A1\n0xDCCE\t0x82AA\n0xDCCF\t0x829F\n0xDCD0\t0x82C4\n0xDCD1\t0x82CE\n0xDCD2\t0x82A4\n0xDCD3\t0x82E1\n0xDCD4\t0x8309\n0xDCD5\t0x82F7\n0xDCD6\t0x82E4\n0xDCD7\t0x830F\n0xDCD8\t0x8307\n0xDCD9\t0x82DC\n0xDCDA\t0x82F4\n0xDCDB\t0x82D2\n0xDCDC\t0x82D8\n0xDCDD\t0x830C\n0xDCDE\t0x82FB\n0xDCDF\t0x82D3\n0xDCE0\t0x8311\n0xDCE1\t0x831A\n0xDCE2\t0x8306\n0xDCE3\t0x8314\n0xDCE4\t0x8315\n0xDCE5\t0x82E0\n0xDCE6\t0x82D5\n0xDCE7\t0x831C\n0xDCE8\t0x8351\n0xDCE9\t0x835B\n0xDCEA\t0x835C\n0xDCEB\t0x8308\n0xDCEC\t0x8392\n0xDCED\t0x833C\n0xDCEE\t0x8334\n0xDCEF\t0x8331\n0xDCF0\t0x839B\n0xDCF1\t0x835E\n0xDCF2\t0x832F\n0xDCF3\t0x834F\n0xDCF4\t0x8347\n0xDCF5\t0x8343\n0xDCF6\t0x835F\n0xDCF7\t0x8340\n0xDCF8\t0x8317\n0xDCF9\t0x8360\n0xDCFA\t0x832D\n0xDCFB\t0x833A\n0xDCFC\t0x8333\n0xDCFD\t0x8366\n0xDCFE\t0x8365\n0xDD40\t0x8EE5\n0xDD41\t0x8EE6\n0xDD42\t0x8EE7\n0xDD43\t0x8EE8\n0xDD44\t0x8EE9\n0xDD45\t0x8EEA\n0xDD46\t0x8EEB\n0xDD47\t0x8EEC\n0xDD48\t0x8EED\n0xDD49\t0x8EEE\n0xDD4A\t0x8EEF\n0xDD4B\t0x8EF0\n0xDD4C\t0x8EF1\n0xDD4D\t0x8EF2\n0xDD4E\t0x8EF3\n0xDD4F\t0x8EF4\n0xDD50\t0x8EF5\n0xDD51\t0x8EF6\n0xDD52\t0x8EF7\n0xDD53\t0x8EF8\n0xDD54\t0x8EF9\n0xDD55\t0x8EFA\n0xDD56\t0x8EFB\n0xDD57\t0x8EFC\n0xDD58\t0x8EFD\n0xDD59\t0x8EFE\n0xDD5A\t0x8EFF\n0xDD5B\t0x8F00\n0xDD5C\t0x8F01\n0xDD5D\t0x8F02\n0xDD5E\t0x8F03\n0xDD5F\t0x8F04\n0xDD60\t0x8F05\n0xDD61\t0x8F06\n0xDD62\t0x8F07\n0xDD63\t0x8F08\n0xDD64\t0x8F09\n0xDD65\t0x8F0A\n0xDD66\t0x8F0B\n0xDD67\t0x8F0C\n0xDD68\t0x8F0D\n0xDD69\t0x8F0E\n0xDD6A\t0x8F0F\n0xDD6B\t0x8F10\n0xDD6C\t0x8F11\n0xDD6D\t0x8F12\n0xDD6E\t0x8F13\n0xDD6F\t0x8F14\n0xDD70\t0x8F15\n0xDD71\t0x8F16\n0xDD72\t0x8F17\n0xDD73\t0x8F18\n0xDD74\t0x8F19\n0xDD75\t0x8F1A\n0xDD76\t0x8F1B\n0xDD77\t0x8F1C\n0xDD78\t0x8F1D\n0xDD79\t0x8F1E\n0xDD7A\t0x8F1F\n0xDD7B\t0x8F20\n0xDD7C\t0x8F21\n0xDD7D\t0x8F22\n0xDD7E\t0x8F23\n0xDD80\t0x8F24\n0xDD81\t0x8F25\n0xDD82\t0x8F26\n0xDD83\t0x8F27\n0xDD84\t0x8F28\n0xDD85\t0x8F29\n0xDD86\t0x8F2A\n0xDD87\t0x8F2B\n0xDD88\t0x8F2C\n0xDD89\t0x8F2D\n0xDD8A\t0x8F2E\n0xDD8B\t0x8F2F\n0xDD8C\t0x8F30\n0xDD8D\t0x8F31\n0xDD8E\t0x8F32\n0xDD8F\t0x8F33\n0xDD90\t0x8F34\n0xDD91\t0x8F35\n0xDD92\t0x8F36\n0xDD93\t0x8F37\n0xDD94\t0x8F38\n0xDD95\t0x8F39\n0xDD96\t0x8F3A\n0xDD97\t0x8F3B\n0xDD98\t0x8F3C\n0xDD99\t0x8F3D\n0xDD9A\t0x8F3E\n0xDD9B\t0x8F3F\n0xDD9C\t0x8F40\n0xDD9D\t0x8F41\n0xDD9E\t0x8F42\n0xDD9F\t0x8F43\n0xDDA0\t0x8F44\n0xDDA1\t0x8368\n0xDDA2\t0x831B\n0xDDA3\t0x8369\n0xDDA4\t0x836C\n0xDDA5\t0x836A\n0xDDA6\t0x836D\n0xDDA7\t0x836E\n0xDDA8\t0x83B0\n0xDDA9\t0x8378\n0xDDAA\t0x83B3\n0xDDAB\t0x83B4\n0xDDAC\t0x83A0\n0xDDAD\t0x83AA\n0xDDAE\t0x8393\n0xDDAF\t0x839C\n0xDDB0\t0x8385\n0xDDB1\t0x837C\n0xDDB2\t0x83B6\n0xDDB3\t0x83A9\n0xDDB4\t0x837D\n0xDDB5\t0x83B8\n0xDDB6\t0x837B\n0xDDB7\t0x8398\n0xDDB8\t0x839E\n0xDDB9\t0x83A8\n0xDDBA\t0x83BA\n0xDDBB\t0x83BC\n0xDDBC\t0x83C1\n0xDDBD\t0x8401\n0xDDBE\t0x83E5\n0xDDBF\t0x83D8\n0xDDC0\t0x5807\n0xDDC1\t0x8418\n0xDDC2\t0x840B\n0xDDC3\t0x83DD\n0xDDC4\t0x83FD\n0xDDC5\t0x83D6\n0xDDC6\t0x841C\n0xDDC7\t0x8438\n0xDDC8\t0x8411\n0xDDC9\t0x8406\n0xDDCA\t0x83D4\n0xDDCB\t0x83DF\n0xDDCC\t0x840F\n0xDDCD\t0x8403\n0xDDCE\t0x83F8\n0xDDCF\t0x83F9\n0xDDD0\t0x83EA\n0xDDD1\t0x83C5\n0xDDD2\t0x83C0\n0xDDD3\t0x8426\n0xDDD4\t0x83F0\n0xDDD5\t0x83E1\n0xDDD6\t0x845C\n0xDDD7\t0x8451\n0xDDD8\t0x845A\n0xDDD9\t0x8459\n0xDDDA\t0x8473\n0xDDDB\t0x8487\n0xDDDC\t0x8488\n0xDDDD\t0x847A\n0xDDDE\t0x8489\n0xDDDF\t0x8478\n0xDDE0\t0x843C\n0xDDE1\t0x8446\n0xDDE2\t0x8469\n0xDDE3\t0x8476\n0xDDE4\t0x848C\n0xDDE5\t0x848E\n0xDDE6\t0x8431\n0xDDE7\t0x846D\n0xDDE8\t0x84C1\n0xDDE9\t0x84CD\n0xDDEA\t0x84D0\n0xDDEB\t0x84E6\n0xDDEC\t0x84BD\n0xDDED\t0x84D3\n0xDDEE\t0x84CA\n0xDDEF\t0x84BF\n0xDDF0\t0x84BA\n0xDDF1\t0x84E0\n0xDDF2\t0x84A1\n0xDDF3\t0x84B9\n0xDDF4\t0x84B4\n0xDDF5\t0x8497\n0xDDF6\t0x84E5\n0xDDF7\t0x84E3\n0xDDF8\t0x850C\n0xDDF9\t0x750D\n0xDDFA\t0x8538\n0xDDFB\t0x84F0\n0xDDFC\t0x8539\n0xDDFD\t0x851F\n0xDDFE\t0x853A\n0xDE40\t0x8F45\n0xDE41\t0x8F46\n0xDE42\t0x8F47\n0xDE43\t0x8F48\n0xDE44\t0x8F49\n0xDE45\t0x8F4A\n0xDE46\t0x8F4B\n0xDE47\t0x8F4C\n0xDE48\t0x8F4D\n0xDE49\t0x8F4E\n0xDE4A\t0x8F4F\n0xDE4B\t0x8F50\n0xDE4C\t0x8F51\n0xDE4D\t0x8F52\n0xDE4E\t0x8F53\n0xDE4F\t0x8F54\n0xDE50\t0x8F55\n0xDE51\t0x8F56\n0xDE52\t0x8F57\n0xDE53\t0x8F58\n0xDE54\t0x8F59\n0xDE55\t0x8F5A\n0xDE56\t0x8F5B\n0xDE57\t0x8F5C\n0xDE58\t0x8F5D\n0xDE59\t0x8F5E\n0xDE5A\t0x8F5F\n0xDE5B\t0x8F60\n0xDE5C\t0x8F61\n0xDE5D\t0x8F62\n0xDE5E\t0x8F63\n0xDE5F\t0x8F64\n0xDE60\t0x8F65\n0xDE61\t0x8F6A\n0xDE62\t0x8F80\n0xDE63\t0x8F8C\n0xDE64\t0x8F92\n0xDE65\t0x8F9D\n0xDE66\t0x8FA0\n0xDE67\t0x8FA1\n0xDE68\t0x8FA2\n0xDE69\t0x8FA4\n0xDE6A\t0x8FA5\n0xDE6B\t0x8FA6\n0xDE6C\t0x8FA7\n0xDE6D\t0x8FAA\n0xDE6E\t0x8FAC\n0xDE6F\t0x8FAD\n0xDE70\t0x8FAE\n0xDE71\t0x8FAF\n0xDE72\t0x8FB2\n0xDE73\t0x8FB3\n0xDE74\t0x8FB4\n0xDE75\t0x8FB5\n0xDE76\t0x8FB7\n0xDE77\t0x8FB8\n0xDE78\t0x8FBA\n0xDE79\t0x8FBB\n0xDE7A\t0x8FBC\n0xDE7B\t0x8FBF\n0xDE7C\t0x8FC0\n0xDE7D\t0x8FC3\n0xDE7E\t0x8FC6\n0xDE80\t0x8FC9\n0xDE81\t0x8FCA\n0xDE82\t0x8FCB\n0xDE83\t0x8FCC\n0xDE84\t0x8FCD\n0xDE85\t0x8FCF\n0xDE86\t0x8FD2\n0xDE87\t0x8FD6\n0xDE88\t0x8FD7\n0xDE89\t0x8FDA\n0xDE8A\t0x8FE0\n0xDE8B\t0x8FE1\n0xDE8C\t0x8FE3\n0xDE8D\t0x8FE7\n0xDE8E\t0x8FEC\n0xDE8F\t0x8FEF\n0xDE90\t0x8FF1\n0xDE91\t0x8FF2\n0xDE92\t0x8FF4\n0xDE93\t0x8FF5\n0xDE94\t0x8FF6\n0xDE95\t0x8FFA\n0xDE96\t0x8FFB\n0xDE97\t0x8FFC\n0xDE98\t0x8FFE\n0xDE99\t0x8FFF\n0xDE9A\t0x9007\n0xDE9B\t0x9008\n0xDE9C\t0x900C\n0xDE9D\t0x900E\n0xDE9E\t0x9013\n0xDE9F\t0x9015\n0xDEA0\t0x9018\n0xDEA1\t0x8556\n0xDEA2\t0x853B\n0xDEA3\t0x84FF\n0xDEA4\t0x84FC\n0xDEA5\t0x8559\n0xDEA6\t0x8548\n0xDEA7\t0x8568\n0xDEA8\t0x8564\n0xDEA9\t0x855E\n0xDEAA\t0x857A\n0xDEAB\t0x77A2\n0xDEAC\t0x8543\n0xDEAD\t0x8572\n0xDEAE\t0x857B\n0xDEAF\t0x85A4\n0xDEB0\t0x85A8\n0xDEB1\t0x8587\n0xDEB2\t0x858F\n0xDEB3\t0x8579\n0xDEB4\t0x85AE\n0xDEB5\t0x859C\n0xDEB6\t0x8585\n0xDEB7\t0x85B9\n0xDEB8\t0x85B7\n0xDEB9\t0x85B0\n0xDEBA\t0x85D3\n0xDEBB\t0x85C1\n0xDEBC\t0x85DC\n0xDEBD\t0x85FF\n0xDEBE\t0x8627\n0xDEBF\t0x8605\n0xDEC0\t0x8629\n0xDEC1\t0x8616\n0xDEC2\t0x863C\n0xDEC3\t0x5EFE\n0xDEC4\t0x5F08\n0xDEC5\t0x593C\n0xDEC6\t0x5941\n0xDEC7\t0x8037\n0xDEC8\t0x5955\n0xDEC9\t0x595A\n0xDECA\t0x5958\n0xDECB\t0x530F\n0xDECC\t0x5C22\n0xDECD\t0x5C25\n0xDECE\t0x5C2C\n0xDECF\t0x5C34\n0xDED0\t0x624C\n0xDED1\t0x626A\n0xDED2\t0x629F\n0xDED3\t0x62BB\n0xDED4\t0x62CA\n0xDED5\t0x62DA\n0xDED6\t0x62D7\n0xDED7\t0x62EE\n0xDED8\t0x6322\n0xDED9\t0x62F6\n0xDEDA\t0x6339\n0xDEDB\t0x634B\n0xDEDC\t0x6343\n0xDEDD\t0x63AD\n0xDEDE\t0x63F6\n0xDEDF\t0x6371\n0xDEE0\t0x637A\n0xDEE1\t0x638E\n0xDEE2\t0x63B4\n0xDEE3\t0x636D\n0xDEE4\t0x63AC\n0xDEE5\t0x638A\n0xDEE6\t0x6369\n0xDEE7\t0x63AE\n0xDEE8\t0x63BC\n0xDEE9\t0x63F2\n0xDEEA\t0x63F8\n0xDEEB\t0x63E0\n0xDEEC\t0x63FF\n0xDEED\t0x63C4\n0xDEEE\t0x63DE\n0xDEEF\t0x63CE\n0xDEF0\t0x6452\n0xDEF1\t0x63C6\n0xDEF2\t0x63BE\n0xDEF3\t0x6445\n0xDEF4\t0x6441\n0xDEF5\t0x640B\n0xDEF6\t0x641B\n0xDEF7\t0x6420\n0xDEF8\t0x640C\n0xDEF9\t0x6426\n0xDEFA\t0x6421\n0xDEFB\t0x645E\n0xDEFC\t0x6484\n0xDEFD\t0x646D\n0xDEFE\t0x6496\n0xDF40\t0x9019\n0xDF41\t0x901C\n0xDF42\t0x9023\n0xDF43\t0x9024\n0xDF44\t0x9025\n0xDF45\t0x9027\n0xDF46\t0x9028\n0xDF47\t0x9029\n0xDF48\t0x902A\n0xDF49\t0x902B\n0xDF4A\t0x902C\n0xDF4B\t0x9030\n0xDF4C\t0x9031\n0xDF4D\t0x9032\n0xDF4E\t0x9033\n0xDF4F\t0x9034\n0xDF50\t0x9037\n0xDF51\t0x9039\n0xDF52\t0x903A\n0xDF53\t0x903D\n0xDF54\t0x903F\n0xDF55\t0x9040\n0xDF56\t0x9043\n0xDF57\t0x9045\n0xDF58\t0x9046\n0xDF59\t0x9048\n0xDF5A\t0x9049\n0xDF5B\t0x904A\n0xDF5C\t0x904B\n0xDF5D\t0x904C\n0xDF5E\t0x904E\n0xDF5F\t0x9054\n0xDF60\t0x9055\n0xDF61\t0x9056\n0xDF62\t0x9059\n0xDF63\t0x905A\n0xDF64\t0x905C\n0xDF65\t0x905D\n0xDF66\t0x905E\n0xDF67\t0x905F\n0xDF68\t0x9060\n0xDF69\t0x9061\n0xDF6A\t0x9064\n0xDF6B\t0x9066\n0xDF6C\t0x9067\n0xDF6D\t0x9069\n0xDF6E\t0x906A\n0xDF6F\t0x906B\n0xDF70\t0x906C\n0xDF71\t0x906F\n0xDF72\t0x9070\n0xDF73\t0x9071\n0xDF74\t0x9072\n0xDF75\t0x9073\n0xDF76\t0x9076\n0xDF77\t0x9077\n0xDF78\t0x9078\n0xDF79\t0x9079\n0xDF7A\t0x907A\n0xDF7B\t0x907B\n0xDF7C\t0x907C\n0xDF7D\t0x907E\n0xDF7E\t0x9081\n0xDF80\t0x9084\n0xDF81\t0x9085\n0xDF82\t0x9086\n0xDF83\t0x9087\n0xDF84\t0x9089\n0xDF85\t0x908A\n0xDF86\t0x908C\n0xDF87\t0x908D\n0xDF88\t0x908E\n0xDF89\t0x908F\n0xDF8A\t0x9090\n0xDF8B\t0x9092\n0xDF8C\t0x9094\n0xDF8D\t0x9096\n0xDF8E\t0x9098\n0xDF8F\t0x909A\n0xDF90\t0x909C\n0xDF91\t0x909E\n0xDF92\t0x909F\n0xDF93\t0x90A0\n0xDF94\t0x90A4\n0xDF95\t0x90A5\n0xDF96\t0x90A7\n0xDF97\t0x90A8\n0xDF98\t0x90A9\n0xDF99\t0x90AB\n0xDF9A\t0x90AD\n0xDF9B\t0x90B2\n0xDF9C\t0x90B7\n0xDF9D\t0x90BC\n0xDF9E\t0x90BD\n0xDF9F\t0x90BF\n0xDFA0\t0x90C0\n0xDFA1\t0x647A\n0xDFA2\t0x64B7\n0xDFA3\t0x64B8\n0xDFA4\t0x6499\n0xDFA5\t0x64BA\n0xDFA6\t0x64C0\n0xDFA7\t0x64D0\n0xDFA8\t0x64D7\n0xDFA9\t0x64E4\n0xDFAA\t0x64E2\n0xDFAB\t0x6509\n0xDFAC\t0x6525\n0xDFAD\t0x652E\n0xDFAE\t0x5F0B\n0xDFAF\t0x5FD2\n0xDFB0\t0x7519\n0xDFB1\t0x5F11\n0xDFB2\t0x535F\n0xDFB3\t0x53F1\n0xDFB4\t0x53FD\n0xDFB5\t0x53E9\n0xDFB6\t0x53E8\n0xDFB7\t0x53FB\n0xDFB8\t0x5412\n0xDFB9\t0x5416\n0xDFBA\t0x5406\n0xDFBB\t0x544B\n0xDFBC\t0x5452\n0xDFBD\t0x5453\n0xDFBE\t0x5454\n0xDFBF\t0x5456\n0xDFC0\t0x5443\n0xDFC1\t0x5421\n0xDFC2\t0x5457\n0xDFC3\t0x5459\n0xDFC4\t0x5423\n0xDFC5\t0x5432\n0xDFC6\t0x5482\n0xDFC7\t0x5494\n0xDFC8\t0x5477\n0xDFC9\t0x5471\n0xDFCA\t0x5464\n0xDFCB\t0x549A\n0xDFCC\t0x549B\n0xDFCD\t0x5484\n0xDFCE\t0x5476\n0xDFCF\t0x5466\n0xDFD0\t0x549D\n0xDFD1\t0x54D0\n0xDFD2\t0x54AD\n0xDFD3\t0x54C2\n0xDFD4\t0x54B4\n0xDFD5\t0x54D2\n0xDFD6\t0x54A7\n0xDFD7\t0x54A6\n0xDFD8\t0x54D3\n0xDFD9\t0x54D4\n0xDFDA\t0x5472\n0xDFDB\t0x54A3\n0xDFDC\t0x54D5\n0xDFDD\t0x54BB\n0xDFDE\t0x54BF\n0xDFDF\t0x54CC\n0xDFE0\t0x54D9\n0xDFE1\t0x54DA\n0xDFE2\t0x54DC\n0xDFE3\t0x54A9\n0xDFE4\t0x54AA\n0xDFE5\t0x54A4\n0xDFE6\t0x54DD\n0xDFE7\t0x54CF\n0xDFE8\t0x54DE\n0xDFE9\t0x551B\n0xDFEA\t0x54E7\n0xDFEB\t0x5520\n0xDFEC\t0x54FD\n0xDFED\t0x5514\n0xDFEE\t0x54F3\n0xDFEF\t0x5522\n0xDFF0\t0x5523\n0xDFF1\t0x550F\n0xDFF2\t0x5511\n0xDFF3\t0x5527\n0xDFF4\t0x552A\n0xDFF5\t0x5567\n0xDFF6\t0x558F\n0xDFF7\t0x55B5\n0xDFF8\t0x5549\n0xDFF9\t0x556D\n0xDFFA\t0x5541\n0xDFFB\t0x5555\n0xDFFC\t0x553F\n0xDFFD\t0x5550\n0xDFFE\t0x553C\n0xE040\t0x90C2\n0xE041\t0x90C3\n0xE042\t0x90C6\n0xE043\t0x90C8\n0xE044\t0x90C9\n0xE045\t0x90CB\n0xE046\t0x90CC\n0xE047\t0x90CD\n0xE048\t0x90D2\n0xE049\t0x90D4\n0xE04A\t0x90D5\n0xE04B\t0x90D6\n0xE04C\t0x90D8\n0xE04D\t0x90D9\n0xE04E\t0x90DA\n0xE04F\t0x90DE\n0xE050\t0x90DF\n0xE051\t0x90E0\n0xE052\t0x90E3\n0xE053\t0x90E4\n0xE054\t0x90E5\n0xE055\t0x90E9\n0xE056\t0x90EA\n0xE057\t0x90EC\n0xE058\t0x90EE\n0xE059\t0x90F0\n0xE05A\t0x90F1\n0xE05B\t0x90F2\n0xE05C\t0x90F3\n0xE05D\t0x90F5\n0xE05E\t0x90F6\n0xE05F\t0x90F7\n0xE060\t0x90F9\n0xE061\t0x90FA\n0xE062\t0x90FB\n0xE063\t0x90FC\n0xE064\t0x90FF\n0xE065\t0x9100\n0xE066\t0x9101\n0xE067\t0x9103\n0xE068\t0x9105\n0xE069\t0x9106\n0xE06A\t0x9107\n0xE06B\t0x9108\n0xE06C\t0x9109\n0xE06D\t0x910A\n0xE06E\t0x910B\n0xE06F\t0x910C\n0xE070\t0x910D\n0xE071\t0x910E\n0xE072\t0x910F\n0xE073\t0x9110\n0xE074\t0x9111\n0xE075\t0x9112\n0xE076\t0x9113\n0xE077\t0x9114\n0xE078\t0x9115\n0xE079\t0x9116\n0xE07A\t0x9117\n0xE07B\t0x9118\n0xE07C\t0x911A\n0xE07D\t0x911B\n0xE07E\t0x911C\n0xE080\t0x911D\n0xE081\t0x911F\n0xE082\t0x9120\n0xE083\t0x9121\n0xE084\t0x9124\n0xE085\t0x9125\n0xE086\t0x9126\n0xE087\t0x9127\n0xE088\t0x9128\n0xE089\t0x9129\n0xE08A\t0x912A\n0xE08B\t0x912B\n0xE08C\t0x912C\n0xE08D\t0x912D\n0xE08E\t0x912E\n0xE08F\t0x9130\n0xE090\t0x9132\n0xE091\t0x9133\n0xE092\t0x9134\n0xE093\t0x9135\n0xE094\t0x9136\n0xE095\t0x9137\n0xE096\t0x9138\n0xE097\t0x913A\n0xE098\t0x913B\n0xE099\t0x913C\n0xE09A\t0x913D\n0xE09B\t0x913E\n0xE09C\t0x913F\n0xE09D\t0x9140\n0xE09E\t0x9141\n0xE09F\t0x9142\n0xE0A0\t0x9144\n0xE0A1\t0x5537\n0xE0A2\t0x5556\n0xE0A3\t0x5575\n0xE0A4\t0x5576\n0xE0A5\t0x5577\n0xE0A6\t0x5533\n0xE0A7\t0x5530\n0xE0A8\t0x555C\n0xE0A9\t0x558B\n0xE0AA\t0x55D2\n0xE0AB\t0x5583\n0xE0AC\t0x55B1\n0xE0AD\t0x55B9\n0xE0AE\t0x5588\n0xE0AF\t0x5581\n0xE0B0\t0x559F\n0xE0B1\t0x557E\n0xE0B2\t0x55D6\n0xE0B3\t0x5591\n0xE0B4\t0x557B\n0xE0B5\t0x55DF\n0xE0B6\t0x55BD\n0xE0B7\t0x55BE\n0xE0B8\t0x5594\n0xE0B9\t0x5599\n0xE0BA\t0x55EA\n0xE0BB\t0x55F7\n0xE0BC\t0x55C9\n0xE0BD\t0x561F\n0xE0BE\t0x55D1\n0xE0BF\t0x55EB\n0xE0C0\t0x55EC\n0xE0C1\t0x55D4\n0xE0C2\t0x55E6\n0xE0C3\t0x55DD\n0xE0C4\t0x55C4\n0xE0C5\t0x55EF\n0xE0C6\t0x55E5\n0xE0C7\t0x55F2\n0xE0C8\t0x55F3\n0xE0C9\t0x55CC\n0xE0CA\t0x55CD\n0xE0CB\t0x55E8\n0xE0CC\t0x55F5\n0xE0CD\t0x55E4\n0xE0CE\t0x8F94\n0xE0CF\t0x561E\n0xE0D0\t0x5608\n0xE0D1\t0x560C\n0xE0D2\t0x5601\n0xE0D3\t0x5624\n0xE0D4\t0x5623\n0xE0D5\t0x55FE\n0xE0D6\t0x5600\n0xE0D7\t0x5627\n0xE0D8\t0x562D\n0xE0D9\t0x5658\n0xE0DA\t0x5639\n0xE0DB\t0x5657\n0xE0DC\t0x562C\n0xE0DD\t0x564D\n0xE0DE\t0x5662\n0xE0DF\t0x5659\n0xE0E0\t0x565C\n0xE0E1\t0x564C\n0xE0E2\t0x5654\n0xE0E3\t0x5686\n0xE0E4\t0x5664\n0xE0E5\t0x5671\n0xE0E6\t0x566B\n0xE0E7\t0x567B\n0xE0E8\t0x567C\n0xE0E9\t0x5685\n0xE0EA\t0x5693\n0xE0EB\t0x56AF\n0xE0EC\t0x56D4\n0xE0ED\t0x56D7\n0xE0EE\t0x56DD\n0xE0EF\t0x56E1\n0xE0F0\t0x56F5\n0xE0F1\t0x56EB\n0xE0F2\t0x56F9\n0xE0F3\t0x56FF\n0xE0F4\t0x5704\n0xE0F5\t0x570A\n0xE0F6\t0x5709\n0xE0F7\t0x571C\n0xE0F8\t0x5E0F\n0xE0F9\t0x5E19\n0xE0FA\t0x5E14\n0xE0FB\t0x5E11\n0xE0FC\t0x5E31\n0xE0FD\t0x5E3B\n0xE0FE\t0x5E3C\n0xE140\t0x9145\n0xE141\t0x9147\n0xE142\t0x9148\n0xE143\t0x9151\n0xE144\t0x9153\n0xE145\t0x9154\n0xE146\t0x9155\n0xE147\t0x9156\n0xE148\t0x9158\n0xE149\t0x9159\n0xE14A\t0x915B\n0xE14B\t0x915C\n0xE14C\t0x915F\n0xE14D\t0x9160\n0xE14E\t0x9166\n0xE14F\t0x9167\n0xE150\t0x9168\n0xE151\t0x916B\n0xE152\t0x916D\n0xE153\t0x9173\n0xE154\t0x917A\n0xE155\t0x917B\n0xE156\t0x917C\n0xE157\t0x9180\n0xE158\t0x9181\n0xE159\t0x9182\n0xE15A\t0x9183\n0xE15B\t0x9184\n0xE15C\t0x9186\n0xE15D\t0x9188\n0xE15E\t0x918A\n0xE15F\t0x918E\n0xE160\t0x918F\n0xE161\t0x9193\n0xE162\t0x9194\n0xE163\t0x9195\n0xE164\t0x9196\n0xE165\t0x9197\n0xE166\t0x9198\n0xE167\t0x9199\n0xE168\t0x919C\n0xE169\t0x919D\n0xE16A\t0x919E\n0xE16B\t0x919F\n0xE16C\t0x91A0\n0xE16D\t0x91A1\n0xE16E\t0x91A4\n0xE16F\t0x91A5\n0xE170\t0x91A6\n0xE171\t0x91A7\n0xE172\t0x91A8\n0xE173\t0x91A9\n0xE174\t0x91AB\n0xE175\t0x91AC\n0xE176\t0x91B0\n0xE177\t0x91B1\n0xE178\t0x91B2\n0xE179\t0x91B3\n0xE17A\t0x91B6\n0xE17B\t0x91B7\n0xE17C\t0x91B8\n0xE17D\t0x91B9\n0xE17E\t0x91BB\n0xE180\t0x91BC\n0xE181\t0x91BD\n0xE182\t0x91BE\n0xE183\t0x91BF\n0xE184\t0x91C0\n0xE185\t0x91C1\n0xE186\t0x91C2\n0xE187\t0x91C3\n0xE188\t0x91C4\n0xE189\t0x91C5\n0xE18A\t0x91C6\n0xE18B\t0x91C8\n0xE18C\t0x91CB\n0xE18D\t0x91D0\n0xE18E\t0x91D2\n0xE18F\t0x91D3\n0xE190\t0x91D4\n0xE191\t0x91D5\n0xE192\t0x91D6\n0xE193\t0x91D7\n0xE194\t0x91D8\n0xE195\t0x91D9\n0xE196\t0x91DA\n0xE197\t0x91DB\n0xE198\t0x91DD\n0xE199\t0x91DE\n0xE19A\t0x91DF\n0xE19B\t0x91E0\n0xE19C\t0x91E1\n0xE19D\t0x91E2\n0xE19E\t0x91E3\n0xE19F\t0x91E4\n0xE1A0\t0x91E5\n0xE1A1\t0x5E37\n0xE1A2\t0x5E44\n0xE1A3\t0x5E54\n0xE1A4\t0x5E5B\n0xE1A5\t0x5E5E\n0xE1A6\t0x5E61\n0xE1A7\t0x5C8C\n0xE1A8\t0x5C7A\n0xE1A9\t0x5C8D\n0xE1AA\t0x5C90\n0xE1AB\t0x5C96\n0xE1AC\t0x5C88\n0xE1AD\t0x5C98\n0xE1AE\t0x5C99\n0xE1AF\t0x5C91\n0xE1B0\t0x5C9A\n0xE1B1\t0x5C9C\n0xE1B2\t0x5CB5\n0xE1B3\t0x5CA2\n0xE1B4\t0x5CBD\n0xE1B5\t0x5CAC\n0xE1B6\t0x5CAB\n0xE1B7\t0x5CB1\n0xE1B8\t0x5CA3\n0xE1B9\t0x5CC1\n0xE1BA\t0x5CB7\n0xE1BB\t0x5CC4\n0xE1BC\t0x5CD2\n0xE1BD\t0x5CE4\n0xE1BE\t0x5CCB\n0xE1BF\t0x5CE5\n0xE1C0\t0x5D02\n0xE1C1\t0x5D03\n0xE1C2\t0x5D27\n0xE1C3\t0x5D26\n0xE1C4\t0x5D2E\n0xE1C5\t0x5D24\n0xE1C6\t0x5D1E\n0xE1C7\t0x5D06\n0xE1C8\t0x5D1B\n0xE1C9\t0x5D58\n0xE1CA\t0x5D3E\n0xE1CB\t0x5D34\n0xE1CC\t0x5D3D\n0xE1CD\t0x5D6C\n0xE1CE\t0x5D5B\n0xE1CF\t0x5D6F\n0xE1D0\t0x5D5D\n0xE1D1\t0x5D6B\n0xE1D2\t0x5D4B\n0xE1D3\t0x5D4A\n0xE1D4\t0x5D69\n0xE1D5\t0x5D74\n0xE1D6\t0x5D82\n0xE1D7\t0x5D99\n0xE1D8\t0x5D9D\n0xE1D9\t0x8C73\n0xE1DA\t0x5DB7\n0xE1DB\t0x5DC5\n0xE1DC\t0x5F73\n0xE1DD\t0x5F77\n0xE1DE\t0x5F82\n0xE1DF\t0x5F87\n0xE1E0\t0x5F89\n0xE1E1\t0x5F8C\n0xE1E2\t0x5F95\n0xE1E3\t0x5F99\n0xE1E4\t0x5F9C\n0xE1E5\t0x5FA8\n0xE1E6\t0x5FAD\n0xE1E7\t0x5FB5\n0xE1E8\t0x5FBC\n0xE1E9\t0x8862\n0xE1EA\t0x5F61\n0xE1EB\t0x72AD\n0xE1EC\t0x72B0\n0xE1ED\t0x72B4\n0xE1EE\t0x72B7\n0xE1EF\t0x72B8\n0xE1F0\t0x72C3\n0xE1F1\t0x72C1\n0xE1F2\t0x72CE\n0xE1F3\t0x72CD\n0xE1F4\t0x72D2\n0xE1F5\t0x72E8\n0xE1F6\t0x72EF\n0xE1F7\t0x72E9\n0xE1F8\t0x72F2\n0xE1F9\t0x72F4\n0xE1FA\t0x72F7\n0xE1FB\t0x7301\n0xE1FC\t0x72F3\n0xE1FD\t0x7303\n0xE1FE\t0x72FA\n0xE240\t0x91E6\n0xE241\t0x91E7\n0xE242\t0x91E8\n0xE243\t0x91E9\n0xE244\t0x91EA\n0xE245\t0x91EB\n0xE246\t0x91EC\n0xE247\t0x91ED\n0xE248\t0x91EE\n0xE249\t0x91EF\n0xE24A\t0x91F0\n0xE24B\t0x91F1\n0xE24C\t0x91F2\n0xE24D\t0x91F3\n0xE24E\t0x91F4\n0xE24F\t0x91F5\n0xE250\t0x91F6\n0xE251\t0x91F7\n0xE252\t0x91F8\n0xE253\t0x91F9\n0xE254\t0x91FA\n0xE255\t0x91FB\n0xE256\t0x91FC\n0xE257\t0x91FD\n0xE258\t0x91FE\n0xE259\t0x91FF\n0xE25A\t0x9200\n0xE25B\t0x9201\n0xE25C\t0x9202\n0xE25D\t0x9203\n0xE25E\t0x9204\n0xE25F\t0x9205\n0xE260\t0x9206\n0xE261\t0x9207\n0xE262\t0x9208\n0xE263\t0x9209\n0xE264\t0x920A\n0xE265\t0x920B\n0xE266\t0x920C\n0xE267\t0x920D\n0xE268\t0x920E\n0xE269\t0x920F\n0xE26A\t0x9210\n0xE26B\t0x9211\n0xE26C\t0x9212\n0xE26D\t0x9213\n0xE26E\t0x9214\n0xE26F\t0x9215\n0xE270\t0x9216\n0xE271\t0x9217\n0xE272\t0x9218\n0xE273\t0x9219\n0xE274\t0x921A\n0xE275\t0x921B\n0xE276\t0x921C\n0xE277\t0x921D\n0xE278\t0x921E\n0xE279\t0x921F\n0xE27A\t0x9220\n0xE27B\t0x9221\n0xE27C\t0x9222\n0xE27D\t0x9223\n0xE27E\t0x9224\n0xE280\t0x9225\n0xE281\t0x9226\n0xE282\t0x9227\n0xE283\t0x9228\n0xE284\t0x9229\n0xE285\t0x922A\n0xE286\t0x922B\n0xE287\t0x922C\n0xE288\t0x922D\n0xE289\t0x922E\n0xE28A\t0x922F\n0xE28B\t0x9230\n0xE28C\t0x9231\n0xE28D\t0x9232\n0xE28E\t0x9233\n0xE28F\t0x9234\n0xE290\t0x9235\n0xE291\t0x9236\n0xE292\t0x9237\n0xE293\t0x9238\n0xE294\t0x9239\n0xE295\t0x923A\n0xE296\t0x923B\n0xE297\t0x923C\n0xE298\t0x923D\n0xE299\t0x923E\n0xE29A\t0x923F\n0xE29B\t0x9240\n0xE29C\t0x9241\n0xE29D\t0x9242\n0xE29E\t0x9243\n0xE29F\t0x9244\n0xE2A0\t0x9245\n0xE2A1\t0x72FB\n0xE2A2\t0x7317\n0xE2A3\t0x7313\n0xE2A4\t0x7321\n0xE2A5\t0x730A\n0xE2A6\t0x731E\n0xE2A7\t0x731D\n0xE2A8\t0x7315\n0xE2A9\t0x7322\n0xE2AA\t0x7339\n0xE2AB\t0x7325\n0xE2AC\t0x732C\n0xE2AD\t0x7338\n0xE2AE\t0x7331\n0xE2AF\t0x7350\n0xE2B0\t0x734D\n0xE2B1\t0x7357\n0xE2B2\t0x7360\n0xE2B3\t0x736C\n0xE2B4\t0x736F\n0xE2B5\t0x737E\n0xE2B6\t0x821B\n0xE2B7\t0x5925\n0xE2B8\t0x98E7\n0xE2B9\t0x5924\n0xE2BA\t0x5902\n0xE2BB\t0x9963\n0xE2BC\t0x9967\n0xE2BD\t0x9968\n0xE2BE\t0x9969\n0xE2BF\t0x996A\n0xE2C0\t0x996B\n0xE2C1\t0x996C\n0xE2C2\t0x9974\n0xE2C3\t0x9977\n0xE2C4\t0x997D\n0xE2C5\t0x9980\n0xE2C6\t0x9984\n0xE2C7\t0x9987\n0xE2C8\t0x998A\n0xE2C9\t0x998D\n0xE2CA\t0x9990\n0xE2CB\t0x9991\n0xE2CC\t0x9993\n0xE2CD\t0x9994\n0xE2CE\t0x9995\n0xE2CF\t0x5E80\n0xE2D0\t0x5E91\n0xE2D1\t0x5E8B\n0xE2D2\t0x5E96\n0xE2D3\t0x5EA5\n0xE2D4\t0x5EA0\n0xE2D5\t0x5EB9\n0xE2D6\t0x5EB5\n0xE2D7\t0x5EBE\n0xE2D8\t0x5EB3\n0xE2D9\t0x8D53\n0xE2DA\t0x5ED2\n0xE2DB\t0x5ED1\n0xE2DC\t0x5EDB\n0xE2DD\t0x5EE8\n0xE2DE\t0x5EEA\n0xE2DF\t0x81BA\n0xE2E0\t0x5FC4\n0xE2E1\t0x5FC9\n0xE2E2\t0x5FD6\n0xE2E3\t0x5FCF\n0xE2E4\t0x6003\n0xE2E5\t0x5FEE\n0xE2E6\t0x6004\n0xE2E7\t0x5FE1\n0xE2E8\t0x5FE4\n0xE2E9\t0x5FFE\n0xE2EA\t0x6005\n0xE2EB\t0x6006\n0xE2EC\t0x5FEA\n0xE2ED\t0x5FED\n0xE2EE\t0x5FF8\n0xE2EF\t0x6019\n0xE2F0\t0x6035\n0xE2F1\t0x6026\n0xE2F2\t0x601B\n0xE2F3\t0x600F\n0xE2F4\t0x600D\n0xE2F5\t0x6029\n0xE2F6\t0x602B\n0xE2F7\t0x600A\n0xE2F8\t0x603F\n0xE2F9\t0x6021\n0xE2FA\t0x6078\n0xE2FB\t0x6079\n0xE2FC\t0x607B\n0xE2FD\t0x607A\n0xE2FE\t0x6042\n0xE340\t0x9246\n0xE341\t0x9247\n0xE342\t0x9248\n0xE343\t0x9249\n0xE344\t0x924A\n0xE345\t0x924B\n0xE346\t0x924C\n0xE347\t0x924D\n0xE348\t0x924E\n0xE349\t0x924F\n0xE34A\t0x9250\n0xE34B\t0x9251\n0xE34C\t0x9252\n0xE34D\t0x9253\n0xE34E\t0x9254\n0xE34F\t0x9255\n0xE350\t0x9256\n0xE351\t0x9257\n0xE352\t0x9258\n0xE353\t0x9259\n0xE354\t0x925A\n0xE355\t0x925B\n0xE356\t0x925C\n0xE357\t0x925D\n0xE358\t0x925E\n0xE359\t0x925F\n0xE35A\t0x9260\n0xE35B\t0x9261\n0xE35C\t0x9262\n0xE35D\t0x9263\n0xE35E\t0x9264\n0xE35F\t0x9265\n0xE360\t0x9266\n0xE361\t0x9267\n0xE362\t0x9268\n0xE363\t0x9269\n0xE364\t0x926A\n0xE365\t0x926B\n0xE366\t0x926C\n0xE367\t0x926D\n0xE368\t0x926E\n0xE369\t0x926F\n0xE36A\t0x9270\n0xE36B\t0x9271\n0xE36C\t0x9272\n0xE36D\t0x9273\n0xE36E\t0x9275\n0xE36F\t0x9276\n0xE370\t0x9277\n0xE371\t0x9278\n0xE372\t0x9279\n0xE373\t0x927A\n0xE374\t0x927B\n0xE375\t0x927C\n0xE376\t0x927D\n0xE377\t0x927E\n0xE378\t0x927F\n0xE379\t0x9280\n0xE37A\t0x9281\n0xE37B\t0x9282\n0xE37C\t0x9283\n0xE37D\t0x9284\n0xE37E\t0x9285\n0xE380\t0x9286\n0xE381\t0x9287\n0xE382\t0x9288\n0xE383\t0x9289\n0xE384\t0x928A\n0xE385\t0x928B\n0xE386\t0x928C\n0xE387\t0x928D\n0xE388\t0x928F\n0xE389\t0x9290\n0xE38A\t0x9291\n0xE38B\t0x9292\n0xE38C\t0x9293\n0xE38D\t0x9294\n0xE38E\t0x9295\n0xE38F\t0x9296\n0xE390\t0x9297\n0xE391\t0x9298\n0xE392\t0x9299\n0xE393\t0x929A\n0xE394\t0x929B\n0xE395\t0x929C\n0xE396\t0x929D\n0xE397\t0x929E\n0xE398\t0x929F\n0xE399\t0x92A0\n0xE39A\t0x92A1\n0xE39B\t0x92A2\n0xE39C\t0x92A3\n0xE39D\t0x92A4\n0xE39E\t0x92A5\n0xE39F\t0x92A6\n0xE3A0\t0x92A7\n0xE3A1\t0x606A\n0xE3A2\t0x607D\n0xE3A3\t0x6096\n0xE3A4\t0x609A\n0xE3A5\t0x60AD\n0xE3A6\t0x609D\n0xE3A7\t0x6083\n0xE3A8\t0x6092\n0xE3A9\t0x608C\n0xE3AA\t0x609B\n0xE3AB\t0x60EC\n0xE3AC\t0x60BB\n0xE3AD\t0x60B1\n0xE3AE\t0x60DD\n0xE3AF\t0x60D8\n0xE3B0\t0x60C6\n0xE3B1\t0x60DA\n0xE3B2\t0x60B4\n0xE3B3\t0x6120\n0xE3B4\t0x6126\n0xE3B5\t0x6115\n0xE3B6\t0x6123\n0xE3B7\t0x60F4\n0xE3B8\t0x6100\n0xE3B9\t0x610E\n0xE3BA\t0x612B\n0xE3BB\t0x614A\n0xE3BC\t0x6175\n0xE3BD\t0x61AC\n0xE3BE\t0x6194\n0xE3BF\t0x61A7\n0xE3C0\t0x61B7\n0xE3C1\t0x61D4\n0xE3C2\t0x61F5\n0xE3C3\t0x5FDD\n0xE3C4\t0x96B3\n0xE3C5\t0x95E9\n0xE3C6\t0x95EB\n0xE3C7\t0x95F1\n0xE3C8\t0x95F3\n0xE3C9\t0x95F5\n0xE3CA\t0x95F6\n0xE3CB\t0x95FC\n0xE3CC\t0x95FE\n0xE3CD\t0x9603\n0xE3CE\t0x9604\n0xE3CF\t0x9606\n0xE3D0\t0x9608\n0xE3D1\t0x960A\n0xE3D2\t0x960B\n0xE3D3\t0x960C\n0xE3D4\t0x960D\n0xE3D5\t0x960F\n0xE3D6\t0x9612\n0xE3D7\t0x9615\n0xE3D8\t0x9616\n0xE3D9\t0x9617\n0xE3DA\t0x9619\n0xE3DB\t0x961A\n0xE3DC\t0x4E2C\n0xE3DD\t0x723F\n0xE3DE\t0x6215\n0xE3DF\t0x6C35\n0xE3E0\t0x6C54\n0xE3E1\t0x6C5C\n0xE3E2\t0x6C4A\n0xE3E3\t0x6CA3\n0xE3E4\t0x6C85\n0xE3E5\t0x6C90\n0xE3E6\t0x6C94\n0xE3E7\t0x6C8C\n0xE3E8\t0x6C68\n0xE3E9\t0x6C69\n0xE3EA\t0x6C74\n0xE3EB\t0x6C76\n0xE3EC\t0x6C86\n0xE3ED\t0x6CA9\n0xE3EE\t0x6CD0\n0xE3EF\t0x6CD4\n0xE3F0\t0x6CAD\n0xE3F1\t0x6CF7\n0xE3F2\t0x6CF8\n0xE3F3\t0x6CF1\n0xE3F4\t0x6CD7\n0xE3F5\t0x6CB2\n0xE3F6\t0x6CE0\n0xE3F7\t0x6CD6\n0xE3F8\t0x6CFA\n0xE3F9\t0x6CEB\n0xE3FA\t0x6CEE\n0xE3FB\t0x6CB1\n0xE3FC\t0x6CD3\n0xE3FD\t0x6CEF\n0xE3FE\t0x6CFE\n0xE440\t0x92A8\n0xE441\t0x92A9\n0xE442\t0x92AA\n0xE443\t0x92AB\n0xE444\t0x92AC\n0xE445\t0x92AD\n0xE446\t0x92AF\n0xE447\t0x92B0\n0xE448\t0x92B1\n0xE449\t0x92B2\n0xE44A\t0x92B3\n0xE44B\t0x92B4\n0xE44C\t0x92B5\n0xE44D\t0x92B6\n0xE44E\t0x92B7\n0xE44F\t0x92B8\n0xE450\t0x92B9\n0xE451\t0x92BA\n0xE452\t0x92BB\n0xE453\t0x92BC\n0xE454\t0x92BD\n0xE455\t0x92BE\n0xE456\t0x92BF\n0xE457\t0x92C0\n0xE458\t0x92C1\n0xE459\t0x92C2\n0xE45A\t0x92C3\n0xE45B\t0x92C4\n0xE45C\t0x92C5\n0xE45D\t0x92C6\n0xE45E\t0x92C7\n0xE45F\t0x92C9\n0xE460\t0x92CA\n0xE461\t0x92CB\n0xE462\t0x92CC\n0xE463\t0x92CD\n0xE464\t0x92CE\n0xE465\t0x92CF\n0xE466\t0x92D0\n0xE467\t0x92D1\n0xE468\t0x92D2\n0xE469\t0x92D3\n0xE46A\t0x92D4\n0xE46B\t0x92D5\n0xE46C\t0x92D6\n0xE46D\t0x92D7\n0xE46E\t0x92D8\n0xE46F\t0x92D9\n0xE470\t0x92DA\n0xE471\t0x92DB\n0xE472\t0x92DC\n0xE473\t0x92DD\n0xE474\t0x92DE\n0xE475\t0x92DF\n0xE476\t0x92E0\n0xE477\t0x92E1\n0xE478\t0x92E2\n0xE479\t0x92E3\n0xE47A\t0x92E4\n0xE47B\t0x92E5\n0xE47C\t0x92E6\n0xE47D\t0x92E7\n0xE47E\t0x92E8\n0xE480\t0x92E9\n0xE481\t0x92EA\n0xE482\t0x92EB\n0xE483\t0x92EC\n0xE484\t0x92ED\n0xE485\t0x92EE\n0xE486\t0x92EF\n0xE487\t0x92F0\n0xE488\t0x92F1\n0xE489\t0x92F2\n0xE48A\t0x92F3\n0xE48B\t0x92F4\n0xE48C\t0x92F5\n0xE48D\t0x92F6\n0xE48E\t0x92F7\n0xE48F\t0x92F8\n0xE490\t0x92F9\n0xE491\t0x92FA\n0xE492\t0x92FB\n0xE493\t0x92FC\n0xE494\t0x92FD\n0xE495\t0x92FE\n0xE496\t0x92FF\n0xE497\t0x9300\n0xE498\t0x9301\n0xE499\t0x9302\n0xE49A\t0x9303\n0xE49B\t0x9304\n0xE49C\t0x9305\n0xE49D\t0x9306\n0xE49E\t0x9307\n0xE49F\t0x9308\n0xE4A0\t0x9309\n0xE4A1\t0x6D39\n0xE4A2\t0x6D27\n0xE4A3\t0x6D0C\n0xE4A4\t0x6D43\n0xE4A5\t0x6D48\n0xE4A6\t0x6D07\n0xE4A7\t0x6D04\n0xE4A8\t0x6D19\n0xE4A9\t0x6D0E\n0xE4AA\t0x6D2B\n0xE4AB\t0x6D4D\n0xE4AC\t0x6D2E\n0xE4AD\t0x6D35\n0xE4AE\t0x6D1A\n0xE4AF\t0x6D4F\n0xE4B0\t0x6D52\n0xE4B1\t0x6D54\n0xE4B2\t0x6D33\n0xE4B3\t0x6D91\n0xE4B4\t0x6D6F\n0xE4B5\t0x6D9E\n0xE4B6\t0x6DA0\n0xE4B7\t0x6D5E\n0xE4B8\t0x6D93\n0xE4B9\t0x6D94\n0xE4BA\t0x6D5C\n0xE4BB\t0x6D60\n0xE4BC\t0x6D7C\n0xE4BD\t0x6D63\n0xE4BE\t0x6E1A\n0xE4BF\t0x6DC7\n0xE4C0\t0x6DC5\n0xE4C1\t0x6DDE\n0xE4C2\t0x6E0E\n0xE4C3\t0x6DBF\n0xE4C4\t0x6DE0\n0xE4C5\t0x6E11\n0xE4C6\t0x6DE6\n0xE4C7\t0x6DDD\n0xE4C8\t0x6DD9\n0xE4C9\t0x6E16\n0xE4CA\t0x6DAB\n0xE4CB\t0x6E0C\n0xE4CC\t0x6DAE\n0xE4CD\t0x6E2B\n0xE4CE\t0x6E6E\n0xE4CF\t0x6E4E\n0xE4D0\t0x6E6B\n0xE4D1\t0x6EB2\n0xE4D2\t0x6E5F\n0xE4D3\t0x6E86\n0xE4D4\t0x6E53\n0xE4D5\t0x6E54\n0xE4D6\t0x6E32\n0xE4D7\t0x6E25\n0xE4D8\t0x6E44\n0xE4D9\t0x6EDF\n0xE4DA\t0x6EB1\n0xE4DB\t0x6E98\n0xE4DC\t0x6EE0\n0xE4DD\t0x6F2D\n0xE4DE\t0x6EE2\n0xE4DF\t0x6EA5\n0xE4E0\t0x6EA7\n0xE4E1\t0x6EBD\n0xE4E2\t0x6EBB\n0xE4E3\t0x6EB7\n0xE4E4\t0x6ED7\n0xE4E5\t0x6EB4\n0xE4E6\t0x6ECF\n0xE4E7\t0x6E8F\n0xE4E8\t0x6EC2\n0xE4E9\t0x6E9F\n0xE4EA\t0x6F62\n0xE4EB\t0x6F46\n0xE4EC\t0x6F47\n0xE4ED\t0x6F24\n0xE4EE\t0x6F15\n0xE4EF\t0x6EF9\n0xE4F0\t0x6F2F\n0xE4F1\t0x6F36\n0xE4F2\t0x6F4B\n0xE4F3\t0x6F74\n0xE4F4\t0x6F2A\n0xE4F5\t0x6F09\n0xE4F6\t0x6F29\n0xE4F7\t0x6F89\n0xE4F8\t0x6F8D\n0xE4F9\t0x6F8C\n0xE4FA\t0x6F78\n0xE4FB\t0x6F72\n0xE4FC\t0x6F7C\n0xE4FD\t0x6F7A\n0xE4FE\t0x6FD1\n0xE540\t0x930A\n0xE541\t0x930B\n0xE542\t0x930C\n0xE543\t0x930D\n0xE544\t0x930E\n0xE545\t0x930F\n0xE546\t0x9310\n0xE547\t0x9311\n0xE548\t0x9312\n0xE549\t0x9313\n0xE54A\t0x9314\n0xE54B\t0x9315\n0xE54C\t0x9316\n0xE54D\t0x9317\n0xE54E\t0x9318\n0xE54F\t0x9319\n0xE550\t0x931A\n0xE551\t0x931B\n0xE552\t0x931C\n0xE553\t0x931D\n0xE554\t0x931E\n0xE555\t0x931F\n0xE556\t0x9320\n0xE557\t0x9321\n0xE558\t0x9322\n0xE559\t0x9323\n0xE55A\t0x9324\n0xE55B\t0x9325\n0xE55C\t0x9326\n0xE55D\t0x9327\n0xE55E\t0x9328\n0xE55F\t0x9329\n0xE560\t0x932A\n0xE561\t0x932B\n0xE562\t0x932C\n0xE563\t0x932D\n0xE564\t0x932E\n0xE565\t0x932F\n0xE566\t0x9330\n0xE567\t0x9331\n0xE568\t0x9332\n0xE569\t0x9333\n0xE56A\t0x9334\n0xE56B\t0x9335\n0xE56C\t0x9336\n0xE56D\t0x9337\n0xE56E\t0x9338\n0xE56F\t0x9339\n0xE570\t0x933A\n0xE571\t0x933B\n0xE572\t0x933C\n0xE573\t0x933D\n0xE574\t0x933F\n0xE575\t0x9340\n0xE576\t0x9341\n0xE577\t0x9342\n0xE578\t0x9343\n0xE579\t0x9344\n0xE57A\t0x9345\n0xE57B\t0x9346\n0xE57C\t0x9347\n0xE57D\t0x9348\n0xE57E\t0x9349\n0xE580\t0x934A\n0xE581\t0x934B\n0xE582\t0x934C\n0xE583\t0x934D\n0xE584\t0x934E\n0xE585\t0x934F\n0xE586\t0x9350\n0xE587\t0x9351\n0xE588\t0x9352\n0xE589\t0x9353\n0xE58A\t0x9354\n0xE58B\t0x9355\n0xE58C\t0x9356\n0xE58D\t0x9357\n0xE58E\t0x9358\n0xE58F\t0x9359\n0xE590\t0x935A\n0xE591\t0x935B\n0xE592\t0x935C\n0xE593\t0x935D\n0xE594\t0x935E\n0xE595\t0x935F\n0xE596\t0x9360\n0xE597\t0x9361\n0xE598\t0x9362\n0xE599\t0x9363\n0xE59A\t0x9364\n0xE59B\t0x9365\n0xE59C\t0x9366\n0xE59D\t0x9367\n0xE59E\t0x9368\n0xE59F\t0x9369\n0xE5A0\t0x936B\n0xE5A1\t0x6FC9\n0xE5A2\t0x6FA7\n0xE5A3\t0x6FB9\n0xE5A4\t0x6FB6\n0xE5A5\t0x6FC2\n0xE5A6\t0x6FE1\n0xE5A7\t0x6FEE\n0xE5A8\t0x6FDE\n0xE5A9\t0x6FE0\n0xE5AA\t0x6FEF\n0xE5AB\t0x701A\n0xE5AC\t0x7023\n0xE5AD\t0x701B\n0xE5AE\t0x7039\n0xE5AF\t0x7035\n0xE5B0\t0x704F\n0xE5B1\t0x705E\n0xE5B2\t0x5B80\n0xE5B3\t0x5B84\n0xE5B4\t0x5B95\n0xE5B5\t0x5B93\n0xE5B6\t0x5BA5\n0xE5B7\t0x5BB8\n0xE5B8\t0x752F\n0xE5B9\t0x9A9E\n0xE5BA\t0x6434\n0xE5BB\t0x5BE4\n0xE5BC\t0x5BEE\n0xE5BD\t0x8930\n0xE5BE\t0x5BF0\n0xE5BF\t0x8E47\n0xE5C0\t0x8B07\n0xE5C1\t0x8FB6\n0xE5C2\t0x8FD3\n0xE5C3\t0x8FD5\n0xE5C4\t0x8FE5\n0xE5C5\t0x8FEE\n0xE5C6\t0x8FE4\n0xE5C7\t0x8FE9\n0xE5C8\t0x8FE6\n0xE5C9\t0x8FF3\n0xE5CA\t0x8FE8\n0xE5CB\t0x9005\n0xE5CC\t0x9004\n0xE5CD\t0x900B\n0xE5CE\t0x9026\n0xE5CF\t0x9011\n0xE5D0\t0x900D\n0xE5D1\t0x9016\n0xE5D2\t0x9021\n0xE5D3\t0x9035\n0xE5D4\t0x9036\n0xE5D5\t0x902D\n0xE5D6\t0x902F\n0xE5D7\t0x9044\n0xE5D8\t0x9051\n0xE5D9\t0x9052\n0xE5DA\t0x9050\n0xE5DB\t0x9068\n0xE5DC\t0x9058\n0xE5DD\t0x9062\n0xE5DE\t0x905B\n0xE5DF\t0x66B9\n0xE5E0\t0x9074\n0xE5E1\t0x907D\n0xE5E2\t0x9082\n0xE5E3\t0x9088\n0xE5E4\t0x9083\n0xE5E5\t0x908B\n0xE5E6\t0x5F50\n0xE5E7\t0x5F57\n0xE5E8\t0x5F56\n0xE5E9\t0x5F58\n0xE5EA\t0x5C3B\n0xE5EB\t0x54AB\n0xE5EC\t0x5C50\n0xE5ED\t0x5C59\n0xE5EE\t0x5B71\n0xE5EF\t0x5C63\n0xE5F0\t0x5C66\n0xE5F1\t0x7FBC\n0xE5F2\t0x5F2A\n0xE5F3\t0x5F29\n0xE5F4\t0x5F2D\n0xE5F5\t0x8274\n0xE5F6\t0x5F3C\n0xE5F7\t0x9B3B\n0xE5F8\t0x5C6E\n0xE5F9\t0x5981\n0xE5FA\t0x5983\n0xE5FB\t0x598D\n0xE5FC\t0x59A9\n0xE5FD\t0x59AA\n0xE5FE\t0x59A3\n0xE640\t0x936C\n0xE641\t0x936D\n0xE642\t0x936E\n0xE643\t0x936F\n0xE644\t0x9370\n0xE645\t0x9371\n0xE646\t0x9372\n0xE647\t0x9373\n0xE648\t0x9374\n0xE649\t0x9375\n0xE64A\t0x9376\n0xE64B\t0x9377\n0xE64C\t0x9378\n0xE64D\t0x9379\n0xE64E\t0x937A\n0xE64F\t0x937B\n0xE650\t0x937C\n0xE651\t0x937D\n0xE652\t0x937E\n0xE653\t0x937F\n0xE654\t0x9380\n0xE655\t0x9381\n0xE656\t0x9382\n0xE657\t0x9383\n0xE658\t0x9384\n0xE659\t0x9385\n0xE65A\t0x9386\n0xE65B\t0x9387\n0xE65C\t0x9388\n0xE65D\t0x9389\n0xE65E\t0x938A\n0xE65F\t0x938B\n0xE660\t0x938C\n0xE661\t0x938D\n0xE662\t0x938E\n0xE663\t0x9390\n0xE664\t0x9391\n0xE665\t0x9392\n0xE666\t0x9393\n0xE667\t0x9394\n0xE668\t0x9395\n0xE669\t0x9396\n0xE66A\t0x9397\n0xE66B\t0x9398\n0xE66C\t0x9399\n0xE66D\t0x939A\n0xE66E\t0x939B\n0xE66F\t0x939C\n0xE670\t0x939D\n0xE671\t0x939E\n0xE672\t0x939F\n0xE673\t0x93A0\n0xE674\t0x93A1\n0xE675\t0x93A2\n0xE676\t0x93A3\n0xE677\t0x93A4\n0xE678\t0x93A5\n0xE679\t0x93A6\n0xE67A\t0x93A7\n0xE67B\t0x93A8\n0xE67C\t0x93A9\n0xE67D\t0x93AA\n0xE67E\t0x93AB\n0xE680\t0x93AC\n0xE681\t0x93AD\n0xE682\t0x93AE\n0xE683\t0x93AF\n0xE684\t0x93B0\n0xE685\t0x93B1\n0xE686\t0x93B2\n0xE687\t0x93B3\n0xE688\t0x93B4\n0xE689\t0x93B5\n0xE68A\t0x93B6\n0xE68B\t0x93B7\n0xE68C\t0x93B8\n0xE68D\t0x93B9\n0xE68E\t0x93BA\n0xE68F\t0x93BB\n0xE690\t0x93BC\n0xE691\t0x93BD\n0xE692\t0x93BE\n0xE693\t0x93BF\n0xE694\t0x93C0\n0xE695\t0x93C1\n0xE696\t0x93C2\n0xE697\t0x93C3\n0xE698\t0x93C4\n0xE699\t0x93C5\n0xE69A\t0x93C6\n0xE69B\t0x93C7\n0xE69C\t0x93C8\n0xE69D\t0x93C9\n0xE69E\t0x93CB\n0xE69F\t0x93CC\n0xE6A0\t0x93CD\n0xE6A1\t0x5997\n0xE6A2\t0x59CA\n0xE6A3\t0x59AB\n0xE6A4\t0x599E\n0xE6A5\t0x59A4\n0xE6A6\t0x59D2\n0xE6A7\t0x59B2\n0xE6A8\t0x59AF\n0xE6A9\t0x59D7\n0xE6AA\t0x59BE\n0xE6AB\t0x5A05\n0xE6AC\t0x5A06\n0xE6AD\t0x59DD\n0xE6AE\t0x5A08\n0xE6AF\t0x59E3\n0xE6B0\t0x59D8\n0xE6B1\t0x59F9\n0xE6B2\t0x5A0C\n0xE6B3\t0x5A09\n0xE6B4\t0x5A32\n0xE6B5\t0x5A34\n0xE6B6\t0x5A11\n0xE6B7\t0x5A23\n0xE6B8\t0x5A13\n0xE6B9\t0x5A40\n0xE6BA\t0x5A67\n0xE6BB\t0x5A4A\n0xE6BC\t0x5A55\n0xE6BD\t0x5A3C\n0xE6BE\t0x5A62\n0xE6BF\t0x5A75\n0xE6C0\t0x80EC\n0xE6C1\t0x5AAA\n0xE6C2\t0x5A9B\n0xE6C3\t0x5A77\n0xE6C4\t0x5A7A\n0xE6C5\t0x5ABE\n0xE6C6\t0x5AEB\n0xE6C7\t0x5AB2\n0xE6C8\t0x5AD2\n0xE6C9\t0x5AD4\n0xE6CA\t0x5AB8\n0xE6CB\t0x5AE0\n0xE6CC\t0x5AE3\n0xE6CD\t0x5AF1\n0xE6CE\t0x5AD6\n0xE6CF\t0x5AE6\n0xE6D0\t0x5AD8\n0xE6D1\t0x5ADC\n0xE6D2\t0x5B09\n0xE6D3\t0x5B17\n0xE6D4\t0x5B16\n0xE6D5\t0x5B32\n0xE6D6\t0x5B37\n0xE6D7\t0x5B40\n0xE6D8\t0x5C15\n0xE6D9\t0x5C1C\n0xE6DA\t0x5B5A\n0xE6DB\t0x5B65\n0xE6DC\t0x5B73\n0xE6DD\t0x5B51\n0xE6DE\t0x5B53\n0xE6DF\t0x5B62\n0xE6E0\t0x9A75\n0xE6E1\t0x9A77\n0xE6E2\t0x9A78\n0xE6E3\t0x9A7A\n0xE6E4\t0x9A7F\n0xE6E5\t0x9A7D\n0xE6E6\t0x9A80\n0xE6E7\t0x9A81\n0xE6E8\t0x9A85\n0xE6E9\t0x9A88\n0xE6EA\t0x9A8A\n0xE6EB\t0x9A90\n0xE6EC\t0x9A92\n0xE6ED\t0x9A93\n0xE6EE\t0x9A96\n0xE6EF\t0x9A98\n0xE6F0\t0x9A9B\n0xE6F1\t0x9A9C\n0xE6F2\t0x9A9D\n0xE6F3\t0x9A9F\n0xE6F4\t0x9AA0\n0xE6F5\t0x9AA2\n0xE6F6\t0x9AA3\n0xE6F7\t0x9AA5\n0xE6F8\t0x9AA7\n0xE6F9\t0x7E9F\n0xE6FA\t0x7EA1\n0xE6FB\t0x7EA3\n0xE6FC\t0x7EA5\n0xE6FD\t0x7EA8\n0xE6FE\t0x7EA9\n0xE740\t0x93CE\n0xE741\t0x93CF\n0xE742\t0x93D0\n0xE743\t0x93D1\n0xE744\t0x93D2\n0xE745\t0x93D3\n0xE746\t0x93D4\n0xE747\t0x93D5\n0xE748\t0x93D7\n0xE749\t0x93D8\n0xE74A\t0x93D9\n0xE74B\t0x93DA\n0xE74C\t0x93DB\n0xE74D\t0x93DC\n0xE74E\t0x93DD\n0xE74F\t0x93DE\n0xE750\t0x93DF\n0xE751\t0x93E0\n0xE752\t0x93E1\n0xE753\t0x93E2\n0xE754\t0x93E3\n0xE755\t0x93E4\n0xE756\t0x93E5\n0xE757\t0x93E6\n0xE758\t0x93E7\n0xE759\t0x93E8\n0xE75A\t0x93E9\n0xE75B\t0x93EA\n0xE75C\t0x93EB\n0xE75D\t0x93EC\n0xE75E\t0x93ED\n0xE75F\t0x93EE\n0xE760\t0x93EF\n0xE761\t0x93F0\n0xE762\t0x93F1\n0xE763\t0x93F2\n0xE764\t0x93F3\n0xE765\t0x93F4\n0xE766\t0x93F5\n0xE767\t0x93F6\n0xE768\t0x93F7\n0xE769\t0x93F8\n0xE76A\t0x93F9\n0xE76B\t0x93FA\n0xE76C\t0x93FB\n0xE76D\t0x93FC\n0xE76E\t0x93FD\n0xE76F\t0x93FE\n0xE770\t0x93FF\n0xE771\t0x9400\n0xE772\t0x9401\n0xE773\t0x9402\n0xE774\t0x9403\n0xE775\t0x9404\n0xE776\t0x9405\n0xE777\t0x9406\n0xE778\t0x9407\n0xE779\t0x9408\n0xE77A\t0x9409\n0xE77B\t0x940A\n0xE77C\t0x940B\n0xE77D\t0x940C\n0xE77E\t0x940D\n0xE780\t0x940E\n0xE781\t0x940F\n0xE782\t0x9410\n0xE783\t0x9411\n0xE784\t0x9412\n0xE785\t0x9413\n0xE786\t0x9414\n0xE787\t0x9415\n0xE788\t0x9416\n0xE789\t0x9417\n0xE78A\t0x9418\n0xE78B\t0x9419\n0xE78C\t0x941A\n0xE78D\t0x941B\n0xE78E\t0x941C\n0xE78F\t0x941D\n0xE790\t0x941E\n0xE791\t0x941F\n0xE792\t0x9420\n0xE793\t0x9421\n0xE794\t0x9422\n0xE795\t0x9423\n0xE796\t0x9424\n0xE797\t0x9425\n0xE798\t0x9426\n0xE799\t0x9427\n0xE79A\t0x9428\n0xE79B\t0x9429\n0xE79C\t0x942A\n0xE79D\t0x942B\n0xE79E\t0x942C\n0xE79F\t0x942D\n0xE7A0\t0x942E\n0xE7A1\t0x7EAD\n0xE7A2\t0x7EB0\n0xE7A3\t0x7EBE\n0xE7A4\t0x7EC0\n0xE7A5\t0x7EC1\n0xE7A6\t0x7EC2\n0xE7A7\t0x7EC9\n0xE7A8\t0x7ECB\n0xE7A9\t0x7ECC\n0xE7AA\t0x7ED0\n0xE7AB\t0x7ED4\n0xE7AC\t0x7ED7\n0xE7AD\t0x7EDB\n0xE7AE\t0x7EE0\n0xE7AF\t0x7EE1\n0xE7B0\t0x7EE8\n0xE7B1\t0x7EEB\n0xE7B2\t0x7EEE\n0xE7B3\t0x7EEF\n0xE7B4\t0x7EF1\n0xE7B5\t0x7EF2\n0xE7B6\t0x7F0D\n0xE7B7\t0x7EF6\n0xE7B8\t0x7EFA\n0xE7B9\t0x7EFB\n0xE7BA\t0x7EFE\n0xE7BB\t0x7F01\n0xE7BC\t0x7F02\n0xE7BD\t0x7F03\n0xE7BE\t0x7F07\n0xE7BF\t0x7F08\n0xE7C0\t0x7F0B\n0xE7C1\t0x7F0C\n0xE7C2\t0x7F0F\n0xE7C3\t0x7F11\n0xE7C4\t0x7F12\n0xE7C5\t0x7F17\n0xE7C6\t0x7F19\n0xE7C7\t0x7F1C\n0xE7C8\t0x7F1B\n0xE7C9\t0x7F1F\n0xE7CA\t0x7F21\n0xE7CB\t0x7F22\n0xE7CC\t0x7F23\n0xE7CD\t0x7F24\n0xE7CE\t0x7F25\n0xE7CF\t0x7F26\n0xE7D0\t0x7F27\n0xE7D1\t0x7F2A\n0xE7D2\t0x7F2B\n0xE7D3\t0x7F2C\n0xE7D4\t0x7F2D\n0xE7D5\t0x7F2F\n0xE7D6\t0x7F30\n0xE7D7\t0x7F31\n0xE7D8\t0x7F32\n0xE7D9\t0x7F33\n0xE7DA\t0x7F35\n0xE7DB\t0x5E7A\n0xE7DC\t0x757F\n0xE7DD\t0x5DDB\n0xE7DE\t0x753E\n0xE7DF\t0x9095\n0xE7E0\t0x738E\n0xE7E1\t0x7391\n0xE7E2\t0x73AE\n0xE7E3\t0x73A2\n0xE7E4\t0x739F\n0xE7E5\t0x73CF\n0xE7E6\t0x73C2\n0xE7E7\t0x73D1\n0xE7E8\t0x73B7\n0xE7E9\t0x73B3\n0xE7EA\t0x73C0\n0xE7EB\t0x73C9\n0xE7EC\t0x73C8\n0xE7ED\t0x73E5\n0xE7EE\t0x73D9\n0xE7EF\t0x987C\n0xE7F0\t0x740A\n0xE7F1\t0x73E9\n0xE7F2\t0x73E7\n0xE7F3\t0x73DE\n0xE7F4\t0x73BA\n0xE7F5\t0x73F2\n0xE7F6\t0x740F\n0xE7F7\t0x742A\n0xE7F8\t0x745B\n0xE7F9\t0x7426\n0xE7FA\t0x7425\n0xE7FB\t0x7428\n0xE7FC\t0x7430\n0xE7FD\t0x742E\n0xE7FE\t0x742C\n0xE840\t0x942F\n0xE841\t0x9430\n0xE842\t0x9431\n0xE843\t0x9432\n0xE844\t0x9433\n0xE845\t0x9434\n0xE846\t0x9435\n0xE847\t0x9436\n0xE848\t0x9437\n0xE849\t0x9438\n0xE84A\t0x9439\n0xE84B\t0x943A\n0xE84C\t0x943B\n0xE84D\t0x943C\n0xE84E\t0x943D\n0xE84F\t0x943F\n0xE850\t0x9440\n0xE851\t0x9441\n0xE852\t0x9442\n0xE853\t0x9443\n0xE854\t0x9444\n0xE855\t0x9445\n0xE856\t0x9446\n0xE857\t0x9447\n0xE858\t0x9448\n0xE859\t0x9449\n0xE85A\t0x944A\n0xE85B\t0x944B\n0xE85C\t0x944C\n0xE85D\t0x944D\n0xE85E\t0x944E\n0xE85F\t0x944F\n0xE860\t0x9450\n0xE861\t0x9451\n0xE862\t0x9452\n0xE863\t0x9453\n0xE864\t0x9454\n0xE865\t0x9455\n0xE866\t0x9456\n0xE867\t0x9457\n0xE868\t0x9458\n0xE869\t0x9459\n0xE86A\t0x945A\n0xE86B\t0x945B\n0xE86C\t0x945C\n0xE86D\t0x945D\n0xE86E\t0x945E\n0xE86F\t0x945F\n0xE870\t0x9460\n0xE871\t0x9461\n0xE872\t0x9462\n0xE873\t0x9463\n0xE874\t0x9464\n0xE875\t0x9465\n0xE876\t0x9466\n0xE877\t0x9467\n0xE878\t0x9468\n0xE879\t0x9469\n0xE87A\t0x946A\n0xE87B\t0x946C\n0xE87C\t0x946D\n0xE87D\t0x946E\n0xE87E\t0x946F\n0xE880\t0x9470\n0xE881\t0x9471\n0xE882\t0x9472\n0xE883\t0x9473\n0xE884\t0x9474\n0xE885\t0x9475\n0xE886\t0x9476\n0xE887\t0x9477\n0xE888\t0x9478\n0xE889\t0x9479\n0xE88A\t0x947A\n0xE88B\t0x947B\n0xE88C\t0x947C\n0xE88D\t0x947D\n0xE88E\t0x947E\n0xE88F\t0x947F\n0xE890\t0x9480\n0xE891\t0x9481\n0xE892\t0x9482\n0xE893\t0x9483\n0xE894\t0x9484\n0xE895\t0x9491\n0xE896\t0x9496\n0xE897\t0x9498\n0xE898\t0x94C7\n0xE899\t0x94CF\n0xE89A\t0x94D3\n0xE89B\t0x94D4\n0xE89C\t0x94DA\n0xE89D\t0x94E6\n0xE89E\t0x94FB\n0xE89F\t0x951C\n0xE8A0\t0x9520\n0xE8A1\t0x741B\n0xE8A2\t0x741A\n0xE8A3\t0x7441\n0xE8A4\t0x745C\n0xE8A5\t0x7457\n0xE8A6\t0x7455\n0xE8A7\t0x7459\n0xE8A8\t0x7477\n0xE8A9\t0x746D\n0xE8AA\t0x747E\n0xE8AB\t0x749C\n0xE8AC\t0x748E\n0xE8AD\t0x7480\n0xE8AE\t0x7481\n0xE8AF\t0x7487\n0xE8B0\t0x748B\n0xE8B1\t0x749E\n0xE8B2\t0x74A8\n0xE8B3\t0x74A9\n0xE8B4\t0x7490\n0xE8B5\t0x74A7\n0xE8B6\t0x74D2\n0xE8B7\t0x74BA\n0xE8B8\t0x97EA\n0xE8B9\t0x97EB\n0xE8BA\t0x97EC\n0xE8BB\t0x674C\n0xE8BC\t0x6753\n0xE8BD\t0x675E\n0xE8BE\t0x6748\n0xE8BF\t0x6769\n0xE8C0\t0x67A5\n0xE8C1\t0x6787\n0xE8C2\t0x676A\n0xE8C3\t0x6773\n0xE8C4\t0x6798\n0xE8C5\t0x67A7\n0xE8C6\t0x6775\n0xE8C7\t0x67A8\n0xE8C8\t0x679E\n0xE8C9\t0x67AD\n0xE8CA\t0x678B\n0xE8CB\t0x6777\n0xE8CC\t0x677C\n0xE8CD\t0x67F0\n0xE8CE\t0x6809\n0xE8CF\t0x67D8\n0xE8D0\t0x680A\n0xE8D1\t0x67E9\n0xE8D2\t0x67B0\n0xE8D3\t0x680C\n0xE8D4\t0x67D9\n0xE8D5\t0x67B5\n0xE8D6\t0x67DA\n0xE8D7\t0x67B3\n0xE8D8\t0x67DD\n0xE8D9\t0x6800\n0xE8DA\t0x67C3\n0xE8DB\t0x67B8\n0xE8DC\t0x67E2\n0xE8DD\t0x680E\n0xE8DE\t0x67C1\n0xE8DF\t0x67FD\n0xE8E0\t0x6832\n0xE8E1\t0x6833\n0xE8E2\t0x6860\n0xE8E3\t0x6861\n0xE8E4\t0x684E\n0xE8E5\t0x6862\n0xE8E6\t0x6844\n0xE8E7\t0x6864\n0xE8E8\t0x6883\n0xE8E9\t0x681D\n0xE8EA\t0x6855\n0xE8EB\t0x6866\n0xE8EC\t0x6841\n0xE8ED\t0x6867\n0xE8EE\t0x6840\n0xE8EF\t0x683E\n0xE8F0\t0x684A\n0xE8F1\t0x6849\n0xE8F2\t0x6829\n0xE8F3\t0x68B5\n0xE8F4\t0x688F\n0xE8F5\t0x6874\n0xE8F6\t0x6877\n0xE8F7\t0x6893\n0xE8F8\t0x686B\n0xE8F9\t0x68C2\n0xE8FA\t0x696E\n0xE8FB\t0x68FC\n0xE8FC\t0x691F\n0xE8FD\t0x6920\n0xE8FE\t0x68F9\n0xE940\t0x9527\n0xE941\t0x9533\n0xE942\t0x953D\n0xE943\t0x9543\n0xE944\t0x9548\n0xE945\t0x954B\n0xE946\t0x9555\n0xE947\t0x955A\n0xE948\t0x9560\n0xE949\t0x956E\n0xE94A\t0x9574\n0xE94B\t0x9575\n0xE94C\t0x9577\n0xE94D\t0x9578\n0xE94E\t0x9579\n0xE94F\t0x957A\n0xE950\t0x957B\n0xE951\t0x957C\n0xE952\t0x957D\n0xE953\t0x957E\n0xE954\t0x9580\n0xE955\t0x9581\n0xE956\t0x9582\n0xE957\t0x9583\n0xE958\t0x9584\n0xE959\t0x9585\n0xE95A\t0x9586\n0xE95B\t0x9587\n0xE95C\t0x9588\n0xE95D\t0x9589\n0xE95E\t0x958A\n0xE95F\t0x958B\n0xE960\t0x958C\n0xE961\t0x958D\n0xE962\t0x958E\n0xE963\t0x958F\n0xE964\t0x9590\n0xE965\t0x9591\n0xE966\t0x9592\n0xE967\t0x9593\n0xE968\t0x9594\n0xE969\t0x9595\n0xE96A\t0x9596\n0xE96B\t0x9597\n0xE96C\t0x9598\n0xE96D\t0x9599\n0xE96E\t0x959A\n0xE96F\t0x959B\n0xE970\t0x959C\n0xE971\t0x959D\n0xE972\t0x959E\n0xE973\t0x959F\n0xE974\t0x95A0\n0xE975\t0x95A1\n0xE976\t0x95A2\n0xE977\t0x95A3\n0xE978\t0x95A4\n0xE979\t0x95A5\n0xE97A\t0x95A6\n0xE97B\t0x95A7\n0xE97C\t0x95A8\n0xE97D\t0x95A9\n0xE97E\t0x95AA\n0xE980\t0x95AB\n0xE981\t0x95AC\n0xE982\t0x95AD\n0xE983\t0x95AE\n0xE984\t0x95AF\n0xE985\t0x95B0\n0xE986\t0x95B1\n0xE987\t0x95B2\n0xE988\t0x95B3\n0xE989\t0x95B4\n0xE98A\t0x95B5\n0xE98B\t0x95B6\n0xE98C\t0x95B7\n0xE98D\t0x95B8\n0xE98E\t0x95B9\n0xE98F\t0x95BA\n0xE990\t0x95BB\n0xE991\t0x95BC\n0xE992\t0x95BD\n0xE993\t0x95BE\n0xE994\t0x95BF\n0xE995\t0x95C0\n0xE996\t0x95C1\n0xE997\t0x95C2\n0xE998\t0x95C3\n0xE999\t0x95C4\n0xE99A\t0x95C5\n0xE99B\t0x95C6\n0xE99C\t0x95C7\n0xE99D\t0x95C8\n0xE99E\t0x95C9\n0xE99F\t0x95CA\n0xE9A0\t0x95CB\n0xE9A1\t0x6924\n0xE9A2\t0x68F0\n0xE9A3\t0x690B\n0xE9A4\t0x6901\n0xE9A5\t0x6957\n0xE9A6\t0x68E3\n0xE9A7\t0x6910\n0xE9A8\t0x6971\n0xE9A9\t0x6939\n0xE9AA\t0x6960\n0xE9AB\t0x6942\n0xE9AC\t0x695D\n0xE9AD\t0x6984\n0xE9AE\t0x696B\n0xE9AF\t0x6980\n0xE9B0\t0x6998\n0xE9B1\t0x6978\n0xE9B2\t0x6934\n0xE9B3\t0x69CC\n0xE9B4\t0x6987\n0xE9B5\t0x6988\n0xE9B6\t0x69CE\n0xE9B7\t0x6989\n0xE9B8\t0x6966\n0xE9B9\t0x6963\n0xE9BA\t0x6979\n0xE9BB\t0x699B\n0xE9BC\t0x69A7\n0xE9BD\t0x69BB\n0xE9BE\t0x69AB\n0xE9BF\t0x69AD\n0xE9C0\t0x69D4\n0xE9C1\t0x69B1\n0xE9C2\t0x69C1\n0xE9C3\t0x69CA\n0xE9C4\t0x69DF\n0xE9C5\t0x6995\n0xE9C6\t0x69E0\n0xE9C7\t0x698D\n0xE9C8\t0x69FF\n0xE9C9\t0x6A2F\n0xE9CA\t0x69ED\n0xE9CB\t0x6A17\n0xE9CC\t0x6A18\n0xE9CD\t0x6A65\n0xE9CE\t0x69F2\n0xE9CF\t0x6A44\n0xE9D0\t0x6A3E\n0xE9D1\t0x6AA0\n0xE9D2\t0x6A50\n0xE9D3\t0x6A5B\n0xE9D4\t0x6A35\n0xE9D5\t0x6A8E\n0xE9D6\t0x6A79\n0xE9D7\t0x6A3D\n0xE9D8\t0x6A28\n0xE9D9\t0x6A58\n0xE9DA\t0x6A7C\n0xE9DB\t0x6A91\n0xE9DC\t0x6A90\n0xE9DD\t0x6AA9\n0xE9DE\t0x6A97\n0xE9DF\t0x6AAB\n0xE9E0\t0x7337\n0xE9E1\t0x7352\n0xE9E2\t0x6B81\n0xE9E3\t0x6B82\n0xE9E4\t0x6B87\n0xE9E5\t0x6B84\n0xE9E6\t0x6B92\n0xE9E7\t0x6B93\n0xE9E8\t0x6B8D\n0xE9E9\t0x6B9A\n0xE9EA\t0x6B9B\n0xE9EB\t0x6BA1\n0xE9EC\t0x6BAA\n0xE9ED\t0x8F6B\n0xE9EE\t0x8F6D\n0xE9EF\t0x8F71\n0xE9F0\t0x8F72\n0xE9F1\t0x8F73\n0xE9F2\t0x8F75\n0xE9F3\t0x8F76\n0xE9F4\t0x8F78\n0xE9F5\t0x8F77\n0xE9F6\t0x8F79\n0xE9F7\t0x8F7A\n0xE9F8\t0x8F7C\n0xE9F9\t0x8F7E\n0xE9FA\t0x8F81\n0xE9FB\t0x8F82\n0xE9FC\t0x8F84\n0xE9FD\t0x8F87\n0xE9FE\t0x8F8B\n0xEA40\t0x95CC\n0xEA41\t0x95CD\n0xEA42\t0x95CE\n0xEA43\t0x95CF\n0xEA44\t0x95D0\n0xEA45\t0x95D1\n0xEA46\t0x95D2\n0xEA47\t0x95D3\n0xEA48\t0x95D4\n0xEA49\t0x95D5\n0xEA4A\t0x95D6\n0xEA4B\t0x95D7\n0xEA4C\t0x95D8\n0xEA4D\t0x95D9\n0xEA4E\t0x95DA\n0xEA4F\t0x95DB\n0xEA50\t0x95DC\n0xEA51\t0x95DD\n0xEA52\t0x95DE\n0xEA53\t0x95DF\n0xEA54\t0x95E0\n0xEA55\t0x95E1\n0xEA56\t0x95E2\n0xEA57\t0x95E3\n0xEA58\t0x95E4\n0xEA59\t0x95E5\n0xEA5A\t0x95E6\n0xEA5B\t0x95E7\n0xEA5C\t0x95EC\n0xEA5D\t0x95FF\n0xEA5E\t0x9607\n0xEA5F\t0x9613\n0xEA60\t0x9618\n0xEA61\t0x961B\n0xEA62\t0x961E\n0xEA63\t0x9620\n0xEA64\t0x9623\n0xEA65\t0x9624\n0xEA66\t0x9625\n0xEA67\t0x9626\n0xEA68\t0x9627\n0xEA69\t0x9628\n0xEA6A\t0x9629\n0xEA6B\t0x962B\n0xEA6C\t0x962C\n0xEA6D\t0x962D\n0xEA6E\t0x962F\n0xEA6F\t0x9630\n0xEA70\t0x9637\n0xEA71\t0x9638\n0xEA72\t0x9639\n0xEA73\t0x963A\n0xEA74\t0x963E\n0xEA75\t0x9641\n0xEA76\t0x9643\n0xEA77\t0x964A\n0xEA78\t0x964E\n0xEA79\t0x964F\n0xEA7A\t0x9651\n0xEA7B\t0x9652\n0xEA7C\t0x9653\n0xEA7D\t0x9656\n0xEA7E\t0x9657\n0xEA80\t0x9658\n0xEA81\t0x9659\n0xEA82\t0x965A\n0xEA83\t0x965C\n0xEA84\t0x965D\n0xEA85\t0x965E\n0xEA86\t0x9660\n0xEA87\t0x9663\n0xEA88\t0x9665\n0xEA89\t0x9666\n0xEA8A\t0x966B\n0xEA8B\t0x966D\n0xEA8C\t0x966E\n0xEA8D\t0x966F\n0xEA8E\t0x9670\n0xEA8F\t0x9671\n0xEA90\t0x9673\n0xEA91\t0x9678\n0xEA92\t0x9679\n0xEA93\t0x967A\n0xEA94\t0x967B\n0xEA95\t0x967C\n0xEA96\t0x967D\n0xEA97\t0x967E\n0xEA98\t0x967F\n0xEA99\t0x9680\n0xEA9A\t0x9681\n0xEA9B\t0x9682\n0xEA9C\t0x9683\n0xEA9D\t0x9684\n0xEA9E\t0x9687\n0xEA9F\t0x9689\n0xEAA0\t0x968A\n0xEAA1\t0x8F8D\n0xEAA2\t0x8F8E\n0xEAA3\t0x8F8F\n0xEAA4\t0x8F98\n0xEAA5\t0x8F9A\n0xEAA6\t0x8ECE\n0xEAA7\t0x620B\n0xEAA8\t0x6217\n0xEAA9\t0x621B\n0xEAAA\t0x621F\n0xEAAB\t0x6222\n0xEAAC\t0x6221\n0xEAAD\t0x6225\n0xEAAE\t0x6224\n0xEAAF\t0x622C\n0xEAB0\t0x81E7\n0xEAB1\t0x74EF\n0xEAB2\t0x74F4\n0xEAB3\t0x74FF\n0xEAB4\t0x750F\n0xEAB5\t0x7511\n0xEAB6\t0x7513\n0xEAB7\t0x6534\n0xEAB8\t0x65EE\n0xEAB9\t0x65EF\n0xEABA\t0x65F0\n0xEABB\t0x660A\n0xEABC\t0x6619\n0xEABD\t0x6772\n0xEABE\t0x6603\n0xEABF\t0x6615\n0xEAC0\t0x6600\n0xEAC1\t0x7085\n0xEAC2\t0x66F7\n0xEAC3\t0x661D\n0xEAC4\t0x6634\n0xEAC5\t0x6631\n0xEAC6\t0x6636\n0xEAC7\t0x6635\n0xEAC8\t0x8006\n0xEAC9\t0x665F\n0xEACA\t0x6654\n0xEACB\t0x6641\n0xEACC\t0x664F\n0xEACD\t0x6656\n0xEACE\t0x6661\n0xEACF\t0x6657\n0xEAD0\t0x6677\n0xEAD1\t0x6684\n0xEAD2\t0x668C\n0xEAD3\t0x66A7\n0xEAD4\t0x669D\n0xEAD5\t0x66BE\n0xEAD6\t0x66DB\n0xEAD7\t0x66DC\n0xEAD8\t0x66E6\n0xEAD9\t0x66E9\n0xEADA\t0x8D32\n0xEADB\t0x8D33\n0xEADC\t0x8D36\n0xEADD\t0x8D3B\n0xEADE\t0x8D3D\n0xEADF\t0x8D40\n0xEAE0\t0x8D45\n0xEAE1\t0x8D46\n0xEAE2\t0x8D48\n0xEAE3\t0x8D49\n0xEAE4\t0x8D47\n0xEAE5\t0x8D4D\n0xEAE6\t0x8D55\n0xEAE7\t0x8D59\n0xEAE8\t0x89C7\n0xEAE9\t0x89CA\n0xEAEA\t0x89CB\n0xEAEB\t0x89CC\n0xEAEC\t0x89CE\n0xEAED\t0x89CF\n0xEAEE\t0x89D0\n0xEAEF\t0x89D1\n0xEAF0\t0x726E\n0xEAF1\t0x729F\n0xEAF2\t0x725D\n0xEAF3\t0x7266\n0xEAF4\t0x726F\n0xEAF5\t0x727E\n0xEAF6\t0x727F\n0xEAF7\t0x7284\n0xEAF8\t0x728B\n0xEAF9\t0x728D\n0xEAFA\t0x728F\n0xEAFB\t0x7292\n0xEAFC\t0x6308\n0xEAFD\t0x6332\n0xEAFE\t0x63B0\n0xEB40\t0x968C\n0xEB41\t0x968E\n0xEB42\t0x9691\n0xEB43\t0x9692\n0xEB44\t0x9693\n0xEB45\t0x9695\n0xEB46\t0x9696\n0xEB47\t0x969A\n0xEB48\t0x969B\n0xEB49\t0x969D\n0xEB4A\t0x969E\n0xEB4B\t0x969F\n0xEB4C\t0x96A0\n0xEB4D\t0x96A1\n0xEB4E\t0x96A2\n0xEB4F\t0x96A3\n0xEB50\t0x96A4\n0xEB51\t0x96A5\n0xEB52\t0x96A6\n0xEB53\t0x96A8\n0xEB54\t0x96A9\n0xEB55\t0x96AA\n0xEB56\t0x96AB\n0xEB57\t0x96AC\n0xEB58\t0x96AD\n0xEB59\t0x96AE\n0xEB5A\t0x96AF\n0xEB5B\t0x96B1\n0xEB5C\t0x96B2\n0xEB5D\t0x96B4\n0xEB5E\t0x96B5\n0xEB5F\t0x96B7\n0xEB60\t0x96B8\n0xEB61\t0x96BA\n0xEB62\t0x96BB\n0xEB63\t0x96BF\n0xEB64\t0x96C2\n0xEB65\t0x96C3\n0xEB66\t0x96C8\n0xEB67\t0x96CA\n0xEB68\t0x96CB\n0xEB69\t0x96D0\n0xEB6A\t0x96D1\n0xEB6B\t0x96D3\n0xEB6C\t0x96D4\n0xEB6D\t0x96D6\n0xEB6E\t0x96D7\n0xEB6F\t0x96D8\n0xEB70\t0x96D9\n0xEB71\t0x96DA\n0xEB72\t0x96DB\n0xEB73\t0x96DC\n0xEB74\t0x96DD\n0xEB75\t0x96DE\n0xEB76\t0x96DF\n0xEB77\t0x96E1\n0xEB78\t0x96E2\n0xEB79\t0x96E3\n0xEB7A\t0x96E4\n0xEB7B\t0x96E5\n0xEB7C\t0x96E6\n0xEB7D\t0x96E7\n0xEB7E\t0x96EB\n0xEB80\t0x96EC\n0xEB81\t0x96ED\n0xEB82\t0x96EE\n0xEB83\t0x96F0\n0xEB84\t0x96F1\n0xEB85\t0x96F2\n0xEB86\t0x96F4\n0xEB87\t0x96F5\n0xEB88\t0x96F8\n0xEB89\t0x96FA\n0xEB8A\t0x96FB\n0xEB8B\t0x96FC\n0xEB8C\t0x96FD\n0xEB8D\t0x96FF\n0xEB8E\t0x9702\n0xEB8F\t0x9703\n0xEB90\t0x9705\n0xEB91\t0x970A\n0xEB92\t0x970B\n0xEB93\t0x970C\n0xEB94\t0x9710\n0xEB95\t0x9711\n0xEB96\t0x9712\n0xEB97\t0x9714\n0xEB98\t0x9715\n0xEB99\t0x9717\n0xEB9A\t0x9718\n0xEB9B\t0x9719\n0xEB9C\t0x971A\n0xEB9D\t0x971B\n0xEB9E\t0x971D\n0xEB9F\t0x971F\n0xEBA0\t0x9720\n0xEBA1\t0x643F\n0xEBA2\t0x64D8\n0xEBA3\t0x8004\n0xEBA4\t0x6BEA\n0xEBA5\t0x6BF3\n0xEBA6\t0x6BFD\n0xEBA7\t0x6BF5\n0xEBA8\t0x6BF9\n0xEBA9\t0x6C05\n0xEBAA\t0x6C07\n0xEBAB\t0x6C06\n0xEBAC\t0x6C0D\n0xEBAD\t0x6C15\n0xEBAE\t0x6C18\n0xEBAF\t0x6C19\n0xEBB0\t0x6C1A\n0xEBB1\t0x6C21\n0xEBB2\t0x6C29\n0xEBB3\t0x6C24\n0xEBB4\t0x6C2A\n0xEBB5\t0x6C32\n0xEBB6\t0x6535\n0xEBB7\t0x6555\n0xEBB8\t0x656B\n0xEBB9\t0x724D\n0xEBBA\t0x7252\n0xEBBB\t0x7256\n0xEBBC\t0x7230\n0xEBBD\t0x8662\n0xEBBE\t0x5216\n0xEBBF\t0x809F\n0xEBC0\t0x809C\n0xEBC1\t0x8093\n0xEBC2\t0x80BC\n0xEBC3\t0x670A\n0xEBC4\t0x80BD\n0xEBC5\t0x80B1\n0xEBC6\t0x80AB\n0xEBC7\t0x80AD\n0xEBC8\t0x80B4\n0xEBC9\t0x80B7\n0xEBCA\t0x80E7\n0xEBCB\t0x80E8\n0xEBCC\t0x80E9\n0xEBCD\t0x80EA\n0xEBCE\t0x80DB\n0xEBCF\t0x80C2\n0xEBD0\t0x80C4\n0xEBD1\t0x80D9\n0xEBD2\t0x80CD\n0xEBD3\t0x80D7\n0xEBD4\t0x6710\n0xEBD5\t0x80DD\n0xEBD6\t0x80EB\n0xEBD7\t0x80F1\n0xEBD8\t0x80F4\n0xEBD9\t0x80ED\n0xEBDA\t0x810D\n0xEBDB\t0x810E\n0xEBDC\t0x80F2\n0xEBDD\t0x80FC\n0xEBDE\t0x6715\n0xEBDF\t0x8112\n0xEBE0\t0x8C5A\n0xEBE1\t0x8136\n0xEBE2\t0x811E\n0xEBE3\t0x812C\n0xEBE4\t0x8118\n0xEBE5\t0x8132\n0xEBE6\t0x8148\n0xEBE7\t0x814C\n0xEBE8\t0x8153\n0xEBE9\t0x8174\n0xEBEA\t0x8159\n0xEBEB\t0x815A\n0xEBEC\t0x8171\n0xEBED\t0x8160\n0xEBEE\t0x8169\n0xEBEF\t0x817C\n0xEBF0\t0x817D\n0xEBF1\t0x816D\n0xEBF2\t0x8167\n0xEBF3\t0x584D\n0xEBF4\t0x5AB5\n0xEBF5\t0x8188\n0xEBF6\t0x8182\n0xEBF7\t0x8191\n0xEBF8\t0x6ED5\n0xEBF9\t0x81A3\n0xEBFA\t0x81AA\n0xEBFB\t0x81CC\n0xEBFC\t0x6726\n0xEBFD\t0x81CA\n0xEBFE\t0x81BB\n0xEC40\t0x9721\n0xEC41\t0x9722\n0xEC42\t0x9723\n0xEC43\t0x9724\n0xEC44\t0x9725\n0xEC45\t0x9726\n0xEC46\t0x9727\n0xEC47\t0x9728\n0xEC48\t0x9729\n0xEC49\t0x972B\n0xEC4A\t0x972C\n0xEC4B\t0x972E\n0xEC4C\t0x972F\n0xEC4D\t0x9731\n0xEC4E\t0x9733\n0xEC4F\t0x9734\n0xEC50\t0x9735\n0xEC51\t0x9736\n0xEC52\t0x9737\n0xEC53\t0x973A\n0xEC54\t0x973B\n0xEC55\t0x973C\n0xEC56\t0x973D\n0xEC57\t0x973F\n0xEC58\t0x9740\n0xEC59\t0x9741\n0xEC5A\t0x9742\n0xEC5B\t0x9743\n0xEC5C\t0x9744\n0xEC5D\t0x9745\n0xEC5E\t0x9746\n0xEC5F\t0x9747\n0xEC60\t0x9748\n0xEC61\t0x9749\n0xEC62\t0x974A\n0xEC63\t0x974B\n0xEC64\t0x974C\n0xEC65\t0x974D\n0xEC66\t0x974E\n0xEC67\t0x974F\n0xEC68\t0x9750\n0xEC69\t0x9751\n0xEC6A\t0x9754\n0xEC6B\t0x9755\n0xEC6C\t0x9757\n0xEC6D\t0x9758\n0xEC6E\t0x975A\n0xEC6F\t0x975C\n0xEC70\t0x975D\n0xEC71\t0x975F\n0xEC72\t0x9763\n0xEC73\t0x9764\n0xEC74\t0x9766\n0xEC75\t0x9767\n0xEC76\t0x9768\n0xEC77\t0x976A\n0xEC78\t0x976B\n0xEC79\t0x976C\n0xEC7A\t0x976D\n0xEC7B\t0x976E\n0xEC7C\t0x976F\n0xEC7D\t0x9770\n0xEC7E\t0x9771\n0xEC80\t0x9772\n0xEC81\t0x9775\n0xEC82\t0x9777\n0xEC83\t0x9778\n0xEC84\t0x9779\n0xEC85\t0x977A\n0xEC86\t0x977B\n0xEC87\t0x977D\n0xEC88\t0x977E\n0xEC89\t0x977F\n0xEC8A\t0x9780\n0xEC8B\t0x9781\n0xEC8C\t0x9782\n0xEC8D\t0x9783\n0xEC8E\t0x9784\n0xEC8F\t0x9786\n0xEC90\t0x9787\n0xEC91\t0x9788\n0xEC92\t0x9789\n0xEC93\t0x978A\n0xEC94\t0x978C\n0xEC95\t0x978E\n0xEC96\t0x978F\n0xEC97\t0x9790\n0xEC98\t0x9793\n0xEC99\t0x9795\n0xEC9A\t0x9796\n0xEC9B\t0x9797\n0xEC9C\t0x9799\n0xEC9D\t0x979A\n0xEC9E\t0x979B\n0xEC9F\t0x979C\n0xECA0\t0x979D\n0xECA1\t0x81C1\n0xECA2\t0x81A6\n0xECA3\t0x6B24\n0xECA4\t0x6B37\n0xECA5\t0x6B39\n0xECA6\t0x6B43\n0xECA7\t0x6B46\n0xECA8\t0x6B59\n0xECA9\t0x98D1\n0xECAA\t0x98D2\n0xECAB\t0x98D3\n0xECAC\t0x98D5\n0xECAD\t0x98D9\n0xECAE\t0x98DA\n0xECAF\t0x6BB3\n0xECB0\t0x5F40\n0xECB1\t0x6BC2\n0xECB2\t0x89F3\n0xECB3\t0x6590\n0xECB4\t0x9F51\n0xECB5\t0x6593\n0xECB6\t0x65BC\n0xECB7\t0x65C6\n0xECB8\t0x65C4\n0xECB9\t0x65C3\n0xECBA\t0x65CC\n0xECBB\t0x65CE\n0xECBC\t0x65D2\n0xECBD\t0x65D6\n0xECBE\t0x7080\n0xECBF\t0x709C\n0xECC0\t0x7096\n0xECC1\t0x709D\n0xECC2\t0x70BB\n0xECC3\t0x70C0\n0xECC4\t0x70B7\n0xECC5\t0x70AB\n0xECC6\t0x70B1\n0xECC7\t0x70E8\n0xECC8\t0x70CA\n0xECC9\t0x7110\n0xECCA\t0x7113\n0xECCB\t0x7116\n0xECCC\t0x712F\n0xECCD\t0x7131\n0xECCE\t0x7173\n0xECCF\t0x715C\n0xECD0\t0x7168\n0xECD1\t0x7145\n0xECD2\t0x7172\n0xECD3\t0x714A\n0xECD4\t0x7178\n0xECD5\t0x717A\n0xECD6\t0x7198\n0xECD7\t0x71B3\n0xECD8\t0x71B5\n0xECD9\t0x71A8\n0xECDA\t0x71A0\n0xECDB\t0x71E0\n0xECDC\t0x71D4\n0xECDD\t0x71E7\n0xECDE\t0x71F9\n0xECDF\t0x721D\n0xECE0\t0x7228\n0xECE1\t0x706C\n0xECE2\t0x7118\n0xECE3\t0x7166\n0xECE4\t0x71B9\n0xECE5\t0x623E\n0xECE6\t0x623D\n0xECE7\t0x6243\n0xECE8\t0x6248\n0xECE9\t0x6249\n0xECEA\t0x793B\n0xECEB\t0x7940\n0xECEC\t0x7946\n0xECED\t0x7949\n0xECEE\t0x795B\n0xECEF\t0x795C\n0xECF0\t0x7953\n0xECF1\t0x795A\n0xECF2\t0x7962\n0xECF3\t0x7957\n0xECF4\t0x7960\n0xECF5\t0x796F\n0xECF6\t0x7967\n0xECF7\t0x797A\n0xECF8\t0x7985\n0xECF9\t0x798A\n0xECFA\t0x799A\n0xECFB\t0x79A7\n0xECFC\t0x79B3\n0xECFD\t0x5FD1\n0xECFE\t0x5FD0\n0xED40\t0x979E\n0xED41\t0x979F\n0xED42\t0x97A1\n0xED43\t0x97A2\n0xED44\t0x97A4\n0xED45\t0x97A5\n0xED46\t0x97A6\n0xED47\t0x97A7\n0xED48\t0x97A8\n0xED49\t0x97A9\n0xED4A\t0x97AA\n0xED4B\t0x97AC\n0xED4C\t0x97AE\n0xED4D\t0x97B0\n0xED4E\t0x97B1\n0xED4F\t0x97B3\n0xED50\t0x97B5\n0xED51\t0x97B6\n0xED52\t0x97B7\n0xED53\t0x97B8\n0xED54\t0x97B9\n0xED55\t0x97BA\n0xED56\t0x97BB\n0xED57\t0x97BC\n0xED58\t0x97BD\n0xED59\t0x97BE\n0xED5A\t0x97BF\n0xED5B\t0x97C0\n0xED5C\t0x97C1\n0xED5D\t0x97C2\n0xED5E\t0x97C3\n0xED5F\t0x97C4\n0xED60\t0x97C5\n0xED61\t0x97C6\n0xED62\t0x97C7\n0xED63\t0x97C8\n0xED64\t0x97C9\n0xED65\t0x97CA\n0xED66\t0x97CB\n0xED67\t0x97CC\n0xED68\t0x97CD\n0xED69\t0x97CE\n0xED6A\t0x97CF\n0xED6B\t0x97D0\n0xED6C\t0x97D1\n0xED6D\t0x97D2\n0xED6E\t0x97D3\n0xED6F\t0x97D4\n0xED70\t0x97D5\n0xED71\t0x97D6\n0xED72\t0x97D7\n0xED73\t0x97D8\n0xED74\t0x97D9\n0xED75\t0x97DA\n0xED76\t0x97DB\n0xED77\t0x97DC\n0xED78\t0x97DD\n0xED79\t0x97DE\n0xED7A\t0x97DF\n0xED7B\t0x97E0\n0xED7C\t0x97E1\n0xED7D\t0x97E2\n0xED7E\t0x97E3\n0xED80\t0x97E4\n0xED81\t0x97E5\n0xED82\t0x97E8\n0xED83\t0x97EE\n0xED84\t0x97EF\n0xED85\t0x97F0\n0xED86\t0x97F1\n0xED87\t0x97F2\n0xED88\t0x97F4\n0xED89\t0x97F7\n0xED8A\t0x97F8\n0xED8B\t0x97F9\n0xED8C\t0x97FA\n0xED8D\t0x97FB\n0xED8E\t0x97FC\n0xED8F\t0x97FD\n0xED90\t0x97FE\n0xED91\t0x97FF\n0xED92\t0x9800\n0xED93\t0x9801\n0xED94\t0x9802\n0xED95\t0x9803\n0xED96\t0x9804\n0xED97\t0x9805\n0xED98\t0x9806\n0xED99\t0x9807\n0xED9A\t0x9808\n0xED9B\t0x9809\n0xED9C\t0x980A\n0xED9D\t0x980B\n0xED9E\t0x980C\n0xED9F\t0x980D\n0xEDA0\t0x980E\n0xEDA1\t0x603C\n0xEDA2\t0x605D\n0xEDA3\t0x605A\n0xEDA4\t0x6067\n0xEDA5\t0x6041\n0xEDA6\t0x6059\n0xEDA7\t0x6063\n0xEDA8\t0x60AB\n0xEDA9\t0x6106\n0xEDAA\t0x610D\n0xEDAB\t0x615D\n0xEDAC\t0x61A9\n0xEDAD\t0x619D\n0xEDAE\t0x61CB\n0xEDAF\t0x61D1\n0xEDB0\t0x6206\n0xEDB1\t0x8080\n0xEDB2\t0x807F\n0xEDB3\t0x6C93\n0xEDB4\t0x6CF6\n0xEDB5\t0x6DFC\n0xEDB6\t0x77F6\n0xEDB7\t0x77F8\n0xEDB8\t0x7800\n0xEDB9\t0x7809\n0xEDBA\t0x7817\n0xEDBB\t0x7818\n0xEDBC\t0x7811\n0xEDBD\t0x65AB\n0xEDBE\t0x782D\n0xEDBF\t0x781C\n0xEDC0\t0x781D\n0xEDC1\t0x7839\n0xEDC2\t0x783A\n0xEDC3\t0x783B\n0xEDC4\t0x781F\n0xEDC5\t0x783C\n0xEDC6\t0x7825\n0xEDC7\t0x782C\n0xEDC8\t0x7823\n0xEDC9\t0x7829\n0xEDCA\t0x784E\n0xEDCB\t0x786D\n0xEDCC\t0x7856\n0xEDCD\t0x7857\n0xEDCE\t0x7826\n0xEDCF\t0x7850\n0xEDD0\t0x7847\n0xEDD1\t0x784C\n0xEDD2\t0x786A\n0xEDD3\t0x789B\n0xEDD4\t0x7893\n0xEDD5\t0x789A\n0xEDD6\t0x7887\n0xEDD7\t0x789C\n0xEDD8\t0x78A1\n0xEDD9\t0x78A3\n0xEDDA\t0x78B2\n0xEDDB\t0x78B9\n0xEDDC\t0x78A5\n0xEDDD\t0x78D4\n0xEDDE\t0x78D9\n0xEDDF\t0x78C9\n0xEDE0\t0x78EC\n0xEDE1\t0x78F2\n0xEDE2\t0x7905\n0xEDE3\t0x78F4\n0xEDE4\t0x7913\n0xEDE5\t0x7924\n0xEDE6\t0x791E\n0xEDE7\t0x7934\n0xEDE8\t0x9F9B\n0xEDE9\t0x9EF9\n0xEDEA\t0x9EFB\n0xEDEB\t0x9EFC\n0xEDEC\t0x76F1\n0xEDED\t0x7704\n0xEDEE\t0x770D\n0xEDEF\t0x76F9\n0xEDF0\t0x7707\n0xEDF1\t0x7708\n0xEDF2\t0x771A\n0xEDF3\t0x7722\n0xEDF4\t0x7719\n0xEDF5\t0x772D\n0xEDF6\t0x7726\n0xEDF7\t0x7735\n0xEDF8\t0x7738\n0xEDF9\t0x7750\n0xEDFA\t0x7751\n0xEDFB\t0x7747\n0xEDFC\t0x7743\n0xEDFD\t0x775A\n0xEDFE\t0x7768\n0xEE40\t0x980F\n0xEE41\t0x9810\n0xEE42\t0x9811\n0xEE43\t0x9812\n0xEE44\t0x9813\n0xEE45\t0x9814\n0xEE46\t0x9815\n0xEE47\t0x9816\n0xEE48\t0x9817\n0xEE49\t0x9818\n0xEE4A\t0x9819\n0xEE4B\t0x981A\n0xEE4C\t0x981B\n0xEE4D\t0x981C\n0xEE4E\t0x981D\n0xEE4F\t0x981E\n0xEE50\t0x981F\n0xEE51\t0x9820\n0xEE52\t0x9821\n0xEE53\t0x9822\n0xEE54\t0x9823\n0xEE55\t0x9824\n0xEE56\t0x9825\n0xEE57\t0x9826\n0xEE58\t0x9827\n0xEE59\t0x9828\n0xEE5A\t0x9829\n0xEE5B\t0x982A\n0xEE5C\t0x982B\n0xEE5D\t0x982C\n0xEE5E\t0x982D\n0xEE5F\t0x982E\n0xEE60\t0x982F\n0xEE61\t0x9830\n0xEE62\t0x9831\n0xEE63\t0x9832\n0xEE64\t0x9833\n0xEE65\t0x9834\n0xEE66\t0x9835\n0xEE67\t0x9836\n0xEE68\t0x9837\n0xEE69\t0x9838\n0xEE6A\t0x9839\n0xEE6B\t0x983A\n0xEE6C\t0x983B\n0xEE6D\t0x983C\n0xEE6E\t0x983D\n0xEE6F\t0x983E\n0xEE70\t0x983F\n0xEE71\t0x9840\n0xEE72\t0x9841\n0xEE73\t0x9842\n0xEE74\t0x9843\n0xEE75\t0x9844\n0xEE76\t0x9845\n0xEE77\t0x9846\n0xEE78\t0x9847\n0xEE79\t0x9848\n0xEE7A\t0x9849\n0xEE7B\t0x984A\n0xEE7C\t0x984B\n0xEE7D\t0x984C\n0xEE7E\t0x984D\n0xEE80\t0x984E\n0xEE81\t0x984F\n0xEE82\t0x9850\n0xEE83\t0x9851\n0xEE84\t0x9852\n0xEE85\t0x9853\n0xEE86\t0x9854\n0xEE87\t0x9855\n0xEE88\t0x9856\n0xEE89\t0x9857\n0xEE8A\t0x9858\n0xEE8B\t0x9859\n0xEE8C\t0x985A\n0xEE8D\t0x985B\n0xEE8E\t0x985C\n0xEE8F\t0x985D\n0xEE90\t0x985E\n0xEE91\t0x985F\n0xEE92\t0x9860\n0xEE93\t0x9861\n0xEE94\t0x9862\n0xEE95\t0x9863\n0xEE96\t0x9864\n0xEE97\t0x9865\n0xEE98\t0x9866\n0xEE99\t0x9867\n0xEE9A\t0x9868\n0xEE9B\t0x9869\n0xEE9C\t0x986A\n0xEE9D\t0x986B\n0xEE9E\t0x986C\n0xEE9F\t0x986D\n0xEEA0\t0x986E\n0xEEA1\t0x7762\n0xEEA2\t0x7765\n0xEEA3\t0x777F\n0xEEA4\t0x778D\n0xEEA5\t0x777D\n0xEEA6\t0x7780\n0xEEA7\t0x778C\n0xEEA8\t0x7791\n0xEEA9\t0x779F\n0xEEAA\t0x77A0\n0xEEAB\t0x77B0\n0xEEAC\t0x77B5\n0xEEAD\t0x77BD\n0xEEAE\t0x753A\n0xEEAF\t0x7540\n0xEEB0\t0x754E\n0xEEB1\t0x754B\n0xEEB2\t0x7548\n0xEEB3\t0x755B\n0xEEB4\t0x7572\n0xEEB5\t0x7579\n0xEEB6\t0x7583\n0xEEB7\t0x7F58\n0xEEB8\t0x7F61\n0xEEB9\t0x7F5F\n0xEEBA\t0x8A48\n0xEEBB\t0x7F68\n0xEEBC\t0x7F74\n0xEEBD\t0x7F71\n0xEEBE\t0x7F79\n0xEEBF\t0x7F81\n0xEEC0\t0x7F7E\n0xEEC1\t0x76CD\n0xEEC2\t0x76E5\n0xEEC3\t0x8832\n0xEEC4\t0x9485\n0xEEC5\t0x9486\n0xEEC6\t0x9487\n0xEEC7\t0x948B\n0xEEC8\t0x948A\n0xEEC9\t0x948C\n0xEECA\t0x948D\n0xEECB\t0x948F\n0xEECC\t0x9490\n0xEECD\t0x9494\n0xEECE\t0x9497\n0xEECF\t0x9495\n0xEED0\t0x949A\n0xEED1\t0x949B\n0xEED2\t0x949C\n0xEED3\t0x94A3\n0xEED4\t0x94A4\n0xEED5\t0x94AB\n0xEED6\t0x94AA\n0xEED7\t0x94AD\n0xEED8\t0x94AC\n0xEED9\t0x94AF\n0xEEDA\t0x94B0\n0xEEDB\t0x94B2\n0xEEDC\t0x94B4\n0xEEDD\t0x94B6\n0xEEDE\t0x94B7\n0xEEDF\t0x94B8\n0xEEE0\t0x94B9\n0xEEE1\t0x94BA\n0xEEE2\t0x94BC\n0xEEE3\t0x94BD\n0xEEE4\t0x94BF\n0xEEE5\t0x94C4\n0xEEE6\t0x94C8\n0xEEE7\t0x94C9\n0xEEE8\t0x94CA\n0xEEE9\t0x94CB\n0xEEEA\t0x94CC\n0xEEEB\t0x94CD\n0xEEEC\t0x94CE\n0xEEED\t0x94D0\n0xEEEE\t0x94D1\n0xEEEF\t0x94D2\n0xEEF0\t0x94D5\n0xEEF1\t0x94D6\n0xEEF2\t0x94D7\n0xEEF3\t0x94D9\n0xEEF4\t0x94D8\n0xEEF5\t0x94DB\n0xEEF6\t0x94DE\n0xEEF7\t0x94DF\n0xEEF8\t0x94E0\n0xEEF9\t0x94E2\n0xEEFA\t0x94E4\n0xEEFB\t0x94E5\n0xEEFC\t0x94E7\n0xEEFD\t0x94E8\n0xEEFE\t0x94EA\n0xEF40\t0x986F\n0xEF41\t0x9870\n0xEF42\t0x9871\n0xEF43\t0x9872\n0xEF44\t0x9873\n0xEF45\t0x9874\n0xEF46\t0x988B\n0xEF47\t0x988E\n0xEF48\t0x9892\n0xEF49\t0x9895\n0xEF4A\t0x9899\n0xEF4B\t0x98A3\n0xEF4C\t0x98A8\n0xEF4D\t0x98A9\n0xEF4E\t0x98AA\n0xEF4F\t0x98AB\n0xEF50\t0x98AC\n0xEF51\t0x98AD\n0xEF52\t0x98AE\n0xEF53\t0x98AF\n0xEF54\t0x98B0\n0xEF55\t0x98B1\n0xEF56\t0x98B2\n0xEF57\t0x98B3\n0xEF58\t0x98B4\n0xEF59\t0x98B5\n0xEF5A\t0x98B6\n0xEF5B\t0x98B7\n0xEF5C\t0x98B8\n0xEF5D\t0x98B9\n0xEF5E\t0x98BA\n0xEF5F\t0x98BB\n0xEF60\t0x98BC\n0xEF61\t0x98BD\n0xEF62\t0x98BE\n0xEF63\t0x98BF\n0xEF64\t0x98C0\n0xEF65\t0x98C1\n0xEF66\t0x98C2\n0xEF67\t0x98C3\n0xEF68\t0x98C4\n0xEF69\t0x98C5\n0xEF6A\t0x98C6\n0xEF6B\t0x98C7\n0xEF6C\t0x98C8\n0xEF6D\t0x98C9\n0xEF6E\t0x98CA\n0xEF6F\t0x98CB\n0xEF70\t0x98CC\n0xEF71\t0x98CD\n0xEF72\t0x98CF\n0xEF73\t0x98D0\n0xEF74\t0x98D4\n0xEF75\t0x98D6\n0xEF76\t0x98D7\n0xEF77\t0x98DB\n0xEF78\t0x98DC\n0xEF79\t0x98DD\n0xEF7A\t0x98E0\n0xEF7B\t0x98E1\n0xEF7C\t0x98E2\n0xEF7D\t0x98E3\n0xEF7E\t0x98E4\n0xEF80\t0x98E5\n0xEF81\t0x98E6\n0xEF82\t0x98E9\n0xEF83\t0x98EA\n0xEF84\t0x98EB\n0xEF85\t0x98EC\n0xEF86\t0x98ED\n0xEF87\t0x98EE\n0xEF88\t0x98EF\n0xEF89\t0x98F0\n0xEF8A\t0x98F1\n0xEF8B\t0x98F2\n0xEF8C\t0x98F3\n0xEF8D\t0x98F4\n0xEF8E\t0x98F5\n0xEF8F\t0x98F6\n0xEF90\t0x98F7\n0xEF91\t0x98F8\n0xEF92\t0x98F9\n0xEF93\t0x98FA\n0xEF94\t0x98FB\n0xEF95\t0x98FC\n0xEF96\t0x98FD\n0xEF97\t0x98FE\n0xEF98\t0x98FF\n0xEF99\t0x9900\n0xEF9A\t0x9901\n0xEF9B\t0x9902\n0xEF9C\t0x9903\n0xEF9D\t0x9904\n0xEF9E\t0x9905\n0xEF9F\t0x9906\n0xEFA0\t0x9907\n0xEFA1\t0x94E9\n0xEFA2\t0x94EB\n0xEFA3\t0x94EE\n0xEFA4\t0x94EF\n0xEFA5\t0x94F3\n0xEFA6\t0x94F4\n0xEFA7\t0x94F5\n0xEFA8\t0x94F7\n0xEFA9\t0x94F9\n0xEFAA\t0x94FC\n0xEFAB\t0x94FD\n0xEFAC\t0x94FF\n0xEFAD\t0x9503\n0xEFAE\t0x9502\n0xEFAF\t0x9506\n0xEFB0\t0x9507\n0xEFB1\t0x9509\n0xEFB2\t0x950A\n0xEFB3\t0x950D\n0xEFB4\t0x950E\n0xEFB5\t0x950F\n0xEFB6\t0x9512\n0xEFB7\t0x9513\n0xEFB8\t0x9514\n0xEFB9\t0x9515\n0xEFBA\t0x9516\n0xEFBB\t0x9518\n0xEFBC\t0x951B\n0xEFBD\t0x951D\n0xEFBE\t0x951E\n0xEFBF\t0x951F\n0xEFC0\t0x9522\n0xEFC1\t0x952A\n0xEFC2\t0x952B\n0xEFC3\t0x9529\n0xEFC4\t0x952C\n0xEFC5\t0x9531\n0xEFC6\t0x9532\n0xEFC7\t0x9534\n0xEFC8\t0x9536\n0xEFC9\t0x9537\n0xEFCA\t0x9538\n0xEFCB\t0x953C\n0xEFCC\t0x953E\n0xEFCD\t0x953F\n0xEFCE\t0x9542\n0xEFCF\t0x9535\n0xEFD0\t0x9544\n0xEFD1\t0x9545\n0xEFD2\t0x9546\n0xEFD3\t0x9549\n0xEFD4\t0x954C\n0xEFD5\t0x954E\n0xEFD6\t0x954F\n0xEFD7\t0x9552\n0xEFD8\t0x9553\n0xEFD9\t0x9554\n0xEFDA\t0x9556\n0xEFDB\t0x9557\n0xEFDC\t0x9558\n0xEFDD\t0x9559\n0xEFDE\t0x955B\n0xEFDF\t0x955E\n0xEFE0\t0x955F\n0xEFE1\t0x955D\n0xEFE2\t0x9561\n0xEFE3\t0x9562\n0xEFE4\t0x9564\n0xEFE5\t0x9565\n0xEFE6\t0x9566\n0xEFE7\t0x9567\n0xEFE8\t0x9568\n0xEFE9\t0x9569\n0xEFEA\t0x956A\n0xEFEB\t0x956B\n0xEFEC\t0x956C\n0xEFED\t0x956F\n0xEFEE\t0x9571\n0xEFEF\t0x9572\n0xEFF0\t0x9573\n0xEFF1\t0x953A\n0xEFF2\t0x77E7\n0xEFF3\t0x77EC\n0xEFF4\t0x96C9\n0xEFF5\t0x79D5\n0xEFF6\t0x79ED\n0xEFF7\t0x79E3\n0xEFF8\t0x79EB\n0xEFF9\t0x7A06\n0xEFFA\t0x5D47\n0xEFFB\t0x7A03\n0xEFFC\t0x7A02\n0xEFFD\t0x7A1E\n0xEFFE\t0x7A14\n0xF040\t0x9908\n0xF041\t0x9909\n0xF042\t0x990A\n0xF043\t0x990B\n0xF044\t0x990C\n0xF045\t0x990E\n0xF046\t0x990F\n0xF047\t0x9911\n0xF048\t0x9912\n0xF049\t0x9913\n0xF04A\t0x9914\n0xF04B\t0x9915\n0xF04C\t0x9916\n0xF04D\t0x9917\n0xF04E\t0x9918\n0xF04F\t0x9919\n0xF050\t0x991A\n0xF051\t0x991B\n0xF052\t0x991C\n0xF053\t0x991D\n0xF054\t0x991E\n0xF055\t0x991F\n0xF056\t0x9920\n0xF057\t0x9921\n0xF058\t0x9922\n0xF059\t0x9923\n0xF05A\t0x9924\n0xF05B\t0x9925\n0xF05C\t0x9926\n0xF05D\t0x9927\n0xF05E\t0x9928\n0xF05F\t0x9929\n0xF060\t0x992A\n0xF061\t0x992B\n0xF062\t0x992C\n0xF063\t0x992D\n0xF064\t0x992F\n0xF065\t0x9930\n0xF066\t0x9931\n0xF067\t0x9932\n0xF068\t0x9933\n0xF069\t0x9934\n0xF06A\t0x9935\n0xF06B\t0x9936\n0xF06C\t0x9937\n0xF06D\t0x9938\n0xF06E\t0x9939\n0xF06F\t0x993A\n0xF070\t0x993B\n0xF071\t0x993C\n0xF072\t0x993D\n0xF073\t0x993E\n0xF074\t0x993F\n0xF075\t0x9940\n0xF076\t0x9941\n0xF077\t0x9942\n0xF078\t0x9943\n0xF079\t0x9944\n0xF07A\t0x9945\n0xF07B\t0x9946\n0xF07C\t0x9947\n0xF07D\t0x9948\n0xF07E\t0x9949\n0xF080\t0x994A\n0xF081\t0x994B\n0xF082\t0x994C\n0xF083\t0x994D\n0xF084\t0x994E\n0xF085\t0x994F\n0xF086\t0x9950\n0xF087\t0x9951\n0xF088\t0x9952\n0xF089\t0x9953\n0xF08A\t0x9956\n0xF08B\t0x9957\n0xF08C\t0x9958\n0xF08D\t0x9959\n0xF08E\t0x995A\n0xF08F\t0x995B\n0xF090\t0x995C\n0xF091\t0x995D\n0xF092\t0x995E\n0xF093\t0x995F\n0xF094\t0x9960\n0xF095\t0x9961\n0xF096\t0x9962\n0xF097\t0x9964\n0xF098\t0x9966\n0xF099\t0x9973\n0xF09A\t0x9978\n0xF09B\t0x9979\n0xF09C\t0x997B\n0xF09D\t0x997E\n0xF09E\t0x9982\n0xF09F\t0x9983\n0xF0A0\t0x9989\n0xF0A1\t0x7A39\n0xF0A2\t0x7A37\n0xF0A3\t0x7A51\n0xF0A4\t0x9ECF\n0xF0A5\t0x99A5\n0xF0A6\t0x7A70\n0xF0A7\t0x7688\n0xF0A8\t0x768E\n0xF0A9\t0x7693\n0xF0AA\t0x7699\n0xF0AB\t0x76A4\n0xF0AC\t0x74DE\n0xF0AD\t0x74E0\n0xF0AE\t0x752C\n0xF0AF\t0x9E20\n0xF0B0\t0x9E22\n0xF0B1\t0x9E28\n0xF0B2\t0x9E29\n0xF0B3\t0x9E2A\n0xF0B4\t0x9E2B\n0xF0B5\t0x9E2C\n0xF0B6\t0x9E32\n0xF0B7\t0x9E31\n0xF0B8\t0x9E36\n0xF0B9\t0x9E38\n0xF0BA\t0x9E37\n0xF0BB\t0x9E39\n0xF0BC\t0x9E3A\n0xF0BD\t0x9E3E\n0xF0BE\t0x9E41\n0xF0BF\t0x9E42\n0xF0C0\t0x9E44\n0xF0C1\t0x9E46\n0xF0C2\t0x9E47\n0xF0C3\t0x9E48\n0xF0C4\t0x9E49\n0xF0C5\t0x9E4B\n0xF0C6\t0x9E4C\n0xF0C7\t0x9E4E\n0xF0C8\t0x9E51\n0xF0C9\t0x9E55\n0xF0CA\t0x9E57\n0xF0CB\t0x9E5A\n0xF0CC\t0x9E5B\n0xF0CD\t0x9E5C\n0xF0CE\t0x9E5E\n0xF0CF\t0x9E63\n0xF0D0\t0x9E66\n0xF0D1\t0x9E67\n0xF0D2\t0x9E68\n0xF0D3\t0x9E69\n0xF0D4\t0x9E6A\n0xF0D5\t0x9E6B\n0xF0D6\t0x9E6C\n0xF0D7\t0x9E71\n0xF0D8\t0x9E6D\n0xF0D9\t0x9E73\n0xF0DA\t0x7592\n0xF0DB\t0x7594\n0xF0DC\t0x7596\n0xF0DD\t0x75A0\n0xF0DE\t0x759D\n0xF0DF\t0x75AC\n0xF0E0\t0x75A3\n0xF0E1\t0x75B3\n0xF0E2\t0x75B4\n0xF0E3\t0x75B8\n0xF0E4\t0x75C4\n0xF0E5\t0x75B1\n0xF0E6\t0x75B0\n0xF0E7\t0x75C3\n0xF0E8\t0x75C2\n0xF0E9\t0x75D6\n0xF0EA\t0x75CD\n0xF0EB\t0x75E3\n0xF0EC\t0x75E8\n0xF0ED\t0x75E6\n0xF0EE\t0x75E4\n0xF0EF\t0x75EB\n0xF0F0\t0x75E7\n0xF0F1\t0x7603\n0xF0F2\t0x75F1\n0xF0F3\t0x75FC\n0xF0F4\t0x75FF\n0xF0F5\t0x7610\n0xF0F6\t0x7600\n0xF0F7\t0x7605\n0xF0F8\t0x760C\n0xF0F9\t0x7617\n0xF0FA\t0x760A\n0xF0FB\t0x7625\n0xF0FC\t0x7618\n0xF0FD\t0x7615\n0xF0FE\t0x7619\n0xF140\t0x998C\n0xF141\t0x998E\n0xF142\t0x999A\n0xF143\t0x999B\n0xF144\t0x999C\n0xF145\t0x999D\n0xF146\t0x999E\n0xF147\t0x999F\n0xF148\t0x99A0\n0xF149\t0x99A1\n0xF14A\t0x99A2\n0xF14B\t0x99A3\n0xF14C\t0x99A4\n0xF14D\t0x99A6\n0xF14E\t0x99A7\n0xF14F\t0x99A9\n0xF150\t0x99AA\n0xF151\t0x99AB\n0xF152\t0x99AC\n0xF153\t0x99AD\n0xF154\t0x99AE\n0xF155\t0x99AF\n0xF156\t0x99B0\n0xF157\t0x99B1\n0xF158\t0x99B2\n0xF159\t0x99B3\n0xF15A\t0x99B4\n0xF15B\t0x99B5\n0xF15C\t0x99B6\n0xF15D\t0x99B7\n0xF15E\t0x99B8\n0xF15F\t0x99B9\n0xF160\t0x99BA\n0xF161\t0x99BB\n0xF162\t0x99BC\n0xF163\t0x99BD\n0xF164\t0x99BE\n0xF165\t0x99BF\n0xF166\t0x99C0\n0xF167\t0x99C1\n0xF168\t0x99C2\n0xF169\t0x99C3\n0xF16A\t0x99C4\n0xF16B\t0x99C5\n0xF16C\t0x99C6\n0xF16D\t0x99C7\n0xF16E\t0x99C8\n0xF16F\t0x99C9\n0xF170\t0x99CA\n0xF171\t0x99CB\n0xF172\t0x99CC\n0xF173\t0x99CD\n0xF174\t0x99CE\n0xF175\t0x99CF\n0xF176\t0x99D0\n0xF177\t0x99D1\n0xF178\t0x99D2\n0xF179\t0x99D3\n0xF17A\t0x99D4\n0xF17B\t0x99D5\n0xF17C\t0x99D6\n0xF17D\t0x99D7\n0xF17E\t0x99D8\n0xF180\t0x99D9\n0xF181\t0x99DA\n0xF182\t0x99DB\n0xF183\t0x99DC\n0xF184\t0x99DD\n0xF185\t0x99DE\n0xF186\t0x99DF\n0xF187\t0x99E0\n0xF188\t0x99E1\n0xF189\t0x99E2\n0xF18A\t0x99E3\n0xF18B\t0x99E4\n0xF18C\t0x99E5\n0xF18D\t0x99E6\n0xF18E\t0x99E7\n0xF18F\t0x99E8\n0xF190\t0x99E9\n0xF191\t0x99EA\n0xF192\t0x99EB\n0xF193\t0x99EC\n0xF194\t0x99ED\n0xF195\t0x99EE\n0xF196\t0x99EF\n0xF197\t0x99F0\n0xF198\t0x99F1\n0xF199\t0x99F2\n0xF19A\t0x99F3\n0xF19B\t0x99F4\n0xF19C\t0x99F5\n0xF19D\t0x99F6\n0xF19E\t0x99F7\n0xF19F\t0x99F8\n0xF1A0\t0x99F9\n0xF1A1\t0x761B\n0xF1A2\t0x763C\n0xF1A3\t0x7622\n0xF1A4\t0x7620\n0xF1A5\t0x7640\n0xF1A6\t0x762D\n0xF1A7\t0x7630\n0xF1A8\t0x763F\n0xF1A9\t0x7635\n0xF1AA\t0x7643\n0xF1AB\t0x763E\n0xF1AC\t0x7633\n0xF1AD\t0x764D\n0xF1AE\t0x765E\n0xF1AF\t0x7654\n0xF1B0\t0x765C\n0xF1B1\t0x7656\n0xF1B2\t0x766B\n0xF1B3\t0x766F\n0xF1B4\t0x7FCA\n0xF1B5\t0x7AE6\n0xF1B6\t0x7A78\n0xF1B7\t0x7A79\n0xF1B8\t0x7A80\n0xF1B9\t0x7A86\n0xF1BA\t0x7A88\n0xF1BB\t0x7A95\n0xF1BC\t0x7AA6\n0xF1BD\t0x7AA0\n0xF1BE\t0x7AAC\n0xF1BF\t0x7AA8\n0xF1C0\t0x7AAD\n0xF1C1\t0x7AB3\n0xF1C2\t0x8864\n0xF1C3\t0x8869\n0xF1C4\t0x8872\n0xF1C5\t0x887D\n0xF1C6\t0x887F\n0xF1C7\t0x8882\n0xF1C8\t0x88A2\n0xF1C9\t0x88C6\n0xF1CA\t0x88B7\n0xF1CB\t0x88BC\n0xF1CC\t0x88C9\n0xF1CD\t0x88E2\n0xF1CE\t0x88CE\n0xF1CF\t0x88E3\n0xF1D0\t0x88E5\n0xF1D1\t0x88F1\n0xF1D2\t0x891A\n0xF1D3\t0x88FC\n0xF1D4\t0x88E8\n0xF1D5\t0x88FE\n0xF1D6\t0x88F0\n0xF1D7\t0x8921\n0xF1D8\t0x8919\n0xF1D9\t0x8913\n0xF1DA\t0x891B\n0xF1DB\t0x890A\n0xF1DC\t0x8934\n0xF1DD\t0x892B\n0xF1DE\t0x8936\n0xF1DF\t0x8941\n0xF1E0\t0x8966\n0xF1E1\t0x897B\n0xF1E2\t0x758B\n0xF1E3\t0x80E5\n0xF1E4\t0x76B2\n0xF1E5\t0x76B4\n0xF1E6\t0x77DC\n0xF1E7\t0x8012\n0xF1E8\t0x8014\n0xF1E9\t0x8016\n0xF1EA\t0x801C\n0xF1EB\t0x8020\n0xF1EC\t0x8022\n0xF1ED\t0x8025\n0xF1EE\t0x8026\n0xF1EF\t0x8027\n0xF1F0\t0x8029\n0xF1F1\t0x8028\n0xF1F2\t0x8031\n0xF1F3\t0x800B\n0xF1F4\t0x8035\n0xF1F5\t0x8043\n0xF1F6\t0x8046\n0xF1F7\t0x804D\n0xF1F8\t0x8052\n0xF1F9\t0x8069\n0xF1FA\t0x8071\n0xF1FB\t0x8983\n0xF1FC\t0x9878\n0xF1FD\t0x9880\n0xF1FE\t0x9883\n0xF240\t0x99FA\n0xF241\t0x99FB\n0xF242\t0x99FC\n0xF243\t0x99FD\n0xF244\t0x99FE\n0xF245\t0x99FF\n0xF246\t0x9A00\n0xF247\t0x9A01\n0xF248\t0x9A02\n0xF249\t0x9A03\n0xF24A\t0x9A04\n0xF24B\t0x9A05\n0xF24C\t0x9A06\n0xF24D\t0x9A07\n0xF24E\t0x9A08\n0xF24F\t0x9A09\n0xF250\t0x9A0A\n0xF251\t0x9A0B\n0xF252\t0x9A0C\n0xF253\t0x9A0D\n0xF254\t0x9A0E\n0xF255\t0x9A0F\n0xF256\t0x9A10\n0xF257\t0x9A11\n0xF258\t0x9A12\n0xF259\t0x9A13\n0xF25A\t0x9A14\n0xF25B\t0x9A15\n0xF25C\t0x9A16\n0xF25D\t0x9A17\n0xF25E\t0x9A18\n0xF25F\t0x9A19\n0xF260\t0x9A1A\n0xF261\t0x9A1B\n0xF262\t0x9A1C\n0xF263\t0x9A1D\n0xF264\t0x9A1E\n0xF265\t0x9A1F\n0xF266\t0x9A20\n0xF267\t0x9A21\n0xF268\t0x9A22\n0xF269\t0x9A23\n0xF26A\t0x9A24\n0xF26B\t0x9A25\n0xF26C\t0x9A26\n0xF26D\t0x9A27\n0xF26E\t0x9A28\n0xF26F\t0x9A29\n0xF270\t0x9A2A\n0xF271\t0x9A2B\n0xF272\t0x9A2C\n0xF273\t0x9A2D\n0xF274\t0x9A2E\n0xF275\t0x9A2F\n0xF276\t0x9A30\n0xF277\t0x9A31\n0xF278\t0x9A32\n0xF279\t0x9A33\n0xF27A\t0x9A34\n0xF27B\t0x9A35\n0xF27C\t0x9A36\n0xF27D\t0x9A37\n0xF27E\t0x9A38\n0xF280\t0x9A39\n0xF281\t0x9A3A\n0xF282\t0x9A3B\n0xF283\t0x9A3C\n0xF284\t0x9A3D\n0xF285\t0x9A3E\n0xF286\t0x9A3F\n0xF287\t0x9A40\n0xF288\t0x9A41\n0xF289\t0x9A42\n0xF28A\t0x9A43\n0xF28B\t0x9A44\n0xF28C\t0x9A45\n0xF28D\t0x9A46\n0xF28E\t0x9A47\n0xF28F\t0x9A48\n0xF290\t0x9A49\n0xF291\t0x9A4A\n0xF292\t0x9A4B\n0xF293\t0x9A4C\n0xF294\t0x9A4D\n0xF295\t0x9A4E\n0xF296\t0x9A4F\n0xF297\t0x9A50\n0xF298\t0x9A51\n0xF299\t0x9A52\n0xF29A\t0x9A53\n0xF29B\t0x9A54\n0xF29C\t0x9A55\n0xF29D\t0x9A56\n0xF29E\t0x9A57\n0xF29F\t0x9A58\n0xF2A0\t0x9A59\n0xF2A1\t0x9889\n0xF2A2\t0x988C\n0xF2A3\t0x988D\n0xF2A4\t0x988F\n0xF2A5\t0x9894\n0xF2A6\t0x989A\n0xF2A7\t0x989B\n0xF2A8\t0x989E\n0xF2A9\t0x989F\n0xF2AA\t0x98A1\n0xF2AB\t0x98A2\n0xF2AC\t0x98A5\n0xF2AD\t0x98A6\n0xF2AE\t0x864D\n0xF2AF\t0x8654\n0xF2B0\t0x866C\n0xF2B1\t0x866E\n0xF2B2\t0x867F\n0xF2B3\t0x867A\n0xF2B4\t0x867C\n0xF2B5\t0x867B\n0xF2B6\t0x86A8\n0xF2B7\t0x868D\n0xF2B8\t0x868B\n0xF2B9\t0x86AC\n0xF2BA\t0x869D\n0xF2BB\t0x86A7\n0xF2BC\t0x86A3\n0xF2BD\t0x86AA\n0xF2BE\t0x8693\n0xF2BF\t0x86A9\n0xF2C0\t0x86B6\n0xF2C1\t0x86C4\n0xF2C2\t0x86B5\n0xF2C3\t0x86CE\n0xF2C4\t0x86B0\n0xF2C5\t0x86BA\n0xF2C6\t0x86B1\n0xF2C7\t0x86AF\n0xF2C8\t0x86C9\n0xF2C9\t0x86CF\n0xF2CA\t0x86B4\n0xF2CB\t0x86E9\n0xF2CC\t0x86F1\n0xF2CD\t0x86F2\n0xF2CE\t0x86ED\n0xF2CF\t0x86F3\n0xF2D0\t0x86D0\n0xF2D1\t0x8713\n0xF2D2\t0x86DE\n0xF2D3\t0x86F4\n0xF2D4\t0x86DF\n0xF2D5\t0x86D8\n0xF2D6\t0x86D1\n0xF2D7\t0x8703\n0xF2D8\t0x8707\n0xF2D9\t0x86F8\n0xF2DA\t0x8708\n0xF2DB\t0x870A\n0xF2DC\t0x870D\n0xF2DD\t0x8709\n0xF2DE\t0x8723\n0xF2DF\t0x873B\n0xF2E0\t0x871E\n0xF2E1\t0x8725\n0xF2E2\t0x872E\n0xF2E3\t0x871A\n0xF2E4\t0x873E\n0xF2E5\t0x8748\n0xF2E6\t0x8734\n0xF2E7\t0x8731\n0xF2E8\t0x8729\n0xF2E9\t0x8737\n0xF2EA\t0x873F\n0xF2EB\t0x8782\n0xF2EC\t0x8722\n0xF2ED\t0x877D\n0xF2EE\t0x877E\n0xF2EF\t0x877B\n0xF2F0\t0x8760\n0xF2F1\t0x8770\n0xF2F2\t0x874C\n0xF2F3\t0x876E\n0xF2F4\t0x878B\n0xF2F5\t0x8753\n0xF2F6\t0x8763\n0xF2F7\t0x877C\n0xF2F8\t0x8764\n0xF2F9\t0x8759\n0xF2FA\t0x8765\n0xF2FB\t0x8793\n0xF2FC\t0x87AF\n0xF2FD\t0x87A8\n0xF2FE\t0x87D2\n0xF340\t0x9A5A\n0xF341\t0x9A5B\n0xF342\t0x9A5C\n0xF343\t0x9A5D\n0xF344\t0x9A5E\n0xF345\t0x9A5F\n0xF346\t0x9A60\n0xF347\t0x9A61\n0xF348\t0x9A62\n0xF349\t0x9A63\n0xF34A\t0x9A64\n0xF34B\t0x9A65\n0xF34C\t0x9A66\n0xF34D\t0x9A67\n0xF34E\t0x9A68\n0xF34F\t0x9A69\n0xF350\t0x9A6A\n0xF351\t0x9A6B\n0xF352\t0x9A72\n0xF353\t0x9A83\n0xF354\t0x9A89\n0xF355\t0x9A8D\n0xF356\t0x9A8E\n0xF357\t0x9A94\n0xF358\t0x9A95\n0xF359\t0x9A99\n0xF35A\t0x9AA6\n0xF35B\t0x9AA9\n0xF35C\t0x9AAA\n0xF35D\t0x9AAB\n0xF35E\t0x9AAC\n0xF35F\t0x9AAD\n0xF360\t0x9AAE\n0xF361\t0x9AAF\n0xF362\t0x9AB2\n0xF363\t0x9AB3\n0xF364\t0x9AB4\n0xF365\t0x9AB5\n0xF366\t0x9AB9\n0xF367\t0x9ABB\n0xF368\t0x9ABD\n0xF369\t0x9ABE\n0xF36A\t0x9ABF\n0xF36B\t0x9AC3\n0xF36C\t0x9AC4\n0xF36D\t0x9AC6\n0xF36E\t0x9AC7\n0xF36F\t0x9AC8\n0xF370\t0x9AC9\n0xF371\t0x9ACA\n0xF372\t0x9ACD\n0xF373\t0x9ACE\n0xF374\t0x9ACF\n0xF375\t0x9AD0\n0xF376\t0x9AD2\n0xF377\t0x9AD4\n0xF378\t0x9AD5\n0xF379\t0x9AD6\n0xF37A\t0x9AD7\n0xF37B\t0x9AD9\n0xF37C\t0x9ADA\n0xF37D\t0x9ADB\n0xF37E\t0x9ADC\n0xF380\t0x9ADD\n0xF381\t0x9ADE\n0xF382\t0x9AE0\n0xF383\t0x9AE2\n0xF384\t0x9AE3\n0xF385\t0x9AE4\n0xF386\t0x9AE5\n0xF387\t0x9AE7\n0xF388\t0x9AE8\n0xF389\t0x9AE9\n0xF38A\t0x9AEA\n0xF38B\t0x9AEC\n0xF38C\t0x9AEE\n0xF38D\t0x9AF0\n0xF38E\t0x9AF1\n0xF38F\t0x9AF2\n0xF390\t0x9AF3\n0xF391\t0x9AF4\n0xF392\t0x9AF5\n0xF393\t0x9AF6\n0xF394\t0x9AF7\n0xF395\t0x9AF8\n0xF396\t0x9AFA\n0xF397\t0x9AFC\n0xF398\t0x9AFD\n0xF399\t0x9AFE\n0xF39A\t0x9AFF\n0xF39B\t0x9B00\n0xF39C\t0x9B01\n0xF39D\t0x9B02\n0xF39E\t0x9B04\n0xF39F\t0x9B05\n0xF3A0\t0x9B06\n0xF3A1\t0x87C6\n0xF3A2\t0x8788\n0xF3A3\t0x8785\n0xF3A4\t0x87AD\n0xF3A5\t0x8797\n0xF3A6\t0x8783\n0xF3A7\t0x87AB\n0xF3A8\t0x87E5\n0xF3A9\t0x87AC\n0xF3AA\t0x87B5\n0xF3AB\t0x87B3\n0xF3AC\t0x87CB\n0xF3AD\t0x87D3\n0xF3AE\t0x87BD\n0xF3AF\t0x87D1\n0xF3B0\t0x87C0\n0xF3B1\t0x87CA\n0xF3B2\t0x87DB\n0xF3B3\t0x87EA\n0xF3B4\t0x87E0\n0xF3B5\t0x87EE\n0xF3B6\t0x8816\n0xF3B7\t0x8813\n0xF3B8\t0x87FE\n0xF3B9\t0x880A\n0xF3BA\t0x881B\n0xF3BB\t0x8821\n0xF3BC\t0x8839\n0xF3BD\t0x883C\n0xF3BE\t0x7F36\n0xF3BF\t0x7F42\n0xF3C0\t0x7F44\n0xF3C1\t0x7F45\n0xF3C2\t0x8210\n0xF3C3\t0x7AFA\n0xF3C4\t0x7AFD\n0xF3C5\t0x7B08\n0xF3C6\t0x7B03\n0xF3C7\t0x7B04\n0xF3C8\t0x7B15\n0xF3C9\t0x7B0A\n0xF3CA\t0x7B2B\n0xF3CB\t0x7B0F\n0xF3CC\t0x7B47\n0xF3CD\t0x7B38\n0xF3CE\t0x7B2A\n0xF3CF\t0x7B19\n0xF3D0\t0x7B2E\n0xF3D1\t0x7B31\n0xF3D2\t0x7B20\n0xF3D3\t0x7B25\n0xF3D4\t0x7B24\n0xF3D5\t0x7B33\n0xF3D6\t0x7B3E\n0xF3D7\t0x7B1E\n0xF3D8\t0x7B58\n0xF3D9\t0x7B5A\n0xF3DA\t0x7B45\n0xF3DB\t0x7B75\n0xF3DC\t0x7B4C\n0xF3DD\t0x7B5D\n0xF3DE\t0x7B60\n0xF3DF\t0x7B6E\n0xF3E0\t0x7B7B\n0xF3E1\t0x7B62\n0xF3E2\t0x7B72\n0xF3E3\t0x7B71\n0xF3E4\t0x7B90\n0xF3E5\t0x7BA6\n0xF3E6\t0x7BA7\n0xF3E7\t0x7BB8\n0xF3E8\t0x7BAC\n0xF3E9\t0x7B9D\n0xF3EA\t0x7BA8\n0xF3EB\t0x7B85\n0xF3EC\t0x7BAA\n0xF3ED\t0x7B9C\n0xF3EE\t0x7BA2\n0xF3EF\t0x7BAB\n0xF3F0\t0x7BB4\n0xF3F1\t0x7BD1\n0xF3F2\t0x7BC1\n0xF3F3\t0x7BCC\n0xF3F4\t0x7BDD\n0xF3F5\t0x7BDA\n0xF3F6\t0x7BE5\n0xF3F7\t0x7BE6\n0xF3F8\t0x7BEA\n0xF3F9\t0x7C0C\n0xF3FA\t0x7BFE\n0xF3FB\t0x7BFC\n0xF3FC\t0x7C0F\n0xF3FD\t0x7C16\n0xF3FE\t0x7C0B\n0xF440\t0x9B07\n0xF441\t0x9B09\n0xF442\t0x9B0A\n0xF443\t0x9B0B\n0xF444\t0x9B0C\n0xF445\t0x9B0D\n0xF446\t0x9B0E\n0xF447\t0x9B10\n0xF448\t0x9B11\n0xF449\t0x9B12\n0xF44A\t0x9B14\n0xF44B\t0x9B15\n0xF44C\t0x9B16\n0xF44D\t0x9B17\n0xF44E\t0x9B18\n0xF44F\t0x9B19\n0xF450\t0x9B1A\n0xF451\t0x9B1B\n0xF452\t0x9B1C\n0xF453\t0x9B1D\n0xF454\t0x9B1E\n0xF455\t0x9B20\n0xF456\t0x9B21\n0xF457\t0x9B22\n0xF458\t0x9B24\n0xF459\t0x9B25\n0xF45A\t0x9B26\n0xF45B\t0x9B27\n0xF45C\t0x9B28\n0xF45D\t0x9B29\n0xF45E\t0x9B2A\n0xF45F\t0x9B2B\n0xF460\t0x9B2C\n0xF461\t0x9B2D\n0xF462\t0x9B2E\n0xF463\t0x9B30\n0xF464\t0x9B31\n0xF465\t0x9B33\n0xF466\t0x9B34\n0xF467\t0x9B35\n0xF468\t0x9B36\n0xF469\t0x9B37\n0xF46A\t0x9B38\n0xF46B\t0x9B39\n0xF46C\t0x9B3A\n0xF46D\t0x9B3D\n0xF46E\t0x9B3E\n0xF46F\t0x9B3F\n0xF470\t0x9B40\n0xF471\t0x9B46\n0xF472\t0x9B4A\n0xF473\t0x9B4B\n0xF474\t0x9B4C\n0xF475\t0x9B4E\n0xF476\t0x9B50\n0xF477\t0x9B52\n0xF478\t0x9B53\n0xF479\t0x9B55\n0xF47A\t0x9B56\n0xF47B\t0x9B57\n0xF47C\t0x9B58\n0xF47D\t0x9B59\n0xF47E\t0x9B5A\n0xF480\t0x9B5B\n0xF481\t0x9B5C\n0xF482\t0x9B5D\n0xF483\t0x9B5E\n0xF484\t0x9B5F\n0xF485\t0x9B60\n0xF486\t0x9B61\n0xF487\t0x9B62\n0xF488\t0x9B63\n0xF489\t0x9B64\n0xF48A\t0x9B65\n0xF48B\t0x9B66\n0xF48C\t0x9B67\n0xF48D\t0x9B68\n0xF48E\t0x9B69\n0xF48F\t0x9B6A\n0xF490\t0x9B6B\n0xF491\t0x9B6C\n0xF492\t0x9B6D\n0xF493\t0x9B6E\n0xF494\t0x9B6F\n0xF495\t0x9B70\n0xF496\t0x9B71\n0xF497\t0x9B72\n0xF498\t0x9B73\n0xF499\t0x9B74\n0xF49A\t0x9B75\n0xF49B\t0x9B76\n0xF49C\t0x9B77\n0xF49D\t0x9B78\n0xF49E\t0x9B79\n0xF49F\t0x9B7A\n0xF4A0\t0x9B7B\n0xF4A1\t0x7C1F\n0xF4A2\t0x7C2A\n0xF4A3\t0x7C26\n0xF4A4\t0x7C38\n0xF4A5\t0x7C41\n0xF4A6\t0x7C40\n0xF4A7\t0x81FE\n0xF4A8\t0x8201\n0xF4A9\t0x8202\n0xF4AA\t0x8204\n0xF4AB\t0x81EC\n0xF4AC\t0x8844\n0xF4AD\t0x8221\n0xF4AE\t0x8222\n0xF4AF\t0x8223\n0xF4B0\t0x822D\n0xF4B1\t0x822F\n0xF4B2\t0x8228\n0xF4B3\t0x822B\n0xF4B4\t0x8238\n0xF4B5\t0x823B\n0xF4B6\t0x8233\n0xF4B7\t0x8234\n0xF4B8\t0x823E\n0xF4B9\t0x8244\n0xF4BA\t0x8249\n0xF4BB\t0x824B\n0xF4BC\t0x824F\n0xF4BD\t0x825A\n0xF4BE\t0x825F\n0xF4BF\t0x8268\n0xF4C0\t0x887E\n0xF4C1\t0x8885\n0xF4C2\t0x8888\n0xF4C3\t0x88D8\n0xF4C4\t0x88DF\n0xF4C5\t0x895E\n0xF4C6\t0x7F9D\n0xF4C7\t0x7F9F\n0xF4C8\t0x7FA7\n0xF4C9\t0x7FAF\n0xF4CA\t0x7FB0\n0xF4CB\t0x7FB2\n0xF4CC\t0x7C7C\n0xF4CD\t0x6549\n0xF4CE\t0x7C91\n0xF4CF\t0x7C9D\n0xF4D0\t0x7C9C\n0xF4D1\t0x7C9E\n0xF4D2\t0x7CA2\n0xF4D3\t0x7CB2\n0xF4D4\t0x7CBC\n0xF4D5\t0x7CBD\n0xF4D6\t0x7CC1\n0xF4D7\t0x7CC7\n0xF4D8\t0x7CCC\n0xF4D9\t0x7CCD\n0xF4DA\t0x7CC8\n0xF4DB\t0x7CC5\n0xF4DC\t0x7CD7\n0xF4DD\t0x7CE8\n0xF4DE\t0x826E\n0xF4DF\t0x66A8\n0xF4E0\t0x7FBF\n0xF4E1\t0x7FCE\n0xF4E2\t0x7FD5\n0xF4E3\t0x7FE5\n0xF4E4\t0x7FE1\n0xF4E5\t0x7FE6\n0xF4E6\t0x7FE9\n0xF4E7\t0x7FEE\n0xF4E8\t0x7FF3\n0xF4E9\t0x7CF8\n0xF4EA\t0x7D77\n0xF4EB\t0x7DA6\n0xF4EC\t0x7DAE\n0xF4ED\t0x7E47\n0xF4EE\t0x7E9B\n0xF4EF\t0x9EB8\n0xF4F0\t0x9EB4\n0xF4F1\t0x8D73\n0xF4F2\t0x8D84\n0xF4F3\t0x8D94\n0xF4F4\t0x8D91\n0xF4F5\t0x8DB1\n0xF4F6\t0x8D67\n0xF4F7\t0x8D6D\n0xF4F8\t0x8C47\n0xF4F9\t0x8C49\n0xF4FA\t0x914A\n0xF4FB\t0x9150\n0xF4FC\t0x914E\n0xF4FD\t0x914F\n0xF4FE\t0x9164\n0xF540\t0x9B7C\n0xF541\t0x9B7D\n0xF542\t0x9B7E\n0xF543\t0x9B7F\n0xF544\t0x9B80\n0xF545\t0x9B81\n0xF546\t0x9B82\n0xF547\t0x9B83\n0xF548\t0x9B84\n0xF549\t0x9B85\n0xF54A\t0x9B86\n0xF54B\t0x9B87\n0xF54C\t0x9B88\n0xF54D\t0x9B89\n0xF54E\t0x9B8A\n0xF54F\t0x9B8B\n0xF550\t0x9B8C\n0xF551\t0x9B8D\n0xF552\t0x9B8E\n0xF553\t0x9B8F\n0xF554\t0x9B90\n0xF555\t0x9B91\n0xF556\t0x9B92\n0xF557\t0x9B93\n0xF558\t0x9B94\n0xF559\t0x9B95\n0xF55A\t0x9B96\n0xF55B\t0x9B97\n0xF55C\t0x9B98\n0xF55D\t0x9B99\n0xF55E\t0x9B9A\n0xF55F\t0x9B9B\n0xF560\t0x9B9C\n0xF561\t0x9B9D\n0xF562\t0x9B9E\n0xF563\t0x9B9F\n0xF564\t0x9BA0\n0xF565\t0x9BA1\n0xF566\t0x9BA2\n0xF567\t0x9BA3\n0xF568\t0x9BA4\n0xF569\t0x9BA5\n0xF56A\t0x9BA6\n0xF56B\t0x9BA7\n0xF56C\t0x9BA8\n0xF56D\t0x9BA9\n0xF56E\t0x9BAA\n0xF56F\t0x9BAB\n0xF570\t0x9BAC\n0xF571\t0x9BAD\n0xF572\t0x9BAE\n0xF573\t0x9BAF\n0xF574\t0x9BB0\n0xF575\t0x9BB1\n0xF576\t0x9BB2\n0xF577\t0x9BB3\n0xF578\t0x9BB4\n0xF579\t0x9BB5\n0xF57A\t0x9BB6\n0xF57B\t0x9BB7\n0xF57C\t0x9BB8\n0xF57D\t0x9BB9\n0xF57E\t0x9BBA\n0xF580\t0x9BBB\n0xF581\t0x9BBC\n0xF582\t0x9BBD\n0xF583\t0x9BBE\n0xF584\t0x9BBF\n0xF585\t0x9BC0\n0xF586\t0x9BC1\n0xF587\t0x9BC2\n0xF588\t0x9BC3\n0xF589\t0x9BC4\n0xF58A\t0x9BC5\n0xF58B\t0x9BC6\n0xF58C\t0x9BC7\n0xF58D\t0x9BC8\n0xF58E\t0x9BC9\n0xF58F\t0x9BCA\n0xF590\t0x9BCB\n0xF591\t0x9BCC\n0xF592\t0x9BCD\n0xF593\t0x9BCE\n0xF594\t0x9BCF\n0xF595\t0x9BD0\n0xF596\t0x9BD1\n0xF597\t0x9BD2\n0xF598\t0x9BD3\n0xF599\t0x9BD4\n0xF59A\t0x9BD5\n0xF59B\t0x9BD6\n0xF59C\t0x9BD7\n0xF59D\t0x9BD8\n0xF59E\t0x9BD9\n0xF59F\t0x9BDA\n0xF5A0\t0x9BDB\n0xF5A1\t0x9162\n0xF5A2\t0x9161\n0xF5A3\t0x9170\n0xF5A4\t0x9169\n0xF5A5\t0x916F\n0xF5A6\t0x917D\n0xF5A7\t0x917E\n0xF5A8\t0x9172\n0xF5A9\t0x9174\n0xF5AA\t0x9179\n0xF5AB\t0x918C\n0xF5AC\t0x9185\n0xF5AD\t0x9190\n0xF5AE\t0x918D\n0xF5AF\t0x9191\n0xF5B0\t0x91A2\n0xF5B1\t0x91A3\n0xF5B2\t0x91AA\n0xF5B3\t0x91AD\n0xF5B4\t0x91AE\n0xF5B5\t0x91AF\n0xF5B6\t0x91B5\n0xF5B7\t0x91B4\n0xF5B8\t0x91BA\n0xF5B9\t0x8C55\n0xF5BA\t0x9E7E\n0xF5BB\t0x8DB8\n0xF5BC\t0x8DEB\n0xF5BD\t0x8E05\n0xF5BE\t0x8E59\n0xF5BF\t0x8E69\n0xF5C0\t0x8DB5\n0xF5C1\t0x8DBF\n0xF5C2\t0x8DBC\n0xF5C3\t0x8DBA\n0xF5C4\t0x8DC4\n0xF5C5\t0x8DD6\n0xF5C6\t0x8DD7\n0xF5C7\t0x8DDA\n0xF5C8\t0x8DDE\n0xF5C9\t0x8DCE\n0xF5CA\t0x8DCF\n0xF5CB\t0x8DDB\n0xF5CC\t0x8DC6\n0xF5CD\t0x8DEC\n0xF5CE\t0x8DF7\n0xF5CF\t0x8DF8\n0xF5D0\t0x8DE3\n0xF5D1\t0x8DF9\n0xF5D2\t0x8DFB\n0xF5D3\t0x8DE4\n0xF5D4\t0x8E09\n0xF5D5\t0x8DFD\n0xF5D6\t0x8E14\n0xF5D7\t0x8E1D\n0xF5D8\t0x8E1F\n0xF5D9\t0x8E2C\n0xF5DA\t0x8E2E\n0xF5DB\t0x8E23\n0xF5DC\t0x8E2F\n0xF5DD\t0x8E3A\n0xF5DE\t0x8E40\n0xF5DF\t0x8E39\n0xF5E0\t0x8E35\n0xF5E1\t0x8E3D\n0xF5E2\t0x8E31\n0xF5E3\t0x8E49\n0xF5E4\t0x8E41\n0xF5E5\t0x8E42\n0xF5E6\t0x8E51\n0xF5E7\t0x8E52\n0xF5E8\t0x8E4A\n0xF5E9\t0x8E70\n0xF5EA\t0x8E76\n0xF5EB\t0x8E7C\n0xF5EC\t0x8E6F\n0xF5ED\t0x8E74\n0xF5EE\t0x8E85\n0xF5EF\t0x8E8F\n0xF5F0\t0x8E94\n0xF5F1\t0x8E90\n0xF5F2\t0x8E9C\n0xF5F3\t0x8E9E\n0xF5F4\t0x8C78\n0xF5F5\t0x8C82\n0xF5F6\t0x8C8A\n0xF5F7\t0x8C85\n0xF5F8\t0x8C98\n0xF5F9\t0x8C94\n0xF5FA\t0x659B\n0xF5FB\t0x89D6\n0xF5FC\t0x89DE\n0xF5FD\t0x89DA\n0xF5FE\t0x89DC\n0xF640\t0x9BDC\n0xF641\t0x9BDD\n0xF642\t0x9BDE\n0xF643\t0x9BDF\n0xF644\t0x9BE0\n0xF645\t0x9BE1\n0xF646\t0x9BE2\n0xF647\t0x9BE3\n0xF648\t0x9BE4\n0xF649\t0x9BE5\n0xF64A\t0x9BE6\n0xF64B\t0x9BE7\n0xF64C\t0x9BE8\n0xF64D\t0x9BE9\n0xF64E\t0x9BEA\n0xF64F\t0x9BEB\n0xF650\t0x9BEC\n0xF651\t0x9BED\n0xF652\t0x9BEE\n0xF653\t0x9BEF\n0xF654\t0x9BF0\n0xF655\t0x9BF1\n0xF656\t0x9BF2\n0xF657\t0x9BF3\n0xF658\t0x9BF4\n0xF659\t0x9BF5\n0xF65A\t0x9BF6\n0xF65B\t0x9BF7\n0xF65C\t0x9BF8\n0xF65D\t0x9BF9\n0xF65E\t0x9BFA\n0xF65F\t0x9BFB\n0xF660\t0x9BFC\n0xF661\t0x9BFD\n0xF662\t0x9BFE\n0xF663\t0x9BFF\n0xF664\t0x9C00\n0xF665\t0x9C01\n0xF666\t0x9C02\n0xF667\t0x9C03\n0xF668\t0x9C04\n0xF669\t0x9C05\n0xF66A\t0x9C06\n0xF66B\t0x9C07\n0xF66C\t0x9C08\n0xF66D\t0x9C09\n0xF66E\t0x9C0A\n0xF66F\t0x9C0B\n0xF670\t0x9C0C\n0xF671\t0x9C0D\n0xF672\t0x9C0E\n0xF673\t0x9C0F\n0xF674\t0x9C10\n0xF675\t0x9C11\n0xF676\t0x9C12\n0xF677\t0x9C13\n0xF678\t0x9C14\n0xF679\t0x9C15\n0xF67A\t0x9C16\n0xF67B\t0x9C17\n0xF67C\t0x9C18\n0xF67D\t0x9C19\n0xF67E\t0x9C1A\n0xF680\t0x9C1B\n0xF681\t0x9C1C\n0xF682\t0x9C1D\n0xF683\t0x9C1E\n0xF684\t0x9C1F\n0xF685\t0x9C20\n0xF686\t0x9C21\n0xF687\t0x9C22\n0xF688\t0x9C23\n0xF689\t0x9C24\n0xF68A\t0x9C25\n0xF68B\t0x9C26\n0xF68C\t0x9C27\n0xF68D\t0x9C28\n0xF68E\t0x9C29\n0xF68F\t0x9C2A\n0xF690\t0x9C2B\n0xF691\t0x9C2C\n0xF692\t0x9C2D\n0xF693\t0x9C2E\n0xF694\t0x9C2F\n0xF695\t0x9C30\n0xF696\t0x9C31\n0xF697\t0x9C32\n0xF698\t0x9C33\n0xF699\t0x9C34\n0xF69A\t0x9C35\n0xF69B\t0x9C36\n0xF69C\t0x9C37\n0xF69D\t0x9C38\n0xF69E\t0x9C39\n0xF69F\t0x9C3A\n0xF6A0\t0x9C3B\n0xF6A1\t0x89E5\n0xF6A2\t0x89EB\n0xF6A3\t0x89EF\n0xF6A4\t0x8A3E\n0xF6A5\t0x8B26\n0xF6A6\t0x9753\n0xF6A7\t0x96E9\n0xF6A8\t0x96F3\n0xF6A9\t0x96EF\n0xF6AA\t0x9706\n0xF6AB\t0x9701\n0xF6AC\t0x9708\n0xF6AD\t0x970F\n0xF6AE\t0x970E\n0xF6AF\t0x972A\n0xF6B0\t0x972D\n0xF6B1\t0x9730\n0xF6B2\t0x973E\n0xF6B3\t0x9F80\n0xF6B4\t0x9F83\n0xF6B5\t0x9F85\n0xF6B6\t0x9F86\n0xF6B7\t0x9F87\n0xF6B8\t0x9F88\n0xF6B9\t0x9F89\n0xF6BA\t0x9F8A\n0xF6BB\t0x9F8C\n0xF6BC\t0x9EFE\n0xF6BD\t0x9F0B\n0xF6BE\t0x9F0D\n0xF6BF\t0x96B9\n0xF6C0\t0x96BC\n0xF6C1\t0x96BD\n0xF6C2\t0x96CE\n0xF6C3\t0x96D2\n0xF6C4\t0x77BF\n0xF6C5\t0x96E0\n0xF6C6\t0x928E\n0xF6C7\t0x92AE\n0xF6C8\t0x92C8\n0xF6C9\t0x933E\n0xF6CA\t0x936A\n0xF6CB\t0x93CA\n0xF6CC\t0x938F\n0xF6CD\t0x943E\n0xF6CE\t0x946B\n0xF6CF\t0x9C7F\n0xF6D0\t0x9C82\n0xF6D1\t0x9C85\n0xF6D2\t0x9C86\n0xF6D3\t0x9C87\n0xF6D4\t0x9C88\n0xF6D5\t0x7A23\n0xF6D6\t0x9C8B\n0xF6D7\t0x9C8E\n0xF6D8\t0x9C90\n0xF6D9\t0x9C91\n0xF6DA\t0x9C92\n0xF6DB\t0x9C94\n0xF6DC\t0x9C95\n0xF6DD\t0x9C9A\n0xF6DE\t0x9C9B\n0xF6DF\t0x9C9E\n0xF6E0\t0x9C9F\n0xF6E1\t0x9CA0\n0xF6E2\t0x9CA1\n0xF6E3\t0x9CA2\n0xF6E4\t0x9CA3\n0xF6E5\t0x9CA5\n0xF6E6\t0x9CA6\n0xF6E7\t0x9CA7\n0xF6E8\t0x9CA8\n0xF6E9\t0x9CA9\n0xF6EA\t0x9CAB\n0xF6EB\t0x9CAD\n0xF6EC\t0x9CAE\n0xF6ED\t0x9CB0\n0xF6EE\t0x9CB1\n0xF6EF\t0x9CB2\n0xF6F0\t0x9CB3\n0xF6F1\t0x9CB4\n0xF6F2\t0x9CB5\n0xF6F3\t0x9CB6\n0xF6F4\t0x9CB7\n0xF6F5\t0x9CBA\n0xF6F6\t0x9CBB\n0xF6F7\t0x9CBC\n0xF6F8\t0x9CBD\n0xF6F9\t0x9CC4\n0xF6FA\t0x9CC5\n0xF6FB\t0x9CC6\n0xF6FC\t0x9CC7\n0xF6FD\t0x9CCA\n0xF6FE\t0x9CCB\n0xF740\t0x9C3C\n0xF741\t0x9C3D\n0xF742\t0x9C3E\n0xF743\t0x9C3F\n0xF744\t0x9C40\n0xF745\t0x9C41\n0xF746\t0x9C42\n0xF747\t0x9C43\n0xF748\t0x9C44\n0xF749\t0x9C45\n0xF74A\t0x9C46\n0xF74B\t0x9C47\n0xF74C\t0x9C48\n0xF74D\t0x9C49\n0xF74E\t0x9C4A\n0xF74F\t0x9C4B\n0xF750\t0x9C4C\n0xF751\t0x9C4D\n0xF752\t0x9C4E\n0xF753\t0x9C4F\n0xF754\t0x9C50\n0xF755\t0x9C51\n0xF756\t0x9C52\n0xF757\t0x9C53\n0xF758\t0x9C54\n0xF759\t0x9C55\n0xF75A\t0x9C56\n0xF75B\t0x9C57\n0xF75C\t0x9C58\n0xF75D\t0x9C59\n0xF75E\t0x9C5A\n0xF75F\t0x9C5B\n0xF760\t0x9C5C\n0xF761\t0x9C5D\n0xF762\t0x9C5E\n0xF763\t0x9C5F\n0xF764\t0x9C60\n0xF765\t0x9C61\n0xF766\t0x9C62\n0xF767\t0x9C63\n0xF768\t0x9C64\n0xF769\t0x9C65\n0xF76A\t0x9C66\n0xF76B\t0x9C67\n0xF76C\t0x9C68\n0xF76D\t0x9C69\n0xF76E\t0x9C6A\n0xF76F\t0x9C6B\n0xF770\t0x9C6C\n0xF771\t0x9C6D\n0xF772\t0x9C6E\n0xF773\t0x9C6F\n0xF774\t0x9C70\n0xF775\t0x9C71\n0xF776\t0x9C72\n0xF777\t0x9C73\n0xF778\t0x9C74\n0xF779\t0x9C75\n0xF77A\t0x9C76\n0xF77B\t0x9C77\n0xF77C\t0x9C78\n0xF77D\t0x9C79\n0xF77E\t0x9C7A\n0xF780\t0x9C7B\n0xF781\t0x9C7D\n0xF782\t0x9C7E\n0xF783\t0x9C80\n0xF784\t0x9C83\n0xF785\t0x9C84\n0xF786\t0x9C89\n0xF787\t0x9C8A\n0xF788\t0x9C8C\n0xF789\t0x9C8F\n0xF78A\t0x9C93\n0xF78B\t0x9C96\n0xF78C\t0x9C97\n0xF78D\t0x9C98\n0xF78E\t0x9C99\n0xF78F\t0x9C9D\n0xF790\t0x9CAA\n0xF791\t0x9CAC\n0xF792\t0x9CAF\n0xF793\t0x9CB9\n0xF794\t0x9CBE\n0xF795\t0x9CBF\n0xF796\t0x9CC0\n0xF797\t0x9CC1\n0xF798\t0x9CC2\n0xF799\t0x9CC8\n0xF79A\t0x9CC9\n0xF79B\t0x9CD1\n0xF79C\t0x9CD2\n0xF79D\t0x9CDA\n0xF79E\t0x9CDB\n0xF79F\t0x9CE0\n0xF7A0\t0x9CE1\n0xF7A1\t0x9CCC\n0xF7A2\t0x9CCD\n0xF7A3\t0x9CCE\n0xF7A4\t0x9CCF\n0xF7A5\t0x9CD0\n0xF7A6\t0x9CD3\n0xF7A7\t0x9CD4\n0xF7A8\t0x9CD5\n0xF7A9\t0x9CD7\n0xF7AA\t0x9CD8\n0xF7AB\t0x9CD9\n0xF7AC\t0x9CDC\n0xF7AD\t0x9CDD\n0xF7AE\t0x9CDF\n0xF7AF\t0x9CE2\n0xF7B0\t0x977C\n0xF7B1\t0x9785\n0xF7B2\t0x9791\n0xF7B3\t0x9792\n0xF7B4\t0x9794\n0xF7B5\t0x97AF\n0xF7B6\t0x97AB\n0xF7B7\t0x97A3\n0xF7B8\t0x97B2\n0xF7B9\t0x97B4\n0xF7BA\t0x9AB1\n0xF7BB\t0x9AB0\n0xF7BC\t0x9AB7\n0xF7BD\t0x9E58\n0xF7BE\t0x9AB6\n0xF7BF\t0x9ABA\n0xF7C0\t0x9ABC\n0xF7C1\t0x9AC1\n0xF7C2\t0x9AC0\n0xF7C3\t0x9AC5\n0xF7C4\t0x9AC2\n0xF7C5\t0x9ACB\n0xF7C6\t0x9ACC\n0xF7C7\t0x9AD1\n0xF7C8\t0x9B45\n0xF7C9\t0x9B43\n0xF7CA\t0x9B47\n0xF7CB\t0x9B49\n0xF7CC\t0x9B48\n0xF7CD\t0x9B4D\n0xF7CE\t0x9B51\n0xF7CF\t0x98E8\n0xF7D0\t0x990D\n0xF7D1\t0x992E\n0xF7D2\t0x9955\n0xF7D3\t0x9954\n0xF7D4\t0x9ADF\n0xF7D5\t0x9AE1\n0xF7D6\t0x9AE6\n0xF7D7\t0x9AEF\n0xF7D8\t0x9AEB\n0xF7D9\t0x9AFB\n0xF7DA\t0x9AED\n0xF7DB\t0x9AF9\n0xF7DC\t0x9B08\n0xF7DD\t0x9B0F\n0xF7DE\t0x9B13\n0xF7DF\t0x9B1F\n0xF7E0\t0x9B23\n0xF7E1\t0x9EBD\n0xF7E2\t0x9EBE\n0xF7E3\t0x7E3B\n0xF7E4\t0x9E82\n0xF7E5\t0x9E87\n0xF7E6\t0x9E88\n0xF7E7\t0x9E8B\n0xF7E8\t0x9E92\n0xF7E9\t0x93D6\n0xF7EA\t0x9E9D\n0xF7EB\t0x9E9F\n0xF7EC\t0x9EDB\n0xF7ED\t0x9EDC\n0xF7EE\t0x9EDD\n0xF7EF\t0x9EE0\n0xF7F0\t0x9EDF\n0xF7F1\t0x9EE2\n0xF7F2\t0x9EE9\n0xF7F3\t0x9EE7\n0xF7F4\t0x9EE5\n0xF7F5\t0x9EEA\n0xF7F6\t0x9EEF\n0xF7F7\t0x9F22\n0xF7F8\t0x9F2C\n0xF7F9\t0x9F2F\n0xF7FA\t0x9F39\n0xF7FB\t0x9F37\n0xF7FC\t0x9F3D\n0xF7FD\t0x9F3E\n0xF7FE\t0x9F44\n0xF840\t0x9CE3\n0xF841\t0x9CE4\n0xF842\t0x9CE5\n0xF843\t0x9CE6\n0xF844\t0x9CE7\n0xF845\t0x9CE8\n0xF846\t0x9CE9\n0xF847\t0x9CEA\n0xF848\t0x9CEB\n0xF849\t0x9CEC\n0xF84A\t0x9CED\n0xF84B\t0x9CEE\n0xF84C\t0x9CEF\n0xF84D\t0x9CF0\n0xF84E\t0x9CF1\n0xF84F\t0x9CF2\n0xF850\t0x9CF3\n0xF851\t0x9CF4\n0xF852\t0x9CF5\n0xF853\t0x9CF6\n0xF854\t0x9CF7\n0xF855\t0x9CF8\n0xF856\t0x9CF9\n0xF857\t0x9CFA\n0xF858\t0x9CFB\n0xF859\t0x9CFC\n0xF85A\t0x9CFD\n0xF85B\t0x9CFE\n0xF85C\t0x9CFF\n0xF85D\t0x9D00\n0xF85E\t0x9D01\n0xF85F\t0x9D02\n0xF860\t0x9D03\n0xF861\t0x9D04\n0xF862\t0x9D05\n0xF863\t0x9D06\n0xF864\t0x9D07\n0xF865\t0x9D08\n0xF866\t0x9D09\n0xF867\t0x9D0A\n0xF868\t0x9D0B\n0xF869\t0x9D0C\n0xF86A\t0x9D0D\n0xF86B\t0x9D0E\n0xF86C\t0x9D0F\n0xF86D\t0x9D10\n0xF86E\t0x9D11\n0xF86F\t0x9D12\n0xF870\t0x9D13\n0xF871\t0x9D14\n0xF872\t0x9D15\n0xF873\t0x9D16\n0xF874\t0x9D17\n0xF875\t0x9D18\n0xF876\t0x9D19\n0xF877\t0x9D1A\n0xF878\t0x9D1B\n0xF879\t0x9D1C\n0xF87A\t0x9D1D\n0xF87B\t0x9D1E\n0xF87C\t0x9D1F\n0xF87D\t0x9D20\n0xF87E\t0x9D21\n0xF880\t0x9D22\n0xF881\t0x9D23\n0xF882\t0x9D24\n0xF883\t0x9D25\n0xF884\t0x9D26\n0xF885\t0x9D27\n0xF886\t0x9D28\n0xF887\t0x9D29\n0xF888\t0x9D2A\n0xF889\t0x9D2B\n0xF88A\t0x9D2C\n0xF88B\t0x9D2D\n0xF88C\t0x9D2E\n0xF88D\t0x9D2F\n0xF88E\t0x9D30\n0xF88F\t0x9D31\n0xF890\t0x9D32\n0xF891\t0x9D33\n0xF892\t0x9D34\n0xF893\t0x9D35\n0xF894\t0x9D36\n0xF895\t0x9D37\n0xF896\t0x9D38\n0xF897\t0x9D39\n0xF898\t0x9D3A\n0xF899\t0x9D3B\n0xF89A\t0x9D3C\n0xF89B\t0x9D3D\n0xF89C\t0x9D3E\n0xF89D\t0x9D3F\n0xF89E\t0x9D40\n0xF89F\t0x9D41\n0xF8A0\t0x9D42\n0xF8A1\t0xE234\n0xF8A2\t0xE235\n0xF8A3\t0xE236\n0xF8A4\t0xE237\n0xF8A5\t0xE238\n0xF8A6\t0xE239\n0xF8A7\t0xE23A\n0xF8A8\t0xE23B\n0xF8A9\t0xE23C\n0xF8AA\t0xE23D\n0xF8AB\t0xE23E\n0xF8AC\t0xE23F\n0xF8AD\t0xE240\n0xF8AE\t0xE241\n0xF8AF\t0xE242\n0xF8B0\t0xE243\n0xF8B1\t0xE244\n0xF8B2\t0xE245\n0xF8B3\t0xE246\n0xF8B4\t0xE247\n0xF8B5\t0xE248\n0xF8B6\t0xE249\n0xF8B7\t0xE24A\n0xF8B8\t0xE24B\n0xF8B9\t0xE24C\n0xF8BA\t0xE24D\n0xF8BB\t0xE24E\n0xF8BC\t0xE24F\n0xF8BD\t0xE250\n0xF8BE\t0xE251\n0xF8BF\t0xE252\n0xF8C0\t0xE253\n0xF8C1\t0xE254\n0xF8C2\t0xE255\n0xF8C3\t0xE256\n0xF8C4\t0xE257\n0xF8C5\t0xE258\n0xF8C6\t0xE259\n0xF8C7\t0xE25A\n0xF8C8\t0xE25B\n0xF8C9\t0xE25C\n0xF8CA\t0xE25D\n0xF8CB\t0xE25E\n0xF8CC\t0xE25F\n0xF8CD\t0xE260\n0xF8CE\t0xE261\n0xF8CF\t0xE262\n0xF8D0\t0xE263\n0xF8D1\t0xE264\n0xF8D2\t0xE265\n0xF8D3\t0xE266\n0xF8D4\t0xE267\n0xF8D5\t0xE268\n0xF8D6\t0xE269\n0xF8D7\t0xE26A\n0xF8D8\t0xE26B\n0xF8D9\t0xE26C\n0xF8DA\t0xE26D\n0xF8DB\t0xE26E\n0xF8DC\t0xE26F\n0xF8DD\t0xE270\n0xF8DE\t0xE271\n0xF8DF\t0xE272\n0xF8E0\t0xE273\n0xF8E1\t0xE274\n0xF8E2\t0xE275\n0xF8E3\t0xE276\n0xF8E4\t0xE277\n0xF8E5\t0xE278\n0xF8E6\t0xE279\n0xF8E7\t0xE27A\n0xF8E8\t0xE27B\n0xF8E9\t0xE27C\n0xF8EA\t0xE27D\n0xF8EB\t0xE27E\n0xF8EC\t0xE27F\n0xF8ED\t0xE280\n0xF8EE\t0xE281\n0xF8EF\t0xE282\n0xF8F0\t0xE283\n0xF8F1\t0xE284\n0xF8F2\t0xE285\n0xF8F3\t0xE286\n0xF8F4\t0xE287\n0xF8F5\t0xE288\n0xF8F6\t0xE289\n0xF8F7\t0xE28A\n0xF8F8\t0xE28B\n0xF8F9\t0xE28C\n0xF8FA\t0xE28D\n0xF8FB\t0xE28E\n0xF8FC\t0xE28F\n0xF8FD\t0xE290\n0xF8FE\t0xE291\n0xF940\t0x9D43\n0xF941\t0x9D44\n0xF942\t0x9D45\n0xF943\t0x9D46\n0xF944\t0x9D47\n0xF945\t0x9D48\n0xF946\t0x9D49\n0xF947\t0x9D4A\n0xF948\t0x9D4B\n0xF949\t0x9D4C\n0xF94A\t0x9D4D\n0xF94B\t0x9D4E\n0xF94C\t0x9D4F\n0xF94D\t0x9D50\n0xF94E\t0x9D51\n0xF94F\t0x9D52\n0xF950\t0x9D53\n0xF951\t0x9D54\n0xF952\t0x9D55\n0xF953\t0x9D56\n0xF954\t0x9D57\n0xF955\t0x9D58\n0xF956\t0x9D59\n0xF957\t0x9D5A\n0xF958\t0x9D5B\n0xF959\t0x9D5C\n0xF95A\t0x9D5D\n0xF95B\t0x9D5E\n0xF95C\t0x9D5F\n0xF95D\t0x9D60\n0xF95E\t0x9D61\n0xF95F\t0x9D62\n0xF960\t0x9D63\n0xF961\t0x9D64\n0xF962\t0x9D65\n0xF963\t0x9D66\n0xF964\t0x9D67\n0xF965\t0x9D68\n0xF966\t0x9D69\n0xF967\t0x9D6A\n0xF968\t0x9D6B\n0xF969\t0x9D6C\n0xF96A\t0x9D6D\n0xF96B\t0x9D6E\n0xF96C\t0x9D6F\n0xF96D\t0x9D70\n0xF96E\t0x9D71\n0xF96F\t0x9D72\n0xF970\t0x9D73\n0xF971\t0x9D74\n0xF972\t0x9D75\n0xF973\t0x9D76\n0xF974\t0x9D77\n0xF975\t0x9D78\n0xF976\t0x9D79\n0xF977\t0x9D7A\n0xF978\t0x9D7B\n0xF979\t0x9D7C\n0xF97A\t0x9D7D\n0xF97B\t0x9D7E\n0xF97C\t0x9D7F\n0xF97D\t0x9D80\n0xF97E\t0x9D81\n0xF980\t0x9D82\n0xF981\t0x9D83\n0xF982\t0x9D84\n0xF983\t0x9D85\n0xF984\t0x9D86\n0xF985\t0x9D87\n0xF986\t0x9D88\n0xF987\t0x9D89\n0xF988\t0x9D8A\n0xF989\t0x9D8B\n0xF98A\t0x9D8C\n0xF98B\t0x9D8D\n0xF98C\t0x9D8E\n0xF98D\t0x9D8F\n0xF98E\t0x9D90\n0xF98F\t0x9D91\n0xF990\t0x9D92\n0xF991\t0x9D93\n0xF992\t0x9D94\n0xF993\t0x9D95\n0xF994\t0x9D96\n0xF995\t0x9D97\n0xF996\t0x9D98\n0xF997\t0x9D99\n0xF998\t0x9D9A\n0xF999\t0x9D9B\n0xF99A\t0x9D9C\n0xF99B\t0x9D9D\n0xF99C\t0x9D9E\n0xF99D\t0x9D9F\n0xF99E\t0x9DA0\n0xF99F\t0x9DA1\n0xF9A0\t0x9DA2\n0xF9A1\t0xE292\n0xF9A2\t0xE293\n0xF9A3\t0xE294\n0xF9A4\t0xE295\n0xF9A5\t0xE296\n0xF9A6\t0xE297\n0xF9A7\t0xE298\n0xF9A8\t0xE299\n0xF9A9\t0xE29A\n0xF9AA\t0xE29B\n0xF9AB\t0xE29C\n0xF9AC\t0xE29D\n0xF9AD\t0xE29E\n0xF9AE\t0xE29F\n0xF9AF\t0xE2A0\n0xF9B0\t0xE2A1\n0xF9B1\t0xE2A2\n0xF9B2\t0xE2A3\n0xF9B3\t0xE2A4\n0xF9B4\t0xE2A5\n0xF9B5\t0xE2A6\n0xF9B6\t0xE2A7\n0xF9B7\t0xE2A8\n0xF9B8\t0xE2A9\n0xF9B9\t0xE2AA\n0xF9BA\t0xE2AB\n0xF9BB\t0xE2AC\n0xF9BC\t0xE2AD\n0xF9BD\t0xE2AE\n0xF9BE\t0xE2AF\n0xF9BF\t0xE2B0\n0xF9C0\t0xE2B1\n0xF9C1\t0xE2B2\n0xF9C2\t0xE2B3\n0xF9C3\t0xE2B4\n0xF9C4\t0xE2B5\n0xF9C5\t0xE2B6\n0xF9C6\t0xE2B7\n0xF9C7\t0xE2B8\n0xF9C8\t0xE2B9\n0xF9C9\t0xE2BA\n0xF9CA\t0xE2BB\n0xF9CB\t0xE2BC\n0xF9CC\t0xE2BD\n0xF9CD\t0xE2BE\n0xF9CE\t0xE2BF\n0xF9CF\t0xE2C0\n0xF9D0\t0xE2C1\n0xF9D1\t0xE2C2\n0xF9D2\t0xE2C3\n0xF9D3\t0xE2C4\n0xF9D4\t0xE2C5\n0xF9D5\t0xE2C6\n0xF9D6\t0xE2C7\n0xF9D7\t0xE2C8\n0xF9D8\t0xE2C9\n0xF9D9\t0xE2CA\n0xF9DA\t0xE2CB\n0xF9DB\t0xE2CC\n0xF9DC\t0xE2CD\n0xF9DD\t0xE2CE\n0xF9DE\t0xE2CF\n0xF9DF\t0xE2D0\n0xF9E0\t0xE2D1\n0xF9E1\t0xE2D2\n0xF9E2\t0xE2D3\n0xF9E3\t0xE2D4\n0xF9E4\t0xE2D5\n0xF9E5\t0xE2D6\n0xF9E6\t0xE2D7\n0xF9E7\t0xE2D8\n0xF9E8\t0xE2D9\n0xF9E9\t0xE2DA\n0xF9EA\t0xE2DB\n0xF9EB\t0xE2DC\n0xF9EC\t0xE2DD\n0xF9ED\t0xE2DE\n0xF9EE\t0xE2DF\n0xF9EF\t0xE2E0\n0xF9F0\t0xE2E1\n0xF9F1\t0xE2E2\n0xF9F2\t0xE2E3\n0xF9F3\t0xE2E4\n0xF9F4\t0xE2E5\n0xF9F5\t0xE2E6\n0xF9F6\t0xE2E7\n0xF9F7\t0xE2E8\n0xF9F8\t0xE2E9\n0xF9F9\t0xE2EA\n0xF9FA\t0xE2EB\n0xF9FB\t0xE2EC\n0xF9FC\t0xE2ED\n0xF9FD\t0xE2EE\n0xF9FE\t0xE2EF\n0xFA40\t0x9DA3\n0xFA41\t0x9DA4\n0xFA42\t0x9DA5\n0xFA43\t0x9DA6\n0xFA44\t0x9DA7\n0xFA45\t0x9DA8\n0xFA46\t0x9DA9\n0xFA47\t0x9DAA\n0xFA48\t0x9DAB\n0xFA49\t0x9DAC\n0xFA4A\t0x9DAD\n0xFA4B\t0x9DAE\n0xFA4C\t0x9DAF\n0xFA4D\t0x9DB0\n0xFA4E\t0x9DB1\n0xFA4F\t0x9DB2\n0xFA50\t0x9DB3\n0xFA51\t0x9DB4\n0xFA52\t0x9DB5\n0xFA53\t0x9DB6\n0xFA54\t0x9DB7\n0xFA55\t0x9DB8\n0xFA56\t0x9DB9\n0xFA57\t0x9DBA\n0xFA58\t0x9DBB\n0xFA59\t0x9DBC\n0xFA5A\t0x9DBD\n0xFA5B\t0x9DBE\n0xFA5C\t0x9DBF\n0xFA5D\t0x9DC0\n0xFA5E\t0x9DC1\n0xFA5F\t0x9DC2\n0xFA60\t0x9DC3\n0xFA61\t0x9DC4\n0xFA62\t0x9DC5\n0xFA63\t0x9DC6\n0xFA64\t0x9DC7\n0xFA65\t0x9DC8\n0xFA66\t0x9DC9\n0xFA67\t0x9DCA\n0xFA68\t0x9DCB\n0xFA69\t0x9DCC\n0xFA6A\t0x9DCD\n0xFA6B\t0x9DCE\n0xFA6C\t0x9DCF\n0xFA6D\t0x9DD0\n0xFA6E\t0x9DD1\n0xFA6F\t0x9DD2\n0xFA70\t0x9DD3\n0xFA71\t0x9DD4\n0xFA72\t0x9DD5\n0xFA73\t0x9DD6\n0xFA74\t0x9DD7\n0xFA75\t0x9DD8\n0xFA76\t0x9DD9\n0xFA77\t0x9DDA\n0xFA78\t0x9DDB\n0xFA79\t0x9DDC\n0xFA7A\t0x9DDD\n0xFA7B\t0x9DDE\n0xFA7C\t0x9DDF\n0xFA7D\t0x9DE0\n0xFA7E\t0x9DE1\n0xFA80\t0x9DE2\n0xFA81\t0x9DE3\n0xFA82\t0x9DE4\n0xFA83\t0x9DE5\n0xFA84\t0x9DE6\n0xFA85\t0x9DE7\n0xFA86\t0x9DE8\n0xFA87\t0x9DE9\n0xFA88\t0x9DEA\n0xFA89\t0x9DEB\n0xFA8A\t0x9DEC\n0xFA8B\t0x9DED\n0xFA8C\t0x9DEE\n0xFA8D\t0x9DEF\n0xFA8E\t0x9DF0\n0xFA8F\t0x9DF1\n0xFA90\t0x9DF2\n0xFA91\t0x9DF3\n0xFA92\t0x9DF4\n0xFA93\t0x9DF5\n0xFA94\t0x9DF6\n0xFA95\t0x9DF7\n0xFA96\t0x9DF8\n0xFA97\t0x9DF9\n0xFA98\t0x9DFA\n0xFA99\t0x9DFB\n0xFA9A\t0x9DFC\n0xFA9B\t0x9DFD\n0xFA9C\t0x9DFE\n0xFA9D\t0x9DFF\n0xFA9E\t0x9E00\n0xFA9F\t0x9E01\n0xFAA0\t0x9E02\n0xFAA1\t0xE2F0\n0xFAA2\t0xE2F1\n0xFAA3\t0xE2F2\n0xFAA4\t0xE2F3\n0xFAA5\t0xE2F4\n0xFAA6\t0xE2F5\n0xFAA7\t0xE2F6\n0xFAA8\t0xE2F7\n0xFAA9\t0xE2F8\n0xFAAA\t0xE2F9\n0xFAAB\t0xE2FA\n0xFAAC\t0xE2FB\n0xFAAD\t0xE2FC\n0xFAAE\t0xE2FD\n0xFAAF\t0xE2FE\n0xFAB0\t0xE2FF\n0xFAB1\t0xE300\n0xFAB2\t0xE301\n0xFAB3\t0xE302\n0xFAB4\t0xE303\n0xFAB5\t0xE304\n0xFAB6\t0xE305\n0xFAB7\t0xE306\n0xFAB8\t0xE307\n0xFAB9\t0xE308\n0xFABA\t0xE309\n0xFABB\t0xE30A\n0xFABC\t0xE30B\n0xFABD\t0xE30C\n0xFABE\t0xE30D\n0xFABF\t0xE30E\n0xFAC0\t0xE30F\n0xFAC1\t0xE310\n0xFAC2\t0xE311\n0xFAC3\t0xE312\n0xFAC4\t0xE313\n0xFAC5\t0xE314\n0xFAC6\t0xE315\n0xFAC7\t0xE316\n0xFAC8\t0xE317\n0xFAC9\t0xE318\n0xFACA\t0xE319\n0xFACB\t0xE31A\n0xFACC\t0xE31B\n0xFACD\t0xE31C\n0xFACE\t0xE31D\n0xFACF\t0xE31E\n0xFAD0\t0xE31F\n0xFAD1\t0xE320\n0xFAD2\t0xE321\n0xFAD3\t0xE322\n0xFAD4\t0xE323\n0xFAD5\t0xE324\n0xFAD6\t0xE325\n0xFAD7\t0xE326\n0xFAD8\t0xE327\n0xFAD9\t0xE328\n0xFADA\t0xE329\n0xFADB\t0xE32A\n0xFADC\t0xE32B\n0xFADD\t0xE32C\n0xFADE\t0xE32D\n0xFADF\t0xE32E\n0xFAE0\t0xE32F\n0xFAE1\t0xE330\n0xFAE2\t0xE331\n0xFAE3\t0xE332\n0xFAE4\t0xE333\n0xFAE5\t0xE334\n0xFAE6\t0xE335\n0xFAE7\t0xE336\n0xFAE8\t0xE337\n0xFAE9\t0xE338\n0xFAEA\t0xE339\n0xFAEB\t0xE33A\n0xFAEC\t0xE33B\n0xFAED\t0xE33C\n0xFAEE\t0xE33D\n0xFAEF\t0xE33E\n0xFAF0\t0xE33F\n0xFAF1\t0xE340\n0xFAF2\t0xE341\n0xFAF3\t0xE342\n0xFAF4\t0xE343\n0xFAF5\t0xE344\n0xFAF6\t0xE345\n0xFAF7\t0xE346\n0xFAF8\t0xE347\n0xFAF9\t0xE348\n0xFAFA\t0xE349\n0xFAFB\t0xE34A\n0xFAFC\t0xE34B\n0xFAFD\t0xE34C\n0xFAFE\t0xE34D\n0xFB40\t0x9E03\n0xFB41\t0x9E04\n0xFB42\t0x9E05\n0xFB43\t0x9E06\n0xFB44\t0x9E07\n0xFB45\t0x9E08\n0xFB46\t0x9E09\n0xFB47\t0x9E0A\n0xFB48\t0x9E0B\n0xFB49\t0x9E0C\n0xFB4A\t0x9E0D\n0xFB4B\t0x9E0E\n0xFB4C\t0x9E0F\n0xFB4D\t0x9E10\n0xFB4E\t0x9E11\n0xFB4F\t0x9E12\n0xFB50\t0x9E13\n0xFB51\t0x9E14\n0xFB52\t0x9E15\n0xFB53\t0x9E16\n0xFB54\t0x9E17\n0xFB55\t0x9E18\n0xFB56\t0x9E19\n0xFB57\t0x9E1A\n0xFB58\t0x9E1B\n0xFB59\t0x9E1C\n0xFB5A\t0x9E1D\n0xFB5B\t0x9E1E\n0xFB5C\t0x9E24\n0xFB5D\t0x9E27\n0xFB5E\t0x9E2E\n0xFB5F\t0x9E30\n0xFB60\t0x9E34\n0xFB61\t0x9E3B\n0xFB62\t0x9E3C\n0xFB63\t0x9E40\n0xFB64\t0x9E4D\n0xFB65\t0x9E50\n0xFB66\t0x9E52\n0xFB67\t0x9E53\n0xFB68\t0x9E54\n0xFB69\t0x9E56\n0xFB6A\t0x9E59\n0xFB6B\t0x9E5D\n0xFB6C\t0x9E5F\n0xFB6D\t0x9E60\n0xFB6E\t0x9E61\n0xFB6F\t0x9E62\n0xFB70\t0x9E65\n0xFB71\t0x9E6E\n0xFB72\t0x9E6F\n0xFB73\t0x9E72\n0xFB74\t0x9E74\n0xFB75\t0x9E75\n0xFB76\t0x9E76\n0xFB77\t0x9E77\n0xFB78\t0x9E78\n0xFB79\t0x9E79\n0xFB7A\t0x9E7A\n0xFB7B\t0x9E7B\n0xFB7C\t0x9E7C\n0xFB7D\t0x9E7D\n0xFB7E\t0x9E80\n0xFB80\t0x9E81\n0xFB81\t0x9E83\n0xFB82\t0x9E84\n0xFB83\t0x9E85\n0xFB84\t0x9E86\n0xFB85\t0x9E89\n0xFB86\t0x9E8A\n0xFB87\t0x9E8C\n0xFB88\t0x9E8D\n0xFB89\t0x9E8E\n0xFB8A\t0x9E8F\n0xFB8B\t0x9E90\n0xFB8C\t0x9E91\n0xFB8D\t0x9E94\n0xFB8E\t0x9E95\n0xFB8F\t0x9E96\n0xFB90\t0x9E97\n0xFB91\t0x9E98\n0xFB92\t0x9E99\n0xFB93\t0x9E9A\n0xFB94\t0x9E9B\n0xFB95\t0x9E9C\n0xFB96\t0x9E9E\n0xFB97\t0x9EA0\n0xFB98\t0x9EA1\n0xFB99\t0x9EA2\n0xFB9A\t0x9EA3\n0xFB9B\t0x9EA4\n0xFB9C\t0x9EA5\n0xFB9D\t0x9EA7\n0xFB9E\t0x9EA8\n0xFB9F\t0x9EA9\n0xFBA0\t0x9EAA\n0xFBA1\t0xE34E\n0xFBA2\t0xE34F\n0xFBA3\t0xE350\n0xFBA4\t0xE351\n0xFBA5\t0xE352\n0xFBA6\t0xE353\n0xFBA7\t0xE354\n0xFBA8\t0xE355\n0xFBA9\t0xE356\n0xFBAA\t0xE357\n0xFBAB\t0xE358\n0xFBAC\t0xE359\n0xFBAD\t0xE35A\n0xFBAE\t0xE35B\n0xFBAF\t0xE35C\n0xFBB0\t0xE35D\n0xFBB1\t0xE35E\n0xFBB2\t0xE35F\n0xFBB3\t0xE360\n0xFBB4\t0xE361\n0xFBB5\t0xE362\n0xFBB6\t0xE363\n0xFBB7\t0xE364\n0xFBB8\t0xE365\n0xFBB9\t0xE366\n0xFBBA\t0xE367\n0xFBBB\t0xE368\n0xFBBC\t0xE369\n0xFBBD\t0xE36A\n0xFBBE\t0xE36B\n0xFBBF\t0xE36C\n0xFBC0\t0xE36D\n0xFBC1\t0xE36E\n0xFBC2\t0xE36F\n0xFBC3\t0xE370\n0xFBC4\t0xE371\n0xFBC5\t0xE372\n0xFBC6\t0xE373\n0xFBC7\t0xE374\n0xFBC8\t0xE375\n0xFBC9\t0xE376\n0xFBCA\t0xE377\n0xFBCB\t0xE378\n0xFBCC\t0xE379\n0xFBCD\t0xE37A\n0xFBCE\t0xE37B\n0xFBCF\t0xE37C\n0xFBD0\t0xE37D\n0xFBD1\t0xE37E\n0xFBD2\t0xE37F\n0xFBD3\t0xE380\n0xFBD4\t0xE381\n0xFBD5\t0xE382\n0xFBD6\t0xE383\n0xFBD7\t0xE384\n0xFBD8\t0xE385\n0xFBD9\t0xE386\n0xFBDA\t0xE387\n0xFBDB\t0xE388\n0xFBDC\t0xE389\n0xFBDD\t0xE38A\n0xFBDE\t0xE38B\n0xFBDF\t0xE38C\n0xFBE0\t0xE38D\n0xFBE1\t0xE38E\n0xFBE2\t0xE38F\n0xFBE3\t0xE390\n0xFBE4\t0xE391\n0xFBE5\t0xE392\n0xFBE6\t0xE393\n0xFBE7\t0xE394\n0xFBE8\t0xE395\n0xFBE9\t0xE396\n0xFBEA\t0xE397\n0xFBEB\t0xE398\n0xFBEC\t0xE399\n0xFBED\t0xE39A\n0xFBEE\t0xE39B\n0xFBEF\t0xE39C\n0xFBF0\t0xE39D\n0xFBF1\t0xE39E\n0xFBF2\t0xE39F\n0xFBF3\t0xE3A0\n0xFBF4\t0xE3A1\n0xFBF5\t0xE3A2\n0xFBF6\t0xE3A3\n0xFBF7\t0xE3A4\n0xFBF8\t0xE3A5\n0xFBF9\t0xE3A6\n0xFBFA\t0xE3A7\n0xFBFB\t0xE3A8\n0xFBFC\t0xE3A9\n0xFBFD\t0xE3AA\n0xFBFE\t0xE3AB\n0xFC40\t0x9EAB\n0xFC41\t0x9EAC\n0xFC42\t0x9EAD\n0xFC43\t0x9EAE\n0xFC44\t0x9EAF\n0xFC45\t0x9EB0\n0xFC46\t0x9EB1\n0xFC47\t0x9EB2\n0xFC48\t0x9EB3\n0xFC49\t0x9EB5\n0xFC4A\t0x9EB6\n0xFC4B\t0x9EB7\n0xFC4C\t0x9EB9\n0xFC4D\t0x9EBA\n0xFC4E\t0x9EBC\n0xFC4F\t0x9EBF\n0xFC50\t0x9EC0\n0xFC51\t0x9EC1\n0xFC52\t0x9EC2\n0xFC53\t0x9EC3\n0xFC54\t0x9EC5\n0xFC55\t0x9EC6\n0xFC56\t0x9EC7\n0xFC57\t0x9EC8\n0xFC58\t0x9ECA\n0xFC59\t0x9ECB\n0xFC5A\t0x9ECC\n0xFC5B\t0x9ED0\n0xFC5C\t0x9ED2\n0xFC5D\t0x9ED3\n0xFC5E\t0x9ED5\n0xFC5F\t0x9ED6\n0xFC60\t0x9ED7\n0xFC61\t0x9ED9\n0xFC62\t0x9EDA\n0xFC63\t0x9EDE\n0xFC64\t0x9EE1\n0xFC65\t0x9EE3\n0xFC66\t0x9EE4\n0xFC67\t0x9EE6\n0xFC68\t0x9EE8\n0xFC69\t0x9EEB\n0xFC6A\t0x9EEC\n0xFC6B\t0x9EED\n0xFC6C\t0x9EEE\n0xFC6D\t0x9EF0\n0xFC6E\t0x9EF1\n0xFC6F\t0x9EF2\n0xFC70\t0x9EF3\n0xFC71\t0x9EF4\n0xFC72\t0x9EF5\n0xFC73\t0x9EF6\n0xFC74\t0x9EF7\n0xFC75\t0x9EF8\n0xFC76\t0x9EFA\n0xFC77\t0x9EFD\n0xFC78\t0x9EFF\n0xFC79\t0x9F00\n0xFC7A\t0x9F01\n0xFC7B\t0x9F02\n0xFC7C\t0x9F03\n0xFC7D\t0x9F04\n0xFC7E\t0x9F05\n0xFC80\t0x9F06\n0xFC81\t0x9F07\n0xFC82\t0x9F08\n0xFC83\t0x9F09\n0xFC84\t0x9F0A\n0xFC85\t0x9F0C\n0xFC86\t0x9F0F\n0xFC87\t0x9F11\n0xFC88\t0x9F12\n0xFC89\t0x9F14\n0xFC8A\t0x9F15\n0xFC8B\t0x9F16\n0xFC8C\t0x9F18\n0xFC8D\t0x9F1A\n0xFC8E\t0x9F1B\n0xFC8F\t0x9F1C\n0xFC90\t0x9F1D\n0xFC91\t0x9F1E\n0xFC92\t0x9F1F\n0xFC93\t0x9F21\n0xFC94\t0x9F23\n0xFC95\t0x9F24\n0xFC96\t0x9F25\n0xFC97\t0x9F26\n0xFC98\t0x9F27\n0xFC99\t0x9F28\n0xFC9A\t0x9F29\n0xFC9B\t0x9F2A\n0xFC9C\t0x9F2B\n0xFC9D\t0x9F2D\n0xFC9E\t0x9F2E\n0xFC9F\t0x9F30\n0xFCA0\t0x9F31\n0xFCA1\t0xE3AC\n0xFCA2\t0xE3AD\n0xFCA3\t0xE3AE\n0xFCA4\t0xE3AF\n0xFCA5\t0xE3B0\n0xFCA6\t0xE3B1\n0xFCA7\t0xE3B2\n0xFCA8\t0xE3B3\n0xFCA9\t0xE3B4\n0xFCAA\t0xE3B5\n0xFCAB\t0xE3B6\n0xFCAC\t0xE3B7\n0xFCAD\t0xE3B8\n0xFCAE\t0xE3B9\n0xFCAF\t0xE3BA\n0xFCB0\t0xE3BB\n0xFCB1\t0xE3BC\n0xFCB2\t0xE3BD\n0xFCB3\t0xE3BE\n0xFCB4\t0xE3BF\n0xFCB5\t0xE3C0\n0xFCB6\t0xE3C1\n0xFCB7\t0xE3C2\n0xFCB8\t0xE3C3\n0xFCB9\t0xE3C4\n0xFCBA\t0xE3C5\n0xFCBB\t0xE3C6\n0xFCBC\t0xE3C7\n0xFCBD\t0xE3C8\n0xFCBE\t0xE3C9\n0xFCBF\t0xE3CA\n0xFCC0\t0xE3CB\n0xFCC1\t0xE3CC\n0xFCC2\t0xE3CD\n0xFCC3\t0xE3CE\n0xFCC4\t0xE3CF\n0xFCC5\t0xE3D0\n0xFCC6\t0xE3D1\n0xFCC7\t0xE3D2\n0xFCC8\t0xE3D3\n0xFCC9\t0xE3D4\n0xFCCA\t0xE3D5\n0xFCCB\t0xE3D6\n0xFCCC\t0xE3D7\n0xFCCD\t0xE3D8\n0xFCCE\t0xE3D9\n0xFCCF\t0xE3DA\n0xFCD0\t0xE3DB\n0xFCD1\t0xE3DC\n0xFCD2\t0xE3DD\n0xFCD3\t0xE3DE\n0xFCD4\t0xE3DF\n0xFCD5\t0xE3E0\n0xFCD6\t0xE3E1\n0xFCD7\t0xE3E2\n0xFCD8\t0xE3E3\n0xFCD9\t0xE3E4\n0xFCDA\t0xE3E5\n0xFCDB\t0xE3E6\n0xFCDC\t0xE3E7\n0xFCDD\t0xE3E8\n0xFCDE\t0xE3E9\n0xFCDF\t0xE3EA\n0xFCE0\t0xE3EB\n0xFCE1\t0xE3EC\n0xFCE2\t0xE3ED\n0xFCE3\t0xE3EE\n0xFCE4\t0xE3EF\n0xFCE5\t0xE3F0\n0xFCE6\t0xE3F1\n0xFCE7\t0xE3F2\n0xFCE8\t0xE3F3\n0xFCE9\t0xE3F4\n0xFCEA\t0xE3F5\n0xFCEB\t0xE3F6\n0xFCEC\t0xE3F7\n0xFCED\t0xE3F8\n0xFCEE\t0xE3F9\n0xFCEF\t0xE3FA\n0xFCF0\t0xE3FB\n0xFCF1\t0xE3FC\n0xFCF2\t0xE3FD\n0xFCF3\t0xE3FE\n0xFCF4\t0xE3FF\n0xFCF5\t0xE400\n0xFCF6\t0xE401\n0xFCF7\t0xE402\n0xFCF8\t0xE403\n0xFCF9\t0xE404\n0xFCFA\t0xE405\n0xFCFB\t0xE406\n0xFCFC\t0xE407\n0xFCFD\t0xE408\n0xFCFE\t0xE409\n0xFD40\t0x9F32\n0xFD41\t0x9F33\n0xFD42\t0x9F34\n0xFD43\t0x9F35\n0xFD44\t0x9F36\n0xFD45\t0x9F38\n0xFD46\t0x9F3A\n0xFD47\t0x9F3C\n0xFD48\t0x9F3F\n0xFD49\t0x9F40\n0xFD4A\t0x9F41\n0xFD4B\t0x9F42\n0xFD4C\t0x9F43\n0xFD4D\t0x9F45\n0xFD4E\t0x9F46\n0xFD4F\t0x9F47\n0xFD50\t0x9F48\n0xFD51\t0x9F49\n0xFD52\t0x9F4A\n0xFD53\t0x9F4B\n0xFD54\t0x9F4C\n0xFD55\t0x9F4D\n0xFD56\t0x9F4E\n0xFD57\t0x9F4F\n0xFD58\t0x9F52\n0xFD59\t0x9F53\n0xFD5A\t0x9F54\n0xFD5B\t0x9F55\n0xFD5C\t0x9F56\n0xFD5D\t0x9F57\n0xFD5E\t0x9F58\n0xFD5F\t0x9F59\n0xFD60\t0x9F5A\n0xFD61\t0x9F5B\n0xFD62\t0x9F5C\n0xFD63\t0x9F5D\n0xFD64\t0x9F5E\n0xFD65\t0x9F5F\n0xFD66\t0x9F60\n0xFD67\t0x9F61\n0xFD68\t0x9F62\n0xFD69\t0x9F63\n0xFD6A\t0x9F64\n0xFD6B\t0x9F65\n0xFD6C\t0x9F66\n0xFD6D\t0x9F67\n0xFD6E\t0x9F68\n0xFD6F\t0x9F69\n0xFD70\t0x9F6A\n0xFD71\t0x9F6B\n0xFD72\t0x9F6C\n0xFD73\t0x9F6D\n0xFD74\t0x9F6E\n0xFD75\t0x9F6F\n0xFD76\t0x9F70\n0xFD77\t0x9F71\n0xFD78\t0x9F72\n0xFD79\t0x9F73\n0xFD7A\t0x9F74\n0xFD7B\t0x9F75\n0xFD7C\t0x9F76\n0xFD7D\t0x9F77\n0xFD7E\t0x9F78\n0xFD80\t0x9F79\n0xFD81\t0x9F7A\n0xFD82\t0x9F7B\n0xFD83\t0x9F7C\n0xFD84\t0x9F7D\n0xFD85\t0x9F7E\n0xFD86\t0x9F81\n0xFD87\t0x9F82\n0xFD88\t0x9F8D\n0xFD89\t0x9F8E\n0xFD8A\t0x9F8F\n0xFD8B\t0x9F90\n0xFD8C\t0x9F91\n0xFD8D\t0x9F92\n0xFD8E\t0x9F93\n0xFD8F\t0x9F94\n0xFD90\t0x9F95\n0xFD91\t0x9F96\n0xFD92\t0x9F97\n0xFD93\t0x9F98\n0xFD94\t0x9F9C\n0xFD95\t0x9F9D\n0xFD96\t0x9F9E\n0xFD97\t0x9FA1\n0xFD98\t0x9FA2\n0xFD99\t0x9FA3\n0xFD9A\t0x9FA4\n0xFD9B\t0x9FA5\n0xFD9C\t0xF92C\n0xFD9D\t0xF979\n0xFD9E\t0xF995\n0xFD9F\t0xF9E7\n0xFDA0\t0xF9F1\n0xFDA1\t0xE40A\n0xFDA2\t0xE40B\n0xFDA3\t0xE40C\n0xFDA4\t0xE40D\n0xFDA5\t0xE40E\n0xFDA6\t0xE40F\n0xFDA7\t0xE410\n0xFDA8\t0xE411\n0xFDA9\t0xE412\n0xFDAA\t0xE413\n0xFDAB\t0xE414\n0xFDAC\t0xE415\n0xFDAD\t0xE416\n0xFDAE\t0xE417\n0xFDAF\t0xE418\n0xFDB0\t0xE419\n0xFDB1\t0xE41A\n0xFDB2\t0xE41B\n0xFDB3\t0xE41C\n0xFDB4\t0xE41D\n0xFDB5\t0xE41E\n0xFDB6\t0xE41F\n0xFDB7\t0xE420\n0xFDB8\t0xE421\n0xFDB9\t0xE422\n0xFDBA\t0xE423\n0xFDBB\t0xE424\n0xFDBC\t0xE425\n0xFDBD\t0xE426\n0xFDBE\t0xE427\n0xFDBF\t0xE428\n0xFDC0\t0xE429\n0xFDC1\t0xE42A\n0xFDC2\t0xE42B\n0xFDC3\t0xE42C\n0xFDC4\t0xE42D\n0xFDC5\t0xE42E\n0xFDC6\t0xE42F\n0xFDC7\t0xE430\n0xFDC8\t0xE431\n0xFDC9\t0xE432\n0xFDCA\t0xE433\n0xFDCB\t0xE434\n0xFDCC\t0xE435\n0xFDCD\t0xE436\n0xFDCE\t0xE437\n0xFDCF\t0xE438\n0xFDD0\t0xE439\n0xFDD1\t0xE43A\n0xFDD2\t0xE43B\n0xFDD3\t0xE43C\n0xFDD4\t0xE43D\n0xFDD5\t0xE43E\n0xFDD6\t0xE43F\n0xFDD7\t0xE440\n0xFDD8\t0xE441\n0xFDD9\t0xE442\n0xFDDA\t0xE443\n0xFDDB\t0xE444\n0xFDDC\t0xE445\n0xFDDD\t0xE446\n0xFDDE\t0xE447\n0xFDDF\t0xE448\n0xFDE0\t0xE449\n0xFDE1\t0xE44A\n0xFDE2\t0xE44B\n0xFDE3\t0xE44C\n0xFDE4\t0xE44D\n0xFDE5\t0xE44E\n0xFDE6\t0xE44F\n0xFDE7\t0xE450\n0xFDE8\t0xE451\n0xFDE9\t0xE452\n0xFDEA\t0xE453\n0xFDEB\t0xE454\n0xFDEC\t0xE455\n0xFDED\t0xE456\n0xFDEE\t0xE457\n0xFDEF\t0xE458\n0xFDF0\t0xE459\n0xFDF1\t0xE45A\n0xFDF2\t0xE45B\n0xFDF3\t0xE45C\n0xFDF4\t0xE45D\n0xFDF5\t0xE45E\n0xFDF6\t0xE45F\n0xFDF7\t0xE460\n0xFDF8\t0xE461\n0xFDF9\t0xE462\n0xFDFA\t0xE463\n0xFDFB\t0xE464\n0xFDFC\t0xE465\n0xFDFD\t0xE466\n0xFDFE\t0xE467\n0xFE40\t0xFA0C\n0xFE41\t0xFA0D\n0xFE42\t0xFA0E\n0xFE43\t0xFA0F\n0xFE44\t0xFA11\n0xFE45\t0xFA13\n0xFE46\t0xFA14\n0xFE47\t0xFA18\n0xFE48\t0xFA1F\n0xFE49\t0xFA20\n0xFE4A\t0xFA21\n0xFE4B\t0xFA23\n0xFE4C\t0xFA24\n0xFE4D\t0xFA27\n0xFE4E\t0xFA28\n0xFE4F\t0xFA29\n0xFEA1\t0xE468\n0xFEA2\t0xE469\n0xFEA3\t0xE46A\n0xFEA4\t0xE46B\n0xFEA5\t0xE46C\n0xFEA6\t0xE46D\n0xFEA7\t0xE46E\n0xFEA8\t0xE46F\n0xFEA9\t0xE470\n0xFEAA\t0xE471\n0xFEAB\t0xE472\n0xFEAC\t0xE473\n0xFEAD\t0xE474\n0xFEAE\t0xE475\n0xFEAF\t0xE476\n0xFEB0\t0xE477\n0xFEB1\t0xE478\n0xFEB2\t0xE479\n0xFEB3\t0xE47A\n0xFEB4\t0xE47B\n0xFEB5\t0xE47C\n0xFEB6\t0xE47D\n0xFEB7\t0xE47E\n0xFEB8\t0xE47F\n0xFEB9\t0xE480\n0xFEBA\t0xE481\n0xFEBB\t0xE482\n0xFEBC\t0xE483\n0xFEBD\t0xE484\n0xFEBE\t0xE485\n0xFEBF\t0xE486\n0xFEC0\t0xE487\n0xFEC1\t0xE488\n0xFEC2\t0xE489\n0xFEC3\t0xE48A\n0xFEC4\t0xE48B\n0xFEC5\t0xE48C\n0xFEC6\t0xE48D\n0xFEC7\t0xE48E\n0xFEC8\t0xE48F\n0xFEC9\t0xE490\n0xFECA\t0xE491\n0xFECB\t0xE492\n0xFECC\t0xE493\n0xFECD\t0xE494\n0xFECE\t0xE495\n0xFECF\t0xE496\n0xFED0\t0xE497\n0xFED1\t0xE498\n0xFED2\t0xE499\n0xFED3\t0xE49A\n0xFED4\t0xE49B\n0xFED5\t0xE49C\n0xFED6\t0xE49D\n0xFED7\t0xE49E\n0xFED8\t0xE49F\n0xFED9\t0xE4A0\n0xFEDA\t0xE4A1\n0xFEDB\t0xE4A2\n0xFEDC\t0xE4A3\n0xFEDD\t0xE4A4\n0xFEDE\t0xE4A5\n0xFEDF\t0xE4A6\n0xFEE0\t0xE4A7\n0xFEE1\t0xE4A8\n0xFEE2\t0xE4A9\n0xFEE3\t0xE4AA\n0xFEE4\t0xE4AB\n0xFEE5\t0xE4AC\n0xFEE6\t0xE4AD\n0xFEE7\t0xE4AE\n0xFEE8\t0xE4AF\n0xFEE9\t0xE4B0\n0xFEEA\t0xE4B1\n0xFEEB\t0xE4B2\n0xFEEC\t0xE4B3\n0xFEED\t0xE4B4\n0xFEEE\t0xE4B5\n0xFEEF\t0xE4B6\n0xFEF0\t0xE4B7\n0xFEF1\t0xE4B8\n0xFEF2\t0xE4B9\n0xFEF3\t0xE4BA\n0xFEF4\t0xE4BB\n0xFEF5\t0xE4BC\n0xFEF6\t0xE4BD\n0xFEF7\t0xE4BE\n0xFEF8\t0xE4BF\n0xFEF9\t0xE4C0\n0xFEFA\t0xE4C1\n0xFEFB\t0xE4C2\n0xFEFC\t0xE4C3\n0xFEFD\t0xE4C4\n0xFEFE\t0xE4C5\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP949.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8141\t0xAC02\n0x8142\t0xAC03\n0x8143\t0xAC05\n0x8144\t0xAC06\n0x8145\t0xAC0B\n0x8146\t0xAC0C\n0x8147\t0xAC0D\n0x8148\t0xAC0E\n0x8149\t0xAC0F\n0x814A\t0xAC18\n0x814B\t0xAC1E\n0x814C\t0xAC1F\n0x814D\t0xAC21\n0x814E\t0xAC22\n0x814F\t0xAC23\n0x8150\t0xAC25\n0x8151\t0xAC26\n0x8152\t0xAC27\n0x8153\t0xAC28\n0x8154\t0xAC29\n0x8155\t0xAC2A\n0x8156\t0xAC2B\n0x8157\t0xAC2E\n0x8158\t0xAC32\n0x8159\t0xAC33\n0x815A\t0xAC34\n0x8161\t0xAC35\n0x8162\t0xAC36\n0x8163\t0xAC37\n0x8164\t0xAC3A\n0x8165\t0xAC3B\n0x8166\t0xAC3D\n0x8167\t0xAC3E\n0x8168\t0xAC3F\n0x8169\t0xAC41\n0x816A\t0xAC42\n0x816B\t0xAC43\n0x816C\t0xAC44\n0x816D\t0xAC45\n0x816E\t0xAC46\n0x816F\t0xAC47\n0x8170\t0xAC48\n0x8171\t0xAC49\n0x8172\t0xAC4A\n0x8173\t0xAC4C\n0x8174\t0xAC4E\n0x8175\t0xAC4F\n0x8176\t0xAC50\n0x8177\t0xAC51\n0x8178\t0xAC52\n0x8179\t0xAC53\n0x817A\t0xAC55\n0x8181\t0xAC56\n0x8182\t0xAC57\n0x8183\t0xAC59\n0x8184\t0xAC5A\n0x8185\t0xAC5B\n0x8186\t0xAC5D\n0x8187\t0xAC5E\n0x8188\t0xAC5F\n0x8189\t0xAC60\n0x818A\t0xAC61\n0x818B\t0xAC62\n0x818C\t0xAC63\n0x818D\t0xAC64\n0x818E\t0xAC65\n0x818F\t0xAC66\n0x8190\t0xAC67\n0x8191\t0xAC68\n0x8192\t0xAC69\n0x8193\t0xAC6A\n0x8194\t0xAC6B\n0x8195\t0xAC6C\n0x8196\t0xAC6D\n0x8197\t0xAC6E\n0x8198\t0xAC6F\n0x8199\t0xAC72\n0x819A\t0xAC73\n0x819B\t0xAC75\n0x819C\t0xAC76\n0x819D\t0xAC79\n0x819E\t0xAC7B\n0x819F\t0xAC7C\n0x81A0\t0xAC7D\n0x81A1\t0xAC7E\n0x81A2\t0xAC7F\n0x81A3\t0xAC82\n0x81A4\t0xAC87\n0x81A5\t0xAC88\n0x81A6\t0xAC8D\n0x81A7\t0xAC8E\n0x81A8\t0xAC8F\n0x81A9\t0xAC91\n0x81AA\t0xAC92\n0x81AB\t0xAC93\n0x81AC\t0xAC95\n0x81AD\t0xAC96\n0x81AE\t0xAC97\n0x81AF\t0xAC98\n0x81B0\t0xAC99\n0x81B1\t0xAC9A\n0x81B2\t0xAC9B\n0x81B3\t0xAC9E\n0x81B4\t0xACA2\n0x81B5\t0xACA3\n0x81B6\t0xACA4\n0x81B7\t0xACA5\n0x81B8\t0xACA6\n0x81B9\t0xACA7\n0x81BA\t0xACAB\n0x81BB\t0xACAD\n0x81BC\t0xACAE\n0x81BD\t0xACB1\n0x81BE\t0xACB2\n0x81BF\t0xACB3\n0x81C0\t0xACB4\n0x81C1\t0xACB5\n0x81C2\t0xACB6\n0x81C3\t0xACB7\n0x81C4\t0xACBA\n0x81C5\t0xACBE\n0x81C6\t0xACBF\n0x81C7\t0xACC0\n0x81C8\t0xACC2\n0x81C9\t0xACC3\n0x81CA\t0xACC5\n0x81CB\t0xACC6\n0x81CC\t0xACC7\n0x81CD\t0xACC9\n0x81CE\t0xACCA\n0x81CF\t0xACCB\n0x81D0\t0xACCD\n0x81D1\t0xACCE\n0x81D2\t0xACCF\n0x81D3\t0xACD0\n0x81D4\t0xACD1\n0x81D5\t0xACD2\n0x81D6\t0xACD3\n0x81D7\t0xACD4\n0x81D8\t0xACD6\n0x81D9\t0xACD8\n0x81DA\t0xACD9\n0x81DB\t0xACDA\n0x81DC\t0xACDB\n0x81DD\t0xACDC\n0x81DE\t0xACDD\n0x81DF\t0xACDE\n0x81E0\t0xACDF\n0x81E1\t0xACE2\n0x81E2\t0xACE3\n0x81E3\t0xACE5\n0x81E4\t0xACE6\n0x81E5\t0xACE9\n0x81E6\t0xACEB\n0x81E7\t0xACED\n0x81E8\t0xACEE\n0x81E9\t0xACF2\n0x81EA\t0xACF4\n0x81EB\t0xACF7\n0x81EC\t0xACF8\n0x81ED\t0xACF9\n0x81EE\t0xACFA\n0x81EF\t0xACFB\n0x81F0\t0xACFE\n0x81F1\t0xACFF\n0x81F2\t0xAD01\n0x81F3\t0xAD02\n0x81F4\t0xAD03\n0x81F5\t0xAD05\n0x81F6\t0xAD07\n0x81F7\t0xAD08\n0x81F8\t0xAD09\n0x81F9\t0xAD0A\n0x81FA\t0xAD0B\n0x81FB\t0xAD0E\n0x81FC\t0xAD10\n0x81FD\t0xAD12\n0x81FE\t0xAD13\n0x8241\t0xAD14\n0x8242\t0xAD15\n0x8243\t0xAD16\n0x8244\t0xAD17\n0x8245\t0xAD19\n0x8246\t0xAD1A\n0x8247\t0xAD1B\n0x8248\t0xAD1D\n0x8249\t0xAD1E\n0x824A\t0xAD1F\n0x824B\t0xAD21\n0x824C\t0xAD22\n0x824D\t0xAD23\n0x824E\t0xAD24\n0x824F\t0xAD25\n0x8250\t0xAD26\n0x8251\t0xAD27\n0x8252\t0xAD28\n0x8253\t0xAD2A\n0x8254\t0xAD2B\n0x8255\t0xAD2E\n0x8256\t0xAD2F\n0x8257\t0xAD30\n0x8258\t0xAD31\n0x8259\t0xAD32\n0x825A\t0xAD33\n0x8261\t0xAD36\n0x8262\t0xAD37\n0x8263\t0xAD39\n0x8264\t0xAD3A\n0x8265\t0xAD3B\n0x8266\t0xAD3D\n0x8267\t0xAD3E\n0x8268\t0xAD3F\n0x8269\t0xAD40\n0x826A\t0xAD41\n0x826B\t0xAD42\n0x826C\t0xAD43\n0x826D\t0xAD46\n0x826E\t0xAD48\n0x826F\t0xAD4A\n0x8270\t0xAD4B\n0x8271\t0xAD4C\n0x8272\t0xAD4D\n0x8273\t0xAD4E\n0x8274\t0xAD4F\n0x8275\t0xAD51\n0x8276\t0xAD52\n0x8277\t0xAD53\n0x8278\t0xAD55\n0x8279\t0xAD56\n0x827A\t0xAD57\n0x8281\t0xAD59\n0x8282\t0xAD5A\n0x8283\t0xAD5B\n0x8284\t0xAD5C\n0x8285\t0xAD5D\n0x8286\t0xAD5E\n0x8287\t0xAD5F\n0x8288\t0xAD60\n0x8289\t0xAD62\n0x828A\t0xAD64\n0x828B\t0xAD65\n0x828C\t0xAD66\n0x828D\t0xAD67\n0x828E\t0xAD68\n0x828F\t0xAD69\n0x8290\t0xAD6A\n0x8291\t0xAD6B\n0x8292\t0xAD6E\n0x8293\t0xAD6F\n0x8294\t0xAD71\n0x8295\t0xAD72\n0x8296\t0xAD77\n0x8297\t0xAD78\n0x8298\t0xAD79\n0x8299\t0xAD7A\n0x829A\t0xAD7E\n0x829B\t0xAD80\n0x829C\t0xAD83\n0x829D\t0xAD84\n0x829E\t0xAD85\n0x829F\t0xAD86\n0x82A0\t0xAD87\n0x82A1\t0xAD8A\n0x82A2\t0xAD8B\n0x82A3\t0xAD8D\n0x82A4\t0xAD8E\n0x82A5\t0xAD8F\n0x82A6\t0xAD91\n0x82A7\t0xAD92\n0x82A8\t0xAD93\n0x82A9\t0xAD94\n0x82AA\t0xAD95\n0x82AB\t0xAD96\n0x82AC\t0xAD97\n0x82AD\t0xAD98\n0x82AE\t0xAD99\n0x82AF\t0xAD9A\n0x82B0\t0xAD9B\n0x82B1\t0xAD9E\n0x82B2\t0xAD9F\n0x82B3\t0xADA0\n0x82B4\t0xADA1\n0x82B5\t0xADA2\n0x82B6\t0xADA3\n0x82B7\t0xADA5\n0x82B8\t0xADA6\n0x82B9\t0xADA7\n0x82BA\t0xADA8\n0x82BB\t0xADA9\n0x82BC\t0xADAA\n0x82BD\t0xADAB\n0x82BE\t0xADAC\n0x82BF\t0xADAD\n0x82C0\t0xADAE\n0x82C1\t0xADAF\n0x82C2\t0xADB0\n0x82C3\t0xADB1\n0x82C4\t0xADB2\n0x82C5\t0xADB3\n0x82C6\t0xADB4\n0x82C7\t0xADB5\n0x82C8\t0xADB6\n0x82C9\t0xADB8\n0x82CA\t0xADB9\n0x82CB\t0xADBA\n0x82CC\t0xADBB\n0x82CD\t0xADBC\n0x82CE\t0xADBD\n0x82CF\t0xADBE\n0x82D0\t0xADBF\n0x82D1\t0xADC2\n0x82D2\t0xADC3\n0x82D3\t0xADC5\n0x82D4\t0xADC6\n0x82D5\t0xADC7\n0x82D6\t0xADC9\n0x82D7\t0xADCA\n0x82D8\t0xADCB\n0x82D9\t0xADCC\n0x82DA\t0xADCD\n0x82DB\t0xADCE\n0x82DC\t0xADCF\n0x82DD\t0xADD2\n0x82DE\t0xADD4\n0x82DF\t0xADD5\n0x82E0\t0xADD6\n0x82E1\t0xADD7\n0x82E2\t0xADD8\n0x82E3\t0xADD9\n0x82E4\t0xADDA\n0x82E5\t0xADDB\n0x82E6\t0xADDD\n0x82E7\t0xADDE\n0x82E8\t0xADDF\n0x82E9\t0xADE1\n0x82EA\t0xADE2\n0x82EB\t0xADE3\n0x82EC\t0xADE5\n0x82ED\t0xADE6\n0x82EE\t0xADE7\n0x82EF\t0xADE8\n0x82F0\t0xADE9\n0x82F1\t0xADEA\n0x82F2\t0xADEB\n0x82F3\t0xADEC\n0x82F4\t0xADED\n0x82F5\t0xADEE\n0x82F6\t0xADEF\n0x82F7\t0xADF0\n0x82F8\t0xADF1\n0x82F9\t0xADF2\n0x82FA\t0xADF3\n0x82FB\t0xADF4\n0x82FC\t0xADF5\n0x82FD\t0xADF6\n0x82FE\t0xADF7\n0x8341\t0xADFA\n0x8342\t0xADFB\n0x8343\t0xADFD\n0x8344\t0xADFE\n0x8345\t0xAE02\n0x8346\t0xAE03\n0x8347\t0xAE04\n0x8348\t0xAE05\n0x8349\t0xAE06\n0x834A\t0xAE07\n0x834B\t0xAE0A\n0x834C\t0xAE0C\n0x834D\t0xAE0E\n0x834E\t0xAE0F\n0x834F\t0xAE10\n0x8350\t0xAE11\n0x8351\t0xAE12\n0x8352\t0xAE13\n0x8353\t0xAE15\n0x8354\t0xAE16\n0x8355\t0xAE17\n0x8356\t0xAE18\n0x8357\t0xAE19\n0x8358\t0xAE1A\n0x8359\t0xAE1B\n0x835A\t0xAE1C\n0x8361\t0xAE1D\n0x8362\t0xAE1E\n0x8363\t0xAE1F\n0x8364\t0xAE20\n0x8365\t0xAE21\n0x8366\t0xAE22\n0x8367\t0xAE23\n0x8368\t0xAE24\n0x8369\t0xAE25\n0x836A\t0xAE26\n0x836B\t0xAE27\n0x836C\t0xAE28\n0x836D\t0xAE29\n0x836E\t0xAE2A\n0x836F\t0xAE2B\n0x8370\t0xAE2C\n0x8371\t0xAE2D\n0x8372\t0xAE2E\n0x8373\t0xAE2F\n0x8374\t0xAE32\n0x8375\t0xAE33\n0x8376\t0xAE35\n0x8377\t0xAE36\n0x8378\t0xAE39\n0x8379\t0xAE3B\n0x837A\t0xAE3C\n0x8381\t0xAE3D\n0x8382\t0xAE3E\n0x8383\t0xAE3F\n0x8384\t0xAE42\n0x8385\t0xAE44\n0x8386\t0xAE47\n0x8387\t0xAE48\n0x8388\t0xAE49\n0x8389\t0xAE4B\n0x838A\t0xAE4F\n0x838B\t0xAE51\n0x838C\t0xAE52\n0x838D\t0xAE53\n0x838E\t0xAE55\n0x838F\t0xAE57\n0x8390\t0xAE58\n0x8391\t0xAE59\n0x8392\t0xAE5A\n0x8393\t0xAE5B\n0x8394\t0xAE5E\n0x8395\t0xAE62\n0x8396\t0xAE63\n0x8397\t0xAE64\n0x8398\t0xAE66\n0x8399\t0xAE67\n0x839A\t0xAE6A\n0x839B\t0xAE6B\n0x839C\t0xAE6D\n0x839D\t0xAE6E\n0x839E\t0xAE6F\n0x839F\t0xAE71\n0x83A0\t0xAE72\n0x83A1\t0xAE73\n0x83A2\t0xAE74\n0x83A3\t0xAE75\n0x83A4\t0xAE76\n0x83A5\t0xAE77\n0x83A6\t0xAE7A\n0x83A7\t0xAE7E\n0x83A8\t0xAE7F\n0x83A9\t0xAE80\n0x83AA\t0xAE81\n0x83AB\t0xAE82\n0x83AC\t0xAE83\n0x83AD\t0xAE86\n0x83AE\t0xAE87\n0x83AF\t0xAE88\n0x83B0\t0xAE89\n0x83B1\t0xAE8A\n0x83B2\t0xAE8B\n0x83B3\t0xAE8D\n0x83B4\t0xAE8E\n0x83B5\t0xAE8F\n0x83B6\t0xAE90\n0x83B7\t0xAE91\n0x83B8\t0xAE92\n0x83B9\t0xAE93\n0x83BA\t0xAE94\n0x83BB\t0xAE95\n0x83BC\t0xAE96\n0x83BD\t0xAE97\n0x83BE\t0xAE98\n0x83BF\t0xAE99\n0x83C0\t0xAE9A\n0x83C1\t0xAE9B\n0x83C2\t0xAE9C\n0x83C3\t0xAE9D\n0x83C4\t0xAE9E\n0x83C5\t0xAE9F\n0x83C6\t0xAEA0\n0x83C7\t0xAEA1\n0x83C8\t0xAEA2\n0x83C9\t0xAEA3\n0x83CA\t0xAEA4\n0x83CB\t0xAEA5\n0x83CC\t0xAEA6\n0x83CD\t0xAEA7\n0x83CE\t0xAEA8\n0x83CF\t0xAEA9\n0x83D0\t0xAEAA\n0x83D1\t0xAEAB\n0x83D2\t0xAEAC\n0x83D3\t0xAEAD\n0x83D4\t0xAEAE\n0x83D5\t0xAEAF\n0x83D6\t0xAEB0\n0x83D7\t0xAEB1\n0x83D8\t0xAEB2\n0x83D9\t0xAEB3\n0x83DA\t0xAEB4\n0x83DB\t0xAEB5\n0x83DC\t0xAEB6\n0x83DD\t0xAEB7\n0x83DE\t0xAEB8\n0x83DF\t0xAEB9\n0x83E0\t0xAEBA\n0x83E1\t0xAEBB\n0x83E2\t0xAEBF\n0x83E3\t0xAEC1\n0x83E4\t0xAEC2\n0x83E5\t0xAEC3\n0x83E6\t0xAEC5\n0x83E7\t0xAEC6\n0x83E8\t0xAEC7\n0x83E9\t0xAEC8\n0x83EA\t0xAEC9\n0x83EB\t0xAECA\n0x83EC\t0xAECB\n0x83ED\t0xAECE\n0x83EE\t0xAED2\n0x83EF\t0xAED3\n0x83F0\t0xAED4\n0x83F1\t0xAED5\n0x83F2\t0xAED6\n0x83F3\t0xAED7\n0x83F4\t0xAEDA\n0x83F5\t0xAEDB\n0x83F6\t0xAEDD\n0x83F7\t0xAEDE\n0x83F8\t0xAEDF\n0x83F9\t0xAEE0\n0x83FA\t0xAEE1\n0x83FB\t0xAEE2\n0x83FC\t0xAEE3\n0x83FD\t0xAEE4\n0x83FE\t0xAEE5\n0x8441\t0xAEE6\n0x8442\t0xAEE7\n0x8443\t0xAEE9\n0x8444\t0xAEEA\n0x8445\t0xAEEC\n0x8446\t0xAEEE\n0x8447\t0xAEEF\n0x8448\t0xAEF0\n0x8449\t0xAEF1\n0x844A\t0xAEF2\n0x844B\t0xAEF3\n0x844C\t0xAEF5\n0x844D\t0xAEF6\n0x844E\t0xAEF7\n0x844F\t0xAEF9\n0x8450\t0xAEFA\n0x8451\t0xAEFB\n0x8452\t0xAEFD\n0x8453\t0xAEFE\n0x8454\t0xAEFF\n0x8455\t0xAF00\n0x8456\t0xAF01\n0x8457\t0xAF02\n0x8458\t0xAF03\n0x8459\t0xAF04\n0x845A\t0xAF05\n0x8461\t0xAF06\n0x8462\t0xAF09\n0x8463\t0xAF0A\n0x8464\t0xAF0B\n0x8465\t0xAF0C\n0x8466\t0xAF0E\n0x8467\t0xAF0F\n0x8468\t0xAF11\n0x8469\t0xAF12\n0x846A\t0xAF13\n0x846B\t0xAF14\n0x846C\t0xAF15\n0x846D\t0xAF16\n0x846E\t0xAF17\n0x846F\t0xAF18\n0x8470\t0xAF19\n0x8471\t0xAF1A\n0x8472\t0xAF1B\n0x8473\t0xAF1C\n0x8474\t0xAF1D\n0x8475\t0xAF1E\n0x8476\t0xAF1F\n0x8477\t0xAF20\n0x8478\t0xAF21\n0x8479\t0xAF22\n0x847A\t0xAF23\n0x8481\t0xAF24\n0x8482\t0xAF25\n0x8483\t0xAF26\n0x8484\t0xAF27\n0x8485\t0xAF28\n0x8486\t0xAF29\n0x8487\t0xAF2A\n0x8488\t0xAF2B\n0x8489\t0xAF2E\n0x848A\t0xAF2F\n0x848B\t0xAF31\n0x848C\t0xAF33\n0x848D\t0xAF35\n0x848E\t0xAF36\n0x848F\t0xAF37\n0x8490\t0xAF38\n0x8491\t0xAF39\n0x8492\t0xAF3A\n0x8493\t0xAF3B\n0x8494\t0xAF3E\n0x8495\t0xAF40\n0x8496\t0xAF44\n0x8497\t0xAF45\n0x8498\t0xAF46\n0x8499\t0xAF47\n0x849A\t0xAF4A\n0x849B\t0xAF4B\n0x849C\t0xAF4C\n0x849D\t0xAF4D\n0x849E\t0xAF4E\n0x849F\t0xAF4F\n0x84A0\t0xAF51\n0x84A1\t0xAF52\n0x84A2\t0xAF53\n0x84A3\t0xAF54\n0x84A4\t0xAF55\n0x84A5\t0xAF56\n0x84A6\t0xAF57\n0x84A7\t0xAF58\n0x84A8\t0xAF59\n0x84A9\t0xAF5A\n0x84AA\t0xAF5B\n0x84AB\t0xAF5E\n0x84AC\t0xAF5F\n0x84AD\t0xAF60\n0x84AE\t0xAF61\n0x84AF\t0xAF62\n0x84B0\t0xAF63\n0x84B1\t0xAF66\n0x84B2\t0xAF67\n0x84B3\t0xAF68\n0x84B4\t0xAF69\n0x84B5\t0xAF6A\n0x84B6\t0xAF6B\n0x84B7\t0xAF6C\n0x84B8\t0xAF6D\n0x84B9\t0xAF6E\n0x84BA\t0xAF6F\n0x84BB\t0xAF70\n0x84BC\t0xAF71\n0x84BD\t0xAF72\n0x84BE\t0xAF73\n0x84BF\t0xAF74\n0x84C0\t0xAF75\n0x84C1\t0xAF76\n0x84C2\t0xAF77\n0x84C3\t0xAF78\n0x84C4\t0xAF7A\n0x84C5\t0xAF7B\n0x84C6\t0xAF7C\n0x84C7\t0xAF7D\n0x84C8\t0xAF7E\n0x84C9\t0xAF7F\n0x84CA\t0xAF81\n0x84CB\t0xAF82\n0x84CC\t0xAF83\n0x84CD\t0xAF85\n0x84CE\t0xAF86\n0x84CF\t0xAF87\n0x84D0\t0xAF89\n0x84D1\t0xAF8A\n0x84D2\t0xAF8B\n0x84D3\t0xAF8C\n0x84D4\t0xAF8D\n0x84D5\t0xAF8E\n0x84D6\t0xAF8F\n0x84D7\t0xAF92\n0x84D8\t0xAF93\n0x84D9\t0xAF94\n0x84DA\t0xAF96\n0x84DB\t0xAF97\n0x84DC\t0xAF98\n0x84DD\t0xAF99\n0x84DE\t0xAF9A\n0x84DF\t0xAF9B\n0x84E0\t0xAF9D\n0x84E1\t0xAF9E\n0x84E2\t0xAF9F\n0x84E3\t0xAFA0\n0x84E4\t0xAFA1\n0x84E5\t0xAFA2\n0x84E6\t0xAFA3\n0x84E7\t0xAFA4\n0x84E8\t0xAFA5\n0x84E9\t0xAFA6\n0x84EA\t0xAFA7\n0x84EB\t0xAFA8\n0x84EC\t0xAFA9\n0x84ED\t0xAFAA\n0x84EE\t0xAFAB\n0x84EF\t0xAFAC\n0x84F0\t0xAFAD\n0x84F1\t0xAFAE\n0x84F2\t0xAFAF\n0x84F3\t0xAFB0\n0x84F4\t0xAFB1\n0x84F5\t0xAFB2\n0x84F6\t0xAFB3\n0x84F7\t0xAFB4\n0x84F8\t0xAFB5\n0x84F9\t0xAFB6\n0x84FA\t0xAFB7\n0x84FB\t0xAFBA\n0x84FC\t0xAFBB\n0x84FD\t0xAFBD\n0x84FE\t0xAFBE\n0x8541\t0xAFBF\n0x8542\t0xAFC1\n0x8543\t0xAFC2\n0x8544\t0xAFC3\n0x8545\t0xAFC4\n0x8546\t0xAFC5\n0x8547\t0xAFC6\n0x8548\t0xAFCA\n0x8549\t0xAFCC\n0x854A\t0xAFCF\n0x854B\t0xAFD0\n0x854C\t0xAFD1\n0x854D\t0xAFD2\n0x854E\t0xAFD3\n0x854F\t0xAFD5\n0x8550\t0xAFD6\n0x8551\t0xAFD7\n0x8552\t0xAFD8\n0x8553\t0xAFD9\n0x8554\t0xAFDA\n0x8555\t0xAFDB\n0x8556\t0xAFDD\n0x8557\t0xAFDE\n0x8558\t0xAFDF\n0x8559\t0xAFE0\n0x855A\t0xAFE1\n0x8561\t0xAFE2\n0x8562\t0xAFE3\n0x8563\t0xAFE4\n0x8564\t0xAFE5\n0x8565\t0xAFE6\n0x8566\t0xAFE7\n0x8567\t0xAFEA\n0x8568\t0xAFEB\n0x8569\t0xAFEC\n0x856A\t0xAFED\n0x856B\t0xAFEE\n0x856C\t0xAFEF\n0x856D\t0xAFF2\n0x856E\t0xAFF3\n0x856F\t0xAFF5\n0x8570\t0xAFF6\n0x8571\t0xAFF7\n0x8572\t0xAFF9\n0x8573\t0xAFFA\n0x8574\t0xAFFB\n0x8575\t0xAFFC\n0x8576\t0xAFFD\n0x8577\t0xAFFE\n0x8578\t0xAFFF\n0x8579\t0xB002\n0x857A\t0xB003\n0x8581\t0xB005\n0x8582\t0xB006\n0x8583\t0xB007\n0x8584\t0xB008\n0x8585\t0xB009\n0x8586\t0xB00A\n0x8587\t0xB00B\n0x8588\t0xB00D\n0x8589\t0xB00E\n0x858A\t0xB00F\n0x858B\t0xB011\n0x858C\t0xB012\n0x858D\t0xB013\n0x858E\t0xB015\n0x858F\t0xB016\n0x8590\t0xB017\n0x8591\t0xB018\n0x8592\t0xB019\n0x8593\t0xB01A\n0x8594\t0xB01B\n0x8595\t0xB01E\n0x8596\t0xB01F\n0x8597\t0xB020\n0x8598\t0xB021\n0x8599\t0xB022\n0x859A\t0xB023\n0x859B\t0xB024\n0x859C\t0xB025\n0x859D\t0xB026\n0x859E\t0xB027\n0x859F\t0xB029\n0x85A0\t0xB02A\n0x85A1\t0xB02B\n0x85A2\t0xB02C\n0x85A3\t0xB02D\n0x85A4\t0xB02E\n0x85A5\t0xB02F\n0x85A6\t0xB030\n0x85A7\t0xB031\n0x85A8\t0xB032\n0x85A9\t0xB033\n0x85AA\t0xB034\n0x85AB\t0xB035\n0x85AC\t0xB036\n0x85AD\t0xB037\n0x85AE\t0xB038\n0x85AF\t0xB039\n0x85B0\t0xB03A\n0x85B1\t0xB03B\n0x85B2\t0xB03C\n0x85B3\t0xB03D\n0x85B4\t0xB03E\n0x85B5\t0xB03F\n0x85B6\t0xB040\n0x85B7\t0xB041\n0x85B8\t0xB042\n0x85B9\t0xB043\n0x85BA\t0xB046\n0x85BB\t0xB047\n0x85BC\t0xB049\n0x85BD\t0xB04B\n0x85BE\t0xB04D\n0x85BF\t0xB04F\n0x85C0\t0xB050\n0x85C1\t0xB051\n0x85C2\t0xB052\n0x85C3\t0xB056\n0x85C4\t0xB058\n0x85C5\t0xB05A\n0x85C6\t0xB05B\n0x85C7\t0xB05C\n0x85C8\t0xB05E\n0x85C9\t0xB05F\n0x85CA\t0xB060\n0x85CB\t0xB061\n0x85CC\t0xB062\n0x85CD\t0xB063\n0x85CE\t0xB064\n0x85CF\t0xB065\n0x85D0\t0xB066\n0x85D1\t0xB067\n0x85D2\t0xB068\n0x85D3\t0xB069\n0x85D4\t0xB06A\n0x85D5\t0xB06B\n0x85D6\t0xB06C\n0x85D7\t0xB06D\n0x85D8\t0xB06E\n0x85D9\t0xB06F\n0x85DA\t0xB070\n0x85DB\t0xB071\n0x85DC\t0xB072\n0x85DD\t0xB073\n0x85DE\t0xB074\n0x85DF\t0xB075\n0x85E0\t0xB076\n0x85E1\t0xB077\n0x85E2\t0xB078\n0x85E3\t0xB079\n0x85E4\t0xB07A\n0x85E5\t0xB07B\n0x85E6\t0xB07E\n0x85E7\t0xB07F\n0x85E8\t0xB081\n0x85E9\t0xB082\n0x85EA\t0xB083\n0x85EB\t0xB085\n0x85EC\t0xB086\n0x85ED\t0xB087\n0x85EE\t0xB088\n0x85EF\t0xB089\n0x85F0\t0xB08A\n0x85F1\t0xB08B\n0x85F2\t0xB08E\n0x85F3\t0xB090\n0x85F4\t0xB092\n0x85F5\t0xB093\n0x85F6\t0xB094\n0x85F7\t0xB095\n0x85F8\t0xB096\n0x85F9\t0xB097\n0x85FA\t0xB09B\n0x85FB\t0xB09D\n0x85FC\t0xB09E\n0x85FD\t0xB0A3\n0x85FE\t0xB0A4\n0x8641\t0xB0A5\n0x8642\t0xB0A6\n0x8643\t0xB0A7\n0x8644\t0xB0AA\n0x8645\t0xB0B0\n0x8646\t0xB0B2\n0x8647\t0xB0B6\n0x8648\t0xB0B7\n0x8649\t0xB0B9\n0x864A\t0xB0BA\n0x864B\t0xB0BB\n0x864C\t0xB0BD\n0x864D\t0xB0BE\n0x864E\t0xB0BF\n0x864F\t0xB0C0\n0x8650\t0xB0C1\n0x8651\t0xB0C2\n0x8652\t0xB0C3\n0x8653\t0xB0C6\n0x8654\t0xB0CA\n0x8655\t0xB0CB\n0x8656\t0xB0CC\n0x8657\t0xB0CD\n0x8658\t0xB0CE\n0x8659\t0xB0CF\n0x865A\t0xB0D2\n0x8661\t0xB0D3\n0x8662\t0xB0D5\n0x8663\t0xB0D6\n0x8664\t0xB0D7\n0x8665\t0xB0D9\n0x8666\t0xB0DA\n0x8667\t0xB0DB\n0x8668\t0xB0DC\n0x8669\t0xB0DD\n0x866A\t0xB0DE\n0x866B\t0xB0DF\n0x866C\t0xB0E1\n0x866D\t0xB0E2\n0x866E\t0xB0E3\n0x866F\t0xB0E4\n0x8670\t0xB0E6\n0x8671\t0xB0E7\n0x8672\t0xB0E8\n0x8673\t0xB0E9\n0x8674\t0xB0EA\n0x8675\t0xB0EB\n0x8676\t0xB0EC\n0x8677\t0xB0ED\n0x8678\t0xB0EE\n0x8679\t0xB0EF\n0x867A\t0xB0F0\n0x8681\t0xB0F1\n0x8682\t0xB0F2\n0x8683\t0xB0F3\n0x8684\t0xB0F4\n0x8685\t0xB0F5\n0x8686\t0xB0F6\n0x8687\t0xB0F7\n0x8688\t0xB0F8\n0x8689\t0xB0F9\n0x868A\t0xB0FA\n0x868B\t0xB0FB\n0x868C\t0xB0FC\n0x868D\t0xB0FD\n0x868E\t0xB0FE\n0x868F\t0xB0FF\n0x8690\t0xB100\n0x8691\t0xB101\n0x8692\t0xB102\n0x8693\t0xB103\n0x8694\t0xB104\n0x8695\t0xB105\n0x8696\t0xB106\n0x8697\t0xB107\n0x8698\t0xB10A\n0x8699\t0xB10D\n0x869A\t0xB10E\n0x869B\t0xB10F\n0x869C\t0xB111\n0x869D\t0xB114\n0x869E\t0xB115\n0x869F\t0xB116\n0x86A0\t0xB117\n0x86A1\t0xB11A\n0x86A2\t0xB11E\n0x86A3\t0xB11F\n0x86A4\t0xB120\n0x86A5\t0xB121\n0x86A6\t0xB122\n0x86A7\t0xB126\n0x86A8\t0xB127\n0x86A9\t0xB129\n0x86AA\t0xB12A\n0x86AB\t0xB12B\n0x86AC\t0xB12D\n0x86AD\t0xB12E\n0x86AE\t0xB12F\n0x86AF\t0xB130\n0x86B0\t0xB131\n0x86B1\t0xB132\n0x86B2\t0xB133\n0x86B3\t0xB136\n0x86B4\t0xB13A\n0x86B5\t0xB13B\n0x86B6\t0xB13C\n0x86B7\t0xB13D\n0x86B8\t0xB13E\n0x86B9\t0xB13F\n0x86BA\t0xB142\n0x86BB\t0xB143\n0x86BC\t0xB145\n0x86BD\t0xB146\n0x86BE\t0xB147\n0x86BF\t0xB149\n0x86C0\t0xB14A\n0x86C1\t0xB14B\n0x86C2\t0xB14C\n0x86C3\t0xB14D\n0x86C4\t0xB14E\n0x86C5\t0xB14F\n0x86C6\t0xB152\n0x86C7\t0xB153\n0x86C8\t0xB156\n0x86C9\t0xB157\n0x86CA\t0xB159\n0x86CB\t0xB15A\n0x86CC\t0xB15B\n0x86CD\t0xB15D\n0x86CE\t0xB15E\n0x86CF\t0xB15F\n0x86D0\t0xB161\n0x86D1\t0xB162\n0x86D2\t0xB163\n0x86D3\t0xB164\n0x86D4\t0xB165\n0x86D5\t0xB166\n0x86D6\t0xB167\n0x86D7\t0xB168\n0x86D8\t0xB169\n0x86D9\t0xB16A\n0x86DA\t0xB16B\n0x86DB\t0xB16C\n0x86DC\t0xB16D\n0x86DD\t0xB16E\n0x86DE\t0xB16F\n0x86DF\t0xB170\n0x86E0\t0xB171\n0x86E1\t0xB172\n0x86E2\t0xB173\n0x86E3\t0xB174\n0x86E4\t0xB175\n0x86E5\t0xB176\n0x86E6\t0xB177\n0x86E7\t0xB17A\n0x86E8\t0xB17B\n0x86E9\t0xB17D\n0x86EA\t0xB17E\n0x86EB\t0xB17F\n0x86EC\t0xB181\n0x86ED\t0xB183\n0x86EE\t0xB184\n0x86EF\t0xB185\n0x86F0\t0xB186\n0x86F1\t0xB187\n0x86F2\t0xB18A\n0x86F3\t0xB18C\n0x86F4\t0xB18E\n0x86F5\t0xB18F\n0x86F6\t0xB190\n0x86F7\t0xB191\n0x86F8\t0xB195\n0x86F9\t0xB196\n0x86FA\t0xB197\n0x86FB\t0xB199\n0x86FC\t0xB19A\n0x86FD\t0xB19B\n0x86FE\t0xB19D\n0x8741\t0xB19E\n0x8742\t0xB19F\n0x8743\t0xB1A0\n0x8744\t0xB1A1\n0x8745\t0xB1A2\n0x8746\t0xB1A3\n0x8747\t0xB1A4\n0x8748\t0xB1A5\n0x8749\t0xB1A6\n0x874A\t0xB1A7\n0x874B\t0xB1A9\n0x874C\t0xB1AA\n0x874D\t0xB1AB\n0x874E\t0xB1AC\n0x874F\t0xB1AD\n0x8750\t0xB1AE\n0x8751\t0xB1AF\n0x8752\t0xB1B0\n0x8753\t0xB1B1\n0x8754\t0xB1B2\n0x8755\t0xB1B3\n0x8756\t0xB1B4\n0x8757\t0xB1B5\n0x8758\t0xB1B6\n0x8759\t0xB1B7\n0x875A\t0xB1B8\n0x8761\t0xB1B9\n0x8762\t0xB1BA\n0x8763\t0xB1BB\n0x8764\t0xB1BC\n0x8765\t0xB1BD\n0x8766\t0xB1BE\n0x8767\t0xB1BF\n0x8768\t0xB1C0\n0x8769\t0xB1C1\n0x876A\t0xB1C2\n0x876B\t0xB1C3\n0x876C\t0xB1C4\n0x876D\t0xB1C5\n0x876E\t0xB1C6\n0x876F\t0xB1C7\n0x8770\t0xB1C8\n0x8771\t0xB1C9\n0x8772\t0xB1CA\n0x8773\t0xB1CB\n0x8774\t0xB1CD\n0x8775\t0xB1CE\n0x8776\t0xB1CF\n0x8777\t0xB1D1\n0x8778\t0xB1D2\n0x8779\t0xB1D3\n0x877A\t0xB1D5\n0x8781\t0xB1D6\n0x8782\t0xB1D7\n0x8783\t0xB1D8\n0x8784\t0xB1D9\n0x8785\t0xB1DA\n0x8786\t0xB1DB\n0x8787\t0xB1DE\n0x8788\t0xB1E0\n0x8789\t0xB1E1\n0x878A\t0xB1E2\n0x878B\t0xB1E3\n0x878C\t0xB1E4\n0x878D\t0xB1E5\n0x878E\t0xB1E6\n0x878F\t0xB1E7\n0x8790\t0xB1EA\n0x8791\t0xB1EB\n0x8792\t0xB1ED\n0x8793\t0xB1EE\n0x8794\t0xB1EF\n0x8795\t0xB1F1\n0x8796\t0xB1F2\n0x8797\t0xB1F3\n0x8798\t0xB1F4\n0x8799\t0xB1F5\n0x879A\t0xB1F6\n0x879B\t0xB1F7\n0x879C\t0xB1F8\n0x879D\t0xB1FA\n0x879E\t0xB1FC\n0x879F\t0xB1FE\n0x87A0\t0xB1FF\n0x87A1\t0xB200\n0x87A2\t0xB201\n0x87A3\t0xB202\n0x87A4\t0xB203\n0x87A5\t0xB206\n0x87A6\t0xB207\n0x87A7\t0xB209\n0x87A8\t0xB20A\n0x87A9\t0xB20D\n0x87AA\t0xB20E\n0x87AB\t0xB20F\n0x87AC\t0xB210\n0x87AD\t0xB211\n0x87AE\t0xB212\n0x87AF\t0xB213\n0x87B0\t0xB216\n0x87B1\t0xB218\n0x87B2\t0xB21A\n0x87B3\t0xB21B\n0x87B4\t0xB21C\n0x87B5\t0xB21D\n0x87B6\t0xB21E\n0x87B7\t0xB21F\n0x87B8\t0xB221\n0x87B9\t0xB222\n0x87BA\t0xB223\n0x87BB\t0xB224\n0x87BC\t0xB225\n0x87BD\t0xB226\n0x87BE\t0xB227\n0x87BF\t0xB228\n0x87C0\t0xB229\n0x87C1\t0xB22A\n0x87C2\t0xB22B\n0x87C3\t0xB22C\n0x87C4\t0xB22D\n0x87C5\t0xB22E\n0x87C6\t0xB22F\n0x87C7\t0xB230\n0x87C8\t0xB231\n0x87C9\t0xB232\n0x87CA\t0xB233\n0x87CB\t0xB235\n0x87CC\t0xB236\n0x87CD\t0xB237\n0x87CE\t0xB238\n0x87CF\t0xB239\n0x87D0\t0xB23A\n0x87D1\t0xB23B\n0x87D2\t0xB23D\n0x87D3\t0xB23E\n0x87D4\t0xB23F\n0x87D5\t0xB240\n0x87D6\t0xB241\n0x87D7\t0xB242\n0x87D8\t0xB243\n0x87D9\t0xB244\n0x87DA\t0xB245\n0x87DB\t0xB246\n0x87DC\t0xB247\n0x87DD\t0xB248\n0x87DE\t0xB249\n0x87DF\t0xB24A\n0x87E0\t0xB24B\n0x87E1\t0xB24C\n0x87E2\t0xB24D\n0x87E3\t0xB24E\n0x87E4\t0xB24F\n0x87E5\t0xB250\n0x87E6\t0xB251\n0x87E7\t0xB252\n0x87E8\t0xB253\n0x87E9\t0xB254\n0x87EA\t0xB255\n0x87EB\t0xB256\n0x87EC\t0xB257\n0x87ED\t0xB259\n0x87EE\t0xB25A\n0x87EF\t0xB25B\n0x87F0\t0xB25D\n0x87F1\t0xB25E\n0x87F2\t0xB25F\n0x87F3\t0xB261\n0x87F4\t0xB262\n0x87F5\t0xB263\n0x87F6\t0xB264\n0x87F7\t0xB265\n0x87F8\t0xB266\n0x87F9\t0xB267\n0x87FA\t0xB26A\n0x87FB\t0xB26B\n0x87FC\t0xB26C\n0x87FD\t0xB26D\n0x87FE\t0xB26E\n0x8841\t0xB26F\n0x8842\t0xB270\n0x8843\t0xB271\n0x8844\t0xB272\n0x8845\t0xB273\n0x8846\t0xB276\n0x8847\t0xB277\n0x8848\t0xB278\n0x8849\t0xB279\n0x884A\t0xB27A\n0x884B\t0xB27B\n0x884C\t0xB27D\n0x884D\t0xB27E\n0x884E\t0xB27F\n0x884F\t0xB280\n0x8850\t0xB281\n0x8851\t0xB282\n0x8852\t0xB283\n0x8853\t0xB286\n0x8854\t0xB287\n0x8855\t0xB288\n0x8856\t0xB28A\n0x8857\t0xB28B\n0x8858\t0xB28C\n0x8859\t0xB28D\n0x885A\t0xB28E\n0x8861\t0xB28F\n0x8862\t0xB292\n0x8863\t0xB293\n0x8864\t0xB295\n0x8865\t0xB296\n0x8866\t0xB297\n0x8867\t0xB29B\n0x8868\t0xB29C\n0x8869\t0xB29D\n0x886A\t0xB29E\n0x886B\t0xB29F\n0x886C\t0xB2A2\n0x886D\t0xB2A4\n0x886E\t0xB2A7\n0x886F\t0xB2A8\n0x8870\t0xB2A9\n0x8871\t0xB2AB\n0x8872\t0xB2AD\n0x8873\t0xB2AE\n0x8874\t0xB2AF\n0x8875\t0xB2B1\n0x8876\t0xB2B2\n0x8877\t0xB2B3\n0x8878\t0xB2B5\n0x8879\t0xB2B6\n0x887A\t0xB2B7\n0x8881\t0xB2B8\n0x8882\t0xB2B9\n0x8883\t0xB2BA\n0x8884\t0xB2BB\n0x8885\t0xB2BC\n0x8886\t0xB2BD\n0x8887\t0xB2BE\n0x8888\t0xB2BF\n0x8889\t0xB2C0\n0x888A\t0xB2C1\n0x888B\t0xB2C2\n0x888C\t0xB2C3\n0x888D\t0xB2C4\n0x888E\t0xB2C5\n0x888F\t0xB2C6\n0x8890\t0xB2C7\n0x8891\t0xB2CA\n0x8892\t0xB2CB\n0x8893\t0xB2CD\n0x8894\t0xB2CE\n0x8895\t0xB2CF\n0x8896\t0xB2D1\n0x8897\t0xB2D3\n0x8898\t0xB2D4\n0x8899\t0xB2D5\n0x889A\t0xB2D6\n0x889B\t0xB2D7\n0x889C\t0xB2DA\n0x889D\t0xB2DC\n0x889E\t0xB2DE\n0x889F\t0xB2DF\n0x88A0\t0xB2E0\n0x88A1\t0xB2E1\n0x88A2\t0xB2E3\n0x88A3\t0xB2E7\n0x88A4\t0xB2E9\n0x88A5\t0xB2EA\n0x88A6\t0xB2F0\n0x88A7\t0xB2F1\n0x88A8\t0xB2F2\n0x88A9\t0xB2F6\n0x88AA\t0xB2FC\n0x88AB\t0xB2FD\n0x88AC\t0xB2FE\n0x88AD\t0xB302\n0x88AE\t0xB303\n0x88AF\t0xB305\n0x88B0\t0xB306\n0x88B1\t0xB307\n0x88B2\t0xB309\n0x88B3\t0xB30A\n0x88B4\t0xB30B\n0x88B5\t0xB30C\n0x88B6\t0xB30D\n0x88B7\t0xB30E\n0x88B8\t0xB30F\n0x88B9\t0xB312\n0x88BA\t0xB316\n0x88BB\t0xB317\n0x88BC\t0xB318\n0x88BD\t0xB319\n0x88BE\t0xB31A\n0x88BF\t0xB31B\n0x88C0\t0xB31D\n0x88C1\t0xB31E\n0x88C2\t0xB31F\n0x88C3\t0xB320\n0x88C4\t0xB321\n0x88C5\t0xB322\n0x88C6\t0xB323\n0x88C7\t0xB324\n0x88C8\t0xB325\n0x88C9\t0xB326\n0x88CA\t0xB327\n0x88CB\t0xB328\n0x88CC\t0xB329\n0x88CD\t0xB32A\n0x88CE\t0xB32B\n0x88CF\t0xB32C\n0x88D0\t0xB32D\n0x88D1\t0xB32E\n0x88D2\t0xB32F\n0x88D3\t0xB330\n0x88D4\t0xB331\n0x88D5\t0xB332\n0x88D6\t0xB333\n0x88D7\t0xB334\n0x88D8\t0xB335\n0x88D9\t0xB336\n0x88DA\t0xB337\n0x88DB\t0xB338\n0x88DC\t0xB339\n0x88DD\t0xB33A\n0x88DE\t0xB33B\n0x88DF\t0xB33C\n0x88E0\t0xB33D\n0x88E1\t0xB33E\n0x88E2\t0xB33F\n0x88E3\t0xB340\n0x88E4\t0xB341\n0x88E5\t0xB342\n0x88E6\t0xB343\n0x88E7\t0xB344\n0x88E8\t0xB345\n0x88E9\t0xB346\n0x88EA\t0xB347\n0x88EB\t0xB348\n0x88EC\t0xB349\n0x88ED\t0xB34A\n0x88EE\t0xB34B\n0x88EF\t0xB34C\n0x88F0\t0xB34D\n0x88F1\t0xB34E\n0x88F2\t0xB34F\n0x88F3\t0xB350\n0x88F4\t0xB351\n0x88F5\t0xB352\n0x88F6\t0xB353\n0x88F7\t0xB357\n0x88F8\t0xB359\n0x88F9\t0xB35A\n0x88FA\t0xB35D\n0x88FB\t0xB360\n0x88FC\t0xB361\n0x88FD\t0xB362\n0x88FE\t0xB363\n0x8941\t0xB366\n0x8942\t0xB368\n0x8943\t0xB36A\n0x8944\t0xB36C\n0x8945\t0xB36D\n0x8946\t0xB36F\n0x8947\t0xB372\n0x8948\t0xB373\n0x8949\t0xB375\n0x894A\t0xB376\n0x894B\t0xB377\n0x894C\t0xB379\n0x894D\t0xB37A\n0x894E\t0xB37B\n0x894F\t0xB37C\n0x8950\t0xB37D\n0x8951\t0xB37E\n0x8952\t0xB37F\n0x8953\t0xB382\n0x8954\t0xB386\n0x8955\t0xB387\n0x8956\t0xB388\n0x8957\t0xB389\n0x8958\t0xB38A\n0x8959\t0xB38B\n0x895A\t0xB38D\n0x8961\t0xB38E\n0x8962\t0xB38F\n0x8963\t0xB391\n0x8964\t0xB392\n0x8965\t0xB393\n0x8966\t0xB395\n0x8967\t0xB396\n0x8968\t0xB397\n0x8969\t0xB398\n0x896A\t0xB399\n0x896B\t0xB39A\n0x896C\t0xB39B\n0x896D\t0xB39C\n0x896E\t0xB39D\n0x896F\t0xB39E\n0x8970\t0xB39F\n0x8971\t0xB3A2\n0x8972\t0xB3A3\n0x8973\t0xB3A4\n0x8974\t0xB3A5\n0x8975\t0xB3A6\n0x8976\t0xB3A7\n0x8977\t0xB3A9\n0x8978\t0xB3AA\n0x8979\t0xB3AB\n0x897A\t0xB3AD\n0x8981\t0xB3AE\n0x8982\t0xB3AF\n0x8983\t0xB3B0\n0x8984\t0xB3B1\n0x8985\t0xB3B2\n0x8986\t0xB3B3\n0x8987\t0xB3B4\n0x8988\t0xB3B5\n0x8989\t0xB3B6\n0x898A\t0xB3B7\n0x898B\t0xB3B8\n0x898C\t0xB3B9\n0x898D\t0xB3BA\n0x898E\t0xB3BB\n0x898F\t0xB3BC\n0x8990\t0xB3BD\n0x8991\t0xB3BE\n0x8992\t0xB3BF\n0x8993\t0xB3C0\n0x8994\t0xB3C1\n0x8995\t0xB3C2\n0x8996\t0xB3C3\n0x8997\t0xB3C6\n0x8998\t0xB3C7\n0x8999\t0xB3C9\n0x899A\t0xB3CA\n0x899B\t0xB3CD\n0x899C\t0xB3CF\n0x899D\t0xB3D1\n0x899E\t0xB3D2\n0x899F\t0xB3D3\n0x89A0\t0xB3D6\n0x89A1\t0xB3D8\n0x89A2\t0xB3DA\n0x89A3\t0xB3DC\n0x89A4\t0xB3DE\n0x89A5\t0xB3DF\n0x89A6\t0xB3E1\n0x89A7\t0xB3E2\n0x89A8\t0xB3E3\n0x89A9\t0xB3E5\n0x89AA\t0xB3E6\n0x89AB\t0xB3E7\n0x89AC\t0xB3E9\n0x89AD\t0xB3EA\n0x89AE\t0xB3EB\n0x89AF\t0xB3EC\n0x89B0\t0xB3ED\n0x89B1\t0xB3EE\n0x89B2\t0xB3EF\n0x89B3\t0xB3F0\n0x89B4\t0xB3F1\n0x89B5\t0xB3F2\n0x89B6\t0xB3F3\n0x89B7\t0xB3F4\n0x89B8\t0xB3F5\n0x89B9\t0xB3F6\n0x89BA\t0xB3F7\n0x89BB\t0xB3F8\n0x89BC\t0xB3F9\n0x89BD\t0xB3FA\n0x89BE\t0xB3FB\n0x89BF\t0xB3FD\n0x89C0\t0xB3FE\n0x89C1\t0xB3FF\n0x89C2\t0xB400\n0x89C3\t0xB401\n0x89C4\t0xB402\n0x89C5\t0xB403\n0x89C6\t0xB404\n0x89C7\t0xB405\n0x89C8\t0xB406\n0x89C9\t0xB407\n0x89CA\t0xB408\n0x89CB\t0xB409\n0x89CC\t0xB40A\n0x89CD\t0xB40B\n0x89CE\t0xB40C\n0x89CF\t0xB40D\n0x89D0\t0xB40E\n0x89D1\t0xB40F\n0x89D2\t0xB411\n0x89D3\t0xB412\n0x89D4\t0xB413\n0x89D5\t0xB414\n0x89D6\t0xB415\n0x89D7\t0xB416\n0x89D8\t0xB417\n0x89D9\t0xB419\n0x89DA\t0xB41A\n0x89DB\t0xB41B\n0x89DC\t0xB41D\n0x89DD\t0xB41E\n0x89DE\t0xB41F\n0x89DF\t0xB421\n0x89E0\t0xB422\n0x89E1\t0xB423\n0x89E2\t0xB424\n0x89E3\t0xB425\n0x89E4\t0xB426\n0x89E5\t0xB427\n0x89E6\t0xB42A\n0x89E7\t0xB42C\n0x89E8\t0xB42D\n0x89E9\t0xB42E\n0x89EA\t0xB42F\n0x89EB\t0xB430\n0x89EC\t0xB431\n0x89ED\t0xB432\n0x89EE\t0xB433\n0x89EF\t0xB435\n0x89F0\t0xB436\n0x89F1\t0xB437\n0x89F2\t0xB438\n0x89F3\t0xB439\n0x89F4\t0xB43A\n0x89F5\t0xB43B\n0x89F6\t0xB43C\n0x89F7\t0xB43D\n0x89F8\t0xB43E\n0x89F9\t0xB43F\n0x89FA\t0xB440\n0x89FB\t0xB441\n0x89FC\t0xB442\n0x89FD\t0xB443\n0x89FE\t0xB444\n0x8A41\t0xB445\n0x8A42\t0xB446\n0x8A43\t0xB447\n0x8A44\t0xB448\n0x8A45\t0xB449\n0x8A46\t0xB44A\n0x8A47\t0xB44B\n0x8A48\t0xB44C\n0x8A49\t0xB44D\n0x8A4A\t0xB44E\n0x8A4B\t0xB44F\n0x8A4C\t0xB452\n0x8A4D\t0xB453\n0x8A4E\t0xB455\n0x8A4F\t0xB456\n0x8A50\t0xB457\n0x8A51\t0xB459\n0x8A52\t0xB45A\n0x8A53\t0xB45B\n0x8A54\t0xB45C\n0x8A55\t0xB45D\n0x8A56\t0xB45E\n0x8A57\t0xB45F\n0x8A58\t0xB462\n0x8A59\t0xB464\n0x8A5A\t0xB466\n0x8A61\t0xB467\n0x8A62\t0xB468\n0x8A63\t0xB469\n0x8A64\t0xB46A\n0x8A65\t0xB46B\n0x8A66\t0xB46D\n0x8A67\t0xB46E\n0x8A68\t0xB46F\n0x8A69\t0xB470\n0x8A6A\t0xB471\n0x8A6B\t0xB472\n0x8A6C\t0xB473\n0x8A6D\t0xB474\n0x8A6E\t0xB475\n0x8A6F\t0xB476\n0x8A70\t0xB477\n0x8A71\t0xB478\n0x8A72\t0xB479\n0x8A73\t0xB47A\n0x8A74\t0xB47B\n0x8A75\t0xB47C\n0x8A76\t0xB47D\n0x8A77\t0xB47E\n0x8A78\t0xB47F\n0x8A79\t0xB481\n0x8A7A\t0xB482\n0x8A81\t0xB483\n0x8A82\t0xB484\n0x8A83\t0xB485\n0x8A84\t0xB486\n0x8A85\t0xB487\n0x8A86\t0xB489\n0x8A87\t0xB48A\n0x8A88\t0xB48B\n0x8A89\t0xB48C\n0x8A8A\t0xB48D\n0x8A8B\t0xB48E\n0x8A8C\t0xB48F\n0x8A8D\t0xB490\n0x8A8E\t0xB491\n0x8A8F\t0xB492\n0x8A90\t0xB493\n0x8A91\t0xB494\n0x8A92\t0xB495\n0x8A93\t0xB496\n0x8A94\t0xB497\n0x8A95\t0xB498\n0x8A96\t0xB499\n0x8A97\t0xB49A\n0x8A98\t0xB49B\n0x8A99\t0xB49C\n0x8A9A\t0xB49E\n0x8A9B\t0xB49F\n0x8A9C\t0xB4A0\n0x8A9D\t0xB4A1\n0x8A9E\t0xB4A2\n0x8A9F\t0xB4A3\n0x8AA0\t0xB4A5\n0x8AA1\t0xB4A6\n0x8AA2\t0xB4A7\n0x8AA3\t0xB4A9\n0x8AA4\t0xB4AA\n0x8AA5\t0xB4AB\n0x8AA6\t0xB4AD\n0x8AA7\t0xB4AE\n0x8AA8\t0xB4AF\n0x8AA9\t0xB4B0\n0x8AAA\t0xB4B1\n0x8AAB\t0xB4B2\n0x8AAC\t0xB4B3\n0x8AAD\t0xB4B4\n0x8AAE\t0xB4B6\n0x8AAF\t0xB4B8\n0x8AB0\t0xB4BA\n0x8AB1\t0xB4BB\n0x8AB2\t0xB4BC\n0x8AB3\t0xB4BD\n0x8AB4\t0xB4BE\n0x8AB5\t0xB4BF\n0x8AB6\t0xB4C1\n0x8AB7\t0xB4C2\n0x8AB8\t0xB4C3\n0x8AB9\t0xB4C5\n0x8ABA\t0xB4C6\n0x8ABB\t0xB4C7\n0x8ABC\t0xB4C9\n0x8ABD\t0xB4CA\n0x8ABE\t0xB4CB\n0x8ABF\t0xB4CC\n0x8AC0\t0xB4CD\n0x8AC1\t0xB4CE\n0x8AC2\t0xB4CF\n0x8AC3\t0xB4D1\n0x8AC4\t0xB4D2\n0x8AC5\t0xB4D3\n0x8AC6\t0xB4D4\n0x8AC7\t0xB4D6\n0x8AC8\t0xB4D7\n0x8AC9\t0xB4D8\n0x8ACA\t0xB4D9\n0x8ACB\t0xB4DA\n0x8ACC\t0xB4DB\n0x8ACD\t0xB4DE\n0x8ACE\t0xB4DF\n0x8ACF\t0xB4E1\n0x8AD0\t0xB4E2\n0x8AD1\t0xB4E5\n0x8AD2\t0xB4E7\n0x8AD3\t0xB4E8\n0x8AD4\t0xB4E9\n0x8AD5\t0xB4EA\n0x8AD6\t0xB4EB\n0x8AD7\t0xB4EE\n0x8AD8\t0xB4F0\n0x8AD9\t0xB4F2\n0x8ADA\t0xB4F3\n0x8ADB\t0xB4F4\n0x8ADC\t0xB4F5\n0x8ADD\t0xB4F6\n0x8ADE\t0xB4F7\n0x8ADF\t0xB4F9\n0x8AE0\t0xB4FA\n0x8AE1\t0xB4FB\n0x8AE2\t0xB4FC\n0x8AE3\t0xB4FD\n0x8AE4\t0xB4FE\n0x8AE5\t0xB4FF\n0x8AE6\t0xB500\n0x8AE7\t0xB501\n0x8AE8\t0xB502\n0x8AE9\t0xB503\n0x8AEA\t0xB504\n0x8AEB\t0xB505\n0x8AEC\t0xB506\n0x8AED\t0xB507\n0x8AEE\t0xB508\n0x8AEF\t0xB509\n0x8AF0\t0xB50A\n0x8AF1\t0xB50B\n0x8AF2\t0xB50C\n0x8AF3\t0xB50D\n0x8AF4\t0xB50E\n0x8AF5\t0xB50F\n0x8AF6\t0xB510\n0x8AF7\t0xB511\n0x8AF8\t0xB512\n0x8AF9\t0xB513\n0x8AFA\t0xB516\n0x8AFB\t0xB517\n0x8AFC\t0xB519\n0x8AFD\t0xB51A\n0x8AFE\t0xB51D\n0x8B41\t0xB51E\n0x8B42\t0xB51F\n0x8B43\t0xB520\n0x8B44\t0xB521\n0x8B45\t0xB522\n0x8B46\t0xB523\n0x8B47\t0xB526\n0x8B48\t0xB52B\n0x8B49\t0xB52C\n0x8B4A\t0xB52D\n0x8B4B\t0xB52E\n0x8B4C\t0xB52F\n0x8B4D\t0xB532\n0x8B4E\t0xB533\n0x8B4F\t0xB535\n0x8B50\t0xB536\n0x8B51\t0xB537\n0x8B52\t0xB539\n0x8B53\t0xB53A\n0x8B54\t0xB53B\n0x8B55\t0xB53C\n0x8B56\t0xB53D\n0x8B57\t0xB53E\n0x8B58\t0xB53F\n0x8B59\t0xB542\n0x8B5A\t0xB546\n0x8B61\t0xB547\n0x8B62\t0xB548\n0x8B63\t0xB549\n0x8B64\t0xB54A\n0x8B65\t0xB54E\n0x8B66\t0xB54F\n0x8B67\t0xB551\n0x8B68\t0xB552\n0x8B69\t0xB553\n0x8B6A\t0xB555\n0x8B6B\t0xB556\n0x8B6C\t0xB557\n0x8B6D\t0xB558\n0x8B6E\t0xB559\n0x8B6F\t0xB55A\n0x8B70\t0xB55B\n0x8B71\t0xB55E\n0x8B72\t0xB562\n0x8B73\t0xB563\n0x8B74\t0xB564\n0x8B75\t0xB565\n0x8B76\t0xB566\n0x8B77\t0xB567\n0x8B78\t0xB568\n0x8B79\t0xB569\n0x8B7A\t0xB56A\n0x8B81\t0xB56B\n0x8B82\t0xB56C\n0x8B83\t0xB56D\n0x8B84\t0xB56E\n0x8B85\t0xB56F\n0x8B86\t0xB570\n0x8B87\t0xB571\n0x8B88\t0xB572\n0x8B89\t0xB573\n0x8B8A\t0xB574\n0x8B8B\t0xB575\n0x8B8C\t0xB576\n0x8B8D\t0xB577\n0x8B8E\t0xB578\n0x8B8F\t0xB579\n0x8B90\t0xB57A\n0x8B91\t0xB57B\n0x8B92\t0xB57C\n0x8B93\t0xB57D\n0x8B94\t0xB57E\n0x8B95\t0xB57F\n0x8B96\t0xB580\n0x8B97\t0xB581\n0x8B98\t0xB582\n0x8B99\t0xB583\n0x8B9A\t0xB584\n0x8B9B\t0xB585\n0x8B9C\t0xB586\n0x8B9D\t0xB587\n0x8B9E\t0xB588\n0x8B9F\t0xB589\n0x8BA0\t0xB58A\n0x8BA1\t0xB58B\n0x8BA2\t0xB58C\n0x8BA3\t0xB58D\n0x8BA4\t0xB58E\n0x8BA5\t0xB58F\n0x8BA6\t0xB590\n0x8BA7\t0xB591\n0x8BA8\t0xB592\n0x8BA9\t0xB593\n0x8BAA\t0xB594\n0x8BAB\t0xB595\n0x8BAC\t0xB596\n0x8BAD\t0xB597\n0x8BAE\t0xB598\n0x8BAF\t0xB599\n0x8BB0\t0xB59A\n0x8BB1\t0xB59B\n0x8BB2\t0xB59C\n0x8BB3\t0xB59D\n0x8BB4\t0xB59E\n0x8BB5\t0xB59F\n0x8BB6\t0xB5A2\n0x8BB7\t0xB5A3\n0x8BB8\t0xB5A5\n0x8BB9\t0xB5A6\n0x8BBA\t0xB5A7\n0x8BBB\t0xB5A9\n0x8BBC\t0xB5AC\n0x8BBD\t0xB5AD\n0x8BBE\t0xB5AE\n0x8BBF\t0xB5AF\n0x8BC0\t0xB5B2\n0x8BC1\t0xB5B6\n0x8BC2\t0xB5B7\n0x8BC3\t0xB5B8\n0x8BC4\t0xB5B9\n0x8BC5\t0xB5BA\n0x8BC6\t0xB5BE\n0x8BC7\t0xB5BF\n0x8BC8\t0xB5C1\n0x8BC9\t0xB5C2\n0x8BCA\t0xB5C3\n0x8BCB\t0xB5C5\n0x8BCC\t0xB5C6\n0x8BCD\t0xB5C7\n0x8BCE\t0xB5C8\n0x8BCF\t0xB5C9\n0x8BD0\t0xB5CA\n0x8BD1\t0xB5CB\n0x8BD2\t0xB5CE\n0x8BD3\t0xB5D2\n0x8BD4\t0xB5D3\n0x8BD5\t0xB5D4\n0x8BD6\t0xB5D5\n0x8BD7\t0xB5D6\n0x8BD8\t0xB5D7\n0x8BD9\t0xB5D9\n0x8BDA\t0xB5DA\n0x8BDB\t0xB5DB\n0x8BDC\t0xB5DC\n0x8BDD\t0xB5DD\n0x8BDE\t0xB5DE\n0x8BDF\t0xB5DF\n0x8BE0\t0xB5E0\n0x8BE1\t0xB5E1\n0x8BE2\t0xB5E2\n0x8BE3\t0xB5E3\n0x8BE4\t0xB5E4\n0x8BE5\t0xB5E5\n0x8BE6\t0xB5E6\n0x8BE7\t0xB5E7\n0x8BE8\t0xB5E8\n0x8BE9\t0xB5E9\n0x8BEA\t0xB5EA\n0x8BEB\t0xB5EB\n0x8BEC\t0xB5ED\n0x8BED\t0xB5EE\n0x8BEE\t0xB5EF\n0x8BEF\t0xB5F0\n0x8BF0\t0xB5F1\n0x8BF1\t0xB5F2\n0x8BF2\t0xB5F3\n0x8BF3\t0xB5F4\n0x8BF4\t0xB5F5\n0x8BF5\t0xB5F6\n0x8BF6\t0xB5F7\n0x8BF7\t0xB5F8\n0x8BF8\t0xB5F9\n0x8BF9\t0xB5FA\n0x8BFA\t0xB5FB\n0x8BFB\t0xB5FC\n0x8BFC\t0xB5FD\n0x8BFD\t0xB5FE\n0x8BFE\t0xB5FF\n0x8C41\t0xB600\n0x8C42\t0xB601\n0x8C43\t0xB602\n0x8C44\t0xB603\n0x8C45\t0xB604\n0x8C46\t0xB605\n0x8C47\t0xB606\n0x8C48\t0xB607\n0x8C49\t0xB608\n0x8C4A\t0xB609\n0x8C4B\t0xB60A\n0x8C4C\t0xB60B\n0x8C4D\t0xB60C\n0x8C4E\t0xB60D\n0x8C4F\t0xB60E\n0x8C50\t0xB60F\n0x8C51\t0xB612\n0x8C52\t0xB613\n0x8C53\t0xB615\n0x8C54\t0xB616\n0x8C55\t0xB617\n0x8C56\t0xB619\n0x8C57\t0xB61A\n0x8C58\t0xB61B\n0x8C59\t0xB61C\n0x8C5A\t0xB61D\n0x8C61\t0xB61E\n0x8C62\t0xB61F\n0x8C63\t0xB620\n0x8C64\t0xB621\n0x8C65\t0xB622\n0x8C66\t0xB623\n0x8C67\t0xB624\n0x8C68\t0xB626\n0x8C69\t0xB627\n0x8C6A\t0xB628\n0x8C6B\t0xB629\n0x8C6C\t0xB62A\n0x8C6D\t0xB62B\n0x8C6E\t0xB62D\n0x8C6F\t0xB62E\n0x8C70\t0xB62F\n0x8C71\t0xB630\n0x8C72\t0xB631\n0x8C73\t0xB632\n0x8C74\t0xB633\n0x8C75\t0xB635\n0x8C76\t0xB636\n0x8C77\t0xB637\n0x8C78\t0xB638\n0x8C79\t0xB639\n0x8C7A\t0xB63A\n0x8C81\t0xB63B\n0x8C82\t0xB63C\n0x8C83\t0xB63D\n0x8C84\t0xB63E\n0x8C85\t0xB63F\n0x8C86\t0xB640\n0x8C87\t0xB641\n0x8C88\t0xB642\n0x8C89\t0xB643\n0x8C8A\t0xB644\n0x8C8B\t0xB645\n0x8C8C\t0xB646\n0x8C8D\t0xB647\n0x8C8E\t0xB649\n0x8C8F\t0xB64A\n0x8C90\t0xB64B\n0x8C91\t0xB64C\n0x8C92\t0xB64D\n0x8C93\t0xB64E\n0x8C94\t0xB64F\n0x8C95\t0xB650\n0x8C96\t0xB651\n0x8C97\t0xB652\n0x8C98\t0xB653\n0x8C99\t0xB654\n0x8C9A\t0xB655\n0x8C9B\t0xB656\n0x8C9C\t0xB657\n0x8C9D\t0xB658\n0x8C9E\t0xB659\n0x8C9F\t0xB65A\n0x8CA0\t0xB65B\n0x8CA1\t0xB65C\n0x8CA2\t0xB65D\n0x8CA3\t0xB65E\n0x8CA4\t0xB65F\n0x8CA5\t0xB660\n0x8CA6\t0xB661\n0x8CA7\t0xB662\n0x8CA8\t0xB663\n0x8CA9\t0xB665\n0x8CAA\t0xB666\n0x8CAB\t0xB667\n0x8CAC\t0xB669\n0x8CAD\t0xB66A\n0x8CAE\t0xB66B\n0x8CAF\t0xB66C\n0x8CB0\t0xB66D\n0x8CB1\t0xB66E\n0x8CB2\t0xB66F\n0x8CB3\t0xB670\n0x8CB4\t0xB671\n0x8CB5\t0xB672\n0x8CB6\t0xB673\n0x8CB7\t0xB674\n0x8CB8\t0xB675\n0x8CB9\t0xB676\n0x8CBA\t0xB677\n0x8CBB\t0xB678\n0x8CBC\t0xB679\n0x8CBD\t0xB67A\n0x8CBE\t0xB67B\n0x8CBF\t0xB67C\n0x8CC0\t0xB67D\n0x8CC1\t0xB67E\n0x8CC2\t0xB67F\n0x8CC3\t0xB680\n0x8CC4\t0xB681\n0x8CC5\t0xB682\n0x8CC6\t0xB683\n0x8CC7\t0xB684\n0x8CC8\t0xB685\n0x8CC9\t0xB686\n0x8CCA\t0xB687\n0x8CCB\t0xB688\n0x8CCC\t0xB689\n0x8CCD\t0xB68A\n0x8CCE\t0xB68B\n0x8CCF\t0xB68C\n0x8CD0\t0xB68D\n0x8CD1\t0xB68E\n0x8CD2\t0xB68F\n0x8CD3\t0xB690\n0x8CD4\t0xB691\n0x8CD5\t0xB692\n0x8CD6\t0xB693\n0x8CD7\t0xB694\n0x8CD8\t0xB695\n0x8CD9\t0xB696\n0x8CDA\t0xB697\n0x8CDB\t0xB698\n0x8CDC\t0xB699\n0x8CDD\t0xB69A\n0x8CDE\t0xB69B\n0x8CDF\t0xB69E\n0x8CE0\t0xB69F\n0x8CE1\t0xB6A1\n0x8CE2\t0xB6A2\n0x8CE3\t0xB6A3\n0x8CE4\t0xB6A5\n0x8CE5\t0xB6A6\n0x8CE6\t0xB6A7\n0x8CE7\t0xB6A8\n0x8CE8\t0xB6A9\n0x8CE9\t0xB6AA\n0x8CEA\t0xB6AD\n0x8CEB\t0xB6AE\n0x8CEC\t0xB6AF\n0x8CED\t0xB6B0\n0x8CEE\t0xB6B2\n0x8CEF\t0xB6B3\n0x8CF0\t0xB6B4\n0x8CF1\t0xB6B5\n0x8CF2\t0xB6B6\n0x8CF3\t0xB6B7\n0x8CF4\t0xB6B8\n0x8CF5\t0xB6B9\n0x8CF6\t0xB6BA\n0x8CF7\t0xB6BB\n0x8CF8\t0xB6BC\n0x8CF9\t0xB6BD\n0x8CFA\t0xB6BE\n0x8CFB\t0xB6BF\n0x8CFC\t0xB6C0\n0x8CFD\t0xB6C1\n0x8CFE\t0xB6C2\n0x8D41\t0xB6C3\n0x8D42\t0xB6C4\n0x8D43\t0xB6C5\n0x8D44\t0xB6C6\n0x8D45\t0xB6C7\n0x8D46\t0xB6C8\n0x8D47\t0xB6C9\n0x8D48\t0xB6CA\n0x8D49\t0xB6CB\n0x8D4A\t0xB6CC\n0x8D4B\t0xB6CD\n0x8D4C\t0xB6CE\n0x8D4D\t0xB6CF\n0x8D4E\t0xB6D0\n0x8D4F\t0xB6D1\n0x8D50\t0xB6D2\n0x8D51\t0xB6D3\n0x8D52\t0xB6D5\n0x8D53\t0xB6D6\n0x8D54\t0xB6D7\n0x8D55\t0xB6D8\n0x8D56\t0xB6D9\n0x8D57\t0xB6DA\n0x8D58\t0xB6DB\n0x8D59\t0xB6DC\n0x8D5A\t0xB6DD\n0x8D61\t0xB6DE\n0x8D62\t0xB6DF\n0x8D63\t0xB6E0\n0x8D64\t0xB6E1\n0x8D65\t0xB6E2\n0x8D66\t0xB6E3\n0x8D67\t0xB6E4\n0x8D68\t0xB6E5\n0x8D69\t0xB6E6\n0x8D6A\t0xB6E7\n0x8D6B\t0xB6E8\n0x8D6C\t0xB6E9\n0x8D6D\t0xB6EA\n0x8D6E\t0xB6EB\n0x8D6F\t0xB6EC\n0x8D70\t0xB6ED\n0x8D71\t0xB6EE\n0x8D72\t0xB6EF\n0x8D73\t0xB6F1\n0x8D74\t0xB6F2\n0x8D75\t0xB6F3\n0x8D76\t0xB6F5\n0x8D77\t0xB6F6\n0x8D78\t0xB6F7\n0x8D79\t0xB6F9\n0x8D7A\t0xB6FA\n0x8D81\t0xB6FB\n0x8D82\t0xB6FC\n0x8D83\t0xB6FD\n0x8D84\t0xB6FE\n0x8D85\t0xB6FF\n0x8D86\t0xB702\n0x8D87\t0xB703\n0x8D88\t0xB704\n0x8D89\t0xB706\n0x8D8A\t0xB707\n0x8D8B\t0xB708\n0x8D8C\t0xB709\n0x8D8D\t0xB70A\n0x8D8E\t0xB70B\n0x8D8F\t0xB70C\n0x8D90\t0xB70D\n0x8D91\t0xB70E\n0x8D92\t0xB70F\n0x8D93\t0xB710\n0x8D94\t0xB711\n0x8D95\t0xB712\n0x8D96\t0xB713\n0x8D97\t0xB714\n0x8D98\t0xB715\n0x8D99\t0xB716\n0x8D9A\t0xB717\n0x8D9B\t0xB718\n0x8D9C\t0xB719\n0x8D9D\t0xB71A\n0x8D9E\t0xB71B\n0x8D9F\t0xB71C\n0x8DA0\t0xB71D\n0x8DA1\t0xB71E\n0x8DA2\t0xB71F\n0x8DA3\t0xB720\n0x8DA4\t0xB721\n0x8DA5\t0xB722\n0x8DA6\t0xB723\n0x8DA7\t0xB724\n0x8DA8\t0xB725\n0x8DA9\t0xB726\n0x8DAA\t0xB727\n0x8DAB\t0xB72A\n0x8DAC\t0xB72B\n0x8DAD\t0xB72D\n0x8DAE\t0xB72E\n0x8DAF\t0xB731\n0x8DB0\t0xB732\n0x8DB1\t0xB733\n0x8DB2\t0xB734\n0x8DB3\t0xB735\n0x8DB4\t0xB736\n0x8DB5\t0xB737\n0x8DB6\t0xB73A\n0x8DB7\t0xB73C\n0x8DB8\t0xB73D\n0x8DB9\t0xB73E\n0x8DBA\t0xB73F\n0x8DBB\t0xB740\n0x8DBC\t0xB741\n0x8DBD\t0xB742\n0x8DBE\t0xB743\n0x8DBF\t0xB745\n0x8DC0\t0xB746\n0x8DC1\t0xB747\n0x8DC2\t0xB749\n0x8DC3\t0xB74A\n0x8DC4\t0xB74B\n0x8DC5\t0xB74D\n0x8DC6\t0xB74E\n0x8DC7\t0xB74F\n0x8DC8\t0xB750\n0x8DC9\t0xB751\n0x8DCA\t0xB752\n0x8DCB\t0xB753\n0x8DCC\t0xB756\n0x8DCD\t0xB757\n0x8DCE\t0xB758\n0x8DCF\t0xB759\n0x8DD0\t0xB75A\n0x8DD1\t0xB75B\n0x8DD2\t0xB75C\n0x8DD3\t0xB75D\n0x8DD4\t0xB75E\n0x8DD5\t0xB75F\n0x8DD6\t0xB761\n0x8DD7\t0xB762\n0x8DD8\t0xB763\n0x8DD9\t0xB765\n0x8DDA\t0xB766\n0x8DDB\t0xB767\n0x8DDC\t0xB769\n0x8DDD\t0xB76A\n0x8DDE\t0xB76B\n0x8DDF\t0xB76C\n0x8DE0\t0xB76D\n0x8DE1\t0xB76E\n0x8DE2\t0xB76F\n0x8DE3\t0xB772\n0x8DE4\t0xB774\n0x8DE5\t0xB776\n0x8DE6\t0xB777\n0x8DE7\t0xB778\n0x8DE8\t0xB779\n0x8DE9\t0xB77A\n0x8DEA\t0xB77B\n0x8DEB\t0xB77E\n0x8DEC\t0xB77F\n0x8DED\t0xB781\n0x8DEE\t0xB782\n0x8DEF\t0xB783\n0x8DF0\t0xB785\n0x8DF1\t0xB786\n0x8DF2\t0xB787\n0x8DF3\t0xB788\n0x8DF4\t0xB789\n0x8DF5\t0xB78A\n0x8DF6\t0xB78B\n0x8DF7\t0xB78E\n0x8DF8\t0xB793\n0x8DF9\t0xB794\n0x8DFA\t0xB795\n0x8DFB\t0xB79A\n0x8DFC\t0xB79B\n0x8DFD\t0xB79D\n0x8DFE\t0xB79E\n0x8E41\t0xB79F\n0x8E42\t0xB7A1\n0x8E43\t0xB7A2\n0x8E44\t0xB7A3\n0x8E45\t0xB7A4\n0x8E46\t0xB7A5\n0x8E47\t0xB7A6\n0x8E48\t0xB7A7\n0x8E49\t0xB7AA\n0x8E4A\t0xB7AE\n0x8E4B\t0xB7AF\n0x8E4C\t0xB7B0\n0x8E4D\t0xB7B1\n0x8E4E\t0xB7B2\n0x8E4F\t0xB7B3\n0x8E50\t0xB7B6\n0x8E51\t0xB7B7\n0x8E52\t0xB7B9\n0x8E53\t0xB7BA\n0x8E54\t0xB7BB\n0x8E55\t0xB7BC\n0x8E56\t0xB7BD\n0x8E57\t0xB7BE\n0x8E58\t0xB7BF\n0x8E59\t0xB7C0\n0x8E5A\t0xB7C1\n0x8E61\t0xB7C2\n0x8E62\t0xB7C3\n0x8E63\t0xB7C4\n0x8E64\t0xB7C5\n0x8E65\t0xB7C6\n0x8E66\t0xB7C8\n0x8E67\t0xB7CA\n0x8E68\t0xB7CB\n0x8E69\t0xB7CC\n0x8E6A\t0xB7CD\n0x8E6B\t0xB7CE\n0x8E6C\t0xB7CF\n0x8E6D\t0xB7D0\n0x8E6E\t0xB7D1\n0x8E6F\t0xB7D2\n0x8E70\t0xB7D3\n0x8E71\t0xB7D4\n0x8E72\t0xB7D5\n0x8E73\t0xB7D6\n0x8E74\t0xB7D7\n0x8E75\t0xB7D8\n0x8E76\t0xB7D9\n0x8E77\t0xB7DA\n0x8E78\t0xB7DB\n0x8E79\t0xB7DC\n0x8E7A\t0xB7DD\n0x8E81\t0xB7DE\n0x8E82\t0xB7DF\n0x8E83\t0xB7E0\n0x8E84\t0xB7E1\n0x8E85\t0xB7E2\n0x8E86\t0xB7E3\n0x8E87\t0xB7E4\n0x8E88\t0xB7E5\n0x8E89\t0xB7E6\n0x8E8A\t0xB7E7\n0x8E8B\t0xB7E8\n0x8E8C\t0xB7E9\n0x8E8D\t0xB7EA\n0x8E8E\t0xB7EB\n0x8E8F\t0xB7EE\n0x8E90\t0xB7EF\n0x8E91\t0xB7F1\n0x8E92\t0xB7F2\n0x8E93\t0xB7F3\n0x8E94\t0xB7F5\n0x8E95\t0xB7F6\n0x8E96\t0xB7F7\n0x8E97\t0xB7F8\n0x8E98\t0xB7F9\n0x8E99\t0xB7FA\n0x8E9A\t0xB7FB\n0x8E9B\t0xB7FE\n0x8E9C\t0xB802\n0x8E9D\t0xB803\n0x8E9E\t0xB804\n0x8E9F\t0xB805\n0x8EA0\t0xB806\n0x8EA1\t0xB80A\n0x8EA2\t0xB80B\n0x8EA3\t0xB80D\n0x8EA4\t0xB80E\n0x8EA5\t0xB80F\n0x8EA6\t0xB811\n0x8EA7\t0xB812\n0x8EA8\t0xB813\n0x8EA9\t0xB814\n0x8EAA\t0xB815\n0x8EAB\t0xB816\n0x8EAC\t0xB817\n0x8EAD\t0xB81A\n0x8EAE\t0xB81C\n0x8EAF\t0xB81E\n0x8EB0\t0xB81F\n0x8EB1\t0xB820\n0x8EB2\t0xB821\n0x8EB3\t0xB822\n0x8EB4\t0xB823\n0x8EB5\t0xB826\n0x8EB6\t0xB827\n0x8EB7\t0xB829\n0x8EB8\t0xB82A\n0x8EB9\t0xB82B\n0x8EBA\t0xB82D\n0x8EBB\t0xB82E\n0x8EBC\t0xB82F\n0x8EBD\t0xB830\n0x8EBE\t0xB831\n0x8EBF\t0xB832\n0x8EC0\t0xB833\n0x8EC1\t0xB836\n0x8EC2\t0xB83A\n0x8EC3\t0xB83B\n0x8EC4\t0xB83C\n0x8EC5\t0xB83D\n0x8EC6\t0xB83E\n0x8EC7\t0xB83F\n0x8EC8\t0xB841\n0x8EC9\t0xB842\n0x8ECA\t0xB843\n0x8ECB\t0xB845\n0x8ECC\t0xB846\n0x8ECD\t0xB847\n0x8ECE\t0xB848\n0x8ECF\t0xB849\n0x8ED0\t0xB84A\n0x8ED1\t0xB84B\n0x8ED2\t0xB84C\n0x8ED3\t0xB84D\n0x8ED4\t0xB84E\n0x8ED5\t0xB84F\n0x8ED6\t0xB850\n0x8ED7\t0xB852\n0x8ED8\t0xB854\n0x8ED9\t0xB855\n0x8EDA\t0xB856\n0x8EDB\t0xB857\n0x8EDC\t0xB858\n0x8EDD\t0xB859\n0x8EDE\t0xB85A\n0x8EDF\t0xB85B\n0x8EE0\t0xB85E\n0x8EE1\t0xB85F\n0x8EE2\t0xB861\n0x8EE3\t0xB862\n0x8EE4\t0xB863\n0x8EE5\t0xB865\n0x8EE6\t0xB866\n0x8EE7\t0xB867\n0x8EE8\t0xB868\n0x8EE9\t0xB869\n0x8EEA\t0xB86A\n0x8EEB\t0xB86B\n0x8EEC\t0xB86E\n0x8EED\t0xB870\n0x8EEE\t0xB872\n0x8EEF\t0xB873\n0x8EF0\t0xB874\n0x8EF1\t0xB875\n0x8EF2\t0xB876\n0x8EF3\t0xB877\n0x8EF4\t0xB879\n0x8EF5\t0xB87A\n0x8EF6\t0xB87B\n0x8EF7\t0xB87D\n0x8EF8\t0xB87E\n0x8EF9\t0xB87F\n0x8EFA\t0xB880\n0x8EFB\t0xB881\n0x8EFC\t0xB882\n0x8EFD\t0xB883\n0x8EFE\t0xB884\n0x8F41\t0xB885\n0x8F42\t0xB886\n0x8F43\t0xB887\n0x8F44\t0xB888\n0x8F45\t0xB889\n0x8F46\t0xB88A\n0x8F47\t0xB88B\n0x8F48\t0xB88C\n0x8F49\t0xB88E\n0x8F4A\t0xB88F\n0x8F4B\t0xB890\n0x8F4C\t0xB891\n0x8F4D\t0xB892\n0x8F4E\t0xB893\n0x8F4F\t0xB894\n0x8F50\t0xB895\n0x8F51\t0xB896\n0x8F52\t0xB897\n0x8F53\t0xB898\n0x8F54\t0xB899\n0x8F55\t0xB89A\n0x8F56\t0xB89B\n0x8F57\t0xB89C\n0x8F58\t0xB89D\n0x8F59\t0xB89E\n0x8F5A\t0xB89F\n0x8F61\t0xB8A0\n0x8F62\t0xB8A1\n0x8F63\t0xB8A2\n0x8F64\t0xB8A3\n0x8F65\t0xB8A4\n0x8F66\t0xB8A5\n0x8F67\t0xB8A6\n0x8F68\t0xB8A7\n0x8F69\t0xB8A9\n0x8F6A\t0xB8AA\n0x8F6B\t0xB8AB\n0x8F6C\t0xB8AC\n0x8F6D\t0xB8AD\n0x8F6E\t0xB8AE\n0x8F6F\t0xB8AF\n0x8F70\t0xB8B1\n0x8F71\t0xB8B2\n0x8F72\t0xB8B3\n0x8F73\t0xB8B5\n0x8F74\t0xB8B6\n0x8F75\t0xB8B7\n0x8F76\t0xB8B9\n0x8F77\t0xB8BA\n0x8F78\t0xB8BB\n0x8F79\t0xB8BC\n0x8F7A\t0xB8BD\n0x8F81\t0xB8BE\n0x8F82\t0xB8BF\n0x8F83\t0xB8C2\n0x8F84\t0xB8C4\n0x8F85\t0xB8C6\n0x8F86\t0xB8C7\n0x8F87\t0xB8C8\n0x8F88\t0xB8C9\n0x8F89\t0xB8CA\n0x8F8A\t0xB8CB\n0x8F8B\t0xB8CD\n0x8F8C\t0xB8CE\n0x8F8D\t0xB8CF\n0x8F8E\t0xB8D1\n0x8F8F\t0xB8D2\n0x8F90\t0xB8D3\n0x8F91\t0xB8D5\n0x8F92\t0xB8D6\n0x8F93\t0xB8D7\n0x8F94\t0xB8D8\n0x8F95\t0xB8D9\n0x8F96\t0xB8DA\n0x8F97\t0xB8DB\n0x8F98\t0xB8DC\n0x8F99\t0xB8DE\n0x8F9A\t0xB8E0\n0x8F9B\t0xB8E2\n0x8F9C\t0xB8E3\n0x8F9D\t0xB8E4\n0x8F9E\t0xB8E5\n0x8F9F\t0xB8E6\n0x8FA0\t0xB8E7\n0x8FA1\t0xB8EA\n0x8FA2\t0xB8EB\n0x8FA3\t0xB8ED\n0x8FA4\t0xB8EE\n0x8FA5\t0xB8EF\n0x8FA6\t0xB8F1\n0x8FA7\t0xB8F2\n0x8FA8\t0xB8F3\n0x8FA9\t0xB8F4\n0x8FAA\t0xB8F5\n0x8FAB\t0xB8F6\n0x8FAC\t0xB8F7\n0x8FAD\t0xB8FA\n0x8FAE\t0xB8FC\n0x8FAF\t0xB8FE\n0x8FB0\t0xB8FF\n0x8FB1\t0xB900\n0x8FB2\t0xB901\n0x8FB3\t0xB902\n0x8FB4\t0xB903\n0x8FB5\t0xB905\n0x8FB6\t0xB906\n0x8FB7\t0xB907\n0x8FB8\t0xB908\n0x8FB9\t0xB909\n0x8FBA\t0xB90A\n0x8FBB\t0xB90B\n0x8FBC\t0xB90C\n0x8FBD\t0xB90D\n0x8FBE\t0xB90E\n0x8FBF\t0xB90F\n0x8FC0\t0xB910\n0x8FC1\t0xB911\n0x8FC2\t0xB912\n0x8FC3\t0xB913\n0x8FC4\t0xB914\n0x8FC5\t0xB915\n0x8FC6\t0xB916\n0x8FC7\t0xB917\n0x8FC8\t0xB919\n0x8FC9\t0xB91A\n0x8FCA\t0xB91B\n0x8FCB\t0xB91C\n0x8FCC\t0xB91D\n0x8FCD\t0xB91E\n0x8FCE\t0xB91F\n0x8FCF\t0xB921\n0x8FD0\t0xB922\n0x8FD1\t0xB923\n0x8FD2\t0xB924\n0x8FD3\t0xB925\n0x8FD4\t0xB926\n0x8FD5\t0xB927\n0x8FD6\t0xB928\n0x8FD7\t0xB929\n0x8FD8\t0xB92A\n0x8FD9\t0xB92B\n0x8FDA\t0xB92C\n0x8FDB\t0xB92D\n0x8FDC\t0xB92E\n0x8FDD\t0xB92F\n0x8FDE\t0xB930\n0x8FDF\t0xB931\n0x8FE0\t0xB932\n0x8FE1\t0xB933\n0x8FE2\t0xB934\n0x8FE3\t0xB935\n0x8FE4\t0xB936\n0x8FE5\t0xB937\n0x8FE6\t0xB938\n0x8FE7\t0xB939\n0x8FE8\t0xB93A\n0x8FE9\t0xB93B\n0x8FEA\t0xB93E\n0x8FEB\t0xB93F\n0x8FEC\t0xB941\n0x8FED\t0xB942\n0x8FEE\t0xB943\n0x8FEF\t0xB945\n0x8FF0\t0xB946\n0x8FF1\t0xB947\n0x8FF2\t0xB948\n0x8FF3\t0xB949\n0x8FF4\t0xB94A\n0x8FF5\t0xB94B\n0x8FF6\t0xB94D\n0x8FF7\t0xB94E\n0x8FF8\t0xB950\n0x8FF9\t0xB952\n0x8FFA\t0xB953\n0x8FFB\t0xB954\n0x8FFC\t0xB955\n0x8FFD\t0xB956\n0x8FFE\t0xB957\n0x9041\t0xB95A\n0x9042\t0xB95B\n0x9043\t0xB95D\n0x9044\t0xB95E\n0x9045\t0xB95F\n0x9046\t0xB961\n0x9047\t0xB962\n0x9048\t0xB963\n0x9049\t0xB964\n0x904A\t0xB965\n0x904B\t0xB966\n0x904C\t0xB967\n0x904D\t0xB96A\n0x904E\t0xB96C\n0x904F\t0xB96E\n0x9050\t0xB96F\n0x9051\t0xB970\n0x9052\t0xB971\n0x9053\t0xB972\n0x9054\t0xB973\n0x9055\t0xB976\n0x9056\t0xB977\n0x9057\t0xB979\n0x9058\t0xB97A\n0x9059\t0xB97B\n0x905A\t0xB97D\n0x9061\t0xB97E\n0x9062\t0xB97F\n0x9063\t0xB980\n0x9064\t0xB981\n0x9065\t0xB982\n0x9066\t0xB983\n0x9067\t0xB986\n0x9068\t0xB988\n0x9069\t0xB98B\n0x906A\t0xB98C\n0x906B\t0xB98F\n0x906C\t0xB990\n0x906D\t0xB991\n0x906E\t0xB992\n0x906F\t0xB993\n0x9070\t0xB994\n0x9071\t0xB995\n0x9072\t0xB996\n0x9073\t0xB997\n0x9074\t0xB998\n0x9075\t0xB999\n0x9076\t0xB99A\n0x9077\t0xB99B\n0x9078\t0xB99C\n0x9079\t0xB99D\n0x907A\t0xB99E\n0x9081\t0xB99F\n0x9082\t0xB9A0\n0x9083\t0xB9A1\n0x9084\t0xB9A2\n0x9085\t0xB9A3\n0x9086\t0xB9A4\n0x9087\t0xB9A5\n0x9088\t0xB9A6\n0x9089\t0xB9A7\n0x908A\t0xB9A8\n0x908B\t0xB9A9\n0x908C\t0xB9AA\n0x908D\t0xB9AB\n0x908E\t0xB9AE\n0x908F\t0xB9AF\n0x9090\t0xB9B1\n0x9091\t0xB9B2\n0x9092\t0xB9B3\n0x9093\t0xB9B5\n0x9094\t0xB9B6\n0x9095\t0xB9B7\n0x9096\t0xB9B8\n0x9097\t0xB9B9\n0x9098\t0xB9BA\n0x9099\t0xB9BB\n0x909A\t0xB9BE\n0x909B\t0xB9C0\n0x909C\t0xB9C2\n0x909D\t0xB9C3\n0x909E\t0xB9C4\n0x909F\t0xB9C5\n0x90A0\t0xB9C6\n0x90A1\t0xB9C7\n0x90A2\t0xB9CA\n0x90A3\t0xB9CB\n0x90A4\t0xB9CD\n0x90A5\t0xB9D3\n0x90A6\t0xB9D4\n0x90A7\t0xB9D5\n0x90A8\t0xB9D6\n0x90A9\t0xB9D7\n0x90AA\t0xB9DA\n0x90AB\t0xB9DC\n0x90AC\t0xB9DF\n0x90AD\t0xB9E0\n0x90AE\t0xB9E2\n0x90AF\t0xB9E6\n0x90B0\t0xB9E7\n0x90B1\t0xB9E9\n0x90B2\t0xB9EA\n0x90B3\t0xB9EB\n0x90B4\t0xB9ED\n0x90B5\t0xB9EE\n0x90B6\t0xB9EF\n0x90B7\t0xB9F0\n0x90B8\t0xB9F1\n0x90B9\t0xB9F2\n0x90BA\t0xB9F3\n0x90BB\t0xB9F6\n0x90BC\t0xB9FB\n0x90BD\t0xB9FC\n0x90BE\t0xB9FD\n0x90BF\t0xB9FE\n0x90C0\t0xB9FF\n0x90C1\t0xBA02\n0x90C2\t0xBA03\n0x90C3\t0xBA04\n0x90C4\t0xBA05\n0x90C5\t0xBA06\n0x90C6\t0xBA07\n0x90C7\t0xBA09\n0x90C8\t0xBA0A\n0x90C9\t0xBA0B\n0x90CA\t0xBA0C\n0x90CB\t0xBA0D\n0x90CC\t0xBA0E\n0x90CD\t0xBA0F\n0x90CE\t0xBA10\n0x90CF\t0xBA11\n0x90D0\t0xBA12\n0x90D1\t0xBA13\n0x90D2\t0xBA14\n0x90D3\t0xBA16\n0x90D4\t0xBA17\n0x90D5\t0xBA18\n0x90D6\t0xBA19\n0x90D7\t0xBA1A\n0x90D8\t0xBA1B\n0x90D9\t0xBA1C\n0x90DA\t0xBA1D\n0x90DB\t0xBA1E\n0x90DC\t0xBA1F\n0x90DD\t0xBA20\n0x90DE\t0xBA21\n0x90DF\t0xBA22\n0x90E0\t0xBA23\n0x90E1\t0xBA24\n0x90E2\t0xBA25\n0x90E3\t0xBA26\n0x90E4\t0xBA27\n0x90E5\t0xBA28\n0x90E6\t0xBA29\n0x90E7\t0xBA2A\n0x90E8\t0xBA2B\n0x90E9\t0xBA2C\n0x90EA\t0xBA2D\n0x90EB\t0xBA2E\n0x90EC\t0xBA2F\n0x90ED\t0xBA30\n0x90EE\t0xBA31\n0x90EF\t0xBA32\n0x90F0\t0xBA33\n0x90F1\t0xBA34\n0x90F2\t0xBA35\n0x90F3\t0xBA36\n0x90F4\t0xBA37\n0x90F5\t0xBA3A\n0x90F6\t0xBA3B\n0x90F7\t0xBA3D\n0x90F8\t0xBA3E\n0x90F9\t0xBA3F\n0x90FA\t0xBA41\n0x90FB\t0xBA43\n0x90FC\t0xBA44\n0x90FD\t0xBA45\n0x90FE\t0xBA46\n0x9141\t0xBA47\n0x9142\t0xBA4A\n0x9143\t0xBA4C\n0x9144\t0xBA4F\n0x9145\t0xBA50\n0x9146\t0xBA51\n0x9147\t0xBA52\n0x9148\t0xBA56\n0x9149\t0xBA57\n0x914A\t0xBA59\n0x914B\t0xBA5A\n0x914C\t0xBA5B\n0x914D\t0xBA5D\n0x914E\t0xBA5E\n0x914F\t0xBA5F\n0x9150\t0xBA60\n0x9151\t0xBA61\n0x9152\t0xBA62\n0x9153\t0xBA63\n0x9154\t0xBA66\n0x9155\t0xBA6A\n0x9156\t0xBA6B\n0x9157\t0xBA6C\n0x9158\t0xBA6D\n0x9159\t0xBA6E\n0x915A\t0xBA6F\n0x9161\t0xBA72\n0x9162\t0xBA73\n0x9163\t0xBA75\n0x9164\t0xBA76\n0x9165\t0xBA77\n0x9166\t0xBA79\n0x9167\t0xBA7A\n0x9168\t0xBA7B\n0x9169\t0xBA7C\n0x916A\t0xBA7D\n0x916B\t0xBA7E\n0x916C\t0xBA7F\n0x916D\t0xBA80\n0x916E\t0xBA81\n0x916F\t0xBA82\n0x9170\t0xBA86\n0x9171\t0xBA88\n0x9172\t0xBA89\n0x9173\t0xBA8A\n0x9174\t0xBA8B\n0x9175\t0xBA8D\n0x9176\t0xBA8E\n0x9177\t0xBA8F\n0x9178\t0xBA90\n0x9179\t0xBA91\n0x917A\t0xBA92\n0x9181\t0xBA93\n0x9182\t0xBA94\n0x9183\t0xBA95\n0x9184\t0xBA96\n0x9185\t0xBA97\n0x9186\t0xBA98\n0x9187\t0xBA99\n0x9188\t0xBA9A\n0x9189\t0xBA9B\n0x918A\t0xBA9C\n0x918B\t0xBA9D\n0x918C\t0xBA9E\n0x918D\t0xBA9F\n0x918E\t0xBAA0\n0x918F\t0xBAA1\n0x9190\t0xBAA2\n0x9191\t0xBAA3\n0x9192\t0xBAA4\n0x9193\t0xBAA5\n0x9194\t0xBAA6\n0x9195\t0xBAA7\n0x9196\t0xBAAA\n0x9197\t0xBAAD\n0x9198\t0xBAAE\n0x9199\t0xBAAF\n0x919A\t0xBAB1\n0x919B\t0xBAB3\n0x919C\t0xBAB4\n0x919D\t0xBAB5\n0x919E\t0xBAB6\n0x919F\t0xBAB7\n0x91A0\t0xBABA\n0x91A1\t0xBABC\n0x91A2\t0xBABE\n0x91A3\t0xBABF\n0x91A4\t0xBAC0\n0x91A5\t0xBAC1\n0x91A6\t0xBAC2\n0x91A7\t0xBAC3\n0x91A8\t0xBAC5\n0x91A9\t0xBAC6\n0x91AA\t0xBAC7\n0x91AB\t0xBAC9\n0x91AC\t0xBACA\n0x91AD\t0xBACB\n0x91AE\t0xBACC\n0x91AF\t0xBACD\n0x91B0\t0xBACE\n0x91B1\t0xBACF\n0x91B2\t0xBAD0\n0x91B3\t0xBAD1\n0x91B4\t0xBAD2\n0x91B5\t0xBAD3\n0x91B6\t0xBAD4\n0x91B7\t0xBAD5\n0x91B8\t0xBAD6\n0x91B9\t0xBAD7\n0x91BA\t0xBADA\n0x91BB\t0xBADB\n0x91BC\t0xBADC\n0x91BD\t0xBADD\n0x91BE\t0xBADE\n0x91BF\t0xBADF\n0x91C0\t0xBAE0\n0x91C1\t0xBAE1\n0x91C2\t0xBAE2\n0x91C3\t0xBAE3\n0x91C4\t0xBAE4\n0x91C5\t0xBAE5\n0x91C6\t0xBAE6\n0x91C7\t0xBAE7\n0x91C8\t0xBAE8\n0x91C9\t0xBAE9\n0x91CA\t0xBAEA\n0x91CB\t0xBAEB\n0x91CC\t0xBAEC\n0x91CD\t0xBAED\n0x91CE\t0xBAEE\n0x91CF\t0xBAEF\n0x91D0\t0xBAF0\n0x91D1\t0xBAF1\n0x91D2\t0xBAF2\n0x91D3\t0xBAF3\n0x91D4\t0xBAF4\n0x91D5\t0xBAF5\n0x91D6\t0xBAF6\n0x91D7\t0xBAF7\n0x91D8\t0xBAF8\n0x91D9\t0xBAF9\n0x91DA\t0xBAFA\n0x91DB\t0xBAFB\n0x91DC\t0xBAFD\n0x91DD\t0xBAFE\n0x91DE\t0xBAFF\n0x91DF\t0xBB01\n0x91E0\t0xBB02\n0x91E1\t0xBB03\n0x91E2\t0xBB05\n0x91E3\t0xBB06\n0x91E4\t0xBB07\n0x91E5\t0xBB08\n0x91E6\t0xBB09\n0x91E7\t0xBB0A\n0x91E8\t0xBB0B\n0x91E9\t0xBB0C\n0x91EA\t0xBB0E\n0x91EB\t0xBB10\n0x91EC\t0xBB12\n0x91ED\t0xBB13\n0x91EE\t0xBB14\n0x91EF\t0xBB15\n0x91F0\t0xBB16\n0x91F1\t0xBB17\n0x91F2\t0xBB19\n0x91F3\t0xBB1A\n0x91F4\t0xBB1B\n0x91F5\t0xBB1D\n0x91F6\t0xBB1E\n0x91F7\t0xBB1F\n0x91F8\t0xBB21\n0x91F9\t0xBB22\n0x91FA\t0xBB23\n0x91FB\t0xBB24\n0x91FC\t0xBB25\n0x91FD\t0xBB26\n0x91FE\t0xBB27\n0x9241\t0xBB28\n0x9242\t0xBB2A\n0x9243\t0xBB2C\n0x9244\t0xBB2D\n0x9245\t0xBB2E\n0x9246\t0xBB2F\n0x9247\t0xBB30\n0x9248\t0xBB31\n0x9249\t0xBB32\n0x924A\t0xBB33\n0x924B\t0xBB37\n0x924C\t0xBB39\n0x924D\t0xBB3A\n0x924E\t0xBB3F\n0x924F\t0xBB40\n0x9250\t0xBB41\n0x9251\t0xBB42\n0x9252\t0xBB43\n0x9253\t0xBB46\n0x9254\t0xBB48\n0x9255\t0xBB4A\n0x9256\t0xBB4B\n0x9257\t0xBB4C\n0x9258\t0xBB4E\n0x9259\t0xBB51\n0x925A\t0xBB52\n0x9261\t0xBB53\n0x9262\t0xBB55\n0x9263\t0xBB56\n0x9264\t0xBB57\n0x9265\t0xBB59\n0x9266\t0xBB5A\n0x9267\t0xBB5B\n0x9268\t0xBB5C\n0x9269\t0xBB5D\n0x926A\t0xBB5E\n0x926B\t0xBB5F\n0x926C\t0xBB60\n0x926D\t0xBB62\n0x926E\t0xBB64\n0x926F\t0xBB65\n0x9270\t0xBB66\n0x9271\t0xBB67\n0x9272\t0xBB68\n0x9273\t0xBB69\n0x9274\t0xBB6A\n0x9275\t0xBB6B\n0x9276\t0xBB6D\n0x9277\t0xBB6E\n0x9278\t0xBB6F\n0x9279\t0xBB70\n0x927A\t0xBB71\n0x9281\t0xBB72\n0x9282\t0xBB73\n0x9283\t0xBB74\n0x9284\t0xBB75\n0x9285\t0xBB76\n0x9286\t0xBB77\n0x9287\t0xBB78\n0x9288\t0xBB79\n0x9289\t0xBB7A\n0x928A\t0xBB7B\n0x928B\t0xBB7C\n0x928C\t0xBB7D\n0x928D\t0xBB7E\n0x928E\t0xBB7F\n0x928F\t0xBB80\n0x9290\t0xBB81\n0x9291\t0xBB82\n0x9292\t0xBB83\n0x9293\t0xBB84\n0x9294\t0xBB85\n0x9295\t0xBB86\n0x9296\t0xBB87\n0x9297\t0xBB89\n0x9298\t0xBB8A\n0x9299\t0xBB8B\n0x929A\t0xBB8D\n0x929B\t0xBB8E\n0x929C\t0xBB8F\n0x929D\t0xBB91\n0x929E\t0xBB92\n0x929F\t0xBB93\n0x92A0\t0xBB94\n0x92A1\t0xBB95\n0x92A2\t0xBB96\n0x92A3\t0xBB97\n0x92A4\t0xBB98\n0x92A5\t0xBB99\n0x92A6\t0xBB9A\n0x92A7\t0xBB9B\n0x92A8\t0xBB9C\n0x92A9\t0xBB9D\n0x92AA\t0xBB9E\n0x92AB\t0xBB9F\n0x92AC\t0xBBA0\n0x92AD\t0xBBA1\n0x92AE\t0xBBA2\n0x92AF\t0xBBA3\n0x92B0\t0xBBA5\n0x92B1\t0xBBA6\n0x92B2\t0xBBA7\n0x92B3\t0xBBA9\n0x92B4\t0xBBAA\n0x92B5\t0xBBAB\n0x92B6\t0xBBAD\n0x92B7\t0xBBAE\n0x92B8\t0xBBAF\n0x92B9\t0xBBB0\n0x92BA\t0xBBB1\n0x92BB\t0xBBB2\n0x92BC\t0xBBB3\n0x92BD\t0xBBB5\n0x92BE\t0xBBB6\n0x92BF\t0xBBB8\n0x92C0\t0xBBB9\n0x92C1\t0xBBBA\n0x92C2\t0xBBBB\n0x92C3\t0xBBBC\n0x92C4\t0xBBBD\n0x92C5\t0xBBBE\n0x92C6\t0xBBBF\n0x92C7\t0xBBC1\n0x92C8\t0xBBC2\n0x92C9\t0xBBC3\n0x92CA\t0xBBC5\n0x92CB\t0xBBC6\n0x92CC\t0xBBC7\n0x92CD\t0xBBC9\n0x92CE\t0xBBCA\n0x92CF\t0xBBCB\n0x92D0\t0xBBCC\n0x92D1\t0xBBCD\n0x92D2\t0xBBCE\n0x92D3\t0xBBCF\n0x92D4\t0xBBD1\n0x92D5\t0xBBD2\n0x92D6\t0xBBD4\n0x92D7\t0xBBD5\n0x92D8\t0xBBD6\n0x92D9\t0xBBD7\n0x92DA\t0xBBD8\n0x92DB\t0xBBD9\n0x92DC\t0xBBDA\n0x92DD\t0xBBDB\n0x92DE\t0xBBDC\n0x92DF\t0xBBDD\n0x92E0\t0xBBDE\n0x92E1\t0xBBDF\n0x92E2\t0xBBE0\n0x92E3\t0xBBE1\n0x92E4\t0xBBE2\n0x92E5\t0xBBE3\n0x92E6\t0xBBE4\n0x92E7\t0xBBE5\n0x92E8\t0xBBE6\n0x92E9\t0xBBE7\n0x92EA\t0xBBE8\n0x92EB\t0xBBE9\n0x92EC\t0xBBEA\n0x92ED\t0xBBEB\n0x92EE\t0xBBEC\n0x92EF\t0xBBED\n0x92F0\t0xBBEE\n0x92F1\t0xBBEF\n0x92F2\t0xBBF0\n0x92F3\t0xBBF1\n0x92F4\t0xBBF2\n0x92F5\t0xBBF3\n0x92F6\t0xBBF4\n0x92F7\t0xBBF5\n0x92F8\t0xBBF6\n0x92F9\t0xBBF7\n0x92FA\t0xBBFA\n0x92FB\t0xBBFB\n0x92FC\t0xBBFD\n0x92FD\t0xBBFE\n0x92FE\t0xBC01\n0x9341\t0xBC03\n0x9342\t0xBC04\n0x9343\t0xBC05\n0x9344\t0xBC06\n0x9345\t0xBC07\n0x9346\t0xBC0A\n0x9347\t0xBC0E\n0x9348\t0xBC10\n0x9349\t0xBC12\n0x934A\t0xBC13\n0x934B\t0xBC19\n0x934C\t0xBC1A\n0x934D\t0xBC20\n0x934E\t0xBC21\n0x934F\t0xBC22\n0x9350\t0xBC23\n0x9351\t0xBC26\n0x9352\t0xBC28\n0x9353\t0xBC2A\n0x9354\t0xBC2B\n0x9355\t0xBC2C\n0x9356\t0xBC2E\n0x9357\t0xBC2F\n0x9358\t0xBC32\n0x9359\t0xBC33\n0x935A\t0xBC35\n0x9361\t0xBC36\n0x9362\t0xBC37\n0x9363\t0xBC39\n0x9364\t0xBC3A\n0x9365\t0xBC3B\n0x9366\t0xBC3C\n0x9367\t0xBC3D\n0x9368\t0xBC3E\n0x9369\t0xBC3F\n0x936A\t0xBC42\n0x936B\t0xBC46\n0x936C\t0xBC47\n0x936D\t0xBC48\n0x936E\t0xBC4A\n0x936F\t0xBC4B\n0x9370\t0xBC4E\n0x9371\t0xBC4F\n0x9372\t0xBC51\n0x9373\t0xBC52\n0x9374\t0xBC53\n0x9375\t0xBC54\n0x9376\t0xBC55\n0x9377\t0xBC56\n0x9378\t0xBC57\n0x9379\t0xBC58\n0x937A\t0xBC59\n0x9381\t0xBC5A\n0x9382\t0xBC5B\n0x9383\t0xBC5C\n0x9384\t0xBC5E\n0x9385\t0xBC5F\n0x9386\t0xBC60\n0x9387\t0xBC61\n0x9388\t0xBC62\n0x9389\t0xBC63\n0x938A\t0xBC64\n0x938B\t0xBC65\n0x938C\t0xBC66\n0x938D\t0xBC67\n0x938E\t0xBC68\n0x938F\t0xBC69\n0x9390\t0xBC6A\n0x9391\t0xBC6B\n0x9392\t0xBC6C\n0x9393\t0xBC6D\n0x9394\t0xBC6E\n0x9395\t0xBC6F\n0x9396\t0xBC70\n0x9397\t0xBC71\n0x9398\t0xBC72\n0x9399\t0xBC73\n0x939A\t0xBC74\n0x939B\t0xBC75\n0x939C\t0xBC76\n0x939D\t0xBC77\n0x939E\t0xBC78\n0x939F\t0xBC79\n0x93A0\t0xBC7A\n0x93A1\t0xBC7B\n0x93A2\t0xBC7C\n0x93A3\t0xBC7D\n0x93A4\t0xBC7E\n0x93A5\t0xBC7F\n0x93A6\t0xBC80\n0x93A7\t0xBC81\n0x93A8\t0xBC82\n0x93A9\t0xBC83\n0x93AA\t0xBC86\n0x93AB\t0xBC87\n0x93AC\t0xBC89\n0x93AD\t0xBC8A\n0x93AE\t0xBC8D\n0x93AF\t0xBC8F\n0x93B0\t0xBC90\n0x93B1\t0xBC91\n0x93B2\t0xBC92\n0x93B3\t0xBC93\n0x93B4\t0xBC96\n0x93B5\t0xBC98\n0x93B6\t0xBC9B\n0x93B7\t0xBC9C\n0x93B8\t0xBC9D\n0x93B9\t0xBC9E\n0x93BA\t0xBC9F\n0x93BB\t0xBCA2\n0x93BC\t0xBCA3\n0x93BD\t0xBCA5\n0x93BE\t0xBCA6\n0x93BF\t0xBCA9\n0x93C0\t0xBCAA\n0x93C1\t0xBCAB\n0x93C2\t0xBCAC\n0x93C3\t0xBCAD\n0x93C4\t0xBCAE\n0x93C5\t0xBCAF\n0x93C6\t0xBCB2\n0x93C7\t0xBCB6\n0x93C8\t0xBCB7\n0x93C9\t0xBCB8\n0x93CA\t0xBCB9\n0x93CB\t0xBCBA\n0x93CC\t0xBCBB\n0x93CD\t0xBCBE\n0x93CE\t0xBCBF\n0x93CF\t0xBCC1\n0x93D0\t0xBCC2\n0x93D1\t0xBCC3\n0x93D2\t0xBCC5\n0x93D3\t0xBCC6\n0x93D4\t0xBCC7\n0x93D5\t0xBCC8\n0x93D6\t0xBCC9\n0x93D7\t0xBCCA\n0x93D8\t0xBCCB\n0x93D9\t0xBCCC\n0x93DA\t0xBCCE\n0x93DB\t0xBCD2\n0x93DC\t0xBCD3\n0x93DD\t0xBCD4\n0x93DE\t0xBCD6\n0x93DF\t0xBCD7\n0x93E0\t0xBCD9\n0x93E1\t0xBCDA\n0x93E2\t0xBCDB\n0x93E3\t0xBCDD\n0x93E4\t0xBCDE\n0x93E5\t0xBCDF\n0x93E6\t0xBCE0\n0x93E7\t0xBCE1\n0x93E8\t0xBCE2\n0x93E9\t0xBCE3\n0x93EA\t0xBCE4\n0x93EB\t0xBCE5\n0x93EC\t0xBCE6\n0x93ED\t0xBCE7\n0x93EE\t0xBCE8\n0x93EF\t0xBCE9\n0x93F0\t0xBCEA\n0x93F1\t0xBCEB\n0x93F2\t0xBCEC\n0x93F3\t0xBCED\n0x93F4\t0xBCEE\n0x93F5\t0xBCEF\n0x93F6\t0xBCF0\n0x93F7\t0xBCF1\n0x93F8\t0xBCF2\n0x93F9\t0xBCF3\n0x93FA\t0xBCF7\n0x93FB\t0xBCF9\n0x93FC\t0xBCFA\n0x93FD\t0xBCFB\n0x93FE\t0xBCFD\n0x9441\t0xBCFE\n0x9442\t0xBCFF\n0x9443\t0xBD00\n0x9444\t0xBD01\n0x9445\t0xBD02\n0x9446\t0xBD03\n0x9447\t0xBD06\n0x9448\t0xBD08\n0x9449\t0xBD0A\n0x944A\t0xBD0B\n0x944B\t0xBD0C\n0x944C\t0xBD0D\n0x944D\t0xBD0E\n0x944E\t0xBD0F\n0x944F\t0xBD11\n0x9450\t0xBD12\n0x9451\t0xBD13\n0x9452\t0xBD15\n0x9453\t0xBD16\n0x9454\t0xBD17\n0x9455\t0xBD18\n0x9456\t0xBD19\n0x9457\t0xBD1A\n0x9458\t0xBD1B\n0x9459\t0xBD1C\n0x945A\t0xBD1D\n0x9461\t0xBD1E\n0x9462\t0xBD1F\n0x9463\t0xBD20\n0x9464\t0xBD21\n0x9465\t0xBD22\n0x9466\t0xBD23\n0x9467\t0xBD25\n0x9468\t0xBD26\n0x9469\t0xBD27\n0x946A\t0xBD28\n0x946B\t0xBD29\n0x946C\t0xBD2A\n0x946D\t0xBD2B\n0x946E\t0xBD2D\n0x946F\t0xBD2E\n0x9470\t0xBD2F\n0x9471\t0xBD30\n0x9472\t0xBD31\n0x9473\t0xBD32\n0x9474\t0xBD33\n0x9475\t0xBD34\n0x9476\t0xBD35\n0x9477\t0xBD36\n0x9478\t0xBD37\n0x9479\t0xBD38\n0x947A\t0xBD39\n0x9481\t0xBD3A\n0x9482\t0xBD3B\n0x9483\t0xBD3C\n0x9484\t0xBD3D\n0x9485\t0xBD3E\n0x9486\t0xBD3F\n0x9487\t0xBD41\n0x9488\t0xBD42\n0x9489\t0xBD43\n0x948A\t0xBD44\n0x948B\t0xBD45\n0x948C\t0xBD46\n0x948D\t0xBD47\n0x948E\t0xBD4A\n0x948F\t0xBD4B\n0x9490\t0xBD4D\n0x9491\t0xBD4E\n0x9492\t0xBD4F\n0x9493\t0xBD51\n0x9494\t0xBD52\n0x9495\t0xBD53\n0x9496\t0xBD54\n0x9497\t0xBD55\n0x9498\t0xBD56\n0x9499\t0xBD57\n0x949A\t0xBD5A\n0x949B\t0xBD5B\n0x949C\t0xBD5C\n0x949D\t0xBD5D\n0x949E\t0xBD5E\n0x949F\t0xBD5F\n0x94A0\t0xBD60\n0x94A1\t0xBD61\n0x94A2\t0xBD62\n0x94A3\t0xBD63\n0x94A4\t0xBD65\n0x94A5\t0xBD66\n0x94A6\t0xBD67\n0x94A7\t0xBD69\n0x94A8\t0xBD6A\n0x94A9\t0xBD6B\n0x94AA\t0xBD6C\n0x94AB\t0xBD6D\n0x94AC\t0xBD6E\n0x94AD\t0xBD6F\n0x94AE\t0xBD70\n0x94AF\t0xBD71\n0x94B0\t0xBD72\n0x94B1\t0xBD73\n0x94B2\t0xBD74\n0x94B3\t0xBD75\n0x94B4\t0xBD76\n0x94B5\t0xBD77\n0x94B6\t0xBD78\n0x94B7\t0xBD79\n0x94B8\t0xBD7A\n0x94B9\t0xBD7B\n0x94BA\t0xBD7C\n0x94BB\t0xBD7D\n0x94BC\t0xBD7E\n0x94BD\t0xBD7F\n0x94BE\t0xBD82\n0x94BF\t0xBD83\n0x94C0\t0xBD85\n0x94C1\t0xBD86\n0x94C2\t0xBD8B\n0x94C3\t0xBD8C\n0x94C4\t0xBD8D\n0x94C5\t0xBD8E\n0x94C6\t0xBD8F\n0x94C7\t0xBD92\n0x94C8\t0xBD94\n0x94C9\t0xBD96\n0x94CA\t0xBD97\n0x94CB\t0xBD98\n0x94CC\t0xBD9B\n0x94CD\t0xBD9D\n0x94CE\t0xBD9E\n0x94CF\t0xBD9F\n0x94D0\t0xBDA0\n0x94D1\t0xBDA1\n0x94D2\t0xBDA2\n0x94D3\t0xBDA3\n0x94D4\t0xBDA5\n0x94D5\t0xBDA6\n0x94D6\t0xBDA7\n0x94D7\t0xBDA8\n0x94D8\t0xBDA9\n0x94D9\t0xBDAA\n0x94DA\t0xBDAB\n0x94DB\t0xBDAC\n0x94DC\t0xBDAD\n0x94DD\t0xBDAE\n0x94DE\t0xBDAF\n0x94DF\t0xBDB1\n0x94E0\t0xBDB2\n0x94E1\t0xBDB3\n0x94E2\t0xBDB4\n0x94E3\t0xBDB5\n0x94E4\t0xBDB6\n0x94E5\t0xBDB7\n0x94E6\t0xBDB9\n0x94E7\t0xBDBA\n0x94E8\t0xBDBB\n0x94E9\t0xBDBC\n0x94EA\t0xBDBD\n0x94EB\t0xBDBE\n0x94EC\t0xBDBF\n0x94ED\t0xBDC0\n0x94EE\t0xBDC1\n0x94EF\t0xBDC2\n0x94F0\t0xBDC3\n0x94F1\t0xBDC4\n0x94F2\t0xBDC5\n0x94F3\t0xBDC6\n0x94F4\t0xBDC7\n0x94F5\t0xBDC8\n0x94F6\t0xBDC9\n0x94F7\t0xBDCA\n0x94F8\t0xBDCB\n0x94F9\t0xBDCC\n0x94FA\t0xBDCD\n0x94FB\t0xBDCE\n0x94FC\t0xBDCF\n0x94FD\t0xBDD0\n0x94FE\t0xBDD1\n0x9541\t0xBDD2\n0x9542\t0xBDD3\n0x9543\t0xBDD6\n0x9544\t0xBDD7\n0x9545\t0xBDD9\n0x9546\t0xBDDA\n0x9547\t0xBDDB\n0x9548\t0xBDDD\n0x9549\t0xBDDE\n0x954A\t0xBDDF\n0x954B\t0xBDE0\n0x954C\t0xBDE1\n0x954D\t0xBDE2\n0x954E\t0xBDE3\n0x954F\t0xBDE4\n0x9550\t0xBDE5\n0x9551\t0xBDE6\n0x9552\t0xBDE7\n0x9553\t0xBDE8\n0x9554\t0xBDEA\n0x9555\t0xBDEB\n0x9556\t0xBDEC\n0x9557\t0xBDED\n0x9558\t0xBDEE\n0x9559\t0xBDEF\n0x955A\t0xBDF1\n0x9561\t0xBDF2\n0x9562\t0xBDF3\n0x9563\t0xBDF5\n0x9564\t0xBDF6\n0x9565\t0xBDF7\n0x9566\t0xBDF9\n0x9567\t0xBDFA\n0x9568\t0xBDFB\n0x9569\t0xBDFC\n0x956A\t0xBDFD\n0x956B\t0xBDFE\n0x956C\t0xBDFF\n0x956D\t0xBE01\n0x956E\t0xBE02\n0x956F\t0xBE04\n0x9570\t0xBE06\n0x9571\t0xBE07\n0x9572\t0xBE08\n0x9573\t0xBE09\n0x9574\t0xBE0A\n0x9575\t0xBE0B\n0x9576\t0xBE0E\n0x9577\t0xBE0F\n0x9578\t0xBE11\n0x9579\t0xBE12\n0x957A\t0xBE13\n0x9581\t0xBE15\n0x9582\t0xBE16\n0x9583\t0xBE17\n0x9584\t0xBE18\n0x9585\t0xBE19\n0x9586\t0xBE1A\n0x9587\t0xBE1B\n0x9588\t0xBE1E\n0x9589\t0xBE20\n0x958A\t0xBE21\n0x958B\t0xBE22\n0x958C\t0xBE23\n0x958D\t0xBE24\n0x958E\t0xBE25\n0x958F\t0xBE26\n0x9590\t0xBE27\n0x9591\t0xBE28\n0x9592\t0xBE29\n0x9593\t0xBE2A\n0x9594\t0xBE2B\n0x9595\t0xBE2C\n0x9596\t0xBE2D\n0x9597\t0xBE2E\n0x9598\t0xBE2F\n0x9599\t0xBE30\n0x959A\t0xBE31\n0x959B\t0xBE32\n0x959C\t0xBE33\n0x959D\t0xBE34\n0x959E\t0xBE35\n0x959F\t0xBE36\n0x95A0\t0xBE37\n0x95A1\t0xBE38\n0x95A2\t0xBE39\n0x95A3\t0xBE3A\n0x95A4\t0xBE3B\n0x95A5\t0xBE3C\n0x95A6\t0xBE3D\n0x95A7\t0xBE3E\n0x95A8\t0xBE3F\n0x95A9\t0xBE40\n0x95AA\t0xBE41\n0x95AB\t0xBE42\n0x95AC\t0xBE43\n0x95AD\t0xBE46\n0x95AE\t0xBE47\n0x95AF\t0xBE49\n0x95B0\t0xBE4A\n0x95B1\t0xBE4B\n0x95B2\t0xBE4D\n0x95B3\t0xBE4F\n0x95B4\t0xBE50\n0x95B5\t0xBE51\n0x95B6\t0xBE52\n0x95B7\t0xBE53\n0x95B8\t0xBE56\n0x95B9\t0xBE58\n0x95BA\t0xBE5C\n0x95BB\t0xBE5D\n0x95BC\t0xBE5E\n0x95BD\t0xBE5F\n0x95BE\t0xBE62\n0x95BF\t0xBE63\n0x95C0\t0xBE65\n0x95C1\t0xBE66\n0x95C2\t0xBE67\n0x95C3\t0xBE69\n0x95C4\t0xBE6B\n0x95C5\t0xBE6C\n0x95C6\t0xBE6D\n0x95C7\t0xBE6E\n0x95C8\t0xBE6F\n0x95C9\t0xBE72\n0x95CA\t0xBE76\n0x95CB\t0xBE77\n0x95CC\t0xBE78\n0x95CD\t0xBE79\n0x95CE\t0xBE7A\n0x95CF\t0xBE7E\n0x95D0\t0xBE7F\n0x95D1\t0xBE81\n0x95D2\t0xBE82\n0x95D3\t0xBE83\n0x95D4\t0xBE85\n0x95D5\t0xBE86\n0x95D6\t0xBE87\n0x95D7\t0xBE88\n0x95D8\t0xBE89\n0x95D9\t0xBE8A\n0x95DA\t0xBE8B\n0x95DB\t0xBE8E\n0x95DC\t0xBE92\n0x95DD\t0xBE93\n0x95DE\t0xBE94\n0x95DF\t0xBE95\n0x95E0\t0xBE96\n0x95E1\t0xBE97\n0x95E2\t0xBE9A\n0x95E3\t0xBE9B\n0x95E4\t0xBE9C\n0x95E5\t0xBE9D\n0x95E6\t0xBE9E\n0x95E7\t0xBE9F\n0x95E8\t0xBEA0\n0x95E9\t0xBEA1\n0x95EA\t0xBEA2\n0x95EB\t0xBEA3\n0x95EC\t0xBEA4\n0x95ED\t0xBEA5\n0x95EE\t0xBEA6\n0x95EF\t0xBEA7\n0x95F0\t0xBEA9\n0x95F1\t0xBEAA\n0x95F2\t0xBEAB\n0x95F3\t0xBEAC\n0x95F4\t0xBEAD\n0x95F5\t0xBEAE\n0x95F6\t0xBEAF\n0x95F7\t0xBEB0\n0x95F8\t0xBEB1\n0x95F9\t0xBEB2\n0x95FA\t0xBEB3\n0x95FB\t0xBEB4\n0x95FC\t0xBEB5\n0x95FD\t0xBEB6\n0x95FE\t0xBEB7\n0x9641\t0xBEB8\n0x9642\t0xBEB9\n0x9643\t0xBEBA\n0x9644\t0xBEBB\n0x9645\t0xBEBC\n0x9646\t0xBEBD\n0x9647\t0xBEBE\n0x9648\t0xBEBF\n0x9649\t0xBEC0\n0x964A\t0xBEC1\n0x964B\t0xBEC2\n0x964C\t0xBEC3\n0x964D\t0xBEC4\n0x964E\t0xBEC5\n0x964F\t0xBEC6\n0x9650\t0xBEC7\n0x9651\t0xBEC8\n0x9652\t0xBEC9\n0x9653\t0xBECA\n0x9654\t0xBECB\n0x9655\t0xBECC\n0x9656\t0xBECD\n0x9657\t0xBECE\n0x9658\t0xBECF\n0x9659\t0xBED2\n0x965A\t0xBED3\n0x9661\t0xBED5\n0x9662\t0xBED6\n0x9663\t0xBED9\n0x9664\t0xBEDA\n0x9665\t0xBEDB\n0x9666\t0xBEDC\n0x9667\t0xBEDD\n0x9668\t0xBEDE\n0x9669\t0xBEDF\n0x966A\t0xBEE1\n0x966B\t0xBEE2\n0x966C\t0xBEE6\n0x966D\t0xBEE7\n0x966E\t0xBEE8\n0x966F\t0xBEE9\n0x9670\t0xBEEA\n0x9671\t0xBEEB\n0x9672\t0xBEED\n0x9673\t0xBEEE\n0x9674\t0xBEEF\n0x9675\t0xBEF0\n0x9676\t0xBEF1\n0x9677\t0xBEF2\n0x9678\t0xBEF3\n0x9679\t0xBEF4\n0x967A\t0xBEF5\n0x9681\t0xBEF6\n0x9682\t0xBEF7\n0x9683\t0xBEF8\n0x9684\t0xBEF9\n0x9685\t0xBEFA\n0x9686\t0xBEFB\n0x9687\t0xBEFC\n0x9688\t0xBEFD\n0x9689\t0xBEFE\n0x968A\t0xBEFF\n0x968B\t0xBF00\n0x968C\t0xBF02\n0x968D\t0xBF03\n0x968E\t0xBF04\n0x968F\t0xBF05\n0x9690\t0xBF06\n0x9691\t0xBF07\n0x9692\t0xBF0A\n0x9693\t0xBF0B\n0x9694\t0xBF0C\n0x9695\t0xBF0D\n0x9696\t0xBF0E\n0x9697\t0xBF0F\n0x9698\t0xBF10\n0x9699\t0xBF11\n0x969A\t0xBF12\n0x969B\t0xBF13\n0x969C\t0xBF14\n0x969D\t0xBF15\n0x969E\t0xBF16\n0x969F\t0xBF17\n0x96A0\t0xBF1A\n0x96A1\t0xBF1E\n0x96A2\t0xBF1F\n0x96A3\t0xBF20\n0x96A4\t0xBF21\n0x96A5\t0xBF22\n0x96A6\t0xBF23\n0x96A7\t0xBF24\n0x96A8\t0xBF25\n0x96A9\t0xBF26\n0x96AA\t0xBF27\n0x96AB\t0xBF28\n0x96AC\t0xBF29\n0x96AD\t0xBF2A\n0x96AE\t0xBF2B\n0x96AF\t0xBF2C\n0x96B0\t0xBF2D\n0x96B1\t0xBF2E\n0x96B2\t0xBF2F\n0x96B3\t0xBF30\n0x96B4\t0xBF31\n0x96B5\t0xBF32\n0x96B6\t0xBF33\n0x96B7\t0xBF34\n0x96B8\t0xBF35\n0x96B9\t0xBF36\n0x96BA\t0xBF37\n0x96BB\t0xBF38\n0x96BC\t0xBF39\n0x96BD\t0xBF3A\n0x96BE\t0xBF3B\n0x96BF\t0xBF3C\n0x96C0\t0xBF3D\n0x96C1\t0xBF3E\n0x96C2\t0xBF3F\n0x96C3\t0xBF42\n0x96C4\t0xBF43\n0x96C5\t0xBF45\n0x96C6\t0xBF46\n0x96C7\t0xBF47\n0x96C8\t0xBF49\n0x96C9\t0xBF4A\n0x96CA\t0xBF4B\n0x96CB\t0xBF4C\n0x96CC\t0xBF4D\n0x96CD\t0xBF4E\n0x96CE\t0xBF4F\n0x96CF\t0xBF52\n0x96D0\t0xBF53\n0x96D1\t0xBF54\n0x96D2\t0xBF56\n0x96D3\t0xBF57\n0x96D4\t0xBF58\n0x96D5\t0xBF59\n0x96D6\t0xBF5A\n0x96D7\t0xBF5B\n0x96D8\t0xBF5C\n0x96D9\t0xBF5D\n0x96DA\t0xBF5E\n0x96DB\t0xBF5F\n0x96DC\t0xBF60\n0x96DD\t0xBF61\n0x96DE\t0xBF62\n0x96DF\t0xBF63\n0x96E0\t0xBF64\n0x96E1\t0xBF65\n0x96E2\t0xBF66\n0x96E3\t0xBF67\n0x96E4\t0xBF68\n0x96E5\t0xBF69\n0x96E6\t0xBF6A\n0x96E7\t0xBF6B\n0x96E8\t0xBF6C\n0x96E9\t0xBF6D\n0x96EA\t0xBF6E\n0x96EB\t0xBF6F\n0x96EC\t0xBF70\n0x96ED\t0xBF71\n0x96EE\t0xBF72\n0x96EF\t0xBF73\n0x96F0\t0xBF74\n0x96F1\t0xBF75\n0x96F2\t0xBF76\n0x96F3\t0xBF77\n0x96F4\t0xBF78\n0x96F5\t0xBF79\n0x96F6\t0xBF7A\n0x96F7\t0xBF7B\n0x96F8\t0xBF7C\n0x96F9\t0xBF7D\n0x96FA\t0xBF7E\n0x96FB\t0xBF7F\n0x96FC\t0xBF80\n0x96FD\t0xBF81\n0x96FE\t0xBF82\n0x9741\t0xBF83\n0x9742\t0xBF84\n0x9743\t0xBF85\n0x9744\t0xBF86\n0x9745\t0xBF87\n0x9746\t0xBF88\n0x9747\t0xBF89\n0x9748\t0xBF8A\n0x9749\t0xBF8B\n0x974A\t0xBF8C\n0x974B\t0xBF8D\n0x974C\t0xBF8E\n0x974D\t0xBF8F\n0x974E\t0xBF90\n0x974F\t0xBF91\n0x9750\t0xBF92\n0x9751\t0xBF93\n0x9752\t0xBF95\n0x9753\t0xBF96\n0x9754\t0xBF97\n0x9755\t0xBF98\n0x9756\t0xBF99\n0x9757\t0xBF9A\n0x9758\t0xBF9B\n0x9759\t0xBF9C\n0x975A\t0xBF9D\n0x9761\t0xBF9E\n0x9762\t0xBF9F\n0x9763\t0xBFA0\n0x9764\t0xBFA1\n0x9765\t0xBFA2\n0x9766\t0xBFA3\n0x9767\t0xBFA4\n0x9768\t0xBFA5\n0x9769\t0xBFA6\n0x976A\t0xBFA7\n0x976B\t0xBFA8\n0x976C\t0xBFA9\n0x976D\t0xBFAA\n0x976E\t0xBFAB\n0x976F\t0xBFAC\n0x9770\t0xBFAD\n0x9771\t0xBFAE\n0x9772\t0xBFAF\n0x9773\t0xBFB1\n0x9774\t0xBFB2\n0x9775\t0xBFB3\n0x9776\t0xBFB4\n0x9777\t0xBFB5\n0x9778\t0xBFB6\n0x9779\t0xBFB7\n0x977A\t0xBFB8\n0x9781\t0xBFB9\n0x9782\t0xBFBA\n0x9783\t0xBFBB\n0x9784\t0xBFBC\n0x9785\t0xBFBD\n0x9786\t0xBFBE\n0x9787\t0xBFBF\n0x9788\t0xBFC0\n0x9789\t0xBFC1\n0x978A\t0xBFC2\n0x978B\t0xBFC3\n0x978C\t0xBFC4\n0x978D\t0xBFC6\n0x978E\t0xBFC7\n0x978F\t0xBFC8\n0x9790\t0xBFC9\n0x9791\t0xBFCA\n0x9792\t0xBFCB\n0x9793\t0xBFCE\n0x9794\t0xBFCF\n0x9795\t0xBFD1\n0x9796\t0xBFD2\n0x9797\t0xBFD3\n0x9798\t0xBFD5\n0x9799\t0xBFD6\n0x979A\t0xBFD7\n0x979B\t0xBFD8\n0x979C\t0xBFD9\n0x979D\t0xBFDA\n0x979E\t0xBFDB\n0x979F\t0xBFDD\n0x97A0\t0xBFDE\n0x97A1\t0xBFE0\n0x97A2\t0xBFE2\n0x97A3\t0xBFE3\n0x97A4\t0xBFE4\n0x97A5\t0xBFE5\n0x97A6\t0xBFE6\n0x97A7\t0xBFE7\n0x97A8\t0xBFE8\n0x97A9\t0xBFE9\n0x97AA\t0xBFEA\n0x97AB\t0xBFEB\n0x97AC\t0xBFEC\n0x97AD\t0xBFED\n0x97AE\t0xBFEE\n0x97AF\t0xBFEF\n0x97B0\t0xBFF0\n0x97B1\t0xBFF1\n0x97B2\t0xBFF2\n0x97B3\t0xBFF3\n0x97B4\t0xBFF4\n0x97B5\t0xBFF5\n0x97B6\t0xBFF6\n0x97B7\t0xBFF7\n0x97B8\t0xBFF8\n0x97B9\t0xBFF9\n0x97BA\t0xBFFA\n0x97BB\t0xBFFB\n0x97BC\t0xBFFC\n0x97BD\t0xBFFD\n0x97BE\t0xBFFE\n0x97BF\t0xBFFF\n0x97C0\t0xC000\n0x97C1\t0xC001\n0x97C2\t0xC002\n0x97C3\t0xC003\n0x97C4\t0xC004\n0x97C5\t0xC005\n0x97C6\t0xC006\n0x97C7\t0xC007\n0x97C8\t0xC008\n0x97C9\t0xC009\n0x97CA\t0xC00A\n0x97CB\t0xC00B\n0x97CC\t0xC00C\n0x97CD\t0xC00D\n0x97CE\t0xC00E\n0x97CF\t0xC00F\n0x97D0\t0xC010\n0x97D1\t0xC011\n0x97D2\t0xC012\n0x97D3\t0xC013\n0x97D4\t0xC014\n0x97D5\t0xC015\n0x97D6\t0xC016\n0x97D7\t0xC017\n0x97D8\t0xC018\n0x97D9\t0xC019\n0x97DA\t0xC01A\n0x97DB\t0xC01B\n0x97DC\t0xC01C\n0x97DD\t0xC01D\n0x97DE\t0xC01E\n0x97DF\t0xC01F\n0x97E0\t0xC020\n0x97E1\t0xC021\n0x97E2\t0xC022\n0x97E3\t0xC023\n0x97E4\t0xC024\n0x97E5\t0xC025\n0x97E6\t0xC026\n0x97E7\t0xC027\n0x97E8\t0xC028\n0x97E9\t0xC029\n0x97EA\t0xC02A\n0x97EB\t0xC02B\n0x97EC\t0xC02C\n0x97ED\t0xC02D\n0x97EE\t0xC02E\n0x97EF\t0xC02F\n0x97F0\t0xC030\n0x97F1\t0xC031\n0x97F2\t0xC032\n0x97F3\t0xC033\n0x97F4\t0xC034\n0x97F5\t0xC035\n0x97F6\t0xC036\n0x97F7\t0xC037\n0x97F8\t0xC038\n0x97F9\t0xC039\n0x97FA\t0xC03A\n0x97FB\t0xC03B\n0x97FC\t0xC03D\n0x97FD\t0xC03E\n0x97FE\t0xC03F\n0x9841\t0xC040\n0x9842\t0xC041\n0x9843\t0xC042\n0x9844\t0xC043\n0x9845\t0xC044\n0x9846\t0xC045\n0x9847\t0xC046\n0x9848\t0xC047\n0x9849\t0xC048\n0x984A\t0xC049\n0x984B\t0xC04A\n0x984C\t0xC04B\n0x984D\t0xC04C\n0x984E\t0xC04D\n0x984F\t0xC04E\n0x9850\t0xC04F\n0x9851\t0xC050\n0x9852\t0xC052\n0x9853\t0xC053\n0x9854\t0xC054\n0x9855\t0xC055\n0x9856\t0xC056\n0x9857\t0xC057\n0x9858\t0xC059\n0x9859\t0xC05A\n0x985A\t0xC05B\n0x9861\t0xC05D\n0x9862\t0xC05E\n0x9863\t0xC05F\n0x9864\t0xC061\n0x9865\t0xC062\n0x9866\t0xC063\n0x9867\t0xC064\n0x9868\t0xC065\n0x9869\t0xC066\n0x986A\t0xC067\n0x986B\t0xC06A\n0x986C\t0xC06B\n0x986D\t0xC06C\n0x986E\t0xC06D\n0x986F\t0xC06E\n0x9870\t0xC06F\n0x9871\t0xC070\n0x9872\t0xC071\n0x9873\t0xC072\n0x9874\t0xC073\n0x9875\t0xC074\n0x9876\t0xC075\n0x9877\t0xC076\n0x9878\t0xC077\n0x9879\t0xC078\n0x987A\t0xC079\n0x9881\t0xC07A\n0x9882\t0xC07B\n0x9883\t0xC07C\n0x9884\t0xC07D\n0x9885\t0xC07E\n0x9886\t0xC07F\n0x9887\t0xC080\n0x9888\t0xC081\n0x9889\t0xC082\n0x988A\t0xC083\n0x988B\t0xC084\n0x988C\t0xC085\n0x988D\t0xC086\n0x988E\t0xC087\n0x988F\t0xC088\n0x9890\t0xC089\n0x9891\t0xC08A\n0x9892\t0xC08B\n0x9893\t0xC08C\n0x9894\t0xC08D\n0x9895\t0xC08E\n0x9896\t0xC08F\n0x9897\t0xC092\n0x9898\t0xC093\n0x9899\t0xC095\n0x989A\t0xC096\n0x989B\t0xC097\n0x989C\t0xC099\n0x989D\t0xC09A\n0x989E\t0xC09B\n0x989F\t0xC09C\n0x98A0\t0xC09D\n0x98A1\t0xC09E\n0x98A2\t0xC09F\n0x98A3\t0xC0A2\n0x98A4\t0xC0A4\n0x98A5\t0xC0A6\n0x98A6\t0xC0A7\n0x98A7\t0xC0A8\n0x98A8\t0xC0A9\n0x98A9\t0xC0AA\n0x98AA\t0xC0AB\n0x98AB\t0xC0AE\n0x98AC\t0xC0B1\n0x98AD\t0xC0B2\n0x98AE\t0xC0B7\n0x98AF\t0xC0B8\n0x98B0\t0xC0B9\n0x98B1\t0xC0BA\n0x98B2\t0xC0BB\n0x98B3\t0xC0BE\n0x98B4\t0xC0C2\n0x98B5\t0xC0C3\n0x98B6\t0xC0C4\n0x98B7\t0xC0C6\n0x98B8\t0xC0C7\n0x98B9\t0xC0CA\n0x98BA\t0xC0CB\n0x98BB\t0xC0CD\n0x98BC\t0xC0CE\n0x98BD\t0xC0CF\n0x98BE\t0xC0D1\n0x98BF\t0xC0D2\n0x98C0\t0xC0D3\n0x98C1\t0xC0D4\n0x98C2\t0xC0D5\n0x98C3\t0xC0D6\n0x98C4\t0xC0D7\n0x98C5\t0xC0DA\n0x98C6\t0xC0DE\n0x98C7\t0xC0DF\n0x98C8\t0xC0E0\n0x98C9\t0xC0E1\n0x98CA\t0xC0E2\n0x98CB\t0xC0E3\n0x98CC\t0xC0E6\n0x98CD\t0xC0E7\n0x98CE\t0xC0E9\n0x98CF\t0xC0EA\n0x98D0\t0xC0EB\n0x98D1\t0xC0ED\n0x98D2\t0xC0EE\n0x98D3\t0xC0EF\n0x98D4\t0xC0F0\n0x98D5\t0xC0F1\n0x98D6\t0xC0F2\n0x98D7\t0xC0F3\n0x98D8\t0xC0F6\n0x98D9\t0xC0F8\n0x98DA\t0xC0FA\n0x98DB\t0xC0FB\n0x98DC\t0xC0FC\n0x98DD\t0xC0FD\n0x98DE\t0xC0FE\n0x98DF\t0xC0FF\n0x98E0\t0xC101\n0x98E1\t0xC102\n0x98E2\t0xC103\n0x98E3\t0xC105\n0x98E4\t0xC106\n0x98E5\t0xC107\n0x98E6\t0xC109\n0x98E7\t0xC10A\n0x98E8\t0xC10B\n0x98E9\t0xC10C\n0x98EA\t0xC10D\n0x98EB\t0xC10E\n0x98EC\t0xC10F\n0x98ED\t0xC111\n0x98EE\t0xC112\n0x98EF\t0xC113\n0x98F0\t0xC114\n0x98F1\t0xC116\n0x98F2\t0xC117\n0x98F3\t0xC118\n0x98F4\t0xC119\n0x98F5\t0xC11A\n0x98F6\t0xC11B\n0x98F7\t0xC121\n0x98F8\t0xC122\n0x98F9\t0xC125\n0x98FA\t0xC128\n0x98FB\t0xC129\n0x98FC\t0xC12A\n0x98FD\t0xC12B\n0x98FE\t0xC12E\n0x9941\t0xC132\n0x9942\t0xC133\n0x9943\t0xC134\n0x9944\t0xC135\n0x9945\t0xC137\n0x9946\t0xC13A\n0x9947\t0xC13B\n0x9948\t0xC13D\n0x9949\t0xC13E\n0x994A\t0xC13F\n0x994B\t0xC141\n0x994C\t0xC142\n0x994D\t0xC143\n0x994E\t0xC144\n0x994F\t0xC145\n0x9950\t0xC146\n0x9951\t0xC147\n0x9952\t0xC14A\n0x9953\t0xC14E\n0x9954\t0xC14F\n0x9955\t0xC150\n0x9956\t0xC151\n0x9957\t0xC152\n0x9958\t0xC153\n0x9959\t0xC156\n0x995A\t0xC157\n0x9961\t0xC159\n0x9962\t0xC15A\n0x9963\t0xC15B\n0x9964\t0xC15D\n0x9965\t0xC15E\n0x9966\t0xC15F\n0x9967\t0xC160\n0x9968\t0xC161\n0x9969\t0xC162\n0x996A\t0xC163\n0x996B\t0xC166\n0x996C\t0xC16A\n0x996D\t0xC16B\n0x996E\t0xC16C\n0x996F\t0xC16D\n0x9970\t0xC16E\n0x9971\t0xC16F\n0x9972\t0xC171\n0x9973\t0xC172\n0x9974\t0xC173\n0x9975\t0xC175\n0x9976\t0xC176\n0x9977\t0xC177\n0x9978\t0xC179\n0x9979\t0xC17A\n0x997A\t0xC17B\n0x9981\t0xC17C\n0x9982\t0xC17D\n0x9983\t0xC17E\n0x9984\t0xC17F\n0x9985\t0xC180\n0x9986\t0xC181\n0x9987\t0xC182\n0x9988\t0xC183\n0x9989\t0xC184\n0x998A\t0xC186\n0x998B\t0xC187\n0x998C\t0xC188\n0x998D\t0xC189\n0x998E\t0xC18A\n0x998F\t0xC18B\n0x9990\t0xC18F\n0x9991\t0xC191\n0x9992\t0xC192\n0x9993\t0xC193\n0x9994\t0xC195\n0x9995\t0xC197\n0x9996\t0xC198\n0x9997\t0xC199\n0x9998\t0xC19A\n0x9999\t0xC19B\n0x999A\t0xC19E\n0x999B\t0xC1A0\n0x999C\t0xC1A2\n0x999D\t0xC1A3\n0x999E\t0xC1A4\n0x999F\t0xC1A6\n0x99A0\t0xC1A7\n0x99A1\t0xC1AA\n0x99A2\t0xC1AB\n0x99A3\t0xC1AD\n0x99A4\t0xC1AE\n0x99A5\t0xC1AF\n0x99A6\t0xC1B1\n0x99A7\t0xC1B2\n0x99A8\t0xC1B3\n0x99A9\t0xC1B4\n0x99AA\t0xC1B5\n0x99AB\t0xC1B6\n0x99AC\t0xC1B7\n0x99AD\t0xC1B8\n0x99AE\t0xC1B9\n0x99AF\t0xC1BA\n0x99B0\t0xC1BB\n0x99B1\t0xC1BC\n0x99B2\t0xC1BE\n0x99B3\t0xC1BF\n0x99B4\t0xC1C0\n0x99B5\t0xC1C1\n0x99B6\t0xC1C2\n0x99B7\t0xC1C3\n0x99B8\t0xC1C5\n0x99B9\t0xC1C6\n0x99BA\t0xC1C7\n0x99BB\t0xC1C9\n0x99BC\t0xC1CA\n0x99BD\t0xC1CB\n0x99BE\t0xC1CD\n0x99BF\t0xC1CE\n0x99C0\t0xC1CF\n0x99C1\t0xC1D0\n0x99C2\t0xC1D1\n0x99C3\t0xC1D2\n0x99C4\t0xC1D3\n0x99C5\t0xC1D5\n0x99C6\t0xC1D6\n0x99C7\t0xC1D9\n0x99C8\t0xC1DA\n0x99C9\t0xC1DB\n0x99CA\t0xC1DC\n0x99CB\t0xC1DD\n0x99CC\t0xC1DE\n0x99CD\t0xC1DF\n0x99CE\t0xC1E1\n0x99CF\t0xC1E2\n0x99D0\t0xC1E3\n0x99D1\t0xC1E5\n0x99D2\t0xC1E6\n0x99D3\t0xC1E7\n0x99D4\t0xC1E9\n0x99D5\t0xC1EA\n0x99D6\t0xC1EB\n0x99D7\t0xC1EC\n0x99D8\t0xC1ED\n0x99D9\t0xC1EE\n0x99DA\t0xC1EF\n0x99DB\t0xC1F2\n0x99DC\t0xC1F4\n0x99DD\t0xC1F5\n0x99DE\t0xC1F6\n0x99DF\t0xC1F7\n0x99E0\t0xC1F8\n0x99E1\t0xC1F9\n0x99E2\t0xC1FA\n0x99E3\t0xC1FB\n0x99E4\t0xC1FE\n0x99E5\t0xC1FF\n0x99E6\t0xC201\n0x99E7\t0xC202\n0x99E8\t0xC203\n0x99E9\t0xC205\n0x99EA\t0xC206\n0x99EB\t0xC207\n0x99EC\t0xC208\n0x99ED\t0xC209\n0x99EE\t0xC20A\n0x99EF\t0xC20B\n0x99F0\t0xC20E\n0x99F1\t0xC210\n0x99F2\t0xC212\n0x99F3\t0xC213\n0x99F4\t0xC214\n0x99F5\t0xC215\n0x99F6\t0xC216\n0x99F7\t0xC217\n0x99F8\t0xC21A\n0x99F9\t0xC21B\n0x99FA\t0xC21D\n0x99FB\t0xC21E\n0x99FC\t0xC221\n0x99FD\t0xC222\n0x99FE\t0xC223\n0x9A41\t0xC224\n0x9A42\t0xC225\n0x9A43\t0xC226\n0x9A44\t0xC227\n0x9A45\t0xC22A\n0x9A46\t0xC22C\n0x9A47\t0xC22E\n0x9A48\t0xC230\n0x9A49\t0xC233\n0x9A4A\t0xC235\n0x9A4B\t0xC236\n0x9A4C\t0xC237\n0x9A4D\t0xC238\n0x9A4E\t0xC239\n0x9A4F\t0xC23A\n0x9A50\t0xC23B\n0x9A51\t0xC23C\n0x9A52\t0xC23D\n0x9A53\t0xC23E\n0x9A54\t0xC23F\n0x9A55\t0xC240\n0x9A56\t0xC241\n0x9A57\t0xC242\n0x9A58\t0xC243\n0x9A59\t0xC244\n0x9A5A\t0xC245\n0x9A61\t0xC246\n0x9A62\t0xC247\n0x9A63\t0xC249\n0x9A64\t0xC24A\n0x9A65\t0xC24B\n0x9A66\t0xC24C\n0x9A67\t0xC24D\n0x9A68\t0xC24E\n0x9A69\t0xC24F\n0x9A6A\t0xC252\n0x9A6B\t0xC253\n0x9A6C\t0xC255\n0x9A6D\t0xC256\n0x9A6E\t0xC257\n0x9A6F\t0xC259\n0x9A70\t0xC25A\n0x9A71\t0xC25B\n0x9A72\t0xC25C\n0x9A73\t0xC25D\n0x9A74\t0xC25E\n0x9A75\t0xC25F\n0x9A76\t0xC261\n0x9A77\t0xC262\n0x9A78\t0xC263\n0x9A79\t0xC264\n0x9A7A\t0xC266\n0x9A81\t0xC267\n0x9A82\t0xC268\n0x9A83\t0xC269\n0x9A84\t0xC26A\n0x9A85\t0xC26B\n0x9A86\t0xC26E\n0x9A87\t0xC26F\n0x9A88\t0xC271\n0x9A89\t0xC272\n0x9A8A\t0xC273\n0x9A8B\t0xC275\n0x9A8C\t0xC276\n0x9A8D\t0xC277\n0x9A8E\t0xC278\n0x9A8F\t0xC279\n0x9A90\t0xC27A\n0x9A91\t0xC27B\n0x9A92\t0xC27E\n0x9A93\t0xC280\n0x9A94\t0xC282\n0x9A95\t0xC283\n0x9A96\t0xC284\n0x9A97\t0xC285\n0x9A98\t0xC286\n0x9A99\t0xC287\n0x9A9A\t0xC28A\n0x9A9B\t0xC28B\n0x9A9C\t0xC28C\n0x9A9D\t0xC28D\n0x9A9E\t0xC28E\n0x9A9F\t0xC28F\n0x9AA0\t0xC291\n0x9AA1\t0xC292\n0x9AA2\t0xC293\n0x9AA3\t0xC294\n0x9AA4\t0xC295\n0x9AA5\t0xC296\n0x9AA6\t0xC297\n0x9AA7\t0xC299\n0x9AA8\t0xC29A\n0x9AA9\t0xC29C\n0x9AAA\t0xC29E\n0x9AAB\t0xC29F\n0x9AAC\t0xC2A0\n0x9AAD\t0xC2A1\n0x9AAE\t0xC2A2\n0x9AAF\t0xC2A3\n0x9AB0\t0xC2A6\n0x9AB1\t0xC2A7\n0x9AB2\t0xC2A9\n0x9AB3\t0xC2AA\n0x9AB4\t0xC2AB\n0x9AB5\t0xC2AE\n0x9AB6\t0xC2AF\n0x9AB7\t0xC2B0\n0x9AB8\t0xC2B1\n0x9AB9\t0xC2B2\n0x9ABA\t0xC2B3\n0x9ABB\t0xC2B6\n0x9ABC\t0xC2B8\n0x9ABD\t0xC2BA\n0x9ABE\t0xC2BB\n0x9ABF\t0xC2BC\n0x9AC0\t0xC2BD\n0x9AC1\t0xC2BE\n0x9AC2\t0xC2BF\n0x9AC3\t0xC2C0\n0x9AC4\t0xC2C1\n0x9AC5\t0xC2C2\n0x9AC6\t0xC2C3\n0x9AC7\t0xC2C4\n0x9AC8\t0xC2C5\n0x9AC9\t0xC2C6\n0x9ACA\t0xC2C7\n0x9ACB\t0xC2C8\n0x9ACC\t0xC2C9\n0x9ACD\t0xC2CA\n0x9ACE\t0xC2CB\n0x9ACF\t0xC2CC\n0x9AD0\t0xC2CD\n0x9AD1\t0xC2CE\n0x9AD2\t0xC2CF\n0x9AD3\t0xC2D0\n0x9AD4\t0xC2D1\n0x9AD5\t0xC2D2\n0x9AD6\t0xC2D3\n0x9AD7\t0xC2D4\n0x9AD8\t0xC2D5\n0x9AD9\t0xC2D6\n0x9ADA\t0xC2D7\n0x9ADB\t0xC2D8\n0x9ADC\t0xC2D9\n0x9ADD\t0xC2DA\n0x9ADE\t0xC2DB\n0x9ADF\t0xC2DE\n0x9AE0\t0xC2DF\n0x9AE1\t0xC2E1\n0x9AE2\t0xC2E2\n0x9AE3\t0xC2E5\n0x9AE4\t0xC2E6\n0x9AE5\t0xC2E7\n0x9AE6\t0xC2E8\n0x9AE7\t0xC2E9\n0x9AE8\t0xC2EA\n0x9AE9\t0xC2EE\n0x9AEA\t0xC2F0\n0x9AEB\t0xC2F2\n0x9AEC\t0xC2F3\n0x9AED\t0xC2F4\n0x9AEE\t0xC2F5\n0x9AEF\t0xC2F7\n0x9AF0\t0xC2FA\n0x9AF1\t0xC2FD\n0x9AF2\t0xC2FE\n0x9AF3\t0xC2FF\n0x9AF4\t0xC301\n0x9AF5\t0xC302\n0x9AF6\t0xC303\n0x9AF7\t0xC304\n0x9AF8\t0xC305\n0x9AF9\t0xC306\n0x9AFA\t0xC307\n0x9AFB\t0xC30A\n0x9AFC\t0xC30B\n0x9AFD\t0xC30E\n0x9AFE\t0xC30F\n0x9B41\t0xC310\n0x9B42\t0xC311\n0x9B43\t0xC312\n0x9B44\t0xC316\n0x9B45\t0xC317\n0x9B46\t0xC319\n0x9B47\t0xC31A\n0x9B48\t0xC31B\n0x9B49\t0xC31D\n0x9B4A\t0xC31E\n0x9B4B\t0xC31F\n0x9B4C\t0xC320\n0x9B4D\t0xC321\n0x9B4E\t0xC322\n0x9B4F\t0xC323\n0x9B50\t0xC326\n0x9B51\t0xC327\n0x9B52\t0xC32A\n0x9B53\t0xC32B\n0x9B54\t0xC32C\n0x9B55\t0xC32D\n0x9B56\t0xC32E\n0x9B57\t0xC32F\n0x9B58\t0xC330\n0x9B59\t0xC331\n0x9B5A\t0xC332\n0x9B61\t0xC333\n0x9B62\t0xC334\n0x9B63\t0xC335\n0x9B64\t0xC336\n0x9B65\t0xC337\n0x9B66\t0xC338\n0x9B67\t0xC339\n0x9B68\t0xC33A\n0x9B69\t0xC33B\n0x9B6A\t0xC33C\n0x9B6B\t0xC33D\n0x9B6C\t0xC33E\n0x9B6D\t0xC33F\n0x9B6E\t0xC340\n0x9B6F\t0xC341\n0x9B70\t0xC342\n0x9B71\t0xC343\n0x9B72\t0xC344\n0x9B73\t0xC346\n0x9B74\t0xC347\n0x9B75\t0xC348\n0x9B76\t0xC349\n0x9B77\t0xC34A\n0x9B78\t0xC34B\n0x9B79\t0xC34C\n0x9B7A\t0xC34D\n0x9B81\t0xC34E\n0x9B82\t0xC34F\n0x9B83\t0xC350\n0x9B84\t0xC351\n0x9B85\t0xC352\n0x9B86\t0xC353\n0x9B87\t0xC354\n0x9B88\t0xC355\n0x9B89\t0xC356\n0x9B8A\t0xC357\n0x9B8B\t0xC358\n0x9B8C\t0xC359\n0x9B8D\t0xC35A\n0x9B8E\t0xC35B\n0x9B8F\t0xC35C\n0x9B90\t0xC35D\n0x9B91\t0xC35E\n0x9B92\t0xC35F\n0x9B93\t0xC360\n0x9B94\t0xC361\n0x9B95\t0xC362\n0x9B96\t0xC363\n0x9B97\t0xC364\n0x9B98\t0xC365\n0x9B99\t0xC366\n0x9B9A\t0xC367\n0x9B9B\t0xC36A\n0x9B9C\t0xC36B\n0x9B9D\t0xC36D\n0x9B9E\t0xC36E\n0x9B9F\t0xC36F\n0x9BA0\t0xC371\n0x9BA1\t0xC373\n0x9BA2\t0xC374\n0x9BA3\t0xC375\n0x9BA4\t0xC376\n0x9BA5\t0xC377\n0x9BA6\t0xC37A\n0x9BA7\t0xC37B\n0x9BA8\t0xC37E\n0x9BA9\t0xC37F\n0x9BAA\t0xC380\n0x9BAB\t0xC381\n0x9BAC\t0xC382\n0x9BAD\t0xC383\n0x9BAE\t0xC385\n0x9BAF\t0xC386\n0x9BB0\t0xC387\n0x9BB1\t0xC389\n0x9BB2\t0xC38A\n0x9BB3\t0xC38B\n0x9BB4\t0xC38D\n0x9BB5\t0xC38E\n0x9BB6\t0xC38F\n0x9BB7\t0xC390\n0x9BB8\t0xC391\n0x9BB9\t0xC392\n0x9BBA\t0xC393\n0x9BBB\t0xC394\n0x9BBC\t0xC395\n0x9BBD\t0xC396\n0x9BBE\t0xC397\n0x9BBF\t0xC398\n0x9BC0\t0xC399\n0x9BC1\t0xC39A\n0x9BC2\t0xC39B\n0x9BC3\t0xC39C\n0x9BC4\t0xC39D\n0x9BC5\t0xC39E\n0x9BC6\t0xC39F\n0x9BC7\t0xC3A0\n0x9BC8\t0xC3A1\n0x9BC9\t0xC3A2\n0x9BCA\t0xC3A3\n0x9BCB\t0xC3A4\n0x9BCC\t0xC3A5\n0x9BCD\t0xC3A6\n0x9BCE\t0xC3A7\n0x9BCF\t0xC3A8\n0x9BD0\t0xC3A9\n0x9BD1\t0xC3AA\n0x9BD2\t0xC3AB\n0x9BD3\t0xC3AC\n0x9BD4\t0xC3AD\n0x9BD5\t0xC3AE\n0x9BD6\t0xC3AF\n0x9BD7\t0xC3B0\n0x9BD8\t0xC3B1\n0x9BD9\t0xC3B2\n0x9BDA\t0xC3B3\n0x9BDB\t0xC3B4\n0x9BDC\t0xC3B5\n0x9BDD\t0xC3B6\n0x9BDE\t0xC3B7\n0x9BDF\t0xC3B8\n0x9BE0\t0xC3B9\n0x9BE1\t0xC3BA\n0x9BE2\t0xC3BB\n0x9BE3\t0xC3BC\n0x9BE4\t0xC3BD\n0x9BE5\t0xC3BE\n0x9BE6\t0xC3BF\n0x9BE7\t0xC3C1\n0x9BE8\t0xC3C2\n0x9BE9\t0xC3C3\n0x9BEA\t0xC3C4\n0x9BEB\t0xC3C5\n0x9BEC\t0xC3C6\n0x9BED\t0xC3C7\n0x9BEE\t0xC3C8\n0x9BEF\t0xC3C9\n0x9BF0\t0xC3CA\n0x9BF1\t0xC3CB\n0x9BF2\t0xC3CC\n0x9BF3\t0xC3CD\n0x9BF4\t0xC3CE\n0x9BF5\t0xC3CF\n0x9BF6\t0xC3D0\n0x9BF7\t0xC3D1\n0x9BF8\t0xC3D2\n0x9BF9\t0xC3D3\n0x9BFA\t0xC3D4\n0x9BFB\t0xC3D5\n0x9BFC\t0xC3D6\n0x9BFD\t0xC3D7\n0x9BFE\t0xC3DA\n0x9C41\t0xC3DB\n0x9C42\t0xC3DD\n0x9C43\t0xC3DE\n0x9C44\t0xC3E1\n0x9C45\t0xC3E3\n0x9C46\t0xC3E4\n0x9C47\t0xC3E5\n0x9C48\t0xC3E6\n0x9C49\t0xC3E7\n0x9C4A\t0xC3EA\n0x9C4B\t0xC3EB\n0x9C4C\t0xC3EC\n0x9C4D\t0xC3EE\n0x9C4E\t0xC3EF\n0x9C4F\t0xC3F0\n0x9C50\t0xC3F1\n0x9C51\t0xC3F2\n0x9C52\t0xC3F3\n0x9C53\t0xC3F6\n0x9C54\t0xC3F7\n0x9C55\t0xC3F9\n0x9C56\t0xC3FA\n0x9C57\t0xC3FB\n0x9C58\t0xC3FC\n0x9C59\t0xC3FD\n0x9C5A\t0xC3FE\n0x9C61\t0xC3FF\n0x9C62\t0xC400\n0x9C63\t0xC401\n0x9C64\t0xC402\n0x9C65\t0xC403\n0x9C66\t0xC404\n0x9C67\t0xC405\n0x9C68\t0xC406\n0x9C69\t0xC407\n0x9C6A\t0xC409\n0x9C6B\t0xC40A\n0x9C6C\t0xC40B\n0x9C6D\t0xC40C\n0x9C6E\t0xC40D\n0x9C6F\t0xC40E\n0x9C70\t0xC40F\n0x9C71\t0xC411\n0x9C72\t0xC412\n0x9C73\t0xC413\n0x9C74\t0xC414\n0x9C75\t0xC415\n0x9C76\t0xC416\n0x9C77\t0xC417\n0x9C78\t0xC418\n0x9C79\t0xC419\n0x9C7A\t0xC41A\n0x9C81\t0xC41B\n0x9C82\t0xC41C\n0x9C83\t0xC41D\n0x9C84\t0xC41E\n0x9C85\t0xC41F\n0x9C86\t0xC420\n0x9C87\t0xC421\n0x9C88\t0xC422\n0x9C89\t0xC423\n0x9C8A\t0xC425\n0x9C8B\t0xC426\n0x9C8C\t0xC427\n0x9C8D\t0xC428\n0x9C8E\t0xC429\n0x9C8F\t0xC42A\n0x9C90\t0xC42B\n0x9C91\t0xC42D\n0x9C92\t0xC42E\n0x9C93\t0xC42F\n0x9C94\t0xC431\n0x9C95\t0xC432\n0x9C96\t0xC433\n0x9C97\t0xC435\n0x9C98\t0xC436\n0x9C99\t0xC437\n0x9C9A\t0xC438\n0x9C9B\t0xC439\n0x9C9C\t0xC43A\n0x9C9D\t0xC43B\n0x9C9E\t0xC43E\n0x9C9F\t0xC43F\n0x9CA0\t0xC440\n0x9CA1\t0xC441\n0x9CA2\t0xC442\n0x9CA3\t0xC443\n0x9CA4\t0xC444\n0x9CA5\t0xC445\n0x9CA6\t0xC446\n0x9CA7\t0xC447\n0x9CA8\t0xC449\n0x9CA9\t0xC44A\n0x9CAA\t0xC44B\n0x9CAB\t0xC44C\n0x9CAC\t0xC44D\n0x9CAD\t0xC44E\n0x9CAE\t0xC44F\n0x9CAF\t0xC450\n0x9CB0\t0xC451\n0x9CB1\t0xC452\n0x9CB2\t0xC453\n0x9CB3\t0xC454\n0x9CB4\t0xC455\n0x9CB5\t0xC456\n0x9CB6\t0xC457\n0x9CB7\t0xC458\n0x9CB8\t0xC459\n0x9CB9\t0xC45A\n0x9CBA\t0xC45B\n0x9CBB\t0xC45C\n0x9CBC\t0xC45D\n0x9CBD\t0xC45E\n0x9CBE\t0xC45F\n0x9CBF\t0xC460\n0x9CC0\t0xC461\n0x9CC1\t0xC462\n0x9CC2\t0xC463\n0x9CC3\t0xC466\n0x9CC4\t0xC467\n0x9CC5\t0xC469\n0x9CC6\t0xC46A\n0x9CC7\t0xC46B\n0x9CC8\t0xC46D\n0x9CC9\t0xC46E\n0x9CCA\t0xC46F\n0x9CCB\t0xC470\n0x9CCC\t0xC471\n0x9CCD\t0xC472\n0x9CCE\t0xC473\n0x9CCF\t0xC476\n0x9CD0\t0xC477\n0x9CD1\t0xC478\n0x9CD2\t0xC47A\n0x9CD3\t0xC47B\n0x9CD4\t0xC47C\n0x9CD5\t0xC47D\n0x9CD6\t0xC47E\n0x9CD7\t0xC47F\n0x9CD8\t0xC481\n0x9CD9\t0xC482\n0x9CDA\t0xC483\n0x9CDB\t0xC484\n0x9CDC\t0xC485\n0x9CDD\t0xC486\n0x9CDE\t0xC487\n0x9CDF\t0xC488\n0x9CE0\t0xC489\n0x9CE1\t0xC48A\n0x9CE2\t0xC48B\n0x9CE3\t0xC48C\n0x9CE4\t0xC48D\n0x9CE5\t0xC48E\n0x9CE6\t0xC48F\n0x9CE7\t0xC490\n0x9CE8\t0xC491\n0x9CE9\t0xC492\n0x9CEA\t0xC493\n0x9CEB\t0xC495\n0x9CEC\t0xC496\n0x9CED\t0xC497\n0x9CEE\t0xC498\n0x9CEF\t0xC499\n0x9CF0\t0xC49A\n0x9CF1\t0xC49B\n0x9CF2\t0xC49D\n0x9CF3\t0xC49E\n0x9CF4\t0xC49F\n0x9CF5\t0xC4A0\n0x9CF6\t0xC4A1\n0x9CF7\t0xC4A2\n0x9CF8\t0xC4A3\n0x9CF9\t0xC4A4\n0x9CFA\t0xC4A5\n0x9CFB\t0xC4A6\n0x9CFC\t0xC4A7\n0x9CFD\t0xC4A8\n0x9CFE\t0xC4A9\n0x9D41\t0xC4AA\n0x9D42\t0xC4AB\n0x9D43\t0xC4AC\n0x9D44\t0xC4AD\n0x9D45\t0xC4AE\n0x9D46\t0xC4AF\n0x9D47\t0xC4B0\n0x9D48\t0xC4B1\n0x9D49\t0xC4B2\n0x9D4A\t0xC4B3\n0x9D4B\t0xC4B4\n0x9D4C\t0xC4B5\n0x9D4D\t0xC4B6\n0x9D4E\t0xC4B7\n0x9D4F\t0xC4B9\n0x9D50\t0xC4BA\n0x9D51\t0xC4BB\n0x9D52\t0xC4BD\n0x9D53\t0xC4BE\n0x9D54\t0xC4BF\n0x9D55\t0xC4C0\n0x9D56\t0xC4C1\n0x9D57\t0xC4C2\n0x9D58\t0xC4C3\n0x9D59\t0xC4C4\n0x9D5A\t0xC4C5\n0x9D61\t0xC4C6\n0x9D62\t0xC4C7\n0x9D63\t0xC4C8\n0x9D64\t0xC4C9\n0x9D65\t0xC4CA\n0x9D66\t0xC4CB\n0x9D67\t0xC4CC\n0x9D68\t0xC4CD\n0x9D69\t0xC4CE\n0x9D6A\t0xC4CF\n0x9D6B\t0xC4D0\n0x9D6C\t0xC4D1\n0x9D6D\t0xC4D2\n0x9D6E\t0xC4D3\n0x9D6F\t0xC4D4\n0x9D70\t0xC4D5\n0x9D71\t0xC4D6\n0x9D72\t0xC4D7\n0x9D73\t0xC4D8\n0x9D74\t0xC4D9\n0x9D75\t0xC4DA\n0x9D76\t0xC4DB\n0x9D77\t0xC4DC\n0x9D78\t0xC4DD\n0x9D79\t0xC4DE\n0x9D7A\t0xC4DF\n0x9D81\t0xC4E0\n0x9D82\t0xC4E1\n0x9D83\t0xC4E2\n0x9D84\t0xC4E3\n0x9D85\t0xC4E4\n0x9D86\t0xC4E5\n0x9D87\t0xC4E6\n0x9D88\t0xC4E7\n0x9D89\t0xC4E8\n0x9D8A\t0xC4EA\n0x9D8B\t0xC4EB\n0x9D8C\t0xC4EC\n0x9D8D\t0xC4ED\n0x9D8E\t0xC4EE\n0x9D8F\t0xC4EF\n0x9D90\t0xC4F2\n0x9D91\t0xC4F3\n0x9D92\t0xC4F5\n0x9D93\t0xC4F6\n0x9D94\t0xC4F7\n0x9D95\t0xC4F9\n0x9D96\t0xC4FB\n0x9D97\t0xC4FC\n0x9D98\t0xC4FD\n0x9D99\t0xC4FE\n0x9D9A\t0xC502\n0x9D9B\t0xC503\n0x9D9C\t0xC504\n0x9D9D\t0xC505\n0x9D9E\t0xC506\n0x9D9F\t0xC507\n0x9DA0\t0xC508\n0x9DA1\t0xC509\n0x9DA2\t0xC50A\n0x9DA3\t0xC50B\n0x9DA4\t0xC50D\n0x9DA5\t0xC50E\n0x9DA6\t0xC50F\n0x9DA7\t0xC511\n0x9DA8\t0xC512\n0x9DA9\t0xC513\n0x9DAA\t0xC515\n0x9DAB\t0xC516\n0x9DAC\t0xC517\n0x9DAD\t0xC518\n0x9DAE\t0xC519\n0x9DAF\t0xC51A\n0x9DB0\t0xC51B\n0x9DB1\t0xC51D\n0x9DB2\t0xC51E\n0x9DB3\t0xC51F\n0x9DB4\t0xC520\n0x9DB5\t0xC521\n0x9DB6\t0xC522\n0x9DB7\t0xC523\n0x9DB8\t0xC524\n0x9DB9\t0xC525\n0x9DBA\t0xC526\n0x9DBB\t0xC527\n0x9DBC\t0xC52A\n0x9DBD\t0xC52B\n0x9DBE\t0xC52D\n0x9DBF\t0xC52E\n0x9DC0\t0xC52F\n0x9DC1\t0xC531\n0x9DC2\t0xC532\n0x9DC3\t0xC533\n0x9DC4\t0xC534\n0x9DC5\t0xC535\n0x9DC6\t0xC536\n0x9DC7\t0xC537\n0x9DC8\t0xC53A\n0x9DC9\t0xC53C\n0x9DCA\t0xC53E\n0x9DCB\t0xC53F\n0x9DCC\t0xC540\n0x9DCD\t0xC541\n0x9DCE\t0xC542\n0x9DCF\t0xC543\n0x9DD0\t0xC546\n0x9DD1\t0xC547\n0x9DD2\t0xC54B\n0x9DD3\t0xC54F\n0x9DD4\t0xC550\n0x9DD5\t0xC551\n0x9DD6\t0xC552\n0x9DD7\t0xC556\n0x9DD8\t0xC55A\n0x9DD9\t0xC55B\n0x9DDA\t0xC55C\n0x9DDB\t0xC55F\n0x9DDC\t0xC562\n0x9DDD\t0xC563\n0x9DDE\t0xC565\n0x9DDF\t0xC566\n0x9DE0\t0xC567\n0x9DE1\t0xC569\n0x9DE2\t0xC56A\n0x9DE3\t0xC56B\n0x9DE4\t0xC56C\n0x9DE5\t0xC56D\n0x9DE6\t0xC56E\n0x9DE7\t0xC56F\n0x9DE8\t0xC572\n0x9DE9\t0xC576\n0x9DEA\t0xC577\n0x9DEB\t0xC578\n0x9DEC\t0xC579\n0x9DED\t0xC57A\n0x9DEE\t0xC57B\n0x9DEF\t0xC57E\n0x9DF0\t0xC57F\n0x9DF1\t0xC581\n0x9DF2\t0xC582\n0x9DF3\t0xC583\n0x9DF4\t0xC585\n0x9DF5\t0xC586\n0x9DF6\t0xC588\n0x9DF7\t0xC589\n0x9DF8\t0xC58A\n0x9DF9\t0xC58B\n0x9DFA\t0xC58E\n0x9DFB\t0xC590\n0x9DFC\t0xC592\n0x9DFD\t0xC593\n0x9DFE\t0xC594\n0x9E41\t0xC596\n0x9E42\t0xC599\n0x9E43\t0xC59A\n0x9E44\t0xC59B\n0x9E45\t0xC59D\n0x9E46\t0xC59E\n0x9E47\t0xC59F\n0x9E48\t0xC5A1\n0x9E49\t0xC5A2\n0x9E4A\t0xC5A3\n0x9E4B\t0xC5A4\n0x9E4C\t0xC5A5\n0x9E4D\t0xC5A6\n0x9E4E\t0xC5A7\n0x9E4F\t0xC5A8\n0x9E50\t0xC5AA\n0x9E51\t0xC5AB\n0x9E52\t0xC5AC\n0x9E53\t0xC5AD\n0x9E54\t0xC5AE\n0x9E55\t0xC5AF\n0x9E56\t0xC5B0\n0x9E57\t0xC5B1\n0x9E58\t0xC5B2\n0x9E59\t0xC5B3\n0x9E5A\t0xC5B6\n0x9E61\t0xC5B7\n0x9E62\t0xC5BA\n0x9E63\t0xC5BF\n0x9E64\t0xC5C0\n0x9E65\t0xC5C1\n0x9E66\t0xC5C2\n0x9E67\t0xC5C3\n0x9E68\t0xC5CB\n0x9E69\t0xC5CD\n0x9E6A\t0xC5CF\n0x9E6B\t0xC5D2\n0x9E6C\t0xC5D3\n0x9E6D\t0xC5D5\n0x9E6E\t0xC5D6\n0x9E6F\t0xC5D7\n0x9E70\t0xC5D9\n0x9E71\t0xC5DA\n0x9E72\t0xC5DB\n0x9E73\t0xC5DC\n0x9E74\t0xC5DD\n0x9E75\t0xC5DE\n0x9E76\t0xC5DF\n0x9E77\t0xC5E2\n0x9E78\t0xC5E4\n0x9E79\t0xC5E6\n0x9E7A\t0xC5E7\n0x9E81\t0xC5E8\n0x9E82\t0xC5E9\n0x9E83\t0xC5EA\n0x9E84\t0xC5EB\n0x9E85\t0xC5EF\n0x9E86\t0xC5F1\n0x9E87\t0xC5F2\n0x9E88\t0xC5F3\n0x9E89\t0xC5F5\n0x9E8A\t0xC5F8\n0x9E8B\t0xC5F9\n0x9E8C\t0xC5FA\n0x9E8D\t0xC5FB\n0x9E8E\t0xC602\n0x9E8F\t0xC603\n0x9E90\t0xC604\n0x9E91\t0xC609\n0x9E92\t0xC60A\n0x9E93\t0xC60B\n0x9E94\t0xC60D\n0x9E95\t0xC60E\n0x9E96\t0xC60F\n0x9E97\t0xC611\n0x9E98\t0xC612\n0x9E99\t0xC613\n0x9E9A\t0xC614\n0x9E9B\t0xC615\n0x9E9C\t0xC616\n0x9E9D\t0xC617\n0x9E9E\t0xC61A\n0x9E9F\t0xC61D\n0x9EA0\t0xC61E\n0x9EA1\t0xC61F\n0x9EA2\t0xC620\n0x9EA3\t0xC621\n0x9EA4\t0xC622\n0x9EA5\t0xC623\n0x9EA6\t0xC626\n0x9EA7\t0xC627\n0x9EA8\t0xC629\n0x9EA9\t0xC62A\n0x9EAA\t0xC62B\n0x9EAB\t0xC62F\n0x9EAC\t0xC631\n0x9EAD\t0xC632\n0x9EAE\t0xC636\n0x9EAF\t0xC638\n0x9EB0\t0xC63A\n0x9EB1\t0xC63C\n0x9EB2\t0xC63D\n0x9EB3\t0xC63E\n0x9EB4\t0xC63F\n0x9EB5\t0xC642\n0x9EB6\t0xC643\n0x9EB7\t0xC645\n0x9EB8\t0xC646\n0x9EB9\t0xC647\n0x9EBA\t0xC649\n0x9EBB\t0xC64A\n0x9EBC\t0xC64B\n0x9EBD\t0xC64C\n0x9EBE\t0xC64D\n0x9EBF\t0xC64E\n0x9EC0\t0xC64F\n0x9EC1\t0xC652\n0x9EC2\t0xC656\n0x9EC3\t0xC657\n0x9EC4\t0xC658\n0x9EC5\t0xC659\n0x9EC6\t0xC65A\n0x9EC7\t0xC65B\n0x9EC8\t0xC65E\n0x9EC9\t0xC65F\n0x9ECA\t0xC661\n0x9ECB\t0xC662\n0x9ECC\t0xC663\n0x9ECD\t0xC664\n0x9ECE\t0xC665\n0x9ECF\t0xC666\n0x9ED0\t0xC667\n0x9ED1\t0xC668\n0x9ED2\t0xC669\n0x9ED3\t0xC66A\n0x9ED4\t0xC66B\n0x9ED5\t0xC66D\n0x9ED6\t0xC66E\n0x9ED7\t0xC670\n0x9ED8\t0xC672\n0x9ED9\t0xC673\n0x9EDA\t0xC674\n0x9EDB\t0xC675\n0x9EDC\t0xC676\n0x9EDD\t0xC677\n0x9EDE\t0xC67A\n0x9EDF\t0xC67B\n0x9EE0\t0xC67D\n0x9EE1\t0xC67E\n0x9EE2\t0xC67F\n0x9EE3\t0xC681\n0x9EE4\t0xC682\n0x9EE5\t0xC683\n0x9EE6\t0xC684\n0x9EE7\t0xC685\n0x9EE8\t0xC686\n0x9EE9\t0xC687\n0x9EEA\t0xC68A\n0x9EEB\t0xC68C\n0x9EEC\t0xC68E\n0x9EED\t0xC68F\n0x9EEE\t0xC690\n0x9EEF\t0xC691\n0x9EF0\t0xC692\n0x9EF1\t0xC693\n0x9EF2\t0xC696\n0x9EF3\t0xC697\n0x9EF4\t0xC699\n0x9EF5\t0xC69A\n0x9EF6\t0xC69B\n0x9EF7\t0xC69D\n0x9EF8\t0xC69E\n0x9EF9\t0xC69F\n0x9EFA\t0xC6A0\n0x9EFB\t0xC6A1\n0x9EFC\t0xC6A2\n0x9EFD\t0xC6A3\n0x9EFE\t0xC6A6\n0x9F41\t0xC6A8\n0x9F42\t0xC6AA\n0x9F43\t0xC6AB\n0x9F44\t0xC6AC\n0x9F45\t0xC6AD\n0x9F46\t0xC6AE\n0x9F47\t0xC6AF\n0x9F48\t0xC6B2\n0x9F49\t0xC6B3\n0x9F4A\t0xC6B5\n0x9F4B\t0xC6B6\n0x9F4C\t0xC6B7\n0x9F4D\t0xC6BB\n0x9F4E\t0xC6BC\n0x9F4F\t0xC6BD\n0x9F50\t0xC6BE\n0x9F51\t0xC6BF\n0x9F52\t0xC6C2\n0x9F53\t0xC6C4\n0x9F54\t0xC6C6\n0x9F55\t0xC6C7\n0x9F56\t0xC6C8\n0x9F57\t0xC6C9\n0x9F58\t0xC6CA\n0x9F59\t0xC6CB\n0x9F5A\t0xC6CE\n0x9F61\t0xC6CF\n0x9F62\t0xC6D1\n0x9F63\t0xC6D2\n0x9F64\t0xC6D3\n0x9F65\t0xC6D5\n0x9F66\t0xC6D6\n0x9F67\t0xC6D7\n0x9F68\t0xC6D8\n0x9F69\t0xC6D9\n0x9F6A\t0xC6DA\n0x9F6B\t0xC6DB\n0x9F6C\t0xC6DE\n0x9F6D\t0xC6DF\n0x9F6E\t0xC6E2\n0x9F6F\t0xC6E3\n0x9F70\t0xC6E4\n0x9F71\t0xC6E5\n0x9F72\t0xC6E6\n0x9F73\t0xC6E7\n0x9F74\t0xC6EA\n0x9F75\t0xC6EB\n0x9F76\t0xC6ED\n0x9F77\t0xC6EE\n0x9F78\t0xC6EF\n0x9F79\t0xC6F1\n0x9F7A\t0xC6F2\n0x9F81\t0xC6F3\n0x9F82\t0xC6F4\n0x9F83\t0xC6F5\n0x9F84\t0xC6F6\n0x9F85\t0xC6F7\n0x9F86\t0xC6FA\n0x9F87\t0xC6FB\n0x9F88\t0xC6FC\n0x9F89\t0xC6FE\n0x9F8A\t0xC6FF\n0x9F8B\t0xC700\n0x9F8C\t0xC701\n0x9F8D\t0xC702\n0x9F8E\t0xC703\n0x9F8F\t0xC706\n0x9F90\t0xC707\n0x9F91\t0xC709\n0x9F92\t0xC70A\n0x9F93\t0xC70B\n0x9F94\t0xC70D\n0x9F95\t0xC70E\n0x9F96\t0xC70F\n0x9F97\t0xC710\n0x9F98\t0xC711\n0x9F99\t0xC712\n0x9F9A\t0xC713\n0x9F9B\t0xC716\n0x9F9C\t0xC718\n0x9F9D\t0xC71A\n0x9F9E\t0xC71B\n0x9F9F\t0xC71C\n0x9FA0\t0xC71D\n0x9FA1\t0xC71E\n0x9FA2\t0xC71F\n0x9FA3\t0xC722\n0x9FA4\t0xC723\n0x9FA5\t0xC725\n0x9FA6\t0xC726\n0x9FA7\t0xC727\n0x9FA8\t0xC729\n0x9FA9\t0xC72A\n0x9FAA\t0xC72B\n0x9FAB\t0xC72C\n0x9FAC\t0xC72D\n0x9FAD\t0xC72E\n0x9FAE\t0xC72F\n0x9FAF\t0xC732\n0x9FB0\t0xC734\n0x9FB1\t0xC736\n0x9FB2\t0xC738\n0x9FB3\t0xC739\n0x9FB4\t0xC73A\n0x9FB5\t0xC73B\n0x9FB6\t0xC73E\n0x9FB7\t0xC73F\n0x9FB8\t0xC741\n0x9FB9\t0xC742\n0x9FBA\t0xC743\n0x9FBB\t0xC745\n0x9FBC\t0xC746\n0x9FBD\t0xC747\n0x9FBE\t0xC748\n0x9FBF\t0xC749\n0x9FC0\t0xC74B\n0x9FC1\t0xC74E\n0x9FC2\t0xC750\n0x9FC3\t0xC759\n0x9FC4\t0xC75A\n0x9FC5\t0xC75B\n0x9FC6\t0xC75D\n0x9FC7\t0xC75E\n0x9FC8\t0xC75F\n0x9FC9\t0xC761\n0x9FCA\t0xC762\n0x9FCB\t0xC763\n0x9FCC\t0xC764\n0x9FCD\t0xC765\n0x9FCE\t0xC766\n0x9FCF\t0xC767\n0x9FD0\t0xC769\n0x9FD1\t0xC76A\n0x9FD2\t0xC76C\n0x9FD3\t0xC76D\n0x9FD4\t0xC76E\n0x9FD5\t0xC76F\n0x9FD6\t0xC770\n0x9FD7\t0xC771\n0x9FD8\t0xC772\n0x9FD9\t0xC773\n0x9FDA\t0xC776\n0x9FDB\t0xC777\n0x9FDC\t0xC779\n0x9FDD\t0xC77A\n0x9FDE\t0xC77B\n0x9FDF\t0xC77F\n0x9FE0\t0xC780\n0x9FE1\t0xC781\n0x9FE2\t0xC782\n0x9FE3\t0xC786\n0x9FE4\t0xC78B\n0x9FE5\t0xC78C\n0x9FE6\t0xC78D\n0x9FE7\t0xC78F\n0x9FE8\t0xC792\n0x9FE9\t0xC793\n0x9FEA\t0xC795\n0x9FEB\t0xC799\n0x9FEC\t0xC79B\n0x9FED\t0xC79C\n0x9FEE\t0xC79D\n0x9FEF\t0xC79E\n0x9FF0\t0xC79F\n0x9FF1\t0xC7A2\n0x9FF2\t0xC7A7\n0x9FF3\t0xC7A8\n0x9FF4\t0xC7A9\n0x9FF5\t0xC7AA\n0x9FF6\t0xC7AB\n0x9FF7\t0xC7AE\n0x9FF8\t0xC7AF\n0x9FF9\t0xC7B1\n0x9FFA\t0xC7B2\n0x9FFB\t0xC7B3\n0x9FFC\t0xC7B5\n0x9FFD\t0xC7B6\n0x9FFE\t0xC7B7\n0xA041\t0xC7B8\n0xA042\t0xC7B9\n0xA043\t0xC7BA\n0xA044\t0xC7BB\n0xA045\t0xC7BE\n0xA046\t0xC7C2\n0xA047\t0xC7C3\n0xA048\t0xC7C4\n0xA049\t0xC7C5\n0xA04A\t0xC7C6\n0xA04B\t0xC7C7\n0xA04C\t0xC7CA\n0xA04D\t0xC7CB\n0xA04E\t0xC7CD\n0xA04F\t0xC7CF\n0xA050\t0xC7D1\n0xA051\t0xC7D2\n0xA052\t0xC7D3\n0xA053\t0xC7D4\n0xA054\t0xC7D5\n0xA055\t0xC7D6\n0xA056\t0xC7D7\n0xA057\t0xC7D9\n0xA058\t0xC7DA\n0xA059\t0xC7DB\n0xA05A\t0xC7DC\n0xA061\t0xC7DE\n0xA062\t0xC7DF\n0xA063\t0xC7E0\n0xA064\t0xC7E1\n0xA065\t0xC7E2\n0xA066\t0xC7E3\n0xA067\t0xC7E5\n0xA068\t0xC7E6\n0xA069\t0xC7E7\n0xA06A\t0xC7E9\n0xA06B\t0xC7EA\n0xA06C\t0xC7EB\n0xA06D\t0xC7ED\n0xA06E\t0xC7EE\n0xA06F\t0xC7EF\n0xA070\t0xC7F0\n0xA071\t0xC7F1\n0xA072\t0xC7F2\n0xA073\t0xC7F3\n0xA074\t0xC7F4\n0xA075\t0xC7F5\n0xA076\t0xC7F6\n0xA077\t0xC7F7\n0xA078\t0xC7F8\n0xA079\t0xC7F9\n0xA07A\t0xC7FA\n0xA081\t0xC7FB\n0xA082\t0xC7FC\n0xA083\t0xC7FD\n0xA084\t0xC7FE\n0xA085\t0xC7FF\n0xA086\t0xC802\n0xA087\t0xC803\n0xA088\t0xC805\n0xA089\t0xC806\n0xA08A\t0xC807\n0xA08B\t0xC809\n0xA08C\t0xC80B\n0xA08D\t0xC80C\n0xA08E\t0xC80D\n0xA08F\t0xC80E\n0xA090\t0xC80F\n0xA091\t0xC812\n0xA092\t0xC814\n0xA093\t0xC817\n0xA094\t0xC818\n0xA095\t0xC819\n0xA096\t0xC81A\n0xA097\t0xC81B\n0xA098\t0xC81E\n0xA099\t0xC81F\n0xA09A\t0xC821\n0xA09B\t0xC822\n0xA09C\t0xC823\n0xA09D\t0xC825\n0xA09E\t0xC826\n0xA09F\t0xC827\n0xA0A0\t0xC828\n0xA0A1\t0xC829\n0xA0A2\t0xC82A\n0xA0A3\t0xC82B\n0xA0A4\t0xC82E\n0xA0A5\t0xC830\n0xA0A6\t0xC832\n0xA0A7\t0xC833\n0xA0A8\t0xC834\n0xA0A9\t0xC835\n0xA0AA\t0xC836\n0xA0AB\t0xC837\n0xA0AC\t0xC839\n0xA0AD\t0xC83A\n0xA0AE\t0xC83B\n0xA0AF\t0xC83D\n0xA0B0\t0xC83E\n0xA0B1\t0xC83F\n0xA0B2\t0xC841\n0xA0B3\t0xC842\n0xA0B4\t0xC843\n0xA0B5\t0xC844\n0xA0B6\t0xC845\n0xA0B7\t0xC846\n0xA0B8\t0xC847\n0xA0B9\t0xC84A\n0xA0BA\t0xC84B\n0xA0BB\t0xC84E\n0xA0BC\t0xC84F\n0xA0BD\t0xC850\n0xA0BE\t0xC851\n0xA0BF\t0xC852\n0xA0C0\t0xC853\n0xA0C1\t0xC855\n0xA0C2\t0xC856\n0xA0C3\t0xC857\n0xA0C4\t0xC858\n0xA0C5\t0xC859\n0xA0C6\t0xC85A\n0xA0C7\t0xC85B\n0xA0C8\t0xC85C\n0xA0C9\t0xC85D\n0xA0CA\t0xC85E\n0xA0CB\t0xC85F\n0xA0CC\t0xC860\n0xA0CD\t0xC861\n0xA0CE\t0xC862\n0xA0CF\t0xC863\n0xA0D0\t0xC864\n0xA0D1\t0xC865\n0xA0D2\t0xC866\n0xA0D3\t0xC867\n0xA0D4\t0xC868\n0xA0D5\t0xC869\n0xA0D6\t0xC86A\n0xA0D7\t0xC86B\n0xA0D8\t0xC86C\n0xA0D9\t0xC86D\n0xA0DA\t0xC86E\n0xA0DB\t0xC86F\n0xA0DC\t0xC872\n0xA0DD\t0xC873\n0xA0DE\t0xC875\n0xA0DF\t0xC876\n0xA0E0\t0xC877\n0xA0E1\t0xC879\n0xA0E2\t0xC87B\n0xA0E3\t0xC87C\n0xA0E4\t0xC87D\n0xA0E5\t0xC87E\n0xA0E6\t0xC87F\n0xA0E7\t0xC882\n0xA0E8\t0xC884\n0xA0E9\t0xC888\n0xA0EA\t0xC889\n0xA0EB\t0xC88A\n0xA0EC\t0xC88E\n0xA0ED\t0xC88F\n0xA0EE\t0xC890\n0xA0EF\t0xC891\n0xA0F0\t0xC892\n0xA0F1\t0xC893\n0xA0F2\t0xC895\n0xA0F3\t0xC896\n0xA0F4\t0xC897\n0xA0F5\t0xC898\n0xA0F6\t0xC899\n0xA0F7\t0xC89A\n0xA0F8\t0xC89B\n0xA0F9\t0xC89C\n0xA0FA\t0xC89E\n0xA0FB\t0xC8A0\n0xA0FC\t0xC8A2\n0xA0FD\t0xC8A3\n0xA0FE\t0xC8A4\n0xA141\t0xC8A5\n0xA142\t0xC8A6\n0xA143\t0xC8A7\n0xA144\t0xC8A9\n0xA145\t0xC8AA\n0xA146\t0xC8AB\n0xA147\t0xC8AC\n0xA148\t0xC8AD\n0xA149\t0xC8AE\n0xA14A\t0xC8AF\n0xA14B\t0xC8B0\n0xA14C\t0xC8B1\n0xA14D\t0xC8B2\n0xA14E\t0xC8B3\n0xA14F\t0xC8B4\n0xA150\t0xC8B5\n0xA151\t0xC8B6\n0xA152\t0xC8B7\n0xA153\t0xC8B8\n0xA154\t0xC8B9\n0xA155\t0xC8BA\n0xA156\t0xC8BB\n0xA157\t0xC8BE\n0xA158\t0xC8BF\n0xA159\t0xC8C0\n0xA15A\t0xC8C1\n0xA161\t0xC8C2\n0xA162\t0xC8C3\n0xA163\t0xC8C5\n0xA164\t0xC8C6\n0xA165\t0xC8C7\n0xA166\t0xC8C9\n0xA167\t0xC8CA\n0xA168\t0xC8CB\n0xA169\t0xC8CD\n0xA16A\t0xC8CE\n0xA16B\t0xC8CF\n0xA16C\t0xC8D0\n0xA16D\t0xC8D1\n0xA16E\t0xC8D2\n0xA16F\t0xC8D3\n0xA170\t0xC8D6\n0xA171\t0xC8D8\n0xA172\t0xC8DA\n0xA173\t0xC8DB\n0xA174\t0xC8DC\n0xA175\t0xC8DD\n0xA176\t0xC8DE\n0xA177\t0xC8DF\n0xA178\t0xC8E2\n0xA179\t0xC8E3\n0xA17A\t0xC8E5\n0xA181\t0xC8E6\n0xA182\t0xC8E7\n0xA183\t0xC8E8\n0xA184\t0xC8E9\n0xA185\t0xC8EA\n0xA186\t0xC8EB\n0xA187\t0xC8EC\n0xA188\t0xC8ED\n0xA189\t0xC8EE\n0xA18A\t0xC8EF\n0xA18B\t0xC8F0\n0xA18C\t0xC8F1\n0xA18D\t0xC8F2\n0xA18E\t0xC8F3\n0xA18F\t0xC8F4\n0xA190\t0xC8F6\n0xA191\t0xC8F7\n0xA192\t0xC8F8\n0xA193\t0xC8F9\n0xA194\t0xC8FA\n0xA195\t0xC8FB\n0xA196\t0xC8FE\n0xA197\t0xC8FF\n0xA198\t0xC901\n0xA199\t0xC902\n0xA19A\t0xC903\n0xA19B\t0xC907\n0xA19C\t0xC908\n0xA19D\t0xC909\n0xA19E\t0xC90A\n0xA19F\t0xC90B\n0xA1A0\t0xC90E\n0xA1A1\t0x3000\n0xA1A2\t0x3001\n0xA1A3\t0x3002\n0xA1A4\t0x00B7\n0xA1A5\t0x2025\n0xA1A6\t0x2026\n0xA1A7\t0x00A8\n0xA1A8\t0x3003\n0xA1A9\t0x00AD\n0xA1AA\t0x2015\n0xA1AB\t0x2225\n0xA1AC\t0xFF3C\n0xA1AD\t0x223C\n0xA1AE\t0x2018\n0xA1AF\t0x2019\n0xA1B0\t0x201C\n0xA1B1\t0x201D\n0xA1B2\t0x3014\n0xA1B3\t0x3015\n0xA1B4\t0x3008\n0xA1B5\t0x3009\n0xA1B6\t0x300A\n0xA1B7\t0x300B\n0xA1B8\t0x300C\n0xA1B9\t0x300D\n0xA1BA\t0x300E\n0xA1BB\t0x300F\n0xA1BC\t0x3010\n0xA1BD\t0x3011\n0xA1BE\t0x00B1\n0xA1BF\t0x00D7\n0xA1C0\t0x00F7\n0xA1C1\t0x2260\n0xA1C2\t0x2264\n0xA1C3\t0x2265\n0xA1C4\t0x221E\n0xA1C5\t0x2234\n0xA1C6\t0x00B0\n0xA1C7\t0x2032\n0xA1C8\t0x2033\n0xA1C9\t0x2103\n0xA1CA\t0x212B\n0xA1CB\t0xFFE0\n0xA1CC\t0xFFE1\n0xA1CD\t0xFFE5\n0xA1CE\t0x2642\n0xA1CF\t0x2640\n0xA1D0\t0x2220\n0xA1D1\t0x22A5\n0xA1D2\t0x2312\n0xA1D3\t0x2202\n0xA1D4\t0x2207\n0xA1D5\t0x2261\n0xA1D6\t0x2252\n0xA1D7\t0x00A7\n0xA1D8\t0x203B\n0xA1D9\t0x2606\n0xA1DA\t0x2605\n0xA1DB\t0x25CB\n0xA1DC\t0x25CF\n0xA1DD\t0x25CE\n0xA1DE\t0x25C7\n0xA1DF\t0x25C6\n0xA1E0\t0x25A1\n0xA1E1\t0x25A0\n0xA1E2\t0x25B3\n0xA1E3\t0x25B2\n0xA1E4\t0x25BD\n0xA1E5\t0x25BC\n0xA1E6\t0x2192\n0xA1E7\t0x2190\n0xA1E8\t0x2191\n0xA1E9\t0x2193\n0xA1EA\t0x2194\n0xA1EB\t0x3013\n0xA1EC\t0x226A\n0xA1ED\t0x226B\n0xA1EE\t0x221A\n0xA1EF\t0x223D\n0xA1F0\t0x221D\n0xA1F1\t0x2235\n0xA1F2\t0x222B\n0xA1F3\t0x222C\n0xA1F4\t0x2208\n0xA1F5\t0x220B\n0xA1F6\t0x2286\n0xA1F7\t0x2287\n0xA1F8\t0x2282\n0xA1F9\t0x2283\n0xA1FA\t0x222A\n0xA1FB\t0x2229\n0xA1FC\t0x2227\n0xA1FD\t0x2228\n0xA1FE\t0xFFE2\n0xA241\t0xC910\n0xA242\t0xC912\n0xA243\t0xC913\n0xA244\t0xC914\n0xA245\t0xC915\n0xA246\t0xC916\n0xA247\t0xC917\n0xA248\t0xC919\n0xA249\t0xC91A\n0xA24A\t0xC91B\n0xA24B\t0xC91C\n0xA24C\t0xC91D\n0xA24D\t0xC91E\n0xA24E\t0xC91F\n0xA24F\t0xC920\n0xA250\t0xC921\n0xA251\t0xC922\n0xA252\t0xC923\n0xA253\t0xC924\n0xA254\t0xC925\n0xA255\t0xC926\n0xA256\t0xC927\n0xA257\t0xC928\n0xA258\t0xC929\n0xA259\t0xC92A\n0xA25A\t0xC92B\n0xA261\t0xC92D\n0xA262\t0xC92E\n0xA263\t0xC92F\n0xA264\t0xC930\n0xA265\t0xC931\n0xA266\t0xC932\n0xA267\t0xC933\n0xA268\t0xC935\n0xA269\t0xC936\n0xA26A\t0xC937\n0xA26B\t0xC938\n0xA26C\t0xC939\n0xA26D\t0xC93A\n0xA26E\t0xC93B\n0xA26F\t0xC93C\n0xA270\t0xC93D\n0xA271\t0xC93E\n0xA272\t0xC93F\n0xA273\t0xC940\n0xA274\t0xC941\n0xA275\t0xC942\n0xA276\t0xC943\n0xA277\t0xC944\n0xA278\t0xC945\n0xA279\t0xC946\n0xA27A\t0xC947\n0xA281\t0xC948\n0xA282\t0xC949\n0xA283\t0xC94A\n0xA284\t0xC94B\n0xA285\t0xC94C\n0xA286\t0xC94D\n0xA287\t0xC94E\n0xA288\t0xC94F\n0xA289\t0xC952\n0xA28A\t0xC953\n0xA28B\t0xC955\n0xA28C\t0xC956\n0xA28D\t0xC957\n0xA28E\t0xC959\n0xA28F\t0xC95A\n0xA290\t0xC95B\n0xA291\t0xC95C\n0xA292\t0xC95D\n0xA293\t0xC95E\n0xA294\t0xC95F\n0xA295\t0xC962\n0xA296\t0xC964\n0xA297\t0xC965\n0xA298\t0xC966\n0xA299\t0xC967\n0xA29A\t0xC968\n0xA29B\t0xC969\n0xA29C\t0xC96A\n0xA29D\t0xC96B\n0xA29E\t0xC96D\n0xA29F\t0xC96E\n0xA2A0\t0xC96F\n0xA2A1\t0x21D2\n0xA2A2\t0x21D4\n0xA2A3\t0x2200\n0xA2A4\t0x2203\n0xA2A5\t0x00B4\n0xA2A6\t0xFF5E\n0xA2A7\t0x02C7\n0xA2A8\t0x02D8\n0xA2A9\t0x02DD\n0xA2AA\t0x02DA\n0xA2AB\t0x02D9\n0xA2AC\t0x00B8\n0xA2AD\t0x02DB\n0xA2AE\t0x00A1\n0xA2AF\t0x00BF\n0xA2B0\t0x02D0\n0xA2B1\t0x222E\n0xA2B2\t0x2211\n0xA2B3\t0x220F\n0xA2B4\t0x00A4\n0xA2B5\t0x2109\n0xA2B6\t0x2030\n0xA2B7\t0x25C1\n0xA2B8\t0x25C0\n0xA2B9\t0x25B7\n0xA2BA\t0x25B6\n0xA2BB\t0x2664\n0xA2BC\t0x2660\n0xA2BD\t0x2661\n0xA2BE\t0x2665\n0xA2BF\t0x2667\n0xA2C0\t0x2663\n0xA2C1\t0x2299\n0xA2C2\t0x25C8\n0xA2C3\t0x25A3\n0xA2C4\t0x25D0\n0xA2C5\t0x25D1\n0xA2C6\t0x2592\n0xA2C7\t0x25A4\n0xA2C8\t0x25A5\n0xA2C9\t0x25A8\n0xA2CA\t0x25A7\n0xA2CB\t0x25A6\n0xA2CC\t0x25A9\n0xA2CD\t0x2668\n0xA2CE\t0x260F\n0xA2CF\t0x260E\n0xA2D0\t0x261C\n0xA2D1\t0x261E\n0xA2D2\t0x00B6\n0xA2D3\t0x2020\n0xA2D4\t0x2021\n0xA2D5\t0x2195\n0xA2D6\t0x2197\n0xA2D7\t0x2199\n0xA2D8\t0x2196\n0xA2D9\t0x2198\n0xA2DA\t0x266D\n0xA2DB\t0x2669\n0xA2DC\t0x266A\n0xA2DD\t0x266C\n0xA2DE\t0x327F\n0xA2DF\t0x321C\n0xA2E0\t0x2116\n0xA2E1\t0x33C7\n0xA2E2\t0x2122\n0xA2E3\t0x33C2\n0xA2E4\t0x33D8\n0xA2E5\t0x2121\n0xA2E6\t0x20AC\n0xA2E7\t0x00AE\n0xA341\t0xC971\n0xA342\t0xC972\n0xA343\t0xC973\n0xA344\t0xC975\n0xA345\t0xC976\n0xA346\t0xC977\n0xA347\t0xC978\n0xA348\t0xC979\n0xA349\t0xC97A\n0xA34A\t0xC97B\n0xA34B\t0xC97D\n0xA34C\t0xC97E\n0xA34D\t0xC97F\n0xA34E\t0xC980\n0xA34F\t0xC981\n0xA350\t0xC982\n0xA351\t0xC983\n0xA352\t0xC984\n0xA353\t0xC985\n0xA354\t0xC986\n0xA355\t0xC987\n0xA356\t0xC98A\n0xA357\t0xC98B\n0xA358\t0xC98D\n0xA359\t0xC98E\n0xA35A\t0xC98F\n0xA361\t0xC991\n0xA362\t0xC992\n0xA363\t0xC993\n0xA364\t0xC994\n0xA365\t0xC995\n0xA366\t0xC996\n0xA367\t0xC997\n0xA368\t0xC99A\n0xA369\t0xC99C\n0xA36A\t0xC99E\n0xA36B\t0xC99F\n0xA36C\t0xC9A0\n0xA36D\t0xC9A1\n0xA36E\t0xC9A2\n0xA36F\t0xC9A3\n0xA370\t0xC9A4\n0xA371\t0xC9A5\n0xA372\t0xC9A6\n0xA373\t0xC9A7\n0xA374\t0xC9A8\n0xA375\t0xC9A9\n0xA376\t0xC9AA\n0xA377\t0xC9AB\n0xA378\t0xC9AC\n0xA379\t0xC9AD\n0xA37A\t0xC9AE\n0xA381\t0xC9AF\n0xA382\t0xC9B0\n0xA383\t0xC9B1\n0xA384\t0xC9B2\n0xA385\t0xC9B3\n0xA386\t0xC9B4\n0xA387\t0xC9B5\n0xA388\t0xC9B6\n0xA389\t0xC9B7\n0xA38A\t0xC9B8\n0xA38B\t0xC9B9\n0xA38C\t0xC9BA\n0xA38D\t0xC9BB\n0xA38E\t0xC9BC\n0xA38F\t0xC9BD\n0xA390\t0xC9BE\n0xA391\t0xC9BF\n0xA392\t0xC9C2\n0xA393\t0xC9C3\n0xA394\t0xC9C5\n0xA395\t0xC9C6\n0xA396\t0xC9C9\n0xA397\t0xC9CB\n0xA398\t0xC9CC\n0xA399\t0xC9CD\n0xA39A\t0xC9CE\n0xA39B\t0xC9CF\n0xA39C\t0xC9D2\n0xA39D\t0xC9D4\n0xA39E\t0xC9D7\n0xA39F\t0xC9D8\n0xA3A0\t0xC9DB\n0xA3A1\t0xFF01\n0xA3A2\t0xFF02\n0xA3A3\t0xFF03\n0xA3A4\t0xFF04\n0xA3A5\t0xFF05\n0xA3A6\t0xFF06\n0xA3A7\t0xFF07\n0xA3A8\t0xFF08\n0xA3A9\t0xFF09\n0xA3AA\t0xFF0A\n0xA3AB\t0xFF0B\n0xA3AC\t0xFF0C\n0xA3AD\t0xFF0D\n0xA3AE\t0xFF0E\n0xA3AF\t0xFF0F\n0xA3B0\t0xFF10\n0xA3B1\t0xFF11\n0xA3B2\t0xFF12\n0xA3B3\t0xFF13\n0xA3B4\t0xFF14\n0xA3B5\t0xFF15\n0xA3B6\t0xFF16\n0xA3B7\t0xFF17\n0xA3B8\t0xFF18\n0xA3B9\t0xFF19\n0xA3BA\t0xFF1A\n0xA3BB\t0xFF1B\n0xA3BC\t0xFF1C\n0xA3BD\t0xFF1D\n0xA3BE\t0xFF1E\n0xA3BF\t0xFF1F\n0xA3C0\t0xFF20\n0xA3C1\t0xFF21\n0xA3C2\t0xFF22\n0xA3C3\t0xFF23\n0xA3C4\t0xFF24\n0xA3C5\t0xFF25\n0xA3C6\t0xFF26\n0xA3C7\t0xFF27\n0xA3C8\t0xFF28\n0xA3C9\t0xFF29\n0xA3CA\t0xFF2A\n0xA3CB\t0xFF2B\n0xA3CC\t0xFF2C\n0xA3CD\t0xFF2D\n0xA3CE\t0xFF2E\n0xA3CF\t0xFF2F\n0xA3D0\t0xFF30\n0xA3D1\t0xFF31\n0xA3D2\t0xFF32\n0xA3D3\t0xFF33\n0xA3D4\t0xFF34\n0xA3D5\t0xFF35\n0xA3D6\t0xFF36\n0xA3D7\t0xFF37\n0xA3D8\t0xFF38\n0xA3D9\t0xFF39\n0xA3DA\t0xFF3A\n0xA3DB\t0xFF3B\n0xA3DC\t0xFFE6\n0xA3DD\t0xFF3D\n0xA3DE\t0xFF3E\n0xA3DF\t0xFF3F\n0xA3E0\t0xFF40\n0xA3E1\t0xFF41\n0xA3E2\t0xFF42\n0xA3E3\t0xFF43\n0xA3E4\t0xFF44\n0xA3E5\t0xFF45\n0xA3E6\t0xFF46\n0xA3E7\t0xFF47\n0xA3E8\t0xFF48\n0xA3E9\t0xFF49\n0xA3EA\t0xFF4A\n0xA3EB\t0xFF4B\n0xA3EC\t0xFF4C\n0xA3ED\t0xFF4D\n0xA3EE\t0xFF4E\n0xA3EF\t0xFF4F\n0xA3F0\t0xFF50\n0xA3F1\t0xFF51\n0xA3F2\t0xFF52\n0xA3F3\t0xFF53\n0xA3F4\t0xFF54\n0xA3F5\t0xFF55\n0xA3F6\t0xFF56\n0xA3F7\t0xFF57\n0xA3F8\t0xFF58\n0xA3F9\t0xFF59\n0xA3FA\t0xFF5A\n0xA3FB\t0xFF5B\n0xA3FC\t0xFF5C\n0xA3FD\t0xFF5D\n0xA3FE\t0xFFE3\n0xA441\t0xC9DE\n0xA442\t0xC9DF\n0xA443\t0xC9E1\n0xA444\t0xC9E3\n0xA445\t0xC9E5\n0xA446\t0xC9E6\n0xA447\t0xC9E8\n0xA448\t0xC9E9\n0xA449\t0xC9EA\n0xA44A\t0xC9EB\n0xA44B\t0xC9EE\n0xA44C\t0xC9F2\n0xA44D\t0xC9F3\n0xA44E\t0xC9F4\n0xA44F\t0xC9F5\n0xA450\t0xC9F6\n0xA451\t0xC9F7\n0xA452\t0xC9FA\n0xA453\t0xC9FB\n0xA454\t0xC9FD\n0xA455\t0xC9FE\n0xA456\t0xC9FF\n0xA457\t0xCA01\n0xA458\t0xCA02\n0xA459\t0xCA03\n0xA45A\t0xCA04\n0xA461\t0xCA05\n0xA462\t0xCA06\n0xA463\t0xCA07\n0xA464\t0xCA0A\n0xA465\t0xCA0E\n0xA466\t0xCA0F\n0xA467\t0xCA10\n0xA468\t0xCA11\n0xA469\t0xCA12\n0xA46A\t0xCA13\n0xA46B\t0xCA15\n0xA46C\t0xCA16\n0xA46D\t0xCA17\n0xA46E\t0xCA19\n0xA46F\t0xCA1A\n0xA470\t0xCA1B\n0xA471\t0xCA1C\n0xA472\t0xCA1D\n0xA473\t0xCA1E\n0xA474\t0xCA1F\n0xA475\t0xCA20\n0xA476\t0xCA21\n0xA477\t0xCA22\n0xA478\t0xCA23\n0xA479\t0xCA24\n0xA47A\t0xCA25\n0xA481\t0xCA26\n0xA482\t0xCA27\n0xA483\t0xCA28\n0xA484\t0xCA2A\n0xA485\t0xCA2B\n0xA486\t0xCA2C\n0xA487\t0xCA2D\n0xA488\t0xCA2E\n0xA489\t0xCA2F\n0xA48A\t0xCA30\n0xA48B\t0xCA31\n0xA48C\t0xCA32\n0xA48D\t0xCA33\n0xA48E\t0xCA34\n0xA48F\t0xCA35\n0xA490\t0xCA36\n0xA491\t0xCA37\n0xA492\t0xCA38\n0xA493\t0xCA39\n0xA494\t0xCA3A\n0xA495\t0xCA3B\n0xA496\t0xCA3C\n0xA497\t0xCA3D\n0xA498\t0xCA3E\n0xA499\t0xCA3F\n0xA49A\t0xCA40\n0xA49B\t0xCA41\n0xA49C\t0xCA42\n0xA49D\t0xCA43\n0xA49E\t0xCA44\n0xA49F\t0xCA45\n0xA4A0\t0xCA46\n0xA4A1\t0x3131\n0xA4A2\t0x3132\n0xA4A3\t0x3133\n0xA4A4\t0x3134\n0xA4A5\t0x3135\n0xA4A6\t0x3136\n0xA4A7\t0x3137\n0xA4A8\t0x3138\n0xA4A9\t0x3139\n0xA4AA\t0x313A\n0xA4AB\t0x313B\n0xA4AC\t0x313C\n0xA4AD\t0x313D\n0xA4AE\t0x313E\n0xA4AF\t0x313F\n0xA4B0\t0x3140\n0xA4B1\t0x3141\n0xA4B2\t0x3142\n0xA4B3\t0x3143\n0xA4B4\t0x3144\n0xA4B5\t0x3145\n0xA4B6\t0x3146\n0xA4B7\t0x3147\n0xA4B8\t0x3148\n0xA4B9\t0x3149\n0xA4BA\t0x314A\n0xA4BB\t0x314B\n0xA4BC\t0x314C\n0xA4BD\t0x314D\n0xA4BE\t0x314E\n0xA4BF\t0x314F\n0xA4C0\t0x3150\n0xA4C1\t0x3151\n0xA4C2\t0x3152\n0xA4C3\t0x3153\n0xA4C4\t0x3154\n0xA4C5\t0x3155\n0xA4C6\t0x3156\n0xA4C7\t0x3157\n0xA4C8\t0x3158\n0xA4C9\t0x3159\n0xA4CA\t0x315A\n0xA4CB\t0x315B\n0xA4CC\t0x315C\n0xA4CD\t0x315D\n0xA4CE\t0x315E\n0xA4CF\t0x315F\n0xA4D0\t0x3160\n0xA4D1\t0x3161\n0xA4D2\t0x3162\n0xA4D3\t0x3163\n0xA4D4\t0x3164\n0xA4D5\t0x3165\n0xA4D6\t0x3166\n0xA4D7\t0x3167\n0xA4D8\t0x3168\n0xA4D9\t0x3169\n0xA4DA\t0x316A\n0xA4DB\t0x316B\n0xA4DC\t0x316C\n0xA4DD\t0x316D\n0xA4DE\t0x316E\n0xA4DF\t0x316F\n0xA4E0\t0x3170\n0xA4E1\t0x3171\n0xA4E2\t0x3172\n0xA4E3\t0x3173\n0xA4E4\t0x3174\n0xA4E5\t0x3175\n0xA4E6\t0x3176\n0xA4E7\t0x3177\n0xA4E8\t0x3178\n0xA4E9\t0x3179\n0xA4EA\t0x317A\n0xA4EB\t0x317B\n0xA4EC\t0x317C\n0xA4ED\t0x317D\n0xA4EE\t0x317E\n0xA4EF\t0x317F\n0xA4F0\t0x3180\n0xA4F1\t0x3181\n0xA4F2\t0x3182\n0xA4F3\t0x3183\n0xA4F4\t0x3184\n0xA4F5\t0x3185\n0xA4F6\t0x3186\n0xA4F7\t0x3187\n0xA4F8\t0x3188\n0xA4F9\t0x3189\n0xA4FA\t0x318A\n0xA4FB\t0x318B\n0xA4FC\t0x318C\n0xA4FD\t0x318D\n0xA4FE\t0x318E\n0xA541\t0xCA47\n0xA542\t0xCA48\n0xA543\t0xCA49\n0xA544\t0xCA4A\n0xA545\t0xCA4B\n0xA546\t0xCA4E\n0xA547\t0xCA4F\n0xA548\t0xCA51\n0xA549\t0xCA52\n0xA54A\t0xCA53\n0xA54B\t0xCA55\n0xA54C\t0xCA56\n0xA54D\t0xCA57\n0xA54E\t0xCA58\n0xA54F\t0xCA59\n0xA550\t0xCA5A\n0xA551\t0xCA5B\n0xA552\t0xCA5E\n0xA553\t0xCA62\n0xA554\t0xCA63\n0xA555\t0xCA64\n0xA556\t0xCA65\n0xA557\t0xCA66\n0xA558\t0xCA67\n0xA559\t0xCA69\n0xA55A\t0xCA6A\n0xA561\t0xCA6B\n0xA562\t0xCA6C\n0xA563\t0xCA6D\n0xA564\t0xCA6E\n0xA565\t0xCA6F\n0xA566\t0xCA70\n0xA567\t0xCA71\n0xA568\t0xCA72\n0xA569\t0xCA73\n0xA56A\t0xCA74\n0xA56B\t0xCA75\n0xA56C\t0xCA76\n0xA56D\t0xCA77\n0xA56E\t0xCA78\n0xA56F\t0xCA79\n0xA570\t0xCA7A\n0xA571\t0xCA7B\n0xA572\t0xCA7C\n0xA573\t0xCA7E\n0xA574\t0xCA7F\n0xA575\t0xCA80\n0xA576\t0xCA81\n0xA577\t0xCA82\n0xA578\t0xCA83\n0xA579\t0xCA85\n0xA57A\t0xCA86\n0xA581\t0xCA87\n0xA582\t0xCA88\n0xA583\t0xCA89\n0xA584\t0xCA8A\n0xA585\t0xCA8B\n0xA586\t0xCA8C\n0xA587\t0xCA8D\n0xA588\t0xCA8E\n0xA589\t0xCA8F\n0xA58A\t0xCA90\n0xA58B\t0xCA91\n0xA58C\t0xCA92\n0xA58D\t0xCA93\n0xA58E\t0xCA94\n0xA58F\t0xCA95\n0xA590\t0xCA96\n0xA591\t0xCA97\n0xA592\t0xCA99\n0xA593\t0xCA9A\n0xA594\t0xCA9B\n0xA595\t0xCA9C\n0xA596\t0xCA9D\n0xA597\t0xCA9E\n0xA598\t0xCA9F\n0xA599\t0xCAA0\n0xA59A\t0xCAA1\n0xA59B\t0xCAA2\n0xA59C\t0xCAA3\n0xA59D\t0xCAA4\n0xA59E\t0xCAA5\n0xA59F\t0xCAA6\n0xA5A0\t0xCAA7\n0xA5A1\t0x2170\n0xA5A2\t0x2171\n0xA5A3\t0x2172\n0xA5A4\t0x2173\n0xA5A5\t0x2174\n0xA5A6\t0x2175\n0xA5A7\t0x2176\n0xA5A8\t0x2177\n0xA5A9\t0x2178\n0xA5AA\t0x2179\n0xA5B0\t0x2160\n0xA5B1\t0x2161\n0xA5B2\t0x2162\n0xA5B3\t0x2163\n0xA5B4\t0x2164\n0xA5B5\t0x2165\n0xA5B6\t0x2166\n0xA5B7\t0x2167\n0xA5B8\t0x2168\n0xA5B9\t0x2169\n0xA5C1\t0x0391\n0xA5C2\t0x0392\n0xA5C3\t0x0393\n0xA5C4\t0x0394\n0xA5C5\t0x0395\n0xA5C6\t0x0396\n0xA5C7\t0x0397\n0xA5C8\t0x0398\n0xA5C9\t0x0399\n0xA5CA\t0x039A\n0xA5CB\t0x039B\n0xA5CC\t0x039C\n0xA5CD\t0x039D\n0xA5CE\t0x039E\n0xA5CF\t0x039F\n0xA5D0\t0x03A0\n0xA5D1\t0x03A1\n0xA5D2\t0x03A3\n0xA5D3\t0x03A4\n0xA5D4\t0x03A5\n0xA5D5\t0x03A6\n0xA5D6\t0x03A7\n0xA5D7\t0x03A8\n0xA5D8\t0x03A9\n0xA5E1\t0x03B1\n0xA5E2\t0x03B2\n0xA5E3\t0x03B3\n0xA5E4\t0x03B4\n0xA5E5\t0x03B5\n0xA5E6\t0x03B6\n0xA5E7\t0x03B7\n0xA5E8\t0x03B8\n0xA5E9\t0x03B9\n0xA5EA\t0x03BA\n0xA5EB\t0x03BB\n0xA5EC\t0x03BC\n0xA5ED\t0x03BD\n0xA5EE\t0x03BE\n0xA5EF\t0x03BF\n0xA5F0\t0x03C0\n0xA5F1\t0x03C1\n0xA5F2\t0x03C3\n0xA5F3\t0x03C4\n0xA5F4\t0x03C5\n0xA5F5\t0x03C6\n0xA5F6\t0x03C7\n0xA5F7\t0x03C8\n0xA5F8\t0x03C9\n0xA641\t0xCAA8\n0xA642\t0xCAA9\n0xA643\t0xCAAA\n0xA644\t0xCAAB\n0xA645\t0xCAAC\n0xA646\t0xCAAD\n0xA647\t0xCAAE\n0xA648\t0xCAAF\n0xA649\t0xCAB0\n0xA64A\t0xCAB1\n0xA64B\t0xCAB2\n0xA64C\t0xCAB3\n0xA64D\t0xCAB4\n0xA64E\t0xCAB5\n0xA64F\t0xCAB6\n0xA650\t0xCAB7\n0xA651\t0xCAB8\n0xA652\t0xCAB9\n0xA653\t0xCABA\n0xA654\t0xCABB\n0xA655\t0xCABE\n0xA656\t0xCABF\n0xA657\t0xCAC1\n0xA658\t0xCAC2\n0xA659\t0xCAC3\n0xA65A\t0xCAC5\n0xA661\t0xCAC6\n0xA662\t0xCAC7\n0xA663\t0xCAC8\n0xA664\t0xCAC9\n0xA665\t0xCACA\n0xA666\t0xCACB\n0xA667\t0xCACE\n0xA668\t0xCAD0\n0xA669\t0xCAD2\n0xA66A\t0xCAD4\n0xA66B\t0xCAD5\n0xA66C\t0xCAD6\n0xA66D\t0xCAD7\n0xA66E\t0xCADA\n0xA66F\t0xCADB\n0xA670\t0xCADC\n0xA671\t0xCADD\n0xA672\t0xCADE\n0xA673\t0xCADF\n0xA674\t0xCAE1\n0xA675\t0xCAE2\n0xA676\t0xCAE3\n0xA677\t0xCAE4\n0xA678\t0xCAE5\n0xA679\t0xCAE6\n0xA67A\t0xCAE7\n0xA681\t0xCAE8\n0xA682\t0xCAE9\n0xA683\t0xCAEA\n0xA684\t0xCAEB\n0xA685\t0xCAED\n0xA686\t0xCAEE\n0xA687\t0xCAEF\n0xA688\t0xCAF0\n0xA689\t0xCAF1\n0xA68A\t0xCAF2\n0xA68B\t0xCAF3\n0xA68C\t0xCAF5\n0xA68D\t0xCAF6\n0xA68E\t0xCAF7\n0xA68F\t0xCAF8\n0xA690\t0xCAF9\n0xA691\t0xCAFA\n0xA692\t0xCAFB\n0xA693\t0xCAFC\n0xA694\t0xCAFD\n0xA695\t0xCAFE\n0xA696\t0xCAFF\n0xA697\t0xCB00\n0xA698\t0xCB01\n0xA699\t0xCB02\n0xA69A\t0xCB03\n0xA69B\t0xCB04\n0xA69C\t0xCB05\n0xA69D\t0xCB06\n0xA69E\t0xCB07\n0xA69F\t0xCB09\n0xA6A0\t0xCB0A\n0xA6A1\t0x2500\n0xA6A2\t0x2502\n0xA6A3\t0x250C\n0xA6A4\t0x2510\n0xA6A5\t0x2518\n0xA6A6\t0x2514\n0xA6A7\t0x251C\n0xA6A8\t0x252C\n0xA6A9\t0x2524\n0xA6AA\t0x2534\n0xA6AB\t0x253C\n0xA6AC\t0x2501\n0xA6AD\t0x2503\n0xA6AE\t0x250F\n0xA6AF\t0x2513\n0xA6B0\t0x251B\n0xA6B1\t0x2517\n0xA6B2\t0x2523\n0xA6B3\t0x2533\n0xA6B4\t0x252B\n0xA6B5\t0x253B\n0xA6B6\t0x254B\n0xA6B7\t0x2520\n0xA6B8\t0x252F\n0xA6B9\t0x2528\n0xA6BA\t0x2537\n0xA6BB\t0x253F\n0xA6BC\t0x251D\n0xA6BD\t0x2530\n0xA6BE\t0x2525\n0xA6BF\t0x2538\n0xA6C0\t0x2542\n0xA6C1\t0x2512\n0xA6C2\t0x2511\n0xA6C3\t0x251A\n0xA6C4\t0x2519\n0xA6C5\t0x2516\n0xA6C6\t0x2515\n0xA6C7\t0x250E\n0xA6C8\t0x250D\n0xA6C9\t0x251E\n0xA6CA\t0x251F\n0xA6CB\t0x2521\n0xA6CC\t0x2522\n0xA6CD\t0x2526\n0xA6CE\t0x2527\n0xA6CF\t0x2529\n0xA6D0\t0x252A\n0xA6D1\t0x252D\n0xA6D2\t0x252E\n0xA6D3\t0x2531\n0xA6D4\t0x2532\n0xA6D5\t0x2535\n0xA6D6\t0x2536\n0xA6D7\t0x2539\n0xA6D8\t0x253A\n0xA6D9\t0x253D\n0xA6DA\t0x253E\n0xA6DB\t0x2540\n0xA6DC\t0x2541\n0xA6DD\t0x2543\n0xA6DE\t0x2544\n0xA6DF\t0x2545\n0xA6E0\t0x2546\n0xA6E1\t0x2547\n0xA6E2\t0x2548\n0xA6E3\t0x2549\n0xA6E4\t0x254A\n0xA741\t0xCB0B\n0xA742\t0xCB0C\n0xA743\t0xCB0D\n0xA744\t0xCB0E\n0xA745\t0xCB0F\n0xA746\t0xCB11\n0xA747\t0xCB12\n0xA748\t0xCB13\n0xA749\t0xCB15\n0xA74A\t0xCB16\n0xA74B\t0xCB17\n0xA74C\t0xCB19\n0xA74D\t0xCB1A\n0xA74E\t0xCB1B\n0xA74F\t0xCB1C\n0xA750\t0xCB1D\n0xA751\t0xCB1E\n0xA752\t0xCB1F\n0xA753\t0xCB22\n0xA754\t0xCB23\n0xA755\t0xCB24\n0xA756\t0xCB25\n0xA757\t0xCB26\n0xA758\t0xCB27\n0xA759\t0xCB28\n0xA75A\t0xCB29\n0xA761\t0xCB2A\n0xA762\t0xCB2B\n0xA763\t0xCB2C\n0xA764\t0xCB2D\n0xA765\t0xCB2E\n0xA766\t0xCB2F\n0xA767\t0xCB30\n0xA768\t0xCB31\n0xA769\t0xCB32\n0xA76A\t0xCB33\n0xA76B\t0xCB34\n0xA76C\t0xCB35\n0xA76D\t0xCB36\n0xA76E\t0xCB37\n0xA76F\t0xCB38\n0xA770\t0xCB39\n0xA771\t0xCB3A\n0xA772\t0xCB3B\n0xA773\t0xCB3C\n0xA774\t0xCB3D\n0xA775\t0xCB3E\n0xA776\t0xCB3F\n0xA777\t0xCB40\n0xA778\t0xCB42\n0xA779\t0xCB43\n0xA77A\t0xCB44\n0xA781\t0xCB45\n0xA782\t0xCB46\n0xA783\t0xCB47\n0xA784\t0xCB4A\n0xA785\t0xCB4B\n0xA786\t0xCB4D\n0xA787\t0xCB4E\n0xA788\t0xCB4F\n0xA789\t0xCB51\n0xA78A\t0xCB52\n0xA78B\t0xCB53\n0xA78C\t0xCB54\n0xA78D\t0xCB55\n0xA78E\t0xCB56\n0xA78F\t0xCB57\n0xA790\t0xCB5A\n0xA791\t0xCB5B\n0xA792\t0xCB5C\n0xA793\t0xCB5E\n0xA794\t0xCB5F\n0xA795\t0xCB60\n0xA796\t0xCB61\n0xA797\t0xCB62\n0xA798\t0xCB63\n0xA799\t0xCB65\n0xA79A\t0xCB66\n0xA79B\t0xCB67\n0xA79C\t0xCB68\n0xA79D\t0xCB69\n0xA79E\t0xCB6A\n0xA79F\t0xCB6B\n0xA7A0\t0xCB6C\n0xA7A1\t0x3395\n0xA7A2\t0x3396\n0xA7A3\t0x3397\n0xA7A4\t0x2113\n0xA7A5\t0x3398\n0xA7A6\t0x33C4\n0xA7A7\t0x33A3\n0xA7A8\t0x33A4\n0xA7A9\t0x33A5\n0xA7AA\t0x33A6\n0xA7AB\t0x3399\n0xA7AC\t0x339A\n0xA7AD\t0x339B\n0xA7AE\t0x339C\n0xA7AF\t0x339D\n0xA7B0\t0x339E\n0xA7B1\t0x339F\n0xA7B2\t0x33A0\n0xA7B3\t0x33A1\n0xA7B4\t0x33A2\n0xA7B5\t0x33CA\n0xA7B6\t0x338D\n0xA7B7\t0x338E\n0xA7B8\t0x338F\n0xA7B9\t0x33CF\n0xA7BA\t0x3388\n0xA7BB\t0x3389\n0xA7BC\t0x33C8\n0xA7BD\t0x33A7\n0xA7BE\t0x33A8\n0xA7BF\t0x33B0\n0xA7C0\t0x33B1\n0xA7C1\t0x33B2\n0xA7C2\t0x33B3\n0xA7C3\t0x33B4\n0xA7C4\t0x33B5\n0xA7C5\t0x33B6\n0xA7C6\t0x33B7\n0xA7C7\t0x33B8\n0xA7C8\t0x33B9\n0xA7C9\t0x3380\n0xA7CA\t0x3381\n0xA7CB\t0x3382\n0xA7CC\t0x3383\n0xA7CD\t0x3384\n0xA7CE\t0x33BA\n0xA7CF\t0x33BB\n0xA7D0\t0x33BC\n0xA7D1\t0x33BD\n0xA7D2\t0x33BE\n0xA7D3\t0x33BF\n0xA7D4\t0x3390\n0xA7D5\t0x3391\n0xA7D6\t0x3392\n0xA7D7\t0x3393\n0xA7D8\t0x3394\n0xA7D9\t0x2126\n0xA7DA\t0x33C0\n0xA7DB\t0x33C1\n0xA7DC\t0x338A\n0xA7DD\t0x338B\n0xA7DE\t0x338C\n0xA7DF\t0x33D6\n0xA7E0\t0x33C5\n0xA7E1\t0x33AD\n0xA7E2\t0x33AE\n0xA7E3\t0x33AF\n0xA7E4\t0x33DB\n0xA7E5\t0x33A9\n0xA7E6\t0x33AA\n0xA7E7\t0x33AB\n0xA7E8\t0x33AC\n0xA7E9\t0x33DD\n0xA7EA\t0x33D0\n0xA7EB\t0x33D3\n0xA7EC\t0x33C3\n0xA7ED\t0x33C9\n0xA7EE\t0x33DC\n0xA7EF\t0x33C6\n0xA841\t0xCB6D\n0xA842\t0xCB6E\n0xA843\t0xCB6F\n0xA844\t0xCB70\n0xA845\t0xCB71\n0xA846\t0xCB72\n0xA847\t0xCB73\n0xA848\t0xCB74\n0xA849\t0xCB75\n0xA84A\t0xCB76\n0xA84B\t0xCB77\n0xA84C\t0xCB7A\n0xA84D\t0xCB7B\n0xA84E\t0xCB7C\n0xA84F\t0xCB7D\n0xA850\t0xCB7E\n0xA851\t0xCB7F\n0xA852\t0xCB80\n0xA853\t0xCB81\n0xA854\t0xCB82\n0xA855\t0xCB83\n0xA856\t0xCB84\n0xA857\t0xCB85\n0xA858\t0xCB86\n0xA859\t0xCB87\n0xA85A\t0xCB88\n0xA861\t0xCB89\n0xA862\t0xCB8A\n0xA863\t0xCB8B\n0xA864\t0xCB8C\n0xA865\t0xCB8D\n0xA866\t0xCB8E\n0xA867\t0xCB8F\n0xA868\t0xCB90\n0xA869\t0xCB91\n0xA86A\t0xCB92\n0xA86B\t0xCB93\n0xA86C\t0xCB94\n0xA86D\t0xCB95\n0xA86E\t0xCB96\n0xA86F\t0xCB97\n0xA870\t0xCB98\n0xA871\t0xCB99\n0xA872\t0xCB9A\n0xA873\t0xCB9B\n0xA874\t0xCB9D\n0xA875\t0xCB9E\n0xA876\t0xCB9F\n0xA877\t0xCBA0\n0xA878\t0xCBA1\n0xA879\t0xCBA2\n0xA87A\t0xCBA3\n0xA881\t0xCBA4\n0xA882\t0xCBA5\n0xA883\t0xCBA6\n0xA884\t0xCBA7\n0xA885\t0xCBA8\n0xA886\t0xCBA9\n0xA887\t0xCBAA\n0xA888\t0xCBAB\n0xA889\t0xCBAC\n0xA88A\t0xCBAD\n0xA88B\t0xCBAE\n0xA88C\t0xCBAF\n0xA88D\t0xCBB0\n0xA88E\t0xCBB1\n0xA88F\t0xCBB2\n0xA890\t0xCBB3\n0xA891\t0xCBB4\n0xA892\t0xCBB5\n0xA893\t0xCBB6\n0xA894\t0xCBB7\n0xA895\t0xCBB9\n0xA896\t0xCBBA\n0xA897\t0xCBBB\n0xA898\t0xCBBC\n0xA899\t0xCBBD\n0xA89A\t0xCBBE\n0xA89B\t0xCBBF\n0xA89C\t0xCBC0\n0xA89D\t0xCBC1\n0xA89E\t0xCBC2\n0xA89F\t0xCBC3\n0xA8A0\t0xCBC4\n0xA8A1\t0x00C6\n0xA8A2\t0x00D0\n0xA8A3\t0x00AA\n0xA8A4\t0x0126\n0xA8A6\t0x0132\n0xA8A8\t0x013F\n0xA8A9\t0x0141\n0xA8AA\t0x00D8\n0xA8AB\t0x0152\n0xA8AC\t0x00BA\n0xA8AD\t0x00DE\n0xA8AE\t0x0166\n0xA8AF\t0x014A\n0xA8B1\t0x3260\n0xA8B2\t0x3261\n0xA8B3\t0x3262\n0xA8B4\t0x3263\n0xA8B5\t0x3264\n0xA8B6\t0x3265\n0xA8B7\t0x3266\n0xA8B8\t0x3267\n0xA8B9\t0x3268\n0xA8BA\t0x3269\n0xA8BB\t0x326A\n0xA8BC\t0x326B\n0xA8BD\t0x326C\n0xA8BE\t0x326D\n0xA8BF\t0x326E\n0xA8C0\t0x326F\n0xA8C1\t0x3270\n0xA8C2\t0x3271\n0xA8C3\t0x3272\n0xA8C4\t0x3273\n0xA8C5\t0x3274\n0xA8C6\t0x3275\n0xA8C7\t0x3276\n0xA8C8\t0x3277\n0xA8C9\t0x3278\n0xA8CA\t0x3279\n0xA8CB\t0x327A\n0xA8CC\t0x327B\n0xA8CD\t0x24D0\n0xA8CE\t0x24D1\n0xA8CF\t0x24D2\n0xA8D0\t0x24D3\n0xA8D1\t0x24D4\n0xA8D2\t0x24D5\n0xA8D3\t0x24D6\n0xA8D4\t0x24D7\n0xA8D5\t0x24D8\n0xA8D6\t0x24D9\n0xA8D7\t0x24DA\n0xA8D8\t0x24DB\n0xA8D9\t0x24DC\n0xA8DA\t0x24DD\n0xA8DB\t0x24DE\n0xA8DC\t0x24DF\n0xA8DD\t0x24E0\n0xA8DE\t0x24E1\n0xA8DF\t0x24E2\n0xA8E0\t0x24E3\n0xA8E1\t0x24E4\n0xA8E2\t0x24E5\n0xA8E3\t0x24E6\n0xA8E4\t0x24E7\n0xA8E5\t0x24E8\n0xA8E6\t0x24E9\n0xA8E7\t0x2460\n0xA8E8\t0x2461\n0xA8E9\t0x2462\n0xA8EA\t0x2463\n0xA8EB\t0x2464\n0xA8EC\t0x2465\n0xA8ED\t0x2466\n0xA8EE\t0x2467\n0xA8EF\t0x2468\n0xA8F0\t0x2469\n0xA8F1\t0x246A\n0xA8F2\t0x246B\n0xA8F3\t0x246C\n0xA8F4\t0x246D\n0xA8F5\t0x246E\n0xA8F6\t0x00BD\n0xA8F7\t0x2153\n0xA8F8\t0x2154\n0xA8F9\t0x00BC\n0xA8FA\t0x00BE\n0xA8FB\t0x215B\n0xA8FC\t0x215C\n0xA8FD\t0x215D\n0xA8FE\t0x215E\n0xA941\t0xCBC5\n0xA942\t0xCBC6\n0xA943\t0xCBC7\n0xA944\t0xCBC8\n0xA945\t0xCBC9\n0xA946\t0xCBCA\n0xA947\t0xCBCB\n0xA948\t0xCBCC\n0xA949\t0xCBCD\n0xA94A\t0xCBCE\n0xA94B\t0xCBCF\n0xA94C\t0xCBD0\n0xA94D\t0xCBD1\n0xA94E\t0xCBD2\n0xA94F\t0xCBD3\n0xA950\t0xCBD5\n0xA951\t0xCBD6\n0xA952\t0xCBD7\n0xA953\t0xCBD8\n0xA954\t0xCBD9\n0xA955\t0xCBDA\n0xA956\t0xCBDB\n0xA957\t0xCBDC\n0xA958\t0xCBDD\n0xA959\t0xCBDE\n0xA95A\t0xCBDF\n0xA961\t0xCBE0\n0xA962\t0xCBE1\n0xA963\t0xCBE2\n0xA964\t0xCBE3\n0xA965\t0xCBE5\n0xA966\t0xCBE6\n0xA967\t0xCBE8\n0xA968\t0xCBEA\n0xA969\t0xCBEB\n0xA96A\t0xCBEC\n0xA96B\t0xCBED\n0xA96C\t0xCBEE\n0xA96D\t0xCBEF\n0xA96E\t0xCBF0\n0xA96F\t0xCBF1\n0xA970\t0xCBF2\n0xA971\t0xCBF3\n0xA972\t0xCBF4\n0xA973\t0xCBF5\n0xA974\t0xCBF6\n0xA975\t0xCBF7\n0xA976\t0xCBF8\n0xA977\t0xCBF9\n0xA978\t0xCBFA\n0xA979\t0xCBFB\n0xA97A\t0xCBFC\n0xA981\t0xCBFD\n0xA982\t0xCBFE\n0xA983\t0xCBFF\n0xA984\t0xCC00\n0xA985\t0xCC01\n0xA986\t0xCC02\n0xA987\t0xCC03\n0xA988\t0xCC04\n0xA989\t0xCC05\n0xA98A\t0xCC06\n0xA98B\t0xCC07\n0xA98C\t0xCC08\n0xA98D\t0xCC09\n0xA98E\t0xCC0A\n0xA98F\t0xCC0B\n0xA990\t0xCC0E\n0xA991\t0xCC0F\n0xA992\t0xCC11\n0xA993\t0xCC12\n0xA994\t0xCC13\n0xA995\t0xCC15\n0xA996\t0xCC16\n0xA997\t0xCC17\n0xA998\t0xCC18\n0xA999\t0xCC19\n0xA99A\t0xCC1A\n0xA99B\t0xCC1B\n0xA99C\t0xCC1E\n0xA99D\t0xCC1F\n0xA99E\t0xCC20\n0xA99F\t0xCC23\n0xA9A0\t0xCC24\n0xA9A1\t0x00E6\n0xA9A2\t0x0111\n0xA9A3\t0x00F0\n0xA9A4\t0x0127\n0xA9A5\t0x0131\n0xA9A6\t0x0133\n0xA9A7\t0x0138\n0xA9A8\t0x0140\n0xA9A9\t0x0142\n0xA9AA\t0x00F8\n0xA9AB\t0x0153\n0xA9AC\t0x00DF\n0xA9AD\t0x00FE\n0xA9AE\t0x0167\n0xA9AF\t0x014B\n0xA9B0\t0x0149\n0xA9B1\t0x3200\n0xA9B2\t0x3201\n0xA9B3\t0x3202\n0xA9B4\t0x3203\n0xA9B5\t0x3204\n0xA9B6\t0x3205\n0xA9B7\t0x3206\n0xA9B8\t0x3207\n0xA9B9\t0x3208\n0xA9BA\t0x3209\n0xA9BB\t0x320A\n0xA9BC\t0x320B\n0xA9BD\t0x320C\n0xA9BE\t0x320D\n0xA9BF\t0x320E\n0xA9C0\t0x320F\n0xA9C1\t0x3210\n0xA9C2\t0x3211\n0xA9C3\t0x3212\n0xA9C4\t0x3213\n0xA9C5\t0x3214\n0xA9C6\t0x3215\n0xA9C7\t0x3216\n0xA9C8\t0x3217\n0xA9C9\t0x3218\n0xA9CA\t0x3219\n0xA9CB\t0x321A\n0xA9CC\t0x321B\n0xA9CD\t0x249C\n0xA9CE\t0x249D\n0xA9CF\t0x249E\n0xA9D0\t0x249F\n0xA9D1\t0x24A0\n0xA9D2\t0x24A1\n0xA9D3\t0x24A2\n0xA9D4\t0x24A3\n0xA9D5\t0x24A4\n0xA9D6\t0x24A5\n0xA9D7\t0x24A6\n0xA9D8\t0x24A7\n0xA9D9\t0x24A8\n0xA9DA\t0x24A9\n0xA9DB\t0x24AA\n0xA9DC\t0x24AB\n0xA9DD\t0x24AC\n0xA9DE\t0x24AD\n0xA9DF\t0x24AE\n0xA9E0\t0x24AF\n0xA9E1\t0x24B0\n0xA9E2\t0x24B1\n0xA9E3\t0x24B2\n0xA9E4\t0x24B3\n0xA9E5\t0x24B4\n0xA9E6\t0x24B5\n0xA9E7\t0x2474\n0xA9E8\t0x2475\n0xA9E9\t0x2476\n0xA9EA\t0x2477\n0xA9EB\t0x2478\n0xA9EC\t0x2479\n0xA9ED\t0x247A\n0xA9EE\t0x247B\n0xA9EF\t0x247C\n0xA9F0\t0x247D\n0xA9F1\t0x247E\n0xA9F2\t0x247F\n0xA9F3\t0x2480\n0xA9F4\t0x2481\n0xA9F5\t0x2482\n0xA9F6\t0x00B9\n0xA9F7\t0x00B2\n0xA9F8\t0x00B3\n0xA9F9\t0x2074\n0xA9FA\t0x207F\n0xA9FB\t0x2081\n0xA9FC\t0x2082\n0xA9FD\t0x2083\n0xA9FE\t0x2084\n0xAA41\t0xCC25\n0xAA42\t0xCC26\n0xAA43\t0xCC2A\n0xAA44\t0xCC2B\n0xAA45\t0xCC2D\n0xAA46\t0xCC2F\n0xAA47\t0xCC31\n0xAA48\t0xCC32\n0xAA49\t0xCC33\n0xAA4A\t0xCC34\n0xAA4B\t0xCC35\n0xAA4C\t0xCC36\n0xAA4D\t0xCC37\n0xAA4E\t0xCC3A\n0xAA4F\t0xCC3F\n0xAA50\t0xCC40\n0xAA51\t0xCC41\n0xAA52\t0xCC42\n0xAA53\t0xCC43\n0xAA54\t0xCC46\n0xAA55\t0xCC47\n0xAA56\t0xCC49\n0xAA57\t0xCC4A\n0xAA58\t0xCC4B\n0xAA59\t0xCC4D\n0xAA5A\t0xCC4E\n0xAA61\t0xCC4F\n0xAA62\t0xCC50\n0xAA63\t0xCC51\n0xAA64\t0xCC52\n0xAA65\t0xCC53\n0xAA66\t0xCC56\n0xAA67\t0xCC5A\n0xAA68\t0xCC5B\n0xAA69\t0xCC5C\n0xAA6A\t0xCC5D\n0xAA6B\t0xCC5E\n0xAA6C\t0xCC5F\n0xAA6D\t0xCC61\n0xAA6E\t0xCC62\n0xAA6F\t0xCC63\n0xAA70\t0xCC65\n0xAA71\t0xCC67\n0xAA72\t0xCC69\n0xAA73\t0xCC6A\n0xAA74\t0xCC6B\n0xAA75\t0xCC6C\n0xAA76\t0xCC6D\n0xAA77\t0xCC6E\n0xAA78\t0xCC6F\n0xAA79\t0xCC71\n0xAA7A\t0xCC72\n0xAA81\t0xCC73\n0xAA82\t0xCC74\n0xAA83\t0xCC76\n0xAA84\t0xCC77\n0xAA85\t0xCC78\n0xAA86\t0xCC79\n0xAA87\t0xCC7A\n0xAA88\t0xCC7B\n0xAA89\t0xCC7C\n0xAA8A\t0xCC7D\n0xAA8B\t0xCC7E\n0xAA8C\t0xCC7F\n0xAA8D\t0xCC80\n0xAA8E\t0xCC81\n0xAA8F\t0xCC82\n0xAA90\t0xCC83\n0xAA91\t0xCC84\n0xAA92\t0xCC85\n0xAA93\t0xCC86\n0xAA94\t0xCC87\n0xAA95\t0xCC88\n0xAA96\t0xCC89\n0xAA97\t0xCC8A\n0xAA98\t0xCC8B\n0xAA99\t0xCC8C\n0xAA9A\t0xCC8D\n0xAA9B\t0xCC8E\n0xAA9C\t0xCC8F\n0xAA9D\t0xCC90\n0xAA9E\t0xCC91\n0xAA9F\t0xCC92\n0xAAA0\t0xCC93\n0xAAA1\t0x3041\n0xAAA2\t0x3042\n0xAAA3\t0x3043\n0xAAA4\t0x3044\n0xAAA5\t0x3045\n0xAAA6\t0x3046\n0xAAA7\t0x3047\n0xAAA8\t0x3048\n0xAAA9\t0x3049\n0xAAAA\t0x304A\n0xAAAB\t0x304B\n0xAAAC\t0x304C\n0xAAAD\t0x304D\n0xAAAE\t0x304E\n0xAAAF\t0x304F\n0xAAB0\t0x3050\n0xAAB1\t0x3051\n0xAAB2\t0x3052\n0xAAB3\t0x3053\n0xAAB4\t0x3054\n0xAAB5\t0x3055\n0xAAB6\t0x3056\n0xAAB7\t0x3057\n0xAAB8\t0x3058\n0xAAB9\t0x3059\n0xAABA\t0x305A\n0xAABB\t0x305B\n0xAABC\t0x305C\n0xAABD\t0x305D\n0xAABE\t0x305E\n0xAABF\t0x305F\n0xAAC0\t0x3060\n0xAAC1\t0x3061\n0xAAC2\t0x3062\n0xAAC3\t0x3063\n0xAAC4\t0x3064\n0xAAC5\t0x3065\n0xAAC6\t0x3066\n0xAAC7\t0x3067\n0xAAC8\t0x3068\n0xAAC9\t0x3069\n0xAACA\t0x306A\n0xAACB\t0x306B\n0xAACC\t0x306C\n0xAACD\t0x306D\n0xAACE\t0x306E\n0xAACF\t0x306F\n0xAAD0\t0x3070\n0xAAD1\t0x3071\n0xAAD2\t0x3072\n0xAAD3\t0x3073\n0xAAD4\t0x3074\n0xAAD5\t0x3075\n0xAAD6\t0x3076\n0xAAD7\t0x3077\n0xAAD8\t0x3078\n0xAAD9\t0x3079\n0xAADA\t0x307A\n0xAADB\t0x307B\n0xAADC\t0x307C\n0xAADD\t0x307D\n0xAADE\t0x307E\n0xAADF\t0x307F\n0xAAE0\t0x3080\n0xAAE1\t0x3081\n0xAAE2\t0x3082\n0xAAE3\t0x3083\n0xAAE4\t0x3084\n0xAAE5\t0x3085\n0xAAE6\t0x3086\n0xAAE7\t0x3087\n0xAAE8\t0x3088\n0xAAE9\t0x3089\n0xAAEA\t0x308A\n0xAAEB\t0x308B\n0xAAEC\t0x308C\n0xAAED\t0x308D\n0xAAEE\t0x308E\n0xAAEF\t0x308F\n0xAAF0\t0x3090\n0xAAF1\t0x3091\n0xAAF2\t0x3092\n0xAAF3\t0x3093\n0xAB41\t0xCC94\n0xAB42\t0xCC95\n0xAB43\t0xCC96\n0xAB44\t0xCC97\n0xAB45\t0xCC9A\n0xAB46\t0xCC9B\n0xAB47\t0xCC9D\n0xAB48\t0xCC9E\n0xAB49\t0xCC9F\n0xAB4A\t0xCCA1\n0xAB4B\t0xCCA2\n0xAB4C\t0xCCA3\n0xAB4D\t0xCCA4\n0xAB4E\t0xCCA5\n0xAB4F\t0xCCA6\n0xAB50\t0xCCA7\n0xAB51\t0xCCAA\n0xAB52\t0xCCAE\n0xAB53\t0xCCAF\n0xAB54\t0xCCB0\n0xAB55\t0xCCB1\n0xAB56\t0xCCB2\n0xAB57\t0xCCB3\n0xAB58\t0xCCB6\n0xAB59\t0xCCB7\n0xAB5A\t0xCCB9\n0xAB61\t0xCCBA\n0xAB62\t0xCCBB\n0xAB63\t0xCCBD\n0xAB64\t0xCCBE\n0xAB65\t0xCCBF\n0xAB66\t0xCCC0\n0xAB67\t0xCCC1\n0xAB68\t0xCCC2\n0xAB69\t0xCCC3\n0xAB6A\t0xCCC6\n0xAB6B\t0xCCC8\n0xAB6C\t0xCCCA\n0xAB6D\t0xCCCB\n0xAB6E\t0xCCCC\n0xAB6F\t0xCCCD\n0xAB70\t0xCCCE\n0xAB71\t0xCCCF\n0xAB72\t0xCCD1\n0xAB73\t0xCCD2\n0xAB74\t0xCCD3\n0xAB75\t0xCCD5\n0xAB76\t0xCCD6\n0xAB77\t0xCCD7\n0xAB78\t0xCCD8\n0xAB79\t0xCCD9\n0xAB7A\t0xCCDA\n0xAB81\t0xCCDB\n0xAB82\t0xCCDC\n0xAB83\t0xCCDD\n0xAB84\t0xCCDE\n0xAB85\t0xCCDF\n0xAB86\t0xCCE0\n0xAB87\t0xCCE1\n0xAB88\t0xCCE2\n0xAB89\t0xCCE3\n0xAB8A\t0xCCE5\n0xAB8B\t0xCCE6\n0xAB8C\t0xCCE7\n0xAB8D\t0xCCE8\n0xAB8E\t0xCCE9\n0xAB8F\t0xCCEA\n0xAB90\t0xCCEB\n0xAB91\t0xCCED\n0xAB92\t0xCCEE\n0xAB93\t0xCCEF\n0xAB94\t0xCCF1\n0xAB95\t0xCCF2\n0xAB96\t0xCCF3\n0xAB97\t0xCCF4\n0xAB98\t0xCCF5\n0xAB99\t0xCCF6\n0xAB9A\t0xCCF7\n0xAB9B\t0xCCF8\n0xAB9C\t0xCCF9\n0xAB9D\t0xCCFA\n0xAB9E\t0xCCFB\n0xAB9F\t0xCCFC\n0xABA0\t0xCCFD\n0xABA1\t0x30A1\n0xABA2\t0x30A2\n0xABA3\t0x30A3\n0xABA4\t0x30A4\n0xABA5\t0x30A5\n0xABA6\t0x30A6\n0xABA7\t0x30A7\n0xABA8\t0x30A8\n0xABA9\t0x30A9\n0xABAA\t0x30AA\n0xABAB\t0x30AB\n0xABAC\t0x30AC\n0xABAD\t0x30AD\n0xABAE\t0x30AE\n0xABAF\t0x30AF\n0xABB0\t0x30B0\n0xABB1\t0x30B1\n0xABB2\t0x30B2\n0xABB3\t0x30B3\n0xABB4\t0x30B4\n0xABB5\t0x30B5\n0xABB6\t0x30B6\n0xABB7\t0x30B7\n0xABB8\t0x30B8\n0xABB9\t0x30B9\n0xABBA\t0x30BA\n0xABBB\t0x30BB\n0xABBC\t0x30BC\n0xABBD\t0x30BD\n0xABBE\t0x30BE\n0xABBF\t0x30BF\n0xABC0\t0x30C0\n0xABC1\t0x30C1\n0xABC2\t0x30C2\n0xABC3\t0x30C3\n0xABC4\t0x30C4\n0xABC5\t0x30C5\n0xABC6\t0x30C6\n0xABC7\t0x30C7\n0xABC8\t0x30C8\n0xABC9\t0x30C9\n0xABCA\t0x30CA\n0xABCB\t0x30CB\n0xABCC\t0x30CC\n0xABCD\t0x30CD\n0xABCE\t0x30CE\n0xABCF\t0x30CF\n0xABD0\t0x30D0\n0xABD1\t0x30D1\n0xABD2\t0x30D2\n0xABD3\t0x30D3\n0xABD4\t0x30D4\n0xABD5\t0x30D5\n0xABD6\t0x30D6\n0xABD7\t0x30D7\n0xABD8\t0x30D8\n0xABD9\t0x30D9\n0xABDA\t0x30DA\n0xABDB\t0x30DB\n0xABDC\t0x30DC\n0xABDD\t0x30DD\n0xABDE\t0x30DE\n0xABDF\t0x30DF\n0xABE0\t0x30E0\n0xABE1\t0x30E1\n0xABE2\t0x30E2\n0xABE3\t0x30E3\n0xABE4\t0x30E4\n0xABE5\t0x30E5\n0xABE6\t0x30E6\n0xABE7\t0x30E7\n0xABE8\t0x30E8\n0xABE9\t0x30E9\n0xABEA\t0x30EA\n0xABEB\t0x30EB\n0xABEC\t0x30EC\n0xABED\t0x30ED\n0xABEE\t0x30EE\n0xABEF\t0x30EF\n0xABF0\t0x30F0\n0xABF1\t0x30F1\n0xABF2\t0x30F2\n0xABF3\t0x30F3\n0xABF4\t0x30F4\n0xABF5\t0x30F5\n0xABF6\t0x30F6\n0xAC41\t0xCCFE\n0xAC42\t0xCCFF\n0xAC43\t0xCD00\n0xAC44\t0xCD02\n0xAC45\t0xCD03\n0xAC46\t0xCD04\n0xAC47\t0xCD05\n0xAC48\t0xCD06\n0xAC49\t0xCD07\n0xAC4A\t0xCD0A\n0xAC4B\t0xCD0B\n0xAC4C\t0xCD0D\n0xAC4D\t0xCD0E\n0xAC4E\t0xCD0F\n0xAC4F\t0xCD11\n0xAC50\t0xCD12\n0xAC51\t0xCD13\n0xAC52\t0xCD14\n0xAC53\t0xCD15\n0xAC54\t0xCD16\n0xAC55\t0xCD17\n0xAC56\t0xCD1A\n0xAC57\t0xCD1C\n0xAC58\t0xCD1E\n0xAC59\t0xCD1F\n0xAC5A\t0xCD20\n0xAC61\t0xCD21\n0xAC62\t0xCD22\n0xAC63\t0xCD23\n0xAC64\t0xCD25\n0xAC65\t0xCD26\n0xAC66\t0xCD27\n0xAC67\t0xCD29\n0xAC68\t0xCD2A\n0xAC69\t0xCD2B\n0xAC6A\t0xCD2D\n0xAC6B\t0xCD2E\n0xAC6C\t0xCD2F\n0xAC6D\t0xCD30\n0xAC6E\t0xCD31\n0xAC6F\t0xCD32\n0xAC70\t0xCD33\n0xAC71\t0xCD34\n0xAC72\t0xCD35\n0xAC73\t0xCD36\n0xAC74\t0xCD37\n0xAC75\t0xCD38\n0xAC76\t0xCD3A\n0xAC77\t0xCD3B\n0xAC78\t0xCD3C\n0xAC79\t0xCD3D\n0xAC7A\t0xCD3E\n0xAC81\t0xCD3F\n0xAC82\t0xCD40\n0xAC83\t0xCD41\n0xAC84\t0xCD42\n0xAC85\t0xCD43\n0xAC86\t0xCD44\n0xAC87\t0xCD45\n0xAC88\t0xCD46\n0xAC89\t0xCD47\n0xAC8A\t0xCD48\n0xAC8B\t0xCD49\n0xAC8C\t0xCD4A\n0xAC8D\t0xCD4B\n0xAC8E\t0xCD4C\n0xAC8F\t0xCD4D\n0xAC90\t0xCD4E\n0xAC91\t0xCD4F\n0xAC92\t0xCD50\n0xAC93\t0xCD51\n0xAC94\t0xCD52\n0xAC95\t0xCD53\n0xAC96\t0xCD54\n0xAC97\t0xCD55\n0xAC98\t0xCD56\n0xAC99\t0xCD57\n0xAC9A\t0xCD58\n0xAC9B\t0xCD59\n0xAC9C\t0xCD5A\n0xAC9D\t0xCD5B\n0xAC9E\t0xCD5D\n0xAC9F\t0xCD5E\n0xACA0\t0xCD5F\n0xACA1\t0x0410\n0xACA2\t0x0411\n0xACA3\t0x0412\n0xACA4\t0x0413\n0xACA5\t0x0414\n0xACA6\t0x0415\n0xACA7\t0x0401\n0xACA8\t0x0416\n0xACA9\t0x0417\n0xACAA\t0x0418\n0xACAB\t0x0419\n0xACAC\t0x041A\n0xACAD\t0x041B\n0xACAE\t0x041C\n0xACAF\t0x041D\n0xACB0\t0x041E\n0xACB1\t0x041F\n0xACB2\t0x0420\n0xACB3\t0x0421\n0xACB4\t0x0422\n0xACB5\t0x0423\n0xACB6\t0x0424\n0xACB7\t0x0425\n0xACB8\t0x0426\n0xACB9\t0x0427\n0xACBA\t0x0428\n0xACBB\t0x0429\n0xACBC\t0x042A\n0xACBD\t0x042B\n0xACBE\t0x042C\n0xACBF\t0x042D\n0xACC0\t0x042E\n0xACC1\t0x042F\n0xACD1\t0x0430\n0xACD2\t0x0431\n0xACD3\t0x0432\n0xACD4\t0x0433\n0xACD5\t0x0434\n0xACD6\t0x0435\n0xACD7\t0x0451\n0xACD8\t0x0436\n0xACD9\t0x0437\n0xACDA\t0x0438\n0xACDB\t0x0439\n0xACDC\t0x043A\n0xACDD\t0x043B\n0xACDE\t0x043C\n0xACDF\t0x043D\n0xACE0\t0x043E\n0xACE1\t0x043F\n0xACE2\t0x0440\n0xACE3\t0x0441\n0xACE4\t0x0442\n0xACE5\t0x0443\n0xACE6\t0x0444\n0xACE7\t0x0445\n0xACE8\t0x0446\n0xACE9\t0x0447\n0xACEA\t0x0448\n0xACEB\t0x0449\n0xACEC\t0x044A\n0xACED\t0x044B\n0xACEE\t0x044C\n0xACEF\t0x044D\n0xACF0\t0x044E\n0xACF1\t0x044F\n0xAD41\t0xCD61\n0xAD42\t0xCD62\n0xAD43\t0xCD63\n0xAD44\t0xCD65\n0xAD45\t0xCD66\n0xAD46\t0xCD67\n0xAD47\t0xCD68\n0xAD48\t0xCD69\n0xAD49\t0xCD6A\n0xAD4A\t0xCD6B\n0xAD4B\t0xCD6E\n0xAD4C\t0xCD70\n0xAD4D\t0xCD72\n0xAD4E\t0xCD73\n0xAD4F\t0xCD74\n0xAD50\t0xCD75\n0xAD51\t0xCD76\n0xAD52\t0xCD77\n0xAD53\t0xCD79\n0xAD54\t0xCD7A\n0xAD55\t0xCD7B\n0xAD56\t0xCD7C\n0xAD57\t0xCD7D\n0xAD58\t0xCD7E\n0xAD59\t0xCD7F\n0xAD5A\t0xCD80\n0xAD61\t0xCD81\n0xAD62\t0xCD82\n0xAD63\t0xCD83\n0xAD64\t0xCD84\n0xAD65\t0xCD85\n0xAD66\t0xCD86\n0xAD67\t0xCD87\n0xAD68\t0xCD89\n0xAD69\t0xCD8A\n0xAD6A\t0xCD8B\n0xAD6B\t0xCD8C\n0xAD6C\t0xCD8D\n0xAD6D\t0xCD8E\n0xAD6E\t0xCD8F\n0xAD6F\t0xCD90\n0xAD70\t0xCD91\n0xAD71\t0xCD92\n0xAD72\t0xCD93\n0xAD73\t0xCD96\n0xAD74\t0xCD97\n0xAD75\t0xCD99\n0xAD76\t0xCD9A\n0xAD77\t0xCD9B\n0xAD78\t0xCD9D\n0xAD79\t0xCD9E\n0xAD7A\t0xCD9F\n0xAD81\t0xCDA0\n0xAD82\t0xCDA1\n0xAD83\t0xCDA2\n0xAD84\t0xCDA3\n0xAD85\t0xCDA6\n0xAD86\t0xCDA8\n0xAD87\t0xCDAA\n0xAD88\t0xCDAB\n0xAD89\t0xCDAC\n0xAD8A\t0xCDAD\n0xAD8B\t0xCDAE\n0xAD8C\t0xCDAF\n0xAD8D\t0xCDB1\n0xAD8E\t0xCDB2\n0xAD8F\t0xCDB3\n0xAD90\t0xCDB4\n0xAD91\t0xCDB5\n0xAD92\t0xCDB6\n0xAD93\t0xCDB7\n0xAD94\t0xCDB8\n0xAD95\t0xCDB9\n0xAD96\t0xCDBA\n0xAD97\t0xCDBB\n0xAD98\t0xCDBC\n0xAD99\t0xCDBD\n0xAD9A\t0xCDBE\n0xAD9B\t0xCDBF\n0xAD9C\t0xCDC0\n0xAD9D\t0xCDC1\n0xAD9E\t0xCDC2\n0xAD9F\t0xCDC3\n0xADA0\t0xCDC5\n0xAE41\t0xCDC6\n0xAE42\t0xCDC7\n0xAE43\t0xCDC8\n0xAE44\t0xCDC9\n0xAE45\t0xCDCA\n0xAE46\t0xCDCB\n0xAE47\t0xCDCD\n0xAE48\t0xCDCE\n0xAE49\t0xCDCF\n0xAE4A\t0xCDD1\n0xAE4B\t0xCDD2\n0xAE4C\t0xCDD3\n0xAE4D\t0xCDD4\n0xAE4E\t0xCDD5\n0xAE4F\t0xCDD6\n0xAE50\t0xCDD7\n0xAE51\t0xCDD8\n0xAE52\t0xCDD9\n0xAE53\t0xCDDA\n0xAE54\t0xCDDB\n0xAE55\t0xCDDC\n0xAE56\t0xCDDD\n0xAE57\t0xCDDE\n0xAE58\t0xCDDF\n0xAE59\t0xCDE0\n0xAE5A\t0xCDE1\n0xAE61\t0xCDE2\n0xAE62\t0xCDE3\n0xAE63\t0xCDE4\n0xAE64\t0xCDE5\n0xAE65\t0xCDE6\n0xAE66\t0xCDE7\n0xAE67\t0xCDE9\n0xAE68\t0xCDEA\n0xAE69\t0xCDEB\n0xAE6A\t0xCDED\n0xAE6B\t0xCDEE\n0xAE6C\t0xCDEF\n0xAE6D\t0xCDF1\n0xAE6E\t0xCDF2\n0xAE6F\t0xCDF3\n0xAE70\t0xCDF4\n0xAE71\t0xCDF5\n0xAE72\t0xCDF6\n0xAE73\t0xCDF7\n0xAE74\t0xCDFA\n0xAE75\t0xCDFC\n0xAE76\t0xCDFE\n0xAE77\t0xCDFF\n0xAE78\t0xCE00\n0xAE79\t0xCE01\n0xAE7A\t0xCE02\n0xAE81\t0xCE03\n0xAE82\t0xCE05\n0xAE83\t0xCE06\n0xAE84\t0xCE07\n0xAE85\t0xCE09\n0xAE86\t0xCE0A\n0xAE87\t0xCE0B\n0xAE88\t0xCE0D\n0xAE89\t0xCE0E\n0xAE8A\t0xCE0F\n0xAE8B\t0xCE10\n0xAE8C\t0xCE11\n0xAE8D\t0xCE12\n0xAE8E\t0xCE13\n0xAE8F\t0xCE15\n0xAE90\t0xCE16\n0xAE91\t0xCE17\n0xAE92\t0xCE18\n0xAE93\t0xCE1A\n0xAE94\t0xCE1B\n0xAE95\t0xCE1C\n0xAE96\t0xCE1D\n0xAE97\t0xCE1E\n0xAE98\t0xCE1F\n0xAE99\t0xCE22\n0xAE9A\t0xCE23\n0xAE9B\t0xCE25\n0xAE9C\t0xCE26\n0xAE9D\t0xCE27\n0xAE9E\t0xCE29\n0xAE9F\t0xCE2A\n0xAEA0\t0xCE2B\n0xAF41\t0xCE2C\n0xAF42\t0xCE2D\n0xAF43\t0xCE2E\n0xAF44\t0xCE2F\n0xAF45\t0xCE32\n0xAF46\t0xCE34\n0xAF47\t0xCE36\n0xAF48\t0xCE37\n0xAF49\t0xCE38\n0xAF4A\t0xCE39\n0xAF4B\t0xCE3A\n0xAF4C\t0xCE3B\n0xAF4D\t0xCE3C\n0xAF4E\t0xCE3D\n0xAF4F\t0xCE3E\n0xAF50\t0xCE3F\n0xAF51\t0xCE40\n0xAF52\t0xCE41\n0xAF53\t0xCE42\n0xAF54\t0xCE43\n0xAF55\t0xCE44\n0xAF56\t0xCE45\n0xAF57\t0xCE46\n0xAF58\t0xCE47\n0xAF59\t0xCE48\n0xAF5A\t0xCE49\n0xAF61\t0xCE4A\n0xAF62\t0xCE4B\n0xAF63\t0xCE4C\n0xAF64\t0xCE4D\n0xAF65\t0xCE4E\n0xAF66\t0xCE4F\n0xAF67\t0xCE50\n0xAF68\t0xCE51\n0xAF69\t0xCE52\n0xAF6A\t0xCE53\n0xAF6B\t0xCE54\n0xAF6C\t0xCE55\n0xAF6D\t0xCE56\n0xAF6E\t0xCE57\n0xAF6F\t0xCE5A\n0xAF70\t0xCE5B\n0xAF71\t0xCE5D\n0xAF72\t0xCE5E\n0xAF73\t0xCE62\n0xAF74\t0xCE63\n0xAF75\t0xCE64\n0xAF76\t0xCE65\n0xAF77\t0xCE66\n0xAF78\t0xCE67\n0xAF79\t0xCE6A\n0xAF7A\t0xCE6C\n0xAF81\t0xCE6E\n0xAF82\t0xCE6F\n0xAF83\t0xCE70\n0xAF84\t0xCE71\n0xAF85\t0xCE72\n0xAF86\t0xCE73\n0xAF87\t0xCE76\n0xAF88\t0xCE77\n0xAF89\t0xCE79\n0xAF8A\t0xCE7A\n0xAF8B\t0xCE7B\n0xAF8C\t0xCE7D\n0xAF8D\t0xCE7E\n0xAF8E\t0xCE7F\n0xAF8F\t0xCE80\n0xAF90\t0xCE81\n0xAF91\t0xCE82\n0xAF92\t0xCE83\n0xAF93\t0xCE86\n0xAF94\t0xCE88\n0xAF95\t0xCE8A\n0xAF96\t0xCE8B\n0xAF97\t0xCE8C\n0xAF98\t0xCE8D\n0xAF99\t0xCE8E\n0xAF9A\t0xCE8F\n0xAF9B\t0xCE92\n0xAF9C\t0xCE93\n0xAF9D\t0xCE95\n0xAF9E\t0xCE96\n0xAF9F\t0xCE97\n0xAFA0\t0xCE99\n0xB041\t0xCE9A\n0xB042\t0xCE9B\n0xB043\t0xCE9C\n0xB044\t0xCE9D\n0xB045\t0xCE9E\n0xB046\t0xCE9F\n0xB047\t0xCEA2\n0xB048\t0xCEA6\n0xB049\t0xCEA7\n0xB04A\t0xCEA8\n0xB04B\t0xCEA9\n0xB04C\t0xCEAA\n0xB04D\t0xCEAB\n0xB04E\t0xCEAE\n0xB04F\t0xCEAF\n0xB050\t0xCEB0\n0xB051\t0xCEB1\n0xB052\t0xCEB2\n0xB053\t0xCEB3\n0xB054\t0xCEB4\n0xB055\t0xCEB5\n0xB056\t0xCEB6\n0xB057\t0xCEB7\n0xB058\t0xCEB8\n0xB059\t0xCEB9\n0xB05A\t0xCEBA\n0xB061\t0xCEBB\n0xB062\t0xCEBC\n0xB063\t0xCEBD\n0xB064\t0xCEBE\n0xB065\t0xCEBF\n0xB066\t0xCEC0\n0xB067\t0xCEC2\n0xB068\t0xCEC3\n0xB069\t0xCEC4\n0xB06A\t0xCEC5\n0xB06B\t0xCEC6\n0xB06C\t0xCEC7\n0xB06D\t0xCEC8\n0xB06E\t0xCEC9\n0xB06F\t0xCECA\n0xB070\t0xCECB\n0xB071\t0xCECC\n0xB072\t0xCECD\n0xB073\t0xCECE\n0xB074\t0xCECF\n0xB075\t0xCED0\n0xB076\t0xCED1\n0xB077\t0xCED2\n0xB078\t0xCED3\n0xB079\t0xCED4\n0xB07A\t0xCED5\n0xB081\t0xCED6\n0xB082\t0xCED7\n0xB083\t0xCED8\n0xB084\t0xCED9\n0xB085\t0xCEDA\n0xB086\t0xCEDB\n0xB087\t0xCEDC\n0xB088\t0xCEDD\n0xB089\t0xCEDE\n0xB08A\t0xCEDF\n0xB08B\t0xCEE0\n0xB08C\t0xCEE1\n0xB08D\t0xCEE2\n0xB08E\t0xCEE3\n0xB08F\t0xCEE6\n0xB090\t0xCEE7\n0xB091\t0xCEE9\n0xB092\t0xCEEA\n0xB093\t0xCEED\n0xB094\t0xCEEE\n0xB095\t0xCEEF\n0xB096\t0xCEF0\n0xB097\t0xCEF1\n0xB098\t0xCEF2\n0xB099\t0xCEF3\n0xB09A\t0xCEF6\n0xB09B\t0xCEFA\n0xB09C\t0xCEFB\n0xB09D\t0xCEFC\n0xB09E\t0xCEFD\n0xB09F\t0xCEFE\n0xB0A0\t0xCEFF\n0xB0A1\t0xAC00\n0xB0A2\t0xAC01\n0xB0A3\t0xAC04\n0xB0A4\t0xAC07\n0xB0A5\t0xAC08\n0xB0A6\t0xAC09\n0xB0A7\t0xAC0A\n0xB0A8\t0xAC10\n0xB0A9\t0xAC11\n0xB0AA\t0xAC12\n0xB0AB\t0xAC13\n0xB0AC\t0xAC14\n0xB0AD\t0xAC15\n0xB0AE\t0xAC16\n0xB0AF\t0xAC17\n0xB0B0\t0xAC19\n0xB0B1\t0xAC1A\n0xB0B2\t0xAC1B\n0xB0B3\t0xAC1C\n0xB0B4\t0xAC1D\n0xB0B5\t0xAC20\n0xB0B6\t0xAC24\n0xB0B7\t0xAC2C\n0xB0B8\t0xAC2D\n0xB0B9\t0xAC2F\n0xB0BA\t0xAC30\n0xB0BB\t0xAC31\n0xB0BC\t0xAC38\n0xB0BD\t0xAC39\n0xB0BE\t0xAC3C\n0xB0BF\t0xAC40\n0xB0C0\t0xAC4B\n0xB0C1\t0xAC4D\n0xB0C2\t0xAC54\n0xB0C3\t0xAC58\n0xB0C4\t0xAC5C\n0xB0C5\t0xAC70\n0xB0C6\t0xAC71\n0xB0C7\t0xAC74\n0xB0C8\t0xAC77\n0xB0C9\t0xAC78\n0xB0CA\t0xAC7A\n0xB0CB\t0xAC80\n0xB0CC\t0xAC81\n0xB0CD\t0xAC83\n0xB0CE\t0xAC84\n0xB0CF\t0xAC85\n0xB0D0\t0xAC86\n0xB0D1\t0xAC89\n0xB0D2\t0xAC8A\n0xB0D3\t0xAC8B\n0xB0D4\t0xAC8C\n0xB0D5\t0xAC90\n0xB0D6\t0xAC94\n0xB0D7\t0xAC9C\n0xB0D8\t0xAC9D\n0xB0D9\t0xAC9F\n0xB0DA\t0xACA0\n0xB0DB\t0xACA1\n0xB0DC\t0xACA8\n0xB0DD\t0xACA9\n0xB0DE\t0xACAA\n0xB0DF\t0xACAC\n0xB0E0\t0xACAF\n0xB0E1\t0xACB0\n0xB0E2\t0xACB8\n0xB0E3\t0xACB9\n0xB0E4\t0xACBB\n0xB0E5\t0xACBC\n0xB0E6\t0xACBD\n0xB0E7\t0xACC1\n0xB0E8\t0xACC4\n0xB0E9\t0xACC8\n0xB0EA\t0xACCC\n0xB0EB\t0xACD5\n0xB0EC\t0xACD7\n0xB0ED\t0xACE0\n0xB0EE\t0xACE1\n0xB0EF\t0xACE4\n0xB0F0\t0xACE7\n0xB0F1\t0xACE8\n0xB0F2\t0xACEA\n0xB0F3\t0xACEC\n0xB0F4\t0xACEF\n0xB0F5\t0xACF0\n0xB0F6\t0xACF1\n0xB0F7\t0xACF3\n0xB0F8\t0xACF5\n0xB0F9\t0xACF6\n0xB0FA\t0xACFC\n0xB0FB\t0xACFD\n0xB0FC\t0xAD00\n0xB0FD\t0xAD04\n0xB0FE\t0xAD06\n0xB141\t0xCF02\n0xB142\t0xCF03\n0xB143\t0xCF05\n0xB144\t0xCF06\n0xB145\t0xCF07\n0xB146\t0xCF09\n0xB147\t0xCF0A\n0xB148\t0xCF0B\n0xB149\t0xCF0C\n0xB14A\t0xCF0D\n0xB14B\t0xCF0E\n0xB14C\t0xCF0F\n0xB14D\t0xCF12\n0xB14E\t0xCF14\n0xB14F\t0xCF16\n0xB150\t0xCF17\n0xB151\t0xCF18\n0xB152\t0xCF19\n0xB153\t0xCF1A\n0xB154\t0xCF1B\n0xB155\t0xCF1D\n0xB156\t0xCF1E\n0xB157\t0xCF1F\n0xB158\t0xCF21\n0xB159\t0xCF22\n0xB15A\t0xCF23\n0xB161\t0xCF25\n0xB162\t0xCF26\n0xB163\t0xCF27\n0xB164\t0xCF28\n0xB165\t0xCF29\n0xB166\t0xCF2A\n0xB167\t0xCF2B\n0xB168\t0xCF2E\n0xB169\t0xCF32\n0xB16A\t0xCF33\n0xB16B\t0xCF34\n0xB16C\t0xCF35\n0xB16D\t0xCF36\n0xB16E\t0xCF37\n0xB16F\t0xCF39\n0xB170\t0xCF3A\n0xB171\t0xCF3B\n0xB172\t0xCF3C\n0xB173\t0xCF3D\n0xB174\t0xCF3E\n0xB175\t0xCF3F\n0xB176\t0xCF40\n0xB177\t0xCF41\n0xB178\t0xCF42\n0xB179\t0xCF43\n0xB17A\t0xCF44\n0xB181\t0xCF45\n0xB182\t0xCF46\n0xB183\t0xCF47\n0xB184\t0xCF48\n0xB185\t0xCF49\n0xB186\t0xCF4A\n0xB187\t0xCF4B\n0xB188\t0xCF4C\n0xB189\t0xCF4D\n0xB18A\t0xCF4E\n0xB18B\t0xCF4F\n0xB18C\t0xCF50\n0xB18D\t0xCF51\n0xB18E\t0xCF52\n0xB18F\t0xCF53\n0xB190\t0xCF56\n0xB191\t0xCF57\n0xB192\t0xCF59\n0xB193\t0xCF5A\n0xB194\t0xCF5B\n0xB195\t0xCF5D\n0xB196\t0xCF5E\n0xB197\t0xCF5F\n0xB198\t0xCF60\n0xB199\t0xCF61\n0xB19A\t0xCF62\n0xB19B\t0xCF63\n0xB19C\t0xCF66\n0xB19D\t0xCF68\n0xB19E\t0xCF6A\n0xB19F\t0xCF6B\n0xB1A0\t0xCF6C\n0xB1A1\t0xAD0C\n0xB1A2\t0xAD0D\n0xB1A3\t0xAD0F\n0xB1A4\t0xAD11\n0xB1A5\t0xAD18\n0xB1A6\t0xAD1C\n0xB1A7\t0xAD20\n0xB1A8\t0xAD29\n0xB1A9\t0xAD2C\n0xB1AA\t0xAD2D\n0xB1AB\t0xAD34\n0xB1AC\t0xAD35\n0xB1AD\t0xAD38\n0xB1AE\t0xAD3C\n0xB1AF\t0xAD44\n0xB1B0\t0xAD45\n0xB1B1\t0xAD47\n0xB1B2\t0xAD49\n0xB1B3\t0xAD50\n0xB1B4\t0xAD54\n0xB1B5\t0xAD58\n0xB1B6\t0xAD61\n0xB1B7\t0xAD63\n0xB1B8\t0xAD6C\n0xB1B9\t0xAD6D\n0xB1BA\t0xAD70\n0xB1BB\t0xAD73\n0xB1BC\t0xAD74\n0xB1BD\t0xAD75\n0xB1BE\t0xAD76\n0xB1BF\t0xAD7B\n0xB1C0\t0xAD7C\n0xB1C1\t0xAD7D\n0xB1C2\t0xAD7F\n0xB1C3\t0xAD81\n0xB1C4\t0xAD82\n0xB1C5\t0xAD88\n0xB1C6\t0xAD89\n0xB1C7\t0xAD8C\n0xB1C8\t0xAD90\n0xB1C9\t0xAD9C\n0xB1CA\t0xAD9D\n0xB1CB\t0xADA4\n0xB1CC\t0xADB7\n0xB1CD\t0xADC0\n0xB1CE\t0xADC1\n0xB1CF\t0xADC4\n0xB1D0\t0xADC8\n0xB1D1\t0xADD0\n0xB1D2\t0xADD1\n0xB1D3\t0xADD3\n0xB1D4\t0xADDC\n0xB1D5\t0xADE0\n0xB1D6\t0xADE4\n0xB1D7\t0xADF8\n0xB1D8\t0xADF9\n0xB1D9\t0xADFC\n0xB1DA\t0xADFF\n0xB1DB\t0xAE00\n0xB1DC\t0xAE01\n0xB1DD\t0xAE08\n0xB1DE\t0xAE09\n0xB1DF\t0xAE0B\n0xB1E0\t0xAE0D\n0xB1E1\t0xAE14\n0xB1E2\t0xAE30\n0xB1E3\t0xAE31\n0xB1E4\t0xAE34\n0xB1E5\t0xAE37\n0xB1E6\t0xAE38\n0xB1E7\t0xAE3A\n0xB1E8\t0xAE40\n0xB1E9\t0xAE41\n0xB1EA\t0xAE43\n0xB1EB\t0xAE45\n0xB1EC\t0xAE46\n0xB1ED\t0xAE4A\n0xB1EE\t0xAE4C\n0xB1EF\t0xAE4D\n0xB1F0\t0xAE4E\n0xB1F1\t0xAE50\n0xB1F2\t0xAE54\n0xB1F3\t0xAE56\n0xB1F4\t0xAE5C\n0xB1F5\t0xAE5D\n0xB1F6\t0xAE5F\n0xB1F7\t0xAE60\n0xB1F8\t0xAE61\n0xB1F9\t0xAE65\n0xB1FA\t0xAE68\n0xB1FB\t0xAE69\n0xB1FC\t0xAE6C\n0xB1FD\t0xAE70\n0xB1FE\t0xAE78\n0xB241\t0xCF6D\n0xB242\t0xCF6E\n0xB243\t0xCF6F\n0xB244\t0xCF72\n0xB245\t0xCF73\n0xB246\t0xCF75\n0xB247\t0xCF76\n0xB248\t0xCF77\n0xB249\t0xCF79\n0xB24A\t0xCF7A\n0xB24B\t0xCF7B\n0xB24C\t0xCF7C\n0xB24D\t0xCF7D\n0xB24E\t0xCF7E\n0xB24F\t0xCF7F\n0xB250\t0xCF81\n0xB251\t0xCF82\n0xB252\t0xCF83\n0xB253\t0xCF84\n0xB254\t0xCF86\n0xB255\t0xCF87\n0xB256\t0xCF88\n0xB257\t0xCF89\n0xB258\t0xCF8A\n0xB259\t0xCF8B\n0xB25A\t0xCF8D\n0xB261\t0xCF8E\n0xB262\t0xCF8F\n0xB263\t0xCF90\n0xB264\t0xCF91\n0xB265\t0xCF92\n0xB266\t0xCF93\n0xB267\t0xCF94\n0xB268\t0xCF95\n0xB269\t0xCF96\n0xB26A\t0xCF97\n0xB26B\t0xCF98\n0xB26C\t0xCF99\n0xB26D\t0xCF9A\n0xB26E\t0xCF9B\n0xB26F\t0xCF9C\n0xB270\t0xCF9D\n0xB271\t0xCF9E\n0xB272\t0xCF9F\n0xB273\t0xCFA0\n0xB274\t0xCFA2\n0xB275\t0xCFA3\n0xB276\t0xCFA4\n0xB277\t0xCFA5\n0xB278\t0xCFA6\n0xB279\t0xCFA7\n0xB27A\t0xCFA9\n0xB281\t0xCFAA\n0xB282\t0xCFAB\n0xB283\t0xCFAC\n0xB284\t0xCFAD\n0xB285\t0xCFAE\n0xB286\t0xCFAF\n0xB287\t0xCFB1\n0xB288\t0xCFB2\n0xB289\t0xCFB3\n0xB28A\t0xCFB4\n0xB28B\t0xCFB5\n0xB28C\t0xCFB6\n0xB28D\t0xCFB7\n0xB28E\t0xCFB8\n0xB28F\t0xCFB9\n0xB290\t0xCFBA\n0xB291\t0xCFBB\n0xB292\t0xCFBC\n0xB293\t0xCFBD\n0xB294\t0xCFBE\n0xB295\t0xCFBF\n0xB296\t0xCFC0\n0xB297\t0xCFC1\n0xB298\t0xCFC2\n0xB299\t0xCFC3\n0xB29A\t0xCFC5\n0xB29B\t0xCFC6\n0xB29C\t0xCFC7\n0xB29D\t0xCFC8\n0xB29E\t0xCFC9\n0xB29F\t0xCFCA\n0xB2A0\t0xCFCB\n0xB2A1\t0xAE79\n0xB2A2\t0xAE7B\n0xB2A3\t0xAE7C\n0xB2A4\t0xAE7D\n0xB2A5\t0xAE84\n0xB2A6\t0xAE85\n0xB2A7\t0xAE8C\n0xB2A8\t0xAEBC\n0xB2A9\t0xAEBD\n0xB2AA\t0xAEBE\n0xB2AB\t0xAEC0\n0xB2AC\t0xAEC4\n0xB2AD\t0xAECC\n0xB2AE\t0xAECD\n0xB2AF\t0xAECF\n0xB2B0\t0xAED0\n0xB2B1\t0xAED1\n0xB2B2\t0xAED8\n0xB2B3\t0xAED9\n0xB2B4\t0xAEDC\n0xB2B5\t0xAEE8\n0xB2B6\t0xAEEB\n0xB2B7\t0xAEED\n0xB2B8\t0xAEF4\n0xB2B9\t0xAEF8\n0xB2BA\t0xAEFC\n0xB2BB\t0xAF07\n0xB2BC\t0xAF08\n0xB2BD\t0xAF0D\n0xB2BE\t0xAF10\n0xB2BF\t0xAF2C\n0xB2C0\t0xAF2D\n0xB2C1\t0xAF30\n0xB2C2\t0xAF32\n0xB2C3\t0xAF34\n0xB2C4\t0xAF3C\n0xB2C5\t0xAF3D\n0xB2C6\t0xAF3F\n0xB2C7\t0xAF41\n0xB2C8\t0xAF42\n0xB2C9\t0xAF43\n0xB2CA\t0xAF48\n0xB2CB\t0xAF49\n0xB2CC\t0xAF50\n0xB2CD\t0xAF5C\n0xB2CE\t0xAF5D\n0xB2CF\t0xAF64\n0xB2D0\t0xAF65\n0xB2D1\t0xAF79\n0xB2D2\t0xAF80\n0xB2D3\t0xAF84\n0xB2D4\t0xAF88\n0xB2D5\t0xAF90\n0xB2D6\t0xAF91\n0xB2D7\t0xAF95\n0xB2D8\t0xAF9C\n0xB2D9\t0xAFB8\n0xB2DA\t0xAFB9\n0xB2DB\t0xAFBC\n0xB2DC\t0xAFC0\n0xB2DD\t0xAFC7\n0xB2DE\t0xAFC8\n0xB2DF\t0xAFC9\n0xB2E0\t0xAFCB\n0xB2E1\t0xAFCD\n0xB2E2\t0xAFCE\n0xB2E3\t0xAFD4\n0xB2E4\t0xAFDC\n0xB2E5\t0xAFE8\n0xB2E6\t0xAFE9\n0xB2E7\t0xAFF0\n0xB2E8\t0xAFF1\n0xB2E9\t0xAFF4\n0xB2EA\t0xAFF8\n0xB2EB\t0xB000\n0xB2EC\t0xB001\n0xB2ED\t0xB004\n0xB2EE\t0xB00C\n0xB2EF\t0xB010\n0xB2F0\t0xB014\n0xB2F1\t0xB01C\n0xB2F2\t0xB01D\n0xB2F3\t0xB028\n0xB2F4\t0xB044\n0xB2F5\t0xB045\n0xB2F6\t0xB048\n0xB2F7\t0xB04A\n0xB2F8\t0xB04C\n0xB2F9\t0xB04E\n0xB2FA\t0xB053\n0xB2FB\t0xB054\n0xB2FC\t0xB055\n0xB2FD\t0xB057\n0xB2FE\t0xB059\n0xB341\t0xCFCC\n0xB342\t0xCFCD\n0xB343\t0xCFCE\n0xB344\t0xCFCF\n0xB345\t0xCFD0\n0xB346\t0xCFD1\n0xB347\t0xCFD2\n0xB348\t0xCFD3\n0xB349\t0xCFD4\n0xB34A\t0xCFD5\n0xB34B\t0xCFD6\n0xB34C\t0xCFD7\n0xB34D\t0xCFD8\n0xB34E\t0xCFD9\n0xB34F\t0xCFDA\n0xB350\t0xCFDB\n0xB351\t0xCFDC\n0xB352\t0xCFDD\n0xB353\t0xCFDE\n0xB354\t0xCFDF\n0xB355\t0xCFE2\n0xB356\t0xCFE3\n0xB357\t0xCFE5\n0xB358\t0xCFE6\n0xB359\t0xCFE7\n0xB35A\t0xCFE9\n0xB361\t0xCFEA\n0xB362\t0xCFEB\n0xB363\t0xCFEC\n0xB364\t0xCFED\n0xB365\t0xCFEE\n0xB366\t0xCFEF\n0xB367\t0xCFF2\n0xB368\t0xCFF4\n0xB369\t0xCFF6\n0xB36A\t0xCFF7\n0xB36B\t0xCFF8\n0xB36C\t0xCFF9\n0xB36D\t0xCFFA\n0xB36E\t0xCFFB\n0xB36F\t0xCFFD\n0xB370\t0xCFFE\n0xB371\t0xCFFF\n0xB372\t0xD001\n0xB373\t0xD002\n0xB374\t0xD003\n0xB375\t0xD005\n0xB376\t0xD006\n0xB377\t0xD007\n0xB378\t0xD008\n0xB379\t0xD009\n0xB37A\t0xD00A\n0xB381\t0xD00B\n0xB382\t0xD00C\n0xB383\t0xD00D\n0xB384\t0xD00E\n0xB385\t0xD00F\n0xB386\t0xD010\n0xB387\t0xD012\n0xB388\t0xD013\n0xB389\t0xD014\n0xB38A\t0xD015\n0xB38B\t0xD016\n0xB38C\t0xD017\n0xB38D\t0xD019\n0xB38E\t0xD01A\n0xB38F\t0xD01B\n0xB390\t0xD01C\n0xB391\t0xD01D\n0xB392\t0xD01E\n0xB393\t0xD01F\n0xB394\t0xD020\n0xB395\t0xD021\n0xB396\t0xD022\n0xB397\t0xD023\n0xB398\t0xD024\n0xB399\t0xD025\n0xB39A\t0xD026\n0xB39B\t0xD027\n0xB39C\t0xD028\n0xB39D\t0xD029\n0xB39E\t0xD02A\n0xB39F\t0xD02B\n0xB3A0\t0xD02C\n0xB3A1\t0xB05D\n0xB3A2\t0xB07C\n0xB3A3\t0xB07D\n0xB3A4\t0xB080\n0xB3A5\t0xB084\n0xB3A6\t0xB08C\n0xB3A7\t0xB08D\n0xB3A8\t0xB08F\n0xB3A9\t0xB091\n0xB3AA\t0xB098\n0xB3AB\t0xB099\n0xB3AC\t0xB09A\n0xB3AD\t0xB09C\n0xB3AE\t0xB09F\n0xB3AF\t0xB0A0\n0xB3B0\t0xB0A1\n0xB3B1\t0xB0A2\n0xB3B2\t0xB0A8\n0xB3B3\t0xB0A9\n0xB3B4\t0xB0AB\n0xB3B5\t0xB0AC\n0xB3B6\t0xB0AD\n0xB3B7\t0xB0AE\n0xB3B8\t0xB0AF\n0xB3B9\t0xB0B1\n0xB3BA\t0xB0B3\n0xB3BB\t0xB0B4\n0xB3BC\t0xB0B5\n0xB3BD\t0xB0B8\n0xB3BE\t0xB0BC\n0xB3BF\t0xB0C4\n0xB3C0\t0xB0C5\n0xB3C1\t0xB0C7\n0xB3C2\t0xB0C8\n0xB3C3\t0xB0C9\n0xB3C4\t0xB0D0\n0xB3C5\t0xB0D1\n0xB3C6\t0xB0D4\n0xB3C7\t0xB0D8\n0xB3C8\t0xB0E0\n0xB3C9\t0xB0E5\n0xB3CA\t0xB108\n0xB3CB\t0xB109\n0xB3CC\t0xB10B\n0xB3CD\t0xB10C\n0xB3CE\t0xB110\n0xB3CF\t0xB112\n0xB3D0\t0xB113\n0xB3D1\t0xB118\n0xB3D2\t0xB119\n0xB3D3\t0xB11B\n0xB3D4\t0xB11C\n0xB3D5\t0xB11D\n0xB3D6\t0xB123\n0xB3D7\t0xB124\n0xB3D8\t0xB125\n0xB3D9\t0xB128\n0xB3DA\t0xB12C\n0xB3DB\t0xB134\n0xB3DC\t0xB135\n0xB3DD\t0xB137\n0xB3DE\t0xB138\n0xB3DF\t0xB139\n0xB3E0\t0xB140\n0xB3E1\t0xB141\n0xB3E2\t0xB144\n0xB3E3\t0xB148\n0xB3E4\t0xB150\n0xB3E5\t0xB151\n0xB3E6\t0xB154\n0xB3E7\t0xB155\n0xB3E8\t0xB158\n0xB3E9\t0xB15C\n0xB3EA\t0xB160\n0xB3EB\t0xB178\n0xB3EC\t0xB179\n0xB3ED\t0xB17C\n0xB3EE\t0xB180\n0xB3EF\t0xB182\n0xB3F0\t0xB188\n0xB3F1\t0xB189\n0xB3F2\t0xB18B\n0xB3F3\t0xB18D\n0xB3F4\t0xB192\n0xB3F5\t0xB193\n0xB3F6\t0xB194\n0xB3F7\t0xB198\n0xB3F8\t0xB19C\n0xB3F9\t0xB1A8\n0xB3FA\t0xB1CC\n0xB3FB\t0xB1D0\n0xB3FC\t0xB1D4\n0xB3FD\t0xB1DC\n0xB3FE\t0xB1DD\n0xB441\t0xD02E\n0xB442\t0xD02F\n0xB443\t0xD030\n0xB444\t0xD031\n0xB445\t0xD032\n0xB446\t0xD033\n0xB447\t0xD036\n0xB448\t0xD037\n0xB449\t0xD039\n0xB44A\t0xD03A\n0xB44B\t0xD03B\n0xB44C\t0xD03D\n0xB44D\t0xD03E\n0xB44E\t0xD03F\n0xB44F\t0xD040\n0xB450\t0xD041\n0xB451\t0xD042\n0xB452\t0xD043\n0xB453\t0xD046\n0xB454\t0xD048\n0xB455\t0xD04A\n0xB456\t0xD04B\n0xB457\t0xD04C\n0xB458\t0xD04D\n0xB459\t0xD04E\n0xB45A\t0xD04F\n0xB461\t0xD051\n0xB462\t0xD052\n0xB463\t0xD053\n0xB464\t0xD055\n0xB465\t0xD056\n0xB466\t0xD057\n0xB467\t0xD059\n0xB468\t0xD05A\n0xB469\t0xD05B\n0xB46A\t0xD05C\n0xB46B\t0xD05D\n0xB46C\t0xD05E\n0xB46D\t0xD05F\n0xB46E\t0xD061\n0xB46F\t0xD062\n0xB470\t0xD063\n0xB471\t0xD064\n0xB472\t0xD065\n0xB473\t0xD066\n0xB474\t0xD067\n0xB475\t0xD068\n0xB476\t0xD069\n0xB477\t0xD06A\n0xB478\t0xD06B\n0xB479\t0xD06E\n0xB47A\t0xD06F\n0xB481\t0xD071\n0xB482\t0xD072\n0xB483\t0xD073\n0xB484\t0xD075\n0xB485\t0xD076\n0xB486\t0xD077\n0xB487\t0xD078\n0xB488\t0xD079\n0xB489\t0xD07A\n0xB48A\t0xD07B\n0xB48B\t0xD07E\n0xB48C\t0xD07F\n0xB48D\t0xD080\n0xB48E\t0xD082\n0xB48F\t0xD083\n0xB490\t0xD084\n0xB491\t0xD085\n0xB492\t0xD086\n0xB493\t0xD087\n0xB494\t0xD088\n0xB495\t0xD089\n0xB496\t0xD08A\n0xB497\t0xD08B\n0xB498\t0xD08C\n0xB499\t0xD08D\n0xB49A\t0xD08E\n0xB49B\t0xD08F\n0xB49C\t0xD090\n0xB49D\t0xD091\n0xB49E\t0xD092\n0xB49F\t0xD093\n0xB4A0\t0xD094\n0xB4A1\t0xB1DF\n0xB4A2\t0xB1E8\n0xB4A3\t0xB1E9\n0xB4A4\t0xB1EC\n0xB4A5\t0xB1F0\n0xB4A6\t0xB1F9\n0xB4A7\t0xB1FB\n0xB4A8\t0xB1FD\n0xB4A9\t0xB204\n0xB4AA\t0xB205\n0xB4AB\t0xB208\n0xB4AC\t0xB20B\n0xB4AD\t0xB20C\n0xB4AE\t0xB214\n0xB4AF\t0xB215\n0xB4B0\t0xB217\n0xB4B1\t0xB219\n0xB4B2\t0xB220\n0xB4B3\t0xB234\n0xB4B4\t0xB23C\n0xB4B5\t0xB258\n0xB4B6\t0xB25C\n0xB4B7\t0xB260\n0xB4B8\t0xB268\n0xB4B9\t0xB269\n0xB4BA\t0xB274\n0xB4BB\t0xB275\n0xB4BC\t0xB27C\n0xB4BD\t0xB284\n0xB4BE\t0xB285\n0xB4BF\t0xB289\n0xB4C0\t0xB290\n0xB4C1\t0xB291\n0xB4C2\t0xB294\n0xB4C3\t0xB298\n0xB4C4\t0xB299\n0xB4C5\t0xB29A\n0xB4C6\t0xB2A0\n0xB4C7\t0xB2A1\n0xB4C8\t0xB2A3\n0xB4C9\t0xB2A5\n0xB4CA\t0xB2A6\n0xB4CB\t0xB2AA\n0xB4CC\t0xB2AC\n0xB4CD\t0xB2B0\n0xB4CE\t0xB2B4\n0xB4CF\t0xB2C8\n0xB4D0\t0xB2C9\n0xB4D1\t0xB2CC\n0xB4D2\t0xB2D0\n0xB4D3\t0xB2D2\n0xB4D4\t0xB2D8\n0xB4D5\t0xB2D9\n0xB4D6\t0xB2DB\n0xB4D7\t0xB2DD\n0xB4D8\t0xB2E2\n0xB4D9\t0xB2E4\n0xB4DA\t0xB2E5\n0xB4DB\t0xB2E6\n0xB4DC\t0xB2E8\n0xB4DD\t0xB2EB\n0xB4DE\t0xB2EC\n0xB4DF\t0xB2ED\n0xB4E0\t0xB2EE\n0xB4E1\t0xB2EF\n0xB4E2\t0xB2F3\n0xB4E3\t0xB2F4\n0xB4E4\t0xB2F5\n0xB4E5\t0xB2F7\n0xB4E6\t0xB2F8\n0xB4E7\t0xB2F9\n0xB4E8\t0xB2FA\n0xB4E9\t0xB2FB\n0xB4EA\t0xB2FF\n0xB4EB\t0xB300\n0xB4EC\t0xB301\n0xB4ED\t0xB304\n0xB4EE\t0xB308\n0xB4EF\t0xB310\n0xB4F0\t0xB311\n0xB4F1\t0xB313\n0xB4F2\t0xB314\n0xB4F3\t0xB315\n0xB4F4\t0xB31C\n0xB4F5\t0xB354\n0xB4F6\t0xB355\n0xB4F7\t0xB356\n0xB4F8\t0xB358\n0xB4F9\t0xB35B\n0xB4FA\t0xB35C\n0xB4FB\t0xB35E\n0xB4FC\t0xB35F\n0xB4FD\t0xB364\n0xB4FE\t0xB365\n0xB541\t0xD095\n0xB542\t0xD096\n0xB543\t0xD097\n0xB544\t0xD098\n0xB545\t0xD099\n0xB546\t0xD09A\n0xB547\t0xD09B\n0xB548\t0xD09C\n0xB549\t0xD09D\n0xB54A\t0xD09E\n0xB54B\t0xD09F\n0xB54C\t0xD0A0\n0xB54D\t0xD0A1\n0xB54E\t0xD0A2\n0xB54F\t0xD0A3\n0xB550\t0xD0A6\n0xB551\t0xD0A7\n0xB552\t0xD0A9\n0xB553\t0xD0AA\n0xB554\t0xD0AB\n0xB555\t0xD0AD\n0xB556\t0xD0AE\n0xB557\t0xD0AF\n0xB558\t0xD0B0\n0xB559\t0xD0B1\n0xB55A\t0xD0B2\n0xB561\t0xD0B3\n0xB562\t0xD0B6\n0xB563\t0xD0B8\n0xB564\t0xD0BA\n0xB565\t0xD0BB\n0xB566\t0xD0BC\n0xB567\t0xD0BD\n0xB568\t0xD0BE\n0xB569\t0xD0BF\n0xB56A\t0xD0C2\n0xB56B\t0xD0C3\n0xB56C\t0xD0C5\n0xB56D\t0xD0C6\n0xB56E\t0xD0C7\n0xB56F\t0xD0CA\n0xB570\t0xD0CB\n0xB571\t0xD0CC\n0xB572\t0xD0CD\n0xB573\t0xD0CE\n0xB574\t0xD0CF\n0xB575\t0xD0D2\n0xB576\t0xD0D6\n0xB577\t0xD0D7\n0xB578\t0xD0D8\n0xB579\t0xD0D9\n0xB57A\t0xD0DA\n0xB581\t0xD0DB\n0xB582\t0xD0DE\n0xB583\t0xD0DF\n0xB584\t0xD0E1\n0xB585\t0xD0E2\n0xB586\t0xD0E3\n0xB587\t0xD0E5\n0xB588\t0xD0E6\n0xB589\t0xD0E7\n0xB58A\t0xD0E8\n0xB58B\t0xD0E9\n0xB58C\t0xD0EA\n0xB58D\t0xD0EB\n0xB58E\t0xD0EE\n0xB58F\t0xD0F2\n0xB590\t0xD0F3\n0xB591\t0xD0F4\n0xB592\t0xD0F5\n0xB593\t0xD0F6\n0xB594\t0xD0F7\n0xB595\t0xD0F9\n0xB596\t0xD0FA\n0xB597\t0xD0FB\n0xB598\t0xD0FC\n0xB599\t0xD0FD\n0xB59A\t0xD0FE\n0xB59B\t0xD0FF\n0xB59C\t0xD100\n0xB59D\t0xD101\n0xB59E\t0xD102\n0xB59F\t0xD103\n0xB5A0\t0xD104\n0xB5A1\t0xB367\n0xB5A2\t0xB369\n0xB5A3\t0xB36B\n0xB5A4\t0xB36E\n0xB5A5\t0xB370\n0xB5A6\t0xB371\n0xB5A7\t0xB374\n0xB5A8\t0xB378\n0xB5A9\t0xB380\n0xB5AA\t0xB381\n0xB5AB\t0xB383\n0xB5AC\t0xB384\n0xB5AD\t0xB385\n0xB5AE\t0xB38C\n0xB5AF\t0xB390\n0xB5B0\t0xB394\n0xB5B1\t0xB3A0\n0xB5B2\t0xB3A1\n0xB5B3\t0xB3A8\n0xB5B4\t0xB3AC\n0xB5B5\t0xB3C4\n0xB5B6\t0xB3C5\n0xB5B7\t0xB3C8\n0xB5B8\t0xB3CB\n0xB5B9\t0xB3CC\n0xB5BA\t0xB3CE\n0xB5BB\t0xB3D0\n0xB5BC\t0xB3D4\n0xB5BD\t0xB3D5\n0xB5BE\t0xB3D7\n0xB5BF\t0xB3D9\n0xB5C0\t0xB3DB\n0xB5C1\t0xB3DD\n0xB5C2\t0xB3E0\n0xB5C3\t0xB3E4\n0xB5C4\t0xB3E8\n0xB5C5\t0xB3FC\n0xB5C6\t0xB410\n0xB5C7\t0xB418\n0xB5C8\t0xB41C\n0xB5C9\t0xB420\n0xB5CA\t0xB428\n0xB5CB\t0xB429\n0xB5CC\t0xB42B\n0xB5CD\t0xB434\n0xB5CE\t0xB450\n0xB5CF\t0xB451\n0xB5D0\t0xB454\n0xB5D1\t0xB458\n0xB5D2\t0xB460\n0xB5D3\t0xB461\n0xB5D4\t0xB463\n0xB5D5\t0xB465\n0xB5D6\t0xB46C\n0xB5D7\t0xB480\n0xB5D8\t0xB488\n0xB5D9\t0xB49D\n0xB5DA\t0xB4A4\n0xB5DB\t0xB4A8\n0xB5DC\t0xB4AC\n0xB5DD\t0xB4B5\n0xB5DE\t0xB4B7\n0xB5DF\t0xB4B9\n0xB5E0\t0xB4C0\n0xB5E1\t0xB4C4\n0xB5E2\t0xB4C8\n0xB5E3\t0xB4D0\n0xB5E4\t0xB4D5\n0xB5E5\t0xB4DC\n0xB5E6\t0xB4DD\n0xB5E7\t0xB4E0\n0xB5E8\t0xB4E3\n0xB5E9\t0xB4E4\n0xB5EA\t0xB4E6\n0xB5EB\t0xB4EC\n0xB5EC\t0xB4ED\n0xB5ED\t0xB4EF\n0xB5EE\t0xB4F1\n0xB5EF\t0xB4F8\n0xB5F0\t0xB514\n0xB5F1\t0xB515\n0xB5F2\t0xB518\n0xB5F3\t0xB51B\n0xB5F4\t0xB51C\n0xB5F5\t0xB524\n0xB5F6\t0xB525\n0xB5F7\t0xB527\n0xB5F8\t0xB528\n0xB5F9\t0xB529\n0xB5FA\t0xB52A\n0xB5FB\t0xB530\n0xB5FC\t0xB531\n0xB5FD\t0xB534\n0xB5FE\t0xB538\n0xB641\t0xD105\n0xB642\t0xD106\n0xB643\t0xD107\n0xB644\t0xD108\n0xB645\t0xD109\n0xB646\t0xD10A\n0xB647\t0xD10B\n0xB648\t0xD10C\n0xB649\t0xD10E\n0xB64A\t0xD10F\n0xB64B\t0xD110\n0xB64C\t0xD111\n0xB64D\t0xD112\n0xB64E\t0xD113\n0xB64F\t0xD114\n0xB650\t0xD115\n0xB651\t0xD116\n0xB652\t0xD117\n0xB653\t0xD118\n0xB654\t0xD119\n0xB655\t0xD11A\n0xB656\t0xD11B\n0xB657\t0xD11C\n0xB658\t0xD11D\n0xB659\t0xD11E\n0xB65A\t0xD11F\n0xB661\t0xD120\n0xB662\t0xD121\n0xB663\t0xD122\n0xB664\t0xD123\n0xB665\t0xD124\n0xB666\t0xD125\n0xB667\t0xD126\n0xB668\t0xD127\n0xB669\t0xD128\n0xB66A\t0xD129\n0xB66B\t0xD12A\n0xB66C\t0xD12B\n0xB66D\t0xD12C\n0xB66E\t0xD12D\n0xB66F\t0xD12E\n0xB670\t0xD12F\n0xB671\t0xD132\n0xB672\t0xD133\n0xB673\t0xD135\n0xB674\t0xD136\n0xB675\t0xD137\n0xB676\t0xD139\n0xB677\t0xD13B\n0xB678\t0xD13C\n0xB679\t0xD13D\n0xB67A\t0xD13E\n0xB681\t0xD13F\n0xB682\t0xD142\n0xB683\t0xD146\n0xB684\t0xD147\n0xB685\t0xD148\n0xB686\t0xD149\n0xB687\t0xD14A\n0xB688\t0xD14B\n0xB689\t0xD14E\n0xB68A\t0xD14F\n0xB68B\t0xD151\n0xB68C\t0xD152\n0xB68D\t0xD153\n0xB68E\t0xD155\n0xB68F\t0xD156\n0xB690\t0xD157\n0xB691\t0xD158\n0xB692\t0xD159\n0xB693\t0xD15A\n0xB694\t0xD15B\n0xB695\t0xD15E\n0xB696\t0xD160\n0xB697\t0xD162\n0xB698\t0xD163\n0xB699\t0xD164\n0xB69A\t0xD165\n0xB69B\t0xD166\n0xB69C\t0xD167\n0xB69D\t0xD169\n0xB69E\t0xD16A\n0xB69F\t0xD16B\n0xB6A0\t0xD16D\n0xB6A1\t0xB540\n0xB6A2\t0xB541\n0xB6A3\t0xB543\n0xB6A4\t0xB544\n0xB6A5\t0xB545\n0xB6A6\t0xB54B\n0xB6A7\t0xB54C\n0xB6A8\t0xB54D\n0xB6A9\t0xB550\n0xB6AA\t0xB554\n0xB6AB\t0xB55C\n0xB6AC\t0xB55D\n0xB6AD\t0xB55F\n0xB6AE\t0xB560\n0xB6AF\t0xB561\n0xB6B0\t0xB5A0\n0xB6B1\t0xB5A1\n0xB6B2\t0xB5A4\n0xB6B3\t0xB5A8\n0xB6B4\t0xB5AA\n0xB6B5\t0xB5AB\n0xB6B6\t0xB5B0\n0xB6B7\t0xB5B1\n0xB6B8\t0xB5B3\n0xB6B9\t0xB5B4\n0xB6BA\t0xB5B5\n0xB6BB\t0xB5BB\n0xB6BC\t0xB5BC\n0xB6BD\t0xB5BD\n0xB6BE\t0xB5C0\n0xB6BF\t0xB5C4\n0xB6C0\t0xB5CC\n0xB6C1\t0xB5CD\n0xB6C2\t0xB5CF\n0xB6C3\t0xB5D0\n0xB6C4\t0xB5D1\n0xB6C5\t0xB5D8\n0xB6C6\t0xB5EC\n0xB6C7\t0xB610\n0xB6C8\t0xB611\n0xB6C9\t0xB614\n0xB6CA\t0xB618\n0xB6CB\t0xB625\n0xB6CC\t0xB62C\n0xB6CD\t0xB634\n0xB6CE\t0xB648\n0xB6CF\t0xB664\n0xB6D0\t0xB668\n0xB6D1\t0xB69C\n0xB6D2\t0xB69D\n0xB6D3\t0xB6A0\n0xB6D4\t0xB6A4\n0xB6D5\t0xB6AB\n0xB6D6\t0xB6AC\n0xB6D7\t0xB6B1\n0xB6D8\t0xB6D4\n0xB6D9\t0xB6F0\n0xB6DA\t0xB6F4\n0xB6DB\t0xB6F8\n0xB6DC\t0xB700\n0xB6DD\t0xB701\n0xB6DE\t0xB705\n0xB6DF\t0xB728\n0xB6E0\t0xB729\n0xB6E1\t0xB72C\n0xB6E2\t0xB72F\n0xB6E3\t0xB730\n0xB6E4\t0xB738\n0xB6E5\t0xB739\n0xB6E6\t0xB73B\n0xB6E7\t0xB744\n0xB6E8\t0xB748\n0xB6E9\t0xB74C\n0xB6EA\t0xB754\n0xB6EB\t0xB755\n0xB6EC\t0xB760\n0xB6ED\t0xB764\n0xB6EE\t0xB768\n0xB6EF\t0xB770\n0xB6F0\t0xB771\n0xB6F1\t0xB773\n0xB6F2\t0xB775\n0xB6F3\t0xB77C\n0xB6F4\t0xB77D\n0xB6F5\t0xB780\n0xB6F6\t0xB784\n0xB6F7\t0xB78C\n0xB6F8\t0xB78D\n0xB6F9\t0xB78F\n0xB6FA\t0xB790\n0xB6FB\t0xB791\n0xB6FC\t0xB792\n0xB6FD\t0xB796\n0xB6FE\t0xB797\n0xB741\t0xD16E\n0xB742\t0xD16F\n0xB743\t0xD170\n0xB744\t0xD171\n0xB745\t0xD172\n0xB746\t0xD173\n0xB747\t0xD174\n0xB748\t0xD175\n0xB749\t0xD176\n0xB74A\t0xD177\n0xB74B\t0xD178\n0xB74C\t0xD179\n0xB74D\t0xD17A\n0xB74E\t0xD17B\n0xB74F\t0xD17D\n0xB750\t0xD17E\n0xB751\t0xD17F\n0xB752\t0xD180\n0xB753\t0xD181\n0xB754\t0xD182\n0xB755\t0xD183\n0xB756\t0xD185\n0xB757\t0xD186\n0xB758\t0xD187\n0xB759\t0xD189\n0xB75A\t0xD18A\n0xB761\t0xD18B\n0xB762\t0xD18C\n0xB763\t0xD18D\n0xB764\t0xD18E\n0xB765\t0xD18F\n0xB766\t0xD190\n0xB767\t0xD191\n0xB768\t0xD192\n0xB769\t0xD193\n0xB76A\t0xD194\n0xB76B\t0xD195\n0xB76C\t0xD196\n0xB76D\t0xD197\n0xB76E\t0xD198\n0xB76F\t0xD199\n0xB770\t0xD19A\n0xB771\t0xD19B\n0xB772\t0xD19C\n0xB773\t0xD19D\n0xB774\t0xD19E\n0xB775\t0xD19F\n0xB776\t0xD1A2\n0xB777\t0xD1A3\n0xB778\t0xD1A5\n0xB779\t0xD1A6\n0xB77A\t0xD1A7\n0xB781\t0xD1A9\n0xB782\t0xD1AA\n0xB783\t0xD1AB\n0xB784\t0xD1AC\n0xB785\t0xD1AD\n0xB786\t0xD1AE\n0xB787\t0xD1AF\n0xB788\t0xD1B2\n0xB789\t0xD1B4\n0xB78A\t0xD1B6\n0xB78B\t0xD1B7\n0xB78C\t0xD1B8\n0xB78D\t0xD1B9\n0xB78E\t0xD1BB\n0xB78F\t0xD1BD\n0xB790\t0xD1BE\n0xB791\t0xD1BF\n0xB792\t0xD1C1\n0xB793\t0xD1C2\n0xB794\t0xD1C3\n0xB795\t0xD1C4\n0xB796\t0xD1C5\n0xB797\t0xD1C6\n0xB798\t0xD1C7\n0xB799\t0xD1C8\n0xB79A\t0xD1C9\n0xB79B\t0xD1CA\n0xB79C\t0xD1CB\n0xB79D\t0xD1CC\n0xB79E\t0xD1CD\n0xB79F\t0xD1CE\n0xB7A0\t0xD1CF\n0xB7A1\t0xB798\n0xB7A2\t0xB799\n0xB7A3\t0xB79C\n0xB7A4\t0xB7A0\n0xB7A5\t0xB7A8\n0xB7A6\t0xB7A9\n0xB7A7\t0xB7AB\n0xB7A8\t0xB7AC\n0xB7A9\t0xB7AD\n0xB7AA\t0xB7B4\n0xB7AB\t0xB7B5\n0xB7AC\t0xB7B8\n0xB7AD\t0xB7C7\n0xB7AE\t0xB7C9\n0xB7AF\t0xB7EC\n0xB7B0\t0xB7ED\n0xB7B1\t0xB7F0\n0xB7B2\t0xB7F4\n0xB7B3\t0xB7FC\n0xB7B4\t0xB7FD\n0xB7B5\t0xB7FF\n0xB7B6\t0xB800\n0xB7B7\t0xB801\n0xB7B8\t0xB807\n0xB7B9\t0xB808\n0xB7BA\t0xB809\n0xB7BB\t0xB80C\n0xB7BC\t0xB810\n0xB7BD\t0xB818\n0xB7BE\t0xB819\n0xB7BF\t0xB81B\n0xB7C0\t0xB81D\n0xB7C1\t0xB824\n0xB7C2\t0xB825\n0xB7C3\t0xB828\n0xB7C4\t0xB82C\n0xB7C5\t0xB834\n0xB7C6\t0xB835\n0xB7C7\t0xB837\n0xB7C8\t0xB838\n0xB7C9\t0xB839\n0xB7CA\t0xB840\n0xB7CB\t0xB844\n0xB7CC\t0xB851\n0xB7CD\t0xB853\n0xB7CE\t0xB85C\n0xB7CF\t0xB85D\n0xB7D0\t0xB860\n0xB7D1\t0xB864\n0xB7D2\t0xB86C\n0xB7D3\t0xB86D\n0xB7D4\t0xB86F\n0xB7D5\t0xB871\n0xB7D6\t0xB878\n0xB7D7\t0xB87C\n0xB7D8\t0xB88D\n0xB7D9\t0xB8A8\n0xB7DA\t0xB8B0\n0xB7DB\t0xB8B4\n0xB7DC\t0xB8B8\n0xB7DD\t0xB8C0\n0xB7DE\t0xB8C1\n0xB7DF\t0xB8C3\n0xB7E0\t0xB8C5\n0xB7E1\t0xB8CC\n0xB7E2\t0xB8D0\n0xB7E3\t0xB8D4\n0xB7E4\t0xB8DD\n0xB7E5\t0xB8DF\n0xB7E6\t0xB8E1\n0xB7E7\t0xB8E8\n0xB7E8\t0xB8E9\n0xB7E9\t0xB8EC\n0xB7EA\t0xB8F0\n0xB7EB\t0xB8F8\n0xB7EC\t0xB8F9\n0xB7ED\t0xB8FB\n0xB7EE\t0xB8FD\n0xB7EF\t0xB904\n0xB7F0\t0xB918\n0xB7F1\t0xB920\n0xB7F2\t0xB93C\n0xB7F3\t0xB93D\n0xB7F4\t0xB940\n0xB7F5\t0xB944\n0xB7F6\t0xB94C\n0xB7F7\t0xB94F\n0xB7F8\t0xB951\n0xB7F9\t0xB958\n0xB7FA\t0xB959\n0xB7FB\t0xB95C\n0xB7FC\t0xB960\n0xB7FD\t0xB968\n0xB7FE\t0xB969\n0xB841\t0xD1D0\n0xB842\t0xD1D1\n0xB843\t0xD1D2\n0xB844\t0xD1D3\n0xB845\t0xD1D4\n0xB846\t0xD1D5\n0xB847\t0xD1D6\n0xB848\t0xD1D7\n0xB849\t0xD1D9\n0xB84A\t0xD1DA\n0xB84B\t0xD1DB\n0xB84C\t0xD1DC\n0xB84D\t0xD1DD\n0xB84E\t0xD1DE\n0xB84F\t0xD1DF\n0xB850\t0xD1E0\n0xB851\t0xD1E1\n0xB852\t0xD1E2\n0xB853\t0xD1E3\n0xB854\t0xD1E4\n0xB855\t0xD1E5\n0xB856\t0xD1E6\n0xB857\t0xD1E7\n0xB858\t0xD1E8\n0xB859\t0xD1E9\n0xB85A\t0xD1EA\n0xB861\t0xD1EB\n0xB862\t0xD1EC\n0xB863\t0xD1ED\n0xB864\t0xD1EE\n0xB865\t0xD1EF\n0xB866\t0xD1F0\n0xB867\t0xD1F1\n0xB868\t0xD1F2\n0xB869\t0xD1F3\n0xB86A\t0xD1F5\n0xB86B\t0xD1F6\n0xB86C\t0xD1F7\n0xB86D\t0xD1F9\n0xB86E\t0xD1FA\n0xB86F\t0xD1FB\n0xB870\t0xD1FC\n0xB871\t0xD1FD\n0xB872\t0xD1FE\n0xB873\t0xD1FF\n0xB874\t0xD200\n0xB875\t0xD201\n0xB876\t0xD202\n0xB877\t0xD203\n0xB878\t0xD204\n0xB879\t0xD205\n0xB87A\t0xD206\n0xB881\t0xD208\n0xB882\t0xD20A\n0xB883\t0xD20B\n0xB884\t0xD20C\n0xB885\t0xD20D\n0xB886\t0xD20E\n0xB887\t0xD20F\n0xB888\t0xD211\n0xB889\t0xD212\n0xB88A\t0xD213\n0xB88B\t0xD214\n0xB88C\t0xD215\n0xB88D\t0xD216\n0xB88E\t0xD217\n0xB88F\t0xD218\n0xB890\t0xD219\n0xB891\t0xD21A\n0xB892\t0xD21B\n0xB893\t0xD21C\n0xB894\t0xD21D\n0xB895\t0xD21E\n0xB896\t0xD21F\n0xB897\t0xD220\n0xB898\t0xD221\n0xB899\t0xD222\n0xB89A\t0xD223\n0xB89B\t0xD224\n0xB89C\t0xD225\n0xB89D\t0xD226\n0xB89E\t0xD227\n0xB89F\t0xD228\n0xB8A0\t0xD229\n0xB8A1\t0xB96B\n0xB8A2\t0xB96D\n0xB8A3\t0xB974\n0xB8A4\t0xB975\n0xB8A5\t0xB978\n0xB8A6\t0xB97C\n0xB8A7\t0xB984\n0xB8A8\t0xB985\n0xB8A9\t0xB987\n0xB8AA\t0xB989\n0xB8AB\t0xB98A\n0xB8AC\t0xB98D\n0xB8AD\t0xB98E\n0xB8AE\t0xB9AC\n0xB8AF\t0xB9AD\n0xB8B0\t0xB9B0\n0xB8B1\t0xB9B4\n0xB8B2\t0xB9BC\n0xB8B3\t0xB9BD\n0xB8B4\t0xB9BF\n0xB8B5\t0xB9C1\n0xB8B6\t0xB9C8\n0xB8B7\t0xB9C9\n0xB8B8\t0xB9CC\n0xB8B9\t0xB9CE\n0xB8BA\t0xB9CF\n0xB8BB\t0xB9D0\n0xB8BC\t0xB9D1\n0xB8BD\t0xB9D2\n0xB8BE\t0xB9D8\n0xB8BF\t0xB9D9\n0xB8C0\t0xB9DB\n0xB8C1\t0xB9DD\n0xB8C2\t0xB9DE\n0xB8C3\t0xB9E1\n0xB8C4\t0xB9E3\n0xB8C5\t0xB9E4\n0xB8C6\t0xB9E5\n0xB8C7\t0xB9E8\n0xB8C8\t0xB9EC\n0xB8C9\t0xB9F4\n0xB8CA\t0xB9F5\n0xB8CB\t0xB9F7\n0xB8CC\t0xB9F8\n0xB8CD\t0xB9F9\n0xB8CE\t0xB9FA\n0xB8CF\t0xBA00\n0xB8D0\t0xBA01\n0xB8D1\t0xBA08\n0xB8D2\t0xBA15\n0xB8D3\t0xBA38\n0xB8D4\t0xBA39\n0xB8D5\t0xBA3C\n0xB8D6\t0xBA40\n0xB8D7\t0xBA42\n0xB8D8\t0xBA48\n0xB8D9\t0xBA49\n0xB8DA\t0xBA4B\n0xB8DB\t0xBA4D\n0xB8DC\t0xBA4E\n0xB8DD\t0xBA53\n0xB8DE\t0xBA54\n0xB8DF\t0xBA55\n0xB8E0\t0xBA58\n0xB8E1\t0xBA5C\n0xB8E2\t0xBA64\n0xB8E3\t0xBA65\n0xB8E4\t0xBA67\n0xB8E5\t0xBA68\n0xB8E6\t0xBA69\n0xB8E7\t0xBA70\n0xB8E8\t0xBA71\n0xB8E9\t0xBA74\n0xB8EA\t0xBA78\n0xB8EB\t0xBA83\n0xB8EC\t0xBA84\n0xB8ED\t0xBA85\n0xB8EE\t0xBA87\n0xB8EF\t0xBA8C\n0xB8F0\t0xBAA8\n0xB8F1\t0xBAA9\n0xB8F2\t0xBAAB\n0xB8F3\t0xBAAC\n0xB8F4\t0xBAB0\n0xB8F5\t0xBAB2\n0xB8F6\t0xBAB8\n0xB8F7\t0xBAB9\n0xB8F8\t0xBABB\n0xB8F9\t0xBABD\n0xB8FA\t0xBAC4\n0xB8FB\t0xBAC8\n0xB8FC\t0xBAD8\n0xB8FD\t0xBAD9\n0xB8FE\t0xBAFC\n0xB941\t0xD22A\n0xB942\t0xD22B\n0xB943\t0xD22E\n0xB944\t0xD22F\n0xB945\t0xD231\n0xB946\t0xD232\n0xB947\t0xD233\n0xB948\t0xD235\n0xB949\t0xD236\n0xB94A\t0xD237\n0xB94B\t0xD238\n0xB94C\t0xD239\n0xB94D\t0xD23A\n0xB94E\t0xD23B\n0xB94F\t0xD23E\n0xB950\t0xD240\n0xB951\t0xD242\n0xB952\t0xD243\n0xB953\t0xD244\n0xB954\t0xD245\n0xB955\t0xD246\n0xB956\t0xD247\n0xB957\t0xD249\n0xB958\t0xD24A\n0xB959\t0xD24B\n0xB95A\t0xD24C\n0xB961\t0xD24D\n0xB962\t0xD24E\n0xB963\t0xD24F\n0xB964\t0xD250\n0xB965\t0xD251\n0xB966\t0xD252\n0xB967\t0xD253\n0xB968\t0xD254\n0xB969\t0xD255\n0xB96A\t0xD256\n0xB96B\t0xD257\n0xB96C\t0xD258\n0xB96D\t0xD259\n0xB96E\t0xD25A\n0xB96F\t0xD25B\n0xB970\t0xD25D\n0xB971\t0xD25E\n0xB972\t0xD25F\n0xB973\t0xD260\n0xB974\t0xD261\n0xB975\t0xD262\n0xB976\t0xD263\n0xB977\t0xD265\n0xB978\t0xD266\n0xB979\t0xD267\n0xB97A\t0xD268\n0xB981\t0xD269\n0xB982\t0xD26A\n0xB983\t0xD26B\n0xB984\t0xD26C\n0xB985\t0xD26D\n0xB986\t0xD26E\n0xB987\t0xD26F\n0xB988\t0xD270\n0xB989\t0xD271\n0xB98A\t0xD272\n0xB98B\t0xD273\n0xB98C\t0xD274\n0xB98D\t0xD275\n0xB98E\t0xD276\n0xB98F\t0xD277\n0xB990\t0xD278\n0xB991\t0xD279\n0xB992\t0xD27A\n0xB993\t0xD27B\n0xB994\t0xD27C\n0xB995\t0xD27D\n0xB996\t0xD27E\n0xB997\t0xD27F\n0xB998\t0xD282\n0xB999\t0xD283\n0xB99A\t0xD285\n0xB99B\t0xD286\n0xB99C\t0xD287\n0xB99D\t0xD289\n0xB99E\t0xD28A\n0xB99F\t0xD28B\n0xB9A0\t0xD28C\n0xB9A1\t0xBB00\n0xB9A2\t0xBB04\n0xB9A3\t0xBB0D\n0xB9A4\t0xBB0F\n0xB9A5\t0xBB11\n0xB9A6\t0xBB18\n0xB9A7\t0xBB1C\n0xB9A8\t0xBB20\n0xB9A9\t0xBB29\n0xB9AA\t0xBB2B\n0xB9AB\t0xBB34\n0xB9AC\t0xBB35\n0xB9AD\t0xBB36\n0xB9AE\t0xBB38\n0xB9AF\t0xBB3B\n0xB9B0\t0xBB3C\n0xB9B1\t0xBB3D\n0xB9B2\t0xBB3E\n0xB9B3\t0xBB44\n0xB9B4\t0xBB45\n0xB9B5\t0xBB47\n0xB9B6\t0xBB49\n0xB9B7\t0xBB4D\n0xB9B8\t0xBB4F\n0xB9B9\t0xBB50\n0xB9BA\t0xBB54\n0xB9BB\t0xBB58\n0xB9BC\t0xBB61\n0xB9BD\t0xBB63\n0xB9BE\t0xBB6C\n0xB9BF\t0xBB88\n0xB9C0\t0xBB8C\n0xB9C1\t0xBB90\n0xB9C2\t0xBBA4\n0xB9C3\t0xBBA8\n0xB9C4\t0xBBAC\n0xB9C5\t0xBBB4\n0xB9C6\t0xBBB7\n0xB9C7\t0xBBC0\n0xB9C8\t0xBBC4\n0xB9C9\t0xBBC8\n0xB9CA\t0xBBD0\n0xB9CB\t0xBBD3\n0xB9CC\t0xBBF8\n0xB9CD\t0xBBF9\n0xB9CE\t0xBBFC\n0xB9CF\t0xBBFF\n0xB9D0\t0xBC00\n0xB9D1\t0xBC02\n0xB9D2\t0xBC08\n0xB9D3\t0xBC09\n0xB9D4\t0xBC0B\n0xB9D5\t0xBC0C\n0xB9D6\t0xBC0D\n0xB9D7\t0xBC0F\n0xB9D8\t0xBC11\n0xB9D9\t0xBC14\n0xB9DA\t0xBC15\n0xB9DB\t0xBC16\n0xB9DC\t0xBC17\n0xB9DD\t0xBC18\n0xB9DE\t0xBC1B\n0xB9DF\t0xBC1C\n0xB9E0\t0xBC1D\n0xB9E1\t0xBC1E\n0xB9E2\t0xBC1F\n0xB9E3\t0xBC24\n0xB9E4\t0xBC25\n0xB9E5\t0xBC27\n0xB9E6\t0xBC29\n0xB9E7\t0xBC2D\n0xB9E8\t0xBC30\n0xB9E9\t0xBC31\n0xB9EA\t0xBC34\n0xB9EB\t0xBC38\n0xB9EC\t0xBC40\n0xB9ED\t0xBC41\n0xB9EE\t0xBC43\n0xB9EF\t0xBC44\n0xB9F0\t0xBC45\n0xB9F1\t0xBC49\n0xB9F2\t0xBC4C\n0xB9F3\t0xBC4D\n0xB9F4\t0xBC50\n0xB9F5\t0xBC5D\n0xB9F6\t0xBC84\n0xB9F7\t0xBC85\n0xB9F8\t0xBC88\n0xB9F9\t0xBC8B\n0xB9FA\t0xBC8C\n0xB9FB\t0xBC8E\n0xB9FC\t0xBC94\n0xB9FD\t0xBC95\n0xB9FE\t0xBC97\n0xBA41\t0xD28D\n0xBA42\t0xD28E\n0xBA43\t0xD28F\n0xBA44\t0xD292\n0xBA45\t0xD293\n0xBA46\t0xD294\n0xBA47\t0xD296\n0xBA48\t0xD297\n0xBA49\t0xD298\n0xBA4A\t0xD299\n0xBA4B\t0xD29A\n0xBA4C\t0xD29B\n0xBA4D\t0xD29D\n0xBA4E\t0xD29E\n0xBA4F\t0xD29F\n0xBA50\t0xD2A1\n0xBA51\t0xD2A2\n0xBA52\t0xD2A3\n0xBA53\t0xD2A5\n0xBA54\t0xD2A6\n0xBA55\t0xD2A7\n0xBA56\t0xD2A8\n0xBA57\t0xD2A9\n0xBA58\t0xD2AA\n0xBA59\t0xD2AB\n0xBA5A\t0xD2AD\n0xBA61\t0xD2AE\n0xBA62\t0xD2AF\n0xBA63\t0xD2B0\n0xBA64\t0xD2B2\n0xBA65\t0xD2B3\n0xBA66\t0xD2B4\n0xBA67\t0xD2B5\n0xBA68\t0xD2B6\n0xBA69\t0xD2B7\n0xBA6A\t0xD2BA\n0xBA6B\t0xD2BB\n0xBA6C\t0xD2BD\n0xBA6D\t0xD2BE\n0xBA6E\t0xD2C1\n0xBA6F\t0xD2C3\n0xBA70\t0xD2C4\n0xBA71\t0xD2C5\n0xBA72\t0xD2C6\n0xBA73\t0xD2C7\n0xBA74\t0xD2CA\n0xBA75\t0xD2CC\n0xBA76\t0xD2CD\n0xBA77\t0xD2CE\n0xBA78\t0xD2CF\n0xBA79\t0xD2D0\n0xBA7A\t0xD2D1\n0xBA81\t0xD2D2\n0xBA82\t0xD2D3\n0xBA83\t0xD2D5\n0xBA84\t0xD2D6\n0xBA85\t0xD2D7\n0xBA86\t0xD2D9\n0xBA87\t0xD2DA\n0xBA88\t0xD2DB\n0xBA89\t0xD2DD\n0xBA8A\t0xD2DE\n0xBA8B\t0xD2DF\n0xBA8C\t0xD2E0\n0xBA8D\t0xD2E1\n0xBA8E\t0xD2E2\n0xBA8F\t0xD2E3\n0xBA90\t0xD2E6\n0xBA91\t0xD2E7\n0xBA92\t0xD2E8\n0xBA93\t0xD2E9\n0xBA94\t0xD2EA\n0xBA95\t0xD2EB\n0xBA96\t0xD2EC\n0xBA97\t0xD2ED\n0xBA98\t0xD2EE\n0xBA99\t0xD2EF\n0xBA9A\t0xD2F2\n0xBA9B\t0xD2F3\n0xBA9C\t0xD2F5\n0xBA9D\t0xD2F6\n0xBA9E\t0xD2F7\n0xBA9F\t0xD2F9\n0xBAA0\t0xD2FA\n0xBAA1\t0xBC99\n0xBAA2\t0xBC9A\n0xBAA3\t0xBCA0\n0xBAA4\t0xBCA1\n0xBAA5\t0xBCA4\n0xBAA6\t0xBCA7\n0xBAA7\t0xBCA8\n0xBAA8\t0xBCB0\n0xBAA9\t0xBCB1\n0xBAAA\t0xBCB3\n0xBAAB\t0xBCB4\n0xBAAC\t0xBCB5\n0xBAAD\t0xBCBC\n0xBAAE\t0xBCBD\n0xBAAF\t0xBCC0\n0xBAB0\t0xBCC4\n0xBAB1\t0xBCCD\n0xBAB2\t0xBCCF\n0xBAB3\t0xBCD0\n0xBAB4\t0xBCD1\n0xBAB5\t0xBCD5\n0xBAB6\t0xBCD8\n0xBAB7\t0xBCDC\n0xBAB8\t0xBCF4\n0xBAB9\t0xBCF5\n0xBABA\t0xBCF6\n0xBABB\t0xBCF8\n0xBABC\t0xBCFC\n0xBABD\t0xBD04\n0xBABE\t0xBD05\n0xBABF\t0xBD07\n0xBAC0\t0xBD09\n0xBAC1\t0xBD10\n0xBAC2\t0xBD14\n0xBAC3\t0xBD24\n0xBAC4\t0xBD2C\n0xBAC5\t0xBD40\n0xBAC6\t0xBD48\n0xBAC7\t0xBD49\n0xBAC8\t0xBD4C\n0xBAC9\t0xBD50\n0xBACA\t0xBD58\n0xBACB\t0xBD59\n0xBACC\t0xBD64\n0xBACD\t0xBD68\n0xBACE\t0xBD80\n0xBACF\t0xBD81\n0xBAD0\t0xBD84\n0xBAD1\t0xBD87\n0xBAD2\t0xBD88\n0xBAD3\t0xBD89\n0xBAD4\t0xBD8A\n0xBAD5\t0xBD90\n0xBAD6\t0xBD91\n0xBAD7\t0xBD93\n0xBAD8\t0xBD95\n0xBAD9\t0xBD99\n0xBADA\t0xBD9A\n0xBADB\t0xBD9C\n0xBADC\t0xBDA4\n0xBADD\t0xBDB0\n0xBADE\t0xBDB8\n0xBADF\t0xBDD4\n0xBAE0\t0xBDD5\n0xBAE1\t0xBDD8\n0xBAE2\t0xBDDC\n0xBAE3\t0xBDE9\n0xBAE4\t0xBDF0\n0xBAE5\t0xBDF4\n0xBAE6\t0xBDF8\n0xBAE7\t0xBE00\n0xBAE8\t0xBE03\n0xBAE9\t0xBE05\n0xBAEA\t0xBE0C\n0xBAEB\t0xBE0D\n0xBAEC\t0xBE10\n0xBAED\t0xBE14\n0xBAEE\t0xBE1C\n0xBAEF\t0xBE1D\n0xBAF0\t0xBE1F\n0xBAF1\t0xBE44\n0xBAF2\t0xBE45\n0xBAF3\t0xBE48\n0xBAF4\t0xBE4C\n0xBAF5\t0xBE4E\n0xBAF6\t0xBE54\n0xBAF7\t0xBE55\n0xBAF8\t0xBE57\n0xBAF9\t0xBE59\n0xBAFA\t0xBE5A\n0xBAFB\t0xBE5B\n0xBAFC\t0xBE60\n0xBAFD\t0xBE61\n0xBAFE\t0xBE64\n0xBB41\t0xD2FB\n0xBB42\t0xD2FC\n0xBB43\t0xD2FD\n0xBB44\t0xD2FE\n0xBB45\t0xD2FF\n0xBB46\t0xD302\n0xBB47\t0xD304\n0xBB48\t0xD306\n0xBB49\t0xD307\n0xBB4A\t0xD308\n0xBB4B\t0xD309\n0xBB4C\t0xD30A\n0xBB4D\t0xD30B\n0xBB4E\t0xD30F\n0xBB4F\t0xD311\n0xBB50\t0xD312\n0xBB51\t0xD313\n0xBB52\t0xD315\n0xBB53\t0xD317\n0xBB54\t0xD318\n0xBB55\t0xD319\n0xBB56\t0xD31A\n0xBB57\t0xD31B\n0xBB58\t0xD31E\n0xBB59\t0xD322\n0xBB5A\t0xD323\n0xBB61\t0xD324\n0xBB62\t0xD326\n0xBB63\t0xD327\n0xBB64\t0xD32A\n0xBB65\t0xD32B\n0xBB66\t0xD32D\n0xBB67\t0xD32E\n0xBB68\t0xD32F\n0xBB69\t0xD331\n0xBB6A\t0xD332\n0xBB6B\t0xD333\n0xBB6C\t0xD334\n0xBB6D\t0xD335\n0xBB6E\t0xD336\n0xBB6F\t0xD337\n0xBB70\t0xD33A\n0xBB71\t0xD33E\n0xBB72\t0xD33F\n0xBB73\t0xD340\n0xBB74\t0xD341\n0xBB75\t0xD342\n0xBB76\t0xD343\n0xBB77\t0xD346\n0xBB78\t0xD347\n0xBB79\t0xD348\n0xBB7A\t0xD349\n0xBB81\t0xD34A\n0xBB82\t0xD34B\n0xBB83\t0xD34C\n0xBB84\t0xD34D\n0xBB85\t0xD34E\n0xBB86\t0xD34F\n0xBB87\t0xD350\n0xBB88\t0xD351\n0xBB89\t0xD352\n0xBB8A\t0xD353\n0xBB8B\t0xD354\n0xBB8C\t0xD355\n0xBB8D\t0xD356\n0xBB8E\t0xD357\n0xBB8F\t0xD358\n0xBB90\t0xD359\n0xBB91\t0xD35A\n0xBB92\t0xD35B\n0xBB93\t0xD35C\n0xBB94\t0xD35D\n0xBB95\t0xD35E\n0xBB96\t0xD35F\n0xBB97\t0xD360\n0xBB98\t0xD361\n0xBB99\t0xD362\n0xBB9A\t0xD363\n0xBB9B\t0xD364\n0xBB9C\t0xD365\n0xBB9D\t0xD366\n0xBB9E\t0xD367\n0xBB9F\t0xD368\n0xBBA0\t0xD369\n0xBBA1\t0xBE68\n0xBBA2\t0xBE6A\n0xBBA3\t0xBE70\n0xBBA4\t0xBE71\n0xBBA5\t0xBE73\n0xBBA6\t0xBE74\n0xBBA7\t0xBE75\n0xBBA8\t0xBE7B\n0xBBA9\t0xBE7C\n0xBBAA\t0xBE7D\n0xBBAB\t0xBE80\n0xBBAC\t0xBE84\n0xBBAD\t0xBE8C\n0xBBAE\t0xBE8D\n0xBBAF\t0xBE8F\n0xBBB0\t0xBE90\n0xBBB1\t0xBE91\n0xBBB2\t0xBE98\n0xBBB3\t0xBE99\n0xBBB4\t0xBEA8\n0xBBB5\t0xBED0\n0xBBB6\t0xBED1\n0xBBB7\t0xBED4\n0xBBB8\t0xBED7\n0xBBB9\t0xBED8\n0xBBBA\t0xBEE0\n0xBBBB\t0xBEE3\n0xBBBC\t0xBEE4\n0xBBBD\t0xBEE5\n0xBBBE\t0xBEEC\n0xBBBF\t0xBF01\n0xBBC0\t0xBF08\n0xBBC1\t0xBF09\n0xBBC2\t0xBF18\n0xBBC3\t0xBF19\n0xBBC4\t0xBF1B\n0xBBC5\t0xBF1C\n0xBBC6\t0xBF1D\n0xBBC7\t0xBF40\n0xBBC8\t0xBF41\n0xBBC9\t0xBF44\n0xBBCA\t0xBF48\n0xBBCB\t0xBF50\n0xBBCC\t0xBF51\n0xBBCD\t0xBF55\n0xBBCE\t0xBF94\n0xBBCF\t0xBFB0\n0xBBD0\t0xBFC5\n0xBBD1\t0xBFCC\n0xBBD2\t0xBFCD\n0xBBD3\t0xBFD0\n0xBBD4\t0xBFD4\n0xBBD5\t0xBFDC\n0xBBD6\t0xBFDF\n0xBBD7\t0xBFE1\n0xBBD8\t0xC03C\n0xBBD9\t0xC051\n0xBBDA\t0xC058\n0xBBDB\t0xC05C\n0xBBDC\t0xC060\n0xBBDD\t0xC068\n0xBBDE\t0xC069\n0xBBDF\t0xC090\n0xBBE0\t0xC091\n0xBBE1\t0xC094\n0xBBE2\t0xC098\n0xBBE3\t0xC0A0\n0xBBE4\t0xC0A1\n0xBBE5\t0xC0A3\n0xBBE6\t0xC0A5\n0xBBE7\t0xC0AC\n0xBBE8\t0xC0AD\n0xBBE9\t0xC0AF\n0xBBEA\t0xC0B0\n0xBBEB\t0xC0B3\n0xBBEC\t0xC0B4\n0xBBED\t0xC0B5\n0xBBEE\t0xC0B6\n0xBBEF\t0xC0BC\n0xBBF0\t0xC0BD\n0xBBF1\t0xC0BF\n0xBBF2\t0xC0C0\n0xBBF3\t0xC0C1\n0xBBF4\t0xC0C5\n0xBBF5\t0xC0C8\n0xBBF6\t0xC0C9\n0xBBF7\t0xC0CC\n0xBBF8\t0xC0D0\n0xBBF9\t0xC0D8\n0xBBFA\t0xC0D9\n0xBBFB\t0xC0DB\n0xBBFC\t0xC0DC\n0xBBFD\t0xC0DD\n0xBBFE\t0xC0E4\n0xBC41\t0xD36A\n0xBC42\t0xD36B\n0xBC43\t0xD36C\n0xBC44\t0xD36D\n0xBC45\t0xD36E\n0xBC46\t0xD36F\n0xBC47\t0xD370\n0xBC48\t0xD371\n0xBC49\t0xD372\n0xBC4A\t0xD373\n0xBC4B\t0xD374\n0xBC4C\t0xD375\n0xBC4D\t0xD376\n0xBC4E\t0xD377\n0xBC4F\t0xD378\n0xBC50\t0xD379\n0xBC51\t0xD37A\n0xBC52\t0xD37B\n0xBC53\t0xD37E\n0xBC54\t0xD37F\n0xBC55\t0xD381\n0xBC56\t0xD382\n0xBC57\t0xD383\n0xBC58\t0xD385\n0xBC59\t0xD386\n0xBC5A\t0xD387\n0xBC61\t0xD388\n0xBC62\t0xD389\n0xBC63\t0xD38A\n0xBC64\t0xD38B\n0xBC65\t0xD38E\n0xBC66\t0xD392\n0xBC67\t0xD393\n0xBC68\t0xD394\n0xBC69\t0xD395\n0xBC6A\t0xD396\n0xBC6B\t0xD397\n0xBC6C\t0xD39A\n0xBC6D\t0xD39B\n0xBC6E\t0xD39D\n0xBC6F\t0xD39E\n0xBC70\t0xD39F\n0xBC71\t0xD3A1\n0xBC72\t0xD3A2\n0xBC73\t0xD3A3\n0xBC74\t0xD3A4\n0xBC75\t0xD3A5\n0xBC76\t0xD3A6\n0xBC77\t0xD3A7\n0xBC78\t0xD3AA\n0xBC79\t0xD3AC\n0xBC7A\t0xD3AE\n0xBC81\t0xD3AF\n0xBC82\t0xD3B0\n0xBC83\t0xD3B1\n0xBC84\t0xD3B2\n0xBC85\t0xD3B3\n0xBC86\t0xD3B5\n0xBC87\t0xD3B6\n0xBC88\t0xD3B7\n0xBC89\t0xD3B9\n0xBC8A\t0xD3BA\n0xBC8B\t0xD3BB\n0xBC8C\t0xD3BD\n0xBC8D\t0xD3BE\n0xBC8E\t0xD3BF\n0xBC8F\t0xD3C0\n0xBC90\t0xD3C1\n0xBC91\t0xD3C2\n0xBC92\t0xD3C3\n0xBC93\t0xD3C6\n0xBC94\t0xD3C7\n0xBC95\t0xD3CA\n0xBC96\t0xD3CB\n0xBC97\t0xD3CC\n0xBC98\t0xD3CD\n0xBC99\t0xD3CE\n0xBC9A\t0xD3CF\n0xBC9B\t0xD3D1\n0xBC9C\t0xD3D2\n0xBC9D\t0xD3D3\n0xBC9E\t0xD3D4\n0xBC9F\t0xD3D5\n0xBCA0\t0xD3D6\n0xBCA1\t0xC0E5\n0xBCA2\t0xC0E8\n0xBCA3\t0xC0EC\n0xBCA4\t0xC0F4\n0xBCA5\t0xC0F5\n0xBCA6\t0xC0F7\n0xBCA7\t0xC0F9\n0xBCA8\t0xC100\n0xBCA9\t0xC104\n0xBCAA\t0xC108\n0xBCAB\t0xC110\n0xBCAC\t0xC115\n0xBCAD\t0xC11C\n0xBCAE\t0xC11D\n0xBCAF\t0xC11E\n0xBCB0\t0xC11F\n0xBCB1\t0xC120\n0xBCB2\t0xC123\n0xBCB3\t0xC124\n0xBCB4\t0xC126\n0xBCB5\t0xC127\n0xBCB6\t0xC12C\n0xBCB7\t0xC12D\n0xBCB8\t0xC12F\n0xBCB9\t0xC130\n0xBCBA\t0xC131\n0xBCBB\t0xC136\n0xBCBC\t0xC138\n0xBCBD\t0xC139\n0xBCBE\t0xC13C\n0xBCBF\t0xC140\n0xBCC0\t0xC148\n0xBCC1\t0xC149\n0xBCC2\t0xC14B\n0xBCC3\t0xC14C\n0xBCC4\t0xC14D\n0xBCC5\t0xC154\n0xBCC6\t0xC155\n0xBCC7\t0xC158\n0xBCC8\t0xC15C\n0xBCC9\t0xC164\n0xBCCA\t0xC165\n0xBCCB\t0xC167\n0xBCCC\t0xC168\n0xBCCD\t0xC169\n0xBCCE\t0xC170\n0xBCCF\t0xC174\n0xBCD0\t0xC178\n0xBCD1\t0xC185\n0xBCD2\t0xC18C\n0xBCD3\t0xC18D\n0xBCD4\t0xC18E\n0xBCD5\t0xC190\n0xBCD6\t0xC194\n0xBCD7\t0xC196\n0xBCD8\t0xC19C\n0xBCD9\t0xC19D\n0xBCDA\t0xC19F\n0xBCDB\t0xC1A1\n0xBCDC\t0xC1A5\n0xBCDD\t0xC1A8\n0xBCDE\t0xC1A9\n0xBCDF\t0xC1AC\n0xBCE0\t0xC1B0\n0xBCE1\t0xC1BD\n0xBCE2\t0xC1C4\n0xBCE3\t0xC1C8\n0xBCE4\t0xC1CC\n0xBCE5\t0xC1D4\n0xBCE6\t0xC1D7\n0xBCE7\t0xC1D8\n0xBCE8\t0xC1E0\n0xBCE9\t0xC1E4\n0xBCEA\t0xC1E8\n0xBCEB\t0xC1F0\n0xBCEC\t0xC1F1\n0xBCED\t0xC1F3\n0xBCEE\t0xC1FC\n0xBCEF\t0xC1FD\n0xBCF0\t0xC200\n0xBCF1\t0xC204\n0xBCF2\t0xC20C\n0xBCF3\t0xC20D\n0xBCF4\t0xC20F\n0xBCF5\t0xC211\n0xBCF6\t0xC218\n0xBCF7\t0xC219\n0xBCF8\t0xC21C\n0xBCF9\t0xC21F\n0xBCFA\t0xC220\n0xBCFB\t0xC228\n0xBCFC\t0xC229\n0xBCFD\t0xC22B\n0xBCFE\t0xC22D\n0xBD41\t0xD3D7\n0xBD42\t0xD3D9\n0xBD43\t0xD3DA\n0xBD44\t0xD3DB\n0xBD45\t0xD3DC\n0xBD46\t0xD3DD\n0xBD47\t0xD3DE\n0xBD48\t0xD3DF\n0xBD49\t0xD3E0\n0xBD4A\t0xD3E2\n0xBD4B\t0xD3E4\n0xBD4C\t0xD3E5\n0xBD4D\t0xD3E6\n0xBD4E\t0xD3E7\n0xBD4F\t0xD3E8\n0xBD50\t0xD3E9\n0xBD51\t0xD3EA\n0xBD52\t0xD3EB\n0xBD53\t0xD3EE\n0xBD54\t0xD3EF\n0xBD55\t0xD3F1\n0xBD56\t0xD3F2\n0xBD57\t0xD3F3\n0xBD58\t0xD3F5\n0xBD59\t0xD3F6\n0xBD5A\t0xD3F7\n0xBD61\t0xD3F8\n0xBD62\t0xD3F9\n0xBD63\t0xD3FA\n0xBD64\t0xD3FB\n0xBD65\t0xD3FE\n0xBD66\t0xD400\n0xBD67\t0xD402\n0xBD68\t0xD403\n0xBD69\t0xD404\n0xBD6A\t0xD405\n0xBD6B\t0xD406\n0xBD6C\t0xD407\n0xBD6D\t0xD409\n0xBD6E\t0xD40A\n0xBD6F\t0xD40B\n0xBD70\t0xD40C\n0xBD71\t0xD40D\n0xBD72\t0xD40E\n0xBD73\t0xD40F\n0xBD74\t0xD410\n0xBD75\t0xD411\n0xBD76\t0xD412\n0xBD77\t0xD413\n0xBD78\t0xD414\n0xBD79\t0xD415\n0xBD7A\t0xD416\n0xBD81\t0xD417\n0xBD82\t0xD418\n0xBD83\t0xD419\n0xBD84\t0xD41A\n0xBD85\t0xD41B\n0xBD86\t0xD41C\n0xBD87\t0xD41E\n0xBD88\t0xD41F\n0xBD89\t0xD420\n0xBD8A\t0xD421\n0xBD8B\t0xD422\n0xBD8C\t0xD423\n0xBD8D\t0xD424\n0xBD8E\t0xD425\n0xBD8F\t0xD426\n0xBD90\t0xD427\n0xBD91\t0xD428\n0xBD92\t0xD429\n0xBD93\t0xD42A\n0xBD94\t0xD42B\n0xBD95\t0xD42C\n0xBD96\t0xD42D\n0xBD97\t0xD42E\n0xBD98\t0xD42F\n0xBD99\t0xD430\n0xBD9A\t0xD431\n0xBD9B\t0xD432\n0xBD9C\t0xD433\n0xBD9D\t0xD434\n0xBD9E\t0xD435\n0xBD9F\t0xD436\n0xBDA0\t0xD437\n0xBDA1\t0xC22F\n0xBDA2\t0xC231\n0xBDA3\t0xC232\n0xBDA4\t0xC234\n0xBDA5\t0xC248\n0xBDA6\t0xC250\n0xBDA7\t0xC251\n0xBDA8\t0xC254\n0xBDA9\t0xC258\n0xBDAA\t0xC260\n0xBDAB\t0xC265\n0xBDAC\t0xC26C\n0xBDAD\t0xC26D\n0xBDAE\t0xC270\n0xBDAF\t0xC274\n0xBDB0\t0xC27C\n0xBDB1\t0xC27D\n0xBDB2\t0xC27F\n0xBDB3\t0xC281\n0xBDB4\t0xC288\n0xBDB5\t0xC289\n0xBDB6\t0xC290\n0xBDB7\t0xC298\n0xBDB8\t0xC29B\n0xBDB9\t0xC29D\n0xBDBA\t0xC2A4\n0xBDBB\t0xC2A5\n0xBDBC\t0xC2A8\n0xBDBD\t0xC2AC\n0xBDBE\t0xC2AD\n0xBDBF\t0xC2B4\n0xBDC0\t0xC2B5\n0xBDC1\t0xC2B7\n0xBDC2\t0xC2B9\n0xBDC3\t0xC2DC\n0xBDC4\t0xC2DD\n0xBDC5\t0xC2E0\n0xBDC6\t0xC2E3\n0xBDC7\t0xC2E4\n0xBDC8\t0xC2EB\n0xBDC9\t0xC2EC\n0xBDCA\t0xC2ED\n0xBDCB\t0xC2EF\n0xBDCC\t0xC2F1\n0xBDCD\t0xC2F6\n0xBDCE\t0xC2F8\n0xBDCF\t0xC2F9\n0xBDD0\t0xC2FB\n0xBDD1\t0xC2FC\n0xBDD2\t0xC300\n0xBDD3\t0xC308\n0xBDD4\t0xC309\n0xBDD5\t0xC30C\n0xBDD6\t0xC30D\n0xBDD7\t0xC313\n0xBDD8\t0xC314\n0xBDD9\t0xC315\n0xBDDA\t0xC318\n0xBDDB\t0xC31C\n0xBDDC\t0xC324\n0xBDDD\t0xC325\n0xBDDE\t0xC328\n0xBDDF\t0xC329\n0xBDE0\t0xC345\n0xBDE1\t0xC368\n0xBDE2\t0xC369\n0xBDE3\t0xC36C\n0xBDE4\t0xC370\n0xBDE5\t0xC372\n0xBDE6\t0xC378\n0xBDE7\t0xC379\n0xBDE8\t0xC37C\n0xBDE9\t0xC37D\n0xBDEA\t0xC384\n0xBDEB\t0xC388\n0xBDEC\t0xC38C\n0xBDED\t0xC3C0\n0xBDEE\t0xC3D8\n0xBDEF\t0xC3D9\n0xBDF0\t0xC3DC\n0xBDF1\t0xC3DF\n0xBDF2\t0xC3E0\n0xBDF3\t0xC3E2\n0xBDF4\t0xC3E8\n0xBDF5\t0xC3E9\n0xBDF6\t0xC3ED\n0xBDF7\t0xC3F4\n0xBDF8\t0xC3F5\n0xBDF9\t0xC3F8\n0xBDFA\t0xC408\n0xBDFB\t0xC410\n0xBDFC\t0xC424\n0xBDFD\t0xC42C\n0xBDFE\t0xC430\n0xBE41\t0xD438\n0xBE42\t0xD439\n0xBE43\t0xD43A\n0xBE44\t0xD43B\n0xBE45\t0xD43C\n0xBE46\t0xD43D\n0xBE47\t0xD43E\n0xBE48\t0xD43F\n0xBE49\t0xD441\n0xBE4A\t0xD442\n0xBE4B\t0xD443\n0xBE4C\t0xD445\n0xBE4D\t0xD446\n0xBE4E\t0xD447\n0xBE4F\t0xD448\n0xBE50\t0xD449\n0xBE51\t0xD44A\n0xBE52\t0xD44B\n0xBE53\t0xD44C\n0xBE54\t0xD44D\n0xBE55\t0xD44E\n0xBE56\t0xD44F\n0xBE57\t0xD450\n0xBE58\t0xD451\n0xBE59\t0xD452\n0xBE5A\t0xD453\n0xBE61\t0xD454\n0xBE62\t0xD455\n0xBE63\t0xD456\n0xBE64\t0xD457\n0xBE65\t0xD458\n0xBE66\t0xD459\n0xBE67\t0xD45A\n0xBE68\t0xD45B\n0xBE69\t0xD45D\n0xBE6A\t0xD45E\n0xBE6B\t0xD45F\n0xBE6C\t0xD461\n0xBE6D\t0xD462\n0xBE6E\t0xD463\n0xBE6F\t0xD465\n0xBE70\t0xD466\n0xBE71\t0xD467\n0xBE72\t0xD468\n0xBE73\t0xD469\n0xBE74\t0xD46A\n0xBE75\t0xD46B\n0xBE76\t0xD46C\n0xBE77\t0xD46E\n0xBE78\t0xD470\n0xBE79\t0xD471\n0xBE7A\t0xD472\n0xBE81\t0xD473\n0xBE82\t0xD474\n0xBE83\t0xD475\n0xBE84\t0xD476\n0xBE85\t0xD477\n0xBE86\t0xD47A\n0xBE87\t0xD47B\n0xBE88\t0xD47D\n0xBE89\t0xD47E\n0xBE8A\t0xD481\n0xBE8B\t0xD483\n0xBE8C\t0xD484\n0xBE8D\t0xD485\n0xBE8E\t0xD486\n0xBE8F\t0xD487\n0xBE90\t0xD48A\n0xBE91\t0xD48C\n0xBE92\t0xD48E\n0xBE93\t0xD48F\n0xBE94\t0xD490\n0xBE95\t0xD491\n0xBE96\t0xD492\n0xBE97\t0xD493\n0xBE98\t0xD495\n0xBE99\t0xD496\n0xBE9A\t0xD497\n0xBE9B\t0xD498\n0xBE9C\t0xD499\n0xBE9D\t0xD49A\n0xBE9E\t0xD49B\n0xBE9F\t0xD49C\n0xBEA0\t0xD49D\n0xBEA1\t0xC434\n0xBEA2\t0xC43C\n0xBEA3\t0xC43D\n0xBEA4\t0xC448\n0xBEA5\t0xC464\n0xBEA6\t0xC465\n0xBEA7\t0xC468\n0xBEA8\t0xC46C\n0xBEA9\t0xC474\n0xBEAA\t0xC475\n0xBEAB\t0xC479\n0xBEAC\t0xC480\n0xBEAD\t0xC494\n0xBEAE\t0xC49C\n0xBEAF\t0xC4B8\n0xBEB0\t0xC4BC\n0xBEB1\t0xC4E9\n0xBEB2\t0xC4F0\n0xBEB3\t0xC4F1\n0xBEB4\t0xC4F4\n0xBEB5\t0xC4F8\n0xBEB6\t0xC4FA\n0xBEB7\t0xC4FF\n0xBEB8\t0xC500\n0xBEB9\t0xC501\n0xBEBA\t0xC50C\n0xBEBB\t0xC510\n0xBEBC\t0xC514\n0xBEBD\t0xC51C\n0xBEBE\t0xC528\n0xBEBF\t0xC529\n0xBEC0\t0xC52C\n0xBEC1\t0xC530\n0xBEC2\t0xC538\n0xBEC3\t0xC539\n0xBEC4\t0xC53B\n0xBEC5\t0xC53D\n0xBEC6\t0xC544\n0xBEC7\t0xC545\n0xBEC8\t0xC548\n0xBEC9\t0xC549\n0xBECA\t0xC54A\n0xBECB\t0xC54C\n0xBECC\t0xC54D\n0xBECD\t0xC54E\n0xBECE\t0xC553\n0xBECF\t0xC554\n0xBED0\t0xC555\n0xBED1\t0xC557\n0xBED2\t0xC558\n0xBED3\t0xC559\n0xBED4\t0xC55D\n0xBED5\t0xC55E\n0xBED6\t0xC560\n0xBED7\t0xC561\n0xBED8\t0xC564\n0xBED9\t0xC568\n0xBEDA\t0xC570\n0xBEDB\t0xC571\n0xBEDC\t0xC573\n0xBEDD\t0xC574\n0xBEDE\t0xC575\n0xBEDF\t0xC57C\n0xBEE0\t0xC57D\n0xBEE1\t0xC580\n0xBEE2\t0xC584\n0xBEE3\t0xC587\n0xBEE4\t0xC58C\n0xBEE5\t0xC58D\n0xBEE6\t0xC58F\n0xBEE7\t0xC591\n0xBEE8\t0xC595\n0xBEE9\t0xC597\n0xBEEA\t0xC598\n0xBEEB\t0xC59C\n0xBEEC\t0xC5A0\n0xBEED\t0xC5A9\n0xBEEE\t0xC5B4\n0xBEEF\t0xC5B5\n0xBEF0\t0xC5B8\n0xBEF1\t0xC5B9\n0xBEF2\t0xC5BB\n0xBEF3\t0xC5BC\n0xBEF4\t0xC5BD\n0xBEF5\t0xC5BE\n0xBEF6\t0xC5C4\n0xBEF7\t0xC5C5\n0xBEF8\t0xC5C6\n0xBEF9\t0xC5C7\n0xBEFA\t0xC5C8\n0xBEFB\t0xC5C9\n0xBEFC\t0xC5CA\n0xBEFD\t0xC5CC\n0xBEFE\t0xC5CE\n0xBF41\t0xD49E\n0xBF42\t0xD49F\n0xBF43\t0xD4A0\n0xBF44\t0xD4A1\n0xBF45\t0xD4A2\n0xBF46\t0xD4A3\n0xBF47\t0xD4A4\n0xBF48\t0xD4A5\n0xBF49\t0xD4A6\n0xBF4A\t0xD4A7\n0xBF4B\t0xD4A8\n0xBF4C\t0xD4AA\n0xBF4D\t0xD4AB\n0xBF4E\t0xD4AC\n0xBF4F\t0xD4AD\n0xBF50\t0xD4AE\n0xBF51\t0xD4AF\n0xBF52\t0xD4B0\n0xBF53\t0xD4B1\n0xBF54\t0xD4B2\n0xBF55\t0xD4B3\n0xBF56\t0xD4B4\n0xBF57\t0xD4B5\n0xBF58\t0xD4B6\n0xBF59\t0xD4B7\n0xBF5A\t0xD4B8\n0xBF61\t0xD4B9\n0xBF62\t0xD4BA\n0xBF63\t0xD4BB\n0xBF64\t0xD4BC\n0xBF65\t0xD4BD\n0xBF66\t0xD4BE\n0xBF67\t0xD4BF\n0xBF68\t0xD4C0\n0xBF69\t0xD4C1\n0xBF6A\t0xD4C2\n0xBF6B\t0xD4C3\n0xBF6C\t0xD4C4\n0xBF6D\t0xD4C5\n0xBF6E\t0xD4C6\n0xBF6F\t0xD4C7\n0xBF70\t0xD4C8\n0xBF71\t0xD4C9\n0xBF72\t0xD4CA\n0xBF73\t0xD4CB\n0xBF74\t0xD4CD\n0xBF75\t0xD4CE\n0xBF76\t0xD4CF\n0xBF77\t0xD4D1\n0xBF78\t0xD4D2\n0xBF79\t0xD4D3\n0xBF7A\t0xD4D5\n0xBF81\t0xD4D6\n0xBF82\t0xD4D7\n0xBF83\t0xD4D8\n0xBF84\t0xD4D9\n0xBF85\t0xD4DA\n0xBF86\t0xD4DB\n0xBF87\t0xD4DD\n0xBF88\t0xD4DE\n0xBF89\t0xD4E0\n0xBF8A\t0xD4E1\n0xBF8B\t0xD4E2\n0xBF8C\t0xD4E3\n0xBF8D\t0xD4E4\n0xBF8E\t0xD4E5\n0xBF8F\t0xD4E6\n0xBF90\t0xD4E7\n0xBF91\t0xD4E9\n0xBF92\t0xD4EA\n0xBF93\t0xD4EB\n0xBF94\t0xD4ED\n0xBF95\t0xD4EE\n0xBF96\t0xD4EF\n0xBF97\t0xD4F1\n0xBF98\t0xD4F2\n0xBF99\t0xD4F3\n0xBF9A\t0xD4F4\n0xBF9B\t0xD4F5\n0xBF9C\t0xD4F6\n0xBF9D\t0xD4F7\n0xBF9E\t0xD4F9\n0xBF9F\t0xD4FA\n0xBFA0\t0xD4FC\n0xBFA1\t0xC5D0\n0xBFA2\t0xC5D1\n0xBFA3\t0xC5D4\n0xBFA4\t0xC5D8\n0xBFA5\t0xC5E0\n0xBFA6\t0xC5E1\n0xBFA7\t0xC5E3\n0xBFA8\t0xC5E5\n0xBFA9\t0xC5EC\n0xBFAA\t0xC5ED\n0xBFAB\t0xC5EE\n0xBFAC\t0xC5F0\n0xBFAD\t0xC5F4\n0xBFAE\t0xC5F6\n0xBFAF\t0xC5F7\n0xBFB0\t0xC5FC\n0xBFB1\t0xC5FD\n0xBFB2\t0xC5FE\n0xBFB3\t0xC5FF\n0xBFB4\t0xC600\n0xBFB5\t0xC601\n0xBFB6\t0xC605\n0xBFB7\t0xC606\n0xBFB8\t0xC607\n0xBFB9\t0xC608\n0xBFBA\t0xC60C\n0xBFBB\t0xC610\n0xBFBC\t0xC618\n0xBFBD\t0xC619\n0xBFBE\t0xC61B\n0xBFBF\t0xC61C\n0xBFC0\t0xC624\n0xBFC1\t0xC625\n0xBFC2\t0xC628\n0xBFC3\t0xC62C\n0xBFC4\t0xC62D\n0xBFC5\t0xC62E\n0xBFC6\t0xC630\n0xBFC7\t0xC633\n0xBFC8\t0xC634\n0xBFC9\t0xC635\n0xBFCA\t0xC637\n0xBFCB\t0xC639\n0xBFCC\t0xC63B\n0xBFCD\t0xC640\n0xBFCE\t0xC641\n0xBFCF\t0xC644\n0xBFD0\t0xC648\n0xBFD1\t0xC650\n0xBFD2\t0xC651\n0xBFD3\t0xC653\n0xBFD4\t0xC654\n0xBFD5\t0xC655\n0xBFD6\t0xC65C\n0xBFD7\t0xC65D\n0xBFD8\t0xC660\n0xBFD9\t0xC66C\n0xBFDA\t0xC66F\n0xBFDB\t0xC671\n0xBFDC\t0xC678\n0xBFDD\t0xC679\n0xBFDE\t0xC67C\n0xBFDF\t0xC680\n0xBFE0\t0xC688\n0xBFE1\t0xC689\n0xBFE2\t0xC68B\n0xBFE3\t0xC68D\n0xBFE4\t0xC694\n0xBFE5\t0xC695\n0xBFE6\t0xC698\n0xBFE7\t0xC69C\n0xBFE8\t0xC6A4\n0xBFE9\t0xC6A5\n0xBFEA\t0xC6A7\n0xBFEB\t0xC6A9\n0xBFEC\t0xC6B0\n0xBFED\t0xC6B1\n0xBFEE\t0xC6B4\n0xBFEF\t0xC6B8\n0xBFF0\t0xC6B9\n0xBFF1\t0xC6BA\n0xBFF2\t0xC6C0\n0xBFF3\t0xC6C1\n0xBFF4\t0xC6C3\n0xBFF5\t0xC6C5\n0xBFF6\t0xC6CC\n0xBFF7\t0xC6CD\n0xBFF8\t0xC6D0\n0xBFF9\t0xC6D4\n0xBFFA\t0xC6DC\n0xBFFB\t0xC6DD\n0xBFFC\t0xC6E0\n0xBFFD\t0xC6E1\n0xBFFE\t0xC6E8\n0xC041\t0xD4FE\n0xC042\t0xD4FF\n0xC043\t0xD500\n0xC044\t0xD501\n0xC045\t0xD502\n0xC046\t0xD503\n0xC047\t0xD505\n0xC048\t0xD506\n0xC049\t0xD507\n0xC04A\t0xD509\n0xC04B\t0xD50A\n0xC04C\t0xD50B\n0xC04D\t0xD50D\n0xC04E\t0xD50E\n0xC04F\t0xD50F\n0xC050\t0xD510\n0xC051\t0xD511\n0xC052\t0xD512\n0xC053\t0xD513\n0xC054\t0xD516\n0xC055\t0xD518\n0xC056\t0xD519\n0xC057\t0xD51A\n0xC058\t0xD51B\n0xC059\t0xD51C\n0xC05A\t0xD51D\n0xC061\t0xD51E\n0xC062\t0xD51F\n0xC063\t0xD520\n0xC064\t0xD521\n0xC065\t0xD522\n0xC066\t0xD523\n0xC067\t0xD524\n0xC068\t0xD525\n0xC069\t0xD526\n0xC06A\t0xD527\n0xC06B\t0xD528\n0xC06C\t0xD529\n0xC06D\t0xD52A\n0xC06E\t0xD52B\n0xC06F\t0xD52C\n0xC070\t0xD52D\n0xC071\t0xD52E\n0xC072\t0xD52F\n0xC073\t0xD530\n0xC074\t0xD531\n0xC075\t0xD532\n0xC076\t0xD533\n0xC077\t0xD534\n0xC078\t0xD535\n0xC079\t0xD536\n0xC07A\t0xD537\n0xC081\t0xD538\n0xC082\t0xD539\n0xC083\t0xD53A\n0xC084\t0xD53B\n0xC085\t0xD53E\n0xC086\t0xD53F\n0xC087\t0xD541\n0xC088\t0xD542\n0xC089\t0xD543\n0xC08A\t0xD545\n0xC08B\t0xD546\n0xC08C\t0xD547\n0xC08D\t0xD548\n0xC08E\t0xD549\n0xC08F\t0xD54A\n0xC090\t0xD54B\n0xC091\t0xD54E\n0xC092\t0xD550\n0xC093\t0xD552\n0xC094\t0xD553\n0xC095\t0xD554\n0xC096\t0xD555\n0xC097\t0xD556\n0xC098\t0xD557\n0xC099\t0xD55A\n0xC09A\t0xD55B\n0xC09B\t0xD55D\n0xC09C\t0xD55E\n0xC09D\t0xD55F\n0xC09E\t0xD561\n0xC09F\t0xD562\n0xC0A0\t0xD563\n0xC0A1\t0xC6E9\n0xC0A2\t0xC6EC\n0xC0A3\t0xC6F0\n0xC0A4\t0xC6F8\n0xC0A5\t0xC6F9\n0xC0A6\t0xC6FD\n0xC0A7\t0xC704\n0xC0A8\t0xC705\n0xC0A9\t0xC708\n0xC0AA\t0xC70C\n0xC0AB\t0xC714\n0xC0AC\t0xC715\n0xC0AD\t0xC717\n0xC0AE\t0xC719\n0xC0AF\t0xC720\n0xC0B0\t0xC721\n0xC0B1\t0xC724\n0xC0B2\t0xC728\n0xC0B3\t0xC730\n0xC0B4\t0xC731\n0xC0B5\t0xC733\n0xC0B6\t0xC735\n0xC0B7\t0xC737\n0xC0B8\t0xC73C\n0xC0B9\t0xC73D\n0xC0BA\t0xC740\n0xC0BB\t0xC744\n0xC0BC\t0xC74A\n0xC0BD\t0xC74C\n0xC0BE\t0xC74D\n0xC0BF\t0xC74F\n0xC0C0\t0xC751\n0xC0C1\t0xC752\n0xC0C2\t0xC753\n0xC0C3\t0xC754\n0xC0C4\t0xC755\n0xC0C5\t0xC756\n0xC0C6\t0xC757\n0xC0C7\t0xC758\n0xC0C8\t0xC75C\n0xC0C9\t0xC760\n0xC0CA\t0xC768\n0xC0CB\t0xC76B\n0xC0CC\t0xC774\n0xC0CD\t0xC775\n0xC0CE\t0xC778\n0xC0CF\t0xC77C\n0xC0D0\t0xC77D\n0xC0D1\t0xC77E\n0xC0D2\t0xC783\n0xC0D3\t0xC784\n0xC0D4\t0xC785\n0xC0D5\t0xC787\n0xC0D6\t0xC788\n0xC0D7\t0xC789\n0xC0D8\t0xC78A\n0xC0D9\t0xC78E\n0xC0DA\t0xC790\n0xC0DB\t0xC791\n0xC0DC\t0xC794\n0xC0DD\t0xC796\n0xC0DE\t0xC797\n0xC0DF\t0xC798\n0xC0E0\t0xC79A\n0xC0E1\t0xC7A0\n0xC0E2\t0xC7A1\n0xC0E3\t0xC7A3\n0xC0E4\t0xC7A4\n0xC0E5\t0xC7A5\n0xC0E6\t0xC7A6\n0xC0E7\t0xC7AC\n0xC0E8\t0xC7AD\n0xC0E9\t0xC7B0\n0xC0EA\t0xC7B4\n0xC0EB\t0xC7BC\n0xC0EC\t0xC7BD\n0xC0ED\t0xC7BF\n0xC0EE\t0xC7C0\n0xC0EF\t0xC7C1\n0xC0F0\t0xC7C8\n0xC0F1\t0xC7C9\n0xC0F2\t0xC7CC\n0xC0F3\t0xC7CE\n0xC0F4\t0xC7D0\n0xC0F5\t0xC7D8\n0xC0F6\t0xC7DD\n0xC0F7\t0xC7E4\n0xC0F8\t0xC7E8\n0xC0F9\t0xC7EC\n0xC0FA\t0xC800\n0xC0FB\t0xC801\n0xC0FC\t0xC804\n0xC0FD\t0xC808\n0xC0FE\t0xC80A\n0xC141\t0xD564\n0xC142\t0xD566\n0xC143\t0xD567\n0xC144\t0xD56A\n0xC145\t0xD56C\n0xC146\t0xD56E\n0xC147\t0xD56F\n0xC148\t0xD570\n0xC149\t0xD571\n0xC14A\t0xD572\n0xC14B\t0xD573\n0xC14C\t0xD576\n0xC14D\t0xD577\n0xC14E\t0xD579\n0xC14F\t0xD57A\n0xC150\t0xD57B\n0xC151\t0xD57D\n0xC152\t0xD57E\n0xC153\t0xD57F\n0xC154\t0xD580\n0xC155\t0xD581\n0xC156\t0xD582\n0xC157\t0xD583\n0xC158\t0xD586\n0xC159\t0xD58A\n0xC15A\t0xD58B\n0xC161\t0xD58C\n0xC162\t0xD58D\n0xC163\t0xD58E\n0xC164\t0xD58F\n0xC165\t0xD591\n0xC166\t0xD592\n0xC167\t0xD593\n0xC168\t0xD594\n0xC169\t0xD595\n0xC16A\t0xD596\n0xC16B\t0xD597\n0xC16C\t0xD598\n0xC16D\t0xD599\n0xC16E\t0xD59A\n0xC16F\t0xD59B\n0xC170\t0xD59C\n0xC171\t0xD59D\n0xC172\t0xD59E\n0xC173\t0xD59F\n0xC174\t0xD5A0\n0xC175\t0xD5A1\n0xC176\t0xD5A2\n0xC177\t0xD5A3\n0xC178\t0xD5A4\n0xC179\t0xD5A6\n0xC17A\t0xD5A7\n0xC181\t0xD5A8\n0xC182\t0xD5A9\n0xC183\t0xD5AA\n0xC184\t0xD5AB\n0xC185\t0xD5AC\n0xC186\t0xD5AD\n0xC187\t0xD5AE\n0xC188\t0xD5AF\n0xC189\t0xD5B0\n0xC18A\t0xD5B1\n0xC18B\t0xD5B2\n0xC18C\t0xD5B3\n0xC18D\t0xD5B4\n0xC18E\t0xD5B5\n0xC18F\t0xD5B6\n0xC190\t0xD5B7\n0xC191\t0xD5B8\n0xC192\t0xD5B9\n0xC193\t0xD5BA\n0xC194\t0xD5BB\n0xC195\t0xD5BC\n0xC196\t0xD5BD\n0xC197\t0xD5BE\n0xC198\t0xD5BF\n0xC199\t0xD5C0\n0xC19A\t0xD5C1\n0xC19B\t0xD5C2\n0xC19C\t0xD5C3\n0xC19D\t0xD5C4\n0xC19E\t0xD5C5\n0xC19F\t0xD5C6\n0xC1A0\t0xD5C7\n0xC1A1\t0xC810\n0xC1A2\t0xC811\n0xC1A3\t0xC813\n0xC1A4\t0xC815\n0xC1A5\t0xC816\n0xC1A6\t0xC81C\n0xC1A7\t0xC81D\n0xC1A8\t0xC820\n0xC1A9\t0xC824\n0xC1AA\t0xC82C\n0xC1AB\t0xC82D\n0xC1AC\t0xC82F\n0xC1AD\t0xC831\n0xC1AE\t0xC838\n0xC1AF\t0xC83C\n0xC1B0\t0xC840\n0xC1B1\t0xC848\n0xC1B2\t0xC849\n0xC1B3\t0xC84C\n0xC1B4\t0xC84D\n0xC1B5\t0xC854\n0xC1B6\t0xC870\n0xC1B7\t0xC871\n0xC1B8\t0xC874\n0xC1B9\t0xC878\n0xC1BA\t0xC87A\n0xC1BB\t0xC880\n0xC1BC\t0xC881\n0xC1BD\t0xC883\n0xC1BE\t0xC885\n0xC1BF\t0xC886\n0xC1C0\t0xC887\n0xC1C1\t0xC88B\n0xC1C2\t0xC88C\n0xC1C3\t0xC88D\n0xC1C4\t0xC894\n0xC1C5\t0xC89D\n0xC1C6\t0xC89F\n0xC1C7\t0xC8A1\n0xC1C8\t0xC8A8\n0xC1C9\t0xC8BC\n0xC1CA\t0xC8BD\n0xC1CB\t0xC8C4\n0xC1CC\t0xC8C8\n0xC1CD\t0xC8CC\n0xC1CE\t0xC8D4\n0xC1CF\t0xC8D5\n0xC1D0\t0xC8D7\n0xC1D1\t0xC8D9\n0xC1D2\t0xC8E0\n0xC1D3\t0xC8E1\n0xC1D4\t0xC8E4\n0xC1D5\t0xC8F5\n0xC1D6\t0xC8FC\n0xC1D7\t0xC8FD\n0xC1D8\t0xC900\n0xC1D9\t0xC904\n0xC1DA\t0xC905\n0xC1DB\t0xC906\n0xC1DC\t0xC90C\n0xC1DD\t0xC90D\n0xC1DE\t0xC90F\n0xC1DF\t0xC911\n0xC1E0\t0xC918\n0xC1E1\t0xC92C\n0xC1E2\t0xC934\n0xC1E3\t0xC950\n0xC1E4\t0xC951\n0xC1E5\t0xC954\n0xC1E6\t0xC958\n0xC1E7\t0xC960\n0xC1E8\t0xC961\n0xC1E9\t0xC963\n0xC1EA\t0xC96C\n0xC1EB\t0xC970\n0xC1EC\t0xC974\n0xC1ED\t0xC97C\n0xC1EE\t0xC988\n0xC1EF\t0xC989\n0xC1F0\t0xC98C\n0xC1F1\t0xC990\n0xC1F2\t0xC998\n0xC1F3\t0xC999\n0xC1F4\t0xC99B\n0xC1F5\t0xC99D\n0xC1F6\t0xC9C0\n0xC1F7\t0xC9C1\n0xC1F8\t0xC9C4\n0xC1F9\t0xC9C7\n0xC1FA\t0xC9C8\n0xC1FB\t0xC9CA\n0xC1FC\t0xC9D0\n0xC1FD\t0xC9D1\n0xC1FE\t0xC9D3\n0xC241\t0xD5CA\n0xC242\t0xD5CB\n0xC243\t0xD5CD\n0xC244\t0xD5CE\n0xC245\t0xD5CF\n0xC246\t0xD5D1\n0xC247\t0xD5D3\n0xC248\t0xD5D4\n0xC249\t0xD5D5\n0xC24A\t0xD5D6\n0xC24B\t0xD5D7\n0xC24C\t0xD5DA\n0xC24D\t0xD5DC\n0xC24E\t0xD5DE\n0xC24F\t0xD5DF\n0xC250\t0xD5E0\n0xC251\t0xD5E1\n0xC252\t0xD5E2\n0xC253\t0xD5E3\n0xC254\t0xD5E6\n0xC255\t0xD5E7\n0xC256\t0xD5E9\n0xC257\t0xD5EA\n0xC258\t0xD5EB\n0xC259\t0xD5ED\n0xC25A\t0xD5EE\n0xC261\t0xD5EF\n0xC262\t0xD5F0\n0xC263\t0xD5F1\n0xC264\t0xD5F2\n0xC265\t0xD5F3\n0xC266\t0xD5F6\n0xC267\t0xD5F8\n0xC268\t0xD5FA\n0xC269\t0xD5FB\n0xC26A\t0xD5FC\n0xC26B\t0xD5FD\n0xC26C\t0xD5FE\n0xC26D\t0xD5FF\n0xC26E\t0xD602\n0xC26F\t0xD603\n0xC270\t0xD605\n0xC271\t0xD606\n0xC272\t0xD607\n0xC273\t0xD609\n0xC274\t0xD60A\n0xC275\t0xD60B\n0xC276\t0xD60C\n0xC277\t0xD60D\n0xC278\t0xD60E\n0xC279\t0xD60F\n0xC27A\t0xD612\n0xC281\t0xD616\n0xC282\t0xD617\n0xC283\t0xD618\n0xC284\t0xD619\n0xC285\t0xD61A\n0xC286\t0xD61B\n0xC287\t0xD61D\n0xC288\t0xD61E\n0xC289\t0xD61F\n0xC28A\t0xD621\n0xC28B\t0xD622\n0xC28C\t0xD623\n0xC28D\t0xD625\n0xC28E\t0xD626\n0xC28F\t0xD627\n0xC290\t0xD628\n0xC291\t0xD629\n0xC292\t0xD62A\n0xC293\t0xD62B\n0xC294\t0xD62C\n0xC295\t0xD62E\n0xC296\t0xD62F\n0xC297\t0xD630\n0xC298\t0xD631\n0xC299\t0xD632\n0xC29A\t0xD633\n0xC29B\t0xD634\n0xC29C\t0xD635\n0xC29D\t0xD636\n0xC29E\t0xD637\n0xC29F\t0xD63A\n0xC2A0\t0xD63B\n0xC2A1\t0xC9D5\n0xC2A2\t0xC9D6\n0xC2A3\t0xC9D9\n0xC2A4\t0xC9DA\n0xC2A5\t0xC9DC\n0xC2A6\t0xC9DD\n0xC2A7\t0xC9E0\n0xC2A8\t0xC9E2\n0xC2A9\t0xC9E4\n0xC2AA\t0xC9E7\n0xC2AB\t0xC9EC\n0xC2AC\t0xC9ED\n0xC2AD\t0xC9EF\n0xC2AE\t0xC9F0\n0xC2AF\t0xC9F1\n0xC2B0\t0xC9F8\n0xC2B1\t0xC9F9\n0xC2B2\t0xC9FC\n0xC2B3\t0xCA00\n0xC2B4\t0xCA08\n0xC2B5\t0xCA09\n0xC2B6\t0xCA0B\n0xC2B7\t0xCA0C\n0xC2B8\t0xCA0D\n0xC2B9\t0xCA14\n0xC2BA\t0xCA18\n0xC2BB\t0xCA29\n0xC2BC\t0xCA4C\n0xC2BD\t0xCA4D\n0xC2BE\t0xCA50\n0xC2BF\t0xCA54\n0xC2C0\t0xCA5C\n0xC2C1\t0xCA5D\n0xC2C2\t0xCA5F\n0xC2C3\t0xCA60\n0xC2C4\t0xCA61\n0xC2C5\t0xCA68\n0xC2C6\t0xCA7D\n0xC2C7\t0xCA84\n0xC2C8\t0xCA98\n0xC2C9\t0xCABC\n0xC2CA\t0xCABD\n0xC2CB\t0xCAC0\n0xC2CC\t0xCAC4\n0xC2CD\t0xCACC\n0xC2CE\t0xCACD\n0xC2CF\t0xCACF\n0xC2D0\t0xCAD1\n0xC2D1\t0xCAD3\n0xC2D2\t0xCAD8\n0xC2D3\t0xCAD9\n0xC2D4\t0xCAE0\n0xC2D5\t0xCAEC\n0xC2D6\t0xCAF4\n0xC2D7\t0xCB08\n0xC2D8\t0xCB10\n0xC2D9\t0xCB14\n0xC2DA\t0xCB18\n0xC2DB\t0xCB20\n0xC2DC\t0xCB21\n0xC2DD\t0xCB41\n0xC2DE\t0xCB48\n0xC2DF\t0xCB49\n0xC2E0\t0xCB4C\n0xC2E1\t0xCB50\n0xC2E2\t0xCB58\n0xC2E3\t0xCB59\n0xC2E4\t0xCB5D\n0xC2E5\t0xCB64\n0xC2E6\t0xCB78\n0xC2E7\t0xCB79\n0xC2E8\t0xCB9C\n0xC2E9\t0xCBB8\n0xC2EA\t0xCBD4\n0xC2EB\t0xCBE4\n0xC2EC\t0xCBE7\n0xC2ED\t0xCBE9\n0xC2EE\t0xCC0C\n0xC2EF\t0xCC0D\n0xC2F0\t0xCC10\n0xC2F1\t0xCC14\n0xC2F2\t0xCC1C\n0xC2F3\t0xCC1D\n0xC2F4\t0xCC21\n0xC2F5\t0xCC22\n0xC2F6\t0xCC27\n0xC2F7\t0xCC28\n0xC2F8\t0xCC29\n0xC2F9\t0xCC2C\n0xC2FA\t0xCC2E\n0xC2FB\t0xCC30\n0xC2FC\t0xCC38\n0xC2FD\t0xCC39\n0xC2FE\t0xCC3B\n0xC341\t0xD63D\n0xC342\t0xD63E\n0xC343\t0xD63F\n0xC344\t0xD641\n0xC345\t0xD642\n0xC346\t0xD643\n0xC347\t0xD644\n0xC348\t0xD646\n0xC349\t0xD647\n0xC34A\t0xD64A\n0xC34B\t0xD64C\n0xC34C\t0xD64E\n0xC34D\t0xD64F\n0xC34E\t0xD650\n0xC34F\t0xD652\n0xC350\t0xD653\n0xC351\t0xD656\n0xC352\t0xD657\n0xC353\t0xD659\n0xC354\t0xD65A\n0xC355\t0xD65B\n0xC356\t0xD65D\n0xC357\t0xD65E\n0xC358\t0xD65F\n0xC359\t0xD660\n0xC35A\t0xD661\n0xC361\t0xD662\n0xC362\t0xD663\n0xC363\t0xD664\n0xC364\t0xD665\n0xC365\t0xD666\n0xC366\t0xD668\n0xC367\t0xD66A\n0xC368\t0xD66B\n0xC369\t0xD66C\n0xC36A\t0xD66D\n0xC36B\t0xD66E\n0xC36C\t0xD66F\n0xC36D\t0xD672\n0xC36E\t0xD673\n0xC36F\t0xD675\n0xC370\t0xD676\n0xC371\t0xD677\n0xC372\t0xD678\n0xC373\t0xD679\n0xC374\t0xD67A\n0xC375\t0xD67B\n0xC376\t0xD67C\n0xC377\t0xD67D\n0xC378\t0xD67E\n0xC379\t0xD67F\n0xC37A\t0xD680\n0xC381\t0xD681\n0xC382\t0xD682\n0xC383\t0xD684\n0xC384\t0xD686\n0xC385\t0xD687\n0xC386\t0xD688\n0xC387\t0xD689\n0xC388\t0xD68A\n0xC389\t0xD68B\n0xC38A\t0xD68E\n0xC38B\t0xD68F\n0xC38C\t0xD691\n0xC38D\t0xD692\n0xC38E\t0xD693\n0xC38F\t0xD695\n0xC390\t0xD696\n0xC391\t0xD697\n0xC392\t0xD698\n0xC393\t0xD699\n0xC394\t0xD69A\n0xC395\t0xD69B\n0xC396\t0xD69C\n0xC397\t0xD69E\n0xC398\t0xD6A0\n0xC399\t0xD6A2\n0xC39A\t0xD6A3\n0xC39B\t0xD6A4\n0xC39C\t0xD6A5\n0xC39D\t0xD6A6\n0xC39E\t0xD6A7\n0xC39F\t0xD6A9\n0xC3A0\t0xD6AA\n0xC3A1\t0xCC3C\n0xC3A2\t0xCC3D\n0xC3A3\t0xCC3E\n0xC3A4\t0xCC44\n0xC3A5\t0xCC45\n0xC3A6\t0xCC48\n0xC3A7\t0xCC4C\n0xC3A8\t0xCC54\n0xC3A9\t0xCC55\n0xC3AA\t0xCC57\n0xC3AB\t0xCC58\n0xC3AC\t0xCC59\n0xC3AD\t0xCC60\n0xC3AE\t0xCC64\n0xC3AF\t0xCC66\n0xC3B0\t0xCC68\n0xC3B1\t0xCC70\n0xC3B2\t0xCC75\n0xC3B3\t0xCC98\n0xC3B4\t0xCC99\n0xC3B5\t0xCC9C\n0xC3B6\t0xCCA0\n0xC3B7\t0xCCA8\n0xC3B8\t0xCCA9\n0xC3B9\t0xCCAB\n0xC3BA\t0xCCAC\n0xC3BB\t0xCCAD\n0xC3BC\t0xCCB4\n0xC3BD\t0xCCB5\n0xC3BE\t0xCCB8\n0xC3BF\t0xCCBC\n0xC3C0\t0xCCC4\n0xC3C1\t0xCCC5\n0xC3C2\t0xCCC7\n0xC3C3\t0xCCC9\n0xC3C4\t0xCCD0\n0xC3C5\t0xCCD4\n0xC3C6\t0xCCE4\n0xC3C7\t0xCCEC\n0xC3C8\t0xCCF0\n0xC3C9\t0xCD01\n0xC3CA\t0xCD08\n0xC3CB\t0xCD09\n0xC3CC\t0xCD0C\n0xC3CD\t0xCD10\n0xC3CE\t0xCD18\n0xC3CF\t0xCD19\n0xC3D0\t0xCD1B\n0xC3D1\t0xCD1D\n0xC3D2\t0xCD24\n0xC3D3\t0xCD28\n0xC3D4\t0xCD2C\n0xC3D5\t0xCD39\n0xC3D6\t0xCD5C\n0xC3D7\t0xCD60\n0xC3D8\t0xCD64\n0xC3D9\t0xCD6C\n0xC3DA\t0xCD6D\n0xC3DB\t0xCD6F\n0xC3DC\t0xCD71\n0xC3DD\t0xCD78\n0xC3DE\t0xCD88\n0xC3DF\t0xCD94\n0xC3E0\t0xCD95\n0xC3E1\t0xCD98\n0xC3E2\t0xCD9C\n0xC3E3\t0xCDA4\n0xC3E4\t0xCDA5\n0xC3E5\t0xCDA7\n0xC3E6\t0xCDA9\n0xC3E7\t0xCDB0\n0xC3E8\t0xCDC4\n0xC3E9\t0xCDCC\n0xC3EA\t0xCDD0\n0xC3EB\t0xCDE8\n0xC3EC\t0xCDEC\n0xC3ED\t0xCDF0\n0xC3EE\t0xCDF8\n0xC3EF\t0xCDF9\n0xC3F0\t0xCDFB\n0xC3F1\t0xCDFD\n0xC3F2\t0xCE04\n0xC3F3\t0xCE08\n0xC3F4\t0xCE0C\n0xC3F5\t0xCE14\n0xC3F6\t0xCE19\n0xC3F7\t0xCE20\n0xC3F8\t0xCE21\n0xC3F9\t0xCE24\n0xC3FA\t0xCE28\n0xC3FB\t0xCE30\n0xC3FC\t0xCE31\n0xC3FD\t0xCE33\n0xC3FE\t0xCE35\n0xC441\t0xD6AB\n0xC442\t0xD6AD\n0xC443\t0xD6AE\n0xC444\t0xD6AF\n0xC445\t0xD6B1\n0xC446\t0xD6B2\n0xC447\t0xD6B3\n0xC448\t0xD6B4\n0xC449\t0xD6B5\n0xC44A\t0xD6B6\n0xC44B\t0xD6B7\n0xC44C\t0xD6B8\n0xC44D\t0xD6BA\n0xC44E\t0xD6BC\n0xC44F\t0xD6BD\n0xC450\t0xD6BE\n0xC451\t0xD6BF\n0xC452\t0xD6C0\n0xC453\t0xD6C1\n0xC454\t0xD6C2\n0xC455\t0xD6C3\n0xC456\t0xD6C6\n0xC457\t0xD6C7\n0xC458\t0xD6C9\n0xC459\t0xD6CA\n0xC45A\t0xD6CB\n0xC461\t0xD6CD\n0xC462\t0xD6CE\n0xC463\t0xD6CF\n0xC464\t0xD6D0\n0xC465\t0xD6D2\n0xC466\t0xD6D3\n0xC467\t0xD6D5\n0xC468\t0xD6D6\n0xC469\t0xD6D8\n0xC46A\t0xD6DA\n0xC46B\t0xD6DB\n0xC46C\t0xD6DC\n0xC46D\t0xD6DD\n0xC46E\t0xD6DE\n0xC46F\t0xD6DF\n0xC470\t0xD6E1\n0xC471\t0xD6E2\n0xC472\t0xD6E3\n0xC473\t0xD6E5\n0xC474\t0xD6E6\n0xC475\t0xD6E7\n0xC476\t0xD6E9\n0xC477\t0xD6EA\n0xC478\t0xD6EB\n0xC479\t0xD6EC\n0xC47A\t0xD6ED\n0xC481\t0xD6EE\n0xC482\t0xD6EF\n0xC483\t0xD6F1\n0xC484\t0xD6F2\n0xC485\t0xD6F3\n0xC486\t0xD6F4\n0xC487\t0xD6F6\n0xC488\t0xD6F7\n0xC489\t0xD6F8\n0xC48A\t0xD6F9\n0xC48B\t0xD6FA\n0xC48C\t0xD6FB\n0xC48D\t0xD6FE\n0xC48E\t0xD6FF\n0xC48F\t0xD701\n0xC490\t0xD702\n0xC491\t0xD703\n0xC492\t0xD705\n0xC493\t0xD706\n0xC494\t0xD707\n0xC495\t0xD708\n0xC496\t0xD709\n0xC497\t0xD70A\n0xC498\t0xD70B\n0xC499\t0xD70C\n0xC49A\t0xD70D\n0xC49B\t0xD70E\n0xC49C\t0xD70F\n0xC49D\t0xD710\n0xC49E\t0xD712\n0xC49F\t0xD713\n0xC4A0\t0xD714\n0xC4A1\t0xCE58\n0xC4A2\t0xCE59\n0xC4A3\t0xCE5C\n0xC4A4\t0xCE5F\n0xC4A5\t0xCE60\n0xC4A6\t0xCE61\n0xC4A7\t0xCE68\n0xC4A8\t0xCE69\n0xC4A9\t0xCE6B\n0xC4AA\t0xCE6D\n0xC4AB\t0xCE74\n0xC4AC\t0xCE75\n0xC4AD\t0xCE78\n0xC4AE\t0xCE7C\n0xC4AF\t0xCE84\n0xC4B0\t0xCE85\n0xC4B1\t0xCE87\n0xC4B2\t0xCE89\n0xC4B3\t0xCE90\n0xC4B4\t0xCE91\n0xC4B5\t0xCE94\n0xC4B6\t0xCE98\n0xC4B7\t0xCEA0\n0xC4B8\t0xCEA1\n0xC4B9\t0xCEA3\n0xC4BA\t0xCEA4\n0xC4BB\t0xCEA5\n0xC4BC\t0xCEAC\n0xC4BD\t0xCEAD\n0xC4BE\t0xCEC1\n0xC4BF\t0xCEE4\n0xC4C0\t0xCEE5\n0xC4C1\t0xCEE8\n0xC4C2\t0xCEEB\n0xC4C3\t0xCEEC\n0xC4C4\t0xCEF4\n0xC4C5\t0xCEF5\n0xC4C6\t0xCEF7\n0xC4C7\t0xCEF8\n0xC4C8\t0xCEF9\n0xC4C9\t0xCF00\n0xC4CA\t0xCF01\n0xC4CB\t0xCF04\n0xC4CC\t0xCF08\n0xC4CD\t0xCF10\n0xC4CE\t0xCF11\n0xC4CF\t0xCF13\n0xC4D0\t0xCF15\n0xC4D1\t0xCF1C\n0xC4D2\t0xCF20\n0xC4D3\t0xCF24\n0xC4D4\t0xCF2C\n0xC4D5\t0xCF2D\n0xC4D6\t0xCF2F\n0xC4D7\t0xCF30\n0xC4D8\t0xCF31\n0xC4D9\t0xCF38\n0xC4DA\t0xCF54\n0xC4DB\t0xCF55\n0xC4DC\t0xCF58\n0xC4DD\t0xCF5C\n0xC4DE\t0xCF64\n0xC4DF\t0xCF65\n0xC4E0\t0xCF67\n0xC4E1\t0xCF69\n0xC4E2\t0xCF70\n0xC4E3\t0xCF71\n0xC4E4\t0xCF74\n0xC4E5\t0xCF78\n0xC4E6\t0xCF80\n0xC4E7\t0xCF85\n0xC4E8\t0xCF8C\n0xC4E9\t0xCFA1\n0xC4EA\t0xCFA8\n0xC4EB\t0xCFB0\n0xC4EC\t0xCFC4\n0xC4ED\t0xCFE0\n0xC4EE\t0xCFE1\n0xC4EF\t0xCFE4\n0xC4F0\t0xCFE8\n0xC4F1\t0xCFF0\n0xC4F2\t0xCFF1\n0xC4F3\t0xCFF3\n0xC4F4\t0xCFF5\n0xC4F5\t0xCFFC\n0xC4F6\t0xD000\n0xC4F7\t0xD004\n0xC4F8\t0xD011\n0xC4F9\t0xD018\n0xC4FA\t0xD02D\n0xC4FB\t0xD034\n0xC4FC\t0xD035\n0xC4FD\t0xD038\n0xC4FE\t0xD03C\n0xC541\t0xD715\n0xC542\t0xD716\n0xC543\t0xD717\n0xC544\t0xD71A\n0xC545\t0xD71B\n0xC546\t0xD71D\n0xC547\t0xD71E\n0xC548\t0xD71F\n0xC549\t0xD721\n0xC54A\t0xD722\n0xC54B\t0xD723\n0xC54C\t0xD724\n0xC54D\t0xD725\n0xC54E\t0xD726\n0xC54F\t0xD727\n0xC550\t0xD72A\n0xC551\t0xD72C\n0xC552\t0xD72E\n0xC553\t0xD72F\n0xC554\t0xD730\n0xC555\t0xD731\n0xC556\t0xD732\n0xC557\t0xD733\n0xC558\t0xD736\n0xC559\t0xD737\n0xC55A\t0xD739\n0xC561\t0xD73A\n0xC562\t0xD73B\n0xC563\t0xD73D\n0xC564\t0xD73E\n0xC565\t0xD73F\n0xC566\t0xD740\n0xC567\t0xD741\n0xC568\t0xD742\n0xC569\t0xD743\n0xC56A\t0xD745\n0xC56B\t0xD746\n0xC56C\t0xD748\n0xC56D\t0xD74A\n0xC56E\t0xD74B\n0xC56F\t0xD74C\n0xC570\t0xD74D\n0xC571\t0xD74E\n0xC572\t0xD74F\n0xC573\t0xD752\n0xC574\t0xD753\n0xC575\t0xD755\n0xC576\t0xD75A\n0xC577\t0xD75B\n0xC578\t0xD75C\n0xC579\t0xD75D\n0xC57A\t0xD75E\n0xC581\t0xD75F\n0xC582\t0xD762\n0xC583\t0xD764\n0xC584\t0xD766\n0xC585\t0xD767\n0xC586\t0xD768\n0xC587\t0xD76A\n0xC588\t0xD76B\n0xC589\t0xD76D\n0xC58A\t0xD76E\n0xC58B\t0xD76F\n0xC58C\t0xD771\n0xC58D\t0xD772\n0xC58E\t0xD773\n0xC58F\t0xD775\n0xC590\t0xD776\n0xC591\t0xD777\n0xC592\t0xD778\n0xC593\t0xD779\n0xC594\t0xD77A\n0xC595\t0xD77B\n0xC596\t0xD77E\n0xC597\t0xD77F\n0xC598\t0xD780\n0xC599\t0xD782\n0xC59A\t0xD783\n0xC59B\t0xD784\n0xC59C\t0xD785\n0xC59D\t0xD786\n0xC59E\t0xD787\n0xC59F\t0xD78A\n0xC5A0\t0xD78B\n0xC5A1\t0xD044\n0xC5A2\t0xD045\n0xC5A3\t0xD047\n0xC5A4\t0xD049\n0xC5A5\t0xD050\n0xC5A6\t0xD054\n0xC5A7\t0xD058\n0xC5A8\t0xD060\n0xC5A9\t0xD06C\n0xC5AA\t0xD06D\n0xC5AB\t0xD070\n0xC5AC\t0xD074\n0xC5AD\t0xD07C\n0xC5AE\t0xD07D\n0xC5AF\t0xD081\n0xC5B0\t0xD0A4\n0xC5B1\t0xD0A5\n0xC5B2\t0xD0A8\n0xC5B3\t0xD0AC\n0xC5B4\t0xD0B4\n0xC5B5\t0xD0B5\n0xC5B6\t0xD0B7\n0xC5B7\t0xD0B9\n0xC5B8\t0xD0C0\n0xC5B9\t0xD0C1\n0xC5BA\t0xD0C4\n0xC5BB\t0xD0C8\n0xC5BC\t0xD0C9\n0xC5BD\t0xD0D0\n0xC5BE\t0xD0D1\n0xC5BF\t0xD0D3\n0xC5C0\t0xD0D4\n0xC5C1\t0xD0D5\n0xC5C2\t0xD0DC\n0xC5C3\t0xD0DD\n0xC5C4\t0xD0E0\n0xC5C5\t0xD0E4\n0xC5C6\t0xD0EC\n0xC5C7\t0xD0ED\n0xC5C8\t0xD0EF\n0xC5C9\t0xD0F0\n0xC5CA\t0xD0F1\n0xC5CB\t0xD0F8\n0xC5CC\t0xD10D\n0xC5CD\t0xD130\n0xC5CE\t0xD131\n0xC5CF\t0xD134\n0xC5D0\t0xD138\n0xC5D1\t0xD13A\n0xC5D2\t0xD140\n0xC5D3\t0xD141\n0xC5D4\t0xD143\n0xC5D5\t0xD144\n0xC5D6\t0xD145\n0xC5D7\t0xD14C\n0xC5D8\t0xD14D\n0xC5D9\t0xD150\n0xC5DA\t0xD154\n0xC5DB\t0xD15C\n0xC5DC\t0xD15D\n0xC5DD\t0xD15F\n0xC5DE\t0xD161\n0xC5DF\t0xD168\n0xC5E0\t0xD16C\n0xC5E1\t0xD17C\n0xC5E2\t0xD184\n0xC5E3\t0xD188\n0xC5E4\t0xD1A0\n0xC5E5\t0xD1A1\n0xC5E6\t0xD1A4\n0xC5E7\t0xD1A8\n0xC5E8\t0xD1B0\n0xC5E9\t0xD1B1\n0xC5EA\t0xD1B3\n0xC5EB\t0xD1B5\n0xC5EC\t0xD1BA\n0xC5ED\t0xD1BC\n0xC5EE\t0xD1C0\n0xC5EF\t0xD1D8\n0xC5F0\t0xD1F4\n0xC5F1\t0xD1F8\n0xC5F2\t0xD207\n0xC5F3\t0xD209\n0xC5F4\t0xD210\n0xC5F5\t0xD22C\n0xC5F6\t0xD22D\n0xC5F7\t0xD230\n0xC5F8\t0xD234\n0xC5F9\t0xD23C\n0xC5FA\t0xD23D\n0xC5FB\t0xD23F\n0xC5FC\t0xD241\n0xC5FD\t0xD248\n0xC5FE\t0xD25C\n0xC641\t0xD78D\n0xC642\t0xD78E\n0xC643\t0xD78F\n0xC644\t0xD791\n0xC645\t0xD792\n0xC646\t0xD793\n0xC647\t0xD794\n0xC648\t0xD795\n0xC649\t0xD796\n0xC64A\t0xD797\n0xC64B\t0xD79A\n0xC64C\t0xD79C\n0xC64D\t0xD79E\n0xC64E\t0xD79F\n0xC64F\t0xD7A0\n0xC650\t0xD7A1\n0xC651\t0xD7A2\n0xC652\t0xD7A3\n0xC6A1\t0xD264\n0xC6A2\t0xD280\n0xC6A3\t0xD281\n0xC6A4\t0xD284\n0xC6A5\t0xD288\n0xC6A6\t0xD290\n0xC6A7\t0xD291\n0xC6A8\t0xD295\n0xC6A9\t0xD29C\n0xC6AA\t0xD2A0\n0xC6AB\t0xD2A4\n0xC6AC\t0xD2AC\n0xC6AD\t0xD2B1\n0xC6AE\t0xD2B8\n0xC6AF\t0xD2B9\n0xC6B0\t0xD2BC\n0xC6B1\t0xD2BF\n0xC6B2\t0xD2C0\n0xC6B3\t0xD2C2\n0xC6B4\t0xD2C8\n0xC6B5\t0xD2C9\n0xC6B6\t0xD2CB\n0xC6B7\t0xD2D4\n0xC6B8\t0xD2D8\n0xC6B9\t0xD2DC\n0xC6BA\t0xD2E4\n0xC6BB\t0xD2E5\n0xC6BC\t0xD2F0\n0xC6BD\t0xD2F1\n0xC6BE\t0xD2F4\n0xC6BF\t0xD2F8\n0xC6C0\t0xD300\n0xC6C1\t0xD301\n0xC6C2\t0xD303\n0xC6C3\t0xD305\n0xC6C4\t0xD30C\n0xC6C5\t0xD30D\n0xC6C6\t0xD30E\n0xC6C7\t0xD310\n0xC6C8\t0xD314\n0xC6C9\t0xD316\n0xC6CA\t0xD31C\n0xC6CB\t0xD31D\n0xC6CC\t0xD31F\n0xC6CD\t0xD320\n0xC6CE\t0xD321\n0xC6CF\t0xD325\n0xC6D0\t0xD328\n0xC6D1\t0xD329\n0xC6D2\t0xD32C\n0xC6D3\t0xD330\n0xC6D4\t0xD338\n0xC6D5\t0xD339\n0xC6D6\t0xD33B\n0xC6D7\t0xD33C\n0xC6D8\t0xD33D\n0xC6D9\t0xD344\n0xC6DA\t0xD345\n0xC6DB\t0xD37C\n0xC6DC\t0xD37D\n0xC6DD\t0xD380\n0xC6DE\t0xD384\n0xC6DF\t0xD38C\n0xC6E0\t0xD38D\n0xC6E1\t0xD38F\n0xC6E2\t0xD390\n0xC6E3\t0xD391\n0xC6E4\t0xD398\n0xC6E5\t0xD399\n0xC6E6\t0xD39C\n0xC6E7\t0xD3A0\n0xC6E8\t0xD3A8\n0xC6E9\t0xD3A9\n0xC6EA\t0xD3AB\n0xC6EB\t0xD3AD\n0xC6EC\t0xD3B4\n0xC6ED\t0xD3B8\n0xC6EE\t0xD3BC\n0xC6EF\t0xD3C4\n0xC6F0\t0xD3C5\n0xC6F1\t0xD3C8\n0xC6F2\t0xD3C9\n0xC6F3\t0xD3D0\n0xC6F4\t0xD3D8\n0xC6F5\t0xD3E1\n0xC6F6\t0xD3E3\n0xC6F7\t0xD3EC\n0xC6F8\t0xD3ED\n0xC6F9\t0xD3F0\n0xC6FA\t0xD3F4\n0xC6FB\t0xD3FC\n0xC6FC\t0xD3FD\n0xC6FD\t0xD3FF\n0xC6FE\t0xD401\n0xC7A1\t0xD408\n0xC7A2\t0xD41D\n0xC7A3\t0xD440\n0xC7A4\t0xD444\n0xC7A5\t0xD45C\n0xC7A6\t0xD460\n0xC7A7\t0xD464\n0xC7A8\t0xD46D\n0xC7A9\t0xD46F\n0xC7AA\t0xD478\n0xC7AB\t0xD479\n0xC7AC\t0xD47C\n0xC7AD\t0xD47F\n0xC7AE\t0xD480\n0xC7AF\t0xD482\n0xC7B0\t0xD488\n0xC7B1\t0xD489\n0xC7B2\t0xD48B\n0xC7B3\t0xD48D\n0xC7B4\t0xD494\n0xC7B5\t0xD4A9\n0xC7B6\t0xD4CC\n0xC7B7\t0xD4D0\n0xC7B8\t0xD4D4\n0xC7B9\t0xD4DC\n0xC7BA\t0xD4DF\n0xC7BB\t0xD4E8\n0xC7BC\t0xD4EC\n0xC7BD\t0xD4F0\n0xC7BE\t0xD4F8\n0xC7BF\t0xD4FB\n0xC7C0\t0xD4FD\n0xC7C1\t0xD504\n0xC7C2\t0xD508\n0xC7C3\t0xD50C\n0xC7C4\t0xD514\n0xC7C5\t0xD515\n0xC7C6\t0xD517\n0xC7C7\t0xD53C\n0xC7C8\t0xD53D\n0xC7C9\t0xD540\n0xC7CA\t0xD544\n0xC7CB\t0xD54C\n0xC7CC\t0xD54D\n0xC7CD\t0xD54F\n0xC7CE\t0xD551\n0xC7CF\t0xD558\n0xC7D0\t0xD559\n0xC7D1\t0xD55C\n0xC7D2\t0xD560\n0xC7D3\t0xD565\n0xC7D4\t0xD568\n0xC7D5\t0xD569\n0xC7D6\t0xD56B\n0xC7D7\t0xD56D\n0xC7D8\t0xD574\n0xC7D9\t0xD575\n0xC7DA\t0xD578\n0xC7DB\t0xD57C\n0xC7DC\t0xD584\n0xC7DD\t0xD585\n0xC7DE\t0xD587\n0xC7DF\t0xD588\n0xC7E0\t0xD589\n0xC7E1\t0xD590\n0xC7E2\t0xD5A5\n0xC7E3\t0xD5C8\n0xC7E4\t0xD5C9\n0xC7E5\t0xD5CC\n0xC7E6\t0xD5D0\n0xC7E7\t0xD5D2\n0xC7E8\t0xD5D8\n0xC7E9\t0xD5D9\n0xC7EA\t0xD5DB\n0xC7EB\t0xD5DD\n0xC7EC\t0xD5E4\n0xC7ED\t0xD5E5\n0xC7EE\t0xD5E8\n0xC7EF\t0xD5EC\n0xC7F0\t0xD5F4\n0xC7F1\t0xD5F5\n0xC7F2\t0xD5F7\n0xC7F3\t0xD5F9\n0xC7F4\t0xD600\n0xC7F5\t0xD601\n0xC7F6\t0xD604\n0xC7F7\t0xD608\n0xC7F8\t0xD610\n0xC7F9\t0xD611\n0xC7FA\t0xD613\n0xC7FB\t0xD614\n0xC7FC\t0xD615\n0xC7FD\t0xD61C\n0xC7FE\t0xD620\n0xC8A1\t0xD624\n0xC8A2\t0xD62D\n0xC8A3\t0xD638\n0xC8A4\t0xD639\n0xC8A5\t0xD63C\n0xC8A6\t0xD640\n0xC8A7\t0xD645\n0xC8A8\t0xD648\n0xC8A9\t0xD649\n0xC8AA\t0xD64B\n0xC8AB\t0xD64D\n0xC8AC\t0xD651\n0xC8AD\t0xD654\n0xC8AE\t0xD655\n0xC8AF\t0xD658\n0xC8B0\t0xD65C\n0xC8B1\t0xD667\n0xC8B2\t0xD669\n0xC8B3\t0xD670\n0xC8B4\t0xD671\n0xC8B5\t0xD674\n0xC8B6\t0xD683\n0xC8B7\t0xD685\n0xC8B8\t0xD68C\n0xC8B9\t0xD68D\n0xC8BA\t0xD690\n0xC8BB\t0xD694\n0xC8BC\t0xD69D\n0xC8BD\t0xD69F\n0xC8BE\t0xD6A1\n0xC8BF\t0xD6A8\n0xC8C0\t0xD6AC\n0xC8C1\t0xD6B0\n0xC8C2\t0xD6B9\n0xC8C3\t0xD6BB\n0xC8C4\t0xD6C4\n0xC8C5\t0xD6C5\n0xC8C6\t0xD6C8\n0xC8C7\t0xD6CC\n0xC8C8\t0xD6D1\n0xC8C9\t0xD6D4\n0xC8CA\t0xD6D7\n0xC8CB\t0xD6D9\n0xC8CC\t0xD6E0\n0xC8CD\t0xD6E4\n0xC8CE\t0xD6E8\n0xC8CF\t0xD6F0\n0xC8D0\t0xD6F5\n0xC8D1\t0xD6FC\n0xC8D2\t0xD6FD\n0xC8D3\t0xD700\n0xC8D4\t0xD704\n0xC8D5\t0xD711\n0xC8D6\t0xD718\n0xC8D7\t0xD719\n0xC8D8\t0xD71C\n0xC8D9\t0xD720\n0xC8DA\t0xD728\n0xC8DB\t0xD729\n0xC8DC\t0xD72B\n0xC8DD\t0xD72D\n0xC8DE\t0xD734\n0xC8DF\t0xD735\n0xC8E0\t0xD738\n0xC8E1\t0xD73C\n0xC8E2\t0xD744\n0xC8E3\t0xD747\n0xC8E4\t0xD749\n0xC8E5\t0xD750\n0xC8E6\t0xD751\n0xC8E7\t0xD754\n0xC8E8\t0xD756\n0xC8E9\t0xD757\n0xC8EA\t0xD758\n0xC8EB\t0xD759\n0xC8EC\t0xD760\n0xC8ED\t0xD761\n0xC8EE\t0xD763\n0xC8EF\t0xD765\n0xC8F0\t0xD769\n0xC8F1\t0xD76C\n0xC8F2\t0xD770\n0xC8F3\t0xD774\n0xC8F4\t0xD77C\n0xC8F5\t0xD77D\n0xC8F6\t0xD781\n0xC8F7\t0xD788\n0xC8F8\t0xD789\n0xC8F9\t0xD78C\n0xC8FA\t0xD790\n0xC8FB\t0xD798\n0xC8FC\t0xD799\n0xC8FD\t0xD79B\n0xC8FE\t0xD79D\n0xC9A1\t0xE000\n0xC9A2\t0xE001\n0xC9A3\t0xE002\n0xC9A4\t0xE003\n0xC9A5\t0xE004\n0xC9A6\t0xE005\n0xC9A7\t0xE006\n0xC9A8\t0xE007\n0xC9A9\t0xE008\n0xC9AA\t0xE009\n0xC9AB\t0xE00A\n0xC9AC\t0xE00B\n0xC9AD\t0xE00C\n0xC9AE\t0xE00D\n0xC9AF\t0xE00E\n0xC9B0\t0xE00F\n0xC9B1\t0xE010\n0xC9B2\t0xE011\n0xC9B3\t0xE012\n0xC9B4\t0xE013\n0xC9B5\t0xE014\n0xC9B6\t0xE015\n0xC9B7\t0xE016\n0xC9B8\t0xE017\n0xC9B9\t0xE018\n0xC9BA\t0xE019\n0xC9BB\t0xE01A\n0xC9BC\t0xE01B\n0xC9BD\t0xE01C\n0xC9BE\t0xE01D\n0xC9BF\t0xE01E\n0xC9C0\t0xE01F\n0xC9C1\t0xE020\n0xC9C2\t0xE021\n0xC9C3\t0xE022\n0xC9C4\t0xE023\n0xC9C5\t0xE024\n0xC9C6\t0xE025\n0xC9C7\t0xE026\n0xC9C8\t0xE027\n0xC9C9\t0xE028\n0xC9CA\t0xE029\n0xC9CB\t0xE02A\n0xC9CC\t0xE02B\n0xC9CD\t0xE02C\n0xC9CE\t0xE02D\n0xC9CF\t0xE02E\n0xC9D0\t0xE02F\n0xC9D1\t0xE030\n0xC9D2\t0xE031\n0xC9D3\t0xE032\n0xC9D4\t0xE033\n0xC9D5\t0xE034\n0xC9D6\t0xE035\n0xC9D7\t0xE036\n0xC9D8\t0xE037\n0xC9D9\t0xE038\n0xC9DA\t0xE039\n0xC9DB\t0xE03A\n0xC9DC\t0xE03B\n0xC9DD\t0xE03C\n0xC9DE\t0xE03D\n0xC9DF\t0xE03E\n0xC9E0\t0xE03F\n0xC9E1\t0xE040\n0xC9E2\t0xE041\n0xC9E3\t0xE042\n0xC9E4\t0xE043\n0xC9E5\t0xE044\n0xC9E6\t0xE045\n0xC9E7\t0xE046\n0xC9E8\t0xE047\n0xC9E9\t0xE048\n0xC9EA\t0xE049\n0xC9EB\t0xE04A\n0xC9EC\t0xE04B\n0xC9ED\t0xE04C\n0xC9EE\t0xE04D\n0xC9EF\t0xE04E\n0xC9F0\t0xE04F\n0xC9F1\t0xE050\n0xC9F2\t0xE051\n0xC9F3\t0xE052\n0xC9F4\t0xE053\n0xC9F5\t0xE054\n0xC9F6\t0xE055\n0xC9F7\t0xE056\n0xC9F8\t0xE057\n0xC9F9\t0xE058\n0xC9FA\t0xE059\n0xC9FB\t0xE05A\n0xC9FC\t0xE05B\n0xC9FD\t0xE05C\n0xC9FE\t0xE05D\n0xCAA1\t0x4F3D\n0xCAA2\t0x4F73\n0xCAA3\t0x5047\n0xCAA4\t0x50F9\n0xCAA5\t0x52A0\n0xCAA6\t0x53EF\n0xCAA7\t0x5475\n0xCAA8\t0x54E5\n0xCAA9\t0x5609\n0xCAAA\t0x5AC1\n0xCAAB\t0x5BB6\n0xCAAC\t0x6687\n0xCAAD\t0x67B6\n0xCAAE\t0x67B7\n0xCAAF\t0x67EF\n0xCAB0\t0x6B4C\n0xCAB1\t0x73C2\n0xCAB2\t0x75C2\n0xCAB3\t0x7A3C\n0xCAB4\t0x82DB\n0xCAB5\t0x8304\n0xCAB6\t0x8857\n0xCAB7\t0x8888\n0xCAB8\t0x8A36\n0xCAB9\t0x8CC8\n0xCABA\t0x8DCF\n0xCABB\t0x8EFB\n0xCABC\t0x8FE6\n0xCABD\t0x99D5\n0xCABE\t0x523B\n0xCABF\t0x5374\n0xCAC0\t0x5404\n0xCAC1\t0x606A\n0xCAC2\t0x6164\n0xCAC3\t0x6BBC\n0xCAC4\t0x73CF\n0xCAC5\t0x811A\n0xCAC6\t0x89BA\n0xCAC7\t0x89D2\n0xCAC8\t0x95A3\n0xCAC9\t0x4F83\n0xCACA\t0x520A\n0xCACB\t0x58BE\n0xCACC\t0x5978\n0xCACD\t0x59E6\n0xCACE\t0x5E72\n0xCACF\t0x5E79\n0xCAD0\t0x61C7\n0xCAD1\t0x63C0\n0xCAD2\t0x6746\n0xCAD3\t0x67EC\n0xCAD4\t0x687F\n0xCAD5\t0x6F97\n0xCAD6\t0x764E\n0xCAD7\t0x770B\n0xCAD8\t0x78F5\n0xCAD9\t0x7A08\n0xCADA\t0x7AFF\n0xCADB\t0x7C21\n0xCADC\t0x809D\n0xCADD\t0x826E\n0xCADE\t0x8271\n0xCADF\t0x8AEB\n0xCAE0\t0x9593\n0xCAE1\t0x4E6B\n0xCAE2\t0x559D\n0xCAE3\t0x66F7\n0xCAE4\t0x6E34\n0xCAE5\t0x78A3\n0xCAE6\t0x7AED\n0xCAE7\t0x845B\n0xCAE8\t0x8910\n0xCAE9\t0x874E\n0xCAEA\t0x97A8\n0xCAEB\t0x52D8\n0xCAEC\t0x574E\n0xCAED\t0x582A\n0xCAEE\t0x5D4C\n0xCAEF\t0x611F\n0xCAF0\t0x61BE\n0xCAF1\t0x6221\n0xCAF2\t0x6562\n0xCAF3\t0x67D1\n0xCAF4\t0x6A44\n0xCAF5\t0x6E1B\n0xCAF6\t0x7518\n0xCAF7\t0x75B3\n0xCAF8\t0x76E3\n0xCAF9\t0x77B0\n0xCAFA\t0x7D3A\n0xCAFB\t0x90AF\n0xCAFC\t0x9451\n0xCAFD\t0x9452\n0xCAFE\t0x9F95\n0xCBA1\t0x5323\n0xCBA2\t0x5CAC\n0xCBA3\t0x7532\n0xCBA4\t0x80DB\n0xCBA5\t0x9240\n0xCBA6\t0x9598\n0xCBA7\t0x525B\n0xCBA8\t0x5808\n0xCBA9\t0x59DC\n0xCBAA\t0x5CA1\n0xCBAB\t0x5D17\n0xCBAC\t0x5EB7\n0xCBAD\t0x5F3A\n0xCBAE\t0x5F4A\n0xCBAF\t0x6177\n0xCBB0\t0x6C5F\n0xCBB1\t0x757A\n0xCBB2\t0x7586\n0xCBB3\t0x7CE0\n0xCBB4\t0x7D73\n0xCBB5\t0x7DB1\n0xCBB6\t0x7F8C\n0xCBB7\t0x8154\n0xCBB8\t0x8221\n0xCBB9\t0x8591\n0xCBBA\t0x8941\n0xCBBB\t0x8B1B\n0xCBBC\t0x92FC\n0xCBBD\t0x964D\n0xCBBE\t0x9C47\n0xCBBF\t0x4ECB\n0xCBC0\t0x4EF7\n0xCBC1\t0x500B\n0xCBC2\t0x51F1\n0xCBC3\t0x584F\n0xCBC4\t0x6137\n0xCBC5\t0x613E\n0xCBC6\t0x6168\n0xCBC7\t0x6539\n0xCBC8\t0x69EA\n0xCBC9\t0x6F11\n0xCBCA\t0x75A5\n0xCBCB\t0x7686\n0xCBCC\t0x76D6\n0xCBCD\t0x7B87\n0xCBCE\t0x82A5\n0xCBCF\t0x84CB\n0xCBD0\t0xF900\n0xCBD1\t0x93A7\n0xCBD2\t0x958B\n0xCBD3\t0x5580\n0xCBD4\t0x5BA2\n0xCBD5\t0x5751\n0xCBD6\t0xF901\n0xCBD7\t0x7CB3\n0xCBD8\t0x7FB9\n0xCBD9\t0x91B5\n0xCBDA\t0x5028\n0xCBDB\t0x53BB\n0xCBDC\t0x5C45\n0xCBDD\t0x5DE8\n0xCBDE\t0x62D2\n0xCBDF\t0x636E\n0xCBE0\t0x64DA\n0xCBE1\t0x64E7\n0xCBE2\t0x6E20\n0xCBE3\t0x70AC\n0xCBE4\t0x795B\n0xCBE5\t0x8DDD\n0xCBE6\t0x8E1E\n0xCBE7\t0xF902\n0xCBE8\t0x907D\n0xCBE9\t0x9245\n0xCBEA\t0x92F8\n0xCBEB\t0x4E7E\n0xCBEC\t0x4EF6\n0xCBED\t0x5065\n0xCBEE\t0x5DFE\n0xCBEF\t0x5EFA\n0xCBF0\t0x6106\n0xCBF1\t0x6957\n0xCBF2\t0x8171\n0xCBF3\t0x8654\n0xCBF4\t0x8E47\n0xCBF5\t0x9375\n0xCBF6\t0x9A2B\n0xCBF7\t0x4E5E\n0xCBF8\t0x5091\n0xCBF9\t0x6770\n0xCBFA\t0x6840\n0xCBFB\t0x5109\n0xCBFC\t0x528D\n0xCBFD\t0x5292\n0xCBFE\t0x6AA2\n0xCCA1\t0x77BC\n0xCCA2\t0x9210\n0xCCA3\t0x9ED4\n0xCCA4\t0x52AB\n0xCCA5\t0x602F\n0xCCA6\t0x8FF2\n0xCCA7\t0x5048\n0xCCA8\t0x61A9\n0xCCA9\t0x63ED\n0xCCAA\t0x64CA\n0xCCAB\t0x683C\n0xCCAC\t0x6A84\n0xCCAD\t0x6FC0\n0xCCAE\t0x8188\n0xCCAF\t0x89A1\n0xCCB0\t0x9694\n0xCCB1\t0x5805\n0xCCB2\t0x727D\n0xCCB3\t0x72AC\n0xCCB4\t0x7504\n0xCCB5\t0x7D79\n0xCCB6\t0x7E6D\n0xCCB7\t0x80A9\n0xCCB8\t0x898B\n0xCCB9\t0x8B74\n0xCCBA\t0x9063\n0xCCBB\t0x9D51\n0xCCBC\t0x6289\n0xCCBD\t0x6C7A\n0xCCBE\t0x6F54\n0xCCBF\t0x7D50\n0xCCC0\t0x7F3A\n0xCCC1\t0x8A23\n0xCCC2\t0x517C\n0xCCC3\t0x614A\n0xCCC4\t0x7B9D\n0xCCC5\t0x8B19\n0xCCC6\t0x9257\n0xCCC7\t0x938C\n0xCCC8\t0x4EAC\n0xCCC9\t0x4FD3\n0xCCCA\t0x501E\n0xCCCB\t0x50BE\n0xCCCC\t0x5106\n0xCCCD\t0x52C1\n0xCCCE\t0x52CD\n0xCCCF\t0x537F\n0xCCD0\t0x5770\n0xCCD1\t0x5883\n0xCCD2\t0x5E9A\n0xCCD3\t0x5F91\n0xCCD4\t0x6176\n0xCCD5\t0x61AC\n0xCCD6\t0x64CE\n0xCCD7\t0x656C\n0xCCD8\t0x666F\n0xCCD9\t0x66BB\n0xCCDA\t0x66F4\n0xCCDB\t0x6897\n0xCCDC\t0x6D87\n0xCCDD\t0x7085\n0xCCDE\t0x70F1\n0xCCDF\t0x749F\n0xCCE0\t0x74A5\n0xCCE1\t0x74CA\n0xCCE2\t0x75D9\n0xCCE3\t0x786C\n0xCCE4\t0x78EC\n0xCCE5\t0x7ADF\n0xCCE6\t0x7AF6\n0xCCE7\t0x7D45\n0xCCE8\t0x7D93\n0xCCE9\t0x8015\n0xCCEA\t0x803F\n0xCCEB\t0x811B\n0xCCEC\t0x8396\n0xCCED\t0x8B66\n0xCCEE\t0x8F15\n0xCCEF\t0x9015\n0xCCF0\t0x93E1\n0xCCF1\t0x9803\n0xCCF2\t0x9838\n0xCCF3\t0x9A5A\n0xCCF4\t0x9BE8\n0xCCF5\t0x4FC2\n0xCCF6\t0x5553\n0xCCF7\t0x583A\n0xCCF8\t0x5951\n0xCCF9\t0x5B63\n0xCCFA\t0x5C46\n0xCCFB\t0x60B8\n0xCCFC\t0x6212\n0xCCFD\t0x6842\n0xCCFE\t0x68B0\n0xCDA1\t0x68E8\n0xCDA2\t0x6EAA\n0xCDA3\t0x754C\n0xCDA4\t0x7678\n0xCDA5\t0x78CE\n0xCDA6\t0x7A3D\n0xCDA7\t0x7CFB\n0xCDA8\t0x7E6B\n0xCDA9\t0x7E7C\n0xCDAA\t0x8A08\n0xCDAB\t0x8AA1\n0xCDAC\t0x8C3F\n0xCDAD\t0x968E\n0xCDAE\t0x9DC4\n0xCDAF\t0x53E4\n0xCDB0\t0x53E9\n0xCDB1\t0x544A\n0xCDB2\t0x5471\n0xCDB3\t0x56FA\n0xCDB4\t0x59D1\n0xCDB5\t0x5B64\n0xCDB6\t0x5C3B\n0xCDB7\t0x5EAB\n0xCDB8\t0x62F7\n0xCDB9\t0x6537\n0xCDBA\t0x6545\n0xCDBB\t0x6572\n0xCDBC\t0x66A0\n0xCDBD\t0x67AF\n0xCDBE\t0x69C1\n0xCDBF\t0x6CBD\n0xCDC0\t0x75FC\n0xCDC1\t0x7690\n0xCDC2\t0x777E\n0xCDC3\t0x7A3F\n0xCDC4\t0x7F94\n0xCDC5\t0x8003\n0xCDC6\t0x80A1\n0xCDC7\t0x818F\n0xCDC8\t0x82E6\n0xCDC9\t0x82FD\n0xCDCA\t0x83F0\n0xCDCB\t0x85C1\n0xCDCC\t0x8831\n0xCDCD\t0x88B4\n0xCDCE\t0x8AA5\n0xCDCF\t0xF903\n0xCDD0\t0x8F9C\n0xCDD1\t0x932E\n0xCDD2\t0x96C7\n0xCDD3\t0x9867\n0xCDD4\t0x9AD8\n0xCDD5\t0x9F13\n0xCDD6\t0x54ED\n0xCDD7\t0x659B\n0xCDD8\t0x66F2\n0xCDD9\t0x688F\n0xCDDA\t0x7A40\n0xCDDB\t0x8C37\n0xCDDC\t0x9D60\n0xCDDD\t0x56F0\n0xCDDE\t0x5764\n0xCDDF\t0x5D11\n0xCDE0\t0x6606\n0xCDE1\t0x68B1\n0xCDE2\t0x68CD\n0xCDE3\t0x6EFE\n0xCDE4\t0x7428\n0xCDE5\t0x889E\n0xCDE6\t0x9BE4\n0xCDE7\t0x6C68\n0xCDE8\t0xF904\n0xCDE9\t0x9AA8\n0xCDEA\t0x4F9B\n0xCDEB\t0x516C\n0xCDEC\t0x5171\n0xCDED\t0x529F\n0xCDEE\t0x5B54\n0xCDEF\t0x5DE5\n0xCDF0\t0x6050\n0xCDF1\t0x606D\n0xCDF2\t0x62F1\n0xCDF3\t0x63A7\n0xCDF4\t0x653B\n0xCDF5\t0x73D9\n0xCDF6\t0x7A7A\n0xCDF7\t0x86A3\n0xCDF8\t0x8CA2\n0xCDF9\t0x978F\n0xCDFA\t0x4E32\n0xCDFB\t0x5BE1\n0xCDFC\t0x6208\n0xCDFD\t0x679C\n0xCDFE\t0x74DC\n0xCEA1\t0x79D1\n0xCEA2\t0x83D3\n0xCEA3\t0x8A87\n0xCEA4\t0x8AB2\n0xCEA5\t0x8DE8\n0xCEA6\t0x904E\n0xCEA7\t0x934B\n0xCEA8\t0x9846\n0xCEA9\t0x5ED3\n0xCEAA\t0x69E8\n0xCEAB\t0x85FF\n0xCEAC\t0x90ED\n0xCEAD\t0xF905\n0xCEAE\t0x51A0\n0xCEAF\t0x5B98\n0xCEB0\t0x5BEC\n0xCEB1\t0x6163\n0xCEB2\t0x68FA\n0xCEB3\t0x6B3E\n0xCEB4\t0x704C\n0xCEB5\t0x742F\n0xCEB6\t0x74D8\n0xCEB7\t0x7BA1\n0xCEB8\t0x7F50\n0xCEB9\t0x83C5\n0xCEBA\t0x89C0\n0xCEBB\t0x8CAB\n0xCEBC\t0x95DC\n0xCEBD\t0x9928\n0xCEBE\t0x522E\n0xCEBF\t0x605D\n0xCEC0\t0x62EC\n0xCEC1\t0x9002\n0xCEC2\t0x4F8A\n0xCEC3\t0x5149\n0xCEC4\t0x5321\n0xCEC5\t0x58D9\n0xCEC6\t0x5EE3\n0xCEC7\t0x66E0\n0xCEC8\t0x6D38\n0xCEC9\t0x709A\n0xCECA\t0x72C2\n0xCECB\t0x73D6\n0xCECC\t0x7B50\n0xCECD\t0x80F1\n0xCECE\t0x945B\n0xCECF\t0x5366\n0xCED0\t0x639B\n0xCED1\t0x7F6B\n0xCED2\t0x4E56\n0xCED3\t0x5080\n0xCED4\t0x584A\n0xCED5\t0x58DE\n0xCED6\t0x602A\n0xCED7\t0x6127\n0xCED8\t0x62D0\n0xCED9\t0x69D0\n0xCEDA\t0x9B41\n0xCEDB\t0x5B8F\n0xCEDC\t0x7D18\n0xCEDD\t0x80B1\n0xCEDE\t0x8F5F\n0xCEDF\t0x4EA4\n0xCEE0\t0x50D1\n0xCEE1\t0x54AC\n0xCEE2\t0x55AC\n0xCEE3\t0x5B0C\n0xCEE4\t0x5DA0\n0xCEE5\t0x5DE7\n0xCEE6\t0x652A\n0xCEE7\t0x654E\n0xCEE8\t0x6821\n0xCEE9\t0x6A4B\n0xCEEA\t0x72E1\n0xCEEB\t0x768E\n0xCEEC\t0x77EF\n0xCEED\t0x7D5E\n0xCEEE\t0x7FF9\n0xCEEF\t0x81A0\n0xCEF0\t0x854E\n0xCEF1\t0x86DF\n0xCEF2\t0x8F03\n0xCEF3\t0x8F4E\n0xCEF4\t0x90CA\n0xCEF5\t0x9903\n0xCEF6\t0x9A55\n0xCEF7\t0x9BAB\n0xCEF8\t0x4E18\n0xCEF9\t0x4E45\n0xCEFA\t0x4E5D\n0xCEFB\t0x4EC7\n0xCEFC\t0x4FF1\n0xCEFD\t0x5177\n0xCEFE\t0x52FE\n0xCFA1\t0x5340\n0xCFA2\t0x53E3\n0xCFA3\t0x53E5\n0xCFA4\t0x548E\n0xCFA5\t0x5614\n0xCFA6\t0x5775\n0xCFA7\t0x57A2\n0xCFA8\t0x5BC7\n0xCFA9\t0x5D87\n0xCFAA\t0x5ED0\n0xCFAB\t0x61FC\n0xCFAC\t0x62D8\n0xCFAD\t0x6551\n0xCFAE\t0x67B8\n0xCFAF\t0x67E9\n0xCFB0\t0x69CB\n0xCFB1\t0x6B50\n0xCFB2\t0x6BC6\n0xCFB3\t0x6BEC\n0xCFB4\t0x6C42\n0xCFB5\t0x6E9D\n0xCFB6\t0x7078\n0xCFB7\t0x72D7\n0xCFB8\t0x7396\n0xCFB9\t0x7403\n0xCFBA\t0x77BF\n0xCFBB\t0x77E9\n0xCFBC\t0x7A76\n0xCFBD\t0x7D7F\n0xCFBE\t0x8009\n0xCFBF\t0x81FC\n0xCFC0\t0x8205\n0xCFC1\t0x820A\n0xCFC2\t0x82DF\n0xCFC3\t0x8862\n0xCFC4\t0x8B33\n0xCFC5\t0x8CFC\n0xCFC6\t0x8EC0\n0xCFC7\t0x9011\n0xCFC8\t0x90B1\n0xCFC9\t0x9264\n0xCFCA\t0x92B6\n0xCFCB\t0x99D2\n0xCFCC\t0x9A45\n0xCFCD\t0x9CE9\n0xCFCE\t0x9DD7\n0xCFCF\t0x9F9C\n0xCFD0\t0x570B\n0xCFD1\t0x5C40\n0xCFD2\t0x83CA\n0xCFD3\t0x97A0\n0xCFD4\t0x97AB\n0xCFD5\t0x9EB4\n0xCFD6\t0x541B\n0xCFD7\t0x7A98\n0xCFD8\t0x7FA4\n0xCFD9\t0x88D9\n0xCFDA\t0x8ECD\n0xCFDB\t0x90E1\n0xCFDC\t0x5800\n0xCFDD\t0x5C48\n0xCFDE\t0x6398\n0xCFDF\t0x7A9F\n0xCFE0\t0x5BAE\n0xCFE1\t0x5F13\n0xCFE2\t0x7A79\n0xCFE3\t0x7AAE\n0xCFE4\t0x828E\n0xCFE5\t0x8EAC\n0xCFE6\t0x5026\n0xCFE7\t0x5238\n0xCFE8\t0x52F8\n0xCFE9\t0x5377\n0xCFEA\t0x5708\n0xCFEB\t0x62F3\n0xCFEC\t0x6372\n0xCFED\t0x6B0A\n0xCFEE\t0x6DC3\n0xCFEF\t0x7737\n0xCFF0\t0x53A5\n0xCFF1\t0x7357\n0xCFF2\t0x8568\n0xCFF3\t0x8E76\n0xCFF4\t0x95D5\n0xCFF5\t0x673A\n0xCFF6\t0x6AC3\n0xCFF7\t0x6F70\n0xCFF8\t0x8A6D\n0xCFF9\t0x8ECC\n0xCFFA\t0x994B\n0xCFFB\t0xF906\n0xCFFC\t0x6677\n0xCFFD\t0x6B78\n0xCFFE\t0x8CB4\n0xD0A1\t0x9B3C\n0xD0A2\t0xF907\n0xD0A3\t0x53EB\n0xD0A4\t0x572D\n0xD0A5\t0x594E\n0xD0A6\t0x63C6\n0xD0A7\t0x69FB\n0xD0A8\t0x73EA\n0xD0A9\t0x7845\n0xD0AA\t0x7ABA\n0xD0AB\t0x7AC5\n0xD0AC\t0x7CFE\n0xD0AD\t0x8475\n0xD0AE\t0x898F\n0xD0AF\t0x8D73\n0xD0B0\t0x9035\n0xD0B1\t0x95A8\n0xD0B2\t0x52FB\n0xD0B3\t0x5747\n0xD0B4\t0x7547\n0xD0B5\t0x7B60\n0xD0B6\t0x83CC\n0xD0B7\t0x921E\n0xD0B8\t0xF908\n0xD0B9\t0x6A58\n0xD0BA\t0x514B\n0xD0BB\t0x524B\n0xD0BC\t0x5287\n0xD0BD\t0x621F\n0xD0BE\t0x68D8\n0xD0BF\t0x6975\n0xD0C0\t0x9699\n0xD0C1\t0x50C5\n0xD0C2\t0x52A4\n0xD0C3\t0x52E4\n0xD0C4\t0x61C3\n0xD0C5\t0x65A4\n0xD0C6\t0x6839\n0xD0C7\t0x69FF\n0xD0C8\t0x747E\n0xD0C9\t0x7B4B\n0xD0CA\t0x82B9\n0xD0CB\t0x83EB\n0xD0CC\t0x89B2\n0xD0CD\t0x8B39\n0xD0CE\t0x8FD1\n0xD0CF\t0x9949\n0xD0D0\t0xF909\n0xD0D1\t0x4ECA\n0xD0D2\t0x5997\n0xD0D3\t0x64D2\n0xD0D4\t0x6611\n0xD0D5\t0x6A8E\n0xD0D6\t0x7434\n0xD0D7\t0x7981\n0xD0D8\t0x79BD\n0xD0D9\t0x82A9\n0xD0DA\t0x887E\n0xD0DB\t0x887F\n0xD0DC\t0x895F\n0xD0DD\t0xF90A\n0xD0DE\t0x9326\n0xD0DF\t0x4F0B\n0xD0E0\t0x53CA\n0xD0E1\t0x6025\n0xD0E2\t0x6271\n0xD0E3\t0x6C72\n0xD0E4\t0x7D1A\n0xD0E5\t0x7D66\n0xD0E6\t0x4E98\n0xD0E7\t0x5162\n0xD0E8\t0x77DC\n0xD0E9\t0x80AF\n0xD0EA\t0x4F01\n0xD0EB\t0x4F0E\n0xD0EC\t0x5176\n0xD0ED\t0x5180\n0xD0EE\t0x55DC\n0xD0EF\t0x5668\n0xD0F0\t0x573B\n0xD0F1\t0x57FA\n0xD0F2\t0x57FC\n0xD0F3\t0x5914\n0xD0F4\t0x5947\n0xD0F5\t0x5993\n0xD0F6\t0x5BC4\n0xD0F7\t0x5C90\n0xD0F8\t0x5D0E\n0xD0F9\t0x5DF1\n0xD0FA\t0x5E7E\n0xD0FB\t0x5FCC\n0xD0FC\t0x6280\n0xD0FD\t0x65D7\n0xD0FE\t0x65E3\n0xD1A1\t0x671E\n0xD1A2\t0x671F\n0xD1A3\t0x675E\n0xD1A4\t0x68CB\n0xD1A5\t0x68C4\n0xD1A6\t0x6A5F\n0xD1A7\t0x6B3A\n0xD1A8\t0x6C23\n0xD1A9\t0x6C7D\n0xD1AA\t0x6C82\n0xD1AB\t0x6DC7\n0xD1AC\t0x7398\n0xD1AD\t0x7426\n0xD1AE\t0x742A\n0xD1AF\t0x7482\n0xD1B0\t0x74A3\n0xD1B1\t0x7578\n0xD1B2\t0x757F\n0xD1B3\t0x7881\n0xD1B4\t0x78EF\n0xD1B5\t0x7941\n0xD1B6\t0x7947\n0xD1B7\t0x7948\n0xD1B8\t0x797A\n0xD1B9\t0x7B95\n0xD1BA\t0x7D00\n0xD1BB\t0x7DBA\n0xD1BC\t0x7F88\n0xD1BD\t0x8006\n0xD1BE\t0x802D\n0xD1BF\t0x808C\n0xD1C0\t0x8A18\n0xD1C1\t0x8B4F\n0xD1C2\t0x8C48\n0xD1C3\t0x8D77\n0xD1C4\t0x9321\n0xD1C5\t0x9324\n0xD1C6\t0x98E2\n0xD1C7\t0x9951\n0xD1C8\t0x9A0E\n0xD1C9\t0x9A0F\n0xD1CA\t0x9A65\n0xD1CB\t0x9E92\n0xD1CC\t0x7DCA\n0xD1CD\t0x4F76\n0xD1CE\t0x5409\n0xD1CF\t0x62EE\n0xD1D0\t0x6854\n0xD1D1\t0x91D1\n0xD1D2\t0x55AB\n0xD1D3\t0x513A\n0xD1D4\t0xF90B\n0xD1D5\t0xF90C\n0xD1D6\t0x5A1C\n0xD1D7\t0x61E6\n0xD1D8\t0xF90D\n0xD1D9\t0x62CF\n0xD1DA\t0x62FF\n0xD1DB\t0xF90E\n0xD1DC\t0xF90F\n0xD1DD\t0xF910\n0xD1DE\t0xF911\n0xD1DF\t0xF912\n0xD1E0\t0xF913\n0xD1E1\t0x90A3\n0xD1E2\t0xF914\n0xD1E3\t0xF915\n0xD1E4\t0xF916\n0xD1E5\t0xF917\n0xD1E6\t0xF918\n0xD1E7\t0x8AFE\n0xD1E8\t0xF919\n0xD1E9\t0xF91A\n0xD1EA\t0xF91B\n0xD1EB\t0xF91C\n0xD1EC\t0x6696\n0xD1ED\t0xF91D\n0xD1EE\t0x7156\n0xD1EF\t0xF91E\n0xD1F0\t0xF91F\n0xD1F1\t0x96E3\n0xD1F2\t0xF920\n0xD1F3\t0x634F\n0xD1F4\t0x637A\n0xD1F5\t0x5357\n0xD1F6\t0xF921\n0xD1F7\t0x678F\n0xD1F8\t0x6960\n0xD1F9\t0x6E73\n0xD1FA\t0xF922\n0xD1FB\t0x7537\n0xD1FC\t0xF923\n0xD1FD\t0xF924\n0xD1FE\t0xF925\n0xD2A1\t0x7D0D\n0xD2A2\t0xF926\n0xD2A3\t0xF927\n0xD2A4\t0x8872\n0xD2A5\t0x56CA\n0xD2A6\t0x5A18\n0xD2A7\t0xF928\n0xD2A8\t0xF929\n0xD2A9\t0xF92A\n0xD2AA\t0xF92B\n0xD2AB\t0xF92C\n0xD2AC\t0x4E43\n0xD2AD\t0xF92D\n0xD2AE\t0x5167\n0xD2AF\t0x5948\n0xD2B0\t0x67F0\n0xD2B1\t0x8010\n0xD2B2\t0xF92E\n0xD2B3\t0x5973\n0xD2B4\t0x5E74\n0xD2B5\t0x649A\n0xD2B6\t0x79CA\n0xD2B7\t0x5FF5\n0xD2B8\t0x606C\n0xD2B9\t0x62C8\n0xD2BA\t0x637B\n0xD2BB\t0x5BE7\n0xD2BC\t0x5BD7\n0xD2BD\t0x52AA\n0xD2BE\t0xF92F\n0xD2BF\t0x5974\n0xD2C0\t0x5F29\n0xD2C1\t0x6012\n0xD2C2\t0xF930\n0xD2C3\t0xF931\n0xD2C4\t0xF932\n0xD2C5\t0x7459\n0xD2C6\t0xF933\n0xD2C7\t0xF934\n0xD2C8\t0xF935\n0xD2C9\t0xF936\n0xD2CA\t0xF937\n0xD2CB\t0xF938\n0xD2CC\t0x99D1\n0xD2CD\t0xF939\n0xD2CE\t0xF93A\n0xD2CF\t0xF93B\n0xD2D0\t0xF93C\n0xD2D1\t0xF93D\n0xD2D2\t0xF93E\n0xD2D3\t0xF93F\n0xD2D4\t0xF940\n0xD2D5\t0xF941\n0xD2D6\t0xF942\n0xD2D7\t0xF943\n0xD2D8\t0x6FC3\n0xD2D9\t0xF944\n0xD2DA\t0xF945\n0xD2DB\t0x81BF\n0xD2DC\t0x8FB2\n0xD2DD\t0x60F1\n0xD2DE\t0xF946\n0xD2DF\t0xF947\n0xD2E0\t0x8166\n0xD2E1\t0xF948\n0xD2E2\t0xF949\n0xD2E3\t0x5C3F\n0xD2E4\t0xF94A\n0xD2E5\t0xF94B\n0xD2E6\t0xF94C\n0xD2E7\t0xF94D\n0xD2E8\t0xF94E\n0xD2E9\t0xF94F\n0xD2EA\t0xF950\n0xD2EB\t0xF951\n0xD2EC\t0x5AE9\n0xD2ED\t0x8A25\n0xD2EE\t0x677B\n0xD2EF\t0x7D10\n0xD2F0\t0xF952\n0xD2F1\t0xF953\n0xD2F2\t0xF954\n0xD2F3\t0xF955\n0xD2F4\t0xF956\n0xD2F5\t0xF957\n0xD2F6\t0x80FD\n0xD2F7\t0xF958\n0xD2F8\t0xF959\n0xD2F9\t0x5C3C\n0xD2FA\t0x6CE5\n0xD2FB\t0x533F\n0xD2FC\t0x6EBA\n0xD2FD\t0x591A\n0xD2FE\t0x8336\n0xD3A1\t0x4E39\n0xD3A2\t0x4EB6\n0xD3A3\t0x4F46\n0xD3A4\t0x55AE\n0xD3A5\t0x5718\n0xD3A6\t0x58C7\n0xD3A7\t0x5F56\n0xD3A8\t0x65B7\n0xD3A9\t0x65E6\n0xD3AA\t0x6A80\n0xD3AB\t0x6BB5\n0xD3AC\t0x6E4D\n0xD3AD\t0x77ED\n0xD3AE\t0x7AEF\n0xD3AF\t0x7C1E\n0xD3B0\t0x7DDE\n0xD3B1\t0x86CB\n0xD3B2\t0x8892\n0xD3B3\t0x9132\n0xD3B4\t0x935B\n0xD3B5\t0x64BB\n0xD3B6\t0x6FBE\n0xD3B7\t0x737A\n0xD3B8\t0x75B8\n0xD3B9\t0x9054\n0xD3BA\t0x5556\n0xD3BB\t0x574D\n0xD3BC\t0x61BA\n0xD3BD\t0x64D4\n0xD3BE\t0x66C7\n0xD3BF\t0x6DE1\n0xD3C0\t0x6E5B\n0xD3C1\t0x6F6D\n0xD3C2\t0x6FB9\n0xD3C3\t0x75F0\n0xD3C4\t0x8043\n0xD3C5\t0x81BD\n0xD3C6\t0x8541\n0xD3C7\t0x8983\n0xD3C8\t0x8AC7\n0xD3C9\t0x8B5A\n0xD3CA\t0x931F\n0xD3CB\t0x6C93\n0xD3CC\t0x7553\n0xD3CD\t0x7B54\n0xD3CE\t0x8E0F\n0xD3CF\t0x905D\n0xD3D0\t0x5510\n0xD3D1\t0x5802\n0xD3D2\t0x5858\n0xD3D3\t0x5E62\n0xD3D4\t0x6207\n0xD3D5\t0x649E\n0xD3D6\t0x68E0\n0xD3D7\t0x7576\n0xD3D8\t0x7CD6\n0xD3D9\t0x87B3\n0xD3DA\t0x9EE8\n0xD3DB\t0x4EE3\n0xD3DC\t0x5788\n0xD3DD\t0x576E\n0xD3DE\t0x5927\n0xD3DF\t0x5C0D\n0xD3E0\t0x5CB1\n0xD3E1\t0x5E36\n0xD3E2\t0x5F85\n0xD3E3\t0x6234\n0xD3E4\t0x64E1\n0xD3E5\t0x73B3\n0xD3E6\t0x81FA\n0xD3E7\t0x888B\n0xD3E8\t0x8CB8\n0xD3E9\t0x968A\n0xD3EA\t0x9EDB\n0xD3EB\t0x5B85\n0xD3EC\t0x5FB7\n0xD3ED\t0x60B3\n0xD3EE\t0x5012\n0xD3EF\t0x5200\n0xD3F0\t0x5230\n0xD3F1\t0x5716\n0xD3F2\t0x5835\n0xD3F3\t0x5857\n0xD3F4\t0x5C0E\n0xD3F5\t0x5C60\n0xD3F6\t0x5CF6\n0xD3F7\t0x5D8B\n0xD3F8\t0x5EA6\n0xD3F9\t0x5F92\n0xD3FA\t0x60BC\n0xD3FB\t0x6311\n0xD3FC\t0x6389\n0xD3FD\t0x6417\n0xD3FE\t0x6843\n0xD4A1\t0x68F9\n0xD4A2\t0x6AC2\n0xD4A3\t0x6DD8\n0xD4A4\t0x6E21\n0xD4A5\t0x6ED4\n0xD4A6\t0x6FE4\n0xD4A7\t0x71FE\n0xD4A8\t0x76DC\n0xD4A9\t0x7779\n0xD4AA\t0x79B1\n0xD4AB\t0x7A3B\n0xD4AC\t0x8404\n0xD4AD\t0x89A9\n0xD4AE\t0x8CED\n0xD4AF\t0x8DF3\n0xD4B0\t0x8E48\n0xD4B1\t0x9003\n0xD4B2\t0x9014\n0xD4B3\t0x9053\n0xD4B4\t0x90FD\n0xD4B5\t0x934D\n0xD4B6\t0x9676\n0xD4B7\t0x97DC\n0xD4B8\t0x6BD2\n0xD4B9\t0x7006\n0xD4BA\t0x7258\n0xD4BB\t0x72A2\n0xD4BC\t0x7368\n0xD4BD\t0x7763\n0xD4BE\t0x79BF\n0xD4BF\t0x7BE4\n0xD4C0\t0x7E9B\n0xD4C1\t0x8B80\n0xD4C2\t0x58A9\n0xD4C3\t0x60C7\n0xD4C4\t0x6566\n0xD4C5\t0x65FD\n0xD4C6\t0x66BE\n0xD4C7\t0x6C8C\n0xD4C8\t0x711E\n0xD4C9\t0x71C9\n0xD4CA\t0x8C5A\n0xD4CB\t0x9813\n0xD4CC\t0x4E6D\n0xD4CD\t0x7A81\n0xD4CE\t0x4EDD\n0xD4CF\t0x51AC\n0xD4D0\t0x51CD\n0xD4D1\t0x52D5\n0xD4D2\t0x540C\n0xD4D3\t0x61A7\n0xD4D4\t0x6771\n0xD4D5\t0x6850\n0xD4D6\t0x68DF\n0xD4D7\t0x6D1E\n0xD4D8\t0x6F7C\n0xD4D9\t0x75BC\n0xD4DA\t0x77B3\n0xD4DB\t0x7AE5\n0xD4DC\t0x80F4\n0xD4DD\t0x8463\n0xD4DE\t0x9285\n0xD4DF\t0x515C\n0xD4E0\t0x6597\n0xD4E1\t0x675C\n0xD4E2\t0x6793\n0xD4E3\t0x75D8\n0xD4E4\t0x7AC7\n0xD4E5\t0x8373\n0xD4E6\t0xF95A\n0xD4E7\t0x8C46\n0xD4E8\t0x9017\n0xD4E9\t0x982D\n0xD4EA\t0x5C6F\n0xD4EB\t0x81C0\n0xD4EC\t0x829A\n0xD4ED\t0x9041\n0xD4EE\t0x906F\n0xD4EF\t0x920D\n0xD4F0\t0x5F97\n0xD4F1\t0x5D9D\n0xD4F2\t0x6A59\n0xD4F3\t0x71C8\n0xD4F4\t0x767B\n0xD4F5\t0x7B49\n0xD4F6\t0x85E4\n0xD4F7\t0x8B04\n0xD4F8\t0x9127\n0xD4F9\t0x9A30\n0xD4FA\t0x5587\n0xD4FB\t0x61F6\n0xD4FC\t0xF95B\n0xD4FD\t0x7669\n0xD4FE\t0x7F85\n0xD5A1\t0x863F\n0xD5A2\t0x87BA\n0xD5A3\t0x88F8\n0xD5A4\t0x908F\n0xD5A5\t0xF95C\n0xD5A6\t0x6D1B\n0xD5A7\t0x70D9\n0xD5A8\t0x73DE\n0xD5A9\t0x7D61\n0xD5AA\t0x843D\n0xD5AB\t0xF95D\n0xD5AC\t0x916A\n0xD5AD\t0x99F1\n0xD5AE\t0xF95E\n0xD5AF\t0x4E82\n0xD5B0\t0x5375\n0xD5B1\t0x6B04\n0xD5B2\t0x6B12\n0xD5B3\t0x703E\n0xD5B4\t0x721B\n0xD5B5\t0x862D\n0xD5B6\t0x9E1E\n0xD5B7\t0x524C\n0xD5B8\t0x8FA3\n0xD5B9\t0x5D50\n0xD5BA\t0x64E5\n0xD5BB\t0x652C\n0xD5BC\t0x6B16\n0xD5BD\t0x6FEB\n0xD5BE\t0x7C43\n0xD5BF\t0x7E9C\n0xD5C0\t0x85CD\n0xD5C1\t0x8964\n0xD5C2\t0x89BD\n0xD5C3\t0x62C9\n0xD5C4\t0x81D8\n0xD5C5\t0x881F\n0xD5C6\t0x5ECA\n0xD5C7\t0x6717\n0xD5C8\t0x6D6A\n0xD5C9\t0x72FC\n0xD5CA\t0x7405\n0xD5CB\t0x746F\n0xD5CC\t0x8782\n0xD5CD\t0x90DE\n0xD5CE\t0x4F86\n0xD5CF\t0x5D0D\n0xD5D0\t0x5FA0\n0xD5D1\t0x840A\n0xD5D2\t0x51B7\n0xD5D3\t0x63A0\n0xD5D4\t0x7565\n0xD5D5\t0x4EAE\n0xD5D6\t0x5006\n0xD5D7\t0x5169\n0xD5D8\t0x51C9\n0xD5D9\t0x6881\n0xD5DA\t0x6A11\n0xD5DB\t0x7CAE\n0xD5DC\t0x7CB1\n0xD5DD\t0x7CE7\n0xD5DE\t0x826F\n0xD5DF\t0x8AD2\n0xD5E0\t0x8F1B\n0xD5E1\t0x91CF\n0xD5E2\t0x4FB6\n0xD5E3\t0x5137\n0xD5E4\t0x52F5\n0xD5E5\t0x5442\n0xD5E6\t0x5EEC\n0xD5E7\t0x616E\n0xD5E8\t0x623E\n0xD5E9\t0x65C5\n0xD5EA\t0x6ADA\n0xD5EB\t0x6FFE\n0xD5EC\t0x792A\n0xD5ED\t0x85DC\n0xD5EE\t0x8823\n0xD5EF\t0x95AD\n0xD5F0\t0x9A62\n0xD5F1\t0x9A6A\n0xD5F2\t0x9E97\n0xD5F3\t0x9ECE\n0xD5F4\t0x529B\n0xD5F5\t0x66C6\n0xD5F6\t0x6B77\n0xD5F7\t0x701D\n0xD5F8\t0x792B\n0xD5F9\t0x8F62\n0xD5FA\t0x9742\n0xD5FB\t0x6190\n0xD5FC\t0x6200\n0xD5FD\t0x6523\n0xD5FE\t0x6F23\n0xD6A1\t0x7149\n0xD6A2\t0x7489\n0xD6A3\t0x7DF4\n0xD6A4\t0x806F\n0xD6A5\t0x84EE\n0xD6A6\t0x8F26\n0xD6A7\t0x9023\n0xD6A8\t0x934A\n0xD6A9\t0x51BD\n0xD6AA\t0x5217\n0xD6AB\t0x52A3\n0xD6AC\t0x6D0C\n0xD6AD\t0x70C8\n0xD6AE\t0x88C2\n0xD6AF\t0x5EC9\n0xD6B0\t0x6582\n0xD6B1\t0x6BAE\n0xD6B2\t0x6FC2\n0xD6B3\t0x7C3E\n0xD6B4\t0x7375\n0xD6B5\t0x4EE4\n0xD6B6\t0x4F36\n0xD6B7\t0x56F9\n0xD6B8\t0xF95F\n0xD6B9\t0x5CBA\n0xD6BA\t0x5DBA\n0xD6BB\t0x601C\n0xD6BC\t0x73B2\n0xD6BD\t0x7B2D\n0xD6BE\t0x7F9A\n0xD6BF\t0x7FCE\n0xD6C0\t0x8046\n0xD6C1\t0x901E\n0xD6C2\t0x9234\n0xD6C3\t0x96F6\n0xD6C4\t0x9748\n0xD6C5\t0x9818\n0xD6C6\t0x9F61\n0xD6C7\t0x4F8B\n0xD6C8\t0x6FA7\n0xD6C9\t0x79AE\n0xD6CA\t0x91B4\n0xD6CB\t0x96B7\n0xD6CC\t0x52DE\n0xD6CD\t0xF960\n0xD6CE\t0x6488\n0xD6CF\t0x64C4\n0xD6D0\t0x6AD3\n0xD6D1\t0x6F5E\n0xD6D2\t0x7018\n0xD6D3\t0x7210\n0xD6D4\t0x76E7\n0xD6D5\t0x8001\n0xD6D6\t0x8606\n0xD6D7\t0x865C\n0xD6D8\t0x8DEF\n0xD6D9\t0x8F05\n0xD6DA\t0x9732\n0xD6DB\t0x9B6F\n0xD6DC\t0x9DFA\n0xD6DD\t0x9E75\n0xD6DE\t0x788C\n0xD6DF\t0x797F\n0xD6E0\t0x7DA0\n0xD6E1\t0x83C9\n0xD6E2\t0x9304\n0xD6E3\t0x9E7F\n0xD6E4\t0x9E93\n0xD6E5\t0x8AD6\n0xD6E6\t0x58DF\n0xD6E7\t0x5F04\n0xD6E8\t0x6727\n0xD6E9\t0x7027\n0xD6EA\t0x74CF\n0xD6EB\t0x7C60\n0xD6EC\t0x807E\n0xD6ED\t0x5121\n0xD6EE\t0x7028\n0xD6EF\t0x7262\n0xD6F0\t0x78CA\n0xD6F1\t0x8CC2\n0xD6F2\t0x8CDA\n0xD6F3\t0x8CF4\n0xD6F4\t0x96F7\n0xD6F5\t0x4E86\n0xD6F6\t0x50DA\n0xD6F7\t0x5BEE\n0xD6F8\t0x5ED6\n0xD6F9\t0x6599\n0xD6FA\t0x71CE\n0xD6FB\t0x7642\n0xD6FC\t0x77AD\n0xD6FD\t0x804A\n0xD6FE\t0x84FC\n0xD7A1\t0x907C\n0xD7A2\t0x9B27\n0xD7A3\t0x9F8D\n0xD7A4\t0x58D8\n0xD7A5\t0x5A41\n0xD7A6\t0x5C62\n0xD7A7\t0x6A13\n0xD7A8\t0x6DDA\n0xD7A9\t0x6F0F\n0xD7AA\t0x763B\n0xD7AB\t0x7D2F\n0xD7AC\t0x7E37\n0xD7AD\t0x851E\n0xD7AE\t0x8938\n0xD7AF\t0x93E4\n0xD7B0\t0x964B\n0xD7B1\t0x5289\n0xD7B2\t0x65D2\n0xD7B3\t0x67F3\n0xD7B4\t0x69B4\n0xD7B5\t0x6D41\n0xD7B6\t0x6E9C\n0xD7B7\t0x700F\n0xD7B8\t0x7409\n0xD7B9\t0x7460\n0xD7BA\t0x7559\n0xD7BB\t0x7624\n0xD7BC\t0x786B\n0xD7BD\t0x8B2C\n0xD7BE\t0x985E\n0xD7BF\t0x516D\n0xD7C0\t0x622E\n0xD7C1\t0x9678\n0xD7C2\t0x4F96\n0xD7C3\t0x502B\n0xD7C4\t0x5D19\n0xD7C5\t0x6DEA\n0xD7C6\t0x7DB8\n0xD7C7\t0x8F2A\n0xD7C8\t0x5F8B\n0xD7C9\t0x6144\n0xD7CA\t0x6817\n0xD7CB\t0xF961\n0xD7CC\t0x9686\n0xD7CD\t0x52D2\n0xD7CE\t0x808B\n0xD7CF\t0x51DC\n0xD7D0\t0x51CC\n0xD7D1\t0x695E\n0xD7D2\t0x7A1C\n0xD7D3\t0x7DBE\n0xD7D4\t0x83F1\n0xD7D5\t0x9675\n0xD7D6\t0x4FDA\n0xD7D7\t0x5229\n0xD7D8\t0x5398\n0xD7D9\t0x540F\n0xD7DA\t0x550E\n0xD7DB\t0x5C65\n0xD7DC\t0x60A7\n0xD7DD\t0x674E\n0xD7DE\t0x68A8\n0xD7DF\t0x6D6C\n0xD7E0\t0x7281\n0xD7E1\t0x72F8\n0xD7E2\t0x7406\n0xD7E3\t0x7483\n0xD7E4\t0xF962\n0xD7E5\t0x75E2\n0xD7E6\t0x7C6C\n0xD7E7\t0x7F79\n0xD7E8\t0x7FB8\n0xD7E9\t0x8389\n0xD7EA\t0x88CF\n0xD7EB\t0x88E1\n0xD7EC\t0x91CC\n0xD7ED\t0x91D0\n0xD7EE\t0x96E2\n0xD7EF\t0x9BC9\n0xD7F0\t0x541D\n0xD7F1\t0x6F7E\n0xD7F2\t0x71D0\n0xD7F3\t0x7498\n0xD7F4\t0x85FA\n0xD7F5\t0x8EAA\n0xD7F6\t0x96A3\n0xD7F7\t0x9C57\n0xD7F8\t0x9E9F\n0xD7F9\t0x6797\n0xD7FA\t0x6DCB\n0xD7FB\t0x7433\n0xD7FC\t0x81E8\n0xD7FD\t0x9716\n0xD7FE\t0x782C\n0xD8A1\t0x7ACB\n0xD8A2\t0x7B20\n0xD8A3\t0x7C92\n0xD8A4\t0x6469\n0xD8A5\t0x746A\n0xD8A6\t0x75F2\n0xD8A7\t0x78BC\n0xD8A8\t0x78E8\n0xD8A9\t0x99AC\n0xD8AA\t0x9B54\n0xD8AB\t0x9EBB\n0xD8AC\t0x5BDE\n0xD8AD\t0x5E55\n0xD8AE\t0x6F20\n0xD8AF\t0x819C\n0xD8B0\t0x83AB\n0xD8B1\t0x9088\n0xD8B2\t0x4E07\n0xD8B3\t0x534D\n0xD8B4\t0x5A29\n0xD8B5\t0x5DD2\n0xD8B6\t0x5F4E\n0xD8B7\t0x6162\n0xD8B8\t0x633D\n0xD8B9\t0x6669\n0xD8BA\t0x66FC\n0xD8BB\t0x6EFF\n0xD8BC\t0x6F2B\n0xD8BD\t0x7063\n0xD8BE\t0x779E\n0xD8BF\t0x842C\n0xD8C0\t0x8513\n0xD8C1\t0x883B\n0xD8C2\t0x8F13\n0xD8C3\t0x9945\n0xD8C4\t0x9C3B\n0xD8C5\t0x551C\n0xD8C6\t0x62B9\n0xD8C7\t0x672B\n0xD8C8\t0x6CAB\n0xD8C9\t0x8309\n0xD8CA\t0x896A\n0xD8CB\t0x977A\n0xD8CC\t0x4EA1\n0xD8CD\t0x5984\n0xD8CE\t0x5FD8\n0xD8CF\t0x5FD9\n0xD8D0\t0x671B\n0xD8D1\t0x7DB2\n0xD8D2\t0x7F54\n0xD8D3\t0x8292\n0xD8D4\t0x832B\n0xD8D5\t0x83BD\n0xD8D6\t0x8F1E\n0xD8D7\t0x9099\n0xD8D8\t0x57CB\n0xD8D9\t0x59B9\n0xD8DA\t0x5A92\n0xD8DB\t0x5BD0\n0xD8DC\t0x6627\n0xD8DD\t0x679A\n0xD8DE\t0x6885\n0xD8DF\t0x6BCF\n0xD8E0\t0x7164\n0xD8E1\t0x7F75\n0xD8E2\t0x8CB7\n0xD8E3\t0x8CE3\n0xD8E4\t0x9081\n0xD8E5\t0x9B45\n0xD8E6\t0x8108\n0xD8E7\t0x8C8A\n0xD8E8\t0x964C\n0xD8E9\t0x9A40\n0xD8EA\t0x9EA5\n0xD8EB\t0x5B5F\n0xD8EC\t0x6C13\n0xD8ED\t0x731B\n0xD8EE\t0x76F2\n0xD8EF\t0x76DF\n0xD8F0\t0x840C\n0xD8F1\t0x51AA\n0xD8F2\t0x8993\n0xD8F3\t0x514D\n0xD8F4\t0x5195\n0xD8F5\t0x52C9\n0xD8F6\t0x68C9\n0xD8F7\t0x6C94\n0xD8F8\t0x7704\n0xD8F9\t0x7720\n0xD8FA\t0x7DBF\n0xD8FB\t0x7DEC\n0xD8FC\t0x9762\n0xD8FD\t0x9EB5\n0xD8FE\t0x6EC5\n0xD9A1\t0x8511\n0xD9A2\t0x51A5\n0xD9A3\t0x540D\n0xD9A4\t0x547D\n0xD9A5\t0x660E\n0xD9A6\t0x669D\n0xD9A7\t0x6927\n0xD9A8\t0x6E9F\n0xD9A9\t0x76BF\n0xD9AA\t0x7791\n0xD9AB\t0x8317\n0xD9AC\t0x84C2\n0xD9AD\t0x879F\n0xD9AE\t0x9169\n0xD9AF\t0x9298\n0xD9B0\t0x9CF4\n0xD9B1\t0x8882\n0xD9B2\t0x4FAE\n0xD9B3\t0x5192\n0xD9B4\t0x52DF\n0xD9B5\t0x59C6\n0xD9B6\t0x5E3D\n0xD9B7\t0x6155\n0xD9B8\t0x6478\n0xD9B9\t0x6479\n0xD9BA\t0x66AE\n0xD9BB\t0x67D0\n0xD9BC\t0x6A21\n0xD9BD\t0x6BCD\n0xD9BE\t0x6BDB\n0xD9BF\t0x725F\n0xD9C0\t0x7261\n0xD9C1\t0x7441\n0xD9C2\t0x7738\n0xD9C3\t0x77DB\n0xD9C4\t0x8017\n0xD9C5\t0x82BC\n0xD9C6\t0x8305\n0xD9C7\t0x8B00\n0xD9C8\t0x8B28\n0xD9C9\t0x8C8C\n0xD9CA\t0x6728\n0xD9CB\t0x6C90\n0xD9CC\t0x7267\n0xD9CD\t0x76EE\n0xD9CE\t0x7766\n0xD9CF\t0x7A46\n0xD9D0\t0x9DA9\n0xD9D1\t0x6B7F\n0xD9D2\t0x6C92\n0xD9D3\t0x5922\n0xD9D4\t0x6726\n0xD9D5\t0x8499\n0xD9D6\t0x536F\n0xD9D7\t0x5893\n0xD9D8\t0x5999\n0xD9D9\t0x5EDF\n0xD9DA\t0x63CF\n0xD9DB\t0x6634\n0xD9DC\t0x6773\n0xD9DD\t0x6E3A\n0xD9DE\t0x732B\n0xD9DF\t0x7AD7\n0xD9E0\t0x82D7\n0xD9E1\t0x9328\n0xD9E2\t0x52D9\n0xD9E3\t0x5DEB\n0xD9E4\t0x61AE\n0xD9E5\t0x61CB\n0xD9E6\t0x620A\n0xD9E7\t0x62C7\n0xD9E8\t0x64AB\n0xD9E9\t0x65E0\n0xD9EA\t0x6959\n0xD9EB\t0x6B66\n0xD9EC\t0x6BCB\n0xD9ED\t0x7121\n0xD9EE\t0x73F7\n0xD9EF\t0x755D\n0xD9F0\t0x7E46\n0xD9F1\t0x821E\n0xD9F2\t0x8302\n0xD9F3\t0x856A\n0xD9F4\t0x8AA3\n0xD9F5\t0x8CBF\n0xD9F6\t0x9727\n0xD9F7\t0x9D61\n0xD9F8\t0x58A8\n0xD9F9\t0x9ED8\n0xD9FA\t0x5011\n0xD9FB\t0x520E\n0xD9FC\t0x543B\n0xD9FD\t0x554F\n0xD9FE\t0x6587\n0xDAA1\t0x6C76\n0xDAA2\t0x7D0A\n0xDAA3\t0x7D0B\n0xDAA4\t0x805E\n0xDAA5\t0x868A\n0xDAA6\t0x9580\n0xDAA7\t0x96EF\n0xDAA8\t0x52FF\n0xDAA9\t0x6C95\n0xDAAA\t0x7269\n0xDAAB\t0x5473\n0xDAAC\t0x5A9A\n0xDAAD\t0x5C3E\n0xDAAE\t0x5D4B\n0xDAAF\t0x5F4C\n0xDAB0\t0x5FAE\n0xDAB1\t0x672A\n0xDAB2\t0x68B6\n0xDAB3\t0x6963\n0xDAB4\t0x6E3C\n0xDAB5\t0x6E44\n0xDAB6\t0x7709\n0xDAB7\t0x7C73\n0xDAB8\t0x7F8E\n0xDAB9\t0x8587\n0xDABA\t0x8B0E\n0xDABB\t0x8FF7\n0xDABC\t0x9761\n0xDABD\t0x9EF4\n0xDABE\t0x5CB7\n0xDABF\t0x60B6\n0xDAC0\t0x610D\n0xDAC1\t0x61AB\n0xDAC2\t0x654F\n0xDAC3\t0x65FB\n0xDAC4\t0x65FC\n0xDAC5\t0x6C11\n0xDAC6\t0x6CEF\n0xDAC7\t0x739F\n0xDAC8\t0x73C9\n0xDAC9\t0x7DE1\n0xDACA\t0x9594\n0xDACB\t0x5BC6\n0xDACC\t0x871C\n0xDACD\t0x8B10\n0xDACE\t0x525D\n0xDACF\t0x535A\n0xDAD0\t0x62CD\n0xDAD1\t0x640F\n0xDAD2\t0x64B2\n0xDAD3\t0x6734\n0xDAD4\t0x6A38\n0xDAD5\t0x6CCA\n0xDAD6\t0x73C0\n0xDAD7\t0x749E\n0xDAD8\t0x7B94\n0xDAD9\t0x7C95\n0xDADA\t0x7E1B\n0xDADB\t0x818A\n0xDADC\t0x8236\n0xDADD\t0x8584\n0xDADE\t0x8FEB\n0xDADF\t0x96F9\n0xDAE0\t0x99C1\n0xDAE1\t0x4F34\n0xDAE2\t0x534A\n0xDAE3\t0x53CD\n0xDAE4\t0x53DB\n0xDAE5\t0x62CC\n0xDAE6\t0x642C\n0xDAE7\t0x6500\n0xDAE8\t0x6591\n0xDAE9\t0x69C3\n0xDAEA\t0x6CEE\n0xDAEB\t0x6F58\n0xDAEC\t0x73ED\n0xDAED\t0x7554\n0xDAEE\t0x7622\n0xDAEF\t0x76E4\n0xDAF0\t0x76FC\n0xDAF1\t0x78D0\n0xDAF2\t0x78FB\n0xDAF3\t0x792C\n0xDAF4\t0x7D46\n0xDAF5\t0x822C\n0xDAF6\t0x87E0\n0xDAF7\t0x8FD4\n0xDAF8\t0x9812\n0xDAF9\t0x98EF\n0xDAFA\t0x52C3\n0xDAFB\t0x62D4\n0xDAFC\t0x64A5\n0xDAFD\t0x6E24\n0xDAFE\t0x6F51\n0xDBA1\t0x767C\n0xDBA2\t0x8DCB\n0xDBA3\t0x91B1\n0xDBA4\t0x9262\n0xDBA5\t0x9AEE\n0xDBA6\t0x9B43\n0xDBA7\t0x5023\n0xDBA8\t0x508D\n0xDBA9\t0x574A\n0xDBAA\t0x59A8\n0xDBAB\t0x5C28\n0xDBAC\t0x5E47\n0xDBAD\t0x5F77\n0xDBAE\t0x623F\n0xDBAF\t0x653E\n0xDBB0\t0x65B9\n0xDBB1\t0x65C1\n0xDBB2\t0x6609\n0xDBB3\t0x678B\n0xDBB4\t0x699C\n0xDBB5\t0x6EC2\n0xDBB6\t0x78C5\n0xDBB7\t0x7D21\n0xDBB8\t0x80AA\n0xDBB9\t0x8180\n0xDBBA\t0x822B\n0xDBBB\t0x82B3\n0xDBBC\t0x84A1\n0xDBBD\t0x868C\n0xDBBE\t0x8A2A\n0xDBBF\t0x8B17\n0xDBC0\t0x90A6\n0xDBC1\t0x9632\n0xDBC2\t0x9F90\n0xDBC3\t0x500D\n0xDBC4\t0x4FF3\n0xDBC5\t0xF963\n0xDBC6\t0x57F9\n0xDBC7\t0x5F98\n0xDBC8\t0x62DC\n0xDBC9\t0x6392\n0xDBCA\t0x676F\n0xDBCB\t0x6E43\n0xDBCC\t0x7119\n0xDBCD\t0x76C3\n0xDBCE\t0x80CC\n0xDBCF\t0x80DA\n0xDBD0\t0x88F4\n0xDBD1\t0x88F5\n0xDBD2\t0x8919\n0xDBD3\t0x8CE0\n0xDBD4\t0x8F29\n0xDBD5\t0x914D\n0xDBD6\t0x966A\n0xDBD7\t0x4F2F\n0xDBD8\t0x4F70\n0xDBD9\t0x5E1B\n0xDBDA\t0x67CF\n0xDBDB\t0x6822\n0xDBDC\t0x767D\n0xDBDD\t0x767E\n0xDBDE\t0x9B44\n0xDBDF\t0x5E61\n0xDBE0\t0x6A0A\n0xDBE1\t0x7169\n0xDBE2\t0x71D4\n0xDBE3\t0x756A\n0xDBE4\t0xF964\n0xDBE5\t0x7E41\n0xDBE6\t0x8543\n0xDBE7\t0x85E9\n0xDBE8\t0x98DC\n0xDBE9\t0x4F10\n0xDBEA\t0x7B4F\n0xDBEB\t0x7F70\n0xDBEC\t0x95A5\n0xDBED\t0x51E1\n0xDBEE\t0x5E06\n0xDBEF\t0x68B5\n0xDBF0\t0x6C3E\n0xDBF1\t0x6C4E\n0xDBF2\t0x6CDB\n0xDBF3\t0x72AF\n0xDBF4\t0x7BC4\n0xDBF5\t0x8303\n0xDBF6\t0x6CD5\n0xDBF7\t0x743A\n0xDBF8\t0x50FB\n0xDBF9\t0x5288\n0xDBFA\t0x58C1\n0xDBFB\t0x64D8\n0xDBFC\t0x6A97\n0xDBFD\t0x74A7\n0xDBFE\t0x7656\n0xDCA1\t0x78A7\n0xDCA2\t0x8617\n0xDCA3\t0x95E2\n0xDCA4\t0x9739\n0xDCA5\t0xF965\n0xDCA6\t0x535E\n0xDCA7\t0x5F01\n0xDCA8\t0x8B8A\n0xDCA9\t0x8FA8\n0xDCAA\t0x8FAF\n0xDCAB\t0x908A\n0xDCAC\t0x5225\n0xDCAD\t0x77A5\n0xDCAE\t0x9C49\n0xDCAF\t0x9F08\n0xDCB0\t0x4E19\n0xDCB1\t0x5002\n0xDCB2\t0x5175\n0xDCB3\t0x5C5B\n0xDCB4\t0x5E77\n0xDCB5\t0x661E\n0xDCB6\t0x663A\n0xDCB7\t0x67C4\n0xDCB8\t0x68C5\n0xDCB9\t0x70B3\n0xDCBA\t0x7501\n0xDCBB\t0x75C5\n0xDCBC\t0x79C9\n0xDCBD\t0x7ADD\n0xDCBE\t0x8F27\n0xDCBF\t0x9920\n0xDCC0\t0x9A08\n0xDCC1\t0x4FDD\n0xDCC2\t0x5821\n0xDCC3\t0x5831\n0xDCC4\t0x5BF6\n0xDCC5\t0x666E\n0xDCC6\t0x6B65\n0xDCC7\t0x6D11\n0xDCC8\t0x6E7A\n0xDCC9\t0x6F7D\n0xDCCA\t0x73E4\n0xDCCB\t0x752B\n0xDCCC\t0x83E9\n0xDCCD\t0x88DC\n0xDCCE\t0x8913\n0xDCCF\t0x8B5C\n0xDCD0\t0x8F14\n0xDCD1\t0x4F0F\n0xDCD2\t0x50D5\n0xDCD3\t0x5310\n0xDCD4\t0x535C\n0xDCD5\t0x5B93\n0xDCD6\t0x5FA9\n0xDCD7\t0x670D\n0xDCD8\t0x798F\n0xDCD9\t0x8179\n0xDCDA\t0x832F\n0xDCDB\t0x8514\n0xDCDC\t0x8907\n0xDCDD\t0x8986\n0xDCDE\t0x8F39\n0xDCDF\t0x8F3B\n0xDCE0\t0x99A5\n0xDCE1\t0x9C12\n0xDCE2\t0x672C\n0xDCE3\t0x4E76\n0xDCE4\t0x4FF8\n0xDCE5\t0x5949\n0xDCE6\t0x5C01\n0xDCE7\t0x5CEF\n0xDCE8\t0x5CF0\n0xDCE9\t0x6367\n0xDCEA\t0x68D2\n0xDCEB\t0x70FD\n0xDCEC\t0x71A2\n0xDCED\t0x742B\n0xDCEE\t0x7E2B\n0xDCEF\t0x84EC\n0xDCF0\t0x8702\n0xDCF1\t0x9022\n0xDCF2\t0x92D2\n0xDCF3\t0x9CF3\n0xDCF4\t0x4E0D\n0xDCF5\t0x4ED8\n0xDCF6\t0x4FEF\n0xDCF7\t0x5085\n0xDCF8\t0x5256\n0xDCF9\t0x526F\n0xDCFA\t0x5426\n0xDCFB\t0x5490\n0xDCFC\t0x57E0\n0xDCFD\t0x592B\n0xDCFE\t0x5A66\n0xDDA1\t0x5B5A\n0xDDA2\t0x5B75\n0xDDA3\t0x5BCC\n0xDDA4\t0x5E9C\n0xDDA5\t0xF966\n0xDDA6\t0x6276\n0xDDA7\t0x6577\n0xDDA8\t0x65A7\n0xDDA9\t0x6D6E\n0xDDAA\t0x6EA5\n0xDDAB\t0x7236\n0xDDAC\t0x7B26\n0xDDAD\t0x7C3F\n0xDDAE\t0x7F36\n0xDDAF\t0x8150\n0xDDB0\t0x8151\n0xDDB1\t0x819A\n0xDDB2\t0x8240\n0xDDB3\t0x8299\n0xDDB4\t0x83A9\n0xDDB5\t0x8A03\n0xDDB6\t0x8CA0\n0xDDB7\t0x8CE6\n0xDDB8\t0x8CFB\n0xDDB9\t0x8D74\n0xDDBA\t0x8DBA\n0xDDBB\t0x90E8\n0xDDBC\t0x91DC\n0xDDBD\t0x961C\n0xDDBE\t0x9644\n0xDDBF\t0x99D9\n0xDDC0\t0x9CE7\n0xDDC1\t0x5317\n0xDDC2\t0x5206\n0xDDC3\t0x5429\n0xDDC4\t0x5674\n0xDDC5\t0x58B3\n0xDDC6\t0x5954\n0xDDC7\t0x596E\n0xDDC8\t0x5FFF\n0xDDC9\t0x61A4\n0xDDCA\t0x626E\n0xDDCB\t0x6610\n0xDDCC\t0x6C7E\n0xDDCD\t0x711A\n0xDDCE\t0x76C6\n0xDDCF\t0x7C89\n0xDDD0\t0x7CDE\n0xDDD1\t0x7D1B\n0xDDD2\t0x82AC\n0xDDD3\t0x8CC1\n0xDDD4\t0x96F0\n0xDDD5\t0xF967\n0xDDD6\t0x4F5B\n0xDDD7\t0x5F17\n0xDDD8\t0x5F7F\n0xDDD9\t0x62C2\n0xDDDA\t0x5D29\n0xDDDB\t0x670B\n0xDDDC\t0x68DA\n0xDDDD\t0x787C\n0xDDDE\t0x7E43\n0xDDDF\t0x9D6C\n0xDDE0\t0x4E15\n0xDDE1\t0x5099\n0xDDE2\t0x5315\n0xDDE3\t0x532A\n0xDDE4\t0x5351\n0xDDE5\t0x5983\n0xDDE6\t0x5A62\n0xDDE7\t0x5E87\n0xDDE8\t0x60B2\n0xDDE9\t0x618A\n0xDDEA\t0x6249\n0xDDEB\t0x6279\n0xDDEC\t0x6590\n0xDDED\t0x6787\n0xDDEE\t0x69A7\n0xDDEF\t0x6BD4\n0xDDF0\t0x6BD6\n0xDDF1\t0x6BD7\n0xDDF2\t0x6BD8\n0xDDF3\t0x6CB8\n0xDDF4\t0xF968\n0xDDF5\t0x7435\n0xDDF6\t0x75FA\n0xDDF7\t0x7812\n0xDDF8\t0x7891\n0xDDF9\t0x79D5\n0xDDFA\t0x79D8\n0xDDFB\t0x7C83\n0xDDFC\t0x7DCB\n0xDDFD\t0x7FE1\n0xDDFE\t0x80A5\n0xDEA1\t0x813E\n0xDEA2\t0x81C2\n0xDEA3\t0x83F2\n0xDEA4\t0x871A\n0xDEA5\t0x88E8\n0xDEA6\t0x8AB9\n0xDEA7\t0x8B6C\n0xDEA8\t0x8CBB\n0xDEA9\t0x9119\n0xDEAA\t0x975E\n0xDEAB\t0x98DB\n0xDEAC\t0x9F3B\n0xDEAD\t0x56AC\n0xDEAE\t0x5B2A\n0xDEAF\t0x5F6C\n0xDEB0\t0x658C\n0xDEB1\t0x6AB3\n0xDEB2\t0x6BAF\n0xDEB3\t0x6D5C\n0xDEB4\t0x6FF1\n0xDEB5\t0x7015\n0xDEB6\t0x725D\n0xDEB7\t0x73AD\n0xDEB8\t0x8CA7\n0xDEB9\t0x8CD3\n0xDEBA\t0x983B\n0xDEBB\t0x6191\n0xDEBC\t0x6C37\n0xDEBD\t0x8058\n0xDEBE\t0x9A01\n0xDEBF\t0x4E4D\n0xDEC0\t0x4E8B\n0xDEC1\t0x4E9B\n0xDEC2\t0x4ED5\n0xDEC3\t0x4F3A\n0xDEC4\t0x4F3C\n0xDEC5\t0x4F7F\n0xDEC6\t0x4FDF\n0xDEC7\t0x50FF\n0xDEC8\t0x53F2\n0xDEC9\t0x53F8\n0xDECA\t0x5506\n0xDECB\t0x55E3\n0xDECC\t0x56DB\n0xDECD\t0x58EB\n0xDECE\t0x5962\n0xDECF\t0x5A11\n0xDED0\t0x5BEB\n0xDED1\t0x5BFA\n0xDED2\t0x5C04\n0xDED3\t0x5DF3\n0xDED4\t0x5E2B\n0xDED5\t0x5F99\n0xDED6\t0x601D\n0xDED7\t0x6368\n0xDED8\t0x659C\n0xDED9\t0x65AF\n0xDEDA\t0x67F6\n0xDEDB\t0x67FB\n0xDEDC\t0x68AD\n0xDEDD\t0x6B7B\n0xDEDE\t0x6C99\n0xDEDF\t0x6CD7\n0xDEE0\t0x6E23\n0xDEE1\t0x7009\n0xDEE2\t0x7345\n0xDEE3\t0x7802\n0xDEE4\t0x793E\n0xDEE5\t0x7940\n0xDEE6\t0x7960\n0xDEE7\t0x79C1\n0xDEE8\t0x7BE9\n0xDEE9\t0x7D17\n0xDEEA\t0x7D72\n0xDEEB\t0x8086\n0xDEEC\t0x820D\n0xDEED\t0x838E\n0xDEEE\t0x84D1\n0xDEEF\t0x86C7\n0xDEF0\t0x88DF\n0xDEF1\t0x8A50\n0xDEF2\t0x8A5E\n0xDEF3\t0x8B1D\n0xDEF4\t0x8CDC\n0xDEF5\t0x8D66\n0xDEF6\t0x8FAD\n0xDEF7\t0x90AA\n0xDEF8\t0x98FC\n0xDEF9\t0x99DF\n0xDEFA\t0x9E9D\n0xDEFB\t0x524A\n0xDEFC\t0xF969\n0xDEFD\t0x6714\n0xDEFE\t0xF96A\n0xDFA1\t0x5098\n0xDFA2\t0x522A\n0xDFA3\t0x5C71\n0xDFA4\t0x6563\n0xDFA5\t0x6C55\n0xDFA6\t0x73CA\n0xDFA7\t0x7523\n0xDFA8\t0x759D\n0xDFA9\t0x7B97\n0xDFAA\t0x849C\n0xDFAB\t0x9178\n0xDFAC\t0x9730\n0xDFAD\t0x4E77\n0xDFAE\t0x6492\n0xDFAF\t0x6BBA\n0xDFB0\t0x715E\n0xDFB1\t0x85A9\n0xDFB2\t0x4E09\n0xDFB3\t0xF96B\n0xDFB4\t0x6749\n0xDFB5\t0x68EE\n0xDFB6\t0x6E17\n0xDFB7\t0x829F\n0xDFB8\t0x8518\n0xDFB9\t0x886B\n0xDFBA\t0x63F7\n0xDFBB\t0x6F81\n0xDFBC\t0x9212\n0xDFBD\t0x98AF\n0xDFBE\t0x4E0A\n0xDFBF\t0x50B7\n0xDFC0\t0x50CF\n0xDFC1\t0x511F\n0xDFC2\t0x5546\n0xDFC3\t0x55AA\n0xDFC4\t0x5617\n0xDFC5\t0x5B40\n0xDFC6\t0x5C19\n0xDFC7\t0x5CE0\n0xDFC8\t0x5E38\n0xDFC9\t0x5E8A\n0xDFCA\t0x5EA0\n0xDFCB\t0x5EC2\n0xDFCC\t0x60F3\n0xDFCD\t0x6851\n0xDFCE\t0x6A61\n0xDFCF\t0x6E58\n0xDFD0\t0x723D\n0xDFD1\t0x7240\n0xDFD2\t0x72C0\n0xDFD3\t0x76F8\n0xDFD4\t0x7965\n0xDFD5\t0x7BB1\n0xDFD6\t0x7FD4\n0xDFD7\t0x88F3\n0xDFD8\t0x89F4\n0xDFD9\t0x8A73\n0xDFDA\t0x8C61\n0xDFDB\t0x8CDE\n0xDFDC\t0x971C\n0xDFDD\t0x585E\n0xDFDE\t0x74BD\n0xDFDF\t0x8CFD\n0xDFE0\t0x55C7\n0xDFE1\t0xF96C\n0xDFE2\t0x7A61\n0xDFE3\t0x7D22\n0xDFE4\t0x8272\n0xDFE5\t0x7272\n0xDFE6\t0x751F\n0xDFE7\t0x7525\n0xDFE8\t0xF96D\n0xDFE9\t0x7B19\n0xDFEA\t0x5885\n0xDFEB\t0x58FB\n0xDFEC\t0x5DBC\n0xDFED\t0x5E8F\n0xDFEE\t0x5EB6\n0xDFEF\t0x5F90\n0xDFF0\t0x6055\n0xDFF1\t0x6292\n0xDFF2\t0x637F\n0xDFF3\t0x654D\n0xDFF4\t0x6691\n0xDFF5\t0x66D9\n0xDFF6\t0x66F8\n0xDFF7\t0x6816\n0xDFF8\t0x68F2\n0xDFF9\t0x7280\n0xDFFA\t0x745E\n0xDFFB\t0x7B6E\n0xDFFC\t0x7D6E\n0xDFFD\t0x7DD6\n0xDFFE\t0x7F72\n0xE0A1\t0x80E5\n0xE0A2\t0x8212\n0xE0A3\t0x85AF\n0xE0A4\t0x897F\n0xE0A5\t0x8A93\n0xE0A6\t0x901D\n0xE0A7\t0x92E4\n0xE0A8\t0x9ECD\n0xE0A9\t0x9F20\n0xE0AA\t0x5915\n0xE0AB\t0x596D\n0xE0AC\t0x5E2D\n0xE0AD\t0x60DC\n0xE0AE\t0x6614\n0xE0AF\t0x6673\n0xE0B0\t0x6790\n0xE0B1\t0x6C50\n0xE0B2\t0x6DC5\n0xE0B3\t0x6F5F\n0xE0B4\t0x77F3\n0xE0B5\t0x78A9\n0xE0B6\t0x84C6\n0xE0B7\t0x91CB\n0xE0B8\t0x932B\n0xE0B9\t0x4ED9\n0xE0BA\t0x50CA\n0xE0BB\t0x5148\n0xE0BC\t0x5584\n0xE0BD\t0x5B0B\n0xE0BE\t0x5BA3\n0xE0BF\t0x6247\n0xE0C0\t0x657E\n0xE0C1\t0x65CB\n0xE0C2\t0x6E32\n0xE0C3\t0x717D\n0xE0C4\t0x7401\n0xE0C5\t0x7444\n0xE0C6\t0x7487\n0xE0C7\t0x74BF\n0xE0C8\t0x766C\n0xE0C9\t0x79AA\n0xE0CA\t0x7DDA\n0xE0CB\t0x7E55\n0xE0CC\t0x7FA8\n0xE0CD\t0x817A\n0xE0CE\t0x81B3\n0xE0CF\t0x8239\n0xE0D0\t0x861A\n0xE0D1\t0x87EC\n0xE0D2\t0x8A75\n0xE0D3\t0x8DE3\n0xE0D4\t0x9078\n0xE0D5\t0x9291\n0xE0D6\t0x9425\n0xE0D7\t0x994D\n0xE0D8\t0x9BAE\n0xE0D9\t0x5368\n0xE0DA\t0x5C51\n0xE0DB\t0x6954\n0xE0DC\t0x6CC4\n0xE0DD\t0x6D29\n0xE0DE\t0x6E2B\n0xE0DF\t0x820C\n0xE0E0\t0x859B\n0xE0E1\t0x893B\n0xE0E2\t0x8A2D\n0xE0E3\t0x8AAA\n0xE0E4\t0x96EA\n0xE0E5\t0x9F67\n0xE0E6\t0x5261\n0xE0E7\t0x66B9\n0xE0E8\t0x6BB2\n0xE0E9\t0x7E96\n0xE0EA\t0x87FE\n0xE0EB\t0x8D0D\n0xE0EC\t0x9583\n0xE0ED\t0x965D\n0xE0EE\t0x651D\n0xE0EF\t0x6D89\n0xE0F0\t0x71EE\n0xE0F1\t0xF96E\n0xE0F2\t0x57CE\n0xE0F3\t0x59D3\n0xE0F4\t0x5BAC\n0xE0F5\t0x6027\n0xE0F6\t0x60FA\n0xE0F7\t0x6210\n0xE0F8\t0x661F\n0xE0F9\t0x665F\n0xE0FA\t0x7329\n0xE0FB\t0x73F9\n0xE0FC\t0x76DB\n0xE0FD\t0x7701\n0xE0FE\t0x7B6C\n0xE1A1\t0x8056\n0xE1A2\t0x8072\n0xE1A3\t0x8165\n0xE1A4\t0x8AA0\n0xE1A5\t0x9192\n0xE1A6\t0x4E16\n0xE1A7\t0x52E2\n0xE1A8\t0x6B72\n0xE1A9\t0x6D17\n0xE1AA\t0x7A05\n0xE1AB\t0x7B39\n0xE1AC\t0x7D30\n0xE1AD\t0xF96F\n0xE1AE\t0x8CB0\n0xE1AF\t0x53EC\n0xE1B0\t0x562F\n0xE1B1\t0x5851\n0xE1B2\t0x5BB5\n0xE1B3\t0x5C0F\n0xE1B4\t0x5C11\n0xE1B5\t0x5DE2\n0xE1B6\t0x6240\n0xE1B7\t0x6383\n0xE1B8\t0x6414\n0xE1B9\t0x662D\n0xE1BA\t0x68B3\n0xE1BB\t0x6CBC\n0xE1BC\t0x6D88\n0xE1BD\t0x6EAF\n0xE1BE\t0x701F\n0xE1BF\t0x70A4\n0xE1C0\t0x71D2\n0xE1C1\t0x7526\n0xE1C2\t0x758F\n0xE1C3\t0x758E\n0xE1C4\t0x7619\n0xE1C5\t0x7B11\n0xE1C6\t0x7BE0\n0xE1C7\t0x7C2B\n0xE1C8\t0x7D20\n0xE1C9\t0x7D39\n0xE1CA\t0x852C\n0xE1CB\t0x856D\n0xE1CC\t0x8607\n0xE1CD\t0x8A34\n0xE1CE\t0x900D\n0xE1CF\t0x9061\n0xE1D0\t0x90B5\n0xE1D1\t0x92B7\n0xE1D2\t0x97F6\n0xE1D3\t0x9A37\n0xE1D4\t0x4FD7\n0xE1D5\t0x5C6C\n0xE1D6\t0x675F\n0xE1D7\t0x6D91\n0xE1D8\t0x7C9F\n0xE1D9\t0x7E8C\n0xE1DA\t0x8B16\n0xE1DB\t0x8D16\n0xE1DC\t0x901F\n0xE1DD\t0x5B6B\n0xE1DE\t0x5DFD\n0xE1DF\t0x640D\n0xE1E0\t0x84C0\n0xE1E1\t0x905C\n0xE1E2\t0x98E1\n0xE1E3\t0x7387\n0xE1E4\t0x5B8B\n0xE1E5\t0x609A\n0xE1E6\t0x677E\n0xE1E7\t0x6DDE\n0xE1E8\t0x8A1F\n0xE1E9\t0x8AA6\n0xE1EA\t0x9001\n0xE1EB\t0x980C\n0xE1EC\t0x5237\n0xE1ED\t0xF970\n0xE1EE\t0x7051\n0xE1EF\t0x788E\n0xE1F0\t0x9396\n0xE1F1\t0x8870\n0xE1F2\t0x91D7\n0xE1F3\t0x4FEE\n0xE1F4\t0x53D7\n0xE1F5\t0x55FD\n0xE1F6\t0x56DA\n0xE1F7\t0x5782\n0xE1F8\t0x58FD\n0xE1F9\t0x5AC2\n0xE1FA\t0x5B88\n0xE1FB\t0x5CAB\n0xE1FC\t0x5CC0\n0xE1FD\t0x5E25\n0xE1FE\t0x6101\n0xE2A1\t0x620D\n0xE2A2\t0x624B\n0xE2A3\t0x6388\n0xE2A4\t0x641C\n0xE2A5\t0x6536\n0xE2A6\t0x6578\n0xE2A7\t0x6A39\n0xE2A8\t0x6B8A\n0xE2A9\t0x6C34\n0xE2AA\t0x6D19\n0xE2AB\t0x6F31\n0xE2AC\t0x71E7\n0xE2AD\t0x72E9\n0xE2AE\t0x7378\n0xE2AF\t0x7407\n0xE2B0\t0x74B2\n0xE2B1\t0x7626\n0xE2B2\t0x7761\n0xE2B3\t0x79C0\n0xE2B4\t0x7A57\n0xE2B5\t0x7AEA\n0xE2B6\t0x7CB9\n0xE2B7\t0x7D8F\n0xE2B8\t0x7DAC\n0xE2B9\t0x7E61\n0xE2BA\t0x7F9E\n0xE2BB\t0x8129\n0xE2BC\t0x8331\n0xE2BD\t0x8490\n0xE2BE\t0x84DA\n0xE2BF\t0x85EA\n0xE2C0\t0x8896\n0xE2C1\t0x8AB0\n0xE2C2\t0x8B90\n0xE2C3\t0x8F38\n0xE2C4\t0x9042\n0xE2C5\t0x9083\n0xE2C6\t0x916C\n0xE2C7\t0x9296\n0xE2C8\t0x92B9\n0xE2C9\t0x968B\n0xE2CA\t0x96A7\n0xE2CB\t0x96A8\n0xE2CC\t0x96D6\n0xE2CD\t0x9700\n0xE2CE\t0x9808\n0xE2CF\t0x9996\n0xE2D0\t0x9AD3\n0xE2D1\t0x9B1A\n0xE2D2\t0x53D4\n0xE2D3\t0x587E\n0xE2D4\t0x5919\n0xE2D5\t0x5B70\n0xE2D6\t0x5BBF\n0xE2D7\t0x6DD1\n0xE2D8\t0x6F5A\n0xE2D9\t0x719F\n0xE2DA\t0x7421\n0xE2DB\t0x74B9\n0xE2DC\t0x8085\n0xE2DD\t0x83FD\n0xE2DE\t0x5DE1\n0xE2DF\t0x5F87\n0xE2E0\t0x5FAA\n0xE2E1\t0x6042\n0xE2E2\t0x65EC\n0xE2E3\t0x6812\n0xE2E4\t0x696F\n0xE2E5\t0x6A53\n0xE2E6\t0x6B89\n0xE2E7\t0x6D35\n0xE2E8\t0x6DF3\n0xE2E9\t0x73E3\n0xE2EA\t0x76FE\n0xE2EB\t0x77AC\n0xE2EC\t0x7B4D\n0xE2ED\t0x7D14\n0xE2EE\t0x8123\n0xE2EF\t0x821C\n0xE2F0\t0x8340\n0xE2F1\t0x84F4\n0xE2F2\t0x8563\n0xE2F3\t0x8A62\n0xE2F4\t0x8AC4\n0xE2F5\t0x9187\n0xE2F6\t0x931E\n0xE2F7\t0x9806\n0xE2F8\t0x99B4\n0xE2F9\t0x620C\n0xE2FA\t0x8853\n0xE2FB\t0x8FF0\n0xE2FC\t0x9265\n0xE2FD\t0x5D07\n0xE2FE\t0x5D27\n0xE3A1\t0x5D69\n0xE3A2\t0x745F\n0xE3A3\t0x819D\n0xE3A4\t0x8768\n0xE3A5\t0x6FD5\n0xE3A6\t0x62FE\n0xE3A7\t0x7FD2\n0xE3A8\t0x8936\n0xE3A9\t0x8972\n0xE3AA\t0x4E1E\n0xE3AB\t0x4E58\n0xE3AC\t0x50E7\n0xE3AD\t0x52DD\n0xE3AE\t0x5347\n0xE3AF\t0x627F\n0xE3B0\t0x6607\n0xE3B1\t0x7E69\n0xE3B2\t0x8805\n0xE3B3\t0x965E\n0xE3B4\t0x4F8D\n0xE3B5\t0x5319\n0xE3B6\t0x5636\n0xE3B7\t0x59CB\n0xE3B8\t0x5AA4\n0xE3B9\t0x5C38\n0xE3BA\t0x5C4E\n0xE3BB\t0x5C4D\n0xE3BC\t0x5E02\n0xE3BD\t0x5F11\n0xE3BE\t0x6043\n0xE3BF\t0x65BD\n0xE3C0\t0x662F\n0xE3C1\t0x6642\n0xE3C2\t0x67BE\n0xE3C3\t0x67F4\n0xE3C4\t0x731C\n0xE3C5\t0x77E2\n0xE3C6\t0x793A\n0xE3C7\t0x7FC5\n0xE3C8\t0x8494\n0xE3C9\t0x84CD\n0xE3CA\t0x8996\n0xE3CB\t0x8A66\n0xE3CC\t0x8A69\n0xE3CD\t0x8AE1\n0xE3CE\t0x8C55\n0xE3CF\t0x8C7A\n0xE3D0\t0x57F4\n0xE3D1\t0x5BD4\n0xE3D2\t0x5F0F\n0xE3D3\t0x606F\n0xE3D4\t0x62ED\n0xE3D5\t0x690D\n0xE3D6\t0x6B96\n0xE3D7\t0x6E5C\n0xE3D8\t0x7184\n0xE3D9\t0x7BD2\n0xE3DA\t0x8755\n0xE3DB\t0x8B58\n0xE3DC\t0x8EFE\n0xE3DD\t0x98DF\n0xE3DE\t0x98FE\n0xE3DF\t0x4F38\n0xE3E0\t0x4F81\n0xE3E1\t0x4FE1\n0xE3E2\t0x547B\n0xE3E3\t0x5A20\n0xE3E4\t0x5BB8\n0xE3E5\t0x613C\n0xE3E6\t0x65B0\n0xE3E7\t0x6668\n0xE3E8\t0x71FC\n0xE3E9\t0x7533\n0xE3EA\t0x795E\n0xE3EB\t0x7D33\n0xE3EC\t0x814E\n0xE3ED\t0x81E3\n0xE3EE\t0x8398\n0xE3EF\t0x85AA\n0xE3F0\t0x85CE\n0xE3F1\t0x8703\n0xE3F2\t0x8A0A\n0xE3F3\t0x8EAB\n0xE3F4\t0x8F9B\n0xE3F5\t0xF971\n0xE3F6\t0x8FC5\n0xE3F7\t0x5931\n0xE3F8\t0x5BA4\n0xE3F9\t0x5BE6\n0xE3FA\t0x6089\n0xE3FB\t0x5BE9\n0xE3FC\t0x5C0B\n0xE3FD\t0x5FC3\n0xE3FE\t0x6C81\n0xE4A1\t0xF972\n0xE4A2\t0x6DF1\n0xE4A3\t0x700B\n0xE4A4\t0x751A\n0xE4A5\t0x82AF\n0xE4A6\t0x8AF6\n0xE4A7\t0x4EC0\n0xE4A8\t0x5341\n0xE4A9\t0xF973\n0xE4AA\t0x96D9\n0xE4AB\t0x6C0F\n0xE4AC\t0x4E9E\n0xE4AD\t0x4FC4\n0xE4AE\t0x5152\n0xE4AF\t0x555E\n0xE4B0\t0x5A25\n0xE4B1\t0x5CE8\n0xE4B2\t0x6211\n0xE4B3\t0x7259\n0xE4B4\t0x82BD\n0xE4B5\t0x83AA\n0xE4B6\t0x86FE\n0xE4B7\t0x8859\n0xE4B8\t0x8A1D\n0xE4B9\t0x963F\n0xE4BA\t0x96C5\n0xE4BB\t0x9913\n0xE4BC\t0x9D09\n0xE4BD\t0x9D5D\n0xE4BE\t0x580A\n0xE4BF\t0x5CB3\n0xE4C0\t0x5DBD\n0xE4C1\t0x5E44\n0xE4C2\t0x60E1\n0xE4C3\t0x6115\n0xE4C4\t0x63E1\n0xE4C5\t0x6A02\n0xE4C6\t0x6E25\n0xE4C7\t0x9102\n0xE4C8\t0x9354\n0xE4C9\t0x984E\n0xE4CA\t0x9C10\n0xE4CB\t0x9F77\n0xE4CC\t0x5B89\n0xE4CD\t0x5CB8\n0xE4CE\t0x6309\n0xE4CF\t0x664F\n0xE4D0\t0x6848\n0xE4D1\t0x773C\n0xE4D2\t0x96C1\n0xE4D3\t0x978D\n0xE4D4\t0x9854\n0xE4D5\t0x9B9F\n0xE4D6\t0x65A1\n0xE4D7\t0x8B01\n0xE4D8\t0x8ECB\n0xE4D9\t0x95BC\n0xE4DA\t0x5535\n0xE4DB\t0x5CA9\n0xE4DC\t0x5DD6\n0xE4DD\t0x5EB5\n0xE4DE\t0x6697\n0xE4DF\t0x764C\n0xE4E0\t0x83F4\n0xE4E1\t0x95C7\n0xE4E2\t0x58D3\n0xE4E3\t0x62BC\n0xE4E4\t0x72CE\n0xE4E5\t0x9D28\n0xE4E6\t0x4EF0\n0xE4E7\t0x592E\n0xE4E8\t0x600F\n0xE4E9\t0x663B\n0xE4EA\t0x6B83\n0xE4EB\t0x79E7\n0xE4EC\t0x9D26\n0xE4ED\t0x5393\n0xE4EE\t0x54C0\n0xE4EF\t0x57C3\n0xE4F0\t0x5D16\n0xE4F1\t0x611B\n0xE4F2\t0x66D6\n0xE4F3\t0x6DAF\n0xE4F4\t0x788D\n0xE4F5\t0x827E\n0xE4F6\t0x9698\n0xE4F7\t0x9744\n0xE4F8\t0x5384\n0xE4F9\t0x627C\n0xE4FA\t0x6396\n0xE4FB\t0x6DB2\n0xE4FC\t0x7E0A\n0xE4FD\t0x814B\n0xE4FE\t0x984D\n0xE5A1\t0x6AFB\n0xE5A2\t0x7F4C\n0xE5A3\t0x9DAF\n0xE5A4\t0x9E1A\n0xE5A5\t0x4E5F\n0xE5A6\t0x503B\n0xE5A7\t0x51B6\n0xE5A8\t0x591C\n0xE5A9\t0x60F9\n0xE5AA\t0x63F6\n0xE5AB\t0x6930\n0xE5AC\t0x723A\n0xE5AD\t0x8036\n0xE5AE\t0xF974\n0xE5AF\t0x91CE\n0xE5B0\t0x5F31\n0xE5B1\t0xF975\n0xE5B2\t0xF976\n0xE5B3\t0x7D04\n0xE5B4\t0x82E5\n0xE5B5\t0x846F\n0xE5B6\t0x84BB\n0xE5B7\t0x85E5\n0xE5B8\t0x8E8D\n0xE5B9\t0xF977\n0xE5BA\t0x4F6F\n0xE5BB\t0xF978\n0xE5BC\t0xF979\n0xE5BD\t0x58E4\n0xE5BE\t0x5B43\n0xE5BF\t0x6059\n0xE5C0\t0x63DA\n0xE5C1\t0x6518\n0xE5C2\t0x656D\n0xE5C3\t0x6698\n0xE5C4\t0xF97A\n0xE5C5\t0x694A\n0xE5C6\t0x6A23\n0xE5C7\t0x6D0B\n0xE5C8\t0x7001\n0xE5C9\t0x716C\n0xE5CA\t0x75D2\n0xE5CB\t0x760D\n0xE5CC\t0x79B3\n0xE5CD\t0x7A70\n0xE5CE\t0xF97B\n0xE5CF\t0x7F8A\n0xE5D0\t0xF97C\n0xE5D1\t0x8944\n0xE5D2\t0xF97D\n0xE5D3\t0x8B93\n0xE5D4\t0x91C0\n0xE5D5\t0x967D\n0xE5D6\t0xF97E\n0xE5D7\t0x990A\n0xE5D8\t0x5704\n0xE5D9\t0x5FA1\n0xE5DA\t0x65BC\n0xE5DB\t0x6F01\n0xE5DC\t0x7600\n0xE5DD\t0x79A6\n0xE5DE\t0x8A9E\n0xE5DF\t0x99AD\n0xE5E0\t0x9B5A\n0xE5E1\t0x9F6C\n0xE5E2\t0x5104\n0xE5E3\t0x61B6\n0xE5E4\t0x6291\n0xE5E5\t0x6A8D\n0xE5E6\t0x81C6\n0xE5E7\t0x5043\n0xE5E8\t0x5830\n0xE5E9\t0x5F66\n0xE5EA\t0x7109\n0xE5EB\t0x8A00\n0xE5EC\t0x8AFA\n0xE5ED\t0x5B7C\n0xE5EE\t0x8616\n0xE5EF\t0x4FFA\n0xE5F0\t0x513C\n0xE5F1\t0x56B4\n0xE5F2\t0x5944\n0xE5F3\t0x63A9\n0xE5F4\t0x6DF9\n0xE5F5\t0x5DAA\n0xE5F6\t0x696D\n0xE5F7\t0x5186\n0xE5F8\t0x4E88\n0xE5F9\t0x4F59\n0xE5FA\t0xF97F\n0xE5FB\t0xF980\n0xE5FC\t0xF981\n0xE5FD\t0x5982\n0xE5FE\t0xF982\n0xE6A1\t0xF983\n0xE6A2\t0x6B5F\n0xE6A3\t0x6C5D\n0xE6A4\t0xF984\n0xE6A5\t0x74B5\n0xE6A6\t0x7916\n0xE6A7\t0xF985\n0xE6A8\t0x8207\n0xE6A9\t0x8245\n0xE6AA\t0x8339\n0xE6AB\t0x8F3F\n0xE6AC\t0x8F5D\n0xE6AD\t0xF986\n0xE6AE\t0x9918\n0xE6AF\t0xF987\n0xE6B0\t0xF988\n0xE6B1\t0xF989\n0xE6B2\t0x4EA6\n0xE6B3\t0xF98A\n0xE6B4\t0x57DF\n0xE6B5\t0x5F79\n0xE6B6\t0x6613\n0xE6B7\t0xF98B\n0xE6B8\t0xF98C\n0xE6B9\t0x75AB\n0xE6BA\t0x7E79\n0xE6BB\t0x8B6F\n0xE6BC\t0xF98D\n0xE6BD\t0x9006\n0xE6BE\t0x9A5B\n0xE6BF\t0x56A5\n0xE6C0\t0x5827\n0xE6C1\t0x59F8\n0xE6C2\t0x5A1F\n0xE6C3\t0x5BB4\n0xE6C4\t0xF98E\n0xE6C5\t0x5EF6\n0xE6C6\t0xF98F\n0xE6C7\t0xF990\n0xE6C8\t0x6350\n0xE6C9\t0x633B\n0xE6CA\t0xF991\n0xE6CB\t0x693D\n0xE6CC\t0x6C87\n0xE6CD\t0x6CBF\n0xE6CE\t0x6D8E\n0xE6CF\t0x6D93\n0xE6D0\t0x6DF5\n0xE6D1\t0x6F14\n0xE6D2\t0xF992\n0xE6D3\t0x70DF\n0xE6D4\t0x7136\n0xE6D5\t0x7159\n0xE6D6\t0xF993\n0xE6D7\t0x71C3\n0xE6D8\t0x71D5\n0xE6D9\t0xF994\n0xE6DA\t0x784F\n0xE6DB\t0x786F\n0xE6DC\t0xF995\n0xE6DD\t0x7B75\n0xE6DE\t0x7DE3\n0xE6DF\t0xF996\n0xE6E0\t0x7E2F\n0xE6E1\t0xF997\n0xE6E2\t0x884D\n0xE6E3\t0x8EDF\n0xE6E4\t0xF998\n0xE6E5\t0xF999\n0xE6E6\t0xF99A\n0xE6E7\t0x925B\n0xE6E8\t0xF99B\n0xE6E9\t0x9CF6\n0xE6EA\t0xF99C\n0xE6EB\t0xF99D\n0xE6EC\t0xF99E\n0xE6ED\t0x6085\n0xE6EE\t0x6D85\n0xE6EF\t0xF99F\n0xE6F0\t0x71B1\n0xE6F1\t0xF9A0\n0xE6F2\t0xF9A1\n0xE6F3\t0x95B1\n0xE6F4\t0x53AD\n0xE6F5\t0xF9A2\n0xE6F6\t0xF9A3\n0xE6F7\t0xF9A4\n0xE6F8\t0x67D3\n0xE6F9\t0xF9A5\n0xE6FA\t0x708E\n0xE6FB\t0x7130\n0xE6FC\t0x7430\n0xE6FD\t0x8276\n0xE6FE\t0x82D2\n0xE7A1\t0xF9A6\n0xE7A2\t0x95BB\n0xE7A3\t0x9AE5\n0xE7A4\t0x9E7D\n0xE7A5\t0x66C4\n0xE7A6\t0xF9A7\n0xE7A7\t0x71C1\n0xE7A8\t0x8449\n0xE7A9\t0xF9A8\n0xE7AA\t0xF9A9\n0xE7AB\t0x584B\n0xE7AC\t0xF9AA\n0xE7AD\t0xF9AB\n0xE7AE\t0x5DB8\n0xE7AF\t0x5F71\n0xE7B0\t0xF9AC\n0xE7B1\t0x6620\n0xE7B2\t0x668E\n0xE7B3\t0x6979\n0xE7B4\t0x69AE\n0xE7B5\t0x6C38\n0xE7B6\t0x6CF3\n0xE7B7\t0x6E36\n0xE7B8\t0x6F41\n0xE7B9\t0x6FDA\n0xE7BA\t0x701B\n0xE7BB\t0x702F\n0xE7BC\t0x7150\n0xE7BD\t0x71DF\n0xE7BE\t0x7370\n0xE7BF\t0xF9AD\n0xE7C0\t0x745B\n0xE7C1\t0xF9AE\n0xE7C2\t0x74D4\n0xE7C3\t0x76C8\n0xE7C4\t0x7A4E\n0xE7C5\t0x7E93\n0xE7C6\t0xF9AF\n0xE7C7\t0xF9B0\n0xE7C8\t0x82F1\n0xE7C9\t0x8A60\n0xE7CA\t0x8FCE\n0xE7CB\t0xF9B1\n0xE7CC\t0x9348\n0xE7CD\t0xF9B2\n0xE7CE\t0x9719\n0xE7CF\t0xF9B3\n0xE7D0\t0xF9B4\n0xE7D1\t0x4E42\n0xE7D2\t0x502A\n0xE7D3\t0xF9B5\n0xE7D4\t0x5208\n0xE7D5\t0x53E1\n0xE7D6\t0x66F3\n0xE7D7\t0x6C6D\n0xE7D8\t0x6FCA\n0xE7D9\t0x730A\n0xE7DA\t0x777F\n0xE7DB\t0x7A62\n0xE7DC\t0x82AE\n0xE7DD\t0x85DD\n0xE7DE\t0x8602\n0xE7DF\t0xF9B6\n0xE7E0\t0x88D4\n0xE7E1\t0x8A63\n0xE7E2\t0x8B7D\n0xE7E3\t0x8C6B\n0xE7E4\t0xF9B7\n0xE7E5\t0x92B3\n0xE7E6\t0xF9B8\n0xE7E7\t0x9713\n0xE7E8\t0x9810\n0xE7E9\t0x4E94\n0xE7EA\t0x4F0D\n0xE7EB\t0x4FC9\n0xE7EC\t0x50B2\n0xE7ED\t0x5348\n0xE7EE\t0x543E\n0xE7EF\t0x5433\n0xE7F0\t0x55DA\n0xE7F1\t0x5862\n0xE7F2\t0x58BA\n0xE7F3\t0x5967\n0xE7F4\t0x5A1B\n0xE7F5\t0x5BE4\n0xE7F6\t0x609F\n0xE7F7\t0xF9B9\n0xE7F8\t0x61CA\n0xE7F9\t0x6556\n0xE7FA\t0x65FF\n0xE7FB\t0x6664\n0xE7FC\t0x68A7\n0xE7FD\t0x6C5A\n0xE7FE\t0x6FB3\n0xE8A1\t0x70CF\n0xE8A2\t0x71AC\n0xE8A3\t0x7352\n0xE8A4\t0x7B7D\n0xE8A5\t0x8708\n0xE8A6\t0x8AA4\n0xE8A7\t0x9C32\n0xE8A8\t0x9F07\n0xE8A9\t0x5C4B\n0xE8AA\t0x6C83\n0xE8AB\t0x7344\n0xE8AC\t0x7389\n0xE8AD\t0x923A\n0xE8AE\t0x6EAB\n0xE8AF\t0x7465\n0xE8B0\t0x761F\n0xE8B1\t0x7A69\n0xE8B2\t0x7E15\n0xE8B3\t0x860A\n0xE8B4\t0x5140\n0xE8B5\t0x58C5\n0xE8B6\t0x64C1\n0xE8B7\t0x74EE\n0xE8B8\t0x7515\n0xE8B9\t0x7670\n0xE8BA\t0x7FC1\n0xE8BB\t0x9095\n0xE8BC\t0x96CD\n0xE8BD\t0x9954\n0xE8BE\t0x6E26\n0xE8BF\t0x74E6\n0xE8C0\t0x7AA9\n0xE8C1\t0x7AAA\n0xE8C2\t0x81E5\n0xE8C3\t0x86D9\n0xE8C4\t0x8778\n0xE8C5\t0x8A1B\n0xE8C6\t0x5A49\n0xE8C7\t0x5B8C\n0xE8C8\t0x5B9B\n0xE8C9\t0x68A1\n0xE8CA\t0x6900\n0xE8CB\t0x6D63\n0xE8CC\t0x73A9\n0xE8CD\t0x7413\n0xE8CE\t0x742C\n0xE8CF\t0x7897\n0xE8D0\t0x7DE9\n0xE8D1\t0x7FEB\n0xE8D2\t0x8118\n0xE8D3\t0x8155\n0xE8D4\t0x839E\n0xE8D5\t0x8C4C\n0xE8D6\t0x962E\n0xE8D7\t0x9811\n0xE8D8\t0x66F0\n0xE8D9\t0x5F80\n0xE8DA\t0x65FA\n0xE8DB\t0x6789\n0xE8DC\t0x6C6A\n0xE8DD\t0x738B\n0xE8DE\t0x502D\n0xE8DF\t0x5A03\n0xE8E0\t0x6B6A\n0xE8E1\t0x77EE\n0xE8E2\t0x5916\n0xE8E3\t0x5D6C\n0xE8E4\t0x5DCD\n0xE8E5\t0x7325\n0xE8E6\t0x754F\n0xE8E7\t0xF9BA\n0xE8E8\t0xF9BB\n0xE8E9\t0x50E5\n0xE8EA\t0x51F9\n0xE8EB\t0x582F\n0xE8EC\t0x592D\n0xE8ED\t0x5996\n0xE8EE\t0x59DA\n0xE8EF\t0x5BE5\n0xE8F0\t0xF9BC\n0xE8F1\t0xF9BD\n0xE8F2\t0x5DA2\n0xE8F3\t0x62D7\n0xE8F4\t0x6416\n0xE8F5\t0x6493\n0xE8F6\t0x64FE\n0xE8F7\t0xF9BE\n0xE8F8\t0x66DC\n0xE8F9\t0xF9BF\n0xE8FA\t0x6A48\n0xE8FB\t0xF9C0\n0xE8FC\t0x71FF\n0xE8FD\t0x7464\n0xE8FE\t0xF9C1\n0xE9A1\t0x7A88\n0xE9A2\t0x7AAF\n0xE9A3\t0x7E47\n0xE9A4\t0x7E5E\n0xE9A5\t0x8000\n0xE9A6\t0x8170\n0xE9A7\t0xF9C2\n0xE9A8\t0x87EF\n0xE9A9\t0x8981\n0xE9AA\t0x8B20\n0xE9AB\t0x9059\n0xE9AC\t0xF9C3\n0xE9AD\t0x9080\n0xE9AE\t0x9952\n0xE9AF\t0x617E\n0xE9B0\t0x6B32\n0xE9B1\t0x6D74\n0xE9B2\t0x7E1F\n0xE9B3\t0x8925\n0xE9B4\t0x8FB1\n0xE9B5\t0x4FD1\n0xE9B6\t0x50AD\n0xE9B7\t0x5197\n0xE9B8\t0x52C7\n0xE9B9\t0x57C7\n0xE9BA\t0x5889\n0xE9BB\t0x5BB9\n0xE9BC\t0x5EB8\n0xE9BD\t0x6142\n0xE9BE\t0x6995\n0xE9BF\t0x6D8C\n0xE9C0\t0x6E67\n0xE9C1\t0x6EB6\n0xE9C2\t0x7194\n0xE9C3\t0x7462\n0xE9C4\t0x7528\n0xE9C5\t0x752C\n0xE9C6\t0x8073\n0xE9C7\t0x8338\n0xE9C8\t0x84C9\n0xE9C9\t0x8E0A\n0xE9CA\t0x9394\n0xE9CB\t0x93DE\n0xE9CC\t0xF9C4\n0xE9CD\t0x4E8E\n0xE9CE\t0x4F51\n0xE9CF\t0x5076\n0xE9D0\t0x512A\n0xE9D1\t0x53C8\n0xE9D2\t0x53CB\n0xE9D3\t0x53F3\n0xE9D4\t0x5B87\n0xE9D5\t0x5BD3\n0xE9D6\t0x5C24\n0xE9D7\t0x611A\n0xE9D8\t0x6182\n0xE9D9\t0x65F4\n0xE9DA\t0x725B\n0xE9DB\t0x7397\n0xE9DC\t0x7440\n0xE9DD\t0x76C2\n0xE9DE\t0x7950\n0xE9DF\t0x7991\n0xE9E0\t0x79B9\n0xE9E1\t0x7D06\n0xE9E2\t0x7FBD\n0xE9E3\t0x828B\n0xE9E4\t0x85D5\n0xE9E5\t0x865E\n0xE9E6\t0x8FC2\n0xE9E7\t0x9047\n0xE9E8\t0x90F5\n0xE9E9\t0x91EA\n0xE9EA\t0x9685\n0xE9EB\t0x96E8\n0xE9EC\t0x96E9\n0xE9ED\t0x52D6\n0xE9EE\t0x5F67\n0xE9EF\t0x65ED\n0xE9F0\t0x6631\n0xE9F1\t0x682F\n0xE9F2\t0x715C\n0xE9F3\t0x7A36\n0xE9F4\t0x90C1\n0xE9F5\t0x980A\n0xE9F6\t0x4E91\n0xE9F7\t0xF9C5\n0xE9F8\t0x6A52\n0xE9F9\t0x6B9E\n0xE9FA\t0x6F90\n0xE9FB\t0x7189\n0xE9FC\t0x8018\n0xE9FD\t0x82B8\n0xE9FE\t0x8553\n0xEAA1\t0x904B\n0xEAA2\t0x9695\n0xEAA3\t0x96F2\n0xEAA4\t0x97FB\n0xEAA5\t0x851A\n0xEAA6\t0x9B31\n0xEAA7\t0x4E90\n0xEAA8\t0x718A\n0xEAA9\t0x96C4\n0xEAAA\t0x5143\n0xEAAB\t0x539F\n0xEAAC\t0x54E1\n0xEAAD\t0x5713\n0xEAAE\t0x5712\n0xEAAF\t0x57A3\n0xEAB0\t0x5A9B\n0xEAB1\t0x5AC4\n0xEAB2\t0x5BC3\n0xEAB3\t0x6028\n0xEAB4\t0x613F\n0xEAB5\t0x63F4\n0xEAB6\t0x6C85\n0xEAB7\t0x6D39\n0xEAB8\t0x6E72\n0xEAB9\t0x6E90\n0xEABA\t0x7230\n0xEABB\t0x733F\n0xEABC\t0x7457\n0xEABD\t0x82D1\n0xEABE\t0x8881\n0xEABF\t0x8F45\n0xEAC0\t0x9060\n0xEAC1\t0xF9C6\n0xEAC2\t0x9662\n0xEAC3\t0x9858\n0xEAC4\t0x9D1B\n0xEAC5\t0x6708\n0xEAC6\t0x8D8A\n0xEAC7\t0x925E\n0xEAC8\t0x4F4D\n0xEAC9\t0x5049\n0xEACA\t0x50DE\n0xEACB\t0x5371\n0xEACC\t0x570D\n0xEACD\t0x59D4\n0xEACE\t0x5A01\n0xEACF\t0x5C09\n0xEAD0\t0x6170\n0xEAD1\t0x6690\n0xEAD2\t0x6E2D\n0xEAD3\t0x7232\n0xEAD4\t0x744B\n0xEAD5\t0x7DEF\n0xEAD6\t0x80C3\n0xEAD7\t0x840E\n0xEAD8\t0x8466\n0xEAD9\t0x853F\n0xEADA\t0x875F\n0xEADB\t0x885B\n0xEADC\t0x8918\n0xEADD\t0x8B02\n0xEADE\t0x9055\n0xEADF\t0x97CB\n0xEAE0\t0x9B4F\n0xEAE1\t0x4E73\n0xEAE2\t0x4F91\n0xEAE3\t0x5112\n0xEAE4\t0x516A\n0xEAE5\t0xF9C7\n0xEAE6\t0x552F\n0xEAE7\t0x55A9\n0xEAE8\t0x5B7A\n0xEAE9\t0x5BA5\n0xEAEA\t0x5E7C\n0xEAEB\t0x5E7D\n0xEAEC\t0x5EBE\n0xEAED\t0x60A0\n0xEAEE\t0x60DF\n0xEAEF\t0x6108\n0xEAF0\t0x6109\n0xEAF1\t0x63C4\n0xEAF2\t0x6538\n0xEAF3\t0x6709\n0xEAF4\t0xF9C8\n0xEAF5\t0x67D4\n0xEAF6\t0x67DA\n0xEAF7\t0xF9C9\n0xEAF8\t0x6961\n0xEAF9\t0x6962\n0xEAFA\t0x6CB9\n0xEAFB\t0x6D27\n0xEAFC\t0xF9CA\n0xEAFD\t0x6E38\n0xEAFE\t0xF9CB\n0xEBA1\t0x6FE1\n0xEBA2\t0x7336\n0xEBA3\t0x7337\n0xEBA4\t0xF9CC\n0xEBA5\t0x745C\n0xEBA6\t0x7531\n0xEBA7\t0xF9CD\n0xEBA8\t0x7652\n0xEBA9\t0xF9CE\n0xEBAA\t0xF9CF\n0xEBAB\t0x7DAD\n0xEBAC\t0x81FE\n0xEBAD\t0x8438\n0xEBAE\t0x88D5\n0xEBAF\t0x8A98\n0xEBB0\t0x8ADB\n0xEBB1\t0x8AED\n0xEBB2\t0x8E30\n0xEBB3\t0x8E42\n0xEBB4\t0x904A\n0xEBB5\t0x903E\n0xEBB6\t0x907A\n0xEBB7\t0x9149\n0xEBB8\t0x91C9\n0xEBB9\t0x936E\n0xEBBA\t0xF9D0\n0xEBBB\t0xF9D1\n0xEBBC\t0x5809\n0xEBBD\t0xF9D2\n0xEBBE\t0x6BD3\n0xEBBF\t0x8089\n0xEBC0\t0x80B2\n0xEBC1\t0xF9D3\n0xEBC2\t0xF9D4\n0xEBC3\t0x5141\n0xEBC4\t0x596B\n0xEBC5\t0x5C39\n0xEBC6\t0xF9D5\n0xEBC7\t0xF9D6\n0xEBC8\t0x6F64\n0xEBC9\t0x73A7\n0xEBCA\t0x80E4\n0xEBCB\t0x8D07\n0xEBCC\t0xF9D7\n0xEBCD\t0x9217\n0xEBCE\t0x958F\n0xEBCF\t0xF9D8\n0xEBD0\t0xF9D9\n0xEBD1\t0xF9DA\n0xEBD2\t0xF9DB\n0xEBD3\t0x807F\n0xEBD4\t0x620E\n0xEBD5\t0x701C\n0xEBD6\t0x7D68\n0xEBD7\t0x878D\n0xEBD8\t0xF9DC\n0xEBD9\t0x57A0\n0xEBDA\t0x6069\n0xEBDB\t0x6147\n0xEBDC\t0x6BB7\n0xEBDD\t0x8ABE\n0xEBDE\t0x9280\n0xEBDF\t0x96B1\n0xEBE0\t0x4E59\n0xEBE1\t0x541F\n0xEBE2\t0x6DEB\n0xEBE3\t0x852D\n0xEBE4\t0x9670\n0xEBE5\t0x97F3\n0xEBE6\t0x98EE\n0xEBE7\t0x63D6\n0xEBE8\t0x6CE3\n0xEBE9\t0x9091\n0xEBEA\t0x51DD\n0xEBEB\t0x61C9\n0xEBEC\t0x81BA\n0xEBED\t0x9DF9\n0xEBEE\t0x4F9D\n0xEBEF\t0x501A\n0xEBF0\t0x5100\n0xEBF1\t0x5B9C\n0xEBF2\t0x610F\n0xEBF3\t0x61FF\n0xEBF4\t0x64EC\n0xEBF5\t0x6905\n0xEBF6\t0x6BC5\n0xEBF7\t0x7591\n0xEBF8\t0x77E3\n0xEBF9\t0x7FA9\n0xEBFA\t0x8264\n0xEBFB\t0x858F\n0xEBFC\t0x87FB\n0xEBFD\t0x8863\n0xEBFE\t0x8ABC\n0xECA1\t0x8B70\n0xECA2\t0x91AB\n0xECA3\t0x4E8C\n0xECA4\t0x4EE5\n0xECA5\t0x4F0A\n0xECA6\t0xF9DD\n0xECA7\t0xF9DE\n0xECA8\t0x5937\n0xECA9\t0x59E8\n0xECAA\t0xF9DF\n0xECAB\t0x5DF2\n0xECAC\t0x5F1B\n0xECAD\t0x5F5B\n0xECAE\t0x6021\n0xECAF\t0xF9E0\n0xECB0\t0xF9E1\n0xECB1\t0xF9E2\n0xECB2\t0xF9E3\n0xECB3\t0x723E\n0xECB4\t0x73E5\n0xECB5\t0xF9E4\n0xECB6\t0x7570\n0xECB7\t0x75CD\n0xECB8\t0xF9E5\n0xECB9\t0x79FB\n0xECBA\t0xF9E6\n0xECBB\t0x800C\n0xECBC\t0x8033\n0xECBD\t0x8084\n0xECBE\t0x82E1\n0xECBF\t0x8351\n0xECC0\t0xF9E7\n0xECC1\t0xF9E8\n0xECC2\t0x8CBD\n0xECC3\t0x8CB3\n0xECC4\t0x9087\n0xECC5\t0xF9E9\n0xECC6\t0xF9EA\n0xECC7\t0x98F4\n0xECC8\t0x990C\n0xECC9\t0xF9EB\n0xECCA\t0xF9EC\n0xECCB\t0x7037\n0xECCC\t0x76CA\n0xECCD\t0x7FCA\n0xECCE\t0x7FCC\n0xECCF\t0x7FFC\n0xECD0\t0x8B1A\n0xECD1\t0x4EBA\n0xECD2\t0x4EC1\n0xECD3\t0x5203\n0xECD4\t0x5370\n0xECD5\t0xF9ED\n0xECD6\t0x54BD\n0xECD7\t0x56E0\n0xECD8\t0x59FB\n0xECD9\t0x5BC5\n0xECDA\t0x5F15\n0xECDB\t0x5FCD\n0xECDC\t0x6E6E\n0xECDD\t0xF9EE\n0xECDE\t0xF9EF\n0xECDF\t0x7D6A\n0xECE0\t0x8335\n0xECE1\t0xF9F0\n0xECE2\t0x8693\n0xECE3\t0x8A8D\n0xECE4\t0xF9F1\n0xECE5\t0x976D\n0xECE6\t0x9777\n0xECE7\t0xF9F2\n0xECE8\t0xF9F3\n0xECE9\t0x4E00\n0xECEA\t0x4F5A\n0xECEB\t0x4F7E\n0xECEC\t0x58F9\n0xECED\t0x65E5\n0xECEE\t0x6EA2\n0xECEF\t0x9038\n0xECF0\t0x93B0\n0xECF1\t0x99B9\n0xECF2\t0x4EFB\n0xECF3\t0x58EC\n0xECF4\t0x598A\n0xECF5\t0x59D9\n0xECF6\t0x6041\n0xECF7\t0xF9F4\n0xECF8\t0xF9F5\n0xECF9\t0x7A14\n0xECFA\t0xF9F6\n0xECFB\t0x834F\n0xECFC\t0x8CC3\n0xECFD\t0x5165\n0xECFE\t0x5344\n0xEDA1\t0xF9F7\n0xEDA2\t0xF9F8\n0xEDA3\t0xF9F9\n0xEDA4\t0x4ECD\n0xEDA5\t0x5269\n0xEDA6\t0x5B55\n0xEDA7\t0x82BF\n0xEDA8\t0x4ED4\n0xEDA9\t0x523A\n0xEDAA\t0x54A8\n0xEDAB\t0x59C9\n0xEDAC\t0x59FF\n0xEDAD\t0x5B50\n0xEDAE\t0x5B57\n0xEDAF\t0x5B5C\n0xEDB0\t0x6063\n0xEDB1\t0x6148\n0xEDB2\t0x6ECB\n0xEDB3\t0x7099\n0xEDB4\t0x716E\n0xEDB5\t0x7386\n0xEDB6\t0x74F7\n0xEDB7\t0x75B5\n0xEDB8\t0x78C1\n0xEDB9\t0x7D2B\n0xEDBA\t0x8005\n0xEDBB\t0x81EA\n0xEDBC\t0x8328\n0xEDBD\t0x8517\n0xEDBE\t0x85C9\n0xEDBF\t0x8AEE\n0xEDC0\t0x8CC7\n0xEDC1\t0x96CC\n0xEDC2\t0x4F5C\n0xEDC3\t0x52FA\n0xEDC4\t0x56BC\n0xEDC5\t0x65AB\n0xEDC6\t0x6628\n0xEDC7\t0x707C\n0xEDC8\t0x70B8\n0xEDC9\t0x7235\n0xEDCA\t0x7DBD\n0xEDCB\t0x828D\n0xEDCC\t0x914C\n0xEDCD\t0x96C0\n0xEDCE\t0x9D72\n0xEDCF\t0x5B71\n0xEDD0\t0x68E7\n0xEDD1\t0x6B98\n0xEDD2\t0x6F7A\n0xEDD3\t0x76DE\n0xEDD4\t0x5C91\n0xEDD5\t0x66AB\n0xEDD6\t0x6F5B\n0xEDD7\t0x7BB4\n0xEDD8\t0x7C2A\n0xEDD9\t0x8836\n0xEDDA\t0x96DC\n0xEDDB\t0x4E08\n0xEDDC\t0x4ED7\n0xEDDD\t0x5320\n0xEDDE\t0x5834\n0xEDDF\t0x58BB\n0xEDE0\t0x58EF\n0xEDE1\t0x596C\n0xEDE2\t0x5C07\n0xEDE3\t0x5E33\n0xEDE4\t0x5E84\n0xEDE5\t0x5F35\n0xEDE6\t0x638C\n0xEDE7\t0x66B2\n0xEDE8\t0x6756\n0xEDE9\t0x6A1F\n0xEDEA\t0x6AA3\n0xEDEB\t0x6B0C\n0xEDEC\t0x6F3F\n0xEDED\t0x7246\n0xEDEE\t0xF9FA\n0xEDEF\t0x7350\n0xEDF0\t0x748B\n0xEDF1\t0x7AE0\n0xEDF2\t0x7CA7\n0xEDF3\t0x8178\n0xEDF4\t0x81DF\n0xEDF5\t0x81E7\n0xEDF6\t0x838A\n0xEDF7\t0x846C\n0xEDF8\t0x8523\n0xEDF9\t0x8594\n0xEDFA\t0x85CF\n0xEDFB\t0x88DD\n0xEDFC\t0x8D13\n0xEDFD\t0x91AC\n0xEDFE\t0x9577\n0xEEA1\t0x969C\n0xEEA2\t0x518D\n0xEEA3\t0x54C9\n0xEEA4\t0x5728\n0xEEA5\t0x5BB0\n0xEEA6\t0x624D\n0xEEA7\t0x6750\n0xEEA8\t0x683D\n0xEEA9\t0x6893\n0xEEAA\t0x6E3D\n0xEEAB\t0x6ED3\n0xEEAC\t0x707D\n0xEEAD\t0x7E21\n0xEEAE\t0x88C1\n0xEEAF\t0x8CA1\n0xEEB0\t0x8F09\n0xEEB1\t0x9F4B\n0xEEB2\t0x9F4E\n0xEEB3\t0x722D\n0xEEB4\t0x7B8F\n0xEEB5\t0x8ACD\n0xEEB6\t0x931A\n0xEEB7\t0x4F47\n0xEEB8\t0x4F4E\n0xEEB9\t0x5132\n0xEEBA\t0x5480\n0xEEBB\t0x59D0\n0xEEBC\t0x5E95\n0xEEBD\t0x62B5\n0xEEBE\t0x6775\n0xEEBF\t0x696E\n0xEEC0\t0x6A17\n0xEEC1\t0x6CAE\n0xEEC2\t0x6E1A\n0xEEC3\t0x72D9\n0xEEC4\t0x732A\n0xEEC5\t0x75BD\n0xEEC6\t0x7BB8\n0xEEC7\t0x7D35\n0xEEC8\t0x82E7\n0xEEC9\t0x83F9\n0xEECA\t0x8457\n0xEECB\t0x85F7\n0xEECC\t0x8A5B\n0xEECD\t0x8CAF\n0xEECE\t0x8E87\n0xEECF\t0x9019\n0xEED0\t0x90B8\n0xEED1\t0x96CE\n0xEED2\t0x9F5F\n0xEED3\t0x52E3\n0xEED4\t0x540A\n0xEED5\t0x5AE1\n0xEED6\t0x5BC2\n0xEED7\t0x6458\n0xEED8\t0x6575\n0xEED9\t0x6EF4\n0xEEDA\t0x72C4\n0xEEDB\t0xF9FB\n0xEEDC\t0x7684\n0xEEDD\t0x7A4D\n0xEEDE\t0x7B1B\n0xEEDF\t0x7C4D\n0xEEE0\t0x7E3E\n0xEEE1\t0x7FDF\n0xEEE2\t0x837B\n0xEEE3\t0x8B2B\n0xEEE4\t0x8CCA\n0xEEE5\t0x8D64\n0xEEE6\t0x8DE1\n0xEEE7\t0x8E5F\n0xEEE8\t0x8FEA\n0xEEE9\t0x8FF9\n0xEEEA\t0x9069\n0xEEEB\t0x93D1\n0xEEEC\t0x4F43\n0xEEED\t0x4F7A\n0xEEEE\t0x50B3\n0xEEEF\t0x5168\n0xEEF0\t0x5178\n0xEEF1\t0x524D\n0xEEF2\t0x526A\n0xEEF3\t0x5861\n0xEEF4\t0x587C\n0xEEF5\t0x5960\n0xEEF6\t0x5C08\n0xEEF7\t0x5C55\n0xEEF8\t0x5EDB\n0xEEF9\t0x609B\n0xEEFA\t0x6230\n0xEEFB\t0x6813\n0xEEFC\t0x6BBF\n0xEEFD\t0x6C08\n0xEEFE\t0x6FB1\n0xEFA1\t0x714E\n0xEFA2\t0x7420\n0xEFA3\t0x7530\n0xEFA4\t0x7538\n0xEFA5\t0x7551\n0xEFA6\t0x7672\n0xEFA7\t0x7B4C\n0xEFA8\t0x7B8B\n0xEFA9\t0x7BAD\n0xEFAA\t0x7BC6\n0xEFAB\t0x7E8F\n0xEFAC\t0x8A6E\n0xEFAD\t0x8F3E\n0xEFAE\t0x8F49\n0xEFAF\t0x923F\n0xEFB0\t0x9293\n0xEFB1\t0x9322\n0xEFB2\t0x942B\n0xEFB3\t0x96FB\n0xEFB4\t0x985A\n0xEFB5\t0x986B\n0xEFB6\t0x991E\n0xEFB7\t0x5207\n0xEFB8\t0x622A\n0xEFB9\t0x6298\n0xEFBA\t0x6D59\n0xEFBB\t0x7664\n0xEFBC\t0x7ACA\n0xEFBD\t0x7BC0\n0xEFBE\t0x7D76\n0xEFBF\t0x5360\n0xEFC0\t0x5CBE\n0xEFC1\t0x5E97\n0xEFC2\t0x6F38\n0xEFC3\t0x70B9\n0xEFC4\t0x7C98\n0xEFC5\t0x9711\n0xEFC6\t0x9B8E\n0xEFC7\t0x9EDE\n0xEFC8\t0x63A5\n0xEFC9\t0x647A\n0xEFCA\t0x8776\n0xEFCB\t0x4E01\n0xEFCC\t0x4E95\n0xEFCD\t0x4EAD\n0xEFCE\t0x505C\n0xEFCF\t0x5075\n0xEFD0\t0x5448\n0xEFD1\t0x59C3\n0xEFD2\t0x5B9A\n0xEFD3\t0x5E40\n0xEFD4\t0x5EAD\n0xEFD5\t0x5EF7\n0xEFD6\t0x5F81\n0xEFD7\t0x60C5\n0xEFD8\t0x633A\n0xEFD9\t0x653F\n0xEFDA\t0x6574\n0xEFDB\t0x65CC\n0xEFDC\t0x6676\n0xEFDD\t0x6678\n0xEFDE\t0x67FE\n0xEFDF\t0x6968\n0xEFE0\t0x6A89\n0xEFE1\t0x6B63\n0xEFE2\t0x6C40\n0xEFE3\t0x6DC0\n0xEFE4\t0x6DE8\n0xEFE5\t0x6E1F\n0xEFE6\t0x6E5E\n0xEFE7\t0x701E\n0xEFE8\t0x70A1\n0xEFE9\t0x738E\n0xEFEA\t0x73FD\n0xEFEB\t0x753A\n0xEFEC\t0x775B\n0xEFED\t0x7887\n0xEFEE\t0x798E\n0xEFEF\t0x7A0B\n0xEFF0\t0x7A7D\n0xEFF1\t0x7CBE\n0xEFF2\t0x7D8E\n0xEFF3\t0x8247\n0xEFF4\t0x8A02\n0xEFF5\t0x8AEA\n0xEFF6\t0x8C9E\n0xEFF7\t0x912D\n0xEFF8\t0x914A\n0xEFF9\t0x91D8\n0xEFFA\t0x9266\n0xEFFB\t0x92CC\n0xEFFC\t0x9320\n0xEFFD\t0x9706\n0xEFFE\t0x9756\n0xF0A1\t0x975C\n0xF0A2\t0x9802\n0xF0A3\t0x9F0E\n0xF0A4\t0x5236\n0xF0A5\t0x5291\n0xF0A6\t0x557C\n0xF0A7\t0x5824\n0xF0A8\t0x5E1D\n0xF0A9\t0x5F1F\n0xF0AA\t0x608C\n0xF0AB\t0x63D0\n0xF0AC\t0x68AF\n0xF0AD\t0x6FDF\n0xF0AE\t0x796D\n0xF0AF\t0x7B2C\n0xF0B0\t0x81CD\n0xF0B1\t0x85BA\n0xF0B2\t0x88FD\n0xF0B3\t0x8AF8\n0xF0B4\t0x8E44\n0xF0B5\t0x918D\n0xF0B6\t0x9664\n0xF0B7\t0x969B\n0xF0B8\t0x973D\n0xF0B9\t0x984C\n0xF0BA\t0x9F4A\n0xF0BB\t0x4FCE\n0xF0BC\t0x5146\n0xF0BD\t0x51CB\n0xF0BE\t0x52A9\n0xF0BF\t0x5632\n0xF0C0\t0x5F14\n0xF0C1\t0x5F6B\n0xF0C2\t0x63AA\n0xF0C3\t0x64CD\n0xF0C4\t0x65E9\n0xF0C5\t0x6641\n0xF0C6\t0x66FA\n0xF0C7\t0x66F9\n0xF0C8\t0x671D\n0xF0C9\t0x689D\n0xF0CA\t0x68D7\n0xF0CB\t0x69FD\n0xF0CC\t0x6F15\n0xF0CD\t0x6F6E\n0xF0CE\t0x7167\n0xF0CF\t0x71E5\n0xF0D0\t0x722A\n0xF0D1\t0x74AA\n0xF0D2\t0x773A\n0xF0D3\t0x7956\n0xF0D4\t0x795A\n0xF0D5\t0x79DF\n0xF0D6\t0x7A20\n0xF0D7\t0x7A95\n0xF0D8\t0x7C97\n0xF0D9\t0x7CDF\n0xF0DA\t0x7D44\n0xF0DB\t0x7E70\n0xF0DC\t0x8087\n0xF0DD\t0x85FB\n0xF0DE\t0x86A4\n0xF0DF\t0x8A54\n0xF0E0\t0x8ABF\n0xF0E1\t0x8D99\n0xF0E2\t0x8E81\n0xF0E3\t0x9020\n0xF0E4\t0x906D\n0xF0E5\t0x91E3\n0xF0E6\t0x963B\n0xF0E7\t0x96D5\n0xF0E8\t0x9CE5\n0xF0E9\t0x65CF\n0xF0EA\t0x7C07\n0xF0EB\t0x8DB3\n0xF0EC\t0x93C3\n0xF0ED\t0x5B58\n0xF0EE\t0x5C0A\n0xF0EF\t0x5352\n0xF0F0\t0x62D9\n0xF0F1\t0x731D\n0xF0F2\t0x5027\n0xF0F3\t0x5B97\n0xF0F4\t0x5F9E\n0xF0F5\t0x60B0\n0xF0F6\t0x616B\n0xF0F7\t0x68D5\n0xF0F8\t0x6DD9\n0xF0F9\t0x742E\n0xF0FA\t0x7A2E\n0xF0FB\t0x7D42\n0xF0FC\t0x7D9C\n0xF0FD\t0x7E31\n0xF0FE\t0x816B\n0xF1A1\t0x8E2A\n0xF1A2\t0x8E35\n0xF1A3\t0x937E\n0xF1A4\t0x9418\n0xF1A5\t0x4F50\n0xF1A6\t0x5750\n0xF1A7\t0x5DE6\n0xF1A8\t0x5EA7\n0xF1A9\t0x632B\n0xF1AA\t0x7F6A\n0xF1AB\t0x4E3B\n0xF1AC\t0x4F4F\n0xF1AD\t0x4F8F\n0xF1AE\t0x505A\n0xF1AF\t0x59DD\n0xF1B0\t0x80C4\n0xF1B1\t0x546A\n0xF1B2\t0x5468\n0xF1B3\t0x55FE\n0xF1B4\t0x594F\n0xF1B5\t0x5B99\n0xF1B6\t0x5DDE\n0xF1B7\t0x5EDA\n0xF1B8\t0x665D\n0xF1B9\t0x6731\n0xF1BA\t0x67F1\n0xF1BB\t0x682A\n0xF1BC\t0x6CE8\n0xF1BD\t0x6D32\n0xF1BE\t0x6E4A\n0xF1BF\t0x6F8D\n0xF1C0\t0x70B7\n0xF1C1\t0x73E0\n0xF1C2\t0x7587\n0xF1C3\t0x7C4C\n0xF1C4\t0x7D02\n0xF1C5\t0x7D2C\n0xF1C6\t0x7DA2\n0xF1C7\t0x821F\n0xF1C8\t0x86DB\n0xF1C9\t0x8A3B\n0xF1CA\t0x8A85\n0xF1CB\t0x8D70\n0xF1CC\t0x8E8A\n0xF1CD\t0x8F33\n0xF1CE\t0x9031\n0xF1CF\t0x914E\n0xF1D0\t0x9152\n0xF1D1\t0x9444\n0xF1D2\t0x99D0\n0xF1D3\t0x7AF9\n0xF1D4\t0x7CA5\n0xF1D5\t0x4FCA\n0xF1D6\t0x5101\n0xF1D7\t0x51C6\n0xF1D8\t0x57C8\n0xF1D9\t0x5BEF\n0xF1DA\t0x5CFB\n0xF1DB\t0x6659\n0xF1DC\t0x6A3D\n0xF1DD\t0x6D5A\n0xF1DE\t0x6E96\n0xF1DF\t0x6FEC\n0xF1E0\t0x710C\n0xF1E1\t0x756F\n0xF1E2\t0x7AE3\n0xF1E3\t0x8822\n0xF1E4\t0x9021\n0xF1E5\t0x9075\n0xF1E6\t0x96CB\n0xF1E7\t0x99FF\n0xF1E8\t0x8301\n0xF1E9\t0x4E2D\n0xF1EA\t0x4EF2\n0xF1EB\t0x8846\n0xF1EC\t0x91CD\n0xF1ED\t0x537D\n0xF1EE\t0x6ADB\n0xF1EF\t0x696B\n0xF1F0\t0x6C41\n0xF1F1\t0x847A\n0xF1F2\t0x589E\n0xF1F3\t0x618E\n0xF1F4\t0x66FE\n0xF1F5\t0x62EF\n0xF1F6\t0x70DD\n0xF1F7\t0x7511\n0xF1F8\t0x75C7\n0xF1F9\t0x7E52\n0xF1FA\t0x84B8\n0xF1FB\t0x8B49\n0xF1FC\t0x8D08\n0xF1FD\t0x4E4B\n0xF1FE\t0x53EA\n0xF2A1\t0x54AB\n0xF2A2\t0x5730\n0xF2A3\t0x5740\n0xF2A4\t0x5FD7\n0xF2A5\t0x6301\n0xF2A6\t0x6307\n0xF2A7\t0x646F\n0xF2A8\t0x652F\n0xF2A9\t0x65E8\n0xF2AA\t0x667A\n0xF2AB\t0x679D\n0xF2AC\t0x67B3\n0xF2AD\t0x6B62\n0xF2AE\t0x6C60\n0xF2AF\t0x6C9A\n0xF2B0\t0x6F2C\n0xF2B1\t0x77E5\n0xF2B2\t0x7825\n0xF2B3\t0x7949\n0xF2B4\t0x7957\n0xF2B5\t0x7D19\n0xF2B6\t0x80A2\n0xF2B7\t0x8102\n0xF2B8\t0x81F3\n0xF2B9\t0x829D\n0xF2BA\t0x82B7\n0xF2BB\t0x8718\n0xF2BC\t0x8A8C\n0xF2BD\t0xF9FC\n0xF2BE\t0x8D04\n0xF2BF\t0x8DBE\n0xF2C0\t0x9072\n0xF2C1\t0x76F4\n0xF2C2\t0x7A19\n0xF2C3\t0x7A37\n0xF2C4\t0x7E54\n0xF2C5\t0x8077\n0xF2C6\t0x5507\n0xF2C7\t0x55D4\n0xF2C8\t0x5875\n0xF2C9\t0x632F\n0xF2CA\t0x6422\n0xF2CB\t0x6649\n0xF2CC\t0x664B\n0xF2CD\t0x686D\n0xF2CE\t0x699B\n0xF2CF\t0x6B84\n0xF2D0\t0x6D25\n0xF2D1\t0x6EB1\n0xF2D2\t0x73CD\n0xF2D3\t0x7468\n0xF2D4\t0x74A1\n0xF2D5\t0x755B\n0xF2D6\t0x75B9\n0xF2D7\t0x76E1\n0xF2D8\t0x771E\n0xF2D9\t0x778B\n0xF2DA\t0x79E6\n0xF2DB\t0x7E09\n0xF2DC\t0x7E1D\n0xF2DD\t0x81FB\n0xF2DE\t0x852F\n0xF2DF\t0x8897\n0xF2E0\t0x8A3A\n0xF2E1\t0x8CD1\n0xF2E2\t0x8EEB\n0xF2E3\t0x8FB0\n0xF2E4\t0x9032\n0xF2E5\t0x93AD\n0xF2E6\t0x9663\n0xF2E7\t0x9673\n0xF2E8\t0x9707\n0xF2E9\t0x4F84\n0xF2EA\t0x53F1\n0xF2EB\t0x59EA\n0xF2EC\t0x5AC9\n0xF2ED\t0x5E19\n0xF2EE\t0x684E\n0xF2EF\t0x74C6\n0xF2F0\t0x75BE\n0xF2F1\t0x79E9\n0xF2F2\t0x7A92\n0xF2F3\t0x81A3\n0xF2F4\t0x86ED\n0xF2F5\t0x8CEA\n0xF2F6\t0x8DCC\n0xF2F7\t0x8FED\n0xF2F8\t0x659F\n0xF2F9\t0x6715\n0xF2FA\t0xF9FD\n0xF2FB\t0x57F7\n0xF2FC\t0x6F57\n0xF2FD\t0x7DDD\n0xF2FE\t0x8F2F\n0xF3A1\t0x93F6\n0xF3A2\t0x96C6\n0xF3A3\t0x5FB5\n0xF3A4\t0x61F2\n0xF3A5\t0x6F84\n0xF3A6\t0x4E14\n0xF3A7\t0x4F98\n0xF3A8\t0x501F\n0xF3A9\t0x53C9\n0xF3AA\t0x55DF\n0xF3AB\t0x5D6F\n0xF3AC\t0x5DEE\n0xF3AD\t0x6B21\n0xF3AE\t0x6B64\n0xF3AF\t0x78CB\n0xF3B0\t0x7B9A\n0xF3B1\t0xF9FE\n0xF3B2\t0x8E49\n0xF3B3\t0x8ECA\n0xF3B4\t0x906E\n0xF3B5\t0x6349\n0xF3B6\t0x643E\n0xF3B7\t0x7740\n0xF3B8\t0x7A84\n0xF3B9\t0x932F\n0xF3BA\t0x947F\n0xF3BB\t0x9F6A\n0xF3BC\t0x64B0\n0xF3BD\t0x6FAF\n0xF3BE\t0x71E6\n0xF3BF\t0x74A8\n0xF3C0\t0x74DA\n0xF3C1\t0x7AC4\n0xF3C2\t0x7C12\n0xF3C3\t0x7E82\n0xF3C4\t0x7CB2\n0xF3C5\t0x7E98\n0xF3C6\t0x8B9A\n0xF3C7\t0x8D0A\n0xF3C8\t0x947D\n0xF3C9\t0x9910\n0xF3CA\t0x994C\n0xF3CB\t0x5239\n0xF3CC\t0x5BDF\n0xF3CD\t0x64E6\n0xF3CE\t0x672D\n0xF3CF\t0x7D2E\n0xF3D0\t0x50ED\n0xF3D1\t0x53C3\n0xF3D2\t0x5879\n0xF3D3\t0x6158\n0xF3D4\t0x6159\n0xF3D5\t0x61FA\n0xF3D6\t0x65AC\n0xF3D7\t0x7AD9\n0xF3D8\t0x8B92\n0xF3D9\t0x8B96\n0xF3DA\t0x5009\n0xF3DB\t0x5021\n0xF3DC\t0x5275\n0xF3DD\t0x5531\n0xF3DE\t0x5A3C\n0xF3DF\t0x5EE0\n0xF3E0\t0x5F70\n0xF3E1\t0x6134\n0xF3E2\t0x655E\n0xF3E3\t0x660C\n0xF3E4\t0x6636\n0xF3E5\t0x66A2\n0xF3E6\t0x69CD\n0xF3E7\t0x6EC4\n0xF3E8\t0x6F32\n0xF3E9\t0x7316\n0xF3EA\t0x7621\n0xF3EB\t0x7A93\n0xF3EC\t0x8139\n0xF3ED\t0x8259\n0xF3EE\t0x83D6\n0xF3EF\t0x84BC\n0xF3F0\t0x50B5\n0xF3F1\t0x57F0\n0xF3F2\t0x5BC0\n0xF3F3\t0x5BE8\n0xF3F4\t0x5F69\n0xF3F5\t0x63A1\n0xF3F6\t0x7826\n0xF3F7\t0x7DB5\n0xF3F8\t0x83DC\n0xF3F9\t0x8521\n0xF3FA\t0x91C7\n0xF3FB\t0x91F5\n0xF3FC\t0x518A\n0xF3FD\t0x67F5\n0xF3FE\t0x7B56\n0xF4A1\t0x8CAC\n0xF4A2\t0x51C4\n0xF4A3\t0x59BB\n0xF4A4\t0x60BD\n0xF4A5\t0x8655\n0xF4A6\t0x501C\n0xF4A7\t0xF9FF\n0xF4A8\t0x5254\n0xF4A9\t0x5C3A\n0xF4AA\t0x617D\n0xF4AB\t0x621A\n0xF4AC\t0x62D3\n0xF4AD\t0x64F2\n0xF4AE\t0x65A5\n0xF4AF\t0x6ECC\n0xF4B0\t0x7620\n0xF4B1\t0x810A\n0xF4B2\t0x8E60\n0xF4B3\t0x965F\n0xF4B4\t0x96BB\n0xF4B5\t0x4EDF\n0xF4B6\t0x5343\n0xF4B7\t0x5598\n0xF4B8\t0x5929\n0xF4B9\t0x5DDD\n0xF4BA\t0x64C5\n0xF4BB\t0x6CC9\n0xF4BC\t0x6DFA\n0xF4BD\t0x7394\n0xF4BE\t0x7A7F\n0xF4BF\t0x821B\n0xF4C0\t0x85A6\n0xF4C1\t0x8CE4\n0xF4C2\t0x8E10\n0xF4C3\t0x9077\n0xF4C4\t0x91E7\n0xF4C5\t0x95E1\n0xF4C6\t0x9621\n0xF4C7\t0x97C6\n0xF4C8\t0x51F8\n0xF4C9\t0x54F2\n0xF4CA\t0x5586\n0xF4CB\t0x5FB9\n0xF4CC\t0x64A4\n0xF4CD\t0x6F88\n0xF4CE\t0x7DB4\n0xF4CF\t0x8F1F\n0xF4D0\t0x8F4D\n0xF4D1\t0x9435\n0xF4D2\t0x50C9\n0xF4D3\t0x5C16\n0xF4D4\t0x6CBE\n0xF4D5\t0x6DFB\n0xF4D6\t0x751B\n0xF4D7\t0x77BB\n0xF4D8\t0x7C3D\n0xF4D9\t0x7C64\n0xF4DA\t0x8A79\n0xF4DB\t0x8AC2\n0xF4DC\t0x581E\n0xF4DD\t0x59BE\n0xF4DE\t0x5E16\n0xF4DF\t0x6377\n0xF4E0\t0x7252\n0xF4E1\t0x758A\n0xF4E2\t0x776B\n0xF4E3\t0x8ADC\n0xF4E4\t0x8CBC\n0xF4E5\t0x8F12\n0xF4E6\t0x5EF3\n0xF4E7\t0x6674\n0xF4E8\t0x6DF8\n0xF4E9\t0x807D\n0xF4EA\t0x83C1\n0xF4EB\t0x8ACB\n0xF4EC\t0x9751\n0xF4ED\t0x9BD6\n0xF4EE\t0xFA00\n0xF4EF\t0x5243\n0xF4F0\t0x66FF\n0xF4F1\t0x6D95\n0xF4F2\t0x6EEF\n0xF4F3\t0x7DE0\n0xF4F4\t0x8AE6\n0xF4F5\t0x902E\n0xF4F6\t0x905E\n0xF4F7\t0x9AD4\n0xF4F8\t0x521D\n0xF4F9\t0x527F\n0xF4FA\t0x54E8\n0xF4FB\t0x6194\n0xF4FC\t0x6284\n0xF4FD\t0x62DB\n0xF4FE\t0x68A2\n0xF5A1\t0x6912\n0xF5A2\t0x695A\n0xF5A3\t0x6A35\n0xF5A4\t0x7092\n0xF5A5\t0x7126\n0xF5A6\t0x785D\n0xF5A7\t0x7901\n0xF5A8\t0x790E\n0xF5A9\t0x79D2\n0xF5AA\t0x7A0D\n0xF5AB\t0x8096\n0xF5AC\t0x8278\n0xF5AD\t0x82D5\n0xF5AE\t0x8349\n0xF5AF\t0x8549\n0xF5B0\t0x8C82\n0xF5B1\t0x8D85\n0xF5B2\t0x9162\n0xF5B3\t0x918B\n0xF5B4\t0x91AE\n0xF5B5\t0x4FC3\n0xF5B6\t0x56D1\n0xF5B7\t0x71ED\n0xF5B8\t0x77D7\n0xF5B9\t0x8700\n0xF5BA\t0x89F8\n0xF5BB\t0x5BF8\n0xF5BC\t0x5FD6\n0xF5BD\t0x6751\n0xF5BE\t0x90A8\n0xF5BF\t0x53E2\n0xF5C0\t0x585A\n0xF5C1\t0x5BF5\n0xF5C2\t0x60A4\n0xF5C3\t0x6181\n0xF5C4\t0x6460\n0xF5C5\t0x7E3D\n0xF5C6\t0x8070\n0xF5C7\t0x8525\n0xF5C8\t0x9283\n0xF5C9\t0x64AE\n0xF5CA\t0x50AC\n0xF5CB\t0x5D14\n0xF5CC\t0x6700\n0xF5CD\t0x589C\n0xF5CE\t0x62BD\n0xF5CF\t0x63A8\n0xF5D0\t0x690E\n0xF5D1\t0x6978\n0xF5D2\t0x6A1E\n0xF5D3\t0x6E6B\n0xF5D4\t0x76BA\n0xF5D5\t0x79CB\n0xF5D6\t0x82BB\n0xF5D7\t0x8429\n0xF5D8\t0x8ACF\n0xF5D9\t0x8DA8\n0xF5DA\t0x8FFD\n0xF5DB\t0x9112\n0xF5DC\t0x914B\n0xF5DD\t0x919C\n0xF5DE\t0x9310\n0xF5DF\t0x9318\n0xF5E0\t0x939A\n0xF5E1\t0x96DB\n0xF5E2\t0x9A36\n0xF5E3\t0x9C0D\n0xF5E4\t0x4E11\n0xF5E5\t0x755C\n0xF5E6\t0x795D\n0xF5E7\t0x7AFA\n0xF5E8\t0x7B51\n0xF5E9\t0x7BC9\n0xF5EA\t0x7E2E\n0xF5EB\t0x84C4\n0xF5EC\t0x8E59\n0xF5ED\t0x8E74\n0xF5EE\t0x8EF8\n0xF5EF\t0x9010\n0xF5F0\t0x6625\n0xF5F1\t0x693F\n0xF5F2\t0x7443\n0xF5F3\t0x51FA\n0xF5F4\t0x672E\n0xF5F5\t0x9EDC\n0xF5F6\t0x5145\n0xF5F7\t0x5FE0\n0xF5F8\t0x6C96\n0xF5F9\t0x87F2\n0xF5FA\t0x885D\n0xF5FB\t0x8877\n0xF5FC\t0x60B4\n0xF5FD\t0x81B5\n0xF5FE\t0x8403\n0xF6A1\t0x8D05\n0xF6A2\t0x53D6\n0xF6A3\t0x5439\n0xF6A4\t0x5634\n0xF6A5\t0x5A36\n0xF6A6\t0x5C31\n0xF6A7\t0x708A\n0xF6A8\t0x7FE0\n0xF6A9\t0x805A\n0xF6AA\t0x8106\n0xF6AB\t0x81ED\n0xF6AC\t0x8DA3\n0xF6AD\t0x9189\n0xF6AE\t0x9A5F\n0xF6AF\t0x9DF2\n0xF6B0\t0x5074\n0xF6B1\t0x4EC4\n0xF6B2\t0x53A0\n0xF6B3\t0x60FB\n0xF6B4\t0x6E2C\n0xF6B5\t0x5C64\n0xF6B6\t0x4F88\n0xF6B7\t0x5024\n0xF6B8\t0x55E4\n0xF6B9\t0x5CD9\n0xF6BA\t0x5E5F\n0xF6BB\t0x6065\n0xF6BC\t0x6894\n0xF6BD\t0x6CBB\n0xF6BE\t0x6DC4\n0xF6BF\t0x71BE\n0xF6C0\t0x75D4\n0xF6C1\t0x75F4\n0xF6C2\t0x7661\n0xF6C3\t0x7A1A\n0xF6C4\t0x7A49\n0xF6C5\t0x7DC7\n0xF6C6\t0x7DFB\n0xF6C7\t0x7F6E\n0xF6C8\t0x81F4\n0xF6C9\t0x86A9\n0xF6CA\t0x8F1C\n0xF6CB\t0x96C9\n0xF6CC\t0x99B3\n0xF6CD\t0x9F52\n0xF6CE\t0x5247\n0xF6CF\t0x52C5\n0xF6D0\t0x98ED\n0xF6D1\t0x89AA\n0xF6D2\t0x4E03\n0xF6D3\t0x67D2\n0xF6D4\t0x6F06\n0xF6D5\t0x4FB5\n0xF6D6\t0x5BE2\n0xF6D7\t0x6795\n0xF6D8\t0x6C88\n0xF6D9\t0x6D78\n0xF6DA\t0x741B\n0xF6DB\t0x7827\n0xF6DC\t0x91DD\n0xF6DD\t0x937C\n0xF6DE\t0x87C4\n0xF6DF\t0x79E4\n0xF6E0\t0x7A31\n0xF6E1\t0x5FEB\n0xF6E2\t0x4ED6\n0xF6E3\t0x54A4\n0xF6E4\t0x553E\n0xF6E5\t0x58AE\n0xF6E6\t0x59A5\n0xF6E7\t0x60F0\n0xF6E8\t0x6253\n0xF6E9\t0x62D6\n0xF6EA\t0x6736\n0xF6EB\t0x6955\n0xF6EC\t0x8235\n0xF6ED\t0x9640\n0xF6EE\t0x99B1\n0xF6EF\t0x99DD\n0xF6F0\t0x502C\n0xF6F1\t0x5353\n0xF6F2\t0x5544\n0xF6F3\t0x577C\n0xF6F4\t0xFA01\n0xF6F5\t0x6258\n0xF6F6\t0xFA02\n0xF6F7\t0x64E2\n0xF6F8\t0x666B\n0xF6F9\t0x67DD\n0xF6FA\t0x6FC1\n0xF6FB\t0x6FEF\n0xF6FC\t0x7422\n0xF6FD\t0x7438\n0xF6FE\t0x8A17\n0xF7A1\t0x9438\n0xF7A2\t0x5451\n0xF7A3\t0x5606\n0xF7A4\t0x5766\n0xF7A5\t0x5F48\n0xF7A6\t0x619A\n0xF7A7\t0x6B4E\n0xF7A8\t0x7058\n0xF7A9\t0x70AD\n0xF7AA\t0x7DBB\n0xF7AB\t0x8A95\n0xF7AC\t0x596A\n0xF7AD\t0x812B\n0xF7AE\t0x63A2\n0xF7AF\t0x7708\n0xF7B0\t0x803D\n0xF7B1\t0x8CAA\n0xF7B2\t0x5854\n0xF7B3\t0x642D\n0xF7B4\t0x69BB\n0xF7B5\t0x5B95\n0xF7B6\t0x5E11\n0xF7B7\t0x6E6F\n0xF7B8\t0xFA03\n0xF7B9\t0x8569\n0xF7BA\t0x514C\n0xF7BB\t0x53F0\n0xF7BC\t0x592A\n0xF7BD\t0x6020\n0xF7BE\t0x614B\n0xF7BF\t0x6B86\n0xF7C0\t0x6C70\n0xF7C1\t0x6CF0\n0xF7C2\t0x7B1E\n0xF7C3\t0x80CE\n0xF7C4\t0x82D4\n0xF7C5\t0x8DC6\n0xF7C6\t0x90B0\n0xF7C7\t0x98B1\n0xF7C8\t0xFA04\n0xF7C9\t0x64C7\n0xF7CA\t0x6FA4\n0xF7CB\t0x6491\n0xF7CC\t0x6504\n0xF7CD\t0x514E\n0xF7CE\t0x5410\n0xF7CF\t0x571F\n0xF7D0\t0x8A0E\n0xF7D1\t0x615F\n0xF7D2\t0x6876\n0xF7D3\t0xFA05\n0xF7D4\t0x75DB\n0xF7D5\t0x7B52\n0xF7D6\t0x7D71\n0xF7D7\t0x901A\n0xF7D8\t0x5806\n0xF7D9\t0x69CC\n0xF7DA\t0x817F\n0xF7DB\t0x892A\n0xF7DC\t0x9000\n0xF7DD\t0x9839\n0xF7DE\t0x5078\n0xF7DF\t0x5957\n0xF7E0\t0x59AC\n0xF7E1\t0x6295\n0xF7E2\t0x900F\n0xF7E3\t0x9B2A\n0xF7E4\t0x615D\n0xF7E5\t0x7279\n0xF7E6\t0x95D6\n0xF7E7\t0x5761\n0xF7E8\t0x5A46\n0xF7E9\t0x5DF4\n0xF7EA\t0x628A\n0xF7EB\t0x64AD\n0xF7EC\t0x64FA\n0xF7ED\t0x6777\n0xF7EE\t0x6CE2\n0xF7EF\t0x6D3E\n0xF7F0\t0x722C\n0xF7F1\t0x7436\n0xF7F2\t0x7834\n0xF7F3\t0x7F77\n0xF7F4\t0x82AD\n0xF7F5\t0x8DDB\n0xF7F6\t0x9817\n0xF7F7\t0x5224\n0xF7F8\t0x5742\n0xF7F9\t0x677F\n0xF7FA\t0x7248\n0xF7FB\t0x74E3\n0xF7FC\t0x8CA9\n0xF7FD\t0x8FA6\n0xF7FE\t0x9211\n0xF8A1\t0x962A\n0xF8A2\t0x516B\n0xF8A3\t0x53ED\n0xF8A4\t0x634C\n0xF8A5\t0x4F69\n0xF8A6\t0x5504\n0xF8A7\t0x6096\n0xF8A8\t0x6557\n0xF8A9\t0x6C9B\n0xF8AA\t0x6D7F\n0xF8AB\t0x724C\n0xF8AC\t0x72FD\n0xF8AD\t0x7A17\n0xF8AE\t0x8987\n0xF8AF\t0x8C9D\n0xF8B0\t0x5F6D\n0xF8B1\t0x6F8E\n0xF8B2\t0x70F9\n0xF8B3\t0x81A8\n0xF8B4\t0x610E\n0xF8B5\t0x4FBF\n0xF8B6\t0x504F\n0xF8B7\t0x6241\n0xF8B8\t0x7247\n0xF8B9\t0x7BC7\n0xF8BA\t0x7DE8\n0xF8BB\t0x7FE9\n0xF8BC\t0x904D\n0xF8BD\t0x97AD\n0xF8BE\t0x9A19\n0xF8BF\t0x8CB6\n0xF8C0\t0x576A\n0xF8C1\t0x5E73\n0xF8C2\t0x67B0\n0xF8C3\t0x840D\n0xF8C4\t0x8A55\n0xF8C5\t0x5420\n0xF8C6\t0x5B16\n0xF8C7\t0x5E63\n0xF8C8\t0x5EE2\n0xF8C9\t0x5F0A\n0xF8CA\t0x6583\n0xF8CB\t0x80BA\n0xF8CC\t0x853D\n0xF8CD\t0x9589\n0xF8CE\t0x965B\n0xF8CF\t0x4F48\n0xF8D0\t0x5305\n0xF8D1\t0x530D\n0xF8D2\t0x530F\n0xF8D3\t0x5486\n0xF8D4\t0x54FA\n0xF8D5\t0x5703\n0xF8D6\t0x5E03\n0xF8D7\t0x6016\n0xF8D8\t0x629B\n0xF8D9\t0x62B1\n0xF8DA\t0x6355\n0xF8DB\t0xFA06\n0xF8DC\t0x6CE1\n0xF8DD\t0x6D66\n0xF8DE\t0x75B1\n0xF8DF\t0x7832\n0xF8E0\t0x80DE\n0xF8E1\t0x812F\n0xF8E2\t0x82DE\n0xF8E3\t0x8461\n0xF8E4\t0x84B2\n0xF8E5\t0x888D\n0xF8E6\t0x8912\n0xF8E7\t0x900B\n0xF8E8\t0x92EA\n0xF8E9\t0x98FD\n0xF8EA\t0x9B91\n0xF8EB\t0x5E45\n0xF8EC\t0x66B4\n0xF8ED\t0x66DD\n0xF8EE\t0x7011\n0xF8EF\t0x7206\n0xF8F0\t0xFA07\n0xF8F1\t0x4FF5\n0xF8F2\t0x527D\n0xF8F3\t0x5F6A\n0xF8F4\t0x6153\n0xF8F5\t0x6753\n0xF8F6\t0x6A19\n0xF8F7\t0x6F02\n0xF8F8\t0x74E2\n0xF8F9\t0x7968\n0xF8FA\t0x8868\n0xF8FB\t0x8C79\n0xF8FC\t0x98C7\n0xF8FD\t0x98C4\n0xF8FE\t0x9A43\n0xF9A1\t0x54C1\n0xF9A2\t0x7A1F\n0xF9A3\t0x6953\n0xF9A4\t0x8AF7\n0xF9A5\t0x8C4A\n0xF9A6\t0x98A8\n0xF9A7\t0x99AE\n0xF9A8\t0x5F7C\n0xF9A9\t0x62AB\n0xF9AA\t0x75B2\n0xF9AB\t0x76AE\n0xF9AC\t0x88AB\n0xF9AD\t0x907F\n0xF9AE\t0x9642\n0xF9AF\t0x5339\n0xF9B0\t0x5F3C\n0xF9B1\t0x5FC5\n0xF9B2\t0x6CCC\n0xF9B3\t0x73CC\n0xF9B4\t0x7562\n0xF9B5\t0x758B\n0xF9B6\t0x7B46\n0xF9B7\t0x82FE\n0xF9B8\t0x999D\n0xF9B9\t0x4E4F\n0xF9BA\t0x903C\n0xF9BB\t0x4E0B\n0xF9BC\t0x4F55\n0xF9BD\t0x53A6\n0xF9BE\t0x590F\n0xF9BF\t0x5EC8\n0xF9C0\t0x6630\n0xF9C1\t0x6CB3\n0xF9C2\t0x7455\n0xF9C3\t0x8377\n0xF9C4\t0x8766\n0xF9C5\t0x8CC0\n0xF9C6\t0x9050\n0xF9C7\t0x971E\n0xF9C8\t0x9C15\n0xF9C9\t0x58D1\n0xF9CA\t0x5B78\n0xF9CB\t0x8650\n0xF9CC\t0x8B14\n0xF9CD\t0x9DB4\n0xF9CE\t0x5BD2\n0xF9CF\t0x6068\n0xF9D0\t0x608D\n0xF9D1\t0x65F1\n0xF9D2\t0x6C57\n0xF9D3\t0x6F22\n0xF9D4\t0x6FA3\n0xF9D5\t0x701A\n0xF9D6\t0x7F55\n0xF9D7\t0x7FF0\n0xF9D8\t0x9591\n0xF9D9\t0x9592\n0xF9DA\t0x9650\n0xF9DB\t0x97D3\n0xF9DC\t0x5272\n0xF9DD\t0x8F44\n0xF9DE\t0x51FD\n0xF9DF\t0x542B\n0xF9E0\t0x54B8\n0xF9E1\t0x5563\n0xF9E2\t0x558A\n0xF9E3\t0x6ABB\n0xF9E4\t0x6DB5\n0xF9E5\t0x7DD8\n0xF9E6\t0x8266\n0xF9E7\t0x929C\n0xF9E8\t0x9677\n0xF9E9\t0x9E79\n0xF9EA\t0x5408\n0xF9EB\t0x54C8\n0xF9EC\t0x76D2\n0xF9ED\t0x86E4\n0xF9EE\t0x95A4\n0xF9EF\t0x95D4\n0xF9F0\t0x965C\n0xF9F1\t0x4EA2\n0xF9F2\t0x4F09\n0xF9F3\t0x59EE\n0xF9F4\t0x5AE6\n0xF9F5\t0x5DF7\n0xF9F6\t0x6052\n0xF9F7\t0x6297\n0xF9F8\t0x676D\n0xF9F9\t0x6841\n0xF9FA\t0x6C86\n0xF9FB\t0x6E2F\n0xF9FC\t0x7F38\n0xF9FD\t0x809B\n0xF9FE\t0x822A\n0xFAA1\t0xFA08\n0xFAA2\t0xFA09\n0xFAA3\t0x9805\n0xFAA4\t0x4EA5\n0xFAA5\t0x5055\n0xFAA6\t0x54B3\n0xFAA7\t0x5793\n0xFAA8\t0x595A\n0xFAA9\t0x5B69\n0xFAAA\t0x5BB3\n0xFAAB\t0x61C8\n0xFAAC\t0x6977\n0xFAAD\t0x6D77\n0xFAAE\t0x7023\n0xFAAF\t0x87F9\n0xFAB0\t0x89E3\n0xFAB1\t0x8A72\n0xFAB2\t0x8AE7\n0xFAB3\t0x9082\n0xFAB4\t0x99ED\n0xFAB5\t0x9AB8\n0xFAB6\t0x52BE\n0xFAB7\t0x6838\n0xFAB8\t0x5016\n0xFAB9\t0x5E78\n0xFABA\t0x674F\n0xFABB\t0x8347\n0xFABC\t0x884C\n0xFABD\t0x4EAB\n0xFABE\t0x5411\n0xFABF\t0x56AE\n0xFAC0\t0x73E6\n0xFAC1\t0x9115\n0xFAC2\t0x97FF\n0xFAC3\t0x9909\n0xFAC4\t0x9957\n0xFAC5\t0x9999\n0xFAC6\t0x5653\n0xFAC7\t0x589F\n0xFAC8\t0x865B\n0xFAC9\t0x8A31\n0xFACA\t0x61B2\n0xFACB\t0x6AF6\n0xFACC\t0x737B\n0xFACD\t0x8ED2\n0xFACE\t0x6B47\n0xFACF\t0x96AA\n0xFAD0\t0x9A57\n0xFAD1\t0x5955\n0xFAD2\t0x7200\n0xFAD3\t0x8D6B\n0xFAD4\t0x9769\n0xFAD5\t0x4FD4\n0xFAD6\t0x5CF4\n0xFAD7\t0x5F26\n0xFAD8\t0x61F8\n0xFAD9\t0x665B\n0xFADA\t0x6CEB\n0xFADB\t0x70AB\n0xFADC\t0x7384\n0xFADD\t0x73B9\n0xFADE\t0x73FE\n0xFADF\t0x7729\n0xFAE0\t0x774D\n0xFAE1\t0x7D43\n0xFAE2\t0x7D62\n0xFAE3\t0x7E23\n0xFAE4\t0x8237\n0xFAE5\t0x8852\n0xFAE6\t0xFA0A\n0xFAE7\t0x8CE2\n0xFAE8\t0x9249\n0xFAE9\t0x986F\n0xFAEA\t0x5B51\n0xFAEB\t0x7A74\n0xFAEC\t0x8840\n0xFAED\t0x9801\n0xFAEE\t0x5ACC\n0xFAEF\t0x4FE0\n0xFAF0\t0x5354\n0xFAF1\t0x593E\n0xFAF2\t0x5CFD\n0xFAF3\t0x633E\n0xFAF4\t0x6D79\n0xFAF5\t0x72F9\n0xFAF6\t0x8105\n0xFAF7\t0x8107\n0xFAF8\t0x83A2\n0xFAF9\t0x92CF\n0xFAFA\t0x9830\n0xFAFB\t0x4EA8\n0xFAFC\t0x5144\n0xFAFD\t0x5211\n0xFAFE\t0x578B\n0xFBA1\t0x5F62\n0xFBA2\t0x6CC2\n0xFBA3\t0x6ECE\n0xFBA4\t0x7005\n0xFBA5\t0x7050\n0xFBA6\t0x70AF\n0xFBA7\t0x7192\n0xFBA8\t0x73E9\n0xFBA9\t0x7469\n0xFBAA\t0x834A\n0xFBAB\t0x87A2\n0xFBAC\t0x8861\n0xFBAD\t0x9008\n0xFBAE\t0x90A2\n0xFBAF\t0x93A3\n0xFBB0\t0x99A8\n0xFBB1\t0x516E\n0xFBB2\t0x5F57\n0xFBB3\t0x60E0\n0xFBB4\t0x6167\n0xFBB5\t0x66B3\n0xFBB6\t0x8559\n0xFBB7\t0x8E4A\n0xFBB8\t0x91AF\n0xFBB9\t0x978B\n0xFBBA\t0x4E4E\n0xFBBB\t0x4E92\n0xFBBC\t0x547C\n0xFBBD\t0x58D5\n0xFBBE\t0x58FA\n0xFBBF\t0x597D\n0xFBC0\t0x5CB5\n0xFBC1\t0x5F27\n0xFBC2\t0x6236\n0xFBC3\t0x6248\n0xFBC4\t0x660A\n0xFBC5\t0x6667\n0xFBC6\t0x6BEB\n0xFBC7\t0x6D69\n0xFBC8\t0x6DCF\n0xFBC9\t0x6E56\n0xFBCA\t0x6EF8\n0xFBCB\t0x6F94\n0xFBCC\t0x6FE0\n0xFBCD\t0x6FE9\n0xFBCE\t0x705D\n0xFBCF\t0x72D0\n0xFBD0\t0x7425\n0xFBD1\t0x745A\n0xFBD2\t0x74E0\n0xFBD3\t0x7693\n0xFBD4\t0x795C\n0xFBD5\t0x7CCA\n0xFBD6\t0x7E1E\n0xFBD7\t0x80E1\n0xFBD8\t0x82A6\n0xFBD9\t0x846B\n0xFBDA\t0x84BF\n0xFBDB\t0x864E\n0xFBDC\t0x865F\n0xFBDD\t0x8774\n0xFBDE\t0x8B77\n0xFBDF\t0x8C6A\n0xFBE0\t0x93AC\n0xFBE1\t0x9800\n0xFBE2\t0x9865\n0xFBE3\t0x60D1\n0xFBE4\t0x6216\n0xFBE5\t0x9177\n0xFBE6\t0x5A5A\n0xFBE7\t0x660F\n0xFBE8\t0x6DF7\n0xFBE9\t0x6E3E\n0xFBEA\t0x743F\n0xFBEB\t0x9B42\n0xFBEC\t0x5FFD\n0xFBED\t0x60DA\n0xFBEE\t0x7B0F\n0xFBEF\t0x54C4\n0xFBF0\t0x5F18\n0xFBF1\t0x6C5E\n0xFBF2\t0x6CD3\n0xFBF3\t0x6D2A\n0xFBF4\t0x70D8\n0xFBF5\t0x7D05\n0xFBF6\t0x8679\n0xFBF7\t0x8A0C\n0xFBF8\t0x9D3B\n0xFBF9\t0x5316\n0xFBFA\t0x548C\n0xFBFB\t0x5B05\n0xFBFC\t0x6A3A\n0xFBFD\t0x706B\n0xFBFE\t0x7575\n0xFCA1\t0x798D\n0xFCA2\t0x79BE\n0xFCA3\t0x82B1\n0xFCA4\t0x83EF\n0xFCA5\t0x8A71\n0xFCA6\t0x8B41\n0xFCA7\t0x8CA8\n0xFCA8\t0x9774\n0xFCA9\t0xFA0B\n0xFCAA\t0x64F4\n0xFCAB\t0x652B\n0xFCAC\t0x78BA\n0xFCAD\t0x78BB\n0xFCAE\t0x7A6B\n0xFCAF\t0x4E38\n0xFCB0\t0x559A\n0xFCB1\t0x5950\n0xFCB2\t0x5BA6\n0xFCB3\t0x5E7B\n0xFCB4\t0x60A3\n0xFCB5\t0x63DB\n0xFCB6\t0x6B61\n0xFCB7\t0x6665\n0xFCB8\t0x6853\n0xFCB9\t0x6E19\n0xFCBA\t0x7165\n0xFCBB\t0x74B0\n0xFCBC\t0x7D08\n0xFCBD\t0x9084\n0xFCBE\t0x9A69\n0xFCBF\t0x9C25\n0xFCC0\t0x6D3B\n0xFCC1\t0x6ED1\n0xFCC2\t0x733E\n0xFCC3\t0x8C41\n0xFCC4\t0x95CA\n0xFCC5\t0x51F0\n0xFCC6\t0x5E4C\n0xFCC7\t0x5FA8\n0xFCC8\t0x604D\n0xFCC9\t0x60F6\n0xFCCA\t0x6130\n0xFCCB\t0x614C\n0xFCCC\t0x6643\n0xFCCD\t0x6644\n0xFCCE\t0x69A5\n0xFCCF\t0x6CC1\n0xFCD0\t0x6E5F\n0xFCD1\t0x6EC9\n0xFCD2\t0x6F62\n0xFCD3\t0x714C\n0xFCD4\t0x749C\n0xFCD5\t0x7687\n0xFCD6\t0x7BC1\n0xFCD7\t0x7C27\n0xFCD8\t0x8352\n0xFCD9\t0x8757\n0xFCDA\t0x9051\n0xFCDB\t0x968D\n0xFCDC\t0x9EC3\n0xFCDD\t0x532F\n0xFCDE\t0x56DE\n0xFCDF\t0x5EFB\n0xFCE0\t0x5F8A\n0xFCE1\t0x6062\n0xFCE2\t0x6094\n0xFCE3\t0x61F7\n0xFCE4\t0x6666\n0xFCE5\t0x6703\n0xFCE6\t0x6A9C\n0xFCE7\t0x6DEE\n0xFCE8\t0x6FAE\n0xFCE9\t0x7070\n0xFCEA\t0x736A\n0xFCEB\t0x7E6A\n0xFCEC\t0x81BE\n0xFCED\t0x8334\n0xFCEE\t0x86D4\n0xFCEF\t0x8AA8\n0xFCF0\t0x8CC4\n0xFCF1\t0x5283\n0xFCF2\t0x7372\n0xFCF3\t0x5B96\n0xFCF4\t0x6A6B\n0xFCF5\t0x9404\n0xFCF6\t0x54EE\n0xFCF7\t0x5686\n0xFCF8\t0x5B5D\n0xFCF9\t0x6548\n0xFCFA\t0x6585\n0xFCFB\t0x66C9\n0xFCFC\t0x689F\n0xFCFD\t0x6D8D\n0xFCFE\t0x6DC6\n0xFDA1\t0x723B\n0xFDA2\t0x80B4\n0xFDA3\t0x9175\n0xFDA4\t0x9A4D\n0xFDA5\t0x4FAF\n0xFDA6\t0x5019\n0xFDA7\t0x539A\n0xFDA8\t0x540E\n0xFDA9\t0x543C\n0xFDAA\t0x5589\n0xFDAB\t0x55C5\n0xFDAC\t0x5E3F\n0xFDAD\t0x5F8C\n0xFDAE\t0x673D\n0xFDAF\t0x7166\n0xFDB0\t0x73DD\n0xFDB1\t0x9005\n0xFDB2\t0x52DB\n0xFDB3\t0x52F3\n0xFDB4\t0x5864\n0xFDB5\t0x58CE\n0xFDB6\t0x7104\n0xFDB7\t0x718F\n0xFDB8\t0x71FB\n0xFDB9\t0x85B0\n0xFDBA\t0x8A13\n0xFDBB\t0x6688\n0xFDBC\t0x85A8\n0xFDBD\t0x55A7\n0xFDBE\t0x6684\n0xFDBF\t0x714A\n0xFDC0\t0x8431\n0xFDC1\t0x5349\n0xFDC2\t0x5599\n0xFDC3\t0x6BC1\n0xFDC4\t0x5F59\n0xFDC5\t0x5FBD\n0xFDC6\t0x63EE\n0xFDC7\t0x6689\n0xFDC8\t0x7147\n0xFDC9\t0x8AF1\n0xFDCA\t0x8F1D\n0xFDCB\t0x9EBE\n0xFDCC\t0x4F11\n0xFDCD\t0x643A\n0xFDCE\t0x70CB\n0xFDCF\t0x7566\n0xFDD0\t0x8667\n0xFDD1\t0x6064\n0xFDD2\t0x8B4E\n0xFDD3\t0x9DF8\n0xFDD4\t0x5147\n0xFDD5\t0x51F6\n0xFDD6\t0x5308\n0xFDD7\t0x6D36\n0xFDD8\t0x80F8\n0xFDD9\t0x9ED1\n0xFDDA\t0x6615\n0xFDDB\t0x6B23\n0xFDDC\t0x7098\n0xFDDD\t0x75D5\n0xFDDE\t0x5403\n0xFDDF\t0x5C79\n0xFDE0\t0x7D07\n0xFDE1\t0x8A16\n0xFDE2\t0x6B20\n0xFDE3\t0x6B3D\n0xFDE4\t0x6B46\n0xFDE5\t0x5438\n0xFDE6\t0x6070\n0xFDE7\t0x6D3D\n0xFDE8\t0x7FD5\n0xFDE9\t0x8208\n0xFDEA\t0x50D6\n0xFDEB\t0x51DE\n0xFDEC\t0x559C\n0xFDED\t0x566B\n0xFDEE\t0x56CD\n0xFDEF\t0x59EC\n0xFDF0\t0x5B09\n0xFDF1\t0x5E0C\n0xFDF2\t0x6199\n0xFDF3\t0x6198\n0xFDF4\t0x6231\n0xFDF5\t0x665E\n0xFDF6\t0x66E6\n0xFDF7\t0x7199\n0xFDF8\t0x71B9\n0xFDF9\t0x71BA\n0xFDFA\t0x72A7\n0xFDFB\t0x79A7\n0xFDFC\t0x7A00\n0xFDFD\t0x7FB2\n0xFDFE\t0x8A70\n0xFEA1\t0xE05E\n0xFEA2\t0xE05F\n0xFEA3\t0xE060\n0xFEA4\t0xE061\n0xFEA5\t0xE062\n0xFEA6\t0xE063\n0xFEA7\t0xE064\n0xFEA8\t0xE065\n0xFEA9\t0xE066\n0xFEAA\t0xE067\n0xFEAB\t0xE068\n0xFEAC\t0xE069\n0xFEAD\t0xE06A\n0xFEAE\t0xE06B\n0xFEAF\t0xE06C\n0xFEB0\t0xE06D\n0xFEB1\t0xE06E\n0xFEB2\t0xE06F\n0xFEB3\t0xE070\n0xFEB4\t0xE071\n0xFEB5\t0xE072\n0xFEB6\t0xE073\n0xFEB7\t0xE074\n0xFEB8\t0xE075\n0xFEB9\t0xE076\n0xFEBA\t0xE077\n0xFEBB\t0xE078\n0xFEBC\t0xE079\n0xFEBD\t0xE07A\n0xFEBE\t0xE07B\n0xFEBF\t0xE07C\n0xFEC0\t0xE07D\n0xFEC1\t0xE07E\n0xFEC2\t0xE07F\n0xFEC3\t0xE080\n0xFEC4\t0xE081\n0xFEC5\t0xE082\n0xFEC6\t0xE083\n0xFEC7\t0xE084\n0xFEC8\t0xE085\n0xFEC9\t0xE086\n0xFECA\t0xE087\n0xFECB\t0xE088\n0xFECC\t0xE089\n0xFECD\t0xE08A\n0xFECE\t0xE08B\n0xFECF\t0xE08C\n0xFED0\t0xE08D\n0xFED1\t0xE08E\n0xFED2\t0xE08F\n0xFED3\t0xE090\n0xFED4\t0xE091\n0xFED5\t0xE092\n0xFED6\t0xE093\n0xFED7\t0xE094\n0xFED8\t0xE095\n0xFED9\t0xE096\n0xFEDA\t0xE097\n0xFEDB\t0xE098\n0xFEDC\t0xE099\n0xFEDD\t0xE09A\n0xFEDE\t0xE09B\n0xFEDF\t0xE09C\n0xFEE0\t0xE09D\n0xFEE1\t0xE09E\n0xFEE2\t0xE09F\n0xFEE3\t0xE0A0\n0xFEE4\t0xE0A1\n0xFEE5\t0xE0A2\n0xFEE6\t0xE0A3\n0xFEE7\t0xE0A4\n0xFEE8\t0xE0A5\n0xFEE9\t0xE0A6\n0xFEEA\t0xE0A7\n0xFEEB\t0xE0A8\n0xFEEC\t0xE0A9\n0xFEED\t0xE0AA\n0xFEEE\t0xE0AB\n0xFEEF\t0xE0AC\n0xFEF0\t0xE0AD\n0xFEF1\t0xE0AE\n0xFEF2\t0xE0AF\n0xFEF3\t0xE0B0\n0xFEF4\t0xE0B1\n0xFEF5\t0xE0B2\n0xFEF6\t0xE0B3\n0xFEF7\t0xE0B4\n0xFEF8\t0xE0B5\n0xFEF9\t0xE0B6\n0xFEFA\t0xE0B7\n0xFEFB\t0xE0B8\n0xFEFC\t0xE0B9\n0xFEFD\t0xE0BA\n0xFEFE\t0xE0BB\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP950.IRREVERSIBLE.TXT",
    "content": "0xA244\t0x00A5\n0xA2CC\t0x5341\n0xA2CE\t0x5345\n0xF9E9\t0x255E\n0xF9EA\t0x256A\n0xF9EB\t0x2561\n0xF9F9\t0x2550\n0xF9FA\t0x256D\n0xF9FB\t0x256E\n0xF9FC\t0x2570\n0xF9FD\t0x256F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/CP950.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8140\t0xEEB8\n0x8141\t0xEEB9\n0x8142\t0xEEBA\n0x8143\t0xEEBB\n0x8144\t0xEEBC\n0x8145\t0xEEBD\n0x8146\t0xEEBE\n0x8147\t0xEEBF\n0x8148\t0xEEC0\n0x8149\t0xEEC1\n0x814A\t0xEEC2\n0x814B\t0xEEC3\n0x814C\t0xEEC4\n0x814D\t0xEEC5\n0x814E\t0xEEC6\n0x814F\t0xEEC7\n0x8150\t0xEEC8\n0x8151\t0xEEC9\n0x8152\t0xEECA\n0x8153\t0xEECB\n0x8154\t0xEECC\n0x8155\t0xEECD\n0x8156\t0xEECE\n0x8157\t0xEECF\n0x8158\t0xEED0\n0x8159\t0xEED1\n0x815A\t0xEED2\n0x815B\t0xEED3\n0x815C\t0xEED4\n0x815D\t0xEED5\n0x815E\t0xEED6\n0x815F\t0xEED7\n0x8160\t0xEED8\n0x8161\t0xEED9\n0x8162\t0xEEDA\n0x8163\t0xEEDB\n0x8164\t0xEEDC\n0x8165\t0xEEDD\n0x8166\t0xEEDE\n0x8167\t0xEEDF\n0x8168\t0xEEE0\n0x8169\t0xEEE1\n0x816A\t0xEEE2\n0x816B\t0xEEE3\n0x816C\t0xEEE4\n0x816D\t0xEEE5\n0x816E\t0xEEE6\n0x816F\t0xEEE7\n0x8170\t0xEEE8\n0x8171\t0xEEE9\n0x8172\t0xEEEA\n0x8173\t0xEEEB\n0x8174\t0xEEEC\n0x8175\t0xEEED\n0x8176\t0xEEEE\n0x8177\t0xEEEF\n0x8178\t0xEEF0\n0x8179\t0xEEF1\n0x817A\t0xEEF2\n0x817B\t0xEEF3\n0x817C\t0xEEF4\n0x817D\t0xEEF5\n0x817E\t0xEEF6\n0x81A1\t0xEEF7\n0x81A2\t0xEEF8\n0x81A3\t0xEEF9\n0x81A4\t0xEEFA\n0x81A5\t0xEEFB\n0x81A6\t0xEEFC\n0x81A7\t0xEEFD\n0x81A8\t0xEEFE\n0x81A9\t0xEEFF\n0x81AA\t0xEF00\n0x81AB\t0xEF01\n0x81AC\t0xEF02\n0x81AD\t0xEF03\n0x81AE\t0xEF04\n0x81AF\t0xEF05\n0x81B0\t0xEF06\n0x81B1\t0xEF07\n0x81B2\t0xEF08\n0x81B3\t0xEF09\n0x81B4\t0xEF0A\n0x81B5\t0xEF0B\n0x81B6\t0xEF0C\n0x81B7\t0xEF0D\n0x81B8\t0xEF0E\n0x81B9\t0xEF0F\n0x81BA\t0xEF10\n0x81BB\t0xEF11\n0x81BC\t0xEF12\n0x81BD\t0xEF13\n0x81BE\t0xEF14\n0x81BF\t0xEF15\n0x81C0\t0xEF16\n0x81C1\t0xEF17\n0x81C2\t0xEF18\n0x81C3\t0xEF19\n0x81C4\t0xEF1A\n0x81C5\t0xEF1B\n0x81C6\t0xEF1C\n0x81C7\t0xEF1D\n0x81C8\t0xEF1E\n0x81C9\t0xEF1F\n0x81CA\t0xEF20\n0x81CB\t0xEF21\n0x81CC\t0xEF22\n0x81CD\t0xEF23\n0x81CE\t0xEF24\n0x81CF\t0xEF25\n0x81D0\t0xEF26\n0x81D1\t0xEF27\n0x81D2\t0xEF28\n0x81D3\t0xEF29\n0x81D4\t0xEF2A\n0x81D5\t0xEF2B\n0x81D6\t0xEF2C\n0x81D7\t0xEF2D\n0x81D8\t0xEF2E\n0x81D9\t0xEF2F\n0x81DA\t0xEF30\n0x81DB\t0xEF31\n0x81DC\t0xEF32\n0x81DD\t0xEF33\n0x81DE\t0xEF34\n0x81DF\t0xEF35\n0x81E0\t0xEF36\n0x81E1\t0xEF37\n0x81E2\t0xEF38\n0x81E3\t0xEF39\n0x81E4\t0xEF3A\n0x81E5\t0xEF3B\n0x81E6\t0xEF3C\n0x81E7\t0xEF3D\n0x81E8\t0xEF3E\n0x81E9\t0xEF3F\n0x81EA\t0xEF40\n0x81EB\t0xEF41\n0x81EC\t0xEF42\n0x81ED\t0xEF43\n0x81EE\t0xEF44\n0x81EF\t0xEF45\n0x81F0\t0xEF46\n0x81F1\t0xEF47\n0x81F2\t0xEF48\n0x81F3\t0xEF49\n0x81F4\t0xEF4A\n0x81F5\t0xEF4B\n0x81F6\t0xEF4C\n0x81F7\t0xEF4D\n0x81F8\t0xEF4E\n0x81F9\t0xEF4F\n0x81FA\t0xEF50\n0x81FB\t0xEF51\n0x81FC\t0xEF52\n0x81FD\t0xEF53\n0x81FE\t0xEF54\n0x8240\t0xEF55\n0x8241\t0xEF56\n0x8242\t0xEF57\n0x8243\t0xEF58\n0x8244\t0xEF59\n0x8245\t0xEF5A\n0x8246\t0xEF5B\n0x8247\t0xEF5C\n0x8248\t0xEF5D\n0x8249\t0xEF5E\n0x824A\t0xEF5F\n0x824B\t0xEF60\n0x824C\t0xEF61\n0x824D\t0xEF62\n0x824E\t0xEF63\n0x824F\t0xEF64\n0x8250\t0xEF65\n0x8251\t0xEF66\n0x8252\t0xEF67\n0x8253\t0xEF68\n0x8254\t0xEF69\n0x8255\t0xEF6A\n0x8256\t0xEF6B\n0x8257\t0xEF6C\n0x8258\t0xEF6D\n0x8259\t0xEF6E\n0x825A\t0xEF6F\n0x825B\t0xEF70\n0x825C\t0xEF71\n0x825D\t0xEF72\n0x825E\t0xEF73\n0x825F\t0xEF74\n0x8260\t0xEF75\n0x8261\t0xEF76\n0x8262\t0xEF77\n0x8263\t0xEF78\n0x8264\t0xEF79\n0x8265\t0xEF7A\n0x8266\t0xEF7B\n0x8267\t0xEF7C\n0x8268\t0xEF7D\n0x8269\t0xEF7E\n0x826A\t0xEF7F\n0x826B\t0xEF80\n0x826C\t0xEF81\n0x826D\t0xEF82\n0x826E\t0xEF83\n0x826F\t0xEF84\n0x8270\t0xEF85\n0x8271\t0xEF86\n0x8272\t0xEF87\n0x8273\t0xEF88\n0x8274\t0xEF89\n0x8275\t0xEF8A\n0x8276\t0xEF8B\n0x8277\t0xEF8C\n0x8278\t0xEF8D\n0x8279\t0xEF8E\n0x827A\t0xEF8F\n0x827B\t0xEF90\n0x827C\t0xEF91\n0x827D\t0xEF92\n0x827E\t0xEF93\n0x82A1\t0xEF94\n0x82A2\t0xEF95\n0x82A3\t0xEF96\n0x82A4\t0xEF97\n0x82A5\t0xEF98\n0x82A6\t0xEF99\n0x82A7\t0xEF9A\n0x82A8\t0xEF9B\n0x82A9\t0xEF9C\n0x82AA\t0xEF9D\n0x82AB\t0xEF9E\n0x82AC\t0xEF9F\n0x82AD\t0xEFA0\n0x82AE\t0xEFA1\n0x82AF\t0xEFA2\n0x82B0\t0xEFA3\n0x82B1\t0xEFA4\n0x82B2\t0xEFA5\n0x82B3\t0xEFA6\n0x82B4\t0xEFA7\n0x82B5\t0xEFA8\n0x82B6\t0xEFA9\n0x82B7\t0xEFAA\n0x82B8\t0xEFAB\n0x82B9\t0xEFAC\n0x82BA\t0xEFAD\n0x82BB\t0xEFAE\n0x82BC\t0xEFAF\n0x82BD\t0xEFB0\n0x82BE\t0xEFB1\n0x82BF\t0xEFB2\n0x82C0\t0xEFB3\n0x82C1\t0xEFB4\n0x82C2\t0xEFB5\n0x82C3\t0xEFB6\n0x82C4\t0xEFB7\n0x82C5\t0xEFB8\n0x82C6\t0xEFB9\n0x82C7\t0xEFBA\n0x82C8\t0xEFBB\n0x82C9\t0xEFBC\n0x82CA\t0xEFBD\n0x82CB\t0xEFBE\n0x82CC\t0xEFBF\n0x82CD\t0xEFC0\n0x82CE\t0xEFC1\n0x82CF\t0xEFC2\n0x82D0\t0xEFC3\n0x82D1\t0xEFC4\n0x82D2\t0xEFC5\n0x82D3\t0xEFC6\n0x82D4\t0xEFC7\n0x82D5\t0xEFC8\n0x82D6\t0xEFC9\n0x82D7\t0xEFCA\n0x82D8\t0xEFCB\n0x82D9\t0xEFCC\n0x82DA\t0xEFCD\n0x82DB\t0xEFCE\n0x82DC\t0xEFCF\n0x82DD\t0xEFD0\n0x82DE\t0xEFD1\n0x82DF\t0xEFD2\n0x82E0\t0xEFD3\n0x82E1\t0xEFD4\n0x82E2\t0xEFD5\n0x82E3\t0xEFD6\n0x82E4\t0xEFD7\n0x82E5\t0xEFD8\n0x82E6\t0xEFD9\n0x82E7\t0xEFDA\n0x82E8\t0xEFDB\n0x82E9\t0xEFDC\n0x82EA\t0xEFDD\n0x82EB\t0xEFDE\n0x82EC\t0xEFDF\n0x82ED\t0xEFE0\n0x82EE\t0xEFE1\n0x82EF\t0xEFE2\n0x82F0\t0xEFE3\n0x82F1\t0xEFE4\n0x82F2\t0xEFE5\n0x82F3\t0xEFE6\n0x82F4\t0xEFE7\n0x82F5\t0xEFE8\n0x82F6\t0xEFE9\n0x82F7\t0xEFEA\n0x82F8\t0xEFEB\n0x82F9\t0xEFEC\n0x82FA\t0xEFED\n0x82FB\t0xEFEE\n0x82FC\t0xEFEF\n0x82FD\t0xEFF0\n0x82FE\t0xEFF1\n0x8340\t0xEFF2\n0x8341\t0xEFF3\n0x8342\t0xEFF4\n0x8343\t0xEFF5\n0x8344\t0xEFF6\n0x8345\t0xEFF7\n0x8346\t0xEFF8\n0x8347\t0xEFF9\n0x8348\t0xEFFA\n0x8349\t0xEFFB\n0x834A\t0xEFFC\n0x834B\t0xEFFD\n0x834C\t0xEFFE\n0x834D\t0xEFFF\n0x834E\t0xF000\n0x834F\t0xF001\n0x8350\t0xF002\n0x8351\t0xF003\n0x8352\t0xF004\n0x8353\t0xF005\n0x8354\t0xF006\n0x8355\t0xF007\n0x8356\t0xF008\n0x8357\t0xF009\n0x8358\t0xF00A\n0x8359\t0xF00B\n0x835A\t0xF00C\n0x835B\t0xF00D\n0x835C\t0xF00E\n0x835D\t0xF00F\n0x835E\t0xF010\n0x835F\t0xF011\n0x8360\t0xF012\n0x8361\t0xF013\n0x8362\t0xF014\n0x8363\t0xF015\n0x8364\t0xF016\n0x8365\t0xF017\n0x8366\t0xF018\n0x8367\t0xF019\n0x8368\t0xF01A\n0x8369\t0xF01B\n0x836A\t0xF01C\n0x836B\t0xF01D\n0x836C\t0xF01E\n0x836D\t0xF01F\n0x836E\t0xF020\n0x836F\t0xF021\n0x8370\t0xF022\n0x8371\t0xF023\n0x8372\t0xF024\n0x8373\t0xF025\n0x8374\t0xF026\n0x8375\t0xF027\n0x8376\t0xF028\n0x8377\t0xF029\n0x8378\t0xF02A\n0x8379\t0xF02B\n0x837A\t0xF02C\n0x837B\t0xF02D\n0x837C\t0xF02E\n0x837D\t0xF02F\n0x837E\t0xF030\n0x83A1\t0xF031\n0x83A2\t0xF032\n0x83A3\t0xF033\n0x83A4\t0xF034\n0x83A5\t0xF035\n0x83A6\t0xF036\n0x83A7\t0xF037\n0x83A8\t0xF038\n0x83A9\t0xF039\n0x83AA\t0xF03A\n0x83AB\t0xF03B\n0x83AC\t0xF03C\n0x83AD\t0xF03D\n0x83AE\t0xF03E\n0x83AF\t0xF03F\n0x83B0\t0xF040\n0x83B1\t0xF041\n0x83B2\t0xF042\n0x83B3\t0xF043\n0x83B4\t0xF044\n0x83B5\t0xF045\n0x83B6\t0xF046\n0x83B7\t0xF047\n0x83B8\t0xF048\n0x83B9\t0xF049\n0x83BA\t0xF04A\n0x83BB\t0xF04B\n0x83BC\t0xF04C\n0x83BD\t0xF04D\n0x83BE\t0xF04E\n0x83BF\t0xF04F\n0x83C0\t0xF050\n0x83C1\t0xF051\n0x83C2\t0xF052\n0x83C3\t0xF053\n0x83C4\t0xF054\n0x83C5\t0xF055\n0x83C6\t0xF056\n0x83C7\t0xF057\n0x83C8\t0xF058\n0x83C9\t0xF059\n0x83CA\t0xF05A\n0x83CB\t0xF05B\n0x83CC\t0xF05C\n0x83CD\t0xF05D\n0x83CE\t0xF05E\n0x83CF\t0xF05F\n0x83D0\t0xF060\n0x83D1\t0xF061\n0x83D2\t0xF062\n0x83D3\t0xF063\n0x83D4\t0xF064\n0x83D5\t0xF065\n0x83D6\t0xF066\n0x83D7\t0xF067\n0x83D8\t0xF068\n0x83D9\t0xF069\n0x83DA\t0xF06A\n0x83DB\t0xF06B\n0x83DC\t0xF06C\n0x83DD\t0xF06D\n0x83DE\t0xF06E\n0x83DF\t0xF06F\n0x83E0\t0xF070\n0x83E1\t0xF071\n0x83E2\t0xF072\n0x83E3\t0xF073\n0x83E4\t0xF074\n0x83E5\t0xF075\n0x83E6\t0xF076\n0x83E7\t0xF077\n0x83E8\t0xF078\n0x83E9\t0xF079\n0x83EA\t0xF07A\n0x83EB\t0xF07B\n0x83EC\t0xF07C\n0x83ED\t0xF07D\n0x83EE\t0xF07E\n0x83EF\t0xF07F\n0x83F0\t0xF080\n0x83F1\t0xF081\n0x83F2\t0xF082\n0x83F3\t0xF083\n0x83F4\t0xF084\n0x83F5\t0xF085\n0x83F6\t0xF086\n0x83F7\t0xF087\n0x83F8\t0xF088\n0x83F9\t0xF089\n0x83FA\t0xF08A\n0x83FB\t0xF08B\n0x83FC\t0xF08C\n0x83FD\t0xF08D\n0x83FE\t0xF08E\n0x8440\t0xF08F\n0x8441\t0xF090\n0x8442\t0xF091\n0x8443\t0xF092\n0x8444\t0xF093\n0x8445\t0xF094\n0x8446\t0xF095\n0x8447\t0xF096\n0x8448\t0xF097\n0x8449\t0xF098\n0x844A\t0xF099\n0x844B\t0xF09A\n0x844C\t0xF09B\n0x844D\t0xF09C\n0x844E\t0xF09D\n0x844F\t0xF09E\n0x8450\t0xF09F\n0x8451\t0xF0A0\n0x8452\t0xF0A1\n0x8453\t0xF0A2\n0x8454\t0xF0A3\n0x8455\t0xF0A4\n0x8456\t0xF0A5\n0x8457\t0xF0A6\n0x8458\t0xF0A7\n0x8459\t0xF0A8\n0x845A\t0xF0A9\n0x845B\t0xF0AA\n0x845C\t0xF0AB\n0x845D\t0xF0AC\n0x845E\t0xF0AD\n0x845F\t0xF0AE\n0x8460\t0xF0AF\n0x8461\t0xF0B0\n0x8462\t0xF0B1\n0x8463\t0xF0B2\n0x8464\t0xF0B3\n0x8465\t0xF0B4\n0x8466\t0xF0B5\n0x8467\t0xF0B6\n0x8468\t0xF0B7\n0x8469\t0xF0B8\n0x846A\t0xF0B9\n0x846B\t0xF0BA\n0x846C\t0xF0BB\n0x846D\t0xF0BC\n0x846E\t0xF0BD\n0x846F\t0xF0BE\n0x8470\t0xF0BF\n0x8471\t0xF0C0\n0x8472\t0xF0C1\n0x8473\t0xF0C2\n0x8474\t0xF0C3\n0x8475\t0xF0C4\n0x8476\t0xF0C5\n0x8477\t0xF0C6\n0x8478\t0xF0C7\n0x8479\t0xF0C8\n0x847A\t0xF0C9\n0x847B\t0xF0CA\n0x847C\t0xF0CB\n0x847D\t0xF0CC\n0x847E\t0xF0CD\n0x84A1\t0xF0CE\n0x84A2\t0xF0CF\n0x84A3\t0xF0D0\n0x84A4\t0xF0D1\n0x84A5\t0xF0D2\n0x84A6\t0xF0D3\n0x84A7\t0xF0D4\n0x84A8\t0xF0D5\n0x84A9\t0xF0D6\n0x84AA\t0xF0D7\n0x84AB\t0xF0D8\n0x84AC\t0xF0D9\n0x84AD\t0xF0DA\n0x84AE\t0xF0DB\n0x84AF\t0xF0DC\n0x84B0\t0xF0DD\n0x84B1\t0xF0DE\n0x84B2\t0xF0DF\n0x84B3\t0xF0E0\n0x84B4\t0xF0E1\n0x84B5\t0xF0E2\n0x84B6\t0xF0E3\n0x84B7\t0xF0E4\n0x84B8\t0xF0E5\n0x84B9\t0xF0E6\n0x84BA\t0xF0E7\n0x84BB\t0xF0E8\n0x84BC\t0xF0E9\n0x84BD\t0xF0EA\n0x84BE\t0xF0EB\n0x84BF\t0xF0EC\n0x84C0\t0xF0ED\n0x84C1\t0xF0EE\n0x84C2\t0xF0EF\n0x84C3\t0xF0F0\n0x84C4\t0xF0F1\n0x84C5\t0xF0F2\n0x84C6\t0xF0F3\n0x84C7\t0xF0F4\n0x84C8\t0xF0F5\n0x84C9\t0xF0F6\n0x84CA\t0xF0F7\n0x84CB\t0xF0F8\n0x84CC\t0xF0F9\n0x84CD\t0xF0FA\n0x84CE\t0xF0FB\n0x84CF\t0xF0FC\n0x84D0\t0xF0FD\n0x84D1\t0xF0FE\n0x84D2\t0xF0FF\n0x84D3\t0xF100\n0x84D4\t0xF101\n0x84D5\t0xF102\n0x84D6\t0xF103\n0x84D7\t0xF104\n0x84D8\t0xF105\n0x84D9\t0xF106\n0x84DA\t0xF107\n0x84DB\t0xF108\n0x84DC\t0xF109\n0x84DD\t0xF10A\n0x84DE\t0xF10B\n0x84DF\t0xF10C\n0x84E0\t0xF10D\n0x84E1\t0xF10E\n0x84E2\t0xF10F\n0x84E3\t0xF110\n0x84E4\t0xF111\n0x84E5\t0xF112\n0x84E6\t0xF113\n0x84E7\t0xF114\n0x84E8\t0xF115\n0x84E9\t0xF116\n0x84EA\t0xF117\n0x84EB\t0xF118\n0x84EC\t0xF119\n0x84ED\t0xF11A\n0x84EE\t0xF11B\n0x84EF\t0xF11C\n0x84F0\t0xF11D\n0x84F1\t0xF11E\n0x84F2\t0xF11F\n0x84F3\t0xF120\n0x84F4\t0xF121\n0x84F5\t0xF122\n0x84F6\t0xF123\n0x84F7\t0xF124\n0x84F8\t0xF125\n0x84F9\t0xF126\n0x84FA\t0xF127\n0x84FB\t0xF128\n0x84FC\t0xF129\n0x84FD\t0xF12A\n0x84FE\t0xF12B\n0x8540\t0xF12C\n0x8541\t0xF12D\n0x8542\t0xF12E\n0x8543\t0xF12F\n0x8544\t0xF130\n0x8545\t0xF131\n0x8546\t0xF132\n0x8547\t0xF133\n0x8548\t0xF134\n0x8549\t0xF135\n0x854A\t0xF136\n0x854B\t0xF137\n0x854C\t0xF138\n0x854D\t0xF139\n0x854E\t0xF13A\n0x854F\t0xF13B\n0x8550\t0xF13C\n0x8551\t0xF13D\n0x8552\t0xF13E\n0x8553\t0xF13F\n0x8554\t0xF140\n0x8555\t0xF141\n0x8556\t0xF142\n0x8557\t0xF143\n0x8558\t0xF144\n0x8559\t0xF145\n0x855A\t0xF146\n0x855B\t0xF147\n0x855C\t0xF148\n0x855D\t0xF149\n0x855E\t0xF14A\n0x855F\t0xF14B\n0x8560\t0xF14C\n0x8561\t0xF14D\n0x8562\t0xF14E\n0x8563\t0xF14F\n0x8564\t0xF150\n0x8565\t0xF151\n0x8566\t0xF152\n0x8567\t0xF153\n0x8568\t0xF154\n0x8569\t0xF155\n0x856A\t0xF156\n0x856B\t0xF157\n0x856C\t0xF158\n0x856D\t0xF159\n0x856E\t0xF15A\n0x856F\t0xF15B\n0x8570\t0xF15C\n0x8571\t0xF15D\n0x8572\t0xF15E\n0x8573\t0xF15F\n0x8574\t0xF160\n0x8575\t0xF161\n0x8576\t0xF162\n0x8577\t0xF163\n0x8578\t0xF164\n0x8579\t0xF165\n0x857A\t0xF166\n0x857B\t0xF167\n0x857C\t0xF168\n0x857D\t0xF169\n0x857E\t0xF16A\n0x85A1\t0xF16B\n0x85A2\t0xF16C\n0x85A3\t0xF16D\n0x85A4\t0xF16E\n0x85A5\t0xF16F\n0x85A6\t0xF170\n0x85A7\t0xF171\n0x85A8\t0xF172\n0x85A9\t0xF173\n0x85AA\t0xF174\n0x85AB\t0xF175\n0x85AC\t0xF176\n0x85AD\t0xF177\n0x85AE\t0xF178\n0x85AF\t0xF179\n0x85B0\t0xF17A\n0x85B1\t0xF17B\n0x85B2\t0xF17C\n0x85B3\t0xF17D\n0x85B4\t0xF17E\n0x85B5\t0xF17F\n0x85B6\t0xF180\n0x85B7\t0xF181\n0x85B8\t0xF182\n0x85B9\t0xF183\n0x85BA\t0xF184\n0x85BB\t0xF185\n0x85BC\t0xF186\n0x85BD\t0xF187\n0x85BE\t0xF188\n0x85BF\t0xF189\n0x85C0\t0xF18A\n0x85C1\t0xF18B\n0x85C2\t0xF18C\n0x85C3\t0xF18D\n0x85C4\t0xF18E\n0x85C5\t0xF18F\n0x85C6\t0xF190\n0x85C7\t0xF191\n0x85C8\t0xF192\n0x85C9\t0xF193\n0x85CA\t0xF194\n0x85CB\t0xF195\n0x85CC\t0xF196\n0x85CD\t0xF197\n0x85CE\t0xF198\n0x85CF\t0xF199\n0x85D0\t0xF19A\n0x85D1\t0xF19B\n0x85D2\t0xF19C\n0x85D3\t0xF19D\n0x85D4\t0xF19E\n0x85D5\t0xF19F\n0x85D6\t0xF1A0\n0x85D7\t0xF1A1\n0x85D8\t0xF1A2\n0x85D9\t0xF1A3\n0x85DA\t0xF1A4\n0x85DB\t0xF1A5\n0x85DC\t0xF1A6\n0x85DD\t0xF1A7\n0x85DE\t0xF1A8\n0x85DF\t0xF1A9\n0x85E0\t0xF1AA\n0x85E1\t0xF1AB\n0x85E2\t0xF1AC\n0x85E3\t0xF1AD\n0x85E4\t0xF1AE\n0x85E5\t0xF1AF\n0x85E6\t0xF1B0\n0x85E7\t0xF1B1\n0x85E8\t0xF1B2\n0x85E9\t0xF1B3\n0x85EA\t0xF1B4\n0x85EB\t0xF1B5\n0x85EC\t0xF1B6\n0x85ED\t0xF1B7\n0x85EE\t0xF1B8\n0x85EF\t0xF1B9\n0x85F0\t0xF1BA\n0x85F1\t0xF1BB\n0x85F2\t0xF1BC\n0x85F3\t0xF1BD\n0x85F4\t0xF1BE\n0x85F5\t0xF1BF\n0x85F6\t0xF1C0\n0x85F7\t0xF1C1\n0x85F8\t0xF1C2\n0x85F9\t0xF1C3\n0x85FA\t0xF1C4\n0x85FB\t0xF1C5\n0x85FC\t0xF1C6\n0x85FD\t0xF1C7\n0x85FE\t0xF1C8\n0x8640\t0xF1C9\n0x8641\t0xF1CA\n0x8642\t0xF1CB\n0x8643\t0xF1CC\n0x8644\t0xF1CD\n0x8645\t0xF1CE\n0x8646\t0xF1CF\n0x8647\t0xF1D0\n0x8648\t0xF1D1\n0x8649\t0xF1D2\n0x864A\t0xF1D3\n0x864B\t0xF1D4\n0x864C\t0xF1D5\n0x864D\t0xF1D6\n0x864E\t0xF1D7\n0x864F\t0xF1D8\n0x8650\t0xF1D9\n0x8651\t0xF1DA\n0x8652\t0xF1DB\n0x8653\t0xF1DC\n0x8654\t0xF1DD\n0x8655\t0xF1DE\n0x8656\t0xF1DF\n0x8657\t0xF1E0\n0x8658\t0xF1E1\n0x8659\t0xF1E2\n0x865A\t0xF1E3\n0x865B\t0xF1E4\n0x865C\t0xF1E5\n0x865D\t0xF1E6\n0x865E\t0xF1E7\n0x865F\t0xF1E8\n0x8660\t0xF1E9\n0x8661\t0xF1EA\n0x8662\t0xF1EB\n0x8663\t0xF1EC\n0x8664\t0xF1ED\n0x8665\t0xF1EE\n0x8666\t0xF1EF\n0x8667\t0xF1F0\n0x8668\t0xF1F1\n0x8669\t0xF1F2\n0x866A\t0xF1F3\n0x866B\t0xF1F4\n0x866C\t0xF1F5\n0x866D\t0xF1F6\n0x866E\t0xF1F7\n0x866F\t0xF1F8\n0x8670\t0xF1F9\n0x8671\t0xF1FA\n0x8672\t0xF1FB\n0x8673\t0xF1FC\n0x8674\t0xF1FD\n0x8675\t0xF1FE\n0x8676\t0xF1FF\n0x8677\t0xF200\n0x8678\t0xF201\n0x8679\t0xF202\n0x867A\t0xF203\n0x867B\t0xF204\n0x867C\t0xF205\n0x867D\t0xF206\n0x867E\t0xF207\n0x86A1\t0xF208\n0x86A2\t0xF209\n0x86A3\t0xF20A\n0x86A4\t0xF20B\n0x86A5\t0xF20C\n0x86A6\t0xF20D\n0x86A7\t0xF20E\n0x86A8\t0xF20F\n0x86A9\t0xF210\n0x86AA\t0xF211\n0x86AB\t0xF212\n0x86AC\t0xF213\n0x86AD\t0xF214\n0x86AE\t0xF215\n0x86AF\t0xF216\n0x86B0\t0xF217\n0x86B1\t0xF218\n0x86B2\t0xF219\n0x86B3\t0xF21A\n0x86B4\t0xF21B\n0x86B5\t0xF21C\n0x86B6\t0xF21D\n0x86B7\t0xF21E\n0x86B8\t0xF21F\n0x86B9\t0xF220\n0x86BA\t0xF221\n0x86BB\t0xF222\n0x86BC\t0xF223\n0x86BD\t0xF224\n0x86BE\t0xF225\n0x86BF\t0xF226\n0x86C0\t0xF227\n0x86C1\t0xF228\n0x86C2\t0xF229\n0x86C3\t0xF22A\n0x86C4\t0xF22B\n0x86C5\t0xF22C\n0x86C6\t0xF22D\n0x86C7\t0xF22E\n0x86C8\t0xF22F\n0x86C9\t0xF230\n0x86CA\t0xF231\n0x86CB\t0xF232\n0x86CC\t0xF233\n0x86CD\t0xF234\n0x86CE\t0xF235\n0x86CF\t0xF236\n0x86D0\t0xF237\n0x86D1\t0xF238\n0x86D2\t0xF239\n0x86D3\t0xF23A\n0x86D4\t0xF23B\n0x86D5\t0xF23C\n0x86D6\t0xF23D\n0x86D7\t0xF23E\n0x86D8\t0xF23F\n0x86D9\t0xF240\n0x86DA\t0xF241\n0x86DB\t0xF242\n0x86DC\t0xF243\n0x86DD\t0xF244\n0x86DE\t0xF245\n0x86DF\t0xF246\n0x86E0\t0xF247\n0x86E1\t0xF248\n0x86E2\t0xF249\n0x86E3\t0xF24A\n0x86E4\t0xF24B\n0x86E5\t0xF24C\n0x86E6\t0xF24D\n0x86E7\t0xF24E\n0x86E8\t0xF24F\n0x86E9\t0xF250\n0x86EA\t0xF251\n0x86EB\t0xF252\n0x86EC\t0xF253\n0x86ED\t0xF254\n0x86EE\t0xF255\n0x86EF\t0xF256\n0x86F0\t0xF257\n0x86F1\t0xF258\n0x86F2\t0xF259\n0x86F3\t0xF25A\n0x86F4\t0xF25B\n0x86F5\t0xF25C\n0x86F6\t0xF25D\n0x86F7\t0xF25E\n0x86F8\t0xF25F\n0x86F9\t0xF260\n0x86FA\t0xF261\n0x86FB\t0xF262\n0x86FC\t0xF263\n0x86FD\t0xF264\n0x86FE\t0xF265\n0x8740\t0xF266\n0x8741\t0xF267\n0x8742\t0xF268\n0x8743\t0xF269\n0x8744\t0xF26A\n0x8745\t0xF26B\n0x8746\t0xF26C\n0x8747\t0xF26D\n0x8748\t0xF26E\n0x8749\t0xF26F\n0x874A\t0xF270\n0x874B\t0xF271\n0x874C\t0xF272\n0x874D\t0xF273\n0x874E\t0xF274\n0x874F\t0xF275\n0x8750\t0xF276\n0x8751\t0xF277\n0x8752\t0xF278\n0x8753\t0xF279\n0x8754\t0xF27A\n0x8755\t0xF27B\n0x8756\t0xF27C\n0x8757\t0xF27D\n0x8758\t0xF27E\n0x8759\t0xF27F\n0x875A\t0xF280\n0x875B\t0xF281\n0x875C\t0xF282\n0x875D\t0xF283\n0x875E\t0xF284\n0x875F\t0xF285\n0x8760\t0xF286\n0x8761\t0xF287\n0x8762\t0xF288\n0x8763\t0xF289\n0x8764\t0xF28A\n0x8765\t0xF28B\n0x8766\t0xF28C\n0x8767\t0xF28D\n0x8768\t0xF28E\n0x8769\t0xF28F\n0x876A\t0xF290\n0x876B\t0xF291\n0x876C\t0xF292\n0x876D\t0xF293\n0x876E\t0xF294\n0x876F\t0xF295\n0x8770\t0xF296\n0x8771\t0xF297\n0x8772\t0xF298\n0x8773\t0xF299\n0x8774\t0xF29A\n0x8775\t0xF29B\n0x8776\t0xF29C\n0x8777\t0xF29D\n0x8778\t0xF29E\n0x8779\t0xF29F\n0x877A\t0xF2A0\n0x877B\t0xF2A1\n0x877C\t0xF2A2\n0x877D\t0xF2A3\n0x877E\t0xF2A4\n0x87A1\t0xF2A5\n0x87A2\t0xF2A6\n0x87A3\t0xF2A7\n0x87A4\t0xF2A8\n0x87A5\t0xF2A9\n0x87A6\t0xF2AA\n0x87A7\t0xF2AB\n0x87A8\t0xF2AC\n0x87A9\t0xF2AD\n0x87AA\t0xF2AE\n0x87AB\t0xF2AF\n0x87AC\t0xF2B0\n0x87AD\t0xF2B1\n0x87AE\t0xF2B2\n0x87AF\t0xF2B3\n0x87B0\t0xF2B4\n0x87B1\t0xF2B5\n0x87B2\t0xF2B6\n0x87B3\t0xF2B7\n0x87B4\t0xF2B8\n0x87B5\t0xF2B9\n0x87B6\t0xF2BA\n0x87B7\t0xF2BB\n0x87B8\t0xF2BC\n0x87B9\t0xF2BD\n0x87BA\t0xF2BE\n0x87BB\t0xF2BF\n0x87BC\t0xF2C0\n0x87BD\t0xF2C1\n0x87BE\t0xF2C2\n0x87BF\t0xF2C3\n0x87C0\t0xF2C4\n0x87C1\t0xF2C5\n0x87C2\t0xF2C6\n0x87C3\t0xF2C7\n0x87C4\t0xF2C8\n0x87C5\t0xF2C9\n0x87C6\t0xF2CA\n0x87C7\t0xF2CB\n0x87C8\t0xF2CC\n0x87C9\t0xF2CD\n0x87CA\t0xF2CE\n0x87CB\t0xF2CF\n0x87CC\t0xF2D0\n0x87CD\t0xF2D1\n0x87CE\t0xF2D2\n0x87CF\t0xF2D3\n0x87D0\t0xF2D4\n0x87D1\t0xF2D5\n0x87D2\t0xF2D6\n0x87D3\t0xF2D7\n0x87D4\t0xF2D8\n0x87D5\t0xF2D9\n0x87D6\t0xF2DA\n0x87D7\t0xF2DB\n0x87D8\t0xF2DC\n0x87D9\t0xF2DD\n0x87DA\t0xF2DE\n0x87DB\t0xF2DF\n0x87DC\t0xF2E0\n0x87DD\t0xF2E1\n0x87DE\t0xF2E2\n0x87DF\t0xF2E3\n0x87E0\t0xF2E4\n0x87E1\t0xF2E5\n0x87E2\t0xF2E6\n0x87E3\t0xF2E7\n0x87E4\t0xF2E8\n0x87E5\t0xF2E9\n0x87E6\t0xF2EA\n0x87E7\t0xF2EB\n0x87E8\t0xF2EC\n0x87E9\t0xF2ED\n0x87EA\t0xF2EE\n0x87EB\t0xF2EF\n0x87EC\t0xF2F0\n0x87ED\t0xF2F1\n0x87EE\t0xF2F2\n0x87EF\t0xF2F3\n0x87F0\t0xF2F4\n0x87F1\t0xF2F5\n0x87F2\t0xF2F6\n0x87F3\t0xF2F7\n0x87F4\t0xF2F8\n0x87F5\t0xF2F9\n0x87F6\t0xF2FA\n0x87F7\t0xF2FB\n0x87F8\t0xF2FC\n0x87F9\t0xF2FD\n0x87FA\t0xF2FE\n0x87FB\t0xF2FF\n0x87FC\t0xF300\n0x87FD\t0xF301\n0x87FE\t0xF302\n0x8840\t0xF303\n0x8841\t0xF304\n0x8842\t0xF305\n0x8843\t0xF306\n0x8844\t0xF307\n0x8845\t0xF308\n0x8846\t0xF309\n0x8847\t0xF30A\n0x8848\t0xF30B\n0x8849\t0xF30C\n0x884A\t0xF30D\n0x884B\t0xF30E\n0x884C\t0xF30F\n0x884D\t0xF310\n0x884E\t0xF311\n0x884F\t0xF312\n0x8850\t0xF313\n0x8851\t0xF314\n0x8852\t0xF315\n0x8853\t0xF316\n0x8854\t0xF317\n0x8855\t0xF318\n0x8856\t0xF319\n0x8857\t0xF31A\n0x8858\t0xF31B\n0x8859\t0xF31C\n0x885A\t0xF31D\n0x885B\t0xF31E\n0x885C\t0xF31F\n0x885D\t0xF320\n0x885E\t0xF321\n0x885F\t0xF322\n0x8860\t0xF323\n0x8861\t0xF324\n0x8862\t0xF325\n0x8863\t0xF326\n0x8864\t0xF327\n0x8865\t0xF328\n0x8866\t0xF329\n0x8867\t0xF32A\n0x8868\t0xF32B\n0x8869\t0xF32C\n0x886A\t0xF32D\n0x886B\t0xF32E\n0x886C\t0xF32F\n0x886D\t0xF330\n0x886E\t0xF331\n0x886F\t0xF332\n0x8870\t0xF333\n0x8871\t0xF334\n0x8872\t0xF335\n0x8873\t0xF336\n0x8874\t0xF337\n0x8875\t0xF338\n0x8876\t0xF339\n0x8877\t0xF33A\n0x8878\t0xF33B\n0x8879\t0xF33C\n0x887A\t0xF33D\n0x887B\t0xF33E\n0x887C\t0xF33F\n0x887D\t0xF340\n0x887E\t0xF341\n0x88A1\t0xF342\n0x88A2\t0xF343\n0x88A3\t0xF344\n0x88A4\t0xF345\n0x88A5\t0xF346\n0x88A6\t0xF347\n0x88A7\t0xF348\n0x88A8\t0xF349\n0x88A9\t0xF34A\n0x88AA\t0xF34B\n0x88AB\t0xF34C\n0x88AC\t0xF34D\n0x88AD\t0xF34E\n0x88AE\t0xF34F\n0x88AF\t0xF350\n0x88B0\t0xF351\n0x88B1\t0xF352\n0x88B2\t0xF353\n0x88B3\t0xF354\n0x88B4\t0xF355\n0x88B5\t0xF356\n0x88B6\t0xF357\n0x88B7\t0xF358\n0x88B8\t0xF359\n0x88B9\t0xF35A\n0x88BA\t0xF35B\n0x88BB\t0xF35C\n0x88BC\t0xF35D\n0x88BD\t0xF35E\n0x88BE\t0xF35F\n0x88BF\t0xF360\n0x88C0\t0xF361\n0x88C1\t0xF362\n0x88C2\t0xF363\n0x88C3\t0xF364\n0x88C4\t0xF365\n0x88C5\t0xF366\n0x88C6\t0xF367\n0x88C7\t0xF368\n0x88C8\t0xF369\n0x88C9\t0xF36A\n0x88CA\t0xF36B\n0x88CB\t0xF36C\n0x88CC\t0xF36D\n0x88CD\t0xF36E\n0x88CE\t0xF36F\n0x88CF\t0xF370\n0x88D0\t0xF371\n0x88D1\t0xF372\n0x88D2\t0xF373\n0x88D3\t0xF374\n0x88D4\t0xF375\n0x88D5\t0xF376\n0x88D6\t0xF377\n0x88D7\t0xF378\n0x88D8\t0xF379\n0x88D9\t0xF37A\n0x88DA\t0xF37B\n0x88DB\t0xF37C\n0x88DC\t0xF37D\n0x88DD\t0xF37E\n0x88DE\t0xF37F\n0x88DF\t0xF380\n0x88E0\t0xF381\n0x88E1\t0xF382\n0x88E2\t0xF383\n0x88E3\t0xF384\n0x88E4\t0xF385\n0x88E5\t0xF386\n0x88E6\t0xF387\n0x88E7\t0xF388\n0x88E8\t0xF389\n0x88E9\t0xF38A\n0x88EA\t0xF38B\n0x88EB\t0xF38C\n0x88EC\t0xF38D\n0x88ED\t0xF38E\n0x88EE\t0xF38F\n0x88EF\t0xF390\n0x88F0\t0xF391\n0x88F1\t0xF392\n0x88F2\t0xF393\n0x88F3\t0xF394\n0x88F4\t0xF395\n0x88F5\t0xF396\n0x88F6\t0xF397\n0x88F7\t0xF398\n0x88F8\t0xF399\n0x88F9\t0xF39A\n0x88FA\t0xF39B\n0x88FB\t0xF39C\n0x88FC\t0xF39D\n0x88FD\t0xF39E\n0x88FE\t0xF39F\n0x8940\t0xF3A0\n0x8941\t0xF3A1\n0x8942\t0xF3A2\n0x8943\t0xF3A3\n0x8944\t0xF3A4\n0x8945\t0xF3A5\n0x8946\t0xF3A6\n0x8947\t0xF3A7\n0x8948\t0xF3A8\n0x8949\t0xF3A9\n0x894A\t0xF3AA\n0x894B\t0xF3AB\n0x894C\t0xF3AC\n0x894D\t0xF3AD\n0x894E\t0xF3AE\n0x894F\t0xF3AF\n0x8950\t0xF3B0\n0x8951\t0xF3B1\n0x8952\t0xF3B2\n0x8953\t0xF3B3\n0x8954\t0xF3B4\n0x8955\t0xF3B5\n0x8956\t0xF3B6\n0x8957\t0xF3B7\n0x8958\t0xF3B8\n0x8959\t0xF3B9\n0x895A\t0xF3BA\n0x895B\t0xF3BB\n0x895C\t0xF3BC\n0x895D\t0xF3BD\n0x895E\t0xF3BE\n0x895F\t0xF3BF\n0x8960\t0xF3C0\n0x8961\t0xF3C1\n0x8962\t0xF3C2\n0x8963\t0xF3C3\n0x8964\t0xF3C4\n0x8965\t0xF3C5\n0x8966\t0xF3C6\n0x8967\t0xF3C7\n0x8968\t0xF3C8\n0x8969\t0xF3C9\n0x896A\t0xF3CA\n0x896B\t0xF3CB\n0x896C\t0xF3CC\n0x896D\t0xF3CD\n0x896E\t0xF3CE\n0x896F\t0xF3CF\n0x8970\t0xF3D0\n0x8971\t0xF3D1\n0x8972\t0xF3D2\n0x8973\t0xF3D3\n0x8974\t0xF3D4\n0x8975\t0xF3D5\n0x8976\t0xF3D6\n0x8977\t0xF3D7\n0x8978\t0xF3D8\n0x8979\t0xF3D9\n0x897A\t0xF3DA\n0x897B\t0xF3DB\n0x897C\t0xF3DC\n0x897D\t0xF3DD\n0x897E\t0xF3DE\n0x89A1\t0xF3DF\n0x89A2\t0xF3E0\n0x89A3\t0xF3E1\n0x89A4\t0xF3E2\n0x89A5\t0xF3E3\n0x89A6\t0xF3E4\n0x89A7\t0xF3E5\n0x89A8\t0xF3E6\n0x89A9\t0xF3E7\n0x89AA\t0xF3E8\n0x89AB\t0xF3E9\n0x89AC\t0xF3EA\n0x89AD\t0xF3EB\n0x89AE\t0xF3EC\n0x89AF\t0xF3ED\n0x89B0\t0xF3EE\n0x89B1\t0xF3EF\n0x89B2\t0xF3F0\n0x89B3\t0xF3F1\n0x89B4\t0xF3F2\n0x89B5\t0xF3F3\n0x89B6\t0xF3F4\n0x89B7\t0xF3F5\n0x89B8\t0xF3F6\n0x89B9\t0xF3F7\n0x89BA\t0xF3F8\n0x89BB\t0xF3F9\n0x89BC\t0xF3FA\n0x89BD\t0xF3FB\n0x89BE\t0xF3FC\n0x89BF\t0xF3FD\n0x89C0\t0xF3FE\n0x89C1\t0xF3FF\n0x89C2\t0xF400\n0x89C3\t0xF401\n0x89C4\t0xF402\n0x89C5\t0xF403\n0x89C6\t0xF404\n0x89C7\t0xF405\n0x89C8\t0xF406\n0x89C9\t0xF407\n0x89CA\t0xF408\n0x89CB\t0xF409\n0x89CC\t0xF40A\n0x89CD\t0xF40B\n0x89CE\t0xF40C\n0x89CF\t0xF40D\n0x89D0\t0xF40E\n0x89D1\t0xF40F\n0x89D2\t0xF410\n0x89D3\t0xF411\n0x89D4\t0xF412\n0x89D5\t0xF413\n0x89D6\t0xF414\n0x89D7\t0xF415\n0x89D8\t0xF416\n0x89D9\t0xF417\n0x89DA\t0xF418\n0x89DB\t0xF419\n0x89DC\t0xF41A\n0x89DD\t0xF41B\n0x89DE\t0xF41C\n0x89DF\t0xF41D\n0x89E0\t0xF41E\n0x89E1\t0xF41F\n0x89E2\t0xF420\n0x89E3\t0xF421\n0x89E4\t0xF422\n0x89E5\t0xF423\n0x89E6\t0xF424\n0x89E7\t0xF425\n0x89E8\t0xF426\n0x89E9\t0xF427\n0x89EA\t0xF428\n0x89EB\t0xF429\n0x89EC\t0xF42A\n0x89ED\t0xF42B\n0x89EE\t0xF42C\n0x89EF\t0xF42D\n0x89F0\t0xF42E\n0x89F1\t0xF42F\n0x89F2\t0xF430\n0x89F3\t0xF431\n0x89F4\t0xF432\n0x89F5\t0xF433\n0x89F6\t0xF434\n0x89F7\t0xF435\n0x89F8\t0xF436\n0x89F9\t0xF437\n0x89FA\t0xF438\n0x89FB\t0xF439\n0x89FC\t0xF43A\n0x89FD\t0xF43B\n0x89FE\t0xF43C\n0x8A40\t0xF43D\n0x8A41\t0xF43E\n0x8A42\t0xF43F\n0x8A43\t0xF440\n0x8A44\t0xF441\n0x8A45\t0xF442\n0x8A46\t0xF443\n0x8A47\t0xF444\n0x8A48\t0xF445\n0x8A49\t0xF446\n0x8A4A\t0xF447\n0x8A4B\t0xF448\n0x8A4C\t0xF449\n0x8A4D\t0xF44A\n0x8A4E\t0xF44B\n0x8A4F\t0xF44C\n0x8A50\t0xF44D\n0x8A51\t0xF44E\n0x8A52\t0xF44F\n0x8A53\t0xF450\n0x8A54\t0xF451\n0x8A55\t0xF452\n0x8A56\t0xF453\n0x8A57\t0xF454\n0x8A58\t0xF455\n0x8A59\t0xF456\n0x8A5A\t0xF457\n0x8A5B\t0xF458\n0x8A5C\t0xF459\n0x8A5D\t0xF45A\n0x8A5E\t0xF45B\n0x8A5F\t0xF45C\n0x8A60\t0xF45D\n0x8A61\t0xF45E\n0x8A62\t0xF45F\n0x8A63\t0xF460\n0x8A64\t0xF461\n0x8A65\t0xF462\n0x8A66\t0xF463\n0x8A67\t0xF464\n0x8A68\t0xF465\n0x8A69\t0xF466\n0x8A6A\t0xF467\n0x8A6B\t0xF468\n0x8A6C\t0xF469\n0x8A6D\t0xF46A\n0x8A6E\t0xF46B\n0x8A6F\t0xF46C\n0x8A70\t0xF46D\n0x8A71\t0xF46E\n0x8A72\t0xF46F\n0x8A73\t0xF470\n0x8A74\t0xF471\n0x8A75\t0xF472\n0x8A76\t0xF473\n0x8A77\t0xF474\n0x8A78\t0xF475\n0x8A79\t0xF476\n0x8A7A\t0xF477\n0x8A7B\t0xF478\n0x8A7C\t0xF479\n0x8A7D\t0xF47A\n0x8A7E\t0xF47B\n0x8AA1\t0xF47C\n0x8AA2\t0xF47D\n0x8AA3\t0xF47E\n0x8AA4\t0xF47F\n0x8AA5\t0xF480\n0x8AA6\t0xF481\n0x8AA7\t0xF482\n0x8AA8\t0xF483\n0x8AA9\t0xF484\n0x8AAA\t0xF485\n0x8AAB\t0xF486\n0x8AAC\t0xF487\n0x8AAD\t0xF488\n0x8AAE\t0xF489\n0x8AAF\t0xF48A\n0x8AB0\t0xF48B\n0x8AB1\t0xF48C\n0x8AB2\t0xF48D\n0x8AB3\t0xF48E\n0x8AB4\t0xF48F\n0x8AB5\t0xF490\n0x8AB6\t0xF491\n0x8AB7\t0xF492\n0x8AB8\t0xF493\n0x8AB9\t0xF494\n0x8ABA\t0xF495\n0x8ABB\t0xF496\n0x8ABC\t0xF497\n0x8ABD\t0xF498\n0x8ABE\t0xF499\n0x8ABF\t0xF49A\n0x8AC0\t0xF49B\n0x8AC1\t0xF49C\n0x8AC2\t0xF49D\n0x8AC3\t0xF49E\n0x8AC4\t0xF49F\n0x8AC5\t0xF4A0\n0x8AC6\t0xF4A1\n0x8AC7\t0xF4A2\n0x8AC8\t0xF4A3\n0x8AC9\t0xF4A4\n0x8ACA\t0xF4A5\n0x8ACB\t0xF4A6\n0x8ACC\t0xF4A7\n0x8ACD\t0xF4A8\n0x8ACE\t0xF4A9\n0x8ACF\t0xF4AA\n0x8AD0\t0xF4AB\n0x8AD1\t0xF4AC\n0x8AD2\t0xF4AD\n0x8AD3\t0xF4AE\n0x8AD4\t0xF4AF\n0x8AD5\t0xF4B0\n0x8AD6\t0xF4B1\n0x8AD7\t0xF4B2\n0x8AD8\t0xF4B3\n0x8AD9\t0xF4B4\n0x8ADA\t0xF4B5\n0x8ADB\t0xF4B6\n0x8ADC\t0xF4B7\n0x8ADD\t0xF4B8\n0x8ADE\t0xF4B9\n0x8ADF\t0xF4BA\n0x8AE0\t0xF4BB\n0x8AE1\t0xF4BC\n0x8AE2\t0xF4BD\n0x8AE3\t0xF4BE\n0x8AE4\t0xF4BF\n0x8AE5\t0xF4C0\n0x8AE6\t0xF4C1\n0x8AE7\t0xF4C2\n0x8AE8\t0xF4C3\n0x8AE9\t0xF4C4\n0x8AEA\t0xF4C5\n0x8AEB\t0xF4C6\n0x8AEC\t0xF4C7\n0x8AED\t0xF4C8\n0x8AEE\t0xF4C9\n0x8AEF\t0xF4CA\n0x8AF0\t0xF4CB\n0x8AF1\t0xF4CC\n0x8AF2\t0xF4CD\n0x8AF3\t0xF4CE\n0x8AF4\t0xF4CF\n0x8AF5\t0xF4D0\n0x8AF6\t0xF4D1\n0x8AF7\t0xF4D2\n0x8AF8\t0xF4D3\n0x8AF9\t0xF4D4\n0x8AFA\t0xF4D5\n0x8AFB\t0xF4D6\n0x8AFC\t0xF4D7\n0x8AFD\t0xF4D8\n0x8AFE\t0xF4D9\n0x8B40\t0xF4DA\n0x8B41\t0xF4DB\n0x8B42\t0xF4DC\n0x8B43\t0xF4DD\n0x8B44\t0xF4DE\n0x8B45\t0xF4DF\n0x8B46\t0xF4E0\n0x8B47\t0xF4E1\n0x8B48\t0xF4E2\n0x8B49\t0xF4E3\n0x8B4A\t0xF4E4\n0x8B4B\t0xF4E5\n0x8B4C\t0xF4E6\n0x8B4D\t0xF4E7\n0x8B4E\t0xF4E8\n0x8B4F\t0xF4E9\n0x8B50\t0xF4EA\n0x8B51\t0xF4EB\n0x8B52\t0xF4EC\n0x8B53\t0xF4ED\n0x8B54\t0xF4EE\n0x8B55\t0xF4EF\n0x8B56\t0xF4F0\n0x8B57\t0xF4F1\n0x8B58\t0xF4F2\n0x8B59\t0xF4F3\n0x8B5A\t0xF4F4\n0x8B5B\t0xF4F5\n0x8B5C\t0xF4F6\n0x8B5D\t0xF4F7\n0x8B5E\t0xF4F8\n0x8B5F\t0xF4F9\n0x8B60\t0xF4FA\n0x8B61\t0xF4FB\n0x8B62\t0xF4FC\n0x8B63\t0xF4FD\n0x8B64\t0xF4FE\n0x8B65\t0xF4FF\n0x8B66\t0xF500\n0x8B67\t0xF501\n0x8B68\t0xF502\n0x8B69\t0xF503\n0x8B6A\t0xF504\n0x8B6B\t0xF505\n0x8B6C\t0xF506\n0x8B6D\t0xF507\n0x8B6E\t0xF508\n0x8B6F\t0xF509\n0x8B70\t0xF50A\n0x8B71\t0xF50B\n0x8B72\t0xF50C\n0x8B73\t0xF50D\n0x8B74\t0xF50E\n0x8B75\t0xF50F\n0x8B76\t0xF510\n0x8B77\t0xF511\n0x8B78\t0xF512\n0x8B79\t0xF513\n0x8B7A\t0xF514\n0x8B7B\t0xF515\n0x8B7C\t0xF516\n0x8B7D\t0xF517\n0x8B7E\t0xF518\n0x8BA1\t0xF519\n0x8BA2\t0xF51A\n0x8BA3\t0xF51B\n0x8BA4\t0xF51C\n0x8BA5\t0xF51D\n0x8BA6\t0xF51E\n0x8BA7\t0xF51F\n0x8BA8\t0xF520\n0x8BA9\t0xF521\n0x8BAA\t0xF522\n0x8BAB\t0xF523\n0x8BAC\t0xF524\n0x8BAD\t0xF525\n0x8BAE\t0xF526\n0x8BAF\t0xF527\n0x8BB0\t0xF528\n0x8BB1\t0xF529\n0x8BB2\t0xF52A\n0x8BB3\t0xF52B\n0x8BB4\t0xF52C\n0x8BB5\t0xF52D\n0x8BB6\t0xF52E\n0x8BB7\t0xF52F\n0x8BB8\t0xF530\n0x8BB9\t0xF531\n0x8BBA\t0xF532\n0x8BBB\t0xF533\n0x8BBC\t0xF534\n0x8BBD\t0xF535\n0x8BBE\t0xF536\n0x8BBF\t0xF537\n0x8BC0\t0xF538\n0x8BC1\t0xF539\n0x8BC2\t0xF53A\n0x8BC3\t0xF53B\n0x8BC4\t0xF53C\n0x8BC5\t0xF53D\n0x8BC6\t0xF53E\n0x8BC7\t0xF53F\n0x8BC8\t0xF540\n0x8BC9\t0xF541\n0x8BCA\t0xF542\n0x8BCB\t0xF543\n0x8BCC\t0xF544\n0x8BCD\t0xF545\n0x8BCE\t0xF546\n0x8BCF\t0xF547\n0x8BD0\t0xF548\n0x8BD1\t0xF549\n0x8BD2\t0xF54A\n0x8BD3\t0xF54B\n0x8BD4\t0xF54C\n0x8BD5\t0xF54D\n0x8BD6\t0xF54E\n0x8BD7\t0xF54F\n0x8BD8\t0xF550\n0x8BD9\t0xF551\n0x8BDA\t0xF552\n0x8BDB\t0xF553\n0x8BDC\t0xF554\n0x8BDD\t0xF555\n0x8BDE\t0xF556\n0x8BDF\t0xF557\n0x8BE0\t0xF558\n0x8BE1\t0xF559\n0x8BE2\t0xF55A\n0x8BE3\t0xF55B\n0x8BE4\t0xF55C\n0x8BE5\t0xF55D\n0x8BE6\t0xF55E\n0x8BE7\t0xF55F\n0x8BE8\t0xF560\n0x8BE9\t0xF561\n0x8BEA\t0xF562\n0x8BEB\t0xF563\n0x8BEC\t0xF564\n0x8BED\t0xF565\n0x8BEE\t0xF566\n0x8BEF\t0xF567\n0x8BF0\t0xF568\n0x8BF1\t0xF569\n0x8BF2\t0xF56A\n0x8BF3\t0xF56B\n0x8BF4\t0xF56C\n0x8BF5\t0xF56D\n0x8BF6\t0xF56E\n0x8BF7\t0xF56F\n0x8BF8\t0xF570\n0x8BF9\t0xF571\n0x8BFA\t0xF572\n0x8BFB\t0xF573\n0x8BFC\t0xF574\n0x8BFD\t0xF575\n0x8BFE\t0xF576\n0x8C40\t0xF577\n0x8C41\t0xF578\n0x8C42\t0xF579\n0x8C43\t0xF57A\n0x8C44\t0xF57B\n0x8C45\t0xF57C\n0x8C46\t0xF57D\n0x8C47\t0xF57E\n0x8C48\t0xF57F\n0x8C49\t0xF580\n0x8C4A\t0xF581\n0x8C4B\t0xF582\n0x8C4C\t0xF583\n0x8C4D\t0xF584\n0x8C4E\t0xF585\n0x8C4F\t0xF586\n0x8C50\t0xF587\n0x8C51\t0xF588\n0x8C52\t0xF589\n0x8C53\t0xF58A\n0x8C54\t0xF58B\n0x8C55\t0xF58C\n0x8C56\t0xF58D\n0x8C57\t0xF58E\n0x8C58\t0xF58F\n0x8C59\t0xF590\n0x8C5A\t0xF591\n0x8C5B\t0xF592\n0x8C5C\t0xF593\n0x8C5D\t0xF594\n0x8C5E\t0xF595\n0x8C5F\t0xF596\n0x8C60\t0xF597\n0x8C61\t0xF598\n0x8C62\t0xF599\n0x8C63\t0xF59A\n0x8C64\t0xF59B\n0x8C65\t0xF59C\n0x8C66\t0xF59D\n0x8C67\t0xF59E\n0x8C68\t0xF59F\n0x8C69\t0xF5A0\n0x8C6A\t0xF5A1\n0x8C6B\t0xF5A2\n0x8C6C\t0xF5A3\n0x8C6D\t0xF5A4\n0x8C6E\t0xF5A5\n0x8C6F\t0xF5A6\n0x8C70\t0xF5A7\n0x8C71\t0xF5A8\n0x8C72\t0xF5A9\n0x8C73\t0xF5AA\n0x8C74\t0xF5AB\n0x8C75\t0xF5AC\n0x8C76\t0xF5AD\n0x8C77\t0xF5AE\n0x8C78\t0xF5AF\n0x8C79\t0xF5B0\n0x8C7A\t0xF5B1\n0x8C7B\t0xF5B2\n0x8C7C\t0xF5B3\n0x8C7D\t0xF5B4\n0x8C7E\t0xF5B5\n0x8CA1\t0xF5B6\n0x8CA2\t0xF5B7\n0x8CA3\t0xF5B8\n0x8CA4\t0xF5B9\n0x8CA5\t0xF5BA\n0x8CA6\t0xF5BB\n0x8CA7\t0xF5BC\n0x8CA8\t0xF5BD\n0x8CA9\t0xF5BE\n0x8CAA\t0xF5BF\n0x8CAB\t0xF5C0\n0x8CAC\t0xF5C1\n0x8CAD\t0xF5C2\n0x8CAE\t0xF5C3\n0x8CAF\t0xF5C4\n0x8CB0\t0xF5C5\n0x8CB1\t0xF5C6\n0x8CB2\t0xF5C7\n0x8CB3\t0xF5C8\n0x8CB4\t0xF5C9\n0x8CB5\t0xF5CA\n0x8CB6\t0xF5CB\n0x8CB7\t0xF5CC\n0x8CB8\t0xF5CD\n0x8CB9\t0xF5CE\n0x8CBA\t0xF5CF\n0x8CBB\t0xF5D0\n0x8CBC\t0xF5D1\n0x8CBD\t0xF5D2\n0x8CBE\t0xF5D3\n0x8CBF\t0xF5D4\n0x8CC0\t0xF5D5\n0x8CC1\t0xF5D6\n0x8CC2\t0xF5D7\n0x8CC3\t0xF5D8\n0x8CC4\t0xF5D9\n0x8CC5\t0xF5DA\n0x8CC6\t0xF5DB\n0x8CC7\t0xF5DC\n0x8CC8\t0xF5DD\n0x8CC9\t0xF5DE\n0x8CCA\t0xF5DF\n0x8CCB\t0xF5E0\n0x8CCC\t0xF5E1\n0x8CCD\t0xF5E2\n0x8CCE\t0xF5E3\n0x8CCF\t0xF5E4\n0x8CD0\t0xF5E5\n0x8CD1\t0xF5E6\n0x8CD2\t0xF5E7\n0x8CD3\t0xF5E8\n0x8CD4\t0xF5E9\n0x8CD5\t0xF5EA\n0x8CD6\t0xF5EB\n0x8CD7\t0xF5EC\n0x8CD8\t0xF5ED\n0x8CD9\t0xF5EE\n0x8CDA\t0xF5EF\n0x8CDB\t0xF5F0\n0x8CDC\t0xF5F1\n0x8CDD\t0xF5F2\n0x8CDE\t0xF5F3\n0x8CDF\t0xF5F4\n0x8CE0\t0xF5F5\n0x8CE1\t0xF5F6\n0x8CE2\t0xF5F7\n0x8CE3\t0xF5F8\n0x8CE4\t0xF5F9\n0x8CE5\t0xF5FA\n0x8CE6\t0xF5FB\n0x8CE7\t0xF5FC\n0x8CE8\t0xF5FD\n0x8CE9\t0xF5FE\n0x8CEA\t0xF5FF\n0x8CEB\t0xF600\n0x8CEC\t0xF601\n0x8CED\t0xF602\n0x8CEE\t0xF603\n0x8CEF\t0xF604\n0x8CF0\t0xF605\n0x8CF1\t0xF606\n0x8CF2\t0xF607\n0x8CF3\t0xF608\n0x8CF4\t0xF609\n0x8CF5\t0xF60A\n0x8CF6\t0xF60B\n0x8CF7\t0xF60C\n0x8CF8\t0xF60D\n0x8CF9\t0xF60E\n0x8CFA\t0xF60F\n0x8CFB\t0xF610\n0x8CFC\t0xF611\n0x8CFD\t0xF612\n0x8CFE\t0xF613\n0x8D40\t0xF614\n0x8D41\t0xF615\n0x8D42\t0xF616\n0x8D43\t0xF617\n0x8D44\t0xF618\n0x8D45\t0xF619\n0x8D46\t0xF61A\n0x8D47\t0xF61B\n0x8D48\t0xF61C\n0x8D49\t0xF61D\n0x8D4A\t0xF61E\n0x8D4B\t0xF61F\n0x8D4C\t0xF620\n0x8D4D\t0xF621\n0x8D4E\t0xF622\n0x8D4F\t0xF623\n0x8D50\t0xF624\n0x8D51\t0xF625\n0x8D52\t0xF626\n0x8D53\t0xF627\n0x8D54\t0xF628\n0x8D55\t0xF629\n0x8D56\t0xF62A\n0x8D57\t0xF62B\n0x8D58\t0xF62C\n0x8D59\t0xF62D\n0x8D5A\t0xF62E\n0x8D5B\t0xF62F\n0x8D5C\t0xF630\n0x8D5D\t0xF631\n0x8D5E\t0xF632\n0x8D5F\t0xF633\n0x8D60\t0xF634\n0x8D61\t0xF635\n0x8D62\t0xF636\n0x8D63\t0xF637\n0x8D64\t0xF638\n0x8D65\t0xF639\n0x8D66\t0xF63A\n0x8D67\t0xF63B\n0x8D68\t0xF63C\n0x8D69\t0xF63D\n0x8D6A\t0xF63E\n0x8D6B\t0xF63F\n0x8D6C\t0xF640\n0x8D6D\t0xF641\n0x8D6E\t0xF642\n0x8D6F\t0xF643\n0x8D70\t0xF644\n0x8D71\t0xF645\n0x8D72\t0xF646\n0x8D73\t0xF647\n0x8D74\t0xF648\n0x8D75\t0xF649\n0x8D76\t0xF64A\n0x8D77\t0xF64B\n0x8D78\t0xF64C\n0x8D79\t0xF64D\n0x8D7A\t0xF64E\n0x8D7B\t0xF64F\n0x8D7C\t0xF650\n0x8D7D\t0xF651\n0x8D7E\t0xF652\n0x8DA1\t0xF653\n0x8DA2\t0xF654\n0x8DA3\t0xF655\n0x8DA4\t0xF656\n0x8DA5\t0xF657\n0x8DA6\t0xF658\n0x8DA7\t0xF659\n0x8DA8\t0xF65A\n0x8DA9\t0xF65B\n0x8DAA\t0xF65C\n0x8DAB\t0xF65D\n0x8DAC\t0xF65E\n0x8DAD\t0xF65F\n0x8DAE\t0xF660\n0x8DAF\t0xF661\n0x8DB0\t0xF662\n0x8DB1\t0xF663\n0x8DB2\t0xF664\n0x8DB3\t0xF665\n0x8DB4\t0xF666\n0x8DB5\t0xF667\n0x8DB6\t0xF668\n0x8DB7\t0xF669\n0x8DB8\t0xF66A\n0x8DB9\t0xF66B\n0x8DBA\t0xF66C\n0x8DBB\t0xF66D\n0x8DBC\t0xF66E\n0x8DBD\t0xF66F\n0x8DBE\t0xF670\n0x8DBF\t0xF671\n0x8DC0\t0xF672\n0x8DC1\t0xF673\n0x8DC2\t0xF674\n0x8DC3\t0xF675\n0x8DC4\t0xF676\n0x8DC5\t0xF677\n0x8DC6\t0xF678\n0x8DC7\t0xF679\n0x8DC8\t0xF67A\n0x8DC9\t0xF67B\n0x8DCA\t0xF67C\n0x8DCB\t0xF67D\n0x8DCC\t0xF67E\n0x8DCD\t0xF67F\n0x8DCE\t0xF680\n0x8DCF\t0xF681\n0x8DD0\t0xF682\n0x8DD1\t0xF683\n0x8DD2\t0xF684\n0x8DD3\t0xF685\n0x8DD4\t0xF686\n0x8DD5\t0xF687\n0x8DD6\t0xF688\n0x8DD7\t0xF689\n0x8DD8\t0xF68A\n0x8DD9\t0xF68B\n0x8DDA\t0xF68C\n0x8DDB\t0xF68D\n0x8DDC\t0xF68E\n0x8DDD\t0xF68F\n0x8DDE\t0xF690\n0x8DDF\t0xF691\n0x8DE0\t0xF692\n0x8DE1\t0xF693\n0x8DE2\t0xF694\n0x8DE3\t0xF695\n0x8DE4\t0xF696\n0x8DE5\t0xF697\n0x8DE6\t0xF698\n0x8DE7\t0xF699\n0x8DE8\t0xF69A\n0x8DE9\t0xF69B\n0x8DEA\t0xF69C\n0x8DEB\t0xF69D\n0x8DEC\t0xF69E\n0x8DED\t0xF69F\n0x8DEE\t0xF6A0\n0x8DEF\t0xF6A1\n0x8DF0\t0xF6A2\n0x8DF1\t0xF6A3\n0x8DF2\t0xF6A4\n0x8DF3\t0xF6A5\n0x8DF4\t0xF6A6\n0x8DF5\t0xF6A7\n0x8DF6\t0xF6A8\n0x8DF7\t0xF6A9\n0x8DF8\t0xF6AA\n0x8DF9\t0xF6AB\n0x8DFA\t0xF6AC\n0x8DFB\t0xF6AD\n0x8DFC\t0xF6AE\n0x8DFD\t0xF6AF\n0x8DFE\t0xF6B0\n0x8E40\t0xE311\n0x8E41\t0xE312\n0x8E42\t0xE313\n0x8E43\t0xE314\n0x8E44\t0xE315\n0x8E45\t0xE316\n0x8E46\t0xE317\n0x8E47\t0xE318\n0x8E48\t0xE319\n0x8E49\t0xE31A\n0x8E4A\t0xE31B\n0x8E4B\t0xE31C\n0x8E4C\t0xE31D\n0x8E4D\t0xE31E\n0x8E4E\t0xE31F\n0x8E4F\t0xE320\n0x8E50\t0xE321\n0x8E51\t0xE322\n0x8E52\t0xE323\n0x8E53\t0xE324\n0x8E54\t0xE325\n0x8E55\t0xE326\n0x8E56\t0xE327\n0x8E57\t0xE328\n0x8E58\t0xE329\n0x8E59\t0xE32A\n0x8E5A\t0xE32B\n0x8E5B\t0xE32C\n0x8E5C\t0xE32D\n0x8E5D\t0xE32E\n0x8E5E\t0xE32F\n0x8E5F\t0xE330\n0x8E60\t0xE331\n0x8E61\t0xE332\n0x8E62\t0xE333\n0x8E63\t0xE334\n0x8E64\t0xE335\n0x8E65\t0xE336\n0x8E66\t0xE337\n0x8E67\t0xE338\n0x8E68\t0xE339\n0x8E69\t0xE33A\n0x8E6A\t0xE33B\n0x8E6B\t0xE33C\n0x8E6C\t0xE33D\n0x8E6D\t0xE33E\n0x8E6E\t0xE33F\n0x8E6F\t0xE340\n0x8E70\t0xE341\n0x8E71\t0xE342\n0x8E72\t0xE343\n0x8E73\t0xE344\n0x8E74\t0xE345\n0x8E75\t0xE346\n0x8E76\t0xE347\n0x8E77\t0xE348\n0x8E78\t0xE349\n0x8E79\t0xE34A\n0x8E7A\t0xE34B\n0x8E7B\t0xE34C\n0x8E7C\t0xE34D\n0x8E7D\t0xE34E\n0x8E7E\t0xE34F\n0x8EA1\t0xE350\n0x8EA2\t0xE351\n0x8EA3\t0xE352\n0x8EA4\t0xE353\n0x8EA5\t0xE354\n0x8EA6\t0xE355\n0x8EA7\t0xE356\n0x8EA8\t0xE357\n0x8EA9\t0xE358\n0x8EAA\t0xE359\n0x8EAB\t0xE35A\n0x8EAC\t0xE35B\n0x8EAD\t0xE35C\n0x8EAE\t0xE35D\n0x8EAF\t0xE35E\n0x8EB0\t0xE35F\n0x8EB1\t0xE360\n0x8EB2\t0xE361\n0x8EB3\t0xE362\n0x8EB4\t0xE363\n0x8EB5\t0xE364\n0x8EB6\t0xE365\n0x8EB7\t0xE366\n0x8EB8\t0xE367\n0x8EB9\t0xE368\n0x8EBA\t0xE369\n0x8EBB\t0xE36A\n0x8EBC\t0xE36B\n0x8EBD\t0xE36C\n0x8EBE\t0xE36D\n0x8EBF\t0xE36E\n0x8EC0\t0xE36F\n0x8EC1\t0xE370\n0x8EC2\t0xE371\n0x8EC3\t0xE372\n0x8EC4\t0xE373\n0x8EC5\t0xE374\n0x8EC6\t0xE375\n0x8EC7\t0xE376\n0x8EC8\t0xE377\n0x8EC9\t0xE378\n0x8ECA\t0xE379\n0x8ECB\t0xE37A\n0x8ECC\t0xE37B\n0x8ECD\t0xE37C\n0x8ECE\t0xE37D\n0x8ECF\t0xE37E\n0x8ED0\t0xE37F\n0x8ED1\t0xE380\n0x8ED2\t0xE381\n0x8ED3\t0xE382\n0x8ED4\t0xE383\n0x8ED5\t0xE384\n0x8ED6\t0xE385\n0x8ED7\t0xE386\n0x8ED8\t0xE387\n0x8ED9\t0xE388\n0x8EDA\t0xE389\n0x8EDB\t0xE38A\n0x8EDC\t0xE38B\n0x8EDD\t0xE38C\n0x8EDE\t0xE38D\n0x8EDF\t0xE38E\n0x8EE0\t0xE38F\n0x8EE1\t0xE390\n0x8EE2\t0xE391\n0x8EE3\t0xE392\n0x8EE4\t0xE393\n0x8EE5\t0xE394\n0x8EE6\t0xE395\n0x8EE7\t0xE396\n0x8EE8\t0xE397\n0x8EE9\t0xE398\n0x8EEA\t0xE399\n0x8EEB\t0xE39A\n0x8EEC\t0xE39B\n0x8EED\t0xE39C\n0x8EEE\t0xE39D\n0x8EEF\t0xE39E\n0x8EF0\t0xE39F\n0x8EF1\t0xE3A0\n0x8EF2\t0xE3A1\n0x8EF3\t0xE3A2\n0x8EF4\t0xE3A3\n0x8EF5\t0xE3A4\n0x8EF6\t0xE3A5\n0x8EF7\t0xE3A6\n0x8EF8\t0xE3A7\n0x8EF9\t0xE3A8\n0x8EFA\t0xE3A9\n0x8EFB\t0xE3AA\n0x8EFC\t0xE3AB\n0x8EFD\t0xE3AC\n0x8EFE\t0xE3AD\n0x8F40\t0xE3AE\n0x8F41\t0xE3AF\n0x8F42\t0xE3B0\n0x8F43\t0xE3B1\n0x8F44\t0xE3B2\n0x8F45\t0xE3B3\n0x8F46\t0xE3B4\n0x8F47\t0xE3B5\n0x8F48\t0xE3B6\n0x8F49\t0xE3B7\n0x8F4A\t0xE3B8\n0x8F4B\t0xE3B9\n0x8F4C\t0xE3BA\n0x8F4D\t0xE3BB\n0x8F4E\t0xE3BC\n0x8F4F\t0xE3BD\n0x8F50\t0xE3BE\n0x8F51\t0xE3BF\n0x8F52\t0xE3C0\n0x8F53\t0xE3C1\n0x8F54\t0xE3C2\n0x8F55\t0xE3C3\n0x8F56\t0xE3C4\n0x8F57\t0xE3C5\n0x8F58\t0xE3C6\n0x8F59\t0xE3C7\n0x8F5A\t0xE3C8\n0x8F5B\t0xE3C9\n0x8F5C\t0xE3CA\n0x8F5D\t0xE3CB\n0x8F5E\t0xE3CC\n0x8F5F\t0xE3CD\n0x8F60\t0xE3CE\n0x8F61\t0xE3CF\n0x8F62\t0xE3D0\n0x8F63\t0xE3D1\n0x8F64\t0xE3D2\n0x8F65\t0xE3D3\n0x8F66\t0xE3D4\n0x8F67\t0xE3D5\n0x8F68\t0xE3D6\n0x8F69\t0xE3D7\n0x8F6A\t0xE3D8\n0x8F6B\t0xE3D9\n0x8F6C\t0xE3DA\n0x8F6D\t0xE3DB\n0x8F6E\t0xE3DC\n0x8F6F\t0xE3DD\n0x8F70\t0xE3DE\n0x8F71\t0xE3DF\n0x8F72\t0xE3E0\n0x8F73\t0xE3E1\n0x8F74\t0xE3E2\n0x8F75\t0xE3E3\n0x8F76\t0xE3E4\n0x8F77\t0xE3E5\n0x8F78\t0xE3E6\n0x8F79\t0xE3E7\n0x8F7A\t0xE3E8\n0x8F7B\t0xE3E9\n0x8F7C\t0xE3EA\n0x8F7D\t0xE3EB\n0x8F7E\t0xE3EC\n0x8FA1\t0xE3ED\n0x8FA2\t0xE3EE\n0x8FA3\t0xE3EF\n0x8FA4\t0xE3F0\n0x8FA5\t0xE3F1\n0x8FA6\t0xE3F2\n0x8FA7\t0xE3F3\n0x8FA8\t0xE3F4\n0x8FA9\t0xE3F5\n0x8FAA\t0xE3F6\n0x8FAB\t0xE3F7\n0x8FAC\t0xE3F8\n0x8FAD\t0xE3F9\n0x8FAE\t0xE3FA\n0x8FAF\t0xE3FB\n0x8FB0\t0xE3FC\n0x8FB1\t0xE3FD\n0x8FB2\t0xE3FE\n0x8FB3\t0xE3FF\n0x8FB4\t0xE400\n0x8FB5\t0xE401\n0x8FB6\t0xE402\n0x8FB7\t0xE403\n0x8FB8\t0xE404\n0x8FB9\t0xE405\n0x8FBA\t0xE406\n0x8FBB\t0xE407\n0x8FBC\t0xE408\n0x8FBD\t0xE409\n0x8FBE\t0xE40A\n0x8FBF\t0xE40B\n0x8FC0\t0xE40C\n0x8FC1\t0xE40D\n0x8FC2\t0xE40E\n0x8FC3\t0xE40F\n0x8FC4\t0xE410\n0x8FC5\t0xE411\n0x8FC6\t0xE412\n0x8FC7\t0xE413\n0x8FC8\t0xE414\n0x8FC9\t0xE415\n0x8FCA\t0xE416\n0x8FCB\t0xE417\n0x8FCC\t0xE418\n0x8FCD\t0xE419\n0x8FCE\t0xE41A\n0x8FCF\t0xE41B\n0x8FD0\t0xE41C\n0x8FD1\t0xE41D\n0x8FD2\t0xE41E\n0x8FD3\t0xE41F\n0x8FD4\t0xE420\n0x8FD5\t0xE421\n0x8FD6\t0xE422\n0x8FD7\t0xE423\n0x8FD8\t0xE424\n0x8FD9\t0xE425\n0x8FDA\t0xE426\n0x8FDB\t0xE427\n0x8FDC\t0xE428\n0x8FDD\t0xE429\n0x8FDE\t0xE42A\n0x8FDF\t0xE42B\n0x8FE0\t0xE42C\n0x8FE1\t0xE42D\n0x8FE2\t0xE42E\n0x8FE3\t0xE42F\n0x8FE4\t0xE430\n0x8FE5\t0xE431\n0x8FE6\t0xE432\n0x8FE7\t0xE433\n0x8FE8\t0xE434\n0x8FE9\t0xE435\n0x8FEA\t0xE436\n0x8FEB\t0xE437\n0x8FEC\t0xE438\n0x8FED\t0xE439\n0x8FEE\t0xE43A\n0x8FEF\t0xE43B\n0x8FF0\t0xE43C\n0x8FF1\t0xE43D\n0x8FF2\t0xE43E\n0x8FF3\t0xE43F\n0x8FF4\t0xE440\n0x8FF5\t0xE441\n0x8FF6\t0xE442\n0x8FF7\t0xE443\n0x8FF8\t0xE444\n0x8FF9\t0xE445\n0x8FFA\t0xE446\n0x8FFB\t0xE447\n0x8FFC\t0xE448\n0x8FFD\t0xE449\n0x8FFE\t0xE44A\n0x9040\t0xE44B\n0x9041\t0xE44C\n0x9042\t0xE44D\n0x9043\t0xE44E\n0x9044\t0xE44F\n0x9045\t0xE450\n0x9046\t0xE451\n0x9047\t0xE452\n0x9048\t0xE453\n0x9049\t0xE454\n0x904A\t0xE455\n0x904B\t0xE456\n0x904C\t0xE457\n0x904D\t0xE458\n0x904E\t0xE459\n0x904F\t0xE45A\n0x9050\t0xE45B\n0x9051\t0xE45C\n0x9052\t0xE45D\n0x9053\t0xE45E\n0x9054\t0xE45F\n0x9055\t0xE460\n0x9056\t0xE461\n0x9057\t0xE462\n0x9058\t0xE463\n0x9059\t0xE464\n0x905A\t0xE465\n0x905B\t0xE466\n0x905C\t0xE467\n0x905D\t0xE468\n0x905E\t0xE469\n0x905F\t0xE46A\n0x9060\t0xE46B\n0x9061\t0xE46C\n0x9062\t0xE46D\n0x9063\t0xE46E\n0x9064\t0xE46F\n0x9065\t0xE470\n0x9066\t0xE471\n0x9067\t0xE472\n0x9068\t0xE473\n0x9069\t0xE474\n0x906A\t0xE475\n0x906B\t0xE476\n0x906C\t0xE477\n0x906D\t0xE478\n0x906E\t0xE479\n0x906F\t0xE47A\n0x9070\t0xE47B\n0x9071\t0xE47C\n0x9072\t0xE47D\n0x9073\t0xE47E\n0x9074\t0xE47F\n0x9075\t0xE480\n0x9076\t0xE481\n0x9077\t0xE482\n0x9078\t0xE483\n0x9079\t0xE484\n0x907A\t0xE485\n0x907B\t0xE486\n0x907C\t0xE487\n0x907D\t0xE488\n0x907E\t0xE489\n0x90A1\t0xE48A\n0x90A2\t0xE48B\n0x90A3\t0xE48C\n0x90A4\t0xE48D\n0x90A5\t0xE48E\n0x90A6\t0xE48F\n0x90A7\t0xE490\n0x90A8\t0xE491\n0x90A9\t0xE492\n0x90AA\t0xE493\n0x90AB\t0xE494\n0x90AC\t0xE495\n0x90AD\t0xE496\n0x90AE\t0xE497\n0x90AF\t0xE498\n0x90B0\t0xE499\n0x90B1\t0xE49A\n0x90B2\t0xE49B\n0x90B3\t0xE49C\n0x90B4\t0xE49D\n0x90B5\t0xE49E\n0x90B6\t0xE49F\n0x90B7\t0xE4A0\n0x90B8\t0xE4A1\n0x90B9\t0xE4A2\n0x90BA\t0xE4A3\n0x90BB\t0xE4A4\n0x90BC\t0xE4A5\n0x90BD\t0xE4A6\n0x90BE\t0xE4A7\n0x90BF\t0xE4A8\n0x90C0\t0xE4A9\n0x90C1\t0xE4AA\n0x90C2\t0xE4AB\n0x90C3\t0xE4AC\n0x90C4\t0xE4AD\n0x90C5\t0xE4AE\n0x90C6\t0xE4AF\n0x90C7\t0xE4B0\n0x90C8\t0xE4B1\n0x90C9\t0xE4B2\n0x90CA\t0xE4B3\n0x90CB\t0xE4B4\n0x90CC\t0xE4B5\n0x90CD\t0xE4B6\n0x90CE\t0xE4B7\n0x90CF\t0xE4B8\n0x90D0\t0xE4B9\n0x90D1\t0xE4BA\n0x90D2\t0xE4BB\n0x90D3\t0xE4BC\n0x90D4\t0xE4BD\n0x90D5\t0xE4BE\n0x90D6\t0xE4BF\n0x90D7\t0xE4C0\n0x90D8\t0xE4C1\n0x90D9\t0xE4C2\n0x90DA\t0xE4C3\n0x90DB\t0xE4C4\n0x90DC\t0xE4C5\n0x90DD\t0xE4C6\n0x90DE\t0xE4C7\n0x90DF\t0xE4C8\n0x90E0\t0xE4C9\n0x90E1\t0xE4CA\n0x90E2\t0xE4CB\n0x90E3\t0xE4CC\n0x90E4\t0xE4CD\n0x90E5\t0xE4CE\n0x90E6\t0xE4CF\n0x90E7\t0xE4D0\n0x90E8\t0xE4D1\n0x90E9\t0xE4D2\n0x90EA\t0xE4D3\n0x90EB\t0xE4D4\n0x90EC\t0xE4D5\n0x90ED\t0xE4D6\n0x90EE\t0xE4D7\n0x90EF\t0xE4D8\n0x90F0\t0xE4D9\n0x90F1\t0xE4DA\n0x90F2\t0xE4DB\n0x90F3\t0xE4DC\n0x90F4\t0xE4DD\n0x90F5\t0xE4DE\n0x90F6\t0xE4DF\n0x90F7\t0xE4E0\n0x90F8\t0xE4E1\n0x90F9\t0xE4E2\n0x90FA\t0xE4E3\n0x90FB\t0xE4E4\n0x90FC\t0xE4E5\n0x90FD\t0xE4E6\n0x90FE\t0xE4E7\n0x9140\t0xE4E8\n0x9141\t0xE4E9\n0x9142\t0xE4EA\n0x9143\t0xE4EB\n0x9144\t0xE4EC\n0x9145\t0xE4ED\n0x9146\t0xE4EE\n0x9147\t0xE4EF\n0x9148\t0xE4F0\n0x9149\t0xE4F1\n0x914A\t0xE4F2\n0x914B\t0xE4F3\n0x914C\t0xE4F4\n0x914D\t0xE4F5\n0x914E\t0xE4F6\n0x914F\t0xE4F7\n0x9150\t0xE4F8\n0x9151\t0xE4F9\n0x9152\t0xE4FA\n0x9153\t0xE4FB\n0x9154\t0xE4FC\n0x9155\t0xE4FD\n0x9156\t0xE4FE\n0x9157\t0xE4FF\n0x9158\t0xE500\n0x9159\t0xE501\n0x915A\t0xE502\n0x915B\t0xE503\n0x915C\t0xE504\n0x915D\t0xE505\n0x915E\t0xE506\n0x915F\t0xE507\n0x9160\t0xE508\n0x9161\t0xE509\n0x9162\t0xE50A\n0x9163\t0xE50B\n0x9164\t0xE50C\n0x9165\t0xE50D\n0x9166\t0xE50E\n0x9167\t0xE50F\n0x9168\t0xE510\n0x9169\t0xE511\n0x916A\t0xE512\n0x916B\t0xE513\n0x916C\t0xE514\n0x916D\t0xE515\n0x916E\t0xE516\n0x916F\t0xE517\n0x9170\t0xE518\n0x9171\t0xE519\n0x9172\t0xE51A\n0x9173\t0xE51B\n0x9174\t0xE51C\n0x9175\t0xE51D\n0x9176\t0xE51E\n0x9177\t0xE51F\n0x9178\t0xE520\n0x9179\t0xE521\n0x917A\t0xE522\n0x917B\t0xE523\n0x917C\t0xE524\n0x917D\t0xE525\n0x917E\t0xE526\n0x91A1\t0xE527\n0x91A2\t0xE528\n0x91A3\t0xE529\n0x91A4\t0xE52A\n0x91A5\t0xE52B\n0x91A6\t0xE52C\n0x91A7\t0xE52D\n0x91A8\t0xE52E\n0x91A9\t0xE52F\n0x91AA\t0xE530\n0x91AB\t0xE531\n0x91AC\t0xE532\n0x91AD\t0xE533\n0x91AE\t0xE534\n0x91AF\t0xE535\n0x91B0\t0xE536\n0x91B1\t0xE537\n0x91B2\t0xE538\n0x91B3\t0xE539\n0x91B4\t0xE53A\n0x91B5\t0xE53B\n0x91B6\t0xE53C\n0x91B7\t0xE53D\n0x91B8\t0xE53E\n0x91B9\t0xE53F\n0x91BA\t0xE540\n0x91BB\t0xE541\n0x91BC\t0xE542\n0x91BD\t0xE543\n0x91BE\t0xE544\n0x91BF\t0xE545\n0x91C0\t0xE546\n0x91C1\t0xE547\n0x91C2\t0xE548\n0x91C3\t0xE549\n0x91C4\t0xE54A\n0x91C5\t0xE54B\n0x91C6\t0xE54C\n0x91C7\t0xE54D\n0x91C8\t0xE54E\n0x91C9\t0xE54F\n0x91CA\t0xE550\n0x91CB\t0xE551\n0x91CC\t0xE552\n0x91CD\t0xE553\n0x91CE\t0xE554\n0x91CF\t0xE555\n0x91D0\t0xE556\n0x91D1\t0xE557\n0x91D2\t0xE558\n0x91D3\t0xE559\n0x91D4\t0xE55A\n0x91D5\t0xE55B\n0x91D6\t0xE55C\n0x91D7\t0xE55D\n0x91D8\t0xE55E\n0x91D9\t0xE55F\n0x91DA\t0xE560\n0x91DB\t0xE561\n0x91DC\t0xE562\n0x91DD\t0xE563\n0x91DE\t0xE564\n0x91DF\t0xE565\n0x91E0\t0xE566\n0x91E1\t0xE567\n0x91E2\t0xE568\n0x91E3\t0xE569\n0x91E4\t0xE56A\n0x91E5\t0xE56B\n0x91E6\t0xE56C\n0x91E7\t0xE56D\n0x91E8\t0xE56E\n0x91E9\t0xE56F\n0x91EA\t0xE570\n0x91EB\t0xE571\n0x91EC\t0xE572\n0x91ED\t0xE573\n0x91EE\t0xE574\n0x91EF\t0xE575\n0x91F0\t0xE576\n0x91F1\t0xE577\n0x91F2\t0xE578\n0x91F3\t0xE579\n0x91F4\t0xE57A\n0x91F5\t0xE57B\n0x91F6\t0xE57C\n0x91F7\t0xE57D\n0x91F8\t0xE57E\n0x91F9\t0xE57F\n0x91FA\t0xE580\n0x91FB\t0xE581\n0x91FC\t0xE582\n0x91FD\t0xE583\n0x91FE\t0xE584\n0x9240\t0xE585\n0x9241\t0xE586\n0x9242\t0xE587\n0x9243\t0xE588\n0x9244\t0xE589\n0x9245\t0xE58A\n0x9246\t0xE58B\n0x9247\t0xE58C\n0x9248\t0xE58D\n0x9249\t0xE58E\n0x924A\t0xE58F\n0x924B\t0xE590\n0x924C\t0xE591\n0x924D\t0xE592\n0x924E\t0xE593\n0x924F\t0xE594\n0x9250\t0xE595\n0x9251\t0xE596\n0x9252\t0xE597\n0x9253\t0xE598\n0x9254\t0xE599\n0x9255\t0xE59A\n0x9256\t0xE59B\n0x9257\t0xE59C\n0x9258\t0xE59D\n0x9259\t0xE59E\n0x925A\t0xE59F\n0x925B\t0xE5A0\n0x925C\t0xE5A1\n0x925D\t0xE5A2\n0x925E\t0xE5A3\n0x925F\t0xE5A4\n0x9260\t0xE5A5\n0x9261\t0xE5A6\n0x9262\t0xE5A7\n0x9263\t0xE5A8\n0x9264\t0xE5A9\n0x9265\t0xE5AA\n0x9266\t0xE5AB\n0x9267\t0xE5AC\n0x9268\t0xE5AD\n0x9269\t0xE5AE\n0x926A\t0xE5AF\n0x926B\t0xE5B0\n0x926C\t0xE5B1\n0x926D\t0xE5B2\n0x926E\t0xE5B3\n0x926F\t0xE5B4\n0x9270\t0xE5B5\n0x9271\t0xE5B6\n0x9272\t0xE5B7\n0x9273\t0xE5B8\n0x9274\t0xE5B9\n0x9275\t0xE5BA\n0x9276\t0xE5BB\n0x9277\t0xE5BC\n0x9278\t0xE5BD\n0x9279\t0xE5BE\n0x927A\t0xE5BF\n0x927B\t0xE5C0\n0x927C\t0xE5C1\n0x927D\t0xE5C2\n0x927E\t0xE5C3\n0x92A1\t0xE5C4\n0x92A2\t0xE5C5\n0x92A3\t0xE5C6\n0x92A4\t0xE5C7\n0x92A5\t0xE5C8\n0x92A6\t0xE5C9\n0x92A7\t0xE5CA\n0x92A8\t0xE5CB\n0x92A9\t0xE5CC\n0x92AA\t0xE5CD\n0x92AB\t0xE5CE\n0x92AC\t0xE5CF\n0x92AD\t0xE5D0\n0x92AE\t0xE5D1\n0x92AF\t0xE5D2\n0x92B0\t0xE5D3\n0x92B1\t0xE5D4\n0x92B2\t0xE5D5\n0x92B3\t0xE5D6\n0x92B4\t0xE5D7\n0x92B5\t0xE5D8\n0x92B6\t0xE5D9\n0x92B7\t0xE5DA\n0x92B8\t0xE5DB\n0x92B9\t0xE5DC\n0x92BA\t0xE5DD\n0x92BB\t0xE5DE\n0x92BC\t0xE5DF\n0x92BD\t0xE5E0\n0x92BE\t0xE5E1\n0x92BF\t0xE5E2\n0x92C0\t0xE5E3\n0x92C1\t0xE5E4\n0x92C2\t0xE5E5\n0x92C3\t0xE5E6\n0x92C4\t0xE5E7\n0x92C5\t0xE5E8\n0x92C6\t0xE5E9\n0x92C7\t0xE5EA\n0x92C8\t0xE5EB\n0x92C9\t0xE5EC\n0x92CA\t0xE5ED\n0x92CB\t0xE5EE\n0x92CC\t0xE5EF\n0x92CD\t0xE5F0\n0x92CE\t0xE5F1\n0x92CF\t0xE5F2\n0x92D0\t0xE5F3\n0x92D1\t0xE5F4\n0x92D2\t0xE5F5\n0x92D3\t0xE5F6\n0x92D4\t0xE5F7\n0x92D5\t0xE5F8\n0x92D6\t0xE5F9\n0x92D7\t0xE5FA\n0x92D8\t0xE5FB\n0x92D9\t0xE5FC\n0x92DA\t0xE5FD\n0x92DB\t0xE5FE\n0x92DC\t0xE5FF\n0x92DD\t0xE600\n0x92DE\t0xE601\n0x92DF\t0xE602\n0x92E0\t0xE603\n0x92E1\t0xE604\n0x92E2\t0xE605\n0x92E3\t0xE606\n0x92E4\t0xE607\n0x92E5\t0xE608\n0x92E6\t0xE609\n0x92E7\t0xE60A\n0x92E8\t0xE60B\n0x92E9\t0xE60C\n0x92EA\t0xE60D\n0x92EB\t0xE60E\n0x92EC\t0xE60F\n0x92ED\t0xE610\n0x92EE\t0xE611\n0x92EF\t0xE612\n0x92F0\t0xE613\n0x92F1\t0xE614\n0x92F2\t0xE615\n0x92F3\t0xE616\n0x92F4\t0xE617\n0x92F5\t0xE618\n0x92F6\t0xE619\n0x92F7\t0xE61A\n0x92F8\t0xE61B\n0x92F9\t0xE61C\n0x92FA\t0xE61D\n0x92FB\t0xE61E\n0x92FC\t0xE61F\n0x92FD\t0xE620\n0x92FE\t0xE621\n0x9340\t0xE622\n0x9341\t0xE623\n0x9342\t0xE624\n0x9343\t0xE625\n0x9344\t0xE626\n0x9345\t0xE627\n0x9346\t0xE628\n0x9347\t0xE629\n0x9348\t0xE62A\n0x9349\t0xE62B\n0x934A\t0xE62C\n0x934B\t0xE62D\n0x934C\t0xE62E\n0x934D\t0xE62F\n0x934E\t0xE630\n0x934F\t0xE631\n0x9350\t0xE632\n0x9351\t0xE633\n0x9352\t0xE634\n0x9353\t0xE635\n0x9354\t0xE636\n0x9355\t0xE637\n0x9356\t0xE638\n0x9357\t0xE639\n0x9358\t0xE63A\n0x9359\t0xE63B\n0x935A\t0xE63C\n0x935B\t0xE63D\n0x935C\t0xE63E\n0x935D\t0xE63F\n0x935E\t0xE640\n0x935F\t0xE641\n0x9360\t0xE642\n0x9361\t0xE643\n0x9362\t0xE644\n0x9363\t0xE645\n0x9364\t0xE646\n0x9365\t0xE647\n0x9366\t0xE648\n0x9367\t0xE649\n0x9368\t0xE64A\n0x9369\t0xE64B\n0x936A\t0xE64C\n0x936B\t0xE64D\n0x936C\t0xE64E\n0x936D\t0xE64F\n0x936E\t0xE650\n0x936F\t0xE651\n0x9370\t0xE652\n0x9371\t0xE653\n0x9372\t0xE654\n0x9373\t0xE655\n0x9374\t0xE656\n0x9375\t0xE657\n0x9376\t0xE658\n0x9377\t0xE659\n0x9378\t0xE65A\n0x9379\t0xE65B\n0x937A\t0xE65C\n0x937B\t0xE65D\n0x937C\t0xE65E\n0x937D\t0xE65F\n0x937E\t0xE660\n0x93A1\t0xE661\n0x93A2\t0xE662\n0x93A3\t0xE663\n0x93A4\t0xE664\n0x93A5\t0xE665\n0x93A6\t0xE666\n0x93A7\t0xE667\n0x93A8\t0xE668\n0x93A9\t0xE669\n0x93AA\t0xE66A\n0x93AB\t0xE66B\n0x93AC\t0xE66C\n0x93AD\t0xE66D\n0x93AE\t0xE66E\n0x93AF\t0xE66F\n0x93B0\t0xE670\n0x93B1\t0xE671\n0x93B2\t0xE672\n0x93B3\t0xE673\n0x93B4\t0xE674\n0x93B5\t0xE675\n0x93B6\t0xE676\n0x93B7\t0xE677\n0x93B8\t0xE678\n0x93B9\t0xE679\n0x93BA\t0xE67A\n0x93BB\t0xE67B\n0x93BC\t0xE67C\n0x93BD\t0xE67D\n0x93BE\t0xE67E\n0x93BF\t0xE67F\n0x93C0\t0xE680\n0x93C1\t0xE681\n0x93C2\t0xE682\n0x93C3\t0xE683\n0x93C4\t0xE684\n0x93C5\t0xE685\n0x93C6\t0xE686\n0x93C7\t0xE687\n0x93C8\t0xE688\n0x93C9\t0xE689\n0x93CA\t0xE68A\n0x93CB\t0xE68B\n0x93CC\t0xE68C\n0x93CD\t0xE68D\n0x93CE\t0xE68E\n0x93CF\t0xE68F\n0x93D0\t0xE690\n0x93D1\t0xE691\n0x93D2\t0xE692\n0x93D3\t0xE693\n0x93D4\t0xE694\n0x93D5\t0xE695\n0x93D6\t0xE696\n0x93D7\t0xE697\n0x93D8\t0xE698\n0x93D9\t0xE699\n0x93DA\t0xE69A\n0x93DB\t0xE69B\n0x93DC\t0xE69C\n0x93DD\t0xE69D\n0x93DE\t0xE69E\n0x93DF\t0xE69F\n0x93E0\t0xE6A0\n0x93E1\t0xE6A1\n0x93E2\t0xE6A2\n0x93E3\t0xE6A3\n0x93E4\t0xE6A4\n0x93E5\t0xE6A5\n0x93E6\t0xE6A6\n0x93E7\t0xE6A7\n0x93E8\t0xE6A8\n0x93E9\t0xE6A9\n0x93EA\t0xE6AA\n0x93EB\t0xE6AB\n0x93EC\t0xE6AC\n0x93ED\t0xE6AD\n0x93EE\t0xE6AE\n0x93EF\t0xE6AF\n0x93F0\t0xE6B0\n0x93F1\t0xE6B1\n0x93F2\t0xE6B2\n0x93F3\t0xE6B3\n0x93F4\t0xE6B4\n0x93F5\t0xE6B5\n0x93F6\t0xE6B6\n0x93F7\t0xE6B7\n0x93F8\t0xE6B8\n0x93F9\t0xE6B9\n0x93FA\t0xE6BA\n0x93FB\t0xE6BB\n0x93FC\t0xE6BC\n0x93FD\t0xE6BD\n0x93FE\t0xE6BE\n0x9440\t0xE6BF\n0x9441\t0xE6C0\n0x9442\t0xE6C1\n0x9443\t0xE6C2\n0x9444\t0xE6C3\n0x9445\t0xE6C4\n0x9446\t0xE6C5\n0x9447\t0xE6C6\n0x9448\t0xE6C7\n0x9449\t0xE6C8\n0x944A\t0xE6C9\n0x944B\t0xE6CA\n0x944C\t0xE6CB\n0x944D\t0xE6CC\n0x944E\t0xE6CD\n0x944F\t0xE6CE\n0x9450\t0xE6CF\n0x9451\t0xE6D0\n0x9452\t0xE6D1\n0x9453\t0xE6D2\n0x9454\t0xE6D3\n0x9455\t0xE6D4\n0x9456\t0xE6D5\n0x9457\t0xE6D6\n0x9458\t0xE6D7\n0x9459\t0xE6D8\n0x945A\t0xE6D9\n0x945B\t0xE6DA\n0x945C\t0xE6DB\n0x945D\t0xE6DC\n0x945E\t0xE6DD\n0x945F\t0xE6DE\n0x9460\t0xE6DF\n0x9461\t0xE6E0\n0x9462\t0xE6E1\n0x9463\t0xE6E2\n0x9464\t0xE6E3\n0x9465\t0xE6E4\n0x9466\t0xE6E5\n0x9467\t0xE6E6\n0x9468\t0xE6E7\n0x9469\t0xE6E8\n0x946A\t0xE6E9\n0x946B\t0xE6EA\n0x946C\t0xE6EB\n0x946D\t0xE6EC\n0x946E\t0xE6ED\n0x946F\t0xE6EE\n0x9470\t0xE6EF\n0x9471\t0xE6F0\n0x9472\t0xE6F1\n0x9473\t0xE6F2\n0x9474\t0xE6F3\n0x9475\t0xE6F4\n0x9476\t0xE6F5\n0x9477\t0xE6F6\n0x9478\t0xE6F7\n0x9479\t0xE6F8\n0x947A\t0xE6F9\n0x947B\t0xE6FA\n0x947C\t0xE6FB\n0x947D\t0xE6FC\n0x947E\t0xE6FD\n0x94A1\t0xE6FE\n0x94A2\t0xE6FF\n0x94A3\t0xE700\n0x94A4\t0xE701\n0x94A5\t0xE702\n0x94A6\t0xE703\n0x94A7\t0xE704\n0x94A8\t0xE705\n0x94A9\t0xE706\n0x94AA\t0xE707\n0x94AB\t0xE708\n0x94AC\t0xE709\n0x94AD\t0xE70A\n0x94AE\t0xE70B\n0x94AF\t0xE70C\n0x94B0\t0xE70D\n0x94B1\t0xE70E\n0x94B2\t0xE70F\n0x94B3\t0xE710\n0x94B4\t0xE711\n0x94B5\t0xE712\n0x94B6\t0xE713\n0x94B7\t0xE714\n0x94B8\t0xE715\n0x94B9\t0xE716\n0x94BA\t0xE717\n0x94BB\t0xE718\n0x94BC\t0xE719\n0x94BD\t0xE71A\n0x94BE\t0xE71B\n0x94BF\t0xE71C\n0x94C0\t0xE71D\n0x94C1\t0xE71E\n0x94C2\t0xE71F\n0x94C3\t0xE720\n0x94C4\t0xE721\n0x94C5\t0xE722\n0x94C6\t0xE723\n0x94C7\t0xE724\n0x94C8\t0xE725\n0x94C9\t0xE726\n0x94CA\t0xE727\n0x94CB\t0xE728\n0x94CC\t0xE729\n0x94CD\t0xE72A\n0x94CE\t0xE72B\n0x94CF\t0xE72C\n0x94D0\t0xE72D\n0x94D1\t0xE72E\n0x94D2\t0xE72F\n0x94D3\t0xE730\n0x94D4\t0xE731\n0x94D5\t0xE732\n0x94D6\t0xE733\n0x94D7\t0xE734\n0x94D8\t0xE735\n0x94D9\t0xE736\n0x94DA\t0xE737\n0x94DB\t0xE738\n0x94DC\t0xE739\n0x94DD\t0xE73A\n0x94DE\t0xE73B\n0x94DF\t0xE73C\n0x94E0\t0xE73D\n0x94E1\t0xE73E\n0x94E2\t0xE73F\n0x94E3\t0xE740\n0x94E4\t0xE741\n0x94E5\t0xE742\n0x94E6\t0xE743\n0x94E7\t0xE744\n0x94E8\t0xE745\n0x94E9\t0xE746\n0x94EA\t0xE747\n0x94EB\t0xE748\n0x94EC\t0xE749\n0x94ED\t0xE74A\n0x94EE\t0xE74B\n0x94EF\t0xE74C\n0x94F0\t0xE74D\n0x94F1\t0xE74E\n0x94F2\t0xE74F\n0x94F3\t0xE750\n0x94F4\t0xE751\n0x94F5\t0xE752\n0x94F6\t0xE753\n0x94F7\t0xE754\n0x94F8\t0xE755\n0x94F9\t0xE756\n0x94FA\t0xE757\n0x94FB\t0xE758\n0x94FC\t0xE759\n0x94FD\t0xE75A\n0x94FE\t0xE75B\n0x9540\t0xE75C\n0x9541\t0xE75D\n0x9542\t0xE75E\n0x9543\t0xE75F\n0x9544\t0xE760\n0x9545\t0xE761\n0x9546\t0xE762\n0x9547\t0xE763\n0x9548\t0xE764\n0x9549\t0xE765\n0x954A\t0xE766\n0x954B\t0xE767\n0x954C\t0xE768\n0x954D\t0xE769\n0x954E\t0xE76A\n0x954F\t0xE76B\n0x9550\t0xE76C\n0x9551\t0xE76D\n0x9552\t0xE76E\n0x9553\t0xE76F\n0x9554\t0xE770\n0x9555\t0xE771\n0x9556\t0xE772\n0x9557\t0xE773\n0x9558\t0xE774\n0x9559\t0xE775\n0x955A\t0xE776\n0x955B\t0xE777\n0x955C\t0xE778\n0x955D\t0xE779\n0x955E\t0xE77A\n0x955F\t0xE77B\n0x9560\t0xE77C\n0x9561\t0xE77D\n0x9562\t0xE77E\n0x9563\t0xE77F\n0x9564\t0xE780\n0x9565\t0xE781\n0x9566\t0xE782\n0x9567\t0xE783\n0x9568\t0xE784\n0x9569\t0xE785\n0x956A\t0xE786\n0x956B\t0xE787\n0x956C\t0xE788\n0x956D\t0xE789\n0x956E\t0xE78A\n0x956F\t0xE78B\n0x9570\t0xE78C\n0x9571\t0xE78D\n0x9572\t0xE78E\n0x9573\t0xE78F\n0x9574\t0xE790\n0x9575\t0xE791\n0x9576\t0xE792\n0x9577\t0xE793\n0x9578\t0xE794\n0x9579\t0xE795\n0x957A\t0xE796\n0x957B\t0xE797\n0x957C\t0xE798\n0x957D\t0xE799\n0x957E\t0xE79A\n0x95A1\t0xE79B\n0x95A2\t0xE79C\n0x95A3\t0xE79D\n0x95A4\t0xE79E\n0x95A5\t0xE79F\n0x95A6\t0xE7A0\n0x95A7\t0xE7A1\n0x95A8\t0xE7A2\n0x95A9\t0xE7A3\n0x95AA\t0xE7A4\n0x95AB\t0xE7A5\n0x95AC\t0xE7A6\n0x95AD\t0xE7A7\n0x95AE\t0xE7A8\n0x95AF\t0xE7A9\n0x95B0\t0xE7AA\n0x95B1\t0xE7AB\n0x95B2\t0xE7AC\n0x95B3\t0xE7AD\n0x95B4\t0xE7AE\n0x95B5\t0xE7AF\n0x95B6\t0xE7B0\n0x95B7\t0xE7B1\n0x95B8\t0xE7B2\n0x95B9\t0xE7B3\n0x95BA\t0xE7B4\n0x95BB\t0xE7B5\n0x95BC\t0xE7B6\n0x95BD\t0xE7B7\n0x95BE\t0xE7B8\n0x95BF\t0xE7B9\n0x95C0\t0xE7BA\n0x95C1\t0xE7BB\n0x95C2\t0xE7BC\n0x95C3\t0xE7BD\n0x95C4\t0xE7BE\n0x95C5\t0xE7BF\n0x95C6\t0xE7C0\n0x95C7\t0xE7C1\n0x95C8\t0xE7C2\n0x95C9\t0xE7C3\n0x95CA\t0xE7C4\n0x95CB\t0xE7C5\n0x95CC\t0xE7C6\n0x95CD\t0xE7C7\n0x95CE\t0xE7C8\n0x95CF\t0xE7C9\n0x95D0\t0xE7CA\n0x95D1\t0xE7CB\n0x95D2\t0xE7CC\n0x95D3\t0xE7CD\n0x95D4\t0xE7CE\n0x95D5\t0xE7CF\n0x95D6\t0xE7D0\n0x95D7\t0xE7D1\n0x95D8\t0xE7D2\n0x95D9\t0xE7D3\n0x95DA\t0xE7D4\n0x95DB\t0xE7D5\n0x95DC\t0xE7D6\n0x95DD\t0xE7D7\n0x95DE\t0xE7D8\n0x95DF\t0xE7D9\n0x95E0\t0xE7DA\n0x95E1\t0xE7DB\n0x95E2\t0xE7DC\n0x95E3\t0xE7DD\n0x95E4\t0xE7DE\n0x95E5\t0xE7DF\n0x95E6\t0xE7E0\n0x95E7\t0xE7E1\n0x95E8\t0xE7E2\n0x95E9\t0xE7E3\n0x95EA\t0xE7E4\n0x95EB\t0xE7E5\n0x95EC\t0xE7E6\n0x95ED\t0xE7E7\n0x95EE\t0xE7E8\n0x95EF\t0xE7E9\n0x95F0\t0xE7EA\n0x95F1\t0xE7EB\n0x95F2\t0xE7EC\n0x95F3\t0xE7ED\n0x95F4\t0xE7EE\n0x95F5\t0xE7EF\n0x95F6\t0xE7F0\n0x95F7\t0xE7F1\n0x95F8\t0xE7F2\n0x95F9\t0xE7F3\n0x95FA\t0xE7F4\n0x95FB\t0xE7F5\n0x95FC\t0xE7F6\n0x95FD\t0xE7F7\n0x95FE\t0xE7F8\n0x9640\t0xE7F9\n0x9641\t0xE7FA\n0x9642\t0xE7FB\n0x9643\t0xE7FC\n0x9644\t0xE7FD\n0x9645\t0xE7FE\n0x9646\t0xE7FF\n0x9647\t0xE800\n0x9648\t0xE801\n0x9649\t0xE802\n0x964A\t0xE803\n0x964B\t0xE804\n0x964C\t0xE805\n0x964D\t0xE806\n0x964E\t0xE807\n0x964F\t0xE808\n0x9650\t0xE809\n0x9651\t0xE80A\n0x9652\t0xE80B\n0x9653\t0xE80C\n0x9654\t0xE80D\n0x9655\t0xE80E\n0x9656\t0xE80F\n0x9657\t0xE810\n0x9658\t0xE811\n0x9659\t0xE812\n0x965A\t0xE813\n0x965B\t0xE814\n0x965C\t0xE815\n0x965D\t0xE816\n0x965E\t0xE817\n0x965F\t0xE818\n0x9660\t0xE819\n0x9661\t0xE81A\n0x9662\t0xE81B\n0x9663\t0xE81C\n0x9664\t0xE81D\n0x9665\t0xE81E\n0x9666\t0xE81F\n0x9667\t0xE820\n0x9668\t0xE821\n0x9669\t0xE822\n0x966A\t0xE823\n0x966B\t0xE824\n0x966C\t0xE825\n0x966D\t0xE826\n0x966E\t0xE827\n0x966F\t0xE828\n0x9670\t0xE829\n0x9671\t0xE82A\n0x9672\t0xE82B\n0x9673\t0xE82C\n0x9674\t0xE82D\n0x9675\t0xE82E\n0x9676\t0xE82F\n0x9677\t0xE830\n0x9678\t0xE831\n0x9679\t0xE832\n0x967A\t0xE833\n0x967B\t0xE834\n0x967C\t0xE835\n0x967D\t0xE836\n0x967E\t0xE837\n0x96A1\t0xE838\n0x96A2\t0xE839\n0x96A3\t0xE83A\n0x96A4\t0xE83B\n0x96A5\t0xE83C\n0x96A6\t0xE83D\n0x96A7\t0xE83E\n0x96A8\t0xE83F\n0x96A9\t0xE840\n0x96AA\t0xE841\n0x96AB\t0xE842\n0x96AC\t0xE843\n0x96AD\t0xE844\n0x96AE\t0xE845\n0x96AF\t0xE846\n0x96B0\t0xE847\n0x96B1\t0xE848\n0x96B2\t0xE849\n0x96B3\t0xE84A\n0x96B4\t0xE84B\n0x96B5\t0xE84C\n0x96B6\t0xE84D\n0x96B7\t0xE84E\n0x96B8\t0xE84F\n0x96B9\t0xE850\n0x96BA\t0xE851\n0x96BB\t0xE852\n0x96BC\t0xE853\n0x96BD\t0xE854\n0x96BE\t0xE855\n0x96BF\t0xE856\n0x96C0\t0xE857\n0x96C1\t0xE858\n0x96C2\t0xE859\n0x96C3\t0xE85A\n0x96C4\t0xE85B\n0x96C5\t0xE85C\n0x96C6\t0xE85D\n0x96C7\t0xE85E\n0x96C8\t0xE85F\n0x96C9\t0xE860\n0x96CA\t0xE861\n0x96CB\t0xE862\n0x96CC\t0xE863\n0x96CD\t0xE864\n0x96CE\t0xE865\n0x96CF\t0xE866\n0x96D0\t0xE867\n0x96D1\t0xE868\n0x96D2\t0xE869\n0x96D3\t0xE86A\n0x96D4\t0xE86B\n0x96D5\t0xE86C\n0x96D6\t0xE86D\n0x96D7\t0xE86E\n0x96D8\t0xE86F\n0x96D9\t0xE870\n0x96DA\t0xE871\n0x96DB\t0xE872\n0x96DC\t0xE873\n0x96DD\t0xE874\n0x96DE\t0xE875\n0x96DF\t0xE876\n0x96E0\t0xE877\n0x96E1\t0xE878\n0x96E2\t0xE879\n0x96E3\t0xE87A\n0x96E4\t0xE87B\n0x96E5\t0xE87C\n0x96E6\t0xE87D\n0x96E7\t0xE87E\n0x96E8\t0xE87F\n0x96E9\t0xE880\n0x96EA\t0xE881\n0x96EB\t0xE882\n0x96EC\t0xE883\n0x96ED\t0xE884\n0x96EE\t0xE885\n0x96EF\t0xE886\n0x96F0\t0xE887\n0x96F1\t0xE888\n0x96F2\t0xE889\n0x96F3\t0xE88A\n0x96F4\t0xE88B\n0x96F5\t0xE88C\n0x96F6\t0xE88D\n0x96F7\t0xE88E\n0x96F8\t0xE88F\n0x96F9\t0xE890\n0x96FA\t0xE891\n0x96FB\t0xE892\n0x96FC\t0xE893\n0x96FD\t0xE894\n0x96FE\t0xE895\n0x9740\t0xE896\n0x9741\t0xE897\n0x9742\t0xE898\n0x9743\t0xE899\n0x9744\t0xE89A\n0x9745\t0xE89B\n0x9746\t0xE89C\n0x9747\t0xE89D\n0x9748\t0xE89E\n0x9749\t0xE89F\n0x974A\t0xE8A0\n0x974B\t0xE8A1\n0x974C\t0xE8A2\n0x974D\t0xE8A3\n0x974E\t0xE8A4\n0x974F\t0xE8A5\n0x9750\t0xE8A6\n0x9751\t0xE8A7\n0x9752\t0xE8A8\n0x9753\t0xE8A9\n0x9754\t0xE8AA\n0x9755\t0xE8AB\n0x9756\t0xE8AC\n0x9757\t0xE8AD\n0x9758\t0xE8AE\n0x9759\t0xE8AF\n0x975A\t0xE8B0\n0x975B\t0xE8B1\n0x975C\t0xE8B2\n0x975D\t0xE8B3\n0x975E\t0xE8B4\n0x975F\t0xE8B5\n0x9760\t0xE8B6\n0x9761\t0xE8B7\n0x9762\t0xE8B8\n0x9763\t0xE8B9\n0x9764\t0xE8BA\n0x9765\t0xE8BB\n0x9766\t0xE8BC\n0x9767\t0xE8BD\n0x9768\t0xE8BE\n0x9769\t0xE8BF\n0x976A\t0xE8C0\n0x976B\t0xE8C1\n0x976C\t0xE8C2\n0x976D\t0xE8C3\n0x976E\t0xE8C4\n0x976F\t0xE8C5\n0x9770\t0xE8C6\n0x9771\t0xE8C7\n0x9772\t0xE8C8\n0x9773\t0xE8C9\n0x9774\t0xE8CA\n0x9775\t0xE8CB\n0x9776\t0xE8CC\n0x9777\t0xE8CD\n0x9778\t0xE8CE\n0x9779\t0xE8CF\n0x977A\t0xE8D0\n0x977B\t0xE8D1\n0x977C\t0xE8D2\n0x977D\t0xE8D3\n0x977E\t0xE8D4\n0x97A1\t0xE8D5\n0x97A2\t0xE8D6\n0x97A3\t0xE8D7\n0x97A4\t0xE8D8\n0x97A5\t0xE8D9\n0x97A6\t0xE8DA\n0x97A7\t0xE8DB\n0x97A8\t0xE8DC\n0x97A9\t0xE8DD\n0x97AA\t0xE8DE\n0x97AB\t0xE8DF\n0x97AC\t0xE8E0\n0x97AD\t0xE8E1\n0x97AE\t0xE8E2\n0x97AF\t0xE8E3\n0x97B0\t0xE8E4\n0x97B1\t0xE8E5\n0x97B2\t0xE8E6\n0x97B3\t0xE8E7\n0x97B4\t0xE8E8\n0x97B5\t0xE8E9\n0x97B6\t0xE8EA\n0x97B7\t0xE8EB\n0x97B8\t0xE8EC\n0x97B9\t0xE8ED\n0x97BA\t0xE8EE\n0x97BB\t0xE8EF\n0x97BC\t0xE8F0\n0x97BD\t0xE8F1\n0x97BE\t0xE8F2\n0x97BF\t0xE8F3\n0x97C0\t0xE8F4\n0x97C1\t0xE8F5\n0x97C2\t0xE8F6\n0x97C3\t0xE8F7\n0x97C4\t0xE8F8\n0x97C5\t0xE8F9\n0x97C6\t0xE8FA\n0x97C7\t0xE8FB\n0x97C8\t0xE8FC\n0x97C9\t0xE8FD\n0x97CA\t0xE8FE\n0x97CB\t0xE8FF\n0x97CC\t0xE900\n0x97CD\t0xE901\n0x97CE\t0xE902\n0x97CF\t0xE903\n0x97D0\t0xE904\n0x97D1\t0xE905\n0x97D2\t0xE906\n0x97D3\t0xE907\n0x97D4\t0xE908\n0x97D5\t0xE909\n0x97D6\t0xE90A\n0x97D7\t0xE90B\n0x97D8\t0xE90C\n0x97D9\t0xE90D\n0x97DA\t0xE90E\n0x97DB\t0xE90F\n0x97DC\t0xE910\n0x97DD\t0xE911\n0x97DE\t0xE912\n0x97DF\t0xE913\n0x97E0\t0xE914\n0x97E1\t0xE915\n0x97E2\t0xE916\n0x97E3\t0xE917\n0x97E4\t0xE918\n0x97E5\t0xE919\n0x97E6\t0xE91A\n0x97E7\t0xE91B\n0x97E8\t0xE91C\n0x97E9\t0xE91D\n0x97EA\t0xE91E\n0x97EB\t0xE91F\n0x97EC\t0xE920\n0x97ED\t0xE921\n0x97EE\t0xE922\n0x97EF\t0xE923\n0x97F0\t0xE924\n0x97F1\t0xE925\n0x97F2\t0xE926\n0x97F3\t0xE927\n0x97F4\t0xE928\n0x97F5\t0xE929\n0x97F6\t0xE92A\n0x97F7\t0xE92B\n0x97F8\t0xE92C\n0x97F9\t0xE92D\n0x97FA\t0xE92E\n0x97FB\t0xE92F\n0x97FC\t0xE930\n0x97FD\t0xE931\n0x97FE\t0xE932\n0x9840\t0xE933\n0x9841\t0xE934\n0x9842\t0xE935\n0x9843\t0xE936\n0x9844\t0xE937\n0x9845\t0xE938\n0x9846\t0xE939\n0x9847\t0xE93A\n0x9848\t0xE93B\n0x9849\t0xE93C\n0x984A\t0xE93D\n0x984B\t0xE93E\n0x984C\t0xE93F\n0x984D\t0xE940\n0x984E\t0xE941\n0x984F\t0xE942\n0x9850\t0xE943\n0x9851\t0xE944\n0x9852\t0xE945\n0x9853\t0xE946\n0x9854\t0xE947\n0x9855\t0xE948\n0x9856\t0xE949\n0x9857\t0xE94A\n0x9858\t0xE94B\n0x9859\t0xE94C\n0x985A\t0xE94D\n0x985B\t0xE94E\n0x985C\t0xE94F\n0x985D\t0xE950\n0x985E\t0xE951\n0x985F\t0xE952\n0x9860\t0xE953\n0x9861\t0xE954\n0x9862\t0xE955\n0x9863\t0xE956\n0x9864\t0xE957\n0x9865\t0xE958\n0x9866\t0xE959\n0x9867\t0xE95A\n0x9868\t0xE95B\n0x9869\t0xE95C\n0x986A\t0xE95D\n0x986B\t0xE95E\n0x986C\t0xE95F\n0x986D\t0xE960\n0x986E\t0xE961\n0x986F\t0xE962\n0x9870\t0xE963\n0x9871\t0xE964\n0x9872\t0xE965\n0x9873\t0xE966\n0x9874\t0xE967\n0x9875\t0xE968\n0x9876\t0xE969\n0x9877\t0xE96A\n0x9878\t0xE96B\n0x9879\t0xE96C\n0x987A\t0xE96D\n0x987B\t0xE96E\n0x987C\t0xE96F\n0x987D\t0xE970\n0x987E\t0xE971\n0x98A1\t0xE972\n0x98A2\t0xE973\n0x98A3\t0xE974\n0x98A4\t0xE975\n0x98A5\t0xE976\n0x98A6\t0xE977\n0x98A7\t0xE978\n0x98A8\t0xE979\n0x98A9\t0xE97A\n0x98AA\t0xE97B\n0x98AB\t0xE97C\n0x98AC\t0xE97D\n0x98AD\t0xE97E\n0x98AE\t0xE97F\n0x98AF\t0xE980\n0x98B0\t0xE981\n0x98B1\t0xE982\n0x98B2\t0xE983\n0x98B3\t0xE984\n0x98B4\t0xE985\n0x98B5\t0xE986\n0x98B6\t0xE987\n0x98B7\t0xE988\n0x98B8\t0xE989\n0x98B9\t0xE98A\n0x98BA\t0xE98B\n0x98BB\t0xE98C\n0x98BC\t0xE98D\n0x98BD\t0xE98E\n0x98BE\t0xE98F\n0x98BF\t0xE990\n0x98C0\t0xE991\n0x98C1\t0xE992\n0x98C2\t0xE993\n0x98C3\t0xE994\n0x98C4\t0xE995\n0x98C5\t0xE996\n0x98C6\t0xE997\n0x98C7\t0xE998\n0x98C8\t0xE999\n0x98C9\t0xE99A\n0x98CA\t0xE99B\n0x98CB\t0xE99C\n0x98CC\t0xE99D\n0x98CD\t0xE99E\n0x98CE\t0xE99F\n0x98CF\t0xE9A0\n0x98D0\t0xE9A1\n0x98D1\t0xE9A2\n0x98D2\t0xE9A3\n0x98D3\t0xE9A4\n0x98D4\t0xE9A5\n0x98D5\t0xE9A6\n0x98D6\t0xE9A7\n0x98D7\t0xE9A8\n0x98D8\t0xE9A9\n0x98D9\t0xE9AA\n0x98DA\t0xE9AB\n0x98DB\t0xE9AC\n0x98DC\t0xE9AD\n0x98DD\t0xE9AE\n0x98DE\t0xE9AF\n0x98DF\t0xE9B0\n0x98E0\t0xE9B1\n0x98E1\t0xE9B2\n0x98E2\t0xE9B3\n0x98E3\t0xE9B4\n0x98E4\t0xE9B5\n0x98E5\t0xE9B6\n0x98E6\t0xE9B7\n0x98E7\t0xE9B8\n0x98E8\t0xE9B9\n0x98E9\t0xE9BA\n0x98EA\t0xE9BB\n0x98EB\t0xE9BC\n0x98EC\t0xE9BD\n0x98ED\t0xE9BE\n0x98EE\t0xE9BF\n0x98EF\t0xE9C0\n0x98F0\t0xE9C1\n0x98F1\t0xE9C2\n0x98F2\t0xE9C3\n0x98F3\t0xE9C4\n0x98F4\t0xE9C5\n0x98F5\t0xE9C6\n0x98F6\t0xE9C7\n0x98F7\t0xE9C8\n0x98F8\t0xE9C9\n0x98F9\t0xE9CA\n0x98FA\t0xE9CB\n0x98FB\t0xE9CC\n0x98FC\t0xE9CD\n0x98FD\t0xE9CE\n0x98FE\t0xE9CF\n0x9940\t0xE9D0\n0x9941\t0xE9D1\n0x9942\t0xE9D2\n0x9943\t0xE9D3\n0x9944\t0xE9D4\n0x9945\t0xE9D5\n0x9946\t0xE9D6\n0x9947\t0xE9D7\n0x9948\t0xE9D8\n0x9949\t0xE9D9\n0x994A\t0xE9DA\n0x994B\t0xE9DB\n0x994C\t0xE9DC\n0x994D\t0xE9DD\n0x994E\t0xE9DE\n0x994F\t0xE9DF\n0x9950\t0xE9E0\n0x9951\t0xE9E1\n0x9952\t0xE9E2\n0x9953\t0xE9E3\n0x9954\t0xE9E4\n0x9955\t0xE9E5\n0x9956\t0xE9E6\n0x9957\t0xE9E7\n0x9958\t0xE9E8\n0x9959\t0xE9E9\n0x995A\t0xE9EA\n0x995B\t0xE9EB\n0x995C\t0xE9EC\n0x995D\t0xE9ED\n0x995E\t0xE9EE\n0x995F\t0xE9EF\n0x9960\t0xE9F0\n0x9961\t0xE9F1\n0x9962\t0xE9F2\n0x9963\t0xE9F3\n0x9964\t0xE9F4\n0x9965\t0xE9F5\n0x9966\t0xE9F6\n0x9967\t0xE9F7\n0x9968\t0xE9F8\n0x9969\t0xE9F9\n0x996A\t0xE9FA\n0x996B\t0xE9FB\n0x996C\t0xE9FC\n0x996D\t0xE9FD\n0x996E\t0xE9FE\n0x996F\t0xE9FF\n0x9970\t0xEA00\n0x9971\t0xEA01\n0x9972\t0xEA02\n0x9973\t0xEA03\n0x9974\t0xEA04\n0x9975\t0xEA05\n0x9976\t0xEA06\n0x9977\t0xEA07\n0x9978\t0xEA08\n0x9979\t0xEA09\n0x997A\t0xEA0A\n0x997B\t0xEA0B\n0x997C\t0xEA0C\n0x997D\t0xEA0D\n0x997E\t0xEA0E\n0x99A1\t0xEA0F\n0x99A2\t0xEA10\n0x99A3\t0xEA11\n0x99A4\t0xEA12\n0x99A5\t0xEA13\n0x99A6\t0xEA14\n0x99A7\t0xEA15\n0x99A8\t0xEA16\n0x99A9\t0xEA17\n0x99AA\t0xEA18\n0x99AB\t0xEA19\n0x99AC\t0xEA1A\n0x99AD\t0xEA1B\n0x99AE\t0xEA1C\n0x99AF\t0xEA1D\n0x99B0\t0xEA1E\n0x99B1\t0xEA1F\n0x99B2\t0xEA20\n0x99B3\t0xEA21\n0x99B4\t0xEA22\n0x99B5\t0xEA23\n0x99B6\t0xEA24\n0x99B7\t0xEA25\n0x99B8\t0xEA26\n0x99B9\t0xEA27\n0x99BA\t0xEA28\n0x99BB\t0xEA29\n0x99BC\t0xEA2A\n0x99BD\t0xEA2B\n0x99BE\t0xEA2C\n0x99BF\t0xEA2D\n0x99C0\t0xEA2E\n0x99C1\t0xEA2F\n0x99C2\t0xEA30\n0x99C3\t0xEA31\n0x99C4\t0xEA32\n0x99C5\t0xEA33\n0x99C6\t0xEA34\n0x99C7\t0xEA35\n0x99C8\t0xEA36\n0x99C9\t0xEA37\n0x99CA\t0xEA38\n0x99CB\t0xEA39\n0x99CC\t0xEA3A\n0x99CD\t0xEA3B\n0x99CE\t0xEA3C\n0x99CF\t0xEA3D\n0x99D0\t0xEA3E\n0x99D1\t0xEA3F\n0x99D2\t0xEA40\n0x99D3\t0xEA41\n0x99D4\t0xEA42\n0x99D5\t0xEA43\n0x99D6\t0xEA44\n0x99D7\t0xEA45\n0x99D8\t0xEA46\n0x99D9\t0xEA47\n0x99DA\t0xEA48\n0x99DB\t0xEA49\n0x99DC\t0xEA4A\n0x99DD\t0xEA4B\n0x99DE\t0xEA4C\n0x99DF\t0xEA4D\n0x99E0\t0xEA4E\n0x99E1\t0xEA4F\n0x99E2\t0xEA50\n0x99E3\t0xEA51\n0x99E4\t0xEA52\n0x99E5\t0xEA53\n0x99E6\t0xEA54\n0x99E7\t0xEA55\n0x99E8\t0xEA56\n0x99E9\t0xEA57\n0x99EA\t0xEA58\n0x99EB\t0xEA59\n0x99EC\t0xEA5A\n0x99ED\t0xEA5B\n0x99EE\t0xEA5C\n0x99EF\t0xEA5D\n0x99F0\t0xEA5E\n0x99F1\t0xEA5F\n0x99F2\t0xEA60\n0x99F3\t0xEA61\n0x99F4\t0xEA62\n0x99F5\t0xEA63\n0x99F6\t0xEA64\n0x99F7\t0xEA65\n0x99F8\t0xEA66\n0x99F9\t0xEA67\n0x99FA\t0xEA68\n0x99FB\t0xEA69\n0x99FC\t0xEA6A\n0x99FD\t0xEA6B\n0x99FE\t0xEA6C\n0x9A40\t0xEA6D\n0x9A41\t0xEA6E\n0x9A42\t0xEA6F\n0x9A43\t0xEA70\n0x9A44\t0xEA71\n0x9A45\t0xEA72\n0x9A46\t0xEA73\n0x9A47\t0xEA74\n0x9A48\t0xEA75\n0x9A49\t0xEA76\n0x9A4A\t0xEA77\n0x9A4B\t0xEA78\n0x9A4C\t0xEA79\n0x9A4D\t0xEA7A\n0x9A4E\t0xEA7B\n0x9A4F\t0xEA7C\n0x9A50\t0xEA7D\n0x9A51\t0xEA7E\n0x9A52\t0xEA7F\n0x9A53\t0xEA80\n0x9A54\t0xEA81\n0x9A55\t0xEA82\n0x9A56\t0xEA83\n0x9A57\t0xEA84\n0x9A58\t0xEA85\n0x9A59\t0xEA86\n0x9A5A\t0xEA87\n0x9A5B\t0xEA88\n0x9A5C\t0xEA89\n0x9A5D\t0xEA8A\n0x9A5E\t0xEA8B\n0x9A5F\t0xEA8C\n0x9A60\t0xEA8D\n0x9A61\t0xEA8E\n0x9A62\t0xEA8F\n0x9A63\t0xEA90\n0x9A64\t0xEA91\n0x9A65\t0xEA92\n0x9A66\t0xEA93\n0x9A67\t0xEA94\n0x9A68\t0xEA95\n0x9A69\t0xEA96\n0x9A6A\t0xEA97\n0x9A6B\t0xEA98\n0x9A6C\t0xEA99\n0x9A6D\t0xEA9A\n0x9A6E\t0xEA9B\n0x9A6F\t0xEA9C\n0x9A70\t0xEA9D\n0x9A71\t0xEA9E\n0x9A72\t0xEA9F\n0x9A73\t0xEAA0\n0x9A74\t0xEAA1\n0x9A75\t0xEAA2\n0x9A76\t0xEAA3\n0x9A77\t0xEAA4\n0x9A78\t0xEAA5\n0x9A79\t0xEAA6\n0x9A7A\t0xEAA7\n0x9A7B\t0xEAA8\n0x9A7C\t0xEAA9\n0x9A7D\t0xEAAA\n0x9A7E\t0xEAAB\n0x9AA1\t0xEAAC\n0x9AA2\t0xEAAD\n0x9AA3\t0xEAAE\n0x9AA4\t0xEAAF\n0x9AA5\t0xEAB0\n0x9AA6\t0xEAB1\n0x9AA7\t0xEAB2\n0x9AA8\t0xEAB3\n0x9AA9\t0xEAB4\n0x9AAA\t0xEAB5\n0x9AAB\t0xEAB6\n0x9AAC\t0xEAB7\n0x9AAD\t0xEAB8\n0x9AAE\t0xEAB9\n0x9AAF\t0xEABA\n0x9AB0\t0xEABB\n0x9AB1\t0xEABC\n0x9AB2\t0xEABD\n0x9AB3\t0xEABE\n0x9AB4\t0xEABF\n0x9AB5\t0xEAC0\n0x9AB6\t0xEAC1\n0x9AB7\t0xEAC2\n0x9AB8\t0xEAC3\n0x9AB9\t0xEAC4\n0x9ABA\t0xEAC5\n0x9ABB\t0xEAC6\n0x9ABC\t0xEAC7\n0x9ABD\t0xEAC8\n0x9ABE\t0xEAC9\n0x9ABF\t0xEACA\n0x9AC0\t0xEACB\n0x9AC1\t0xEACC\n0x9AC2\t0xEACD\n0x9AC3\t0xEACE\n0x9AC4\t0xEACF\n0x9AC5\t0xEAD0\n0x9AC6\t0xEAD1\n0x9AC7\t0xEAD2\n0x9AC8\t0xEAD3\n0x9AC9\t0xEAD4\n0x9ACA\t0xEAD5\n0x9ACB\t0xEAD6\n0x9ACC\t0xEAD7\n0x9ACD\t0xEAD8\n0x9ACE\t0xEAD9\n0x9ACF\t0xEADA\n0x9AD0\t0xEADB\n0x9AD1\t0xEADC\n0x9AD2\t0xEADD\n0x9AD3\t0xEADE\n0x9AD4\t0xEADF\n0x9AD5\t0xEAE0\n0x9AD6\t0xEAE1\n0x9AD7\t0xEAE2\n0x9AD8\t0xEAE3\n0x9AD9\t0xEAE4\n0x9ADA\t0xEAE5\n0x9ADB\t0xEAE6\n0x9ADC\t0xEAE7\n0x9ADD\t0xEAE8\n0x9ADE\t0xEAE9\n0x9ADF\t0xEAEA\n0x9AE0\t0xEAEB\n0x9AE1\t0xEAEC\n0x9AE2\t0xEAED\n0x9AE3\t0xEAEE\n0x9AE4\t0xEAEF\n0x9AE5\t0xEAF0\n0x9AE6\t0xEAF1\n0x9AE7\t0xEAF2\n0x9AE8\t0xEAF3\n0x9AE9\t0xEAF4\n0x9AEA\t0xEAF5\n0x9AEB\t0xEAF6\n0x9AEC\t0xEAF7\n0x9AED\t0xEAF8\n0x9AEE\t0xEAF9\n0x9AEF\t0xEAFA\n0x9AF0\t0xEAFB\n0x9AF1\t0xEAFC\n0x9AF2\t0xEAFD\n0x9AF3\t0xEAFE\n0x9AF4\t0xEAFF\n0x9AF5\t0xEB00\n0x9AF6\t0xEB01\n0x9AF7\t0xEB02\n0x9AF8\t0xEB03\n0x9AF9\t0xEB04\n0x9AFA\t0xEB05\n0x9AFB\t0xEB06\n0x9AFC\t0xEB07\n0x9AFD\t0xEB08\n0x9AFE\t0xEB09\n0x9B40\t0xEB0A\n0x9B41\t0xEB0B\n0x9B42\t0xEB0C\n0x9B43\t0xEB0D\n0x9B44\t0xEB0E\n0x9B45\t0xEB0F\n0x9B46\t0xEB10\n0x9B47\t0xEB11\n0x9B48\t0xEB12\n0x9B49\t0xEB13\n0x9B4A\t0xEB14\n0x9B4B\t0xEB15\n0x9B4C\t0xEB16\n0x9B4D\t0xEB17\n0x9B4E\t0xEB18\n0x9B4F\t0xEB19\n0x9B50\t0xEB1A\n0x9B51\t0xEB1B\n0x9B52\t0xEB1C\n0x9B53\t0xEB1D\n0x9B54\t0xEB1E\n0x9B55\t0xEB1F\n0x9B56\t0xEB20\n0x9B57\t0xEB21\n0x9B58\t0xEB22\n0x9B59\t0xEB23\n0x9B5A\t0xEB24\n0x9B5B\t0xEB25\n0x9B5C\t0xEB26\n0x9B5D\t0xEB27\n0x9B5E\t0xEB28\n0x9B5F\t0xEB29\n0x9B60\t0xEB2A\n0x9B61\t0xEB2B\n0x9B62\t0xEB2C\n0x9B63\t0xEB2D\n0x9B64\t0xEB2E\n0x9B65\t0xEB2F\n0x9B66\t0xEB30\n0x9B67\t0xEB31\n0x9B68\t0xEB32\n0x9B69\t0xEB33\n0x9B6A\t0xEB34\n0x9B6B\t0xEB35\n0x9B6C\t0xEB36\n0x9B6D\t0xEB37\n0x9B6E\t0xEB38\n0x9B6F\t0xEB39\n0x9B70\t0xEB3A\n0x9B71\t0xEB3B\n0x9B72\t0xEB3C\n0x9B73\t0xEB3D\n0x9B74\t0xEB3E\n0x9B75\t0xEB3F\n0x9B76\t0xEB40\n0x9B77\t0xEB41\n0x9B78\t0xEB42\n0x9B79\t0xEB43\n0x9B7A\t0xEB44\n0x9B7B\t0xEB45\n0x9B7C\t0xEB46\n0x9B7D\t0xEB47\n0x9B7E\t0xEB48\n0x9BA1\t0xEB49\n0x9BA2\t0xEB4A\n0x9BA3\t0xEB4B\n0x9BA4\t0xEB4C\n0x9BA5\t0xEB4D\n0x9BA6\t0xEB4E\n0x9BA7\t0xEB4F\n0x9BA8\t0xEB50\n0x9BA9\t0xEB51\n0x9BAA\t0xEB52\n0x9BAB\t0xEB53\n0x9BAC\t0xEB54\n0x9BAD\t0xEB55\n0x9BAE\t0xEB56\n0x9BAF\t0xEB57\n0x9BB0\t0xEB58\n0x9BB1\t0xEB59\n0x9BB2\t0xEB5A\n0x9BB3\t0xEB5B\n0x9BB4\t0xEB5C\n0x9BB5\t0xEB5D\n0x9BB6\t0xEB5E\n0x9BB7\t0xEB5F\n0x9BB8\t0xEB60\n0x9BB9\t0xEB61\n0x9BBA\t0xEB62\n0x9BBB\t0xEB63\n0x9BBC\t0xEB64\n0x9BBD\t0xEB65\n0x9BBE\t0xEB66\n0x9BBF\t0xEB67\n0x9BC0\t0xEB68\n0x9BC1\t0xEB69\n0x9BC2\t0xEB6A\n0x9BC3\t0xEB6B\n0x9BC4\t0xEB6C\n0x9BC5\t0xEB6D\n0x9BC6\t0xEB6E\n0x9BC7\t0xEB6F\n0x9BC8\t0xEB70\n0x9BC9\t0xEB71\n0x9BCA\t0xEB72\n0x9BCB\t0xEB73\n0x9BCC\t0xEB74\n0x9BCD\t0xEB75\n0x9BCE\t0xEB76\n0x9BCF\t0xEB77\n0x9BD0\t0xEB78\n0x9BD1\t0xEB79\n0x9BD2\t0xEB7A\n0x9BD3\t0xEB7B\n0x9BD4\t0xEB7C\n0x9BD5\t0xEB7D\n0x9BD6\t0xEB7E\n0x9BD7\t0xEB7F\n0x9BD8\t0xEB80\n0x9BD9\t0xEB81\n0x9BDA\t0xEB82\n0x9BDB\t0xEB83\n0x9BDC\t0xEB84\n0x9BDD\t0xEB85\n0x9BDE\t0xEB86\n0x9BDF\t0xEB87\n0x9BE0\t0xEB88\n0x9BE1\t0xEB89\n0x9BE2\t0xEB8A\n0x9BE3\t0xEB8B\n0x9BE4\t0xEB8C\n0x9BE5\t0xEB8D\n0x9BE6\t0xEB8E\n0x9BE7\t0xEB8F\n0x9BE8\t0xEB90\n0x9BE9\t0xEB91\n0x9BEA\t0xEB92\n0x9BEB\t0xEB93\n0x9BEC\t0xEB94\n0x9BED\t0xEB95\n0x9BEE\t0xEB96\n0x9BEF\t0xEB97\n0x9BF0\t0xEB98\n0x9BF1\t0xEB99\n0x9BF2\t0xEB9A\n0x9BF3\t0xEB9B\n0x9BF4\t0xEB9C\n0x9BF5\t0xEB9D\n0x9BF6\t0xEB9E\n0x9BF7\t0xEB9F\n0x9BF8\t0xEBA0\n0x9BF9\t0xEBA1\n0x9BFA\t0xEBA2\n0x9BFB\t0xEBA3\n0x9BFC\t0xEBA4\n0x9BFD\t0xEBA5\n0x9BFE\t0xEBA6\n0x9C40\t0xEBA7\n0x9C41\t0xEBA8\n0x9C42\t0xEBA9\n0x9C43\t0xEBAA\n0x9C44\t0xEBAB\n0x9C45\t0xEBAC\n0x9C46\t0xEBAD\n0x9C47\t0xEBAE\n0x9C48\t0xEBAF\n0x9C49\t0xEBB0\n0x9C4A\t0xEBB1\n0x9C4B\t0xEBB2\n0x9C4C\t0xEBB3\n0x9C4D\t0xEBB4\n0x9C4E\t0xEBB5\n0x9C4F\t0xEBB6\n0x9C50\t0xEBB7\n0x9C51\t0xEBB8\n0x9C52\t0xEBB9\n0x9C53\t0xEBBA\n0x9C54\t0xEBBB\n0x9C55\t0xEBBC\n0x9C56\t0xEBBD\n0x9C57\t0xEBBE\n0x9C58\t0xEBBF\n0x9C59\t0xEBC0\n0x9C5A\t0xEBC1\n0x9C5B\t0xEBC2\n0x9C5C\t0xEBC3\n0x9C5D\t0xEBC4\n0x9C5E\t0xEBC5\n0x9C5F\t0xEBC6\n0x9C60\t0xEBC7\n0x9C61\t0xEBC8\n0x9C62\t0xEBC9\n0x9C63\t0xEBCA\n0x9C64\t0xEBCB\n0x9C65\t0xEBCC\n0x9C66\t0xEBCD\n0x9C67\t0xEBCE\n0x9C68\t0xEBCF\n0x9C69\t0xEBD0\n0x9C6A\t0xEBD1\n0x9C6B\t0xEBD2\n0x9C6C\t0xEBD3\n0x9C6D\t0xEBD4\n0x9C6E\t0xEBD5\n0x9C6F\t0xEBD6\n0x9C70\t0xEBD7\n0x9C71\t0xEBD8\n0x9C72\t0xEBD9\n0x9C73\t0xEBDA\n0x9C74\t0xEBDB\n0x9C75\t0xEBDC\n0x9C76\t0xEBDD\n0x9C77\t0xEBDE\n0x9C78\t0xEBDF\n0x9C79\t0xEBE0\n0x9C7A\t0xEBE1\n0x9C7B\t0xEBE2\n0x9C7C\t0xEBE3\n0x9C7D\t0xEBE4\n0x9C7E\t0xEBE5\n0x9CA1\t0xEBE6\n0x9CA2\t0xEBE7\n0x9CA3\t0xEBE8\n0x9CA4\t0xEBE9\n0x9CA5\t0xEBEA\n0x9CA6\t0xEBEB\n0x9CA7\t0xEBEC\n0x9CA8\t0xEBED\n0x9CA9\t0xEBEE\n0x9CAA\t0xEBEF\n0x9CAB\t0xEBF0\n0x9CAC\t0xEBF1\n0x9CAD\t0xEBF2\n0x9CAE\t0xEBF3\n0x9CAF\t0xEBF4\n0x9CB0\t0xEBF5\n0x9CB1\t0xEBF6\n0x9CB2\t0xEBF7\n0x9CB3\t0xEBF8\n0x9CB4\t0xEBF9\n0x9CB5\t0xEBFA\n0x9CB6\t0xEBFB\n0x9CB7\t0xEBFC\n0x9CB8\t0xEBFD\n0x9CB9\t0xEBFE\n0x9CBA\t0xEBFF\n0x9CBB\t0xEC00\n0x9CBC\t0xEC01\n0x9CBD\t0xEC02\n0x9CBE\t0xEC03\n0x9CBF\t0xEC04\n0x9CC0\t0xEC05\n0x9CC1\t0xEC06\n0x9CC2\t0xEC07\n0x9CC3\t0xEC08\n0x9CC4\t0xEC09\n0x9CC5\t0xEC0A\n0x9CC6\t0xEC0B\n0x9CC7\t0xEC0C\n0x9CC8\t0xEC0D\n0x9CC9\t0xEC0E\n0x9CCA\t0xEC0F\n0x9CCB\t0xEC10\n0x9CCC\t0xEC11\n0x9CCD\t0xEC12\n0x9CCE\t0xEC13\n0x9CCF\t0xEC14\n0x9CD0\t0xEC15\n0x9CD1\t0xEC16\n0x9CD2\t0xEC17\n0x9CD3\t0xEC18\n0x9CD4\t0xEC19\n0x9CD5\t0xEC1A\n0x9CD6\t0xEC1B\n0x9CD7\t0xEC1C\n0x9CD8\t0xEC1D\n0x9CD9\t0xEC1E\n0x9CDA\t0xEC1F\n0x9CDB\t0xEC20\n0x9CDC\t0xEC21\n0x9CDD\t0xEC22\n0x9CDE\t0xEC23\n0x9CDF\t0xEC24\n0x9CE0\t0xEC25\n0x9CE1\t0xEC26\n0x9CE2\t0xEC27\n0x9CE3\t0xEC28\n0x9CE4\t0xEC29\n0x9CE5\t0xEC2A\n0x9CE6\t0xEC2B\n0x9CE7\t0xEC2C\n0x9CE8\t0xEC2D\n0x9CE9\t0xEC2E\n0x9CEA\t0xEC2F\n0x9CEB\t0xEC30\n0x9CEC\t0xEC31\n0x9CED\t0xEC32\n0x9CEE\t0xEC33\n0x9CEF\t0xEC34\n0x9CF0\t0xEC35\n0x9CF1\t0xEC36\n0x9CF2\t0xEC37\n0x9CF3\t0xEC38\n0x9CF4\t0xEC39\n0x9CF5\t0xEC3A\n0x9CF6\t0xEC3B\n0x9CF7\t0xEC3C\n0x9CF8\t0xEC3D\n0x9CF9\t0xEC3E\n0x9CFA\t0xEC3F\n0x9CFB\t0xEC40\n0x9CFC\t0xEC41\n0x9CFD\t0xEC42\n0x9CFE\t0xEC43\n0x9D40\t0xEC44\n0x9D41\t0xEC45\n0x9D42\t0xEC46\n0x9D43\t0xEC47\n0x9D44\t0xEC48\n0x9D45\t0xEC49\n0x9D46\t0xEC4A\n0x9D47\t0xEC4B\n0x9D48\t0xEC4C\n0x9D49\t0xEC4D\n0x9D4A\t0xEC4E\n0x9D4B\t0xEC4F\n0x9D4C\t0xEC50\n0x9D4D\t0xEC51\n0x9D4E\t0xEC52\n0x9D4F\t0xEC53\n0x9D50\t0xEC54\n0x9D51\t0xEC55\n0x9D52\t0xEC56\n0x9D53\t0xEC57\n0x9D54\t0xEC58\n0x9D55\t0xEC59\n0x9D56\t0xEC5A\n0x9D57\t0xEC5B\n0x9D58\t0xEC5C\n0x9D59\t0xEC5D\n0x9D5A\t0xEC5E\n0x9D5B\t0xEC5F\n0x9D5C\t0xEC60\n0x9D5D\t0xEC61\n0x9D5E\t0xEC62\n0x9D5F\t0xEC63\n0x9D60\t0xEC64\n0x9D61\t0xEC65\n0x9D62\t0xEC66\n0x9D63\t0xEC67\n0x9D64\t0xEC68\n0x9D65\t0xEC69\n0x9D66\t0xEC6A\n0x9D67\t0xEC6B\n0x9D68\t0xEC6C\n0x9D69\t0xEC6D\n0x9D6A\t0xEC6E\n0x9D6B\t0xEC6F\n0x9D6C\t0xEC70\n0x9D6D\t0xEC71\n0x9D6E\t0xEC72\n0x9D6F\t0xEC73\n0x9D70\t0xEC74\n0x9D71\t0xEC75\n0x9D72\t0xEC76\n0x9D73\t0xEC77\n0x9D74\t0xEC78\n0x9D75\t0xEC79\n0x9D76\t0xEC7A\n0x9D77\t0xEC7B\n0x9D78\t0xEC7C\n0x9D79\t0xEC7D\n0x9D7A\t0xEC7E\n0x9D7B\t0xEC7F\n0x9D7C\t0xEC80\n0x9D7D\t0xEC81\n0x9D7E\t0xEC82\n0x9DA1\t0xEC83\n0x9DA2\t0xEC84\n0x9DA3\t0xEC85\n0x9DA4\t0xEC86\n0x9DA5\t0xEC87\n0x9DA6\t0xEC88\n0x9DA7\t0xEC89\n0x9DA8\t0xEC8A\n0x9DA9\t0xEC8B\n0x9DAA\t0xEC8C\n0x9DAB\t0xEC8D\n0x9DAC\t0xEC8E\n0x9DAD\t0xEC8F\n0x9DAE\t0xEC90\n0x9DAF\t0xEC91\n0x9DB0\t0xEC92\n0x9DB1\t0xEC93\n0x9DB2\t0xEC94\n0x9DB3\t0xEC95\n0x9DB4\t0xEC96\n0x9DB5\t0xEC97\n0x9DB6\t0xEC98\n0x9DB7\t0xEC99\n0x9DB8\t0xEC9A\n0x9DB9\t0xEC9B\n0x9DBA\t0xEC9C\n0x9DBB\t0xEC9D\n0x9DBC\t0xEC9E\n0x9DBD\t0xEC9F\n0x9DBE\t0xECA0\n0x9DBF\t0xECA1\n0x9DC0\t0xECA2\n0x9DC1\t0xECA3\n0x9DC2\t0xECA4\n0x9DC3\t0xECA5\n0x9DC4\t0xECA6\n0x9DC5\t0xECA7\n0x9DC6\t0xECA8\n0x9DC7\t0xECA9\n0x9DC8\t0xECAA\n0x9DC9\t0xECAB\n0x9DCA\t0xECAC\n0x9DCB\t0xECAD\n0x9DCC\t0xECAE\n0x9DCD\t0xECAF\n0x9DCE\t0xECB0\n0x9DCF\t0xECB1\n0x9DD0\t0xECB2\n0x9DD1\t0xECB3\n0x9DD2\t0xECB4\n0x9DD3\t0xECB5\n0x9DD4\t0xECB6\n0x9DD5\t0xECB7\n0x9DD6\t0xECB8\n0x9DD7\t0xECB9\n0x9DD8\t0xECBA\n0x9DD9\t0xECBB\n0x9DDA\t0xECBC\n0x9DDB\t0xECBD\n0x9DDC\t0xECBE\n0x9DDD\t0xECBF\n0x9DDE\t0xECC0\n0x9DDF\t0xECC1\n0x9DE0\t0xECC2\n0x9DE1\t0xECC3\n0x9DE2\t0xECC4\n0x9DE3\t0xECC5\n0x9DE4\t0xECC6\n0x9DE5\t0xECC7\n0x9DE6\t0xECC8\n0x9DE7\t0xECC9\n0x9DE8\t0xECCA\n0x9DE9\t0xECCB\n0x9DEA\t0xECCC\n0x9DEB\t0xECCD\n0x9DEC\t0xECCE\n0x9DED\t0xECCF\n0x9DEE\t0xECD0\n0x9DEF\t0xECD1\n0x9DF0\t0xECD2\n0x9DF1\t0xECD3\n0x9DF2\t0xECD4\n0x9DF3\t0xECD5\n0x9DF4\t0xECD6\n0x9DF5\t0xECD7\n0x9DF6\t0xECD8\n0x9DF7\t0xECD9\n0x9DF8\t0xECDA\n0x9DF9\t0xECDB\n0x9DFA\t0xECDC\n0x9DFB\t0xECDD\n0x9DFC\t0xECDE\n0x9DFD\t0xECDF\n0x9DFE\t0xECE0\n0x9E40\t0xECE1\n0x9E41\t0xECE2\n0x9E42\t0xECE3\n0x9E43\t0xECE4\n0x9E44\t0xECE5\n0x9E45\t0xECE6\n0x9E46\t0xECE7\n0x9E47\t0xECE8\n0x9E48\t0xECE9\n0x9E49\t0xECEA\n0x9E4A\t0xECEB\n0x9E4B\t0xECEC\n0x9E4C\t0xECED\n0x9E4D\t0xECEE\n0x9E4E\t0xECEF\n0x9E4F\t0xECF0\n0x9E50\t0xECF1\n0x9E51\t0xECF2\n0x9E52\t0xECF3\n0x9E53\t0xECF4\n0x9E54\t0xECF5\n0x9E55\t0xECF6\n0x9E56\t0xECF7\n0x9E57\t0xECF8\n0x9E58\t0xECF9\n0x9E59\t0xECFA\n0x9E5A\t0xECFB\n0x9E5B\t0xECFC\n0x9E5C\t0xECFD\n0x9E5D\t0xECFE\n0x9E5E\t0xECFF\n0x9E5F\t0xED00\n0x9E60\t0xED01\n0x9E61\t0xED02\n0x9E62\t0xED03\n0x9E63\t0xED04\n0x9E64\t0xED05\n0x9E65\t0xED06\n0x9E66\t0xED07\n0x9E67\t0xED08\n0x9E68\t0xED09\n0x9E69\t0xED0A\n0x9E6A\t0xED0B\n0x9E6B\t0xED0C\n0x9E6C\t0xED0D\n0x9E6D\t0xED0E\n0x9E6E\t0xED0F\n0x9E6F\t0xED10\n0x9E70\t0xED11\n0x9E71\t0xED12\n0x9E72\t0xED13\n0x9E73\t0xED14\n0x9E74\t0xED15\n0x9E75\t0xED16\n0x9E76\t0xED17\n0x9E77\t0xED18\n0x9E78\t0xED19\n0x9E79\t0xED1A\n0x9E7A\t0xED1B\n0x9E7B\t0xED1C\n0x9E7C\t0xED1D\n0x9E7D\t0xED1E\n0x9E7E\t0xED1F\n0x9EA1\t0xED20\n0x9EA2\t0xED21\n0x9EA3\t0xED22\n0x9EA4\t0xED23\n0x9EA5\t0xED24\n0x9EA6\t0xED25\n0x9EA7\t0xED26\n0x9EA8\t0xED27\n0x9EA9\t0xED28\n0x9EAA\t0xED29\n0x9EAB\t0xED2A\n0x9EAC\t0xED2B\n0x9EAD\t0xED2C\n0x9EAE\t0xED2D\n0x9EAF\t0xED2E\n0x9EB0\t0xED2F\n0x9EB1\t0xED30\n0x9EB2\t0xED31\n0x9EB3\t0xED32\n0x9EB4\t0xED33\n0x9EB5\t0xED34\n0x9EB6\t0xED35\n0x9EB7\t0xED36\n0x9EB8\t0xED37\n0x9EB9\t0xED38\n0x9EBA\t0xED39\n0x9EBB\t0xED3A\n0x9EBC\t0xED3B\n0x9EBD\t0xED3C\n0x9EBE\t0xED3D\n0x9EBF\t0xED3E\n0x9EC0\t0xED3F\n0x9EC1\t0xED40\n0x9EC2\t0xED41\n0x9EC3\t0xED42\n0x9EC4\t0xED43\n0x9EC5\t0xED44\n0x9EC6\t0xED45\n0x9EC7\t0xED46\n0x9EC8\t0xED47\n0x9EC9\t0xED48\n0x9ECA\t0xED49\n0x9ECB\t0xED4A\n0x9ECC\t0xED4B\n0x9ECD\t0xED4C\n0x9ECE\t0xED4D\n0x9ECF\t0xED4E\n0x9ED0\t0xED4F\n0x9ED1\t0xED50\n0x9ED2\t0xED51\n0x9ED3\t0xED52\n0x9ED4\t0xED53\n0x9ED5\t0xED54\n0x9ED6\t0xED55\n0x9ED7\t0xED56\n0x9ED8\t0xED57\n0x9ED9\t0xED58\n0x9EDA\t0xED59\n0x9EDB\t0xED5A\n0x9EDC\t0xED5B\n0x9EDD\t0xED5C\n0x9EDE\t0xED5D\n0x9EDF\t0xED5E\n0x9EE0\t0xED5F\n0x9EE1\t0xED60\n0x9EE2\t0xED61\n0x9EE3\t0xED62\n0x9EE4\t0xED63\n0x9EE5\t0xED64\n0x9EE6\t0xED65\n0x9EE7\t0xED66\n0x9EE8\t0xED67\n0x9EE9\t0xED68\n0x9EEA\t0xED69\n0x9EEB\t0xED6A\n0x9EEC\t0xED6B\n0x9EED\t0xED6C\n0x9EEE\t0xED6D\n0x9EEF\t0xED6E\n0x9EF0\t0xED6F\n0x9EF1\t0xED70\n0x9EF2\t0xED71\n0x9EF3\t0xED72\n0x9EF4\t0xED73\n0x9EF5\t0xED74\n0x9EF6\t0xED75\n0x9EF7\t0xED76\n0x9EF8\t0xED77\n0x9EF9\t0xED78\n0x9EFA\t0xED79\n0x9EFB\t0xED7A\n0x9EFC\t0xED7B\n0x9EFD\t0xED7C\n0x9EFE\t0xED7D\n0x9F40\t0xED7E\n0x9F41\t0xED7F\n0x9F42\t0xED80\n0x9F43\t0xED81\n0x9F44\t0xED82\n0x9F45\t0xED83\n0x9F46\t0xED84\n0x9F47\t0xED85\n0x9F48\t0xED86\n0x9F49\t0xED87\n0x9F4A\t0xED88\n0x9F4B\t0xED89\n0x9F4C\t0xED8A\n0x9F4D\t0xED8B\n0x9F4E\t0xED8C\n0x9F4F\t0xED8D\n0x9F50\t0xED8E\n0x9F51\t0xED8F\n0x9F52\t0xED90\n0x9F53\t0xED91\n0x9F54\t0xED92\n0x9F55\t0xED93\n0x9F56\t0xED94\n0x9F57\t0xED95\n0x9F58\t0xED96\n0x9F59\t0xED97\n0x9F5A\t0xED98\n0x9F5B\t0xED99\n0x9F5C\t0xED9A\n0x9F5D\t0xED9B\n0x9F5E\t0xED9C\n0x9F5F\t0xED9D\n0x9F60\t0xED9E\n0x9F61\t0xED9F\n0x9F62\t0xEDA0\n0x9F63\t0xEDA1\n0x9F64\t0xEDA2\n0x9F65\t0xEDA3\n0x9F66\t0xEDA4\n0x9F67\t0xEDA5\n0x9F68\t0xEDA6\n0x9F69\t0xEDA7\n0x9F6A\t0xEDA8\n0x9F6B\t0xEDA9\n0x9F6C\t0xEDAA\n0x9F6D\t0xEDAB\n0x9F6E\t0xEDAC\n0x9F6F\t0xEDAD\n0x9F70\t0xEDAE\n0x9F71\t0xEDAF\n0x9F72\t0xEDB0\n0x9F73\t0xEDB1\n0x9F74\t0xEDB2\n0x9F75\t0xEDB3\n0x9F76\t0xEDB4\n0x9F77\t0xEDB5\n0x9F78\t0xEDB6\n0x9F79\t0xEDB7\n0x9F7A\t0xEDB8\n0x9F7B\t0xEDB9\n0x9F7C\t0xEDBA\n0x9F7D\t0xEDBB\n0x9F7E\t0xEDBC\n0x9FA1\t0xEDBD\n0x9FA2\t0xEDBE\n0x9FA3\t0xEDBF\n0x9FA4\t0xEDC0\n0x9FA5\t0xEDC1\n0x9FA6\t0xEDC2\n0x9FA7\t0xEDC3\n0x9FA8\t0xEDC4\n0x9FA9\t0xEDC5\n0x9FAA\t0xEDC6\n0x9FAB\t0xEDC7\n0x9FAC\t0xEDC8\n0x9FAD\t0xEDC9\n0x9FAE\t0xEDCA\n0x9FAF\t0xEDCB\n0x9FB0\t0xEDCC\n0x9FB1\t0xEDCD\n0x9FB2\t0xEDCE\n0x9FB3\t0xEDCF\n0x9FB4\t0xEDD0\n0x9FB5\t0xEDD1\n0x9FB6\t0xEDD2\n0x9FB7\t0xEDD3\n0x9FB8\t0xEDD4\n0x9FB9\t0xEDD5\n0x9FBA\t0xEDD6\n0x9FBB\t0xEDD7\n0x9FBC\t0xEDD8\n0x9FBD\t0xEDD9\n0x9FBE\t0xEDDA\n0x9FBF\t0xEDDB\n0x9FC0\t0xEDDC\n0x9FC1\t0xEDDD\n0x9FC2\t0xEDDE\n0x9FC3\t0xEDDF\n0x9FC4\t0xEDE0\n0x9FC5\t0xEDE1\n0x9FC6\t0xEDE2\n0x9FC7\t0xEDE3\n0x9FC8\t0xEDE4\n0x9FC9\t0xEDE5\n0x9FCA\t0xEDE6\n0x9FCB\t0xEDE7\n0x9FCC\t0xEDE8\n0x9FCD\t0xEDE9\n0x9FCE\t0xEDEA\n0x9FCF\t0xEDEB\n0x9FD0\t0xEDEC\n0x9FD1\t0xEDED\n0x9FD2\t0xEDEE\n0x9FD3\t0xEDEF\n0x9FD4\t0xEDF0\n0x9FD5\t0xEDF1\n0x9FD6\t0xEDF2\n0x9FD7\t0xEDF3\n0x9FD8\t0xEDF4\n0x9FD9\t0xEDF5\n0x9FDA\t0xEDF6\n0x9FDB\t0xEDF7\n0x9FDC\t0xEDF8\n0x9FDD\t0xEDF9\n0x9FDE\t0xEDFA\n0x9FDF\t0xEDFB\n0x9FE0\t0xEDFC\n0x9FE1\t0xEDFD\n0x9FE2\t0xEDFE\n0x9FE3\t0xEDFF\n0x9FE4\t0xEE00\n0x9FE5\t0xEE01\n0x9FE6\t0xEE02\n0x9FE7\t0xEE03\n0x9FE8\t0xEE04\n0x9FE9\t0xEE05\n0x9FEA\t0xEE06\n0x9FEB\t0xEE07\n0x9FEC\t0xEE08\n0x9FED\t0xEE09\n0x9FEE\t0xEE0A\n0x9FEF\t0xEE0B\n0x9FF0\t0xEE0C\n0x9FF1\t0xEE0D\n0x9FF2\t0xEE0E\n0x9FF3\t0xEE0F\n0x9FF4\t0xEE10\n0x9FF5\t0xEE11\n0x9FF6\t0xEE12\n0x9FF7\t0xEE13\n0x9FF8\t0xEE14\n0x9FF9\t0xEE15\n0x9FFA\t0xEE16\n0x9FFB\t0xEE17\n0x9FFC\t0xEE18\n0x9FFD\t0xEE19\n0x9FFE\t0xEE1A\n0xA040\t0xEE1B\n0xA041\t0xEE1C\n0xA042\t0xEE1D\n0xA043\t0xEE1E\n0xA044\t0xEE1F\n0xA045\t0xEE20\n0xA046\t0xEE21\n0xA047\t0xEE22\n0xA048\t0xEE23\n0xA049\t0xEE24\n0xA04A\t0xEE25\n0xA04B\t0xEE26\n0xA04C\t0xEE27\n0xA04D\t0xEE28\n0xA04E\t0xEE29\n0xA04F\t0xEE2A\n0xA050\t0xEE2B\n0xA051\t0xEE2C\n0xA052\t0xEE2D\n0xA053\t0xEE2E\n0xA054\t0xEE2F\n0xA055\t0xEE30\n0xA056\t0xEE31\n0xA057\t0xEE32\n0xA058\t0xEE33\n0xA059\t0xEE34\n0xA05A\t0xEE35\n0xA05B\t0xEE36\n0xA05C\t0xEE37\n0xA05D\t0xEE38\n0xA05E\t0xEE39\n0xA05F\t0xEE3A\n0xA060\t0xEE3B\n0xA061\t0xEE3C\n0xA062\t0xEE3D\n0xA063\t0xEE3E\n0xA064\t0xEE3F\n0xA065\t0xEE40\n0xA066\t0xEE41\n0xA067\t0xEE42\n0xA068\t0xEE43\n0xA069\t0xEE44\n0xA06A\t0xEE45\n0xA06B\t0xEE46\n0xA06C\t0xEE47\n0xA06D\t0xEE48\n0xA06E\t0xEE49\n0xA06F\t0xEE4A\n0xA070\t0xEE4B\n0xA071\t0xEE4C\n0xA072\t0xEE4D\n0xA073\t0xEE4E\n0xA074\t0xEE4F\n0xA075\t0xEE50\n0xA076\t0xEE51\n0xA077\t0xEE52\n0xA078\t0xEE53\n0xA079\t0xEE54\n0xA07A\t0xEE55\n0xA07B\t0xEE56\n0xA07C\t0xEE57\n0xA07D\t0xEE58\n0xA07E\t0xEE59\n0xA0A1\t0xEE5A\n0xA0A2\t0xEE5B\n0xA0A3\t0xEE5C\n0xA0A4\t0xEE5D\n0xA0A5\t0xEE5E\n0xA0A6\t0xEE5F\n0xA0A7\t0xEE60\n0xA0A8\t0xEE61\n0xA0A9\t0xEE62\n0xA0AA\t0xEE63\n0xA0AB\t0xEE64\n0xA0AC\t0xEE65\n0xA0AD\t0xEE66\n0xA0AE\t0xEE67\n0xA0AF\t0xEE68\n0xA0B0\t0xEE69\n0xA0B1\t0xEE6A\n0xA0B2\t0xEE6B\n0xA0B3\t0xEE6C\n0xA0B4\t0xEE6D\n0xA0B5\t0xEE6E\n0xA0B6\t0xEE6F\n0xA0B7\t0xEE70\n0xA0B8\t0xEE71\n0xA0B9\t0xEE72\n0xA0BA\t0xEE73\n0xA0BB\t0xEE74\n0xA0BC\t0xEE75\n0xA0BD\t0xEE76\n0xA0BE\t0xEE77\n0xA0BF\t0xEE78\n0xA0C0\t0xEE79\n0xA0C1\t0xEE7A\n0xA0C2\t0xEE7B\n0xA0C3\t0xEE7C\n0xA0C4\t0xEE7D\n0xA0C5\t0xEE7E\n0xA0C6\t0xEE7F\n0xA0C7\t0xEE80\n0xA0C8\t0xEE81\n0xA0C9\t0xEE82\n0xA0CA\t0xEE83\n0xA0CB\t0xEE84\n0xA0CC\t0xEE85\n0xA0CD\t0xEE86\n0xA0CE\t0xEE87\n0xA0CF\t0xEE88\n0xA0D0\t0xEE89\n0xA0D1\t0xEE8A\n0xA0D2\t0xEE8B\n0xA0D3\t0xEE8C\n0xA0D4\t0xEE8D\n0xA0D5\t0xEE8E\n0xA0D6\t0xEE8F\n0xA0D7\t0xEE90\n0xA0D8\t0xEE91\n0xA0D9\t0xEE92\n0xA0DA\t0xEE93\n0xA0DB\t0xEE94\n0xA0DC\t0xEE95\n0xA0DD\t0xEE96\n0xA0DE\t0xEE97\n0xA0DF\t0xEE98\n0xA0E0\t0xEE99\n0xA0E1\t0xEE9A\n0xA0E2\t0xEE9B\n0xA0E3\t0xEE9C\n0xA0E4\t0xEE9D\n0xA0E5\t0xEE9E\n0xA0E6\t0xEE9F\n0xA0E7\t0xEEA0\n0xA0E8\t0xEEA1\n0xA0E9\t0xEEA2\n0xA0EA\t0xEEA3\n0xA0EB\t0xEEA4\n0xA0EC\t0xEEA5\n0xA0ED\t0xEEA6\n0xA0EE\t0xEEA7\n0xA0EF\t0xEEA8\n0xA0F0\t0xEEA9\n0xA0F1\t0xEEAA\n0xA0F2\t0xEEAB\n0xA0F3\t0xEEAC\n0xA0F4\t0xEEAD\n0xA0F5\t0xEEAE\n0xA0F6\t0xEEAF\n0xA0F7\t0xEEB0\n0xA0F8\t0xEEB1\n0xA0F9\t0xEEB2\n0xA0FA\t0xEEB3\n0xA0FB\t0xEEB4\n0xA0FC\t0xEEB5\n0xA0FD\t0xEEB6\n0xA0FE\t0xEEB7\n0xA140\t0x3000\n0xA141\t0xFF0C\n0xA142\t0x3001\n0xA143\t0x3002\n0xA144\t0xFF0E\n0xA145\t0x2027\n0xA146\t0xFF1B\n0xA147\t0xFF1A\n0xA148\t0xFF1F\n0xA149\t0xFF01\n0xA14A\t0xFE30\n0xA14B\t0x2026\n0xA14C\t0x2025\n0xA14D\t0xFE50\n0xA14E\t0xFE51\n0xA14F\t0xFE52\n0xA150\t0x00B7\n0xA151\t0xFE54\n0xA152\t0xFE55\n0xA153\t0xFE56\n0xA154\t0xFE57\n0xA155\t0xFF5C\n0xA156\t0x2013\n0xA157\t0xFE31\n0xA158\t0x2014\n0xA159\t0xFE33\n0xA15A\t0x2574\n0xA15B\t0xFE34\n0xA15C\t0xFE4F\n0xA15D\t0xFF08\n0xA15E\t0xFF09\n0xA15F\t0xFE35\n0xA160\t0xFE36\n0xA161\t0xFF5B\n0xA162\t0xFF5D\n0xA163\t0xFE37\n0xA164\t0xFE38\n0xA165\t0x3014\n0xA166\t0x3015\n0xA167\t0xFE39\n0xA168\t0xFE3A\n0xA169\t0x3010\n0xA16A\t0x3011\n0xA16B\t0xFE3B\n0xA16C\t0xFE3C\n0xA16D\t0x300A\n0xA16E\t0x300B\n0xA16F\t0xFE3D\n0xA170\t0xFE3E\n0xA171\t0x3008\n0xA172\t0x3009\n0xA173\t0xFE3F\n0xA174\t0xFE40\n0xA175\t0x300C\n0xA176\t0x300D\n0xA177\t0xFE41\n0xA178\t0xFE42\n0xA179\t0x300E\n0xA17A\t0x300F\n0xA17B\t0xFE43\n0xA17C\t0xFE44\n0xA17D\t0xFE59\n0xA17E\t0xFE5A\n0xA1A1\t0xFE5B\n0xA1A2\t0xFE5C\n0xA1A3\t0xFE5D\n0xA1A4\t0xFE5E\n0xA1A5\t0x2018\n0xA1A6\t0x2019\n0xA1A7\t0x201C\n0xA1A8\t0x201D\n0xA1A9\t0x301D\n0xA1AA\t0x301E\n0xA1AB\t0x2035\n0xA1AC\t0x2032\n0xA1AD\t0xFF03\n0xA1AE\t0xFF06\n0xA1AF\t0xFF0A\n0xA1B0\t0x203B\n0xA1B1\t0x00A7\n0xA1B2\t0x3003\n0xA1B3\t0x25CB\n0xA1B4\t0x25CF\n0xA1B5\t0x25B3\n0xA1B6\t0x25B2\n0xA1B7\t0x25CE\n0xA1B8\t0x2606\n0xA1B9\t0x2605\n0xA1BA\t0x25C7\n0xA1BB\t0x25C6\n0xA1BC\t0x25A1\n0xA1BD\t0x25A0\n0xA1BE\t0x25BD\n0xA1BF\t0x25BC\n0xA1C0\t0x32A3\n0xA1C1\t0x2105\n0xA1C2\t0x00AF\n0xA1C3\t0xFFE3\n0xA1C4\t0xFF3F\n0xA1C5\t0x02CD\n0xA1C6\t0xFE49\n0xA1C7\t0xFE4A\n0xA1C8\t0xFE4D\n0xA1C9\t0xFE4E\n0xA1CA\t0xFE4B\n0xA1CB\t0xFE4C\n0xA1CC\t0xFE5F\n0xA1CD\t0xFE60\n0xA1CE\t0xFE61\n0xA1CF\t0xFF0B\n0xA1D0\t0xFF0D\n0xA1D1\t0x00D7\n0xA1D2\t0x00F7\n0xA1D3\t0x00B1\n0xA1D4\t0x221A\n0xA1D5\t0xFF1C\n0xA1D6\t0xFF1E\n0xA1D7\t0xFF1D\n0xA1D8\t0x2266\n0xA1D9\t0x2267\n0xA1DA\t0x2260\n0xA1DB\t0x221E\n0xA1DC\t0x2252\n0xA1DD\t0x2261\n0xA1DE\t0xFE62\n0xA1DF\t0xFE63\n0xA1E0\t0xFE64\n0xA1E1\t0xFE65\n0xA1E2\t0xFE66\n0xA1E3\t0xFF5E\n0xA1E4\t0x2229\n0xA1E5\t0x222A\n0xA1E6\t0x22A5\n0xA1E7\t0x2220\n0xA1E8\t0x221F\n0xA1E9\t0x22BF\n0xA1EA\t0x33D2\n0xA1EB\t0x33D1\n0xA1EC\t0x222B\n0xA1ED\t0x222E\n0xA1EE\t0x2235\n0xA1EF\t0x2234\n0xA1F0\t0x2640\n0xA1F1\t0x2642\n0xA1F2\t0x2295\n0xA1F3\t0x2299\n0xA1F4\t0x2191\n0xA1F5\t0x2193\n0xA1F6\t0x2190\n0xA1F7\t0x2192\n0xA1F8\t0x2196\n0xA1F9\t0x2197\n0xA1FA\t0x2199\n0xA1FB\t0x2198\n0xA1FC\t0x2225\n0xA1FD\t0x2223\n0xA1FE\t0xFF0F\n0xA240\t0xFF3C\n0xA241\t0x2215\n0xA242\t0xFE68\n0xA243\t0xFF04\n0xA244\t0xFFE5\n0xA245\t0x3012\n0xA246\t0xFFE0\n0xA247\t0xFFE1\n0xA248\t0xFF05\n0xA249\t0xFF20\n0xA24A\t0x2103\n0xA24B\t0x2109\n0xA24C\t0xFE69\n0xA24D\t0xFE6A\n0xA24E\t0xFE6B\n0xA24F\t0x33D5\n0xA250\t0x339C\n0xA251\t0x339D\n0xA252\t0x339E\n0xA253\t0x33CE\n0xA254\t0x33A1\n0xA255\t0x338E\n0xA256\t0x338F\n0xA257\t0x33C4\n0xA258\t0x00B0\n0xA259\t0x5159\n0xA25A\t0x515B\n0xA25B\t0x515E\n0xA25C\t0x515D\n0xA25D\t0x5161\n0xA25E\t0x5163\n0xA25F\t0x55E7\n0xA260\t0x74E9\n0xA261\t0x7CCE\n0xA262\t0x2581\n0xA263\t0x2582\n0xA264\t0x2583\n0xA265\t0x2584\n0xA266\t0x2585\n0xA267\t0x2586\n0xA268\t0x2587\n0xA269\t0x2588\n0xA26A\t0x258F\n0xA26B\t0x258E\n0xA26C\t0x258D\n0xA26D\t0x258C\n0xA26E\t0x258B\n0xA26F\t0x258A\n0xA270\t0x2589\n0xA271\t0x253C\n0xA272\t0x2534\n0xA273\t0x252C\n0xA274\t0x2524\n0xA275\t0x251C\n0xA276\t0x2594\n0xA277\t0x2500\n0xA278\t0x2502\n0xA279\t0x2595\n0xA27A\t0x250C\n0xA27B\t0x2510\n0xA27C\t0x2514\n0xA27D\t0x2518\n0xA27E\t0x256D\n0xA2A1\t0x256E\n0xA2A2\t0x2570\n0xA2A3\t0x256F\n0xA2A4\t0x2550\n0xA2A5\t0x255E\n0xA2A6\t0x256A\n0xA2A7\t0x2561\n0xA2A8\t0x25E2\n0xA2A9\t0x25E3\n0xA2AA\t0x25E5\n0xA2AB\t0x25E4\n0xA2AC\t0x2571\n0xA2AD\t0x2572\n0xA2AE\t0x2573\n0xA2AF\t0xFF10\n0xA2B0\t0xFF11\n0xA2B1\t0xFF12\n0xA2B2\t0xFF13\n0xA2B3\t0xFF14\n0xA2B4\t0xFF15\n0xA2B5\t0xFF16\n0xA2B6\t0xFF17\n0xA2B7\t0xFF18\n0xA2B8\t0xFF19\n0xA2B9\t0x2160\n0xA2BA\t0x2161\n0xA2BB\t0x2162\n0xA2BC\t0x2163\n0xA2BD\t0x2164\n0xA2BE\t0x2165\n0xA2BF\t0x2166\n0xA2C0\t0x2167\n0xA2C1\t0x2168\n0xA2C2\t0x2169\n0xA2C3\t0x3021\n0xA2C4\t0x3022\n0xA2C5\t0x3023\n0xA2C6\t0x3024\n0xA2C7\t0x3025\n0xA2C8\t0x3026\n0xA2C9\t0x3027\n0xA2CA\t0x3028\n0xA2CB\t0x3029\n0xA2CC\t0x5341\n0xA2CD\t0x5344\n0xA2CE\t0x5345\n0xA2CF\t0xFF21\n0xA2D0\t0xFF22\n0xA2D1\t0xFF23\n0xA2D2\t0xFF24\n0xA2D3\t0xFF25\n0xA2D4\t0xFF26\n0xA2D5\t0xFF27\n0xA2D6\t0xFF28\n0xA2D7\t0xFF29\n0xA2D8\t0xFF2A\n0xA2D9\t0xFF2B\n0xA2DA\t0xFF2C\n0xA2DB\t0xFF2D\n0xA2DC\t0xFF2E\n0xA2DD\t0xFF2F\n0xA2DE\t0xFF30\n0xA2DF\t0xFF31\n0xA2E0\t0xFF32\n0xA2E1\t0xFF33\n0xA2E2\t0xFF34\n0xA2E3\t0xFF35\n0xA2E4\t0xFF36\n0xA2E5\t0xFF37\n0xA2E6\t0xFF38\n0xA2E7\t0xFF39\n0xA2E8\t0xFF3A\n0xA2E9\t0xFF41\n0xA2EA\t0xFF42\n0xA2EB\t0xFF43\n0xA2EC\t0xFF44\n0xA2ED\t0xFF45\n0xA2EE\t0xFF46\n0xA2EF\t0xFF47\n0xA2F0\t0xFF48\n0xA2F1\t0xFF49\n0xA2F2\t0xFF4A\n0xA2F3\t0xFF4B\n0xA2F4\t0xFF4C\n0xA2F5\t0xFF4D\n0xA2F6\t0xFF4E\n0xA2F7\t0xFF4F\n0xA2F8\t0xFF50\n0xA2F9\t0xFF51\n0xA2FA\t0xFF52\n0xA2FB\t0xFF53\n0xA2FC\t0xFF54\n0xA2FD\t0xFF55\n0xA2FE\t0xFF56\n0xA340\t0xFF57\n0xA341\t0xFF58\n0xA342\t0xFF59\n0xA343\t0xFF5A\n0xA344\t0x0391\n0xA345\t0x0392\n0xA346\t0x0393\n0xA347\t0x0394\n0xA348\t0x0395\n0xA349\t0x0396\n0xA34A\t0x0397\n0xA34B\t0x0398\n0xA34C\t0x0399\n0xA34D\t0x039A\n0xA34E\t0x039B\n0xA34F\t0x039C\n0xA350\t0x039D\n0xA351\t0x039E\n0xA352\t0x039F\n0xA353\t0x03A0\n0xA354\t0x03A1\n0xA355\t0x03A3\n0xA356\t0x03A4\n0xA357\t0x03A5\n0xA358\t0x03A6\n0xA359\t0x03A7\n0xA35A\t0x03A8\n0xA35B\t0x03A9\n0xA35C\t0x03B1\n0xA35D\t0x03B2\n0xA35E\t0x03B3\n0xA35F\t0x03B4\n0xA360\t0x03B5\n0xA361\t0x03B6\n0xA362\t0x03B7\n0xA363\t0x03B8\n0xA364\t0x03B9\n0xA365\t0x03BA\n0xA366\t0x03BB\n0xA367\t0x03BC\n0xA368\t0x03BD\n0xA369\t0x03BE\n0xA36A\t0x03BF\n0xA36B\t0x03C0\n0xA36C\t0x03C1\n0xA36D\t0x03C3\n0xA36E\t0x03C4\n0xA36F\t0x03C5\n0xA370\t0x03C6\n0xA371\t0x03C7\n0xA372\t0x03C8\n0xA373\t0x03C9\n0xA374\t0x3105\n0xA375\t0x3106\n0xA376\t0x3107\n0xA377\t0x3108\n0xA378\t0x3109\n0xA379\t0x310A\n0xA37A\t0x310B\n0xA37B\t0x310C\n0xA37C\t0x310D\n0xA37D\t0x310E\n0xA37E\t0x310F\n0xA3A1\t0x3110\n0xA3A2\t0x3111\n0xA3A3\t0x3112\n0xA3A4\t0x3113\n0xA3A5\t0x3114\n0xA3A6\t0x3115\n0xA3A7\t0x3116\n0xA3A8\t0x3117\n0xA3A9\t0x3118\n0xA3AA\t0x3119\n0xA3AB\t0x311A\n0xA3AC\t0x311B\n0xA3AD\t0x311C\n0xA3AE\t0x311D\n0xA3AF\t0x311E\n0xA3B0\t0x311F\n0xA3B1\t0x3120\n0xA3B2\t0x3121\n0xA3B3\t0x3122\n0xA3B4\t0x3123\n0xA3B5\t0x3124\n0xA3B6\t0x3125\n0xA3B7\t0x3126\n0xA3B8\t0x3127\n0xA3B9\t0x3128\n0xA3BA\t0x3129\n0xA3BB\t0x02D9\n0xA3BC\t0x02C9\n0xA3BD\t0x02CA\n0xA3BE\t0x02C7\n0xA3BF\t0x02CB\n0xA3E1\t0x20AC\n0xA440\t0x4E00\n0xA441\t0x4E59\n0xA442\t0x4E01\n0xA443\t0x4E03\n0xA444\t0x4E43\n0xA445\t0x4E5D\n0xA446\t0x4E86\n0xA447\t0x4E8C\n0xA448\t0x4EBA\n0xA449\t0x513F\n0xA44A\t0x5165\n0xA44B\t0x516B\n0xA44C\t0x51E0\n0xA44D\t0x5200\n0xA44E\t0x5201\n0xA44F\t0x529B\n0xA450\t0x5315\n0xA451\t0x5341\n0xA452\t0x535C\n0xA453\t0x53C8\n0xA454\t0x4E09\n0xA455\t0x4E0B\n0xA456\t0x4E08\n0xA457\t0x4E0A\n0xA458\t0x4E2B\n0xA459\t0x4E38\n0xA45A\t0x51E1\n0xA45B\t0x4E45\n0xA45C\t0x4E48\n0xA45D\t0x4E5F\n0xA45E\t0x4E5E\n0xA45F\t0x4E8E\n0xA460\t0x4EA1\n0xA461\t0x5140\n0xA462\t0x5203\n0xA463\t0x52FA\n0xA464\t0x5343\n0xA465\t0x53C9\n0xA466\t0x53E3\n0xA467\t0x571F\n0xA468\t0x58EB\n0xA469\t0x5915\n0xA46A\t0x5927\n0xA46B\t0x5973\n0xA46C\t0x5B50\n0xA46D\t0x5B51\n0xA46E\t0x5B53\n0xA46F\t0x5BF8\n0xA470\t0x5C0F\n0xA471\t0x5C22\n0xA472\t0x5C38\n0xA473\t0x5C71\n0xA474\t0x5DDD\n0xA475\t0x5DE5\n0xA476\t0x5DF1\n0xA477\t0x5DF2\n0xA478\t0x5DF3\n0xA479\t0x5DFE\n0xA47A\t0x5E72\n0xA47B\t0x5EFE\n0xA47C\t0x5F0B\n0xA47D\t0x5F13\n0xA47E\t0x624D\n0xA4A1\t0x4E11\n0xA4A2\t0x4E10\n0xA4A3\t0x4E0D\n0xA4A4\t0x4E2D\n0xA4A5\t0x4E30\n0xA4A6\t0x4E39\n0xA4A7\t0x4E4B\n0xA4A8\t0x5C39\n0xA4A9\t0x4E88\n0xA4AA\t0x4E91\n0xA4AB\t0x4E95\n0xA4AC\t0x4E92\n0xA4AD\t0x4E94\n0xA4AE\t0x4EA2\n0xA4AF\t0x4EC1\n0xA4B0\t0x4EC0\n0xA4B1\t0x4EC3\n0xA4B2\t0x4EC6\n0xA4B3\t0x4EC7\n0xA4B4\t0x4ECD\n0xA4B5\t0x4ECA\n0xA4B6\t0x4ECB\n0xA4B7\t0x4EC4\n0xA4B8\t0x5143\n0xA4B9\t0x5141\n0xA4BA\t0x5167\n0xA4BB\t0x516D\n0xA4BC\t0x516E\n0xA4BD\t0x516C\n0xA4BE\t0x5197\n0xA4BF\t0x51F6\n0xA4C0\t0x5206\n0xA4C1\t0x5207\n0xA4C2\t0x5208\n0xA4C3\t0x52FB\n0xA4C4\t0x52FE\n0xA4C5\t0x52FF\n0xA4C6\t0x5316\n0xA4C7\t0x5339\n0xA4C8\t0x5348\n0xA4C9\t0x5347\n0xA4CA\t0x5345\n0xA4CB\t0x535E\n0xA4CC\t0x5384\n0xA4CD\t0x53CB\n0xA4CE\t0x53CA\n0xA4CF\t0x53CD\n0xA4D0\t0x58EC\n0xA4D1\t0x5929\n0xA4D2\t0x592B\n0xA4D3\t0x592A\n0xA4D4\t0x592D\n0xA4D5\t0x5B54\n0xA4D6\t0x5C11\n0xA4D7\t0x5C24\n0xA4D8\t0x5C3A\n0xA4D9\t0x5C6F\n0xA4DA\t0x5DF4\n0xA4DB\t0x5E7B\n0xA4DC\t0x5EFF\n0xA4DD\t0x5F14\n0xA4DE\t0x5F15\n0xA4DF\t0x5FC3\n0xA4E0\t0x6208\n0xA4E1\t0x6236\n0xA4E2\t0x624B\n0xA4E3\t0x624E\n0xA4E4\t0x652F\n0xA4E5\t0x6587\n0xA4E6\t0x6597\n0xA4E7\t0x65A4\n0xA4E8\t0x65B9\n0xA4E9\t0x65E5\n0xA4EA\t0x66F0\n0xA4EB\t0x6708\n0xA4EC\t0x6728\n0xA4ED\t0x6B20\n0xA4EE\t0x6B62\n0xA4EF\t0x6B79\n0xA4F0\t0x6BCB\n0xA4F1\t0x6BD4\n0xA4F2\t0x6BDB\n0xA4F3\t0x6C0F\n0xA4F4\t0x6C34\n0xA4F5\t0x706B\n0xA4F6\t0x722A\n0xA4F7\t0x7236\n0xA4F8\t0x723B\n0xA4F9\t0x7247\n0xA4FA\t0x7259\n0xA4FB\t0x725B\n0xA4FC\t0x72AC\n0xA4FD\t0x738B\n0xA4FE\t0x4E19\n0xA540\t0x4E16\n0xA541\t0x4E15\n0xA542\t0x4E14\n0xA543\t0x4E18\n0xA544\t0x4E3B\n0xA545\t0x4E4D\n0xA546\t0x4E4F\n0xA547\t0x4E4E\n0xA548\t0x4EE5\n0xA549\t0x4ED8\n0xA54A\t0x4ED4\n0xA54B\t0x4ED5\n0xA54C\t0x4ED6\n0xA54D\t0x4ED7\n0xA54E\t0x4EE3\n0xA54F\t0x4EE4\n0xA550\t0x4ED9\n0xA551\t0x4EDE\n0xA552\t0x5145\n0xA553\t0x5144\n0xA554\t0x5189\n0xA555\t0x518A\n0xA556\t0x51AC\n0xA557\t0x51F9\n0xA558\t0x51FA\n0xA559\t0x51F8\n0xA55A\t0x520A\n0xA55B\t0x52A0\n0xA55C\t0x529F\n0xA55D\t0x5305\n0xA55E\t0x5306\n0xA55F\t0x5317\n0xA560\t0x531D\n0xA561\t0x4EDF\n0xA562\t0x534A\n0xA563\t0x5349\n0xA564\t0x5361\n0xA565\t0x5360\n0xA566\t0x536F\n0xA567\t0x536E\n0xA568\t0x53BB\n0xA569\t0x53EF\n0xA56A\t0x53E4\n0xA56B\t0x53F3\n0xA56C\t0x53EC\n0xA56D\t0x53EE\n0xA56E\t0x53E9\n0xA56F\t0x53E8\n0xA570\t0x53FC\n0xA571\t0x53F8\n0xA572\t0x53F5\n0xA573\t0x53EB\n0xA574\t0x53E6\n0xA575\t0x53EA\n0xA576\t0x53F2\n0xA577\t0x53F1\n0xA578\t0x53F0\n0xA579\t0x53E5\n0xA57A\t0x53ED\n0xA57B\t0x53FB\n0xA57C\t0x56DB\n0xA57D\t0x56DA\n0xA57E\t0x5916\n0xA5A1\t0x592E\n0xA5A2\t0x5931\n0xA5A3\t0x5974\n0xA5A4\t0x5976\n0xA5A5\t0x5B55\n0xA5A6\t0x5B83\n0xA5A7\t0x5C3C\n0xA5A8\t0x5DE8\n0xA5A9\t0x5DE7\n0xA5AA\t0x5DE6\n0xA5AB\t0x5E02\n0xA5AC\t0x5E03\n0xA5AD\t0x5E73\n0xA5AE\t0x5E7C\n0xA5AF\t0x5F01\n0xA5B0\t0x5F18\n0xA5B1\t0x5F17\n0xA5B2\t0x5FC5\n0xA5B3\t0x620A\n0xA5B4\t0x6253\n0xA5B5\t0x6254\n0xA5B6\t0x6252\n0xA5B7\t0x6251\n0xA5B8\t0x65A5\n0xA5B9\t0x65E6\n0xA5BA\t0x672E\n0xA5BB\t0x672C\n0xA5BC\t0x672A\n0xA5BD\t0x672B\n0xA5BE\t0x672D\n0xA5BF\t0x6B63\n0xA5C0\t0x6BCD\n0xA5C1\t0x6C11\n0xA5C2\t0x6C10\n0xA5C3\t0x6C38\n0xA5C4\t0x6C41\n0xA5C5\t0x6C40\n0xA5C6\t0x6C3E\n0xA5C7\t0x72AF\n0xA5C8\t0x7384\n0xA5C9\t0x7389\n0xA5CA\t0x74DC\n0xA5CB\t0x74E6\n0xA5CC\t0x7518\n0xA5CD\t0x751F\n0xA5CE\t0x7528\n0xA5CF\t0x7529\n0xA5D0\t0x7530\n0xA5D1\t0x7531\n0xA5D2\t0x7532\n0xA5D3\t0x7533\n0xA5D4\t0x758B\n0xA5D5\t0x767D\n0xA5D6\t0x76AE\n0xA5D7\t0x76BF\n0xA5D8\t0x76EE\n0xA5D9\t0x77DB\n0xA5DA\t0x77E2\n0xA5DB\t0x77F3\n0xA5DC\t0x793A\n0xA5DD\t0x79BE\n0xA5DE\t0x7A74\n0xA5DF\t0x7ACB\n0xA5E0\t0x4E1E\n0xA5E1\t0x4E1F\n0xA5E2\t0x4E52\n0xA5E3\t0x4E53\n0xA5E4\t0x4E69\n0xA5E5\t0x4E99\n0xA5E6\t0x4EA4\n0xA5E7\t0x4EA6\n0xA5E8\t0x4EA5\n0xA5E9\t0x4EFF\n0xA5EA\t0x4F09\n0xA5EB\t0x4F19\n0xA5EC\t0x4F0A\n0xA5ED\t0x4F15\n0xA5EE\t0x4F0D\n0xA5EF\t0x4F10\n0xA5F0\t0x4F11\n0xA5F1\t0x4F0F\n0xA5F2\t0x4EF2\n0xA5F3\t0x4EF6\n0xA5F4\t0x4EFB\n0xA5F5\t0x4EF0\n0xA5F6\t0x4EF3\n0xA5F7\t0x4EFD\n0xA5F8\t0x4F01\n0xA5F9\t0x4F0B\n0xA5FA\t0x5149\n0xA5FB\t0x5147\n0xA5FC\t0x5146\n0xA5FD\t0x5148\n0xA5FE\t0x5168\n0xA640\t0x5171\n0xA641\t0x518D\n0xA642\t0x51B0\n0xA643\t0x5217\n0xA644\t0x5211\n0xA645\t0x5212\n0xA646\t0x520E\n0xA647\t0x5216\n0xA648\t0x52A3\n0xA649\t0x5308\n0xA64A\t0x5321\n0xA64B\t0x5320\n0xA64C\t0x5370\n0xA64D\t0x5371\n0xA64E\t0x5409\n0xA64F\t0x540F\n0xA650\t0x540C\n0xA651\t0x540A\n0xA652\t0x5410\n0xA653\t0x5401\n0xA654\t0x540B\n0xA655\t0x5404\n0xA656\t0x5411\n0xA657\t0x540D\n0xA658\t0x5408\n0xA659\t0x5403\n0xA65A\t0x540E\n0xA65B\t0x5406\n0xA65C\t0x5412\n0xA65D\t0x56E0\n0xA65E\t0x56DE\n0xA65F\t0x56DD\n0xA660\t0x5733\n0xA661\t0x5730\n0xA662\t0x5728\n0xA663\t0x572D\n0xA664\t0x572C\n0xA665\t0x572F\n0xA666\t0x5729\n0xA667\t0x5919\n0xA668\t0x591A\n0xA669\t0x5937\n0xA66A\t0x5938\n0xA66B\t0x5984\n0xA66C\t0x5978\n0xA66D\t0x5983\n0xA66E\t0x597D\n0xA66F\t0x5979\n0xA670\t0x5982\n0xA671\t0x5981\n0xA672\t0x5B57\n0xA673\t0x5B58\n0xA674\t0x5B87\n0xA675\t0x5B88\n0xA676\t0x5B85\n0xA677\t0x5B89\n0xA678\t0x5BFA\n0xA679\t0x5C16\n0xA67A\t0x5C79\n0xA67B\t0x5DDE\n0xA67C\t0x5E06\n0xA67D\t0x5E76\n0xA67E\t0x5E74\n0xA6A1\t0x5F0F\n0xA6A2\t0x5F1B\n0xA6A3\t0x5FD9\n0xA6A4\t0x5FD6\n0xA6A5\t0x620E\n0xA6A6\t0x620C\n0xA6A7\t0x620D\n0xA6A8\t0x6210\n0xA6A9\t0x6263\n0xA6AA\t0x625B\n0xA6AB\t0x6258\n0xA6AC\t0x6536\n0xA6AD\t0x65E9\n0xA6AE\t0x65E8\n0xA6AF\t0x65EC\n0xA6B0\t0x65ED\n0xA6B1\t0x66F2\n0xA6B2\t0x66F3\n0xA6B3\t0x6709\n0xA6B4\t0x673D\n0xA6B5\t0x6734\n0xA6B6\t0x6731\n0xA6B7\t0x6735\n0xA6B8\t0x6B21\n0xA6B9\t0x6B64\n0xA6BA\t0x6B7B\n0xA6BB\t0x6C16\n0xA6BC\t0x6C5D\n0xA6BD\t0x6C57\n0xA6BE\t0x6C59\n0xA6BF\t0x6C5F\n0xA6C0\t0x6C60\n0xA6C1\t0x6C50\n0xA6C2\t0x6C55\n0xA6C3\t0x6C61\n0xA6C4\t0x6C5B\n0xA6C5\t0x6C4D\n0xA6C6\t0x6C4E\n0xA6C7\t0x7070\n0xA6C8\t0x725F\n0xA6C9\t0x725D\n0xA6CA\t0x767E\n0xA6CB\t0x7AF9\n0xA6CC\t0x7C73\n0xA6CD\t0x7CF8\n0xA6CE\t0x7F36\n0xA6CF\t0x7F8A\n0xA6D0\t0x7FBD\n0xA6D1\t0x8001\n0xA6D2\t0x8003\n0xA6D3\t0x800C\n0xA6D4\t0x8012\n0xA6D5\t0x8033\n0xA6D6\t0x807F\n0xA6D7\t0x8089\n0xA6D8\t0x808B\n0xA6D9\t0x808C\n0xA6DA\t0x81E3\n0xA6DB\t0x81EA\n0xA6DC\t0x81F3\n0xA6DD\t0x81FC\n0xA6DE\t0x820C\n0xA6DF\t0x821B\n0xA6E0\t0x821F\n0xA6E1\t0x826E\n0xA6E2\t0x8272\n0xA6E3\t0x827E\n0xA6E4\t0x866B\n0xA6E5\t0x8840\n0xA6E6\t0x884C\n0xA6E7\t0x8863\n0xA6E8\t0x897F\n0xA6E9\t0x9621\n0xA6EA\t0x4E32\n0xA6EB\t0x4EA8\n0xA6EC\t0x4F4D\n0xA6ED\t0x4F4F\n0xA6EE\t0x4F47\n0xA6EF\t0x4F57\n0xA6F0\t0x4F5E\n0xA6F1\t0x4F34\n0xA6F2\t0x4F5B\n0xA6F3\t0x4F55\n0xA6F4\t0x4F30\n0xA6F5\t0x4F50\n0xA6F6\t0x4F51\n0xA6F7\t0x4F3D\n0xA6F8\t0x4F3A\n0xA6F9\t0x4F38\n0xA6FA\t0x4F43\n0xA6FB\t0x4F54\n0xA6FC\t0x4F3C\n0xA6FD\t0x4F46\n0xA6FE\t0x4F63\n0xA740\t0x4F5C\n0xA741\t0x4F60\n0xA742\t0x4F2F\n0xA743\t0x4F4E\n0xA744\t0x4F36\n0xA745\t0x4F59\n0xA746\t0x4F5D\n0xA747\t0x4F48\n0xA748\t0x4F5A\n0xA749\t0x514C\n0xA74A\t0x514B\n0xA74B\t0x514D\n0xA74C\t0x5175\n0xA74D\t0x51B6\n0xA74E\t0x51B7\n0xA74F\t0x5225\n0xA750\t0x5224\n0xA751\t0x5229\n0xA752\t0x522A\n0xA753\t0x5228\n0xA754\t0x52AB\n0xA755\t0x52A9\n0xA756\t0x52AA\n0xA757\t0x52AC\n0xA758\t0x5323\n0xA759\t0x5373\n0xA75A\t0x5375\n0xA75B\t0x541D\n0xA75C\t0x542D\n0xA75D\t0x541E\n0xA75E\t0x543E\n0xA75F\t0x5426\n0xA760\t0x544E\n0xA761\t0x5427\n0xA762\t0x5446\n0xA763\t0x5443\n0xA764\t0x5433\n0xA765\t0x5448\n0xA766\t0x5442\n0xA767\t0x541B\n0xA768\t0x5429\n0xA769\t0x544A\n0xA76A\t0x5439\n0xA76B\t0x543B\n0xA76C\t0x5438\n0xA76D\t0x542E\n0xA76E\t0x5435\n0xA76F\t0x5436\n0xA770\t0x5420\n0xA771\t0x543C\n0xA772\t0x5440\n0xA773\t0x5431\n0xA774\t0x542B\n0xA775\t0x541F\n0xA776\t0x542C\n0xA777\t0x56EA\n0xA778\t0x56F0\n0xA779\t0x56E4\n0xA77A\t0x56EB\n0xA77B\t0x574A\n0xA77C\t0x5751\n0xA77D\t0x5740\n0xA77E\t0x574D\n0xA7A1\t0x5747\n0xA7A2\t0x574E\n0xA7A3\t0x573E\n0xA7A4\t0x5750\n0xA7A5\t0x574F\n0xA7A6\t0x573B\n0xA7A7\t0x58EF\n0xA7A8\t0x593E\n0xA7A9\t0x599D\n0xA7AA\t0x5992\n0xA7AB\t0x59A8\n0xA7AC\t0x599E\n0xA7AD\t0x59A3\n0xA7AE\t0x5999\n0xA7AF\t0x5996\n0xA7B0\t0x598D\n0xA7B1\t0x59A4\n0xA7B2\t0x5993\n0xA7B3\t0x598A\n0xA7B4\t0x59A5\n0xA7B5\t0x5B5D\n0xA7B6\t0x5B5C\n0xA7B7\t0x5B5A\n0xA7B8\t0x5B5B\n0xA7B9\t0x5B8C\n0xA7BA\t0x5B8B\n0xA7BB\t0x5B8F\n0xA7BC\t0x5C2C\n0xA7BD\t0x5C40\n0xA7BE\t0x5C41\n0xA7BF\t0x5C3F\n0xA7C0\t0x5C3E\n0xA7C1\t0x5C90\n0xA7C2\t0x5C91\n0xA7C3\t0x5C94\n0xA7C4\t0x5C8C\n0xA7C5\t0x5DEB\n0xA7C6\t0x5E0C\n0xA7C7\t0x5E8F\n0xA7C8\t0x5E87\n0xA7C9\t0x5E8A\n0xA7CA\t0x5EF7\n0xA7CB\t0x5F04\n0xA7CC\t0x5F1F\n0xA7CD\t0x5F64\n0xA7CE\t0x5F62\n0xA7CF\t0x5F77\n0xA7D0\t0x5F79\n0xA7D1\t0x5FD8\n0xA7D2\t0x5FCC\n0xA7D3\t0x5FD7\n0xA7D4\t0x5FCD\n0xA7D5\t0x5FF1\n0xA7D6\t0x5FEB\n0xA7D7\t0x5FF8\n0xA7D8\t0x5FEA\n0xA7D9\t0x6212\n0xA7DA\t0x6211\n0xA7DB\t0x6284\n0xA7DC\t0x6297\n0xA7DD\t0x6296\n0xA7DE\t0x6280\n0xA7DF\t0x6276\n0xA7E0\t0x6289\n0xA7E1\t0x626D\n0xA7E2\t0x628A\n0xA7E3\t0x627C\n0xA7E4\t0x627E\n0xA7E5\t0x6279\n0xA7E6\t0x6273\n0xA7E7\t0x6292\n0xA7E8\t0x626F\n0xA7E9\t0x6298\n0xA7EA\t0x626E\n0xA7EB\t0x6295\n0xA7EC\t0x6293\n0xA7ED\t0x6291\n0xA7EE\t0x6286\n0xA7EF\t0x6539\n0xA7F0\t0x653B\n0xA7F1\t0x6538\n0xA7F2\t0x65F1\n0xA7F3\t0x66F4\n0xA7F4\t0x675F\n0xA7F5\t0x674E\n0xA7F6\t0x674F\n0xA7F7\t0x6750\n0xA7F8\t0x6751\n0xA7F9\t0x675C\n0xA7FA\t0x6756\n0xA7FB\t0x675E\n0xA7FC\t0x6749\n0xA7FD\t0x6746\n0xA7FE\t0x6760\n0xA840\t0x6753\n0xA841\t0x6757\n0xA842\t0x6B65\n0xA843\t0x6BCF\n0xA844\t0x6C42\n0xA845\t0x6C5E\n0xA846\t0x6C99\n0xA847\t0x6C81\n0xA848\t0x6C88\n0xA849\t0x6C89\n0xA84A\t0x6C85\n0xA84B\t0x6C9B\n0xA84C\t0x6C6A\n0xA84D\t0x6C7A\n0xA84E\t0x6C90\n0xA84F\t0x6C70\n0xA850\t0x6C8C\n0xA851\t0x6C68\n0xA852\t0x6C96\n0xA853\t0x6C92\n0xA854\t0x6C7D\n0xA855\t0x6C83\n0xA856\t0x6C72\n0xA857\t0x6C7E\n0xA858\t0x6C74\n0xA859\t0x6C86\n0xA85A\t0x6C76\n0xA85B\t0x6C8D\n0xA85C\t0x6C94\n0xA85D\t0x6C98\n0xA85E\t0x6C82\n0xA85F\t0x7076\n0xA860\t0x707C\n0xA861\t0x707D\n0xA862\t0x7078\n0xA863\t0x7262\n0xA864\t0x7261\n0xA865\t0x7260\n0xA866\t0x72C4\n0xA867\t0x72C2\n0xA868\t0x7396\n0xA869\t0x752C\n0xA86A\t0x752B\n0xA86B\t0x7537\n0xA86C\t0x7538\n0xA86D\t0x7682\n0xA86E\t0x76EF\n0xA86F\t0x77E3\n0xA870\t0x79C1\n0xA871\t0x79C0\n0xA872\t0x79BF\n0xA873\t0x7A76\n0xA874\t0x7CFB\n0xA875\t0x7F55\n0xA876\t0x8096\n0xA877\t0x8093\n0xA878\t0x809D\n0xA879\t0x8098\n0xA87A\t0x809B\n0xA87B\t0x809A\n0xA87C\t0x80B2\n0xA87D\t0x826F\n0xA87E\t0x8292\n0xA8A1\t0x828B\n0xA8A2\t0x828D\n0xA8A3\t0x898B\n0xA8A4\t0x89D2\n0xA8A5\t0x8A00\n0xA8A6\t0x8C37\n0xA8A7\t0x8C46\n0xA8A8\t0x8C55\n0xA8A9\t0x8C9D\n0xA8AA\t0x8D64\n0xA8AB\t0x8D70\n0xA8AC\t0x8DB3\n0xA8AD\t0x8EAB\n0xA8AE\t0x8ECA\n0xA8AF\t0x8F9B\n0xA8B0\t0x8FB0\n0xA8B1\t0x8FC2\n0xA8B2\t0x8FC6\n0xA8B3\t0x8FC5\n0xA8B4\t0x8FC4\n0xA8B5\t0x5DE1\n0xA8B6\t0x9091\n0xA8B7\t0x90A2\n0xA8B8\t0x90AA\n0xA8B9\t0x90A6\n0xA8BA\t0x90A3\n0xA8BB\t0x9149\n0xA8BC\t0x91C6\n0xA8BD\t0x91CC\n0xA8BE\t0x9632\n0xA8BF\t0x962E\n0xA8C0\t0x9631\n0xA8C1\t0x962A\n0xA8C2\t0x962C\n0xA8C3\t0x4E26\n0xA8C4\t0x4E56\n0xA8C5\t0x4E73\n0xA8C6\t0x4E8B\n0xA8C7\t0x4E9B\n0xA8C8\t0x4E9E\n0xA8C9\t0x4EAB\n0xA8CA\t0x4EAC\n0xA8CB\t0x4F6F\n0xA8CC\t0x4F9D\n0xA8CD\t0x4F8D\n0xA8CE\t0x4F73\n0xA8CF\t0x4F7F\n0xA8D0\t0x4F6C\n0xA8D1\t0x4F9B\n0xA8D2\t0x4F8B\n0xA8D3\t0x4F86\n0xA8D4\t0x4F83\n0xA8D5\t0x4F70\n0xA8D6\t0x4F75\n0xA8D7\t0x4F88\n0xA8D8\t0x4F69\n0xA8D9\t0x4F7B\n0xA8DA\t0x4F96\n0xA8DB\t0x4F7E\n0xA8DC\t0x4F8F\n0xA8DD\t0x4F91\n0xA8DE\t0x4F7A\n0xA8DF\t0x5154\n0xA8E0\t0x5152\n0xA8E1\t0x5155\n0xA8E2\t0x5169\n0xA8E3\t0x5177\n0xA8E4\t0x5176\n0xA8E5\t0x5178\n0xA8E6\t0x51BD\n0xA8E7\t0x51FD\n0xA8E8\t0x523B\n0xA8E9\t0x5238\n0xA8EA\t0x5237\n0xA8EB\t0x523A\n0xA8EC\t0x5230\n0xA8ED\t0x522E\n0xA8EE\t0x5236\n0xA8EF\t0x5241\n0xA8F0\t0x52BE\n0xA8F1\t0x52BB\n0xA8F2\t0x5352\n0xA8F3\t0x5354\n0xA8F4\t0x5353\n0xA8F5\t0x5351\n0xA8F6\t0x5366\n0xA8F7\t0x5377\n0xA8F8\t0x5378\n0xA8F9\t0x5379\n0xA8FA\t0x53D6\n0xA8FB\t0x53D4\n0xA8FC\t0x53D7\n0xA8FD\t0x5473\n0xA8FE\t0x5475\n0xA940\t0x5496\n0xA941\t0x5478\n0xA942\t0x5495\n0xA943\t0x5480\n0xA944\t0x547B\n0xA945\t0x5477\n0xA946\t0x5484\n0xA947\t0x5492\n0xA948\t0x5486\n0xA949\t0x547C\n0xA94A\t0x5490\n0xA94B\t0x5471\n0xA94C\t0x5476\n0xA94D\t0x548C\n0xA94E\t0x549A\n0xA94F\t0x5462\n0xA950\t0x5468\n0xA951\t0x548B\n0xA952\t0x547D\n0xA953\t0x548E\n0xA954\t0x56FA\n0xA955\t0x5783\n0xA956\t0x5777\n0xA957\t0x576A\n0xA958\t0x5769\n0xA959\t0x5761\n0xA95A\t0x5766\n0xA95B\t0x5764\n0xA95C\t0x577C\n0xA95D\t0x591C\n0xA95E\t0x5949\n0xA95F\t0x5947\n0xA960\t0x5948\n0xA961\t0x5944\n0xA962\t0x5954\n0xA963\t0x59BE\n0xA964\t0x59BB\n0xA965\t0x59D4\n0xA966\t0x59B9\n0xA967\t0x59AE\n0xA968\t0x59D1\n0xA969\t0x59C6\n0xA96A\t0x59D0\n0xA96B\t0x59CD\n0xA96C\t0x59CB\n0xA96D\t0x59D3\n0xA96E\t0x59CA\n0xA96F\t0x59AF\n0xA970\t0x59B3\n0xA971\t0x59D2\n0xA972\t0x59C5\n0xA973\t0x5B5F\n0xA974\t0x5B64\n0xA975\t0x5B63\n0xA976\t0x5B97\n0xA977\t0x5B9A\n0xA978\t0x5B98\n0xA979\t0x5B9C\n0xA97A\t0x5B99\n0xA97B\t0x5B9B\n0xA97C\t0x5C1A\n0xA97D\t0x5C48\n0xA97E\t0x5C45\n0xA9A1\t0x5C46\n0xA9A2\t0x5CB7\n0xA9A3\t0x5CA1\n0xA9A4\t0x5CB8\n0xA9A5\t0x5CA9\n0xA9A6\t0x5CAB\n0xA9A7\t0x5CB1\n0xA9A8\t0x5CB3\n0xA9A9\t0x5E18\n0xA9AA\t0x5E1A\n0xA9AB\t0x5E16\n0xA9AC\t0x5E15\n0xA9AD\t0x5E1B\n0xA9AE\t0x5E11\n0xA9AF\t0x5E78\n0xA9B0\t0x5E9A\n0xA9B1\t0x5E97\n0xA9B2\t0x5E9C\n0xA9B3\t0x5E95\n0xA9B4\t0x5E96\n0xA9B5\t0x5EF6\n0xA9B6\t0x5F26\n0xA9B7\t0x5F27\n0xA9B8\t0x5F29\n0xA9B9\t0x5F80\n0xA9BA\t0x5F81\n0xA9BB\t0x5F7F\n0xA9BC\t0x5F7C\n0xA9BD\t0x5FDD\n0xA9BE\t0x5FE0\n0xA9BF\t0x5FFD\n0xA9C0\t0x5FF5\n0xA9C1\t0x5FFF\n0xA9C2\t0x600F\n0xA9C3\t0x6014\n0xA9C4\t0x602F\n0xA9C5\t0x6035\n0xA9C6\t0x6016\n0xA9C7\t0x602A\n0xA9C8\t0x6015\n0xA9C9\t0x6021\n0xA9CA\t0x6027\n0xA9CB\t0x6029\n0xA9CC\t0x602B\n0xA9CD\t0x601B\n0xA9CE\t0x6216\n0xA9CF\t0x6215\n0xA9D0\t0x623F\n0xA9D1\t0x623E\n0xA9D2\t0x6240\n0xA9D3\t0x627F\n0xA9D4\t0x62C9\n0xA9D5\t0x62CC\n0xA9D6\t0x62C4\n0xA9D7\t0x62BF\n0xA9D8\t0x62C2\n0xA9D9\t0x62B9\n0xA9DA\t0x62D2\n0xA9DB\t0x62DB\n0xA9DC\t0x62AB\n0xA9DD\t0x62D3\n0xA9DE\t0x62D4\n0xA9DF\t0x62CB\n0xA9E0\t0x62C8\n0xA9E1\t0x62A8\n0xA9E2\t0x62BD\n0xA9E3\t0x62BC\n0xA9E4\t0x62D0\n0xA9E5\t0x62D9\n0xA9E6\t0x62C7\n0xA9E7\t0x62CD\n0xA9E8\t0x62B5\n0xA9E9\t0x62DA\n0xA9EA\t0x62B1\n0xA9EB\t0x62D8\n0xA9EC\t0x62D6\n0xA9ED\t0x62D7\n0xA9EE\t0x62C6\n0xA9EF\t0x62AC\n0xA9F0\t0x62CE\n0xA9F1\t0x653E\n0xA9F2\t0x65A7\n0xA9F3\t0x65BC\n0xA9F4\t0x65FA\n0xA9F5\t0x6614\n0xA9F6\t0x6613\n0xA9F7\t0x660C\n0xA9F8\t0x6606\n0xA9F9\t0x6602\n0xA9FA\t0x660E\n0xA9FB\t0x6600\n0xA9FC\t0x660F\n0xA9FD\t0x6615\n0xA9FE\t0x660A\n0xAA40\t0x6607\n0xAA41\t0x670D\n0xAA42\t0x670B\n0xAA43\t0x676D\n0xAA44\t0x678B\n0xAA45\t0x6795\n0xAA46\t0x6771\n0xAA47\t0x679C\n0xAA48\t0x6773\n0xAA49\t0x6777\n0xAA4A\t0x6787\n0xAA4B\t0x679D\n0xAA4C\t0x6797\n0xAA4D\t0x676F\n0xAA4E\t0x6770\n0xAA4F\t0x677F\n0xAA50\t0x6789\n0xAA51\t0x677E\n0xAA52\t0x6790\n0xAA53\t0x6775\n0xAA54\t0x679A\n0xAA55\t0x6793\n0xAA56\t0x677C\n0xAA57\t0x676A\n0xAA58\t0x6772\n0xAA59\t0x6B23\n0xAA5A\t0x6B66\n0xAA5B\t0x6B67\n0xAA5C\t0x6B7F\n0xAA5D\t0x6C13\n0xAA5E\t0x6C1B\n0xAA5F\t0x6CE3\n0xAA60\t0x6CE8\n0xAA61\t0x6CF3\n0xAA62\t0x6CB1\n0xAA63\t0x6CCC\n0xAA64\t0x6CE5\n0xAA65\t0x6CB3\n0xAA66\t0x6CBD\n0xAA67\t0x6CBE\n0xAA68\t0x6CBC\n0xAA69\t0x6CE2\n0xAA6A\t0x6CAB\n0xAA6B\t0x6CD5\n0xAA6C\t0x6CD3\n0xAA6D\t0x6CB8\n0xAA6E\t0x6CC4\n0xAA6F\t0x6CB9\n0xAA70\t0x6CC1\n0xAA71\t0x6CAE\n0xAA72\t0x6CD7\n0xAA73\t0x6CC5\n0xAA74\t0x6CF1\n0xAA75\t0x6CBF\n0xAA76\t0x6CBB\n0xAA77\t0x6CE1\n0xAA78\t0x6CDB\n0xAA79\t0x6CCA\n0xAA7A\t0x6CAC\n0xAA7B\t0x6CEF\n0xAA7C\t0x6CDC\n0xAA7D\t0x6CD6\n0xAA7E\t0x6CE0\n0xAAA1\t0x7095\n0xAAA2\t0x708E\n0xAAA3\t0x7092\n0xAAA4\t0x708A\n0xAAA5\t0x7099\n0xAAA6\t0x722C\n0xAAA7\t0x722D\n0xAAA8\t0x7238\n0xAAA9\t0x7248\n0xAAAA\t0x7267\n0xAAAB\t0x7269\n0xAAAC\t0x72C0\n0xAAAD\t0x72CE\n0xAAAE\t0x72D9\n0xAAAF\t0x72D7\n0xAAB0\t0x72D0\n0xAAB1\t0x73A9\n0xAAB2\t0x73A8\n0xAAB3\t0x739F\n0xAAB4\t0x73AB\n0xAAB5\t0x73A5\n0xAAB6\t0x753D\n0xAAB7\t0x759D\n0xAAB8\t0x7599\n0xAAB9\t0x759A\n0xAABA\t0x7684\n0xAABB\t0x76C2\n0xAABC\t0x76F2\n0xAABD\t0x76F4\n0xAABE\t0x77E5\n0xAABF\t0x77FD\n0xAAC0\t0x793E\n0xAAC1\t0x7940\n0xAAC2\t0x7941\n0xAAC3\t0x79C9\n0xAAC4\t0x79C8\n0xAAC5\t0x7A7A\n0xAAC6\t0x7A79\n0xAAC7\t0x7AFA\n0xAAC8\t0x7CFE\n0xAAC9\t0x7F54\n0xAACA\t0x7F8C\n0xAACB\t0x7F8B\n0xAACC\t0x8005\n0xAACD\t0x80BA\n0xAACE\t0x80A5\n0xAACF\t0x80A2\n0xAAD0\t0x80B1\n0xAAD1\t0x80A1\n0xAAD2\t0x80AB\n0xAAD3\t0x80A9\n0xAAD4\t0x80B4\n0xAAD5\t0x80AA\n0xAAD6\t0x80AF\n0xAAD7\t0x81E5\n0xAAD8\t0x81FE\n0xAAD9\t0x820D\n0xAADA\t0x82B3\n0xAADB\t0x829D\n0xAADC\t0x8299\n0xAADD\t0x82AD\n0xAADE\t0x82BD\n0xAADF\t0x829F\n0xAAE0\t0x82B9\n0xAAE1\t0x82B1\n0xAAE2\t0x82AC\n0xAAE3\t0x82A5\n0xAAE4\t0x82AF\n0xAAE5\t0x82B8\n0xAAE6\t0x82A3\n0xAAE7\t0x82B0\n0xAAE8\t0x82BE\n0xAAE9\t0x82B7\n0xAAEA\t0x864E\n0xAAEB\t0x8671\n0xAAEC\t0x521D\n0xAAED\t0x8868\n0xAAEE\t0x8ECB\n0xAAEF\t0x8FCE\n0xAAF0\t0x8FD4\n0xAAF1\t0x8FD1\n0xAAF2\t0x90B5\n0xAAF3\t0x90B8\n0xAAF4\t0x90B1\n0xAAF5\t0x90B6\n0xAAF6\t0x91C7\n0xAAF7\t0x91D1\n0xAAF8\t0x9577\n0xAAF9\t0x9580\n0xAAFA\t0x961C\n0xAAFB\t0x9640\n0xAAFC\t0x963F\n0xAAFD\t0x963B\n0xAAFE\t0x9644\n0xAB40\t0x9642\n0xAB41\t0x96B9\n0xAB42\t0x96E8\n0xAB43\t0x9752\n0xAB44\t0x975E\n0xAB45\t0x4E9F\n0xAB46\t0x4EAD\n0xAB47\t0x4EAE\n0xAB48\t0x4FE1\n0xAB49\t0x4FB5\n0xAB4A\t0x4FAF\n0xAB4B\t0x4FBF\n0xAB4C\t0x4FE0\n0xAB4D\t0x4FD1\n0xAB4E\t0x4FCF\n0xAB4F\t0x4FDD\n0xAB50\t0x4FC3\n0xAB51\t0x4FB6\n0xAB52\t0x4FD8\n0xAB53\t0x4FDF\n0xAB54\t0x4FCA\n0xAB55\t0x4FD7\n0xAB56\t0x4FAE\n0xAB57\t0x4FD0\n0xAB58\t0x4FC4\n0xAB59\t0x4FC2\n0xAB5A\t0x4FDA\n0xAB5B\t0x4FCE\n0xAB5C\t0x4FDE\n0xAB5D\t0x4FB7\n0xAB5E\t0x5157\n0xAB5F\t0x5192\n0xAB60\t0x5191\n0xAB61\t0x51A0\n0xAB62\t0x524E\n0xAB63\t0x5243\n0xAB64\t0x524A\n0xAB65\t0x524D\n0xAB66\t0x524C\n0xAB67\t0x524B\n0xAB68\t0x5247\n0xAB69\t0x52C7\n0xAB6A\t0x52C9\n0xAB6B\t0x52C3\n0xAB6C\t0x52C1\n0xAB6D\t0x530D\n0xAB6E\t0x5357\n0xAB6F\t0x537B\n0xAB70\t0x539A\n0xAB71\t0x53DB\n0xAB72\t0x54AC\n0xAB73\t0x54C0\n0xAB74\t0x54A8\n0xAB75\t0x54CE\n0xAB76\t0x54C9\n0xAB77\t0x54B8\n0xAB78\t0x54A6\n0xAB79\t0x54B3\n0xAB7A\t0x54C7\n0xAB7B\t0x54C2\n0xAB7C\t0x54BD\n0xAB7D\t0x54AA\n0xAB7E\t0x54C1\n0xABA1\t0x54C4\n0xABA2\t0x54C8\n0xABA3\t0x54AF\n0xABA4\t0x54AB\n0xABA5\t0x54B1\n0xABA6\t0x54BB\n0xABA7\t0x54A9\n0xABA8\t0x54A7\n0xABA9\t0x54BF\n0xABAA\t0x56FF\n0xABAB\t0x5782\n0xABAC\t0x578B\n0xABAD\t0x57A0\n0xABAE\t0x57A3\n0xABAF\t0x57A2\n0xABB0\t0x57CE\n0xABB1\t0x57AE\n0xABB2\t0x5793\n0xABB3\t0x5955\n0xABB4\t0x5951\n0xABB5\t0x594F\n0xABB6\t0x594E\n0xABB7\t0x5950\n0xABB8\t0x59DC\n0xABB9\t0x59D8\n0xABBA\t0x59FF\n0xABBB\t0x59E3\n0xABBC\t0x59E8\n0xABBD\t0x5A03\n0xABBE\t0x59E5\n0xABBF\t0x59EA\n0xABC0\t0x59DA\n0xABC1\t0x59E6\n0xABC2\t0x5A01\n0xABC3\t0x59FB\n0xABC4\t0x5B69\n0xABC5\t0x5BA3\n0xABC6\t0x5BA6\n0xABC7\t0x5BA4\n0xABC8\t0x5BA2\n0xABC9\t0x5BA5\n0xABCA\t0x5C01\n0xABCB\t0x5C4E\n0xABCC\t0x5C4F\n0xABCD\t0x5C4D\n0xABCE\t0x5C4B\n0xABCF\t0x5CD9\n0xABD0\t0x5CD2\n0xABD1\t0x5DF7\n0xABD2\t0x5E1D\n0xABD3\t0x5E25\n0xABD4\t0x5E1F\n0xABD5\t0x5E7D\n0xABD6\t0x5EA0\n0xABD7\t0x5EA6\n0xABD8\t0x5EFA\n0xABD9\t0x5F08\n0xABDA\t0x5F2D\n0xABDB\t0x5F65\n0xABDC\t0x5F88\n0xABDD\t0x5F85\n0xABDE\t0x5F8A\n0xABDF\t0x5F8B\n0xABE0\t0x5F87\n0xABE1\t0x5F8C\n0xABE2\t0x5F89\n0xABE3\t0x6012\n0xABE4\t0x601D\n0xABE5\t0x6020\n0xABE6\t0x6025\n0xABE7\t0x600E\n0xABE8\t0x6028\n0xABE9\t0x604D\n0xABEA\t0x6070\n0xABEB\t0x6068\n0xABEC\t0x6062\n0xABED\t0x6046\n0xABEE\t0x6043\n0xABEF\t0x606C\n0xABF0\t0x606B\n0xABF1\t0x606A\n0xABF2\t0x6064\n0xABF3\t0x6241\n0xABF4\t0x62DC\n0xABF5\t0x6316\n0xABF6\t0x6309\n0xABF7\t0x62FC\n0xABF8\t0x62ED\n0xABF9\t0x6301\n0xABFA\t0x62EE\n0xABFB\t0x62FD\n0xABFC\t0x6307\n0xABFD\t0x62F1\n0xABFE\t0x62F7\n0xAC40\t0x62EF\n0xAC41\t0x62EC\n0xAC42\t0x62FE\n0xAC43\t0x62F4\n0xAC44\t0x6311\n0xAC45\t0x6302\n0xAC46\t0x653F\n0xAC47\t0x6545\n0xAC48\t0x65AB\n0xAC49\t0x65BD\n0xAC4A\t0x65E2\n0xAC4B\t0x6625\n0xAC4C\t0x662D\n0xAC4D\t0x6620\n0xAC4E\t0x6627\n0xAC4F\t0x662F\n0xAC50\t0x661F\n0xAC51\t0x6628\n0xAC52\t0x6631\n0xAC53\t0x6624\n0xAC54\t0x66F7\n0xAC55\t0x67FF\n0xAC56\t0x67D3\n0xAC57\t0x67F1\n0xAC58\t0x67D4\n0xAC59\t0x67D0\n0xAC5A\t0x67EC\n0xAC5B\t0x67B6\n0xAC5C\t0x67AF\n0xAC5D\t0x67F5\n0xAC5E\t0x67E9\n0xAC5F\t0x67EF\n0xAC60\t0x67C4\n0xAC61\t0x67D1\n0xAC62\t0x67B4\n0xAC63\t0x67DA\n0xAC64\t0x67E5\n0xAC65\t0x67B8\n0xAC66\t0x67CF\n0xAC67\t0x67DE\n0xAC68\t0x67F3\n0xAC69\t0x67B0\n0xAC6A\t0x67D9\n0xAC6B\t0x67E2\n0xAC6C\t0x67DD\n0xAC6D\t0x67D2\n0xAC6E\t0x6B6A\n0xAC6F\t0x6B83\n0xAC70\t0x6B86\n0xAC71\t0x6BB5\n0xAC72\t0x6BD2\n0xAC73\t0x6BD7\n0xAC74\t0x6C1F\n0xAC75\t0x6CC9\n0xAC76\t0x6D0B\n0xAC77\t0x6D32\n0xAC78\t0x6D2A\n0xAC79\t0x6D41\n0xAC7A\t0x6D25\n0xAC7B\t0x6D0C\n0xAC7C\t0x6D31\n0xAC7D\t0x6D1E\n0xAC7E\t0x6D17\n0xACA1\t0x6D3B\n0xACA2\t0x6D3D\n0xACA3\t0x6D3E\n0xACA4\t0x6D36\n0xACA5\t0x6D1B\n0xACA6\t0x6CF5\n0xACA7\t0x6D39\n0xACA8\t0x6D27\n0xACA9\t0x6D38\n0xACAA\t0x6D29\n0xACAB\t0x6D2E\n0xACAC\t0x6D35\n0xACAD\t0x6D0E\n0xACAE\t0x6D2B\n0xACAF\t0x70AB\n0xACB0\t0x70BA\n0xACB1\t0x70B3\n0xACB2\t0x70AC\n0xACB3\t0x70AF\n0xACB4\t0x70AD\n0xACB5\t0x70B8\n0xACB6\t0x70AE\n0xACB7\t0x70A4\n0xACB8\t0x7230\n0xACB9\t0x7272\n0xACBA\t0x726F\n0xACBB\t0x7274\n0xACBC\t0x72E9\n0xACBD\t0x72E0\n0xACBE\t0x72E1\n0xACBF\t0x73B7\n0xACC0\t0x73CA\n0xACC1\t0x73BB\n0xACC2\t0x73B2\n0xACC3\t0x73CD\n0xACC4\t0x73C0\n0xACC5\t0x73B3\n0xACC6\t0x751A\n0xACC7\t0x752D\n0xACC8\t0x754F\n0xACC9\t0x754C\n0xACCA\t0x754E\n0xACCB\t0x754B\n0xACCC\t0x75AB\n0xACCD\t0x75A4\n0xACCE\t0x75A5\n0xACCF\t0x75A2\n0xACD0\t0x75A3\n0xACD1\t0x7678\n0xACD2\t0x7686\n0xACD3\t0x7687\n0xACD4\t0x7688\n0xACD5\t0x76C8\n0xACD6\t0x76C6\n0xACD7\t0x76C3\n0xACD8\t0x76C5\n0xACD9\t0x7701\n0xACDA\t0x76F9\n0xACDB\t0x76F8\n0xACDC\t0x7709\n0xACDD\t0x770B\n0xACDE\t0x76FE\n0xACDF\t0x76FC\n0xACE0\t0x7707\n0xACE1\t0x77DC\n0xACE2\t0x7802\n0xACE3\t0x7814\n0xACE4\t0x780C\n0xACE5\t0x780D\n0xACE6\t0x7946\n0xACE7\t0x7949\n0xACE8\t0x7948\n0xACE9\t0x7947\n0xACEA\t0x79B9\n0xACEB\t0x79BA\n0xACEC\t0x79D1\n0xACED\t0x79D2\n0xACEE\t0x79CB\n0xACEF\t0x7A7F\n0xACF0\t0x7A81\n0xACF1\t0x7AFF\n0xACF2\t0x7AFD\n0xACF3\t0x7C7D\n0xACF4\t0x7D02\n0xACF5\t0x7D05\n0xACF6\t0x7D00\n0xACF7\t0x7D09\n0xACF8\t0x7D07\n0xACF9\t0x7D04\n0xACFA\t0x7D06\n0xACFB\t0x7F38\n0xACFC\t0x7F8E\n0xACFD\t0x7FBF\n0xACFE\t0x8004\n0xAD40\t0x8010\n0xAD41\t0x800D\n0xAD42\t0x8011\n0xAD43\t0x8036\n0xAD44\t0x80D6\n0xAD45\t0x80E5\n0xAD46\t0x80DA\n0xAD47\t0x80C3\n0xAD48\t0x80C4\n0xAD49\t0x80CC\n0xAD4A\t0x80E1\n0xAD4B\t0x80DB\n0xAD4C\t0x80CE\n0xAD4D\t0x80DE\n0xAD4E\t0x80E4\n0xAD4F\t0x80DD\n0xAD50\t0x81F4\n0xAD51\t0x8222\n0xAD52\t0x82E7\n0xAD53\t0x8303\n0xAD54\t0x8305\n0xAD55\t0x82E3\n0xAD56\t0x82DB\n0xAD57\t0x82E6\n0xAD58\t0x8304\n0xAD59\t0x82E5\n0xAD5A\t0x8302\n0xAD5B\t0x8309\n0xAD5C\t0x82D2\n0xAD5D\t0x82D7\n0xAD5E\t0x82F1\n0xAD5F\t0x8301\n0xAD60\t0x82DC\n0xAD61\t0x82D4\n0xAD62\t0x82D1\n0xAD63\t0x82DE\n0xAD64\t0x82D3\n0xAD65\t0x82DF\n0xAD66\t0x82EF\n0xAD67\t0x8306\n0xAD68\t0x8650\n0xAD69\t0x8679\n0xAD6A\t0x867B\n0xAD6B\t0x867A\n0xAD6C\t0x884D\n0xAD6D\t0x886B\n0xAD6E\t0x8981\n0xAD6F\t0x89D4\n0xAD70\t0x8A08\n0xAD71\t0x8A02\n0xAD72\t0x8A03\n0xAD73\t0x8C9E\n0xAD74\t0x8CA0\n0xAD75\t0x8D74\n0xAD76\t0x8D73\n0xAD77\t0x8DB4\n0xAD78\t0x8ECD\n0xAD79\t0x8ECC\n0xAD7A\t0x8FF0\n0xAD7B\t0x8FE6\n0xAD7C\t0x8FE2\n0xAD7D\t0x8FEA\n0xAD7E\t0x8FE5\n0xADA1\t0x8FED\n0xADA2\t0x8FEB\n0xADA3\t0x8FE4\n0xADA4\t0x8FE8\n0xADA5\t0x90CA\n0xADA6\t0x90CE\n0xADA7\t0x90C1\n0xADA8\t0x90C3\n0xADA9\t0x914B\n0xADAA\t0x914A\n0xADAB\t0x91CD\n0xADAC\t0x9582\n0xADAD\t0x9650\n0xADAE\t0x964B\n0xADAF\t0x964C\n0xADB0\t0x964D\n0xADB1\t0x9762\n0xADB2\t0x9769\n0xADB3\t0x97CB\n0xADB4\t0x97ED\n0xADB5\t0x97F3\n0xADB6\t0x9801\n0xADB7\t0x98A8\n0xADB8\t0x98DB\n0xADB9\t0x98DF\n0xADBA\t0x9996\n0xADBB\t0x9999\n0xADBC\t0x4E58\n0xADBD\t0x4EB3\n0xADBE\t0x500C\n0xADBF\t0x500D\n0xADC0\t0x5023\n0xADC1\t0x4FEF\n0xADC2\t0x5026\n0xADC3\t0x5025\n0xADC4\t0x4FF8\n0xADC5\t0x5029\n0xADC6\t0x5016\n0xADC7\t0x5006\n0xADC8\t0x503C\n0xADC9\t0x501F\n0xADCA\t0x501A\n0xADCB\t0x5012\n0xADCC\t0x5011\n0xADCD\t0x4FFA\n0xADCE\t0x5000\n0xADCF\t0x5014\n0xADD0\t0x5028\n0xADD1\t0x4FF1\n0xADD2\t0x5021\n0xADD3\t0x500B\n0xADD4\t0x5019\n0xADD5\t0x5018\n0xADD6\t0x4FF3\n0xADD7\t0x4FEE\n0xADD8\t0x502D\n0xADD9\t0x502A\n0xADDA\t0x4FFE\n0xADDB\t0x502B\n0xADDC\t0x5009\n0xADDD\t0x517C\n0xADDE\t0x51A4\n0xADDF\t0x51A5\n0xADE0\t0x51A2\n0xADE1\t0x51CD\n0xADE2\t0x51CC\n0xADE3\t0x51C6\n0xADE4\t0x51CB\n0xADE5\t0x5256\n0xADE6\t0x525C\n0xADE7\t0x5254\n0xADE8\t0x525B\n0xADE9\t0x525D\n0xADEA\t0x532A\n0xADEB\t0x537F\n0xADEC\t0x539F\n0xADED\t0x539D\n0xADEE\t0x53DF\n0xADEF\t0x54E8\n0xADF0\t0x5510\n0xADF1\t0x5501\n0xADF2\t0x5537\n0xADF3\t0x54FC\n0xADF4\t0x54E5\n0xADF5\t0x54F2\n0xADF6\t0x5506\n0xADF7\t0x54FA\n0xADF8\t0x5514\n0xADF9\t0x54E9\n0xADFA\t0x54ED\n0xADFB\t0x54E1\n0xADFC\t0x5509\n0xADFD\t0x54EE\n0xADFE\t0x54EA\n0xAE40\t0x54E6\n0xAE41\t0x5527\n0xAE42\t0x5507\n0xAE43\t0x54FD\n0xAE44\t0x550F\n0xAE45\t0x5703\n0xAE46\t0x5704\n0xAE47\t0x57C2\n0xAE48\t0x57D4\n0xAE49\t0x57CB\n0xAE4A\t0x57C3\n0xAE4B\t0x5809\n0xAE4C\t0x590F\n0xAE4D\t0x5957\n0xAE4E\t0x5958\n0xAE4F\t0x595A\n0xAE50\t0x5A11\n0xAE51\t0x5A18\n0xAE52\t0x5A1C\n0xAE53\t0x5A1F\n0xAE54\t0x5A1B\n0xAE55\t0x5A13\n0xAE56\t0x59EC\n0xAE57\t0x5A20\n0xAE58\t0x5A23\n0xAE59\t0x5A29\n0xAE5A\t0x5A25\n0xAE5B\t0x5A0C\n0xAE5C\t0x5A09\n0xAE5D\t0x5B6B\n0xAE5E\t0x5C58\n0xAE5F\t0x5BB0\n0xAE60\t0x5BB3\n0xAE61\t0x5BB6\n0xAE62\t0x5BB4\n0xAE63\t0x5BAE\n0xAE64\t0x5BB5\n0xAE65\t0x5BB9\n0xAE66\t0x5BB8\n0xAE67\t0x5C04\n0xAE68\t0x5C51\n0xAE69\t0x5C55\n0xAE6A\t0x5C50\n0xAE6B\t0x5CED\n0xAE6C\t0x5CFD\n0xAE6D\t0x5CFB\n0xAE6E\t0x5CEA\n0xAE6F\t0x5CE8\n0xAE70\t0x5CF0\n0xAE71\t0x5CF6\n0xAE72\t0x5D01\n0xAE73\t0x5CF4\n0xAE74\t0x5DEE\n0xAE75\t0x5E2D\n0xAE76\t0x5E2B\n0xAE77\t0x5EAB\n0xAE78\t0x5EAD\n0xAE79\t0x5EA7\n0xAE7A\t0x5F31\n0xAE7B\t0x5F92\n0xAE7C\t0x5F91\n0xAE7D\t0x5F90\n0xAE7E\t0x6059\n0xAEA1\t0x6063\n0xAEA2\t0x6065\n0xAEA3\t0x6050\n0xAEA4\t0x6055\n0xAEA5\t0x606D\n0xAEA6\t0x6069\n0xAEA7\t0x606F\n0xAEA8\t0x6084\n0xAEA9\t0x609F\n0xAEAA\t0x609A\n0xAEAB\t0x608D\n0xAEAC\t0x6094\n0xAEAD\t0x608C\n0xAEAE\t0x6085\n0xAEAF\t0x6096\n0xAEB0\t0x6247\n0xAEB1\t0x62F3\n0xAEB2\t0x6308\n0xAEB3\t0x62FF\n0xAEB4\t0x634E\n0xAEB5\t0x633E\n0xAEB6\t0x632F\n0xAEB7\t0x6355\n0xAEB8\t0x6342\n0xAEB9\t0x6346\n0xAEBA\t0x634F\n0xAEBB\t0x6349\n0xAEBC\t0x633A\n0xAEBD\t0x6350\n0xAEBE\t0x633D\n0xAEBF\t0x632A\n0xAEC0\t0x632B\n0xAEC1\t0x6328\n0xAEC2\t0x634D\n0xAEC3\t0x634C\n0xAEC4\t0x6548\n0xAEC5\t0x6549\n0xAEC6\t0x6599\n0xAEC7\t0x65C1\n0xAEC8\t0x65C5\n0xAEC9\t0x6642\n0xAECA\t0x6649\n0xAECB\t0x664F\n0xAECC\t0x6643\n0xAECD\t0x6652\n0xAECE\t0x664C\n0xAECF\t0x6645\n0xAED0\t0x6641\n0xAED1\t0x66F8\n0xAED2\t0x6714\n0xAED3\t0x6715\n0xAED4\t0x6717\n0xAED5\t0x6821\n0xAED6\t0x6838\n0xAED7\t0x6848\n0xAED8\t0x6846\n0xAED9\t0x6853\n0xAEDA\t0x6839\n0xAEDB\t0x6842\n0xAEDC\t0x6854\n0xAEDD\t0x6829\n0xAEDE\t0x68B3\n0xAEDF\t0x6817\n0xAEE0\t0x684C\n0xAEE1\t0x6851\n0xAEE2\t0x683D\n0xAEE3\t0x67F4\n0xAEE4\t0x6850\n0xAEE5\t0x6840\n0xAEE6\t0x683C\n0xAEE7\t0x6843\n0xAEE8\t0x682A\n0xAEE9\t0x6845\n0xAEEA\t0x6813\n0xAEEB\t0x6818\n0xAEEC\t0x6841\n0xAEED\t0x6B8A\n0xAEEE\t0x6B89\n0xAEEF\t0x6BB7\n0xAEF0\t0x6C23\n0xAEF1\t0x6C27\n0xAEF2\t0x6C28\n0xAEF3\t0x6C26\n0xAEF4\t0x6C24\n0xAEF5\t0x6CF0\n0xAEF6\t0x6D6A\n0xAEF7\t0x6D95\n0xAEF8\t0x6D88\n0xAEF9\t0x6D87\n0xAEFA\t0x6D66\n0xAEFB\t0x6D78\n0xAEFC\t0x6D77\n0xAEFD\t0x6D59\n0xAEFE\t0x6D93\n0xAF40\t0x6D6C\n0xAF41\t0x6D89\n0xAF42\t0x6D6E\n0xAF43\t0x6D5A\n0xAF44\t0x6D74\n0xAF45\t0x6D69\n0xAF46\t0x6D8C\n0xAF47\t0x6D8A\n0xAF48\t0x6D79\n0xAF49\t0x6D85\n0xAF4A\t0x6D65\n0xAF4B\t0x6D94\n0xAF4C\t0x70CA\n0xAF4D\t0x70D8\n0xAF4E\t0x70E4\n0xAF4F\t0x70D9\n0xAF50\t0x70C8\n0xAF51\t0x70CF\n0xAF52\t0x7239\n0xAF53\t0x7279\n0xAF54\t0x72FC\n0xAF55\t0x72F9\n0xAF56\t0x72FD\n0xAF57\t0x72F8\n0xAF58\t0x72F7\n0xAF59\t0x7386\n0xAF5A\t0x73ED\n0xAF5B\t0x7409\n0xAF5C\t0x73EE\n0xAF5D\t0x73E0\n0xAF5E\t0x73EA\n0xAF5F\t0x73DE\n0xAF60\t0x7554\n0xAF61\t0x755D\n0xAF62\t0x755C\n0xAF63\t0x755A\n0xAF64\t0x7559\n0xAF65\t0x75BE\n0xAF66\t0x75C5\n0xAF67\t0x75C7\n0xAF68\t0x75B2\n0xAF69\t0x75B3\n0xAF6A\t0x75BD\n0xAF6B\t0x75BC\n0xAF6C\t0x75B9\n0xAF6D\t0x75C2\n0xAF6E\t0x75B8\n0xAF6F\t0x768B\n0xAF70\t0x76B0\n0xAF71\t0x76CA\n0xAF72\t0x76CD\n0xAF73\t0x76CE\n0xAF74\t0x7729\n0xAF75\t0x771F\n0xAF76\t0x7720\n0xAF77\t0x7728\n0xAF78\t0x77E9\n0xAF79\t0x7830\n0xAF7A\t0x7827\n0xAF7B\t0x7838\n0xAF7C\t0x781D\n0xAF7D\t0x7834\n0xAF7E\t0x7837\n0xAFA1\t0x7825\n0xAFA2\t0x782D\n0xAFA3\t0x7820\n0xAFA4\t0x781F\n0xAFA5\t0x7832\n0xAFA6\t0x7955\n0xAFA7\t0x7950\n0xAFA8\t0x7960\n0xAFA9\t0x795F\n0xAFAA\t0x7956\n0xAFAB\t0x795E\n0xAFAC\t0x795D\n0xAFAD\t0x7957\n0xAFAE\t0x795A\n0xAFAF\t0x79E4\n0xAFB0\t0x79E3\n0xAFB1\t0x79E7\n0xAFB2\t0x79DF\n0xAFB3\t0x79E6\n0xAFB4\t0x79E9\n0xAFB5\t0x79D8\n0xAFB6\t0x7A84\n0xAFB7\t0x7A88\n0xAFB8\t0x7AD9\n0xAFB9\t0x7B06\n0xAFBA\t0x7B11\n0xAFBB\t0x7C89\n0xAFBC\t0x7D21\n0xAFBD\t0x7D17\n0xAFBE\t0x7D0B\n0xAFBF\t0x7D0A\n0xAFC0\t0x7D20\n0xAFC1\t0x7D22\n0xAFC2\t0x7D14\n0xAFC3\t0x7D10\n0xAFC4\t0x7D15\n0xAFC5\t0x7D1A\n0xAFC6\t0x7D1C\n0xAFC7\t0x7D0D\n0xAFC8\t0x7D19\n0xAFC9\t0x7D1B\n0xAFCA\t0x7F3A\n0xAFCB\t0x7F5F\n0xAFCC\t0x7F94\n0xAFCD\t0x7FC5\n0xAFCE\t0x7FC1\n0xAFCF\t0x8006\n0xAFD0\t0x8018\n0xAFD1\t0x8015\n0xAFD2\t0x8019\n0xAFD3\t0x8017\n0xAFD4\t0x803D\n0xAFD5\t0x803F\n0xAFD6\t0x80F1\n0xAFD7\t0x8102\n0xAFD8\t0x80F0\n0xAFD9\t0x8105\n0xAFDA\t0x80ED\n0xAFDB\t0x80F4\n0xAFDC\t0x8106\n0xAFDD\t0x80F8\n0xAFDE\t0x80F3\n0xAFDF\t0x8108\n0xAFE0\t0x80FD\n0xAFE1\t0x810A\n0xAFE2\t0x80FC\n0xAFE3\t0x80EF\n0xAFE4\t0x81ED\n0xAFE5\t0x81EC\n0xAFE6\t0x8200\n0xAFE7\t0x8210\n0xAFE8\t0x822A\n0xAFE9\t0x822B\n0xAFEA\t0x8228\n0xAFEB\t0x822C\n0xAFEC\t0x82BB\n0xAFED\t0x832B\n0xAFEE\t0x8352\n0xAFEF\t0x8354\n0xAFF0\t0x834A\n0xAFF1\t0x8338\n0xAFF2\t0x8350\n0xAFF3\t0x8349\n0xAFF4\t0x8335\n0xAFF5\t0x8334\n0xAFF6\t0x834F\n0xAFF7\t0x8332\n0xAFF8\t0x8339\n0xAFF9\t0x8336\n0xAFFA\t0x8317\n0xAFFB\t0x8340\n0xAFFC\t0x8331\n0xAFFD\t0x8328\n0xAFFE\t0x8343\n0xB040\t0x8654\n0xB041\t0x868A\n0xB042\t0x86AA\n0xB043\t0x8693\n0xB044\t0x86A4\n0xB045\t0x86A9\n0xB046\t0x868C\n0xB047\t0x86A3\n0xB048\t0x869C\n0xB049\t0x8870\n0xB04A\t0x8877\n0xB04B\t0x8881\n0xB04C\t0x8882\n0xB04D\t0x887D\n0xB04E\t0x8879\n0xB04F\t0x8A18\n0xB050\t0x8A10\n0xB051\t0x8A0E\n0xB052\t0x8A0C\n0xB053\t0x8A15\n0xB054\t0x8A0A\n0xB055\t0x8A17\n0xB056\t0x8A13\n0xB057\t0x8A16\n0xB058\t0x8A0F\n0xB059\t0x8A11\n0xB05A\t0x8C48\n0xB05B\t0x8C7A\n0xB05C\t0x8C79\n0xB05D\t0x8CA1\n0xB05E\t0x8CA2\n0xB05F\t0x8D77\n0xB060\t0x8EAC\n0xB061\t0x8ED2\n0xB062\t0x8ED4\n0xB063\t0x8ECF\n0xB064\t0x8FB1\n0xB065\t0x9001\n0xB066\t0x9006\n0xB067\t0x8FF7\n0xB068\t0x9000\n0xB069\t0x8FFA\n0xB06A\t0x8FF4\n0xB06B\t0x9003\n0xB06C\t0x8FFD\n0xB06D\t0x9005\n0xB06E\t0x8FF8\n0xB06F\t0x9095\n0xB070\t0x90E1\n0xB071\t0x90DD\n0xB072\t0x90E2\n0xB073\t0x9152\n0xB074\t0x914D\n0xB075\t0x914C\n0xB076\t0x91D8\n0xB077\t0x91DD\n0xB078\t0x91D7\n0xB079\t0x91DC\n0xB07A\t0x91D9\n0xB07B\t0x9583\n0xB07C\t0x9662\n0xB07D\t0x9663\n0xB07E\t0x9661\n0xB0A1\t0x965B\n0xB0A2\t0x965D\n0xB0A3\t0x9664\n0xB0A4\t0x9658\n0xB0A5\t0x965E\n0xB0A6\t0x96BB\n0xB0A7\t0x98E2\n0xB0A8\t0x99AC\n0xB0A9\t0x9AA8\n0xB0AA\t0x9AD8\n0xB0AB\t0x9B25\n0xB0AC\t0x9B32\n0xB0AD\t0x9B3C\n0xB0AE\t0x4E7E\n0xB0AF\t0x507A\n0xB0B0\t0x507D\n0xB0B1\t0x505C\n0xB0B2\t0x5047\n0xB0B3\t0x5043\n0xB0B4\t0x504C\n0xB0B5\t0x505A\n0xB0B6\t0x5049\n0xB0B7\t0x5065\n0xB0B8\t0x5076\n0xB0B9\t0x504E\n0xB0BA\t0x5055\n0xB0BB\t0x5075\n0xB0BC\t0x5074\n0xB0BD\t0x5077\n0xB0BE\t0x504F\n0xB0BF\t0x500F\n0xB0C0\t0x506F\n0xB0C1\t0x506D\n0xB0C2\t0x515C\n0xB0C3\t0x5195\n0xB0C4\t0x51F0\n0xB0C5\t0x526A\n0xB0C6\t0x526F\n0xB0C7\t0x52D2\n0xB0C8\t0x52D9\n0xB0C9\t0x52D8\n0xB0CA\t0x52D5\n0xB0CB\t0x5310\n0xB0CC\t0x530F\n0xB0CD\t0x5319\n0xB0CE\t0x533F\n0xB0CF\t0x5340\n0xB0D0\t0x533E\n0xB0D1\t0x53C3\n0xB0D2\t0x66FC\n0xB0D3\t0x5546\n0xB0D4\t0x556A\n0xB0D5\t0x5566\n0xB0D6\t0x5544\n0xB0D7\t0x555E\n0xB0D8\t0x5561\n0xB0D9\t0x5543\n0xB0DA\t0x554A\n0xB0DB\t0x5531\n0xB0DC\t0x5556\n0xB0DD\t0x554F\n0xB0DE\t0x5555\n0xB0DF\t0x552F\n0xB0E0\t0x5564\n0xB0E1\t0x5538\n0xB0E2\t0x552E\n0xB0E3\t0x555C\n0xB0E4\t0x552C\n0xB0E5\t0x5563\n0xB0E6\t0x5533\n0xB0E7\t0x5541\n0xB0E8\t0x5557\n0xB0E9\t0x5708\n0xB0EA\t0x570B\n0xB0EB\t0x5709\n0xB0EC\t0x57DF\n0xB0ED\t0x5805\n0xB0EE\t0x580A\n0xB0EF\t0x5806\n0xB0F0\t0x57E0\n0xB0F1\t0x57E4\n0xB0F2\t0x57FA\n0xB0F3\t0x5802\n0xB0F4\t0x5835\n0xB0F5\t0x57F7\n0xB0F6\t0x57F9\n0xB0F7\t0x5920\n0xB0F8\t0x5962\n0xB0F9\t0x5A36\n0xB0FA\t0x5A41\n0xB0FB\t0x5A49\n0xB0FC\t0x5A66\n0xB0FD\t0x5A6A\n0xB0FE\t0x5A40\n0xB140\t0x5A3C\n0xB141\t0x5A62\n0xB142\t0x5A5A\n0xB143\t0x5A46\n0xB144\t0x5A4A\n0xB145\t0x5B70\n0xB146\t0x5BC7\n0xB147\t0x5BC5\n0xB148\t0x5BC4\n0xB149\t0x5BC2\n0xB14A\t0x5BBF\n0xB14B\t0x5BC6\n0xB14C\t0x5C09\n0xB14D\t0x5C08\n0xB14E\t0x5C07\n0xB14F\t0x5C60\n0xB150\t0x5C5C\n0xB151\t0x5C5D\n0xB152\t0x5D07\n0xB153\t0x5D06\n0xB154\t0x5D0E\n0xB155\t0x5D1B\n0xB156\t0x5D16\n0xB157\t0x5D22\n0xB158\t0x5D11\n0xB159\t0x5D29\n0xB15A\t0x5D14\n0xB15B\t0x5D19\n0xB15C\t0x5D24\n0xB15D\t0x5D27\n0xB15E\t0x5D17\n0xB15F\t0x5DE2\n0xB160\t0x5E38\n0xB161\t0x5E36\n0xB162\t0x5E33\n0xB163\t0x5E37\n0xB164\t0x5EB7\n0xB165\t0x5EB8\n0xB166\t0x5EB6\n0xB167\t0x5EB5\n0xB168\t0x5EBE\n0xB169\t0x5F35\n0xB16A\t0x5F37\n0xB16B\t0x5F57\n0xB16C\t0x5F6C\n0xB16D\t0x5F69\n0xB16E\t0x5F6B\n0xB16F\t0x5F97\n0xB170\t0x5F99\n0xB171\t0x5F9E\n0xB172\t0x5F98\n0xB173\t0x5FA1\n0xB174\t0x5FA0\n0xB175\t0x5F9C\n0xB176\t0x607F\n0xB177\t0x60A3\n0xB178\t0x6089\n0xB179\t0x60A0\n0xB17A\t0x60A8\n0xB17B\t0x60CB\n0xB17C\t0x60B4\n0xB17D\t0x60E6\n0xB17E\t0x60BD\n0xB1A1\t0x60C5\n0xB1A2\t0x60BB\n0xB1A3\t0x60B5\n0xB1A4\t0x60DC\n0xB1A5\t0x60BC\n0xB1A6\t0x60D8\n0xB1A7\t0x60D5\n0xB1A8\t0x60C6\n0xB1A9\t0x60DF\n0xB1AA\t0x60B8\n0xB1AB\t0x60DA\n0xB1AC\t0x60C7\n0xB1AD\t0x621A\n0xB1AE\t0x621B\n0xB1AF\t0x6248\n0xB1B0\t0x63A0\n0xB1B1\t0x63A7\n0xB1B2\t0x6372\n0xB1B3\t0x6396\n0xB1B4\t0x63A2\n0xB1B5\t0x63A5\n0xB1B6\t0x6377\n0xB1B7\t0x6367\n0xB1B8\t0x6398\n0xB1B9\t0x63AA\n0xB1BA\t0x6371\n0xB1BB\t0x63A9\n0xB1BC\t0x6389\n0xB1BD\t0x6383\n0xB1BE\t0x639B\n0xB1BF\t0x636B\n0xB1C0\t0x63A8\n0xB1C1\t0x6384\n0xB1C2\t0x6388\n0xB1C3\t0x6399\n0xB1C4\t0x63A1\n0xB1C5\t0x63AC\n0xB1C6\t0x6392\n0xB1C7\t0x638F\n0xB1C8\t0x6380\n0xB1C9\t0x637B\n0xB1CA\t0x6369\n0xB1CB\t0x6368\n0xB1CC\t0x637A\n0xB1CD\t0x655D\n0xB1CE\t0x6556\n0xB1CF\t0x6551\n0xB1D0\t0x6559\n0xB1D1\t0x6557\n0xB1D2\t0x555F\n0xB1D3\t0x654F\n0xB1D4\t0x6558\n0xB1D5\t0x6555\n0xB1D6\t0x6554\n0xB1D7\t0x659C\n0xB1D8\t0x659B\n0xB1D9\t0x65AC\n0xB1DA\t0x65CF\n0xB1DB\t0x65CB\n0xB1DC\t0x65CC\n0xB1DD\t0x65CE\n0xB1DE\t0x665D\n0xB1DF\t0x665A\n0xB1E0\t0x6664\n0xB1E1\t0x6668\n0xB1E2\t0x6666\n0xB1E3\t0x665E\n0xB1E4\t0x66F9\n0xB1E5\t0x52D7\n0xB1E6\t0x671B\n0xB1E7\t0x6881\n0xB1E8\t0x68AF\n0xB1E9\t0x68A2\n0xB1EA\t0x6893\n0xB1EB\t0x68B5\n0xB1EC\t0x687F\n0xB1ED\t0x6876\n0xB1EE\t0x68B1\n0xB1EF\t0x68A7\n0xB1F0\t0x6897\n0xB1F1\t0x68B0\n0xB1F2\t0x6883\n0xB1F3\t0x68C4\n0xB1F4\t0x68AD\n0xB1F5\t0x6886\n0xB1F6\t0x6885\n0xB1F7\t0x6894\n0xB1F8\t0x689D\n0xB1F9\t0x68A8\n0xB1FA\t0x689F\n0xB1FB\t0x68A1\n0xB1FC\t0x6882\n0xB1FD\t0x6B32\n0xB1FE\t0x6BBA\n0xB240\t0x6BEB\n0xB241\t0x6BEC\n0xB242\t0x6C2B\n0xB243\t0x6D8E\n0xB244\t0x6DBC\n0xB245\t0x6DF3\n0xB246\t0x6DD9\n0xB247\t0x6DB2\n0xB248\t0x6DE1\n0xB249\t0x6DCC\n0xB24A\t0x6DE4\n0xB24B\t0x6DFB\n0xB24C\t0x6DFA\n0xB24D\t0x6E05\n0xB24E\t0x6DC7\n0xB24F\t0x6DCB\n0xB250\t0x6DAF\n0xB251\t0x6DD1\n0xB252\t0x6DAE\n0xB253\t0x6DDE\n0xB254\t0x6DF9\n0xB255\t0x6DB8\n0xB256\t0x6DF7\n0xB257\t0x6DF5\n0xB258\t0x6DC5\n0xB259\t0x6DD2\n0xB25A\t0x6E1A\n0xB25B\t0x6DB5\n0xB25C\t0x6DDA\n0xB25D\t0x6DEB\n0xB25E\t0x6DD8\n0xB25F\t0x6DEA\n0xB260\t0x6DF1\n0xB261\t0x6DEE\n0xB262\t0x6DE8\n0xB263\t0x6DC6\n0xB264\t0x6DC4\n0xB265\t0x6DAA\n0xB266\t0x6DEC\n0xB267\t0x6DBF\n0xB268\t0x6DE6\n0xB269\t0x70F9\n0xB26A\t0x7109\n0xB26B\t0x710A\n0xB26C\t0x70FD\n0xB26D\t0x70EF\n0xB26E\t0x723D\n0xB26F\t0x727D\n0xB270\t0x7281\n0xB271\t0x731C\n0xB272\t0x731B\n0xB273\t0x7316\n0xB274\t0x7313\n0xB275\t0x7319\n0xB276\t0x7387\n0xB277\t0x7405\n0xB278\t0x740A\n0xB279\t0x7403\n0xB27A\t0x7406\n0xB27B\t0x73FE\n0xB27C\t0x740D\n0xB27D\t0x74E0\n0xB27E\t0x74F6\n0xB2A1\t0x74F7\n0xB2A2\t0x751C\n0xB2A3\t0x7522\n0xB2A4\t0x7565\n0xB2A5\t0x7566\n0xB2A6\t0x7562\n0xB2A7\t0x7570\n0xB2A8\t0x758F\n0xB2A9\t0x75D4\n0xB2AA\t0x75D5\n0xB2AB\t0x75B5\n0xB2AC\t0x75CA\n0xB2AD\t0x75CD\n0xB2AE\t0x768E\n0xB2AF\t0x76D4\n0xB2B0\t0x76D2\n0xB2B1\t0x76DB\n0xB2B2\t0x7737\n0xB2B3\t0x773E\n0xB2B4\t0x773C\n0xB2B5\t0x7736\n0xB2B6\t0x7738\n0xB2B7\t0x773A\n0xB2B8\t0x786B\n0xB2B9\t0x7843\n0xB2BA\t0x784E\n0xB2BB\t0x7965\n0xB2BC\t0x7968\n0xB2BD\t0x796D\n0xB2BE\t0x79FB\n0xB2BF\t0x7A92\n0xB2C0\t0x7A95\n0xB2C1\t0x7B20\n0xB2C2\t0x7B28\n0xB2C3\t0x7B1B\n0xB2C4\t0x7B2C\n0xB2C5\t0x7B26\n0xB2C6\t0x7B19\n0xB2C7\t0x7B1E\n0xB2C8\t0x7B2E\n0xB2C9\t0x7C92\n0xB2CA\t0x7C97\n0xB2CB\t0x7C95\n0xB2CC\t0x7D46\n0xB2CD\t0x7D43\n0xB2CE\t0x7D71\n0xB2CF\t0x7D2E\n0xB2D0\t0x7D39\n0xB2D1\t0x7D3C\n0xB2D2\t0x7D40\n0xB2D3\t0x7D30\n0xB2D4\t0x7D33\n0xB2D5\t0x7D44\n0xB2D6\t0x7D2F\n0xB2D7\t0x7D42\n0xB2D8\t0x7D32\n0xB2D9\t0x7D31\n0xB2DA\t0x7F3D\n0xB2DB\t0x7F9E\n0xB2DC\t0x7F9A\n0xB2DD\t0x7FCC\n0xB2DE\t0x7FCE\n0xB2DF\t0x7FD2\n0xB2E0\t0x801C\n0xB2E1\t0x804A\n0xB2E2\t0x8046\n0xB2E3\t0x812F\n0xB2E4\t0x8116\n0xB2E5\t0x8123\n0xB2E6\t0x812B\n0xB2E7\t0x8129\n0xB2E8\t0x8130\n0xB2E9\t0x8124\n0xB2EA\t0x8202\n0xB2EB\t0x8235\n0xB2EC\t0x8237\n0xB2ED\t0x8236\n0xB2EE\t0x8239\n0xB2EF\t0x838E\n0xB2F0\t0x839E\n0xB2F1\t0x8398\n0xB2F2\t0x8378\n0xB2F3\t0x83A2\n0xB2F4\t0x8396\n0xB2F5\t0x83BD\n0xB2F6\t0x83AB\n0xB2F7\t0x8392\n0xB2F8\t0x838A\n0xB2F9\t0x8393\n0xB2FA\t0x8389\n0xB2FB\t0x83A0\n0xB2FC\t0x8377\n0xB2FD\t0x837B\n0xB2FE\t0x837C\n0xB340\t0x8386\n0xB341\t0x83A7\n0xB342\t0x8655\n0xB343\t0x5F6A\n0xB344\t0x86C7\n0xB345\t0x86C0\n0xB346\t0x86B6\n0xB347\t0x86C4\n0xB348\t0x86B5\n0xB349\t0x86C6\n0xB34A\t0x86CB\n0xB34B\t0x86B1\n0xB34C\t0x86AF\n0xB34D\t0x86C9\n0xB34E\t0x8853\n0xB34F\t0x889E\n0xB350\t0x8888\n0xB351\t0x88AB\n0xB352\t0x8892\n0xB353\t0x8896\n0xB354\t0x888D\n0xB355\t0x888B\n0xB356\t0x8993\n0xB357\t0x898F\n0xB358\t0x8A2A\n0xB359\t0x8A1D\n0xB35A\t0x8A23\n0xB35B\t0x8A25\n0xB35C\t0x8A31\n0xB35D\t0x8A2D\n0xB35E\t0x8A1F\n0xB35F\t0x8A1B\n0xB360\t0x8A22\n0xB361\t0x8C49\n0xB362\t0x8C5A\n0xB363\t0x8CA9\n0xB364\t0x8CAC\n0xB365\t0x8CAB\n0xB366\t0x8CA8\n0xB367\t0x8CAA\n0xB368\t0x8CA7\n0xB369\t0x8D67\n0xB36A\t0x8D66\n0xB36B\t0x8DBE\n0xB36C\t0x8DBA\n0xB36D\t0x8EDB\n0xB36E\t0x8EDF\n0xB36F\t0x9019\n0xB370\t0x900D\n0xB371\t0x901A\n0xB372\t0x9017\n0xB373\t0x9023\n0xB374\t0x901F\n0xB375\t0x901D\n0xB376\t0x9010\n0xB377\t0x9015\n0xB378\t0x901E\n0xB379\t0x9020\n0xB37A\t0x900F\n0xB37B\t0x9022\n0xB37C\t0x9016\n0xB37D\t0x901B\n0xB37E\t0x9014\n0xB3A1\t0x90E8\n0xB3A2\t0x90ED\n0xB3A3\t0x90FD\n0xB3A4\t0x9157\n0xB3A5\t0x91CE\n0xB3A6\t0x91F5\n0xB3A7\t0x91E6\n0xB3A8\t0x91E3\n0xB3A9\t0x91E7\n0xB3AA\t0x91ED\n0xB3AB\t0x91E9\n0xB3AC\t0x9589\n0xB3AD\t0x966A\n0xB3AE\t0x9675\n0xB3AF\t0x9673\n0xB3B0\t0x9678\n0xB3B1\t0x9670\n0xB3B2\t0x9674\n0xB3B3\t0x9676\n0xB3B4\t0x9677\n0xB3B5\t0x966C\n0xB3B6\t0x96C0\n0xB3B7\t0x96EA\n0xB3B8\t0x96E9\n0xB3B9\t0x7AE0\n0xB3BA\t0x7ADF\n0xB3BB\t0x9802\n0xB3BC\t0x9803\n0xB3BD\t0x9B5A\n0xB3BE\t0x9CE5\n0xB3BF\t0x9E75\n0xB3C0\t0x9E7F\n0xB3C1\t0x9EA5\n0xB3C2\t0x9EBB\n0xB3C3\t0x50A2\n0xB3C4\t0x508D\n0xB3C5\t0x5085\n0xB3C6\t0x5099\n0xB3C7\t0x5091\n0xB3C8\t0x5080\n0xB3C9\t0x5096\n0xB3CA\t0x5098\n0xB3CB\t0x509A\n0xB3CC\t0x6700\n0xB3CD\t0x51F1\n0xB3CE\t0x5272\n0xB3CF\t0x5274\n0xB3D0\t0x5275\n0xB3D1\t0x5269\n0xB3D2\t0x52DE\n0xB3D3\t0x52DD\n0xB3D4\t0x52DB\n0xB3D5\t0x535A\n0xB3D6\t0x53A5\n0xB3D7\t0x557B\n0xB3D8\t0x5580\n0xB3D9\t0x55A7\n0xB3DA\t0x557C\n0xB3DB\t0x558A\n0xB3DC\t0x559D\n0xB3DD\t0x5598\n0xB3DE\t0x5582\n0xB3DF\t0x559C\n0xB3E0\t0x55AA\n0xB3E1\t0x5594\n0xB3E2\t0x5587\n0xB3E3\t0x558B\n0xB3E4\t0x5583\n0xB3E5\t0x55B3\n0xB3E6\t0x55AE\n0xB3E7\t0x559F\n0xB3E8\t0x553E\n0xB3E9\t0x55B2\n0xB3EA\t0x559A\n0xB3EB\t0x55BB\n0xB3EC\t0x55AC\n0xB3ED\t0x55B1\n0xB3EE\t0x557E\n0xB3EF\t0x5589\n0xB3F0\t0x55AB\n0xB3F1\t0x5599\n0xB3F2\t0x570D\n0xB3F3\t0x582F\n0xB3F4\t0x582A\n0xB3F5\t0x5834\n0xB3F6\t0x5824\n0xB3F7\t0x5830\n0xB3F8\t0x5831\n0xB3F9\t0x5821\n0xB3FA\t0x581D\n0xB3FB\t0x5820\n0xB3FC\t0x58F9\n0xB3FD\t0x58FA\n0xB3FE\t0x5960\n0xB440\t0x5A77\n0xB441\t0x5A9A\n0xB442\t0x5A7F\n0xB443\t0x5A92\n0xB444\t0x5A9B\n0xB445\t0x5AA7\n0xB446\t0x5B73\n0xB447\t0x5B71\n0xB448\t0x5BD2\n0xB449\t0x5BCC\n0xB44A\t0x5BD3\n0xB44B\t0x5BD0\n0xB44C\t0x5C0A\n0xB44D\t0x5C0B\n0xB44E\t0x5C31\n0xB44F\t0x5D4C\n0xB450\t0x5D50\n0xB451\t0x5D34\n0xB452\t0x5D47\n0xB453\t0x5DFD\n0xB454\t0x5E45\n0xB455\t0x5E3D\n0xB456\t0x5E40\n0xB457\t0x5E43\n0xB458\t0x5E7E\n0xB459\t0x5ECA\n0xB45A\t0x5EC1\n0xB45B\t0x5EC2\n0xB45C\t0x5EC4\n0xB45D\t0x5F3C\n0xB45E\t0x5F6D\n0xB45F\t0x5FA9\n0xB460\t0x5FAA\n0xB461\t0x5FA8\n0xB462\t0x60D1\n0xB463\t0x60E1\n0xB464\t0x60B2\n0xB465\t0x60B6\n0xB466\t0x60E0\n0xB467\t0x611C\n0xB468\t0x6123\n0xB469\t0x60FA\n0xB46A\t0x6115\n0xB46B\t0x60F0\n0xB46C\t0x60FB\n0xB46D\t0x60F4\n0xB46E\t0x6168\n0xB46F\t0x60F1\n0xB470\t0x610E\n0xB471\t0x60F6\n0xB472\t0x6109\n0xB473\t0x6100\n0xB474\t0x6112\n0xB475\t0x621F\n0xB476\t0x6249\n0xB477\t0x63A3\n0xB478\t0x638C\n0xB479\t0x63CF\n0xB47A\t0x63C0\n0xB47B\t0x63E9\n0xB47C\t0x63C9\n0xB47D\t0x63C6\n0xB47E\t0x63CD\n0xB4A1\t0x63D2\n0xB4A2\t0x63E3\n0xB4A3\t0x63D0\n0xB4A4\t0x63E1\n0xB4A5\t0x63D6\n0xB4A6\t0x63ED\n0xB4A7\t0x63EE\n0xB4A8\t0x6376\n0xB4A9\t0x63F4\n0xB4AA\t0x63EA\n0xB4AB\t0x63DB\n0xB4AC\t0x6452\n0xB4AD\t0x63DA\n0xB4AE\t0x63F9\n0xB4AF\t0x655E\n0xB4B0\t0x6566\n0xB4B1\t0x6562\n0xB4B2\t0x6563\n0xB4B3\t0x6591\n0xB4B4\t0x6590\n0xB4B5\t0x65AF\n0xB4B6\t0x666E\n0xB4B7\t0x6670\n0xB4B8\t0x6674\n0xB4B9\t0x6676\n0xB4BA\t0x666F\n0xB4BB\t0x6691\n0xB4BC\t0x667A\n0xB4BD\t0x667E\n0xB4BE\t0x6677\n0xB4BF\t0x66FE\n0xB4C0\t0x66FF\n0xB4C1\t0x671F\n0xB4C2\t0x671D\n0xB4C3\t0x68FA\n0xB4C4\t0x68D5\n0xB4C5\t0x68E0\n0xB4C6\t0x68D8\n0xB4C7\t0x68D7\n0xB4C8\t0x6905\n0xB4C9\t0x68DF\n0xB4CA\t0x68F5\n0xB4CB\t0x68EE\n0xB4CC\t0x68E7\n0xB4CD\t0x68F9\n0xB4CE\t0x68D2\n0xB4CF\t0x68F2\n0xB4D0\t0x68E3\n0xB4D1\t0x68CB\n0xB4D2\t0x68CD\n0xB4D3\t0x690D\n0xB4D4\t0x6912\n0xB4D5\t0x690E\n0xB4D6\t0x68C9\n0xB4D7\t0x68DA\n0xB4D8\t0x696E\n0xB4D9\t0x68FB\n0xB4DA\t0x6B3E\n0xB4DB\t0x6B3A\n0xB4DC\t0x6B3D\n0xB4DD\t0x6B98\n0xB4DE\t0x6B96\n0xB4DF\t0x6BBC\n0xB4E0\t0x6BEF\n0xB4E1\t0x6C2E\n0xB4E2\t0x6C2F\n0xB4E3\t0x6C2C\n0xB4E4\t0x6E2F\n0xB4E5\t0x6E38\n0xB4E6\t0x6E54\n0xB4E7\t0x6E21\n0xB4E8\t0x6E32\n0xB4E9\t0x6E67\n0xB4EA\t0x6E4A\n0xB4EB\t0x6E20\n0xB4EC\t0x6E25\n0xB4ED\t0x6E23\n0xB4EE\t0x6E1B\n0xB4EF\t0x6E5B\n0xB4F0\t0x6E58\n0xB4F1\t0x6E24\n0xB4F2\t0x6E56\n0xB4F3\t0x6E6E\n0xB4F4\t0x6E2D\n0xB4F5\t0x6E26\n0xB4F6\t0x6E6F\n0xB4F7\t0x6E34\n0xB4F8\t0x6E4D\n0xB4F9\t0x6E3A\n0xB4FA\t0x6E2C\n0xB4FB\t0x6E43\n0xB4FC\t0x6E1D\n0xB4FD\t0x6E3E\n0xB4FE\t0x6ECB\n0xB540\t0x6E89\n0xB541\t0x6E19\n0xB542\t0x6E4E\n0xB543\t0x6E63\n0xB544\t0x6E44\n0xB545\t0x6E72\n0xB546\t0x6E69\n0xB547\t0x6E5F\n0xB548\t0x7119\n0xB549\t0x711A\n0xB54A\t0x7126\n0xB54B\t0x7130\n0xB54C\t0x7121\n0xB54D\t0x7136\n0xB54E\t0x716E\n0xB54F\t0x711C\n0xB550\t0x724C\n0xB551\t0x7284\n0xB552\t0x7280\n0xB553\t0x7336\n0xB554\t0x7325\n0xB555\t0x7334\n0xB556\t0x7329\n0xB557\t0x743A\n0xB558\t0x742A\n0xB559\t0x7433\n0xB55A\t0x7422\n0xB55B\t0x7425\n0xB55C\t0x7435\n0xB55D\t0x7436\n0xB55E\t0x7434\n0xB55F\t0x742F\n0xB560\t0x741B\n0xB561\t0x7426\n0xB562\t0x7428\n0xB563\t0x7525\n0xB564\t0x7526\n0xB565\t0x756B\n0xB566\t0x756A\n0xB567\t0x75E2\n0xB568\t0x75DB\n0xB569\t0x75E3\n0xB56A\t0x75D9\n0xB56B\t0x75D8\n0xB56C\t0x75DE\n0xB56D\t0x75E0\n0xB56E\t0x767B\n0xB56F\t0x767C\n0xB570\t0x7696\n0xB571\t0x7693\n0xB572\t0x76B4\n0xB573\t0x76DC\n0xB574\t0x774F\n0xB575\t0x77ED\n0xB576\t0x785D\n0xB577\t0x786C\n0xB578\t0x786F\n0xB579\t0x7A0D\n0xB57A\t0x7A08\n0xB57B\t0x7A0B\n0xB57C\t0x7A05\n0xB57D\t0x7A00\n0xB57E\t0x7A98\n0xB5A1\t0x7A97\n0xB5A2\t0x7A96\n0xB5A3\t0x7AE5\n0xB5A4\t0x7AE3\n0xB5A5\t0x7B49\n0xB5A6\t0x7B56\n0xB5A7\t0x7B46\n0xB5A8\t0x7B50\n0xB5A9\t0x7B52\n0xB5AA\t0x7B54\n0xB5AB\t0x7B4D\n0xB5AC\t0x7B4B\n0xB5AD\t0x7B4F\n0xB5AE\t0x7B51\n0xB5AF\t0x7C9F\n0xB5B0\t0x7CA5\n0xB5B1\t0x7D5E\n0xB5B2\t0x7D50\n0xB5B3\t0x7D68\n0xB5B4\t0x7D55\n0xB5B5\t0x7D2B\n0xB5B6\t0x7D6E\n0xB5B7\t0x7D72\n0xB5B8\t0x7D61\n0xB5B9\t0x7D66\n0xB5BA\t0x7D62\n0xB5BB\t0x7D70\n0xB5BC\t0x7D73\n0xB5BD\t0x5584\n0xB5BE\t0x7FD4\n0xB5BF\t0x7FD5\n0xB5C0\t0x800B\n0xB5C1\t0x8052\n0xB5C2\t0x8085\n0xB5C3\t0x8155\n0xB5C4\t0x8154\n0xB5C5\t0x814B\n0xB5C6\t0x8151\n0xB5C7\t0x814E\n0xB5C8\t0x8139\n0xB5C9\t0x8146\n0xB5CA\t0x813E\n0xB5CB\t0x814C\n0xB5CC\t0x8153\n0xB5CD\t0x8174\n0xB5CE\t0x8212\n0xB5CF\t0x821C\n0xB5D0\t0x83E9\n0xB5D1\t0x8403\n0xB5D2\t0x83F8\n0xB5D3\t0x840D\n0xB5D4\t0x83E0\n0xB5D5\t0x83C5\n0xB5D6\t0x840B\n0xB5D7\t0x83C1\n0xB5D8\t0x83EF\n0xB5D9\t0x83F1\n0xB5DA\t0x83F4\n0xB5DB\t0x8457\n0xB5DC\t0x840A\n0xB5DD\t0x83F0\n0xB5DE\t0x840C\n0xB5DF\t0x83CC\n0xB5E0\t0x83FD\n0xB5E1\t0x83F2\n0xB5E2\t0x83CA\n0xB5E3\t0x8438\n0xB5E4\t0x840E\n0xB5E5\t0x8404\n0xB5E6\t0x83DC\n0xB5E7\t0x8407\n0xB5E8\t0x83D4\n0xB5E9\t0x83DF\n0xB5EA\t0x865B\n0xB5EB\t0x86DF\n0xB5EC\t0x86D9\n0xB5ED\t0x86ED\n0xB5EE\t0x86D4\n0xB5EF\t0x86DB\n0xB5F0\t0x86E4\n0xB5F1\t0x86D0\n0xB5F2\t0x86DE\n0xB5F3\t0x8857\n0xB5F4\t0x88C1\n0xB5F5\t0x88C2\n0xB5F6\t0x88B1\n0xB5F7\t0x8983\n0xB5F8\t0x8996\n0xB5F9\t0x8A3B\n0xB5FA\t0x8A60\n0xB5FB\t0x8A55\n0xB5FC\t0x8A5E\n0xB5FD\t0x8A3C\n0xB5FE\t0x8A41\n0xB640\t0x8A54\n0xB641\t0x8A5B\n0xB642\t0x8A50\n0xB643\t0x8A46\n0xB644\t0x8A34\n0xB645\t0x8A3A\n0xB646\t0x8A36\n0xB647\t0x8A56\n0xB648\t0x8C61\n0xB649\t0x8C82\n0xB64A\t0x8CAF\n0xB64B\t0x8CBC\n0xB64C\t0x8CB3\n0xB64D\t0x8CBD\n0xB64E\t0x8CC1\n0xB64F\t0x8CBB\n0xB650\t0x8CC0\n0xB651\t0x8CB4\n0xB652\t0x8CB7\n0xB653\t0x8CB6\n0xB654\t0x8CBF\n0xB655\t0x8CB8\n0xB656\t0x8D8A\n0xB657\t0x8D85\n0xB658\t0x8D81\n0xB659\t0x8DCE\n0xB65A\t0x8DDD\n0xB65B\t0x8DCB\n0xB65C\t0x8DDA\n0xB65D\t0x8DD1\n0xB65E\t0x8DCC\n0xB65F\t0x8DDB\n0xB660\t0x8DC6\n0xB661\t0x8EFB\n0xB662\t0x8EF8\n0xB663\t0x8EFC\n0xB664\t0x8F9C\n0xB665\t0x902E\n0xB666\t0x9035\n0xB667\t0x9031\n0xB668\t0x9038\n0xB669\t0x9032\n0xB66A\t0x9036\n0xB66B\t0x9102\n0xB66C\t0x90F5\n0xB66D\t0x9109\n0xB66E\t0x90FE\n0xB66F\t0x9163\n0xB670\t0x9165\n0xB671\t0x91CF\n0xB672\t0x9214\n0xB673\t0x9215\n0xB674\t0x9223\n0xB675\t0x9209\n0xB676\t0x921E\n0xB677\t0x920D\n0xB678\t0x9210\n0xB679\t0x9207\n0xB67A\t0x9211\n0xB67B\t0x9594\n0xB67C\t0x958F\n0xB67D\t0x958B\n0xB67E\t0x9591\n0xB6A1\t0x9593\n0xB6A2\t0x9592\n0xB6A3\t0x958E\n0xB6A4\t0x968A\n0xB6A5\t0x968E\n0xB6A6\t0x968B\n0xB6A7\t0x967D\n0xB6A8\t0x9685\n0xB6A9\t0x9686\n0xB6AA\t0x968D\n0xB6AB\t0x9672\n0xB6AC\t0x9684\n0xB6AD\t0x96C1\n0xB6AE\t0x96C5\n0xB6AF\t0x96C4\n0xB6B0\t0x96C6\n0xB6B1\t0x96C7\n0xB6B2\t0x96EF\n0xB6B3\t0x96F2\n0xB6B4\t0x97CC\n0xB6B5\t0x9805\n0xB6B6\t0x9806\n0xB6B7\t0x9808\n0xB6B8\t0x98E7\n0xB6B9\t0x98EA\n0xB6BA\t0x98EF\n0xB6BB\t0x98E9\n0xB6BC\t0x98F2\n0xB6BD\t0x98ED\n0xB6BE\t0x99AE\n0xB6BF\t0x99AD\n0xB6C0\t0x9EC3\n0xB6C1\t0x9ECD\n0xB6C2\t0x9ED1\n0xB6C3\t0x4E82\n0xB6C4\t0x50AD\n0xB6C5\t0x50B5\n0xB6C6\t0x50B2\n0xB6C7\t0x50B3\n0xB6C8\t0x50C5\n0xB6C9\t0x50BE\n0xB6CA\t0x50AC\n0xB6CB\t0x50B7\n0xB6CC\t0x50BB\n0xB6CD\t0x50AF\n0xB6CE\t0x50C7\n0xB6CF\t0x527F\n0xB6D0\t0x5277\n0xB6D1\t0x527D\n0xB6D2\t0x52DF\n0xB6D3\t0x52E6\n0xB6D4\t0x52E4\n0xB6D5\t0x52E2\n0xB6D6\t0x52E3\n0xB6D7\t0x532F\n0xB6D8\t0x55DF\n0xB6D9\t0x55E8\n0xB6DA\t0x55D3\n0xB6DB\t0x55E6\n0xB6DC\t0x55CE\n0xB6DD\t0x55DC\n0xB6DE\t0x55C7\n0xB6DF\t0x55D1\n0xB6E0\t0x55E3\n0xB6E1\t0x55E4\n0xB6E2\t0x55EF\n0xB6E3\t0x55DA\n0xB6E4\t0x55E1\n0xB6E5\t0x55C5\n0xB6E6\t0x55C6\n0xB6E7\t0x55E5\n0xB6E8\t0x55C9\n0xB6E9\t0x5712\n0xB6EA\t0x5713\n0xB6EB\t0x585E\n0xB6EC\t0x5851\n0xB6ED\t0x5858\n0xB6EE\t0x5857\n0xB6EF\t0x585A\n0xB6F0\t0x5854\n0xB6F1\t0x586B\n0xB6F2\t0x584C\n0xB6F3\t0x586D\n0xB6F4\t0x584A\n0xB6F5\t0x5862\n0xB6F6\t0x5852\n0xB6F7\t0x584B\n0xB6F8\t0x5967\n0xB6F9\t0x5AC1\n0xB6FA\t0x5AC9\n0xB6FB\t0x5ACC\n0xB6FC\t0x5ABE\n0xB6FD\t0x5ABD\n0xB6FE\t0x5ABC\n0xB740\t0x5AB3\n0xB741\t0x5AC2\n0xB742\t0x5AB2\n0xB743\t0x5D69\n0xB744\t0x5D6F\n0xB745\t0x5E4C\n0xB746\t0x5E79\n0xB747\t0x5EC9\n0xB748\t0x5EC8\n0xB749\t0x5F12\n0xB74A\t0x5F59\n0xB74B\t0x5FAC\n0xB74C\t0x5FAE\n0xB74D\t0x611A\n0xB74E\t0x610F\n0xB74F\t0x6148\n0xB750\t0x611F\n0xB751\t0x60F3\n0xB752\t0x611B\n0xB753\t0x60F9\n0xB754\t0x6101\n0xB755\t0x6108\n0xB756\t0x614E\n0xB757\t0x614C\n0xB758\t0x6144\n0xB759\t0x614D\n0xB75A\t0x613E\n0xB75B\t0x6134\n0xB75C\t0x6127\n0xB75D\t0x610D\n0xB75E\t0x6106\n0xB75F\t0x6137\n0xB760\t0x6221\n0xB761\t0x6222\n0xB762\t0x6413\n0xB763\t0x643E\n0xB764\t0x641E\n0xB765\t0x642A\n0xB766\t0x642D\n0xB767\t0x643D\n0xB768\t0x642C\n0xB769\t0x640F\n0xB76A\t0x641C\n0xB76B\t0x6414\n0xB76C\t0x640D\n0xB76D\t0x6436\n0xB76E\t0x6416\n0xB76F\t0x6417\n0xB770\t0x6406\n0xB771\t0x656C\n0xB772\t0x659F\n0xB773\t0x65B0\n0xB774\t0x6697\n0xB775\t0x6689\n0xB776\t0x6687\n0xB777\t0x6688\n0xB778\t0x6696\n0xB779\t0x6684\n0xB77A\t0x6698\n0xB77B\t0x668D\n0xB77C\t0x6703\n0xB77D\t0x6994\n0xB77E\t0x696D\n0xB7A1\t0x695A\n0xB7A2\t0x6977\n0xB7A3\t0x6960\n0xB7A4\t0x6954\n0xB7A5\t0x6975\n0xB7A6\t0x6930\n0xB7A7\t0x6982\n0xB7A8\t0x694A\n0xB7A9\t0x6968\n0xB7AA\t0x696B\n0xB7AB\t0x695E\n0xB7AC\t0x6953\n0xB7AD\t0x6979\n0xB7AE\t0x6986\n0xB7AF\t0x695D\n0xB7B0\t0x6963\n0xB7B1\t0x695B\n0xB7B2\t0x6B47\n0xB7B3\t0x6B72\n0xB7B4\t0x6BC0\n0xB7B5\t0x6BBF\n0xB7B6\t0x6BD3\n0xB7B7\t0x6BFD\n0xB7B8\t0x6EA2\n0xB7B9\t0x6EAF\n0xB7BA\t0x6ED3\n0xB7BB\t0x6EB6\n0xB7BC\t0x6EC2\n0xB7BD\t0x6E90\n0xB7BE\t0x6E9D\n0xB7BF\t0x6EC7\n0xB7C0\t0x6EC5\n0xB7C1\t0x6EA5\n0xB7C2\t0x6E98\n0xB7C3\t0x6EBC\n0xB7C4\t0x6EBA\n0xB7C5\t0x6EAB\n0xB7C6\t0x6ED1\n0xB7C7\t0x6E96\n0xB7C8\t0x6E9C\n0xB7C9\t0x6EC4\n0xB7CA\t0x6ED4\n0xB7CB\t0x6EAA\n0xB7CC\t0x6EA7\n0xB7CD\t0x6EB4\n0xB7CE\t0x714E\n0xB7CF\t0x7159\n0xB7D0\t0x7169\n0xB7D1\t0x7164\n0xB7D2\t0x7149\n0xB7D3\t0x7167\n0xB7D4\t0x715C\n0xB7D5\t0x716C\n0xB7D6\t0x7166\n0xB7D7\t0x714C\n0xB7D8\t0x7165\n0xB7D9\t0x715E\n0xB7DA\t0x7146\n0xB7DB\t0x7168\n0xB7DC\t0x7156\n0xB7DD\t0x723A\n0xB7DE\t0x7252\n0xB7DF\t0x7337\n0xB7E0\t0x7345\n0xB7E1\t0x733F\n0xB7E2\t0x733E\n0xB7E3\t0x746F\n0xB7E4\t0x745A\n0xB7E5\t0x7455\n0xB7E6\t0x745F\n0xB7E7\t0x745E\n0xB7E8\t0x7441\n0xB7E9\t0x743F\n0xB7EA\t0x7459\n0xB7EB\t0x745B\n0xB7EC\t0x745C\n0xB7ED\t0x7576\n0xB7EE\t0x7578\n0xB7EF\t0x7600\n0xB7F0\t0x75F0\n0xB7F1\t0x7601\n0xB7F2\t0x75F2\n0xB7F3\t0x75F1\n0xB7F4\t0x75FA\n0xB7F5\t0x75FF\n0xB7F6\t0x75F4\n0xB7F7\t0x75F3\n0xB7F8\t0x76DE\n0xB7F9\t0x76DF\n0xB7FA\t0x775B\n0xB7FB\t0x776B\n0xB7FC\t0x7766\n0xB7FD\t0x775E\n0xB7FE\t0x7763\n0xB840\t0x7779\n0xB841\t0x776A\n0xB842\t0x776C\n0xB843\t0x775C\n0xB844\t0x7765\n0xB845\t0x7768\n0xB846\t0x7762\n0xB847\t0x77EE\n0xB848\t0x788E\n0xB849\t0x78B0\n0xB84A\t0x7897\n0xB84B\t0x7898\n0xB84C\t0x788C\n0xB84D\t0x7889\n0xB84E\t0x787C\n0xB84F\t0x7891\n0xB850\t0x7893\n0xB851\t0x787F\n0xB852\t0x797A\n0xB853\t0x797F\n0xB854\t0x7981\n0xB855\t0x842C\n0xB856\t0x79BD\n0xB857\t0x7A1C\n0xB858\t0x7A1A\n0xB859\t0x7A20\n0xB85A\t0x7A14\n0xB85B\t0x7A1F\n0xB85C\t0x7A1E\n0xB85D\t0x7A9F\n0xB85E\t0x7AA0\n0xB85F\t0x7B77\n0xB860\t0x7BC0\n0xB861\t0x7B60\n0xB862\t0x7B6E\n0xB863\t0x7B67\n0xB864\t0x7CB1\n0xB865\t0x7CB3\n0xB866\t0x7CB5\n0xB867\t0x7D93\n0xB868\t0x7D79\n0xB869\t0x7D91\n0xB86A\t0x7D81\n0xB86B\t0x7D8F\n0xB86C\t0x7D5B\n0xB86D\t0x7F6E\n0xB86E\t0x7F69\n0xB86F\t0x7F6A\n0xB870\t0x7F72\n0xB871\t0x7FA9\n0xB872\t0x7FA8\n0xB873\t0x7FA4\n0xB874\t0x8056\n0xB875\t0x8058\n0xB876\t0x8086\n0xB877\t0x8084\n0xB878\t0x8171\n0xB879\t0x8170\n0xB87A\t0x8178\n0xB87B\t0x8165\n0xB87C\t0x816E\n0xB87D\t0x8173\n0xB87E\t0x816B\n0xB8A1\t0x8179\n0xB8A2\t0x817A\n0xB8A3\t0x8166\n0xB8A4\t0x8205\n0xB8A5\t0x8247\n0xB8A6\t0x8482\n0xB8A7\t0x8477\n0xB8A8\t0x843D\n0xB8A9\t0x8431\n0xB8AA\t0x8475\n0xB8AB\t0x8466\n0xB8AC\t0x846B\n0xB8AD\t0x8449\n0xB8AE\t0x846C\n0xB8AF\t0x845B\n0xB8B0\t0x843C\n0xB8B1\t0x8435\n0xB8B2\t0x8461\n0xB8B3\t0x8463\n0xB8B4\t0x8469\n0xB8B5\t0x846D\n0xB8B6\t0x8446\n0xB8B7\t0x865E\n0xB8B8\t0x865C\n0xB8B9\t0x865F\n0xB8BA\t0x86F9\n0xB8BB\t0x8713\n0xB8BC\t0x8708\n0xB8BD\t0x8707\n0xB8BE\t0x8700\n0xB8BF\t0x86FE\n0xB8C0\t0x86FB\n0xB8C1\t0x8702\n0xB8C2\t0x8703\n0xB8C3\t0x8706\n0xB8C4\t0x870A\n0xB8C5\t0x8859\n0xB8C6\t0x88DF\n0xB8C7\t0x88D4\n0xB8C8\t0x88D9\n0xB8C9\t0x88DC\n0xB8CA\t0x88D8\n0xB8CB\t0x88DD\n0xB8CC\t0x88E1\n0xB8CD\t0x88CA\n0xB8CE\t0x88D5\n0xB8CF\t0x88D2\n0xB8D0\t0x899C\n0xB8D1\t0x89E3\n0xB8D2\t0x8A6B\n0xB8D3\t0x8A72\n0xB8D4\t0x8A73\n0xB8D5\t0x8A66\n0xB8D6\t0x8A69\n0xB8D7\t0x8A70\n0xB8D8\t0x8A87\n0xB8D9\t0x8A7C\n0xB8DA\t0x8A63\n0xB8DB\t0x8AA0\n0xB8DC\t0x8A71\n0xB8DD\t0x8A85\n0xB8DE\t0x8A6D\n0xB8DF\t0x8A62\n0xB8E0\t0x8A6E\n0xB8E1\t0x8A6C\n0xB8E2\t0x8A79\n0xB8E3\t0x8A7B\n0xB8E4\t0x8A3E\n0xB8E5\t0x8A68\n0xB8E6\t0x8C62\n0xB8E7\t0x8C8A\n0xB8E8\t0x8C89\n0xB8E9\t0x8CCA\n0xB8EA\t0x8CC7\n0xB8EB\t0x8CC8\n0xB8EC\t0x8CC4\n0xB8ED\t0x8CB2\n0xB8EE\t0x8CC3\n0xB8EF\t0x8CC2\n0xB8F0\t0x8CC5\n0xB8F1\t0x8DE1\n0xB8F2\t0x8DDF\n0xB8F3\t0x8DE8\n0xB8F4\t0x8DEF\n0xB8F5\t0x8DF3\n0xB8F6\t0x8DFA\n0xB8F7\t0x8DEA\n0xB8F8\t0x8DE4\n0xB8F9\t0x8DE6\n0xB8FA\t0x8EB2\n0xB8FB\t0x8F03\n0xB8FC\t0x8F09\n0xB8FD\t0x8EFE\n0xB8FE\t0x8F0A\n0xB940\t0x8F9F\n0xB941\t0x8FB2\n0xB942\t0x904B\n0xB943\t0x904A\n0xB944\t0x9053\n0xB945\t0x9042\n0xB946\t0x9054\n0xB947\t0x903C\n0xB948\t0x9055\n0xB949\t0x9050\n0xB94A\t0x9047\n0xB94B\t0x904F\n0xB94C\t0x904E\n0xB94D\t0x904D\n0xB94E\t0x9051\n0xB94F\t0x903E\n0xB950\t0x9041\n0xB951\t0x9112\n0xB952\t0x9117\n0xB953\t0x916C\n0xB954\t0x916A\n0xB955\t0x9169\n0xB956\t0x91C9\n0xB957\t0x9237\n0xB958\t0x9257\n0xB959\t0x9238\n0xB95A\t0x923D\n0xB95B\t0x9240\n0xB95C\t0x923E\n0xB95D\t0x925B\n0xB95E\t0x924B\n0xB95F\t0x9264\n0xB960\t0x9251\n0xB961\t0x9234\n0xB962\t0x9249\n0xB963\t0x924D\n0xB964\t0x9245\n0xB965\t0x9239\n0xB966\t0x923F\n0xB967\t0x925A\n0xB968\t0x9598\n0xB969\t0x9698\n0xB96A\t0x9694\n0xB96B\t0x9695\n0xB96C\t0x96CD\n0xB96D\t0x96CB\n0xB96E\t0x96C9\n0xB96F\t0x96CA\n0xB970\t0x96F7\n0xB971\t0x96FB\n0xB972\t0x96F9\n0xB973\t0x96F6\n0xB974\t0x9756\n0xB975\t0x9774\n0xB976\t0x9776\n0xB977\t0x9810\n0xB978\t0x9811\n0xB979\t0x9813\n0xB97A\t0x980A\n0xB97B\t0x9812\n0xB97C\t0x980C\n0xB97D\t0x98FC\n0xB97E\t0x98F4\n0xB9A1\t0x98FD\n0xB9A2\t0x98FE\n0xB9A3\t0x99B3\n0xB9A4\t0x99B1\n0xB9A5\t0x99B4\n0xB9A6\t0x9AE1\n0xB9A7\t0x9CE9\n0xB9A8\t0x9E82\n0xB9A9\t0x9F0E\n0xB9AA\t0x9F13\n0xB9AB\t0x9F20\n0xB9AC\t0x50E7\n0xB9AD\t0x50EE\n0xB9AE\t0x50E5\n0xB9AF\t0x50D6\n0xB9B0\t0x50ED\n0xB9B1\t0x50DA\n0xB9B2\t0x50D5\n0xB9B3\t0x50CF\n0xB9B4\t0x50D1\n0xB9B5\t0x50F1\n0xB9B6\t0x50CE\n0xB9B7\t0x50E9\n0xB9B8\t0x5162\n0xB9B9\t0x51F3\n0xB9BA\t0x5283\n0xB9BB\t0x5282\n0xB9BC\t0x5331\n0xB9BD\t0x53AD\n0xB9BE\t0x55FE\n0xB9BF\t0x5600\n0xB9C0\t0x561B\n0xB9C1\t0x5617\n0xB9C2\t0x55FD\n0xB9C3\t0x5614\n0xB9C4\t0x5606\n0xB9C5\t0x5609\n0xB9C6\t0x560D\n0xB9C7\t0x560E\n0xB9C8\t0x55F7\n0xB9C9\t0x5616\n0xB9CA\t0x561F\n0xB9CB\t0x5608\n0xB9CC\t0x5610\n0xB9CD\t0x55F6\n0xB9CE\t0x5718\n0xB9CF\t0x5716\n0xB9D0\t0x5875\n0xB9D1\t0x587E\n0xB9D2\t0x5883\n0xB9D3\t0x5893\n0xB9D4\t0x588A\n0xB9D5\t0x5879\n0xB9D6\t0x5885\n0xB9D7\t0x587D\n0xB9D8\t0x58FD\n0xB9D9\t0x5925\n0xB9DA\t0x5922\n0xB9DB\t0x5924\n0xB9DC\t0x596A\n0xB9DD\t0x5969\n0xB9DE\t0x5AE1\n0xB9DF\t0x5AE6\n0xB9E0\t0x5AE9\n0xB9E1\t0x5AD7\n0xB9E2\t0x5AD6\n0xB9E3\t0x5AD8\n0xB9E4\t0x5AE3\n0xB9E5\t0x5B75\n0xB9E6\t0x5BDE\n0xB9E7\t0x5BE7\n0xB9E8\t0x5BE1\n0xB9E9\t0x5BE5\n0xB9EA\t0x5BE6\n0xB9EB\t0x5BE8\n0xB9EC\t0x5BE2\n0xB9ED\t0x5BE4\n0xB9EE\t0x5BDF\n0xB9EF\t0x5C0D\n0xB9F0\t0x5C62\n0xB9F1\t0x5D84\n0xB9F2\t0x5D87\n0xB9F3\t0x5E5B\n0xB9F4\t0x5E63\n0xB9F5\t0x5E55\n0xB9F6\t0x5E57\n0xB9F7\t0x5E54\n0xB9F8\t0x5ED3\n0xB9F9\t0x5ED6\n0xB9FA\t0x5F0A\n0xB9FB\t0x5F46\n0xB9FC\t0x5F70\n0xB9FD\t0x5FB9\n0xB9FE\t0x6147\n0xBA40\t0x613F\n0xBA41\t0x614B\n0xBA42\t0x6177\n0xBA43\t0x6162\n0xBA44\t0x6163\n0xBA45\t0x615F\n0xBA46\t0x615A\n0xBA47\t0x6158\n0xBA48\t0x6175\n0xBA49\t0x622A\n0xBA4A\t0x6487\n0xBA4B\t0x6458\n0xBA4C\t0x6454\n0xBA4D\t0x64A4\n0xBA4E\t0x6478\n0xBA4F\t0x645F\n0xBA50\t0x647A\n0xBA51\t0x6451\n0xBA52\t0x6467\n0xBA53\t0x6434\n0xBA54\t0x646D\n0xBA55\t0x647B\n0xBA56\t0x6572\n0xBA57\t0x65A1\n0xBA58\t0x65D7\n0xBA59\t0x65D6\n0xBA5A\t0x66A2\n0xBA5B\t0x66A8\n0xBA5C\t0x669D\n0xBA5D\t0x699C\n0xBA5E\t0x69A8\n0xBA5F\t0x6995\n0xBA60\t0x69C1\n0xBA61\t0x69AE\n0xBA62\t0x69D3\n0xBA63\t0x69CB\n0xBA64\t0x699B\n0xBA65\t0x69B7\n0xBA66\t0x69BB\n0xBA67\t0x69AB\n0xBA68\t0x69B4\n0xBA69\t0x69D0\n0xBA6A\t0x69CD\n0xBA6B\t0x69AD\n0xBA6C\t0x69CC\n0xBA6D\t0x69A6\n0xBA6E\t0x69C3\n0xBA6F\t0x69A3\n0xBA70\t0x6B49\n0xBA71\t0x6B4C\n0xBA72\t0x6C33\n0xBA73\t0x6F33\n0xBA74\t0x6F14\n0xBA75\t0x6EFE\n0xBA76\t0x6F13\n0xBA77\t0x6EF4\n0xBA78\t0x6F29\n0xBA79\t0x6F3E\n0xBA7A\t0x6F20\n0xBA7B\t0x6F2C\n0xBA7C\t0x6F0F\n0xBA7D\t0x6F02\n0xBA7E\t0x6F22\n0xBAA1\t0x6EFF\n0xBAA2\t0x6EEF\n0xBAA3\t0x6F06\n0xBAA4\t0x6F31\n0xBAA5\t0x6F38\n0xBAA6\t0x6F32\n0xBAA7\t0x6F23\n0xBAA8\t0x6F15\n0xBAA9\t0x6F2B\n0xBAAA\t0x6F2F\n0xBAAB\t0x6F88\n0xBAAC\t0x6F2A\n0xBAAD\t0x6EEC\n0xBAAE\t0x6F01\n0xBAAF\t0x6EF2\n0xBAB0\t0x6ECC\n0xBAB1\t0x6EF7\n0xBAB2\t0x7194\n0xBAB3\t0x7199\n0xBAB4\t0x717D\n0xBAB5\t0x718A\n0xBAB6\t0x7184\n0xBAB7\t0x7192\n0xBAB8\t0x723E\n0xBAB9\t0x7292\n0xBABA\t0x7296\n0xBABB\t0x7344\n0xBABC\t0x7350\n0xBABD\t0x7464\n0xBABE\t0x7463\n0xBABF\t0x746A\n0xBAC0\t0x7470\n0xBAC1\t0x746D\n0xBAC2\t0x7504\n0xBAC3\t0x7591\n0xBAC4\t0x7627\n0xBAC5\t0x760D\n0xBAC6\t0x760B\n0xBAC7\t0x7609\n0xBAC8\t0x7613\n0xBAC9\t0x76E1\n0xBACA\t0x76E3\n0xBACB\t0x7784\n0xBACC\t0x777D\n0xBACD\t0x777F\n0xBACE\t0x7761\n0xBACF\t0x78C1\n0xBAD0\t0x789F\n0xBAD1\t0x78A7\n0xBAD2\t0x78B3\n0xBAD3\t0x78A9\n0xBAD4\t0x78A3\n0xBAD5\t0x798E\n0xBAD6\t0x798F\n0xBAD7\t0x798D\n0xBAD8\t0x7A2E\n0xBAD9\t0x7A31\n0xBADA\t0x7AAA\n0xBADB\t0x7AA9\n0xBADC\t0x7AED\n0xBADD\t0x7AEF\n0xBADE\t0x7BA1\n0xBADF\t0x7B95\n0xBAE0\t0x7B8B\n0xBAE1\t0x7B75\n0xBAE2\t0x7B97\n0xBAE3\t0x7B9D\n0xBAE4\t0x7B94\n0xBAE5\t0x7B8F\n0xBAE6\t0x7BB8\n0xBAE7\t0x7B87\n0xBAE8\t0x7B84\n0xBAE9\t0x7CB9\n0xBAEA\t0x7CBD\n0xBAEB\t0x7CBE\n0xBAEC\t0x7DBB\n0xBAED\t0x7DB0\n0xBAEE\t0x7D9C\n0xBAEF\t0x7DBD\n0xBAF0\t0x7DBE\n0xBAF1\t0x7DA0\n0xBAF2\t0x7DCA\n0xBAF3\t0x7DB4\n0xBAF4\t0x7DB2\n0xBAF5\t0x7DB1\n0xBAF6\t0x7DBA\n0xBAF7\t0x7DA2\n0xBAF8\t0x7DBF\n0xBAF9\t0x7DB5\n0xBAFA\t0x7DB8\n0xBAFB\t0x7DAD\n0xBAFC\t0x7DD2\n0xBAFD\t0x7DC7\n0xBAFE\t0x7DAC\n0xBB40\t0x7F70\n0xBB41\t0x7FE0\n0xBB42\t0x7FE1\n0xBB43\t0x7FDF\n0xBB44\t0x805E\n0xBB45\t0x805A\n0xBB46\t0x8087\n0xBB47\t0x8150\n0xBB48\t0x8180\n0xBB49\t0x818F\n0xBB4A\t0x8188\n0xBB4B\t0x818A\n0xBB4C\t0x817F\n0xBB4D\t0x8182\n0xBB4E\t0x81E7\n0xBB4F\t0x81FA\n0xBB50\t0x8207\n0xBB51\t0x8214\n0xBB52\t0x821E\n0xBB53\t0x824B\n0xBB54\t0x84C9\n0xBB55\t0x84BF\n0xBB56\t0x84C6\n0xBB57\t0x84C4\n0xBB58\t0x8499\n0xBB59\t0x849E\n0xBB5A\t0x84B2\n0xBB5B\t0x849C\n0xBB5C\t0x84CB\n0xBB5D\t0x84B8\n0xBB5E\t0x84C0\n0xBB5F\t0x84D3\n0xBB60\t0x8490\n0xBB61\t0x84BC\n0xBB62\t0x84D1\n0xBB63\t0x84CA\n0xBB64\t0x873F\n0xBB65\t0x871C\n0xBB66\t0x873B\n0xBB67\t0x8722\n0xBB68\t0x8725\n0xBB69\t0x8734\n0xBB6A\t0x8718\n0xBB6B\t0x8755\n0xBB6C\t0x8737\n0xBB6D\t0x8729\n0xBB6E\t0x88F3\n0xBB6F\t0x8902\n0xBB70\t0x88F4\n0xBB71\t0x88F9\n0xBB72\t0x88F8\n0xBB73\t0x88FD\n0xBB74\t0x88E8\n0xBB75\t0x891A\n0xBB76\t0x88EF\n0xBB77\t0x8AA6\n0xBB78\t0x8A8C\n0xBB79\t0x8A9E\n0xBB7A\t0x8AA3\n0xBB7B\t0x8A8D\n0xBB7C\t0x8AA1\n0xBB7D\t0x8A93\n0xBB7E\t0x8AA4\n0xBBA1\t0x8AAA\n0xBBA2\t0x8AA5\n0xBBA3\t0x8AA8\n0xBBA4\t0x8A98\n0xBBA5\t0x8A91\n0xBBA6\t0x8A9A\n0xBBA7\t0x8AA7\n0xBBA8\t0x8C6A\n0xBBA9\t0x8C8D\n0xBBAA\t0x8C8C\n0xBBAB\t0x8CD3\n0xBBAC\t0x8CD1\n0xBBAD\t0x8CD2\n0xBBAE\t0x8D6B\n0xBBAF\t0x8D99\n0xBBB0\t0x8D95\n0xBBB1\t0x8DFC\n0xBBB2\t0x8F14\n0xBBB3\t0x8F12\n0xBBB4\t0x8F15\n0xBBB5\t0x8F13\n0xBBB6\t0x8FA3\n0xBBB7\t0x9060\n0xBBB8\t0x9058\n0xBBB9\t0x905C\n0xBBBA\t0x9063\n0xBBBB\t0x9059\n0xBBBC\t0x905E\n0xBBBD\t0x9062\n0xBBBE\t0x905D\n0xBBBF\t0x905B\n0xBBC0\t0x9119\n0xBBC1\t0x9118\n0xBBC2\t0x911E\n0xBBC3\t0x9175\n0xBBC4\t0x9178\n0xBBC5\t0x9177\n0xBBC6\t0x9174\n0xBBC7\t0x9278\n0xBBC8\t0x9280\n0xBBC9\t0x9285\n0xBBCA\t0x9298\n0xBBCB\t0x9296\n0xBBCC\t0x927B\n0xBBCD\t0x9293\n0xBBCE\t0x929C\n0xBBCF\t0x92A8\n0xBBD0\t0x927C\n0xBBD1\t0x9291\n0xBBD2\t0x95A1\n0xBBD3\t0x95A8\n0xBBD4\t0x95A9\n0xBBD5\t0x95A3\n0xBBD6\t0x95A5\n0xBBD7\t0x95A4\n0xBBD8\t0x9699\n0xBBD9\t0x969C\n0xBBDA\t0x969B\n0xBBDB\t0x96CC\n0xBBDC\t0x96D2\n0xBBDD\t0x9700\n0xBBDE\t0x977C\n0xBBDF\t0x9785\n0xBBE0\t0x97F6\n0xBBE1\t0x9817\n0xBBE2\t0x9818\n0xBBE3\t0x98AF\n0xBBE4\t0x98B1\n0xBBE5\t0x9903\n0xBBE6\t0x9905\n0xBBE7\t0x990C\n0xBBE8\t0x9909\n0xBBE9\t0x99C1\n0xBBEA\t0x9AAF\n0xBBEB\t0x9AB0\n0xBBEC\t0x9AE6\n0xBBED\t0x9B41\n0xBBEE\t0x9B42\n0xBBEF\t0x9CF4\n0xBBF0\t0x9CF6\n0xBBF1\t0x9CF3\n0xBBF2\t0x9EBC\n0xBBF3\t0x9F3B\n0xBBF4\t0x9F4A\n0xBBF5\t0x5104\n0xBBF6\t0x5100\n0xBBF7\t0x50FB\n0xBBF8\t0x50F5\n0xBBF9\t0x50F9\n0xBBFA\t0x5102\n0xBBFB\t0x5108\n0xBBFC\t0x5109\n0xBBFD\t0x5105\n0xBBFE\t0x51DC\n0xBC40\t0x5287\n0xBC41\t0x5288\n0xBC42\t0x5289\n0xBC43\t0x528D\n0xBC44\t0x528A\n0xBC45\t0x52F0\n0xBC46\t0x53B2\n0xBC47\t0x562E\n0xBC48\t0x563B\n0xBC49\t0x5639\n0xBC4A\t0x5632\n0xBC4B\t0x563F\n0xBC4C\t0x5634\n0xBC4D\t0x5629\n0xBC4E\t0x5653\n0xBC4F\t0x564E\n0xBC50\t0x5657\n0xBC51\t0x5674\n0xBC52\t0x5636\n0xBC53\t0x562F\n0xBC54\t0x5630\n0xBC55\t0x5880\n0xBC56\t0x589F\n0xBC57\t0x589E\n0xBC58\t0x58B3\n0xBC59\t0x589C\n0xBC5A\t0x58AE\n0xBC5B\t0x58A9\n0xBC5C\t0x58A6\n0xBC5D\t0x596D\n0xBC5E\t0x5B09\n0xBC5F\t0x5AFB\n0xBC60\t0x5B0B\n0xBC61\t0x5AF5\n0xBC62\t0x5B0C\n0xBC63\t0x5B08\n0xBC64\t0x5BEE\n0xBC65\t0x5BEC\n0xBC66\t0x5BE9\n0xBC67\t0x5BEB\n0xBC68\t0x5C64\n0xBC69\t0x5C65\n0xBC6A\t0x5D9D\n0xBC6B\t0x5D94\n0xBC6C\t0x5E62\n0xBC6D\t0x5E5F\n0xBC6E\t0x5E61\n0xBC6F\t0x5EE2\n0xBC70\t0x5EDA\n0xBC71\t0x5EDF\n0xBC72\t0x5EDD\n0xBC73\t0x5EE3\n0xBC74\t0x5EE0\n0xBC75\t0x5F48\n0xBC76\t0x5F71\n0xBC77\t0x5FB7\n0xBC78\t0x5FB5\n0xBC79\t0x6176\n0xBC7A\t0x6167\n0xBC7B\t0x616E\n0xBC7C\t0x615D\n0xBC7D\t0x6155\n0xBC7E\t0x6182\n0xBCA1\t0x617C\n0xBCA2\t0x6170\n0xBCA3\t0x616B\n0xBCA4\t0x617E\n0xBCA5\t0x61A7\n0xBCA6\t0x6190\n0xBCA7\t0x61AB\n0xBCA8\t0x618E\n0xBCA9\t0x61AC\n0xBCAA\t0x619A\n0xBCAB\t0x61A4\n0xBCAC\t0x6194\n0xBCAD\t0x61AE\n0xBCAE\t0x622E\n0xBCAF\t0x6469\n0xBCB0\t0x646F\n0xBCB1\t0x6479\n0xBCB2\t0x649E\n0xBCB3\t0x64B2\n0xBCB4\t0x6488\n0xBCB5\t0x6490\n0xBCB6\t0x64B0\n0xBCB7\t0x64A5\n0xBCB8\t0x6493\n0xBCB9\t0x6495\n0xBCBA\t0x64A9\n0xBCBB\t0x6492\n0xBCBC\t0x64AE\n0xBCBD\t0x64AD\n0xBCBE\t0x64AB\n0xBCBF\t0x649A\n0xBCC0\t0x64AC\n0xBCC1\t0x6499\n0xBCC2\t0x64A2\n0xBCC3\t0x64B3\n0xBCC4\t0x6575\n0xBCC5\t0x6577\n0xBCC6\t0x6578\n0xBCC7\t0x66AE\n0xBCC8\t0x66AB\n0xBCC9\t0x66B4\n0xBCCA\t0x66B1\n0xBCCB\t0x6A23\n0xBCCC\t0x6A1F\n0xBCCD\t0x69E8\n0xBCCE\t0x6A01\n0xBCCF\t0x6A1E\n0xBCD0\t0x6A19\n0xBCD1\t0x69FD\n0xBCD2\t0x6A21\n0xBCD3\t0x6A13\n0xBCD4\t0x6A0A\n0xBCD5\t0x69F3\n0xBCD6\t0x6A02\n0xBCD7\t0x6A05\n0xBCD8\t0x69ED\n0xBCD9\t0x6A11\n0xBCDA\t0x6B50\n0xBCDB\t0x6B4E\n0xBCDC\t0x6BA4\n0xBCDD\t0x6BC5\n0xBCDE\t0x6BC6\n0xBCDF\t0x6F3F\n0xBCE0\t0x6F7C\n0xBCE1\t0x6F84\n0xBCE2\t0x6F51\n0xBCE3\t0x6F66\n0xBCE4\t0x6F54\n0xBCE5\t0x6F86\n0xBCE6\t0x6F6D\n0xBCE7\t0x6F5B\n0xBCE8\t0x6F78\n0xBCE9\t0x6F6E\n0xBCEA\t0x6F8E\n0xBCEB\t0x6F7A\n0xBCEC\t0x6F70\n0xBCED\t0x6F64\n0xBCEE\t0x6F97\n0xBCEF\t0x6F58\n0xBCF0\t0x6ED5\n0xBCF1\t0x6F6F\n0xBCF2\t0x6F60\n0xBCF3\t0x6F5F\n0xBCF4\t0x719F\n0xBCF5\t0x71AC\n0xBCF6\t0x71B1\n0xBCF7\t0x71A8\n0xBCF8\t0x7256\n0xBCF9\t0x729B\n0xBCFA\t0x734E\n0xBCFB\t0x7357\n0xBCFC\t0x7469\n0xBCFD\t0x748B\n0xBCFE\t0x7483\n0xBD40\t0x747E\n0xBD41\t0x7480\n0xBD42\t0x757F\n0xBD43\t0x7620\n0xBD44\t0x7629\n0xBD45\t0x761F\n0xBD46\t0x7624\n0xBD47\t0x7626\n0xBD48\t0x7621\n0xBD49\t0x7622\n0xBD4A\t0x769A\n0xBD4B\t0x76BA\n0xBD4C\t0x76E4\n0xBD4D\t0x778E\n0xBD4E\t0x7787\n0xBD4F\t0x778C\n0xBD50\t0x7791\n0xBD51\t0x778B\n0xBD52\t0x78CB\n0xBD53\t0x78C5\n0xBD54\t0x78BA\n0xBD55\t0x78CA\n0xBD56\t0x78BE\n0xBD57\t0x78D5\n0xBD58\t0x78BC\n0xBD59\t0x78D0\n0xBD5A\t0x7A3F\n0xBD5B\t0x7A3C\n0xBD5C\t0x7A40\n0xBD5D\t0x7A3D\n0xBD5E\t0x7A37\n0xBD5F\t0x7A3B\n0xBD60\t0x7AAF\n0xBD61\t0x7AAE\n0xBD62\t0x7BAD\n0xBD63\t0x7BB1\n0xBD64\t0x7BC4\n0xBD65\t0x7BB4\n0xBD66\t0x7BC6\n0xBD67\t0x7BC7\n0xBD68\t0x7BC1\n0xBD69\t0x7BA0\n0xBD6A\t0x7BCC\n0xBD6B\t0x7CCA\n0xBD6C\t0x7DE0\n0xBD6D\t0x7DF4\n0xBD6E\t0x7DEF\n0xBD6F\t0x7DFB\n0xBD70\t0x7DD8\n0xBD71\t0x7DEC\n0xBD72\t0x7DDD\n0xBD73\t0x7DE8\n0xBD74\t0x7DE3\n0xBD75\t0x7DDA\n0xBD76\t0x7DDE\n0xBD77\t0x7DE9\n0xBD78\t0x7D9E\n0xBD79\t0x7DD9\n0xBD7A\t0x7DF2\n0xBD7B\t0x7DF9\n0xBD7C\t0x7F75\n0xBD7D\t0x7F77\n0xBD7E\t0x7FAF\n0xBDA1\t0x7FE9\n0xBDA2\t0x8026\n0xBDA3\t0x819B\n0xBDA4\t0x819C\n0xBDA5\t0x819D\n0xBDA6\t0x81A0\n0xBDA7\t0x819A\n0xBDA8\t0x8198\n0xBDA9\t0x8517\n0xBDAA\t0x853D\n0xBDAB\t0x851A\n0xBDAC\t0x84EE\n0xBDAD\t0x852C\n0xBDAE\t0x852D\n0xBDAF\t0x8513\n0xBDB0\t0x8511\n0xBDB1\t0x8523\n0xBDB2\t0x8521\n0xBDB3\t0x8514\n0xBDB4\t0x84EC\n0xBDB5\t0x8525\n0xBDB6\t0x84FF\n0xBDB7\t0x8506\n0xBDB8\t0x8782\n0xBDB9\t0x8774\n0xBDBA\t0x8776\n0xBDBB\t0x8760\n0xBDBC\t0x8766\n0xBDBD\t0x8778\n0xBDBE\t0x8768\n0xBDBF\t0x8759\n0xBDC0\t0x8757\n0xBDC1\t0x874C\n0xBDC2\t0x8753\n0xBDC3\t0x885B\n0xBDC4\t0x885D\n0xBDC5\t0x8910\n0xBDC6\t0x8907\n0xBDC7\t0x8912\n0xBDC8\t0x8913\n0xBDC9\t0x8915\n0xBDCA\t0x890A\n0xBDCB\t0x8ABC\n0xBDCC\t0x8AD2\n0xBDCD\t0x8AC7\n0xBDCE\t0x8AC4\n0xBDCF\t0x8A95\n0xBDD0\t0x8ACB\n0xBDD1\t0x8AF8\n0xBDD2\t0x8AB2\n0xBDD3\t0x8AC9\n0xBDD4\t0x8AC2\n0xBDD5\t0x8ABF\n0xBDD6\t0x8AB0\n0xBDD7\t0x8AD6\n0xBDD8\t0x8ACD\n0xBDD9\t0x8AB6\n0xBDDA\t0x8AB9\n0xBDDB\t0x8ADB\n0xBDDC\t0x8C4C\n0xBDDD\t0x8C4E\n0xBDDE\t0x8C6C\n0xBDDF\t0x8CE0\n0xBDE0\t0x8CDE\n0xBDE1\t0x8CE6\n0xBDE2\t0x8CE4\n0xBDE3\t0x8CEC\n0xBDE4\t0x8CED\n0xBDE5\t0x8CE2\n0xBDE6\t0x8CE3\n0xBDE7\t0x8CDC\n0xBDE8\t0x8CEA\n0xBDE9\t0x8CE1\n0xBDEA\t0x8D6D\n0xBDEB\t0x8D9F\n0xBDEC\t0x8DA3\n0xBDED\t0x8E2B\n0xBDEE\t0x8E10\n0xBDEF\t0x8E1D\n0xBDF0\t0x8E22\n0xBDF1\t0x8E0F\n0xBDF2\t0x8E29\n0xBDF3\t0x8E1F\n0xBDF4\t0x8E21\n0xBDF5\t0x8E1E\n0xBDF6\t0x8EBA\n0xBDF7\t0x8F1D\n0xBDF8\t0x8F1B\n0xBDF9\t0x8F1F\n0xBDFA\t0x8F29\n0xBDFB\t0x8F26\n0xBDFC\t0x8F2A\n0xBDFD\t0x8F1C\n0xBDFE\t0x8F1E\n0xBE40\t0x8F25\n0xBE41\t0x9069\n0xBE42\t0x906E\n0xBE43\t0x9068\n0xBE44\t0x906D\n0xBE45\t0x9077\n0xBE46\t0x9130\n0xBE47\t0x912D\n0xBE48\t0x9127\n0xBE49\t0x9131\n0xBE4A\t0x9187\n0xBE4B\t0x9189\n0xBE4C\t0x918B\n0xBE4D\t0x9183\n0xBE4E\t0x92C5\n0xBE4F\t0x92BB\n0xBE50\t0x92B7\n0xBE51\t0x92EA\n0xBE52\t0x92AC\n0xBE53\t0x92E4\n0xBE54\t0x92C1\n0xBE55\t0x92B3\n0xBE56\t0x92BC\n0xBE57\t0x92D2\n0xBE58\t0x92C7\n0xBE59\t0x92F0\n0xBE5A\t0x92B2\n0xBE5B\t0x95AD\n0xBE5C\t0x95B1\n0xBE5D\t0x9704\n0xBE5E\t0x9706\n0xBE5F\t0x9707\n0xBE60\t0x9709\n0xBE61\t0x9760\n0xBE62\t0x978D\n0xBE63\t0x978B\n0xBE64\t0x978F\n0xBE65\t0x9821\n0xBE66\t0x982B\n0xBE67\t0x981C\n0xBE68\t0x98B3\n0xBE69\t0x990A\n0xBE6A\t0x9913\n0xBE6B\t0x9912\n0xBE6C\t0x9918\n0xBE6D\t0x99DD\n0xBE6E\t0x99D0\n0xBE6F\t0x99DF\n0xBE70\t0x99DB\n0xBE71\t0x99D1\n0xBE72\t0x99D5\n0xBE73\t0x99D2\n0xBE74\t0x99D9\n0xBE75\t0x9AB7\n0xBE76\t0x9AEE\n0xBE77\t0x9AEF\n0xBE78\t0x9B27\n0xBE79\t0x9B45\n0xBE7A\t0x9B44\n0xBE7B\t0x9B77\n0xBE7C\t0x9B6F\n0xBE7D\t0x9D06\n0xBE7E\t0x9D09\n0xBEA1\t0x9D03\n0xBEA2\t0x9EA9\n0xBEA3\t0x9EBE\n0xBEA4\t0x9ECE\n0xBEA5\t0x58A8\n0xBEA6\t0x9F52\n0xBEA7\t0x5112\n0xBEA8\t0x5118\n0xBEA9\t0x5114\n0xBEAA\t0x5110\n0xBEAB\t0x5115\n0xBEAC\t0x5180\n0xBEAD\t0x51AA\n0xBEAE\t0x51DD\n0xBEAF\t0x5291\n0xBEB0\t0x5293\n0xBEB1\t0x52F3\n0xBEB2\t0x5659\n0xBEB3\t0x566B\n0xBEB4\t0x5679\n0xBEB5\t0x5669\n0xBEB6\t0x5664\n0xBEB7\t0x5678\n0xBEB8\t0x566A\n0xBEB9\t0x5668\n0xBEBA\t0x5665\n0xBEBB\t0x5671\n0xBEBC\t0x566F\n0xBEBD\t0x566C\n0xBEBE\t0x5662\n0xBEBF\t0x5676\n0xBEC0\t0x58C1\n0xBEC1\t0x58BE\n0xBEC2\t0x58C7\n0xBEC3\t0x58C5\n0xBEC4\t0x596E\n0xBEC5\t0x5B1D\n0xBEC6\t0x5B34\n0xBEC7\t0x5B78\n0xBEC8\t0x5BF0\n0xBEC9\t0x5C0E\n0xBECA\t0x5F4A\n0xBECB\t0x61B2\n0xBECC\t0x6191\n0xBECD\t0x61A9\n0xBECE\t0x618A\n0xBECF\t0x61CD\n0xBED0\t0x61B6\n0xBED1\t0x61BE\n0xBED2\t0x61CA\n0xBED3\t0x61C8\n0xBED4\t0x6230\n0xBED5\t0x64C5\n0xBED6\t0x64C1\n0xBED7\t0x64CB\n0xBED8\t0x64BB\n0xBED9\t0x64BC\n0xBEDA\t0x64DA\n0xBEDB\t0x64C4\n0xBEDC\t0x64C7\n0xBEDD\t0x64C2\n0xBEDE\t0x64CD\n0xBEDF\t0x64BF\n0xBEE0\t0x64D2\n0xBEE1\t0x64D4\n0xBEE2\t0x64BE\n0xBEE3\t0x6574\n0xBEE4\t0x66C6\n0xBEE5\t0x66C9\n0xBEE6\t0x66B9\n0xBEE7\t0x66C4\n0xBEE8\t0x66C7\n0xBEE9\t0x66B8\n0xBEEA\t0x6A3D\n0xBEEB\t0x6A38\n0xBEEC\t0x6A3A\n0xBEED\t0x6A59\n0xBEEE\t0x6A6B\n0xBEEF\t0x6A58\n0xBEF0\t0x6A39\n0xBEF1\t0x6A44\n0xBEF2\t0x6A62\n0xBEF3\t0x6A61\n0xBEF4\t0x6A4B\n0xBEF5\t0x6A47\n0xBEF6\t0x6A35\n0xBEF7\t0x6A5F\n0xBEF8\t0x6A48\n0xBEF9\t0x6B59\n0xBEFA\t0x6B77\n0xBEFB\t0x6C05\n0xBEFC\t0x6FC2\n0xBEFD\t0x6FB1\n0xBEFE\t0x6FA1\n0xBF40\t0x6FC3\n0xBF41\t0x6FA4\n0xBF42\t0x6FC1\n0xBF43\t0x6FA7\n0xBF44\t0x6FB3\n0xBF45\t0x6FC0\n0xBF46\t0x6FB9\n0xBF47\t0x6FB6\n0xBF48\t0x6FA6\n0xBF49\t0x6FA0\n0xBF4A\t0x6FB4\n0xBF4B\t0x71BE\n0xBF4C\t0x71C9\n0xBF4D\t0x71D0\n0xBF4E\t0x71D2\n0xBF4F\t0x71C8\n0xBF50\t0x71D5\n0xBF51\t0x71B9\n0xBF52\t0x71CE\n0xBF53\t0x71D9\n0xBF54\t0x71DC\n0xBF55\t0x71C3\n0xBF56\t0x71C4\n0xBF57\t0x7368\n0xBF58\t0x749C\n0xBF59\t0x74A3\n0xBF5A\t0x7498\n0xBF5B\t0x749F\n0xBF5C\t0x749E\n0xBF5D\t0x74E2\n0xBF5E\t0x750C\n0xBF5F\t0x750D\n0xBF60\t0x7634\n0xBF61\t0x7638\n0xBF62\t0x763A\n0xBF63\t0x76E7\n0xBF64\t0x76E5\n0xBF65\t0x77A0\n0xBF66\t0x779E\n0xBF67\t0x779F\n0xBF68\t0x77A5\n0xBF69\t0x78E8\n0xBF6A\t0x78DA\n0xBF6B\t0x78EC\n0xBF6C\t0x78E7\n0xBF6D\t0x79A6\n0xBF6E\t0x7A4D\n0xBF6F\t0x7A4E\n0xBF70\t0x7A46\n0xBF71\t0x7A4C\n0xBF72\t0x7A4B\n0xBF73\t0x7ABA\n0xBF74\t0x7BD9\n0xBF75\t0x7C11\n0xBF76\t0x7BC9\n0xBF77\t0x7BE4\n0xBF78\t0x7BDB\n0xBF79\t0x7BE1\n0xBF7A\t0x7BE9\n0xBF7B\t0x7BE6\n0xBF7C\t0x7CD5\n0xBF7D\t0x7CD6\n0xBF7E\t0x7E0A\n0xBFA1\t0x7E11\n0xBFA2\t0x7E08\n0xBFA3\t0x7E1B\n0xBFA4\t0x7E23\n0xBFA5\t0x7E1E\n0xBFA6\t0x7E1D\n0xBFA7\t0x7E09\n0xBFA8\t0x7E10\n0xBFA9\t0x7F79\n0xBFAA\t0x7FB2\n0xBFAB\t0x7FF0\n0xBFAC\t0x7FF1\n0xBFAD\t0x7FEE\n0xBFAE\t0x8028\n0xBFAF\t0x81B3\n0xBFB0\t0x81A9\n0xBFB1\t0x81A8\n0xBFB2\t0x81FB\n0xBFB3\t0x8208\n0xBFB4\t0x8258\n0xBFB5\t0x8259\n0xBFB6\t0x854A\n0xBFB7\t0x8559\n0xBFB8\t0x8548\n0xBFB9\t0x8568\n0xBFBA\t0x8569\n0xBFBB\t0x8543\n0xBFBC\t0x8549\n0xBFBD\t0x856D\n0xBFBE\t0x856A\n0xBFBF\t0x855E\n0xBFC0\t0x8783\n0xBFC1\t0x879F\n0xBFC2\t0x879E\n0xBFC3\t0x87A2\n0xBFC4\t0x878D\n0xBFC5\t0x8861\n0xBFC6\t0x892A\n0xBFC7\t0x8932\n0xBFC8\t0x8925\n0xBFC9\t0x892B\n0xBFCA\t0x8921\n0xBFCB\t0x89AA\n0xBFCC\t0x89A6\n0xBFCD\t0x8AE6\n0xBFCE\t0x8AFA\n0xBFCF\t0x8AEB\n0xBFD0\t0x8AF1\n0xBFD1\t0x8B00\n0xBFD2\t0x8ADC\n0xBFD3\t0x8AE7\n0xBFD4\t0x8AEE\n0xBFD5\t0x8AFE\n0xBFD6\t0x8B01\n0xBFD7\t0x8B02\n0xBFD8\t0x8AF7\n0xBFD9\t0x8AED\n0xBFDA\t0x8AF3\n0xBFDB\t0x8AF6\n0xBFDC\t0x8AFC\n0xBFDD\t0x8C6B\n0xBFDE\t0x8C6D\n0xBFDF\t0x8C93\n0xBFE0\t0x8CF4\n0xBFE1\t0x8E44\n0xBFE2\t0x8E31\n0xBFE3\t0x8E34\n0xBFE4\t0x8E42\n0xBFE5\t0x8E39\n0xBFE6\t0x8E35\n0xBFE7\t0x8F3B\n0xBFE8\t0x8F2F\n0xBFE9\t0x8F38\n0xBFEA\t0x8F33\n0xBFEB\t0x8FA8\n0xBFEC\t0x8FA6\n0xBFED\t0x9075\n0xBFEE\t0x9074\n0xBFEF\t0x9078\n0xBFF0\t0x9072\n0xBFF1\t0x907C\n0xBFF2\t0x907A\n0xBFF3\t0x9134\n0xBFF4\t0x9192\n0xBFF5\t0x9320\n0xBFF6\t0x9336\n0xBFF7\t0x92F8\n0xBFF8\t0x9333\n0xBFF9\t0x932F\n0xBFFA\t0x9322\n0xBFFB\t0x92FC\n0xBFFC\t0x932B\n0xBFFD\t0x9304\n0xBFFE\t0x931A\n0xC040\t0x9310\n0xC041\t0x9326\n0xC042\t0x9321\n0xC043\t0x9315\n0xC044\t0x932E\n0xC045\t0x9319\n0xC046\t0x95BB\n0xC047\t0x96A7\n0xC048\t0x96A8\n0xC049\t0x96AA\n0xC04A\t0x96D5\n0xC04B\t0x970E\n0xC04C\t0x9711\n0xC04D\t0x9716\n0xC04E\t0x970D\n0xC04F\t0x9713\n0xC050\t0x970F\n0xC051\t0x975B\n0xC052\t0x975C\n0xC053\t0x9766\n0xC054\t0x9798\n0xC055\t0x9830\n0xC056\t0x9838\n0xC057\t0x983B\n0xC058\t0x9837\n0xC059\t0x982D\n0xC05A\t0x9839\n0xC05B\t0x9824\n0xC05C\t0x9910\n0xC05D\t0x9928\n0xC05E\t0x991E\n0xC05F\t0x991B\n0xC060\t0x9921\n0xC061\t0x991A\n0xC062\t0x99ED\n0xC063\t0x99E2\n0xC064\t0x99F1\n0xC065\t0x9AB8\n0xC066\t0x9ABC\n0xC067\t0x9AFB\n0xC068\t0x9AED\n0xC069\t0x9B28\n0xC06A\t0x9B91\n0xC06B\t0x9D15\n0xC06C\t0x9D23\n0xC06D\t0x9D26\n0xC06E\t0x9D28\n0xC06F\t0x9D12\n0xC070\t0x9D1B\n0xC071\t0x9ED8\n0xC072\t0x9ED4\n0xC073\t0x9F8D\n0xC074\t0x9F9C\n0xC075\t0x512A\n0xC076\t0x511F\n0xC077\t0x5121\n0xC078\t0x5132\n0xC079\t0x52F5\n0xC07A\t0x568E\n0xC07B\t0x5680\n0xC07C\t0x5690\n0xC07D\t0x5685\n0xC07E\t0x5687\n0xC0A1\t0x568F\n0xC0A2\t0x58D5\n0xC0A3\t0x58D3\n0xC0A4\t0x58D1\n0xC0A5\t0x58CE\n0xC0A6\t0x5B30\n0xC0A7\t0x5B2A\n0xC0A8\t0x5B24\n0xC0A9\t0x5B7A\n0xC0AA\t0x5C37\n0xC0AB\t0x5C68\n0xC0AC\t0x5DBC\n0xC0AD\t0x5DBA\n0xC0AE\t0x5DBD\n0xC0AF\t0x5DB8\n0xC0B0\t0x5E6B\n0xC0B1\t0x5F4C\n0xC0B2\t0x5FBD\n0xC0B3\t0x61C9\n0xC0B4\t0x61C2\n0xC0B5\t0x61C7\n0xC0B6\t0x61E6\n0xC0B7\t0x61CB\n0xC0B8\t0x6232\n0xC0B9\t0x6234\n0xC0BA\t0x64CE\n0xC0BB\t0x64CA\n0xC0BC\t0x64D8\n0xC0BD\t0x64E0\n0xC0BE\t0x64F0\n0xC0BF\t0x64E6\n0xC0C0\t0x64EC\n0xC0C1\t0x64F1\n0xC0C2\t0x64E2\n0xC0C3\t0x64ED\n0xC0C4\t0x6582\n0xC0C5\t0x6583\n0xC0C6\t0x66D9\n0xC0C7\t0x66D6\n0xC0C8\t0x6A80\n0xC0C9\t0x6A94\n0xC0CA\t0x6A84\n0xC0CB\t0x6AA2\n0xC0CC\t0x6A9C\n0xC0CD\t0x6ADB\n0xC0CE\t0x6AA3\n0xC0CF\t0x6A7E\n0xC0D0\t0x6A97\n0xC0D1\t0x6A90\n0xC0D2\t0x6AA0\n0xC0D3\t0x6B5C\n0xC0D4\t0x6BAE\n0xC0D5\t0x6BDA\n0xC0D6\t0x6C08\n0xC0D7\t0x6FD8\n0xC0D8\t0x6FF1\n0xC0D9\t0x6FDF\n0xC0DA\t0x6FE0\n0xC0DB\t0x6FDB\n0xC0DC\t0x6FE4\n0xC0DD\t0x6FEB\n0xC0DE\t0x6FEF\n0xC0DF\t0x6F80\n0xC0E0\t0x6FEC\n0xC0E1\t0x6FE1\n0xC0E2\t0x6FE9\n0xC0E3\t0x6FD5\n0xC0E4\t0x6FEE\n0xC0E5\t0x6FF0\n0xC0E6\t0x71E7\n0xC0E7\t0x71DF\n0xC0E8\t0x71EE\n0xC0E9\t0x71E6\n0xC0EA\t0x71E5\n0xC0EB\t0x71ED\n0xC0EC\t0x71EC\n0xC0ED\t0x71F4\n0xC0EE\t0x71E0\n0xC0EF\t0x7235\n0xC0F0\t0x7246\n0xC0F1\t0x7370\n0xC0F2\t0x7372\n0xC0F3\t0x74A9\n0xC0F4\t0x74B0\n0xC0F5\t0x74A6\n0xC0F6\t0x74A8\n0xC0F7\t0x7646\n0xC0F8\t0x7642\n0xC0F9\t0x764C\n0xC0FA\t0x76EA\n0xC0FB\t0x77B3\n0xC0FC\t0x77AA\n0xC0FD\t0x77B0\n0xC0FE\t0x77AC\n0xC140\t0x77A7\n0xC141\t0x77AD\n0xC142\t0x77EF\n0xC143\t0x78F7\n0xC144\t0x78FA\n0xC145\t0x78F4\n0xC146\t0x78EF\n0xC147\t0x7901\n0xC148\t0x79A7\n0xC149\t0x79AA\n0xC14A\t0x7A57\n0xC14B\t0x7ABF\n0xC14C\t0x7C07\n0xC14D\t0x7C0D\n0xC14E\t0x7BFE\n0xC14F\t0x7BF7\n0xC150\t0x7C0C\n0xC151\t0x7BE0\n0xC152\t0x7CE0\n0xC153\t0x7CDC\n0xC154\t0x7CDE\n0xC155\t0x7CE2\n0xC156\t0x7CDF\n0xC157\t0x7CD9\n0xC158\t0x7CDD\n0xC159\t0x7E2E\n0xC15A\t0x7E3E\n0xC15B\t0x7E46\n0xC15C\t0x7E37\n0xC15D\t0x7E32\n0xC15E\t0x7E43\n0xC15F\t0x7E2B\n0xC160\t0x7E3D\n0xC161\t0x7E31\n0xC162\t0x7E45\n0xC163\t0x7E41\n0xC164\t0x7E34\n0xC165\t0x7E39\n0xC166\t0x7E48\n0xC167\t0x7E35\n0xC168\t0x7E3F\n0xC169\t0x7E2F\n0xC16A\t0x7F44\n0xC16B\t0x7FF3\n0xC16C\t0x7FFC\n0xC16D\t0x8071\n0xC16E\t0x8072\n0xC16F\t0x8070\n0xC170\t0x806F\n0xC171\t0x8073\n0xC172\t0x81C6\n0xC173\t0x81C3\n0xC174\t0x81BA\n0xC175\t0x81C2\n0xC176\t0x81C0\n0xC177\t0x81BF\n0xC178\t0x81BD\n0xC179\t0x81C9\n0xC17A\t0x81BE\n0xC17B\t0x81E8\n0xC17C\t0x8209\n0xC17D\t0x8271\n0xC17E\t0x85AA\n0xC1A1\t0x8584\n0xC1A2\t0x857E\n0xC1A3\t0x859C\n0xC1A4\t0x8591\n0xC1A5\t0x8594\n0xC1A6\t0x85AF\n0xC1A7\t0x859B\n0xC1A8\t0x8587\n0xC1A9\t0x85A8\n0xC1AA\t0x858A\n0xC1AB\t0x8667\n0xC1AC\t0x87C0\n0xC1AD\t0x87D1\n0xC1AE\t0x87B3\n0xC1AF\t0x87D2\n0xC1B0\t0x87C6\n0xC1B1\t0x87AB\n0xC1B2\t0x87BB\n0xC1B3\t0x87BA\n0xC1B4\t0x87C8\n0xC1B5\t0x87CB\n0xC1B6\t0x893B\n0xC1B7\t0x8936\n0xC1B8\t0x8944\n0xC1B9\t0x8938\n0xC1BA\t0x893D\n0xC1BB\t0x89AC\n0xC1BC\t0x8B0E\n0xC1BD\t0x8B17\n0xC1BE\t0x8B19\n0xC1BF\t0x8B1B\n0xC1C0\t0x8B0A\n0xC1C1\t0x8B20\n0xC1C2\t0x8B1D\n0xC1C3\t0x8B04\n0xC1C4\t0x8B10\n0xC1C5\t0x8C41\n0xC1C6\t0x8C3F\n0xC1C7\t0x8C73\n0xC1C8\t0x8CFA\n0xC1C9\t0x8CFD\n0xC1CA\t0x8CFC\n0xC1CB\t0x8CF8\n0xC1CC\t0x8CFB\n0xC1CD\t0x8DA8\n0xC1CE\t0x8E49\n0xC1CF\t0x8E4B\n0xC1D0\t0x8E48\n0xC1D1\t0x8E4A\n0xC1D2\t0x8F44\n0xC1D3\t0x8F3E\n0xC1D4\t0x8F42\n0xC1D5\t0x8F45\n0xC1D6\t0x8F3F\n0xC1D7\t0x907F\n0xC1D8\t0x907D\n0xC1D9\t0x9084\n0xC1DA\t0x9081\n0xC1DB\t0x9082\n0xC1DC\t0x9080\n0xC1DD\t0x9139\n0xC1DE\t0x91A3\n0xC1DF\t0x919E\n0xC1E0\t0x919C\n0xC1E1\t0x934D\n0xC1E2\t0x9382\n0xC1E3\t0x9328\n0xC1E4\t0x9375\n0xC1E5\t0x934A\n0xC1E6\t0x9365\n0xC1E7\t0x934B\n0xC1E8\t0x9318\n0xC1E9\t0x937E\n0xC1EA\t0x936C\n0xC1EB\t0x935B\n0xC1EC\t0x9370\n0xC1ED\t0x935A\n0xC1EE\t0x9354\n0xC1EF\t0x95CA\n0xC1F0\t0x95CB\n0xC1F1\t0x95CC\n0xC1F2\t0x95C8\n0xC1F3\t0x95C6\n0xC1F4\t0x96B1\n0xC1F5\t0x96B8\n0xC1F6\t0x96D6\n0xC1F7\t0x971C\n0xC1F8\t0x971E\n0xC1F9\t0x97A0\n0xC1FA\t0x97D3\n0xC1FB\t0x9846\n0xC1FC\t0x98B6\n0xC1FD\t0x9935\n0xC1FE\t0x9A01\n0xC240\t0x99FF\n0xC241\t0x9BAE\n0xC242\t0x9BAB\n0xC243\t0x9BAA\n0xC244\t0x9BAD\n0xC245\t0x9D3B\n0xC246\t0x9D3F\n0xC247\t0x9E8B\n0xC248\t0x9ECF\n0xC249\t0x9EDE\n0xC24A\t0x9EDC\n0xC24B\t0x9EDD\n0xC24C\t0x9EDB\n0xC24D\t0x9F3E\n0xC24E\t0x9F4B\n0xC24F\t0x53E2\n0xC250\t0x5695\n0xC251\t0x56AE\n0xC252\t0x58D9\n0xC253\t0x58D8\n0xC254\t0x5B38\n0xC255\t0x5F5D\n0xC256\t0x61E3\n0xC257\t0x6233\n0xC258\t0x64F4\n0xC259\t0x64F2\n0xC25A\t0x64FE\n0xC25B\t0x6506\n0xC25C\t0x64FA\n0xC25D\t0x64FB\n0xC25E\t0x64F7\n0xC25F\t0x65B7\n0xC260\t0x66DC\n0xC261\t0x6726\n0xC262\t0x6AB3\n0xC263\t0x6AAC\n0xC264\t0x6AC3\n0xC265\t0x6ABB\n0xC266\t0x6AB8\n0xC267\t0x6AC2\n0xC268\t0x6AAE\n0xC269\t0x6AAF\n0xC26A\t0x6B5F\n0xC26B\t0x6B78\n0xC26C\t0x6BAF\n0xC26D\t0x7009\n0xC26E\t0x700B\n0xC26F\t0x6FFE\n0xC270\t0x7006\n0xC271\t0x6FFA\n0xC272\t0x7011\n0xC273\t0x700F\n0xC274\t0x71FB\n0xC275\t0x71FC\n0xC276\t0x71FE\n0xC277\t0x71F8\n0xC278\t0x7377\n0xC279\t0x7375\n0xC27A\t0x74A7\n0xC27B\t0x74BF\n0xC27C\t0x7515\n0xC27D\t0x7656\n0xC27E\t0x7658\n0xC2A1\t0x7652\n0xC2A2\t0x77BD\n0xC2A3\t0x77BF\n0xC2A4\t0x77BB\n0xC2A5\t0x77BC\n0xC2A6\t0x790E\n0xC2A7\t0x79AE\n0xC2A8\t0x7A61\n0xC2A9\t0x7A62\n0xC2AA\t0x7A60\n0xC2AB\t0x7AC4\n0xC2AC\t0x7AC5\n0xC2AD\t0x7C2B\n0xC2AE\t0x7C27\n0xC2AF\t0x7C2A\n0xC2B0\t0x7C1E\n0xC2B1\t0x7C23\n0xC2B2\t0x7C21\n0xC2B3\t0x7CE7\n0xC2B4\t0x7E54\n0xC2B5\t0x7E55\n0xC2B6\t0x7E5E\n0xC2B7\t0x7E5A\n0xC2B8\t0x7E61\n0xC2B9\t0x7E52\n0xC2BA\t0x7E59\n0xC2BB\t0x7F48\n0xC2BC\t0x7FF9\n0xC2BD\t0x7FFB\n0xC2BE\t0x8077\n0xC2BF\t0x8076\n0xC2C0\t0x81CD\n0xC2C1\t0x81CF\n0xC2C2\t0x820A\n0xC2C3\t0x85CF\n0xC2C4\t0x85A9\n0xC2C5\t0x85CD\n0xC2C6\t0x85D0\n0xC2C7\t0x85C9\n0xC2C8\t0x85B0\n0xC2C9\t0x85BA\n0xC2CA\t0x85B9\n0xC2CB\t0x85A6\n0xC2CC\t0x87EF\n0xC2CD\t0x87EC\n0xC2CE\t0x87F2\n0xC2CF\t0x87E0\n0xC2D0\t0x8986\n0xC2D1\t0x89B2\n0xC2D2\t0x89F4\n0xC2D3\t0x8B28\n0xC2D4\t0x8B39\n0xC2D5\t0x8B2C\n0xC2D6\t0x8B2B\n0xC2D7\t0x8C50\n0xC2D8\t0x8D05\n0xC2D9\t0x8E59\n0xC2DA\t0x8E63\n0xC2DB\t0x8E66\n0xC2DC\t0x8E64\n0xC2DD\t0x8E5F\n0xC2DE\t0x8E55\n0xC2DF\t0x8EC0\n0xC2E0\t0x8F49\n0xC2E1\t0x8F4D\n0xC2E2\t0x9087\n0xC2E3\t0x9083\n0xC2E4\t0x9088\n0xC2E5\t0x91AB\n0xC2E6\t0x91AC\n0xC2E7\t0x91D0\n0xC2E8\t0x9394\n0xC2E9\t0x938A\n0xC2EA\t0x9396\n0xC2EB\t0x93A2\n0xC2EC\t0x93B3\n0xC2ED\t0x93AE\n0xC2EE\t0x93AC\n0xC2EF\t0x93B0\n0xC2F0\t0x9398\n0xC2F1\t0x939A\n0xC2F2\t0x9397\n0xC2F3\t0x95D4\n0xC2F4\t0x95D6\n0xC2F5\t0x95D0\n0xC2F6\t0x95D5\n0xC2F7\t0x96E2\n0xC2F8\t0x96DC\n0xC2F9\t0x96D9\n0xC2FA\t0x96DB\n0xC2FB\t0x96DE\n0xC2FC\t0x9724\n0xC2FD\t0x97A3\n0xC2FE\t0x97A6\n0xC340\t0x97AD\n0xC341\t0x97F9\n0xC342\t0x984D\n0xC343\t0x984F\n0xC344\t0x984C\n0xC345\t0x984E\n0xC346\t0x9853\n0xC347\t0x98BA\n0xC348\t0x993E\n0xC349\t0x993F\n0xC34A\t0x993D\n0xC34B\t0x992E\n0xC34C\t0x99A5\n0xC34D\t0x9A0E\n0xC34E\t0x9AC1\n0xC34F\t0x9B03\n0xC350\t0x9B06\n0xC351\t0x9B4F\n0xC352\t0x9B4E\n0xC353\t0x9B4D\n0xC354\t0x9BCA\n0xC355\t0x9BC9\n0xC356\t0x9BFD\n0xC357\t0x9BC8\n0xC358\t0x9BC0\n0xC359\t0x9D51\n0xC35A\t0x9D5D\n0xC35B\t0x9D60\n0xC35C\t0x9EE0\n0xC35D\t0x9F15\n0xC35E\t0x9F2C\n0xC35F\t0x5133\n0xC360\t0x56A5\n0xC361\t0x58DE\n0xC362\t0x58DF\n0xC363\t0x58E2\n0xC364\t0x5BF5\n0xC365\t0x9F90\n0xC366\t0x5EEC\n0xC367\t0x61F2\n0xC368\t0x61F7\n0xC369\t0x61F6\n0xC36A\t0x61F5\n0xC36B\t0x6500\n0xC36C\t0x650F\n0xC36D\t0x66E0\n0xC36E\t0x66DD\n0xC36F\t0x6AE5\n0xC370\t0x6ADD\n0xC371\t0x6ADA\n0xC372\t0x6AD3\n0xC373\t0x701B\n0xC374\t0x701F\n0xC375\t0x7028\n0xC376\t0x701A\n0xC377\t0x701D\n0xC378\t0x7015\n0xC379\t0x7018\n0xC37A\t0x7206\n0xC37B\t0x720D\n0xC37C\t0x7258\n0xC37D\t0x72A2\n0xC37E\t0x7378\n0xC3A1\t0x737A\n0xC3A2\t0x74BD\n0xC3A3\t0x74CA\n0xC3A4\t0x74E3\n0xC3A5\t0x7587\n0xC3A6\t0x7586\n0xC3A7\t0x765F\n0xC3A8\t0x7661\n0xC3A9\t0x77C7\n0xC3AA\t0x7919\n0xC3AB\t0x79B1\n0xC3AC\t0x7A6B\n0xC3AD\t0x7A69\n0xC3AE\t0x7C3E\n0xC3AF\t0x7C3F\n0xC3B0\t0x7C38\n0xC3B1\t0x7C3D\n0xC3B2\t0x7C37\n0xC3B3\t0x7C40\n0xC3B4\t0x7E6B\n0xC3B5\t0x7E6D\n0xC3B6\t0x7E79\n0xC3B7\t0x7E69\n0xC3B8\t0x7E6A\n0xC3B9\t0x7F85\n0xC3BA\t0x7E73\n0xC3BB\t0x7FB6\n0xC3BC\t0x7FB9\n0xC3BD\t0x7FB8\n0xC3BE\t0x81D8\n0xC3BF\t0x85E9\n0xC3C0\t0x85DD\n0xC3C1\t0x85EA\n0xC3C2\t0x85D5\n0xC3C3\t0x85E4\n0xC3C4\t0x85E5\n0xC3C5\t0x85F7\n0xC3C6\t0x87FB\n0xC3C7\t0x8805\n0xC3C8\t0x880D\n0xC3C9\t0x87F9\n0xC3CA\t0x87FE\n0xC3CB\t0x8960\n0xC3CC\t0x895F\n0xC3CD\t0x8956\n0xC3CE\t0x895E\n0xC3CF\t0x8B41\n0xC3D0\t0x8B5C\n0xC3D1\t0x8B58\n0xC3D2\t0x8B49\n0xC3D3\t0x8B5A\n0xC3D4\t0x8B4E\n0xC3D5\t0x8B4F\n0xC3D6\t0x8B46\n0xC3D7\t0x8B59\n0xC3D8\t0x8D08\n0xC3D9\t0x8D0A\n0xC3DA\t0x8E7C\n0xC3DB\t0x8E72\n0xC3DC\t0x8E87\n0xC3DD\t0x8E76\n0xC3DE\t0x8E6C\n0xC3DF\t0x8E7A\n0xC3E0\t0x8E74\n0xC3E1\t0x8F54\n0xC3E2\t0x8F4E\n0xC3E3\t0x8FAD\n0xC3E4\t0x908A\n0xC3E5\t0x908B\n0xC3E6\t0x91B1\n0xC3E7\t0x91AE\n0xC3E8\t0x93E1\n0xC3E9\t0x93D1\n0xC3EA\t0x93DF\n0xC3EB\t0x93C3\n0xC3EC\t0x93C8\n0xC3ED\t0x93DC\n0xC3EE\t0x93DD\n0xC3EF\t0x93D6\n0xC3F0\t0x93E2\n0xC3F1\t0x93CD\n0xC3F2\t0x93D8\n0xC3F3\t0x93E4\n0xC3F4\t0x93D7\n0xC3F5\t0x93E8\n0xC3F6\t0x95DC\n0xC3F7\t0x96B4\n0xC3F8\t0x96E3\n0xC3F9\t0x972A\n0xC3FA\t0x9727\n0xC3FB\t0x9761\n0xC3FC\t0x97DC\n0xC3FD\t0x97FB\n0xC3FE\t0x985E\n0xC440\t0x9858\n0xC441\t0x985B\n0xC442\t0x98BC\n0xC443\t0x9945\n0xC444\t0x9949\n0xC445\t0x9A16\n0xC446\t0x9A19\n0xC447\t0x9B0D\n0xC448\t0x9BE8\n0xC449\t0x9BE7\n0xC44A\t0x9BD6\n0xC44B\t0x9BDB\n0xC44C\t0x9D89\n0xC44D\t0x9D61\n0xC44E\t0x9D72\n0xC44F\t0x9D6A\n0xC450\t0x9D6C\n0xC451\t0x9E92\n0xC452\t0x9E97\n0xC453\t0x9E93\n0xC454\t0x9EB4\n0xC455\t0x52F8\n0xC456\t0x56A8\n0xC457\t0x56B7\n0xC458\t0x56B6\n0xC459\t0x56B4\n0xC45A\t0x56BC\n0xC45B\t0x58E4\n0xC45C\t0x5B40\n0xC45D\t0x5B43\n0xC45E\t0x5B7D\n0xC45F\t0x5BF6\n0xC460\t0x5DC9\n0xC461\t0x61F8\n0xC462\t0x61FA\n0xC463\t0x6518\n0xC464\t0x6514\n0xC465\t0x6519\n0xC466\t0x66E6\n0xC467\t0x6727\n0xC468\t0x6AEC\n0xC469\t0x703E\n0xC46A\t0x7030\n0xC46B\t0x7032\n0xC46C\t0x7210\n0xC46D\t0x737B\n0xC46E\t0x74CF\n0xC46F\t0x7662\n0xC470\t0x7665\n0xC471\t0x7926\n0xC472\t0x792A\n0xC473\t0x792C\n0xC474\t0x792B\n0xC475\t0x7AC7\n0xC476\t0x7AF6\n0xC477\t0x7C4C\n0xC478\t0x7C43\n0xC479\t0x7C4D\n0xC47A\t0x7CEF\n0xC47B\t0x7CF0\n0xC47C\t0x8FAE\n0xC47D\t0x7E7D\n0xC47E\t0x7E7C\n0xC4A1\t0x7E82\n0xC4A2\t0x7F4C\n0xC4A3\t0x8000\n0xC4A4\t0x81DA\n0xC4A5\t0x8266\n0xC4A6\t0x85FB\n0xC4A7\t0x85F9\n0xC4A8\t0x8611\n0xC4A9\t0x85FA\n0xC4AA\t0x8606\n0xC4AB\t0x860B\n0xC4AC\t0x8607\n0xC4AD\t0x860A\n0xC4AE\t0x8814\n0xC4AF\t0x8815\n0xC4B0\t0x8964\n0xC4B1\t0x89BA\n0xC4B2\t0x89F8\n0xC4B3\t0x8B70\n0xC4B4\t0x8B6C\n0xC4B5\t0x8B66\n0xC4B6\t0x8B6F\n0xC4B7\t0x8B5F\n0xC4B8\t0x8B6B\n0xC4B9\t0x8D0F\n0xC4BA\t0x8D0D\n0xC4BB\t0x8E89\n0xC4BC\t0x8E81\n0xC4BD\t0x8E85\n0xC4BE\t0x8E82\n0xC4BF\t0x91B4\n0xC4C0\t0x91CB\n0xC4C1\t0x9418\n0xC4C2\t0x9403\n0xC4C3\t0x93FD\n0xC4C4\t0x95E1\n0xC4C5\t0x9730\n0xC4C6\t0x98C4\n0xC4C7\t0x9952\n0xC4C8\t0x9951\n0xC4C9\t0x99A8\n0xC4CA\t0x9A2B\n0xC4CB\t0x9A30\n0xC4CC\t0x9A37\n0xC4CD\t0x9A35\n0xC4CE\t0x9C13\n0xC4CF\t0x9C0D\n0xC4D0\t0x9E79\n0xC4D1\t0x9EB5\n0xC4D2\t0x9EE8\n0xC4D3\t0x9F2F\n0xC4D4\t0x9F5F\n0xC4D5\t0x9F63\n0xC4D6\t0x9F61\n0xC4D7\t0x5137\n0xC4D8\t0x5138\n0xC4D9\t0x56C1\n0xC4DA\t0x56C0\n0xC4DB\t0x56C2\n0xC4DC\t0x5914\n0xC4DD\t0x5C6C\n0xC4DE\t0x5DCD\n0xC4DF\t0x61FC\n0xC4E0\t0x61FE\n0xC4E1\t0x651D\n0xC4E2\t0x651C\n0xC4E3\t0x6595\n0xC4E4\t0x66E9\n0xC4E5\t0x6AFB\n0xC4E6\t0x6B04\n0xC4E7\t0x6AFA\n0xC4E8\t0x6BB2\n0xC4E9\t0x704C\n0xC4EA\t0x721B\n0xC4EB\t0x72A7\n0xC4EC\t0x74D6\n0xC4ED\t0x74D4\n0xC4EE\t0x7669\n0xC4EF\t0x77D3\n0xC4F0\t0x7C50\n0xC4F1\t0x7E8F\n0xC4F2\t0x7E8C\n0xC4F3\t0x7FBC\n0xC4F4\t0x8617\n0xC4F5\t0x862D\n0xC4F6\t0x861A\n0xC4F7\t0x8823\n0xC4F8\t0x8822\n0xC4F9\t0x8821\n0xC4FA\t0x881F\n0xC4FB\t0x896A\n0xC4FC\t0x896C\n0xC4FD\t0x89BD\n0xC4FE\t0x8B74\n0xC540\t0x8B77\n0xC541\t0x8B7D\n0xC542\t0x8D13\n0xC543\t0x8E8A\n0xC544\t0x8E8D\n0xC545\t0x8E8B\n0xC546\t0x8F5F\n0xC547\t0x8FAF\n0xC548\t0x91BA\n0xC549\t0x942E\n0xC54A\t0x9433\n0xC54B\t0x9435\n0xC54C\t0x943A\n0xC54D\t0x9438\n0xC54E\t0x9432\n0xC54F\t0x942B\n0xC550\t0x95E2\n0xC551\t0x9738\n0xC552\t0x9739\n0xC553\t0x9732\n0xC554\t0x97FF\n0xC555\t0x9867\n0xC556\t0x9865\n0xC557\t0x9957\n0xC558\t0x9A45\n0xC559\t0x9A43\n0xC55A\t0x9A40\n0xC55B\t0x9A3E\n0xC55C\t0x9ACF\n0xC55D\t0x9B54\n0xC55E\t0x9B51\n0xC55F\t0x9C2D\n0xC560\t0x9C25\n0xC561\t0x9DAF\n0xC562\t0x9DB4\n0xC563\t0x9DC2\n0xC564\t0x9DB8\n0xC565\t0x9E9D\n0xC566\t0x9EEF\n0xC567\t0x9F19\n0xC568\t0x9F5C\n0xC569\t0x9F66\n0xC56A\t0x9F67\n0xC56B\t0x513C\n0xC56C\t0x513B\n0xC56D\t0x56C8\n0xC56E\t0x56CA\n0xC56F\t0x56C9\n0xC570\t0x5B7F\n0xC571\t0x5DD4\n0xC572\t0x5DD2\n0xC573\t0x5F4E\n0xC574\t0x61FF\n0xC575\t0x6524\n0xC576\t0x6B0A\n0xC577\t0x6B61\n0xC578\t0x7051\n0xC579\t0x7058\n0xC57A\t0x7380\n0xC57B\t0x74E4\n0xC57C\t0x758A\n0xC57D\t0x766E\n0xC57E\t0x766C\n0xC5A1\t0x79B3\n0xC5A2\t0x7C60\n0xC5A3\t0x7C5F\n0xC5A4\t0x807E\n0xC5A5\t0x807D\n0xC5A6\t0x81DF\n0xC5A7\t0x8972\n0xC5A8\t0x896F\n0xC5A9\t0x89FC\n0xC5AA\t0x8B80\n0xC5AB\t0x8D16\n0xC5AC\t0x8D17\n0xC5AD\t0x8E91\n0xC5AE\t0x8E93\n0xC5AF\t0x8F61\n0xC5B0\t0x9148\n0xC5B1\t0x9444\n0xC5B2\t0x9451\n0xC5B3\t0x9452\n0xC5B4\t0x973D\n0xC5B5\t0x973E\n0xC5B6\t0x97C3\n0xC5B7\t0x97C1\n0xC5B8\t0x986B\n0xC5B9\t0x9955\n0xC5BA\t0x9A55\n0xC5BB\t0x9A4D\n0xC5BC\t0x9AD2\n0xC5BD\t0x9B1A\n0xC5BE\t0x9C49\n0xC5BF\t0x9C31\n0xC5C0\t0x9C3E\n0xC5C1\t0x9C3B\n0xC5C2\t0x9DD3\n0xC5C3\t0x9DD7\n0xC5C4\t0x9F34\n0xC5C5\t0x9F6C\n0xC5C6\t0x9F6A\n0xC5C7\t0x9F94\n0xC5C8\t0x56CC\n0xC5C9\t0x5DD6\n0xC5CA\t0x6200\n0xC5CB\t0x6523\n0xC5CC\t0x652B\n0xC5CD\t0x652A\n0xC5CE\t0x66EC\n0xC5CF\t0x6B10\n0xC5D0\t0x74DA\n0xC5D1\t0x7ACA\n0xC5D2\t0x7C64\n0xC5D3\t0x7C63\n0xC5D4\t0x7C65\n0xC5D5\t0x7E93\n0xC5D6\t0x7E96\n0xC5D7\t0x7E94\n0xC5D8\t0x81E2\n0xC5D9\t0x8638\n0xC5DA\t0x863F\n0xC5DB\t0x8831\n0xC5DC\t0x8B8A\n0xC5DD\t0x9090\n0xC5DE\t0x908F\n0xC5DF\t0x9463\n0xC5E0\t0x9460\n0xC5E1\t0x9464\n0xC5E2\t0x9768\n0xC5E3\t0x986F\n0xC5E4\t0x995C\n0xC5E5\t0x9A5A\n0xC5E6\t0x9A5B\n0xC5E7\t0x9A57\n0xC5E8\t0x9AD3\n0xC5E9\t0x9AD4\n0xC5EA\t0x9AD1\n0xC5EB\t0x9C54\n0xC5EC\t0x9C57\n0xC5ED\t0x9C56\n0xC5EE\t0x9DE5\n0xC5EF\t0x9E9F\n0xC5F0\t0x9EF4\n0xC5F1\t0x56D1\n0xC5F2\t0x58E9\n0xC5F3\t0x652C\n0xC5F4\t0x705E\n0xC5F5\t0x7671\n0xC5F6\t0x7672\n0xC5F7\t0x77D7\n0xC5F8\t0x7F50\n0xC5F9\t0x7F88\n0xC5FA\t0x8836\n0xC5FB\t0x8839\n0xC5FC\t0x8862\n0xC5FD\t0x8B93\n0xC5FE\t0x8B92\n0xC640\t0x8B96\n0xC641\t0x8277\n0xC642\t0x8D1B\n0xC643\t0x91C0\n0xC644\t0x946A\n0xC645\t0x9742\n0xC646\t0x9748\n0xC647\t0x9744\n0xC648\t0x97C6\n0xC649\t0x9870\n0xC64A\t0x9A5F\n0xC64B\t0x9B22\n0xC64C\t0x9B58\n0xC64D\t0x9C5F\n0xC64E\t0x9DF9\n0xC64F\t0x9DFA\n0xC650\t0x9E7C\n0xC651\t0x9E7D\n0xC652\t0x9F07\n0xC653\t0x9F77\n0xC654\t0x9F72\n0xC655\t0x5EF3\n0xC656\t0x6B16\n0xC657\t0x7063\n0xC658\t0x7C6C\n0xC659\t0x7C6E\n0xC65A\t0x883B\n0xC65B\t0x89C0\n0xC65C\t0x8EA1\n0xC65D\t0x91C1\n0xC65E\t0x9472\n0xC65F\t0x9470\n0xC660\t0x9871\n0xC661\t0x995E\n0xC662\t0x9AD6\n0xC663\t0x9B23\n0xC664\t0x9ECC\n0xC665\t0x7064\n0xC666\t0x77DA\n0xC667\t0x8B9A\n0xC668\t0x9477\n0xC669\t0x97C9\n0xC66A\t0x9A62\n0xC66B\t0x9A65\n0xC66C\t0x7E9C\n0xC66D\t0x8B9C\n0xC66E\t0x8EAA\n0xC66F\t0x91C5\n0xC670\t0x947D\n0xC671\t0x947E\n0xC672\t0x947C\n0xC673\t0x9C77\n0xC674\t0x9C78\n0xC675\t0x9EF7\n0xC676\t0x8C54\n0xC677\t0x947F\n0xC678\t0x9E1A\n0xC679\t0x7228\n0xC67A\t0x9A6A\n0xC67B\t0x9B31\n0xC67C\t0x9E1B\n0xC67D\t0x9E1E\n0xC67E\t0x7C72\n0xC940\t0x4E42\n0xC941\t0x4E5C\n0xC942\t0x51F5\n0xC943\t0x531A\n0xC944\t0x5382\n0xC945\t0x4E07\n0xC946\t0x4E0C\n0xC947\t0x4E47\n0xC948\t0x4E8D\n0xC949\t0x56D7\n0xC94A\t0xFA0C\n0xC94B\t0x5C6E\n0xC94C\t0x5F73\n0xC94D\t0x4E0F\n0xC94E\t0x5187\n0xC94F\t0x4E0E\n0xC950\t0x4E2E\n0xC951\t0x4E93\n0xC952\t0x4EC2\n0xC953\t0x4EC9\n0xC954\t0x4EC8\n0xC955\t0x5198\n0xC956\t0x52FC\n0xC957\t0x536C\n0xC958\t0x53B9\n0xC959\t0x5720\n0xC95A\t0x5903\n0xC95B\t0x592C\n0xC95C\t0x5C10\n0xC95D\t0x5DFF\n0xC95E\t0x65E1\n0xC95F\t0x6BB3\n0xC960\t0x6BCC\n0xC961\t0x6C14\n0xC962\t0x723F\n0xC963\t0x4E31\n0xC964\t0x4E3C\n0xC965\t0x4EE8\n0xC966\t0x4EDC\n0xC967\t0x4EE9\n0xC968\t0x4EE1\n0xC969\t0x4EDD\n0xC96A\t0x4EDA\n0xC96B\t0x520C\n0xC96C\t0x531C\n0xC96D\t0x534C\n0xC96E\t0x5722\n0xC96F\t0x5723\n0xC970\t0x5917\n0xC971\t0x592F\n0xC972\t0x5B81\n0xC973\t0x5B84\n0xC974\t0x5C12\n0xC975\t0x5C3B\n0xC976\t0x5C74\n0xC977\t0x5C73\n0xC978\t0x5E04\n0xC979\t0x5E80\n0xC97A\t0x5E82\n0xC97B\t0x5FC9\n0xC97C\t0x6209\n0xC97D\t0x6250\n0xC97E\t0x6C15\n0xC9A1\t0x6C36\n0xC9A2\t0x6C43\n0xC9A3\t0x6C3F\n0xC9A4\t0x6C3B\n0xC9A5\t0x72AE\n0xC9A6\t0x72B0\n0xC9A7\t0x738A\n0xC9A8\t0x79B8\n0xC9A9\t0x808A\n0xC9AA\t0x961E\n0xC9AB\t0x4F0E\n0xC9AC\t0x4F18\n0xC9AD\t0x4F2C\n0xC9AE\t0x4EF5\n0xC9AF\t0x4F14\n0xC9B0\t0x4EF1\n0xC9B1\t0x4F00\n0xC9B2\t0x4EF7\n0xC9B3\t0x4F08\n0xC9B4\t0x4F1D\n0xC9B5\t0x4F02\n0xC9B6\t0x4F05\n0xC9B7\t0x4F22\n0xC9B8\t0x4F13\n0xC9B9\t0x4F04\n0xC9BA\t0x4EF4\n0xC9BB\t0x4F12\n0xC9BC\t0x51B1\n0xC9BD\t0x5213\n0xC9BE\t0x5209\n0xC9BF\t0x5210\n0xC9C0\t0x52A6\n0xC9C1\t0x5322\n0xC9C2\t0x531F\n0xC9C3\t0x534D\n0xC9C4\t0x538A\n0xC9C5\t0x5407\n0xC9C6\t0x56E1\n0xC9C7\t0x56DF\n0xC9C8\t0x572E\n0xC9C9\t0x572A\n0xC9CA\t0x5734\n0xC9CB\t0x593C\n0xC9CC\t0x5980\n0xC9CD\t0x597C\n0xC9CE\t0x5985\n0xC9CF\t0x597B\n0xC9D0\t0x597E\n0xC9D1\t0x5977\n0xC9D2\t0x597F\n0xC9D3\t0x5B56\n0xC9D4\t0x5C15\n0xC9D5\t0x5C25\n0xC9D6\t0x5C7C\n0xC9D7\t0x5C7A\n0xC9D8\t0x5C7B\n0xC9D9\t0x5C7E\n0xC9DA\t0x5DDF\n0xC9DB\t0x5E75\n0xC9DC\t0x5E84\n0xC9DD\t0x5F02\n0xC9DE\t0x5F1A\n0xC9DF\t0x5F74\n0xC9E0\t0x5FD5\n0xC9E1\t0x5FD4\n0xC9E2\t0x5FCF\n0xC9E3\t0x625C\n0xC9E4\t0x625E\n0xC9E5\t0x6264\n0xC9E6\t0x6261\n0xC9E7\t0x6266\n0xC9E8\t0x6262\n0xC9E9\t0x6259\n0xC9EA\t0x6260\n0xC9EB\t0x625A\n0xC9EC\t0x6265\n0xC9ED\t0x65EF\n0xC9EE\t0x65EE\n0xC9EF\t0x673E\n0xC9F0\t0x6739\n0xC9F1\t0x6738\n0xC9F2\t0x673B\n0xC9F3\t0x673A\n0xC9F4\t0x673F\n0xC9F5\t0x673C\n0xC9F6\t0x6733\n0xC9F7\t0x6C18\n0xC9F8\t0x6C46\n0xC9F9\t0x6C52\n0xC9FA\t0x6C5C\n0xC9FB\t0x6C4F\n0xC9FC\t0x6C4A\n0xC9FD\t0x6C54\n0xC9FE\t0x6C4B\n0xCA40\t0x6C4C\n0xCA41\t0x7071\n0xCA42\t0x725E\n0xCA43\t0x72B4\n0xCA44\t0x72B5\n0xCA45\t0x738E\n0xCA46\t0x752A\n0xCA47\t0x767F\n0xCA48\t0x7A75\n0xCA49\t0x7F51\n0xCA4A\t0x8278\n0xCA4B\t0x827C\n0xCA4C\t0x8280\n0xCA4D\t0x827D\n0xCA4E\t0x827F\n0xCA4F\t0x864D\n0xCA50\t0x897E\n0xCA51\t0x9099\n0xCA52\t0x9097\n0xCA53\t0x9098\n0xCA54\t0x909B\n0xCA55\t0x9094\n0xCA56\t0x9622\n0xCA57\t0x9624\n0xCA58\t0x9620\n0xCA59\t0x9623\n0xCA5A\t0x4F56\n0xCA5B\t0x4F3B\n0xCA5C\t0x4F62\n0xCA5D\t0x4F49\n0xCA5E\t0x4F53\n0xCA5F\t0x4F64\n0xCA60\t0x4F3E\n0xCA61\t0x4F67\n0xCA62\t0x4F52\n0xCA63\t0x4F5F\n0xCA64\t0x4F41\n0xCA65\t0x4F58\n0xCA66\t0x4F2D\n0xCA67\t0x4F33\n0xCA68\t0x4F3F\n0xCA69\t0x4F61\n0xCA6A\t0x518F\n0xCA6B\t0x51B9\n0xCA6C\t0x521C\n0xCA6D\t0x521E\n0xCA6E\t0x5221\n0xCA6F\t0x52AD\n0xCA70\t0x52AE\n0xCA71\t0x5309\n0xCA72\t0x5363\n0xCA73\t0x5372\n0xCA74\t0x538E\n0xCA75\t0x538F\n0xCA76\t0x5430\n0xCA77\t0x5437\n0xCA78\t0x542A\n0xCA79\t0x5454\n0xCA7A\t0x5445\n0xCA7B\t0x5419\n0xCA7C\t0x541C\n0xCA7D\t0x5425\n0xCA7E\t0x5418\n0xCAA1\t0x543D\n0xCAA2\t0x544F\n0xCAA3\t0x5441\n0xCAA4\t0x5428\n0xCAA5\t0x5424\n0xCAA6\t0x5447\n0xCAA7\t0x56EE\n0xCAA8\t0x56E7\n0xCAA9\t0x56E5\n0xCAAA\t0x5741\n0xCAAB\t0x5745\n0xCAAC\t0x574C\n0xCAAD\t0x5749\n0xCAAE\t0x574B\n0xCAAF\t0x5752\n0xCAB0\t0x5906\n0xCAB1\t0x5940\n0xCAB2\t0x59A6\n0xCAB3\t0x5998\n0xCAB4\t0x59A0\n0xCAB5\t0x5997\n0xCAB6\t0x598E\n0xCAB7\t0x59A2\n0xCAB8\t0x5990\n0xCAB9\t0x598F\n0xCABA\t0x59A7\n0xCABB\t0x59A1\n0xCABC\t0x5B8E\n0xCABD\t0x5B92\n0xCABE\t0x5C28\n0xCABF\t0x5C2A\n0xCAC0\t0x5C8D\n0xCAC1\t0x5C8F\n0xCAC2\t0x5C88\n0xCAC3\t0x5C8B\n0xCAC4\t0x5C89\n0xCAC5\t0x5C92\n0xCAC6\t0x5C8A\n0xCAC7\t0x5C86\n0xCAC8\t0x5C93\n0xCAC9\t0x5C95\n0xCACA\t0x5DE0\n0xCACB\t0x5E0A\n0xCACC\t0x5E0E\n0xCACD\t0x5E8B\n0xCACE\t0x5E89\n0xCACF\t0x5E8C\n0xCAD0\t0x5E88\n0xCAD1\t0x5E8D\n0xCAD2\t0x5F05\n0xCAD3\t0x5F1D\n0xCAD4\t0x5F78\n0xCAD5\t0x5F76\n0xCAD6\t0x5FD2\n0xCAD7\t0x5FD1\n0xCAD8\t0x5FD0\n0xCAD9\t0x5FED\n0xCADA\t0x5FE8\n0xCADB\t0x5FEE\n0xCADC\t0x5FF3\n0xCADD\t0x5FE1\n0xCADE\t0x5FE4\n0xCADF\t0x5FE3\n0xCAE0\t0x5FFA\n0xCAE1\t0x5FEF\n0xCAE2\t0x5FF7\n0xCAE3\t0x5FFB\n0xCAE4\t0x6000\n0xCAE5\t0x5FF4\n0xCAE6\t0x623A\n0xCAE7\t0x6283\n0xCAE8\t0x628C\n0xCAE9\t0x628E\n0xCAEA\t0x628F\n0xCAEB\t0x6294\n0xCAEC\t0x6287\n0xCAED\t0x6271\n0xCAEE\t0x627B\n0xCAEF\t0x627A\n0xCAF0\t0x6270\n0xCAF1\t0x6281\n0xCAF2\t0x6288\n0xCAF3\t0x6277\n0xCAF4\t0x627D\n0xCAF5\t0x6272\n0xCAF6\t0x6274\n0xCAF7\t0x6537\n0xCAF8\t0x65F0\n0xCAF9\t0x65F4\n0xCAFA\t0x65F3\n0xCAFB\t0x65F2\n0xCAFC\t0x65F5\n0xCAFD\t0x6745\n0xCAFE\t0x6747\n0xCB40\t0x6759\n0xCB41\t0x6755\n0xCB42\t0x674C\n0xCB43\t0x6748\n0xCB44\t0x675D\n0xCB45\t0x674D\n0xCB46\t0x675A\n0xCB47\t0x674B\n0xCB48\t0x6BD0\n0xCB49\t0x6C19\n0xCB4A\t0x6C1A\n0xCB4B\t0x6C78\n0xCB4C\t0x6C67\n0xCB4D\t0x6C6B\n0xCB4E\t0x6C84\n0xCB4F\t0x6C8B\n0xCB50\t0x6C8F\n0xCB51\t0x6C71\n0xCB52\t0x6C6F\n0xCB53\t0x6C69\n0xCB54\t0x6C9A\n0xCB55\t0x6C6D\n0xCB56\t0x6C87\n0xCB57\t0x6C95\n0xCB58\t0x6C9C\n0xCB59\t0x6C66\n0xCB5A\t0x6C73\n0xCB5B\t0x6C65\n0xCB5C\t0x6C7B\n0xCB5D\t0x6C8E\n0xCB5E\t0x7074\n0xCB5F\t0x707A\n0xCB60\t0x7263\n0xCB61\t0x72BF\n0xCB62\t0x72BD\n0xCB63\t0x72C3\n0xCB64\t0x72C6\n0xCB65\t0x72C1\n0xCB66\t0x72BA\n0xCB67\t0x72C5\n0xCB68\t0x7395\n0xCB69\t0x7397\n0xCB6A\t0x7393\n0xCB6B\t0x7394\n0xCB6C\t0x7392\n0xCB6D\t0x753A\n0xCB6E\t0x7539\n0xCB6F\t0x7594\n0xCB70\t0x7595\n0xCB71\t0x7681\n0xCB72\t0x793D\n0xCB73\t0x8034\n0xCB74\t0x8095\n0xCB75\t0x8099\n0xCB76\t0x8090\n0xCB77\t0x8092\n0xCB78\t0x809C\n0xCB79\t0x8290\n0xCB7A\t0x828F\n0xCB7B\t0x8285\n0xCB7C\t0x828E\n0xCB7D\t0x8291\n0xCB7E\t0x8293\n0xCBA1\t0x828A\n0xCBA2\t0x8283\n0xCBA3\t0x8284\n0xCBA4\t0x8C78\n0xCBA5\t0x8FC9\n0xCBA6\t0x8FBF\n0xCBA7\t0x909F\n0xCBA8\t0x90A1\n0xCBA9\t0x90A5\n0xCBAA\t0x909E\n0xCBAB\t0x90A7\n0xCBAC\t0x90A0\n0xCBAD\t0x9630\n0xCBAE\t0x9628\n0xCBAF\t0x962F\n0xCBB0\t0x962D\n0xCBB1\t0x4E33\n0xCBB2\t0x4F98\n0xCBB3\t0x4F7C\n0xCBB4\t0x4F85\n0xCBB5\t0x4F7D\n0xCBB6\t0x4F80\n0xCBB7\t0x4F87\n0xCBB8\t0x4F76\n0xCBB9\t0x4F74\n0xCBBA\t0x4F89\n0xCBBB\t0x4F84\n0xCBBC\t0x4F77\n0xCBBD\t0x4F4C\n0xCBBE\t0x4F97\n0xCBBF\t0x4F6A\n0xCBC0\t0x4F9A\n0xCBC1\t0x4F79\n0xCBC2\t0x4F81\n0xCBC3\t0x4F78\n0xCBC4\t0x4F90\n0xCBC5\t0x4F9C\n0xCBC6\t0x4F94\n0xCBC7\t0x4F9E\n0xCBC8\t0x4F92\n0xCBC9\t0x4F82\n0xCBCA\t0x4F95\n0xCBCB\t0x4F6B\n0xCBCC\t0x4F6E\n0xCBCD\t0x519E\n0xCBCE\t0x51BC\n0xCBCF\t0x51BE\n0xCBD0\t0x5235\n0xCBD1\t0x5232\n0xCBD2\t0x5233\n0xCBD3\t0x5246\n0xCBD4\t0x5231\n0xCBD5\t0x52BC\n0xCBD6\t0x530A\n0xCBD7\t0x530B\n0xCBD8\t0x533C\n0xCBD9\t0x5392\n0xCBDA\t0x5394\n0xCBDB\t0x5487\n0xCBDC\t0x547F\n0xCBDD\t0x5481\n0xCBDE\t0x5491\n0xCBDF\t0x5482\n0xCBE0\t0x5488\n0xCBE1\t0x546B\n0xCBE2\t0x547A\n0xCBE3\t0x547E\n0xCBE4\t0x5465\n0xCBE5\t0x546C\n0xCBE6\t0x5474\n0xCBE7\t0x5466\n0xCBE8\t0x548D\n0xCBE9\t0x546F\n0xCBEA\t0x5461\n0xCBEB\t0x5460\n0xCBEC\t0x5498\n0xCBED\t0x5463\n0xCBEE\t0x5467\n0xCBEF\t0x5464\n0xCBF0\t0x56F7\n0xCBF1\t0x56F9\n0xCBF2\t0x576F\n0xCBF3\t0x5772\n0xCBF4\t0x576D\n0xCBF5\t0x576B\n0xCBF6\t0x5771\n0xCBF7\t0x5770\n0xCBF8\t0x5776\n0xCBF9\t0x5780\n0xCBFA\t0x5775\n0xCBFB\t0x577B\n0xCBFC\t0x5773\n0xCBFD\t0x5774\n0xCBFE\t0x5762\n0xCC40\t0x5768\n0xCC41\t0x577D\n0xCC42\t0x590C\n0xCC43\t0x5945\n0xCC44\t0x59B5\n0xCC45\t0x59BA\n0xCC46\t0x59CF\n0xCC47\t0x59CE\n0xCC48\t0x59B2\n0xCC49\t0x59CC\n0xCC4A\t0x59C1\n0xCC4B\t0x59B6\n0xCC4C\t0x59BC\n0xCC4D\t0x59C3\n0xCC4E\t0x59D6\n0xCC4F\t0x59B1\n0xCC50\t0x59BD\n0xCC51\t0x59C0\n0xCC52\t0x59C8\n0xCC53\t0x59B4\n0xCC54\t0x59C7\n0xCC55\t0x5B62\n0xCC56\t0x5B65\n0xCC57\t0x5B93\n0xCC58\t0x5B95\n0xCC59\t0x5C44\n0xCC5A\t0x5C47\n0xCC5B\t0x5CAE\n0xCC5C\t0x5CA4\n0xCC5D\t0x5CA0\n0xCC5E\t0x5CB5\n0xCC5F\t0x5CAF\n0xCC60\t0x5CA8\n0xCC61\t0x5CAC\n0xCC62\t0x5C9F\n0xCC63\t0x5CA3\n0xCC64\t0x5CAD\n0xCC65\t0x5CA2\n0xCC66\t0x5CAA\n0xCC67\t0x5CA7\n0xCC68\t0x5C9D\n0xCC69\t0x5CA5\n0xCC6A\t0x5CB6\n0xCC6B\t0x5CB0\n0xCC6C\t0x5CA6\n0xCC6D\t0x5E17\n0xCC6E\t0x5E14\n0xCC6F\t0x5E19\n0xCC70\t0x5F28\n0xCC71\t0x5F22\n0xCC72\t0x5F23\n0xCC73\t0x5F24\n0xCC74\t0x5F54\n0xCC75\t0x5F82\n0xCC76\t0x5F7E\n0xCC77\t0x5F7D\n0xCC78\t0x5FDE\n0xCC79\t0x5FE5\n0xCC7A\t0x602D\n0xCC7B\t0x6026\n0xCC7C\t0x6019\n0xCC7D\t0x6032\n0xCC7E\t0x600B\n0xCCA1\t0x6034\n0xCCA2\t0x600A\n0xCCA3\t0x6017\n0xCCA4\t0x6033\n0xCCA5\t0x601A\n0xCCA6\t0x601E\n0xCCA7\t0x602C\n0xCCA8\t0x6022\n0xCCA9\t0x600D\n0xCCAA\t0x6010\n0xCCAB\t0x602E\n0xCCAC\t0x6013\n0xCCAD\t0x6011\n0xCCAE\t0x600C\n0xCCAF\t0x6009\n0xCCB0\t0x601C\n0xCCB1\t0x6214\n0xCCB2\t0x623D\n0xCCB3\t0x62AD\n0xCCB4\t0x62B4\n0xCCB5\t0x62D1\n0xCCB6\t0x62BE\n0xCCB7\t0x62AA\n0xCCB8\t0x62B6\n0xCCB9\t0x62CA\n0xCCBA\t0x62AE\n0xCCBB\t0x62B3\n0xCCBC\t0x62AF\n0xCCBD\t0x62BB\n0xCCBE\t0x62A9\n0xCCBF\t0x62B0\n0xCCC0\t0x62B8\n0xCCC1\t0x653D\n0xCCC2\t0x65A8\n0xCCC3\t0x65BB\n0xCCC4\t0x6609\n0xCCC5\t0x65FC\n0xCCC6\t0x6604\n0xCCC7\t0x6612\n0xCCC8\t0x6608\n0xCCC9\t0x65FB\n0xCCCA\t0x6603\n0xCCCB\t0x660B\n0xCCCC\t0x660D\n0xCCCD\t0x6605\n0xCCCE\t0x65FD\n0xCCCF\t0x6611\n0xCCD0\t0x6610\n0xCCD1\t0x66F6\n0xCCD2\t0x670A\n0xCCD3\t0x6785\n0xCCD4\t0x676C\n0xCCD5\t0x678E\n0xCCD6\t0x6792\n0xCCD7\t0x6776\n0xCCD8\t0x677B\n0xCCD9\t0x6798\n0xCCDA\t0x6786\n0xCCDB\t0x6784\n0xCCDC\t0x6774\n0xCCDD\t0x678D\n0xCCDE\t0x678C\n0xCCDF\t0x677A\n0xCCE0\t0x679F\n0xCCE1\t0x6791\n0xCCE2\t0x6799\n0xCCE3\t0x6783\n0xCCE4\t0x677D\n0xCCE5\t0x6781\n0xCCE6\t0x6778\n0xCCE7\t0x6779\n0xCCE8\t0x6794\n0xCCE9\t0x6B25\n0xCCEA\t0x6B80\n0xCCEB\t0x6B7E\n0xCCEC\t0x6BDE\n0xCCED\t0x6C1D\n0xCCEE\t0x6C93\n0xCCEF\t0x6CEC\n0xCCF0\t0x6CEB\n0xCCF1\t0x6CEE\n0xCCF2\t0x6CD9\n0xCCF3\t0x6CB6\n0xCCF4\t0x6CD4\n0xCCF5\t0x6CAD\n0xCCF6\t0x6CE7\n0xCCF7\t0x6CB7\n0xCCF8\t0x6CD0\n0xCCF9\t0x6CC2\n0xCCFA\t0x6CBA\n0xCCFB\t0x6CC3\n0xCCFC\t0x6CC6\n0xCCFD\t0x6CED\n0xCCFE\t0x6CF2\n0xCD40\t0x6CD2\n0xCD41\t0x6CDD\n0xCD42\t0x6CB4\n0xCD43\t0x6C8A\n0xCD44\t0x6C9D\n0xCD45\t0x6C80\n0xCD46\t0x6CDE\n0xCD47\t0x6CC0\n0xCD48\t0x6D30\n0xCD49\t0x6CCD\n0xCD4A\t0x6CC7\n0xCD4B\t0x6CB0\n0xCD4C\t0x6CF9\n0xCD4D\t0x6CCF\n0xCD4E\t0x6CE9\n0xCD4F\t0x6CD1\n0xCD50\t0x7094\n0xCD51\t0x7098\n0xCD52\t0x7085\n0xCD53\t0x7093\n0xCD54\t0x7086\n0xCD55\t0x7084\n0xCD56\t0x7091\n0xCD57\t0x7096\n0xCD58\t0x7082\n0xCD59\t0x709A\n0xCD5A\t0x7083\n0xCD5B\t0x726A\n0xCD5C\t0x72D6\n0xCD5D\t0x72CB\n0xCD5E\t0x72D8\n0xCD5F\t0x72C9\n0xCD60\t0x72DC\n0xCD61\t0x72D2\n0xCD62\t0x72D4\n0xCD63\t0x72DA\n0xCD64\t0x72CC\n0xCD65\t0x72D1\n0xCD66\t0x73A4\n0xCD67\t0x73A1\n0xCD68\t0x73AD\n0xCD69\t0x73A6\n0xCD6A\t0x73A2\n0xCD6B\t0x73A0\n0xCD6C\t0x73AC\n0xCD6D\t0x739D\n0xCD6E\t0x74DD\n0xCD6F\t0x74E8\n0xCD70\t0x753F\n0xCD71\t0x7540\n0xCD72\t0x753E\n0xCD73\t0x758C\n0xCD74\t0x7598\n0xCD75\t0x76AF\n0xCD76\t0x76F3\n0xCD77\t0x76F1\n0xCD78\t0x76F0\n0xCD79\t0x76F5\n0xCD7A\t0x77F8\n0xCD7B\t0x77FC\n0xCD7C\t0x77F9\n0xCD7D\t0x77FB\n0xCD7E\t0x77FA\n0xCDA1\t0x77F7\n0xCDA2\t0x7942\n0xCDA3\t0x793F\n0xCDA4\t0x79C5\n0xCDA5\t0x7A78\n0xCDA6\t0x7A7B\n0xCDA7\t0x7AFB\n0xCDA8\t0x7C75\n0xCDA9\t0x7CFD\n0xCDAA\t0x8035\n0xCDAB\t0x808F\n0xCDAC\t0x80AE\n0xCDAD\t0x80A3\n0xCDAE\t0x80B8\n0xCDAF\t0x80B5\n0xCDB0\t0x80AD\n0xCDB1\t0x8220\n0xCDB2\t0x82A0\n0xCDB3\t0x82C0\n0xCDB4\t0x82AB\n0xCDB5\t0x829A\n0xCDB6\t0x8298\n0xCDB7\t0x829B\n0xCDB8\t0x82B5\n0xCDB9\t0x82A7\n0xCDBA\t0x82AE\n0xCDBB\t0x82BC\n0xCDBC\t0x829E\n0xCDBD\t0x82BA\n0xCDBE\t0x82B4\n0xCDBF\t0x82A8\n0xCDC0\t0x82A1\n0xCDC1\t0x82A9\n0xCDC2\t0x82C2\n0xCDC3\t0x82A4\n0xCDC4\t0x82C3\n0xCDC5\t0x82B6\n0xCDC6\t0x82A2\n0xCDC7\t0x8670\n0xCDC8\t0x866F\n0xCDC9\t0x866D\n0xCDCA\t0x866E\n0xCDCB\t0x8C56\n0xCDCC\t0x8FD2\n0xCDCD\t0x8FCB\n0xCDCE\t0x8FD3\n0xCDCF\t0x8FCD\n0xCDD0\t0x8FD6\n0xCDD1\t0x8FD5\n0xCDD2\t0x8FD7\n0xCDD3\t0x90B2\n0xCDD4\t0x90B4\n0xCDD5\t0x90AF\n0xCDD6\t0x90B3\n0xCDD7\t0x90B0\n0xCDD8\t0x9639\n0xCDD9\t0x963D\n0xCDDA\t0x963C\n0xCDDB\t0x963A\n0xCDDC\t0x9643\n0xCDDD\t0x4FCD\n0xCDDE\t0x4FC5\n0xCDDF\t0x4FD3\n0xCDE0\t0x4FB2\n0xCDE1\t0x4FC9\n0xCDE2\t0x4FCB\n0xCDE3\t0x4FC1\n0xCDE4\t0x4FD4\n0xCDE5\t0x4FDC\n0xCDE6\t0x4FD9\n0xCDE7\t0x4FBB\n0xCDE8\t0x4FB3\n0xCDE9\t0x4FDB\n0xCDEA\t0x4FC7\n0xCDEB\t0x4FD6\n0xCDEC\t0x4FBA\n0xCDED\t0x4FC0\n0xCDEE\t0x4FB9\n0xCDEF\t0x4FEC\n0xCDF0\t0x5244\n0xCDF1\t0x5249\n0xCDF2\t0x52C0\n0xCDF3\t0x52C2\n0xCDF4\t0x533D\n0xCDF5\t0x537C\n0xCDF6\t0x5397\n0xCDF7\t0x5396\n0xCDF8\t0x5399\n0xCDF9\t0x5398\n0xCDFA\t0x54BA\n0xCDFB\t0x54A1\n0xCDFC\t0x54AD\n0xCDFD\t0x54A5\n0xCDFE\t0x54CF\n0xCE40\t0x54C3\n0xCE41\t0x830D\n0xCE42\t0x54B7\n0xCE43\t0x54AE\n0xCE44\t0x54D6\n0xCE45\t0x54B6\n0xCE46\t0x54C5\n0xCE47\t0x54C6\n0xCE48\t0x54A0\n0xCE49\t0x5470\n0xCE4A\t0x54BC\n0xCE4B\t0x54A2\n0xCE4C\t0x54BE\n0xCE4D\t0x5472\n0xCE4E\t0x54DE\n0xCE4F\t0x54B0\n0xCE50\t0x57B5\n0xCE51\t0x579E\n0xCE52\t0x579F\n0xCE53\t0x57A4\n0xCE54\t0x578C\n0xCE55\t0x5797\n0xCE56\t0x579D\n0xCE57\t0x579B\n0xCE58\t0x5794\n0xCE59\t0x5798\n0xCE5A\t0x578F\n0xCE5B\t0x5799\n0xCE5C\t0x57A5\n0xCE5D\t0x579A\n0xCE5E\t0x5795\n0xCE5F\t0x58F4\n0xCE60\t0x590D\n0xCE61\t0x5953\n0xCE62\t0x59E1\n0xCE63\t0x59DE\n0xCE64\t0x59EE\n0xCE65\t0x5A00\n0xCE66\t0x59F1\n0xCE67\t0x59DD\n0xCE68\t0x59FA\n0xCE69\t0x59FD\n0xCE6A\t0x59FC\n0xCE6B\t0x59F6\n0xCE6C\t0x59E4\n0xCE6D\t0x59F2\n0xCE6E\t0x59F7\n0xCE6F\t0x59DB\n0xCE70\t0x59E9\n0xCE71\t0x59F3\n0xCE72\t0x59F5\n0xCE73\t0x59E0\n0xCE74\t0x59FE\n0xCE75\t0x59F4\n0xCE76\t0x59ED\n0xCE77\t0x5BA8\n0xCE78\t0x5C4C\n0xCE79\t0x5CD0\n0xCE7A\t0x5CD8\n0xCE7B\t0x5CCC\n0xCE7C\t0x5CD7\n0xCE7D\t0x5CCB\n0xCE7E\t0x5CDB\n0xCEA1\t0x5CDE\n0xCEA2\t0x5CDA\n0xCEA3\t0x5CC9\n0xCEA4\t0x5CC7\n0xCEA5\t0x5CCA\n0xCEA6\t0x5CD6\n0xCEA7\t0x5CD3\n0xCEA8\t0x5CD4\n0xCEA9\t0x5CCF\n0xCEAA\t0x5CC8\n0xCEAB\t0x5CC6\n0xCEAC\t0x5CCE\n0xCEAD\t0x5CDF\n0xCEAE\t0x5CF8\n0xCEAF\t0x5DF9\n0xCEB0\t0x5E21\n0xCEB1\t0x5E22\n0xCEB2\t0x5E23\n0xCEB3\t0x5E20\n0xCEB4\t0x5E24\n0xCEB5\t0x5EB0\n0xCEB6\t0x5EA4\n0xCEB7\t0x5EA2\n0xCEB8\t0x5E9B\n0xCEB9\t0x5EA3\n0xCEBA\t0x5EA5\n0xCEBB\t0x5F07\n0xCEBC\t0x5F2E\n0xCEBD\t0x5F56\n0xCEBE\t0x5F86\n0xCEBF\t0x6037\n0xCEC0\t0x6039\n0xCEC1\t0x6054\n0xCEC2\t0x6072\n0xCEC3\t0x605E\n0xCEC4\t0x6045\n0xCEC5\t0x6053\n0xCEC6\t0x6047\n0xCEC7\t0x6049\n0xCEC8\t0x605B\n0xCEC9\t0x604C\n0xCECA\t0x6040\n0xCECB\t0x6042\n0xCECC\t0x605F\n0xCECD\t0x6024\n0xCECE\t0x6044\n0xCECF\t0x6058\n0xCED0\t0x6066\n0xCED1\t0x606E\n0xCED2\t0x6242\n0xCED3\t0x6243\n0xCED4\t0x62CF\n0xCED5\t0x630D\n0xCED6\t0x630B\n0xCED7\t0x62F5\n0xCED8\t0x630E\n0xCED9\t0x6303\n0xCEDA\t0x62EB\n0xCEDB\t0x62F9\n0xCEDC\t0x630F\n0xCEDD\t0x630C\n0xCEDE\t0x62F8\n0xCEDF\t0x62F6\n0xCEE0\t0x6300\n0xCEE1\t0x6313\n0xCEE2\t0x6314\n0xCEE3\t0x62FA\n0xCEE4\t0x6315\n0xCEE5\t0x62FB\n0xCEE6\t0x62F0\n0xCEE7\t0x6541\n0xCEE8\t0x6543\n0xCEE9\t0x65AA\n0xCEEA\t0x65BF\n0xCEEB\t0x6636\n0xCEEC\t0x6621\n0xCEED\t0x6632\n0xCEEE\t0x6635\n0xCEEF\t0x661C\n0xCEF0\t0x6626\n0xCEF1\t0x6622\n0xCEF2\t0x6633\n0xCEF3\t0x662B\n0xCEF4\t0x663A\n0xCEF5\t0x661D\n0xCEF6\t0x6634\n0xCEF7\t0x6639\n0xCEF8\t0x662E\n0xCEF9\t0x670F\n0xCEFA\t0x6710\n0xCEFB\t0x67C1\n0xCEFC\t0x67F2\n0xCEFD\t0x67C8\n0xCEFE\t0x67BA\n0xCF40\t0x67DC\n0xCF41\t0x67BB\n0xCF42\t0x67F8\n0xCF43\t0x67D8\n0xCF44\t0x67C0\n0xCF45\t0x67B7\n0xCF46\t0x67C5\n0xCF47\t0x67EB\n0xCF48\t0x67E4\n0xCF49\t0x67DF\n0xCF4A\t0x67B5\n0xCF4B\t0x67CD\n0xCF4C\t0x67B3\n0xCF4D\t0x67F7\n0xCF4E\t0x67F6\n0xCF4F\t0x67EE\n0xCF50\t0x67E3\n0xCF51\t0x67C2\n0xCF52\t0x67B9\n0xCF53\t0x67CE\n0xCF54\t0x67E7\n0xCF55\t0x67F0\n0xCF56\t0x67B2\n0xCF57\t0x67FC\n0xCF58\t0x67C6\n0xCF59\t0x67ED\n0xCF5A\t0x67CC\n0xCF5B\t0x67AE\n0xCF5C\t0x67E6\n0xCF5D\t0x67DB\n0xCF5E\t0x67FA\n0xCF5F\t0x67C9\n0xCF60\t0x67CA\n0xCF61\t0x67C3\n0xCF62\t0x67EA\n0xCF63\t0x67CB\n0xCF64\t0x6B28\n0xCF65\t0x6B82\n0xCF66\t0x6B84\n0xCF67\t0x6BB6\n0xCF68\t0x6BD6\n0xCF69\t0x6BD8\n0xCF6A\t0x6BE0\n0xCF6B\t0x6C20\n0xCF6C\t0x6C21\n0xCF6D\t0x6D28\n0xCF6E\t0x6D34\n0xCF6F\t0x6D2D\n0xCF70\t0x6D1F\n0xCF71\t0x6D3C\n0xCF72\t0x6D3F\n0xCF73\t0x6D12\n0xCF74\t0x6D0A\n0xCF75\t0x6CDA\n0xCF76\t0x6D33\n0xCF77\t0x6D04\n0xCF78\t0x6D19\n0xCF79\t0x6D3A\n0xCF7A\t0x6D1A\n0xCF7B\t0x6D11\n0xCF7C\t0x6D00\n0xCF7D\t0x6D1D\n0xCF7E\t0x6D42\n0xCFA1\t0x6D01\n0xCFA2\t0x6D18\n0xCFA3\t0x6D37\n0xCFA4\t0x6D03\n0xCFA5\t0x6D0F\n0xCFA6\t0x6D40\n0xCFA7\t0x6D07\n0xCFA8\t0x6D20\n0xCFA9\t0x6D2C\n0xCFAA\t0x6D08\n0xCFAB\t0x6D22\n0xCFAC\t0x6D09\n0xCFAD\t0x6D10\n0xCFAE\t0x70B7\n0xCFAF\t0x709F\n0xCFB0\t0x70BE\n0xCFB1\t0x70B1\n0xCFB2\t0x70B0\n0xCFB3\t0x70A1\n0xCFB4\t0x70B4\n0xCFB5\t0x70B5\n0xCFB6\t0x70A9\n0xCFB7\t0x7241\n0xCFB8\t0x7249\n0xCFB9\t0x724A\n0xCFBA\t0x726C\n0xCFBB\t0x7270\n0xCFBC\t0x7273\n0xCFBD\t0x726E\n0xCFBE\t0x72CA\n0xCFBF\t0x72E4\n0xCFC0\t0x72E8\n0xCFC1\t0x72EB\n0xCFC2\t0x72DF\n0xCFC3\t0x72EA\n0xCFC4\t0x72E6\n0xCFC5\t0x72E3\n0xCFC6\t0x7385\n0xCFC7\t0x73CC\n0xCFC8\t0x73C2\n0xCFC9\t0x73C8\n0xCFCA\t0x73C5\n0xCFCB\t0x73B9\n0xCFCC\t0x73B6\n0xCFCD\t0x73B5\n0xCFCE\t0x73B4\n0xCFCF\t0x73EB\n0xCFD0\t0x73BF\n0xCFD1\t0x73C7\n0xCFD2\t0x73BE\n0xCFD3\t0x73C3\n0xCFD4\t0x73C6\n0xCFD5\t0x73B8\n0xCFD6\t0x73CB\n0xCFD7\t0x74EC\n0xCFD8\t0x74EE\n0xCFD9\t0x752E\n0xCFDA\t0x7547\n0xCFDB\t0x7548\n0xCFDC\t0x75A7\n0xCFDD\t0x75AA\n0xCFDE\t0x7679\n0xCFDF\t0x76C4\n0xCFE0\t0x7708\n0xCFE1\t0x7703\n0xCFE2\t0x7704\n0xCFE3\t0x7705\n0xCFE4\t0x770A\n0xCFE5\t0x76F7\n0xCFE6\t0x76FB\n0xCFE7\t0x76FA\n0xCFE8\t0x77E7\n0xCFE9\t0x77E8\n0xCFEA\t0x7806\n0xCFEB\t0x7811\n0xCFEC\t0x7812\n0xCFED\t0x7805\n0xCFEE\t0x7810\n0xCFEF\t0x780F\n0xCFF0\t0x780E\n0xCFF1\t0x7809\n0xCFF2\t0x7803\n0xCFF3\t0x7813\n0xCFF4\t0x794A\n0xCFF5\t0x794C\n0xCFF6\t0x794B\n0xCFF7\t0x7945\n0xCFF8\t0x7944\n0xCFF9\t0x79D5\n0xCFFA\t0x79CD\n0xCFFB\t0x79CF\n0xCFFC\t0x79D6\n0xCFFD\t0x79CE\n0xCFFE\t0x7A80\n0xD040\t0x7A7E\n0xD041\t0x7AD1\n0xD042\t0x7B00\n0xD043\t0x7B01\n0xD044\t0x7C7A\n0xD045\t0x7C78\n0xD046\t0x7C79\n0xD047\t0x7C7F\n0xD048\t0x7C80\n0xD049\t0x7C81\n0xD04A\t0x7D03\n0xD04B\t0x7D08\n0xD04C\t0x7D01\n0xD04D\t0x7F58\n0xD04E\t0x7F91\n0xD04F\t0x7F8D\n0xD050\t0x7FBE\n0xD051\t0x8007\n0xD052\t0x800E\n0xD053\t0x800F\n0xD054\t0x8014\n0xD055\t0x8037\n0xD056\t0x80D8\n0xD057\t0x80C7\n0xD058\t0x80E0\n0xD059\t0x80D1\n0xD05A\t0x80C8\n0xD05B\t0x80C2\n0xD05C\t0x80D0\n0xD05D\t0x80C5\n0xD05E\t0x80E3\n0xD05F\t0x80D9\n0xD060\t0x80DC\n0xD061\t0x80CA\n0xD062\t0x80D5\n0xD063\t0x80C9\n0xD064\t0x80CF\n0xD065\t0x80D7\n0xD066\t0x80E6\n0xD067\t0x80CD\n0xD068\t0x81FF\n0xD069\t0x8221\n0xD06A\t0x8294\n0xD06B\t0x82D9\n0xD06C\t0x82FE\n0xD06D\t0x82F9\n0xD06E\t0x8307\n0xD06F\t0x82E8\n0xD070\t0x8300\n0xD071\t0x82D5\n0xD072\t0x833A\n0xD073\t0x82EB\n0xD074\t0x82D6\n0xD075\t0x82F4\n0xD076\t0x82EC\n0xD077\t0x82E1\n0xD078\t0x82F2\n0xD079\t0x82F5\n0xD07A\t0x830C\n0xD07B\t0x82FB\n0xD07C\t0x82F6\n0xD07D\t0x82F0\n0xD07E\t0x82EA\n0xD0A1\t0x82E4\n0xD0A2\t0x82E0\n0xD0A3\t0x82FA\n0xD0A4\t0x82F3\n0xD0A5\t0x82ED\n0xD0A6\t0x8677\n0xD0A7\t0x8674\n0xD0A8\t0x867C\n0xD0A9\t0x8673\n0xD0AA\t0x8841\n0xD0AB\t0x884E\n0xD0AC\t0x8867\n0xD0AD\t0x886A\n0xD0AE\t0x8869\n0xD0AF\t0x89D3\n0xD0B0\t0x8A04\n0xD0B1\t0x8A07\n0xD0B2\t0x8D72\n0xD0B3\t0x8FE3\n0xD0B4\t0x8FE1\n0xD0B5\t0x8FEE\n0xD0B6\t0x8FE0\n0xD0B7\t0x90F1\n0xD0B8\t0x90BD\n0xD0B9\t0x90BF\n0xD0BA\t0x90D5\n0xD0BB\t0x90C5\n0xD0BC\t0x90BE\n0xD0BD\t0x90C7\n0xD0BE\t0x90CB\n0xD0BF\t0x90C8\n0xD0C0\t0x91D4\n0xD0C1\t0x91D3\n0xD0C2\t0x9654\n0xD0C3\t0x964F\n0xD0C4\t0x9651\n0xD0C5\t0x9653\n0xD0C6\t0x964A\n0xD0C7\t0x964E\n0xD0C8\t0x501E\n0xD0C9\t0x5005\n0xD0CA\t0x5007\n0xD0CB\t0x5013\n0xD0CC\t0x5022\n0xD0CD\t0x5030\n0xD0CE\t0x501B\n0xD0CF\t0x4FF5\n0xD0D0\t0x4FF4\n0xD0D1\t0x5033\n0xD0D2\t0x5037\n0xD0D3\t0x502C\n0xD0D4\t0x4FF6\n0xD0D5\t0x4FF7\n0xD0D6\t0x5017\n0xD0D7\t0x501C\n0xD0D8\t0x5020\n0xD0D9\t0x5027\n0xD0DA\t0x5035\n0xD0DB\t0x502F\n0xD0DC\t0x5031\n0xD0DD\t0x500E\n0xD0DE\t0x515A\n0xD0DF\t0x5194\n0xD0E0\t0x5193\n0xD0E1\t0x51CA\n0xD0E2\t0x51C4\n0xD0E3\t0x51C5\n0xD0E4\t0x51C8\n0xD0E5\t0x51CE\n0xD0E6\t0x5261\n0xD0E7\t0x525A\n0xD0E8\t0x5252\n0xD0E9\t0x525E\n0xD0EA\t0x525F\n0xD0EB\t0x5255\n0xD0EC\t0x5262\n0xD0ED\t0x52CD\n0xD0EE\t0x530E\n0xD0EF\t0x539E\n0xD0F0\t0x5526\n0xD0F1\t0x54E2\n0xD0F2\t0x5517\n0xD0F3\t0x5512\n0xD0F4\t0x54E7\n0xD0F5\t0x54F3\n0xD0F6\t0x54E4\n0xD0F7\t0x551A\n0xD0F8\t0x54FF\n0xD0F9\t0x5504\n0xD0FA\t0x5508\n0xD0FB\t0x54EB\n0xD0FC\t0x5511\n0xD0FD\t0x5505\n0xD0FE\t0x54F1\n0xD140\t0x550A\n0xD141\t0x54FB\n0xD142\t0x54F7\n0xD143\t0x54F8\n0xD144\t0x54E0\n0xD145\t0x550E\n0xD146\t0x5503\n0xD147\t0x550B\n0xD148\t0x5701\n0xD149\t0x5702\n0xD14A\t0x57CC\n0xD14B\t0x5832\n0xD14C\t0x57D5\n0xD14D\t0x57D2\n0xD14E\t0x57BA\n0xD14F\t0x57C6\n0xD150\t0x57BD\n0xD151\t0x57BC\n0xD152\t0x57B8\n0xD153\t0x57B6\n0xD154\t0x57BF\n0xD155\t0x57C7\n0xD156\t0x57D0\n0xD157\t0x57B9\n0xD158\t0x57C1\n0xD159\t0x590E\n0xD15A\t0x594A\n0xD15B\t0x5A19\n0xD15C\t0x5A16\n0xD15D\t0x5A2D\n0xD15E\t0x5A2E\n0xD15F\t0x5A15\n0xD160\t0x5A0F\n0xD161\t0x5A17\n0xD162\t0x5A0A\n0xD163\t0x5A1E\n0xD164\t0x5A33\n0xD165\t0x5B6C\n0xD166\t0x5BA7\n0xD167\t0x5BAD\n0xD168\t0x5BAC\n0xD169\t0x5C03\n0xD16A\t0x5C56\n0xD16B\t0x5C54\n0xD16C\t0x5CEC\n0xD16D\t0x5CFF\n0xD16E\t0x5CEE\n0xD16F\t0x5CF1\n0xD170\t0x5CF7\n0xD171\t0x5D00\n0xD172\t0x5CF9\n0xD173\t0x5E29\n0xD174\t0x5E28\n0xD175\t0x5EA8\n0xD176\t0x5EAE\n0xD177\t0x5EAA\n0xD178\t0x5EAC\n0xD179\t0x5F33\n0xD17A\t0x5F30\n0xD17B\t0x5F67\n0xD17C\t0x605D\n0xD17D\t0x605A\n0xD17E\t0x6067\n0xD1A1\t0x6041\n0xD1A2\t0x60A2\n0xD1A3\t0x6088\n0xD1A4\t0x6080\n0xD1A5\t0x6092\n0xD1A6\t0x6081\n0xD1A7\t0x609D\n0xD1A8\t0x6083\n0xD1A9\t0x6095\n0xD1AA\t0x609B\n0xD1AB\t0x6097\n0xD1AC\t0x6087\n0xD1AD\t0x609C\n0xD1AE\t0x608E\n0xD1AF\t0x6219\n0xD1B0\t0x6246\n0xD1B1\t0x62F2\n0xD1B2\t0x6310\n0xD1B3\t0x6356\n0xD1B4\t0x632C\n0xD1B5\t0x6344\n0xD1B6\t0x6345\n0xD1B7\t0x6336\n0xD1B8\t0x6343\n0xD1B9\t0x63E4\n0xD1BA\t0x6339\n0xD1BB\t0x634B\n0xD1BC\t0x634A\n0xD1BD\t0x633C\n0xD1BE\t0x6329\n0xD1BF\t0x6341\n0xD1C0\t0x6334\n0xD1C1\t0x6358\n0xD1C2\t0x6354\n0xD1C3\t0x6359\n0xD1C4\t0x632D\n0xD1C5\t0x6347\n0xD1C6\t0x6333\n0xD1C7\t0x635A\n0xD1C8\t0x6351\n0xD1C9\t0x6338\n0xD1CA\t0x6357\n0xD1CB\t0x6340\n0xD1CC\t0x6348\n0xD1CD\t0x654A\n0xD1CE\t0x6546\n0xD1CF\t0x65C6\n0xD1D0\t0x65C3\n0xD1D1\t0x65C4\n0xD1D2\t0x65C2\n0xD1D3\t0x664A\n0xD1D4\t0x665F\n0xD1D5\t0x6647\n0xD1D6\t0x6651\n0xD1D7\t0x6712\n0xD1D8\t0x6713\n0xD1D9\t0x681F\n0xD1DA\t0x681A\n0xD1DB\t0x6849\n0xD1DC\t0x6832\n0xD1DD\t0x6833\n0xD1DE\t0x683B\n0xD1DF\t0x684B\n0xD1E0\t0x684F\n0xD1E1\t0x6816\n0xD1E2\t0x6831\n0xD1E3\t0x681C\n0xD1E4\t0x6835\n0xD1E5\t0x682B\n0xD1E6\t0x682D\n0xD1E7\t0x682F\n0xD1E8\t0x684E\n0xD1E9\t0x6844\n0xD1EA\t0x6834\n0xD1EB\t0x681D\n0xD1EC\t0x6812\n0xD1ED\t0x6814\n0xD1EE\t0x6826\n0xD1EF\t0x6828\n0xD1F0\t0x682E\n0xD1F1\t0x684D\n0xD1F2\t0x683A\n0xD1F3\t0x6825\n0xD1F4\t0x6820\n0xD1F5\t0x6B2C\n0xD1F6\t0x6B2F\n0xD1F7\t0x6B2D\n0xD1F8\t0x6B31\n0xD1F9\t0x6B34\n0xD1FA\t0x6B6D\n0xD1FB\t0x8082\n0xD1FC\t0x6B88\n0xD1FD\t0x6BE6\n0xD1FE\t0x6BE4\n0xD240\t0x6BE8\n0xD241\t0x6BE3\n0xD242\t0x6BE2\n0xD243\t0x6BE7\n0xD244\t0x6C25\n0xD245\t0x6D7A\n0xD246\t0x6D63\n0xD247\t0x6D64\n0xD248\t0x6D76\n0xD249\t0x6D0D\n0xD24A\t0x6D61\n0xD24B\t0x6D92\n0xD24C\t0x6D58\n0xD24D\t0x6D62\n0xD24E\t0x6D6D\n0xD24F\t0x6D6F\n0xD250\t0x6D91\n0xD251\t0x6D8D\n0xD252\t0x6DEF\n0xD253\t0x6D7F\n0xD254\t0x6D86\n0xD255\t0x6D5E\n0xD256\t0x6D67\n0xD257\t0x6D60\n0xD258\t0x6D97\n0xD259\t0x6D70\n0xD25A\t0x6D7C\n0xD25B\t0x6D5F\n0xD25C\t0x6D82\n0xD25D\t0x6D98\n0xD25E\t0x6D2F\n0xD25F\t0x6D68\n0xD260\t0x6D8B\n0xD261\t0x6D7E\n0xD262\t0x6D80\n0xD263\t0x6D84\n0xD264\t0x6D16\n0xD265\t0x6D83\n0xD266\t0x6D7B\n0xD267\t0x6D7D\n0xD268\t0x6D75\n0xD269\t0x6D90\n0xD26A\t0x70DC\n0xD26B\t0x70D3\n0xD26C\t0x70D1\n0xD26D\t0x70DD\n0xD26E\t0x70CB\n0xD26F\t0x7F39\n0xD270\t0x70E2\n0xD271\t0x70D7\n0xD272\t0x70D2\n0xD273\t0x70DE\n0xD274\t0x70E0\n0xD275\t0x70D4\n0xD276\t0x70CD\n0xD277\t0x70C5\n0xD278\t0x70C6\n0xD279\t0x70C7\n0xD27A\t0x70DA\n0xD27B\t0x70CE\n0xD27C\t0x70E1\n0xD27D\t0x7242\n0xD27E\t0x7278\n0xD2A1\t0x7277\n0xD2A2\t0x7276\n0xD2A3\t0x7300\n0xD2A4\t0x72FA\n0xD2A5\t0x72F4\n0xD2A6\t0x72FE\n0xD2A7\t0x72F6\n0xD2A8\t0x72F3\n0xD2A9\t0x72FB\n0xD2AA\t0x7301\n0xD2AB\t0x73D3\n0xD2AC\t0x73D9\n0xD2AD\t0x73E5\n0xD2AE\t0x73D6\n0xD2AF\t0x73BC\n0xD2B0\t0x73E7\n0xD2B1\t0x73E3\n0xD2B2\t0x73E9\n0xD2B3\t0x73DC\n0xD2B4\t0x73D2\n0xD2B5\t0x73DB\n0xD2B6\t0x73D4\n0xD2B7\t0x73DD\n0xD2B8\t0x73DA\n0xD2B9\t0x73D7\n0xD2BA\t0x73D8\n0xD2BB\t0x73E8\n0xD2BC\t0x74DE\n0xD2BD\t0x74DF\n0xD2BE\t0x74F4\n0xD2BF\t0x74F5\n0xD2C0\t0x7521\n0xD2C1\t0x755B\n0xD2C2\t0x755F\n0xD2C3\t0x75B0\n0xD2C4\t0x75C1\n0xD2C5\t0x75BB\n0xD2C6\t0x75C4\n0xD2C7\t0x75C0\n0xD2C8\t0x75BF\n0xD2C9\t0x75B6\n0xD2CA\t0x75BA\n0xD2CB\t0x768A\n0xD2CC\t0x76C9\n0xD2CD\t0x771D\n0xD2CE\t0x771B\n0xD2CF\t0x7710\n0xD2D0\t0x7713\n0xD2D1\t0x7712\n0xD2D2\t0x7723\n0xD2D3\t0x7711\n0xD2D4\t0x7715\n0xD2D5\t0x7719\n0xD2D6\t0x771A\n0xD2D7\t0x7722\n0xD2D8\t0x7727\n0xD2D9\t0x7823\n0xD2DA\t0x782C\n0xD2DB\t0x7822\n0xD2DC\t0x7835\n0xD2DD\t0x782F\n0xD2DE\t0x7828\n0xD2DF\t0x782E\n0xD2E0\t0x782B\n0xD2E1\t0x7821\n0xD2E2\t0x7829\n0xD2E3\t0x7833\n0xD2E4\t0x782A\n0xD2E5\t0x7831\n0xD2E6\t0x7954\n0xD2E7\t0x795B\n0xD2E8\t0x794F\n0xD2E9\t0x795C\n0xD2EA\t0x7953\n0xD2EB\t0x7952\n0xD2EC\t0x7951\n0xD2ED\t0x79EB\n0xD2EE\t0x79EC\n0xD2EF\t0x79E0\n0xD2F0\t0x79EE\n0xD2F1\t0x79ED\n0xD2F2\t0x79EA\n0xD2F3\t0x79DC\n0xD2F4\t0x79DE\n0xD2F5\t0x79DD\n0xD2F6\t0x7A86\n0xD2F7\t0x7A89\n0xD2F8\t0x7A85\n0xD2F9\t0x7A8B\n0xD2FA\t0x7A8C\n0xD2FB\t0x7A8A\n0xD2FC\t0x7A87\n0xD2FD\t0x7AD8\n0xD2FE\t0x7B10\n0xD340\t0x7B04\n0xD341\t0x7B13\n0xD342\t0x7B05\n0xD343\t0x7B0F\n0xD344\t0x7B08\n0xD345\t0x7B0A\n0xD346\t0x7B0E\n0xD347\t0x7B09\n0xD348\t0x7B12\n0xD349\t0x7C84\n0xD34A\t0x7C91\n0xD34B\t0x7C8A\n0xD34C\t0x7C8C\n0xD34D\t0x7C88\n0xD34E\t0x7C8D\n0xD34F\t0x7C85\n0xD350\t0x7D1E\n0xD351\t0x7D1D\n0xD352\t0x7D11\n0xD353\t0x7D0E\n0xD354\t0x7D18\n0xD355\t0x7D16\n0xD356\t0x7D13\n0xD357\t0x7D1F\n0xD358\t0x7D12\n0xD359\t0x7D0F\n0xD35A\t0x7D0C\n0xD35B\t0x7F5C\n0xD35C\t0x7F61\n0xD35D\t0x7F5E\n0xD35E\t0x7F60\n0xD35F\t0x7F5D\n0xD360\t0x7F5B\n0xD361\t0x7F96\n0xD362\t0x7F92\n0xD363\t0x7FC3\n0xD364\t0x7FC2\n0xD365\t0x7FC0\n0xD366\t0x8016\n0xD367\t0x803E\n0xD368\t0x8039\n0xD369\t0x80FA\n0xD36A\t0x80F2\n0xD36B\t0x80F9\n0xD36C\t0x80F5\n0xD36D\t0x8101\n0xD36E\t0x80FB\n0xD36F\t0x8100\n0xD370\t0x8201\n0xD371\t0x822F\n0xD372\t0x8225\n0xD373\t0x8333\n0xD374\t0x832D\n0xD375\t0x8344\n0xD376\t0x8319\n0xD377\t0x8351\n0xD378\t0x8325\n0xD379\t0x8356\n0xD37A\t0x833F\n0xD37B\t0x8341\n0xD37C\t0x8326\n0xD37D\t0x831C\n0xD37E\t0x8322\n0xD3A1\t0x8342\n0xD3A2\t0x834E\n0xD3A3\t0x831B\n0xD3A4\t0x832A\n0xD3A5\t0x8308\n0xD3A6\t0x833C\n0xD3A7\t0x834D\n0xD3A8\t0x8316\n0xD3A9\t0x8324\n0xD3AA\t0x8320\n0xD3AB\t0x8337\n0xD3AC\t0x832F\n0xD3AD\t0x8329\n0xD3AE\t0x8347\n0xD3AF\t0x8345\n0xD3B0\t0x834C\n0xD3B1\t0x8353\n0xD3B2\t0x831E\n0xD3B3\t0x832C\n0xD3B4\t0x834B\n0xD3B5\t0x8327\n0xD3B6\t0x8348\n0xD3B7\t0x8653\n0xD3B8\t0x8652\n0xD3B9\t0x86A2\n0xD3BA\t0x86A8\n0xD3BB\t0x8696\n0xD3BC\t0x868D\n0xD3BD\t0x8691\n0xD3BE\t0x869E\n0xD3BF\t0x8687\n0xD3C0\t0x8697\n0xD3C1\t0x8686\n0xD3C2\t0x868B\n0xD3C3\t0x869A\n0xD3C4\t0x8685\n0xD3C5\t0x86A5\n0xD3C6\t0x8699\n0xD3C7\t0x86A1\n0xD3C8\t0x86A7\n0xD3C9\t0x8695\n0xD3CA\t0x8698\n0xD3CB\t0x868E\n0xD3CC\t0x869D\n0xD3CD\t0x8690\n0xD3CE\t0x8694\n0xD3CF\t0x8843\n0xD3D0\t0x8844\n0xD3D1\t0x886D\n0xD3D2\t0x8875\n0xD3D3\t0x8876\n0xD3D4\t0x8872\n0xD3D5\t0x8880\n0xD3D6\t0x8871\n0xD3D7\t0x887F\n0xD3D8\t0x886F\n0xD3D9\t0x8883\n0xD3DA\t0x887E\n0xD3DB\t0x8874\n0xD3DC\t0x887C\n0xD3DD\t0x8A12\n0xD3DE\t0x8C47\n0xD3DF\t0x8C57\n0xD3E0\t0x8C7B\n0xD3E1\t0x8CA4\n0xD3E2\t0x8CA3\n0xD3E3\t0x8D76\n0xD3E4\t0x8D78\n0xD3E5\t0x8DB5\n0xD3E6\t0x8DB7\n0xD3E7\t0x8DB6\n0xD3E8\t0x8ED1\n0xD3E9\t0x8ED3\n0xD3EA\t0x8FFE\n0xD3EB\t0x8FF5\n0xD3EC\t0x9002\n0xD3ED\t0x8FFF\n0xD3EE\t0x8FFB\n0xD3EF\t0x9004\n0xD3F0\t0x8FFC\n0xD3F1\t0x8FF6\n0xD3F2\t0x90D6\n0xD3F3\t0x90E0\n0xD3F4\t0x90D9\n0xD3F5\t0x90DA\n0xD3F6\t0x90E3\n0xD3F7\t0x90DF\n0xD3F8\t0x90E5\n0xD3F9\t0x90D8\n0xD3FA\t0x90DB\n0xD3FB\t0x90D7\n0xD3FC\t0x90DC\n0xD3FD\t0x90E4\n0xD3FE\t0x9150\n0xD440\t0x914E\n0xD441\t0x914F\n0xD442\t0x91D5\n0xD443\t0x91E2\n0xD444\t0x91DA\n0xD445\t0x965C\n0xD446\t0x965F\n0xD447\t0x96BC\n0xD448\t0x98E3\n0xD449\t0x9ADF\n0xD44A\t0x9B2F\n0xD44B\t0x4E7F\n0xD44C\t0x5070\n0xD44D\t0x506A\n0xD44E\t0x5061\n0xD44F\t0x505E\n0xD450\t0x5060\n0xD451\t0x5053\n0xD452\t0x504B\n0xD453\t0x505D\n0xD454\t0x5072\n0xD455\t0x5048\n0xD456\t0x504D\n0xD457\t0x5041\n0xD458\t0x505B\n0xD459\t0x504A\n0xD45A\t0x5062\n0xD45B\t0x5015\n0xD45C\t0x5045\n0xD45D\t0x505F\n0xD45E\t0x5069\n0xD45F\t0x506B\n0xD460\t0x5063\n0xD461\t0x5064\n0xD462\t0x5046\n0xD463\t0x5040\n0xD464\t0x506E\n0xD465\t0x5073\n0xD466\t0x5057\n0xD467\t0x5051\n0xD468\t0x51D0\n0xD469\t0x526B\n0xD46A\t0x526D\n0xD46B\t0x526C\n0xD46C\t0x526E\n0xD46D\t0x52D6\n0xD46E\t0x52D3\n0xD46F\t0x532D\n0xD470\t0x539C\n0xD471\t0x5575\n0xD472\t0x5576\n0xD473\t0x553C\n0xD474\t0x554D\n0xD475\t0x5550\n0xD476\t0x5534\n0xD477\t0x552A\n0xD478\t0x5551\n0xD479\t0x5562\n0xD47A\t0x5536\n0xD47B\t0x5535\n0xD47C\t0x5530\n0xD47D\t0x5552\n0xD47E\t0x5545\n0xD4A1\t0x550C\n0xD4A2\t0x5532\n0xD4A3\t0x5565\n0xD4A4\t0x554E\n0xD4A5\t0x5539\n0xD4A6\t0x5548\n0xD4A7\t0x552D\n0xD4A8\t0x553B\n0xD4A9\t0x5540\n0xD4AA\t0x554B\n0xD4AB\t0x570A\n0xD4AC\t0x5707\n0xD4AD\t0x57FB\n0xD4AE\t0x5814\n0xD4AF\t0x57E2\n0xD4B0\t0x57F6\n0xD4B1\t0x57DC\n0xD4B2\t0x57F4\n0xD4B3\t0x5800\n0xD4B4\t0x57ED\n0xD4B5\t0x57FD\n0xD4B6\t0x5808\n0xD4B7\t0x57F8\n0xD4B8\t0x580B\n0xD4B9\t0x57F3\n0xD4BA\t0x57CF\n0xD4BB\t0x5807\n0xD4BC\t0x57EE\n0xD4BD\t0x57E3\n0xD4BE\t0x57F2\n0xD4BF\t0x57E5\n0xD4C0\t0x57EC\n0xD4C1\t0x57E1\n0xD4C2\t0x580E\n0xD4C3\t0x57FC\n0xD4C4\t0x5810\n0xD4C5\t0x57E7\n0xD4C6\t0x5801\n0xD4C7\t0x580C\n0xD4C8\t0x57F1\n0xD4C9\t0x57E9\n0xD4CA\t0x57F0\n0xD4CB\t0x580D\n0xD4CC\t0x5804\n0xD4CD\t0x595C\n0xD4CE\t0x5A60\n0xD4CF\t0x5A58\n0xD4D0\t0x5A55\n0xD4D1\t0x5A67\n0xD4D2\t0x5A5E\n0xD4D3\t0x5A38\n0xD4D4\t0x5A35\n0xD4D5\t0x5A6D\n0xD4D6\t0x5A50\n0xD4D7\t0x5A5F\n0xD4D8\t0x5A65\n0xD4D9\t0x5A6C\n0xD4DA\t0x5A53\n0xD4DB\t0x5A64\n0xD4DC\t0x5A57\n0xD4DD\t0x5A43\n0xD4DE\t0x5A5D\n0xD4DF\t0x5A52\n0xD4E0\t0x5A44\n0xD4E1\t0x5A5B\n0xD4E2\t0x5A48\n0xD4E3\t0x5A8E\n0xD4E4\t0x5A3E\n0xD4E5\t0x5A4D\n0xD4E6\t0x5A39\n0xD4E7\t0x5A4C\n0xD4E8\t0x5A70\n0xD4E9\t0x5A69\n0xD4EA\t0x5A47\n0xD4EB\t0x5A51\n0xD4EC\t0x5A56\n0xD4ED\t0x5A42\n0xD4EE\t0x5A5C\n0xD4EF\t0x5B72\n0xD4F0\t0x5B6E\n0xD4F1\t0x5BC1\n0xD4F2\t0x5BC0\n0xD4F3\t0x5C59\n0xD4F4\t0x5D1E\n0xD4F5\t0x5D0B\n0xD4F6\t0x5D1D\n0xD4F7\t0x5D1A\n0xD4F8\t0x5D20\n0xD4F9\t0x5D0C\n0xD4FA\t0x5D28\n0xD4FB\t0x5D0D\n0xD4FC\t0x5D26\n0xD4FD\t0x5D25\n0xD4FE\t0x5D0F\n0xD540\t0x5D30\n0xD541\t0x5D12\n0xD542\t0x5D23\n0xD543\t0x5D1F\n0xD544\t0x5D2E\n0xD545\t0x5E3E\n0xD546\t0x5E34\n0xD547\t0x5EB1\n0xD548\t0x5EB4\n0xD549\t0x5EB9\n0xD54A\t0x5EB2\n0xD54B\t0x5EB3\n0xD54C\t0x5F36\n0xD54D\t0x5F38\n0xD54E\t0x5F9B\n0xD54F\t0x5F96\n0xD550\t0x5F9F\n0xD551\t0x608A\n0xD552\t0x6090\n0xD553\t0x6086\n0xD554\t0x60BE\n0xD555\t0x60B0\n0xD556\t0x60BA\n0xD557\t0x60D3\n0xD558\t0x60D4\n0xD559\t0x60CF\n0xD55A\t0x60E4\n0xD55B\t0x60D9\n0xD55C\t0x60DD\n0xD55D\t0x60C8\n0xD55E\t0x60B1\n0xD55F\t0x60DB\n0xD560\t0x60B7\n0xD561\t0x60CA\n0xD562\t0x60BF\n0xD563\t0x60C3\n0xD564\t0x60CD\n0xD565\t0x60C0\n0xD566\t0x6332\n0xD567\t0x6365\n0xD568\t0x638A\n0xD569\t0x6382\n0xD56A\t0x637D\n0xD56B\t0x63BD\n0xD56C\t0x639E\n0xD56D\t0x63AD\n0xD56E\t0x639D\n0xD56F\t0x6397\n0xD570\t0x63AB\n0xD571\t0x638E\n0xD572\t0x636F\n0xD573\t0x6387\n0xD574\t0x6390\n0xD575\t0x636E\n0xD576\t0x63AF\n0xD577\t0x6375\n0xD578\t0x639C\n0xD579\t0x636D\n0xD57A\t0x63AE\n0xD57B\t0x637C\n0xD57C\t0x63A4\n0xD57D\t0x633B\n0xD57E\t0x639F\n0xD5A1\t0x6378\n0xD5A2\t0x6385\n0xD5A3\t0x6381\n0xD5A4\t0x6391\n0xD5A5\t0x638D\n0xD5A6\t0x6370\n0xD5A7\t0x6553\n0xD5A8\t0x65CD\n0xD5A9\t0x6665\n0xD5AA\t0x6661\n0xD5AB\t0x665B\n0xD5AC\t0x6659\n0xD5AD\t0x665C\n0xD5AE\t0x6662\n0xD5AF\t0x6718\n0xD5B0\t0x6879\n0xD5B1\t0x6887\n0xD5B2\t0x6890\n0xD5B3\t0x689C\n0xD5B4\t0x686D\n0xD5B5\t0x686E\n0xD5B6\t0x68AE\n0xD5B7\t0x68AB\n0xD5B8\t0x6956\n0xD5B9\t0x686F\n0xD5BA\t0x68A3\n0xD5BB\t0x68AC\n0xD5BC\t0x68A9\n0xD5BD\t0x6875\n0xD5BE\t0x6874\n0xD5BF\t0x68B2\n0xD5C0\t0x688F\n0xD5C1\t0x6877\n0xD5C2\t0x6892\n0xD5C3\t0x687C\n0xD5C4\t0x686B\n0xD5C5\t0x6872\n0xD5C6\t0x68AA\n0xD5C7\t0x6880\n0xD5C8\t0x6871\n0xD5C9\t0x687E\n0xD5CA\t0x689B\n0xD5CB\t0x6896\n0xD5CC\t0x688B\n0xD5CD\t0x68A0\n0xD5CE\t0x6889\n0xD5CF\t0x68A4\n0xD5D0\t0x6878\n0xD5D1\t0x687B\n0xD5D2\t0x6891\n0xD5D3\t0x688C\n0xD5D4\t0x688A\n0xD5D5\t0x687D\n0xD5D6\t0x6B36\n0xD5D7\t0x6B33\n0xD5D8\t0x6B37\n0xD5D9\t0x6B38\n0xD5DA\t0x6B91\n0xD5DB\t0x6B8F\n0xD5DC\t0x6B8D\n0xD5DD\t0x6B8E\n0xD5DE\t0x6B8C\n0xD5DF\t0x6C2A\n0xD5E0\t0x6DC0\n0xD5E1\t0x6DAB\n0xD5E2\t0x6DB4\n0xD5E3\t0x6DB3\n0xD5E4\t0x6E74\n0xD5E5\t0x6DAC\n0xD5E6\t0x6DE9\n0xD5E7\t0x6DE2\n0xD5E8\t0x6DB7\n0xD5E9\t0x6DF6\n0xD5EA\t0x6DD4\n0xD5EB\t0x6E00\n0xD5EC\t0x6DC8\n0xD5ED\t0x6DE0\n0xD5EE\t0x6DDF\n0xD5EF\t0x6DD6\n0xD5F0\t0x6DBE\n0xD5F1\t0x6DE5\n0xD5F2\t0x6DDC\n0xD5F3\t0x6DDD\n0xD5F4\t0x6DDB\n0xD5F5\t0x6DF4\n0xD5F6\t0x6DCA\n0xD5F7\t0x6DBD\n0xD5F8\t0x6DED\n0xD5F9\t0x6DF0\n0xD5FA\t0x6DBA\n0xD5FB\t0x6DD5\n0xD5FC\t0x6DC2\n0xD5FD\t0x6DCF\n0xD5FE\t0x6DC9\n0xD640\t0x6DD0\n0xD641\t0x6DF2\n0xD642\t0x6DD3\n0xD643\t0x6DFD\n0xD644\t0x6DD7\n0xD645\t0x6DCD\n0xD646\t0x6DE3\n0xD647\t0x6DBB\n0xD648\t0x70FA\n0xD649\t0x710D\n0xD64A\t0x70F7\n0xD64B\t0x7117\n0xD64C\t0x70F4\n0xD64D\t0x710C\n0xD64E\t0x70F0\n0xD64F\t0x7104\n0xD650\t0x70F3\n0xD651\t0x7110\n0xD652\t0x70FC\n0xD653\t0x70FF\n0xD654\t0x7106\n0xD655\t0x7113\n0xD656\t0x7100\n0xD657\t0x70F8\n0xD658\t0x70F6\n0xD659\t0x710B\n0xD65A\t0x7102\n0xD65B\t0x710E\n0xD65C\t0x727E\n0xD65D\t0x727B\n0xD65E\t0x727C\n0xD65F\t0x727F\n0xD660\t0x731D\n0xD661\t0x7317\n0xD662\t0x7307\n0xD663\t0x7311\n0xD664\t0x7318\n0xD665\t0x730A\n0xD666\t0x7308\n0xD667\t0x72FF\n0xD668\t0x730F\n0xD669\t0x731E\n0xD66A\t0x7388\n0xD66B\t0x73F6\n0xD66C\t0x73F8\n0xD66D\t0x73F5\n0xD66E\t0x7404\n0xD66F\t0x7401\n0xD670\t0x73FD\n0xD671\t0x7407\n0xD672\t0x7400\n0xD673\t0x73FA\n0xD674\t0x73FC\n0xD675\t0x73FF\n0xD676\t0x740C\n0xD677\t0x740B\n0xD678\t0x73F4\n0xD679\t0x7408\n0xD67A\t0x7564\n0xD67B\t0x7563\n0xD67C\t0x75CE\n0xD67D\t0x75D2\n0xD67E\t0x75CF\n0xD6A1\t0x75CB\n0xD6A2\t0x75CC\n0xD6A3\t0x75D1\n0xD6A4\t0x75D0\n0xD6A5\t0x768F\n0xD6A6\t0x7689\n0xD6A7\t0x76D3\n0xD6A8\t0x7739\n0xD6A9\t0x772F\n0xD6AA\t0x772D\n0xD6AB\t0x7731\n0xD6AC\t0x7732\n0xD6AD\t0x7734\n0xD6AE\t0x7733\n0xD6AF\t0x773D\n0xD6B0\t0x7725\n0xD6B1\t0x773B\n0xD6B2\t0x7735\n0xD6B3\t0x7848\n0xD6B4\t0x7852\n0xD6B5\t0x7849\n0xD6B6\t0x784D\n0xD6B7\t0x784A\n0xD6B8\t0x784C\n0xD6B9\t0x7826\n0xD6BA\t0x7845\n0xD6BB\t0x7850\n0xD6BC\t0x7964\n0xD6BD\t0x7967\n0xD6BE\t0x7969\n0xD6BF\t0x796A\n0xD6C0\t0x7963\n0xD6C1\t0x796B\n0xD6C2\t0x7961\n0xD6C3\t0x79BB\n0xD6C4\t0x79FA\n0xD6C5\t0x79F8\n0xD6C6\t0x79F6\n0xD6C7\t0x79F7\n0xD6C8\t0x7A8F\n0xD6C9\t0x7A94\n0xD6CA\t0x7A90\n0xD6CB\t0x7B35\n0xD6CC\t0x7B47\n0xD6CD\t0x7B34\n0xD6CE\t0x7B25\n0xD6CF\t0x7B30\n0xD6D0\t0x7B22\n0xD6D1\t0x7B24\n0xD6D2\t0x7B33\n0xD6D3\t0x7B18\n0xD6D4\t0x7B2A\n0xD6D5\t0x7B1D\n0xD6D6\t0x7B31\n0xD6D7\t0x7B2B\n0xD6D8\t0x7B2D\n0xD6D9\t0x7B2F\n0xD6DA\t0x7B32\n0xD6DB\t0x7B38\n0xD6DC\t0x7B1A\n0xD6DD\t0x7B23\n0xD6DE\t0x7C94\n0xD6DF\t0x7C98\n0xD6E0\t0x7C96\n0xD6E1\t0x7CA3\n0xD6E2\t0x7D35\n0xD6E3\t0x7D3D\n0xD6E4\t0x7D38\n0xD6E5\t0x7D36\n0xD6E6\t0x7D3A\n0xD6E7\t0x7D45\n0xD6E8\t0x7D2C\n0xD6E9\t0x7D29\n0xD6EA\t0x7D41\n0xD6EB\t0x7D47\n0xD6EC\t0x7D3E\n0xD6ED\t0x7D3F\n0xD6EE\t0x7D4A\n0xD6EF\t0x7D3B\n0xD6F0\t0x7D28\n0xD6F1\t0x7F63\n0xD6F2\t0x7F95\n0xD6F3\t0x7F9C\n0xD6F4\t0x7F9D\n0xD6F5\t0x7F9B\n0xD6F6\t0x7FCA\n0xD6F7\t0x7FCB\n0xD6F8\t0x7FCD\n0xD6F9\t0x7FD0\n0xD6FA\t0x7FD1\n0xD6FB\t0x7FC7\n0xD6FC\t0x7FCF\n0xD6FD\t0x7FC9\n0xD6FE\t0x801F\n0xD740\t0x801E\n0xD741\t0x801B\n0xD742\t0x8047\n0xD743\t0x8043\n0xD744\t0x8048\n0xD745\t0x8118\n0xD746\t0x8125\n0xD747\t0x8119\n0xD748\t0x811B\n0xD749\t0x812D\n0xD74A\t0x811F\n0xD74B\t0x812C\n0xD74C\t0x811E\n0xD74D\t0x8121\n0xD74E\t0x8115\n0xD74F\t0x8127\n0xD750\t0x811D\n0xD751\t0x8122\n0xD752\t0x8211\n0xD753\t0x8238\n0xD754\t0x8233\n0xD755\t0x823A\n0xD756\t0x8234\n0xD757\t0x8232\n0xD758\t0x8274\n0xD759\t0x8390\n0xD75A\t0x83A3\n0xD75B\t0x83A8\n0xD75C\t0x838D\n0xD75D\t0x837A\n0xD75E\t0x8373\n0xD75F\t0x83A4\n0xD760\t0x8374\n0xD761\t0x838F\n0xD762\t0x8381\n0xD763\t0x8395\n0xD764\t0x8399\n0xD765\t0x8375\n0xD766\t0x8394\n0xD767\t0x83A9\n0xD768\t0x837D\n0xD769\t0x8383\n0xD76A\t0x838C\n0xD76B\t0x839D\n0xD76C\t0x839B\n0xD76D\t0x83AA\n0xD76E\t0x838B\n0xD76F\t0x837E\n0xD770\t0x83A5\n0xD771\t0x83AF\n0xD772\t0x8388\n0xD773\t0x8397\n0xD774\t0x83B0\n0xD775\t0x837F\n0xD776\t0x83A6\n0xD777\t0x8387\n0xD778\t0x83AE\n0xD779\t0x8376\n0xD77A\t0x839A\n0xD77B\t0x8659\n0xD77C\t0x8656\n0xD77D\t0x86BF\n0xD77E\t0x86B7\n0xD7A1\t0x86C2\n0xD7A2\t0x86C1\n0xD7A3\t0x86C5\n0xD7A4\t0x86BA\n0xD7A5\t0x86B0\n0xD7A6\t0x86C8\n0xD7A7\t0x86B9\n0xD7A8\t0x86B3\n0xD7A9\t0x86B8\n0xD7AA\t0x86CC\n0xD7AB\t0x86B4\n0xD7AC\t0x86BB\n0xD7AD\t0x86BC\n0xD7AE\t0x86C3\n0xD7AF\t0x86BD\n0xD7B0\t0x86BE\n0xD7B1\t0x8852\n0xD7B2\t0x8889\n0xD7B3\t0x8895\n0xD7B4\t0x88A8\n0xD7B5\t0x88A2\n0xD7B6\t0x88AA\n0xD7B7\t0x889A\n0xD7B8\t0x8891\n0xD7B9\t0x88A1\n0xD7BA\t0x889F\n0xD7BB\t0x8898\n0xD7BC\t0x88A7\n0xD7BD\t0x8899\n0xD7BE\t0x889B\n0xD7BF\t0x8897\n0xD7C0\t0x88A4\n0xD7C1\t0x88AC\n0xD7C2\t0x888C\n0xD7C3\t0x8893\n0xD7C4\t0x888E\n0xD7C5\t0x8982\n0xD7C6\t0x89D6\n0xD7C7\t0x89D9\n0xD7C8\t0x89D5\n0xD7C9\t0x8A30\n0xD7CA\t0x8A27\n0xD7CB\t0x8A2C\n0xD7CC\t0x8A1E\n0xD7CD\t0x8C39\n0xD7CE\t0x8C3B\n0xD7CF\t0x8C5C\n0xD7D0\t0x8C5D\n0xD7D1\t0x8C7D\n0xD7D2\t0x8CA5\n0xD7D3\t0x8D7D\n0xD7D4\t0x8D7B\n0xD7D5\t0x8D79\n0xD7D6\t0x8DBC\n0xD7D7\t0x8DC2\n0xD7D8\t0x8DB9\n0xD7D9\t0x8DBF\n0xD7DA\t0x8DC1\n0xD7DB\t0x8ED8\n0xD7DC\t0x8EDE\n0xD7DD\t0x8EDD\n0xD7DE\t0x8EDC\n0xD7DF\t0x8ED7\n0xD7E0\t0x8EE0\n0xD7E1\t0x8EE1\n0xD7E2\t0x9024\n0xD7E3\t0x900B\n0xD7E4\t0x9011\n0xD7E5\t0x901C\n0xD7E6\t0x900C\n0xD7E7\t0x9021\n0xD7E8\t0x90EF\n0xD7E9\t0x90EA\n0xD7EA\t0x90F0\n0xD7EB\t0x90F4\n0xD7EC\t0x90F2\n0xD7ED\t0x90F3\n0xD7EE\t0x90D4\n0xD7EF\t0x90EB\n0xD7F0\t0x90EC\n0xD7F1\t0x90E9\n0xD7F2\t0x9156\n0xD7F3\t0x9158\n0xD7F4\t0x915A\n0xD7F5\t0x9153\n0xD7F6\t0x9155\n0xD7F7\t0x91EC\n0xD7F8\t0x91F4\n0xD7F9\t0x91F1\n0xD7FA\t0x91F3\n0xD7FB\t0x91F8\n0xD7FC\t0x91E4\n0xD7FD\t0x91F9\n0xD7FE\t0x91EA\n0xD840\t0x91EB\n0xD841\t0x91F7\n0xD842\t0x91E8\n0xD843\t0x91EE\n0xD844\t0x957A\n0xD845\t0x9586\n0xD846\t0x9588\n0xD847\t0x967C\n0xD848\t0x966D\n0xD849\t0x966B\n0xD84A\t0x9671\n0xD84B\t0x966F\n0xD84C\t0x96BF\n0xD84D\t0x976A\n0xD84E\t0x9804\n0xD84F\t0x98E5\n0xD850\t0x9997\n0xD851\t0x509B\n0xD852\t0x5095\n0xD853\t0x5094\n0xD854\t0x509E\n0xD855\t0x508B\n0xD856\t0x50A3\n0xD857\t0x5083\n0xD858\t0x508C\n0xD859\t0x508E\n0xD85A\t0x509D\n0xD85B\t0x5068\n0xD85C\t0x509C\n0xD85D\t0x5092\n0xD85E\t0x5082\n0xD85F\t0x5087\n0xD860\t0x515F\n0xD861\t0x51D4\n0xD862\t0x5312\n0xD863\t0x5311\n0xD864\t0x53A4\n0xD865\t0x53A7\n0xD866\t0x5591\n0xD867\t0x55A8\n0xD868\t0x55A5\n0xD869\t0x55AD\n0xD86A\t0x5577\n0xD86B\t0x5645\n0xD86C\t0x55A2\n0xD86D\t0x5593\n0xD86E\t0x5588\n0xD86F\t0x558F\n0xD870\t0x55B5\n0xD871\t0x5581\n0xD872\t0x55A3\n0xD873\t0x5592\n0xD874\t0x55A4\n0xD875\t0x557D\n0xD876\t0x558C\n0xD877\t0x55A6\n0xD878\t0x557F\n0xD879\t0x5595\n0xD87A\t0x55A1\n0xD87B\t0x558E\n0xD87C\t0x570C\n0xD87D\t0x5829\n0xD87E\t0x5837\n0xD8A1\t0x5819\n0xD8A2\t0x581E\n0xD8A3\t0x5827\n0xD8A4\t0x5823\n0xD8A5\t0x5828\n0xD8A6\t0x57F5\n0xD8A7\t0x5848\n0xD8A8\t0x5825\n0xD8A9\t0x581C\n0xD8AA\t0x581B\n0xD8AB\t0x5833\n0xD8AC\t0x583F\n0xD8AD\t0x5836\n0xD8AE\t0x582E\n0xD8AF\t0x5839\n0xD8B0\t0x5838\n0xD8B1\t0x582D\n0xD8B2\t0x582C\n0xD8B3\t0x583B\n0xD8B4\t0x5961\n0xD8B5\t0x5AAF\n0xD8B6\t0x5A94\n0xD8B7\t0x5A9F\n0xD8B8\t0x5A7A\n0xD8B9\t0x5AA2\n0xD8BA\t0x5A9E\n0xD8BB\t0x5A78\n0xD8BC\t0x5AA6\n0xD8BD\t0x5A7C\n0xD8BE\t0x5AA5\n0xD8BF\t0x5AAC\n0xD8C0\t0x5A95\n0xD8C1\t0x5AAE\n0xD8C2\t0x5A37\n0xD8C3\t0x5A84\n0xD8C4\t0x5A8A\n0xD8C5\t0x5A97\n0xD8C6\t0x5A83\n0xD8C7\t0x5A8B\n0xD8C8\t0x5AA9\n0xD8C9\t0x5A7B\n0xD8CA\t0x5A7D\n0xD8CB\t0x5A8C\n0xD8CC\t0x5A9C\n0xD8CD\t0x5A8F\n0xD8CE\t0x5A93\n0xD8CF\t0x5A9D\n0xD8D0\t0x5BEA\n0xD8D1\t0x5BCD\n0xD8D2\t0x5BCB\n0xD8D3\t0x5BD4\n0xD8D4\t0x5BD1\n0xD8D5\t0x5BCA\n0xD8D6\t0x5BCE\n0xD8D7\t0x5C0C\n0xD8D8\t0x5C30\n0xD8D9\t0x5D37\n0xD8DA\t0x5D43\n0xD8DB\t0x5D6B\n0xD8DC\t0x5D41\n0xD8DD\t0x5D4B\n0xD8DE\t0x5D3F\n0xD8DF\t0x5D35\n0xD8E0\t0x5D51\n0xD8E1\t0x5D4E\n0xD8E2\t0x5D55\n0xD8E3\t0x5D33\n0xD8E4\t0x5D3A\n0xD8E5\t0x5D52\n0xD8E6\t0x5D3D\n0xD8E7\t0x5D31\n0xD8E8\t0x5D59\n0xD8E9\t0x5D42\n0xD8EA\t0x5D39\n0xD8EB\t0x5D49\n0xD8EC\t0x5D38\n0xD8ED\t0x5D3C\n0xD8EE\t0x5D32\n0xD8EF\t0x5D36\n0xD8F0\t0x5D40\n0xD8F1\t0x5D45\n0xD8F2\t0x5E44\n0xD8F3\t0x5E41\n0xD8F4\t0x5F58\n0xD8F5\t0x5FA6\n0xD8F6\t0x5FA5\n0xD8F7\t0x5FAB\n0xD8F8\t0x60C9\n0xD8F9\t0x60B9\n0xD8FA\t0x60CC\n0xD8FB\t0x60E2\n0xD8FC\t0x60CE\n0xD8FD\t0x60C4\n0xD8FE\t0x6114\n0xD940\t0x60F2\n0xD941\t0x610A\n0xD942\t0x6116\n0xD943\t0x6105\n0xD944\t0x60F5\n0xD945\t0x6113\n0xD946\t0x60F8\n0xD947\t0x60FC\n0xD948\t0x60FE\n0xD949\t0x60C1\n0xD94A\t0x6103\n0xD94B\t0x6118\n0xD94C\t0x611D\n0xD94D\t0x6110\n0xD94E\t0x60FF\n0xD94F\t0x6104\n0xD950\t0x610B\n0xD951\t0x624A\n0xD952\t0x6394\n0xD953\t0x63B1\n0xD954\t0x63B0\n0xD955\t0x63CE\n0xD956\t0x63E5\n0xD957\t0x63E8\n0xD958\t0x63EF\n0xD959\t0x63C3\n0xD95A\t0x649D\n0xD95B\t0x63F3\n0xD95C\t0x63CA\n0xD95D\t0x63E0\n0xD95E\t0x63F6\n0xD95F\t0x63D5\n0xD960\t0x63F2\n0xD961\t0x63F5\n0xD962\t0x6461\n0xD963\t0x63DF\n0xD964\t0x63BE\n0xD965\t0x63DD\n0xD966\t0x63DC\n0xD967\t0x63C4\n0xD968\t0x63D8\n0xD969\t0x63D3\n0xD96A\t0x63C2\n0xD96B\t0x63C7\n0xD96C\t0x63CC\n0xD96D\t0x63CB\n0xD96E\t0x63C8\n0xD96F\t0x63F0\n0xD970\t0x63D7\n0xD971\t0x63D9\n0xD972\t0x6532\n0xD973\t0x6567\n0xD974\t0x656A\n0xD975\t0x6564\n0xD976\t0x655C\n0xD977\t0x6568\n0xD978\t0x6565\n0xD979\t0x658C\n0xD97A\t0x659D\n0xD97B\t0x659E\n0xD97C\t0x65AE\n0xD97D\t0x65D0\n0xD97E\t0x65D2\n0xD9A1\t0x667C\n0xD9A2\t0x666C\n0xD9A3\t0x667B\n0xD9A4\t0x6680\n0xD9A5\t0x6671\n0xD9A6\t0x6679\n0xD9A7\t0x666A\n0xD9A8\t0x6672\n0xD9A9\t0x6701\n0xD9AA\t0x690C\n0xD9AB\t0x68D3\n0xD9AC\t0x6904\n0xD9AD\t0x68DC\n0xD9AE\t0x692A\n0xD9AF\t0x68EC\n0xD9B0\t0x68EA\n0xD9B1\t0x68F1\n0xD9B2\t0x690F\n0xD9B3\t0x68D6\n0xD9B4\t0x68F7\n0xD9B5\t0x68EB\n0xD9B6\t0x68E4\n0xD9B7\t0x68F6\n0xD9B8\t0x6913\n0xD9B9\t0x6910\n0xD9BA\t0x68F3\n0xD9BB\t0x68E1\n0xD9BC\t0x6907\n0xD9BD\t0x68CC\n0xD9BE\t0x6908\n0xD9BF\t0x6970\n0xD9C0\t0x68B4\n0xD9C1\t0x6911\n0xD9C2\t0x68EF\n0xD9C3\t0x68C6\n0xD9C4\t0x6914\n0xD9C5\t0x68F8\n0xD9C6\t0x68D0\n0xD9C7\t0x68FD\n0xD9C8\t0x68FC\n0xD9C9\t0x68E8\n0xD9CA\t0x690B\n0xD9CB\t0x690A\n0xD9CC\t0x6917\n0xD9CD\t0x68CE\n0xD9CE\t0x68C8\n0xD9CF\t0x68DD\n0xD9D0\t0x68DE\n0xD9D1\t0x68E6\n0xD9D2\t0x68F4\n0xD9D3\t0x68D1\n0xD9D4\t0x6906\n0xD9D5\t0x68D4\n0xD9D6\t0x68E9\n0xD9D7\t0x6915\n0xD9D8\t0x6925\n0xD9D9\t0x68C7\n0xD9DA\t0x6B39\n0xD9DB\t0x6B3B\n0xD9DC\t0x6B3F\n0xD9DD\t0x6B3C\n0xD9DE\t0x6B94\n0xD9DF\t0x6B97\n0xD9E0\t0x6B99\n0xD9E1\t0x6B95\n0xD9E2\t0x6BBD\n0xD9E3\t0x6BF0\n0xD9E4\t0x6BF2\n0xD9E5\t0x6BF3\n0xD9E6\t0x6C30\n0xD9E7\t0x6DFC\n0xD9E8\t0x6E46\n0xD9E9\t0x6E47\n0xD9EA\t0x6E1F\n0xD9EB\t0x6E49\n0xD9EC\t0x6E88\n0xD9ED\t0x6E3C\n0xD9EE\t0x6E3D\n0xD9EF\t0x6E45\n0xD9F0\t0x6E62\n0xD9F1\t0x6E2B\n0xD9F2\t0x6E3F\n0xD9F3\t0x6E41\n0xD9F4\t0x6E5D\n0xD9F5\t0x6E73\n0xD9F6\t0x6E1C\n0xD9F7\t0x6E33\n0xD9F8\t0x6E4B\n0xD9F9\t0x6E40\n0xD9FA\t0x6E51\n0xD9FB\t0x6E3B\n0xD9FC\t0x6E03\n0xD9FD\t0x6E2E\n0xD9FE\t0x6E5E\n0xDA40\t0x6E68\n0xDA41\t0x6E5C\n0xDA42\t0x6E61\n0xDA43\t0x6E31\n0xDA44\t0x6E28\n0xDA45\t0x6E60\n0xDA46\t0x6E71\n0xDA47\t0x6E6B\n0xDA48\t0x6E39\n0xDA49\t0x6E22\n0xDA4A\t0x6E30\n0xDA4B\t0x6E53\n0xDA4C\t0x6E65\n0xDA4D\t0x6E27\n0xDA4E\t0x6E78\n0xDA4F\t0x6E64\n0xDA50\t0x6E77\n0xDA51\t0x6E55\n0xDA52\t0x6E79\n0xDA53\t0x6E52\n0xDA54\t0x6E66\n0xDA55\t0x6E35\n0xDA56\t0x6E36\n0xDA57\t0x6E5A\n0xDA58\t0x7120\n0xDA59\t0x711E\n0xDA5A\t0x712F\n0xDA5B\t0x70FB\n0xDA5C\t0x712E\n0xDA5D\t0x7131\n0xDA5E\t0x7123\n0xDA5F\t0x7125\n0xDA60\t0x7122\n0xDA61\t0x7132\n0xDA62\t0x711F\n0xDA63\t0x7128\n0xDA64\t0x713A\n0xDA65\t0x711B\n0xDA66\t0x724B\n0xDA67\t0x725A\n0xDA68\t0x7288\n0xDA69\t0x7289\n0xDA6A\t0x7286\n0xDA6B\t0x7285\n0xDA6C\t0x728B\n0xDA6D\t0x7312\n0xDA6E\t0x730B\n0xDA6F\t0x7330\n0xDA70\t0x7322\n0xDA71\t0x7331\n0xDA72\t0x7333\n0xDA73\t0x7327\n0xDA74\t0x7332\n0xDA75\t0x732D\n0xDA76\t0x7326\n0xDA77\t0x7323\n0xDA78\t0x7335\n0xDA79\t0x730C\n0xDA7A\t0x742E\n0xDA7B\t0x742C\n0xDA7C\t0x7430\n0xDA7D\t0x742B\n0xDA7E\t0x7416\n0xDAA1\t0x741A\n0xDAA2\t0x7421\n0xDAA3\t0x742D\n0xDAA4\t0x7431\n0xDAA5\t0x7424\n0xDAA6\t0x7423\n0xDAA7\t0x741D\n0xDAA8\t0x7429\n0xDAA9\t0x7420\n0xDAAA\t0x7432\n0xDAAB\t0x74FB\n0xDAAC\t0x752F\n0xDAAD\t0x756F\n0xDAAE\t0x756C\n0xDAAF\t0x75E7\n0xDAB0\t0x75DA\n0xDAB1\t0x75E1\n0xDAB2\t0x75E6\n0xDAB3\t0x75DD\n0xDAB4\t0x75DF\n0xDAB5\t0x75E4\n0xDAB6\t0x75D7\n0xDAB7\t0x7695\n0xDAB8\t0x7692\n0xDAB9\t0x76DA\n0xDABA\t0x7746\n0xDABB\t0x7747\n0xDABC\t0x7744\n0xDABD\t0x774D\n0xDABE\t0x7745\n0xDABF\t0x774A\n0xDAC0\t0x774E\n0xDAC1\t0x774B\n0xDAC2\t0x774C\n0xDAC3\t0x77DE\n0xDAC4\t0x77EC\n0xDAC5\t0x7860\n0xDAC6\t0x7864\n0xDAC7\t0x7865\n0xDAC8\t0x785C\n0xDAC9\t0x786D\n0xDACA\t0x7871\n0xDACB\t0x786A\n0xDACC\t0x786E\n0xDACD\t0x7870\n0xDACE\t0x7869\n0xDACF\t0x7868\n0xDAD0\t0x785E\n0xDAD1\t0x7862\n0xDAD2\t0x7974\n0xDAD3\t0x7973\n0xDAD4\t0x7972\n0xDAD5\t0x7970\n0xDAD6\t0x7A02\n0xDAD7\t0x7A0A\n0xDAD8\t0x7A03\n0xDAD9\t0x7A0C\n0xDADA\t0x7A04\n0xDADB\t0x7A99\n0xDADC\t0x7AE6\n0xDADD\t0x7AE4\n0xDADE\t0x7B4A\n0xDADF\t0x7B3B\n0xDAE0\t0x7B44\n0xDAE1\t0x7B48\n0xDAE2\t0x7B4C\n0xDAE3\t0x7B4E\n0xDAE4\t0x7B40\n0xDAE5\t0x7B58\n0xDAE6\t0x7B45\n0xDAE7\t0x7CA2\n0xDAE8\t0x7C9E\n0xDAE9\t0x7CA8\n0xDAEA\t0x7CA1\n0xDAEB\t0x7D58\n0xDAEC\t0x7D6F\n0xDAED\t0x7D63\n0xDAEE\t0x7D53\n0xDAEF\t0x7D56\n0xDAF0\t0x7D67\n0xDAF1\t0x7D6A\n0xDAF2\t0x7D4F\n0xDAF3\t0x7D6D\n0xDAF4\t0x7D5C\n0xDAF5\t0x7D6B\n0xDAF6\t0x7D52\n0xDAF7\t0x7D54\n0xDAF8\t0x7D69\n0xDAF9\t0x7D51\n0xDAFA\t0x7D5F\n0xDAFB\t0x7D4E\n0xDAFC\t0x7F3E\n0xDAFD\t0x7F3F\n0xDAFE\t0x7F65\n0xDB40\t0x7F66\n0xDB41\t0x7FA2\n0xDB42\t0x7FA0\n0xDB43\t0x7FA1\n0xDB44\t0x7FD7\n0xDB45\t0x8051\n0xDB46\t0x804F\n0xDB47\t0x8050\n0xDB48\t0x80FE\n0xDB49\t0x80D4\n0xDB4A\t0x8143\n0xDB4B\t0x814A\n0xDB4C\t0x8152\n0xDB4D\t0x814F\n0xDB4E\t0x8147\n0xDB4F\t0x813D\n0xDB50\t0x814D\n0xDB51\t0x813A\n0xDB52\t0x81E6\n0xDB53\t0x81EE\n0xDB54\t0x81F7\n0xDB55\t0x81F8\n0xDB56\t0x81F9\n0xDB57\t0x8204\n0xDB58\t0x823C\n0xDB59\t0x823D\n0xDB5A\t0x823F\n0xDB5B\t0x8275\n0xDB5C\t0x833B\n0xDB5D\t0x83CF\n0xDB5E\t0x83F9\n0xDB5F\t0x8423\n0xDB60\t0x83C0\n0xDB61\t0x83E8\n0xDB62\t0x8412\n0xDB63\t0x83E7\n0xDB64\t0x83E4\n0xDB65\t0x83FC\n0xDB66\t0x83F6\n0xDB67\t0x8410\n0xDB68\t0x83C6\n0xDB69\t0x83C8\n0xDB6A\t0x83EB\n0xDB6B\t0x83E3\n0xDB6C\t0x83BF\n0xDB6D\t0x8401\n0xDB6E\t0x83DD\n0xDB6F\t0x83E5\n0xDB70\t0x83D8\n0xDB71\t0x83FF\n0xDB72\t0x83E1\n0xDB73\t0x83CB\n0xDB74\t0x83CE\n0xDB75\t0x83D6\n0xDB76\t0x83F5\n0xDB77\t0x83C9\n0xDB78\t0x8409\n0xDB79\t0x840F\n0xDB7A\t0x83DE\n0xDB7B\t0x8411\n0xDB7C\t0x8406\n0xDB7D\t0x83C2\n0xDB7E\t0x83F3\n0xDBA1\t0x83D5\n0xDBA2\t0x83FA\n0xDBA3\t0x83C7\n0xDBA4\t0x83D1\n0xDBA5\t0x83EA\n0xDBA6\t0x8413\n0xDBA7\t0x83C3\n0xDBA8\t0x83EC\n0xDBA9\t0x83EE\n0xDBAA\t0x83C4\n0xDBAB\t0x83FB\n0xDBAC\t0x83D7\n0xDBAD\t0x83E2\n0xDBAE\t0x841B\n0xDBAF\t0x83DB\n0xDBB0\t0x83FE\n0xDBB1\t0x86D8\n0xDBB2\t0x86E2\n0xDBB3\t0x86E6\n0xDBB4\t0x86D3\n0xDBB5\t0x86E3\n0xDBB6\t0x86DA\n0xDBB7\t0x86EA\n0xDBB8\t0x86DD\n0xDBB9\t0x86EB\n0xDBBA\t0x86DC\n0xDBBB\t0x86EC\n0xDBBC\t0x86E9\n0xDBBD\t0x86D7\n0xDBBE\t0x86E8\n0xDBBF\t0x86D1\n0xDBC0\t0x8848\n0xDBC1\t0x8856\n0xDBC2\t0x8855\n0xDBC3\t0x88BA\n0xDBC4\t0x88D7\n0xDBC5\t0x88B9\n0xDBC6\t0x88B8\n0xDBC7\t0x88C0\n0xDBC8\t0x88BE\n0xDBC9\t0x88B6\n0xDBCA\t0x88BC\n0xDBCB\t0x88B7\n0xDBCC\t0x88BD\n0xDBCD\t0x88B2\n0xDBCE\t0x8901\n0xDBCF\t0x88C9\n0xDBD0\t0x8995\n0xDBD1\t0x8998\n0xDBD2\t0x8997\n0xDBD3\t0x89DD\n0xDBD4\t0x89DA\n0xDBD5\t0x89DB\n0xDBD6\t0x8A4E\n0xDBD7\t0x8A4D\n0xDBD8\t0x8A39\n0xDBD9\t0x8A59\n0xDBDA\t0x8A40\n0xDBDB\t0x8A57\n0xDBDC\t0x8A58\n0xDBDD\t0x8A44\n0xDBDE\t0x8A45\n0xDBDF\t0x8A52\n0xDBE0\t0x8A48\n0xDBE1\t0x8A51\n0xDBE2\t0x8A4A\n0xDBE3\t0x8A4C\n0xDBE4\t0x8A4F\n0xDBE5\t0x8C5F\n0xDBE6\t0x8C81\n0xDBE7\t0x8C80\n0xDBE8\t0x8CBA\n0xDBE9\t0x8CBE\n0xDBEA\t0x8CB0\n0xDBEB\t0x8CB9\n0xDBEC\t0x8CB5\n0xDBED\t0x8D84\n0xDBEE\t0x8D80\n0xDBEF\t0x8D89\n0xDBF0\t0x8DD8\n0xDBF1\t0x8DD3\n0xDBF2\t0x8DCD\n0xDBF3\t0x8DC7\n0xDBF4\t0x8DD6\n0xDBF5\t0x8DDC\n0xDBF6\t0x8DCF\n0xDBF7\t0x8DD5\n0xDBF8\t0x8DD9\n0xDBF9\t0x8DC8\n0xDBFA\t0x8DD7\n0xDBFB\t0x8DC5\n0xDBFC\t0x8EEF\n0xDBFD\t0x8EF7\n0xDBFE\t0x8EFA\n0xDC40\t0x8EF9\n0xDC41\t0x8EE6\n0xDC42\t0x8EEE\n0xDC43\t0x8EE5\n0xDC44\t0x8EF5\n0xDC45\t0x8EE7\n0xDC46\t0x8EE8\n0xDC47\t0x8EF6\n0xDC48\t0x8EEB\n0xDC49\t0x8EF1\n0xDC4A\t0x8EEC\n0xDC4B\t0x8EF4\n0xDC4C\t0x8EE9\n0xDC4D\t0x902D\n0xDC4E\t0x9034\n0xDC4F\t0x902F\n0xDC50\t0x9106\n0xDC51\t0x912C\n0xDC52\t0x9104\n0xDC53\t0x90FF\n0xDC54\t0x90FC\n0xDC55\t0x9108\n0xDC56\t0x90F9\n0xDC57\t0x90FB\n0xDC58\t0x9101\n0xDC59\t0x9100\n0xDC5A\t0x9107\n0xDC5B\t0x9105\n0xDC5C\t0x9103\n0xDC5D\t0x9161\n0xDC5E\t0x9164\n0xDC5F\t0x915F\n0xDC60\t0x9162\n0xDC61\t0x9160\n0xDC62\t0x9201\n0xDC63\t0x920A\n0xDC64\t0x9225\n0xDC65\t0x9203\n0xDC66\t0x921A\n0xDC67\t0x9226\n0xDC68\t0x920F\n0xDC69\t0x920C\n0xDC6A\t0x9200\n0xDC6B\t0x9212\n0xDC6C\t0x91FF\n0xDC6D\t0x91FD\n0xDC6E\t0x9206\n0xDC6F\t0x9204\n0xDC70\t0x9227\n0xDC71\t0x9202\n0xDC72\t0x921C\n0xDC73\t0x9224\n0xDC74\t0x9219\n0xDC75\t0x9217\n0xDC76\t0x9205\n0xDC77\t0x9216\n0xDC78\t0x957B\n0xDC79\t0x958D\n0xDC7A\t0x958C\n0xDC7B\t0x9590\n0xDC7C\t0x9687\n0xDC7D\t0x967E\n0xDC7E\t0x9688\n0xDCA1\t0x9689\n0xDCA2\t0x9683\n0xDCA3\t0x9680\n0xDCA4\t0x96C2\n0xDCA5\t0x96C8\n0xDCA6\t0x96C3\n0xDCA7\t0x96F1\n0xDCA8\t0x96F0\n0xDCA9\t0x976C\n0xDCAA\t0x9770\n0xDCAB\t0x976E\n0xDCAC\t0x9807\n0xDCAD\t0x98A9\n0xDCAE\t0x98EB\n0xDCAF\t0x9CE6\n0xDCB0\t0x9EF9\n0xDCB1\t0x4E83\n0xDCB2\t0x4E84\n0xDCB3\t0x4EB6\n0xDCB4\t0x50BD\n0xDCB5\t0x50BF\n0xDCB6\t0x50C6\n0xDCB7\t0x50AE\n0xDCB8\t0x50C4\n0xDCB9\t0x50CA\n0xDCBA\t0x50B4\n0xDCBB\t0x50C8\n0xDCBC\t0x50C2\n0xDCBD\t0x50B0\n0xDCBE\t0x50C1\n0xDCBF\t0x50BA\n0xDCC0\t0x50B1\n0xDCC1\t0x50CB\n0xDCC2\t0x50C9\n0xDCC3\t0x50B6\n0xDCC4\t0x50B8\n0xDCC5\t0x51D7\n0xDCC6\t0x527A\n0xDCC7\t0x5278\n0xDCC8\t0x527B\n0xDCC9\t0x527C\n0xDCCA\t0x55C3\n0xDCCB\t0x55DB\n0xDCCC\t0x55CC\n0xDCCD\t0x55D0\n0xDCCE\t0x55CB\n0xDCCF\t0x55CA\n0xDCD0\t0x55DD\n0xDCD1\t0x55C0\n0xDCD2\t0x55D4\n0xDCD3\t0x55C4\n0xDCD4\t0x55E9\n0xDCD5\t0x55BF\n0xDCD6\t0x55D2\n0xDCD7\t0x558D\n0xDCD8\t0x55CF\n0xDCD9\t0x55D5\n0xDCDA\t0x55E2\n0xDCDB\t0x55D6\n0xDCDC\t0x55C8\n0xDCDD\t0x55F2\n0xDCDE\t0x55CD\n0xDCDF\t0x55D9\n0xDCE0\t0x55C2\n0xDCE1\t0x5714\n0xDCE2\t0x5853\n0xDCE3\t0x5868\n0xDCE4\t0x5864\n0xDCE5\t0x584F\n0xDCE6\t0x584D\n0xDCE7\t0x5849\n0xDCE8\t0x586F\n0xDCE9\t0x5855\n0xDCEA\t0x584E\n0xDCEB\t0x585D\n0xDCEC\t0x5859\n0xDCED\t0x5865\n0xDCEE\t0x585B\n0xDCEF\t0x583D\n0xDCF0\t0x5863\n0xDCF1\t0x5871\n0xDCF2\t0x58FC\n0xDCF3\t0x5AC7\n0xDCF4\t0x5AC4\n0xDCF5\t0x5ACB\n0xDCF6\t0x5ABA\n0xDCF7\t0x5AB8\n0xDCF8\t0x5AB1\n0xDCF9\t0x5AB5\n0xDCFA\t0x5AB0\n0xDCFB\t0x5ABF\n0xDCFC\t0x5AC8\n0xDCFD\t0x5ABB\n0xDCFE\t0x5AC6\n0xDD40\t0x5AB7\n0xDD41\t0x5AC0\n0xDD42\t0x5ACA\n0xDD43\t0x5AB4\n0xDD44\t0x5AB6\n0xDD45\t0x5ACD\n0xDD46\t0x5AB9\n0xDD47\t0x5A90\n0xDD48\t0x5BD6\n0xDD49\t0x5BD8\n0xDD4A\t0x5BD9\n0xDD4B\t0x5C1F\n0xDD4C\t0x5C33\n0xDD4D\t0x5D71\n0xDD4E\t0x5D63\n0xDD4F\t0x5D4A\n0xDD50\t0x5D65\n0xDD51\t0x5D72\n0xDD52\t0x5D6C\n0xDD53\t0x5D5E\n0xDD54\t0x5D68\n0xDD55\t0x5D67\n0xDD56\t0x5D62\n0xDD57\t0x5DF0\n0xDD58\t0x5E4F\n0xDD59\t0x5E4E\n0xDD5A\t0x5E4A\n0xDD5B\t0x5E4D\n0xDD5C\t0x5E4B\n0xDD5D\t0x5EC5\n0xDD5E\t0x5ECC\n0xDD5F\t0x5EC6\n0xDD60\t0x5ECB\n0xDD61\t0x5EC7\n0xDD62\t0x5F40\n0xDD63\t0x5FAF\n0xDD64\t0x5FAD\n0xDD65\t0x60F7\n0xDD66\t0x6149\n0xDD67\t0x614A\n0xDD68\t0x612B\n0xDD69\t0x6145\n0xDD6A\t0x6136\n0xDD6B\t0x6132\n0xDD6C\t0x612E\n0xDD6D\t0x6146\n0xDD6E\t0x612F\n0xDD6F\t0x614F\n0xDD70\t0x6129\n0xDD71\t0x6140\n0xDD72\t0x6220\n0xDD73\t0x9168\n0xDD74\t0x6223\n0xDD75\t0x6225\n0xDD76\t0x6224\n0xDD77\t0x63C5\n0xDD78\t0x63F1\n0xDD79\t0x63EB\n0xDD7A\t0x6410\n0xDD7B\t0x6412\n0xDD7C\t0x6409\n0xDD7D\t0x6420\n0xDD7E\t0x6424\n0xDDA1\t0x6433\n0xDDA2\t0x6443\n0xDDA3\t0x641F\n0xDDA4\t0x6415\n0xDDA5\t0x6418\n0xDDA6\t0x6439\n0xDDA7\t0x6437\n0xDDA8\t0x6422\n0xDDA9\t0x6423\n0xDDAA\t0x640C\n0xDDAB\t0x6426\n0xDDAC\t0x6430\n0xDDAD\t0x6428\n0xDDAE\t0x6441\n0xDDAF\t0x6435\n0xDDB0\t0x642F\n0xDDB1\t0x640A\n0xDDB2\t0x641A\n0xDDB3\t0x6440\n0xDDB4\t0x6425\n0xDDB5\t0x6427\n0xDDB6\t0x640B\n0xDDB7\t0x63E7\n0xDDB8\t0x641B\n0xDDB9\t0x642E\n0xDDBA\t0x6421\n0xDDBB\t0x640E\n0xDDBC\t0x656F\n0xDDBD\t0x6592\n0xDDBE\t0x65D3\n0xDDBF\t0x6686\n0xDDC0\t0x668C\n0xDDC1\t0x6695\n0xDDC2\t0x6690\n0xDDC3\t0x668B\n0xDDC4\t0x668A\n0xDDC5\t0x6699\n0xDDC6\t0x6694\n0xDDC7\t0x6678\n0xDDC8\t0x6720\n0xDDC9\t0x6966\n0xDDCA\t0x695F\n0xDDCB\t0x6938\n0xDDCC\t0x694E\n0xDDCD\t0x6962\n0xDDCE\t0x6971\n0xDDCF\t0x693F\n0xDDD0\t0x6945\n0xDDD1\t0x696A\n0xDDD2\t0x6939\n0xDDD3\t0x6942\n0xDDD4\t0x6957\n0xDDD5\t0x6959\n0xDDD6\t0x697A\n0xDDD7\t0x6948\n0xDDD8\t0x6949\n0xDDD9\t0x6935\n0xDDDA\t0x696C\n0xDDDB\t0x6933\n0xDDDC\t0x693D\n0xDDDD\t0x6965\n0xDDDE\t0x68F0\n0xDDDF\t0x6978\n0xDDE0\t0x6934\n0xDDE1\t0x6969\n0xDDE2\t0x6940\n0xDDE3\t0x696F\n0xDDE4\t0x6944\n0xDDE5\t0x6976\n0xDDE6\t0x6958\n0xDDE7\t0x6941\n0xDDE8\t0x6974\n0xDDE9\t0x694C\n0xDDEA\t0x693B\n0xDDEB\t0x694B\n0xDDEC\t0x6937\n0xDDED\t0x695C\n0xDDEE\t0x694F\n0xDDEF\t0x6951\n0xDDF0\t0x6932\n0xDDF1\t0x6952\n0xDDF2\t0x692F\n0xDDF3\t0x697B\n0xDDF4\t0x693C\n0xDDF5\t0x6B46\n0xDDF6\t0x6B45\n0xDDF7\t0x6B43\n0xDDF8\t0x6B42\n0xDDF9\t0x6B48\n0xDDFA\t0x6B41\n0xDDFB\t0x6B9B\n0xDDFC\t0xFA0D\n0xDDFD\t0x6BFB\n0xDDFE\t0x6BFC\n0xDE40\t0x6BF9\n0xDE41\t0x6BF7\n0xDE42\t0x6BF8\n0xDE43\t0x6E9B\n0xDE44\t0x6ED6\n0xDE45\t0x6EC8\n0xDE46\t0x6E8F\n0xDE47\t0x6EC0\n0xDE48\t0x6E9F\n0xDE49\t0x6E93\n0xDE4A\t0x6E94\n0xDE4B\t0x6EA0\n0xDE4C\t0x6EB1\n0xDE4D\t0x6EB9\n0xDE4E\t0x6EC6\n0xDE4F\t0x6ED2\n0xDE50\t0x6EBD\n0xDE51\t0x6EC1\n0xDE52\t0x6E9E\n0xDE53\t0x6EC9\n0xDE54\t0x6EB7\n0xDE55\t0x6EB0\n0xDE56\t0x6ECD\n0xDE57\t0x6EA6\n0xDE58\t0x6ECF\n0xDE59\t0x6EB2\n0xDE5A\t0x6EBE\n0xDE5B\t0x6EC3\n0xDE5C\t0x6EDC\n0xDE5D\t0x6ED8\n0xDE5E\t0x6E99\n0xDE5F\t0x6E92\n0xDE60\t0x6E8E\n0xDE61\t0x6E8D\n0xDE62\t0x6EA4\n0xDE63\t0x6EA1\n0xDE64\t0x6EBF\n0xDE65\t0x6EB3\n0xDE66\t0x6ED0\n0xDE67\t0x6ECA\n0xDE68\t0x6E97\n0xDE69\t0x6EAE\n0xDE6A\t0x6EA3\n0xDE6B\t0x7147\n0xDE6C\t0x7154\n0xDE6D\t0x7152\n0xDE6E\t0x7163\n0xDE6F\t0x7160\n0xDE70\t0x7141\n0xDE71\t0x715D\n0xDE72\t0x7162\n0xDE73\t0x7172\n0xDE74\t0x7178\n0xDE75\t0x716A\n0xDE76\t0x7161\n0xDE77\t0x7142\n0xDE78\t0x7158\n0xDE79\t0x7143\n0xDE7A\t0x714B\n0xDE7B\t0x7170\n0xDE7C\t0x715F\n0xDE7D\t0x7150\n0xDE7E\t0x7153\n0xDEA1\t0x7144\n0xDEA2\t0x714D\n0xDEA3\t0x715A\n0xDEA4\t0x724F\n0xDEA5\t0x728D\n0xDEA6\t0x728C\n0xDEA7\t0x7291\n0xDEA8\t0x7290\n0xDEA9\t0x728E\n0xDEAA\t0x733C\n0xDEAB\t0x7342\n0xDEAC\t0x733B\n0xDEAD\t0x733A\n0xDEAE\t0x7340\n0xDEAF\t0x734A\n0xDEB0\t0x7349\n0xDEB1\t0x7444\n0xDEB2\t0x744A\n0xDEB3\t0x744B\n0xDEB4\t0x7452\n0xDEB5\t0x7451\n0xDEB6\t0x7457\n0xDEB7\t0x7440\n0xDEB8\t0x744F\n0xDEB9\t0x7450\n0xDEBA\t0x744E\n0xDEBB\t0x7442\n0xDEBC\t0x7446\n0xDEBD\t0x744D\n0xDEBE\t0x7454\n0xDEBF\t0x74E1\n0xDEC0\t0x74FF\n0xDEC1\t0x74FE\n0xDEC2\t0x74FD\n0xDEC3\t0x751D\n0xDEC4\t0x7579\n0xDEC5\t0x7577\n0xDEC6\t0x6983\n0xDEC7\t0x75EF\n0xDEC8\t0x760F\n0xDEC9\t0x7603\n0xDECA\t0x75F7\n0xDECB\t0x75FE\n0xDECC\t0x75FC\n0xDECD\t0x75F9\n0xDECE\t0x75F8\n0xDECF\t0x7610\n0xDED0\t0x75FB\n0xDED1\t0x75F6\n0xDED2\t0x75ED\n0xDED3\t0x75F5\n0xDED4\t0x75FD\n0xDED5\t0x7699\n0xDED6\t0x76B5\n0xDED7\t0x76DD\n0xDED8\t0x7755\n0xDED9\t0x775F\n0xDEDA\t0x7760\n0xDEDB\t0x7752\n0xDEDC\t0x7756\n0xDEDD\t0x775A\n0xDEDE\t0x7769\n0xDEDF\t0x7767\n0xDEE0\t0x7754\n0xDEE1\t0x7759\n0xDEE2\t0x776D\n0xDEE3\t0x77E0\n0xDEE4\t0x7887\n0xDEE5\t0x789A\n0xDEE6\t0x7894\n0xDEE7\t0x788F\n0xDEE8\t0x7884\n0xDEE9\t0x7895\n0xDEEA\t0x7885\n0xDEEB\t0x7886\n0xDEEC\t0x78A1\n0xDEED\t0x7883\n0xDEEE\t0x7879\n0xDEEF\t0x7899\n0xDEF0\t0x7880\n0xDEF1\t0x7896\n0xDEF2\t0x787B\n0xDEF3\t0x797C\n0xDEF4\t0x7982\n0xDEF5\t0x797D\n0xDEF6\t0x7979\n0xDEF7\t0x7A11\n0xDEF8\t0x7A18\n0xDEF9\t0x7A19\n0xDEFA\t0x7A12\n0xDEFB\t0x7A17\n0xDEFC\t0x7A15\n0xDEFD\t0x7A22\n0xDEFE\t0x7A13\n0xDF40\t0x7A1B\n0xDF41\t0x7A10\n0xDF42\t0x7AA3\n0xDF43\t0x7AA2\n0xDF44\t0x7A9E\n0xDF45\t0x7AEB\n0xDF46\t0x7B66\n0xDF47\t0x7B64\n0xDF48\t0x7B6D\n0xDF49\t0x7B74\n0xDF4A\t0x7B69\n0xDF4B\t0x7B72\n0xDF4C\t0x7B65\n0xDF4D\t0x7B73\n0xDF4E\t0x7B71\n0xDF4F\t0x7B70\n0xDF50\t0x7B61\n0xDF51\t0x7B78\n0xDF52\t0x7B76\n0xDF53\t0x7B63\n0xDF54\t0x7CB2\n0xDF55\t0x7CB4\n0xDF56\t0x7CAF\n0xDF57\t0x7D88\n0xDF58\t0x7D86\n0xDF59\t0x7D80\n0xDF5A\t0x7D8D\n0xDF5B\t0x7D7F\n0xDF5C\t0x7D85\n0xDF5D\t0x7D7A\n0xDF5E\t0x7D8E\n0xDF5F\t0x7D7B\n0xDF60\t0x7D83\n0xDF61\t0x7D7C\n0xDF62\t0x7D8C\n0xDF63\t0x7D94\n0xDF64\t0x7D84\n0xDF65\t0x7D7D\n0xDF66\t0x7D92\n0xDF67\t0x7F6D\n0xDF68\t0x7F6B\n0xDF69\t0x7F67\n0xDF6A\t0x7F68\n0xDF6B\t0x7F6C\n0xDF6C\t0x7FA6\n0xDF6D\t0x7FA5\n0xDF6E\t0x7FA7\n0xDF6F\t0x7FDB\n0xDF70\t0x7FDC\n0xDF71\t0x8021\n0xDF72\t0x8164\n0xDF73\t0x8160\n0xDF74\t0x8177\n0xDF75\t0x815C\n0xDF76\t0x8169\n0xDF77\t0x815B\n0xDF78\t0x8162\n0xDF79\t0x8172\n0xDF7A\t0x6721\n0xDF7B\t0x815E\n0xDF7C\t0x8176\n0xDF7D\t0x8167\n0xDF7E\t0x816F\n0xDFA1\t0x8144\n0xDFA2\t0x8161\n0xDFA3\t0x821D\n0xDFA4\t0x8249\n0xDFA5\t0x8244\n0xDFA6\t0x8240\n0xDFA7\t0x8242\n0xDFA8\t0x8245\n0xDFA9\t0x84F1\n0xDFAA\t0x843F\n0xDFAB\t0x8456\n0xDFAC\t0x8476\n0xDFAD\t0x8479\n0xDFAE\t0x848F\n0xDFAF\t0x848D\n0xDFB0\t0x8465\n0xDFB1\t0x8451\n0xDFB2\t0x8440\n0xDFB3\t0x8486\n0xDFB4\t0x8467\n0xDFB5\t0x8430\n0xDFB6\t0x844D\n0xDFB7\t0x847D\n0xDFB8\t0x845A\n0xDFB9\t0x8459\n0xDFBA\t0x8474\n0xDFBB\t0x8473\n0xDFBC\t0x845D\n0xDFBD\t0x8507\n0xDFBE\t0x845E\n0xDFBF\t0x8437\n0xDFC0\t0x843A\n0xDFC1\t0x8434\n0xDFC2\t0x847A\n0xDFC3\t0x8443\n0xDFC4\t0x8478\n0xDFC5\t0x8432\n0xDFC6\t0x8445\n0xDFC7\t0x8429\n0xDFC8\t0x83D9\n0xDFC9\t0x844B\n0xDFCA\t0x842F\n0xDFCB\t0x8442\n0xDFCC\t0x842D\n0xDFCD\t0x845F\n0xDFCE\t0x8470\n0xDFCF\t0x8439\n0xDFD0\t0x844E\n0xDFD1\t0x844C\n0xDFD2\t0x8452\n0xDFD3\t0x846F\n0xDFD4\t0x84C5\n0xDFD5\t0x848E\n0xDFD6\t0x843B\n0xDFD7\t0x8447\n0xDFD8\t0x8436\n0xDFD9\t0x8433\n0xDFDA\t0x8468\n0xDFDB\t0x847E\n0xDFDC\t0x8444\n0xDFDD\t0x842B\n0xDFDE\t0x8460\n0xDFDF\t0x8454\n0xDFE0\t0x846E\n0xDFE1\t0x8450\n0xDFE2\t0x870B\n0xDFE3\t0x8704\n0xDFE4\t0x86F7\n0xDFE5\t0x870C\n0xDFE6\t0x86FA\n0xDFE7\t0x86D6\n0xDFE8\t0x86F5\n0xDFE9\t0x874D\n0xDFEA\t0x86F8\n0xDFEB\t0x870E\n0xDFEC\t0x8709\n0xDFED\t0x8701\n0xDFEE\t0x86F6\n0xDFEF\t0x870D\n0xDFF0\t0x8705\n0xDFF1\t0x88D6\n0xDFF2\t0x88CB\n0xDFF3\t0x88CD\n0xDFF4\t0x88CE\n0xDFF5\t0x88DE\n0xDFF6\t0x88DB\n0xDFF7\t0x88DA\n0xDFF8\t0x88CC\n0xDFF9\t0x88D0\n0xDFFA\t0x8985\n0xDFFB\t0x899B\n0xDFFC\t0x89DF\n0xDFFD\t0x89E5\n0xDFFE\t0x89E4\n0xE040\t0x89E1\n0xE041\t0x89E0\n0xE042\t0x89E2\n0xE043\t0x89DC\n0xE044\t0x89E6\n0xE045\t0x8A76\n0xE046\t0x8A86\n0xE047\t0x8A7F\n0xE048\t0x8A61\n0xE049\t0x8A3F\n0xE04A\t0x8A77\n0xE04B\t0x8A82\n0xE04C\t0x8A84\n0xE04D\t0x8A75\n0xE04E\t0x8A83\n0xE04F\t0x8A81\n0xE050\t0x8A74\n0xE051\t0x8A7A\n0xE052\t0x8C3C\n0xE053\t0x8C4B\n0xE054\t0x8C4A\n0xE055\t0x8C65\n0xE056\t0x8C64\n0xE057\t0x8C66\n0xE058\t0x8C86\n0xE059\t0x8C84\n0xE05A\t0x8C85\n0xE05B\t0x8CCC\n0xE05C\t0x8D68\n0xE05D\t0x8D69\n0xE05E\t0x8D91\n0xE05F\t0x8D8C\n0xE060\t0x8D8E\n0xE061\t0x8D8F\n0xE062\t0x8D8D\n0xE063\t0x8D93\n0xE064\t0x8D94\n0xE065\t0x8D90\n0xE066\t0x8D92\n0xE067\t0x8DF0\n0xE068\t0x8DE0\n0xE069\t0x8DEC\n0xE06A\t0x8DF1\n0xE06B\t0x8DEE\n0xE06C\t0x8DD0\n0xE06D\t0x8DE9\n0xE06E\t0x8DE3\n0xE06F\t0x8DE2\n0xE070\t0x8DE7\n0xE071\t0x8DF2\n0xE072\t0x8DEB\n0xE073\t0x8DF4\n0xE074\t0x8F06\n0xE075\t0x8EFF\n0xE076\t0x8F01\n0xE077\t0x8F00\n0xE078\t0x8F05\n0xE079\t0x8F07\n0xE07A\t0x8F08\n0xE07B\t0x8F02\n0xE07C\t0x8F0B\n0xE07D\t0x9052\n0xE07E\t0x903F\n0xE0A1\t0x9044\n0xE0A2\t0x9049\n0xE0A3\t0x903D\n0xE0A4\t0x9110\n0xE0A5\t0x910D\n0xE0A6\t0x910F\n0xE0A7\t0x9111\n0xE0A8\t0x9116\n0xE0A9\t0x9114\n0xE0AA\t0x910B\n0xE0AB\t0x910E\n0xE0AC\t0x916E\n0xE0AD\t0x916F\n0xE0AE\t0x9248\n0xE0AF\t0x9252\n0xE0B0\t0x9230\n0xE0B1\t0x923A\n0xE0B2\t0x9266\n0xE0B3\t0x9233\n0xE0B4\t0x9265\n0xE0B5\t0x925E\n0xE0B6\t0x9283\n0xE0B7\t0x922E\n0xE0B8\t0x924A\n0xE0B9\t0x9246\n0xE0BA\t0x926D\n0xE0BB\t0x926C\n0xE0BC\t0x924F\n0xE0BD\t0x9260\n0xE0BE\t0x9267\n0xE0BF\t0x926F\n0xE0C0\t0x9236\n0xE0C1\t0x9261\n0xE0C2\t0x9270\n0xE0C3\t0x9231\n0xE0C4\t0x9254\n0xE0C5\t0x9263\n0xE0C6\t0x9250\n0xE0C7\t0x9272\n0xE0C8\t0x924E\n0xE0C9\t0x9253\n0xE0CA\t0x924C\n0xE0CB\t0x9256\n0xE0CC\t0x9232\n0xE0CD\t0x959F\n0xE0CE\t0x959C\n0xE0CF\t0x959E\n0xE0D0\t0x959B\n0xE0D1\t0x9692\n0xE0D2\t0x9693\n0xE0D3\t0x9691\n0xE0D4\t0x9697\n0xE0D5\t0x96CE\n0xE0D6\t0x96FA\n0xE0D7\t0x96FD\n0xE0D8\t0x96F8\n0xE0D9\t0x96F5\n0xE0DA\t0x9773\n0xE0DB\t0x9777\n0xE0DC\t0x9778\n0xE0DD\t0x9772\n0xE0DE\t0x980F\n0xE0DF\t0x980D\n0xE0E0\t0x980E\n0xE0E1\t0x98AC\n0xE0E2\t0x98F6\n0xE0E3\t0x98F9\n0xE0E4\t0x99AF\n0xE0E5\t0x99B2\n0xE0E6\t0x99B0\n0xE0E7\t0x99B5\n0xE0E8\t0x9AAD\n0xE0E9\t0x9AAB\n0xE0EA\t0x9B5B\n0xE0EB\t0x9CEA\n0xE0EC\t0x9CED\n0xE0ED\t0x9CE7\n0xE0EE\t0x9E80\n0xE0EF\t0x9EFD\n0xE0F0\t0x50E6\n0xE0F1\t0x50D4\n0xE0F2\t0x50D7\n0xE0F3\t0x50E8\n0xE0F4\t0x50F3\n0xE0F5\t0x50DB\n0xE0F6\t0x50EA\n0xE0F7\t0x50DD\n0xE0F8\t0x50E4\n0xE0F9\t0x50D3\n0xE0FA\t0x50EC\n0xE0FB\t0x50F0\n0xE0FC\t0x50EF\n0xE0FD\t0x50E3\n0xE0FE\t0x50E0\n0xE140\t0x51D8\n0xE141\t0x5280\n0xE142\t0x5281\n0xE143\t0x52E9\n0xE144\t0x52EB\n0xE145\t0x5330\n0xE146\t0x53AC\n0xE147\t0x5627\n0xE148\t0x5615\n0xE149\t0x560C\n0xE14A\t0x5612\n0xE14B\t0x55FC\n0xE14C\t0x560F\n0xE14D\t0x561C\n0xE14E\t0x5601\n0xE14F\t0x5613\n0xE150\t0x5602\n0xE151\t0x55FA\n0xE152\t0x561D\n0xE153\t0x5604\n0xE154\t0x55FF\n0xE155\t0x55F9\n0xE156\t0x5889\n0xE157\t0x587C\n0xE158\t0x5890\n0xE159\t0x5898\n0xE15A\t0x5886\n0xE15B\t0x5881\n0xE15C\t0x587F\n0xE15D\t0x5874\n0xE15E\t0x588B\n0xE15F\t0x587A\n0xE160\t0x5887\n0xE161\t0x5891\n0xE162\t0x588E\n0xE163\t0x5876\n0xE164\t0x5882\n0xE165\t0x5888\n0xE166\t0x587B\n0xE167\t0x5894\n0xE168\t0x588F\n0xE169\t0x58FE\n0xE16A\t0x596B\n0xE16B\t0x5ADC\n0xE16C\t0x5AEE\n0xE16D\t0x5AE5\n0xE16E\t0x5AD5\n0xE16F\t0x5AEA\n0xE170\t0x5ADA\n0xE171\t0x5AED\n0xE172\t0x5AEB\n0xE173\t0x5AF3\n0xE174\t0x5AE2\n0xE175\t0x5AE0\n0xE176\t0x5ADB\n0xE177\t0x5AEC\n0xE178\t0x5ADE\n0xE179\t0x5ADD\n0xE17A\t0x5AD9\n0xE17B\t0x5AE8\n0xE17C\t0x5ADF\n0xE17D\t0x5B77\n0xE17E\t0x5BE0\n0xE1A1\t0x5BE3\n0xE1A2\t0x5C63\n0xE1A3\t0x5D82\n0xE1A4\t0x5D80\n0xE1A5\t0x5D7D\n0xE1A6\t0x5D86\n0xE1A7\t0x5D7A\n0xE1A8\t0x5D81\n0xE1A9\t0x5D77\n0xE1AA\t0x5D8A\n0xE1AB\t0x5D89\n0xE1AC\t0x5D88\n0xE1AD\t0x5D7E\n0xE1AE\t0x5D7C\n0xE1AF\t0x5D8D\n0xE1B0\t0x5D79\n0xE1B1\t0x5D7F\n0xE1B2\t0x5E58\n0xE1B3\t0x5E59\n0xE1B4\t0x5E53\n0xE1B5\t0x5ED8\n0xE1B6\t0x5ED1\n0xE1B7\t0x5ED7\n0xE1B8\t0x5ECE\n0xE1B9\t0x5EDC\n0xE1BA\t0x5ED5\n0xE1BB\t0x5ED9\n0xE1BC\t0x5ED2\n0xE1BD\t0x5ED4\n0xE1BE\t0x5F44\n0xE1BF\t0x5F43\n0xE1C0\t0x5F6F\n0xE1C1\t0x5FB6\n0xE1C2\t0x612C\n0xE1C3\t0x6128\n0xE1C4\t0x6141\n0xE1C5\t0x615E\n0xE1C6\t0x6171\n0xE1C7\t0x6173\n0xE1C8\t0x6152\n0xE1C9\t0x6153\n0xE1CA\t0x6172\n0xE1CB\t0x616C\n0xE1CC\t0x6180\n0xE1CD\t0x6174\n0xE1CE\t0x6154\n0xE1CF\t0x617A\n0xE1D0\t0x615B\n0xE1D1\t0x6165\n0xE1D2\t0x613B\n0xE1D3\t0x616A\n0xE1D4\t0x6161\n0xE1D5\t0x6156\n0xE1D6\t0x6229\n0xE1D7\t0x6227\n0xE1D8\t0x622B\n0xE1D9\t0x642B\n0xE1DA\t0x644D\n0xE1DB\t0x645B\n0xE1DC\t0x645D\n0xE1DD\t0x6474\n0xE1DE\t0x6476\n0xE1DF\t0x6472\n0xE1E0\t0x6473\n0xE1E1\t0x647D\n0xE1E2\t0x6475\n0xE1E3\t0x6466\n0xE1E4\t0x64A6\n0xE1E5\t0x644E\n0xE1E6\t0x6482\n0xE1E7\t0x645E\n0xE1E8\t0x645C\n0xE1E9\t0x644B\n0xE1EA\t0x6453\n0xE1EB\t0x6460\n0xE1EC\t0x6450\n0xE1ED\t0x647F\n0xE1EE\t0x643F\n0xE1EF\t0x646C\n0xE1F0\t0x646B\n0xE1F1\t0x6459\n0xE1F2\t0x6465\n0xE1F3\t0x6477\n0xE1F4\t0x6573\n0xE1F5\t0x65A0\n0xE1F6\t0x66A1\n0xE1F7\t0x66A0\n0xE1F8\t0x669F\n0xE1F9\t0x6705\n0xE1FA\t0x6704\n0xE1FB\t0x6722\n0xE1FC\t0x69B1\n0xE1FD\t0x69B6\n0xE1FE\t0x69C9\n0xE240\t0x69A0\n0xE241\t0x69CE\n0xE242\t0x6996\n0xE243\t0x69B0\n0xE244\t0x69AC\n0xE245\t0x69BC\n0xE246\t0x6991\n0xE247\t0x6999\n0xE248\t0x698E\n0xE249\t0x69A7\n0xE24A\t0x698D\n0xE24B\t0x69A9\n0xE24C\t0x69BE\n0xE24D\t0x69AF\n0xE24E\t0x69BF\n0xE24F\t0x69C4\n0xE250\t0x69BD\n0xE251\t0x69A4\n0xE252\t0x69D4\n0xE253\t0x69B9\n0xE254\t0x69CA\n0xE255\t0x699A\n0xE256\t0x69CF\n0xE257\t0x69B3\n0xE258\t0x6993\n0xE259\t0x69AA\n0xE25A\t0x69A1\n0xE25B\t0x699E\n0xE25C\t0x69D9\n0xE25D\t0x6997\n0xE25E\t0x6990\n0xE25F\t0x69C2\n0xE260\t0x69B5\n0xE261\t0x69A5\n0xE262\t0x69C6\n0xE263\t0x6B4A\n0xE264\t0x6B4D\n0xE265\t0x6B4B\n0xE266\t0x6B9E\n0xE267\t0x6B9F\n0xE268\t0x6BA0\n0xE269\t0x6BC3\n0xE26A\t0x6BC4\n0xE26B\t0x6BFE\n0xE26C\t0x6ECE\n0xE26D\t0x6EF5\n0xE26E\t0x6EF1\n0xE26F\t0x6F03\n0xE270\t0x6F25\n0xE271\t0x6EF8\n0xE272\t0x6F37\n0xE273\t0x6EFB\n0xE274\t0x6F2E\n0xE275\t0x6F09\n0xE276\t0x6F4E\n0xE277\t0x6F19\n0xE278\t0x6F1A\n0xE279\t0x6F27\n0xE27A\t0x6F18\n0xE27B\t0x6F3B\n0xE27C\t0x6F12\n0xE27D\t0x6EED\n0xE27E\t0x6F0A\n0xE2A1\t0x6F36\n0xE2A2\t0x6F73\n0xE2A3\t0x6EF9\n0xE2A4\t0x6EEE\n0xE2A5\t0x6F2D\n0xE2A6\t0x6F40\n0xE2A7\t0x6F30\n0xE2A8\t0x6F3C\n0xE2A9\t0x6F35\n0xE2AA\t0x6EEB\n0xE2AB\t0x6F07\n0xE2AC\t0x6F0E\n0xE2AD\t0x6F43\n0xE2AE\t0x6F05\n0xE2AF\t0x6EFD\n0xE2B0\t0x6EF6\n0xE2B1\t0x6F39\n0xE2B2\t0x6F1C\n0xE2B3\t0x6EFC\n0xE2B4\t0x6F3A\n0xE2B5\t0x6F1F\n0xE2B6\t0x6F0D\n0xE2B7\t0x6F1E\n0xE2B8\t0x6F08\n0xE2B9\t0x6F21\n0xE2BA\t0x7187\n0xE2BB\t0x7190\n0xE2BC\t0x7189\n0xE2BD\t0x7180\n0xE2BE\t0x7185\n0xE2BF\t0x7182\n0xE2C0\t0x718F\n0xE2C1\t0x717B\n0xE2C2\t0x7186\n0xE2C3\t0x7181\n0xE2C4\t0x7197\n0xE2C5\t0x7244\n0xE2C6\t0x7253\n0xE2C7\t0x7297\n0xE2C8\t0x7295\n0xE2C9\t0x7293\n0xE2CA\t0x7343\n0xE2CB\t0x734D\n0xE2CC\t0x7351\n0xE2CD\t0x734C\n0xE2CE\t0x7462\n0xE2CF\t0x7473\n0xE2D0\t0x7471\n0xE2D1\t0x7475\n0xE2D2\t0x7472\n0xE2D3\t0x7467\n0xE2D4\t0x746E\n0xE2D5\t0x7500\n0xE2D6\t0x7502\n0xE2D7\t0x7503\n0xE2D8\t0x757D\n0xE2D9\t0x7590\n0xE2DA\t0x7616\n0xE2DB\t0x7608\n0xE2DC\t0x760C\n0xE2DD\t0x7615\n0xE2DE\t0x7611\n0xE2DF\t0x760A\n0xE2E0\t0x7614\n0xE2E1\t0x76B8\n0xE2E2\t0x7781\n0xE2E3\t0x777C\n0xE2E4\t0x7785\n0xE2E5\t0x7782\n0xE2E6\t0x776E\n0xE2E7\t0x7780\n0xE2E8\t0x776F\n0xE2E9\t0x777E\n0xE2EA\t0x7783\n0xE2EB\t0x78B2\n0xE2EC\t0x78AA\n0xE2ED\t0x78B4\n0xE2EE\t0x78AD\n0xE2EF\t0x78A8\n0xE2F0\t0x787E\n0xE2F1\t0x78AB\n0xE2F2\t0x789E\n0xE2F3\t0x78A5\n0xE2F4\t0x78A0\n0xE2F5\t0x78AC\n0xE2F6\t0x78A2\n0xE2F7\t0x78A4\n0xE2F8\t0x7998\n0xE2F9\t0x798A\n0xE2FA\t0x798B\n0xE2FB\t0x7996\n0xE2FC\t0x7995\n0xE2FD\t0x7994\n0xE2FE\t0x7993\n0xE340\t0x7997\n0xE341\t0x7988\n0xE342\t0x7992\n0xE343\t0x7990\n0xE344\t0x7A2B\n0xE345\t0x7A4A\n0xE346\t0x7A30\n0xE347\t0x7A2F\n0xE348\t0x7A28\n0xE349\t0x7A26\n0xE34A\t0x7AA8\n0xE34B\t0x7AAB\n0xE34C\t0x7AAC\n0xE34D\t0x7AEE\n0xE34E\t0x7B88\n0xE34F\t0x7B9C\n0xE350\t0x7B8A\n0xE351\t0x7B91\n0xE352\t0x7B90\n0xE353\t0x7B96\n0xE354\t0x7B8D\n0xE355\t0x7B8C\n0xE356\t0x7B9B\n0xE357\t0x7B8E\n0xE358\t0x7B85\n0xE359\t0x7B98\n0xE35A\t0x5284\n0xE35B\t0x7B99\n0xE35C\t0x7BA4\n0xE35D\t0x7B82\n0xE35E\t0x7CBB\n0xE35F\t0x7CBF\n0xE360\t0x7CBC\n0xE361\t0x7CBA\n0xE362\t0x7DA7\n0xE363\t0x7DB7\n0xE364\t0x7DC2\n0xE365\t0x7DA3\n0xE366\t0x7DAA\n0xE367\t0x7DC1\n0xE368\t0x7DC0\n0xE369\t0x7DC5\n0xE36A\t0x7D9D\n0xE36B\t0x7DCE\n0xE36C\t0x7DC4\n0xE36D\t0x7DC6\n0xE36E\t0x7DCB\n0xE36F\t0x7DCC\n0xE370\t0x7DAF\n0xE371\t0x7DB9\n0xE372\t0x7D96\n0xE373\t0x7DBC\n0xE374\t0x7D9F\n0xE375\t0x7DA6\n0xE376\t0x7DAE\n0xE377\t0x7DA9\n0xE378\t0x7DA1\n0xE379\t0x7DC9\n0xE37A\t0x7F73\n0xE37B\t0x7FE2\n0xE37C\t0x7FE3\n0xE37D\t0x7FE5\n0xE37E\t0x7FDE\n0xE3A1\t0x8024\n0xE3A2\t0x805D\n0xE3A3\t0x805C\n0xE3A4\t0x8189\n0xE3A5\t0x8186\n0xE3A6\t0x8183\n0xE3A7\t0x8187\n0xE3A8\t0x818D\n0xE3A9\t0x818C\n0xE3AA\t0x818B\n0xE3AB\t0x8215\n0xE3AC\t0x8497\n0xE3AD\t0x84A4\n0xE3AE\t0x84A1\n0xE3AF\t0x849F\n0xE3B0\t0x84BA\n0xE3B1\t0x84CE\n0xE3B2\t0x84C2\n0xE3B3\t0x84AC\n0xE3B4\t0x84AE\n0xE3B5\t0x84AB\n0xE3B6\t0x84B9\n0xE3B7\t0x84B4\n0xE3B8\t0x84C1\n0xE3B9\t0x84CD\n0xE3BA\t0x84AA\n0xE3BB\t0x849A\n0xE3BC\t0x84B1\n0xE3BD\t0x84D0\n0xE3BE\t0x849D\n0xE3BF\t0x84A7\n0xE3C0\t0x84BB\n0xE3C1\t0x84A2\n0xE3C2\t0x8494\n0xE3C3\t0x84C7\n0xE3C4\t0x84CC\n0xE3C5\t0x849B\n0xE3C6\t0x84A9\n0xE3C7\t0x84AF\n0xE3C8\t0x84A8\n0xE3C9\t0x84D6\n0xE3CA\t0x8498\n0xE3CB\t0x84B6\n0xE3CC\t0x84CF\n0xE3CD\t0x84A0\n0xE3CE\t0x84D7\n0xE3CF\t0x84D4\n0xE3D0\t0x84D2\n0xE3D1\t0x84DB\n0xE3D2\t0x84B0\n0xE3D3\t0x8491\n0xE3D4\t0x8661\n0xE3D5\t0x8733\n0xE3D6\t0x8723\n0xE3D7\t0x8728\n0xE3D8\t0x876B\n0xE3D9\t0x8740\n0xE3DA\t0x872E\n0xE3DB\t0x871E\n0xE3DC\t0x8721\n0xE3DD\t0x8719\n0xE3DE\t0x871B\n0xE3DF\t0x8743\n0xE3E0\t0x872C\n0xE3E1\t0x8741\n0xE3E2\t0x873E\n0xE3E3\t0x8746\n0xE3E4\t0x8720\n0xE3E5\t0x8732\n0xE3E6\t0x872A\n0xE3E7\t0x872D\n0xE3E8\t0x873C\n0xE3E9\t0x8712\n0xE3EA\t0x873A\n0xE3EB\t0x8731\n0xE3EC\t0x8735\n0xE3ED\t0x8742\n0xE3EE\t0x8726\n0xE3EF\t0x8727\n0xE3F0\t0x8738\n0xE3F1\t0x8724\n0xE3F2\t0x871A\n0xE3F3\t0x8730\n0xE3F4\t0x8711\n0xE3F5\t0x88F7\n0xE3F6\t0x88E7\n0xE3F7\t0x88F1\n0xE3F8\t0x88F2\n0xE3F9\t0x88FA\n0xE3FA\t0x88FE\n0xE3FB\t0x88EE\n0xE3FC\t0x88FC\n0xE3FD\t0x88F6\n0xE3FE\t0x88FB\n0xE440\t0x88F0\n0xE441\t0x88EC\n0xE442\t0x88EB\n0xE443\t0x899D\n0xE444\t0x89A1\n0xE445\t0x899F\n0xE446\t0x899E\n0xE447\t0x89E9\n0xE448\t0x89EB\n0xE449\t0x89E8\n0xE44A\t0x8AAB\n0xE44B\t0x8A99\n0xE44C\t0x8A8B\n0xE44D\t0x8A92\n0xE44E\t0x8A8F\n0xE44F\t0x8A96\n0xE450\t0x8C3D\n0xE451\t0x8C68\n0xE452\t0x8C69\n0xE453\t0x8CD5\n0xE454\t0x8CCF\n0xE455\t0x8CD7\n0xE456\t0x8D96\n0xE457\t0x8E09\n0xE458\t0x8E02\n0xE459\t0x8DFF\n0xE45A\t0x8E0D\n0xE45B\t0x8DFD\n0xE45C\t0x8E0A\n0xE45D\t0x8E03\n0xE45E\t0x8E07\n0xE45F\t0x8E06\n0xE460\t0x8E05\n0xE461\t0x8DFE\n0xE462\t0x8E00\n0xE463\t0x8E04\n0xE464\t0x8F10\n0xE465\t0x8F11\n0xE466\t0x8F0E\n0xE467\t0x8F0D\n0xE468\t0x9123\n0xE469\t0x911C\n0xE46A\t0x9120\n0xE46B\t0x9122\n0xE46C\t0x911F\n0xE46D\t0x911D\n0xE46E\t0x911A\n0xE46F\t0x9124\n0xE470\t0x9121\n0xE471\t0x911B\n0xE472\t0x917A\n0xE473\t0x9172\n0xE474\t0x9179\n0xE475\t0x9173\n0xE476\t0x92A5\n0xE477\t0x92A4\n0xE478\t0x9276\n0xE479\t0x929B\n0xE47A\t0x927A\n0xE47B\t0x92A0\n0xE47C\t0x9294\n0xE47D\t0x92AA\n0xE47E\t0x928D\n0xE4A1\t0x92A6\n0xE4A2\t0x929A\n0xE4A3\t0x92AB\n0xE4A4\t0x9279\n0xE4A5\t0x9297\n0xE4A6\t0x927F\n0xE4A7\t0x92A3\n0xE4A8\t0x92EE\n0xE4A9\t0x928E\n0xE4AA\t0x9282\n0xE4AB\t0x9295\n0xE4AC\t0x92A2\n0xE4AD\t0x927D\n0xE4AE\t0x9288\n0xE4AF\t0x92A1\n0xE4B0\t0x928A\n0xE4B1\t0x9286\n0xE4B2\t0x928C\n0xE4B3\t0x9299\n0xE4B4\t0x92A7\n0xE4B5\t0x927E\n0xE4B6\t0x9287\n0xE4B7\t0x92A9\n0xE4B8\t0x929D\n0xE4B9\t0x928B\n0xE4BA\t0x922D\n0xE4BB\t0x969E\n0xE4BC\t0x96A1\n0xE4BD\t0x96FF\n0xE4BE\t0x9758\n0xE4BF\t0x977D\n0xE4C0\t0x977A\n0xE4C1\t0x977E\n0xE4C2\t0x9783\n0xE4C3\t0x9780\n0xE4C4\t0x9782\n0xE4C5\t0x977B\n0xE4C6\t0x9784\n0xE4C7\t0x9781\n0xE4C8\t0x977F\n0xE4C9\t0x97CE\n0xE4CA\t0x97CD\n0xE4CB\t0x9816\n0xE4CC\t0x98AD\n0xE4CD\t0x98AE\n0xE4CE\t0x9902\n0xE4CF\t0x9900\n0xE4D0\t0x9907\n0xE4D1\t0x999D\n0xE4D2\t0x999C\n0xE4D3\t0x99C3\n0xE4D4\t0x99B9\n0xE4D5\t0x99BB\n0xE4D6\t0x99BA\n0xE4D7\t0x99C2\n0xE4D8\t0x99BD\n0xE4D9\t0x99C7\n0xE4DA\t0x9AB1\n0xE4DB\t0x9AE3\n0xE4DC\t0x9AE7\n0xE4DD\t0x9B3E\n0xE4DE\t0x9B3F\n0xE4DF\t0x9B60\n0xE4E0\t0x9B61\n0xE4E1\t0x9B5F\n0xE4E2\t0x9CF1\n0xE4E3\t0x9CF2\n0xE4E4\t0x9CF5\n0xE4E5\t0x9EA7\n0xE4E6\t0x50FF\n0xE4E7\t0x5103\n0xE4E8\t0x5130\n0xE4E9\t0x50F8\n0xE4EA\t0x5106\n0xE4EB\t0x5107\n0xE4EC\t0x50F6\n0xE4ED\t0x50FE\n0xE4EE\t0x510B\n0xE4EF\t0x510C\n0xE4F0\t0x50FD\n0xE4F1\t0x510A\n0xE4F2\t0x528B\n0xE4F3\t0x528C\n0xE4F4\t0x52F1\n0xE4F5\t0x52EF\n0xE4F6\t0x5648\n0xE4F7\t0x5642\n0xE4F8\t0x564C\n0xE4F9\t0x5635\n0xE4FA\t0x5641\n0xE4FB\t0x564A\n0xE4FC\t0x5649\n0xE4FD\t0x5646\n0xE4FE\t0x5658\n0xE540\t0x565A\n0xE541\t0x5640\n0xE542\t0x5633\n0xE543\t0x563D\n0xE544\t0x562C\n0xE545\t0x563E\n0xE546\t0x5638\n0xE547\t0x562A\n0xE548\t0x563A\n0xE549\t0x571A\n0xE54A\t0x58AB\n0xE54B\t0x589D\n0xE54C\t0x58B1\n0xE54D\t0x58A0\n0xE54E\t0x58A3\n0xE54F\t0x58AF\n0xE550\t0x58AC\n0xE551\t0x58A5\n0xE552\t0x58A1\n0xE553\t0x58FF\n0xE554\t0x5AFF\n0xE555\t0x5AF4\n0xE556\t0x5AFD\n0xE557\t0x5AF7\n0xE558\t0x5AF6\n0xE559\t0x5B03\n0xE55A\t0x5AF8\n0xE55B\t0x5B02\n0xE55C\t0x5AF9\n0xE55D\t0x5B01\n0xE55E\t0x5B07\n0xE55F\t0x5B05\n0xE560\t0x5B0F\n0xE561\t0x5C67\n0xE562\t0x5D99\n0xE563\t0x5D97\n0xE564\t0x5D9F\n0xE565\t0x5D92\n0xE566\t0x5DA2\n0xE567\t0x5D93\n0xE568\t0x5D95\n0xE569\t0x5DA0\n0xE56A\t0x5D9C\n0xE56B\t0x5DA1\n0xE56C\t0x5D9A\n0xE56D\t0x5D9E\n0xE56E\t0x5E69\n0xE56F\t0x5E5D\n0xE570\t0x5E60\n0xE571\t0x5E5C\n0xE572\t0x7DF3\n0xE573\t0x5EDB\n0xE574\t0x5EDE\n0xE575\t0x5EE1\n0xE576\t0x5F49\n0xE577\t0x5FB2\n0xE578\t0x618B\n0xE579\t0x6183\n0xE57A\t0x6179\n0xE57B\t0x61B1\n0xE57C\t0x61B0\n0xE57D\t0x61A2\n0xE57E\t0x6189\n0xE5A1\t0x619B\n0xE5A2\t0x6193\n0xE5A3\t0x61AF\n0xE5A4\t0x61AD\n0xE5A5\t0x619F\n0xE5A6\t0x6192\n0xE5A7\t0x61AA\n0xE5A8\t0x61A1\n0xE5A9\t0x618D\n0xE5AA\t0x6166\n0xE5AB\t0x61B3\n0xE5AC\t0x622D\n0xE5AD\t0x646E\n0xE5AE\t0x6470\n0xE5AF\t0x6496\n0xE5B0\t0x64A0\n0xE5B1\t0x6485\n0xE5B2\t0x6497\n0xE5B3\t0x649C\n0xE5B4\t0x648F\n0xE5B5\t0x648B\n0xE5B6\t0x648A\n0xE5B7\t0x648C\n0xE5B8\t0x64A3\n0xE5B9\t0x649F\n0xE5BA\t0x6468\n0xE5BB\t0x64B1\n0xE5BC\t0x6498\n0xE5BD\t0x6576\n0xE5BE\t0x657A\n0xE5BF\t0x6579\n0xE5C0\t0x657B\n0xE5C1\t0x65B2\n0xE5C2\t0x65B3\n0xE5C3\t0x66B5\n0xE5C4\t0x66B0\n0xE5C5\t0x66A9\n0xE5C6\t0x66B2\n0xE5C7\t0x66B7\n0xE5C8\t0x66AA\n0xE5C9\t0x66AF\n0xE5CA\t0x6A00\n0xE5CB\t0x6A06\n0xE5CC\t0x6A17\n0xE5CD\t0x69E5\n0xE5CE\t0x69F8\n0xE5CF\t0x6A15\n0xE5D0\t0x69F1\n0xE5D1\t0x69E4\n0xE5D2\t0x6A20\n0xE5D3\t0x69FF\n0xE5D4\t0x69EC\n0xE5D5\t0x69E2\n0xE5D6\t0x6A1B\n0xE5D7\t0x6A1D\n0xE5D8\t0x69FE\n0xE5D9\t0x6A27\n0xE5DA\t0x69F2\n0xE5DB\t0x69EE\n0xE5DC\t0x6A14\n0xE5DD\t0x69F7\n0xE5DE\t0x69E7\n0xE5DF\t0x6A40\n0xE5E0\t0x6A08\n0xE5E1\t0x69E6\n0xE5E2\t0x69FB\n0xE5E3\t0x6A0D\n0xE5E4\t0x69FC\n0xE5E5\t0x69EB\n0xE5E6\t0x6A09\n0xE5E7\t0x6A04\n0xE5E8\t0x6A18\n0xE5E9\t0x6A25\n0xE5EA\t0x6A0F\n0xE5EB\t0x69F6\n0xE5EC\t0x6A26\n0xE5ED\t0x6A07\n0xE5EE\t0x69F4\n0xE5EF\t0x6A16\n0xE5F0\t0x6B51\n0xE5F1\t0x6BA5\n0xE5F2\t0x6BA3\n0xE5F3\t0x6BA2\n0xE5F4\t0x6BA6\n0xE5F5\t0x6C01\n0xE5F6\t0x6C00\n0xE5F7\t0x6BFF\n0xE5F8\t0x6C02\n0xE5F9\t0x6F41\n0xE5FA\t0x6F26\n0xE5FB\t0x6F7E\n0xE5FC\t0x6F87\n0xE5FD\t0x6FC6\n0xE5FE\t0x6F92\n0xE640\t0x6F8D\n0xE641\t0x6F89\n0xE642\t0x6F8C\n0xE643\t0x6F62\n0xE644\t0x6F4F\n0xE645\t0x6F85\n0xE646\t0x6F5A\n0xE647\t0x6F96\n0xE648\t0x6F76\n0xE649\t0x6F6C\n0xE64A\t0x6F82\n0xE64B\t0x6F55\n0xE64C\t0x6F72\n0xE64D\t0x6F52\n0xE64E\t0x6F50\n0xE64F\t0x6F57\n0xE650\t0x6F94\n0xE651\t0x6F93\n0xE652\t0x6F5D\n0xE653\t0x6F00\n0xE654\t0x6F61\n0xE655\t0x6F6B\n0xE656\t0x6F7D\n0xE657\t0x6F67\n0xE658\t0x6F90\n0xE659\t0x6F53\n0xE65A\t0x6F8B\n0xE65B\t0x6F69\n0xE65C\t0x6F7F\n0xE65D\t0x6F95\n0xE65E\t0x6F63\n0xE65F\t0x6F77\n0xE660\t0x6F6A\n0xE661\t0x6F7B\n0xE662\t0x71B2\n0xE663\t0x71AF\n0xE664\t0x719B\n0xE665\t0x71B0\n0xE666\t0x71A0\n0xE667\t0x719A\n0xE668\t0x71A9\n0xE669\t0x71B5\n0xE66A\t0x719D\n0xE66B\t0x71A5\n0xE66C\t0x719E\n0xE66D\t0x71A4\n0xE66E\t0x71A1\n0xE66F\t0x71AA\n0xE670\t0x719C\n0xE671\t0x71A7\n0xE672\t0x71B3\n0xE673\t0x7298\n0xE674\t0x729A\n0xE675\t0x7358\n0xE676\t0x7352\n0xE677\t0x735E\n0xE678\t0x735F\n0xE679\t0x7360\n0xE67A\t0x735D\n0xE67B\t0x735B\n0xE67C\t0x7361\n0xE67D\t0x735A\n0xE67E\t0x7359\n0xE6A1\t0x7362\n0xE6A2\t0x7487\n0xE6A3\t0x7489\n0xE6A4\t0x748A\n0xE6A5\t0x7486\n0xE6A6\t0x7481\n0xE6A7\t0x747D\n0xE6A8\t0x7485\n0xE6A9\t0x7488\n0xE6AA\t0x747C\n0xE6AB\t0x7479\n0xE6AC\t0x7508\n0xE6AD\t0x7507\n0xE6AE\t0x757E\n0xE6AF\t0x7625\n0xE6B0\t0x761E\n0xE6B1\t0x7619\n0xE6B2\t0x761D\n0xE6B3\t0x761C\n0xE6B4\t0x7623\n0xE6B5\t0x761A\n0xE6B6\t0x7628\n0xE6B7\t0x761B\n0xE6B8\t0x769C\n0xE6B9\t0x769D\n0xE6BA\t0x769E\n0xE6BB\t0x769B\n0xE6BC\t0x778D\n0xE6BD\t0x778F\n0xE6BE\t0x7789\n0xE6BF\t0x7788\n0xE6C0\t0x78CD\n0xE6C1\t0x78BB\n0xE6C2\t0x78CF\n0xE6C3\t0x78CC\n0xE6C4\t0x78D1\n0xE6C5\t0x78CE\n0xE6C6\t0x78D4\n0xE6C7\t0x78C8\n0xE6C8\t0x78C3\n0xE6C9\t0x78C4\n0xE6CA\t0x78C9\n0xE6CB\t0x799A\n0xE6CC\t0x79A1\n0xE6CD\t0x79A0\n0xE6CE\t0x799C\n0xE6CF\t0x79A2\n0xE6D0\t0x799B\n0xE6D1\t0x6B76\n0xE6D2\t0x7A39\n0xE6D3\t0x7AB2\n0xE6D4\t0x7AB4\n0xE6D5\t0x7AB3\n0xE6D6\t0x7BB7\n0xE6D7\t0x7BCB\n0xE6D8\t0x7BBE\n0xE6D9\t0x7BAC\n0xE6DA\t0x7BCE\n0xE6DB\t0x7BAF\n0xE6DC\t0x7BB9\n0xE6DD\t0x7BCA\n0xE6DE\t0x7BB5\n0xE6DF\t0x7CC5\n0xE6E0\t0x7CC8\n0xE6E1\t0x7CCC\n0xE6E2\t0x7CCB\n0xE6E3\t0x7DF7\n0xE6E4\t0x7DDB\n0xE6E5\t0x7DEA\n0xE6E6\t0x7DE7\n0xE6E7\t0x7DD7\n0xE6E8\t0x7DE1\n0xE6E9\t0x7E03\n0xE6EA\t0x7DFA\n0xE6EB\t0x7DE6\n0xE6EC\t0x7DF6\n0xE6ED\t0x7DF1\n0xE6EE\t0x7DF0\n0xE6EF\t0x7DEE\n0xE6F0\t0x7DDF\n0xE6F1\t0x7F76\n0xE6F2\t0x7FAC\n0xE6F3\t0x7FB0\n0xE6F4\t0x7FAD\n0xE6F5\t0x7FED\n0xE6F6\t0x7FEB\n0xE6F7\t0x7FEA\n0xE6F8\t0x7FEC\n0xE6F9\t0x7FE6\n0xE6FA\t0x7FE8\n0xE6FB\t0x8064\n0xE6FC\t0x8067\n0xE6FD\t0x81A3\n0xE6FE\t0x819F\n0xE740\t0x819E\n0xE741\t0x8195\n0xE742\t0x81A2\n0xE743\t0x8199\n0xE744\t0x8197\n0xE745\t0x8216\n0xE746\t0x824F\n0xE747\t0x8253\n0xE748\t0x8252\n0xE749\t0x8250\n0xE74A\t0x824E\n0xE74B\t0x8251\n0xE74C\t0x8524\n0xE74D\t0x853B\n0xE74E\t0x850F\n0xE74F\t0x8500\n0xE750\t0x8529\n0xE751\t0x850E\n0xE752\t0x8509\n0xE753\t0x850D\n0xE754\t0x851F\n0xE755\t0x850A\n0xE756\t0x8527\n0xE757\t0x851C\n0xE758\t0x84FB\n0xE759\t0x852B\n0xE75A\t0x84FA\n0xE75B\t0x8508\n0xE75C\t0x850C\n0xE75D\t0x84F4\n0xE75E\t0x852A\n0xE75F\t0x84F2\n0xE760\t0x8515\n0xE761\t0x84F7\n0xE762\t0x84EB\n0xE763\t0x84F3\n0xE764\t0x84FC\n0xE765\t0x8512\n0xE766\t0x84EA\n0xE767\t0x84E9\n0xE768\t0x8516\n0xE769\t0x84FE\n0xE76A\t0x8528\n0xE76B\t0x851D\n0xE76C\t0x852E\n0xE76D\t0x8502\n0xE76E\t0x84FD\n0xE76F\t0x851E\n0xE770\t0x84F6\n0xE771\t0x8531\n0xE772\t0x8526\n0xE773\t0x84E7\n0xE774\t0x84E8\n0xE775\t0x84F0\n0xE776\t0x84EF\n0xE777\t0x84F9\n0xE778\t0x8518\n0xE779\t0x8520\n0xE77A\t0x8530\n0xE77B\t0x850B\n0xE77C\t0x8519\n0xE77D\t0x852F\n0xE77E\t0x8662\n0xE7A1\t0x8756\n0xE7A2\t0x8763\n0xE7A3\t0x8764\n0xE7A4\t0x8777\n0xE7A5\t0x87E1\n0xE7A6\t0x8773\n0xE7A7\t0x8758\n0xE7A8\t0x8754\n0xE7A9\t0x875B\n0xE7AA\t0x8752\n0xE7AB\t0x8761\n0xE7AC\t0x875A\n0xE7AD\t0x8751\n0xE7AE\t0x875E\n0xE7AF\t0x876D\n0xE7B0\t0x876A\n0xE7B1\t0x8750\n0xE7B2\t0x874E\n0xE7B3\t0x875F\n0xE7B4\t0x875D\n0xE7B5\t0x876F\n0xE7B6\t0x876C\n0xE7B7\t0x877A\n0xE7B8\t0x876E\n0xE7B9\t0x875C\n0xE7BA\t0x8765\n0xE7BB\t0x874F\n0xE7BC\t0x877B\n0xE7BD\t0x8775\n0xE7BE\t0x8762\n0xE7BF\t0x8767\n0xE7C0\t0x8769\n0xE7C1\t0x885A\n0xE7C2\t0x8905\n0xE7C3\t0x890C\n0xE7C4\t0x8914\n0xE7C5\t0x890B\n0xE7C6\t0x8917\n0xE7C7\t0x8918\n0xE7C8\t0x8919\n0xE7C9\t0x8906\n0xE7CA\t0x8916\n0xE7CB\t0x8911\n0xE7CC\t0x890E\n0xE7CD\t0x8909\n0xE7CE\t0x89A2\n0xE7CF\t0x89A4\n0xE7D0\t0x89A3\n0xE7D1\t0x89ED\n0xE7D2\t0x89F0\n0xE7D3\t0x89EC\n0xE7D4\t0x8ACF\n0xE7D5\t0x8AC6\n0xE7D6\t0x8AB8\n0xE7D7\t0x8AD3\n0xE7D8\t0x8AD1\n0xE7D9\t0x8AD4\n0xE7DA\t0x8AD5\n0xE7DB\t0x8ABB\n0xE7DC\t0x8AD7\n0xE7DD\t0x8ABE\n0xE7DE\t0x8AC0\n0xE7DF\t0x8AC5\n0xE7E0\t0x8AD8\n0xE7E1\t0x8AC3\n0xE7E2\t0x8ABA\n0xE7E3\t0x8ABD\n0xE7E4\t0x8AD9\n0xE7E5\t0x8C3E\n0xE7E6\t0x8C4D\n0xE7E7\t0x8C8F\n0xE7E8\t0x8CE5\n0xE7E9\t0x8CDF\n0xE7EA\t0x8CD9\n0xE7EB\t0x8CE8\n0xE7EC\t0x8CDA\n0xE7ED\t0x8CDD\n0xE7EE\t0x8CE7\n0xE7EF\t0x8DA0\n0xE7F0\t0x8D9C\n0xE7F1\t0x8DA1\n0xE7F2\t0x8D9B\n0xE7F3\t0x8E20\n0xE7F4\t0x8E23\n0xE7F5\t0x8E25\n0xE7F6\t0x8E24\n0xE7F7\t0x8E2E\n0xE7F8\t0x8E15\n0xE7F9\t0x8E1B\n0xE7FA\t0x8E16\n0xE7FB\t0x8E11\n0xE7FC\t0x8E19\n0xE7FD\t0x8E26\n0xE7FE\t0x8E27\n0xE840\t0x8E14\n0xE841\t0x8E12\n0xE842\t0x8E18\n0xE843\t0x8E13\n0xE844\t0x8E1C\n0xE845\t0x8E17\n0xE846\t0x8E1A\n0xE847\t0x8F2C\n0xE848\t0x8F24\n0xE849\t0x8F18\n0xE84A\t0x8F1A\n0xE84B\t0x8F20\n0xE84C\t0x8F23\n0xE84D\t0x8F16\n0xE84E\t0x8F17\n0xE84F\t0x9073\n0xE850\t0x9070\n0xE851\t0x906F\n0xE852\t0x9067\n0xE853\t0x906B\n0xE854\t0x912F\n0xE855\t0x912B\n0xE856\t0x9129\n0xE857\t0x912A\n0xE858\t0x9132\n0xE859\t0x9126\n0xE85A\t0x912E\n0xE85B\t0x9185\n0xE85C\t0x9186\n0xE85D\t0x918A\n0xE85E\t0x9181\n0xE85F\t0x9182\n0xE860\t0x9184\n0xE861\t0x9180\n0xE862\t0x92D0\n0xE863\t0x92C3\n0xE864\t0x92C4\n0xE865\t0x92C0\n0xE866\t0x92D9\n0xE867\t0x92B6\n0xE868\t0x92CF\n0xE869\t0x92F1\n0xE86A\t0x92DF\n0xE86B\t0x92D8\n0xE86C\t0x92E9\n0xE86D\t0x92D7\n0xE86E\t0x92DD\n0xE86F\t0x92CC\n0xE870\t0x92EF\n0xE871\t0x92C2\n0xE872\t0x92E8\n0xE873\t0x92CA\n0xE874\t0x92C8\n0xE875\t0x92CE\n0xE876\t0x92E6\n0xE877\t0x92CD\n0xE878\t0x92D5\n0xE879\t0x92C9\n0xE87A\t0x92E0\n0xE87B\t0x92DE\n0xE87C\t0x92E7\n0xE87D\t0x92D1\n0xE87E\t0x92D3\n0xE8A1\t0x92B5\n0xE8A2\t0x92E1\n0xE8A3\t0x92C6\n0xE8A4\t0x92B4\n0xE8A5\t0x957C\n0xE8A6\t0x95AC\n0xE8A7\t0x95AB\n0xE8A8\t0x95AE\n0xE8A9\t0x95B0\n0xE8AA\t0x96A4\n0xE8AB\t0x96A2\n0xE8AC\t0x96D3\n0xE8AD\t0x9705\n0xE8AE\t0x9708\n0xE8AF\t0x9702\n0xE8B0\t0x975A\n0xE8B1\t0x978A\n0xE8B2\t0x978E\n0xE8B3\t0x9788\n0xE8B4\t0x97D0\n0xE8B5\t0x97CF\n0xE8B6\t0x981E\n0xE8B7\t0x981D\n0xE8B8\t0x9826\n0xE8B9\t0x9829\n0xE8BA\t0x9828\n0xE8BB\t0x9820\n0xE8BC\t0x981B\n0xE8BD\t0x9827\n0xE8BE\t0x98B2\n0xE8BF\t0x9908\n0xE8C0\t0x98FA\n0xE8C1\t0x9911\n0xE8C2\t0x9914\n0xE8C3\t0x9916\n0xE8C4\t0x9917\n0xE8C5\t0x9915\n0xE8C6\t0x99DC\n0xE8C7\t0x99CD\n0xE8C8\t0x99CF\n0xE8C9\t0x99D3\n0xE8CA\t0x99D4\n0xE8CB\t0x99CE\n0xE8CC\t0x99C9\n0xE8CD\t0x99D6\n0xE8CE\t0x99D8\n0xE8CF\t0x99CB\n0xE8D0\t0x99D7\n0xE8D1\t0x99CC\n0xE8D2\t0x9AB3\n0xE8D3\t0x9AEC\n0xE8D4\t0x9AEB\n0xE8D5\t0x9AF3\n0xE8D6\t0x9AF2\n0xE8D7\t0x9AF1\n0xE8D8\t0x9B46\n0xE8D9\t0x9B43\n0xE8DA\t0x9B67\n0xE8DB\t0x9B74\n0xE8DC\t0x9B71\n0xE8DD\t0x9B66\n0xE8DE\t0x9B76\n0xE8DF\t0x9B75\n0xE8E0\t0x9B70\n0xE8E1\t0x9B68\n0xE8E2\t0x9B64\n0xE8E3\t0x9B6C\n0xE8E4\t0x9CFC\n0xE8E5\t0x9CFA\n0xE8E6\t0x9CFD\n0xE8E7\t0x9CFF\n0xE8E8\t0x9CF7\n0xE8E9\t0x9D07\n0xE8EA\t0x9D00\n0xE8EB\t0x9CF9\n0xE8EC\t0x9CFB\n0xE8ED\t0x9D08\n0xE8EE\t0x9D05\n0xE8EF\t0x9D04\n0xE8F0\t0x9E83\n0xE8F1\t0x9ED3\n0xE8F2\t0x9F0F\n0xE8F3\t0x9F10\n0xE8F4\t0x511C\n0xE8F5\t0x5113\n0xE8F6\t0x5117\n0xE8F7\t0x511A\n0xE8F8\t0x5111\n0xE8F9\t0x51DE\n0xE8FA\t0x5334\n0xE8FB\t0x53E1\n0xE8FC\t0x5670\n0xE8FD\t0x5660\n0xE8FE\t0x566E\n0xE940\t0x5673\n0xE941\t0x5666\n0xE942\t0x5663\n0xE943\t0x566D\n0xE944\t0x5672\n0xE945\t0x565E\n0xE946\t0x5677\n0xE947\t0x571C\n0xE948\t0x571B\n0xE949\t0x58C8\n0xE94A\t0x58BD\n0xE94B\t0x58C9\n0xE94C\t0x58BF\n0xE94D\t0x58BA\n0xE94E\t0x58C2\n0xE94F\t0x58BC\n0xE950\t0x58C6\n0xE951\t0x5B17\n0xE952\t0x5B19\n0xE953\t0x5B1B\n0xE954\t0x5B21\n0xE955\t0x5B14\n0xE956\t0x5B13\n0xE957\t0x5B10\n0xE958\t0x5B16\n0xE959\t0x5B28\n0xE95A\t0x5B1A\n0xE95B\t0x5B20\n0xE95C\t0x5B1E\n0xE95D\t0x5BEF\n0xE95E\t0x5DAC\n0xE95F\t0x5DB1\n0xE960\t0x5DA9\n0xE961\t0x5DA7\n0xE962\t0x5DB5\n0xE963\t0x5DB0\n0xE964\t0x5DAE\n0xE965\t0x5DAA\n0xE966\t0x5DA8\n0xE967\t0x5DB2\n0xE968\t0x5DAD\n0xE969\t0x5DAF\n0xE96A\t0x5DB4\n0xE96B\t0x5E67\n0xE96C\t0x5E68\n0xE96D\t0x5E66\n0xE96E\t0x5E6F\n0xE96F\t0x5EE9\n0xE970\t0x5EE7\n0xE971\t0x5EE6\n0xE972\t0x5EE8\n0xE973\t0x5EE5\n0xE974\t0x5F4B\n0xE975\t0x5FBC\n0xE976\t0x619D\n0xE977\t0x61A8\n0xE978\t0x6196\n0xE979\t0x61C5\n0xE97A\t0x61B4\n0xE97B\t0x61C6\n0xE97C\t0x61C1\n0xE97D\t0x61CC\n0xE97E\t0x61BA\n0xE9A1\t0x61BF\n0xE9A2\t0x61B8\n0xE9A3\t0x618C\n0xE9A4\t0x64D7\n0xE9A5\t0x64D6\n0xE9A6\t0x64D0\n0xE9A7\t0x64CF\n0xE9A8\t0x64C9\n0xE9A9\t0x64BD\n0xE9AA\t0x6489\n0xE9AB\t0x64C3\n0xE9AC\t0x64DB\n0xE9AD\t0x64F3\n0xE9AE\t0x64D9\n0xE9AF\t0x6533\n0xE9B0\t0x657F\n0xE9B1\t0x657C\n0xE9B2\t0x65A2\n0xE9B3\t0x66C8\n0xE9B4\t0x66BE\n0xE9B5\t0x66C0\n0xE9B6\t0x66CA\n0xE9B7\t0x66CB\n0xE9B8\t0x66CF\n0xE9B9\t0x66BD\n0xE9BA\t0x66BB\n0xE9BB\t0x66BA\n0xE9BC\t0x66CC\n0xE9BD\t0x6723\n0xE9BE\t0x6A34\n0xE9BF\t0x6A66\n0xE9C0\t0x6A49\n0xE9C1\t0x6A67\n0xE9C2\t0x6A32\n0xE9C3\t0x6A68\n0xE9C4\t0x6A3E\n0xE9C5\t0x6A5D\n0xE9C6\t0x6A6D\n0xE9C7\t0x6A76\n0xE9C8\t0x6A5B\n0xE9C9\t0x6A51\n0xE9CA\t0x6A28\n0xE9CB\t0x6A5A\n0xE9CC\t0x6A3B\n0xE9CD\t0x6A3F\n0xE9CE\t0x6A41\n0xE9CF\t0x6A6A\n0xE9D0\t0x6A64\n0xE9D1\t0x6A50\n0xE9D2\t0x6A4F\n0xE9D3\t0x6A54\n0xE9D4\t0x6A6F\n0xE9D5\t0x6A69\n0xE9D6\t0x6A60\n0xE9D7\t0x6A3C\n0xE9D8\t0x6A5E\n0xE9D9\t0x6A56\n0xE9DA\t0x6A55\n0xE9DB\t0x6A4D\n0xE9DC\t0x6A4E\n0xE9DD\t0x6A46\n0xE9DE\t0x6B55\n0xE9DF\t0x6B54\n0xE9E0\t0x6B56\n0xE9E1\t0x6BA7\n0xE9E2\t0x6BAA\n0xE9E3\t0x6BAB\n0xE9E4\t0x6BC8\n0xE9E5\t0x6BC7\n0xE9E6\t0x6C04\n0xE9E7\t0x6C03\n0xE9E8\t0x6C06\n0xE9E9\t0x6FAD\n0xE9EA\t0x6FCB\n0xE9EB\t0x6FA3\n0xE9EC\t0x6FC7\n0xE9ED\t0x6FBC\n0xE9EE\t0x6FCE\n0xE9EF\t0x6FC8\n0xE9F0\t0x6F5E\n0xE9F1\t0x6FC4\n0xE9F2\t0x6FBD\n0xE9F3\t0x6F9E\n0xE9F4\t0x6FCA\n0xE9F5\t0x6FA8\n0xE9F6\t0x7004\n0xE9F7\t0x6FA5\n0xE9F8\t0x6FAE\n0xE9F9\t0x6FBA\n0xE9FA\t0x6FAC\n0xE9FB\t0x6FAA\n0xE9FC\t0x6FCF\n0xE9FD\t0x6FBF\n0xE9FE\t0x6FB8\n0xEA40\t0x6FA2\n0xEA41\t0x6FC9\n0xEA42\t0x6FAB\n0xEA43\t0x6FCD\n0xEA44\t0x6FAF\n0xEA45\t0x6FB2\n0xEA46\t0x6FB0\n0xEA47\t0x71C5\n0xEA48\t0x71C2\n0xEA49\t0x71BF\n0xEA4A\t0x71B8\n0xEA4B\t0x71D6\n0xEA4C\t0x71C0\n0xEA4D\t0x71C1\n0xEA4E\t0x71CB\n0xEA4F\t0x71D4\n0xEA50\t0x71CA\n0xEA51\t0x71C7\n0xEA52\t0x71CF\n0xEA53\t0x71BD\n0xEA54\t0x71D8\n0xEA55\t0x71BC\n0xEA56\t0x71C6\n0xEA57\t0x71DA\n0xEA58\t0x71DB\n0xEA59\t0x729D\n0xEA5A\t0x729E\n0xEA5B\t0x7369\n0xEA5C\t0x7366\n0xEA5D\t0x7367\n0xEA5E\t0x736C\n0xEA5F\t0x7365\n0xEA60\t0x736B\n0xEA61\t0x736A\n0xEA62\t0x747F\n0xEA63\t0x749A\n0xEA64\t0x74A0\n0xEA65\t0x7494\n0xEA66\t0x7492\n0xEA67\t0x7495\n0xEA68\t0x74A1\n0xEA69\t0x750B\n0xEA6A\t0x7580\n0xEA6B\t0x762F\n0xEA6C\t0x762D\n0xEA6D\t0x7631\n0xEA6E\t0x763D\n0xEA6F\t0x7633\n0xEA70\t0x763C\n0xEA71\t0x7635\n0xEA72\t0x7632\n0xEA73\t0x7630\n0xEA74\t0x76BB\n0xEA75\t0x76E6\n0xEA76\t0x779A\n0xEA77\t0x779D\n0xEA78\t0x77A1\n0xEA79\t0x779C\n0xEA7A\t0x779B\n0xEA7B\t0x77A2\n0xEA7C\t0x77A3\n0xEA7D\t0x7795\n0xEA7E\t0x7799\n0xEAA1\t0x7797\n0xEAA2\t0x78DD\n0xEAA3\t0x78E9\n0xEAA4\t0x78E5\n0xEAA5\t0x78EA\n0xEAA6\t0x78DE\n0xEAA7\t0x78E3\n0xEAA8\t0x78DB\n0xEAA9\t0x78E1\n0xEAAA\t0x78E2\n0xEAAB\t0x78ED\n0xEAAC\t0x78DF\n0xEAAD\t0x78E0\n0xEAAE\t0x79A4\n0xEAAF\t0x7A44\n0xEAB0\t0x7A48\n0xEAB1\t0x7A47\n0xEAB2\t0x7AB6\n0xEAB3\t0x7AB8\n0xEAB4\t0x7AB5\n0xEAB5\t0x7AB1\n0xEAB6\t0x7AB7\n0xEAB7\t0x7BDE\n0xEAB8\t0x7BE3\n0xEAB9\t0x7BE7\n0xEABA\t0x7BDD\n0xEABB\t0x7BD5\n0xEABC\t0x7BE5\n0xEABD\t0x7BDA\n0xEABE\t0x7BE8\n0xEABF\t0x7BF9\n0xEAC0\t0x7BD4\n0xEAC1\t0x7BEA\n0xEAC2\t0x7BE2\n0xEAC3\t0x7BDC\n0xEAC4\t0x7BEB\n0xEAC5\t0x7BD8\n0xEAC6\t0x7BDF\n0xEAC7\t0x7CD2\n0xEAC8\t0x7CD4\n0xEAC9\t0x7CD7\n0xEACA\t0x7CD0\n0xEACB\t0x7CD1\n0xEACC\t0x7E12\n0xEACD\t0x7E21\n0xEACE\t0x7E17\n0xEACF\t0x7E0C\n0xEAD0\t0x7E1F\n0xEAD1\t0x7E20\n0xEAD2\t0x7E13\n0xEAD3\t0x7E0E\n0xEAD4\t0x7E1C\n0xEAD5\t0x7E15\n0xEAD6\t0x7E1A\n0xEAD7\t0x7E22\n0xEAD8\t0x7E0B\n0xEAD9\t0x7E0F\n0xEADA\t0x7E16\n0xEADB\t0x7E0D\n0xEADC\t0x7E14\n0xEADD\t0x7E25\n0xEADE\t0x7E24\n0xEADF\t0x7F43\n0xEAE0\t0x7F7B\n0xEAE1\t0x7F7C\n0xEAE2\t0x7F7A\n0xEAE3\t0x7FB1\n0xEAE4\t0x7FEF\n0xEAE5\t0x802A\n0xEAE6\t0x8029\n0xEAE7\t0x806C\n0xEAE8\t0x81B1\n0xEAE9\t0x81A6\n0xEAEA\t0x81AE\n0xEAEB\t0x81B9\n0xEAEC\t0x81B5\n0xEAED\t0x81AB\n0xEAEE\t0x81B0\n0xEAEF\t0x81AC\n0xEAF0\t0x81B4\n0xEAF1\t0x81B2\n0xEAF2\t0x81B7\n0xEAF3\t0x81A7\n0xEAF4\t0x81F2\n0xEAF5\t0x8255\n0xEAF6\t0x8256\n0xEAF7\t0x8257\n0xEAF8\t0x8556\n0xEAF9\t0x8545\n0xEAFA\t0x856B\n0xEAFB\t0x854D\n0xEAFC\t0x8553\n0xEAFD\t0x8561\n0xEAFE\t0x8558\n0xEB40\t0x8540\n0xEB41\t0x8546\n0xEB42\t0x8564\n0xEB43\t0x8541\n0xEB44\t0x8562\n0xEB45\t0x8544\n0xEB46\t0x8551\n0xEB47\t0x8547\n0xEB48\t0x8563\n0xEB49\t0x853E\n0xEB4A\t0x855B\n0xEB4B\t0x8571\n0xEB4C\t0x854E\n0xEB4D\t0x856E\n0xEB4E\t0x8575\n0xEB4F\t0x8555\n0xEB50\t0x8567\n0xEB51\t0x8560\n0xEB52\t0x858C\n0xEB53\t0x8566\n0xEB54\t0x855D\n0xEB55\t0x8554\n0xEB56\t0x8565\n0xEB57\t0x856C\n0xEB58\t0x8663\n0xEB59\t0x8665\n0xEB5A\t0x8664\n0xEB5B\t0x879B\n0xEB5C\t0x878F\n0xEB5D\t0x8797\n0xEB5E\t0x8793\n0xEB5F\t0x8792\n0xEB60\t0x8788\n0xEB61\t0x8781\n0xEB62\t0x8796\n0xEB63\t0x8798\n0xEB64\t0x8779\n0xEB65\t0x8787\n0xEB66\t0x87A3\n0xEB67\t0x8785\n0xEB68\t0x8790\n0xEB69\t0x8791\n0xEB6A\t0x879D\n0xEB6B\t0x8784\n0xEB6C\t0x8794\n0xEB6D\t0x879C\n0xEB6E\t0x879A\n0xEB6F\t0x8789\n0xEB70\t0x891E\n0xEB71\t0x8926\n0xEB72\t0x8930\n0xEB73\t0x892D\n0xEB74\t0x892E\n0xEB75\t0x8927\n0xEB76\t0x8931\n0xEB77\t0x8922\n0xEB78\t0x8929\n0xEB79\t0x8923\n0xEB7A\t0x892F\n0xEB7B\t0x892C\n0xEB7C\t0x891F\n0xEB7D\t0x89F1\n0xEB7E\t0x8AE0\n0xEBA1\t0x8AE2\n0xEBA2\t0x8AF2\n0xEBA3\t0x8AF4\n0xEBA4\t0x8AF5\n0xEBA5\t0x8ADD\n0xEBA6\t0x8B14\n0xEBA7\t0x8AE4\n0xEBA8\t0x8ADF\n0xEBA9\t0x8AF0\n0xEBAA\t0x8AC8\n0xEBAB\t0x8ADE\n0xEBAC\t0x8AE1\n0xEBAD\t0x8AE8\n0xEBAE\t0x8AFF\n0xEBAF\t0x8AEF\n0xEBB0\t0x8AFB\n0xEBB1\t0x8C91\n0xEBB2\t0x8C92\n0xEBB3\t0x8C90\n0xEBB4\t0x8CF5\n0xEBB5\t0x8CEE\n0xEBB6\t0x8CF1\n0xEBB7\t0x8CF0\n0xEBB8\t0x8CF3\n0xEBB9\t0x8D6C\n0xEBBA\t0x8D6E\n0xEBBB\t0x8DA5\n0xEBBC\t0x8DA7\n0xEBBD\t0x8E33\n0xEBBE\t0x8E3E\n0xEBBF\t0x8E38\n0xEBC0\t0x8E40\n0xEBC1\t0x8E45\n0xEBC2\t0x8E36\n0xEBC3\t0x8E3C\n0xEBC4\t0x8E3D\n0xEBC5\t0x8E41\n0xEBC6\t0x8E30\n0xEBC7\t0x8E3F\n0xEBC8\t0x8EBD\n0xEBC9\t0x8F36\n0xEBCA\t0x8F2E\n0xEBCB\t0x8F35\n0xEBCC\t0x8F32\n0xEBCD\t0x8F39\n0xEBCE\t0x8F37\n0xEBCF\t0x8F34\n0xEBD0\t0x9076\n0xEBD1\t0x9079\n0xEBD2\t0x907B\n0xEBD3\t0x9086\n0xEBD4\t0x90FA\n0xEBD5\t0x9133\n0xEBD6\t0x9135\n0xEBD7\t0x9136\n0xEBD8\t0x9193\n0xEBD9\t0x9190\n0xEBDA\t0x9191\n0xEBDB\t0x918D\n0xEBDC\t0x918F\n0xEBDD\t0x9327\n0xEBDE\t0x931E\n0xEBDF\t0x9308\n0xEBE0\t0x931F\n0xEBE1\t0x9306\n0xEBE2\t0x930F\n0xEBE3\t0x937A\n0xEBE4\t0x9338\n0xEBE5\t0x933C\n0xEBE6\t0x931B\n0xEBE7\t0x9323\n0xEBE8\t0x9312\n0xEBE9\t0x9301\n0xEBEA\t0x9346\n0xEBEB\t0x932D\n0xEBEC\t0x930E\n0xEBED\t0x930D\n0xEBEE\t0x92CB\n0xEBEF\t0x931D\n0xEBF0\t0x92FA\n0xEBF1\t0x9325\n0xEBF2\t0x9313\n0xEBF3\t0x92F9\n0xEBF4\t0x92F7\n0xEBF5\t0x9334\n0xEBF6\t0x9302\n0xEBF7\t0x9324\n0xEBF8\t0x92FF\n0xEBF9\t0x9329\n0xEBFA\t0x9339\n0xEBFB\t0x9335\n0xEBFC\t0x932A\n0xEBFD\t0x9314\n0xEBFE\t0x930C\n0xEC40\t0x930B\n0xEC41\t0x92FE\n0xEC42\t0x9309\n0xEC43\t0x9300\n0xEC44\t0x92FB\n0xEC45\t0x9316\n0xEC46\t0x95BC\n0xEC47\t0x95CD\n0xEC48\t0x95BE\n0xEC49\t0x95B9\n0xEC4A\t0x95BA\n0xEC4B\t0x95B6\n0xEC4C\t0x95BF\n0xEC4D\t0x95B5\n0xEC4E\t0x95BD\n0xEC4F\t0x96A9\n0xEC50\t0x96D4\n0xEC51\t0x970B\n0xEC52\t0x9712\n0xEC53\t0x9710\n0xEC54\t0x9799\n0xEC55\t0x9797\n0xEC56\t0x9794\n0xEC57\t0x97F0\n0xEC58\t0x97F8\n0xEC59\t0x9835\n0xEC5A\t0x982F\n0xEC5B\t0x9832\n0xEC5C\t0x9924\n0xEC5D\t0x991F\n0xEC5E\t0x9927\n0xEC5F\t0x9929\n0xEC60\t0x999E\n0xEC61\t0x99EE\n0xEC62\t0x99EC\n0xEC63\t0x99E5\n0xEC64\t0x99E4\n0xEC65\t0x99F0\n0xEC66\t0x99E3\n0xEC67\t0x99EA\n0xEC68\t0x99E9\n0xEC69\t0x99E7\n0xEC6A\t0x9AB9\n0xEC6B\t0x9ABF\n0xEC6C\t0x9AB4\n0xEC6D\t0x9ABB\n0xEC6E\t0x9AF6\n0xEC6F\t0x9AFA\n0xEC70\t0x9AF9\n0xEC71\t0x9AF7\n0xEC72\t0x9B33\n0xEC73\t0x9B80\n0xEC74\t0x9B85\n0xEC75\t0x9B87\n0xEC76\t0x9B7C\n0xEC77\t0x9B7E\n0xEC78\t0x9B7B\n0xEC79\t0x9B82\n0xEC7A\t0x9B93\n0xEC7B\t0x9B92\n0xEC7C\t0x9B90\n0xEC7D\t0x9B7A\n0xEC7E\t0x9B95\n0xECA1\t0x9B7D\n0xECA2\t0x9B88\n0xECA3\t0x9D25\n0xECA4\t0x9D17\n0xECA5\t0x9D20\n0xECA6\t0x9D1E\n0xECA7\t0x9D14\n0xECA8\t0x9D29\n0xECA9\t0x9D1D\n0xECAA\t0x9D18\n0xECAB\t0x9D22\n0xECAC\t0x9D10\n0xECAD\t0x9D19\n0xECAE\t0x9D1F\n0xECAF\t0x9E88\n0xECB0\t0x9E86\n0xECB1\t0x9E87\n0xECB2\t0x9EAE\n0xECB3\t0x9EAD\n0xECB4\t0x9ED5\n0xECB5\t0x9ED6\n0xECB6\t0x9EFA\n0xECB7\t0x9F12\n0xECB8\t0x9F3D\n0xECB9\t0x5126\n0xECBA\t0x5125\n0xECBB\t0x5122\n0xECBC\t0x5124\n0xECBD\t0x5120\n0xECBE\t0x5129\n0xECBF\t0x52F4\n0xECC0\t0x5693\n0xECC1\t0x568C\n0xECC2\t0x568D\n0xECC3\t0x5686\n0xECC4\t0x5684\n0xECC5\t0x5683\n0xECC6\t0x567E\n0xECC7\t0x5682\n0xECC8\t0x567F\n0xECC9\t0x5681\n0xECCA\t0x58D6\n0xECCB\t0x58D4\n0xECCC\t0x58CF\n0xECCD\t0x58D2\n0xECCE\t0x5B2D\n0xECCF\t0x5B25\n0xECD0\t0x5B32\n0xECD1\t0x5B23\n0xECD2\t0x5B2C\n0xECD3\t0x5B27\n0xECD4\t0x5B26\n0xECD5\t0x5B2F\n0xECD6\t0x5B2E\n0xECD7\t0x5B7B\n0xECD8\t0x5BF1\n0xECD9\t0x5BF2\n0xECDA\t0x5DB7\n0xECDB\t0x5E6C\n0xECDC\t0x5E6A\n0xECDD\t0x5FBE\n0xECDE\t0x5FBB\n0xECDF\t0x61C3\n0xECE0\t0x61B5\n0xECE1\t0x61BC\n0xECE2\t0x61E7\n0xECE3\t0x61E0\n0xECE4\t0x61E5\n0xECE5\t0x61E4\n0xECE6\t0x61E8\n0xECE7\t0x61DE\n0xECE8\t0x64EF\n0xECE9\t0x64E9\n0xECEA\t0x64E3\n0xECEB\t0x64EB\n0xECEC\t0x64E4\n0xECED\t0x64E8\n0xECEE\t0x6581\n0xECEF\t0x6580\n0xECF0\t0x65B6\n0xECF1\t0x65DA\n0xECF2\t0x66D2\n0xECF3\t0x6A8D\n0xECF4\t0x6A96\n0xECF5\t0x6A81\n0xECF6\t0x6AA5\n0xECF7\t0x6A89\n0xECF8\t0x6A9F\n0xECF9\t0x6A9B\n0xECFA\t0x6AA1\n0xECFB\t0x6A9E\n0xECFC\t0x6A87\n0xECFD\t0x6A93\n0xECFE\t0x6A8E\n0xED40\t0x6A95\n0xED41\t0x6A83\n0xED42\t0x6AA8\n0xED43\t0x6AA4\n0xED44\t0x6A91\n0xED45\t0x6A7F\n0xED46\t0x6AA6\n0xED47\t0x6A9A\n0xED48\t0x6A85\n0xED49\t0x6A8C\n0xED4A\t0x6A92\n0xED4B\t0x6B5B\n0xED4C\t0x6BAD\n0xED4D\t0x6C09\n0xED4E\t0x6FCC\n0xED4F\t0x6FA9\n0xED50\t0x6FF4\n0xED51\t0x6FD4\n0xED52\t0x6FE3\n0xED53\t0x6FDC\n0xED54\t0x6FED\n0xED55\t0x6FE7\n0xED56\t0x6FE6\n0xED57\t0x6FDE\n0xED58\t0x6FF2\n0xED59\t0x6FDD\n0xED5A\t0x6FE2\n0xED5B\t0x6FE8\n0xED5C\t0x71E1\n0xED5D\t0x71F1\n0xED5E\t0x71E8\n0xED5F\t0x71F2\n0xED60\t0x71E4\n0xED61\t0x71F0\n0xED62\t0x71E2\n0xED63\t0x7373\n0xED64\t0x736E\n0xED65\t0x736F\n0xED66\t0x7497\n0xED67\t0x74B2\n0xED68\t0x74AB\n0xED69\t0x7490\n0xED6A\t0x74AA\n0xED6B\t0x74AD\n0xED6C\t0x74B1\n0xED6D\t0x74A5\n0xED6E\t0x74AF\n0xED6F\t0x7510\n0xED70\t0x7511\n0xED71\t0x7512\n0xED72\t0x750F\n0xED73\t0x7584\n0xED74\t0x7643\n0xED75\t0x7648\n0xED76\t0x7649\n0xED77\t0x7647\n0xED78\t0x76A4\n0xED79\t0x76E9\n0xED7A\t0x77B5\n0xED7B\t0x77AB\n0xED7C\t0x77B2\n0xED7D\t0x77B7\n0xED7E\t0x77B6\n0xEDA1\t0x77B4\n0xEDA2\t0x77B1\n0xEDA3\t0x77A8\n0xEDA4\t0x77F0\n0xEDA5\t0x78F3\n0xEDA6\t0x78FD\n0xEDA7\t0x7902\n0xEDA8\t0x78FB\n0xEDA9\t0x78FC\n0xEDAA\t0x78F2\n0xEDAB\t0x7905\n0xEDAC\t0x78F9\n0xEDAD\t0x78FE\n0xEDAE\t0x7904\n0xEDAF\t0x79AB\n0xEDB0\t0x79A8\n0xEDB1\t0x7A5C\n0xEDB2\t0x7A5B\n0xEDB3\t0x7A56\n0xEDB4\t0x7A58\n0xEDB5\t0x7A54\n0xEDB6\t0x7A5A\n0xEDB7\t0x7ABE\n0xEDB8\t0x7AC0\n0xEDB9\t0x7AC1\n0xEDBA\t0x7C05\n0xEDBB\t0x7C0F\n0xEDBC\t0x7BF2\n0xEDBD\t0x7C00\n0xEDBE\t0x7BFF\n0xEDBF\t0x7BFB\n0xEDC0\t0x7C0E\n0xEDC1\t0x7BF4\n0xEDC2\t0x7C0B\n0xEDC3\t0x7BF3\n0xEDC4\t0x7C02\n0xEDC5\t0x7C09\n0xEDC6\t0x7C03\n0xEDC7\t0x7C01\n0xEDC8\t0x7BF8\n0xEDC9\t0x7BFD\n0xEDCA\t0x7C06\n0xEDCB\t0x7BF0\n0xEDCC\t0x7BF1\n0xEDCD\t0x7C10\n0xEDCE\t0x7C0A\n0xEDCF\t0x7CE8\n0xEDD0\t0x7E2D\n0xEDD1\t0x7E3C\n0xEDD2\t0x7E42\n0xEDD3\t0x7E33\n0xEDD4\t0x9848\n0xEDD5\t0x7E38\n0xEDD6\t0x7E2A\n0xEDD7\t0x7E49\n0xEDD8\t0x7E40\n0xEDD9\t0x7E47\n0xEDDA\t0x7E29\n0xEDDB\t0x7E4C\n0xEDDC\t0x7E30\n0xEDDD\t0x7E3B\n0xEDDE\t0x7E36\n0xEDDF\t0x7E44\n0xEDE0\t0x7E3A\n0xEDE1\t0x7F45\n0xEDE2\t0x7F7F\n0xEDE3\t0x7F7E\n0xEDE4\t0x7F7D\n0xEDE5\t0x7FF4\n0xEDE6\t0x7FF2\n0xEDE7\t0x802C\n0xEDE8\t0x81BB\n0xEDE9\t0x81C4\n0xEDEA\t0x81CC\n0xEDEB\t0x81CA\n0xEDEC\t0x81C5\n0xEDED\t0x81C7\n0xEDEE\t0x81BC\n0xEDEF\t0x81E9\n0xEDF0\t0x825B\n0xEDF1\t0x825A\n0xEDF2\t0x825C\n0xEDF3\t0x8583\n0xEDF4\t0x8580\n0xEDF5\t0x858F\n0xEDF6\t0x85A7\n0xEDF7\t0x8595\n0xEDF8\t0x85A0\n0xEDF9\t0x858B\n0xEDFA\t0x85A3\n0xEDFB\t0x857B\n0xEDFC\t0x85A4\n0xEDFD\t0x859A\n0xEDFE\t0x859E\n0xEE40\t0x8577\n0xEE41\t0x857C\n0xEE42\t0x8589\n0xEE43\t0x85A1\n0xEE44\t0x857A\n0xEE45\t0x8578\n0xEE46\t0x8557\n0xEE47\t0x858E\n0xEE48\t0x8596\n0xEE49\t0x8586\n0xEE4A\t0x858D\n0xEE4B\t0x8599\n0xEE4C\t0x859D\n0xEE4D\t0x8581\n0xEE4E\t0x85A2\n0xEE4F\t0x8582\n0xEE50\t0x8588\n0xEE51\t0x8585\n0xEE52\t0x8579\n0xEE53\t0x8576\n0xEE54\t0x8598\n0xEE55\t0x8590\n0xEE56\t0x859F\n0xEE57\t0x8668\n0xEE58\t0x87BE\n0xEE59\t0x87AA\n0xEE5A\t0x87AD\n0xEE5B\t0x87C5\n0xEE5C\t0x87B0\n0xEE5D\t0x87AC\n0xEE5E\t0x87B9\n0xEE5F\t0x87B5\n0xEE60\t0x87BC\n0xEE61\t0x87AE\n0xEE62\t0x87C9\n0xEE63\t0x87C3\n0xEE64\t0x87C2\n0xEE65\t0x87CC\n0xEE66\t0x87B7\n0xEE67\t0x87AF\n0xEE68\t0x87C4\n0xEE69\t0x87CA\n0xEE6A\t0x87B4\n0xEE6B\t0x87B6\n0xEE6C\t0x87BF\n0xEE6D\t0x87B8\n0xEE6E\t0x87BD\n0xEE6F\t0x87DE\n0xEE70\t0x87B2\n0xEE71\t0x8935\n0xEE72\t0x8933\n0xEE73\t0x893C\n0xEE74\t0x893E\n0xEE75\t0x8941\n0xEE76\t0x8952\n0xEE77\t0x8937\n0xEE78\t0x8942\n0xEE79\t0x89AD\n0xEE7A\t0x89AF\n0xEE7B\t0x89AE\n0xEE7C\t0x89F2\n0xEE7D\t0x89F3\n0xEE7E\t0x8B1E\n0xEEA1\t0x8B18\n0xEEA2\t0x8B16\n0xEEA3\t0x8B11\n0xEEA4\t0x8B05\n0xEEA5\t0x8B0B\n0xEEA6\t0x8B22\n0xEEA7\t0x8B0F\n0xEEA8\t0x8B12\n0xEEA9\t0x8B15\n0xEEAA\t0x8B07\n0xEEAB\t0x8B0D\n0xEEAC\t0x8B08\n0xEEAD\t0x8B06\n0xEEAE\t0x8B1C\n0xEEAF\t0x8B13\n0xEEB0\t0x8B1A\n0xEEB1\t0x8C4F\n0xEEB2\t0x8C70\n0xEEB3\t0x8C72\n0xEEB4\t0x8C71\n0xEEB5\t0x8C6F\n0xEEB6\t0x8C95\n0xEEB7\t0x8C94\n0xEEB8\t0x8CF9\n0xEEB9\t0x8D6F\n0xEEBA\t0x8E4E\n0xEEBB\t0x8E4D\n0xEEBC\t0x8E53\n0xEEBD\t0x8E50\n0xEEBE\t0x8E4C\n0xEEBF\t0x8E47\n0xEEC0\t0x8F43\n0xEEC1\t0x8F40\n0xEEC2\t0x9085\n0xEEC3\t0x907E\n0xEEC4\t0x9138\n0xEEC5\t0x919A\n0xEEC6\t0x91A2\n0xEEC7\t0x919B\n0xEEC8\t0x9199\n0xEEC9\t0x919F\n0xEECA\t0x91A1\n0xEECB\t0x919D\n0xEECC\t0x91A0\n0xEECD\t0x93A1\n0xEECE\t0x9383\n0xEECF\t0x93AF\n0xEED0\t0x9364\n0xEED1\t0x9356\n0xEED2\t0x9347\n0xEED3\t0x937C\n0xEED4\t0x9358\n0xEED5\t0x935C\n0xEED6\t0x9376\n0xEED7\t0x9349\n0xEED8\t0x9350\n0xEED9\t0x9351\n0xEEDA\t0x9360\n0xEEDB\t0x936D\n0xEEDC\t0x938F\n0xEEDD\t0x934C\n0xEEDE\t0x936A\n0xEEDF\t0x9379\n0xEEE0\t0x9357\n0xEEE1\t0x9355\n0xEEE2\t0x9352\n0xEEE3\t0x934F\n0xEEE4\t0x9371\n0xEEE5\t0x9377\n0xEEE6\t0x937B\n0xEEE7\t0x9361\n0xEEE8\t0x935E\n0xEEE9\t0x9363\n0xEEEA\t0x9367\n0xEEEB\t0x9380\n0xEEEC\t0x934E\n0xEEED\t0x9359\n0xEEEE\t0x95C7\n0xEEEF\t0x95C0\n0xEEF0\t0x95C9\n0xEEF1\t0x95C3\n0xEEF2\t0x95C5\n0xEEF3\t0x95B7\n0xEEF4\t0x96AE\n0xEEF5\t0x96B0\n0xEEF6\t0x96AC\n0xEEF7\t0x9720\n0xEEF8\t0x971F\n0xEEF9\t0x9718\n0xEEFA\t0x971D\n0xEEFB\t0x9719\n0xEEFC\t0x979A\n0xEEFD\t0x97A1\n0xEEFE\t0x979C\n0xEF40\t0x979E\n0xEF41\t0x979D\n0xEF42\t0x97D5\n0xEF43\t0x97D4\n0xEF44\t0x97F1\n0xEF45\t0x9841\n0xEF46\t0x9844\n0xEF47\t0x984A\n0xEF48\t0x9849\n0xEF49\t0x9845\n0xEF4A\t0x9843\n0xEF4B\t0x9925\n0xEF4C\t0x992B\n0xEF4D\t0x992C\n0xEF4E\t0x992A\n0xEF4F\t0x9933\n0xEF50\t0x9932\n0xEF51\t0x992F\n0xEF52\t0x992D\n0xEF53\t0x9931\n0xEF54\t0x9930\n0xEF55\t0x9998\n0xEF56\t0x99A3\n0xEF57\t0x99A1\n0xEF58\t0x9A02\n0xEF59\t0x99FA\n0xEF5A\t0x99F4\n0xEF5B\t0x99F7\n0xEF5C\t0x99F9\n0xEF5D\t0x99F8\n0xEF5E\t0x99F6\n0xEF5F\t0x99FB\n0xEF60\t0x99FD\n0xEF61\t0x99FE\n0xEF62\t0x99FC\n0xEF63\t0x9A03\n0xEF64\t0x9ABE\n0xEF65\t0x9AFE\n0xEF66\t0x9AFD\n0xEF67\t0x9B01\n0xEF68\t0x9AFC\n0xEF69\t0x9B48\n0xEF6A\t0x9B9A\n0xEF6B\t0x9BA8\n0xEF6C\t0x9B9E\n0xEF6D\t0x9B9B\n0xEF6E\t0x9BA6\n0xEF6F\t0x9BA1\n0xEF70\t0x9BA5\n0xEF71\t0x9BA4\n0xEF72\t0x9B86\n0xEF73\t0x9BA2\n0xEF74\t0x9BA0\n0xEF75\t0x9BAF\n0xEF76\t0x9D33\n0xEF77\t0x9D41\n0xEF78\t0x9D67\n0xEF79\t0x9D36\n0xEF7A\t0x9D2E\n0xEF7B\t0x9D2F\n0xEF7C\t0x9D31\n0xEF7D\t0x9D38\n0xEF7E\t0x9D30\n0xEFA1\t0x9D45\n0xEFA2\t0x9D42\n0xEFA3\t0x9D43\n0xEFA4\t0x9D3E\n0xEFA5\t0x9D37\n0xEFA6\t0x9D40\n0xEFA7\t0x9D3D\n0xEFA8\t0x7FF5\n0xEFA9\t0x9D2D\n0xEFAA\t0x9E8A\n0xEFAB\t0x9E89\n0xEFAC\t0x9E8D\n0xEFAD\t0x9EB0\n0xEFAE\t0x9EC8\n0xEFAF\t0x9EDA\n0xEFB0\t0x9EFB\n0xEFB1\t0x9EFF\n0xEFB2\t0x9F24\n0xEFB3\t0x9F23\n0xEFB4\t0x9F22\n0xEFB5\t0x9F54\n0xEFB6\t0x9FA0\n0xEFB7\t0x5131\n0xEFB8\t0x512D\n0xEFB9\t0x512E\n0xEFBA\t0x5698\n0xEFBB\t0x569C\n0xEFBC\t0x5697\n0xEFBD\t0x569A\n0xEFBE\t0x569D\n0xEFBF\t0x5699\n0xEFC0\t0x5970\n0xEFC1\t0x5B3C\n0xEFC2\t0x5C69\n0xEFC3\t0x5C6A\n0xEFC4\t0x5DC0\n0xEFC5\t0x5E6D\n0xEFC6\t0x5E6E\n0xEFC7\t0x61D8\n0xEFC8\t0x61DF\n0xEFC9\t0x61ED\n0xEFCA\t0x61EE\n0xEFCB\t0x61F1\n0xEFCC\t0x61EA\n0xEFCD\t0x61F0\n0xEFCE\t0x61EB\n0xEFCF\t0x61D6\n0xEFD0\t0x61E9\n0xEFD1\t0x64FF\n0xEFD2\t0x6504\n0xEFD3\t0x64FD\n0xEFD4\t0x64F8\n0xEFD5\t0x6501\n0xEFD6\t0x6503\n0xEFD7\t0x64FC\n0xEFD8\t0x6594\n0xEFD9\t0x65DB\n0xEFDA\t0x66DA\n0xEFDB\t0x66DB\n0xEFDC\t0x66D8\n0xEFDD\t0x6AC5\n0xEFDE\t0x6AB9\n0xEFDF\t0x6ABD\n0xEFE0\t0x6AE1\n0xEFE1\t0x6AC6\n0xEFE2\t0x6ABA\n0xEFE3\t0x6AB6\n0xEFE4\t0x6AB7\n0xEFE5\t0x6AC7\n0xEFE6\t0x6AB4\n0xEFE7\t0x6AAD\n0xEFE8\t0x6B5E\n0xEFE9\t0x6BC9\n0xEFEA\t0x6C0B\n0xEFEB\t0x7007\n0xEFEC\t0x700C\n0xEFED\t0x700D\n0xEFEE\t0x7001\n0xEFEF\t0x7005\n0xEFF0\t0x7014\n0xEFF1\t0x700E\n0xEFF2\t0x6FFF\n0xEFF3\t0x7000\n0xEFF4\t0x6FFB\n0xEFF5\t0x7026\n0xEFF6\t0x6FFC\n0xEFF7\t0x6FF7\n0xEFF8\t0x700A\n0xEFF9\t0x7201\n0xEFFA\t0x71FF\n0xEFFB\t0x71F9\n0xEFFC\t0x7203\n0xEFFD\t0x71FD\n0xEFFE\t0x7376\n0xF040\t0x74B8\n0xF041\t0x74C0\n0xF042\t0x74B5\n0xF043\t0x74C1\n0xF044\t0x74BE\n0xF045\t0x74B6\n0xF046\t0x74BB\n0xF047\t0x74C2\n0xF048\t0x7514\n0xF049\t0x7513\n0xF04A\t0x765C\n0xF04B\t0x7664\n0xF04C\t0x7659\n0xF04D\t0x7650\n0xF04E\t0x7653\n0xF04F\t0x7657\n0xF050\t0x765A\n0xF051\t0x76A6\n0xF052\t0x76BD\n0xF053\t0x76EC\n0xF054\t0x77C2\n0xF055\t0x77BA\n0xF056\t0x78FF\n0xF057\t0x790C\n0xF058\t0x7913\n0xF059\t0x7914\n0xF05A\t0x7909\n0xF05B\t0x7910\n0xF05C\t0x7912\n0xF05D\t0x7911\n0xF05E\t0x79AD\n0xF05F\t0x79AC\n0xF060\t0x7A5F\n0xF061\t0x7C1C\n0xF062\t0x7C29\n0xF063\t0x7C19\n0xF064\t0x7C20\n0xF065\t0x7C1F\n0xF066\t0x7C2D\n0xF067\t0x7C1D\n0xF068\t0x7C26\n0xF069\t0x7C28\n0xF06A\t0x7C22\n0xF06B\t0x7C25\n0xF06C\t0x7C30\n0xF06D\t0x7E5C\n0xF06E\t0x7E50\n0xF06F\t0x7E56\n0xF070\t0x7E63\n0xF071\t0x7E58\n0xF072\t0x7E62\n0xF073\t0x7E5F\n0xF074\t0x7E51\n0xF075\t0x7E60\n0xF076\t0x7E57\n0xF077\t0x7E53\n0xF078\t0x7FB5\n0xF079\t0x7FB3\n0xF07A\t0x7FF7\n0xF07B\t0x7FF8\n0xF07C\t0x8075\n0xF07D\t0x81D1\n0xF07E\t0x81D2\n0xF0A1\t0x81D0\n0xF0A2\t0x825F\n0xF0A3\t0x825E\n0xF0A4\t0x85B4\n0xF0A5\t0x85C6\n0xF0A6\t0x85C0\n0xF0A7\t0x85C3\n0xF0A8\t0x85C2\n0xF0A9\t0x85B3\n0xF0AA\t0x85B5\n0xF0AB\t0x85BD\n0xF0AC\t0x85C7\n0xF0AD\t0x85C4\n0xF0AE\t0x85BF\n0xF0AF\t0x85CB\n0xF0B0\t0x85CE\n0xF0B1\t0x85C8\n0xF0B2\t0x85C5\n0xF0B3\t0x85B1\n0xF0B4\t0x85B6\n0xF0B5\t0x85D2\n0xF0B6\t0x8624\n0xF0B7\t0x85B8\n0xF0B8\t0x85B7\n0xF0B9\t0x85BE\n0xF0BA\t0x8669\n0xF0BB\t0x87E7\n0xF0BC\t0x87E6\n0xF0BD\t0x87E2\n0xF0BE\t0x87DB\n0xF0BF\t0x87EB\n0xF0C0\t0x87EA\n0xF0C1\t0x87E5\n0xF0C2\t0x87DF\n0xF0C3\t0x87F3\n0xF0C4\t0x87E4\n0xF0C5\t0x87D4\n0xF0C6\t0x87DC\n0xF0C7\t0x87D3\n0xF0C8\t0x87ED\n0xF0C9\t0x87D8\n0xF0CA\t0x87E3\n0xF0CB\t0x87A4\n0xF0CC\t0x87D7\n0xF0CD\t0x87D9\n0xF0CE\t0x8801\n0xF0CF\t0x87F4\n0xF0D0\t0x87E8\n0xF0D1\t0x87DD\n0xF0D2\t0x8953\n0xF0D3\t0x894B\n0xF0D4\t0x894F\n0xF0D5\t0x894C\n0xF0D6\t0x8946\n0xF0D7\t0x8950\n0xF0D8\t0x8951\n0xF0D9\t0x8949\n0xF0DA\t0x8B2A\n0xF0DB\t0x8B27\n0xF0DC\t0x8B23\n0xF0DD\t0x8B33\n0xF0DE\t0x8B30\n0xF0DF\t0x8B35\n0xF0E0\t0x8B47\n0xF0E1\t0x8B2F\n0xF0E2\t0x8B3C\n0xF0E3\t0x8B3E\n0xF0E4\t0x8B31\n0xF0E5\t0x8B25\n0xF0E6\t0x8B37\n0xF0E7\t0x8B26\n0xF0E8\t0x8B36\n0xF0E9\t0x8B2E\n0xF0EA\t0x8B24\n0xF0EB\t0x8B3B\n0xF0EC\t0x8B3D\n0xF0ED\t0x8B3A\n0xF0EE\t0x8C42\n0xF0EF\t0x8C75\n0xF0F0\t0x8C99\n0xF0F1\t0x8C98\n0xF0F2\t0x8C97\n0xF0F3\t0x8CFE\n0xF0F4\t0x8D04\n0xF0F5\t0x8D02\n0xF0F6\t0x8D00\n0xF0F7\t0x8E5C\n0xF0F8\t0x8E62\n0xF0F9\t0x8E60\n0xF0FA\t0x8E57\n0xF0FB\t0x8E56\n0xF0FC\t0x8E5E\n0xF0FD\t0x8E65\n0xF0FE\t0x8E67\n0xF140\t0x8E5B\n0xF141\t0x8E5A\n0xF142\t0x8E61\n0xF143\t0x8E5D\n0xF144\t0x8E69\n0xF145\t0x8E54\n0xF146\t0x8F46\n0xF147\t0x8F47\n0xF148\t0x8F48\n0xF149\t0x8F4B\n0xF14A\t0x9128\n0xF14B\t0x913A\n0xF14C\t0x913B\n0xF14D\t0x913E\n0xF14E\t0x91A8\n0xF14F\t0x91A5\n0xF150\t0x91A7\n0xF151\t0x91AF\n0xF152\t0x91AA\n0xF153\t0x93B5\n0xF154\t0x938C\n0xF155\t0x9392\n0xF156\t0x93B7\n0xF157\t0x939B\n0xF158\t0x939D\n0xF159\t0x9389\n0xF15A\t0x93A7\n0xF15B\t0x938E\n0xF15C\t0x93AA\n0xF15D\t0x939E\n0xF15E\t0x93A6\n0xF15F\t0x9395\n0xF160\t0x9388\n0xF161\t0x9399\n0xF162\t0x939F\n0xF163\t0x938D\n0xF164\t0x93B1\n0xF165\t0x9391\n0xF166\t0x93B2\n0xF167\t0x93A4\n0xF168\t0x93A8\n0xF169\t0x93B4\n0xF16A\t0x93A3\n0xF16B\t0x93A5\n0xF16C\t0x95D2\n0xF16D\t0x95D3\n0xF16E\t0x95D1\n0xF16F\t0x96B3\n0xF170\t0x96D7\n0xF171\t0x96DA\n0xF172\t0x5DC2\n0xF173\t0x96DF\n0xF174\t0x96D8\n0xF175\t0x96DD\n0xF176\t0x9723\n0xF177\t0x9722\n0xF178\t0x9725\n0xF179\t0x97AC\n0xF17A\t0x97AE\n0xF17B\t0x97A8\n0xF17C\t0x97AB\n0xF17D\t0x97A4\n0xF17E\t0x97AA\n0xF1A1\t0x97A2\n0xF1A2\t0x97A5\n0xF1A3\t0x97D7\n0xF1A4\t0x97D9\n0xF1A5\t0x97D6\n0xF1A6\t0x97D8\n0xF1A7\t0x97FA\n0xF1A8\t0x9850\n0xF1A9\t0x9851\n0xF1AA\t0x9852\n0xF1AB\t0x98B8\n0xF1AC\t0x9941\n0xF1AD\t0x993C\n0xF1AE\t0x993A\n0xF1AF\t0x9A0F\n0xF1B0\t0x9A0B\n0xF1B1\t0x9A09\n0xF1B2\t0x9A0D\n0xF1B3\t0x9A04\n0xF1B4\t0x9A11\n0xF1B5\t0x9A0A\n0xF1B6\t0x9A05\n0xF1B7\t0x9A07\n0xF1B8\t0x9A06\n0xF1B9\t0x9AC0\n0xF1BA\t0x9ADC\n0xF1BB\t0x9B08\n0xF1BC\t0x9B04\n0xF1BD\t0x9B05\n0xF1BE\t0x9B29\n0xF1BF\t0x9B35\n0xF1C0\t0x9B4A\n0xF1C1\t0x9B4C\n0xF1C2\t0x9B4B\n0xF1C3\t0x9BC7\n0xF1C4\t0x9BC6\n0xF1C5\t0x9BC3\n0xF1C6\t0x9BBF\n0xF1C7\t0x9BC1\n0xF1C8\t0x9BB5\n0xF1C9\t0x9BB8\n0xF1CA\t0x9BD3\n0xF1CB\t0x9BB6\n0xF1CC\t0x9BC4\n0xF1CD\t0x9BB9\n0xF1CE\t0x9BBD\n0xF1CF\t0x9D5C\n0xF1D0\t0x9D53\n0xF1D1\t0x9D4F\n0xF1D2\t0x9D4A\n0xF1D3\t0x9D5B\n0xF1D4\t0x9D4B\n0xF1D5\t0x9D59\n0xF1D6\t0x9D56\n0xF1D7\t0x9D4C\n0xF1D8\t0x9D57\n0xF1D9\t0x9D52\n0xF1DA\t0x9D54\n0xF1DB\t0x9D5F\n0xF1DC\t0x9D58\n0xF1DD\t0x9D5A\n0xF1DE\t0x9E8E\n0xF1DF\t0x9E8C\n0xF1E0\t0x9EDF\n0xF1E1\t0x9F01\n0xF1E2\t0x9F00\n0xF1E3\t0x9F16\n0xF1E4\t0x9F25\n0xF1E5\t0x9F2B\n0xF1E6\t0x9F2A\n0xF1E7\t0x9F29\n0xF1E8\t0x9F28\n0xF1E9\t0x9F4C\n0xF1EA\t0x9F55\n0xF1EB\t0x5134\n0xF1EC\t0x5135\n0xF1ED\t0x5296\n0xF1EE\t0x52F7\n0xF1EF\t0x53B4\n0xF1F0\t0x56AB\n0xF1F1\t0x56AD\n0xF1F2\t0x56A6\n0xF1F3\t0x56A7\n0xF1F4\t0x56AA\n0xF1F5\t0x56AC\n0xF1F6\t0x58DA\n0xF1F7\t0x58DD\n0xF1F8\t0x58DB\n0xF1F9\t0x5912\n0xF1FA\t0x5B3D\n0xF1FB\t0x5B3E\n0xF1FC\t0x5B3F\n0xF1FD\t0x5DC3\n0xF1FE\t0x5E70\n0xF240\t0x5FBF\n0xF241\t0x61FB\n0xF242\t0x6507\n0xF243\t0x6510\n0xF244\t0x650D\n0xF245\t0x6509\n0xF246\t0x650C\n0xF247\t0x650E\n0xF248\t0x6584\n0xF249\t0x65DE\n0xF24A\t0x65DD\n0xF24B\t0x66DE\n0xF24C\t0x6AE7\n0xF24D\t0x6AE0\n0xF24E\t0x6ACC\n0xF24F\t0x6AD1\n0xF250\t0x6AD9\n0xF251\t0x6ACB\n0xF252\t0x6ADF\n0xF253\t0x6ADC\n0xF254\t0x6AD0\n0xF255\t0x6AEB\n0xF256\t0x6ACF\n0xF257\t0x6ACD\n0xF258\t0x6ADE\n0xF259\t0x6B60\n0xF25A\t0x6BB0\n0xF25B\t0x6C0C\n0xF25C\t0x7019\n0xF25D\t0x7027\n0xF25E\t0x7020\n0xF25F\t0x7016\n0xF260\t0x702B\n0xF261\t0x7021\n0xF262\t0x7022\n0xF263\t0x7023\n0xF264\t0x7029\n0xF265\t0x7017\n0xF266\t0x7024\n0xF267\t0x701C\n0xF268\t0x702A\n0xF269\t0x720C\n0xF26A\t0x720A\n0xF26B\t0x7207\n0xF26C\t0x7202\n0xF26D\t0x7205\n0xF26E\t0x72A5\n0xF26F\t0x72A6\n0xF270\t0x72A4\n0xF271\t0x72A3\n0xF272\t0x72A1\n0xF273\t0x74CB\n0xF274\t0x74C5\n0xF275\t0x74B7\n0xF276\t0x74C3\n0xF277\t0x7516\n0xF278\t0x7660\n0xF279\t0x77C9\n0xF27A\t0x77CA\n0xF27B\t0x77C4\n0xF27C\t0x77F1\n0xF27D\t0x791D\n0xF27E\t0x791B\n0xF2A1\t0x7921\n0xF2A2\t0x791C\n0xF2A3\t0x7917\n0xF2A4\t0x791E\n0xF2A5\t0x79B0\n0xF2A6\t0x7A67\n0xF2A7\t0x7A68\n0xF2A8\t0x7C33\n0xF2A9\t0x7C3C\n0xF2AA\t0x7C39\n0xF2AB\t0x7C2C\n0xF2AC\t0x7C3B\n0xF2AD\t0x7CEC\n0xF2AE\t0x7CEA\n0xF2AF\t0x7E76\n0xF2B0\t0x7E75\n0xF2B1\t0x7E78\n0xF2B2\t0x7E70\n0xF2B3\t0x7E77\n0xF2B4\t0x7E6F\n0xF2B5\t0x7E7A\n0xF2B6\t0x7E72\n0xF2B7\t0x7E74\n0xF2B8\t0x7E68\n0xF2B9\t0x7F4B\n0xF2BA\t0x7F4A\n0xF2BB\t0x7F83\n0xF2BC\t0x7F86\n0xF2BD\t0x7FB7\n0xF2BE\t0x7FFD\n0xF2BF\t0x7FFE\n0xF2C0\t0x8078\n0xF2C1\t0x81D7\n0xF2C2\t0x81D5\n0xF2C3\t0x8264\n0xF2C4\t0x8261\n0xF2C5\t0x8263\n0xF2C6\t0x85EB\n0xF2C7\t0x85F1\n0xF2C8\t0x85ED\n0xF2C9\t0x85D9\n0xF2CA\t0x85E1\n0xF2CB\t0x85E8\n0xF2CC\t0x85DA\n0xF2CD\t0x85D7\n0xF2CE\t0x85EC\n0xF2CF\t0x85F2\n0xF2D0\t0x85F8\n0xF2D1\t0x85D8\n0xF2D2\t0x85DF\n0xF2D3\t0x85E3\n0xF2D4\t0x85DC\n0xF2D5\t0x85D1\n0xF2D6\t0x85F0\n0xF2D7\t0x85E6\n0xF2D8\t0x85EF\n0xF2D9\t0x85DE\n0xF2DA\t0x85E2\n0xF2DB\t0x8800\n0xF2DC\t0x87FA\n0xF2DD\t0x8803\n0xF2DE\t0x87F6\n0xF2DF\t0x87F7\n0xF2E0\t0x8809\n0xF2E1\t0x880C\n0xF2E2\t0x880B\n0xF2E3\t0x8806\n0xF2E4\t0x87FC\n0xF2E5\t0x8808\n0xF2E6\t0x87FF\n0xF2E7\t0x880A\n0xF2E8\t0x8802\n0xF2E9\t0x8962\n0xF2EA\t0x895A\n0xF2EB\t0x895B\n0xF2EC\t0x8957\n0xF2ED\t0x8961\n0xF2EE\t0x895C\n0xF2EF\t0x8958\n0xF2F0\t0x895D\n0xF2F1\t0x8959\n0xF2F2\t0x8988\n0xF2F3\t0x89B7\n0xF2F4\t0x89B6\n0xF2F5\t0x89F6\n0xF2F6\t0x8B50\n0xF2F7\t0x8B48\n0xF2F8\t0x8B4A\n0xF2F9\t0x8B40\n0xF2FA\t0x8B53\n0xF2FB\t0x8B56\n0xF2FC\t0x8B54\n0xF2FD\t0x8B4B\n0xF2FE\t0x8B55\n0xF340\t0x8B51\n0xF341\t0x8B42\n0xF342\t0x8B52\n0xF343\t0x8B57\n0xF344\t0x8C43\n0xF345\t0x8C77\n0xF346\t0x8C76\n0xF347\t0x8C9A\n0xF348\t0x8D06\n0xF349\t0x8D07\n0xF34A\t0x8D09\n0xF34B\t0x8DAC\n0xF34C\t0x8DAA\n0xF34D\t0x8DAD\n0xF34E\t0x8DAB\n0xF34F\t0x8E6D\n0xF350\t0x8E78\n0xF351\t0x8E73\n0xF352\t0x8E6A\n0xF353\t0x8E6F\n0xF354\t0x8E7B\n0xF355\t0x8EC2\n0xF356\t0x8F52\n0xF357\t0x8F51\n0xF358\t0x8F4F\n0xF359\t0x8F50\n0xF35A\t0x8F53\n0xF35B\t0x8FB4\n0xF35C\t0x9140\n0xF35D\t0x913F\n0xF35E\t0x91B0\n0xF35F\t0x91AD\n0xF360\t0x93DE\n0xF361\t0x93C7\n0xF362\t0x93CF\n0xF363\t0x93C2\n0xF364\t0x93DA\n0xF365\t0x93D0\n0xF366\t0x93F9\n0xF367\t0x93EC\n0xF368\t0x93CC\n0xF369\t0x93D9\n0xF36A\t0x93A9\n0xF36B\t0x93E6\n0xF36C\t0x93CA\n0xF36D\t0x93D4\n0xF36E\t0x93EE\n0xF36F\t0x93E3\n0xF370\t0x93D5\n0xF371\t0x93C4\n0xF372\t0x93CE\n0xF373\t0x93C0\n0xF374\t0x93D2\n0xF375\t0x93E7\n0xF376\t0x957D\n0xF377\t0x95DA\n0xF378\t0x95DB\n0xF379\t0x96E1\n0xF37A\t0x9729\n0xF37B\t0x972B\n0xF37C\t0x972C\n0xF37D\t0x9728\n0xF37E\t0x9726\n0xF3A1\t0x97B3\n0xF3A2\t0x97B7\n0xF3A3\t0x97B6\n0xF3A4\t0x97DD\n0xF3A5\t0x97DE\n0xF3A6\t0x97DF\n0xF3A7\t0x985C\n0xF3A8\t0x9859\n0xF3A9\t0x985D\n0xF3AA\t0x9857\n0xF3AB\t0x98BF\n0xF3AC\t0x98BD\n0xF3AD\t0x98BB\n0xF3AE\t0x98BE\n0xF3AF\t0x9948\n0xF3B0\t0x9947\n0xF3B1\t0x9943\n0xF3B2\t0x99A6\n0xF3B3\t0x99A7\n0xF3B4\t0x9A1A\n0xF3B5\t0x9A15\n0xF3B6\t0x9A25\n0xF3B7\t0x9A1D\n0xF3B8\t0x9A24\n0xF3B9\t0x9A1B\n0xF3BA\t0x9A22\n0xF3BB\t0x9A20\n0xF3BC\t0x9A27\n0xF3BD\t0x9A23\n0xF3BE\t0x9A1E\n0xF3BF\t0x9A1C\n0xF3C0\t0x9A14\n0xF3C1\t0x9AC2\n0xF3C2\t0x9B0B\n0xF3C3\t0x9B0A\n0xF3C4\t0x9B0E\n0xF3C5\t0x9B0C\n0xF3C6\t0x9B37\n0xF3C7\t0x9BEA\n0xF3C8\t0x9BEB\n0xF3C9\t0x9BE0\n0xF3CA\t0x9BDE\n0xF3CB\t0x9BE4\n0xF3CC\t0x9BE6\n0xF3CD\t0x9BE2\n0xF3CE\t0x9BF0\n0xF3CF\t0x9BD4\n0xF3D0\t0x9BD7\n0xF3D1\t0x9BEC\n0xF3D2\t0x9BDC\n0xF3D3\t0x9BD9\n0xF3D4\t0x9BE5\n0xF3D5\t0x9BD5\n0xF3D6\t0x9BE1\n0xF3D7\t0x9BDA\n0xF3D8\t0x9D77\n0xF3D9\t0x9D81\n0xF3DA\t0x9D8A\n0xF3DB\t0x9D84\n0xF3DC\t0x9D88\n0xF3DD\t0x9D71\n0xF3DE\t0x9D80\n0xF3DF\t0x9D78\n0xF3E0\t0x9D86\n0xF3E1\t0x9D8B\n0xF3E2\t0x9D8C\n0xF3E3\t0x9D7D\n0xF3E4\t0x9D6B\n0xF3E5\t0x9D74\n0xF3E6\t0x9D75\n0xF3E7\t0x9D70\n0xF3E8\t0x9D69\n0xF3E9\t0x9D85\n0xF3EA\t0x9D73\n0xF3EB\t0x9D7B\n0xF3EC\t0x9D82\n0xF3ED\t0x9D6F\n0xF3EE\t0x9D79\n0xF3EF\t0x9D7F\n0xF3F0\t0x9D87\n0xF3F1\t0x9D68\n0xF3F2\t0x9E94\n0xF3F3\t0x9E91\n0xF3F4\t0x9EC0\n0xF3F5\t0x9EFC\n0xF3F6\t0x9F2D\n0xF3F7\t0x9F40\n0xF3F8\t0x9F41\n0xF3F9\t0x9F4D\n0xF3FA\t0x9F56\n0xF3FB\t0x9F57\n0xF3FC\t0x9F58\n0xF3FD\t0x5337\n0xF3FE\t0x56B2\n0xF440\t0x56B5\n0xF441\t0x56B3\n0xF442\t0x58E3\n0xF443\t0x5B45\n0xF444\t0x5DC6\n0xF445\t0x5DC7\n0xF446\t0x5EEE\n0xF447\t0x5EEF\n0xF448\t0x5FC0\n0xF449\t0x5FC1\n0xF44A\t0x61F9\n0xF44B\t0x6517\n0xF44C\t0x6516\n0xF44D\t0x6515\n0xF44E\t0x6513\n0xF44F\t0x65DF\n0xF450\t0x66E8\n0xF451\t0x66E3\n0xF452\t0x66E4\n0xF453\t0x6AF3\n0xF454\t0x6AF0\n0xF455\t0x6AEA\n0xF456\t0x6AE8\n0xF457\t0x6AF9\n0xF458\t0x6AF1\n0xF459\t0x6AEE\n0xF45A\t0x6AEF\n0xF45B\t0x703C\n0xF45C\t0x7035\n0xF45D\t0x702F\n0xF45E\t0x7037\n0xF45F\t0x7034\n0xF460\t0x7031\n0xF461\t0x7042\n0xF462\t0x7038\n0xF463\t0x703F\n0xF464\t0x703A\n0xF465\t0x7039\n0xF466\t0x7040\n0xF467\t0x703B\n0xF468\t0x7033\n0xF469\t0x7041\n0xF46A\t0x7213\n0xF46B\t0x7214\n0xF46C\t0x72A8\n0xF46D\t0x737D\n0xF46E\t0x737C\n0xF46F\t0x74BA\n0xF470\t0x76AB\n0xF471\t0x76AA\n0xF472\t0x76BE\n0xF473\t0x76ED\n0xF474\t0x77CC\n0xF475\t0x77CE\n0xF476\t0x77CF\n0xF477\t0x77CD\n0xF478\t0x77F2\n0xF479\t0x7925\n0xF47A\t0x7923\n0xF47B\t0x7927\n0xF47C\t0x7928\n0xF47D\t0x7924\n0xF47E\t0x7929\n0xF4A1\t0x79B2\n0xF4A2\t0x7A6E\n0xF4A3\t0x7A6C\n0xF4A4\t0x7A6D\n0xF4A5\t0x7AF7\n0xF4A6\t0x7C49\n0xF4A7\t0x7C48\n0xF4A8\t0x7C4A\n0xF4A9\t0x7C47\n0xF4AA\t0x7C45\n0xF4AB\t0x7CEE\n0xF4AC\t0x7E7B\n0xF4AD\t0x7E7E\n0xF4AE\t0x7E81\n0xF4AF\t0x7E80\n0xF4B0\t0x7FBA\n0xF4B1\t0x7FFF\n0xF4B2\t0x8079\n0xF4B3\t0x81DB\n0xF4B4\t0x81D9\n0xF4B5\t0x820B\n0xF4B6\t0x8268\n0xF4B7\t0x8269\n0xF4B8\t0x8622\n0xF4B9\t0x85FF\n0xF4BA\t0x8601\n0xF4BB\t0x85FE\n0xF4BC\t0x861B\n0xF4BD\t0x8600\n0xF4BE\t0x85F6\n0xF4BF\t0x8604\n0xF4C0\t0x8609\n0xF4C1\t0x8605\n0xF4C2\t0x860C\n0xF4C3\t0x85FD\n0xF4C4\t0x8819\n0xF4C5\t0x8810\n0xF4C6\t0x8811\n0xF4C7\t0x8817\n0xF4C8\t0x8813\n0xF4C9\t0x8816\n0xF4CA\t0x8963\n0xF4CB\t0x8966\n0xF4CC\t0x89B9\n0xF4CD\t0x89F7\n0xF4CE\t0x8B60\n0xF4CF\t0x8B6A\n0xF4D0\t0x8B5D\n0xF4D1\t0x8B68\n0xF4D2\t0x8B63\n0xF4D3\t0x8B65\n0xF4D4\t0x8B67\n0xF4D5\t0x8B6D\n0xF4D6\t0x8DAE\n0xF4D7\t0x8E86\n0xF4D8\t0x8E88\n0xF4D9\t0x8E84\n0xF4DA\t0x8F59\n0xF4DB\t0x8F56\n0xF4DC\t0x8F57\n0xF4DD\t0x8F55\n0xF4DE\t0x8F58\n0xF4DF\t0x8F5A\n0xF4E0\t0x908D\n0xF4E1\t0x9143\n0xF4E2\t0x9141\n0xF4E3\t0x91B7\n0xF4E4\t0x91B5\n0xF4E5\t0x91B2\n0xF4E6\t0x91B3\n0xF4E7\t0x940B\n0xF4E8\t0x9413\n0xF4E9\t0x93FB\n0xF4EA\t0x9420\n0xF4EB\t0x940F\n0xF4EC\t0x9414\n0xF4ED\t0x93FE\n0xF4EE\t0x9415\n0xF4EF\t0x9410\n0xF4F0\t0x9428\n0xF4F1\t0x9419\n0xF4F2\t0x940D\n0xF4F3\t0x93F5\n0xF4F4\t0x9400\n0xF4F5\t0x93F7\n0xF4F6\t0x9407\n0xF4F7\t0x940E\n0xF4F8\t0x9416\n0xF4F9\t0x9412\n0xF4FA\t0x93FA\n0xF4FB\t0x9409\n0xF4FC\t0x93F8\n0xF4FD\t0x940A\n0xF4FE\t0x93FF\n0xF540\t0x93FC\n0xF541\t0x940C\n0xF542\t0x93F6\n0xF543\t0x9411\n0xF544\t0x9406\n0xF545\t0x95DE\n0xF546\t0x95E0\n0xF547\t0x95DF\n0xF548\t0x972E\n0xF549\t0x972F\n0xF54A\t0x97B9\n0xF54B\t0x97BB\n0xF54C\t0x97FD\n0xF54D\t0x97FE\n0xF54E\t0x9860\n0xF54F\t0x9862\n0xF550\t0x9863\n0xF551\t0x985F\n0xF552\t0x98C1\n0xF553\t0x98C2\n0xF554\t0x9950\n0xF555\t0x994E\n0xF556\t0x9959\n0xF557\t0x994C\n0xF558\t0x994B\n0xF559\t0x9953\n0xF55A\t0x9A32\n0xF55B\t0x9A34\n0xF55C\t0x9A31\n0xF55D\t0x9A2C\n0xF55E\t0x9A2A\n0xF55F\t0x9A36\n0xF560\t0x9A29\n0xF561\t0x9A2E\n0xF562\t0x9A38\n0xF563\t0x9A2D\n0xF564\t0x9AC7\n0xF565\t0x9ACA\n0xF566\t0x9AC6\n0xF567\t0x9B10\n0xF568\t0x9B12\n0xF569\t0x9B11\n0xF56A\t0x9C0B\n0xF56B\t0x9C08\n0xF56C\t0x9BF7\n0xF56D\t0x9C05\n0xF56E\t0x9C12\n0xF56F\t0x9BF8\n0xF570\t0x9C40\n0xF571\t0x9C07\n0xF572\t0x9C0E\n0xF573\t0x9C06\n0xF574\t0x9C17\n0xF575\t0x9C14\n0xF576\t0x9C09\n0xF577\t0x9D9F\n0xF578\t0x9D99\n0xF579\t0x9DA4\n0xF57A\t0x9D9D\n0xF57B\t0x9D92\n0xF57C\t0x9D98\n0xF57D\t0x9D90\n0xF57E\t0x9D9B\n0xF5A1\t0x9DA0\n0xF5A2\t0x9D94\n0xF5A3\t0x9D9C\n0xF5A4\t0x9DAA\n0xF5A5\t0x9D97\n0xF5A6\t0x9DA1\n0xF5A7\t0x9D9A\n0xF5A8\t0x9DA2\n0xF5A9\t0x9DA8\n0xF5AA\t0x9D9E\n0xF5AB\t0x9DA3\n0xF5AC\t0x9DBF\n0xF5AD\t0x9DA9\n0xF5AE\t0x9D96\n0xF5AF\t0x9DA6\n0xF5B0\t0x9DA7\n0xF5B1\t0x9E99\n0xF5B2\t0x9E9B\n0xF5B3\t0x9E9A\n0xF5B4\t0x9EE5\n0xF5B5\t0x9EE4\n0xF5B6\t0x9EE7\n0xF5B7\t0x9EE6\n0xF5B8\t0x9F30\n0xF5B9\t0x9F2E\n0xF5BA\t0x9F5B\n0xF5BB\t0x9F60\n0xF5BC\t0x9F5E\n0xF5BD\t0x9F5D\n0xF5BE\t0x9F59\n0xF5BF\t0x9F91\n0xF5C0\t0x513A\n0xF5C1\t0x5139\n0xF5C2\t0x5298\n0xF5C3\t0x5297\n0xF5C4\t0x56C3\n0xF5C5\t0x56BD\n0xF5C6\t0x56BE\n0xF5C7\t0x5B48\n0xF5C8\t0x5B47\n0xF5C9\t0x5DCB\n0xF5CA\t0x5DCF\n0xF5CB\t0x5EF1\n0xF5CC\t0x61FD\n0xF5CD\t0x651B\n0xF5CE\t0x6B02\n0xF5CF\t0x6AFC\n0xF5D0\t0x6B03\n0xF5D1\t0x6AF8\n0xF5D2\t0x6B00\n0xF5D3\t0x7043\n0xF5D4\t0x7044\n0xF5D5\t0x704A\n0xF5D6\t0x7048\n0xF5D7\t0x7049\n0xF5D8\t0x7045\n0xF5D9\t0x7046\n0xF5DA\t0x721D\n0xF5DB\t0x721A\n0xF5DC\t0x7219\n0xF5DD\t0x737E\n0xF5DE\t0x7517\n0xF5DF\t0x766A\n0xF5E0\t0x77D0\n0xF5E1\t0x792D\n0xF5E2\t0x7931\n0xF5E3\t0x792F\n0xF5E4\t0x7C54\n0xF5E5\t0x7C53\n0xF5E6\t0x7CF2\n0xF5E7\t0x7E8A\n0xF5E8\t0x7E87\n0xF5E9\t0x7E88\n0xF5EA\t0x7E8B\n0xF5EB\t0x7E86\n0xF5EC\t0x7E8D\n0xF5ED\t0x7F4D\n0xF5EE\t0x7FBB\n0xF5EF\t0x8030\n0xF5F0\t0x81DD\n0xF5F1\t0x8618\n0xF5F2\t0x862A\n0xF5F3\t0x8626\n0xF5F4\t0x861F\n0xF5F5\t0x8623\n0xF5F6\t0x861C\n0xF5F7\t0x8619\n0xF5F8\t0x8627\n0xF5F9\t0x862E\n0xF5FA\t0x8621\n0xF5FB\t0x8620\n0xF5FC\t0x8629\n0xF5FD\t0x861E\n0xF5FE\t0x8625\n0xF640\t0x8829\n0xF641\t0x881D\n0xF642\t0x881B\n0xF643\t0x8820\n0xF644\t0x8824\n0xF645\t0x881C\n0xF646\t0x882B\n0xF647\t0x884A\n0xF648\t0x896D\n0xF649\t0x8969\n0xF64A\t0x896E\n0xF64B\t0x896B\n0xF64C\t0x89FA\n0xF64D\t0x8B79\n0xF64E\t0x8B78\n0xF64F\t0x8B45\n0xF650\t0x8B7A\n0xF651\t0x8B7B\n0xF652\t0x8D10\n0xF653\t0x8D14\n0xF654\t0x8DAF\n0xF655\t0x8E8E\n0xF656\t0x8E8C\n0xF657\t0x8F5E\n0xF658\t0x8F5B\n0xF659\t0x8F5D\n0xF65A\t0x9146\n0xF65B\t0x9144\n0xF65C\t0x9145\n0xF65D\t0x91B9\n0xF65E\t0x943F\n0xF65F\t0x943B\n0xF660\t0x9436\n0xF661\t0x9429\n0xF662\t0x943D\n0xF663\t0x943C\n0xF664\t0x9430\n0xF665\t0x9439\n0xF666\t0x942A\n0xF667\t0x9437\n0xF668\t0x942C\n0xF669\t0x9440\n0xF66A\t0x9431\n0xF66B\t0x95E5\n0xF66C\t0x95E4\n0xF66D\t0x95E3\n0xF66E\t0x9735\n0xF66F\t0x973A\n0xF670\t0x97BF\n0xF671\t0x97E1\n0xF672\t0x9864\n0xF673\t0x98C9\n0xF674\t0x98C6\n0xF675\t0x98C0\n0xF676\t0x9958\n0xF677\t0x9956\n0xF678\t0x9A39\n0xF679\t0x9A3D\n0xF67A\t0x9A46\n0xF67B\t0x9A44\n0xF67C\t0x9A42\n0xF67D\t0x9A41\n0xF67E\t0x9A3A\n0xF6A1\t0x9A3F\n0xF6A2\t0x9ACD\n0xF6A3\t0x9B15\n0xF6A4\t0x9B17\n0xF6A5\t0x9B18\n0xF6A6\t0x9B16\n0xF6A7\t0x9B3A\n0xF6A8\t0x9B52\n0xF6A9\t0x9C2B\n0xF6AA\t0x9C1D\n0xF6AB\t0x9C1C\n0xF6AC\t0x9C2C\n0xF6AD\t0x9C23\n0xF6AE\t0x9C28\n0xF6AF\t0x9C29\n0xF6B0\t0x9C24\n0xF6B1\t0x9C21\n0xF6B2\t0x9DB7\n0xF6B3\t0x9DB6\n0xF6B4\t0x9DBC\n0xF6B5\t0x9DC1\n0xF6B6\t0x9DC7\n0xF6B7\t0x9DCA\n0xF6B8\t0x9DCF\n0xF6B9\t0x9DBE\n0xF6BA\t0x9DC5\n0xF6BB\t0x9DC3\n0xF6BC\t0x9DBB\n0xF6BD\t0x9DB5\n0xF6BE\t0x9DCE\n0xF6BF\t0x9DB9\n0xF6C0\t0x9DBA\n0xF6C1\t0x9DAC\n0xF6C2\t0x9DC8\n0xF6C3\t0x9DB1\n0xF6C4\t0x9DAD\n0xF6C5\t0x9DCC\n0xF6C6\t0x9DB3\n0xF6C7\t0x9DCD\n0xF6C8\t0x9DB2\n0xF6C9\t0x9E7A\n0xF6CA\t0x9E9C\n0xF6CB\t0x9EEB\n0xF6CC\t0x9EEE\n0xF6CD\t0x9EED\n0xF6CE\t0x9F1B\n0xF6CF\t0x9F18\n0xF6D0\t0x9F1A\n0xF6D1\t0x9F31\n0xF6D2\t0x9F4E\n0xF6D3\t0x9F65\n0xF6D4\t0x9F64\n0xF6D5\t0x9F92\n0xF6D6\t0x4EB9\n0xF6D7\t0x56C6\n0xF6D8\t0x56C5\n0xF6D9\t0x56CB\n0xF6DA\t0x5971\n0xF6DB\t0x5B4B\n0xF6DC\t0x5B4C\n0xF6DD\t0x5DD5\n0xF6DE\t0x5DD1\n0xF6DF\t0x5EF2\n0xF6E0\t0x6521\n0xF6E1\t0x6520\n0xF6E2\t0x6526\n0xF6E3\t0x6522\n0xF6E4\t0x6B0B\n0xF6E5\t0x6B08\n0xF6E6\t0x6B09\n0xF6E7\t0x6C0D\n0xF6E8\t0x7055\n0xF6E9\t0x7056\n0xF6EA\t0x7057\n0xF6EB\t0x7052\n0xF6EC\t0x721E\n0xF6ED\t0x721F\n0xF6EE\t0x72A9\n0xF6EF\t0x737F\n0xF6F0\t0x74D8\n0xF6F1\t0x74D5\n0xF6F2\t0x74D9\n0xF6F3\t0x74D7\n0xF6F4\t0x766D\n0xF6F5\t0x76AD\n0xF6F6\t0x7935\n0xF6F7\t0x79B4\n0xF6F8\t0x7A70\n0xF6F9\t0x7A71\n0xF6FA\t0x7C57\n0xF6FB\t0x7C5C\n0xF6FC\t0x7C59\n0xF6FD\t0x7C5B\n0xF6FE\t0x7C5A\n0xF740\t0x7CF4\n0xF741\t0x7CF1\n0xF742\t0x7E91\n0xF743\t0x7F4F\n0xF744\t0x7F87\n0xF745\t0x81DE\n0xF746\t0x826B\n0xF747\t0x8634\n0xF748\t0x8635\n0xF749\t0x8633\n0xF74A\t0x862C\n0xF74B\t0x8632\n0xF74C\t0x8636\n0xF74D\t0x882C\n0xF74E\t0x8828\n0xF74F\t0x8826\n0xF750\t0x882A\n0xF751\t0x8825\n0xF752\t0x8971\n0xF753\t0x89BF\n0xF754\t0x89BE\n0xF755\t0x89FB\n0xF756\t0x8B7E\n0xF757\t0x8B84\n0xF758\t0x8B82\n0xF759\t0x8B86\n0xF75A\t0x8B85\n0xF75B\t0x8B7F\n0xF75C\t0x8D15\n0xF75D\t0x8E95\n0xF75E\t0x8E94\n0xF75F\t0x8E9A\n0xF760\t0x8E92\n0xF761\t0x8E90\n0xF762\t0x8E96\n0xF763\t0x8E97\n0xF764\t0x8F60\n0xF765\t0x8F62\n0xF766\t0x9147\n0xF767\t0x944C\n0xF768\t0x9450\n0xF769\t0x944A\n0xF76A\t0x944B\n0xF76B\t0x944F\n0xF76C\t0x9447\n0xF76D\t0x9445\n0xF76E\t0x9448\n0xF76F\t0x9449\n0xF770\t0x9446\n0xF771\t0x973F\n0xF772\t0x97E3\n0xF773\t0x986A\n0xF774\t0x9869\n0xF775\t0x98CB\n0xF776\t0x9954\n0xF777\t0x995B\n0xF778\t0x9A4E\n0xF779\t0x9A53\n0xF77A\t0x9A54\n0xF77B\t0x9A4C\n0xF77C\t0x9A4F\n0xF77D\t0x9A48\n0xF77E\t0x9A4A\n0xF7A1\t0x9A49\n0xF7A2\t0x9A52\n0xF7A3\t0x9A50\n0xF7A4\t0x9AD0\n0xF7A5\t0x9B19\n0xF7A6\t0x9B2B\n0xF7A7\t0x9B3B\n0xF7A8\t0x9B56\n0xF7A9\t0x9B55\n0xF7AA\t0x9C46\n0xF7AB\t0x9C48\n0xF7AC\t0x9C3F\n0xF7AD\t0x9C44\n0xF7AE\t0x9C39\n0xF7AF\t0x9C33\n0xF7B0\t0x9C41\n0xF7B1\t0x9C3C\n0xF7B2\t0x9C37\n0xF7B3\t0x9C34\n0xF7B4\t0x9C32\n0xF7B5\t0x9C3D\n0xF7B6\t0x9C36\n0xF7B7\t0x9DDB\n0xF7B8\t0x9DD2\n0xF7B9\t0x9DDE\n0xF7BA\t0x9DDA\n0xF7BB\t0x9DCB\n0xF7BC\t0x9DD0\n0xF7BD\t0x9DDC\n0xF7BE\t0x9DD1\n0xF7BF\t0x9DDF\n0xF7C0\t0x9DE9\n0xF7C1\t0x9DD9\n0xF7C2\t0x9DD8\n0xF7C3\t0x9DD6\n0xF7C4\t0x9DF5\n0xF7C5\t0x9DD5\n0xF7C6\t0x9DDD\n0xF7C7\t0x9EB6\n0xF7C8\t0x9EF0\n0xF7C9\t0x9F35\n0xF7CA\t0x9F33\n0xF7CB\t0x9F32\n0xF7CC\t0x9F42\n0xF7CD\t0x9F6B\n0xF7CE\t0x9F95\n0xF7CF\t0x9FA2\n0xF7D0\t0x513D\n0xF7D1\t0x5299\n0xF7D2\t0x58E8\n0xF7D3\t0x58E7\n0xF7D4\t0x5972\n0xF7D5\t0x5B4D\n0xF7D6\t0x5DD8\n0xF7D7\t0x882F\n0xF7D8\t0x5F4F\n0xF7D9\t0x6201\n0xF7DA\t0x6203\n0xF7DB\t0x6204\n0xF7DC\t0x6529\n0xF7DD\t0x6525\n0xF7DE\t0x6596\n0xF7DF\t0x66EB\n0xF7E0\t0x6B11\n0xF7E1\t0x6B12\n0xF7E2\t0x6B0F\n0xF7E3\t0x6BCA\n0xF7E4\t0x705B\n0xF7E5\t0x705A\n0xF7E6\t0x7222\n0xF7E7\t0x7382\n0xF7E8\t0x7381\n0xF7E9\t0x7383\n0xF7EA\t0x7670\n0xF7EB\t0x77D4\n0xF7EC\t0x7C67\n0xF7ED\t0x7C66\n0xF7EE\t0x7E95\n0xF7EF\t0x826C\n0xF7F0\t0x863A\n0xF7F1\t0x8640\n0xF7F2\t0x8639\n0xF7F3\t0x863C\n0xF7F4\t0x8631\n0xF7F5\t0x863B\n0xF7F6\t0x863E\n0xF7F7\t0x8830\n0xF7F8\t0x8832\n0xF7F9\t0x882E\n0xF7FA\t0x8833\n0xF7FB\t0x8976\n0xF7FC\t0x8974\n0xF7FD\t0x8973\n0xF7FE\t0x89FE\n0xF840\t0x8B8C\n0xF841\t0x8B8E\n0xF842\t0x8B8B\n0xF843\t0x8B88\n0xF844\t0x8C45\n0xF845\t0x8D19\n0xF846\t0x8E98\n0xF847\t0x8F64\n0xF848\t0x8F63\n0xF849\t0x91BC\n0xF84A\t0x9462\n0xF84B\t0x9455\n0xF84C\t0x945D\n0xF84D\t0x9457\n0xF84E\t0x945E\n0xF84F\t0x97C4\n0xF850\t0x97C5\n0xF851\t0x9800\n0xF852\t0x9A56\n0xF853\t0x9A59\n0xF854\t0x9B1E\n0xF855\t0x9B1F\n0xF856\t0x9B20\n0xF857\t0x9C52\n0xF858\t0x9C58\n0xF859\t0x9C50\n0xF85A\t0x9C4A\n0xF85B\t0x9C4D\n0xF85C\t0x9C4B\n0xF85D\t0x9C55\n0xF85E\t0x9C59\n0xF85F\t0x9C4C\n0xF860\t0x9C4E\n0xF861\t0x9DFB\n0xF862\t0x9DF7\n0xF863\t0x9DEF\n0xF864\t0x9DE3\n0xF865\t0x9DEB\n0xF866\t0x9DF8\n0xF867\t0x9DE4\n0xF868\t0x9DF6\n0xF869\t0x9DE1\n0xF86A\t0x9DEE\n0xF86B\t0x9DE6\n0xF86C\t0x9DF2\n0xF86D\t0x9DF0\n0xF86E\t0x9DE2\n0xF86F\t0x9DEC\n0xF870\t0x9DF4\n0xF871\t0x9DF3\n0xF872\t0x9DE8\n0xF873\t0x9DED\n0xF874\t0x9EC2\n0xF875\t0x9ED0\n0xF876\t0x9EF2\n0xF877\t0x9EF3\n0xF878\t0x9F06\n0xF879\t0x9F1C\n0xF87A\t0x9F38\n0xF87B\t0x9F37\n0xF87C\t0x9F36\n0xF87D\t0x9F43\n0xF87E\t0x9F4F\n0xF8A1\t0x9F71\n0xF8A2\t0x9F70\n0xF8A3\t0x9F6E\n0xF8A4\t0x9F6F\n0xF8A5\t0x56D3\n0xF8A6\t0x56CD\n0xF8A7\t0x5B4E\n0xF8A8\t0x5C6D\n0xF8A9\t0x652D\n0xF8AA\t0x66ED\n0xF8AB\t0x66EE\n0xF8AC\t0x6B13\n0xF8AD\t0x705F\n0xF8AE\t0x7061\n0xF8AF\t0x705D\n0xF8B0\t0x7060\n0xF8B1\t0x7223\n0xF8B2\t0x74DB\n0xF8B3\t0x74E5\n0xF8B4\t0x77D5\n0xF8B5\t0x7938\n0xF8B6\t0x79B7\n0xF8B7\t0x79B6\n0xF8B8\t0x7C6A\n0xF8B9\t0x7E97\n0xF8BA\t0x7F89\n0xF8BB\t0x826D\n0xF8BC\t0x8643\n0xF8BD\t0x8838\n0xF8BE\t0x8837\n0xF8BF\t0x8835\n0xF8C0\t0x884B\n0xF8C1\t0x8B94\n0xF8C2\t0x8B95\n0xF8C3\t0x8E9E\n0xF8C4\t0x8E9F\n0xF8C5\t0x8EA0\n0xF8C6\t0x8E9D\n0xF8C7\t0x91BE\n0xF8C8\t0x91BD\n0xF8C9\t0x91C2\n0xF8CA\t0x946B\n0xF8CB\t0x9468\n0xF8CC\t0x9469\n0xF8CD\t0x96E5\n0xF8CE\t0x9746\n0xF8CF\t0x9743\n0xF8D0\t0x9747\n0xF8D1\t0x97C7\n0xF8D2\t0x97E5\n0xF8D3\t0x9A5E\n0xF8D4\t0x9AD5\n0xF8D5\t0x9B59\n0xF8D6\t0x9C63\n0xF8D7\t0x9C67\n0xF8D8\t0x9C66\n0xF8D9\t0x9C62\n0xF8DA\t0x9C5E\n0xF8DB\t0x9C60\n0xF8DC\t0x9E02\n0xF8DD\t0x9DFE\n0xF8DE\t0x9E07\n0xF8DF\t0x9E03\n0xF8E0\t0x9E06\n0xF8E1\t0x9E05\n0xF8E2\t0x9E00\n0xF8E3\t0x9E01\n0xF8E4\t0x9E09\n0xF8E5\t0x9DFF\n0xF8E6\t0x9DFD\n0xF8E7\t0x9E04\n0xF8E8\t0x9EA0\n0xF8E9\t0x9F1E\n0xF8EA\t0x9F46\n0xF8EB\t0x9F74\n0xF8EC\t0x9F75\n0xF8ED\t0x9F76\n0xF8EE\t0x56D4\n0xF8EF\t0x652E\n0xF8F0\t0x65B8\n0xF8F1\t0x6B18\n0xF8F2\t0x6B19\n0xF8F3\t0x6B17\n0xF8F4\t0x6B1A\n0xF8F5\t0x7062\n0xF8F6\t0x7226\n0xF8F7\t0x72AA\n0xF8F8\t0x77D8\n0xF8F9\t0x77D9\n0xF8FA\t0x7939\n0xF8FB\t0x7C69\n0xF8FC\t0x7C6B\n0xF8FD\t0x7CF6\n0xF8FE\t0x7E9A\n0xF940\t0x7E98\n0xF941\t0x7E9B\n0xF942\t0x7E99\n0xF943\t0x81E0\n0xF944\t0x81E1\n0xF945\t0x8646\n0xF946\t0x8647\n0xF947\t0x8648\n0xF948\t0x8979\n0xF949\t0x897A\n0xF94A\t0x897C\n0xF94B\t0x897B\n0xF94C\t0x89FF\n0xF94D\t0x8B98\n0xF94E\t0x8B99\n0xF94F\t0x8EA5\n0xF950\t0x8EA4\n0xF951\t0x8EA3\n0xF952\t0x946E\n0xF953\t0x946D\n0xF954\t0x946F\n0xF955\t0x9471\n0xF956\t0x9473\n0xF957\t0x9749\n0xF958\t0x9872\n0xF959\t0x995F\n0xF95A\t0x9C68\n0xF95B\t0x9C6E\n0xF95C\t0x9C6D\n0xF95D\t0x9E0B\n0xF95E\t0x9E0D\n0xF95F\t0x9E10\n0xF960\t0x9E0F\n0xF961\t0x9E12\n0xF962\t0x9E11\n0xF963\t0x9EA1\n0xF964\t0x9EF5\n0xF965\t0x9F09\n0xF966\t0x9F47\n0xF967\t0x9F78\n0xF968\t0x9F7B\n0xF969\t0x9F7A\n0xF96A\t0x9F79\n0xF96B\t0x571E\n0xF96C\t0x7066\n0xF96D\t0x7C6F\n0xF96E\t0x883C\n0xF96F\t0x8DB2\n0xF970\t0x8EA6\n0xF971\t0x91C3\n0xF972\t0x9474\n0xF973\t0x9478\n0xF974\t0x9476\n0xF975\t0x9475\n0xF976\t0x9A60\n0xF977\t0x9C74\n0xF978\t0x9C73\n0xF979\t0x9C71\n0xF97A\t0x9C75\n0xF97B\t0x9E14\n0xF97C\t0x9E13\n0xF97D\t0x9EF6\n0xF97E\t0x9F0A\n0xF9A1\t0x9FA4\n0xF9A2\t0x7068\n0xF9A3\t0x7065\n0xF9A4\t0x7CF7\n0xF9A5\t0x866A\n0xF9A6\t0x883E\n0xF9A7\t0x883D\n0xF9A8\t0x883F\n0xF9A9\t0x8B9E\n0xF9AA\t0x8C9C\n0xF9AB\t0x8EA9\n0xF9AC\t0x8EC9\n0xF9AD\t0x974B\n0xF9AE\t0x9873\n0xF9AF\t0x9874\n0xF9B0\t0x98CC\n0xF9B1\t0x9961\n0xF9B2\t0x99AB\n0xF9B3\t0x9A64\n0xF9B4\t0x9A66\n0xF9B5\t0x9A67\n0xF9B6\t0x9B24\n0xF9B7\t0x9E15\n0xF9B8\t0x9E17\n0xF9B9\t0x9F48\n0xF9BA\t0x6207\n0xF9BB\t0x6B1E\n0xF9BC\t0x7227\n0xF9BD\t0x864C\n0xF9BE\t0x8EA8\n0xF9BF\t0x9482\n0xF9C0\t0x9480\n0xF9C1\t0x9481\n0xF9C2\t0x9A69\n0xF9C3\t0x9A68\n0xF9C4\t0x9B2E\n0xF9C5\t0x9E19\n0xF9C6\t0x7229\n0xF9C7\t0x864B\n0xF9C8\t0x8B9F\n0xF9C9\t0x9483\n0xF9CA\t0x9C79\n0xF9CB\t0x9EB7\n0xF9CC\t0x7675\n0xF9CD\t0x9A6B\n0xF9CE\t0x9C7A\n0xF9CF\t0x9E1D\n0xF9D0\t0x7069\n0xF9D1\t0x706A\n0xF9D2\t0x9EA4\n0xF9D3\t0x9F7E\n0xF9D4\t0x9F49\n0xF9D5\t0x9F98\n0xF9D6\t0x7881\n0xF9D7\t0x92B9\n0xF9D8\t0x88CF\n0xF9D9\t0x58BB\n0xF9DA\t0x6052\n0xF9DB\t0x7CA7\n0xF9DC\t0x5AFA\n0xF9DD\t0x2554\n0xF9DE\t0x2566\n0xF9DF\t0x2557\n0xF9E0\t0x2560\n0xF9E1\t0x256C\n0xF9E2\t0x2563\n0xF9E3\t0x255A\n0xF9E4\t0x2569\n0xF9E5\t0x255D\n0xF9E6\t0x2552\n0xF9E7\t0x2564\n0xF9E8\t0x2555\n0xF9E9\t0x255E\n0xF9EA\t0x256A\n0xF9EB\t0x2561\n0xF9EC\t0x2558\n0xF9ED\t0x2567\n0xF9EE\t0x255B\n0xF9EF\t0x2553\n0xF9F0\t0x2565\n0xF9F1\t0x2556\n0xF9F2\t0x255F\n0xF9F3\t0x256B\n0xF9F4\t0x2562\n0xF9F5\t0x2559\n0xF9F6\t0x2568\n0xF9F7\t0x255C\n0xF9F8\t0x2551\n0xF9F9\t0x2550\n0xF9FA\t0x256D\n0xF9FB\t0x256E\n0xF9FC\t0x2570\n0xF9FD\t0x256F\n0xF9FE\t0x2593\n0xFA40\t0xE000\n0xFA41\t0xE001\n0xFA42\t0xE002\n0xFA43\t0xE003\n0xFA44\t0xE004\n0xFA45\t0xE005\n0xFA46\t0xE006\n0xFA47\t0xE007\n0xFA48\t0xE008\n0xFA49\t0xE009\n0xFA4A\t0xE00A\n0xFA4B\t0xE00B\n0xFA4C\t0xE00C\n0xFA4D\t0xE00D\n0xFA4E\t0xE00E\n0xFA4F\t0xE00F\n0xFA50\t0xE010\n0xFA51\t0xE011\n0xFA52\t0xE012\n0xFA53\t0xE013\n0xFA54\t0xE014\n0xFA55\t0xE015\n0xFA56\t0xE016\n0xFA57\t0xE017\n0xFA58\t0xE018\n0xFA59\t0xE019\n0xFA5A\t0xE01A\n0xFA5B\t0xE01B\n0xFA5C\t0xE01C\n0xFA5D\t0xE01D\n0xFA5E\t0xE01E\n0xFA5F\t0xE01F\n0xFA60\t0xE020\n0xFA61\t0xE021\n0xFA62\t0xE022\n0xFA63\t0xE023\n0xFA64\t0xE024\n0xFA65\t0xE025\n0xFA66\t0xE026\n0xFA67\t0xE027\n0xFA68\t0xE028\n0xFA69\t0xE029\n0xFA6A\t0xE02A\n0xFA6B\t0xE02B\n0xFA6C\t0xE02C\n0xFA6D\t0xE02D\n0xFA6E\t0xE02E\n0xFA6F\t0xE02F\n0xFA70\t0xE030\n0xFA71\t0xE031\n0xFA72\t0xE032\n0xFA73\t0xE033\n0xFA74\t0xE034\n0xFA75\t0xE035\n0xFA76\t0xE036\n0xFA77\t0xE037\n0xFA78\t0xE038\n0xFA79\t0xE039\n0xFA7A\t0xE03A\n0xFA7B\t0xE03B\n0xFA7C\t0xE03C\n0xFA7D\t0xE03D\n0xFA7E\t0xE03E\n0xFAA1\t0xE03F\n0xFAA2\t0xE040\n0xFAA3\t0xE041\n0xFAA4\t0xE042\n0xFAA5\t0xE043\n0xFAA6\t0xE044\n0xFAA7\t0xE045\n0xFAA8\t0xE046\n0xFAA9\t0xE047\n0xFAAA\t0xE048\n0xFAAB\t0xE049\n0xFAAC\t0xE04A\n0xFAAD\t0xE04B\n0xFAAE\t0xE04C\n0xFAAF\t0xE04D\n0xFAB0\t0xE04E\n0xFAB1\t0xE04F\n0xFAB2\t0xE050\n0xFAB3\t0xE051\n0xFAB4\t0xE052\n0xFAB5\t0xE053\n0xFAB6\t0xE054\n0xFAB7\t0xE055\n0xFAB8\t0xE056\n0xFAB9\t0xE057\n0xFABA\t0xE058\n0xFABB\t0xE059\n0xFABC\t0xE05A\n0xFABD\t0xE05B\n0xFABE\t0xE05C\n0xFABF\t0xE05D\n0xFAC0\t0xE05E\n0xFAC1\t0xE05F\n0xFAC2\t0xE060\n0xFAC3\t0xE061\n0xFAC4\t0xE062\n0xFAC5\t0xE063\n0xFAC6\t0xE064\n0xFAC7\t0xE065\n0xFAC8\t0xE066\n0xFAC9\t0xE067\n0xFACA\t0xE068\n0xFACB\t0xE069\n0xFACC\t0xE06A\n0xFACD\t0xE06B\n0xFACE\t0xE06C\n0xFACF\t0xE06D\n0xFAD0\t0xE06E\n0xFAD1\t0xE06F\n0xFAD2\t0xE070\n0xFAD3\t0xE071\n0xFAD4\t0xE072\n0xFAD5\t0xE073\n0xFAD6\t0xE074\n0xFAD7\t0xE075\n0xFAD8\t0xE076\n0xFAD9\t0xE077\n0xFADA\t0xE078\n0xFADB\t0xE079\n0xFADC\t0xE07A\n0xFADD\t0xE07B\n0xFADE\t0xE07C\n0xFADF\t0xE07D\n0xFAE0\t0xE07E\n0xFAE1\t0xE07F\n0xFAE2\t0xE080\n0xFAE3\t0xE081\n0xFAE4\t0xE082\n0xFAE5\t0xE083\n0xFAE6\t0xE084\n0xFAE7\t0xE085\n0xFAE8\t0xE086\n0xFAE9\t0xE087\n0xFAEA\t0xE088\n0xFAEB\t0xE089\n0xFAEC\t0xE08A\n0xFAED\t0xE08B\n0xFAEE\t0xE08C\n0xFAEF\t0xE08D\n0xFAF0\t0xE08E\n0xFAF1\t0xE08F\n0xFAF2\t0xE090\n0xFAF3\t0xE091\n0xFAF4\t0xE092\n0xFAF5\t0xE093\n0xFAF6\t0xE094\n0xFAF7\t0xE095\n0xFAF8\t0xE096\n0xFAF9\t0xE097\n0xFAFA\t0xE098\n0xFAFB\t0xE099\n0xFAFC\t0xE09A\n0xFAFD\t0xE09B\n0xFAFE\t0xE09C\n0xFB40\t0xE09D\n0xFB41\t0xE09E\n0xFB42\t0xE09F\n0xFB43\t0xE0A0\n0xFB44\t0xE0A1\n0xFB45\t0xE0A2\n0xFB46\t0xE0A3\n0xFB47\t0xE0A4\n0xFB48\t0xE0A5\n0xFB49\t0xE0A6\n0xFB4A\t0xE0A7\n0xFB4B\t0xE0A8\n0xFB4C\t0xE0A9\n0xFB4D\t0xE0AA\n0xFB4E\t0xE0AB\n0xFB4F\t0xE0AC\n0xFB50\t0xE0AD\n0xFB51\t0xE0AE\n0xFB52\t0xE0AF\n0xFB53\t0xE0B0\n0xFB54\t0xE0B1\n0xFB55\t0xE0B2\n0xFB56\t0xE0B3\n0xFB57\t0xE0B4\n0xFB58\t0xE0B5\n0xFB59\t0xE0B6\n0xFB5A\t0xE0B7\n0xFB5B\t0xE0B8\n0xFB5C\t0xE0B9\n0xFB5D\t0xE0BA\n0xFB5E\t0xE0BB\n0xFB5F\t0xE0BC\n0xFB60\t0xE0BD\n0xFB61\t0xE0BE\n0xFB62\t0xE0BF\n0xFB63\t0xE0C0\n0xFB64\t0xE0C1\n0xFB65\t0xE0C2\n0xFB66\t0xE0C3\n0xFB67\t0xE0C4\n0xFB68\t0xE0C5\n0xFB69\t0xE0C6\n0xFB6A\t0xE0C7\n0xFB6B\t0xE0C8\n0xFB6C\t0xE0C9\n0xFB6D\t0xE0CA\n0xFB6E\t0xE0CB\n0xFB6F\t0xE0CC\n0xFB70\t0xE0CD\n0xFB71\t0xE0CE\n0xFB72\t0xE0CF\n0xFB73\t0xE0D0\n0xFB74\t0xE0D1\n0xFB75\t0xE0D2\n0xFB76\t0xE0D3\n0xFB77\t0xE0D4\n0xFB78\t0xE0D5\n0xFB79\t0xE0D6\n0xFB7A\t0xE0D7\n0xFB7B\t0xE0D8\n0xFB7C\t0xE0D9\n0xFB7D\t0xE0DA\n0xFB7E\t0xE0DB\n0xFBA1\t0xE0DC\n0xFBA2\t0xE0DD\n0xFBA3\t0xE0DE\n0xFBA4\t0xE0DF\n0xFBA5\t0xE0E0\n0xFBA6\t0xE0E1\n0xFBA7\t0xE0E2\n0xFBA8\t0xE0E3\n0xFBA9\t0xE0E4\n0xFBAA\t0xE0E5\n0xFBAB\t0xE0E6\n0xFBAC\t0xE0E7\n0xFBAD\t0xE0E8\n0xFBAE\t0xE0E9\n0xFBAF\t0xE0EA\n0xFBB0\t0xE0EB\n0xFBB1\t0xE0EC\n0xFBB2\t0xE0ED\n0xFBB3\t0xE0EE\n0xFBB4\t0xE0EF\n0xFBB5\t0xE0F0\n0xFBB6\t0xE0F1\n0xFBB7\t0xE0F2\n0xFBB8\t0xE0F3\n0xFBB9\t0xE0F4\n0xFBBA\t0xE0F5\n0xFBBB\t0xE0F6\n0xFBBC\t0xE0F7\n0xFBBD\t0xE0F8\n0xFBBE\t0xE0F9\n0xFBBF\t0xE0FA\n0xFBC0\t0xE0FB\n0xFBC1\t0xE0FC\n0xFBC2\t0xE0FD\n0xFBC3\t0xE0FE\n0xFBC4\t0xE0FF\n0xFBC5\t0xE100\n0xFBC6\t0xE101\n0xFBC7\t0xE102\n0xFBC8\t0xE103\n0xFBC9\t0xE104\n0xFBCA\t0xE105\n0xFBCB\t0xE106\n0xFBCC\t0xE107\n0xFBCD\t0xE108\n0xFBCE\t0xE109\n0xFBCF\t0xE10A\n0xFBD0\t0xE10B\n0xFBD1\t0xE10C\n0xFBD2\t0xE10D\n0xFBD3\t0xE10E\n0xFBD4\t0xE10F\n0xFBD5\t0xE110\n0xFBD6\t0xE111\n0xFBD7\t0xE112\n0xFBD8\t0xE113\n0xFBD9\t0xE114\n0xFBDA\t0xE115\n0xFBDB\t0xE116\n0xFBDC\t0xE117\n0xFBDD\t0xE118\n0xFBDE\t0xE119\n0xFBDF\t0xE11A\n0xFBE0\t0xE11B\n0xFBE1\t0xE11C\n0xFBE2\t0xE11D\n0xFBE3\t0xE11E\n0xFBE4\t0xE11F\n0xFBE5\t0xE120\n0xFBE6\t0xE121\n0xFBE7\t0xE122\n0xFBE8\t0xE123\n0xFBE9\t0xE124\n0xFBEA\t0xE125\n0xFBEB\t0xE126\n0xFBEC\t0xE127\n0xFBED\t0xE128\n0xFBEE\t0xE129\n0xFBEF\t0xE12A\n0xFBF0\t0xE12B\n0xFBF1\t0xE12C\n0xFBF2\t0xE12D\n0xFBF3\t0xE12E\n0xFBF4\t0xE12F\n0xFBF5\t0xE130\n0xFBF6\t0xE131\n0xFBF7\t0xE132\n0xFBF8\t0xE133\n0xFBF9\t0xE134\n0xFBFA\t0xE135\n0xFBFB\t0xE136\n0xFBFC\t0xE137\n0xFBFD\t0xE138\n0xFBFE\t0xE139\n0xFC40\t0xE13A\n0xFC41\t0xE13B\n0xFC42\t0xE13C\n0xFC43\t0xE13D\n0xFC44\t0xE13E\n0xFC45\t0xE13F\n0xFC46\t0xE140\n0xFC47\t0xE141\n0xFC48\t0xE142\n0xFC49\t0xE143\n0xFC4A\t0xE144\n0xFC4B\t0xE145\n0xFC4C\t0xE146\n0xFC4D\t0xE147\n0xFC4E\t0xE148\n0xFC4F\t0xE149\n0xFC50\t0xE14A\n0xFC51\t0xE14B\n0xFC52\t0xE14C\n0xFC53\t0xE14D\n0xFC54\t0xE14E\n0xFC55\t0xE14F\n0xFC56\t0xE150\n0xFC57\t0xE151\n0xFC58\t0xE152\n0xFC59\t0xE153\n0xFC5A\t0xE154\n0xFC5B\t0xE155\n0xFC5C\t0xE156\n0xFC5D\t0xE157\n0xFC5E\t0xE158\n0xFC5F\t0xE159\n0xFC60\t0xE15A\n0xFC61\t0xE15B\n0xFC62\t0xE15C\n0xFC63\t0xE15D\n0xFC64\t0xE15E\n0xFC65\t0xE15F\n0xFC66\t0xE160\n0xFC67\t0xE161\n0xFC68\t0xE162\n0xFC69\t0xE163\n0xFC6A\t0xE164\n0xFC6B\t0xE165\n0xFC6C\t0xE166\n0xFC6D\t0xE167\n0xFC6E\t0xE168\n0xFC6F\t0xE169\n0xFC70\t0xE16A\n0xFC71\t0xE16B\n0xFC72\t0xE16C\n0xFC73\t0xE16D\n0xFC74\t0xE16E\n0xFC75\t0xE16F\n0xFC76\t0xE170\n0xFC77\t0xE171\n0xFC78\t0xE172\n0xFC79\t0xE173\n0xFC7A\t0xE174\n0xFC7B\t0xE175\n0xFC7C\t0xE176\n0xFC7D\t0xE177\n0xFC7E\t0xE178\n0xFCA1\t0xE179\n0xFCA2\t0xE17A\n0xFCA3\t0xE17B\n0xFCA4\t0xE17C\n0xFCA5\t0xE17D\n0xFCA6\t0xE17E\n0xFCA7\t0xE17F\n0xFCA8\t0xE180\n0xFCA9\t0xE181\n0xFCAA\t0xE182\n0xFCAB\t0xE183\n0xFCAC\t0xE184\n0xFCAD\t0xE185\n0xFCAE\t0xE186\n0xFCAF\t0xE187\n0xFCB0\t0xE188\n0xFCB1\t0xE189\n0xFCB2\t0xE18A\n0xFCB3\t0xE18B\n0xFCB4\t0xE18C\n0xFCB5\t0xE18D\n0xFCB6\t0xE18E\n0xFCB7\t0xE18F\n0xFCB8\t0xE190\n0xFCB9\t0xE191\n0xFCBA\t0xE192\n0xFCBB\t0xE193\n0xFCBC\t0xE194\n0xFCBD\t0xE195\n0xFCBE\t0xE196\n0xFCBF\t0xE197\n0xFCC0\t0xE198\n0xFCC1\t0xE199\n0xFCC2\t0xE19A\n0xFCC3\t0xE19B\n0xFCC4\t0xE19C\n0xFCC5\t0xE19D\n0xFCC6\t0xE19E\n0xFCC7\t0xE19F\n0xFCC8\t0xE1A0\n0xFCC9\t0xE1A1\n0xFCCA\t0xE1A2\n0xFCCB\t0xE1A3\n0xFCCC\t0xE1A4\n0xFCCD\t0xE1A5\n0xFCCE\t0xE1A6\n0xFCCF\t0xE1A7\n0xFCD0\t0xE1A8\n0xFCD1\t0xE1A9\n0xFCD2\t0xE1AA\n0xFCD3\t0xE1AB\n0xFCD4\t0xE1AC\n0xFCD5\t0xE1AD\n0xFCD6\t0xE1AE\n0xFCD7\t0xE1AF\n0xFCD8\t0xE1B0\n0xFCD9\t0xE1B1\n0xFCDA\t0xE1B2\n0xFCDB\t0xE1B3\n0xFCDC\t0xE1B4\n0xFCDD\t0xE1B5\n0xFCDE\t0xE1B6\n0xFCDF\t0xE1B7\n0xFCE0\t0xE1B8\n0xFCE1\t0xE1B9\n0xFCE2\t0xE1BA\n0xFCE3\t0xE1BB\n0xFCE4\t0xE1BC\n0xFCE5\t0xE1BD\n0xFCE6\t0xE1BE\n0xFCE7\t0xE1BF\n0xFCE8\t0xE1C0\n0xFCE9\t0xE1C1\n0xFCEA\t0xE1C2\n0xFCEB\t0xE1C3\n0xFCEC\t0xE1C4\n0xFCED\t0xE1C5\n0xFCEE\t0xE1C6\n0xFCEF\t0xE1C7\n0xFCF0\t0xE1C8\n0xFCF1\t0xE1C9\n0xFCF2\t0xE1CA\n0xFCF3\t0xE1CB\n0xFCF4\t0xE1CC\n0xFCF5\t0xE1CD\n0xFCF6\t0xE1CE\n0xFCF7\t0xE1CF\n0xFCF8\t0xE1D0\n0xFCF9\t0xE1D1\n0xFCFA\t0xE1D2\n0xFCFB\t0xE1D3\n0xFCFC\t0xE1D4\n0xFCFD\t0xE1D5\n0xFCFE\t0xE1D6\n0xFD40\t0xE1D7\n0xFD41\t0xE1D8\n0xFD42\t0xE1D9\n0xFD43\t0xE1DA\n0xFD44\t0xE1DB\n0xFD45\t0xE1DC\n0xFD46\t0xE1DD\n0xFD47\t0xE1DE\n0xFD48\t0xE1DF\n0xFD49\t0xE1E0\n0xFD4A\t0xE1E1\n0xFD4B\t0xE1E2\n0xFD4C\t0xE1E3\n0xFD4D\t0xE1E4\n0xFD4E\t0xE1E5\n0xFD4F\t0xE1E6\n0xFD50\t0xE1E7\n0xFD51\t0xE1E8\n0xFD52\t0xE1E9\n0xFD53\t0xE1EA\n0xFD54\t0xE1EB\n0xFD55\t0xE1EC\n0xFD56\t0xE1ED\n0xFD57\t0xE1EE\n0xFD58\t0xE1EF\n0xFD59\t0xE1F0\n0xFD5A\t0xE1F1\n0xFD5B\t0xE1F2\n0xFD5C\t0xE1F3\n0xFD5D\t0xE1F4\n0xFD5E\t0xE1F5\n0xFD5F\t0xE1F6\n0xFD60\t0xE1F7\n0xFD61\t0xE1F8\n0xFD62\t0xE1F9\n0xFD63\t0xE1FA\n0xFD64\t0xE1FB\n0xFD65\t0xE1FC\n0xFD66\t0xE1FD\n0xFD67\t0xE1FE\n0xFD68\t0xE1FF\n0xFD69\t0xE200\n0xFD6A\t0xE201\n0xFD6B\t0xE202\n0xFD6C\t0xE203\n0xFD6D\t0xE204\n0xFD6E\t0xE205\n0xFD6F\t0xE206\n0xFD70\t0xE207\n0xFD71\t0xE208\n0xFD72\t0xE209\n0xFD73\t0xE20A\n0xFD74\t0xE20B\n0xFD75\t0xE20C\n0xFD76\t0xE20D\n0xFD77\t0xE20E\n0xFD78\t0xE20F\n0xFD79\t0xE210\n0xFD7A\t0xE211\n0xFD7B\t0xE212\n0xFD7C\t0xE213\n0xFD7D\t0xE214\n0xFD7E\t0xE215\n0xFDA1\t0xE216\n0xFDA2\t0xE217\n0xFDA3\t0xE218\n0xFDA4\t0xE219\n0xFDA5\t0xE21A\n0xFDA6\t0xE21B\n0xFDA7\t0xE21C\n0xFDA8\t0xE21D\n0xFDA9\t0xE21E\n0xFDAA\t0xE21F\n0xFDAB\t0xE220\n0xFDAC\t0xE221\n0xFDAD\t0xE222\n0xFDAE\t0xE223\n0xFDAF\t0xE224\n0xFDB0\t0xE225\n0xFDB1\t0xE226\n0xFDB2\t0xE227\n0xFDB3\t0xE228\n0xFDB4\t0xE229\n0xFDB5\t0xE22A\n0xFDB6\t0xE22B\n0xFDB7\t0xE22C\n0xFDB8\t0xE22D\n0xFDB9\t0xE22E\n0xFDBA\t0xE22F\n0xFDBB\t0xE230\n0xFDBC\t0xE231\n0xFDBD\t0xE232\n0xFDBE\t0xE233\n0xFDBF\t0xE234\n0xFDC0\t0xE235\n0xFDC1\t0xE236\n0xFDC2\t0xE237\n0xFDC3\t0xE238\n0xFDC4\t0xE239\n0xFDC5\t0xE23A\n0xFDC6\t0xE23B\n0xFDC7\t0xE23C\n0xFDC8\t0xE23D\n0xFDC9\t0xE23E\n0xFDCA\t0xE23F\n0xFDCB\t0xE240\n0xFDCC\t0xE241\n0xFDCD\t0xE242\n0xFDCE\t0xE243\n0xFDCF\t0xE244\n0xFDD0\t0xE245\n0xFDD1\t0xE246\n0xFDD2\t0xE247\n0xFDD3\t0xE248\n0xFDD4\t0xE249\n0xFDD5\t0xE24A\n0xFDD6\t0xE24B\n0xFDD7\t0xE24C\n0xFDD8\t0xE24D\n0xFDD9\t0xE24E\n0xFDDA\t0xE24F\n0xFDDB\t0xE250\n0xFDDC\t0xE251\n0xFDDD\t0xE252\n0xFDDE\t0xE253\n0xFDDF\t0xE254\n0xFDE0\t0xE255\n0xFDE1\t0xE256\n0xFDE2\t0xE257\n0xFDE3\t0xE258\n0xFDE4\t0xE259\n0xFDE5\t0xE25A\n0xFDE6\t0xE25B\n0xFDE7\t0xE25C\n0xFDE8\t0xE25D\n0xFDE9\t0xE25E\n0xFDEA\t0xE25F\n0xFDEB\t0xE260\n0xFDEC\t0xE261\n0xFDED\t0xE262\n0xFDEE\t0xE263\n0xFDEF\t0xE264\n0xFDF0\t0xE265\n0xFDF1\t0xE266\n0xFDF2\t0xE267\n0xFDF3\t0xE268\n0xFDF4\t0xE269\n0xFDF5\t0xE26A\n0xFDF6\t0xE26B\n0xFDF7\t0xE26C\n0xFDF8\t0xE26D\n0xFDF9\t0xE26E\n0xFDFA\t0xE26F\n0xFDFB\t0xE270\n0xFDFC\t0xE271\n0xFDFD\t0xE272\n0xFDFE\t0xE273\n0xFE40\t0xE274\n0xFE41\t0xE275\n0xFE42\t0xE276\n0xFE43\t0xE277\n0xFE44\t0xE278\n0xFE45\t0xE279\n0xFE46\t0xE27A\n0xFE47\t0xE27B\n0xFE48\t0xE27C\n0xFE49\t0xE27D\n0xFE4A\t0xE27E\n0xFE4B\t0xE27F\n0xFE4C\t0xE280\n0xFE4D\t0xE281\n0xFE4E\t0xE282\n0xFE4F\t0xE283\n0xFE50\t0xE284\n0xFE51\t0xE285\n0xFE52\t0xE286\n0xFE53\t0xE287\n0xFE54\t0xE288\n0xFE55\t0xE289\n0xFE56\t0xE28A\n0xFE57\t0xE28B\n0xFE58\t0xE28C\n0xFE59\t0xE28D\n0xFE5A\t0xE28E\n0xFE5B\t0xE28F\n0xFE5C\t0xE290\n0xFE5D\t0xE291\n0xFE5E\t0xE292\n0xFE5F\t0xE293\n0xFE60\t0xE294\n0xFE61\t0xE295\n0xFE62\t0xE296\n0xFE63\t0xE297\n0xFE64\t0xE298\n0xFE65\t0xE299\n0xFE66\t0xE29A\n0xFE67\t0xE29B\n0xFE68\t0xE29C\n0xFE69\t0xE29D\n0xFE6A\t0xE29E\n0xFE6B\t0xE29F\n0xFE6C\t0xE2A0\n0xFE6D\t0xE2A1\n0xFE6E\t0xE2A2\n0xFE6F\t0xE2A3\n0xFE70\t0xE2A4\n0xFE71\t0xE2A5\n0xFE72\t0xE2A6\n0xFE73\t0xE2A7\n0xFE74\t0xE2A8\n0xFE75\t0xE2A9\n0xFE76\t0xE2AA\n0xFE77\t0xE2AB\n0xFE78\t0xE2AC\n0xFE79\t0xE2AD\n0xFE7A\t0xE2AE\n0xFE7B\t0xE2AF\n0xFE7C\t0xE2B0\n0xFE7D\t0xE2B1\n0xFE7E\t0xE2B2\n0xFEA1\t0xE2B3\n0xFEA2\t0xE2B4\n0xFEA3\t0xE2B5\n0xFEA4\t0xE2B6\n0xFEA5\t0xE2B7\n0xFEA6\t0xE2B8\n0xFEA7\t0xE2B9\n0xFEA8\t0xE2BA\n0xFEA9\t0xE2BB\n0xFEAA\t0xE2BC\n0xFEAB\t0xE2BD\n0xFEAC\t0xE2BE\n0xFEAD\t0xE2BF\n0xFEAE\t0xE2C0\n0xFEAF\t0xE2C1\n0xFEB0\t0xE2C2\n0xFEB1\t0xE2C3\n0xFEB2\t0xE2C4\n0xFEB3\t0xE2C5\n0xFEB4\t0xE2C6\n0xFEB5\t0xE2C7\n0xFEB6\t0xE2C8\n0xFEB7\t0xE2C9\n0xFEB8\t0xE2CA\n0xFEB9\t0xE2CB\n0xFEBA\t0xE2CC\n0xFEBB\t0xE2CD\n0xFEBC\t0xE2CE\n0xFEBD\t0xE2CF\n0xFEBE\t0xE2D0\n0xFEBF\t0xE2D1\n0xFEC0\t0xE2D2\n0xFEC1\t0xE2D3\n0xFEC2\t0xE2D4\n0xFEC3\t0xE2D5\n0xFEC4\t0xE2D6\n0xFEC5\t0xE2D7\n0xFEC6\t0xE2D8\n0xFEC7\t0xE2D9\n0xFEC8\t0xE2DA\n0xFEC9\t0xE2DB\n0xFECA\t0xE2DC\n0xFECB\t0xE2DD\n0xFECC\t0xE2DE\n0xFECD\t0xE2DF\n0xFECE\t0xE2E0\n0xFECF\t0xE2E1\n0xFED0\t0xE2E2\n0xFED1\t0xE2E3\n0xFED2\t0xE2E4\n0xFED3\t0xE2E5\n0xFED4\t0xE2E6\n0xFED5\t0xE2E7\n0xFED6\t0xE2E8\n0xFED7\t0xE2E9\n0xFED8\t0xE2EA\n0xFED9\t0xE2EB\n0xFEDA\t0xE2EC\n0xFEDB\t0xE2ED\n0xFEDC\t0xE2EE\n0xFEDD\t0xE2EF\n0xFEDE\t0xE2F0\n0xFEDF\t0xE2F1\n0xFEE0\t0xE2F2\n0xFEE1\t0xE2F3\n0xFEE2\t0xE2F4\n0xFEE3\t0xE2F5\n0xFEE4\t0xE2F6\n0xFEE5\t0xE2F7\n0xFEE6\t0xE2F8\n0xFEE7\t0xE2F9\n0xFEE8\t0xE2FA\n0xFEE9\t0xE2FB\n0xFEEA\t0xE2FC\n0xFEEB\t0xE2FD\n0xFEEC\t0xE2FE\n0xFEED\t0xE2FF\n0xFEEE\t0xE300\n0xFEEF\t0xE301\n0xFEF0\t0xE302\n0xFEF1\t0xE303\n0xFEF2\t0xE304\n0xFEF3\t0xE305\n0xFEF4\t0xE306\n0xFEF5\t0xE307\n0xFEF6\t0xE308\n0xFEF7\t0xE309\n0xFEF8\t0xE30A\n0xFEF9\t0xE30B\n0xFEFA\t0xE30C\n0xFEFB\t0xE30D\n0xFEFC\t0xE30E\n0xFEFD\t0xE30F\n0xFEFE\t0xE310\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/DEC-HANYU.IRREVERSIBLE.TXT",
    "content": "0xC2CBA1B8\t0x5344\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/DEC-HANYU.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0xA121\t0x4E42\n0xA122\t0x4E5C\n0xA123\t0x51F5\n0xA124\t0x531A\n0xA125\t0x5382\n0xA126\t0x4E07\n0xA127\t0x4E0C\n0xA128\t0x4E47\n0xA129\t0x4E8D\n0xA12A\t0x56D7\n0xA12B\t0x5C6E\n0xA12C\t0x5F73\n0xA12D\t0x4E0F\n0xA12E\t0x5187\n0xA12F\t0x4E0E\n0xA130\t0x4E2E\n0xA131\t0x4E93\n0xA132\t0x4EC2\n0xA133\t0x4EC9\n0xA134\t0x4EC8\n0xA135\t0x5198\n0xA136\t0x52FC\n0xA137\t0x536C\n0xA138\t0x53B9\n0xA139\t0x5720\n0xA13A\t0x5903\n0xA13B\t0x592C\n0xA13C\t0x5C10\n0xA13D\t0x5DFF\n0xA13E\t0x65E1\n0xA13F\t0x6BB3\n0xA140\t0x6BCC\n0xA141\t0x6C14\n0xA142\t0x723F\n0xA143\t0x4E31\n0xA144\t0x4E3C\n0xA145\t0x4EE8\n0xA146\t0x4EDC\n0xA147\t0x4EE9\n0xA148\t0x4EE1\n0xA149\t0x4EDD\n0xA14A\t0x4EDA\n0xA14B\t0x520C\n0xA14C\t0x5209\n0xA14D\t0x531C\n0xA14E\t0x534C\n0xA14F\t0x5722\n0xA150\t0x5723\n0xA151\t0x5917\n0xA152\t0x592F\n0xA153\t0x5B81\n0xA154\t0x5B84\n0xA155\t0x5C12\n0xA156\t0x5C3B\n0xA157\t0x5C74\n0xA158\t0x5C73\n0xA159\t0x5E04\n0xA15A\t0x5E80\n0xA15B\t0x5E82\n0xA15C\t0x5FC9\n0xA15D\t0x6209\n0xA15E\t0x6250\n0xA15F\t0x6C15\n0xA160\t0x6C36\n0xA161\t0x6C43\n0xA162\t0x6C3F\n0xA163\t0x6C3B\n0xA164\t0x72AE\n0xA165\t0x72B0\n0xA166\t0x738A\n0xA167\t0x79B8\n0xA168\t0x808A\n0xA169\t0x961E\n0xA16A\t0x4F0E\n0xA16B\t0x4F18\n0xA16C\t0x4F2C\n0xA16D\t0x4EF5\n0xA16E\t0x4F14\n0xA16F\t0x4EF1\n0xA170\t0x4F00\n0xA171\t0x4EF7\n0xA172\t0x4F08\n0xA173\t0x4F1D\n0xA174\t0x4F02\n0xA175\t0x4F05\n0xA176\t0x4F22\n0xA177\t0x4F13\n0xA178\t0x4F04\n0xA179\t0x4EF4\n0xA17A\t0x4F12\n0xA17B\t0x51B1\n0xA17C\t0x5213\n0xA17D\t0x5210\n0xA17E\t0x52A6\n0xA1A1\t0x3000\n0xA1A2\t0xFF0C\n0xA1A3\t0x3001\n0xA1A4\t0x3002\n0xA1A5\t0xFF0E\n0xA1A6\t0x30FB\n0xA1A7\t0xFF1B\n0xA1A8\t0xFF1A\n0xA1A9\t0xFF1F\n0xA1AA\t0xFF01\n0xA1AB\t0xFE30\n0xA1AC\t0x2026\n0xA1AD\t0x2025\n0xA1AE\t0xFE50\n0xA1AF\t0xFE51\n0xA1B0\t0xFE52\n0xA1B1\t0x00B7\n0xA1B2\t0xFE54\n0xA1B3\t0xFE55\n0xA1B4\t0xFE56\n0xA1B5\t0xFE57\n0xA1B6\t0xFE31\n0xA1B7\t0x2014\n0xA1B8\t0xFE32\n0xA1B9\t0x2013\n0xA1BE\t0xFF08\n0xA1BF\t0xFF09\n0xA1C0\t0xFE35\n0xA1C1\t0xFE36\n0xA1C2\t0xFF5B\n0xA1C3\t0xFF5D\n0xA1C4\t0xFE37\n0xA1C5\t0xFE38\n0xA1C6\t0x3014\n0xA1C7\t0x3015\n0xA1C8\t0xFE39\n0xA1C9\t0xFE3A\n0xA1CA\t0x3010\n0xA1CB\t0x3011\n0xA1CC\t0xFE3B\n0xA1CD\t0xFE3C\n0xA1CE\t0x300A\n0xA1CF\t0x300B\n0xA1D0\t0xFE3D\n0xA1D1\t0xFE3E\n0xA1D2\t0x3008\n0xA1D3\t0x3009\n0xA1D4\t0xFE3F\n0xA1D5\t0xFE40\n0xA1D6\t0x300C\n0xA1D7\t0x300D\n0xA1D8\t0xFE41\n0xA1D9\t0xFE42\n0xA1DA\t0x300E\n0xA1DB\t0x300F\n0xA1DC\t0xFE43\n0xA1DD\t0xFE44\n0xA1DE\t0xFE59\n0xA1DF\t0xFE5A\n0xA1E0\t0xFE5B\n0xA1E1\t0xFE5C\n0xA1E2\t0xFE5D\n0xA1E3\t0xFE5E\n0xA1E4\t0x2018\n0xA1E5\t0x2019\n0xA1E6\t0x201C\n0xA1E7\t0x201D\n0xA1E8\t0x301D\n0xA1E9\t0x301E\n0xA1EA\t0x2032\n0xA1EB\t0x2035\n0xA1EC\t0xFF03\n0xA1ED\t0xFF06\n0xA1EE\t0xFF0A\n0xA1EF\t0x203B\n0xA1F0\t0x00A7\n0xA1F1\t0x3003\n0xA1F2\t0x25CB\n0xA1F3\t0x25CF\n0xA1F4\t0x25B3\n0xA1F5\t0x25B2\n0xA1F6\t0x25CE\n0xA1F7\t0x2606\n0xA1F8\t0x2605\n0xA1F9\t0x25C7\n0xA1FA\t0x25C6\n0xA1FB\t0x25A1\n0xA1FC\t0x25A0\n0xA1FD\t0x25BD\n0xA1FE\t0x25BC\n0xA221\t0x5322\n0xA222\t0x531F\n0xA223\t0x534D\n0xA224\t0x538A\n0xA225\t0x5407\n0xA226\t0x56E1\n0xA227\t0x56DF\n0xA228\t0x572E\n0xA229\t0x572A\n0xA22A\t0x5734\n0xA22B\t0x593C\n0xA22C\t0x5980\n0xA22D\t0x597C\n0xA22E\t0x5985\n0xA22F\t0x597B\n0xA230\t0x597E\n0xA231\t0x5977\n0xA232\t0x597F\n0xA233\t0x5B56\n0xA234\t0x5C15\n0xA235\t0x5C25\n0xA236\t0x5C7C\n0xA237\t0x5C7A\n0xA238\t0x5C7B\n0xA239\t0x5C7E\n0xA23A\t0x5DDF\n0xA23B\t0x5E75\n0xA23C\t0x5E84\n0xA23D\t0x5F02\n0xA23E\t0x5F1A\n0xA23F\t0x5F74\n0xA240\t0x5FD5\n0xA241\t0x5FD4\n0xA242\t0x5FCF\n0xA243\t0x625C\n0xA244\t0x625E\n0xA245\t0x6264\n0xA246\t0x6261\n0xA247\t0x6266\n0xA248\t0x6262\n0xA249\t0x6259\n0xA24A\t0x6260\n0xA24B\t0x625A\n0xA24C\t0x6265\n0xA24D\t0x6537\n0xA24E\t0x65EF\n0xA24F\t0x65EE\n0xA250\t0x673E\n0xA251\t0x6739\n0xA252\t0x6738\n0xA253\t0x673B\n0xA254\t0x673A\n0xA255\t0x673F\n0xA256\t0x673C\n0xA257\t0x6733\n0xA258\t0x6C18\n0xA259\t0x6C46\n0xA25A\t0x6C52\n0xA25B\t0x6C5C\n0xA25C\t0x6C4F\n0xA25D\t0x6C4A\n0xA25E\t0x6C54\n0xA25F\t0x6C4B\n0xA260\t0x6C4C\n0xA261\t0x7071\n0xA262\t0x725E\n0xA263\t0x72B4\n0xA264\t0x72B5\n0xA265\t0x738E\n0xA266\t0x752A\n0xA267\t0x767F\n0xA268\t0x7A75\n0xA269\t0x7F51\n0xA26A\t0x8278\n0xA26B\t0x827C\n0xA26C\t0x8280\n0xA26D\t0x827D\n0xA26E\t0x827F\n0xA26F\t0x864D\n0xA270\t0x897E\n0xA271\t0x9099\n0xA272\t0x9097\n0xA273\t0x9098\n0xA274\t0x909B\n0xA275\t0x9094\n0xA276\t0x9622\n0xA277\t0x9624\n0xA278\t0x9620\n0xA279\t0x9623\n0xA27A\t0x4F56\n0xA27B\t0x4F3B\n0xA27C\t0x4F62\n0xA27D\t0x4F49\n0xA27E\t0x4F53\n0xA2A1\t0x32A3\n0xA2A2\t0x2105\n0xA2A3\t0x203E\n0xA2A5\t0xFF3F\n0xA2A7\t0xFE49\n0xA2A8\t0xFE4A\n0xA2A9\t0xFE4D\n0xA2AA\t0xFE4E\n0xA2AB\t0xFE4B\n0xA2AC\t0xFE4C\n0xA2AD\t0xFE5F\n0xA2AE\t0xFE60\n0xA2AF\t0xFE61\n0xA2B0\t0xFF0B\n0xA2B1\t0xFF0D\n0xA2B2\t0x00D7\n0xA2B3\t0x00F7\n0xA2B4\t0x00B1\n0xA2B5\t0x221A\n0xA2B6\t0xFF1C\n0xA2B7\t0xFF1E\n0xA2B8\t0xFF1D\n0xA2B9\t0x2266\n0xA2BA\t0x2267\n0xA2BB\t0x2260\n0xA2BC\t0x221E\n0xA2BD\t0x2252\n0xA2BE\t0x2261\n0xA2BF\t0xFE62\n0xA2C0\t0xFE63\n0xA2C1\t0xFE64\n0xA2C2\t0xFE66\n0xA2C3\t0xFE65\n0xA2C4\t0x223C\n0xA2C5\t0x2229\n0xA2C6\t0x222A\n0xA2C7\t0x22A5\n0xA2C8\t0x2220\n0xA2C9\t0x221F\n0xA2CA\t0x22BF\n0xA2CB\t0x33D2\n0xA2CC\t0x33D1\n0xA2CD\t0x222B\n0xA2CE\t0x222E\n0xA2CF\t0x2235\n0xA2D0\t0x2234\n0xA2D1\t0x2640\n0xA2D2\t0x2642\n0xA2D3\t0x2641\n0xA2D4\t0x2609\n0xA2D5\t0x2191\n0xA2D6\t0x2193\n0xA2D7\t0x2192\n0xA2D8\t0x2190\n0xA2D9\t0x2196\n0xA2DA\t0x2197\n0xA2DB\t0x2199\n0xA2DC\t0x2198\n0xA2DD\t0x2016\n0xA2DE\t0xFF5C\n0xA2DF\t0xFF0F\n0xA2E0\t0xFF3C\n0xA2E1\t0x2215\n0xA2E2\t0xFE68\n0xA2E3\t0xFF04\n0xA2E4\t0xFFE5\n0xA2E5\t0x3012\n0xA2E6\t0xFFE0\n0xA2E7\t0xFFE1\n0xA2E8\t0xFF05\n0xA2E9\t0xFF20\n0xA2EA\t0x2103\n0xA2EB\t0x2109\n0xA2EC\t0xFE69\n0xA2ED\t0xFE6A\n0xA2EE\t0xFE6B\n0xA2EF\t0x33D5\n0xA2F0\t0x339C\n0xA2F1\t0x339D\n0xA2F2\t0x339E\n0xA2F3\t0x33CE\n0xA2F4\t0x33A1\n0xA2F5\t0x338E\n0xA2F6\t0x338F\n0xA2F7\t0x33C4\n0xA2F8\t0x00B0\n0xA2F9\t0x5159\n0xA2FA\t0x515B\n0xA2FB\t0x515E\n0xA2FC\t0x515D\n0xA2FD\t0x5161\n0xA2FE\t0x5163\n0xA321\t0x4F64\n0xA322\t0x4F3E\n0xA323\t0x4F67\n0xA324\t0x4F52\n0xA325\t0x4F5F\n0xA326\t0x4F41\n0xA327\t0x4F58\n0xA328\t0x4F2D\n0xA329\t0x4F33\n0xA32A\t0x4F3F\n0xA32B\t0x4F61\n0xA32C\t0x518F\n0xA32D\t0x51B9\n0xA32E\t0x521C\n0xA32F\t0x521E\n0xA330\t0x5221\n0xA331\t0x52AD\n0xA332\t0x52AE\n0xA333\t0x5309\n0xA334\t0x5363\n0xA335\t0x5372\n0xA336\t0x538E\n0xA337\t0x538F\n0xA338\t0x5430\n0xA339\t0x5437\n0xA33A\t0x542A\n0xA33B\t0x5454\n0xA33C\t0x5445\n0xA33D\t0x5419\n0xA33E\t0x541C\n0xA33F\t0x5425\n0xA340\t0x5418\n0xA341\t0x543D\n0xA342\t0x544F\n0xA343\t0x5441\n0xA344\t0x5428\n0xA345\t0x5424\n0xA346\t0x5447\n0xA347\t0x56EE\n0xA348\t0x56E7\n0xA349\t0x56E5\n0xA34A\t0x5741\n0xA34B\t0x5745\n0xA34C\t0x574C\n0xA34D\t0x5749\n0xA34E\t0x574B\n0xA34F\t0x5752\n0xA350\t0x5906\n0xA351\t0x5940\n0xA352\t0x59A6\n0xA353\t0x5998\n0xA354\t0x59A0\n0xA355\t0x5997\n0xA356\t0x598E\n0xA357\t0x59A2\n0xA358\t0x5990\n0xA359\t0x598F\n0xA35A\t0x59A7\n0xA35B\t0x59A1\n0xA35C\t0x5B8E\n0xA35D\t0x5B92\n0xA35E\t0x5C28\n0xA35F\t0x5C2A\n0xA360\t0x5C8D\n0xA361\t0x5C8F\n0xA362\t0x5C88\n0xA363\t0x5C8B\n0xA364\t0x5C89\n0xA365\t0x5C92\n0xA366\t0x5C8A\n0xA367\t0x5C86\n0xA368\t0x5C93\n0xA369\t0x5C95\n0xA36A\t0x5DE0\n0xA36B\t0x5E0A\n0xA36C\t0x5E0E\n0xA36D\t0x5E8B\n0xA36E\t0x5E89\n0xA36F\t0x5E8C\n0xA370\t0x5E88\n0xA371\t0x5E8D\n0xA372\t0x5F05\n0xA373\t0x5F1D\n0xA374\t0x5F78\n0xA375\t0x5F76\n0xA376\t0x5FD2\n0xA377\t0x5FD1\n0xA378\t0x5FD0\n0xA379\t0x5FED\n0xA37A\t0x5FE8\n0xA37B\t0x5FEE\n0xA37C\t0x5FF3\n0xA37D\t0x5FE1\n0xA37E\t0x5FE4\n0xA3A1\t0x55E7\n0xA3A2\t0x74E9\n0xA3A3\t0x7CCE\n0xA3A4\t0x2581\n0xA3A5\t0x2582\n0xA3A6\t0x2583\n0xA3A7\t0x2584\n0xA3A8\t0x2585\n0xA3A9\t0x2586\n0xA3AA\t0x2587\n0xA3AB\t0x2588\n0xA3AC\t0x258F\n0xA3AD\t0x258E\n0xA3AE\t0x258D\n0xA3AF\t0x258C\n0xA3B0\t0x258B\n0xA3B1\t0x258A\n0xA3B2\t0x2589\n0xA3B3\t0x253C\n0xA3B4\t0x2534\n0xA3B5\t0x252C\n0xA3B6\t0x2524\n0xA3B7\t0x251C\n0xA3B8\t0x2594\n0xA3B9\t0x2500\n0xA3BA\t0x2502\n0xA3BB\t0x2595\n0xA3BC\t0x250C\n0xA3BD\t0x2510\n0xA3BE\t0x2514\n0xA3BF\t0x2518\n0xA3C0\t0x256D\n0xA3C1\t0x256E\n0xA3C2\t0x2570\n0xA3C3\t0x256F\n0xA3C4\t0x2550\n0xA3C5\t0x255E\n0xA3C6\t0x256A\n0xA3C7\t0x2561\n0xA3C8\t0x25E2\n0xA3C9\t0x25E3\n0xA3CA\t0x25E5\n0xA3CB\t0x25E4\n0xA3CC\t0x2571\n0xA3CD\t0x2572\n0xA3CE\t0x2573\n0xA421\t0x5FE3\n0xA422\t0x5FFA\n0xA423\t0x5FEF\n0xA424\t0x5FF7\n0xA425\t0x5FFB\n0xA426\t0x6000\n0xA427\t0x5FF4\n0xA428\t0x623A\n0xA429\t0x6283\n0xA42A\t0x628C\n0xA42B\t0x628E\n0xA42C\t0x628F\n0xA42D\t0x6294\n0xA42E\t0x6287\n0xA42F\t0x6271\n0xA430\t0x627B\n0xA431\t0x627A\n0xA432\t0x6270\n0xA433\t0x6281\n0xA434\t0x6288\n0xA435\t0x6277\n0xA436\t0x627D\n0xA437\t0x6272\n0xA438\t0x6274\n0xA439\t0x65F0\n0xA43A\t0x65F4\n0xA43B\t0x65F3\n0xA43C\t0x65F2\n0xA43D\t0x65F5\n0xA43E\t0x6745\n0xA43F\t0x6747\n0xA440\t0x6759\n0xA441\t0x6755\n0xA442\t0x674C\n0xA443\t0x6748\n0xA444\t0x675D\n0xA445\t0x674D\n0xA446\t0x675A\n0xA447\t0x674B\n0xA448\t0x6BD0\n0xA449\t0x6C19\n0xA44A\t0x6C1A\n0xA44B\t0x6C78\n0xA44C\t0x6C67\n0xA44D\t0x6C6B\n0xA44E\t0x6C84\n0xA44F\t0x6C8B\n0xA450\t0x6C8F\n0xA451\t0x6C71\n0xA452\t0x6C6F\n0xA453\t0x6C69\n0xA454\t0x6C9A\n0xA455\t0x6C6D\n0xA456\t0x6C87\n0xA457\t0x6C95\n0xA458\t0x6C9C\n0xA459\t0x6C66\n0xA45A\t0x6C73\n0xA45B\t0x6C65\n0xA45C\t0x6C7B\n0xA45D\t0x6C8E\n0xA45E\t0x7074\n0xA45F\t0x707A\n0xA460\t0x7263\n0xA461\t0x72BF\n0xA462\t0x72BD\n0xA463\t0x72C3\n0xA464\t0x72C6\n0xA465\t0x72C1\n0xA466\t0x72BA\n0xA467\t0x72C5\n0xA468\t0x7395\n0xA469\t0x7397\n0xA46A\t0x7393\n0xA46B\t0x7394\n0xA46C\t0x7392\n0xA46D\t0x753A\n0xA46E\t0x7539\n0xA46F\t0x7594\n0xA470\t0x7595\n0xA471\t0x7681\n0xA472\t0x793D\n0xA473\t0x8034\n0xA474\t0x8095\n0xA475\t0x8099\n0xA476\t0x8090\n0xA477\t0x8092\n0xA478\t0x809C\n0xA479\t0x8290\n0xA47A\t0x828F\n0xA47B\t0x8285\n0xA47C\t0x828E\n0xA47D\t0x8291\n0xA47E\t0x8293\n0xA4A1\t0xFF10\n0xA4A2\t0xFF11\n0xA4A3\t0xFF12\n0xA4A4\t0xFF13\n0xA4A5\t0xFF14\n0xA4A6\t0xFF15\n0xA4A7\t0xFF16\n0xA4A8\t0xFF17\n0xA4A9\t0xFF18\n0xA4AA\t0xFF19\n0xA4AB\t0x2160\n0xA4AC\t0x2161\n0xA4AD\t0x2162\n0xA4AE\t0x2163\n0xA4AF\t0x2164\n0xA4B0\t0x2165\n0xA4B1\t0x2166\n0xA4B2\t0x2167\n0xA4B3\t0x2168\n0xA4B4\t0x2169\n0xA4B5\t0x3021\n0xA4B6\t0x3022\n0xA4B7\t0x3023\n0xA4B8\t0x3024\n0xA4B9\t0x3025\n0xA4BA\t0x3026\n0xA4BB\t0x3027\n0xA4BC\t0x3028\n0xA4BD\t0x3029\n0xA4BF\t0x5344\n0xA4C1\t0xFF21\n0xA4C2\t0xFF22\n0xA4C3\t0xFF23\n0xA4C4\t0xFF24\n0xA4C5\t0xFF25\n0xA4C6\t0xFF26\n0xA4C7\t0xFF27\n0xA4C8\t0xFF28\n0xA4C9\t0xFF29\n0xA4CA\t0xFF2A\n0xA4CB\t0xFF2B\n0xA4CC\t0xFF2C\n0xA4CD\t0xFF2D\n0xA4CE\t0xFF2E\n0xA4CF\t0xFF2F\n0xA4D0\t0xFF30\n0xA4D1\t0xFF31\n0xA4D2\t0xFF32\n0xA4D3\t0xFF33\n0xA4D4\t0xFF34\n0xA4D5\t0xFF35\n0xA4D6\t0xFF36\n0xA4D7\t0xFF37\n0xA4D8\t0xFF38\n0xA4D9\t0xFF39\n0xA4DA\t0xFF3A\n0xA4DB\t0xFF41\n0xA4DC\t0xFF42\n0xA4DD\t0xFF43\n0xA4DE\t0xFF44\n0xA4DF\t0xFF45\n0xA4E0\t0xFF46\n0xA4E1\t0xFF47\n0xA4E2\t0xFF48\n0xA4E3\t0xFF49\n0xA4E4\t0xFF4A\n0xA4E5\t0xFF4B\n0xA4E6\t0xFF4C\n0xA4E7\t0xFF4D\n0xA4E8\t0xFF4E\n0xA4E9\t0xFF4F\n0xA4EA\t0xFF50\n0xA4EB\t0xFF51\n0xA4EC\t0xFF52\n0xA4ED\t0xFF53\n0xA4EE\t0xFF54\n0xA4EF\t0xFF55\n0xA4F0\t0xFF56\n0xA4F1\t0xFF57\n0xA4F2\t0xFF58\n0xA4F3\t0xFF59\n0xA4F4\t0xFF5A\n0xA4F5\t0x0391\n0xA4F6\t0x0392\n0xA4F7\t0x0393\n0xA4F8\t0x0394\n0xA4F9\t0x0395\n0xA4FA\t0x0396\n0xA4FB\t0x0397\n0xA4FC\t0x0398\n0xA4FD\t0x0399\n0xA4FE\t0x039A\n0xA521\t0x828A\n0xA522\t0x8283\n0xA523\t0x8284\n0xA524\t0x8C78\n0xA525\t0x8FC9\n0xA526\t0x8FBF\n0xA527\t0x909F\n0xA528\t0x90A1\n0xA529\t0x90A5\n0xA52A\t0x909E\n0xA52B\t0x90A7\n0xA52C\t0x90A0\n0xA52D\t0x9630\n0xA52E\t0x9628\n0xA52F\t0x962F\n0xA530\t0x962D\n0xA531\t0x4E33\n0xA532\t0x4F98\n0xA533\t0x4F7C\n0xA534\t0x4F85\n0xA535\t0x4F7D\n0xA536\t0x4F80\n0xA537\t0x4F87\n0xA538\t0x4F76\n0xA539\t0x4F74\n0xA53A\t0x4F89\n0xA53B\t0x4F84\n0xA53C\t0x4F77\n0xA53D\t0x4F4C\n0xA53E\t0x4F97\n0xA53F\t0x4F6A\n0xA540\t0x4F9A\n0xA541\t0x4F79\n0xA542\t0x4F81\n0xA543\t0x4F78\n0xA544\t0x4F90\n0xA545\t0x4F9C\n0xA546\t0x4F94\n0xA547\t0x4F9E\n0xA548\t0x4F92\n0xA549\t0x4F82\n0xA54A\t0x4F95\n0xA54B\t0x4F6B\n0xA54C\t0x4F6E\n0xA54D\t0x519E\n0xA54E\t0x51BC\n0xA54F\t0x51BE\n0xA550\t0x5235\n0xA551\t0x5232\n0xA552\t0x5233\n0xA553\t0x5246\n0xA554\t0x5231\n0xA555\t0x52BC\n0xA556\t0x530A\n0xA557\t0x530B\n0xA558\t0x533C\n0xA559\t0x5392\n0xA55A\t0x5394\n0xA55B\t0x5487\n0xA55C\t0x547F\n0xA55D\t0x5481\n0xA55E\t0x5491\n0xA55F\t0x5482\n0xA560\t0x5488\n0xA561\t0x546B\n0xA562\t0x547A\n0xA563\t0x547E\n0xA564\t0x5465\n0xA565\t0x546C\n0xA566\t0x5474\n0xA567\t0x5466\n0xA568\t0x548D\n0xA569\t0x546F\n0xA56A\t0x5461\n0xA56B\t0x5460\n0xA56C\t0x5498\n0xA56D\t0x5463\n0xA56E\t0x5467\n0xA56F\t0x5464\n0xA570\t0x56F7\n0xA571\t0x56F9\n0xA572\t0x576F\n0xA573\t0x5772\n0xA574\t0x576D\n0xA575\t0x576B\n0xA576\t0x5771\n0xA577\t0x5770\n0xA578\t0x5776\n0xA579\t0x5780\n0xA57A\t0x5775\n0xA57B\t0x577B\n0xA57C\t0x5773\n0xA57D\t0x5774\n0xA57E\t0x5762\n0xA5A1\t0x039B\n0xA5A2\t0x039C\n0xA5A3\t0x039D\n0xA5A4\t0x039E\n0xA5A5\t0x039F\n0xA5A6\t0x03A0\n0xA5A7\t0x03A1\n0xA5A8\t0x03A3\n0xA5A9\t0x03A4\n0xA5AA\t0x03A5\n0xA5AB\t0x03A6\n0xA5AC\t0x03A7\n0xA5AD\t0x03A8\n0xA5AE\t0x03A9\n0xA5AF\t0x03B1\n0xA5B0\t0x03B2\n0xA5B1\t0x03B3\n0xA5B2\t0x03B4\n0xA5B3\t0x03B5\n0xA5B4\t0x03B6\n0xA5B5\t0x03B7\n0xA5B6\t0x03B8\n0xA5B7\t0x03B9\n0xA5B8\t0x03BA\n0xA5B9\t0x03BB\n0xA5BA\t0x03BC\n0xA5BB\t0x03BD\n0xA5BC\t0x03BE\n0xA5BD\t0x03BF\n0xA5BE\t0x03C0\n0xA5BF\t0x03C1\n0xA5C0\t0x03C3\n0xA5C1\t0x03C4\n0xA5C2\t0x03C5\n0xA5C3\t0x03C6\n0xA5C4\t0x03C7\n0xA5C5\t0x03C8\n0xA5C6\t0x03C9\n0xA5C7\t0x3105\n0xA5C8\t0x3106\n0xA5C9\t0x3107\n0xA5CA\t0x3108\n0xA5CB\t0x3109\n0xA5CC\t0x310A\n0xA5CD\t0x310B\n0xA5CE\t0x310C\n0xA5CF\t0x310D\n0xA5D0\t0x310E\n0xA5D1\t0x310F\n0xA5D2\t0x3110\n0xA5D3\t0x3111\n0xA5D4\t0x3112\n0xA5D5\t0x3113\n0xA5D6\t0x3114\n0xA5D7\t0x3115\n0xA5D8\t0x3116\n0xA5D9\t0x3117\n0xA5DA\t0x3118\n0xA5DB\t0x3119\n0xA5DC\t0x311A\n0xA5DD\t0x311B\n0xA5DE\t0x311C\n0xA5DF\t0x311D\n0xA5E0\t0x311E\n0xA5E1\t0x311F\n0xA5E2\t0x3120\n0xA5E3\t0x3121\n0xA5E4\t0x3122\n0xA5E5\t0x3123\n0xA5E6\t0x3124\n0xA5E7\t0x3125\n0xA5E8\t0x3126\n0xA5E9\t0x3127\n0xA5EA\t0x3128\n0xA5EB\t0x3129\n0xA5EC\t0x02D9\n0xA5ED\t0x02C9\n0xA5EE\t0x02CA\n0xA5EF\t0x02C7\n0xA5F0\t0x02CB\n0xA621\t0x5768\n0xA622\t0x577D\n0xA623\t0x590C\n0xA624\t0x5945\n0xA625\t0x59B5\n0xA626\t0x59BA\n0xA627\t0x59CF\n0xA628\t0x59CE\n0xA629\t0x59B2\n0xA62A\t0x59CC\n0xA62B\t0x59C1\n0xA62C\t0x59B6\n0xA62D\t0x59BC\n0xA62E\t0x59C3\n0xA62F\t0x59D6\n0xA630\t0x59B1\n0xA631\t0x59BD\n0xA632\t0x59C0\n0xA633\t0x59C8\n0xA634\t0x59B4\n0xA635\t0x59C7\n0xA636\t0x5B62\n0xA637\t0x5B65\n0xA638\t0x5B93\n0xA639\t0x5B95\n0xA63A\t0x5C44\n0xA63B\t0x5C47\n0xA63C\t0x5CAE\n0xA63D\t0x5CA4\n0xA63E\t0x5CA0\n0xA63F\t0x5CB5\n0xA640\t0x5CAF\n0xA641\t0x5CA8\n0xA642\t0x5CAC\n0xA643\t0x5C9F\n0xA644\t0x5CA3\n0xA645\t0x5CAD\n0xA646\t0x5CA2\n0xA647\t0x5CAA\n0xA648\t0x5CA7\n0xA649\t0x5C9D\n0xA64A\t0x5CA5\n0xA64B\t0x5CB6\n0xA64C\t0x5CB0\n0xA64D\t0x5CA6\n0xA64E\t0x5E17\n0xA64F\t0x5E14\n0xA650\t0x5E19\n0xA651\t0x5F28\n0xA652\t0x5F22\n0xA653\t0x5F23\n0xA654\t0x5F24\n0xA655\t0x5F54\n0xA656\t0x5F82\n0xA657\t0x5F7E\n0xA658\t0x5F7D\n0xA659\t0x5FDE\n0xA65A\t0x5FE5\n0xA65B\t0x602D\n0xA65C\t0x6026\n0xA65D\t0x6019\n0xA65E\t0x6032\n0xA65F\t0x600B\n0xA660\t0x6034\n0xA661\t0x600A\n0xA662\t0x6017\n0xA663\t0x6033\n0xA664\t0x601A\n0xA665\t0x601E\n0xA666\t0x602C\n0xA667\t0x6022\n0xA668\t0x600D\n0xA669\t0x6010\n0xA66A\t0x602E\n0xA66B\t0x6013\n0xA66C\t0x6011\n0xA66D\t0x600C\n0xA66E\t0x6009\n0xA66F\t0x601C\n0xA670\t0x6214\n0xA671\t0x623D\n0xA672\t0x62AD\n0xA673\t0x62B4\n0xA674\t0x62D1\n0xA675\t0x62BE\n0xA676\t0x62AA\n0xA677\t0x62B6\n0xA678\t0x62CA\n0xA679\t0x62AE\n0xA67A\t0x62B3\n0xA67B\t0x62AF\n0xA67C\t0x62BB\n0xA67D\t0x62A9\n0xA67E\t0x62B0\n0xA6A1\t0x2460\n0xA6A2\t0x2461\n0xA6A3\t0x2462\n0xA6A4\t0x2463\n0xA6A5\t0x2464\n0xA6A6\t0x2465\n0xA6A7\t0x2466\n0xA6A8\t0x2467\n0xA6A9\t0x2468\n0xA6AA\t0x2469\n0xA6AB\t0x2474\n0xA6AC\t0x2475\n0xA6AD\t0x2476\n0xA6AE\t0x2477\n0xA6AF\t0x2478\n0xA6B0\t0x2479\n0xA6B1\t0x247A\n0xA6B2\t0x247B\n0xA6B3\t0x247C\n0xA6B4\t0x247D\n0xA6B5\t0x2170\n0xA6B6\t0x2171\n0xA6B7\t0x2172\n0xA6B8\t0x2173\n0xA6B9\t0x2174\n0xA6BA\t0x2175\n0xA6BB\t0x2176\n0xA6BC\t0x2177\n0xA6BD\t0x2178\n0xA6BE\t0x2179\n0xA721\t0x62B8\n0xA722\t0x653D\n0xA723\t0x65A8\n0xA724\t0x65BB\n0xA725\t0x6609\n0xA726\t0x65FC\n0xA727\t0x6604\n0xA728\t0x6612\n0xA729\t0x6608\n0xA72A\t0x65FB\n0xA72B\t0x6603\n0xA72C\t0x660B\n0xA72D\t0x660D\n0xA72E\t0x6605\n0xA72F\t0x65FD\n0xA730\t0x6611\n0xA731\t0x6610\n0xA732\t0x66F6\n0xA733\t0x670A\n0xA734\t0x6785\n0xA735\t0x676C\n0xA736\t0x678E\n0xA737\t0x6792\n0xA738\t0x6776\n0xA739\t0x677B\n0xA73A\t0x6798\n0xA73B\t0x6786\n0xA73C\t0x6784\n0xA73D\t0x6774\n0xA73E\t0x678D\n0xA73F\t0x678C\n0xA740\t0x677A\n0xA741\t0x679F\n0xA742\t0x6791\n0xA743\t0x6799\n0xA744\t0x6783\n0xA745\t0x677D\n0xA746\t0x6781\n0xA747\t0x6778\n0xA748\t0x6779\n0xA749\t0x6794\n0xA74A\t0x6B25\n0xA74B\t0x6B80\n0xA74C\t0x6B7E\n0xA74D\t0x6BDE\n0xA74E\t0x6C1D\n0xA74F\t0x6C93\n0xA750\t0x6CEC\n0xA751\t0x6CEB\n0xA752\t0x6CEE\n0xA753\t0x6CD9\n0xA754\t0x6CB6\n0xA755\t0x6CD4\n0xA756\t0x6CAD\n0xA757\t0x6CE7\n0xA758\t0x6CB7\n0xA759\t0x6CD0\n0xA75A\t0x6CC2\n0xA75B\t0x6CBA\n0xA75C\t0x6CC3\n0xA75D\t0x6CC6\n0xA75E\t0x6CED\n0xA75F\t0x6CF2\n0xA760\t0x6CD2\n0xA761\t0x6CDD\n0xA762\t0x6CB4\n0xA763\t0x6C8A\n0xA764\t0x6C9D\n0xA765\t0x6C80\n0xA766\t0x6CDE\n0xA767\t0x6CC0\n0xA768\t0x6D30\n0xA769\t0x6CCD\n0xA76A\t0x6CC7\n0xA76B\t0x6CB0\n0xA76C\t0x6CF9\n0xA76D\t0x6CCF\n0xA76E\t0x6CE9\n0xA76F\t0x6CD1\n0xA770\t0x7094\n0xA771\t0x7098\n0xA772\t0x7085\n0xA773\t0x7093\n0xA774\t0x7086\n0xA775\t0x7084\n0xA776\t0x7091\n0xA777\t0x7096\n0xA778\t0x7082\n0xA779\t0x709A\n0xA77A\t0x7083\n0xA77B\t0x726A\n0xA77C\t0x72D6\n0xA77D\t0x72CB\n0xA77E\t0x72D8\n0xA7A8\t0x4EA0\n0xA7AF\t0x51AB\n0xA7B4\t0x52F9\n0xA821\t0x72C9\n0xA822\t0x72DC\n0xA823\t0x72D2\n0xA824\t0x72D4\n0xA825\t0x72DA\n0xA826\t0x72CC\n0xA827\t0x72D1\n0xA828\t0x73A4\n0xA829\t0x73A1\n0xA82A\t0x73AD\n0xA82B\t0x73A6\n0xA82C\t0x73A2\n0xA82D\t0x73A0\n0xA82E\t0x73AC\n0xA82F\t0x739D\n0xA830\t0x74DD\n0xA831\t0x74E8\n0xA832\t0x753F\n0xA833\t0x7540\n0xA834\t0x753E\n0xA835\t0x758C\n0xA836\t0x7598\n0xA837\t0x76AF\n0xA838\t0x76F3\n0xA839\t0x76F1\n0xA83A\t0x76F0\n0xA83B\t0x76F5\n0xA83C\t0x77F8\n0xA83D\t0x77FC\n0xA83E\t0x77F9\n0xA83F\t0x77FB\n0xA840\t0x77FA\n0xA841\t0x77F7\n0xA842\t0x7942\n0xA843\t0x793F\n0xA844\t0x79C5\n0xA845\t0x7A78\n0xA846\t0x7A7B\n0xA847\t0x7AFB\n0xA848\t0x7C75\n0xA849\t0x7CFD\n0xA84A\t0x8035\n0xA84B\t0x808F\n0xA84C\t0x80AE\n0xA84D\t0x80A3\n0xA84E\t0x80B8\n0xA84F\t0x80B5\n0xA850\t0x80AD\n0xA851\t0x8220\n0xA852\t0x82A0\n0xA853\t0x82C0\n0xA854\t0x82AB\n0xA855\t0x829A\n0xA856\t0x8298\n0xA857\t0x829B\n0xA858\t0x82B5\n0xA859\t0x82A7\n0xA85A\t0x82AE\n0xA85B\t0x82BC\n0xA85C\t0x829E\n0xA85D\t0x82BA\n0xA85E\t0x82B4\n0xA85F\t0x82A8\n0xA860\t0x82A1\n0xA861\t0x82A9\n0xA862\t0x82C2\n0xA863\t0x82A4\n0xA864\t0x82C3\n0xA865\t0x82B6\n0xA866\t0x82A2\n0xA867\t0x8670\n0xA868\t0x866F\n0xA869\t0x866D\n0xA86A\t0x866E\n0xA86B\t0x8C56\n0xA86C\t0x8FD2\n0xA86D\t0x8FCB\n0xA86E\t0x8FD3\n0xA86F\t0x8FCD\n0xA870\t0x8FD6\n0xA871\t0x8FD5\n0xA872\t0x8FD7\n0xA873\t0x90B2\n0xA874\t0x90B4\n0xA875\t0x90AF\n0xA876\t0x90B3\n0xA877\t0x90B0\n0xA878\t0x9639\n0xA879\t0x963D\n0xA87A\t0x963C\n0xA87B\t0x963A\n0xA87C\t0x9643\n0xA87D\t0x4FCD\n0xA87E\t0x4FC5\n0xA921\t0x4FD3\n0xA922\t0x4FB2\n0xA923\t0x4FC9\n0xA924\t0x4FCB\n0xA925\t0x4FC1\n0xA926\t0x4FD4\n0xA927\t0x4FDC\n0xA928\t0x4FD9\n0xA929\t0x4FBB\n0xA92A\t0x4FB3\n0xA92B\t0x4FDB\n0xA92C\t0x4FC7\n0xA92D\t0x4FD6\n0xA92E\t0x4FBA\n0xA92F\t0x4FC0\n0xA930\t0x4FB9\n0xA931\t0x4FEC\n0xA932\t0x5244\n0xA933\t0x5249\n0xA934\t0x52C0\n0xA935\t0x52C2\n0xA936\t0x533D\n0xA937\t0x537C\n0xA938\t0x5397\n0xA939\t0x5396\n0xA93A\t0x5399\n0xA93B\t0x5398\n0xA93C\t0x54BA\n0xA93D\t0x54A1\n0xA93E\t0x54AD\n0xA93F\t0x54A5\n0xA940\t0x54CF\n0xA941\t0x54C3\n0xA942\t0x830D\n0xA943\t0x54B7\n0xA944\t0x54AE\n0xA945\t0x54D6\n0xA946\t0x54B6\n0xA947\t0x54C5\n0xA948\t0x54C6\n0xA949\t0x54A0\n0xA94A\t0x5470\n0xA94B\t0x54BC\n0xA94C\t0x54A2\n0xA94D\t0x54BE\n0xA94E\t0x5472\n0xA94F\t0x54DE\n0xA950\t0x54B0\n0xA951\t0x57B5\n0xA952\t0x579E\n0xA953\t0x579F\n0xA954\t0x57A4\n0xA955\t0x578C\n0xA956\t0x5797\n0xA957\t0x579D\n0xA958\t0x579B\n0xA959\t0x5794\n0xA95A\t0x5798\n0xA95B\t0x578F\n0xA95C\t0x5799\n0xA95D\t0x57A5\n0xA95E\t0x579A\n0xA95F\t0x5795\n0xA960\t0x58F4\n0xA961\t0x590D\n0xA962\t0x5953\n0xA963\t0x59E1\n0xA964\t0x59DE\n0xA965\t0x59EE\n0xA966\t0x5A00\n0xA967\t0x59F1\n0xA968\t0x59DD\n0xA969\t0x59FA\n0xA96A\t0x59FD\n0xA96B\t0x59FC\n0xA96C\t0x59F6\n0xA96D\t0x59E4\n0xA96E\t0x59F2\n0xA96F\t0x59F7\n0xA970\t0x59DB\n0xA971\t0x59E9\n0xA972\t0x59F3\n0xA973\t0x59F5\n0xA974\t0x59E0\n0xA975\t0x59FE\n0xA976\t0x59F4\n0xA977\t0x59ED\n0xA978\t0x5BA8\n0xA979\t0x5C4C\n0xA97A\t0x5CD0\n0xA97B\t0x5CD8\n0xA97C\t0x5CCC\n0xA97D\t0x5CD7\n0xA97E\t0x5CCB\n0xAA21\t0x5CDB\n0xAA22\t0x5CDE\n0xAA23\t0x5CDA\n0xAA24\t0x5CC9\n0xAA25\t0x5CC7\n0xAA26\t0x5CCA\n0xAA27\t0x5CD6\n0xAA28\t0x5CD3\n0xAA29\t0x5CD4\n0xAA2A\t0x5CCF\n0xAA2B\t0x5CC8\n0xAA2C\t0x5CC6\n0xAA2D\t0x5CCE\n0xAA2E\t0x5CDF\n0xAA2F\t0x5CF8\n0xAA30\t0x5DF9\n0xAA31\t0x5E21\n0xAA32\t0x5E22\n0xAA33\t0x5E23\n0xAA34\t0x5E20\n0xAA35\t0x5E24\n0xAA36\t0x5EB0\n0xAA37\t0x5EA4\n0xAA38\t0x5EA2\n0xAA39\t0x5E9B\n0xAA3A\t0x5EA3\n0xAA3B\t0x5EA5\n0xAA3C\t0x5F07\n0xAA3D\t0x5F2E\n0xAA3E\t0x5F56\n0xAA3F\t0x5F86\n0xAA40\t0x6037\n0xAA41\t0x6039\n0xAA42\t0x6054\n0xAA43\t0x6072\n0xAA44\t0x605E\n0xAA45\t0x6045\n0xAA46\t0x6053\n0xAA47\t0x6047\n0xAA48\t0x6049\n0xAA49\t0x605B\n0xAA4A\t0x604C\n0xAA4B\t0x6040\n0xAA4C\t0x6042\n0xAA4D\t0x605F\n0xAA4E\t0x6024\n0xAA4F\t0x6044\n0xAA50\t0x6058\n0xAA51\t0x6066\n0xAA52\t0x606E\n0xAA53\t0x6242\n0xAA54\t0x6243\n0xAA55\t0x62CF\n0xAA56\t0x630D\n0xAA57\t0x630B\n0xAA58\t0x62F5\n0xAA59\t0x630E\n0xAA5A\t0x6303\n0xAA5B\t0x62EB\n0xAA5C\t0x62F9\n0xAA5D\t0x630F\n0xAA5E\t0x630C\n0xAA5F\t0x62F8\n0xAA60\t0x62F6\n0xAA61\t0x6300\n0xAA62\t0x6313\n0xAA63\t0x6314\n0xAA64\t0x62FA\n0xAA65\t0x6315\n0xAA66\t0x62FB\n0xAA67\t0x62F0\n0xAA68\t0x6541\n0xAA69\t0x6543\n0xAA6A\t0x65AA\n0xAA6B\t0x65BF\n0xAA6C\t0x6636\n0xAA6D\t0x6621\n0xAA6E\t0x6632\n0xAA6F\t0x6635\n0xAA70\t0x661C\n0xAA71\t0x6626\n0xAA72\t0x6622\n0xAA73\t0x6633\n0xAA74\t0x662B\n0xAA75\t0x663A\n0xAA76\t0x661D\n0xAA77\t0x6634\n0xAA78\t0x6639\n0xAA79\t0x662E\n0xAA7A\t0x670F\n0xAA7B\t0x6710\n0xAA7C\t0x67C1\n0xAA7D\t0x67F2\n0xAA7E\t0x67C8\n0xAB21\t0x67BA\n0xAB22\t0x67DC\n0xAB23\t0x67BB\n0xAB24\t0x67F8\n0xAB25\t0x67D8\n0xAB26\t0x67C0\n0xAB27\t0x67B7\n0xAB28\t0x67C5\n0xAB29\t0x67EB\n0xAB2A\t0x67E4\n0xAB2B\t0x67DF\n0xAB2C\t0x67B5\n0xAB2D\t0x67CD\n0xAB2E\t0x67B3\n0xAB2F\t0x67F7\n0xAB30\t0x67F6\n0xAB31\t0x67EE\n0xAB32\t0x67E3\n0xAB33\t0x67C2\n0xAB34\t0x67B9\n0xAB35\t0x67CE\n0xAB36\t0x67E7\n0xAB37\t0x67F0\n0xAB38\t0x67B2\n0xAB39\t0x67FC\n0xAB3A\t0x67C6\n0xAB3B\t0x67ED\n0xAB3C\t0x67CC\n0xAB3D\t0x67AE\n0xAB3E\t0x67E6\n0xAB3F\t0x67DB\n0xAB40\t0x67FA\n0xAB41\t0x67C9\n0xAB42\t0x67CA\n0xAB43\t0x67C3\n0xAB44\t0x67EA\n0xAB45\t0x67CB\n0xAB46\t0x6B28\n0xAB47\t0x6B82\n0xAB48\t0x6B84\n0xAB49\t0x6BB6\n0xAB4A\t0x6BD6\n0xAB4B\t0x6BD8\n0xAB4C\t0x6BE0\n0xAB4D\t0x6C20\n0xAB4E\t0x6C21\n0xAB4F\t0x6D28\n0xAB50\t0x6D34\n0xAB51\t0x6D2D\n0xAB52\t0x6D1F\n0xAB53\t0x6D3C\n0xAB54\t0x6D3F\n0xAB55\t0x6D12\n0xAB56\t0x6D0A\n0xAB57\t0x6CDA\n0xAB58\t0x6D33\n0xAB59\t0x6D04\n0xAB5A\t0x6D19\n0xAB5B\t0x6D3A\n0xAB5C\t0x6D1A\n0xAB5D\t0x6D11\n0xAB5E\t0x6D00\n0xAB5F\t0x6D1D\n0xAB60\t0x6D42\n0xAB61\t0x6D01\n0xAB62\t0x6D18\n0xAB63\t0x6D37\n0xAB64\t0x6D03\n0xAB65\t0x6D0F\n0xAB66\t0x6D40\n0xAB67\t0x6D07\n0xAB68\t0x6D20\n0xAB69\t0x6D2C\n0xAB6A\t0x6D08\n0xAB6B\t0x6D22\n0xAB6C\t0x6D09\n0xAB6D\t0x6D10\n0xAB6E\t0x70B7\n0xAB6F\t0x709F\n0xAB70\t0x70BE\n0xAB71\t0x70B1\n0xAB72\t0x70B0\n0xAB73\t0x70A1\n0xAB74\t0x70B4\n0xAB75\t0x70B5\n0xAB76\t0x70A9\n0xAB77\t0x7241\n0xAB78\t0x7249\n0xAB79\t0x724A\n0xAB7A\t0x726C\n0xAB7B\t0x7270\n0xAB7C\t0x7273\n0xAB7D\t0x726E\n0xAB7E\t0x72CA\n0xAC21\t0x72E4\n0xAC22\t0x72E8\n0xAC23\t0x72EB\n0xAC24\t0x72DF\n0xAC25\t0x72EA\n0xAC26\t0x72E6\n0xAC27\t0x72E3\n0xAC28\t0x7385\n0xAC29\t0x73CC\n0xAC2A\t0x73C2\n0xAC2B\t0x73C8\n0xAC2C\t0x73C5\n0xAC2D\t0x73B9\n0xAC2E\t0x73B6\n0xAC2F\t0x73B5\n0xAC30\t0x73B4\n0xAC31\t0x73EB\n0xAC32\t0x73BF\n0xAC33\t0x73C7\n0xAC34\t0x73BE\n0xAC35\t0x73C3\n0xAC36\t0x73C6\n0xAC37\t0x73B8\n0xAC38\t0x73CB\n0xAC39\t0x74EC\n0xAC3A\t0x74EE\n0xAC3B\t0x752E\n0xAC3C\t0x7547\n0xAC3D\t0x7548\n0xAC3E\t0x75A7\n0xAC3F\t0x75AA\n0xAC40\t0x7679\n0xAC41\t0x76C4\n0xAC42\t0x7708\n0xAC43\t0x7703\n0xAC44\t0x7704\n0xAC45\t0x7705\n0xAC46\t0x770A\n0xAC47\t0x76F7\n0xAC48\t0x76FB\n0xAC49\t0x76FA\n0xAC4A\t0x77E7\n0xAC4B\t0x77E8\n0xAC4C\t0x7806\n0xAC4D\t0x7811\n0xAC4E\t0x7812\n0xAC4F\t0x7805\n0xAC50\t0x7810\n0xAC51\t0x780F\n0xAC52\t0x780E\n0xAC53\t0x7809\n0xAC54\t0x7803\n0xAC55\t0x7813\n0xAC56\t0x794A\n0xAC57\t0x794C\n0xAC58\t0x794B\n0xAC59\t0x7945\n0xAC5A\t0x7944\n0xAC5B\t0x79D5\n0xAC5C\t0x79CD\n0xAC5D\t0x79CF\n0xAC5E\t0x79D6\n0xAC5F\t0x79CE\n0xAC60\t0x7A80\n0xAC61\t0x7A7E\n0xAC62\t0x7AD1\n0xAC63\t0x7B00\n0xAC64\t0x7B01\n0xAC65\t0x7C7A\n0xAC66\t0x7C78\n0xAC67\t0x7C79\n0xAC68\t0x7C7F\n0xAC69\t0x7C80\n0xAC6A\t0x7C81\n0xAC6B\t0x7D03\n0xAC6C\t0x7D08\n0xAC6D\t0x7D01\n0xAC6E\t0x7F58\n0xAC6F\t0x7F91\n0xAC70\t0x7F8D\n0xAC71\t0x7FBE\n0xAC72\t0x8007\n0xAC73\t0x800E\n0xAC74\t0x800F\n0xAC75\t0x8014\n0xAC76\t0x8037\n0xAC77\t0x80D8\n0xAC78\t0x80C7\n0xAC79\t0x80E0\n0xAC7A\t0x80D1\n0xAC7B\t0x80C8\n0xAC7C\t0x80C2\n0xAC7D\t0x80D0\n0xAC7E\t0x80C5\n0xAD21\t0x80E3\n0xAD22\t0x80D9\n0xAD23\t0x80DC\n0xAD24\t0x80CA\n0xAD25\t0x80D5\n0xAD26\t0x80C9\n0xAD27\t0x80CF\n0xAD28\t0x80D7\n0xAD29\t0x80E6\n0xAD2A\t0x80CD\n0xAD2B\t0x81FF\n0xAD2C\t0x8221\n0xAD2D\t0x8294\n0xAD2E\t0x82D9\n0xAD2F\t0x82FE\n0xAD30\t0x82F9\n0xAD31\t0x8307\n0xAD32\t0x82E8\n0xAD33\t0x8300\n0xAD34\t0x82D5\n0xAD35\t0x833A\n0xAD36\t0x82EB\n0xAD37\t0x82D6\n0xAD38\t0x82F4\n0xAD39\t0x82EC\n0xAD3A\t0x82E1\n0xAD3B\t0x82F2\n0xAD3C\t0x82F5\n0xAD3D\t0x830C\n0xAD3E\t0x82FB\n0xAD3F\t0x82F6\n0xAD40\t0x82F0\n0xAD41\t0x82EA\n0xAD42\t0x82E4\n0xAD43\t0x82E0\n0xAD44\t0x82FA\n0xAD45\t0x82F3\n0xAD46\t0x82ED\n0xAD47\t0x8677\n0xAD48\t0x8674\n0xAD49\t0x867C\n0xAD4A\t0x8673\n0xAD4B\t0x8841\n0xAD4C\t0x884E\n0xAD4D\t0x8867\n0xAD4E\t0x886A\n0xAD4F\t0x8869\n0xAD50\t0x89D3\n0xAD51\t0x8A04\n0xAD52\t0x8A07\n0xAD53\t0x8D72\n0xAD54\t0x8FE3\n0xAD55\t0x8FE1\n0xAD56\t0x8FEE\n0xAD57\t0x8FE0\n0xAD58\t0x90F1\n0xAD59\t0x90BD\n0xAD5A\t0x90BF\n0xAD5B\t0x90D5\n0xAD5C\t0x90C5\n0xAD5D\t0x90BE\n0xAD5E\t0x90C7\n0xAD5F\t0x90CB\n0xAD60\t0x90C8\n0xAD61\t0x91D4\n0xAD62\t0x91D3\n0xAD63\t0x9654\n0xAD64\t0x964F\n0xAD65\t0x9651\n0xAD66\t0x9653\n0xAD67\t0x964A\n0xAD68\t0x964E\n0xAD69\t0x501E\n0xAD6A\t0x5005\n0xAD6B\t0x5007\n0xAD6C\t0x5013\n0xAD6D\t0x5022\n0xAD6E\t0x5030\n0xAD6F\t0x501B\n0xAD70\t0x4FF5\n0xAD71\t0x4FF4\n0xAD72\t0x5033\n0xAD73\t0x5037\n0xAD74\t0x502C\n0xAD75\t0x4FF6\n0xAD76\t0x4FF7\n0xAD77\t0x5017\n0xAD78\t0x501C\n0xAD79\t0x5020\n0xAD7A\t0x5027\n0xAD7B\t0x5035\n0xAD7C\t0x502F\n0xAD7D\t0x5031\n0xAD7E\t0x500E\n0xAE21\t0x515A\n0xAE22\t0x5194\n0xAE23\t0x5193\n0xAE24\t0x51CA\n0xAE25\t0x51C4\n0xAE26\t0x51C5\n0xAE27\t0x51C8\n0xAE28\t0x51CE\n0xAE29\t0x5261\n0xAE2A\t0x525A\n0xAE2B\t0x5252\n0xAE2C\t0x525E\n0xAE2D\t0x525F\n0xAE2E\t0x5255\n0xAE2F\t0x5262\n0xAE30\t0x52CD\n0xAE31\t0x530E\n0xAE32\t0x539E\n0xAE33\t0x5526\n0xAE34\t0x54E2\n0xAE35\t0x5517\n0xAE36\t0x5512\n0xAE37\t0x54E7\n0xAE38\t0x54F3\n0xAE39\t0x54E4\n0xAE3A\t0x551A\n0xAE3B\t0x54FF\n0xAE3C\t0x5504\n0xAE3D\t0x5508\n0xAE3E\t0x54EB\n0xAE3F\t0x5511\n0xAE40\t0x5505\n0xAE41\t0x54F1\n0xAE42\t0x550A\n0xAE43\t0x54FB\n0xAE44\t0x54F7\n0xAE45\t0x54F8\n0xAE46\t0x54E0\n0xAE47\t0x550E\n0xAE48\t0x5503\n0xAE49\t0x550B\n0xAE4A\t0x5701\n0xAE4B\t0x5702\n0xAE4C\t0x57CC\n0xAE4D\t0x5832\n0xAE4E\t0x57D5\n0xAE4F\t0x57D2\n0xAE50\t0x57BA\n0xAE51\t0x57C6\n0xAE52\t0x57BD\n0xAE53\t0x57BC\n0xAE54\t0x57B8\n0xAE55\t0x57B6\n0xAE56\t0x57BF\n0xAE57\t0x57C7\n0xAE58\t0x57D0\n0xAE59\t0x57B9\n0xAE5A\t0x57C1\n0xAE5B\t0x590E\n0xAE5C\t0x594A\n0xAE5D\t0x5A19\n0xAE5E\t0x5A16\n0xAE5F\t0x5A2D\n0xAE60\t0x5A2E\n0xAE61\t0x5A15\n0xAE62\t0x5A0F\n0xAE63\t0x5A17\n0xAE64\t0x5A0A\n0xAE65\t0x5A1E\n0xAE66\t0x5A33\n0xAE67\t0x5B6C\n0xAE68\t0x5BA7\n0xAE69\t0x5BAD\n0xAE6A\t0x5BAC\n0xAE6B\t0x5C03\n0xAE6C\t0x5C56\n0xAE6D\t0x5C54\n0xAE6E\t0x5CEC\n0xAE6F\t0x5CFF\n0xAE70\t0x5CEE\n0xAE71\t0x5CF1\n0xAE72\t0x5CF7\n0xAE73\t0x5D00\n0xAE74\t0x5CF9\n0xAE75\t0x5E29\n0xAE76\t0x5E28\n0xAE77\t0x5EA8\n0xAE78\t0x5EAE\n0xAE79\t0x5EAA\n0xAE7A\t0x5EAC\n0xAE7B\t0x5F33\n0xAE7C\t0x5F30\n0xAE7D\t0x5F67\n0xAE7E\t0x605D\n0xAF21\t0x605A\n0xAF22\t0x6067\n0xAF23\t0x6041\n0xAF24\t0x60A2\n0xAF25\t0x6088\n0xAF26\t0x6080\n0xAF27\t0x6092\n0xAF28\t0x6081\n0xAF29\t0x609D\n0xAF2A\t0x6083\n0xAF2B\t0x6095\n0xAF2C\t0x609B\n0xAF2D\t0x6097\n0xAF2E\t0x6087\n0xAF2F\t0x609C\n0xAF30\t0x608E\n0xAF31\t0x6219\n0xAF32\t0x6246\n0xAF33\t0x62F2\n0xAF34\t0x6310\n0xAF35\t0x6356\n0xAF36\t0x632C\n0xAF37\t0x6344\n0xAF38\t0x6345\n0xAF39\t0x6336\n0xAF3A\t0x6343\n0xAF3B\t0x63E4\n0xAF3C\t0x6339\n0xAF3D\t0x634B\n0xAF3E\t0x634A\n0xAF3F\t0x633C\n0xAF40\t0x6329\n0xAF41\t0x6341\n0xAF42\t0x6334\n0xAF43\t0x6358\n0xAF44\t0x6354\n0xAF45\t0x6359\n0xAF46\t0x632D\n0xAF47\t0x6347\n0xAF48\t0x6333\n0xAF49\t0x635A\n0xAF4A\t0x6351\n0xAF4B\t0x6338\n0xAF4C\t0x6357\n0xAF4D\t0x6340\n0xAF4E\t0x6348\n0xAF4F\t0x654A\n0xAF50\t0x6546\n0xAF51\t0x65C6\n0xAF52\t0x65C3\n0xAF53\t0x65C4\n0xAF54\t0x65C2\n0xAF55\t0x664A\n0xAF56\t0x665F\n0xAF57\t0x6647\n0xAF58\t0x6651\n0xAF59\t0x6712\n0xAF5A\t0x6713\n0xAF5B\t0x681F\n0xAF5C\t0x681A\n0xAF5D\t0x6849\n0xAF5E\t0x6832\n0xAF5F\t0x6833\n0xAF60\t0x683B\n0xAF61\t0x684B\n0xAF62\t0x684F\n0xAF63\t0x6816\n0xAF64\t0x6831\n0xAF65\t0x681C\n0xAF66\t0x6835\n0xAF67\t0x682B\n0xAF68\t0x682D\n0xAF69\t0x682F\n0xAF6A\t0x684E\n0xAF6B\t0x6844\n0xAF6C\t0x6834\n0xAF6D\t0x681D\n0xAF6E\t0x6812\n0xAF6F\t0x6814\n0xAF70\t0x6826\n0xAF71\t0x6828\n0xAF72\t0x682E\n0xAF73\t0x684D\n0xAF74\t0x683A\n0xAF75\t0x6825\n0xAF76\t0x6820\n0xAF77\t0x6B2C\n0xAF78\t0x6B2F\n0xAF79\t0x6B2D\n0xAF7A\t0x6B31\n0xAF7B\t0x6B34\n0xAF7C\t0x6B6D\n0xAF7D\t0x8082\n0xAF7E\t0x6B88\n0xB021\t0x6BE6\n0xB022\t0x6BE4\n0xB023\t0x6BE8\n0xB024\t0x6BE3\n0xB025\t0x6BE2\n0xB026\t0x6BE7\n0xB027\t0x6C25\n0xB028\t0x6D7A\n0xB029\t0x6D63\n0xB02A\t0x6D64\n0xB02B\t0x6D76\n0xB02C\t0x6D0D\n0xB02D\t0x6D61\n0xB02E\t0x6D92\n0xB02F\t0x6D58\n0xB030\t0x6D62\n0xB031\t0x6D6D\n0xB032\t0x6D6F\n0xB033\t0x6D91\n0xB034\t0x6D8D\n0xB035\t0x6DEF\n0xB036\t0x6D7F\n0xB037\t0x6D86\n0xB038\t0x6D5E\n0xB039\t0x6D67\n0xB03A\t0x6D60\n0xB03B\t0x6D97\n0xB03C\t0x6D70\n0xB03D\t0x6D7C\n0xB03E\t0x6D5F\n0xB03F\t0x6D82\n0xB040\t0x6D98\n0xB041\t0x6D2F\n0xB042\t0x6D68\n0xB043\t0x6D8B\n0xB044\t0x6D7E\n0xB045\t0x6D80\n0xB046\t0x6D84\n0xB047\t0x6D16\n0xB048\t0x6D83\n0xB049\t0x6D7B\n0xB04A\t0x6D7D\n0xB04B\t0x6D75\n0xB04C\t0x6D90\n0xB04D\t0x70DC\n0xB04E\t0x70D3\n0xB04F\t0x70D1\n0xB050\t0x70DD\n0xB051\t0x70CB\n0xB052\t0x7F39\n0xB053\t0x70E2\n0xB054\t0x70D7\n0xB055\t0x70D2\n0xB056\t0x70DE\n0xB057\t0x70E0\n0xB058\t0x70D4\n0xB059\t0x70CD\n0xB05A\t0x70C5\n0xB05B\t0x70C6\n0xB05C\t0x70C7\n0xB05D\t0x70DA\n0xB05E\t0x70CE\n0xB05F\t0x70E1\n0xB060\t0x7242\n0xB061\t0x7278\n0xB062\t0x7277\n0xB063\t0x7276\n0xB064\t0x7300\n0xB065\t0x72FA\n0xB066\t0x72F4\n0xB067\t0x72FE\n0xB068\t0x72F6\n0xB069\t0x72F3\n0xB06A\t0x72FB\n0xB06B\t0x7301\n0xB06C\t0x73D3\n0xB06D\t0x73D9\n0xB06E\t0x73E5\n0xB06F\t0x73D6\n0xB070\t0x73BC\n0xB071\t0x73E7\n0xB072\t0x73E3\n0xB073\t0x73E9\n0xB074\t0x73DC\n0xB075\t0x73D2\n0xB076\t0x73DB\n0xB077\t0x73D4\n0xB078\t0x73DD\n0xB079\t0x73DA\n0xB07A\t0x73D7\n0xB07B\t0x73D8\n0xB07C\t0x73E8\n0xB07D\t0x74DE\n0xB07E\t0x74DF\n0xB121\t0x74F4\n0xB122\t0x74F5\n0xB123\t0x7521\n0xB124\t0x755B\n0xB125\t0x755F\n0xB126\t0x75B0\n0xB127\t0x75C1\n0xB128\t0x75BB\n0xB129\t0x75C4\n0xB12A\t0x75C0\n0xB12B\t0x75BF\n0xB12C\t0x75B6\n0xB12D\t0x75BA\n0xB12E\t0x768A\n0xB12F\t0x76C9\n0xB130\t0x771D\n0xB131\t0x771B\n0xB132\t0x7710\n0xB133\t0x7713\n0xB134\t0x7712\n0xB135\t0x7723\n0xB136\t0x7711\n0xB137\t0x7715\n0xB138\t0x7719\n0xB139\t0x771A\n0xB13A\t0x7722\n0xB13B\t0x7727\n0xB13C\t0x7823\n0xB13D\t0x782C\n0xB13E\t0x7822\n0xB13F\t0x7835\n0xB140\t0x782F\n0xB141\t0x7828\n0xB142\t0x782E\n0xB143\t0x782B\n0xB144\t0x7821\n0xB145\t0x7829\n0xB146\t0x7833\n0xB147\t0x782A\n0xB148\t0x7831\n0xB149\t0x7954\n0xB14A\t0x795B\n0xB14B\t0x794F\n0xB14C\t0x795C\n0xB14D\t0x7953\n0xB14E\t0x7952\n0xB14F\t0x7951\n0xB150\t0x79EB\n0xB151\t0x79EC\n0xB152\t0x79E0\n0xB153\t0x79EE\n0xB154\t0x79ED\n0xB155\t0x79EA\n0xB156\t0x79DC\n0xB157\t0x79DE\n0xB158\t0x79DD\n0xB159\t0x7A86\n0xB15A\t0x7A89\n0xB15B\t0x7A85\n0xB15C\t0x7A8B\n0xB15D\t0x7A8C\n0xB15E\t0x7A8A\n0xB15F\t0x7A87\n0xB160\t0x7AD8\n0xB161\t0x7B10\n0xB162\t0x7B04\n0xB163\t0x7B13\n0xB164\t0x7B05\n0xB165\t0x7B0F\n0xB166\t0x7B08\n0xB167\t0x7B0A\n0xB168\t0x7B0E\n0xB169\t0x7B09\n0xB16A\t0x7B12\n0xB16B\t0x7C84\n0xB16C\t0x7C91\n0xB16D\t0x7C8A\n0xB16E\t0x7C8C\n0xB16F\t0x7C88\n0xB170\t0x7C8D\n0xB171\t0x7C85\n0xB172\t0x7D1E\n0xB173\t0x7D1D\n0xB174\t0x7D11\n0xB175\t0x7D0E\n0xB176\t0x7D18\n0xB177\t0x7D16\n0xB178\t0x7D13\n0xB179\t0x7D1F\n0xB17A\t0x7D12\n0xB17B\t0x7D0F\n0xB17C\t0x7D0C\n0xB17D\t0x7F5C\n0xB17E\t0x7F61\n0xB221\t0x7F5E\n0xB222\t0x7F60\n0xB223\t0x7F5D\n0xB224\t0x7F5B\n0xB225\t0x7F96\n0xB226\t0x7F92\n0xB227\t0x7FC3\n0xB228\t0x7FC2\n0xB229\t0x7FC0\n0xB22A\t0x8016\n0xB22B\t0x803E\n0xB22C\t0x8039\n0xB22D\t0x80FA\n0xB22E\t0x80F2\n0xB22F\t0x80F9\n0xB230\t0x80F5\n0xB231\t0x8101\n0xB232\t0x80FB\n0xB233\t0x8100\n0xB234\t0x8201\n0xB235\t0x822F\n0xB236\t0x8225\n0xB237\t0x8333\n0xB238\t0x832D\n0xB239\t0x8344\n0xB23A\t0x8319\n0xB23B\t0x8351\n0xB23C\t0x8325\n0xB23D\t0x8356\n0xB23E\t0x833F\n0xB23F\t0x8341\n0xB240\t0x8326\n0xB241\t0x831C\n0xB242\t0x8322\n0xB243\t0x8342\n0xB244\t0x834E\n0xB245\t0x831B\n0xB246\t0x832A\n0xB247\t0x8308\n0xB248\t0x833C\n0xB249\t0x834D\n0xB24A\t0x8316\n0xB24B\t0x8324\n0xB24C\t0x8320\n0xB24D\t0x8337\n0xB24E\t0x832F\n0xB24F\t0x8329\n0xB250\t0x8347\n0xB251\t0x8345\n0xB252\t0x834C\n0xB253\t0x8353\n0xB254\t0x831E\n0xB255\t0x832C\n0xB256\t0x834B\n0xB257\t0x8327\n0xB258\t0x8348\n0xB259\t0x8653\n0xB25A\t0x8652\n0xB25B\t0x86A2\n0xB25C\t0x86A8\n0xB25D\t0x8696\n0xB25E\t0x868D\n0xB25F\t0x8691\n0xB260\t0x869E\n0xB261\t0x8687\n0xB262\t0x8697\n0xB263\t0x8686\n0xB264\t0x868B\n0xB265\t0x869A\n0xB266\t0x8685\n0xB267\t0x86A5\n0xB268\t0x8699\n0xB269\t0x86A1\n0xB26A\t0x86A7\n0xB26B\t0x8695\n0xB26C\t0x8698\n0xB26D\t0x868E\n0xB26E\t0x869D\n0xB26F\t0x8690\n0xB270\t0x8694\n0xB271\t0x8843\n0xB272\t0x8844\n0xB273\t0x886D\n0xB274\t0x8875\n0xB275\t0x8876\n0xB276\t0x8872\n0xB277\t0x8880\n0xB278\t0x8871\n0xB279\t0x887F\n0xB27A\t0x886F\n0xB27B\t0x8883\n0xB27C\t0x887E\n0xB27D\t0x8874\n0xB27E\t0x887C\n0xB321\t0x8A12\n0xB322\t0x8C47\n0xB323\t0x8C57\n0xB324\t0x8C7B\n0xB325\t0x8CA4\n0xB326\t0x8CA3\n0xB327\t0x8D76\n0xB328\t0x8D78\n0xB329\t0x8DB5\n0xB32A\t0x8DB7\n0xB32B\t0x8DB6\n0xB32C\t0x8ED1\n0xB32D\t0x8ED3\n0xB32E\t0x8FFE\n0xB32F\t0x8FF5\n0xB330\t0x9002\n0xB331\t0x8FFF\n0xB332\t0x8FFB\n0xB333\t0x9004\n0xB334\t0x8FFC\n0xB335\t0x8FF6\n0xB336\t0x90D6\n0xB337\t0x90E0\n0xB338\t0x90D9\n0xB339\t0x90DA\n0xB33A\t0x90E3\n0xB33B\t0x90DF\n0xB33C\t0x90E5\n0xB33D\t0x90D8\n0xB33E\t0x90DB\n0xB33F\t0x90D7\n0xB340\t0x90DC\n0xB341\t0x90E4\n0xB342\t0x9150\n0xB343\t0x914E\n0xB344\t0x914F\n0xB345\t0x91D5\n0xB346\t0x91E2\n0xB347\t0x91DA\n0xB348\t0x965C\n0xB349\t0x965F\n0xB34A\t0x96BC\n0xB34B\t0x98E3\n0xB34C\t0x9ADF\n0xB34D\t0x9B2F\n0xB34E\t0x4E7F\n0xB34F\t0x5070\n0xB350\t0x506A\n0xB351\t0x5061\n0xB352\t0x505E\n0xB353\t0x5060\n0xB354\t0x5053\n0xB355\t0x504B\n0xB356\t0x505D\n0xB357\t0x5072\n0xB358\t0x5048\n0xB359\t0x504D\n0xB35A\t0x5041\n0xB35B\t0x505B\n0xB35C\t0x504A\n0xB35D\t0x5062\n0xB35E\t0x5015\n0xB35F\t0x5045\n0xB360\t0x505F\n0xB361\t0x5069\n0xB362\t0x506B\n0xB363\t0x5063\n0xB364\t0x5064\n0xB365\t0x5046\n0xB366\t0x5040\n0xB367\t0x506E\n0xB368\t0x5073\n0xB369\t0x5057\n0xB36A\t0x5051\n0xB36B\t0x51D0\n0xB36C\t0x526B\n0xB36D\t0x526D\n0xB36E\t0x526C\n0xB36F\t0x526E\n0xB370\t0x52D6\n0xB371\t0x52D3\n0xB372\t0x532D\n0xB373\t0x539C\n0xB374\t0x5575\n0xB375\t0x5576\n0xB376\t0x553C\n0xB377\t0x554D\n0xB378\t0x5550\n0xB379\t0x5534\n0xB37A\t0x552A\n0xB37B\t0x5551\n0xB37C\t0x5562\n0xB37D\t0x5536\n0xB37E\t0x5535\n0xB421\t0x5530\n0xB422\t0x5552\n0xB423\t0x5545\n0xB424\t0x550C\n0xB425\t0x5532\n0xB426\t0x5565\n0xB427\t0x554E\n0xB428\t0x5539\n0xB429\t0x5548\n0xB42A\t0x552D\n0xB42B\t0x553B\n0xB42C\t0x5540\n0xB42D\t0x554B\n0xB42E\t0x570A\n0xB42F\t0x5707\n0xB430\t0x57FB\n0xB431\t0x5814\n0xB432\t0x57E2\n0xB433\t0x57F6\n0xB434\t0x57DC\n0xB435\t0x57F4\n0xB436\t0x5800\n0xB437\t0x57ED\n0xB438\t0x57FD\n0xB439\t0x5808\n0xB43A\t0x57F8\n0xB43B\t0x580B\n0xB43C\t0x57F3\n0xB43D\t0x57CF\n0xB43E\t0x5807\n0xB43F\t0x57EE\n0xB440\t0x57E3\n0xB441\t0x57F2\n0xB442\t0x57E5\n0xB443\t0x57EC\n0xB444\t0x57E1\n0xB445\t0x580E\n0xB446\t0x57FC\n0xB447\t0x5810\n0xB448\t0x57E7\n0xB449\t0x5801\n0xB44A\t0x580C\n0xB44B\t0x57F1\n0xB44C\t0x57E9\n0xB44D\t0x57F0\n0xB44E\t0x580D\n0xB44F\t0x5804\n0xB450\t0x595C\n0xB451\t0x5A60\n0xB452\t0x5A58\n0xB453\t0x5A55\n0xB454\t0x5A67\n0xB455\t0x5A5E\n0xB456\t0x5A38\n0xB457\t0x5A35\n0xB458\t0x5A6D\n0xB459\t0x5A50\n0xB45A\t0x5A5F\n0xB45B\t0x5A65\n0xB45C\t0x5A6C\n0xB45D\t0x5A53\n0xB45E\t0x5A64\n0xB45F\t0x5A57\n0xB460\t0x5A43\n0xB461\t0x5A5D\n0xB462\t0x5A52\n0xB463\t0x5A44\n0xB464\t0x5A5B\n0xB465\t0x5A48\n0xB466\t0x5A8E\n0xB467\t0x5A3E\n0xB468\t0x5A4D\n0xB469\t0x5A39\n0xB46A\t0x5A4C\n0xB46B\t0x5A70\n0xB46C\t0x5A69\n0xB46D\t0x5A47\n0xB46E\t0x5A51\n0xB46F\t0x5A56\n0xB470\t0x5A42\n0xB471\t0x5A5C\n0xB472\t0x5B72\n0xB473\t0x5B6E\n0xB474\t0x5BC1\n0xB475\t0x5BC0\n0xB476\t0x5C59\n0xB477\t0x5D1E\n0xB478\t0x5D0B\n0xB479\t0x5D1D\n0xB47A\t0x5D1A\n0xB47B\t0x5D20\n0xB47C\t0x5D0C\n0xB47D\t0x5D28\n0xB47E\t0x5D0D\n0xB521\t0x5D26\n0xB522\t0x5D25\n0xB523\t0x5D0F\n0xB524\t0x5D30\n0xB525\t0x5D12\n0xB526\t0x5D23\n0xB527\t0x5D1F\n0xB528\t0x5D2E\n0xB529\t0x5E3E\n0xB52A\t0x5E34\n0xB52B\t0x5EB1\n0xB52C\t0x5EB4\n0xB52D\t0x5EB9\n0xB52E\t0x5EB2\n0xB52F\t0x5EB3\n0xB530\t0x5F36\n0xB531\t0x5F38\n0xB532\t0x5F9B\n0xB533\t0x5F96\n0xB534\t0x5F9F\n0xB535\t0x608A\n0xB536\t0x6090\n0xB537\t0x6086\n0xB538\t0x60BE\n0xB539\t0x60B0\n0xB53A\t0x60BA\n0xB53B\t0x60D3\n0xB53C\t0x60D4\n0xB53D\t0x60CF\n0xB53E\t0x60E4\n0xB53F\t0x60D9\n0xB540\t0x60DD\n0xB541\t0x60C8\n0xB542\t0x60B1\n0xB543\t0x60DB\n0xB544\t0x60B7\n0xB545\t0x60CA\n0xB546\t0x60BF\n0xB547\t0x60C3\n0xB548\t0x60CD\n0xB549\t0x60C0\n0xB54A\t0x6332\n0xB54B\t0x6365\n0xB54C\t0x638A\n0xB54D\t0x6382\n0xB54E\t0x637D\n0xB54F\t0x63BD\n0xB550\t0x639E\n0xB551\t0x63AD\n0xB552\t0x639D\n0xB553\t0x6397\n0xB554\t0x63AB\n0xB555\t0x638E\n0xB556\t0x636F\n0xB557\t0x6387\n0xB558\t0x6390\n0xB559\t0x636E\n0xB55A\t0x63AF\n0xB55B\t0x6375\n0xB55C\t0x639C\n0xB55D\t0x636D\n0xB55E\t0x63AE\n0xB55F\t0x637C\n0xB560\t0x63A4\n0xB561\t0x633B\n0xB562\t0x639F\n0xB563\t0x6378\n0xB564\t0x6385\n0xB565\t0x6381\n0xB566\t0x6391\n0xB567\t0x638D\n0xB568\t0x6370\n0xB569\t0x6553\n0xB56A\t0x65CD\n0xB56B\t0x6665\n0xB56C\t0x6661\n0xB56D\t0x665B\n0xB56E\t0x6659\n0xB56F\t0x665C\n0xB570\t0x6662\n0xB571\t0x6718\n0xB572\t0x6879\n0xB573\t0x6887\n0xB574\t0x6890\n0xB575\t0x689C\n0xB576\t0x686D\n0xB577\t0x686E\n0xB578\t0x68AE\n0xB579\t0x68AB\n0xB57A\t0x6956\n0xB57B\t0x686F\n0xB57C\t0x68A3\n0xB57D\t0x68AC\n0xB57E\t0x68A9\n0xB621\t0x6875\n0xB622\t0x6874\n0xB623\t0x68B2\n0xB624\t0x688F\n0xB625\t0x6877\n0xB626\t0x6892\n0xB627\t0x687C\n0xB628\t0x686B\n0xB629\t0x6872\n0xB62A\t0x68AA\n0xB62B\t0x6880\n0xB62C\t0x6871\n0xB62D\t0x687E\n0xB62E\t0x689B\n0xB62F\t0x6896\n0xB630\t0x688B\n0xB631\t0x68A0\n0xB632\t0x6889\n0xB633\t0x68A4\n0xB634\t0x6878\n0xB635\t0x687B\n0xB636\t0x6891\n0xB637\t0x688C\n0xB638\t0x688A\n0xB639\t0x687D\n0xB63A\t0x6B36\n0xB63B\t0x6B33\n0xB63C\t0x6B37\n0xB63D\t0x6B38\n0xB63E\t0x6B91\n0xB63F\t0x6B8F\n0xB640\t0x6B8D\n0xB641\t0x6B8E\n0xB642\t0x6B8C\n0xB643\t0x6C2A\n0xB644\t0x6DC0\n0xB645\t0x6DAB\n0xB646\t0x6DB4\n0xB647\t0x6DB3\n0xB648\t0x6E74\n0xB649\t0x6DAC\n0xB64A\t0x6DE9\n0xB64B\t0x6DE2\n0xB64C\t0x6DB7\n0xB64D\t0x6DF6\n0xB64E\t0x6DD4\n0xB64F\t0x6E00\n0xB650\t0x6DC8\n0xB651\t0x6DE0\n0xB652\t0x6DDF\n0xB653\t0x6DD6\n0xB654\t0x6DBE\n0xB655\t0x6DE5\n0xB656\t0x6DDC\n0xB657\t0x6DDD\n0xB658\t0x6DDB\n0xB659\t0x6DF4\n0xB65A\t0x6DCA\n0xB65B\t0x6DBD\n0xB65C\t0x6DED\n0xB65D\t0x6DF0\n0xB65E\t0x6DBA\n0xB65F\t0x6DD5\n0xB660\t0x6DC2\n0xB661\t0x6DCF\n0xB662\t0x6DC9\n0xB663\t0x6DD0\n0xB664\t0x6DF2\n0xB665\t0x6DD3\n0xB666\t0x6DFD\n0xB667\t0x6DD7\n0xB668\t0x6DCD\n0xB669\t0x6DE3\n0xB66A\t0x6DBB\n0xB66B\t0x70FA\n0xB66C\t0x710D\n0xB66D\t0x70F7\n0xB66E\t0x7117\n0xB66F\t0x70F4\n0xB670\t0x710C\n0xB671\t0x70F0\n0xB672\t0x7104\n0xB673\t0x70F3\n0xB674\t0x7110\n0xB675\t0x70FC\n0xB676\t0x70FF\n0xB677\t0x7106\n0xB678\t0x7113\n0xB679\t0x7100\n0xB67A\t0x70F8\n0xB67B\t0x70F6\n0xB67C\t0x710B\n0xB67D\t0x7102\n0xB67E\t0x710E\n0xB721\t0x727E\n0xB722\t0x727B\n0xB723\t0x727C\n0xB724\t0x727F\n0xB725\t0x731D\n0xB726\t0x7317\n0xB727\t0x7307\n0xB728\t0x7311\n0xB729\t0x7318\n0xB72A\t0x730A\n0xB72B\t0x7308\n0xB72C\t0x72FF\n0xB72D\t0x730F\n0xB72E\t0x731E\n0xB72F\t0x7388\n0xB730\t0x73F6\n0xB731\t0x73F8\n0xB732\t0x73F5\n0xB733\t0x7404\n0xB734\t0x7401\n0xB735\t0x73FD\n0xB736\t0x7407\n0xB737\t0x7400\n0xB738\t0x73FA\n0xB739\t0x73FC\n0xB73A\t0x73FF\n0xB73B\t0x740C\n0xB73C\t0x740B\n0xB73D\t0x73F4\n0xB73E\t0x7408\n0xB73F\t0x7564\n0xB740\t0x7563\n0xB741\t0x75CE\n0xB742\t0x75D2\n0xB743\t0x75CF\n0xB744\t0x75CB\n0xB745\t0x75CC\n0xB746\t0x75D1\n0xB747\t0x75D0\n0xB748\t0x768F\n0xB749\t0x7689\n0xB74A\t0x76D3\n0xB74B\t0x7739\n0xB74C\t0x772F\n0xB74D\t0x772D\n0xB74E\t0x7731\n0xB74F\t0x7732\n0xB750\t0x7734\n0xB751\t0x7733\n0xB752\t0x773D\n0xB753\t0x7725\n0xB754\t0x773B\n0xB755\t0x7735\n0xB756\t0x7848\n0xB757\t0x7852\n0xB758\t0x7849\n0xB759\t0x784D\n0xB75A\t0x784A\n0xB75B\t0x784C\n0xB75C\t0x7826\n0xB75D\t0x7845\n0xB75E\t0x7850\n0xB75F\t0x7964\n0xB760\t0x7967\n0xB761\t0x7969\n0xB762\t0x796A\n0xB763\t0x7963\n0xB764\t0x796B\n0xB765\t0x7961\n0xB766\t0x79BB\n0xB767\t0x79FA\n0xB768\t0x79F8\n0xB769\t0x79F6\n0xB76A\t0x79F7\n0xB76B\t0x7A8F\n0xB76C\t0x7A94\n0xB76D\t0x7A90\n0xB76E\t0x7B35\n0xB76F\t0x7B3B\n0xB770\t0x7B34\n0xB771\t0x7B25\n0xB772\t0x7B30\n0xB773\t0x7B22\n0xB774\t0x7B24\n0xB775\t0x7B33\n0xB776\t0x7B18\n0xB777\t0x7B2A\n0xB778\t0x7B1D\n0xB779\t0x7B31\n0xB77A\t0x7B2B\n0xB77B\t0x7B2D\n0xB77C\t0x7B2F\n0xB77D\t0x7B32\n0xB77E\t0x7B38\n0xB821\t0x7B1A\n0xB822\t0x7B23\n0xB823\t0x7C94\n0xB824\t0x7C98\n0xB825\t0x7C96\n0xB826\t0x7CA3\n0xB827\t0x7D35\n0xB828\t0x7D3D\n0xB829\t0x7D38\n0xB82A\t0x7D36\n0xB82B\t0x7D3A\n0xB82C\t0x7D45\n0xB82D\t0x7D2C\n0xB82E\t0x7D29\n0xB82F\t0x7D41\n0xB830\t0x7D47\n0xB831\t0x7D3E\n0xB832\t0x7D3F\n0xB833\t0x7D4A\n0xB834\t0x7D3B\n0xB835\t0x7D28\n0xB836\t0x7F63\n0xB837\t0x7F95\n0xB838\t0x7F9C\n0xB839\t0x7F9D\n0xB83A\t0x7F9B\n0xB83B\t0x7FCA\n0xB83C\t0x7FCB\n0xB83D\t0x7FCD\n0xB83E\t0x7FD0\n0xB83F\t0x7FD1\n0xB840\t0x7FC7\n0xB841\t0x7FCF\n0xB842\t0x7FC9\n0xB843\t0x801F\n0xB844\t0x801E\n0xB845\t0x801B\n0xB846\t0x8047\n0xB847\t0x8043\n0xB848\t0x8048\n0xB849\t0x8118\n0xB84A\t0x8125\n0xB84B\t0x8119\n0xB84C\t0x811B\n0xB84D\t0x812D\n0xB84E\t0x811F\n0xB84F\t0x812C\n0xB850\t0x811E\n0xB851\t0x8121\n0xB852\t0x8115\n0xB853\t0x8127\n0xB854\t0x811D\n0xB855\t0x8122\n0xB856\t0x8211\n0xB857\t0x8238\n0xB858\t0x8233\n0xB859\t0x823A\n0xB85A\t0x8234\n0xB85B\t0x8232\n0xB85C\t0x8274\n0xB85D\t0x8390\n0xB85E\t0x83A3\n0xB85F\t0x83A8\n0xB860\t0x838D\n0xB861\t0x837A\n0xB862\t0x8373\n0xB863\t0x83A4\n0xB864\t0x8374\n0xB865\t0x838F\n0xB866\t0x8381\n0xB867\t0x8395\n0xB868\t0x8399\n0xB869\t0x8375\n0xB86A\t0x8394\n0xB86B\t0x83A9\n0xB86C\t0x837D\n0xB86D\t0x8383\n0xB86E\t0x838C\n0xB86F\t0x839D\n0xB870\t0x839B\n0xB871\t0x83AA\n0xB872\t0x838B\n0xB873\t0x837E\n0xB874\t0x83A5\n0xB875\t0x83AF\n0xB876\t0x8388\n0xB877\t0x8397\n0xB878\t0x83B0\n0xB879\t0x837F\n0xB87A\t0x83A6\n0xB87B\t0x8387\n0xB87C\t0x83AE\n0xB87D\t0x8376\n0xB87E\t0x8659\n0xB921\t0x8656\n0xB922\t0x86BF\n0xB923\t0x86B7\n0xB924\t0x86C2\n0xB925\t0x86C1\n0xB926\t0x86C5\n0xB927\t0x86BA\n0xB928\t0x86B0\n0xB929\t0x86C8\n0xB92A\t0x86B9\n0xB92B\t0x86B3\n0xB92C\t0x86B8\n0xB92D\t0x86CC\n0xB92E\t0x86B4\n0xB92F\t0x86BB\n0xB930\t0x86BC\n0xB931\t0x86C3\n0xB932\t0x86BD\n0xB933\t0x86BE\n0xB934\t0x8852\n0xB935\t0x8889\n0xB936\t0x8895\n0xB937\t0x88A8\n0xB938\t0x88A2\n0xB939\t0x88AA\n0xB93A\t0x889A\n0xB93B\t0x8891\n0xB93C\t0x88A1\n0xB93D\t0x889F\n0xB93E\t0x8898\n0xB93F\t0x88A7\n0xB940\t0x8899\n0xB941\t0x889B\n0xB942\t0x8897\n0xB943\t0x88A4\n0xB944\t0x88AC\n0xB945\t0x888C\n0xB946\t0x8893\n0xB947\t0x888E\n0xB948\t0x8982\n0xB949\t0x89D6\n0xB94A\t0x89D9\n0xB94B\t0x89D5\n0xB94C\t0x8A30\n0xB94D\t0x8A27\n0xB94E\t0x8A2C\n0xB94F\t0x8A1E\n0xB950\t0x8C39\n0xB951\t0x8C3B\n0xB952\t0x8C5C\n0xB953\t0x8C5D\n0xB954\t0x8C7D\n0xB955\t0x8CA5\n0xB956\t0x8D7D\n0xB957\t0x8D7B\n0xB958\t0x8D79\n0xB959\t0x8DBC\n0xB95A\t0x8DC2\n0xB95B\t0x8DB9\n0xB95C\t0x8DBF\n0xB95D\t0x8DC1\n0xB95E\t0x8ED8\n0xB95F\t0x8EDE\n0xB960\t0x8EDD\n0xB961\t0x8EDC\n0xB962\t0x8ED7\n0xB963\t0x8EE0\n0xB964\t0x8EE1\n0xB965\t0x9024\n0xB966\t0x900B\n0xB967\t0x9011\n0xB968\t0x901C\n0xB969\t0x900C\n0xB96A\t0x9021\n0xB96B\t0x90EF\n0xB96C\t0x90EA\n0xB96D\t0x90F0\n0xB96E\t0x90F4\n0xB96F\t0x90F2\n0xB970\t0x90F3\n0xB971\t0x90D4\n0xB972\t0x90EB\n0xB973\t0x90EC\n0xB974\t0x90E9\n0xB975\t0x9156\n0xB976\t0x9158\n0xB977\t0x915A\n0xB978\t0x9153\n0xB979\t0x9155\n0xB97A\t0x91EC\n0xB97B\t0x91F4\n0xB97C\t0x91F1\n0xB97D\t0x91F3\n0xB97E\t0x91F8\n0xBA21\t0x91E4\n0xBA22\t0x91F9\n0xBA23\t0x91EA\n0xBA24\t0x91EB\n0xBA25\t0x91F7\n0xBA26\t0x91E8\n0xBA27\t0x91EE\n0xBA28\t0x957A\n0xBA29\t0x9586\n0xBA2A\t0x9588\n0xBA2B\t0x967C\n0xBA2C\t0x966D\n0xBA2D\t0x966B\n0xBA2E\t0x9671\n0xBA2F\t0x966F\n0xBA30\t0x96BF\n0xBA31\t0x976A\n0xBA32\t0x9804\n0xBA33\t0x98E5\n0xBA34\t0x9997\n0xBA35\t0x509B\n0xBA36\t0x5095\n0xBA37\t0x5094\n0xBA38\t0x509E\n0xBA39\t0x508B\n0xBA3A\t0x50A3\n0xBA3B\t0x5083\n0xBA3C\t0x508C\n0xBA3D\t0x508E\n0xBA3E\t0x509D\n0xBA3F\t0x5068\n0xBA40\t0x509C\n0xBA41\t0x5092\n0xBA42\t0x5082\n0xBA43\t0x5087\n0xBA44\t0x515F\n0xBA45\t0x51D4\n0xBA46\t0x5312\n0xBA47\t0x5311\n0xBA48\t0x53A4\n0xBA49\t0x53A7\n0xBA4A\t0x5591\n0xBA4B\t0x55A8\n0xBA4C\t0x55A5\n0xBA4D\t0x55AD\n0xBA4E\t0x5577\n0xBA4F\t0x5645\n0xBA50\t0x55A2\n0xBA51\t0x5593\n0xBA52\t0x5588\n0xBA53\t0x558F\n0xBA54\t0x55B5\n0xBA55\t0x5581\n0xBA56\t0x55A3\n0xBA57\t0x5592\n0xBA58\t0x55A4\n0xBA59\t0x557D\n0xBA5A\t0x558C\n0xBA5B\t0x55A6\n0xBA5C\t0x557F\n0xBA5D\t0x5595\n0xBA5E\t0x55A1\n0xBA5F\t0x558E\n0xBA60\t0x570C\n0xBA61\t0x5829\n0xBA62\t0x5837\n0xBA63\t0x5819\n0xBA64\t0x581E\n0xBA65\t0x5827\n0xBA66\t0x5823\n0xBA67\t0x5828\n0xBA68\t0x57F5\n0xBA69\t0x5848\n0xBA6A\t0x5825\n0xBA6B\t0x581C\n0xBA6C\t0x581B\n0xBA6D\t0x5833\n0xBA6E\t0x583F\n0xBA6F\t0x5836\n0xBA70\t0x582E\n0xBA71\t0x5839\n0xBA72\t0x5838\n0xBA73\t0x582D\n0xBA74\t0x582C\n0xBA75\t0x583B\n0xBA76\t0x5961\n0xBA77\t0x5AAF\n0xBA78\t0x5A94\n0xBA79\t0x5A9F\n0xBA7A\t0x5A7A\n0xBA7B\t0x5AA2\n0xBA7C\t0x5A9E\n0xBA7D\t0x5A78\n0xBA7E\t0x5AA6\n0xBB21\t0x5A7C\n0xBB22\t0x5AA5\n0xBB23\t0x5AAC\n0xBB24\t0x5A95\n0xBB25\t0x5AAE\n0xBB26\t0x5A37\n0xBB27\t0x5A84\n0xBB28\t0x5A8A\n0xBB29\t0x5A97\n0xBB2A\t0x5A83\n0xBB2B\t0x5A8B\n0xBB2C\t0x5AA9\n0xBB2D\t0x5A7B\n0xBB2E\t0x5A7D\n0xBB2F\t0x5A8C\n0xBB30\t0x5A9C\n0xBB31\t0x5A8F\n0xBB32\t0x5A93\n0xBB33\t0x5A9D\n0xBB34\t0x5BEA\n0xBB35\t0x5BCD\n0xBB36\t0x5BCB\n0xBB37\t0x5BD4\n0xBB38\t0x5BD1\n0xBB39\t0x5BCA\n0xBB3A\t0x5BCE\n0xBB3B\t0x5C0C\n0xBB3C\t0x5C30\n0xBB3D\t0x5D37\n0xBB3E\t0x5D43\n0xBB3F\t0x5D6B\n0xBB40\t0x5D41\n0xBB41\t0x5D4B\n0xBB42\t0x5D3F\n0xBB43\t0x5D35\n0xBB44\t0x5D51\n0xBB45\t0x5D4E\n0xBB46\t0x5D55\n0xBB47\t0x5D33\n0xBB48\t0x5D3A\n0xBB49\t0x5D52\n0xBB4A\t0x5D3D\n0xBB4B\t0x5D31\n0xBB4C\t0x5D59\n0xBB4D\t0x5D42\n0xBB4E\t0x5D39\n0xBB4F\t0x5D49\n0xBB50\t0x5D38\n0xBB51\t0x5D3C\n0xBB52\t0x5D32\n0xBB53\t0x5D36\n0xBB54\t0x5D40\n0xBB55\t0x5D45\n0xBB56\t0x5E44\n0xBB57\t0x5E41\n0xBB58\t0x5F58\n0xBB59\t0x5FA6\n0xBB5A\t0x5FA5\n0xBB5B\t0x5FAB\n0xBB5C\t0x60C9\n0xBB5D\t0x60B9\n0xBB5E\t0x60CC\n0xBB5F\t0x60E2\n0xBB60\t0x60CE\n0xBB61\t0x60C4\n0xBB62\t0x6114\n0xBB63\t0x60F2\n0xBB64\t0x610A\n0xBB65\t0x6116\n0xBB66\t0x6105\n0xBB67\t0x60F5\n0xBB68\t0x6113\n0xBB69\t0x60F8\n0xBB6A\t0x60FC\n0xBB6B\t0x60FE\n0xBB6C\t0x60C1\n0xBB6D\t0x6103\n0xBB6E\t0x6118\n0xBB6F\t0x611D\n0xBB70\t0x6110\n0xBB71\t0x60FF\n0xBB72\t0x6104\n0xBB73\t0x610B\n0xBB74\t0x624A\n0xBB75\t0x6394\n0xBB76\t0x63B1\n0xBB77\t0x63B0\n0xBB78\t0x63CE\n0xBB79\t0x63E5\n0xBB7A\t0x63E8\n0xBB7B\t0x63EF\n0xBB7C\t0x63C3\n0xBB7D\t0x649D\n0xBB7E\t0x63F3\n0xBC21\t0x63CA\n0xBC22\t0x63E0\n0xBC23\t0x63F6\n0xBC24\t0x63D5\n0xBC25\t0x63F2\n0xBC26\t0x63F5\n0xBC27\t0x6461\n0xBC28\t0x63DF\n0xBC29\t0x63BE\n0xBC2A\t0x63DD\n0xBC2B\t0x63DC\n0xBC2C\t0x63C4\n0xBC2D\t0x63D8\n0xBC2E\t0x63D3\n0xBC2F\t0x63C2\n0xBC30\t0x63C7\n0xBC31\t0x63CC\n0xBC32\t0x63CB\n0xBC33\t0x63C8\n0xBC34\t0x63F0\n0xBC35\t0x63D7\n0xBC36\t0x63D9\n0xBC37\t0x6532\n0xBC38\t0x6567\n0xBC39\t0x656A\n0xBC3A\t0x6564\n0xBC3B\t0x655C\n0xBC3C\t0x6568\n0xBC3D\t0x6565\n0xBC3E\t0x658C\n0xBC3F\t0x659D\n0xBC40\t0x659E\n0xBC41\t0x65AE\n0xBC42\t0x65D0\n0xBC43\t0x65D2\n0xBC44\t0x667C\n0xBC45\t0x666C\n0xBC46\t0x667B\n0xBC47\t0x6680\n0xBC48\t0x6671\n0xBC49\t0x6679\n0xBC4A\t0x666A\n0xBC4B\t0x6672\n0xBC4C\t0x6701\n0xBC4D\t0x690C\n0xBC4E\t0x68D3\n0xBC4F\t0x6904\n0xBC50\t0x68DC\n0xBC51\t0x692A\n0xBC52\t0x68EC\n0xBC53\t0x68EA\n0xBC54\t0x68F1\n0xBC55\t0x690F\n0xBC56\t0x68D6\n0xBC57\t0x68F7\n0xBC58\t0x68EB\n0xBC59\t0x68E4\n0xBC5A\t0x68F6\n0xBC5B\t0x6913\n0xBC5C\t0x6910\n0xBC5D\t0x68F3\n0xBC5E\t0x68E1\n0xBC5F\t0x6907\n0xBC60\t0x68CC\n0xBC61\t0x6908\n0xBC62\t0x6970\n0xBC63\t0x68B4\n0xBC64\t0x6911\n0xBC65\t0x68EF\n0xBC66\t0x68C6\n0xBC67\t0x6914\n0xBC68\t0x68F8\n0xBC69\t0x68D0\n0xBC6A\t0x68FD\n0xBC6B\t0x68FC\n0xBC6C\t0x68E8\n0xBC6D\t0x690B\n0xBC6E\t0x690A\n0xBC6F\t0x6917\n0xBC70\t0x68CE\n0xBC71\t0x68C8\n0xBC72\t0x68DD\n0xBC73\t0x68DE\n0xBC74\t0x68E6\n0xBC75\t0x68F4\n0xBC76\t0x68D1\n0xBC77\t0x6906\n0xBC78\t0x68D4\n0xBC79\t0x68E9\n0xBC7A\t0x6915\n0xBC7B\t0x6925\n0xBC7C\t0x68C7\n0xBC7D\t0x6B39\n0xBC7E\t0x6B3B\n0xBD21\t0x6B3F\n0xBD22\t0x6B3C\n0xBD23\t0x6B94\n0xBD24\t0x6B97\n0xBD25\t0x6B99\n0xBD26\t0x6B95\n0xBD27\t0x6BBD\n0xBD28\t0x6BF0\n0xBD29\t0x6BF2\n0xBD2A\t0x6BF3\n0xBD2B\t0x6C30\n0xBD2C\t0x6DFC\n0xBD2D\t0x6E46\n0xBD2E\t0x6E47\n0xBD2F\t0x6E1F\n0xBD30\t0x6E49\n0xBD31\t0x6E88\n0xBD32\t0x6E3C\n0xBD33\t0x6E3D\n0xBD34\t0x6E45\n0xBD35\t0x6E62\n0xBD36\t0x6E2B\n0xBD37\t0x6E3F\n0xBD38\t0x6E41\n0xBD39\t0x6E5D\n0xBD3A\t0x6E73\n0xBD3B\t0x6E1C\n0xBD3C\t0x6E33\n0xBD3D\t0x6E4B\n0xBD3E\t0x6E40\n0xBD3F\t0x6E51\n0xBD40\t0x6E3B\n0xBD41\t0x6E03\n0xBD42\t0x6E2E\n0xBD43\t0x6E5E\n0xBD44\t0x6E68\n0xBD45\t0x6E5C\n0xBD46\t0x6E61\n0xBD47\t0x6E31\n0xBD48\t0x6E28\n0xBD49\t0x6E60\n0xBD4A\t0x6E71\n0xBD4B\t0x6E6B\n0xBD4C\t0x6E39\n0xBD4D\t0x6E22\n0xBD4E\t0x6E30\n0xBD4F\t0x6E53\n0xBD50\t0x6E65\n0xBD51\t0x6E27\n0xBD52\t0x6E78\n0xBD53\t0x6E64\n0xBD54\t0x6E77\n0xBD55\t0x6E55\n0xBD56\t0x6E79\n0xBD57\t0x6E52\n0xBD58\t0x6E66\n0xBD59\t0x6E35\n0xBD5A\t0x6E36\n0xBD5B\t0x6E5A\n0xBD5C\t0x7120\n0xBD5D\t0x711E\n0xBD5E\t0x712F\n0xBD5F\t0x70FB\n0xBD60\t0x712E\n0xBD61\t0x7131\n0xBD62\t0x7123\n0xBD63\t0x7125\n0xBD64\t0x7122\n0xBD65\t0x7132\n0xBD66\t0x711F\n0xBD67\t0x7128\n0xBD68\t0x713A\n0xBD69\t0x711B\n0xBD6A\t0x724B\n0xBD6B\t0x725A\n0xBD6C\t0x7288\n0xBD6D\t0x7289\n0xBD6E\t0x7286\n0xBD6F\t0x7285\n0xBD70\t0x728B\n0xBD71\t0x7312\n0xBD72\t0x730B\n0xBD73\t0x7330\n0xBD74\t0x7322\n0xBD75\t0x7331\n0xBD76\t0x7333\n0xBD77\t0x7327\n0xBD78\t0x7332\n0xBD79\t0x732D\n0xBD7A\t0x7326\n0xBD7B\t0x7323\n0xBD7C\t0x7335\n0xBD7D\t0x730C\n0xBD7E\t0x742E\n0xBE21\t0x742C\n0xBE22\t0x7430\n0xBE23\t0x742B\n0xBE24\t0x7416\n0xBE25\t0x741A\n0xBE26\t0x7421\n0xBE27\t0x742D\n0xBE28\t0x7431\n0xBE29\t0x7424\n0xBE2A\t0x7423\n0xBE2B\t0x741D\n0xBE2C\t0x7429\n0xBE2D\t0x7420\n0xBE2E\t0x7432\n0xBE2F\t0x74FB\n0xBE30\t0x752F\n0xBE31\t0x756F\n0xBE32\t0x756C\n0xBE33\t0x75E7\n0xBE34\t0x75DA\n0xBE35\t0x75E1\n0xBE36\t0x75E6\n0xBE37\t0x75DD\n0xBE38\t0x75DF\n0xBE39\t0x75E4\n0xBE3A\t0x75D7\n0xBE3B\t0x7695\n0xBE3C\t0x7692\n0xBE3D\t0x76DA\n0xBE3E\t0x7746\n0xBE3F\t0x7747\n0xBE40\t0x7744\n0xBE41\t0x774D\n0xBE42\t0x7745\n0xBE43\t0x774A\n0xBE44\t0x774E\n0xBE45\t0x774B\n0xBE46\t0x774C\n0xBE47\t0x77DE\n0xBE48\t0x77EC\n0xBE49\t0x7860\n0xBE4A\t0x7864\n0xBE4B\t0x7865\n0xBE4C\t0x785C\n0xBE4D\t0x786D\n0xBE4E\t0x7871\n0xBE4F\t0x786A\n0xBE50\t0x786E\n0xBE51\t0x7870\n0xBE52\t0x7869\n0xBE53\t0x7868\n0xBE54\t0x785E\n0xBE55\t0x7862\n0xBE56\t0x7974\n0xBE57\t0x7973\n0xBE58\t0x7972\n0xBE59\t0x7970\n0xBE5A\t0x7A02\n0xBE5B\t0x7A0A\n0xBE5C\t0x7A03\n0xBE5D\t0x7A0C\n0xBE5E\t0x7A04\n0xBE5F\t0x7A99\n0xBE60\t0x7AE6\n0xBE61\t0x7AE4\n0xBE62\t0x7B4A\n0xBE63\t0x7B47\n0xBE64\t0x7B44\n0xBE65\t0x7B48\n0xBE66\t0x7B4C\n0xBE67\t0x7B4E\n0xBE68\t0x7B40\n0xBE69\t0x7B58\n0xBE6A\t0x7B45\n0xBE6B\t0x7CA2\n0xBE6C\t0x7C9E\n0xBE6D\t0x7CA8\n0xBE6E\t0x7CA1\n0xBE6F\t0x7D58\n0xBE70\t0x7D6F\n0xBE71\t0x7D63\n0xBE72\t0x7D53\n0xBE73\t0x7D56\n0xBE74\t0x7D67\n0xBE75\t0x7D6A\n0xBE76\t0x7D4F\n0xBE77\t0x7D6D\n0xBE78\t0x7D5C\n0xBE79\t0x7D6B\n0xBE7A\t0x7D52\n0xBE7B\t0x7D54\n0xBE7C\t0x7D69\n0xBE7D\t0x7D51\n0xBE7E\t0x7D5F\n0xBF21\t0x7D4E\n0xBF22\t0x7F3E\n0xBF23\t0x7F3F\n0xBF24\t0x7F65\n0xBF25\t0x7F66\n0xBF26\t0x7FA2\n0xBF27\t0x7FA0\n0xBF28\t0x7FA1\n0xBF29\t0x7FD7\n0xBF2A\t0x8051\n0xBF2B\t0x804F\n0xBF2C\t0x8050\n0xBF2D\t0x80FE\n0xBF2E\t0x80D4\n0xBF2F\t0x8143\n0xBF30\t0x814A\n0xBF31\t0x8152\n0xBF32\t0x814F\n0xBF33\t0x8147\n0xBF34\t0x813D\n0xBF35\t0x814D\n0xBF36\t0x813A\n0xBF37\t0x81E6\n0xBF38\t0x81EE\n0xBF39\t0x81F7\n0xBF3A\t0x81F8\n0xBF3B\t0x81F9\n0xBF3C\t0x8204\n0xBF3D\t0x823C\n0xBF3E\t0x823D\n0xBF3F\t0x823F\n0xBF40\t0x8275\n0xBF41\t0x833B\n0xBF42\t0x83CF\n0xBF43\t0x83F9\n0xBF44\t0x8423\n0xBF45\t0x83C0\n0xBF46\t0x83E8\n0xBF47\t0x8412\n0xBF48\t0x83E7\n0xBF49\t0x83E4\n0xBF4A\t0x83FC\n0xBF4B\t0x83F6\n0xBF4C\t0x8410\n0xBF4D\t0x83C6\n0xBF4E\t0x83C8\n0xBF4F\t0x83EB\n0xBF50\t0x83E3\n0xBF51\t0x83BF\n0xBF52\t0x8401\n0xBF53\t0x83DD\n0xBF54\t0x83E5\n0xBF55\t0x83D8\n0xBF56\t0x83FF\n0xBF57\t0x83E1\n0xBF58\t0x83CB\n0xBF59\t0x83CE\n0xBF5A\t0x83D6\n0xBF5B\t0x83F5\n0xBF5C\t0x83C9\n0xBF5D\t0x8409\n0xBF5E\t0x840F\n0xBF5F\t0x83DE\n0xBF60\t0x8411\n0xBF61\t0x8406\n0xBF62\t0x83C2\n0xBF63\t0x83F3\n0xBF64\t0x83D5\n0xBF65\t0x83FA\n0xBF66\t0x83C7\n0xBF67\t0x83D1\n0xBF68\t0x83EA\n0xBF69\t0x8413\n0xBF6A\t0x839A\n0xBF6B\t0x83C3\n0xBF6C\t0x83EC\n0xBF6D\t0x83EE\n0xBF6E\t0x83C4\n0xBF6F\t0x83FB\n0xBF70\t0x83D7\n0xBF71\t0x83E2\n0xBF72\t0x841B\n0xBF73\t0x83DB\n0xBF74\t0x83FE\n0xBF75\t0x86D8\n0xBF76\t0x86E2\n0xBF77\t0x86E6\n0xBF78\t0x86D3\n0xBF79\t0x86E3\n0xBF7A\t0x86DA\n0xBF7B\t0x86EA\n0xBF7C\t0x86DD\n0xBF7D\t0x86EB\n0xBF7E\t0x86DC\n0xC021\t0x86EC\n0xC022\t0x86E9\n0xC023\t0x86D7\n0xC024\t0x86E8\n0xC025\t0x86D1\n0xC026\t0x8848\n0xC027\t0x8856\n0xC028\t0x8855\n0xC029\t0x88BA\n0xC02A\t0x88D7\n0xC02B\t0x88B9\n0xC02C\t0x88B8\n0xC02D\t0x88C0\n0xC02E\t0x88BE\n0xC02F\t0x88B6\n0xC030\t0x88BC\n0xC031\t0x88B7\n0xC032\t0x88BD\n0xC033\t0x88B2\n0xC034\t0x8901\n0xC035\t0x88C9\n0xC036\t0x8995\n0xC037\t0x8998\n0xC038\t0x8997\n0xC039\t0x89DD\n0xC03A\t0x89DA\n0xC03B\t0x89DB\n0xC03C\t0x8A4E\n0xC03D\t0x8A4D\n0xC03E\t0x8A39\n0xC03F\t0x8A59\n0xC040\t0x8A40\n0xC041\t0x8A57\n0xC042\t0x8A58\n0xC043\t0x8A44\n0xC044\t0x8A45\n0xC045\t0x8A52\n0xC046\t0x8A48\n0xC047\t0x8A51\n0xC048\t0x8A4A\n0xC049\t0x8A4C\n0xC04A\t0x8A4F\n0xC04B\t0x8C5F\n0xC04C\t0x8C81\n0xC04D\t0x8C80\n0xC04E\t0x8CBA\n0xC04F\t0x8CBE\n0xC050\t0x8CB0\n0xC051\t0x8CB9\n0xC052\t0x8CB5\n0xC053\t0x8D84\n0xC054\t0x8D80\n0xC055\t0x8D89\n0xC056\t0x8DD8\n0xC057\t0x8DD3\n0xC058\t0x8DCD\n0xC059\t0x8DC7\n0xC05A\t0x8DD6\n0xC05B\t0x8DDC\n0xC05C\t0x8DCF\n0xC05D\t0x8DD5\n0xC05E\t0x8DD9\n0xC05F\t0x8DC8\n0xC060\t0x8DD7\n0xC061\t0x8DC5\n0xC062\t0x8EEF\n0xC063\t0x8EF7\n0xC064\t0x8EFA\n0xC065\t0x8EF9\n0xC066\t0x8EE6\n0xC067\t0x8EEE\n0xC068\t0x8EE5\n0xC069\t0x8EF5\n0xC06A\t0x8EE7\n0xC06B\t0x8EE8\n0xC06C\t0x8EF6\n0xC06D\t0x8EEB\n0xC06E\t0x8EF1\n0xC06F\t0x8EEC\n0xC070\t0x8EF4\n0xC071\t0x8EE9\n0xC072\t0x902D\n0xC073\t0x9034\n0xC074\t0x902F\n0xC075\t0x9106\n0xC076\t0x912C\n0xC077\t0x9104\n0xC078\t0x90FF\n0xC079\t0x90FC\n0xC07A\t0x9108\n0xC07B\t0x90F9\n0xC07C\t0x90FB\n0xC07D\t0x9101\n0xC07E\t0x9100\n0xC121\t0x9107\n0xC122\t0x9105\n0xC123\t0x9103\n0xC124\t0x9161\n0xC125\t0x9164\n0xC126\t0x915F\n0xC127\t0x9162\n0xC128\t0x9160\n0xC129\t0x9201\n0xC12A\t0x920A\n0xC12B\t0x9225\n0xC12C\t0x9203\n0xC12D\t0x921A\n0xC12E\t0x9226\n0xC12F\t0x920F\n0xC130\t0x920C\n0xC131\t0x9200\n0xC132\t0x9212\n0xC133\t0x91FF\n0xC134\t0x91FD\n0xC135\t0x9206\n0xC136\t0x9204\n0xC137\t0x9227\n0xC138\t0x9202\n0xC139\t0x921C\n0xC13A\t0x9224\n0xC13B\t0x9219\n0xC13C\t0x9217\n0xC13D\t0x9205\n0xC13E\t0x9216\n0xC13F\t0x957B\n0xC140\t0x958D\n0xC141\t0x958C\n0xC142\t0x9590\n0xC143\t0x9687\n0xC144\t0x967E\n0xC145\t0x9688\n0xC146\t0x9689\n0xC147\t0x9683\n0xC148\t0x9680\n0xC149\t0x96C2\n0xC14A\t0x96C8\n0xC14B\t0x96C3\n0xC14C\t0x96F1\n0xC14D\t0x96F0\n0xC14E\t0x976C\n0xC14F\t0x9770\n0xC150\t0x976E\n0xC151\t0x9807\n0xC152\t0x98A9\n0xC153\t0x98EB\n0xC154\t0x9CE6\n0xC155\t0x9EF9\n0xC156\t0x4E83\n0xC157\t0x4E84\n0xC158\t0x4EB6\n0xC159\t0x50BD\n0xC15A\t0x50BF\n0xC15B\t0x50C6\n0xC15C\t0x50AE\n0xC15D\t0x50C4\n0xC15E\t0x50CA\n0xC15F\t0x50B4\n0xC160\t0x50C8\n0xC161\t0x50C2\n0xC162\t0x50B0\n0xC163\t0x50C1\n0xC164\t0x50BA\n0xC165\t0x50B1\n0xC166\t0x50CB\n0xC167\t0x50C9\n0xC168\t0x50B6\n0xC169\t0x50B8\n0xC16A\t0x51D7\n0xC16B\t0x527A\n0xC16C\t0x5278\n0xC16D\t0x527B\n0xC16E\t0x527C\n0xC16F\t0x55C3\n0xC170\t0x55DB\n0xC171\t0x55CC\n0xC172\t0x55D0\n0xC173\t0x55CB\n0xC174\t0x55CA\n0xC175\t0x55DD\n0xC176\t0x55C0\n0xC177\t0x55D4\n0xC178\t0x55C4\n0xC179\t0x55E9\n0xC17A\t0x55BF\n0xC17B\t0x55D2\n0xC17C\t0x558D\n0xC17D\t0x55CF\n0xC17E\t0x55D5\n0xC221\t0x55E2\n0xC222\t0x55D6\n0xC223\t0x55C8\n0xC224\t0x55F2\n0xC225\t0x55CD\n0xC226\t0x55D9\n0xC227\t0x55C2\n0xC228\t0x5714\n0xC229\t0x5853\n0xC22A\t0x5868\n0xC22B\t0x5864\n0xC22C\t0x584F\n0xC22D\t0x584D\n0xC22E\t0x5849\n0xC22F\t0x586F\n0xC230\t0x5855\n0xC231\t0x584E\n0xC232\t0x585D\n0xC233\t0x5859\n0xC234\t0x5865\n0xC235\t0x585B\n0xC236\t0x583D\n0xC237\t0x5863\n0xC238\t0x5871\n0xC239\t0x58FC\n0xC23A\t0x5AC7\n0xC23B\t0x5AC4\n0xC23C\t0x5ACB\n0xC23D\t0x5ABA\n0xC23E\t0x5AB8\n0xC23F\t0x5AB1\n0xC240\t0x5AB5\n0xC241\t0x5AB0\n0xC242\t0x5ABF\n0xC243\t0x5AC8\n0xC244\t0x5ABB\n0xC245\t0x5AC6\n0xC246\t0x5AB7\n0xC247\t0x5AC0\n0xC248\t0x5ACA\n0xC249\t0x5AB4\n0xC24A\t0x5AB6\n0xC24B\t0x5ACD\n0xC24C\t0x5AB9\n0xC24D\t0x5A90\n0xC24E\t0x5BD6\n0xC24F\t0x5BD8\n0xC250\t0x5BD9\n0xC251\t0x5C1F\n0xC252\t0x5C33\n0xC253\t0x5D71\n0xC254\t0x5D63\n0xC255\t0x5D4A\n0xC256\t0x5D65\n0xC257\t0x5D72\n0xC258\t0x5D6C\n0xC259\t0x5D5E\n0xC25A\t0x5D68\n0xC25B\t0x5D67\n0xC25C\t0x5D62\n0xC25D\t0x5DF0\n0xC25E\t0x5E4F\n0xC25F\t0x5E4E\n0xC260\t0x5E4A\n0xC261\t0x5E4D\n0xC262\t0x5E4B\n0xC263\t0x5EC5\n0xC264\t0x5ECC\n0xC265\t0x5EC6\n0xC266\t0x5ECB\n0xC267\t0x5EC7\n0xC268\t0x5F40\n0xC269\t0x5FAF\n0xC26A\t0x5FAD\n0xC26B\t0x60F7\n0xC26C\t0x6149\n0xC26D\t0x614A\n0xC26E\t0x612B\n0xC26F\t0x6145\n0xC270\t0x6136\n0xC271\t0x6132\n0xC272\t0x612E\n0xC273\t0x6146\n0xC274\t0x612F\n0xC275\t0x614F\n0xC276\t0x6129\n0xC277\t0x6140\n0xC278\t0x6220\n0xC279\t0x9168\n0xC27A\t0x6223\n0xC27B\t0x6225\n0xC27C\t0x6224\n0xC27D\t0x63C5\n0xC27E\t0x63F1\n0xC2A1\t0x2400\n0xC2A2\t0x2401\n0xC2A3\t0x2402\n0xC2A4\t0x2403\n0xC2A5\t0x2404\n0xC2A6\t0x2405\n0xC2A7\t0x2406\n0xC2A8\t0x2407\n0xC2A9\t0x2408\n0xC2AA\t0x2409\n0xC2AB\t0x240A\n0xC2AC\t0x240B\n0xC2AD\t0x240C\n0xC2AE\t0x240D\n0xC2AF\t0x240E\n0xC2B0\t0x240F\n0xC2B1\t0x2410\n0xC2B2\t0x2411\n0xC2B3\t0x2412\n0xC2B4\t0x2413\n0xC2B5\t0x2414\n0xC2B6\t0x2415\n0xC2B7\t0x2416\n0xC2B8\t0x2417\n0xC2B9\t0x2418\n0xC2BA\t0x2419\n0xC2BB\t0x241A\n0xC2BC\t0x241B\n0xC2BD\t0x241C\n0xC2BE\t0x241D\n0xC2BF\t0x241E\n0xC2C0\t0x241F\n0xC2C1\t0x2421\n0xC2CBA1A1\t0x4E28\n0xC2CBA1A2\t0x4E36\n0xC2CBA1A3\t0x4E3F\n0xC2CBA1A4\t0x4E85\n0xC2CBA1A5\t0x4E05\n0xC2CBA1A6\t0x4E04\n0xC2CBA1A7\t0x5182\n0xC2CBA1A8\t0x5196\n0xC2CBA1A9\t0x5338\n0xC2CBA1AA\t0x5369\n0xC2CBA1AB\t0x53B6\n0xC2CBA1AC\t0x4E2A\n0xC2CBA1AD\t0x4E87\n0xC2CBA1AE\t0x4E49\n0xC2CBA1AF\t0x51E2\n0xC2CBA1B0\t0x4E46\n0xC2CBA1B1\t0x4E8F\n0xC2CBA1B2\t0x4EBC\n0xC2CBA1B3\t0x4EBE\n0xC2CBA1B4\t0x5166\n0xC2CBA1B5\t0x51E3\n0xC2CBA1B6\t0x5204\n0xC2CBA1B7\t0x529C\n0xC2CBA1B8\t0x5344\n0xC2CBA1B9\t0x5902\n0xC2CBA1BA\t0x590A\n0xC2CBA1BB\t0x5B80\n0xC2CBA1BC\t0x5DDB\n0xC2CBA1BD\t0x5E7A\n0xC2CBA1BE\t0x5E7F\n0xC2CBA1BF\t0x5EF4\n0xC2CBA1C0\t0x5F50\n0xC2CBA1C1\t0x5F51\n0xC2CBA1C2\t0x5F61\n0xC2CBA1C3\t0x961D\n0xC2CBA1C4\t0x2000B\n0xC2CBA1C5\t0x4E63\n0xC2CBA1C6\t0x4E62\n0xC2CBA1C7\t0x4EA3\n0xC2CBA1C8\t0x5185\n0xC2CBA1C9\t0x4EC5\n0xC2CBA1CA\t0x4ECF\n0xC2CBA1CB\t0x4ECE\n0xC2CBA1CC\t0x4ECC\n0xC2CBA1CD\t0x5184\n0xC2CBA1CE\t0x5186\n0xC2CBA1CF\t0x2F817\n0xC2CBA1D0\t0x34C5\n0xC2CBA1D1\t0x51E4\n0xC2CBA1D2\t0x5205\n0xC2CBA1D3\t0x529E\n0xC2CBA1D4\t0x529D\n0xC2CBA1D5\t0x52FD\n0xC2CBA1D6\t0x5300\n0xC2CBA1D7\t0x533A\n0xC2CBA1D8\t0x3539\n0xC2CBA1D9\t0x5346\n0xC2CBA1DA\t0x535D\n0xC2CBA1DB\t0x5386\n0xC2CBA1DC\t0x53B7\n0xC2CBA1DD\t0x3555\n0xC2CBA1DE\t0x53CC\n0xC2CBA1DF\t0x355B\n0xC2CBA1E0\t0x53CE\n0xC2CBA1E1\t0x5721\n0xC2CBA1E2\t0x37A2\n0xC2CBA1E3\t0x5E00\n0xC2CBA1E4\t0x5F0C\n0xC2CBA1E5\t0x6237\n0xC2CBA1E6\t0x6238\n0xC2CBA1E7\t0x6534\n0xC2CBA1E8\t0x6535\n0xC2CBA1E9\t0x65E0\n0xC2CBA1EA\t0x3E26\n0xC2CBA1EB\t0x738D\n0xC2CBA1EC\t0x4E97\n0xC2CBA1ED\t0x4EE0\n0xC2CBA1EE\t0x3432\n0xC2CBA1EF\t0x201A9\n0xC2CBA1F0\t0x4EE7\n0xC2CBA1F1\t0x3433\n0xC2CBA1F2\t0x4EE6\n0xC2CBA1F3\t0x3434\n0xC2CBA1F4\t0x36A2\n0xC2CBA1F5\t0x3431\n0xC2CBA1F6\t0x34B0\n0xC2CBA1F7\t0x56D8\n0xC2CBA1F8\t0x518B\n0xC2CBA1F9\t0x518C\n0xC2CBA1FA\t0x5199\n0xC2CBA1FB\t0x51E5\n0xC2CBA1FC\t0x2F850\n0xC2CBA1FD\t0x520B\n0xC2CBA1FE\t0x34DC\n0xC2CBA2A1\t0x361E\n0xC2CBA2A2\t0x5304\n0xC2CBA2A3\t0x5303\n0xC2CBA2A4\t0x5307\n0xC2CBA2A5\t0x2F82A\n0xC2CBA2A6\t0x531E\n0xC2CBA2A7\t0x535F\n0xC2CBA2A8\t0x536D\n0xC2CBA2A9\t0x5389\n0xC2CBA2AA\t0x53BA\n0xC2CBA2AB\t0x53D0\n0xC2CBA2AC\t0x3565\n0xC2CBA2AD\t0x53F6\n0xC2CBA2AE\t0x53F7\n0xC2CBA2AF\t0x53F9\n0xC2CBA2B0\t0x3564\n0xC2CBA2B1\t0x53F4\n0xC2CBA2B2\t0x361D\n0xC2CBA2B3\t0x3626\n0xC2CBA2B4\t0x5724\n0xC2CBA2B5\t0x5904\n0xC2CBA2B6\t0x5918\n0xC2CBA2B7\t0x5932\n0xC2CBA2B8\t0x5930\n0xC2CBA2B9\t0x5934\n0xC2CBA2BA\t0x368E\n0xC2CBA2BB\t0x5975\n0xC2CBA2BC\t0x374A\n0xC2CBA2BD\t0x5B82\n0xC2CBA2BE\t0x5BF9\n0xC2CBA2BF\t0x5C14\n0xC2CBA2C0\t0x378B\n0xC2CBA2C1\t0x37A6\n0xC2CBA2C2\t0x37A4\n0xC2CBA2C3\t0x37A5\n0xC2CBA2C4\t0x37A7\n0xC2CBA2C5\t0x382F\n0xC2CBA2C6\t0x3832\n0xC2CBA2C7\t0x5E81\n0xC2CBA2C8\t0x5E83\n0xC2CBA2C9\t0x5F0D\n0xC2CBA2CA\t0x5F52\n0xC2CBA2CB\t0x38D4\n0xC2CBA2CC\t0x5FCA\n0xC2CBA2CD\t0x5FC7\n0xC2CBA2CE\t0x6239\n0xC2CBA2CF\t0x39C5\n0xC2CBA2D0\t0x624F\n0xC2CBA2D1\t0x65E7\n0xC2CBA2D2\t0x672F\n0xC2CBA2D3\t0x6B7A\n0xC2CBA2D4\t0x6C39\n0xC2CBA2D5\t0x3CBA\n0xC2CBA2D6\t0x3CB9\n0xC2CBA2D7\t0x6C37\n0xC2CBA2D8\t0x6C44\n0xC2CBA2D9\t0x6C45\n0xC2CBA2DA\t0x738C\n0xC2CBA2DB\t0x7592\n0xC2CBA2DC\t0x7676\n0xC2CBA2DD\t0x9093\n0xC2CBA2DE\t0x9092\n0xC2CBA2DF\t0x48B3\n0xC2CBA2E0\t0x49BA\n0xC2CBA2E1\t0x4E21\n0xC2CBA2E2\t0x4E20\n0xC2CBA2E3\t0x4E22\n0xC2CBA2E4\t0x4E68\n0xC2CBA2E5\t0x4E89\n0xC2CBA2E6\t0x4E98\n0xC2CBA2E7\t0x4EF9\n0xC2CBA2E8\t0x4EEF\n0xC2CBA2E9\t0x343B\n0xC2CBA2EA\t0x343C\n0xC2CBA2EB\t0x4EF8\n0xC2CBA2EC\t0x4F06\n0xC2CBA2ED\t0x4F03\n0xC2CBA2EE\t0x4EFC\n0xC2CBA2EF\t0x4EEE\n0xC2CBA2F0\t0x4F16\n0xC2CBA2F1\t0x3439\n0xC2CBA2F2\t0x4F28\n0xC2CBA2F3\t0x4F1C\n0xC2CBA2F4\t0x4F07\n0xC2CBA2F5\t0x4F1A\n0xC2CBA2F6\t0x4EFA\n0xC2CBA2F7\t0x4F17\n0xC2CBA2F8\t0x514A\n0xC2CBA2F9\t0x34B2\n0xC2CBA2FA\t0x5172\n0xC2CBA2FB\t0x2F815\n0xC2CBA2FC\t0x51B4\n0xC2CBA2FD\t0x51B3\n0xC2CBA2FE\t0x51B2\n0xC2CBA3A1\t0x34C7\n0xC2CBA3A2\t0x51E8\n0xC2CBA3A3\t0x342B\n0xC2CBA3A4\t0x5214\n0xC2CBA3A5\t0x520F\n0xC2CBA3A6\t0x5215\n0xC2CBA3A7\t0x5218\n0xC2CBA3A8\t0x52A8\n0xC2CBA3A9\t0x2F82C\n0xC2CBA3AA\t0x534B\n0xC2CBA3AB\t0x534F\n0xC2CBA3AC\t0x353B\n0xC2CBA3AD\t0x5350\n0xC2CBA3AE\t0x3544\n0xC2CBA3AF\t0x538B\n0xC2CBA3B0\t0x3542\n0xC2CBA3B1\t0x53BE\n0xC2CBA3B2\t0x355C\n0xC2CBA3B3\t0x53D2\n0xC2CBA3B4\t0x5416\n0xC2CBA3B5\t0x53FF\n0xC2CBA3B6\t0x3567\n0xC2CBA3B7\t0x5400\n0xC2CBA3B8\t0x3566\n0xC2CBA3B9\t0x5405\n0xC2CBA3BA\t0x5413\n0xC2CBA3BB\t0x5415\n0xC2CBA3BC\t0x2F83B\n0xC2CBA3BD\t0x361F\n0xC2CBA3BE\t0x56E3\n0xC2CBA3BF\t0x5735\n0xC2CBA3C0\t0x5736\n0xC2CBA3C1\t0x5731\n0xC2CBA3C2\t0x5732\n0xC2CBA3C3\t0x58EE\n0xC2CBA3C4\t0x5905\n0xC2CBA3C5\t0x4E54\n0xC2CBA3C6\t0x368F\n0xC2CBA3C7\t0x5936\n0xC2CBA3C8\t0x3690\n0xC2CBA3C9\t0x36A8\n0xC2CBA3CA\t0x36A4\n0xC2CBA3CB\t0x597A\n0xC2CBA3CC\t0x36A3\n0xC2CBA3CD\t0x5986\n0xC2CBA3CE\t0x373D\n0xC2CBA3CF\t0x374C\n0xC2CBA3D0\t0x5B86\n0xC2CBA3D1\t0x5F53\n0xC2CBA3D2\t0x5C18\n0xC2CBA3D3\t0x378C\n0xC2CBA3D4\t0x5C3D\n0xC2CBA3D5\t0x5C78\n0xC2CBA3D6\t0x37A8\n0xC2CBA3D7\t0x37AD\n0xC2CBA3D8\t0x37AF\n0xC2CBA3D9\t0x21D46\n0xC2CBA3DA\t0x5C80\n0xC2CBA3DB\t0x3829\n0xC2CBA3DC\t0x5E08\n0xC2CBA3DD\t0x3836\n0xC2CBA3DE\t0x3871\n0xC2CBA3DF\t0x3870\n0xC2CBA3E0\t0x386F\n0xC2CBA3E1\t0x5EF5\n0xC2CBA3E2\t0x5F0E\n0xC2CBA3E3\t0x38A9\n0xC2CBA3E4\t0x38AA\n0xC2CBA3E5\t0x38FB\n0xC2CBA3E6\t0x5FD3\n0xC2CBA3E7\t0x5FDA\n0xC2CBA3E8\t0x38FC\n0xC2CBA3E9\t0x5FDB\n0xC2CBA3EA\t0x39AE\n0xC2CBA3EB\t0x620F\n0xC2CBA3EC\t0x625D\n0xC2CBA3ED\t0x625F\n0xC2CBA3EE\t0x6267\n0xC2CBA3EF\t0x6257\n0xC2CBA3F0\t0x9F50\n0xC2CBA3F1\t0x3AC3\n0xC2CBA3F2\t0x65EB\n0xC2CBA3F3\t0x65EA\n0xC2CBA3F4\t0x3B30\n0xC2CBA3F5\t0x6737\n0xC2CBA3F6\t0x3B41\n0xC2CBA3F7\t0x6732\n0xC2CBA3F8\t0x6736\n0xC2CBA3F9\t0x6B22\n0xC2CBA3FA\t0x6BCE\n0xC2CBA3FB\t0x3C8C\n0xC2CBA3FC\t0x6C58\n0xC2CBA3FD\t0x6C51\n0xC2CBA3FE\t0x6C77\n0xC2CBA4A1\t0x6C3C\n0xC2CBA4A2\t0x3CBB\n0xC2CBA4A3\t0x6C5A\n0xC2CBA4A4\t0x23C86\n0xC2CBA4A5\t0x6C53\n0xC2CBA4A6\t0x706F\n0xC2CBA4A7\t0x7072\n0xC2CBA4A8\t0x706E\n0xC2CBA4A9\t0x2F835\n0xC2CBA4AA\t0x3DA1\n0xC2CBA4AB\t0x7073\n0xC2CBA4AC\t0x72B1\n0xC2CBA4AD\t0x72B2\n0xC2CBA4AE\t0x3EA8\n0xC2CBA4AF\t0x738F\n0xC2CBA4B0\t0x3EAA\n0xC2CBA4B1\t0x3EAB\n0xC2CBA4B2\t0x4096\n0xC2CBA4B3\t0x793C\n0xC2CBA4B4\t0x41C2\n0xC2CBA4B5\t0x808D\n0xC2CBA4B6\t0x808E\n0xC2CBA4B7\t0x4493\n0xC2CBA4B8\t0x827B\n0xC2CBA4B9\t0x4494\n0xC2CBA4BA\t0x8D71\n0xC2CBA4BB\t0x8FB9\n0xC2CBA4BC\t0x9096\n0xC2CBA4BD\t0x909A\n0xC2CBA4BE\t0x49BB\n0xC2CBA4BF\t0x4E24\n0xC2CBA4C0\t0x4E71\n0xC2CBA4C1\t0x2F81B\n0xC2CBA4C2\t0x4E9C\n0xC2CBA4C3\t0x4F45\n0xC2CBA4C4\t0x4F4A\n0xC2CBA4C5\t0x4F39\n0xC2CBA4C6\t0x4F37\n0xC2CBA4C7\t0x3443\n0xC2CBA4C8\t0x4F32\n0xC2CBA4C9\t0x4F42\n0xC2CBA4CA\t0x3442\n0xC2CBA4CB\t0x4F44\n0xC2CBA4CC\t0x4F4B\n0xC2CBA4CD\t0x3444\n0xC2CBA4CE\t0x4F40\n0xC2CBA4CF\t0x4F35\n0xC2CBA4D0\t0x4F31\n0xC2CBA4D1\t0x5151\n0xC2CBA4D2\t0x2F80E\n0xC2CBA4D3\t0x5150\n0xC2CBA4D4\t0x514E\n0xC2CBA4D5\t0x34B3\n0xC2CBA4D6\t0x34B7\n0xC2CBA4D7\t0x519D\n0xC2CBA4D8\t0x34C8\n0xC2CBA4D9\t0x51B5\n0xC2CBA4DA\t0x51B8\n0xC2CBA4DB\t0x51EC\n0xC2CBA4DC\t0x5223\n0xC2CBA4DD\t0x5227\n0xC2CBA4DE\t0x5226\n0xC2CBA4DF\t0x521F\n0xC2CBA4E0\t0x522B\n0xC2CBA4E1\t0x5220\n0xC2CBA4E2\t0x52B4\n0xC2CBA4E3\t0x52B3\n0xC2CBA4E4\t0x3518\n0xC2CBA4E5\t0x5325\n0xC2CBA4E6\t0x533B\n0xC2CBA4E7\t0x5374\n0xC2CBA4E8\t0x3547\n0xC2CBA4E9\t0x3546\n0xC2CBA4EA\t0x3545\n0xC2CBA4EB\t0x356B\n0xC2CBA4EC\t0x3569\n0xC2CBA4ED\t0x544D\n0xC2CBA4EE\t0x3572\n0xC2CBA4EF\t0x3571\n0xC2CBA4F0\t0x543A\n0xC2CBA4F1\t0x356C\n0xC2CBA4F2\t0x356F\n0xC2CBA4F3\t0x5444\n0xC2CBA4F4\t0x544C\n0xC2CBA4F5\t0x5423\n0xC2CBA4F6\t0x541A\n0xC2CBA4F7\t0x5432\n0xC2CBA4F8\t0x544B\n0xC2CBA4F9\t0x5421\n0xC2CBA4FA\t0x3573\n0xC2CBA4FB\t0x5434\n0xC2CBA4FC\t0x5449\n0xC2CBA4FD\t0x5450\n0xC2CBA4FE\t0x5422\n0xC2CBA5A1\t0x543F\n0xC2CBA5A2\t0x5451\n0xC2CBA5A3\t0x545A\n0xC2CBA5A4\t0x542F\n0xC2CBA5A5\t0x3576\n0xC2CBA5A6\t0x56E9\n0xC2CBA5A7\t0x56F2\n0xC2CBA5A8\t0x56F3\n0xC2CBA5A9\t0x56EF\n0xC2CBA5AA\t0x56ED\n0xC2CBA5AB\t0x56EC\n0xC2CBA5AC\t0x56E6\n0xC2CBA5AD\t0x5748\n0xC2CBA5AE\t0x3627\n0xC2CBA5AF\t0x5744\n0xC2CBA5B0\t0x573F\n0xC2CBA5B1\t0x573C\n0xC2CBA5B2\t0x5753\n0xC2CBA5B3\t0x5756\n0xC2CBA5B4\t0x3630\n0xC2CBA5B5\t0x575F\n0xC2CBA5B6\t0x5743\n0xC2CBA5B7\t0x5758\n0xC2CBA5B8\t0x5757\n0xC2CBA5B9\t0x3629\n0xC2CBA5BA\t0x362A\n0xC2CBA5BB\t0x362F\n0xC2CBA5BC\t0x5746\n0xC2CBA5BD\t0x362C\n0xC2CBA5BE\t0x573D\n0xC2CBA5BF\t0x362D\n0xC2CBA5C0\t0x5742\n0xC2CBA5C1\t0x5754\n0xC2CBA5C2\t0x5755\n0xC2CBA5C3\t0x58F1\n0xC2CBA5C4\t0x58F2\n0xC2CBA5C5\t0x58F0\n0xC2CBA5C6\t0x590B\n0xC2CBA5C7\t0x9EA6\n0xC2CBA5C8\t0x56F1\n0xC2CBA5C9\t0x593D\n0xC2CBA5CA\t0x3693\n0xC2CBA5CB\t0x5994\n0xC2CBA5CC\t0x598C\n0xC2CBA5CD\t0x36AD\n0xC2CBA5CE\t0x599C\n0xC2CBA5CF\t0x36AC\n0xC2CBA5D0\t0x36AB\n0xC2CBA5D1\t0x599F\n0xC2CBA5D2\t0x36A9\n0xC2CBA5D3\t0x599B\n0xC2CBA5D4\t0x36AE\n0xC2CBA5D5\t0x5989\n0xC2CBA5D6\t0x599A\n0xC2CBA5D7\t0x36AA\n0xC2CBA5D8\t0x6588\n0xC2CBA5D9\t0x374E\n0xC2CBA5DA\t0x5B8D\n0xC2CBA5DB\t0x3750\n0xC2CBA5DC\t0x5BFE\n0xC2CBA5DD\t0x5BFF\n0xC2CBA5DE\t0x5BFD\n0xC2CBA5DF\t0x5C2B\n0xC2CBA5E0\t0x37B2\n0xC2CBA5E1\t0x5C84\n0xC2CBA5E2\t0x5C8E\n0xC2CBA5E3\t0x5C9C\n0xC2CBA5E4\t0x37B5\n0xC2CBA5E5\t0x37B6\n0xC2CBA5E6\t0x5C85\n0xC2CBA5E7\t0x5DF5\n0xC2CBA5E8\t0x5E09\n0xC2CBA5E9\t0x3839\n0xC2CBA5EA\t0x383B\n0xC2CBA5EB\t0x5E0B\n0xC2CBA5EC\t0x3872\n0xC2CBA5ED\t0x5E92\n0xC2CBA5EE\t0x5E90\n0xC2CBA5EF\t0x5F03\n0xC2CBA5F0\t0x38AC\n0xC2CBA5F1\t0x5F1E\n0xC2CBA5F2\t0x5F63\n0xC2CBA5F3\t0x3908\n0xC2CBA5F4\t0x5FE7\n0xC2CBA5F5\t0x5FFE\n0xC2CBA5F6\t0x5FE6\n0xC2CBA5F7\t0x5FDC\n0xC2CBA5F8\t0x5FCE\n0xC2CBA5F9\t0x3903\n0xC2CBA5FA\t0x5FFC\n0xC2CBA5FB\t0x5FDF\n0xC2CBA5FC\t0x5FEC\n0xC2CBA5FD\t0x5FF6\n0xC2CBA5FE\t0x225D7\n0xC2CBA6A1\t0x5FF2\n0xC2CBA6A2\t0x5FF0\n0xC2CBA6A3\t0x5FF9\n0xC2CBA6A4\t0x390B\n0xC2CBA6A5\t0x6213\n0xC2CBA6A6\t0x39AF\n0xC2CBA6A7\t0x2F8B2\n0xC2CBA6A8\t0x623B\n0xC2CBA6A9\t0x623C\n0xC2CBA6AA\t0x6282\n0xC2CBA6AB\t0x39CE\n0xC2CBA6AC\t0x39CB\n0xC2CBA6AD\t0x39CC\n0xC2CBA6AE\t0x6278\n0xC2CBA6AF\t0x628B\n0xC2CBA6B0\t0x39CD\n0xC2CBA6B1\t0x629E\n0xC2CBA6B2\t0x62A5\n0xC2CBA6B3\t0x629B\n0xC2CBA6B4\t0x629C\n0xC2CBA6B5\t0x6299\n0xC2CBA6B6\t0x628D\n0xC2CBA6B7\t0x6285\n0xC2CBA6B8\t0x629D\n0xC2CBA6B9\t0x6275\n0xC2CBA6BA\t0x3A80\n0xC2CBA6BB\t0x3AAF\n0xC2CBA6BC\t0x3AD3\n0xC2CBA6BD\t0x65F6\n0xC2CBA6BE\t0x3AD5\n0xC2CBA6BF\t0x3AD4\n0xC2CBA6C0\t0x3AD7\n0xC2CBA6C1\t0x66F5\n0xC2CBA6C2\t0x675B\n0xC2CBA6C3\t0x3B42\n0xC2CBA6C4\t0x6754\n0xC2CBA6C5\t0x6752\n0xC2CBA6C6\t0x3B44\n0xC2CBA6C7\t0x6758\n0xC2CBA6C8\t0x6744\n0xC2CBA6C9\t0x674A\n0xC2CBA6CA\t0x6761\n0xC2CBA6CB\t0x3CC6\n0xC2CBA6CC\t0x6C7F\n0xC2CBA6CD\t0x6C91\n0xC2CBA6CE\t0x6C9E\n0xC2CBA6CF\t0x3CC0\n0xC2CBA6D0\t0x6C6E\n0xC2CBA6D1\t0x6C7C\n0xC2CBA6D2\t0x6C9F\n0xC2CBA6D3\t0x6C75\n0xC2CBA6D4\t0x3CBE\n0xC2CBA6D5\t0x6C56\n0xC2CBA6D6\t0x6CA2\n0xC2CBA6D7\t0x6C79\n0xC2CBA6D8\t0x3CCA\n0xC2CBA6D9\t0x6CA1\n0xC2CBA6DA\t0x3CC4\n0xC2CBA6DB\t0x6CAA\n0xC2CBA6DC\t0x6CA0\n0xC2CBA6DD\t0x3CC2\n0xC2CBA6DE\t0x7079\n0xC2CBA6DF\t0x7077\n0xC2CBA6E0\t0x707E\n0xC2CBA6E1\t0x3DA4\n0xC2CBA6E2\t0x7075\n0xC2CBA6E3\t0x707B\n0xC2CBA6E4\t0x7264\n0xC2CBA6E5\t0x3E29\n0xC2CBA6E6\t0x72BB\n0xC2CBA6E7\t0x72BC\n0xC2CBA6E8\t0x72C7\n0xC2CBA6E9\t0x72B9\n0xC2CBA6EA\t0x72BE\n0xC2CBA6EB\t0x72B6\n0xC2CBA6EC\t0x3E60\n0xC2CBA6ED\t0x3E5E\n0xC2CBA6EE\t0x7398\n0xC2CBA6EF\t0x3EAD\n0xC2CBA6F0\t0x3EAE\n0xC2CBA6F1\t0x3EAC\n0xC2CBA6F2\t0x3F57\n0xC2CBA6F3\t0x7593\n0xC2CBA6F4\t0x7680\n0xC2CBA6F5\t0x3FDD\n0xC2CBA6F6\t0x7683\n0xC2CBA6F7\t0x76C0\n0xC2CBA6F8\t0x76C1\n0xC2CBA6F9\t0x400E\n0xC2CBA6FA\t0x4097\n0xC2CBA6FB\t0x77F4\n0xC2CBA6FC\t0x77F5\n0xC2CBA6FD\t0x4127\n0xC2CBA6FE\t0x7ACC\n0xC2CBA7A1\t0x7ACD\n0xC2CBA7A2\t0x7CFA\n0xC2CBA7A3\t0x809F\n0xC2CBA7A4\t0x8091\n0xC2CBA7A5\t0x8097\n0xC2CBA7A6\t0x8094\n0xC2CBA7A7\t0x4495\n0xC2CBA7A8\t0x8286\n0xC2CBA7A9\t0x828C\n0xC2CBA7AA\t0x2F98F\n0xC2CBA7AB\t0x8295\n0xC2CBA7AC\t0x4498\n0xC2CBA7AD\t0x866C\n0xC2CBA7AE\t0x459D\n0xC2CBA7AF\t0x8FB5\n0xC2CBA7B0\t0x8FBE\n0xC2CBA7B1\t0x8FC7\n0xC2CBA7B2\t0x488A\n0xC2CBA7B3\t0x8FC1\n0xC2CBA7B4\t0x90A9\n0xC2CBA7B5\t0x90A4\n0xC2CBA7B6\t0x48B5\n0xC2CBA7B7\t0x48B6\n0xC2CBA7B8\t0x48B7\n0xC2CBA7B9\t0x90A8\n0xC2CBA7BA\t0x9627\n0xC2CBA7BB\t0x9626\n0xC2CBA7BC\t0x962B\n0xC2CBA7BD\t0x9633\n0xC2CBA7BE\t0x9634\n0xC2CBA7BF\t0x9629\n0xC2CBA7C0\t0x4E3D\n0xC2CBA7C1\t0x3428\n0xC2CBA7C2\t0x4E9D\n0xC2CBA7C3\t0x4F93\n0xC2CBA7C4\t0x4F8A\n0xC2CBA7C5\t0x344D\n0xC2CBA7C6\t0x3449\n0xC2CBA7C7\t0x4F6D\n0xC2CBA7C8\t0x4F8E\n0xC2CBA7C9\t0x4FA0\n0xC2CBA7CA\t0x4FA2\n0xC2CBA7CB\t0x4FA1\n0xC2CBA7CC\t0x4F9F\n0xC2CBA7CD\t0x4FA3\n0xC2CBA7CE\t0x20209\n0xC2CBA7CF\t0x4F72\n0xC2CBA7D0\t0x3451\n0xC2CBA7D1\t0x4F8C\n0xC2CBA7D2\t0x5156\n0xC2CBA7D3\t0x2F80F\n0xC2CBA7D4\t0x2F811\n0xC2CBA7D5\t0x5190\n0xC2CBA7D6\t0x34CB\n0xC2CBA7D7\t0x34CA\n0xC2CBA7D8\t0x34CC\n0xC2CBA7D9\t0x51ED\n0xC2CBA7DA\t0x51FE\n0xC2CBA7DB\t0x522F\n0xC2CBA7DC\t0x206EC\n0xC2CBA7DD\t0x523C\n0xC2CBA7DE\t0x5234\n0xC2CBA7DF\t0x5239\n0xC2CBA7E0\t0x52B9\n0xC2CBA7E1\t0x52B5\n0xC2CBA7E2\t0x52BF\n0xC2CBA7E3\t0x5355\n0xC2CBA7E4\t0x353D\n0xC2CBA7E5\t0x5376\n0xC2CBA7E6\t0x537A\n0xC2CBA7E7\t0x5393\n0xC2CBA7E8\t0x3548\n0xC2CBA7E9\t0x53C1\n0xC2CBA7EA\t0x53C2\n0xC2CBA7EB\t0x53D5\n0xC2CBA7EC\t0x5485\n0xC2CBA7ED\t0x3578\n0xC2CBA7EE\t0x545F\n0xC2CBA7EF\t0x5493\n0xC2CBA7F0\t0x5489\n0xC2CBA7F1\t0x5479\n0xC2CBA7F2\t0x9EFE\n0xC2CBA7F3\t0x548F\n0xC2CBA7F4\t0x5469\n0xC2CBA7F5\t0x546D\n0xC2CBA7F6\t0x357A\n0xC2CBA7F7\t0x5494\n0xC2CBA7F8\t0x546A\n0xC2CBA7F9\t0x548A\n0xC2CBA7FA\t0x3577\n0xC2CBA7FB\t0x56FD\n0xC2CBA7FC\t0x56FB\n0xC2CBA7FD\t0x56F8\n0xC2CBA7FE\t0x3621\n0xC2CBA8A1\t0x56FC\n0xC2CBA8A2\t0x56F6\n0xC2CBA8A3\t0x5765\n0xC2CBA8A4\t0x5781\n0xC2CBA8A5\t0x5763\n0xC2CBA8A6\t0x5767\n0xC2CBA8A7\t0x3631\n0xC2CBA8A8\t0x576E\n0xC2CBA8A9\t0x5778\n0xC2CBA8AA\t0x577F\n0xC2CBA8AB\t0x3633\n0xC2CBA8AC\t0x3634\n0xC2CBA8AD\t0x58F3\n0xC2CBA8AE\t0x594B\n0xC2CBA8AF\t0x594C\n0xC2CBA8B0\t0x36C1\n0xC2CBA8B1\t0x36B0\n0xC2CBA8B2\t0x36B4\n0xC2CBA8B3\t0x59AD\n0xC2CBA8B4\t0x36B8\n0xC2CBA8B5\t0x59C4\n0xC2CBA8B6\t0x36BC\n0xC2CBA8B7\t0x59C2\n0xC2CBA8B8\t0x59B0\n0xC2CBA8B9\t0x36BF\n0xC2CBA8BA\t0x36B5\n0xC2CBA8BB\t0x36B1\n0xC2CBA8BC\t0x36BD\n0xC2CBA8BD\t0x59BF\n0xC2CBA8BE\t0x36BB\n0xC2CBA8BF\t0x59C9\n0xC2CBA8C0\t0x59B8\n0xC2CBA8C1\t0x59AC\n0xC2CBA8C2\t0x36B3\n0xC2CBA8C3\t0x36B6\n0xC2CBA8C4\t0x36BA\n0xC2CBA8C5\t0x59B7\n0xC2CBA8C6\t0x59D7\n0xC2CBA8C7\t0x36B7\n0xC2CBA8C8\t0x5B60\n0xC2CBA8C9\t0x3740\n0xC2CBA8CA\t0x5B96\n0xC2CBA8CB\t0x5B9E\n0xC2CBA8CC\t0x5B94\n0xC2CBA8CD\t0x5B9F\n0xC2CBA8CE\t0x5B9D\n0xC2CBA8CF\t0x3752\n0xC2CBA8D0\t0x5C00\n0xC2CBA8D1\t0x5C19\n0xC2CBA8D2\t0x3790\n0xC2CBA8D3\t0x3791\n0xC2CBA8D4\t0x5C49\n0xC2CBA8D5\t0x5C4A\n0xC2CBA8D6\t0x37BE\n0xC2CBA8D7\t0x5CBB\n0xC2CBA8D8\t0x5CC1\n0xC2CBA8D9\t0x37C0\n0xC2CBA8DA\t0x37C1\n0xC2CBA8DB\t0x37B9\n0xC2CBA8DC\t0x5CB9\n0xC2CBA8DD\t0x5C9E\n0xC2CBA8DE\t0x5CB4\n0xC2CBA8DF\t0x5CBA\n0xC2CBA8E0\t0x5DF6\n0xC2CBA8E1\t0x5E13\n0xC2CBA8E2\t0x5E12\n0xC2CBA8E3\t0x5E77\n0xC2CBA8E4\t0x3879\n0xC2CBA8E5\t0x5E98\n0xC2CBA8E6\t0x387B\n0xC2CBA8E7\t0x5E99\n0xC2CBA8E8\t0x5E9D\n0xC2CBA8E9\t0x5EF8\n0xC2CBA8EA\t0x38A0\n0xC2CBA8EB\t0x5EF9\n0xC2CBA8EC\t0x3429\n0xC2CBA8ED\t0x5F06\n0xC2CBA8EE\t0x5F21\n0xC2CBA8EF\t0x38AE\n0xC2CBA8F0\t0x5F25\n0xC2CBA8F1\t0x5F55\n0xC2CBA8F2\t0x38CD\n0xC2CBA8F3\t0x38CB\n0xC2CBA8F4\t0x38D9\n0xC2CBA8F5\t0x5F84\n0xC2CBA8F6\t0x5F83\n0xC2CBA8F7\t0x6030\n0xC2CBA8F8\t0x6007\n0xC2CBA8F9\t0x390C\n0xC2CBA8FA\t0x6036\n0xC2CBA8FB\t0x3901\n0xC2CBA8FC\t0x3905\n0xC2CBA8FD\t0x3902\n0xC2CBA8FE\t0x5FE9\n0xC2CBA9A1\t0x603D\n0xC2CBA9A2\t0x6008\n0xC2CBA9A3\t0x3913\n0xC2CBA9A4\t0x3911\n0xC2CBA9A5\t0x62BA\n0xC2CBA9A6\t0x62B2\n0xC2CBA9A7\t0x39E4\n0xC2CBA9A8\t0x62B7\n0xC2CBA9A9\t0x62E4\n0xC2CBA9AA\t0x62A7\n0xC2CBA9AB\t0x39DA\n0xC2CBA9AC\t0x39D5\n0xC2CBA9AD\t0x39D3\n0xC2CBA9AE\t0x62D5\n0xC2CBA9AF\t0x62E1\n0xC2CBA9B0\t0x62DD\n0xC2CBA9B1\t0x62A6\n0xC2CBA9B2\t0x62C1\n0xC2CBA9B3\t0x62C5\n0xC2CBA9B4\t0x62C0\n0xC2CBA9B5\t0x62DF\n0xC2CBA9B6\t0x62E0\n0xC2CBA9B7\t0x62DE\n0xC2CBA9B8\t0x39D6\n0xC2CBA9B9\t0x6589\n0xC2CBA9BA\t0x3AB4\n0xC2CBA9BB\t0x65A6\n0xC2CBA9BC\t0x65BA\n0xC2CBA9BD\t0x3AD9\n0xC2CBA9BE\t0x65FF\n0xC2CBA9BF\t0x3AD8\n0xC2CBA9C0\t0x6617\n0xC2CBA9C1\t0x6618\n0xC2CBA9C2\t0x6601\n0xC2CBA9C3\t0x65FE\n0xC2CBA9C4\t0x3B33\n0xC2CBA9C5\t0x670C\n0xC2CBA9C6\t0x3B48\n0xC2CBA9C7\t0x676B\n0xC2CBA9C8\t0x6796\n0xC2CBA9C9\t0x6782\n0xC2CBA9CA\t0x678A\n0xC2CBA9CB\t0x3B47\n0xC2CBA9CC\t0x67A3\n0xC2CBA9CD\t0x3B4B\n0xC2CBA9CE\t0x67A2\n0xC2CBA9CF\t0x678F\n0xC2CBA9D0\t0x3B4A\n0xC2CBA9D1\t0x67F9\n0xC2CBA9D2\t0x6780\n0xC2CBA9D3\t0x6B26\n0xC2CBA9D4\t0x6B27\n0xC2CBA9D5\t0x6B68\n0xC2CBA9D6\t0x6B69\n0xC2CBA9D7\t0x3C5A\n0xC2CBA9D8\t0x6B81\n0xC2CBA9D9\t0x6BB4\n0xC2CBA9DA\t0x6BD1\n0xC2CBA9DB\t0x3C8E\n0xC2CBA9DC\t0x3CB4\n0xC2CBA9DD\t0x6C1C\n0xC2CBA9DE\t0x3CCD\n0xC2CBA9DF\t0x3CCC\n0xC2CBA9E0\t0x3CCF\n0xC2CBA9E1\t0x3CCB\n0xC2CBA9E2\t0x3CCE\n0xC2CBA9E3\t0x6C97\n0xC2CBA9E4\t0x6C6C\n0xC2CBA9E5\t0x6CDF\n0xC2CBA9E6\t0x3CD2\n0xC2CBA9E7\t0x6CEA\n0xC2CBA9E8\t0x3CD1\n0xC2CBA9E9\t0x6CE4\n0xC2CBA9EA\t0x6CD8\n0xC2CBA9EB\t0x6CB2\n0xC2CBA9EC\t0x6CCE\n0xC2CBA9ED\t0x6CC8\n0xC2CBA9EE\t0x3DA6\n0xC2CBA9EF\t0x708B\n0xC2CBA9F0\t0x7088\n0xC2CBA9F1\t0x7090\n0xC2CBA9F2\t0x708F\n0xC2CBA9F3\t0x3DAA\n0xC2CBA9F4\t0x7087\n0xC2CBA9F5\t0x7089\n0xC2CBA9F6\t0x708D\n0xC2CBA9F7\t0x7081\n0xC2CBA9F8\t0x3DA8\n0xC2CBA9F9\t0x708C\n0xC2CBA9FA\t0x3E13\n0xC2CBA9FB\t0x3E1A\n0xC2CBA9FC\t0x7240\n0xC2CBA9FD\t0x3E1D\n0xC2CBA9FE\t0x3E1E\n0xC2CBAAA1\t0x7265\n0xC2CBAAA2\t0x7266\n0xC2CBAAA3\t0x7268\n0xC2CBAAA4\t0x3E65\n0xC2CBAAA5\t0x3E66\n0xC2CBAAA6\t0x72CD\n0xC2CBAAA7\t0x72D3\n0xC2CBAAA8\t0x72DB\n0xC2CBAAA9\t0x3E64\n0xC2CBAAAA\t0x72CF\n0xC2CBAAAB\t0x73A7\n0xC2CBAAAC\t0x73A3\n0xC2CBAAAD\t0x739E\n0xC2CBAAAE\t0x3EB0\n0xC2CBAAAF\t0x73AF\n0xC2CBAAB0\t0x3EB3\n0xC2CBAAB1\t0x3EB5\n0xC2CBAAB2\t0x73AA\n0xC2CBAAB3\t0x739C\n0xC2CBAAB4\t0x3F19\n0xC2CBAAB5\t0x7542\n0xC2CBAAB6\t0x7544\n0xC2CBAAB7\t0x753B\n0xC2CBAAB8\t0x7541\n0xC2CBAAB9\t0x2233F\n0xC2CBAABA\t0x759B\n0xC2CBAABB\t0x759E\n0xC2CBAABC\t0x3F75\n0xC2CBAABD\t0x79C4\n0xC2CBAABE\t0x79C3\n0xC2CBAABF\t0x79C6\n0xC2CBAAC0\t0x412B\n0xC2CBAAC1\t0x412C\n0xC2CBAAC2\t0x79C7\n0xC2CBAAC3\t0x412D\n0xC2CBAAC4\t0x79CA\n0xC2CBAAC5\t0x2592E\n0xC2CBAAC6\t0x41C3\n0xC2CBAAC7\t0x7ACF\n0xC2CBAAC8\t0x7C76\n0xC2CBAAC9\t0x7C74\n0xC2CBAACA\t0x7CFF\n0xC2CBAACB\t0x7CFC\n0xC2CBAACC\t0x34BA\n0xC2CBAACD\t0x4350\n0xC2CBAACE\t0x7F59\n0xC2CBAACF\t0x80A8\n0xC2CBAAD0\t0x43D3\n0xC2CBAAD1\t0x43D0\n0xC2CBAAD2\t0x80B0\n0xC2CBAAD3\t0x43DC\n0xC2CBAAD4\t0x80B3\n0xC2CBAAD5\t0x43D2\n0xC2CBAAD6\t0x80A4\n0xC2CBAAD7\t0x80B6\n0xC2CBAAD8\t0x80A7\n0xC2CBAAD9\t0x80AC\n0xC2CBAADA\t0x43DB\n0xC2CBAADB\t0x80A6\n0xC2CBAADC\t0x5367\n0xC2CBAADD\t0x820E\n0xC2CBAADE\t0x82C4\n0xC2CBAADF\t0x833E\n0xC2CBAAE0\t0x829C\n0xC2CBAAE1\t0x44A5\n0xC2CBAAE2\t0x449F\n0xC2CBAAE3\t0x449A\n0xC2CBAAE4\t0x449C\n0xC2CBAAE5\t0x44A2\n0xC2CBAAE6\t0x82AA\n0xC2CBAAE7\t0x449B\n0xC2CBAAE8\t0x82C9\n0xC2CBAAE9\t0x44A3\n0xC2CBAAEA\t0x449D\n0xC2CBAAEB\t0x82A6\n0xC2CBAAEC\t0x82B2\n0xC2CBAAED\t0x4588\n0xC2CBAAEE\t0x461A\n0xC2CBAAEF\t0x488D\n0xC2CBAAF0\t0x8FCC\n0xC2CBAAF1\t0x8FD9\n0xC2CBAAF2\t0x8FCA\n0xC2CBAAF3\t0x8FD8\n0xC2CBAAF4\t0x8FCF\n0xC2CBAAF5\t0x90B7\n0xC2CBAAF6\t0x48B8\n0xC2CBAAF7\t0x90AD\n0xC2CBAAF8\t0x90B9\n0xC2CBAAF9\t0x9637\n0xC2CBAAFA\t0x49C3\n0xC2CBAAFB\t0x9641\n0xC2CBAAFC\t0x963E\n0xC2CBAAFD\t0x96B6\n0xC2CBAAFE\t0x9751\n0xC2CBABA1\t0x9763\n0xC2CBABA2\t0x4E57\n0xC2CBABA3\t0x4E79\n0xC2CBABA4\t0x4EB2\n0xC2CBABA5\t0x4EB0\n0xC2CBABA6\t0x4EAF\n0xC2CBABA7\t0x4EB1\n0xC2CBABA8\t0x4FD2\n0xC2CBABA9\t0x4FD5\n0xC2CBABAA\t0x345D\n0xC2CBABAB\t0x4FBE\n0xC2CBABAC\t0x4FB8\n0xC2CBABAD\t0x4FB0\n0xC2CBABAE\t0x4FB1\n0xC2CBABAF\t0x4FC8\n0xC2CBABB0\t0x345A\n0xC2CBABB1\t0x3457\n0xC2CBABB2\t0x4FC6\n0xC2CBABB3\t0x4FCC\n0xC2CBABB4\t0x4FE5\n0xC2CBABB5\t0x4FE3\n0xC2CBABB6\t0x4FB4\n0xC2CBABB7\t0x516A\n0xC2CBABB8\t0x34B8\n0xC2CBABB9\t0x519F\n0xC2CBABBA\t0x34C2\n0xC2CBABBB\t0x51C1\n0xC2CBABBC\t0x34CF\n0xC2CBABBD\t0x51C2\n0xC2CBABBE\t0x51C3\n0xC2CBABBF\t0x5245\n0xC2CBABC0\t0x5248\n0xC2CBABC1\t0x34E7\n0xC2CBABC2\t0x34E9\n0xC2CBABC3\t0x524F\n0xC2CBABC4\t0x4452\n0xC2CBABC5\t0x34E8\n0xC2CBABC6\t0x52C5\n0xC2CBABC7\t0x52CA\n0xC2CBABC8\t0x52C4\n0xC2CBABC9\t0x5327\n0xC2CBABCA\t0x5358\n0xC2CBABCB\t0x537D\n0xC2CBABCC\t0x354A\n0xC2CBABCD\t0x53DD\n0xC2CBABCE\t0x53DC\n0xC2CBABCF\t0x53DA\n0xC2CBABD0\t0x53D9\n0xC2CBABD1\t0x54B9\n0xC2CBABD2\t0x3580\n0xC2CBABD3\t0x54D0\n0xC2CBABD4\t0x54B4\n0xC2CBABD5\t0x54CA\n0xC2CBABD6\t0x3587\n0xC2CBABD7\t0x54A3\n0xC2CBABD8\t0x54DA\n0xC2CBABD9\t0x54A4\n0xC2CBABDA\t0x3584\n0xC2CBABDB\t0x54B2\n0xC2CBABDC\t0x549E\n0xC2CBABDD\t0x549F\n0xC2CBABDE\t0x54B5\n0xC2CBABDF\t0x3582\n0xC2CBABE0\t0x3581\n0xC2CBABE1\t0x54CD\n0xC2CBABE2\t0x3583\n0xC2CBABE3\t0x54CC\n0xC2CBABE4\t0x3622\n0xC2CBABE5\t0x5700\n0xC2CBABE6\t0x57AC\n0xC2CBABE7\t0x5791\n0xC2CBABE8\t0x578E\n0xC2CBABE9\t0x578D\n0xC2CBABEA\t0x5792\n0xC2CBABEB\t0x57A1\n0xC2CBABEC\t0x5790\n0xC2CBABED\t0x57A6\n0xC2CBABEE\t0x57A8\n0xC2CBABEF\t0x363B\n0xC2CBABF0\t0x579C\n0xC2CBABF1\t0x5796\n0xC2CBABF2\t0x57A7\n0xC2CBABF3\t0x363A\n0xC2CBABF4\t0x3638\n0xC2CBABF5\t0x3639\n0xC2CBABF6\t0x3636\n0xC2CBABF7\t0x58F5\n0xC2CBABF8\t0x3685\n0xC2CBABF9\t0x5909\n0xC2CBABFA\t0x5908\n0xC2CBABFB\t0x3C54\n0xC2CBABFC\t0x5952\n0xC2CBABFD\t0x369A\n0xC2CBABFE\t0x36C4\n0xC2CBACA1\t0x59DF\n0xC2CBACA2\t0x36C5\n0xC2CBACA3\t0x59EB\n0xC2CBACA4\t0x59EF\n0xC2CBACA5\t0x59F0\n0xC2CBACA6\t0x59D5\n0xC2CBACA7\t0x5A0D\n0xC2CBACA8\t0x5A04\n0xC2CBACA9\t0x59F9\n0xC2CBACAA\t0x5A02\n0xC2CBACAB\t0x59F8\n0xC2CBACAC\t0x59E2\n0xC2CBACAD\t0x59D9\n0xC2CBACAE\t0x59E7\n0xC2CBACAF\t0x5B6A\n0xC2CBACB0\t0x3754\n0xC2CBACB1\t0x3755\n0xC2CBACB2\t0x5BAB\n0xC2CBACB3\t0x3756\n0xC2CBACB4\t0x5C1B\n0xC2CBACB5\t0x5C2F\n0xC2CBACB6\t0x3796\n0xC2CBACB7\t0x663C\n0xC2CBACB8\t0x3795\n0xC2CBACB9\t0x3794\n0xC2CBACBA\t0x37C4\n0xC2CBACBB\t0x5CD1\n0xC2CBACBC\t0x5CDC\n0xC2CBACBD\t0x5CE6\n0xC2CBACBE\t0x5CE1\n0xC2CBACBF\t0x5CCD\n0xC2CBACC0\t0x2F87A\n0xC2CBACC1\t0x5CE2\n0xC2CBACC2\t0x5CDD\n0xC2CBACC3\t0x5CE5\n0xC2CBACC4\t0x5DFB\n0xC2CBACC5\t0x5DFA\n0xC2CBACC6\t0x5E1E\n0xC2CBACC7\t0x3844\n0xC2CBACC8\t0x5EA1\n0xC2CBACC9\t0x387D\n0xC2CBACCA\t0x387E\n0xC2CBACCB\t0x5EFC\n0xC2CBACCC\t0x5EFB\n0xC2CBACCD\t0x5F2F\n0xC2CBACCE\t0x38B2\n0xC2CBACCF\t0x38B6\n0xC2CBACD0\t0x5F66\n0xC2CBACD1\t0x2F899\n0xC2CBACD2\t0x38DC\n0xC2CBACD3\t0x38DF\n0xC2CBACD4\t0x605C\n0xC2CBACD5\t0x3928\n0xC2CBACD6\t0x604E\n0xC2CBACD7\t0x6051\n0xC2CBACD8\t0x3919\n0xC2CBACD9\t0x3910\n0xC2CBACDA\t0x6023\n0xC2CBACDB\t0x6031\n0xC2CBACDC\t0x607C\n0xC2CBACDD\t0x6052\n0xC2CBACDE\t0x392C\n0xC2CBACDF\t0x6060\n0xC2CBACE0\t0x604A\n0xC2CBACE1\t0x6061\n0xC2CBACE2\t0x391B\n0xC2CBACE3\t0x6218\n0xC2CBACE4\t0x39C2\n0xC2CBACE5\t0x39EF\n0xC2CBACE6\t0x39E3\n0xC2CBACE7\t0x39E5\n0xC2CBACE8\t0x39EA\n0xC2CBACE9\t0x39E6\n0xC2CBACEA\t0x39EE\n0xC2CBACEB\t0x631F\n0xC2CBACEC\t0x6317\n0xC2CBACED\t0x62EA\n0xC2CBACEE\t0x6321\n0xC2CBACEF\t0x6304\n0xC2CBACF0\t0x6305\n0xC2CBACF1\t0x39E8\n0xC2CBACF2\t0x6531\n0xC2CBACF3\t0x6544\n0xC2CBACF4\t0x6540\n0xC2CBACF5\t0x3A85\n0xC2CBACF6\t0x6542\n0xC2CBACF7\t0x65BE\n0xC2CBACF8\t0x3AE0\n0xC2CBACF9\t0x6629\n0xC2CBACFA\t0x661B\n0xC2CBACFB\t0x3ADD\n0xC2CBACFC\t0x6623\n0xC2CBACFD\t0x662C\n0xC2CBACFE\t0x661A\n0xC2CBADA1\t0x6630\n0xC2CBADA2\t0x663B\n0xC2CBADA3\t0x661E\n0xC2CBADA4\t0x6637\n0xC2CBADA5\t0x6638\n0xC2CBADA6\t0x3AE1\n0xC2CBADA7\t0x670E\n0xC2CBADA8\t0x3B51\n0xC2CBADA9\t0x3B55\n0xC2CBADAA\t0x67E8\n0xC2CBADAB\t0x67D6\n0xC2CBADAC\t0x3B52\n0xC2CBADAD\t0x67C7\n0xC2CBADAE\t0x67BC\n0xC2CBADAF\t0x6852\n0xC2CBADB0\t0x67BF\n0xC2CBADB1\t0x67D5\n0xC2CBADB2\t0x67FE\n0xC2CBADB3\t0x8363\n0xC2CBADB4\t0x67FB\n0xC2CBADB5\t0x2F8DF\n0xC2CBADB6\t0x67B1\n0xC2CBADB7\t0x6801\n0xC2CBADB8\t0x6805\n0xC2CBADB9\t0x6800\n0xC2CBADBA\t0x67D7\n0xC2CBADBB\t0x409E\n0xC2CBADBC\t0x6B2A\n0xC2CBADBD\t0x6B6B\n0xC2CBADBE\t0x3C52\n0xC2CBADBF\t0x3C5E\n0xC2CBADC0\t0x3C60\n0xC2CBADC1\t0x3C5F\n0xC2CBADC2\t0x6BE1\n0xC2CBADC3\t0x3C92\n0xC2CBADC4\t0x3CD6\n0xC2CBADC5\t0x6D23\n0xC2CBADC6\t0x6CFF\n0xC2CBADC7\t0x6D14\n0xC2CBADC8\t0x6D05\n0xC2CBADC9\t0x6D13\n0xC2CBADCA\t0x6D06\n0xC2CBADCB\t0x6D21\n0xC2CBADCC\t0x3CDE\n0xC2CBADCD\t0x6D15\n0xC2CBADCE\t0x6CAF\n0xC2CBADCF\t0x6CF4\n0xC2CBADD0\t0x6D02\n0xC2CBADD1\t0x6D45\n0xC2CBADD2\t0x2F8FE\n0xC2CBADD3\t0x6D26\n0xC2CBADD4\t0x3CD9\n0xC2CBADD5\t0x6D44\n0xC2CBADD6\t0x3CDD\n0xC2CBADD7\t0x6D24\n0xC2CBADD8\t0x70A5\n0xC2CBADD9\t0x3DAC\n0xC2CBADDA\t0x70A3\n0xC2CBADDB\t0x3DB0\n0xC2CBADDC\t0x70A2\n0xC2CBADDD\t0x70BB\n0xC2CBADDE\t0x70A0\n0xC2CBADDF\t0x70AA\n0xC2CBADE0\t0x3DAF\n0xC2CBADE1\t0x3DAE\n0xC2CBADE2\t0x70A8\n0xC2CBADE3\t0x70B6\n0xC2CBADE4\t0x70B2\n0xC2CBADE5\t0x70A7\n0xC2CBADE6\t0x3DAD\n0xC2CBADE7\t0x3DAB\n0xC2CBADE8\t0x70B9\n0xC2CBADE9\t0x722E\n0xC2CBADEA\t0x3E16\n0xC2CBADEB\t0x723C\n0xC2CBADEC\t0x3E30\n0xC2CBADED\t0x726D\n0xC2CBADEE\t0x3E33\n0xC2CBADEF\t0x3E31\n0xC2CBADF0\t0x72E7\n0xC2CBADF1\t0x72ED\n0xC2CBADF2\t0x3E6E\n0xC2CBADF3\t0x72EC\n0xC2CBADF4\t0x72E5\n0xC2CBADF5\t0x72E2\n0xC2CBADF6\t0x3EB1\n0xC2CBADF7\t0x73C4\n0xC2CBADF8\t0x73BD\n0xC2CBADF9\t0x73CF\n0xC2CBADFA\t0x73C9\n0xC2CBADFB\t0x73C1\n0xC2CBADFC\t0x73D0\n0xC2CBADFD\t0x3EB7\n0xC2CBADFE\t0x73CE\n0xC2CBAEA1\t0x74ED\n0xC2CBAEA2\t0x74EB\n0xC2CBAEA3\t0x3F1A\n0xC2CBAEA4\t0x74EF\n0xC2CBAEA5\t0x7549\n0xC2CBAEA6\t0x7550\n0xC2CBAEA7\t0x7546\n0xC2CBAEA8\t0x754A\n0xC2CBAEA9\t0x3F59\n0xC2CBAEAA\t0x754D\n0xC2CBAEAB\t0x75A6\n0xC2CBAEAC\t0x3F7A\n0xC2CBAEAD\t0x3F78\n0xC2CBAEAE\t0x3F7B\n0xC2CBAEAF\t0x75A8\n0xC2CBAEB0\t0x3FDE\n0xC2CBAEB1\t0x3FEC\n0xC2CBAEB2\t0x76C7\n0xC2CBAEB3\t0x76FF\n0xC2CBAEB4\t0x401E\n0xC2CBAEB5\t0x76FD\n0xC2CBAEB6\t0x77E6\n0xC2CBAEB7\t0x780A\n0xC2CBAEB8\t0x409B\n0xC2CBAEB9\t0x7804\n0xC2CBAEBA\t0x780B\n0xC2CBAEBB\t0x7807\n0xC2CBAEBC\t0x409D\n0xC2CBAEBD\t0x7815\n0xC2CBAEBE\t0x7808\n0xC2CBAEBF\t0x40FD\n0xC2CBAEC0\t0x79D3\n0xC2CBAEC1\t0x79D4\n0xC2CBAEC2\t0x79D0\n0xC2CBAEC3\t0x79D7\n0xC2CBAEC4\t0x7A7C\n0xC2CBAEC5\t0x4194\n0xC2CBAEC6\t0x4193\n0xC2CBAEC7\t0x7A7D\n0xC2CBAEC8\t0x7A83\n0xC2CBAEC9\t0x7A82\n0xC2CBAECA\t0x41C6\n0xC2CBAECB\t0x7AD4\n0xC2CBAECC\t0x7AD5\n0xC2CBAECD\t0x7AD3\n0xC2CBAECE\t0x7AD0\n0xC2CBAECF\t0x7AD2\n0xC2CBAED0\t0x7AFE\n0xC2CBAED1\t0x7AFC\n0xC2CBAED2\t0x7C77\n0xC2CBAED3\t0x7C7C\n0xC2CBAED4\t0x7C7B\n0xC2CBAED5\t0x42B8\n0xC2CBAED6\t0x2F96A\n0xC2CBAED7\t0x42B7\n0xC2CBAED8\t0x42B9\n0xC2CBAED9\t0x4353\n0xC2CBAEDA\t0x25133\n0xC2CBAEDB\t0x4352\n0xC2CBAEDC\t0x4351\n0xC2CBAEDD\t0x7F8F\n0xC2CBAEDE\t0x80D3\n0xC2CBAEDF\t0x43E3\n0xC2CBAEE0\t0x80CB\n0xC2CBAEE1\t0x80D2\n0xC2CBAEE2\t0x43E2\n0xC2CBAEE3\t0x8109\n0xC2CBAEE4\t0x80E2\n0xC2CBAEE5\t0x80DF\n0xC2CBAEE6\t0x80C6\n0xC2CBAEE7\t0x4463\n0xC2CBAEE8\t0x8224\n0xC2CBAEE9\t0x82F7\n0xC2CBAEEA\t0x82D8\n0xC2CBAEEB\t0x82DD\n0xC2CBAEEC\t0x44AA\n0xC2CBAEED\t0x44A6\n0xC2CBAEEE\t0x82F8\n0xC2CBAEEF\t0x82FC\n0xC2CBAEF0\t0x44A8\n0xC2CBAEF1\t0x44A9\n0xC2CBAEF2\t0x82E9\n0xC2CBAEF3\t0x44AB\n0xC2CBAEF4\t0x82EE\n0xC2CBAEF5\t0x44AC\n0xC2CBAEF6\t0x82D0\n0xC2CBAEF7\t0x830E\n0xC2CBAEF8\t0x82E2\n0xC2CBAEF9\t0x830B\n0xC2CBAEFA\t0x82FD\n0xC2CBAEFB\t0x5179\n0xC2CBAEFC\t0x8676\n0xC2CBAEFD\t0x459E\n0xC2CBAEFE\t0x8678\n0xC2CBAFA1\t0x459F\n0xC2CBAFA2\t0x45A0\n0xC2CBAFA3\t0x8675\n0xC2CBAFA4\t0x867D\n0xC2CBAFA5\t0x460F\n0xC2CBAFA6\t0x8842\n0xC2CBAFA7\t0x8866\n0xC2CBAFA8\t0x461C\n0xC2CBAFA9\t0x898C\n0xC2CBAFAA\t0x8A05\n0xC2CBAFAB\t0x46AE\n0xC2CBAFAC\t0x8A06\n0xC2CBAFAD\t0x46B0\n0xC2CBAFAE\t0x8C9F\n0xC2CBAFAF\t0x47D4\n0xC2CBAFB0\t0x8FF1\n0xC2CBAFB1\t0x8FE7\n0xC2CBAFB2\t0x8FE9\n0xC2CBAFB3\t0x8FEF\n0xC2CBAFB4\t0x90C2\n0xC2CBAFB5\t0x90BC\n0xC2CBAFB6\t0x48BB\n0xC2CBAFB7\t0x90C6\n0xC2CBAFB8\t0x90C0\n0xC2CBAFB9\t0x48C1\n0xC2CBAFBA\t0x48C2\n0xC2CBAFBB\t0x90CD\n0xC2CBAFBC\t0x90C9\n0xC2CBAFBD\t0x48BE\n0xC2CBAFBE\t0x90C4\n0xC2CBAFBF\t0x48E5\n0xC2CBAFC0\t0x9581\n0xC2CBAFC1\t0x49C6\n0xC2CBAFC2\t0x9CEC\n0xC2CBAFC3\t0x5032\n0xC2CBAFC4\t0x4FF9\n0xC2CBAFC5\t0x501D\n0xC2CBAFC6\t0x4FFF\n0xC2CBAFC7\t0x5004\n0xC2CBAFC8\t0x4FF0\n0xC2CBAFC9\t0x5003\n0xC2CBAFCA\t0x462E\n0xC2CBAFCB\t0x5002\n0xC2CBAFCC\t0x4FFC\n0xC2CBAFCD\t0x4FF2\n0xC2CBAFCE\t0x5024\n0xC2CBAFCF\t0x5008\n0xC2CBAFD0\t0x5036\n0xC2CBAFD1\t0x502E\n0xC2CBAFD2\t0x3465\n0xC2CBAFD3\t0x5010\n0xC2CBAFD4\t0x5038\n0xC2CBAFD5\t0x5039\n0xC2CBAFD6\t0x4FFD\n0xC2CBAFD7\t0x5056\n0xC2CBAFD8\t0x4FFB\n0xC2CBAFD9\t0x51A3\n0xC2CBAFDA\t0x51A6\n0xC2CBAFDB\t0x51A1\n0xC2CBAFDC\t0x34D1\n0xC2CBAFDD\t0x34D0\n0xC2CBAFDE\t0x51C7\n0xC2CBAFDF\t0x51C9\n0xC2CBAFE0\t0x5260\n0xC2CBAFE1\t0x5264\n0xC2CBAFE2\t0x5259\n0xC2CBAFE3\t0x5265\n0xC2CBAFE4\t0x5267\n0xC2CBAFE5\t0x5257\n0xC2CBAFE6\t0x5263\n0xC2CBAFE7\t0x34EE\n0xC2CBAFE8\t0x5253\n0xC2CBAFE9\t0x34EF\n0xC2CBAFEA\t0x52CF\n0xC2CBAFEB\t0x351E\n0xC2CBAFEC\t0x52CE\n0xC2CBAFED\t0x52D0\n0xC2CBAFEE\t0x52D1\n0xC2CBAFEF\t0x52CC\n0xC2CBAFF0\t0x354B\n0xC2CBAFF1\t0x354D\n0xC2CBAFF2\t0x3556\n0xC2CBAFF3\t0x550D\n0xC2CBAFF4\t0x54F4\n0xC2CBAFF5\t0x3592\n0xC2CBAFF6\t0x5513\n0xC2CBAFF7\t0x54EF\n0xC2CBAFF8\t0x54F5\n0xC2CBAFF9\t0x54F9\n0xC2CBAFFA\t0x5502\n0xC2CBAFFB\t0x5500\n0xC2CBAFFC\t0x3593\n0xC2CBAFFD\t0x3590\n0xC2CBAFFE\t0x5518\n0xC2CBB0A1\t0x54F0\n0xC2CBB0A2\t0x54F6\n0xC2CBB0A3\t0x2F841\n0xC2CBB0A4\t0x3597\n0xC2CBB0A5\t0x5519\n0xC2CBB0A6\t0x3623\n0xC2CBB0A7\t0x5705\n0xC2CBB0A8\t0x57C9\n0xC2CBB0A9\t0x363F\n0xC2CBB0AA\t0x57B7\n0xC2CBB0AB\t0x57CD\n0xC2CBB0AC\t0x3643\n0xC2CBB0AD\t0x3642\n0xC2CBB0AE\t0x3644\n0xC2CBB0AF\t0x57BE\n0xC2CBB0B0\t0x57BB\n0xC2CBB0B1\t0x3645\n0xC2CBB0B2\t0x57DB\n0xC2CBB0B3\t0x57C8\n0xC2CBB0B4\t0x57C4\n0xC2CBB0B5\t0x57C5\n0xC2CBB0B6\t0x57D1\n0xC2CBB0B7\t0x57CA\n0xC2CBB0B8\t0x57C0\n0xC2CBB0B9\t0x36D9\n0xC2CBB0BA\t0x36DE\n0xC2CBB0BB\t0x5A21\n0xC2CBB0BC\t0x5A2A\n0xC2CBB0BD\t0x36CF\n0xC2CBB0BE\t0x5A1D\n0xC2CBB0BF\t0x36CD\n0xC2CBB0C0\t0x5A0B\n0xC2CBB0C1\t0x36DD\n0xC2CBB0C2\t0x36CE\n0xC2CBB0C3\t0x36D3\n0xC2CBB0C4\t0x36D6\n0xC2CBB0C5\t0x5A22\n0xC2CBB0C6\t0x36DC\n0xC2CBB0C7\t0x36D1\n0xC2CBB0C8\t0x5A24\n0xC2CBB0C9\t0x36D0\n0xC2CBB0CA\t0x5A14\n0xC2CBB0CB\t0x5A31\n0xC2CBB0CC\t0x36D5\n0xC2CBB0CD\t0x5A2F\n0xC2CBB0CE\t0x5A1A\n0xC2CBB0CF\t0x5A12\n0xC2CBB0D0\t0x36D4\n0xC2CBB0D1\t0x36DB\n0xC2CBB0D2\t0x5A26\n0xC2CBB0D3\t0x2172E\n0xC2CBB0D4\t0x3743\n0xC2CBB0D5\t0x5BBC\n0xC2CBB0D6\t0x5BBB\n0xC2CBB0D7\t0x5BB7\n0xC2CBB0D8\t0x5C05\n0xC2CBB0D9\t0x5C06\n0xC2CBB0DA\t0x5C52\n0xC2CBB0DB\t0x5C53\n0xC2CBB0DC\t0x37CD\n0xC2CBB0DD\t0x37D1\n0xC2CBB0DE\t0x5CFA\n0xC2CBB0DF\t0x5CEB\n0xC2CBB0E0\t0x37CA\n0xC2CBB0E1\t0x5CF3\n0xC2CBB0E2\t0x5CF5\n0xC2CBB0E3\t0x5CE9\n0xC2CBB0E4\t0x5CEF\n0xC2CBB0E5\t0x37D4\n0xC2CBB0E6\t0x5E2A\n0xC2CBB0E7\t0x5E30\n0xC2CBB0E8\t0x5E2E\n0xC2CBB0E9\t0x5E2C\n0xC2CBB0EA\t0x5E2F\n0xC2CBB0EB\t0x5EAF\n0xC2CBB0EC\t0x5EA9\n0xC2CBB0ED\t0x3886\n0xC2CBB0EE\t0x5EFD\n0xC2CBB0EF\t0x5F32\n0xC2CBB0F0\t0x5F8E\n0xC2CBB0F1\t0x5F93\n0xC2CBB0F2\t0x5F8F\n0xC2CBB0F3\t0x604F\n0xC2CBB0F4\t0x6099\n0xC2CBB0F5\t0x3933\n0xC2CBB0F6\t0x607E\n0xC2CBB0F7\t0x3937\n0xC2CBB0F8\t0x6074\n0xC2CBB0F9\t0x604B\n0xC2CBB0FA\t0x6073\n0xC2CBB0FB\t0x6075\n0xC2CBB0FC\t0x392A\n0xC2CBB0FD\t0x391F\n0xC2CBB0FE\t0x6056\n0xC2CBB1A1\t0x60A9\n0xC2CBB1A2\t0x608B\n0xC2CBB1A3\t0x60A6\n0xC2CBB1A4\t0x3939\n0xC2CBB1A5\t0x6093\n0xC2CBB1A6\t0x60AE\n0xC2CBB1A7\t0x609E\n0xC2CBB1A8\t0x60A7\n0xC2CBB1A9\t0x6245\n0xC2CBB1AA\t0x39F2\n0xC2CBB1AB\t0x39F8\n0xC2CBB1AC\t0x632E\n0xC2CBB1AD\t0x39F7\n0xC2CBB1AE\t0x6352\n0xC2CBB1AF\t0x6330\n0xC2CBB1B0\t0x635B\n0xC2CBB1B1\t0x39F4\n0xC2CBB1B2\t0x6319\n0xC2CBB1B3\t0x631B\n0xC2CBB1B4\t0x39F1\n0xC2CBB1B5\t0x6331\n0xC2CBB1B6\t0x635D\n0xC2CBB1B7\t0x6337\n0xC2CBB1B8\t0x6335\n0xC2CBB1B9\t0x6353\n0xC2CBB1BA\t0x39F5\n0xC2CBB1BB\t0x635C\n0xC2CBB1BC\t0x633F\n0xC2CBB1BD\t0x654B\n0xC2CBB1BE\t0x3A87\n0xC2CBB1BF\t0x4369\n0xC2CBB1C0\t0x658B\n0xC2CBB1C1\t0x3AB6\n0xC2CBB1C2\t0x659A\n0xC2CBB1C3\t0x6650\n0xC2CBB1C4\t0x6646\n0xC2CBB1C5\t0x664E\n0xC2CBB1C6\t0x6640\n0xC2CBB1C7\t0x3AE9\n0xC2CBB1C8\t0x664B\n0xC2CBB1C9\t0x6648\n0xC2CBB1CA\t0x3AEB\n0xC2CBB1CB\t0x6660\n0xC2CBB1CC\t0x6644\n0xC2CBB1CD\t0x664D\n0xC2CBB1CE\t0x3B34\n0xC2CBB1CF\t0x6837\n0xC2CBB1D0\t0x6824\n0xC2CBB1D1\t0x3B62\n0xC2CBB1D2\t0x3B5C\n0xC2CBB1D3\t0x681B\n0xC2CBB1D4\t0x6836\n0xC2CBB1D5\t0x3B60\n0xC2CBB1D6\t0x682C\n0xC2CBB1D7\t0x6819\n0xC2CBB1D8\t0x6856\n0xC2CBB1D9\t0x6847\n0xC2CBB1DA\t0x683E\n0xC2CBB1DB\t0x681E\n0xC2CBB1DC\t0x2F8E1\n0xC2CBB1DD\t0x6815\n0xC2CBB1DE\t0x6822\n0xC2CBB1DF\t0x6827\n0xC2CBB1E0\t0x6859\n0xC2CBB1E1\t0x6858\n0xC2CBB1E2\t0x6855\n0xC2CBB1E3\t0x6830\n0xC2CBB1E4\t0x6823\n0xC2CBB1E5\t0x6B2E\n0xC2CBB1E6\t0x6B2B\n0xC2CBB1E7\t0x6B30\n0xC2CBB1E8\t0x6B6C\n0xC2CBB1E9\t0x3C61\n0xC2CBB1EA\t0x6B8B\n0xC2CBB1EB\t0x3C7F\n0xC2CBB1EC\t0x6BE9\n0xC2CBB1ED\t0x6BEA\n0xC2CBB1EE\t0x6BE5\n0xC2CBB1EF\t0x6D6B\n0xC2CBB1F0\t0x3CE5\n0xC2CBB1F1\t0x3CE6\n0xC2CBB1F2\t0x6D73\n0xC2CBB1F3\t0x6D57\n0xC2CBB1F4\t0x3CE9\n0xC2CBB1F5\t0x3CF3\n0xC2CBB1F6\t0x6D5D\n0xC2CBB1F7\t0x6D56\n0xC2CBB1F8\t0x6D8F\n0xC2CBB1F9\t0x6D5B\n0xC2CBB1FA\t0x6D1C\n0xC2CBB1FB\t0x6D9A\n0xC2CBB1FC\t0x6D9B\n0xC2CBB1FD\t0x6D99\n0xC2CBB1FE\t0x3CEE\n0xC2CBB2A1\t0x6D81\n0xC2CBB2A2\t0x6D71\n0xC2CBB2A3\t0x3CED\n0xC2CBB2A4\t0x3CEC\n0xC2CBB2A5\t0x6D72\n0xC2CBB2A6\t0x6D5C\n0xC2CBB2A7\t0x6D96\n0xC2CBB2A8\t0x70C4\n0xC2CBB2A9\t0x70DB\n0xC2CBB2AA\t0x70CC\n0xC2CBB2AB\t0x70D0\n0xC2CBB2AC\t0x70E3\n0xC2CBB2AD\t0x70DF\n0xC2CBB2AE\t0x3DB3\n0xC2CBB2AF\t0x70D6\n0xC2CBB2B0\t0x70EE\n0xC2CBB2B1\t0x70D5\n0xC2CBB2B2\t0x3DB5\n0xC2CBB2B3\t0x3E27\n0xC2CBB2B4\t0x3E35\n0xC2CBB2B5\t0x3E36\n0xC2CBB2B6\t0x727A\n0xC2CBB2B7\t0x3E71\n0xC2CBB2B8\t0x72F5\n0xC2CBB2B9\t0x7302\n0xC2CBB2BA\t0x3EB8\n0xC2CBB2BB\t0x3EC2\n0xC2CBB2BC\t0x73E2\n0xC2CBB2BD\t0x73EC\n0xC2CBB2BE\t0x73D5\n0xC2CBB2BF\t0x73F9\n0xC2CBB2C0\t0x73DF\n0xC2CBB2C1\t0x73E6\n0xC2CBB2C2\t0x3EC8\n0xC2CBB2C3\t0x3EC0\n0xC2CBB2C4\t0x3EC1\n0xC2CBB2C5\t0x3EC4\n0xC2CBB2C6\t0x73E4\n0xC2CBB2C7\t0x73E1\n0xC2CBB2C8\t0x74F3\n0xC2CBB2C9\t0x3F1F\n0xC2CBB2CA\t0x3F1C\n0xC2CBB2CB\t0x3F1D\n0xC2CBB2CC\t0x3F4D\n0xC2CBB2CD\t0x7556\n0xC2CBB2CE\t0x7555\n0xC2CBB2CF\t0x7558\n0xC2CBB2D0\t0x7557\n0xC2CBB2D1\t0x755E\n0xC2CBB2D2\t0x75C3\n0xC2CBB2D3\t0x3F87\n0xC2CBB2D4\t0x3F82\n0xC2CBB2D5\t0x75B4\n0xC2CBB2D6\t0x3F7D\n0xC2CBB2D7\t0x75B1\n0xC2CBB2D8\t0x3FDF\n0xC2CBB2D9\t0x4000\n0xC2CBB2DA\t0x76CB\n0xC2CBB2DB\t0x76CC\n0xC2CBB2DC\t0x772A\n0xC2CBB2DD\t0x4020\n0xC2CBB2DE\t0x7716\n0xC2CBB2DF\t0x770F\n0xC2CBB2E0\t0x4022\n0xC2CBB2E1\t0x4024\n0xC2CBB2E2\t0x773F\n0xC2CBB2E3\t0x772B\n0xC2CBB2E4\t0x770E\n0xC2CBB2E5\t0x7724\n0xC2CBB2E6\t0x4021\n0xC2CBB2E7\t0x7721\n0xC2CBB2E8\t0x7718\n0xC2CBB2E9\t0x77DD\n0xC2CBB2EA\t0x40A4\n0xC2CBB2EB\t0x40A5\n0xC2CBB2EC\t0x7824\n0xC2CBB2ED\t0x7836\n0xC2CBB2EE\t0x4101\n0xC2CBB2EF\t0x7958\n0xC2CBB2F0\t0x7959\n0xC2CBB2F1\t0x4103\n0xC2CBB2F2\t0x7962\n0xC2CBB2F3\t0x79DA\n0xC2CBB2F4\t0x79D9\n0xC2CBB2F5\t0x4137\n0xC2CBB2F6\t0x79E1\n0xC2CBB2F7\t0x79E5\n0xC2CBB2F8\t0x79E8\n0xC2CBB2F9\t0x79DB\n0xC2CBB2FA\t0x4138\n0xC2CBB2FB\t0x79E2\n0xC2CBB2FC\t0x79F0\n0xC2CBB2FD\t0x4199\n0xC2CBB2FE\t0x4198\n0xC2CBB3A1\t0x4197\n0xC2CBB3A2\t0x41C9\n0xC2CBB3A3\t0x7ADA\n0xC2CBB3A4\t0x7ADD\n0xC2CBB3A5\t0x41C7\n0xC2CBB3A6\t0x7ADB\n0xC2CBB3A7\t0x7ADC\n0xC2CBB3A8\t0x41D9\n0xC2CBB3A9\t0x41DB\n0xC2CBB3AA\t0x7B0D\n0xC2CBB3AB\t0x7B0B\n0xC2CBB3AC\t0x7B14\n0xC2CBB3AD\t0x7C8E\n0xC2CBB3AE\t0x7C86\n0xC2CBB3AF\t0x427B\n0xC2CBB3B0\t0x7C87\n0xC2CBB3B1\t0x7C83\n0xC2CBB3B2\t0x7C8B\n0xC2CBB3B3\t0x427C\n0xC2CBB3B4\t0x42BD\n0xC2CBB3B5\t0x42BC\n0xC2CBB3B6\t0x42C3\n0xC2CBB3B7\t0x7D24\n0xC2CBB3B8\t0x42C1\n0xC2CBB3B9\t0x42BF\n0xC2CBB3BA\t0x42C4\n0xC2CBB3BB\t0x7D25\n0xC2CBB3BC\t0x7F62\n0xC2CBB3BD\t0x7F93\n0xC2CBB3BE\t0x7F99\n0xC2CBB3BF\t0x7F97\n0xC2CBB3C0\t0x437E\n0xC2CBB3C1\t0x437F\n0xC2CBB3C2\t0x7FC4\n0xC2CBB3C3\t0x7FC6\n0xC2CBB3C4\t0x800A\n0xC2CBB3C5\t0x43B4\n0xC2CBB3C6\t0x43B3\n0xC2CBB3C7\t0x8040\n0xC2CBB3C8\t0x803C\n0xC2CBB3C9\t0x803B\n0xC2CBB3CA\t0x80F6\n0xC2CBB3CB\t0x80FF\n0xC2CBB3CC\t0x80EE\n0xC2CBB3CD\t0x8104\n0xC2CBB3CE\t0x8103\n0xC2CBB3CF\t0x8107\n0xC2CBB3D0\t0x2F983\n0xC2CBB3D1\t0x43E6\n0xC2CBB3D2\t0x80F7\n0xC2CBB3D3\t0x4459\n0xC2CBB3D4\t0x445A\n0xC2CBB3D5\t0x822D\n0xC2CBB3D6\t0x4464\n0xC2CBB3D7\t0x8227\n0xC2CBB3D8\t0x8229\n0xC2CBB3D9\t0x831F\n0xC2CBB3DA\t0x8357\n0xC2CBB3DB\t0x44B4\n0xC2CBB3DC\t0x44B9\n0xC2CBB3DD\t0x44B7\n0xC2CBB3DE\t0x44B5\n0xC2CBB3DF\t0x8321\n0xC2CBB3E0\t0x44C1\n0xC2CBB3E1\t0x44B1\n0xC2CBB3E2\t0x8318\n0xC2CBB3E3\t0x8358\n0xC2CBB3E4\t0x44B3\n0xC2CBB3E5\t0x44BA\n0xC2CBB3E6\t0x458C\n0xC2CBB3E7\t0x458B\n0xC2CBB3E8\t0x458D\n0xC2CBB3E9\t0x8684\n0xC2CBB3EA\t0x869F\n0xC2CBB3EB\t0x869B\n0xC2CBB3EC\t0x8689\n0xC2CBB3ED\t0x86A6\n0xC2CBB3EE\t0x8692\n0xC2CBB3EF\t0x868F\n0xC2CBB3F0\t0x86A0\n0xC2CBB3F1\t0x884F\n0xC2CBB3F2\t0x8878\n0xC2CBB3F3\t0x887A\n0xC2CBB3F4\t0x886E\n0xC2CBB3F5\t0x887B\n0xC2CBB3F6\t0x8884\n0xC2CBB3F7\t0x8873\n0xC2CBB3F8\t0x4678\n0xC2CBB3F9\t0x4677\n0xC2CBB3FA\t0x8A0D\n0xC2CBB3FB\t0x8A0B\n0xC2CBB3FC\t0x8A19\n0xC2CBB3FD\t0x46B2\n0xC2CBB3FE\t0x47D6\n0xC2CBB4A1\t0x8ED0\n0xC2CBB4A2\t0x4845\n0xC2CBB4A3\t0x4892\n0xC2CBB4A4\t0x4895\n0xC2CBB4A5\t0x8FF9\n0xC2CBB4A6\t0x9009\n0xC2CBB4A7\t0x9008\n0xC2CBB4A8\t0x48C6\n0xC2CBB4A9\t0x90DE\n0xC2CBB4AA\t0x9151\n0xC2CBB4AB\t0x48E7\n0xC2CBB4AC\t0x48E8\n0xC2CBB4AD\t0x91DB\n0xC2CBB4AE\t0x91DF\n0xC2CBB4AF\t0x91DE\n0xC2CBB4B0\t0x91D6\n0xC2CBB4B1\t0x91E0\n0xC2CBB4B2\t0x9585\n0xC2CBB4B3\t0x9660\n0xC2CBB4B4\t0x9659\n0xC2CBB4B5\t0x49CB\n0xC2CBB4B6\t0x9656\n0xC2CBB4B7\t0x49CD\n0xC2CBB4B8\t0x49F1\n0xC2CBB4B9\t0x96BD\n0xC2CBB4BA\t0x4B22\n0xC2CBB4BB\t0x3421\n0xC2CBB4BC\t0x5042\n0xC2CBB4BD\t0x5059\n0xC2CBB4BE\t0x346F\n0xC2CBB4BF\t0x5044\n0xC2CBB4C0\t0x5066\n0xC2CBB4C1\t0x5052\n0xC2CBB4C2\t0x5054\n0xC2CBB4C3\t0x5071\n0xC2CBB4C4\t0x5050\n0xC2CBB4C5\t0x507B\n0xC2CBB4C6\t0x507C\n0xC2CBB4C7\t0x5058\n0xC2CBB4C8\t0x3470\n0xC2CBB4C9\t0x3464\n0xC2CBB4CA\t0x5079\n0xC2CBB4CB\t0x506C\n0xC2CBB4CC\t0x5078\n0xC2CBB4CD\t0x51A8\n0xC2CBB4CE\t0x51D1\n0xC2CBB4CF\t0x51CF\n0xC2CBB4D0\t0x5268\n0xC2CBB4D1\t0x5276\n0xC2CBB4D2\t0x52D4\n0xC2CBB4D3\t0x352D\n0xC2CBB4D4\t0x53A0\n0xC2CBB4D5\t0x53C4\n0xC2CBB4D6\t0x3558\n0xC2CBB4D7\t0x5558\n0xC2CBB4D8\t0x554C\n0xC2CBB4D9\t0x5568\n0xC2CBB4DA\t0x35A6\n0xC2CBB4DB\t0x5549\n0xC2CBB4DC\t0x35A4\n0xC2CBB4DD\t0x359F\n0xC2CBB4DE\t0x555D\n0xC2CBB4DF\t0x5529\n0xC2CBB4E0\t0x20DAE\n0xC2CBB4E1\t0x5554\n0xC2CBB4E2\t0x5553\n0xC2CBB4E3\t0x35A3\n0xC2CBB4E4\t0x555A\n0xC2CBB4E5\t0x35A0\n0xC2CBB4E6\t0x553A\n0xC2CBB4E7\t0x553F\n0xC2CBB4E8\t0x552B\n0xC2CBB4E9\t0x57EA\n0xC2CBB4EA\t0x364A\n0xC2CBB4EB\t0x57EF\n0xC2CBB4EC\t0x3647\n0xC2CBB4ED\t0x3648\n0xC2CBB4EE\t0x57DD\n0xC2CBB4EF\t0x57FE\n0xC2CBB4F0\t0x2F855\n0xC2CBB4F1\t0x57DE\n0xC2CBB4F2\t0x57E6\n0xC2CBB4F3\t0x3649\n0xC2CBB4F4\t0x57E8\n0xC2CBB4F5\t0x57FF\n0xC2CBB4F6\t0x5803\n0xC2CBB4F7\t0x58F7\n0xC2CBB4F8\t0x68A6\n0xC2CBB4F9\t0x591F\n0xC2CBB4FA\t0x369E\n0xC2CBB4FB\t0x595B\n0xC2CBB4FC\t0x595D\n0xC2CBB4FD\t0x595E\n0xC2CBB4FE\t0x21637\n0xC2CBB5A1\t0x36E8\n0xC2CBB5A2\t0x5A2B\n0xC2CBB5A3\t0x36EC\n0xC2CBB5A4\t0x5A3B\n0xC2CBB5A5\t0x36ED\n0xC2CBB5A6\t0x36E6\n0xC2CBB5A7\t0x5A61\n0xC2CBB5A8\t0x5A3A\n0xC2CBB5A9\t0x5A6E\n0xC2CBB5AA\t0x5A4B\n0xC2CBB5AB\t0x5A6B\n0xC2CBB5AC\t0x36EB\n0xC2CBB5AD\t0x36E7\n0xC2CBB5AE\t0x5A45\n0xC2CBB5AF\t0x5A4E\n0xC2CBB5B0\t0x5A68\n0xC2CBB5B1\t0x5A3D\n0xC2CBB5B2\t0x5A71\n0xC2CBB5B3\t0x5A3F\n0xC2CBB5B4\t0x5A6F\n0xC2CBB5B5\t0x5A75\n0xC2CBB5B6\t0x36E9\n0xC2CBB5B7\t0x5A73\n0xC2CBB5B8\t0x5A2C\n0xC2CBB5B9\t0x5A59\n0xC2CBB5BA\t0x5A54\n0xC2CBB5BB\t0x5A4F\n0xC2CBB5BC\t0x5A63\n0xC2CBB5BD\t0x375C\n0xC2CBB5BE\t0x375D\n0xC2CBB5BF\t0x5BC8\n0xC2CBB5C0\t0x3760\n0xC2CBB5C1\t0x5BC3\n0xC2CBB5C2\t0x375B\n0xC2CBB5C3\t0x5C5B\n0xC2CBB5C4\t0x5C61\n0xC2CBB5C5\t0x3799\n0xC2CBB5C6\t0x5D21\n0xC2CBB5C7\t0x5D0A\n0xC2CBB5C8\t0x5D09\n0xC2CBB5C9\t0x37D8\n0xC2CBB5CA\t0x5D2C\n0xC2CBB5CB\t0x5D08\n0xC2CBB5CC\t0x37DA\n0xC2CBB5CD\t0x37DD\n0xC2CBB5CE\t0x5D2A\n0xC2CBB5CF\t0x5D15\n0xC2CBB5D0\t0x37E0\n0xC2CBB5D1\t0x5D10\n0xC2CBB5D2\t0x5D13\n0xC2CBB5D3\t0x37E5\n0xC2CBB5D4\t0x5D2F\n0xC2CBB5D5\t0x5D18\n0xC2CBB5D6\t0x37D7\n0xC2CBB5D7\t0x5DE3\n0xC2CBB5D8\t0x5E39\n0xC2CBB5D9\t0x5E35\n0xC2CBB5DA\t0x5E3A\n0xC2CBB5DB\t0x5E32\n0xC2CBB5DC\t0x384E\n0xC2CBB5DD\t0x388C\n0xC2CBB5DE\t0x3888\n0xC2CBB5DF\t0x2F88D\n0xC2CBB5E0\t0x5EBB\n0xC2CBB5E1\t0x5EBA\n0xC2CBB5E2\t0x5F34\n0xC2CBB5E3\t0x5F39\n0xC2CBB5E4\t0x38CE\n0xC2CBB5E5\t0x2F89C\n0xC2CBB5E6\t0x38E5\n0xC2CBB5E7\t0x38E6\n0xC2CBB5E8\t0x6098\n0xC2CBB5E9\t0x3932\n0xC2CBB5EA\t0x60D0\n0xC2CBB5EB\t0x3940\n0xC2CBB5EC\t0x3947\n0xC2CBB5ED\t0x394C\n0xC2CBB5EE\t0x60D7\n0xC2CBB5EF\t0x60AA\n0xC2CBB5F0\t0x3935\n0xC2CBB5F1\t0x60A1\n0xC2CBB5F2\t0x60A4\n0xC2CBB5F3\t0x3930\n0xC2CBB5F4\t0x60EE\n0xC2CBB5F5\t0x3943\n0xC2CBB5F6\t0x60E7\n0xC2CBB5F7\t0x394D\n0xC2CBB5F8\t0x60E8\n0xC2CBB5F9\t0x60DE\n0xC2CBB5FA\t0x39B7\n0xC2CBB5FB\t0x39F3\n0xC2CBB5FC\t0x637E\n0xC2CBB5FD\t0x638B\n0xC2CBB5FE\t0x3A02\n0xC2CBB6A1\t0x3A0B\n0xC2CBB6A2\t0x6379\n0xC2CBB6A3\t0x6386\n0xC2CBB6A4\t0x6393\n0xC2CBB6A5\t0x3A04\n0xC2CBB6A6\t0x6373\n0xC2CBB6A7\t0x636A\n0xC2CBB6A8\t0x2F8BA\n0xC2CBB6A9\t0x636C\n0xC2CBB6AA\t0x3A08\n0xC2CBB6AB\t0x637F\n0xC2CBB6AC\t0x39FC\n0xC2CBB6AD\t0x63B2\n0xC2CBB6AE\t0x63BA\n0xC2CBB6AF\t0x39FF\n0xC2CBB6B0\t0x3A00\n0xC2CBB6B1\t0x6366\n0xC2CBB6B2\t0x6374\n0xC2CBB6B3\t0x3A8B\n0xC2CBB6B4\t0x655A\n0xC2CBB6B5\t0x3A8D\n0xC2CBB6B6\t0x654E\n0xC2CBB6B7\t0x654D\n0xC2CBB6B8\t0x658D\n0xC2CBB6B9\t0x658E\n0xC2CBB6BA\t0x65AD\n0xC2CBB6BB\t0x3ACA\n0xC2CBB6BC\t0x65C7\n0xC2CBB6BD\t0x65CA\n0xC2CBB6BE\t0x3ACB\n0xC2CBB6BF\t0x65C9\n0xC2CBB6C0\t0x2F8CB\n0xC2CBB6C1\t0x65E3\n0xC2CBB6C2\t0x6657\n0xC2CBB6C3\t0x3AF3\n0xC2CBB6C4\t0x6663\n0xC2CBB6C5\t0x6667\n0xC2CBB6C6\t0x671A\n0xC2CBB6C7\t0x6719\n0xC2CBB6C8\t0x6716\n0xC2CBB6C9\t0x3B36\n0xC2CBB6CA\t0x3B6A\n0xC2CBB6CB\t0x689E\n0xC2CBB6CC\t0x68B6\n0xC2CBB6CD\t0x6898\n0xC2CBB6CE\t0x6873\n0xC2CBB6CF\t0x3B6B\n0xC2CBB6D0\t0x689A\n0xC2CBB6D1\t0x688E\n0xC2CBB6D2\t0x68B7\n0xC2CBB6D3\t0x68DB\n0xC2CBB6D4\t0x68A5\n0xC2CBB6D5\t0x686C\n0xC2CBB6D6\t0x68C1\n0xC2CBB6D7\t0x6884\n0xC2CBB6D8\t0x3B71\n0xC2CBB6D9\t0x3B68\n0xC2CBB6DA\t0x6895\n0xC2CBB6DB\t0x687A\n0xC2CBB6DC\t0x6899\n0xC2CBB6DD\t0x3B72\n0xC2CBB6DE\t0x68B8\n0xC2CBB6DF\t0x68B9\n0xC2CBB6E0\t0x6870\n0xC2CBB6E1\t0x3C2E\n0xC2CBB6E2\t0x6B35\n0xC2CBB6E3\t0x3C62\n0xC2CBB6E4\t0x6B90\n0xC2CBB6E5\t0x6BBB\n0xC2CBB6E6\t0x6BED\n0xC2CBB6E7\t0x3C98\n0xC2CBB6E8\t0x3CB5\n0xC2CBB6E9\t0x3CEB\n0xC2CBB6EA\t0x6DC1\n0xC2CBB6EB\t0x6DC3\n0xC2CBB6EC\t0x6DCE\n0xC2CBB6ED\t0x3CFB\n0xC2CBB6EE\t0x3CF8\n0xC2CBB6EF\t0x6DAD\n0xC2CBB6F0\t0x6E04\n0xC2CBB6F1\t0x3CF5\n0xC2CBB6F2\t0x6DB9\n0xC2CBB6F3\t0x3D08\n0xC2CBB6F4\t0x6DE7\n0xC2CBB6F5\t0x2F907\n0xC2CBB6F6\t0x6E08\n0xC2CBB6F7\t0x6E06\n0xC2CBB6F8\t0x3D0A\n0xC2CBB6F9\t0x6E0A\n0xC2CBB6FA\t0x6DB0\n0xC2CBB6FB\t0x3D06\n0xC2CBB6FC\t0x6DF8\n0xC2CBB6FD\t0x6E0C\n0xC2CBB6FE\t0x3CFD\n0xC2CBB7A1\t0x6DB1\n0xC2CBB7A2\t0x3CFA\n0xC2CBB7A3\t0x6E02\n0xC2CBB7A4\t0x6E07\n0xC2CBB7A5\t0x6E09\n0xC2CBB7A6\t0x6E01\n0xC2CBB7A7\t0x6E17\n0xC2CBB7A8\t0x6DFF\n0xC2CBB7A9\t0x6E12\n0xC2CBB7AA\t0x3DBA\n0xC2CBB7AB\t0x3DB9\n0xC2CBB7AC\t0x7103\n0xC2CBB7AD\t0x7107\n0xC2CBB7AE\t0x7101\n0xC2CBB7AF\t0x70F5\n0xC2CBB7B0\t0x70F1\n0xC2CBB7B1\t0x7108\n0xC2CBB7B2\t0x70F2\n0xC2CBB7B3\t0x710F\n0xC2CBB7B4\t0x3DBB\n0xC2CBB7B5\t0x70FE\n0xC2CBB7B6\t0x3E18\n0xC2CBB7B7\t0x3E40\n0xC2CBB7B8\t0x3E3D\n0xC2CBB7B9\t0x731A\n0xC2CBB7BA\t0x7310\n0xC2CBB7BB\t0x730E\n0xC2CBB7BC\t0x7402\n0xC2CBB7BD\t0x73F3\n0xC2CBB7BE\t0x3ECD\n0xC2CBB7BF\t0x3EC9\n0xC2CBB7C0\t0x73FB\n0xC2CBB7C1\t0x3ECB\n0xC2CBB7C2\t0x3ECA\n0xC2CBB7C3\t0x3ECE\n0xC2CBB7C4\t0x751B\n0xC2CBB7C5\t0x7523\n0xC2CBB7C6\t0x7561\n0xC2CBB7C7\t0x7568\n0xC2CBB7C8\t0x3F5E\n0xC2CBB7C9\t0x7567\n0xC2CBB7CA\t0x75D3\n0xC2CBB7CB\t0x3F91\n0xC2CBB7CC\t0x3F8C\n0xC2CBB7CD\t0x7690\n0xC2CBB7CE\t0x3FE1\n0xC2CBB7CF\t0x4002\n0xC2CBB7D0\t0x76D5\n0xC2CBB7D1\t0x76D7\n0xC2CBB7D2\t0x76D6\n0xC2CBB7D3\t0x7730\n0xC2CBB7D4\t0x402B\n0xC2CBB7D5\t0x7726\n0xC2CBB7D6\t0x402A\n0xC2CBB7D7\t0x7740\n0xC2CBB7D8\t0x3E14\n0xC2CBB7D9\t0x771E\n0xC2CBB7DA\t0x40AD\n0xC2CBB7DB\t0x40A3\n0xC2CBB7DC\t0x40AB\n0xC2CBB7DD\t0x7847\n0xC2CBB7DE\t0x40AF\n0xC2CBB7DF\t0x784B\n0xC2CBB7E0\t0x7851\n0xC2CBB7E1\t0x784F\n0xC2CBB7E2\t0x7842\n0xC2CBB7E3\t0x7846\n0xC2CBB7E4\t0x4104\n0xC2CBB7E5\t0x796E\n0xC2CBB7E6\t0x796C\n0xC2CBB7E7\t0x79F2\n0xC2CBB7E8\t0x4144\n0xC2CBB7E9\t0x79F1\n0xC2CBB7EA\t0x79F5\n0xC2CBB7EB\t0x79F3\n0xC2CBB7EC\t0x79F9\n0xC2CBB7ED\t0x413D\n0xC2CBB7EE\t0x4147\n0xC2CBB7EF\t0x419C\n0xC2CBB7F0\t0x7A9A\n0xC2CBB7F1\t0x7A93\n0xC2CBB7F2\t0x7A91\n0xC2CBB7F3\t0x7AE1\n0xC2CBB7F4\t0x41E0\n0xC2CBB7F5\t0x41E4\n0xC2CBB7F6\t0x7B21\n0xC2CBB7F7\t0x7B1C\n0xC2CBB7F8\t0x7B16\n0xC2CBB7F9\t0x7B17\n0xC2CBB7FA\t0x7B36\n0xC2CBB7FB\t0x7B1F\n0xC2CBB7FC\t0x4280\n0xC2CBB7FD\t0x7C93\n0xC2CBB7FE\t0x7C99\n0xC2CBB8A1\t0x7C9A\n0xC2CBB8A2\t0x7C9C\n0xC2CBB8A3\t0x42CA\n0xC2CBB8A4\t0x7D49\n0xC2CBB8A5\t0x42D4\n0xC2CBB8A6\t0x7D34\n0xC2CBB8A7\t0x7D37\n0xC2CBB8A8\t0x42D2\n0xC2CBB8A9\t0x7D2D\n0xC2CBB8AA\t0x42CB\n0xC2CBB8AB\t0x7D4C\n0xC2CBB8AC\t0x42CE\n0xC2CBB8AD\t0x42D3\n0xC2CBB8AE\t0x7D48\n0xC2CBB8AF\t0x4344\n0xC2CBB8B0\t0x4348\n0xC2CBB8B1\t0x7F3B\n0xC2CBB8B2\t0x4345\n0xC2CBB8B3\t0x4381\n0xC2CBB8B4\t0x4386\n0xC2CBB8B5\t0x4385\n0xC2CBB8B6\t0x8008\n0xC2CBB8B7\t0x801A\n0xC2CBB8B8\t0x43A3\n0xC2CBB8B9\t0x801D\n0xC2CBB8BA\t0x43B5\n0xC2CBB8BB\t0x8049\n0xC2CBB8BC\t0x8045\n0xC2CBB8BD\t0x8044\n0xC2CBB8BE\t0x7C9B\n0xC2CBB8BF\t0x43FA\n0xC2CBB8C0\t0x43F9\n0xC2CBB8C1\t0x812A\n0xC2CBB8C2\t0x812E\n0xC2CBB8C3\t0x43FB\n0xC2CBB8C4\t0x43F2\n0xC2CBB8C5\t0x8131\n0xC2CBB8C6\t0x43EF\n0xC2CBB8C7\t0x811A\n0xC2CBB8C8\t0x8134\n0xC2CBB8C9\t0x8117\n0xC2CBB8CA\t0x445B\n0xC2CBB8CB\t0x4466\n0xC2CBB8CC\t0x44CE\n0xC2CBB8CD\t0x831D\n0xC2CBB8CE\t0x8371\n0xC2CBB8CF\t0x8384\n0xC2CBB8D0\t0x8380\n0xC2CBB8D1\t0x8372\n0xC2CBB8D2\t0x83A1\n0xC2CBB8D3\t0x35B4\n0xC2CBB8D4\t0x8379\n0xC2CBB8D5\t0x8391\n0xC2CBB8D6\t0x44C8\n0xC2CBB8D7\t0x839F\n0xC2CBB8D8\t0x83AD\n0xC2CBB8D9\t0x44D1\n0xC2CBB8DA\t0x44C5\n0xC2CBB8DB\t0x8323\n0xC2CBB8DC\t0x44D2\n0xC2CBB8DD\t0x8385\n0xC2CBB8DE\t0x839C\n0xC2CBB8DF\t0x83B7\n0xC2CBB8E0\t0x8658\n0xC2CBB8E1\t0x865A\n0xC2CBB8E2\t0x458F\n0xC2CBB8E3\t0x8657\n0xC2CBB8E4\t0x86B2\n0xC2CBB8E5\t0x45A7\n0xC2CBB8E6\t0x86AE\n0xC2CBB8E7\t0x45A5\n0xC2CBB8E8\t0x45A4\n0xC2CBB8E9\t0x4611\n0xC2CBB8EA\t0x8845\n0xC2CBB8EB\t0x889C\n0xC2CBB8EC\t0x8894\n0xC2CBB8ED\t0x88A3\n0xC2CBB8EE\t0x888F\n0xC2CBB8EF\t0x88A5\n0xC2CBB8F0\t0x88A9\n0xC2CBB8F1\t0x88A6\n0xC2CBB8F2\t0x888A\n0xC2CBB8F3\t0x88A0\n0xC2CBB8F4\t0x8890\n0xC2CBB8F5\t0x8992\n0xC2CBB8F6\t0x8991\n0xC2CBB8F7\t0x8994\n0xC2CBB8F8\t0x46B5\n0xC2CBB8F9\t0x8A26\n0xC2CBB8FA\t0x8A32\n0xC2CBB8FB\t0x8A28\n0xC2CBB8FC\t0x46B4\n0xC2CBB8FD\t0x46BD\n0xC2CBB8FE\t0x8A1C\n0xC2CBB9A1\t0x46BB\n0xC2CBB9A2\t0x8A2B\n0xC2CBB9A3\t0x8A20\n0xC2CBB9A4\t0x46B9\n0xC2CBB9A5\t0x8A29\n0xC2CBB9A6\t0x46C2\n0xC2CBB9A7\t0x46BE\n0xC2CBB9A8\t0x46BA\n0xC2CBB9A9\t0x8A21\n0xC2CBB9AA\t0x8C3A\n0xC2CBB9AB\t0x3AB7\n0xC2CBB9AC\t0x8C5B\n0xC2CBB9AD\t0x8C58\n0xC2CBB9AE\t0x8C7C\n0xC2CBB9AF\t0x4758\n0xC2CBB9B0\t0x8CA6\n0xC2CBB9B1\t0x8CAE\n0xC2CBB9B2\t0x8CAD\n0xC2CBB9B3\t0x8D65\n0xC2CBB9B4\t0x479B\n0xC2CBB9B5\t0x8D7E\n0xC2CBB9B6\t0x479C\n0xC2CBB9B7\t0x8D7C\n0xC2CBB9B8\t0x8D7F\n0xC2CBB9B9\t0x8D7A\n0xC2CBB9BA\t0x8DBD\n0xC2CBB9BB\t0x47DA\n0xC2CBB9BC\t0x47DE\n0xC2CBB9BD\t0x8DC0\n0xC2CBB9BE\t0x8DBB\n0xC2CBB9BF\t0x8EAD\n0xC2CBB9C0\t0x8EAF\n0xC2CBB9C1\t0x8ED6\n0xC2CBB9C2\t0x484D\n0xC2CBB9C3\t0x4846\n0xC2CBB9C4\t0x4847\n0xC2CBB9C5\t0x484B\n0xC2CBB9C6\t0x484C\n0xC2CBB9C7\t0x8ED9\n0xC2CBB9C8\t0x4848\n0xC2CBB9C9\t0x4899\n0xC2CBB9CA\t0x9012\n0xC2CBB9CB\t0x900E\n0xC2CBB9CC\t0x9025\n0xC2CBB9CD\t0x489B\n0xC2CBB9CE\t0x9013\n0xC2CBB9CF\t0x90EE\n0xC2CBB9D0\t0x48CE\n0xC2CBB9D1\t0x90AB\n0xC2CBB9D2\t0x90F7\n0xC2CBB9D3\t0x48EB\n0xC2CBB9D4\t0x9159\n0xC2CBB9D5\t0x9154\n0xC2CBB9D6\t0x91F2\n0xC2CBB9D7\t0x91F0\n0xC2CBB9D8\t0x91E5\n0xC2CBB9D9\t0x91F6\n0xC2CBB9DA\t0x491C\n0xC2CBB9DB\t0x498C\n0xC2CBB9DC\t0x9587\n0xC2CBB9DD\t0x49D1\n0xC2CBB9DE\t0x965A\n0xC2CBB9DF\t0x49D6\n0xC2CBB9E0\t0x49D3\n0xC2CBB9E1\t0x966E\n0xC2CBB9E2\t0x49D4\n0xC2CBB9E3\t0x49D0\n0xC2CBB9E4\t0x49D5\n0xC2CBB9E5\t0x9679\n0xC2CBB9E6\t0x4A0B\n0xC2CBB9E7\t0x98E1\n0xC2CBB9E8\t0x98E6\n0xC2CBB9E9\t0x4BC6\n0xC2CBB9EA\t0x9EC4\n0xC2CBB9EB\t0x9ED2\n0xC2CBB9EC\t0x4E80\n0xC2CBB9ED\t0x3424\n0xC2CBB9EE\t0x4E81\n0xC2CBB9EF\t0x508F\n0xC2CBB9F0\t0x5097\n0xC2CBB9F1\t0x5088\n0xC2CBB9F2\t0x5089\n0xC2CBB9F3\t0x3474\n0xC2CBB9F4\t0x347A\n0xC2CBB9F5\t0x5081\n0xC2CBB9F6\t0x5160\n0xC2CBB9F7\t0x20564\n0xC2CBB9F8\t0x34C3\n0xC2CBB9F9\t0x5E42\n0xC2CBB9FA\t0x51D3\n0xC2CBB9FB\t0x34D4\n0xC2CBB9FC\t0x34D5\n0xC2CBB9FD\t0x51D2\n0xC2CBB9FE\t0x51D6\n0xC2CBBAA1\t0x5273\n0xC2CBBAA2\t0x34FB\n0xC2CBBAA3\t0x5270\n0xC2CBBAA4\t0x34F7\n0xC2CBBAA5\t0x3532\n0xC2CBBAA6\t0x2F833\n0xC2CBBAA7\t0x53A8\n0xC2CBBAA8\t0x53A6\n0xC2CBBAA9\t0x53C5\n0xC2CBBAAA\t0x5597\n0xC2CBBAAB\t0x55DE\n0xC2CBBAAC\t0x35BA\n0xC2CBBAAD\t0x35BF\n0xC2CBBAAE\t0x5596\n0xC2CBBAAF\t0x55B4\n0xC2CBBAB0\t0x35C7\n0xC2CBBAB1\t0x5585\n0xC2CBBAB2\t0x35B7\n0xC2CBBAB3\t0x559B\n0xC2CBBAB4\t0x55A0\n0xC2CBBAB5\t0x35B9\n0xC2CBBAB6\t0x5559\n0xC2CBBAB7\t0x35C3\n0xC2CBBAB8\t0x5586\n0xC2CBBAB9\t0x35BD\n0xC2CBBABA\t0x35D0\n0xC2CBBABB\t0x55AF\n0xC2CBBABC\t0x557A\n0xC2CBBABD\t0x35C1\n0xC2CBBABE\t0x35BE\n0xC2CBBABF\t0x35CD\n0xC2CBBAC0\t0x559E\n0xC2CBBAC1\t0x35CB\n0xC2CBBAC2\t0x55A9\n0xC2CBBAC3\t0x570F\n0xC2CBBAC4\t0x570E\n0xC2CBBAC5\t0x581A\n0xC2CBBAC6\t0x364F\n0xC2CBBAC7\t0x581F\n0xC2CBBAC8\t0x3653\n0xC2CBBAC9\t0x583C\n0xC2CBBACA\t0x5818\n0xC2CBBACB\t0x583E\n0xC2CBBACC\t0x5826\n0xC2CBBACD\t0x3655\n0xC2CBBACE\t0x583A\n0xC2CBBACF\t0x21364\n0xC2CBBAD0\t0x5822\n0xC2CBBAD1\t0x3651\n0xC2CBBAD2\t0x58FB\n0xC2CBBAD3\t0x5963\n0xC2CBBAD4\t0x5964\n0xC2CBBAD5\t0x369F\n0xC2CBBAD6\t0x5AA8\n0xC2CBBAD7\t0x5AA3\n0xC2CBBAD8\t0x5A82\n0xC2CBBAD9\t0x5A88\n0xC2CBBADA\t0x5AA1\n0xC2CBBADB\t0x5A85\n0xC2CBBADC\t0x5A98\n0xC2CBBADD\t0x36FE\n0xC2CBBADE\t0x5A99\n0xC2CBBADF\t0x36FB\n0xC2CBBAE0\t0x5A89\n0xC2CBBAE1\t0x5A81\n0xC2CBBAE2\t0x5A96\n0xC2CBBAE3\t0x5A80\n0xC2CBBAE4\t0x36F1\n0xC2CBBAE5\t0x36F5\n0xC2CBBAE6\t0x5A91\n0xC2CBBAE7\t0x36EF\n0xC2CBBAE8\t0x3704\n0xC2CBBAE9\t0x3703\n0xC2CBBAEA\t0x36F4\n0xC2CBBAEB\t0x5ACF\n0xC2CBBAEC\t0x36F3\n0xC2CBBAED\t0x3702\n0xC2CBBAEE\t0x36F7\n0xC2CBBAEF\t0x36FA\n0xC2CBBAF0\t0x36FD\n0xC2CBBAF1\t0x36EE\n0xC2CBBAF2\t0x5A87\n0xC2CBBAF3\t0x5AA0\n0xC2CBBAF4\t0x36F0\n0xC2CBBAF5\t0x5A79\n0xC2CBBAF6\t0x36F2\n0xC2CBBAF7\t0x5A86\n0xC2CBBAF8\t0x5AAB\n0xC2CBBAF9\t0x5AAA\n0xC2CBBAFA\t0x5AA4\n0xC2CBBAFB\t0x5A8D\n0xC2CBBAFC\t0x5A7E\n0xC2CBBAFD\t0x3744\n0xC2CBBAFE\t0x5BD5\n0xC2CBBBA1\t0x3762\n0xC2CBBBA2\t0x3777\n0xC2CBBBA3\t0x3DC9\n0xC2CBBBA4\t0x5C1E\n0xC2CBBBA5\t0x5C5F\n0xC2CBBBA6\t0x5C5E\n0xC2CBBBA7\t0x5D44\n0xC2CBBBA8\t0x5D3E\n0xC2CBBBA9\t0x37E8\n0xC2CBBBAA\t0x5D48\n0xC2CBBBAB\t0x5D1C\n0xC2CBBBAC\t0x37EF\n0xC2CBBBAD\t0x5D5B\n0xC2CBBBAE\t0x5D4D\n0xC2CBBBAF\t0x37E6\n0xC2CBBBB0\t0x37ED\n0xC2CBBBB1\t0x5D57\n0xC2CBBBB2\t0x37E7\n0xC2CBBBB3\t0x5D53\n0xC2CBBBB4\t0x5D4F\n0xC2CBBBB5\t0x37EB\n0xC2CBBBB6\t0x5D3B\n0xC2CBBBB7\t0x5D46\n0xC2CBBBB8\t0x382D\n0xC2CBBBB9\t0x3855\n0xC2CBBBBA\t0x5E46\n0xC2CBBBBB\t0x5E47\n0xC2CBBBBC\t0x3853\n0xC2CBBBBD\t0x5E48\n0xC2CBBBBE\t0x5EC0\n0xC2CBBBBF\t0x5EBD\n0xC2CBBBC0\t0x5EBF\n0xC2CBBBC1\t0x3890\n0xC2CBBBC2\t0x5F11\n0xC2CBBBC3\t0x38BE\n0xC2CBBBC4\t0x5F3E\n0xC2CBBBC5\t0x5F3B\n0xC2CBBBC6\t0x38BD\n0xC2CBBBC7\t0x5F3A\n0xC2CBBBC8\t0x38CF\n0xC2CBBBC9\t0x38D0\n0xC2CBBBCA\t0x38EC\n0xC2CBBBCB\t0x5FA7\n0xC2CBBBCC\t0x394B\n0xC2CBBBCD\t0x60EA\n0xC2CBBBCE\t0x3948\n0xC2CBBBCF\t0x6107\n0xC2CBBBD0\t0x6122\n0xC2CBBBD1\t0x610C\n0xC2CBBBD2\t0x3955\n0xC2CBBBD3\t0x3951\n0xC2CBBBD4\t0x60B3\n0xC2CBBBD5\t0x60D6\n0xC2CBBBD6\t0x60D2\n0xC2CBBBD7\t0x394E\n0xC2CBBBD8\t0x60E3\n0xC2CBBBD9\t0x60E5\n0xC2CBBBDA\t0x60E9\n0xC2CBBBDB\t0x396B\n0xC2CBBBDC\t0x395E\n0xC2CBBBDD\t0x6111\n0xC2CBBBDE\t0x60FD\n0xC2CBBBDF\t0x3960\n0xC2CBBBE0\t0x3967\n0xC2CBBBE1\t0x611E\n0xC2CBBBE2\t0x6120\n0xC2CBBBE3\t0x6121\n0xC2CBBBE4\t0x621E\n0xC2CBBBE5\t0x39B8\n0xC2CBBBE6\t0x63E2\n0xC2CBBBE7\t0x63DE\n0xC2CBBBE8\t0x63E6\n0xC2CBBBE9\t0x3A14\n0xC2CBBBEA\t0x3A0F\n0xC2CBBBEB\t0x3A07\n0xC2CBBBEC\t0x3A13\n0xC2CBBBED\t0x63F8\n0xC2CBBBEE\t0x3A17\n0xC2CBBBEF\t0x63FE\n0xC2CBBBF0\t0x63C1\n0xC2CBBBF1\t0x63BF\n0xC2CBBBF2\t0x63F7\n0xC2CBBBF3\t0x63D1\n0xC2CBBBF4\t0x655F\n0xC2CBBBF5\t0x6560\n0xC2CBBBF6\t0x6561\n0xC2CBBBF7\t0x3A9A\n0xC2CBBBF8\t0x3AB8\n0xC2CBBBF9\t0x65D1\n0xC2CBBBFA\t0x3AF7\n0xC2CBBBFB\t0x3AF8\n0xC2CBBBFC\t0x667D\n0xC2CBBBFD\t0x666B\n0xC2CBBBFE\t0x667F\n0xC2CBBCA1\t0x3AFD\n0xC2CBBCA2\t0x3AF5\n0xC2CBBCA3\t0x6673\n0xC2CBBCA4\t0x6681\n0xC2CBBCA5\t0x666D\n0xC2CBBCA6\t0x6669\n0xC2CBBCA7\t0x3AFA\n0xC2CBBCA8\t0x3B38\n0xC2CBBCA9\t0x671E\n0xC2CBBCAA\t0x68ED\n0xC2CBBCAB\t0x3B87\n0xC2CBBCAC\t0x3B80\n0xC2CBBCAD\t0x3B88\n0xC2CBBCAE\t0x3B79\n0xC2CBBCAF\t0x6903\n0xC2CBBCB0\t0x3B7C\n0xC2CBBCB1\t0x68FE\n0xC2CBBCB2\t0x68E5\n0xC2CBBCB3\t0x691E\n0xC2CBBCB4\t0x6902\n0xC2CBBCB5\t0x3B83\n0xC2CBBCB6\t0x3B85\n0xC2CBBCB7\t0x6909\n0xC2CBBCB8\t0x68CA\n0xC2CBBCB9\t0x6900\n0xC2CBBCBA\t0x2F8E5\n0xC2CBBCBB\t0x6901\n0xC2CBBCBC\t0x6918\n0xC2CBBCBD\t0x68E2\n0xC2CBBCBE\t0x68CF\n0xC2CBBCBF\t0x3B7B\n0xC2CBBCC0\t0x692E\n0xC2CBBCC1\t0x68C5\n0xC2CBBCC2\t0x68FF\n0xC2CBBCC3\t0x3B86\n0xC2CBBCC4\t0x691C\n0xC2CBBCC5\t0x68C3\n0xC2CBBCC6\t0x3C34\n0xC2CBBCC7\t0x6B6F\n0xC2CBBCC8\t0x3C55\n0xC2CBBCC9\t0x6B6E\n0xC2CBBCCA\t0x3C68\n0xC2CBBCCB\t0x6BBE\n0xC2CBBCCC\t0x3C9C\n0xC2CBBCCD\t0x6BF4\n0xC2CBBCCE\t0x6C2D\n0xC2CBBCCF\t0x3CFC\n0xC2CBBCD0\t0x6DB6\n0xC2CBBCD1\t0x6E75\n0xC2CBBCD2\t0x6E1E\n0xC2CBBCD3\t0x3D1A\n0xC2CBBCD4\t0x6E18\n0xC2CBBCD5\t0x3D17\n0xC2CBBCD6\t0x6E48\n0xC2CBBCD7\t0x3D1B\n0xC2CBBCD8\t0x6E4F\n0xC2CBBCD9\t0x3D13\n0xC2CBBCDA\t0x6E42\n0xC2CBBCDB\t0x6E6A\n0xC2CBBCDC\t0x6E70\n0xC2CBBCDD\t0x6DFE\n0xC2CBBCDE\t0x3D05\n0xC2CBBCDF\t0x3D07\n0xC2CBBCE0\t0x6E6D\n0xC2CBBCE1\t0x3D1C\n0xC2CBBCE2\t0x6E7B\n0xC2CBBCE3\t0x6E7E\n0xC2CBBCE4\t0x6E59\n0xC2CBBCE5\t0x3D11\n0xC2CBBCE6\t0x6E57\n0xC2CBBCE7\t0x3D16\n0xC2CBBCE8\t0x6E80\n0xC2CBBCE9\t0x6E50\n0xC2CBBCEA\t0x3D15\n0xC2CBBCEB\t0x6E29\n0xC2CBBCEC\t0x6E76\n0xC2CBBCED\t0x6E2A\n0xC2CBBCEE\t0x6E4C\n0xC2CBBCEF\t0x712A\n0xC2CBBCF0\t0x3DCB\n0xC2CBBCF1\t0x7135\n0xC2CBBCF2\t0x712C\n0xC2CBBCF3\t0x7137\n0xC2CBBCF4\t0x711D\n0xC2CBBCF5\t0x3DC5\n0xC2CBBCF6\t0x3DC2\n0xC2CBBCF7\t0x7138\n0xC2CBBCF8\t0x3DCD\n0xC2CBBCF9\t0x7134\n0xC2CBBCFA\t0x712B\n0xC2CBBCFB\t0x7133\n0xC2CBBCFC\t0x7127\n0xC2CBBCFD\t0x7124\n0xC2CBBCFE\t0x3DCA\n0xC2CBBDA1\t0x712D\n0xC2CBBDA2\t0x7232\n0xC2CBBDA3\t0x7283\n0xC2CBBDA4\t0x7282\n0xC2CBBDA5\t0x7287\n0xC2CBBDA6\t0x7306\n0xC2CBBDA7\t0x7324\n0xC2CBBDA8\t0x7338\n0xC2CBBDA9\t0x732A\n0xC2CBBDAA\t0x732C\n0xC2CBBDAB\t0x732B\n0xC2CBBDAC\t0x3E83\n0xC2CBBDAD\t0x732F\n0xC2CBBDAE\t0x7328\n0xC2CBBDAF\t0x7417\n0xC2CBBDB0\t0x3ED6\n0xC2CBBDB1\t0x3ED5\n0xC2CBBDB2\t0x7419\n0xC2CBBDB3\t0x7438\n0xC2CBBDB4\t0x3ED1\n0xC2CBBDB5\t0x741F\n0xC2CBBDB6\t0x7414\n0xC2CBBDB7\t0x743C\n0xC2CBBDB8\t0x73F7\n0xC2CBBDB9\t0x741C\n0xC2CBBDBA\t0x7415\n0xC2CBBDBB\t0x7418\n0xC2CBBDBC\t0x7439\n0xC2CBBDBD\t0x74F9\n0xC2CBBDBE\t0x7524\n0xC2CBBDBF\t0x2F934\n0xC2CBBDC0\t0x3F52\n0xC2CBBDC1\t0x3F5F\n0xC2CBBDC2\t0x756E\n0xC2CBBDC3\t0x756D\n0xC2CBBDC4\t0x7571\n0xC2CBBDC5\t0x758E\n0xC2CBBDC6\t0x3F95\n0xC2CBBDC7\t0x75E5\n0xC2CBBDC8\t0x3F9D\n0xC2CBBDC9\t0x3F98\n0xC2CBBDCA\t0x3F9E\n0xC2CBBDCB\t0x3F96\n0xC2CBBDCC\t0x7694\n0xC2CBBDCD\t0x76B3\n0xC2CBBDCE\t0x4003\n0xC2CBBDCF\t0x76D9\n0xC2CBBDD0\t0x402F\n0xC2CBBDD1\t0x7748\n0xC2CBBDD2\t0x7749\n0xC2CBBDD3\t0x7743\n0xC2CBBDD4\t0x4031\n0xC2CBBDD5\t0x4033\n0xC2CBBDD6\t0x7742\n0xC2CBBDD7\t0x77DF\n0xC2CBBDD8\t0x40B4\n0xC2CBBDD9\t0x7863\n0xC2CBBDDA\t0x7876\n0xC2CBBDDB\t0x40B0\n0xC2CBBDDC\t0x785F\n0xC2CBBDDD\t0x7866\n0xC2CBBDDE\t0x7966\n0xC2CBBDDF\t0x7971\n0xC2CBBDE0\t0x4108\n0xC2CBBDE1\t0x4107\n0xC2CBBDE2\t0x7976\n0xC2CBBDE3\t0x7984\n0xC2CBBDE4\t0x7975\n0xC2CBBDE5\t0x79FF\n0xC2CBBDE6\t0x7A07\n0xC2CBBDE7\t0x414E\n0xC2CBBDE8\t0x7A0E\n0xC2CBBDE9\t0x7A09\n0xC2CBBDEA\t0x4150\n0xC2CBBDEB\t0x4152\n0xC2CBBDEC\t0x41A1\n0xC2CBBDED\t0x41A3\n0xC2CBBDEE\t0x41A5\n0xC2CBBDEF\t0x41CC\n0xC2CBBDF0\t0x7AE7\n0xC2CBBDF1\t0x7AE2\n0xC2CBBDF2\t0x7B55\n0xC2CBBDF3\t0x41EF\n0xC2CBBDF4\t0x41EA\n0xC2CBBDF5\t0x7B43\n0xC2CBBDF6\t0x7B57\n0xC2CBBDF7\t0x7B6C\n0xC2CBBDF8\t0x7B42\n0xC2CBBDF9\t0x7B53\n0xC2CBBDFA\t0x41ED\n0xC2CBBDFB\t0x7B41\n0xC2CBBDFC\t0x4285\n0xC2CBBDFD\t0x4284\n0xC2CBBDFE\t0x7CA7\n0xC2CBBEA1\t0x7CA0\n0xC2CBBEA2\t0x7CA6\n0xC2CBBEA3\t0x7CA4\n0xC2CBBEA4\t0x7D74\n0xC2CBBEA5\t0x42DB\n0xC2CBBEA6\t0x7D59\n0xC2CBBEA7\t0x42D9\n0xC2CBBEA8\t0x7D60\n0xC2CBBEA9\t0x7D57\n0xC2CBBEAA\t0x7D6C\n0xC2CBBEAB\t0x7D7E\n0xC2CBBEAC\t0x7D64\n0xC2CBBEAD\t0x42D7\n0xC2CBBEAE\t0x7D5A\n0xC2CBBEAF\t0x7D5D\n0xC2CBBEB0\t0x42DA\n0xC2CBBEB1\t0x42DE\n0xC2CBBEB2\t0x42D8\n0xC2CBBEB3\t0x7D76\n0xC2CBBEB4\t0x7D4D\n0xC2CBBEB5\t0x7D75\n0xC2CBBEB6\t0x42D5\n0xC2CBBEB7\t0x7FD3\n0xC2CBBEB8\t0x7FD6\n0xC2CBBEB9\t0x439C\n0xC2CBBEBA\t0x439D\n0xC2CBBEBB\t0x8060\n0xC2CBBEBC\t0x804E\n0xC2CBBEBD\t0x8145\n0xC2CBBEBE\t0x813B\n0xC2CBBEBF\t0x43FE\n0xC2CBBEC0\t0x8148\n0xC2CBBEC1\t0x8142\n0xC2CBBEC2\t0x8149\n0xC2CBBEC3\t0x8140\n0xC2CBBEC4\t0x8114\n0xC2CBBEC5\t0x8141\n0xC2CBBEC6\t0x4407\n0xC2CBBEC7\t0x81EF\n0xC2CBBEC8\t0x81F6\n0xC2CBBEC9\t0x8203\n0xC2CBBECA\t0x446A\n0xC2CBBECB\t0x83ED\n0xC2CBBECC\t0x44E7\n0xC2CBBECD\t0x83DA\n0xC2CBBECE\t0x8418\n0xC2CBBECF\t0x83D2\n0xC2CBBED0\t0x8408\n0xC2CBBED1\t0x44E2\n0xC2CBBED2\t0x8400\n0xC2CBBED3\t0x44DF\n0xC2CBBED4\t0x44E1\n0xC2CBBED5\t0x44E5\n0xC2CBBED6\t0x8417\n0xC2CBBED7\t0x8346\n0xC2CBBED8\t0x8414\n0xC2CBBED9\t0x83D3\n0xC2CBBEDA\t0x8405\n0xC2CBBEDB\t0x841F\n0xC2CBBEDC\t0x8402\n0xC2CBBEDD\t0x8416\n0xC2CBBEDE\t0x83CD\n0xC2CBBEDF\t0x83E6\n0xC2CBBEE0\t0x4591\n0xC2CBBEE1\t0x865D\n0xC2CBBEE2\t0x86D5\n0xC2CBBEE3\t0x86E1\n0xC2CBBEE4\t0x45B4\n0xC2CBBEE5\t0x45B0\n0xC2CBBEE6\t0x45B5\n0xC2CBBEE7\t0x45AE\n0xC2CBBEE8\t0x86EE\n0xC2CBBEE9\t0x8847\n0xC2CBBEEA\t0x8846\n0xC2CBBEEB\t0x462D\n0xC2CBBEEC\t0x462C\n0xC2CBBEED\t0x88BB\n0xC2CBBEEE\t0x462B\n0xC2CBBEEF\t0x88BF\n0xC2CBBEF0\t0x88B4\n0xC2CBBEF1\t0x4629\n0xC2CBBEF2\t0x88B5\n0xC2CBBEF3\t0x467F\n0xC2CBBEF4\t0x899A\n0xC2CBBEF5\t0x8A43\n0xC2CBBEF6\t0x46C9\n0xC2CBBEF7\t0x46CB\n0xC2CBBEF8\t0x8A5A\n0xC2CBBEF9\t0x46C5\n0xC2CBBEFA\t0x46C6\n0xC2CBBEFB\t0x46CA\n0xC2CBBEFC\t0x8A35\n0xC2CBBEFD\t0x8A38\n0xC2CBBEFE\t0x8A42\n0xC2CBBFA1\t0x8A49\n0xC2CBBFA2\t0x8A5D\n0xC2CBBFA3\t0x8A4B\n0xC2CBBFA4\t0x8A3D\n0xC2CBBFA5\t0x46D2\n0xC2CBBFA6\t0x46D0\n0xC2CBBFA7\t0x472D\n0xC2CBBFA8\t0x4735\n0xC2CBBFA9\t0x8C60\n0xC2CBBFAA\t0x8C5E\n0xC2CBBFAB\t0x8C7F\n0xC2CBBFAC\t0x8C7E\n0xC2CBBFAD\t0x8C83\n0xC2CBBFAE\t0x476C\n0xC2CBBFAF\t0x8CB1\n0xC2CBBFB0\t0x8D87\n0xC2CBBFB1\t0x479D\n0xC2CBBFB2\t0x47A0\n0xC2CBBFB3\t0x8D88\n0xC2CBBFB4\t0x8D83\n0xC2CBBFB5\t0x47A2\n0xC2CBBFB6\t0x479F\n0xC2CBBFB7\t0x8D86\n0xC2CBBFB8\t0x8D8B\n0xC2CBBFB9\t0x8D82\n0xC2CBBFBA\t0x8DCA\n0xC2CBBFBB\t0x8DD2\n0xC2CBBFBC\t0x47EB\n0xC2CBBFBD\t0x47E2\n0xC2CBBFBE\t0x8DD4\n0xC2CBBFBF\t0x8DC9\n0xC2CBBFC0\t0x8EB0\n0xC2CBBFC1\t0x4836\n0xC2CBBFC2\t0x4832\n0xC2CBBFC3\t0x4850\n0xC2CBBFC4\t0x8EF2\n0xC2CBBFC5\t0x8EE4\n0xC2CBBFC6\t0x8EF3\n0xC2CBBFC7\t0x8EEA\n0xC2CBBFC8\t0x484F\n0xC2CBBFC9\t0x8EFD\n0xC2CBBFCA\t0x4852\n0xC2CBBFCB\t0x8F9D\n0xC2CBBFCC\t0x902B\n0xC2CBBFCD\t0x902A\n0xC2CBBFCE\t0x489E\n0xC2CBBFCF\t0x9028\n0xC2CBBFD0\t0x9029\n0xC2CBBFD1\t0x902C\n0xC2CBBFD2\t0x48A0\n0xC2CBBFD3\t0x489C\n0xC2CBBFD4\t0x903A\n0xC2CBBFD5\t0x9030\n0xC2CBBFD6\t0x9037\n0xC2CBBFD7\t0x903B\n0xC2CBBFD8\t0x48D1\n0xC2CBBFD9\t0x910A\n0xC2CBBFDA\t0x48EF\n0xC2CBBFDB\t0x48F0\n0xC2CBBFDC\t0x48F1\n0xC2CBBFDD\t0x91FE\n0xC2CBBFDE\t0x9220\n0xC2CBBFDF\t0x491D\n0xC2CBBFE0\t0x920B\n0xC2CBBFE1\t0x491F\n0xC2CBBFE2\t0x9218\n0xC2CBBFE3\t0x9222\n0xC2CBBFE4\t0x491E\n0xC2CBBFE5\t0x921B\n0xC2CBBFE6\t0x9208\n0xC2CBBFE7\t0x4920\n0xC2CBBFE8\t0x920E\n0xC2CBBFE9\t0x9213\n0xC2CBBFEA\t0x498E\n0xC2CBBFEB\t0x4991\n0xC2CBBFEC\t0x9595\n0xC2CBBFED\t0x28CDD\n0xC2CBBFEE\t0x4990\n0xC2CBBFEF\t0x49D7\n0xC2CBBFF0\t0x968C\n0xC2CBBFF1\t0x967B\n0xC2CBBFF2\t0x967F\n0xC2CBBFF3\t0x9681\n0xC2CBBFF4\t0x49D9\n0xC2CBBFF5\t0x9682\n0xC2CBBFF6\t0x49F4\n0xC2CBBFF7\t0x49F6\n0xC2CBBFF8\t0x3560\n0xC2CBBFF9\t0x49F5\n0xC2CBBFFA\t0x49F3\n0xC2CBBFFB\t0x96EE\n0xC2CBBFFC\t0x96ED\n0xC2CBBFFD\t0x4A0C\n0xC2CBBFFE\t0x96EC\n0xC2CBC0A1\t0x975F\n0xC2CBC0A2\t0x976F\n0xC2CBC0A3\t0x4A51\n0xC2CBC0A4\t0x976D\n0xC2CBC0A5\t0x4AA6\n0xC2CBC0A6\t0x4AA7\n0xC2CBC0A7\t0x4AA8\n0xC2CBC0A8\t0x4B27\n0xC2CBC0A9\t0x4B24\n0xC2CBC0AA\t0x4B25\n0xC2CBC0AB\t0x98F0\n0xC2CBC0AC\t0x4B2A\n0xC2CBC0AD\t0x4B74\n0xC2CBC0AE\t0x4BC7\n0xC2CBC0AF\t0x9AA9\n0xC2CBC0B0\t0x4BE7\n0xC2CBC0B1\t0x4BED\n0xC2CBC0B2\t0x9AE0\n0xC2CBC0B3\t0x4EB7\n0xC2CBC0B4\t0x342E\n0xC2CBC0B5\t0x347B\n0xC2CBC0B6\t0x50CC\n0xC2CBC0B7\t0x50BC\n0xC2CBC0B8\t0x347C\n0xC2CBC0B9\t0x50AA\n0xC2CBC0BA\t0x50B9\n0xC2CBC0BB\t0x347D\n0xC2CBC0BC\t0x50AB\n0xC2CBC0BD\t0x50C3\n0xC2CBC0BE\t0x50CD\n0xC2CBC0BF\t0x517E\n0xC2CBC0C0\t0x527E\n0xC2CBC0C1\t0x5279\n0xC2CBC0C2\t0x34FD\n0xC2CBC0C3\t0x2F823\n0xC2CBC0C4\t0x52E1\n0xC2CBC0C5\t0x52E0\n0xC2CBC0C6\t0x52E7\n0xC2CBC0C7\t0x5380\n0xC2CBC0C8\t0x53AB\n0xC2CBC0C9\t0x53AA\n0xC2CBC0CA\t0x53A9\n0xC2CBC0CB\t0x53E0\n0xC2CBC0CC\t0x55EA\n0xC2CBC0CD\t0x35DA\n0xC2CBC0CE\t0x55D7\n0xC2CBC0CF\t0x35D6\n0xC2CBC0D0\t0x35DB\n0xC2CBC0D1\t0x55C1\n0xC2CBC0D2\t0x5715\n0xC2CBC0D3\t0x365B\n0xC2CBC0D4\t0x586C\n0xC2CBC0D5\t0x365C\n0xC2CBC0D6\t0x585C\n0xC2CBC0D7\t0x5850\n0xC2CBC0D8\t0x5861\n0xC2CBC0D9\t0x586A\n0xC2CBC0DA\t0x5869\n0xC2CBC0DB\t0x5856\n0xC2CBC0DC\t0x5860\n0xC2CBC0DD\t0x5866\n0xC2CBC0DE\t0x585F\n0xC2CBC0DF\t0x5923\n0xC2CBC0E0\t0x5966\n0xC2CBC0E1\t0x5968\n0xC2CBC0E2\t0x3706\n0xC2CBC0E3\t0x370B\n0xC2CBC0E4\t0x5ACE\n0xC2CBC0E5\t0x370D\n0xC2CBC0E6\t0x5AC5\n0xC2CBC0E7\t0x5AC3\n0xC2CBC0E8\t0x370A\n0xC2CBC0E9\t0x3713\n0xC2CBC0EA\t0x5AD0\n0xC2CBC0EB\t0x3710\n0xC2CBC0EC\t0x3712\n0xC2CBC0ED\t0x3709\n0xC2CBC0EE\t0x3708\n0xC2CBC0EF\t0x3711\n0xC2CBC0F0\t0x370F\n0xC2CBC0F1\t0x5B74\n0xC2CBC0F2\t0x5B76\n0xC2CBC0F3\t0x5BDC\n0xC2CBC0F4\t0x5BD7\n0xC2CBC0F5\t0x5BDA\n0xC2CBC0F6\t0x5BDB\n0xC2CBC0F7\t0x3767\n0xC2CBC0F8\t0x5C20\n0xC2CBC0F9\t0x5D6D\n0xC2CBC0FA\t0x5D66\n0xC2CBC0FB\t0x37F6\n0xC2CBC0FC\t0x5D64\n0xC2CBC0FD\t0x5D6E\n0xC2CBC0FE\t0x2F87E\n0xC2CBC1A1\t0x5D60\n0xC2CBC1A2\t0x5F42\n0xC2CBC1A3\t0x5F5A\n0xC2CBC1A4\t0x5F6E\n0xC2CBC1A5\t0x3964\n0xC2CBC1A6\t0x396C\n0xC2CBC1A7\t0x6130\n0xC2CBC1A8\t0x613A\n0xC2CBC1A9\t0x612A\n0xC2CBC1AA\t0x6143\n0xC2CBC1AB\t0x6119\n0xC2CBC1AC\t0x6131\n0xC2CBC1AD\t0x396D\n0xC2CBC1AE\t0x613D\n0xC2CBC1AF\t0x397A\n0xC2CBC1B0\t0x3975\n0xC2CBC1B1\t0x3A0D\n0xC2CBC1B2\t0x6408\n0xC2CBC1B3\t0x6432\n0xC2CBC1B4\t0x6438\n0xC2CBC1B5\t0x3A1E\n0xC2CBC1B6\t0x6431\n0xC2CBC1B7\t0x3A1B\n0xC2CBC1B8\t0x6419\n0xC2CBC1B9\t0x3A2A\n0xC2CBC1BA\t0x6411\n0xC2CBC1BB\t0x3A1F\n0xC2CBC1BC\t0x3A22\n0xC2CBC1BD\t0x6429\n0xC2CBC1BE\t0x641D\n0xC2CBC1BF\t0x3A25\n0xC2CBC1C0\t0x3A27\n0xC2CBC1C1\t0x3A29\n0xC2CBC1C2\t0x643C\n0xC2CBC1C3\t0x3A24\n0xC2CBC1C4\t0x6446\n0xC2CBC1C5\t0x6447\n0xC2CBC1C6\t0x3A28\n0xC2CBC1C7\t0x3A26\n0xC2CBC1C8\t0x643A\n0xC2CBC1C9\t0x6407\n0xC2CBC1CA\t0x3A23\n0xC2CBC1CB\t0x656B\n0xC2CBC1CC\t0x3A9F\n0xC2CBC1CD\t0x6570\n0xC2CBC1CE\t0x656D\n0xC2CBC1CF\t0x3AB1\n0xC2CBC1D0\t0x65E4\n0xC2CBC1D1\t0x6693\n0xC2CBC1D2\t0x3B03\n0xC2CBC1D3\t0x3B07\n0xC2CBC1D4\t0x3B0C\n0xC2CBC1D5\t0x3B06\n0xC2CBC1D6\t0x668F\n0xC2CBC1D7\t0x3B04\n0xC2CBC1D8\t0x3B09\n0xC2CBC1D9\t0x6692\n0xC2CBC1DA\t0x3B05\n0xC2CBC1DB\t0x668E\n0xC2CBC1DC\t0x3B08\n0xC2CBC1DD\t0x6946\n0xC2CBC1DE\t0x3B96\n0xC2CBC1DF\t0x3B9C\n0xC2CBC1E0\t0x3B9F\n0xC2CBC1E1\t0x3B9B\n0xC2CBC1E2\t0x3B98\n0xC2CBC1E3\t0x3B99\n0xC2CBC1E4\t0x3B94\n0xC2CBC1E5\t0x6931\n0xC2CBC1E6\t0x3B8D\n0xC2CBC1E7\t0x3BA3\n0xC2CBC1E8\t0x693E\n0xC2CBC1E9\t0x3B93\n0xC2CBC1EA\t0x697C\n0xC2CBC1EB\t0x6943\n0xC2CBC1EC\t0x3B92\n0xC2CBC1ED\t0x6973\n0xC2CBC1EE\t0x2F8E8\n0xC2CBC1EF\t0x6955\n0xC2CBC1F0\t0x3B8E\n0xC2CBC1F1\t0x3B8C\n0xC2CBC1F2\t0x6985\n0xC2CBC1F3\t0x694D\n0xC2CBC1F4\t0x6950\n0xC2CBC1F5\t0x6947\n0xC2CBC1F6\t0x6967\n0xC2CBC1F7\t0x6936\n0xC2CBC1F8\t0x6964\n0xC2CBC1F9\t0x6961\n0xC2CBC1FA\t0x3B9A\n0xC2CBC1FB\t0x697D\n0xC2CBC1FC\t0x6B44\n0xC2CBC1FD\t0x6B40\n0xC2CBC1FE\t0x6B71\n0xC2CBC2A1\t0x6B73\n0xC2CBC2A2\t0x6B9C\n0xC2CBC2A3\t0x3C6A\n0xC2CBC2A4\t0x3C6D\n0xC2CBC2A5\t0x3C84\n0xC2CBC2A6\t0x6BC1\n0xC2CBC2A7\t0x3CA0\n0xC2CBC2A8\t0x6BFA\n0xC2CBC2A9\t0x6C31\n0xC2CBC2AA\t0x6C32\n0xC2CBC2AB\t0x3D1D\n0xC2CBC2AC\t0x3D26\n0xC2CBC2AD\t0x6EB8\n0xC2CBC2AE\t0x6EA8\n0xC2CBC2AF\t0x3D33\n0xC2CBC2B0\t0x6E91\n0xC2CBC2B1\t0x6EBB\n0xC2CBC2B2\t0x3D38\n0xC2CBC2B3\t0x6E9A\n0xC2CBC2B4\t0x3D30\n0xC2CBC2B5\t0x3D28\n0xC2CBC2B6\t0x6EA9\n0xC2CBC2B7\t0x3D27\n0xC2CBC2B8\t0x3D2A\n0xC2CBC2B9\t0x6EB5\n0xC2CBC2BA\t0x6E6C\n0xC2CBC2BB\t0x6EE8\n0xC2CBC2BC\t0x3D31\n0xC2CBC2BD\t0x6EDD\n0xC2CBC2BE\t0x6EDA\n0xC2CBC2BF\t0x6EE6\n0xC2CBC2C0\t0x6EAC\n0xC2CBC2C1\t0x3D34\n0xC2CBC2C2\t0x3D2E\n0xC2CBC2C3\t0x3D3B\n0xC2CBC2C4\t0x6ED9\n0xC2CBC2C5\t0x6EE3\n0xC2CBC2C6\t0x6EE9\n0xC2CBC2C7\t0x6EDB\n0xC2CBC2C8\t0x3D29\n0xC2CBC2C9\t0x716F\n0xC2CBC2CA\t0x3DD2\n0xC2CBC2CB\t0x3DD8\n0xC2CBC2CC\t0x7148\n0xC2CBC2CD\t0x3DCF\n0xC2CBC2CE\t0x714A\n0xC2CBC2CF\t0x716B\n0xC2CBC2D0\t0x3DD9\n0xC2CBC2D1\t0x714F\n0xC2CBC2D2\t0x7157\n0xC2CBC2D3\t0x7174\n0xC2CBC2D4\t0x3DCE\n0xC2CBC2D5\t0x3DD3\n0xC2CBC2D6\t0x3DD0\n0xC2CBC2D7\t0x7145\n0xC2CBC2D8\t0x7151\n0xC2CBC2D9\t0x716D\n0xC2CBC2DA\t0x3BA1\n0xC2CBC2DB\t0x7251\n0xC2CBC2DC\t0x7250\n0xC2CBC2DD\t0x724E\n0xC2CBC2DE\t0x3E47\n0xC2CBC2DF\t0x7341\n0xC2CBC2E0\t0x3E8B\n0xC2CBC2E1\t0x732E\n0xC2CBC2E2\t0x7346\n0xC2CBC2E3\t0x3ED4\n0xC2CBC2E4\t0x7427\n0xC2CBC2E5\t0x3EDE\n0xC2CBC2E6\t0x7448\n0xC2CBC2E7\t0x7453\n0xC2CBC2E8\t0x743D\n0xC2CBC2E9\t0x3EDF\n0xC2CBC2EA\t0x745D\n0xC2CBC2EB\t0x7456\n0xC2CBC2EC\t0x3ED7\n0xC2CBC2ED\t0x741E\n0xC2CBC2EE\t0x7447\n0xC2CBC2EF\t0x7443\n0xC2CBC2F0\t0x7458\n0xC2CBC2F1\t0x7449\n0xC2CBC2F2\t0x3EE1\n0xC2CBC2F3\t0x744C\n0xC2CBC2F4\t0x7445\n0xC2CBC2F5\t0x743E\n0xC2CBC2F6\t0x3F2F\n0xC2CBC2F7\t0x7501\n0xC2CBC2F8\t0x751E\n0xC2CBC2F9\t0x3F62\n0xC2CBC2FA\t0x3F63\n0xC2CBC2FB\t0x757A\n0xC2CBC2FC\t0x75EE\n0xC2CBC2FD\t0x7602\n0xC2CBC2FE\t0x7697\n0xC2CBC3A1\t0x7698\n0xC2CBC3A2\t0x3FE2\n0xC2CBC3A3\t0x4004\n0xC2CBC3A4\t0x4043\n0xC2CBC3A5\t0x775D\n0xC2CBC3A6\t0x7764\n0xC2CBC3A7\t0x7753\n0xC2CBC3A8\t0x7758\n0xC2CBC3A9\t0x7882\n0xC2CBC3AA\t0x7890\n0xC2CBC3AB\t0x788A\n0xC2CBC3AC\t0x40BE\n0xC2CBC3AD\t0x787A\n0xC2CBC3AE\t0x787D\n0xC2CBC3AF\t0x40BA\n0xC2CBC3B0\t0x788B\n0xC2CBC3B1\t0x7878\n0xC2CBC3B2\t0x40BC\n0xC2CBC3B3\t0x2F94E\n0xC2CBC3B4\t0x788D\n0xC2CBC3B5\t0x7888\n0xC2CBC3B6\t0x7892\n0xC2CBC3B7\t0x7881\n0xC2CBC3B8\t0x797E\n0xC2CBC3B9\t0x7983\n0xC2CBC3BA\t0x410D\n0xC2CBC3BB\t0x410E\n0xC2CBC3BC\t0x4111\n0xC2CBC3BD\t0x7980\n0xC2CBC3BE\t0x410F\n0xC2CBC3BF\t0x4112\n0xC2CBC3C0\t0x4155\n0xC2CBC3C1\t0x7A0F\n0xC2CBC3C2\t0x4159\n0xC2CBC3C3\t0x415B\n0xC2CBC3C4\t0x7A1D\n0xC2CBC3C5\t0x4157\n0xC2CBC3C6\t0x7AA1\n0xC2CBC3C7\t0x7AA4\n0xC2CBC3C8\t0x41CE\n0xC2CBC3C9\t0x7AE9\n0xC2CBC3CA\t0x7AEA\n0xC2CBC3CB\t0x41FE\n0xC2CBC3CC\t0x7B62\n0xC2CBC3CD\t0x7B6B\n0xC2CBC3CE\t0x41FC\n0xC2CBC3CF\t0x7B5E\n0xC2CBC3D0\t0x41F5\n0xC2CBC3D1\t0x7B79\n0xC2CBC3D2\t0x41F9\n0xC2CBC3D3\t0x41FA\n0xC2CBC3D4\t0x7B6F\n0xC2CBC3D5\t0x7B68\n0xC2CBC3D6\t0x4288\n0xC2CBC3D7\t0x4289\n0xC2CBC3D8\t0x7CAE\n0xC2CBC3D9\t0x428A\n0xC2CBC3DA\t0x4287\n0xC2CBC3DB\t0x428B\n0xC2CBC3DC\t0x7CB0\n0xC2CBC3DD\t0x42E6\n0xC2CBC3DE\t0x7D90\n0xC2CBC3DF\t0x42ED\n0xC2CBC3E0\t0x7D8A\n0xC2CBC3E1\t0x42E5\n0xC2CBC3E2\t0x7D8B\n0xC2CBC3E3\t0x7D99\n0xC2CBC3E4\t0x7D95\n0xC2CBC3E5\t0x42E0\n0xC2CBC3E6\t0x7D87\n0xC2CBC3E7\t0x7D78\n0xC2CBC3E8\t0x7D97\n0xC2CBC3E9\t0x7D89\n0xC2CBC3EA\t0x7D98\n0xC2CBC3EB\t0x42E1\n0xC2CBC3EC\t0x435B\n0xC2CBC3ED\t0x435C\n0xC2CBC3EE\t0x7FA3\n0xC2CBC3EF\t0x438F\n0xC2CBC3F0\t0x438B\n0xC2CBC3F1\t0x438D\n0xC2CBC3F2\t0x7FDD\n0xC2CBC3F3\t0x8057\n0xC2CBC3F4\t0x43B9\n0xC2CBC3F5\t0x8163\n0xC2CBC3F6\t0x816A\n0xC2CBC3F7\t0x816C\n0xC2CBC3F8\t0x440F\n0xC2CBC3F9\t0x4419\n0xC2CBC3FA\t0x4413\n0xC2CBC3FB\t0x815D\n0xC2CBC3FC\t0x8175\n0xC2CBC3FD\t0x4418\n0xC2CBC3FE\t0x815F\n0xC2CBC4A1\t0x4416\n0xC2CBC4A2\t0x817D\n0xC2CBC4A3\t0x816D\n0xC2CBC4A4\t0x4453\n0xC2CBC4A5\t0x2F98D\n0xC2CBC4A6\t0x8241\n0xC2CBC4A7\t0x844F\n0xC2CBC4A8\t0x8484\n0xC2CBC4A9\t0x44F6\n0xC2CBC4AA\t0x847F\n0xC2CBC4AB\t0x44F5\n0xC2CBC4AC\t0x8448\n0xC2CBC4AD\t0x842A\n0xC2CBC4AE\t0x847B\n0xC2CBC4AF\t0x8472\n0xC2CBC4B0\t0x8464\n0xC2CBC4B1\t0x842E\n0xC2CBC4B2\t0x845C\n0xC2CBC4B3\t0x8453\n0xC2CBC4B4\t0x44F7\n0xC2CBC4B5\t0x8441\n0xC2CBC4B6\t0x84C8\n0xC2CBC4B7\t0x44F0\n0xC2CBC4B8\t0x8462\n0xC2CBC4B9\t0x8480\n0xC2CBC4BA\t0x843E\n0xC2CBC4BB\t0x8483\n0xC2CBC4BC\t0x8471\n0xC2CBC4BD\t0x44F9\n0xC2CBC4BE\t0x844A\n0xC2CBC4BF\t0x8455\n0xC2CBC4C0\t0x8458\n0xC2CBC4C1\t0x4592\n0xC2CBC4C2\t0x4595\n0xC2CBC4C3\t0x4596\n0xC2CBC4C4\t0x86FC\n0xC2CBC4C5\t0x86FD\n0xC2CBC4C6\t0x8715\n0xC2CBC4C7\t0x45B9\n0xC2CBC4C8\t0x8716\n0xC2CBC4C9\t0x86FF\n0xC2CBC4CA\t0x45BD\n0xC2CBC4CB\t0x45B8\n0xC2CBC4CC\t0x4612\n0xC2CBC4CD\t0x8858\n0xC2CBC4CE\t0x88CF\n0xC2CBC4CF\t0x88E0\n0xC2CBC4D0\t0x4680\n0xC2CBC4D1\t0x4681\n0xC2CBC4D2\t0x469A\n0xC2CBC4D3\t0x4698\n0xC2CBC4D4\t0x89E7\n0xC2CBC4D5\t0x8A6A\n0xC2CBC4D6\t0x8A80\n0xC2CBC4D7\t0x46D4\n0xC2CBC4D8\t0x8A6F\n0xC2CBC4D9\t0x8A65\n0xC2CBC4DA\t0x46DA\n0xC2CBC4DB\t0x8A78\n0xC2CBC4DC\t0x8A7D\n0xC2CBC4DD\t0x8A88\n0xC2CBC4DE\t0x46D6\n0xC2CBC4DF\t0x46DB\n0xC2CBC4E0\t0x8A64\n0xC2CBC4E1\t0x8A7E\n0xC2CBC4E2\t0x46DC\n0xC2CBC4E3\t0x8A67\n0xC2CBC4E4\t0x8C63\n0xC2CBC4E5\t0x8C88\n0xC2CBC4E6\t0x4771\n0xC2CBC4E7\t0x8CCD\n0xC2CBC4E8\t0x4772\n0xC2CBC4E9\t0x8CC9\n0xC2CBC4EA\t0x47A8\n0xC2CBC4EB\t0x8DED\n0xC2CBC4EC\t0x47F0\n0xC2CBC4ED\t0x2F9DB\n0xC2CBC4EE\t0x47F1\n0xC2CBC4EF\t0x47FD\n0xC2CBC4F0\t0x4838\n0xC2CBC4F1\t0x4837\n0xC2CBC4F2\t0x4839\n0xC2CBC4F3\t0x8EB1\n0xC2CBC4F4\t0x4855\n0xC2CBC4F5\t0x4853\n0xC2CBC4F6\t0x8F04\n0xC2CBC4F7\t0x8F9E\n0xC2CBC4F8\t0x8FA0\n0xC2CBC4F9\t0x9043\n0xC2CBC4FA\t0x9046\n0xC2CBC4FB\t0x9048\n0xC2CBC4FC\t0x9045\n0xC2CBC4FD\t0x9040\n0xC2CBC4FE\t0x904C\n0xC2CBC5A1\t0x48D5\n0xC2CBC5A2\t0x48BD\n0xC2CBC5A3\t0x910C\n0xC2CBC5A4\t0x9113\n0xC2CBC5A5\t0x9115\n0xC2CBC5A6\t0x48F5\n0xC2CBC5A7\t0x916B\n0xC2CBC5A8\t0x9167\n0xC2CBC5A9\t0x925D\n0xC2CBC5AA\t0x9255\n0xC2CBC5AB\t0x9235\n0xC2CBC5AC\t0x4921\n0xC2CBC5AD\t0x9259\n0xC2CBC5AE\t0x922F\n0xC2CBC5AF\t0x923C\n0xC2CBC5B0\t0x928F\n0xC2CBC5B1\t0x925C\n0xC2CBC5B2\t0x926A\n0xC2CBC5B3\t0x9262\n0xC2CBC5B4\t0x925F\n0xC2CBC5B5\t0x926B\n0xC2CBC5B6\t0x926E\n0xC2CBC5B7\t0x923B\n0xC2CBC5B8\t0x9244\n0xC2CBC5B9\t0x9241\n0xC2CBC5BA\t0x959A\n0xC2CBC5BB\t0x4992\n0xC2CBC5BC\t0x9599\n0xC2CBC5BD\t0x49DE\n0xC2CBC5BE\t0x49DB\n0xC2CBC5BF\t0x49DA\n0xC2CBC5C0\t0x968F\n0xC2CBC5C1\t0x49DF\n0xC2CBC5C2\t0x9696\n0xC2CBC5C3\t0x49F9\n0xC2CBC5C4\t0x49F8\n0xC2CBC5C5\t0x49FA\n0xC2CBC5C6\t0x96F4\n0xC2CBC5C7\t0x96FC\n0xC2CBC5C8\t0x4A0E\n0xC2CBC5C9\t0x9755\n0xC2CBC5CA\t0x4A43\n0xC2CBC5CB\t0x9779\n0xC2CBC5CC\t0x4A56\n0xC2CBC5CD\t0x4A53\n0xC2CBC5CE\t0x4A9E\n0xC2CBC5CF\t0x97EE\n0xC2CBC5D0\t0x97F5\n0xC2CBC5D1\t0x4AA9\n0xC2CBC5D2\t0x980B\n0xC2CBC5D3\t0x4AFA\n0xC2CBC5D4\t0x98F3\n0xC2CBC5D5\t0x4B31\n0xC2CBC5D6\t0x4B30\n0xC2CBC5D7\t0x98F7\n0xC2CBC5D8\t0x98FF\n0xC2CBC5D9\t0x98F5\n0xC2CBC5DA\t0x4B32\n0xC2CBC5DB\t0x98EC\n0xC2CBC5DC\t0x98F1\n0xC2CBC5DD\t0x4B29\n0xC2CBC5DE\t0x4B2E\n0xC2CBC5DF\t0x999A\n0xC2CBC5E0\t0x4B76\n0xC2CBC5E1\t0x9AE2\n0xC2CBC5E2\t0x9B3D\n0xC2CBC5E3\t0x9B5D\n0xC2CBC5E4\t0x9CE8\n0xC2CBC5E5\t0x4CA5\n0xC2CBC5E6\t0x9CEB\n0xC2CBC5E7\t0x9CEF\n0xC2CBC5E8\t0x9CEE\n0xC2CBC5E9\t0x9E81\n0xC2CBC5EA\t0x9F14\n0xC2CBC5EB\t0x50D0\n0xC2CBC5EC\t0x50D9\n0xC2CBC5ED\t0x50DC\n0xC2CBC5EE\t0x50D8\n0xC2CBC5EF\t0x348C\n0xC2CBC5F0\t0x50E1\n0xC2CBC5F1\t0x50EB\n0xC2CBC5F2\t0x348B\n0xC2CBC5F3\t0x3489\n0xC2CBC5F4\t0x50F4\n0xC2CBC5F5\t0x50E2\n0xC2CBC5F6\t0x50DE\n0xC2CBC5F7\t0x348D\n0xC2CBC5F8\t0x3486\n0xC2CBC5F9\t0x34D7\n0xC2CBC5FA\t0x51F4\n0xC2CBC5FB\t0x3504\n0xC2CBC5FC\t0x3507\n0xC2CBC5FD\t0x3503\n0xC2CBC5FE\t0x52ED\n0xC2CBC6A1\t0x52EA\n0xC2CBC6A2\t0x3522\n0xC2CBC6A3\t0x5332\n0xC2CBC6A4\t0x3551\n0xC2CBC6A5\t0x53AE\n0xC2CBC6A6\t0x53B0\n0xC2CBC6A7\t0x3561\n0xC2CBC6A8\t0x55FB\n0xC2CBC6A9\t0x5603\n0xC2CBC6AA\t0x560B\n0xC2CBC6AB\t0x35E9\n0xC2CBC6AC\t0x5607\n0xC2CBC6AD\t0x35E5\n0xC2CBC6AE\t0x55F8\n0xC2CBC6AF\t0x35E4\n0xC2CBC6B0\t0x5628\n0xC2CBC6B1\t0x561E\n0xC2CBC6B2\t0x35E3\n0xC2CBC6B3\t0x5618\n0xC2CBC6B4\t0x5611\n0xC2CBC6B5\t0x5651\n0xC2CBC6B6\t0x5605\n0xC2CBC6B7\t0x5717\n0xC2CBC6B8\t0x5892\n0xC2CBC6B9\t0x3665\n0xC2CBC6BA\t0x588C\n0xC2CBC6BB\t0x3663\n0xC2CBC6BC\t0x5878\n0xC2CBC6BD\t0x5884\n0xC2CBC6BE\t0x5873\n0xC2CBC6BF\t0x58AD\n0xC2CBC6C0\t0x5897\n0xC2CBC6C1\t0x5895\n0xC2CBC6C2\t0x5877\n0xC2CBC6C3\t0x5872\n0xC2CBC6C4\t0x5896\n0xC2CBC6C5\t0x588D\n0xC2CBC6C6\t0x5910\n0xC2CBC6C7\t0x368C\n0xC2CBC6C8\t0x596C\n0xC2CBC6C9\t0x371A\n0xC2CBC6CA\t0x5AE7\n0xC2CBC6CB\t0x3715\n0xC2CBC6CC\t0x5AE4\n0xC2CBC6CD\t0x3720\n0xC2CBC6CE\t0x3721\n0xC2CBC6CF\t0x5AEF\n0xC2CBC6D0\t0x5626\n0xC2CBC6D1\t0x371C\n0xC2CBC6D2\t0x371B\n0xC2CBC6D3\t0x5AF0\n0xC2CBC6D4\t0x5D7B\n0xC2CBC6D5\t0x37FE\n0xC2CBC6D6\t0x5D83\n0xC2CBC6D7\t0x3804\n0xC2CBC6D8\t0x3801\n0xC2CBC6D9\t0x5D8B\n0xC2CBC6DA\t0x5D8C\n0xC2CBC6DB\t0x3800\n0xC2CBC6DC\t0x5D78\n0xC2CBC6DD\t0x5E52\n0xC2CBC6DE\t0x386D\n0xC2CBC6DF\t0x3893\n0xC2CBC6E0\t0x5ED0\n0xC2CBC6E1\t0x5ECF\n0xC2CBC6E2\t0x38A1\n0xC2CBC6E3\t0x5FB3\n0xC2CBC6E4\t0x5FB4\n0xC2CBC6E5\t0x3976\n0xC2CBC6E6\t0x3979\n0xC2CBC6E7\t0x3972\n0xC2CBC6E8\t0x617B\n0xC2CBC6E9\t0x3983\n0xC2CBC6EA\t0x616F\n0xC2CBC6EB\t0x6181\n0xC2CBC6EC\t0x613C\n0xC2CBC6ED\t0x6142\n0xC2CBC6EE\t0x6138\n0xC2CBC6EF\t0x6133\n0xC2CBC6F0\t0x2F8A6\n0xC2CBC6F1\t0x6160\n0xC2CBC6F2\t0x6169\n0xC2CBC6F3\t0x617D\n0xC2CBC6F4\t0x6186\n0xC2CBC6F5\t0x622C\n0xC2CBC6F6\t0x6228\n0xC2CBC6F7\t0x3A38\n0xC2CBC6F8\t0x644C\n0xC2CBC6F9\t0x3A30\n0xC2CBC6FA\t0x6457\n0xC2CBC6FB\t0x647C\n0xC2CBC6FC\t0x3A34\n0xC2CBC6FD\t0x3A3A\n0xC2CBC6FE\t0x6455\n0xC2CBC7A1\t0x6462\n0xC2CBC7A2\t0x6471\n0xC2CBC7A3\t0x646A\n0xC2CBC7A4\t0x6456\n0xC2CBC7A5\t0x643B\n0xC2CBC7A6\t0x6481\n0xC2CBC7A7\t0x3A35\n0xC2CBC7A8\t0x644F\n0xC2CBC7A9\t0x647E\n0xC2CBC7AA\t0x6464\n0xC2CBC7AB\t0x3A3F\n0xC2CBC7AC\t0x3A40\n0xC2CBC7AD\t0x3A32\n0xC2CBC7AE\t0x3A31\n0xC2CBC7AF\t0x3A36\n0xC2CBC7B0\t0x6571\n0xC2CBC7B1\t0x230BA\n0xC2CBC7B2\t0x3B0F\n0xC2CBC7B3\t0x66A5\n0xC2CBC7B4\t0x669A\n0xC2CBC7B5\t0x669C\n0xC2CBC7B6\t0x3B10\n0xC2CBC7B7\t0x66A6\n0xC2CBC7B8\t0x3B0D\n0xC2CBC7B9\t0x66A4\n0xC2CBC7BA\t0x698F\n0xC2CBC7BB\t0x69C5\n0xC2CBC7BC\t0x69C8\n0xC2CBC7BD\t0x6992\n0xC2CBC7BE\t0x69B2\n0xC2CBC7BF\t0x3BA9\n0xC2CBC7C0\t0x3BB4\n0xC2CBC7C1\t0x3BAC\n0xC2CBC7C2\t0x69E3\n0xC2CBC7C3\t0x69C0\n0xC2CBC7C4\t0x69D6\n0xC2CBC7C5\t0x69D1\n0xC2CBC7C6\t0x699F\n0xC2CBC7C7\t0x69A2\n0xC2CBC7C8\t0x69D2\n0xC2CBC7C9\t0x3BB8\n0xC2CBC7CA\t0x3BAE\n0xC2CBC7CB\t0x235F3\n0xC2CBC7CC\t0x69E1\n0xC2CBC7CD\t0x69D5\n0xC2CBC7CE\t0x699D\n0xC2CBC7CF\t0x3BB3\n0xC2CBC7D0\t0x3BBA\n0xC2CBC7D1\t0x6998\n0xC2CBC7D2\t0x3C3F\n0xC2CBC7D3\t0x6B74\n0xC2CBC7D4\t0x6BA1\n0xC2CBC7D5\t0x3D3C\n0xC2CBC7D6\t0x6EF0\n0xC2CBC7D7\t0x6EF3\n0xC2CBC7D8\t0x3D42\n0xC2CBC7D9\t0x3D40\n0xC2CBC7DA\t0x6F1B\n0xC2CBC7DB\t0x6F0C\n0xC2CBC7DC\t0x6F1D\n0xC2CBC7DD\t0x6F34\n0xC2CBC7DE\t0x6F28\n0xC2CBC7DF\t0x6F17\n0xC2CBC7E0\t0x3D3E\n0xC2CBC7E1\t0x6F44\n0xC2CBC7E2\t0x6F42\n0xC2CBC7E3\t0x6F04\n0xC2CBC7E4\t0x6F11\n0xC2CBC7E5\t0x6EFA\n0xC2CBC7E6\t0x6F4A\n0xC2CBC7E7\t0x7191\n0xC2CBC7E8\t0x718E\n0xC2CBC7E9\t0x3DE1\n0xC2CBC7EA\t0x718B\n0xC2CBC7EB\t0x718D\n0xC2CBC7EC\t0x717F\n0xC2CBC7ED\t0x718C\n0xC2CBC7EE\t0x717E\n0xC2CBC7EF\t0x717C\n0xC2CBC7F0\t0x7183\n0xC2CBC7F1\t0x3DE6\n0xC2CBC7F2\t0x7188\n0xC2CBC7F3\t0x3DE0\n0xC2CBC7F4\t0x3E15\n0xC2CBC7F5\t0x7294\n0xC2CBC7F6\t0x3E93\n0xC2CBC7F7\t0x7355\n0xC2CBC7F8\t0x7353\n0xC2CBC7F9\t0x734F\n0xC2CBC7FA\t0x7354\n0xC2CBC7FB\t0x746C\n0xC2CBC7FC\t0x7465\n0xC2CBC7FD\t0x7466\n0xC2CBC7FE\t0x7461\n0xC2CBC8A1\t0x746B\n0xC2CBC8A2\t0x7468\n0xC2CBC8A3\t0x7476\n0xC2CBC8A4\t0x3EE7\n0xC2CBC8A5\t0x7460\n0xC2CBC8A6\t0x24A0F\n0xC2CBC8A7\t0x7474\n0xC2CBC8A8\t0x7506\n0xC2CBC8A9\t0x760E\n0xC2CBC8AA\t0x3FAD\n0xC2CBC8AB\t0x7607\n0xC2CBC8AC\t0x3FAE\n0xC2CBC8AD\t0x3FE3\n0xC2CBC8AE\t0x76B9\n0xC2CBC8AF\t0x3FF5\n0xC2CBC8B0\t0x76B7\n0xC2CBC8B1\t0x76E2\n0xC2CBC8B2\t0x4006\n0xC2CBC8B3\t0x7774\n0xC2CBC8B4\t0x7777\n0xC2CBC8B5\t0x7776\n0xC2CBC8B6\t0x7775\n0xC2CBC8B7\t0x404F\n0xC2CBC8B8\t0x7778\n0xC2CBC8B9\t0x7771\n0xC2CBC8BA\t0x4054\n0xC2CBC8BB\t0x777A\n0xC2CBC8BC\t0x715B\n0xC2CBC8BD\t0x777B\n0xC2CBC8BE\t0x78A6\n0xC2CBC8BF\t0x78AE\n0xC2CBC8C0\t0x78B8\n0xC2CBC8C1\t0x40CB\n0xC2CBC8C2\t0x40E3\n0xC2CBC8C3\t0x40C9\n0xC2CBC8C4\t0x78B1\n0xC2CBC8C5\t0x78AF\n0xC2CBC8C6\t0x4113\n0xC2CBC8C7\t0x7989\n0xC2CBC8C8\t0x7987\n0xC2CBC8C9\t0x4115\n0xC2CBC8CA\t0x4161\n0xC2CBC8CB\t0x7A29\n0xC2CBC8CC\t0x4166\n0xC2CBC8CD\t0x7A2A\n0xC2CBC8CE\t0x4164\n0xC2CBC8CF\t0x7A2D\n0xC2CBC8D0\t0x7A2C\n0xC2CBC8D1\t0x4160\n0xC2CBC8D2\t0x7A32\n0xC2CBC8D3\t0x4163\n0xC2CBC8D4\t0x7AEC\n0xC2CBC8D5\t0x7AF0\n0xC2CBC8D6\t0x7B81\n0xC2CBC8D7\t0x7B9E\n0xC2CBC8D8\t0x7B83\n0xC2CBC8D9\t0x420A\n0xC2CBC8DA\t0x7B92\n0xC2CBC8DB\t0x4204\n0xC2CBC8DC\t0x7BA3\n0xC2CBC8DD\t0x7B9F\n0xC2CBC8DE\t0x7B93\n0xC2CBC8DF\t0x4207\n0xC2CBC8E0\t0x7B86\n0xC2CBC8E1\t0x7CB8\n0xC2CBC8E2\t0x7CB7\n0xC2CBC8E3\t0x428D\n0xC2CBC8E4\t0x428F\n0xC2CBC8E5\t0x4290\n0xC2CBC8E6\t0x4292\n0xC2CBC8E7\t0x42EC\n0xC2CBC8E8\t0x7DC8\n0xC2CBC8E9\t0x7DB6\n0xC2CBC8EA\t0x2F96C\n0xC2CBC8EB\t0x7DD1\n0xC2CBC8EC\t0x42E7\n0xC2CBC8ED\t0x7DA8\n0xC2CBC8EE\t0x7DAB\n0xC2CBC8EF\t0x42F2\n0xC2CBC8F0\t0x7DB3\n0xC2CBC8F1\t0x7DCD\n0xC2CBC8F2\t0x42EE\n0xC2CBC8F3\t0x7DCF\n0xC2CBC8F4\t0x7DA4\n0xC2CBC8F5\t0x42EF\n0xC2CBC8F6\t0x434C\n0xC2CBC8F7\t0x7F41\n0xC2CBC8F8\t0x7F6F\n0xC2CBC8F9\t0x7F71\n0xC2CBC8FA\t0x435E\n0xC2CBC8FB\t0x435F\n0xC2CBC8FC\t0x4376\n0xC2CBC8FD\t0x4374\n0xC2CBC8FE\t0x4372\n0xC2CBC9A1\t0x4390\n0xC2CBC9A2\t0x8023\n0xC2CBC9A3\t0x805B\n0xC2CBC9A4\t0x43BE\n0xC2CBC9A5\t0x8061\n0xC2CBC9A6\t0x805F\n0xC2CBC9A7\t0x8181\n0xC2CBC9A8\t0x4426\n0xC2CBC9A9\t0x4425\n0xC2CBC9AA\t0x8184\n0xC2CBC9AB\t0x8213\n0xC2CBC9AC\t0x4474\n0xC2CBC9AD\t0x824A\n0xC2CBC9AE\t0x824C\n0xC2CBC9AF\t0x44FD\n0xC2CBC9B0\t0x4505\n0xC2CBC9B1\t0x4501\n0xC2CBC9B2\t0x84BD\n0xC2CBC9B3\t0x8495\n0xC2CBC9B4\t0x4509\n0xC2CBC9B5\t0x8492\n0xC2CBC9B6\t0x84C3\n0xC2CBC9B7\t0x450C\n0xC2CBC9B8\t0x8496\n0xC2CBC9B9\t0x84A5\n0xC2CBC9BA\t0x84B5\n0xC2CBC9BB\t0x84B3\n0xC2CBC9BC\t0x84A3\n0xC2CBC9BD\t0x84E4\n0xC2CBC9BE\t0x84D8\n0xC2CBC9BF\t0x84D5\n0xC2CBC9C0\t0x450D\n0xC2CBC9C1\t0x84B7\n0xC2CBC9C2\t0x84AD\n0xC2CBC9C3\t0x84DA\n0xC2CBC9C4\t0x8493\n0xC2CBC9C5\t0x8736\n0xC2CBC9C6\t0x45C0\n0xC2CBC9C7\t0x45C5\n0xC2CBC9C8\t0x45C9\n0xC2CBC9C9\t0x873D\n0xC2CBC9CA\t0x872B\n0xC2CBC9CB\t0x8747\n0xC2CBC9CC\t0x8739\n0xC2CBC9CD\t0x45D5\n0xC2CBC9CE\t0x8745\n0xC2CBC9CF\t0x871D\n0xC2CBC9D0\t0x4641\n0xC2CBC9D1\t0x88FF\n0xC2CBC9D2\t0x88EA\n0xC2CBC9D3\t0x4633\n0xC2CBC9D4\t0x88F5\n0xC2CBC9D5\t0x463A\n0xC2CBC9D6\t0x8900\n0xC2CBC9D7\t0x88ED\n0xC2CBC9D8\t0x8903\n0xC2CBC9D9\t0x88E9\n0xC2CBC9DA\t0x4640\n0xC2CBC9DB\t0x4642\n0xC2CBC9DC\t0x89EA\n0xC2CBC9DD\t0x46E8\n0xC2CBC9DE\t0x8A9B\n0xC2CBC9DF\t0x8A8E\n0xC2CBC9E0\t0x8AA2\n0xC2CBC9E1\t0x46E4\n0xC2CBC9E2\t0x8A9C\n0xC2CBC9E3\t0x8A94\n0xC2CBC9E4\t0x8A90\n0xC2CBC9E5\t0x8AA9\n0xC2CBC9E6\t0x8AAC\n0xC2CBC9E7\t0x46E7\n0xC2CBC9E8\t0x8A9F\n0xC2CBC9E9\t0x46E6\n0xC2CBC9EA\t0x46E1\n0xC2CBC9EB\t0x8A9D\n0xC2CBC9EC\t0x4739\n0xC2CBC9ED\t0x8C67\n0xC2CBC9EE\t0x475C\n0xC2CBC9EF\t0x4775\n0xC2CBC9F0\t0x8CD0\n0xC2CBC9F1\t0x8CD6\n0xC2CBC9F2\t0x8CD4\n0xC2CBC9F3\t0x8D98\n0xC2CBC9F4\t0x8D9A\n0xC2CBC9F5\t0x8D97\n0xC2CBC9F6\t0x47AE\n0xC2CBC9F7\t0x47B0\n0xC2CBC9F8\t0x47FA\n0xC2CBC9F9\t0x8E0B\n0xC2CBC9FA\t0x8E08\n0xC2CBC9FB\t0x8E01\n0xC2CBC9FC\t0x8EB4\n0xC2CBC9FD\t0x8EB3\n0xC2CBC9FE\t0x485B\n0xC2CBCAA1\t0x8FA1\n0xC2CBCAA2\t0x8FA2\n0xC2CBCAA3\t0x48A5\n0xC2CBCAA4\t0x905A\n0xC2CBCAA5\t0x48A2\n0xC2CBCAA6\t0x9061\n0xC2CBCAA7\t0x905F\n0xC2CBCAA8\t0x48DB\n0xC2CBCAA9\t0x48DA\n0xC2CBCAAA\t0x9125\n0xC2CBCAAB\t0x917B\n0xC2CBCAAC\t0x9176\n0xC2CBCAAD\t0x917C\n0xC2CBCAAE\t0x4924\n0xC2CBCAAF\t0x9289\n0xC2CBCAB0\t0x92F6\n0xC2CBCAB1\t0x92B1\n0xC2CBCAB2\t0x92AD\n0xC2CBCAB3\t0x9292\n0xC2CBCAB4\t0x9281\n0xC2CBCAB5\t0x9284\n0xC2CBCAB6\t0x4926\n0xC2CBCAB7\t0x92AE\n0xC2CBCAB8\t0x9290\n0xC2CBCAB9\t0x929E\n0xC2CBCABA\t0x4998\n0xC2CBCABB\t0x4996\n0xC2CBCABC\t0x499A\n0xC2CBCABD\t0x95A2\n0xC2CBCABE\t0x95A7\n0xC2CBCABF\t0x4997\n0xC2CBCAC0\t0x49E1\n0xC2CBCAC1\t0x49E0\n0xC2CBCAC2\t0x49E3\n0xC2CBCAC3\t0x49E2\n0xC2CBCAC4\t0x96A0\n0xC2CBCAC5\t0x969D\n0xC2CBCAC6\t0x969F\n0xC2CBCAC7\t0x96D0\n0xC2CBCAC8\t0x49FB\n0xC2CBCAC9\t0x96D1\n0xC2CBCACA\t0x4A12\n0xC2CBCACB\t0x4A14\n0xC2CBCACC\t0x9759\n0xC2CBCACD\t0x4A45\n0xC2CBCACE\t0x9764\n0xC2CBCACF\t0x4A5C\n0xC2CBCAD0\t0x4A5D\n0xC2CBCAD1\t0x4AB8\n0xC2CBCAD2\t0x9819\n0xC2CBCAD3\t0x4ABA\n0xC2CBCAD4\t0x9814\n0xC2CBCAD5\t0x9815\n0xC2CBCAD6\t0x981A\n0xC2CBCAD7\t0x4B03\n0xC2CBCAD8\t0x4B35\n0xC2CBCAD9\t0x4B36\n0xC2CBCADA\t0x4B39\n0xC2CBCADB\t0x9906\n0xC2CBCADC\t0x4B2D\n0xC2CBCADD\t0x98F8\n0xC2CBCADE\t0x9901\n0xC2CBCADF\t0x4B7A\n0xC2CBCAE0\t0x99BE\n0xC2CBCAE1\t0x99BC\n0xC2CBCAE2\t0x99B7\n0xC2CBCAE3\t0x99B6\n0xC2CBCAE4\t0x99C0\n0xC2CBCAE5\t0x4B78\n0xC2CBCAE6\t0x99B8\n0xC2CBCAE7\t0x4B7B\n0xC2CBCAE8\t0x4B7C\n0xC2CBCAE9\t0x4B7E\n0xC2CBCAEA\t0x99C4\n0xC2CBCAEB\t0x4B7D\n0xC2CBCAEC\t0x99BF\n0xC2CBCAED\t0x4BC9\n0xC2CBCAEE\t0x9ADA\n0xC2CBCAEF\t0x9AE4\n0xC2CBCAF0\t0x9AE9\n0xC2CBCAF1\t0x9AE8\n0xC2CBCAF2\t0x9AEA\n0xC2CBCAF3\t0x9AE5\n0xC2CBCAF4\t0x4BF3\n0xC2CBCAF5\t0x9B26\n0xC2CBCAF6\t0x4C1A\n0xC2CBCAF7\t0x4C19\n0xC2CBCAF8\t0x9B40\n0xC2CBCAF9\t0x4C1F\n0xC2CBCAFA\t0x4CA6\n0xC2CBCAFB\t0x4CA7\n0xC2CBCAFC\t0x4CA8\n0xC2CBCAFD\t0x4CAB\n0xC2CBCAFE\t0x4CA9\n0xC2CBCBA1\t0x4D2E\n0xC2CBCBA2\t0x9EBD\n0xC2CBCBA3\t0x4D5E\n0xC2CBCBA4\t0x3495\n0xC2CBCBA5\t0x3493\n0xC2CBCBA6\t0x3492\n0xC2CBCBA7\t0x510E\n0xC2CBCBA8\t0x3496\n0xC2CBCBA9\t0x50F7\n0xC2CBCBAA\t0x3497\n0xC2CBCBAB\t0x50FC\n0xC2CBCBAC\t0x510D\n0xC2CBCBAD\t0x5101\n0xC2CBCBAE\t0x51DA\n0xC2CBCBAF\t0x51D9\n0xC2CBCBB0\t0x51DB\n0xC2CBCBB1\t0x5286\n0xC2CBCBB2\t0x528E\n0xC2CBCBB3\t0x52EE\n0xC2CBCBB4\t0x5333\n0xC2CBCBB5\t0x53B1\n0xC2CBCBB6\t0x35F5\n0xC2CBCBB7\t0x5647\n0xC2CBCBB8\t0x562D\n0xC2CBCBB9\t0x5654\n0xC2CBCBBA\t0x35EA\n0xC2CBCBBB\t0x564B\n0xC2CBCBBC\t0x5652\n0xC2CBCBBD\t0x5631\n0xC2CBCBBE\t0x5644\n0xC2CBCBBF\t0x5656\n0xC2CBCBC0\t0x5650\n0xC2CBCBC1\t0x562B\n0xC2CBCBC2\t0x35F3\n0xC2CBCBC3\t0x564D\n0xC2CBCBC4\t0x5637\n0xC2CBCBC5\t0x564F\n0xC2CBCBC6\t0x58A2\n0xC2CBCBC7\t0x58B7\n0xC2CBCBC8\t0x3669\n0xC2CBCBC9\t0x58B2\n0xC2CBCBCA\t0x366B\n0xC2CBCBCB\t0x58AA\n0xC2CBCBCC\t0x58B5\n0xC2CBCBCD\t0x58B0\n0xC2CBCBCE\t0x366C\n0xC2CBCBCF\t0x58B4\n0xC2CBCBD0\t0x58A4\n0xC2CBCBD1\t0x58A7\n0xC2CBCBD2\t0x3668\n0xC2CBCBD3\t0x5926\n0xC2CBCBD4\t0x5AFE\n0xC2CBCBD5\t0x3728\n0xC2CBCBD6\t0x5B04\n0xC2CBCBD7\t0x3726\n0xC2CBCBD8\t0x5AFC\n0xC2CBCBD9\t0x3725\n0xC2CBCBDA\t0x5B06\n0xC2CBCBDB\t0x5B0A\n0xC2CBCBDC\t0x5AFA\n0xC2CBCBDD\t0x5B0D\n0xC2CBCBDE\t0x5B00\n0xC2CBCBDF\t0x5B0E\n0xC2CBCBE0\t0x376B\n0xC2CBCBE1\t0x380F\n0xC2CBCBE2\t0x3808\n0xC2CBCBE3\t0x5D91\n0xC2CBCBE4\t0x380C\n0xC2CBCBE5\t0x5D8F\n0xC2CBCBE6\t0x5D90\n0xC2CBCBE7\t0x5D98\n0xC2CBCBE8\t0x5DA4\n0xC2CBCBE9\t0x5D9B\n0xC2CBCBEA\t0x5DA3\n0xC2CBCBEB\t0x5D96\n0xC2CBCBEC\t0x5DE4\n0xC2CBCBED\t0x5E5A\n0xC2CBCBEE\t0x3860\n0xC2CBCBEF\t0x3862\n0xC2CBCBF0\t0x5E5E\n0xC2CBCBF1\t0x3898\n0xC2CBCBF2\t0x5FB8\n0xC2CBCBF3\t0x6157\n0xC2CBCBF4\t0x615C\n0xC2CBCBF5\t0x61A6\n0xC2CBCBF6\t0x6195\n0xC2CBCBF7\t0x6188\n0xC2CBCBF8\t0x398A\n0xC2CBCBF9\t0x61A3\n0xC2CBCBFA\t0x618F\n0xC2CBCBFB\t0x3984\n0xC2CBCBFC\t0x6164\n0xC2CBCBFD\t0x397F\n0xC2CBCBFE\t0x6159\n0xC2CBCCA1\t0x6178\n0xC2CBCCA2\t0x3982\n0xC2CBCCA3\t0x6185\n0xC2CBCCA4\t0x6187\n0xC2CBCCA5\t0x619E\n0xC2CBCCA6\t0x3996\n0xC2CBCCA7\t0x3989\n0xC2CBCCA8\t0x6198\n0xC2CBCCA9\t0x619C\n0xC2CBCCAA\t0x398D\n0xC2CBCCAB\t0x39BC\n0xC2CBCCAC\t0x622F\n0xC2CBCCAD\t0x6480\n0xC2CBCCAE\t0x649B\n0xC2CBCCAF\t0x648E\n0xC2CBCCB0\t0x648D\n0xC2CBCCB1\t0x6494\n0xC2CBCCB2\t0x64C6\n0xC2CBCCB3\t0x3A44\n0xC2CBCCB4\t0x64A8\n0xC2CBCCB5\t0x6483\n0xC2CBCCB6\t0x3A3C\n0xC2CBCCB7\t0x64B9\n0xC2CBCCB8\t0x6486\n0xC2CBCCB9\t0x64B4\n0xC2CBCCBA\t0x64AF\n0xC2CBCCBB\t0x6491\n0xC2CBCCBC\t0x3A4E\n0xC2CBCCBD\t0x64AA\n0xC2CBCCBE\t0x64A1\n0xC2CBCCBF\t0x64A7\n0xC2CBCCC0\t0x66B6\n0xC2CBCCC1\t0x66B3\n0xC2CBCCC2\t0x3B14\n0xC2CBCCC3\t0x66BC\n0xC2CBCCC4\t0x66AC\n0xC2CBCCC5\t0x3B15\n0xC2CBCCC6\t0x66AD\n0xC2CBCCC7\t0x6A0E\n0xC2CBCCC8\t0x3BCE\n0xC2CBCCC9\t0x6A1C\n0xC2CBCCCA\t0x6A1A\n0xC2CBCCCB\t0x3BE0\n0xC2CBCCCC\t0x3BC2\n0xC2CBCCCD\t0x6A0B\n0xC2CBCCCE\t0x3BBF\n0xC2CBCCCF\t0x69EF\n0xC2CBCCD0\t0x6A0C\n0xC2CBCCD1\t0x69F0\n0xC2CBCCD2\t0x6A22\n0xC2CBCCD3\t0x3BC4\n0xC2CBCCD4\t0x69D8\n0xC2CBCCD5\t0x3BCF\n0xC2CBCCD6\t0x6A12\n0xC2CBCCD7\t0x69FA\n0xC2CBCCD8\t0x3BC8\n0xC2CBCCD9\t0x6A2A\n0xC2CBCCDA\t0x3BCC\n0xC2CBCCDB\t0x6A10\n0xC2CBCCDC\t0x3BCD\n0xC2CBCCDD\t0x3BC7\n0xC2CBCCDE\t0x6A29\n0xC2CBCCDF\t0x69F9\n0xC2CBCCE0\t0x69EA\n0xC2CBCCE1\t0x6A2C\n0xC2CBCCE2\t0x6A24\n0xC2CBCCE3\t0x4CB7\n0xC2CBCCE4\t0x69E9\n0xC2CBCCE5\t0x6B52\n0xC2CBCCE6\t0x6B4F\n0xC2CBCCE7\t0x6B53\n0xC2CBCCE8\t0x3C43\n0xC2CBCCE9\t0x3CB6\n0xC2CBCCEA\t0x6F10\n0xC2CBCCEB\t0x6F65\n0xC2CBCCEC\t0x6F75\n0xC2CBCCED\t0x3D51\n0xC2CBCCEE\t0x3D4A\n0xC2CBCCEF\t0x3D4D\n0xC2CBCCF0\t0x3D56\n0xC2CBCCF1\t0x6FD0\n0xC2CBCCF2\t0x3D53\n0xC2CBCCF3\t0x6F5C\n0xC2CBCCF4\t0x6F3D\n0xC2CBCCF5\t0x6F71\n0xC2CBCCF6\t0x3D59\n0xC2CBCCF7\t0x6F91\n0xC2CBCCF8\t0x6F0B\n0xC2CBCCF9\t0x6F79\n0xC2CBCCFA\t0x6F81\n0xC2CBCCFB\t0x6F8F\n0xC2CBCCFC\t0x3D4E\n0xC2CBCCFD\t0x6F59\n0xC2CBCCFE\t0x6F74\n0xC2CBCDA1\t0x3DEE\n0xC2CBCDA2\t0x71AE\n0xC2CBCDA3\t0x3DEC\n0xC2CBCDA4\t0x71A3\n0xC2CBCDA5\t0x71AD\n0xC2CBCDA6\t0x3DEB\n0xC2CBCDA7\t0x3DEF\n0xC2CBCDA8\t0x71AB\n0xC2CBCDA9\t0x71A6\n0xC2CBCDAA\t0x71A2\n0xC2CBCDAB\t0x3DED\n0xC2CBCDAC\t0x52F2\n0xC2CBCDAD\t0x7257\n0xC2CBCDAE\t0x7255\n0xC2CBCDAF\t0x7299\n0xC2CBCDB0\t0x734B\n0xC2CBCDB1\t0x747A\n0xC2CBCDB2\t0x3EF2\n0xC2CBCDB3\t0x3EEF\n0xC2CBCDB4\t0x3EF1\n0xC2CBCDB5\t0x748C\n0xC2CBCDB6\t0x7484\n0xC2CBCDB7\t0x3EED\n0xC2CBCDB8\t0x3EF0\n0xC2CBCDB9\t0x7482\n0xC2CBCDBA\t0x7493\n0xC2CBCDBB\t0x747B\n0xC2CBCDBC\t0x3EEE\n0xC2CBCDBD\t0x7509\n0xC2CBCDBE\t0x4C1B\n0xC2CBCDBF\t0x3F50\n0xC2CBCDC0\t0x3F66\n0xC2CBCDC1\t0x3684\n0xC2CBCDC2\t0x3FB8\n0xC2CBCDC3\t0x3FF6\n0xC2CBCDC4\t0x778A\n0xC2CBCDC5\t0x4057\n0xC2CBCDC6\t0x7790\n0xC2CBCDC7\t0x405E\n0xC2CBCDC8\t0x78C6\n0xC2CBCDC9\t0x78D3\n0xC2CBCDCA\t0x78C0\n0xC2CBCDCB\t0x78D2\n0xC2CBCDCC\t0x78C7\n0xC2CBCDCD\t0x78C2\n0xC2CBCDCE\t0x4119\n0xC2CBCDCF\t0x799F\n0xC2CBCDD0\t0x799D\n0xC2CBCDD1\t0x799E\n0xC2CBCDD2\t0x4170\n0xC2CBCDD3\t0x7A41\n0xC2CBCDD4\t0x416E\n0xC2CBCDD5\t0x7A38\n0xC2CBCDD6\t0x7A3A\n0xC2CBCDD7\t0x7A42\n0xC2CBCDD8\t0x4172\n0xC2CBCDD9\t0x4176\n0xC2CBCDDA\t0x7A3E\n0xC2CBCDDB\t0x7AB0\n0xC2CBCDDC\t0x7BAE\n0xC2CBCDDD\t0x7BB3\n0xC2CBCDDE\t0x4212\n0xC2CBCDDF\t0x421F\n0xC2CBCDE0\t0x7BBF\n0xC2CBCDE1\t0x4211\n0xC2CBCDE2\t0x4216\n0xC2CBCDE3\t0x7BCD\n0xC2CBCDE4\t0x4219\n0xC2CBCDE5\t0x7BB2\n0xC2CBCDE6\t0x4224\n0xC2CBCDE7\t0x4214\n0xC2CBCDE8\t0x4225\n0xC2CBCDE9\t0x4295\n0xC2CBCDEA\t0x4296\n0xC2CBCDEB\t0x4293\n0xC2CBCDEC\t0x4294\n0xC2CBCDED\t0x7CC4\n0xC2CBCDEE\t0x7CCD\n0xC2CBCDEF\t0x7CC2\n0xC2CBCDF0\t0x7CC6\n0xC2CBCDF1\t0x7CC3\n0xC2CBCDF2\t0x7CC9\n0xC2CBCDF3\t0x7CC7\n0xC2CBCDF4\t0x42A0\n0xC2CBCDF5\t0x7DF8\n0xC2CBCDF6\t0x42FB\n0xC2CBCDF7\t0x7DED\n0xC2CBCDF8\t0x7DE2\n0xC2CBCDF9\t0x42FC\n0xC2CBCDFA\t0x4300\n0xC2CBCDFB\t0x42F8\n0xC2CBCDFC\t0x7DDC\n0xC2CBCDFD\t0x7E02\n0xC2CBCDFE\t0x7E01\n0xC2CBCEA1\t0x42F9\n0xC2CBCEA2\t0x7DD6\n0xC2CBCEA3\t0x4304\n0xC2CBCEA4\t0x7DE4\n0xC2CBCEA5\t0x7DFE\n0xC2CBCEA6\t0x4303\n0xC2CBCEA7\t0x7E00\n0xC2CBCEA8\t0x7DFC\n0xC2CBCEA9\t0x7DFD\n0xC2CBCEAA\t0x42F3\n0xC2CBCEAB\t0x7DF5\n0xC2CBCEAC\t0x7DFF\n0xC2CBCEAD\t0x42FA\n0xC2CBCEAE\t0x7DEB\n0xC2CBCEAF\t0x7DE5\n0xC2CBCEB0\t0x7F78\n0xC2CBCEB1\t0x7FAE\n0xC2CBCEB2\t0x7FE7\n0xC2CBCEB3\t0x43BF\n0xC2CBCEB4\t0x8065\n0xC2CBCEB5\t0x806A\n0xC2CBCEB6\t0x8066\n0xC2CBCEB7\t0x8068\n0xC2CBCEB8\t0x806B\n0xC2CBCEB9\t0x8194\n0xC2CBCEBA\t0x81A1\n0xC2CBCEBB\t0x8192\n0xC2CBCEBC\t0x8196\n0xC2CBCEBD\t0x8193\n0xC2CBCEBE\t0x4479\n0xC2CBCEBF\t0x4510\n0xC2CBCEC0\t0x8501\n0xC2CBCEC1\t0x4514\n0xC2CBCEC2\t0x84F8\n0xC2CBCEC3\t0x450E\n0xC2CBCEC4\t0x84F5\n0xC2CBCEC5\t0x451A\n0xC2CBCEC6\t0x8504\n0xC2CBCEC7\t0x4519\n0xC2CBCEC8\t0x4521\n0xC2CBCEC9\t0x4523\n0xC2CBCECA\t0x451F\n0xC2CBCECB\t0x851B\n0xC2CBCECC\t0x8503\n0xC2CBCECD\t0x8533\n0xC2CBCECE\t0x8534\n0xC2CBCECF\t0x84ED\n0xC2CBCED0\t0x4525\n0xC2CBCED1\t0x452B\n0xC2CBCED2\t0x8535\n0xC2CBCED3\t0x4516\n0xC2CBCED4\t0x8505\n0xC2CBCED5\t0x4522\n0xC2CBCED6\t0x451B\n0xC2CBCED7\t0x45CE\n0xC2CBCED8\t0x45CF\n0xC2CBCED9\t0x877D\n0xC2CBCEDA\t0x45CB\n0xC2CBCEDB\t0x45D1\n0xC2CBCEDC\t0x45CC\n0xC2CBCEDD\t0x8771\n0xC2CBCEDE\t0x4617\n0xC2CBCEDF\t0x885C\n0xC2CBCEE0\t0x88E6\n0xC2CBCEE1\t0x890F\n0xC2CBCEE2\t0x891B\n0xC2CBCEE3\t0x4651\n0xC2CBCEE4\t0x89A9\n0xC2CBCEE5\t0x89A5\n0xC2CBCEE6\t0x89EE\n0xC2CBCEE7\t0x8AB1\n0xC2CBCEE8\t0x46ED\n0xC2CBCEE9\t0x8ACC\n0xC2CBCEEA\t0x8ACE\n0xC2CBCEEB\t0x46F4\n0xC2CBCEEC\t0x8AB7\n0xC2CBCEED\t0x46F1\n0xC2CBCEEE\t0x8AB5\n0xC2CBCEEF\t0x8AE9\n0xC2CBCEF0\t0x8AB4\n0xC2CBCEF1\t0x46F8\n0xC2CBCEF2\t0x8AB3\n0xC2CBCEF3\t0x8AC1\n0xC2CBCEF4\t0x8AAF\n0xC2CBCEF5\t0x8ACA\n0xC2CBCEF6\t0x8AD0\n0xC2CBCEF7\t0x472F\n0xC2CBCEF8\t0x475E\n0xC2CBCEF9\t0x475D\n0xC2CBCEFA\t0x8C8E\n0xC2CBCEFB\t0x4776\n0xC2CBCEFC\t0x4777\n0xC2CBCEFD\t0x8CE9\n0xC2CBCEFE\t0x8CDB\n0xC2CBCFA1\t0x477E\n0xC2CBCFA2\t0x8CEB\n0xC2CBCFA3\t0x8DA4\n0xC2CBCFA4\t0x47B6\n0xC2CBCFA5\t0x8DA2\n0xC2CBCFA6\t0x8D9D\n0xC2CBCFA7\t0x47B3\n0xC2CBCFA8\t0x47FC\n0xC2CBCFA9\t0x4803\n0xC2CBCFAA\t0x4800\n0xC2CBCFAB\t0x8E2A\n0xC2CBCFAC\t0x8E28\n0xC2CBCFAD\t0x480A\n0xC2CBCFAE\t0x4802\n0xC2CBCFAF\t0x8EB8\n0xC2CBCFB0\t0x8EB6\n0xC2CBCFB1\t0x8EB9\n0xC2CBCFB2\t0x8EB7\n0xC2CBCFB3\t0x8F22\n0xC2CBCFB4\t0x8F2B\n0xC2CBCFB5\t0x8F27\n0xC2CBCFB6\t0x8F19\n0xC2CBCFB7\t0x8FA4\n0xC2CBCFB8\t0x4887\n0xC2CBCFB9\t0x8FB3\n0xC2CBCFBA\t0x48A6\n0xC2CBCFBB\t0x9071\n0xC2CBCFBC\t0x906A\n0xC2CBCFBD\t0x48A9\n0xC2CBCFBE\t0x48DE\n0xC2CBCFBF\t0x9188\n0xC2CBCFC0\t0x918C\n0xC2CBCFC1\t0x92BF\n0xC2CBCFC2\t0x92B8\n0xC2CBCFC3\t0x92BE\n0xC2CBCFC4\t0x92DC\n0xC2CBCFC5\t0x92E5\n0xC2CBCFC6\t0x492E\n0xC2CBCFC7\t0x492D\n0xC2CBCFC8\t0x92D4\n0xC2CBCFC9\t0x92D6\n0xC2CBCFCA\t0x4930\n0xC2CBCFCB\t0x92DA\n0xC2CBCFCC\t0x92ED\n0xC2CBCFCD\t0x92F3\n0xC2CBCFCE\t0x92DB\n0xC2CBCFCF\t0x492B\n0xC2CBCFD0\t0x92B9\n0xC2CBCFD1\t0x92E2\n0xC2CBCFD2\t0x92EB\n0xC2CBCFD3\t0x95AF\n0xC2CBCFD4\t0x499E\n0xC2CBCFD5\t0x95B2\n0xC2CBCFD6\t0x95B3\n0xC2CBCFD7\t0x499F\n0xC2CBCFD8\t0x49E5\n0xC2CBCFD9\t0x49E4\n0xC2CBCFDA\t0x96A3\n0xC2CBCFDB\t0x96A5\n0xC2CBCFDC\t0x49FD\n0xC2CBCFDD\t0x49FC\n0xC2CBCFDE\t0x4A17\n0xC2CBCFDF\t0x4A19\n0xC2CBCFE0\t0x970A\n0xC2CBCFE1\t0x4A18\n0xC2CBCFE2\t0x9787\n0xC2CBCFE3\t0x9789\n0xC2CBCFE4\t0x978C\n0xC2CBCFE5\t0x97EF\n0xC2CBCFE6\t0x982A\n0xC2CBCFE7\t0x9822\n0xC2CBCFE8\t0x4ABF\n0xC2CBCFE9\t0x981F\n0xC2CBCFEA\t0x4B3C\n0xC2CBCFEB\t0x9919\n0xC2CBCFEC\t0x4B6B\n0xC2CBCFED\t0x99CA\n0xC2CBCFEE\t0x99DA\n0xC2CBCFEF\t0x4B83\n0xC2CBCFF0\t0x4B81\n0xC2CBCFF1\t0x4B80\n0xC2CBCFF2\t0x99DE\n0xC2CBCFF3\t0x99C8\n0xC2CBCFF4\t0x99E0\n0xC2CBCFF5\t0x4BCA\n0xC2CBCFF6\t0x9AB6\n0xC2CBCFF7\t0x9AB5\n0xC2CBCFF8\t0x4BCE\n0xC2CBCFF9\t0x9AF4\n0xC2CBCFFA\t0x4BF6\n0xC2CBCFFB\t0x9B6B\n0xC2CBCFFC\t0x9B69\n0xC2CBCFFD\t0x9B72\n0xC2CBCFFE\t0x9B63\n0xC2CBD0A1\t0x4C39\n0xC2CBD0A2\t0x9D0D\n0xC2CBD0A3\t0x4CAE\n0xC2CBD0A4\t0x9D01\n0xC2CBD0A5\t0x9D0C\n0xC2CBD0A6\t0x4CB5\n0xC2CBD0A7\t0x9CF8\n0xC2CBD0A8\t0x4CB3\n0xC2CBD0A9\t0x4CB4\n0xC2CBD0AA\t0x9CFE\n0xC2CBD0AB\t0x9D02\n0xC2CBD0AC\t0x9E84\n0xC2CBD0AD\t0x4D22\n0xC2CBD0AE\t0x9EAB\n0xC2CBD0AF\t0x9EAA\n0xC2CBD0B0\t0x511D\n0xC2CBD0B1\t0x5116\n0xC2CBD0B2\t0x3499\n0xC2CBD0B3\t0x512B\n0xC2CBD0B4\t0x511E\n0xC2CBD0B5\t0x511B\n0xC2CBD0B6\t0x5290\n0xC2CBD0B7\t0x5294\n0xC2CBD0B8\t0x5314\n0xC2CBD0B9\t0x20B89\n0xC2CBD0BA\t0x3602\n0xC2CBD0BB\t0x5667\n0xC2CBD0BC\t0x3601\n0xC2CBD0BD\t0x567B\n0xC2CBD0BE\t0x36A1\n0xC2CBD0BF\t0x565F\n0xC2CBD0C0\t0x5661\n0xC2CBD0C1\t0x35FD\n0xC2CBD0C2\t0x3673\n0xC2CBD0C3\t0x3674\n0xC2CBD0C4\t0x3670\n0xC2CBD0C5\t0x3676\n0xC2CBD0C6\t0x3675\n0xC2CBD0C7\t0x3672\n0xC2CBD0C8\t0x58C3\n0xC2CBD0C9\t0x58CA\n0xC2CBD0CA\t0x58BB\n0xC2CBD0CB\t0x58C0\n0xC2CBD0CC\t0x58C4\n0xC2CBD0CD\t0x5901\n0xC2CBD0CE\t0x5B1F\n0xC2CBD0CF\t0x5B18\n0xC2CBD0D0\t0x5B11\n0xC2CBD0D1\t0x5B15\n0xC2CBD0D2\t0x3729\n0xC2CBD0D3\t0x5B12\n0xC2CBD0D4\t0x5B1C\n0xC2CBD0D5\t0x372A\n0xC2CBD0D6\t0x5B22\n0xC2CBD0D7\t0x5B79\n0xC2CBD0D8\t0x5DA6\n0xC2CBD0D9\t0x3816\n0xC2CBD0DA\t0x5DB3\n0xC2CBD0DB\t0x5DAB\n0xC2CBD0DC\t0x5EEA\n0xC2CBD0DD\t0x3899\n0xC2CBD0DE\t0x5F5B\n0xC2CBD0DF\t0x38D3\n0xC2CBD0E0\t0x38F5\n0xC2CBD0E1\t0x61B7\n0xC2CBD0E2\t0x61CE\n0xC2CBD0E3\t0x61B9\n0xC2CBD0E4\t0x61BD\n0xC2CBD0E5\t0x61CF\n0xC2CBD0E6\t0x61C0\n0xC2CBD0E7\t0x6199\n0xC2CBD0E8\t0x6197\n0xC2CBD0E9\t0x3994\n0xC2CBD0EA\t0x61BB\n0xC2CBD0EB\t0x61D0\n0xC2CBD0EC\t0x61C4\n0xC2CBD0ED\t0x6231\n0xC2CBD0EE\t0x3A56\n0xC2CBD0EF\t0x64D3\n0xC2CBD0F0\t0x64C0\n0xC2CBD0F1\t0x3A59\n0xC2CBD0F2\t0x3A58\n0xC2CBD0F3\t0x3A55\n0xC2CBD0F4\t0x3A52\n0xC2CBD0F5\t0x64DC\n0xC2CBD0F6\t0x64D1\n0xC2CBD0F7\t0x64C8\n0xC2CBD0F8\t0x3A57\n0xC2CBD0F9\t0x64D5\n0xC2CBD0FA\t0x66C3\n0xC2CBD0FB\t0x3B1B\n0xC2CBD0FC\t0x3B1C\n0xC2CBD0FD\t0x66BF\n0xC2CBD0FE\t0x66C5\n0xC2CBD1A1\t0x3B19\n0xC2CBD1A2\t0x66CD\n0xC2CBD1A3\t0x66C1\n0xC2CBD1A4\t0x6706\n0xC2CBD1A5\t0x3B3F\n0xC2CBD1A6\t0x6724\n0xC2CBD1A7\t0x6A63\n0xC2CBD1A8\t0x6A42\n0xC2CBD1A9\t0x6A52\n0xC2CBD1AA\t0x3BDB\n0xC2CBD1AB\t0x6A43\n0xC2CBD1AC\t0x6A33\n0xC2CBD1AD\t0x3BE2\n0xC2CBD1AE\t0x6A6C\n0xC2CBD1AF\t0x6A57\n0xC2CBD1B0\t0x3BD7\n0xC2CBD1B1\t0x6A4C\n0xC2CBD1B2\t0x6A6E\n0xC2CBD1B3\t0x3BDE\n0xC2CBD1B4\t0x3BE5\n0xC2CBD1B5\t0x3BE4\n0xC2CBD1B6\t0x3BE6\n0xC2CBD1B7\t0x3BD6\n0xC2CBD1B8\t0x6A37\n0xC2CBD1B9\t0x3BDF\n0xC2CBD1BA\t0x6A71\n0xC2CBD1BB\t0x6A4A\n0xC2CBD1BC\t0x6A36\n0xC2CBD1BD\t0x3BDC\n0xC2CBD1BE\t0x6A53\n0xC2CBD1BF\t0x3BDA\n0xC2CBD1C0\t0x6A45\n0xC2CBD1C1\t0x6A70\n0xC2CBD1C2\t0x3BD3\n0xC2CBD1C3\t0x3BD0\n0xC2CBD1C4\t0x6A5C\n0xC2CBD1C5\t0x6B58\n0xC2CBD1C6\t0x6B57\n0xC2CBD1C7\t0x3C86\n0xC2CBD1C8\t0x3C87\n0xC2CBD1C9\t0x3CAD\n0xC2CBD1CA\t0x3CB7\n0xC2CBD1CB\t0x3D58\n0xC2CBD1CC\t0x3D6A\n0xC2CBD1CD\t0x6FBB\n0xC2CBD1CE\t0x3D62\n0xC2CBD1CF\t0x3D61\n0xC2CBD1D0\t0x6FBE\n0xC2CBD1D1\t0x3D69\n0xC2CBD1D2\t0x3D6C\n0xC2CBD1D3\t0x3D65\n0xC2CBD1D4\t0x6FB5\n0xC2CBD1D5\t0x6FD3\n0xC2CBD1D6\t0x6F9F\n0xC2CBD1D7\t0x3D66\n0xC2CBD1D8\t0x6FB7\n0xC2CBD1D9\t0x6FF5\n0xC2CBD1DA\t0x71B7\n0xC2CBD1DB\t0x3DF5\n0xC2CBD1DC\t0x71BB\n0xC2CBD1DD\t0x3DF4\n0xC2CBD1DE\t0x71D1\n0xC2CBD1DF\t0x3DF7\n0xC2CBD1E0\t0x71BA\n0xC2CBD1E1\t0x3DF8\n0xC2CBD1E2\t0x71B6\n0xC2CBD1E3\t0x71CC\n0xC2CBD1E4\t0x3DFB\n0xC2CBD1E5\t0x3DFC\n0xC2CBD1E6\t0x71D3\n0xC2CBD1E7\t0x749B\n0xC2CBD1E8\t0x3EF5\n0xC2CBD1E9\t0x3EF8\n0xC2CBD1EA\t0x7496\n0xC2CBD1EB\t0x74A2\n0xC2CBD1EC\t0x749D\n0xC2CBD1ED\t0x750A\n0xC2CBD1EE\t0x750E\n0xC2CBD1EF\t0x3F3C\n0xC2CBD1F0\t0x7581\n0xC2CBD1F1\t0x762C\n0xC2CBD1F2\t0x7637\n0xC2CBD1F3\t0x7636\n0xC2CBD1F4\t0x763B\n0xC2CBD1F5\t0x3FC5\n0xC2CBD1F6\t0x76A1\n0xC2CBD1F7\t0x4062\n0xC2CBD1F8\t0x4063\n0xC2CBD1F9\t0x7798\n0xC2CBD1FA\t0x4067\n0xC2CBD1FB\t0x7796\n0xC2CBD1FC\t0x4066\n0xC2CBD1FD\t0x40D9\n0xC2CBD1FE\t0x40DB\n0xC2CBD2A1\t0x78D6\n0xC2CBD2A2\t0x78EB\n0xC2CBD2A3\t0x40D8\n0xC2CBD2A4\t0x78DC\n0xC2CBD2A5\t0x411B\n0xC2CBD2A6\t0x79A5\n0xC2CBD2A7\t0x79A9\n0xC2CBD2A8\t0x9834\n0xC2CBD2A9\t0x7A53\n0xC2CBD2AA\t0x7A45\n0xC2CBD2AB\t0x4179\n0xC2CBD2AC\t0x7A4F\n0xC2CBD2AD\t0x417D\n0xC2CBD2AE\t0x7ABD\n0xC2CBD2AF\t0x7ABB\n0xC2CBD2B0\t0x7AF1\n0xC2CBD2B1\t0x422C\n0xC2CBD2B2\t0x4237\n0xC2CBD2B3\t0x7BEC\n0xC2CBD2B4\t0x7BED\n0xC2CBD2B5\t0x4230\n0xC2CBD2B6\t0x429A\n0xC2CBD2B7\t0x7CD3\n0xC2CBD2B8\t0x4A00\n0xC2CBD2B9\t0x7CE1\n0xC2CBD2BA\t0x4305\n0xC2CBD2BB\t0x7E19\n0xC2CBD2BC\t0x4307\n0xC2CBD2BD\t0x4309\n0xC2CBD2BE\t0x430A\n0xC2CBD2BF\t0x7E27\n0xC2CBD2C0\t0x7E26\n0xC2CBD2C1\t0x4379\n0xC2CBD2C2\t0x43C2\n0xC2CBD2C3\t0x806E\n0xC2CBD2C4\t0x81AF\n0xC2CBD2C5\t0x4438\n0xC2CBD2C6\t0x4437\n0xC2CBD2C7\t0x81AD\n0xC2CBD2C8\t0x4421\n0xC2CBD2C9\t0x81AA\n0xC2CBD2CA\t0x8218\n0xC2CBD2CB\t0x445E\n0xC2CBD2CC\t0x453D\n0xC2CBD2CD\t0x4537\n0xC2CBD2CE\t0x4540\n0xC2CBD2CF\t0x856F\n0xC2CBD2D0\t0x854C\n0xC2CBD2D1\t0x451D\n0xC2CBD2D2\t0x8542\n0xC2CBD2D3\t0x4533\n0xC2CBD2D4\t0x855C\n0xC2CBD2D5\t0x8570\n0xC2CBD2D6\t0x855F\n0xC2CBD2D7\t0x4535\n0xC2CBD2D8\t0x855A\n0xC2CBD2D9\t0x854B\n0xC2CBD2DA\t0x853F\n0xC2CBD2DB\t0x878A\n0xC2CBD2DC\t0x45D8\n0xC2CBD2DD\t0x878B\n0xC2CBD2DE\t0x87A1\n0xC2CBD2DF\t0x878E\n0xC2CBD2E0\t0x45DC\n0xC2CBD2E1\t0x45DE\n0xC2CBD2E2\t0x8799\n0xC2CBD2E3\t0x885E\n0xC2CBD2E4\t0x885F\n0xC2CBD2E5\t0x8924\n0xC2CBD2E6\t0x89A7\n0xC2CBD2E7\t0x8AEA\n0xC2CBD2E8\t0x8AFD\n0xC2CBD2E9\t0x8AF9\n0xC2CBD2EA\t0x8AE3\n0xC2CBD2EB\t0x8AE5\n0xC2CBD2EC\t0x46FA\n0xC2CBD2ED\t0x46FB\n0xC2CBD2EE\t0x8AEC\n0xC2CBD2EF\t0x473D\n0xC2CBD2F0\t0x473B\n0xC2CBD2F1\t0x473F\n0xC2CBD2F2\t0x475F\n0xC2CBD2F3\t0x8CF2\n0xC2CBD2F4\t0x477F\n0xC2CBD2F5\t0x8CEF\n0xC2CBD2F6\t0x4784\n0xC2CBD2F7\t0x8DA6\n0xC2CBD2F8\t0x47BC\n0xC2CBD2F9\t0x4814\n0xC2CBD2FA\t0x480F\n0xC2CBD2FB\t0x8E3B\n0xC2CBD2FC\t0x8E43\n0xC2CBD2FD\t0x480E\n0xC2CBD2FE\t0x8E32\n0xC2CBD3A1\t0x8F31\n0xC2CBD3A2\t0x8F30\n0xC2CBD3A3\t0x4860\n0xC2CBD3A4\t0x8F2D\n0xC2CBD3A5\t0x8F3C\n0xC2CBD3A6\t0x8FA7\n0xC2CBD3A7\t0x8FA5\n0xC2CBD3A8\t0x48AB\n0xC2CBD3A9\t0x48AC\n0xC2CBD3AA\t0x48AA\n0xC2CBD3AB\t0x9137\n0xC2CBD3AC\t0x9195\n0xC2CBD3AD\t0x918E\n0xC2CBD3AE\t0x4904\n0xC2CBD3AF\t0x9196\n0xC2CBD3B0\t0x4908\n0xC2CBD3B1\t0x9345\n0xC2CBD3B2\t0x930A\n0xC2CBD3B3\t0x4933\n0xC2CBD3B4\t0x4934\n0xC2CBD3B5\t0x92FD\n0xC2CBD3B6\t0x9317\n0xC2CBD3B7\t0x931C\n0xC2CBD3B8\t0x9307\n0xC2CBD3B9\t0x9331\n0xC2CBD3BA\t0x9332\n0xC2CBD3BB\t0x932C\n0xC2CBD3BC\t0x9330\n0xC2CBD3BD\t0x9303\n0xC2CBD3BE\t0x9305\n0xC2CBD3BF\t0x49A2\n0xC2CBD3C0\t0x95C2\n0xC2CBD3C1\t0x49A4\n0xC2CBD3C2\t0x95B8\n0xC2CBD3C3\t0x49A5\n0xC2CBD3C4\t0x95C1\n0xC2CBD3C5\t0x49A7\n0xC2CBD3C6\t0x49A6\n0xC2CBD3C7\t0x49E7\n0xC2CBD3C8\t0x96AB\n0xC2CBD3C9\t0x96B7\n0xC2CBD3CA\t0x49FF\n0xC2CBD3CB\t0x49FE\n0xC2CBD3CC\t0x9715\n0xC2CBD3CD\t0x9714\n0xC2CBD3CE\t0x4A1D\n0xC2CBD3CF\t0x4A1C\n0xC2CBD3D0\t0x970C\n0xC2CBD3D1\t0x9717\n0xC2CBD3D2\t0x4A67\n0xC2CBD3D3\t0x9793\n0xC2CBD3D4\t0x4A94\n0xC2CBD3D5\t0x97D2\n0xC2CBD3D6\t0x4AC5\n0xC2CBD3D7\t0x4AC8\n0xC2CBD3D8\t0x9836\n0xC2CBD3D9\t0x9831\n0xC2CBD3DA\t0x9833\n0xC2CBD3DB\t0x983C\n0xC2CBD3DC\t0x982E\n0xC2CBD3DD\t0x983A\n0xC2CBD3DE\t0x4AC9\n0xC2CBD3DF\t0x983D\n0xC2CBD3E0\t0x4AC7\n0xC2CBD3E1\t0x98B5\n0xC2CBD3E2\t0x9922\n0xC2CBD3E3\t0x9923\n0xC2CBD3E4\t0x9920\n0xC2CBD3E5\t0x991C\n0xC2CBD3E6\t0x991D\n0xC2CBD3E7\t0x4B6C\n0xC2CBD3E8\t0x99A0\n0xC2CBD3E9\t0x4B8A\n0xC2CBD3EA\t0x99EF\n0xC2CBD3EB\t0x99E8\n0xC2CBD3EC\t0x99EB\n0xC2CBD3ED\t0x4B88\n0xC2CBD3EE\t0x4B87\n0xC2CBD3EF\t0x4B86\n0xC2CBD3F0\t0x99E1\n0xC2CBD3F1\t0x99E6\n0xC2CBD3F2\t0x4BCF\n0xC2CBD3F3\t0x4BD0\n0xC2CBD3F4\t0x9AF8\n0xC2CBD3F5\t0x9AF5\n0xC2CBD3F6\t0x4C1C\n0xC2CBD3F7\t0x4C23\n0xC2CBD3F8\t0x9B83\n0xC2CBD3F9\t0x9B94\n0xC2CBD3FA\t0x9B84\n0xC2CBD3FB\t0x4C49\n0xC2CBD3FC\t0x9B8B\n0xC2CBD3FD\t0x9B8F\n0xC2CBD3FE\t0x4C43\n0xC2CBD4A1\t0x9B8C\n0xC2CBD4A2\t0x4C48\n0xC2CBD4A3\t0x9B89\n0xC2CBD4A4\t0x4C47\n0xC2CBD4A5\t0x9B8E\n0xC2CBD4A6\t0x4C46\n0xC2CBD4A7\t0x4C3F\n0xC2CBD4A8\t0x4C44\n0xC2CBD4A9\t0x9D24\n0xC2CBD4AA\t0x9D0F\n0xC2CBD4AB\t0x4CBE\n0xC2CBD4AC\t0x9D13\n0xC2CBD4AD\t0x9D0A\n0xC2CBD4AE\t0x4CC2\n0xC2CBD4AF\t0x4CBA\n0xC2CBD4B0\t0x4CBC\n0xC2CBD4B1\t0x4CC6\n0xC2CBD4B2\t0x9D2A\n0xC2CBD4B3\t0x9D1A\n0xC2CBD4B4\t0x4CC8\n0xC2CBD4B5\t0x9D27\n0xC2CBD4B6\t0x9D16\n0xC2CBD4B7\t0x9D21\n0xC2CBD4B8\t0x4D23\n0xC2CBD4B9\t0x9E85\n0xC2CBD4BA\t0x9EAC\n0xC2CBD4BB\t0x9EC6\n0xC2CBD4BC\t0x9EC5\n0xC2CBD4BD\t0x9ED7\n0xC2CBD4BE\t0x9F53\n0xC2CBD4BF\t0x349D\n0xC2CBD4C0\t0x5128\n0xC2CBD4C1\t0x5127\n0xC2CBD4C2\t0x51DF\n0xC2CBD4C3\t0x3524\n0xC2CBD4C4\t0x5335\n0xC2CBD4C5\t0x53B3\n0xC2CBD4C6\t0x3607\n0xC2CBD4C7\t0x568A\n0xC2CBD4C8\t0x567D\n0xC2CBD4C9\t0x5689\n0xC2CBD4CA\t0x3679\n0xC2CBD4CB\t0x58CD\n0xC2CBD4CC\t0x58D0\n0xC2CBD4CD\t0x3678\n0xC2CBD4CE\t0x5B2B\n0xC2CBD4CF\t0x5B33\n0xC2CBD4D0\t0x5B29\n0xC2CBD4D1\t0x5B35\n0xC2CBD4D2\t0x5B31\n0xC2CBD4D3\t0x5B37\n0xC2CBD4D4\t0x5C36\n0xC2CBD4D5\t0x5DBE\n0xC2CBD4D6\t0x3819\n0xC2CBD4D7\t0x5DB9\n0xC2CBD4D8\t0x381C\n0xC2CBD4D9\t0x5DBB\n0xC2CBD4DA\t0x3818\n0xC2CBD4DB\t0x61E2\n0xC2CBD4DC\t0x61DB\n0xC2CBD4DD\t0x61DD\n0xC2CBD4DE\t0x61DC\n0xC2CBD4DF\t0x61DA\n0xC2CBD4E0\t0x2F8AF\n0xC2CBD4E1\t0x61D9\n0xC2CBD4E2\t0x39BD\n0xC2CBD4E3\t0x3A5D\n0xC2CBD4E4\t0x64DF\n0xC2CBD4E5\t0x3A5A\n0xC2CBD4E6\t0x3A5E\n0xC2CBD4E7\t0x64E1\n0xC2CBD4E8\t0x3A5C\n0xC2CBD4E9\t0x64EE\n0xC2CBD4EA\t0x3A5B\n0xC2CBD4EB\t0x65B5\n0xC2CBD4EC\t0x66D4\n0xC2CBD4ED\t0x66D5\n0xC2CBD4EE\t0x3B21\n0xC2CBD4EF\t0x66D0\n0xC2CBD4F0\t0x66D1\n0xC2CBD4F1\t0x66CE\n0xC2CBD4F2\t0x66D7\n0xC2CBD4F3\t0x3B20\n0xC2CBD4F4\t0x3B32\n0xC2CBD4F5\t0x6A7D\n0xC2CBD4F6\t0x6A8A\n0xC2CBD4F7\t0x3BF2\n0xC2CBD4F8\t0x6AA7\n0xC2CBD4F9\t0x3BF5\n0xC2CBD4FA\t0x6A99\n0xC2CBD4FB\t0x6A82\n0xC2CBD4FC\t0x6A88\n0xC2CBD4FD\t0x3BEE\n0xC2CBD4FE\t0x3BEC\n0xC2CBD5A1\t0x6A86\n0xC2CBD5A2\t0x3BEA\n0xC2CBD5A3\t0x6A98\n0xC2CBD5A4\t0x6A9D\n0xC2CBD5A5\t0x3BED\n0xC2CBD5A6\t0x3BF3\n0xC2CBD5A7\t0x6A8F\n0xC2CBD5A8\t0x3BF6\n0xC2CBD5A9\t0x6AAA\n0xC2CBD5AA\t0x3C48\n0xC2CBD5AB\t0x6B5D\n0xC2CBD5AC\t0x3C49\n0xC2CBD5AD\t0x6C0A\n0xC2CBD5AE\t0x3D75\n0xC2CBD5AF\t0x6FD7\n0xC2CBD5B0\t0x6FD6\n0xC2CBD5B1\t0x6FE5\n0xC2CBD5B2\t0x3D6F\n0xC2CBD5B3\t0x3D7B\n0xC2CBD5B4\t0x3D73\n0xC2CBD5B5\t0x6FD9\n0xC2CBD5B6\t0x6FDA\n0xC2CBD5B7\t0x6FEA\n0xC2CBD5B8\t0x3D70\n0xC2CBD5B9\t0x6FF6\n0xC2CBD5BA\t0x24039\n0xC2CBD5BB\t0x3D78\n0xC2CBD5BC\t0x71E3\n0xC2CBD5BD\t0x3DFE\n0xC2CBD5BE\t0x71E9\n0xC2CBD5BF\t0x3E00\n0xC2CBD5C0\t0x71EB\n0xC2CBD5C1\t0x71EF\n0xC2CBD5C2\t0x71F3\n0xC2CBD5C3\t0x71EA\n0xC2CBD5C4\t0x3E01\n0xC2CBD5C5\t0x2F921\n0xC2CBD5C6\t0x3E55\n0xC2CBD5C7\t0x3E56\n0xC2CBD5C8\t0x3E9D\n0xC2CBD5C9\t0x7371\n0xC2CBD5CA\t0x3EF9\n0xC2CBD5CB\t0x74AE\n0xC2CBD5CC\t0x3EFF\n0xC2CBD5CD\t0x74B3\n0xC2CBD5CE\t0x3EFD\n0xC2CBD5CF\t0x74AC\n0xC2CBD5D0\t0x3F43\n0xC2CBD5D1\t0x3F41\n0xC2CBD5D2\t0x7583\n0xC2CBD5D3\t0x7645\n0xC2CBD5D4\t0x764E\n0xC2CBD5D5\t0x7644\n0xC2CBD5D6\t0x76A3\n0xC2CBD5D7\t0x76A5\n0xC2CBD5D8\t0x77A6\n0xC2CBD5D9\t0x77A4\n0xC2CBD5DA\t0x406F\n0xC2CBD5DB\t0x77A9\n0xC2CBD5DC\t0x77AF\n0xC2CBD5DD\t0x408A\n0xC2CBD5DE\t0x40E5\n0xC2CBD5DF\t0x40E6\n0xC2CBD5E0\t0x78F0\n0xC2CBD5E1\t0x78F8\n0xC2CBD5E2\t0x78F1\n0xC2CBD5E3\t0x417F\n0xC2CBD5E4\t0x7A49\n0xC2CBD5E5\t0x41B5\n0xC2CBD5E6\t0x41B6\n0xC2CBD5E7\t0x41BB\n0xC2CBD5E8\t0x7AC2\n0xC2CBD5E9\t0x7AF2\n0xC2CBD5EA\t0x7AF3\n0xC2CBD5EB\t0x7BFA\n0xC2CBD5EC\t0x4240\n0xC2CBD5ED\t0x7BF6\n0xC2CBD5EE\t0x7BFC\n0xC2CBD5EF\t0x7C18\n0xC2CBD5F0\t0x7C08\n0xC2CBD5F1\t0x7C12\n0xC2CBD5F2\t0x429D\n0xC2CBD5F3\t0x429C\n0xC2CBD5F4\t0x7CDB\n0xC2CBD5F5\t0x7CDA\n0xC2CBD5F6\t0x430F\n0xC2CBD5F7\t0x4311\n0xC2CBD5F8\t0x430D\n0xC2CBD5F9\t0x7E2C\n0xC2CBD5FA\t0x7E4D\n0xC2CBD5FB\t0x4314\n0xC2CBD5FC\t0x4313\n0xC2CBD5FD\t0x7F46\n0xC2CBD5FE\t0x7FF6\n0xC2CBD6A1\t0x802B\n0xC2CBD6A2\t0x8074\n0xC2CBD6A3\t0x81B8\n0xC2CBD6A4\t0x81C8\n0xC2CBD6A5\t0x4482\n0xC2CBD6A6\t0x4483\n0xC2CBD6A7\t0x454D\n0xC2CBD6A8\t0x8592\n0xC2CBD6A9\t0x8593\n0xC2CBD6AA\t0x454F\n0xC2CBD6AB\t0x857F\n0xC2CBD6AC\t0x85AB\n0xC2CBD6AD\t0x8597\n0xC2CBD6AE\t0x454C\n0xC2CBD6AF\t0x4551\n0xC2CBD6B0\t0x85AC\n0xC2CBD6B1\t0x45EE\n0xC2CBD6B2\t0x45E8\n0xC2CBD6B3\t0x4CCB\n0xC2CBD6B4\t0x87CE\n0xC2CBD6B5\t0x45EB\n0xC2CBD6B6\t0x87CD\n0xC2CBD6B7\t0x45E2\n0xC2CBD6B8\t0x45E6\n0xC2CBD6B9\t0x87C1\n0xC2CBD6BA\t0x87B1\n0xC2CBD6BB\t0x87C7\n0xC2CBD6BC\t0x45EC\n0xC2CBD6BD\t0x8940\n0xC2CBD6BE\t0x4659\n0xC2CBD6BF\t0x893F\n0xC2CBD6C0\t0x8939\n0xC2CBD6C1\t0x465D\n0xC2CBD6C2\t0x8943\n0xC2CBD6C3\t0x4657\n0xC2CBD6C4\t0x465B\n0xC2CBD6C5\t0x4656\n0xC2CBD6C6\t0x89AB\n0xC2CBD6C7\t0x46FE\n0xC2CBD6C8\t0x8B1F\n0xC2CBD6C9\t0x8B09\n0xC2CBD6CA\t0x8B0C\n0xC2CBD6CB\t0x4700\n0xC2CBD6CC\t0x4701\n0xC2CBD6CD\t0x8C40\n0xC2CBD6CE\t0x4742\n0xC2CBD6CF\t0x8C96\n0xC2CBD6D0\t0x4760\n0xC2CBD6D1\t0x8CF6\n0xC2CBD6D2\t0x8CF7\n0xC2CBD6D3\t0x481D\n0xC2CBD6D4\t0x8E46\n0xC2CBD6D5\t0x8E4F\n0xC2CBD6D6\t0x483E\n0xC2CBD6D7\t0x4869\n0xC2CBD6D8\t0x4865\n0xC2CBD6D9\t0x8F3D\n0xC2CBD6DA\t0x8F41\n0xC2CBD6DB\t0x9366\n0xC2CBD6DC\t0x9378\n0xC2CBD6DD\t0x935D\n0xC2CBD6DE\t0x9369\n0xC2CBD6DF\t0x9374\n0xC2CBD6E0\t0x937D\n0xC2CBD6E1\t0x936E\n0xC2CBD6E2\t0x9372\n0xC2CBD6E3\t0x9373\n0xC2CBD6E4\t0x9362\n0xC2CBD6E5\t0x9348\n0xC2CBD6E6\t0x9353\n0xC2CBD6E7\t0x935F\n0xC2CBD6E8\t0x9368\n0xC2CBD6E9\t0x4938\n0xC2CBD6EA\t0x937F\n0xC2CBD6EB\t0x936B\n0xC2CBD6EC\t0x49AE\n0xC2CBD6ED\t0x95C4\n0xC2CBD6EE\t0x49AD\n0xC2CBD6EF\t0x96AF\n0xC2CBD6F0\t0x96AD\n0xC2CBD6F1\t0x96B2\n0xC2CBD6F2\t0x4A02\n0xC2CBD6F3\t0x4A1F\n0xC2CBD6F4\t0x971A\n0xC2CBD6F5\t0x971B\n0xC2CBD6F6\t0x4A22\n0xC2CBD6F7\t0x4A20\n0xC2CBD6F8\t0x2F9F5\n0xC2CBD6F9\t0x4A6C\n0xC2CBD6FA\t0x979B\n0xC2CBD6FB\t0x979F\n0xC2CBD6FC\t0x4A68\n0xC2CBD6FD\t0x4A6D\n0xC2CBD6FE\t0x4A6E\n0xC2CBD7A1\t0x4AA0\n0xC2CBD7A2\t0x4ACE\n0xC2CBD7A3\t0x4AD0\n0xC2CBD7A4\t0x4AD1\n0xC2CBD7A5\t0x4ACB\n0xC2CBD7A6\t0x9840\n0xC2CBD7A7\t0x4AD2\n0xC2CBD7A8\t0x9847\n0xC2CBD7A9\t0x4AD3\n0xC2CBD7AA\t0x98B7\n0xC2CBD7AB\t0x4B20\n0xC2CBD7AC\t0x4B4E\n0xC2CBD7AD\t0x4B4B\n0xC2CBD7AE\t0x4B72\n0xC2CBD7AF\t0x4B70\n0xC2CBD7B0\t0x99A2\n0xC2CBD7B1\t0x4B92\n0xC2CBD7B2\t0x4B8F\n0xC2CBD7B3\t0x9A00\n0xC2CBD7B4\t0x99F3\n0xC2CBD7B5\t0x4B90\n0xC2CBD7B6\t0x29937\n0xC2CBD7B7\t0x99F5\n0xC2CBD7B8\t0x4BD9\n0xC2CBD7B9\t0x4BD5\n0xC2CBD7BA\t0x9ABD\n0xC2CBD7BB\t0x9B00\n0xC2CBD7BC\t0x9B02\n0xC2CBD7BD\t0x4BFA\n0xC2CBD7BE\t0x9B34\n0xC2CBD7BF\t0x9B49\n0xC2CBD7C0\t0x9B9F\n0xC2CBD7C1\t0x4C4B\n0xC2CBD7C2\t0x9BA3\n0xC2CBD7C3\t0x9BCD\n0xC2CBD7C4\t0x9B99\n0xC2CBD7C5\t0x9B9D\n0xC2CBD7C6\t0x4CD0\n0xC2CBD7C7\t0x4CCE\n0xC2CBD7C8\t0x9D39\n0xC2CBD7C9\t0x4CCF\n0xC2CBD7CA\t0x9D44\n0xC2CBD7CB\t0x4CC4\n0xC2CBD7CC\t0x4CCC\n0xC2CBD7CD\t0x9D35\n0xC2CBD7CE\t0x4CD2\n0xC2CBD7CF\t0x4D35\n0xC2CBD7D0\t0x9EAF\n0xC2CBD7D1\t0x3E03\n0xC2CBD7D2\t0x512F\n0xC2CBD7D3\t0x349E\n0xC2CBD7D4\t0x34AF\n0xC2CBD7D5\t0x9F8E\n0xC2CBD7D6\t0x360C\n0xC2CBD7D7\t0x569F\n0xC2CBD7D8\t0x569B\n0xC2CBD7D9\t0x569E\n0xC2CBD7DA\t0x5696\n0xC2CBD7DB\t0x5694\n0xC2CBD7DC\t0x56A0\n0xC2CBD7DD\t0x367C\n0xC2CBD7DE\t0x5B3B\n0xC2CBD7DF\t0x3730\n0xC2CBD7E0\t0x3731\n0xC2CBD7E1\t0x5B3A\n0xC2CBD7E2\t0x5DC1\n0xC2CBD7E3\t0x5F4D\n0xC2CBD7E4\t0x5F5D\n0xC2CBD7E5\t0x61F3\n0xC2CBD7E6\t0x39A1\n0xC2CBD7E7\t0x399E\n0xC2CBD7E8\t0x3A68\n0xC2CBD7E9\t0x3A61\n0xC2CBD7EA\t0x64F6\n0xC2CBD7EB\t0x64E5\n0xC2CBD7EC\t0x64EA\n0xC2CBD7ED\t0x64E7\n0xC2CBD7EE\t0x6505\n0xC2CBD7EF\t0x3A65\n0xC2CBD7F0\t0x64F9\n0xC2CBD7F1\t0x3A66\n0xC2CBD7F2\t0x3A6A\n0xC2CBD7F3\t0x3AAB\n0xC2CBD7F4\t0x6AAB\n0xC2CBD7F5\t0x6AED\n0xC2CBD7F6\t0x6AB2\n0xC2CBD7F7\t0x6AB0\n0xC2CBD7F8\t0x6AB5\n0xC2CBD7F9\t0x6ABE\n0xC2CBD7FA\t0x6AC1\n0xC2CBD7FB\t0x6AC8\n0xC2CBD7FC\t0x3BF9\n0xC2CBD7FD\t0x6AC0\n0xC2CBD7FE\t0x6ABC\n0xC2CBD8A1\t0x6AB1\n0xC2CBD8A2\t0x6AC4\n0xC2CBD8A3\t0x6ABF\n0xC2CBD8A4\t0x3C58\n0xC2CBD8A5\t0x3C8A\n0xC2CBD8A6\t0x7008\n0xC2CBD8A7\t0x7003\n0xC2CBD8A8\t0x6FFD\n0xC2CBD8A9\t0x7010\n0xC2CBD8AA\t0x7002\n0xC2CBD8AB\t0x7013\n0xC2CBD8AC\t0x3E04\n0xC2CBD8AD\t0x71FA\n0xC2CBD8AE\t0x7200\n0xC2CBD8AF\t0x74B9\n0xC2CBD8B0\t0x74BC\n0xC2CBD8B1\t0x3F02\n0xC2CBD8B2\t0x765B\n0xC2CBD8B3\t0x7651\n0xC2CBD8B4\t0x764F\n0xC2CBD8B5\t0x76EB\n0xC2CBD8B6\t0x77B8\n0xC2CBD8B7\t0x4079\n0xC2CBD8B8\t0x77B9\n0xC2CBD8B9\t0x77C1\n0xC2CBD8BA\t0x77C0\n0xC2CBD8BB\t0x77BE\n0xC2CBD8BC\t0x790B\n0xC2CBD8BD\t0x40EB\n0xC2CBD8BE\t0x7907\n0xC2CBD8BF\t0x790A\n0xC2CBD8C0\t0x7908\n0xC2CBD8C1\t0x40E9\n0xC2CBD8C2\t0x790D\n0xC2CBD8C3\t0x7906\n0xC2CBD8C4\t0x7915\n0xC2CBD8C5\t0x79AF\n0xC2CBD8C6\t0x4120\n0xC2CBD8C7\t0x4121\n0xC2CBD8C8\t0x4181\n0xC2CBD8C9\t0x7AF5\n0xC2CBD8CA\t0x424D\n0xC2CBD8CB\t0x4259\n0xC2CBD8CC\t0x7C2E\n0xC2CBD8CD\t0x4258\n0xC2CBD8CE\t0x7C1B\n0xC2CBD8CF\t0x25CD1\n0xC2CBD8D0\t0x7C1A\n0xC2CBD8D1\t0x7C24\n0xC2CBD8D2\t0x42A5\n0xC2CBD8D3\t0x42A9\n0xC2CBD8D4\t0x7CE6\n0xC2CBD8D5\t0x7CE3\n0xC2CBD8D6\t0x431A\n0xC2CBD8D7\t0x4319\n0xC2CBD8D8\t0x7E5D\n0xC2CBD8D9\t0x7E4F\n0xC2CBD8DA\t0x7E66\n0xC2CBD8DB\t0x7E5B\n0xC2CBD8DC\t0x7F47\n0xC2CBD8DD\t0x7FB4\n0xC2CBD8DE\t0x4396\n0xC2CBD8DF\t0x4398\n0xC2CBD8E0\t0x4397\n0xC2CBD8E1\t0x7FFA\n0xC2CBD8E2\t0x802E\n0xC2CBD8E3\t0x265DF\n0xC2CBD8E4\t0x43C8\n0xC2CBD8E5\t0x81CE\n0xC2CBD8E6\t0x4443\n0xC2CBD8E7\t0x4445\n0xC2CBD8E8\t0x8219\n0xC2CBD8E9\t0x4552\n0xC2CBD8EA\t0x4557\n0xC2CBD8EB\t0x85CC\n0xC2CBD8EC\t0x85B2\n0xC2CBD8ED\t0x4555\n0xC2CBD8EE\t0x85BB\n0xC2CBD8EF\t0x85C1\n0xC2CBD8F0\t0x4556\n0xC2CBD8F1\t0x4558\n0xC2CBD8F2\t0x45F2\n0xC2CBD8F3\t0x87E9\n0xC2CBD8F4\t0x87EE\n0xC2CBD8F5\t0x87F0\n0xC2CBD8F6\t0x87D6\n0xC2CBD8F7\t0x880E\n0xC2CBD8F8\t0x87DA\n0xC2CBD8F9\t0x8948\n0xC2CBD8FA\t0x894A\n0xC2CBD8FB\t0x894E\n0xC2CBD8FC\t0x894D\n0xC2CBD8FD\t0x89B1\n0xC2CBD8FE\t0x89B0\n0xC2CBD9A1\t0x89B3\n0xC2CBD9A2\t0x4707\n0xC2CBD9A3\t0x8B38\n0xC2CBD9A4\t0x8B32\n0xC2CBD9A5\t0x4708\n0xC2CBD9A6\t0x8B2D\n0xC2CBD9A7\t0x470A\n0xC2CBD9A8\t0x8B34\n0xC2CBD9A9\t0x431B\n0xC2CBD9AA\t0x8B29\n0xC2CBD9AB\t0x8C74\n0xC2CBD9AC\t0x4761\n0xC2CBD9AD\t0x4762\n0xC2CBD9AE\t0x8D03\n0xC2CBD9AF\t0x47C2\n0xC2CBD9B0\t0x47C6\n0xC2CBD9B1\t0x8DA9\n0xC2CBD9B2\t0x8E58\n0xC2CBD9B3\t0x481E\n0xC2CBD9B4\t0x4825\n0xC2CBD9B5\t0x8EBF\n0xC2CBD9B6\t0x8EC1\n0xC2CBD9B7\t0x8F4A\n0xC2CBD9B8\t0x8FAC\n0xC2CBD9B9\t0x48B0\n0xC2CBD9BA\t0x9089\n0xC2CBD9BB\t0x913D\n0xC2CBD9BC\t0x913C\n0xC2CBD9BD\t0x91A9\n0xC2CBD9BE\t0x93A0\n0xC2CBD9BF\t0x493D\n0xC2CBD9C0\t0x9390\n0xC2CBD9C1\t0x493E\n0xC2CBD9C2\t0x9393\n0xC2CBD9C3\t0x938B\n0xC2CBD9C4\t0x93AD\n0xC2CBD9C5\t0x93BB\n0xC2CBD9C6\t0x93B8\n0xC2CBD9C7\t0x4946\n0xC2CBD9C8\t0x4945\n0xC2CBD9C9\t0x939C\n0xC2CBD9CA\t0x95D8\n0xC2CBD9CB\t0x95D7\n0xC2CBD9CC\t0x4A03\n0xC2CBD9CD\t0x4A26\n0xC2CBD9CE\t0x4A27\n0xC2CBD9CF\t0x975D\n0xC2CBD9D0\t0x97A9\n0xC2CBD9D1\t0x97DA\n0xC2CBD9D2\t0x4A98\n0xC2CBD9D3\t0x4AAD\n0xC2CBD9D4\t0x4AD5\n0xC2CBD9D5\t0x4ADA\n0xC2CBD9D6\t0x9854\n0xC2CBD9D7\t0x4AD9\n0xC2CBD9D8\t0x9855\n0xC2CBD9D9\t0x984B\n0xC2CBD9DA\t0x4ADD\n0xC2CBD9DB\t0x983F\n0xC2CBD9DC\t0x98B9\n0xC2CBD9DD\t0x4B15\n0xC2CBD9DE\t0x4B16\n0xC2CBD9DF\t0x4B17\n0xC2CBD9E0\t0x4B21\n0xC2CBD9E1\t0x9938\n0xC2CBD9E2\t0x9936\n0xC2CBD9E3\t0x9940\n0xC2CBD9E4\t0x4B4C\n0xC2CBD9E5\t0x993B\n0xC2CBD9E6\t0x9939\n0xC2CBD9E7\t0x99A4\n0xC2CBD9E8\t0x4B96\n0xC2CBD9E9\t0x4B98\n0xC2CBD9EA\t0x9A08\n0xC2CBD9EB\t0x9A0C\n0xC2CBD9EC\t0x4B9B\n0xC2CBD9ED\t0x9A10\n0xC2CBD9EE\t0x4BFF\n0xC2CBD9EF\t0x9B07\n0xC2CBD9F0\t0x4C25\n0xC2CBD9F1\t0x9BD2\n0xC2CBD9F2\t0x4C4F\n0xC2CBD9F3\t0x9BC2\n0xC2CBD9F4\t0x9BBB\n0xC2CBD9F5\t0x9BCC\n0xC2CBD9F6\t0x9BCB\n0xC2CBD9F7\t0x4C56\n0xC2CBD9F8\t0x4C54\n0xC2CBD9F9\t0x9D4D\n0xC2CBD9FA\t0x9D63\n0xC2CBD9FB\t0x9D4E\n0xC2CBD9FC\t0x4CD8\n0xC2CBD9FD\t0x9D50\n0xC2CBD9FE\t0x9D55\n0xC2CBDAA1\t0x4CD7\n0xC2CBDAA2\t0x9D5E\n0xC2CBDAA3\t0x4D26\n0xC2CBDAA4\t0x9E90\n0xC2CBDAA5\t0x9EB2\n0xC2CBDAA6\t0x9EB1\n0xC2CBDAA7\t0x4D38\n0xC2CBDAA8\t0x9ECA\n0xC2CBDAA9\t0x9F02\n0xC2CBDAAA\t0x9F27\n0xC2CBDAAB\t0x9F26\n0xC2CBDAAC\t0x4D8A\n0xC2CBDAAD\t0x56AF\n0xC2CBDAAE\t0x58E0\n0xC2CBDAAF\t0x58DC\n0xC2CBDAB0\t0x3734\n0xC2CBDAB1\t0x5B39\n0xC2CBDAB2\t0x3735\n0xC2CBDAB3\t0x2F86A\n0xC2CBDAB4\t0x5B7C\n0xC2CBDAB5\t0x5BF3\n0xC2CBDAB6\t0x2F870\n0xC2CBDAB7\t0x37A1\n0xC2CBDAB8\t0x5C6B\n0xC2CBDAB9\t0x5DC4\n0xC2CBDABA\t0x650B\n0xC2CBDABB\t0x6508\n0xC2CBDABC\t0x650A\n0xC2CBDABD\t0x3A6C\n0xC2CBDABE\t0x3A6D\n0xC2CBDABF\t0x65DC\n0xC2CBDAC0\t0x3B29\n0xC2CBDAC1\t0x3B2A\n0xC2CBDAC2\t0x66E1\n0xC2CBDAC3\t0x66DF\n0xC2CBDAC4\t0x6ACE\n0xC2CBDAC5\t0x6AD4\n0xC2CBDAC6\t0x6AE3\n0xC2CBDAC7\t0x6AD7\n0xC2CBDAC8\t0x6AE2\n0xC2CBDAC9\t0x3C00\n0xC2CBDACA\t0x3C08\n0xC2CBDACB\t0x3C06\n0xC2CBDACC\t0x3C05\n0xC2CBDACD\t0x6AD8\n0xC2CBDACE\t0x6AD5\n0xC2CBDACF\t0x6AD2\n0xC2CBDAD0\t0x3CB1\n0xC2CBDAD1\t0x3D88\n0xC2CBDAD2\t0x701E\n0xC2CBDAD3\t0x702C\n0xC2CBDAD4\t0x7025\n0xC2CBDAD5\t0x6FF3\n0xC2CBDAD6\t0x7204\n0xC2CBDAD7\t0x7208\n0xC2CBDAD8\t0x7215\n0xC2CBDAD9\t0x3E09\n0xC2CBDADA\t0x74C4\n0xC2CBDADB\t0x74C9\n0xC2CBDADC\t0x74C7\n0xC2CBDADD\t0x74C8\n0xC2CBDADE\t0x76A9\n0xC2CBDADF\t0x77C6\n0xC2CBDAE0\t0x77C5\n0xC2CBDAE1\t0x7918\n0xC2CBDAE2\t0x791A\n0xC2CBDAE3\t0x7920\n0xC2CBDAE4\t0x4122\n0xC2CBDAE5\t0x7A66\n0xC2CBDAE6\t0x7A64\n0xC2CBDAE7\t0x7A6A\n0xC2CBDAE8\t0x41D5\n0xC2CBDAE9\t0x4261\n0xC2CBDAEA\t0x425D\n0xC2CBDAEB\t0x4262\n0xC2CBDAEC\t0x424F\n0xC2CBDAED\t0x4260\n0xC2CBDAEE\t0x7C35\n0xC2CBDAEF\t0x7C34\n0xC2CBDAF0\t0x42AA\n0xC2CBDAF1\t0x4322\n0xC2CBDAF2\t0x7E6C\n0xC2CBDAF3\t0x4321\n0xC2CBDAF4\t0x7E6E\n0xC2CBDAF5\t0x7E71\n0xC2CBDAF6\t0x4446\n0xC2CBDAF7\t0x81D4\n0xC2CBDAF8\t0x81D6\n0xC2CBDAF9\t0x821A\n0xC2CBDAFA\t0x8262\n0xC2CBDAFB\t0x8265\n0xC2CBDAFC\t0x8276\n0xC2CBDAFD\t0x85DB\n0xC2CBDAFE\t0x85D6\n0xC2CBDBA1\t0x4562\n0xC2CBDBA2\t0x85E7\n0xC2CBDBA3\t0x4560\n0xC2CBDBA4\t0x4564\n0xC2CBDBA5\t0x85F4\n0xC2CBDBA6\t0x2F9B6\n0xC2CBDBA7\t0x87FD\n0xC2CBDBA8\t0x87D5\n0xC2CBDBA9\t0x8807\n0xC2CBDBAA\t0x45F6\n0xC2CBDBAB\t0x880F\n0xC2CBDBAC\t0x87F8\n0xC2CBDBAD\t0x2F9C1\n0xC2CBDBAE\t0x4619\n0xC2CBDBAF\t0x8987\n0xC2CBDBB0\t0x4691\n0xC2CBDBB1\t0x89B5\n0xC2CBDBB2\t0x89F5\n0xC2CBDBB3\t0x470D\n0xC2CBDBB4\t0x8B3F\n0xC2CBDBB5\t0x8B43\n0xC2CBDBB6\t0x8B4C\n0xC2CBDBB7\t0x4765\n0xC2CBDBB8\t0x8D0B\n0xC2CBDBB9\t0x8E6B\n0xC2CBDBBA\t0x8E68\n0xC2CBDBBB\t0x8E70\n0xC2CBDBBC\t0x8E75\n0xC2CBDBBD\t0x8E77\n0xC2CBDBBE\t0x483F\n0xC2CBDBBF\t0x8EC3\n0xC2CBDBC0\t0x494B\n0xC2CBDBC1\t0x93E9\n0xC2CBDBC2\t0x93EA\n0xC2CBDBC3\t0x93CB\n0xC2CBDBC4\t0x93C5\n0xC2CBDBC5\t0x93C6\n0xC2CBDBC6\t0x4948\n0xC2CBDBC7\t0x93ED\n0xC2CBDBC8\t0x93D3\n0xC2CBDBC9\t0x4952\n0xC2CBDBCA\t0x93E5\n0xC2CBDBCB\t0x494A\n0xC2CBDBCC\t0x4951\n0xC2CBDBCD\t0x93DB\n0xC2CBDBCE\t0x93EB\n0xC2CBDBCF\t0x93E0\n0xC2CBDBD0\t0x93C1\n0xC2CBDBD1\t0x4950\n0xC2CBDBD2\t0x494C\n0xC2CBDBD3\t0x95DD\n0xC2CBDBD4\t0x49EE\n0xC2CBDBD5\t0x4A04\n0xC2CBDBD6\t0x4A06\n0xC2CBDBD7\t0x4A2D\n0xC2CBDBD8\t0x4A2E\n0xC2CBDBD9\t0x4A2F\n0xC2CBDBDA\t0x4A7B\n0xC2CBDBDB\t0x4A78\n0xC2CBDBDC\t0x4A77\n0xC2CBDBDD\t0x97B2\n0xC2CBDBDE\t0x97B4\n0xC2CBDBDF\t0x97B1\n0xC2CBDBE0\t0x97B5\n0xC2CBDBE1\t0x97F2\n0xC2CBDBE2\t0x4AA2\n0xC2CBDBE3\t0x4AA1\n0xC2CBDBE4\t0x4AE3\n0xC2CBDBE5\t0x9856\n0xC2CBDBE6\t0x4B1A\n0xC2CBDBE7\t0x4B19\n0xC2CBDBE8\t0x4B57\n0xC2CBDBE9\t0x9944\n0xC2CBDBEA\t0x4B9E\n0xC2CBDBEB\t0x9A26\n0xC2CBDBEC\t0x9A1F\n0xC2CBDBED\t0x9A18\n0xC2CBDBEE\t0x9A21\n0xC2CBDBEF\t0x9A17\n0xC2CBDBF0\t0x4BDD\n0xC2CBDBF1\t0x9B09\n0xC2CBDBF2\t0x4C05\n0xC2CBDBF3\t0x4C28\n0xC2CBDBF4\t0x9BC5\n0xC2CBDBF5\t0x9BDF\n0xC2CBDBF6\t0x4C60\n0xC2CBDBF7\t0x9BE3\n0xC2CBDBF8\t0x4C66\n0xC2CBDBF9\t0x9BE9\n0xC2CBDBFA\t0x9BEE\n0xC2CBDBFB\t0x4C67\n0xC2CBDBFC\t0x4C68\n0xC2CBDBFD\t0x9D66\n0xC2CBDBFE\t0x9D7A\n0xC2CBDCA1\t0x4CDE\n0xC2CBDCA2\t0x9D6E\n0xC2CBDCA3\t0x9D91\n0xC2CBDCA4\t0x9D83\n0xC2CBDCA5\t0x9D76\n0xC2CBDCA6\t0x9D7E\n0xC2CBDCA7\t0x9D6D\n0xC2CBDCA8\t0x4CE1\n0xC2CBDCA9\t0x9E95\n0xC2CBDCAA\t0x9EE3\n0xC2CBDCAB\t0x4D69\n0xC2CBDCAC\t0x4D77\n0xC2CBDCAD\t0x9F03\n0xC2CBDCAE\t0x9F04\n0xC2CBDCAF\t0x2FA19\n0xC2CBDCB0\t0x9F17\n0xC2CBDCB1\t0x34A6\n0xC2CBDCB2\t0x5136\n0xC2CBDCB3\t0x34A5\n0xC2CBDCB4\t0x5336\n0xC2CBDCB5\t0x3614\n0xC2CBDCB6\t0x5B42\n0xC2CBDCB7\t0x3736\n0xC2CBDCB8\t0x3738\n0xC2CBDCB9\t0x5B44\n0xC2CBDCBA\t0x5B46\n0xC2CBDCBB\t0x5B7E\n0xC2CBDCBC\t0x5DCA\n0xC2CBDCBD\t0x5DC8\n0xC2CBDCBE\t0x5DCC\n0xC2CBDCBF\t0x5EF0\n0xC2CBDCC0\t0x3A70\n0xC2CBDCC1\t0x6585\n0xC2CBDCC2\t0x66E5\n0xC2CBDCC3\t0x66E7\n0xC2CBDCC4\t0x3B2B\n0xC2CBDCC5\t0x3C11\n0xC2CBDCC6\t0x3C0A\n0xC2CBDCC7\t0x6AF4\n0xC2CBDCC8\t0x3C0D\n0xC2CBDCC9\t0x6AE9\n0xC2CBDCCA\t0x3C16\n0xC2CBDCCB\t0x3C10\n0xC2CBDCCC\t0x3C09\n0xC2CBDCCD\t0x3C0E\n0xC2CBDCCE\t0x3C7A\n0xC2CBDCCF\t0x703D\n0xC2CBDCD0\t0x3D8C\n0xC2CBDCD1\t0x7036\n0xC2CBDCD2\t0x3D91\n0xC2CBDCD3\t0x7216\n0xC2CBDCD4\t0x3E0A\n0xC2CBDCD5\t0x7212\n0xC2CBDCD6\t0x720F\n0xC2CBDCD7\t0x7217\n0xC2CBDCD8\t0x7211\n0xC2CBDCD9\t0x720B\n0xC2CBDCDA\t0x3E08\n0xC2CBDCDB\t0x3E0B\n0xC2CBDCDC\t0x74CD\n0xC2CBDCDD\t0x74D0\n0xC2CBDCDE\t0x74CC\n0xC2CBDCDF\t0x74CE\n0xC2CBDCE0\t0x74D1\n0xC2CBDCE1\t0x3F07\n0xC2CBDCE2\t0x7589\n0xC2CBDCE3\t0x40F2\n0xC2CBDCE4\t0x7A6F\n0xC2CBDCE5\t0x7C4B\n0xC2CBDCE6\t0x7C44\n0xC2CBDCE7\t0x7C55\n0xC2CBDCE8\t0x42AE\n0xC2CBDCE9\t0x4324\n0xC2CBDCEA\t0x4326\n0xC2CBDCEB\t0x4327\n0xC2CBDCEC\t0x7E7F\n0xC2CBDCED\t0x8B71\n0xC2CBDCEE\t0x4399\n0xC2CBDCEF\t0x802F\n0xC2CBDCF0\t0x807A\n0xC2CBDCF1\t0x807B\n0xC2CBDCF2\t0x807C\n0xC2CBDCF3\t0x455F\n0xC2CBDCF4\t0x456A\n0xC2CBDCF5\t0x4571\n0xC2CBDCF6\t0x85FC\n0xC2CBDCF7\t0x8610\n0xC2CBDCF8\t0x8602\n0xC2CBDCF9\t0x456C\n0xC2CBDCFA\t0x456F\n0xC2CBDCFB\t0x85EE\n0xC2CBDCFC\t0x8603\n0xC2CBDCFD\t0x4568\n0xC2CBDCFE\t0x860D\n0xC2CBDDA1\t0x8613\n0xC2CBDDA2\t0x8608\n0xC2CBDDA3\t0x860F\n0xC2CBDDA4\t0x8818\n0xC2CBDDA5\t0x8812\n0xC2CBDDA6\t0x4601\n0xC2CBDDA7\t0x4668\n0xC2CBDDA8\t0x8967\n0xC2CBDDA9\t0x8965\n0xC2CBDDAA\t0x89BB\n0xC2CBDDAB\t0x8B69\n0xC2CBDDAC\t0x8B62\n0xC2CBDDAD\t0x4713\n0xC2CBDDAE\t0x8B6E\n0xC2CBDDAF\t0x4716\n0xC2CBDDB0\t0x8B61\n0xC2CBDDB1\t0x4718\n0xC2CBDDB2\t0x8B64\n0xC2CBDDB3\t0x8B4D\n0xC2CBDDB4\t0x8C51\n0xC2CBDDB5\t0x4789\n0xC2CBDDB6\t0x47C8\n0xC2CBDDB7\t0x8E83\n0xC2CBDDB8\t0x8EC6\n0xC2CBDDB9\t0x4884\n0xC2CBDDBA\t0x941F\n0xC2CBDDBB\t0x4954\n0xC2CBDDBC\t0x9404\n0xC2CBDDBD\t0x9417\n0xC2CBDDBE\t0x9408\n0xC2CBDDBF\t0x9405\n0xC2CBDDC0\t0x4956\n0xC2CBDDC1\t0x93F3\n0xC2CBDDC2\t0x941E\n0xC2CBDDC3\t0x9402\n0xC2CBDDC4\t0x941A\n0xC2CBDDC5\t0x941B\n0xC2CBDDC6\t0x9427\n0xC2CBDDC7\t0x941C\n0xC2CBDDC8\t0x495A\n0xC2CBDDC9\t0x96B5\n0xC2CBDDCA\t0x4A05\n0xC2CBDDCB\t0x4A07\n0xC2CBDDCC\t0x9733\n0xC2CBDDCD\t0x4A31\n0xC2CBDDCE\t0x9734\n0xC2CBDDCF\t0x9731\n0xC2CBDDD0\t0x97B8\n0xC2CBDDD1\t0x97BA\n0xC2CBDDD2\t0x4AA3\n0xC2CBDDD3\t0x97FC\n0xC2CBDDD4\t0x4AEB\n0xC2CBDDD5\t0x4B1C\n0xC2CBDDD6\t0x98C3\n0xC2CBDDD7\t0x4B5A\n0xC2CBDDD8\t0x994D\n0xC2CBDDD9\t0x4B5B\n0xC2CBDDDA\t0x9A2F\n0xC2CBDDDB\t0x4BA6\n0xC2CBDDDC\t0x4BAA\n0xC2CBDDDD\t0x4BA5\n0xC2CBDDDE\t0x9AC9\n0xC2CBDDDF\t0x4BE1\n0xC2CBDDE0\t0x9AC8\n0xC2CBDDE1\t0x9AC4\n0xC2CBDDE2\t0x9B2A\n0xC2CBDDE3\t0x9B38\n0xC2CBDDE4\t0x9B50\n0xC2CBDDE5\t0x4C2A\n0xC2CBDDE6\t0x9C0A\n0xC2CBDDE7\t0x9BFB\n0xC2CBDDE8\t0x9C04\n0xC2CBDDE9\t0x9BFC\n0xC2CBDDEA\t0x9BFE\n0xC2CBDDEB\t0x4C72\n0xC2CBDDEC\t0x4C6F\n0xC2CBDDED\t0x4C73\n0xC2CBDDEE\t0x9C02\n0xC2CBDDEF\t0x9BF6\n0xC2CBDDF0\t0x9C1B\n0xC2CBDDF1\t0x9BF9\n0xC2CBDDF2\t0x9C15\n0xC2CBDDF3\t0x9C10\n0xC2CBDDF4\t0x9BFF\n0xC2CBDDF5\t0x9C00\n0xC2CBDDF6\t0x9C0C\n0xC2CBDDF7\t0x4C6B\n0xC2CBDDF8\t0x4CE6\n0xC2CBDDF9\t0x9D95\n0xC2CBDDFA\t0x9DA5\n0xC2CBDDFB\t0x4CE9\n0xC2CBDDFC\t0x4CEC\n0xC2CBDDFD\t0x4CE8\n0xC2CBDDFE\t0x4CF0\n0xC2CBDEA1\t0x9E98\n0xC2CBDEA2\t0x9EC1\n0xC2CBDEA3\t0x4D8C\n0xC2CBDEA4\t0x9F5A\n0xC2CBDEA5\t0x5164\n0xC2CBDEA6\t0x56BB\n0xC2CBDEA7\t0x3615\n0xC2CBDEA8\t0x58E6\n0xC2CBDEA9\t0x5B49\n0xC2CBDEAA\t0x5BF7\n0xC2CBDEAB\t0x3771\n0xC2CBDEAC\t0x3826\n0xC2CBDEAD\t0x5DD0\n0xC2CBDEAE\t0x38C6\n0xC2CBDEAF\t0x5FC2\n0xC2CBDEB0\t0x39A8\n0xC2CBDEB1\t0x6511\n0xC2CBDEB2\t0x3A73\n0xC2CBDEB3\t0x6AFF\n0xC2CBDEB4\t0x6AFE\n0xC2CBDEB5\t0x6AFD\n0xC2CBDEB6\t0x3C15\n0xC2CBDEB7\t0x6B01\n0xC2CBDEB8\t0x3D98\n0xC2CBDEB9\t0x3D97\n0xC2CBDEBA\t0x704B\n0xC2CBDEBB\t0x704D\n0xC2CBDEBC\t0x7047\n0xC2CBDEBD\t0x74D3\n0xC2CBDEBE\t0x7668\n0xC2CBDEBF\t0x7667\n0xC2CBDEC0\t0x3FD7\n0xC2CBDEC1\t0x4080\n0xC2CBDEC2\t0x77D1\n0xC2CBDEC3\t0x7930\n0xC2CBDEC4\t0x7932\n0xC2CBDEC5\t0x792E\n0xC2CBDEC6\t0x4188\n0xC2CBDEC7\t0x9F9D\n0xC2CBDEC8\t0x7AC9\n0xC2CBDEC9\t0x7AC8\n0xC2CBDECA\t0x4269\n0xC2CBDECB\t0x7C56\n0xC2CBDECC\t0x7C51\n0xC2CBDECD\t0x426B\n0xC2CBDECE\t0x4329\n0xC2CBDECF\t0x4328\n0xC2CBDED0\t0x7E85\n0xC2CBDED1\t0x7E89\n0xC2CBDED2\t0x7E8E\n0xC2CBDED3\t0x7E84\n0xC2CBDED4\t0x445F\n0xC2CBDED5\t0x826A\n0xC2CBDED6\t0x862B\n0xC2CBDED7\t0x862F\n0xC2CBDED8\t0x8628\n0xC2CBDED9\t0x4574\n0xC2CBDEDA\t0x8616\n0xC2CBDEDB\t0x8615\n0xC2CBDEDC\t0x861D\n0xC2CBDEDD\t0x881A\n0xC2CBDEDE\t0x4602\n0xC2CBDEDF\t0x466A\n0xC2CBDEE0\t0x4694\n0xC2CBDEE1\t0x89BC\n0xC2CBDEE2\t0x8B75\n0xC2CBDEE3\t0x8B7C\n0xC2CBDEE4\t0x478A\n0xC2CBDEE5\t0x8D11\n0xC2CBDEE6\t0x8D12\n0xC2CBDEE7\t0x8F5C\n0xC2CBDEE8\t0x91BB\n0xC2CBDEE9\t0x4964\n0xC2CBDEEA\t0x93F4\n0xC2CBDEEB\t0x495E\n0xC2CBDEEC\t0x4961\n0xC2CBDEED\t0x942D\n0xC2CBDEEE\t0x4965\n0xC2CBDEEF\t0x4966\n0xC2CBDEF0\t0x96E4\n0xC2CBDEF1\t0x9737\n0xC2CBDEF2\t0x9736\n0xC2CBDEF3\t0x9767\n0xC2CBDEF4\t0x97BE\n0xC2CBDEF5\t0x97BD\n0xC2CBDEF6\t0x97E2\n0xC2CBDEF7\t0x9868\n0xC2CBDEF8\t0x9866\n0xC2CBDEF9\t0x98C8\n0xC2CBDEFA\t0x98CA\n0xC2CBDEFB\t0x98C7\n0xC2CBDEFC\t0x98DC\n0xC2CBDEFD\t0x4B5F\n0xC2CBDEFE\t0x994F\n0xC2CBDFA1\t0x99A9\n0xC2CBDFA2\t0x9A3C\n0xC2CBDFA3\t0x4BAF\n0xC2CBDFA4\t0x9A3B\n0xC2CBDFA5\t0x9ACE\n0xC2CBDFA6\t0x4C0D\n0xC2CBDFA7\t0x9B14\n0xC2CBDFA8\t0x9B53\n0xC2CBDFA9\t0x4C7C\n0xC2CBDFAA\t0x9C2E\n0xC2CBDFAB\t0x4C7A\n0xC2CBDFAC\t0x9C1F\n0xC2CBDFAD\t0x4C76\n0xC2CBDFAE\t0x4C79\n0xC2CBDFAF\t0x4C7D\n0xC2CBDFB0\t0x4C77\n0xC2CBDFB1\t0x9DB0\n0xC2CBDFB2\t0x9DBD\n0xC2CBDFB3\t0x4CF6\n0xC2CBDFB4\t0x4CF1\n0xC2CBDFB5\t0x9DAE\n0xC2CBDFB6\t0x9DC4\n0xC2CBDFB7\t0x9E7B\n0xC2CBDFB8\t0x400B\n0xC2CBDFB9\t0x4D29\n0xC2CBDFBA\t0x9E9E\n0xC2CBDFBB\t0x4D6F\n0xC2CBDFBC\t0x9F05\n0xC2CBDFBD\t0x4D9A\n0xC2CBDFBE\t0x9F69\n0xC2CBDFBF\t0x9FA1\n0xC2CBDFC0\t0x56C7\n0xC2CBDFC1\t0x571D\n0xC2CBDFC2\t0x5B4A\n0xC2CBDFC3\t0x5DD3\n0xC2CBDFC4\t0x3869\n0xC2CBDFC5\t0x5F72\n0xC2CBDFC6\t0x6202\n0xC2CBDFC7\t0x39AB\n0xC2CBDFC8\t0x6235\n0xC2CBDFC9\t0x6527\n0xC2CBDFCA\t0x651E\n0xC2CBDFCB\t0x651F\n0xC2CBDFCC\t0x3B2C\n0xC2CBDFCD\t0x3B2D\n0xC2CBDFCE\t0x6B07\n0xC2CBDFCF\t0x6B06\n0xC2CBDFD0\t0x3C17\n0xC2CBDFD1\t0x3D9A\n0xC2CBDFD2\t0x7054\n0xC2CBDFD3\t0x721C\n0xC2CBDFD4\t0x7220\n0xC2CBDFD5\t0x7AF8\n0xC2CBDFD6\t0x426E\n0xC2CBDFD7\t0x7C5D\n0xC2CBDFD8\t0x7C58\n0xC2CBDFD9\t0x432C\n0xC2CBDFDA\t0x7E92\n0xC2CBDFDB\t0x7F4E\n0xC2CBDFDC\t0x43CA\n0xC2CBDFDD\t0x4578\n0xC2CBDFDE\t0x4606\n0xC2CBDFDF\t0x8827\n0xC2CBDFE0\t0x4607\n0xC2CBDFE1\t0x8B81\n0xC2CBDFE2\t0x8B83\n0xC2CBDFE3\t0x4720\n0xC2CBDFE4\t0x8C44\n0xC2CBDFE5\t0x4753\n0xC2CBDFE6\t0x47CE\n0xC2CBDFE7\t0x487A\n0xC2CBDFE8\t0x4879\n0xC2CBDFE9\t0x9442\n0xC2CBDFEA\t0x944D\n0xC2CBDFEB\t0x9454\n0xC2CBDFEC\t0x944E\n0xC2CBDFED\t0x496B\n0xC2CBDFEE\t0x9443\n0xC2CBDFEF\t0x4967\n0xC2CBDFF0\t0x496D\n0xC2CBDFF1\t0x973C\n0xC2CBDFF2\t0x9740\n0xC2CBDFF3\t0x97C0\n0xC2CBDFF4\t0x4A85\n0xC2CBDFF5\t0x4AB0\n0xC2CBDFF6\t0x4AF3\n0xC2CBDFF7\t0x4B63\n0xC2CBDFF8\t0x995A\n0xC2CBDFF9\t0x9A51\n0xC2CBDFFA\t0x4BB6\n0xC2CBDFFB\t0x9ADD\n0xC2CBDFFC\t0x4C82\n0xC2CBDFFD\t0x4C7F\n0xC2CBDFFE\t0x9C38\n0xC2CBE0A1\t0x4C86\n0xC2CBE0A2\t0x9C45\n0xC2CBE0A3\t0x9C3A\n0xC2CBE0A4\t0x4C84\n0xC2CBE0A5\t0x9C35\n0xC2CBE0A6\t0x4CFC\n0xC2CBE0A7\t0x4CFD\n0xC2CBE0A8\t0x4CFA\n0xC2CBE0A9\t0x9EF1\n0xC2CBE0AA\t0x4D87\n0xC2CBE0AB\t0x9F93\n0xC2CBE0AC\t0x529A\n0xC2CBE0AD\t0x361A\n0xC2CBE0AE\t0x3619\n0xC2CBE0AF\t0x8641\n0xC2CBE0B0\t0x5DD7\n0xC2CBE0B1\t0x3A75\n0xC2CBE0B2\t0x6528\n0xC2CBE0B3\t0x3C1A\n0xC2CBE0B4\t0x3C1B\n0xC2CBE0B5\t0x3C19\n0xC2CBE0B6\t0x7053\n0xC2CBE0B7\t0x7059\n0xC2CBE0B8\t0x3D9C\n0xC2CBE0B9\t0x7221\n0xC2CBE0BA\t0x3E10\n0xC2CBE0BB\t0x766F\n0xC2CBE0BC\t0x7937\n0xC2CBE0BD\t0x79B5\n0xC2CBE0BE\t0x7C62\n0xC2CBE0BF\t0x7C5E\n0xC2CBE0C0\t0x7CF5\n0xC2CBE0C1\t0x457B\n0xC2CBE0C2\t0x457C\n0xC2CBE0C3\t0x863D\n0xC2CBE0C4\t0x4608\n0xC2CBE0C5\t0x882D\n0xC2CBE0C6\t0x8989\n0xC2CBE0C7\t0x8B8D\n0xC2CBE0C8\t0x8B87\n0xC2CBE0C9\t0x8B90\n0xC2CBE0CA\t0x8D1A\n0xC2CBE0CB\t0x8E99\n0xC2CBE0CC\t0x4841\n0xC2CBE0CD\t0x48E3\n0xC2CBE0CE\t0x4972\n0xC2CBE0CF\t0x945F\n0xC2CBE0D0\t0x4973\n0xC2CBE0D1\t0x4968\n0xC2CBE0D2\t0x9456\n0xC2CBE0D3\t0x9461\n0xC2CBE0D4\t0x945B\n0xC2CBE0D5\t0x945A\n0xC2CBE0D6\t0x945C\n0xC2CBE0D7\t0x9465\n0xC2CBE0D8\t0x4A35\n0xC2CBE0D9\t0x9741\n0xC2CBE0DA\t0x4A88\n0xC2CBE0DB\t0x4A9D\n0xC2CBE0DC\t0x986E\n0xC2CBE0DD\t0x986C\n0xC2CBE0DE\t0x986D\n0xC2CBE0DF\t0x4275\n0xC2CBE0E0\t0x99AA\n0xC2CBE0E1\t0x9A5C\n0xC2CBE0E2\t0x9A58\n0xC2CBE0E3\t0x9ADE\n0xC2CBE0E4\t0x4C8F\n0xC2CBE0E5\t0x9C4F\n0xC2CBE0E6\t0x9C51\n0xC2CBE0E7\t0x4C8E\n0xC2CBE0E8\t0x9C53\n0xC2CBE0E9\t0x4D05\n0xC2CBE0EA\t0x4D04\n0xC2CBE0EB\t0x4CFF\n0xC2CBE0EC\t0x9DFC\n0xC2CBE0ED\t0x9F39\n0xC2CBE0EE\t0x4D9E\n0xC2CBE0EF\t0x513E\n0xC2CBE0F0\t0x3554\n0xC2CBE0F1\t0x56D2\n0xC2CBE0F2\t0x3681\n0xC2CBE0F3\t0x5B4F\n0xC2CBE0F4\t0x6B14\n0xC2CBE0F5\t0x40FA\n0xC2CBE0F6\t0x7A72\n0xC2CBE0F7\t0x7A73\n0xC2CBE0F8\t0x4332\n0xC2CBE0F9\t0x4670\n0xC2CBE0FA\t0x466E\n0xC2CBE0FB\t0x8B91\n0xC2CBE0FC\t0x2F9D6\n0xC2CBE0FD\t0x487C\n0xC2CBE0FE\t0x91BF\n0xC2CBE1A1\t0x4975\n0xC2CBE1A2\t0x946C\n0xC2CBE1A3\t0x4974\n0xC2CBE1A4\t0x4977\n0xC2CBE1A5\t0x96E6\n0xC2CBE1A6\t0x9745\n0xC2CBE1A7\t0x4A37\n0xC2CBE1A8\t0x97C8\n0xC2CBE1A9\t0x97E4\n0xC2CBE1AA\t0x995D\n0xC2CBE1AB\t0x4BBA\n0xC2CBE1AC\t0x9B21\n0xC2CBE1AD\t0x4C11\n0xC2CBE1AE\t0x9B2C\n0xC2CBE1AF\t0x9B57\n0xC2CBE1B0\t0x4C92\n0xC2CBE1B1\t0x4C99\n0xC2CBE1B2\t0x9C5D\n0xC2CBE1B3\t0x9C61\n0xC2CBE1B4\t0x9C65\n0xC2CBE1B5\t0x9E08\n0xC2CBE1B6\t0x4D0A\n0xC2CBE1B7\t0x4D2A\n0xC2CBE1B8\t0x4D2B\n0xC2CBE1B9\t0x4D44\n0xC2CBE1BA\t0x4D79\n0xC2CBE1BB\t0x9F45\n0xC2CBE1BC\t0x34AA\n0xC2CBE1BD\t0x3748\n0xC2CBE1BE\t0x6205\n0xC2CBE1BF\t0x66EF\n0xC2CBE1C0\t0x6B1B\n0xC2CBE1C1\t0x6B1D\n0xC2CBE1C2\t0x7225\n0xC2CBE1C3\t0x7224\n0xC2CBE1C4\t0x7C6D\n0xC2CBE1C5\t0x42B4\n0xC2CBE1C6\t0x8642\n0xC2CBE1C7\t0x8649\n0xC2CBE1C8\t0x460D\n0xC2CBE1C9\t0x8978\n0xC2CBE1CA\t0x898A\n0xC2CBE1CB\t0x8B97\n0xC2CBE1CC\t0x4754\n0xC2CBE1CD\t0x8C9B\n0xC2CBE1CE\t0x8D1C\n0xC2CBE1CF\t0x4830\n0xC2CBE1D0\t0x8EA2\n0xC2CBE1D1\t0x4A09\n0xC2CBE1D2\t0x4A38\n0xC2CBE1D3\t0x4A36\n0xC2CBE1D4\t0x4A8B\n0xC2CBE1D5\t0x4AF7\n0xC2CBE1D6\t0x4B66\n0xC2CBE1D7\t0x4BBD\n0xC2CBE1D8\t0x4C1E\n0xC2CBE1D9\t0x9C6C\n0xC2CBE1DA\t0x4C96\n0xC2CBE1DB\t0x9C6F\n0xC2CBE1DC\t0x4D0D\n0xC2CBE1DD\t0x9E0E\n0xC2CBE1DE\t0x4D73\n0xC2CBE1DF\t0x9F08\n0xC2CBE1E0\t0x9F1D\n0xC2CBE1E1\t0x9FA3\n0xC2CBE1E2\t0x373B\n0xC2CBE1E3\t0x373C\n0xC2CBE1E4\t0x5F60\n0xC2CBE1E5\t0x6B1C\n0xC2CBE1E6\t0x3DA0\n0xC2CBE1E7\t0x40FB\n0xC2CBE1E9\t0x7CF3\n0xC2CBE1EA\t0x4581\n0xC2CBE1EB\t0x8B9B\n0xC2CBE1EC\t0x8EA7\n0xC2CBE1ED\t0x91C4\n0xC2CBE1EE\t0x4978\n0xC2CBE1EF\t0x947A\n0xC2CBE1F0\t0x4A8D\n0xC2CBE1F1\t0x4B73\n0xC2CBE1F2\t0x9A61\n0xC2CBE1F3\t0x9A63\n0xC2CBE1F4\t0x9AD7\n0xC2CBE1F5\t0x9C76\n0xC2CBE1F6\t0x4DA6\n0xC2CBE1F7\t0x9FA5\n0xC2CBE1F8\t0x39AD\n0xC2CBE1F9\t0x7067\n0xC2CBE1FA\t0x3E11\n0xC2CBE1FB\t0x72AB\n0xC2CBE1FC\t0x864A\n0xC2CBE1FD\t0x897D\n0xC2CBE1FE\t0x8B9D\n0xC2CBE2A1\t0x8C53\n0xC2CBE2A2\t0x8F65\n0xC2CBE2A3\t0x947B\n0xC2CBE2A4\t0x4A39\n0xC2CBE2A5\t0x98CD\n0xC2CBE2A6\t0x98DD\n0xC2CBE2A7\t0x4BBF\n0xC2CBE2A8\t0x9B30\n0xC2CBE2A9\t0x9E16\n0xC2CBE2AA\t0x4D0F\n0xC2CBE2AB\t0x4DA7\n0xC2CBE2AC\t0x4DB5\n0xC2CBE2AD\t0x3FDC\n0xC2CBE2AE\t0x4831\n0xC2CBE2AF\t0x96E7\n0xC2CBE2B0\t0x9E18\n0xC2CBE2B1\t0x9EA2\n0xC2CBE2B2\t0x4DA8\n0xC2CBE2B3\t0x9F7C\n0xC2CBE2B4\t0x4125\n0xC2CBE2B5\t0x7E9E\n0xC2CBE2B6\t0x9484\n0xC2CBE2B7\t0x4BC1\n0xC2CBE2B8\t0x9E1C\n0xC2CBE2B9\t0x4190\n0xC2CBE2BA\t0x7C71\n0xC2CBE2BB\t0x97CA\n0xC2CBE2BC\t0x4696\n0xC2CBE2BD\t0x487F\n0xC2CBE2BE\t0x4D10\n0xC2CBE2BF\t0x9EA3\n0xC2CBE2C0\t0x4A0A\n0xC2CBE2C1\t0x9C7B\n0xC2CBE2C2\t0x9F97\n0xC2CBE2C3\t0x4D12\n0xC2CBE2C4\t0x4A3A\n0xC2CBE2C5\t0x9750\n0xC2CBE2C6\t0x4A3B\n0xC2CBE4C8\t0x4F66\n0xC2CBE4C9\t0x4F68\n0xC2CBE4CA\t0x4FE7\n0xC2CBE4CB\t0x503F\n0xC2CBE4CD\t0x50A6\n0xC2CBE4CE\t0x510F\n0xC2CBE4CF\t0x523E\n0xC2CBE4D0\t0x5324\n0xC2CBE4D1\t0x5365\n0xC2CBE4D2\t0x539B\n0xC2CBE4D3\t0x517F\n0xC2CBE4D4\t0x54CB\n0xC2CBE4D5\t0x5573\n0xC2CBE4D6\t0x5571\n0xC2CBE4D7\t0x556B\n0xC2CBE4D8\t0x55F4\n0xC2CBE4D9\t0x5622\n0xC2CBE4DA\t0x5620\n0xC2CBE4DB\t0x5692\n0xC2CBE4DC\t0x56BA\n0xC2CBE4DD\t0x5691\n0xC2CBE4DE\t0x56B0\n0xC2CBE4DF\t0x5759\n0xC2CBE4E0\t0x578A\n0xC2CBE4E1\t0x580F\n0xC2CBE4E2\t0x5812\n0xC2CBE4E3\t0x5813\n0xC2CBE4E4\t0x5847\n0xC2CBE4E5\t0x589B\n0xC2CBE4E6\t0x5900\n0xC2CBE4E7\t0x594D\n0xC2CBE4E8\t0x5AD1\n0xC2CBE4E9\t0x5AD3\n0xC2CBE4EA\t0x5B67\n0xC2CBE4EB\t0x5C57\n0xC2CBE4EC\t0x5C77\n0xC2CBE4ED\t0x5CD5\n0xC2CBE4EE\t0x5D75\n0xC2CBE4EF\t0x5D8E\n0xC2CBE4F0\t0x5DA5\n0xC2CBE4F1\t0x5DB6\n0xC2CBE4F2\t0x5DBF\n0xC2CBE4F3\t0x5E65\n0xC2CBE4F4\t0x5ECD\n0xC2CBE4F5\t0x5EED\n0xC2CBE4F6\t0x5F94\n0xC2CBE4F7\t0x5F9A\n0xC2CBE4F8\t0x5FBA\n0xC2CBE4F9\t0x6125\n0xC2CBE4FA\t0x6150\n0xC2CBE4FB\t0x62A3\n0xC2CBE4FC\t0x6360\n0xC2CBE4FD\t0x6364\n0xC2CBE4FE\t0x63B6\n0xC2CBE5A1\t0x6403\n0xC2CBE5A2\t0x64B6\n0xC2CBE5A3\t0x651A\n0xC2CBE5A4\t0x7A25\n0xC2CBE5A5\t0x5C21\n0xC2CBE5A6\t0x66E2\n0xC2CBE5A7\t0x6702\n0xC2CBE5A8\t0x67A4\n0xC2CBE5A9\t0x67AC\n0xC2CBE5AA\t0x6810\n0xC2CBE5AB\t0x6806\n0xC2CBE5AC\t0x685E\n0xC2CBE5AD\t0x685A\n0xC2CBE5AE\t0x692C\n0xC2CBE5AF\t0x6929\n0xC2CBE5B0\t0x6A2D\n0xC2CBE5B1\t0x6A77\n0xC2CBE5B2\t0x6A7A\n0xC2CBE5B3\t0x6ACA\n0xC2CBE5B4\t0x6AE6\n0xC2CBE5B5\t0x6AF5\n0xC2CBE5B6\t0x6B0D\n0xC2CBE5B7\t0x6B0E\n0xC2CBE5B8\t0x6BDC\n0xC2CBE5B9\t0x6BDD\n0xC2CBE5BA\t0x6BF6\n0xC2CBE5BB\t0x6C1E\n0xC2CBE5BC\t0x6C63\n0xC2CBE5BD\t0x6DA5\n0xC2CBE5BE\t0x6E0F\n0xC2CBE5BF\t0x6E8A\n0xC2CBE5C0\t0x6E84\n0xC2CBE5C1\t0x6E8B\n0xC2CBE5C2\t0x6E7C\n0xC2CBE5C3\t0x6F4C\n0xC2CBE5C4\t0x6F48\n0xC2CBE5C5\t0x6F49\n0xC2CBE5C6\t0x6F9D\n0xC2CBE5C7\t0x6F99\n0xC2CBE5C8\t0x6FF8\n0xC2CBE5C9\t0x702E\n0xC2CBE5CA\t0x702D\n0xC2CBE5CB\t0x705C\n0xC2CBE5CC\t0x79CC\n0xC2CBE5CD\t0x70BF\n0xC2CBE5CE\t0x70EA\n0xC2CBE5CF\t0x70E5\n0xC2CBE5D0\t0x7111\n0xC2CBE5D1\t0x7112\n0xC2CBE5D2\t0x713F\n0xC2CBE5D3\t0x7139\n0xC2CBE5D4\t0x713B\n0xC2CBE5D5\t0x713D\n0xC2CBE5D6\t0x7177\n0xC2CBE5D7\t0x7175\n0xC2CBE5D8\t0x7176\n0xC2CBE5D9\t0x7171\n0xC2CBE5DA\t0x7196\n0xC2CBE5DB\t0x7193\n0xC2CBE5DC\t0x71B4\n0xC2CBE5DD\t0x71DD\n0xC2CBE5DE\t0x71DE\n0xC2CBE5DF\t0x720E\n0xC2CBE5E0\t0x5911\n0xC2CBE5E1\t0x7218\n0xC2CBE5E2\t0x7347\n0xC2CBE5E3\t0x7348\n0xC2CBE5E4\t0x73EF\n0xC2CBE5E5\t0x7412\n0xC2CBE5E6\t0x743B\n0xC2CBE5E7\t0x74A4\n0xC2CBE5E8\t0x748D\n0xC2CBE5E9\t0x74B4\n0xC2CBE5EA\t0x7673\n0xC2CBE5EB\t0x7677\n0xC2CBE5EC\t0x76BC\n0xC2CBE5ED\t0x7819\n0xC2CBE5EE\t0x781B\n0xC2CBE5EF\t0x783D\n0xC2CBE5F0\t0x7853\n0xC2CBE5F1\t0x7854\n0xC2CBE5F2\t0x7858\n0xC2CBE5F3\t0x78B7\n0xC2CBE5F4\t0x78D8\n0xC2CBE5F5\t0x78EE\n0xC2CBE5F6\t0x7922\n0xC2CBE5F7\t0x794D\n0xC2CBE5F8\t0x7986\n0xC2CBE5F9\t0x7999\n0xC2CBE5FA\t0x79A3\n0xC2CBE5FB\t0x79BC\n0xC2CBE5FC\t0x7AA7\n0xC2CBE5FD\t0x7B37\n0xC2CBE5FE\t0x7B59\n0xC2CBE6A1\t0x7BD0\n0xC2CBE6A2\t0x7C2F\n0xC2CBE6A3\t0x7C32\n0xC2CBE6A4\t0x7C42\n0xC2CBE6A5\t0x7C4E\n0xC2CBE6A6\t0x7C68\n0xC2CBE6A7\t0x7CA9\n0xC2CBE6A8\t0x7CED\n0xC2CBE6A9\t0x7DD0\n0xC2CBE6AA\t0x7E07\n0xC2CBE6AB\t0x7DD3\n0xC2CBE6AC\t0x7E64\n0xC2CBE6AD\t0x7F40\n0xC2CBE6AF\t0x8041\n0xC2CBE6B0\t0x8063\n0xC2CBE6B1\t0x80BB\n0xC2CBE6B2\t0x6711\n0xC2CBE6B3\t0x6725\n0xC2CBE6B4\t0x8248\n0xC2CBE6B5\t0x8310\n0xC2CBE6B6\t0x8362\n0xC2CBE6B7\t0x8312\n0xC2CBE6B8\t0x8421\n0xC2CBE6B9\t0x841E\n0xC2CBE6BA\t0x84E2\n0xC2CBE6BB\t0x84DE\n0xC2CBE6BC\t0x84E1\n0xC2CBE6BD\t0x8573\n0xC2CBE6BE\t0x85D4\n0xC2CBE6BF\t0x85F5\n0xC2CBE6C0\t0x8637\n0xC2CBE6C1\t0x8645\n0xC2CBE6C2\t0x8672\n0xC2CBE6C3\t0x874A\n0xC2CBE6C4\t0x87A9\n0xC2CBE6C5\t0x87A5\n0xC2CBE6C6\t0x87F5\n0xC2CBE6C7\t0x8834\n0xC2CBE6C8\t0x8850\n0xC2CBE6C9\t0x8887\n0xC2CBE6CA\t0x8954\n0xC2CBE6CB\t0x8984\n0xC2CBE6CC\t0x8B03\n0xC2CBE6CD\t0x8C52\n0xC2CBE6CE\t0x8CD8\n0xC2CBE6CF\t0x8D0C\n0xC2CBE6D0\t0x8D18\n0xC2CBE6D1\t0x8DB0\n0xC2CBE6D2\t0x8EBC\n0xC2CBE6D3\t0x8ED5\n0xC2CBE6D4\t0x8FAA\n0xC2CBE6D5\t0x909C\n0xC2CBE6D7\t0x915C\n0xC2CBE6D8\t0x922B\n0xC2CBE6D9\t0x9221\n0xC2CBE6DA\t0x9273\n0xC2CBE6DB\t0x92F4\n0xC2CBE6DC\t0x92F5\n0xC2CBE6DD\t0x933F\n0xC2CBE6DE\t0x9342\n0xC2CBE6DF\t0x9386\n0xC2CBE6E0\t0x93BE\n0xC2CBE6E1\t0x93BC\n0xC2CBE6E2\t0x93BD\n0xC2CBE6E3\t0x93F1\n0xC2CBE6E4\t0x93F2\n0xC2CBE6E5\t0x93EF\n0xC2CBE6E6\t0x9422\n0xC2CBE6E7\t0x9423\n0xC2CBE6E8\t0x9424\n0xC2CBE6E9\t0x9467\n0xC2CBE6EA\t0x9466\n0xC2CBE6EB\t0x9597\n0xC2CBE6EC\t0x95CE\n0xC2CBE6ED\t0x95E7\n0xC2CBE6EE\t0x973B\n0xC2CBE6EF\t0x974D\n0xC2CBE6F0\t0x98E4\n0xC2CBE6F1\t0x9942\n0xC2CBE6F2\t0x9B1D\n0xC2CBE6F3\t0x9B98\n0xC2CBE6F5\t0x9D49\n0xC2CBE6F6\t0x6449\n0xC2CBE6F7\t0x5E71\n0xC2CBE6F8\t0x5E85\n0xC2CBE6F9\t0x61D3\n0xC2CBE6FA\t0x990E\n0xC2CBE6FB\t0x8002\n0xC2CBE6FC\t0x781E\n0xC2CBE7A1\t0x5528\n0xC2CBE7A2\t0x5572\n0xC2CBE7A3\t0x55BA\n0xC2CBE7A4\t0x55F0\n0xC2CBE7A5\t0x55EE\n0xC2CBE7A6\t0x56B8\n0xC2CBE7A7\t0x56B9\n0xC2CBE7A8\t0x56C4\n0xC2CBE7A9\t0x8053\n0xC2CBE7AA\t0x92B0\n0xC321\t0x63EB\n0xC322\t0x6410\n0xC323\t0x6412\n0xC324\t0x6409\n0xC325\t0x6420\n0xC326\t0x6424\n0xC327\t0x6433\n0xC328\t0x6443\n0xC329\t0x641F\n0xC32A\t0x6415\n0xC32B\t0x6418\n0xC32C\t0x6439\n0xC32D\t0x6437\n0xC32E\t0x6422\n0xC32F\t0x6423\n0xC330\t0x640C\n0xC331\t0x6426\n0xC332\t0x6430\n0xC333\t0x6428\n0xC334\t0x6441\n0xC335\t0x6435\n0xC336\t0x642F\n0xC337\t0x640A\n0xC338\t0x641A\n0xC339\t0x6440\n0xC33A\t0x6425\n0xC33B\t0x6427\n0xC33C\t0x640B\n0xC33D\t0x63E7\n0xC33E\t0x641B\n0xC33F\t0x642E\n0xC340\t0x6421\n0xC341\t0x640E\n0xC342\t0x656F\n0xC343\t0x6592\n0xC344\t0x65D3\n0xC345\t0x6686\n0xC346\t0x668C\n0xC347\t0x6695\n0xC348\t0x6690\n0xC349\t0x668B\n0xC34A\t0x668A\n0xC34B\t0x6699\n0xC34C\t0x6694\n0xC34D\t0x6678\n0xC34E\t0x6720\n0xC34F\t0x6966\n0xC350\t0x695F\n0xC351\t0x6938\n0xC352\t0x694E\n0xC353\t0x6962\n0xC354\t0x6971\n0xC355\t0x693F\n0xC356\t0x6945\n0xC357\t0x696A\n0xC358\t0x6939\n0xC359\t0x6942\n0xC35A\t0x6957\n0xC35B\t0x6959\n0xC35C\t0x697A\n0xC35D\t0x6948\n0xC35E\t0x6949\n0xC35F\t0x6935\n0xC360\t0x696C\n0xC361\t0x6933\n0xC362\t0x693D\n0xC363\t0x6965\n0xC364\t0x68F0\n0xC365\t0x6978\n0xC366\t0x6934\n0xC367\t0x6969\n0xC368\t0x6940\n0xC369\t0x696F\n0xC36A\t0x6944\n0xC36B\t0x6976\n0xC36C\t0x6958\n0xC36D\t0x6941\n0xC36E\t0x6974\n0xC36F\t0x694C\n0xC370\t0x693B\n0xC371\t0x694B\n0xC372\t0x6937\n0xC373\t0x695C\n0xC374\t0x694F\n0xC375\t0x6951\n0xC376\t0x6932\n0xC377\t0x6952\n0xC378\t0x692F\n0xC379\t0x697B\n0xC37A\t0x693C\n0xC37B\t0x6B46\n0xC37C\t0x6B45\n0xC37D\t0x6B43\n0xC37E\t0x6B42\n0xC421\t0x6B48\n0xC422\t0x6B41\n0xC423\t0x6B9B\n0xC424\t0x6BFB\n0xC425\t0x6BFC\n0xC426\t0x6BF9\n0xC427\t0x6BF7\n0xC428\t0x6BF8\n0xC429\t0x6E9B\n0xC42A\t0x6ED6\n0xC42B\t0x6EC8\n0xC42C\t0x6E8F\n0xC42D\t0x6EC0\n0xC42E\t0x6E9F\n0xC42F\t0x6E93\n0xC430\t0x6E94\n0xC431\t0x6EA0\n0xC432\t0x6EB1\n0xC433\t0x6EB9\n0xC434\t0x6EC6\n0xC435\t0x6ED2\n0xC436\t0x6EBD\n0xC437\t0x6EC1\n0xC438\t0x6E9E\n0xC439\t0x6EC9\n0xC43A\t0x6EB7\n0xC43B\t0x6EB0\n0xC43C\t0x6ECD\n0xC43D\t0x6EA6\n0xC43E\t0x6ECF\n0xC43F\t0x6EB2\n0xC440\t0x6EBE\n0xC441\t0x6EC3\n0xC442\t0x6EDC\n0xC443\t0x6ED8\n0xC444\t0x6E99\n0xC445\t0x6E92\n0xC446\t0x6E8E\n0xC447\t0x6E8D\n0xC448\t0x6EA4\n0xC449\t0x6EA1\n0xC44A\t0x6EBF\n0xC44B\t0x6EB3\n0xC44C\t0x6ED0\n0xC44D\t0x6ECA\n0xC44E\t0x6E97\n0xC44F\t0x6EAE\n0xC450\t0x6EA3\n0xC451\t0x7147\n0xC452\t0x7154\n0xC453\t0x7152\n0xC454\t0x7163\n0xC455\t0x7160\n0xC456\t0x7141\n0xC457\t0x715D\n0xC458\t0x7162\n0xC459\t0x7172\n0xC45A\t0x7178\n0xC45B\t0x716A\n0xC45C\t0x7161\n0xC45D\t0x7142\n0xC45E\t0x7158\n0xC45F\t0x7143\n0xC460\t0x714B\n0xC461\t0x7170\n0xC462\t0x715F\n0xC463\t0x7150\n0xC464\t0x7153\n0xC465\t0x7144\n0xC466\t0x714D\n0xC467\t0x715A\n0xC468\t0x724F\n0xC469\t0x728D\n0xC46A\t0x728C\n0xC46B\t0x7291\n0xC46C\t0x7290\n0xC46D\t0x728E\n0xC46E\t0x733C\n0xC46F\t0x7342\n0xC470\t0x733B\n0xC471\t0x733A\n0xC472\t0x7340\n0xC473\t0x734A\n0xC474\t0x7349\n0xC475\t0x7444\n0xC476\t0x744A\n0xC477\t0x744B\n0xC478\t0x7452\n0xC479\t0x7451\n0xC47A\t0x7457\n0xC47B\t0x7440\n0xC47C\t0x744F\n0xC47D\t0x7450\n0xC47E\t0x744E\n0xC4A1\t0x4E00\n0xC4A2\t0x4E59\n0xC4A3\t0x4E01\n0xC4A4\t0x4E03\n0xC4A5\t0x4E43\n0xC4A6\t0x4E5D\n0xC4A7\t0x4E86\n0xC4A8\t0x4E8C\n0xC4A9\t0x4EBA\n0xC4AA\t0x513F\n0xC4AB\t0x5165\n0xC4AC\t0x516B\n0xC4AD\t0x51E0\n0xC4AE\t0x5200\n0xC4AF\t0x5201\n0xC4B0\t0x529B\n0xC4B1\t0x5315\n0xC4B2\t0x5341\n0xC4B3\t0x535C\n0xC4B4\t0x53C8\n0xC4B5\t0x4E09\n0xC4B6\t0x4E0B\n0xC4B7\t0x4E08\n0xC4B8\t0x4E0A\n0xC4B9\t0x4E2B\n0xC4BA\t0x4E38\n0xC4BB\t0x51E1\n0xC4BC\t0x4E45\n0xC4BD\t0x4E48\n0xC4BE\t0x4E5F\n0xC4BF\t0x4E5E\n0xC4C0\t0x4E8E\n0xC4C1\t0x4EA1\n0xC4C2\t0x5140\n0xC4C3\t0x5203\n0xC4C4\t0x52FA\n0xC4C5\t0x5343\n0xC4C6\t0x53C9\n0xC4C7\t0x53E3\n0xC4C8\t0x571F\n0xC4C9\t0x58EB\n0xC4CA\t0x5915\n0xC4CB\t0x5927\n0xC4CC\t0x5973\n0xC4CD\t0x5B50\n0xC4CE\t0x5B51\n0xC4CF\t0x5B53\n0xC4D0\t0x5BF8\n0xC4D1\t0x5C0F\n0xC4D2\t0x5C22\n0xC4D3\t0x5C38\n0xC4D4\t0x5C71\n0xC4D5\t0x5DDD\n0xC4D6\t0x5DE5\n0xC4D7\t0x5DF1\n0xC4D8\t0x5DF2\n0xC4D9\t0x5DF3\n0xC4DA\t0x5DFE\n0xC4DB\t0x5E72\n0xC4DC\t0x5EFE\n0xC4DD\t0x5F0B\n0xC4DE\t0x5F13\n0xC4DF\t0x624D\n0xC4E0\t0x4E11\n0xC4E1\t0x4E10\n0xC4E2\t0x4E0D\n0xC4E3\t0x4E2D\n0xC4E4\t0x4E30\n0xC4E5\t0x4E39\n0xC4E6\t0x4E4B\n0xC4E7\t0x5C39\n0xC4E8\t0x4E88\n0xC4E9\t0x4E91\n0xC4EA\t0x4E95\n0xC4EB\t0x4E92\n0xC4EC\t0x4E94\n0xC4ED\t0x4EA2\n0xC4EE\t0x4EC1\n0xC4EF\t0x4EC0\n0xC4F0\t0x4EC3\n0xC4F1\t0x4EC6\n0xC4F2\t0x4EC7\n0xC4F3\t0x4ECD\n0xC4F4\t0x4ECA\n0xC4F5\t0x4ECB\n0xC4F6\t0x4EC4\n0xC4F7\t0x5143\n0xC4F8\t0x5141\n0xC4F9\t0x5167\n0xC4FA\t0x516D\n0xC4FB\t0x516E\n0xC4FC\t0x516C\n0xC4FD\t0x5197\n0xC4FE\t0x51F6\n0xC521\t0x7442\n0xC522\t0x7446\n0xC523\t0x744D\n0xC524\t0x7454\n0xC525\t0x74E1\n0xC526\t0x74FF\n0xC527\t0x74FE\n0xC528\t0x74FD\n0xC529\t0x751D\n0xC52A\t0x7579\n0xC52B\t0x7577\n0xC52C\t0x6983\n0xC52D\t0x75EF\n0xC52E\t0x760F\n0xC52F\t0x7603\n0xC530\t0x75F7\n0xC531\t0x75FE\n0xC532\t0x75FC\n0xC533\t0x75F9\n0xC534\t0x75F8\n0xC535\t0x7610\n0xC536\t0x75FB\n0xC537\t0x75F6\n0xC538\t0x75ED\n0xC539\t0x75F5\n0xC53A\t0x75FD\n0xC53B\t0x7699\n0xC53C\t0x76B5\n0xC53D\t0x76DD\n0xC53E\t0x7755\n0xC53F\t0x775F\n0xC540\t0x7760\n0xC541\t0x7752\n0xC542\t0x7756\n0xC543\t0x775A\n0xC544\t0x7769\n0xC545\t0x7767\n0xC546\t0x7754\n0xC547\t0x7759\n0xC548\t0x776D\n0xC549\t0x77E0\n0xC54A\t0x7887\n0xC54B\t0x789A\n0xC54C\t0x7894\n0xC54D\t0x788F\n0xC54E\t0x7884\n0xC54F\t0x7895\n0xC550\t0x7885\n0xC551\t0x7886\n0xC552\t0x78A1\n0xC553\t0x7883\n0xC554\t0x7879\n0xC555\t0x7899\n0xC556\t0x7880\n0xC557\t0x7896\n0xC558\t0x787B\n0xC559\t0x797C\n0xC55A\t0x7982\n0xC55B\t0x797D\n0xC55C\t0x7979\n0xC55D\t0x7A11\n0xC55E\t0x7A18\n0xC55F\t0x7A19\n0xC560\t0x7A12\n0xC561\t0x7A17\n0xC562\t0x7A15\n0xC563\t0x7A22\n0xC564\t0x7A13\n0xC565\t0x7A1B\n0xC566\t0x7A10\n0xC567\t0x7AA3\n0xC568\t0x7AA2\n0xC569\t0x7A9E\n0xC56A\t0x7AEB\n0xC56B\t0x7B66\n0xC56C\t0x7B64\n0xC56D\t0x7B6D\n0xC56E\t0x7B74\n0xC56F\t0x7B69\n0xC570\t0x7B72\n0xC571\t0x7B65\n0xC572\t0x7B73\n0xC573\t0x7B71\n0xC574\t0x7B70\n0xC575\t0x7B61\n0xC576\t0x7B78\n0xC577\t0x7B76\n0xC578\t0x7B63\n0xC579\t0x7CB2\n0xC57A\t0x7CB4\n0xC57B\t0x7CAF\n0xC57C\t0x7D88\n0xC57D\t0x7D86\n0xC57E\t0x7D80\n0xC5A1\t0x5206\n0xC5A2\t0x5207\n0xC5A3\t0x5208\n0xC5A4\t0x52FB\n0xC5A5\t0x52FE\n0xC5A6\t0x52FF\n0xC5A7\t0x5316\n0xC5A8\t0x5339\n0xC5A9\t0x5348\n0xC5AA\t0x5347\n0xC5AB\t0x5345\n0xC5AC\t0x535E\n0xC5AD\t0x5384\n0xC5AE\t0x53CB\n0xC5AF\t0x53CA\n0xC5B0\t0x53CD\n0xC5B1\t0x58EC\n0xC5B2\t0x5929\n0xC5B3\t0x592B\n0xC5B4\t0x592A\n0xC5B5\t0x592D\n0xC5B6\t0x5B54\n0xC5B7\t0x5C11\n0xC5B8\t0x5C24\n0xC5B9\t0x5C3A\n0xC5BA\t0x5C6F\n0xC5BB\t0x5DF4\n0xC5BC\t0x5E7B\n0xC5BD\t0x5EFF\n0xC5BE\t0x5F14\n0xC5BF\t0x5F15\n0xC5C0\t0x5FC3\n0xC5C1\t0x6208\n0xC5C2\t0x6236\n0xC5C3\t0x624B\n0xC5C4\t0x624E\n0xC5C5\t0x652F\n0xC5C6\t0x6587\n0xC5C7\t0x6597\n0xC5C8\t0x65A4\n0xC5C9\t0x65B9\n0xC5CA\t0x65E5\n0xC5CB\t0x66F0\n0xC5CC\t0x6708\n0xC5CD\t0x6728\n0xC5CE\t0x6B20\n0xC5CF\t0x6B62\n0xC5D0\t0x6B79\n0xC5D1\t0x6BCB\n0xC5D2\t0x6BD4\n0xC5D3\t0x6BDB\n0xC5D4\t0x6C0F\n0xC5D5\t0x6C34\n0xC5D6\t0x706B\n0xC5D7\t0x722A\n0xC5D8\t0x7236\n0xC5D9\t0x723B\n0xC5DA\t0x7247\n0xC5DB\t0x7259\n0xC5DC\t0x725B\n0xC5DD\t0x72AC\n0xC5DE\t0x738B\n0xC5DF\t0x4E19\n0xC5E0\t0x4E16\n0xC5E1\t0x4E15\n0xC5E2\t0x4E14\n0xC5E3\t0x4E18\n0xC5E4\t0x4E3B\n0xC5E5\t0x4E4D\n0xC5E6\t0x4E4F\n0xC5E7\t0x4E4E\n0xC5E8\t0x4EE5\n0xC5E9\t0x4ED8\n0xC5EA\t0x4ED4\n0xC5EB\t0x4ED5\n0xC5EC\t0x4ED6\n0xC5ED\t0x4ED7\n0xC5EE\t0x4EE3\n0xC5EF\t0x4EE4\n0xC5F0\t0x4ED9\n0xC5F1\t0x4EDE\n0xC5F2\t0x5145\n0xC5F3\t0x5144\n0xC5F4\t0x5189\n0xC5F5\t0x518A\n0xC5F6\t0x51AC\n0xC5F7\t0x51F9\n0xC5F8\t0x51FA\n0xC5F9\t0x51F8\n0xC5FA\t0x520A\n0xC5FB\t0x52A0\n0xC5FC\t0x529F\n0xC5FD\t0x5305\n0xC5FE\t0x5306\n0xC621\t0x7D8D\n0xC622\t0x7D7F\n0xC623\t0x7D85\n0xC624\t0x7D7A\n0xC625\t0x7D8E\n0xC626\t0x7D7B\n0xC627\t0x7D83\n0xC628\t0x7D7C\n0xC629\t0x7D8C\n0xC62A\t0x7D94\n0xC62B\t0x7D84\n0xC62C\t0x7D7D\n0xC62D\t0x7D92\n0xC62E\t0x7F6D\n0xC62F\t0x7F6B\n0xC630\t0x7F67\n0xC631\t0x7F68\n0xC632\t0x7F6C\n0xC633\t0x7FA6\n0xC634\t0x7FA5\n0xC635\t0x7FA7\n0xC636\t0x7FDB\n0xC637\t0x7FDC\n0xC638\t0x8021\n0xC639\t0x8164\n0xC63A\t0x8160\n0xC63B\t0x8177\n0xC63C\t0x815C\n0xC63D\t0x8169\n0xC63E\t0x815B\n0xC63F\t0x8162\n0xC640\t0x8172\n0xC641\t0x6721\n0xC642\t0x815E\n0xC643\t0x8176\n0xC644\t0x8167\n0xC645\t0x816F\n0xC646\t0x8144\n0xC647\t0x8161\n0xC648\t0x821D\n0xC649\t0x8249\n0xC64A\t0x8244\n0xC64B\t0x8240\n0xC64C\t0x8242\n0xC64D\t0x8245\n0xC64E\t0x84F1\n0xC64F\t0x843F\n0xC650\t0x8456\n0xC651\t0x8476\n0xC652\t0x8479\n0xC653\t0x848F\n0xC654\t0x848D\n0xC655\t0x8465\n0xC656\t0x8451\n0xC657\t0x8440\n0xC658\t0x8486\n0xC659\t0x8467\n0xC65A\t0x8430\n0xC65B\t0x844D\n0xC65C\t0x847D\n0xC65D\t0x845A\n0xC65E\t0x8459\n0xC65F\t0x8474\n0xC660\t0x8473\n0xC661\t0x845D\n0xC662\t0x8507\n0xC663\t0x845E\n0xC664\t0x8437\n0xC665\t0x843A\n0xC666\t0x8434\n0xC667\t0x847A\n0xC668\t0x8443\n0xC669\t0x8478\n0xC66A\t0x8432\n0xC66B\t0x8445\n0xC66C\t0x8429\n0xC66D\t0x83D9\n0xC66E\t0x844B\n0xC66F\t0x842F\n0xC670\t0x8442\n0xC671\t0x842D\n0xC672\t0x845F\n0xC673\t0x8470\n0xC674\t0x8439\n0xC675\t0x844E\n0xC676\t0x844C\n0xC677\t0x8452\n0xC678\t0x846F\n0xC679\t0x84C5\n0xC67A\t0x848E\n0xC67B\t0x843B\n0xC67C\t0x8447\n0xC67D\t0x8436\n0xC67E\t0x8433\n0xC6A1\t0x5317\n0xC6A2\t0x531D\n0xC6A3\t0x4EDF\n0xC6A4\t0x534A\n0xC6A5\t0x5349\n0xC6A6\t0x5361\n0xC6A7\t0x5360\n0xC6A8\t0x536F\n0xC6A9\t0x536E\n0xC6AA\t0x53BB\n0xC6AB\t0x53EF\n0xC6AC\t0x53E4\n0xC6AD\t0x53F3\n0xC6AE\t0x53EC\n0xC6AF\t0x53EE\n0xC6B0\t0x53E9\n0xC6B1\t0x53E8\n0xC6B2\t0x53FC\n0xC6B3\t0x53F8\n0xC6B4\t0x53F5\n0xC6B5\t0x53EB\n0xC6B6\t0x53E6\n0xC6B7\t0x53EA\n0xC6B8\t0x53F2\n0xC6B9\t0x53F1\n0xC6BA\t0x53F0\n0xC6BB\t0x53E5\n0xC6BC\t0x53ED\n0xC6BD\t0x53FB\n0xC6BE\t0x56DB\n0xC6BF\t0x56DA\n0xC6C0\t0x5916\n0xC6C1\t0x592E\n0xC6C2\t0x5931\n0xC6C3\t0x5974\n0xC6C4\t0x5976\n0xC6C5\t0x5B55\n0xC6C6\t0x5B83\n0xC6C7\t0x5C3C\n0xC6C8\t0x5DE8\n0xC6C9\t0x5DE7\n0xC6CA\t0x5DE6\n0xC6CB\t0x5E02\n0xC6CC\t0x5E03\n0xC6CD\t0x5E73\n0xC6CE\t0x5E7C\n0xC6CF\t0x5F01\n0xC6D0\t0x5F18\n0xC6D1\t0x5F17\n0xC6D2\t0x5FC5\n0xC6D3\t0x620A\n0xC6D4\t0x6253\n0xC6D5\t0x6254\n0xC6D6\t0x6252\n0xC6D7\t0x6251\n0xC6D8\t0x65A5\n0xC6D9\t0x65E6\n0xC6DA\t0x672E\n0xC6DB\t0x672C\n0xC6DC\t0x672A\n0xC6DD\t0x672B\n0xC6DE\t0x672D\n0xC6DF\t0x6B63\n0xC6E0\t0x6BCD\n0xC6E1\t0x6C11\n0xC6E2\t0x6C10\n0xC6E3\t0x6C38\n0xC6E4\t0x6C41\n0xC6E5\t0x6C40\n0xC6E6\t0x6C3E\n0xC6E7\t0x72AF\n0xC6E8\t0x7384\n0xC6E9\t0x7389\n0xC6EA\t0x74DC\n0xC6EB\t0x74E6\n0xC6EC\t0x7518\n0xC6ED\t0x751F\n0xC6EE\t0x7528\n0xC6EF\t0x7529\n0xC6F0\t0x7530\n0xC6F1\t0x7531\n0xC6F2\t0x7532\n0xC6F3\t0x7533\n0xC6F4\t0x758B\n0xC6F5\t0x767D\n0xC6F6\t0x76AE\n0xC6F7\t0x76BF\n0xC6F8\t0x76EE\n0xC6F9\t0x77DB\n0xC6FA\t0x77E2\n0xC6FB\t0x77F3\n0xC6FC\t0x793A\n0xC6FD\t0x79BE\n0xC6FE\t0x7A74\n0xC721\t0x8468\n0xC722\t0x847E\n0xC723\t0x8444\n0xC724\t0x842B\n0xC725\t0x8460\n0xC726\t0x8454\n0xC727\t0x846E\n0xC728\t0x8450\n0xC729\t0x870B\n0xC72A\t0x8704\n0xC72B\t0x86F7\n0xC72C\t0x870C\n0xC72D\t0x86FA\n0xC72E\t0x86D6\n0xC72F\t0x86F5\n0xC730\t0x874D\n0xC731\t0x86F8\n0xC732\t0x870E\n0xC733\t0x8709\n0xC734\t0x8701\n0xC735\t0x86F6\n0xC736\t0x870D\n0xC737\t0x8705\n0xC738\t0x88D6\n0xC739\t0x88CB\n0xC73A\t0x88CD\n0xC73B\t0x88CE\n0xC73C\t0x88DE\n0xC73D\t0x88DB\n0xC73E\t0x88DA\n0xC73F\t0x88CC\n0xC740\t0x88D0\n0xC741\t0x8985\n0xC742\t0x899B\n0xC743\t0x89DF\n0xC744\t0x89E5\n0xC745\t0x89E4\n0xC746\t0x89E1\n0xC747\t0x89E0\n0xC748\t0x89E2\n0xC749\t0x89DC\n0xC74A\t0x89E6\n0xC74B\t0x8A76\n0xC74C\t0x8A86\n0xC74D\t0x8A7F\n0xC74E\t0x8A61\n0xC74F\t0x8A3F\n0xC750\t0x8A77\n0xC751\t0x8A82\n0xC752\t0x8A84\n0xC753\t0x8A75\n0xC754\t0x8A83\n0xC755\t0x8A81\n0xC756\t0x8A74\n0xC757\t0x8A7A\n0xC758\t0x8C3C\n0xC759\t0x8C4B\n0xC75A\t0x8C4A\n0xC75B\t0x8C65\n0xC75C\t0x8C64\n0xC75D\t0x8C66\n0xC75E\t0x8C86\n0xC75F\t0x8C84\n0xC760\t0x8C85\n0xC761\t0x8CCC\n0xC762\t0x8D68\n0xC763\t0x8D69\n0xC764\t0x8D91\n0xC765\t0x8D8C\n0xC766\t0x8D8E\n0xC767\t0x8D8F\n0xC768\t0x8D8D\n0xC769\t0x8D93\n0xC76A\t0x8D94\n0xC76B\t0x8D90\n0xC76C\t0x8D92\n0xC76D\t0x8DF0\n0xC76E\t0x8DE0\n0xC76F\t0x8DEC\n0xC770\t0x8DF1\n0xC771\t0x8DEE\n0xC772\t0x8DD0\n0xC773\t0x8DE9\n0xC774\t0x8DE3\n0xC775\t0x8DE2\n0xC776\t0x8DE7\n0xC777\t0x8DF2\n0xC778\t0x8DEB\n0xC779\t0x8DF4\n0xC77A\t0x8F06\n0xC77B\t0x8EFF\n0xC77C\t0x8F01\n0xC77D\t0x8F00\n0xC77E\t0x8F05\n0xC7A1\t0x7ACB\n0xC7A2\t0x4E1E\n0xC7A3\t0x4E1F\n0xC7A4\t0x4E52\n0xC7A5\t0x4E53\n0xC7A6\t0x4E69\n0xC7A7\t0x4E99\n0xC7A8\t0x4EA4\n0xC7A9\t0x4EA6\n0xC7AA\t0x4EA5\n0xC7AB\t0x4EFF\n0xC7AC\t0x4F09\n0xC7AD\t0x4F19\n0xC7AE\t0x4F0A\n0xC7AF\t0x4F15\n0xC7B0\t0x4F0D\n0xC7B1\t0x4F10\n0xC7B2\t0x4F11\n0xC7B3\t0x4F0F\n0xC7B4\t0x4EF2\n0xC7B5\t0x4EF6\n0xC7B6\t0x4EFB\n0xC7B7\t0x4EF0\n0xC7B8\t0x4EF3\n0xC7B9\t0x4EFD\n0xC7BA\t0x4F01\n0xC7BB\t0x4F0B\n0xC7BC\t0x5149\n0xC7BD\t0x5147\n0xC7BE\t0x5146\n0xC7BF\t0x5148\n0xC7C0\t0x5168\n0xC7C1\t0x5171\n0xC7C2\t0x518D\n0xC7C3\t0x51B0\n0xC7C4\t0x5217\n0xC7C5\t0x5211\n0xC7C6\t0x5212\n0xC7C7\t0x520E\n0xC7C8\t0x5216\n0xC7C9\t0x52A3\n0xC7CA\t0x5308\n0xC7CB\t0x5321\n0xC7CC\t0x5320\n0xC7CD\t0x5370\n0xC7CE\t0x5371\n0xC7CF\t0x5409\n0xC7D0\t0x540F\n0xC7D1\t0x540C\n0xC7D2\t0x540A\n0xC7D3\t0x5410\n0xC7D4\t0x5401\n0xC7D5\t0x540B\n0xC7D6\t0x5404\n0xC7D7\t0x5411\n0xC7D8\t0x540D\n0xC7D9\t0x5408\n0xC7DA\t0x5403\n0xC7DB\t0x540E\n0xC7DC\t0x5406\n0xC7DD\t0x5412\n0xC7DE\t0x56E0\n0xC7DF\t0x56DE\n0xC7E0\t0x56DD\n0xC7E1\t0x5733\n0xC7E2\t0x5730\n0xC7E3\t0x5728\n0xC7E4\t0x572D\n0xC7E5\t0x572C\n0xC7E6\t0x572F\n0xC7E7\t0x5729\n0xC7E8\t0x5919\n0xC7E9\t0x591A\n0xC7EA\t0x5937\n0xC7EB\t0x5938\n0xC7EC\t0x5984\n0xC7ED\t0x5978\n0xC7EE\t0x5983\n0xC7EF\t0x597D\n0xC7F0\t0x5979\n0xC7F1\t0x5982\n0xC7F2\t0x5981\n0xC7F3\t0x5B57\n0xC7F4\t0x5B58\n0xC7F5\t0x5B87\n0xC7F6\t0x5B88\n0xC7F7\t0x5B85\n0xC7F8\t0x5B89\n0xC7F9\t0x5BFA\n0xC7FA\t0x5C16\n0xC7FB\t0x5C79\n0xC7FC\t0x5DDE\n0xC7FD\t0x5E06\n0xC7FE\t0x5E76\n0xC821\t0x8F07\n0xC822\t0x8F08\n0xC823\t0x8F02\n0xC824\t0x8F0B\n0xC825\t0x9052\n0xC826\t0x903F\n0xC827\t0x9044\n0xC828\t0x9049\n0xC829\t0x903D\n0xC82A\t0x9110\n0xC82B\t0x910D\n0xC82C\t0x910F\n0xC82D\t0x9111\n0xC82E\t0x9116\n0xC82F\t0x9114\n0xC830\t0x910B\n0xC831\t0x910E\n0xC832\t0x916E\n0xC833\t0x916F\n0xC834\t0x9248\n0xC835\t0x9252\n0xC836\t0x9230\n0xC837\t0x923A\n0xC838\t0x9266\n0xC839\t0x9233\n0xC83A\t0x9265\n0xC83B\t0x925E\n0xC83C\t0x9283\n0xC83D\t0x922E\n0xC83E\t0x924A\n0xC83F\t0x9246\n0xC840\t0x926D\n0xC841\t0x926C\n0xC842\t0x924F\n0xC843\t0x9260\n0xC844\t0x9267\n0xC845\t0x926F\n0xC846\t0x9236\n0xC847\t0x9261\n0xC848\t0x9270\n0xC849\t0x9231\n0xC84A\t0x9254\n0xC84B\t0x9263\n0xC84C\t0x9250\n0xC84D\t0x9272\n0xC84E\t0x924E\n0xC84F\t0x9253\n0xC850\t0x924C\n0xC851\t0x9256\n0xC852\t0x9232\n0xC853\t0x959F\n0xC854\t0x959C\n0xC855\t0x959E\n0xC856\t0x959B\n0xC857\t0x9692\n0xC858\t0x9693\n0xC859\t0x9691\n0xC85A\t0x9697\n0xC85B\t0x96CE\n0xC85C\t0x96FA\n0xC85D\t0x96FD\n0xC85E\t0x96F8\n0xC85F\t0x96F5\n0xC860\t0x9773\n0xC861\t0x9777\n0xC862\t0x9778\n0xC863\t0x9772\n0xC864\t0x980F\n0xC865\t0x980D\n0xC866\t0x980E\n0xC867\t0x98AC\n0xC868\t0x98F6\n0xC869\t0x98F9\n0xC86A\t0x99AF\n0xC86B\t0x99B2\n0xC86C\t0x99B0\n0xC86D\t0x99B5\n0xC86E\t0x9AAD\n0xC86F\t0x9AAB\n0xC870\t0x9B5B\n0xC871\t0x9CEA\n0xC872\t0x9CED\n0xC873\t0x9CE7\n0xC874\t0x9E80\n0xC875\t0x9EFD\n0xC876\t0x50E6\n0xC877\t0x50D4\n0xC878\t0x50D7\n0xC879\t0x50E8\n0xC87A\t0x50F3\n0xC87B\t0x50DB\n0xC87C\t0x50EA\n0xC87D\t0x50DD\n0xC87E\t0x50E4\n0xC8A1\t0x5E74\n0xC8A2\t0x5F0F\n0xC8A3\t0x5F1B\n0xC8A4\t0x5FD9\n0xC8A5\t0x5FD6\n0xC8A6\t0x620E\n0xC8A7\t0x620C\n0xC8A8\t0x620D\n0xC8A9\t0x6210\n0xC8AA\t0x6263\n0xC8AB\t0x625B\n0xC8AC\t0x6258\n0xC8AD\t0x6536\n0xC8AE\t0x65E9\n0xC8AF\t0x65E8\n0xC8B0\t0x65EC\n0xC8B1\t0x65ED\n0xC8B2\t0x66F2\n0xC8B3\t0x66F3\n0xC8B4\t0x6709\n0xC8B5\t0x673D\n0xC8B6\t0x6734\n0xC8B7\t0x6731\n0xC8B8\t0x6735\n0xC8B9\t0x6B21\n0xC8BA\t0x6B64\n0xC8BB\t0x6B7B\n0xC8BC\t0x6C16\n0xC8BD\t0x6C5D\n0xC8BE\t0x6C57\n0xC8BF\t0x6C59\n0xC8C0\t0x6C5F\n0xC8C1\t0x6C60\n0xC8C2\t0x6C50\n0xC8C3\t0x6C55\n0xC8C4\t0x6C61\n0xC8C5\t0x6C5B\n0xC8C6\t0x6C4D\n0xC8C7\t0x6C4E\n0xC8C8\t0x7070\n0xC8C9\t0x725F\n0xC8CA\t0x725D\n0xC8CB\t0x767E\n0xC8CC\t0x7AF9\n0xC8CD\t0x7C73\n0xC8CE\t0x7CF8\n0xC8CF\t0x7F36\n0xC8D0\t0x7F8A\n0xC8D1\t0x7FBD\n0xC8D2\t0x8001\n0xC8D3\t0x8003\n0xC8D4\t0x800C\n0xC8D5\t0x8012\n0xC8D6\t0x8033\n0xC8D7\t0x807F\n0xC8D8\t0x8089\n0xC8D9\t0x808B\n0xC8DA\t0x808C\n0xC8DB\t0x81E3\n0xC8DC\t0x81EA\n0xC8DD\t0x81F3\n0xC8DE\t0x81FC\n0xC8DF\t0x820C\n0xC8E0\t0x821B\n0xC8E1\t0x821F\n0xC8E2\t0x826E\n0xC8E3\t0x8272\n0xC8E4\t0x827E\n0xC8E5\t0x866B\n0xC8E6\t0x8840\n0xC8E7\t0x884C\n0xC8E8\t0x8863\n0xC8E9\t0x897F\n0xC8EA\t0x9621\n0xC8EB\t0x4E32\n0xC8EC\t0x4EA8\n0xC8ED\t0x4F4D\n0xC8EE\t0x4F4F\n0xC8EF\t0x4F47\n0xC8F0\t0x4F57\n0xC8F1\t0x4F5E\n0xC8F2\t0x4F34\n0xC8F3\t0x4F5B\n0xC8F4\t0x4F55\n0xC8F5\t0x4F30\n0xC8F6\t0x4F50\n0xC8F7\t0x4F51\n0xC8F8\t0x4F3D\n0xC8F9\t0x4F3A\n0xC8FA\t0x4F38\n0xC8FB\t0x4F43\n0xC8FC\t0x4F54\n0xC8FD\t0x4F3C\n0xC8FE\t0x4F46\n0xC921\t0x50D3\n0xC922\t0x50EC\n0xC923\t0x50F0\n0xC924\t0x50EF\n0xC925\t0x50E3\n0xC926\t0x50E0\n0xC927\t0x51D8\n0xC928\t0x5280\n0xC929\t0x5281\n0xC92A\t0x52E9\n0xC92B\t0x52EB\n0xC92C\t0x5330\n0xC92D\t0x53AC\n0xC92E\t0x5627\n0xC92F\t0x5615\n0xC930\t0x560C\n0xC931\t0x5612\n0xC932\t0x55FC\n0xC933\t0x560F\n0xC934\t0x561C\n0xC935\t0x5601\n0xC936\t0x5613\n0xC937\t0x5602\n0xC938\t0x55FA\n0xC939\t0x561D\n0xC93A\t0x5604\n0xC93B\t0x55FF\n0xC93C\t0x55F9\n0xC93D\t0x5889\n0xC93E\t0x587C\n0xC93F\t0x5890\n0xC940\t0x5898\n0xC941\t0x5886\n0xC942\t0x5881\n0xC943\t0x587F\n0xC944\t0x5874\n0xC945\t0x588B\n0xC946\t0x587A\n0xC947\t0x5887\n0xC948\t0x5891\n0xC949\t0x588E\n0xC94A\t0x5876\n0xC94B\t0x5882\n0xC94C\t0x5888\n0xC94D\t0x587B\n0xC94E\t0x5894\n0xC94F\t0x588F\n0xC950\t0x58FE\n0xC951\t0x596B\n0xC952\t0x5ADC\n0xC953\t0x5AEE\n0xC954\t0x5AE5\n0xC955\t0x5AD5\n0xC956\t0x5AEA\n0xC957\t0x5ADA\n0xC958\t0x5AED\n0xC959\t0x5AEB\n0xC95A\t0x5AF3\n0xC95B\t0x5AE2\n0xC95C\t0x5AE0\n0xC95D\t0x5ADB\n0xC95E\t0x5AEC\n0xC95F\t0x5ADE\n0xC960\t0x5ADD\n0xC961\t0x5AD9\n0xC962\t0x5AE8\n0xC963\t0x5ADF\n0xC964\t0x5B77\n0xC965\t0x5BE0\n0xC966\t0x5BE3\n0xC967\t0x5C63\n0xC968\t0x5D82\n0xC969\t0x5D80\n0xC96A\t0x5D7D\n0xC96B\t0x5D86\n0xC96C\t0x5D7A\n0xC96D\t0x5D81\n0xC96E\t0x5D77\n0xC96F\t0x5D8A\n0xC970\t0x5D89\n0xC971\t0x5D88\n0xC972\t0x5D7E\n0xC973\t0x5D7C\n0xC974\t0x5D8D\n0xC975\t0x5D79\n0xC976\t0x5D7F\n0xC977\t0x5E58\n0xC978\t0x5E59\n0xC979\t0x5E53\n0xC97A\t0x5ED8\n0xC97B\t0x5ED1\n0xC97C\t0x5ED7\n0xC97D\t0x5ECE\n0xC97E\t0x5EDC\n0xC9A1\t0x4F63\n0xC9A2\t0x4F5C\n0xC9A3\t0x4F60\n0xC9A4\t0x4F2F\n0xC9A5\t0x4F4E\n0xC9A6\t0x4F36\n0xC9A7\t0x4F59\n0xC9A8\t0x4F5D\n0xC9A9\t0x4F48\n0xC9AA\t0x4F5A\n0xC9AB\t0x514C\n0xC9AC\t0x514B\n0xC9AD\t0x514D\n0xC9AE\t0x5175\n0xC9AF\t0x51B6\n0xC9B0\t0x51B7\n0xC9B1\t0x5225\n0xC9B2\t0x5224\n0xC9B3\t0x5229\n0xC9B4\t0x522A\n0xC9B5\t0x5228\n0xC9B6\t0x52AB\n0xC9B7\t0x52A9\n0xC9B8\t0x52AA\n0xC9B9\t0x52AC\n0xC9BA\t0x5323\n0xC9BB\t0x5373\n0xC9BC\t0x5375\n0xC9BD\t0x541D\n0xC9BE\t0x542D\n0xC9BF\t0x541E\n0xC9C0\t0x543E\n0xC9C1\t0x5426\n0xC9C2\t0x544E\n0xC9C3\t0x5427\n0xC9C4\t0x5446\n0xC9C5\t0x5443\n0xC9C6\t0x5433\n0xC9C7\t0x5448\n0xC9C8\t0x5442\n0xC9C9\t0x541B\n0xC9CA\t0x5429\n0xC9CB\t0x544A\n0xC9CC\t0x5439\n0xC9CD\t0x543B\n0xC9CE\t0x5438\n0xC9CF\t0x542E\n0xC9D0\t0x5435\n0xC9D1\t0x5436\n0xC9D2\t0x5420\n0xC9D3\t0x543C\n0xC9D4\t0x5440\n0xC9D5\t0x5431\n0xC9D6\t0x542B\n0xC9D7\t0x541F\n0xC9D8\t0x542C\n0xC9D9\t0x56EA\n0xC9DA\t0x56F0\n0xC9DB\t0x56E4\n0xC9DC\t0x56EB\n0xC9DD\t0x574A\n0xC9DE\t0x5751\n0xC9DF\t0x5740\n0xC9E0\t0x574D\n0xC9E1\t0x5747\n0xC9E2\t0x574E\n0xC9E3\t0x573E\n0xC9E4\t0x5750\n0xC9E5\t0x574F\n0xC9E6\t0x573B\n0xC9E7\t0x58EF\n0xC9E8\t0x593E\n0xC9E9\t0x599D\n0xC9EA\t0x5992\n0xC9EB\t0x59A8\n0xC9EC\t0x599E\n0xC9ED\t0x59A3\n0xC9EE\t0x5999\n0xC9EF\t0x5996\n0xC9F0\t0x598D\n0xC9F1\t0x59A4\n0xC9F2\t0x5993\n0xC9F3\t0x598A\n0xC9F4\t0x59A5\n0xC9F5\t0x5B5D\n0xC9F6\t0x5B5C\n0xC9F7\t0x5B5A\n0xC9F8\t0x5B5B\n0xC9F9\t0x5B8C\n0xC9FA\t0x5B8B\n0xC9FB\t0x5B8F\n0xC9FC\t0x5C2C\n0xC9FD\t0x5C40\n0xC9FE\t0x5C41\n0xCA21\t0x5ED5\n0xCA22\t0x5ED9\n0xCA23\t0x5ED2\n0xCA24\t0x5ED4\n0xCA25\t0x5F44\n0xCA26\t0x5F43\n0xCA27\t0x5F6F\n0xCA28\t0x5FB6\n0xCA29\t0x612C\n0xCA2A\t0x6128\n0xCA2B\t0x6141\n0xCA2C\t0x615E\n0xCA2D\t0x6171\n0xCA2E\t0x6173\n0xCA2F\t0x6152\n0xCA30\t0x6153\n0xCA31\t0x6172\n0xCA32\t0x616C\n0xCA33\t0x6180\n0xCA34\t0x6174\n0xCA35\t0x6154\n0xCA36\t0x617A\n0xCA37\t0x615B\n0xCA38\t0x6165\n0xCA39\t0x613B\n0xCA3A\t0x616A\n0xCA3B\t0x6161\n0xCA3C\t0x6156\n0xCA3D\t0x6229\n0xCA3E\t0x6227\n0xCA3F\t0x622B\n0xCA40\t0x642B\n0xCA41\t0x644D\n0xCA42\t0x645B\n0xCA43\t0x645D\n0xCA44\t0x6474\n0xCA45\t0x6476\n0xCA46\t0x6472\n0xCA47\t0x6473\n0xCA48\t0x647D\n0xCA49\t0x6475\n0xCA4A\t0x6466\n0xCA4B\t0x64A6\n0xCA4C\t0x644E\n0xCA4D\t0x6482\n0xCA4E\t0x645E\n0xCA4F\t0x645C\n0xCA50\t0x644B\n0xCA51\t0x6453\n0xCA52\t0x6460\n0xCA53\t0x6450\n0xCA54\t0x647F\n0xCA55\t0x643F\n0xCA56\t0x646C\n0xCA57\t0x646B\n0xCA58\t0x6459\n0xCA59\t0x6465\n0xCA5A\t0x6477\n0xCA5B\t0x6573\n0xCA5C\t0x65A0\n0xCA5D\t0x66A1\n0xCA5E\t0x66A0\n0xCA5F\t0x669F\n0xCA60\t0x6705\n0xCA61\t0x6704\n0xCA62\t0x6722\n0xCA63\t0x69B1\n0xCA64\t0x69B6\n0xCA65\t0x69C9\n0xCA66\t0x69A0\n0xCA67\t0x69CE\n0xCA68\t0x6996\n0xCA69\t0x69B0\n0xCA6A\t0x69AC\n0xCA6B\t0x69BC\n0xCA6C\t0x6991\n0xCA6D\t0x6999\n0xCA6E\t0x698E\n0xCA6F\t0x69A7\n0xCA70\t0x698D\n0xCA71\t0x69A9\n0xCA72\t0x69BE\n0xCA73\t0x69AF\n0xCA74\t0x69BF\n0xCA75\t0x69C4\n0xCA76\t0x69BD\n0xCA77\t0x69A4\n0xCA78\t0x69D4\n0xCA79\t0x69B9\n0xCA7A\t0x69CA\n0xCA7B\t0x699A\n0xCA7C\t0x69CF\n0xCA7D\t0x69B3\n0xCA7E\t0x6993\n0xCAA1\t0x5C3F\n0xCAA2\t0x5C3E\n0xCAA3\t0x5C90\n0xCAA4\t0x5C91\n0xCAA5\t0x5C94\n0xCAA6\t0x5C8C\n0xCAA7\t0x5DEB\n0xCAA8\t0x5E0C\n0xCAA9\t0x5E8F\n0xCAAA\t0x5E87\n0xCAAB\t0x5E8A\n0xCAAC\t0x5EF7\n0xCAAD\t0x5F04\n0xCAAE\t0x5F1F\n0xCAAF\t0x5F64\n0xCAB0\t0x5F62\n0xCAB1\t0x5F77\n0xCAB2\t0x5F79\n0xCAB3\t0x5FD8\n0xCAB4\t0x5FCC\n0xCAB5\t0x5FD7\n0xCAB6\t0x5FCD\n0xCAB7\t0x5FF1\n0xCAB8\t0x5FEB\n0xCAB9\t0x5FF8\n0xCABA\t0x5FEA\n0xCABB\t0x6212\n0xCABC\t0x6211\n0xCABD\t0x6284\n0xCABE\t0x6297\n0xCABF\t0x6296\n0xCAC0\t0x6280\n0xCAC1\t0x6276\n0xCAC2\t0x6289\n0xCAC3\t0x626D\n0xCAC4\t0x628A\n0xCAC5\t0x627C\n0xCAC6\t0x627E\n0xCAC7\t0x6279\n0xCAC8\t0x6273\n0xCAC9\t0x6292\n0xCACA\t0x626F\n0xCACB\t0x6298\n0xCACC\t0x626E\n0xCACD\t0x6295\n0xCACE\t0x6293\n0xCACF\t0x6291\n0xCAD0\t0x6286\n0xCAD1\t0x6539\n0xCAD2\t0x653B\n0xCAD3\t0x6538\n0xCAD4\t0x65F1\n0xCAD5\t0x66F4\n0xCAD6\t0x675F\n0xCAD7\t0x674E\n0xCAD8\t0x674F\n0xCAD9\t0x6750\n0xCADA\t0x6751\n0xCADB\t0x675C\n0xCADC\t0x6756\n0xCADD\t0x675E\n0xCADE\t0x6749\n0xCADF\t0x6746\n0xCAE0\t0x6760\n0xCAE1\t0x6753\n0xCAE2\t0x6757\n0xCAE3\t0x6B65\n0xCAE4\t0x6BCF\n0xCAE5\t0x6C42\n0xCAE6\t0x6C5E\n0xCAE7\t0x6C99\n0xCAE8\t0x6C81\n0xCAE9\t0x6C88\n0xCAEA\t0x6C89\n0xCAEB\t0x6C85\n0xCAEC\t0x6C9B\n0xCAED\t0x6C6A\n0xCAEE\t0x6C7A\n0xCAEF\t0x6C90\n0xCAF0\t0x6C70\n0xCAF1\t0x6C8C\n0xCAF2\t0x6C68\n0xCAF3\t0x6C96\n0xCAF4\t0x6C92\n0xCAF5\t0x6C7D\n0xCAF6\t0x6C83\n0xCAF7\t0x6C72\n0xCAF8\t0x6C7E\n0xCAF9\t0x6C74\n0xCAFA\t0x6C86\n0xCAFB\t0x6C76\n0xCAFC\t0x6C8D\n0xCAFD\t0x6C94\n0xCAFE\t0x6C98\n0xCB21\t0x69AA\n0xCB22\t0x69A1\n0xCB23\t0x699E\n0xCB24\t0x69D9\n0xCB25\t0x6997\n0xCB26\t0x6990\n0xCB27\t0x69C2\n0xCB28\t0x69B5\n0xCB29\t0x69A5\n0xCB2A\t0x69C6\n0xCB2B\t0x6B4A\n0xCB2C\t0x6B4D\n0xCB2D\t0x6B4B\n0xCB2E\t0x6B9E\n0xCB2F\t0x6B9F\n0xCB30\t0x6BA0\n0xCB31\t0x6BC3\n0xCB32\t0x6BC4\n0xCB33\t0x6BFE\n0xCB34\t0x6ECE\n0xCB35\t0x6EF5\n0xCB36\t0x6EF1\n0xCB37\t0x6F03\n0xCB38\t0x6F25\n0xCB39\t0x6EF8\n0xCB3A\t0x6F37\n0xCB3B\t0x6EFB\n0xCB3C\t0x6F2E\n0xCB3D\t0x6F09\n0xCB3E\t0x6F4E\n0xCB3F\t0x6F19\n0xCB40\t0x6F1A\n0xCB41\t0x6F27\n0xCB42\t0x6F18\n0xCB43\t0x6F3B\n0xCB44\t0x6F12\n0xCB45\t0x6EED\n0xCB46\t0x6F0A\n0xCB47\t0x6F36\n0xCB48\t0x6F73\n0xCB49\t0x6EF9\n0xCB4A\t0x6EEE\n0xCB4B\t0x6F2D\n0xCB4C\t0x6F40\n0xCB4D\t0x6F30\n0xCB4E\t0x6F3C\n0xCB4F\t0x6F35\n0xCB50\t0x6EEB\n0xCB51\t0x6F07\n0xCB52\t0x6F0E\n0xCB53\t0x6F43\n0xCB54\t0x6F05\n0xCB55\t0x6EFD\n0xCB56\t0x6EF6\n0xCB57\t0x6F39\n0xCB58\t0x6F1C\n0xCB59\t0x6EFC\n0xCB5A\t0x6F3A\n0xCB5B\t0x6F1F\n0xCB5C\t0x6F0D\n0xCB5D\t0x6F1E\n0xCB5E\t0x6F08\n0xCB5F\t0x6F21\n0xCB60\t0x7187\n0xCB61\t0x7190\n0xCB62\t0x7189\n0xCB63\t0x7180\n0xCB64\t0x7185\n0xCB65\t0x7182\n0xCB66\t0x718F\n0xCB67\t0x717B\n0xCB68\t0x7186\n0xCB69\t0x7181\n0xCB6A\t0x7197\n0xCB6B\t0x7244\n0xCB6C\t0x7253\n0xCB6D\t0x7297\n0xCB6E\t0x7295\n0xCB6F\t0x7293\n0xCB70\t0x7343\n0xCB71\t0x734D\n0xCB72\t0x7351\n0xCB73\t0x734C\n0xCB74\t0x7462\n0xCB75\t0x7473\n0xCB76\t0x7471\n0xCB77\t0x7475\n0xCB78\t0x7472\n0xCB79\t0x7467\n0xCB7A\t0x746E\n0xCB7B\t0x7500\n0xCB7C\t0x7502\n0xCB7D\t0x7503\n0xCB7E\t0x757D\n0xCBA1\t0x6C82\n0xCBA2\t0x7076\n0xCBA3\t0x707C\n0xCBA4\t0x707D\n0xCBA5\t0x7078\n0xCBA6\t0x7262\n0xCBA7\t0x7261\n0xCBA8\t0x7260\n0xCBA9\t0x72C4\n0xCBAA\t0x72C2\n0xCBAB\t0x7396\n0xCBAC\t0x752C\n0xCBAD\t0x752B\n0xCBAE\t0x7537\n0xCBAF\t0x7538\n0xCBB0\t0x7682\n0xCBB1\t0x76EF\n0xCBB2\t0x77E3\n0xCBB3\t0x79C1\n0xCBB4\t0x79C0\n0xCBB5\t0x79BF\n0xCBB6\t0x7A76\n0xCBB7\t0x7CFB\n0xCBB8\t0x7F55\n0xCBB9\t0x8096\n0xCBBA\t0x8093\n0xCBBB\t0x809D\n0xCBBC\t0x8098\n0xCBBD\t0x809B\n0xCBBE\t0x809A\n0xCBBF\t0x80B2\n0xCBC0\t0x826F\n0xCBC1\t0x8292\n0xCBC2\t0x828B\n0xCBC3\t0x828D\n0xCBC4\t0x898B\n0xCBC5\t0x89D2\n0xCBC6\t0x8A00\n0xCBC7\t0x8C37\n0xCBC8\t0x8C46\n0xCBC9\t0x8C55\n0xCBCA\t0x8C9D\n0xCBCB\t0x8D64\n0xCBCC\t0x8D70\n0xCBCD\t0x8DB3\n0xCBCE\t0x8EAB\n0xCBCF\t0x8ECA\n0xCBD0\t0x8F9B\n0xCBD1\t0x8FB0\n0xCBD2\t0x8FC2\n0xCBD3\t0x8FC6\n0xCBD4\t0x8FC5\n0xCBD5\t0x8FC4\n0xCBD6\t0x5DE1\n0xCBD7\t0x9091\n0xCBD8\t0x90A2\n0xCBD9\t0x90AA\n0xCBDA\t0x90A6\n0xCBDB\t0x90A3\n0xCBDC\t0x9149\n0xCBDD\t0x91C6\n0xCBDE\t0x91CC\n0xCBDF\t0x9632\n0xCBE0\t0x962E\n0xCBE1\t0x9631\n0xCBE2\t0x962A\n0xCBE3\t0x962C\n0xCBE4\t0x4E26\n0xCBE5\t0x4E56\n0xCBE6\t0x4E73\n0xCBE7\t0x4E8B\n0xCBE8\t0x4E9B\n0xCBE9\t0x4E9E\n0xCBEA\t0x4EAB\n0xCBEB\t0x4EAC\n0xCBEC\t0x4F6F\n0xCBED\t0x4F9D\n0xCBEE\t0x4F8D\n0xCBEF\t0x4F73\n0xCBF0\t0x4F7F\n0xCBF1\t0x4F6C\n0xCBF2\t0x4F9B\n0xCBF3\t0x4F8B\n0xCBF4\t0x4F86\n0xCBF5\t0x4F83\n0xCBF6\t0x4F70\n0xCBF7\t0x4F75\n0xCBF8\t0x4F88\n0xCBF9\t0x4F69\n0xCBFA\t0x4F7B\n0xCBFB\t0x4F96\n0xCBFC\t0x4F7E\n0xCBFD\t0x4F8F\n0xCBFE\t0x4F91\n0xCC21\t0x7590\n0xCC22\t0x7616\n0xCC23\t0x7608\n0xCC24\t0x760C\n0xCC25\t0x7615\n0xCC26\t0x7611\n0xCC27\t0x760A\n0xCC28\t0x7614\n0xCC29\t0x76B8\n0xCC2A\t0x7781\n0xCC2B\t0x777C\n0xCC2C\t0x7785\n0xCC2D\t0x7782\n0xCC2E\t0x776E\n0xCC2F\t0x7780\n0xCC30\t0x776F\n0xCC31\t0x777E\n0xCC32\t0x7783\n0xCC33\t0x78B2\n0xCC34\t0x78AA\n0xCC35\t0x78B4\n0xCC36\t0x78AD\n0xCC37\t0x78A8\n0xCC38\t0x787E\n0xCC39\t0x78AB\n0xCC3A\t0x789E\n0xCC3B\t0x78A5\n0xCC3C\t0x78A0\n0xCC3D\t0x78AC\n0xCC3E\t0x78A2\n0xCC3F\t0x78A4\n0xCC40\t0x7998\n0xCC41\t0x798A\n0xCC42\t0x798B\n0xCC43\t0x7996\n0xCC44\t0x7995\n0xCC45\t0x7994\n0xCC46\t0x7993\n0xCC47\t0x7997\n0xCC48\t0x7988\n0xCC49\t0x7992\n0xCC4A\t0x7990\n0xCC4B\t0x7A2B\n0xCC4C\t0x7A4A\n0xCC4D\t0x7A30\n0xCC4E\t0x7A2F\n0xCC4F\t0x7A28\n0xCC50\t0x7A26\n0xCC51\t0x7AA8\n0xCC52\t0x7AAB\n0xCC53\t0x7AAC\n0xCC54\t0x7AEE\n0xCC55\t0x7B88\n0xCC56\t0x7B9C\n0xCC57\t0x7B8A\n0xCC58\t0x7B91\n0xCC59\t0x7B90\n0xCC5A\t0x7B96\n0xCC5B\t0x7B8D\n0xCC5C\t0x7B8C\n0xCC5D\t0x7B9B\n0xCC5E\t0x7B8E\n0xCC5F\t0x7B85\n0xCC60\t0x7B98\n0xCC61\t0x5284\n0xCC62\t0x7B99\n0xCC63\t0x7BA4\n0xCC64\t0x7B82\n0xCC65\t0x7CBB\n0xCC66\t0x7CBF\n0xCC67\t0x7CBC\n0xCC68\t0x7CBA\n0xCC69\t0x7DA7\n0xCC6A\t0x7DB7\n0xCC6B\t0x7DC2\n0xCC6C\t0x7DA3\n0xCC6D\t0x7DAA\n0xCC6E\t0x7DC1\n0xCC6F\t0x7DC0\n0xCC70\t0x7DC5\n0xCC71\t0x7D9D\n0xCC72\t0x7DCE\n0xCC73\t0x7DC4\n0xCC74\t0x7DC6\n0xCC75\t0x7DCB\n0xCC76\t0x7DCC\n0xCC77\t0x7DAF\n0xCC78\t0x7DB9\n0xCC79\t0x7D96\n0xCC7A\t0x7DBC\n0xCC7B\t0x7D9F\n0xCC7C\t0x7DA6\n0xCC7D\t0x7DAE\n0xCC7E\t0x7DA9\n0xCCA1\t0x4F7A\n0xCCA2\t0x5154\n0xCCA3\t0x5152\n0xCCA4\t0x5155\n0xCCA5\t0x5169\n0xCCA6\t0x5177\n0xCCA7\t0x5176\n0xCCA8\t0x5178\n0xCCA9\t0x51BD\n0xCCAA\t0x51FD\n0xCCAB\t0x523B\n0xCCAC\t0x5238\n0xCCAD\t0x5237\n0xCCAE\t0x523A\n0xCCAF\t0x5230\n0xCCB0\t0x522E\n0xCCB1\t0x5236\n0xCCB2\t0x5241\n0xCCB3\t0x52BE\n0xCCB4\t0x52BB\n0xCCB5\t0x5352\n0xCCB6\t0x5354\n0xCCB7\t0x5353\n0xCCB8\t0x5351\n0xCCB9\t0x5366\n0xCCBA\t0x5377\n0xCCBB\t0x5378\n0xCCBC\t0x5379\n0xCCBD\t0x53D6\n0xCCBE\t0x53D4\n0xCCBF\t0x53D7\n0xCCC0\t0x5473\n0xCCC1\t0x5475\n0xCCC2\t0x5496\n0xCCC3\t0x5478\n0xCCC4\t0x5495\n0xCCC5\t0x5480\n0xCCC6\t0x547B\n0xCCC7\t0x5477\n0xCCC8\t0x5484\n0xCCC9\t0x5492\n0xCCCA\t0x5486\n0xCCCB\t0x547C\n0xCCCC\t0x5490\n0xCCCD\t0x5471\n0xCCCE\t0x5476\n0xCCCF\t0x548C\n0xCCD0\t0x549A\n0xCCD1\t0x5462\n0xCCD2\t0x5468\n0xCCD3\t0x548B\n0xCCD4\t0x547D\n0xCCD5\t0x548E\n0xCCD6\t0x56FA\n0xCCD7\t0x5783\n0xCCD8\t0x5777\n0xCCD9\t0x576A\n0xCCDA\t0x5769\n0xCCDB\t0x5761\n0xCCDC\t0x5766\n0xCCDD\t0x5764\n0xCCDE\t0x577C\n0xCCDF\t0x591C\n0xCCE0\t0x5949\n0xCCE1\t0x5947\n0xCCE2\t0x5948\n0xCCE3\t0x5944\n0xCCE4\t0x5954\n0xCCE5\t0x59BE\n0xCCE6\t0x59BB\n0xCCE7\t0x59D4\n0xCCE8\t0x59B9\n0xCCE9\t0x59AE\n0xCCEA\t0x59D1\n0xCCEB\t0x59C6\n0xCCEC\t0x59D0\n0xCCED\t0x59CD\n0xCCEE\t0x59CB\n0xCCEF\t0x59D3\n0xCCF0\t0x59CA\n0xCCF1\t0x59AF\n0xCCF2\t0x59B3\n0xCCF3\t0x59D2\n0xCCF4\t0x59C5\n0xCCF5\t0x5B5F\n0xCCF6\t0x5B64\n0xCCF7\t0x5B63\n0xCCF8\t0x5B97\n0xCCF9\t0x5B9A\n0xCCFA\t0x5B98\n0xCCFB\t0x5B9C\n0xCCFC\t0x5B99\n0xCCFD\t0x5B9B\n0xCCFE\t0x5C1A\n0xCD21\t0x7DA1\n0xCD22\t0x7DC9\n0xCD23\t0x7F73\n0xCD24\t0x7FE2\n0xCD25\t0x7FE3\n0xCD26\t0x7FE5\n0xCD27\t0x7FDE\n0xCD28\t0x8024\n0xCD29\t0x805D\n0xCD2A\t0x805C\n0xCD2B\t0x8189\n0xCD2C\t0x8186\n0xCD2D\t0x8183\n0xCD2E\t0x8187\n0xCD2F\t0x818D\n0xCD30\t0x818C\n0xCD31\t0x818B\n0xCD32\t0x8215\n0xCD33\t0x8497\n0xCD34\t0x84A4\n0xCD35\t0x84A1\n0xCD36\t0x849F\n0xCD37\t0x84BA\n0xCD38\t0x84CE\n0xCD39\t0x84C2\n0xCD3A\t0x84AC\n0xCD3B\t0x84AE\n0xCD3C\t0x84AB\n0xCD3D\t0x84B9\n0xCD3E\t0x84B4\n0xCD3F\t0x84C1\n0xCD40\t0x84CD\n0xCD41\t0x84AA\n0xCD42\t0x849A\n0xCD43\t0x84B1\n0xCD44\t0x84D0\n0xCD45\t0x849D\n0xCD46\t0x84A7\n0xCD47\t0x84BB\n0xCD48\t0x84A2\n0xCD49\t0x8494\n0xCD4A\t0x84C7\n0xCD4B\t0x84CC\n0xCD4C\t0x849B\n0xCD4D\t0x84A9\n0xCD4E\t0x84AF\n0xCD4F\t0x84A8\n0xCD50\t0x84D6\n0xCD51\t0x8498\n0xCD52\t0x84B6\n0xCD53\t0x84CF\n0xCD54\t0x84A0\n0xCD55\t0x84D7\n0xCD56\t0x84D4\n0xCD57\t0x84D2\n0xCD58\t0x84DB\n0xCD59\t0x84B0\n0xCD5A\t0x8491\n0xCD5B\t0x8661\n0xCD5C\t0x8733\n0xCD5D\t0x8723\n0xCD5E\t0x8728\n0xCD5F\t0x876B\n0xCD60\t0x8740\n0xCD61\t0x872E\n0xCD62\t0x871E\n0xCD63\t0x8721\n0xCD64\t0x8719\n0xCD65\t0x871B\n0xCD66\t0x8743\n0xCD67\t0x872C\n0xCD68\t0x8741\n0xCD69\t0x873E\n0xCD6A\t0x8746\n0xCD6B\t0x8720\n0xCD6C\t0x8732\n0xCD6D\t0x872A\n0xCD6E\t0x872D\n0xCD6F\t0x873C\n0xCD70\t0x8712\n0xCD71\t0x873A\n0xCD72\t0x8731\n0xCD73\t0x8735\n0xCD74\t0x8742\n0xCD75\t0x8726\n0xCD76\t0x8727\n0xCD77\t0x8738\n0xCD78\t0x8724\n0xCD79\t0x871A\n0xCD7A\t0x8730\n0xCD7B\t0x8711\n0xCD7C\t0x88F7\n0xCD7D\t0x88E7\n0xCD7E\t0x88F1\n0xCDA1\t0x5C48\n0xCDA2\t0x5C45\n0xCDA3\t0x5C46\n0xCDA4\t0x5CB7\n0xCDA5\t0x5CA1\n0xCDA6\t0x5CB8\n0xCDA7\t0x5CA9\n0xCDA8\t0x5CAB\n0xCDA9\t0x5CB1\n0xCDAA\t0x5CB3\n0xCDAB\t0x5E18\n0xCDAC\t0x5E1A\n0xCDAD\t0x5E16\n0xCDAE\t0x5E15\n0xCDAF\t0x5E1B\n0xCDB0\t0x5E11\n0xCDB1\t0x5E78\n0xCDB2\t0x5E9A\n0xCDB3\t0x5E97\n0xCDB4\t0x5E9C\n0xCDB5\t0x5E95\n0xCDB6\t0x5E96\n0xCDB7\t0x5EF6\n0xCDB8\t0x5F26\n0xCDB9\t0x5F27\n0xCDBA\t0x5F29\n0xCDBB\t0x5F80\n0xCDBC\t0x5F81\n0xCDBD\t0x5F7F\n0xCDBE\t0x5F7C\n0xCDBF\t0x5FDD\n0xCDC0\t0x5FE0\n0xCDC1\t0x5FFD\n0xCDC2\t0x5FF5\n0xCDC3\t0x5FFF\n0xCDC4\t0x600F\n0xCDC5\t0x6014\n0xCDC6\t0x602F\n0xCDC7\t0x6035\n0xCDC8\t0x6016\n0xCDC9\t0x602A\n0xCDCA\t0x6015\n0xCDCB\t0x6021\n0xCDCC\t0x6027\n0xCDCD\t0x6029\n0xCDCE\t0x602B\n0xCDCF\t0x601B\n0xCDD0\t0x6216\n0xCDD1\t0x6215\n0xCDD2\t0x623F\n0xCDD3\t0x623E\n0xCDD4\t0x6240\n0xCDD5\t0x627F\n0xCDD6\t0x62C9\n0xCDD7\t0x62CC\n0xCDD8\t0x62C4\n0xCDD9\t0x62BF\n0xCDDA\t0x62C2\n0xCDDB\t0x62B9\n0xCDDC\t0x62D2\n0xCDDD\t0x62DB\n0xCDDE\t0x62AB\n0xCDDF\t0x62D3\n0xCDE0\t0x62D4\n0xCDE1\t0x62CB\n0xCDE2\t0x62C8\n0xCDE3\t0x62A8\n0xCDE4\t0x62BD\n0xCDE5\t0x62BC\n0xCDE6\t0x62D0\n0xCDE7\t0x62D9\n0xCDE8\t0x62C7\n0xCDE9\t0x62CD\n0xCDEA\t0x62B5\n0xCDEB\t0x62DA\n0xCDEC\t0x62B1\n0xCDED\t0x62D8\n0xCDEE\t0x62D6\n0xCDEF\t0x62D7\n0xCDF0\t0x62C6\n0xCDF1\t0x62AC\n0xCDF2\t0x62CE\n0xCDF3\t0x653E\n0xCDF4\t0x65A7\n0xCDF5\t0x65BC\n0xCDF6\t0x65FA\n0xCDF7\t0x6614\n0xCDF8\t0x6613\n0xCDF9\t0x660C\n0xCDFA\t0x6606\n0xCDFB\t0x6602\n0xCDFC\t0x660E\n0xCDFD\t0x6600\n0xCDFE\t0x660F\n0xCE21\t0x88F2\n0xCE22\t0x88FA\n0xCE23\t0x88FE\n0xCE24\t0x88EE\n0xCE25\t0x88FC\n0xCE26\t0x88F6\n0xCE27\t0x88FB\n0xCE28\t0x88F0\n0xCE29\t0x88EC\n0xCE2A\t0x88EB\n0xCE2B\t0x899D\n0xCE2C\t0x89A1\n0xCE2D\t0x899F\n0xCE2E\t0x899E\n0xCE2F\t0x89E9\n0xCE30\t0x89EB\n0xCE31\t0x89E8\n0xCE32\t0x8AAB\n0xCE33\t0x8A99\n0xCE34\t0x8A8B\n0xCE35\t0x8A92\n0xCE36\t0x8A8F\n0xCE37\t0x8A96\n0xCE38\t0x8C3D\n0xCE39\t0x8C68\n0xCE3A\t0x8C69\n0xCE3B\t0x8CD5\n0xCE3C\t0x8CCF\n0xCE3D\t0x8CD7\n0xCE3E\t0x8D96\n0xCE3F\t0x8E09\n0xCE40\t0x8E02\n0xCE41\t0x8DFF\n0xCE42\t0x8E0D\n0xCE43\t0x8DFD\n0xCE44\t0x8E0A\n0xCE45\t0x8E03\n0xCE46\t0x8E07\n0xCE47\t0x8E06\n0xCE48\t0x8E05\n0xCE49\t0x8DFE\n0xCE4A\t0x8E00\n0xCE4B\t0x8E04\n0xCE4C\t0x8F10\n0xCE4D\t0x8F11\n0xCE4E\t0x8F0E\n0xCE4F\t0x8F0D\n0xCE50\t0x9123\n0xCE51\t0x911C\n0xCE52\t0x9120\n0xCE53\t0x9122\n0xCE54\t0x911F\n0xCE55\t0x911D\n0xCE56\t0x911A\n0xCE57\t0x9124\n0xCE58\t0x9121\n0xCE59\t0x911B\n0xCE5A\t0x917A\n0xCE5B\t0x9172\n0xCE5C\t0x9179\n0xCE5D\t0x9173\n0xCE5E\t0x92A5\n0xCE5F\t0x92A4\n0xCE60\t0x9276\n0xCE61\t0x929B\n0xCE62\t0x927A\n0xCE63\t0x92A0\n0xCE64\t0x9294\n0xCE65\t0x92AA\n0xCE66\t0x928D\n0xCE67\t0x92A6\n0xCE68\t0x929A\n0xCE69\t0x92AB\n0xCE6A\t0x9279\n0xCE6B\t0x9297\n0xCE6C\t0x927F\n0xCE6D\t0x92A3\n0xCE6E\t0x92EE\n0xCE6F\t0x928E\n0xCE70\t0x9282\n0xCE71\t0x9295\n0xCE72\t0x92A2\n0xCE73\t0x927D\n0xCE74\t0x9288\n0xCE75\t0x92A1\n0xCE76\t0x928A\n0xCE77\t0x9286\n0xCE78\t0x928C\n0xCE79\t0x9299\n0xCE7A\t0x92A7\n0xCE7B\t0x927E\n0xCE7C\t0x9287\n0xCE7D\t0x92A9\n0xCE7E\t0x929D\n0xCEA1\t0x6615\n0xCEA2\t0x660A\n0xCEA3\t0x6607\n0xCEA4\t0x670D\n0xCEA5\t0x670B\n0xCEA6\t0x676D\n0xCEA7\t0x678B\n0xCEA8\t0x6795\n0xCEA9\t0x6771\n0xCEAA\t0x679C\n0xCEAB\t0x6773\n0xCEAC\t0x6777\n0xCEAD\t0x6787\n0xCEAE\t0x679D\n0xCEAF\t0x6797\n0xCEB0\t0x676F\n0xCEB1\t0x6770\n0xCEB2\t0x677F\n0xCEB3\t0x6789\n0xCEB4\t0x677E\n0xCEB5\t0x6790\n0xCEB6\t0x6775\n0xCEB7\t0x679A\n0xCEB8\t0x6793\n0xCEB9\t0x677C\n0xCEBA\t0x676A\n0xCEBB\t0x6772\n0xCEBC\t0x6B23\n0xCEBD\t0x6B66\n0xCEBE\t0x6B67\n0xCEBF\t0x6B7F\n0xCEC0\t0x6C13\n0xCEC1\t0x6C1B\n0xCEC2\t0x6CE3\n0xCEC3\t0x6CE8\n0xCEC4\t0x6CF3\n0xCEC5\t0x6CB1\n0xCEC6\t0x6CCC\n0xCEC7\t0x6CE5\n0xCEC8\t0x6CB3\n0xCEC9\t0x6CBD\n0xCECA\t0x6CBE\n0xCECB\t0x6CBC\n0xCECC\t0x6CE2\n0xCECD\t0x6CAB\n0xCECE\t0x6CD5\n0xCECF\t0x6CD3\n0xCED0\t0x6CB8\n0xCED1\t0x6CC4\n0xCED2\t0x6CB9\n0xCED3\t0x6CC1\n0xCED4\t0x6CAE\n0xCED5\t0x6CD7\n0xCED6\t0x6CC5\n0xCED7\t0x6CF1\n0xCED8\t0x6CBF\n0xCED9\t0x6CBB\n0xCEDA\t0x6CE1\n0xCEDB\t0x6CDB\n0xCEDC\t0x6CCA\n0xCEDD\t0x6CAC\n0xCEDE\t0x6CEF\n0xCEDF\t0x6CDC\n0xCEE0\t0x6CD6\n0xCEE1\t0x6CE0\n0xCEE2\t0x7095\n0xCEE3\t0x708E\n0xCEE4\t0x7092\n0xCEE5\t0x708A\n0xCEE6\t0x7099\n0xCEE7\t0x722C\n0xCEE8\t0x722D\n0xCEE9\t0x7238\n0xCEEA\t0x7248\n0xCEEB\t0x7267\n0xCEEC\t0x7269\n0xCEED\t0x72C0\n0xCEEE\t0x72CE\n0xCEEF\t0x72D9\n0xCEF0\t0x72D7\n0xCEF1\t0x72D0\n0xCEF2\t0x73A9\n0xCEF3\t0x73A8\n0xCEF4\t0x739F\n0xCEF5\t0x73AB\n0xCEF6\t0x73A5\n0xCEF7\t0x753D\n0xCEF8\t0x759D\n0xCEF9\t0x7599\n0xCEFA\t0x759A\n0xCEFB\t0x7684\n0xCEFC\t0x76C2\n0xCEFD\t0x76F2\n0xCEFE\t0x76F4\n0xCF21\t0x928B\n0xCF22\t0x922D\n0xCF23\t0x969E\n0xCF24\t0x96A1\n0xCF25\t0x96FF\n0xCF26\t0x9758\n0xCF27\t0x977D\n0xCF28\t0x977A\n0xCF29\t0x977E\n0xCF2A\t0x9783\n0xCF2B\t0x9780\n0xCF2C\t0x9782\n0xCF2D\t0x977B\n0xCF2E\t0x9784\n0xCF2F\t0x9781\n0xCF30\t0x977F\n0xCF31\t0x97CE\n0xCF32\t0x97CD\n0xCF33\t0x9816\n0xCF34\t0x98AD\n0xCF35\t0x98AE\n0xCF36\t0x9902\n0xCF37\t0x9900\n0xCF38\t0x9907\n0xCF39\t0x999D\n0xCF3A\t0x999C\n0xCF3B\t0x99C3\n0xCF3C\t0x99B9\n0xCF3D\t0x99BB\n0xCF3E\t0x99BA\n0xCF3F\t0x99C2\n0xCF40\t0x99BD\n0xCF41\t0x99C7\n0xCF42\t0x9AB1\n0xCF43\t0x9AE3\n0xCF44\t0x9AE7\n0xCF45\t0x9B3E\n0xCF46\t0x9B3F\n0xCF47\t0x9B60\n0xCF48\t0x9B61\n0xCF49\t0x9B5F\n0xCF4A\t0x9CF1\n0xCF4B\t0x9CF2\n0xCF4C\t0x9CF5\n0xCF4D\t0x9EA7\n0xCF4E\t0x50FF\n0xCF4F\t0x5103\n0xCF50\t0x5130\n0xCF51\t0x50F8\n0xCF52\t0x5106\n0xCF53\t0x5107\n0xCF54\t0x50F6\n0xCF55\t0x50FE\n0xCF56\t0x510B\n0xCF57\t0x510C\n0xCF58\t0x50FD\n0xCF59\t0x510A\n0xCF5A\t0x528B\n0xCF5B\t0x528C\n0xCF5C\t0x52F1\n0xCF5D\t0x52EF\n0xCF5E\t0x5648\n0xCF5F\t0x5642\n0xCF60\t0x564C\n0xCF61\t0x5635\n0xCF62\t0x5641\n0xCF63\t0x564A\n0xCF64\t0x5649\n0xCF65\t0x5646\n0xCF66\t0x5658\n0xCF67\t0x565A\n0xCF68\t0x5640\n0xCF69\t0x5633\n0xCF6A\t0x563D\n0xCF6B\t0x562C\n0xCF6C\t0x563E\n0xCF6D\t0x5638\n0xCF6E\t0x562A\n0xCF6F\t0x563A\n0xCF70\t0x571A\n0xCF71\t0x58AB\n0xCF72\t0x589D\n0xCF73\t0x58B1\n0xCF74\t0x58A0\n0xCF75\t0x58A3\n0xCF76\t0x58AF\n0xCF77\t0x58AC\n0xCF78\t0x58A5\n0xCF79\t0x58A1\n0xCF7A\t0x58FF\n0xCF7B\t0x5AFF\n0xCF7C\t0x5AF4\n0xCF7D\t0x5AFD\n0xCF7E\t0x5AF7\n0xCFA1\t0x77E5\n0xCFA2\t0x77FD\n0xCFA3\t0x793E\n0xCFA4\t0x7940\n0xCFA5\t0x7941\n0xCFA6\t0x79C9\n0xCFA7\t0x79C8\n0xCFA8\t0x7A7A\n0xCFA9\t0x7A79\n0xCFAA\t0x7AFA\n0xCFAB\t0x7CFE\n0xCFAC\t0x7F54\n0xCFAD\t0x7F8C\n0xCFAE\t0x7F8B\n0xCFAF\t0x8005\n0xCFB0\t0x80BA\n0xCFB1\t0x80A5\n0xCFB2\t0x80A2\n0xCFB3\t0x80B1\n0xCFB4\t0x80A1\n0xCFB5\t0x80AB\n0xCFB6\t0x80A9\n0xCFB7\t0x80B4\n0xCFB8\t0x80AA\n0xCFB9\t0x80AF\n0xCFBA\t0x81E5\n0xCFBB\t0x81FE\n0xCFBC\t0x820D\n0xCFBD\t0x82B3\n0xCFBE\t0x829D\n0xCFBF\t0x8299\n0xCFC0\t0x82AD\n0xCFC1\t0x82BD\n0xCFC2\t0x829F\n0xCFC3\t0x82B9\n0xCFC4\t0x82B1\n0xCFC5\t0x82AC\n0xCFC6\t0x82A5\n0xCFC7\t0x82AF\n0xCFC8\t0x82B8\n0xCFC9\t0x82A3\n0xCFCA\t0x82B0\n0xCFCB\t0x82BE\n0xCFCC\t0x82B7\n0xCFCD\t0x864E\n0xCFCE\t0x8671\n0xCFCF\t0x521D\n0xCFD0\t0x8868\n0xCFD1\t0x8ECB\n0xCFD2\t0x8FCE\n0xCFD3\t0x8FD4\n0xCFD4\t0x8FD1\n0xCFD5\t0x90B5\n0xCFD6\t0x90B8\n0xCFD7\t0x90B1\n0xCFD8\t0x90B6\n0xCFD9\t0x91C7\n0xCFDA\t0x91D1\n0xCFDB\t0x9577\n0xCFDC\t0x9580\n0xCFDD\t0x961C\n0xCFDE\t0x9640\n0xCFDF\t0x963F\n0xCFE0\t0x963B\n0xCFE1\t0x9644\n0xCFE2\t0x9642\n0xCFE3\t0x96B9\n0xCFE4\t0x96E8\n0xCFE5\t0x9752\n0xCFE6\t0x975E\n0xCFE7\t0x4E9F\n0xCFE8\t0x4EAD\n0xCFE9\t0x4EAE\n0xCFEA\t0x4FE1\n0xCFEB\t0x4FB5\n0xCFEC\t0x4FAF\n0xCFED\t0x4FBF\n0xCFEE\t0x4FE0\n0xCFEF\t0x4FD1\n0xCFF0\t0x4FCF\n0xCFF1\t0x4FDD\n0xCFF2\t0x4FC3\n0xCFF3\t0x4FB6\n0xCFF4\t0x4FD8\n0xCFF5\t0x4FDF\n0xCFF6\t0x4FCA\n0xCFF7\t0x4FD7\n0xCFF8\t0x4FAE\n0xCFF9\t0x4FD0\n0xCFFA\t0x4FC4\n0xCFFB\t0x4FC2\n0xCFFC\t0x4FDA\n0xCFFD\t0x4FCE\n0xCFFE\t0x4FDE\n0xD021\t0x5AF6\n0xD022\t0x5B03\n0xD023\t0x5AF8\n0xD024\t0x5B02\n0xD025\t0x5AF9\n0xD026\t0x5B01\n0xD027\t0x5B07\n0xD028\t0x5B05\n0xD029\t0x5B0F\n0xD02A\t0x5C67\n0xD02B\t0x5D99\n0xD02C\t0x5D97\n0xD02D\t0x5D9F\n0xD02E\t0x5D92\n0xD02F\t0x5DA2\n0xD030\t0x5D93\n0xD031\t0x5D95\n0xD032\t0x5DA0\n0xD033\t0x5D9C\n0xD034\t0x5DA1\n0xD035\t0x5D9A\n0xD036\t0x5D9E\n0xD037\t0x5E69\n0xD038\t0x5E5D\n0xD039\t0x5E60\n0xD03A\t0x5E5C\n0xD03B\t0x7DF3\n0xD03C\t0x5EDB\n0xD03D\t0x5EDE\n0xD03E\t0x5EE1\n0xD03F\t0x5F49\n0xD040\t0x5FB2\n0xD041\t0x618B\n0xD042\t0x6183\n0xD043\t0x6179\n0xD044\t0x61B1\n0xD045\t0x61B0\n0xD046\t0x61A2\n0xD047\t0x6189\n0xD048\t0x619B\n0xD049\t0x6193\n0xD04A\t0x61AF\n0xD04B\t0x61AD\n0xD04C\t0x619F\n0xD04D\t0x6192\n0xD04E\t0x61AA\n0xD04F\t0x61A1\n0xD050\t0x618D\n0xD051\t0x6166\n0xD052\t0x61B3\n0xD053\t0x622D\n0xD054\t0x646E\n0xD055\t0x6470\n0xD056\t0x6496\n0xD057\t0x64A0\n0xD058\t0x6485\n0xD059\t0x6497\n0xD05A\t0x649C\n0xD05B\t0x648F\n0xD05C\t0x648B\n0xD05D\t0x648A\n0xD05E\t0x648C\n0xD05F\t0x64A3\n0xD060\t0x649F\n0xD061\t0x6468\n0xD062\t0x64B1\n0xD063\t0x6498\n0xD064\t0x6576\n0xD065\t0x657A\n0xD066\t0x6579\n0xD067\t0x657B\n0xD068\t0x65B2\n0xD069\t0x65B3\n0xD06A\t0x66B5\n0xD06B\t0x66B0\n0xD06C\t0x66A9\n0xD06D\t0x66B2\n0xD06E\t0x66B7\n0xD06F\t0x66AA\n0xD070\t0x66AF\n0xD071\t0x6A00\n0xD072\t0x6A06\n0xD073\t0x6A17\n0xD074\t0x69E5\n0xD075\t0x69F8\n0xD076\t0x6A15\n0xD077\t0x69F1\n0xD078\t0x69E4\n0xD079\t0x6A20\n0xD07A\t0x69FF\n0xD07B\t0x69EC\n0xD07C\t0x69E2\n0xD07D\t0x6A1B\n0xD07E\t0x6A1D\n0xD0A1\t0x4FB7\n0xD0A2\t0x5157\n0xD0A3\t0x5192\n0xD0A4\t0x5191\n0xD0A5\t0x51A0\n0xD0A6\t0x524E\n0xD0A7\t0x5243\n0xD0A8\t0x524A\n0xD0A9\t0x524D\n0xD0AA\t0x524C\n0xD0AB\t0x524B\n0xD0AC\t0x5247\n0xD0AD\t0x52C7\n0xD0AE\t0x52C9\n0xD0AF\t0x52C3\n0xD0B0\t0x52C1\n0xD0B1\t0x530D\n0xD0B2\t0x5357\n0xD0B3\t0x537B\n0xD0B4\t0x539A\n0xD0B5\t0x53DB\n0xD0B6\t0x54AC\n0xD0B7\t0x54C0\n0xD0B8\t0x54A8\n0xD0B9\t0x54CE\n0xD0BA\t0x54C9\n0xD0BB\t0x54B8\n0xD0BC\t0x54A6\n0xD0BD\t0x54B3\n0xD0BE\t0x54C7\n0xD0BF\t0x54C2\n0xD0C0\t0x54BD\n0xD0C1\t0x54AA\n0xD0C2\t0x54C1\n0xD0C3\t0x54C4\n0xD0C4\t0x54C8\n0xD0C5\t0x54AF\n0xD0C6\t0x54AB\n0xD0C7\t0x54B1\n0xD0C8\t0x54BB\n0xD0C9\t0x54A9\n0xD0CA\t0x54A7\n0xD0CB\t0x54BF\n0xD0CC\t0x56FF\n0xD0CD\t0x5782\n0xD0CE\t0x578B\n0xD0CF\t0x57A0\n0xD0D0\t0x57A3\n0xD0D1\t0x57A2\n0xD0D2\t0x57CE\n0xD0D3\t0x57AE\n0xD0D4\t0x5793\n0xD0D5\t0x5955\n0xD0D6\t0x5951\n0xD0D7\t0x594F\n0xD0D8\t0x594E\n0xD0D9\t0x5950\n0xD0DA\t0x59DC\n0xD0DB\t0x59D8\n0xD0DC\t0x59FF\n0xD0DD\t0x59E3\n0xD0DE\t0x59E8\n0xD0DF\t0x5A03\n0xD0E0\t0x59E5\n0xD0E1\t0x59EA\n0xD0E2\t0x59DA\n0xD0E3\t0x59E6\n0xD0E4\t0x5A01\n0xD0E5\t0x59FB\n0xD0E6\t0x5B69\n0xD0E7\t0x5BA3\n0xD0E8\t0x5BA6\n0xD0E9\t0x5BA4\n0xD0EA\t0x5BA2\n0xD0EB\t0x5BA5\n0xD0EC\t0x5C01\n0xD0ED\t0x5C4E\n0xD0EE\t0x5C4F\n0xD0EF\t0x5C4D\n0xD0F0\t0x5C4B\n0xD0F1\t0x5CD9\n0xD0F2\t0x5CD2\n0xD0F3\t0x5DF7\n0xD0F4\t0x5E1D\n0xD0F5\t0x5E25\n0xD0F6\t0x5E1F\n0xD0F7\t0x5E7D\n0xD0F8\t0x5EA0\n0xD0F9\t0x5EA6\n0xD0FA\t0x5EFA\n0xD0FB\t0x5F08\n0xD0FC\t0x5F2D\n0xD0FD\t0x5F65\n0xD0FE\t0x5F88\n0xD121\t0x69FE\n0xD122\t0x6A27\n0xD123\t0x69F2\n0xD124\t0x69EE\n0xD125\t0x6A14\n0xD126\t0x69F7\n0xD127\t0x69E7\n0xD128\t0x6A40\n0xD129\t0x6A08\n0xD12A\t0x69E6\n0xD12B\t0x69FB\n0xD12C\t0x6A0D\n0xD12D\t0x69FC\n0xD12E\t0x69EB\n0xD12F\t0x6A09\n0xD130\t0x6A04\n0xD131\t0x6A18\n0xD132\t0x6A25\n0xD133\t0x6A0F\n0xD134\t0x69F6\n0xD135\t0x6A26\n0xD136\t0x6A07\n0xD137\t0x69F4\n0xD138\t0x6A16\n0xD139\t0x6B51\n0xD13A\t0x6BA5\n0xD13B\t0x6BA3\n0xD13C\t0x6BA2\n0xD13D\t0x6BA6\n0xD13E\t0x6C01\n0xD13F\t0x6C00\n0xD140\t0x6BFF\n0xD141\t0x6C02\n0xD142\t0x6F41\n0xD143\t0x6F26\n0xD144\t0x6F7E\n0xD145\t0x6F87\n0xD146\t0x6FC6\n0xD147\t0x6F92\n0xD148\t0x6F8D\n0xD149\t0x6F89\n0xD14A\t0x6F8C\n0xD14B\t0x6F62\n0xD14C\t0x6F4F\n0xD14D\t0x6F85\n0xD14E\t0x6F5A\n0xD14F\t0x6F96\n0xD150\t0x6F76\n0xD151\t0x6F6C\n0xD152\t0x6F82\n0xD153\t0x6F55\n0xD154\t0x6F72\n0xD155\t0x6F52\n0xD156\t0x6F50\n0xD157\t0x6F57\n0xD158\t0x6F94\n0xD159\t0x6F93\n0xD15A\t0x6F5D\n0xD15B\t0x6F00\n0xD15C\t0x6F61\n0xD15D\t0x6F6B\n0xD15E\t0x6F7D\n0xD15F\t0x6F67\n0xD160\t0x6F90\n0xD161\t0x6F53\n0xD162\t0x6F8B\n0xD163\t0x6F69\n0xD164\t0x6F7F\n0xD165\t0x6F95\n0xD166\t0x6F63\n0xD167\t0x6F77\n0xD168\t0x6F6A\n0xD169\t0x6F7B\n0xD16A\t0x71B2\n0xD16B\t0x71AF\n0xD16C\t0x719B\n0xD16D\t0x71B0\n0xD16E\t0x71A0\n0xD16F\t0x719A\n0xD170\t0x71A9\n0xD171\t0x71B5\n0xD172\t0x719D\n0xD173\t0x71A5\n0xD174\t0x719E\n0xD175\t0x71A4\n0xD176\t0x71A1\n0xD177\t0x71AA\n0xD178\t0x719C\n0xD179\t0x71A7\n0xD17A\t0x71B3\n0xD17B\t0x7298\n0xD17C\t0x729A\n0xD17D\t0x7358\n0xD17E\t0x7352\n0xD1A1\t0x5F85\n0xD1A2\t0x5F8A\n0xD1A3\t0x5F8B\n0xD1A4\t0x5F87\n0xD1A5\t0x5F8C\n0xD1A6\t0x5F89\n0xD1A7\t0x6012\n0xD1A8\t0x601D\n0xD1A9\t0x6020\n0xD1AA\t0x6025\n0xD1AB\t0x600E\n0xD1AC\t0x6028\n0xD1AD\t0x604D\n0xD1AE\t0x6070\n0xD1AF\t0x6068\n0xD1B0\t0x6062\n0xD1B1\t0x6046\n0xD1B2\t0x6043\n0xD1B3\t0x606C\n0xD1B4\t0x606B\n0xD1B5\t0x606A\n0xD1B6\t0x6064\n0xD1B7\t0x6241\n0xD1B8\t0x62DC\n0xD1B9\t0x6316\n0xD1BA\t0x6309\n0xD1BB\t0x62FC\n0xD1BC\t0x62ED\n0xD1BD\t0x6301\n0xD1BE\t0x62EE\n0xD1BF\t0x62FD\n0xD1C0\t0x6307\n0xD1C1\t0x62F1\n0xD1C2\t0x62F7\n0xD1C3\t0x62EF\n0xD1C4\t0x62EC\n0xD1C5\t0x62FE\n0xD1C6\t0x62F4\n0xD1C7\t0x6311\n0xD1C8\t0x6302\n0xD1C9\t0x653F\n0xD1CA\t0x6545\n0xD1CB\t0x65AB\n0xD1CC\t0x65BD\n0xD1CD\t0x65E2\n0xD1CE\t0x6625\n0xD1CF\t0x662D\n0xD1D0\t0x6620\n0xD1D1\t0x6627\n0xD1D2\t0x662F\n0xD1D3\t0x661F\n0xD1D4\t0x6628\n0xD1D5\t0x6631\n0xD1D6\t0x6624\n0xD1D7\t0x66F7\n0xD1D8\t0x67FF\n0xD1D9\t0x67D3\n0xD1DA\t0x67F1\n0xD1DB\t0x67D4\n0xD1DC\t0x67D0\n0xD1DD\t0x67EC\n0xD1DE\t0x67B6\n0xD1DF\t0x67AF\n0xD1E0\t0x67F5\n0xD1E1\t0x67E9\n0xD1E2\t0x67EF\n0xD1E3\t0x67C4\n0xD1E4\t0x67D1\n0xD1E5\t0x67B4\n0xD1E6\t0x67DA\n0xD1E7\t0x67E5\n0xD1E8\t0x67B8\n0xD1E9\t0x67CF\n0xD1EA\t0x67DE\n0xD1EB\t0x67F3\n0xD1EC\t0x67B0\n0xD1ED\t0x67D9\n0xD1EE\t0x67E2\n0xD1EF\t0x67DD\n0xD1F0\t0x67D2\n0xD1F1\t0x6B6A\n0xD1F2\t0x6B83\n0xD1F3\t0x6B86\n0xD1F4\t0x6BB5\n0xD1F5\t0x6BD2\n0xD1F6\t0x6BD7\n0xD1F7\t0x6C1F\n0xD1F8\t0x6CC9\n0xD1F9\t0x6D0B\n0xD1FA\t0x6D32\n0xD1FB\t0x6D2A\n0xD1FC\t0x6D41\n0xD1FD\t0x6D25\n0xD1FE\t0x6D0C\n0xD221\t0x735E\n0xD222\t0x735F\n0xD223\t0x7360\n0xD224\t0x735D\n0xD225\t0x735B\n0xD226\t0x7361\n0xD227\t0x735A\n0xD228\t0x7359\n0xD229\t0x7362\n0xD22A\t0x7487\n0xD22B\t0x7489\n0xD22C\t0x748A\n0xD22D\t0x7486\n0xD22E\t0x7481\n0xD22F\t0x747D\n0xD230\t0x7485\n0xD231\t0x7488\n0xD232\t0x747C\n0xD233\t0x7479\n0xD234\t0x7508\n0xD235\t0x7507\n0xD236\t0x757E\n0xD237\t0x7625\n0xD238\t0x761E\n0xD239\t0x7619\n0xD23A\t0x761D\n0xD23B\t0x761C\n0xD23C\t0x7623\n0xD23D\t0x761A\n0xD23E\t0x7628\n0xD23F\t0x761B\n0xD240\t0x769C\n0xD241\t0x769D\n0xD242\t0x769E\n0xD243\t0x769B\n0xD244\t0x778D\n0xD245\t0x778F\n0xD246\t0x7789\n0xD247\t0x7788\n0xD248\t0x78CD\n0xD249\t0x78BB\n0xD24A\t0x78CF\n0xD24B\t0x78CC\n0xD24C\t0x78D1\n0xD24D\t0x78CE\n0xD24E\t0x78D4\n0xD24F\t0x78C8\n0xD250\t0x78C3\n0xD251\t0x78C4\n0xD252\t0x78C9\n0xD253\t0x799A\n0xD254\t0x79A1\n0xD255\t0x79A0\n0xD256\t0x799C\n0xD257\t0x79A2\n0xD258\t0x799B\n0xD259\t0x6B76\n0xD25A\t0x7A39\n0xD25B\t0x7AB2\n0xD25C\t0x7AB4\n0xD25D\t0x7AB3\n0xD25E\t0x7BB7\n0xD25F\t0x7BCB\n0xD260\t0x7BBE\n0xD261\t0x7BAC\n0xD262\t0x7BCE\n0xD263\t0x7BAF\n0xD264\t0x7BB9\n0xD265\t0x7BCA\n0xD266\t0x7BB5\n0xD267\t0x7CC5\n0xD268\t0x7CC8\n0xD269\t0x7CCC\n0xD26A\t0x7CCB\n0xD26B\t0x7DF7\n0xD26C\t0x7DDB\n0xD26D\t0x7DEA\n0xD26E\t0x7DE7\n0xD26F\t0x7DD7\n0xD270\t0x7DE1\n0xD271\t0x7E03\n0xD272\t0x7DFA\n0xD273\t0x7DE6\n0xD274\t0x7DF6\n0xD275\t0x7DF1\n0xD276\t0x7DF0\n0xD277\t0x7DEE\n0xD278\t0x7DDF\n0xD279\t0x7F76\n0xD27A\t0x7FAC\n0xD27B\t0x7FB0\n0xD27C\t0x7FAD\n0xD27D\t0x7FED\n0xD27E\t0x7FEB\n0xD2A1\t0x6D31\n0xD2A2\t0x6D1E\n0xD2A3\t0x6D17\n0xD2A4\t0x6D3B\n0xD2A5\t0x6D3D\n0xD2A6\t0x6D3E\n0xD2A7\t0x6D36\n0xD2A8\t0x6D1B\n0xD2A9\t0x6CF5\n0xD2AA\t0x6D39\n0xD2AB\t0x6D27\n0xD2AC\t0x6D38\n0xD2AD\t0x6D29\n0xD2AE\t0x6D2E\n0xD2AF\t0x6D35\n0xD2B0\t0x6D0E\n0xD2B1\t0x6D2B\n0xD2B2\t0x70AB\n0xD2B3\t0x70BA\n0xD2B4\t0x70B3\n0xD2B5\t0x70AC\n0xD2B6\t0x70AF\n0xD2B7\t0x70AD\n0xD2B8\t0x70B8\n0xD2B9\t0x70AE\n0xD2BA\t0x70A4\n0xD2BB\t0x7230\n0xD2BC\t0x7272\n0xD2BD\t0x726F\n0xD2BE\t0x7274\n0xD2BF\t0x72E9\n0xD2C0\t0x72E0\n0xD2C1\t0x72E1\n0xD2C2\t0x73B7\n0xD2C3\t0x73CA\n0xD2C4\t0x73BB\n0xD2C5\t0x73B2\n0xD2C6\t0x73CD\n0xD2C7\t0x73C0\n0xD2C8\t0x73B3\n0xD2C9\t0x751A\n0xD2CA\t0x752D\n0xD2CB\t0x754F\n0xD2CC\t0x754C\n0xD2CD\t0x754E\n0xD2CE\t0x754B\n0xD2CF\t0x75AB\n0xD2D0\t0x75A4\n0xD2D1\t0x75A5\n0xD2D2\t0x75A2\n0xD2D3\t0x75A3\n0xD2D4\t0x7678\n0xD2D5\t0x7686\n0xD2D6\t0x7687\n0xD2D7\t0x7688\n0xD2D8\t0x76C8\n0xD2D9\t0x76C6\n0xD2DA\t0x76C3\n0xD2DB\t0x76C5\n0xD2DC\t0x7701\n0xD2DD\t0x76F9\n0xD2DE\t0x76F8\n0xD2DF\t0x7709\n0xD2E0\t0x770B\n0xD2E1\t0x76FE\n0xD2E2\t0x76FC\n0xD2E3\t0x7707\n0xD2E4\t0x77DC\n0xD2E5\t0x7802\n0xD2E6\t0x7814\n0xD2E7\t0x780C\n0xD2E8\t0x780D\n0xD2E9\t0x7946\n0xD2EA\t0x7949\n0xD2EB\t0x7948\n0xD2EC\t0x7947\n0xD2ED\t0x79B9\n0xD2EE\t0x79BA\n0xD2EF\t0x79D1\n0xD2F0\t0x79D2\n0xD2F1\t0x79CB\n0xD2F2\t0x7A7F\n0xD2F3\t0x7A81\n0xD2F4\t0x7AFF\n0xD2F5\t0x7AFD\n0xD2F6\t0x7C7D\n0xD2F7\t0x7D02\n0xD2F8\t0x7D05\n0xD2F9\t0x7D00\n0xD2FA\t0x7D09\n0xD2FB\t0x7D07\n0xD2FC\t0x7D04\n0xD2FD\t0x7D06\n0xD2FE\t0x7F38\n0xD321\t0x7FEA\n0xD322\t0x7FEC\n0xD323\t0x7FE6\n0xD324\t0x7FE8\n0xD325\t0x8064\n0xD326\t0x8067\n0xD327\t0x81A3\n0xD328\t0x819F\n0xD329\t0x819E\n0xD32A\t0x8195\n0xD32B\t0x81A2\n0xD32C\t0x8199\n0xD32D\t0x8197\n0xD32E\t0x8216\n0xD32F\t0x824F\n0xD330\t0x8253\n0xD331\t0x8252\n0xD332\t0x8250\n0xD333\t0x824E\n0xD334\t0x8251\n0xD335\t0x8524\n0xD336\t0x853B\n0xD337\t0x850F\n0xD338\t0x8500\n0xD339\t0x8529\n0xD33A\t0x850E\n0xD33B\t0x8509\n0xD33C\t0x850D\n0xD33D\t0x851F\n0xD33E\t0x850A\n0xD33F\t0x8527\n0xD340\t0x851C\n0xD341\t0x84FB\n0xD342\t0x852B\n0xD343\t0x84FA\n0xD344\t0x8508\n0xD345\t0x850C\n0xD346\t0x84F4\n0xD347\t0x852A\n0xD348\t0x84F2\n0xD349\t0x8515\n0xD34A\t0x84F7\n0xD34B\t0x84EB\n0xD34C\t0x84F3\n0xD34D\t0x84FC\n0xD34E\t0x8512\n0xD34F\t0x84EA\n0xD350\t0x84E9\n0xD351\t0x8516\n0xD352\t0x84FE\n0xD353\t0x8528\n0xD354\t0x851D\n0xD355\t0x852E\n0xD356\t0x8502\n0xD357\t0x84FD\n0xD358\t0x851E\n0xD359\t0x84F6\n0xD35A\t0x8531\n0xD35B\t0x8526\n0xD35C\t0x84E7\n0xD35D\t0x84E8\n0xD35E\t0x84F0\n0xD35F\t0x84EF\n0xD360\t0x84F9\n0xD361\t0x8518\n0xD362\t0x8520\n0xD363\t0x8530\n0xD364\t0x850B\n0xD365\t0x8519\n0xD366\t0x852F\n0xD367\t0x8662\n0xD368\t0x8756\n0xD369\t0x8763\n0xD36A\t0x8764\n0xD36B\t0x8777\n0xD36C\t0x87E1\n0xD36D\t0x8773\n0xD36E\t0x8758\n0xD36F\t0x8754\n0xD370\t0x875B\n0xD371\t0x8752\n0xD372\t0x8761\n0xD373\t0x875A\n0xD374\t0x8751\n0xD375\t0x875E\n0xD376\t0x876D\n0xD377\t0x876A\n0xD378\t0x8750\n0xD379\t0x874E\n0xD37A\t0x875F\n0xD37B\t0x875D\n0xD37C\t0x876F\n0xD37D\t0x876C\n0xD37E\t0x877A\n0xD3A1\t0x7F8E\n0xD3A2\t0x7FBF\n0xD3A3\t0x8010\n0xD3A4\t0x800D\n0xD3A5\t0x8011\n0xD3A6\t0x8036\n0xD3A7\t0x80D6\n0xD3A8\t0x80E5\n0xD3A9\t0x80DA\n0xD3AA\t0x80C3\n0xD3AB\t0x80C4\n0xD3AC\t0x80CC\n0xD3AD\t0x80E1\n0xD3AE\t0x80DB\n0xD3AF\t0x80CE\n0xD3B0\t0x80DE\n0xD3B1\t0x80E4\n0xD3B2\t0x80DD\n0xD3B3\t0x81F4\n0xD3B4\t0x8222\n0xD3B5\t0x82E7\n0xD3B6\t0x8303\n0xD3B7\t0x8305\n0xD3B8\t0x82E3\n0xD3B9\t0x82DB\n0xD3BA\t0x82E6\n0xD3BB\t0x8304\n0xD3BC\t0x82E5\n0xD3BD\t0x8302\n0xD3BE\t0x8309\n0xD3BF\t0x82D2\n0xD3C0\t0x82D7\n0xD3C1\t0x82F1\n0xD3C2\t0x8301\n0xD3C3\t0x82DC\n0xD3C4\t0x82D4\n0xD3C5\t0x82D1\n0xD3C6\t0x82DE\n0xD3C7\t0x82D3\n0xD3C8\t0x82DF\n0xD3C9\t0x82EF\n0xD3CA\t0x8306\n0xD3CB\t0x8650\n0xD3CC\t0x8679\n0xD3CD\t0x867B\n0xD3CE\t0x867A\n0xD3CF\t0x884D\n0xD3D0\t0x886B\n0xD3D1\t0x8981\n0xD3D2\t0x89D4\n0xD3D3\t0x8A08\n0xD3D4\t0x8A02\n0xD3D5\t0x8A03\n0xD3D6\t0x8C9E\n0xD3D7\t0x8CA0\n0xD3D8\t0x8D74\n0xD3D9\t0x8D73\n0xD3DA\t0x8DB4\n0xD3DB\t0x8ECD\n0xD3DC\t0x8ECC\n0xD3DD\t0x8FF0\n0xD3DE\t0x8FE6\n0xD3DF\t0x8FE2\n0xD3E0\t0x8FEA\n0xD3E1\t0x8FE5\n0xD3E2\t0x8FED\n0xD3E3\t0x8FEB\n0xD3E4\t0x8FE4\n0xD3E5\t0x8FE8\n0xD3E6\t0x90CA\n0xD3E7\t0x90CE\n0xD3E8\t0x90C1\n0xD3E9\t0x90C3\n0xD3EA\t0x914B\n0xD3EB\t0x914A\n0xD3EC\t0x91CD\n0xD3ED\t0x9582\n0xD3EE\t0x9650\n0xD3EF\t0x964B\n0xD3F0\t0x964C\n0xD3F1\t0x964D\n0xD3F2\t0x9762\n0xD3F3\t0x9769\n0xD3F4\t0x97CB\n0xD3F5\t0x97ED\n0xD3F6\t0x97F3\n0xD3F7\t0x9801\n0xD3F8\t0x98A8\n0xD3F9\t0x98DB\n0xD3FA\t0x98DF\n0xD3FB\t0x9996\n0xD3FC\t0x9999\n0xD3FD\t0x4E58\n0xD3FE\t0x4EB3\n0xD421\t0x876E\n0xD422\t0x875C\n0xD423\t0x8765\n0xD424\t0x874F\n0xD425\t0x877B\n0xD426\t0x8775\n0xD427\t0x8762\n0xD428\t0x8767\n0xD429\t0x8769\n0xD42A\t0x885A\n0xD42B\t0x8905\n0xD42C\t0x890C\n0xD42D\t0x8914\n0xD42E\t0x890B\n0xD42F\t0x8917\n0xD430\t0x8918\n0xD431\t0x8919\n0xD432\t0x8906\n0xD433\t0x8916\n0xD434\t0x8911\n0xD435\t0x890E\n0xD436\t0x8909\n0xD437\t0x89A2\n0xD438\t0x89A4\n0xD439\t0x89A3\n0xD43A\t0x89ED\n0xD43B\t0x89F0\n0xD43C\t0x89EC\n0xD43D\t0x8ACF\n0xD43E\t0x8AC6\n0xD43F\t0x8AB8\n0xD440\t0x8AD3\n0xD441\t0x8AD1\n0xD442\t0x8AD4\n0xD443\t0x8AD5\n0xD444\t0x8ABB\n0xD445\t0x8AD7\n0xD446\t0x8ABE\n0xD447\t0x8AC0\n0xD448\t0x8AC5\n0xD449\t0x8AD8\n0xD44A\t0x8AC3\n0xD44B\t0x8ABA\n0xD44C\t0x8ABD\n0xD44D\t0x8AD9\n0xD44E\t0x8C3E\n0xD44F\t0x8C4D\n0xD450\t0x8C8F\n0xD451\t0x8CE5\n0xD452\t0x8CDF\n0xD453\t0x8CD9\n0xD454\t0x8CE8\n0xD455\t0x8CDA\n0xD456\t0x8CDD\n0xD457\t0x8CE7\n0xD458\t0x8DA0\n0xD459\t0x8D9C\n0xD45A\t0x8DA1\n0xD45B\t0x8D9B\n0xD45C\t0x8E20\n0xD45D\t0x8E23\n0xD45E\t0x8E25\n0xD45F\t0x8E24\n0xD460\t0x8E2E\n0xD461\t0x8E15\n0xD462\t0x8E1B\n0xD463\t0x8E16\n0xD464\t0x8E11\n0xD465\t0x8E19\n0xD466\t0x8E26\n0xD467\t0x8E27\n0xD468\t0x8E14\n0xD469\t0x8E12\n0xD46A\t0x8E18\n0xD46B\t0x8E13\n0xD46C\t0x8E1C\n0xD46D\t0x8E17\n0xD46E\t0x8E1A\n0xD46F\t0x8F2C\n0xD470\t0x8F24\n0xD471\t0x8F18\n0xD472\t0x8F1A\n0xD473\t0x8F20\n0xD474\t0x8F23\n0xD475\t0x8F16\n0xD476\t0x8F17\n0xD477\t0x9073\n0xD478\t0x9070\n0xD479\t0x906F\n0xD47A\t0x9067\n0xD47B\t0x906B\n0xD47C\t0x912F\n0xD47D\t0x912B\n0xD47E\t0x9129\n0xD4A1\t0x500C\n0xD4A2\t0x500D\n0xD4A3\t0x5023\n0xD4A4\t0x4FEF\n0xD4A5\t0x5026\n0xD4A6\t0x5025\n0xD4A7\t0x4FF8\n0xD4A8\t0x5029\n0xD4A9\t0x5016\n0xD4AA\t0x5006\n0xD4AB\t0x503C\n0xD4AC\t0x501F\n0xD4AD\t0x501A\n0xD4AE\t0x5012\n0xD4AF\t0x5011\n0xD4B0\t0x4FFA\n0xD4B1\t0x5000\n0xD4B2\t0x5014\n0xD4B3\t0x5028\n0xD4B4\t0x4FF1\n0xD4B5\t0x5021\n0xD4B6\t0x500B\n0xD4B7\t0x5019\n0xD4B8\t0x5018\n0xD4B9\t0x4FF3\n0xD4BA\t0x4FEE\n0xD4BB\t0x502D\n0xD4BC\t0x502A\n0xD4BD\t0x4FFE\n0xD4BE\t0x502B\n0xD4BF\t0x5009\n0xD4C0\t0x517C\n0xD4C1\t0x51A4\n0xD4C2\t0x51A5\n0xD4C3\t0x51A2\n0xD4C4\t0x51CD\n0xD4C5\t0x51CC\n0xD4C6\t0x51C6\n0xD4C7\t0x51CB\n0xD4C8\t0x5256\n0xD4C9\t0x525C\n0xD4CA\t0x5254\n0xD4CB\t0x525B\n0xD4CC\t0x525D\n0xD4CD\t0x532A\n0xD4CE\t0x537F\n0xD4CF\t0x539F\n0xD4D0\t0x539D\n0xD4D1\t0x53DF\n0xD4D2\t0x54E8\n0xD4D3\t0x5510\n0xD4D4\t0x5501\n0xD4D5\t0x5537\n0xD4D6\t0x54FC\n0xD4D7\t0x54E5\n0xD4D8\t0x54F2\n0xD4D9\t0x5506\n0xD4DA\t0x54FA\n0xD4DB\t0x5514\n0xD4DC\t0x54E9\n0xD4DD\t0x54ED\n0xD4DE\t0x54E1\n0xD4DF\t0x5509\n0xD4E0\t0x54EE\n0xD4E1\t0x54EA\n0xD4E2\t0x54E6\n0xD4E3\t0x5527\n0xD4E4\t0x5507\n0xD4E5\t0x54FD\n0xD4E6\t0x550F\n0xD4E7\t0x5703\n0xD4E8\t0x5704\n0xD4E9\t0x57C2\n0xD4EA\t0x57D4\n0xD4EB\t0x57CB\n0xD4EC\t0x57C3\n0xD4ED\t0x5809\n0xD4EE\t0x590F\n0xD4EF\t0x5957\n0xD4F0\t0x5958\n0xD4F1\t0x595A\n0xD4F2\t0x5A11\n0xD4F3\t0x5A18\n0xD4F4\t0x5A1C\n0xD4F5\t0x5A1F\n0xD4F6\t0x5A1B\n0xD4F7\t0x5A13\n0xD4F8\t0x59EC\n0xD4F9\t0x5A20\n0xD4FA\t0x5A23\n0xD4FB\t0x5A29\n0xD4FC\t0x5A25\n0xD4FD\t0x5A0C\n0xD4FE\t0x5A09\n0xD521\t0x912A\n0xD522\t0x9132\n0xD523\t0x9126\n0xD524\t0x912E\n0xD525\t0x9185\n0xD526\t0x9186\n0xD527\t0x918A\n0xD528\t0x9181\n0xD529\t0x9182\n0xD52A\t0x9184\n0xD52B\t0x9180\n0xD52C\t0x92D0\n0xD52D\t0x92C3\n0xD52E\t0x92C4\n0xD52F\t0x92C0\n0xD530\t0x92D9\n0xD531\t0x92B6\n0xD532\t0x92CF\n0xD533\t0x92F1\n0xD534\t0x92DF\n0xD535\t0x92D8\n0xD536\t0x92E9\n0xD537\t0x92D7\n0xD538\t0x92DD\n0xD539\t0x92CC\n0xD53A\t0x92EF\n0xD53B\t0x92C2\n0xD53C\t0x92E8\n0xD53D\t0x92CA\n0xD53E\t0x92C8\n0xD53F\t0x92CE\n0xD540\t0x92E6\n0xD541\t0x92CD\n0xD542\t0x92D5\n0xD543\t0x92C9\n0xD544\t0x92E0\n0xD545\t0x92DE\n0xD546\t0x92E7\n0xD547\t0x92D1\n0xD548\t0x92D3\n0xD549\t0x92B5\n0xD54A\t0x92E1\n0xD54B\t0x9325\n0xD54C\t0x92C6\n0xD54D\t0x92B4\n0xD54E\t0x957C\n0xD54F\t0x95AC\n0xD550\t0x95AB\n0xD551\t0x95AE\n0xD552\t0x95B0\n0xD553\t0x96A4\n0xD554\t0x96A2\n0xD555\t0x96D3\n0xD556\t0x9705\n0xD557\t0x9708\n0xD558\t0x9702\n0xD559\t0x975A\n0xD55A\t0x978A\n0xD55B\t0x978E\n0xD55C\t0x9788\n0xD55D\t0x97D0\n0xD55E\t0x97CF\n0xD55F\t0x981E\n0xD560\t0x981D\n0xD561\t0x9826\n0xD562\t0x9829\n0xD563\t0x9828\n0xD564\t0x9820\n0xD565\t0x981B\n0xD566\t0x9827\n0xD567\t0x98B2\n0xD568\t0x9908\n0xD569\t0x98FA\n0xD56A\t0x9911\n0xD56B\t0x9914\n0xD56C\t0x9916\n0xD56D\t0x9917\n0xD56E\t0x9915\n0xD56F\t0x99DC\n0xD570\t0x99CD\n0xD571\t0x99CF\n0xD572\t0x99D3\n0xD573\t0x99D4\n0xD574\t0x99CE\n0xD575\t0x99C9\n0xD576\t0x99D6\n0xD577\t0x99D8\n0xD578\t0x99CB\n0xD579\t0x99D7\n0xD57A\t0x99CC\n0xD57B\t0x9AB3\n0xD57C\t0x9AEC\n0xD57D\t0x9AEB\n0xD57E\t0x9AF3\n0xD5A1\t0x5B6B\n0xD5A2\t0x5C58\n0xD5A3\t0x5BB0\n0xD5A4\t0x5BB3\n0xD5A5\t0x5BB6\n0xD5A6\t0x5BB4\n0xD5A7\t0x5BAE\n0xD5A8\t0x5BB5\n0xD5A9\t0x5BB9\n0xD5AA\t0x5BB8\n0xD5AB\t0x5C04\n0xD5AC\t0x5C51\n0xD5AD\t0x5C55\n0xD5AE\t0x5C50\n0xD5AF\t0x5CED\n0xD5B0\t0x5CFD\n0xD5B1\t0x5CFB\n0xD5B2\t0x5CEA\n0xD5B3\t0x5CE8\n0xD5B4\t0x5CF0\n0xD5B5\t0x5CF6\n0xD5B6\t0x5D01\n0xD5B7\t0x5CF4\n0xD5B8\t0x5DEE\n0xD5B9\t0x5E2D\n0xD5BA\t0x5E2B\n0xD5BB\t0x5EAB\n0xD5BC\t0x5EAD\n0xD5BD\t0x5EA7\n0xD5BE\t0x5F31\n0xD5BF\t0x5F92\n0xD5C0\t0x5F91\n0xD5C1\t0x5F90\n0xD5C2\t0x6059\n0xD5C3\t0x6063\n0xD5C4\t0x6065\n0xD5C5\t0x6050\n0xD5C6\t0x6055\n0xD5C7\t0x606D\n0xD5C8\t0x6069\n0xD5C9\t0x606F\n0xD5CA\t0x6084\n0xD5CB\t0x609F\n0xD5CC\t0x609A\n0xD5CD\t0x608D\n0xD5CE\t0x6094\n0xD5CF\t0x608C\n0xD5D0\t0x6085\n0xD5D1\t0x6096\n0xD5D2\t0x6247\n0xD5D3\t0x62F3\n0xD5D4\t0x6308\n0xD5D5\t0x62FF\n0xD5D6\t0x634E\n0xD5D7\t0x633E\n0xD5D8\t0x632F\n0xD5D9\t0x6355\n0xD5DA\t0x6342\n0xD5DB\t0x6346\n0xD5DC\t0x634F\n0xD5DD\t0x6349\n0xD5DE\t0x633A\n0xD5DF\t0x6350\n0xD5E0\t0x633D\n0xD5E1\t0x632A\n0xD5E2\t0x632B\n0xD5E3\t0x6328\n0xD5E4\t0x634D\n0xD5E5\t0x634C\n0xD5E6\t0x6548\n0xD5E7\t0x6549\n0xD5E8\t0x6599\n0xD5E9\t0x65C1\n0xD5EA\t0x65C5\n0xD5EB\t0x6642\n0xD5EC\t0x6649\n0xD5ED\t0x664F\n0xD5EE\t0x6643\n0xD5EF\t0x6652\n0xD5F0\t0x664C\n0xD5F1\t0x6645\n0xD5F2\t0x6641\n0xD5F3\t0x66F8\n0xD5F4\t0x6714\n0xD5F5\t0x6715\n0xD5F6\t0x6717\n0xD5F7\t0x6821\n0xD5F8\t0x6838\n0xD5F9\t0x6848\n0xD5FA\t0x6846\n0xD5FB\t0x6853\n0xD5FC\t0x6839\n0xD5FD\t0x6842\n0xD5FE\t0x6854\n0xD621\t0x9AF2\n0xD622\t0x9AF1\n0xD623\t0x9B46\n0xD624\t0x9B43\n0xD625\t0x9B67\n0xD626\t0x9B74\n0xD627\t0x9B71\n0xD628\t0x9B66\n0xD629\t0x9B76\n0xD62A\t0x9B75\n0xD62B\t0x9B70\n0xD62C\t0x9B68\n0xD62D\t0x9B64\n0xD62E\t0x9B6C\n0xD62F\t0x9CFC\n0xD630\t0x9CFA\n0xD631\t0x9CFD\n0xD632\t0x9CFF\n0xD633\t0x9CF7\n0xD634\t0x9D07\n0xD635\t0x9D00\n0xD636\t0x9CF9\n0xD637\t0x9CFB\n0xD638\t0x9D08\n0xD639\t0x9D05\n0xD63A\t0x9D04\n0xD63B\t0x9E83\n0xD63C\t0x9ED3\n0xD63D\t0x9F0F\n0xD63E\t0x9F10\n0xD63F\t0x511C\n0xD640\t0x5113\n0xD641\t0x5117\n0xD642\t0x511A\n0xD643\t0x5111\n0xD644\t0x51DE\n0xD645\t0x5334\n0xD646\t0x53E1\n0xD647\t0x5670\n0xD648\t0x5660\n0xD649\t0x566E\n0xD64A\t0x5673\n0xD64B\t0x5666\n0xD64C\t0x5663\n0xD64D\t0x566D\n0xD64E\t0x5672\n0xD64F\t0x565E\n0xD650\t0x5677\n0xD651\t0x571C\n0xD652\t0x571B\n0xD653\t0x58C8\n0xD654\t0x58BD\n0xD655\t0x58C9\n0xD656\t0x58BF\n0xD657\t0x58BA\n0xD658\t0x58C2\n0xD659\t0x58BC\n0xD65A\t0x58C6\n0xD65B\t0x5B17\n0xD65C\t0x5B19\n0xD65D\t0x5B1B\n0xD65E\t0x5B21\n0xD65F\t0x5B14\n0xD660\t0x5B13\n0xD661\t0x5B10\n0xD662\t0x5B16\n0xD663\t0x5B28\n0xD664\t0x5B1A\n0xD665\t0x5B20\n0xD666\t0x5B1E\n0xD667\t0x5BEF\n0xD668\t0x5DAC\n0xD669\t0x5DB1\n0xD66A\t0x5DA9\n0xD66B\t0x5DA7\n0xD66C\t0x5DB5\n0xD66D\t0x5DB0\n0xD66E\t0x5DAE\n0xD66F\t0x5DAA\n0xD670\t0x5DA8\n0xD671\t0x5DB2\n0xD672\t0x5DAD\n0xD673\t0x5DAF\n0xD674\t0x5DB4\n0xD675\t0x5E67\n0xD676\t0x5E68\n0xD677\t0x5E66\n0xD678\t0x5E6F\n0xD679\t0x5EE9\n0xD67A\t0x5EE7\n0xD67B\t0x5EE6\n0xD67C\t0x5EE8\n0xD67D\t0x5EE5\n0xD67E\t0x5F4B\n0xD6A1\t0x6829\n0xD6A2\t0x68B3\n0xD6A3\t0x6817\n0xD6A4\t0x684C\n0xD6A5\t0x6851\n0xD6A6\t0x683D\n0xD6A7\t0x67F4\n0xD6A8\t0x6850\n0xD6A9\t0x6840\n0xD6AA\t0x683C\n0xD6AB\t0x6843\n0xD6AC\t0x682A\n0xD6AD\t0x6845\n0xD6AE\t0x6813\n0xD6AF\t0x6818\n0xD6B0\t0x6841\n0xD6B1\t0x6B8A\n0xD6B2\t0x6B89\n0xD6B3\t0x6BB7\n0xD6B4\t0x6C23\n0xD6B5\t0x6C27\n0xD6B6\t0x6C28\n0xD6B7\t0x6C26\n0xD6B8\t0x6C24\n0xD6B9\t0x6CF0\n0xD6BA\t0x6D6A\n0xD6BB\t0x6D95\n0xD6BC\t0x6D88\n0xD6BD\t0x6D87\n0xD6BE\t0x6D66\n0xD6BF\t0x6D78\n0xD6C0\t0x6D77\n0xD6C1\t0x6D59\n0xD6C2\t0x6D93\n0xD6C3\t0x6D6C\n0xD6C4\t0x6D89\n0xD6C5\t0x6D6E\n0xD6C6\t0x6D5A\n0xD6C7\t0x6D74\n0xD6C8\t0x6D69\n0xD6C9\t0x6D8C\n0xD6CA\t0x6D8A\n0xD6CB\t0x6D79\n0xD6CC\t0x6D85\n0xD6CD\t0x6D65\n0xD6CE\t0x6D94\n0xD6CF\t0x70CA\n0xD6D0\t0x70D8\n0xD6D1\t0x70E4\n0xD6D2\t0x70D9\n0xD6D3\t0x70C8\n0xD6D4\t0x70CF\n0xD6D5\t0x7239\n0xD6D6\t0x7279\n0xD6D7\t0x72FC\n0xD6D8\t0x72F9\n0xD6D9\t0x72FD\n0xD6DA\t0x72F8\n0xD6DB\t0x72F7\n0xD6DC\t0x7386\n0xD6DD\t0x73ED\n0xD6DE\t0x7409\n0xD6DF\t0x73EE\n0xD6E0\t0x73E0\n0xD6E1\t0x73EA\n0xD6E2\t0x73DE\n0xD6E3\t0x7554\n0xD6E4\t0x755D\n0xD6E5\t0x755C\n0xD6E6\t0x755A\n0xD6E7\t0x7559\n0xD6E8\t0x75BE\n0xD6E9\t0x75C5\n0xD6EA\t0x75C7\n0xD6EB\t0x75B2\n0xD6EC\t0x75B3\n0xD6ED\t0x75BD\n0xD6EE\t0x75BC\n0xD6EF\t0x75B9\n0xD6F0\t0x75C2\n0xD6F1\t0x75B8\n0xD6F2\t0x768B\n0xD6F3\t0x76B0\n0xD6F4\t0x76CA\n0xD6F5\t0x76CD\n0xD6F6\t0x76CE\n0xD6F7\t0x7729\n0xD6F8\t0x771F\n0xD6F9\t0x7720\n0xD6FA\t0x7728\n0xD6FB\t0x77E9\n0xD6FC\t0x7830\n0xD6FD\t0x7827\n0xD6FE\t0x7838\n0xD721\t0x5FBC\n0xD722\t0x5FBB\n0xD723\t0x619D\n0xD724\t0x61A8\n0xD725\t0x6196\n0xD726\t0x61C5\n0xD727\t0x61B4\n0xD728\t0x61C6\n0xD729\t0x61C1\n0xD72A\t0x61CC\n0xD72B\t0x61BA\n0xD72C\t0x61BF\n0xD72D\t0x61B8\n0xD72E\t0x618C\n0xD72F\t0x64D7\n0xD730\t0x64D6\n0xD731\t0x64D0\n0xD732\t0x64CF\n0xD733\t0x64C9\n0xD734\t0x64BD\n0xD735\t0x6489\n0xD736\t0x64C3\n0xD737\t0x64DB\n0xD738\t0x64F3\n0xD739\t0x64D9\n0xD73A\t0x6533\n0xD73B\t0x657F\n0xD73C\t0x657C\n0xD73D\t0x65A2\n0xD73E\t0x66C8\n0xD73F\t0x66BE\n0xD740\t0x66C0\n0xD741\t0x66CA\n0xD742\t0x66CB\n0xD743\t0x66CF\n0xD744\t0x66BD\n0xD745\t0x66BB\n0xD746\t0x66BA\n0xD747\t0x66CC\n0xD748\t0x6723\n0xD749\t0x6A34\n0xD74A\t0x6A66\n0xD74B\t0x6A49\n0xD74C\t0x6A67\n0xD74D\t0x6A32\n0xD74E\t0x6A68\n0xD74F\t0x6A3E\n0xD750\t0x6A5D\n0xD751\t0x6A6D\n0xD752\t0x6A76\n0xD753\t0x6A5B\n0xD754\t0x6A51\n0xD755\t0x6A28\n0xD756\t0x6A5A\n0xD757\t0x6A3B\n0xD758\t0x6A3F\n0xD759\t0x6A41\n0xD75A\t0x6A6A\n0xD75B\t0x6A64\n0xD75C\t0x6A50\n0xD75D\t0x6A4F\n0xD75E\t0x6A54\n0xD75F\t0x6A6F\n0xD760\t0x6A69\n0xD761\t0x6A60\n0xD762\t0x6A3C\n0xD763\t0x6A5E\n0xD764\t0x6A56\n0xD765\t0x6A55\n0xD766\t0x6A4D\n0xD767\t0x6A4E\n0xD768\t0x6A46\n0xD769\t0x6B55\n0xD76A\t0x6B54\n0xD76B\t0x6B56\n0xD76C\t0x6BA7\n0xD76D\t0x6BAA\n0xD76E\t0x6BAB\n0xD76F\t0x6BC8\n0xD770\t0x6BC7\n0xD771\t0x6C04\n0xD772\t0x6C03\n0xD773\t0x6C06\n0xD774\t0x6FAD\n0xD775\t0x6FCB\n0xD776\t0x6FA3\n0xD777\t0x6FC7\n0xD778\t0x6FBC\n0xD779\t0x6FCE\n0xD77A\t0x6FC8\n0xD77B\t0x6F5E\n0xD77C\t0x6FC4\n0xD77D\t0x6FBD\n0xD77E\t0x6F9E\n0xD7A1\t0x781D\n0xD7A2\t0x7834\n0xD7A3\t0x7837\n0xD7A4\t0x7825\n0xD7A5\t0x782D\n0xD7A6\t0x7820\n0xD7A7\t0x781F\n0xD7A8\t0x7832\n0xD7A9\t0x7955\n0xD7AA\t0x7950\n0xD7AB\t0x7960\n0xD7AC\t0x795F\n0xD7AD\t0x7956\n0xD7AE\t0x795E\n0xD7AF\t0x795D\n0xD7B0\t0x7957\n0xD7B1\t0x795A\n0xD7B2\t0x79E4\n0xD7B3\t0x79E3\n0xD7B4\t0x79E7\n0xD7B5\t0x79DF\n0xD7B6\t0x79E6\n0xD7B7\t0x79E9\n0xD7B8\t0x79D8\n0xD7B9\t0x7A84\n0xD7BA\t0x7A88\n0xD7BB\t0x7AD9\n0xD7BC\t0x7B06\n0xD7BD\t0x7B11\n0xD7BE\t0x7C89\n0xD7BF\t0x7D21\n0xD7C0\t0x7D17\n0xD7C1\t0x7D0B\n0xD7C2\t0x7D0A\n0xD7C3\t0x7D20\n0xD7C4\t0x7D22\n0xD7C5\t0x7D14\n0xD7C6\t0x7D10\n0xD7C7\t0x7D15\n0xD7C8\t0x7D1A\n0xD7C9\t0x7D1C\n0xD7CA\t0x7D0D\n0xD7CB\t0x7D19\n0xD7CC\t0x7D1B\n0xD7CD\t0x7F3A\n0xD7CE\t0x7F5F\n0xD7CF\t0x7F94\n0xD7D0\t0x7FC5\n0xD7D1\t0x7FC1\n0xD7D2\t0x8006\n0xD7D3\t0x8004\n0xD7D4\t0x8018\n0xD7D5\t0x8015\n0xD7D6\t0x8019\n0xD7D7\t0x8017\n0xD7D8\t0x803D\n0xD7D9\t0x803F\n0xD7DA\t0x80F1\n0xD7DB\t0x8102\n0xD7DC\t0x80F0\n0xD7DD\t0x8105\n0xD7DE\t0x80ED\n0xD7DF\t0x80F4\n0xD7E0\t0x8106\n0xD7E1\t0x80F8\n0xD7E2\t0x80F3\n0xD7E3\t0x8108\n0xD7E4\t0x80FD\n0xD7E5\t0x810A\n0xD7E6\t0x80FC\n0xD7E7\t0x80EF\n0xD7E8\t0x81ED\n0xD7E9\t0x81EC\n0xD7EA\t0x8200\n0xD7EB\t0x8210\n0xD7EC\t0x822A\n0xD7ED\t0x822B\n0xD7EE\t0x8228\n0xD7EF\t0x822C\n0xD7F0\t0x82BB\n0xD7F1\t0x832B\n0xD7F2\t0x8352\n0xD7F3\t0x8354\n0xD7F4\t0x834A\n0xD7F5\t0x8338\n0xD7F6\t0x8350\n0xD7F7\t0x8349\n0xD7F8\t0x8335\n0xD7F9\t0x8334\n0xD7FA\t0x834F\n0xD7FB\t0x8332\n0xD7FC\t0x8339\n0xD7FD\t0x8336\n0xD7FE\t0x8317\n0xD821\t0x6FCA\n0xD822\t0x6FA8\n0xD823\t0x7004\n0xD824\t0x6FA5\n0xD825\t0x6FAE\n0xD826\t0x6FBA\n0xD827\t0x6FAC\n0xD828\t0x6FAA\n0xD829\t0x6FCF\n0xD82A\t0x6FBF\n0xD82B\t0x6FB8\n0xD82C\t0x6FA2\n0xD82D\t0x6FC9\n0xD82E\t0x6FAB\n0xD82F\t0x6FCD\n0xD830\t0x6FAF\n0xD831\t0x6FB2\n0xD832\t0x6FB0\n0xD833\t0x71C5\n0xD834\t0x71C2\n0xD835\t0x71BF\n0xD836\t0x71B8\n0xD837\t0x71D6\n0xD838\t0x71C0\n0xD839\t0x71C1\n0xD83A\t0x71CB\n0xD83B\t0x71D4\n0xD83C\t0x71CA\n0xD83D\t0x71C7\n0xD83E\t0x71CF\n0xD83F\t0x71BD\n0xD840\t0x71D8\n0xD841\t0x71BC\n0xD842\t0x71C6\n0xD843\t0x71DA\n0xD844\t0x71DB\n0xD845\t0x729D\n0xD846\t0x729E\n0xD847\t0x7369\n0xD848\t0x7366\n0xD849\t0x7367\n0xD84A\t0x736C\n0xD84B\t0x7365\n0xD84C\t0x736B\n0xD84D\t0x736A\n0xD84E\t0x747F\n0xD84F\t0x749A\n0xD850\t0x74A0\n0xD851\t0x7494\n0xD852\t0x7492\n0xD853\t0x7495\n0xD854\t0x74A1\n0xD855\t0x750B\n0xD856\t0x7580\n0xD857\t0x762F\n0xD858\t0x762D\n0xD859\t0x7631\n0xD85A\t0x763D\n0xD85B\t0x7633\n0xD85C\t0x763C\n0xD85D\t0x7635\n0xD85E\t0x7632\n0xD85F\t0x7630\n0xD860\t0x76BB\n0xD861\t0x76E6\n0xD862\t0x779A\n0xD863\t0x779D\n0xD864\t0x77A1\n0xD865\t0x779C\n0xD866\t0x779B\n0xD867\t0x77A2\n0xD868\t0x77A3\n0xD869\t0x7795\n0xD86A\t0x7799\n0xD86B\t0x7797\n0xD86C\t0x78DD\n0xD86D\t0x78E9\n0xD86E\t0x78E5\n0xD86F\t0x78EA\n0xD870\t0x78DE\n0xD871\t0x78E3\n0xD872\t0x78DB\n0xD873\t0x78E1\n0xD874\t0x78E2\n0xD875\t0x78ED\n0xD876\t0x78DF\n0xD877\t0x78E0\n0xD878\t0x79A4\n0xD879\t0x7A44\n0xD87A\t0x7A48\n0xD87B\t0x7A47\n0xD87C\t0x7AB6\n0xD87D\t0x7AB8\n0xD87E\t0x7AB5\n0xD8A1\t0x8340\n0xD8A2\t0x8331\n0xD8A3\t0x8328\n0xD8A4\t0x8343\n0xD8A5\t0x8654\n0xD8A6\t0x868A\n0xD8A7\t0x86AA\n0xD8A8\t0x8693\n0xD8A9\t0x86A4\n0xD8AA\t0x86A9\n0xD8AB\t0x868C\n0xD8AC\t0x86A3\n0xD8AD\t0x869C\n0xD8AE\t0x8870\n0xD8AF\t0x8877\n0xD8B0\t0x8881\n0xD8B1\t0x8882\n0xD8B2\t0x887D\n0xD8B3\t0x8879\n0xD8B4\t0x8A18\n0xD8B5\t0x8A10\n0xD8B6\t0x8A0E\n0xD8B7\t0x8A0C\n0xD8B8\t0x8A15\n0xD8B9\t0x8A0A\n0xD8BA\t0x8A17\n0xD8BB\t0x8A13\n0xD8BC\t0x8A16\n0xD8BD\t0x8A0F\n0xD8BE\t0x8A11\n0xD8BF\t0x8C48\n0xD8C0\t0x8C7A\n0xD8C1\t0x8C79\n0xD8C2\t0x8CA1\n0xD8C3\t0x8CA2\n0xD8C4\t0x8D77\n0xD8C5\t0x8EAC\n0xD8C6\t0x8ED2\n0xD8C7\t0x8ED4\n0xD8C8\t0x8ECF\n0xD8C9\t0x8FB1\n0xD8CA\t0x9001\n0xD8CB\t0x9006\n0xD8CC\t0x8FF7\n0xD8CD\t0x9000\n0xD8CE\t0x8FFA\n0xD8CF\t0x8FF4\n0xD8D0\t0x9003\n0xD8D1\t0x8FFD\n0xD8D2\t0x9005\n0xD8D3\t0x8FF8\n0xD8D4\t0x9095\n0xD8D5\t0x90E1\n0xD8D6\t0x90DD\n0xD8D7\t0x90E2\n0xD8D8\t0x9152\n0xD8D9\t0x914D\n0xD8DA\t0x914C\n0xD8DB\t0x91D8\n0xD8DC\t0x91DD\n0xD8DD\t0x91D7\n0xD8DE\t0x91DC\n0xD8DF\t0x91D9\n0xD8E0\t0x9583\n0xD8E1\t0x9662\n0xD8E2\t0x9663\n0xD8E3\t0x9661\n0xD8E4\t0x965B\n0xD8E5\t0x965D\n0xD8E6\t0x9664\n0xD8E7\t0x9658\n0xD8E8\t0x965E\n0xD8E9\t0x96BB\n0xD8EA\t0x98E2\n0xD8EB\t0x99AC\n0xD8EC\t0x9AA8\n0xD8ED\t0x9AD8\n0xD8EE\t0x9B25\n0xD8EF\t0x9B32\n0xD8F0\t0x9B3C\n0xD8F1\t0x4E7E\n0xD8F2\t0x507A\n0xD8F3\t0x507D\n0xD8F4\t0x505C\n0xD8F5\t0x5047\n0xD8F6\t0x5043\n0xD8F7\t0x504C\n0xD8F8\t0x505A\n0xD8F9\t0x5049\n0xD8FA\t0x5065\n0xD8FB\t0x5076\n0xD8FC\t0x504E\n0xD8FD\t0x5055\n0xD8FE\t0x5075\n0xD921\t0x7AB1\n0xD922\t0x7AB7\n0xD923\t0x7BDE\n0xD924\t0x7BE3\n0xD925\t0x7BE7\n0xD926\t0x7BDD\n0xD927\t0x7BD5\n0xD928\t0x7BE5\n0xD929\t0x7BDA\n0xD92A\t0x7BE8\n0xD92B\t0x7BF9\n0xD92C\t0x7BD4\n0xD92D\t0x7BEA\n0xD92E\t0x7BE2\n0xD92F\t0x7BDC\n0xD930\t0x7BEB\n0xD931\t0x7BD8\n0xD932\t0x7BDF\n0xD933\t0x7CD2\n0xD934\t0x7CD4\n0xD935\t0x7CD7\n0xD936\t0x7CD0\n0xD937\t0x7CD1\n0xD938\t0x7E12\n0xD939\t0x7E21\n0xD93A\t0x7E17\n0xD93B\t0x7E0C\n0xD93C\t0x7E1F\n0xD93D\t0x7E20\n0xD93E\t0x7E13\n0xD93F\t0x7E0E\n0xD940\t0x7E1C\n0xD941\t0x7E15\n0xD942\t0x7E1A\n0xD943\t0x7E22\n0xD944\t0x7E0B\n0xD945\t0x7E0F\n0xD946\t0x7E16\n0xD947\t0x7E0D\n0xD948\t0x7E14\n0xD949\t0x7E25\n0xD94A\t0x7E24\n0xD94B\t0x7F43\n0xD94C\t0x7F7B\n0xD94D\t0x7F7C\n0xD94E\t0x7F7A\n0xD94F\t0x7FB1\n0xD950\t0x7FEF\n0xD951\t0x802A\n0xD952\t0x8029\n0xD953\t0x806C\n0xD954\t0x81B1\n0xD955\t0x81A6\n0xD956\t0x81AE\n0xD957\t0x81B9\n0xD958\t0x81B5\n0xD959\t0x81AB\n0xD95A\t0x81B0\n0xD95B\t0x81AC\n0xD95C\t0x81B4\n0xD95D\t0x81B2\n0xD95E\t0x81B7\n0xD95F\t0x81A7\n0xD960\t0x81F2\n0xD961\t0x8255\n0xD962\t0x8256\n0xD963\t0x8257\n0xD964\t0x8556\n0xD965\t0x8545\n0xD966\t0x856B\n0xD967\t0x854D\n0xD968\t0x8553\n0xD969\t0x8561\n0xD96A\t0x8558\n0xD96B\t0x8540\n0xD96C\t0x8546\n0xD96D\t0x8564\n0xD96E\t0x8541\n0xD96F\t0x8562\n0xD970\t0x8544\n0xD971\t0x8551\n0xD972\t0x8547\n0xD973\t0x8563\n0xD974\t0x853E\n0xD975\t0x855B\n0xD976\t0x8571\n0xD977\t0x854E\n0xD978\t0x856E\n0xD979\t0x8575\n0xD97A\t0x8555\n0xD97B\t0x8567\n0xD97C\t0x8560\n0xD97D\t0x858C\n0xD97E\t0x8566\n0xD9A1\t0x5074\n0xD9A2\t0x5077\n0xD9A3\t0x504F\n0xD9A4\t0x500F\n0xD9A5\t0x506F\n0xD9A6\t0x506D\n0xD9A7\t0x515C\n0xD9A8\t0x5195\n0xD9A9\t0x51F0\n0xD9AA\t0x526A\n0xD9AB\t0x526F\n0xD9AC\t0x52D2\n0xD9AD\t0x52D9\n0xD9AE\t0x52D8\n0xD9AF\t0x52D5\n0xD9B0\t0x5310\n0xD9B1\t0x530F\n0xD9B2\t0x5319\n0xD9B3\t0x533F\n0xD9B4\t0x5340\n0xD9B5\t0x533E\n0xD9B6\t0x53C3\n0xD9B7\t0x66FC\n0xD9B8\t0x5546\n0xD9B9\t0x556A\n0xD9BA\t0x5566\n0xD9BB\t0x5544\n0xD9BC\t0x555E\n0xD9BD\t0x5561\n0xD9BE\t0x5543\n0xD9BF\t0x554A\n0xD9C0\t0x5531\n0xD9C1\t0x5556\n0xD9C2\t0x554F\n0xD9C3\t0x5555\n0xD9C4\t0x552F\n0xD9C5\t0x5564\n0xD9C6\t0x5538\n0xD9C7\t0x552E\n0xD9C8\t0x555C\n0xD9C9\t0x552C\n0xD9CA\t0x5563\n0xD9CB\t0x5533\n0xD9CC\t0x5541\n0xD9CD\t0x5557\n0xD9CE\t0x5708\n0xD9CF\t0x570B\n0xD9D0\t0x5709\n0xD9D1\t0x57DF\n0xD9D2\t0x5805\n0xD9D3\t0x580A\n0xD9D4\t0x5806\n0xD9D5\t0x57E0\n0xD9D6\t0x57E4\n0xD9D7\t0x57FA\n0xD9D8\t0x5802\n0xD9D9\t0x5835\n0xD9DA\t0x57F7\n0xD9DB\t0x57F9\n0xD9DC\t0x5920\n0xD9DD\t0x5962\n0xD9DE\t0x5A36\n0xD9DF\t0x5A41\n0xD9E0\t0x5A49\n0xD9E1\t0x5A66\n0xD9E2\t0x5A6A\n0xD9E3\t0x5A40\n0xD9E4\t0x5A3C\n0xD9E5\t0x5A62\n0xD9E6\t0x5A5A\n0xD9E7\t0x5A46\n0xD9E8\t0x5A4A\n0xD9E9\t0x5B70\n0xD9EA\t0x5BC7\n0xD9EB\t0x5BC5\n0xD9EC\t0x5BC4\n0xD9ED\t0x5BC2\n0xD9EE\t0x5BBF\n0xD9EF\t0x5BC6\n0xD9F0\t0x5C09\n0xD9F1\t0x5C08\n0xD9F2\t0x5C07\n0xD9F3\t0x5C60\n0xD9F4\t0x5C5C\n0xD9F5\t0x5C5D\n0xD9F6\t0x5D07\n0xD9F7\t0x5D06\n0xD9F8\t0x5D0E\n0xD9F9\t0x5D1B\n0xD9FA\t0x5D16\n0xD9FB\t0x5D22\n0xD9FC\t0x5D11\n0xD9FD\t0x5D29\n0xD9FE\t0x5D14\n0xDA21\t0x855D\n0xDA22\t0x8554\n0xDA23\t0x8565\n0xDA24\t0x856C\n0xDA25\t0x8663\n0xDA26\t0x8665\n0xDA27\t0x8664\n0xDA28\t0x87A4\n0xDA29\t0x879B\n0xDA2A\t0x878F\n0xDA2B\t0x8797\n0xDA2C\t0x8793\n0xDA2D\t0x8792\n0xDA2E\t0x8788\n0xDA2F\t0x8781\n0xDA30\t0x8796\n0xDA31\t0x8798\n0xDA32\t0x8779\n0xDA33\t0x8787\n0xDA34\t0x87A3\n0xDA35\t0x8785\n0xDA36\t0x8790\n0xDA37\t0x8791\n0xDA38\t0x879D\n0xDA39\t0x8784\n0xDA3A\t0x8794\n0xDA3B\t0x879C\n0xDA3C\t0x879A\n0xDA3D\t0x8789\n0xDA3E\t0x891E\n0xDA3F\t0x8926\n0xDA40\t0x8930\n0xDA41\t0x892D\n0xDA42\t0x892E\n0xDA43\t0x8927\n0xDA44\t0x8931\n0xDA45\t0x8922\n0xDA46\t0x8929\n0xDA47\t0x8923\n0xDA48\t0x892F\n0xDA49\t0x892C\n0xDA4A\t0x891F\n0xDA4B\t0x89F1\n0xDA4C\t0x8AE0\n0xDA4D\t0x8AE2\n0xDA4E\t0x8AF2\n0xDA4F\t0x8AF4\n0xDA50\t0x8AF5\n0xDA51\t0x8ADD\n0xDA52\t0x8B14\n0xDA53\t0x8AE4\n0xDA54\t0x8ADF\n0xDA55\t0x8AF0\n0xDA56\t0x8AC8\n0xDA57\t0x8ADE\n0xDA58\t0x8AE1\n0xDA59\t0x8AE8\n0xDA5A\t0x8AFF\n0xDA5B\t0x8AEF\n0xDA5C\t0x8AFB\n0xDA5D\t0x8C91\n0xDA5E\t0x8C92\n0xDA5F\t0x8C90\n0xDA60\t0x8CF5\n0xDA61\t0x8CEE\n0xDA62\t0x8CF1\n0xDA63\t0x8CF0\n0xDA64\t0x8CF3\n0xDA65\t0x8D6C\n0xDA66\t0x8D6E\n0xDA67\t0x8DA5\n0xDA68\t0x8DA7\n0xDA69\t0x8E33\n0xDA6A\t0x8E3E\n0xDA6B\t0x8E38\n0xDA6C\t0x8E40\n0xDA6D\t0x8E45\n0xDA6E\t0x8E36\n0xDA6F\t0x8E3C\n0xDA70\t0x8E3D\n0xDA71\t0x8E41\n0xDA72\t0x8E30\n0xDA73\t0x8E3F\n0xDA74\t0x8EBD\n0xDA75\t0x8F36\n0xDA76\t0x8F2E\n0xDA77\t0x8F35\n0xDA78\t0x8F32\n0xDA79\t0x8F39\n0xDA7A\t0x8F37\n0xDA7B\t0x8F34\n0xDA7C\t0x9076\n0xDA7D\t0x9079\n0xDA7E\t0x907B\n0xDAA1\t0x5D19\n0xDAA2\t0x5D24\n0xDAA3\t0x5D27\n0xDAA4\t0x5D17\n0xDAA5\t0x5DE2\n0xDAA6\t0x5E38\n0xDAA7\t0x5E36\n0xDAA8\t0x5E33\n0xDAA9\t0x5E37\n0xDAAA\t0x5EB7\n0xDAAB\t0x5EB8\n0xDAAC\t0x5EB6\n0xDAAD\t0x5EB5\n0xDAAE\t0x5EBE\n0xDAAF\t0x5F35\n0xDAB0\t0x5F37\n0xDAB1\t0x5F57\n0xDAB2\t0x5F6C\n0xDAB3\t0x5F69\n0xDAB4\t0x5F6B\n0xDAB5\t0x5F97\n0xDAB6\t0x5F99\n0xDAB7\t0x5F9E\n0xDAB8\t0x5F98\n0xDAB9\t0x5FA1\n0xDABA\t0x5FA0\n0xDABB\t0x5F9C\n0xDABC\t0x607F\n0xDABD\t0x60A3\n0xDABE\t0x6089\n0xDABF\t0x60A0\n0xDAC0\t0x60A8\n0xDAC1\t0x60CB\n0xDAC2\t0x60B4\n0xDAC3\t0x60E6\n0xDAC4\t0x60BD\n0xDAC5\t0x60C5\n0xDAC6\t0x60BB\n0xDAC7\t0x60B5\n0xDAC8\t0x60DC\n0xDAC9\t0x60BC\n0xDACA\t0x60D8\n0xDACB\t0x60D5\n0xDACC\t0x60C6\n0xDACD\t0x60DF\n0xDACE\t0x60B8\n0xDACF\t0x60DA\n0xDAD0\t0x60C7\n0xDAD1\t0x621A\n0xDAD2\t0x621B\n0xDAD3\t0x6248\n0xDAD4\t0x63A0\n0xDAD5\t0x63A7\n0xDAD6\t0x6372\n0xDAD7\t0x6396\n0xDAD8\t0x63A2\n0xDAD9\t0x63A5\n0xDADA\t0x6377\n0xDADB\t0x6367\n0xDADC\t0x6398\n0xDADD\t0x63AA\n0xDADE\t0x6371\n0xDADF\t0x63A9\n0xDAE0\t0x6389\n0xDAE1\t0x6383\n0xDAE2\t0x639B\n0xDAE3\t0x636B\n0xDAE4\t0x63A8\n0xDAE5\t0x6384\n0xDAE6\t0x6388\n0xDAE7\t0x6399\n0xDAE8\t0x63A1\n0xDAE9\t0x63AC\n0xDAEA\t0x6392\n0xDAEB\t0x638F\n0xDAEC\t0x6380\n0xDAED\t0x637B\n0xDAEE\t0x6369\n0xDAEF\t0x6368\n0xDAF0\t0x637A\n0xDAF1\t0x655D\n0xDAF2\t0x6556\n0xDAF3\t0x6551\n0xDAF4\t0x6559\n0xDAF5\t0x6557\n0xDAF6\t0x555F\n0xDAF7\t0x654F\n0xDAF8\t0x6558\n0xDAF9\t0x6555\n0xDAFA\t0x6554\n0xDAFB\t0x659C\n0xDAFC\t0x659B\n0xDAFD\t0x65AC\n0xDAFE\t0x65CF\n0xDB21\t0x9086\n0xDB22\t0x90FA\n0xDB23\t0x9133\n0xDB24\t0x9135\n0xDB25\t0x9136\n0xDB26\t0x9193\n0xDB27\t0x9190\n0xDB28\t0x9191\n0xDB29\t0x918D\n0xDB2A\t0x918F\n0xDB2B\t0x9327\n0xDB2C\t0x931E\n0xDB2D\t0x9308\n0xDB2E\t0x931F\n0xDB2F\t0x9306\n0xDB30\t0x930F\n0xDB31\t0x937A\n0xDB32\t0x9338\n0xDB33\t0x933C\n0xDB34\t0x931B\n0xDB35\t0x9323\n0xDB36\t0x9312\n0xDB37\t0x9301\n0xDB38\t0x9346\n0xDB39\t0x932D\n0xDB3A\t0x930E\n0xDB3B\t0x930D\n0xDB3C\t0x92CB\n0xDB3D\t0x931D\n0xDB3E\t0x92FA\n0xDB3F\t0x9313\n0xDB40\t0x92F9\n0xDB41\t0x92F7\n0xDB42\t0x9334\n0xDB43\t0x9302\n0xDB44\t0x9324\n0xDB45\t0x92FF\n0xDB46\t0x9329\n0xDB47\t0x9339\n0xDB48\t0x9335\n0xDB49\t0x932A\n0xDB4A\t0x9314\n0xDB4B\t0x930C\n0xDB4C\t0x930B\n0xDB4D\t0x92FE\n0xDB4E\t0x9309\n0xDB4F\t0x9300\n0xDB50\t0x92FB\n0xDB51\t0x9316\n0xDB52\t0x95BC\n0xDB53\t0x95CD\n0xDB54\t0x95BE\n0xDB55\t0x95B9\n0xDB56\t0x95BA\n0xDB57\t0x95B6\n0xDB58\t0x95BF\n0xDB59\t0x95B5\n0xDB5A\t0x95BD\n0xDB5B\t0x96A9\n0xDB5C\t0x96D4\n0xDB5D\t0x970B\n0xDB5E\t0x9712\n0xDB5F\t0x9710\n0xDB60\t0x9799\n0xDB61\t0x9797\n0xDB62\t0x9794\n0xDB63\t0x97F0\n0xDB64\t0x97F8\n0xDB65\t0x9835\n0xDB66\t0x982F\n0xDB67\t0x9832\n0xDB68\t0x9924\n0xDB69\t0x991F\n0xDB6A\t0x9927\n0xDB6B\t0x9929\n0xDB6C\t0x999E\n0xDB6D\t0x99EE\n0xDB6E\t0x99EC\n0xDB6F\t0x99E5\n0xDB70\t0x99E4\n0xDB71\t0x99F0\n0xDB72\t0x99E3\n0xDB73\t0x99EA\n0xDB74\t0x99E9\n0xDB75\t0x99E7\n0xDB76\t0x9AB9\n0xDB77\t0x9ABF\n0xDB78\t0x9AB4\n0xDB79\t0x9ABB\n0xDB7A\t0x9AF6\n0xDB7B\t0x9AFA\n0xDB7C\t0x9AF9\n0xDB7D\t0x9AF7\n0xDB7E\t0x9B33\n0xDBA1\t0x65CB\n0xDBA2\t0x65CC\n0xDBA3\t0x65CE\n0xDBA4\t0x665D\n0xDBA5\t0x665A\n0xDBA6\t0x6664\n0xDBA7\t0x6668\n0xDBA8\t0x6666\n0xDBA9\t0x665E\n0xDBAA\t0x66F9\n0xDBAB\t0x52D7\n0xDBAC\t0x671B\n0xDBAD\t0x6881\n0xDBAE\t0x68AF\n0xDBAF\t0x68A2\n0xDBB0\t0x6893\n0xDBB1\t0x68B5\n0xDBB2\t0x687F\n0xDBB3\t0x6876\n0xDBB4\t0x68B1\n0xDBB5\t0x68A7\n0xDBB6\t0x6897\n0xDBB7\t0x68B0\n0xDBB8\t0x6883\n0xDBB9\t0x68C4\n0xDBBA\t0x68AD\n0xDBBB\t0x6886\n0xDBBC\t0x6885\n0xDBBD\t0x6894\n0xDBBE\t0x689D\n0xDBBF\t0x68A8\n0xDBC0\t0x689F\n0xDBC1\t0x68A1\n0xDBC2\t0x6882\n0xDBC3\t0x6B32\n0xDBC4\t0x6BBA\n0xDBC5\t0x6BEB\n0xDBC6\t0x6BEC\n0xDBC7\t0x6C2B\n0xDBC8\t0x6D8E\n0xDBC9\t0x6DBC\n0xDBCA\t0x6DF3\n0xDBCB\t0x6DD9\n0xDBCC\t0x6DB2\n0xDBCD\t0x6DE1\n0xDBCE\t0x6DCC\n0xDBCF\t0x6DE4\n0xDBD0\t0x6DFB\n0xDBD1\t0x6DFA\n0xDBD2\t0x6E05\n0xDBD3\t0x6DC7\n0xDBD4\t0x6DCB\n0xDBD5\t0x6DAF\n0xDBD6\t0x6DD1\n0xDBD7\t0x6DAE\n0xDBD8\t0x6DDE\n0xDBD9\t0x6DF9\n0xDBDA\t0x6DB8\n0xDBDB\t0x6DF7\n0xDBDC\t0x6DF5\n0xDBDD\t0x6DC5\n0xDBDE\t0x6DD2\n0xDBDF\t0x6E1A\n0xDBE0\t0x6DB5\n0xDBE1\t0x6DDA\n0xDBE2\t0x6DEB\n0xDBE3\t0x6DD8\n0xDBE4\t0x6DEA\n0xDBE5\t0x6DF1\n0xDBE6\t0x6DEE\n0xDBE7\t0x6DE8\n0xDBE8\t0x6DC6\n0xDBE9\t0x6DC4\n0xDBEA\t0x6DAA\n0xDBEB\t0x6DEC\n0xDBEC\t0x6DBF\n0xDBED\t0x6DE6\n0xDBEE\t0x70F9\n0xDBEF\t0x7109\n0xDBF0\t0x710A\n0xDBF1\t0x70FD\n0xDBF2\t0x70EF\n0xDBF3\t0x723D\n0xDBF4\t0x727D\n0xDBF5\t0x7281\n0xDBF6\t0x731C\n0xDBF7\t0x731B\n0xDBF8\t0x7316\n0xDBF9\t0x7313\n0xDBFA\t0x7319\n0xDBFB\t0x7387\n0xDBFC\t0x7405\n0xDBFD\t0x740A\n0xDBFE\t0x7403\n0xDC21\t0x9B80\n0xDC22\t0x9B85\n0xDC23\t0x9B87\n0xDC24\t0x9B7C\n0xDC25\t0x9B7E\n0xDC26\t0x9B7B\n0xDC27\t0x9B82\n0xDC28\t0x9B93\n0xDC29\t0x9B92\n0xDC2A\t0x9B90\n0xDC2B\t0x9B7A\n0xDC2C\t0x9B95\n0xDC2D\t0x9B7D\n0xDC2E\t0x9B88\n0xDC2F\t0x9D25\n0xDC30\t0x9D17\n0xDC31\t0x9D20\n0xDC32\t0x9D1E\n0xDC33\t0x9D14\n0xDC34\t0x9D29\n0xDC35\t0x9D1D\n0xDC36\t0x9D18\n0xDC37\t0x9D22\n0xDC38\t0x9D10\n0xDC39\t0x9D19\n0xDC3A\t0x9D1F\n0xDC3B\t0x9E88\n0xDC3C\t0x9E86\n0xDC3D\t0x9E87\n0xDC3E\t0x9EAE\n0xDC3F\t0x9EAD\n0xDC40\t0x9ED5\n0xDC41\t0x9ED6\n0xDC42\t0x9EFA\n0xDC43\t0x9F12\n0xDC44\t0x9F3D\n0xDC45\t0x5126\n0xDC46\t0x5125\n0xDC47\t0x5122\n0xDC48\t0x5124\n0xDC49\t0x5120\n0xDC4A\t0x5129\n0xDC4B\t0x52F4\n0xDC4C\t0x5693\n0xDC4D\t0x568C\n0xDC4E\t0x568D\n0xDC4F\t0x5686\n0xDC50\t0x5684\n0xDC51\t0x5683\n0xDC52\t0x567E\n0xDC53\t0x5682\n0xDC54\t0x567F\n0xDC55\t0x5681\n0xDC56\t0x58D6\n0xDC57\t0x58D4\n0xDC58\t0x58CF\n0xDC59\t0x58D2\n0xDC5A\t0x5B2D\n0xDC5B\t0x5B25\n0xDC5C\t0x5B32\n0xDC5D\t0x5B23\n0xDC5E\t0x5B2C\n0xDC5F\t0x5B27\n0xDC60\t0x5B26\n0xDC61\t0x5B2F\n0xDC62\t0x5B2E\n0xDC63\t0x5B7B\n0xDC64\t0x5BF1\n0xDC65\t0x5BF2\n0xDC66\t0x5DB7\n0xDC67\t0x5E6C\n0xDC68\t0x5E6A\n0xDC69\t0x5FBE\n0xDC6A\t0x61C3\n0xDC6B\t0x61B5\n0xDC6C\t0x61BC\n0xDC6D\t0x61E7\n0xDC6E\t0x61E0\n0xDC6F\t0x61E5\n0xDC70\t0x61E4\n0xDC71\t0x61E8\n0xDC72\t0x61DE\n0xDC73\t0x64EF\n0xDC74\t0x64E9\n0xDC75\t0x64E3\n0xDC76\t0x64EB\n0xDC77\t0x64E4\n0xDC78\t0x64E8\n0xDC79\t0x6581\n0xDC7A\t0x6580\n0xDC7B\t0x65B6\n0xDC7C\t0x65DA\n0xDC7D\t0x66D2\n0xDC7E\t0x6A8D\n0xDCA1\t0x7406\n0xDCA2\t0x73FE\n0xDCA3\t0x740D\n0xDCA4\t0x74E0\n0xDCA5\t0x74F6\n0xDCA6\t0x74F7\n0xDCA7\t0x751C\n0xDCA8\t0x7522\n0xDCA9\t0x7565\n0xDCAA\t0x7566\n0xDCAB\t0x7562\n0xDCAC\t0x7570\n0xDCAD\t0x758F\n0xDCAE\t0x75D4\n0xDCAF\t0x75D5\n0xDCB0\t0x75B5\n0xDCB1\t0x75CA\n0xDCB2\t0x75CD\n0xDCB3\t0x768E\n0xDCB4\t0x76D4\n0xDCB5\t0x76D2\n0xDCB6\t0x76DB\n0xDCB7\t0x7737\n0xDCB8\t0x773E\n0xDCB9\t0x773C\n0xDCBA\t0x7736\n0xDCBB\t0x7738\n0xDCBC\t0x773A\n0xDCBD\t0x786B\n0xDCBE\t0x7843\n0xDCBF\t0x784E\n0xDCC0\t0x7965\n0xDCC1\t0x7968\n0xDCC2\t0x796D\n0xDCC3\t0x79FB\n0xDCC4\t0x7A92\n0xDCC5\t0x7A95\n0xDCC6\t0x7B20\n0xDCC7\t0x7B28\n0xDCC8\t0x7B1B\n0xDCC9\t0x7B2C\n0xDCCA\t0x7B26\n0xDCCB\t0x7B19\n0xDCCC\t0x7B1E\n0xDCCD\t0x7B2E\n0xDCCE\t0x7C92\n0xDCCF\t0x7C97\n0xDCD0\t0x7C95\n0xDCD1\t0x7D46\n0xDCD2\t0x7D43\n0xDCD3\t0x7D71\n0xDCD4\t0x7D2E\n0xDCD5\t0x7D39\n0xDCD6\t0x7D3C\n0xDCD7\t0x7D40\n0xDCD8\t0x7D30\n0xDCD9\t0x7D33\n0xDCDA\t0x7D44\n0xDCDB\t0x7D2F\n0xDCDC\t0x7D42\n0xDCDD\t0x7D32\n0xDCDE\t0x7D31\n0xDCDF\t0x7F3D\n0xDCE0\t0x7F9E\n0xDCE1\t0x7F9A\n0xDCE2\t0x7FCC\n0xDCE3\t0x7FCE\n0xDCE4\t0x7FD2\n0xDCE5\t0x801C\n0xDCE6\t0x804A\n0xDCE7\t0x8046\n0xDCE8\t0x812F\n0xDCE9\t0x8116\n0xDCEA\t0x8123\n0xDCEB\t0x812B\n0xDCEC\t0x8129\n0xDCED\t0x8130\n0xDCEE\t0x8124\n0xDCEF\t0x8202\n0xDCF0\t0x8235\n0xDCF1\t0x8237\n0xDCF2\t0x8236\n0xDCF3\t0x8239\n0xDCF4\t0x838E\n0xDCF5\t0x839E\n0xDCF6\t0x8398\n0xDCF7\t0x8378\n0xDCF8\t0x83A2\n0xDCF9\t0x8396\n0xDCFA\t0x83BD\n0xDCFB\t0x83AB\n0xDCFC\t0x8392\n0xDCFD\t0x838A\n0xDCFE\t0x8393\n0xDD21\t0x6A96\n0xDD22\t0x6A81\n0xDD23\t0x6AA5\n0xDD24\t0x6A89\n0xDD25\t0x6A9F\n0xDD26\t0x6A9B\n0xDD27\t0x6AA1\n0xDD28\t0x6A9E\n0xDD29\t0x6A87\n0xDD2A\t0x6A93\n0xDD2B\t0x6A8E\n0xDD2C\t0x6A95\n0xDD2D\t0x6A83\n0xDD2E\t0x6AA8\n0xDD2F\t0x6AA4\n0xDD30\t0x6A91\n0xDD31\t0x6A7F\n0xDD32\t0x6AA6\n0xDD33\t0x6A9A\n0xDD34\t0x6A85\n0xDD35\t0x6A8C\n0xDD36\t0x6A92\n0xDD37\t0x6B5B\n0xDD38\t0x6BAD\n0xDD39\t0x6C09\n0xDD3A\t0x6FCC\n0xDD3B\t0x6FA9\n0xDD3C\t0x6FF4\n0xDD3D\t0x6FD4\n0xDD3E\t0x6FE3\n0xDD3F\t0x6FDC\n0xDD40\t0x6FED\n0xDD41\t0x6FE7\n0xDD42\t0x6FE6\n0xDD43\t0x6FDE\n0xDD44\t0x6FF2\n0xDD45\t0x6FDD\n0xDD46\t0x6FE2\n0xDD47\t0x6FE8\n0xDD48\t0x71E1\n0xDD49\t0x71F1\n0xDD4A\t0x71E8\n0xDD4B\t0x71F2\n0xDD4C\t0x71E4\n0xDD4D\t0x71F0\n0xDD4E\t0x71E2\n0xDD4F\t0x7373\n0xDD50\t0x736E\n0xDD51\t0x736F\n0xDD52\t0x7497\n0xDD53\t0x74B2\n0xDD54\t0x74AB\n0xDD55\t0x7490\n0xDD56\t0x74AA\n0xDD57\t0x74AD\n0xDD58\t0x74B1\n0xDD59\t0x74A5\n0xDD5A\t0x74AF\n0xDD5B\t0x7510\n0xDD5C\t0x7511\n0xDD5D\t0x7512\n0xDD5E\t0x750F\n0xDD5F\t0x7584\n0xDD60\t0x7643\n0xDD61\t0x7648\n0xDD62\t0x7649\n0xDD63\t0x7647\n0xDD64\t0x76A4\n0xDD65\t0x76E9\n0xDD66\t0x77B5\n0xDD67\t0x77AB\n0xDD68\t0x77B2\n0xDD69\t0x77B7\n0xDD6A\t0x77B6\n0xDD6B\t0x77B4\n0xDD6C\t0x77B1\n0xDD6D\t0x77A8\n0xDD6E\t0x77F0\n0xDD6F\t0x78F3\n0xDD70\t0x78FD\n0xDD71\t0x7902\n0xDD72\t0x78FB\n0xDD73\t0x78FC\n0xDD74\t0x78FF\n0xDD75\t0x78F2\n0xDD76\t0x7905\n0xDD77\t0x78F9\n0xDD78\t0x78FE\n0xDD79\t0x7904\n0xDD7A\t0x79AB\n0xDD7B\t0x79A8\n0xDD7C\t0x7A5C\n0xDD7D\t0x7A5B\n0xDD7E\t0x7A56\n0xDDA1\t0x8389\n0xDDA2\t0x83A0\n0xDDA3\t0x8377\n0xDDA4\t0x837B\n0xDDA5\t0x837C\n0xDDA6\t0x8386\n0xDDA7\t0x83A7\n0xDDA8\t0x8655\n0xDDA9\t0x5F6A\n0xDDAA\t0x86C7\n0xDDAB\t0x86C0\n0xDDAC\t0x86B6\n0xDDAD\t0x86C4\n0xDDAE\t0x86B5\n0xDDAF\t0x86C6\n0xDDB0\t0x86CB\n0xDDB1\t0x86B1\n0xDDB2\t0x86AF\n0xDDB3\t0x86C9\n0xDDB4\t0x8853\n0xDDB5\t0x889E\n0xDDB6\t0x8888\n0xDDB7\t0x88AB\n0xDDB8\t0x8892\n0xDDB9\t0x8896\n0xDDBA\t0x888D\n0xDDBB\t0x888B\n0xDDBC\t0x8993\n0xDDBD\t0x898F\n0xDDBE\t0x8A2A\n0xDDBF\t0x8A1D\n0xDDC0\t0x8A23\n0xDDC1\t0x8A25\n0xDDC2\t0x8A31\n0xDDC3\t0x8A2D\n0xDDC4\t0x8A1F\n0xDDC5\t0x8A1B\n0xDDC6\t0x8A22\n0xDDC7\t0x8C49\n0xDDC8\t0x8C5A\n0xDDC9\t0x8CA9\n0xDDCA\t0x8CAC\n0xDDCB\t0x8CAB\n0xDDCC\t0x8CA8\n0xDDCD\t0x8CAA\n0xDDCE\t0x8CA7\n0xDDCF\t0x8D67\n0xDDD0\t0x8D66\n0xDDD1\t0x8DBE\n0xDDD2\t0x8DBA\n0xDDD3\t0x8EDB\n0xDDD4\t0x8EDF\n0xDDD5\t0x9019\n0xDDD6\t0x900D\n0xDDD7\t0x901A\n0xDDD8\t0x9017\n0xDDD9\t0x9023\n0xDDDA\t0x901F\n0xDDDB\t0x901D\n0xDDDC\t0x9010\n0xDDDD\t0x9015\n0xDDDE\t0x901E\n0xDDDF\t0x9020\n0xDDE0\t0x900F\n0xDDE1\t0x9022\n0xDDE2\t0x9016\n0xDDE3\t0x901B\n0xDDE4\t0x9014\n0xDDE5\t0x90E8\n0xDDE6\t0x90ED\n0xDDE7\t0x90FD\n0xDDE8\t0x9157\n0xDDE9\t0x91CE\n0xDDEA\t0x91F5\n0xDDEB\t0x91E6\n0xDDEC\t0x91E3\n0xDDED\t0x91E7\n0xDDEE\t0x91ED\n0xDDEF\t0x91E9\n0xDDF0\t0x9589\n0xDDF1\t0x966A\n0xDDF2\t0x9675\n0xDDF3\t0x9673\n0xDDF4\t0x9678\n0xDDF5\t0x9670\n0xDDF6\t0x9674\n0xDDF7\t0x9676\n0xDDF8\t0x9677\n0xDDF9\t0x966C\n0xDDFA\t0x96C0\n0xDDFB\t0x96EA\n0xDDFC\t0x96E9\n0xDDFD\t0x7AE0\n0xDDFE\t0x7ADF\n0xDE21\t0x7A58\n0xDE22\t0x7A54\n0xDE23\t0x7A5A\n0xDE24\t0x7ABE\n0xDE25\t0x7AC0\n0xDE26\t0x7AC1\n0xDE27\t0x7C05\n0xDE28\t0x7C0F\n0xDE29\t0x7BF2\n0xDE2A\t0x7C00\n0xDE2B\t0x7BFF\n0xDE2C\t0x7BFB\n0xDE2D\t0x7C0E\n0xDE2E\t0x7BF4\n0xDE2F\t0x7C0B\n0xDE30\t0x7BF3\n0xDE31\t0x7C02\n0xDE32\t0x7C09\n0xDE33\t0x7C03\n0xDE34\t0x7C01\n0xDE35\t0x7BF8\n0xDE36\t0x7BFD\n0xDE37\t0x7C06\n0xDE38\t0x7BF0\n0xDE39\t0x7BF1\n0xDE3A\t0x7C10\n0xDE3B\t0x7C0A\n0xDE3C\t0x7CE8\n0xDE3D\t0x7E2D\n0xDE3E\t0x7E3C\n0xDE3F\t0x7E42\n0xDE40\t0x7E33\n0xDE41\t0x9848\n0xDE42\t0x7E38\n0xDE43\t0x7E2A\n0xDE44\t0x7E49\n0xDE45\t0x7E40\n0xDE46\t0x7E47\n0xDE47\t0x7E29\n0xDE48\t0x7E4C\n0xDE49\t0x7E30\n0xDE4A\t0x7E3B\n0xDE4B\t0x7E36\n0xDE4C\t0x7E44\n0xDE4D\t0x7E3A\n0xDE4E\t0x7F45\n0xDE4F\t0x7F7F\n0xDE50\t0x7F7E\n0xDE51\t0x7F7D\n0xDE52\t0x7FF4\n0xDE53\t0x7FF2\n0xDE54\t0x802C\n0xDE55\t0x81BB\n0xDE56\t0x81C4\n0xDE57\t0x81CC\n0xDE58\t0x81CA\n0xDE59\t0x81C5\n0xDE5A\t0x81C7\n0xDE5B\t0x81BC\n0xDE5C\t0x81E9\n0xDE5D\t0x825B\n0xDE5E\t0x825A\n0xDE5F\t0x825C\n0xDE60\t0x8583\n0xDE61\t0x8580\n0xDE62\t0x858F\n0xDE63\t0x85A7\n0xDE64\t0x8595\n0xDE65\t0x85A0\n0xDE66\t0x858B\n0xDE67\t0x85A3\n0xDE68\t0x857B\n0xDE69\t0x85A4\n0xDE6A\t0x859A\n0xDE6B\t0x859E\n0xDE6C\t0x8577\n0xDE6D\t0x857C\n0xDE6E\t0x8589\n0xDE6F\t0x85A1\n0xDE70\t0x857A\n0xDE71\t0x8578\n0xDE72\t0x8557\n0xDE73\t0x858E\n0xDE74\t0x8596\n0xDE75\t0x8586\n0xDE76\t0x858D\n0xDE77\t0x8599\n0xDE78\t0x859D\n0xDE79\t0x8581\n0xDE7A\t0x85A2\n0xDE7B\t0x8582\n0xDE7C\t0x8588\n0xDE7D\t0x8585\n0xDE7E\t0x8579\n0xDEA1\t0x9802\n0xDEA2\t0x9803\n0xDEA3\t0x9B5A\n0xDEA4\t0x9CE5\n0xDEA5\t0x9E75\n0xDEA6\t0x9E7F\n0xDEA7\t0x9EA5\n0xDEA8\t0x9EBB\n0xDEA9\t0x50A2\n0xDEAA\t0x508D\n0xDEAB\t0x5085\n0xDEAC\t0x5099\n0xDEAD\t0x5091\n0xDEAE\t0x5080\n0xDEAF\t0x5096\n0xDEB0\t0x5098\n0xDEB1\t0x509A\n0xDEB2\t0x6700\n0xDEB3\t0x51F1\n0xDEB4\t0x5272\n0xDEB5\t0x5274\n0xDEB6\t0x5275\n0xDEB7\t0x5269\n0xDEB8\t0x52DE\n0xDEB9\t0x52DD\n0xDEBA\t0x52DB\n0xDEBB\t0x535A\n0xDEBC\t0x53A5\n0xDEBD\t0x557B\n0xDEBE\t0x5580\n0xDEBF\t0x55A7\n0xDEC0\t0x557C\n0xDEC1\t0x558A\n0xDEC2\t0x559D\n0xDEC3\t0x5598\n0xDEC4\t0x5582\n0xDEC5\t0x559C\n0xDEC6\t0x55AA\n0xDEC7\t0x5594\n0xDEC8\t0x5587\n0xDEC9\t0x558B\n0xDECA\t0x5583\n0xDECB\t0x55B3\n0xDECC\t0x55AE\n0xDECD\t0x559F\n0xDECE\t0x553E\n0xDECF\t0x55B2\n0xDED0\t0x559A\n0xDED1\t0x55BB\n0xDED2\t0x55AC\n0xDED3\t0x55B1\n0xDED4\t0x557E\n0xDED5\t0x5589\n0xDED6\t0x55AB\n0xDED7\t0x5599\n0xDED8\t0x570D\n0xDED9\t0x582F\n0xDEDA\t0x582A\n0xDEDB\t0x5834\n0xDEDC\t0x5824\n0xDEDD\t0x5830\n0xDEDE\t0x5831\n0xDEDF\t0x5821\n0xDEE0\t0x581D\n0xDEE1\t0x5820\n0xDEE2\t0x58F9\n0xDEE3\t0x58FA\n0xDEE4\t0x5960\n0xDEE5\t0x5A77\n0xDEE6\t0x5A9A\n0xDEE7\t0x5A7F\n0xDEE8\t0x5A92\n0xDEE9\t0x5A9B\n0xDEEA\t0x5AA7\n0xDEEB\t0x5B73\n0xDEEC\t0x5B71\n0xDEED\t0x5BD2\n0xDEEE\t0x5BCC\n0xDEEF\t0x5BD3\n0xDEF0\t0x5BD0\n0xDEF1\t0x5C0A\n0xDEF2\t0x5C0B\n0xDEF3\t0x5C31\n0xDEF4\t0x5D4C\n0xDEF5\t0x5D50\n0xDEF6\t0x5D34\n0xDEF7\t0x5D47\n0xDEF8\t0x5DFD\n0xDEF9\t0x5E45\n0xDEFA\t0x5E3D\n0xDEFB\t0x5E40\n0xDEFC\t0x5E43\n0xDEFD\t0x5E7E\n0xDEFE\t0x5ECA\n0xDF21\t0x8576\n0xDF22\t0x8598\n0xDF23\t0x8590\n0xDF24\t0x859F\n0xDF25\t0x8668\n0xDF26\t0x87BE\n0xDF27\t0x87AA\n0xDF28\t0x87AD\n0xDF29\t0x87C5\n0xDF2A\t0x87B0\n0xDF2B\t0x87AC\n0xDF2C\t0x87B9\n0xDF2D\t0x87B5\n0xDF2E\t0x87BC\n0xDF2F\t0x87AE\n0xDF30\t0x87C9\n0xDF31\t0x87C3\n0xDF32\t0x87C2\n0xDF33\t0x87CC\n0xDF34\t0x87B7\n0xDF35\t0x87AF\n0xDF36\t0x87C4\n0xDF37\t0x87CA\n0xDF38\t0x87B4\n0xDF39\t0x87B6\n0xDF3A\t0x87BF\n0xDF3B\t0x87B8\n0xDF3C\t0x87BD\n0xDF3D\t0x87DE\n0xDF3E\t0x87B2\n0xDF3F\t0x8935\n0xDF40\t0x8933\n0xDF41\t0x893C\n0xDF42\t0x893E\n0xDF43\t0x8941\n0xDF44\t0x8952\n0xDF45\t0x8937\n0xDF46\t0x8942\n0xDF47\t0x89AD\n0xDF48\t0x89AF\n0xDF49\t0x89AE\n0xDF4A\t0x89F2\n0xDF4B\t0x89F3\n0xDF4C\t0x8B1E\n0xDF4D\t0x8B18\n0xDF4E\t0x8B16\n0xDF4F\t0x8B11\n0xDF50\t0x8B05\n0xDF51\t0x8B0B\n0xDF52\t0x8B22\n0xDF53\t0x8B0F\n0xDF54\t0x8B12\n0xDF55\t0x8B15\n0xDF56\t0x8B07\n0xDF57\t0x8B0D\n0xDF58\t0x8B08\n0xDF59\t0x8B06\n0xDF5A\t0x8B1C\n0xDF5B\t0x8B13\n0xDF5C\t0x8B1A\n0xDF5D\t0x8C4F\n0xDF5E\t0x8C70\n0xDF5F\t0x8C72\n0xDF60\t0x8C71\n0xDF61\t0x8C6F\n0xDF62\t0x8C95\n0xDF63\t0x8C94\n0xDF64\t0x8CF9\n0xDF65\t0x8D6F\n0xDF66\t0x8E4E\n0xDF67\t0x8E4D\n0xDF68\t0x8E53\n0xDF69\t0x8E50\n0xDF6A\t0x8E4C\n0xDF6B\t0x8E47\n0xDF6C\t0x8F43\n0xDF6D\t0x8F40\n0xDF6E\t0x9085\n0xDF6F\t0x907E\n0xDF70\t0x9138\n0xDF71\t0x919A\n0xDF72\t0x91A2\n0xDF73\t0x919B\n0xDF74\t0x9199\n0xDF75\t0x919F\n0xDF76\t0x91A1\n0xDF77\t0x919D\n0xDF78\t0x91A0\n0xDF79\t0x93A1\n0xDF7A\t0x9383\n0xDF7B\t0x93AF\n0xDF7C\t0x9364\n0xDF7D\t0x9356\n0xDF7E\t0x9347\n0xDFA1\t0x5EC1\n0xDFA2\t0x5EC2\n0xDFA3\t0x5EC4\n0xDFA4\t0x5F3C\n0xDFA5\t0x5F6D\n0xDFA6\t0x5FA9\n0xDFA7\t0x5FAA\n0xDFA8\t0x5FA8\n0xDFA9\t0x60D1\n0xDFAA\t0x60E1\n0xDFAB\t0x60B2\n0xDFAC\t0x60B6\n0xDFAD\t0x60E0\n0xDFAE\t0x611C\n0xDFAF\t0x6123\n0xDFB0\t0x60FA\n0xDFB1\t0x6115\n0xDFB2\t0x60F0\n0xDFB3\t0x60FB\n0xDFB4\t0x60F4\n0xDFB5\t0x6168\n0xDFB6\t0x60F1\n0xDFB7\t0x610E\n0xDFB8\t0x60F6\n0xDFB9\t0x6109\n0xDFBA\t0x6100\n0xDFBB\t0x6112\n0xDFBC\t0x621F\n0xDFBD\t0x6249\n0xDFBE\t0x63A3\n0xDFBF\t0x638C\n0xDFC0\t0x63CF\n0xDFC1\t0x63C0\n0xDFC2\t0x63E9\n0xDFC3\t0x63C9\n0xDFC4\t0x63C6\n0xDFC5\t0x63CD\n0xDFC6\t0x63D2\n0xDFC7\t0x63E3\n0xDFC8\t0x63D0\n0xDFC9\t0x63E1\n0xDFCA\t0x63D6\n0xDFCB\t0x63ED\n0xDFCC\t0x63EE\n0xDFCD\t0x6376\n0xDFCE\t0x63F4\n0xDFCF\t0x63EA\n0xDFD0\t0x63DB\n0xDFD1\t0x6452\n0xDFD2\t0x63DA\n0xDFD3\t0x63F9\n0xDFD4\t0x655E\n0xDFD5\t0x6566\n0xDFD6\t0x6562\n0xDFD7\t0x6563\n0xDFD8\t0x6591\n0xDFD9\t0x6590\n0xDFDA\t0x65AF\n0xDFDB\t0x666E\n0xDFDC\t0x6670\n0xDFDD\t0x6674\n0xDFDE\t0x6676\n0xDFDF\t0x666F\n0xDFE0\t0x6691\n0xDFE1\t0x667A\n0xDFE2\t0x667E\n0xDFE3\t0x6677\n0xDFE4\t0x66FE\n0xDFE5\t0x66FF\n0xDFE6\t0x671F\n0xDFE7\t0x671D\n0xDFE8\t0x68FA\n0xDFE9\t0x68D5\n0xDFEA\t0x68E0\n0xDFEB\t0x68D8\n0xDFEC\t0x68D7\n0xDFED\t0x6905\n0xDFEE\t0x68DF\n0xDFEF\t0x68F5\n0xDFF0\t0x68EE\n0xDFF1\t0x68E7\n0xDFF2\t0x68F9\n0xDFF3\t0x68D2\n0xDFF4\t0x68F2\n0xDFF5\t0x68E3\n0xDFF6\t0x68CB\n0xDFF7\t0x68CD\n0xDFF8\t0x690D\n0xDFF9\t0x6912\n0xDFFA\t0x690E\n0xDFFB\t0x68C9\n0xDFFC\t0x68DA\n0xDFFD\t0x696E\n0xDFFE\t0x68FB\n0xE021\t0x937C\n0xE022\t0x9358\n0xE023\t0x935C\n0xE024\t0x9376\n0xE025\t0x9349\n0xE026\t0x9350\n0xE027\t0x9351\n0xE028\t0x9360\n0xE029\t0x936D\n0xE02A\t0x938F\n0xE02B\t0x934C\n0xE02C\t0x936A\n0xE02D\t0x9379\n0xE02E\t0x9357\n0xE02F\t0x9355\n0xE030\t0x9352\n0xE031\t0x934F\n0xE032\t0x9371\n0xE033\t0x9377\n0xE034\t0x937B\n0xE035\t0x9361\n0xE036\t0x935E\n0xE037\t0x9363\n0xE038\t0x9367\n0xE039\t0x934E\n0xE03A\t0x9359\n0xE03B\t0x95C7\n0xE03C\t0x95C0\n0xE03D\t0x95C9\n0xE03E\t0x95C3\n0xE03F\t0x95C5\n0xE040\t0x95B7\n0xE041\t0x96AE\n0xE042\t0x96B0\n0xE043\t0x96AC\n0xE044\t0x9720\n0xE045\t0x971F\n0xE046\t0x9718\n0xE047\t0x971D\n0xE048\t0x9719\n0xE049\t0x979A\n0xE04A\t0x97A1\n0xE04B\t0x979C\n0xE04C\t0x979E\n0xE04D\t0x979D\n0xE04E\t0x97D5\n0xE04F\t0x97D4\n0xE050\t0x97F1\n0xE051\t0x9841\n0xE052\t0x9844\n0xE053\t0x984A\n0xE054\t0x9849\n0xE055\t0x9845\n0xE056\t0x9843\n0xE057\t0x9925\n0xE058\t0x992B\n0xE059\t0x992C\n0xE05A\t0x992A\n0xE05B\t0x9933\n0xE05C\t0x9932\n0xE05D\t0x992F\n0xE05E\t0x992D\n0xE05F\t0x9931\n0xE060\t0x9930\n0xE061\t0x9998\n0xE062\t0x99A3\n0xE063\t0x99A1\n0xE064\t0x9A02\n0xE065\t0x99FA\n0xE066\t0x99F4\n0xE067\t0x99F7\n0xE068\t0x99F9\n0xE069\t0x99F8\n0xE06A\t0x99F6\n0xE06B\t0x99FB\n0xE06C\t0x99FD\n0xE06D\t0x99FE\n0xE06E\t0x99FC\n0xE06F\t0x9A03\n0xE070\t0x9ABE\n0xE071\t0x9AFE\n0xE072\t0x9AFD\n0xE073\t0x9B01\n0xE074\t0x9AFC\n0xE075\t0x9B48\n0xE076\t0x9B9A\n0xE077\t0x9BA8\n0xE078\t0x9B9E\n0xE079\t0x9B9B\n0xE07A\t0x9BA6\n0xE07B\t0x9BA1\n0xE07C\t0x9BA5\n0xE07D\t0x9BA4\n0xE07E\t0x9B86\n0xE0A1\t0x6B3E\n0xE0A2\t0x6B3A\n0xE0A3\t0x6B3D\n0xE0A4\t0x6B98\n0xE0A5\t0x6B96\n0xE0A6\t0x6BBC\n0xE0A7\t0x6BEF\n0xE0A8\t0x6C2E\n0xE0A9\t0x6C2F\n0xE0AA\t0x6C2C\n0xE0AB\t0x6E2F\n0xE0AC\t0x6E38\n0xE0AD\t0x6E54\n0xE0AE\t0x6E21\n0xE0AF\t0x6E32\n0xE0B0\t0x6E67\n0xE0B1\t0x6E4A\n0xE0B2\t0x6E20\n0xE0B3\t0x6E25\n0xE0B4\t0x6E23\n0xE0B5\t0x6E1B\n0xE0B6\t0x6E5B\n0xE0B7\t0x6E58\n0xE0B8\t0x6E24\n0xE0B9\t0x6E56\n0xE0BA\t0x6E6E\n0xE0BB\t0x6E2D\n0xE0BC\t0x6E26\n0xE0BD\t0x6E6F\n0xE0BE\t0x6E34\n0xE0BF\t0x6E4D\n0xE0C0\t0x6E3A\n0xE0C1\t0x6E2C\n0xE0C2\t0x6E43\n0xE0C3\t0x6E1D\n0xE0C4\t0x6E3E\n0xE0C5\t0x6ECB\n0xE0C6\t0x6E89\n0xE0C7\t0x6E19\n0xE0C8\t0x6E4E\n0xE0C9\t0x6E63\n0xE0CA\t0x6E44\n0xE0CB\t0x6E72\n0xE0CC\t0x6E69\n0xE0CD\t0x6E5F\n0xE0CE\t0x7119\n0xE0CF\t0x711A\n0xE0D0\t0x7126\n0xE0D1\t0x7130\n0xE0D2\t0x7121\n0xE0D3\t0x7136\n0xE0D4\t0x716E\n0xE0D5\t0x711C\n0xE0D6\t0x724C\n0xE0D7\t0x7284\n0xE0D8\t0x7280\n0xE0D9\t0x7336\n0xE0DA\t0x7325\n0xE0DB\t0x7334\n0xE0DC\t0x7329\n0xE0DD\t0x743A\n0xE0DE\t0x742A\n0xE0DF\t0x7433\n0xE0E0\t0x7422\n0xE0E1\t0x7425\n0xE0E2\t0x7435\n0xE0E3\t0x7436\n0xE0E4\t0x7434\n0xE0E5\t0x742F\n0xE0E6\t0x741B\n0xE0E7\t0x7426\n0xE0E8\t0x7428\n0xE0E9\t0x7525\n0xE0EA\t0x7526\n0xE0EB\t0x756B\n0xE0EC\t0x756A\n0xE0ED\t0x75E2\n0xE0EE\t0x75DB\n0xE0EF\t0x75E3\n0xE0F0\t0x75D9\n0xE0F1\t0x75D8\n0xE0F2\t0x75DE\n0xE0F3\t0x75E0\n0xE0F4\t0x767B\n0xE0F5\t0x767C\n0xE0F6\t0x7696\n0xE0F7\t0x7693\n0xE0F8\t0x76B4\n0xE0F9\t0x76DC\n0xE0FA\t0x774F\n0xE0FB\t0x77ED\n0xE0FC\t0x785D\n0xE0FD\t0x786C\n0xE0FE\t0x786F\n0xE121\t0x9BA2\n0xE122\t0x9BA0\n0xE123\t0x9BAF\n0xE124\t0x9D33\n0xE125\t0x9D41\n0xE126\t0x9D67\n0xE127\t0x9D36\n0xE128\t0x9D2E\n0xE129\t0x9D2F\n0xE12A\t0x9D31\n0xE12B\t0x9D38\n0xE12C\t0x9D30\n0xE12D\t0x9D45\n0xE12E\t0x9D42\n0xE12F\t0x9D43\n0xE130\t0x9D3E\n0xE131\t0x9D37\n0xE132\t0x9D40\n0xE133\t0x9D3D\n0xE134\t0x7FF5\n0xE135\t0x9D2D\n0xE136\t0x9E8A\n0xE137\t0x9E89\n0xE138\t0x9E8D\n0xE139\t0x9EB0\n0xE13A\t0x9EC8\n0xE13B\t0x9EDA\n0xE13C\t0x9EFB\n0xE13D\t0x9EFF\n0xE13E\t0x9F24\n0xE13F\t0x9F23\n0xE140\t0x9F22\n0xE141\t0x9F54\n0xE142\t0x9FA0\n0xE143\t0x5131\n0xE144\t0x512D\n0xE145\t0x512E\n0xE146\t0x5698\n0xE147\t0x569C\n0xE148\t0x5697\n0xE149\t0x569A\n0xE14A\t0x569D\n0xE14B\t0x5699\n0xE14C\t0x5970\n0xE14D\t0x5B3C\n0xE14E\t0x5C69\n0xE14F\t0x5C6A\n0xE150\t0x5DC0\n0xE151\t0x5E6D\n0xE152\t0x5E6E\n0xE153\t0x61D8\n0xE154\t0x61DF\n0xE155\t0x61ED\n0xE156\t0x61EE\n0xE157\t0x61F1\n0xE158\t0x61EA\n0xE159\t0x61F0\n0xE15A\t0x61EB\n0xE15B\t0x61D6\n0xE15C\t0x61E9\n0xE15D\t0x64FF\n0xE15E\t0x6504\n0xE15F\t0x64FD\n0xE160\t0x64F8\n0xE161\t0x6501\n0xE162\t0x6503\n0xE163\t0x64FC\n0xE164\t0x6594\n0xE165\t0x65DB\n0xE166\t0x66DA\n0xE167\t0x66DB\n0xE168\t0x66D8\n0xE169\t0x6AC5\n0xE16A\t0x6AB9\n0xE16B\t0x6ABD\n0xE16C\t0x6AE1\n0xE16D\t0x6AC6\n0xE16E\t0x6ABA\n0xE16F\t0x6AB6\n0xE170\t0x6AB7\n0xE171\t0x6AC7\n0xE172\t0x6AB4\n0xE173\t0x6AAD\n0xE174\t0x6B5E\n0xE175\t0x6BC9\n0xE176\t0x6C0B\n0xE177\t0x7007\n0xE178\t0x700C\n0xE179\t0x700D\n0xE17A\t0x7001\n0xE17B\t0x7005\n0xE17C\t0x7014\n0xE17D\t0x700E\n0xE17E\t0x6FFF\n0xE1A1\t0x7A0D\n0xE1A2\t0x7A08\n0xE1A3\t0x7A0B\n0xE1A4\t0x7A05\n0xE1A5\t0x7A00\n0xE1A6\t0x7A98\n0xE1A7\t0x7A97\n0xE1A8\t0x7A96\n0xE1A9\t0x7AE5\n0xE1AA\t0x7AE3\n0xE1AB\t0x7B49\n0xE1AC\t0x7B56\n0xE1AD\t0x7B46\n0xE1AE\t0x7B50\n0xE1AF\t0x7B52\n0xE1B0\t0x7B54\n0xE1B1\t0x7B4D\n0xE1B2\t0x7B4B\n0xE1B3\t0x7B4F\n0xE1B4\t0x7B51\n0xE1B5\t0x7C9F\n0xE1B6\t0x7CA5\n0xE1B7\t0x7D5E\n0xE1B8\t0x7D50\n0xE1B9\t0x7D68\n0xE1BA\t0x7D55\n0xE1BB\t0x7D2B\n0xE1BC\t0x7D6E\n0xE1BD\t0x7D72\n0xE1BE\t0x7D61\n0xE1BF\t0x7D66\n0xE1C0\t0x7D62\n0xE1C1\t0x7D70\n0xE1C2\t0x7D73\n0xE1C3\t0x5584\n0xE1C4\t0x7FD4\n0xE1C5\t0x7FD5\n0xE1C6\t0x800B\n0xE1C7\t0x8052\n0xE1C8\t0x8085\n0xE1C9\t0x8155\n0xE1CA\t0x8154\n0xE1CB\t0x814B\n0xE1CC\t0x8151\n0xE1CD\t0x814E\n0xE1CE\t0x8139\n0xE1CF\t0x8146\n0xE1D0\t0x813E\n0xE1D1\t0x814C\n0xE1D2\t0x8153\n0xE1D3\t0x8174\n0xE1D4\t0x8212\n0xE1D5\t0x821C\n0xE1D6\t0x83E9\n0xE1D7\t0x8403\n0xE1D8\t0x83F8\n0xE1D9\t0x840D\n0xE1DA\t0x83E0\n0xE1DB\t0x83C5\n0xE1DC\t0x840B\n0xE1DD\t0x83C1\n0xE1DE\t0x83EF\n0xE1DF\t0x83F1\n0xE1E0\t0x83F4\n0xE1E1\t0x8457\n0xE1E2\t0x840A\n0xE1E3\t0x83F0\n0xE1E4\t0x840C\n0xE1E5\t0x83CC\n0xE1E6\t0x83FD\n0xE1E7\t0x83F2\n0xE1E8\t0x83CA\n0xE1E9\t0x8438\n0xE1EA\t0x840E\n0xE1EB\t0x8404\n0xE1EC\t0x83DC\n0xE1ED\t0x8407\n0xE1EE\t0x83D4\n0xE1EF\t0x83DF\n0xE1F0\t0x865B\n0xE1F1\t0x86DF\n0xE1F2\t0x86D9\n0xE1F3\t0x86ED\n0xE1F4\t0x86D4\n0xE1F5\t0x86DB\n0xE1F6\t0x86E4\n0xE1F7\t0x86D0\n0xE1F8\t0x86DE\n0xE1F9\t0x8857\n0xE1FA\t0x88C1\n0xE1FB\t0x88C2\n0xE1FC\t0x88B1\n0xE1FD\t0x8983\n0xE1FE\t0x8996\n0xE221\t0x7000\n0xE222\t0x6FFB\n0xE223\t0x7026\n0xE224\t0x6FFC\n0xE225\t0x6FF7\n0xE226\t0x700A\n0xE227\t0x7201\n0xE228\t0x71FF\n0xE229\t0x71F9\n0xE22A\t0x7203\n0xE22B\t0x71FD\n0xE22C\t0x7376\n0xE22D\t0x74B8\n0xE22E\t0x74C0\n0xE22F\t0x74B5\n0xE230\t0x74C1\n0xE231\t0x74BE\n0xE232\t0x74B6\n0xE233\t0x74BB\n0xE234\t0x74C2\n0xE235\t0x7514\n0xE236\t0x7513\n0xE237\t0x765C\n0xE238\t0x7664\n0xE239\t0x7659\n0xE23A\t0x7650\n0xE23B\t0x7653\n0xE23C\t0x7657\n0xE23D\t0x765A\n0xE23E\t0x76A6\n0xE23F\t0x76BD\n0xE240\t0x76EC\n0xE241\t0x77C2\n0xE242\t0x77BA\n0xE243\t0x790C\n0xE244\t0x7913\n0xE245\t0x7914\n0xE246\t0x7909\n0xE247\t0x7910\n0xE248\t0x7912\n0xE249\t0x7911\n0xE24A\t0x79AD\n0xE24B\t0x79AC\n0xE24C\t0x7A5F\n0xE24D\t0x7C1C\n0xE24E\t0x7C29\n0xE24F\t0x7C19\n0xE250\t0x7C20\n0xE251\t0x7C1F\n0xE252\t0x7C2D\n0xE253\t0x7C1D\n0xE254\t0x7C26\n0xE255\t0x7C28\n0xE256\t0x7C22\n0xE257\t0x7C25\n0xE258\t0x7C30\n0xE259\t0x7E5C\n0xE25A\t0x7E50\n0xE25B\t0x7E56\n0xE25C\t0x7E63\n0xE25D\t0x7E58\n0xE25E\t0x7E62\n0xE25F\t0x7E5F\n0xE260\t0x7E51\n0xE261\t0x7E60\n0xE262\t0x7E57\n0xE263\t0x7E53\n0xE264\t0x7FB5\n0xE265\t0x7FB3\n0xE266\t0x7FF7\n0xE267\t0x7FF8\n0xE268\t0x8075\n0xE269\t0x81D1\n0xE26A\t0x81D2\n0xE26B\t0x81D0\n0xE26C\t0x825F\n0xE26D\t0x825E\n0xE26E\t0x85B4\n0xE26F\t0x85C6\n0xE270\t0x85C0\n0xE271\t0x85C3\n0xE272\t0x85C2\n0xE273\t0x85B3\n0xE274\t0x85B5\n0xE275\t0x85BD\n0xE276\t0x85C7\n0xE277\t0x85C4\n0xE278\t0x85BF\n0xE279\t0x85CB\n0xE27A\t0x85CE\n0xE27B\t0x85C8\n0xE27C\t0x85C5\n0xE27D\t0x85B1\n0xE27E\t0x85B6\n0xE2A1\t0x8A3B\n0xE2A2\t0x8A60\n0xE2A3\t0x8A55\n0xE2A4\t0x8A5E\n0xE2A5\t0x8A3C\n0xE2A6\t0x8A41\n0xE2A7\t0x8A54\n0xE2A8\t0x8A5B\n0xE2A9\t0x8A50\n0xE2AA\t0x8A46\n0xE2AB\t0x8A34\n0xE2AC\t0x8A3A\n0xE2AD\t0x8A36\n0xE2AE\t0x8A56\n0xE2AF\t0x8C61\n0xE2B0\t0x8C82\n0xE2B1\t0x8CAF\n0xE2B2\t0x8CBC\n0xE2B3\t0x8CB3\n0xE2B4\t0x8CBD\n0xE2B5\t0x8CC1\n0xE2B6\t0x8CBB\n0xE2B7\t0x8CC0\n0xE2B8\t0x8CB4\n0xE2B9\t0x8CB7\n0xE2BA\t0x8CB6\n0xE2BB\t0x8CBF\n0xE2BC\t0x8CB8\n0xE2BD\t0x8D8A\n0xE2BE\t0x8D85\n0xE2BF\t0x8D81\n0xE2C0\t0x8DCE\n0xE2C1\t0x8DDD\n0xE2C2\t0x8DCB\n0xE2C3\t0x8DDA\n0xE2C4\t0x8DD1\n0xE2C5\t0x8DCC\n0xE2C6\t0x8DDB\n0xE2C7\t0x8DC6\n0xE2C8\t0x8EFB\n0xE2C9\t0x8EF8\n0xE2CA\t0x8EFC\n0xE2CB\t0x8F9C\n0xE2CC\t0x902E\n0xE2CD\t0x9035\n0xE2CE\t0x9031\n0xE2CF\t0x9038\n0xE2D0\t0x9032\n0xE2D1\t0x9036\n0xE2D2\t0x9102\n0xE2D3\t0x90F5\n0xE2D4\t0x9109\n0xE2D5\t0x90FE\n0xE2D6\t0x9163\n0xE2D7\t0x9165\n0xE2D8\t0x91CF\n0xE2D9\t0x9214\n0xE2DA\t0x9215\n0xE2DB\t0x9223\n0xE2DC\t0x9209\n0xE2DD\t0x921E\n0xE2DE\t0x920D\n0xE2DF\t0x9210\n0xE2E0\t0x9207\n0xE2E1\t0x9211\n0xE2E2\t0x9594\n0xE2E3\t0x958F\n0xE2E4\t0x958B\n0xE2E5\t0x9591\n0xE2E6\t0x9593\n0xE2E7\t0x9592\n0xE2E8\t0x958E\n0xE2E9\t0x968A\n0xE2EA\t0x968E\n0xE2EB\t0x968B\n0xE2EC\t0x967D\n0xE2ED\t0x9685\n0xE2EE\t0x9686\n0xE2EF\t0x968D\n0xE2F0\t0x9672\n0xE2F1\t0x9684\n0xE2F2\t0x96C1\n0xE2F3\t0x96C5\n0xE2F4\t0x96C4\n0xE2F5\t0x96C6\n0xE2F6\t0x96C7\n0xE2F7\t0x96EF\n0xE2F8\t0x96F2\n0xE2F9\t0x97CC\n0xE2FA\t0x9805\n0xE2FB\t0x9806\n0xE2FC\t0x9808\n0xE2FD\t0x98E7\n0xE2FE\t0x98EA\n0xE321\t0x85D2\n0xE322\t0x8624\n0xE323\t0x85B8\n0xE324\t0x85B7\n0xE325\t0x85BE\n0xE326\t0x8669\n0xE327\t0x87E7\n0xE328\t0x87E6\n0xE329\t0x87E2\n0xE32A\t0x87DB\n0xE32B\t0x87EB\n0xE32C\t0x87EA\n0xE32D\t0x87E5\n0xE32E\t0x87DF\n0xE32F\t0x87F3\n0xE330\t0x87E4\n0xE331\t0x87D4\n0xE332\t0x87DC\n0xE333\t0x87D3\n0xE334\t0x87ED\n0xE335\t0x87D8\n0xE336\t0x87E3\n0xE337\t0x87D7\n0xE338\t0x87D9\n0xE339\t0x8801\n0xE33A\t0x87F4\n0xE33B\t0x87E8\n0xE33C\t0x87DD\n0xE33D\t0x8953\n0xE33E\t0x894B\n0xE33F\t0x894F\n0xE340\t0x894C\n0xE341\t0x8946\n0xE342\t0x8950\n0xE343\t0x8951\n0xE344\t0x8949\n0xE345\t0x8B2A\n0xE346\t0x8B27\n0xE347\t0x8B23\n0xE348\t0x8B33\n0xE349\t0x8B30\n0xE34A\t0x8B35\n0xE34B\t0x8B47\n0xE34C\t0x8B2F\n0xE34D\t0x8B3C\n0xE34E\t0x8B3E\n0xE34F\t0x8B31\n0xE350\t0x8B25\n0xE351\t0x8B37\n0xE352\t0x8B26\n0xE353\t0x8B36\n0xE354\t0x8B2E\n0xE355\t0x8B24\n0xE356\t0x8B3B\n0xE357\t0x8B3D\n0xE358\t0x8B3A\n0xE359\t0x8C42\n0xE35A\t0x8C75\n0xE35B\t0x8C99\n0xE35C\t0x8C98\n0xE35D\t0x8C97\n0xE35E\t0x8CFE\n0xE35F\t0x8D04\n0xE360\t0x8D02\n0xE361\t0x8D00\n0xE362\t0x8E5C\n0xE363\t0x8E62\n0xE364\t0x8E60\n0xE365\t0x8E57\n0xE366\t0x8E56\n0xE367\t0x8E5E\n0xE368\t0x8E65\n0xE369\t0x8E67\n0xE36A\t0x8E5B\n0xE36B\t0x8E5A\n0xE36C\t0x8E61\n0xE36D\t0x8E5D\n0xE36E\t0x8E69\n0xE36F\t0x8E54\n0xE370\t0x8F46\n0xE371\t0x8F47\n0xE372\t0x8F48\n0xE373\t0x8F4B\n0xE374\t0x9128\n0xE375\t0x913A\n0xE376\t0x913B\n0xE377\t0x913E\n0xE378\t0x91A8\n0xE379\t0x91A5\n0xE37A\t0x91A7\n0xE37B\t0x91AF\n0xE37C\t0x91AA\n0xE37D\t0x93B5\n0xE37E\t0x938C\n0xE3A1\t0x98EF\n0xE3A2\t0x98E9\n0xE3A3\t0x98F2\n0xE3A4\t0x98ED\n0xE3A5\t0x99AE\n0xE3A6\t0x99AD\n0xE3A7\t0x9EC3\n0xE3A8\t0x9ECD\n0xE3A9\t0x9ED1\n0xE3AA\t0x4E82\n0xE3AB\t0x50AD\n0xE3AC\t0x50B5\n0xE3AD\t0x50B2\n0xE3AE\t0x50B3\n0xE3AF\t0x50C5\n0xE3B0\t0x50BE\n0xE3B1\t0x50AC\n0xE3B2\t0x50B7\n0xE3B3\t0x50BB\n0xE3B4\t0x50AF\n0xE3B5\t0x50C7\n0xE3B6\t0x527F\n0xE3B7\t0x5277\n0xE3B8\t0x527D\n0xE3B9\t0x52DF\n0xE3BA\t0x52E6\n0xE3BB\t0x52E4\n0xE3BC\t0x52E2\n0xE3BD\t0x52E3\n0xE3BE\t0x532F\n0xE3BF\t0x55DF\n0xE3C0\t0x55E8\n0xE3C1\t0x55D3\n0xE3C2\t0x55E6\n0xE3C3\t0x55CE\n0xE3C4\t0x55DC\n0xE3C5\t0x55C7\n0xE3C6\t0x55D1\n0xE3C7\t0x55E3\n0xE3C8\t0x55E4\n0xE3C9\t0x55EF\n0xE3CA\t0x55DA\n0xE3CB\t0x55E1\n0xE3CC\t0x55C5\n0xE3CD\t0x55C6\n0xE3CE\t0x55E5\n0xE3CF\t0x55C9\n0xE3D0\t0x5712\n0xE3D1\t0x5713\n0xE3D2\t0x585E\n0xE3D3\t0x5851\n0xE3D4\t0x5858\n0xE3D5\t0x5857\n0xE3D6\t0x585A\n0xE3D7\t0x5854\n0xE3D8\t0x586B\n0xE3D9\t0x584C\n0xE3DA\t0x586D\n0xE3DB\t0x584A\n0xE3DC\t0x5862\n0xE3DD\t0x5852\n0xE3DE\t0x584B\n0xE3DF\t0x5967\n0xE3E0\t0x5AC1\n0xE3E1\t0x5AC9\n0xE3E2\t0x5ACC\n0xE3E3\t0x5ABE\n0xE3E4\t0x5ABD\n0xE3E5\t0x5ABC\n0xE3E6\t0x5AB3\n0xE3E7\t0x5AC2\n0xE3E8\t0x5AB2\n0xE3E9\t0x5D69\n0xE3EA\t0x5D6F\n0xE3EB\t0x5E4C\n0xE3EC\t0x5E79\n0xE3ED\t0x5EC9\n0xE3EE\t0x5EC8\n0xE3EF\t0x5F12\n0xE3F0\t0x5F59\n0xE3F1\t0x5FAC\n0xE3F2\t0x5FAE\n0xE3F3\t0x611A\n0xE3F4\t0x610F\n0xE3F5\t0x6148\n0xE3F6\t0x611F\n0xE3F7\t0x60F3\n0xE3F8\t0x611B\n0xE3F9\t0x60F9\n0xE3FA\t0x6101\n0xE3FB\t0x6108\n0xE3FC\t0x614E\n0xE3FD\t0x614C\n0xE3FE\t0x6144\n0xE421\t0x9392\n0xE422\t0x93B7\n0xE423\t0x939B\n0xE424\t0x939D\n0xE425\t0x9389\n0xE426\t0x93A7\n0xE427\t0x938E\n0xE428\t0x93AA\n0xE429\t0x939E\n0xE42A\t0x93A6\n0xE42B\t0x9395\n0xE42C\t0x9388\n0xE42D\t0x9399\n0xE42E\t0x939F\n0xE42F\t0x9380\n0xE430\t0x938D\n0xE431\t0x93B1\n0xE432\t0x9391\n0xE433\t0x93B2\n0xE434\t0x93A4\n0xE435\t0x93A8\n0xE436\t0x93B4\n0xE437\t0x93A3\n0xE438\t0x95D2\n0xE439\t0x95D3\n0xE43A\t0x95D1\n0xE43B\t0x96B3\n0xE43C\t0x96D7\n0xE43D\t0x96DA\n0xE43E\t0x5DC2\n0xE43F\t0x96DF\n0xE440\t0x96D8\n0xE441\t0x96DD\n0xE442\t0x9723\n0xE443\t0x9722\n0xE444\t0x9725\n0xE445\t0x97AC\n0xE446\t0x97AE\n0xE447\t0x97A8\n0xE448\t0x97AB\n0xE449\t0x97A4\n0xE44A\t0x97AA\n0xE44B\t0x97A2\n0xE44C\t0x97A5\n0xE44D\t0x97D7\n0xE44E\t0x97D9\n0xE44F\t0x97D6\n0xE450\t0x97D8\n0xE451\t0x97FA\n0xE452\t0x9850\n0xE453\t0x9851\n0xE454\t0x9852\n0xE455\t0x98B8\n0xE456\t0x9941\n0xE457\t0x993C\n0xE458\t0x993A\n0xE459\t0x9A0F\n0xE45A\t0x9A0B\n0xE45B\t0x9A09\n0xE45C\t0x9A0D\n0xE45D\t0x9A04\n0xE45E\t0x9A11\n0xE45F\t0x9A0A\n0xE460\t0x9A05\n0xE461\t0x9A07\n0xE462\t0x9A06\n0xE463\t0x9AC0\n0xE464\t0x9ADC\n0xE465\t0x9B08\n0xE466\t0x9B04\n0xE467\t0x9B05\n0xE468\t0x9B29\n0xE469\t0x9B35\n0xE46A\t0x9B4A\n0xE46B\t0x9B4C\n0xE46C\t0x9B4B\n0xE46D\t0x9BC7\n0xE46E\t0x9BC6\n0xE46F\t0x9BC3\n0xE470\t0x9BBF\n0xE471\t0x9BC1\n0xE472\t0x9BB5\n0xE473\t0x9BB8\n0xE474\t0x9BD3\n0xE475\t0x9BB6\n0xE476\t0x9BC4\n0xE477\t0x9BB9\n0xE478\t0x9BBD\n0xE479\t0x9D5C\n0xE47A\t0x9D53\n0xE47B\t0x9D4F\n0xE47C\t0x9D4A\n0xE47D\t0x9D5B\n0xE47E\t0x9D4B\n0xE4A1\t0x614D\n0xE4A2\t0x613E\n0xE4A3\t0x6134\n0xE4A4\t0x6127\n0xE4A5\t0x610D\n0xE4A6\t0x6106\n0xE4A7\t0x6137\n0xE4A8\t0x6221\n0xE4A9\t0x6222\n0xE4AA\t0x6413\n0xE4AB\t0x643E\n0xE4AC\t0x641E\n0xE4AD\t0x642A\n0xE4AE\t0x642D\n0xE4AF\t0x643D\n0xE4B0\t0x642C\n0xE4B1\t0x640F\n0xE4B2\t0x641C\n0xE4B3\t0x6414\n0xE4B4\t0x640D\n0xE4B5\t0x6436\n0xE4B6\t0x6416\n0xE4B7\t0x6417\n0xE4B8\t0x6406\n0xE4B9\t0x656C\n0xE4BA\t0x659F\n0xE4BB\t0x65B0\n0xE4BC\t0x6697\n0xE4BD\t0x6689\n0xE4BE\t0x6687\n0xE4BF\t0x6688\n0xE4C0\t0x6696\n0xE4C1\t0x6684\n0xE4C2\t0x6698\n0xE4C3\t0x668D\n0xE4C4\t0x6703\n0xE4C5\t0x6994\n0xE4C6\t0x696D\n0xE4C7\t0x695A\n0xE4C8\t0x6977\n0xE4C9\t0x6960\n0xE4CA\t0x6954\n0xE4CB\t0x6975\n0xE4CC\t0x6930\n0xE4CD\t0x6982\n0xE4CE\t0x694A\n0xE4CF\t0x6968\n0xE4D0\t0x696B\n0xE4D1\t0x695E\n0xE4D2\t0x6953\n0xE4D3\t0x6979\n0xE4D4\t0x6986\n0xE4D5\t0x695D\n0xE4D6\t0x6963\n0xE4D7\t0x695B\n0xE4D8\t0x6B47\n0xE4D9\t0x6B72\n0xE4DA\t0x6BC0\n0xE4DB\t0x6BBF\n0xE4DC\t0x6BD3\n0xE4DD\t0x6BFD\n0xE4DE\t0x6EA2\n0xE4DF\t0x6EAF\n0xE4E0\t0x6ED3\n0xE4E1\t0x6EB6\n0xE4E2\t0x6EC2\n0xE4E3\t0x6E90\n0xE4E4\t0x6E9D\n0xE4E5\t0x6EC7\n0xE4E6\t0x6EC5\n0xE4E7\t0x6EA5\n0xE4E8\t0x6E98\n0xE4E9\t0x6EBC\n0xE4EA\t0x6EBA\n0xE4EB\t0x6EAB\n0xE4EC\t0x6ED1\n0xE4ED\t0x6E96\n0xE4EE\t0x6E9C\n0xE4EF\t0x6EC4\n0xE4F0\t0x6ED4\n0xE4F1\t0x6EAA\n0xE4F2\t0x6EA7\n0xE4F3\t0x6EB4\n0xE4F4\t0x714E\n0xE4F5\t0x7159\n0xE4F6\t0x7169\n0xE4F7\t0x7164\n0xE4F8\t0x7149\n0xE4F9\t0x7167\n0xE4FA\t0x715C\n0xE4FB\t0x716C\n0xE4FC\t0x7166\n0xE4FD\t0x714C\n0xE4FE\t0x7165\n0xE521\t0x9D59\n0xE522\t0x9D56\n0xE523\t0x9D4C\n0xE524\t0x9D57\n0xE525\t0x9D52\n0xE526\t0x9D54\n0xE527\t0x9D5F\n0xE528\t0x9D58\n0xE529\t0x9D5A\n0xE52A\t0x9E8E\n0xE52B\t0x9E8C\n0xE52C\t0x9EDF\n0xE52D\t0x9F01\n0xE52E\t0x9F00\n0xE52F\t0x9F16\n0xE530\t0x9F25\n0xE531\t0x9F2B\n0xE532\t0x9F2A\n0xE533\t0x9F29\n0xE534\t0x9F28\n0xE535\t0x9F4C\n0xE536\t0x9F55\n0xE537\t0x5134\n0xE538\t0x5135\n0xE539\t0x5296\n0xE53A\t0x52F7\n0xE53B\t0x53B4\n0xE53C\t0x56AB\n0xE53D\t0x56AD\n0xE53E\t0x56A6\n0xE53F\t0x56A7\n0xE540\t0x56AA\n0xE541\t0x56AC\n0xE542\t0x58DA\n0xE543\t0x58DD\n0xE544\t0x58DB\n0xE545\t0x5912\n0xE546\t0x5B3D\n0xE547\t0x5B3E\n0xE548\t0x5B3F\n0xE549\t0x5DC3\n0xE54A\t0x5E70\n0xE54B\t0x5FBF\n0xE54C\t0x61FB\n0xE54D\t0x6507\n0xE54E\t0x6510\n0xE54F\t0x650D\n0xE550\t0x6509\n0xE551\t0x650C\n0xE552\t0x650E\n0xE553\t0x6584\n0xE554\t0x65DE\n0xE555\t0x65DD\n0xE556\t0x66DE\n0xE557\t0x6AE7\n0xE558\t0x6AE0\n0xE559\t0x6ACC\n0xE55A\t0x6AD1\n0xE55B\t0x6AD9\n0xE55C\t0x6ACB\n0xE55D\t0x6ADF\n0xE55E\t0x6ADC\n0xE55F\t0x6AD0\n0xE560\t0x6AEB\n0xE561\t0x6ACF\n0xE562\t0x6ACD\n0xE563\t0x6ADE\n0xE564\t0x6B60\n0xE565\t0x6BB0\n0xE566\t0x6C0C\n0xE567\t0x7019\n0xE568\t0x7027\n0xE569\t0x7020\n0xE56A\t0x7016\n0xE56B\t0x702B\n0xE56C\t0x7021\n0xE56D\t0x7022\n0xE56E\t0x7023\n0xE56F\t0x7029\n0xE570\t0x7017\n0xE571\t0x7024\n0xE572\t0x701C\n0xE573\t0x720C\n0xE574\t0x720A\n0xE575\t0x7207\n0xE576\t0x7202\n0xE577\t0x7205\n0xE578\t0x72A5\n0xE579\t0x72A6\n0xE57A\t0x72A4\n0xE57B\t0x72A3\n0xE57C\t0x72A1\n0xE57D\t0x74CB\n0xE57E\t0x74C5\n0xE5A1\t0x715E\n0xE5A2\t0x7146\n0xE5A3\t0x7168\n0xE5A4\t0x7156\n0xE5A5\t0x723A\n0xE5A6\t0x7252\n0xE5A7\t0x7337\n0xE5A8\t0x7345\n0xE5A9\t0x733F\n0xE5AA\t0x733E\n0xE5AB\t0x746F\n0xE5AC\t0x745A\n0xE5AD\t0x7455\n0xE5AE\t0x745F\n0xE5AF\t0x745E\n0xE5B0\t0x7441\n0xE5B1\t0x743F\n0xE5B2\t0x7459\n0xE5B3\t0x745B\n0xE5B4\t0x745C\n0xE5B5\t0x7576\n0xE5B6\t0x7578\n0xE5B7\t0x7600\n0xE5B8\t0x75F0\n0xE5B9\t0x7601\n0xE5BA\t0x75F2\n0xE5BB\t0x75F1\n0xE5BC\t0x75FA\n0xE5BD\t0x75FF\n0xE5BE\t0x75F4\n0xE5BF\t0x75F3\n0xE5C0\t0x76DE\n0xE5C1\t0x76DF\n0xE5C2\t0x775B\n0xE5C3\t0x776B\n0xE5C4\t0x7766\n0xE5C5\t0x775E\n0xE5C6\t0x7763\n0xE5C7\t0x7779\n0xE5C8\t0x776A\n0xE5C9\t0x776C\n0xE5CA\t0x775C\n0xE5CB\t0x7765\n0xE5CC\t0x7768\n0xE5CD\t0x7762\n0xE5CE\t0x77EE\n0xE5CF\t0x788E\n0xE5D0\t0x78B0\n0xE5D1\t0x7897\n0xE5D2\t0x7898\n0xE5D3\t0x788C\n0xE5D4\t0x7889\n0xE5D5\t0x787C\n0xE5D6\t0x7891\n0xE5D7\t0x7893\n0xE5D8\t0x787F\n0xE5D9\t0x797A\n0xE5DA\t0x797F\n0xE5DB\t0x7981\n0xE5DC\t0x842C\n0xE5DD\t0x79BD\n0xE5DE\t0x7A1C\n0xE5DF\t0x7A1A\n0xE5E0\t0x7A20\n0xE5E1\t0x7A14\n0xE5E2\t0x7A1F\n0xE5E3\t0x7A1E\n0xE5E4\t0x7A9F\n0xE5E5\t0x7AA0\n0xE5E6\t0x7B77\n0xE5E7\t0x7BC0\n0xE5E8\t0x7B60\n0xE5E9\t0x7B6E\n0xE5EA\t0x7B67\n0xE5EB\t0x7CB1\n0xE5EC\t0x7CB3\n0xE5ED\t0x7CB5\n0xE5EE\t0x7D93\n0xE5EF\t0x7D79\n0xE5F0\t0x7D91\n0xE5F1\t0x7D81\n0xE5F2\t0x7D8F\n0xE5F3\t0x7D5B\n0xE5F4\t0x7F6E\n0xE5F5\t0x7F69\n0xE5F6\t0x7F6A\n0xE5F7\t0x7F72\n0xE5F8\t0x7FA9\n0xE5F9\t0x7FA8\n0xE5FA\t0x7FA4\n0xE5FB\t0x8056\n0xE5FC\t0x8058\n0xE5FD\t0x8086\n0xE5FE\t0x8084\n0xE621\t0x74B7\n0xE622\t0x74C3\n0xE623\t0x7516\n0xE624\t0x7660\n0xE625\t0x77C9\n0xE626\t0x77CA\n0xE627\t0x77C4\n0xE628\t0x77F1\n0xE629\t0x791D\n0xE62A\t0x791B\n0xE62B\t0x7921\n0xE62C\t0x791C\n0xE62D\t0x7917\n0xE62E\t0x791E\n0xE62F\t0x79B0\n0xE630\t0x7A67\n0xE631\t0x7A68\n0xE632\t0x7C33\n0xE633\t0x7C3C\n0xE634\t0x7C39\n0xE635\t0x7C2C\n0xE636\t0x7C3B\n0xE637\t0x7CEC\n0xE638\t0x7CEA\n0xE639\t0x7E76\n0xE63A\t0x7E75\n0xE63B\t0x7E78\n0xE63C\t0x7E70\n0xE63D\t0x7E77\n0xE63E\t0x7E6F\n0xE63F\t0x7E7A\n0xE640\t0x7E72\n0xE641\t0x7E74\n0xE642\t0x7E68\n0xE643\t0x7F4B\n0xE644\t0x7F4A\n0xE645\t0x7F83\n0xE646\t0x7F86\n0xE647\t0x7FB7\n0xE648\t0x7FFD\n0xE649\t0x7FFE\n0xE64A\t0x8078\n0xE64B\t0x81D7\n0xE64C\t0x81D5\n0xE64D\t0x820B\n0xE64E\t0x8264\n0xE64F\t0x8261\n0xE650\t0x8263\n0xE651\t0x85EB\n0xE652\t0x85F1\n0xE653\t0x85ED\n0xE654\t0x85D9\n0xE655\t0x85E1\n0xE656\t0x85E8\n0xE657\t0x85DA\n0xE658\t0x85D7\n0xE659\t0x85EC\n0xE65A\t0x85F2\n0xE65B\t0x85F8\n0xE65C\t0x85D8\n0xE65D\t0x85DF\n0xE65E\t0x85E3\n0xE65F\t0x85DC\n0xE660\t0x85D1\n0xE661\t0x85F0\n0xE662\t0x85E6\n0xE663\t0x85EF\n0xE664\t0x85DE\n0xE665\t0x85E2\n0xE666\t0x8800\n0xE667\t0x87FA\n0xE668\t0x8803\n0xE669\t0x87F6\n0xE66A\t0x87F7\n0xE66B\t0x8809\n0xE66C\t0x880C\n0xE66D\t0x880B\n0xE66E\t0x8806\n0xE66F\t0x87FC\n0xE670\t0x8808\n0xE671\t0x87FF\n0xE672\t0x880A\n0xE673\t0x8802\n0xE674\t0x8962\n0xE675\t0x895A\n0xE676\t0x895B\n0xE677\t0x8957\n0xE678\t0x8961\n0xE679\t0x895C\n0xE67A\t0x8958\n0xE67B\t0x895D\n0xE67C\t0x8959\n0xE67D\t0x8988\n0xE67E\t0x89B7\n0xE6A1\t0x8171\n0xE6A2\t0x8170\n0xE6A3\t0x8178\n0xE6A4\t0x8165\n0xE6A5\t0x816E\n0xE6A6\t0x8173\n0xE6A7\t0x816B\n0xE6A8\t0x8179\n0xE6A9\t0x817A\n0xE6AA\t0x8166\n0xE6AB\t0x8205\n0xE6AC\t0x8247\n0xE6AD\t0x8482\n0xE6AE\t0x8477\n0xE6AF\t0x843D\n0xE6B0\t0x8431\n0xE6B1\t0x8475\n0xE6B2\t0x8466\n0xE6B3\t0x846B\n0xE6B4\t0x8449\n0xE6B5\t0x846C\n0xE6B6\t0x845B\n0xE6B7\t0x843C\n0xE6B8\t0x8435\n0xE6B9\t0x8461\n0xE6BA\t0x8463\n0xE6BB\t0x8469\n0xE6BC\t0x846D\n0xE6BD\t0x8446\n0xE6BE\t0x865E\n0xE6BF\t0x865C\n0xE6C0\t0x865F\n0xE6C1\t0x86F9\n0xE6C2\t0x8713\n0xE6C3\t0x8708\n0xE6C4\t0x8707\n0xE6C5\t0x8700\n0xE6C6\t0x86FE\n0xE6C7\t0x86FB\n0xE6C8\t0x8702\n0xE6C9\t0x8703\n0xE6CA\t0x8706\n0xE6CB\t0x870A\n0xE6CC\t0x8859\n0xE6CD\t0x88DF\n0xE6CE\t0x88D4\n0xE6CF\t0x88D9\n0xE6D0\t0x88DC\n0xE6D1\t0x88D8\n0xE6D2\t0x88DD\n0xE6D3\t0x88E1\n0xE6D4\t0x88CA\n0xE6D5\t0x88D5\n0xE6D6\t0x88D2\n0xE6D7\t0x899C\n0xE6D8\t0x89E3\n0xE6D9\t0x8A6B\n0xE6DA\t0x8A72\n0xE6DB\t0x8A73\n0xE6DC\t0x8A66\n0xE6DD\t0x8A69\n0xE6DE\t0x8A70\n0xE6DF\t0x8A87\n0xE6E0\t0x8A7C\n0xE6E1\t0x8A63\n0xE6E2\t0x8AA0\n0xE6E3\t0x8A71\n0xE6E4\t0x8A85\n0xE6E5\t0x8A6D\n0xE6E6\t0x8A62\n0xE6E7\t0x8A6E\n0xE6E8\t0x8A6C\n0xE6E9\t0x8A79\n0xE6EA\t0x8A7B\n0xE6EB\t0x8A3E\n0xE6EC\t0x8A68\n0xE6ED\t0x8C62\n0xE6EE\t0x8C8A\n0xE6EF\t0x8C89\n0xE6F0\t0x8CCA\n0xE6F1\t0x8CC7\n0xE6F2\t0x8CC8\n0xE6F3\t0x8CC4\n0xE6F4\t0x8CB2\n0xE6F5\t0x8CC3\n0xE6F6\t0x8CC2\n0xE6F7\t0x8CC5\n0xE6F8\t0x8DE1\n0xE6F9\t0x8DDF\n0xE6FA\t0x8DE8\n0xE6FB\t0x8DEF\n0xE6FC\t0x8DF3\n0xE6FD\t0x8DFA\n0xE6FE\t0x8DEA\n0xE721\t0x89B6\n0xE722\t0x89F6\n0xE723\t0x8B50\n0xE724\t0x8B48\n0xE725\t0x8B4A\n0xE726\t0x8B40\n0xE727\t0x8B53\n0xE728\t0x8B56\n0xE729\t0x8B54\n0xE72A\t0x8B4B\n0xE72B\t0x8B55\n0xE72C\t0x8B51\n0xE72D\t0x8B42\n0xE72E\t0x8B52\n0xE72F\t0x8B57\n0xE730\t0x8C43\n0xE731\t0x8C77\n0xE732\t0x8C76\n0xE733\t0x8C9A\n0xE734\t0x8D06\n0xE735\t0x8D07\n0xE736\t0x8D09\n0xE737\t0x8DAC\n0xE738\t0x8DAA\n0xE739\t0x8DAD\n0xE73A\t0x8DAB\n0xE73B\t0x8E6D\n0xE73C\t0x8E78\n0xE73D\t0x8E73\n0xE73E\t0x8E6A\n0xE73F\t0x8E6F\n0xE740\t0x8E7B\n0xE741\t0x8EC2\n0xE742\t0x8F52\n0xE743\t0x8F51\n0xE744\t0x8F4F\n0xE745\t0x8F50\n0xE746\t0x8F53\n0xE747\t0x8FB4\n0xE748\t0x9140\n0xE749\t0x913F\n0xE74A\t0x91B0\n0xE74B\t0x91AD\n0xE74C\t0x93DE\n0xE74D\t0x93C7\n0xE74E\t0x93CF\n0xE74F\t0x93C2\n0xE750\t0x93DA\n0xE751\t0x93D0\n0xE752\t0x93F9\n0xE753\t0x93EC\n0xE754\t0x93CC\n0xE755\t0x93D9\n0xE756\t0x93A9\n0xE757\t0x93E6\n0xE758\t0x93CA\n0xE759\t0x93D4\n0xE75A\t0x93EE\n0xE75B\t0x93E3\n0xE75C\t0x93D5\n0xE75D\t0x93C4\n0xE75E\t0x93CE\n0xE75F\t0x93C0\n0xE760\t0x93D2\n0xE761\t0x93A5\n0xE762\t0x93E7\n0xE763\t0x957D\n0xE764\t0x95DA\n0xE765\t0x95DB\n0xE766\t0x96E1\n0xE767\t0x9729\n0xE768\t0x972B\n0xE769\t0x972C\n0xE76A\t0x9728\n0xE76B\t0x9726\n0xE76C\t0x97B3\n0xE76D\t0x97B7\n0xE76E\t0x97B6\n0xE76F\t0x97DD\n0xE770\t0x97DE\n0xE771\t0x97DF\n0xE772\t0x985C\n0xE773\t0x9859\n0xE774\t0x985D\n0xE775\t0x9857\n0xE776\t0x98BF\n0xE777\t0x98BD\n0xE778\t0x98BB\n0xE779\t0x98BE\n0xE77A\t0x9948\n0xE77B\t0x9947\n0xE77C\t0x9943\n0xE77D\t0x99A6\n0xE77E\t0x99A7\n0xE7A1\t0x8DE4\n0xE7A2\t0x8DE6\n0xE7A3\t0x8EB2\n0xE7A4\t0x8F03\n0xE7A5\t0x8F09\n0xE7A6\t0x8EFE\n0xE7A7\t0x8F0A\n0xE7A8\t0x8F9F\n0xE7A9\t0x8FB2\n0xE7AA\t0x904B\n0xE7AB\t0x904A\n0xE7AC\t0x9053\n0xE7AD\t0x9042\n0xE7AE\t0x9054\n0xE7AF\t0x903C\n0xE7B0\t0x9055\n0xE7B1\t0x9050\n0xE7B2\t0x9047\n0xE7B3\t0x904F\n0xE7B4\t0x904E\n0xE7B5\t0x904D\n0xE7B6\t0x9051\n0xE7B7\t0x903E\n0xE7B8\t0x9041\n0xE7B9\t0x9112\n0xE7BA\t0x9117\n0xE7BB\t0x916C\n0xE7BC\t0x916A\n0xE7BD\t0x9169\n0xE7BE\t0x91C9\n0xE7BF\t0x9237\n0xE7C0\t0x9257\n0xE7C1\t0x9238\n0xE7C2\t0x923D\n0xE7C3\t0x9240\n0xE7C4\t0x923E\n0xE7C5\t0x925B\n0xE7C6\t0x924B\n0xE7C7\t0x9264\n0xE7C8\t0x9251\n0xE7C9\t0x9234\n0xE7CA\t0x9249\n0xE7CB\t0x924D\n0xE7CC\t0x9245\n0xE7CD\t0x9239\n0xE7CE\t0x923F\n0xE7CF\t0x925A\n0xE7D0\t0x9598\n0xE7D1\t0x9698\n0xE7D2\t0x9694\n0xE7D3\t0x9695\n0xE7D4\t0x96CD\n0xE7D5\t0x96CB\n0xE7D6\t0x96C9\n0xE7D7\t0x96CA\n0xE7D8\t0x96F7\n0xE7D9\t0x96FB\n0xE7DA\t0x96F9\n0xE7DB\t0x96F6\n0xE7DC\t0x9756\n0xE7DD\t0x9774\n0xE7DE\t0x9776\n0xE7DF\t0x9810\n0xE7E0\t0x9811\n0xE7E1\t0x9813\n0xE7E2\t0x980A\n0xE7E3\t0x9812\n0xE7E4\t0x980C\n0xE7E5\t0x98FC\n0xE7E6\t0x98F4\n0xE7E7\t0x98FD\n0xE7E8\t0x98FE\n0xE7E9\t0x99B3\n0xE7EA\t0x99B1\n0xE7EB\t0x99B4\n0xE7EC\t0x9AE1\n0xE7ED\t0x9CE9\n0xE7EE\t0x9E82\n0xE7EF\t0x9F0E\n0xE7F0\t0x9F13\n0xE7F1\t0x9F20\n0xE7F2\t0x50E7\n0xE7F3\t0x50EE\n0xE7F4\t0x50E5\n0xE7F5\t0x50D6\n0xE7F6\t0x50ED\n0xE7F7\t0x50DA\n0xE7F8\t0x50D5\n0xE7F9\t0x50CF\n0xE7FA\t0x50D1\n0xE7FB\t0x50F1\n0xE7FC\t0x50CE\n0xE7FD\t0x50E9\n0xE7FE\t0x5162\n0xE821\t0x9A1A\n0xE822\t0x9A15\n0xE823\t0x9A25\n0xE824\t0x9A1D\n0xE825\t0x9A24\n0xE826\t0x9A1B\n0xE827\t0x9A22\n0xE828\t0x9A20\n0xE829\t0x9A27\n0xE82A\t0x9A23\n0xE82B\t0x9A1E\n0xE82C\t0x9A1C\n0xE82D\t0x9A14\n0xE82E\t0x9AC2\n0xE82F\t0x9B0B\n0xE830\t0x9B0A\n0xE831\t0x9B0E\n0xE832\t0x9B0C\n0xE833\t0x9B37\n0xE834\t0x9BEA\n0xE835\t0x9BEB\n0xE836\t0x9BE0\n0xE837\t0x9BDE\n0xE838\t0x9BE4\n0xE839\t0x9BE6\n0xE83A\t0x9BE2\n0xE83B\t0x9BF0\n0xE83C\t0x9BD4\n0xE83D\t0x9BD7\n0xE83E\t0x9BEC\n0xE83F\t0x9BDC\n0xE840\t0x9BD9\n0xE841\t0x9BE5\n0xE842\t0x9BD5\n0xE843\t0x9BE1\n0xE844\t0x9BDA\n0xE845\t0x9D77\n0xE846\t0x9D81\n0xE847\t0x9D8A\n0xE848\t0x9D84\n0xE849\t0x9D88\n0xE84A\t0x9D71\n0xE84B\t0x9D80\n0xE84C\t0x9D78\n0xE84D\t0x9D86\n0xE84E\t0x9D8B\n0xE84F\t0x9D8C\n0xE850\t0x9D7D\n0xE851\t0x9D6B\n0xE852\t0x9D74\n0xE853\t0x9D75\n0xE854\t0x9D70\n0xE855\t0x9D69\n0xE856\t0x9D85\n0xE857\t0x9D73\n0xE858\t0x9D7B\n0xE859\t0x9D82\n0xE85A\t0x9D6F\n0xE85B\t0x9D79\n0xE85C\t0x9D7F\n0xE85D\t0x9D87\n0xE85E\t0x9D68\n0xE85F\t0x9E94\n0xE860\t0x9E91\n0xE861\t0x9EC0\n0xE862\t0x9EFC\n0xE863\t0x9F2D\n0xE864\t0x9F40\n0xE865\t0x9F41\n0xE866\t0x9F4D\n0xE867\t0x9F56\n0xE868\t0x9F57\n0xE869\t0x9F58\n0xE86A\t0x5337\n0xE86B\t0x56B2\n0xE86C\t0x56B5\n0xE86D\t0x56B3\n0xE86E\t0x58E3\n0xE86F\t0x5B45\n0xE870\t0x5DC6\n0xE871\t0x5DC7\n0xE872\t0x5EEE\n0xE873\t0x5EEF\n0xE874\t0x5FC0\n0xE875\t0x5FC1\n0xE876\t0x61F9\n0xE877\t0x6517\n0xE878\t0x6516\n0xE879\t0x6515\n0xE87A\t0x6513\n0xE87B\t0x65DF\n0xE87C\t0x66E8\n0xE87D\t0x66E3\n0xE87E\t0x66E4\n0xE8A1\t0x51F3\n0xE8A2\t0x5283\n0xE8A3\t0x5282\n0xE8A4\t0x5331\n0xE8A5\t0x53AD\n0xE8A6\t0x55FE\n0xE8A7\t0x5600\n0xE8A8\t0x561B\n0xE8A9\t0x5617\n0xE8AA\t0x55FD\n0xE8AB\t0x5614\n0xE8AC\t0x5606\n0xE8AD\t0x5609\n0xE8AE\t0x560D\n0xE8AF\t0x560E\n0xE8B0\t0x55F7\n0xE8B1\t0x5616\n0xE8B2\t0x561F\n0xE8B3\t0x5608\n0xE8B4\t0x5610\n0xE8B5\t0x55F6\n0xE8B6\t0x5718\n0xE8B7\t0x5716\n0xE8B8\t0x5875\n0xE8B9\t0x587E\n0xE8BA\t0x5883\n0xE8BB\t0x5893\n0xE8BC\t0x588A\n0xE8BD\t0x5879\n0xE8BE\t0x5885\n0xE8BF\t0x587D\n0xE8C0\t0x58FD\n0xE8C1\t0x5925\n0xE8C2\t0x5922\n0xE8C3\t0x5924\n0xE8C4\t0x596A\n0xE8C5\t0x5969\n0xE8C6\t0x5AE1\n0xE8C7\t0x5AE6\n0xE8C8\t0x5AE9\n0xE8C9\t0x5AD7\n0xE8CA\t0x5AD6\n0xE8CB\t0x5AD8\n0xE8CC\t0x5AE3\n0xE8CD\t0x5B75\n0xE8CE\t0x5BDE\n0xE8CF\t0x5BE7\n0xE8D0\t0x5BE1\n0xE8D1\t0x5BE5\n0xE8D2\t0x5BE6\n0xE8D3\t0x5BE8\n0xE8D4\t0x5BE2\n0xE8D5\t0x5BE4\n0xE8D6\t0x5BDF\n0xE8D7\t0x5C0D\n0xE8D8\t0x5C62\n0xE8D9\t0x5D84\n0xE8DA\t0x5D87\n0xE8DB\t0x5E5B\n0xE8DC\t0x5E63\n0xE8DD\t0x5E55\n0xE8DE\t0x5E57\n0xE8DF\t0x5E54\n0xE8E0\t0x5ED3\n0xE8E1\t0x5ED6\n0xE8E2\t0x5F0A\n0xE8E3\t0x5F46\n0xE8E4\t0x5F70\n0xE8E5\t0x5FB9\n0xE8E6\t0x6147\n0xE8E7\t0x613F\n0xE8E8\t0x614B\n0xE8E9\t0x6177\n0xE8EA\t0x6162\n0xE8EB\t0x6163\n0xE8EC\t0x615F\n0xE8ED\t0x615A\n0xE8EE\t0x6158\n0xE8EF\t0x6175\n0xE8F0\t0x622A\n0xE8F1\t0x6487\n0xE8F2\t0x6458\n0xE8F3\t0x6454\n0xE8F4\t0x64A4\n0xE8F5\t0x6478\n0xE8F6\t0x645F\n0xE8F7\t0x647A\n0xE8F8\t0x6451\n0xE8F9\t0x6467\n0xE8FA\t0x6434\n0xE8FB\t0x646D\n0xE8FC\t0x647B\n0xE8FD\t0x6572\n0xE8FE\t0x65A1\n0xE921\t0x6AF3\n0xE922\t0x6AF0\n0xE923\t0x6AEA\n0xE924\t0x6AE8\n0xE925\t0x6AF9\n0xE926\t0x6AF1\n0xE927\t0x6AEE\n0xE928\t0x6AEF\n0xE929\t0x703C\n0xE92A\t0x7035\n0xE92B\t0x702F\n0xE92C\t0x7037\n0xE92D\t0x7034\n0xE92E\t0x7031\n0xE92F\t0x7042\n0xE930\t0x7038\n0xE931\t0x703F\n0xE932\t0x703A\n0xE933\t0x7039\n0xE934\t0x702A\n0xE935\t0x7040\n0xE936\t0x703B\n0xE937\t0x7033\n0xE938\t0x7041\n0xE939\t0x7213\n0xE93A\t0x7214\n0xE93B\t0x72A8\n0xE93C\t0x737D\n0xE93D\t0x737C\n0xE93E\t0x74BA\n0xE93F\t0x76AB\n0xE940\t0x76AA\n0xE941\t0x76BE\n0xE942\t0x76ED\n0xE943\t0x77CC\n0xE944\t0x77CE\n0xE945\t0x77CF\n0xE946\t0x77CD\n0xE947\t0x77F2\n0xE948\t0x7925\n0xE949\t0x7923\n0xE94A\t0x7927\n0xE94B\t0x7928\n0xE94C\t0x7924\n0xE94D\t0x7929\n0xE94E\t0x79B2\n0xE94F\t0x7A6E\n0xE950\t0x7A6C\n0xE951\t0x7A6D\n0xE952\t0x7AF7\n0xE953\t0x7C49\n0xE954\t0x7C48\n0xE955\t0x7C4A\n0xE956\t0x7C47\n0xE957\t0x7C45\n0xE958\t0x7CEE\n0xE959\t0x7E7B\n0xE95A\t0x7E7E\n0xE95B\t0x7E81\n0xE95C\t0x7E80\n0xE95D\t0x7FBA\n0xE95E\t0x7FFF\n0xE95F\t0x8079\n0xE960\t0x81DB\n0xE961\t0x81D9\n0xE962\t0x8268\n0xE963\t0x8269\n0xE964\t0x8622\n0xE965\t0x85FF\n0xE966\t0x8601\n0xE967\t0x85FE\n0xE968\t0x861B\n0xE969\t0x8600\n0xE96A\t0x85F6\n0xE96B\t0x8604\n0xE96C\t0x8609\n0xE96D\t0x8605\n0xE96E\t0x860C\n0xE96F\t0x85FD\n0xE970\t0x8819\n0xE971\t0x8810\n0xE972\t0x8811\n0xE973\t0x8817\n0xE974\t0x8813\n0xE975\t0x8816\n0xE976\t0x8963\n0xE977\t0x8966\n0xE978\t0x89B9\n0xE979\t0x89F7\n0xE97A\t0x8B60\n0xE97B\t0x8B6A\n0xE97C\t0x8B5D\n0xE97D\t0x8B68\n0xE97E\t0x8B63\n0xE9A1\t0x65D7\n0xE9A2\t0x65D6\n0xE9A3\t0x66A2\n0xE9A4\t0x66A8\n0xE9A5\t0x669D\n0xE9A6\t0x699C\n0xE9A7\t0x69A8\n0xE9A8\t0x6995\n0xE9A9\t0x69C1\n0xE9AA\t0x69AE\n0xE9AB\t0x69D3\n0xE9AC\t0x69CB\n0xE9AD\t0x699B\n0xE9AE\t0x69B7\n0xE9AF\t0x69BB\n0xE9B0\t0x69AB\n0xE9B1\t0x69B4\n0xE9B2\t0x69D0\n0xE9B3\t0x69CD\n0xE9B4\t0x69AD\n0xE9B5\t0x69CC\n0xE9B6\t0x69A6\n0xE9B7\t0x69C3\n0xE9B8\t0x69A3\n0xE9B9\t0x6B49\n0xE9BA\t0x6B4C\n0xE9BB\t0x6C33\n0xE9BC\t0x6F33\n0xE9BD\t0x6F14\n0xE9BE\t0x6EFE\n0xE9BF\t0x6F13\n0xE9C0\t0x6EF4\n0xE9C1\t0x6F29\n0xE9C2\t0x6F3E\n0xE9C3\t0x6F20\n0xE9C4\t0x6F2C\n0xE9C5\t0x6F0F\n0xE9C6\t0x6F02\n0xE9C7\t0x6F22\n0xE9C8\t0x6EFF\n0xE9C9\t0x6EEF\n0xE9CA\t0x6F06\n0xE9CB\t0x6F31\n0xE9CC\t0x6F38\n0xE9CD\t0x6F32\n0xE9CE\t0x6F23\n0xE9CF\t0x6F15\n0xE9D0\t0x6F2B\n0xE9D1\t0x6F2F\n0xE9D2\t0x6F88\n0xE9D3\t0x6F2A\n0xE9D4\t0x6EEC\n0xE9D5\t0x6F01\n0xE9D6\t0x6EF2\n0xE9D7\t0x6ECC\n0xE9D8\t0x6EF7\n0xE9D9\t0x7194\n0xE9DA\t0x7199\n0xE9DB\t0x717D\n0xE9DC\t0x718A\n0xE9DD\t0x7184\n0xE9DE\t0x7192\n0xE9DF\t0x723E\n0xE9E0\t0x7292\n0xE9E1\t0x7296\n0xE9E2\t0x7344\n0xE9E3\t0x7350\n0xE9E4\t0x7464\n0xE9E5\t0x7463\n0xE9E6\t0x746A\n0xE9E7\t0x7470\n0xE9E8\t0x746D\n0xE9E9\t0x7504\n0xE9EA\t0x7591\n0xE9EB\t0x7627\n0xE9EC\t0x760D\n0xE9ED\t0x760B\n0xE9EE\t0x7609\n0xE9EF\t0x7613\n0xE9F0\t0x76E1\n0xE9F1\t0x76E3\n0xE9F2\t0x7784\n0xE9F3\t0x777D\n0xE9F4\t0x777F\n0xE9F5\t0x7761\n0xE9F6\t0x78C1\n0xE9F7\t0x789F\n0xE9F8\t0x78A7\n0xE9F9\t0x78B3\n0xE9FA\t0x78A9\n0xE9FB\t0x78A3\n0xE9FC\t0x798E\n0xE9FD\t0x798F\n0xE9FE\t0x798D\n0xEA21\t0x8B65\n0xEA22\t0x8B67\n0xEA23\t0x8B6D\n0xEA24\t0x8DAE\n0xEA25\t0x8E86\n0xEA26\t0x8E88\n0xEA27\t0x8E84\n0xEA28\t0x8F59\n0xEA29\t0x8F56\n0xEA2A\t0x8F57\n0xEA2B\t0x8F55\n0xEA2C\t0x8F58\n0xEA2D\t0x8F5A\n0xEA2E\t0x908D\n0xEA2F\t0x9143\n0xEA30\t0x9141\n0xEA31\t0x91B7\n0xEA32\t0x91B5\n0xEA33\t0x91B2\n0xEA34\t0x91B3\n0xEA35\t0x940B\n0xEA36\t0x9413\n0xEA37\t0x93FB\n0xEA38\t0x9420\n0xEA39\t0x940F\n0xEA3A\t0x9414\n0xEA3B\t0x93FE\n0xEA3C\t0x9415\n0xEA3D\t0x9410\n0xEA3E\t0x9428\n0xEA3F\t0x9419\n0xEA40\t0x940D\n0xEA41\t0x93F5\n0xEA42\t0x9400\n0xEA43\t0x93F7\n0xEA44\t0x9407\n0xEA45\t0x940E\n0xEA46\t0x9416\n0xEA47\t0x9412\n0xEA48\t0x93FA\n0xEA49\t0x9409\n0xEA4A\t0x93F8\n0xEA4B\t0x943C\n0xEA4C\t0x940A\n0xEA4D\t0x93FF\n0xEA4E\t0x93FC\n0xEA4F\t0x940C\n0xEA50\t0x93F6\n0xEA51\t0x9411\n0xEA52\t0x9406\n0xEA53\t0x95DE\n0xEA54\t0x95E0\n0xEA55\t0x95DF\n0xEA56\t0x972E\n0xEA57\t0x972F\n0xEA58\t0x97B9\n0xEA59\t0x97BB\n0xEA5A\t0x97FD\n0xEA5B\t0x97FE\n0xEA5C\t0x9860\n0xEA5D\t0x9862\n0xEA5E\t0x9863\n0xEA5F\t0x985F\n0xEA60\t0x98C1\n0xEA61\t0x98C2\n0xEA62\t0x9950\n0xEA63\t0x994E\n0xEA64\t0x9959\n0xEA65\t0x994C\n0xEA66\t0x994B\n0xEA67\t0x9953\n0xEA68\t0x9A32\n0xEA69\t0x9A34\n0xEA6A\t0x9A31\n0xEA6B\t0x9A2C\n0xEA6C\t0x9A2A\n0xEA6D\t0x9A36\n0xEA6E\t0x9A29\n0xEA6F\t0x9A2E\n0xEA70\t0x9A38\n0xEA71\t0x9A2D\n0xEA72\t0x9AC7\n0xEA73\t0x9ACA\n0xEA74\t0x9AC6\n0xEA75\t0x9B10\n0xEA76\t0x9B12\n0xEA77\t0x9B11\n0xEA78\t0x9C0B\n0xEA79\t0x9C08\n0xEA7A\t0x9BF7\n0xEA7B\t0x9C05\n0xEA7C\t0x9C12\n0xEA7D\t0x9BF8\n0xEA7E\t0x9C40\n0xEAA1\t0x7A2E\n0xEAA2\t0x7A31\n0xEAA3\t0x7AAA\n0xEAA4\t0x7AA9\n0xEAA5\t0x7AED\n0xEAA6\t0x7AEF\n0xEAA7\t0x7BA1\n0xEAA8\t0x7B95\n0xEAA9\t0x7B8B\n0xEAAA\t0x7B75\n0xEAAB\t0x7B97\n0xEAAC\t0x7B9D\n0xEAAD\t0x7B94\n0xEAAE\t0x7B8F\n0xEAAF\t0x7BB8\n0xEAB0\t0x7B87\n0xEAB1\t0x7B84\n0xEAB2\t0x7CB9\n0xEAB3\t0x7CBD\n0xEAB4\t0x7CBE\n0xEAB5\t0x7DBB\n0xEAB6\t0x7DB0\n0xEAB7\t0x7D9C\n0xEAB8\t0x7DBD\n0xEAB9\t0x7DBE\n0xEABA\t0x7DA0\n0xEABB\t0x7DCA\n0xEABC\t0x7DB4\n0xEABD\t0x7DB2\n0xEABE\t0x7DB1\n0xEABF\t0x7DBA\n0xEAC0\t0x7DA2\n0xEAC1\t0x7DBF\n0xEAC2\t0x7DB5\n0xEAC3\t0x7DB8\n0xEAC4\t0x7DAD\n0xEAC5\t0x7DD2\n0xEAC6\t0x7DC7\n0xEAC7\t0x7DAC\n0xEAC8\t0x7F70\n0xEAC9\t0x7FE0\n0xEACA\t0x7FE1\n0xEACB\t0x7FDF\n0xEACC\t0x805E\n0xEACD\t0x805A\n0xEACE\t0x8087\n0xEACF\t0x8150\n0xEAD0\t0x8180\n0xEAD1\t0x818F\n0xEAD2\t0x8188\n0xEAD3\t0x818A\n0xEAD4\t0x817F\n0xEAD5\t0x8182\n0xEAD6\t0x81E7\n0xEAD7\t0x81FA\n0xEAD8\t0x8207\n0xEAD9\t0x8214\n0xEADA\t0x821E\n0xEADB\t0x824B\n0xEADC\t0x84C9\n0xEADD\t0x84BF\n0xEADE\t0x84C6\n0xEADF\t0x84C4\n0xEAE0\t0x8499\n0xEAE1\t0x849E\n0xEAE2\t0x84B2\n0xEAE3\t0x849C\n0xEAE4\t0x84CB\n0xEAE5\t0x84B8\n0xEAE6\t0x84C0\n0xEAE7\t0x84D3\n0xEAE8\t0x8490\n0xEAE9\t0x84BC\n0xEAEA\t0x84D1\n0xEAEB\t0x84CA\n0xEAEC\t0x873F\n0xEAED\t0x871C\n0xEAEE\t0x873B\n0xEAEF\t0x8722\n0xEAF0\t0x8725\n0xEAF1\t0x8734\n0xEAF2\t0x8718\n0xEAF3\t0x8755\n0xEAF4\t0x8737\n0xEAF5\t0x8729\n0xEAF6\t0x88F3\n0xEAF7\t0x8902\n0xEAF8\t0x88F4\n0xEAF9\t0x88F9\n0xEAFA\t0x88F8\n0xEAFB\t0x88FD\n0xEAFC\t0x88E8\n0xEAFD\t0x891A\n0xEAFE\t0x88EF\n0xEB21\t0x9C07\n0xEB22\t0x9C0E\n0xEB23\t0x9C06\n0xEB24\t0x9C17\n0xEB25\t0x9C14\n0xEB26\t0x9C09\n0xEB27\t0x9D9F\n0xEB28\t0x9D99\n0xEB29\t0x9DA4\n0xEB2A\t0x9D9D\n0xEB2B\t0x9D92\n0xEB2C\t0x9D98\n0xEB2D\t0x9D90\n0xEB2E\t0x9D9B\n0xEB2F\t0x9DA0\n0xEB30\t0x9D94\n0xEB31\t0x9D9C\n0xEB32\t0x9DAA\n0xEB33\t0x9D97\n0xEB34\t0x9DA1\n0xEB35\t0x9D9A\n0xEB36\t0x9DA2\n0xEB37\t0x9DA8\n0xEB38\t0x9D9E\n0xEB39\t0x9DA3\n0xEB3A\t0x9DBF\n0xEB3B\t0x9DA9\n0xEB3C\t0x9D96\n0xEB3D\t0x9DA6\n0xEB3E\t0x9DA7\n0xEB3F\t0x9E99\n0xEB40\t0x9E9B\n0xEB41\t0x9E9A\n0xEB42\t0x9EE5\n0xEB43\t0x9EE4\n0xEB44\t0x9EE7\n0xEB45\t0x9EE6\n0xEB46\t0x9F30\n0xEB47\t0x9F2E\n0xEB48\t0x9F5B\n0xEB49\t0x9F60\n0xEB4A\t0x9F5E\n0xEB4B\t0x9F5D\n0xEB4C\t0x9F59\n0xEB4D\t0x9F91\n0xEB4E\t0x513A\n0xEB4F\t0x5139\n0xEB50\t0x5298\n0xEB51\t0x5297\n0xEB52\t0x56C3\n0xEB53\t0x56BD\n0xEB54\t0x56BE\n0xEB55\t0x5B48\n0xEB56\t0x5B47\n0xEB57\t0x5DCB\n0xEB58\t0x5DCF\n0xEB59\t0x5EF1\n0xEB5A\t0x61FD\n0xEB5B\t0x651B\n0xEB5C\t0x6B02\n0xEB5D\t0x6AFC\n0xEB5E\t0x6B03\n0xEB5F\t0x6AF8\n0xEB60\t0x6B00\n0xEB61\t0x7043\n0xEB62\t0x7044\n0xEB63\t0x704A\n0xEB64\t0x7048\n0xEB65\t0x7049\n0xEB66\t0x7045\n0xEB67\t0x7046\n0xEB68\t0x721D\n0xEB69\t0x721A\n0xEB6A\t0x7219\n0xEB6B\t0x737E\n0xEB6C\t0x7517\n0xEB6D\t0x766A\n0xEB6E\t0x77D0\n0xEB6F\t0x792D\n0xEB70\t0x7931\n0xEB71\t0x792F\n0xEB72\t0x7C54\n0xEB73\t0x7C53\n0xEB74\t0x7CF2\n0xEB75\t0x7E8A\n0xEB76\t0x7E87\n0xEB77\t0x7E88\n0xEB78\t0x7E8B\n0xEB79\t0x7E86\n0xEB7A\t0x7E8D\n0xEB7B\t0x7F4D\n0xEB7C\t0x7FBB\n0xEB7D\t0x8030\n0xEB7E\t0x81DD\n0xEBA1\t0x8AA6\n0xEBA2\t0x8A8C\n0xEBA3\t0x8A9E\n0xEBA4\t0x8AA3\n0xEBA5\t0x8A8D\n0xEBA6\t0x8AA1\n0xEBA7\t0x8A93\n0xEBA8\t0x8AA4\n0xEBA9\t0x8AAA\n0xEBAA\t0x8AA5\n0xEBAB\t0x8AA8\n0xEBAC\t0x8A98\n0xEBAD\t0x8A91\n0xEBAE\t0x8A9A\n0xEBAF\t0x8AA7\n0xEBB0\t0x8C6A\n0xEBB1\t0x8C8D\n0xEBB2\t0x8C8C\n0xEBB3\t0x8CD3\n0xEBB4\t0x8CD1\n0xEBB5\t0x8CD2\n0xEBB6\t0x8D6B\n0xEBB7\t0x8D99\n0xEBB8\t0x8D95\n0xEBB9\t0x8DFC\n0xEBBA\t0x8F14\n0xEBBB\t0x8F12\n0xEBBC\t0x8F15\n0xEBBD\t0x8F13\n0xEBBE\t0x8FA3\n0xEBBF\t0x9060\n0xEBC0\t0x9058\n0xEBC1\t0x905C\n0xEBC2\t0x9063\n0xEBC3\t0x9059\n0xEBC4\t0x905E\n0xEBC5\t0x9062\n0xEBC6\t0x905D\n0xEBC7\t0x905B\n0xEBC8\t0x9119\n0xEBC9\t0x9118\n0xEBCA\t0x911E\n0xEBCB\t0x9175\n0xEBCC\t0x9178\n0xEBCD\t0x9177\n0xEBCE\t0x9174\n0xEBCF\t0x9278\n0xEBD0\t0x92AC\n0xEBD1\t0x9280\n0xEBD2\t0x9285\n0xEBD3\t0x9298\n0xEBD4\t0x9296\n0xEBD5\t0x927B\n0xEBD6\t0x9293\n0xEBD7\t0x929C\n0xEBD8\t0x92A8\n0xEBD9\t0x927C\n0xEBDA\t0x9291\n0xEBDB\t0x95A1\n0xEBDC\t0x95A8\n0xEBDD\t0x95A9\n0xEBDE\t0x95A3\n0xEBDF\t0x95A5\n0xEBE0\t0x95A4\n0xEBE1\t0x9699\n0xEBE2\t0x969C\n0xEBE3\t0x969B\n0xEBE4\t0x96CC\n0xEBE5\t0x96D2\n0xEBE6\t0x9700\n0xEBE7\t0x977C\n0xEBE8\t0x9785\n0xEBE9\t0x97F6\n0xEBEA\t0x9817\n0xEBEB\t0x9818\n0xEBEC\t0x98AF\n0xEBED\t0x98B1\n0xEBEE\t0x9903\n0xEBEF\t0x9905\n0xEBF0\t0x990C\n0xEBF1\t0x9909\n0xEBF2\t0x99C1\n0xEBF3\t0x9AAF\n0xEBF4\t0x9AB0\n0xEBF5\t0x9AE6\n0xEBF6\t0x9B41\n0xEBF7\t0x9B42\n0xEBF8\t0x9CF4\n0xEBF9\t0x9CF6\n0xEBFA\t0x9CF3\n0xEBFB\t0x9EBC\n0xEBFC\t0x9F3B\n0xEBFD\t0x9F4A\n0xEBFE\t0x5104\n0xEC21\t0x8618\n0xEC22\t0x862A\n0xEC23\t0x8626\n0xEC24\t0x861F\n0xEC25\t0x8623\n0xEC26\t0x861C\n0xEC27\t0x8619\n0xEC28\t0x8627\n0xEC29\t0x862E\n0xEC2A\t0x8621\n0xEC2B\t0x8620\n0xEC2C\t0x8629\n0xEC2D\t0x861E\n0xEC2E\t0x8625\n0xEC2F\t0x8829\n0xEC30\t0x881D\n0xEC31\t0x881B\n0xEC32\t0x8820\n0xEC33\t0x8824\n0xEC34\t0x881C\n0xEC35\t0x882B\n0xEC36\t0x884A\n0xEC37\t0x896D\n0xEC38\t0x8969\n0xEC39\t0x896E\n0xEC3A\t0x896B\n0xEC3B\t0x89FA\n0xEC3C\t0x8B79\n0xEC3D\t0x8B78\n0xEC3E\t0x8B45\n0xEC3F\t0x8B7A\n0xEC40\t0x8B7B\n0xEC41\t0x8D10\n0xEC42\t0x8D14\n0xEC43\t0x8DAF\n0xEC44\t0x8E8E\n0xEC45\t0x8E8C\n0xEC46\t0x8F5E\n0xEC47\t0x8F5B\n0xEC48\t0x8F5D\n0xEC49\t0x9146\n0xEC4A\t0x9144\n0xEC4B\t0x9145\n0xEC4C\t0x91B9\n0xEC4D\t0x943F\n0xEC4E\t0x943B\n0xEC4F\t0x9436\n0xEC50\t0x9429\n0xEC51\t0x943D\n0xEC52\t0x9430\n0xEC53\t0x9439\n0xEC54\t0x942A\n0xEC55\t0x9437\n0xEC56\t0x942C\n0xEC57\t0x9440\n0xEC58\t0x9431\n0xEC59\t0x95E5\n0xEC5A\t0x95E4\n0xEC5B\t0x95E3\n0xEC5C\t0x9735\n0xEC5D\t0x973A\n0xEC5E\t0x97BF\n0xEC5F\t0x97E1\n0xEC60\t0x9864\n0xEC61\t0x98C9\n0xEC62\t0x98C6\n0xEC63\t0x98C0\n0xEC64\t0x9958\n0xEC65\t0x9956\n0xEC66\t0x9A39\n0xEC67\t0x9A3D\n0xEC68\t0x9A46\n0xEC69\t0x9A44\n0xEC6A\t0x9A42\n0xEC6B\t0x9A41\n0xEC6C\t0x9A3A\n0xEC6D\t0x9A3F\n0xEC6E\t0x9ACD\n0xEC6F\t0x9B15\n0xEC70\t0x9B17\n0xEC71\t0x9B18\n0xEC72\t0x9B16\n0xEC73\t0x9B3A\n0xEC74\t0x9B52\n0xEC75\t0x9C2B\n0xEC76\t0x9C1D\n0xEC77\t0x9C1C\n0xEC78\t0x9C2C\n0xEC79\t0x9C23\n0xEC7A\t0x9C28\n0xEC7B\t0x9C29\n0xEC7C\t0x9C24\n0xEC7D\t0x9C21\n0xEC7E\t0x9DB7\n0xECA1\t0x5100\n0xECA2\t0x50FB\n0xECA3\t0x50F5\n0xECA4\t0x50F9\n0xECA5\t0x5102\n0xECA6\t0x5108\n0xECA7\t0x5109\n0xECA8\t0x5105\n0xECA9\t0x51DC\n0xECAA\t0x5287\n0xECAB\t0x5288\n0xECAC\t0x5289\n0xECAD\t0x528D\n0xECAE\t0x528A\n0xECAF\t0x52F0\n0xECB0\t0x53B2\n0xECB1\t0x562E\n0xECB2\t0x563B\n0xECB3\t0x5639\n0xECB4\t0x5632\n0xECB5\t0x563F\n0xECB6\t0x5634\n0xECB7\t0x5629\n0xECB8\t0x5653\n0xECB9\t0x564E\n0xECBA\t0x5657\n0xECBB\t0x5674\n0xECBC\t0x5636\n0xECBD\t0x562F\n0xECBE\t0x5630\n0xECBF\t0x5880\n0xECC0\t0x589F\n0xECC1\t0x589E\n0xECC2\t0x58B3\n0xECC3\t0x589C\n0xECC4\t0x58AE\n0xECC5\t0x58A9\n0xECC6\t0x58A6\n0xECC7\t0x596D\n0xECC8\t0x5B09\n0xECC9\t0x5AFB\n0xECCA\t0x5B0B\n0xECCB\t0x5AF5\n0xECCC\t0x5B0C\n0xECCD\t0x5B08\n0xECCE\t0x5BEE\n0xECCF\t0x5BEC\n0xECD0\t0x5BE9\n0xECD1\t0x5BEB\n0xECD2\t0x5C64\n0xECD3\t0x5C65\n0xECD4\t0x5D9D\n0xECD5\t0x5D94\n0xECD6\t0x5E62\n0xECD7\t0x5E5F\n0xECD8\t0x5E61\n0xECD9\t0x5EE2\n0xECDA\t0x5EDA\n0xECDB\t0x5EDF\n0xECDC\t0x5EDD\n0xECDD\t0x5EE3\n0xECDE\t0x5EE0\n0xECDF\t0x5F48\n0xECE0\t0x5F71\n0xECE1\t0x5FB7\n0xECE2\t0x5FB5\n0xECE3\t0x6176\n0xECE4\t0x6167\n0xECE5\t0x616E\n0xECE6\t0x615D\n0xECE7\t0x6155\n0xECE8\t0x6182\n0xECE9\t0x617C\n0xECEA\t0x6170\n0xECEB\t0x616B\n0xECEC\t0x617E\n0xECED\t0x61A7\n0xECEE\t0x6190\n0xECEF\t0x61AB\n0xECF0\t0x618E\n0xECF1\t0x61AC\n0xECF2\t0x619A\n0xECF3\t0x61A4\n0xECF4\t0x6194\n0xECF5\t0x61AE\n0xECF6\t0x622E\n0xECF7\t0x6469\n0xECF8\t0x646F\n0xECF9\t0x6479\n0xECFA\t0x649E\n0xECFB\t0x64B2\n0xECFC\t0x6488\n0xECFD\t0x6490\n0xECFE\t0x64B0\n0xED21\t0x9DB6\n0xED22\t0x9DBC\n0xED23\t0x9DC1\n0xED24\t0x9DC7\n0xED25\t0x9DCA\n0xED26\t0x9DCF\n0xED27\t0x9DBE\n0xED28\t0x9DC5\n0xED29\t0x9DC3\n0xED2A\t0x9DBB\n0xED2B\t0x9DB5\n0xED2C\t0x9DCE\n0xED2D\t0x9DB9\n0xED2E\t0x9DBA\n0xED2F\t0x9DAC\n0xED30\t0x9DC8\n0xED31\t0x9DB1\n0xED32\t0x9DAD\n0xED33\t0x9DCC\n0xED34\t0x9DB3\n0xED35\t0x9DCD\n0xED36\t0x9DB2\n0xED37\t0x9E7A\n0xED38\t0x9E9C\n0xED39\t0x9EEB\n0xED3A\t0x9EEE\n0xED3B\t0x9EED\n0xED3C\t0x9F1B\n0xED3D\t0x9F18\n0xED3E\t0x9F1A\n0xED3F\t0x9F31\n0xED40\t0x9F4E\n0xED41\t0x9F65\n0xED42\t0x9F64\n0xED43\t0x9F92\n0xED44\t0x4EB9\n0xED45\t0x56C6\n0xED46\t0x56C5\n0xED47\t0x56CB\n0xED48\t0x5971\n0xED49\t0x5B4B\n0xED4A\t0x5B4C\n0xED4B\t0x5DD5\n0xED4C\t0x5DD1\n0xED4D\t0x5EF2\n0xED4E\t0x6521\n0xED4F\t0x6520\n0xED50\t0x6526\n0xED51\t0x6522\n0xED52\t0x6B0B\n0xED53\t0x6B08\n0xED54\t0x6B09\n0xED55\t0x6C0D\n0xED56\t0x7055\n0xED57\t0x7056\n0xED58\t0x7057\n0xED59\t0x7052\n0xED5A\t0x721E\n0xED5B\t0x721F\n0xED5C\t0x72A9\n0xED5D\t0x737F\n0xED5E\t0x74D8\n0xED5F\t0x74D5\n0xED60\t0x74D9\n0xED61\t0x74D7\n0xED62\t0x766D\n0xED63\t0x76AD\n0xED64\t0x7935\n0xED65\t0x79B4\n0xED66\t0x7A70\n0xED67\t0x7A71\n0xED68\t0x7C57\n0xED69\t0x7C5C\n0xED6A\t0x7C59\n0xED6B\t0x7C5B\n0xED6C\t0x7C5A\n0xED6D\t0x7CF4\n0xED6E\t0x7CF1\n0xED6F\t0x7E91\n0xED70\t0x7F4F\n0xED71\t0x7F87\n0xED72\t0x81DE\n0xED73\t0x826B\n0xED74\t0x8634\n0xED75\t0x8635\n0xED76\t0x8633\n0xED77\t0x862C\n0xED78\t0x8632\n0xED79\t0x8636\n0xED7A\t0x882C\n0xED7B\t0x8828\n0xED7C\t0x8826\n0xED7D\t0x882A\n0xED7E\t0x8825\n0xEDA1\t0x64A5\n0xEDA2\t0x6493\n0xEDA3\t0x6495\n0xEDA4\t0x64A9\n0xEDA5\t0x6492\n0xEDA6\t0x64AE\n0xEDA7\t0x64AD\n0xEDA8\t0x64AB\n0xEDA9\t0x649A\n0xEDAA\t0x64AC\n0xEDAB\t0x6499\n0xEDAC\t0x64A2\n0xEDAD\t0x64B3\n0xEDAE\t0x6575\n0xEDAF\t0x6577\n0xEDB0\t0x6578\n0xEDB1\t0x66AE\n0xEDB2\t0x66AB\n0xEDB3\t0x66B4\n0xEDB4\t0x66B1\n0xEDB5\t0x6A23\n0xEDB6\t0x6A1F\n0xEDB7\t0x69E8\n0xEDB8\t0x6A01\n0xEDB9\t0x6A1E\n0xEDBA\t0x6A19\n0xEDBB\t0x69FD\n0xEDBC\t0x6A21\n0xEDBD\t0x6A13\n0xEDBE\t0x6A0A\n0xEDBF\t0x69F3\n0xEDC0\t0x6A02\n0xEDC1\t0x6A05\n0xEDC2\t0x69ED\n0xEDC3\t0x6A11\n0xEDC4\t0x6B50\n0xEDC5\t0x6B4E\n0xEDC6\t0x6BA4\n0xEDC7\t0x6BC5\n0xEDC8\t0x6BC6\n0xEDC9\t0x6F3F\n0xEDCA\t0x6F7C\n0xEDCB\t0x6F84\n0xEDCC\t0x6F51\n0xEDCD\t0x6F66\n0xEDCE\t0x6F54\n0xEDCF\t0x6F86\n0xEDD0\t0x6F6D\n0xEDD1\t0x6F5B\n0xEDD2\t0x6F78\n0xEDD3\t0x6F6E\n0xEDD4\t0x6F8E\n0xEDD5\t0x6F7A\n0xEDD6\t0x6F70\n0xEDD7\t0x6F64\n0xEDD8\t0x6F97\n0xEDD9\t0x6F58\n0xEDDA\t0x6ED5\n0xEDDB\t0x6F6F\n0xEDDC\t0x6F60\n0xEDDD\t0x6F5F\n0xEDDE\t0x719F\n0xEDDF\t0x71AC\n0xEDE0\t0x71B1\n0xEDE1\t0x71A8\n0xEDE2\t0x7256\n0xEDE3\t0x729B\n0xEDE4\t0x734E\n0xEDE5\t0x7357\n0xEDE6\t0x7469\n0xEDE7\t0x748B\n0xEDE8\t0x7483\n0xEDE9\t0x747E\n0xEDEA\t0x7480\n0xEDEB\t0x757F\n0xEDEC\t0x7620\n0xEDED\t0x7629\n0xEDEE\t0x761F\n0xEDEF\t0x7624\n0xEDF0\t0x7626\n0xEDF1\t0x7621\n0xEDF2\t0x7622\n0xEDF3\t0x769A\n0xEDF4\t0x76BA\n0xEDF5\t0x76E4\n0xEDF6\t0x778E\n0xEDF7\t0x7787\n0xEDF8\t0x778C\n0xEDF9\t0x7791\n0xEDFA\t0x778B\n0xEDFB\t0x78CB\n0xEDFC\t0x78C5\n0xEDFD\t0x78BA\n0xEDFE\t0x78CA\n0xEE21\t0x8971\n0xEE22\t0x89BF\n0xEE23\t0x89BE\n0xEE24\t0x89FB\n0xEE25\t0x8B7E\n0xEE26\t0x8B84\n0xEE27\t0x8B82\n0xEE28\t0x8B86\n0xEE29\t0x8B85\n0xEE2A\t0x8B7F\n0xEE2B\t0x8D15\n0xEE2C\t0x8E95\n0xEE2D\t0x8E94\n0xEE2E\t0x8E9A\n0xEE2F\t0x8E92\n0xEE30\t0x8E90\n0xEE31\t0x8E96\n0xEE32\t0x8E97\n0xEE33\t0x8F60\n0xEE34\t0x8F62\n0xEE35\t0x9147\n0xEE36\t0x944C\n0xEE37\t0x9450\n0xEE38\t0x944A\n0xEE39\t0x944B\n0xEE3A\t0x944F\n0xEE3B\t0x9447\n0xEE3C\t0x9445\n0xEE3D\t0x9448\n0xEE3E\t0x9449\n0xEE3F\t0x9446\n0xEE40\t0x973F\n0xEE41\t0x97E3\n0xEE42\t0x986A\n0xEE43\t0x9869\n0xEE44\t0x98CB\n0xEE45\t0x9954\n0xEE46\t0x995B\n0xEE47\t0x9A4E\n0xEE48\t0x9A53\n0xEE49\t0x9A54\n0xEE4A\t0x9A4C\n0xEE4B\t0x9A4F\n0xEE4C\t0x9A48\n0xEE4D\t0x9A4A\n0xEE4E\t0x9A49\n0xEE4F\t0x9A52\n0xEE50\t0x9A50\n0xEE51\t0x9AD0\n0xEE52\t0x9B19\n0xEE53\t0x9B2B\n0xEE54\t0x9B3B\n0xEE55\t0x9B56\n0xEE56\t0x9B55\n0xEE57\t0x9C46\n0xEE58\t0x9C48\n0xEE59\t0x9C3F\n0xEE5A\t0x9C44\n0xEE5B\t0x9C39\n0xEE5C\t0x9C33\n0xEE5D\t0x9C41\n0xEE5E\t0x9C3C\n0xEE5F\t0x9C37\n0xEE60\t0x9C34\n0xEE61\t0x9C32\n0xEE62\t0x9C3D\n0xEE63\t0x9C36\n0xEE64\t0x9DDB\n0xEE65\t0x9DD2\n0xEE66\t0x9DDE\n0xEE67\t0x9DDA\n0xEE68\t0x9DCB\n0xEE69\t0x9DD0\n0xEE6A\t0x9DDC\n0xEE6B\t0x9DD1\n0xEE6C\t0x9DDF\n0xEE6D\t0x9DE9\n0xEE6E\t0x9DD9\n0xEE6F\t0x9DD8\n0xEE70\t0x9DD6\n0xEE71\t0x9DF5\n0xEE72\t0x9DD5\n0xEE73\t0x9DDD\n0xEE74\t0x9EB6\n0xEE75\t0x9EF0\n0xEE76\t0x9F35\n0xEE77\t0x9F33\n0xEE78\t0x9F32\n0xEE79\t0x9F42\n0xEE7A\t0x9F6B\n0xEE7B\t0x9F95\n0xEE7C\t0x9FA2\n0xEE7D\t0x513D\n0xEE7E\t0x5299\n0xEEA1\t0x78BE\n0xEEA2\t0x78D5\n0xEEA3\t0x78BC\n0xEEA4\t0x78D0\n0xEEA5\t0x7A3F\n0xEEA6\t0x7A3C\n0xEEA7\t0x7A40\n0xEEA8\t0x7A3D\n0xEEA9\t0x7A37\n0xEEAA\t0x7A3B\n0xEEAB\t0x7AAF\n0xEEAC\t0x7AAE\n0xEEAD\t0x7BAD\n0xEEAE\t0x7BB1\n0xEEAF\t0x7BC4\n0xEEB0\t0x7BB4\n0xEEB1\t0x7BC6\n0xEEB2\t0x7BC7\n0xEEB3\t0x7BC1\n0xEEB4\t0x7BA0\n0xEEB5\t0x7BCC\n0xEEB6\t0x7CCA\n0xEEB7\t0x7DE0\n0xEEB8\t0x7DF4\n0xEEB9\t0x7DEF\n0xEEBA\t0x7DFB\n0xEEBB\t0x7DD8\n0xEEBC\t0x7DEC\n0xEEBD\t0x7DDD\n0xEEBE\t0x7DE8\n0xEEBF\t0x7DE3\n0xEEC0\t0x7DDA\n0xEEC1\t0x7DDE\n0xEEC2\t0x7DE9\n0xEEC3\t0x7D9E\n0xEEC4\t0x7DD9\n0xEEC5\t0x7DF2\n0xEEC6\t0x7DF9\n0xEEC7\t0x7F75\n0xEEC8\t0x7F77\n0xEEC9\t0x7FAF\n0xEECA\t0x7FE9\n0xEECB\t0x8026\n0xEECC\t0x819B\n0xEECD\t0x819C\n0xEECE\t0x819D\n0xEECF\t0x81A0\n0xEED0\t0x819A\n0xEED1\t0x8198\n0xEED2\t0x8517\n0xEED3\t0x853D\n0xEED4\t0x851A\n0xEED5\t0x84EE\n0xEED6\t0x852C\n0xEED7\t0x852D\n0xEED8\t0x8513\n0xEED9\t0x8511\n0xEEDA\t0x8523\n0xEEDB\t0x8521\n0xEEDC\t0x8514\n0xEEDD\t0x84EC\n0xEEDE\t0x8525\n0xEEDF\t0x84FF\n0xEEE0\t0x8506\n0xEEE1\t0x8782\n0xEEE2\t0x8774\n0xEEE3\t0x8776\n0xEEE4\t0x8760\n0xEEE5\t0x8766\n0xEEE6\t0x8778\n0xEEE7\t0x8768\n0xEEE8\t0x8759\n0xEEE9\t0x8757\n0xEEEA\t0x874C\n0xEEEB\t0x8753\n0xEEEC\t0x885B\n0xEEED\t0x885D\n0xEEEE\t0x8910\n0xEEEF\t0x8907\n0xEEF0\t0x8912\n0xEEF1\t0x8913\n0xEEF2\t0x8915\n0xEEF3\t0x890A\n0xEEF4\t0x8ABC\n0xEEF5\t0x8AD2\n0xEEF6\t0x8AC7\n0xEEF7\t0x8AC4\n0xEEF8\t0x8A95\n0xEEF9\t0x8ACB\n0xEEFA\t0x8AF8\n0xEEFB\t0x8AB2\n0xEEFC\t0x8AC9\n0xEEFD\t0x8AC2\n0xEEFE\t0x8ABF\n0xEF21\t0x58E8\n0xEF22\t0x58E7\n0xEF23\t0x5972\n0xEF24\t0x5B4D\n0xEF25\t0x5DD8\n0xEF26\t0x882F\n0xEF27\t0x5F4F\n0xEF28\t0x6201\n0xEF29\t0x6203\n0xEF2A\t0x6204\n0xEF2B\t0x6529\n0xEF2C\t0x6525\n0xEF2D\t0x6596\n0xEF2E\t0x66EB\n0xEF2F\t0x6B11\n0xEF30\t0x6B12\n0xEF31\t0x6B0F\n0xEF32\t0x6BCA\n0xEF33\t0x705B\n0xEF34\t0x705A\n0xEF35\t0x7222\n0xEF36\t0x7382\n0xEF37\t0x7381\n0xEF38\t0x7383\n0xEF39\t0x7670\n0xEF3A\t0x77D4\n0xEF3B\t0x7C67\n0xEF3C\t0x7C66\n0xEF3D\t0x7E95\n0xEF3E\t0x826C\n0xEF3F\t0x863A\n0xEF40\t0x8640\n0xEF41\t0x8639\n0xEF42\t0x863C\n0xEF43\t0x8631\n0xEF44\t0x863B\n0xEF45\t0x863E\n0xEF46\t0x8830\n0xEF47\t0x8832\n0xEF48\t0x882E\n0xEF49\t0x8833\n0xEF4A\t0x8976\n0xEF4B\t0x8974\n0xEF4C\t0x8973\n0xEF4D\t0x89FE\n0xEF4E\t0x8B8C\n0xEF4F\t0x8B8E\n0xEF50\t0x8B8B\n0xEF51\t0x8B88\n0xEF52\t0x8C45\n0xEF53\t0x8D19\n0xEF54\t0x8E98\n0xEF55\t0x8F64\n0xEF56\t0x8F63\n0xEF57\t0x91BC\n0xEF58\t0x9462\n0xEF59\t0x9455\n0xEF5A\t0x945D\n0xEF5B\t0x9457\n0xEF5C\t0x945E\n0xEF5D\t0x97C4\n0xEF5E\t0x97C5\n0xEF5F\t0x9800\n0xEF60\t0x9A56\n0xEF61\t0x9A59\n0xEF62\t0x9B1E\n0xEF63\t0x9B1F\n0xEF64\t0x9B20\n0xEF65\t0x9C52\n0xEF66\t0x9C58\n0xEF67\t0x9C50\n0xEF68\t0x9C4A\n0xEF69\t0x9C4D\n0xEF6A\t0x9C4B\n0xEF6B\t0x9C55\n0xEF6C\t0x9C59\n0xEF6D\t0x9C4C\n0xEF6E\t0x9C4E\n0xEF6F\t0x9DFB\n0xEF70\t0x9DF7\n0xEF71\t0x9DEF\n0xEF72\t0x9DE3\n0xEF73\t0x9DEB\n0xEF74\t0x9DF8\n0xEF75\t0x9DE4\n0xEF76\t0x9DF6\n0xEF77\t0x9DE1\n0xEF78\t0x9DEE\n0xEF79\t0x9DE6\n0xEF7A\t0x9DF2\n0xEF7B\t0x9DF0\n0xEF7C\t0x9DE2\n0xEF7D\t0x9DEC\n0xEF7E\t0x9DF4\n0xEFA1\t0x8AB0\n0xEFA2\t0x8AD6\n0xEFA3\t0x8ACD\n0xEFA4\t0x8AB6\n0xEFA5\t0x8AB9\n0xEFA6\t0x8ADB\n0xEFA7\t0x8C4C\n0xEFA8\t0x8C4E\n0xEFA9\t0x8C6C\n0xEFAA\t0x8CE0\n0xEFAB\t0x8CDE\n0xEFAC\t0x8CE6\n0xEFAD\t0x8CE4\n0xEFAE\t0x8CEC\n0xEFAF\t0x8CED\n0xEFB0\t0x8CE2\n0xEFB1\t0x8CE3\n0xEFB2\t0x8CDC\n0xEFB3\t0x8CEA\n0xEFB4\t0x8CE1\n0xEFB5\t0x8D6D\n0xEFB6\t0x8D9F\n0xEFB7\t0x8DA3\n0xEFB8\t0x8E2B\n0xEFB9\t0x8E10\n0xEFBA\t0x8E1D\n0xEFBB\t0x8E22\n0xEFBC\t0x8E0F\n0xEFBD\t0x8E29\n0xEFBE\t0x8E1F\n0xEFBF\t0x8E21\n0xEFC0\t0x8E1E\n0xEFC1\t0x8EBA\n0xEFC2\t0x8F1D\n0xEFC3\t0x8F1B\n0xEFC4\t0x8F1F\n0xEFC5\t0x8F29\n0xEFC6\t0x8F26\n0xEFC7\t0x8F2A\n0xEFC8\t0x8F1C\n0xEFC9\t0x8F1E\n0xEFCA\t0x8F25\n0xEFCB\t0x9069\n0xEFCC\t0x906E\n0xEFCD\t0x9068\n0xEFCE\t0x906D\n0xEFCF\t0x9077\n0xEFD0\t0x9130\n0xEFD1\t0x912D\n0xEFD2\t0x9127\n0xEFD3\t0x9131\n0xEFD4\t0x9187\n0xEFD5\t0x9189\n0xEFD6\t0x918B\n0xEFD7\t0x9183\n0xEFD8\t0x92C5\n0xEFD9\t0x92BB\n0xEFDA\t0x92B7\n0xEFDB\t0x92EA\n0xEFDC\t0x92E4\n0xEFDD\t0x92C1\n0xEFDE\t0x92B3\n0xEFDF\t0x92BC\n0xEFE0\t0x92D2\n0xEFE1\t0x92C7\n0xEFE2\t0x92F0\n0xEFE3\t0x92B2\n0xEFE4\t0x95AD\n0xEFE5\t0x95B1\n0xEFE6\t0x9704\n0xEFE7\t0x9706\n0xEFE8\t0x9707\n0xEFE9\t0x9709\n0xEFEA\t0x9760\n0xEFEB\t0x978D\n0xEFEC\t0x978B\n0xEFED\t0x978F\n0xEFEE\t0x9821\n0xEFEF\t0x982B\n0xEFF0\t0x981C\n0xEFF1\t0x98B3\n0xEFF2\t0x990A\n0xEFF3\t0x9913\n0xEFF4\t0x9912\n0xEFF5\t0x9918\n0xEFF6\t0x99DD\n0xEFF7\t0x99D0\n0xEFF8\t0x99DF\n0xEFF9\t0x99DB\n0xEFFA\t0x99D1\n0xEFFB\t0x99D5\n0xEFFC\t0x99D2\n0xEFFD\t0x99D9\n0xEFFE\t0x9AB7\n0xF021\t0x9DF3\n0xF022\t0x9DE8\n0xF023\t0x9DED\n0xF024\t0x9EC2\n0xF025\t0x9ED0\n0xF026\t0x9EF2\n0xF027\t0x9EF3\n0xF028\t0x9F06\n0xF029\t0x9F1C\n0xF02A\t0x9F38\n0xF02B\t0x9F37\n0xF02C\t0x9F36\n0xF02D\t0x9F43\n0xF02E\t0x9F4F\n0xF02F\t0x9F71\n0xF030\t0x9F70\n0xF031\t0x9F6E\n0xF032\t0x9F6F\n0xF033\t0x56D3\n0xF034\t0x56CD\n0xF035\t0x5B4E\n0xF036\t0x5C6D\n0xF037\t0x652D\n0xF038\t0x66ED\n0xF039\t0x66EE\n0xF03A\t0x6B13\n0xF03B\t0x705F\n0xF03C\t0x7061\n0xF03D\t0x705D\n0xF03E\t0x7060\n0xF03F\t0x7223\n0xF040\t0x74DB\n0xF041\t0x74E5\n0xF042\t0x77D5\n0xF043\t0x7938\n0xF044\t0x79B7\n0xF045\t0x79B6\n0xF046\t0x7C6A\n0xF047\t0x7E97\n0xF048\t0x7F89\n0xF049\t0x826D\n0xF04A\t0x8643\n0xF04B\t0x8838\n0xF04C\t0x8837\n0xF04D\t0x8835\n0xF04E\t0x884B\n0xF04F\t0x8B94\n0xF050\t0x8B95\n0xF051\t0x8E9E\n0xF052\t0x8E9F\n0xF053\t0x8EA0\n0xF054\t0x8E9D\n0xF055\t0x91BE\n0xF056\t0x91BD\n0xF057\t0x91C2\n0xF058\t0x946B\n0xF059\t0x9468\n0xF05A\t0x9469\n0xF05B\t0x96E5\n0xF05C\t0x9746\n0xF05D\t0x9743\n0xF05E\t0x9747\n0xF05F\t0x97C7\n0xF060\t0x97E5\n0xF061\t0x9A5E\n0xF062\t0x9AD5\n0xF063\t0x9B59\n0xF064\t0x9C63\n0xF065\t0x9C67\n0xF066\t0x9C66\n0xF067\t0x9C62\n0xF068\t0x9C5E\n0xF069\t0x9C60\n0xF06A\t0x9E02\n0xF06B\t0x9DFE\n0xF06C\t0x9E07\n0xF06D\t0x9E03\n0xF06E\t0x9E06\n0xF06F\t0x9E05\n0xF070\t0x9E00\n0xF071\t0x9E01\n0xF072\t0x9E09\n0xF073\t0x9DFF\n0xF074\t0x9DFD\n0xF075\t0x9E04\n0xF076\t0x9EA0\n0xF077\t0x9F1E\n0xF078\t0x9F46\n0xF079\t0x9F74\n0xF07A\t0x9F75\n0xF07B\t0x9F76\n0xF07C\t0x56D4\n0xF07D\t0x652E\n0xF07E\t0x65B8\n0xF0A1\t0x9AEE\n0xF0A2\t0x9AEF\n0xF0A3\t0x9B27\n0xF0A4\t0x9B45\n0xF0A5\t0x9B44\n0xF0A6\t0x9B77\n0xF0A7\t0x9B6F\n0xF0A8\t0x9D06\n0xF0A9\t0x9D09\n0xF0AA\t0x9D03\n0xF0AB\t0x9EA9\n0xF0AC\t0x9EBE\n0xF0AD\t0x9ECE\n0xF0AE\t0x58A8\n0xF0AF\t0x9F52\n0xF0B0\t0x5112\n0xF0B1\t0x5118\n0xF0B2\t0x5114\n0xF0B3\t0x5110\n0xF0B4\t0x5115\n0xF0B5\t0x5180\n0xF0B6\t0x51AA\n0xF0B7\t0x51DD\n0xF0B8\t0x5291\n0xF0B9\t0x5293\n0xF0BA\t0x52F3\n0xF0BB\t0x5659\n0xF0BC\t0x566B\n0xF0BD\t0x5679\n0xF0BE\t0x5669\n0xF0BF\t0x5664\n0xF0C0\t0x5678\n0xF0C1\t0x566A\n0xF0C2\t0x5668\n0xF0C3\t0x5665\n0xF0C4\t0x5671\n0xF0C5\t0x566F\n0xF0C6\t0x566C\n0xF0C7\t0x5662\n0xF0C8\t0x5676\n0xF0C9\t0x58C1\n0xF0CA\t0x58BE\n0xF0CB\t0x58C7\n0xF0CC\t0x58C5\n0xF0CD\t0x596E\n0xF0CE\t0x5B1D\n0xF0CF\t0x5B34\n0xF0D0\t0x5B78\n0xF0D1\t0x5BF0\n0xF0D2\t0x5C0E\n0xF0D3\t0x5F4A\n0xF0D4\t0x61B2\n0xF0D5\t0x6191\n0xF0D6\t0x61A9\n0xF0D7\t0x618A\n0xF0D8\t0x61CD\n0xF0D9\t0x61B6\n0xF0DA\t0x61BE\n0xF0DB\t0x61CA\n0xF0DC\t0x61C8\n0xF0DD\t0x6230\n0xF0DE\t0x64C5\n0xF0DF\t0x64C1\n0xF0E0\t0x64CB\n0xF0E1\t0x64BB\n0xF0E2\t0x64BC\n0xF0E3\t0x64DA\n0xF0E4\t0x64C4\n0xF0E5\t0x64C7\n0xF0E6\t0x64C2\n0xF0E7\t0x64CD\n0xF0E8\t0x64BF\n0xF0E9\t0x64D2\n0xF0EA\t0x64D4\n0xF0EB\t0x64BE\n0xF0EC\t0x6574\n0xF0ED\t0x66C6\n0xF0EE\t0x66C9\n0xF0EF\t0x66B9\n0xF0F0\t0x66C4\n0xF0F1\t0x66C7\n0xF0F2\t0x66B8\n0xF0F3\t0x6A3D\n0xF0F4\t0x6A38\n0xF0F5\t0x6A3A\n0xF0F6\t0x6A59\n0xF0F7\t0x6A6B\n0xF0F8\t0x6A58\n0xF0F9\t0x6A39\n0xF0FA\t0x6A44\n0xF0FB\t0x6A62\n0xF0FC\t0x6A61\n0xF0FD\t0x6A4B\n0xF0FE\t0x6A47\n0xF121\t0x6B18\n0xF122\t0x6B19\n0xF123\t0x6B17\n0xF124\t0x6B1A\n0xF125\t0x7062\n0xF126\t0x7226\n0xF127\t0x72AA\n0xF128\t0x77D8\n0xF129\t0x77D9\n0xF12A\t0x7939\n0xF12B\t0x7C69\n0xF12C\t0x7C6B\n0xF12D\t0x7CF6\n0xF12E\t0x7E9A\n0xF12F\t0x7E98\n0xF130\t0x7E9B\n0xF131\t0x7E99\n0xF132\t0x81E0\n0xF133\t0x81E1\n0xF134\t0x8646\n0xF135\t0x8647\n0xF136\t0x8648\n0xF137\t0x8979\n0xF138\t0x897A\n0xF139\t0x897C\n0xF13A\t0x897B\n0xF13B\t0x89FF\n0xF13C\t0x8B98\n0xF13D\t0x8B99\n0xF13E\t0x8EA5\n0xF13F\t0x8EA4\n0xF140\t0x8EA3\n0xF141\t0x946E\n0xF142\t0x946D\n0xF143\t0x946F\n0xF144\t0x9471\n0xF145\t0x9473\n0xF146\t0x9749\n0xF147\t0x9872\n0xF148\t0x995F\n0xF149\t0x9C68\n0xF14A\t0x9C6E\n0xF14B\t0x9C6D\n0xF14C\t0x9E0B\n0xF14D\t0x9E0D\n0xF14E\t0x9E10\n0xF14F\t0x9E0F\n0xF150\t0x9E12\n0xF151\t0x9E11\n0xF152\t0x9EA1\n0xF153\t0x9EF5\n0xF154\t0x9F09\n0xF155\t0x9F47\n0xF156\t0x9F78\n0xF157\t0x9F7B\n0xF158\t0x9F7A\n0xF159\t0x9F79\n0xF15A\t0x571E\n0xF15B\t0x7066\n0xF15C\t0x7C6F\n0xF15D\t0x883C\n0xF15E\t0x8DB2\n0xF15F\t0x8EA6\n0xF160\t0x91C3\n0xF161\t0x9474\n0xF162\t0x9478\n0xF163\t0x9476\n0xF164\t0x9475\n0xF165\t0x9A60\n0xF166\t0x9B2E\n0xF167\t0x9C74\n0xF168\t0x9C73\n0xF169\t0x9C71\n0xF16A\t0x9C75\n0xF16B\t0x9E14\n0xF16C\t0x9E13\n0xF16D\t0x9EF6\n0xF16E\t0x9F0A\n0xF16F\t0x9FA4\n0xF170\t0x7068\n0xF171\t0x7065\n0xF172\t0x7CF7\n0xF173\t0x866A\n0xF174\t0x883E\n0xF175\t0x883D\n0xF176\t0x883F\n0xF177\t0x8B9E\n0xF178\t0x8C9C\n0xF179\t0x8EA9\n0xF17A\t0x8EC9\n0xF17B\t0x974B\n0xF17C\t0x9873\n0xF17D\t0x9874\n0xF17E\t0x98CC\n0xF1A1\t0x6A35\n0xF1A2\t0x6A5F\n0xF1A3\t0x6A48\n0xF1A4\t0x6B59\n0xF1A5\t0x6B77\n0xF1A6\t0x6C05\n0xF1A7\t0x6FC2\n0xF1A8\t0x6FB1\n0xF1A9\t0x6FA1\n0xF1AA\t0x6FC3\n0xF1AB\t0x6FA4\n0xF1AC\t0x6FC1\n0xF1AD\t0x6FA7\n0xF1AE\t0x6FB3\n0xF1AF\t0x6FC0\n0xF1B0\t0x6FB9\n0xF1B1\t0x6FB6\n0xF1B2\t0x6FA6\n0xF1B3\t0x6FA0\n0xF1B4\t0x6FB4\n0xF1B5\t0x71BE\n0xF1B6\t0x71C9\n0xF1B7\t0x71D0\n0xF1B8\t0x71D2\n0xF1B9\t0x71C8\n0xF1BA\t0x71D5\n0xF1BB\t0x71B9\n0xF1BC\t0x71CE\n0xF1BD\t0x71D9\n0xF1BE\t0x71DC\n0xF1BF\t0x71C3\n0xF1C0\t0x71C4\n0xF1C1\t0x7368\n0xF1C2\t0x749C\n0xF1C3\t0x74A3\n0xF1C4\t0x7498\n0xF1C5\t0x749F\n0xF1C6\t0x749E\n0xF1C7\t0x74E2\n0xF1C8\t0x750C\n0xF1C9\t0x750D\n0xF1CA\t0x7634\n0xF1CB\t0x7638\n0xF1CC\t0x763A\n0xF1CD\t0x76E7\n0xF1CE\t0x76E5\n0xF1CF\t0x77A0\n0xF1D0\t0x779E\n0xF1D1\t0x779F\n0xF1D2\t0x77A5\n0xF1D3\t0x78E8\n0xF1D4\t0x78DA\n0xF1D5\t0x78EC\n0xF1D6\t0x78E7\n0xF1D7\t0x79A6\n0xF1D8\t0x7A4D\n0xF1D9\t0x7A4E\n0xF1DA\t0x7A46\n0xF1DB\t0x7A4C\n0xF1DC\t0x7A4B\n0xF1DD\t0x7ABA\n0xF1DE\t0x7BD9\n0xF1DF\t0x7C11\n0xF1E0\t0x7BC9\n0xF1E1\t0x7BE4\n0xF1E2\t0x7BDB\n0xF1E3\t0x7BE1\n0xF1E4\t0x7BE9\n0xF1E5\t0x7BE6\n0xF1E6\t0x7CD5\n0xF1E7\t0x7CD6\n0xF1E8\t0x7E0A\n0xF1E9\t0x7E11\n0xF1EA\t0x7E08\n0xF1EB\t0x7E1B\n0xF1EC\t0x7E23\n0xF1ED\t0x7E1E\n0xF1EE\t0x7E1D\n0xF1EF\t0x7E09\n0xF1F0\t0x7E10\n0xF1F1\t0x7F79\n0xF1F2\t0x7FB2\n0xF1F3\t0x7FF0\n0xF1F4\t0x7FF1\n0xF1F5\t0x7FEE\n0xF1F6\t0x8028\n0xF1F7\t0x81B3\n0xF1F8\t0x81A9\n0xF1F9\t0x81A8\n0xF1FA\t0x81FB\n0xF1FB\t0x8208\n0xF1FC\t0x8258\n0xF1FD\t0x8259\n0xF1FE\t0x854A\n0xF221\t0x9961\n0xF222\t0x99AB\n0xF223\t0x9A64\n0xF224\t0x9A66\n0xF225\t0x9A67\n0xF226\t0x9B24\n0xF227\t0x9E15\n0xF228\t0x9E17\n0xF229\t0x9F48\n0xF22A\t0x6207\n0xF22B\t0x6B1E\n0xF22C\t0x7227\n0xF22D\t0x864C\n0xF22E\t0x8EA8\n0xF22F\t0x9482\n0xF230\t0x9480\n0xF231\t0x9481\n0xF232\t0x9A69\n0xF233\t0x9A68\n0xF234\t0x9E19\n0xF235\t0x864B\n0xF236\t0x8B9F\n0xF237\t0x9483\n0xF238\t0x9C79\n0xF239\t0x9EB7\n0xF23A\t0x7675\n0xF23B\t0x9A6B\n0xF23C\t0x9C7A\n0xF23D\t0x9E1D\n0xF23E\t0x7069\n0xF23F\t0x706A\n0xF240\t0x7229\n0xF241\t0x9EA4\n0xF242\t0x9F7E\n0xF243\t0x9F49\n0xF244\t0x9F98\n0xF2A1\t0x8559\n0xF2A2\t0x8548\n0xF2A3\t0x8568\n0xF2A4\t0x8569\n0xF2A5\t0x8543\n0xF2A6\t0x8549\n0xF2A7\t0x856D\n0xF2A8\t0x856A\n0xF2A9\t0x855E\n0xF2AA\t0x8783\n0xF2AB\t0x879F\n0xF2AC\t0x879E\n0xF2AD\t0x87A2\n0xF2AE\t0x878D\n0xF2AF\t0x8861\n0xF2B0\t0x892A\n0xF2B1\t0x8932\n0xF2B2\t0x8925\n0xF2B3\t0x892B\n0xF2B4\t0x8921\n0xF2B5\t0x89AA\n0xF2B6\t0x89A6\n0xF2B7\t0x8AE6\n0xF2B8\t0x8AFA\n0xF2B9\t0x8AEB\n0xF2BA\t0x8AF1\n0xF2BB\t0x8B00\n0xF2BC\t0x8ADC\n0xF2BD\t0x8AE7\n0xF2BE\t0x8AEE\n0xF2BF\t0x8AFE\n0xF2C0\t0x8B01\n0xF2C1\t0x8B02\n0xF2C2\t0x8AF7\n0xF2C3\t0x8AED\n0xF2C4\t0x8AF3\n0xF2C5\t0x8AF6\n0xF2C6\t0x8AFC\n0xF2C7\t0x8C6B\n0xF2C8\t0x8C6D\n0xF2C9\t0x8C93\n0xF2CA\t0x8CF4\n0xF2CB\t0x8E44\n0xF2CC\t0x8E31\n0xF2CD\t0x8E34\n0xF2CE\t0x8E42\n0xF2CF\t0x8E39\n0xF2D0\t0x8E35\n0xF2D1\t0x8F3B\n0xF2D2\t0x8F2F\n0xF2D3\t0x8F38\n0xF2D4\t0x8F33\n0xF2D5\t0x8FA8\n0xF2D6\t0x8FA6\n0xF2D7\t0x9075\n0xF2D8\t0x9074\n0xF2D9\t0x9078\n0xF2DA\t0x9072\n0xF2DB\t0x907C\n0xF2DC\t0x907A\n0xF2DD\t0x9134\n0xF2DE\t0x9192\n0xF2DF\t0x9320\n0xF2E0\t0x9336\n0xF2E1\t0x92F8\n0xF2E2\t0x9333\n0xF2E3\t0x932F\n0xF2E4\t0x9322\n0xF2E5\t0x92FC\n0xF2E6\t0x932B\n0xF2E7\t0x9304\n0xF2E8\t0x931A\n0xF2E9\t0x9310\n0xF2EA\t0x9326\n0xF2EB\t0x9321\n0xF2EC\t0x9315\n0xF2ED\t0x932E\n0xF2EE\t0x9319\n0xF2EF\t0x95BB\n0xF2F0\t0x96A7\n0xF2F1\t0x96A8\n0xF2F2\t0x96AA\n0xF2F3\t0x96D5\n0xF2F4\t0x970E\n0xF2F5\t0x9711\n0xF2F6\t0x9716\n0xF2F7\t0x970D\n0xF2F8\t0x9713\n0xF2F9\t0x970F\n0xF2FA\t0x975B\n0xF2FB\t0x975C\n0xF2FC\t0x9766\n0xF2FD\t0x9798\n0xF2FE\t0x9830\n0xF3A1\t0x9838\n0xF3A2\t0x983B\n0xF3A3\t0x9837\n0xF3A4\t0x982D\n0xF3A5\t0x9839\n0xF3A6\t0x9824\n0xF3A7\t0x9910\n0xF3A8\t0x9928\n0xF3A9\t0x991E\n0xF3AA\t0x991B\n0xF3AB\t0x9921\n0xF3AC\t0x991A\n0xF3AD\t0x99ED\n0xF3AE\t0x99E2\n0xF3AF\t0x99F1\n0xF3B0\t0x9AB8\n0xF3B1\t0x9ABC\n0xF3B2\t0x9AFB\n0xF3B3\t0x9AED\n0xF3B4\t0x9B28\n0xF3B5\t0x9B91\n0xF3B6\t0x9D15\n0xF3B7\t0x9D23\n0xF3B8\t0x9D26\n0xF3B9\t0x9D28\n0xF3BA\t0x9D12\n0xF3BB\t0x9D1B\n0xF3BC\t0x9ED8\n0xF3BD\t0x9ED4\n0xF3BE\t0x9F8D\n0xF3BF\t0x9F9C\n0xF3C0\t0x512A\n0xF3C1\t0x511F\n0xF3C2\t0x5121\n0xF3C3\t0x5132\n0xF3C4\t0x52F5\n0xF3C5\t0x568E\n0xF3C6\t0x5680\n0xF3C7\t0x5690\n0xF3C8\t0x5685\n0xF3C9\t0x5687\n0xF3CA\t0x568F\n0xF3CB\t0x58D5\n0xF3CC\t0x58D3\n0xF3CD\t0x58D1\n0xF3CE\t0x58CE\n0xF3CF\t0x5B30\n0xF3D0\t0x5B2A\n0xF3D1\t0x5B24\n0xF3D2\t0x5B7A\n0xF3D3\t0x5C37\n0xF3D4\t0x5C68\n0xF3D5\t0x5DBC\n0xF3D6\t0x5DBA\n0xF3D7\t0x5DBD\n0xF3D8\t0x5DB8\n0xF3D9\t0x5E6B\n0xF3DA\t0x5F4C\n0xF3DB\t0x5FBD\n0xF3DC\t0x61C9\n0xF3DD\t0x61C2\n0xF3DE\t0x61C7\n0xF3DF\t0x61E6\n0xF3E0\t0x61CB\n0xF3E1\t0x6232\n0xF3E2\t0x6234\n0xF3E3\t0x64CE\n0xF3E4\t0x64CA\n0xF3E5\t0x64D8\n0xF3E6\t0x64E0\n0xF3E7\t0x64F0\n0xF3E8\t0x64E6\n0xF3E9\t0x64EC\n0xF3EA\t0x64F1\n0xF3EB\t0x64E2\n0xF3EC\t0x64ED\n0xF3ED\t0x6582\n0xF3EE\t0x6583\n0xF3EF\t0x66D9\n0xF3F0\t0x66D6\n0xF3F1\t0x6A80\n0xF3F2\t0x6A94\n0xF3F3\t0x6A84\n0xF3F4\t0x6AA2\n0xF3F5\t0x6A9C\n0xF3F6\t0x6ADB\n0xF3F7\t0x6AA3\n0xF3F8\t0x6A7E\n0xF3F9\t0x6A97\n0xF3FA\t0x6A90\n0xF3FB\t0x6AA0\n0xF3FC\t0x6B5C\n0xF3FD\t0x6BAE\n0xF3FE\t0x6BDA\n0xF4A1\t0x6C08\n0xF4A2\t0x6FD8\n0xF4A3\t0x6FF1\n0xF4A4\t0x6FDF\n0xF4A5\t0x6FE0\n0xF4A6\t0x6FDB\n0xF4A7\t0x6FE4\n0xF4A8\t0x6FEB\n0xF4A9\t0x6FEF\n0xF4AA\t0x6F80\n0xF4AB\t0x6FEC\n0xF4AC\t0x6FE1\n0xF4AD\t0x6FE9\n0xF4AE\t0x6FD5\n0xF4AF\t0x6FEE\n0xF4B0\t0x6FF0\n0xF4B1\t0x71E7\n0xF4B2\t0x71DF\n0xF4B3\t0x71EE\n0xF4B4\t0x71E6\n0xF4B5\t0x71E5\n0xF4B6\t0x71ED\n0xF4B7\t0x71EC\n0xF4B8\t0x71F4\n0xF4B9\t0x71E0\n0xF4BA\t0x7235\n0xF4BB\t0x7246\n0xF4BC\t0x7370\n0xF4BD\t0x7372\n0xF4BE\t0x74A9\n0xF4BF\t0x74B0\n0xF4C0\t0x74A6\n0xF4C1\t0x74A8\n0xF4C2\t0x7646\n0xF4C3\t0x7642\n0xF4C4\t0x764C\n0xF4C5\t0x76EA\n0xF4C6\t0x77B3\n0xF4C7\t0x77AA\n0xF4C8\t0x77B0\n0xF4C9\t0x77AC\n0xF4CA\t0x77A7\n0xF4CB\t0x77AD\n0xF4CC\t0x77EF\n0xF4CD\t0x78F7\n0xF4CE\t0x78FA\n0xF4CF\t0x78F4\n0xF4D0\t0x78EF\n0xF4D1\t0x7901\n0xF4D2\t0x79A7\n0xF4D3\t0x79AA\n0xF4D4\t0x7A57\n0xF4D5\t0x7ABF\n0xF4D6\t0x7C07\n0xF4D7\t0x7C0D\n0xF4D8\t0x7BFE\n0xF4D9\t0x7BF7\n0xF4DA\t0x7C0C\n0xF4DB\t0x7BE0\n0xF4DC\t0x7CE0\n0xF4DD\t0x7CDC\n0xF4DE\t0x7CDE\n0xF4DF\t0x7CE2\n0xF4E0\t0x7CDF\n0xF4E1\t0x7CD9\n0xF4E2\t0x7CDD\n0xF4E3\t0x7E2E\n0xF4E4\t0x7E3E\n0xF4E5\t0x7E46\n0xF4E6\t0x7E37\n0xF4E7\t0x7E32\n0xF4E8\t0x7E43\n0xF4E9\t0x7E2B\n0xF4EA\t0x7E3D\n0xF4EB\t0x7E31\n0xF4EC\t0x7E45\n0xF4ED\t0x7E41\n0xF4EE\t0x7E34\n0xF4EF\t0x7E39\n0xF4F0\t0x7E48\n0xF4F1\t0x7E35\n0xF4F2\t0x7E3F\n0xF4F3\t0x7E2F\n0xF4F4\t0x7F44\n0xF4F5\t0x7FF3\n0xF4F6\t0x7FFC\n0xF4F7\t0x8071\n0xF4F8\t0x8072\n0xF4F9\t0x8070\n0xF4FA\t0x806F\n0xF4FB\t0x8073\n0xF4FC\t0x81C6\n0xF4FD\t0x81C3\n0xF4FE\t0x81BA\n0xF5A1\t0x81C2\n0xF5A2\t0x81C0\n0xF5A3\t0x81BF\n0xF5A4\t0x81BD\n0xF5A5\t0x81C9\n0xF5A6\t0x81BE\n0xF5A7\t0x81E8\n0xF5A8\t0x8209\n0xF5A9\t0x8271\n0xF5AA\t0x85AA\n0xF5AB\t0x8584\n0xF5AC\t0x857E\n0xF5AD\t0x859C\n0xF5AE\t0x8591\n0xF5AF\t0x8594\n0xF5B0\t0x85AF\n0xF5B1\t0x859B\n0xF5B2\t0x8587\n0xF5B3\t0x85A8\n0xF5B4\t0x858A\n0xF5B5\t0x85A6\n0xF5B6\t0x8667\n0xF5B7\t0x87C0\n0xF5B8\t0x87D1\n0xF5B9\t0x87B3\n0xF5BA\t0x87D2\n0xF5BB\t0x87C6\n0xF5BC\t0x87AB\n0xF5BD\t0x87BB\n0xF5BE\t0x87BA\n0xF5BF\t0x87C8\n0xF5C0\t0x87CB\n0xF5C1\t0x893B\n0xF5C2\t0x8936\n0xF5C3\t0x8944\n0xF5C4\t0x8938\n0xF5C5\t0x893D\n0xF5C6\t0x89AC\n0xF5C7\t0x8B0E\n0xF5C8\t0x8B17\n0xF5C9\t0x8B19\n0xF5CA\t0x8B1B\n0xF5CB\t0x8B0A\n0xF5CC\t0x8B20\n0xF5CD\t0x8B1D\n0xF5CE\t0x8B04\n0xF5CF\t0x8B10\n0xF5D0\t0x8C41\n0xF5D1\t0x8C3F\n0xF5D2\t0x8C73\n0xF5D3\t0x8CFA\n0xF5D4\t0x8CFD\n0xF5D5\t0x8CFC\n0xF5D6\t0x8CF8\n0xF5D7\t0x8CFB\n0xF5D8\t0x8DA8\n0xF5D9\t0x8E49\n0xF5DA\t0x8E4B\n0xF5DB\t0x8E48\n0xF5DC\t0x8E4A\n0xF5DD\t0x8F44\n0xF5DE\t0x8F3E\n0xF5DF\t0x8F42\n0xF5E0\t0x8F45\n0xF5E1\t0x8F3F\n0xF5E2\t0x907F\n0xF5E3\t0x907D\n0xF5E4\t0x9084\n0xF5E5\t0x9081\n0xF5E6\t0x9082\n0xF5E7\t0x9080\n0xF5E8\t0x9139\n0xF5E9\t0x91A3\n0xF5EA\t0x919E\n0xF5EB\t0x919C\n0xF5EC\t0x934D\n0xF5ED\t0x9382\n0xF5EE\t0x9328\n0xF5EF\t0x9375\n0xF5F0\t0x934A\n0xF5F1\t0x9365\n0xF5F2\t0x934B\n0xF5F3\t0x9318\n0xF5F4\t0x937E\n0xF5F5\t0x936C\n0xF5F6\t0x935B\n0xF5F7\t0x9370\n0xF5F8\t0x935A\n0xF5F9\t0x9354\n0xF5FA\t0x95CA\n0xF5FB\t0x95CB\n0xF5FC\t0x95CC\n0xF5FD\t0x95C8\n0xF5FE\t0x95C6\n0xF6A1\t0x96B1\n0xF6A2\t0x96B8\n0xF6A3\t0x96D6\n0xF6A4\t0x971C\n0xF6A5\t0x971E\n0xF6A6\t0x97A0\n0xF6A7\t0x97D3\n0xF6A8\t0x9846\n0xF6A9\t0x98B6\n0xF6AA\t0x9935\n0xF6AB\t0x9A01\n0xF6AC\t0x99FF\n0xF6AD\t0x9BAE\n0xF6AE\t0x9BAB\n0xF6AF\t0x9BAA\n0xF6B0\t0x9BAD\n0xF6B1\t0x9D3B\n0xF6B2\t0x9D3F\n0xF6B3\t0x9E8B\n0xF6B4\t0x9ECF\n0xF6B5\t0x9EDE\n0xF6B6\t0x9EDC\n0xF6B7\t0x9EDD\n0xF6B8\t0x9EDB\n0xF6B9\t0x9F3E\n0xF6BA\t0x9F4B\n0xF6BB\t0x53E2\n0xF6BC\t0x5695\n0xF6BD\t0x56AE\n0xF6BE\t0x58D9\n0xF6BF\t0x58D8\n0xF6C0\t0x5B38\n0xF6C1\t0x5F5E\n0xF6C2\t0x61E3\n0xF6C3\t0x6233\n0xF6C4\t0x64F4\n0xF6C5\t0x64F2\n0xF6C6\t0x64FE\n0xF6C7\t0x6506\n0xF6C8\t0x64FA\n0xF6C9\t0x64FB\n0xF6CA\t0x64F7\n0xF6CB\t0x65B7\n0xF6CC\t0x66DC\n0xF6CD\t0x6726\n0xF6CE\t0x6AB3\n0xF6CF\t0x6AAC\n0xF6D0\t0x6AC3\n0xF6D1\t0x6ABB\n0xF6D2\t0x6AB8\n0xF6D3\t0x6AC2\n0xF6D4\t0x6AAE\n0xF6D5\t0x6AAF\n0xF6D6\t0x6B5F\n0xF6D7\t0x6B78\n0xF6D8\t0x6BAF\n0xF6D9\t0x7009\n0xF6DA\t0x700B\n0xF6DB\t0x6FFE\n0xF6DC\t0x7006\n0xF6DD\t0x6FFA\n0xF6DE\t0x7011\n0xF6DF\t0x700F\n0xF6E0\t0x71FB\n0xF6E1\t0x71FC\n0xF6E2\t0x71FE\n0xF6E3\t0x71F8\n0xF6E4\t0x7377\n0xF6E5\t0x7375\n0xF6E6\t0x74A7\n0xF6E7\t0x74BF\n0xF6E8\t0x7515\n0xF6E9\t0x7656\n0xF6EA\t0x7658\n0xF6EB\t0x7652\n0xF6EC\t0x77BD\n0xF6ED\t0x77BF\n0xF6EE\t0x77BB\n0xF6EF\t0x77BC\n0xF6F0\t0x790E\n0xF6F1\t0x79AE\n0xF6F2\t0x7A61\n0xF6F3\t0x7A62\n0xF6F4\t0x7A60\n0xF6F5\t0x7AC4\n0xF6F6\t0x7AC5\n0xF6F7\t0x7C2B\n0xF6F8\t0x7C27\n0xF6F9\t0x7C2A\n0xF6FA\t0x7C1E\n0xF6FB\t0x7C23\n0xF6FC\t0x7C21\n0xF6FD\t0x7CE7\n0xF6FE\t0x7E54\n0xF7A1\t0x7E55\n0xF7A2\t0x7E5E\n0xF7A3\t0x7E5A\n0xF7A4\t0x7E61\n0xF7A5\t0x7E52\n0xF7A6\t0x7E59\n0xF7A7\t0x7F48\n0xF7A8\t0x7FF9\n0xF7A9\t0x7FFB\n0xF7AA\t0x8077\n0xF7AB\t0x8076\n0xF7AC\t0x81CD\n0xF7AD\t0x81CF\n0xF7AE\t0x820A\n0xF7AF\t0x85CF\n0xF7B0\t0x85A9\n0xF7B1\t0x85CD\n0xF7B2\t0x85D0\n0xF7B3\t0x85C9\n0xF7B4\t0x85B0\n0xF7B5\t0x85BA\n0xF7B6\t0x85B9\n0xF7B7\t0x87EF\n0xF7B8\t0x87EC\n0xF7B9\t0x87F2\n0xF7BA\t0x87E0\n0xF7BB\t0x8986\n0xF7BC\t0x89B2\n0xF7BD\t0x89F4\n0xF7BE\t0x8B28\n0xF7BF\t0x8B39\n0xF7C0\t0x8B2C\n0xF7C1\t0x8B2B\n0xF7C2\t0x8C50\n0xF7C3\t0x8D05\n0xF7C4\t0x8E59\n0xF7C5\t0x8E63\n0xF7C6\t0x8E66\n0xF7C7\t0x8E64\n0xF7C8\t0x8E5F\n0xF7C9\t0x8E55\n0xF7CA\t0x8EC0\n0xF7CB\t0x8F49\n0xF7CC\t0x8F4D\n0xF7CD\t0x9087\n0xF7CE\t0x9083\n0xF7CF\t0x9088\n0xF7D0\t0x91AB\n0xF7D1\t0x91AC\n0xF7D2\t0x91D0\n0xF7D3\t0x9394\n0xF7D4\t0x938A\n0xF7D5\t0x9396\n0xF7D6\t0x93A2\n0xF7D7\t0x93B3\n0xF7D8\t0x93AE\n0xF7D9\t0x93AC\n0xF7DA\t0x93B0\n0xF7DB\t0x9398\n0xF7DC\t0x939A\n0xF7DD\t0x9397\n0xF7DE\t0x95D4\n0xF7DF\t0x95D6\n0xF7E0\t0x95D0\n0xF7E1\t0x95D5\n0xF7E2\t0x96E2\n0xF7E3\t0x96DC\n0xF7E4\t0x96D9\n0xF7E5\t0x96DB\n0xF7E6\t0x96DE\n0xF7E7\t0x9724\n0xF7E8\t0x97A3\n0xF7E9\t0x97A6\n0xF7EA\t0x97AD\n0xF7EB\t0x97F9\n0xF7EC\t0x984D\n0xF7ED\t0x984F\n0xF7EE\t0x984C\n0xF7EF\t0x984E\n0xF7F0\t0x9853\n0xF7F1\t0x98BA\n0xF7F2\t0x993E\n0xF7F3\t0x993F\n0xF7F4\t0x993D\n0xF7F5\t0x992E\n0xF7F6\t0x99A5\n0xF7F7\t0x9A0E\n0xF7F8\t0x9AC1\n0xF7F9\t0x9B03\n0xF7FA\t0x9B06\n0xF7FB\t0x9B4F\n0xF7FC\t0x9B4E\n0xF7FD\t0x9B4D\n0xF7FE\t0x9BCA\n0xF8A1\t0x9BC9\n0xF8A2\t0x9BFD\n0xF8A3\t0x9BC8\n0xF8A4\t0x9BC0\n0xF8A5\t0x9D51\n0xF8A6\t0x9D5D\n0xF8A7\t0x9D60\n0xF8A8\t0x9EE0\n0xF8A9\t0x9F15\n0xF8AA\t0x9F2C\n0xF8AB\t0x5133\n0xF8AC\t0x56A5\n0xF8AD\t0x56A8\n0xF8AE\t0x58DE\n0xF8AF\t0x58DF\n0xF8B0\t0x58E2\n0xF8B1\t0x5BF5\n0xF8B2\t0x9F90\n0xF8B3\t0x5EEC\n0xF8B4\t0x61F2\n0xF8B5\t0x61F7\n0xF8B6\t0x61F6\n0xF8B7\t0x61F5\n0xF8B8\t0x6500\n0xF8B9\t0x650F\n0xF8BA\t0x66E0\n0xF8BB\t0x66DD\n0xF8BC\t0x6AE5\n0xF8BD\t0x6ADD\n0xF8BE\t0x6ADA\n0xF8BF\t0x6AD3\n0xF8C0\t0x701B\n0xF8C1\t0x701F\n0xF8C2\t0x7028\n0xF8C3\t0x701A\n0xF8C4\t0x701D\n0xF8C5\t0x7015\n0xF8C6\t0x7018\n0xF8C7\t0x7206\n0xF8C8\t0x720D\n0xF8C9\t0x7258\n0xF8CA\t0x72A2\n0xF8CB\t0x7378\n0xF8CC\t0x737A\n0xF8CD\t0x74BD\n0xF8CE\t0x74CA\n0xF8CF\t0x74E3\n0xF8D0\t0x7587\n0xF8D1\t0x7586\n0xF8D2\t0x765F\n0xF8D3\t0x7661\n0xF8D4\t0x77C7\n0xF8D5\t0x7919\n0xF8D6\t0x79B1\n0xF8D7\t0x7A6B\n0xF8D8\t0x7A69\n0xF8D9\t0x7C3E\n0xF8DA\t0x7C3F\n0xF8DB\t0x7C38\n0xF8DC\t0x7C3D\n0xF8DD\t0x7C37\n0xF8DE\t0x7C40\n0xF8DF\t0x7E6B\n0xF8E0\t0x7E6D\n0xF8E1\t0x7E79\n0xF8E2\t0x7E69\n0xF8E3\t0x7E6A\n0xF8E4\t0x7E73\n0xF8E5\t0x7F85\n0xF8E6\t0x7FB6\n0xF8E7\t0x7FB9\n0xF8E8\t0x7FB8\n0xF8E9\t0x81D8\n0xF8EA\t0x85E9\n0xF8EB\t0x85DD\n0xF8EC\t0x85EA\n0xF8ED\t0x85D5\n0xF8EE\t0x85E4\n0xF8EF\t0x85E5\n0xF8F0\t0x85F7\n0xF8F1\t0x87FB\n0xF8F2\t0x8805\n0xF8F3\t0x880D\n0xF8F4\t0x87F9\n0xF8F5\t0x87FE\n0xF8F6\t0x8960\n0xF8F7\t0x895F\n0xF8F8\t0x8956\n0xF8F9\t0x895E\n0xF8FA\t0x8B41\n0xF8FB\t0x8B5C\n0xF8FC\t0x8B58\n0xF8FD\t0x8B49\n0xF8FE\t0x8B5A\n0xF9A1\t0x8B4E\n0xF9A2\t0x8B4F\n0xF9A3\t0x8B46\n0xF9A4\t0x8B59\n0xF9A5\t0x8D08\n0xF9A6\t0x8D0A\n0xF9A7\t0x8E7C\n0xF9A8\t0x8E72\n0xF9A9\t0x8E87\n0xF9AA\t0x8E76\n0xF9AB\t0x8E6C\n0xF9AC\t0x8E7A\n0xF9AD\t0x8E74\n0xF9AE\t0x8F54\n0xF9AF\t0x8F4E\n0xF9B0\t0x8FAD\n0xF9B1\t0x908A\n0xF9B2\t0x908B\n0xF9B3\t0x91B1\n0xF9B4\t0x91AE\n0xF9B5\t0x93E1\n0xF9B6\t0x93D1\n0xF9B7\t0x93DF\n0xF9B8\t0x93C3\n0xF9B9\t0x93C8\n0xF9BA\t0x93DC\n0xF9BB\t0x93DD\n0xF9BC\t0x93D6\n0xF9BD\t0x93E2\n0xF9BE\t0x93CD\n0xF9BF\t0x93D8\n0xF9C0\t0x93E4\n0xF9C1\t0x93D7\n0xF9C2\t0x93E8\n0xF9C3\t0x95DC\n0xF9C4\t0x96B4\n0xF9C5\t0x96E3\n0xF9C6\t0x972A\n0xF9C7\t0x9727\n0xF9C8\t0x9761\n0xF9C9\t0x97DC\n0xF9CA\t0x97FB\n0xF9CB\t0x985E\n0xF9CC\t0x9858\n0xF9CD\t0x985B\n0xF9CE\t0x98BC\n0xF9CF\t0x9945\n0xF9D0\t0x9949\n0xF9D1\t0x9A16\n0xF9D2\t0x9A19\n0xF9D3\t0x9B0D\n0xF9D4\t0x9BE8\n0xF9D5\t0x9BE7\n0xF9D6\t0x9BD6\n0xF9D7\t0x9BDB\n0xF9D8\t0x9D89\n0xF9D9\t0x9D61\n0xF9DA\t0x9D72\n0xF9DB\t0x9D6A\n0xF9DC\t0x9D6C\n0xF9DD\t0x9E92\n0xF9DE\t0x9E97\n0xF9DF\t0x9E93\n0xF9E0\t0x9EB4\n0xF9E1\t0x52F8\n0xF9E2\t0x56B7\n0xF9E3\t0x56B6\n0xF9E4\t0x56B4\n0xF9E5\t0x56BC\n0xF9E6\t0x58E4\n0xF9E7\t0x5B40\n0xF9E8\t0x5B43\n0xF9E9\t0x5B7D\n0xF9EA\t0x5BF6\n0xF9EB\t0x5DC9\n0xF9EC\t0x61F8\n0xF9ED\t0x61FA\n0xF9EE\t0x6518\n0xF9EF\t0x6514\n0xF9F0\t0x6519\n0xF9F1\t0x66E6\n0xF9F2\t0x6727\n0xF9F3\t0x6AEC\n0xF9F4\t0x703E\n0xF9F5\t0x7030\n0xF9F6\t0x7032\n0xF9F7\t0x7210\n0xF9F8\t0x737B\n0xF9F9\t0x74CF\n0xF9FA\t0x7662\n0xF9FB\t0x7665\n0xF9FC\t0x7926\n0xF9FD\t0x792A\n0xF9FE\t0x792C\n0xFAA1\t0x792B\n0xFAA2\t0x7AC7\n0xFAA3\t0x7AF6\n0xFAA4\t0x7C4C\n0xFAA5\t0x7C43\n0xFAA6\t0x7C4D\n0xFAA7\t0x7CEF\n0xFAA8\t0x7CF0\n0xFAA9\t0x8FAE\n0xFAAA\t0x7E7D\n0xFAAB\t0x7E7C\n0xFAAC\t0x7E82\n0xFAAD\t0x7F4C\n0xFAAE\t0x8000\n0xFAAF\t0x81DA\n0xFAB0\t0x8266\n0xFAB1\t0x85FB\n0xFAB2\t0x85F9\n0xFAB3\t0x8611\n0xFAB4\t0x85FA\n0xFAB5\t0x8606\n0xFAB6\t0x860B\n0xFAB7\t0x8607\n0xFAB8\t0x860A\n0xFAB9\t0x8814\n0xFABA\t0x8815\n0xFABB\t0x8964\n0xFABC\t0x89BA\n0xFABD\t0x89F8\n0xFABE\t0x8B70\n0xFABF\t0x8B6C\n0xFAC0\t0x8B66\n0xFAC1\t0x8B6F\n0xFAC2\t0x8B5F\n0xFAC3\t0x8B6B\n0xFAC4\t0x8D0F\n0xFAC5\t0x8D0D\n0xFAC6\t0x8E89\n0xFAC7\t0x8E81\n0xFAC8\t0x8E85\n0xFAC9\t0x8E82\n0xFACA\t0x91B4\n0xFACB\t0x91CB\n0xFACC\t0x9418\n0xFACD\t0x9403\n0xFACE\t0x93FD\n0xFACF\t0x95E1\n0xFAD0\t0x9730\n0xFAD1\t0x98C4\n0xFAD2\t0x9952\n0xFAD3\t0x9951\n0xFAD4\t0x99A8\n0xFAD5\t0x9A2B\n0xFAD6\t0x9A30\n0xFAD7\t0x9A37\n0xFAD8\t0x9A35\n0xFAD9\t0x9C13\n0xFADA\t0x9C0D\n0xFADB\t0x9E79\n0xFADC\t0x9EB5\n0xFADD\t0x9EE8\n0xFADE\t0x9F2F\n0xFADF\t0x9F5F\n0xFAE0\t0x9F63\n0xFAE1\t0x9F61\n0xFAE2\t0x5137\n0xFAE3\t0x5138\n0xFAE4\t0x56C1\n0xFAE5\t0x56C0\n0xFAE6\t0x56C2\n0xFAE7\t0x5914\n0xFAE8\t0x5C6C\n0xFAE9\t0x5DCD\n0xFAEA\t0x61FC\n0xFAEB\t0x61FE\n0xFAEC\t0x651D\n0xFAED\t0x651C\n0xFAEE\t0x6595\n0xFAEF\t0x66E9\n0xFAF0\t0x6AFB\n0xFAF1\t0x6B04\n0xFAF2\t0x6AFA\n0xFAF3\t0x6BB2\n0xFAF4\t0x704C\n0xFAF5\t0x721B\n0xFAF6\t0x72A7\n0xFAF7\t0x74D6\n0xFAF8\t0x74D4\n0xFAF9\t0x7669\n0xFAFA\t0x77D3\n0xFAFB\t0x7C50\n0xFAFC\t0x7E8F\n0xFAFD\t0x7E8C\n0xFAFE\t0x7FBC\n0xFBA1\t0x8617\n0xFBA2\t0x862D\n0xFBA3\t0x861A\n0xFBA4\t0x8823\n0xFBA5\t0x8822\n0xFBA6\t0x8821\n0xFBA7\t0x881F\n0xFBA8\t0x896A\n0xFBA9\t0x896C\n0xFBAA\t0x89BD\n0xFBAB\t0x8B74\n0xFBAC\t0x8B77\n0xFBAD\t0x8B7D\n0xFBAE\t0x8D13\n0xFBAF\t0x8E8A\n0xFBB0\t0x8E8D\n0xFBB1\t0x8E8B\n0xFBB2\t0x8F5F\n0xFBB3\t0x8FAF\n0xFBB4\t0x91BA\n0xFBB5\t0x942E\n0xFBB6\t0x9433\n0xFBB7\t0x9435\n0xFBB8\t0x943A\n0xFBB9\t0x9438\n0xFBBA\t0x9432\n0xFBBB\t0x942B\n0xFBBC\t0x95E2\n0xFBBD\t0x9738\n0xFBBE\t0x9739\n0xFBBF\t0x9732\n0xFBC0\t0x97FF\n0xFBC1\t0x9867\n0xFBC2\t0x9865\n0xFBC3\t0x9957\n0xFBC4\t0x9A45\n0xFBC5\t0x9A43\n0xFBC6\t0x9A40\n0xFBC7\t0x9A3E\n0xFBC8\t0x9ACF\n0xFBC9\t0x9B54\n0xFBCA\t0x9B51\n0xFBCB\t0x9C2D\n0xFBCC\t0x9C25\n0xFBCD\t0x9DAF\n0xFBCE\t0x9DB4\n0xFBCF\t0x9DC2\n0xFBD0\t0x9DB8\n0xFBD1\t0x9E9D\n0xFBD2\t0x9EEF\n0xFBD3\t0x9F19\n0xFBD4\t0x9F5C\n0xFBD5\t0x9F66\n0xFBD6\t0x9F67\n0xFBD7\t0x513C\n0xFBD8\t0x513B\n0xFBD9\t0x56C8\n0xFBDA\t0x56CA\n0xFBDB\t0x56C9\n0xFBDC\t0x5B7F\n0xFBDD\t0x5DD4\n0xFBDE\t0x5DD2\n0xFBDF\t0x5F4E\n0xFBE0\t0x61FF\n0xFBE1\t0x6524\n0xFBE2\t0x6B0A\n0xFBE3\t0x6B61\n0xFBE4\t0x7051\n0xFBE5\t0x7058\n0xFBE6\t0x7380\n0xFBE7\t0x74E4\n0xFBE8\t0x758A\n0xFBE9\t0x766E\n0xFBEA\t0x766C\n0xFBEB\t0x79B3\n0xFBEC\t0x7C60\n0xFBED\t0x7C5F\n0xFBEE\t0x807E\n0xFBEF\t0x807D\n0xFBF0\t0x81DF\n0xFBF1\t0x8972\n0xFBF2\t0x896F\n0xFBF3\t0x89FC\n0xFBF4\t0x8B80\n0xFBF5\t0x8D16\n0xFBF6\t0x8D17\n0xFBF7\t0x8E91\n0xFBF8\t0x8E93\n0xFBF9\t0x8F61\n0xFBFA\t0x9148\n0xFBFB\t0x9444\n0xFBFC\t0x9451\n0xFBFD\t0x9452\n0xFBFE\t0x973D\n0xFCA1\t0x973E\n0xFCA2\t0x97C3\n0xFCA3\t0x97C1\n0xFCA4\t0x986B\n0xFCA5\t0x9955\n0xFCA6\t0x9A55\n0xFCA7\t0x9A4D\n0xFCA8\t0x9AD2\n0xFCA9\t0x9B1A\n0xFCAA\t0x9C49\n0xFCAB\t0x9C31\n0xFCAC\t0x9C3E\n0xFCAD\t0x9C3B\n0xFCAE\t0x9DD3\n0xFCAF\t0x9DD7\n0xFCB0\t0x9F34\n0xFCB1\t0x9F6C\n0xFCB2\t0x9F6A\n0xFCB3\t0x9F94\n0xFCB4\t0x56CC\n0xFCB5\t0x5DD6\n0xFCB6\t0x6200\n0xFCB7\t0x6523\n0xFCB8\t0x652B\n0xFCB9\t0x652A\n0xFCBA\t0x66EC\n0xFCBB\t0x6B10\n0xFCBC\t0x74DA\n0xFCBD\t0x7ACA\n0xFCBE\t0x7C64\n0xFCBF\t0x7C63\n0xFCC0\t0x7C65\n0xFCC1\t0x7E93\n0xFCC2\t0x7E96\n0xFCC3\t0x7E94\n0xFCC4\t0x81E2\n0xFCC5\t0x8638\n0xFCC6\t0x863F\n0xFCC7\t0x8831\n0xFCC8\t0x8B8A\n0xFCC9\t0x9090\n0xFCCA\t0x908F\n0xFCCB\t0x9463\n0xFCCC\t0x9460\n0xFCCD\t0x9464\n0xFCCE\t0x9768\n0xFCCF\t0x986F\n0xFCD0\t0x995C\n0xFCD1\t0x9A5A\n0xFCD2\t0x9A5B\n0xFCD3\t0x9A57\n0xFCD4\t0x9AD3\n0xFCD5\t0x9AD4\n0xFCD6\t0x9AD1\n0xFCD7\t0x9C54\n0xFCD8\t0x9C57\n0xFCD9\t0x9C56\n0xFCDA\t0x9DE5\n0xFCDB\t0x9E9F\n0xFCDC\t0x9EF4\n0xFCDD\t0x56D1\n0xFCDE\t0x58E9\n0xFCDF\t0x652C\n0xFCE0\t0x705E\n0xFCE1\t0x7671\n0xFCE2\t0x7672\n0xFCE3\t0x77D7\n0xFCE4\t0x7F50\n0xFCE5\t0x7F88\n0xFCE6\t0x8836\n0xFCE7\t0x8839\n0xFCE8\t0x8862\n0xFCE9\t0x8B93\n0xFCEA\t0x8B92\n0xFCEB\t0x8B96\n0xFCEC\t0x8277\n0xFCED\t0x8D1B\n0xFCEE\t0x91C0\n0xFCEF\t0x946A\n0xFCF0\t0x9742\n0xFCF1\t0x9748\n0xFCF2\t0x9744\n0xFCF3\t0x97C6\n0xFCF4\t0x9870\n0xFCF5\t0x9A5F\n0xFCF6\t0x9B22\n0xFCF7\t0x9B58\n0xFCF8\t0x9C5F\n0xFCF9\t0x9DF9\n0xFCFA\t0x9DFA\n0xFCFB\t0x9E7C\n0xFCFC\t0x9E7D\n0xFCFD\t0x9F07\n0xFCFE\t0x9F77\n0xFDA1\t0x9F72\n0xFDA2\t0x5EF3\n0xFDA3\t0x6B16\n0xFDA4\t0x7063\n0xFDA5\t0x7C6C\n0xFDA6\t0x7C6E\n0xFDA7\t0x883B\n0xFDA8\t0x89C0\n0xFDA9\t0x8EA1\n0xFDAA\t0x91C1\n0xFDAB\t0x9472\n0xFDAC\t0x9470\n0xFDAD\t0x9871\n0xFDAE\t0x995E\n0xFDAF\t0x9AD6\n0xFDB0\t0x9B23\n0xFDB1\t0x9ECC\n0xFDB2\t0x7064\n0xFDB3\t0x77DA\n0xFDB4\t0x8B9A\n0xFDB5\t0x9477\n0xFDB6\t0x97C9\n0xFDB7\t0x9A62\n0xFDB8\t0x9A65\n0xFDB9\t0x7E9C\n0xFDBA\t0x8B9C\n0xFDBB\t0x8EAA\n0xFDBC\t0x91C5\n0xFDBD\t0x947D\n0xFDBE\t0x947E\n0xFDBF\t0x947C\n0xFDC0\t0x9C77\n0xFDC1\t0x9C78\n0xFDC2\t0x9EF7\n0xFDC3\t0x8C54\n0xFDC4\t0x947F\n0xFDC5\t0x9E1A\n0xFDC6\t0x7228\n0xFDC7\t0x9A6A\n0xFDC8\t0x9B31\n0xFDC9\t0x9E1B\n0xFDCA\t0x9E1E\n0xFDCB\t0x7C72\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/DEC-KANJI.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0xA1A1\t0x3000\n0xA1A2\t0x3001\n0xA1A3\t0x3002\n0xA1A4\t0xFF0C\n0xA1A5\t0xFF0E\n0xA1A6\t0x30FB\n0xA1A7\t0xFF1A\n0xA1A8\t0xFF1B\n0xA1A9\t0xFF1F\n0xA1AA\t0xFF01\n0xA1AB\t0x309B\n0xA1AC\t0x309C\n0xA1AD\t0x00B4\n0xA1AE\t0xFF40\n0xA1AF\t0x00A8\n0xA1B0\t0xFF3E\n0xA1B1\t0xFFE3\n0xA1B2\t0xFF3F\n0xA1B3\t0x30FD\n0xA1B4\t0x30FE\n0xA1B5\t0x309D\n0xA1B6\t0x309E\n0xA1B7\t0x3003\n0xA1B8\t0x4EDD\n0xA1B9\t0x3005\n0xA1BA\t0x3006\n0xA1BB\t0x3007\n0xA1BC\t0x30FC\n0xA1BD\t0x2015\n0xA1BE\t0x2010\n0xA1BF\t0xFF0F\n0xA1C0\t0xFF3C\n0xA1C1\t0x301C\n0xA1C2\t0x2016\n0xA1C3\t0xFF5C\n0xA1C4\t0x2026\n0xA1C5\t0x2025\n0xA1C6\t0x2018\n0xA1C7\t0x2019\n0xA1C8\t0x201C\n0xA1C9\t0x201D\n0xA1CA\t0xFF08\n0xA1CB\t0xFF09\n0xA1CC\t0x3014\n0xA1CD\t0x3015\n0xA1CE\t0xFF3B\n0xA1CF\t0xFF3D\n0xA1D0\t0xFF5B\n0xA1D1\t0xFF5D\n0xA1D2\t0x3008\n0xA1D3\t0x3009\n0xA1D4\t0x300A\n0xA1D5\t0x300B\n0xA1D6\t0x300C\n0xA1D7\t0x300D\n0xA1D8\t0x300E\n0xA1D9\t0x300F\n0xA1DA\t0x3010\n0xA1DB\t0x3011\n0xA1DC\t0xFF0B\n0xA1DD\t0x2212\n0xA1DE\t0x00B1\n0xA1DF\t0x00D7\n0xA1E0\t0x00F7\n0xA1E1\t0xFF1D\n0xA1E2\t0x2260\n0xA1E3\t0xFF1C\n0xA1E4\t0xFF1E\n0xA1E5\t0x2266\n0xA1E6\t0x2267\n0xA1E7\t0x221E\n0xA1E8\t0x2234\n0xA1E9\t0x2642\n0xA1EA\t0x2640\n0xA1EB\t0x00B0\n0xA1EC\t0x2032\n0xA1ED\t0x2033\n0xA1EE\t0x2103\n0xA1EF\t0xFFE5\n0xA1F0\t0xFF04\n0xA1F1\t0x00A2\n0xA1F2\t0x00A3\n0xA1F3\t0xFF05\n0xA1F4\t0xFF03\n0xA1F5\t0xFF06\n0xA1F6\t0xFF0A\n0xA1F7\t0xFF20\n0xA1F8\t0x00A7\n0xA1F9\t0x2606\n0xA1FA\t0x2605\n0xA1FB\t0x25CB\n0xA1FC\t0x25CF\n0xA1FD\t0x25CE\n0xA1FE\t0x25C7\n0xA2A1\t0x25C6\n0xA2A2\t0x25A1\n0xA2A3\t0x25A0\n0xA2A4\t0x25B3\n0xA2A5\t0x25B2\n0xA2A6\t0x25BD\n0xA2A7\t0x25BC\n0xA2A8\t0x203B\n0xA2A9\t0x3012\n0xA2AA\t0x2192\n0xA2AB\t0x2190\n0xA2AC\t0x2191\n0xA2AD\t0x2193\n0xA2AE\t0x3013\n0xA2BA\t0x2208\n0xA2BB\t0x220B\n0xA2BC\t0x2286\n0xA2BD\t0x2287\n0xA2BE\t0x2282\n0xA2BF\t0x2283\n0xA2C0\t0x222A\n0xA2C1\t0x2229\n0xA2CA\t0x2227\n0xA2CB\t0x2228\n0xA2CC\t0x00AC\n0xA2CD\t0x21D2\n0xA2CE\t0x21D4\n0xA2CF\t0x2200\n0xA2D0\t0x2203\n0xA2DC\t0x2220\n0xA2DD\t0x22A5\n0xA2DE\t0x2312\n0xA2DF\t0x2202\n0xA2E0\t0x2207\n0xA2E1\t0x2261\n0xA2E2\t0x2252\n0xA2E3\t0x226A\n0xA2E4\t0x226B\n0xA2E5\t0x221A\n0xA2E6\t0x223D\n0xA2E7\t0x221D\n0xA2E8\t0x2235\n0xA2E9\t0x222B\n0xA2EA\t0x222C\n0xA2F2\t0x212B\n0xA2F3\t0x2030\n0xA2F4\t0x266F\n0xA2F5\t0x266D\n0xA2F6\t0x266A\n0xA2F7\t0x2020\n0xA2F8\t0x2021\n0xA2F9\t0x00B6\n0xA2FE\t0x25EF\n0xA3B0\t0xFF10\n0xA3B1\t0xFF11\n0xA3B2\t0xFF12\n0xA3B3\t0xFF13\n0xA3B4\t0xFF14\n0xA3B5\t0xFF15\n0xA3B6\t0xFF16\n0xA3B7\t0xFF17\n0xA3B8\t0xFF18\n0xA3B9\t0xFF19\n0xA3C1\t0xFF21\n0xA3C2\t0xFF22\n0xA3C3\t0xFF23\n0xA3C4\t0xFF24\n0xA3C5\t0xFF25\n0xA3C6\t0xFF26\n0xA3C7\t0xFF27\n0xA3C8\t0xFF28\n0xA3C9\t0xFF29\n0xA3CA\t0xFF2A\n0xA3CB\t0xFF2B\n0xA3CC\t0xFF2C\n0xA3CD\t0xFF2D\n0xA3CE\t0xFF2E\n0xA3CF\t0xFF2F\n0xA3D0\t0xFF30\n0xA3D1\t0xFF31\n0xA3D2\t0xFF32\n0xA3D3\t0xFF33\n0xA3D4\t0xFF34\n0xA3D5\t0xFF35\n0xA3D6\t0xFF36\n0xA3D7\t0xFF37\n0xA3D8\t0xFF38\n0xA3D9\t0xFF39\n0xA3DA\t0xFF3A\n0xA3E1\t0xFF41\n0xA3E2\t0xFF42\n0xA3E3\t0xFF43\n0xA3E4\t0xFF44\n0xA3E5\t0xFF45\n0xA3E6\t0xFF46\n0xA3E7\t0xFF47\n0xA3E8\t0xFF48\n0xA3E9\t0xFF49\n0xA3EA\t0xFF4A\n0xA3EB\t0xFF4B\n0xA3EC\t0xFF4C\n0xA3ED\t0xFF4D\n0xA3EE\t0xFF4E\n0xA3EF\t0xFF4F\n0xA3F0\t0xFF50\n0xA3F1\t0xFF51\n0xA3F2\t0xFF52\n0xA3F3\t0xFF53\n0xA3F4\t0xFF54\n0xA3F5\t0xFF55\n0xA3F6\t0xFF56\n0xA3F7\t0xFF57\n0xA3F8\t0xFF58\n0xA3F9\t0xFF59\n0xA3FA\t0xFF5A\n0xA4A1\t0x3041\n0xA4A2\t0x3042\n0xA4A3\t0x3043\n0xA4A4\t0x3044\n0xA4A5\t0x3045\n0xA4A6\t0x3046\n0xA4A7\t0x3047\n0xA4A8\t0x3048\n0xA4A9\t0x3049\n0xA4AA\t0x304A\n0xA4AB\t0x304B\n0xA4AC\t0x304C\n0xA4AD\t0x304D\n0xA4AE\t0x304E\n0xA4AF\t0x304F\n0xA4B0\t0x3050\n0xA4B1\t0x3051\n0xA4B2\t0x3052\n0xA4B3\t0x3053\n0xA4B4\t0x3054\n0xA4B5\t0x3055\n0xA4B6\t0x3056\n0xA4B7\t0x3057\n0xA4B8\t0x3058\n0xA4B9\t0x3059\n0xA4BA\t0x305A\n0xA4BB\t0x305B\n0xA4BC\t0x305C\n0xA4BD\t0x305D\n0xA4BE\t0x305E\n0xA4BF\t0x305F\n0xA4C0\t0x3060\n0xA4C1\t0x3061\n0xA4C2\t0x3062\n0xA4C3\t0x3063\n0xA4C4\t0x3064\n0xA4C5\t0x3065\n0xA4C6\t0x3066\n0xA4C7\t0x3067\n0xA4C8\t0x3068\n0xA4C9\t0x3069\n0xA4CA\t0x306A\n0xA4CB\t0x306B\n0xA4CC\t0x306C\n0xA4CD\t0x306D\n0xA4CE\t0x306E\n0xA4CF\t0x306F\n0xA4D0\t0x3070\n0xA4D1\t0x3071\n0xA4D2\t0x3072\n0xA4D3\t0x3073\n0xA4D4\t0x3074\n0xA4D5\t0x3075\n0xA4D6\t0x3076\n0xA4D7\t0x3077\n0xA4D8\t0x3078\n0xA4D9\t0x3079\n0xA4DA\t0x307A\n0xA4DB\t0x307B\n0xA4DC\t0x307C\n0xA4DD\t0x307D\n0xA4DE\t0x307E\n0xA4DF\t0x307F\n0xA4E0\t0x3080\n0xA4E1\t0x3081\n0xA4E2\t0x3082\n0xA4E3\t0x3083\n0xA4E4\t0x3084\n0xA4E5\t0x3085\n0xA4E6\t0x3086\n0xA4E7\t0x3087\n0xA4E8\t0x3088\n0xA4E9\t0x3089\n0xA4EA\t0x308A\n0xA4EB\t0x308B\n0xA4EC\t0x308C\n0xA4ED\t0x308D\n0xA4EE\t0x308E\n0xA4EF\t0x308F\n0xA4F0\t0x3090\n0xA4F1\t0x3091\n0xA4F2\t0x3092\n0xA4F3\t0x3093\n0xA5A1\t0x30A1\n0xA5A2\t0x30A2\n0xA5A3\t0x30A3\n0xA5A4\t0x30A4\n0xA5A5\t0x30A5\n0xA5A6\t0x30A6\n0xA5A7\t0x30A7\n0xA5A8\t0x30A8\n0xA5A9\t0x30A9\n0xA5AA\t0x30AA\n0xA5AB\t0x30AB\n0xA5AC\t0x30AC\n0xA5AD\t0x30AD\n0xA5AE\t0x30AE\n0xA5AF\t0x30AF\n0xA5B0\t0x30B0\n0xA5B1\t0x30B1\n0xA5B2\t0x30B2\n0xA5B3\t0x30B3\n0xA5B4\t0x30B4\n0xA5B5\t0x30B5\n0xA5B6\t0x30B6\n0xA5B7\t0x30B7\n0xA5B8\t0x30B8\n0xA5B9\t0x30B9\n0xA5BA\t0x30BA\n0xA5BB\t0x30BB\n0xA5BC\t0x30BC\n0xA5BD\t0x30BD\n0xA5BE\t0x30BE\n0xA5BF\t0x30BF\n0xA5C0\t0x30C0\n0xA5C1\t0x30C1\n0xA5C2\t0x30C2\n0xA5C3\t0x30C3\n0xA5C4\t0x30C4\n0xA5C5\t0x30C5\n0xA5C6\t0x30C6\n0xA5C7\t0x30C7\n0xA5C8\t0x30C8\n0xA5C9\t0x30C9\n0xA5CA\t0x30CA\n0xA5CB\t0x30CB\n0xA5CC\t0x30CC\n0xA5CD\t0x30CD\n0xA5CE\t0x30CE\n0xA5CF\t0x30CF\n0xA5D0\t0x30D0\n0xA5D1\t0x30D1\n0xA5D2\t0x30D2\n0xA5D3\t0x30D3\n0xA5D4\t0x30D4\n0xA5D5\t0x30D5\n0xA5D6\t0x30D6\n0xA5D7\t0x30D7\n0xA5D8\t0x30D8\n0xA5D9\t0x30D9\n0xA5DA\t0x30DA\n0xA5DB\t0x30DB\n0xA5DC\t0x30DC\n0xA5DD\t0x30DD\n0xA5DE\t0x30DE\n0xA5DF\t0x30DF\n0xA5E0\t0x30E0\n0xA5E1\t0x30E1\n0xA5E2\t0x30E2\n0xA5E3\t0x30E3\n0xA5E4\t0x30E4\n0xA5E5\t0x30E5\n0xA5E6\t0x30E6\n0xA5E7\t0x30E7\n0xA5E8\t0x30E8\n0xA5E9\t0x30E9\n0xA5EA\t0x30EA\n0xA5EB\t0x30EB\n0xA5EC\t0x30EC\n0xA5ED\t0x30ED\n0xA5EE\t0x30EE\n0xA5EF\t0x30EF\n0xA5F0\t0x30F0\n0xA5F1\t0x30F1\n0xA5F2\t0x30F2\n0xA5F3\t0x30F3\n0xA5F4\t0x30F4\n0xA5F5\t0x30F5\n0xA5F6\t0x30F6\n0xA6A1\t0x0391\n0xA6A2\t0x0392\n0xA6A3\t0x0393\n0xA6A4\t0x0394\n0xA6A5\t0x0395\n0xA6A6\t0x0396\n0xA6A7\t0x0397\n0xA6A8\t0x0398\n0xA6A9\t0x0399\n0xA6AA\t0x039A\n0xA6AB\t0x039B\n0xA6AC\t0x039C\n0xA6AD\t0x039D\n0xA6AE\t0x039E\n0xA6AF\t0x039F\n0xA6B0\t0x03A0\n0xA6B1\t0x03A1\n0xA6B2\t0x03A3\n0xA6B3\t0x03A4\n0xA6B4\t0x03A5\n0xA6B5\t0x03A6\n0xA6B6\t0x03A7\n0xA6B7\t0x03A8\n0xA6B8\t0x03A9\n0xA6C1\t0x03B1\n0xA6C2\t0x03B2\n0xA6C3\t0x03B3\n0xA6C4\t0x03B4\n0xA6C5\t0x03B5\n0xA6C6\t0x03B6\n0xA6C7\t0x03B7\n0xA6C8\t0x03B8\n0xA6C9\t0x03B9\n0xA6CA\t0x03BA\n0xA6CB\t0x03BB\n0xA6CC\t0x03BC\n0xA6CD\t0x03BD\n0xA6CE\t0x03BE\n0xA6CF\t0x03BF\n0xA6D0\t0x03C0\n0xA6D1\t0x03C1\n0xA6D2\t0x03C3\n0xA6D3\t0x03C4\n0xA6D4\t0x03C5\n0xA6D5\t0x03C6\n0xA6D6\t0x03C7\n0xA6D7\t0x03C8\n0xA6D8\t0x03C9\n0xA7A1\t0x0410\n0xA7A2\t0x0411\n0xA7A3\t0x0412\n0xA7A4\t0x0413\n0xA7A5\t0x0414\n0xA7A6\t0x0415\n0xA7A7\t0x0401\n0xA7A8\t0x0416\n0xA7A9\t0x0417\n0xA7AA\t0x0418\n0xA7AB\t0x0419\n0xA7AC\t0x041A\n0xA7AD\t0x041B\n0xA7AE\t0x041C\n0xA7AF\t0x041D\n0xA7B0\t0x041E\n0xA7B1\t0x041F\n0xA7B2\t0x0420\n0xA7B3\t0x0421\n0xA7B4\t0x0422\n0xA7B5\t0x0423\n0xA7B6\t0x0424\n0xA7B7\t0x0425\n0xA7B8\t0x0426\n0xA7B9\t0x0427\n0xA7BA\t0x0428\n0xA7BB\t0x0429\n0xA7BC\t0x042A\n0xA7BD\t0x042B\n0xA7BE\t0x042C\n0xA7BF\t0x042D\n0xA7C0\t0x042E\n0xA7C1\t0x042F\n0xA7D1\t0x0430\n0xA7D2\t0x0431\n0xA7D3\t0x0432\n0xA7D4\t0x0433\n0xA7D5\t0x0434\n0xA7D6\t0x0435\n0xA7D7\t0x0451\n0xA7D8\t0x0436\n0xA7D9\t0x0437\n0xA7DA\t0x0438\n0xA7DB\t0x0439\n0xA7DC\t0x043A\n0xA7DD\t0x043B\n0xA7DE\t0x043C\n0xA7DF\t0x043D\n0xA7E0\t0x043E\n0xA7E1\t0x043F\n0xA7E2\t0x0440\n0xA7E3\t0x0441\n0xA7E4\t0x0442\n0xA7E5\t0x0443\n0xA7E6\t0x0444\n0xA7E7\t0x0445\n0xA7E8\t0x0446\n0xA7E9\t0x0447\n0xA7EA\t0x0448\n0xA7EB\t0x0449\n0xA7EC\t0x044A\n0xA7ED\t0x044B\n0xA7EE\t0x044C\n0xA7EF\t0x044D\n0xA7F0\t0x044E\n0xA7F1\t0x044F\n0xA8A1\t0x2500\n0xA8A2\t0x2502\n0xA8A3\t0x250C\n0xA8A4\t0x2510\n0xA8A5\t0x2518\n0xA8A6\t0x2514\n0xA8A7\t0x251C\n0xA8A8\t0x252C\n0xA8A9\t0x2524\n0xA8AA\t0x2534\n0xA8AB\t0x253C\n0xA8AC\t0x2501\n0xA8AD\t0x2503\n0xA8AE\t0x250F\n0xA8AF\t0x2513\n0xA8B0\t0x251B\n0xA8B1\t0x2517\n0xA8B2\t0x2523\n0xA8B3\t0x2533\n0xA8B4\t0x252B\n0xA8B5\t0x253B\n0xA8B6\t0x254B\n0xA8B7\t0x2520\n0xA8B8\t0x252F\n0xA8B9\t0x2528\n0xA8BA\t0x2537\n0xA8BB\t0x253F\n0xA8BC\t0x251D\n0xA8BD\t0x2530\n0xA8BE\t0x2525\n0xA8BF\t0x2538\n0xA8C0\t0x2542\n0xB0A1\t0x4E9C\n0xB0A2\t0x5516\n0xB0A3\t0x5A03\n0xB0A4\t0x963F\n0xB0A5\t0x54C0\n0xB0A6\t0x611B\n0xB0A7\t0x6328\n0xB0A8\t0x59F6\n0xB0A9\t0x9022\n0xB0AA\t0x8475\n0xB0AB\t0x831C\n0xB0AC\t0x7A50\n0xB0AD\t0x60AA\n0xB0AE\t0x63E1\n0xB0AF\t0x6E25\n0xB0B0\t0x65ED\n0xB0B1\t0x8466\n0xB0B2\t0x82A6\n0xB0B3\t0x9BF5\n0xB0B4\t0x6893\n0xB0B5\t0x5727\n0xB0B6\t0x65A1\n0xB0B7\t0x6271\n0xB0B8\t0x5B9B\n0xB0B9\t0x59D0\n0xB0BA\t0x867B\n0xB0BB\t0x98F4\n0xB0BC\t0x7D62\n0xB0BD\t0x7DBE\n0xB0BE\t0x9B8E\n0xB0BF\t0x6216\n0xB0C0\t0x7C9F\n0xB0C1\t0x88B7\n0xB0C2\t0x5B89\n0xB0C3\t0x5EB5\n0xB0C4\t0x6309\n0xB0C5\t0x6697\n0xB0C6\t0x6848\n0xB0C7\t0x95C7\n0xB0C8\t0x978D\n0xB0C9\t0x674F\n0xB0CA\t0x4EE5\n0xB0CB\t0x4F0A\n0xB0CC\t0x4F4D\n0xB0CD\t0x4F9D\n0xB0CE\t0x5049\n0xB0CF\t0x56F2\n0xB0D0\t0x5937\n0xB0D1\t0x59D4\n0xB0D2\t0x5A01\n0xB0D3\t0x5C09\n0xB0D4\t0x60DF\n0xB0D5\t0x610F\n0xB0D6\t0x6170\n0xB0D7\t0x6613\n0xB0D8\t0x6905\n0xB0D9\t0x70BA\n0xB0DA\t0x754F\n0xB0DB\t0x7570\n0xB0DC\t0x79FB\n0xB0DD\t0x7DAD\n0xB0DE\t0x7DEF\n0xB0DF\t0x80C3\n0xB0E0\t0x840E\n0xB0E1\t0x8863\n0xB0E2\t0x8B02\n0xB0E3\t0x9055\n0xB0E4\t0x907A\n0xB0E5\t0x533B\n0xB0E6\t0x4E95\n0xB0E7\t0x4EA5\n0xB0E8\t0x57DF\n0xB0E9\t0x80B2\n0xB0EA\t0x90C1\n0xB0EB\t0x78EF\n0xB0EC\t0x4E00\n0xB0ED\t0x58F1\n0xB0EE\t0x6EA2\n0xB0EF\t0x9038\n0xB0F0\t0x7A32\n0xB0F1\t0x8328\n0xB0F2\t0x828B\n0xB0F3\t0x9C2F\n0xB0F4\t0x5141\n0xB0F5\t0x5370\n0xB0F6\t0x54BD\n0xB0F7\t0x54E1\n0xB0F8\t0x56E0\n0xB0F9\t0x59FB\n0xB0FA\t0x5F15\n0xB0FB\t0x98F2\n0xB0FC\t0x6DEB\n0xB0FD\t0x80E4\n0xB0FE\t0x852D\n0xB1A1\t0x9662\n0xB1A2\t0x9670\n0xB1A3\t0x96A0\n0xB1A4\t0x97FB\n0xB1A5\t0x540B\n0xB1A6\t0x53F3\n0xB1A7\t0x5B87\n0xB1A8\t0x70CF\n0xB1A9\t0x7FBD\n0xB1AA\t0x8FC2\n0xB1AB\t0x96E8\n0xB1AC\t0x536F\n0xB1AD\t0x9D5C\n0xB1AE\t0x7ABA\n0xB1AF\t0x4E11\n0xB1B0\t0x7893\n0xB1B1\t0x81FC\n0xB1B2\t0x6E26\n0xB1B3\t0x5618\n0xB1B4\t0x5504\n0xB1B5\t0x6B1D\n0xB1B6\t0x851A\n0xB1B7\t0x9C3B\n0xB1B8\t0x59E5\n0xB1B9\t0x53A9\n0xB1BA\t0x6D66\n0xB1BB\t0x74DC\n0xB1BC\t0x958F\n0xB1BD\t0x5642\n0xB1BE\t0x4E91\n0xB1BF\t0x904B\n0xB1C0\t0x96F2\n0xB1C1\t0x834F\n0xB1C2\t0x990C\n0xB1C3\t0x53E1\n0xB1C4\t0x55B6\n0xB1C5\t0x5B30\n0xB1C6\t0x5F71\n0xB1C7\t0x6620\n0xB1C8\t0x66F3\n0xB1C9\t0x6804\n0xB1CA\t0x6C38\n0xB1CB\t0x6CF3\n0xB1CC\t0x6D29\n0xB1CD\t0x745B\n0xB1CE\t0x76C8\n0xB1CF\t0x7A4E\n0xB1D0\t0x9834\n0xB1D1\t0x82F1\n0xB1D2\t0x885B\n0xB1D3\t0x8A60\n0xB1D4\t0x92ED\n0xB1D5\t0x6DB2\n0xB1D6\t0x75AB\n0xB1D7\t0x76CA\n0xB1D8\t0x99C5\n0xB1D9\t0x60A6\n0xB1DA\t0x8B01\n0xB1DB\t0x8D8A\n0xB1DC\t0x95B2\n0xB1DD\t0x698E\n0xB1DE\t0x53AD\n0xB1DF\t0x5186\n0xB1E0\t0x5712\n0xB1E1\t0x5830\n0xB1E2\t0x5944\n0xB1E3\t0x5BB4\n0xB1E4\t0x5EF6\n0xB1E5\t0x6028\n0xB1E6\t0x63A9\n0xB1E7\t0x63F4\n0xB1E8\t0x6CBF\n0xB1E9\t0x6F14\n0xB1EA\t0x708E\n0xB1EB\t0x7114\n0xB1EC\t0x7159\n0xB1ED\t0x71D5\n0xB1EE\t0x733F\n0xB1EF\t0x7E01\n0xB1F0\t0x8276\n0xB1F1\t0x82D1\n0xB1F2\t0x8597\n0xB1F3\t0x9060\n0xB1F4\t0x925B\n0xB1F5\t0x9D1B\n0xB1F6\t0x5869\n0xB1F7\t0x65BC\n0xB1F8\t0x6C5A\n0xB1F9\t0x7525\n0xB1FA\t0x51F9\n0xB1FB\t0x592E\n0xB1FC\t0x5965\n0xB1FD\t0x5F80\n0xB1FE\t0x5FDC\n0xB2A1\t0x62BC\n0xB2A2\t0x65FA\n0xB2A3\t0x6A2A\n0xB2A4\t0x6B27\n0xB2A5\t0x6BB4\n0xB2A6\t0x738B\n0xB2A7\t0x7FC1\n0xB2A8\t0x8956\n0xB2A9\t0x9D2C\n0xB2AA\t0x9D0E\n0xB2AB\t0x9EC4\n0xB2AC\t0x5CA1\n0xB2AD\t0x6C96\n0xB2AE\t0x837B\n0xB2AF\t0x5104\n0xB2B0\t0x5C4B\n0xB2B1\t0x61B6\n0xB2B2\t0x81C6\n0xB2B3\t0x6876\n0xB2B4\t0x7261\n0xB2B5\t0x4E59\n0xB2B6\t0x4FFA\n0xB2B7\t0x5378\n0xB2B8\t0x6069\n0xB2B9\t0x6E29\n0xB2BA\t0x7A4F\n0xB2BB\t0x97F3\n0xB2BC\t0x4E0B\n0xB2BD\t0x5316\n0xB2BE\t0x4EEE\n0xB2BF\t0x4F55\n0xB2C0\t0x4F3D\n0xB2C1\t0x4FA1\n0xB2C2\t0x4F73\n0xB2C3\t0x52A0\n0xB2C4\t0x53EF\n0xB2C5\t0x5609\n0xB2C6\t0x590F\n0xB2C7\t0x5AC1\n0xB2C8\t0x5BB6\n0xB2C9\t0x5BE1\n0xB2CA\t0x79D1\n0xB2CB\t0x6687\n0xB2CC\t0x679C\n0xB2CD\t0x67B6\n0xB2CE\t0x6B4C\n0xB2CF\t0x6CB3\n0xB2D0\t0x706B\n0xB2D1\t0x73C2\n0xB2D2\t0x798D\n0xB2D3\t0x79BE\n0xB2D4\t0x7A3C\n0xB2D5\t0x7B87\n0xB2D6\t0x82B1\n0xB2D7\t0x82DB\n0xB2D8\t0x8304\n0xB2D9\t0x8377\n0xB2DA\t0x83EF\n0xB2DB\t0x83D3\n0xB2DC\t0x8766\n0xB2DD\t0x8AB2\n0xB2DE\t0x5629\n0xB2DF\t0x8CA8\n0xB2E0\t0x8FE6\n0xB2E1\t0x904E\n0xB2E2\t0x971E\n0xB2E3\t0x868A\n0xB2E4\t0x4FC4\n0xB2E5\t0x5CE8\n0xB2E6\t0x6211\n0xB2E7\t0x7259\n0xB2E8\t0x753B\n0xB2E9\t0x81E5\n0xB2EA\t0x82BD\n0xB2EB\t0x86FE\n0xB2EC\t0x8CC0\n0xB2ED\t0x96C5\n0xB2EE\t0x9913\n0xB2EF\t0x99D5\n0xB2F0\t0x4ECB\n0xB2F1\t0x4F1A\n0xB2F2\t0x89E3\n0xB2F3\t0x56DE\n0xB2F4\t0x584A\n0xB2F5\t0x58CA\n0xB2F6\t0x5EFB\n0xB2F7\t0x5FEB\n0xB2F8\t0x602A\n0xB2F9\t0x6094\n0xB2FA\t0x6062\n0xB2FB\t0x61D0\n0xB2FC\t0x6212\n0xB2FD\t0x62D0\n0xB2FE\t0x6539\n0xB3A1\t0x9B41\n0xB3A2\t0x6666\n0xB3A3\t0x68B0\n0xB3A4\t0x6D77\n0xB3A5\t0x7070\n0xB3A6\t0x754C\n0xB3A7\t0x7686\n0xB3A8\t0x7D75\n0xB3A9\t0x82A5\n0xB3AA\t0x87F9\n0xB3AB\t0x958B\n0xB3AC\t0x968E\n0xB3AD\t0x8C9D\n0xB3AE\t0x51F1\n0xB3AF\t0x52BE\n0xB3B0\t0x5916\n0xB3B1\t0x54B3\n0xB3B2\t0x5BB3\n0xB3B3\t0x5D16\n0xB3B4\t0x6168\n0xB3B5\t0x6982\n0xB3B6\t0x6DAF\n0xB3B7\t0x788D\n0xB3B8\t0x84CB\n0xB3B9\t0x8857\n0xB3BA\t0x8A72\n0xB3BB\t0x93A7\n0xB3BC\t0x9AB8\n0xB3BD\t0x6D6C\n0xB3BE\t0x99A8\n0xB3BF\t0x86D9\n0xB3C0\t0x57A3\n0xB3C1\t0x67FF\n0xB3C2\t0x86CE\n0xB3C3\t0x920E\n0xB3C4\t0x5283\n0xB3C5\t0x5687\n0xB3C6\t0x5404\n0xB3C7\t0x5ED3\n0xB3C8\t0x62E1\n0xB3C9\t0x64B9\n0xB3CA\t0x683C\n0xB3CB\t0x6838\n0xB3CC\t0x6BBB\n0xB3CD\t0x7372\n0xB3CE\t0x78BA\n0xB3CF\t0x7A6B\n0xB3D0\t0x899A\n0xB3D1\t0x89D2\n0xB3D2\t0x8D6B\n0xB3D3\t0x8F03\n0xB3D4\t0x90ED\n0xB3D5\t0x95A3\n0xB3D6\t0x9694\n0xB3D7\t0x9769\n0xB3D8\t0x5B66\n0xB3D9\t0x5CB3\n0xB3DA\t0x697D\n0xB3DB\t0x984D\n0xB3DC\t0x984E\n0xB3DD\t0x639B\n0xB3DE\t0x7B20\n0xB3DF\t0x6A2B\n0xB3E0\t0x6A7F\n0xB3E1\t0x68B6\n0xB3E2\t0x9C0D\n0xB3E3\t0x6F5F\n0xB3E4\t0x5272\n0xB3E5\t0x559D\n0xB3E6\t0x6070\n0xB3E7\t0x62EC\n0xB3E8\t0x6D3B\n0xB3E9\t0x6E07\n0xB3EA\t0x6ED1\n0xB3EB\t0x845B\n0xB3EC\t0x8910\n0xB3ED\t0x8F44\n0xB3EE\t0x4E14\n0xB3EF\t0x9C39\n0xB3F0\t0x53F6\n0xB3F1\t0x691B\n0xB3F2\t0x6A3A\n0xB3F3\t0x9784\n0xB3F4\t0x682A\n0xB3F5\t0x515C\n0xB3F6\t0x7AC3\n0xB3F7\t0x84B2\n0xB3F8\t0x91DC\n0xB3F9\t0x938C\n0xB3FA\t0x565B\n0xB3FB\t0x9D28\n0xB3FC\t0x6822\n0xB3FD\t0x8305\n0xB3FE\t0x8431\n0xB4A1\t0x7CA5\n0xB4A2\t0x5208\n0xB4A3\t0x82C5\n0xB4A4\t0x74E6\n0xB4A5\t0x4E7E\n0xB4A6\t0x4F83\n0xB4A7\t0x51A0\n0xB4A8\t0x5BD2\n0xB4A9\t0x520A\n0xB4AA\t0x52D8\n0xB4AB\t0x52E7\n0xB4AC\t0x5DFB\n0xB4AD\t0x559A\n0xB4AE\t0x582A\n0xB4AF\t0x59E6\n0xB4B0\t0x5B8C\n0xB4B1\t0x5B98\n0xB4B2\t0x5BDB\n0xB4B3\t0x5E72\n0xB4B4\t0x5E79\n0xB4B5\t0x60A3\n0xB4B6\t0x611F\n0xB4B7\t0x6163\n0xB4B8\t0x61BE\n0xB4B9\t0x63DB\n0xB4BA\t0x6562\n0xB4BB\t0x67D1\n0xB4BC\t0x6853\n0xB4BD\t0x68FA\n0xB4BE\t0x6B3E\n0xB4BF\t0x6B53\n0xB4C0\t0x6C57\n0xB4C1\t0x6F22\n0xB4C2\t0x6F97\n0xB4C3\t0x6F45\n0xB4C4\t0x74B0\n0xB4C5\t0x7518\n0xB4C6\t0x76E3\n0xB4C7\t0x770B\n0xB4C8\t0x7AFF\n0xB4C9\t0x7BA1\n0xB4CA\t0x7C21\n0xB4CB\t0x7DE9\n0xB4CC\t0x7F36\n0xB4CD\t0x7FF0\n0xB4CE\t0x809D\n0xB4CF\t0x8266\n0xB4D0\t0x839E\n0xB4D1\t0x89B3\n0xB4D2\t0x8ACC\n0xB4D3\t0x8CAB\n0xB4D4\t0x9084\n0xB4D5\t0x9451\n0xB4D6\t0x9593\n0xB4D7\t0x9591\n0xB4D8\t0x95A2\n0xB4D9\t0x9665\n0xB4DA\t0x97D3\n0xB4DB\t0x9928\n0xB4DC\t0x8218\n0xB4DD\t0x4E38\n0xB4DE\t0x542B\n0xB4DF\t0x5CB8\n0xB4E0\t0x5DCC\n0xB4E1\t0x73A9\n0xB4E2\t0x764C\n0xB4E3\t0x773C\n0xB4E4\t0x5CA9\n0xB4E5\t0x7FEB\n0xB4E6\t0x8D0B\n0xB4E7\t0x96C1\n0xB4E8\t0x9811\n0xB4E9\t0x9854\n0xB4EA\t0x9858\n0xB4EB\t0x4F01\n0xB4EC\t0x4F0E\n0xB4ED\t0x5371\n0xB4EE\t0x559C\n0xB4EF\t0x5668\n0xB4F0\t0x57FA\n0xB4F1\t0x5947\n0xB4F2\t0x5B09\n0xB4F3\t0x5BC4\n0xB4F4\t0x5C90\n0xB4F5\t0x5E0C\n0xB4F6\t0x5E7E\n0xB4F7\t0x5FCC\n0xB4F8\t0x63EE\n0xB4F9\t0x673A\n0xB4FA\t0x65D7\n0xB4FB\t0x65E2\n0xB4FC\t0x671F\n0xB4FD\t0x68CB\n0xB4FE\t0x68C4\n0xB5A1\t0x6A5F\n0xB5A2\t0x5E30\n0xB5A3\t0x6BC5\n0xB5A4\t0x6C17\n0xB5A5\t0x6C7D\n0xB5A6\t0x757F\n0xB5A7\t0x7948\n0xB5A8\t0x5B63\n0xB5A9\t0x7A00\n0xB5AA\t0x7D00\n0xB5AB\t0x5FBD\n0xB5AC\t0x898F\n0xB5AD\t0x8A18\n0xB5AE\t0x8CB4\n0xB5AF\t0x8D77\n0xB5B0\t0x8ECC\n0xB5B1\t0x8F1D\n0xB5B2\t0x98E2\n0xB5B3\t0x9A0E\n0xB5B4\t0x9B3C\n0xB5B5\t0x4E80\n0xB5B6\t0x507D\n0xB5B7\t0x5100\n0xB5B8\t0x5993\n0xB5B9\t0x5B9C\n0xB5BA\t0x622F\n0xB5BB\t0x6280\n0xB5BC\t0x64EC\n0xB5BD\t0x6B3A\n0xB5BE\t0x72A0\n0xB5BF\t0x7591\n0xB5C0\t0x7947\n0xB5C1\t0x7FA9\n0xB5C2\t0x87FB\n0xB5C3\t0x8ABC\n0xB5C4\t0x8B70\n0xB5C5\t0x63AC\n0xB5C6\t0x83CA\n0xB5C7\t0x97A0\n0xB5C8\t0x5409\n0xB5C9\t0x5403\n0xB5CA\t0x55AB\n0xB5CB\t0x6854\n0xB5CC\t0x6A58\n0xB5CD\t0x8A70\n0xB5CE\t0x7827\n0xB5CF\t0x6775\n0xB5D0\t0x9ECD\n0xB5D1\t0x5374\n0xB5D2\t0x5BA2\n0xB5D3\t0x811A\n0xB5D4\t0x8650\n0xB5D5\t0x9006\n0xB5D6\t0x4E18\n0xB5D7\t0x4E45\n0xB5D8\t0x4EC7\n0xB5D9\t0x4F11\n0xB5DA\t0x53CA\n0xB5DB\t0x5438\n0xB5DC\t0x5BAE\n0xB5DD\t0x5F13\n0xB5DE\t0x6025\n0xB5DF\t0x6551\n0xB5E0\t0x673D\n0xB5E1\t0x6C42\n0xB5E2\t0x6C72\n0xB5E3\t0x6CE3\n0xB5E4\t0x7078\n0xB5E5\t0x7403\n0xB5E6\t0x7A76\n0xB5E7\t0x7AAE\n0xB5E8\t0x7B08\n0xB5E9\t0x7D1A\n0xB5EA\t0x7CFE\n0xB5EB\t0x7D66\n0xB5EC\t0x65E7\n0xB5ED\t0x725B\n0xB5EE\t0x53BB\n0xB5EF\t0x5C45\n0xB5F0\t0x5DE8\n0xB5F1\t0x62D2\n0xB5F2\t0x62E0\n0xB5F3\t0x6319\n0xB5F4\t0x6E20\n0xB5F5\t0x865A\n0xB5F6\t0x8A31\n0xB5F7\t0x8DDD\n0xB5F8\t0x92F8\n0xB5F9\t0x6F01\n0xB5FA\t0x79A6\n0xB5FB\t0x9B5A\n0xB5FC\t0x4EA8\n0xB5FD\t0x4EAB\n0xB5FE\t0x4EAC\n0xB6A1\t0x4F9B\n0xB6A2\t0x4FA0\n0xB6A3\t0x50D1\n0xB6A4\t0x5147\n0xB6A5\t0x7AF6\n0xB6A6\t0x5171\n0xB6A7\t0x51F6\n0xB6A8\t0x5354\n0xB6A9\t0x5321\n0xB6AA\t0x537F\n0xB6AB\t0x53EB\n0xB6AC\t0x55AC\n0xB6AD\t0x5883\n0xB6AE\t0x5CE1\n0xB6AF\t0x5F37\n0xB6B0\t0x5F4A\n0xB6B1\t0x602F\n0xB6B2\t0x6050\n0xB6B3\t0x606D\n0xB6B4\t0x631F\n0xB6B5\t0x6559\n0xB6B6\t0x6A4B\n0xB6B7\t0x6CC1\n0xB6B8\t0x72C2\n0xB6B9\t0x72ED\n0xB6BA\t0x77EF\n0xB6BB\t0x80F8\n0xB6BC\t0x8105\n0xB6BD\t0x8208\n0xB6BE\t0x854E\n0xB6BF\t0x90F7\n0xB6C0\t0x93E1\n0xB6C1\t0x97FF\n0xB6C2\t0x9957\n0xB6C3\t0x9A5A\n0xB6C4\t0x4EF0\n0xB6C5\t0x51DD\n0xB6C6\t0x5C2D\n0xB6C7\t0x6681\n0xB6C8\t0x696D\n0xB6C9\t0x5C40\n0xB6CA\t0x66F2\n0xB6CB\t0x6975\n0xB6CC\t0x7389\n0xB6CD\t0x6850\n0xB6CE\t0x7C81\n0xB6CF\t0x50C5\n0xB6D0\t0x52E4\n0xB6D1\t0x5747\n0xB6D2\t0x5DFE\n0xB6D3\t0x9326\n0xB6D4\t0x65A4\n0xB6D5\t0x6B23\n0xB6D6\t0x6B3D\n0xB6D7\t0x7434\n0xB6D8\t0x7981\n0xB6D9\t0x79BD\n0xB6DA\t0x7B4B\n0xB6DB\t0x7DCA\n0xB6DC\t0x82B9\n0xB6DD\t0x83CC\n0xB6DE\t0x887F\n0xB6DF\t0x895F\n0xB6E0\t0x8B39\n0xB6E1\t0x8FD1\n0xB6E2\t0x91D1\n0xB6E3\t0x541F\n0xB6E4\t0x9280\n0xB6E5\t0x4E5D\n0xB6E6\t0x5036\n0xB6E7\t0x53E5\n0xB6E8\t0x533A\n0xB6E9\t0x72D7\n0xB6EA\t0x7396\n0xB6EB\t0x77E9\n0xB6EC\t0x82E6\n0xB6ED\t0x8EAF\n0xB6EE\t0x99C6\n0xB6EF\t0x99C8\n0xB6F0\t0x99D2\n0xB6F1\t0x5177\n0xB6F2\t0x611A\n0xB6F3\t0x865E\n0xB6F4\t0x55B0\n0xB6F5\t0x7A7A\n0xB6F6\t0x5076\n0xB6F7\t0x5BD3\n0xB6F8\t0x9047\n0xB6F9\t0x9685\n0xB6FA\t0x4E32\n0xB6FB\t0x6ADB\n0xB6FC\t0x91E7\n0xB6FD\t0x5C51\n0xB6FE\t0x5C48\n0xB7A1\t0x6398\n0xB7A2\t0x7A9F\n0xB7A3\t0x6C93\n0xB7A4\t0x9774\n0xB7A5\t0x8F61\n0xB7A6\t0x7AAA\n0xB7A7\t0x718A\n0xB7A8\t0x9688\n0xB7A9\t0x7C82\n0xB7AA\t0x6817\n0xB7AB\t0x7E70\n0xB7AC\t0x6851\n0xB7AD\t0x936C\n0xB7AE\t0x52F2\n0xB7AF\t0x541B\n0xB7B0\t0x85AB\n0xB7B1\t0x8A13\n0xB7B2\t0x7FA4\n0xB7B3\t0x8ECD\n0xB7B4\t0x90E1\n0xB7B5\t0x5366\n0xB7B6\t0x8888\n0xB7B7\t0x7941\n0xB7B8\t0x4FC2\n0xB7B9\t0x50BE\n0xB7BA\t0x5211\n0xB7BB\t0x5144\n0xB7BC\t0x5553\n0xB7BD\t0x572D\n0xB7BE\t0x73EA\n0xB7BF\t0x578B\n0xB7C0\t0x5951\n0xB7C1\t0x5F62\n0xB7C2\t0x5F84\n0xB7C3\t0x6075\n0xB7C4\t0x6176\n0xB7C5\t0x6167\n0xB7C6\t0x61A9\n0xB7C7\t0x63B2\n0xB7C8\t0x643A\n0xB7C9\t0x656C\n0xB7CA\t0x666F\n0xB7CB\t0x6842\n0xB7CC\t0x6E13\n0xB7CD\t0x7566\n0xB7CE\t0x7A3D\n0xB7CF\t0x7CFB\n0xB7D0\t0x7D4C\n0xB7D1\t0x7D99\n0xB7D2\t0x7E4B\n0xB7D3\t0x7F6B\n0xB7D4\t0x830E\n0xB7D5\t0x834A\n0xB7D6\t0x86CD\n0xB7D7\t0x8A08\n0xB7D8\t0x8A63\n0xB7D9\t0x8B66\n0xB7DA\t0x8EFD\n0xB7DB\t0x981A\n0xB7DC\t0x9D8F\n0xB7DD\t0x82B8\n0xB7DE\t0x8FCE\n0xB7DF\t0x9BE8\n0xB7E0\t0x5287\n0xB7E1\t0x621F\n0xB7E2\t0x6483\n0xB7E3\t0x6FC0\n0xB7E4\t0x9699\n0xB7E5\t0x6841\n0xB7E6\t0x5091\n0xB7E7\t0x6B20\n0xB7E8\t0x6C7A\n0xB7E9\t0x6F54\n0xB7EA\t0x7A74\n0xB7EB\t0x7D50\n0xB7EC\t0x8840\n0xB7ED\t0x8A23\n0xB7EE\t0x6708\n0xB7EF\t0x4EF6\n0xB7F0\t0x5039\n0xB7F1\t0x5026\n0xB7F2\t0x5065\n0xB7F3\t0x517C\n0xB7F4\t0x5238\n0xB7F5\t0x5263\n0xB7F6\t0x55A7\n0xB7F7\t0x570F\n0xB7F8\t0x5805\n0xB7F9\t0x5ACC\n0xB7FA\t0x5EFA\n0xB7FB\t0x61B2\n0xB7FC\t0x61F8\n0xB7FD\t0x62F3\n0xB7FE\t0x6372\n0xB8A1\t0x691C\n0xB8A2\t0x6A29\n0xB8A3\t0x727D\n0xB8A4\t0x72AC\n0xB8A5\t0x732E\n0xB8A6\t0x7814\n0xB8A7\t0x786F\n0xB8A8\t0x7D79\n0xB8A9\t0x770C\n0xB8AA\t0x80A9\n0xB8AB\t0x898B\n0xB8AC\t0x8B19\n0xB8AD\t0x8CE2\n0xB8AE\t0x8ED2\n0xB8AF\t0x9063\n0xB8B0\t0x9375\n0xB8B1\t0x967A\n0xB8B2\t0x9855\n0xB8B3\t0x9A13\n0xB8B4\t0x9E78\n0xB8B5\t0x5143\n0xB8B6\t0x539F\n0xB8B7\t0x53B3\n0xB8B8\t0x5E7B\n0xB8B9\t0x5F26\n0xB8BA\t0x6E1B\n0xB8BB\t0x6E90\n0xB8BC\t0x7384\n0xB8BD\t0x73FE\n0xB8BE\t0x7D43\n0xB8BF\t0x8237\n0xB8C0\t0x8A00\n0xB8C1\t0x8AFA\n0xB8C2\t0x9650\n0xB8C3\t0x4E4E\n0xB8C4\t0x500B\n0xB8C5\t0x53E4\n0xB8C6\t0x547C\n0xB8C7\t0x56FA\n0xB8C8\t0x59D1\n0xB8C9\t0x5B64\n0xB8CA\t0x5DF1\n0xB8CB\t0x5EAB\n0xB8CC\t0x5F27\n0xB8CD\t0x6238\n0xB8CE\t0x6545\n0xB8CF\t0x67AF\n0xB8D0\t0x6E56\n0xB8D1\t0x72D0\n0xB8D2\t0x7CCA\n0xB8D3\t0x88B4\n0xB8D4\t0x80A1\n0xB8D5\t0x80E1\n0xB8D6\t0x83F0\n0xB8D7\t0x864E\n0xB8D8\t0x8A87\n0xB8D9\t0x8DE8\n0xB8DA\t0x9237\n0xB8DB\t0x96C7\n0xB8DC\t0x9867\n0xB8DD\t0x9F13\n0xB8DE\t0x4E94\n0xB8DF\t0x4E92\n0xB8E0\t0x4F0D\n0xB8E1\t0x5348\n0xB8E2\t0x5449\n0xB8E3\t0x543E\n0xB8E4\t0x5A2F\n0xB8E5\t0x5F8C\n0xB8E6\t0x5FA1\n0xB8E7\t0x609F\n0xB8E8\t0x68A7\n0xB8E9\t0x6A8E\n0xB8EA\t0x745A\n0xB8EB\t0x7881\n0xB8EC\t0x8A9E\n0xB8ED\t0x8AA4\n0xB8EE\t0x8B77\n0xB8EF\t0x9190\n0xB8F0\t0x4E5E\n0xB8F1\t0x9BC9\n0xB8F2\t0x4EA4\n0xB8F3\t0x4F7C\n0xB8F4\t0x4FAF\n0xB8F5\t0x5019\n0xB8F6\t0x5016\n0xB8F7\t0x5149\n0xB8F8\t0x516C\n0xB8F9\t0x529F\n0xB8FA\t0x52B9\n0xB8FB\t0x52FE\n0xB8FC\t0x539A\n0xB8FD\t0x53E3\n0xB8FE\t0x5411\n0xB9A1\t0x540E\n0xB9A2\t0x5589\n0xB9A3\t0x5751\n0xB9A4\t0x57A2\n0xB9A5\t0x597D\n0xB9A6\t0x5B54\n0xB9A7\t0x5B5D\n0xB9A8\t0x5B8F\n0xB9A9\t0x5DE5\n0xB9AA\t0x5DE7\n0xB9AB\t0x5DF7\n0xB9AC\t0x5E78\n0xB9AD\t0x5E83\n0xB9AE\t0x5E9A\n0xB9AF\t0x5EB7\n0xB9B0\t0x5F18\n0xB9B1\t0x6052\n0xB9B2\t0x614C\n0xB9B3\t0x6297\n0xB9B4\t0x62D8\n0xB9B5\t0x63A7\n0xB9B6\t0x653B\n0xB9B7\t0x6602\n0xB9B8\t0x6643\n0xB9B9\t0x66F4\n0xB9BA\t0x676D\n0xB9BB\t0x6821\n0xB9BC\t0x6897\n0xB9BD\t0x69CB\n0xB9BE\t0x6C5F\n0xB9BF\t0x6D2A\n0xB9C0\t0x6D69\n0xB9C1\t0x6E2F\n0xB9C2\t0x6E9D\n0xB9C3\t0x7532\n0xB9C4\t0x7687\n0xB9C5\t0x786C\n0xB9C6\t0x7A3F\n0xB9C7\t0x7CE0\n0xB9C8\t0x7D05\n0xB9C9\t0x7D18\n0xB9CA\t0x7D5E\n0xB9CB\t0x7DB1\n0xB9CC\t0x8015\n0xB9CD\t0x8003\n0xB9CE\t0x80AF\n0xB9CF\t0x80B1\n0xB9D0\t0x8154\n0xB9D1\t0x818F\n0xB9D2\t0x822A\n0xB9D3\t0x8352\n0xB9D4\t0x884C\n0xB9D5\t0x8861\n0xB9D6\t0x8B1B\n0xB9D7\t0x8CA2\n0xB9D8\t0x8CFC\n0xB9D9\t0x90CA\n0xB9DA\t0x9175\n0xB9DB\t0x9271\n0xB9DC\t0x783F\n0xB9DD\t0x92FC\n0xB9DE\t0x95A4\n0xB9DF\t0x964D\n0xB9E0\t0x9805\n0xB9E1\t0x9999\n0xB9E2\t0x9AD8\n0xB9E3\t0x9D3B\n0xB9E4\t0x525B\n0xB9E5\t0x52AB\n0xB9E6\t0x53F7\n0xB9E7\t0x5408\n0xB9E8\t0x58D5\n0xB9E9\t0x62F7\n0xB9EA\t0x6FE0\n0xB9EB\t0x8C6A\n0xB9EC\t0x8F5F\n0xB9ED\t0x9EB9\n0xB9EE\t0x514B\n0xB9EF\t0x523B\n0xB9F0\t0x544A\n0xB9F1\t0x56FD\n0xB9F2\t0x7A40\n0xB9F3\t0x9177\n0xB9F4\t0x9D60\n0xB9F5\t0x9ED2\n0xB9F6\t0x7344\n0xB9F7\t0x6F09\n0xB9F8\t0x8170\n0xB9F9\t0x7511\n0xB9FA\t0x5FFD\n0xB9FB\t0x60DA\n0xB9FC\t0x9AA8\n0xB9FD\t0x72DB\n0xB9FE\t0x8FBC\n0xBAA1\t0x6B64\n0xBAA2\t0x9803\n0xBAA3\t0x4ECA\n0xBAA4\t0x56F0\n0xBAA5\t0x5764\n0xBAA6\t0x58BE\n0xBAA7\t0x5A5A\n0xBAA8\t0x6068\n0xBAA9\t0x61C7\n0xBAAA\t0x660F\n0xBAAB\t0x6606\n0xBAAC\t0x6839\n0xBAAD\t0x68B1\n0xBAAE\t0x6DF7\n0xBAAF\t0x75D5\n0xBAB0\t0x7D3A\n0xBAB1\t0x826E\n0xBAB2\t0x9B42\n0xBAB3\t0x4E9B\n0xBAB4\t0x4F50\n0xBAB5\t0x53C9\n0xBAB6\t0x5506\n0xBAB7\t0x5D6F\n0xBAB8\t0x5DE6\n0xBAB9\t0x5DEE\n0xBABA\t0x67FB\n0xBABB\t0x6C99\n0xBABC\t0x7473\n0xBABD\t0x7802\n0xBABE\t0x8A50\n0xBABF\t0x9396\n0xBAC0\t0x88DF\n0xBAC1\t0x5750\n0xBAC2\t0x5EA7\n0xBAC3\t0x632B\n0xBAC4\t0x50B5\n0xBAC5\t0x50AC\n0xBAC6\t0x518D\n0xBAC7\t0x6700\n0xBAC8\t0x54C9\n0xBAC9\t0x585E\n0xBACA\t0x59BB\n0xBACB\t0x5BB0\n0xBACC\t0x5F69\n0xBACD\t0x624D\n0xBACE\t0x63A1\n0xBACF\t0x683D\n0xBAD0\t0x6B73\n0xBAD1\t0x6E08\n0xBAD2\t0x707D\n0xBAD3\t0x91C7\n0xBAD4\t0x7280\n0xBAD5\t0x7815\n0xBAD6\t0x7826\n0xBAD7\t0x796D\n0xBAD8\t0x658E\n0xBAD9\t0x7D30\n0xBADA\t0x83DC\n0xBADB\t0x88C1\n0xBADC\t0x8F09\n0xBADD\t0x969B\n0xBADE\t0x5264\n0xBADF\t0x5728\n0xBAE0\t0x6750\n0xBAE1\t0x7F6A\n0xBAE2\t0x8CA1\n0xBAE3\t0x51B4\n0xBAE4\t0x5742\n0xBAE5\t0x962A\n0xBAE6\t0x583A\n0xBAE7\t0x698A\n0xBAE8\t0x80B4\n0xBAE9\t0x54B2\n0xBAEA\t0x5D0E\n0xBAEB\t0x57FC\n0xBAEC\t0x7895\n0xBAED\t0x9DFA\n0xBAEE\t0x4F5C\n0xBAEF\t0x524A\n0xBAF0\t0x548B\n0xBAF1\t0x643E\n0xBAF2\t0x6628\n0xBAF3\t0x6714\n0xBAF4\t0x67F5\n0xBAF5\t0x7A84\n0xBAF6\t0x7B56\n0xBAF7\t0x7D22\n0xBAF8\t0x932F\n0xBAF9\t0x685C\n0xBAFA\t0x9BAD\n0xBAFB\t0x7B39\n0xBAFC\t0x5319\n0xBAFD\t0x518A\n0xBAFE\t0x5237\n0xBBA1\t0x5BDF\n0xBBA2\t0x62F6\n0xBBA3\t0x64AE\n0xBBA4\t0x64E6\n0xBBA5\t0x672D\n0xBBA6\t0x6BBA\n0xBBA7\t0x85A9\n0xBBA8\t0x96D1\n0xBBA9\t0x7690\n0xBBAA\t0x9BD6\n0xBBAB\t0x634C\n0xBBAC\t0x9306\n0xBBAD\t0x9BAB\n0xBBAE\t0x76BF\n0xBBAF\t0x6652\n0xBBB0\t0x4E09\n0xBBB1\t0x5098\n0xBBB2\t0x53C2\n0xBBB3\t0x5C71\n0xBBB4\t0x60E8\n0xBBB5\t0x6492\n0xBBB6\t0x6563\n0xBBB7\t0x685F\n0xBBB8\t0x71E6\n0xBBB9\t0x73CA\n0xBBBA\t0x7523\n0xBBBB\t0x7B97\n0xBBBC\t0x7E82\n0xBBBD\t0x8695\n0xBBBE\t0x8B83\n0xBBBF\t0x8CDB\n0xBBC0\t0x9178\n0xBBC1\t0x9910\n0xBBC2\t0x65AC\n0xBBC3\t0x66AB\n0xBBC4\t0x6B8B\n0xBBC5\t0x4ED5\n0xBBC6\t0x4ED4\n0xBBC7\t0x4F3A\n0xBBC8\t0x4F7F\n0xBBC9\t0x523A\n0xBBCA\t0x53F8\n0xBBCB\t0x53F2\n0xBBCC\t0x55E3\n0xBBCD\t0x56DB\n0xBBCE\t0x58EB\n0xBBCF\t0x59CB\n0xBBD0\t0x59C9\n0xBBD1\t0x59FF\n0xBBD2\t0x5B50\n0xBBD3\t0x5C4D\n0xBBD4\t0x5E02\n0xBBD5\t0x5E2B\n0xBBD6\t0x5FD7\n0xBBD7\t0x601D\n0xBBD8\t0x6307\n0xBBD9\t0x652F\n0xBBDA\t0x5B5C\n0xBBDB\t0x65AF\n0xBBDC\t0x65BD\n0xBBDD\t0x65E8\n0xBBDE\t0x679D\n0xBBDF\t0x6B62\n0xBBE0\t0x6B7B\n0xBBE1\t0x6C0F\n0xBBE2\t0x7345\n0xBBE3\t0x7949\n0xBBE4\t0x79C1\n0xBBE5\t0x7CF8\n0xBBE6\t0x7D19\n0xBBE7\t0x7D2B\n0xBBE8\t0x80A2\n0xBBE9\t0x8102\n0xBBEA\t0x81F3\n0xBBEB\t0x8996\n0xBBEC\t0x8A5E\n0xBBED\t0x8A69\n0xBBEE\t0x8A66\n0xBBEF\t0x8A8C\n0xBBF0\t0x8AEE\n0xBBF1\t0x8CC7\n0xBBF2\t0x8CDC\n0xBBF3\t0x96CC\n0xBBF4\t0x98FC\n0xBBF5\t0x6B6F\n0xBBF6\t0x4E8B\n0xBBF7\t0x4F3C\n0xBBF8\t0x4F8D\n0xBBF9\t0x5150\n0xBBFA\t0x5B57\n0xBBFB\t0x5BFA\n0xBBFC\t0x6148\n0xBBFD\t0x6301\n0xBBFE\t0x6642\n0xBCA1\t0x6B21\n0xBCA2\t0x6ECB\n0xBCA3\t0x6CBB\n0xBCA4\t0x723E\n0xBCA5\t0x74BD\n0xBCA6\t0x75D4\n0xBCA7\t0x78C1\n0xBCA8\t0x793A\n0xBCA9\t0x800C\n0xBCAA\t0x8033\n0xBCAB\t0x81EA\n0xBCAC\t0x8494\n0xBCAD\t0x8F9E\n0xBCAE\t0x6C50\n0xBCAF\t0x9E7F\n0xBCB0\t0x5F0F\n0xBCB1\t0x8B58\n0xBCB2\t0x9D2B\n0xBCB3\t0x7AFA\n0xBCB4\t0x8EF8\n0xBCB5\t0x5B8D\n0xBCB6\t0x96EB\n0xBCB7\t0x4E03\n0xBCB8\t0x53F1\n0xBCB9\t0x57F7\n0xBCBA\t0x5931\n0xBCBB\t0x5AC9\n0xBCBC\t0x5BA4\n0xBCBD\t0x6089\n0xBCBE\t0x6E7F\n0xBCBF\t0x6F06\n0xBCC0\t0x75BE\n0xBCC1\t0x8CEA\n0xBCC2\t0x5B9F\n0xBCC3\t0x8500\n0xBCC4\t0x7BE0\n0xBCC5\t0x5072\n0xBCC6\t0x67F4\n0xBCC7\t0x829D\n0xBCC8\t0x5C61\n0xBCC9\t0x854A\n0xBCCA\t0x7E1E\n0xBCCB\t0x820E\n0xBCCC\t0x5199\n0xBCCD\t0x5C04\n0xBCCE\t0x6368\n0xBCCF\t0x8D66\n0xBCD0\t0x659C\n0xBCD1\t0x716E\n0xBCD2\t0x793E\n0xBCD3\t0x7D17\n0xBCD4\t0x8005\n0xBCD5\t0x8B1D\n0xBCD6\t0x8ECA\n0xBCD7\t0x906E\n0xBCD8\t0x86C7\n0xBCD9\t0x90AA\n0xBCDA\t0x501F\n0xBCDB\t0x52FA\n0xBCDC\t0x5C3A\n0xBCDD\t0x6753\n0xBCDE\t0x707C\n0xBCDF\t0x7235\n0xBCE0\t0x914C\n0xBCE1\t0x91C8\n0xBCE2\t0x932B\n0xBCE3\t0x82E5\n0xBCE4\t0x5BC2\n0xBCE5\t0x5F31\n0xBCE6\t0x60F9\n0xBCE7\t0x4E3B\n0xBCE8\t0x53D6\n0xBCE9\t0x5B88\n0xBCEA\t0x624B\n0xBCEB\t0x6731\n0xBCEC\t0x6B8A\n0xBCED\t0x72E9\n0xBCEE\t0x73E0\n0xBCEF\t0x7A2E\n0xBCF0\t0x816B\n0xBCF1\t0x8DA3\n0xBCF2\t0x9152\n0xBCF3\t0x9996\n0xBCF4\t0x5112\n0xBCF5\t0x53D7\n0xBCF6\t0x546A\n0xBCF7\t0x5BFF\n0xBCF8\t0x6388\n0xBCF9\t0x6A39\n0xBCFA\t0x7DAC\n0xBCFB\t0x9700\n0xBCFC\t0x56DA\n0xBCFD\t0x53CE\n0xBCFE\t0x5468\n0xBDA1\t0x5B97\n0xBDA2\t0x5C31\n0xBDA3\t0x5DDE\n0xBDA4\t0x4FEE\n0xBDA5\t0x6101\n0xBDA6\t0x62FE\n0xBDA7\t0x6D32\n0xBDA8\t0x79C0\n0xBDA9\t0x79CB\n0xBDAA\t0x7D42\n0xBDAB\t0x7E4D\n0xBDAC\t0x7FD2\n0xBDAD\t0x81ED\n0xBDAE\t0x821F\n0xBDAF\t0x8490\n0xBDB0\t0x8846\n0xBDB1\t0x8972\n0xBDB2\t0x8B90\n0xBDB3\t0x8E74\n0xBDB4\t0x8F2F\n0xBDB5\t0x9031\n0xBDB6\t0x914B\n0xBDB7\t0x916C\n0xBDB8\t0x96C6\n0xBDB9\t0x919C\n0xBDBA\t0x4EC0\n0xBDBB\t0x4F4F\n0xBDBC\t0x5145\n0xBDBD\t0x5341\n0xBDBE\t0x5F93\n0xBDBF\t0x620E\n0xBDC0\t0x67D4\n0xBDC1\t0x6C41\n0xBDC2\t0x6E0B\n0xBDC3\t0x7363\n0xBDC4\t0x7E26\n0xBDC5\t0x91CD\n0xBDC6\t0x9283\n0xBDC7\t0x53D4\n0xBDC8\t0x5919\n0xBDC9\t0x5BBF\n0xBDCA\t0x6DD1\n0xBDCB\t0x795D\n0xBDCC\t0x7E2E\n0xBDCD\t0x7C9B\n0xBDCE\t0x587E\n0xBDCF\t0x719F\n0xBDD0\t0x51FA\n0xBDD1\t0x8853\n0xBDD2\t0x8FF0\n0xBDD3\t0x4FCA\n0xBDD4\t0x5CFB\n0xBDD5\t0x6625\n0xBDD6\t0x77AC\n0xBDD7\t0x7AE3\n0xBDD8\t0x821C\n0xBDD9\t0x99FF\n0xBDDA\t0x51C6\n0xBDDB\t0x5FAA\n0xBDDC\t0x65EC\n0xBDDD\t0x696F\n0xBDDE\t0x6B89\n0xBDDF\t0x6DF3\n0xBDE0\t0x6E96\n0xBDE1\t0x6F64\n0xBDE2\t0x76FE\n0xBDE3\t0x7D14\n0xBDE4\t0x5DE1\n0xBDE5\t0x9075\n0xBDE6\t0x9187\n0xBDE7\t0x9806\n0xBDE8\t0x51E6\n0xBDE9\t0x521D\n0xBDEA\t0x6240\n0xBDEB\t0x6691\n0xBDEC\t0x66D9\n0xBDED\t0x6E1A\n0xBDEE\t0x5EB6\n0xBDEF\t0x7DD2\n0xBDF0\t0x7F72\n0xBDF1\t0x66F8\n0xBDF2\t0x85AF\n0xBDF3\t0x85F7\n0xBDF4\t0x8AF8\n0xBDF5\t0x52A9\n0xBDF6\t0x53D9\n0xBDF7\t0x5973\n0xBDF8\t0x5E8F\n0xBDF9\t0x5F90\n0xBDFA\t0x6055\n0xBDFB\t0x92E4\n0xBDFC\t0x9664\n0xBDFD\t0x50B7\n0xBDFE\t0x511F\n0xBEA1\t0x52DD\n0xBEA2\t0x5320\n0xBEA3\t0x5347\n0xBEA4\t0x53EC\n0xBEA5\t0x54E8\n0xBEA6\t0x5546\n0xBEA7\t0x5531\n0xBEA8\t0x5617\n0xBEA9\t0x5968\n0xBEAA\t0x59BE\n0xBEAB\t0x5A3C\n0xBEAC\t0x5BB5\n0xBEAD\t0x5C06\n0xBEAE\t0x5C0F\n0xBEAF\t0x5C11\n0xBEB0\t0x5C1A\n0xBEB1\t0x5E84\n0xBEB2\t0x5E8A\n0xBEB3\t0x5EE0\n0xBEB4\t0x5F70\n0xBEB5\t0x627F\n0xBEB6\t0x6284\n0xBEB7\t0x62DB\n0xBEB8\t0x638C\n0xBEB9\t0x6377\n0xBEBA\t0x6607\n0xBEBB\t0x660C\n0xBEBC\t0x662D\n0xBEBD\t0x6676\n0xBEBE\t0x677E\n0xBEBF\t0x68A2\n0xBEC0\t0x6A1F\n0xBEC1\t0x6A35\n0xBEC2\t0x6CBC\n0xBEC3\t0x6D88\n0xBEC4\t0x6E09\n0xBEC5\t0x6E58\n0xBEC6\t0x713C\n0xBEC7\t0x7126\n0xBEC8\t0x7167\n0xBEC9\t0x75C7\n0xBECA\t0x7701\n0xBECB\t0x785D\n0xBECC\t0x7901\n0xBECD\t0x7965\n0xBECE\t0x79F0\n0xBECF\t0x7AE0\n0xBED0\t0x7B11\n0xBED1\t0x7CA7\n0xBED2\t0x7D39\n0xBED3\t0x8096\n0xBED4\t0x83D6\n0xBED5\t0x848B\n0xBED6\t0x8549\n0xBED7\t0x885D\n0xBED8\t0x88F3\n0xBED9\t0x8A1F\n0xBEDA\t0x8A3C\n0xBEDB\t0x8A54\n0xBEDC\t0x8A73\n0xBEDD\t0x8C61\n0xBEDE\t0x8CDE\n0xBEDF\t0x91A4\n0xBEE0\t0x9266\n0xBEE1\t0x937E\n0xBEE2\t0x9418\n0xBEE3\t0x969C\n0xBEE4\t0x9798\n0xBEE5\t0x4E0A\n0xBEE6\t0x4E08\n0xBEE7\t0x4E1E\n0xBEE8\t0x4E57\n0xBEE9\t0x5197\n0xBEEA\t0x5270\n0xBEEB\t0x57CE\n0xBEEC\t0x5834\n0xBEED\t0x58CC\n0xBEEE\t0x5B22\n0xBEEF\t0x5E38\n0xBEF0\t0x60C5\n0xBEF1\t0x64FE\n0xBEF2\t0x6761\n0xBEF3\t0x6756\n0xBEF4\t0x6D44\n0xBEF5\t0x72B6\n0xBEF6\t0x7573\n0xBEF7\t0x7A63\n0xBEF8\t0x84B8\n0xBEF9\t0x8B72\n0xBEFA\t0x91B8\n0xBEFB\t0x9320\n0xBEFC\t0x5631\n0xBEFD\t0x57F4\n0xBEFE\t0x98FE\n0xBFA1\t0x62ED\n0xBFA2\t0x690D\n0xBFA3\t0x6B96\n0xBFA4\t0x71ED\n0xBFA5\t0x7E54\n0xBFA6\t0x8077\n0xBFA7\t0x8272\n0xBFA8\t0x89E6\n0xBFA9\t0x98DF\n0xBFAA\t0x8755\n0xBFAB\t0x8FB1\n0xBFAC\t0x5C3B\n0xBFAD\t0x4F38\n0xBFAE\t0x4FE1\n0xBFAF\t0x4FB5\n0xBFB0\t0x5507\n0xBFB1\t0x5A20\n0xBFB2\t0x5BDD\n0xBFB3\t0x5BE9\n0xBFB4\t0x5FC3\n0xBFB5\t0x614E\n0xBFB6\t0x632F\n0xBFB7\t0x65B0\n0xBFB8\t0x664B\n0xBFB9\t0x68EE\n0xBFBA\t0x699B\n0xBFBB\t0x6D78\n0xBFBC\t0x6DF1\n0xBFBD\t0x7533\n0xBFBE\t0x75B9\n0xBFBF\t0x771F\n0xBFC0\t0x795E\n0xBFC1\t0x79E6\n0xBFC2\t0x7D33\n0xBFC3\t0x81E3\n0xBFC4\t0x82AF\n0xBFC5\t0x85AA\n0xBFC6\t0x89AA\n0xBFC7\t0x8A3A\n0xBFC8\t0x8EAB\n0xBFC9\t0x8F9B\n0xBFCA\t0x9032\n0xBFCB\t0x91DD\n0xBFCC\t0x9707\n0xBFCD\t0x4EBA\n0xBFCE\t0x4EC1\n0xBFCF\t0x5203\n0xBFD0\t0x5875\n0xBFD1\t0x58EC\n0xBFD2\t0x5C0B\n0xBFD3\t0x751A\n0xBFD4\t0x5C3D\n0xBFD5\t0x814E\n0xBFD6\t0x8A0A\n0xBFD7\t0x8FC5\n0xBFD8\t0x9663\n0xBFD9\t0x976D\n0xBFDA\t0x7B25\n0xBFDB\t0x8ACF\n0xBFDC\t0x9808\n0xBFDD\t0x9162\n0xBFDE\t0x56F3\n0xBFDF\t0x53A8\n0xBFE0\t0x9017\n0xBFE1\t0x5439\n0xBFE2\t0x5782\n0xBFE3\t0x5E25\n0xBFE4\t0x63A8\n0xBFE5\t0x6C34\n0xBFE6\t0x708A\n0xBFE7\t0x7761\n0xBFE8\t0x7C8B\n0xBFE9\t0x7FE0\n0xBFEA\t0x8870\n0xBFEB\t0x9042\n0xBFEC\t0x9154\n0xBFED\t0x9310\n0xBFEE\t0x9318\n0xBFEF\t0x968F\n0xBFF0\t0x745E\n0xBFF1\t0x9AC4\n0xBFF2\t0x5D07\n0xBFF3\t0x5D69\n0xBFF4\t0x6570\n0xBFF5\t0x67A2\n0xBFF6\t0x8DA8\n0xBFF7\t0x96DB\n0xBFF8\t0x636E\n0xBFF9\t0x6749\n0xBFFA\t0x6919\n0xBFFB\t0x83C5\n0xBFFC\t0x9817\n0xBFFD\t0x96C0\n0xBFFE\t0x88FE\n0xC0A1\t0x6F84\n0xC0A2\t0x647A\n0xC0A3\t0x5BF8\n0xC0A4\t0x4E16\n0xC0A5\t0x702C\n0xC0A6\t0x755D\n0xC0A7\t0x662F\n0xC0A8\t0x51C4\n0xC0A9\t0x5236\n0xC0AA\t0x52E2\n0xC0AB\t0x59D3\n0xC0AC\t0x5F81\n0xC0AD\t0x6027\n0xC0AE\t0x6210\n0xC0AF\t0x653F\n0xC0B0\t0x6574\n0xC0B1\t0x661F\n0xC0B2\t0x6674\n0xC0B3\t0x68F2\n0xC0B4\t0x6816\n0xC0B5\t0x6B63\n0xC0B6\t0x6E05\n0xC0B7\t0x7272\n0xC0B8\t0x751F\n0xC0B9\t0x76DB\n0xC0BA\t0x7CBE\n0xC0BB\t0x8056\n0xC0BC\t0x58F0\n0xC0BD\t0x88FD\n0xC0BE\t0x897F\n0xC0BF\t0x8AA0\n0xC0C0\t0x8A93\n0xC0C1\t0x8ACB\n0xC0C2\t0x901D\n0xC0C3\t0x9192\n0xC0C4\t0x9752\n0xC0C5\t0x9759\n0xC0C6\t0x6589\n0xC0C7\t0x7A0E\n0xC0C8\t0x8106\n0xC0C9\t0x96BB\n0xC0CA\t0x5E2D\n0xC0CB\t0x60DC\n0xC0CC\t0x621A\n0xC0CD\t0x65A5\n0xC0CE\t0x6614\n0xC0CF\t0x6790\n0xC0D0\t0x77F3\n0xC0D1\t0x7A4D\n0xC0D2\t0x7C4D\n0xC0D3\t0x7E3E\n0xC0D4\t0x810A\n0xC0D5\t0x8CAC\n0xC0D6\t0x8D64\n0xC0D7\t0x8DE1\n0xC0D8\t0x8E5F\n0xC0D9\t0x78A9\n0xC0DA\t0x5207\n0xC0DB\t0x62D9\n0xC0DC\t0x63A5\n0xC0DD\t0x6442\n0xC0DE\t0x6298\n0xC0DF\t0x8A2D\n0xC0E0\t0x7A83\n0xC0E1\t0x7BC0\n0xC0E2\t0x8AAC\n0xC0E3\t0x96EA\n0xC0E4\t0x7D76\n0xC0E5\t0x820C\n0xC0E6\t0x8749\n0xC0E7\t0x4ED9\n0xC0E8\t0x5148\n0xC0E9\t0x5343\n0xC0EA\t0x5360\n0xC0EB\t0x5BA3\n0xC0EC\t0x5C02\n0xC0ED\t0x5C16\n0xC0EE\t0x5DDD\n0xC0EF\t0x6226\n0xC0F0\t0x6247\n0xC0F1\t0x64B0\n0xC0F2\t0x6813\n0xC0F3\t0x6834\n0xC0F4\t0x6CC9\n0xC0F5\t0x6D45\n0xC0F6\t0x6D17\n0xC0F7\t0x67D3\n0xC0F8\t0x6F5C\n0xC0F9\t0x714E\n0xC0FA\t0x717D\n0xC0FB\t0x65CB\n0xC0FC\t0x7A7F\n0xC0FD\t0x7BAD\n0xC0FE\t0x7DDA\n0xC1A1\t0x7E4A\n0xC1A2\t0x7FA8\n0xC1A3\t0x817A\n0xC1A4\t0x821B\n0xC1A5\t0x8239\n0xC1A6\t0x85A6\n0xC1A7\t0x8A6E\n0xC1A8\t0x8CCE\n0xC1A9\t0x8DF5\n0xC1AA\t0x9078\n0xC1AB\t0x9077\n0xC1AC\t0x92AD\n0xC1AD\t0x9291\n0xC1AE\t0x9583\n0xC1AF\t0x9BAE\n0xC1B0\t0x524D\n0xC1B1\t0x5584\n0xC1B2\t0x6F38\n0xC1B3\t0x7136\n0xC1B4\t0x5168\n0xC1B5\t0x7985\n0xC1B6\t0x7E55\n0xC1B7\t0x81B3\n0xC1B8\t0x7CCE\n0xC1B9\t0x564C\n0xC1BA\t0x5851\n0xC1BB\t0x5CA8\n0xC1BC\t0x63AA\n0xC1BD\t0x66FE\n0xC1BE\t0x66FD\n0xC1BF\t0x695A\n0xC1C0\t0x72D9\n0xC1C1\t0x758F\n0xC1C2\t0x758E\n0xC1C3\t0x790E\n0xC1C4\t0x7956\n0xC1C5\t0x79DF\n0xC1C6\t0x7C97\n0xC1C7\t0x7D20\n0xC1C8\t0x7D44\n0xC1C9\t0x8607\n0xC1CA\t0x8A34\n0xC1CB\t0x963B\n0xC1CC\t0x9061\n0xC1CD\t0x9F20\n0xC1CE\t0x50E7\n0xC1CF\t0x5275\n0xC1D0\t0x53CC\n0xC1D1\t0x53E2\n0xC1D2\t0x5009\n0xC1D3\t0x55AA\n0xC1D4\t0x58EE\n0xC1D5\t0x594F\n0xC1D6\t0x723D\n0xC1D7\t0x5B8B\n0xC1D8\t0x5C64\n0xC1D9\t0x531D\n0xC1DA\t0x60E3\n0xC1DB\t0x60F3\n0xC1DC\t0x635C\n0xC1DD\t0x6383\n0xC1DE\t0x633F\n0xC1DF\t0x63BB\n0xC1E0\t0x64CD\n0xC1E1\t0x65E9\n0xC1E2\t0x66F9\n0xC1E3\t0x5DE3\n0xC1E4\t0x69CD\n0xC1E5\t0x69FD\n0xC1E6\t0x6F15\n0xC1E7\t0x71E5\n0xC1E8\t0x4E89\n0xC1E9\t0x75E9\n0xC1EA\t0x76F8\n0xC1EB\t0x7A93\n0xC1EC\t0x7CDF\n0xC1ED\t0x7DCF\n0xC1EE\t0x7D9C\n0xC1EF\t0x8061\n0xC1F0\t0x8349\n0xC1F1\t0x8358\n0xC1F2\t0x846C\n0xC1F3\t0x84BC\n0xC1F4\t0x85FB\n0xC1F5\t0x88C5\n0xC1F6\t0x8D70\n0xC1F7\t0x9001\n0xC1F8\t0x906D\n0xC1F9\t0x9397\n0xC1FA\t0x971C\n0xC1FB\t0x9A12\n0xC1FC\t0x50CF\n0xC1FD\t0x5897\n0xC1FE\t0x618E\n0xC2A1\t0x81D3\n0xC2A2\t0x8535\n0xC2A3\t0x8D08\n0xC2A4\t0x9020\n0xC2A5\t0x4FC3\n0xC2A6\t0x5074\n0xC2A7\t0x5247\n0xC2A8\t0x5373\n0xC2A9\t0x606F\n0xC2AA\t0x6349\n0xC2AB\t0x675F\n0xC2AC\t0x6E2C\n0xC2AD\t0x8DB3\n0xC2AE\t0x901F\n0xC2AF\t0x4FD7\n0xC2B0\t0x5C5E\n0xC2B1\t0x8CCA\n0xC2B2\t0x65CF\n0xC2B3\t0x7D9A\n0xC2B4\t0x5352\n0xC2B5\t0x8896\n0xC2B6\t0x5176\n0xC2B7\t0x63C3\n0xC2B8\t0x5B58\n0xC2B9\t0x5B6B\n0xC2BA\t0x5C0A\n0xC2BB\t0x640D\n0xC2BC\t0x6751\n0xC2BD\t0x905C\n0xC2BE\t0x4ED6\n0xC2BF\t0x591A\n0xC2C0\t0x592A\n0xC2C1\t0x6C70\n0xC2C2\t0x8A51\n0xC2C3\t0x553E\n0xC2C4\t0x5815\n0xC2C5\t0x59A5\n0xC2C6\t0x60F0\n0xC2C7\t0x6253\n0xC2C8\t0x67C1\n0xC2C9\t0x8235\n0xC2CA\t0x6955\n0xC2CB\t0x9640\n0xC2CC\t0x99C4\n0xC2CD\t0x9A28\n0xC2CE\t0x4F53\n0xC2CF\t0x5806\n0xC2D0\t0x5BFE\n0xC2D1\t0x8010\n0xC2D2\t0x5CB1\n0xC2D3\t0x5E2F\n0xC2D4\t0x5F85\n0xC2D5\t0x6020\n0xC2D6\t0x614B\n0xC2D7\t0x6234\n0xC2D8\t0x66FF\n0xC2D9\t0x6CF0\n0xC2DA\t0x6EDE\n0xC2DB\t0x80CE\n0xC2DC\t0x817F\n0xC2DD\t0x82D4\n0xC2DE\t0x888B\n0xC2DF\t0x8CB8\n0xC2E0\t0x9000\n0xC2E1\t0x902E\n0xC2E2\t0x968A\n0xC2E3\t0x9EDB\n0xC2E4\t0x9BDB\n0xC2E5\t0x4EE3\n0xC2E6\t0x53F0\n0xC2E7\t0x5927\n0xC2E8\t0x7B2C\n0xC2E9\t0x918D\n0xC2EA\t0x984C\n0xC2EB\t0x9DF9\n0xC2EC\t0x6EDD\n0xC2ED\t0x7027\n0xC2EE\t0x5353\n0xC2EF\t0x5544\n0xC2F0\t0x5B85\n0xC2F1\t0x6258\n0xC2F2\t0x629E\n0xC2F3\t0x62D3\n0xC2F4\t0x6CA2\n0xC2F5\t0x6FEF\n0xC2F6\t0x7422\n0xC2F7\t0x8A17\n0xC2F8\t0x9438\n0xC2F9\t0x6FC1\n0xC2FA\t0x8AFE\n0xC2FB\t0x8338\n0xC2FC\t0x51E7\n0xC2FD\t0x86F8\n0xC2FE\t0x53EA\n0xC3A1\t0x53E9\n0xC3A2\t0x4F46\n0xC3A3\t0x9054\n0xC3A4\t0x8FB0\n0xC3A5\t0x596A\n0xC3A6\t0x8131\n0xC3A7\t0x5DFD\n0xC3A8\t0x7AEA\n0xC3A9\t0x8FBF\n0xC3AA\t0x68DA\n0xC3AB\t0x8C37\n0xC3AC\t0x72F8\n0xC3AD\t0x9C48\n0xC3AE\t0x6A3D\n0xC3AF\t0x8AB0\n0xC3B0\t0x4E39\n0xC3B1\t0x5358\n0xC3B2\t0x5606\n0xC3B3\t0x5766\n0xC3B4\t0x62C5\n0xC3B5\t0x63A2\n0xC3B6\t0x65E6\n0xC3B7\t0x6B4E\n0xC3B8\t0x6DE1\n0xC3B9\t0x6E5B\n0xC3BA\t0x70AD\n0xC3BB\t0x77ED\n0xC3BC\t0x7AEF\n0xC3BD\t0x7BAA\n0xC3BE\t0x7DBB\n0xC3BF\t0x803D\n0xC3C0\t0x80C6\n0xC3C1\t0x86CB\n0xC3C2\t0x8A95\n0xC3C3\t0x935B\n0xC3C4\t0x56E3\n0xC3C5\t0x58C7\n0xC3C6\t0x5F3E\n0xC3C7\t0x65AD\n0xC3C8\t0x6696\n0xC3C9\t0x6A80\n0xC3CA\t0x6BB5\n0xC3CB\t0x7537\n0xC3CC\t0x8AC7\n0xC3CD\t0x5024\n0xC3CE\t0x77E5\n0xC3CF\t0x5730\n0xC3D0\t0x5F1B\n0xC3D1\t0x6065\n0xC3D2\t0x667A\n0xC3D3\t0x6C60\n0xC3D4\t0x75F4\n0xC3D5\t0x7A1A\n0xC3D6\t0x7F6E\n0xC3D7\t0x81F4\n0xC3D8\t0x8718\n0xC3D9\t0x9045\n0xC3DA\t0x99B3\n0xC3DB\t0x7BC9\n0xC3DC\t0x755C\n0xC3DD\t0x7AF9\n0xC3DE\t0x7B51\n0xC3DF\t0x84C4\n0xC3E0\t0x9010\n0xC3E1\t0x79E9\n0xC3E2\t0x7A92\n0xC3E3\t0x8336\n0xC3E4\t0x5AE1\n0xC3E5\t0x7740\n0xC3E6\t0x4E2D\n0xC3E7\t0x4EF2\n0xC3E8\t0x5B99\n0xC3E9\t0x5FE0\n0xC3EA\t0x62BD\n0xC3EB\t0x663C\n0xC3EC\t0x67F1\n0xC3ED\t0x6CE8\n0xC3EE\t0x866B\n0xC3EF\t0x8877\n0xC3F0\t0x8A3B\n0xC3F1\t0x914E\n0xC3F2\t0x92F3\n0xC3F3\t0x99D0\n0xC3F4\t0x6A17\n0xC3F5\t0x7026\n0xC3F6\t0x732A\n0xC3F7\t0x82E7\n0xC3F8\t0x8457\n0xC3F9\t0x8CAF\n0xC3FA\t0x4E01\n0xC3FB\t0x5146\n0xC3FC\t0x51CB\n0xC3FD\t0x558B\n0xC3FE\t0x5BF5\n0xC4A1\t0x5E16\n0xC4A2\t0x5E33\n0xC4A3\t0x5E81\n0xC4A4\t0x5F14\n0xC4A5\t0x5F35\n0xC4A6\t0x5F6B\n0xC4A7\t0x5FB4\n0xC4A8\t0x61F2\n0xC4A9\t0x6311\n0xC4AA\t0x66A2\n0xC4AB\t0x671D\n0xC4AC\t0x6F6E\n0xC4AD\t0x7252\n0xC4AE\t0x753A\n0xC4AF\t0x773A\n0xC4B0\t0x8074\n0xC4B1\t0x8139\n0xC4B2\t0x8178\n0xC4B3\t0x8776\n0xC4B4\t0x8ABF\n0xC4B5\t0x8ADC\n0xC4B6\t0x8D85\n0xC4B7\t0x8DF3\n0xC4B8\t0x929A\n0xC4B9\t0x9577\n0xC4BA\t0x9802\n0xC4BB\t0x9CE5\n0xC4BC\t0x52C5\n0xC4BD\t0x6357\n0xC4BE\t0x76F4\n0xC4BF\t0x6715\n0xC4C0\t0x6C88\n0xC4C1\t0x73CD\n0xC4C2\t0x8CC3\n0xC4C3\t0x93AE\n0xC4C4\t0x9673\n0xC4C5\t0x6D25\n0xC4C6\t0x589C\n0xC4C7\t0x690E\n0xC4C8\t0x69CC\n0xC4C9\t0x8FFD\n0xC4CA\t0x939A\n0xC4CB\t0x75DB\n0xC4CC\t0x901A\n0xC4CD\t0x585A\n0xC4CE\t0x6802\n0xC4CF\t0x63B4\n0xC4D0\t0x69FB\n0xC4D1\t0x4F43\n0xC4D2\t0x6F2C\n0xC4D3\t0x67D8\n0xC4D4\t0x8FBB\n0xC4D5\t0x8526\n0xC4D6\t0x7DB4\n0xC4D7\t0x9354\n0xC4D8\t0x693F\n0xC4D9\t0x6F70\n0xC4DA\t0x576A\n0xC4DB\t0x58F7\n0xC4DC\t0x5B2C\n0xC4DD\t0x7D2C\n0xC4DE\t0x722A\n0xC4DF\t0x540A\n0xC4E0\t0x91E3\n0xC4E1\t0x9DB4\n0xC4E2\t0x4EAD\n0xC4E3\t0x4F4E\n0xC4E4\t0x505C\n0xC4E5\t0x5075\n0xC4E6\t0x5243\n0xC4E7\t0x8C9E\n0xC4E8\t0x5448\n0xC4E9\t0x5824\n0xC4EA\t0x5B9A\n0xC4EB\t0x5E1D\n0xC4EC\t0x5E95\n0xC4ED\t0x5EAD\n0xC4EE\t0x5EF7\n0xC4EF\t0x5F1F\n0xC4F0\t0x608C\n0xC4F1\t0x62B5\n0xC4F2\t0x633A\n0xC4F3\t0x63D0\n0xC4F4\t0x68AF\n0xC4F5\t0x6C40\n0xC4F6\t0x7887\n0xC4F7\t0x798E\n0xC4F8\t0x7A0B\n0xC4F9\t0x7DE0\n0xC4FA\t0x8247\n0xC4FB\t0x8A02\n0xC4FC\t0x8AE6\n0xC4FD\t0x8E44\n0xC4FE\t0x9013\n0xC5A1\t0x90B8\n0xC5A2\t0x912D\n0xC5A3\t0x91D8\n0xC5A4\t0x9F0E\n0xC5A5\t0x6CE5\n0xC5A6\t0x6458\n0xC5A7\t0x64E2\n0xC5A8\t0x6575\n0xC5A9\t0x6EF4\n0xC5AA\t0x7684\n0xC5AB\t0x7B1B\n0xC5AC\t0x9069\n0xC5AD\t0x93D1\n0xC5AE\t0x6EBA\n0xC5AF\t0x54F2\n0xC5B0\t0x5FB9\n0xC5B1\t0x64A4\n0xC5B2\t0x8F4D\n0xC5B3\t0x8FED\n0xC5B4\t0x9244\n0xC5B5\t0x5178\n0xC5B6\t0x586B\n0xC5B7\t0x5929\n0xC5B8\t0x5C55\n0xC5B9\t0x5E97\n0xC5BA\t0x6DFB\n0xC5BB\t0x7E8F\n0xC5BC\t0x751C\n0xC5BD\t0x8CBC\n0xC5BE\t0x8EE2\n0xC5BF\t0x985B\n0xC5C0\t0x70B9\n0xC5C1\t0x4F1D\n0xC5C2\t0x6BBF\n0xC5C3\t0x6FB1\n0xC5C4\t0x7530\n0xC5C5\t0x96FB\n0xC5C6\t0x514E\n0xC5C7\t0x5410\n0xC5C8\t0x5835\n0xC5C9\t0x5857\n0xC5CA\t0x59AC\n0xC5CB\t0x5C60\n0xC5CC\t0x5F92\n0xC5CD\t0x6597\n0xC5CE\t0x675C\n0xC5CF\t0x6E21\n0xC5D0\t0x767B\n0xC5D1\t0x83DF\n0xC5D2\t0x8CED\n0xC5D3\t0x9014\n0xC5D4\t0x90FD\n0xC5D5\t0x934D\n0xC5D6\t0x7825\n0xC5D7\t0x783A\n0xC5D8\t0x52AA\n0xC5D9\t0x5EA6\n0xC5DA\t0x571F\n0xC5DB\t0x5974\n0xC5DC\t0x6012\n0xC5DD\t0x5012\n0xC5DE\t0x515A\n0xC5DF\t0x51AC\n0xC5E0\t0x51CD\n0xC5E1\t0x5200\n0xC5E2\t0x5510\n0xC5E3\t0x5854\n0xC5E4\t0x5858\n0xC5E5\t0x5957\n0xC5E6\t0x5B95\n0xC5E7\t0x5CF6\n0xC5E8\t0x5D8B\n0xC5E9\t0x60BC\n0xC5EA\t0x6295\n0xC5EB\t0x642D\n0xC5EC\t0x6771\n0xC5ED\t0x6843\n0xC5EE\t0x68BC\n0xC5EF\t0x68DF\n0xC5F0\t0x76D7\n0xC5F1\t0x6DD8\n0xC5F2\t0x6E6F\n0xC5F3\t0x6D9B\n0xC5F4\t0x706F\n0xC5F5\t0x71C8\n0xC5F6\t0x5F53\n0xC5F7\t0x75D8\n0xC5F8\t0x7977\n0xC5F9\t0x7B49\n0xC5FA\t0x7B54\n0xC5FB\t0x7B52\n0xC5FC\t0x7CD6\n0xC5FD\t0x7D71\n0xC5FE\t0x5230\n0xC6A1\t0x8463\n0xC6A2\t0x8569\n0xC6A3\t0x85E4\n0xC6A4\t0x8A0E\n0xC6A5\t0x8B04\n0xC6A6\t0x8C46\n0xC6A7\t0x8E0F\n0xC6A8\t0x9003\n0xC6A9\t0x900F\n0xC6AA\t0x9419\n0xC6AB\t0x9676\n0xC6AC\t0x982D\n0xC6AD\t0x9A30\n0xC6AE\t0x95D8\n0xC6AF\t0x50CD\n0xC6B0\t0x52D5\n0xC6B1\t0x540C\n0xC6B2\t0x5802\n0xC6B3\t0x5C0E\n0xC6B4\t0x61A7\n0xC6B5\t0x649E\n0xC6B6\t0x6D1E\n0xC6B7\t0x77B3\n0xC6B8\t0x7AE5\n0xC6B9\t0x80F4\n0xC6BA\t0x8404\n0xC6BB\t0x9053\n0xC6BC\t0x9285\n0xC6BD\t0x5CE0\n0xC6BE\t0x9D07\n0xC6BF\t0x533F\n0xC6C0\t0x5F97\n0xC6C1\t0x5FB3\n0xC6C2\t0x6D9C\n0xC6C3\t0x7279\n0xC6C4\t0x7763\n0xC6C5\t0x79BF\n0xC6C6\t0x7BE4\n0xC6C7\t0x6BD2\n0xC6C8\t0x72EC\n0xC6C9\t0x8AAD\n0xC6CA\t0x6803\n0xC6CB\t0x6A61\n0xC6CC\t0x51F8\n0xC6CD\t0x7A81\n0xC6CE\t0x6934\n0xC6CF\t0x5C4A\n0xC6D0\t0x9CF6\n0xC6D1\t0x82EB\n0xC6D2\t0x5BC5\n0xC6D3\t0x9149\n0xC6D4\t0x701E\n0xC6D5\t0x5678\n0xC6D6\t0x5C6F\n0xC6D7\t0x60C7\n0xC6D8\t0x6566\n0xC6D9\t0x6C8C\n0xC6DA\t0x8C5A\n0xC6DB\t0x9041\n0xC6DC\t0x9813\n0xC6DD\t0x5451\n0xC6DE\t0x66C7\n0xC6DF\t0x920D\n0xC6E0\t0x5948\n0xC6E1\t0x90A3\n0xC6E2\t0x5185\n0xC6E3\t0x4E4D\n0xC6E4\t0x51EA\n0xC6E5\t0x8599\n0xC6E6\t0x8B0E\n0xC6E7\t0x7058\n0xC6E8\t0x637A\n0xC6E9\t0x934B\n0xC6EA\t0x6962\n0xC6EB\t0x99B4\n0xC6EC\t0x7E04\n0xC6ED\t0x7577\n0xC6EE\t0x5357\n0xC6EF\t0x6960\n0xC6F0\t0x8EDF\n0xC6F1\t0x96E3\n0xC6F2\t0x6C5D\n0xC6F3\t0x4E8C\n0xC6F4\t0x5C3C\n0xC6F5\t0x5F10\n0xC6F6\t0x8FE9\n0xC6F7\t0x5302\n0xC6F8\t0x8CD1\n0xC6F9\t0x8089\n0xC6FA\t0x8679\n0xC6FB\t0x5EFF\n0xC6FC\t0x65E5\n0xC6FD\t0x4E73\n0xC6FE\t0x5165\n0xC7A1\t0x5982\n0xC7A2\t0x5C3F\n0xC7A3\t0x97EE\n0xC7A4\t0x4EFB\n0xC7A5\t0x598A\n0xC7A6\t0x5FCD\n0xC7A7\t0x8A8D\n0xC7A8\t0x6FE1\n0xC7A9\t0x79B0\n0xC7AA\t0x7962\n0xC7AB\t0x5BE7\n0xC7AC\t0x8471\n0xC7AD\t0x732B\n0xC7AE\t0x71B1\n0xC7AF\t0x5E74\n0xC7B0\t0x5FF5\n0xC7B1\t0x637B\n0xC7B2\t0x649A\n0xC7B3\t0x71C3\n0xC7B4\t0x7C98\n0xC7B5\t0x4E43\n0xC7B6\t0x5EFC\n0xC7B7\t0x4E4B\n0xC7B8\t0x57DC\n0xC7B9\t0x56A2\n0xC7BA\t0x60A9\n0xC7BB\t0x6FC3\n0xC7BC\t0x7D0D\n0xC7BD\t0x80FD\n0xC7BE\t0x8133\n0xC7BF\t0x81BF\n0xC7C0\t0x8FB2\n0xC7C1\t0x8997\n0xC7C2\t0x86A4\n0xC7C3\t0x5DF4\n0xC7C4\t0x628A\n0xC7C5\t0x64AD\n0xC7C6\t0x8987\n0xC7C7\t0x6777\n0xC7C8\t0x6CE2\n0xC7C9\t0x6D3E\n0xC7CA\t0x7436\n0xC7CB\t0x7834\n0xC7CC\t0x5A46\n0xC7CD\t0x7F75\n0xC7CE\t0x82AD\n0xC7CF\t0x99AC\n0xC7D0\t0x4FF3\n0xC7D1\t0x5EC3\n0xC7D2\t0x62DD\n0xC7D3\t0x6392\n0xC7D4\t0x6557\n0xC7D5\t0x676F\n0xC7D6\t0x76C3\n0xC7D7\t0x724C\n0xC7D8\t0x80CC\n0xC7D9\t0x80BA\n0xC7DA\t0x8F29\n0xC7DB\t0x914D\n0xC7DC\t0x500D\n0xC7DD\t0x57F9\n0xC7DE\t0x5A92\n0xC7DF\t0x6885\n0xC7E0\t0x6973\n0xC7E1\t0x7164\n0xC7E2\t0x72FD\n0xC7E3\t0x8CB7\n0xC7E4\t0x58F2\n0xC7E5\t0x8CE0\n0xC7E6\t0x966A\n0xC7E7\t0x9019\n0xC7E8\t0x877F\n0xC7E9\t0x79E4\n0xC7EA\t0x77E7\n0xC7EB\t0x8429\n0xC7EC\t0x4F2F\n0xC7ED\t0x5265\n0xC7EE\t0x535A\n0xC7EF\t0x62CD\n0xC7F0\t0x67CF\n0xC7F1\t0x6CCA\n0xC7F2\t0x767D\n0xC7F3\t0x7B94\n0xC7F4\t0x7C95\n0xC7F5\t0x8236\n0xC7F6\t0x8584\n0xC7F7\t0x8FEB\n0xC7F8\t0x66DD\n0xC7F9\t0x6F20\n0xC7FA\t0x7206\n0xC7FB\t0x7E1B\n0xC7FC\t0x83AB\n0xC7FD\t0x99C1\n0xC7FE\t0x9EA6\n0xC8A1\t0x51FD\n0xC8A2\t0x7BB1\n0xC8A3\t0x7872\n0xC8A4\t0x7BB8\n0xC8A5\t0x8087\n0xC8A6\t0x7B48\n0xC8A7\t0x6AE8\n0xC8A8\t0x5E61\n0xC8A9\t0x808C\n0xC8AA\t0x7551\n0xC8AB\t0x7560\n0xC8AC\t0x516B\n0xC8AD\t0x9262\n0xC8AE\t0x6E8C\n0xC8AF\t0x767A\n0xC8B0\t0x9197\n0xC8B1\t0x9AEA\n0xC8B2\t0x4F10\n0xC8B3\t0x7F70\n0xC8B4\t0x629C\n0xC8B5\t0x7B4F\n0xC8B6\t0x95A5\n0xC8B7\t0x9CE9\n0xC8B8\t0x567A\n0xC8B9\t0x5859\n0xC8BA\t0x86E4\n0xC8BB\t0x96BC\n0xC8BC\t0x4F34\n0xC8BD\t0x5224\n0xC8BE\t0x534A\n0xC8BF\t0x53CD\n0xC8C0\t0x53DB\n0xC8C1\t0x5E06\n0xC8C2\t0x642C\n0xC8C3\t0x6591\n0xC8C4\t0x677F\n0xC8C5\t0x6C3E\n0xC8C6\t0x6C4E\n0xC8C7\t0x7248\n0xC8C8\t0x72AF\n0xC8C9\t0x73ED\n0xC8CA\t0x7554\n0xC8CB\t0x7E41\n0xC8CC\t0x822C\n0xC8CD\t0x85E9\n0xC8CE\t0x8CA9\n0xC8CF\t0x7BC4\n0xC8D0\t0x91C6\n0xC8D1\t0x7169\n0xC8D2\t0x9812\n0xC8D3\t0x98EF\n0xC8D4\t0x633D\n0xC8D5\t0x6669\n0xC8D6\t0x756A\n0xC8D7\t0x76E4\n0xC8D8\t0x78D0\n0xC8D9\t0x8543\n0xC8DA\t0x86EE\n0xC8DB\t0x532A\n0xC8DC\t0x5351\n0xC8DD\t0x5426\n0xC8DE\t0x5983\n0xC8DF\t0x5E87\n0xC8E0\t0x5F7C\n0xC8E1\t0x60B2\n0xC8E2\t0x6249\n0xC8E3\t0x6279\n0xC8E4\t0x62AB\n0xC8E5\t0x6590\n0xC8E6\t0x6BD4\n0xC8E7\t0x6CCC\n0xC8E8\t0x75B2\n0xC8E9\t0x76AE\n0xC8EA\t0x7891\n0xC8EB\t0x79D8\n0xC8EC\t0x7DCB\n0xC8ED\t0x7F77\n0xC8EE\t0x80A5\n0xC8EF\t0x88AB\n0xC8F0\t0x8AB9\n0xC8F1\t0x8CBB\n0xC8F2\t0x907F\n0xC8F3\t0x975E\n0xC8F4\t0x98DB\n0xC8F5\t0x6A0B\n0xC8F6\t0x7C38\n0xC8F7\t0x5099\n0xC8F8\t0x5C3E\n0xC8F9\t0x5FAE\n0xC8FA\t0x6787\n0xC8FB\t0x6BD8\n0xC8FC\t0x7435\n0xC8FD\t0x7709\n0xC8FE\t0x7F8E\n0xC9A1\t0x9F3B\n0xC9A2\t0x67CA\n0xC9A3\t0x7A17\n0xC9A4\t0x5339\n0xC9A5\t0x758B\n0xC9A6\t0x9AED\n0xC9A7\t0x5F66\n0xC9A8\t0x819D\n0xC9A9\t0x83F1\n0xC9AA\t0x8098\n0xC9AB\t0x5F3C\n0xC9AC\t0x5FC5\n0xC9AD\t0x7562\n0xC9AE\t0x7B46\n0xC9AF\t0x903C\n0xC9B0\t0x6867\n0xC9B1\t0x59EB\n0xC9B2\t0x5A9B\n0xC9B3\t0x7D10\n0xC9B4\t0x767E\n0xC9B5\t0x8B2C\n0xC9B6\t0x4FF5\n0xC9B7\t0x5F6A\n0xC9B8\t0x6A19\n0xC9B9\t0x6C37\n0xC9BA\t0x6F02\n0xC9BB\t0x74E2\n0xC9BC\t0x7968\n0xC9BD\t0x8868\n0xC9BE\t0x8A55\n0xC9BF\t0x8C79\n0xC9C0\t0x5EDF\n0xC9C1\t0x63CF\n0xC9C2\t0x75C5\n0xC9C3\t0x79D2\n0xC9C4\t0x82D7\n0xC9C5\t0x9328\n0xC9C6\t0x92F2\n0xC9C7\t0x849C\n0xC9C8\t0x86ED\n0xC9C9\t0x9C2D\n0xC9CA\t0x54C1\n0xC9CB\t0x5F6C\n0xC9CC\t0x658C\n0xC9CD\t0x6D5C\n0xC9CE\t0x7015\n0xC9CF\t0x8CA7\n0xC9D0\t0x8CD3\n0xC9D1\t0x983B\n0xC9D2\t0x654F\n0xC9D3\t0x74F6\n0xC9D4\t0x4E0D\n0xC9D5\t0x4ED8\n0xC9D6\t0x57E0\n0xC9D7\t0x592B\n0xC9D8\t0x5A66\n0xC9D9\t0x5BCC\n0xC9DA\t0x51A8\n0xC9DB\t0x5E03\n0xC9DC\t0x5E9C\n0xC9DD\t0x6016\n0xC9DE\t0x6276\n0xC9DF\t0x6577\n0xC9E0\t0x65A7\n0xC9E1\t0x666E\n0xC9E2\t0x6D6E\n0xC9E3\t0x7236\n0xC9E4\t0x7B26\n0xC9E5\t0x8150\n0xC9E6\t0x819A\n0xC9E7\t0x8299\n0xC9E8\t0x8B5C\n0xC9E9\t0x8CA0\n0xC9EA\t0x8CE6\n0xC9EB\t0x8D74\n0xC9EC\t0x961C\n0xC9ED\t0x9644\n0xC9EE\t0x4FAE\n0xC9EF\t0x64AB\n0xC9F0\t0x6B66\n0xC9F1\t0x821E\n0xC9F2\t0x8461\n0xC9F3\t0x856A\n0xC9F4\t0x90E8\n0xC9F5\t0x5C01\n0xC9F6\t0x6953\n0xC9F7\t0x98A8\n0xC9F8\t0x847A\n0xC9F9\t0x8557\n0xC9FA\t0x4F0F\n0xC9FB\t0x526F\n0xC9FC\t0x5FA9\n0xC9FD\t0x5E45\n0xC9FE\t0x670D\n0xCAA1\t0x798F\n0xCAA2\t0x8179\n0xCAA3\t0x8907\n0xCAA4\t0x8986\n0xCAA5\t0x6DF5\n0xCAA6\t0x5F17\n0xCAA7\t0x6255\n0xCAA8\t0x6CB8\n0xCAA9\t0x4ECF\n0xCAAA\t0x7269\n0xCAAB\t0x9B92\n0xCAAC\t0x5206\n0xCAAD\t0x543B\n0xCAAE\t0x5674\n0xCAAF\t0x58B3\n0xCAB0\t0x61A4\n0xCAB1\t0x626E\n0xCAB2\t0x711A\n0xCAB3\t0x596E\n0xCAB4\t0x7C89\n0xCAB5\t0x7CDE\n0xCAB6\t0x7D1B\n0xCAB7\t0x96F0\n0xCAB8\t0x6587\n0xCAB9\t0x805E\n0xCABA\t0x4E19\n0xCABB\t0x4F75\n0xCABC\t0x5175\n0xCABD\t0x5840\n0xCABE\t0x5E63\n0xCABF\t0x5E73\n0xCAC0\t0x5F0A\n0xCAC1\t0x67C4\n0xCAC2\t0x4E26\n0xCAC3\t0x853D\n0xCAC4\t0x9589\n0xCAC5\t0x965B\n0xCAC6\t0x7C73\n0xCAC7\t0x9801\n0xCAC8\t0x50FB\n0xCAC9\t0x58C1\n0xCACA\t0x7656\n0xCACB\t0x78A7\n0xCACC\t0x5225\n0xCACD\t0x77A5\n0xCACE\t0x8511\n0xCACF\t0x7B86\n0xCAD0\t0x504F\n0xCAD1\t0x5909\n0xCAD2\t0x7247\n0xCAD3\t0x7BC7\n0xCAD4\t0x7DE8\n0xCAD5\t0x8FBA\n0xCAD6\t0x8FD4\n0xCAD7\t0x904D\n0xCAD8\t0x4FBF\n0xCAD9\t0x52C9\n0xCADA\t0x5A29\n0xCADB\t0x5F01\n0xCADC\t0x97AD\n0xCADD\t0x4FDD\n0xCADE\t0x8217\n0xCADF\t0x92EA\n0xCAE0\t0x5703\n0xCAE1\t0x6355\n0xCAE2\t0x6B69\n0xCAE3\t0x752B\n0xCAE4\t0x88DC\n0xCAE5\t0x8F14\n0xCAE6\t0x7A42\n0xCAE7\t0x52DF\n0xCAE8\t0x5893\n0xCAE9\t0x6155\n0xCAEA\t0x620A\n0xCAEB\t0x66AE\n0xCAEC\t0x6BCD\n0xCAED\t0x7C3F\n0xCAEE\t0x83E9\n0xCAEF\t0x5023\n0xCAF0\t0x4FF8\n0xCAF1\t0x5305\n0xCAF2\t0x5446\n0xCAF3\t0x5831\n0xCAF4\t0x5949\n0xCAF5\t0x5B9D\n0xCAF6\t0x5CF0\n0xCAF7\t0x5CEF\n0xCAF8\t0x5D29\n0xCAF9\t0x5E96\n0xCAFA\t0x62B1\n0xCAFB\t0x6367\n0xCAFC\t0x653E\n0xCAFD\t0x65B9\n0xCAFE\t0x670B\n0xCBA1\t0x6CD5\n0xCBA2\t0x6CE1\n0xCBA3\t0x70F9\n0xCBA4\t0x7832\n0xCBA5\t0x7E2B\n0xCBA6\t0x80DE\n0xCBA7\t0x82B3\n0xCBA8\t0x840C\n0xCBA9\t0x84EC\n0xCBAA\t0x8702\n0xCBAB\t0x8912\n0xCBAC\t0x8A2A\n0xCBAD\t0x8C4A\n0xCBAE\t0x90A6\n0xCBAF\t0x92D2\n0xCBB0\t0x98FD\n0xCBB1\t0x9CF3\n0xCBB2\t0x9D6C\n0xCBB3\t0x4E4F\n0xCBB4\t0x4EA1\n0xCBB5\t0x508D\n0xCBB6\t0x5256\n0xCBB7\t0x574A\n0xCBB8\t0x59A8\n0xCBB9\t0x5E3D\n0xCBBA\t0x5FD8\n0xCBBB\t0x5FD9\n0xCBBC\t0x623F\n0xCBBD\t0x66B4\n0xCBBE\t0x671B\n0xCBBF\t0x67D0\n0xCBC0\t0x68D2\n0xCBC1\t0x5192\n0xCBC2\t0x7D21\n0xCBC3\t0x80AA\n0xCBC4\t0x81A8\n0xCBC5\t0x8B00\n0xCBC6\t0x8C8C\n0xCBC7\t0x8CBF\n0xCBC8\t0x927E\n0xCBC9\t0x9632\n0xCBCA\t0x5420\n0xCBCB\t0x982C\n0xCBCC\t0x5317\n0xCBCD\t0x50D5\n0xCBCE\t0x535C\n0xCBCF\t0x58A8\n0xCBD0\t0x64B2\n0xCBD1\t0x6734\n0xCBD2\t0x7267\n0xCBD3\t0x7766\n0xCBD4\t0x7A46\n0xCBD5\t0x91E6\n0xCBD6\t0x52C3\n0xCBD7\t0x6CA1\n0xCBD8\t0x6B86\n0xCBD9\t0x5800\n0xCBDA\t0x5E4C\n0xCBDB\t0x5954\n0xCBDC\t0x672C\n0xCBDD\t0x7FFB\n0xCBDE\t0x51E1\n0xCBDF\t0x76C6\n0xCBE0\t0x6469\n0xCBE1\t0x78E8\n0xCBE2\t0x9B54\n0xCBE3\t0x9EBB\n0xCBE4\t0x57CB\n0xCBE5\t0x59B9\n0xCBE6\t0x6627\n0xCBE7\t0x679A\n0xCBE8\t0x6BCE\n0xCBE9\t0x54E9\n0xCBEA\t0x69D9\n0xCBEB\t0x5E55\n0xCBEC\t0x819C\n0xCBED\t0x6795\n0xCBEE\t0x9BAA\n0xCBEF\t0x67FE\n0xCBF0\t0x9C52\n0xCBF1\t0x685D\n0xCBF2\t0x4EA6\n0xCBF3\t0x4FE3\n0xCBF4\t0x53C8\n0xCBF5\t0x62B9\n0xCBF6\t0x672B\n0xCBF7\t0x6CAB\n0xCBF8\t0x8FC4\n0xCBF9\t0x4FAD\n0xCBFA\t0x7E6D\n0xCBFB\t0x9EBF\n0xCBFC\t0x4E07\n0xCBFD\t0x6162\n0xCBFE\t0x6E80\n0xCCA1\t0x6F2B\n0xCCA2\t0x8513\n0xCCA3\t0x5473\n0xCCA4\t0x672A\n0xCCA5\t0x9B45\n0xCCA6\t0x5DF3\n0xCCA7\t0x7B95\n0xCCA8\t0x5CAC\n0xCCA9\t0x5BC6\n0xCCAA\t0x871C\n0xCCAB\t0x6E4A\n0xCCAC\t0x84D1\n0xCCAD\t0x7A14\n0xCCAE\t0x8108\n0xCCAF\t0x5999\n0xCCB0\t0x7C8D\n0xCCB1\t0x6C11\n0xCCB2\t0x7720\n0xCCB3\t0x52D9\n0xCCB4\t0x5922\n0xCCB5\t0x7121\n0xCCB6\t0x725F\n0xCCB7\t0x77DB\n0xCCB8\t0x9727\n0xCCB9\t0x9D61\n0xCCBA\t0x690B\n0xCCBB\t0x5A7F\n0xCCBC\t0x5A18\n0xCCBD\t0x51A5\n0xCCBE\t0x540D\n0xCCBF\t0x547D\n0xCCC0\t0x660E\n0xCCC1\t0x76DF\n0xCCC2\t0x8FF7\n0xCCC3\t0x9298\n0xCCC4\t0x9CF4\n0xCCC5\t0x59EA\n0xCCC6\t0x725D\n0xCCC7\t0x6EC5\n0xCCC8\t0x514D\n0xCCC9\t0x68C9\n0xCCCA\t0x7DBF\n0xCCCB\t0x7DEC\n0xCCCC\t0x9762\n0xCCCD\t0x9EBA\n0xCCCE\t0x6478\n0xCCCF\t0x6A21\n0xCCD0\t0x8302\n0xCCD1\t0x5984\n0xCCD2\t0x5B5F\n0xCCD3\t0x6BDB\n0xCCD4\t0x731B\n0xCCD5\t0x76F2\n0xCCD6\t0x7DB2\n0xCCD7\t0x8017\n0xCCD8\t0x8499\n0xCCD9\t0x5132\n0xCCDA\t0x6728\n0xCCDB\t0x9ED9\n0xCCDC\t0x76EE\n0xCCDD\t0x6762\n0xCCDE\t0x52FF\n0xCCDF\t0x9905\n0xCCE0\t0x5C24\n0xCCE1\t0x623B\n0xCCE2\t0x7C7E\n0xCCE3\t0x8CB0\n0xCCE4\t0x554F\n0xCCE5\t0x60B6\n0xCCE6\t0x7D0B\n0xCCE7\t0x9580\n0xCCE8\t0x5301\n0xCCE9\t0x4E5F\n0xCCEA\t0x51B6\n0xCCEB\t0x591C\n0xCCEC\t0x723A\n0xCCED\t0x8036\n0xCCEE\t0x91CE\n0xCCEF\t0x5F25\n0xCCF0\t0x77E2\n0xCCF1\t0x5384\n0xCCF2\t0x5F79\n0xCCF3\t0x7D04\n0xCCF4\t0x85AC\n0xCCF5\t0x8A33\n0xCCF6\t0x8E8D\n0xCCF7\t0x9756\n0xCCF8\t0x67F3\n0xCCF9\t0x85AE\n0xCCFA\t0x9453\n0xCCFB\t0x6109\n0xCCFC\t0x6108\n0xCCFD\t0x6CB9\n0xCCFE\t0x7652\n0xCDA1\t0x8AED\n0xCDA2\t0x8F38\n0xCDA3\t0x552F\n0xCDA4\t0x4F51\n0xCDA5\t0x512A\n0xCDA6\t0x52C7\n0xCDA7\t0x53CB\n0xCDA8\t0x5BA5\n0xCDA9\t0x5E7D\n0xCDAA\t0x60A0\n0xCDAB\t0x6182\n0xCDAC\t0x63D6\n0xCDAD\t0x6709\n0xCDAE\t0x67DA\n0xCDAF\t0x6E67\n0xCDB0\t0x6D8C\n0xCDB1\t0x7336\n0xCDB2\t0x7337\n0xCDB3\t0x7531\n0xCDB4\t0x7950\n0xCDB5\t0x88D5\n0xCDB6\t0x8A98\n0xCDB7\t0x904A\n0xCDB8\t0x9091\n0xCDB9\t0x90F5\n0xCDBA\t0x96C4\n0xCDBB\t0x878D\n0xCDBC\t0x5915\n0xCDBD\t0x4E88\n0xCDBE\t0x4F59\n0xCDBF\t0x4E0E\n0xCDC0\t0x8A89\n0xCDC1\t0x8F3F\n0xCDC2\t0x9810\n0xCDC3\t0x50AD\n0xCDC4\t0x5E7C\n0xCDC5\t0x5996\n0xCDC6\t0x5BB9\n0xCDC7\t0x5EB8\n0xCDC8\t0x63DA\n0xCDC9\t0x63FA\n0xCDCA\t0x64C1\n0xCDCB\t0x66DC\n0xCDCC\t0x694A\n0xCDCD\t0x69D8\n0xCDCE\t0x6D0B\n0xCDCF\t0x6EB6\n0xCDD0\t0x7194\n0xCDD1\t0x7528\n0xCDD2\t0x7AAF\n0xCDD3\t0x7F8A\n0xCDD4\t0x8000\n0xCDD5\t0x8449\n0xCDD6\t0x84C9\n0xCDD7\t0x8981\n0xCDD8\t0x8B21\n0xCDD9\t0x8E0A\n0xCDDA\t0x9065\n0xCDDB\t0x967D\n0xCDDC\t0x990A\n0xCDDD\t0x617E\n0xCDDE\t0x6291\n0xCDDF\t0x6B32\n0xCDE0\t0x6C83\n0xCDE1\t0x6D74\n0xCDE2\t0x7FCC\n0xCDE3\t0x7FFC\n0xCDE4\t0x6DC0\n0xCDE5\t0x7F85\n0xCDE6\t0x87BA\n0xCDE7\t0x88F8\n0xCDE8\t0x6765\n0xCDE9\t0x83B1\n0xCDEA\t0x983C\n0xCDEB\t0x96F7\n0xCDEC\t0x6D1B\n0xCDED\t0x7D61\n0xCDEE\t0x843D\n0xCDEF\t0x916A\n0xCDF0\t0x4E71\n0xCDF1\t0x5375\n0xCDF2\t0x5D50\n0xCDF3\t0x6B04\n0xCDF4\t0x6FEB\n0xCDF5\t0x85CD\n0xCDF6\t0x862D\n0xCDF7\t0x89A7\n0xCDF8\t0x5229\n0xCDF9\t0x540F\n0xCDFA\t0x5C65\n0xCDFB\t0x674E\n0xCDFC\t0x68A8\n0xCDFD\t0x7406\n0xCDFE\t0x7483\n0xCEA1\t0x75E2\n0xCEA2\t0x88CF\n0xCEA3\t0x88E1\n0xCEA4\t0x91CC\n0xCEA5\t0x96E2\n0xCEA6\t0x9678\n0xCEA7\t0x5F8B\n0xCEA8\t0x7387\n0xCEA9\t0x7ACB\n0xCEAA\t0x844E\n0xCEAB\t0x63A0\n0xCEAC\t0x7565\n0xCEAD\t0x5289\n0xCEAE\t0x6D41\n0xCEAF\t0x6E9C\n0xCEB0\t0x7409\n0xCEB1\t0x7559\n0xCEB2\t0x786B\n0xCEB3\t0x7C92\n0xCEB4\t0x9686\n0xCEB5\t0x7ADC\n0xCEB6\t0x9F8D\n0xCEB7\t0x4FB6\n0xCEB8\t0x616E\n0xCEB9\t0x65C5\n0xCEBA\t0x865C\n0xCEBB\t0x4E86\n0xCEBC\t0x4EAE\n0xCEBD\t0x50DA\n0xCEBE\t0x4E21\n0xCEBF\t0x51CC\n0xCEC0\t0x5BEE\n0xCEC1\t0x6599\n0xCEC2\t0x6881\n0xCEC3\t0x6DBC\n0xCEC4\t0x731F\n0xCEC5\t0x7642\n0xCEC6\t0x77AD\n0xCEC7\t0x7A1C\n0xCEC8\t0x7CE7\n0xCEC9\t0x826F\n0xCECA\t0x8AD2\n0xCECB\t0x907C\n0xCECC\t0x91CF\n0xCECD\t0x9675\n0xCECE\t0x9818\n0xCECF\t0x529B\n0xCED0\t0x7DD1\n0xCED1\t0x502B\n0xCED2\t0x5398\n0xCED3\t0x6797\n0xCED4\t0x6DCB\n0xCED5\t0x71D0\n0xCED6\t0x7433\n0xCED7\t0x81E8\n0xCED8\t0x8F2A\n0xCED9\t0x96A3\n0xCEDA\t0x9C57\n0xCEDB\t0x9E9F\n0xCEDC\t0x7460\n0xCEDD\t0x5841\n0xCEDE\t0x6D99\n0xCEDF\t0x7D2F\n0xCEE0\t0x985E\n0xCEE1\t0x4EE4\n0xCEE2\t0x4F36\n0xCEE3\t0x4F8B\n0xCEE4\t0x51B7\n0xCEE5\t0x52B1\n0xCEE6\t0x5DBA\n0xCEE7\t0x601C\n0xCEE8\t0x73B2\n0xCEE9\t0x793C\n0xCEEA\t0x82D3\n0xCEEB\t0x9234\n0xCEEC\t0x96B7\n0xCEED\t0x96F6\n0xCEEE\t0x970A\n0xCEEF\t0x9E97\n0xCEF0\t0x9F62\n0xCEF1\t0x66A6\n0xCEF2\t0x6B74\n0xCEF3\t0x5217\n0xCEF4\t0x52A3\n0xCEF5\t0x70C8\n0xCEF6\t0x88C2\n0xCEF7\t0x5EC9\n0xCEF8\t0x604B\n0xCEF9\t0x6190\n0xCEFA\t0x6F23\n0xCEFB\t0x7149\n0xCEFC\t0x7C3E\n0xCEFD\t0x7DF4\n0xCEFE\t0x806F\n0xCFA1\t0x84EE\n0xCFA2\t0x9023\n0xCFA3\t0x932C\n0xCFA4\t0x5442\n0xCFA5\t0x9B6F\n0xCFA6\t0x6AD3\n0xCFA7\t0x7089\n0xCFA8\t0x8CC2\n0xCFA9\t0x8DEF\n0xCFAA\t0x9732\n0xCFAB\t0x52B4\n0xCFAC\t0x5A41\n0xCFAD\t0x5ECA\n0xCFAE\t0x5F04\n0xCFAF\t0x6717\n0xCFB0\t0x697C\n0xCFB1\t0x6994\n0xCFB2\t0x6D6A\n0xCFB3\t0x6F0F\n0xCFB4\t0x7262\n0xCFB5\t0x72FC\n0xCFB6\t0x7BED\n0xCFB7\t0x8001\n0xCFB8\t0x807E\n0xCFB9\t0x874B\n0xCFBA\t0x90CE\n0xCFBB\t0x516D\n0xCFBC\t0x9E93\n0xCFBD\t0x7984\n0xCFBE\t0x808B\n0xCFBF\t0x9332\n0xCFC0\t0x8AD6\n0xCFC1\t0x502D\n0xCFC2\t0x548C\n0xCFC3\t0x8A71\n0xCFC4\t0x6B6A\n0xCFC5\t0x8CC4\n0xCFC6\t0x8107\n0xCFC7\t0x60D1\n0xCFC8\t0x67A0\n0xCFC9\t0x9DF2\n0xCFCA\t0x4E99\n0xCFCB\t0x4E98\n0xCFCC\t0x9C10\n0xCFCD\t0x8A6B\n0xCFCE\t0x85C1\n0xCFCF\t0x8568\n0xCFD0\t0x6900\n0xCFD1\t0x6E7E\n0xCFD2\t0x7897\n0xCFD3\t0x8155\n0xD0A1\t0x5F0C\n0xD0A2\t0x4E10\n0xD0A3\t0x4E15\n0xD0A4\t0x4E2A\n0xD0A5\t0x4E31\n0xD0A6\t0x4E36\n0xD0A7\t0x4E3C\n0xD0A8\t0x4E3F\n0xD0A9\t0x4E42\n0xD0AA\t0x4E56\n0xD0AB\t0x4E58\n0xD0AC\t0x4E82\n0xD0AD\t0x4E85\n0xD0AE\t0x8C6B\n0xD0AF\t0x4E8A\n0xD0B0\t0x8212\n0xD0B1\t0x5F0D\n0xD0B2\t0x4E8E\n0xD0B3\t0x4E9E\n0xD0B4\t0x4E9F\n0xD0B5\t0x4EA0\n0xD0B6\t0x4EA2\n0xD0B7\t0x4EB0\n0xD0B8\t0x4EB3\n0xD0B9\t0x4EB6\n0xD0BA\t0x4ECE\n0xD0BB\t0x4ECD\n0xD0BC\t0x4EC4\n0xD0BD\t0x4EC6\n0xD0BE\t0x4EC2\n0xD0BF\t0x4ED7\n0xD0C0\t0x4EDE\n0xD0C1\t0x4EED\n0xD0C2\t0x4EDF\n0xD0C3\t0x4EF7\n0xD0C4\t0x4F09\n0xD0C5\t0x4F5A\n0xD0C6\t0x4F30\n0xD0C7\t0x4F5B\n0xD0C8\t0x4F5D\n0xD0C9\t0x4F57\n0xD0CA\t0x4F47\n0xD0CB\t0x4F76\n0xD0CC\t0x4F88\n0xD0CD\t0x4F8F\n0xD0CE\t0x4F98\n0xD0CF\t0x4F7B\n0xD0D0\t0x4F69\n0xD0D1\t0x4F70\n0xD0D2\t0x4F91\n0xD0D3\t0x4F6F\n0xD0D4\t0x4F86\n0xD0D5\t0x4F96\n0xD0D6\t0x5118\n0xD0D7\t0x4FD4\n0xD0D8\t0x4FDF\n0xD0D9\t0x4FCE\n0xD0DA\t0x4FD8\n0xD0DB\t0x4FDB\n0xD0DC\t0x4FD1\n0xD0DD\t0x4FDA\n0xD0DE\t0x4FD0\n0xD0DF\t0x4FE4\n0xD0E0\t0x4FE5\n0xD0E1\t0x501A\n0xD0E2\t0x5028\n0xD0E3\t0x5014\n0xD0E4\t0x502A\n0xD0E5\t0x5025\n0xD0E6\t0x5005\n0xD0E7\t0x4F1C\n0xD0E8\t0x4FF6\n0xD0E9\t0x5021\n0xD0EA\t0x5029\n0xD0EB\t0x502C\n0xD0EC\t0x4FFE\n0xD0ED\t0x4FEF\n0xD0EE\t0x5011\n0xD0EF\t0x5006\n0xD0F0\t0x5043\n0xD0F1\t0x5047\n0xD0F2\t0x6703\n0xD0F3\t0x5055\n0xD0F4\t0x5050\n0xD0F5\t0x5048\n0xD0F6\t0x505A\n0xD0F7\t0x5056\n0xD0F8\t0x506C\n0xD0F9\t0x5078\n0xD0FA\t0x5080\n0xD0FB\t0x509A\n0xD0FC\t0x5085\n0xD0FD\t0x50B4\n0xD0FE\t0x50B2\n0xD1A1\t0x50C9\n0xD1A2\t0x50CA\n0xD1A3\t0x50B3\n0xD1A4\t0x50C2\n0xD1A5\t0x50D6\n0xD1A6\t0x50DE\n0xD1A7\t0x50E5\n0xD1A8\t0x50ED\n0xD1A9\t0x50E3\n0xD1AA\t0x50EE\n0xD1AB\t0x50F9\n0xD1AC\t0x50F5\n0xD1AD\t0x5109\n0xD1AE\t0x5101\n0xD1AF\t0x5102\n0xD1B0\t0x5116\n0xD1B1\t0x5115\n0xD1B2\t0x5114\n0xD1B3\t0x511A\n0xD1B4\t0x5121\n0xD1B5\t0x513A\n0xD1B6\t0x5137\n0xD1B7\t0x513C\n0xD1B8\t0x513B\n0xD1B9\t0x513F\n0xD1BA\t0x5140\n0xD1BB\t0x5152\n0xD1BC\t0x514C\n0xD1BD\t0x5154\n0xD1BE\t0x5162\n0xD1BF\t0x7AF8\n0xD1C0\t0x5169\n0xD1C1\t0x516A\n0xD1C2\t0x516E\n0xD1C3\t0x5180\n0xD1C4\t0x5182\n0xD1C5\t0x56D8\n0xD1C6\t0x518C\n0xD1C7\t0x5189\n0xD1C8\t0x518F\n0xD1C9\t0x5191\n0xD1CA\t0x5193\n0xD1CB\t0x5195\n0xD1CC\t0x5196\n0xD1CD\t0x51A4\n0xD1CE\t0x51A6\n0xD1CF\t0x51A2\n0xD1D0\t0x51A9\n0xD1D1\t0x51AA\n0xD1D2\t0x51AB\n0xD1D3\t0x51B3\n0xD1D4\t0x51B1\n0xD1D5\t0x51B2\n0xD1D6\t0x51B0\n0xD1D7\t0x51B5\n0xD1D8\t0x51BD\n0xD1D9\t0x51C5\n0xD1DA\t0x51C9\n0xD1DB\t0x51DB\n0xD1DC\t0x51E0\n0xD1DD\t0x8655\n0xD1DE\t0x51E9\n0xD1DF\t0x51ED\n0xD1E0\t0x51F0\n0xD1E1\t0x51F5\n0xD1E2\t0x51FE\n0xD1E3\t0x5204\n0xD1E4\t0x520B\n0xD1E5\t0x5214\n0xD1E6\t0x520E\n0xD1E7\t0x5227\n0xD1E8\t0x522A\n0xD1E9\t0x522E\n0xD1EA\t0x5233\n0xD1EB\t0x5239\n0xD1EC\t0x524F\n0xD1ED\t0x5244\n0xD1EE\t0x524B\n0xD1EF\t0x524C\n0xD1F0\t0x525E\n0xD1F1\t0x5254\n0xD1F2\t0x526A\n0xD1F3\t0x5274\n0xD1F4\t0x5269\n0xD1F5\t0x5273\n0xD1F6\t0x527F\n0xD1F7\t0x527D\n0xD1F8\t0x528D\n0xD1F9\t0x5294\n0xD1FA\t0x5292\n0xD1FB\t0x5271\n0xD1FC\t0x5288\n0xD1FD\t0x5291\n0xD1FE\t0x8FA8\n0xD2A1\t0x8FA7\n0xD2A2\t0x52AC\n0xD2A3\t0x52AD\n0xD2A4\t0x52BC\n0xD2A5\t0x52B5\n0xD2A6\t0x52C1\n0xD2A7\t0x52CD\n0xD2A8\t0x52D7\n0xD2A9\t0x52DE\n0xD2AA\t0x52E3\n0xD2AB\t0x52E6\n0xD2AC\t0x98ED\n0xD2AD\t0x52E0\n0xD2AE\t0x52F3\n0xD2AF\t0x52F5\n0xD2B0\t0x52F8\n0xD2B1\t0x52F9\n0xD2B2\t0x5306\n0xD2B3\t0x5308\n0xD2B4\t0x7538\n0xD2B5\t0x530D\n0xD2B6\t0x5310\n0xD2B7\t0x530F\n0xD2B8\t0x5315\n0xD2B9\t0x531A\n0xD2BA\t0x5323\n0xD2BB\t0x532F\n0xD2BC\t0x5331\n0xD2BD\t0x5333\n0xD2BE\t0x5338\n0xD2BF\t0x5340\n0xD2C0\t0x5346\n0xD2C1\t0x5345\n0xD2C2\t0x4E17\n0xD2C3\t0x5349\n0xD2C4\t0x534D\n0xD2C5\t0x51D6\n0xD2C6\t0x535E\n0xD2C7\t0x5369\n0xD2C8\t0x536E\n0xD2C9\t0x5918\n0xD2CA\t0x537B\n0xD2CB\t0x5377\n0xD2CC\t0x5382\n0xD2CD\t0x5396\n0xD2CE\t0x53A0\n0xD2CF\t0x53A6\n0xD2D0\t0x53A5\n0xD2D1\t0x53AE\n0xD2D2\t0x53B0\n0xD2D3\t0x53B6\n0xD2D4\t0x53C3\n0xD2D5\t0x7C12\n0xD2D6\t0x96D9\n0xD2D7\t0x53DF\n0xD2D8\t0x66FC\n0xD2D9\t0x71EE\n0xD2DA\t0x53EE\n0xD2DB\t0x53E8\n0xD2DC\t0x53ED\n0xD2DD\t0x53FA\n0xD2DE\t0x5401\n0xD2DF\t0x543D\n0xD2E0\t0x5440\n0xD2E1\t0x542C\n0xD2E2\t0x542D\n0xD2E3\t0x543C\n0xD2E4\t0x542E\n0xD2E5\t0x5436\n0xD2E6\t0x5429\n0xD2E7\t0x541D\n0xD2E8\t0x544E\n0xD2E9\t0x548F\n0xD2EA\t0x5475\n0xD2EB\t0x548E\n0xD2EC\t0x545F\n0xD2ED\t0x5471\n0xD2EE\t0x5477\n0xD2EF\t0x5470\n0xD2F0\t0x5492\n0xD2F1\t0x547B\n0xD2F2\t0x5480\n0xD2F3\t0x5476\n0xD2F4\t0x5484\n0xD2F5\t0x5490\n0xD2F6\t0x5486\n0xD2F7\t0x54C7\n0xD2F8\t0x54A2\n0xD2F9\t0x54B8\n0xD2FA\t0x54A5\n0xD2FB\t0x54AC\n0xD2FC\t0x54C4\n0xD2FD\t0x54C8\n0xD2FE\t0x54A8\n0xD3A1\t0x54AB\n0xD3A2\t0x54C2\n0xD3A3\t0x54A4\n0xD3A4\t0x54BE\n0xD3A5\t0x54BC\n0xD3A6\t0x54D8\n0xD3A7\t0x54E5\n0xD3A8\t0x54E6\n0xD3A9\t0x550F\n0xD3AA\t0x5514\n0xD3AB\t0x54FD\n0xD3AC\t0x54EE\n0xD3AD\t0x54ED\n0xD3AE\t0x54FA\n0xD3AF\t0x54E2\n0xD3B0\t0x5539\n0xD3B1\t0x5540\n0xD3B2\t0x5563\n0xD3B3\t0x554C\n0xD3B4\t0x552E\n0xD3B5\t0x555C\n0xD3B6\t0x5545\n0xD3B7\t0x5556\n0xD3B8\t0x5557\n0xD3B9\t0x5538\n0xD3BA\t0x5533\n0xD3BB\t0x555D\n0xD3BC\t0x5599\n0xD3BD\t0x5580\n0xD3BE\t0x54AF\n0xD3BF\t0x558A\n0xD3C0\t0x559F\n0xD3C1\t0x557B\n0xD3C2\t0x557E\n0xD3C3\t0x5598\n0xD3C4\t0x559E\n0xD3C5\t0x55AE\n0xD3C6\t0x557C\n0xD3C7\t0x5583\n0xD3C8\t0x55A9\n0xD3C9\t0x5587\n0xD3CA\t0x55A8\n0xD3CB\t0x55DA\n0xD3CC\t0x55C5\n0xD3CD\t0x55DF\n0xD3CE\t0x55C4\n0xD3CF\t0x55DC\n0xD3D0\t0x55E4\n0xD3D1\t0x55D4\n0xD3D2\t0x5614\n0xD3D3\t0x55F7\n0xD3D4\t0x5616\n0xD3D5\t0x55FE\n0xD3D6\t0x55FD\n0xD3D7\t0x561B\n0xD3D8\t0x55F9\n0xD3D9\t0x564E\n0xD3DA\t0x5650\n0xD3DB\t0x71DF\n0xD3DC\t0x5634\n0xD3DD\t0x5636\n0xD3DE\t0x5632\n0xD3DF\t0x5638\n0xD3E0\t0x566B\n0xD3E1\t0x5664\n0xD3E2\t0x562F\n0xD3E3\t0x566C\n0xD3E4\t0x566A\n0xD3E5\t0x5686\n0xD3E6\t0x5680\n0xD3E7\t0x568A\n0xD3E8\t0x56A0\n0xD3E9\t0x5694\n0xD3EA\t0x568F\n0xD3EB\t0x56A5\n0xD3EC\t0x56AE\n0xD3ED\t0x56B6\n0xD3EE\t0x56B4\n0xD3EF\t0x56C2\n0xD3F0\t0x56BC\n0xD3F1\t0x56C1\n0xD3F2\t0x56C3\n0xD3F3\t0x56C0\n0xD3F4\t0x56C8\n0xD3F5\t0x56CE\n0xD3F6\t0x56D1\n0xD3F7\t0x56D3\n0xD3F8\t0x56D7\n0xD3F9\t0x56EE\n0xD3FA\t0x56F9\n0xD3FB\t0x5700\n0xD3FC\t0x56FF\n0xD3FD\t0x5704\n0xD3FE\t0x5709\n0xD4A1\t0x5708\n0xD4A2\t0x570B\n0xD4A3\t0x570D\n0xD4A4\t0x5713\n0xD4A5\t0x5718\n0xD4A6\t0x5716\n0xD4A7\t0x55C7\n0xD4A8\t0x571C\n0xD4A9\t0x5726\n0xD4AA\t0x5737\n0xD4AB\t0x5738\n0xD4AC\t0x574E\n0xD4AD\t0x573B\n0xD4AE\t0x5740\n0xD4AF\t0x574F\n0xD4B0\t0x5769\n0xD4B1\t0x57C0\n0xD4B2\t0x5788\n0xD4B3\t0x5761\n0xD4B4\t0x577F\n0xD4B5\t0x5789\n0xD4B6\t0x5793\n0xD4B7\t0x57A0\n0xD4B8\t0x57B3\n0xD4B9\t0x57A4\n0xD4BA\t0x57AA\n0xD4BB\t0x57B0\n0xD4BC\t0x57C3\n0xD4BD\t0x57C6\n0xD4BE\t0x57D4\n0xD4BF\t0x57D2\n0xD4C0\t0x57D3\n0xD4C1\t0x580A\n0xD4C2\t0x57D6\n0xD4C3\t0x57E3\n0xD4C4\t0x580B\n0xD4C5\t0x5819\n0xD4C6\t0x581D\n0xD4C7\t0x5872\n0xD4C8\t0x5821\n0xD4C9\t0x5862\n0xD4CA\t0x584B\n0xD4CB\t0x5870\n0xD4CC\t0x6BC0\n0xD4CD\t0x5852\n0xD4CE\t0x583D\n0xD4CF\t0x5879\n0xD4D0\t0x5885\n0xD4D1\t0x58B9\n0xD4D2\t0x589F\n0xD4D3\t0x58AB\n0xD4D4\t0x58BA\n0xD4D5\t0x58DE\n0xD4D6\t0x58BB\n0xD4D7\t0x58B8\n0xD4D8\t0x58AE\n0xD4D9\t0x58C5\n0xD4DA\t0x58D3\n0xD4DB\t0x58D1\n0xD4DC\t0x58D7\n0xD4DD\t0x58D9\n0xD4DE\t0x58D8\n0xD4DF\t0x58E5\n0xD4E0\t0x58DC\n0xD4E1\t0x58E4\n0xD4E2\t0x58DF\n0xD4E3\t0x58EF\n0xD4E4\t0x58FA\n0xD4E5\t0x58F9\n0xD4E6\t0x58FB\n0xD4E7\t0x58FC\n0xD4E8\t0x58FD\n0xD4E9\t0x5902\n0xD4EA\t0x590A\n0xD4EB\t0x5910\n0xD4EC\t0x591B\n0xD4ED\t0x68A6\n0xD4EE\t0x5925\n0xD4EF\t0x592C\n0xD4F0\t0x592D\n0xD4F1\t0x5932\n0xD4F2\t0x5938\n0xD4F3\t0x593E\n0xD4F4\t0x7AD2\n0xD4F5\t0x5955\n0xD4F6\t0x5950\n0xD4F7\t0x594E\n0xD4F8\t0x595A\n0xD4F9\t0x5958\n0xD4FA\t0x5962\n0xD4FB\t0x5960\n0xD4FC\t0x5967\n0xD4FD\t0x596C\n0xD4FE\t0x5969\n0xD5A1\t0x5978\n0xD5A2\t0x5981\n0xD5A3\t0x599D\n0xD5A4\t0x4F5E\n0xD5A5\t0x4FAB\n0xD5A6\t0x59A3\n0xD5A7\t0x59B2\n0xD5A8\t0x59C6\n0xD5A9\t0x59E8\n0xD5AA\t0x59DC\n0xD5AB\t0x598D\n0xD5AC\t0x59D9\n0xD5AD\t0x59DA\n0xD5AE\t0x5A25\n0xD5AF\t0x5A1F\n0xD5B0\t0x5A11\n0xD5B1\t0x5A1C\n0xD5B2\t0x5A09\n0xD5B3\t0x5A1A\n0xD5B4\t0x5A40\n0xD5B5\t0x5A6C\n0xD5B6\t0x5A49\n0xD5B7\t0x5A35\n0xD5B8\t0x5A36\n0xD5B9\t0x5A62\n0xD5BA\t0x5A6A\n0xD5BB\t0x5A9A\n0xD5BC\t0x5ABC\n0xD5BD\t0x5ABE\n0xD5BE\t0x5ACB\n0xD5BF\t0x5AC2\n0xD5C0\t0x5ABD\n0xD5C1\t0x5AE3\n0xD5C2\t0x5AD7\n0xD5C3\t0x5AE6\n0xD5C4\t0x5AE9\n0xD5C5\t0x5AD6\n0xD5C6\t0x5AFA\n0xD5C7\t0x5AFB\n0xD5C8\t0x5B0C\n0xD5C9\t0x5B0B\n0xD5CA\t0x5B16\n0xD5CB\t0x5B32\n0xD5CC\t0x5AD0\n0xD5CD\t0x5B2A\n0xD5CE\t0x5B36\n0xD5CF\t0x5B3E\n0xD5D0\t0x5B43\n0xD5D1\t0x5B45\n0xD5D2\t0x5B40\n0xD5D3\t0x5B51\n0xD5D4\t0x5B55\n0xD5D5\t0x5B5A\n0xD5D6\t0x5B5B\n0xD5D7\t0x5B65\n0xD5D8\t0x5B69\n0xD5D9\t0x5B70\n0xD5DA\t0x5B73\n0xD5DB\t0x5B75\n0xD5DC\t0x5B78\n0xD5DD\t0x6588\n0xD5DE\t0x5B7A\n0xD5DF\t0x5B80\n0xD5E0\t0x5B83\n0xD5E1\t0x5BA6\n0xD5E2\t0x5BB8\n0xD5E3\t0x5BC3\n0xD5E4\t0x5BC7\n0xD5E5\t0x5BC9\n0xD5E6\t0x5BD4\n0xD5E7\t0x5BD0\n0xD5E8\t0x5BE4\n0xD5E9\t0x5BE6\n0xD5EA\t0x5BE2\n0xD5EB\t0x5BDE\n0xD5EC\t0x5BE5\n0xD5ED\t0x5BEB\n0xD5EE\t0x5BF0\n0xD5EF\t0x5BF6\n0xD5F0\t0x5BF3\n0xD5F1\t0x5C05\n0xD5F2\t0x5C07\n0xD5F3\t0x5C08\n0xD5F4\t0x5C0D\n0xD5F5\t0x5C13\n0xD5F6\t0x5C20\n0xD5F7\t0x5C22\n0xD5F8\t0x5C28\n0xD5F9\t0x5C38\n0xD5FA\t0x5C39\n0xD5FB\t0x5C41\n0xD5FC\t0x5C46\n0xD5FD\t0x5C4E\n0xD5FE\t0x5C53\n0xD6A1\t0x5C50\n0xD6A2\t0x5C4F\n0xD6A3\t0x5B71\n0xD6A4\t0x5C6C\n0xD6A5\t0x5C6E\n0xD6A6\t0x4E62\n0xD6A7\t0x5C76\n0xD6A8\t0x5C79\n0xD6A9\t0x5C8C\n0xD6AA\t0x5C91\n0xD6AB\t0x5C94\n0xD6AC\t0x599B\n0xD6AD\t0x5CAB\n0xD6AE\t0x5CBB\n0xD6AF\t0x5CB6\n0xD6B0\t0x5CBC\n0xD6B1\t0x5CB7\n0xD6B2\t0x5CC5\n0xD6B3\t0x5CBE\n0xD6B4\t0x5CC7\n0xD6B5\t0x5CD9\n0xD6B6\t0x5CE9\n0xD6B7\t0x5CFD\n0xD6B8\t0x5CFA\n0xD6B9\t0x5CED\n0xD6BA\t0x5D8C\n0xD6BB\t0x5CEA\n0xD6BC\t0x5D0B\n0xD6BD\t0x5D15\n0xD6BE\t0x5D17\n0xD6BF\t0x5D5C\n0xD6C0\t0x5D1F\n0xD6C1\t0x5D1B\n0xD6C2\t0x5D11\n0xD6C3\t0x5D14\n0xD6C4\t0x5D22\n0xD6C5\t0x5D1A\n0xD6C6\t0x5D19\n0xD6C7\t0x5D18\n0xD6C8\t0x5D4C\n0xD6C9\t0x5D52\n0xD6CA\t0x5D4E\n0xD6CB\t0x5D4B\n0xD6CC\t0x5D6C\n0xD6CD\t0x5D73\n0xD6CE\t0x5D76\n0xD6CF\t0x5D87\n0xD6D0\t0x5D84\n0xD6D1\t0x5D82\n0xD6D2\t0x5DA2\n0xD6D3\t0x5D9D\n0xD6D4\t0x5DAC\n0xD6D5\t0x5DAE\n0xD6D6\t0x5DBD\n0xD6D7\t0x5D90\n0xD6D8\t0x5DB7\n0xD6D9\t0x5DBC\n0xD6DA\t0x5DC9\n0xD6DB\t0x5DCD\n0xD6DC\t0x5DD3\n0xD6DD\t0x5DD2\n0xD6DE\t0x5DD6\n0xD6DF\t0x5DDB\n0xD6E0\t0x5DEB\n0xD6E1\t0x5DF2\n0xD6E2\t0x5DF5\n0xD6E3\t0x5E0B\n0xD6E4\t0x5E1A\n0xD6E5\t0x5E19\n0xD6E6\t0x5E11\n0xD6E7\t0x5E1B\n0xD6E8\t0x5E36\n0xD6E9\t0x5E37\n0xD6EA\t0x5E44\n0xD6EB\t0x5E43\n0xD6EC\t0x5E40\n0xD6ED\t0x5E4E\n0xD6EE\t0x5E57\n0xD6EF\t0x5E54\n0xD6F0\t0x5E5F\n0xD6F1\t0x5E62\n0xD6F2\t0x5E64\n0xD6F3\t0x5E47\n0xD6F4\t0x5E75\n0xD6F5\t0x5E76\n0xD6F6\t0x5E7A\n0xD6F7\t0x9EBC\n0xD6F8\t0x5E7F\n0xD6F9\t0x5EA0\n0xD6FA\t0x5EC1\n0xD6FB\t0x5EC2\n0xD6FC\t0x5EC8\n0xD6FD\t0x5ED0\n0xD6FE\t0x5ECF\n0xD7A1\t0x5ED6\n0xD7A2\t0x5EE3\n0xD7A3\t0x5EDD\n0xD7A4\t0x5EDA\n0xD7A5\t0x5EDB\n0xD7A6\t0x5EE2\n0xD7A7\t0x5EE1\n0xD7A8\t0x5EE8\n0xD7A9\t0x5EE9\n0xD7AA\t0x5EEC\n0xD7AB\t0x5EF1\n0xD7AC\t0x5EF3\n0xD7AD\t0x5EF0\n0xD7AE\t0x5EF4\n0xD7AF\t0x5EF8\n0xD7B0\t0x5EFE\n0xD7B1\t0x5F03\n0xD7B2\t0x5F09\n0xD7B3\t0x5F5D\n0xD7B4\t0x5F5C\n0xD7B5\t0x5F0B\n0xD7B6\t0x5F11\n0xD7B7\t0x5F16\n0xD7B8\t0x5F29\n0xD7B9\t0x5F2D\n0xD7BA\t0x5F38\n0xD7BB\t0x5F41\n0xD7BC\t0x5F48\n0xD7BD\t0x5F4C\n0xD7BE\t0x5F4E\n0xD7BF\t0x5F2F\n0xD7C0\t0x5F51\n0xD7C1\t0x5F56\n0xD7C2\t0x5F57\n0xD7C3\t0x5F59\n0xD7C4\t0x5F61\n0xD7C5\t0x5F6D\n0xD7C6\t0x5F73\n0xD7C7\t0x5F77\n0xD7C8\t0x5F83\n0xD7C9\t0x5F82\n0xD7CA\t0x5F7F\n0xD7CB\t0x5F8A\n0xD7CC\t0x5F88\n0xD7CD\t0x5F91\n0xD7CE\t0x5F87\n0xD7CF\t0x5F9E\n0xD7D0\t0x5F99\n0xD7D1\t0x5F98\n0xD7D2\t0x5FA0\n0xD7D3\t0x5FA8\n0xD7D4\t0x5FAD\n0xD7D5\t0x5FBC\n0xD7D6\t0x5FD6\n0xD7D7\t0x5FFB\n0xD7D8\t0x5FE4\n0xD7D9\t0x5FF8\n0xD7DA\t0x5FF1\n0xD7DB\t0x5FDD\n0xD7DC\t0x60B3\n0xD7DD\t0x5FFF\n0xD7DE\t0x6021\n0xD7DF\t0x6060\n0xD7E0\t0x6019\n0xD7E1\t0x6010\n0xD7E2\t0x6029\n0xD7E3\t0x600E\n0xD7E4\t0x6031\n0xD7E5\t0x601B\n0xD7E6\t0x6015\n0xD7E7\t0x602B\n0xD7E8\t0x6026\n0xD7E9\t0x600F\n0xD7EA\t0x603A\n0xD7EB\t0x605A\n0xD7EC\t0x6041\n0xD7ED\t0x606A\n0xD7EE\t0x6077\n0xD7EF\t0x605F\n0xD7F0\t0x604A\n0xD7F1\t0x6046\n0xD7F2\t0x604D\n0xD7F3\t0x6063\n0xD7F4\t0x6043\n0xD7F5\t0x6064\n0xD7F6\t0x6042\n0xD7F7\t0x606C\n0xD7F8\t0x606B\n0xD7F9\t0x6059\n0xD7FA\t0x6081\n0xD7FB\t0x608D\n0xD7FC\t0x60E7\n0xD7FD\t0x6083\n0xD7FE\t0x609A\n0xD8A1\t0x6084\n0xD8A2\t0x609B\n0xD8A3\t0x6096\n0xD8A4\t0x6097\n0xD8A5\t0x6092\n0xD8A6\t0x60A7\n0xD8A7\t0x608B\n0xD8A8\t0x60E1\n0xD8A9\t0x60B8\n0xD8AA\t0x60E0\n0xD8AB\t0x60D3\n0xD8AC\t0x60B4\n0xD8AD\t0x5FF0\n0xD8AE\t0x60BD\n0xD8AF\t0x60C6\n0xD8B0\t0x60B5\n0xD8B1\t0x60D8\n0xD8B2\t0x614D\n0xD8B3\t0x6115\n0xD8B4\t0x6106\n0xD8B5\t0x60F6\n0xD8B6\t0x60F7\n0xD8B7\t0x6100\n0xD8B8\t0x60F4\n0xD8B9\t0x60FA\n0xD8BA\t0x6103\n0xD8BB\t0x6121\n0xD8BC\t0x60FB\n0xD8BD\t0x60F1\n0xD8BE\t0x610D\n0xD8BF\t0x610E\n0xD8C0\t0x6147\n0xD8C1\t0x613E\n0xD8C2\t0x6128\n0xD8C3\t0x6127\n0xD8C4\t0x614A\n0xD8C5\t0x613F\n0xD8C6\t0x613C\n0xD8C7\t0x612C\n0xD8C8\t0x6134\n0xD8C9\t0x613D\n0xD8CA\t0x6142\n0xD8CB\t0x6144\n0xD8CC\t0x6173\n0xD8CD\t0x6177\n0xD8CE\t0x6158\n0xD8CF\t0x6159\n0xD8D0\t0x615A\n0xD8D1\t0x616B\n0xD8D2\t0x6174\n0xD8D3\t0x616F\n0xD8D4\t0x6165\n0xD8D5\t0x6171\n0xD8D6\t0x615F\n0xD8D7\t0x615D\n0xD8D8\t0x6153\n0xD8D9\t0x6175\n0xD8DA\t0x6199\n0xD8DB\t0x6196\n0xD8DC\t0x6187\n0xD8DD\t0x61AC\n0xD8DE\t0x6194\n0xD8DF\t0x619A\n0xD8E0\t0x618A\n0xD8E1\t0x6191\n0xD8E2\t0x61AB\n0xD8E3\t0x61AE\n0xD8E4\t0x61CC\n0xD8E5\t0x61CA\n0xD8E6\t0x61C9\n0xD8E7\t0x61F7\n0xD8E8\t0x61C8\n0xD8E9\t0x61C3\n0xD8EA\t0x61C6\n0xD8EB\t0x61BA\n0xD8EC\t0x61CB\n0xD8ED\t0x7F79\n0xD8EE\t0x61CD\n0xD8EF\t0x61E6\n0xD8F0\t0x61E3\n0xD8F1\t0x61F6\n0xD8F2\t0x61FA\n0xD8F3\t0x61F4\n0xD8F4\t0x61FF\n0xD8F5\t0x61FD\n0xD8F6\t0x61FC\n0xD8F7\t0x61FE\n0xD8F8\t0x6200\n0xD8F9\t0x6208\n0xD8FA\t0x6209\n0xD8FB\t0x620D\n0xD8FC\t0x620C\n0xD8FD\t0x6214\n0xD8FE\t0x621B\n0xD9A1\t0x621E\n0xD9A2\t0x6221\n0xD9A3\t0x622A\n0xD9A4\t0x622E\n0xD9A5\t0x6230\n0xD9A6\t0x6232\n0xD9A7\t0x6233\n0xD9A8\t0x6241\n0xD9A9\t0x624E\n0xD9AA\t0x625E\n0xD9AB\t0x6263\n0xD9AC\t0x625B\n0xD9AD\t0x6260\n0xD9AE\t0x6268\n0xD9AF\t0x627C\n0xD9B0\t0x6282\n0xD9B1\t0x6289\n0xD9B2\t0x627E\n0xD9B3\t0x6292\n0xD9B4\t0x6293\n0xD9B5\t0x6296\n0xD9B6\t0x62D4\n0xD9B7\t0x6283\n0xD9B8\t0x6294\n0xD9B9\t0x62D7\n0xD9BA\t0x62D1\n0xD9BB\t0x62BB\n0xD9BC\t0x62CF\n0xD9BD\t0x62FF\n0xD9BE\t0x62C6\n0xD9BF\t0x64D4\n0xD9C0\t0x62C8\n0xD9C1\t0x62DC\n0xD9C2\t0x62CC\n0xD9C3\t0x62CA\n0xD9C4\t0x62C2\n0xD9C5\t0x62C7\n0xD9C6\t0x629B\n0xD9C7\t0x62C9\n0xD9C8\t0x630C\n0xD9C9\t0x62EE\n0xD9CA\t0x62F1\n0xD9CB\t0x6327\n0xD9CC\t0x6302\n0xD9CD\t0x6308\n0xD9CE\t0x62EF\n0xD9CF\t0x62F5\n0xD9D0\t0x6350\n0xD9D1\t0x633E\n0xD9D2\t0x634D\n0xD9D3\t0x641C\n0xD9D4\t0x634F\n0xD9D5\t0x6396\n0xD9D6\t0x638E\n0xD9D7\t0x6380\n0xD9D8\t0x63AB\n0xD9D9\t0x6376\n0xD9DA\t0x63A3\n0xD9DB\t0x638F\n0xD9DC\t0x6389\n0xD9DD\t0x639F\n0xD9DE\t0x63B5\n0xD9DF\t0x636B\n0xD9E0\t0x6369\n0xD9E1\t0x63BE\n0xD9E2\t0x63E9\n0xD9E3\t0x63C0\n0xD9E4\t0x63C6\n0xD9E5\t0x63E3\n0xD9E6\t0x63C9\n0xD9E7\t0x63D2\n0xD9E8\t0x63F6\n0xD9E9\t0x63C4\n0xD9EA\t0x6416\n0xD9EB\t0x6434\n0xD9EC\t0x6406\n0xD9ED\t0x6413\n0xD9EE\t0x6426\n0xD9EF\t0x6436\n0xD9F0\t0x651D\n0xD9F1\t0x6417\n0xD9F2\t0x6428\n0xD9F3\t0x640F\n0xD9F4\t0x6467\n0xD9F5\t0x646F\n0xD9F6\t0x6476\n0xD9F7\t0x644E\n0xD9F8\t0x652A\n0xD9F9\t0x6495\n0xD9FA\t0x6493\n0xD9FB\t0x64A5\n0xD9FC\t0x64A9\n0xD9FD\t0x6488\n0xD9FE\t0x64BC\n0xDAA1\t0x64DA\n0xDAA2\t0x64D2\n0xDAA3\t0x64C5\n0xDAA4\t0x64C7\n0xDAA5\t0x64BB\n0xDAA6\t0x64D8\n0xDAA7\t0x64C2\n0xDAA8\t0x64F1\n0xDAA9\t0x64E7\n0xDAAA\t0x8209\n0xDAAB\t0x64E0\n0xDAAC\t0x64E1\n0xDAAD\t0x62AC\n0xDAAE\t0x64E3\n0xDAAF\t0x64EF\n0xDAB0\t0x652C\n0xDAB1\t0x64F6\n0xDAB2\t0x64F4\n0xDAB3\t0x64F2\n0xDAB4\t0x64FA\n0xDAB5\t0x6500\n0xDAB6\t0x64FD\n0xDAB7\t0x6518\n0xDAB8\t0x651C\n0xDAB9\t0x6505\n0xDABA\t0x6524\n0xDABB\t0x6523\n0xDABC\t0x652B\n0xDABD\t0x6534\n0xDABE\t0x6535\n0xDABF\t0x6537\n0xDAC0\t0x6536\n0xDAC1\t0x6538\n0xDAC2\t0x754B\n0xDAC3\t0x6548\n0xDAC4\t0x6556\n0xDAC5\t0x6555\n0xDAC6\t0x654D\n0xDAC7\t0x6558\n0xDAC8\t0x655E\n0xDAC9\t0x655D\n0xDACA\t0x6572\n0xDACB\t0x6578\n0xDACC\t0x6582\n0xDACD\t0x6583\n0xDACE\t0x8B8A\n0xDACF\t0x659B\n0xDAD0\t0x659F\n0xDAD1\t0x65AB\n0xDAD2\t0x65B7\n0xDAD3\t0x65C3\n0xDAD4\t0x65C6\n0xDAD5\t0x65C1\n0xDAD6\t0x65C4\n0xDAD7\t0x65CC\n0xDAD8\t0x65D2\n0xDAD9\t0x65DB\n0xDADA\t0x65D9\n0xDADB\t0x65E0\n0xDADC\t0x65E1\n0xDADD\t0x65F1\n0xDADE\t0x6772\n0xDADF\t0x660A\n0xDAE0\t0x6603\n0xDAE1\t0x65FB\n0xDAE2\t0x6773\n0xDAE3\t0x6635\n0xDAE4\t0x6636\n0xDAE5\t0x6634\n0xDAE6\t0x661C\n0xDAE7\t0x664F\n0xDAE8\t0x6644\n0xDAE9\t0x6649\n0xDAEA\t0x6641\n0xDAEB\t0x665E\n0xDAEC\t0x665D\n0xDAED\t0x6664\n0xDAEE\t0x6667\n0xDAEF\t0x6668\n0xDAF0\t0x665F\n0xDAF1\t0x6662\n0xDAF2\t0x6670\n0xDAF3\t0x6683\n0xDAF4\t0x6688\n0xDAF5\t0x668E\n0xDAF6\t0x6689\n0xDAF7\t0x6684\n0xDAF8\t0x6698\n0xDAF9\t0x669D\n0xDAFA\t0x66C1\n0xDAFB\t0x66B9\n0xDAFC\t0x66C9\n0xDAFD\t0x66BE\n0xDAFE\t0x66BC\n0xDBA1\t0x66C4\n0xDBA2\t0x66B8\n0xDBA3\t0x66D6\n0xDBA4\t0x66DA\n0xDBA5\t0x66E0\n0xDBA6\t0x663F\n0xDBA7\t0x66E6\n0xDBA8\t0x66E9\n0xDBA9\t0x66F0\n0xDBAA\t0x66F5\n0xDBAB\t0x66F7\n0xDBAC\t0x670F\n0xDBAD\t0x6716\n0xDBAE\t0x671E\n0xDBAF\t0x6726\n0xDBB0\t0x6727\n0xDBB1\t0x9738\n0xDBB2\t0x672E\n0xDBB3\t0x673F\n0xDBB4\t0x6736\n0xDBB5\t0x6741\n0xDBB6\t0x6738\n0xDBB7\t0x6737\n0xDBB8\t0x6746\n0xDBB9\t0x675E\n0xDBBA\t0x6760\n0xDBBB\t0x6759\n0xDBBC\t0x6763\n0xDBBD\t0x6764\n0xDBBE\t0x6789\n0xDBBF\t0x6770\n0xDBC0\t0x67A9\n0xDBC1\t0x677C\n0xDBC2\t0x676A\n0xDBC3\t0x678C\n0xDBC4\t0x678B\n0xDBC5\t0x67A6\n0xDBC6\t0x67A1\n0xDBC7\t0x6785\n0xDBC8\t0x67B7\n0xDBC9\t0x67EF\n0xDBCA\t0x67B4\n0xDBCB\t0x67EC\n0xDBCC\t0x67B3\n0xDBCD\t0x67E9\n0xDBCE\t0x67B8\n0xDBCF\t0x67E4\n0xDBD0\t0x67DE\n0xDBD1\t0x67DD\n0xDBD2\t0x67E2\n0xDBD3\t0x67EE\n0xDBD4\t0x67B9\n0xDBD5\t0x67CE\n0xDBD6\t0x67C6\n0xDBD7\t0x67E7\n0xDBD8\t0x6A9C\n0xDBD9\t0x681E\n0xDBDA\t0x6846\n0xDBDB\t0x6829\n0xDBDC\t0x6840\n0xDBDD\t0x684D\n0xDBDE\t0x6832\n0xDBDF\t0x684E\n0xDBE0\t0x68B3\n0xDBE1\t0x682B\n0xDBE2\t0x6859\n0xDBE3\t0x6863\n0xDBE4\t0x6877\n0xDBE5\t0x687F\n0xDBE6\t0x689F\n0xDBE7\t0x688F\n0xDBE8\t0x68AD\n0xDBE9\t0x6894\n0xDBEA\t0x689D\n0xDBEB\t0x689B\n0xDBEC\t0x6883\n0xDBED\t0x6AAE\n0xDBEE\t0x68B9\n0xDBEF\t0x6874\n0xDBF0\t0x68B5\n0xDBF1\t0x68A0\n0xDBF2\t0x68BA\n0xDBF3\t0x690F\n0xDBF4\t0x688D\n0xDBF5\t0x687E\n0xDBF6\t0x6901\n0xDBF7\t0x68CA\n0xDBF8\t0x6908\n0xDBF9\t0x68D8\n0xDBFA\t0x6922\n0xDBFB\t0x6926\n0xDBFC\t0x68E1\n0xDBFD\t0x690C\n0xDBFE\t0x68CD\n0xDCA1\t0x68D4\n0xDCA2\t0x68E7\n0xDCA3\t0x68D5\n0xDCA4\t0x6936\n0xDCA5\t0x6912\n0xDCA6\t0x6904\n0xDCA7\t0x68D7\n0xDCA8\t0x68E3\n0xDCA9\t0x6925\n0xDCAA\t0x68F9\n0xDCAB\t0x68E0\n0xDCAC\t0x68EF\n0xDCAD\t0x6928\n0xDCAE\t0x692A\n0xDCAF\t0x691A\n0xDCB0\t0x6923\n0xDCB1\t0x6921\n0xDCB2\t0x68C6\n0xDCB3\t0x6979\n0xDCB4\t0x6977\n0xDCB5\t0x695C\n0xDCB6\t0x6978\n0xDCB7\t0x696B\n0xDCB8\t0x6954\n0xDCB9\t0x697E\n0xDCBA\t0x696E\n0xDCBB\t0x6939\n0xDCBC\t0x6974\n0xDCBD\t0x693D\n0xDCBE\t0x6959\n0xDCBF\t0x6930\n0xDCC0\t0x6961\n0xDCC1\t0x695E\n0xDCC2\t0x695D\n0xDCC3\t0x6981\n0xDCC4\t0x696A\n0xDCC5\t0x69B2\n0xDCC6\t0x69AE\n0xDCC7\t0x69D0\n0xDCC8\t0x69BF\n0xDCC9\t0x69C1\n0xDCCA\t0x69D3\n0xDCCB\t0x69BE\n0xDCCC\t0x69CE\n0xDCCD\t0x5BE8\n0xDCCE\t0x69CA\n0xDCCF\t0x69DD\n0xDCD0\t0x69BB\n0xDCD1\t0x69C3\n0xDCD2\t0x69A7\n0xDCD3\t0x6A2E\n0xDCD4\t0x6991\n0xDCD5\t0x69A0\n0xDCD6\t0x699C\n0xDCD7\t0x6995\n0xDCD8\t0x69B4\n0xDCD9\t0x69DE\n0xDCDA\t0x69E8\n0xDCDB\t0x6A02\n0xDCDC\t0x6A1B\n0xDCDD\t0x69FF\n0xDCDE\t0x6B0A\n0xDCDF\t0x69F9\n0xDCE0\t0x69F2\n0xDCE1\t0x69E7\n0xDCE2\t0x6A05\n0xDCE3\t0x69B1\n0xDCE4\t0x6A1E\n0xDCE5\t0x69ED\n0xDCE6\t0x6A14\n0xDCE7\t0x69EB\n0xDCE8\t0x6A0A\n0xDCE9\t0x6A12\n0xDCEA\t0x6AC1\n0xDCEB\t0x6A23\n0xDCEC\t0x6A13\n0xDCED\t0x6A44\n0xDCEE\t0x6A0C\n0xDCEF\t0x6A72\n0xDCF0\t0x6A36\n0xDCF1\t0x6A78\n0xDCF2\t0x6A47\n0xDCF3\t0x6A62\n0xDCF4\t0x6A59\n0xDCF5\t0x6A66\n0xDCF6\t0x6A48\n0xDCF7\t0x6A38\n0xDCF8\t0x6A22\n0xDCF9\t0x6A90\n0xDCFA\t0x6A8D\n0xDCFB\t0x6AA0\n0xDCFC\t0x6A84\n0xDCFD\t0x6AA2\n0xDCFE\t0x6AA3\n0xDDA1\t0x6A97\n0xDDA2\t0x8617\n0xDDA3\t0x6ABB\n0xDDA4\t0x6AC3\n0xDDA5\t0x6AC2\n0xDDA6\t0x6AB8\n0xDDA7\t0x6AB3\n0xDDA8\t0x6AAC\n0xDDA9\t0x6ADE\n0xDDAA\t0x6AD1\n0xDDAB\t0x6ADF\n0xDDAC\t0x6AAA\n0xDDAD\t0x6ADA\n0xDDAE\t0x6AEA\n0xDDAF\t0x6AFB\n0xDDB0\t0x6B05\n0xDDB1\t0x8616\n0xDDB2\t0x6AFA\n0xDDB3\t0x6B12\n0xDDB4\t0x6B16\n0xDDB5\t0x9B31\n0xDDB6\t0x6B1F\n0xDDB7\t0x6B38\n0xDDB8\t0x6B37\n0xDDB9\t0x76DC\n0xDDBA\t0x6B39\n0xDDBB\t0x98EE\n0xDDBC\t0x6B47\n0xDDBD\t0x6B43\n0xDDBE\t0x6B49\n0xDDBF\t0x6B50\n0xDDC0\t0x6B59\n0xDDC1\t0x6B54\n0xDDC2\t0x6B5B\n0xDDC3\t0x6B5F\n0xDDC4\t0x6B61\n0xDDC5\t0x6B78\n0xDDC6\t0x6B79\n0xDDC7\t0x6B7F\n0xDDC8\t0x6B80\n0xDDC9\t0x6B84\n0xDDCA\t0x6B83\n0xDDCB\t0x6B8D\n0xDDCC\t0x6B98\n0xDDCD\t0x6B95\n0xDDCE\t0x6B9E\n0xDDCF\t0x6BA4\n0xDDD0\t0x6BAA\n0xDDD1\t0x6BAB\n0xDDD2\t0x6BAF\n0xDDD3\t0x6BB2\n0xDDD4\t0x6BB1\n0xDDD5\t0x6BB3\n0xDDD6\t0x6BB7\n0xDDD7\t0x6BBC\n0xDDD8\t0x6BC6\n0xDDD9\t0x6BCB\n0xDDDA\t0x6BD3\n0xDDDB\t0x6BDF\n0xDDDC\t0x6BEC\n0xDDDD\t0x6BEB\n0xDDDE\t0x6BF3\n0xDDDF\t0x6BEF\n0xDDE0\t0x9EBE\n0xDDE1\t0x6C08\n0xDDE2\t0x6C13\n0xDDE3\t0x6C14\n0xDDE4\t0x6C1B\n0xDDE5\t0x6C24\n0xDDE6\t0x6C23\n0xDDE7\t0x6C5E\n0xDDE8\t0x6C55\n0xDDE9\t0x6C62\n0xDDEA\t0x6C6A\n0xDDEB\t0x6C82\n0xDDEC\t0x6C8D\n0xDDED\t0x6C9A\n0xDDEE\t0x6C81\n0xDDEF\t0x6C9B\n0xDDF0\t0x6C7E\n0xDDF1\t0x6C68\n0xDDF2\t0x6C73\n0xDDF3\t0x6C92\n0xDDF4\t0x6C90\n0xDDF5\t0x6CC4\n0xDDF6\t0x6CF1\n0xDDF7\t0x6CD3\n0xDDF8\t0x6CBD\n0xDDF9\t0x6CD7\n0xDDFA\t0x6CC5\n0xDDFB\t0x6CDD\n0xDDFC\t0x6CAE\n0xDDFD\t0x6CB1\n0xDDFE\t0x6CBE\n0xDEA1\t0x6CBA\n0xDEA2\t0x6CDB\n0xDEA3\t0x6CEF\n0xDEA4\t0x6CD9\n0xDEA5\t0x6CEA\n0xDEA6\t0x6D1F\n0xDEA7\t0x884D\n0xDEA8\t0x6D36\n0xDEA9\t0x6D2B\n0xDEAA\t0x6D3D\n0xDEAB\t0x6D38\n0xDEAC\t0x6D19\n0xDEAD\t0x6D35\n0xDEAE\t0x6D33\n0xDEAF\t0x6D12\n0xDEB0\t0x6D0C\n0xDEB1\t0x6D63\n0xDEB2\t0x6D93\n0xDEB3\t0x6D64\n0xDEB4\t0x6D5A\n0xDEB5\t0x6D79\n0xDEB6\t0x6D59\n0xDEB7\t0x6D8E\n0xDEB8\t0x6D95\n0xDEB9\t0x6FE4\n0xDEBA\t0x6D85\n0xDEBB\t0x6DF9\n0xDEBC\t0x6E15\n0xDEBD\t0x6E0A\n0xDEBE\t0x6DB5\n0xDEBF\t0x6DC7\n0xDEC0\t0x6DE6\n0xDEC1\t0x6DB8\n0xDEC2\t0x6DC6\n0xDEC3\t0x6DEC\n0xDEC4\t0x6DDE\n0xDEC5\t0x6DCC\n0xDEC6\t0x6DE8\n0xDEC7\t0x6DD2\n0xDEC8\t0x6DC5\n0xDEC9\t0x6DFA\n0xDECA\t0x6DD9\n0xDECB\t0x6DE4\n0xDECC\t0x6DD5\n0xDECD\t0x6DEA\n0xDECE\t0x6DEE\n0xDECF\t0x6E2D\n0xDED0\t0x6E6E\n0xDED1\t0x6E2E\n0xDED2\t0x6E19\n0xDED3\t0x6E72\n0xDED4\t0x6E5F\n0xDED5\t0x6E3E\n0xDED6\t0x6E23\n0xDED7\t0x6E6B\n0xDED8\t0x6E2B\n0xDED9\t0x6E76\n0xDEDA\t0x6E4D\n0xDEDB\t0x6E1F\n0xDEDC\t0x6E43\n0xDEDD\t0x6E3A\n0xDEDE\t0x6E4E\n0xDEDF\t0x6E24\n0xDEE0\t0x6EFF\n0xDEE1\t0x6E1D\n0xDEE2\t0x6E38\n0xDEE3\t0x6E82\n0xDEE4\t0x6EAA\n0xDEE5\t0x6E98\n0xDEE6\t0x6EC9\n0xDEE7\t0x6EB7\n0xDEE8\t0x6ED3\n0xDEE9\t0x6EBD\n0xDEEA\t0x6EAF\n0xDEEB\t0x6EC4\n0xDEEC\t0x6EB2\n0xDEED\t0x6ED4\n0xDEEE\t0x6ED5\n0xDEEF\t0x6E8F\n0xDEF0\t0x6EA5\n0xDEF1\t0x6EC2\n0xDEF2\t0x6E9F\n0xDEF3\t0x6F41\n0xDEF4\t0x6F11\n0xDEF5\t0x704C\n0xDEF6\t0x6EEC\n0xDEF7\t0x6EF8\n0xDEF8\t0x6EFE\n0xDEF9\t0x6F3F\n0xDEFA\t0x6EF2\n0xDEFB\t0x6F31\n0xDEFC\t0x6EEF\n0xDEFD\t0x6F32\n0xDEFE\t0x6ECC\n0xDFA1\t0x6F3E\n0xDFA2\t0x6F13\n0xDFA3\t0x6EF7\n0xDFA4\t0x6F86\n0xDFA5\t0x6F7A\n0xDFA6\t0x6F78\n0xDFA7\t0x6F81\n0xDFA8\t0x6F80\n0xDFA9\t0x6F6F\n0xDFAA\t0x6F5B\n0xDFAB\t0x6FF3\n0xDFAC\t0x6F6D\n0xDFAD\t0x6F82\n0xDFAE\t0x6F7C\n0xDFAF\t0x6F58\n0xDFB0\t0x6F8E\n0xDFB1\t0x6F91\n0xDFB2\t0x6FC2\n0xDFB3\t0x6F66\n0xDFB4\t0x6FB3\n0xDFB5\t0x6FA3\n0xDFB6\t0x6FA1\n0xDFB7\t0x6FA4\n0xDFB8\t0x6FB9\n0xDFB9\t0x6FC6\n0xDFBA\t0x6FAA\n0xDFBB\t0x6FDF\n0xDFBC\t0x6FD5\n0xDFBD\t0x6FEC\n0xDFBE\t0x6FD4\n0xDFBF\t0x6FD8\n0xDFC0\t0x6FF1\n0xDFC1\t0x6FEE\n0xDFC2\t0x6FDB\n0xDFC3\t0x7009\n0xDFC4\t0x700B\n0xDFC5\t0x6FFA\n0xDFC6\t0x7011\n0xDFC7\t0x7001\n0xDFC8\t0x700F\n0xDFC9\t0x6FFE\n0xDFCA\t0x701B\n0xDFCB\t0x701A\n0xDFCC\t0x6F74\n0xDFCD\t0x701D\n0xDFCE\t0x7018\n0xDFCF\t0x701F\n0xDFD0\t0x7030\n0xDFD1\t0x703E\n0xDFD2\t0x7032\n0xDFD3\t0x7051\n0xDFD4\t0x7063\n0xDFD5\t0x7099\n0xDFD6\t0x7092\n0xDFD7\t0x70AF\n0xDFD8\t0x70F1\n0xDFD9\t0x70AC\n0xDFDA\t0x70B8\n0xDFDB\t0x70B3\n0xDFDC\t0x70AE\n0xDFDD\t0x70DF\n0xDFDE\t0x70CB\n0xDFDF\t0x70DD\n0xDFE0\t0x70D9\n0xDFE1\t0x7109\n0xDFE2\t0x70FD\n0xDFE3\t0x711C\n0xDFE4\t0x7119\n0xDFE5\t0x7165\n0xDFE6\t0x7155\n0xDFE7\t0x7188\n0xDFE8\t0x7166\n0xDFE9\t0x7162\n0xDFEA\t0x714C\n0xDFEB\t0x7156\n0xDFEC\t0x716C\n0xDFED\t0x718F\n0xDFEE\t0x71FB\n0xDFEF\t0x7184\n0xDFF0\t0x7195\n0xDFF1\t0x71A8\n0xDFF2\t0x71AC\n0xDFF3\t0x71D7\n0xDFF4\t0x71B9\n0xDFF5\t0x71BE\n0xDFF6\t0x71D2\n0xDFF7\t0x71C9\n0xDFF8\t0x71D4\n0xDFF9\t0x71CE\n0xDFFA\t0x71E0\n0xDFFB\t0x71EC\n0xDFFC\t0x71E7\n0xDFFD\t0x71F5\n0xDFFE\t0x71FC\n0xE0A1\t0x71F9\n0xE0A2\t0x71FF\n0xE0A3\t0x720D\n0xE0A4\t0x7210\n0xE0A5\t0x721B\n0xE0A6\t0x7228\n0xE0A7\t0x722D\n0xE0A8\t0x722C\n0xE0A9\t0x7230\n0xE0AA\t0x7232\n0xE0AB\t0x723B\n0xE0AC\t0x723C\n0xE0AD\t0x723F\n0xE0AE\t0x7240\n0xE0AF\t0x7246\n0xE0B0\t0x724B\n0xE0B1\t0x7258\n0xE0B2\t0x7274\n0xE0B3\t0x727E\n0xE0B4\t0x7282\n0xE0B5\t0x7281\n0xE0B6\t0x7287\n0xE0B7\t0x7292\n0xE0B8\t0x7296\n0xE0B9\t0x72A2\n0xE0BA\t0x72A7\n0xE0BB\t0x72B9\n0xE0BC\t0x72B2\n0xE0BD\t0x72C3\n0xE0BE\t0x72C6\n0xE0BF\t0x72C4\n0xE0C0\t0x72CE\n0xE0C1\t0x72D2\n0xE0C2\t0x72E2\n0xE0C3\t0x72E0\n0xE0C4\t0x72E1\n0xE0C5\t0x72F9\n0xE0C6\t0x72F7\n0xE0C7\t0x500F\n0xE0C8\t0x7317\n0xE0C9\t0x730A\n0xE0CA\t0x731C\n0xE0CB\t0x7316\n0xE0CC\t0x731D\n0xE0CD\t0x7334\n0xE0CE\t0x732F\n0xE0CF\t0x7329\n0xE0D0\t0x7325\n0xE0D1\t0x733E\n0xE0D2\t0x734E\n0xE0D3\t0x734F\n0xE0D4\t0x9ED8\n0xE0D5\t0x7357\n0xE0D6\t0x736A\n0xE0D7\t0x7368\n0xE0D8\t0x7370\n0xE0D9\t0x7378\n0xE0DA\t0x7375\n0xE0DB\t0x737B\n0xE0DC\t0x737A\n0xE0DD\t0x73C8\n0xE0DE\t0x73B3\n0xE0DF\t0x73CE\n0xE0E0\t0x73BB\n0xE0E1\t0x73C0\n0xE0E2\t0x73E5\n0xE0E3\t0x73EE\n0xE0E4\t0x73DE\n0xE0E5\t0x74A2\n0xE0E6\t0x7405\n0xE0E7\t0x746F\n0xE0E8\t0x7425\n0xE0E9\t0x73F8\n0xE0EA\t0x7432\n0xE0EB\t0x743A\n0xE0EC\t0x7455\n0xE0ED\t0x743F\n0xE0EE\t0x745F\n0xE0EF\t0x7459\n0xE0F0\t0x7441\n0xE0F1\t0x745C\n0xE0F2\t0x7469\n0xE0F3\t0x7470\n0xE0F4\t0x7463\n0xE0F5\t0x746A\n0xE0F6\t0x7476\n0xE0F7\t0x747E\n0xE0F8\t0x748B\n0xE0F9\t0x749E\n0xE0FA\t0x74A7\n0xE0FB\t0x74CA\n0xE0FC\t0x74CF\n0xE0FD\t0x74D4\n0xE0FE\t0x73F1\n0xE1A1\t0x74E0\n0xE1A2\t0x74E3\n0xE1A3\t0x74E7\n0xE1A4\t0x74E9\n0xE1A5\t0x74EE\n0xE1A6\t0x74F2\n0xE1A7\t0x74F0\n0xE1A8\t0x74F1\n0xE1A9\t0x74F8\n0xE1AA\t0x74F7\n0xE1AB\t0x7504\n0xE1AC\t0x7503\n0xE1AD\t0x7505\n0xE1AE\t0x750C\n0xE1AF\t0x750E\n0xE1B0\t0x750D\n0xE1B1\t0x7515\n0xE1B2\t0x7513\n0xE1B3\t0x751E\n0xE1B4\t0x7526\n0xE1B5\t0x752C\n0xE1B6\t0x753C\n0xE1B7\t0x7544\n0xE1B8\t0x754D\n0xE1B9\t0x754A\n0xE1BA\t0x7549\n0xE1BB\t0x755B\n0xE1BC\t0x7546\n0xE1BD\t0x755A\n0xE1BE\t0x7569\n0xE1BF\t0x7564\n0xE1C0\t0x7567\n0xE1C1\t0x756B\n0xE1C2\t0x756D\n0xE1C3\t0x7578\n0xE1C4\t0x7576\n0xE1C5\t0x7586\n0xE1C6\t0x7587\n0xE1C7\t0x7574\n0xE1C8\t0x758A\n0xE1C9\t0x7589\n0xE1CA\t0x7582\n0xE1CB\t0x7594\n0xE1CC\t0x759A\n0xE1CD\t0x759D\n0xE1CE\t0x75A5\n0xE1CF\t0x75A3\n0xE1D0\t0x75C2\n0xE1D1\t0x75B3\n0xE1D2\t0x75C3\n0xE1D3\t0x75B5\n0xE1D4\t0x75BD\n0xE1D5\t0x75B8\n0xE1D6\t0x75BC\n0xE1D7\t0x75B1\n0xE1D8\t0x75CD\n0xE1D9\t0x75CA\n0xE1DA\t0x75D2\n0xE1DB\t0x75D9\n0xE1DC\t0x75E3\n0xE1DD\t0x75DE\n0xE1DE\t0x75FE\n0xE1DF\t0x75FF\n0xE1E0\t0x75FC\n0xE1E1\t0x7601\n0xE1E2\t0x75F0\n0xE1E3\t0x75FA\n0xE1E4\t0x75F2\n0xE1E5\t0x75F3\n0xE1E6\t0x760B\n0xE1E7\t0x760D\n0xE1E8\t0x7609\n0xE1E9\t0x761F\n0xE1EA\t0x7627\n0xE1EB\t0x7620\n0xE1EC\t0x7621\n0xE1ED\t0x7622\n0xE1EE\t0x7624\n0xE1EF\t0x7634\n0xE1F0\t0x7630\n0xE1F1\t0x763B\n0xE1F2\t0x7647\n0xE1F3\t0x7648\n0xE1F4\t0x7646\n0xE1F5\t0x765C\n0xE1F6\t0x7658\n0xE1F7\t0x7661\n0xE1F8\t0x7662\n0xE1F9\t0x7668\n0xE1FA\t0x7669\n0xE1FB\t0x766A\n0xE1FC\t0x7667\n0xE1FD\t0x766C\n0xE1FE\t0x7670\n0xE2A1\t0x7672\n0xE2A2\t0x7676\n0xE2A3\t0x7678\n0xE2A4\t0x767C\n0xE2A5\t0x7680\n0xE2A6\t0x7683\n0xE2A7\t0x7688\n0xE2A8\t0x768B\n0xE2A9\t0x768E\n0xE2AA\t0x7696\n0xE2AB\t0x7693\n0xE2AC\t0x7699\n0xE2AD\t0x769A\n0xE2AE\t0x76B0\n0xE2AF\t0x76B4\n0xE2B0\t0x76B8\n0xE2B1\t0x76B9\n0xE2B2\t0x76BA\n0xE2B3\t0x76C2\n0xE2B4\t0x76CD\n0xE2B5\t0x76D6\n0xE2B6\t0x76D2\n0xE2B7\t0x76DE\n0xE2B8\t0x76E1\n0xE2B9\t0x76E5\n0xE2BA\t0x76E7\n0xE2BB\t0x76EA\n0xE2BC\t0x862F\n0xE2BD\t0x76FB\n0xE2BE\t0x7708\n0xE2BF\t0x7707\n0xE2C0\t0x7704\n0xE2C1\t0x7729\n0xE2C2\t0x7724\n0xE2C3\t0x771E\n0xE2C4\t0x7725\n0xE2C5\t0x7726\n0xE2C6\t0x771B\n0xE2C7\t0x7737\n0xE2C8\t0x7738\n0xE2C9\t0x7747\n0xE2CA\t0x775A\n0xE2CB\t0x7768\n0xE2CC\t0x776B\n0xE2CD\t0x775B\n0xE2CE\t0x7765\n0xE2CF\t0x777F\n0xE2D0\t0x777E\n0xE2D1\t0x7779\n0xE2D2\t0x778E\n0xE2D3\t0x778B\n0xE2D4\t0x7791\n0xE2D5\t0x77A0\n0xE2D6\t0x779E\n0xE2D7\t0x77B0\n0xE2D8\t0x77B6\n0xE2D9\t0x77B9\n0xE2DA\t0x77BF\n0xE2DB\t0x77BC\n0xE2DC\t0x77BD\n0xE2DD\t0x77BB\n0xE2DE\t0x77C7\n0xE2DF\t0x77CD\n0xE2E0\t0x77D7\n0xE2E1\t0x77DA\n0xE2E2\t0x77DC\n0xE2E3\t0x77E3\n0xE2E4\t0x77EE\n0xE2E5\t0x77FC\n0xE2E6\t0x780C\n0xE2E7\t0x7812\n0xE2E8\t0x7926\n0xE2E9\t0x7820\n0xE2EA\t0x792A\n0xE2EB\t0x7845\n0xE2EC\t0x788E\n0xE2ED\t0x7874\n0xE2EE\t0x7886\n0xE2EF\t0x787C\n0xE2F0\t0x789A\n0xE2F1\t0x788C\n0xE2F2\t0x78A3\n0xE2F3\t0x78B5\n0xE2F4\t0x78AA\n0xE2F5\t0x78AF\n0xE2F6\t0x78D1\n0xE2F7\t0x78C6\n0xE2F8\t0x78CB\n0xE2F9\t0x78D4\n0xE2FA\t0x78BE\n0xE2FB\t0x78BC\n0xE2FC\t0x78C5\n0xE2FD\t0x78CA\n0xE2FE\t0x78EC\n0xE3A1\t0x78E7\n0xE3A2\t0x78DA\n0xE3A3\t0x78FD\n0xE3A4\t0x78F4\n0xE3A5\t0x7907\n0xE3A6\t0x7912\n0xE3A7\t0x7911\n0xE3A8\t0x7919\n0xE3A9\t0x792C\n0xE3AA\t0x792B\n0xE3AB\t0x7940\n0xE3AC\t0x7960\n0xE3AD\t0x7957\n0xE3AE\t0x795F\n0xE3AF\t0x795A\n0xE3B0\t0x7955\n0xE3B1\t0x7953\n0xE3B2\t0x797A\n0xE3B3\t0x797F\n0xE3B4\t0x798A\n0xE3B5\t0x799D\n0xE3B6\t0x79A7\n0xE3B7\t0x9F4B\n0xE3B8\t0x79AA\n0xE3B9\t0x79AE\n0xE3BA\t0x79B3\n0xE3BB\t0x79B9\n0xE3BC\t0x79BA\n0xE3BD\t0x79C9\n0xE3BE\t0x79D5\n0xE3BF\t0x79E7\n0xE3C0\t0x79EC\n0xE3C1\t0x79E1\n0xE3C2\t0x79E3\n0xE3C3\t0x7A08\n0xE3C4\t0x7A0D\n0xE3C5\t0x7A18\n0xE3C6\t0x7A19\n0xE3C7\t0x7A20\n0xE3C8\t0x7A1F\n0xE3C9\t0x7980\n0xE3CA\t0x7A31\n0xE3CB\t0x7A3B\n0xE3CC\t0x7A3E\n0xE3CD\t0x7A37\n0xE3CE\t0x7A43\n0xE3CF\t0x7A57\n0xE3D0\t0x7A49\n0xE3D1\t0x7A61\n0xE3D2\t0x7A62\n0xE3D3\t0x7A69\n0xE3D4\t0x9F9D\n0xE3D5\t0x7A70\n0xE3D6\t0x7A79\n0xE3D7\t0x7A7D\n0xE3D8\t0x7A88\n0xE3D9\t0x7A97\n0xE3DA\t0x7A95\n0xE3DB\t0x7A98\n0xE3DC\t0x7A96\n0xE3DD\t0x7AA9\n0xE3DE\t0x7AC8\n0xE3DF\t0x7AB0\n0xE3E0\t0x7AB6\n0xE3E1\t0x7AC5\n0xE3E2\t0x7AC4\n0xE3E3\t0x7ABF\n0xE3E4\t0x9083\n0xE3E5\t0x7AC7\n0xE3E6\t0x7ACA\n0xE3E7\t0x7ACD\n0xE3E8\t0x7ACF\n0xE3E9\t0x7AD5\n0xE3EA\t0x7AD3\n0xE3EB\t0x7AD9\n0xE3EC\t0x7ADA\n0xE3ED\t0x7ADD\n0xE3EE\t0x7AE1\n0xE3EF\t0x7AE2\n0xE3F0\t0x7AE6\n0xE3F1\t0x7AED\n0xE3F2\t0x7AF0\n0xE3F3\t0x7B02\n0xE3F4\t0x7B0F\n0xE3F5\t0x7B0A\n0xE3F6\t0x7B06\n0xE3F7\t0x7B33\n0xE3F8\t0x7B18\n0xE3F9\t0x7B19\n0xE3FA\t0x7B1E\n0xE3FB\t0x7B35\n0xE3FC\t0x7B28\n0xE3FD\t0x7B36\n0xE3FE\t0x7B50\n0xE4A1\t0x7B7A\n0xE4A2\t0x7B04\n0xE4A3\t0x7B4D\n0xE4A4\t0x7B0B\n0xE4A5\t0x7B4C\n0xE4A6\t0x7B45\n0xE4A7\t0x7B75\n0xE4A8\t0x7B65\n0xE4A9\t0x7B74\n0xE4AA\t0x7B67\n0xE4AB\t0x7B70\n0xE4AC\t0x7B71\n0xE4AD\t0x7B6C\n0xE4AE\t0x7B6E\n0xE4AF\t0x7B9D\n0xE4B0\t0x7B98\n0xE4B1\t0x7B9F\n0xE4B2\t0x7B8D\n0xE4B3\t0x7B9C\n0xE4B4\t0x7B9A\n0xE4B5\t0x7B8B\n0xE4B6\t0x7B92\n0xE4B7\t0x7B8F\n0xE4B8\t0x7B5D\n0xE4B9\t0x7B99\n0xE4BA\t0x7BCB\n0xE4BB\t0x7BC1\n0xE4BC\t0x7BCC\n0xE4BD\t0x7BCF\n0xE4BE\t0x7BB4\n0xE4BF\t0x7BC6\n0xE4C0\t0x7BDD\n0xE4C1\t0x7BE9\n0xE4C2\t0x7C11\n0xE4C3\t0x7C14\n0xE4C4\t0x7BE6\n0xE4C5\t0x7BE5\n0xE4C6\t0x7C60\n0xE4C7\t0x7C00\n0xE4C8\t0x7C07\n0xE4C9\t0x7C13\n0xE4CA\t0x7BF3\n0xE4CB\t0x7BF7\n0xE4CC\t0x7C17\n0xE4CD\t0x7C0D\n0xE4CE\t0x7BF6\n0xE4CF\t0x7C23\n0xE4D0\t0x7C27\n0xE4D1\t0x7C2A\n0xE4D2\t0x7C1F\n0xE4D3\t0x7C37\n0xE4D4\t0x7C2B\n0xE4D5\t0x7C3D\n0xE4D6\t0x7C4C\n0xE4D7\t0x7C43\n0xE4D8\t0x7C54\n0xE4D9\t0x7C4F\n0xE4DA\t0x7C40\n0xE4DB\t0x7C50\n0xE4DC\t0x7C58\n0xE4DD\t0x7C5F\n0xE4DE\t0x7C64\n0xE4DF\t0x7C56\n0xE4E0\t0x7C65\n0xE4E1\t0x7C6C\n0xE4E2\t0x7C75\n0xE4E3\t0x7C83\n0xE4E4\t0x7C90\n0xE4E5\t0x7CA4\n0xE4E6\t0x7CAD\n0xE4E7\t0x7CA2\n0xE4E8\t0x7CAB\n0xE4E9\t0x7CA1\n0xE4EA\t0x7CA8\n0xE4EB\t0x7CB3\n0xE4EC\t0x7CB2\n0xE4ED\t0x7CB1\n0xE4EE\t0x7CAE\n0xE4EF\t0x7CB9\n0xE4F0\t0x7CBD\n0xE4F1\t0x7CC0\n0xE4F2\t0x7CC5\n0xE4F3\t0x7CC2\n0xE4F4\t0x7CD8\n0xE4F5\t0x7CD2\n0xE4F6\t0x7CDC\n0xE4F7\t0x7CE2\n0xE4F8\t0x9B3B\n0xE4F9\t0x7CEF\n0xE4FA\t0x7CF2\n0xE4FB\t0x7CF4\n0xE4FC\t0x7CF6\n0xE4FD\t0x7CFA\n0xE4FE\t0x7D06\n0xE5A1\t0x7D02\n0xE5A2\t0x7D1C\n0xE5A3\t0x7D15\n0xE5A4\t0x7D0A\n0xE5A5\t0x7D45\n0xE5A6\t0x7D4B\n0xE5A7\t0x7D2E\n0xE5A8\t0x7D32\n0xE5A9\t0x7D3F\n0xE5AA\t0x7D35\n0xE5AB\t0x7D46\n0xE5AC\t0x7D73\n0xE5AD\t0x7D56\n0xE5AE\t0x7D4E\n0xE5AF\t0x7D72\n0xE5B0\t0x7D68\n0xE5B1\t0x7D6E\n0xE5B2\t0x7D4F\n0xE5B3\t0x7D63\n0xE5B4\t0x7D93\n0xE5B5\t0x7D89\n0xE5B6\t0x7D5B\n0xE5B7\t0x7D8F\n0xE5B8\t0x7D7D\n0xE5B9\t0x7D9B\n0xE5BA\t0x7DBA\n0xE5BB\t0x7DAE\n0xE5BC\t0x7DA3\n0xE5BD\t0x7DB5\n0xE5BE\t0x7DC7\n0xE5BF\t0x7DBD\n0xE5C0\t0x7DAB\n0xE5C1\t0x7E3D\n0xE5C2\t0x7DA2\n0xE5C3\t0x7DAF\n0xE5C4\t0x7DDC\n0xE5C5\t0x7DB8\n0xE5C6\t0x7D9F\n0xE5C7\t0x7DB0\n0xE5C8\t0x7DD8\n0xE5C9\t0x7DDD\n0xE5CA\t0x7DE4\n0xE5CB\t0x7DDE\n0xE5CC\t0x7DFB\n0xE5CD\t0x7DF2\n0xE5CE\t0x7DE1\n0xE5CF\t0x7E05\n0xE5D0\t0x7E0A\n0xE5D1\t0x7E23\n0xE5D2\t0x7E21\n0xE5D3\t0x7E12\n0xE5D4\t0x7E31\n0xE5D5\t0x7E1F\n0xE5D6\t0x7E09\n0xE5D7\t0x7E0B\n0xE5D8\t0x7E22\n0xE5D9\t0x7E46\n0xE5DA\t0x7E66\n0xE5DB\t0x7E3B\n0xE5DC\t0x7E35\n0xE5DD\t0x7E39\n0xE5DE\t0x7E43\n0xE5DF\t0x7E37\n0xE5E0\t0x7E32\n0xE5E1\t0x7E3A\n0xE5E2\t0x7E67\n0xE5E3\t0x7E5D\n0xE5E4\t0x7E56\n0xE5E5\t0x7E5E\n0xE5E6\t0x7E59\n0xE5E7\t0x7E5A\n0xE5E8\t0x7E79\n0xE5E9\t0x7E6A\n0xE5EA\t0x7E69\n0xE5EB\t0x7E7C\n0xE5EC\t0x7E7B\n0xE5ED\t0x7E83\n0xE5EE\t0x7DD5\n0xE5EF\t0x7E7D\n0xE5F0\t0x8FAE\n0xE5F1\t0x7E7F\n0xE5F2\t0x7E88\n0xE5F3\t0x7E89\n0xE5F4\t0x7E8C\n0xE5F5\t0x7E92\n0xE5F6\t0x7E90\n0xE5F7\t0x7E93\n0xE5F8\t0x7E94\n0xE5F9\t0x7E96\n0xE5FA\t0x7E8E\n0xE5FB\t0x7E9B\n0xE5FC\t0x7E9C\n0xE5FD\t0x7F38\n0xE5FE\t0x7F3A\n0xE6A1\t0x7F45\n0xE6A2\t0x7F4C\n0xE6A3\t0x7F4D\n0xE6A4\t0x7F4E\n0xE6A5\t0x7F50\n0xE6A6\t0x7F51\n0xE6A7\t0x7F55\n0xE6A8\t0x7F54\n0xE6A9\t0x7F58\n0xE6AA\t0x7F5F\n0xE6AB\t0x7F60\n0xE6AC\t0x7F68\n0xE6AD\t0x7F69\n0xE6AE\t0x7F67\n0xE6AF\t0x7F78\n0xE6B0\t0x7F82\n0xE6B1\t0x7F86\n0xE6B2\t0x7F83\n0xE6B3\t0x7F88\n0xE6B4\t0x7F87\n0xE6B5\t0x7F8C\n0xE6B6\t0x7F94\n0xE6B7\t0x7F9E\n0xE6B8\t0x7F9D\n0xE6B9\t0x7F9A\n0xE6BA\t0x7FA3\n0xE6BB\t0x7FAF\n0xE6BC\t0x7FB2\n0xE6BD\t0x7FB9\n0xE6BE\t0x7FAE\n0xE6BF\t0x7FB6\n0xE6C0\t0x7FB8\n0xE6C1\t0x8B71\n0xE6C2\t0x7FC5\n0xE6C3\t0x7FC6\n0xE6C4\t0x7FCA\n0xE6C5\t0x7FD5\n0xE6C6\t0x7FD4\n0xE6C7\t0x7FE1\n0xE6C8\t0x7FE6\n0xE6C9\t0x7FE9\n0xE6CA\t0x7FF3\n0xE6CB\t0x7FF9\n0xE6CC\t0x98DC\n0xE6CD\t0x8006\n0xE6CE\t0x8004\n0xE6CF\t0x800B\n0xE6D0\t0x8012\n0xE6D1\t0x8018\n0xE6D2\t0x8019\n0xE6D3\t0x801C\n0xE6D4\t0x8021\n0xE6D5\t0x8028\n0xE6D6\t0x803F\n0xE6D7\t0x803B\n0xE6D8\t0x804A\n0xE6D9\t0x8046\n0xE6DA\t0x8052\n0xE6DB\t0x8058\n0xE6DC\t0x805A\n0xE6DD\t0x805F\n0xE6DE\t0x8062\n0xE6DF\t0x8068\n0xE6E0\t0x8073\n0xE6E1\t0x8072\n0xE6E2\t0x8070\n0xE6E3\t0x8076\n0xE6E4\t0x8079\n0xE6E5\t0x807D\n0xE6E6\t0x807F\n0xE6E7\t0x8084\n0xE6E8\t0x8086\n0xE6E9\t0x8085\n0xE6EA\t0x809B\n0xE6EB\t0x8093\n0xE6EC\t0x809A\n0xE6ED\t0x80AD\n0xE6EE\t0x5190\n0xE6EF\t0x80AC\n0xE6F0\t0x80DB\n0xE6F1\t0x80E5\n0xE6F2\t0x80D9\n0xE6F3\t0x80DD\n0xE6F4\t0x80C4\n0xE6F5\t0x80DA\n0xE6F6\t0x80D6\n0xE6F7\t0x8109\n0xE6F8\t0x80EF\n0xE6F9\t0x80F1\n0xE6FA\t0x811B\n0xE6FB\t0x8129\n0xE6FC\t0x8123\n0xE6FD\t0x812F\n0xE6FE\t0x814B\n0xE7A1\t0x968B\n0xE7A2\t0x8146\n0xE7A3\t0x813E\n0xE7A4\t0x8153\n0xE7A5\t0x8151\n0xE7A6\t0x80FC\n0xE7A7\t0x8171\n0xE7A8\t0x816E\n0xE7A9\t0x8165\n0xE7AA\t0x8166\n0xE7AB\t0x8174\n0xE7AC\t0x8183\n0xE7AD\t0x8188\n0xE7AE\t0x818A\n0xE7AF\t0x8180\n0xE7B0\t0x8182\n0xE7B1\t0x81A0\n0xE7B2\t0x8195\n0xE7B3\t0x81A4\n0xE7B4\t0x81A3\n0xE7B5\t0x815F\n0xE7B6\t0x8193\n0xE7B7\t0x81A9\n0xE7B8\t0x81B0\n0xE7B9\t0x81B5\n0xE7BA\t0x81BE\n0xE7BB\t0x81B8\n0xE7BC\t0x81BD\n0xE7BD\t0x81C0\n0xE7BE\t0x81C2\n0xE7BF\t0x81BA\n0xE7C0\t0x81C9\n0xE7C1\t0x81CD\n0xE7C2\t0x81D1\n0xE7C3\t0x81D9\n0xE7C4\t0x81D8\n0xE7C5\t0x81C8\n0xE7C6\t0x81DA\n0xE7C7\t0x81DF\n0xE7C8\t0x81E0\n0xE7C9\t0x81E7\n0xE7CA\t0x81FA\n0xE7CB\t0x81FB\n0xE7CC\t0x81FE\n0xE7CD\t0x8201\n0xE7CE\t0x8202\n0xE7CF\t0x8205\n0xE7D0\t0x8207\n0xE7D1\t0x820A\n0xE7D2\t0x820D\n0xE7D3\t0x8210\n0xE7D4\t0x8216\n0xE7D5\t0x8229\n0xE7D6\t0x822B\n0xE7D7\t0x8238\n0xE7D8\t0x8233\n0xE7D9\t0x8240\n0xE7DA\t0x8259\n0xE7DB\t0x8258\n0xE7DC\t0x825D\n0xE7DD\t0x825A\n0xE7DE\t0x825F\n0xE7DF\t0x8264\n0xE7E0\t0x8262\n0xE7E1\t0x8268\n0xE7E2\t0x826A\n0xE7E3\t0x826B\n0xE7E4\t0x822E\n0xE7E5\t0x8271\n0xE7E6\t0x8277\n0xE7E7\t0x8278\n0xE7E8\t0x827E\n0xE7E9\t0x828D\n0xE7EA\t0x8292\n0xE7EB\t0x82AB\n0xE7EC\t0x829F\n0xE7ED\t0x82BB\n0xE7EE\t0x82AC\n0xE7EF\t0x82E1\n0xE7F0\t0x82E3\n0xE7F1\t0x82DF\n0xE7F2\t0x82D2\n0xE7F3\t0x82F4\n0xE7F4\t0x82F3\n0xE7F5\t0x82FA\n0xE7F6\t0x8393\n0xE7F7\t0x8303\n0xE7F8\t0x82FB\n0xE7F9\t0x82F9\n0xE7FA\t0x82DE\n0xE7FB\t0x8306\n0xE7FC\t0x82DC\n0xE7FD\t0x8309\n0xE7FE\t0x82D9\n0xE8A1\t0x8335\n0xE8A2\t0x8334\n0xE8A3\t0x8316\n0xE8A4\t0x8332\n0xE8A5\t0x8331\n0xE8A6\t0x8340\n0xE8A7\t0x8339\n0xE8A8\t0x8350\n0xE8A9\t0x8345\n0xE8AA\t0x832F\n0xE8AB\t0x832B\n0xE8AC\t0x8317\n0xE8AD\t0x8318\n0xE8AE\t0x8385\n0xE8AF\t0x839A\n0xE8B0\t0x83AA\n0xE8B1\t0x839F\n0xE8B2\t0x83A2\n0xE8B3\t0x8396\n0xE8B4\t0x8323\n0xE8B5\t0x838E\n0xE8B6\t0x8387\n0xE8B7\t0x838A\n0xE8B8\t0x837C\n0xE8B9\t0x83B5\n0xE8BA\t0x8373\n0xE8BB\t0x8375\n0xE8BC\t0x83A0\n0xE8BD\t0x8389\n0xE8BE\t0x83A8\n0xE8BF\t0x83F4\n0xE8C0\t0x8413\n0xE8C1\t0x83EB\n0xE8C2\t0x83CE\n0xE8C3\t0x83FD\n0xE8C4\t0x8403\n0xE8C5\t0x83D8\n0xE8C6\t0x840B\n0xE8C7\t0x83C1\n0xE8C8\t0x83F7\n0xE8C9\t0x8407\n0xE8CA\t0x83E0\n0xE8CB\t0x83F2\n0xE8CC\t0x840D\n0xE8CD\t0x8422\n0xE8CE\t0x8420\n0xE8CF\t0x83BD\n0xE8D0\t0x8438\n0xE8D1\t0x8506\n0xE8D2\t0x83FB\n0xE8D3\t0x846D\n0xE8D4\t0x842A\n0xE8D5\t0x843C\n0xE8D6\t0x855A\n0xE8D7\t0x8484\n0xE8D8\t0x8477\n0xE8D9\t0x846B\n0xE8DA\t0x84AD\n0xE8DB\t0x846E\n0xE8DC\t0x8482\n0xE8DD\t0x8469\n0xE8DE\t0x8446\n0xE8DF\t0x842C\n0xE8E0\t0x846F\n0xE8E1\t0x8479\n0xE8E2\t0x8435\n0xE8E3\t0x84CA\n0xE8E4\t0x8462\n0xE8E5\t0x84B9\n0xE8E6\t0x84BF\n0xE8E7\t0x849F\n0xE8E8\t0x84D9\n0xE8E9\t0x84CD\n0xE8EA\t0x84BB\n0xE8EB\t0x84DA\n0xE8EC\t0x84D0\n0xE8ED\t0x84C1\n0xE8EE\t0x84C6\n0xE8EF\t0x84D6\n0xE8F0\t0x84A1\n0xE8F1\t0x8521\n0xE8F2\t0x84FF\n0xE8F3\t0x84F4\n0xE8F4\t0x8517\n0xE8F5\t0x8518\n0xE8F6\t0x852C\n0xE8F7\t0x851F\n0xE8F8\t0x8515\n0xE8F9\t0x8514\n0xE8FA\t0x84FC\n0xE8FB\t0x8540\n0xE8FC\t0x8563\n0xE8FD\t0x8558\n0xE8FE\t0x8548\n0xE9A1\t0x8541\n0xE9A2\t0x8602\n0xE9A3\t0x854B\n0xE9A4\t0x8555\n0xE9A5\t0x8580\n0xE9A6\t0x85A4\n0xE9A7\t0x8588\n0xE9A8\t0x8591\n0xE9A9\t0x858A\n0xE9AA\t0x85A8\n0xE9AB\t0x856D\n0xE9AC\t0x8594\n0xE9AD\t0x859B\n0xE9AE\t0x85EA\n0xE9AF\t0x8587\n0xE9B0\t0x859C\n0xE9B1\t0x8577\n0xE9B2\t0x857E\n0xE9B3\t0x8590\n0xE9B4\t0x85C9\n0xE9B5\t0x85BA\n0xE9B6\t0x85CF\n0xE9B7\t0x85B9\n0xE9B8\t0x85D0\n0xE9B9\t0x85D5\n0xE9BA\t0x85DD\n0xE9BB\t0x85E5\n0xE9BC\t0x85DC\n0xE9BD\t0x85F9\n0xE9BE\t0x860A\n0xE9BF\t0x8613\n0xE9C0\t0x860B\n0xE9C1\t0x85FE\n0xE9C2\t0x85FA\n0xE9C3\t0x8606\n0xE9C4\t0x8622\n0xE9C5\t0x861A\n0xE9C6\t0x8630\n0xE9C7\t0x863F\n0xE9C8\t0x864D\n0xE9C9\t0x4E55\n0xE9CA\t0x8654\n0xE9CB\t0x865F\n0xE9CC\t0x8667\n0xE9CD\t0x8671\n0xE9CE\t0x8693\n0xE9CF\t0x86A3\n0xE9D0\t0x86A9\n0xE9D1\t0x86AA\n0xE9D2\t0x868B\n0xE9D3\t0x868C\n0xE9D4\t0x86B6\n0xE9D5\t0x86AF\n0xE9D6\t0x86C4\n0xE9D7\t0x86C6\n0xE9D8\t0x86B0\n0xE9D9\t0x86C9\n0xE9DA\t0x8823\n0xE9DB\t0x86AB\n0xE9DC\t0x86D4\n0xE9DD\t0x86DE\n0xE9DE\t0x86E9\n0xE9DF\t0x86EC\n0xE9E0\t0x86DF\n0xE9E1\t0x86DB\n0xE9E2\t0x86EF\n0xE9E3\t0x8712\n0xE9E4\t0x8706\n0xE9E5\t0x8708\n0xE9E6\t0x8700\n0xE9E7\t0x8703\n0xE9E8\t0x86FB\n0xE9E9\t0x8711\n0xE9EA\t0x8709\n0xE9EB\t0x870D\n0xE9EC\t0x86F9\n0xE9ED\t0x870A\n0xE9EE\t0x8734\n0xE9EF\t0x873F\n0xE9F0\t0x8737\n0xE9F1\t0x873B\n0xE9F2\t0x8725\n0xE9F3\t0x8729\n0xE9F4\t0x871A\n0xE9F5\t0x8760\n0xE9F6\t0x875F\n0xE9F7\t0x8778\n0xE9F8\t0x874C\n0xE9F9\t0x874E\n0xE9FA\t0x8774\n0xE9FB\t0x8757\n0xE9FC\t0x8768\n0xE9FD\t0x876E\n0xE9FE\t0x8759\n0xEAA1\t0x8753\n0xEAA2\t0x8763\n0xEAA3\t0x876A\n0xEAA4\t0x8805\n0xEAA5\t0x87A2\n0xEAA6\t0x879F\n0xEAA7\t0x8782\n0xEAA8\t0x87AF\n0xEAA9\t0x87CB\n0xEAAA\t0x87BD\n0xEAAB\t0x87C0\n0xEAAC\t0x87D0\n0xEAAD\t0x96D6\n0xEAAE\t0x87AB\n0xEAAF\t0x87C4\n0xEAB0\t0x87B3\n0xEAB1\t0x87C7\n0xEAB2\t0x87C6\n0xEAB3\t0x87BB\n0xEAB4\t0x87EF\n0xEAB5\t0x87F2\n0xEAB6\t0x87E0\n0xEAB7\t0x880F\n0xEAB8\t0x880D\n0xEAB9\t0x87FE\n0xEABA\t0x87F6\n0xEABB\t0x87F7\n0xEABC\t0x880E\n0xEABD\t0x87D2\n0xEABE\t0x8811\n0xEABF\t0x8816\n0xEAC0\t0x8815\n0xEAC1\t0x8822\n0xEAC2\t0x8821\n0xEAC3\t0x8831\n0xEAC4\t0x8836\n0xEAC5\t0x8839\n0xEAC6\t0x8827\n0xEAC7\t0x883B\n0xEAC8\t0x8844\n0xEAC9\t0x8842\n0xEACA\t0x8852\n0xEACB\t0x8859\n0xEACC\t0x885E\n0xEACD\t0x8862\n0xEACE\t0x886B\n0xEACF\t0x8881\n0xEAD0\t0x887E\n0xEAD1\t0x889E\n0xEAD2\t0x8875\n0xEAD3\t0x887D\n0xEAD4\t0x88B5\n0xEAD5\t0x8872\n0xEAD6\t0x8882\n0xEAD7\t0x8897\n0xEAD8\t0x8892\n0xEAD9\t0x88AE\n0xEADA\t0x8899\n0xEADB\t0x88A2\n0xEADC\t0x888D\n0xEADD\t0x88A4\n0xEADE\t0x88B0\n0xEADF\t0x88BF\n0xEAE0\t0x88B1\n0xEAE1\t0x88C3\n0xEAE2\t0x88C4\n0xEAE3\t0x88D4\n0xEAE4\t0x88D8\n0xEAE5\t0x88D9\n0xEAE6\t0x88DD\n0xEAE7\t0x88F9\n0xEAE8\t0x8902\n0xEAE9\t0x88FC\n0xEAEA\t0x88F4\n0xEAEB\t0x88E8\n0xEAEC\t0x88F2\n0xEAED\t0x8904\n0xEAEE\t0x890C\n0xEAEF\t0x890A\n0xEAF0\t0x8913\n0xEAF1\t0x8943\n0xEAF2\t0x891E\n0xEAF3\t0x8925\n0xEAF4\t0x892A\n0xEAF5\t0x892B\n0xEAF6\t0x8941\n0xEAF7\t0x8944\n0xEAF8\t0x893B\n0xEAF9\t0x8936\n0xEAFA\t0x8938\n0xEAFB\t0x894C\n0xEAFC\t0x891D\n0xEAFD\t0x8960\n0xEAFE\t0x895E\n0xEBA1\t0x8966\n0xEBA2\t0x8964\n0xEBA3\t0x896D\n0xEBA4\t0x896A\n0xEBA5\t0x896F\n0xEBA6\t0x8974\n0xEBA7\t0x8977\n0xEBA8\t0x897E\n0xEBA9\t0x8983\n0xEBAA\t0x8988\n0xEBAB\t0x898A\n0xEBAC\t0x8993\n0xEBAD\t0x8998\n0xEBAE\t0x89A1\n0xEBAF\t0x89A9\n0xEBB0\t0x89A6\n0xEBB1\t0x89AC\n0xEBB2\t0x89AF\n0xEBB3\t0x89B2\n0xEBB4\t0x89BA\n0xEBB5\t0x89BD\n0xEBB6\t0x89BF\n0xEBB7\t0x89C0\n0xEBB8\t0x89DA\n0xEBB9\t0x89DC\n0xEBBA\t0x89DD\n0xEBBB\t0x89E7\n0xEBBC\t0x89F4\n0xEBBD\t0x89F8\n0xEBBE\t0x8A03\n0xEBBF\t0x8A16\n0xEBC0\t0x8A10\n0xEBC1\t0x8A0C\n0xEBC2\t0x8A1B\n0xEBC3\t0x8A1D\n0xEBC4\t0x8A25\n0xEBC5\t0x8A36\n0xEBC6\t0x8A41\n0xEBC7\t0x8A5B\n0xEBC8\t0x8A52\n0xEBC9\t0x8A46\n0xEBCA\t0x8A48\n0xEBCB\t0x8A7C\n0xEBCC\t0x8A6D\n0xEBCD\t0x8A6C\n0xEBCE\t0x8A62\n0xEBCF\t0x8A85\n0xEBD0\t0x8A82\n0xEBD1\t0x8A84\n0xEBD2\t0x8AA8\n0xEBD3\t0x8AA1\n0xEBD4\t0x8A91\n0xEBD5\t0x8AA5\n0xEBD6\t0x8AA6\n0xEBD7\t0x8A9A\n0xEBD8\t0x8AA3\n0xEBD9\t0x8AC4\n0xEBDA\t0x8ACD\n0xEBDB\t0x8AC2\n0xEBDC\t0x8ADA\n0xEBDD\t0x8AEB\n0xEBDE\t0x8AF3\n0xEBDF\t0x8AE7\n0xEBE0\t0x8AE4\n0xEBE1\t0x8AF1\n0xEBE2\t0x8B14\n0xEBE3\t0x8AE0\n0xEBE4\t0x8AE2\n0xEBE5\t0x8AF7\n0xEBE6\t0x8ADE\n0xEBE7\t0x8ADB\n0xEBE8\t0x8B0C\n0xEBE9\t0x8B07\n0xEBEA\t0x8B1A\n0xEBEB\t0x8AE1\n0xEBEC\t0x8B16\n0xEBED\t0x8B10\n0xEBEE\t0x8B17\n0xEBEF\t0x8B20\n0xEBF0\t0x8B33\n0xEBF1\t0x97AB\n0xEBF2\t0x8B26\n0xEBF3\t0x8B2B\n0xEBF4\t0x8B3E\n0xEBF5\t0x8B28\n0xEBF6\t0x8B41\n0xEBF7\t0x8B4C\n0xEBF8\t0x8B4F\n0xEBF9\t0x8B4E\n0xEBFA\t0x8B49\n0xEBFB\t0x8B56\n0xEBFC\t0x8B5B\n0xEBFD\t0x8B5A\n0xEBFE\t0x8B6B\n0xECA1\t0x8B5F\n0xECA2\t0x8B6C\n0xECA3\t0x8B6F\n0xECA4\t0x8B74\n0xECA5\t0x8B7D\n0xECA6\t0x8B80\n0xECA7\t0x8B8C\n0xECA8\t0x8B8E\n0xECA9\t0x8B92\n0xECAA\t0x8B93\n0xECAB\t0x8B96\n0xECAC\t0x8B99\n0xECAD\t0x8B9A\n0xECAE\t0x8C3A\n0xECAF\t0x8C41\n0xECB0\t0x8C3F\n0xECB1\t0x8C48\n0xECB2\t0x8C4C\n0xECB3\t0x8C4E\n0xECB4\t0x8C50\n0xECB5\t0x8C55\n0xECB6\t0x8C62\n0xECB7\t0x8C6C\n0xECB8\t0x8C78\n0xECB9\t0x8C7A\n0xECBA\t0x8C82\n0xECBB\t0x8C89\n0xECBC\t0x8C85\n0xECBD\t0x8C8A\n0xECBE\t0x8C8D\n0xECBF\t0x8C8E\n0xECC0\t0x8C94\n0xECC1\t0x8C7C\n0xECC2\t0x8C98\n0xECC3\t0x621D\n0xECC4\t0x8CAD\n0xECC5\t0x8CAA\n0xECC6\t0x8CBD\n0xECC7\t0x8CB2\n0xECC8\t0x8CB3\n0xECC9\t0x8CAE\n0xECCA\t0x8CB6\n0xECCB\t0x8CC8\n0xECCC\t0x8CC1\n0xECCD\t0x8CE4\n0xECCE\t0x8CE3\n0xECCF\t0x8CDA\n0xECD0\t0x8CFD\n0xECD1\t0x8CFA\n0xECD2\t0x8CFB\n0xECD3\t0x8D04\n0xECD4\t0x8D05\n0xECD5\t0x8D0A\n0xECD6\t0x8D07\n0xECD7\t0x8D0F\n0xECD8\t0x8D0D\n0xECD9\t0x8D10\n0xECDA\t0x9F4E\n0xECDB\t0x8D13\n0xECDC\t0x8CCD\n0xECDD\t0x8D14\n0xECDE\t0x8D16\n0xECDF\t0x8D67\n0xECE0\t0x8D6D\n0xECE1\t0x8D71\n0xECE2\t0x8D73\n0xECE3\t0x8D81\n0xECE4\t0x8D99\n0xECE5\t0x8DC2\n0xECE6\t0x8DBE\n0xECE7\t0x8DBA\n0xECE8\t0x8DCF\n0xECE9\t0x8DDA\n0xECEA\t0x8DD6\n0xECEB\t0x8DCC\n0xECEC\t0x8DDB\n0xECED\t0x8DCB\n0xECEE\t0x8DEA\n0xECEF\t0x8DEB\n0xECF0\t0x8DDF\n0xECF1\t0x8DE3\n0xECF2\t0x8DFC\n0xECF3\t0x8E08\n0xECF4\t0x8E09\n0xECF5\t0x8DFF\n0xECF6\t0x8E1D\n0xECF7\t0x8E1E\n0xECF8\t0x8E10\n0xECF9\t0x8E1F\n0xECFA\t0x8E42\n0xECFB\t0x8E35\n0xECFC\t0x8E30\n0xECFD\t0x8E34\n0xECFE\t0x8E4A\n0xEDA1\t0x8E47\n0xEDA2\t0x8E49\n0xEDA3\t0x8E4C\n0xEDA4\t0x8E50\n0xEDA5\t0x8E48\n0xEDA6\t0x8E59\n0xEDA7\t0x8E64\n0xEDA8\t0x8E60\n0xEDA9\t0x8E2A\n0xEDAA\t0x8E63\n0xEDAB\t0x8E55\n0xEDAC\t0x8E76\n0xEDAD\t0x8E72\n0xEDAE\t0x8E7C\n0xEDAF\t0x8E81\n0xEDB0\t0x8E87\n0xEDB1\t0x8E85\n0xEDB2\t0x8E84\n0xEDB3\t0x8E8B\n0xEDB4\t0x8E8A\n0xEDB5\t0x8E93\n0xEDB6\t0x8E91\n0xEDB7\t0x8E94\n0xEDB8\t0x8E99\n0xEDB9\t0x8EAA\n0xEDBA\t0x8EA1\n0xEDBB\t0x8EAC\n0xEDBC\t0x8EB0\n0xEDBD\t0x8EC6\n0xEDBE\t0x8EB1\n0xEDBF\t0x8EBE\n0xEDC0\t0x8EC5\n0xEDC1\t0x8EC8\n0xEDC2\t0x8ECB\n0xEDC3\t0x8EDB\n0xEDC4\t0x8EE3\n0xEDC5\t0x8EFC\n0xEDC6\t0x8EFB\n0xEDC7\t0x8EEB\n0xEDC8\t0x8EFE\n0xEDC9\t0x8F0A\n0xEDCA\t0x8F05\n0xEDCB\t0x8F15\n0xEDCC\t0x8F12\n0xEDCD\t0x8F19\n0xEDCE\t0x8F13\n0xEDCF\t0x8F1C\n0xEDD0\t0x8F1F\n0xEDD1\t0x8F1B\n0xEDD2\t0x8F0C\n0xEDD3\t0x8F26\n0xEDD4\t0x8F33\n0xEDD5\t0x8F3B\n0xEDD6\t0x8F39\n0xEDD7\t0x8F45\n0xEDD8\t0x8F42\n0xEDD9\t0x8F3E\n0xEDDA\t0x8F4C\n0xEDDB\t0x8F49\n0xEDDC\t0x8F46\n0xEDDD\t0x8F4E\n0xEDDE\t0x8F57\n0xEDDF\t0x8F5C\n0xEDE0\t0x8F62\n0xEDE1\t0x8F63\n0xEDE2\t0x8F64\n0xEDE3\t0x8F9C\n0xEDE4\t0x8F9F\n0xEDE5\t0x8FA3\n0xEDE6\t0x8FAD\n0xEDE7\t0x8FAF\n0xEDE8\t0x8FB7\n0xEDE9\t0x8FDA\n0xEDEA\t0x8FE5\n0xEDEB\t0x8FE2\n0xEDEC\t0x8FEA\n0xEDED\t0x8FEF\n0xEDEE\t0x9087\n0xEDEF\t0x8FF4\n0xEDF0\t0x9005\n0xEDF1\t0x8FF9\n0xEDF2\t0x8FFA\n0xEDF3\t0x9011\n0xEDF4\t0x9015\n0xEDF5\t0x9021\n0xEDF6\t0x900D\n0xEDF7\t0x901E\n0xEDF8\t0x9016\n0xEDF9\t0x900B\n0xEDFA\t0x9027\n0xEDFB\t0x9036\n0xEDFC\t0x9035\n0xEDFD\t0x9039\n0xEDFE\t0x8FF8\n0xEEA1\t0x904F\n0xEEA2\t0x9050\n0xEEA3\t0x9051\n0xEEA4\t0x9052\n0xEEA5\t0x900E\n0xEEA6\t0x9049\n0xEEA7\t0x903E\n0xEEA8\t0x9056\n0xEEA9\t0x9058\n0xEEAA\t0x905E\n0xEEAB\t0x9068\n0xEEAC\t0x906F\n0xEEAD\t0x9076\n0xEEAE\t0x96A8\n0xEEAF\t0x9072\n0xEEB0\t0x9082\n0xEEB1\t0x907D\n0xEEB2\t0x9081\n0xEEB3\t0x9080\n0xEEB4\t0x908A\n0xEEB5\t0x9089\n0xEEB6\t0x908F\n0xEEB7\t0x90A8\n0xEEB8\t0x90AF\n0xEEB9\t0x90B1\n0xEEBA\t0x90B5\n0xEEBB\t0x90E2\n0xEEBC\t0x90E4\n0xEEBD\t0x6248\n0xEEBE\t0x90DB\n0xEEBF\t0x9102\n0xEEC0\t0x9112\n0xEEC1\t0x9119\n0xEEC2\t0x9132\n0xEEC3\t0x9130\n0xEEC4\t0x914A\n0xEEC5\t0x9156\n0xEEC6\t0x9158\n0xEEC7\t0x9163\n0xEEC8\t0x9165\n0xEEC9\t0x9169\n0xEECA\t0x9173\n0xEECB\t0x9172\n0xEECC\t0x918B\n0xEECD\t0x9189\n0xEECE\t0x9182\n0xEECF\t0x91A2\n0xEED0\t0x91AB\n0xEED1\t0x91AF\n0xEED2\t0x91AA\n0xEED3\t0x91B5\n0xEED4\t0x91B4\n0xEED5\t0x91BA\n0xEED6\t0x91C0\n0xEED7\t0x91C1\n0xEED8\t0x91C9\n0xEED9\t0x91CB\n0xEEDA\t0x91D0\n0xEEDB\t0x91D6\n0xEEDC\t0x91DF\n0xEEDD\t0x91E1\n0xEEDE\t0x91DB\n0xEEDF\t0x91FC\n0xEEE0\t0x91F5\n0xEEE1\t0x91F6\n0xEEE2\t0x921E\n0xEEE3\t0x91FF\n0xEEE4\t0x9214\n0xEEE5\t0x922C\n0xEEE6\t0x9215\n0xEEE7\t0x9211\n0xEEE8\t0x925E\n0xEEE9\t0x9257\n0xEEEA\t0x9245\n0xEEEB\t0x9249\n0xEEEC\t0x9264\n0xEEED\t0x9248\n0xEEEE\t0x9295\n0xEEEF\t0x923F\n0xEEF0\t0x924B\n0xEEF1\t0x9250\n0xEEF2\t0x929C\n0xEEF3\t0x9296\n0xEEF4\t0x9293\n0xEEF5\t0x929B\n0xEEF6\t0x925A\n0xEEF7\t0x92CF\n0xEEF8\t0x92B9\n0xEEF9\t0x92B7\n0xEEFA\t0x92E9\n0xEEFB\t0x930F\n0xEEFC\t0x92FA\n0xEEFD\t0x9344\n0xEEFE\t0x932E\n0xEFA1\t0x9319\n0xEFA2\t0x9322\n0xEFA3\t0x931A\n0xEFA4\t0x9323\n0xEFA5\t0x933A\n0xEFA6\t0x9335\n0xEFA7\t0x933B\n0xEFA8\t0x935C\n0xEFA9\t0x9360\n0xEFAA\t0x937C\n0xEFAB\t0x936E\n0xEFAC\t0x9356\n0xEFAD\t0x93B0\n0xEFAE\t0x93AC\n0xEFAF\t0x93AD\n0xEFB0\t0x9394\n0xEFB1\t0x93B9\n0xEFB2\t0x93D6\n0xEFB3\t0x93D7\n0xEFB4\t0x93E8\n0xEFB5\t0x93E5\n0xEFB6\t0x93D8\n0xEFB7\t0x93C3\n0xEFB8\t0x93DD\n0xEFB9\t0x93D0\n0xEFBA\t0x93C8\n0xEFBB\t0x93E4\n0xEFBC\t0x941A\n0xEFBD\t0x9414\n0xEFBE\t0x9413\n0xEFBF\t0x9403\n0xEFC0\t0x9407\n0xEFC1\t0x9410\n0xEFC2\t0x9436\n0xEFC3\t0x942B\n0xEFC4\t0x9435\n0xEFC5\t0x9421\n0xEFC6\t0x943A\n0xEFC7\t0x9441\n0xEFC8\t0x9452\n0xEFC9\t0x9444\n0xEFCA\t0x945B\n0xEFCB\t0x9460\n0xEFCC\t0x9462\n0xEFCD\t0x945E\n0xEFCE\t0x946A\n0xEFCF\t0x9229\n0xEFD0\t0x9470\n0xEFD1\t0x9475\n0xEFD2\t0x9477\n0xEFD3\t0x947D\n0xEFD4\t0x945A\n0xEFD5\t0x947C\n0xEFD6\t0x947E\n0xEFD7\t0x9481\n0xEFD8\t0x947F\n0xEFD9\t0x9582\n0xEFDA\t0x9587\n0xEFDB\t0x958A\n0xEFDC\t0x9594\n0xEFDD\t0x9596\n0xEFDE\t0x9598\n0xEFDF\t0x9599\n0xEFE0\t0x95A0\n0xEFE1\t0x95A8\n0xEFE2\t0x95A7\n0xEFE3\t0x95AD\n0xEFE4\t0x95BC\n0xEFE5\t0x95BB\n0xEFE6\t0x95B9\n0xEFE7\t0x95BE\n0xEFE8\t0x95CA\n0xEFE9\t0x6FF6\n0xEFEA\t0x95C3\n0xEFEB\t0x95CD\n0xEFEC\t0x95CC\n0xEFED\t0x95D5\n0xEFEE\t0x95D4\n0xEFEF\t0x95D6\n0xEFF0\t0x95DC\n0xEFF1\t0x95E1\n0xEFF2\t0x95E5\n0xEFF3\t0x95E2\n0xEFF4\t0x9621\n0xEFF5\t0x9628\n0xEFF6\t0x962E\n0xEFF7\t0x962F\n0xEFF8\t0x9642\n0xEFF9\t0x964C\n0xEFFA\t0x964F\n0xEFFB\t0x964B\n0xEFFC\t0x9677\n0xEFFD\t0x965C\n0xEFFE\t0x965E\n0xF0A1\t0x965D\n0xF0A2\t0x965F\n0xF0A3\t0x9666\n0xF0A4\t0x9672\n0xF0A5\t0x966C\n0xF0A6\t0x968D\n0xF0A7\t0x9698\n0xF0A8\t0x9695\n0xF0A9\t0x9697\n0xF0AA\t0x96AA\n0xF0AB\t0x96A7\n0xF0AC\t0x96B1\n0xF0AD\t0x96B2\n0xF0AE\t0x96B0\n0xF0AF\t0x96B4\n0xF0B0\t0x96B6\n0xF0B1\t0x96B8\n0xF0B2\t0x96B9\n0xF0B3\t0x96CE\n0xF0B4\t0x96CB\n0xF0B5\t0x96C9\n0xF0B6\t0x96CD\n0xF0B7\t0x894D\n0xF0B8\t0x96DC\n0xF0B9\t0x970D\n0xF0BA\t0x96D5\n0xF0BB\t0x96F9\n0xF0BC\t0x9704\n0xF0BD\t0x9706\n0xF0BE\t0x9708\n0xF0BF\t0x9713\n0xF0C0\t0x970E\n0xF0C1\t0x9711\n0xF0C2\t0x970F\n0xF0C3\t0x9716\n0xF0C4\t0x9719\n0xF0C5\t0x9724\n0xF0C6\t0x972A\n0xF0C7\t0x9730\n0xF0C8\t0x9739\n0xF0C9\t0x973D\n0xF0CA\t0x973E\n0xF0CB\t0x9744\n0xF0CC\t0x9746\n0xF0CD\t0x9748\n0xF0CE\t0x9742\n0xF0CF\t0x9749\n0xF0D0\t0x975C\n0xF0D1\t0x9760\n0xF0D2\t0x9764\n0xF0D3\t0x9766\n0xF0D4\t0x9768\n0xF0D5\t0x52D2\n0xF0D6\t0x976B\n0xF0D7\t0x9771\n0xF0D8\t0x9779\n0xF0D9\t0x9785\n0xF0DA\t0x977C\n0xF0DB\t0x9781\n0xF0DC\t0x977A\n0xF0DD\t0x9786\n0xF0DE\t0x978B\n0xF0DF\t0x978F\n0xF0E0\t0x9790\n0xF0E1\t0x979C\n0xF0E2\t0x97A8\n0xF0E3\t0x97A6\n0xF0E4\t0x97A3\n0xF0E5\t0x97B3\n0xF0E6\t0x97B4\n0xF0E7\t0x97C3\n0xF0E8\t0x97C6\n0xF0E9\t0x97C8\n0xF0EA\t0x97CB\n0xF0EB\t0x97DC\n0xF0EC\t0x97ED\n0xF0ED\t0x9F4F\n0xF0EE\t0x97F2\n0xF0EF\t0x7ADF\n0xF0F0\t0x97F6\n0xF0F1\t0x97F5\n0xF0F2\t0x980F\n0xF0F3\t0x980C\n0xF0F4\t0x9838\n0xF0F5\t0x9824\n0xF0F6\t0x9821\n0xF0F7\t0x9837\n0xF0F8\t0x983D\n0xF0F9\t0x9846\n0xF0FA\t0x984F\n0xF0FB\t0x984B\n0xF0FC\t0x986B\n0xF0FD\t0x986F\n0xF0FE\t0x9870\n0xF1A1\t0x9871\n0xF1A2\t0x9874\n0xF1A3\t0x9873\n0xF1A4\t0x98AA\n0xF1A5\t0x98AF\n0xF1A6\t0x98B1\n0xF1A7\t0x98B6\n0xF1A8\t0x98C4\n0xF1A9\t0x98C3\n0xF1AA\t0x98C6\n0xF1AB\t0x98E9\n0xF1AC\t0x98EB\n0xF1AD\t0x9903\n0xF1AE\t0x9909\n0xF1AF\t0x9912\n0xF1B0\t0x9914\n0xF1B1\t0x9918\n0xF1B2\t0x9921\n0xF1B3\t0x991D\n0xF1B4\t0x991E\n0xF1B5\t0x9924\n0xF1B6\t0x9920\n0xF1B7\t0x992C\n0xF1B8\t0x992E\n0xF1B9\t0x993D\n0xF1BA\t0x993E\n0xF1BB\t0x9942\n0xF1BC\t0x9949\n0xF1BD\t0x9945\n0xF1BE\t0x9950\n0xF1BF\t0x994B\n0xF1C0\t0x9951\n0xF1C1\t0x9952\n0xF1C2\t0x994C\n0xF1C3\t0x9955\n0xF1C4\t0x9997\n0xF1C5\t0x9998\n0xF1C6\t0x99A5\n0xF1C7\t0x99AD\n0xF1C8\t0x99AE\n0xF1C9\t0x99BC\n0xF1CA\t0x99DF\n0xF1CB\t0x99DB\n0xF1CC\t0x99DD\n0xF1CD\t0x99D8\n0xF1CE\t0x99D1\n0xF1CF\t0x99ED\n0xF1D0\t0x99EE\n0xF1D1\t0x99F1\n0xF1D2\t0x99F2\n0xF1D3\t0x99FB\n0xF1D4\t0x99F8\n0xF1D5\t0x9A01\n0xF1D6\t0x9A0F\n0xF1D7\t0x9A05\n0xF1D8\t0x99E2\n0xF1D9\t0x9A19\n0xF1DA\t0x9A2B\n0xF1DB\t0x9A37\n0xF1DC\t0x9A45\n0xF1DD\t0x9A42\n0xF1DE\t0x9A40\n0xF1DF\t0x9A43\n0xF1E0\t0x9A3E\n0xF1E1\t0x9A55\n0xF1E2\t0x9A4D\n0xF1E3\t0x9A5B\n0xF1E4\t0x9A57\n0xF1E5\t0x9A5F\n0xF1E6\t0x9A62\n0xF1E7\t0x9A65\n0xF1E8\t0x9A64\n0xF1E9\t0x9A69\n0xF1EA\t0x9A6B\n0xF1EB\t0x9A6A\n0xF1EC\t0x9AAD\n0xF1ED\t0x9AB0\n0xF1EE\t0x9ABC\n0xF1EF\t0x9AC0\n0xF1F0\t0x9ACF\n0xF1F1\t0x9AD1\n0xF1F2\t0x9AD3\n0xF1F3\t0x9AD4\n0xF1F4\t0x9ADE\n0xF1F5\t0x9ADF\n0xF1F6\t0x9AE2\n0xF1F7\t0x9AE3\n0xF1F8\t0x9AE6\n0xF1F9\t0x9AEF\n0xF1FA\t0x9AEB\n0xF1FB\t0x9AEE\n0xF1FC\t0x9AF4\n0xF1FD\t0x9AF1\n0xF1FE\t0x9AF7\n0xF2A1\t0x9AFB\n0xF2A2\t0x9B06\n0xF2A3\t0x9B18\n0xF2A4\t0x9B1A\n0xF2A5\t0x9B1F\n0xF2A6\t0x9B22\n0xF2A7\t0x9B23\n0xF2A8\t0x9B25\n0xF2A9\t0x9B27\n0xF2AA\t0x9B28\n0xF2AB\t0x9B29\n0xF2AC\t0x9B2A\n0xF2AD\t0x9B2E\n0xF2AE\t0x9B2F\n0xF2AF\t0x9B32\n0xF2B0\t0x9B44\n0xF2B1\t0x9B43\n0xF2B2\t0x9B4F\n0xF2B3\t0x9B4D\n0xF2B4\t0x9B4E\n0xF2B5\t0x9B51\n0xF2B6\t0x9B58\n0xF2B7\t0x9B74\n0xF2B8\t0x9B93\n0xF2B9\t0x9B83\n0xF2BA\t0x9B91\n0xF2BB\t0x9B96\n0xF2BC\t0x9B97\n0xF2BD\t0x9B9F\n0xF2BE\t0x9BA0\n0xF2BF\t0x9BA8\n0xF2C0\t0x9BB4\n0xF2C1\t0x9BC0\n0xF2C2\t0x9BCA\n0xF2C3\t0x9BB9\n0xF2C4\t0x9BC6\n0xF2C5\t0x9BCF\n0xF2C6\t0x9BD1\n0xF2C7\t0x9BD2\n0xF2C8\t0x9BE3\n0xF2C9\t0x9BE2\n0xF2CA\t0x9BE4\n0xF2CB\t0x9BD4\n0xF2CC\t0x9BE1\n0xF2CD\t0x9C3A\n0xF2CE\t0x9BF2\n0xF2CF\t0x9BF1\n0xF2D0\t0x9BF0\n0xF2D1\t0x9C15\n0xF2D2\t0x9C14\n0xF2D3\t0x9C09\n0xF2D4\t0x9C13\n0xF2D5\t0x9C0C\n0xF2D6\t0x9C06\n0xF2D7\t0x9C08\n0xF2D8\t0x9C12\n0xF2D9\t0x9C0A\n0xF2DA\t0x9C04\n0xF2DB\t0x9C2E\n0xF2DC\t0x9C1B\n0xF2DD\t0x9C25\n0xF2DE\t0x9C24\n0xF2DF\t0x9C21\n0xF2E0\t0x9C30\n0xF2E1\t0x9C47\n0xF2E2\t0x9C32\n0xF2E3\t0x9C46\n0xF2E4\t0x9C3E\n0xF2E5\t0x9C5A\n0xF2E6\t0x9C60\n0xF2E7\t0x9C67\n0xF2E8\t0x9C76\n0xF2E9\t0x9C78\n0xF2EA\t0x9CE7\n0xF2EB\t0x9CEC\n0xF2EC\t0x9CF0\n0xF2ED\t0x9D09\n0xF2EE\t0x9D08\n0xF2EF\t0x9CEB\n0xF2F0\t0x9D03\n0xF2F1\t0x9D06\n0xF2F2\t0x9D2A\n0xF2F3\t0x9D26\n0xF2F4\t0x9DAF\n0xF2F5\t0x9D23\n0xF2F6\t0x9D1F\n0xF2F7\t0x9D44\n0xF2F8\t0x9D15\n0xF2F9\t0x9D12\n0xF2FA\t0x9D41\n0xF2FB\t0x9D3F\n0xF2FC\t0x9D3E\n0xF2FD\t0x9D46\n0xF2FE\t0x9D48\n0xF3A1\t0x9D5D\n0xF3A2\t0x9D5E\n0xF3A3\t0x9D64\n0xF3A4\t0x9D51\n0xF3A5\t0x9D50\n0xF3A6\t0x9D59\n0xF3A7\t0x9D72\n0xF3A8\t0x9D89\n0xF3A9\t0x9D87\n0xF3AA\t0x9DAB\n0xF3AB\t0x9D6F\n0xF3AC\t0x9D7A\n0xF3AD\t0x9D9A\n0xF3AE\t0x9DA4\n0xF3AF\t0x9DA9\n0xF3B0\t0x9DB2\n0xF3B1\t0x9DC4\n0xF3B2\t0x9DC1\n0xF3B3\t0x9DBB\n0xF3B4\t0x9DB8\n0xF3B5\t0x9DBA\n0xF3B6\t0x9DC6\n0xF3B7\t0x9DCF\n0xF3B8\t0x9DC2\n0xF3B9\t0x9DD9\n0xF3BA\t0x9DD3\n0xF3BB\t0x9DF8\n0xF3BC\t0x9DE6\n0xF3BD\t0x9DED\n0xF3BE\t0x9DEF\n0xF3BF\t0x9DFD\n0xF3C0\t0x9E1A\n0xF3C1\t0x9E1B\n0xF3C2\t0x9E1E\n0xF3C3\t0x9E75\n0xF3C4\t0x9E79\n0xF3C5\t0x9E7D\n0xF3C6\t0x9E81\n0xF3C7\t0x9E88\n0xF3C8\t0x9E8B\n0xF3C9\t0x9E8C\n0xF3CA\t0x9E92\n0xF3CB\t0x9E95\n0xF3CC\t0x9E91\n0xF3CD\t0x9E9D\n0xF3CE\t0x9EA5\n0xF3CF\t0x9EA9\n0xF3D0\t0x9EB8\n0xF3D1\t0x9EAA\n0xF3D2\t0x9EAD\n0xF3D3\t0x9761\n0xF3D4\t0x9ECC\n0xF3D5\t0x9ECE\n0xF3D6\t0x9ECF\n0xF3D7\t0x9ED0\n0xF3D8\t0x9ED4\n0xF3D9\t0x9EDC\n0xF3DA\t0x9EDE\n0xF3DB\t0x9EDD\n0xF3DC\t0x9EE0\n0xF3DD\t0x9EE5\n0xF3DE\t0x9EE8\n0xF3DF\t0x9EEF\n0xF3E0\t0x9EF4\n0xF3E1\t0x9EF6\n0xF3E2\t0x9EF7\n0xF3E3\t0x9EF9\n0xF3E4\t0x9EFB\n0xF3E5\t0x9EFC\n0xF3E6\t0x9EFD\n0xF3E7\t0x9F07\n0xF3E8\t0x9F08\n0xF3E9\t0x76B7\n0xF3EA\t0x9F15\n0xF3EB\t0x9F21\n0xF3EC\t0x9F2C\n0xF3ED\t0x9F3E\n0xF3EE\t0x9F4A\n0xF3EF\t0x9F52\n0xF3F0\t0x9F54\n0xF3F1\t0x9F63\n0xF3F2\t0x9F5F\n0xF3F3\t0x9F60\n0xF3F4\t0x9F61\n0xF3F5\t0x9F66\n0xF3F6\t0x9F67\n0xF3F7\t0x9F6C\n0xF3F8\t0x9F6A\n0xF3F9\t0x9F77\n0xF3FA\t0x9F72\n0xF3FB\t0x9F76\n0xF3FC\t0x9F95\n0xF3FD\t0x9F9C\n0xF3FE\t0x9FA0\n0xF4A1\t0x582F\n0xF4A2\t0x69C7\n0xF4A3\t0x9059\n0xF4A4\t0x7464\n0xF4A5\t0x51DC\n0xF4A6\t0x7199\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/EUC-CN.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0xA1A1\t0x3000\n0xA1A2\t0x3001\n0xA1A3\t0x3002\n0xA1A4\t0x30FB\n0xA1A5\t0x02C9\n0xA1A6\t0x02C7\n0xA1A7\t0x00A8\n0xA1A8\t0x3003\n0xA1A9\t0x3005\n0xA1AA\t0x2015\n0xA1AB\t0xFF5E\n0xA1AC\t0x2016\n0xA1AD\t0x2026\n0xA1AE\t0x2018\n0xA1AF\t0x2019\n0xA1B0\t0x201C\n0xA1B1\t0x201D\n0xA1B2\t0x3014\n0xA1B3\t0x3015\n0xA1B4\t0x3008\n0xA1B5\t0x3009\n0xA1B6\t0x300A\n0xA1B7\t0x300B\n0xA1B8\t0x300C\n0xA1B9\t0x300D\n0xA1BA\t0x300E\n0xA1BB\t0x300F\n0xA1BC\t0x3016\n0xA1BD\t0x3017\n0xA1BE\t0x3010\n0xA1BF\t0x3011\n0xA1C0\t0x00B1\n0xA1C1\t0x00D7\n0xA1C2\t0x00F7\n0xA1C3\t0x2236\n0xA1C4\t0x2227\n0xA1C5\t0x2228\n0xA1C6\t0x2211\n0xA1C7\t0x220F\n0xA1C8\t0x222A\n0xA1C9\t0x2229\n0xA1CA\t0x2208\n0xA1CB\t0x2237\n0xA1CC\t0x221A\n0xA1CD\t0x22A5\n0xA1CE\t0x2225\n0xA1CF\t0x2220\n0xA1D0\t0x2312\n0xA1D1\t0x2299\n0xA1D2\t0x222B\n0xA1D3\t0x222E\n0xA1D4\t0x2261\n0xA1D5\t0x224C\n0xA1D6\t0x2248\n0xA1D7\t0x223D\n0xA1D8\t0x221D\n0xA1D9\t0x2260\n0xA1DA\t0x226E\n0xA1DB\t0x226F\n0xA1DC\t0x2264\n0xA1DD\t0x2265\n0xA1DE\t0x221E\n0xA1DF\t0x2235\n0xA1E0\t0x2234\n0xA1E1\t0x2642\n0xA1E2\t0x2640\n0xA1E3\t0x00B0\n0xA1E4\t0x2032\n0xA1E5\t0x2033\n0xA1E6\t0x2103\n0xA1E7\t0xFF04\n0xA1E8\t0x00A4\n0xA1E9\t0xFFE0\n0xA1EA\t0xFFE1\n0xA1EB\t0x2030\n0xA1EC\t0x00A7\n0xA1ED\t0x2116\n0xA1EE\t0x2606\n0xA1EF\t0x2605\n0xA1F0\t0x25CB\n0xA1F1\t0x25CF\n0xA1F2\t0x25CE\n0xA1F3\t0x25C7\n0xA1F4\t0x25C6\n0xA1F5\t0x25A1\n0xA1F6\t0x25A0\n0xA1F7\t0x25B3\n0xA1F8\t0x25B2\n0xA1F9\t0x203B\n0xA1FA\t0x2192\n0xA1FB\t0x2190\n0xA1FC\t0x2191\n0xA1FD\t0x2193\n0xA1FE\t0x3013\n0xA2B1\t0x2488\n0xA2B2\t0x2489\n0xA2B3\t0x248A\n0xA2B4\t0x248B\n0xA2B5\t0x248C\n0xA2B6\t0x248D\n0xA2B7\t0x248E\n0xA2B8\t0x248F\n0xA2B9\t0x2490\n0xA2BA\t0x2491\n0xA2BB\t0x2492\n0xA2BC\t0x2493\n0xA2BD\t0x2494\n0xA2BE\t0x2495\n0xA2BF\t0x2496\n0xA2C0\t0x2497\n0xA2C1\t0x2498\n0xA2C2\t0x2499\n0xA2C3\t0x249A\n0xA2C4\t0x249B\n0xA2C5\t0x2474\n0xA2C6\t0x2475\n0xA2C7\t0x2476\n0xA2C8\t0x2477\n0xA2C9\t0x2478\n0xA2CA\t0x2479\n0xA2CB\t0x247A\n0xA2CC\t0x247B\n0xA2CD\t0x247C\n0xA2CE\t0x247D\n0xA2CF\t0x247E\n0xA2D0\t0x247F\n0xA2D1\t0x2480\n0xA2D2\t0x2481\n0xA2D3\t0x2482\n0xA2D4\t0x2483\n0xA2D5\t0x2484\n0xA2D6\t0x2485\n0xA2D7\t0x2486\n0xA2D8\t0x2487\n0xA2D9\t0x2460\n0xA2DA\t0x2461\n0xA2DB\t0x2462\n0xA2DC\t0x2463\n0xA2DD\t0x2464\n0xA2DE\t0x2465\n0xA2DF\t0x2466\n0xA2E0\t0x2467\n0xA2E1\t0x2468\n0xA2E2\t0x2469\n0xA2E5\t0x3220\n0xA2E6\t0x3221\n0xA2E7\t0x3222\n0xA2E8\t0x3223\n0xA2E9\t0x3224\n0xA2EA\t0x3225\n0xA2EB\t0x3226\n0xA2EC\t0x3227\n0xA2ED\t0x3228\n0xA2EE\t0x3229\n0xA2F1\t0x2160\n0xA2F2\t0x2161\n0xA2F3\t0x2162\n0xA2F4\t0x2163\n0xA2F5\t0x2164\n0xA2F6\t0x2165\n0xA2F7\t0x2166\n0xA2F8\t0x2167\n0xA2F9\t0x2168\n0xA2FA\t0x2169\n0xA2FB\t0x216A\n0xA2FC\t0x216B\n0xA3A1\t0xFF01\n0xA3A2\t0xFF02\n0xA3A3\t0xFF03\n0xA3A4\t0xFFE5\n0xA3A5\t0xFF05\n0xA3A6\t0xFF06\n0xA3A7\t0xFF07\n0xA3A8\t0xFF08\n0xA3A9\t0xFF09\n0xA3AA\t0xFF0A\n0xA3AB\t0xFF0B\n0xA3AC\t0xFF0C\n0xA3AD\t0xFF0D\n0xA3AE\t0xFF0E\n0xA3AF\t0xFF0F\n0xA3B0\t0xFF10\n0xA3B1\t0xFF11\n0xA3B2\t0xFF12\n0xA3B3\t0xFF13\n0xA3B4\t0xFF14\n0xA3B5\t0xFF15\n0xA3B6\t0xFF16\n0xA3B7\t0xFF17\n0xA3B8\t0xFF18\n0xA3B9\t0xFF19\n0xA3BA\t0xFF1A\n0xA3BB\t0xFF1B\n0xA3BC\t0xFF1C\n0xA3BD\t0xFF1D\n0xA3BE\t0xFF1E\n0xA3BF\t0xFF1F\n0xA3C0\t0xFF20\n0xA3C1\t0xFF21\n0xA3C2\t0xFF22\n0xA3C3\t0xFF23\n0xA3C4\t0xFF24\n0xA3C5\t0xFF25\n0xA3C6\t0xFF26\n0xA3C7\t0xFF27\n0xA3C8\t0xFF28\n0xA3C9\t0xFF29\n0xA3CA\t0xFF2A\n0xA3CB\t0xFF2B\n0xA3CC\t0xFF2C\n0xA3CD\t0xFF2D\n0xA3CE\t0xFF2E\n0xA3CF\t0xFF2F\n0xA3D0\t0xFF30\n0xA3D1\t0xFF31\n0xA3D2\t0xFF32\n0xA3D3\t0xFF33\n0xA3D4\t0xFF34\n0xA3D5\t0xFF35\n0xA3D6\t0xFF36\n0xA3D7\t0xFF37\n0xA3D8\t0xFF38\n0xA3D9\t0xFF39\n0xA3DA\t0xFF3A\n0xA3DB\t0xFF3B\n0xA3DC\t0xFF3C\n0xA3DD\t0xFF3D\n0xA3DE\t0xFF3E\n0xA3DF\t0xFF3F\n0xA3E0\t0xFF40\n0xA3E1\t0xFF41\n0xA3E2\t0xFF42\n0xA3E3\t0xFF43\n0xA3E4\t0xFF44\n0xA3E5\t0xFF45\n0xA3E6\t0xFF46\n0xA3E7\t0xFF47\n0xA3E8\t0xFF48\n0xA3E9\t0xFF49\n0xA3EA\t0xFF4A\n0xA3EB\t0xFF4B\n0xA3EC\t0xFF4C\n0xA3ED\t0xFF4D\n0xA3EE\t0xFF4E\n0xA3EF\t0xFF4F\n0xA3F0\t0xFF50\n0xA3F1\t0xFF51\n0xA3F2\t0xFF52\n0xA3F3\t0xFF53\n0xA3F4\t0xFF54\n0xA3F5\t0xFF55\n0xA3F6\t0xFF56\n0xA3F7\t0xFF57\n0xA3F8\t0xFF58\n0xA3F9\t0xFF59\n0xA3FA\t0xFF5A\n0xA3FB\t0xFF5B\n0xA3FC\t0xFF5C\n0xA3FD\t0xFF5D\n0xA3FE\t0xFFE3\n0xA4A1\t0x3041\n0xA4A2\t0x3042\n0xA4A3\t0x3043\n0xA4A4\t0x3044\n0xA4A5\t0x3045\n0xA4A6\t0x3046\n0xA4A7\t0x3047\n0xA4A8\t0x3048\n0xA4A9\t0x3049\n0xA4AA\t0x304A\n0xA4AB\t0x304B\n0xA4AC\t0x304C\n0xA4AD\t0x304D\n0xA4AE\t0x304E\n0xA4AF\t0x304F\n0xA4B0\t0x3050\n0xA4B1\t0x3051\n0xA4B2\t0x3052\n0xA4B3\t0x3053\n0xA4B4\t0x3054\n0xA4B5\t0x3055\n0xA4B6\t0x3056\n0xA4B7\t0x3057\n0xA4B8\t0x3058\n0xA4B9\t0x3059\n0xA4BA\t0x305A\n0xA4BB\t0x305B\n0xA4BC\t0x305C\n0xA4BD\t0x305D\n0xA4BE\t0x305E\n0xA4BF\t0x305F\n0xA4C0\t0x3060\n0xA4C1\t0x3061\n0xA4C2\t0x3062\n0xA4C3\t0x3063\n0xA4C4\t0x3064\n0xA4C5\t0x3065\n0xA4C6\t0x3066\n0xA4C7\t0x3067\n0xA4C8\t0x3068\n0xA4C9\t0x3069\n0xA4CA\t0x306A\n0xA4CB\t0x306B\n0xA4CC\t0x306C\n0xA4CD\t0x306D\n0xA4CE\t0x306E\n0xA4CF\t0x306F\n0xA4D0\t0x3070\n0xA4D1\t0x3071\n0xA4D2\t0x3072\n0xA4D3\t0x3073\n0xA4D4\t0x3074\n0xA4D5\t0x3075\n0xA4D6\t0x3076\n0xA4D7\t0x3077\n0xA4D8\t0x3078\n0xA4D9\t0x3079\n0xA4DA\t0x307A\n0xA4DB\t0x307B\n0xA4DC\t0x307C\n0xA4DD\t0x307D\n0xA4DE\t0x307E\n0xA4DF\t0x307F\n0xA4E0\t0x3080\n0xA4E1\t0x3081\n0xA4E2\t0x3082\n0xA4E3\t0x3083\n0xA4E4\t0x3084\n0xA4E5\t0x3085\n0xA4E6\t0x3086\n0xA4E7\t0x3087\n0xA4E8\t0x3088\n0xA4E9\t0x3089\n0xA4EA\t0x308A\n0xA4EB\t0x308B\n0xA4EC\t0x308C\n0xA4ED\t0x308D\n0xA4EE\t0x308E\n0xA4EF\t0x308F\n0xA4F0\t0x3090\n0xA4F1\t0x3091\n0xA4F2\t0x3092\n0xA4F3\t0x3093\n0xA5A1\t0x30A1\n0xA5A2\t0x30A2\n0xA5A3\t0x30A3\n0xA5A4\t0x30A4\n0xA5A5\t0x30A5\n0xA5A6\t0x30A6\n0xA5A7\t0x30A7\n0xA5A8\t0x30A8\n0xA5A9\t0x30A9\n0xA5AA\t0x30AA\n0xA5AB\t0x30AB\n0xA5AC\t0x30AC\n0xA5AD\t0x30AD\n0xA5AE\t0x30AE\n0xA5AF\t0x30AF\n0xA5B0\t0x30B0\n0xA5B1\t0x30B1\n0xA5B2\t0x30B2\n0xA5B3\t0x30B3\n0xA5B4\t0x30B4\n0xA5B5\t0x30B5\n0xA5B6\t0x30B6\n0xA5B7\t0x30B7\n0xA5B8\t0x30B8\n0xA5B9\t0x30B9\n0xA5BA\t0x30BA\n0xA5BB\t0x30BB\n0xA5BC\t0x30BC\n0xA5BD\t0x30BD\n0xA5BE\t0x30BE\n0xA5BF\t0x30BF\n0xA5C0\t0x30C0\n0xA5C1\t0x30C1\n0xA5C2\t0x30C2\n0xA5C3\t0x30C3\n0xA5C4\t0x30C4\n0xA5C5\t0x30C5\n0xA5C6\t0x30C6\n0xA5C7\t0x30C7\n0xA5C8\t0x30C8\n0xA5C9\t0x30C9\n0xA5CA\t0x30CA\n0xA5CB\t0x30CB\n0xA5CC\t0x30CC\n0xA5CD\t0x30CD\n0xA5CE\t0x30CE\n0xA5CF\t0x30CF\n0xA5D0\t0x30D0\n0xA5D1\t0x30D1\n0xA5D2\t0x30D2\n0xA5D3\t0x30D3\n0xA5D4\t0x30D4\n0xA5D5\t0x30D5\n0xA5D6\t0x30D6\n0xA5D7\t0x30D7\n0xA5D8\t0x30D8\n0xA5D9\t0x30D9\n0xA5DA\t0x30DA\n0xA5DB\t0x30DB\n0xA5DC\t0x30DC\n0xA5DD\t0x30DD\n0xA5DE\t0x30DE\n0xA5DF\t0x30DF\n0xA5E0\t0x30E0\n0xA5E1\t0x30E1\n0xA5E2\t0x30E2\n0xA5E3\t0x30E3\n0xA5E4\t0x30E4\n0xA5E5\t0x30E5\n0xA5E6\t0x30E6\n0xA5E7\t0x30E7\n0xA5E8\t0x30E8\n0xA5E9\t0x30E9\n0xA5EA\t0x30EA\n0xA5EB\t0x30EB\n0xA5EC\t0x30EC\n0xA5ED\t0x30ED\n0xA5EE\t0x30EE\n0xA5EF\t0x30EF\n0xA5F0\t0x30F0\n0xA5F1\t0x30F1\n0xA5F2\t0x30F2\n0xA5F3\t0x30F3\n0xA5F4\t0x30F4\n0xA5F5\t0x30F5\n0xA5F6\t0x30F6\n0xA6A1\t0x0391\n0xA6A2\t0x0392\n0xA6A3\t0x0393\n0xA6A4\t0x0394\n0xA6A5\t0x0395\n0xA6A6\t0x0396\n0xA6A7\t0x0397\n0xA6A8\t0x0398\n0xA6A9\t0x0399\n0xA6AA\t0x039A\n0xA6AB\t0x039B\n0xA6AC\t0x039C\n0xA6AD\t0x039D\n0xA6AE\t0x039E\n0xA6AF\t0x039F\n0xA6B0\t0x03A0\n0xA6B1\t0x03A1\n0xA6B2\t0x03A3\n0xA6B3\t0x03A4\n0xA6B4\t0x03A5\n0xA6B5\t0x03A6\n0xA6B6\t0x03A7\n0xA6B7\t0x03A8\n0xA6B8\t0x03A9\n0xA6C1\t0x03B1\n0xA6C2\t0x03B2\n0xA6C3\t0x03B3\n0xA6C4\t0x03B4\n0xA6C5\t0x03B5\n0xA6C6\t0x03B6\n0xA6C7\t0x03B7\n0xA6C8\t0x03B8\n0xA6C9\t0x03B9\n0xA6CA\t0x03BA\n0xA6CB\t0x03BB\n0xA6CC\t0x03BC\n0xA6CD\t0x03BD\n0xA6CE\t0x03BE\n0xA6CF\t0x03BF\n0xA6D0\t0x03C0\n0xA6D1\t0x03C1\n0xA6D2\t0x03C3\n0xA6D3\t0x03C4\n0xA6D4\t0x03C5\n0xA6D5\t0x03C6\n0xA6D6\t0x03C7\n0xA6D7\t0x03C8\n0xA6D8\t0x03C9\n0xA7A1\t0x0410\n0xA7A2\t0x0411\n0xA7A3\t0x0412\n0xA7A4\t0x0413\n0xA7A5\t0x0414\n0xA7A6\t0x0415\n0xA7A7\t0x0401\n0xA7A8\t0x0416\n0xA7A9\t0x0417\n0xA7AA\t0x0418\n0xA7AB\t0x0419\n0xA7AC\t0x041A\n0xA7AD\t0x041B\n0xA7AE\t0x041C\n0xA7AF\t0x041D\n0xA7B0\t0x041E\n0xA7B1\t0x041F\n0xA7B2\t0x0420\n0xA7B3\t0x0421\n0xA7B4\t0x0422\n0xA7B5\t0x0423\n0xA7B6\t0x0424\n0xA7B7\t0x0425\n0xA7B8\t0x0426\n0xA7B9\t0x0427\n0xA7BA\t0x0428\n0xA7BB\t0x0429\n0xA7BC\t0x042A\n0xA7BD\t0x042B\n0xA7BE\t0x042C\n0xA7BF\t0x042D\n0xA7C0\t0x042E\n0xA7C1\t0x042F\n0xA7D1\t0x0430\n0xA7D2\t0x0431\n0xA7D3\t0x0432\n0xA7D4\t0x0433\n0xA7D5\t0x0434\n0xA7D6\t0x0435\n0xA7D7\t0x0451\n0xA7D8\t0x0436\n0xA7D9\t0x0437\n0xA7DA\t0x0438\n0xA7DB\t0x0439\n0xA7DC\t0x043A\n0xA7DD\t0x043B\n0xA7DE\t0x043C\n0xA7DF\t0x043D\n0xA7E0\t0x043E\n0xA7E1\t0x043F\n0xA7E2\t0x0440\n0xA7E3\t0x0441\n0xA7E4\t0x0442\n0xA7E5\t0x0443\n0xA7E6\t0x0444\n0xA7E7\t0x0445\n0xA7E8\t0x0446\n0xA7E9\t0x0447\n0xA7EA\t0x0448\n0xA7EB\t0x0449\n0xA7EC\t0x044A\n0xA7ED\t0x044B\n0xA7EE\t0x044C\n0xA7EF\t0x044D\n0xA7F0\t0x044E\n0xA7F1\t0x044F\n0xA8A1\t0x0101\n0xA8A2\t0x00E1\n0xA8A3\t0x01CE\n0xA8A4\t0x00E0\n0xA8A5\t0x0113\n0xA8A6\t0x00E9\n0xA8A7\t0x011B\n0xA8A8\t0x00E8\n0xA8A9\t0x012B\n0xA8AA\t0x00ED\n0xA8AB\t0x01D0\n0xA8AC\t0x00EC\n0xA8AD\t0x014D\n0xA8AE\t0x00F3\n0xA8AF\t0x01D2\n0xA8B0\t0x00F2\n0xA8B1\t0x016B\n0xA8B2\t0x00FA\n0xA8B3\t0x01D4\n0xA8B4\t0x00F9\n0xA8B5\t0x01D6\n0xA8B6\t0x01D8\n0xA8B7\t0x01DA\n0xA8B8\t0x01DC\n0xA8B9\t0x00FC\n0xA8BA\t0x00EA\n0xA8C5\t0x3105\n0xA8C6\t0x3106\n0xA8C7\t0x3107\n0xA8C8\t0x3108\n0xA8C9\t0x3109\n0xA8CA\t0x310A\n0xA8CB\t0x310B\n0xA8CC\t0x310C\n0xA8CD\t0x310D\n0xA8CE\t0x310E\n0xA8CF\t0x310F\n0xA8D0\t0x3110\n0xA8D1\t0x3111\n0xA8D2\t0x3112\n0xA8D3\t0x3113\n0xA8D4\t0x3114\n0xA8D5\t0x3115\n0xA8D6\t0x3116\n0xA8D7\t0x3117\n0xA8D8\t0x3118\n0xA8D9\t0x3119\n0xA8DA\t0x311A\n0xA8DB\t0x311B\n0xA8DC\t0x311C\n0xA8DD\t0x311D\n0xA8DE\t0x311E\n0xA8DF\t0x311F\n0xA8E0\t0x3120\n0xA8E1\t0x3121\n0xA8E2\t0x3122\n0xA8E3\t0x3123\n0xA8E4\t0x3124\n0xA8E5\t0x3125\n0xA8E6\t0x3126\n0xA8E7\t0x3127\n0xA8E8\t0x3128\n0xA8E9\t0x3129\n0xA9A4\t0x2500\n0xA9A5\t0x2501\n0xA9A6\t0x2502\n0xA9A7\t0x2503\n0xA9A8\t0x2504\n0xA9A9\t0x2505\n0xA9AA\t0x2506\n0xA9AB\t0x2507\n0xA9AC\t0x2508\n0xA9AD\t0x2509\n0xA9AE\t0x250A\n0xA9AF\t0x250B\n0xA9B0\t0x250C\n0xA9B1\t0x250D\n0xA9B2\t0x250E\n0xA9B3\t0x250F\n0xA9B4\t0x2510\n0xA9B5\t0x2511\n0xA9B6\t0x2512\n0xA9B7\t0x2513\n0xA9B8\t0x2514\n0xA9B9\t0x2515\n0xA9BA\t0x2516\n0xA9BB\t0x2517\n0xA9BC\t0x2518\n0xA9BD\t0x2519\n0xA9BE\t0x251A\n0xA9BF\t0x251B\n0xA9C0\t0x251C\n0xA9C1\t0x251D\n0xA9C2\t0x251E\n0xA9C3\t0x251F\n0xA9C4\t0x2520\n0xA9C5\t0x2521\n0xA9C6\t0x2522\n0xA9C7\t0x2523\n0xA9C8\t0x2524\n0xA9C9\t0x2525\n0xA9CA\t0x2526\n0xA9CB\t0x2527\n0xA9CC\t0x2528\n0xA9CD\t0x2529\n0xA9CE\t0x252A\n0xA9CF\t0x252B\n0xA9D0\t0x252C\n0xA9D1\t0x252D\n0xA9D2\t0x252E\n0xA9D3\t0x252F\n0xA9D4\t0x2530\n0xA9D5\t0x2531\n0xA9D6\t0x2532\n0xA9D7\t0x2533\n0xA9D8\t0x2534\n0xA9D9\t0x2535\n0xA9DA\t0x2536\n0xA9DB\t0x2537\n0xA9DC\t0x2538\n0xA9DD\t0x2539\n0xA9DE\t0x253A\n0xA9DF\t0x253B\n0xA9E0\t0x253C\n0xA9E1\t0x253D\n0xA9E2\t0x253E\n0xA9E3\t0x253F\n0xA9E4\t0x2540\n0xA9E5\t0x2541\n0xA9E6\t0x2542\n0xA9E7\t0x2543\n0xA9E8\t0x2544\n0xA9E9\t0x2545\n0xA9EA\t0x2546\n0xA9EB\t0x2547\n0xA9EC\t0x2548\n0xA9ED\t0x2549\n0xA9EE\t0x254A\n0xA9EF\t0x254B\n0xB0A1\t0x554A\n0xB0A2\t0x963F\n0xB0A3\t0x57C3\n0xB0A4\t0x6328\n0xB0A5\t0x54CE\n0xB0A6\t0x5509\n0xB0A7\t0x54C0\n0xB0A8\t0x7691\n0xB0A9\t0x764C\n0xB0AA\t0x853C\n0xB0AB\t0x77EE\n0xB0AC\t0x827E\n0xB0AD\t0x788D\n0xB0AE\t0x7231\n0xB0AF\t0x9698\n0xB0B0\t0x978D\n0xB0B1\t0x6C28\n0xB0B2\t0x5B89\n0xB0B3\t0x4FFA\n0xB0B4\t0x6309\n0xB0B5\t0x6697\n0xB0B6\t0x5CB8\n0xB0B7\t0x80FA\n0xB0B8\t0x6848\n0xB0B9\t0x80AE\n0xB0BA\t0x6602\n0xB0BB\t0x76CE\n0xB0BC\t0x51F9\n0xB0BD\t0x6556\n0xB0BE\t0x71AC\n0xB0BF\t0x7FF1\n0xB0C0\t0x8884\n0xB0C1\t0x50B2\n0xB0C2\t0x5965\n0xB0C3\t0x61CA\n0xB0C4\t0x6FB3\n0xB0C5\t0x82AD\n0xB0C6\t0x634C\n0xB0C7\t0x6252\n0xB0C8\t0x53ED\n0xB0C9\t0x5427\n0xB0CA\t0x7B06\n0xB0CB\t0x516B\n0xB0CC\t0x75A4\n0xB0CD\t0x5DF4\n0xB0CE\t0x62D4\n0xB0CF\t0x8DCB\n0xB0D0\t0x9776\n0xB0D1\t0x628A\n0xB0D2\t0x8019\n0xB0D3\t0x575D\n0xB0D4\t0x9738\n0xB0D5\t0x7F62\n0xB0D6\t0x7238\n0xB0D7\t0x767D\n0xB0D8\t0x67CF\n0xB0D9\t0x767E\n0xB0DA\t0x6446\n0xB0DB\t0x4F70\n0xB0DC\t0x8D25\n0xB0DD\t0x62DC\n0xB0DE\t0x7A17\n0xB0DF\t0x6591\n0xB0E0\t0x73ED\n0xB0E1\t0x642C\n0xB0E2\t0x6273\n0xB0E3\t0x822C\n0xB0E4\t0x9881\n0xB0E5\t0x677F\n0xB0E6\t0x7248\n0xB0E7\t0x626E\n0xB0E8\t0x62CC\n0xB0E9\t0x4F34\n0xB0EA\t0x74E3\n0xB0EB\t0x534A\n0xB0EC\t0x529E\n0xB0ED\t0x7ECA\n0xB0EE\t0x90A6\n0xB0EF\t0x5E2E\n0xB0F0\t0x6886\n0xB0F1\t0x699C\n0xB0F2\t0x8180\n0xB0F3\t0x7ED1\n0xB0F4\t0x68D2\n0xB0F5\t0x78C5\n0xB0F6\t0x868C\n0xB0F7\t0x9551\n0xB0F8\t0x508D\n0xB0F9\t0x8C24\n0xB0FA\t0x82DE\n0xB0FB\t0x80DE\n0xB0FC\t0x5305\n0xB0FD\t0x8912\n0xB0FE\t0x5265\n0xB1A1\t0x8584\n0xB1A2\t0x96F9\n0xB1A3\t0x4FDD\n0xB1A4\t0x5821\n0xB1A5\t0x9971\n0xB1A6\t0x5B9D\n0xB1A7\t0x62B1\n0xB1A8\t0x62A5\n0xB1A9\t0x66B4\n0xB1AA\t0x8C79\n0xB1AB\t0x9C8D\n0xB1AC\t0x7206\n0xB1AD\t0x676F\n0xB1AE\t0x7891\n0xB1AF\t0x60B2\n0xB1B0\t0x5351\n0xB1B1\t0x5317\n0xB1B2\t0x8F88\n0xB1B3\t0x80CC\n0xB1B4\t0x8D1D\n0xB1B5\t0x94A1\n0xB1B6\t0x500D\n0xB1B7\t0x72C8\n0xB1B8\t0x5907\n0xB1B9\t0x60EB\n0xB1BA\t0x7119\n0xB1BB\t0x88AB\n0xB1BC\t0x5954\n0xB1BD\t0x82EF\n0xB1BE\t0x672C\n0xB1BF\t0x7B28\n0xB1C0\t0x5D29\n0xB1C1\t0x7EF7\n0xB1C2\t0x752D\n0xB1C3\t0x6CF5\n0xB1C4\t0x8E66\n0xB1C5\t0x8FF8\n0xB1C6\t0x903C\n0xB1C7\t0x9F3B\n0xB1C8\t0x6BD4\n0xB1C9\t0x9119\n0xB1CA\t0x7B14\n0xB1CB\t0x5F7C\n0xB1CC\t0x78A7\n0xB1CD\t0x84D6\n0xB1CE\t0x853D\n0xB1CF\t0x6BD5\n0xB1D0\t0x6BD9\n0xB1D1\t0x6BD6\n0xB1D2\t0x5E01\n0xB1D3\t0x5E87\n0xB1D4\t0x75F9\n0xB1D5\t0x95ED\n0xB1D6\t0x655D\n0xB1D7\t0x5F0A\n0xB1D8\t0x5FC5\n0xB1D9\t0x8F9F\n0xB1DA\t0x58C1\n0xB1DB\t0x81C2\n0xB1DC\t0x907F\n0xB1DD\t0x965B\n0xB1DE\t0x97AD\n0xB1DF\t0x8FB9\n0xB1E0\t0x7F16\n0xB1E1\t0x8D2C\n0xB1E2\t0x6241\n0xB1E3\t0x4FBF\n0xB1E4\t0x53D8\n0xB1E5\t0x535E\n0xB1E6\t0x8FA8\n0xB1E7\t0x8FA9\n0xB1E8\t0x8FAB\n0xB1E9\t0x904D\n0xB1EA\t0x6807\n0xB1EB\t0x5F6A\n0xB1EC\t0x8198\n0xB1ED\t0x8868\n0xB1EE\t0x9CD6\n0xB1EF\t0x618B\n0xB1F0\t0x522B\n0xB1F1\t0x762A\n0xB1F2\t0x5F6C\n0xB1F3\t0x658C\n0xB1F4\t0x6FD2\n0xB1F5\t0x6EE8\n0xB1F6\t0x5BBE\n0xB1F7\t0x6448\n0xB1F8\t0x5175\n0xB1F9\t0x51B0\n0xB1FA\t0x67C4\n0xB1FB\t0x4E19\n0xB1FC\t0x79C9\n0xB1FD\t0x997C\n0xB1FE\t0x70B3\n0xB2A1\t0x75C5\n0xB2A2\t0x5E76\n0xB2A3\t0x73BB\n0xB2A4\t0x83E0\n0xB2A5\t0x64AD\n0xB2A6\t0x62E8\n0xB2A7\t0x94B5\n0xB2A8\t0x6CE2\n0xB2A9\t0x535A\n0xB2AA\t0x52C3\n0xB2AB\t0x640F\n0xB2AC\t0x94C2\n0xB2AD\t0x7B94\n0xB2AE\t0x4F2F\n0xB2AF\t0x5E1B\n0xB2B0\t0x8236\n0xB2B1\t0x8116\n0xB2B2\t0x818A\n0xB2B3\t0x6E24\n0xB2B4\t0x6CCA\n0xB2B5\t0x9A73\n0xB2B6\t0x6355\n0xB2B7\t0x535C\n0xB2B8\t0x54FA\n0xB2B9\t0x8865\n0xB2BA\t0x57E0\n0xB2BB\t0x4E0D\n0xB2BC\t0x5E03\n0xB2BD\t0x6B65\n0xB2BE\t0x7C3F\n0xB2BF\t0x90E8\n0xB2C0\t0x6016\n0xB2C1\t0x64E6\n0xB2C2\t0x731C\n0xB2C3\t0x88C1\n0xB2C4\t0x6750\n0xB2C5\t0x624D\n0xB2C6\t0x8D22\n0xB2C7\t0x776C\n0xB2C8\t0x8E29\n0xB2C9\t0x91C7\n0xB2CA\t0x5F69\n0xB2CB\t0x83DC\n0xB2CC\t0x8521\n0xB2CD\t0x9910\n0xB2CE\t0x53C2\n0xB2CF\t0x8695\n0xB2D0\t0x6B8B\n0xB2D1\t0x60ED\n0xB2D2\t0x60E8\n0xB2D3\t0x707F\n0xB2D4\t0x82CD\n0xB2D5\t0x8231\n0xB2D6\t0x4ED3\n0xB2D7\t0x6CA7\n0xB2D8\t0x85CF\n0xB2D9\t0x64CD\n0xB2DA\t0x7CD9\n0xB2DB\t0x69FD\n0xB2DC\t0x66F9\n0xB2DD\t0x8349\n0xB2DE\t0x5395\n0xB2DF\t0x7B56\n0xB2E0\t0x4FA7\n0xB2E1\t0x518C\n0xB2E2\t0x6D4B\n0xB2E3\t0x5C42\n0xB2E4\t0x8E6D\n0xB2E5\t0x63D2\n0xB2E6\t0x53C9\n0xB2E7\t0x832C\n0xB2E8\t0x8336\n0xB2E9\t0x67E5\n0xB2EA\t0x78B4\n0xB2EB\t0x643D\n0xB2EC\t0x5BDF\n0xB2ED\t0x5C94\n0xB2EE\t0x5DEE\n0xB2EF\t0x8BE7\n0xB2F0\t0x62C6\n0xB2F1\t0x67F4\n0xB2F2\t0x8C7A\n0xB2F3\t0x6400\n0xB2F4\t0x63BA\n0xB2F5\t0x8749\n0xB2F6\t0x998B\n0xB2F7\t0x8C17\n0xB2F8\t0x7F20\n0xB2F9\t0x94F2\n0xB2FA\t0x4EA7\n0xB2FB\t0x9610\n0xB2FC\t0x98A4\n0xB2FD\t0x660C\n0xB2FE\t0x7316\n0xB3A1\t0x573A\n0xB3A2\t0x5C1D\n0xB3A3\t0x5E38\n0xB3A4\t0x957F\n0xB3A5\t0x507F\n0xB3A6\t0x80A0\n0xB3A7\t0x5382\n0xB3A8\t0x655E\n0xB3A9\t0x7545\n0xB3AA\t0x5531\n0xB3AB\t0x5021\n0xB3AC\t0x8D85\n0xB3AD\t0x6284\n0xB3AE\t0x949E\n0xB3AF\t0x671D\n0xB3B0\t0x5632\n0xB3B1\t0x6F6E\n0xB3B2\t0x5DE2\n0xB3B3\t0x5435\n0xB3B4\t0x7092\n0xB3B5\t0x8F66\n0xB3B6\t0x626F\n0xB3B7\t0x64A4\n0xB3B8\t0x63A3\n0xB3B9\t0x5F7B\n0xB3BA\t0x6F88\n0xB3BB\t0x90F4\n0xB3BC\t0x81E3\n0xB3BD\t0x8FB0\n0xB3BE\t0x5C18\n0xB3BF\t0x6668\n0xB3C0\t0x5FF1\n0xB3C1\t0x6C89\n0xB3C2\t0x9648\n0xB3C3\t0x8D81\n0xB3C4\t0x886C\n0xB3C5\t0x6491\n0xB3C6\t0x79F0\n0xB3C7\t0x57CE\n0xB3C8\t0x6A59\n0xB3C9\t0x6210\n0xB3CA\t0x5448\n0xB3CB\t0x4E58\n0xB3CC\t0x7A0B\n0xB3CD\t0x60E9\n0xB3CE\t0x6F84\n0xB3CF\t0x8BDA\n0xB3D0\t0x627F\n0xB3D1\t0x901E\n0xB3D2\t0x9A8B\n0xB3D3\t0x79E4\n0xB3D4\t0x5403\n0xB3D5\t0x75F4\n0xB3D6\t0x6301\n0xB3D7\t0x5319\n0xB3D8\t0x6C60\n0xB3D9\t0x8FDF\n0xB3DA\t0x5F1B\n0xB3DB\t0x9A70\n0xB3DC\t0x803B\n0xB3DD\t0x9F7F\n0xB3DE\t0x4F88\n0xB3DF\t0x5C3A\n0xB3E0\t0x8D64\n0xB3E1\t0x7FC5\n0xB3E2\t0x65A5\n0xB3E3\t0x70BD\n0xB3E4\t0x5145\n0xB3E5\t0x51B2\n0xB3E6\t0x866B\n0xB3E7\t0x5D07\n0xB3E8\t0x5BA0\n0xB3E9\t0x62BD\n0xB3EA\t0x916C\n0xB3EB\t0x7574\n0xB3EC\t0x8E0C\n0xB3ED\t0x7A20\n0xB3EE\t0x6101\n0xB3EF\t0x7B79\n0xB3F0\t0x4EC7\n0xB3F1\t0x7EF8\n0xB3F2\t0x7785\n0xB3F3\t0x4E11\n0xB3F4\t0x81ED\n0xB3F5\t0x521D\n0xB3F6\t0x51FA\n0xB3F7\t0x6A71\n0xB3F8\t0x53A8\n0xB3F9\t0x8E87\n0xB3FA\t0x9504\n0xB3FB\t0x96CF\n0xB3FC\t0x6EC1\n0xB3FD\t0x9664\n0xB3FE\t0x695A\n0xB4A1\t0x7840\n0xB4A2\t0x50A8\n0xB4A3\t0x77D7\n0xB4A4\t0x6410\n0xB4A5\t0x89E6\n0xB4A6\t0x5904\n0xB4A7\t0x63E3\n0xB4A8\t0x5DDD\n0xB4A9\t0x7A7F\n0xB4AA\t0x693D\n0xB4AB\t0x4F20\n0xB4AC\t0x8239\n0xB4AD\t0x5598\n0xB4AE\t0x4E32\n0xB4AF\t0x75AE\n0xB4B0\t0x7A97\n0xB4B1\t0x5E62\n0xB4B2\t0x5E8A\n0xB4B3\t0x95EF\n0xB4B4\t0x521B\n0xB4B5\t0x5439\n0xB4B6\t0x708A\n0xB4B7\t0x6376\n0xB4B8\t0x9524\n0xB4B9\t0x5782\n0xB4BA\t0x6625\n0xB4BB\t0x693F\n0xB4BC\t0x9187\n0xB4BD\t0x5507\n0xB4BE\t0x6DF3\n0xB4BF\t0x7EAF\n0xB4C0\t0x8822\n0xB4C1\t0x6233\n0xB4C2\t0x7EF0\n0xB4C3\t0x75B5\n0xB4C4\t0x8328\n0xB4C5\t0x78C1\n0xB4C6\t0x96CC\n0xB4C7\t0x8F9E\n0xB4C8\t0x6148\n0xB4C9\t0x74F7\n0xB4CA\t0x8BCD\n0xB4CB\t0x6B64\n0xB4CC\t0x523A\n0xB4CD\t0x8D50\n0xB4CE\t0x6B21\n0xB4CF\t0x806A\n0xB4D0\t0x8471\n0xB4D1\t0x56F1\n0xB4D2\t0x5306\n0xB4D3\t0x4ECE\n0xB4D4\t0x4E1B\n0xB4D5\t0x51D1\n0xB4D6\t0x7C97\n0xB4D7\t0x918B\n0xB4D8\t0x7C07\n0xB4D9\t0x4FC3\n0xB4DA\t0x8E7F\n0xB4DB\t0x7BE1\n0xB4DC\t0x7A9C\n0xB4DD\t0x6467\n0xB4DE\t0x5D14\n0xB4DF\t0x50AC\n0xB4E0\t0x8106\n0xB4E1\t0x7601\n0xB4E2\t0x7CB9\n0xB4E3\t0x6DEC\n0xB4E4\t0x7FE0\n0xB4E5\t0x6751\n0xB4E6\t0x5B58\n0xB4E7\t0x5BF8\n0xB4E8\t0x78CB\n0xB4E9\t0x64AE\n0xB4EA\t0x6413\n0xB4EB\t0x63AA\n0xB4EC\t0x632B\n0xB4ED\t0x9519\n0xB4EE\t0x642D\n0xB4EF\t0x8FBE\n0xB4F0\t0x7B54\n0xB4F1\t0x7629\n0xB4F2\t0x6253\n0xB4F3\t0x5927\n0xB4F4\t0x5446\n0xB4F5\t0x6B79\n0xB4F6\t0x50A3\n0xB4F7\t0x6234\n0xB4F8\t0x5E26\n0xB4F9\t0x6B86\n0xB4FA\t0x4EE3\n0xB4FB\t0x8D37\n0xB4FC\t0x888B\n0xB4FD\t0x5F85\n0xB4FE\t0x902E\n0xB5A1\t0x6020\n0xB5A2\t0x803D\n0xB5A3\t0x62C5\n0xB5A4\t0x4E39\n0xB5A5\t0x5355\n0xB5A6\t0x90F8\n0xB5A7\t0x63B8\n0xB5A8\t0x80C6\n0xB5A9\t0x65E6\n0xB5AA\t0x6C2E\n0xB5AB\t0x4F46\n0xB5AC\t0x60EE\n0xB5AD\t0x6DE1\n0xB5AE\t0x8BDE\n0xB5AF\t0x5F39\n0xB5B0\t0x86CB\n0xB5B1\t0x5F53\n0xB5B2\t0x6321\n0xB5B3\t0x515A\n0xB5B4\t0x8361\n0xB5B5\t0x6863\n0xB5B6\t0x5200\n0xB5B7\t0x6363\n0xB5B8\t0x8E48\n0xB5B9\t0x5012\n0xB5BA\t0x5C9B\n0xB5BB\t0x7977\n0xB5BC\t0x5BFC\n0xB5BD\t0x5230\n0xB5BE\t0x7A3B\n0xB5BF\t0x60BC\n0xB5C0\t0x9053\n0xB5C1\t0x76D7\n0xB5C2\t0x5FB7\n0xB5C3\t0x5F97\n0xB5C4\t0x7684\n0xB5C5\t0x8E6C\n0xB5C6\t0x706F\n0xB5C7\t0x767B\n0xB5C8\t0x7B49\n0xB5C9\t0x77AA\n0xB5CA\t0x51F3\n0xB5CB\t0x9093\n0xB5CC\t0x5824\n0xB5CD\t0x4F4E\n0xB5CE\t0x6EF4\n0xB5CF\t0x8FEA\n0xB5D0\t0x654C\n0xB5D1\t0x7B1B\n0xB5D2\t0x72C4\n0xB5D3\t0x6DA4\n0xB5D4\t0x7FDF\n0xB5D5\t0x5AE1\n0xB5D6\t0x62B5\n0xB5D7\t0x5E95\n0xB5D8\t0x5730\n0xB5D9\t0x8482\n0xB5DA\t0x7B2C\n0xB5DB\t0x5E1D\n0xB5DC\t0x5F1F\n0xB5DD\t0x9012\n0xB5DE\t0x7F14\n0xB5DF\t0x98A0\n0xB5E0\t0x6382\n0xB5E1\t0x6EC7\n0xB5E2\t0x7898\n0xB5E3\t0x70B9\n0xB5E4\t0x5178\n0xB5E5\t0x975B\n0xB5E6\t0x57AB\n0xB5E7\t0x7535\n0xB5E8\t0x4F43\n0xB5E9\t0x7538\n0xB5EA\t0x5E97\n0xB5EB\t0x60E6\n0xB5EC\t0x5960\n0xB5ED\t0x6DC0\n0xB5EE\t0x6BBF\n0xB5EF\t0x7889\n0xB5F0\t0x53FC\n0xB5F1\t0x96D5\n0xB5F2\t0x51CB\n0xB5F3\t0x5201\n0xB5F4\t0x6389\n0xB5F5\t0x540A\n0xB5F6\t0x9493\n0xB5F7\t0x8C03\n0xB5F8\t0x8DCC\n0xB5F9\t0x7239\n0xB5FA\t0x789F\n0xB5FB\t0x8776\n0xB5FC\t0x8FED\n0xB5FD\t0x8C0D\n0xB5FE\t0x53E0\n0xB6A1\t0x4E01\n0xB6A2\t0x76EF\n0xB6A3\t0x53EE\n0xB6A4\t0x9489\n0xB6A5\t0x9876\n0xB6A6\t0x9F0E\n0xB6A7\t0x952D\n0xB6A8\t0x5B9A\n0xB6A9\t0x8BA2\n0xB6AA\t0x4E22\n0xB6AB\t0x4E1C\n0xB6AC\t0x51AC\n0xB6AD\t0x8463\n0xB6AE\t0x61C2\n0xB6AF\t0x52A8\n0xB6B0\t0x680B\n0xB6B1\t0x4F97\n0xB6B2\t0x606B\n0xB6B3\t0x51BB\n0xB6B4\t0x6D1E\n0xB6B5\t0x515C\n0xB6B6\t0x6296\n0xB6B7\t0x6597\n0xB6B8\t0x9661\n0xB6B9\t0x8C46\n0xB6BA\t0x9017\n0xB6BB\t0x75D8\n0xB6BC\t0x90FD\n0xB6BD\t0x7763\n0xB6BE\t0x6BD2\n0xB6BF\t0x728A\n0xB6C0\t0x72EC\n0xB6C1\t0x8BFB\n0xB6C2\t0x5835\n0xB6C3\t0x7779\n0xB6C4\t0x8D4C\n0xB6C5\t0x675C\n0xB6C6\t0x9540\n0xB6C7\t0x809A\n0xB6C8\t0x5EA6\n0xB6C9\t0x6E21\n0xB6CA\t0x5992\n0xB6CB\t0x7AEF\n0xB6CC\t0x77ED\n0xB6CD\t0x953B\n0xB6CE\t0x6BB5\n0xB6CF\t0x65AD\n0xB6D0\t0x7F0E\n0xB6D1\t0x5806\n0xB6D2\t0x5151\n0xB6D3\t0x961F\n0xB6D4\t0x5BF9\n0xB6D5\t0x58A9\n0xB6D6\t0x5428\n0xB6D7\t0x8E72\n0xB6D8\t0x6566\n0xB6D9\t0x987F\n0xB6DA\t0x56E4\n0xB6DB\t0x949D\n0xB6DC\t0x76FE\n0xB6DD\t0x9041\n0xB6DE\t0x6387\n0xB6DF\t0x54C6\n0xB6E0\t0x591A\n0xB6E1\t0x593A\n0xB6E2\t0x579B\n0xB6E3\t0x8EB2\n0xB6E4\t0x6735\n0xB6E5\t0x8DFA\n0xB6E6\t0x8235\n0xB6E7\t0x5241\n0xB6E8\t0x60F0\n0xB6E9\t0x5815\n0xB6EA\t0x86FE\n0xB6EB\t0x5CE8\n0xB6EC\t0x9E45\n0xB6ED\t0x4FC4\n0xB6EE\t0x989D\n0xB6EF\t0x8BB9\n0xB6F0\t0x5A25\n0xB6F1\t0x6076\n0xB6F2\t0x5384\n0xB6F3\t0x627C\n0xB6F4\t0x904F\n0xB6F5\t0x9102\n0xB6F6\t0x997F\n0xB6F7\t0x6069\n0xB6F8\t0x800C\n0xB6F9\t0x513F\n0xB6FA\t0x8033\n0xB6FB\t0x5C14\n0xB6FC\t0x9975\n0xB6FD\t0x6D31\n0xB6FE\t0x4E8C\n0xB7A1\t0x8D30\n0xB7A2\t0x53D1\n0xB7A3\t0x7F5A\n0xB7A4\t0x7B4F\n0xB7A5\t0x4F10\n0xB7A6\t0x4E4F\n0xB7A7\t0x9600\n0xB7A8\t0x6CD5\n0xB7A9\t0x73D0\n0xB7AA\t0x85E9\n0xB7AB\t0x5E06\n0xB7AC\t0x756A\n0xB7AD\t0x7FFB\n0xB7AE\t0x6A0A\n0xB7AF\t0x77FE\n0xB7B0\t0x9492\n0xB7B1\t0x7E41\n0xB7B2\t0x51E1\n0xB7B3\t0x70E6\n0xB7B4\t0x53CD\n0xB7B5\t0x8FD4\n0xB7B6\t0x8303\n0xB7B7\t0x8D29\n0xB7B8\t0x72AF\n0xB7B9\t0x996D\n0xB7BA\t0x6CDB\n0xB7BB\t0x574A\n0xB7BC\t0x82B3\n0xB7BD\t0x65B9\n0xB7BE\t0x80AA\n0xB7BF\t0x623F\n0xB7C0\t0x9632\n0xB7C1\t0x59A8\n0xB7C2\t0x4EFF\n0xB7C3\t0x8BBF\n0xB7C4\t0x7EBA\n0xB7C5\t0x653E\n0xB7C6\t0x83F2\n0xB7C7\t0x975E\n0xB7C8\t0x5561\n0xB7C9\t0x98DE\n0xB7CA\t0x80A5\n0xB7CB\t0x532A\n0xB7CC\t0x8BFD\n0xB7CD\t0x5420\n0xB7CE\t0x80BA\n0xB7CF\t0x5E9F\n0xB7D0\t0x6CB8\n0xB7D1\t0x8D39\n0xB7D2\t0x82AC\n0xB7D3\t0x915A\n0xB7D4\t0x5429\n0xB7D5\t0x6C1B\n0xB7D6\t0x5206\n0xB7D7\t0x7EB7\n0xB7D8\t0x575F\n0xB7D9\t0x711A\n0xB7DA\t0x6C7E\n0xB7DB\t0x7C89\n0xB7DC\t0x594B\n0xB7DD\t0x4EFD\n0xB7DE\t0x5FFF\n0xB7DF\t0x6124\n0xB7E0\t0x7CAA\n0xB7E1\t0x4E30\n0xB7E2\t0x5C01\n0xB7E3\t0x67AB\n0xB7E4\t0x8702\n0xB7E5\t0x5CF0\n0xB7E6\t0x950B\n0xB7E7\t0x98CE\n0xB7E8\t0x75AF\n0xB7E9\t0x70FD\n0xB7EA\t0x9022\n0xB7EB\t0x51AF\n0xB7EC\t0x7F1D\n0xB7ED\t0x8BBD\n0xB7EE\t0x5949\n0xB7EF\t0x51E4\n0xB7F0\t0x4F5B\n0xB7F1\t0x5426\n0xB7F2\t0x592B\n0xB7F3\t0x6577\n0xB7F4\t0x80A4\n0xB7F5\t0x5B75\n0xB7F6\t0x6276\n0xB7F7\t0x62C2\n0xB7F8\t0x8F90\n0xB7F9\t0x5E45\n0xB7FA\t0x6C1F\n0xB7FB\t0x7B26\n0xB7FC\t0x4F0F\n0xB7FD\t0x4FD8\n0xB7FE\t0x670D\n0xB8A1\t0x6D6E\n0xB8A2\t0x6DAA\n0xB8A3\t0x798F\n0xB8A4\t0x88B1\n0xB8A5\t0x5F17\n0xB8A6\t0x752B\n0xB8A7\t0x629A\n0xB8A8\t0x8F85\n0xB8A9\t0x4FEF\n0xB8AA\t0x91DC\n0xB8AB\t0x65A7\n0xB8AC\t0x812F\n0xB8AD\t0x8151\n0xB8AE\t0x5E9C\n0xB8AF\t0x8150\n0xB8B0\t0x8D74\n0xB8B1\t0x526F\n0xB8B2\t0x8986\n0xB8B3\t0x8D4B\n0xB8B4\t0x590D\n0xB8B5\t0x5085\n0xB8B6\t0x4ED8\n0xB8B7\t0x961C\n0xB8B8\t0x7236\n0xB8B9\t0x8179\n0xB8BA\t0x8D1F\n0xB8BB\t0x5BCC\n0xB8BC\t0x8BA3\n0xB8BD\t0x9644\n0xB8BE\t0x5987\n0xB8BF\t0x7F1A\n0xB8C0\t0x5490\n0xB8C1\t0x5676\n0xB8C2\t0x560E\n0xB8C3\t0x8BE5\n0xB8C4\t0x6539\n0xB8C5\t0x6982\n0xB8C6\t0x9499\n0xB8C7\t0x76D6\n0xB8C8\t0x6E89\n0xB8C9\t0x5E72\n0xB8CA\t0x7518\n0xB8CB\t0x6746\n0xB8CC\t0x67D1\n0xB8CD\t0x7AFF\n0xB8CE\t0x809D\n0xB8CF\t0x8D76\n0xB8D0\t0x611F\n0xB8D1\t0x79C6\n0xB8D2\t0x6562\n0xB8D3\t0x8D63\n0xB8D4\t0x5188\n0xB8D5\t0x521A\n0xB8D6\t0x94A2\n0xB8D7\t0x7F38\n0xB8D8\t0x809B\n0xB8D9\t0x7EB2\n0xB8DA\t0x5C97\n0xB8DB\t0x6E2F\n0xB8DC\t0x6760\n0xB8DD\t0x7BD9\n0xB8DE\t0x768B\n0xB8DF\t0x9AD8\n0xB8E0\t0x818F\n0xB8E1\t0x7F94\n0xB8E2\t0x7CD5\n0xB8E3\t0x641E\n0xB8E4\t0x9550\n0xB8E5\t0x7A3F\n0xB8E6\t0x544A\n0xB8E7\t0x54E5\n0xB8E8\t0x6B4C\n0xB8E9\t0x6401\n0xB8EA\t0x6208\n0xB8EB\t0x9E3D\n0xB8EC\t0x80F3\n0xB8ED\t0x7599\n0xB8EE\t0x5272\n0xB8EF\t0x9769\n0xB8F0\t0x845B\n0xB8F1\t0x683C\n0xB8F2\t0x86E4\n0xB8F3\t0x9601\n0xB8F4\t0x9694\n0xB8F5\t0x94EC\n0xB8F6\t0x4E2A\n0xB8F7\t0x5404\n0xB8F8\t0x7ED9\n0xB8F9\t0x6839\n0xB8FA\t0x8DDF\n0xB8FB\t0x8015\n0xB8FC\t0x66F4\n0xB8FD\t0x5E9A\n0xB8FE\t0x7FB9\n0xB9A1\t0x57C2\n0xB9A2\t0x803F\n0xB9A3\t0x6897\n0xB9A4\t0x5DE5\n0xB9A5\t0x653B\n0xB9A6\t0x529F\n0xB9A7\t0x606D\n0xB9A8\t0x9F9A\n0xB9A9\t0x4F9B\n0xB9AA\t0x8EAC\n0xB9AB\t0x516C\n0xB9AC\t0x5BAB\n0xB9AD\t0x5F13\n0xB9AE\t0x5DE9\n0xB9AF\t0x6C5E\n0xB9B0\t0x62F1\n0xB9B1\t0x8D21\n0xB9B2\t0x5171\n0xB9B3\t0x94A9\n0xB9B4\t0x52FE\n0xB9B5\t0x6C9F\n0xB9B6\t0x82DF\n0xB9B7\t0x72D7\n0xB9B8\t0x57A2\n0xB9B9\t0x6784\n0xB9BA\t0x8D2D\n0xB9BB\t0x591F\n0xB9BC\t0x8F9C\n0xB9BD\t0x83C7\n0xB9BE\t0x5495\n0xB9BF\t0x7B8D\n0xB9C0\t0x4F30\n0xB9C1\t0x6CBD\n0xB9C2\t0x5B64\n0xB9C3\t0x59D1\n0xB9C4\t0x9F13\n0xB9C5\t0x53E4\n0xB9C6\t0x86CA\n0xB9C7\t0x9AA8\n0xB9C8\t0x8C37\n0xB9C9\t0x80A1\n0xB9CA\t0x6545\n0xB9CB\t0x987E\n0xB9CC\t0x56FA\n0xB9CD\t0x96C7\n0xB9CE\t0x522E\n0xB9CF\t0x74DC\n0xB9D0\t0x5250\n0xB9D1\t0x5BE1\n0xB9D2\t0x6302\n0xB9D3\t0x8902\n0xB9D4\t0x4E56\n0xB9D5\t0x62D0\n0xB9D6\t0x602A\n0xB9D7\t0x68FA\n0xB9D8\t0x5173\n0xB9D9\t0x5B98\n0xB9DA\t0x51A0\n0xB9DB\t0x89C2\n0xB9DC\t0x7BA1\n0xB9DD\t0x9986\n0xB9DE\t0x7F50\n0xB9DF\t0x60EF\n0xB9E0\t0x704C\n0xB9E1\t0x8D2F\n0xB9E2\t0x5149\n0xB9E3\t0x5E7F\n0xB9E4\t0x901B\n0xB9E5\t0x7470\n0xB9E6\t0x89C4\n0xB9E7\t0x572D\n0xB9E8\t0x7845\n0xB9E9\t0x5F52\n0xB9EA\t0x9F9F\n0xB9EB\t0x95FA\n0xB9EC\t0x8F68\n0xB9ED\t0x9B3C\n0xB9EE\t0x8BE1\n0xB9EF\t0x7678\n0xB9F0\t0x6842\n0xB9F1\t0x67DC\n0xB9F2\t0x8DEA\n0xB9F3\t0x8D35\n0xB9F4\t0x523D\n0xB9F5\t0x8F8A\n0xB9F6\t0x6EDA\n0xB9F7\t0x68CD\n0xB9F8\t0x9505\n0xB9F9\t0x90ED\n0xB9FA\t0x56FD\n0xB9FB\t0x679C\n0xB9FC\t0x88F9\n0xB9FD\t0x8FC7\n0xB9FE\t0x54C8\n0xBAA1\t0x9AB8\n0xBAA2\t0x5B69\n0xBAA3\t0x6D77\n0xBAA4\t0x6C26\n0xBAA5\t0x4EA5\n0xBAA6\t0x5BB3\n0xBAA7\t0x9A87\n0xBAA8\t0x9163\n0xBAA9\t0x61A8\n0xBAAA\t0x90AF\n0xBAAB\t0x97E9\n0xBAAC\t0x542B\n0xBAAD\t0x6DB5\n0xBAAE\t0x5BD2\n0xBAAF\t0x51FD\n0xBAB0\t0x558A\n0xBAB1\t0x7F55\n0xBAB2\t0x7FF0\n0xBAB3\t0x64BC\n0xBAB4\t0x634D\n0xBAB5\t0x65F1\n0xBAB6\t0x61BE\n0xBAB7\t0x608D\n0xBAB8\t0x710A\n0xBAB9\t0x6C57\n0xBABA\t0x6C49\n0xBABB\t0x592F\n0xBABC\t0x676D\n0xBABD\t0x822A\n0xBABE\t0x58D5\n0xBABF\t0x568E\n0xBAC0\t0x8C6A\n0xBAC1\t0x6BEB\n0xBAC2\t0x90DD\n0xBAC3\t0x597D\n0xBAC4\t0x8017\n0xBAC5\t0x53F7\n0xBAC6\t0x6D69\n0xBAC7\t0x5475\n0xBAC8\t0x559D\n0xBAC9\t0x8377\n0xBACA\t0x83CF\n0xBACB\t0x6838\n0xBACC\t0x79BE\n0xBACD\t0x548C\n0xBACE\t0x4F55\n0xBACF\t0x5408\n0xBAD0\t0x76D2\n0xBAD1\t0x8C89\n0xBAD2\t0x9602\n0xBAD3\t0x6CB3\n0xBAD4\t0x6DB8\n0xBAD5\t0x8D6B\n0xBAD6\t0x8910\n0xBAD7\t0x9E64\n0xBAD8\t0x8D3A\n0xBAD9\t0x563F\n0xBADA\t0x9ED1\n0xBADB\t0x75D5\n0xBADC\t0x5F88\n0xBADD\t0x72E0\n0xBADE\t0x6068\n0xBADF\t0x54FC\n0xBAE0\t0x4EA8\n0xBAE1\t0x6A2A\n0xBAE2\t0x8861\n0xBAE3\t0x6052\n0xBAE4\t0x8F70\n0xBAE5\t0x54C4\n0xBAE6\t0x70D8\n0xBAE7\t0x8679\n0xBAE8\t0x9E3F\n0xBAE9\t0x6D2A\n0xBAEA\t0x5B8F\n0xBAEB\t0x5F18\n0xBAEC\t0x7EA2\n0xBAED\t0x5589\n0xBAEE\t0x4FAF\n0xBAEF\t0x7334\n0xBAF0\t0x543C\n0xBAF1\t0x539A\n0xBAF2\t0x5019\n0xBAF3\t0x540E\n0xBAF4\t0x547C\n0xBAF5\t0x4E4E\n0xBAF6\t0x5FFD\n0xBAF7\t0x745A\n0xBAF8\t0x58F6\n0xBAF9\t0x846B\n0xBAFA\t0x80E1\n0xBAFB\t0x8774\n0xBAFC\t0x72D0\n0xBAFD\t0x7CCA\n0xBAFE\t0x6E56\n0xBBA1\t0x5F27\n0xBBA2\t0x864E\n0xBBA3\t0x552C\n0xBBA4\t0x62A4\n0xBBA5\t0x4E92\n0xBBA6\t0x6CAA\n0xBBA7\t0x6237\n0xBBA8\t0x82B1\n0xBBA9\t0x54D7\n0xBBAA\t0x534E\n0xBBAB\t0x733E\n0xBBAC\t0x6ED1\n0xBBAD\t0x753B\n0xBBAE\t0x5212\n0xBBAF\t0x5316\n0xBBB0\t0x8BDD\n0xBBB1\t0x69D0\n0xBBB2\t0x5F8A\n0xBBB3\t0x6000\n0xBBB4\t0x6DEE\n0xBBB5\t0x574F\n0xBBB6\t0x6B22\n0xBBB7\t0x73AF\n0xBBB8\t0x6853\n0xBBB9\t0x8FD8\n0xBBBA\t0x7F13\n0xBBBB\t0x6362\n0xBBBC\t0x60A3\n0xBBBD\t0x5524\n0xBBBE\t0x75EA\n0xBBBF\t0x8C62\n0xBBC0\t0x7115\n0xBBC1\t0x6DA3\n0xBBC2\t0x5BA6\n0xBBC3\t0x5E7B\n0xBBC4\t0x8352\n0xBBC5\t0x614C\n0xBBC6\t0x9EC4\n0xBBC7\t0x78FA\n0xBBC8\t0x8757\n0xBBC9\t0x7C27\n0xBBCA\t0x7687\n0xBBCB\t0x51F0\n0xBBCC\t0x60F6\n0xBBCD\t0x714C\n0xBBCE\t0x6643\n0xBBCF\t0x5E4C\n0xBBD0\t0x604D\n0xBBD1\t0x8C0E\n0xBBD2\t0x7070\n0xBBD3\t0x6325\n0xBBD4\t0x8F89\n0xBBD5\t0x5FBD\n0xBBD6\t0x6062\n0xBBD7\t0x86D4\n0xBBD8\t0x56DE\n0xBBD9\t0x6BC1\n0xBBDA\t0x6094\n0xBBDB\t0x6167\n0xBBDC\t0x5349\n0xBBDD\t0x60E0\n0xBBDE\t0x6666\n0xBBDF\t0x8D3F\n0xBBE0\t0x79FD\n0xBBE1\t0x4F1A\n0xBBE2\t0x70E9\n0xBBE3\t0x6C47\n0xBBE4\t0x8BB3\n0xBBE5\t0x8BF2\n0xBBE6\t0x7ED8\n0xBBE7\t0x8364\n0xBBE8\t0x660F\n0xBBE9\t0x5A5A\n0xBBEA\t0x9B42\n0xBBEB\t0x6D51\n0xBBEC\t0x6DF7\n0xBBED\t0x8C41\n0xBBEE\t0x6D3B\n0xBBEF\t0x4F19\n0xBBF0\t0x706B\n0xBBF1\t0x83B7\n0xBBF2\t0x6216\n0xBBF3\t0x60D1\n0xBBF4\t0x970D\n0xBBF5\t0x8D27\n0xBBF6\t0x7978\n0xBBF7\t0x51FB\n0xBBF8\t0x573E\n0xBBF9\t0x57FA\n0xBBFA\t0x673A\n0xBBFB\t0x7578\n0xBBFC\t0x7A3D\n0xBBFD\t0x79EF\n0xBBFE\t0x7B95\n0xBCA1\t0x808C\n0xBCA2\t0x9965\n0xBCA3\t0x8FF9\n0xBCA4\t0x6FC0\n0xBCA5\t0x8BA5\n0xBCA6\t0x9E21\n0xBCA7\t0x59EC\n0xBCA8\t0x7EE9\n0xBCA9\t0x7F09\n0xBCAA\t0x5409\n0xBCAB\t0x6781\n0xBCAC\t0x68D8\n0xBCAD\t0x8F91\n0xBCAE\t0x7C4D\n0xBCAF\t0x96C6\n0xBCB0\t0x53CA\n0xBCB1\t0x6025\n0xBCB2\t0x75BE\n0xBCB3\t0x6C72\n0xBCB4\t0x5373\n0xBCB5\t0x5AC9\n0xBCB6\t0x7EA7\n0xBCB7\t0x6324\n0xBCB8\t0x51E0\n0xBCB9\t0x810A\n0xBCBA\t0x5DF1\n0xBCBB\t0x84DF\n0xBCBC\t0x6280\n0xBCBD\t0x5180\n0xBCBE\t0x5B63\n0xBCBF\t0x4F0E\n0xBCC0\t0x796D\n0xBCC1\t0x5242\n0xBCC2\t0x60B8\n0xBCC3\t0x6D4E\n0xBCC4\t0x5BC4\n0xBCC5\t0x5BC2\n0xBCC6\t0x8BA1\n0xBCC7\t0x8BB0\n0xBCC8\t0x65E2\n0xBCC9\t0x5FCC\n0xBCCA\t0x9645\n0xBCCB\t0x5993\n0xBCCC\t0x7EE7\n0xBCCD\t0x7EAA\n0xBCCE\t0x5609\n0xBCCF\t0x67B7\n0xBCD0\t0x5939\n0xBCD1\t0x4F73\n0xBCD2\t0x5BB6\n0xBCD3\t0x52A0\n0xBCD4\t0x835A\n0xBCD5\t0x988A\n0xBCD6\t0x8D3E\n0xBCD7\t0x7532\n0xBCD8\t0x94BE\n0xBCD9\t0x5047\n0xBCDA\t0x7A3C\n0xBCDB\t0x4EF7\n0xBCDC\t0x67B6\n0xBCDD\t0x9A7E\n0xBCDE\t0x5AC1\n0xBCDF\t0x6B7C\n0xBCE0\t0x76D1\n0xBCE1\t0x575A\n0xBCE2\t0x5C16\n0xBCE3\t0x7B3A\n0xBCE4\t0x95F4\n0xBCE5\t0x714E\n0xBCE6\t0x517C\n0xBCE7\t0x80A9\n0xBCE8\t0x8270\n0xBCE9\t0x5978\n0xBCEA\t0x7F04\n0xBCEB\t0x8327\n0xBCEC\t0x68C0\n0xBCED\t0x67EC\n0xBCEE\t0x78B1\n0xBCEF\t0x7877\n0xBCF0\t0x62E3\n0xBCF1\t0x6361\n0xBCF2\t0x7B80\n0xBCF3\t0x4FED\n0xBCF4\t0x526A\n0xBCF5\t0x51CF\n0xBCF6\t0x8350\n0xBCF7\t0x69DB\n0xBCF8\t0x9274\n0xBCF9\t0x8DF5\n0xBCFA\t0x8D31\n0xBCFB\t0x89C1\n0xBCFC\t0x952E\n0xBCFD\t0x7BAD\n0xBCFE\t0x4EF6\n0xBDA1\t0x5065\n0xBDA2\t0x8230\n0xBDA3\t0x5251\n0xBDA4\t0x996F\n0xBDA5\t0x6E10\n0xBDA6\t0x6E85\n0xBDA7\t0x6DA7\n0xBDA8\t0x5EFA\n0xBDA9\t0x50F5\n0xBDAA\t0x59DC\n0xBDAB\t0x5C06\n0xBDAC\t0x6D46\n0xBDAD\t0x6C5F\n0xBDAE\t0x7586\n0xBDAF\t0x848B\n0xBDB0\t0x6868\n0xBDB1\t0x5956\n0xBDB2\t0x8BB2\n0xBDB3\t0x5320\n0xBDB4\t0x9171\n0xBDB5\t0x964D\n0xBDB6\t0x8549\n0xBDB7\t0x6912\n0xBDB8\t0x7901\n0xBDB9\t0x7126\n0xBDBA\t0x80F6\n0xBDBB\t0x4EA4\n0xBDBC\t0x90CA\n0xBDBD\t0x6D47\n0xBDBE\t0x9A84\n0xBDBF\t0x5A07\n0xBDC0\t0x56BC\n0xBDC1\t0x6405\n0xBDC2\t0x94F0\n0xBDC3\t0x77EB\n0xBDC4\t0x4FA5\n0xBDC5\t0x811A\n0xBDC6\t0x72E1\n0xBDC7\t0x89D2\n0xBDC8\t0x997A\n0xBDC9\t0x7F34\n0xBDCA\t0x7EDE\n0xBDCB\t0x527F\n0xBDCC\t0x6559\n0xBDCD\t0x9175\n0xBDCE\t0x8F7F\n0xBDCF\t0x8F83\n0xBDD0\t0x53EB\n0xBDD1\t0x7A96\n0xBDD2\t0x63ED\n0xBDD3\t0x63A5\n0xBDD4\t0x7686\n0xBDD5\t0x79F8\n0xBDD6\t0x8857\n0xBDD7\t0x9636\n0xBDD8\t0x622A\n0xBDD9\t0x52AB\n0xBDDA\t0x8282\n0xBDDB\t0x6854\n0xBDDC\t0x6770\n0xBDDD\t0x6377\n0xBDDE\t0x776B\n0xBDDF\t0x7AED\n0xBDE0\t0x6D01\n0xBDE1\t0x7ED3\n0xBDE2\t0x89E3\n0xBDE3\t0x59D0\n0xBDE4\t0x6212\n0xBDE5\t0x85C9\n0xBDE6\t0x82A5\n0xBDE7\t0x754C\n0xBDE8\t0x501F\n0xBDE9\t0x4ECB\n0xBDEA\t0x75A5\n0xBDEB\t0x8BEB\n0xBDEC\t0x5C4A\n0xBDED\t0x5DFE\n0xBDEE\t0x7B4B\n0xBDEF\t0x65A4\n0xBDF0\t0x91D1\n0xBDF1\t0x4ECA\n0xBDF2\t0x6D25\n0xBDF3\t0x895F\n0xBDF4\t0x7D27\n0xBDF5\t0x9526\n0xBDF6\t0x4EC5\n0xBDF7\t0x8C28\n0xBDF8\t0x8FDB\n0xBDF9\t0x9773\n0xBDFA\t0x664B\n0xBDFB\t0x7981\n0xBDFC\t0x8FD1\n0xBDFD\t0x70EC\n0xBDFE\t0x6D78\n0xBEA1\t0x5C3D\n0xBEA2\t0x52B2\n0xBEA3\t0x8346\n0xBEA4\t0x5162\n0xBEA5\t0x830E\n0xBEA6\t0x775B\n0xBEA7\t0x6676\n0xBEA8\t0x9CB8\n0xBEA9\t0x4EAC\n0xBEAA\t0x60CA\n0xBEAB\t0x7CBE\n0xBEAC\t0x7CB3\n0xBEAD\t0x7ECF\n0xBEAE\t0x4E95\n0xBEAF\t0x8B66\n0xBEB0\t0x666F\n0xBEB1\t0x9888\n0xBEB2\t0x9759\n0xBEB3\t0x5883\n0xBEB4\t0x656C\n0xBEB5\t0x955C\n0xBEB6\t0x5F84\n0xBEB7\t0x75C9\n0xBEB8\t0x9756\n0xBEB9\t0x7ADF\n0xBEBA\t0x7ADE\n0xBEBB\t0x51C0\n0xBEBC\t0x70AF\n0xBEBD\t0x7A98\n0xBEBE\t0x63EA\n0xBEBF\t0x7A76\n0xBEC0\t0x7EA0\n0xBEC1\t0x7396\n0xBEC2\t0x97ED\n0xBEC3\t0x4E45\n0xBEC4\t0x7078\n0xBEC5\t0x4E5D\n0xBEC6\t0x9152\n0xBEC7\t0x53A9\n0xBEC8\t0x6551\n0xBEC9\t0x65E7\n0xBECA\t0x81FC\n0xBECB\t0x8205\n0xBECC\t0x548E\n0xBECD\t0x5C31\n0xBECE\t0x759A\n0xBECF\t0x97A0\n0xBED0\t0x62D8\n0xBED1\t0x72D9\n0xBED2\t0x75BD\n0xBED3\t0x5C45\n0xBED4\t0x9A79\n0xBED5\t0x83CA\n0xBED6\t0x5C40\n0xBED7\t0x5480\n0xBED8\t0x77E9\n0xBED9\t0x4E3E\n0xBEDA\t0x6CAE\n0xBEDB\t0x805A\n0xBEDC\t0x62D2\n0xBEDD\t0x636E\n0xBEDE\t0x5DE8\n0xBEDF\t0x5177\n0xBEE0\t0x8DDD\n0xBEE1\t0x8E1E\n0xBEE2\t0x952F\n0xBEE3\t0x4FF1\n0xBEE4\t0x53E5\n0xBEE5\t0x60E7\n0xBEE6\t0x70AC\n0xBEE7\t0x5267\n0xBEE8\t0x6350\n0xBEE9\t0x9E43\n0xBEEA\t0x5A1F\n0xBEEB\t0x5026\n0xBEEC\t0x7737\n0xBEED\t0x5377\n0xBEEE\t0x7EE2\n0xBEEF\t0x6485\n0xBEF0\t0x652B\n0xBEF1\t0x6289\n0xBEF2\t0x6398\n0xBEF3\t0x5014\n0xBEF4\t0x7235\n0xBEF5\t0x89C9\n0xBEF6\t0x51B3\n0xBEF7\t0x8BC0\n0xBEF8\t0x7EDD\n0xBEF9\t0x5747\n0xBEFA\t0x83CC\n0xBEFB\t0x94A7\n0xBEFC\t0x519B\n0xBEFD\t0x541B\n0xBEFE\t0x5CFB\n0xBFA1\t0x4FCA\n0xBFA2\t0x7AE3\n0xBFA3\t0x6D5A\n0xBFA4\t0x90E1\n0xBFA5\t0x9A8F\n0xBFA6\t0x5580\n0xBFA7\t0x5496\n0xBFA8\t0x5361\n0xBFA9\t0x54AF\n0xBFAA\t0x5F00\n0xBFAB\t0x63E9\n0xBFAC\t0x6977\n0xBFAD\t0x51EF\n0xBFAE\t0x6168\n0xBFAF\t0x520A\n0xBFB0\t0x582A\n0xBFB1\t0x52D8\n0xBFB2\t0x574E\n0xBFB3\t0x780D\n0xBFB4\t0x770B\n0xBFB5\t0x5EB7\n0xBFB6\t0x6177\n0xBFB7\t0x7CE0\n0xBFB8\t0x625B\n0xBFB9\t0x6297\n0xBFBA\t0x4EA2\n0xBFBB\t0x7095\n0xBFBC\t0x8003\n0xBFBD\t0x62F7\n0xBFBE\t0x70E4\n0xBFBF\t0x9760\n0xBFC0\t0x5777\n0xBFC1\t0x82DB\n0xBFC2\t0x67EF\n0xBFC3\t0x68F5\n0xBFC4\t0x78D5\n0xBFC5\t0x9897\n0xBFC6\t0x79D1\n0xBFC7\t0x58F3\n0xBFC8\t0x54B3\n0xBFC9\t0x53EF\n0xBFCA\t0x6E34\n0xBFCB\t0x514B\n0xBFCC\t0x523B\n0xBFCD\t0x5BA2\n0xBFCE\t0x8BFE\n0xBFCF\t0x80AF\n0xBFD0\t0x5543\n0xBFD1\t0x57A6\n0xBFD2\t0x6073\n0xBFD3\t0x5751\n0xBFD4\t0x542D\n0xBFD5\t0x7A7A\n0xBFD6\t0x6050\n0xBFD7\t0x5B54\n0xBFD8\t0x63A7\n0xBFD9\t0x62A0\n0xBFDA\t0x53E3\n0xBFDB\t0x6263\n0xBFDC\t0x5BC7\n0xBFDD\t0x67AF\n0xBFDE\t0x54ED\n0xBFDF\t0x7A9F\n0xBFE0\t0x82E6\n0xBFE1\t0x9177\n0xBFE2\t0x5E93\n0xBFE3\t0x88E4\n0xBFE4\t0x5938\n0xBFE5\t0x57AE\n0xBFE6\t0x630E\n0xBFE7\t0x8DE8\n0xBFE8\t0x80EF\n0xBFE9\t0x5757\n0xBFEA\t0x7B77\n0xBFEB\t0x4FA9\n0xBFEC\t0x5FEB\n0xBFED\t0x5BBD\n0xBFEE\t0x6B3E\n0xBFEF\t0x5321\n0xBFF0\t0x7B50\n0xBFF1\t0x72C2\n0xBFF2\t0x6846\n0xBFF3\t0x77FF\n0xBFF4\t0x7736\n0xBFF5\t0x65F7\n0xBFF6\t0x51B5\n0xBFF7\t0x4E8F\n0xBFF8\t0x76D4\n0xBFF9\t0x5CBF\n0xBFFA\t0x7AA5\n0xBFFB\t0x8475\n0xBFFC\t0x594E\n0xBFFD\t0x9B41\n0xBFFE\t0x5080\n0xC0A1\t0x9988\n0xC0A2\t0x6127\n0xC0A3\t0x6E83\n0xC0A4\t0x5764\n0xC0A5\t0x6606\n0xC0A6\t0x6346\n0xC0A7\t0x56F0\n0xC0A8\t0x62EC\n0xC0A9\t0x6269\n0xC0AA\t0x5ED3\n0xC0AB\t0x9614\n0xC0AC\t0x5783\n0xC0AD\t0x62C9\n0xC0AE\t0x5587\n0xC0AF\t0x8721\n0xC0B0\t0x814A\n0xC0B1\t0x8FA3\n0xC0B2\t0x5566\n0xC0B3\t0x83B1\n0xC0B4\t0x6765\n0xC0B5\t0x8D56\n0xC0B6\t0x84DD\n0xC0B7\t0x5A6A\n0xC0B8\t0x680F\n0xC0B9\t0x62E6\n0xC0BA\t0x7BEE\n0xC0BB\t0x9611\n0xC0BC\t0x5170\n0xC0BD\t0x6F9C\n0xC0BE\t0x8C30\n0xC0BF\t0x63FD\n0xC0C0\t0x89C8\n0xC0C1\t0x61D2\n0xC0C2\t0x7F06\n0xC0C3\t0x70C2\n0xC0C4\t0x6EE5\n0xC0C5\t0x7405\n0xC0C6\t0x6994\n0xC0C7\t0x72FC\n0xC0C8\t0x5ECA\n0xC0C9\t0x90CE\n0xC0CA\t0x6717\n0xC0CB\t0x6D6A\n0xC0CC\t0x635E\n0xC0CD\t0x52B3\n0xC0CE\t0x7262\n0xC0CF\t0x8001\n0xC0D0\t0x4F6C\n0xC0D1\t0x59E5\n0xC0D2\t0x916A\n0xC0D3\t0x70D9\n0xC0D4\t0x6D9D\n0xC0D5\t0x52D2\n0xC0D6\t0x4E50\n0xC0D7\t0x96F7\n0xC0D8\t0x956D\n0xC0D9\t0x857E\n0xC0DA\t0x78CA\n0xC0DB\t0x7D2F\n0xC0DC\t0x5121\n0xC0DD\t0x5792\n0xC0DE\t0x64C2\n0xC0DF\t0x808B\n0xC0E0\t0x7C7B\n0xC0E1\t0x6CEA\n0xC0E2\t0x68F1\n0xC0E3\t0x695E\n0xC0E4\t0x51B7\n0xC0E5\t0x5398\n0xC0E6\t0x68A8\n0xC0E7\t0x7281\n0xC0E8\t0x9ECE\n0xC0E9\t0x7BF1\n0xC0EA\t0x72F8\n0xC0EB\t0x79BB\n0xC0EC\t0x6F13\n0xC0ED\t0x7406\n0xC0EE\t0x674E\n0xC0EF\t0x91CC\n0xC0F0\t0x9CA4\n0xC0F1\t0x793C\n0xC0F2\t0x8389\n0xC0F3\t0x8354\n0xC0F4\t0x540F\n0xC0F5\t0x6817\n0xC0F6\t0x4E3D\n0xC0F7\t0x5389\n0xC0F8\t0x52B1\n0xC0F9\t0x783E\n0xC0FA\t0x5386\n0xC0FB\t0x5229\n0xC0FC\t0x5088\n0xC0FD\t0x4F8B\n0xC0FE\t0x4FD0\n0xC1A1\t0x75E2\n0xC1A2\t0x7ACB\n0xC1A3\t0x7C92\n0xC1A4\t0x6CA5\n0xC1A5\t0x96B6\n0xC1A6\t0x529B\n0xC1A7\t0x7483\n0xC1A8\t0x54E9\n0xC1A9\t0x4FE9\n0xC1AA\t0x8054\n0xC1AB\t0x83B2\n0xC1AC\t0x8FDE\n0xC1AD\t0x9570\n0xC1AE\t0x5EC9\n0xC1AF\t0x601C\n0xC1B0\t0x6D9F\n0xC1B1\t0x5E18\n0xC1B2\t0x655B\n0xC1B3\t0x8138\n0xC1B4\t0x94FE\n0xC1B5\t0x604B\n0xC1B6\t0x70BC\n0xC1B7\t0x7EC3\n0xC1B8\t0x7CAE\n0xC1B9\t0x51C9\n0xC1BA\t0x6881\n0xC1BB\t0x7CB1\n0xC1BC\t0x826F\n0xC1BD\t0x4E24\n0xC1BE\t0x8F86\n0xC1BF\t0x91CF\n0xC1C0\t0x667E\n0xC1C1\t0x4EAE\n0xC1C2\t0x8C05\n0xC1C3\t0x64A9\n0xC1C4\t0x804A\n0xC1C5\t0x50DA\n0xC1C6\t0x7597\n0xC1C7\t0x71CE\n0xC1C8\t0x5BE5\n0xC1C9\t0x8FBD\n0xC1CA\t0x6F66\n0xC1CB\t0x4E86\n0xC1CC\t0x6482\n0xC1CD\t0x9563\n0xC1CE\t0x5ED6\n0xC1CF\t0x6599\n0xC1D0\t0x5217\n0xC1D1\t0x88C2\n0xC1D2\t0x70C8\n0xC1D3\t0x52A3\n0xC1D4\t0x730E\n0xC1D5\t0x7433\n0xC1D6\t0x6797\n0xC1D7\t0x78F7\n0xC1D8\t0x9716\n0xC1D9\t0x4E34\n0xC1DA\t0x90BB\n0xC1DB\t0x9CDE\n0xC1DC\t0x6DCB\n0xC1DD\t0x51DB\n0xC1DE\t0x8D41\n0xC1DF\t0x541D\n0xC1E0\t0x62CE\n0xC1E1\t0x73B2\n0xC1E2\t0x83F1\n0xC1E3\t0x96F6\n0xC1E4\t0x9F84\n0xC1E5\t0x94C3\n0xC1E6\t0x4F36\n0xC1E7\t0x7F9A\n0xC1E8\t0x51CC\n0xC1E9\t0x7075\n0xC1EA\t0x9675\n0xC1EB\t0x5CAD\n0xC1EC\t0x9886\n0xC1ED\t0x53E6\n0xC1EE\t0x4EE4\n0xC1EF\t0x6E9C\n0xC1F0\t0x7409\n0xC1F1\t0x69B4\n0xC1F2\t0x786B\n0xC1F3\t0x998F\n0xC1F4\t0x7559\n0xC1F5\t0x5218\n0xC1F6\t0x7624\n0xC1F7\t0x6D41\n0xC1F8\t0x67F3\n0xC1F9\t0x516D\n0xC1FA\t0x9F99\n0xC1FB\t0x804B\n0xC1FC\t0x5499\n0xC1FD\t0x7B3C\n0xC1FE\t0x7ABF\n0xC2A1\t0x9686\n0xC2A2\t0x5784\n0xC2A3\t0x62E2\n0xC2A4\t0x9647\n0xC2A5\t0x697C\n0xC2A6\t0x5A04\n0xC2A7\t0x6402\n0xC2A8\t0x7BD3\n0xC2A9\t0x6F0F\n0xC2AA\t0x964B\n0xC2AB\t0x82A6\n0xC2AC\t0x5362\n0xC2AD\t0x9885\n0xC2AE\t0x5E90\n0xC2AF\t0x7089\n0xC2B0\t0x63B3\n0xC2B1\t0x5364\n0xC2B2\t0x864F\n0xC2B3\t0x9C81\n0xC2B4\t0x9E93\n0xC2B5\t0x788C\n0xC2B6\t0x9732\n0xC2B7\t0x8DEF\n0xC2B8\t0x8D42\n0xC2B9\t0x9E7F\n0xC2BA\t0x6F5E\n0xC2BB\t0x7984\n0xC2BC\t0x5F55\n0xC2BD\t0x9646\n0xC2BE\t0x622E\n0xC2BF\t0x9A74\n0xC2C0\t0x5415\n0xC2C1\t0x94DD\n0xC2C2\t0x4FA3\n0xC2C3\t0x65C5\n0xC2C4\t0x5C65\n0xC2C5\t0x5C61\n0xC2C6\t0x7F15\n0xC2C7\t0x8651\n0xC2C8\t0x6C2F\n0xC2C9\t0x5F8B\n0xC2CA\t0x7387\n0xC2CB\t0x6EE4\n0xC2CC\t0x7EFF\n0xC2CD\t0x5CE6\n0xC2CE\t0x631B\n0xC2CF\t0x5B6A\n0xC2D0\t0x6EE6\n0xC2D1\t0x5375\n0xC2D2\t0x4E71\n0xC2D3\t0x63A0\n0xC2D4\t0x7565\n0xC2D5\t0x62A1\n0xC2D6\t0x8F6E\n0xC2D7\t0x4F26\n0xC2D8\t0x4ED1\n0xC2D9\t0x6CA6\n0xC2DA\t0x7EB6\n0xC2DB\t0x8BBA\n0xC2DC\t0x841D\n0xC2DD\t0x87BA\n0xC2DE\t0x7F57\n0xC2DF\t0x903B\n0xC2E0\t0x9523\n0xC2E1\t0x7BA9\n0xC2E2\t0x9AA1\n0xC2E3\t0x88F8\n0xC2E4\t0x843D\n0xC2E5\t0x6D1B\n0xC2E6\t0x9A86\n0xC2E7\t0x7EDC\n0xC2E8\t0x5988\n0xC2E9\t0x9EBB\n0xC2EA\t0x739B\n0xC2EB\t0x7801\n0xC2EC\t0x8682\n0xC2ED\t0x9A6C\n0xC2EE\t0x9A82\n0xC2EF\t0x561B\n0xC2F0\t0x5417\n0xC2F1\t0x57CB\n0xC2F2\t0x4E70\n0xC2F3\t0x9EA6\n0xC2F4\t0x5356\n0xC2F5\t0x8FC8\n0xC2F6\t0x8109\n0xC2F7\t0x7792\n0xC2F8\t0x9992\n0xC2F9\t0x86EE\n0xC2FA\t0x6EE1\n0xC2FB\t0x8513\n0xC2FC\t0x66FC\n0xC2FD\t0x6162\n0xC2FE\t0x6F2B\n0xC3A1\t0x8C29\n0xC3A2\t0x8292\n0xC3A3\t0x832B\n0xC3A4\t0x76F2\n0xC3A5\t0x6C13\n0xC3A6\t0x5FD9\n0xC3A7\t0x83BD\n0xC3A8\t0x732B\n0xC3A9\t0x8305\n0xC3AA\t0x951A\n0xC3AB\t0x6BDB\n0xC3AC\t0x77DB\n0xC3AD\t0x94C6\n0xC3AE\t0x536F\n0xC3AF\t0x8302\n0xC3B0\t0x5192\n0xC3B1\t0x5E3D\n0xC3B2\t0x8C8C\n0xC3B3\t0x8D38\n0xC3B4\t0x4E48\n0xC3B5\t0x73AB\n0xC3B6\t0x679A\n0xC3B7\t0x6885\n0xC3B8\t0x9176\n0xC3B9\t0x9709\n0xC3BA\t0x7164\n0xC3BB\t0x6CA1\n0xC3BC\t0x7709\n0xC3BD\t0x5A92\n0xC3BE\t0x9541\n0xC3BF\t0x6BCF\n0xC3C0\t0x7F8E\n0xC3C1\t0x6627\n0xC3C2\t0x5BD0\n0xC3C3\t0x59B9\n0xC3C4\t0x5A9A\n0xC3C5\t0x95E8\n0xC3C6\t0x95F7\n0xC3C7\t0x4EEC\n0xC3C8\t0x840C\n0xC3C9\t0x8499\n0xC3CA\t0x6AAC\n0xC3CB\t0x76DF\n0xC3CC\t0x9530\n0xC3CD\t0x731B\n0xC3CE\t0x68A6\n0xC3CF\t0x5B5F\n0xC3D0\t0x772F\n0xC3D1\t0x919A\n0xC3D2\t0x9761\n0xC3D3\t0x7CDC\n0xC3D4\t0x8FF7\n0xC3D5\t0x8C1C\n0xC3D6\t0x5F25\n0xC3D7\t0x7C73\n0xC3D8\t0x79D8\n0xC3D9\t0x89C5\n0xC3DA\t0x6CCC\n0xC3DB\t0x871C\n0xC3DC\t0x5BC6\n0xC3DD\t0x5E42\n0xC3DE\t0x68C9\n0xC3DF\t0x7720\n0xC3E0\t0x7EF5\n0xC3E1\t0x5195\n0xC3E2\t0x514D\n0xC3E3\t0x52C9\n0xC3E4\t0x5A29\n0xC3E5\t0x7F05\n0xC3E6\t0x9762\n0xC3E7\t0x82D7\n0xC3E8\t0x63CF\n0xC3E9\t0x7784\n0xC3EA\t0x85D0\n0xC3EB\t0x79D2\n0xC3EC\t0x6E3A\n0xC3ED\t0x5E99\n0xC3EE\t0x5999\n0xC3EF\t0x8511\n0xC3F0\t0x706D\n0xC3F1\t0x6C11\n0xC3F2\t0x62BF\n0xC3F3\t0x76BF\n0xC3F4\t0x654F\n0xC3F5\t0x60AF\n0xC3F6\t0x95FD\n0xC3F7\t0x660E\n0xC3F8\t0x879F\n0xC3F9\t0x9E23\n0xC3FA\t0x94ED\n0xC3FB\t0x540D\n0xC3FC\t0x547D\n0xC3FD\t0x8C2C\n0xC3FE\t0x6478\n0xC4A1\t0x6479\n0xC4A2\t0x8611\n0xC4A3\t0x6A21\n0xC4A4\t0x819C\n0xC4A5\t0x78E8\n0xC4A6\t0x6469\n0xC4A7\t0x9B54\n0xC4A8\t0x62B9\n0xC4A9\t0x672B\n0xC4AA\t0x83AB\n0xC4AB\t0x58A8\n0xC4AC\t0x9ED8\n0xC4AD\t0x6CAB\n0xC4AE\t0x6F20\n0xC4AF\t0x5BDE\n0xC4B0\t0x964C\n0xC4B1\t0x8C0B\n0xC4B2\t0x725F\n0xC4B3\t0x67D0\n0xC4B4\t0x62C7\n0xC4B5\t0x7261\n0xC4B6\t0x4EA9\n0xC4B7\t0x59C6\n0xC4B8\t0x6BCD\n0xC4B9\t0x5893\n0xC4BA\t0x66AE\n0xC4BB\t0x5E55\n0xC4BC\t0x52DF\n0xC4BD\t0x6155\n0xC4BE\t0x6728\n0xC4BF\t0x76EE\n0xC4C0\t0x7766\n0xC4C1\t0x7267\n0xC4C2\t0x7A46\n0xC4C3\t0x62FF\n0xC4C4\t0x54EA\n0xC4C5\t0x5450\n0xC4C6\t0x94A0\n0xC4C7\t0x90A3\n0xC4C8\t0x5A1C\n0xC4C9\t0x7EB3\n0xC4CA\t0x6C16\n0xC4CB\t0x4E43\n0xC4CC\t0x5976\n0xC4CD\t0x8010\n0xC4CE\t0x5948\n0xC4CF\t0x5357\n0xC4D0\t0x7537\n0xC4D1\t0x96BE\n0xC4D2\t0x56CA\n0xC4D3\t0x6320\n0xC4D4\t0x8111\n0xC4D5\t0x607C\n0xC4D6\t0x95F9\n0xC4D7\t0x6DD6\n0xC4D8\t0x5462\n0xC4D9\t0x9981\n0xC4DA\t0x5185\n0xC4DB\t0x5AE9\n0xC4DC\t0x80FD\n0xC4DD\t0x59AE\n0xC4DE\t0x9713\n0xC4DF\t0x502A\n0xC4E0\t0x6CE5\n0xC4E1\t0x5C3C\n0xC4E2\t0x62DF\n0xC4E3\t0x4F60\n0xC4E4\t0x533F\n0xC4E5\t0x817B\n0xC4E6\t0x9006\n0xC4E7\t0x6EBA\n0xC4E8\t0x852B\n0xC4E9\t0x62C8\n0xC4EA\t0x5E74\n0xC4EB\t0x78BE\n0xC4EC\t0x64B5\n0xC4ED\t0x637B\n0xC4EE\t0x5FF5\n0xC4EF\t0x5A18\n0xC4F0\t0x917F\n0xC4F1\t0x9E1F\n0xC4F2\t0x5C3F\n0xC4F3\t0x634F\n0xC4F4\t0x8042\n0xC4F5\t0x5B7D\n0xC4F6\t0x556E\n0xC4F7\t0x954A\n0xC4F8\t0x954D\n0xC4F9\t0x6D85\n0xC4FA\t0x60A8\n0xC4FB\t0x67E0\n0xC4FC\t0x72DE\n0xC4FD\t0x51DD\n0xC4FE\t0x5B81\n0xC5A1\t0x62E7\n0xC5A2\t0x6CDE\n0xC5A3\t0x725B\n0xC5A4\t0x626D\n0xC5A5\t0x94AE\n0xC5A6\t0x7EBD\n0xC5A7\t0x8113\n0xC5A8\t0x6D53\n0xC5A9\t0x519C\n0xC5AA\t0x5F04\n0xC5AB\t0x5974\n0xC5AC\t0x52AA\n0xC5AD\t0x6012\n0xC5AE\t0x5973\n0xC5AF\t0x6696\n0xC5B0\t0x8650\n0xC5B1\t0x759F\n0xC5B2\t0x632A\n0xC5B3\t0x61E6\n0xC5B4\t0x7CEF\n0xC5B5\t0x8BFA\n0xC5B6\t0x54E6\n0xC5B7\t0x6B27\n0xC5B8\t0x9E25\n0xC5B9\t0x6BB4\n0xC5BA\t0x85D5\n0xC5BB\t0x5455\n0xC5BC\t0x5076\n0xC5BD\t0x6CA4\n0xC5BE\t0x556A\n0xC5BF\t0x8DB4\n0xC5C0\t0x722C\n0xC5C1\t0x5E15\n0xC5C2\t0x6015\n0xC5C3\t0x7436\n0xC5C4\t0x62CD\n0xC5C5\t0x6392\n0xC5C6\t0x724C\n0xC5C7\t0x5F98\n0xC5C8\t0x6E43\n0xC5C9\t0x6D3E\n0xC5CA\t0x6500\n0xC5CB\t0x6F58\n0xC5CC\t0x76D8\n0xC5CD\t0x78D0\n0xC5CE\t0x76FC\n0xC5CF\t0x7554\n0xC5D0\t0x5224\n0xC5D1\t0x53DB\n0xC5D2\t0x4E53\n0xC5D3\t0x5E9E\n0xC5D4\t0x65C1\n0xC5D5\t0x802A\n0xC5D6\t0x80D6\n0xC5D7\t0x629B\n0xC5D8\t0x5486\n0xC5D9\t0x5228\n0xC5DA\t0x70AE\n0xC5DB\t0x888D\n0xC5DC\t0x8DD1\n0xC5DD\t0x6CE1\n0xC5DE\t0x5478\n0xC5DF\t0x80DA\n0xC5E0\t0x57F9\n0xC5E1\t0x88F4\n0xC5E2\t0x8D54\n0xC5E3\t0x966A\n0xC5E4\t0x914D\n0xC5E5\t0x4F69\n0xC5E6\t0x6C9B\n0xC5E7\t0x55B7\n0xC5E8\t0x76C6\n0xC5E9\t0x7830\n0xC5EA\t0x62A8\n0xC5EB\t0x70F9\n0xC5EC\t0x6F8E\n0xC5ED\t0x5F6D\n0xC5EE\t0x84EC\n0xC5EF\t0x68DA\n0xC5F0\t0x787C\n0xC5F1\t0x7BF7\n0xC5F2\t0x81A8\n0xC5F3\t0x670B\n0xC5F4\t0x9E4F\n0xC5F5\t0x6367\n0xC5F6\t0x78B0\n0xC5F7\t0x576F\n0xC5F8\t0x7812\n0xC5F9\t0x9739\n0xC5FA\t0x6279\n0xC5FB\t0x62AB\n0xC5FC\t0x5288\n0xC5FD\t0x7435\n0xC5FE\t0x6BD7\n0xC6A1\t0x5564\n0xC6A2\t0x813E\n0xC6A3\t0x75B2\n0xC6A4\t0x76AE\n0xC6A5\t0x5339\n0xC6A6\t0x75DE\n0xC6A7\t0x50FB\n0xC6A8\t0x5C41\n0xC6A9\t0x8B6C\n0xC6AA\t0x7BC7\n0xC6AB\t0x504F\n0xC6AC\t0x7247\n0xC6AD\t0x9A97\n0xC6AE\t0x98D8\n0xC6AF\t0x6F02\n0xC6B0\t0x74E2\n0xC6B1\t0x7968\n0xC6B2\t0x6487\n0xC6B3\t0x77A5\n0xC6B4\t0x62FC\n0xC6B5\t0x9891\n0xC6B6\t0x8D2B\n0xC6B7\t0x54C1\n0xC6B8\t0x8058\n0xC6B9\t0x4E52\n0xC6BA\t0x576A\n0xC6BB\t0x82F9\n0xC6BC\t0x840D\n0xC6BD\t0x5E73\n0xC6BE\t0x51ED\n0xC6BF\t0x74F6\n0xC6C0\t0x8BC4\n0xC6C1\t0x5C4F\n0xC6C2\t0x5761\n0xC6C3\t0x6CFC\n0xC6C4\t0x9887\n0xC6C5\t0x5A46\n0xC6C6\t0x7834\n0xC6C7\t0x9B44\n0xC6C8\t0x8FEB\n0xC6C9\t0x7C95\n0xC6CA\t0x5256\n0xC6CB\t0x6251\n0xC6CC\t0x94FA\n0xC6CD\t0x4EC6\n0xC6CE\t0x8386\n0xC6CF\t0x8461\n0xC6D0\t0x83E9\n0xC6D1\t0x84B2\n0xC6D2\t0x57D4\n0xC6D3\t0x6734\n0xC6D4\t0x5703\n0xC6D5\t0x666E\n0xC6D6\t0x6D66\n0xC6D7\t0x8C31\n0xC6D8\t0x66DD\n0xC6D9\t0x7011\n0xC6DA\t0x671F\n0xC6DB\t0x6B3A\n0xC6DC\t0x6816\n0xC6DD\t0x621A\n0xC6DE\t0x59BB\n0xC6DF\t0x4E03\n0xC6E0\t0x51C4\n0xC6E1\t0x6F06\n0xC6E2\t0x67D2\n0xC6E3\t0x6C8F\n0xC6E4\t0x5176\n0xC6E5\t0x68CB\n0xC6E6\t0x5947\n0xC6E7\t0x6B67\n0xC6E8\t0x7566\n0xC6E9\t0x5D0E\n0xC6EA\t0x8110\n0xC6EB\t0x9F50\n0xC6EC\t0x65D7\n0xC6ED\t0x7948\n0xC6EE\t0x7941\n0xC6EF\t0x9A91\n0xC6F0\t0x8D77\n0xC6F1\t0x5C82\n0xC6F2\t0x4E5E\n0xC6F3\t0x4F01\n0xC6F4\t0x542F\n0xC6F5\t0x5951\n0xC6F6\t0x780C\n0xC6F7\t0x5668\n0xC6F8\t0x6C14\n0xC6F9\t0x8FC4\n0xC6FA\t0x5F03\n0xC6FB\t0x6C7D\n0xC6FC\t0x6CE3\n0xC6FD\t0x8BAB\n0xC6FE\t0x6390\n0xC7A1\t0x6070\n0xC7A2\t0x6D3D\n0xC7A3\t0x7275\n0xC7A4\t0x6266\n0xC7A5\t0x948E\n0xC7A6\t0x94C5\n0xC7A7\t0x5343\n0xC7A8\t0x8FC1\n0xC7A9\t0x7B7E\n0xC7AA\t0x4EDF\n0xC7AB\t0x8C26\n0xC7AC\t0x4E7E\n0xC7AD\t0x9ED4\n0xC7AE\t0x94B1\n0xC7AF\t0x94B3\n0xC7B0\t0x524D\n0xC7B1\t0x6F5C\n0xC7B2\t0x9063\n0xC7B3\t0x6D45\n0xC7B4\t0x8C34\n0xC7B5\t0x5811\n0xC7B6\t0x5D4C\n0xC7B7\t0x6B20\n0xC7B8\t0x6B49\n0xC7B9\t0x67AA\n0xC7BA\t0x545B\n0xC7BB\t0x8154\n0xC7BC\t0x7F8C\n0xC7BD\t0x5899\n0xC7BE\t0x8537\n0xC7BF\t0x5F3A\n0xC7C0\t0x62A2\n0xC7C1\t0x6A47\n0xC7C2\t0x9539\n0xC7C3\t0x6572\n0xC7C4\t0x6084\n0xC7C5\t0x6865\n0xC7C6\t0x77A7\n0xC7C7\t0x4E54\n0xC7C8\t0x4FA8\n0xC7C9\t0x5DE7\n0xC7CA\t0x9798\n0xC7CB\t0x64AC\n0xC7CC\t0x7FD8\n0xC7CD\t0x5CED\n0xC7CE\t0x4FCF\n0xC7CF\t0x7A8D\n0xC7D0\t0x5207\n0xC7D1\t0x8304\n0xC7D2\t0x4E14\n0xC7D3\t0x602F\n0xC7D4\t0x7A83\n0xC7D5\t0x94A6\n0xC7D6\t0x4FB5\n0xC7D7\t0x4EB2\n0xC7D8\t0x79E6\n0xC7D9\t0x7434\n0xC7DA\t0x52E4\n0xC7DB\t0x82B9\n0xC7DC\t0x64D2\n0xC7DD\t0x79BD\n0xC7DE\t0x5BDD\n0xC7DF\t0x6C81\n0xC7E0\t0x9752\n0xC7E1\t0x8F7B\n0xC7E2\t0x6C22\n0xC7E3\t0x503E\n0xC7E4\t0x537F\n0xC7E5\t0x6E05\n0xC7E6\t0x64CE\n0xC7E7\t0x6674\n0xC7E8\t0x6C30\n0xC7E9\t0x60C5\n0xC7EA\t0x9877\n0xC7EB\t0x8BF7\n0xC7EC\t0x5E86\n0xC7ED\t0x743C\n0xC7EE\t0x7A77\n0xC7EF\t0x79CB\n0xC7F0\t0x4E18\n0xC7F1\t0x90B1\n0xC7F2\t0x7403\n0xC7F3\t0x6C42\n0xC7F4\t0x56DA\n0xC7F5\t0x914B\n0xC7F6\t0x6CC5\n0xC7F7\t0x8D8B\n0xC7F8\t0x533A\n0xC7F9\t0x86C6\n0xC7FA\t0x66F2\n0xC7FB\t0x8EAF\n0xC7FC\t0x5C48\n0xC7FD\t0x9A71\n0xC7FE\t0x6E20\n0xC8A1\t0x53D6\n0xC8A2\t0x5A36\n0xC8A3\t0x9F8B\n0xC8A4\t0x8DA3\n0xC8A5\t0x53BB\n0xC8A6\t0x5708\n0xC8A7\t0x98A7\n0xC8A8\t0x6743\n0xC8A9\t0x919B\n0xC8AA\t0x6CC9\n0xC8AB\t0x5168\n0xC8AC\t0x75CA\n0xC8AD\t0x62F3\n0xC8AE\t0x72AC\n0xC8AF\t0x5238\n0xC8B0\t0x529D\n0xC8B1\t0x7F3A\n0xC8B2\t0x7094\n0xC8B3\t0x7638\n0xC8B4\t0x5374\n0xC8B5\t0x9E4A\n0xC8B6\t0x69B7\n0xC8B7\t0x786E\n0xC8B8\t0x96C0\n0xC8B9\t0x88D9\n0xC8BA\t0x7FA4\n0xC8BB\t0x7136\n0xC8BC\t0x71C3\n0xC8BD\t0x5189\n0xC8BE\t0x67D3\n0xC8BF\t0x74E4\n0xC8C0\t0x58E4\n0xC8C1\t0x6518\n0xC8C2\t0x56B7\n0xC8C3\t0x8BA9\n0xC8C4\t0x9976\n0xC8C5\t0x6270\n0xC8C6\t0x7ED5\n0xC8C7\t0x60F9\n0xC8C8\t0x70ED\n0xC8C9\t0x58EC\n0xC8CA\t0x4EC1\n0xC8CB\t0x4EBA\n0xC8CC\t0x5FCD\n0xC8CD\t0x97E7\n0xC8CE\t0x4EFB\n0xC8CF\t0x8BA4\n0xC8D0\t0x5203\n0xC8D1\t0x598A\n0xC8D2\t0x7EAB\n0xC8D3\t0x6254\n0xC8D4\t0x4ECD\n0xC8D5\t0x65E5\n0xC8D6\t0x620E\n0xC8D7\t0x8338\n0xC8D8\t0x84C9\n0xC8D9\t0x8363\n0xC8DA\t0x878D\n0xC8DB\t0x7194\n0xC8DC\t0x6EB6\n0xC8DD\t0x5BB9\n0xC8DE\t0x7ED2\n0xC8DF\t0x5197\n0xC8E0\t0x63C9\n0xC8E1\t0x67D4\n0xC8E2\t0x8089\n0xC8E3\t0x8339\n0xC8E4\t0x8815\n0xC8E5\t0x5112\n0xC8E6\t0x5B7A\n0xC8E7\t0x5982\n0xC8E8\t0x8FB1\n0xC8E9\t0x4E73\n0xC8EA\t0x6C5D\n0xC8EB\t0x5165\n0xC8EC\t0x8925\n0xC8ED\t0x8F6F\n0xC8EE\t0x962E\n0xC8EF\t0x854A\n0xC8F0\t0x745E\n0xC8F1\t0x9510\n0xC8F2\t0x95F0\n0xC8F3\t0x6DA6\n0xC8F4\t0x82E5\n0xC8F5\t0x5F31\n0xC8F6\t0x6492\n0xC8F7\t0x6D12\n0xC8F8\t0x8428\n0xC8F9\t0x816E\n0xC8FA\t0x9CC3\n0xC8FB\t0x585E\n0xC8FC\t0x8D5B\n0xC8FD\t0x4E09\n0xC8FE\t0x53C1\n0xC9A1\t0x4F1E\n0xC9A2\t0x6563\n0xC9A3\t0x6851\n0xC9A4\t0x55D3\n0xC9A5\t0x4E27\n0xC9A6\t0x6414\n0xC9A7\t0x9A9A\n0xC9A8\t0x626B\n0xC9A9\t0x5AC2\n0xC9AA\t0x745F\n0xC9AB\t0x8272\n0xC9AC\t0x6DA9\n0xC9AD\t0x68EE\n0xC9AE\t0x50E7\n0xC9AF\t0x838E\n0xC9B0\t0x7802\n0xC9B1\t0x6740\n0xC9B2\t0x5239\n0xC9B3\t0x6C99\n0xC9B4\t0x7EB1\n0xC9B5\t0x50BB\n0xC9B6\t0x5565\n0xC9B7\t0x715E\n0xC9B8\t0x7B5B\n0xC9B9\t0x6652\n0xC9BA\t0x73CA\n0xC9BB\t0x82EB\n0xC9BC\t0x6749\n0xC9BD\t0x5C71\n0xC9BE\t0x5220\n0xC9BF\t0x717D\n0xC9C0\t0x886B\n0xC9C1\t0x95EA\n0xC9C2\t0x9655\n0xC9C3\t0x64C5\n0xC9C4\t0x8D61\n0xC9C5\t0x81B3\n0xC9C6\t0x5584\n0xC9C7\t0x6C55\n0xC9C8\t0x6247\n0xC9C9\t0x7F2E\n0xC9CA\t0x5892\n0xC9CB\t0x4F24\n0xC9CC\t0x5546\n0xC9CD\t0x8D4F\n0xC9CE\t0x664C\n0xC9CF\t0x4E0A\n0xC9D0\t0x5C1A\n0xC9D1\t0x88F3\n0xC9D2\t0x68A2\n0xC9D3\t0x634E\n0xC9D4\t0x7A0D\n0xC9D5\t0x70E7\n0xC9D6\t0x828D\n0xC9D7\t0x52FA\n0xC9D8\t0x97F6\n0xC9D9\t0x5C11\n0xC9DA\t0x54E8\n0xC9DB\t0x90B5\n0xC9DC\t0x7ECD\n0xC9DD\t0x5962\n0xC9DE\t0x8D4A\n0xC9DF\t0x86C7\n0xC9E0\t0x820C\n0xC9E1\t0x820D\n0xC9E2\t0x8D66\n0xC9E3\t0x6444\n0xC9E4\t0x5C04\n0xC9E5\t0x6151\n0xC9E6\t0x6D89\n0xC9E7\t0x793E\n0xC9E8\t0x8BBE\n0xC9E9\t0x7837\n0xC9EA\t0x7533\n0xC9EB\t0x547B\n0xC9EC\t0x4F38\n0xC9ED\t0x8EAB\n0xC9EE\t0x6DF1\n0xC9EF\t0x5A20\n0xC9F0\t0x7EC5\n0xC9F1\t0x795E\n0xC9F2\t0x6C88\n0xC9F3\t0x5BA1\n0xC9F4\t0x5A76\n0xC9F5\t0x751A\n0xC9F6\t0x80BE\n0xC9F7\t0x614E\n0xC9F8\t0x6E17\n0xC9F9\t0x58F0\n0xC9FA\t0x751F\n0xC9FB\t0x7525\n0xC9FC\t0x7272\n0xC9FD\t0x5347\n0xC9FE\t0x7EF3\n0xCAA1\t0x7701\n0xCAA2\t0x76DB\n0xCAA3\t0x5269\n0xCAA4\t0x80DC\n0xCAA5\t0x5723\n0xCAA6\t0x5E08\n0xCAA7\t0x5931\n0xCAA8\t0x72EE\n0xCAA9\t0x65BD\n0xCAAA\t0x6E7F\n0xCAAB\t0x8BD7\n0xCAAC\t0x5C38\n0xCAAD\t0x8671\n0xCAAE\t0x5341\n0xCAAF\t0x77F3\n0xCAB0\t0x62FE\n0xCAB1\t0x65F6\n0xCAB2\t0x4EC0\n0xCAB3\t0x98DF\n0xCAB4\t0x8680\n0xCAB5\t0x5B9E\n0xCAB6\t0x8BC6\n0xCAB7\t0x53F2\n0xCAB8\t0x77E2\n0xCAB9\t0x4F7F\n0xCABA\t0x5C4E\n0xCABB\t0x9A76\n0xCABC\t0x59CB\n0xCABD\t0x5F0F\n0xCABE\t0x793A\n0xCABF\t0x58EB\n0xCAC0\t0x4E16\n0xCAC1\t0x67FF\n0xCAC2\t0x4E8B\n0xCAC3\t0x62ED\n0xCAC4\t0x8A93\n0xCAC5\t0x901D\n0xCAC6\t0x52BF\n0xCAC7\t0x662F\n0xCAC8\t0x55DC\n0xCAC9\t0x566C\n0xCACA\t0x9002\n0xCACB\t0x4ED5\n0xCACC\t0x4F8D\n0xCACD\t0x91CA\n0xCACE\t0x9970\n0xCACF\t0x6C0F\n0xCAD0\t0x5E02\n0xCAD1\t0x6043\n0xCAD2\t0x5BA4\n0xCAD3\t0x89C6\n0xCAD4\t0x8BD5\n0xCAD5\t0x6536\n0xCAD6\t0x624B\n0xCAD7\t0x9996\n0xCAD8\t0x5B88\n0xCAD9\t0x5BFF\n0xCADA\t0x6388\n0xCADB\t0x552E\n0xCADC\t0x53D7\n0xCADD\t0x7626\n0xCADE\t0x517D\n0xCADF\t0x852C\n0xCAE0\t0x67A2\n0xCAE1\t0x68B3\n0xCAE2\t0x6B8A\n0xCAE3\t0x6292\n0xCAE4\t0x8F93\n0xCAE5\t0x53D4\n0xCAE6\t0x8212\n0xCAE7\t0x6DD1\n0xCAE8\t0x758F\n0xCAE9\t0x4E66\n0xCAEA\t0x8D4E\n0xCAEB\t0x5B70\n0xCAEC\t0x719F\n0xCAED\t0x85AF\n0xCAEE\t0x6691\n0xCAEF\t0x66D9\n0xCAF0\t0x7F72\n0xCAF1\t0x8700\n0xCAF2\t0x9ECD\n0xCAF3\t0x9F20\n0xCAF4\t0x5C5E\n0xCAF5\t0x672F\n0xCAF6\t0x8FF0\n0xCAF7\t0x6811\n0xCAF8\t0x675F\n0xCAF9\t0x620D\n0xCAFA\t0x7AD6\n0xCAFB\t0x5885\n0xCAFC\t0x5EB6\n0xCAFD\t0x6570\n0xCAFE\t0x6F31\n0xCBA1\t0x6055\n0xCBA2\t0x5237\n0xCBA3\t0x800D\n0xCBA4\t0x6454\n0xCBA5\t0x8870\n0xCBA6\t0x7529\n0xCBA7\t0x5E05\n0xCBA8\t0x6813\n0xCBA9\t0x62F4\n0xCBAA\t0x971C\n0xCBAB\t0x53CC\n0xCBAC\t0x723D\n0xCBAD\t0x8C01\n0xCBAE\t0x6C34\n0xCBAF\t0x7761\n0xCBB0\t0x7A0E\n0xCBB1\t0x542E\n0xCBB2\t0x77AC\n0xCBB3\t0x987A\n0xCBB4\t0x821C\n0xCBB5\t0x8BF4\n0xCBB6\t0x7855\n0xCBB7\t0x6714\n0xCBB8\t0x70C1\n0xCBB9\t0x65AF\n0xCBBA\t0x6495\n0xCBBB\t0x5636\n0xCBBC\t0x601D\n0xCBBD\t0x79C1\n0xCBBE\t0x53F8\n0xCBBF\t0x4E1D\n0xCBC0\t0x6B7B\n0xCBC1\t0x8086\n0xCBC2\t0x5BFA\n0xCBC3\t0x55E3\n0xCBC4\t0x56DB\n0xCBC5\t0x4F3A\n0xCBC6\t0x4F3C\n0xCBC7\t0x9972\n0xCBC8\t0x5DF3\n0xCBC9\t0x677E\n0xCBCA\t0x8038\n0xCBCB\t0x6002\n0xCBCC\t0x9882\n0xCBCD\t0x9001\n0xCBCE\t0x5B8B\n0xCBCF\t0x8BBC\n0xCBD0\t0x8BF5\n0xCBD1\t0x641C\n0xCBD2\t0x8258\n0xCBD3\t0x64DE\n0xCBD4\t0x55FD\n0xCBD5\t0x82CF\n0xCBD6\t0x9165\n0xCBD7\t0x4FD7\n0xCBD8\t0x7D20\n0xCBD9\t0x901F\n0xCBDA\t0x7C9F\n0xCBDB\t0x50F3\n0xCBDC\t0x5851\n0xCBDD\t0x6EAF\n0xCBDE\t0x5BBF\n0xCBDF\t0x8BC9\n0xCBE0\t0x8083\n0xCBE1\t0x9178\n0xCBE2\t0x849C\n0xCBE3\t0x7B97\n0xCBE4\t0x867D\n0xCBE5\t0x968B\n0xCBE6\t0x968F\n0xCBE7\t0x7EE5\n0xCBE8\t0x9AD3\n0xCBE9\t0x788E\n0xCBEA\t0x5C81\n0xCBEB\t0x7A57\n0xCBEC\t0x9042\n0xCBED\t0x96A7\n0xCBEE\t0x795F\n0xCBEF\t0x5B59\n0xCBF0\t0x635F\n0xCBF1\t0x7B0B\n0xCBF2\t0x84D1\n0xCBF3\t0x68AD\n0xCBF4\t0x5506\n0xCBF5\t0x7F29\n0xCBF6\t0x7410\n0xCBF7\t0x7D22\n0xCBF8\t0x9501\n0xCBF9\t0x6240\n0xCBFA\t0x584C\n0xCBFB\t0x4ED6\n0xCBFC\t0x5B83\n0xCBFD\t0x5979\n0xCBFE\t0x5854\n0xCCA1\t0x736D\n0xCCA2\t0x631E\n0xCCA3\t0x8E4B\n0xCCA4\t0x8E0F\n0xCCA5\t0x80CE\n0xCCA6\t0x82D4\n0xCCA7\t0x62AC\n0xCCA8\t0x53F0\n0xCCA9\t0x6CF0\n0xCCAA\t0x915E\n0xCCAB\t0x592A\n0xCCAC\t0x6001\n0xCCAD\t0x6C70\n0xCCAE\t0x574D\n0xCCAF\t0x644A\n0xCCB0\t0x8D2A\n0xCCB1\t0x762B\n0xCCB2\t0x6EE9\n0xCCB3\t0x575B\n0xCCB4\t0x6A80\n0xCCB5\t0x75F0\n0xCCB6\t0x6F6D\n0xCCB7\t0x8C2D\n0xCCB8\t0x8C08\n0xCCB9\t0x5766\n0xCCBA\t0x6BEF\n0xCCBB\t0x8892\n0xCCBC\t0x78B3\n0xCCBD\t0x63A2\n0xCCBE\t0x53F9\n0xCCBF\t0x70AD\n0xCCC0\t0x6C64\n0xCCC1\t0x5858\n0xCCC2\t0x642A\n0xCCC3\t0x5802\n0xCCC4\t0x68E0\n0xCCC5\t0x819B\n0xCCC6\t0x5510\n0xCCC7\t0x7CD6\n0xCCC8\t0x5018\n0xCCC9\t0x8EBA\n0xCCCA\t0x6DCC\n0xCCCB\t0x8D9F\n0xCCCC\t0x70EB\n0xCCCD\t0x638F\n0xCCCE\t0x6D9B\n0xCCCF\t0x6ED4\n0xCCD0\t0x7EE6\n0xCCD1\t0x8404\n0xCCD2\t0x6843\n0xCCD3\t0x9003\n0xCCD4\t0x6DD8\n0xCCD5\t0x9676\n0xCCD6\t0x8BA8\n0xCCD7\t0x5957\n0xCCD8\t0x7279\n0xCCD9\t0x85E4\n0xCCDA\t0x817E\n0xCCDB\t0x75BC\n0xCCDC\t0x8A8A\n0xCCDD\t0x68AF\n0xCCDE\t0x5254\n0xCCDF\t0x8E22\n0xCCE0\t0x9511\n0xCCE1\t0x63D0\n0xCCE2\t0x9898\n0xCCE3\t0x8E44\n0xCCE4\t0x557C\n0xCCE5\t0x4F53\n0xCCE6\t0x66FF\n0xCCE7\t0x568F\n0xCCE8\t0x60D5\n0xCCE9\t0x6D95\n0xCCEA\t0x5243\n0xCCEB\t0x5C49\n0xCCEC\t0x5929\n0xCCED\t0x6DFB\n0xCCEE\t0x586B\n0xCCEF\t0x7530\n0xCCF0\t0x751C\n0xCCF1\t0x606C\n0xCCF2\t0x8214\n0xCCF3\t0x8146\n0xCCF4\t0x6311\n0xCCF5\t0x6761\n0xCCF6\t0x8FE2\n0xCCF7\t0x773A\n0xCCF8\t0x8DF3\n0xCCF9\t0x8D34\n0xCCFA\t0x94C1\n0xCCFB\t0x5E16\n0xCCFC\t0x5385\n0xCCFD\t0x542C\n0xCCFE\t0x70C3\n0xCDA1\t0x6C40\n0xCDA2\t0x5EF7\n0xCDA3\t0x505C\n0xCDA4\t0x4EAD\n0xCDA5\t0x5EAD\n0xCDA6\t0x633A\n0xCDA7\t0x8247\n0xCDA8\t0x901A\n0xCDA9\t0x6850\n0xCDAA\t0x916E\n0xCDAB\t0x77B3\n0xCDAC\t0x540C\n0xCDAD\t0x94DC\n0xCDAE\t0x5F64\n0xCDAF\t0x7AE5\n0xCDB0\t0x6876\n0xCDB1\t0x6345\n0xCDB2\t0x7B52\n0xCDB3\t0x7EDF\n0xCDB4\t0x75DB\n0xCDB5\t0x5077\n0xCDB6\t0x6295\n0xCDB7\t0x5934\n0xCDB8\t0x900F\n0xCDB9\t0x51F8\n0xCDBA\t0x79C3\n0xCDBB\t0x7A81\n0xCDBC\t0x56FE\n0xCDBD\t0x5F92\n0xCDBE\t0x9014\n0xCDBF\t0x6D82\n0xCDC0\t0x5C60\n0xCDC1\t0x571F\n0xCDC2\t0x5410\n0xCDC3\t0x5154\n0xCDC4\t0x6E4D\n0xCDC5\t0x56E2\n0xCDC6\t0x63A8\n0xCDC7\t0x9893\n0xCDC8\t0x817F\n0xCDC9\t0x8715\n0xCDCA\t0x892A\n0xCDCB\t0x9000\n0xCDCC\t0x541E\n0xCDCD\t0x5C6F\n0xCDCE\t0x81C0\n0xCDCF\t0x62D6\n0xCDD0\t0x6258\n0xCDD1\t0x8131\n0xCDD2\t0x9E35\n0xCDD3\t0x9640\n0xCDD4\t0x9A6E\n0xCDD5\t0x9A7C\n0xCDD6\t0x692D\n0xCDD7\t0x59A5\n0xCDD8\t0x62D3\n0xCDD9\t0x553E\n0xCDDA\t0x6316\n0xCDDB\t0x54C7\n0xCDDC\t0x86D9\n0xCDDD\t0x6D3C\n0xCDDE\t0x5A03\n0xCDDF\t0x74E6\n0xCDE0\t0x889C\n0xCDE1\t0x6B6A\n0xCDE2\t0x5916\n0xCDE3\t0x8C4C\n0xCDE4\t0x5F2F\n0xCDE5\t0x6E7E\n0xCDE6\t0x73A9\n0xCDE7\t0x987D\n0xCDE8\t0x4E38\n0xCDE9\t0x70F7\n0xCDEA\t0x5B8C\n0xCDEB\t0x7897\n0xCDEC\t0x633D\n0xCDED\t0x665A\n0xCDEE\t0x7696\n0xCDEF\t0x60CB\n0xCDF0\t0x5B9B\n0xCDF1\t0x5A49\n0xCDF2\t0x4E07\n0xCDF3\t0x8155\n0xCDF4\t0x6C6A\n0xCDF5\t0x738B\n0xCDF6\t0x4EA1\n0xCDF7\t0x6789\n0xCDF8\t0x7F51\n0xCDF9\t0x5F80\n0xCDFA\t0x65FA\n0xCDFB\t0x671B\n0xCDFC\t0x5FD8\n0xCDFD\t0x5984\n0xCDFE\t0x5A01\n0xCEA1\t0x5DCD\n0xCEA2\t0x5FAE\n0xCEA3\t0x5371\n0xCEA4\t0x97E6\n0xCEA5\t0x8FDD\n0xCEA6\t0x6845\n0xCEA7\t0x56F4\n0xCEA8\t0x552F\n0xCEA9\t0x60DF\n0xCEAA\t0x4E3A\n0xCEAB\t0x6F4D\n0xCEAC\t0x7EF4\n0xCEAD\t0x82C7\n0xCEAE\t0x840E\n0xCEAF\t0x59D4\n0xCEB0\t0x4F1F\n0xCEB1\t0x4F2A\n0xCEB2\t0x5C3E\n0xCEB3\t0x7EAC\n0xCEB4\t0x672A\n0xCEB5\t0x851A\n0xCEB6\t0x5473\n0xCEB7\t0x754F\n0xCEB8\t0x80C3\n0xCEB9\t0x5582\n0xCEBA\t0x9B4F\n0xCEBB\t0x4F4D\n0xCEBC\t0x6E2D\n0xCEBD\t0x8C13\n0xCEBE\t0x5C09\n0xCEBF\t0x6170\n0xCEC0\t0x536B\n0xCEC1\t0x761F\n0xCEC2\t0x6E29\n0xCEC3\t0x868A\n0xCEC4\t0x6587\n0xCEC5\t0x95FB\n0xCEC6\t0x7EB9\n0xCEC7\t0x543B\n0xCEC8\t0x7A33\n0xCEC9\t0x7D0A\n0xCECA\t0x95EE\n0xCECB\t0x55E1\n0xCECC\t0x7FC1\n0xCECD\t0x74EE\n0xCECE\t0x631D\n0xCECF\t0x8717\n0xCED0\t0x6DA1\n0xCED1\t0x7A9D\n0xCED2\t0x6211\n0xCED3\t0x65A1\n0xCED4\t0x5367\n0xCED5\t0x63E1\n0xCED6\t0x6C83\n0xCED7\t0x5DEB\n0xCED8\t0x545C\n0xCED9\t0x94A8\n0xCEDA\t0x4E4C\n0xCEDB\t0x6C61\n0xCEDC\t0x8BEC\n0xCEDD\t0x5C4B\n0xCEDE\t0x65E0\n0xCEDF\t0x829C\n0xCEE0\t0x68A7\n0xCEE1\t0x543E\n0xCEE2\t0x5434\n0xCEE3\t0x6BCB\n0xCEE4\t0x6B66\n0xCEE5\t0x4E94\n0xCEE6\t0x6342\n0xCEE7\t0x5348\n0xCEE8\t0x821E\n0xCEE9\t0x4F0D\n0xCEEA\t0x4FAE\n0xCEEB\t0x575E\n0xCEEC\t0x620A\n0xCEED\t0x96FE\n0xCEEE\t0x6664\n0xCEEF\t0x7269\n0xCEF0\t0x52FF\n0xCEF1\t0x52A1\n0xCEF2\t0x609F\n0xCEF3\t0x8BEF\n0xCEF4\t0x6614\n0xCEF5\t0x7199\n0xCEF6\t0x6790\n0xCEF7\t0x897F\n0xCEF8\t0x7852\n0xCEF9\t0x77FD\n0xCEFA\t0x6670\n0xCEFB\t0x563B\n0xCEFC\t0x5438\n0xCEFD\t0x9521\n0xCEFE\t0x727A\n0xCFA1\t0x7A00\n0xCFA2\t0x606F\n0xCFA3\t0x5E0C\n0xCFA4\t0x6089\n0xCFA5\t0x819D\n0xCFA6\t0x5915\n0xCFA7\t0x60DC\n0xCFA8\t0x7184\n0xCFA9\t0x70EF\n0xCFAA\t0x6EAA\n0xCFAB\t0x6C50\n0xCFAC\t0x7280\n0xCFAD\t0x6A84\n0xCFAE\t0x88AD\n0xCFAF\t0x5E2D\n0xCFB0\t0x4E60\n0xCFB1\t0x5AB3\n0xCFB2\t0x559C\n0xCFB3\t0x94E3\n0xCFB4\t0x6D17\n0xCFB5\t0x7CFB\n0xCFB6\t0x9699\n0xCFB7\t0x620F\n0xCFB8\t0x7EC6\n0xCFB9\t0x778E\n0xCFBA\t0x867E\n0xCFBB\t0x5323\n0xCFBC\t0x971E\n0xCFBD\t0x8F96\n0xCFBE\t0x6687\n0xCFBF\t0x5CE1\n0xCFC0\t0x4FA0\n0xCFC1\t0x72ED\n0xCFC2\t0x4E0B\n0xCFC3\t0x53A6\n0xCFC4\t0x590F\n0xCFC5\t0x5413\n0xCFC6\t0x6380\n0xCFC7\t0x9528\n0xCFC8\t0x5148\n0xCFC9\t0x4ED9\n0xCFCA\t0x9C9C\n0xCFCB\t0x7EA4\n0xCFCC\t0x54B8\n0xCFCD\t0x8D24\n0xCFCE\t0x8854\n0xCFCF\t0x8237\n0xCFD0\t0x95F2\n0xCFD1\t0x6D8E\n0xCFD2\t0x5F26\n0xCFD3\t0x5ACC\n0xCFD4\t0x663E\n0xCFD5\t0x9669\n0xCFD6\t0x73B0\n0xCFD7\t0x732E\n0xCFD8\t0x53BF\n0xCFD9\t0x817A\n0xCFDA\t0x9985\n0xCFDB\t0x7FA1\n0xCFDC\t0x5BAA\n0xCFDD\t0x9677\n0xCFDE\t0x9650\n0xCFDF\t0x7EBF\n0xCFE0\t0x76F8\n0xCFE1\t0x53A2\n0xCFE2\t0x9576\n0xCFE3\t0x9999\n0xCFE4\t0x7BB1\n0xCFE5\t0x8944\n0xCFE6\t0x6E58\n0xCFE7\t0x4E61\n0xCFE8\t0x7FD4\n0xCFE9\t0x7965\n0xCFEA\t0x8BE6\n0xCFEB\t0x60F3\n0xCFEC\t0x54CD\n0xCFED\t0x4EAB\n0xCFEE\t0x9879\n0xCFEF\t0x5DF7\n0xCFF0\t0x6A61\n0xCFF1\t0x50CF\n0xCFF2\t0x5411\n0xCFF3\t0x8C61\n0xCFF4\t0x8427\n0xCFF5\t0x785D\n0xCFF6\t0x9704\n0xCFF7\t0x524A\n0xCFF8\t0x54EE\n0xCFF9\t0x56A3\n0xCFFA\t0x9500\n0xCFFB\t0x6D88\n0xCFFC\t0x5BB5\n0xCFFD\t0x6DC6\n0xCFFE\t0x6653\n0xD0A1\t0x5C0F\n0xD0A2\t0x5B5D\n0xD0A3\t0x6821\n0xD0A4\t0x8096\n0xD0A5\t0x5578\n0xD0A6\t0x7B11\n0xD0A7\t0x6548\n0xD0A8\t0x6954\n0xD0A9\t0x4E9B\n0xD0AA\t0x6B47\n0xD0AB\t0x874E\n0xD0AC\t0x978B\n0xD0AD\t0x534F\n0xD0AE\t0x631F\n0xD0AF\t0x643A\n0xD0B0\t0x90AA\n0xD0B1\t0x659C\n0xD0B2\t0x80C1\n0xD0B3\t0x8C10\n0xD0B4\t0x5199\n0xD0B5\t0x68B0\n0xD0B6\t0x5378\n0xD0B7\t0x87F9\n0xD0B8\t0x61C8\n0xD0B9\t0x6CC4\n0xD0BA\t0x6CFB\n0xD0BB\t0x8C22\n0xD0BC\t0x5C51\n0xD0BD\t0x85AA\n0xD0BE\t0x82AF\n0xD0BF\t0x950C\n0xD0C0\t0x6B23\n0xD0C1\t0x8F9B\n0xD0C2\t0x65B0\n0xD0C3\t0x5FFB\n0xD0C4\t0x5FC3\n0xD0C5\t0x4FE1\n0xD0C6\t0x8845\n0xD0C7\t0x661F\n0xD0C8\t0x8165\n0xD0C9\t0x7329\n0xD0CA\t0x60FA\n0xD0CB\t0x5174\n0xD0CC\t0x5211\n0xD0CD\t0x578B\n0xD0CE\t0x5F62\n0xD0CF\t0x90A2\n0xD0D0\t0x884C\n0xD0D1\t0x9192\n0xD0D2\t0x5E78\n0xD0D3\t0x674F\n0xD0D4\t0x6027\n0xD0D5\t0x59D3\n0xD0D6\t0x5144\n0xD0D7\t0x51F6\n0xD0D8\t0x80F8\n0xD0D9\t0x5308\n0xD0DA\t0x6C79\n0xD0DB\t0x96C4\n0xD0DC\t0x718A\n0xD0DD\t0x4F11\n0xD0DE\t0x4FEE\n0xD0DF\t0x7F9E\n0xD0E0\t0x673D\n0xD0E1\t0x55C5\n0xD0E2\t0x9508\n0xD0E3\t0x79C0\n0xD0E4\t0x8896\n0xD0E5\t0x7EE3\n0xD0E6\t0x589F\n0xD0E7\t0x620C\n0xD0E8\t0x9700\n0xD0E9\t0x865A\n0xD0EA\t0x5618\n0xD0EB\t0x987B\n0xD0EC\t0x5F90\n0xD0ED\t0x8BB8\n0xD0EE\t0x84C4\n0xD0EF\t0x9157\n0xD0F0\t0x53D9\n0xD0F1\t0x65ED\n0xD0F2\t0x5E8F\n0xD0F3\t0x755C\n0xD0F4\t0x6064\n0xD0F5\t0x7D6E\n0xD0F6\t0x5A7F\n0xD0F7\t0x7EEA\n0xD0F8\t0x7EED\n0xD0F9\t0x8F69\n0xD0FA\t0x55A7\n0xD0FB\t0x5BA3\n0xD0FC\t0x60AC\n0xD0FD\t0x65CB\n0xD0FE\t0x7384\n0xD1A1\t0x9009\n0xD1A2\t0x7663\n0xD1A3\t0x7729\n0xD1A4\t0x7EDA\n0xD1A5\t0x9774\n0xD1A6\t0x859B\n0xD1A7\t0x5B66\n0xD1A8\t0x7A74\n0xD1A9\t0x96EA\n0xD1AA\t0x8840\n0xD1AB\t0x52CB\n0xD1AC\t0x718F\n0xD1AD\t0x5FAA\n0xD1AE\t0x65EC\n0xD1AF\t0x8BE2\n0xD1B0\t0x5BFB\n0xD1B1\t0x9A6F\n0xD1B2\t0x5DE1\n0xD1B3\t0x6B89\n0xD1B4\t0x6C5B\n0xD1B5\t0x8BAD\n0xD1B6\t0x8BAF\n0xD1B7\t0x900A\n0xD1B8\t0x8FC5\n0xD1B9\t0x538B\n0xD1BA\t0x62BC\n0xD1BB\t0x9E26\n0xD1BC\t0x9E2D\n0xD1BD\t0x5440\n0xD1BE\t0x4E2B\n0xD1BF\t0x82BD\n0xD1C0\t0x7259\n0xD1C1\t0x869C\n0xD1C2\t0x5D16\n0xD1C3\t0x8859\n0xD1C4\t0x6DAF\n0xD1C5\t0x96C5\n0xD1C6\t0x54D1\n0xD1C7\t0x4E9A\n0xD1C8\t0x8BB6\n0xD1C9\t0x7109\n0xD1CA\t0x54BD\n0xD1CB\t0x9609\n0xD1CC\t0x70DF\n0xD1CD\t0x6DF9\n0xD1CE\t0x76D0\n0xD1CF\t0x4E25\n0xD1D0\t0x7814\n0xD1D1\t0x8712\n0xD1D2\t0x5CA9\n0xD1D3\t0x5EF6\n0xD1D4\t0x8A00\n0xD1D5\t0x989C\n0xD1D6\t0x960E\n0xD1D7\t0x708E\n0xD1D8\t0x6CBF\n0xD1D9\t0x5944\n0xD1DA\t0x63A9\n0xD1DB\t0x773C\n0xD1DC\t0x884D\n0xD1DD\t0x6F14\n0xD1DE\t0x8273\n0xD1DF\t0x5830\n0xD1E0\t0x71D5\n0xD1E1\t0x538C\n0xD1E2\t0x781A\n0xD1E3\t0x96C1\n0xD1E4\t0x5501\n0xD1E5\t0x5F66\n0xD1E6\t0x7130\n0xD1E7\t0x5BB4\n0xD1E8\t0x8C1A\n0xD1E9\t0x9A8C\n0xD1EA\t0x6B83\n0xD1EB\t0x592E\n0xD1EC\t0x9E2F\n0xD1ED\t0x79E7\n0xD1EE\t0x6768\n0xD1EF\t0x626C\n0xD1F0\t0x4F6F\n0xD1F1\t0x75A1\n0xD1F2\t0x7F8A\n0xD1F3\t0x6D0B\n0xD1F4\t0x9633\n0xD1F5\t0x6C27\n0xD1F6\t0x4EF0\n0xD1F7\t0x75D2\n0xD1F8\t0x517B\n0xD1F9\t0x6837\n0xD1FA\t0x6F3E\n0xD1FB\t0x9080\n0xD1FC\t0x8170\n0xD1FD\t0x5996\n0xD1FE\t0x7476\n0xD2A1\t0x6447\n0xD2A2\t0x5C27\n0xD2A3\t0x9065\n0xD2A4\t0x7A91\n0xD2A5\t0x8C23\n0xD2A6\t0x59DA\n0xD2A7\t0x54AC\n0xD2A8\t0x8200\n0xD2A9\t0x836F\n0xD2AA\t0x8981\n0xD2AB\t0x8000\n0xD2AC\t0x6930\n0xD2AD\t0x564E\n0xD2AE\t0x8036\n0xD2AF\t0x7237\n0xD2B0\t0x91CE\n0xD2B1\t0x51B6\n0xD2B2\t0x4E5F\n0xD2B3\t0x9875\n0xD2B4\t0x6396\n0xD2B5\t0x4E1A\n0xD2B6\t0x53F6\n0xD2B7\t0x66F3\n0xD2B8\t0x814B\n0xD2B9\t0x591C\n0xD2BA\t0x6DB2\n0xD2BB\t0x4E00\n0xD2BC\t0x58F9\n0xD2BD\t0x533B\n0xD2BE\t0x63D6\n0xD2BF\t0x94F1\n0xD2C0\t0x4F9D\n0xD2C1\t0x4F0A\n0xD2C2\t0x8863\n0xD2C3\t0x9890\n0xD2C4\t0x5937\n0xD2C5\t0x9057\n0xD2C6\t0x79FB\n0xD2C7\t0x4EEA\n0xD2C8\t0x80F0\n0xD2C9\t0x7591\n0xD2CA\t0x6C82\n0xD2CB\t0x5B9C\n0xD2CC\t0x59E8\n0xD2CD\t0x5F5D\n0xD2CE\t0x6905\n0xD2CF\t0x8681\n0xD2D0\t0x501A\n0xD2D1\t0x5DF2\n0xD2D2\t0x4E59\n0xD2D3\t0x77E3\n0xD2D4\t0x4EE5\n0xD2D5\t0x827A\n0xD2D6\t0x6291\n0xD2D7\t0x6613\n0xD2D8\t0x9091\n0xD2D9\t0x5C79\n0xD2DA\t0x4EBF\n0xD2DB\t0x5F79\n0xD2DC\t0x81C6\n0xD2DD\t0x9038\n0xD2DE\t0x8084\n0xD2DF\t0x75AB\n0xD2E0\t0x4EA6\n0xD2E1\t0x88D4\n0xD2E2\t0x610F\n0xD2E3\t0x6BC5\n0xD2E4\t0x5FC6\n0xD2E5\t0x4E49\n0xD2E6\t0x76CA\n0xD2E7\t0x6EA2\n0xD2E8\t0x8BE3\n0xD2E9\t0x8BAE\n0xD2EA\t0x8C0A\n0xD2EB\t0x8BD1\n0xD2EC\t0x5F02\n0xD2ED\t0x7FFC\n0xD2EE\t0x7FCC\n0xD2EF\t0x7ECE\n0xD2F0\t0x8335\n0xD2F1\t0x836B\n0xD2F2\t0x56E0\n0xD2F3\t0x6BB7\n0xD2F4\t0x97F3\n0xD2F5\t0x9634\n0xD2F6\t0x59FB\n0xD2F7\t0x541F\n0xD2F8\t0x94F6\n0xD2F9\t0x6DEB\n0xD2FA\t0x5BC5\n0xD2FB\t0x996E\n0xD2FC\t0x5C39\n0xD2FD\t0x5F15\n0xD2FE\t0x9690\n0xD3A1\t0x5370\n0xD3A2\t0x82F1\n0xD3A3\t0x6A31\n0xD3A4\t0x5A74\n0xD3A5\t0x9E70\n0xD3A6\t0x5E94\n0xD3A7\t0x7F28\n0xD3A8\t0x83B9\n0xD3A9\t0x8424\n0xD3AA\t0x8425\n0xD3AB\t0x8367\n0xD3AC\t0x8747\n0xD3AD\t0x8FCE\n0xD3AE\t0x8D62\n0xD3AF\t0x76C8\n0xD3B0\t0x5F71\n0xD3B1\t0x9896\n0xD3B2\t0x786C\n0xD3B3\t0x6620\n0xD3B4\t0x54DF\n0xD3B5\t0x62E5\n0xD3B6\t0x4F63\n0xD3B7\t0x81C3\n0xD3B8\t0x75C8\n0xD3B9\t0x5EB8\n0xD3BA\t0x96CD\n0xD3BB\t0x8E0A\n0xD3BC\t0x86F9\n0xD3BD\t0x548F\n0xD3BE\t0x6CF3\n0xD3BF\t0x6D8C\n0xD3C0\t0x6C38\n0xD3C1\t0x607F\n0xD3C2\t0x52C7\n0xD3C3\t0x7528\n0xD3C4\t0x5E7D\n0xD3C5\t0x4F18\n0xD3C6\t0x60A0\n0xD3C7\t0x5FE7\n0xD3C8\t0x5C24\n0xD3C9\t0x7531\n0xD3CA\t0x90AE\n0xD3CB\t0x94C0\n0xD3CC\t0x72B9\n0xD3CD\t0x6CB9\n0xD3CE\t0x6E38\n0xD3CF\t0x9149\n0xD3D0\t0x6709\n0xD3D1\t0x53CB\n0xD3D2\t0x53F3\n0xD3D3\t0x4F51\n0xD3D4\t0x91C9\n0xD3D5\t0x8BF1\n0xD3D6\t0x53C8\n0xD3D7\t0x5E7C\n0xD3D8\t0x8FC2\n0xD3D9\t0x6DE4\n0xD3DA\t0x4E8E\n0xD3DB\t0x76C2\n0xD3DC\t0x6986\n0xD3DD\t0x865E\n0xD3DE\t0x611A\n0xD3DF\t0x8206\n0xD3E0\t0x4F59\n0xD3E1\t0x4FDE\n0xD3E2\t0x903E\n0xD3E3\t0x9C7C\n0xD3E4\t0x6109\n0xD3E5\t0x6E1D\n0xD3E6\t0x6E14\n0xD3E7\t0x9685\n0xD3E8\t0x4E88\n0xD3E9\t0x5A31\n0xD3EA\t0x96E8\n0xD3EB\t0x4E0E\n0xD3EC\t0x5C7F\n0xD3ED\t0x79B9\n0xD3EE\t0x5B87\n0xD3EF\t0x8BED\n0xD3F0\t0x7FBD\n0xD3F1\t0x7389\n0xD3F2\t0x57DF\n0xD3F3\t0x828B\n0xD3F4\t0x90C1\n0xD3F5\t0x5401\n0xD3F6\t0x9047\n0xD3F7\t0x55BB\n0xD3F8\t0x5CEA\n0xD3F9\t0x5FA1\n0xD3FA\t0x6108\n0xD3FB\t0x6B32\n0xD3FC\t0x72F1\n0xD3FD\t0x80B2\n0xD3FE\t0x8A89\n0xD4A1\t0x6D74\n0xD4A2\t0x5BD3\n0xD4A3\t0x88D5\n0xD4A4\t0x9884\n0xD4A5\t0x8C6B\n0xD4A6\t0x9A6D\n0xD4A7\t0x9E33\n0xD4A8\t0x6E0A\n0xD4A9\t0x51A4\n0xD4AA\t0x5143\n0xD4AB\t0x57A3\n0xD4AC\t0x8881\n0xD4AD\t0x539F\n0xD4AE\t0x63F4\n0xD4AF\t0x8F95\n0xD4B0\t0x56ED\n0xD4B1\t0x5458\n0xD4B2\t0x5706\n0xD4B3\t0x733F\n0xD4B4\t0x6E90\n0xD4B5\t0x7F18\n0xD4B6\t0x8FDC\n0xD4B7\t0x82D1\n0xD4B8\t0x613F\n0xD4B9\t0x6028\n0xD4BA\t0x9662\n0xD4BB\t0x66F0\n0xD4BC\t0x7EA6\n0xD4BD\t0x8D8A\n0xD4BE\t0x8DC3\n0xD4BF\t0x94A5\n0xD4C0\t0x5CB3\n0xD4C1\t0x7CA4\n0xD4C2\t0x6708\n0xD4C3\t0x60A6\n0xD4C4\t0x9605\n0xD4C5\t0x8018\n0xD4C6\t0x4E91\n0xD4C7\t0x90E7\n0xD4C8\t0x5300\n0xD4C9\t0x9668\n0xD4CA\t0x5141\n0xD4CB\t0x8FD0\n0xD4CC\t0x8574\n0xD4CD\t0x915D\n0xD4CE\t0x6655\n0xD4CF\t0x97F5\n0xD4D0\t0x5B55\n0xD4D1\t0x531D\n0xD4D2\t0x7838\n0xD4D3\t0x6742\n0xD4D4\t0x683D\n0xD4D5\t0x54C9\n0xD4D6\t0x707E\n0xD4D7\t0x5BB0\n0xD4D8\t0x8F7D\n0xD4D9\t0x518D\n0xD4DA\t0x5728\n0xD4DB\t0x54B1\n0xD4DC\t0x6512\n0xD4DD\t0x6682\n0xD4DE\t0x8D5E\n0xD4DF\t0x8D43\n0xD4E0\t0x810F\n0xD4E1\t0x846C\n0xD4E2\t0x906D\n0xD4E3\t0x7CDF\n0xD4E4\t0x51FF\n0xD4E5\t0x85FB\n0xD4E6\t0x67A3\n0xD4E7\t0x65E9\n0xD4E8\t0x6FA1\n0xD4E9\t0x86A4\n0xD4EA\t0x8E81\n0xD4EB\t0x566A\n0xD4EC\t0x9020\n0xD4ED\t0x7682\n0xD4EE\t0x7076\n0xD4EF\t0x71E5\n0xD4F0\t0x8D23\n0xD4F1\t0x62E9\n0xD4F2\t0x5219\n0xD4F3\t0x6CFD\n0xD4F4\t0x8D3C\n0xD4F5\t0x600E\n0xD4F6\t0x589E\n0xD4F7\t0x618E\n0xD4F8\t0x66FE\n0xD4F9\t0x8D60\n0xD4FA\t0x624E\n0xD4FB\t0x55B3\n0xD4FC\t0x6E23\n0xD4FD\t0x672D\n0xD4FE\t0x8F67\n0xD5A1\t0x94E1\n0xD5A2\t0x95F8\n0xD5A3\t0x7728\n0xD5A4\t0x6805\n0xD5A5\t0x69A8\n0xD5A6\t0x548B\n0xD5A7\t0x4E4D\n0xD5A8\t0x70B8\n0xD5A9\t0x8BC8\n0xD5AA\t0x6458\n0xD5AB\t0x658B\n0xD5AC\t0x5B85\n0xD5AD\t0x7A84\n0xD5AE\t0x503A\n0xD5AF\t0x5BE8\n0xD5B0\t0x77BB\n0xD5B1\t0x6BE1\n0xD5B2\t0x8A79\n0xD5B3\t0x7C98\n0xD5B4\t0x6CBE\n0xD5B5\t0x76CF\n0xD5B6\t0x65A9\n0xD5B7\t0x8F97\n0xD5B8\t0x5D2D\n0xD5B9\t0x5C55\n0xD5BA\t0x8638\n0xD5BB\t0x6808\n0xD5BC\t0x5360\n0xD5BD\t0x6218\n0xD5BE\t0x7AD9\n0xD5BF\t0x6E5B\n0xD5C0\t0x7EFD\n0xD5C1\t0x6A1F\n0xD5C2\t0x7AE0\n0xD5C3\t0x5F70\n0xD5C4\t0x6F33\n0xD5C5\t0x5F20\n0xD5C6\t0x638C\n0xD5C7\t0x6DA8\n0xD5C8\t0x6756\n0xD5C9\t0x4E08\n0xD5CA\t0x5E10\n0xD5CB\t0x8D26\n0xD5CC\t0x4ED7\n0xD5CD\t0x80C0\n0xD5CE\t0x7634\n0xD5CF\t0x969C\n0xD5D0\t0x62DB\n0xD5D1\t0x662D\n0xD5D2\t0x627E\n0xD5D3\t0x6CBC\n0xD5D4\t0x8D75\n0xD5D5\t0x7167\n0xD5D6\t0x7F69\n0xD5D7\t0x5146\n0xD5D8\t0x8087\n0xD5D9\t0x53EC\n0xD5DA\t0x906E\n0xD5DB\t0x6298\n0xD5DC\t0x54F2\n0xD5DD\t0x86F0\n0xD5DE\t0x8F99\n0xD5DF\t0x8005\n0xD5E0\t0x9517\n0xD5E1\t0x8517\n0xD5E2\t0x8FD9\n0xD5E3\t0x6D59\n0xD5E4\t0x73CD\n0xD5E5\t0x659F\n0xD5E6\t0x771F\n0xD5E7\t0x7504\n0xD5E8\t0x7827\n0xD5E9\t0x81FB\n0xD5EA\t0x8D1E\n0xD5EB\t0x9488\n0xD5EC\t0x4FA6\n0xD5ED\t0x6795\n0xD5EE\t0x75B9\n0xD5EF\t0x8BCA\n0xD5F0\t0x9707\n0xD5F1\t0x632F\n0xD5F2\t0x9547\n0xD5F3\t0x9635\n0xD5F4\t0x84B8\n0xD5F5\t0x6323\n0xD5F6\t0x7741\n0xD5F7\t0x5F81\n0xD5F8\t0x72F0\n0xD5F9\t0x4E89\n0xD5FA\t0x6014\n0xD5FB\t0x6574\n0xD5FC\t0x62EF\n0xD5FD\t0x6B63\n0xD5FE\t0x653F\n0xD6A1\t0x5E27\n0xD6A2\t0x75C7\n0xD6A3\t0x90D1\n0xD6A4\t0x8BC1\n0xD6A5\t0x829D\n0xD6A6\t0x679D\n0xD6A7\t0x652F\n0xD6A8\t0x5431\n0xD6A9\t0x8718\n0xD6AA\t0x77E5\n0xD6AB\t0x80A2\n0xD6AC\t0x8102\n0xD6AD\t0x6C41\n0xD6AE\t0x4E4B\n0xD6AF\t0x7EC7\n0xD6B0\t0x804C\n0xD6B1\t0x76F4\n0xD6B2\t0x690D\n0xD6B3\t0x6B96\n0xD6B4\t0x6267\n0xD6B5\t0x503C\n0xD6B6\t0x4F84\n0xD6B7\t0x5740\n0xD6B8\t0x6307\n0xD6B9\t0x6B62\n0xD6BA\t0x8DBE\n0xD6BB\t0x53EA\n0xD6BC\t0x65E8\n0xD6BD\t0x7EB8\n0xD6BE\t0x5FD7\n0xD6BF\t0x631A\n0xD6C0\t0x63B7\n0xD6C1\t0x81F3\n0xD6C2\t0x81F4\n0xD6C3\t0x7F6E\n0xD6C4\t0x5E1C\n0xD6C5\t0x5CD9\n0xD6C6\t0x5236\n0xD6C7\t0x667A\n0xD6C8\t0x79E9\n0xD6C9\t0x7A1A\n0xD6CA\t0x8D28\n0xD6CB\t0x7099\n0xD6CC\t0x75D4\n0xD6CD\t0x6EDE\n0xD6CE\t0x6CBB\n0xD6CF\t0x7A92\n0xD6D0\t0x4E2D\n0xD6D1\t0x76C5\n0xD6D2\t0x5FE0\n0xD6D3\t0x949F\n0xD6D4\t0x8877\n0xD6D5\t0x7EC8\n0xD6D6\t0x79CD\n0xD6D7\t0x80BF\n0xD6D8\t0x91CD\n0xD6D9\t0x4EF2\n0xD6DA\t0x4F17\n0xD6DB\t0x821F\n0xD6DC\t0x5468\n0xD6DD\t0x5DDE\n0xD6DE\t0x6D32\n0xD6DF\t0x8BCC\n0xD6E0\t0x7CA5\n0xD6E1\t0x8F74\n0xD6E2\t0x8098\n0xD6E3\t0x5E1A\n0xD6E4\t0x5492\n0xD6E5\t0x76B1\n0xD6E6\t0x5B99\n0xD6E7\t0x663C\n0xD6E8\t0x9AA4\n0xD6E9\t0x73E0\n0xD6EA\t0x682A\n0xD6EB\t0x86DB\n0xD6EC\t0x6731\n0xD6ED\t0x732A\n0xD6EE\t0x8BF8\n0xD6EF\t0x8BDB\n0xD6F0\t0x9010\n0xD6F1\t0x7AF9\n0xD6F2\t0x70DB\n0xD6F3\t0x716E\n0xD6F4\t0x62C4\n0xD6F5\t0x77A9\n0xD6F6\t0x5631\n0xD6F7\t0x4E3B\n0xD6F8\t0x8457\n0xD6F9\t0x67F1\n0xD6FA\t0x52A9\n0xD6FB\t0x86C0\n0xD6FC\t0x8D2E\n0xD6FD\t0x94F8\n0xD6FE\t0x7B51\n0xD7A1\t0x4F4F\n0xD7A2\t0x6CE8\n0xD7A3\t0x795D\n0xD7A4\t0x9A7B\n0xD7A5\t0x6293\n0xD7A6\t0x722A\n0xD7A7\t0x62FD\n0xD7A8\t0x4E13\n0xD7A9\t0x7816\n0xD7AA\t0x8F6C\n0xD7AB\t0x64B0\n0xD7AC\t0x8D5A\n0xD7AD\t0x7BC6\n0xD7AE\t0x6869\n0xD7AF\t0x5E84\n0xD7B0\t0x88C5\n0xD7B1\t0x5986\n0xD7B2\t0x649E\n0xD7B3\t0x58EE\n0xD7B4\t0x72B6\n0xD7B5\t0x690E\n0xD7B6\t0x9525\n0xD7B7\t0x8FFD\n0xD7B8\t0x8D58\n0xD7B9\t0x5760\n0xD7BA\t0x7F00\n0xD7BB\t0x8C06\n0xD7BC\t0x51C6\n0xD7BD\t0x6349\n0xD7BE\t0x62D9\n0xD7BF\t0x5353\n0xD7C0\t0x684C\n0xD7C1\t0x7422\n0xD7C2\t0x8301\n0xD7C3\t0x914C\n0xD7C4\t0x5544\n0xD7C5\t0x7740\n0xD7C6\t0x707C\n0xD7C7\t0x6D4A\n0xD7C8\t0x5179\n0xD7C9\t0x54A8\n0xD7CA\t0x8D44\n0xD7CB\t0x59FF\n0xD7CC\t0x6ECB\n0xD7CD\t0x6DC4\n0xD7CE\t0x5B5C\n0xD7CF\t0x7D2B\n0xD7D0\t0x4ED4\n0xD7D1\t0x7C7D\n0xD7D2\t0x6ED3\n0xD7D3\t0x5B50\n0xD7D4\t0x81EA\n0xD7D5\t0x6E0D\n0xD7D6\t0x5B57\n0xD7D7\t0x9B03\n0xD7D8\t0x68D5\n0xD7D9\t0x8E2A\n0xD7DA\t0x5B97\n0xD7DB\t0x7EFC\n0xD7DC\t0x603B\n0xD7DD\t0x7EB5\n0xD7DE\t0x90B9\n0xD7DF\t0x8D70\n0xD7E0\t0x594F\n0xD7E1\t0x63CD\n0xD7E2\t0x79DF\n0xD7E3\t0x8DB3\n0xD7E4\t0x5352\n0xD7E5\t0x65CF\n0xD7E6\t0x7956\n0xD7E7\t0x8BC5\n0xD7E8\t0x963B\n0xD7E9\t0x7EC4\n0xD7EA\t0x94BB\n0xD7EB\t0x7E82\n0xD7EC\t0x5634\n0xD7ED\t0x9189\n0xD7EE\t0x6700\n0xD7EF\t0x7F6A\n0xD7F0\t0x5C0A\n0xD7F1\t0x9075\n0xD7F2\t0x6628\n0xD7F3\t0x5DE6\n0xD7F4\t0x4F50\n0xD7F5\t0x67DE\n0xD7F6\t0x505A\n0xD7F7\t0x4F5C\n0xD7F8\t0x5750\n0xD7F9\t0x5EA7\n0xD8A1\t0x4E8D\n0xD8A2\t0x4E0C\n0xD8A3\t0x5140\n0xD8A4\t0x4E10\n0xD8A5\t0x5EFF\n0xD8A6\t0x5345\n0xD8A7\t0x4E15\n0xD8A8\t0x4E98\n0xD8A9\t0x4E1E\n0xD8AA\t0x9B32\n0xD8AB\t0x5B6C\n0xD8AC\t0x5669\n0xD8AD\t0x4E28\n0xD8AE\t0x79BA\n0xD8AF\t0x4E3F\n0xD8B0\t0x5315\n0xD8B1\t0x4E47\n0xD8B2\t0x592D\n0xD8B3\t0x723B\n0xD8B4\t0x536E\n0xD8B5\t0x6C10\n0xD8B6\t0x56DF\n0xD8B7\t0x80E4\n0xD8B8\t0x9997\n0xD8B9\t0x6BD3\n0xD8BA\t0x777E\n0xD8BB\t0x9F17\n0xD8BC\t0x4E36\n0xD8BD\t0x4E9F\n0xD8BE\t0x9F10\n0xD8BF\t0x4E5C\n0xD8C0\t0x4E69\n0xD8C1\t0x4E93\n0xD8C2\t0x8288\n0xD8C3\t0x5B5B\n0xD8C4\t0x556C\n0xD8C5\t0x560F\n0xD8C6\t0x4EC4\n0xD8C7\t0x538D\n0xD8C8\t0x539D\n0xD8C9\t0x53A3\n0xD8CA\t0x53A5\n0xD8CB\t0x53AE\n0xD8CC\t0x9765\n0xD8CD\t0x8D5D\n0xD8CE\t0x531A\n0xD8CF\t0x53F5\n0xD8D0\t0x5326\n0xD8D1\t0x532E\n0xD8D2\t0x533E\n0xD8D3\t0x8D5C\n0xD8D4\t0x5366\n0xD8D5\t0x5363\n0xD8D6\t0x5202\n0xD8D7\t0x5208\n0xD8D8\t0x520E\n0xD8D9\t0x522D\n0xD8DA\t0x5233\n0xD8DB\t0x523F\n0xD8DC\t0x5240\n0xD8DD\t0x524C\n0xD8DE\t0x525E\n0xD8DF\t0x5261\n0xD8E0\t0x525C\n0xD8E1\t0x84AF\n0xD8E2\t0x527D\n0xD8E3\t0x5282\n0xD8E4\t0x5281\n0xD8E5\t0x5290\n0xD8E6\t0x5293\n0xD8E7\t0x5182\n0xD8E8\t0x7F54\n0xD8E9\t0x4EBB\n0xD8EA\t0x4EC3\n0xD8EB\t0x4EC9\n0xD8EC\t0x4EC2\n0xD8ED\t0x4EE8\n0xD8EE\t0x4EE1\n0xD8EF\t0x4EEB\n0xD8F0\t0x4EDE\n0xD8F1\t0x4F1B\n0xD8F2\t0x4EF3\n0xD8F3\t0x4F22\n0xD8F4\t0x4F64\n0xD8F5\t0x4EF5\n0xD8F6\t0x4F25\n0xD8F7\t0x4F27\n0xD8F8\t0x4F09\n0xD8F9\t0x4F2B\n0xD8FA\t0x4F5E\n0xD8FB\t0x4F67\n0xD8FC\t0x6538\n0xD8FD\t0x4F5A\n0xD8FE\t0x4F5D\n0xD9A1\t0x4F5F\n0xD9A2\t0x4F57\n0xD9A3\t0x4F32\n0xD9A4\t0x4F3D\n0xD9A5\t0x4F76\n0xD9A6\t0x4F74\n0xD9A7\t0x4F91\n0xD9A8\t0x4F89\n0xD9A9\t0x4F83\n0xD9AA\t0x4F8F\n0xD9AB\t0x4F7E\n0xD9AC\t0x4F7B\n0xD9AD\t0x4FAA\n0xD9AE\t0x4F7C\n0xD9AF\t0x4FAC\n0xD9B0\t0x4F94\n0xD9B1\t0x4FE6\n0xD9B2\t0x4FE8\n0xD9B3\t0x4FEA\n0xD9B4\t0x4FC5\n0xD9B5\t0x4FDA\n0xD9B6\t0x4FE3\n0xD9B7\t0x4FDC\n0xD9B8\t0x4FD1\n0xD9B9\t0x4FDF\n0xD9BA\t0x4FF8\n0xD9BB\t0x5029\n0xD9BC\t0x504C\n0xD9BD\t0x4FF3\n0xD9BE\t0x502C\n0xD9BF\t0x500F\n0xD9C0\t0x502E\n0xD9C1\t0x502D\n0xD9C2\t0x4FFE\n0xD9C3\t0x501C\n0xD9C4\t0x500C\n0xD9C5\t0x5025\n0xD9C6\t0x5028\n0xD9C7\t0x507E\n0xD9C8\t0x5043\n0xD9C9\t0x5055\n0xD9CA\t0x5048\n0xD9CB\t0x504E\n0xD9CC\t0x506C\n0xD9CD\t0x507B\n0xD9CE\t0x50A5\n0xD9CF\t0x50A7\n0xD9D0\t0x50A9\n0xD9D1\t0x50BA\n0xD9D2\t0x50D6\n0xD9D3\t0x5106\n0xD9D4\t0x50ED\n0xD9D5\t0x50EC\n0xD9D6\t0x50E6\n0xD9D7\t0x50EE\n0xD9D8\t0x5107\n0xD9D9\t0x510B\n0xD9DA\t0x4EDD\n0xD9DB\t0x6C3D\n0xD9DC\t0x4F58\n0xD9DD\t0x4F65\n0xD9DE\t0x4FCE\n0xD9DF\t0x9FA0\n0xD9E0\t0x6C46\n0xD9E1\t0x7C74\n0xD9E2\t0x516E\n0xD9E3\t0x5DFD\n0xD9E4\t0x9EC9\n0xD9E5\t0x9998\n0xD9E6\t0x5181\n0xD9E7\t0x5914\n0xD9E8\t0x52F9\n0xD9E9\t0x530D\n0xD9EA\t0x8A07\n0xD9EB\t0x5310\n0xD9EC\t0x51EB\n0xD9ED\t0x5919\n0xD9EE\t0x5155\n0xD9EF\t0x4EA0\n0xD9F0\t0x5156\n0xD9F1\t0x4EB3\n0xD9F2\t0x886E\n0xD9F3\t0x88A4\n0xD9F4\t0x4EB5\n0xD9F5\t0x8114\n0xD9F6\t0x88D2\n0xD9F7\t0x7980\n0xD9F8\t0x5B34\n0xD9F9\t0x8803\n0xD9FA\t0x7FB8\n0xD9FB\t0x51AB\n0xD9FC\t0x51B1\n0xD9FD\t0x51BD\n0xD9FE\t0x51BC\n0xDAA1\t0x51C7\n0xDAA2\t0x5196\n0xDAA3\t0x51A2\n0xDAA4\t0x51A5\n0xDAA5\t0x8BA0\n0xDAA6\t0x8BA6\n0xDAA7\t0x8BA7\n0xDAA8\t0x8BAA\n0xDAA9\t0x8BB4\n0xDAAA\t0x8BB5\n0xDAAB\t0x8BB7\n0xDAAC\t0x8BC2\n0xDAAD\t0x8BC3\n0xDAAE\t0x8BCB\n0xDAAF\t0x8BCF\n0xDAB0\t0x8BCE\n0xDAB1\t0x8BD2\n0xDAB2\t0x8BD3\n0xDAB3\t0x8BD4\n0xDAB4\t0x8BD6\n0xDAB5\t0x8BD8\n0xDAB6\t0x8BD9\n0xDAB7\t0x8BDC\n0xDAB8\t0x8BDF\n0xDAB9\t0x8BE0\n0xDABA\t0x8BE4\n0xDABB\t0x8BE8\n0xDABC\t0x8BE9\n0xDABD\t0x8BEE\n0xDABE\t0x8BF0\n0xDABF\t0x8BF3\n0xDAC0\t0x8BF6\n0xDAC1\t0x8BF9\n0xDAC2\t0x8BFC\n0xDAC3\t0x8BFF\n0xDAC4\t0x8C00\n0xDAC5\t0x8C02\n0xDAC6\t0x8C04\n0xDAC7\t0x8C07\n0xDAC8\t0x8C0C\n0xDAC9\t0x8C0F\n0xDACA\t0x8C11\n0xDACB\t0x8C12\n0xDACC\t0x8C14\n0xDACD\t0x8C15\n0xDACE\t0x8C16\n0xDACF\t0x8C19\n0xDAD0\t0x8C1B\n0xDAD1\t0x8C18\n0xDAD2\t0x8C1D\n0xDAD3\t0x8C1F\n0xDAD4\t0x8C20\n0xDAD5\t0x8C21\n0xDAD6\t0x8C25\n0xDAD7\t0x8C27\n0xDAD8\t0x8C2A\n0xDAD9\t0x8C2B\n0xDADA\t0x8C2E\n0xDADB\t0x8C2F\n0xDADC\t0x8C32\n0xDADD\t0x8C33\n0xDADE\t0x8C35\n0xDADF\t0x8C36\n0xDAE0\t0x5369\n0xDAE1\t0x537A\n0xDAE2\t0x961D\n0xDAE3\t0x9622\n0xDAE4\t0x9621\n0xDAE5\t0x9631\n0xDAE6\t0x962A\n0xDAE7\t0x963D\n0xDAE8\t0x963C\n0xDAE9\t0x9642\n0xDAEA\t0x9649\n0xDAEB\t0x9654\n0xDAEC\t0x965F\n0xDAED\t0x9667\n0xDAEE\t0x966C\n0xDAEF\t0x9672\n0xDAF0\t0x9674\n0xDAF1\t0x9688\n0xDAF2\t0x968D\n0xDAF3\t0x9697\n0xDAF4\t0x96B0\n0xDAF5\t0x9097\n0xDAF6\t0x909B\n0xDAF7\t0x909D\n0xDAF8\t0x9099\n0xDAF9\t0x90AC\n0xDAFA\t0x90A1\n0xDAFB\t0x90B4\n0xDAFC\t0x90B3\n0xDAFD\t0x90B6\n0xDAFE\t0x90BA\n0xDBA1\t0x90B8\n0xDBA2\t0x90B0\n0xDBA3\t0x90CF\n0xDBA4\t0x90C5\n0xDBA5\t0x90BE\n0xDBA6\t0x90D0\n0xDBA7\t0x90C4\n0xDBA8\t0x90C7\n0xDBA9\t0x90D3\n0xDBAA\t0x90E6\n0xDBAB\t0x90E2\n0xDBAC\t0x90DC\n0xDBAD\t0x90D7\n0xDBAE\t0x90DB\n0xDBAF\t0x90EB\n0xDBB0\t0x90EF\n0xDBB1\t0x90FE\n0xDBB2\t0x9104\n0xDBB3\t0x9122\n0xDBB4\t0x911E\n0xDBB5\t0x9123\n0xDBB6\t0x9131\n0xDBB7\t0x912F\n0xDBB8\t0x9139\n0xDBB9\t0x9143\n0xDBBA\t0x9146\n0xDBBB\t0x520D\n0xDBBC\t0x5942\n0xDBBD\t0x52A2\n0xDBBE\t0x52AC\n0xDBBF\t0x52AD\n0xDBC0\t0x52BE\n0xDBC1\t0x54FF\n0xDBC2\t0x52D0\n0xDBC3\t0x52D6\n0xDBC4\t0x52F0\n0xDBC5\t0x53DF\n0xDBC6\t0x71EE\n0xDBC7\t0x77CD\n0xDBC8\t0x5EF4\n0xDBC9\t0x51F5\n0xDBCA\t0x51FC\n0xDBCB\t0x9B2F\n0xDBCC\t0x53B6\n0xDBCD\t0x5F01\n0xDBCE\t0x755A\n0xDBCF\t0x5DEF\n0xDBD0\t0x574C\n0xDBD1\t0x57A9\n0xDBD2\t0x57A1\n0xDBD3\t0x587E\n0xDBD4\t0x58BC\n0xDBD5\t0x58C5\n0xDBD6\t0x58D1\n0xDBD7\t0x5729\n0xDBD8\t0x572C\n0xDBD9\t0x572A\n0xDBDA\t0x5733\n0xDBDB\t0x5739\n0xDBDC\t0x572E\n0xDBDD\t0x572F\n0xDBDE\t0x575C\n0xDBDF\t0x573B\n0xDBE0\t0x5742\n0xDBE1\t0x5769\n0xDBE2\t0x5785\n0xDBE3\t0x576B\n0xDBE4\t0x5786\n0xDBE5\t0x577C\n0xDBE6\t0x577B\n0xDBE7\t0x5768\n0xDBE8\t0x576D\n0xDBE9\t0x5776\n0xDBEA\t0x5773\n0xDBEB\t0x57AD\n0xDBEC\t0x57A4\n0xDBED\t0x578C\n0xDBEE\t0x57B2\n0xDBEF\t0x57CF\n0xDBF0\t0x57A7\n0xDBF1\t0x57B4\n0xDBF2\t0x5793\n0xDBF3\t0x57A0\n0xDBF4\t0x57D5\n0xDBF5\t0x57D8\n0xDBF6\t0x57DA\n0xDBF7\t0x57D9\n0xDBF8\t0x57D2\n0xDBF9\t0x57B8\n0xDBFA\t0x57F4\n0xDBFB\t0x57EF\n0xDBFC\t0x57F8\n0xDBFD\t0x57E4\n0xDBFE\t0x57DD\n0xDCA1\t0x580B\n0xDCA2\t0x580D\n0xDCA3\t0x57FD\n0xDCA4\t0x57ED\n0xDCA5\t0x5800\n0xDCA6\t0x581E\n0xDCA7\t0x5819\n0xDCA8\t0x5844\n0xDCA9\t0x5820\n0xDCAA\t0x5865\n0xDCAB\t0x586C\n0xDCAC\t0x5881\n0xDCAD\t0x5889\n0xDCAE\t0x589A\n0xDCAF\t0x5880\n0xDCB0\t0x99A8\n0xDCB1\t0x9F19\n0xDCB2\t0x61FF\n0xDCB3\t0x8279\n0xDCB4\t0x827D\n0xDCB5\t0x827F\n0xDCB6\t0x828F\n0xDCB7\t0x828A\n0xDCB8\t0x82A8\n0xDCB9\t0x8284\n0xDCBA\t0x828E\n0xDCBB\t0x8291\n0xDCBC\t0x8297\n0xDCBD\t0x8299\n0xDCBE\t0x82AB\n0xDCBF\t0x82B8\n0xDCC0\t0x82BE\n0xDCC1\t0x82B0\n0xDCC2\t0x82C8\n0xDCC3\t0x82CA\n0xDCC4\t0x82E3\n0xDCC5\t0x8298\n0xDCC6\t0x82B7\n0xDCC7\t0x82AE\n0xDCC8\t0x82CB\n0xDCC9\t0x82CC\n0xDCCA\t0x82C1\n0xDCCB\t0x82A9\n0xDCCC\t0x82B4\n0xDCCD\t0x82A1\n0xDCCE\t0x82AA\n0xDCCF\t0x829F\n0xDCD0\t0x82C4\n0xDCD1\t0x82CE\n0xDCD2\t0x82A4\n0xDCD3\t0x82E1\n0xDCD4\t0x8309\n0xDCD5\t0x82F7\n0xDCD6\t0x82E4\n0xDCD7\t0x830F\n0xDCD8\t0x8307\n0xDCD9\t0x82DC\n0xDCDA\t0x82F4\n0xDCDB\t0x82D2\n0xDCDC\t0x82D8\n0xDCDD\t0x830C\n0xDCDE\t0x82FB\n0xDCDF\t0x82D3\n0xDCE0\t0x8311\n0xDCE1\t0x831A\n0xDCE2\t0x8306\n0xDCE3\t0x8314\n0xDCE4\t0x8315\n0xDCE5\t0x82E0\n0xDCE6\t0x82D5\n0xDCE7\t0x831C\n0xDCE8\t0x8351\n0xDCE9\t0x835B\n0xDCEA\t0x835C\n0xDCEB\t0x8308\n0xDCEC\t0x8392\n0xDCED\t0x833C\n0xDCEE\t0x8334\n0xDCEF\t0x8331\n0xDCF0\t0x839B\n0xDCF1\t0x835E\n0xDCF2\t0x832F\n0xDCF3\t0x834F\n0xDCF4\t0x8347\n0xDCF5\t0x8343\n0xDCF6\t0x835F\n0xDCF7\t0x8340\n0xDCF8\t0x8317\n0xDCF9\t0x8360\n0xDCFA\t0x832D\n0xDCFB\t0x833A\n0xDCFC\t0x8333\n0xDCFD\t0x8366\n0xDCFE\t0x8365\n0xDDA1\t0x8368\n0xDDA2\t0x831B\n0xDDA3\t0x8369\n0xDDA4\t0x836C\n0xDDA5\t0x836A\n0xDDA6\t0x836D\n0xDDA7\t0x836E\n0xDDA8\t0x83B0\n0xDDA9\t0x8378\n0xDDAA\t0x83B3\n0xDDAB\t0x83B4\n0xDDAC\t0x83A0\n0xDDAD\t0x83AA\n0xDDAE\t0x8393\n0xDDAF\t0x839C\n0xDDB0\t0x8385\n0xDDB1\t0x837C\n0xDDB2\t0x83B6\n0xDDB3\t0x83A9\n0xDDB4\t0x837D\n0xDDB5\t0x83B8\n0xDDB6\t0x837B\n0xDDB7\t0x8398\n0xDDB8\t0x839E\n0xDDB9\t0x83A8\n0xDDBA\t0x83BA\n0xDDBB\t0x83BC\n0xDDBC\t0x83C1\n0xDDBD\t0x8401\n0xDDBE\t0x83E5\n0xDDBF\t0x83D8\n0xDDC0\t0x5807\n0xDDC1\t0x8418\n0xDDC2\t0x840B\n0xDDC3\t0x83DD\n0xDDC4\t0x83FD\n0xDDC5\t0x83D6\n0xDDC6\t0x841C\n0xDDC7\t0x8438\n0xDDC8\t0x8411\n0xDDC9\t0x8406\n0xDDCA\t0x83D4\n0xDDCB\t0x83DF\n0xDDCC\t0x840F\n0xDDCD\t0x8403\n0xDDCE\t0x83F8\n0xDDCF\t0x83F9\n0xDDD0\t0x83EA\n0xDDD1\t0x83C5\n0xDDD2\t0x83C0\n0xDDD3\t0x8426\n0xDDD4\t0x83F0\n0xDDD5\t0x83E1\n0xDDD6\t0x845C\n0xDDD7\t0x8451\n0xDDD8\t0x845A\n0xDDD9\t0x8459\n0xDDDA\t0x8473\n0xDDDB\t0x8487\n0xDDDC\t0x8488\n0xDDDD\t0x847A\n0xDDDE\t0x8489\n0xDDDF\t0x8478\n0xDDE0\t0x843C\n0xDDE1\t0x8446\n0xDDE2\t0x8469\n0xDDE3\t0x8476\n0xDDE4\t0x848C\n0xDDE5\t0x848E\n0xDDE6\t0x8431\n0xDDE7\t0x846D\n0xDDE8\t0x84C1\n0xDDE9\t0x84CD\n0xDDEA\t0x84D0\n0xDDEB\t0x84E6\n0xDDEC\t0x84BD\n0xDDED\t0x84D3\n0xDDEE\t0x84CA\n0xDDEF\t0x84BF\n0xDDF0\t0x84BA\n0xDDF1\t0x84E0\n0xDDF2\t0x84A1\n0xDDF3\t0x84B9\n0xDDF4\t0x84B4\n0xDDF5\t0x8497\n0xDDF6\t0x84E5\n0xDDF7\t0x84E3\n0xDDF8\t0x850C\n0xDDF9\t0x750D\n0xDDFA\t0x8538\n0xDDFB\t0x84F0\n0xDDFC\t0x8539\n0xDDFD\t0x851F\n0xDDFE\t0x853A\n0xDEA1\t0x8556\n0xDEA2\t0x853B\n0xDEA3\t0x84FF\n0xDEA4\t0x84FC\n0xDEA5\t0x8559\n0xDEA6\t0x8548\n0xDEA7\t0x8568\n0xDEA8\t0x8564\n0xDEA9\t0x855E\n0xDEAA\t0x857A\n0xDEAB\t0x77A2\n0xDEAC\t0x8543\n0xDEAD\t0x8572\n0xDEAE\t0x857B\n0xDEAF\t0x85A4\n0xDEB0\t0x85A8\n0xDEB1\t0x8587\n0xDEB2\t0x858F\n0xDEB3\t0x8579\n0xDEB4\t0x85AE\n0xDEB5\t0x859C\n0xDEB6\t0x8585\n0xDEB7\t0x85B9\n0xDEB8\t0x85B7\n0xDEB9\t0x85B0\n0xDEBA\t0x85D3\n0xDEBB\t0x85C1\n0xDEBC\t0x85DC\n0xDEBD\t0x85FF\n0xDEBE\t0x8627\n0xDEBF\t0x8605\n0xDEC0\t0x8629\n0xDEC1\t0x8616\n0xDEC2\t0x863C\n0xDEC3\t0x5EFE\n0xDEC4\t0x5F08\n0xDEC5\t0x593C\n0xDEC6\t0x5941\n0xDEC7\t0x8037\n0xDEC8\t0x5955\n0xDEC9\t0x595A\n0xDECA\t0x5958\n0xDECB\t0x530F\n0xDECC\t0x5C22\n0xDECD\t0x5C25\n0xDECE\t0x5C2C\n0xDECF\t0x5C34\n0xDED0\t0x624C\n0xDED1\t0x626A\n0xDED2\t0x629F\n0xDED3\t0x62BB\n0xDED4\t0x62CA\n0xDED5\t0x62DA\n0xDED6\t0x62D7\n0xDED7\t0x62EE\n0xDED8\t0x6322\n0xDED9\t0x62F6\n0xDEDA\t0x6339\n0xDEDB\t0x634B\n0xDEDC\t0x6343\n0xDEDD\t0x63AD\n0xDEDE\t0x63F6\n0xDEDF\t0x6371\n0xDEE0\t0x637A\n0xDEE1\t0x638E\n0xDEE2\t0x63B4\n0xDEE3\t0x636D\n0xDEE4\t0x63AC\n0xDEE5\t0x638A\n0xDEE6\t0x6369\n0xDEE7\t0x63AE\n0xDEE8\t0x63BC\n0xDEE9\t0x63F2\n0xDEEA\t0x63F8\n0xDEEB\t0x63E0\n0xDEEC\t0x63FF\n0xDEED\t0x63C4\n0xDEEE\t0x63DE\n0xDEEF\t0x63CE\n0xDEF0\t0x6452\n0xDEF1\t0x63C6\n0xDEF2\t0x63BE\n0xDEF3\t0x6445\n0xDEF4\t0x6441\n0xDEF5\t0x640B\n0xDEF6\t0x641B\n0xDEF7\t0x6420\n0xDEF8\t0x640C\n0xDEF9\t0x6426\n0xDEFA\t0x6421\n0xDEFB\t0x645E\n0xDEFC\t0x6484\n0xDEFD\t0x646D\n0xDEFE\t0x6496\n0xDFA1\t0x647A\n0xDFA2\t0x64B7\n0xDFA3\t0x64B8\n0xDFA4\t0x6499\n0xDFA5\t0x64BA\n0xDFA6\t0x64C0\n0xDFA7\t0x64D0\n0xDFA8\t0x64D7\n0xDFA9\t0x64E4\n0xDFAA\t0x64E2\n0xDFAB\t0x6509\n0xDFAC\t0x6525\n0xDFAD\t0x652E\n0xDFAE\t0x5F0B\n0xDFAF\t0x5FD2\n0xDFB0\t0x7519\n0xDFB1\t0x5F11\n0xDFB2\t0x535F\n0xDFB3\t0x53F1\n0xDFB4\t0x53FD\n0xDFB5\t0x53E9\n0xDFB6\t0x53E8\n0xDFB7\t0x53FB\n0xDFB8\t0x5412\n0xDFB9\t0x5416\n0xDFBA\t0x5406\n0xDFBB\t0x544B\n0xDFBC\t0x5452\n0xDFBD\t0x5453\n0xDFBE\t0x5454\n0xDFBF\t0x5456\n0xDFC0\t0x5443\n0xDFC1\t0x5421\n0xDFC2\t0x5457\n0xDFC3\t0x5459\n0xDFC4\t0x5423\n0xDFC5\t0x5432\n0xDFC6\t0x5482\n0xDFC7\t0x5494\n0xDFC8\t0x5477\n0xDFC9\t0x5471\n0xDFCA\t0x5464\n0xDFCB\t0x549A\n0xDFCC\t0x549B\n0xDFCD\t0x5484\n0xDFCE\t0x5476\n0xDFCF\t0x5466\n0xDFD0\t0x549D\n0xDFD1\t0x54D0\n0xDFD2\t0x54AD\n0xDFD3\t0x54C2\n0xDFD4\t0x54B4\n0xDFD5\t0x54D2\n0xDFD6\t0x54A7\n0xDFD7\t0x54A6\n0xDFD8\t0x54D3\n0xDFD9\t0x54D4\n0xDFDA\t0x5472\n0xDFDB\t0x54A3\n0xDFDC\t0x54D5\n0xDFDD\t0x54BB\n0xDFDE\t0x54BF\n0xDFDF\t0x54CC\n0xDFE0\t0x54D9\n0xDFE1\t0x54DA\n0xDFE2\t0x54DC\n0xDFE3\t0x54A9\n0xDFE4\t0x54AA\n0xDFE5\t0x54A4\n0xDFE6\t0x54DD\n0xDFE7\t0x54CF\n0xDFE8\t0x54DE\n0xDFE9\t0x551B\n0xDFEA\t0x54E7\n0xDFEB\t0x5520\n0xDFEC\t0x54FD\n0xDFED\t0x5514\n0xDFEE\t0x54F3\n0xDFEF\t0x5522\n0xDFF0\t0x5523\n0xDFF1\t0x550F\n0xDFF2\t0x5511\n0xDFF3\t0x5527\n0xDFF4\t0x552A\n0xDFF5\t0x5567\n0xDFF6\t0x558F\n0xDFF7\t0x55B5\n0xDFF8\t0x5549\n0xDFF9\t0x556D\n0xDFFA\t0x5541\n0xDFFB\t0x5555\n0xDFFC\t0x553F\n0xDFFD\t0x5550\n0xDFFE\t0x553C\n0xE0A1\t0x5537\n0xE0A2\t0x5556\n0xE0A3\t0x5575\n0xE0A4\t0x5576\n0xE0A5\t0x5577\n0xE0A6\t0x5533\n0xE0A7\t0x5530\n0xE0A8\t0x555C\n0xE0A9\t0x558B\n0xE0AA\t0x55D2\n0xE0AB\t0x5583\n0xE0AC\t0x55B1\n0xE0AD\t0x55B9\n0xE0AE\t0x5588\n0xE0AF\t0x5581\n0xE0B0\t0x559F\n0xE0B1\t0x557E\n0xE0B2\t0x55D6\n0xE0B3\t0x5591\n0xE0B4\t0x557B\n0xE0B5\t0x55DF\n0xE0B6\t0x55BD\n0xE0B7\t0x55BE\n0xE0B8\t0x5594\n0xE0B9\t0x5599\n0xE0BA\t0x55EA\n0xE0BB\t0x55F7\n0xE0BC\t0x55C9\n0xE0BD\t0x561F\n0xE0BE\t0x55D1\n0xE0BF\t0x55EB\n0xE0C0\t0x55EC\n0xE0C1\t0x55D4\n0xE0C2\t0x55E6\n0xE0C3\t0x55DD\n0xE0C4\t0x55C4\n0xE0C5\t0x55EF\n0xE0C6\t0x55E5\n0xE0C7\t0x55F2\n0xE0C8\t0x55F3\n0xE0C9\t0x55CC\n0xE0CA\t0x55CD\n0xE0CB\t0x55E8\n0xE0CC\t0x55F5\n0xE0CD\t0x55E4\n0xE0CE\t0x8F94\n0xE0CF\t0x561E\n0xE0D0\t0x5608\n0xE0D1\t0x560C\n0xE0D2\t0x5601\n0xE0D3\t0x5624\n0xE0D4\t0x5623\n0xE0D5\t0x55FE\n0xE0D6\t0x5600\n0xE0D7\t0x5627\n0xE0D8\t0x562D\n0xE0D9\t0x5658\n0xE0DA\t0x5639\n0xE0DB\t0x5657\n0xE0DC\t0x562C\n0xE0DD\t0x564D\n0xE0DE\t0x5662\n0xE0DF\t0x5659\n0xE0E0\t0x565C\n0xE0E1\t0x564C\n0xE0E2\t0x5654\n0xE0E3\t0x5686\n0xE0E4\t0x5664\n0xE0E5\t0x5671\n0xE0E6\t0x566B\n0xE0E7\t0x567B\n0xE0E8\t0x567C\n0xE0E9\t0x5685\n0xE0EA\t0x5693\n0xE0EB\t0x56AF\n0xE0EC\t0x56D4\n0xE0ED\t0x56D7\n0xE0EE\t0x56DD\n0xE0EF\t0x56E1\n0xE0F0\t0x56F5\n0xE0F1\t0x56EB\n0xE0F2\t0x56F9\n0xE0F3\t0x56FF\n0xE0F4\t0x5704\n0xE0F5\t0x570A\n0xE0F6\t0x5709\n0xE0F7\t0x571C\n0xE0F8\t0x5E0F\n0xE0F9\t0x5E19\n0xE0FA\t0x5E14\n0xE0FB\t0x5E11\n0xE0FC\t0x5E31\n0xE0FD\t0x5E3B\n0xE0FE\t0x5E3C\n0xE1A1\t0x5E37\n0xE1A2\t0x5E44\n0xE1A3\t0x5E54\n0xE1A4\t0x5E5B\n0xE1A5\t0x5E5E\n0xE1A6\t0x5E61\n0xE1A7\t0x5C8C\n0xE1A8\t0x5C7A\n0xE1A9\t0x5C8D\n0xE1AA\t0x5C90\n0xE1AB\t0x5C96\n0xE1AC\t0x5C88\n0xE1AD\t0x5C98\n0xE1AE\t0x5C99\n0xE1AF\t0x5C91\n0xE1B0\t0x5C9A\n0xE1B1\t0x5C9C\n0xE1B2\t0x5CB5\n0xE1B3\t0x5CA2\n0xE1B4\t0x5CBD\n0xE1B5\t0x5CAC\n0xE1B6\t0x5CAB\n0xE1B7\t0x5CB1\n0xE1B8\t0x5CA3\n0xE1B9\t0x5CC1\n0xE1BA\t0x5CB7\n0xE1BB\t0x5CC4\n0xE1BC\t0x5CD2\n0xE1BD\t0x5CE4\n0xE1BE\t0x5CCB\n0xE1BF\t0x5CE5\n0xE1C0\t0x5D02\n0xE1C1\t0x5D03\n0xE1C2\t0x5D27\n0xE1C3\t0x5D26\n0xE1C4\t0x5D2E\n0xE1C5\t0x5D24\n0xE1C6\t0x5D1E\n0xE1C7\t0x5D06\n0xE1C8\t0x5D1B\n0xE1C9\t0x5D58\n0xE1CA\t0x5D3E\n0xE1CB\t0x5D34\n0xE1CC\t0x5D3D\n0xE1CD\t0x5D6C\n0xE1CE\t0x5D5B\n0xE1CF\t0x5D6F\n0xE1D0\t0x5D5D\n0xE1D1\t0x5D6B\n0xE1D2\t0x5D4B\n0xE1D3\t0x5D4A\n0xE1D4\t0x5D69\n0xE1D5\t0x5D74\n0xE1D6\t0x5D82\n0xE1D7\t0x5D99\n0xE1D8\t0x5D9D\n0xE1D9\t0x8C73\n0xE1DA\t0x5DB7\n0xE1DB\t0x5DC5\n0xE1DC\t0x5F73\n0xE1DD\t0x5F77\n0xE1DE\t0x5F82\n0xE1DF\t0x5F87\n0xE1E0\t0x5F89\n0xE1E1\t0x5F8C\n0xE1E2\t0x5F95\n0xE1E3\t0x5F99\n0xE1E4\t0x5F9C\n0xE1E5\t0x5FA8\n0xE1E6\t0x5FAD\n0xE1E7\t0x5FB5\n0xE1E8\t0x5FBC\n0xE1E9\t0x8862\n0xE1EA\t0x5F61\n0xE1EB\t0x72AD\n0xE1EC\t0x72B0\n0xE1ED\t0x72B4\n0xE1EE\t0x72B7\n0xE1EF\t0x72B8\n0xE1F0\t0x72C3\n0xE1F1\t0x72C1\n0xE1F2\t0x72CE\n0xE1F3\t0x72CD\n0xE1F4\t0x72D2\n0xE1F5\t0x72E8\n0xE1F6\t0x72EF\n0xE1F7\t0x72E9\n0xE1F8\t0x72F2\n0xE1F9\t0x72F4\n0xE1FA\t0x72F7\n0xE1FB\t0x7301\n0xE1FC\t0x72F3\n0xE1FD\t0x7303\n0xE1FE\t0x72FA\n0xE2A1\t0x72FB\n0xE2A2\t0x7317\n0xE2A3\t0x7313\n0xE2A4\t0x7321\n0xE2A5\t0x730A\n0xE2A6\t0x731E\n0xE2A7\t0x731D\n0xE2A8\t0x7315\n0xE2A9\t0x7322\n0xE2AA\t0x7339\n0xE2AB\t0x7325\n0xE2AC\t0x732C\n0xE2AD\t0x7338\n0xE2AE\t0x7331\n0xE2AF\t0x7350\n0xE2B0\t0x734D\n0xE2B1\t0x7357\n0xE2B2\t0x7360\n0xE2B3\t0x736C\n0xE2B4\t0x736F\n0xE2B5\t0x737E\n0xE2B6\t0x821B\n0xE2B7\t0x5925\n0xE2B8\t0x98E7\n0xE2B9\t0x5924\n0xE2BA\t0x5902\n0xE2BB\t0x9963\n0xE2BC\t0x9967\n0xE2BD\t0x9968\n0xE2BE\t0x9969\n0xE2BF\t0x996A\n0xE2C0\t0x996B\n0xE2C1\t0x996C\n0xE2C2\t0x9974\n0xE2C3\t0x9977\n0xE2C4\t0x997D\n0xE2C5\t0x9980\n0xE2C6\t0x9984\n0xE2C7\t0x9987\n0xE2C8\t0x998A\n0xE2C9\t0x998D\n0xE2CA\t0x9990\n0xE2CB\t0x9991\n0xE2CC\t0x9993\n0xE2CD\t0x9994\n0xE2CE\t0x9995\n0xE2CF\t0x5E80\n0xE2D0\t0x5E91\n0xE2D1\t0x5E8B\n0xE2D2\t0x5E96\n0xE2D3\t0x5EA5\n0xE2D4\t0x5EA0\n0xE2D5\t0x5EB9\n0xE2D6\t0x5EB5\n0xE2D7\t0x5EBE\n0xE2D8\t0x5EB3\n0xE2D9\t0x8D53\n0xE2DA\t0x5ED2\n0xE2DB\t0x5ED1\n0xE2DC\t0x5EDB\n0xE2DD\t0x5EE8\n0xE2DE\t0x5EEA\n0xE2DF\t0x81BA\n0xE2E0\t0x5FC4\n0xE2E1\t0x5FC9\n0xE2E2\t0x5FD6\n0xE2E3\t0x5FCF\n0xE2E4\t0x6003\n0xE2E5\t0x5FEE\n0xE2E6\t0x6004\n0xE2E7\t0x5FE1\n0xE2E8\t0x5FE4\n0xE2E9\t0x5FFE\n0xE2EA\t0x6005\n0xE2EB\t0x6006\n0xE2EC\t0x5FEA\n0xE2ED\t0x5FED\n0xE2EE\t0x5FF8\n0xE2EF\t0x6019\n0xE2F0\t0x6035\n0xE2F1\t0x6026\n0xE2F2\t0x601B\n0xE2F3\t0x600F\n0xE2F4\t0x600D\n0xE2F5\t0x6029\n0xE2F6\t0x602B\n0xE2F7\t0x600A\n0xE2F8\t0x603F\n0xE2F9\t0x6021\n0xE2FA\t0x6078\n0xE2FB\t0x6079\n0xE2FC\t0x607B\n0xE2FD\t0x607A\n0xE2FE\t0x6042\n0xE3A1\t0x606A\n0xE3A2\t0x607D\n0xE3A3\t0x6096\n0xE3A4\t0x609A\n0xE3A5\t0x60AD\n0xE3A6\t0x609D\n0xE3A7\t0x6083\n0xE3A8\t0x6092\n0xE3A9\t0x608C\n0xE3AA\t0x609B\n0xE3AB\t0x60EC\n0xE3AC\t0x60BB\n0xE3AD\t0x60B1\n0xE3AE\t0x60DD\n0xE3AF\t0x60D8\n0xE3B0\t0x60C6\n0xE3B1\t0x60DA\n0xE3B2\t0x60B4\n0xE3B3\t0x6120\n0xE3B4\t0x6126\n0xE3B5\t0x6115\n0xE3B6\t0x6123\n0xE3B7\t0x60F4\n0xE3B8\t0x6100\n0xE3B9\t0x610E\n0xE3BA\t0x612B\n0xE3BB\t0x614A\n0xE3BC\t0x6175\n0xE3BD\t0x61AC\n0xE3BE\t0x6194\n0xE3BF\t0x61A7\n0xE3C0\t0x61B7\n0xE3C1\t0x61D4\n0xE3C2\t0x61F5\n0xE3C3\t0x5FDD\n0xE3C4\t0x96B3\n0xE3C5\t0x95E9\n0xE3C6\t0x95EB\n0xE3C7\t0x95F1\n0xE3C8\t0x95F3\n0xE3C9\t0x95F5\n0xE3CA\t0x95F6\n0xE3CB\t0x95FC\n0xE3CC\t0x95FE\n0xE3CD\t0x9603\n0xE3CE\t0x9604\n0xE3CF\t0x9606\n0xE3D0\t0x9608\n0xE3D1\t0x960A\n0xE3D2\t0x960B\n0xE3D3\t0x960C\n0xE3D4\t0x960D\n0xE3D5\t0x960F\n0xE3D6\t0x9612\n0xE3D7\t0x9615\n0xE3D8\t0x9616\n0xE3D9\t0x9617\n0xE3DA\t0x9619\n0xE3DB\t0x961A\n0xE3DC\t0x4E2C\n0xE3DD\t0x723F\n0xE3DE\t0x6215\n0xE3DF\t0x6C35\n0xE3E0\t0x6C54\n0xE3E1\t0x6C5C\n0xE3E2\t0x6C4A\n0xE3E3\t0x6CA3\n0xE3E4\t0x6C85\n0xE3E5\t0x6C90\n0xE3E6\t0x6C94\n0xE3E7\t0x6C8C\n0xE3E8\t0x6C68\n0xE3E9\t0x6C69\n0xE3EA\t0x6C74\n0xE3EB\t0x6C76\n0xE3EC\t0x6C86\n0xE3ED\t0x6CA9\n0xE3EE\t0x6CD0\n0xE3EF\t0x6CD4\n0xE3F0\t0x6CAD\n0xE3F1\t0x6CF7\n0xE3F2\t0x6CF8\n0xE3F3\t0x6CF1\n0xE3F4\t0x6CD7\n0xE3F5\t0x6CB2\n0xE3F6\t0x6CE0\n0xE3F7\t0x6CD6\n0xE3F8\t0x6CFA\n0xE3F9\t0x6CEB\n0xE3FA\t0x6CEE\n0xE3FB\t0x6CB1\n0xE3FC\t0x6CD3\n0xE3FD\t0x6CEF\n0xE3FE\t0x6CFE\n0xE4A1\t0x6D39\n0xE4A2\t0x6D27\n0xE4A3\t0x6D0C\n0xE4A4\t0x6D43\n0xE4A5\t0x6D48\n0xE4A6\t0x6D07\n0xE4A7\t0x6D04\n0xE4A8\t0x6D19\n0xE4A9\t0x6D0E\n0xE4AA\t0x6D2B\n0xE4AB\t0x6D4D\n0xE4AC\t0x6D2E\n0xE4AD\t0x6D35\n0xE4AE\t0x6D1A\n0xE4AF\t0x6D4F\n0xE4B0\t0x6D52\n0xE4B1\t0x6D54\n0xE4B2\t0x6D33\n0xE4B3\t0x6D91\n0xE4B4\t0x6D6F\n0xE4B5\t0x6D9E\n0xE4B6\t0x6DA0\n0xE4B7\t0x6D5E\n0xE4B8\t0x6D93\n0xE4B9\t0x6D94\n0xE4BA\t0x6D5C\n0xE4BB\t0x6D60\n0xE4BC\t0x6D7C\n0xE4BD\t0x6D63\n0xE4BE\t0x6E1A\n0xE4BF\t0x6DC7\n0xE4C0\t0x6DC5\n0xE4C1\t0x6DDE\n0xE4C2\t0x6E0E\n0xE4C3\t0x6DBF\n0xE4C4\t0x6DE0\n0xE4C5\t0x6E11\n0xE4C6\t0x6DE6\n0xE4C7\t0x6DDD\n0xE4C8\t0x6DD9\n0xE4C9\t0x6E16\n0xE4CA\t0x6DAB\n0xE4CB\t0x6E0C\n0xE4CC\t0x6DAE\n0xE4CD\t0x6E2B\n0xE4CE\t0x6E6E\n0xE4CF\t0x6E4E\n0xE4D0\t0x6E6B\n0xE4D1\t0x6EB2\n0xE4D2\t0x6E5F\n0xE4D3\t0x6E86\n0xE4D4\t0x6E53\n0xE4D5\t0x6E54\n0xE4D6\t0x6E32\n0xE4D7\t0x6E25\n0xE4D8\t0x6E44\n0xE4D9\t0x6EDF\n0xE4DA\t0x6EB1\n0xE4DB\t0x6E98\n0xE4DC\t0x6EE0\n0xE4DD\t0x6F2D\n0xE4DE\t0x6EE2\n0xE4DF\t0x6EA5\n0xE4E0\t0x6EA7\n0xE4E1\t0x6EBD\n0xE4E2\t0x6EBB\n0xE4E3\t0x6EB7\n0xE4E4\t0x6ED7\n0xE4E5\t0x6EB4\n0xE4E6\t0x6ECF\n0xE4E7\t0x6E8F\n0xE4E8\t0x6EC2\n0xE4E9\t0x6E9F\n0xE4EA\t0x6F62\n0xE4EB\t0x6F46\n0xE4EC\t0x6F47\n0xE4ED\t0x6F24\n0xE4EE\t0x6F15\n0xE4EF\t0x6EF9\n0xE4F0\t0x6F2F\n0xE4F1\t0x6F36\n0xE4F2\t0x6F4B\n0xE4F3\t0x6F74\n0xE4F4\t0x6F2A\n0xE4F5\t0x6F09\n0xE4F6\t0x6F29\n0xE4F7\t0x6F89\n0xE4F8\t0x6F8D\n0xE4F9\t0x6F8C\n0xE4FA\t0x6F78\n0xE4FB\t0x6F72\n0xE4FC\t0x6F7C\n0xE4FD\t0x6F7A\n0xE4FE\t0x6FD1\n0xE5A1\t0x6FC9\n0xE5A2\t0x6FA7\n0xE5A3\t0x6FB9\n0xE5A4\t0x6FB6\n0xE5A5\t0x6FC2\n0xE5A6\t0x6FE1\n0xE5A7\t0x6FEE\n0xE5A8\t0x6FDE\n0xE5A9\t0x6FE0\n0xE5AA\t0x6FEF\n0xE5AB\t0x701A\n0xE5AC\t0x7023\n0xE5AD\t0x701B\n0xE5AE\t0x7039\n0xE5AF\t0x7035\n0xE5B0\t0x704F\n0xE5B1\t0x705E\n0xE5B2\t0x5B80\n0xE5B3\t0x5B84\n0xE5B4\t0x5B95\n0xE5B5\t0x5B93\n0xE5B6\t0x5BA5\n0xE5B7\t0x5BB8\n0xE5B8\t0x752F\n0xE5B9\t0x9A9E\n0xE5BA\t0x6434\n0xE5BB\t0x5BE4\n0xE5BC\t0x5BEE\n0xE5BD\t0x8930\n0xE5BE\t0x5BF0\n0xE5BF\t0x8E47\n0xE5C0\t0x8B07\n0xE5C1\t0x8FB6\n0xE5C2\t0x8FD3\n0xE5C3\t0x8FD5\n0xE5C4\t0x8FE5\n0xE5C5\t0x8FEE\n0xE5C6\t0x8FE4\n0xE5C7\t0x8FE9\n0xE5C8\t0x8FE6\n0xE5C9\t0x8FF3\n0xE5CA\t0x8FE8\n0xE5CB\t0x9005\n0xE5CC\t0x9004\n0xE5CD\t0x900B\n0xE5CE\t0x9026\n0xE5CF\t0x9011\n0xE5D0\t0x900D\n0xE5D1\t0x9016\n0xE5D2\t0x9021\n0xE5D3\t0x9035\n0xE5D4\t0x9036\n0xE5D5\t0x902D\n0xE5D6\t0x902F\n0xE5D7\t0x9044\n0xE5D8\t0x9051\n0xE5D9\t0x9052\n0xE5DA\t0x9050\n0xE5DB\t0x9068\n0xE5DC\t0x9058\n0xE5DD\t0x9062\n0xE5DE\t0x905B\n0xE5DF\t0x66B9\n0xE5E0\t0x9074\n0xE5E1\t0x907D\n0xE5E2\t0x9082\n0xE5E3\t0x9088\n0xE5E4\t0x9083\n0xE5E5\t0x908B\n0xE5E6\t0x5F50\n0xE5E7\t0x5F57\n0xE5E8\t0x5F56\n0xE5E9\t0x5F58\n0xE5EA\t0x5C3B\n0xE5EB\t0x54AB\n0xE5EC\t0x5C50\n0xE5ED\t0x5C59\n0xE5EE\t0x5B71\n0xE5EF\t0x5C63\n0xE5F0\t0x5C66\n0xE5F1\t0x7FBC\n0xE5F2\t0x5F2A\n0xE5F3\t0x5F29\n0xE5F4\t0x5F2D\n0xE5F5\t0x8274\n0xE5F6\t0x5F3C\n0xE5F7\t0x9B3B\n0xE5F8\t0x5C6E\n0xE5F9\t0x5981\n0xE5FA\t0x5983\n0xE5FB\t0x598D\n0xE5FC\t0x59A9\n0xE5FD\t0x59AA\n0xE5FE\t0x59A3\n0xE6A1\t0x5997\n0xE6A2\t0x59CA\n0xE6A3\t0x59AB\n0xE6A4\t0x599E\n0xE6A5\t0x59A4\n0xE6A6\t0x59D2\n0xE6A7\t0x59B2\n0xE6A8\t0x59AF\n0xE6A9\t0x59D7\n0xE6AA\t0x59BE\n0xE6AB\t0x5A05\n0xE6AC\t0x5A06\n0xE6AD\t0x59DD\n0xE6AE\t0x5A08\n0xE6AF\t0x59E3\n0xE6B0\t0x59D8\n0xE6B1\t0x59F9\n0xE6B2\t0x5A0C\n0xE6B3\t0x5A09\n0xE6B4\t0x5A32\n0xE6B5\t0x5A34\n0xE6B6\t0x5A11\n0xE6B7\t0x5A23\n0xE6B8\t0x5A13\n0xE6B9\t0x5A40\n0xE6BA\t0x5A67\n0xE6BB\t0x5A4A\n0xE6BC\t0x5A55\n0xE6BD\t0x5A3C\n0xE6BE\t0x5A62\n0xE6BF\t0x5A75\n0xE6C0\t0x80EC\n0xE6C1\t0x5AAA\n0xE6C2\t0x5A9B\n0xE6C3\t0x5A77\n0xE6C4\t0x5A7A\n0xE6C5\t0x5ABE\n0xE6C6\t0x5AEB\n0xE6C7\t0x5AB2\n0xE6C8\t0x5AD2\n0xE6C9\t0x5AD4\n0xE6CA\t0x5AB8\n0xE6CB\t0x5AE0\n0xE6CC\t0x5AE3\n0xE6CD\t0x5AF1\n0xE6CE\t0x5AD6\n0xE6CF\t0x5AE6\n0xE6D0\t0x5AD8\n0xE6D1\t0x5ADC\n0xE6D2\t0x5B09\n0xE6D3\t0x5B17\n0xE6D4\t0x5B16\n0xE6D5\t0x5B32\n0xE6D6\t0x5B37\n0xE6D7\t0x5B40\n0xE6D8\t0x5C15\n0xE6D9\t0x5C1C\n0xE6DA\t0x5B5A\n0xE6DB\t0x5B65\n0xE6DC\t0x5B73\n0xE6DD\t0x5B51\n0xE6DE\t0x5B53\n0xE6DF\t0x5B62\n0xE6E0\t0x9A75\n0xE6E1\t0x9A77\n0xE6E2\t0x9A78\n0xE6E3\t0x9A7A\n0xE6E4\t0x9A7F\n0xE6E5\t0x9A7D\n0xE6E6\t0x9A80\n0xE6E7\t0x9A81\n0xE6E8\t0x9A85\n0xE6E9\t0x9A88\n0xE6EA\t0x9A8A\n0xE6EB\t0x9A90\n0xE6EC\t0x9A92\n0xE6ED\t0x9A93\n0xE6EE\t0x9A96\n0xE6EF\t0x9A98\n0xE6F0\t0x9A9B\n0xE6F1\t0x9A9C\n0xE6F2\t0x9A9D\n0xE6F3\t0x9A9F\n0xE6F4\t0x9AA0\n0xE6F5\t0x9AA2\n0xE6F6\t0x9AA3\n0xE6F7\t0x9AA5\n0xE6F8\t0x9AA7\n0xE6F9\t0x7E9F\n0xE6FA\t0x7EA1\n0xE6FB\t0x7EA3\n0xE6FC\t0x7EA5\n0xE6FD\t0x7EA8\n0xE6FE\t0x7EA9\n0xE7A1\t0x7EAD\n0xE7A2\t0x7EB0\n0xE7A3\t0x7EBE\n0xE7A4\t0x7EC0\n0xE7A5\t0x7EC1\n0xE7A6\t0x7EC2\n0xE7A7\t0x7EC9\n0xE7A8\t0x7ECB\n0xE7A9\t0x7ECC\n0xE7AA\t0x7ED0\n0xE7AB\t0x7ED4\n0xE7AC\t0x7ED7\n0xE7AD\t0x7EDB\n0xE7AE\t0x7EE0\n0xE7AF\t0x7EE1\n0xE7B0\t0x7EE8\n0xE7B1\t0x7EEB\n0xE7B2\t0x7EEE\n0xE7B3\t0x7EEF\n0xE7B4\t0x7EF1\n0xE7B5\t0x7EF2\n0xE7B6\t0x7F0D\n0xE7B7\t0x7EF6\n0xE7B8\t0x7EFA\n0xE7B9\t0x7EFB\n0xE7BA\t0x7EFE\n0xE7BB\t0x7F01\n0xE7BC\t0x7F02\n0xE7BD\t0x7F03\n0xE7BE\t0x7F07\n0xE7BF\t0x7F08\n0xE7C0\t0x7F0B\n0xE7C1\t0x7F0C\n0xE7C2\t0x7F0F\n0xE7C3\t0x7F11\n0xE7C4\t0x7F12\n0xE7C5\t0x7F17\n0xE7C6\t0x7F19\n0xE7C7\t0x7F1C\n0xE7C8\t0x7F1B\n0xE7C9\t0x7F1F\n0xE7CA\t0x7F21\n0xE7CB\t0x7F22\n0xE7CC\t0x7F23\n0xE7CD\t0x7F24\n0xE7CE\t0x7F25\n0xE7CF\t0x7F26\n0xE7D0\t0x7F27\n0xE7D1\t0x7F2A\n0xE7D2\t0x7F2B\n0xE7D3\t0x7F2C\n0xE7D4\t0x7F2D\n0xE7D5\t0x7F2F\n0xE7D6\t0x7F30\n0xE7D7\t0x7F31\n0xE7D8\t0x7F32\n0xE7D9\t0x7F33\n0xE7DA\t0x7F35\n0xE7DB\t0x5E7A\n0xE7DC\t0x757F\n0xE7DD\t0x5DDB\n0xE7DE\t0x753E\n0xE7DF\t0x9095\n0xE7E0\t0x738E\n0xE7E1\t0x7391\n0xE7E2\t0x73AE\n0xE7E3\t0x73A2\n0xE7E4\t0x739F\n0xE7E5\t0x73CF\n0xE7E6\t0x73C2\n0xE7E7\t0x73D1\n0xE7E8\t0x73B7\n0xE7E9\t0x73B3\n0xE7EA\t0x73C0\n0xE7EB\t0x73C9\n0xE7EC\t0x73C8\n0xE7ED\t0x73E5\n0xE7EE\t0x73D9\n0xE7EF\t0x987C\n0xE7F0\t0x740A\n0xE7F1\t0x73E9\n0xE7F2\t0x73E7\n0xE7F3\t0x73DE\n0xE7F4\t0x73BA\n0xE7F5\t0x73F2\n0xE7F6\t0x740F\n0xE7F7\t0x742A\n0xE7F8\t0x745B\n0xE7F9\t0x7426\n0xE7FA\t0x7425\n0xE7FB\t0x7428\n0xE7FC\t0x7430\n0xE7FD\t0x742E\n0xE7FE\t0x742C\n0xE8A1\t0x741B\n0xE8A2\t0x741A\n0xE8A3\t0x7441\n0xE8A4\t0x745C\n0xE8A5\t0x7457\n0xE8A6\t0x7455\n0xE8A7\t0x7459\n0xE8A8\t0x7477\n0xE8A9\t0x746D\n0xE8AA\t0x747E\n0xE8AB\t0x749C\n0xE8AC\t0x748E\n0xE8AD\t0x7480\n0xE8AE\t0x7481\n0xE8AF\t0x7487\n0xE8B0\t0x748B\n0xE8B1\t0x749E\n0xE8B2\t0x74A8\n0xE8B3\t0x74A9\n0xE8B4\t0x7490\n0xE8B5\t0x74A7\n0xE8B6\t0x74D2\n0xE8B7\t0x74BA\n0xE8B8\t0x97EA\n0xE8B9\t0x97EB\n0xE8BA\t0x97EC\n0xE8BB\t0x674C\n0xE8BC\t0x6753\n0xE8BD\t0x675E\n0xE8BE\t0x6748\n0xE8BF\t0x6769\n0xE8C0\t0x67A5\n0xE8C1\t0x6787\n0xE8C2\t0x676A\n0xE8C3\t0x6773\n0xE8C4\t0x6798\n0xE8C5\t0x67A7\n0xE8C6\t0x6775\n0xE8C7\t0x67A8\n0xE8C8\t0x679E\n0xE8C9\t0x67AD\n0xE8CA\t0x678B\n0xE8CB\t0x6777\n0xE8CC\t0x677C\n0xE8CD\t0x67F0\n0xE8CE\t0x6809\n0xE8CF\t0x67D8\n0xE8D0\t0x680A\n0xE8D1\t0x67E9\n0xE8D2\t0x67B0\n0xE8D3\t0x680C\n0xE8D4\t0x67D9\n0xE8D5\t0x67B5\n0xE8D6\t0x67DA\n0xE8D7\t0x67B3\n0xE8D8\t0x67DD\n0xE8D9\t0x6800\n0xE8DA\t0x67C3\n0xE8DB\t0x67B8\n0xE8DC\t0x67E2\n0xE8DD\t0x680E\n0xE8DE\t0x67C1\n0xE8DF\t0x67FD\n0xE8E0\t0x6832\n0xE8E1\t0x6833\n0xE8E2\t0x6860\n0xE8E3\t0x6861\n0xE8E4\t0x684E\n0xE8E5\t0x6862\n0xE8E6\t0x6844\n0xE8E7\t0x6864\n0xE8E8\t0x6883\n0xE8E9\t0x681D\n0xE8EA\t0x6855\n0xE8EB\t0x6866\n0xE8EC\t0x6841\n0xE8ED\t0x6867\n0xE8EE\t0x6840\n0xE8EF\t0x683E\n0xE8F0\t0x684A\n0xE8F1\t0x6849\n0xE8F2\t0x6829\n0xE8F3\t0x68B5\n0xE8F4\t0x688F\n0xE8F5\t0x6874\n0xE8F6\t0x6877\n0xE8F7\t0x6893\n0xE8F8\t0x686B\n0xE8F9\t0x68C2\n0xE8FA\t0x696E\n0xE8FB\t0x68FC\n0xE8FC\t0x691F\n0xE8FD\t0x6920\n0xE8FE\t0x68F9\n0xE9A1\t0x6924\n0xE9A2\t0x68F0\n0xE9A3\t0x690B\n0xE9A4\t0x6901\n0xE9A5\t0x6957\n0xE9A6\t0x68E3\n0xE9A7\t0x6910\n0xE9A8\t0x6971\n0xE9A9\t0x6939\n0xE9AA\t0x6960\n0xE9AB\t0x6942\n0xE9AC\t0x695D\n0xE9AD\t0x6984\n0xE9AE\t0x696B\n0xE9AF\t0x6980\n0xE9B0\t0x6998\n0xE9B1\t0x6978\n0xE9B2\t0x6934\n0xE9B3\t0x69CC\n0xE9B4\t0x6987\n0xE9B5\t0x6988\n0xE9B6\t0x69CE\n0xE9B7\t0x6989\n0xE9B8\t0x6966\n0xE9B9\t0x6963\n0xE9BA\t0x6979\n0xE9BB\t0x699B\n0xE9BC\t0x69A7\n0xE9BD\t0x69BB\n0xE9BE\t0x69AB\n0xE9BF\t0x69AD\n0xE9C0\t0x69D4\n0xE9C1\t0x69B1\n0xE9C2\t0x69C1\n0xE9C3\t0x69CA\n0xE9C4\t0x69DF\n0xE9C5\t0x6995\n0xE9C6\t0x69E0\n0xE9C7\t0x698D\n0xE9C8\t0x69FF\n0xE9C9\t0x6A2F\n0xE9CA\t0x69ED\n0xE9CB\t0x6A17\n0xE9CC\t0x6A18\n0xE9CD\t0x6A65\n0xE9CE\t0x69F2\n0xE9CF\t0x6A44\n0xE9D0\t0x6A3E\n0xE9D1\t0x6AA0\n0xE9D2\t0x6A50\n0xE9D3\t0x6A5B\n0xE9D4\t0x6A35\n0xE9D5\t0x6A8E\n0xE9D6\t0x6A79\n0xE9D7\t0x6A3D\n0xE9D8\t0x6A28\n0xE9D9\t0x6A58\n0xE9DA\t0x6A7C\n0xE9DB\t0x6A91\n0xE9DC\t0x6A90\n0xE9DD\t0x6AA9\n0xE9DE\t0x6A97\n0xE9DF\t0x6AAB\n0xE9E0\t0x7337\n0xE9E1\t0x7352\n0xE9E2\t0x6B81\n0xE9E3\t0x6B82\n0xE9E4\t0x6B87\n0xE9E5\t0x6B84\n0xE9E6\t0x6B92\n0xE9E7\t0x6B93\n0xE9E8\t0x6B8D\n0xE9E9\t0x6B9A\n0xE9EA\t0x6B9B\n0xE9EB\t0x6BA1\n0xE9EC\t0x6BAA\n0xE9ED\t0x8F6B\n0xE9EE\t0x8F6D\n0xE9EF\t0x8F71\n0xE9F0\t0x8F72\n0xE9F1\t0x8F73\n0xE9F2\t0x8F75\n0xE9F3\t0x8F76\n0xE9F4\t0x8F78\n0xE9F5\t0x8F77\n0xE9F6\t0x8F79\n0xE9F7\t0x8F7A\n0xE9F8\t0x8F7C\n0xE9F9\t0x8F7E\n0xE9FA\t0x8F81\n0xE9FB\t0x8F82\n0xE9FC\t0x8F84\n0xE9FD\t0x8F87\n0xE9FE\t0x8F8B\n0xEAA1\t0x8F8D\n0xEAA2\t0x8F8E\n0xEAA3\t0x8F8F\n0xEAA4\t0x8F98\n0xEAA5\t0x8F9A\n0xEAA6\t0x8ECE\n0xEAA7\t0x620B\n0xEAA8\t0x6217\n0xEAA9\t0x621B\n0xEAAA\t0x621F\n0xEAAB\t0x6222\n0xEAAC\t0x6221\n0xEAAD\t0x6225\n0xEAAE\t0x6224\n0xEAAF\t0x622C\n0xEAB0\t0x81E7\n0xEAB1\t0x74EF\n0xEAB2\t0x74F4\n0xEAB3\t0x74FF\n0xEAB4\t0x750F\n0xEAB5\t0x7511\n0xEAB6\t0x7513\n0xEAB7\t0x6534\n0xEAB8\t0x65EE\n0xEAB9\t0x65EF\n0xEABA\t0x65F0\n0xEABB\t0x660A\n0xEABC\t0x6619\n0xEABD\t0x6772\n0xEABE\t0x6603\n0xEABF\t0x6615\n0xEAC0\t0x6600\n0xEAC1\t0x7085\n0xEAC2\t0x66F7\n0xEAC3\t0x661D\n0xEAC4\t0x6634\n0xEAC5\t0x6631\n0xEAC6\t0x6636\n0xEAC7\t0x6635\n0xEAC8\t0x8006\n0xEAC9\t0x665F\n0xEACA\t0x6654\n0xEACB\t0x6641\n0xEACC\t0x664F\n0xEACD\t0x6656\n0xEACE\t0x6661\n0xEACF\t0x6657\n0xEAD0\t0x6677\n0xEAD1\t0x6684\n0xEAD2\t0x668C\n0xEAD3\t0x66A7\n0xEAD4\t0x669D\n0xEAD5\t0x66BE\n0xEAD6\t0x66DB\n0xEAD7\t0x66DC\n0xEAD8\t0x66E6\n0xEAD9\t0x66E9\n0xEADA\t0x8D32\n0xEADB\t0x8D33\n0xEADC\t0x8D36\n0xEADD\t0x8D3B\n0xEADE\t0x8D3D\n0xEADF\t0x8D40\n0xEAE0\t0x8D45\n0xEAE1\t0x8D46\n0xEAE2\t0x8D48\n0xEAE3\t0x8D49\n0xEAE4\t0x8D47\n0xEAE5\t0x8D4D\n0xEAE6\t0x8D55\n0xEAE7\t0x8D59\n0xEAE8\t0x89C7\n0xEAE9\t0x89CA\n0xEAEA\t0x89CB\n0xEAEB\t0x89CC\n0xEAEC\t0x89CE\n0xEAED\t0x89CF\n0xEAEE\t0x89D0\n0xEAEF\t0x89D1\n0xEAF0\t0x726E\n0xEAF1\t0x729F\n0xEAF2\t0x725D\n0xEAF3\t0x7266\n0xEAF4\t0x726F\n0xEAF5\t0x727E\n0xEAF6\t0x727F\n0xEAF7\t0x7284\n0xEAF8\t0x728B\n0xEAF9\t0x728D\n0xEAFA\t0x728F\n0xEAFB\t0x7292\n0xEAFC\t0x6308\n0xEAFD\t0x6332\n0xEAFE\t0x63B0\n0xEBA1\t0x643F\n0xEBA2\t0x64D8\n0xEBA3\t0x8004\n0xEBA4\t0x6BEA\n0xEBA5\t0x6BF3\n0xEBA6\t0x6BFD\n0xEBA7\t0x6BF5\n0xEBA8\t0x6BF9\n0xEBA9\t0x6C05\n0xEBAA\t0x6C07\n0xEBAB\t0x6C06\n0xEBAC\t0x6C0D\n0xEBAD\t0x6C15\n0xEBAE\t0x6C18\n0xEBAF\t0x6C19\n0xEBB0\t0x6C1A\n0xEBB1\t0x6C21\n0xEBB2\t0x6C29\n0xEBB3\t0x6C24\n0xEBB4\t0x6C2A\n0xEBB5\t0x6C32\n0xEBB6\t0x6535\n0xEBB7\t0x6555\n0xEBB8\t0x656B\n0xEBB9\t0x724D\n0xEBBA\t0x7252\n0xEBBB\t0x7256\n0xEBBC\t0x7230\n0xEBBD\t0x8662\n0xEBBE\t0x5216\n0xEBBF\t0x809F\n0xEBC0\t0x809C\n0xEBC1\t0x8093\n0xEBC2\t0x80BC\n0xEBC3\t0x670A\n0xEBC4\t0x80BD\n0xEBC5\t0x80B1\n0xEBC6\t0x80AB\n0xEBC7\t0x80AD\n0xEBC8\t0x80B4\n0xEBC9\t0x80B7\n0xEBCA\t0x80E7\n0xEBCB\t0x80E8\n0xEBCC\t0x80E9\n0xEBCD\t0x80EA\n0xEBCE\t0x80DB\n0xEBCF\t0x80C2\n0xEBD0\t0x80C4\n0xEBD1\t0x80D9\n0xEBD2\t0x80CD\n0xEBD3\t0x80D7\n0xEBD4\t0x6710\n0xEBD5\t0x80DD\n0xEBD6\t0x80EB\n0xEBD7\t0x80F1\n0xEBD8\t0x80F4\n0xEBD9\t0x80ED\n0xEBDA\t0x810D\n0xEBDB\t0x810E\n0xEBDC\t0x80F2\n0xEBDD\t0x80FC\n0xEBDE\t0x6715\n0xEBDF\t0x8112\n0xEBE0\t0x8C5A\n0xEBE1\t0x8136\n0xEBE2\t0x811E\n0xEBE3\t0x812C\n0xEBE4\t0x8118\n0xEBE5\t0x8132\n0xEBE6\t0x8148\n0xEBE7\t0x814C\n0xEBE8\t0x8153\n0xEBE9\t0x8174\n0xEBEA\t0x8159\n0xEBEB\t0x815A\n0xEBEC\t0x8171\n0xEBED\t0x8160\n0xEBEE\t0x8169\n0xEBEF\t0x817C\n0xEBF0\t0x817D\n0xEBF1\t0x816D\n0xEBF2\t0x8167\n0xEBF3\t0x584D\n0xEBF4\t0x5AB5\n0xEBF5\t0x8188\n0xEBF6\t0x8182\n0xEBF7\t0x8191\n0xEBF8\t0x6ED5\n0xEBF9\t0x81A3\n0xEBFA\t0x81AA\n0xEBFB\t0x81CC\n0xEBFC\t0x6726\n0xEBFD\t0x81CA\n0xEBFE\t0x81BB\n0xECA1\t0x81C1\n0xECA2\t0x81A6\n0xECA3\t0x6B24\n0xECA4\t0x6B37\n0xECA5\t0x6B39\n0xECA6\t0x6B43\n0xECA7\t0x6B46\n0xECA8\t0x6B59\n0xECA9\t0x98D1\n0xECAA\t0x98D2\n0xECAB\t0x98D3\n0xECAC\t0x98D5\n0xECAD\t0x98D9\n0xECAE\t0x98DA\n0xECAF\t0x6BB3\n0xECB0\t0x5F40\n0xECB1\t0x6BC2\n0xECB2\t0x89F3\n0xECB3\t0x6590\n0xECB4\t0x9F51\n0xECB5\t0x6593\n0xECB6\t0x65BC\n0xECB7\t0x65C6\n0xECB8\t0x65C4\n0xECB9\t0x65C3\n0xECBA\t0x65CC\n0xECBB\t0x65CE\n0xECBC\t0x65D2\n0xECBD\t0x65D6\n0xECBE\t0x7080\n0xECBF\t0x709C\n0xECC0\t0x7096\n0xECC1\t0x709D\n0xECC2\t0x70BB\n0xECC3\t0x70C0\n0xECC4\t0x70B7\n0xECC5\t0x70AB\n0xECC6\t0x70B1\n0xECC7\t0x70E8\n0xECC8\t0x70CA\n0xECC9\t0x7110\n0xECCA\t0x7113\n0xECCB\t0x7116\n0xECCC\t0x712F\n0xECCD\t0x7131\n0xECCE\t0x7173\n0xECCF\t0x715C\n0xECD0\t0x7168\n0xECD1\t0x7145\n0xECD2\t0x7172\n0xECD3\t0x714A\n0xECD4\t0x7178\n0xECD5\t0x717A\n0xECD6\t0x7198\n0xECD7\t0x71B3\n0xECD8\t0x71B5\n0xECD9\t0x71A8\n0xECDA\t0x71A0\n0xECDB\t0x71E0\n0xECDC\t0x71D4\n0xECDD\t0x71E7\n0xECDE\t0x71F9\n0xECDF\t0x721D\n0xECE0\t0x7228\n0xECE1\t0x706C\n0xECE2\t0x7118\n0xECE3\t0x7166\n0xECE4\t0x71B9\n0xECE5\t0x623E\n0xECE6\t0x623D\n0xECE7\t0x6243\n0xECE8\t0x6248\n0xECE9\t0x6249\n0xECEA\t0x793B\n0xECEB\t0x7940\n0xECEC\t0x7946\n0xECED\t0x7949\n0xECEE\t0x795B\n0xECEF\t0x795C\n0xECF0\t0x7953\n0xECF1\t0x795A\n0xECF2\t0x7962\n0xECF3\t0x7957\n0xECF4\t0x7960\n0xECF5\t0x796F\n0xECF6\t0x7967\n0xECF7\t0x797A\n0xECF8\t0x7985\n0xECF9\t0x798A\n0xECFA\t0x799A\n0xECFB\t0x79A7\n0xECFC\t0x79B3\n0xECFD\t0x5FD1\n0xECFE\t0x5FD0\n0xEDA1\t0x603C\n0xEDA2\t0x605D\n0xEDA3\t0x605A\n0xEDA4\t0x6067\n0xEDA5\t0x6041\n0xEDA6\t0x6059\n0xEDA7\t0x6063\n0xEDA8\t0x60AB\n0xEDA9\t0x6106\n0xEDAA\t0x610D\n0xEDAB\t0x615D\n0xEDAC\t0x61A9\n0xEDAD\t0x619D\n0xEDAE\t0x61CB\n0xEDAF\t0x61D1\n0xEDB0\t0x6206\n0xEDB1\t0x8080\n0xEDB2\t0x807F\n0xEDB3\t0x6C93\n0xEDB4\t0x6CF6\n0xEDB5\t0x6DFC\n0xEDB6\t0x77F6\n0xEDB7\t0x77F8\n0xEDB8\t0x7800\n0xEDB9\t0x7809\n0xEDBA\t0x7817\n0xEDBB\t0x7818\n0xEDBC\t0x7811\n0xEDBD\t0x65AB\n0xEDBE\t0x782D\n0xEDBF\t0x781C\n0xEDC0\t0x781D\n0xEDC1\t0x7839\n0xEDC2\t0x783A\n0xEDC3\t0x783B\n0xEDC4\t0x781F\n0xEDC5\t0x783C\n0xEDC6\t0x7825\n0xEDC7\t0x782C\n0xEDC8\t0x7823\n0xEDC9\t0x7829\n0xEDCA\t0x784E\n0xEDCB\t0x786D\n0xEDCC\t0x7856\n0xEDCD\t0x7857\n0xEDCE\t0x7826\n0xEDCF\t0x7850\n0xEDD0\t0x7847\n0xEDD1\t0x784C\n0xEDD2\t0x786A\n0xEDD3\t0x789B\n0xEDD4\t0x7893\n0xEDD5\t0x789A\n0xEDD6\t0x7887\n0xEDD7\t0x789C\n0xEDD8\t0x78A1\n0xEDD9\t0x78A3\n0xEDDA\t0x78B2\n0xEDDB\t0x78B9\n0xEDDC\t0x78A5\n0xEDDD\t0x78D4\n0xEDDE\t0x78D9\n0xEDDF\t0x78C9\n0xEDE0\t0x78EC\n0xEDE1\t0x78F2\n0xEDE2\t0x7905\n0xEDE3\t0x78F4\n0xEDE4\t0x7913\n0xEDE5\t0x7924\n0xEDE6\t0x791E\n0xEDE7\t0x7934\n0xEDE8\t0x9F9B\n0xEDE9\t0x9EF9\n0xEDEA\t0x9EFB\n0xEDEB\t0x9EFC\n0xEDEC\t0x76F1\n0xEDED\t0x7704\n0xEDEE\t0x770D\n0xEDEF\t0x76F9\n0xEDF0\t0x7707\n0xEDF1\t0x7708\n0xEDF2\t0x771A\n0xEDF3\t0x7722\n0xEDF4\t0x7719\n0xEDF5\t0x772D\n0xEDF6\t0x7726\n0xEDF7\t0x7735\n0xEDF8\t0x7738\n0xEDF9\t0x7750\n0xEDFA\t0x7751\n0xEDFB\t0x7747\n0xEDFC\t0x7743\n0xEDFD\t0x775A\n0xEDFE\t0x7768\n0xEEA1\t0x7762\n0xEEA2\t0x7765\n0xEEA3\t0x777F\n0xEEA4\t0x778D\n0xEEA5\t0x777D\n0xEEA6\t0x7780\n0xEEA7\t0x778C\n0xEEA8\t0x7791\n0xEEA9\t0x779F\n0xEEAA\t0x77A0\n0xEEAB\t0x77B0\n0xEEAC\t0x77B5\n0xEEAD\t0x77BD\n0xEEAE\t0x753A\n0xEEAF\t0x7540\n0xEEB0\t0x754E\n0xEEB1\t0x754B\n0xEEB2\t0x7548\n0xEEB3\t0x755B\n0xEEB4\t0x7572\n0xEEB5\t0x7579\n0xEEB6\t0x7583\n0xEEB7\t0x7F58\n0xEEB8\t0x7F61\n0xEEB9\t0x7F5F\n0xEEBA\t0x8A48\n0xEEBB\t0x7F68\n0xEEBC\t0x7F74\n0xEEBD\t0x7F71\n0xEEBE\t0x7F79\n0xEEBF\t0x7F81\n0xEEC0\t0x7F7E\n0xEEC1\t0x76CD\n0xEEC2\t0x76E5\n0xEEC3\t0x8832\n0xEEC4\t0x9485\n0xEEC5\t0x9486\n0xEEC6\t0x9487\n0xEEC7\t0x948B\n0xEEC8\t0x948A\n0xEEC9\t0x948C\n0xEECA\t0x948D\n0xEECB\t0x948F\n0xEECC\t0x9490\n0xEECD\t0x9494\n0xEECE\t0x9497\n0xEECF\t0x9495\n0xEED0\t0x949A\n0xEED1\t0x949B\n0xEED2\t0x949C\n0xEED3\t0x94A3\n0xEED4\t0x94A4\n0xEED5\t0x94AB\n0xEED6\t0x94AA\n0xEED7\t0x94AD\n0xEED8\t0x94AC\n0xEED9\t0x94AF\n0xEEDA\t0x94B0\n0xEEDB\t0x94B2\n0xEEDC\t0x94B4\n0xEEDD\t0x94B6\n0xEEDE\t0x94B7\n0xEEDF\t0x94B8\n0xEEE0\t0x94B9\n0xEEE1\t0x94BA\n0xEEE2\t0x94BC\n0xEEE3\t0x94BD\n0xEEE4\t0x94BF\n0xEEE5\t0x94C4\n0xEEE6\t0x94C8\n0xEEE7\t0x94C9\n0xEEE8\t0x94CA\n0xEEE9\t0x94CB\n0xEEEA\t0x94CC\n0xEEEB\t0x94CD\n0xEEEC\t0x94CE\n0xEEED\t0x94D0\n0xEEEE\t0x94D1\n0xEEEF\t0x94D2\n0xEEF0\t0x94D5\n0xEEF1\t0x94D6\n0xEEF2\t0x94D7\n0xEEF3\t0x94D9\n0xEEF4\t0x94D8\n0xEEF5\t0x94DB\n0xEEF6\t0x94DE\n0xEEF7\t0x94DF\n0xEEF8\t0x94E0\n0xEEF9\t0x94E2\n0xEEFA\t0x94E4\n0xEEFB\t0x94E5\n0xEEFC\t0x94E7\n0xEEFD\t0x94E8\n0xEEFE\t0x94EA\n0xEFA1\t0x94E9\n0xEFA2\t0x94EB\n0xEFA3\t0x94EE\n0xEFA4\t0x94EF\n0xEFA5\t0x94F3\n0xEFA6\t0x94F4\n0xEFA7\t0x94F5\n0xEFA8\t0x94F7\n0xEFA9\t0x94F9\n0xEFAA\t0x94FC\n0xEFAB\t0x94FD\n0xEFAC\t0x94FF\n0xEFAD\t0x9503\n0xEFAE\t0x9502\n0xEFAF\t0x9506\n0xEFB0\t0x9507\n0xEFB1\t0x9509\n0xEFB2\t0x950A\n0xEFB3\t0x950D\n0xEFB4\t0x950E\n0xEFB5\t0x950F\n0xEFB6\t0x9512\n0xEFB7\t0x9513\n0xEFB8\t0x9514\n0xEFB9\t0x9515\n0xEFBA\t0x9516\n0xEFBB\t0x9518\n0xEFBC\t0x951B\n0xEFBD\t0x951D\n0xEFBE\t0x951E\n0xEFBF\t0x951F\n0xEFC0\t0x9522\n0xEFC1\t0x952A\n0xEFC2\t0x952B\n0xEFC3\t0x9529\n0xEFC4\t0x952C\n0xEFC5\t0x9531\n0xEFC6\t0x9532\n0xEFC7\t0x9534\n0xEFC8\t0x9536\n0xEFC9\t0x9537\n0xEFCA\t0x9538\n0xEFCB\t0x953C\n0xEFCC\t0x953E\n0xEFCD\t0x953F\n0xEFCE\t0x9542\n0xEFCF\t0x9535\n0xEFD0\t0x9544\n0xEFD1\t0x9545\n0xEFD2\t0x9546\n0xEFD3\t0x9549\n0xEFD4\t0x954C\n0xEFD5\t0x954E\n0xEFD6\t0x954F\n0xEFD7\t0x9552\n0xEFD8\t0x9553\n0xEFD9\t0x9554\n0xEFDA\t0x9556\n0xEFDB\t0x9557\n0xEFDC\t0x9558\n0xEFDD\t0x9559\n0xEFDE\t0x955B\n0xEFDF\t0x955E\n0xEFE0\t0x955F\n0xEFE1\t0x955D\n0xEFE2\t0x9561\n0xEFE3\t0x9562\n0xEFE4\t0x9564\n0xEFE5\t0x9565\n0xEFE6\t0x9566\n0xEFE7\t0x9567\n0xEFE8\t0x9568\n0xEFE9\t0x9569\n0xEFEA\t0x956A\n0xEFEB\t0x956B\n0xEFEC\t0x956C\n0xEFED\t0x956F\n0xEFEE\t0x9571\n0xEFEF\t0x9572\n0xEFF0\t0x9573\n0xEFF1\t0x953A\n0xEFF2\t0x77E7\n0xEFF3\t0x77EC\n0xEFF4\t0x96C9\n0xEFF5\t0x79D5\n0xEFF6\t0x79ED\n0xEFF7\t0x79E3\n0xEFF8\t0x79EB\n0xEFF9\t0x7A06\n0xEFFA\t0x5D47\n0xEFFB\t0x7A03\n0xEFFC\t0x7A02\n0xEFFD\t0x7A1E\n0xEFFE\t0x7A14\n0xF0A1\t0x7A39\n0xF0A2\t0x7A37\n0xF0A3\t0x7A51\n0xF0A4\t0x9ECF\n0xF0A5\t0x99A5\n0xF0A6\t0x7A70\n0xF0A7\t0x7688\n0xF0A8\t0x768E\n0xF0A9\t0x7693\n0xF0AA\t0x7699\n0xF0AB\t0x76A4\n0xF0AC\t0x74DE\n0xF0AD\t0x74E0\n0xF0AE\t0x752C\n0xF0AF\t0x9E20\n0xF0B0\t0x9E22\n0xF0B1\t0x9E28\n0xF0B2\t0x9E29\n0xF0B3\t0x9E2A\n0xF0B4\t0x9E2B\n0xF0B5\t0x9E2C\n0xF0B6\t0x9E32\n0xF0B7\t0x9E31\n0xF0B8\t0x9E36\n0xF0B9\t0x9E38\n0xF0BA\t0x9E37\n0xF0BB\t0x9E39\n0xF0BC\t0x9E3A\n0xF0BD\t0x9E3E\n0xF0BE\t0x9E41\n0xF0BF\t0x9E42\n0xF0C0\t0x9E44\n0xF0C1\t0x9E46\n0xF0C2\t0x9E47\n0xF0C3\t0x9E48\n0xF0C4\t0x9E49\n0xF0C5\t0x9E4B\n0xF0C6\t0x9E4C\n0xF0C7\t0x9E4E\n0xF0C8\t0x9E51\n0xF0C9\t0x9E55\n0xF0CA\t0x9E57\n0xF0CB\t0x9E5A\n0xF0CC\t0x9E5B\n0xF0CD\t0x9E5C\n0xF0CE\t0x9E5E\n0xF0CF\t0x9E63\n0xF0D0\t0x9E66\n0xF0D1\t0x9E67\n0xF0D2\t0x9E68\n0xF0D3\t0x9E69\n0xF0D4\t0x9E6A\n0xF0D5\t0x9E6B\n0xF0D6\t0x9E6C\n0xF0D7\t0x9E71\n0xF0D8\t0x9E6D\n0xF0D9\t0x9E73\n0xF0DA\t0x7592\n0xF0DB\t0x7594\n0xF0DC\t0x7596\n0xF0DD\t0x75A0\n0xF0DE\t0x759D\n0xF0DF\t0x75AC\n0xF0E0\t0x75A3\n0xF0E1\t0x75B3\n0xF0E2\t0x75B4\n0xF0E3\t0x75B8\n0xF0E4\t0x75C4\n0xF0E5\t0x75B1\n0xF0E6\t0x75B0\n0xF0E7\t0x75C3\n0xF0E8\t0x75C2\n0xF0E9\t0x75D6\n0xF0EA\t0x75CD\n0xF0EB\t0x75E3\n0xF0EC\t0x75E8\n0xF0ED\t0x75E6\n0xF0EE\t0x75E4\n0xF0EF\t0x75EB\n0xF0F0\t0x75E7\n0xF0F1\t0x7603\n0xF0F2\t0x75F1\n0xF0F3\t0x75FC\n0xF0F4\t0x75FF\n0xF0F5\t0x7610\n0xF0F6\t0x7600\n0xF0F7\t0x7605\n0xF0F8\t0x760C\n0xF0F9\t0x7617\n0xF0FA\t0x760A\n0xF0FB\t0x7625\n0xF0FC\t0x7618\n0xF0FD\t0x7615\n0xF0FE\t0x7619\n0xF1A1\t0x761B\n0xF1A2\t0x763C\n0xF1A3\t0x7622\n0xF1A4\t0x7620\n0xF1A5\t0x7640\n0xF1A6\t0x762D\n0xF1A7\t0x7630\n0xF1A8\t0x763F\n0xF1A9\t0x7635\n0xF1AA\t0x7643\n0xF1AB\t0x763E\n0xF1AC\t0x7633\n0xF1AD\t0x764D\n0xF1AE\t0x765E\n0xF1AF\t0x7654\n0xF1B0\t0x765C\n0xF1B1\t0x7656\n0xF1B2\t0x766B\n0xF1B3\t0x766F\n0xF1B4\t0x7FCA\n0xF1B5\t0x7AE6\n0xF1B6\t0x7A78\n0xF1B7\t0x7A79\n0xF1B8\t0x7A80\n0xF1B9\t0x7A86\n0xF1BA\t0x7A88\n0xF1BB\t0x7A95\n0xF1BC\t0x7AA6\n0xF1BD\t0x7AA0\n0xF1BE\t0x7AAC\n0xF1BF\t0x7AA8\n0xF1C0\t0x7AAD\n0xF1C1\t0x7AB3\n0xF1C2\t0x8864\n0xF1C3\t0x8869\n0xF1C4\t0x8872\n0xF1C5\t0x887D\n0xF1C6\t0x887F\n0xF1C7\t0x8882\n0xF1C8\t0x88A2\n0xF1C9\t0x88C6\n0xF1CA\t0x88B7\n0xF1CB\t0x88BC\n0xF1CC\t0x88C9\n0xF1CD\t0x88E2\n0xF1CE\t0x88CE\n0xF1CF\t0x88E3\n0xF1D0\t0x88E5\n0xF1D1\t0x88F1\n0xF1D2\t0x891A\n0xF1D3\t0x88FC\n0xF1D4\t0x88E8\n0xF1D5\t0x88FE\n0xF1D6\t0x88F0\n0xF1D7\t0x8921\n0xF1D8\t0x8919\n0xF1D9\t0x8913\n0xF1DA\t0x891B\n0xF1DB\t0x890A\n0xF1DC\t0x8934\n0xF1DD\t0x892B\n0xF1DE\t0x8936\n0xF1DF\t0x8941\n0xF1E0\t0x8966\n0xF1E1\t0x897B\n0xF1E2\t0x758B\n0xF1E3\t0x80E5\n0xF1E4\t0x76B2\n0xF1E5\t0x76B4\n0xF1E6\t0x77DC\n0xF1E7\t0x8012\n0xF1E8\t0x8014\n0xF1E9\t0x8016\n0xF1EA\t0x801C\n0xF1EB\t0x8020\n0xF1EC\t0x8022\n0xF1ED\t0x8025\n0xF1EE\t0x8026\n0xF1EF\t0x8027\n0xF1F0\t0x8029\n0xF1F1\t0x8028\n0xF1F2\t0x8031\n0xF1F3\t0x800B\n0xF1F4\t0x8035\n0xF1F5\t0x8043\n0xF1F6\t0x8046\n0xF1F7\t0x804D\n0xF1F8\t0x8052\n0xF1F9\t0x8069\n0xF1FA\t0x8071\n0xF1FB\t0x8983\n0xF1FC\t0x9878\n0xF1FD\t0x9880\n0xF1FE\t0x9883\n0xF2A1\t0x9889\n0xF2A2\t0x988C\n0xF2A3\t0x988D\n0xF2A4\t0x988F\n0xF2A5\t0x9894\n0xF2A6\t0x989A\n0xF2A7\t0x989B\n0xF2A8\t0x989E\n0xF2A9\t0x989F\n0xF2AA\t0x98A1\n0xF2AB\t0x98A2\n0xF2AC\t0x98A5\n0xF2AD\t0x98A6\n0xF2AE\t0x864D\n0xF2AF\t0x8654\n0xF2B0\t0x866C\n0xF2B1\t0x866E\n0xF2B2\t0x867F\n0xF2B3\t0x867A\n0xF2B4\t0x867C\n0xF2B5\t0x867B\n0xF2B6\t0x86A8\n0xF2B7\t0x868D\n0xF2B8\t0x868B\n0xF2B9\t0x86AC\n0xF2BA\t0x869D\n0xF2BB\t0x86A7\n0xF2BC\t0x86A3\n0xF2BD\t0x86AA\n0xF2BE\t0x8693\n0xF2BF\t0x86A9\n0xF2C0\t0x86B6\n0xF2C1\t0x86C4\n0xF2C2\t0x86B5\n0xF2C3\t0x86CE\n0xF2C4\t0x86B0\n0xF2C5\t0x86BA\n0xF2C6\t0x86B1\n0xF2C7\t0x86AF\n0xF2C8\t0x86C9\n0xF2C9\t0x86CF\n0xF2CA\t0x86B4\n0xF2CB\t0x86E9\n0xF2CC\t0x86F1\n0xF2CD\t0x86F2\n0xF2CE\t0x86ED\n0xF2CF\t0x86F3\n0xF2D0\t0x86D0\n0xF2D1\t0x8713\n0xF2D2\t0x86DE\n0xF2D3\t0x86F4\n0xF2D4\t0x86DF\n0xF2D5\t0x86D8\n0xF2D6\t0x86D1\n0xF2D7\t0x8703\n0xF2D8\t0x8707\n0xF2D9\t0x86F8\n0xF2DA\t0x8708\n0xF2DB\t0x870A\n0xF2DC\t0x870D\n0xF2DD\t0x8709\n0xF2DE\t0x8723\n0xF2DF\t0x873B\n0xF2E0\t0x871E\n0xF2E1\t0x8725\n0xF2E2\t0x872E\n0xF2E3\t0x871A\n0xF2E4\t0x873E\n0xF2E5\t0x8748\n0xF2E6\t0x8734\n0xF2E7\t0x8731\n0xF2E8\t0x8729\n0xF2E9\t0x8737\n0xF2EA\t0x873F\n0xF2EB\t0x8782\n0xF2EC\t0x8722\n0xF2ED\t0x877D\n0xF2EE\t0x877E\n0xF2EF\t0x877B\n0xF2F0\t0x8760\n0xF2F1\t0x8770\n0xF2F2\t0x874C\n0xF2F3\t0x876E\n0xF2F4\t0x878B\n0xF2F5\t0x8753\n0xF2F6\t0x8763\n0xF2F7\t0x877C\n0xF2F8\t0x8764\n0xF2F9\t0x8759\n0xF2FA\t0x8765\n0xF2FB\t0x8793\n0xF2FC\t0x87AF\n0xF2FD\t0x87A8\n0xF2FE\t0x87D2\n0xF3A1\t0x87C6\n0xF3A2\t0x8788\n0xF3A3\t0x8785\n0xF3A4\t0x87AD\n0xF3A5\t0x8797\n0xF3A6\t0x8783\n0xF3A7\t0x87AB\n0xF3A8\t0x87E5\n0xF3A9\t0x87AC\n0xF3AA\t0x87B5\n0xF3AB\t0x87B3\n0xF3AC\t0x87CB\n0xF3AD\t0x87D3\n0xF3AE\t0x87BD\n0xF3AF\t0x87D1\n0xF3B0\t0x87C0\n0xF3B1\t0x87CA\n0xF3B2\t0x87DB\n0xF3B3\t0x87EA\n0xF3B4\t0x87E0\n0xF3B5\t0x87EE\n0xF3B6\t0x8816\n0xF3B7\t0x8813\n0xF3B8\t0x87FE\n0xF3B9\t0x880A\n0xF3BA\t0x881B\n0xF3BB\t0x8821\n0xF3BC\t0x8839\n0xF3BD\t0x883C\n0xF3BE\t0x7F36\n0xF3BF\t0x7F42\n0xF3C0\t0x7F44\n0xF3C1\t0x7F45\n0xF3C2\t0x8210\n0xF3C3\t0x7AFA\n0xF3C4\t0x7AFD\n0xF3C5\t0x7B08\n0xF3C6\t0x7B03\n0xF3C7\t0x7B04\n0xF3C8\t0x7B15\n0xF3C9\t0x7B0A\n0xF3CA\t0x7B2B\n0xF3CB\t0x7B0F\n0xF3CC\t0x7B47\n0xF3CD\t0x7B38\n0xF3CE\t0x7B2A\n0xF3CF\t0x7B19\n0xF3D0\t0x7B2E\n0xF3D1\t0x7B31\n0xF3D2\t0x7B20\n0xF3D3\t0x7B25\n0xF3D4\t0x7B24\n0xF3D5\t0x7B33\n0xF3D6\t0x7B3E\n0xF3D7\t0x7B1E\n0xF3D8\t0x7B58\n0xF3D9\t0x7B5A\n0xF3DA\t0x7B45\n0xF3DB\t0x7B75\n0xF3DC\t0x7B4C\n0xF3DD\t0x7B5D\n0xF3DE\t0x7B60\n0xF3DF\t0x7B6E\n0xF3E0\t0x7B7B\n0xF3E1\t0x7B62\n0xF3E2\t0x7B72\n0xF3E3\t0x7B71\n0xF3E4\t0x7B90\n0xF3E5\t0x7BA6\n0xF3E6\t0x7BA7\n0xF3E7\t0x7BB8\n0xF3E8\t0x7BAC\n0xF3E9\t0x7B9D\n0xF3EA\t0x7BA8\n0xF3EB\t0x7B85\n0xF3EC\t0x7BAA\n0xF3ED\t0x7B9C\n0xF3EE\t0x7BA2\n0xF3EF\t0x7BAB\n0xF3F0\t0x7BB4\n0xF3F1\t0x7BD1\n0xF3F2\t0x7BC1\n0xF3F3\t0x7BCC\n0xF3F4\t0x7BDD\n0xF3F5\t0x7BDA\n0xF3F6\t0x7BE5\n0xF3F7\t0x7BE6\n0xF3F8\t0x7BEA\n0xF3F9\t0x7C0C\n0xF3FA\t0x7BFE\n0xF3FB\t0x7BFC\n0xF3FC\t0x7C0F\n0xF3FD\t0x7C16\n0xF3FE\t0x7C0B\n0xF4A1\t0x7C1F\n0xF4A2\t0x7C2A\n0xF4A3\t0x7C26\n0xF4A4\t0x7C38\n0xF4A5\t0x7C41\n0xF4A6\t0x7C40\n0xF4A7\t0x81FE\n0xF4A8\t0x8201\n0xF4A9\t0x8202\n0xF4AA\t0x8204\n0xF4AB\t0x81EC\n0xF4AC\t0x8844\n0xF4AD\t0x8221\n0xF4AE\t0x8222\n0xF4AF\t0x8223\n0xF4B0\t0x822D\n0xF4B1\t0x822F\n0xF4B2\t0x8228\n0xF4B3\t0x822B\n0xF4B4\t0x8238\n0xF4B5\t0x823B\n0xF4B6\t0x8233\n0xF4B7\t0x8234\n0xF4B8\t0x823E\n0xF4B9\t0x8244\n0xF4BA\t0x8249\n0xF4BB\t0x824B\n0xF4BC\t0x824F\n0xF4BD\t0x825A\n0xF4BE\t0x825F\n0xF4BF\t0x8268\n0xF4C0\t0x887E\n0xF4C1\t0x8885\n0xF4C2\t0x8888\n0xF4C3\t0x88D8\n0xF4C4\t0x88DF\n0xF4C5\t0x895E\n0xF4C6\t0x7F9D\n0xF4C7\t0x7F9F\n0xF4C8\t0x7FA7\n0xF4C9\t0x7FAF\n0xF4CA\t0x7FB0\n0xF4CB\t0x7FB2\n0xF4CC\t0x7C7C\n0xF4CD\t0x6549\n0xF4CE\t0x7C91\n0xF4CF\t0x7C9D\n0xF4D0\t0x7C9C\n0xF4D1\t0x7C9E\n0xF4D2\t0x7CA2\n0xF4D3\t0x7CB2\n0xF4D4\t0x7CBC\n0xF4D5\t0x7CBD\n0xF4D6\t0x7CC1\n0xF4D7\t0x7CC7\n0xF4D8\t0x7CCC\n0xF4D9\t0x7CCD\n0xF4DA\t0x7CC8\n0xF4DB\t0x7CC5\n0xF4DC\t0x7CD7\n0xF4DD\t0x7CE8\n0xF4DE\t0x826E\n0xF4DF\t0x66A8\n0xF4E0\t0x7FBF\n0xF4E1\t0x7FCE\n0xF4E2\t0x7FD5\n0xF4E3\t0x7FE5\n0xF4E4\t0x7FE1\n0xF4E5\t0x7FE6\n0xF4E6\t0x7FE9\n0xF4E7\t0x7FEE\n0xF4E8\t0x7FF3\n0xF4E9\t0x7CF8\n0xF4EA\t0x7D77\n0xF4EB\t0x7DA6\n0xF4EC\t0x7DAE\n0xF4ED\t0x7E47\n0xF4EE\t0x7E9B\n0xF4EF\t0x9EB8\n0xF4F0\t0x9EB4\n0xF4F1\t0x8D73\n0xF4F2\t0x8D84\n0xF4F3\t0x8D94\n0xF4F4\t0x8D91\n0xF4F5\t0x8DB1\n0xF4F6\t0x8D67\n0xF4F7\t0x8D6D\n0xF4F8\t0x8C47\n0xF4F9\t0x8C49\n0xF4FA\t0x914A\n0xF4FB\t0x9150\n0xF4FC\t0x914E\n0xF4FD\t0x914F\n0xF4FE\t0x9164\n0xF5A1\t0x9162\n0xF5A2\t0x9161\n0xF5A3\t0x9170\n0xF5A4\t0x9169\n0xF5A5\t0x916F\n0xF5A6\t0x917D\n0xF5A7\t0x917E\n0xF5A8\t0x9172\n0xF5A9\t0x9174\n0xF5AA\t0x9179\n0xF5AB\t0x918C\n0xF5AC\t0x9185\n0xF5AD\t0x9190\n0xF5AE\t0x918D\n0xF5AF\t0x9191\n0xF5B0\t0x91A2\n0xF5B1\t0x91A3\n0xF5B2\t0x91AA\n0xF5B3\t0x91AD\n0xF5B4\t0x91AE\n0xF5B5\t0x91AF\n0xF5B6\t0x91B5\n0xF5B7\t0x91B4\n0xF5B8\t0x91BA\n0xF5B9\t0x8C55\n0xF5BA\t0x9E7E\n0xF5BB\t0x8DB8\n0xF5BC\t0x8DEB\n0xF5BD\t0x8E05\n0xF5BE\t0x8E59\n0xF5BF\t0x8E69\n0xF5C0\t0x8DB5\n0xF5C1\t0x8DBF\n0xF5C2\t0x8DBC\n0xF5C3\t0x8DBA\n0xF5C4\t0x8DC4\n0xF5C5\t0x8DD6\n0xF5C6\t0x8DD7\n0xF5C7\t0x8DDA\n0xF5C8\t0x8DDE\n0xF5C9\t0x8DCE\n0xF5CA\t0x8DCF\n0xF5CB\t0x8DDB\n0xF5CC\t0x8DC6\n0xF5CD\t0x8DEC\n0xF5CE\t0x8DF7\n0xF5CF\t0x8DF8\n0xF5D0\t0x8DE3\n0xF5D1\t0x8DF9\n0xF5D2\t0x8DFB\n0xF5D3\t0x8DE4\n0xF5D4\t0x8E09\n0xF5D5\t0x8DFD\n0xF5D6\t0x8E14\n0xF5D7\t0x8E1D\n0xF5D8\t0x8E1F\n0xF5D9\t0x8E2C\n0xF5DA\t0x8E2E\n0xF5DB\t0x8E23\n0xF5DC\t0x8E2F\n0xF5DD\t0x8E3A\n0xF5DE\t0x8E40\n0xF5DF\t0x8E39\n0xF5E0\t0x8E35\n0xF5E1\t0x8E3D\n0xF5E2\t0x8E31\n0xF5E3\t0x8E49\n0xF5E4\t0x8E41\n0xF5E5\t0x8E42\n0xF5E6\t0x8E51\n0xF5E7\t0x8E52\n0xF5E8\t0x8E4A\n0xF5E9\t0x8E70\n0xF5EA\t0x8E76\n0xF5EB\t0x8E7C\n0xF5EC\t0x8E6F\n0xF5ED\t0x8E74\n0xF5EE\t0x8E85\n0xF5EF\t0x8E8F\n0xF5F0\t0x8E94\n0xF5F1\t0x8E90\n0xF5F2\t0x8E9C\n0xF5F3\t0x8E9E\n0xF5F4\t0x8C78\n0xF5F5\t0x8C82\n0xF5F6\t0x8C8A\n0xF5F7\t0x8C85\n0xF5F8\t0x8C98\n0xF5F9\t0x8C94\n0xF5FA\t0x659B\n0xF5FB\t0x89D6\n0xF5FC\t0x89DE\n0xF5FD\t0x89DA\n0xF5FE\t0x89DC\n0xF6A1\t0x89E5\n0xF6A2\t0x89EB\n0xF6A3\t0x89EF\n0xF6A4\t0x8A3E\n0xF6A5\t0x8B26\n0xF6A6\t0x9753\n0xF6A7\t0x96E9\n0xF6A8\t0x96F3\n0xF6A9\t0x96EF\n0xF6AA\t0x9706\n0xF6AB\t0x9701\n0xF6AC\t0x9708\n0xF6AD\t0x970F\n0xF6AE\t0x970E\n0xF6AF\t0x972A\n0xF6B0\t0x972D\n0xF6B1\t0x9730\n0xF6B2\t0x973E\n0xF6B3\t0x9F80\n0xF6B4\t0x9F83\n0xF6B5\t0x9F85\n0xF6B6\t0x9F86\n0xF6B7\t0x9F87\n0xF6B8\t0x9F88\n0xF6B9\t0x9F89\n0xF6BA\t0x9F8A\n0xF6BB\t0x9F8C\n0xF6BC\t0x9EFE\n0xF6BD\t0x9F0B\n0xF6BE\t0x9F0D\n0xF6BF\t0x96B9\n0xF6C0\t0x96BC\n0xF6C1\t0x96BD\n0xF6C2\t0x96CE\n0xF6C3\t0x96D2\n0xF6C4\t0x77BF\n0xF6C5\t0x96E0\n0xF6C6\t0x928E\n0xF6C7\t0x92AE\n0xF6C8\t0x92C8\n0xF6C9\t0x933E\n0xF6CA\t0x936A\n0xF6CB\t0x93CA\n0xF6CC\t0x938F\n0xF6CD\t0x943E\n0xF6CE\t0x946B\n0xF6CF\t0x9C7F\n0xF6D0\t0x9C82\n0xF6D1\t0x9C85\n0xF6D2\t0x9C86\n0xF6D3\t0x9C87\n0xF6D4\t0x9C88\n0xF6D5\t0x7A23\n0xF6D6\t0x9C8B\n0xF6D7\t0x9C8E\n0xF6D8\t0x9C90\n0xF6D9\t0x9C91\n0xF6DA\t0x9C92\n0xF6DB\t0x9C94\n0xF6DC\t0x9C95\n0xF6DD\t0x9C9A\n0xF6DE\t0x9C9B\n0xF6DF\t0x9C9E\n0xF6E0\t0x9C9F\n0xF6E1\t0x9CA0\n0xF6E2\t0x9CA1\n0xF6E3\t0x9CA2\n0xF6E4\t0x9CA3\n0xF6E5\t0x9CA5\n0xF6E6\t0x9CA6\n0xF6E7\t0x9CA7\n0xF6E8\t0x9CA8\n0xF6E9\t0x9CA9\n0xF6EA\t0x9CAB\n0xF6EB\t0x9CAD\n0xF6EC\t0x9CAE\n0xF6ED\t0x9CB0\n0xF6EE\t0x9CB1\n0xF6EF\t0x9CB2\n0xF6F0\t0x9CB3\n0xF6F1\t0x9CB4\n0xF6F2\t0x9CB5\n0xF6F3\t0x9CB6\n0xF6F4\t0x9CB7\n0xF6F5\t0x9CBA\n0xF6F6\t0x9CBB\n0xF6F7\t0x9CBC\n0xF6F8\t0x9CBD\n0xF6F9\t0x9CC4\n0xF6FA\t0x9CC5\n0xF6FB\t0x9CC6\n0xF6FC\t0x9CC7\n0xF6FD\t0x9CCA\n0xF6FE\t0x9CCB\n0xF7A1\t0x9CCC\n0xF7A2\t0x9CCD\n0xF7A3\t0x9CCE\n0xF7A4\t0x9CCF\n0xF7A5\t0x9CD0\n0xF7A6\t0x9CD3\n0xF7A7\t0x9CD4\n0xF7A8\t0x9CD5\n0xF7A9\t0x9CD7\n0xF7AA\t0x9CD8\n0xF7AB\t0x9CD9\n0xF7AC\t0x9CDC\n0xF7AD\t0x9CDD\n0xF7AE\t0x9CDF\n0xF7AF\t0x9CE2\n0xF7B0\t0x977C\n0xF7B1\t0x9785\n0xF7B2\t0x9791\n0xF7B3\t0x9792\n0xF7B4\t0x9794\n0xF7B5\t0x97AF\n0xF7B6\t0x97AB\n0xF7B7\t0x97A3\n0xF7B8\t0x97B2\n0xF7B9\t0x97B4\n0xF7BA\t0x9AB1\n0xF7BB\t0x9AB0\n0xF7BC\t0x9AB7\n0xF7BD\t0x9E58\n0xF7BE\t0x9AB6\n0xF7BF\t0x9ABA\n0xF7C0\t0x9ABC\n0xF7C1\t0x9AC1\n0xF7C2\t0x9AC0\n0xF7C3\t0x9AC5\n0xF7C4\t0x9AC2\n0xF7C5\t0x9ACB\n0xF7C6\t0x9ACC\n0xF7C7\t0x9AD1\n0xF7C8\t0x9B45\n0xF7C9\t0x9B43\n0xF7CA\t0x9B47\n0xF7CB\t0x9B49\n0xF7CC\t0x9B48\n0xF7CD\t0x9B4D\n0xF7CE\t0x9B51\n0xF7CF\t0x98E8\n0xF7D0\t0x990D\n0xF7D1\t0x992E\n0xF7D2\t0x9955\n0xF7D3\t0x9954\n0xF7D4\t0x9ADF\n0xF7D5\t0x9AE1\n0xF7D6\t0x9AE6\n0xF7D7\t0x9AEF\n0xF7D8\t0x9AEB\n0xF7D9\t0x9AFB\n0xF7DA\t0x9AED\n0xF7DB\t0x9AF9\n0xF7DC\t0x9B08\n0xF7DD\t0x9B0F\n0xF7DE\t0x9B13\n0xF7DF\t0x9B1F\n0xF7E0\t0x9B23\n0xF7E1\t0x9EBD\n0xF7E2\t0x9EBE\n0xF7E3\t0x7E3B\n0xF7E4\t0x9E82\n0xF7E5\t0x9E87\n0xF7E6\t0x9E88\n0xF7E7\t0x9E8B\n0xF7E8\t0x9E92\n0xF7E9\t0x93D6\n0xF7EA\t0x9E9D\n0xF7EB\t0x9E9F\n0xF7EC\t0x9EDB\n0xF7ED\t0x9EDC\n0xF7EE\t0x9EDD\n0xF7EF\t0x9EE0\n0xF7F0\t0x9EDF\n0xF7F1\t0x9EE2\n0xF7F2\t0x9EE9\n0xF7F3\t0x9EE7\n0xF7F4\t0x9EE5\n0xF7F5\t0x9EEA\n0xF7F6\t0x9EEF\n0xF7F7\t0x9F22\n0xF7F8\t0x9F2C\n0xF7F9\t0x9F2F\n0xF7FA\t0x9F39\n0xF7FB\t0x9F37\n0xF7FC\t0x9F3D\n0xF7FD\t0x9F3E\n0xF7FE\t0x9F44\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/EUC-JISX0213.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8EA1\t0xFF61\n0x8EA2\t0xFF62\n0x8EA3\t0xFF63\n0x8EA4\t0xFF64\n0x8EA5\t0xFF65\n0x8EA6\t0xFF66\n0x8EA7\t0xFF67\n0x8EA8\t0xFF68\n0x8EA9\t0xFF69\n0x8EAA\t0xFF6A\n0x8EAB\t0xFF6B\n0x8EAC\t0xFF6C\n0x8EAD\t0xFF6D\n0x8EAE\t0xFF6E\n0x8EAF\t0xFF6F\n0x8EB0\t0xFF70\n0x8EB1\t0xFF71\n0x8EB2\t0xFF72\n0x8EB3\t0xFF73\n0x8EB4\t0xFF74\n0x8EB5\t0xFF75\n0x8EB6\t0xFF76\n0x8EB7\t0xFF77\n0x8EB8\t0xFF78\n0x8EB9\t0xFF79\n0x8EBA\t0xFF7A\n0x8EBB\t0xFF7B\n0x8EBC\t0xFF7C\n0x8EBD\t0xFF7D\n0x8EBE\t0xFF7E\n0x8EBF\t0xFF7F\n0x8EC0\t0xFF80\n0x8EC1\t0xFF81\n0x8EC2\t0xFF82\n0x8EC3\t0xFF83\n0x8EC4\t0xFF84\n0x8EC5\t0xFF85\n0x8EC6\t0xFF86\n0x8EC7\t0xFF87\n0x8EC8\t0xFF88\n0x8EC9\t0xFF89\n0x8ECA\t0xFF8A\n0x8ECB\t0xFF8B\n0x8ECC\t0xFF8C\n0x8ECD\t0xFF8D\n0x8ECE\t0xFF8E\n0x8ECF\t0xFF8F\n0x8ED0\t0xFF90\n0x8ED1\t0xFF91\n0x8ED2\t0xFF92\n0x8ED3\t0xFF93\n0x8ED4\t0xFF94\n0x8ED5\t0xFF95\n0x8ED6\t0xFF96\n0x8ED7\t0xFF97\n0x8ED8\t0xFF98\n0x8ED9\t0xFF99\n0x8EDA\t0xFF9A\n0x8EDB\t0xFF9B\n0x8EDC\t0xFF9C\n0x8EDD\t0xFF9D\n0x8EDE\t0xFF9E\n0x8EDF\t0xFF9F\n0x8FA1A1\t0x20089\n0x8FA1A2\t0x4E02\n0x8FA1A3\t0x4E0F\n0x8FA1A4\t0x4E12\n0x8FA1A5\t0x4E29\n0x8FA1A6\t0x4E2B\n0x8FA1A7\t0x4E2E\n0x8FA1A8\t0x4E40\n0x8FA1A9\t0x4E47\n0x8FA1AA\t0x4E48\n0x8FA1AB\t0x200A2\n0x8FA1AC\t0x4E51\n0x8FA1AD\t0x3406\n0x8FA1AE\t0x200A4\n0x8FA1AF\t0x4E5A\n0x8FA1B0\t0x4E69\n0x8FA1B1\t0x4E9D\n0x8FA1B2\t0x342C\n0x8FA1B3\t0x342E\n0x8FA1B4\t0x4EB9\n0x8FA1B5\t0x4EBB\n0x8FA1B6\t0x201A2\n0x8FA1B7\t0x4EBC\n0x8FA1B8\t0x4EC3\n0x8FA1B9\t0x4EC8\n0x8FA1BA\t0x4ED0\n0x8FA1BB\t0x4EEB\n0x8FA1BC\t0x4EDA\n0x8FA1BD\t0x4EF1\n0x8FA1BE\t0x4EF5\n0x8FA1BF\t0x4F00\n0x8FA1C0\t0x4F16\n0x8FA1C1\t0x4F64\n0x8FA1C2\t0x4F37\n0x8FA1C3\t0x4F3E\n0x8FA1C4\t0x4F54\n0x8FA1C5\t0x4F58\n0x8FA1C6\t0x20213\n0x8FA1C7\t0x4F77\n0x8FA1C8\t0x4F78\n0x8FA1C9\t0x4F7A\n0x8FA1CA\t0x4F7D\n0x8FA1CB\t0x4F82\n0x8FA1CC\t0x4F85\n0x8FA1CD\t0x4F92\n0x8FA1CE\t0x4F9A\n0x8FA1CF\t0x4FE6\n0x8FA1D0\t0x4FB2\n0x8FA1D1\t0x4FBE\n0x8FA1D2\t0x4FC5\n0x8FA1D3\t0x4FCB\n0x8FA1D4\t0x4FCF\n0x8FA1D5\t0x4FD2\n0x8FA1D6\t0x346A\n0x8FA1D7\t0x4FF2\n0x8FA1D8\t0x5000\n0x8FA1D9\t0x5010\n0x8FA1DA\t0x5013\n0x8FA1DB\t0x501C\n0x8FA1DC\t0x501E\n0x8FA1DD\t0x5022\n0x8FA1DE\t0x3468\n0x8FA1DF\t0x5042\n0x8FA1E0\t0x5046\n0x8FA1E1\t0x504E\n0x8FA1E2\t0x5053\n0x8FA1E3\t0x5057\n0x8FA1E4\t0x5063\n0x8FA1E5\t0x5066\n0x8FA1E6\t0x506A\n0x8FA1E7\t0x5070\n0x8FA1E8\t0x50A3\n0x8FA1E9\t0x5088\n0x8FA1EA\t0x5092\n0x8FA1EB\t0x5093\n0x8FA1EC\t0x5095\n0x8FA1ED\t0x5096\n0x8FA1EE\t0x509C\n0x8FA1EF\t0x50AA\n0x8FA1F0\t0x2032B\n0x8FA1F1\t0x50B1\n0x8FA1F2\t0x50BA\n0x8FA1F3\t0x50BB\n0x8FA1F4\t0x50C4\n0x8FA1F5\t0x50C7\n0x8FA1F6\t0x50F3\n0x8FA1F7\t0x20381\n0x8FA1F8\t0x50CE\n0x8FA1F9\t0x20371\n0x8FA1FA\t0x50D4\n0x8FA1FB\t0x50D9\n0x8FA1FC\t0x50E1\n0x8FA1FD\t0x50E9\n0x8FA1FE\t0x3492\n0x8FA3A1\t0x5108\n0x8FA3A2\t0x203F9\n0x8FA3A3\t0x5117\n0x8FA3A4\t0x511B\n0x8FA3A5\t0x2044A\n0x8FA3A6\t0x5160\n0x8FA3A7\t0x20509\n0x8FA3A8\t0x5173\n0x8FA3A9\t0x5183\n0x8FA3AA\t0x518B\n0x8FA3AB\t0x34BC\n0x8FA3AC\t0x5198\n0x8FA3AD\t0x51A3\n0x8FA3AE\t0x51AD\n0x8FA3AF\t0x34C7\n0x8FA3B0\t0x51BC\n0x8FA3B1\t0x205D6\n0x8FA3B2\t0x20628\n0x8FA3B3\t0x51F3\n0x8FA3B4\t0x51F4\n0x8FA3B5\t0x5202\n0x8FA3B6\t0x5212\n0x8FA3B7\t0x5216\n0x8FA3B8\t0x2074F\n0x8FA3B9\t0x5255\n0x8FA3BA\t0x525C\n0x8FA3BB\t0x526C\n0x8FA3BC\t0x5277\n0x8FA3BD\t0x5284\n0x8FA3BE\t0x5282\n0x8FA3BF\t0x20807\n0x8FA3C0\t0x5298\n0x8FA3C1\t0x2083A\n0x8FA3C2\t0x52A4\n0x8FA3C3\t0x52A6\n0x8FA3C4\t0x52AF\n0x8FA3C5\t0x52BA\n0x8FA3C6\t0x52BB\n0x8FA3C7\t0x52CA\n0x8FA3C8\t0x351F\n0x8FA3C9\t0x52D1\n0x8FA3CA\t0x208B9\n0x8FA3CB\t0x52F7\n0x8FA3CC\t0x530A\n0x8FA3CD\t0x530B\n0x8FA3CE\t0x5324\n0x8FA3CF\t0x5335\n0x8FA3D0\t0x533E\n0x8FA3D1\t0x5342\n0x8FA3D2\t0x2097C\n0x8FA3D3\t0x2099D\n0x8FA3D4\t0x5367\n0x8FA3D5\t0x536C\n0x8FA3D6\t0x537A\n0x8FA3D7\t0x53A4\n0x8FA3D8\t0x53B4\n0x8FA3D9\t0x20AD3\n0x8FA3DA\t0x53B7\n0x8FA3DB\t0x53C0\n0x8FA3DC\t0x20B1D\n0x8FA3DD\t0x355D\n0x8FA3DE\t0x355E\n0x8FA3DF\t0x53D5\n0x8FA3E0\t0x53DA\n0x8FA3E1\t0x3563\n0x8FA3E2\t0x53F4\n0x8FA3E3\t0x53F5\n0x8FA3E4\t0x5455\n0x8FA3E5\t0x5424\n0x8FA3E6\t0x5428\n0x8FA3E7\t0x356E\n0x8FA3E8\t0x5443\n0x8FA3E9\t0x5462\n0x8FA3EA\t0x5466\n0x8FA3EB\t0x546C\n0x8FA3EC\t0x548A\n0x8FA3ED\t0x548D\n0x8FA3EE\t0x5495\n0x8FA3EF\t0x54A0\n0x8FA3F0\t0x54A6\n0x8FA3F1\t0x54AD\n0x8FA3F2\t0x54AE\n0x8FA3F3\t0x54B7\n0x8FA3F4\t0x54BA\n0x8FA3F5\t0x54BF\n0x8FA3F6\t0x54C3\n0x8FA3F7\t0x20D45\n0x8FA3F8\t0x54EC\n0x8FA3F9\t0x54EF\n0x8FA3FA\t0x54F1\n0x8FA3FB\t0x54F3\n0x8FA3FC\t0x5500\n0x8FA3FD\t0x5501\n0x8FA3FE\t0x5509\n0x8FA4A1\t0x553C\n0x8FA4A2\t0x5541\n0x8FA4A3\t0x35A6\n0x8FA4A4\t0x5547\n0x8FA4A5\t0x554A\n0x8FA4A6\t0x35A8\n0x8FA4A7\t0x5560\n0x8FA4A8\t0x5561\n0x8FA4A9\t0x5564\n0x8FA4AA\t0x20DE1\n0x8FA4AB\t0x557D\n0x8FA4AC\t0x5582\n0x8FA4AD\t0x5588\n0x8FA4AE\t0x5591\n0x8FA4AF\t0x35C5\n0x8FA4B0\t0x55D2\n0x8FA4B1\t0x20E95\n0x8FA4B2\t0x20E6D\n0x8FA4B3\t0x55BF\n0x8FA4B4\t0x55C9\n0x8FA4B5\t0x55CC\n0x8FA4B6\t0x55D1\n0x8FA4B7\t0x55DD\n0x8FA4B8\t0x35DA\n0x8FA4B9\t0x55E2\n0x8FA4BA\t0x20E64\n0x8FA4BB\t0x55E9\n0x8FA4BC\t0x5628\n0x8FA4BD\t0x20F5F\n0x8FA4BE\t0x5607\n0x8FA4BF\t0x5610\n0x8FA4C0\t0x5630\n0x8FA4C1\t0x5637\n0x8FA4C2\t0x35F4\n0x8FA4C3\t0x563D\n0x8FA4C4\t0x563F\n0x8FA4C5\t0x5640\n0x8FA4C6\t0x5647\n0x8FA4C7\t0x565E\n0x8FA4C8\t0x5660\n0x8FA4C9\t0x566D\n0x8FA4CA\t0x3605\n0x8FA4CB\t0x5688\n0x8FA4CC\t0x568C\n0x8FA4CD\t0x5695\n0x8FA4CE\t0x569A\n0x8FA4CF\t0x569D\n0x8FA4D0\t0x56A8\n0x8FA4D1\t0x56AD\n0x8FA4D2\t0x56B2\n0x8FA4D3\t0x56C5\n0x8FA4D4\t0x56CD\n0x8FA4D5\t0x56DF\n0x8FA4D6\t0x56E8\n0x8FA4D7\t0x56F6\n0x8FA4D8\t0x56F7\n0x8FA4D9\t0x21201\n0x8FA4DA\t0x5715\n0x8FA4DB\t0x5723\n0x8FA4DC\t0x21255\n0x8FA4DD\t0x5729\n0x8FA4DE\t0x2127B\n0x8FA4DF\t0x5745\n0x8FA4E0\t0x5746\n0x8FA4E1\t0x574C\n0x8FA4E2\t0x574D\n0x8FA4E3\t0x21274\n0x8FA4E4\t0x5768\n0x8FA4E5\t0x576F\n0x8FA4E6\t0x5773\n0x8FA4E7\t0x5774\n0x8FA4E8\t0x5775\n0x8FA4E9\t0x577B\n0x8FA4EA\t0x212E4\n0x8FA4EB\t0x212D7\n0x8FA4EC\t0x57AC\n0x8FA4ED\t0x579A\n0x8FA4EE\t0x579D\n0x8FA4EF\t0x579E\n0x8FA4F0\t0x57A8\n0x8FA4F1\t0x57D7\n0x8FA4F2\t0x212FD\n0x8FA4F3\t0x57CC\n0x8FA4F4\t0x21336\n0x8FA4F5\t0x21344\n0x8FA4F6\t0x57DE\n0x8FA4F7\t0x57E6\n0x8FA4F8\t0x57F0\n0x8FA4F9\t0x364A\n0x8FA4FA\t0x57F8\n0x8FA4FB\t0x57FB\n0x8FA4FC\t0x57FD\n0x8FA4FD\t0x5804\n0x8FA4FE\t0x581E\n0x8FA5A1\t0x5820\n0x8FA5A2\t0x5827\n0x8FA5A3\t0x5832\n0x8FA5A4\t0x5839\n0x8FA5A5\t0x213C4\n0x8FA5A6\t0x5849\n0x8FA5A7\t0x584C\n0x8FA5A8\t0x5867\n0x8FA5A9\t0x588A\n0x8FA5AA\t0x588B\n0x8FA5AB\t0x588D\n0x8FA5AC\t0x588F\n0x8FA5AD\t0x5890\n0x8FA5AE\t0x5894\n0x8FA5AF\t0x589D\n0x8FA5B0\t0x58AA\n0x8FA5B1\t0x58B1\n0x8FA5B2\t0x2146D\n0x8FA5B3\t0x58C3\n0x8FA5B4\t0x58CD\n0x8FA5B5\t0x58E2\n0x8FA5B6\t0x58F3\n0x8FA5B7\t0x58F4\n0x8FA5B8\t0x5905\n0x8FA5B9\t0x5906\n0x8FA5BA\t0x590B\n0x8FA5BB\t0x590D\n0x8FA5BC\t0x5914\n0x8FA5BD\t0x5924\n0x8FA5BE\t0x215D7\n0x8FA5BF\t0x3691\n0x8FA5C0\t0x593D\n0x8FA5C1\t0x3699\n0x8FA5C2\t0x5946\n0x8FA5C3\t0x3696\n0x8FA5C4\t0x26C29\n0x8FA5C5\t0x595B\n0x8FA5C6\t0x595F\n0x8FA5C7\t0x21647\n0x8FA5C8\t0x5975\n0x8FA5C9\t0x5976\n0x8FA5CA\t0x597C\n0x8FA5CB\t0x599F\n0x8FA5CC\t0x59AE\n0x8FA5CD\t0x59BC\n0x8FA5CE\t0x59C8\n0x8FA5CF\t0x59CD\n0x8FA5D0\t0x59DE\n0x8FA5D1\t0x59E3\n0x8FA5D2\t0x59E4\n0x8FA5D3\t0x59E7\n0x8FA5D4\t0x59EE\n0x8FA5D5\t0x21706\n0x8FA5D6\t0x21742\n0x8FA5D7\t0x36CF\n0x8FA5D8\t0x5A0C\n0x8FA5D9\t0x5A0D\n0x8FA5DA\t0x5A17\n0x8FA5DB\t0x5A27\n0x8FA5DC\t0x5A2D\n0x8FA5DD\t0x5A55\n0x8FA5DE\t0x5A65\n0x8FA5DF\t0x5A7A\n0x8FA5E0\t0x5A8B\n0x8FA5E1\t0x5A9C\n0x8FA5E2\t0x5A9F\n0x8FA5E3\t0x5AA0\n0x8FA5E4\t0x5AA2\n0x8FA5E5\t0x5AB1\n0x8FA5E6\t0x5AB3\n0x8FA5E7\t0x5AB5\n0x8FA5E8\t0x5ABA\n0x8FA5E9\t0x5ABF\n0x8FA5EA\t0x5ADA\n0x8FA5EB\t0x5ADC\n0x8FA5EC\t0x5AE0\n0x8FA5ED\t0x5AE5\n0x8FA5EE\t0x5AF0\n0x8FA5EF\t0x5AEE\n0x8FA5F0\t0x5AF5\n0x8FA5F1\t0x5B00\n0x8FA5F2\t0x5B08\n0x8FA5F3\t0x5B17\n0x8FA5F4\t0x5B34\n0x8FA5F5\t0x5B2D\n0x8FA5F6\t0x5B4C\n0x8FA5F7\t0x5B52\n0x8FA5F8\t0x5B68\n0x8FA5F9\t0x5B6F\n0x8FA5FA\t0x5B7C\n0x8FA5FB\t0x5B7F\n0x8FA5FC\t0x5B81\n0x8FA5FD\t0x5B84\n0x8FA5FE\t0x219C3\n0x8FA8A1\t0x5B96\n0x8FA8A2\t0x5BAC\n0x8FA8A3\t0x3761\n0x8FA8A4\t0x5BC0\n0x8FA8A5\t0x3762\n0x8FA8A6\t0x5BCE\n0x8FA8A7\t0x5BD6\n0x8FA8A8\t0x376C\n0x8FA8A9\t0x376B\n0x8FA8AA\t0x5BF1\n0x8FA8AB\t0x5BFD\n0x8FA8AC\t0x3775\n0x8FA8AD\t0x5C03\n0x8FA8AE\t0x5C29\n0x8FA8AF\t0x5C30\n0x8FA8B0\t0x21C56\n0x8FA8B1\t0x5C5F\n0x8FA8B2\t0x5C63\n0x8FA8B3\t0x5C67\n0x8FA8B4\t0x5C68\n0x8FA8B5\t0x5C69\n0x8FA8B6\t0x5C70\n0x8FA8B7\t0x21D2D\n0x8FA8B8\t0x21D45\n0x8FA8B9\t0x5C7C\n0x8FA8BA\t0x21D78\n0x8FA8BB\t0x21D62\n0x8FA8BC\t0x5C88\n0x8FA8BD\t0x5C8A\n0x8FA8BE\t0x37C1\n0x8FA8BF\t0x21DA1\n0x8FA8C0\t0x21D9C\n0x8FA8C1\t0x5CA0\n0x8FA8C2\t0x5CA2\n0x8FA8C3\t0x5CA6\n0x8FA8C4\t0x5CA7\n0x8FA8C5\t0x21D92\n0x8FA8C6\t0x5CAD\n0x8FA8C7\t0x5CB5\n0x8FA8C8\t0x21DB7\n0x8FA8C9\t0x5CC9\n0x8FA8CA\t0x21DE0\n0x8FA8CB\t0x21E33\n0x8FA8CC\t0x5D06\n0x8FA8CD\t0x5D10\n0x8FA8CE\t0x5D2B\n0x8FA8CF\t0x5D1D\n0x8FA8D0\t0x5D20\n0x8FA8D1\t0x5D24\n0x8FA8D2\t0x5D26\n0x8FA8D3\t0x5D31\n0x8FA8D4\t0x5D39\n0x8FA8D5\t0x5D42\n0x8FA8D6\t0x37E8\n0x8FA8D7\t0x5D61\n0x8FA8D8\t0x5D6A\n0x8FA8D9\t0x37F4\n0x8FA8DA\t0x5D70\n0x8FA8DB\t0x21F1E\n0x8FA8DC\t0x37FD\n0x8FA8DD\t0x5D88\n0x8FA8DE\t0x3800\n0x8FA8DF\t0x5D92\n0x8FA8E0\t0x5D94\n0x8FA8E1\t0x5D97\n0x8FA8E2\t0x5D99\n0x8FA8E3\t0x5DB0\n0x8FA8E4\t0x5DB2\n0x8FA8E5\t0x5DB4\n0x8FA8E6\t0x21F76\n0x8FA8E7\t0x5DB9\n0x8FA8E8\t0x5DD1\n0x8FA8E9\t0x5DD7\n0x8FA8EA\t0x5DD8\n0x8FA8EB\t0x5DE0\n0x8FA8EC\t0x21FFA\n0x8FA8ED\t0x5DE4\n0x8FA8EE\t0x5DE9\n0x8FA8EF\t0x382F\n0x8FA8F0\t0x5E00\n0x8FA8F1\t0x3836\n0x8FA8F2\t0x5E12\n0x8FA8F3\t0x5E15\n0x8FA8F4\t0x3840\n0x8FA8F5\t0x5E1F\n0x8FA8F6\t0x5E2E\n0x8FA8F7\t0x5E3E\n0x8FA8F8\t0x5E49\n0x8FA8F9\t0x385C\n0x8FA8FA\t0x5E56\n0x8FA8FB\t0x3861\n0x8FA8FC\t0x5E6B\n0x8FA8FD\t0x5E6C\n0x8FA8FE\t0x5E6D\n0x8FACA1\t0x5E6E\n0x8FACA2\t0x2217B\n0x8FACA3\t0x5EA5\n0x8FACA4\t0x5EAA\n0x8FACA5\t0x5EAC\n0x8FACA6\t0x5EB9\n0x8FACA7\t0x5EBF\n0x8FACA8\t0x5EC6\n0x8FACA9\t0x5ED2\n0x8FACAA\t0x5ED9\n0x8FACAB\t0x2231E\n0x8FACAC\t0x5EFD\n0x8FACAD\t0x5F08\n0x8FACAE\t0x5F0E\n0x8FACAF\t0x5F1C\n0x8FACB0\t0x223AD\n0x8FACB1\t0x5F1E\n0x8FACB2\t0x5F47\n0x8FACB3\t0x5F63\n0x8FACB4\t0x5F72\n0x8FACB5\t0x5F7E\n0x8FACB6\t0x5F8F\n0x8FACB7\t0x5FA2\n0x8FACB8\t0x5FA4\n0x8FACB9\t0x5FB8\n0x8FACBA\t0x5FC4\n0x8FACBB\t0x38FA\n0x8FACBC\t0x5FC7\n0x8FACBD\t0x5FCB\n0x8FACBE\t0x5FD2\n0x8FACBF\t0x5FD3\n0x8FACC0\t0x5FD4\n0x8FACC1\t0x5FE2\n0x8FACC2\t0x5FEE\n0x8FACC3\t0x5FEF\n0x8FACC4\t0x5FF3\n0x8FACC5\t0x5FFC\n0x8FACC6\t0x3917\n0x8FACC7\t0x6017\n0x8FACC8\t0x6022\n0x8FACC9\t0x6024\n0x8FACCA\t0x391A\n0x8FACCB\t0x604C\n0x8FACCC\t0x607F\n0x8FACCD\t0x608A\n0x8FACCE\t0x6095\n0x8FACCF\t0x60A8\n0x8FACD0\t0x226F3\n0x8FACD1\t0x60B0\n0x8FACD2\t0x60B1\n0x8FACD3\t0x60BE\n0x8FACD4\t0x60C8\n0x8FACD5\t0x60D9\n0x8FACD6\t0x60DB\n0x8FACD7\t0x60EE\n0x8FACD8\t0x60F2\n0x8FACD9\t0x60F5\n0x8FACDA\t0x6110\n0x8FACDB\t0x6112\n0x8FACDC\t0x6113\n0x8FACDD\t0x6119\n0x8FACDE\t0x611E\n0x8FACDF\t0x613A\n0x8FACE0\t0x396F\n0x8FACE1\t0x6141\n0x8FACE2\t0x6146\n0x8FACE3\t0x6160\n0x8FACE4\t0x617C\n0x8FACE5\t0x2285B\n0x8FACE6\t0x6192\n0x8FACE7\t0x6193\n0x8FACE8\t0x6197\n0x8FACE9\t0x6198\n0x8FACEA\t0x61A5\n0x8FACEB\t0x61A8\n0x8FACEC\t0x61AD\n0x8FACED\t0x228AB\n0x8FACEE\t0x61D5\n0x8FACEF\t0x61DD\n0x8FACF0\t0x61DF\n0x8FACF1\t0x61F5\n0x8FACF2\t0x2298F\n0x8FACF3\t0x6215\n0x8FACF4\t0x6223\n0x8FACF5\t0x6229\n0x8FACF6\t0x6246\n0x8FACF7\t0x624C\n0x8FACF8\t0x6251\n0x8FACF9\t0x6252\n0x8FACFA\t0x6261\n0x8FACFB\t0x6264\n0x8FACFC\t0x627B\n0x8FACFD\t0x626D\n0x8FACFE\t0x6273\n0x8FADA1\t0x6299\n0x8FADA2\t0x62A6\n0x8FADA3\t0x62D5\n0x8FADA4\t0x22AB8\n0x8FADA5\t0x62FD\n0x8FADA6\t0x6303\n0x8FADA7\t0x630D\n0x8FADA8\t0x6310\n0x8FADA9\t0x22B4F\n0x8FADAA\t0x22B50\n0x8FADAB\t0x6332\n0x8FADAC\t0x6335\n0x8FADAD\t0x633B\n0x8FADAE\t0x633C\n0x8FADAF\t0x6341\n0x8FADB0\t0x6344\n0x8FADB1\t0x634E\n0x8FADB2\t0x22B46\n0x8FADB3\t0x6359\n0x8FADB4\t0x22C1D\n0x8FADB5\t0x22BA6\n0x8FADB6\t0x636C\n0x8FADB7\t0x6384\n0x8FADB8\t0x6399\n0x8FADB9\t0x22C24\n0x8FADBA\t0x6394\n0x8FADBB\t0x63BD\n0x8FADBC\t0x63F7\n0x8FADBD\t0x63D4\n0x8FADBE\t0x63D5\n0x8FADBF\t0x63DC\n0x8FADC0\t0x63E0\n0x8FADC1\t0x63EB\n0x8FADC2\t0x63EC\n0x8FADC3\t0x63F2\n0x8FADC4\t0x6409\n0x8FADC5\t0x641E\n0x8FADC6\t0x6425\n0x8FADC7\t0x6429\n0x8FADC8\t0x642F\n0x8FADC9\t0x645A\n0x8FADCA\t0x645B\n0x8FADCB\t0x645D\n0x8FADCC\t0x6473\n0x8FADCD\t0x647D\n0x8FADCE\t0x6487\n0x8FADCF\t0x6491\n0x8FADD0\t0x649D\n0x8FADD1\t0x649F\n0x8FADD2\t0x64CB\n0x8FADD3\t0x64CC\n0x8FADD4\t0x64D5\n0x8FADD5\t0x64D7\n0x8FADD6\t0x22DE1\n0x8FADD7\t0x64E4\n0x8FADD8\t0x64E5\n0x8FADD9\t0x64FF\n0x8FADDA\t0x6504\n0x8FADDB\t0x3A6E\n0x8FADDC\t0x650F\n0x8FADDD\t0x6514\n0x8FADDE\t0x6516\n0x8FADDF\t0x3A73\n0x8FADE0\t0x651E\n0x8FADE1\t0x6532\n0x8FADE2\t0x6544\n0x8FADE3\t0x6554\n0x8FADE4\t0x656B\n0x8FADE5\t0x657A\n0x8FADE6\t0x6581\n0x8FADE7\t0x6584\n0x8FADE8\t0x6585\n0x8FADE9\t0x658A\n0x8FADEA\t0x65B2\n0x8FADEB\t0x65B5\n0x8FADEC\t0x65B8\n0x8FADED\t0x65BF\n0x8FADEE\t0x65C2\n0x8FADEF\t0x65C9\n0x8FADF0\t0x65D4\n0x8FADF1\t0x3AD6\n0x8FADF2\t0x65F2\n0x8FADF3\t0x65F9\n0x8FADF4\t0x65FC\n0x8FADF5\t0x6604\n0x8FADF6\t0x6608\n0x8FADF7\t0x6621\n0x8FADF8\t0x662A\n0x8FADF9\t0x6645\n0x8FADFA\t0x6651\n0x8FADFB\t0x664E\n0x8FADFC\t0x3AEA\n0x8FADFD\t0x231C3\n0x8FADFE\t0x6657\n0x8FAEA1\t0x665B\n0x8FAEA2\t0x6663\n0x8FAEA3\t0x231F5\n0x8FAEA4\t0x231B6\n0x8FAEA5\t0x666A\n0x8FAEA6\t0x666B\n0x8FAEA7\t0x666C\n0x8FAEA8\t0x666D\n0x8FAEA9\t0x667B\n0x8FAEAA\t0x6680\n0x8FAEAB\t0x6690\n0x8FAEAC\t0x6692\n0x8FAEAD\t0x6699\n0x8FAEAE\t0x3B0E\n0x8FAEAF\t0x66AD\n0x8FAEB0\t0x66B1\n0x8FAEB1\t0x66B5\n0x8FAEB2\t0x3B1A\n0x8FAEB3\t0x66BF\n0x8FAEB4\t0x3B1C\n0x8FAEB5\t0x66EC\n0x8FAEB6\t0x3AD7\n0x8FAEB7\t0x6701\n0x8FAEB8\t0x6705\n0x8FAEB9\t0x6712\n0x8FAEBA\t0x23372\n0x8FAEBB\t0x6719\n0x8FAEBC\t0x233D3\n0x8FAEBD\t0x233D2\n0x8FAEBE\t0x674C\n0x8FAEBF\t0x674D\n0x8FAEC0\t0x6754\n0x8FAEC1\t0x675D\n0x8FAEC2\t0x233D0\n0x8FAEC3\t0x233E4\n0x8FAEC4\t0x233D5\n0x8FAEC5\t0x6774\n0x8FAEC6\t0x6776\n0x8FAEC7\t0x233DA\n0x8FAEC8\t0x6792\n0x8FAEC9\t0x233DF\n0x8FAECA\t0x8363\n0x8FAECB\t0x6810\n0x8FAECC\t0x67B0\n0x8FAECD\t0x67B2\n0x8FAECE\t0x67C3\n0x8FAECF\t0x67C8\n0x8FAED0\t0x67D2\n0x8FAED1\t0x67D9\n0x8FAED2\t0x67DB\n0x8FAED3\t0x67F0\n0x8FAED4\t0x67F7\n0x8FAED5\t0x2344A\n0x8FAED6\t0x23451\n0x8FAED7\t0x2344B\n0x8FAED8\t0x6818\n0x8FAED9\t0x681F\n0x8FAEDA\t0x682D\n0x8FAEDB\t0x23465\n0x8FAEDC\t0x6833\n0x8FAEDD\t0x683B\n0x8FAEDE\t0x683E\n0x8FAEDF\t0x6844\n0x8FAEE0\t0x6845\n0x8FAEE1\t0x6849\n0x8FAEE2\t0x684C\n0x8FAEE3\t0x6855\n0x8FAEE4\t0x6857\n0x8FAEE5\t0x3B77\n0x8FAEE6\t0x686B\n0x8FAEE7\t0x686E\n0x8FAEE8\t0x687A\n0x8FAEE9\t0x687C\n0x8FAEEA\t0x6882\n0x8FAEEB\t0x6890\n0x8FAEEC\t0x6896\n0x8FAEED\t0x3B6D\n0x8FAEEE\t0x6898\n0x8FAEEF\t0x6899\n0x8FAEF0\t0x689A\n0x8FAEF1\t0x689C\n0x8FAEF2\t0x68AA\n0x8FAEF3\t0x68AB\n0x8FAEF4\t0x68B4\n0x8FAEF5\t0x68BB\n0x8FAEF6\t0x68FB\n0x8FAEF7\t0x234E4\n0x8FAEF8\t0x2355A\n0x8FAEF9\t0xFA13\n0x8FAEFA\t0x68C3\n0x8FAEFB\t0x68C5\n0x8FAEFC\t0x68CC\n0x8FAEFD\t0x68CF\n0x8FAEFE\t0x68D6\n0x8FAFA1\t0x68D9\n0x8FAFA2\t0x68E4\n0x8FAFA3\t0x68E5\n0x8FAFA4\t0x68EC\n0x8FAFA5\t0x68F7\n0x8FAFA6\t0x6903\n0x8FAFA7\t0x6907\n0x8FAFA8\t0x3B87\n0x8FAFA9\t0x3B88\n0x8FAFAA\t0x23594\n0x8FAFAB\t0x693B\n0x8FAFAC\t0x3B8D\n0x8FAFAD\t0x6946\n0x8FAFAE\t0x6969\n0x8FAFAF\t0x696C\n0x8FAFB0\t0x6972\n0x8FAFB1\t0x697A\n0x8FAFB2\t0x697F\n0x8FAFB3\t0x6992\n0x8FAFB4\t0x3BA4\n0x8FAFB5\t0x6996\n0x8FAFB6\t0x6998\n0x8FAFB7\t0x69A6\n0x8FAFB8\t0x69B0\n0x8FAFB9\t0x69B7\n0x8FAFBA\t0x69BA\n0x8FAFBB\t0x69BC\n0x8FAFBC\t0x69C0\n0x8FAFBD\t0x69D1\n0x8FAFBE\t0x69D6\n0x8FAFBF\t0x23639\n0x8FAFC0\t0x23647\n0x8FAFC1\t0x6A30\n0x8FAFC2\t0x23638\n0x8FAFC3\t0x2363A\n0x8FAFC4\t0x69E3\n0x8FAFC5\t0x69EE\n0x8FAFC6\t0x69EF\n0x8FAFC7\t0x69F3\n0x8FAFC8\t0x3BCD\n0x8FAFC9\t0x69F4\n0x8FAFCA\t0x69FE\n0x8FAFCB\t0x6A11\n0x8FAFCC\t0x6A1A\n0x8FAFCD\t0x6A1D\n0x8FAFCE\t0x2371C\n0x8FAFCF\t0x6A32\n0x8FAFD0\t0x6A33\n0x8FAFD1\t0x6A34\n0x8FAFD2\t0x6A3F\n0x8FAFD3\t0x6A46\n0x8FAFD4\t0x6A49\n0x8FAFD5\t0x6A7A\n0x8FAFD6\t0x6A4E\n0x8FAFD7\t0x6A52\n0x8FAFD8\t0x6A64\n0x8FAFD9\t0x2370C\n0x8FAFDA\t0x6A7E\n0x8FAFDB\t0x6A83\n0x8FAFDC\t0x6A8B\n0x8FAFDD\t0x3BF0\n0x8FAFDE\t0x6A91\n0x8FAFDF\t0x6A9F\n0x8FAFE0\t0x6AA1\n0x8FAFE1\t0x23764\n0x8FAFE2\t0x6AAB\n0x8FAFE3\t0x6ABD\n0x8FAFE4\t0x6AC6\n0x8FAFE5\t0x6AD4\n0x8FAFE6\t0x6AD0\n0x8FAFE7\t0x6ADC\n0x8FAFE8\t0x6ADD\n0x8FAFE9\t0x237FF\n0x8FAFEA\t0x237E7\n0x8FAFEB\t0x6AEC\n0x8FAFEC\t0x6AF1\n0x8FAFED\t0x6AF2\n0x8FAFEE\t0x6AF3\n0x8FAFEF\t0x6AFD\n0x8FAFF0\t0x23824\n0x8FAFF1\t0x6B0B\n0x8FAFF2\t0x6B0F\n0x8FAFF3\t0x6B10\n0x8FAFF4\t0x6B11\n0x8FAFF5\t0x2383D\n0x8FAFF6\t0x6B17\n0x8FAFF7\t0x3C26\n0x8FAFF8\t0x6B2F\n0x8FAFF9\t0x6B4A\n0x8FAFFA\t0x6B58\n0x8FAFFB\t0x6B6C\n0x8FAFFC\t0x6B75\n0x8FAFFD\t0x6B7A\n0x8FAFFE\t0x6B81\n0x8FEEA1\t0x6B9B\n0x8FEEA2\t0x6BAE\n0x8FEEA3\t0x23A98\n0x8FEEA4\t0x6BBD\n0x8FEEA5\t0x6BBE\n0x8FEEA6\t0x6BC7\n0x8FEEA7\t0x6BC8\n0x8FEEA8\t0x6BC9\n0x8FEEA9\t0x6BDA\n0x8FEEAA\t0x6BE6\n0x8FEEAB\t0x6BE7\n0x8FEEAC\t0x6BEE\n0x8FEEAD\t0x6BF1\n0x8FEEAE\t0x6C02\n0x8FEEAF\t0x6C0A\n0x8FEEB0\t0x6C0E\n0x8FEEB1\t0x6C35\n0x8FEEB2\t0x6C36\n0x8FEEB3\t0x6C3A\n0x8FEEB4\t0x23C7F\n0x8FEEB5\t0x6C3F\n0x8FEEB6\t0x6C4D\n0x8FEEB7\t0x6C5B\n0x8FEEB8\t0x6C6D\n0x8FEEB9\t0x6C84\n0x8FEEBA\t0x6C89\n0x8FEEBB\t0x3CC3\n0x8FEEBC\t0x6C94\n0x8FEEBD\t0x6C95\n0x8FEEBE\t0x6C97\n0x8FEEBF\t0x6CAD\n0x8FEEC0\t0x6CC2\n0x8FEEC1\t0x6CD0\n0x8FEEC2\t0x3CD2\n0x8FEEC3\t0x6CD6\n0x8FEEC4\t0x6CDA\n0x8FEEC5\t0x6CDC\n0x8FEEC6\t0x6CE9\n0x8FEEC7\t0x6CEC\n0x8FEEC8\t0x6CED\n0x8FEEC9\t0x23D00\n0x8FEECA\t0x6D00\n0x8FEECB\t0x6D0A\n0x8FEECC\t0x6D24\n0x8FEECD\t0x6D26\n0x8FEECE\t0x6D27\n0x8FEECF\t0x6C67\n0x8FEED0\t0x6D2F\n0x8FEED1\t0x6D3C\n0x8FEED2\t0x6D5B\n0x8FEED3\t0x6D5E\n0x8FEED4\t0x6D60\n0x8FEED5\t0x6D70\n0x8FEED6\t0x6D80\n0x8FEED7\t0x6D81\n0x8FEED8\t0x6D8A\n0x8FEED9\t0x6D8D\n0x8FEEDA\t0x6D91\n0x8FEEDB\t0x6D98\n0x8FEEDC\t0x23D40\n0x8FEEDD\t0x6E17\n0x8FEEDE\t0x23DFA\n0x8FEEDF\t0x23DF9\n0x8FEEE0\t0x23DD3\n0x8FEEE1\t0x6DAB\n0x8FEEE2\t0x6DAE\n0x8FEEE3\t0x6DB4\n0x8FEEE4\t0x6DC2\n0x8FEEE5\t0x6D34\n0x8FEEE6\t0x6DC8\n0x8FEEE7\t0x6DCE\n0x8FEEE8\t0x6DCF\n0x8FEEE9\t0x6DD0\n0x8FEEEA\t0x6DDF\n0x8FEEEB\t0x6DE9\n0x8FEEEC\t0x6DF6\n0x8FEEED\t0x6E36\n0x8FEEEE\t0x6E1E\n0x8FEEEF\t0x6E22\n0x8FEEF0\t0x6E27\n0x8FEEF1\t0x3D11\n0x8FEEF2\t0x6E32\n0x8FEEF3\t0x6E3C\n0x8FEEF4\t0x6E48\n0x8FEEF5\t0x6E49\n0x8FEEF6\t0x6E4B\n0x8FEEF7\t0x6E4C\n0x8FEEF8\t0x6E4F\n0x8FEEF9\t0x6E51\n0x8FEEFA\t0x6E53\n0x8FEEFB\t0x6E54\n0x8FEEFC\t0x6E57\n0x8FEEFD\t0x6E63\n0x8FEEFE\t0x3D1E\n0x8FEFA1\t0x6E93\n0x8FEFA2\t0x6EA7\n0x8FEFA3\t0x6EB4\n0x8FEFA4\t0x6EBF\n0x8FEFA5\t0x6EC3\n0x8FEFA6\t0x6ECA\n0x8FEFA7\t0x6ED9\n0x8FEFA8\t0x6F35\n0x8FEFA9\t0x6EEB\n0x8FEFAA\t0x6EF9\n0x8FEFAB\t0x6EFB\n0x8FEFAC\t0x6F0A\n0x8FEFAD\t0x6F0C\n0x8FEFAE\t0x6F18\n0x8FEFAF\t0x6F25\n0x8FEFB0\t0x6F36\n0x8FEFB1\t0x6F3C\n0x8FEFB2\t0x23F7E\n0x8FEFB3\t0x6F52\n0x8FEFB4\t0x6F57\n0x8FEFB5\t0x6F5A\n0x8FEFB6\t0x6F60\n0x8FEFB7\t0x6F68\n0x8FEFB8\t0x6F98\n0x8FEFB9\t0x6F7D\n0x8FEFBA\t0x6F90\n0x8FEFBB\t0x6F96\n0x8FEFBC\t0x6FBE\n0x8FEFBD\t0x6F9F\n0x8FEFBE\t0x6FA5\n0x8FEFBF\t0x6FAF\n0x8FEFC0\t0x3D64\n0x8FEFC1\t0x6FB5\n0x8FEFC2\t0x6FC8\n0x8FEFC3\t0x6FC9\n0x8FEFC4\t0x6FDA\n0x8FEFC5\t0x6FDE\n0x8FEFC6\t0x6FE9\n0x8FEFC7\t0x24096\n0x8FEFC8\t0x6FFC\n0x8FEFC9\t0x7000\n0x8FEFCA\t0x7007\n0x8FEFCB\t0x700A\n0x8FEFCC\t0x7023\n0x8FEFCD\t0x24103\n0x8FEFCE\t0x7039\n0x8FEFCF\t0x703A\n0x8FEFD0\t0x703C\n0x8FEFD1\t0x7043\n0x8FEFD2\t0x7047\n0x8FEFD3\t0x704B\n0x8FEFD4\t0x3D9A\n0x8FEFD5\t0x7054\n0x8FEFD6\t0x7065\n0x8FEFD7\t0x7069\n0x8FEFD8\t0x706C\n0x8FEFD9\t0x706E\n0x8FEFDA\t0x7076\n0x8FEFDB\t0x707E\n0x8FEFDC\t0x7081\n0x8FEFDD\t0x7086\n0x8FEFDE\t0x7095\n0x8FEFDF\t0x7097\n0x8FEFE0\t0x70BB\n0x8FEFE1\t0x241C6\n0x8FEFE2\t0x709F\n0x8FEFE3\t0x70B1\n0x8FEFE4\t0x241FE\n0x8FEFE5\t0x70EC\n0x8FEFE6\t0x70CA\n0x8FEFE7\t0x70D1\n0x8FEFE8\t0x70D3\n0x8FEFE9\t0x70DC\n0x8FEFEA\t0x7103\n0x8FEFEB\t0x7104\n0x8FEFEC\t0x7106\n0x8FEFED\t0x7107\n0x8FEFEE\t0x7108\n0x8FEFEF\t0x710C\n0x8FEFF0\t0x3DC0\n0x8FEFF1\t0x712F\n0x8FEFF2\t0x7131\n0x8FEFF3\t0x7150\n0x8FEFF4\t0x714A\n0x8FEFF5\t0x7153\n0x8FEFF6\t0x715E\n0x8FEFF7\t0x3DD4\n0x8FEFF8\t0x7196\n0x8FEFF9\t0x7180\n0x8FEFFA\t0x719B\n0x8FEFFB\t0x71A0\n0x8FEFFC\t0x71A2\n0x8FEFFD\t0x71AE\n0x8FEFFE\t0x71AF\n0x8FF0A1\t0x71B3\n0x8FF0A2\t0x243BC\n0x8FF0A3\t0x71CB\n0x8FF0A4\t0x71D3\n0x8FF0A5\t0x71D9\n0x8FF0A6\t0x71DC\n0x8FF0A7\t0x7207\n0x8FF0A8\t0x3E05\n0x8FF0A9\t0xFA49\n0x8FF0AA\t0x722B\n0x8FF0AB\t0x7234\n0x8FF0AC\t0x7238\n0x8FF0AD\t0x7239\n0x8FF0AE\t0x4E2C\n0x8FF0AF\t0x7242\n0x8FF0B0\t0x7253\n0x8FF0B1\t0x7257\n0x8FF0B2\t0x7263\n0x8FF0B3\t0x24629\n0x8FF0B4\t0x726E\n0x8FF0B5\t0x726F\n0x8FF0B6\t0x7278\n0x8FF0B7\t0x727F\n0x8FF0B8\t0x728E\n0x8FF0B9\t0x246A5\n0x8FF0BA\t0x72AD\n0x8FF0BB\t0x72AE\n0x8FF0BC\t0x72B0\n0x8FF0BD\t0x72B1\n0x8FF0BE\t0x72C1\n0x8FF0BF\t0x3E60\n0x8FF0C0\t0x72CC\n0x8FF0C1\t0x3E66\n0x8FF0C2\t0x3E68\n0x8FF0C3\t0x72F3\n0x8FF0C4\t0x72FA\n0x8FF0C5\t0x7307\n0x8FF0C6\t0x7312\n0x8FF0C7\t0x7318\n0x8FF0C8\t0x7319\n0x8FF0C9\t0x3E83\n0x8FF0CA\t0x7339\n0x8FF0CB\t0x732C\n0x8FF0CC\t0x7331\n0x8FF0CD\t0x7333\n0x8FF0CE\t0x733D\n0x8FF0CF\t0x7352\n0x8FF0D0\t0x3E94\n0x8FF0D1\t0x736B\n0x8FF0D2\t0x736C\n0x8FF0D3\t0x24896\n0x8FF0D4\t0x736E\n0x8FF0D5\t0x736F\n0x8FF0D6\t0x7371\n0x8FF0D7\t0x7377\n0x8FF0D8\t0x7381\n0x8FF0D9\t0x7385\n0x8FF0DA\t0x738A\n0x8FF0DB\t0x7394\n0x8FF0DC\t0x7398\n0x8FF0DD\t0x739C\n0x8FF0DE\t0x739E\n0x8FF0DF\t0x73A5\n0x8FF0E0\t0x73A8\n0x8FF0E1\t0x73B5\n0x8FF0E2\t0x73B7\n0x8FF0E3\t0x73B9\n0x8FF0E4\t0x73BC\n0x8FF0E5\t0x73BF\n0x8FF0E6\t0x73C5\n0x8FF0E7\t0x73CB\n0x8FF0E8\t0x73E1\n0x8FF0E9\t0x73E7\n0x8FF0EA\t0x73F9\n0x8FF0EB\t0x7413\n0x8FF0EC\t0x73FA\n0x8FF0ED\t0x7401\n0x8FF0EE\t0x7424\n0x8FF0EF\t0x7431\n0x8FF0F0\t0x7439\n0x8FF0F1\t0x7453\n0x8FF0F2\t0x7440\n0x8FF0F3\t0x7443\n0x8FF0F4\t0x744D\n0x8FF0F5\t0x7452\n0x8FF0F6\t0x745D\n0x8FF0F7\t0x7471\n0x8FF0F8\t0x7481\n0x8FF0F9\t0x7485\n0x8FF0FA\t0x7488\n0x8FF0FB\t0x24A4D\n0x8FF0FC\t0x7492\n0x8FF0FD\t0x7497\n0x8FF0FE\t0x7499\n0x8FF1A1\t0x74A0\n0x8FF1A2\t0x74A1\n0x8FF1A3\t0x74A5\n0x8FF1A4\t0x74AA\n0x8FF1A5\t0x74AB\n0x8FF1A6\t0x74B9\n0x8FF1A7\t0x74BB\n0x8FF1A8\t0x74BA\n0x8FF1A9\t0x74D6\n0x8FF1AA\t0x74D8\n0x8FF1AB\t0x74DE\n0x8FF1AC\t0x74EF\n0x8FF1AD\t0x74EB\n0x8FF1AE\t0x24B56\n0x8FF1AF\t0x74FA\n0x8FF1B0\t0x24B6F\n0x8FF1B1\t0x7520\n0x8FF1B2\t0x7524\n0x8FF1B3\t0x752A\n0x8FF1B4\t0x3F57\n0x8FF1B5\t0x24C16\n0x8FF1B6\t0x753D\n0x8FF1B7\t0x753E\n0x8FF1B8\t0x7540\n0x8FF1B9\t0x7548\n0x8FF1BA\t0x754E\n0x8FF1BB\t0x7550\n0x8FF1BC\t0x7552\n0x8FF1BD\t0x756C\n0x8FF1BE\t0x7572\n0x8FF1BF\t0x7571\n0x8FF1C0\t0x757A\n0x8FF1C1\t0x757D\n0x8FF1C2\t0x757E\n0x8FF1C3\t0x7581\n0x8FF1C4\t0x24D14\n0x8FF1C5\t0x758C\n0x8FF1C6\t0x3F75\n0x8FF1C7\t0x75A2\n0x8FF1C8\t0x3F77\n0x8FF1C9\t0x75B0\n0x8FF1CA\t0x75B7\n0x8FF1CB\t0x75BF\n0x8FF1CC\t0x75C0\n0x8FF1CD\t0x75C6\n0x8FF1CE\t0x75CF\n0x8FF1CF\t0x75D3\n0x8FF1D0\t0x75DD\n0x8FF1D1\t0x75DF\n0x8FF1D2\t0x75E0\n0x8FF1D3\t0x75E7\n0x8FF1D4\t0x75EC\n0x8FF1D5\t0x75EE\n0x8FF1D6\t0x75F1\n0x8FF1D7\t0x75F9\n0x8FF1D8\t0x7603\n0x8FF1D9\t0x7618\n0x8FF1DA\t0x7607\n0x8FF1DB\t0x760F\n0x8FF1DC\t0x3FAE\n0x8FF1DD\t0x24E0E\n0x8FF1DE\t0x7613\n0x8FF1DF\t0x761B\n0x8FF1E0\t0x761C\n0x8FF1E1\t0x24E37\n0x8FF1E2\t0x7625\n0x8FF1E3\t0x7628\n0x8FF1E4\t0x763C\n0x8FF1E5\t0x7633\n0x8FF1E6\t0x24E6A\n0x8FF1E7\t0x3FC9\n0x8FF1E8\t0x7641\n0x8FF1E9\t0x24E8B\n0x8FF1EA\t0x7649\n0x8FF1EB\t0x7655\n0x8FF1EC\t0x3FD7\n0x8FF1ED\t0x766E\n0x8FF1EE\t0x7695\n0x8FF1EF\t0x769C\n0x8FF1F0\t0x76A1\n0x8FF1F1\t0x76A0\n0x8FF1F2\t0x76A7\n0x8FF1F3\t0x76A8\n0x8FF1F4\t0x76AF\n0x8FF1F5\t0x2504A\n0x8FF1F6\t0x76C9\n0x8FF1F7\t0x25055\n0x8FF1F8\t0x76E8\n0x8FF1F9\t0x76EC\n0x8FF1FA\t0x25122\n0x8FF1FB\t0x7717\n0x8FF1FC\t0x771A\n0x8FF1FD\t0x772D\n0x8FF1FE\t0x7735\n0x8FF2A1\t0x251A9\n0x8FF2A2\t0x4039\n0x8FF2A3\t0x251E5\n0x8FF2A4\t0x251CD\n0x8FF2A5\t0x7758\n0x8FF2A6\t0x7760\n0x8FF2A7\t0x776A\n0x8FF2A8\t0x2521E\n0x8FF2A9\t0x7772\n0x8FF2AA\t0x777C\n0x8FF2AB\t0x777D\n0x8FF2AC\t0x2524C\n0x8FF2AD\t0x4058\n0x8FF2AE\t0x779A\n0x8FF2AF\t0x779F\n0x8FF2B0\t0x77A2\n0x8FF2B1\t0x77A4\n0x8FF2B2\t0x77A9\n0x8FF2B3\t0x77DE\n0x8FF2B4\t0x77DF\n0x8FF2B5\t0x77E4\n0x8FF2B6\t0x77E6\n0x8FF2B7\t0x77EA\n0x8FF2B8\t0x77EC\n0x8FF2B9\t0x4093\n0x8FF2BA\t0x77F0\n0x8FF2BB\t0x77F4\n0x8FF2BC\t0x77FB\n0x8FF2BD\t0x2542E\n0x8FF2BE\t0x7805\n0x8FF2BF\t0x7806\n0x8FF2C0\t0x7809\n0x8FF2C1\t0x780D\n0x8FF2C2\t0x7819\n0x8FF2C3\t0x7821\n0x8FF2C4\t0x782C\n0x8FF2C5\t0x7847\n0x8FF2C6\t0x7864\n0x8FF2C7\t0x786A\n0x8FF2C8\t0x254D9\n0x8FF2C9\t0x788A\n0x8FF2CA\t0x7894\n0x8FF2CB\t0x78A4\n0x8FF2CC\t0x789D\n0x8FF2CD\t0x789E\n0x8FF2CE\t0x789F\n0x8FF2CF\t0x78BB\n0x8FF2D0\t0x78C8\n0x8FF2D1\t0x78CC\n0x8FF2D2\t0x78CE\n0x8FF2D3\t0x78D5\n0x8FF2D4\t0x78E0\n0x8FF2D5\t0x78E1\n0x8FF2D6\t0x78E6\n0x8FF2D7\t0x78F9\n0x8FF2D8\t0x78FA\n0x8FF2D9\t0x78FB\n0x8FF2DA\t0x78FE\n0x8FF2DB\t0x255A7\n0x8FF2DC\t0x7910\n0x8FF2DD\t0x791B\n0x8FF2DE\t0x7930\n0x8FF2DF\t0x7925\n0x8FF2E0\t0x793B\n0x8FF2E1\t0x794A\n0x8FF2E2\t0x7958\n0x8FF2E3\t0x795B\n0x8FF2E4\t0x4105\n0x8FF2E5\t0x7967\n0x8FF2E6\t0x7972\n0x8FF2E7\t0x7994\n0x8FF2E8\t0x7995\n0x8FF2E9\t0x7996\n0x8FF2EA\t0x799B\n0x8FF2EB\t0x79A1\n0x8FF2EC\t0x79A9\n0x8FF2ED\t0x79B4\n0x8FF2EE\t0x79BB\n0x8FF2EF\t0x79C2\n0x8FF2F0\t0x79C7\n0x8FF2F1\t0x79CC\n0x8FF2F2\t0x79CD\n0x8FF2F3\t0x79D6\n0x8FF2F4\t0x4148\n0x8FF2F5\t0x257A9\n0x8FF2F6\t0x257B4\n0x8FF2F7\t0x414F\n0x8FF2F8\t0x7A0A\n0x8FF2F9\t0x7A11\n0x8FF2FA\t0x7A15\n0x8FF2FB\t0x7A1B\n0x8FF2FC\t0x7A1E\n0x8FF2FD\t0x4163\n0x8FF2FE\t0x7A2D\n0x8FF3A1\t0x7A38\n0x8FF3A2\t0x7A47\n0x8FF3A3\t0x7A4C\n0x8FF3A4\t0x7A56\n0x8FF3A5\t0x7A59\n0x8FF3A6\t0x7A5C\n0x8FF3A7\t0x7A5F\n0x8FF3A8\t0x7A60\n0x8FF3A9\t0x7A67\n0x8FF3AA\t0x7A6A\n0x8FF3AB\t0x7A75\n0x8FF3AC\t0x7A78\n0x8FF3AD\t0x7A82\n0x8FF3AE\t0x7A8A\n0x8FF3AF\t0x7A90\n0x8FF3B0\t0x7AA3\n0x8FF3B1\t0x7AAC\n0x8FF3B2\t0x259D4\n0x8FF3B3\t0x41B4\n0x8FF3B4\t0x7AB9\n0x8FF3B5\t0x7ABC\n0x8FF3B6\t0x7ABE\n0x8FF3B7\t0x41BF\n0x8FF3B8\t0x7ACC\n0x8FF3B9\t0x7AD1\n0x8FF3BA\t0x7AE7\n0x8FF3BB\t0x7AE8\n0x8FF3BC\t0x7AF4\n0x8FF3BD\t0x25AE4\n0x8FF3BE\t0x25AE3\n0x8FF3BF\t0x7B07\n0x8FF3C0\t0x25AF1\n0x8FF3C1\t0x7B3D\n0x8FF3C2\t0x7B27\n0x8FF3C3\t0x7B2A\n0x8FF3C4\t0x7B2E\n0x8FF3C5\t0x7B2F\n0x8FF3C6\t0x7B31\n0x8FF3C7\t0x41E6\n0x8FF3C8\t0x41F3\n0x8FF3C9\t0x7B7F\n0x8FF3CA\t0x7B41\n0x8FF3CB\t0x41EE\n0x8FF3CC\t0x7B55\n0x8FF3CD\t0x7B79\n0x8FF3CE\t0x7B64\n0x8FF3CF\t0x7B66\n0x8FF3D0\t0x7B69\n0x8FF3D1\t0x7B73\n0x8FF3D2\t0x25BB2\n0x8FF3D3\t0x4207\n0x8FF3D4\t0x7B90\n0x8FF3D5\t0x7B91\n0x8FF3D6\t0x7B9B\n0x8FF3D7\t0x420E\n0x8FF3D8\t0x7BAF\n0x8FF3D9\t0x7BB5\n0x8FF3DA\t0x7BBC\n0x8FF3DB\t0x7BC5\n0x8FF3DC\t0x7BCA\n0x8FF3DD\t0x25C4B\n0x8FF3DE\t0x25C64\n0x8FF3DF\t0x7BD4\n0x8FF3E0\t0x7BD6\n0x8FF3E1\t0x7BDA\n0x8FF3E2\t0x7BEA\n0x8FF3E3\t0x7BF0\n0x8FF3E4\t0x7C03\n0x8FF3E5\t0x7C0B\n0x8FF3E6\t0x7C0E\n0x8FF3E7\t0x7C0F\n0x8FF3E8\t0x7C26\n0x8FF3E9\t0x7C45\n0x8FF3EA\t0x7C4A\n0x8FF3EB\t0x7C51\n0x8FF3EC\t0x7C57\n0x8FF3ED\t0x7C5E\n0x8FF3EE\t0x7C61\n0x8FF3EF\t0x7C69\n0x8FF3F0\t0x7C6E\n0x8FF3F1\t0x7C6F\n0x8FF3F2\t0x7C70\n0x8FF3F3\t0x25E2E\n0x8FF3F4\t0x25E56\n0x8FF3F5\t0x25E65\n0x8FF3F6\t0x7CA6\n0x8FF3F7\t0x25E62\n0x8FF3F8\t0x7CB6\n0x8FF3F9\t0x7CB7\n0x8FF3FA\t0x7CBF\n0x8FF3FB\t0x25ED8\n0x8FF3FC\t0x7CC4\n0x8FF3FD\t0x25EC2\n0x8FF3FE\t0x7CC8\n0x8FF4A1\t0x7CCD\n0x8FF4A2\t0x25EE8\n0x8FF4A3\t0x7CD7\n0x8FF4A4\t0x25F23\n0x8FF4A5\t0x7CE6\n0x8FF4A6\t0x7CEB\n0x8FF4A7\t0x25F5C\n0x8FF4A8\t0x7CF5\n0x8FF4A9\t0x7D03\n0x8FF4AA\t0x7D09\n0x8FF4AB\t0x42C6\n0x8FF4AC\t0x7D12\n0x8FF4AD\t0x7D1E\n0x8FF4AE\t0x25FE0\n0x8FF4AF\t0x25FD4\n0x8FF4B0\t0x7D3D\n0x8FF4B1\t0x7D3E\n0x8FF4B2\t0x7D40\n0x8FF4B3\t0x7D47\n0x8FF4B4\t0x2600C\n0x8FF4B5\t0x25FFB\n0x8FF4B6\t0x42D6\n0x8FF4B7\t0x7D59\n0x8FF4B8\t0x7D5A\n0x8FF4B9\t0x7D6A\n0x8FF4BA\t0x7D70\n0x8FF4BB\t0x42DD\n0x8FF4BC\t0x7D7F\n0x8FF4BD\t0x26017\n0x8FF4BE\t0x7D86\n0x8FF4BF\t0x7D88\n0x8FF4C0\t0x7D8C\n0x8FF4C1\t0x7D97\n0x8FF4C2\t0x26060\n0x8FF4C3\t0x7D9D\n0x8FF4C4\t0x7DA7\n0x8FF4C5\t0x7DAA\n0x8FF4C6\t0x7DB6\n0x8FF4C7\t0x7DB7\n0x8FF4C8\t0x7DC0\n0x8FF4C9\t0x7DD7\n0x8FF4CA\t0x7DD9\n0x8FF4CB\t0x7DE6\n0x8FF4CC\t0x7DF1\n0x8FF4CD\t0x7DF9\n0x8FF4CE\t0x4302\n0x8FF4CF\t0x260ED\n0x8FF4D0\t0xFA58\n0x8FF4D1\t0x7E10\n0x8FF4D2\t0x7E17\n0x8FF4D3\t0x7E1D\n0x8FF4D4\t0x7E20\n0x8FF4D5\t0x7E27\n0x8FF4D6\t0x7E2C\n0x8FF4D7\t0x7E45\n0x8FF4D8\t0x7E73\n0x8FF4D9\t0x7E75\n0x8FF4DA\t0x7E7E\n0x8FF4DB\t0x7E86\n0x8FF4DC\t0x7E87\n0x8FF4DD\t0x432B\n0x8FF4DE\t0x7E91\n0x8FF4DF\t0x7E98\n0x8FF4E0\t0x7E9A\n0x8FF4E1\t0x4343\n0x8FF4E2\t0x7F3C\n0x8FF4E3\t0x7F3B\n0x8FF4E4\t0x7F3E\n0x8FF4E5\t0x7F43\n0x8FF4E6\t0x7F44\n0x8FF4E7\t0x7F4F\n0x8FF4E8\t0x34C1\n0x8FF4E9\t0x26270\n0x8FF4EA\t0x7F52\n0x8FF4EB\t0x26286\n0x8FF4EC\t0x7F61\n0x8FF4ED\t0x7F63\n0x8FF4EE\t0x7F64\n0x8FF4EF\t0x7F6D\n0x8FF4F0\t0x7F7D\n0x8FF4F1\t0x7F7E\n0x8FF4F2\t0x2634C\n0x8FF4F3\t0x7F90\n0x8FF4F4\t0x517B\n0x8FF4F5\t0x23D0E\n0x8FF4F6\t0x7F96\n0x8FF4F7\t0x7F9C\n0x8FF4F8\t0x7FAD\n0x8FF4F9\t0x26402\n0x8FF4FA\t0x7FC3\n0x8FF4FB\t0x7FCF\n0x8FF4FC\t0x7FE3\n0x8FF4FD\t0x7FE5\n0x8FF4FE\t0x7FEF\n0x8FF5A1\t0x7FF2\n0x8FF5A2\t0x8002\n0x8FF5A3\t0x800A\n0x8FF5A4\t0x8008\n0x8FF5A5\t0x800E\n0x8FF5A6\t0x8011\n0x8FF5A7\t0x8016\n0x8FF5A8\t0x8024\n0x8FF5A9\t0x802C\n0x8FF5AA\t0x8030\n0x8FF5AB\t0x8043\n0x8FF5AC\t0x8066\n0x8FF5AD\t0x8071\n0x8FF5AE\t0x8075\n0x8FF5AF\t0x807B\n0x8FF5B0\t0x8099\n0x8FF5B1\t0x809C\n0x8FF5B2\t0x80A4\n0x8FF5B3\t0x80A7\n0x8FF5B4\t0x80B8\n0x8FF5B5\t0x2667E\n0x8FF5B6\t0x80C5\n0x8FF5B7\t0x80D5\n0x8FF5B8\t0x80D8\n0x8FF5B9\t0x80E6\n0x8FF5BA\t0x266B0\n0x8FF5BB\t0x810D\n0x8FF5BC\t0x80F5\n0x8FF5BD\t0x80FB\n0x8FF5BE\t0x43EE\n0x8FF5BF\t0x8135\n0x8FF5C0\t0x8116\n0x8FF5C1\t0x811E\n0x8FF5C2\t0x43F0\n0x8FF5C3\t0x8124\n0x8FF5C4\t0x8127\n0x8FF5C5\t0x812C\n0x8FF5C6\t0x2671D\n0x8FF5C7\t0x813D\n0x8FF5C8\t0x4408\n0x8FF5C9\t0x8169\n0x8FF5CA\t0x4417\n0x8FF5CB\t0x8181\n0x8FF5CC\t0x441C\n0x8FF5CD\t0x8184\n0x8FF5CE\t0x8185\n0x8FF5CF\t0x4422\n0x8FF5D0\t0x8198\n0x8FF5D1\t0x81B2\n0x8FF5D2\t0x81C1\n0x8FF5D3\t0x81C3\n0x8FF5D4\t0x81D6\n0x8FF5D5\t0x81DB\n0x8FF5D6\t0x268DD\n0x8FF5D7\t0x81E4\n0x8FF5D8\t0x268EA\n0x8FF5D9\t0x81EC\n0x8FF5DA\t0x26951\n0x8FF5DB\t0x81FD\n0x8FF5DC\t0x81FF\n0x8FF5DD\t0x2696F\n0x8FF5DE\t0x8204\n0x8FF5DF\t0x269DD\n0x8FF5E0\t0x8219\n0x8FF5E1\t0x8221\n0x8FF5E2\t0x8222\n0x8FF5E3\t0x26A1E\n0x8FF5E4\t0x8232\n0x8FF5E5\t0x8234\n0x8FF5E6\t0x823C\n0x8FF5E7\t0x8246\n0x8FF5E8\t0x8249\n0x8FF5E9\t0x8245\n0x8FF5EA\t0x26A58\n0x8FF5EB\t0x824B\n0x8FF5EC\t0x4476\n0x8FF5ED\t0x824F\n0x8FF5EE\t0x447A\n0x8FF5EF\t0x8257\n0x8FF5F0\t0x26A8C\n0x8FF5F1\t0x825C\n0x8FF5F2\t0x8263\n0x8FF5F3\t0x26AB7\n0x8FF5F4\t0xFA5D\n0x8FF5F5\t0xFA5E\n0x8FF5F6\t0x8279\n0x8FF5F7\t0x4491\n0x8FF5F8\t0x827D\n0x8FF5F9\t0x827F\n0x8FF5FA\t0x8283\n0x8FF5FB\t0x828A\n0x8FF5FC\t0x8293\n0x8FF5FD\t0x82A7\n0x8FF5FE\t0x82A8\n0x8FF6A1\t0x82B2\n0x8FF6A2\t0x82B4\n0x8FF6A3\t0x82BA\n0x8FF6A4\t0x82BC\n0x8FF6A5\t0x82E2\n0x8FF6A6\t0x82E8\n0x8FF6A7\t0x82F7\n0x8FF6A8\t0x8307\n0x8FF6A9\t0x8308\n0x8FF6AA\t0x830C\n0x8FF6AB\t0x8354\n0x8FF6AC\t0x831B\n0x8FF6AD\t0x831D\n0x8FF6AE\t0x8330\n0x8FF6AF\t0x833C\n0x8FF6B0\t0x8344\n0x8FF6B1\t0x8357\n0x8FF6B2\t0x44BE\n0x8FF6B3\t0x837F\n0x8FF6B4\t0x44D4\n0x8FF6B5\t0x44B3\n0x8FF6B6\t0x838D\n0x8FF6B7\t0x8394\n0x8FF6B8\t0x8395\n0x8FF6B9\t0x839B\n0x8FF6BA\t0x839D\n0x8FF6BB\t0x83C9\n0x8FF6BC\t0x83D0\n0x8FF6BD\t0x83D4\n0x8FF6BE\t0x83DD\n0x8FF6BF\t0x83E5\n0x8FF6C0\t0x83F9\n0x8FF6C1\t0x840F\n0x8FF6C2\t0x8411\n0x8FF6C3\t0x8415\n0x8FF6C4\t0x26C73\n0x8FF6C5\t0x8417\n0x8FF6C6\t0x8439\n0x8FF6C7\t0x844A\n0x8FF6C8\t0x844F\n0x8FF6C9\t0x8451\n0x8FF6CA\t0x8452\n0x8FF6CB\t0x8459\n0x8FF6CC\t0x845A\n0x8FF6CD\t0x845C\n0x8FF6CE\t0x26CDD\n0x8FF6CF\t0x8465\n0x8FF6D0\t0x8476\n0x8FF6D1\t0x8478\n0x8FF6D2\t0x847C\n0x8FF6D3\t0x8481\n0x8FF6D4\t0x450D\n0x8FF6D5\t0x84DC\n0x8FF6D6\t0x8497\n0x8FF6D7\t0x84A6\n0x8FF6D8\t0x84BE\n0x8FF6D9\t0x4508\n0x8FF6DA\t0x84CE\n0x8FF6DB\t0x84CF\n0x8FF6DC\t0x84D3\n0x8FF6DD\t0x26E65\n0x8FF6DE\t0x84E7\n0x8FF6DF\t0x84EA\n0x8FF6E0\t0x84EF\n0x8FF6E1\t0x84F0\n0x8FF6E2\t0x84F1\n0x8FF6E3\t0x84FA\n0x8FF6E4\t0x84FD\n0x8FF6E5\t0x850C\n0x8FF6E6\t0x851B\n0x8FF6E7\t0x8524\n0x8FF6E8\t0x8525\n0x8FF6E9\t0x852B\n0x8FF6EA\t0x8534\n0x8FF6EB\t0x854F\n0x8FF6EC\t0x856F\n0x8FF6ED\t0x4525\n0x8FF6EE\t0x4543\n0x8FF6EF\t0x853E\n0x8FF6F0\t0x8551\n0x8FF6F1\t0x8553\n0x8FF6F2\t0x855E\n0x8FF6F3\t0x8561\n0x8FF6F4\t0x8562\n0x8FF6F5\t0x26F94\n0x8FF6F6\t0x857B\n0x8FF6F7\t0x857D\n0x8FF6F8\t0x857F\n0x8FF6F9\t0x8581\n0x8FF6FA\t0x8586\n0x8FF6FB\t0x8593\n0x8FF6FC\t0x859D\n0x8FF6FD\t0x859F\n0x8FF6FE\t0x26FF8\n0x8FF7A1\t0x26FF6\n0x8FF7A2\t0x26FF7\n0x8FF7A3\t0x85B7\n0x8FF7A4\t0x85BC\n0x8FF7A5\t0x85C7\n0x8FF7A6\t0x85CA\n0x8FF7A7\t0x85D8\n0x8FF7A8\t0x85D9\n0x8FF7A9\t0x85DF\n0x8FF7AA\t0x85E1\n0x8FF7AB\t0x85E6\n0x8FF7AC\t0x85F6\n0x8FF7AD\t0x8600\n0x8FF7AE\t0x8611\n0x8FF7AF\t0x861E\n0x8FF7B0\t0x8621\n0x8FF7B1\t0x8624\n0x8FF7B2\t0x8627\n0x8FF7B3\t0x2710D\n0x8FF7B4\t0x8639\n0x8FF7B5\t0x863C\n0x8FF7B6\t0x27139\n0x8FF7B7\t0x8640\n0x8FF7B8\t0xFA20\n0x8FF7B9\t0x8653\n0x8FF7BA\t0x8656\n0x8FF7BB\t0x866F\n0x8FF7BC\t0x8677\n0x8FF7BD\t0x867A\n0x8FF7BE\t0x8687\n0x8FF7BF\t0x8689\n0x8FF7C0\t0x868D\n0x8FF7C1\t0x8691\n0x8FF7C2\t0x869C\n0x8FF7C3\t0x869D\n0x8FF7C4\t0x86A8\n0x8FF7C5\t0xFA21\n0x8FF7C6\t0x86B1\n0x8FF7C7\t0x86B3\n0x8FF7C8\t0x86C1\n0x8FF7C9\t0x86C3\n0x8FF7CA\t0x86D1\n0x8FF7CB\t0x86D5\n0x8FF7CC\t0x86D7\n0x8FF7CD\t0x86E3\n0x8FF7CE\t0x86E6\n0x8FF7CF\t0x45B8\n0x8FF7D0\t0x8705\n0x8FF7D1\t0x8707\n0x8FF7D2\t0x870E\n0x8FF7D3\t0x8710\n0x8FF7D4\t0x8713\n0x8FF7D5\t0x8719\n0x8FF7D6\t0x871F\n0x8FF7D7\t0x8721\n0x8FF7D8\t0x8723\n0x8FF7D9\t0x8731\n0x8FF7DA\t0x873A\n0x8FF7DB\t0x873E\n0x8FF7DC\t0x8740\n0x8FF7DD\t0x8743\n0x8FF7DE\t0x8751\n0x8FF7DF\t0x8758\n0x8FF7E0\t0x8764\n0x8FF7E1\t0x8765\n0x8FF7E2\t0x8772\n0x8FF7E3\t0x877C\n0x8FF7E4\t0x273DB\n0x8FF7E5\t0x273DA\n0x8FF7E6\t0x87A7\n0x8FF7E7\t0x8789\n0x8FF7E8\t0x878B\n0x8FF7E9\t0x8793\n0x8FF7EA\t0x87A0\n0x8FF7EB\t0x273FE\n0x8FF7EC\t0x45E5\n0x8FF7ED\t0x87BE\n0x8FF7EE\t0x27410\n0x8FF7EF\t0x87C1\n0x8FF7F0\t0x87CE\n0x8FF7F1\t0x87F5\n0x8FF7F2\t0x87DF\n0x8FF7F3\t0x27449\n0x8FF7F4\t0x87E3\n0x8FF7F5\t0x87E5\n0x8FF7F6\t0x87E6\n0x8FF7F7\t0x87EA\n0x8FF7F8\t0x87EB\n0x8FF7F9\t0x87ED\n0x8FF7FA\t0x8801\n0x8FF7FB\t0x8803\n0x8FF7FC\t0x880B\n0x8FF7FD\t0x8813\n0x8FF7FE\t0x8828\n0x8FF8A1\t0x882E\n0x8FF8A2\t0x8832\n0x8FF8A3\t0x883C\n0x8FF8A4\t0x460F\n0x8FF8A5\t0x884A\n0x8FF8A6\t0x8858\n0x8FF8A7\t0x885F\n0x8FF8A8\t0x8864\n0x8FF8A9\t0x27615\n0x8FF8AA\t0x27614\n0x8FF8AB\t0x8869\n0x8FF8AC\t0x27631\n0x8FF8AD\t0x886F\n0x8FF8AE\t0x88A0\n0x8FF8AF\t0x88BC\n0x8FF8B0\t0x88BD\n0x8FF8B1\t0x88BE\n0x8FF8B2\t0x88C0\n0x8FF8B3\t0x88D2\n0x8FF8B4\t0x27693\n0x8FF8B5\t0x88D1\n0x8FF8B6\t0x88D3\n0x8FF8B7\t0x88DB\n0x8FF8B8\t0x88F0\n0x8FF8B9\t0x88F1\n0x8FF8BA\t0x4641\n0x8FF8BB\t0x8901\n0x8FF8BC\t0x2770E\n0x8FF8BD\t0x8937\n0x8FF8BE\t0x27723\n0x8FF8BF\t0x8942\n0x8FF8C0\t0x8945\n0x8FF8C1\t0x8949\n0x8FF8C2\t0x27752\n0x8FF8C3\t0x4665\n0x8FF8C4\t0x8962\n0x8FF8C5\t0x8980\n0x8FF8C6\t0x8989\n0x8FF8C7\t0x8990\n0x8FF8C8\t0x899F\n0x8FF8C9\t0x89B0\n0x8FF8CA\t0x89B7\n0x8FF8CB\t0x89D6\n0x8FF8CC\t0x89D8\n0x8FF8CD\t0x89EB\n0x8FF8CE\t0x46A1\n0x8FF8CF\t0x89F1\n0x8FF8D0\t0x89F3\n0x8FF8D1\t0x89FD\n0x8FF8D2\t0x89FF\n0x8FF8D3\t0x46AF\n0x8FF8D4\t0x8A11\n0x8FF8D5\t0x8A14\n0x8FF8D6\t0x27985\n0x8FF8D7\t0x8A21\n0x8FF8D8\t0x8A35\n0x8FF8D9\t0x8A3E\n0x8FF8DA\t0x8A45\n0x8FF8DB\t0x8A4D\n0x8FF8DC\t0x8A58\n0x8FF8DD\t0x8AAE\n0x8FF8DE\t0x8A90\n0x8FF8DF\t0x8AB7\n0x8FF8E0\t0x8ABE\n0x8FF8E1\t0x8AD7\n0x8FF8E2\t0x8AFC\n0x8FF8E3\t0x27A84\n0x8FF8E4\t0x8B0A\n0x8FF8E5\t0x8B05\n0x8FF8E6\t0x8B0D\n0x8FF8E7\t0x8B1C\n0x8FF8E8\t0x8B1F\n0x8FF8E9\t0x8B2D\n0x8FF8EA\t0x8B43\n0x8FF8EB\t0x470C\n0x8FF8EC\t0x8B51\n0x8FF8ED\t0x8B5E\n0x8FF8EE\t0x8B76\n0x8FF8EF\t0x8B7F\n0x8FF8F0\t0x8B81\n0x8FF8F1\t0x8B8B\n0x8FF8F2\t0x8B94\n0x8FF8F3\t0x8B95\n0x8FF8F4\t0x8B9C\n0x8FF8F5\t0x8B9E\n0x8FF8F6\t0x8C39\n0x8FF8F7\t0x27BB3\n0x8FF8F8\t0x8C3D\n0x8FF8F9\t0x27BBE\n0x8FF8FA\t0x27BC7\n0x8FF8FB\t0x8C45\n0x8FF8FC\t0x8C47\n0x8FF8FD\t0x8C4F\n0x8FF8FE\t0x8C54\n0x8FF9A1\t0x8C57\n0x8FF9A2\t0x8C69\n0x8FF9A3\t0x8C6D\n0x8FF9A4\t0x8C73\n0x8FF9A5\t0x27CB8\n0x8FF9A6\t0x8C93\n0x8FF9A7\t0x8C92\n0x8FF9A8\t0x8C99\n0x8FF9A9\t0x4764\n0x8FF9AA\t0x8C9B\n0x8FF9AB\t0x8CA4\n0x8FF9AC\t0x8CD6\n0x8FF9AD\t0x8CD5\n0x8FF9AE\t0x8CD9\n0x8FF9AF\t0x27DA0\n0x8FF9B0\t0x8CF0\n0x8FF9B1\t0x8CF1\n0x8FF9B2\t0x27E10\n0x8FF9B3\t0x8D09\n0x8FF9B4\t0x8D0E\n0x8FF9B5\t0x8D6C\n0x8FF9B6\t0x8D84\n0x8FF9B7\t0x8D95\n0x8FF9B8\t0x8DA6\n0x8FF9B9\t0x27FB7\n0x8FF9BA\t0x8DC6\n0x8FF9BB\t0x8DC8\n0x8FF9BC\t0x8DD9\n0x8FF9BD\t0x8DEC\n0x8FF9BE\t0x8E0C\n0x8FF9BF\t0x47FD\n0x8FF9C0\t0x8DFD\n0x8FF9C1\t0x8E06\n0x8FF9C2\t0x2808A\n0x8FF9C3\t0x8E14\n0x8FF9C4\t0x8E16\n0x8FF9C5\t0x8E21\n0x8FF9C6\t0x8E22\n0x8FF9C7\t0x8E27\n0x8FF9C8\t0x280BB\n0x8FF9C9\t0x4816\n0x8FF9CA\t0x8E36\n0x8FF9CB\t0x8E39\n0x8FF9CC\t0x8E4B\n0x8FF9CD\t0x8E54\n0x8FF9CE\t0x8E62\n0x8FF9CF\t0x8E6C\n0x8FF9D0\t0x8E6D\n0x8FF9D1\t0x8E6F\n0x8FF9D2\t0x8E98\n0x8FF9D3\t0x8E9E\n0x8FF9D4\t0x8EAE\n0x8FF9D5\t0x8EB3\n0x8FF9D6\t0x8EB5\n0x8FF9D7\t0x8EB6\n0x8FF9D8\t0x8EBB\n0x8FF9D9\t0x28282\n0x8FF9DA\t0x8ED1\n0x8FF9DB\t0x8ED4\n0x8FF9DC\t0x484E\n0x8FF9DD\t0x8EF9\n0x8FF9DE\t0x282F3\n0x8FF9DF\t0x8F00\n0x8FF9E0\t0x8F08\n0x8FF9E1\t0x8F17\n0x8FF9E2\t0x8F2B\n0x8FF9E3\t0x8F40\n0x8FF9E4\t0x8F4A\n0x8FF9E5\t0x8F58\n0x8FF9E6\t0x2840C\n0x8FF9E7\t0x8FA4\n0x8FF9E8\t0x8FB4\n0x8FF9E9\t0xFA66\n0x8FF9EA\t0x8FB6\n0x8FF9EB\t0x28455\n0x8FF9EC\t0x8FC1\n0x8FF9ED\t0x8FC6\n0x8FF9EE\t0xFA24\n0x8FF9EF\t0x8FCA\n0x8FF9F0\t0x8FCD\n0x8FF9F1\t0x8FD3\n0x8FF9F2\t0x8FD5\n0x8FF9F3\t0x8FE0\n0x8FF9F4\t0x8FF1\n0x8FF9F5\t0x8FF5\n0x8FF9F6\t0x8FFB\n0x8FF9F7\t0x9002\n0x8FF9F8\t0x900C\n0x8FF9F9\t0x9037\n0x8FF9FA\t0x2856B\n0x8FF9FB\t0x9043\n0x8FF9FC\t0x9044\n0x8FF9FD\t0x905D\n0x8FF9FE\t0x285C8\n0x8FFAA1\t0x285C9\n0x8FFAA2\t0x9085\n0x8FFAA3\t0x908C\n0x8FFAA4\t0x9090\n0x8FFAA5\t0x961D\n0x8FFAA6\t0x90A1\n0x8FFAA7\t0x48B5\n0x8FFAA8\t0x90B0\n0x8FFAA9\t0x90B6\n0x8FFAAA\t0x90C3\n0x8FFAAB\t0x90C8\n0x8FFAAC\t0x286D7\n0x8FFAAD\t0x90DC\n0x8FFAAE\t0x90DF\n0x8FFAAF\t0x286FA\n0x8FFAB0\t0x90F6\n0x8FFAB1\t0x90F2\n0x8FFAB2\t0x9100\n0x8FFAB3\t0x90EB\n0x8FFAB4\t0x90FE\n0x8FFAB5\t0x90FF\n0x8FFAB6\t0x9104\n0x8FFAB7\t0x9106\n0x8FFAB8\t0x9118\n0x8FFAB9\t0x911C\n0x8FFABA\t0x911E\n0x8FFABB\t0x9137\n0x8FFABC\t0x9139\n0x8FFABD\t0x913A\n0x8FFABE\t0x9146\n0x8FFABF\t0x9147\n0x8FFAC0\t0x9157\n0x8FFAC1\t0x9159\n0x8FFAC2\t0x9161\n0x8FFAC3\t0x9164\n0x8FFAC4\t0x9174\n0x8FFAC5\t0x9179\n0x8FFAC6\t0x9185\n0x8FFAC7\t0x918E\n0x8FFAC8\t0x91A8\n0x8FFAC9\t0x91AE\n0x8FFACA\t0x91B3\n0x8FFACB\t0x91B6\n0x8FFACC\t0x91C3\n0x8FFACD\t0x91C4\n0x8FFACE\t0x91DA\n0x8FFACF\t0x28949\n0x8FFAD0\t0x28946\n0x8FFAD1\t0x91EC\n0x8FFAD2\t0x91EE\n0x8FFAD3\t0x9201\n0x8FFAD4\t0x920A\n0x8FFAD5\t0x9216\n0x8FFAD6\t0x9217\n0x8FFAD7\t0x2896B\n0x8FFAD8\t0x9233\n0x8FFAD9\t0x9242\n0x8FFADA\t0x9247\n0x8FFADB\t0x924A\n0x8FFADC\t0x924E\n0x8FFADD\t0x9251\n0x8FFADE\t0x9256\n0x8FFADF\t0x9259\n0x8FFAE0\t0x9260\n0x8FFAE1\t0x9261\n0x8FFAE2\t0x9265\n0x8FFAE3\t0x9267\n0x8FFAE4\t0x9268\n0x8FFAE5\t0x28987\n0x8FFAE6\t0x28988\n0x8FFAE7\t0x927C\n0x8FFAE8\t0x927D\n0x8FFAE9\t0x927F\n0x8FFAEA\t0x9289\n0x8FFAEB\t0x928D\n0x8FFAEC\t0x9297\n0x8FFAED\t0x9299\n0x8FFAEE\t0x929F\n0x8FFAEF\t0x92A7\n0x8FFAF0\t0x92AB\n0x8FFAF1\t0x289BA\n0x8FFAF2\t0x289BB\n0x8FFAF3\t0x92B2\n0x8FFAF4\t0x92BF\n0x8FFAF5\t0x92C0\n0x8FFAF6\t0x92C6\n0x8FFAF7\t0x92CE\n0x8FFAF8\t0x92D0\n0x8FFAF9\t0x92D7\n0x8FFAFA\t0x92D9\n0x8FFAFB\t0x92E5\n0x8FFAFC\t0x92E7\n0x8FFAFD\t0x9311\n0x8FFAFE\t0x28A1E\n0x8FFBA1\t0x28A29\n0x8FFBA2\t0x92F7\n0x8FFBA3\t0x92F9\n0x8FFBA4\t0x92FB\n0x8FFBA5\t0x9302\n0x8FFBA6\t0x930D\n0x8FFBA7\t0x9315\n0x8FFBA8\t0x931D\n0x8FFBA9\t0x931E\n0x8FFBAA\t0x9327\n0x8FFBAB\t0x9329\n0x8FFBAC\t0x28A71\n0x8FFBAD\t0x28A43\n0x8FFBAE\t0x9347\n0x8FFBAF\t0x9351\n0x8FFBB0\t0x9357\n0x8FFBB1\t0x935A\n0x8FFBB2\t0x936B\n0x8FFBB3\t0x9371\n0x8FFBB4\t0x9373\n0x8FFBB5\t0x93A1\n0x8FFBB6\t0x28A99\n0x8FFBB7\t0x28ACD\n0x8FFBB8\t0x9388\n0x8FFBB9\t0x938B\n0x8FFBBA\t0x938F\n0x8FFBBB\t0x939E\n0x8FFBBC\t0x93F5\n0x8FFBBD\t0x28AE4\n0x8FFBBE\t0x28ADD\n0x8FFBBF\t0x93F1\n0x8FFBC0\t0x93C1\n0x8FFBC1\t0x93C7\n0x8FFBC2\t0x93DC\n0x8FFBC3\t0x93E2\n0x8FFBC4\t0x93E7\n0x8FFBC5\t0x9409\n0x8FFBC6\t0x940F\n0x8FFBC7\t0x9416\n0x8FFBC8\t0x9417\n0x8FFBC9\t0x93FB\n0x8FFBCA\t0x9432\n0x8FFBCB\t0x9434\n0x8FFBCC\t0x943B\n0x8FFBCD\t0x9445\n0x8FFBCE\t0x28BC1\n0x8FFBCF\t0x28BEF\n0x8FFBD0\t0x946D\n0x8FFBD1\t0x946F\n0x8FFBD2\t0x9578\n0x8FFBD3\t0x9579\n0x8FFBD4\t0x9586\n0x8FFBD5\t0x958C\n0x8FFBD6\t0x958D\n0x8FFBD7\t0x28D10\n0x8FFBD8\t0x95AB\n0x8FFBD9\t0x95B4\n0x8FFBDA\t0x28D71\n0x8FFBDB\t0x95C8\n0x8FFBDC\t0x28DFB\n0x8FFBDD\t0x28E1F\n0x8FFBDE\t0x962C\n0x8FFBDF\t0x9633\n0x8FFBE0\t0x9634\n0x8FFBE1\t0x28E36\n0x8FFBE2\t0x963C\n0x8FFBE3\t0x9641\n0x8FFBE4\t0x9661\n0x8FFBE5\t0x28E89\n0x8FFBE6\t0x9682\n0x8FFBE7\t0x28EEB\n0x8FFBE8\t0x969A\n0x8FFBE9\t0x28F32\n0x8FFBEA\t0x49E7\n0x8FFBEB\t0x96A9\n0x8FFBEC\t0x96AF\n0x8FFBED\t0x96B3\n0x8FFBEE\t0x96BA\n0x8FFBEF\t0x96BD\n0x8FFBF0\t0x49FA\n0x8FFBF1\t0x28FF8\n0x8FFBF2\t0x96D8\n0x8FFBF3\t0x96DA\n0x8FFBF4\t0x96DD\n0x8FFBF5\t0x4A04\n0x8FFBF6\t0x9714\n0x8FFBF7\t0x9723\n0x8FFBF8\t0x4A29\n0x8FFBF9\t0x9736\n0x8FFBFA\t0x9741\n0x8FFBFB\t0x9747\n0x8FFBFC\t0x9755\n0x8FFBFD\t0x9757\n0x8FFBFE\t0x975B\n0x8FFCA1\t0x976A\n0x8FFCA2\t0x292A0\n0x8FFCA3\t0x292B1\n0x8FFCA4\t0x9796\n0x8FFCA5\t0x979A\n0x8FFCA6\t0x979E\n0x8FFCA7\t0x97A2\n0x8FFCA8\t0x97B1\n0x8FFCA9\t0x97B2\n0x8FFCAA\t0x97BE\n0x8FFCAB\t0x97CC\n0x8FFCAC\t0x97D1\n0x8FFCAD\t0x97D4\n0x8FFCAE\t0x97D8\n0x8FFCAF\t0x97D9\n0x8FFCB0\t0x97E1\n0x8FFCB1\t0x97F1\n0x8FFCB2\t0x9804\n0x8FFCB3\t0x980D\n0x8FFCB4\t0x980E\n0x8FFCB5\t0x9814\n0x8FFCB6\t0x9816\n0x8FFCB7\t0x4ABC\n0x8FFCB8\t0x29490\n0x8FFCB9\t0x9823\n0x8FFCBA\t0x9832\n0x8FFCBB\t0x9833\n0x8FFCBC\t0x9825\n0x8FFCBD\t0x9847\n0x8FFCBE\t0x9866\n0x8FFCBF\t0x98AB\n0x8FFCC0\t0x98AD\n0x8FFCC1\t0x98B0\n0x8FFCC2\t0x295CF\n0x8FFCC3\t0x98B7\n0x8FFCC4\t0x98B8\n0x8FFCC5\t0x98BB\n0x8FFCC6\t0x98BC\n0x8FFCC7\t0x98BF\n0x8FFCC8\t0x98C2\n0x8FFCC9\t0x98C7\n0x8FFCCA\t0x98CB\n0x8FFCCB\t0x98E0\n0x8FFCCC\t0x2967F\n0x8FFCCD\t0x98E1\n0x8FFCCE\t0x98E3\n0x8FFCCF\t0x98E5\n0x8FFCD0\t0x98EA\n0x8FFCD1\t0x98F0\n0x8FFCD2\t0x98F1\n0x8FFCD3\t0x98F3\n0x8FFCD4\t0x9908\n0x8FFCD5\t0x4B3B\n0x8FFCD6\t0x296F0\n0x8FFCD7\t0x9916\n0x8FFCD8\t0x9917\n0x8FFCD9\t0x29719\n0x8FFCDA\t0x991A\n0x8FFCDB\t0x991B\n0x8FFCDC\t0x991C\n0x8FFCDD\t0x29750\n0x8FFCDE\t0x9931\n0x8FFCDF\t0x9932\n0x8FFCE0\t0x9933\n0x8FFCE1\t0x993A\n0x8FFCE2\t0x993B\n0x8FFCE3\t0x993C\n0x8FFCE4\t0x9940\n0x8FFCE5\t0x9941\n0x8FFCE6\t0x9946\n0x8FFCE7\t0x994D\n0x8FFCE8\t0x994E\n0x8FFCE9\t0x995C\n0x8FFCEA\t0x995F\n0x8FFCEB\t0x9960\n0x8FFCEC\t0x99A3\n0x8FFCED\t0x99A6\n0x8FFCEE\t0x99B9\n0x8FFCEF\t0x99BD\n0x8FFCF0\t0x99BF\n0x8FFCF1\t0x99C3\n0x8FFCF2\t0x99C9\n0x8FFCF3\t0x99D4\n0x8FFCF4\t0x99D9\n0x8FFCF5\t0x99DE\n0x8FFCF6\t0x298C6\n0x8FFCF7\t0x99F0\n0x8FFCF8\t0x99F9\n0x8FFCF9\t0x99FC\n0x8FFCFA\t0x9A0A\n0x8FFCFB\t0x9A11\n0x8FFCFC\t0x9A16\n0x8FFCFD\t0x9A1A\n0x8FFCFE\t0x9A20\n0x8FFDA1\t0x9A31\n0x8FFDA2\t0x9A36\n0x8FFDA3\t0x9A44\n0x8FFDA4\t0x9A4C\n0x8FFDA5\t0x9A58\n0x8FFDA6\t0x4BC2\n0x8FFDA7\t0x9AAF\n0x8FFDA8\t0x4BCA\n0x8FFDA9\t0x9AB7\n0x8FFDAA\t0x4BD2\n0x8FFDAB\t0x9AB9\n0x8FFDAC\t0x29A72\n0x8FFDAD\t0x9AC6\n0x8FFDAE\t0x9AD0\n0x8FFDAF\t0x9AD2\n0x8FFDB0\t0x9AD5\n0x8FFDB1\t0x4BE8\n0x8FFDB2\t0x9ADC\n0x8FFDB3\t0x9AE0\n0x8FFDB4\t0x9AE5\n0x8FFDB5\t0x9AE9\n0x8FFDB6\t0x9B03\n0x8FFDB7\t0x9B0C\n0x8FFDB8\t0x9B10\n0x8FFDB9\t0x9B12\n0x8FFDBA\t0x9B16\n0x8FFDBB\t0x9B1C\n0x8FFDBC\t0x9B2B\n0x8FFDBD\t0x9B33\n0x8FFDBE\t0x9B3D\n0x8FFDBF\t0x4C20\n0x8FFDC0\t0x9B4B\n0x8FFDC1\t0x9B63\n0x8FFDC2\t0x9B65\n0x8FFDC3\t0x9B6B\n0x8FFDC4\t0x9B6C\n0x8FFDC5\t0x9B73\n0x8FFDC6\t0x9B76\n0x8FFDC7\t0x9B77\n0x8FFDC8\t0x9BA6\n0x8FFDC9\t0x9BAC\n0x8FFDCA\t0x9BB1\n0x8FFDCB\t0x29DDB\n0x8FFDCC\t0x29E3D\n0x8FFDCD\t0x9BB2\n0x8FFDCE\t0x9BB8\n0x8FFDCF\t0x9BBE\n0x8FFDD0\t0x9BC7\n0x8FFDD1\t0x9BF3\n0x8FFDD2\t0x9BD8\n0x8FFDD3\t0x9BDD\n0x8FFDD4\t0x9BE7\n0x8FFDD5\t0x9BEA\n0x8FFDD6\t0x9BEB\n0x8FFDD7\t0x9BEF\n0x8FFDD8\t0x9BEE\n0x8FFDD9\t0x29E15\n0x8FFDDA\t0x9BFA\n0x8FFDDB\t0x29E8A\n0x8FFDDC\t0x9BF7\n0x8FFDDD\t0x29E49\n0x8FFDDE\t0x9C16\n0x8FFDDF\t0x9C18\n0x8FFDE0\t0x9C19\n0x8FFDE1\t0x9C1A\n0x8FFDE2\t0x9C1D\n0x8FFDE3\t0x9C22\n0x8FFDE4\t0x9C27\n0x8FFDE5\t0x9C29\n0x8FFDE6\t0x9C2A\n0x8FFDE7\t0x29EC4\n0x8FFDE8\t0x9C31\n0x8FFDE9\t0x9C36\n0x8FFDEA\t0x9C37\n0x8FFDEB\t0x9C45\n0x8FFDEC\t0x9C5C\n0x8FFDED\t0x29EE9\n0x8FFDEE\t0x9C49\n0x8FFDEF\t0x9C4A\n0x8FFDF0\t0x29EDB\n0x8FFDF1\t0x9C54\n0x8FFDF2\t0x9C58\n0x8FFDF3\t0x9C5B\n0x8FFDF4\t0x9C5D\n0x8FFDF5\t0x9C5F\n0x8FFDF6\t0x9C69\n0x8FFDF7\t0x9C6A\n0x8FFDF8\t0x9C6B\n0x8FFDF9\t0x9C6D\n0x8FFDFA\t0x9C6E\n0x8FFDFB\t0x9C70\n0x8FFDFC\t0x9C72\n0x8FFDFD\t0x9C75\n0x8FFDFE\t0x9C7A\n0x8FFEA1\t0x9CE6\n0x8FFEA2\t0x9CF2\n0x8FFEA3\t0x9D0B\n0x8FFEA4\t0x9D02\n0x8FFEA5\t0x29FCE\n0x8FFEA6\t0x9D11\n0x8FFEA7\t0x9D17\n0x8FFEA8\t0x9D18\n0x8FFEA9\t0x2A02F\n0x8FFEAA\t0x4CC4\n0x8FFEAB\t0x2A01A\n0x8FFEAC\t0x9D32\n0x8FFEAD\t0x4CD1\n0x8FFEAE\t0x9D42\n0x8FFEAF\t0x9D4A\n0x8FFEB0\t0x9D5F\n0x8FFEB1\t0x9D62\n0x8FFEB2\t0x2A0F9\n0x8FFEB3\t0x9D69\n0x8FFEB4\t0x9D6B\n0x8FFEB5\t0x2A082\n0x8FFEB6\t0x9D73\n0x8FFEB7\t0x9D76\n0x8FFEB8\t0x9D77\n0x8FFEB9\t0x9D7E\n0x8FFEBA\t0x9D84\n0x8FFEBB\t0x9D8D\n0x8FFEBC\t0x9D99\n0x8FFEBD\t0x9DA1\n0x8FFEBE\t0x9DBF\n0x8FFEBF\t0x9DB5\n0x8FFEC0\t0x9DB9\n0x8FFEC1\t0x9DBD\n0x8FFEC2\t0x9DC3\n0x8FFEC3\t0x9DC7\n0x8FFEC4\t0x9DC9\n0x8FFEC5\t0x9DD6\n0x8FFEC6\t0x9DDA\n0x8FFEC7\t0x9DDF\n0x8FFEC8\t0x9DE0\n0x8FFEC9\t0x9DE3\n0x8FFECA\t0x9DF4\n0x8FFECB\t0x4D07\n0x8FFECC\t0x9E0A\n0x8FFECD\t0x9E02\n0x8FFECE\t0x9E0D\n0x8FFECF\t0x9E19\n0x8FFED0\t0x9E1C\n0x8FFED1\t0x9E1D\n0x8FFED2\t0x9E7B\n0x8FFED3\t0x22218\n0x8FFED4\t0x9E80\n0x8FFED5\t0x9E85\n0x8FFED6\t0x9E9B\n0x8FFED7\t0x9EA8\n0x8FFED8\t0x2A38C\n0x8FFED9\t0x9EBD\n0x8FFEDA\t0x2A437\n0x8FFEDB\t0x9EDF\n0x8FFEDC\t0x9EE7\n0x8FFEDD\t0x9EEE\n0x8FFEDE\t0x9EFF\n0x8FFEDF\t0x9F02\n0x8FFEE0\t0x4D77\n0x8FFEE1\t0x9F03\n0x8FFEE2\t0x9F17\n0x8FFEE3\t0x9F19\n0x8FFEE4\t0x9F2F\n0x8FFEE5\t0x9F37\n0x8FFEE6\t0x9F3A\n0x8FFEE7\t0x9F3D\n0x8FFEE8\t0x9F41\n0x8FFEE9\t0x9F45\n0x8FFEEA\t0x9F46\n0x8FFEEB\t0x9F53\n0x8FFEEC\t0x9F55\n0x8FFEED\t0x9F58\n0x8FFEEE\t0x2A5F1\n0x8FFEEF\t0x9F5D\n0x8FFEF0\t0x2A602\n0x8FFEF1\t0x9F69\n0x8FFEF2\t0x2A61A\n0x8FFEF3\t0x9F6D\n0x8FFEF4\t0x9F70\n0x8FFEF5\t0x9F75\n0x8FFEF6\t0x2A6B2\n0xA1A1\t0x3000\n0xA1A2\t0x3001\n0xA1A3\t0x3002\n0xA1A4\t0xFF0C\n0xA1A5\t0xFF0E\n0xA1A6\t0x30FB\n0xA1A7\t0xFF1A\n0xA1A8\t0xFF1B\n0xA1A9\t0xFF1F\n0xA1AA\t0xFF01\n0xA1AB\t0x309B\n0xA1AC\t0x309C\n0xA1AD\t0x00B4\n0xA1AE\t0xFF40\n0xA1AF\t0x00A8\n0xA1B0\t0xFF3E\n0xA1B1\t0xFFE3\n0xA1B2\t0xFF3F\n0xA1B3\t0x30FD\n0xA1B4\t0x30FE\n0xA1B5\t0x309D\n0xA1B6\t0x309E\n0xA1B7\t0x3003\n0xA1B8\t0x4EDD\n0xA1B9\t0x3005\n0xA1BA\t0x3006\n0xA1BB\t0x3007\n0xA1BC\t0x30FC\n0xA1BD\t0x2014\n0xA1BE\t0x2010\n0xA1BF\t0xFF0F\n0xA1C0\t0xFF3C\n0xA1C1\t0x301C\n0xA1C2\t0x2016\n0xA1C3\t0xFF5C\n0xA1C4\t0x2026\n0xA1C5\t0x2025\n0xA1C6\t0x2018\n0xA1C7\t0x2019\n0xA1C8\t0x201C\n0xA1C9\t0x201D\n0xA1CA\t0xFF08\n0xA1CB\t0xFF09\n0xA1CC\t0x3014\n0xA1CD\t0x3015\n0xA1CE\t0xFF3B\n0xA1CF\t0xFF3D\n0xA1D0\t0xFF5B\n0xA1D1\t0xFF5D\n0xA1D2\t0x3008\n0xA1D3\t0x3009\n0xA1D4\t0x300A\n0xA1D5\t0x300B\n0xA1D6\t0x300C\n0xA1D7\t0x300D\n0xA1D8\t0x300E\n0xA1D9\t0x300F\n0xA1DA\t0x3010\n0xA1DB\t0x3011\n0xA1DC\t0xFF0B\n0xA1DD\t0x2212\n0xA1DE\t0x00B1\n0xA1DF\t0x00D7\n0xA1E0\t0x00F7\n0xA1E1\t0xFF1D\n0xA1E2\t0x2260\n0xA1E3\t0xFF1C\n0xA1E4\t0xFF1E\n0xA1E5\t0x2266\n0xA1E6\t0x2267\n0xA1E7\t0x221E\n0xA1E8\t0x2234\n0xA1E9\t0x2642\n0xA1EA\t0x2640\n0xA1EB\t0x00B0\n0xA1EC\t0x2032\n0xA1ED\t0x2033\n0xA1EE\t0x2103\n0xA1EF\t0xFFE5\n0xA1F0\t0xFF04\n0xA1F1\t0x00A2\n0xA1F2\t0x00A3\n0xA1F3\t0xFF05\n0xA1F4\t0xFF03\n0xA1F5\t0xFF06\n0xA1F6\t0xFF0A\n0xA1F7\t0xFF20\n0xA1F8\t0x00A7\n0xA1F9\t0x2606\n0xA1FA\t0x2605\n0xA1FB\t0x25CB\n0xA1FC\t0x25CF\n0xA1FD\t0x25CE\n0xA1FE\t0x25C7\n0xA2A1\t0x25C6\n0xA2A2\t0x25A1\n0xA2A3\t0x25A0\n0xA2A4\t0x25B3\n0xA2A5\t0x25B2\n0xA2A6\t0x25BD\n0xA2A7\t0x25BC\n0xA2A8\t0x203B\n0xA2A9\t0x3012\n0xA2AA\t0x2192\n0xA2AB\t0x2190\n0xA2AC\t0x2191\n0xA2AD\t0x2193\n0xA2AE\t0x3013\n0xA2AF\t0xFF07\n0xA2B0\t0xFF02\n0xA2B1\t0xFF0D\n0xA2B2\t0xFF5E\n0xA2B3\t0x3033\n0xA2B4\t0x3034\n0xA2B5\t0x3035\n0xA2B6\t0x303B\n0xA2B7\t0x303C\n0xA2B8\t0x30FF\n0xA2B9\t0x309F\n0xA2BA\t0x2208\n0xA2BB\t0x220B\n0xA2BC\t0x2286\n0xA2BD\t0x2287\n0xA2BE\t0x2282\n0xA2BF\t0x2283\n0xA2C0\t0x222A\n0xA2C1\t0x2229\n0xA2C2\t0x2284\n0xA2C3\t0x2285\n0xA2C4\t0x228A\n0xA2C5\t0x228B\n0xA2C6\t0x2209\n0xA2C7\t0x2205\n0xA2C8\t0x2305\n0xA2C9\t0x2306\n0xA2CA\t0x2227\n0xA2CB\t0x2228\n0xA2CC\t0x00AC\n0xA2CD\t0x21D2\n0xA2CE\t0x21D4\n0xA2CF\t0x2200\n0xA2D0\t0x2203\n0xA2D1\t0x2295\n0xA2D2\t0x2296\n0xA2D3\t0x2297\n0xA2D4\t0x2225\n0xA2D5\t0x2226\n0xA2D6\t0xFF5F\n0xA2D7\t0xFF60\n0xA2D8\t0x3018\n0xA2D9\t0x3019\n0xA2DA\t0x3016\n0xA2DB\t0x3017\n0xA2DC\t0x2220\n0xA2DD\t0x22A5\n0xA2DE\t0x2312\n0xA2DF\t0x2202\n0xA2E0\t0x2207\n0xA2E1\t0x2261\n0xA2E2\t0x2252\n0xA2E3\t0x226A\n0xA2E4\t0x226B\n0xA2E5\t0x221A\n0xA2E6\t0x223D\n0xA2E7\t0x221D\n0xA2E8\t0x2235\n0xA2E9\t0x222B\n0xA2EA\t0x222C\n0xA2EB\t0x2262\n0xA2EC\t0x2243\n0xA2ED\t0x2245\n0xA2EE\t0x2248\n0xA2EF\t0x2276\n0xA2F0\t0x2277\n0xA2F1\t0x2194\n0xA2F2\t0x212B\n0xA2F3\t0x2030\n0xA2F4\t0x266F\n0xA2F5\t0x266D\n0xA2F6\t0x266A\n0xA2F7\t0x2020\n0xA2F8\t0x2021\n0xA2F9\t0x00B6\n0xA2FA\t0x266E\n0xA2FB\t0x266B\n0xA2FC\t0x266C\n0xA2FD\t0x2669\n0xA2FE\t0x25EF\n0xA3A1\t0x25B7\n0xA3A2\t0x25B6\n0xA3A3\t0x25C1\n0xA3A4\t0x25C0\n0xA3A5\t0x2197\n0xA3A6\t0x2198\n0xA3A7\t0x2196\n0xA3A8\t0x2199\n0xA3A9\t0x21C4\n0xA3AA\t0x21E8\n0xA3AB\t0x21E6\n0xA3AC\t0x21E7\n0xA3AD\t0x21E9\n0xA3AE\t0x2934\n0xA3AF\t0x2935\n0xA3B0\t0xFF10\n0xA3B1\t0xFF11\n0xA3B2\t0xFF12\n0xA3B3\t0xFF13\n0xA3B4\t0xFF14\n0xA3B5\t0xFF15\n0xA3B6\t0xFF16\n0xA3B7\t0xFF17\n0xA3B8\t0xFF18\n0xA3B9\t0xFF19\n0xA3BA\t0x29BF\n0xA3BB\t0x25C9\n0xA3BC\t0x303D\n0xA3BD\t0xFE46\n0xA3BE\t0xFE45\n0xA3BF\t0x25E6\n0xA3C0\t0x2022\n0xA3C1\t0xFF21\n0xA3C2\t0xFF22\n0xA3C3\t0xFF23\n0xA3C4\t0xFF24\n0xA3C5\t0xFF25\n0xA3C6\t0xFF26\n0xA3C7\t0xFF27\n0xA3C8\t0xFF28\n0xA3C9\t0xFF29\n0xA3CA\t0xFF2A\n0xA3CB\t0xFF2B\n0xA3CC\t0xFF2C\n0xA3CD\t0xFF2D\n0xA3CE\t0xFF2E\n0xA3CF\t0xFF2F\n0xA3D0\t0xFF30\n0xA3D1\t0xFF31\n0xA3D2\t0xFF32\n0xA3D3\t0xFF33\n0xA3D4\t0xFF34\n0xA3D5\t0xFF35\n0xA3D6\t0xFF36\n0xA3D7\t0xFF37\n0xA3D8\t0xFF38\n0xA3D9\t0xFF39\n0xA3DA\t0xFF3A\n0xA3DB\t0x2213\n0xA3DC\t0x2135\n0xA3DD\t0x210F\n0xA3DE\t0x33CB\n0xA3DF\t0x2113\n0xA3E0\t0x2127\n0xA3E1\t0xFF41\n0xA3E2\t0xFF42\n0xA3E3\t0xFF43\n0xA3E4\t0xFF44\n0xA3E5\t0xFF45\n0xA3E6\t0xFF46\n0xA3E7\t0xFF47\n0xA3E8\t0xFF48\n0xA3E9\t0xFF49\n0xA3EA\t0xFF4A\n0xA3EB\t0xFF4B\n0xA3EC\t0xFF4C\n0xA3ED\t0xFF4D\n0xA3EE\t0xFF4E\n0xA3EF\t0xFF4F\n0xA3F0\t0xFF50\n0xA3F1\t0xFF51\n0xA3F2\t0xFF52\n0xA3F3\t0xFF53\n0xA3F4\t0xFF54\n0xA3F5\t0xFF55\n0xA3F6\t0xFF56\n0xA3F7\t0xFF57\n0xA3F8\t0xFF58\n0xA3F9\t0xFF59\n0xA3FA\t0xFF5A\n0xA3FB\t0x30A0\n0xA3FC\t0x2013\n0xA3FD\t0x29FA\n0xA3FE\t0x29FB\n0xA4A1\t0x3041\n0xA4A2\t0x3042\n0xA4A3\t0x3043\n0xA4A4\t0x3044\n0xA4A5\t0x3045\n0xA4A6\t0x3046\n0xA4A7\t0x3047\n0xA4A8\t0x3048\n0xA4A9\t0x3049\n0xA4AA\t0x304A\n0xA4AB\t0x304B\n0xA4AC\t0x304C\n0xA4AD\t0x304D\n0xA4AE\t0x304E\n0xA4AF\t0x304F\n0xA4B0\t0x3050\n0xA4B1\t0x3051\n0xA4B2\t0x3052\n0xA4B3\t0x3053\n0xA4B4\t0x3054\n0xA4B5\t0x3055\n0xA4B6\t0x3056\n0xA4B7\t0x3057\n0xA4B8\t0x3058\n0xA4B9\t0x3059\n0xA4BA\t0x305A\n0xA4BB\t0x305B\n0xA4BC\t0x305C\n0xA4BD\t0x305D\n0xA4BE\t0x305E\n0xA4BF\t0x305F\n0xA4C0\t0x3060\n0xA4C1\t0x3061\n0xA4C2\t0x3062\n0xA4C3\t0x3063\n0xA4C4\t0x3064\n0xA4C5\t0x3065\n0xA4C6\t0x3066\n0xA4C7\t0x3067\n0xA4C8\t0x3068\n0xA4C9\t0x3069\n0xA4CA\t0x306A\n0xA4CB\t0x306B\n0xA4CC\t0x306C\n0xA4CD\t0x306D\n0xA4CE\t0x306E\n0xA4CF\t0x306F\n0xA4D0\t0x3070\n0xA4D1\t0x3071\n0xA4D2\t0x3072\n0xA4D3\t0x3073\n0xA4D4\t0x3074\n0xA4D5\t0x3075\n0xA4D6\t0x3076\n0xA4D7\t0x3077\n0xA4D8\t0x3078\n0xA4D9\t0x3079\n0xA4DA\t0x307A\n0xA4DB\t0x307B\n0xA4DC\t0x307C\n0xA4DD\t0x307D\n0xA4DE\t0x307E\n0xA4DF\t0x307F\n0xA4E0\t0x3080\n0xA4E1\t0x3081\n0xA4E2\t0x3082\n0xA4E3\t0x3083\n0xA4E4\t0x3084\n0xA4E5\t0x3085\n0xA4E6\t0x3086\n0xA4E7\t0x3087\n0xA4E8\t0x3088\n0xA4E9\t0x3089\n0xA4EA\t0x308A\n0xA4EB\t0x308B\n0xA4EC\t0x308C\n0xA4ED\t0x308D\n0xA4EE\t0x308E\n0xA4EF\t0x308F\n0xA4F0\t0x3090\n0xA4F1\t0x3091\n0xA4F2\t0x3092\n0xA4F3\t0x3093\n0xA4F4\t0x3094\n0xA4F5\t0x3095\n0xA4F6\t0x3096\n0xA4F7\t0x304B 0x309A\n0xA4F8\t0x304D 0x309A\n0xA4F9\t0x304F 0x309A\n0xA4FA\t0x3051 0x309A\n0xA4FB\t0x3053 0x309A\n0xA5A1\t0x30A1\n0xA5A2\t0x30A2\n0xA5A3\t0x30A3\n0xA5A4\t0x30A4\n0xA5A5\t0x30A5\n0xA5A6\t0x30A6\n0xA5A7\t0x30A7\n0xA5A8\t0x30A8\n0xA5A9\t0x30A9\n0xA5AA\t0x30AA\n0xA5AB\t0x30AB\n0xA5AC\t0x30AC\n0xA5AD\t0x30AD\n0xA5AE\t0x30AE\n0xA5AF\t0x30AF\n0xA5B0\t0x30B0\n0xA5B1\t0x30B1\n0xA5B2\t0x30B2\n0xA5B3\t0x30B3\n0xA5B4\t0x30B4\n0xA5B5\t0x30B5\n0xA5B6\t0x30B6\n0xA5B7\t0x30B7\n0xA5B8\t0x30B8\n0xA5B9\t0x30B9\n0xA5BA\t0x30BA\n0xA5BB\t0x30BB\n0xA5BC\t0x30BC\n0xA5BD\t0x30BD\n0xA5BE\t0x30BE\n0xA5BF\t0x30BF\n0xA5C0\t0x30C0\n0xA5C1\t0x30C1\n0xA5C2\t0x30C2\n0xA5C3\t0x30C3\n0xA5C4\t0x30C4\n0xA5C5\t0x30C5\n0xA5C6\t0x30C6\n0xA5C7\t0x30C7\n0xA5C8\t0x30C8\n0xA5C9\t0x30C9\n0xA5CA\t0x30CA\n0xA5CB\t0x30CB\n0xA5CC\t0x30CC\n0xA5CD\t0x30CD\n0xA5CE\t0x30CE\n0xA5CF\t0x30CF\n0xA5D0\t0x30D0\n0xA5D1\t0x30D1\n0xA5D2\t0x30D2\n0xA5D3\t0x30D3\n0xA5D4\t0x30D4\n0xA5D5\t0x30D5\n0xA5D6\t0x30D6\n0xA5D7\t0x30D7\n0xA5D8\t0x30D8\n0xA5D9\t0x30D9\n0xA5DA\t0x30DA\n0xA5DB\t0x30DB\n0xA5DC\t0x30DC\n0xA5DD\t0x30DD\n0xA5DE\t0x30DE\n0xA5DF\t0x30DF\n0xA5E0\t0x30E0\n0xA5E1\t0x30E1\n0xA5E2\t0x30E2\n0xA5E3\t0x30E3\n0xA5E4\t0x30E4\n0xA5E5\t0x30E5\n0xA5E6\t0x30E6\n0xA5E7\t0x30E7\n0xA5E8\t0x30E8\n0xA5E9\t0x30E9\n0xA5EA\t0x30EA\n0xA5EB\t0x30EB\n0xA5EC\t0x30EC\n0xA5ED\t0x30ED\n0xA5EE\t0x30EE\n0xA5EF\t0x30EF\n0xA5F0\t0x30F0\n0xA5F1\t0x30F1\n0xA5F2\t0x30F2\n0xA5F3\t0x30F3\n0xA5F4\t0x30F4\n0xA5F5\t0x30F5\n0xA5F6\t0x30F6\n0xA5F7\t0x30AB 0x309A\n0xA5F8\t0x30AD 0x309A\n0xA5F9\t0x30AF 0x309A\n0xA5FA\t0x30B1 0x309A\n0xA5FB\t0x30B3 0x309A\n0xA5FC\t0x30BB 0x309A\n0xA5FD\t0x30C4 0x309A\n0xA5FE\t0x30C8 0x309A\n0xA6A1\t0x0391\n0xA6A2\t0x0392\n0xA6A3\t0x0393\n0xA6A4\t0x0394\n0xA6A5\t0x0395\n0xA6A6\t0x0396\n0xA6A7\t0x0397\n0xA6A8\t0x0398\n0xA6A9\t0x0399\n0xA6AA\t0x039A\n0xA6AB\t0x039B\n0xA6AC\t0x039C\n0xA6AD\t0x039D\n0xA6AE\t0x039E\n0xA6AF\t0x039F\n0xA6B0\t0x03A0\n0xA6B1\t0x03A1\n0xA6B2\t0x03A3\n0xA6B3\t0x03A4\n0xA6B4\t0x03A5\n0xA6B5\t0x03A6\n0xA6B6\t0x03A7\n0xA6B7\t0x03A8\n0xA6B8\t0x03A9\n0xA6B9\t0x2664\n0xA6BA\t0x2660\n0xA6BB\t0x2662\n0xA6BC\t0x2666\n0xA6BD\t0x2661\n0xA6BE\t0x2665\n0xA6BF\t0x2667\n0xA6C0\t0x2663\n0xA6C1\t0x03B1\n0xA6C2\t0x03B2\n0xA6C3\t0x03B3\n0xA6C4\t0x03B4\n0xA6C5\t0x03B5\n0xA6C6\t0x03B6\n0xA6C7\t0x03B7\n0xA6C8\t0x03B8\n0xA6C9\t0x03B9\n0xA6CA\t0x03BA\n0xA6CB\t0x03BB\n0xA6CC\t0x03BC\n0xA6CD\t0x03BD\n0xA6CE\t0x03BE\n0xA6CF\t0x03BF\n0xA6D0\t0x03C0\n0xA6D1\t0x03C1\n0xA6D2\t0x03C3\n0xA6D3\t0x03C4\n0xA6D4\t0x03C5\n0xA6D5\t0x03C6\n0xA6D6\t0x03C7\n0xA6D7\t0x03C8\n0xA6D8\t0x03C9\n0xA6D9\t0x03C2\n0xA6DA\t0x24F5\n0xA6DB\t0x24F6\n0xA6DC\t0x24F7\n0xA6DD\t0x24F8\n0xA6DE\t0x24F9\n0xA6DF\t0x24FA\n0xA6E0\t0x24FB\n0xA6E1\t0x24FC\n0xA6E2\t0x24FD\n0xA6E3\t0x24FE\n0xA6E4\t0x2616\n0xA6E5\t0x2617\n0xA6E6\t0x3020\n0xA6E7\t0x260E\n0xA6E8\t0x2600\n0xA6E9\t0x2601\n0xA6EA\t0x2602\n0xA6EB\t0x2603\n0xA6EC\t0x2668\n0xA6ED\t0x25B1\n0xA6EE\t0x31F0\n0xA6EF\t0x31F1\n0xA6F0\t0x31F2\n0xA6F1\t0x31F3\n0xA6F2\t0x31F4\n0xA6F3\t0x31F5\n0xA6F4\t0x31F6\n0xA6F5\t0x31F7\n0xA6F6\t0x31F8\n0xA6F7\t0x31F9\n0xA6F8\t0x31F7 0x309A\n0xA6F9\t0x31FA\n0xA6FA\t0x31FB\n0xA6FB\t0x31FC\n0xA6FC\t0x31FD\n0xA6FD\t0x31FE\n0xA6FE\t0x31FF\n0xA7A1\t0x0410\n0xA7A2\t0x0411\n0xA7A3\t0x0412\n0xA7A4\t0x0413\n0xA7A5\t0x0414\n0xA7A6\t0x0415\n0xA7A7\t0x0401\n0xA7A8\t0x0416\n0xA7A9\t0x0417\n0xA7AA\t0x0418\n0xA7AB\t0x0419\n0xA7AC\t0x041A\n0xA7AD\t0x041B\n0xA7AE\t0x041C\n0xA7AF\t0x041D\n0xA7B0\t0x041E\n0xA7B1\t0x041F\n0xA7B2\t0x0420\n0xA7B3\t0x0421\n0xA7B4\t0x0422\n0xA7B5\t0x0423\n0xA7B6\t0x0424\n0xA7B7\t0x0425\n0xA7B8\t0x0426\n0xA7B9\t0x0427\n0xA7BA\t0x0428\n0xA7BB\t0x0429\n0xA7BC\t0x042A\n0xA7BD\t0x042B\n0xA7BE\t0x042C\n0xA7BF\t0x042D\n0xA7C0\t0x042E\n0xA7C1\t0x042F\n0xA7C2\t0x23BE\n0xA7C3\t0x23BF\n0xA7C4\t0x23C0\n0xA7C5\t0x23C1\n0xA7C6\t0x23C2\n0xA7C7\t0x23C3\n0xA7C8\t0x23C4\n0xA7C9\t0x23C5\n0xA7CA\t0x23C6\n0xA7CB\t0x23C7\n0xA7CC\t0x23C8\n0xA7CD\t0x23C9\n0xA7CE\t0x23CA\n0xA7CF\t0x23CB\n0xA7D0\t0x23CC\n0xA7D1\t0x0430\n0xA7D2\t0x0431\n0xA7D3\t0x0432\n0xA7D4\t0x0433\n0xA7D5\t0x0434\n0xA7D6\t0x0435\n0xA7D7\t0x0451\n0xA7D8\t0x0436\n0xA7D9\t0x0437\n0xA7DA\t0x0438\n0xA7DB\t0x0439\n0xA7DC\t0x043A\n0xA7DD\t0x043B\n0xA7DE\t0x043C\n0xA7DF\t0x043D\n0xA7E0\t0x043E\n0xA7E1\t0x043F\n0xA7E2\t0x0440\n0xA7E3\t0x0441\n0xA7E4\t0x0442\n0xA7E5\t0x0443\n0xA7E6\t0x0444\n0xA7E7\t0x0445\n0xA7E8\t0x0446\n0xA7E9\t0x0447\n0xA7EA\t0x0448\n0xA7EB\t0x0449\n0xA7EC\t0x044A\n0xA7ED\t0x044B\n0xA7EE\t0x044C\n0xA7EF\t0x044D\n0xA7F0\t0x044E\n0xA7F1\t0x044F\n0xA7F2\t0x30F7\n0xA7F3\t0x30F8\n0xA7F4\t0x30F9\n0xA7F5\t0x30FA\n0xA7F6\t0x22DA\n0xA7F7\t0x22DB\n0xA7F8\t0x2153\n0xA7F9\t0x2154\n0xA7FA\t0x2155\n0xA7FB\t0x2713\n0xA7FC\t0x2318\n0xA7FD\t0x2423\n0xA7FE\t0x23CE\n0xA8A1\t0x2500\n0xA8A2\t0x2502\n0xA8A3\t0x250C\n0xA8A4\t0x2510\n0xA8A5\t0x2518\n0xA8A6\t0x2514\n0xA8A7\t0x251C\n0xA8A8\t0x252C\n0xA8A9\t0x2524\n0xA8AA\t0x2534\n0xA8AB\t0x253C\n0xA8AC\t0x2501\n0xA8AD\t0x2503\n0xA8AE\t0x250F\n0xA8AF\t0x2513\n0xA8B0\t0x251B\n0xA8B1\t0x2517\n0xA8B2\t0x2523\n0xA8B3\t0x2533\n0xA8B4\t0x252B\n0xA8B5\t0x253B\n0xA8B6\t0x254B\n0xA8B7\t0x2520\n0xA8B8\t0x252F\n0xA8B9\t0x2528\n0xA8BA\t0x2537\n0xA8BB\t0x253F\n0xA8BC\t0x251D\n0xA8BD\t0x2530\n0xA8BE\t0x2525\n0xA8BF\t0x2538\n0xA8C0\t0x2542\n0xA8C1\t0x3251\n0xA8C2\t0x3252\n0xA8C3\t0x3253\n0xA8C4\t0x3254\n0xA8C5\t0x3255\n0xA8C6\t0x3256\n0xA8C7\t0x3257\n0xA8C8\t0x3258\n0xA8C9\t0x3259\n0xA8CA\t0x325A\n0xA8CB\t0x325B\n0xA8CC\t0x325C\n0xA8CD\t0x325D\n0xA8CE\t0x325E\n0xA8CF\t0x325F\n0xA8D0\t0x32B1\n0xA8D1\t0x32B2\n0xA8D2\t0x32B3\n0xA8D3\t0x32B4\n0xA8D4\t0x32B5\n0xA8D5\t0x32B6\n0xA8D6\t0x32B7\n0xA8D7\t0x32B8\n0xA8D8\t0x32B9\n0xA8D9\t0x32BA\n0xA8DA\t0x32BB\n0xA8DB\t0x32BC\n0xA8DC\t0x32BD\n0xA8DD\t0x32BE\n0xA8DE\t0x32BF\n0xA8E7\t0x25D0\n0xA8E8\t0x25D1\n0xA8E9\t0x25D2\n0xA8EA\t0x25D3\n0xA8EB\t0x203C\n0xA8EC\t0x2047\n0xA8ED\t0x2048\n0xA8EE\t0x2049\n0xA8EF\t0x01CD\n0xA8F0\t0x01CE\n0xA8F1\t0x01D0\n0xA8F2\t0x1E3E\n0xA8F3\t0x1E3F\n0xA8F4\t0x01F8\n0xA8F5\t0x01F9\n0xA8F6\t0x01D1\n0xA8F7\t0x01D2\n0xA8F8\t0x01D4\n0xA8F9\t0x01D6\n0xA8FA\t0x01D8\n0xA8FB\t0x01DA\n0xA8FC\t0x01DC\n0xA9A1\t0x20AC\n0xA9A2\t0x00A0\n0xA9A3\t0x00A1\n0xA9A4\t0x00A4\n0xA9A5\t0x00A6\n0xA9A6\t0x00A9\n0xA9A7\t0x00AA\n0xA9A8\t0x00AB\n0xA9A9\t0x00AD\n0xA9AA\t0x00AE\n0xA9AB\t0x00AF\n0xA9AC\t0x00B2\n0xA9AD\t0x00B3\n0xA9AE\t0x00B7\n0xA9AF\t0x00B8\n0xA9B0\t0x00B9\n0xA9B1\t0x00BA\n0xA9B2\t0x00BB\n0xA9B3\t0x00BC\n0xA9B4\t0x00BD\n0xA9B5\t0x00BE\n0xA9B6\t0x00BF\n0xA9B7\t0x00C0\n0xA9B8\t0x00C1\n0xA9B9\t0x00C2\n0xA9BA\t0x00C3\n0xA9BB\t0x00C4\n0xA9BC\t0x00C5\n0xA9BD\t0x00C6\n0xA9BE\t0x00C7\n0xA9BF\t0x00C8\n0xA9C0\t0x00C9\n0xA9C1\t0x00CA\n0xA9C2\t0x00CB\n0xA9C3\t0x00CC\n0xA9C4\t0x00CD\n0xA9C5\t0x00CE\n0xA9C6\t0x00CF\n0xA9C7\t0x00D0\n0xA9C8\t0x00D1\n0xA9C9\t0x00D2\n0xA9CA\t0x00D3\n0xA9CB\t0x00D4\n0xA9CC\t0x00D5\n0xA9CD\t0x00D6\n0xA9CE\t0x00D8\n0xA9CF\t0x00D9\n0xA9D0\t0x00DA\n0xA9D1\t0x00DB\n0xA9D2\t0x00DC\n0xA9D3\t0x00DD\n0xA9D4\t0x00DE\n0xA9D5\t0x00DF\n0xA9D6\t0x00E0\n0xA9D7\t0x00E1\n0xA9D8\t0x00E2\n0xA9D9\t0x00E3\n0xA9DA\t0x00E4\n0xA9DB\t0x00E5\n0xA9DC\t0x00E6\n0xA9DD\t0x00E7\n0xA9DE\t0x00E8\n0xA9DF\t0x00E9\n0xA9E0\t0x00EA\n0xA9E1\t0x00EB\n0xA9E2\t0x00EC\n0xA9E3\t0x00ED\n0xA9E4\t0x00EE\n0xA9E5\t0x00EF\n0xA9E6\t0x00F0\n0xA9E7\t0x00F1\n0xA9E8\t0x00F2\n0xA9E9\t0x00F3\n0xA9EA\t0x00F4\n0xA9EB\t0x00F5\n0xA9EC\t0x00F6\n0xA9ED\t0x00F8\n0xA9EE\t0x00F9\n0xA9EF\t0x00FA\n0xA9F0\t0x00FB\n0xA9F1\t0x00FC\n0xA9F2\t0x00FD\n0xA9F3\t0x00FE\n0xA9F4\t0x00FF\n0xA9F5\t0x0100\n0xA9F6\t0x012A\n0xA9F7\t0x016A\n0xA9F8\t0x0112\n0xA9F9\t0x014C\n0xA9FA\t0x0101\n0xA9FB\t0x012B\n0xA9FC\t0x016B\n0xA9FD\t0x0113\n0xA9FE\t0x014D\n0xAAA1\t0x0104\n0xAAA2\t0x02D8\n0xAAA3\t0x0141\n0xAAA4\t0x013D\n0xAAA5\t0x015A\n0xAAA6\t0x0160\n0xAAA7\t0x015E\n0xAAA8\t0x0164\n0xAAA9\t0x0179\n0xAAAA\t0x017D\n0xAAAB\t0x017B\n0xAAAC\t0x0105\n0xAAAD\t0x02DB\n0xAAAE\t0x0142\n0xAAAF\t0x013E\n0xAAB0\t0x015B\n0xAAB1\t0x02C7\n0xAAB2\t0x0161\n0xAAB3\t0x015F\n0xAAB4\t0x0165\n0xAAB5\t0x017A\n0xAAB6\t0x02DD\n0xAAB7\t0x017E\n0xAAB8\t0x017C\n0xAAB9\t0x0154\n0xAABA\t0x0102\n0xAABB\t0x0139\n0xAABC\t0x0106\n0xAABD\t0x010C\n0xAABE\t0x0118\n0xAABF\t0x011A\n0xAAC0\t0x010E\n0xAAC1\t0x0143\n0xAAC2\t0x0147\n0xAAC3\t0x0150\n0xAAC4\t0x0158\n0xAAC5\t0x016E\n0xAAC6\t0x0170\n0xAAC7\t0x0162\n0xAAC8\t0x0155\n0xAAC9\t0x0103\n0xAACA\t0x013A\n0xAACB\t0x0107\n0xAACC\t0x010D\n0xAACD\t0x0119\n0xAACE\t0x011B\n0xAACF\t0x010F\n0xAAD0\t0x0111\n0xAAD1\t0x0144\n0xAAD2\t0x0148\n0xAAD3\t0x0151\n0xAAD4\t0x0159\n0xAAD5\t0x016F\n0xAAD6\t0x0171\n0xAAD7\t0x0163\n0xAAD8\t0x02D9\n0xAAD9\t0x0108\n0xAADA\t0x011C\n0xAADB\t0x0124\n0xAADC\t0x0134\n0xAADD\t0x015C\n0xAADE\t0x016C\n0xAADF\t0x0109\n0xAAE0\t0x011D\n0xAAE1\t0x0125\n0xAAE2\t0x0135\n0xAAE3\t0x015D\n0xAAE4\t0x016D\n0xAAE5\t0x0271\n0xAAE6\t0x028B\n0xAAE7\t0x027E\n0xAAE8\t0x0283\n0xAAE9\t0x0292\n0xAAEA\t0x026C\n0xAAEB\t0x026E\n0xAAEC\t0x0279\n0xAAED\t0x0288\n0xAAEE\t0x0256\n0xAAEF\t0x0273\n0xAAF0\t0x027D\n0xAAF1\t0x0282\n0xAAF2\t0x0290\n0xAAF3\t0x027B\n0xAAF4\t0x026D\n0xAAF5\t0x025F\n0xAAF6\t0x0272\n0xAAF7\t0x029D\n0xAAF8\t0x028E\n0xAAF9\t0x0261\n0xAAFA\t0x014B\n0xAAFB\t0x0270\n0xAAFC\t0x0281\n0xAAFD\t0x0127\n0xAAFE\t0x0295\n0xABA1\t0x0294\n0xABA2\t0x0266\n0xABA3\t0x0298\n0xABA4\t0x01C2\n0xABA5\t0x0253\n0xABA6\t0x0257\n0xABA7\t0x0284\n0xABA8\t0x0260\n0xABA9\t0x0193\n0xABAA\t0x0153\n0xABAB\t0x0152\n0xABAC\t0x0268\n0xABAD\t0x0289\n0xABAE\t0x0258\n0xABAF\t0x0275\n0xABB0\t0x0259\n0xABB1\t0x025C\n0xABB2\t0x025E\n0xABB3\t0x0250\n0xABB4\t0x026F\n0xABB5\t0x028A\n0xABB6\t0x0264\n0xABB7\t0x028C\n0xABB8\t0x0254\n0xABB9\t0x0251\n0xABBA\t0x0252\n0xABBB\t0x028D\n0xABBC\t0x0265\n0xABBD\t0x02A2\n0xABBE\t0x02A1\n0xABBF\t0x0255\n0xABC0\t0x0291\n0xABC1\t0x027A\n0xABC2\t0x0267\n0xABC3\t0x025A\n0xABC4\t0x00E6 0x0300\n0xABC5\t0x01FD\n0xABC6\t0x1F70\n0xABC7\t0x1F71\n0xABC8\t0x0254 0x0300\n0xABC9\t0x0254 0x0301\n0xABCA\t0x028C 0x0300\n0xABCB\t0x028C 0x0301\n0xABCC\t0x0259 0x0300\n0xABCD\t0x0259 0x0301\n0xABCE\t0x025A 0x0300\n0xABCF\t0x025A 0x0301\n0xABD0\t0x1F72\n0xABD1\t0x1F73\n0xABD2\t0x0361\n0xABD3\t0x02C8\n0xABD4\t0x02CC\n0xABD5\t0x02D0\n0xABD6\t0x02D1\n0xABD7\t0x0306\n0xABD8\t0x203F\n0xABD9\t0x030B\n0xABDA\t0x0301\n0xABDB\t0x0304\n0xABDC\t0x0300\n0xABDD\t0x030F\n0xABDE\t0x030C\n0xABDF\t0x0302\n0xABE0\t0x02E5\n0xABE1\t0x02E6\n0xABE2\t0x02E7\n0xABE3\t0x02E8\n0xABE4\t0x02E9\n0xABE5\t0x02E9 0x02E5\n0xABE6\t0x02E5 0x02E9\n0xABE7\t0x0325\n0xABE8\t0x032C\n0xABE9\t0x0339\n0xABEA\t0x031C\n0xABEB\t0x031F\n0xABEC\t0x0320\n0xABED\t0x0308\n0xABEE\t0x033D\n0xABEF\t0x0329\n0xABF0\t0x032F\n0xABF1\t0x02DE\n0xABF2\t0x0324\n0xABF3\t0x0330\n0xABF4\t0x033C\n0xABF5\t0x0334\n0xABF6\t0x031D\n0xABF7\t0x031E\n0xABF8\t0x0318\n0xABF9\t0x0319\n0xABFA\t0x032A\n0xABFB\t0x033A\n0xABFC\t0x033B\n0xABFD\t0x0303\n0xABFE\t0x031A\n0xACA1\t0x2776\n0xACA2\t0x2777\n0xACA3\t0x2778\n0xACA4\t0x2779\n0xACA5\t0x277A\n0xACA6\t0x277B\n0xACA7\t0x277C\n0xACA8\t0x277D\n0xACA9\t0x277E\n0xACAA\t0x277F\n0xACAB\t0x24EB\n0xACAC\t0x24EC\n0xACAD\t0x24ED\n0xACAE\t0x24EE\n0xACAF\t0x24EF\n0xACB0\t0x24F0\n0xACB1\t0x24F1\n0xACB2\t0x24F2\n0xACB3\t0x24F3\n0xACB4\t0x24F4\n0xACB5\t0x2170\n0xACB6\t0x2171\n0xACB7\t0x2172\n0xACB8\t0x2173\n0xACB9\t0x2174\n0xACBA\t0x2175\n0xACBB\t0x2176\n0xACBC\t0x2177\n0xACBD\t0x2178\n0xACBE\t0x2179\n0xACBF\t0x217A\n0xACC0\t0x217B\n0xACC1\t0x24D0\n0xACC2\t0x24D1\n0xACC3\t0x24D2\n0xACC4\t0x24D3\n0xACC5\t0x24D4\n0xACC6\t0x24D5\n0xACC7\t0x24D6\n0xACC8\t0x24D7\n0xACC9\t0x24D8\n0xACCA\t0x24D9\n0xACCB\t0x24DA\n0xACCC\t0x24DB\n0xACCD\t0x24DC\n0xACCE\t0x24DD\n0xACCF\t0x24DE\n0xACD0\t0x24DF\n0xACD1\t0x24E0\n0xACD2\t0x24E1\n0xACD3\t0x24E2\n0xACD4\t0x24E3\n0xACD5\t0x24E4\n0xACD6\t0x24E5\n0xACD7\t0x24E6\n0xACD8\t0x24E7\n0xACD9\t0x24E8\n0xACDA\t0x24E9\n0xACDB\t0x32D0\n0xACDC\t0x32D1\n0xACDD\t0x32D2\n0xACDE\t0x32D3\n0xACDF\t0x32D4\n0xACE0\t0x32D5\n0xACE1\t0x32D6\n0xACE2\t0x32D7\n0xACE3\t0x32D8\n0xACE4\t0x32D9\n0xACE5\t0x32DA\n0xACE6\t0x32DB\n0xACE7\t0x32DC\n0xACE8\t0x32DD\n0xACE9\t0x32DE\n0xACEA\t0x32DF\n0xACEB\t0x32E0\n0xACEC\t0x32E1\n0xACED\t0x32E2\n0xACEE\t0x32E3\n0xACEF\t0x32FA\n0xACF0\t0x32E9\n0xACF1\t0x32E5\n0xACF2\t0x32ED\n0xACF3\t0x32EC\n0xACFD\t0x2051\n0xACFE\t0x2042\n0xADA1\t0x2460\n0xADA2\t0x2461\n0xADA3\t0x2462\n0xADA4\t0x2463\n0xADA5\t0x2464\n0xADA6\t0x2465\n0xADA7\t0x2466\n0xADA8\t0x2467\n0xADA9\t0x2468\n0xADAA\t0x2469\n0xADAB\t0x246A\n0xADAC\t0x246B\n0xADAD\t0x246C\n0xADAE\t0x246D\n0xADAF\t0x246E\n0xADB0\t0x246F\n0xADB1\t0x2470\n0xADB2\t0x2471\n0xADB3\t0x2472\n0xADB4\t0x2473\n0xADB5\t0x2160\n0xADB6\t0x2161\n0xADB7\t0x2162\n0xADB8\t0x2163\n0xADB9\t0x2164\n0xADBA\t0x2165\n0xADBB\t0x2166\n0xADBC\t0x2167\n0xADBD\t0x2168\n0xADBE\t0x2169\n0xADBF\t0x216A\n0xADC0\t0x3349\n0xADC1\t0x3314\n0xADC2\t0x3322\n0xADC3\t0x334D\n0xADC4\t0x3318\n0xADC5\t0x3327\n0xADC6\t0x3303\n0xADC7\t0x3336\n0xADC8\t0x3351\n0xADC9\t0x3357\n0xADCA\t0x330D\n0xADCB\t0x3326\n0xADCC\t0x3323\n0xADCD\t0x332B\n0xADCE\t0x334A\n0xADCF\t0x333B\n0xADD0\t0x339C\n0xADD1\t0x339D\n0xADD2\t0x339E\n0xADD3\t0x338E\n0xADD4\t0x338F\n0xADD5\t0x33C4\n0xADD6\t0x33A1\n0xADD7\t0x216B\n0xADDF\t0x337B\n0xADE0\t0x301D\n0xADE1\t0x301F\n0xADE2\t0x2116\n0xADE3\t0x33CD\n0xADE4\t0x2121\n0xADE5\t0x32A4\n0xADE6\t0x32A5\n0xADE7\t0x32A6\n0xADE8\t0x32A7\n0xADE9\t0x32A8\n0xADEA\t0x3231\n0xADEB\t0x3232\n0xADEC\t0x3239\n0xADED\t0x337E\n0xADEE\t0x337D\n0xADEF\t0x337C\n0xADF3\t0x222E\n0xADF8\t0x221F\n0xADF9\t0x22BF\n0xADFD\t0x2756\n0xADFE\t0x261E\n0xAEA1\t0x4FF1\n0xAEA2\t0x2000B\n0xAEA3\t0x3402\n0xAEA4\t0x4E28\n0xAEA5\t0x4E2F\n0xAEA6\t0x4E30\n0xAEA7\t0x4E8D\n0xAEA8\t0x4EE1\n0xAEA9\t0x4EFD\n0xAEAA\t0x4EFF\n0xAEAB\t0x4F03\n0xAEAC\t0x4F0B\n0xAEAD\t0x4F60\n0xAEAE\t0x4F48\n0xAEAF\t0x4F49\n0xAEB0\t0x4F56\n0xAEB1\t0x4F5F\n0xAEB2\t0x4F6A\n0xAEB3\t0x4F6C\n0xAEB4\t0x4F7E\n0xAEB5\t0x4F8A\n0xAEB6\t0x4F94\n0xAEB7\t0x4F97\n0xAEB8\t0xFA30\n0xAEB9\t0x4FC9\n0xAEBA\t0x4FE0\n0xAEBB\t0x5001\n0xAEBC\t0x5002\n0xAEBD\t0x500E\n0xAEBE\t0x5018\n0xAEBF\t0x5027\n0xAEC0\t0x502E\n0xAEC1\t0x5040\n0xAEC2\t0x503B\n0xAEC3\t0x5041\n0xAEC4\t0x5094\n0xAEC5\t0x50CC\n0xAEC6\t0x50F2\n0xAEC7\t0x50D0\n0xAEC8\t0x50E6\n0xAEC9\t0xFA31\n0xAECA\t0x5106\n0xAECB\t0x5103\n0xAECC\t0x510B\n0xAECD\t0x511E\n0xAECE\t0x5135\n0xAECF\t0x514A\n0xAED0\t0xFA32\n0xAED1\t0x5155\n0xAED2\t0x5157\n0xAED3\t0x34B5\n0xAED4\t0x519D\n0xAED5\t0x51C3\n0xAED6\t0x51CA\n0xAED7\t0x51DE\n0xAED8\t0x51E2\n0xAED9\t0x51EE\n0xAEDA\t0x5201\n0xAEDB\t0x34DB\n0xAEDC\t0x5213\n0xAEDD\t0x5215\n0xAEDE\t0x5249\n0xAEDF\t0x5257\n0xAEE0\t0x5261\n0xAEE1\t0x5293\n0xAEE2\t0x52C8\n0xAEE3\t0xFA33\n0xAEE4\t0x52CC\n0xAEE5\t0x52D0\n0xAEE6\t0x52D6\n0xAEE7\t0x52DB\n0xAEE8\t0xFA34\n0xAEE9\t0x52F0\n0xAEEA\t0x52FB\n0xAEEB\t0x5300\n0xAEEC\t0x5307\n0xAEED\t0x531C\n0xAEEE\t0xFA35\n0xAEEF\t0x5361\n0xAEF0\t0x5363\n0xAEF1\t0x537D\n0xAEF2\t0x5393\n0xAEF3\t0x539D\n0xAEF4\t0x53B2\n0xAEF5\t0x5412\n0xAEF6\t0x5427\n0xAEF7\t0x544D\n0xAEF8\t0x549C\n0xAEF9\t0x546B\n0xAEFA\t0x5474\n0xAEFB\t0x547F\n0xAEFC\t0x5488\n0xAEFD\t0x5496\n0xAEFE\t0x54A1\n0xAFA1\t0x54A9\n0xAFA2\t0x54C6\n0xAFA3\t0x54FF\n0xAFA4\t0x550E\n0xAFA5\t0x552B\n0xAFA6\t0x5535\n0xAFA7\t0x5550\n0xAFA8\t0x555E\n0xAFA9\t0x5581\n0xAFAA\t0x5586\n0xAFAB\t0x558E\n0xAFAC\t0xFA36\n0xAFAD\t0x55AD\n0xAFAE\t0x55CE\n0xAFAF\t0xFA37\n0xAFB0\t0x5608\n0xAFB1\t0x560E\n0xAFB2\t0x563B\n0xAFB3\t0x5649\n0xAFB4\t0x5676\n0xAFB5\t0x5666\n0xAFB6\t0xFA38\n0xAFB7\t0x566F\n0xAFB8\t0x5671\n0xAFB9\t0x5672\n0xAFBA\t0x5699\n0xAFBB\t0x569E\n0xAFBC\t0x56A9\n0xAFBD\t0x56AC\n0xAFBE\t0x56B3\n0xAFBF\t0x56C9\n0xAFC0\t0x56CA\n0xAFC1\t0x570A\n0xAFC2\t0x2123D\n0xAFC3\t0x5721\n0xAFC4\t0x572F\n0xAFC5\t0x5733\n0xAFC6\t0x5734\n0xAFC7\t0x5770\n0xAFC8\t0x5777\n0xAFC9\t0x577C\n0xAFCA\t0x579C\n0xAFCB\t0xFA0F\n0xAFCC\t0x2131B\n0xAFCD\t0x57B8\n0xAFCE\t0x57C7\n0xAFCF\t0x57C8\n0xAFD0\t0x57CF\n0xAFD1\t0x57E4\n0xAFD2\t0x57ED\n0xAFD3\t0x57F5\n0xAFD4\t0x57F6\n0xAFD5\t0x57FF\n0xAFD6\t0x5809\n0xAFD7\t0xFA10\n0xAFD8\t0x5861\n0xAFD9\t0x5864\n0xAFDA\t0xFA39\n0xAFDB\t0x587C\n0xAFDC\t0x5889\n0xAFDD\t0x589E\n0xAFDE\t0xFA3A\n0xAFDF\t0x58A9\n0xAFE0\t0x2146E\n0xAFE1\t0x58D2\n0xAFE2\t0x58CE\n0xAFE3\t0x58D4\n0xAFE4\t0x58DA\n0xAFE5\t0x58E0\n0xAFE6\t0x58E9\n0xAFE7\t0x590C\n0xAFE8\t0x8641\n0xAFE9\t0x595D\n0xAFEA\t0x596D\n0xAFEB\t0x598B\n0xAFEC\t0x5992\n0xAFED\t0x59A4\n0xAFEE\t0x59C3\n0xAFEF\t0x59D2\n0xAFF0\t0x59DD\n0xAFF1\t0x5A13\n0xAFF2\t0x5A23\n0xAFF3\t0x5A67\n0xAFF4\t0x5A6D\n0xAFF5\t0x5A77\n0xAFF6\t0x5A7E\n0xAFF7\t0x5A84\n0xAFF8\t0x5A9E\n0xAFF9\t0x5AA7\n0xAFFA\t0x5AC4\n0xAFFB\t0x218BD\n0xAFFC\t0x5B19\n0xAFFD\t0x5B25\n0xAFFE\t0x525D\n0xB0A1\t0x4E9C\n0xB0A2\t0x5516\n0xB0A3\t0x5A03\n0xB0A4\t0x963F\n0xB0A5\t0x54C0\n0xB0A6\t0x611B\n0xB0A7\t0x6328\n0xB0A8\t0x59F6\n0xB0A9\t0x9022\n0xB0AA\t0x8475\n0xB0AB\t0x831C\n0xB0AC\t0x7A50\n0xB0AD\t0x60AA\n0xB0AE\t0x63E1\n0xB0AF\t0x6E25\n0xB0B0\t0x65ED\n0xB0B1\t0x8466\n0xB0B2\t0x82A6\n0xB0B3\t0x9BF5\n0xB0B4\t0x6893\n0xB0B5\t0x5727\n0xB0B6\t0x65A1\n0xB0B7\t0x6271\n0xB0B8\t0x5B9B\n0xB0B9\t0x59D0\n0xB0BA\t0x867B\n0xB0BB\t0x98F4\n0xB0BC\t0x7D62\n0xB0BD\t0x7DBE\n0xB0BE\t0x9B8E\n0xB0BF\t0x6216\n0xB0C0\t0x7C9F\n0xB0C1\t0x88B7\n0xB0C2\t0x5B89\n0xB0C3\t0x5EB5\n0xB0C4\t0x6309\n0xB0C5\t0x6697\n0xB0C6\t0x6848\n0xB0C7\t0x95C7\n0xB0C8\t0x978D\n0xB0C9\t0x674F\n0xB0CA\t0x4EE5\n0xB0CB\t0x4F0A\n0xB0CC\t0x4F4D\n0xB0CD\t0x4F9D\n0xB0CE\t0x5049\n0xB0CF\t0x56F2\n0xB0D0\t0x5937\n0xB0D1\t0x59D4\n0xB0D2\t0x5A01\n0xB0D3\t0x5C09\n0xB0D4\t0x60DF\n0xB0D5\t0x610F\n0xB0D6\t0x6170\n0xB0D7\t0x6613\n0xB0D8\t0x6905\n0xB0D9\t0x70BA\n0xB0DA\t0x754F\n0xB0DB\t0x7570\n0xB0DC\t0x79FB\n0xB0DD\t0x7DAD\n0xB0DE\t0x7DEF\n0xB0DF\t0x80C3\n0xB0E0\t0x840E\n0xB0E1\t0x8863\n0xB0E2\t0x8B02\n0xB0E3\t0x9055\n0xB0E4\t0x907A\n0xB0E5\t0x533B\n0xB0E6\t0x4E95\n0xB0E7\t0x4EA5\n0xB0E8\t0x57DF\n0xB0E9\t0x80B2\n0xB0EA\t0x90C1\n0xB0EB\t0x78EF\n0xB0EC\t0x4E00\n0xB0ED\t0x58F1\n0xB0EE\t0x6EA2\n0xB0EF\t0x9038\n0xB0F0\t0x7A32\n0xB0F1\t0x8328\n0xB0F2\t0x828B\n0xB0F3\t0x9C2F\n0xB0F4\t0x5141\n0xB0F5\t0x5370\n0xB0F6\t0x54BD\n0xB0F7\t0x54E1\n0xB0F8\t0x56E0\n0xB0F9\t0x59FB\n0xB0FA\t0x5F15\n0xB0FB\t0x98F2\n0xB0FC\t0x6DEB\n0xB0FD\t0x80E4\n0xB0FE\t0x852D\n0xB1A1\t0x9662\n0xB1A2\t0x9670\n0xB1A3\t0x96A0\n0xB1A4\t0x97FB\n0xB1A5\t0x540B\n0xB1A6\t0x53F3\n0xB1A7\t0x5B87\n0xB1A8\t0x70CF\n0xB1A9\t0x7FBD\n0xB1AA\t0x8FC2\n0xB1AB\t0x96E8\n0xB1AC\t0x536F\n0xB1AD\t0x9D5C\n0xB1AE\t0x7ABA\n0xB1AF\t0x4E11\n0xB1B0\t0x7893\n0xB1B1\t0x81FC\n0xB1B2\t0x6E26\n0xB1B3\t0x5618\n0xB1B4\t0x5504\n0xB1B5\t0x6B1D\n0xB1B6\t0x851A\n0xB1B7\t0x9C3B\n0xB1B8\t0x59E5\n0xB1B9\t0x53A9\n0xB1BA\t0x6D66\n0xB1BB\t0x74DC\n0xB1BC\t0x958F\n0xB1BD\t0x5642\n0xB1BE\t0x4E91\n0xB1BF\t0x904B\n0xB1C0\t0x96F2\n0xB1C1\t0x834F\n0xB1C2\t0x990C\n0xB1C3\t0x53E1\n0xB1C4\t0x55B6\n0xB1C5\t0x5B30\n0xB1C6\t0x5F71\n0xB1C7\t0x6620\n0xB1C8\t0x66F3\n0xB1C9\t0x6804\n0xB1CA\t0x6C38\n0xB1CB\t0x6CF3\n0xB1CC\t0x6D29\n0xB1CD\t0x745B\n0xB1CE\t0x76C8\n0xB1CF\t0x7A4E\n0xB1D0\t0x9834\n0xB1D1\t0x82F1\n0xB1D2\t0x885B\n0xB1D3\t0x8A60\n0xB1D4\t0x92ED\n0xB1D5\t0x6DB2\n0xB1D6\t0x75AB\n0xB1D7\t0x76CA\n0xB1D8\t0x99C5\n0xB1D9\t0x60A6\n0xB1DA\t0x8B01\n0xB1DB\t0x8D8A\n0xB1DC\t0x95B2\n0xB1DD\t0x698E\n0xB1DE\t0x53AD\n0xB1DF\t0x5186\n0xB1E0\t0x5712\n0xB1E1\t0x5830\n0xB1E2\t0x5944\n0xB1E3\t0x5BB4\n0xB1E4\t0x5EF6\n0xB1E5\t0x6028\n0xB1E6\t0x63A9\n0xB1E7\t0x63F4\n0xB1E8\t0x6CBF\n0xB1E9\t0x6F14\n0xB1EA\t0x708E\n0xB1EB\t0x7114\n0xB1EC\t0x7159\n0xB1ED\t0x71D5\n0xB1EE\t0x733F\n0xB1EF\t0x7E01\n0xB1F0\t0x8276\n0xB1F1\t0x82D1\n0xB1F2\t0x8597\n0xB1F3\t0x9060\n0xB1F4\t0x925B\n0xB1F5\t0x9D1B\n0xB1F6\t0x5869\n0xB1F7\t0x65BC\n0xB1F8\t0x6C5A\n0xB1F9\t0x7525\n0xB1FA\t0x51F9\n0xB1FB\t0x592E\n0xB1FC\t0x5965\n0xB1FD\t0x5F80\n0xB1FE\t0x5FDC\n0xB2A1\t0x62BC\n0xB2A2\t0x65FA\n0xB2A3\t0x6A2A\n0xB2A4\t0x6B27\n0xB2A5\t0x6BB4\n0xB2A6\t0x738B\n0xB2A7\t0x7FC1\n0xB2A8\t0x8956\n0xB2A9\t0x9D2C\n0xB2AA\t0x9D0E\n0xB2AB\t0x9EC4\n0xB2AC\t0x5CA1\n0xB2AD\t0x6C96\n0xB2AE\t0x837B\n0xB2AF\t0x5104\n0xB2B0\t0x5C4B\n0xB2B1\t0x61B6\n0xB2B2\t0x81C6\n0xB2B3\t0x6876\n0xB2B4\t0x7261\n0xB2B5\t0x4E59\n0xB2B6\t0x4FFA\n0xB2B7\t0x5378\n0xB2B8\t0x6069\n0xB2B9\t0x6E29\n0xB2BA\t0x7A4F\n0xB2BB\t0x97F3\n0xB2BC\t0x4E0B\n0xB2BD\t0x5316\n0xB2BE\t0x4EEE\n0xB2BF\t0x4F55\n0xB2C0\t0x4F3D\n0xB2C1\t0x4FA1\n0xB2C2\t0x4F73\n0xB2C3\t0x52A0\n0xB2C4\t0x53EF\n0xB2C5\t0x5609\n0xB2C6\t0x590F\n0xB2C7\t0x5AC1\n0xB2C8\t0x5BB6\n0xB2C9\t0x5BE1\n0xB2CA\t0x79D1\n0xB2CB\t0x6687\n0xB2CC\t0x679C\n0xB2CD\t0x67B6\n0xB2CE\t0x6B4C\n0xB2CF\t0x6CB3\n0xB2D0\t0x706B\n0xB2D1\t0x73C2\n0xB2D2\t0x798D\n0xB2D3\t0x79BE\n0xB2D4\t0x7A3C\n0xB2D5\t0x7B87\n0xB2D6\t0x82B1\n0xB2D7\t0x82DB\n0xB2D8\t0x8304\n0xB2D9\t0x8377\n0xB2DA\t0x83EF\n0xB2DB\t0x83D3\n0xB2DC\t0x8766\n0xB2DD\t0x8AB2\n0xB2DE\t0x5629\n0xB2DF\t0x8CA8\n0xB2E0\t0x8FE6\n0xB2E1\t0x904E\n0xB2E2\t0x971E\n0xB2E3\t0x868A\n0xB2E4\t0x4FC4\n0xB2E5\t0x5CE8\n0xB2E6\t0x6211\n0xB2E7\t0x7259\n0xB2E8\t0x753B\n0xB2E9\t0x81E5\n0xB2EA\t0x82BD\n0xB2EB\t0x86FE\n0xB2EC\t0x8CC0\n0xB2ED\t0x96C5\n0xB2EE\t0x9913\n0xB2EF\t0x99D5\n0xB2F0\t0x4ECB\n0xB2F1\t0x4F1A\n0xB2F2\t0x89E3\n0xB2F3\t0x56DE\n0xB2F4\t0x584A\n0xB2F5\t0x58CA\n0xB2F6\t0x5EFB\n0xB2F7\t0x5FEB\n0xB2F8\t0x602A\n0xB2F9\t0x6094\n0xB2FA\t0x6062\n0xB2FB\t0x61D0\n0xB2FC\t0x6212\n0xB2FD\t0x62D0\n0xB2FE\t0x6539\n0xB3A1\t0x9B41\n0xB3A2\t0x6666\n0xB3A3\t0x68B0\n0xB3A4\t0x6D77\n0xB3A5\t0x7070\n0xB3A6\t0x754C\n0xB3A7\t0x7686\n0xB3A8\t0x7D75\n0xB3A9\t0x82A5\n0xB3AA\t0x87F9\n0xB3AB\t0x958B\n0xB3AC\t0x968E\n0xB3AD\t0x8C9D\n0xB3AE\t0x51F1\n0xB3AF\t0x52BE\n0xB3B0\t0x5916\n0xB3B1\t0x54B3\n0xB3B2\t0x5BB3\n0xB3B3\t0x5D16\n0xB3B4\t0x6168\n0xB3B5\t0x6982\n0xB3B6\t0x6DAF\n0xB3B7\t0x788D\n0xB3B8\t0x84CB\n0xB3B9\t0x8857\n0xB3BA\t0x8A72\n0xB3BB\t0x93A7\n0xB3BC\t0x9AB8\n0xB3BD\t0x6D6C\n0xB3BE\t0x99A8\n0xB3BF\t0x86D9\n0xB3C0\t0x57A3\n0xB3C1\t0x67FF\n0xB3C2\t0x86CE\n0xB3C3\t0x920E\n0xB3C4\t0x5283\n0xB3C5\t0x5687\n0xB3C6\t0x5404\n0xB3C7\t0x5ED3\n0xB3C8\t0x62E1\n0xB3C9\t0x64B9\n0xB3CA\t0x683C\n0xB3CB\t0x6838\n0xB3CC\t0x6BBB\n0xB3CD\t0x7372\n0xB3CE\t0x78BA\n0xB3CF\t0x7A6B\n0xB3D0\t0x899A\n0xB3D1\t0x89D2\n0xB3D2\t0x8D6B\n0xB3D3\t0x8F03\n0xB3D4\t0x90ED\n0xB3D5\t0x95A3\n0xB3D6\t0x9694\n0xB3D7\t0x9769\n0xB3D8\t0x5B66\n0xB3D9\t0x5CB3\n0xB3DA\t0x697D\n0xB3DB\t0x984D\n0xB3DC\t0x984E\n0xB3DD\t0x639B\n0xB3DE\t0x7B20\n0xB3DF\t0x6A2B\n0xB3E0\t0x6A7F\n0xB3E1\t0x68B6\n0xB3E2\t0x9C0D\n0xB3E3\t0x6F5F\n0xB3E4\t0x5272\n0xB3E5\t0x559D\n0xB3E6\t0x6070\n0xB3E7\t0x62EC\n0xB3E8\t0x6D3B\n0xB3E9\t0x6E07\n0xB3EA\t0x6ED1\n0xB3EB\t0x845B\n0xB3EC\t0x8910\n0xB3ED\t0x8F44\n0xB3EE\t0x4E14\n0xB3EF\t0x9C39\n0xB3F0\t0x53F6\n0xB3F1\t0x691B\n0xB3F2\t0x6A3A\n0xB3F3\t0x9784\n0xB3F4\t0x682A\n0xB3F5\t0x515C\n0xB3F6\t0x7AC3\n0xB3F7\t0x84B2\n0xB3F8\t0x91DC\n0xB3F9\t0x938C\n0xB3FA\t0x565B\n0xB3FB\t0x9D28\n0xB3FC\t0x6822\n0xB3FD\t0x8305\n0xB3FE\t0x8431\n0xB4A1\t0x7CA5\n0xB4A2\t0x5208\n0xB4A3\t0x82C5\n0xB4A4\t0x74E6\n0xB4A5\t0x4E7E\n0xB4A6\t0x4F83\n0xB4A7\t0x51A0\n0xB4A8\t0x5BD2\n0xB4A9\t0x520A\n0xB4AA\t0x52D8\n0xB4AB\t0x52E7\n0xB4AC\t0x5DFB\n0xB4AD\t0x559A\n0xB4AE\t0x582A\n0xB4AF\t0x59E6\n0xB4B0\t0x5B8C\n0xB4B1\t0x5B98\n0xB4B2\t0x5BDB\n0xB4B3\t0x5E72\n0xB4B4\t0x5E79\n0xB4B5\t0x60A3\n0xB4B6\t0x611F\n0xB4B7\t0x6163\n0xB4B8\t0x61BE\n0xB4B9\t0x63DB\n0xB4BA\t0x6562\n0xB4BB\t0x67D1\n0xB4BC\t0x6853\n0xB4BD\t0x68FA\n0xB4BE\t0x6B3E\n0xB4BF\t0x6B53\n0xB4C0\t0x6C57\n0xB4C1\t0x6F22\n0xB4C2\t0x6F97\n0xB4C3\t0x6F45\n0xB4C4\t0x74B0\n0xB4C5\t0x7518\n0xB4C6\t0x76E3\n0xB4C7\t0x770B\n0xB4C8\t0x7AFF\n0xB4C9\t0x7BA1\n0xB4CA\t0x7C21\n0xB4CB\t0x7DE9\n0xB4CC\t0x7F36\n0xB4CD\t0x7FF0\n0xB4CE\t0x809D\n0xB4CF\t0x8266\n0xB4D0\t0x839E\n0xB4D1\t0x89B3\n0xB4D2\t0x8ACC\n0xB4D3\t0x8CAB\n0xB4D4\t0x9084\n0xB4D5\t0x9451\n0xB4D6\t0x9593\n0xB4D7\t0x9591\n0xB4D8\t0x95A2\n0xB4D9\t0x9665\n0xB4DA\t0x97D3\n0xB4DB\t0x9928\n0xB4DC\t0x8218\n0xB4DD\t0x4E38\n0xB4DE\t0x542B\n0xB4DF\t0x5CB8\n0xB4E0\t0x5DCC\n0xB4E1\t0x73A9\n0xB4E2\t0x764C\n0xB4E3\t0x773C\n0xB4E4\t0x5CA9\n0xB4E5\t0x7FEB\n0xB4E6\t0x8D0B\n0xB4E7\t0x96C1\n0xB4E8\t0x9811\n0xB4E9\t0x9854\n0xB4EA\t0x9858\n0xB4EB\t0x4F01\n0xB4EC\t0x4F0E\n0xB4ED\t0x5371\n0xB4EE\t0x559C\n0xB4EF\t0x5668\n0xB4F0\t0x57FA\n0xB4F1\t0x5947\n0xB4F2\t0x5B09\n0xB4F3\t0x5BC4\n0xB4F4\t0x5C90\n0xB4F5\t0x5E0C\n0xB4F6\t0x5E7E\n0xB4F7\t0x5FCC\n0xB4F8\t0x63EE\n0xB4F9\t0x673A\n0xB4FA\t0x65D7\n0xB4FB\t0x65E2\n0xB4FC\t0x671F\n0xB4FD\t0x68CB\n0xB4FE\t0x68C4\n0xB5A1\t0x6A5F\n0xB5A2\t0x5E30\n0xB5A3\t0x6BC5\n0xB5A4\t0x6C17\n0xB5A5\t0x6C7D\n0xB5A6\t0x757F\n0xB5A7\t0x7948\n0xB5A8\t0x5B63\n0xB5A9\t0x7A00\n0xB5AA\t0x7D00\n0xB5AB\t0x5FBD\n0xB5AC\t0x898F\n0xB5AD\t0x8A18\n0xB5AE\t0x8CB4\n0xB5AF\t0x8D77\n0xB5B0\t0x8ECC\n0xB5B1\t0x8F1D\n0xB5B2\t0x98E2\n0xB5B3\t0x9A0E\n0xB5B4\t0x9B3C\n0xB5B5\t0x4E80\n0xB5B6\t0x507D\n0xB5B7\t0x5100\n0xB5B8\t0x5993\n0xB5B9\t0x5B9C\n0xB5BA\t0x622F\n0xB5BB\t0x6280\n0xB5BC\t0x64EC\n0xB5BD\t0x6B3A\n0xB5BE\t0x72A0\n0xB5BF\t0x7591\n0xB5C0\t0x7947\n0xB5C1\t0x7FA9\n0xB5C2\t0x87FB\n0xB5C3\t0x8ABC\n0xB5C4\t0x8B70\n0xB5C5\t0x63AC\n0xB5C6\t0x83CA\n0xB5C7\t0x97A0\n0xB5C8\t0x5409\n0xB5C9\t0x5403\n0xB5CA\t0x55AB\n0xB5CB\t0x6854\n0xB5CC\t0x6A58\n0xB5CD\t0x8A70\n0xB5CE\t0x7827\n0xB5CF\t0x6775\n0xB5D0\t0x9ECD\n0xB5D1\t0x5374\n0xB5D2\t0x5BA2\n0xB5D3\t0x811A\n0xB5D4\t0x8650\n0xB5D5\t0x9006\n0xB5D6\t0x4E18\n0xB5D7\t0x4E45\n0xB5D8\t0x4EC7\n0xB5D9\t0x4F11\n0xB5DA\t0x53CA\n0xB5DB\t0x5438\n0xB5DC\t0x5BAE\n0xB5DD\t0x5F13\n0xB5DE\t0x6025\n0xB5DF\t0x6551\n0xB5E0\t0x673D\n0xB5E1\t0x6C42\n0xB5E2\t0x6C72\n0xB5E3\t0x6CE3\n0xB5E4\t0x7078\n0xB5E5\t0x7403\n0xB5E6\t0x7A76\n0xB5E7\t0x7AAE\n0xB5E8\t0x7B08\n0xB5E9\t0x7D1A\n0xB5EA\t0x7CFE\n0xB5EB\t0x7D66\n0xB5EC\t0x65E7\n0xB5ED\t0x725B\n0xB5EE\t0x53BB\n0xB5EF\t0x5C45\n0xB5F0\t0x5DE8\n0xB5F1\t0x62D2\n0xB5F2\t0x62E0\n0xB5F3\t0x6319\n0xB5F4\t0x6E20\n0xB5F5\t0x865A\n0xB5F6\t0x8A31\n0xB5F7\t0x8DDD\n0xB5F8\t0x92F8\n0xB5F9\t0x6F01\n0xB5FA\t0x79A6\n0xB5FB\t0x9B5A\n0xB5FC\t0x4EA8\n0xB5FD\t0x4EAB\n0xB5FE\t0x4EAC\n0xB6A1\t0x4F9B\n0xB6A2\t0x4FA0\n0xB6A3\t0x50D1\n0xB6A4\t0x5147\n0xB6A5\t0x7AF6\n0xB6A6\t0x5171\n0xB6A7\t0x51F6\n0xB6A8\t0x5354\n0xB6A9\t0x5321\n0xB6AA\t0x537F\n0xB6AB\t0x53EB\n0xB6AC\t0x55AC\n0xB6AD\t0x5883\n0xB6AE\t0x5CE1\n0xB6AF\t0x5F37\n0xB6B0\t0x5F4A\n0xB6B1\t0x602F\n0xB6B2\t0x6050\n0xB6B3\t0x606D\n0xB6B4\t0x631F\n0xB6B5\t0x6559\n0xB6B6\t0x6A4B\n0xB6B7\t0x6CC1\n0xB6B8\t0x72C2\n0xB6B9\t0x72ED\n0xB6BA\t0x77EF\n0xB6BB\t0x80F8\n0xB6BC\t0x8105\n0xB6BD\t0x8208\n0xB6BE\t0x854E\n0xB6BF\t0x90F7\n0xB6C0\t0x93E1\n0xB6C1\t0x97FF\n0xB6C2\t0x9957\n0xB6C3\t0x9A5A\n0xB6C4\t0x4EF0\n0xB6C5\t0x51DD\n0xB6C6\t0x5C2D\n0xB6C7\t0x6681\n0xB6C8\t0x696D\n0xB6C9\t0x5C40\n0xB6CA\t0x66F2\n0xB6CB\t0x6975\n0xB6CC\t0x7389\n0xB6CD\t0x6850\n0xB6CE\t0x7C81\n0xB6CF\t0x50C5\n0xB6D0\t0x52E4\n0xB6D1\t0x5747\n0xB6D2\t0x5DFE\n0xB6D3\t0x9326\n0xB6D4\t0x65A4\n0xB6D5\t0x6B23\n0xB6D6\t0x6B3D\n0xB6D7\t0x7434\n0xB6D8\t0x7981\n0xB6D9\t0x79BD\n0xB6DA\t0x7B4B\n0xB6DB\t0x7DCA\n0xB6DC\t0x82B9\n0xB6DD\t0x83CC\n0xB6DE\t0x887F\n0xB6DF\t0x895F\n0xB6E0\t0x8B39\n0xB6E1\t0x8FD1\n0xB6E2\t0x91D1\n0xB6E3\t0x541F\n0xB6E4\t0x9280\n0xB6E5\t0x4E5D\n0xB6E6\t0x5036\n0xB6E7\t0x53E5\n0xB6E8\t0x533A\n0xB6E9\t0x72D7\n0xB6EA\t0x7396\n0xB6EB\t0x77E9\n0xB6EC\t0x82E6\n0xB6ED\t0x8EAF\n0xB6EE\t0x99C6\n0xB6EF\t0x99C8\n0xB6F0\t0x99D2\n0xB6F1\t0x5177\n0xB6F2\t0x611A\n0xB6F3\t0x865E\n0xB6F4\t0x55B0\n0xB6F5\t0x7A7A\n0xB6F6\t0x5076\n0xB6F7\t0x5BD3\n0xB6F8\t0x9047\n0xB6F9\t0x9685\n0xB6FA\t0x4E32\n0xB6FB\t0x6ADB\n0xB6FC\t0x91E7\n0xB6FD\t0x5C51\n0xB6FE\t0x5C48\n0xB7A1\t0x6398\n0xB7A2\t0x7A9F\n0xB7A3\t0x6C93\n0xB7A4\t0x9774\n0xB7A5\t0x8F61\n0xB7A6\t0x7AAA\n0xB7A7\t0x718A\n0xB7A8\t0x9688\n0xB7A9\t0x7C82\n0xB7AA\t0x6817\n0xB7AB\t0x7E70\n0xB7AC\t0x6851\n0xB7AD\t0x936C\n0xB7AE\t0x52F2\n0xB7AF\t0x541B\n0xB7B0\t0x85AB\n0xB7B1\t0x8A13\n0xB7B2\t0x7FA4\n0xB7B3\t0x8ECD\n0xB7B4\t0x90E1\n0xB7B5\t0x5366\n0xB7B6\t0x8888\n0xB7B7\t0x7941\n0xB7B8\t0x4FC2\n0xB7B9\t0x50BE\n0xB7BA\t0x5211\n0xB7BB\t0x5144\n0xB7BC\t0x5553\n0xB7BD\t0x572D\n0xB7BE\t0x73EA\n0xB7BF\t0x578B\n0xB7C0\t0x5951\n0xB7C1\t0x5F62\n0xB7C2\t0x5F84\n0xB7C3\t0x6075\n0xB7C4\t0x6176\n0xB7C5\t0x6167\n0xB7C6\t0x61A9\n0xB7C7\t0x63B2\n0xB7C8\t0x643A\n0xB7C9\t0x656C\n0xB7CA\t0x666F\n0xB7CB\t0x6842\n0xB7CC\t0x6E13\n0xB7CD\t0x7566\n0xB7CE\t0x7A3D\n0xB7CF\t0x7CFB\n0xB7D0\t0x7D4C\n0xB7D1\t0x7D99\n0xB7D2\t0x7E4B\n0xB7D3\t0x7F6B\n0xB7D4\t0x830E\n0xB7D5\t0x834A\n0xB7D6\t0x86CD\n0xB7D7\t0x8A08\n0xB7D8\t0x8A63\n0xB7D9\t0x8B66\n0xB7DA\t0x8EFD\n0xB7DB\t0x981A\n0xB7DC\t0x9D8F\n0xB7DD\t0x82B8\n0xB7DE\t0x8FCE\n0xB7DF\t0x9BE8\n0xB7E0\t0x5287\n0xB7E1\t0x621F\n0xB7E2\t0x6483\n0xB7E3\t0x6FC0\n0xB7E4\t0x9699\n0xB7E5\t0x6841\n0xB7E6\t0x5091\n0xB7E7\t0x6B20\n0xB7E8\t0x6C7A\n0xB7E9\t0x6F54\n0xB7EA\t0x7A74\n0xB7EB\t0x7D50\n0xB7EC\t0x8840\n0xB7ED\t0x8A23\n0xB7EE\t0x6708\n0xB7EF\t0x4EF6\n0xB7F0\t0x5039\n0xB7F1\t0x5026\n0xB7F2\t0x5065\n0xB7F3\t0x517C\n0xB7F4\t0x5238\n0xB7F5\t0x5263\n0xB7F6\t0x55A7\n0xB7F7\t0x570F\n0xB7F8\t0x5805\n0xB7F9\t0x5ACC\n0xB7FA\t0x5EFA\n0xB7FB\t0x61B2\n0xB7FC\t0x61F8\n0xB7FD\t0x62F3\n0xB7FE\t0x6372\n0xB8A1\t0x691C\n0xB8A2\t0x6A29\n0xB8A3\t0x727D\n0xB8A4\t0x72AC\n0xB8A5\t0x732E\n0xB8A6\t0x7814\n0xB8A7\t0x786F\n0xB8A8\t0x7D79\n0xB8A9\t0x770C\n0xB8AA\t0x80A9\n0xB8AB\t0x898B\n0xB8AC\t0x8B19\n0xB8AD\t0x8CE2\n0xB8AE\t0x8ED2\n0xB8AF\t0x9063\n0xB8B0\t0x9375\n0xB8B1\t0x967A\n0xB8B2\t0x9855\n0xB8B3\t0x9A13\n0xB8B4\t0x9E78\n0xB8B5\t0x5143\n0xB8B6\t0x539F\n0xB8B7\t0x53B3\n0xB8B8\t0x5E7B\n0xB8B9\t0x5F26\n0xB8BA\t0x6E1B\n0xB8BB\t0x6E90\n0xB8BC\t0x7384\n0xB8BD\t0x73FE\n0xB8BE\t0x7D43\n0xB8BF\t0x8237\n0xB8C0\t0x8A00\n0xB8C1\t0x8AFA\n0xB8C2\t0x9650\n0xB8C3\t0x4E4E\n0xB8C4\t0x500B\n0xB8C5\t0x53E4\n0xB8C6\t0x547C\n0xB8C7\t0x56FA\n0xB8C8\t0x59D1\n0xB8C9\t0x5B64\n0xB8CA\t0x5DF1\n0xB8CB\t0x5EAB\n0xB8CC\t0x5F27\n0xB8CD\t0x6238\n0xB8CE\t0x6545\n0xB8CF\t0x67AF\n0xB8D0\t0x6E56\n0xB8D1\t0x72D0\n0xB8D2\t0x7CCA\n0xB8D3\t0x88B4\n0xB8D4\t0x80A1\n0xB8D5\t0x80E1\n0xB8D6\t0x83F0\n0xB8D7\t0x864E\n0xB8D8\t0x8A87\n0xB8D9\t0x8DE8\n0xB8DA\t0x9237\n0xB8DB\t0x96C7\n0xB8DC\t0x9867\n0xB8DD\t0x9F13\n0xB8DE\t0x4E94\n0xB8DF\t0x4E92\n0xB8E0\t0x4F0D\n0xB8E1\t0x5348\n0xB8E2\t0x5449\n0xB8E3\t0x543E\n0xB8E4\t0x5A2F\n0xB8E5\t0x5F8C\n0xB8E6\t0x5FA1\n0xB8E7\t0x609F\n0xB8E8\t0x68A7\n0xB8E9\t0x6A8E\n0xB8EA\t0x745A\n0xB8EB\t0x7881\n0xB8EC\t0x8A9E\n0xB8ED\t0x8AA4\n0xB8EE\t0x8B77\n0xB8EF\t0x9190\n0xB8F0\t0x4E5E\n0xB8F1\t0x9BC9\n0xB8F2\t0x4EA4\n0xB8F3\t0x4F7C\n0xB8F4\t0x4FAF\n0xB8F5\t0x5019\n0xB8F6\t0x5016\n0xB8F7\t0x5149\n0xB8F8\t0x516C\n0xB8F9\t0x529F\n0xB8FA\t0x52B9\n0xB8FB\t0x52FE\n0xB8FC\t0x539A\n0xB8FD\t0x53E3\n0xB8FE\t0x5411\n0xB9A1\t0x540E\n0xB9A2\t0x5589\n0xB9A3\t0x5751\n0xB9A4\t0x57A2\n0xB9A5\t0x597D\n0xB9A6\t0x5B54\n0xB9A7\t0x5B5D\n0xB9A8\t0x5B8F\n0xB9A9\t0x5DE5\n0xB9AA\t0x5DE7\n0xB9AB\t0x5DF7\n0xB9AC\t0x5E78\n0xB9AD\t0x5E83\n0xB9AE\t0x5E9A\n0xB9AF\t0x5EB7\n0xB9B0\t0x5F18\n0xB9B1\t0x6052\n0xB9B2\t0x614C\n0xB9B3\t0x6297\n0xB9B4\t0x62D8\n0xB9B5\t0x63A7\n0xB9B6\t0x653B\n0xB9B7\t0x6602\n0xB9B8\t0x6643\n0xB9B9\t0x66F4\n0xB9BA\t0x676D\n0xB9BB\t0x6821\n0xB9BC\t0x6897\n0xB9BD\t0x69CB\n0xB9BE\t0x6C5F\n0xB9BF\t0x6D2A\n0xB9C0\t0x6D69\n0xB9C1\t0x6E2F\n0xB9C2\t0x6E9D\n0xB9C3\t0x7532\n0xB9C4\t0x7687\n0xB9C5\t0x786C\n0xB9C6\t0x7A3F\n0xB9C7\t0x7CE0\n0xB9C8\t0x7D05\n0xB9C9\t0x7D18\n0xB9CA\t0x7D5E\n0xB9CB\t0x7DB1\n0xB9CC\t0x8015\n0xB9CD\t0x8003\n0xB9CE\t0x80AF\n0xB9CF\t0x80B1\n0xB9D0\t0x8154\n0xB9D1\t0x818F\n0xB9D2\t0x822A\n0xB9D3\t0x8352\n0xB9D4\t0x884C\n0xB9D5\t0x8861\n0xB9D6\t0x8B1B\n0xB9D7\t0x8CA2\n0xB9D8\t0x8CFC\n0xB9D9\t0x90CA\n0xB9DA\t0x9175\n0xB9DB\t0x9271\n0xB9DC\t0x783F\n0xB9DD\t0x92FC\n0xB9DE\t0x95A4\n0xB9DF\t0x964D\n0xB9E0\t0x9805\n0xB9E1\t0x9999\n0xB9E2\t0x9AD8\n0xB9E3\t0x9D3B\n0xB9E4\t0x525B\n0xB9E5\t0x52AB\n0xB9E6\t0x53F7\n0xB9E7\t0x5408\n0xB9E8\t0x58D5\n0xB9E9\t0x62F7\n0xB9EA\t0x6FE0\n0xB9EB\t0x8C6A\n0xB9EC\t0x8F5F\n0xB9ED\t0x9EB9\n0xB9EE\t0x514B\n0xB9EF\t0x523B\n0xB9F0\t0x544A\n0xB9F1\t0x56FD\n0xB9F2\t0x7A40\n0xB9F3\t0x9177\n0xB9F4\t0x9D60\n0xB9F5\t0x9ED2\n0xB9F6\t0x7344\n0xB9F7\t0x6F09\n0xB9F8\t0x8170\n0xB9F9\t0x7511\n0xB9FA\t0x5FFD\n0xB9FB\t0x60DA\n0xB9FC\t0x9AA8\n0xB9FD\t0x72DB\n0xB9FE\t0x8FBC\n0xBAA1\t0x6B64\n0xBAA2\t0x9803\n0xBAA3\t0x4ECA\n0xBAA4\t0x56F0\n0xBAA5\t0x5764\n0xBAA6\t0x58BE\n0xBAA7\t0x5A5A\n0xBAA8\t0x6068\n0xBAA9\t0x61C7\n0xBAAA\t0x660F\n0xBAAB\t0x6606\n0xBAAC\t0x6839\n0xBAAD\t0x68B1\n0xBAAE\t0x6DF7\n0xBAAF\t0x75D5\n0xBAB0\t0x7D3A\n0xBAB1\t0x826E\n0xBAB2\t0x9B42\n0xBAB3\t0x4E9B\n0xBAB4\t0x4F50\n0xBAB5\t0x53C9\n0xBAB6\t0x5506\n0xBAB7\t0x5D6F\n0xBAB8\t0x5DE6\n0xBAB9\t0x5DEE\n0xBABA\t0x67FB\n0xBABB\t0x6C99\n0xBABC\t0x7473\n0xBABD\t0x7802\n0xBABE\t0x8A50\n0xBABF\t0x9396\n0xBAC0\t0x88DF\n0xBAC1\t0x5750\n0xBAC2\t0x5EA7\n0xBAC3\t0x632B\n0xBAC4\t0x50B5\n0xBAC5\t0x50AC\n0xBAC6\t0x518D\n0xBAC7\t0x6700\n0xBAC8\t0x54C9\n0xBAC9\t0x585E\n0xBACA\t0x59BB\n0xBACB\t0x5BB0\n0xBACC\t0x5F69\n0xBACD\t0x624D\n0xBACE\t0x63A1\n0xBACF\t0x683D\n0xBAD0\t0x6B73\n0xBAD1\t0x6E08\n0xBAD2\t0x707D\n0xBAD3\t0x91C7\n0xBAD4\t0x7280\n0xBAD5\t0x7815\n0xBAD6\t0x7826\n0xBAD7\t0x796D\n0xBAD8\t0x658E\n0xBAD9\t0x7D30\n0xBADA\t0x83DC\n0xBADB\t0x88C1\n0xBADC\t0x8F09\n0xBADD\t0x969B\n0xBADE\t0x5264\n0xBADF\t0x5728\n0xBAE0\t0x6750\n0xBAE1\t0x7F6A\n0xBAE2\t0x8CA1\n0xBAE3\t0x51B4\n0xBAE4\t0x5742\n0xBAE5\t0x962A\n0xBAE6\t0x583A\n0xBAE7\t0x698A\n0xBAE8\t0x80B4\n0xBAE9\t0x54B2\n0xBAEA\t0x5D0E\n0xBAEB\t0x57FC\n0xBAEC\t0x7895\n0xBAED\t0x9DFA\n0xBAEE\t0x4F5C\n0xBAEF\t0x524A\n0xBAF0\t0x548B\n0xBAF1\t0x643E\n0xBAF2\t0x6628\n0xBAF3\t0x6714\n0xBAF4\t0x67F5\n0xBAF5\t0x7A84\n0xBAF6\t0x7B56\n0xBAF7\t0x7D22\n0xBAF8\t0x932F\n0xBAF9\t0x685C\n0xBAFA\t0x9BAD\n0xBAFB\t0x7B39\n0xBAFC\t0x5319\n0xBAFD\t0x518A\n0xBAFE\t0x5237\n0xBBA1\t0x5BDF\n0xBBA2\t0x62F6\n0xBBA3\t0x64AE\n0xBBA4\t0x64E6\n0xBBA5\t0x672D\n0xBBA6\t0x6BBA\n0xBBA7\t0x85A9\n0xBBA8\t0x96D1\n0xBBA9\t0x7690\n0xBBAA\t0x9BD6\n0xBBAB\t0x634C\n0xBBAC\t0x9306\n0xBBAD\t0x9BAB\n0xBBAE\t0x76BF\n0xBBAF\t0x6652\n0xBBB0\t0x4E09\n0xBBB1\t0x5098\n0xBBB2\t0x53C2\n0xBBB3\t0x5C71\n0xBBB4\t0x60E8\n0xBBB5\t0x6492\n0xBBB6\t0x6563\n0xBBB7\t0x685F\n0xBBB8\t0x71E6\n0xBBB9\t0x73CA\n0xBBBA\t0x7523\n0xBBBB\t0x7B97\n0xBBBC\t0x7E82\n0xBBBD\t0x8695\n0xBBBE\t0x8B83\n0xBBBF\t0x8CDB\n0xBBC0\t0x9178\n0xBBC1\t0x9910\n0xBBC2\t0x65AC\n0xBBC3\t0x66AB\n0xBBC4\t0x6B8B\n0xBBC5\t0x4ED5\n0xBBC6\t0x4ED4\n0xBBC7\t0x4F3A\n0xBBC8\t0x4F7F\n0xBBC9\t0x523A\n0xBBCA\t0x53F8\n0xBBCB\t0x53F2\n0xBBCC\t0x55E3\n0xBBCD\t0x56DB\n0xBBCE\t0x58EB\n0xBBCF\t0x59CB\n0xBBD0\t0x59C9\n0xBBD1\t0x59FF\n0xBBD2\t0x5B50\n0xBBD3\t0x5C4D\n0xBBD4\t0x5E02\n0xBBD5\t0x5E2B\n0xBBD6\t0x5FD7\n0xBBD7\t0x601D\n0xBBD8\t0x6307\n0xBBD9\t0x652F\n0xBBDA\t0x5B5C\n0xBBDB\t0x65AF\n0xBBDC\t0x65BD\n0xBBDD\t0x65E8\n0xBBDE\t0x679D\n0xBBDF\t0x6B62\n0xBBE0\t0x6B7B\n0xBBE1\t0x6C0F\n0xBBE2\t0x7345\n0xBBE3\t0x7949\n0xBBE4\t0x79C1\n0xBBE5\t0x7CF8\n0xBBE6\t0x7D19\n0xBBE7\t0x7D2B\n0xBBE8\t0x80A2\n0xBBE9\t0x8102\n0xBBEA\t0x81F3\n0xBBEB\t0x8996\n0xBBEC\t0x8A5E\n0xBBED\t0x8A69\n0xBBEE\t0x8A66\n0xBBEF\t0x8A8C\n0xBBF0\t0x8AEE\n0xBBF1\t0x8CC7\n0xBBF2\t0x8CDC\n0xBBF3\t0x96CC\n0xBBF4\t0x98FC\n0xBBF5\t0x6B6F\n0xBBF6\t0x4E8B\n0xBBF7\t0x4F3C\n0xBBF8\t0x4F8D\n0xBBF9\t0x5150\n0xBBFA\t0x5B57\n0xBBFB\t0x5BFA\n0xBBFC\t0x6148\n0xBBFD\t0x6301\n0xBBFE\t0x6642\n0xBCA1\t0x6B21\n0xBCA2\t0x6ECB\n0xBCA3\t0x6CBB\n0xBCA4\t0x723E\n0xBCA5\t0x74BD\n0xBCA6\t0x75D4\n0xBCA7\t0x78C1\n0xBCA8\t0x793A\n0xBCA9\t0x800C\n0xBCAA\t0x8033\n0xBCAB\t0x81EA\n0xBCAC\t0x8494\n0xBCAD\t0x8F9E\n0xBCAE\t0x6C50\n0xBCAF\t0x9E7F\n0xBCB0\t0x5F0F\n0xBCB1\t0x8B58\n0xBCB2\t0x9D2B\n0xBCB3\t0x7AFA\n0xBCB4\t0x8EF8\n0xBCB5\t0x5B8D\n0xBCB6\t0x96EB\n0xBCB7\t0x4E03\n0xBCB8\t0x53F1\n0xBCB9\t0x57F7\n0xBCBA\t0x5931\n0xBCBB\t0x5AC9\n0xBCBC\t0x5BA4\n0xBCBD\t0x6089\n0xBCBE\t0x6E7F\n0xBCBF\t0x6F06\n0xBCC0\t0x75BE\n0xBCC1\t0x8CEA\n0xBCC2\t0x5B9F\n0xBCC3\t0x8500\n0xBCC4\t0x7BE0\n0xBCC5\t0x5072\n0xBCC6\t0x67F4\n0xBCC7\t0x829D\n0xBCC8\t0x5C61\n0xBCC9\t0x854A\n0xBCCA\t0x7E1E\n0xBCCB\t0x820E\n0xBCCC\t0x5199\n0xBCCD\t0x5C04\n0xBCCE\t0x6368\n0xBCCF\t0x8D66\n0xBCD0\t0x659C\n0xBCD1\t0x716E\n0xBCD2\t0x793E\n0xBCD3\t0x7D17\n0xBCD4\t0x8005\n0xBCD5\t0x8B1D\n0xBCD6\t0x8ECA\n0xBCD7\t0x906E\n0xBCD8\t0x86C7\n0xBCD9\t0x90AA\n0xBCDA\t0x501F\n0xBCDB\t0x52FA\n0xBCDC\t0x5C3A\n0xBCDD\t0x6753\n0xBCDE\t0x707C\n0xBCDF\t0x7235\n0xBCE0\t0x914C\n0xBCE1\t0x91C8\n0xBCE2\t0x932B\n0xBCE3\t0x82E5\n0xBCE4\t0x5BC2\n0xBCE5\t0x5F31\n0xBCE6\t0x60F9\n0xBCE7\t0x4E3B\n0xBCE8\t0x53D6\n0xBCE9\t0x5B88\n0xBCEA\t0x624B\n0xBCEB\t0x6731\n0xBCEC\t0x6B8A\n0xBCED\t0x72E9\n0xBCEE\t0x73E0\n0xBCEF\t0x7A2E\n0xBCF0\t0x816B\n0xBCF1\t0x8DA3\n0xBCF2\t0x9152\n0xBCF3\t0x9996\n0xBCF4\t0x5112\n0xBCF5\t0x53D7\n0xBCF6\t0x546A\n0xBCF7\t0x5BFF\n0xBCF8\t0x6388\n0xBCF9\t0x6A39\n0xBCFA\t0x7DAC\n0xBCFB\t0x9700\n0xBCFC\t0x56DA\n0xBCFD\t0x53CE\n0xBCFE\t0x5468\n0xBDA1\t0x5B97\n0xBDA2\t0x5C31\n0xBDA3\t0x5DDE\n0xBDA4\t0x4FEE\n0xBDA5\t0x6101\n0xBDA6\t0x62FE\n0xBDA7\t0x6D32\n0xBDA8\t0x79C0\n0xBDA9\t0x79CB\n0xBDAA\t0x7D42\n0xBDAB\t0x7E4D\n0xBDAC\t0x7FD2\n0xBDAD\t0x81ED\n0xBDAE\t0x821F\n0xBDAF\t0x8490\n0xBDB0\t0x8846\n0xBDB1\t0x8972\n0xBDB2\t0x8B90\n0xBDB3\t0x8E74\n0xBDB4\t0x8F2F\n0xBDB5\t0x9031\n0xBDB6\t0x914B\n0xBDB7\t0x916C\n0xBDB8\t0x96C6\n0xBDB9\t0x919C\n0xBDBA\t0x4EC0\n0xBDBB\t0x4F4F\n0xBDBC\t0x5145\n0xBDBD\t0x5341\n0xBDBE\t0x5F93\n0xBDBF\t0x620E\n0xBDC0\t0x67D4\n0xBDC1\t0x6C41\n0xBDC2\t0x6E0B\n0xBDC3\t0x7363\n0xBDC4\t0x7E26\n0xBDC5\t0x91CD\n0xBDC6\t0x9283\n0xBDC7\t0x53D4\n0xBDC8\t0x5919\n0xBDC9\t0x5BBF\n0xBDCA\t0x6DD1\n0xBDCB\t0x795D\n0xBDCC\t0x7E2E\n0xBDCD\t0x7C9B\n0xBDCE\t0x587E\n0xBDCF\t0x719F\n0xBDD0\t0x51FA\n0xBDD1\t0x8853\n0xBDD2\t0x8FF0\n0xBDD3\t0x4FCA\n0xBDD4\t0x5CFB\n0xBDD5\t0x6625\n0xBDD6\t0x77AC\n0xBDD7\t0x7AE3\n0xBDD8\t0x821C\n0xBDD9\t0x99FF\n0xBDDA\t0x51C6\n0xBDDB\t0x5FAA\n0xBDDC\t0x65EC\n0xBDDD\t0x696F\n0xBDDE\t0x6B89\n0xBDDF\t0x6DF3\n0xBDE0\t0x6E96\n0xBDE1\t0x6F64\n0xBDE2\t0x76FE\n0xBDE3\t0x7D14\n0xBDE4\t0x5DE1\n0xBDE5\t0x9075\n0xBDE6\t0x9187\n0xBDE7\t0x9806\n0xBDE8\t0x51E6\n0xBDE9\t0x521D\n0xBDEA\t0x6240\n0xBDEB\t0x6691\n0xBDEC\t0x66D9\n0xBDED\t0x6E1A\n0xBDEE\t0x5EB6\n0xBDEF\t0x7DD2\n0xBDF0\t0x7F72\n0xBDF1\t0x66F8\n0xBDF2\t0x85AF\n0xBDF3\t0x85F7\n0xBDF4\t0x8AF8\n0xBDF5\t0x52A9\n0xBDF6\t0x53D9\n0xBDF7\t0x5973\n0xBDF8\t0x5E8F\n0xBDF9\t0x5F90\n0xBDFA\t0x6055\n0xBDFB\t0x92E4\n0xBDFC\t0x9664\n0xBDFD\t0x50B7\n0xBDFE\t0x511F\n0xBEA1\t0x52DD\n0xBEA2\t0x5320\n0xBEA3\t0x5347\n0xBEA4\t0x53EC\n0xBEA5\t0x54E8\n0xBEA6\t0x5546\n0xBEA7\t0x5531\n0xBEA8\t0x5617\n0xBEA9\t0x5968\n0xBEAA\t0x59BE\n0xBEAB\t0x5A3C\n0xBEAC\t0x5BB5\n0xBEAD\t0x5C06\n0xBEAE\t0x5C0F\n0xBEAF\t0x5C11\n0xBEB0\t0x5C1A\n0xBEB1\t0x5E84\n0xBEB2\t0x5E8A\n0xBEB3\t0x5EE0\n0xBEB4\t0x5F70\n0xBEB5\t0x627F\n0xBEB6\t0x6284\n0xBEB7\t0x62DB\n0xBEB8\t0x638C\n0xBEB9\t0x6377\n0xBEBA\t0x6607\n0xBEBB\t0x660C\n0xBEBC\t0x662D\n0xBEBD\t0x6676\n0xBEBE\t0x677E\n0xBEBF\t0x68A2\n0xBEC0\t0x6A1F\n0xBEC1\t0x6A35\n0xBEC2\t0x6CBC\n0xBEC3\t0x6D88\n0xBEC4\t0x6E09\n0xBEC5\t0x6E58\n0xBEC6\t0x713C\n0xBEC7\t0x7126\n0xBEC8\t0x7167\n0xBEC9\t0x75C7\n0xBECA\t0x7701\n0xBECB\t0x785D\n0xBECC\t0x7901\n0xBECD\t0x7965\n0xBECE\t0x79F0\n0xBECF\t0x7AE0\n0xBED0\t0x7B11\n0xBED1\t0x7CA7\n0xBED2\t0x7D39\n0xBED3\t0x8096\n0xBED4\t0x83D6\n0xBED5\t0x848B\n0xBED6\t0x8549\n0xBED7\t0x885D\n0xBED8\t0x88F3\n0xBED9\t0x8A1F\n0xBEDA\t0x8A3C\n0xBEDB\t0x8A54\n0xBEDC\t0x8A73\n0xBEDD\t0x8C61\n0xBEDE\t0x8CDE\n0xBEDF\t0x91A4\n0xBEE0\t0x9266\n0xBEE1\t0x937E\n0xBEE2\t0x9418\n0xBEE3\t0x969C\n0xBEE4\t0x9798\n0xBEE5\t0x4E0A\n0xBEE6\t0x4E08\n0xBEE7\t0x4E1E\n0xBEE8\t0x4E57\n0xBEE9\t0x5197\n0xBEEA\t0x5270\n0xBEEB\t0x57CE\n0xBEEC\t0x5834\n0xBEED\t0x58CC\n0xBEEE\t0x5B22\n0xBEEF\t0x5E38\n0xBEF0\t0x60C5\n0xBEF1\t0x64FE\n0xBEF2\t0x6761\n0xBEF3\t0x6756\n0xBEF4\t0x6D44\n0xBEF5\t0x72B6\n0xBEF6\t0x7573\n0xBEF7\t0x7A63\n0xBEF8\t0x84B8\n0xBEF9\t0x8B72\n0xBEFA\t0x91B8\n0xBEFB\t0x9320\n0xBEFC\t0x5631\n0xBEFD\t0x57F4\n0xBEFE\t0x98FE\n0xBFA1\t0x62ED\n0xBFA2\t0x690D\n0xBFA3\t0x6B96\n0xBFA4\t0x71ED\n0xBFA5\t0x7E54\n0xBFA6\t0x8077\n0xBFA7\t0x8272\n0xBFA8\t0x89E6\n0xBFA9\t0x98DF\n0xBFAA\t0x8755\n0xBFAB\t0x8FB1\n0xBFAC\t0x5C3B\n0xBFAD\t0x4F38\n0xBFAE\t0x4FE1\n0xBFAF\t0x4FB5\n0xBFB0\t0x5507\n0xBFB1\t0x5A20\n0xBFB2\t0x5BDD\n0xBFB3\t0x5BE9\n0xBFB4\t0x5FC3\n0xBFB5\t0x614E\n0xBFB6\t0x632F\n0xBFB7\t0x65B0\n0xBFB8\t0x664B\n0xBFB9\t0x68EE\n0xBFBA\t0x699B\n0xBFBB\t0x6D78\n0xBFBC\t0x6DF1\n0xBFBD\t0x7533\n0xBFBE\t0x75B9\n0xBFBF\t0x771F\n0xBFC0\t0x795E\n0xBFC1\t0x79E6\n0xBFC2\t0x7D33\n0xBFC3\t0x81E3\n0xBFC4\t0x82AF\n0xBFC5\t0x85AA\n0xBFC6\t0x89AA\n0xBFC7\t0x8A3A\n0xBFC8\t0x8EAB\n0xBFC9\t0x8F9B\n0xBFCA\t0x9032\n0xBFCB\t0x91DD\n0xBFCC\t0x9707\n0xBFCD\t0x4EBA\n0xBFCE\t0x4EC1\n0xBFCF\t0x5203\n0xBFD0\t0x5875\n0xBFD1\t0x58EC\n0xBFD2\t0x5C0B\n0xBFD3\t0x751A\n0xBFD4\t0x5C3D\n0xBFD5\t0x814E\n0xBFD6\t0x8A0A\n0xBFD7\t0x8FC5\n0xBFD8\t0x9663\n0xBFD9\t0x976D\n0xBFDA\t0x7B25\n0xBFDB\t0x8ACF\n0xBFDC\t0x9808\n0xBFDD\t0x9162\n0xBFDE\t0x56F3\n0xBFDF\t0x53A8\n0xBFE0\t0x9017\n0xBFE1\t0x5439\n0xBFE2\t0x5782\n0xBFE3\t0x5E25\n0xBFE4\t0x63A8\n0xBFE5\t0x6C34\n0xBFE6\t0x708A\n0xBFE7\t0x7761\n0xBFE8\t0x7C8B\n0xBFE9\t0x7FE0\n0xBFEA\t0x8870\n0xBFEB\t0x9042\n0xBFEC\t0x9154\n0xBFED\t0x9310\n0xBFEE\t0x9318\n0xBFEF\t0x968F\n0xBFF0\t0x745E\n0xBFF1\t0x9AC4\n0xBFF2\t0x5D07\n0xBFF3\t0x5D69\n0xBFF4\t0x6570\n0xBFF5\t0x67A2\n0xBFF6\t0x8DA8\n0xBFF7\t0x96DB\n0xBFF8\t0x636E\n0xBFF9\t0x6749\n0xBFFA\t0x6919\n0xBFFB\t0x83C5\n0xBFFC\t0x9817\n0xBFFD\t0x96C0\n0xBFFE\t0x88FE\n0xC0A1\t0x6F84\n0xC0A2\t0x647A\n0xC0A3\t0x5BF8\n0xC0A4\t0x4E16\n0xC0A5\t0x702C\n0xC0A6\t0x755D\n0xC0A7\t0x662F\n0xC0A8\t0x51C4\n0xC0A9\t0x5236\n0xC0AA\t0x52E2\n0xC0AB\t0x59D3\n0xC0AC\t0x5F81\n0xC0AD\t0x6027\n0xC0AE\t0x6210\n0xC0AF\t0x653F\n0xC0B0\t0x6574\n0xC0B1\t0x661F\n0xC0B2\t0x6674\n0xC0B3\t0x68F2\n0xC0B4\t0x6816\n0xC0B5\t0x6B63\n0xC0B6\t0x6E05\n0xC0B7\t0x7272\n0xC0B8\t0x751F\n0xC0B9\t0x76DB\n0xC0BA\t0x7CBE\n0xC0BB\t0x8056\n0xC0BC\t0x58F0\n0xC0BD\t0x88FD\n0xC0BE\t0x897F\n0xC0BF\t0x8AA0\n0xC0C0\t0x8A93\n0xC0C1\t0x8ACB\n0xC0C2\t0x901D\n0xC0C3\t0x9192\n0xC0C4\t0x9752\n0xC0C5\t0x9759\n0xC0C6\t0x6589\n0xC0C7\t0x7A0E\n0xC0C8\t0x8106\n0xC0C9\t0x96BB\n0xC0CA\t0x5E2D\n0xC0CB\t0x60DC\n0xC0CC\t0x621A\n0xC0CD\t0x65A5\n0xC0CE\t0x6614\n0xC0CF\t0x6790\n0xC0D0\t0x77F3\n0xC0D1\t0x7A4D\n0xC0D2\t0x7C4D\n0xC0D3\t0x7E3E\n0xC0D4\t0x810A\n0xC0D5\t0x8CAC\n0xC0D6\t0x8D64\n0xC0D7\t0x8DE1\n0xC0D8\t0x8E5F\n0xC0D9\t0x78A9\n0xC0DA\t0x5207\n0xC0DB\t0x62D9\n0xC0DC\t0x63A5\n0xC0DD\t0x6442\n0xC0DE\t0x6298\n0xC0DF\t0x8A2D\n0xC0E0\t0x7A83\n0xC0E1\t0x7BC0\n0xC0E2\t0x8AAC\n0xC0E3\t0x96EA\n0xC0E4\t0x7D76\n0xC0E5\t0x820C\n0xC0E6\t0x8749\n0xC0E7\t0x4ED9\n0xC0E8\t0x5148\n0xC0E9\t0x5343\n0xC0EA\t0x5360\n0xC0EB\t0x5BA3\n0xC0EC\t0x5C02\n0xC0ED\t0x5C16\n0xC0EE\t0x5DDD\n0xC0EF\t0x6226\n0xC0F0\t0x6247\n0xC0F1\t0x64B0\n0xC0F2\t0x6813\n0xC0F3\t0x6834\n0xC0F4\t0x6CC9\n0xC0F5\t0x6D45\n0xC0F6\t0x6D17\n0xC0F7\t0x67D3\n0xC0F8\t0x6F5C\n0xC0F9\t0x714E\n0xC0FA\t0x717D\n0xC0FB\t0x65CB\n0xC0FC\t0x7A7F\n0xC0FD\t0x7BAD\n0xC0FE\t0x7DDA\n0xC1A1\t0x7E4A\n0xC1A2\t0x7FA8\n0xC1A3\t0x817A\n0xC1A4\t0x821B\n0xC1A5\t0x8239\n0xC1A6\t0x85A6\n0xC1A7\t0x8A6E\n0xC1A8\t0x8CCE\n0xC1A9\t0x8DF5\n0xC1AA\t0x9078\n0xC1AB\t0x9077\n0xC1AC\t0x92AD\n0xC1AD\t0x9291\n0xC1AE\t0x9583\n0xC1AF\t0x9BAE\n0xC1B0\t0x524D\n0xC1B1\t0x5584\n0xC1B2\t0x6F38\n0xC1B3\t0x7136\n0xC1B4\t0x5168\n0xC1B5\t0x7985\n0xC1B6\t0x7E55\n0xC1B7\t0x81B3\n0xC1B8\t0x7CCE\n0xC1B9\t0x564C\n0xC1BA\t0x5851\n0xC1BB\t0x5CA8\n0xC1BC\t0x63AA\n0xC1BD\t0x66FE\n0xC1BE\t0x66FD\n0xC1BF\t0x695A\n0xC1C0\t0x72D9\n0xC1C1\t0x758F\n0xC1C2\t0x758E\n0xC1C3\t0x790E\n0xC1C4\t0x7956\n0xC1C5\t0x79DF\n0xC1C6\t0x7C97\n0xC1C7\t0x7D20\n0xC1C8\t0x7D44\n0xC1C9\t0x8607\n0xC1CA\t0x8A34\n0xC1CB\t0x963B\n0xC1CC\t0x9061\n0xC1CD\t0x9F20\n0xC1CE\t0x50E7\n0xC1CF\t0x5275\n0xC1D0\t0x53CC\n0xC1D1\t0x53E2\n0xC1D2\t0x5009\n0xC1D3\t0x55AA\n0xC1D4\t0x58EE\n0xC1D5\t0x594F\n0xC1D6\t0x723D\n0xC1D7\t0x5B8B\n0xC1D8\t0x5C64\n0xC1D9\t0x531D\n0xC1DA\t0x60E3\n0xC1DB\t0x60F3\n0xC1DC\t0x635C\n0xC1DD\t0x6383\n0xC1DE\t0x633F\n0xC1DF\t0x63BB\n0xC1E0\t0x64CD\n0xC1E1\t0x65E9\n0xC1E2\t0x66F9\n0xC1E3\t0x5DE3\n0xC1E4\t0x69CD\n0xC1E5\t0x69FD\n0xC1E6\t0x6F15\n0xC1E7\t0x71E5\n0xC1E8\t0x4E89\n0xC1E9\t0x75E9\n0xC1EA\t0x76F8\n0xC1EB\t0x7A93\n0xC1EC\t0x7CDF\n0xC1ED\t0x7DCF\n0xC1EE\t0x7D9C\n0xC1EF\t0x8061\n0xC1F0\t0x8349\n0xC1F1\t0x8358\n0xC1F2\t0x846C\n0xC1F3\t0x84BC\n0xC1F4\t0x85FB\n0xC1F5\t0x88C5\n0xC1F6\t0x8D70\n0xC1F7\t0x9001\n0xC1F8\t0x906D\n0xC1F9\t0x9397\n0xC1FA\t0x971C\n0xC1FB\t0x9A12\n0xC1FC\t0x50CF\n0xC1FD\t0x5897\n0xC1FE\t0x618E\n0xC2A1\t0x81D3\n0xC2A2\t0x8535\n0xC2A3\t0x8D08\n0xC2A4\t0x9020\n0xC2A5\t0x4FC3\n0xC2A6\t0x5074\n0xC2A7\t0x5247\n0xC2A8\t0x5373\n0xC2A9\t0x606F\n0xC2AA\t0x6349\n0xC2AB\t0x675F\n0xC2AC\t0x6E2C\n0xC2AD\t0x8DB3\n0xC2AE\t0x901F\n0xC2AF\t0x4FD7\n0xC2B0\t0x5C5E\n0xC2B1\t0x8CCA\n0xC2B2\t0x65CF\n0xC2B3\t0x7D9A\n0xC2B4\t0x5352\n0xC2B5\t0x8896\n0xC2B6\t0x5176\n0xC2B7\t0x63C3\n0xC2B8\t0x5B58\n0xC2B9\t0x5B6B\n0xC2BA\t0x5C0A\n0xC2BB\t0x640D\n0xC2BC\t0x6751\n0xC2BD\t0x905C\n0xC2BE\t0x4ED6\n0xC2BF\t0x591A\n0xC2C0\t0x592A\n0xC2C1\t0x6C70\n0xC2C2\t0x8A51\n0xC2C3\t0x553E\n0xC2C4\t0x5815\n0xC2C5\t0x59A5\n0xC2C6\t0x60F0\n0xC2C7\t0x6253\n0xC2C8\t0x67C1\n0xC2C9\t0x8235\n0xC2CA\t0x6955\n0xC2CB\t0x9640\n0xC2CC\t0x99C4\n0xC2CD\t0x9A28\n0xC2CE\t0x4F53\n0xC2CF\t0x5806\n0xC2D0\t0x5BFE\n0xC2D1\t0x8010\n0xC2D2\t0x5CB1\n0xC2D3\t0x5E2F\n0xC2D4\t0x5F85\n0xC2D5\t0x6020\n0xC2D6\t0x614B\n0xC2D7\t0x6234\n0xC2D8\t0x66FF\n0xC2D9\t0x6CF0\n0xC2DA\t0x6EDE\n0xC2DB\t0x80CE\n0xC2DC\t0x817F\n0xC2DD\t0x82D4\n0xC2DE\t0x888B\n0xC2DF\t0x8CB8\n0xC2E0\t0x9000\n0xC2E1\t0x902E\n0xC2E2\t0x968A\n0xC2E3\t0x9EDB\n0xC2E4\t0x9BDB\n0xC2E5\t0x4EE3\n0xC2E6\t0x53F0\n0xC2E7\t0x5927\n0xC2E8\t0x7B2C\n0xC2E9\t0x918D\n0xC2EA\t0x984C\n0xC2EB\t0x9DF9\n0xC2EC\t0x6EDD\n0xC2ED\t0x7027\n0xC2EE\t0x5353\n0xC2EF\t0x5544\n0xC2F0\t0x5B85\n0xC2F1\t0x6258\n0xC2F2\t0x629E\n0xC2F3\t0x62D3\n0xC2F4\t0x6CA2\n0xC2F5\t0x6FEF\n0xC2F6\t0x7422\n0xC2F7\t0x8A17\n0xC2F8\t0x9438\n0xC2F9\t0x6FC1\n0xC2FA\t0x8AFE\n0xC2FB\t0x8338\n0xC2FC\t0x51E7\n0xC2FD\t0x86F8\n0xC2FE\t0x53EA\n0xC3A1\t0x53E9\n0xC3A2\t0x4F46\n0xC3A3\t0x9054\n0xC3A4\t0x8FB0\n0xC3A5\t0x596A\n0xC3A6\t0x8131\n0xC3A7\t0x5DFD\n0xC3A8\t0x7AEA\n0xC3A9\t0x8FBF\n0xC3AA\t0x68DA\n0xC3AB\t0x8C37\n0xC3AC\t0x72F8\n0xC3AD\t0x9C48\n0xC3AE\t0x6A3D\n0xC3AF\t0x8AB0\n0xC3B0\t0x4E39\n0xC3B1\t0x5358\n0xC3B2\t0x5606\n0xC3B3\t0x5766\n0xC3B4\t0x62C5\n0xC3B5\t0x63A2\n0xC3B6\t0x65E6\n0xC3B7\t0x6B4E\n0xC3B8\t0x6DE1\n0xC3B9\t0x6E5B\n0xC3BA\t0x70AD\n0xC3BB\t0x77ED\n0xC3BC\t0x7AEF\n0xC3BD\t0x7BAA\n0xC3BE\t0x7DBB\n0xC3BF\t0x803D\n0xC3C0\t0x80C6\n0xC3C1\t0x86CB\n0xC3C2\t0x8A95\n0xC3C3\t0x935B\n0xC3C4\t0x56E3\n0xC3C5\t0x58C7\n0xC3C6\t0x5F3E\n0xC3C7\t0x65AD\n0xC3C8\t0x6696\n0xC3C9\t0x6A80\n0xC3CA\t0x6BB5\n0xC3CB\t0x7537\n0xC3CC\t0x8AC7\n0xC3CD\t0x5024\n0xC3CE\t0x77E5\n0xC3CF\t0x5730\n0xC3D0\t0x5F1B\n0xC3D1\t0x6065\n0xC3D2\t0x667A\n0xC3D3\t0x6C60\n0xC3D4\t0x75F4\n0xC3D5\t0x7A1A\n0xC3D6\t0x7F6E\n0xC3D7\t0x81F4\n0xC3D8\t0x8718\n0xC3D9\t0x9045\n0xC3DA\t0x99B3\n0xC3DB\t0x7BC9\n0xC3DC\t0x755C\n0xC3DD\t0x7AF9\n0xC3DE\t0x7B51\n0xC3DF\t0x84C4\n0xC3E0\t0x9010\n0xC3E1\t0x79E9\n0xC3E2\t0x7A92\n0xC3E3\t0x8336\n0xC3E4\t0x5AE1\n0xC3E5\t0x7740\n0xC3E6\t0x4E2D\n0xC3E7\t0x4EF2\n0xC3E8\t0x5B99\n0xC3E9\t0x5FE0\n0xC3EA\t0x62BD\n0xC3EB\t0x663C\n0xC3EC\t0x67F1\n0xC3ED\t0x6CE8\n0xC3EE\t0x866B\n0xC3EF\t0x8877\n0xC3F0\t0x8A3B\n0xC3F1\t0x914E\n0xC3F2\t0x92F3\n0xC3F3\t0x99D0\n0xC3F4\t0x6A17\n0xC3F5\t0x7026\n0xC3F6\t0x732A\n0xC3F7\t0x82E7\n0xC3F8\t0x8457\n0xC3F9\t0x8CAF\n0xC3FA\t0x4E01\n0xC3FB\t0x5146\n0xC3FC\t0x51CB\n0xC3FD\t0x558B\n0xC3FE\t0x5BF5\n0xC4A1\t0x5E16\n0xC4A2\t0x5E33\n0xC4A3\t0x5E81\n0xC4A4\t0x5F14\n0xC4A5\t0x5F35\n0xC4A6\t0x5F6B\n0xC4A7\t0x5FB4\n0xC4A8\t0x61F2\n0xC4A9\t0x6311\n0xC4AA\t0x66A2\n0xC4AB\t0x671D\n0xC4AC\t0x6F6E\n0xC4AD\t0x7252\n0xC4AE\t0x753A\n0xC4AF\t0x773A\n0xC4B0\t0x8074\n0xC4B1\t0x8139\n0xC4B2\t0x8178\n0xC4B3\t0x8776\n0xC4B4\t0x8ABF\n0xC4B5\t0x8ADC\n0xC4B6\t0x8D85\n0xC4B7\t0x8DF3\n0xC4B8\t0x929A\n0xC4B9\t0x9577\n0xC4BA\t0x9802\n0xC4BB\t0x9CE5\n0xC4BC\t0x52C5\n0xC4BD\t0x6357\n0xC4BE\t0x76F4\n0xC4BF\t0x6715\n0xC4C0\t0x6C88\n0xC4C1\t0x73CD\n0xC4C2\t0x8CC3\n0xC4C3\t0x93AE\n0xC4C4\t0x9673\n0xC4C5\t0x6D25\n0xC4C6\t0x589C\n0xC4C7\t0x690E\n0xC4C8\t0x69CC\n0xC4C9\t0x8FFD\n0xC4CA\t0x939A\n0xC4CB\t0x75DB\n0xC4CC\t0x901A\n0xC4CD\t0x585A\n0xC4CE\t0x6802\n0xC4CF\t0x63B4\n0xC4D0\t0x69FB\n0xC4D1\t0x4F43\n0xC4D2\t0x6F2C\n0xC4D3\t0x67D8\n0xC4D4\t0x8FBB\n0xC4D5\t0x8526\n0xC4D6\t0x7DB4\n0xC4D7\t0x9354\n0xC4D8\t0x693F\n0xC4D9\t0x6F70\n0xC4DA\t0x576A\n0xC4DB\t0x58F7\n0xC4DC\t0x5B2C\n0xC4DD\t0x7D2C\n0xC4DE\t0x722A\n0xC4DF\t0x540A\n0xC4E0\t0x91E3\n0xC4E1\t0x9DB4\n0xC4E2\t0x4EAD\n0xC4E3\t0x4F4E\n0xC4E4\t0x505C\n0xC4E5\t0x5075\n0xC4E6\t0x5243\n0xC4E7\t0x8C9E\n0xC4E8\t0x5448\n0xC4E9\t0x5824\n0xC4EA\t0x5B9A\n0xC4EB\t0x5E1D\n0xC4EC\t0x5E95\n0xC4ED\t0x5EAD\n0xC4EE\t0x5EF7\n0xC4EF\t0x5F1F\n0xC4F0\t0x608C\n0xC4F1\t0x62B5\n0xC4F2\t0x633A\n0xC4F3\t0x63D0\n0xC4F4\t0x68AF\n0xC4F5\t0x6C40\n0xC4F6\t0x7887\n0xC4F7\t0x798E\n0xC4F8\t0x7A0B\n0xC4F9\t0x7DE0\n0xC4FA\t0x8247\n0xC4FB\t0x8A02\n0xC4FC\t0x8AE6\n0xC4FD\t0x8E44\n0xC4FE\t0x9013\n0xC5A1\t0x90B8\n0xC5A2\t0x912D\n0xC5A3\t0x91D8\n0xC5A4\t0x9F0E\n0xC5A5\t0x6CE5\n0xC5A6\t0x6458\n0xC5A7\t0x64E2\n0xC5A8\t0x6575\n0xC5A9\t0x6EF4\n0xC5AA\t0x7684\n0xC5AB\t0x7B1B\n0xC5AC\t0x9069\n0xC5AD\t0x93D1\n0xC5AE\t0x6EBA\n0xC5AF\t0x54F2\n0xC5B0\t0x5FB9\n0xC5B1\t0x64A4\n0xC5B2\t0x8F4D\n0xC5B3\t0x8FED\n0xC5B4\t0x9244\n0xC5B5\t0x5178\n0xC5B6\t0x586B\n0xC5B7\t0x5929\n0xC5B8\t0x5C55\n0xC5B9\t0x5E97\n0xC5BA\t0x6DFB\n0xC5BB\t0x7E8F\n0xC5BC\t0x751C\n0xC5BD\t0x8CBC\n0xC5BE\t0x8EE2\n0xC5BF\t0x985B\n0xC5C0\t0x70B9\n0xC5C1\t0x4F1D\n0xC5C2\t0x6BBF\n0xC5C3\t0x6FB1\n0xC5C4\t0x7530\n0xC5C5\t0x96FB\n0xC5C6\t0x514E\n0xC5C7\t0x5410\n0xC5C8\t0x5835\n0xC5C9\t0x5857\n0xC5CA\t0x59AC\n0xC5CB\t0x5C60\n0xC5CC\t0x5F92\n0xC5CD\t0x6597\n0xC5CE\t0x675C\n0xC5CF\t0x6E21\n0xC5D0\t0x767B\n0xC5D1\t0x83DF\n0xC5D2\t0x8CED\n0xC5D3\t0x9014\n0xC5D4\t0x90FD\n0xC5D5\t0x934D\n0xC5D6\t0x7825\n0xC5D7\t0x783A\n0xC5D8\t0x52AA\n0xC5D9\t0x5EA6\n0xC5DA\t0x571F\n0xC5DB\t0x5974\n0xC5DC\t0x6012\n0xC5DD\t0x5012\n0xC5DE\t0x515A\n0xC5DF\t0x51AC\n0xC5E0\t0x51CD\n0xC5E1\t0x5200\n0xC5E2\t0x5510\n0xC5E3\t0x5854\n0xC5E4\t0x5858\n0xC5E5\t0x5957\n0xC5E6\t0x5B95\n0xC5E7\t0x5CF6\n0xC5E8\t0x5D8B\n0xC5E9\t0x60BC\n0xC5EA\t0x6295\n0xC5EB\t0x642D\n0xC5EC\t0x6771\n0xC5ED\t0x6843\n0xC5EE\t0x68BC\n0xC5EF\t0x68DF\n0xC5F0\t0x76D7\n0xC5F1\t0x6DD8\n0xC5F2\t0x6E6F\n0xC5F3\t0x6D9B\n0xC5F4\t0x706F\n0xC5F5\t0x71C8\n0xC5F6\t0x5F53\n0xC5F7\t0x75D8\n0xC5F8\t0x7977\n0xC5F9\t0x7B49\n0xC5FA\t0x7B54\n0xC5FB\t0x7B52\n0xC5FC\t0x7CD6\n0xC5FD\t0x7D71\n0xC5FE\t0x5230\n0xC6A1\t0x8463\n0xC6A2\t0x8569\n0xC6A3\t0x85E4\n0xC6A4\t0x8A0E\n0xC6A5\t0x8B04\n0xC6A6\t0x8C46\n0xC6A7\t0x8E0F\n0xC6A8\t0x9003\n0xC6A9\t0x900F\n0xC6AA\t0x9419\n0xC6AB\t0x9676\n0xC6AC\t0x982D\n0xC6AD\t0x9A30\n0xC6AE\t0x95D8\n0xC6AF\t0x50CD\n0xC6B0\t0x52D5\n0xC6B1\t0x540C\n0xC6B2\t0x5802\n0xC6B3\t0x5C0E\n0xC6B4\t0x61A7\n0xC6B5\t0x649E\n0xC6B6\t0x6D1E\n0xC6B7\t0x77B3\n0xC6B8\t0x7AE5\n0xC6B9\t0x80F4\n0xC6BA\t0x8404\n0xC6BB\t0x9053\n0xC6BC\t0x9285\n0xC6BD\t0x5CE0\n0xC6BE\t0x9D07\n0xC6BF\t0x533F\n0xC6C0\t0x5F97\n0xC6C1\t0x5FB3\n0xC6C2\t0x6D9C\n0xC6C3\t0x7279\n0xC6C4\t0x7763\n0xC6C5\t0x79BF\n0xC6C6\t0x7BE4\n0xC6C7\t0x6BD2\n0xC6C8\t0x72EC\n0xC6C9\t0x8AAD\n0xC6CA\t0x6803\n0xC6CB\t0x6A61\n0xC6CC\t0x51F8\n0xC6CD\t0x7A81\n0xC6CE\t0x6934\n0xC6CF\t0x5C4A\n0xC6D0\t0x9CF6\n0xC6D1\t0x82EB\n0xC6D2\t0x5BC5\n0xC6D3\t0x9149\n0xC6D4\t0x701E\n0xC6D5\t0x5678\n0xC6D6\t0x5C6F\n0xC6D7\t0x60C7\n0xC6D8\t0x6566\n0xC6D9\t0x6C8C\n0xC6DA\t0x8C5A\n0xC6DB\t0x9041\n0xC6DC\t0x9813\n0xC6DD\t0x5451\n0xC6DE\t0x66C7\n0xC6DF\t0x920D\n0xC6E0\t0x5948\n0xC6E1\t0x90A3\n0xC6E2\t0x5185\n0xC6E3\t0x4E4D\n0xC6E4\t0x51EA\n0xC6E5\t0x8599\n0xC6E6\t0x8B0E\n0xC6E7\t0x7058\n0xC6E8\t0x637A\n0xC6E9\t0x934B\n0xC6EA\t0x6962\n0xC6EB\t0x99B4\n0xC6EC\t0x7E04\n0xC6ED\t0x7577\n0xC6EE\t0x5357\n0xC6EF\t0x6960\n0xC6F0\t0x8EDF\n0xC6F1\t0x96E3\n0xC6F2\t0x6C5D\n0xC6F3\t0x4E8C\n0xC6F4\t0x5C3C\n0xC6F5\t0x5F10\n0xC6F6\t0x8FE9\n0xC6F7\t0x5302\n0xC6F8\t0x8CD1\n0xC6F9\t0x8089\n0xC6FA\t0x8679\n0xC6FB\t0x5EFF\n0xC6FC\t0x65E5\n0xC6FD\t0x4E73\n0xC6FE\t0x5165\n0xC7A1\t0x5982\n0xC7A2\t0x5C3F\n0xC7A3\t0x97EE\n0xC7A4\t0x4EFB\n0xC7A5\t0x598A\n0xC7A6\t0x5FCD\n0xC7A7\t0x8A8D\n0xC7A8\t0x6FE1\n0xC7A9\t0x79B0\n0xC7AA\t0x7962\n0xC7AB\t0x5BE7\n0xC7AC\t0x8471\n0xC7AD\t0x732B\n0xC7AE\t0x71B1\n0xC7AF\t0x5E74\n0xC7B0\t0x5FF5\n0xC7B1\t0x637B\n0xC7B2\t0x649A\n0xC7B3\t0x71C3\n0xC7B4\t0x7C98\n0xC7B5\t0x4E43\n0xC7B6\t0x5EFC\n0xC7B7\t0x4E4B\n0xC7B8\t0x57DC\n0xC7B9\t0x56A2\n0xC7BA\t0x60A9\n0xC7BB\t0x6FC3\n0xC7BC\t0x7D0D\n0xC7BD\t0x80FD\n0xC7BE\t0x8133\n0xC7BF\t0x81BF\n0xC7C0\t0x8FB2\n0xC7C1\t0x8997\n0xC7C2\t0x86A4\n0xC7C3\t0x5DF4\n0xC7C4\t0x628A\n0xC7C5\t0x64AD\n0xC7C6\t0x8987\n0xC7C7\t0x6777\n0xC7C8\t0x6CE2\n0xC7C9\t0x6D3E\n0xC7CA\t0x7436\n0xC7CB\t0x7834\n0xC7CC\t0x5A46\n0xC7CD\t0x7F75\n0xC7CE\t0x82AD\n0xC7CF\t0x99AC\n0xC7D0\t0x4FF3\n0xC7D1\t0x5EC3\n0xC7D2\t0x62DD\n0xC7D3\t0x6392\n0xC7D4\t0x6557\n0xC7D5\t0x676F\n0xC7D6\t0x76C3\n0xC7D7\t0x724C\n0xC7D8\t0x80CC\n0xC7D9\t0x80BA\n0xC7DA\t0x8F29\n0xC7DB\t0x914D\n0xC7DC\t0x500D\n0xC7DD\t0x57F9\n0xC7DE\t0x5A92\n0xC7DF\t0x6885\n0xC7E0\t0x6973\n0xC7E1\t0x7164\n0xC7E2\t0x72FD\n0xC7E3\t0x8CB7\n0xC7E4\t0x58F2\n0xC7E5\t0x8CE0\n0xC7E6\t0x966A\n0xC7E7\t0x9019\n0xC7E8\t0x877F\n0xC7E9\t0x79E4\n0xC7EA\t0x77E7\n0xC7EB\t0x8429\n0xC7EC\t0x4F2F\n0xC7ED\t0x5265\n0xC7EE\t0x535A\n0xC7EF\t0x62CD\n0xC7F0\t0x67CF\n0xC7F1\t0x6CCA\n0xC7F2\t0x767D\n0xC7F3\t0x7B94\n0xC7F4\t0x7C95\n0xC7F5\t0x8236\n0xC7F6\t0x8584\n0xC7F7\t0x8FEB\n0xC7F8\t0x66DD\n0xC7F9\t0x6F20\n0xC7FA\t0x7206\n0xC7FB\t0x7E1B\n0xC7FC\t0x83AB\n0xC7FD\t0x99C1\n0xC7FE\t0x9EA6\n0xC8A1\t0x51FD\n0xC8A2\t0x7BB1\n0xC8A3\t0x7872\n0xC8A4\t0x7BB8\n0xC8A5\t0x8087\n0xC8A6\t0x7B48\n0xC8A7\t0x6AE8\n0xC8A8\t0x5E61\n0xC8A9\t0x808C\n0xC8AA\t0x7551\n0xC8AB\t0x7560\n0xC8AC\t0x516B\n0xC8AD\t0x9262\n0xC8AE\t0x6E8C\n0xC8AF\t0x767A\n0xC8B0\t0x9197\n0xC8B1\t0x9AEA\n0xC8B2\t0x4F10\n0xC8B3\t0x7F70\n0xC8B4\t0x629C\n0xC8B5\t0x7B4F\n0xC8B6\t0x95A5\n0xC8B7\t0x9CE9\n0xC8B8\t0x567A\n0xC8B9\t0x5859\n0xC8BA\t0x86E4\n0xC8BB\t0x96BC\n0xC8BC\t0x4F34\n0xC8BD\t0x5224\n0xC8BE\t0x534A\n0xC8BF\t0x53CD\n0xC8C0\t0x53DB\n0xC8C1\t0x5E06\n0xC8C2\t0x642C\n0xC8C3\t0x6591\n0xC8C4\t0x677F\n0xC8C5\t0x6C3E\n0xC8C6\t0x6C4E\n0xC8C7\t0x7248\n0xC8C8\t0x72AF\n0xC8C9\t0x73ED\n0xC8CA\t0x7554\n0xC8CB\t0x7E41\n0xC8CC\t0x822C\n0xC8CD\t0x85E9\n0xC8CE\t0x8CA9\n0xC8CF\t0x7BC4\n0xC8D0\t0x91C6\n0xC8D1\t0x7169\n0xC8D2\t0x9812\n0xC8D3\t0x98EF\n0xC8D4\t0x633D\n0xC8D5\t0x6669\n0xC8D6\t0x756A\n0xC8D7\t0x76E4\n0xC8D8\t0x78D0\n0xC8D9\t0x8543\n0xC8DA\t0x86EE\n0xC8DB\t0x532A\n0xC8DC\t0x5351\n0xC8DD\t0x5426\n0xC8DE\t0x5983\n0xC8DF\t0x5E87\n0xC8E0\t0x5F7C\n0xC8E1\t0x60B2\n0xC8E2\t0x6249\n0xC8E3\t0x6279\n0xC8E4\t0x62AB\n0xC8E5\t0x6590\n0xC8E6\t0x6BD4\n0xC8E7\t0x6CCC\n0xC8E8\t0x75B2\n0xC8E9\t0x76AE\n0xC8EA\t0x7891\n0xC8EB\t0x79D8\n0xC8EC\t0x7DCB\n0xC8ED\t0x7F77\n0xC8EE\t0x80A5\n0xC8EF\t0x88AB\n0xC8F0\t0x8AB9\n0xC8F1\t0x8CBB\n0xC8F2\t0x907F\n0xC8F3\t0x975E\n0xC8F4\t0x98DB\n0xC8F5\t0x6A0B\n0xC8F6\t0x7C38\n0xC8F7\t0x5099\n0xC8F8\t0x5C3E\n0xC8F9\t0x5FAE\n0xC8FA\t0x6787\n0xC8FB\t0x6BD8\n0xC8FC\t0x7435\n0xC8FD\t0x7709\n0xC8FE\t0x7F8E\n0xC9A1\t0x9F3B\n0xC9A2\t0x67CA\n0xC9A3\t0x7A17\n0xC9A4\t0x5339\n0xC9A5\t0x758B\n0xC9A6\t0x9AED\n0xC9A7\t0x5F66\n0xC9A8\t0x819D\n0xC9A9\t0x83F1\n0xC9AA\t0x8098\n0xC9AB\t0x5F3C\n0xC9AC\t0x5FC5\n0xC9AD\t0x7562\n0xC9AE\t0x7B46\n0xC9AF\t0x903C\n0xC9B0\t0x6867\n0xC9B1\t0x59EB\n0xC9B2\t0x5A9B\n0xC9B3\t0x7D10\n0xC9B4\t0x767E\n0xC9B5\t0x8B2C\n0xC9B6\t0x4FF5\n0xC9B7\t0x5F6A\n0xC9B8\t0x6A19\n0xC9B9\t0x6C37\n0xC9BA\t0x6F02\n0xC9BB\t0x74E2\n0xC9BC\t0x7968\n0xC9BD\t0x8868\n0xC9BE\t0x8A55\n0xC9BF\t0x8C79\n0xC9C0\t0x5EDF\n0xC9C1\t0x63CF\n0xC9C2\t0x75C5\n0xC9C3\t0x79D2\n0xC9C4\t0x82D7\n0xC9C5\t0x9328\n0xC9C6\t0x92F2\n0xC9C7\t0x849C\n0xC9C8\t0x86ED\n0xC9C9\t0x9C2D\n0xC9CA\t0x54C1\n0xC9CB\t0x5F6C\n0xC9CC\t0x658C\n0xC9CD\t0x6D5C\n0xC9CE\t0x7015\n0xC9CF\t0x8CA7\n0xC9D0\t0x8CD3\n0xC9D1\t0x983B\n0xC9D2\t0x654F\n0xC9D3\t0x74F6\n0xC9D4\t0x4E0D\n0xC9D5\t0x4ED8\n0xC9D6\t0x57E0\n0xC9D7\t0x592B\n0xC9D8\t0x5A66\n0xC9D9\t0x5BCC\n0xC9DA\t0x51A8\n0xC9DB\t0x5E03\n0xC9DC\t0x5E9C\n0xC9DD\t0x6016\n0xC9DE\t0x6276\n0xC9DF\t0x6577\n0xC9E0\t0x65A7\n0xC9E1\t0x666E\n0xC9E2\t0x6D6E\n0xC9E3\t0x7236\n0xC9E4\t0x7B26\n0xC9E5\t0x8150\n0xC9E6\t0x819A\n0xC9E7\t0x8299\n0xC9E8\t0x8B5C\n0xC9E9\t0x8CA0\n0xC9EA\t0x8CE6\n0xC9EB\t0x8D74\n0xC9EC\t0x961C\n0xC9ED\t0x9644\n0xC9EE\t0x4FAE\n0xC9EF\t0x64AB\n0xC9F0\t0x6B66\n0xC9F1\t0x821E\n0xC9F2\t0x8461\n0xC9F3\t0x856A\n0xC9F4\t0x90E8\n0xC9F5\t0x5C01\n0xC9F6\t0x6953\n0xC9F7\t0x98A8\n0xC9F8\t0x847A\n0xC9F9\t0x8557\n0xC9FA\t0x4F0F\n0xC9FB\t0x526F\n0xC9FC\t0x5FA9\n0xC9FD\t0x5E45\n0xC9FE\t0x670D\n0xCAA1\t0x798F\n0xCAA2\t0x8179\n0xCAA3\t0x8907\n0xCAA4\t0x8986\n0xCAA5\t0x6DF5\n0xCAA6\t0x5F17\n0xCAA7\t0x6255\n0xCAA8\t0x6CB8\n0xCAA9\t0x4ECF\n0xCAAA\t0x7269\n0xCAAB\t0x9B92\n0xCAAC\t0x5206\n0xCAAD\t0x543B\n0xCAAE\t0x5674\n0xCAAF\t0x58B3\n0xCAB0\t0x61A4\n0xCAB1\t0x626E\n0xCAB2\t0x711A\n0xCAB3\t0x596E\n0xCAB4\t0x7C89\n0xCAB5\t0x7CDE\n0xCAB6\t0x7D1B\n0xCAB7\t0x96F0\n0xCAB8\t0x6587\n0xCAB9\t0x805E\n0xCABA\t0x4E19\n0xCABB\t0x4F75\n0xCABC\t0x5175\n0xCABD\t0x5840\n0xCABE\t0x5E63\n0xCABF\t0x5E73\n0xCAC0\t0x5F0A\n0xCAC1\t0x67C4\n0xCAC2\t0x4E26\n0xCAC3\t0x853D\n0xCAC4\t0x9589\n0xCAC5\t0x965B\n0xCAC6\t0x7C73\n0xCAC7\t0x9801\n0xCAC8\t0x50FB\n0xCAC9\t0x58C1\n0xCACA\t0x7656\n0xCACB\t0x78A7\n0xCACC\t0x5225\n0xCACD\t0x77A5\n0xCACE\t0x8511\n0xCACF\t0x7B86\n0xCAD0\t0x504F\n0xCAD1\t0x5909\n0xCAD2\t0x7247\n0xCAD3\t0x7BC7\n0xCAD4\t0x7DE8\n0xCAD5\t0x8FBA\n0xCAD6\t0x8FD4\n0xCAD7\t0x904D\n0xCAD8\t0x4FBF\n0xCAD9\t0x52C9\n0xCADA\t0x5A29\n0xCADB\t0x5F01\n0xCADC\t0x97AD\n0xCADD\t0x4FDD\n0xCADE\t0x8217\n0xCADF\t0x92EA\n0xCAE0\t0x5703\n0xCAE1\t0x6355\n0xCAE2\t0x6B69\n0xCAE3\t0x752B\n0xCAE4\t0x88DC\n0xCAE5\t0x8F14\n0xCAE6\t0x7A42\n0xCAE7\t0x52DF\n0xCAE8\t0x5893\n0xCAE9\t0x6155\n0xCAEA\t0x620A\n0xCAEB\t0x66AE\n0xCAEC\t0x6BCD\n0xCAED\t0x7C3F\n0xCAEE\t0x83E9\n0xCAEF\t0x5023\n0xCAF0\t0x4FF8\n0xCAF1\t0x5305\n0xCAF2\t0x5446\n0xCAF3\t0x5831\n0xCAF4\t0x5949\n0xCAF5\t0x5B9D\n0xCAF6\t0x5CF0\n0xCAF7\t0x5CEF\n0xCAF8\t0x5D29\n0xCAF9\t0x5E96\n0xCAFA\t0x62B1\n0xCAFB\t0x6367\n0xCAFC\t0x653E\n0xCAFD\t0x65B9\n0xCAFE\t0x670B\n0xCBA1\t0x6CD5\n0xCBA2\t0x6CE1\n0xCBA3\t0x70F9\n0xCBA4\t0x7832\n0xCBA5\t0x7E2B\n0xCBA6\t0x80DE\n0xCBA7\t0x82B3\n0xCBA8\t0x840C\n0xCBA9\t0x84EC\n0xCBAA\t0x8702\n0xCBAB\t0x8912\n0xCBAC\t0x8A2A\n0xCBAD\t0x8C4A\n0xCBAE\t0x90A6\n0xCBAF\t0x92D2\n0xCBB0\t0x98FD\n0xCBB1\t0x9CF3\n0xCBB2\t0x9D6C\n0xCBB3\t0x4E4F\n0xCBB4\t0x4EA1\n0xCBB5\t0x508D\n0xCBB6\t0x5256\n0xCBB7\t0x574A\n0xCBB8\t0x59A8\n0xCBB9\t0x5E3D\n0xCBBA\t0x5FD8\n0xCBBB\t0x5FD9\n0xCBBC\t0x623F\n0xCBBD\t0x66B4\n0xCBBE\t0x671B\n0xCBBF\t0x67D0\n0xCBC0\t0x68D2\n0xCBC1\t0x5192\n0xCBC2\t0x7D21\n0xCBC3\t0x80AA\n0xCBC4\t0x81A8\n0xCBC5\t0x8B00\n0xCBC6\t0x8C8C\n0xCBC7\t0x8CBF\n0xCBC8\t0x927E\n0xCBC9\t0x9632\n0xCBCA\t0x5420\n0xCBCB\t0x982C\n0xCBCC\t0x5317\n0xCBCD\t0x50D5\n0xCBCE\t0x535C\n0xCBCF\t0x58A8\n0xCBD0\t0x64B2\n0xCBD1\t0x6734\n0xCBD2\t0x7267\n0xCBD3\t0x7766\n0xCBD4\t0x7A46\n0xCBD5\t0x91E6\n0xCBD6\t0x52C3\n0xCBD7\t0x6CA1\n0xCBD8\t0x6B86\n0xCBD9\t0x5800\n0xCBDA\t0x5E4C\n0xCBDB\t0x5954\n0xCBDC\t0x672C\n0xCBDD\t0x7FFB\n0xCBDE\t0x51E1\n0xCBDF\t0x76C6\n0xCBE0\t0x6469\n0xCBE1\t0x78E8\n0xCBE2\t0x9B54\n0xCBE3\t0x9EBB\n0xCBE4\t0x57CB\n0xCBE5\t0x59B9\n0xCBE6\t0x6627\n0xCBE7\t0x679A\n0xCBE8\t0x6BCE\n0xCBE9\t0x54E9\n0xCBEA\t0x69D9\n0xCBEB\t0x5E55\n0xCBEC\t0x819C\n0xCBED\t0x6795\n0xCBEE\t0x9BAA\n0xCBEF\t0x67FE\n0xCBF0\t0x9C52\n0xCBF1\t0x685D\n0xCBF2\t0x4EA6\n0xCBF3\t0x4FE3\n0xCBF4\t0x53C8\n0xCBF5\t0x62B9\n0xCBF6\t0x672B\n0xCBF7\t0x6CAB\n0xCBF8\t0x8FC4\n0xCBF9\t0x4FAD\n0xCBFA\t0x7E6D\n0xCBFB\t0x9EBF\n0xCBFC\t0x4E07\n0xCBFD\t0x6162\n0xCBFE\t0x6E80\n0xCCA1\t0x6F2B\n0xCCA2\t0x8513\n0xCCA3\t0x5473\n0xCCA4\t0x672A\n0xCCA5\t0x9B45\n0xCCA6\t0x5DF3\n0xCCA7\t0x7B95\n0xCCA8\t0x5CAC\n0xCCA9\t0x5BC6\n0xCCAA\t0x871C\n0xCCAB\t0x6E4A\n0xCCAC\t0x84D1\n0xCCAD\t0x7A14\n0xCCAE\t0x8108\n0xCCAF\t0x5999\n0xCCB0\t0x7C8D\n0xCCB1\t0x6C11\n0xCCB2\t0x7720\n0xCCB3\t0x52D9\n0xCCB4\t0x5922\n0xCCB5\t0x7121\n0xCCB6\t0x725F\n0xCCB7\t0x77DB\n0xCCB8\t0x9727\n0xCCB9\t0x9D61\n0xCCBA\t0x690B\n0xCCBB\t0x5A7F\n0xCCBC\t0x5A18\n0xCCBD\t0x51A5\n0xCCBE\t0x540D\n0xCCBF\t0x547D\n0xCCC0\t0x660E\n0xCCC1\t0x76DF\n0xCCC2\t0x8FF7\n0xCCC3\t0x9298\n0xCCC4\t0x9CF4\n0xCCC5\t0x59EA\n0xCCC6\t0x725D\n0xCCC7\t0x6EC5\n0xCCC8\t0x514D\n0xCCC9\t0x68C9\n0xCCCA\t0x7DBF\n0xCCCB\t0x7DEC\n0xCCCC\t0x9762\n0xCCCD\t0x9EBA\n0xCCCE\t0x6478\n0xCCCF\t0x6A21\n0xCCD0\t0x8302\n0xCCD1\t0x5984\n0xCCD2\t0x5B5F\n0xCCD3\t0x6BDB\n0xCCD4\t0x731B\n0xCCD5\t0x76F2\n0xCCD6\t0x7DB2\n0xCCD7\t0x8017\n0xCCD8\t0x8499\n0xCCD9\t0x5132\n0xCCDA\t0x6728\n0xCCDB\t0x9ED9\n0xCCDC\t0x76EE\n0xCCDD\t0x6762\n0xCCDE\t0x52FF\n0xCCDF\t0x9905\n0xCCE0\t0x5C24\n0xCCE1\t0x623B\n0xCCE2\t0x7C7E\n0xCCE3\t0x8CB0\n0xCCE4\t0x554F\n0xCCE5\t0x60B6\n0xCCE6\t0x7D0B\n0xCCE7\t0x9580\n0xCCE8\t0x5301\n0xCCE9\t0x4E5F\n0xCCEA\t0x51B6\n0xCCEB\t0x591C\n0xCCEC\t0x723A\n0xCCED\t0x8036\n0xCCEE\t0x91CE\n0xCCEF\t0x5F25\n0xCCF0\t0x77E2\n0xCCF1\t0x5384\n0xCCF2\t0x5F79\n0xCCF3\t0x7D04\n0xCCF4\t0x85AC\n0xCCF5\t0x8A33\n0xCCF6\t0x8E8D\n0xCCF7\t0x9756\n0xCCF8\t0x67F3\n0xCCF9\t0x85AE\n0xCCFA\t0x9453\n0xCCFB\t0x6109\n0xCCFC\t0x6108\n0xCCFD\t0x6CB9\n0xCCFE\t0x7652\n0xCDA1\t0x8AED\n0xCDA2\t0x8F38\n0xCDA3\t0x552F\n0xCDA4\t0x4F51\n0xCDA5\t0x512A\n0xCDA6\t0x52C7\n0xCDA7\t0x53CB\n0xCDA8\t0x5BA5\n0xCDA9\t0x5E7D\n0xCDAA\t0x60A0\n0xCDAB\t0x6182\n0xCDAC\t0x63D6\n0xCDAD\t0x6709\n0xCDAE\t0x67DA\n0xCDAF\t0x6E67\n0xCDB0\t0x6D8C\n0xCDB1\t0x7336\n0xCDB2\t0x7337\n0xCDB3\t0x7531\n0xCDB4\t0x7950\n0xCDB5\t0x88D5\n0xCDB6\t0x8A98\n0xCDB7\t0x904A\n0xCDB8\t0x9091\n0xCDB9\t0x90F5\n0xCDBA\t0x96C4\n0xCDBB\t0x878D\n0xCDBC\t0x5915\n0xCDBD\t0x4E88\n0xCDBE\t0x4F59\n0xCDBF\t0x4E0E\n0xCDC0\t0x8A89\n0xCDC1\t0x8F3F\n0xCDC2\t0x9810\n0xCDC3\t0x50AD\n0xCDC4\t0x5E7C\n0xCDC5\t0x5996\n0xCDC6\t0x5BB9\n0xCDC7\t0x5EB8\n0xCDC8\t0x63DA\n0xCDC9\t0x63FA\n0xCDCA\t0x64C1\n0xCDCB\t0x66DC\n0xCDCC\t0x694A\n0xCDCD\t0x69D8\n0xCDCE\t0x6D0B\n0xCDCF\t0x6EB6\n0xCDD0\t0x7194\n0xCDD1\t0x7528\n0xCDD2\t0x7AAF\n0xCDD3\t0x7F8A\n0xCDD4\t0x8000\n0xCDD5\t0x8449\n0xCDD6\t0x84C9\n0xCDD7\t0x8981\n0xCDD8\t0x8B21\n0xCDD9\t0x8E0A\n0xCDDA\t0x9065\n0xCDDB\t0x967D\n0xCDDC\t0x990A\n0xCDDD\t0x617E\n0xCDDE\t0x6291\n0xCDDF\t0x6B32\n0xCDE0\t0x6C83\n0xCDE1\t0x6D74\n0xCDE2\t0x7FCC\n0xCDE3\t0x7FFC\n0xCDE4\t0x6DC0\n0xCDE5\t0x7F85\n0xCDE6\t0x87BA\n0xCDE7\t0x88F8\n0xCDE8\t0x6765\n0xCDE9\t0x83B1\n0xCDEA\t0x983C\n0xCDEB\t0x96F7\n0xCDEC\t0x6D1B\n0xCDED\t0x7D61\n0xCDEE\t0x843D\n0xCDEF\t0x916A\n0xCDF0\t0x4E71\n0xCDF1\t0x5375\n0xCDF2\t0x5D50\n0xCDF3\t0x6B04\n0xCDF4\t0x6FEB\n0xCDF5\t0x85CD\n0xCDF6\t0x862D\n0xCDF7\t0x89A7\n0xCDF8\t0x5229\n0xCDF9\t0x540F\n0xCDFA\t0x5C65\n0xCDFB\t0x674E\n0xCDFC\t0x68A8\n0xCDFD\t0x7406\n0xCDFE\t0x7483\n0xCEA1\t0x75E2\n0xCEA2\t0x88CF\n0xCEA3\t0x88E1\n0xCEA4\t0x91CC\n0xCEA5\t0x96E2\n0xCEA6\t0x9678\n0xCEA7\t0x5F8B\n0xCEA8\t0x7387\n0xCEA9\t0x7ACB\n0xCEAA\t0x844E\n0xCEAB\t0x63A0\n0xCEAC\t0x7565\n0xCEAD\t0x5289\n0xCEAE\t0x6D41\n0xCEAF\t0x6E9C\n0xCEB0\t0x7409\n0xCEB1\t0x7559\n0xCEB2\t0x786B\n0xCEB3\t0x7C92\n0xCEB4\t0x9686\n0xCEB5\t0x7ADC\n0xCEB6\t0x9F8D\n0xCEB7\t0x4FB6\n0xCEB8\t0x616E\n0xCEB9\t0x65C5\n0xCEBA\t0x865C\n0xCEBB\t0x4E86\n0xCEBC\t0x4EAE\n0xCEBD\t0x50DA\n0xCEBE\t0x4E21\n0xCEBF\t0x51CC\n0xCEC0\t0x5BEE\n0xCEC1\t0x6599\n0xCEC2\t0x6881\n0xCEC3\t0x6DBC\n0xCEC4\t0x731F\n0xCEC5\t0x7642\n0xCEC6\t0x77AD\n0xCEC7\t0x7A1C\n0xCEC8\t0x7CE7\n0xCEC9\t0x826F\n0xCECA\t0x8AD2\n0xCECB\t0x907C\n0xCECC\t0x91CF\n0xCECD\t0x9675\n0xCECE\t0x9818\n0xCECF\t0x529B\n0xCED0\t0x7DD1\n0xCED1\t0x502B\n0xCED2\t0x5398\n0xCED3\t0x6797\n0xCED4\t0x6DCB\n0xCED5\t0x71D0\n0xCED6\t0x7433\n0xCED7\t0x81E8\n0xCED8\t0x8F2A\n0xCED9\t0x96A3\n0xCEDA\t0x9C57\n0xCEDB\t0x9E9F\n0xCEDC\t0x7460\n0xCEDD\t0x5841\n0xCEDE\t0x6D99\n0xCEDF\t0x7D2F\n0xCEE0\t0x985E\n0xCEE1\t0x4EE4\n0xCEE2\t0x4F36\n0xCEE3\t0x4F8B\n0xCEE4\t0x51B7\n0xCEE5\t0x52B1\n0xCEE6\t0x5DBA\n0xCEE7\t0x601C\n0xCEE8\t0x73B2\n0xCEE9\t0x793C\n0xCEEA\t0x82D3\n0xCEEB\t0x9234\n0xCEEC\t0x96B7\n0xCEED\t0x96F6\n0xCEEE\t0x970A\n0xCEEF\t0x9E97\n0xCEF0\t0x9F62\n0xCEF1\t0x66A6\n0xCEF2\t0x6B74\n0xCEF3\t0x5217\n0xCEF4\t0x52A3\n0xCEF5\t0x70C8\n0xCEF6\t0x88C2\n0xCEF7\t0x5EC9\n0xCEF8\t0x604B\n0xCEF9\t0x6190\n0xCEFA\t0x6F23\n0xCEFB\t0x7149\n0xCEFC\t0x7C3E\n0xCEFD\t0x7DF4\n0xCEFE\t0x806F\n0xCFA1\t0x84EE\n0xCFA2\t0x9023\n0xCFA3\t0x932C\n0xCFA4\t0x5442\n0xCFA5\t0x9B6F\n0xCFA6\t0x6AD3\n0xCFA7\t0x7089\n0xCFA8\t0x8CC2\n0xCFA9\t0x8DEF\n0xCFAA\t0x9732\n0xCFAB\t0x52B4\n0xCFAC\t0x5A41\n0xCFAD\t0x5ECA\n0xCFAE\t0x5F04\n0xCFAF\t0x6717\n0xCFB0\t0x697C\n0xCFB1\t0x6994\n0xCFB2\t0x6D6A\n0xCFB3\t0x6F0F\n0xCFB4\t0x7262\n0xCFB5\t0x72FC\n0xCFB6\t0x7BED\n0xCFB7\t0x8001\n0xCFB8\t0x807E\n0xCFB9\t0x874B\n0xCFBA\t0x90CE\n0xCFBB\t0x516D\n0xCFBC\t0x9E93\n0xCFBD\t0x7984\n0xCFBE\t0x808B\n0xCFBF\t0x9332\n0xCFC0\t0x8AD6\n0xCFC1\t0x502D\n0xCFC2\t0x548C\n0xCFC3\t0x8A71\n0xCFC4\t0x6B6A\n0xCFC5\t0x8CC4\n0xCFC6\t0x8107\n0xCFC7\t0x60D1\n0xCFC8\t0x67A0\n0xCFC9\t0x9DF2\n0xCFCA\t0x4E99\n0xCFCB\t0x4E98\n0xCFCC\t0x9C10\n0xCFCD\t0x8A6B\n0xCFCE\t0x85C1\n0xCFCF\t0x8568\n0xCFD0\t0x6900\n0xCFD1\t0x6E7E\n0xCFD2\t0x7897\n0xCFD3\t0x8155\n0xCFD4\t0x20B9F\n0xCFD5\t0x5B41\n0xCFD6\t0x5B56\n0xCFD7\t0x5B7D\n0xCFD8\t0x5B93\n0xCFD9\t0x5BD8\n0xCFDA\t0x5BEC\n0xCFDB\t0x5C12\n0xCFDC\t0x5C1E\n0xCFDD\t0x5C23\n0xCFDE\t0x5C2B\n0xCFDF\t0x378D\n0xCFE0\t0x5C62\n0xCFE1\t0xFA3B\n0xCFE2\t0xFA3C\n0xCFE3\t0x216B4\n0xCFE4\t0x5C7A\n0xCFE5\t0x5C8F\n0xCFE6\t0x5C9F\n0xCFE7\t0x5CA3\n0xCFE8\t0x5CAA\n0xCFE9\t0x5CBA\n0xCFEA\t0x5CCB\n0xCFEB\t0x5CD0\n0xCFEC\t0x5CD2\n0xCFED\t0x5CF4\n0xCFEE\t0x21E34\n0xCFEF\t0x37E2\n0xCFF0\t0x5D0D\n0xCFF1\t0x5D27\n0xCFF2\t0xFA11\n0xCFF3\t0x5D46\n0xCFF4\t0x5D47\n0xCFF5\t0x5D53\n0xCFF6\t0x5D4A\n0xCFF7\t0x5D6D\n0xCFF8\t0x5D81\n0xCFF9\t0x5DA0\n0xCFFA\t0x5DA4\n0xCFFB\t0x5DA7\n0xCFFC\t0x5DB8\n0xCFFD\t0x5DCB\n0xCFFE\t0x541E\n0xD0A1\t0x5F0C\n0xD0A2\t0x4E10\n0xD0A3\t0x4E15\n0xD0A4\t0x4E2A\n0xD0A5\t0x4E31\n0xD0A6\t0x4E36\n0xD0A7\t0x4E3C\n0xD0A8\t0x4E3F\n0xD0A9\t0x4E42\n0xD0AA\t0x4E56\n0xD0AB\t0x4E58\n0xD0AC\t0x4E82\n0xD0AD\t0x4E85\n0xD0AE\t0x8C6B\n0xD0AF\t0x4E8A\n0xD0B0\t0x8212\n0xD0B1\t0x5F0D\n0xD0B2\t0x4E8E\n0xD0B3\t0x4E9E\n0xD0B4\t0x4E9F\n0xD0B5\t0x4EA0\n0xD0B6\t0x4EA2\n0xD0B7\t0x4EB0\n0xD0B8\t0x4EB3\n0xD0B9\t0x4EB6\n0xD0BA\t0x4ECE\n0xD0BB\t0x4ECD\n0xD0BC\t0x4EC4\n0xD0BD\t0x4EC6\n0xD0BE\t0x4EC2\n0xD0BF\t0x4ED7\n0xD0C0\t0x4EDE\n0xD0C1\t0x4EED\n0xD0C2\t0x4EDF\n0xD0C3\t0x4EF7\n0xD0C4\t0x4F09\n0xD0C5\t0x4F5A\n0xD0C6\t0x4F30\n0xD0C7\t0x4F5B\n0xD0C8\t0x4F5D\n0xD0C9\t0x4F57\n0xD0CA\t0x4F47\n0xD0CB\t0x4F76\n0xD0CC\t0x4F88\n0xD0CD\t0x4F8F\n0xD0CE\t0x4F98\n0xD0CF\t0x4F7B\n0xD0D0\t0x4F69\n0xD0D1\t0x4F70\n0xD0D2\t0x4F91\n0xD0D3\t0x4F6F\n0xD0D4\t0x4F86\n0xD0D5\t0x4F96\n0xD0D6\t0x5118\n0xD0D7\t0x4FD4\n0xD0D8\t0x4FDF\n0xD0D9\t0x4FCE\n0xD0DA\t0x4FD8\n0xD0DB\t0x4FDB\n0xD0DC\t0x4FD1\n0xD0DD\t0x4FDA\n0xD0DE\t0x4FD0\n0xD0DF\t0x4FE4\n0xD0E0\t0x4FE5\n0xD0E1\t0x501A\n0xD0E2\t0x5028\n0xD0E3\t0x5014\n0xD0E4\t0x502A\n0xD0E5\t0x5025\n0xD0E6\t0x5005\n0xD0E7\t0x4F1C\n0xD0E8\t0x4FF6\n0xD0E9\t0x5021\n0xD0EA\t0x5029\n0xD0EB\t0x502C\n0xD0EC\t0x4FFE\n0xD0ED\t0x4FEF\n0xD0EE\t0x5011\n0xD0EF\t0x5006\n0xD0F0\t0x5043\n0xD0F1\t0x5047\n0xD0F2\t0x6703\n0xD0F3\t0x5055\n0xD0F4\t0x5050\n0xD0F5\t0x5048\n0xD0F6\t0x505A\n0xD0F7\t0x5056\n0xD0F8\t0x506C\n0xD0F9\t0x5078\n0xD0FA\t0x5080\n0xD0FB\t0x509A\n0xD0FC\t0x5085\n0xD0FD\t0x50B4\n0xD0FE\t0x50B2\n0xD1A1\t0x50C9\n0xD1A2\t0x50CA\n0xD1A3\t0x50B3\n0xD1A4\t0x50C2\n0xD1A5\t0x50D6\n0xD1A6\t0x50DE\n0xD1A7\t0x50E5\n0xD1A8\t0x50ED\n0xD1A9\t0x50E3\n0xD1AA\t0x50EE\n0xD1AB\t0x50F9\n0xD1AC\t0x50F5\n0xD1AD\t0x5109\n0xD1AE\t0x5101\n0xD1AF\t0x5102\n0xD1B0\t0x5116\n0xD1B1\t0x5115\n0xD1B2\t0x5114\n0xD1B3\t0x511A\n0xD1B4\t0x5121\n0xD1B5\t0x513A\n0xD1B6\t0x5137\n0xD1B7\t0x513C\n0xD1B8\t0x513B\n0xD1B9\t0x513F\n0xD1BA\t0x5140\n0xD1BB\t0x5152\n0xD1BC\t0x514C\n0xD1BD\t0x5154\n0xD1BE\t0x5162\n0xD1BF\t0x7AF8\n0xD1C0\t0x5169\n0xD1C1\t0x516A\n0xD1C2\t0x516E\n0xD1C3\t0x5180\n0xD1C4\t0x5182\n0xD1C5\t0x56D8\n0xD1C6\t0x518C\n0xD1C7\t0x5189\n0xD1C8\t0x518F\n0xD1C9\t0x5191\n0xD1CA\t0x5193\n0xD1CB\t0x5195\n0xD1CC\t0x5196\n0xD1CD\t0x51A4\n0xD1CE\t0x51A6\n0xD1CF\t0x51A2\n0xD1D0\t0x51A9\n0xD1D1\t0x51AA\n0xD1D2\t0x51AB\n0xD1D3\t0x51B3\n0xD1D4\t0x51B1\n0xD1D5\t0x51B2\n0xD1D6\t0x51B0\n0xD1D7\t0x51B5\n0xD1D8\t0x51BD\n0xD1D9\t0x51C5\n0xD1DA\t0x51C9\n0xD1DB\t0x51DB\n0xD1DC\t0x51E0\n0xD1DD\t0x8655\n0xD1DE\t0x51E9\n0xD1DF\t0x51ED\n0xD1E0\t0x51F0\n0xD1E1\t0x51F5\n0xD1E2\t0x51FE\n0xD1E3\t0x5204\n0xD1E4\t0x520B\n0xD1E5\t0x5214\n0xD1E6\t0x520E\n0xD1E7\t0x5227\n0xD1E8\t0x522A\n0xD1E9\t0x522E\n0xD1EA\t0x5233\n0xD1EB\t0x5239\n0xD1EC\t0x524F\n0xD1ED\t0x5244\n0xD1EE\t0x524B\n0xD1EF\t0x524C\n0xD1F0\t0x525E\n0xD1F1\t0x5254\n0xD1F2\t0x526A\n0xD1F3\t0x5274\n0xD1F4\t0x5269\n0xD1F5\t0x5273\n0xD1F6\t0x527F\n0xD1F7\t0x527D\n0xD1F8\t0x528D\n0xD1F9\t0x5294\n0xD1FA\t0x5292\n0xD1FB\t0x5271\n0xD1FC\t0x5288\n0xD1FD\t0x5291\n0xD1FE\t0x8FA8\n0xD2A1\t0x8FA7\n0xD2A2\t0x52AC\n0xD2A3\t0x52AD\n0xD2A4\t0x52BC\n0xD2A5\t0x52B5\n0xD2A6\t0x52C1\n0xD2A7\t0x52CD\n0xD2A8\t0x52D7\n0xD2A9\t0x52DE\n0xD2AA\t0x52E3\n0xD2AB\t0x52E6\n0xD2AC\t0x98ED\n0xD2AD\t0x52E0\n0xD2AE\t0x52F3\n0xD2AF\t0x52F5\n0xD2B0\t0x52F8\n0xD2B1\t0x52F9\n0xD2B2\t0x5306\n0xD2B3\t0x5308\n0xD2B4\t0x7538\n0xD2B5\t0x530D\n0xD2B6\t0x5310\n0xD2B7\t0x530F\n0xD2B8\t0x5315\n0xD2B9\t0x531A\n0xD2BA\t0x5323\n0xD2BB\t0x532F\n0xD2BC\t0x5331\n0xD2BD\t0x5333\n0xD2BE\t0x5338\n0xD2BF\t0x5340\n0xD2C0\t0x5346\n0xD2C1\t0x5345\n0xD2C2\t0x4E17\n0xD2C3\t0x5349\n0xD2C4\t0x534D\n0xD2C5\t0x51D6\n0xD2C6\t0x535E\n0xD2C7\t0x5369\n0xD2C8\t0x536E\n0xD2C9\t0x5918\n0xD2CA\t0x537B\n0xD2CB\t0x5377\n0xD2CC\t0x5382\n0xD2CD\t0x5396\n0xD2CE\t0x53A0\n0xD2CF\t0x53A6\n0xD2D0\t0x53A5\n0xD2D1\t0x53AE\n0xD2D2\t0x53B0\n0xD2D3\t0x53B6\n0xD2D4\t0x53C3\n0xD2D5\t0x7C12\n0xD2D6\t0x96D9\n0xD2D7\t0x53DF\n0xD2D8\t0x66FC\n0xD2D9\t0x71EE\n0xD2DA\t0x53EE\n0xD2DB\t0x53E8\n0xD2DC\t0x53ED\n0xD2DD\t0x53FA\n0xD2DE\t0x5401\n0xD2DF\t0x543D\n0xD2E0\t0x5440\n0xD2E1\t0x542C\n0xD2E2\t0x542D\n0xD2E3\t0x543C\n0xD2E4\t0x542E\n0xD2E5\t0x5436\n0xD2E6\t0x5429\n0xD2E7\t0x541D\n0xD2E8\t0x544E\n0xD2E9\t0x548F\n0xD2EA\t0x5475\n0xD2EB\t0x548E\n0xD2EC\t0x545F\n0xD2ED\t0x5471\n0xD2EE\t0x5477\n0xD2EF\t0x5470\n0xD2F0\t0x5492\n0xD2F1\t0x547B\n0xD2F2\t0x5480\n0xD2F3\t0x5476\n0xD2F4\t0x5484\n0xD2F5\t0x5490\n0xD2F6\t0x5486\n0xD2F7\t0x54C7\n0xD2F8\t0x54A2\n0xD2F9\t0x54B8\n0xD2FA\t0x54A5\n0xD2FB\t0x54AC\n0xD2FC\t0x54C4\n0xD2FD\t0x54C8\n0xD2FE\t0x54A8\n0xD3A1\t0x54AB\n0xD3A2\t0x54C2\n0xD3A3\t0x54A4\n0xD3A4\t0x54BE\n0xD3A5\t0x54BC\n0xD3A6\t0x54D8\n0xD3A7\t0x54E5\n0xD3A8\t0x54E6\n0xD3A9\t0x550F\n0xD3AA\t0x5514\n0xD3AB\t0x54FD\n0xD3AC\t0x54EE\n0xD3AD\t0x54ED\n0xD3AE\t0x54FA\n0xD3AF\t0x54E2\n0xD3B0\t0x5539\n0xD3B1\t0x5540\n0xD3B2\t0x5563\n0xD3B3\t0x554C\n0xD3B4\t0x552E\n0xD3B5\t0x555C\n0xD3B6\t0x5545\n0xD3B7\t0x5556\n0xD3B8\t0x5557\n0xD3B9\t0x5538\n0xD3BA\t0x5533\n0xD3BB\t0x555D\n0xD3BC\t0x5599\n0xD3BD\t0x5580\n0xD3BE\t0x54AF\n0xD3BF\t0x558A\n0xD3C0\t0x559F\n0xD3C1\t0x557B\n0xD3C2\t0x557E\n0xD3C3\t0x5598\n0xD3C4\t0x559E\n0xD3C5\t0x55AE\n0xD3C6\t0x557C\n0xD3C7\t0x5583\n0xD3C8\t0x55A9\n0xD3C9\t0x5587\n0xD3CA\t0x55A8\n0xD3CB\t0x55DA\n0xD3CC\t0x55C5\n0xD3CD\t0x55DF\n0xD3CE\t0x55C4\n0xD3CF\t0x55DC\n0xD3D0\t0x55E4\n0xD3D1\t0x55D4\n0xD3D2\t0x5614\n0xD3D3\t0x55F7\n0xD3D4\t0x5616\n0xD3D5\t0x55FE\n0xD3D6\t0x55FD\n0xD3D7\t0x561B\n0xD3D8\t0x55F9\n0xD3D9\t0x564E\n0xD3DA\t0x5650\n0xD3DB\t0x71DF\n0xD3DC\t0x5634\n0xD3DD\t0x5636\n0xD3DE\t0x5632\n0xD3DF\t0x5638\n0xD3E0\t0x566B\n0xD3E1\t0x5664\n0xD3E2\t0x562F\n0xD3E3\t0x566C\n0xD3E4\t0x566A\n0xD3E5\t0x5686\n0xD3E6\t0x5680\n0xD3E7\t0x568A\n0xD3E8\t0x56A0\n0xD3E9\t0x5694\n0xD3EA\t0x568F\n0xD3EB\t0x56A5\n0xD3EC\t0x56AE\n0xD3ED\t0x56B6\n0xD3EE\t0x56B4\n0xD3EF\t0x56C2\n0xD3F0\t0x56BC\n0xD3F1\t0x56C1\n0xD3F2\t0x56C3\n0xD3F3\t0x56C0\n0xD3F4\t0x56C8\n0xD3F5\t0x56CE\n0xD3F6\t0x56D1\n0xD3F7\t0x56D3\n0xD3F8\t0x56D7\n0xD3F9\t0x56EE\n0xD3FA\t0x56F9\n0xD3FB\t0x5700\n0xD3FC\t0x56FF\n0xD3FD\t0x5704\n0xD3FE\t0x5709\n0xD4A1\t0x5708\n0xD4A2\t0x570B\n0xD4A3\t0x570D\n0xD4A4\t0x5713\n0xD4A5\t0x5718\n0xD4A6\t0x5716\n0xD4A7\t0x55C7\n0xD4A8\t0x571C\n0xD4A9\t0x5726\n0xD4AA\t0x5737\n0xD4AB\t0x5738\n0xD4AC\t0x574E\n0xD4AD\t0x573B\n0xD4AE\t0x5740\n0xD4AF\t0x574F\n0xD4B0\t0x5769\n0xD4B1\t0x57C0\n0xD4B2\t0x5788\n0xD4B3\t0x5761\n0xD4B4\t0x577F\n0xD4B5\t0x5789\n0xD4B6\t0x5793\n0xD4B7\t0x57A0\n0xD4B8\t0x57B3\n0xD4B9\t0x57A4\n0xD4BA\t0x57AA\n0xD4BB\t0x57B0\n0xD4BC\t0x57C3\n0xD4BD\t0x57C6\n0xD4BE\t0x57D4\n0xD4BF\t0x57D2\n0xD4C0\t0x57D3\n0xD4C1\t0x580A\n0xD4C2\t0x57D6\n0xD4C3\t0x57E3\n0xD4C4\t0x580B\n0xD4C5\t0x5819\n0xD4C6\t0x581D\n0xD4C7\t0x5872\n0xD4C8\t0x5821\n0xD4C9\t0x5862\n0xD4CA\t0x584B\n0xD4CB\t0x5870\n0xD4CC\t0x6BC0\n0xD4CD\t0x5852\n0xD4CE\t0x583D\n0xD4CF\t0x5879\n0xD4D0\t0x5885\n0xD4D1\t0x58B9\n0xD4D2\t0x589F\n0xD4D3\t0x58AB\n0xD4D4\t0x58BA\n0xD4D5\t0x58DE\n0xD4D6\t0x58BB\n0xD4D7\t0x58B8\n0xD4D8\t0x58AE\n0xD4D9\t0x58C5\n0xD4DA\t0x58D3\n0xD4DB\t0x58D1\n0xD4DC\t0x58D7\n0xD4DD\t0x58D9\n0xD4DE\t0x58D8\n0xD4DF\t0x58E5\n0xD4E0\t0x58DC\n0xD4E1\t0x58E4\n0xD4E2\t0x58DF\n0xD4E3\t0x58EF\n0xD4E4\t0x58FA\n0xD4E5\t0x58F9\n0xD4E6\t0x58FB\n0xD4E7\t0x58FC\n0xD4E8\t0x58FD\n0xD4E9\t0x5902\n0xD4EA\t0x590A\n0xD4EB\t0x5910\n0xD4EC\t0x591B\n0xD4ED\t0x68A6\n0xD4EE\t0x5925\n0xD4EF\t0x592C\n0xD4F0\t0x592D\n0xD4F1\t0x5932\n0xD4F2\t0x5938\n0xD4F3\t0x593E\n0xD4F4\t0x7AD2\n0xD4F5\t0x5955\n0xD4F6\t0x5950\n0xD4F7\t0x594E\n0xD4F8\t0x595A\n0xD4F9\t0x5958\n0xD4FA\t0x5962\n0xD4FB\t0x5960\n0xD4FC\t0x5967\n0xD4FD\t0x596C\n0xD4FE\t0x5969\n0xD5A1\t0x5978\n0xD5A2\t0x5981\n0xD5A3\t0x599D\n0xD5A4\t0x4F5E\n0xD5A5\t0x4FAB\n0xD5A6\t0x59A3\n0xD5A7\t0x59B2\n0xD5A8\t0x59C6\n0xD5A9\t0x59E8\n0xD5AA\t0x59DC\n0xD5AB\t0x598D\n0xD5AC\t0x59D9\n0xD5AD\t0x59DA\n0xD5AE\t0x5A25\n0xD5AF\t0x5A1F\n0xD5B0\t0x5A11\n0xD5B1\t0x5A1C\n0xD5B2\t0x5A09\n0xD5B3\t0x5A1A\n0xD5B4\t0x5A40\n0xD5B5\t0x5A6C\n0xD5B6\t0x5A49\n0xD5B7\t0x5A35\n0xD5B8\t0x5A36\n0xD5B9\t0x5A62\n0xD5BA\t0x5A6A\n0xD5BB\t0x5A9A\n0xD5BC\t0x5ABC\n0xD5BD\t0x5ABE\n0xD5BE\t0x5ACB\n0xD5BF\t0x5AC2\n0xD5C0\t0x5ABD\n0xD5C1\t0x5AE3\n0xD5C2\t0x5AD7\n0xD5C3\t0x5AE6\n0xD5C4\t0x5AE9\n0xD5C5\t0x5AD6\n0xD5C6\t0x5AFA\n0xD5C7\t0x5AFB\n0xD5C8\t0x5B0C\n0xD5C9\t0x5B0B\n0xD5CA\t0x5B16\n0xD5CB\t0x5B32\n0xD5CC\t0x5AD0\n0xD5CD\t0x5B2A\n0xD5CE\t0x5B36\n0xD5CF\t0x5B3E\n0xD5D0\t0x5B43\n0xD5D1\t0x5B45\n0xD5D2\t0x5B40\n0xD5D3\t0x5B51\n0xD5D4\t0x5B55\n0xD5D5\t0x5B5A\n0xD5D6\t0x5B5B\n0xD5D7\t0x5B65\n0xD5D8\t0x5B69\n0xD5D9\t0x5B70\n0xD5DA\t0x5B73\n0xD5DB\t0x5B75\n0xD5DC\t0x5B78\n0xD5DD\t0x6588\n0xD5DE\t0x5B7A\n0xD5DF\t0x5B80\n0xD5E0\t0x5B83\n0xD5E1\t0x5BA6\n0xD5E2\t0x5BB8\n0xD5E3\t0x5BC3\n0xD5E4\t0x5BC7\n0xD5E5\t0x5BC9\n0xD5E6\t0x5BD4\n0xD5E7\t0x5BD0\n0xD5E8\t0x5BE4\n0xD5E9\t0x5BE6\n0xD5EA\t0x5BE2\n0xD5EB\t0x5BDE\n0xD5EC\t0x5BE5\n0xD5ED\t0x5BEB\n0xD5EE\t0x5BF0\n0xD5EF\t0x5BF6\n0xD5F0\t0x5BF3\n0xD5F1\t0x5C05\n0xD5F2\t0x5C07\n0xD5F3\t0x5C08\n0xD5F4\t0x5C0D\n0xD5F5\t0x5C13\n0xD5F6\t0x5C20\n0xD5F7\t0x5C22\n0xD5F8\t0x5C28\n0xD5F9\t0x5C38\n0xD5FA\t0x5C39\n0xD5FB\t0x5C41\n0xD5FC\t0x5C46\n0xD5FD\t0x5C4E\n0xD5FE\t0x5C53\n0xD6A1\t0x5C50\n0xD6A2\t0x5C4F\n0xD6A3\t0x5B71\n0xD6A4\t0x5C6C\n0xD6A5\t0x5C6E\n0xD6A6\t0x4E62\n0xD6A7\t0x5C76\n0xD6A8\t0x5C79\n0xD6A9\t0x5C8C\n0xD6AA\t0x5C91\n0xD6AB\t0x5C94\n0xD6AC\t0x599B\n0xD6AD\t0x5CAB\n0xD6AE\t0x5CBB\n0xD6AF\t0x5CB6\n0xD6B0\t0x5CBC\n0xD6B1\t0x5CB7\n0xD6B2\t0x5CC5\n0xD6B3\t0x5CBE\n0xD6B4\t0x5CC7\n0xD6B5\t0x5CD9\n0xD6B6\t0x5CE9\n0xD6B7\t0x5CFD\n0xD6B8\t0x5CFA\n0xD6B9\t0x5CED\n0xD6BA\t0x5D8C\n0xD6BB\t0x5CEA\n0xD6BC\t0x5D0B\n0xD6BD\t0x5D15\n0xD6BE\t0x5D17\n0xD6BF\t0x5D5C\n0xD6C0\t0x5D1F\n0xD6C1\t0x5D1B\n0xD6C2\t0x5D11\n0xD6C3\t0x5D14\n0xD6C4\t0x5D22\n0xD6C5\t0x5D1A\n0xD6C6\t0x5D19\n0xD6C7\t0x5D18\n0xD6C8\t0x5D4C\n0xD6C9\t0x5D52\n0xD6CA\t0x5D4E\n0xD6CB\t0x5D4B\n0xD6CC\t0x5D6C\n0xD6CD\t0x5D73\n0xD6CE\t0x5D76\n0xD6CF\t0x5D87\n0xD6D0\t0x5D84\n0xD6D1\t0x5D82\n0xD6D2\t0x5DA2\n0xD6D3\t0x5D9D\n0xD6D4\t0x5DAC\n0xD6D5\t0x5DAE\n0xD6D6\t0x5DBD\n0xD6D7\t0x5D90\n0xD6D8\t0x5DB7\n0xD6D9\t0x5DBC\n0xD6DA\t0x5DC9\n0xD6DB\t0x5DCD\n0xD6DC\t0x5DD3\n0xD6DD\t0x5DD2\n0xD6DE\t0x5DD6\n0xD6DF\t0x5DDB\n0xD6E0\t0x5DEB\n0xD6E1\t0x5DF2\n0xD6E2\t0x5DF5\n0xD6E3\t0x5E0B\n0xD6E4\t0x5E1A\n0xD6E5\t0x5E19\n0xD6E6\t0x5E11\n0xD6E7\t0x5E1B\n0xD6E8\t0x5E36\n0xD6E9\t0x5E37\n0xD6EA\t0x5E44\n0xD6EB\t0x5E43\n0xD6EC\t0x5E40\n0xD6ED\t0x5E4E\n0xD6EE\t0x5E57\n0xD6EF\t0x5E54\n0xD6F0\t0x5E5F\n0xD6F1\t0x5E62\n0xD6F2\t0x5E64\n0xD6F3\t0x5E47\n0xD6F4\t0x5E75\n0xD6F5\t0x5E76\n0xD6F6\t0x5E7A\n0xD6F7\t0x9EBC\n0xD6F8\t0x5E7F\n0xD6F9\t0x5EA0\n0xD6FA\t0x5EC1\n0xD6FB\t0x5EC2\n0xD6FC\t0x5EC8\n0xD6FD\t0x5ED0\n0xD6FE\t0x5ECF\n0xD7A1\t0x5ED6\n0xD7A2\t0x5EE3\n0xD7A3\t0x5EDD\n0xD7A4\t0x5EDA\n0xD7A5\t0x5EDB\n0xD7A6\t0x5EE2\n0xD7A7\t0x5EE1\n0xD7A8\t0x5EE8\n0xD7A9\t0x5EE9\n0xD7AA\t0x5EEC\n0xD7AB\t0x5EF1\n0xD7AC\t0x5EF3\n0xD7AD\t0x5EF0\n0xD7AE\t0x5EF4\n0xD7AF\t0x5EF8\n0xD7B0\t0x5EFE\n0xD7B1\t0x5F03\n0xD7B2\t0x5F09\n0xD7B3\t0x5F5D\n0xD7B4\t0x5F5C\n0xD7B5\t0x5F0B\n0xD7B6\t0x5F11\n0xD7B7\t0x5F16\n0xD7B8\t0x5F29\n0xD7B9\t0x5F2D\n0xD7BA\t0x5F38\n0xD7BB\t0x5F41\n0xD7BC\t0x5F48\n0xD7BD\t0x5F4C\n0xD7BE\t0x5F4E\n0xD7BF\t0x5F2F\n0xD7C0\t0x5F51\n0xD7C1\t0x5F56\n0xD7C2\t0x5F57\n0xD7C3\t0x5F59\n0xD7C4\t0x5F61\n0xD7C5\t0x5F6D\n0xD7C6\t0x5F73\n0xD7C7\t0x5F77\n0xD7C8\t0x5F83\n0xD7C9\t0x5F82\n0xD7CA\t0x5F7F\n0xD7CB\t0x5F8A\n0xD7CC\t0x5F88\n0xD7CD\t0x5F91\n0xD7CE\t0x5F87\n0xD7CF\t0x5F9E\n0xD7D0\t0x5F99\n0xD7D1\t0x5F98\n0xD7D2\t0x5FA0\n0xD7D3\t0x5FA8\n0xD7D4\t0x5FAD\n0xD7D5\t0x5FBC\n0xD7D6\t0x5FD6\n0xD7D7\t0x5FFB\n0xD7D8\t0x5FE4\n0xD7D9\t0x5FF8\n0xD7DA\t0x5FF1\n0xD7DB\t0x5FDD\n0xD7DC\t0x60B3\n0xD7DD\t0x5FFF\n0xD7DE\t0x6021\n0xD7DF\t0x6060\n0xD7E0\t0x6019\n0xD7E1\t0x6010\n0xD7E2\t0x6029\n0xD7E3\t0x600E\n0xD7E4\t0x6031\n0xD7E5\t0x601B\n0xD7E6\t0x6015\n0xD7E7\t0x602B\n0xD7E8\t0x6026\n0xD7E9\t0x600F\n0xD7EA\t0x603A\n0xD7EB\t0x605A\n0xD7EC\t0x6041\n0xD7ED\t0x606A\n0xD7EE\t0x6077\n0xD7EF\t0x605F\n0xD7F0\t0x604A\n0xD7F1\t0x6046\n0xD7F2\t0x604D\n0xD7F3\t0x6063\n0xD7F4\t0x6043\n0xD7F5\t0x6064\n0xD7F6\t0x6042\n0xD7F7\t0x606C\n0xD7F8\t0x606B\n0xD7F9\t0x6059\n0xD7FA\t0x6081\n0xD7FB\t0x608D\n0xD7FC\t0x60E7\n0xD7FD\t0x6083\n0xD7FE\t0x609A\n0xD8A1\t0x6084\n0xD8A2\t0x609B\n0xD8A3\t0x6096\n0xD8A4\t0x6097\n0xD8A5\t0x6092\n0xD8A6\t0x60A7\n0xD8A7\t0x608B\n0xD8A8\t0x60E1\n0xD8A9\t0x60B8\n0xD8AA\t0x60E0\n0xD8AB\t0x60D3\n0xD8AC\t0x60B4\n0xD8AD\t0x5FF0\n0xD8AE\t0x60BD\n0xD8AF\t0x60C6\n0xD8B0\t0x60B5\n0xD8B1\t0x60D8\n0xD8B2\t0x614D\n0xD8B3\t0x6115\n0xD8B4\t0x6106\n0xD8B5\t0x60F6\n0xD8B6\t0x60F7\n0xD8B7\t0x6100\n0xD8B8\t0x60F4\n0xD8B9\t0x60FA\n0xD8BA\t0x6103\n0xD8BB\t0x6121\n0xD8BC\t0x60FB\n0xD8BD\t0x60F1\n0xD8BE\t0x610D\n0xD8BF\t0x610E\n0xD8C0\t0x6147\n0xD8C1\t0x613E\n0xD8C2\t0x6128\n0xD8C3\t0x6127\n0xD8C4\t0x614A\n0xD8C5\t0x613F\n0xD8C6\t0x613C\n0xD8C7\t0x612C\n0xD8C8\t0x6134\n0xD8C9\t0x613D\n0xD8CA\t0x6142\n0xD8CB\t0x6144\n0xD8CC\t0x6173\n0xD8CD\t0x6177\n0xD8CE\t0x6158\n0xD8CF\t0x6159\n0xD8D0\t0x615A\n0xD8D1\t0x616B\n0xD8D2\t0x6174\n0xD8D3\t0x616F\n0xD8D4\t0x6165\n0xD8D5\t0x6171\n0xD8D6\t0x615F\n0xD8D7\t0x615D\n0xD8D8\t0x6153\n0xD8D9\t0x6175\n0xD8DA\t0x6199\n0xD8DB\t0x6196\n0xD8DC\t0x6187\n0xD8DD\t0x61AC\n0xD8DE\t0x6194\n0xD8DF\t0x619A\n0xD8E0\t0x618A\n0xD8E1\t0x6191\n0xD8E2\t0x61AB\n0xD8E3\t0x61AE\n0xD8E4\t0x61CC\n0xD8E5\t0x61CA\n0xD8E6\t0x61C9\n0xD8E7\t0x61F7\n0xD8E8\t0x61C8\n0xD8E9\t0x61C3\n0xD8EA\t0x61C6\n0xD8EB\t0x61BA\n0xD8EC\t0x61CB\n0xD8ED\t0x7F79\n0xD8EE\t0x61CD\n0xD8EF\t0x61E6\n0xD8F0\t0x61E3\n0xD8F1\t0x61F6\n0xD8F2\t0x61FA\n0xD8F3\t0x61F4\n0xD8F4\t0x61FF\n0xD8F5\t0x61FD\n0xD8F6\t0x61FC\n0xD8F7\t0x61FE\n0xD8F8\t0x6200\n0xD8F9\t0x6208\n0xD8FA\t0x6209\n0xD8FB\t0x620D\n0xD8FC\t0x620C\n0xD8FD\t0x6214\n0xD8FE\t0x621B\n0xD9A1\t0x621E\n0xD9A2\t0x6221\n0xD9A3\t0x622A\n0xD9A4\t0x622E\n0xD9A5\t0x6230\n0xD9A6\t0x6232\n0xD9A7\t0x6233\n0xD9A8\t0x6241\n0xD9A9\t0x624E\n0xD9AA\t0x625E\n0xD9AB\t0x6263\n0xD9AC\t0x625B\n0xD9AD\t0x6260\n0xD9AE\t0x6268\n0xD9AF\t0x627C\n0xD9B0\t0x6282\n0xD9B1\t0x6289\n0xD9B2\t0x627E\n0xD9B3\t0x6292\n0xD9B4\t0x6293\n0xD9B5\t0x6296\n0xD9B6\t0x62D4\n0xD9B7\t0x6283\n0xD9B8\t0x6294\n0xD9B9\t0x62D7\n0xD9BA\t0x62D1\n0xD9BB\t0x62BB\n0xD9BC\t0x62CF\n0xD9BD\t0x62FF\n0xD9BE\t0x62C6\n0xD9BF\t0x64D4\n0xD9C0\t0x62C8\n0xD9C1\t0x62DC\n0xD9C2\t0x62CC\n0xD9C3\t0x62CA\n0xD9C4\t0x62C2\n0xD9C5\t0x62C7\n0xD9C6\t0x629B\n0xD9C7\t0x62C9\n0xD9C8\t0x630C\n0xD9C9\t0x62EE\n0xD9CA\t0x62F1\n0xD9CB\t0x6327\n0xD9CC\t0x6302\n0xD9CD\t0x6308\n0xD9CE\t0x62EF\n0xD9CF\t0x62F5\n0xD9D0\t0x6350\n0xD9D1\t0x633E\n0xD9D2\t0x634D\n0xD9D3\t0x641C\n0xD9D4\t0x634F\n0xD9D5\t0x6396\n0xD9D6\t0x638E\n0xD9D7\t0x6380\n0xD9D8\t0x63AB\n0xD9D9\t0x6376\n0xD9DA\t0x63A3\n0xD9DB\t0x638F\n0xD9DC\t0x6389\n0xD9DD\t0x639F\n0xD9DE\t0x63B5\n0xD9DF\t0x636B\n0xD9E0\t0x6369\n0xD9E1\t0x63BE\n0xD9E2\t0x63E9\n0xD9E3\t0x63C0\n0xD9E4\t0x63C6\n0xD9E5\t0x63E3\n0xD9E6\t0x63C9\n0xD9E7\t0x63D2\n0xD9E8\t0x63F6\n0xD9E9\t0x63C4\n0xD9EA\t0x6416\n0xD9EB\t0x6434\n0xD9EC\t0x6406\n0xD9ED\t0x6413\n0xD9EE\t0x6426\n0xD9EF\t0x6436\n0xD9F0\t0x651D\n0xD9F1\t0x6417\n0xD9F2\t0x6428\n0xD9F3\t0x640F\n0xD9F4\t0x6467\n0xD9F5\t0x646F\n0xD9F6\t0x6476\n0xD9F7\t0x644E\n0xD9F8\t0x652A\n0xD9F9\t0x6495\n0xD9FA\t0x6493\n0xD9FB\t0x64A5\n0xD9FC\t0x64A9\n0xD9FD\t0x6488\n0xD9FE\t0x64BC\n0xDAA1\t0x64DA\n0xDAA2\t0x64D2\n0xDAA3\t0x64C5\n0xDAA4\t0x64C7\n0xDAA5\t0x64BB\n0xDAA6\t0x64D8\n0xDAA7\t0x64C2\n0xDAA8\t0x64F1\n0xDAA9\t0x64E7\n0xDAAA\t0x8209\n0xDAAB\t0x64E0\n0xDAAC\t0x64E1\n0xDAAD\t0x62AC\n0xDAAE\t0x64E3\n0xDAAF\t0x64EF\n0xDAB0\t0x652C\n0xDAB1\t0x64F6\n0xDAB2\t0x64F4\n0xDAB3\t0x64F2\n0xDAB4\t0x64FA\n0xDAB5\t0x6500\n0xDAB6\t0x64FD\n0xDAB7\t0x6518\n0xDAB8\t0x651C\n0xDAB9\t0x6505\n0xDABA\t0x6524\n0xDABB\t0x6523\n0xDABC\t0x652B\n0xDABD\t0x6534\n0xDABE\t0x6535\n0xDABF\t0x6537\n0xDAC0\t0x6536\n0xDAC1\t0x6538\n0xDAC2\t0x754B\n0xDAC3\t0x6548\n0xDAC4\t0x6556\n0xDAC5\t0x6555\n0xDAC6\t0x654D\n0xDAC7\t0x6558\n0xDAC8\t0x655E\n0xDAC9\t0x655D\n0xDACA\t0x6572\n0xDACB\t0x6578\n0xDACC\t0x6582\n0xDACD\t0x6583\n0xDACE\t0x8B8A\n0xDACF\t0x659B\n0xDAD0\t0x659F\n0xDAD1\t0x65AB\n0xDAD2\t0x65B7\n0xDAD3\t0x65C3\n0xDAD4\t0x65C6\n0xDAD5\t0x65C1\n0xDAD6\t0x65C4\n0xDAD7\t0x65CC\n0xDAD8\t0x65D2\n0xDAD9\t0x65DB\n0xDADA\t0x65D9\n0xDADB\t0x65E0\n0xDADC\t0x65E1\n0xDADD\t0x65F1\n0xDADE\t0x6772\n0xDADF\t0x660A\n0xDAE0\t0x6603\n0xDAE1\t0x65FB\n0xDAE2\t0x6773\n0xDAE3\t0x6635\n0xDAE4\t0x6636\n0xDAE5\t0x6634\n0xDAE6\t0x661C\n0xDAE7\t0x664F\n0xDAE8\t0x6644\n0xDAE9\t0x6649\n0xDAEA\t0x6641\n0xDAEB\t0x665E\n0xDAEC\t0x665D\n0xDAED\t0x6664\n0xDAEE\t0x6667\n0xDAEF\t0x6668\n0xDAF0\t0x665F\n0xDAF1\t0x6662\n0xDAF2\t0x6670\n0xDAF3\t0x6683\n0xDAF4\t0x6688\n0xDAF5\t0x668E\n0xDAF6\t0x6689\n0xDAF7\t0x6684\n0xDAF8\t0x6698\n0xDAF9\t0x669D\n0xDAFA\t0x66C1\n0xDAFB\t0x66B9\n0xDAFC\t0x66C9\n0xDAFD\t0x66BE\n0xDAFE\t0x66BC\n0xDBA1\t0x66C4\n0xDBA2\t0x66B8\n0xDBA3\t0x66D6\n0xDBA4\t0x66DA\n0xDBA5\t0x66E0\n0xDBA6\t0x663F\n0xDBA7\t0x66E6\n0xDBA8\t0x66E9\n0xDBA9\t0x66F0\n0xDBAA\t0x66F5\n0xDBAB\t0x66F7\n0xDBAC\t0x670F\n0xDBAD\t0x6716\n0xDBAE\t0x671E\n0xDBAF\t0x6726\n0xDBB0\t0x6727\n0xDBB1\t0x9738\n0xDBB2\t0x672E\n0xDBB3\t0x673F\n0xDBB4\t0x6736\n0xDBB5\t0x6741\n0xDBB6\t0x6738\n0xDBB7\t0x6737\n0xDBB8\t0x6746\n0xDBB9\t0x675E\n0xDBBA\t0x6760\n0xDBBB\t0x6759\n0xDBBC\t0x6763\n0xDBBD\t0x6764\n0xDBBE\t0x6789\n0xDBBF\t0x6770\n0xDBC0\t0x67A9\n0xDBC1\t0x677C\n0xDBC2\t0x676A\n0xDBC3\t0x678C\n0xDBC4\t0x678B\n0xDBC5\t0x67A6\n0xDBC6\t0x67A1\n0xDBC7\t0x6785\n0xDBC8\t0x67B7\n0xDBC9\t0x67EF\n0xDBCA\t0x67B4\n0xDBCB\t0x67EC\n0xDBCC\t0x67B3\n0xDBCD\t0x67E9\n0xDBCE\t0x67B8\n0xDBCF\t0x67E4\n0xDBD0\t0x67DE\n0xDBD1\t0x67DD\n0xDBD2\t0x67E2\n0xDBD3\t0x67EE\n0xDBD4\t0x67B9\n0xDBD5\t0x67CE\n0xDBD6\t0x67C6\n0xDBD7\t0x67E7\n0xDBD8\t0x6A9C\n0xDBD9\t0x681E\n0xDBDA\t0x6846\n0xDBDB\t0x6829\n0xDBDC\t0x6840\n0xDBDD\t0x684D\n0xDBDE\t0x6832\n0xDBDF\t0x684E\n0xDBE0\t0x68B3\n0xDBE1\t0x682B\n0xDBE2\t0x6859\n0xDBE3\t0x6863\n0xDBE4\t0x6877\n0xDBE5\t0x687F\n0xDBE6\t0x689F\n0xDBE7\t0x688F\n0xDBE8\t0x68AD\n0xDBE9\t0x6894\n0xDBEA\t0x689D\n0xDBEB\t0x689B\n0xDBEC\t0x6883\n0xDBED\t0x6AAE\n0xDBEE\t0x68B9\n0xDBEF\t0x6874\n0xDBF0\t0x68B5\n0xDBF1\t0x68A0\n0xDBF2\t0x68BA\n0xDBF3\t0x690F\n0xDBF4\t0x688D\n0xDBF5\t0x687E\n0xDBF6\t0x6901\n0xDBF7\t0x68CA\n0xDBF8\t0x6908\n0xDBF9\t0x68D8\n0xDBFA\t0x6922\n0xDBFB\t0x6926\n0xDBFC\t0x68E1\n0xDBFD\t0x690C\n0xDBFE\t0x68CD\n0xDCA1\t0x68D4\n0xDCA2\t0x68E7\n0xDCA3\t0x68D5\n0xDCA4\t0x6936\n0xDCA5\t0x6912\n0xDCA6\t0x6904\n0xDCA7\t0x68D7\n0xDCA8\t0x68E3\n0xDCA9\t0x6925\n0xDCAA\t0x68F9\n0xDCAB\t0x68E0\n0xDCAC\t0x68EF\n0xDCAD\t0x6928\n0xDCAE\t0x692A\n0xDCAF\t0x691A\n0xDCB0\t0x6923\n0xDCB1\t0x6921\n0xDCB2\t0x68C6\n0xDCB3\t0x6979\n0xDCB4\t0x6977\n0xDCB5\t0x695C\n0xDCB6\t0x6978\n0xDCB7\t0x696B\n0xDCB8\t0x6954\n0xDCB9\t0x697E\n0xDCBA\t0x696E\n0xDCBB\t0x6939\n0xDCBC\t0x6974\n0xDCBD\t0x693D\n0xDCBE\t0x6959\n0xDCBF\t0x6930\n0xDCC0\t0x6961\n0xDCC1\t0x695E\n0xDCC2\t0x695D\n0xDCC3\t0x6981\n0xDCC4\t0x696A\n0xDCC5\t0x69B2\n0xDCC6\t0x69AE\n0xDCC7\t0x69D0\n0xDCC8\t0x69BF\n0xDCC9\t0x69C1\n0xDCCA\t0x69D3\n0xDCCB\t0x69BE\n0xDCCC\t0x69CE\n0xDCCD\t0x5BE8\n0xDCCE\t0x69CA\n0xDCCF\t0x69DD\n0xDCD0\t0x69BB\n0xDCD1\t0x69C3\n0xDCD2\t0x69A7\n0xDCD3\t0x6A2E\n0xDCD4\t0x6991\n0xDCD5\t0x69A0\n0xDCD6\t0x699C\n0xDCD7\t0x6995\n0xDCD8\t0x69B4\n0xDCD9\t0x69DE\n0xDCDA\t0x69E8\n0xDCDB\t0x6A02\n0xDCDC\t0x6A1B\n0xDCDD\t0x69FF\n0xDCDE\t0x6B0A\n0xDCDF\t0x69F9\n0xDCE0\t0x69F2\n0xDCE1\t0x69E7\n0xDCE2\t0x6A05\n0xDCE3\t0x69B1\n0xDCE4\t0x6A1E\n0xDCE5\t0x69ED\n0xDCE6\t0x6A14\n0xDCE7\t0x69EB\n0xDCE8\t0x6A0A\n0xDCE9\t0x6A12\n0xDCEA\t0x6AC1\n0xDCEB\t0x6A23\n0xDCEC\t0x6A13\n0xDCED\t0x6A44\n0xDCEE\t0x6A0C\n0xDCEF\t0x6A72\n0xDCF0\t0x6A36\n0xDCF1\t0x6A78\n0xDCF2\t0x6A47\n0xDCF3\t0x6A62\n0xDCF4\t0x6A59\n0xDCF5\t0x6A66\n0xDCF6\t0x6A48\n0xDCF7\t0x6A38\n0xDCF8\t0x6A22\n0xDCF9\t0x6A90\n0xDCFA\t0x6A8D\n0xDCFB\t0x6AA0\n0xDCFC\t0x6A84\n0xDCFD\t0x6AA2\n0xDCFE\t0x6AA3\n0xDDA1\t0x6A97\n0xDDA2\t0x8617\n0xDDA3\t0x6ABB\n0xDDA4\t0x6AC3\n0xDDA5\t0x6AC2\n0xDDA6\t0x6AB8\n0xDDA7\t0x6AB3\n0xDDA8\t0x6AAC\n0xDDA9\t0x6ADE\n0xDDAA\t0x6AD1\n0xDDAB\t0x6ADF\n0xDDAC\t0x6AAA\n0xDDAD\t0x6ADA\n0xDDAE\t0x6AEA\n0xDDAF\t0x6AFB\n0xDDB0\t0x6B05\n0xDDB1\t0x8616\n0xDDB2\t0x6AFA\n0xDDB3\t0x6B12\n0xDDB4\t0x6B16\n0xDDB5\t0x9B31\n0xDDB6\t0x6B1F\n0xDDB7\t0x6B38\n0xDDB8\t0x6B37\n0xDDB9\t0x76DC\n0xDDBA\t0x6B39\n0xDDBB\t0x98EE\n0xDDBC\t0x6B47\n0xDDBD\t0x6B43\n0xDDBE\t0x6B49\n0xDDBF\t0x6B50\n0xDDC0\t0x6B59\n0xDDC1\t0x6B54\n0xDDC2\t0x6B5B\n0xDDC3\t0x6B5F\n0xDDC4\t0x6B61\n0xDDC5\t0x6B78\n0xDDC6\t0x6B79\n0xDDC7\t0x6B7F\n0xDDC8\t0x6B80\n0xDDC9\t0x6B84\n0xDDCA\t0x6B83\n0xDDCB\t0x6B8D\n0xDDCC\t0x6B98\n0xDDCD\t0x6B95\n0xDDCE\t0x6B9E\n0xDDCF\t0x6BA4\n0xDDD0\t0x6BAA\n0xDDD1\t0x6BAB\n0xDDD2\t0x6BAF\n0xDDD3\t0x6BB2\n0xDDD4\t0x6BB1\n0xDDD5\t0x6BB3\n0xDDD6\t0x6BB7\n0xDDD7\t0x6BBC\n0xDDD8\t0x6BC6\n0xDDD9\t0x6BCB\n0xDDDA\t0x6BD3\n0xDDDB\t0x6BDF\n0xDDDC\t0x6BEC\n0xDDDD\t0x6BEB\n0xDDDE\t0x6BF3\n0xDDDF\t0x6BEF\n0xDDE0\t0x9EBE\n0xDDE1\t0x6C08\n0xDDE2\t0x6C13\n0xDDE3\t0x6C14\n0xDDE4\t0x6C1B\n0xDDE5\t0x6C24\n0xDDE6\t0x6C23\n0xDDE7\t0x6C5E\n0xDDE8\t0x6C55\n0xDDE9\t0x6C62\n0xDDEA\t0x6C6A\n0xDDEB\t0x6C82\n0xDDEC\t0x6C8D\n0xDDED\t0x6C9A\n0xDDEE\t0x6C81\n0xDDEF\t0x6C9B\n0xDDF0\t0x6C7E\n0xDDF1\t0x6C68\n0xDDF2\t0x6C73\n0xDDF3\t0x6C92\n0xDDF4\t0x6C90\n0xDDF5\t0x6CC4\n0xDDF6\t0x6CF1\n0xDDF7\t0x6CD3\n0xDDF8\t0x6CBD\n0xDDF9\t0x6CD7\n0xDDFA\t0x6CC5\n0xDDFB\t0x6CDD\n0xDDFC\t0x6CAE\n0xDDFD\t0x6CB1\n0xDDFE\t0x6CBE\n0xDEA1\t0x6CBA\n0xDEA2\t0x6CDB\n0xDEA3\t0x6CEF\n0xDEA4\t0x6CD9\n0xDEA5\t0x6CEA\n0xDEA6\t0x6D1F\n0xDEA7\t0x884D\n0xDEA8\t0x6D36\n0xDEA9\t0x6D2B\n0xDEAA\t0x6D3D\n0xDEAB\t0x6D38\n0xDEAC\t0x6D19\n0xDEAD\t0x6D35\n0xDEAE\t0x6D33\n0xDEAF\t0x6D12\n0xDEB0\t0x6D0C\n0xDEB1\t0x6D63\n0xDEB2\t0x6D93\n0xDEB3\t0x6D64\n0xDEB4\t0x6D5A\n0xDEB5\t0x6D79\n0xDEB6\t0x6D59\n0xDEB7\t0x6D8E\n0xDEB8\t0x6D95\n0xDEB9\t0x6FE4\n0xDEBA\t0x6D85\n0xDEBB\t0x6DF9\n0xDEBC\t0x6E15\n0xDEBD\t0x6E0A\n0xDEBE\t0x6DB5\n0xDEBF\t0x6DC7\n0xDEC0\t0x6DE6\n0xDEC1\t0x6DB8\n0xDEC2\t0x6DC6\n0xDEC3\t0x6DEC\n0xDEC4\t0x6DDE\n0xDEC5\t0x6DCC\n0xDEC6\t0x6DE8\n0xDEC7\t0x6DD2\n0xDEC8\t0x6DC5\n0xDEC9\t0x6DFA\n0xDECA\t0x6DD9\n0xDECB\t0x6DE4\n0xDECC\t0x6DD5\n0xDECD\t0x6DEA\n0xDECE\t0x6DEE\n0xDECF\t0x6E2D\n0xDED0\t0x6E6E\n0xDED1\t0x6E2E\n0xDED2\t0x6E19\n0xDED3\t0x6E72\n0xDED4\t0x6E5F\n0xDED5\t0x6E3E\n0xDED6\t0x6E23\n0xDED7\t0x6E6B\n0xDED8\t0x6E2B\n0xDED9\t0x6E76\n0xDEDA\t0x6E4D\n0xDEDB\t0x6E1F\n0xDEDC\t0x6E43\n0xDEDD\t0x6E3A\n0xDEDE\t0x6E4E\n0xDEDF\t0x6E24\n0xDEE0\t0x6EFF\n0xDEE1\t0x6E1D\n0xDEE2\t0x6E38\n0xDEE3\t0x6E82\n0xDEE4\t0x6EAA\n0xDEE5\t0x6E98\n0xDEE6\t0x6EC9\n0xDEE7\t0x6EB7\n0xDEE8\t0x6ED3\n0xDEE9\t0x6EBD\n0xDEEA\t0x6EAF\n0xDEEB\t0x6EC4\n0xDEEC\t0x6EB2\n0xDEED\t0x6ED4\n0xDEEE\t0x6ED5\n0xDEEF\t0x6E8F\n0xDEF0\t0x6EA5\n0xDEF1\t0x6EC2\n0xDEF2\t0x6E9F\n0xDEF3\t0x6F41\n0xDEF4\t0x6F11\n0xDEF5\t0x704C\n0xDEF6\t0x6EEC\n0xDEF7\t0x6EF8\n0xDEF8\t0x6EFE\n0xDEF9\t0x6F3F\n0xDEFA\t0x6EF2\n0xDEFB\t0x6F31\n0xDEFC\t0x6EEF\n0xDEFD\t0x6F32\n0xDEFE\t0x6ECC\n0xDFA1\t0x6F3E\n0xDFA2\t0x6F13\n0xDFA3\t0x6EF7\n0xDFA4\t0x6F86\n0xDFA5\t0x6F7A\n0xDFA6\t0x6F78\n0xDFA7\t0x6F81\n0xDFA8\t0x6F80\n0xDFA9\t0x6F6F\n0xDFAA\t0x6F5B\n0xDFAB\t0x6FF3\n0xDFAC\t0x6F6D\n0xDFAD\t0x6F82\n0xDFAE\t0x6F7C\n0xDFAF\t0x6F58\n0xDFB0\t0x6F8E\n0xDFB1\t0x6F91\n0xDFB2\t0x6FC2\n0xDFB3\t0x6F66\n0xDFB4\t0x6FB3\n0xDFB5\t0x6FA3\n0xDFB6\t0x6FA1\n0xDFB7\t0x6FA4\n0xDFB8\t0x6FB9\n0xDFB9\t0x6FC6\n0xDFBA\t0x6FAA\n0xDFBB\t0x6FDF\n0xDFBC\t0x6FD5\n0xDFBD\t0x6FEC\n0xDFBE\t0x6FD4\n0xDFBF\t0x6FD8\n0xDFC0\t0x6FF1\n0xDFC1\t0x6FEE\n0xDFC2\t0x6FDB\n0xDFC3\t0x7009\n0xDFC4\t0x700B\n0xDFC5\t0x6FFA\n0xDFC6\t0x7011\n0xDFC7\t0x7001\n0xDFC8\t0x700F\n0xDFC9\t0x6FFE\n0xDFCA\t0x701B\n0xDFCB\t0x701A\n0xDFCC\t0x6F74\n0xDFCD\t0x701D\n0xDFCE\t0x7018\n0xDFCF\t0x701F\n0xDFD0\t0x7030\n0xDFD1\t0x703E\n0xDFD2\t0x7032\n0xDFD3\t0x7051\n0xDFD4\t0x7063\n0xDFD5\t0x7099\n0xDFD6\t0x7092\n0xDFD7\t0x70AF\n0xDFD8\t0x70F1\n0xDFD9\t0x70AC\n0xDFDA\t0x70B8\n0xDFDB\t0x70B3\n0xDFDC\t0x70AE\n0xDFDD\t0x70DF\n0xDFDE\t0x70CB\n0xDFDF\t0x70DD\n0xDFE0\t0x70D9\n0xDFE1\t0x7109\n0xDFE2\t0x70FD\n0xDFE3\t0x711C\n0xDFE4\t0x7119\n0xDFE5\t0x7165\n0xDFE6\t0x7155\n0xDFE7\t0x7188\n0xDFE8\t0x7166\n0xDFE9\t0x7162\n0xDFEA\t0x714C\n0xDFEB\t0x7156\n0xDFEC\t0x716C\n0xDFED\t0x718F\n0xDFEE\t0x71FB\n0xDFEF\t0x7184\n0xDFF0\t0x7195\n0xDFF1\t0x71A8\n0xDFF2\t0x71AC\n0xDFF3\t0x71D7\n0xDFF4\t0x71B9\n0xDFF5\t0x71BE\n0xDFF6\t0x71D2\n0xDFF7\t0x71C9\n0xDFF8\t0x71D4\n0xDFF9\t0x71CE\n0xDFFA\t0x71E0\n0xDFFB\t0x71EC\n0xDFFC\t0x71E7\n0xDFFD\t0x71F5\n0xDFFE\t0x71FC\n0xE0A1\t0x71F9\n0xE0A2\t0x71FF\n0xE0A3\t0x720D\n0xE0A4\t0x7210\n0xE0A5\t0x721B\n0xE0A6\t0x7228\n0xE0A7\t0x722D\n0xE0A8\t0x722C\n0xE0A9\t0x7230\n0xE0AA\t0x7232\n0xE0AB\t0x723B\n0xE0AC\t0x723C\n0xE0AD\t0x723F\n0xE0AE\t0x7240\n0xE0AF\t0x7246\n0xE0B0\t0x724B\n0xE0B1\t0x7258\n0xE0B2\t0x7274\n0xE0B3\t0x727E\n0xE0B4\t0x7282\n0xE0B5\t0x7281\n0xE0B6\t0x7287\n0xE0B7\t0x7292\n0xE0B8\t0x7296\n0xE0B9\t0x72A2\n0xE0BA\t0x72A7\n0xE0BB\t0x72B9\n0xE0BC\t0x72B2\n0xE0BD\t0x72C3\n0xE0BE\t0x72C6\n0xE0BF\t0x72C4\n0xE0C0\t0x72CE\n0xE0C1\t0x72D2\n0xE0C2\t0x72E2\n0xE0C3\t0x72E0\n0xE0C4\t0x72E1\n0xE0C5\t0x72F9\n0xE0C6\t0x72F7\n0xE0C7\t0x500F\n0xE0C8\t0x7317\n0xE0C9\t0x730A\n0xE0CA\t0x731C\n0xE0CB\t0x7316\n0xE0CC\t0x731D\n0xE0CD\t0x7334\n0xE0CE\t0x732F\n0xE0CF\t0x7329\n0xE0D0\t0x7325\n0xE0D1\t0x733E\n0xE0D2\t0x734E\n0xE0D3\t0x734F\n0xE0D4\t0x9ED8\n0xE0D5\t0x7357\n0xE0D6\t0x736A\n0xE0D7\t0x7368\n0xE0D8\t0x7370\n0xE0D9\t0x7378\n0xE0DA\t0x7375\n0xE0DB\t0x737B\n0xE0DC\t0x737A\n0xE0DD\t0x73C8\n0xE0DE\t0x73B3\n0xE0DF\t0x73CE\n0xE0E0\t0x73BB\n0xE0E1\t0x73C0\n0xE0E2\t0x73E5\n0xE0E3\t0x73EE\n0xE0E4\t0x73DE\n0xE0E5\t0x74A2\n0xE0E6\t0x7405\n0xE0E7\t0x746F\n0xE0E8\t0x7425\n0xE0E9\t0x73F8\n0xE0EA\t0x7432\n0xE0EB\t0x743A\n0xE0EC\t0x7455\n0xE0ED\t0x743F\n0xE0EE\t0x745F\n0xE0EF\t0x7459\n0xE0F0\t0x7441\n0xE0F1\t0x745C\n0xE0F2\t0x7469\n0xE0F3\t0x7470\n0xE0F4\t0x7463\n0xE0F5\t0x746A\n0xE0F6\t0x7476\n0xE0F7\t0x747E\n0xE0F8\t0x748B\n0xE0F9\t0x749E\n0xE0FA\t0x74A7\n0xE0FB\t0x74CA\n0xE0FC\t0x74CF\n0xE0FD\t0x74D4\n0xE0FE\t0x73F1\n0xE1A1\t0x74E0\n0xE1A2\t0x74E3\n0xE1A3\t0x74E7\n0xE1A4\t0x74E9\n0xE1A5\t0x74EE\n0xE1A6\t0x74F2\n0xE1A7\t0x74F0\n0xE1A8\t0x74F1\n0xE1A9\t0x74F8\n0xE1AA\t0x74F7\n0xE1AB\t0x7504\n0xE1AC\t0x7503\n0xE1AD\t0x7505\n0xE1AE\t0x750C\n0xE1AF\t0x750E\n0xE1B0\t0x750D\n0xE1B1\t0x7515\n0xE1B2\t0x7513\n0xE1B3\t0x751E\n0xE1B4\t0x7526\n0xE1B5\t0x752C\n0xE1B6\t0x753C\n0xE1B7\t0x7544\n0xE1B8\t0x754D\n0xE1B9\t0x754A\n0xE1BA\t0x7549\n0xE1BB\t0x755B\n0xE1BC\t0x7546\n0xE1BD\t0x755A\n0xE1BE\t0x7569\n0xE1BF\t0x7564\n0xE1C0\t0x7567\n0xE1C1\t0x756B\n0xE1C2\t0x756D\n0xE1C3\t0x7578\n0xE1C4\t0x7576\n0xE1C5\t0x7586\n0xE1C6\t0x7587\n0xE1C7\t0x7574\n0xE1C8\t0x758A\n0xE1C9\t0x7589\n0xE1CA\t0x7582\n0xE1CB\t0x7594\n0xE1CC\t0x759A\n0xE1CD\t0x759D\n0xE1CE\t0x75A5\n0xE1CF\t0x75A3\n0xE1D0\t0x75C2\n0xE1D1\t0x75B3\n0xE1D2\t0x75C3\n0xE1D3\t0x75B5\n0xE1D4\t0x75BD\n0xE1D5\t0x75B8\n0xE1D6\t0x75BC\n0xE1D7\t0x75B1\n0xE1D8\t0x75CD\n0xE1D9\t0x75CA\n0xE1DA\t0x75D2\n0xE1DB\t0x75D9\n0xE1DC\t0x75E3\n0xE1DD\t0x75DE\n0xE1DE\t0x75FE\n0xE1DF\t0x75FF\n0xE1E0\t0x75FC\n0xE1E1\t0x7601\n0xE1E2\t0x75F0\n0xE1E3\t0x75FA\n0xE1E4\t0x75F2\n0xE1E5\t0x75F3\n0xE1E6\t0x760B\n0xE1E7\t0x760D\n0xE1E8\t0x7609\n0xE1E9\t0x761F\n0xE1EA\t0x7627\n0xE1EB\t0x7620\n0xE1EC\t0x7621\n0xE1ED\t0x7622\n0xE1EE\t0x7624\n0xE1EF\t0x7634\n0xE1F0\t0x7630\n0xE1F1\t0x763B\n0xE1F2\t0x7647\n0xE1F3\t0x7648\n0xE1F4\t0x7646\n0xE1F5\t0x765C\n0xE1F6\t0x7658\n0xE1F7\t0x7661\n0xE1F8\t0x7662\n0xE1F9\t0x7668\n0xE1FA\t0x7669\n0xE1FB\t0x766A\n0xE1FC\t0x7667\n0xE1FD\t0x766C\n0xE1FE\t0x7670\n0xE2A1\t0x7672\n0xE2A2\t0x7676\n0xE2A3\t0x7678\n0xE2A4\t0x767C\n0xE2A5\t0x7680\n0xE2A6\t0x7683\n0xE2A7\t0x7688\n0xE2A8\t0x768B\n0xE2A9\t0x768E\n0xE2AA\t0x7696\n0xE2AB\t0x7693\n0xE2AC\t0x7699\n0xE2AD\t0x769A\n0xE2AE\t0x76B0\n0xE2AF\t0x76B4\n0xE2B0\t0x76B8\n0xE2B1\t0x76B9\n0xE2B2\t0x76BA\n0xE2B3\t0x76C2\n0xE2B4\t0x76CD\n0xE2B5\t0x76D6\n0xE2B6\t0x76D2\n0xE2B7\t0x76DE\n0xE2B8\t0x76E1\n0xE2B9\t0x76E5\n0xE2BA\t0x76E7\n0xE2BB\t0x76EA\n0xE2BC\t0x862F\n0xE2BD\t0x76FB\n0xE2BE\t0x7708\n0xE2BF\t0x7707\n0xE2C0\t0x7704\n0xE2C1\t0x7729\n0xE2C2\t0x7724\n0xE2C3\t0x771E\n0xE2C4\t0x7725\n0xE2C5\t0x7726\n0xE2C6\t0x771B\n0xE2C7\t0x7737\n0xE2C8\t0x7738\n0xE2C9\t0x7747\n0xE2CA\t0x775A\n0xE2CB\t0x7768\n0xE2CC\t0x776B\n0xE2CD\t0x775B\n0xE2CE\t0x7765\n0xE2CF\t0x777F\n0xE2D0\t0x777E\n0xE2D1\t0x7779\n0xE2D2\t0x778E\n0xE2D3\t0x778B\n0xE2D4\t0x7791\n0xE2D5\t0x77A0\n0xE2D6\t0x779E\n0xE2D7\t0x77B0\n0xE2D8\t0x77B6\n0xE2D9\t0x77B9\n0xE2DA\t0x77BF\n0xE2DB\t0x77BC\n0xE2DC\t0x77BD\n0xE2DD\t0x77BB\n0xE2DE\t0x77C7\n0xE2DF\t0x77CD\n0xE2E0\t0x77D7\n0xE2E1\t0x77DA\n0xE2E2\t0x77DC\n0xE2E3\t0x77E3\n0xE2E4\t0x77EE\n0xE2E5\t0x77FC\n0xE2E6\t0x780C\n0xE2E7\t0x7812\n0xE2E8\t0x7926\n0xE2E9\t0x7820\n0xE2EA\t0x792A\n0xE2EB\t0x7845\n0xE2EC\t0x788E\n0xE2ED\t0x7874\n0xE2EE\t0x7886\n0xE2EF\t0x787C\n0xE2F0\t0x789A\n0xE2F1\t0x788C\n0xE2F2\t0x78A3\n0xE2F3\t0x78B5\n0xE2F4\t0x78AA\n0xE2F5\t0x78AF\n0xE2F6\t0x78D1\n0xE2F7\t0x78C6\n0xE2F8\t0x78CB\n0xE2F9\t0x78D4\n0xE2FA\t0x78BE\n0xE2FB\t0x78BC\n0xE2FC\t0x78C5\n0xE2FD\t0x78CA\n0xE2FE\t0x78EC\n0xE3A1\t0x78E7\n0xE3A2\t0x78DA\n0xE3A3\t0x78FD\n0xE3A4\t0x78F4\n0xE3A5\t0x7907\n0xE3A6\t0x7912\n0xE3A7\t0x7911\n0xE3A8\t0x7919\n0xE3A9\t0x792C\n0xE3AA\t0x792B\n0xE3AB\t0x7940\n0xE3AC\t0x7960\n0xE3AD\t0x7957\n0xE3AE\t0x795F\n0xE3AF\t0x795A\n0xE3B0\t0x7955\n0xE3B1\t0x7953\n0xE3B2\t0x797A\n0xE3B3\t0x797F\n0xE3B4\t0x798A\n0xE3B5\t0x799D\n0xE3B6\t0x79A7\n0xE3B7\t0x9F4B\n0xE3B8\t0x79AA\n0xE3B9\t0x79AE\n0xE3BA\t0x79B3\n0xE3BB\t0x79B9\n0xE3BC\t0x79BA\n0xE3BD\t0x79C9\n0xE3BE\t0x79D5\n0xE3BF\t0x79E7\n0xE3C0\t0x79EC\n0xE3C1\t0x79E1\n0xE3C2\t0x79E3\n0xE3C3\t0x7A08\n0xE3C4\t0x7A0D\n0xE3C5\t0x7A18\n0xE3C6\t0x7A19\n0xE3C7\t0x7A20\n0xE3C8\t0x7A1F\n0xE3C9\t0x7980\n0xE3CA\t0x7A31\n0xE3CB\t0x7A3B\n0xE3CC\t0x7A3E\n0xE3CD\t0x7A37\n0xE3CE\t0x7A43\n0xE3CF\t0x7A57\n0xE3D0\t0x7A49\n0xE3D1\t0x7A61\n0xE3D2\t0x7A62\n0xE3D3\t0x7A69\n0xE3D4\t0x9F9D\n0xE3D5\t0x7A70\n0xE3D6\t0x7A79\n0xE3D7\t0x7A7D\n0xE3D8\t0x7A88\n0xE3D9\t0x7A97\n0xE3DA\t0x7A95\n0xE3DB\t0x7A98\n0xE3DC\t0x7A96\n0xE3DD\t0x7AA9\n0xE3DE\t0x7AC8\n0xE3DF\t0x7AB0\n0xE3E0\t0x7AB6\n0xE3E1\t0x7AC5\n0xE3E2\t0x7AC4\n0xE3E3\t0x7ABF\n0xE3E4\t0x9083\n0xE3E5\t0x7AC7\n0xE3E6\t0x7ACA\n0xE3E7\t0x7ACD\n0xE3E8\t0x7ACF\n0xE3E9\t0x7AD5\n0xE3EA\t0x7AD3\n0xE3EB\t0x7AD9\n0xE3EC\t0x7ADA\n0xE3ED\t0x7ADD\n0xE3EE\t0x7AE1\n0xE3EF\t0x7AE2\n0xE3F0\t0x7AE6\n0xE3F1\t0x7AED\n0xE3F2\t0x7AF0\n0xE3F3\t0x7B02\n0xE3F4\t0x7B0F\n0xE3F5\t0x7B0A\n0xE3F6\t0x7B06\n0xE3F7\t0x7B33\n0xE3F8\t0x7B18\n0xE3F9\t0x7B19\n0xE3FA\t0x7B1E\n0xE3FB\t0x7B35\n0xE3FC\t0x7B28\n0xE3FD\t0x7B36\n0xE3FE\t0x7B50\n0xE4A1\t0x7B7A\n0xE4A2\t0x7B04\n0xE4A3\t0x7B4D\n0xE4A4\t0x7B0B\n0xE4A5\t0x7B4C\n0xE4A6\t0x7B45\n0xE4A7\t0x7B75\n0xE4A8\t0x7B65\n0xE4A9\t0x7B74\n0xE4AA\t0x7B67\n0xE4AB\t0x7B70\n0xE4AC\t0x7B71\n0xE4AD\t0x7B6C\n0xE4AE\t0x7B6E\n0xE4AF\t0x7B9D\n0xE4B0\t0x7B98\n0xE4B1\t0x7B9F\n0xE4B2\t0x7B8D\n0xE4B3\t0x7B9C\n0xE4B4\t0x7B9A\n0xE4B5\t0x7B8B\n0xE4B6\t0x7B92\n0xE4B7\t0x7B8F\n0xE4B8\t0x7B5D\n0xE4B9\t0x7B99\n0xE4BA\t0x7BCB\n0xE4BB\t0x7BC1\n0xE4BC\t0x7BCC\n0xE4BD\t0x7BCF\n0xE4BE\t0x7BB4\n0xE4BF\t0x7BC6\n0xE4C0\t0x7BDD\n0xE4C1\t0x7BE9\n0xE4C2\t0x7C11\n0xE4C3\t0x7C14\n0xE4C4\t0x7BE6\n0xE4C5\t0x7BE5\n0xE4C6\t0x7C60\n0xE4C7\t0x7C00\n0xE4C8\t0x7C07\n0xE4C9\t0x7C13\n0xE4CA\t0x7BF3\n0xE4CB\t0x7BF7\n0xE4CC\t0x7C17\n0xE4CD\t0x7C0D\n0xE4CE\t0x7BF6\n0xE4CF\t0x7C23\n0xE4D0\t0x7C27\n0xE4D1\t0x7C2A\n0xE4D2\t0x7C1F\n0xE4D3\t0x7C37\n0xE4D4\t0x7C2B\n0xE4D5\t0x7C3D\n0xE4D6\t0x7C4C\n0xE4D7\t0x7C43\n0xE4D8\t0x7C54\n0xE4D9\t0x7C4F\n0xE4DA\t0x7C40\n0xE4DB\t0x7C50\n0xE4DC\t0x7C58\n0xE4DD\t0x7C5F\n0xE4DE\t0x7C64\n0xE4DF\t0x7C56\n0xE4E0\t0x7C65\n0xE4E1\t0x7C6C\n0xE4E2\t0x7C75\n0xE4E3\t0x7C83\n0xE4E4\t0x7C90\n0xE4E5\t0x7CA4\n0xE4E6\t0x7CAD\n0xE4E7\t0x7CA2\n0xE4E8\t0x7CAB\n0xE4E9\t0x7CA1\n0xE4EA\t0x7CA8\n0xE4EB\t0x7CB3\n0xE4EC\t0x7CB2\n0xE4ED\t0x7CB1\n0xE4EE\t0x7CAE\n0xE4EF\t0x7CB9\n0xE4F0\t0x7CBD\n0xE4F1\t0x7CC0\n0xE4F2\t0x7CC5\n0xE4F3\t0x7CC2\n0xE4F4\t0x7CD8\n0xE4F5\t0x7CD2\n0xE4F6\t0x7CDC\n0xE4F7\t0x7CE2\n0xE4F8\t0x9B3B\n0xE4F9\t0x7CEF\n0xE4FA\t0x7CF2\n0xE4FB\t0x7CF4\n0xE4FC\t0x7CF6\n0xE4FD\t0x7CFA\n0xE4FE\t0x7D06\n0xE5A1\t0x7D02\n0xE5A2\t0x7D1C\n0xE5A3\t0x7D15\n0xE5A4\t0x7D0A\n0xE5A5\t0x7D45\n0xE5A6\t0x7D4B\n0xE5A7\t0x7D2E\n0xE5A8\t0x7D32\n0xE5A9\t0x7D3F\n0xE5AA\t0x7D35\n0xE5AB\t0x7D46\n0xE5AC\t0x7D73\n0xE5AD\t0x7D56\n0xE5AE\t0x7D4E\n0xE5AF\t0x7D72\n0xE5B0\t0x7D68\n0xE5B1\t0x7D6E\n0xE5B2\t0x7D4F\n0xE5B3\t0x7D63\n0xE5B4\t0x7D93\n0xE5B5\t0x7D89\n0xE5B6\t0x7D5B\n0xE5B7\t0x7D8F\n0xE5B8\t0x7D7D\n0xE5B9\t0x7D9B\n0xE5BA\t0x7DBA\n0xE5BB\t0x7DAE\n0xE5BC\t0x7DA3\n0xE5BD\t0x7DB5\n0xE5BE\t0x7DC7\n0xE5BF\t0x7DBD\n0xE5C0\t0x7DAB\n0xE5C1\t0x7E3D\n0xE5C2\t0x7DA2\n0xE5C3\t0x7DAF\n0xE5C4\t0x7DDC\n0xE5C5\t0x7DB8\n0xE5C6\t0x7D9F\n0xE5C7\t0x7DB0\n0xE5C8\t0x7DD8\n0xE5C9\t0x7DDD\n0xE5CA\t0x7DE4\n0xE5CB\t0x7DDE\n0xE5CC\t0x7DFB\n0xE5CD\t0x7DF2\n0xE5CE\t0x7DE1\n0xE5CF\t0x7E05\n0xE5D0\t0x7E0A\n0xE5D1\t0x7E23\n0xE5D2\t0x7E21\n0xE5D3\t0x7E12\n0xE5D4\t0x7E31\n0xE5D5\t0x7E1F\n0xE5D6\t0x7E09\n0xE5D7\t0x7E0B\n0xE5D8\t0x7E22\n0xE5D9\t0x7E46\n0xE5DA\t0x7E66\n0xE5DB\t0x7E3B\n0xE5DC\t0x7E35\n0xE5DD\t0x7E39\n0xE5DE\t0x7E43\n0xE5DF\t0x7E37\n0xE5E0\t0x7E32\n0xE5E1\t0x7E3A\n0xE5E2\t0x7E67\n0xE5E3\t0x7E5D\n0xE5E4\t0x7E56\n0xE5E5\t0x7E5E\n0xE5E6\t0x7E59\n0xE5E7\t0x7E5A\n0xE5E8\t0x7E79\n0xE5E9\t0x7E6A\n0xE5EA\t0x7E69\n0xE5EB\t0x7E7C\n0xE5EC\t0x7E7B\n0xE5ED\t0x7E83\n0xE5EE\t0x7DD5\n0xE5EF\t0x7E7D\n0xE5F0\t0x8FAE\n0xE5F1\t0x7E7F\n0xE5F2\t0x7E88\n0xE5F3\t0x7E89\n0xE5F4\t0x7E8C\n0xE5F5\t0x7E92\n0xE5F6\t0x7E90\n0xE5F7\t0x7E93\n0xE5F8\t0x7E94\n0xE5F9\t0x7E96\n0xE5FA\t0x7E8E\n0xE5FB\t0x7E9B\n0xE5FC\t0x7E9C\n0xE5FD\t0x7F38\n0xE5FE\t0x7F3A\n0xE6A1\t0x7F45\n0xE6A2\t0x7F4C\n0xE6A3\t0x7F4D\n0xE6A4\t0x7F4E\n0xE6A5\t0x7F50\n0xE6A6\t0x7F51\n0xE6A7\t0x7F55\n0xE6A8\t0x7F54\n0xE6A9\t0x7F58\n0xE6AA\t0x7F5F\n0xE6AB\t0x7F60\n0xE6AC\t0x7F68\n0xE6AD\t0x7F69\n0xE6AE\t0x7F67\n0xE6AF\t0x7F78\n0xE6B0\t0x7F82\n0xE6B1\t0x7F86\n0xE6B2\t0x7F83\n0xE6B3\t0x7F88\n0xE6B4\t0x7F87\n0xE6B5\t0x7F8C\n0xE6B6\t0x7F94\n0xE6B7\t0x7F9E\n0xE6B8\t0x7F9D\n0xE6B9\t0x7F9A\n0xE6BA\t0x7FA3\n0xE6BB\t0x7FAF\n0xE6BC\t0x7FB2\n0xE6BD\t0x7FB9\n0xE6BE\t0x7FAE\n0xE6BF\t0x7FB6\n0xE6C0\t0x7FB8\n0xE6C1\t0x8B71\n0xE6C2\t0x7FC5\n0xE6C3\t0x7FC6\n0xE6C4\t0x7FCA\n0xE6C5\t0x7FD5\n0xE6C6\t0x7FD4\n0xE6C7\t0x7FE1\n0xE6C8\t0x7FE6\n0xE6C9\t0x7FE9\n0xE6CA\t0x7FF3\n0xE6CB\t0x7FF9\n0xE6CC\t0x98DC\n0xE6CD\t0x8006\n0xE6CE\t0x8004\n0xE6CF\t0x800B\n0xE6D0\t0x8012\n0xE6D1\t0x8018\n0xE6D2\t0x8019\n0xE6D3\t0x801C\n0xE6D4\t0x8021\n0xE6D5\t0x8028\n0xE6D6\t0x803F\n0xE6D7\t0x803B\n0xE6D8\t0x804A\n0xE6D9\t0x8046\n0xE6DA\t0x8052\n0xE6DB\t0x8058\n0xE6DC\t0x805A\n0xE6DD\t0x805F\n0xE6DE\t0x8062\n0xE6DF\t0x8068\n0xE6E0\t0x8073\n0xE6E1\t0x8072\n0xE6E2\t0x8070\n0xE6E3\t0x8076\n0xE6E4\t0x8079\n0xE6E5\t0x807D\n0xE6E6\t0x807F\n0xE6E7\t0x8084\n0xE6E8\t0x8086\n0xE6E9\t0x8085\n0xE6EA\t0x809B\n0xE6EB\t0x8093\n0xE6EC\t0x809A\n0xE6ED\t0x80AD\n0xE6EE\t0x5190\n0xE6EF\t0x80AC\n0xE6F0\t0x80DB\n0xE6F1\t0x80E5\n0xE6F2\t0x80D9\n0xE6F3\t0x80DD\n0xE6F4\t0x80C4\n0xE6F5\t0x80DA\n0xE6F6\t0x80D6\n0xE6F7\t0x8109\n0xE6F8\t0x80EF\n0xE6F9\t0x80F1\n0xE6FA\t0x811B\n0xE6FB\t0x8129\n0xE6FC\t0x8123\n0xE6FD\t0x812F\n0xE6FE\t0x814B\n0xE7A1\t0x968B\n0xE7A2\t0x8146\n0xE7A3\t0x813E\n0xE7A4\t0x8153\n0xE7A5\t0x8151\n0xE7A6\t0x80FC\n0xE7A7\t0x8171\n0xE7A8\t0x816E\n0xE7A9\t0x8165\n0xE7AA\t0x8166\n0xE7AB\t0x8174\n0xE7AC\t0x8183\n0xE7AD\t0x8188\n0xE7AE\t0x818A\n0xE7AF\t0x8180\n0xE7B0\t0x8182\n0xE7B1\t0x81A0\n0xE7B2\t0x8195\n0xE7B3\t0x81A4\n0xE7B4\t0x81A3\n0xE7B5\t0x815F\n0xE7B6\t0x8193\n0xE7B7\t0x81A9\n0xE7B8\t0x81B0\n0xE7B9\t0x81B5\n0xE7BA\t0x81BE\n0xE7BB\t0x81B8\n0xE7BC\t0x81BD\n0xE7BD\t0x81C0\n0xE7BE\t0x81C2\n0xE7BF\t0x81BA\n0xE7C0\t0x81C9\n0xE7C1\t0x81CD\n0xE7C2\t0x81D1\n0xE7C3\t0x81D9\n0xE7C4\t0x81D8\n0xE7C5\t0x81C8\n0xE7C6\t0x81DA\n0xE7C7\t0x81DF\n0xE7C8\t0x81E0\n0xE7C9\t0x81E7\n0xE7CA\t0x81FA\n0xE7CB\t0x81FB\n0xE7CC\t0x81FE\n0xE7CD\t0x8201\n0xE7CE\t0x8202\n0xE7CF\t0x8205\n0xE7D0\t0x8207\n0xE7D1\t0x820A\n0xE7D2\t0x820D\n0xE7D3\t0x8210\n0xE7D4\t0x8216\n0xE7D5\t0x8229\n0xE7D6\t0x822B\n0xE7D7\t0x8238\n0xE7D8\t0x8233\n0xE7D9\t0x8240\n0xE7DA\t0x8259\n0xE7DB\t0x8258\n0xE7DC\t0x825D\n0xE7DD\t0x825A\n0xE7DE\t0x825F\n0xE7DF\t0x8264\n0xE7E0\t0x8262\n0xE7E1\t0x8268\n0xE7E2\t0x826A\n0xE7E3\t0x826B\n0xE7E4\t0x822E\n0xE7E5\t0x8271\n0xE7E6\t0x8277\n0xE7E7\t0x8278\n0xE7E8\t0x827E\n0xE7E9\t0x828D\n0xE7EA\t0x8292\n0xE7EB\t0x82AB\n0xE7EC\t0x829F\n0xE7ED\t0x82BB\n0xE7EE\t0x82AC\n0xE7EF\t0x82E1\n0xE7F0\t0x82E3\n0xE7F1\t0x82DF\n0xE7F2\t0x82D2\n0xE7F3\t0x82F4\n0xE7F4\t0x82F3\n0xE7F5\t0x82FA\n0xE7F6\t0x8393\n0xE7F7\t0x8303\n0xE7F8\t0x82FB\n0xE7F9\t0x82F9\n0xE7FA\t0x82DE\n0xE7FB\t0x8306\n0xE7FC\t0x82DC\n0xE7FD\t0x8309\n0xE7FE\t0x82D9\n0xE8A1\t0x8335\n0xE8A2\t0x8334\n0xE8A3\t0x8316\n0xE8A4\t0x8332\n0xE8A5\t0x8331\n0xE8A6\t0x8340\n0xE8A7\t0x8339\n0xE8A8\t0x8350\n0xE8A9\t0x8345\n0xE8AA\t0x832F\n0xE8AB\t0x832B\n0xE8AC\t0x8317\n0xE8AD\t0x8318\n0xE8AE\t0x8385\n0xE8AF\t0x839A\n0xE8B0\t0x83AA\n0xE8B1\t0x839F\n0xE8B2\t0x83A2\n0xE8B3\t0x8396\n0xE8B4\t0x8323\n0xE8B5\t0x838E\n0xE8B6\t0x8387\n0xE8B7\t0x838A\n0xE8B8\t0x837C\n0xE8B9\t0x83B5\n0xE8BA\t0x8373\n0xE8BB\t0x8375\n0xE8BC\t0x83A0\n0xE8BD\t0x8389\n0xE8BE\t0x83A8\n0xE8BF\t0x83F4\n0xE8C0\t0x8413\n0xE8C1\t0x83EB\n0xE8C2\t0x83CE\n0xE8C3\t0x83FD\n0xE8C4\t0x8403\n0xE8C5\t0x83D8\n0xE8C6\t0x840B\n0xE8C7\t0x83C1\n0xE8C8\t0x83F7\n0xE8C9\t0x8407\n0xE8CA\t0x83E0\n0xE8CB\t0x83F2\n0xE8CC\t0x840D\n0xE8CD\t0x8422\n0xE8CE\t0x8420\n0xE8CF\t0x83BD\n0xE8D0\t0x8438\n0xE8D1\t0x8506\n0xE8D2\t0x83FB\n0xE8D3\t0x846D\n0xE8D4\t0x842A\n0xE8D5\t0x843C\n0xE8D6\t0x855A\n0xE8D7\t0x8484\n0xE8D8\t0x8477\n0xE8D9\t0x846B\n0xE8DA\t0x84AD\n0xE8DB\t0x846E\n0xE8DC\t0x8482\n0xE8DD\t0x8469\n0xE8DE\t0x8446\n0xE8DF\t0x842C\n0xE8E0\t0x846F\n0xE8E1\t0x8479\n0xE8E2\t0x8435\n0xE8E3\t0x84CA\n0xE8E4\t0x8462\n0xE8E5\t0x84B9\n0xE8E6\t0x84BF\n0xE8E7\t0x849F\n0xE8E8\t0x84D9\n0xE8E9\t0x84CD\n0xE8EA\t0x84BB\n0xE8EB\t0x84DA\n0xE8EC\t0x84D0\n0xE8ED\t0x84C1\n0xE8EE\t0x84C6\n0xE8EF\t0x84D6\n0xE8F0\t0x84A1\n0xE8F1\t0x8521\n0xE8F2\t0x84FF\n0xE8F3\t0x84F4\n0xE8F4\t0x8517\n0xE8F5\t0x8518\n0xE8F6\t0x852C\n0xE8F7\t0x851F\n0xE8F8\t0x8515\n0xE8F9\t0x8514\n0xE8FA\t0x84FC\n0xE8FB\t0x8540\n0xE8FC\t0x8563\n0xE8FD\t0x8558\n0xE8FE\t0x8548\n0xE9A1\t0x8541\n0xE9A2\t0x8602\n0xE9A3\t0x854B\n0xE9A4\t0x8555\n0xE9A5\t0x8580\n0xE9A6\t0x85A4\n0xE9A7\t0x8588\n0xE9A8\t0x8591\n0xE9A9\t0x858A\n0xE9AA\t0x85A8\n0xE9AB\t0x856D\n0xE9AC\t0x8594\n0xE9AD\t0x859B\n0xE9AE\t0x85EA\n0xE9AF\t0x8587\n0xE9B0\t0x859C\n0xE9B1\t0x8577\n0xE9B2\t0x857E\n0xE9B3\t0x8590\n0xE9B4\t0x85C9\n0xE9B5\t0x85BA\n0xE9B6\t0x85CF\n0xE9B7\t0x85B9\n0xE9B8\t0x85D0\n0xE9B9\t0x85D5\n0xE9BA\t0x85DD\n0xE9BB\t0x85E5\n0xE9BC\t0x85DC\n0xE9BD\t0x85F9\n0xE9BE\t0x860A\n0xE9BF\t0x8613\n0xE9C0\t0x860B\n0xE9C1\t0x85FE\n0xE9C2\t0x85FA\n0xE9C3\t0x8606\n0xE9C4\t0x8622\n0xE9C5\t0x861A\n0xE9C6\t0x8630\n0xE9C7\t0x863F\n0xE9C8\t0x864D\n0xE9C9\t0x4E55\n0xE9CA\t0x8654\n0xE9CB\t0x865F\n0xE9CC\t0x8667\n0xE9CD\t0x8671\n0xE9CE\t0x8693\n0xE9CF\t0x86A3\n0xE9D0\t0x86A9\n0xE9D1\t0x86AA\n0xE9D2\t0x868B\n0xE9D3\t0x868C\n0xE9D4\t0x86B6\n0xE9D5\t0x86AF\n0xE9D6\t0x86C4\n0xE9D7\t0x86C6\n0xE9D8\t0x86B0\n0xE9D9\t0x86C9\n0xE9DA\t0x8823\n0xE9DB\t0x86AB\n0xE9DC\t0x86D4\n0xE9DD\t0x86DE\n0xE9DE\t0x86E9\n0xE9DF\t0x86EC\n0xE9E0\t0x86DF\n0xE9E1\t0x86DB\n0xE9E2\t0x86EF\n0xE9E3\t0x8712\n0xE9E4\t0x8706\n0xE9E5\t0x8708\n0xE9E6\t0x8700\n0xE9E7\t0x8703\n0xE9E8\t0x86FB\n0xE9E9\t0x8711\n0xE9EA\t0x8709\n0xE9EB\t0x870D\n0xE9EC\t0x86F9\n0xE9ED\t0x870A\n0xE9EE\t0x8734\n0xE9EF\t0x873F\n0xE9F0\t0x8737\n0xE9F1\t0x873B\n0xE9F2\t0x8725\n0xE9F3\t0x8729\n0xE9F4\t0x871A\n0xE9F5\t0x8760\n0xE9F6\t0x875F\n0xE9F7\t0x8778\n0xE9F8\t0x874C\n0xE9F9\t0x874E\n0xE9FA\t0x8774\n0xE9FB\t0x8757\n0xE9FC\t0x8768\n0xE9FD\t0x876E\n0xE9FE\t0x8759\n0xEAA1\t0x8753\n0xEAA2\t0x8763\n0xEAA3\t0x876A\n0xEAA4\t0x8805\n0xEAA5\t0x87A2\n0xEAA6\t0x879F\n0xEAA7\t0x8782\n0xEAA8\t0x87AF\n0xEAA9\t0x87CB\n0xEAAA\t0x87BD\n0xEAAB\t0x87C0\n0xEAAC\t0x87D0\n0xEAAD\t0x96D6\n0xEAAE\t0x87AB\n0xEAAF\t0x87C4\n0xEAB0\t0x87B3\n0xEAB1\t0x87C7\n0xEAB2\t0x87C6\n0xEAB3\t0x87BB\n0xEAB4\t0x87EF\n0xEAB5\t0x87F2\n0xEAB6\t0x87E0\n0xEAB7\t0x880F\n0xEAB8\t0x880D\n0xEAB9\t0x87FE\n0xEABA\t0x87F6\n0xEABB\t0x87F7\n0xEABC\t0x880E\n0xEABD\t0x87D2\n0xEABE\t0x8811\n0xEABF\t0x8816\n0xEAC0\t0x8815\n0xEAC1\t0x8822\n0xEAC2\t0x8821\n0xEAC3\t0x8831\n0xEAC4\t0x8836\n0xEAC5\t0x8839\n0xEAC6\t0x8827\n0xEAC7\t0x883B\n0xEAC8\t0x8844\n0xEAC9\t0x8842\n0xEACA\t0x8852\n0xEACB\t0x8859\n0xEACC\t0x885E\n0xEACD\t0x8862\n0xEACE\t0x886B\n0xEACF\t0x8881\n0xEAD0\t0x887E\n0xEAD1\t0x889E\n0xEAD2\t0x8875\n0xEAD3\t0x887D\n0xEAD4\t0x88B5\n0xEAD5\t0x8872\n0xEAD6\t0x8882\n0xEAD7\t0x8897\n0xEAD8\t0x8892\n0xEAD9\t0x88AE\n0xEADA\t0x8899\n0xEADB\t0x88A2\n0xEADC\t0x888D\n0xEADD\t0x88A4\n0xEADE\t0x88B0\n0xEADF\t0x88BF\n0xEAE0\t0x88B1\n0xEAE1\t0x88C3\n0xEAE2\t0x88C4\n0xEAE3\t0x88D4\n0xEAE4\t0x88D8\n0xEAE5\t0x88D9\n0xEAE6\t0x88DD\n0xEAE7\t0x88F9\n0xEAE8\t0x8902\n0xEAE9\t0x88FC\n0xEAEA\t0x88F4\n0xEAEB\t0x88E8\n0xEAEC\t0x88F2\n0xEAED\t0x8904\n0xEAEE\t0x890C\n0xEAEF\t0x890A\n0xEAF0\t0x8913\n0xEAF1\t0x8943\n0xEAF2\t0x891E\n0xEAF3\t0x8925\n0xEAF4\t0x892A\n0xEAF5\t0x892B\n0xEAF6\t0x8941\n0xEAF7\t0x8944\n0xEAF8\t0x893B\n0xEAF9\t0x8936\n0xEAFA\t0x8938\n0xEAFB\t0x894C\n0xEAFC\t0x891D\n0xEAFD\t0x8960\n0xEAFE\t0x895E\n0xEBA1\t0x8966\n0xEBA2\t0x8964\n0xEBA3\t0x896D\n0xEBA4\t0x896A\n0xEBA5\t0x896F\n0xEBA6\t0x8974\n0xEBA7\t0x8977\n0xEBA8\t0x897E\n0xEBA9\t0x8983\n0xEBAA\t0x8988\n0xEBAB\t0x898A\n0xEBAC\t0x8993\n0xEBAD\t0x8998\n0xEBAE\t0x89A1\n0xEBAF\t0x89A9\n0xEBB0\t0x89A6\n0xEBB1\t0x89AC\n0xEBB2\t0x89AF\n0xEBB3\t0x89B2\n0xEBB4\t0x89BA\n0xEBB5\t0x89BD\n0xEBB6\t0x89BF\n0xEBB7\t0x89C0\n0xEBB8\t0x89DA\n0xEBB9\t0x89DC\n0xEBBA\t0x89DD\n0xEBBB\t0x89E7\n0xEBBC\t0x89F4\n0xEBBD\t0x89F8\n0xEBBE\t0x8A03\n0xEBBF\t0x8A16\n0xEBC0\t0x8A10\n0xEBC1\t0x8A0C\n0xEBC2\t0x8A1B\n0xEBC3\t0x8A1D\n0xEBC4\t0x8A25\n0xEBC5\t0x8A36\n0xEBC6\t0x8A41\n0xEBC7\t0x8A5B\n0xEBC8\t0x8A52\n0xEBC9\t0x8A46\n0xEBCA\t0x8A48\n0xEBCB\t0x8A7C\n0xEBCC\t0x8A6D\n0xEBCD\t0x8A6C\n0xEBCE\t0x8A62\n0xEBCF\t0x8A85\n0xEBD0\t0x8A82\n0xEBD1\t0x8A84\n0xEBD2\t0x8AA8\n0xEBD3\t0x8AA1\n0xEBD4\t0x8A91\n0xEBD5\t0x8AA5\n0xEBD6\t0x8AA6\n0xEBD7\t0x8A9A\n0xEBD8\t0x8AA3\n0xEBD9\t0x8AC4\n0xEBDA\t0x8ACD\n0xEBDB\t0x8AC2\n0xEBDC\t0x8ADA\n0xEBDD\t0x8AEB\n0xEBDE\t0x8AF3\n0xEBDF\t0x8AE7\n0xEBE0\t0x8AE4\n0xEBE1\t0x8AF1\n0xEBE2\t0x8B14\n0xEBE3\t0x8AE0\n0xEBE4\t0x8AE2\n0xEBE5\t0x8AF7\n0xEBE6\t0x8ADE\n0xEBE7\t0x8ADB\n0xEBE8\t0x8B0C\n0xEBE9\t0x8B07\n0xEBEA\t0x8B1A\n0xEBEB\t0x8AE1\n0xEBEC\t0x8B16\n0xEBED\t0x8B10\n0xEBEE\t0x8B17\n0xEBEF\t0x8B20\n0xEBF0\t0x8B33\n0xEBF1\t0x97AB\n0xEBF2\t0x8B26\n0xEBF3\t0x8B2B\n0xEBF4\t0x8B3E\n0xEBF5\t0x8B28\n0xEBF6\t0x8B41\n0xEBF7\t0x8B4C\n0xEBF8\t0x8B4F\n0xEBF9\t0x8B4E\n0xEBFA\t0x8B49\n0xEBFB\t0x8B56\n0xEBFC\t0x8B5B\n0xEBFD\t0x8B5A\n0xEBFE\t0x8B6B\n0xECA1\t0x8B5F\n0xECA2\t0x8B6C\n0xECA3\t0x8B6F\n0xECA4\t0x8B74\n0xECA5\t0x8B7D\n0xECA6\t0x8B80\n0xECA7\t0x8B8C\n0xECA8\t0x8B8E\n0xECA9\t0x8B92\n0xECAA\t0x8B93\n0xECAB\t0x8B96\n0xECAC\t0x8B99\n0xECAD\t0x8B9A\n0xECAE\t0x8C3A\n0xECAF\t0x8C41\n0xECB0\t0x8C3F\n0xECB1\t0x8C48\n0xECB2\t0x8C4C\n0xECB3\t0x8C4E\n0xECB4\t0x8C50\n0xECB5\t0x8C55\n0xECB6\t0x8C62\n0xECB7\t0x8C6C\n0xECB8\t0x8C78\n0xECB9\t0x8C7A\n0xECBA\t0x8C82\n0xECBB\t0x8C89\n0xECBC\t0x8C85\n0xECBD\t0x8C8A\n0xECBE\t0x8C8D\n0xECBF\t0x8C8E\n0xECC0\t0x8C94\n0xECC1\t0x8C7C\n0xECC2\t0x8C98\n0xECC3\t0x621D\n0xECC4\t0x8CAD\n0xECC5\t0x8CAA\n0xECC6\t0x8CBD\n0xECC7\t0x8CB2\n0xECC8\t0x8CB3\n0xECC9\t0x8CAE\n0xECCA\t0x8CB6\n0xECCB\t0x8CC8\n0xECCC\t0x8CC1\n0xECCD\t0x8CE4\n0xECCE\t0x8CE3\n0xECCF\t0x8CDA\n0xECD0\t0x8CFD\n0xECD1\t0x8CFA\n0xECD2\t0x8CFB\n0xECD3\t0x8D04\n0xECD4\t0x8D05\n0xECD5\t0x8D0A\n0xECD6\t0x8D07\n0xECD7\t0x8D0F\n0xECD8\t0x8D0D\n0xECD9\t0x8D10\n0xECDA\t0x9F4E\n0xECDB\t0x8D13\n0xECDC\t0x8CCD\n0xECDD\t0x8D14\n0xECDE\t0x8D16\n0xECDF\t0x8D67\n0xECE0\t0x8D6D\n0xECE1\t0x8D71\n0xECE2\t0x8D73\n0xECE3\t0x8D81\n0xECE4\t0x8D99\n0xECE5\t0x8DC2\n0xECE6\t0x8DBE\n0xECE7\t0x8DBA\n0xECE8\t0x8DCF\n0xECE9\t0x8DDA\n0xECEA\t0x8DD6\n0xECEB\t0x8DCC\n0xECEC\t0x8DDB\n0xECED\t0x8DCB\n0xECEE\t0x8DEA\n0xECEF\t0x8DEB\n0xECF0\t0x8DDF\n0xECF1\t0x8DE3\n0xECF2\t0x8DFC\n0xECF3\t0x8E08\n0xECF4\t0x8E09\n0xECF5\t0x8DFF\n0xECF6\t0x8E1D\n0xECF7\t0x8E1E\n0xECF8\t0x8E10\n0xECF9\t0x8E1F\n0xECFA\t0x8E42\n0xECFB\t0x8E35\n0xECFC\t0x8E30\n0xECFD\t0x8E34\n0xECFE\t0x8E4A\n0xEDA1\t0x8E47\n0xEDA2\t0x8E49\n0xEDA3\t0x8E4C\n0xEDA4\t0x8E50\n0xEDA5\t0x8E48\n0xEDA6\t0x8E59\n0xEDA7\t0x8E64\n0xEDA8\t0x8E60\n0xEDA9\t0x8E2A\n0xEDAA\t0x8E63\n0xEDAB\t0x8E55\n0xEDAC\t0x8E76\n0xEDAD\t0x8E72\n0xEDAE\t0x8E7C\n0xEDAF\t0x8E81\n0xEDB0\t0x8E87\n0xEDB1\t0x8E85\n0xEDB2\t0x8E84\n0xEDB3\t0x8E8B\n0xEDB4\t0x8E8A\n0xEDB5\t0x8E93\n0xEDB6\t0x8E91\n0xEDB7\t0x8E94\n0xEDB8\t0x8E99\n0xEDB9\t0x8EAA\n0xEDBA\t0x8EA1\n0xEDBB\t0x8EAC\n0xEDBC\t0x8EB0\n0xEDBD\t0x8EC6\n0xEDBE\t0x8EB1\n0xEDBF\t0x8EBE\n0xEDC0\t0x8EC5\n0xEDC1\t0x8EC8\n0xEDC2\t0x8ECB\n0xEDC3\t0x8EDB\n0xEDC4\t0x8EE3\n0xEDC5\t0x8EFC\n0xEDC6\t0x8EFB\n0xEDC7\t0x8EEB\n0xEDC8\t0x8EFE\n0xEDC9\t0x8F0A\n0xEDCA\t0x8F05\n0xEDCB\t0x8F15\n0xEDCC\t0x8F12\n0xEDCD\t0x8F19\n0xEDCE\t0x8F13\n0xEDCF\t0x8F1C\n0xEDD0\t0x8F1F\n0xEDD1\t0x8F1B\n0xEDD2\t0x8F0C\n0xEDD3\t0x8F26\n0xEDD4\t0x8F33\n0xEDD5\t0x8F3B\n0xEDD6\t0x8F39\n0xEDD7\t0x8F45\n0xEDD8\t0x8F42\n0xEDD9\t0x8F3E\n0xEDDA\t0x8F4C\n0xEDDB\t0x8F49\n0xEDDC\t0x8F46\n0xEDDD\t0x8F4E\n0xEDDE\t0x8F57\n0xEDDF\t0x8F5C\n0xEDE0\t0x8F62\n0xEDE1\t0x8F63\n0xEDE2\t0x8F64\n0xEDE3\t0x8F9C\n0xEDE4\t0x8F9F\n0xEDE5\t0x8FA3\n0xEDE6\t0x8FAD\n0xEDE7\t0x8FAF\n0xEDE8\t0x8FB7\n0xEDE9\t0x8FDA\n0xEDEA\t0x8FE5\n0xEDEB\t0x8FE2\n0xEDEC\t0x8FEA\n0xEDED\t0x8FEF\n0xEDEE\t0x9087\n0xEDEF\t0x8FF4\n0xEDF0\t0x9005\n0xEDF1\t0x8FF9\n0xEDF2\t0x8FFA\n0xEDF3\t0x9011\n0xEDF4\t0x9015\n0xEDF5\t0x9021\n0xEDF6\t0x900D\n0xEDF7\t0x901E\n0xEDF8\t0x9016\n0xEDF9\t0x900B\n0xEDFA\t0x9027\n0xEDFB\t0x9036\n0xEDFC\t0x9035\n0xEDFD\t0x9039\n0xEDFE\t0x8FF8\n0xEEA1\t0x904F\n0xEEA2\t0x9050\n0xEEA3\t0x9051\n0xEEA4\t0x9052\n0xEEA5\t0x900E\n0xEEA6\t0x9049\n0xEEA7\t0x903E\n0xEEA8\t0x9056\n0xEEA9\t0x9058\n0xEEAA\t0x905E\n0xEEAB\t0x9068\n0xEEAC\t0x906F\n0xEEAD\t0x9076\n0xEEAE\t0x96A8\n0xEEAF\t0x9072\n0xEEB0\t0x9082\n0xEEB1\t0x907D\n0xEEB2\t0x9081\n0xEEB3\t0x9080\n0xEEB4\t0x908A\n0xEEB5\t0x9089\n0xEEB6\t0x908F\n0xEEB7\t0x90A8\n0xEEB8\t0x90AF\n0xEEB9\t0x90B1\n0xEEBA\t0x90B5\n0xEEBB\t0x90E2\n0xEEBC\t0x90E4\n0xEEBD\t0x6248\n0xEEBE\t0x90DB\n0xEEBF\t0x9102\n0xEEC0\t0x9112\n0xEEC1\t0x9119\n0xEEC2\t0x9132\n0xEEC3\t0x9130\n0xEEC4\t0x914A\n0xEEC5\t0x9156\n0xEEC6\t0x9158\n0xEEC7\t0x9163\n0xEEC8\t0x9165\n0xEEC9\t0x9169\n0xEECA\t0x9173\n0xEECB\t0x9172\n0xEECC\t0x918B\n0xEECD\t0x9189\n0xEECE\t0x9182\n0xEECF\t0x91A2\n0xEED0\t0x91AB\n0xEED1\t0x91AF\n0xEED2\t0x91AA\n0xEED3\t0x91B5\n0xEED4\t0x91B4\n0xEED5\t0x91BA\n0xEED6\t0x91C0\n0xEED7\t0x91C1\n0xEED8\t0x91C9\n0xEED9\t0x91CB\n0xEEDA\t0x91D0\n0xEEDB\t0x91D6\n0xEEDC\t0x91DF\n0xEEDD\t0x91E1\n0xEEDE\t0x91DB\n0xEEDF\t0x91FC\n0xEEE0\t0x91F5\n0xEEE1\t0x91F6\n0xEEE2\t0x921E\n0xEEE3\t0x91FF\n0xEEE4\t0x9214\n0xEEE5\t0x922C\n0xEEE6\t0x9215\n0xEEE7\t0x9211\n0xEEE8\t0x925E\n0xEEE9\t0x9257\n0xEEEA\t0x9245\n0xEEEB\t0x9249\n0xEEEC\t0x9264\n0xEEED\t0x9248\n0xEEEE\t0x9295\n0xEEEF\t0x923F\n0xEEF0\t0x924B\n0xEEF1\t0x9250\n0xEEF2\t0x929C\n0xEEF3\t0x9296\n0xEEF4\t0x9293\n0xEEF5\t0x929B\n0xEEF6\t0x925A\n0xEEF7\t0x92CF\n0xEEF8\t0x92B9\n0xEEF9\t0x92B7\n0xEEFA\t0x92E9\n0xEEFB\t0x930F\n0xEEFC\t0x92FA\n0xEEFD\t0x9344\n0xEEFE\t0x932E\n0xEFA1\t0x9319\n0xEFA2\t0x9322\n0xEFA3\t0x931A\n0xEFA4\t0x9323\n0xEFA5\t0x933A\n0xEFA6\t0x9335\n0xEFA7\t0x933B\n0xEFA8\t0x935C\n0xEFA9\t0x9360\n0xEFAA\t0x937C\n0xEFAB\t0x936E\n0xEFAC\t0x9356\n0xEFAD\t0x93B0\n0xEFAE\t0x93AC\n0xEFAF\t0x93AD\n0xEFB0\t0x9394\n0xEFB1\t0x93B9\n0xEFB2\t0x93D6\n0xEFB3\t0x93D7\n0xEFB4\t0x93E8\n0xEFB5\t0x93E5\n0xEFB6\t0x93D8\n0xEFB7\t0x93C3\n0xEFB8\t0x93DD\n0xEFB9\t0x93D0\n0xEFBA\t0x93C8\n0xEFBB\t0x93E4\n0xEFBC\t0x941A\n0xEFBD\t0x9414\n0xEFBE\t0x9413\n0xEFBF\t0x9403\n0xEFC0\t0x9407\n0xEFC1\t0x9410\n0xEFC2\t0x9436\n0xEFC3\t0x942B\n0xEFC4\t0x9435\n0xEFC5\t0x9421\n0xEFC6\t0x943A\n0xEFC7\t0x9441\n0xEFC8\t0x9452\n0xEFC9\t0x9444\n0xEFCA\t0x945B\n0xEFCB\t0x9460\n0xEFCC\t0x9462\n0xEFCD\t0x945E\n0xEFCE\t0x946A\n0xEFCF\t0x9229\n0xEFD0\t0x9470\n0xEFD1\t0x9475\n0xEFD2\t0x9477\n0xEFD3\t0x947D\n0xEFD4\t0x945A\n0xEFD5\t0x947C\n0xEFD6\t0x947E\n0xEFD7\t0x9481\n0xEFD8\t0x947F\n0xEFD9\t0x9582\n0xEFDA\t0x9587\n0xEFDB\t0x958A\n0xEFDC\t0x9594\n0xEFDD\t0x9596\n0xEFDE\t0x9598\n0xEFDF\t0x9599\n0xEFE0\t0x95A0\n0xEFE1\t0x95A8\n0xEFE2\t0x95A7\n0xEFE3\t0x95AD\n0xEFE4\t0x95BC\n0xEFE5\t0x95BB\n0xEFE6\t0x95B9\n0xEFE7\t0x95BE\n0xEFE8\t0x95CA\n0xEFE9\t0x6FF6\n0xEFEA\t0x95C3\n0xEFEB\t0x95CD\n0xEFEC\t0x95CC\n0xEFED\t0x95D5\n0xEFEE\t0x95D4\n0xEFEF\t0x95D6\n0xEFF0\t0x95DC\n0xEFF1\t0x95E1\n0xEFF2\t0x95E5\n0xEFF3\t0x95E2\n0xEFF4\t0x9621\n0xEFF5\t0x9628\n0xEFF6\t0x962E\n0xEFF7\t0x962F\n0xEFF8\t0x9642\n0xEFF9\t0x964C\n0xEFFA\t0x964F\n0xEFFB\t0x964B\n0xEFFC\t0x9677\n0xEFFD\t0x965C\n0xEFFE\t0x965E\n0xF0A1\t0x965D\n0xF0A2\t0x965F\n0xF0A3\t0x9666\n0xF0A4\t0x9672\n0xF0A5\t0x966C\n0xF0A6\t0x968D\n0xF0A7\t0x9698\n0xF0A8\t0x9695\n0xF0A9\t0x9697\n0xF0AA\t0x96AA\n0xF0AB\t0x96A7\n0xF0AC\t0x96B1\n0xF0AD\t0x96B2\n0xF0AE\t0x96B0\n0xF0AF\t0x96B4\n0xF0B0\t0x96B6\n0xF0B1\t0x96B8\n0xF0B2\t0x96B9\n0xF0B3\t0x96CE\n0xF0B4\t0x96CB\n0xF0B5\t0x96C9\n0xF0B6\t0x96CD\n0xF0B7\t0x894D\n0xF0B8\t0x96DC\n0xF0B9\t0x970D\n0xF0BA\t0x96D5\n0xF0BB\t0x96F9\n0xF0BC\t0x9704\n0xF0BD\t0x9706\n0xF0BE\t0x9708\n0xF0BF\t0x9713\n0xF0C0\t0x970E\n0xF0C1\t0x9711\n0xF0C2\t0x970F\n0xF0C3\t0x9716\n0xF0C4\t0x9719\n0xF0C5\t0x9724\n0xF0C6\t0x972A\n0xF0C7\t0x9730\n0xF0C8\t0x9739\n0xF0C9\t0x973D\n0xF0CA\t0x973E\n0xF0CB\t0x9744\n0xF0CC\t0x9746\n0xF0CD\t0x9748\n0xF0CE\t0x9742\n0xF0CF\t0x9749\n0xF0D0\t0x975C\n0xF0D1\t0x9760\n0xF0D2\t0x9764\n0xF0D3\t0x9766\n0xF0D4\t0x9768\n0xF0D5\t0x52D2\n0xF0D6\t0x976B\n0xF0D7\t0x9771\n0xF0D8\t0x9779\n0xF0D9\t0x9785\n0xF0DA\t0x977C\n0xF0DB\t0x9781\n0xF0DC\t0x977A\n0xF0DD\t0x9786\n0xF0DE\t0x978B\n0xF0DF\t0x978F\n0xF0E0\t0x9790\n0xF0E1\t0x979C\n0xF0E2\t0x97A8\n0xF0E3\t0x97A6\n0xF0E4\t0x97A3\n0xF0E5\t0x97B3\n0xF0E6\t0x97B4\n0xF0E7\t0x97C3\n0xF0E8\t0x97C6\n0xF0E9\t0x97C8\n0xF0EA\t0x97CB\n0xF0EB\t0x97DC\n0xF0EC\t0x97ED\n0xF0ED\t0x9F4F\n0xF0EE\t0x97F2\n0xF0EF\t0x7ADF\n0xF0F0\t0x97F6\n0xF0F1\t0x97F5\n0xF0F2\t0x980F\n0xF0F3\t0x980C\n0xF0F4\t0x9838\n0xF0F5\t0x9824\n0xF0F6\t0x9821\n0xF0F7\t0x9837\n0xF0F8\t0x983D\n0xF0F9\t0x9846\n0xF0FA\t0x984F\n0xF0FB\t0x984B\n0xF0FC\t0x986B\n0xF0FD\t0x986F\n0xF0FE\t0x9870\n0xF1A1\t0x9871\n0xF1A2\t0x9874\n0xF1A3\t0x9873\n0xF1A4\t0x98AA\n0xF1A5\t0x98AF\n0xF1A6\t0x98B1\n0xF1A7\t0x98B6\n0xF1A8\t0x98C4\n0xF1A9\t0x98C3\n0xF1AA\t0x98C6\n0xF1AB\t0x98E9\n0xF1AC\t0x98EB\n0xF1AD\t0x9903\n0xF1AE\t0x9909\n0xF1AF\t0x9912\n0xF1B0\t0x9914\n0xF1B1\t0x9918\n0xF1B2\t0x9921\n0xF1B3\t0x991D\n0xF1B4\t0x991E\n0xF1B5\t0x9924\n0xF1B6\t0x9920\n0xF1B7\t0x992C\n0xF1B8\t0x992E\n0xF1B9\t0x993D\n0xF1BA\t0x993E\n0xF1BB\t0x9942\n0xF1BC\t0x9949\n0xF1BD\t0x9945\n0xF1BE\t0x9950\n0xF1BF\t0x994B\n0xF1C0\t0x9951\n0xF1C1\t0x9952\n0xF1C2\t0x994C\n0xF1C3\t0x9955\n0xF1C4\t0x9997\n0xF1C5\t0x9998\n0xF1C6\t0x99A5\n0xF1C7\t0x99AD\n0xF1C8\t0x99AE\n0xF1C9\t0x99BC\n0xF1CA\t0x99DF\n0xF1CB\t0x99DB\n0xF1CC\t0x99DD\n0xF1CD\t0x99D8\n0xF1CE\t0x99D1\n0xF1CF\t0x99ED\n0xF1D0\t0x99EE\n0xF1D1\t0x99F1\n0xF1D2\t0x99F2\n0xF1D3\t0x99FB\n0xF1D4\t0x99F8\n0xF1D5\t0x9A01\n0xF1D6\t0x9A0F\n0xF1D7\t0x9A05\n0xF1D8\t0x99E2\n0xF1D9\t0x9A19\n0xF1DA\t0x9A2B\n0xF1DB\t0x9A37\n0xF1DC\t0x9A45\n0xF1DD\t0x9A42\n0xF1DE\t0x9A40\n0xF1DF\t0x9A43\n0xF1E0\t0x9A3E\n0xF1E1\t0x9A55\n0xF1E2\t0x9A4D\n0xF1E3\t0x9A5B\n0xF1E4\t0x9A57\n0xF1E5\t0x9A5F\n0xF1E6\t0x9A62\n0xF1E7\t0x9A65\n0xF1E8\t0x9A64\n0xF1E9\t0x9A69\n0xF1EA\t0x9A6B\n0xF1EB\t0x9A6A\n0xF1EC\t0x9AAD\n0xF1ED\t0x9AB0\n0xF1EE\t0x9ABC\n0xF1EF\t0x9AC0\n0xF1F0\t0x9ACF\n0xF1F1\t0x9AD1\n0xF1F2\t0x9AD3\n0xF1F3\t0x9AD4\n0xF1F4\t0x9ADE\n0xF1F5\t0x9ADF\n0xF1F6\t0x9AE2\n0xF1F7\t0x9AE3\n0xF1F8\t0x9AE6\n0xF1F9\t0x9AEF\n0xF1FA\t0x9AEB\n0xF1FB\t0x9AEE\n0xF1FC\t0x9AF4\n0xF1FD\t0x9AF1\n0xF1FE\t0x9AF7\n0xF2A1\t0x9AFB\n0xF2A2\t0x9B06\n0xF2A3\t0x9B18\n0xF2A4\t0x9B1A\n0xF2A5\t0x9B1F\n0xF2A6\t0x9B22\n0xF2A7\t0x9B23\n0xF2A8\t0x9B25\n0xF2A9\t0x9B27\n0xF2AA\t0x9B28\n0xF2AB\t0x9B29\n0xF2AC\t0x9B2A\n0xF2AD\t0x9B2E\n0xF2AE\t0x9B2F\n0xF2AF\t0x9B32\n0xF2B0\t0x9B44\n0xF2B1\t0x9B43\n0xF2B2\t0x9B4F\n0xF2B3\t0x9B4D\n0xF2B4\t0x9B4E\n0xF2B5\t0x9B51\n0xF2B6\t0x9B58\n0xF2B7\t0x9B74\n0xF2B8\t0x9B93\n0xF2B9\t0x9B83\n0xF2BA\t0x9B91\n0xF2BB\t0x9B96\n0xF2BC\t0x9B97\n0xF2BD\t0x9B9F\n0xF2BE\t0x9BA0\n0xF2BF\t0x9BA8\n0xF2C0\t0x9BB4\n0xF2C1\t0x9BC0\n0xF2C2\t0x9BCA\n0xF2C3\t0x9BB9\n0xF2C4\t0x9BC6\n0xF2C5\t0x9BCF\n0xF2C6\t0x9BD1\n0xF2C7\t0x9BD2\n0xF2C8\t0x9BE3\n0xF2C9\t0x9BE2\n0xF2CA\t0x9BE4\n0xF2CB\t0x9BD4\n0xF2CC\t0x9BE1\n0xF2CD\t0x9C3A\n0xF2CE\t0x9BF2\n0xF2CF\t0x9BF1\n0xF2D0\t0x9BF0\n0xF2D1\t0x9C15\n0xF2D2\t0x9C14\n0xF2D3\t0x9C09\n0xF2D4\t0x9C13\n0xF2D5\t0x9C0C\n0xF2D6\t0x9C06\n0xF2D7\t0x9C08\n0xF2D8\t0x9C12\n0xF2D9\t0x9C0A\n0xF2DA\t0x9C04\n0xF2DB\t0x9C2E\n0xF2DC\t0x9C1B\n0xF2DD\t0x9C25\n0xF2DE\t0x9C24\n0xF2DF\t0x9C21\n0xF2E0\t0x9C30\n0xF2E1\t0x9C47\n0xF2E2\t0x9C32\n0xF2E3\t0x9C46\n0xF2E4\t0x9C3E\n0xF2E5\t0x9C5A\n0xF2E6\t0x9C60\n0xF2E7\t0x9C67\n0xF2E8\t0x9C76\n0xF2E9\t0x9C78\n0xF2EA\t0x9CE7\n0xF2EB\t0x9CEC\n0xF2EC\t0x9CF0\n0xF2ED\t0x9D09\n0xF2EE\t0x9D08\n0xF2EF\t0x9CEB\n0xF2F0\t0x9D03\n0xF2F1\t0x9D06\n0xF2F2\t0x9D2A\n0xF2F3\t0x9D26\n0xF2F4\t0x9DAF\n0xF2F5\t0x9D23\n0xF2F6\t0x9D1F\n0xF2F7\t0x9D44\n0xF2F8\t0x9D15\n0xF2F9\t0x9D12\n0xF2FA\t0x9D41\n0xF2FB\t0x9D3F\n0xF2FC\t0x9D3E\n0xF2FD\t0x9D46\n0xF2FE\t0x9D48\n0xF3A1\t0x9D5D\n0xF3A2\t0x9D5E\n0xF3A3\t0x9D64\n0xF3A4\t0x9D51\n0xF3A5\t0x9D50\n0xF3A6\t0x9D59\n0xF3A7\t0x9D72\n0xF3A8\t0x9D89\n0xF3A9\t0x9D87\n0xF3AA\t0x9DAB\n0xF3AB\t0x9D6F\n0xF3AC\t0x9D7A\n0xF3AD\t0x9D9A\n0xF3AE\t0x9DA4\n0xF3AF\t0x9DA9\n0xF3B0\t0x9DB2\n0xF3B1\t0x9DC4\n0xF3B2\t0x9DC1\n0xF3B3\t0x9DBB\n0xF3B4\t0x9DB8\n0xF3B5\t0x9DBA\n0xF3B6\t0x9DC6\n0xF3B7\t0x9DCF\n0xF3B8\t0x9DC2\n0xF3B9\t0x9DD9\n0xF3BA\t0x9DD3\n0xF3BB\t0x9DF8\n0xF3BC\t0x9DE6\n0xF3BD\t0x9DED\n0xF3BE\t0x9DEF\n0xF3BF\t0x9DFD\n0xF3C0\t0x9E1A\n0xF3C1\t0x9E1B\n0xF3C2\t0x9E1E\n0xF3C3\t0x9E75\n0xF3C4\t0x9E79\n0xF3C5\t0x9E7D\n0xF3C6\t0x9E81\n0xF3C7\t0x9E88\n0xF3C8\t0x9E8B\n0xF3C9\t0x9E8C\n0xF3CA\t0x9E92\n0xF3CB\t0x9E95\n0xF3CC\t0x9E91\n0xF3CD\t0x9E9D\n0xF3CE\t0x9EA5\n0xF3CF\t0x9EA9\n0xF3D0\t0x9EB8\n0xF3D1\t0x9EAA\n0xF3D2\t0x9EAD\n0xF3D3\t0x9761\n0xF3D4\t0x9ECC\n0xF3D5\t0x9ECE\n0xF3D6\t0x9ECF\n0xF3D7\t0x9ED0\n0xF3D8\t0x9ED4\n0xF3D9\t0x9EDC\n0xF3DA\t0x9EDE\n0xF3DB\t0x9EDD\n0xF3DC\t0x9EE0\n0xF3DD\t0x9EE5\n0xF3DE\t0x9EE8\n0xF3DF\t0x9EEF\n0xF3E0\t0x9EF4\n0xF3E1\t0x9EF6\n0xF3E2\t0x9EF7\n0xF3E3\t0x9EF9\n0xF3E4\t0x9EFB\n0xF3E5\t0x9EFC\n0xF3E6\t0x9EFD\n0xF3E7\t0x9F07\n0xF3E8\t0x9F08\n0xF3E9\t0x76B7\n0xF3EA\t0x9F15\n0xF3EB\t0x9F21\n0xF3EC\t0x9F2C\n0xF3ED\t0x9F3E\n0xF3EE\t0x9F4A\n0xF3EF\t0x9F52\n0xF3F0\t0x9F54\n0xF3F1\t0x9F63\n0xF3F2\t0x9F5F\n0xF3F3\t0x9F60\n0xF3F4\t0x9F61\n0xF3F5\t0x9F66\n0xF3F6\t0x9F67\n0xF3F7\t0x9F6C\n0xF3F8\t0x9F6A\n0xF3F9\t0x9F77\n0xF3FA\t0x9F72\n0xF3FB\t0x9F76\n0xF3FC\t0x9F95\n0xF3FD\t0x9F9C\n0xF3FE\t0x9FA0\n0xF4A1\t0x582F\n0xF4A2\t0x69C7\n0xF4A3\t0x9059\n0xF4A4\t0x7464\n0xF4A5\t0x51DC\n0xF4A6\t0x7199\n0xF4A7\t0x5653\n0xF4A8\t0x5DE2\n0xF4A9\t0x5E14\n0xF4AA\t0x5E18\n0xF4AB\t0x5E58\n0xF4AC\t0x5E5E\n0xF4AD\t0x5EBE\n0xF4AE\t0xF928\n0xF4AF\t0x5ECB\n0xF4B0\t0x5EF9\n0xF4B1\t0x5F00\n0xF4B2\t0x5F02\n0xF4B3\t0x5F07\n0xF4B4\t0x5F1D\n0xF4B5\t0x5F23\n0xF4B6\t0x5F34\n0xF4B7\t0x5F36\n0xF4B8\t0x5F3D\n0xF4B9\t0x5F40\n0xF4BA\t0x5F45\n0xF4BB\t0x5F54\n0xF4BC\t0x5F58\n0xF4BD\t0x5F64\n0xF4BE\t0x5F67\n0xF4BF\t0x5F7D\n0xF4C0\t0x5F89\n0xF4C1\t0x5F9C\n0xF4C2\t0x5FA7\n0xF4C3\t0x5FAF\n0xF4C4\t0x5FB5\n0xF4C5\t0x5FB7\n0xF4C6\t0x5FC9\n0xF4C7\t0x5FDE\n0xF4C8\t0x5FE1\n0xF4C9\t0x5FE9\n0xF4CA\t0x600D\n0xF4CB\t0x6014\n0xF4CC\t0x6018\n0xF4CD\t0x6033\n0xF4CE\t0x6035\n0xF4CF\t0x6047\n0xF4D0\t0xFA3D\n0xF4D1\t0x609D\n0xF4D2\t0x609E\n0xF4D3\t0x60CB\n0xF4D4\t0x60D4\n0xF4D5\t0x60D5\n0xF4D6\t0x60DD\n0xF4D7\t0x60F8\n0xF4D8\t0x611C\n0xF4D9\t0x612B\n0xF4DA\t0x6130\n0xF4DB\t0x6137\n0xF4DC\t0xFA3E\n0xF4DD\t0x618D\n0xF4DE\t0xFA3F\n0xF4DF\t0x61BC\n0xF4E0\t0x61B9\n0xF4E1\t0xFA40\n0xF4E2\t0x6222\n0xF4E3\t0x623E\n0xF4E4\t0x6243\n0xF4E5\t0x6256\n0xF4E6\t0x625A\n0xF4E7\t0x626F\n0xF4E8\t0x6285\n0xF4E9\t0x62C4\n0xF4EA\t0x62D6\n0xF4EB\t0x62FC\n0xF4EC\t0x630A\n0xF4ED\t0x6318\n0xF4EE\t0x6339\n0xF4EF\t0x6343\n0xF4F0\t0x6365\n0xF4F1\t0x637C\n0xF4F2\t0x63E5\n0xF4F3\t0x63ED\n0xF4F4\t0x63F5\n0xF4F5\t0x6410\n0xF4F6\t0x6414\n0xF4F7\t0x6422\n0xF4F8\t0x6479\n0xF4F9\t0x6451\n0xF4FA\t0x6460\n0xF4FB\t0x646D\n0xF4FC\t0x64CE\n0xF4FD\t0x64BE\n0xF4FE\t0x64BF\n0xF5A1\t0x64C4\n0xF5A2\t0x64CA\n0xF5A3\t0x64D0\n0xF5A4\t0x64F7\n0xF5A5\t0x64FB\n0xF5A6\t0x6522\n0xF5A7\t0x6529\n0xF5A8\t0xFA41\n0xF5A9\t0x6567\n0xF5AA\t0x659D\n0xF5AB\t0xFA42\n0xF5AC\t0x6600\n0xF5AD\t0x6609\n0xF5AE\t0x6615\n0xF5AF\t0x661E\n0xF5B0\t0x663A\n0xF5B1\t0x6622\n0xF5B2\t0x6624\n0xF5B3\t0x662B\n0xF5B4\t0x6630\n0xF5B5\t0x6631\n0xF5B6\t0x6633\n0xF5B7\t0x66FB\n0xF5B8\t0x6648\n0xF5B9\t0x664C\n0xF5BA\t0x231C4\n0xF5BB\t0x6659\n0xF5BC\t0x665A\n0xF5BD\t0x6661\n0xF5BE\t0x6665\n0xF5BF\t0x6673\n0xF5C0\t0x6677\n0xF5C1\t0x6678\n0xF5C2\t0x668D\n0xF5C3\t0xFA43\n0xF5C4\t0x66A0\n0xF5C5\t0x66B2\n0xF5C6\t0x66BB\n0xF5C7\t0x66C6\n0xF5C8\t0x66C8\n0xF5C9\t0x3B22\n0xF5CA\t0x66DB\n0xF5CB\t0x66E8\n0xF5CC\t0x66FA\n0xF5CD\t0x6713\n0xF5CE\t0xF929\n0xF5CF\t0x6733\n0xF5D0\t0x6766\n0xF5D1\t0x6747\n0xF5D2\t0x6748\n0xF5D3\t0x677B\n0xF5D4\t0x6781\n0xF5D5\t0x6793\n0xF5D6\t0x6798\n0xF5D7\t0x679B\n0xF5D8\t0x67BB\n0xF5D9\t0x67F9\n0xF5DA\t0x67C0\n0xF5DB\t0x67D7\n0xF5DC\t0x67FC\n0xF5DD\t0x6801\n0xF5DE\t0x6852\n0xF5DF\t0x681D\n0xF5E0\t0x682C\n0xF5E1\t0x6831\n0xF5E2\t0x685B\n0xF5E3\t0x6872\n0xF5E4\t0x6875\n0xF5E5\t0xFA44\n0xF5E6\t0x68A3\n0xF5E7\t0x68A5\n0xF5E8\t0x68B2\n0xF5E9\t0x68C8\n0xF5EA\t0x68D0\n0xF5EB\t0x68E8\n0xF5EC\t0x68ED\n0xF5ED\t0x68F0\n0xF5EE\t0x68F1\n0xF5EF\t0x68FC\n0xF5F0\t0x690A\n0xF5F1\t0x6949\n0xF5F2\t0x235C4\n0xF5F3\t0x6935\n0xF5F4\t0x6942\n0xF5F5\t0x6957\n0xF5F6\t0x6963\n0xF5F7\t0x6964\n0xF5F8\t0x6968\n0xF5F9\t0x6980\n0xF5FA\t0xFA14\n0xF5FB\t0x69A5\n0xF5FC\t0x69AD\n0xF5FD\t0x69CF\n0xF5FE\t0x3BB6\n0xF6A1\t0x3BC3\n0xF6A2\t0x69E2\n0xF6A3\t0x69E9\n0xF6A4\t0x69EA\n0xF6A5\t0x69F5\n0xF6A6\t0x69F6\n0xF6A7\t0x6A0F\n0xF6A8\t0x6A15\n0xF6A9\t0x2373F\n0xF6AA\t0x6A3B\n0xF6AB\t0x6A3E\n0xF6AC\t0x6A45\n0xF6AD\t0x6A50\n0xF6AE\t0x6A56\n0xF6AF\t0x6A5B\n0xF6B0\t0x6A6B\n0xF6B1\t0x6A73\n0xF6B2\t0x23763\n0xF6B3\t0x6A89\n0xF6B4\t0x6A94\n0xF6B5\t0x6A9D\n0xF6B6\t0x6A9E\n0xF6B7\t0x6AA5\n0xF6B8\t0x6AE4\n0xF6B9\t0x6AE7\n0xF6BA\t0x3C0F\n0xF6BB\t0xF91D\n0xF6BC\t0x6B1B\n0xF6BD\t0x6B1E\n0xF6BE\t0x6B2C\n0xF6BF\t0x6B35\n0xF6C0\t0x6B46\n0xF6C1\t0x6B56\n0xF6C2\t0x6B60\n0xF6C3\t0x6B65\n0xF6C4\t0x6B67\n0xF6C5\t0x6B77\n0xF6C6\t0x6B82\n0xF6C7\t0x6BA9\n0xF6C8\t0x6BAD\n0xF6C9\t0xF970\n0xF6CA\t0x6BCF\n0xF6CB\t0x6BD6\n0xF6CC\t0x6BD7\n0xF6CD\t0x6BFF\n0xF6CE\t0x6C05\n0xF6CF\t0x6C10\n0xF6D0\t0x6C33\n0xF6D1\t0x6C59\n0xF6D2\t0x6C5C\n0xF6D3\t0x6CAA\n0xF6D4\t0x6C74\n0xF6D5\t0x6C76\n0xF6D6\t0x6C85\n0xF6D7\t0x6C86\n0xF6D8\t0x6C98\n0xF6D9\t0x6C9C\n0xF6DA\t0x6CFB\n0xF6DB\t0x6CC6\n0xF6DC\t0x6CD4\n0xF6DD\t0x6CE0\n0xF6DE\t0x6CEB\n0xF6DF\t0x6CEE\n0xF6E0\t0x23CFE\n0xF6E1\t0x6D04\n0xF6E2\t0x6D0E\n0xF6E3\t0x6D2E\n0xF6E4\t0x6D31\n0xF6E5\t0x6D39\n0xF6E6\t0x6D3F\n0xF6E7\t0x6D58\n0xF6E8\t0x6D65\n0xF6E9\t0xFA45\n0xF6EA\t0x6D82\n0xF6EB\t0x6D87\n0xF6EC\t0x6D89\n0xF6ED\t0x6D94\n0xF6EE\t0x6DAA\n0xF6EF\t0x6DAC\n0xF6F0\t0x6DBF\n0xF6F1\t0x6DC4\n0xF6F2\t0x6DD6\n0xF6F3\t0x6DDA\n0xF6F4\t0x6DDB\n0xF6F5\t0x6DDD\n0xF6F6\t0x6DFC\n0xF6F7\t0xFA46\n0xF6F8\t0x6E34\n0xF6F9\t0x6E44\n0xF6FA\t0x6E5C\n0xF6FB\t0x6E5E\n0xF6FC\t0x6EAB\n0xF6FD\t0x6EB1\n0xF6FE\t0x6EC1\n0xF7A1\t0x6EC7\n0xF7A2\t0x6ECE\n0xF7A3\t0x6F10\n0xF7A4\t0x6F1A\n0xF7A5\t0xFA47\n0xF7A6\t0x6F2A\n0xF7A7\t0x6F2F\n0xF7A8\t0x6F33\n0xF7A9\t0x6F51\n0xF7AA\t0x6F59\n0xF7AB\t0x6F5E\n0xF7AC\t0x6F61\n0xF7AD\t0x6F62\n0xF7AE\t0x6F7E\n0xF7AF\t0x6F88\n0xF7B0\t0x6F8C\n0xF7B1\t0x6F8D\n0xF7B2\t0x6F94\n0xF7B3\t0x6FA0\n0xF7B4\t0x6FA7\n0xF7B5\t0x6FB6\n0xF7B6\t0x6FBC\n0xF7B7\t0x6FC7\n0xF7B8\t0x6FCA\n0xF7B9\t0x6FF9\n0xF7BA\t0x6FF0\n0xF7BB\t0x6FF5\n0xF7BC\t0x7005\n0xF7BD\t0x7006\n0xF7BE\t0x7028\n0xF7BF\t0x704A\n0xF7C0\t0x705D\n0xF7C1\t0x705E\n0xF7C2\t0x704E\n0xF7C3\t0x7064\n0xF7C4\t0x7075\n0xF7C5\t0x7085\n0xF7C6\t0x70A4\n0xF7C7\t0x70AB\n0xF7C8\t0x70B7\n0xF7C9\t0x70D4\n0xF7CA\t0x70D8\n0xF7CB\t0x70E4\n0xF7CC\t0x710F\n0xF7CD\t0x712B\n0xF7CE\t0x711E\n0xF7CF\t0x7120\n0xF7D0\t0x712E\n0xF7D1\t0x7130\n0xF7D2\t0x7146\n0xF7D3\t0x7147\n0xF7D4\t0x7151\n0xF7D5\t0xFA48\n0xF7D6\t0x7152\n0xF7D7\t0x715C\n0xF7D8\t0x7160\n0xF7D9\t0x7168\n0xF7DA\t0xFA15\n0xF7DB\t0x7185\n0xF7DC\t0x7187\n0xF7DD\t0x7192\n0xF7DE\t0x71C1\n0xF7DF\t0x71BA\n0xF7E0\t0x71C4\n0xF7E1\t0x71FE\n0xF7E2\t0x7200\n0xF7E3\t0x7215\n0xF7E4\t0x7255\n0xF7E5\t0x7256\n0xF7E6\t0x3E3F\n0xF7E7\t0x728D\n0xF7E8\t0x729B\n0xF7E9\t0x72BE\n0xF7EA\t0x72C0\n0xF7EB\t0x72FB\n0xF7EC\t0x247F1\n0xF7ED\t0x7327\n0xF7EE\t0x7328\n0xF7EF\t0xFA16\n0xF7F0\t0x7350\n0xF7F1\t0x7366\n0xF7F2\t0x737C\n0xF7F3\t0x7395\n0xF7F4\t0x739F\n0xF7F5\t0x73A0\n0xF7F6\t0x73A2\n0xF7F7\t0x73A6\n0xF7F8\t0x73AB\n0xF7F9\t0x73C9\n0xF7FA\t0x73CF\n0xF7FB\t0x73D6\n0xF7FC\t0x73D9\n0xF7FD\t0x73E3\n0xF7FE\t0x73E9\n0xF8A1\t0x7407\n0xF8A2\t0x740A\n0xF8A3\t0x741A\n0xF8A4\t0x741B\n0xF8A5\t0xFA4A\n0xF8A6\t0x7426\n0xF8A7\t0x7428\n0xF8A8\t0x742A\n0xF8A9\t0x742B\n0xF8AA\t0x742C\n0xF8AB\t0x742E\n0xF8AC\t0x742F\n0xF8AD\t0x7430\n0xF8AE\t0x7444\n0xF8AF\t0x7446\n0xF8B0\t0x7447\n0xF8B1\t0x744B\n0xF8B2\t0x7457\n0xF8B3\t0x7462\n0xF8B4\t0x746B\n0xF8B5\t0x746D\n0xF8B6\t0x7486\n0xF8B7\t0x7487\n0xF8B8\t0x7489\n0xF8B9\t0x7498\n0xF8BA\t0x749C\n0xF8BB\t0x749F\n0xF8BC\t0x74A3\n0xF8BD\t0x7490\n0xF8BE\t0x74A6\n0xF8BF\t0x74A8\n0xF8C0\t0x74A9\n0xF8C1\t0x74B5\n0xF8C2\t0x74BF\n0xF8C3\t0x74C8\n0xF8C4\t0x74C9\n0xF8C5\t0x74DA\n0xF8C6\t0x74FF\n0xF8C7\t0x7501\n0xF8C8\t0x7517\n0xF8C9\t0x752F\n0xF8CA\t0x756F\n0xF8CB\t0x7579\n0xF8CC\t0x7592\n0xF8CD\t0x3F72\n0xF8CE\t0x75CE\n0xF8CF\t0x75E4\n0xF8D0\t0x7600\n0xF8D1\t0x7602\n0xF8D2\t0x7608\n0xF8D3\t0x7615\n0xF8D4\t0x7616\n0xF8D5\t0x7619\n0xF8D6\t0x761E\n0xF8D7\t0x762D\n0xF8D8\t0x7635\n0xF8D9\t0x7643\n0xF8DA\t0x764B\n0xF8DB\t0x7664\n0xF8DC\t0x7665\n0xF8DD\t0x766D\n0xF8DE\t0x766F\n0xF8DF\t0x7671\n0xF8E0\t0x7681\n0xF8E1\t0x769B\n0xF8E2\t0x769D\n0xF8E3\t0x769E\n0xF8E4\t0x76A6\n0xF8E5\t0x76AA\n0xF8E6\t0x76B6\n0xF8E7\t0x76C5\n0xF8E8\t0x76CC\n0xF8E9\t0x76CE\n0xF8EA\t0x76D4\n0xF8EB\t0x76E6\n0xF8EC\t0x76F1\n0xF8ED\t0x76FC\n0xF8EE\t0x770A\n0xF8EF\t0x7719\n0xF8F0\t0x7734\n0xF8F1\t0x7736\n0xF8F2\t0x7746\n0xF8F3\t0x774D\n0xF8F4\t0x774E\n0xF8F5\t0x775C\n0xF8F6\t0x775F\n0xF8F7\t0x7762\n0xF8F8\t0x777A\n0xF8F9\t0x7780\n0xF8FA\t0x7794\n0xF8FB\t0x77AA\n0xF8FC\t0x77E0\n0xF8FD\t0x782D\n0xF8FE\t0x2548E\n0xF9A1\t0x7843\n0xF9A2\t0x784E\n0xF9A3\t0x784F\n0xF9A4\t0x7851\n0xF9A5\t0x7868\n0xF9A6\t0x786E\n0xF9A7\t0xFA4B\n0xF9A8\t0x78B0\n0xF9A9\t0x2550E\n0xF9AA\t0x78AD\n0xF9AB\t0x78E4\n0xF9AC\t0x78F2\n0xF9AD\t0x7900\n0xF9AE\t0x78F7\n0xF9AF\t0x791C\n0xF9B0\t0x792E\n0xF9B1\t0x7931\n0xF9B2\t0x7934\n0xF9B3\t0xFA4C\n0xF9B4\t0xFA4D\n0xF9B5\t0x7945\n0xF9B6\t0x7946\n0xF9B7\t0xFA4E\n0xF9B8\t0xFA4F\n0xF9B9\t0xFA50\n0xF9BA\t0x795C\n0xF9BB\t0xFA51\n0xF9BC\t0xFA19\n0xF9BD\t0xFA1A\n0xF9BE\t0x7979\n0xF9BF\t0xFA52\n0xF9C0\t0xFA53\n0xF9C1\t0xFA1B\n0xF9C2\t0x7998\n0xF9C3\t0x79B1\n0xF9C4\t0x79B8\n0xF9C5\t0x79C8\n0xF9C6\t0x79CA\n0xF9C7\t0x25771\n0xF9C8\t0x79D4\n0xF9C9\t0x79DE\n0xF9CA\t0x79EB\n0xF9CB\t0x79ED\n0xF9CC\t0x7A03\n0xF9CD\t0xFA54\n0xF9CE\t0x7A39\n0xF9CF\t0x7A5D\n0xF9D0\t0x7A6D\n0xF9D1\t0xFA55\n0xF9D2\t0x7A85\n0xF9D3\t0x7AA0\n0xF9D4\t0x259C4\n0xF9D5\t0x7AB3\n0xF9D6\t0x7ABB\n0xF9D7\t0x7ACE\n0xF9D8\t0x7AEB\n0xF9D9\t0x7AFD\n0xF9DA\t0x7B12\n0xF9DB\t0x7B2D\n0xF9DC\t0x7B3B\n0xF9DD\t0x7B47\n0xF9DE\t0x7B4E\n0xF9DF\t0x7B60\n0xF9E0\t0x7B6D\n0xF9E1\t0x7B6F\n0xF9E2\t0x7B72\n0xF9E3\t0x7B9E\n0xF9E4\t0xFA56\n0xF9E5\t0x7BD7\n0xF9E6\t0x7BD9\n0xF9E7\t0x7C01\n0xF9E8\t0x7C31\n0xF9E9\t0x7C1E\n0xF9EA\t0x7C20\n0xF9EB\t0x7C33\n0xF9EC\t0x7C36\n0xF9ED\t0x4264\n0xF9EE\t0x25DA1\n0xF9EF\t0x7C59\n0xF9F0\t0x7C6D\n0xF9F1\t0x7C79\n0xF9F2\t0x7C8F\n0xF9F3\t0x7C94\n0xF9F4\t0x7CA0\n0xF9F5\t0x7CBC\n0xF9F6\t0x7CD5\n0xF9F7\t0x7CD9\n0xF9F8\t0x7CDD\n0xF9F9\t0x7D07\n0xF9FA\t0x7D08\n0xF9FB\t0x7D13\n0xF9FC\t0x7D1D\n0xF9FD\t0x7D23\n0xF9FE\t0x7D31\n0xFAA1\t0x7D41\n0xFAA2\t0x7D48\n0xFAA3\t0x7D53\n0xFAA4\t0x7D5C\n0xFAA5\t0x7D7A\n0xFAA6\t0x7D83\n0xFAA7\t0x7D8B\n0xFAA8\t0x7DA0\n0xFAA9\t0x7DA6\n0xFAAA\t0x7DC2\n0xFAAB\t0x7DCC\n0xFAAC\t0x7DD6\n0xFAAD\t0x7DE3\n0xFAAE\t0xFA57\n0xFAAF\t0x7E28\n0xFAB0\t0x7E08\n0xFAB1\t0x7E11\n0xFAB2\t0x7E15\n0xFAB3\t0xFA59\n0xFAB4\t0x7E47\n0xFAB5\t0x7E52\n0xFAB6\t0x7E61\n0xFAB7\t0x7E8A\n0xFAB8\t0x7E8D\n0xFAB9\t0x7F47\n0xFABA\t0xFA5A\n0xFABB\t0x7F91\n0xFABC\t0x7F97\n0xFABD\t0x7FBF\n0xFABE\t0x7FCE\n0xFABF\t0x7FDB\n0xFAC0\t0x7FDF\n0xFAC1\t0x7FEC\n0xFAC2\t0x7FEE\n0xFAC3\t0x7FFA\n0xFAC4\t0xFA5B\n0xFAC5\t0x8014\n0xFAC6\t0x8026\n0xFAC7\t0x8035\n0xFAC8\t0x8037\n0xFAC9\t0x803C\n0xFACA\t0x80CA\n0xFACB\t0x80D7\n0xFACC\t0x80E0\n0xFACD\t0x80F3\n0xFACE\t0x8118\n0xFACF\t0x814A\n0xFAD0\t0x8160\n0xFAD1\t0x8167\n0xFAD2\t0x8168\n0xFAD3\t0x816D\n0xFAD4\t0x81BB\n0xFAD5\t0x81CA\n0xFAD6\t0x81CF\n0xFAD7\t0x81D7\n0xFAD8\t0xFA5C\n0xFAD9\t0x4453\n0xFADA\t0x445B\n0xFADB\t0x8260\n0xFADC\t0x8274\n0xFADD\t0x26AFF\n0xFADE\t0x828E\n0xFADF\t0x82A1\n0xFAE0\t0x82A3\n0xFAE1\t0x82A4\n0xFAE2\t0x82A9\n0xFAE3\t0x82AE\n0xFAE4\t0x82B7\n0xFAE5\t0x82BE\n0xFAE6\t0x82BF\n0xFAE7\t0x82C6\n0xFAE8\t0x82D5\n0xFAE9\t0x82FD\n0xFAEA\t0x82FE\n0xFAEB\t0x8300\n0xFAEC\t0x8301\n0xFAED\t0x8362\n0xFAEE\t0x8322\n0xFAEF\t0x832D\n0xFAF0\t0x833A\n0xFAF1\t0x8343\n0xFAF2\t0x8347\n0xFAF3\t0x8351\n0xFAF4\t0x8355\n0xFAF5\t0x837D\n0xFAF6\t0x8386\n0xFAF7\t0x8392\n0xFAF8\t0x8398\n0xFAF9\t0x83A7\n0xFAFA\t0x83A9\n0xFAFB\t0x83BF\n0xFAFC\t0x83C0\n0xFAFD\t0x83C7\n0xFAFE\t0x83CF\n0xFBA1\t0x83D1\n0xFBA2\t0x83E1\n0xFBA3\t0x83EA\n0xFBA4\t0x8401\n0xFBA5\t0x8406\n0xFBA6\t0x840A\n0xFBA7\t0xFA5F\n0xFBA8\t0x8448\n0xFBA9\t0x845F\n0xFBAA\t0x8470\n0xFBAB\t0x8473\n0xFBAC\t0x8485\n0xFBAD\t0x849E\n0xFBAE\t0x84AF\n0xFBAF\t0x84B4\n0xFBB0\t0x84BA\n0xFBB1\t0x84C0\n0xFBB2\t0x84C2\n0xFBB3\t0x26E40\n0xFBB4\t0x8532\n0xFBB5\t0x851E\n0xFBB6\t0x8523\n0xFBB7\t0x852F\n0xFBB8\t0x8559\n0xFBB9\t0x8564\n0xFBBA\t0xFA1F\n0xFBBB\t0x85AD\n0xFBBC\t0x857A\n0xFBBD\t0x858C\n0xFBBE\t0x858F\n0xFBBF\t0x85A2\n0xFBC0\t0x85B0\n0xFBC1\t0x85CB\n0xFBC2\t0x85CE\n0xFBC3\t0x85ED\n0xFBC4\t0x8612\n0xFBC5\t0x85FF\n0xFBC6\t0x8604\n0xFBC7\t0x8605\n0xFBC8\t0x8610\n0xFBC9\t0x270F4\n0xFBCA\t0x8618\n0xFBCB\t0x8629\n0xFBCC\t0x8638\n0xFBCD\t0x8657\n0xFBCE\t0x865B\n0xFBCF\t0xF936\n0xFBD0\t0x8662\n0xFBD1\t0x459D\n0xFBD2\t0x866C\n0xFBD3\t0x8675\n0xFBD4\t0x8698\n0xFBD5\t0x86B8\n0xFBD6\t0x86FA\n0xFBD7\t0x86FC\n0xFBD8\t0x86FD\n0xFBD9\t0x870B\n0xFBDA\t0x8771\n0xFBDB\t0x8787\n0xFBDC\t0x8788\n0xFBDD\t0x87AC\n0xFBDE\t0x87AD\n0xFBDF\t0x87B5\n0xFBE0\t0x45EA\n0xFBE1\t0x87D6\n0xFBE2\t0x87EC\n0xFBE3\t0x8806\n0xFBE4\t0x880A\n0xFBE5\t0x8810\n0xFBE6\t0x8814\n0xFBE7\t0x881F\n0xFBE8\t0x8898\n0xFBE9\t0x88AA\n0xFBEA\t0x88CA\n0xFBEB\t0x88CE\n0xFBEC\t0x27684\n0xFBED\t0x88F5\n0xFBEE\t0x891C\n0xFBEF\t0xFA60\n0xFBF0\t0x8918\n0xFBF1\t0x8919\n0xFBF2\t0x891A\n0xFBF3\t0x8927\n0xFBF4\t0x8930\n0xFBF5\t0x8932\n0xFBF6\t0x8939\n0xFBF7\t0x8940\n0xFBF8\t0x8994\n0xFBF9\t0xFA61\n0xFBFA\t0x89D4\n0xFBFB\t0x89E5\n0xFBFC\t0x89F6\n0xFBFD\t0x8A12\n0xFBFE\t0x8A15\n0xFCA1\t0x8A22\n0xFCA2\t0x8A37\n0xFCA3\t0x8A47\n0xFCA4\t0x8A4E\n0xFCA5\t0x8A5D\n0xFCA6\t0x8A61\n0xFCA7\t0x8A75\n0xFCA8\t0x8A79\n0xFCA9\t0x8AA7\n0xFCAA\t0x8AD0\n0xFCAB\t0x8ADF\n0xFCAC\t0x8AF4\n0xFCAD\t0x8AF6\n0xFCAE\t0xFA22\n0xFCAF\t0xFA62\n0xFCB0\t0xFA63\n0xFCB1\t0x8B46\n0xFCB2\t0x8B54\n0xFCB3\t0x8B59\n0xFCB4\t0x8B69\n0xFCB5\t0x8B9D\n0xFCB6\t0x8C49\n0xFCB7\t0x8C68\n0xFCB8\t0xFA64\n0xFCB9\t0x8CE1\n0xFCBA\t0x8CF4\n0xFCBB\t0x8CF8\n0xFCBC\t0x8CFE\n0xFCBD\t0xFA65\n0xFCBE\t0x8D12\n0xFCBF\t0x8D1B\n0xFCC0\t0x8DAF\n0xFCC1\t0x8DCE\n0xFCC2\t0x8DD1\n0xFCC3\t0x8DD7\n0xFCC4\t0x8E20\n0xFCC5\t0x8E23\n0xFCC6\t0x8E3D\n0xFCC7\t0x8E70\n0xFCC8\t0x8E7B\n0xFCC9\t0x28277\n0xFCCA\t0x8EC0\n0xFCCB\t0x4844\n0xFCCC\t0x8EFA\n0xFCCD\t0x8F1E\n0xFCCE\t0x8F2D\n0xFCCF\t0x8F36\n0xFCD0\t0x8F54\n0xFCD1\t0x283CD\n0xFCD2\t0x8FA6\n0xFCD3\t0x8FB5\n0xFCD4\t0x8FE4\n0xFCD5\t0x8FE8\n0xFCD6\t0x8FEE\n0xFCD7\t0x9008\n0xFCD8\t0x902D\n0xFCD9\t0xFA67\n0xFCDA\t0x9088\n0xFCDB\t0x9095\n0xFCDC\t0x9097\n0xFCDD\t0x9099\n0xFCDE\t0x909B\n0xFCDF\t0x90A2\n0xFCE0\t0x90B3\n0xFCE1\t0x90BE\n0xFCE2\t0x90C4\n0xFCE3\t0x90C5\n0xFCE4\t0x90C7\n0xFCE5\t0x90D7\n0xFCE6\t0x90DD\n0xFCE7\t0x90DE\n0xFCE8\t0x90EF\n0xFCE9\t0x90F4\n0xFCEA\t0xFA26\n0xFCEB\t0x9114\n0xFCEC\t0x9115\n0xFCED\t0x9116\n0xFCEE\t0x9122\n0xFCEF\t0x9123\n0xFCF0\t0x9127\n0xFCF1\t0x912F\n0xFCF2\t0x9131\n0xFCF3\t0x9134\n0xFCF4\t0x913D\n0xFCF5\t0x9148\n0xFCF6\t0x915B\n0xFCF7\t0x9183\n0xFCF8\t0x919E\n0xFCF9\t0x91AC\n0xFCFA\t0x91B1\n0xFCFB\t0x91BC\n0xFCFC\t0x91D7\n0xFCFD\t0x91FB\n0xFCFE\t0x91E4\n0xFDA1\t0x91E5\n0xFDA2\t0x91ED\n0xFDA3\t0x91F1\n0xFDA4\t0x9207\n0xFDA5\t0x9210\n0xFDA6\t0x9238\n0xFDA7\t0x9239\n0xFDA8\t0x923A\n0xFDA9\t0x923C\n0xFDAA\t0x9240\n0xFDAB\t0x9243\n0xFDAC\t0x924F\n0xFDAD\t0x9278\n0xFDAE\t0x9288\n0xFDAF\t0x92C2\n0xFDB0\t0x92CB\n0xFDB1\t0x92CC\n0xFDB2\t0x92D3\n0xFDB3\t0x92E0\n0xFDB4\t0x92FF\n0xFDB5\t0x9304\n0xFDB6\t0x931F\n0xFDB7\t0x9321\n0xFDB8\t0x9325\n0xFDB9\t0x9348\n0xFDBA\t0x9349\n0xFDBB\t0x934A\n0xFDBC\t0x9364\n0xFDBD\t0x9365\n0xFDBE\t0x936A\n0xFDBF\t0x9370\n0xFDC0\t0x939B\n0xFDC1\t0x93A3\n0xFDC2\t0x93BA\n0xFDC3\t0x93C6\n0xFDC4\t0x93DE\n0xFDC5\t0x93DF\n0xFDC6\t0x9404\n0xFDC7\t0x93FD\n0xFDC8\t0x9433\n0xFDC9\t0x944A\n0xFDCA\t0x9463\n0xFDCB\t0x946B\n0xFDCC\t0x9471\n0xFDCD\t0x9472\n0xFDCE\t0x958E\n0xFDCF\t0x959F\n0xFDD0\t0x95A6\n0xFDD1\t0x95A9\n0xFDD2\t0x95AC\n0xFDD3\t0x95B6\n0xFDD4\t0x95BD\n0xFDD5\t0x95CB\n0xFDD6\t0x95D0\n0xFDD7\t0x95D3\n0xFDD8\t0x49B0\n0xFDD9\t0x95DA\n0xFDDA\t0x95DE\n0xFDDB\t0x9658\n0xFDDC\t0x9684\n0xFDDD\t0xF9DC\n0xFDDE\t0x969D\n0xFDDF\t0x96A4\n0xFDE0\t0x96A5\n0xFDE1\t0x96D2\n0xFDE2\t0x96DE\n0xFDE3\t0xFA68\n0xFDE4\t0x96E9\n0xFDE5\t0x96EF\n0xFDE6\t0x9733\n0xFDE7\t0x973B\n0xFDE8\t0x974D\n0xFDE9\t0x974E\n0xFDEA\t0x974F\n0xFDEB\t0x975A\n0xFDEC\t0x976E\n0xFDED\t0x9773\n0xFDEE\t0x9795\n0xFDEF\t0x97AE\n0xFDF0\t0x97BA\n0xFDF1\t0x97C1\n0xFDF2\t0x97C9\n0xFDF3\t0x97DE\n0xFDF4\t0x97DB\n0xFDF5\t0x97F4\n0xFDF6\t0xFA69\n0xFDF7\t0x980A\n0xFDF8\t0x981E\n0xFDF9\t0x982B\n0xFDFA\t0x9830\n0xFDFB\t0xFA6A\n0xFDFC\t0x9852\n0xFDFD\t0x9853\n0xFDFE\t0x9856\n0xFEA1\t0x9857\n0xFEA2\t0x9859\n0xFEA3\t0x985A\n0xFEA4\t0xF9D0\n0xFEA5\t0x9865\n0xFEA6\t0x986C\n0xFEA7\t0x98BA\n0xFEA8\t0x98C8\n0xFEA9\t0x98E7\n0xFEAA\t0x9958\n0xFEAB\t0x999E\n0xFEAC\t0x9A02\n0xFEAD\t0x9A03\n0xFEAE\t0x9A24\n0xFEAF\t0x9A2D\n0xFEB0\t0x9A2E\n0xFEB1\t0x9A38\n0xFEB2\t0x9A4A\n0xFEB3\t0x9A4E\n0xFEB4\t0x9A52\n0xFEB5\t0x9AB6\n0xFEB6\t0x9AC1\n0xFEB7\t0x9AC3\n0xFEB8\t0x9ACE\n0xFEB9\t0x9AD6\n0xFEBA\t0x9AF9\n0xFEBB\t0x9B02\n0xFEBC\t0x9B08\n0xFEBD\t0x9B20\n0xFEBE\t0x4C17\n0xFEBF\t0x9B2D\n0xFEC0\t0x9B5E\n0xFEC1\t0x9B79\n0xFEC2\t0x9B66\n0xFEC3\t0x9B72\n0xFEC4\t0x9B75\n0xFEC5\t0x9B84\n0xFEC6\t0x9B8A\n0xFEC7\t0x9B8F\n0xFEC8\t0x9B9E\n0xFEC9\t0x9BA7\n0xFECA\t0x9BC1\n0xFECB\t0x9BCE\n0xFECC\t0x9BE5\n0xFECD\t0x9BF8\n0xFECE\t0x9BFD\n0xFECF\t0x9C00\n0xFED0\t0x9C23\n0xFED1\t0x9C41\n0xFED2\t0x9C4F\n0xFED3\t0x9C50\n0xFED4\t0x9C53\n0xFED5\t0x9C63\n0xFED6\t0x9C65\n0xFED7\t0x9C77\n0xFED8\t0x9D1D\n0xFED9\t0x9D1E\n0xFEDA\t0x9D43\n0xFEDB\t0x9D47\n0xFEDC\t0x9D52\n0xFEDD\t0x9D63\n0xFEDE\t0x9D70\n0xFEDF\t0x9D7C\n0xFEE0\t0x9D8A\n0xFEE1\t0x9D96\n0xFEE2\t0x9DC0\n0xFEE3\t0x9DAC\n0xFEE4\t0x9DBC\n0xFEE5\t0x9DD7\n0xFEE6\t0x2A190\n0xFEE7\t0x9DE7\n0xFEE8\t0x9E07\n0xFEE9\t0x9E15\n0xFEEA\t0x9E7C\n0xFEEB\t0x9E9E\n0xFEEC\t0x9EA4\n0xFEED\t0x9EAC\n0xFEEE\t0x9EAF\n0xFEEF\t0x9EB4\n0xFEF0\t0x9EB5\n0xFEF1\t0x9EC3\n0xFEF2\t0x9ED1\n0xFEF3\t0x9F10\n0xFEF4\t0x9F39\n0xFEF5\t0x9F57\n0xFEF6\t0x9F90\n0xFEF7\t0x9F94\n0xFEF8\t0x9F97\n0xFEF9\t0x9FA2\n0xFEFA\t0x59F8\n0xFEFB\t0x5C5B\n0xFEFC\t0x5E77\n0xFEFD\t0x7626\n0xFEFE\t0x7E6B\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/EUC-JP.IRREVERSIBLE.TXT",
    "content": "0x5C\t0x00A5\n0x7E\t0x203E\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/EUC-JP.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8EA1\t0xFF61\n0x8EA2\t0xFF62\n0x8EA3\t0xFF63\n0x8EA4\t0xFF64\n0x8EA5\t0xFF65\n0x8EA6\t0xFF66\n0x8EA7\t0xFF67\n0x8EA8\t0xFF68\n0x8EA9\t0xFF69\n0x8EAA\t0xFF6A\n0x8EAB\t0xFF6B\n0x8EAC\t0xFF6C\n0x8EAD\t0xFF6D\n0x8EAE\t0xFF6E\n0x8EAF\t0xFF6F\n0x8EB0\t0xFF70\n0x8EB1\t0xFF71\n0x8EB2\t0xFF72\n0x8EB3\t0xFF73\n0x8EB4\t0xFF74\n0x8EB5\t0xFF75\n0x8EB6\t0xFF76\n0x8EB7\t0xFF77\n0x8EB8\t0xFF78\n0x8EB9\t0xFF79\n0x8EBA\t0xFF7A\n0x8EBB\t0xFF7B\n0x8EBC\t0xFF7C\n0x8EBD\t0xFF7D\n0x8EBE\t0xFF7E\n0x8EBF\t0xFF7F\n0x8EC0\t0xFF80\n0x8EC1\t0xFF81\n0x8EC2\t0xFF82\n0x8EC3\t0xFF83\n0x8EC4\t0xFF84\n0x8EC5\t0xFF85\n0x8EC6\t0xFF86\n0x8EC7\t0xFF87\n0x8EC8\t0xFF88\n0x8EC9\t0xFF89\n0x8ECA\t0xFF8A\n0x8ECB\t0xFF8B\n0x8ECC\t0xFF8C\n0x8ECD\t0xFF8D\n0x8ECE\t0xFF8E\n0x8ECF\t0xFF8F\n0x8ED0\t0xFF90\n0x8ED1\t0xFF91\n0x8ED2\t0xFF92\n0x8ED3\t0xFF93\n0x8ED4\t0xFF94\n0x8ED5\t0xFF95\n0x8ED6\t0xFF96\n0x8ED7\t0xFF97\n0x8ED8\t0xFF98\n0x8ED9\t0xFF99\n0x8EDA\t0xFF9A\n0x8EDB\t0xFF9B\n0x8EDC\t0xFF9C\n0x8EDD\t0xFF9D\n0x8EDE\t0xFF9E\n0x8EDF\t0xFF9F\n0x8FA2AF\t0x02D8\n0x8FA2B0\t0x02C7\n0x8FA2B1\t0x00B8\n0x8FA2B2\t0x02D9\n0x8FA2B3\t0x02DD\n0x8FA2B4\t0x00AF\n0x8FA2B5\t0x02DB\n0x8FA2B6\t0x02DA\n0x8FA2B7\t0xFF5E\n0x8FA2B8\t0x0384\n0x8FA2B9\t0x0385\n0x8FA2C2\t0x00A1\n0x8FA2C3\t0x00A6\n0x8FA2C4\t0x00BF\n0x8FA2EB\t0x00BA\n0x8FA2EC\t0x00AA\n0x8FA2ED\t0x00A9\n0x8FA2EE\t0x00AE\n0x8FA2EF\t0x2122\n0x8FA2F0\t0x00A4\n0x8FA2F1\t0x2116\n0x8FA6E1\t0x0386\n0x8FA6E2\t0x0388\n0x8FA6E3\t0x0389\n0x8FA6E4\t0x038A\n0x8FA6E5\t0x03AA\n0x8FA6E7\t0x038C\n0x8FA6E9\t0x038E\n0x8FA6EA\t0x03AB\n0x8FA6EC\t0x038F\n0x8FA6F1\t0x03AC\n0x8FA6F2\t0x03AD\n0x8FA6F3\t0x03AE\n0x8FA6F4\t0x03AF\n0x8FA6F5\t0x03CA\n0x8FA6F6\t0x0390\n0x8FA6F7\t0x03CC\n0x8FA6F8\t0x03C2\n0x8FA6F9\t0x03CD\n0x8FA6FA\t0x03CB\n0x8FA6FB\t0x03B0\n0x8FA6FC\t0x03CE\n0x8FA7C2\t0x0402\n0x8FA7C3\t0x0403\n0x8FA7C4\t0x0404\n0x8FA7C5\t0x0405\n0x8FA7C6\t0x0406\n0x8FA7C7\t0x0407\n0x8FA7C8\t0x0408\n0x8FA7C9\t0x0409\n0x8FA7CA\t0x040A\n0x8FA7CB\t0x040B\n0x8FA7CC\t0x040C\n0x8FA7CD\t0x040E\n0x8FA7CE\t0x040F\n0x8FA7F2\t0x0452\n0x8FA7F3\t0x0453\n0x8FA7F4\t0x0454\n0x8FA7F5\t0x0455\n0x8FA7F6\t0x0456\n0x8FA7F7\t0x0457\n0x8FA7F8\t0x0458\n0x8FA7F9\t0x0459\n0x8FA7FA\t0x045A\n0x8FA7FB\t0x045B\n0x8FA7FC\t0x045C\n0x8FA7FD\t0x045E\n0x8FA7FE\t0x045F\n0x8FA9A1\t0x00C6\n0x8FA9A2\t0x0110\n0x8FA9A4\t0x0126\n0x8FA9A6\t0x0132\n0x8FA9A8\t0x0141\n0x8FA9A9\t0x013F\n0x8FA9AB\t0x014A\n0x8FA9AC\t0x00D8\n0x8FA9AD\t0x0152\n0x8FA9AF\t0x0166\n0x8FA9B0\t0x00DE\n0x8FA9C1\t0x00E6\n0x8FA9C2\t0x0111\n0x8FA9C3\t0x00F0\n0x8FA9C4\t0x0127\n0x8FA9C5\t0x0131\n0x8FA9C6\t0x0133\n0x8FA9C7\t0x0138\n0x8FA9C8\t0x0142\n0x8FA9C9\t0x0140\n0x8FA9CA\t0x0149\n0x8FA9CB\t0x014B\n0x8FA9CC\t0x00F8\n0x8FA9CD\t0x0153\n0x8FA9CE\t0x00DF\n0x8FA9CF\t0x0167\n0x8FA9D0\t0x00FE\n0x8FAAA1\t0x00C1\n0x8FAAA2\t0x00C0\n0x8FAAA3\t0x00C4\n0x8FAAA4\t0x00C2\n0x8FAAA5\t0x0102\n0x8FAAA6\t0x01CD\n0x8FAAA7\t0x0100\n0x8FAAA8\t0x0104\n0x8FAAA9\t0x00C5\n0x8FAAAA\t0x00C3\n0x8FAAAB\t0x0106\n0x8FAAAC\t0x0108\n0x8FAAAD\t0x010C\n0x8FAAAE\t0x00C7\n0x8FAAAF\t0x010A\n0x8FAAB0\t0x010E\n0x8FAAB1\t0x00C9\n0x8FAAB2\t0x00C8\n0x8FAAB3\t0x00CB\n0x8FAAB4\t0x00CA\n0x8FAAB5\t0x011A\n0x8FAAB6\t0x0116\n0x8FAAB7\t0x0112\n0x8FAAB8\t0x0118\n0x8FAABA\t0x011C\n0x8FAABB\t0x011E\n0x8FAABC\t0x0122\n0x8FAABD\t0x0120\n0x8FAABE\t0x0124\n0x8FAABF\t0x00CD\n0x8FAAC0\t0x00CC\n0x8FAAC1\t0x00CF\n0x8FAAC2\t0x00CE\n0x8FAAC3\t0x01CF\n0x8FAAC4\t0x0130\n0x8FAAC5\t0x012A\n0x8FAAC6\t0x012E\n0x8FAAC7\t0x0128\n0x8FAAC8\t0x0134\n0x8FAAC9\t0x0136\n0x8FAACA\t0x0139\n0x8FAACB\t0x013D\n0x8FAACC\t0x013B\n0x8FAACD\t0x0143\n0x8FAACE\t0x0147\n0x8FAACF\t0x0145\n0x8FAAD0\t0x00D1\n0x8FAAD1\t0x00D3\n0x8FAAD2\t0x00D2\n0x8FAAD3\t0x00D6\n0x8FAAD4\t0x00D4\n0x8FAAD5\t0x01D1\n0x8FAAD6\t0x0150\n0x8FAAD7\t0x014C\n0x8FAAD8\t0x00D5\n0x8FAAD9\t0x0154\n0x8FAADA\t0x0158\n0x8FAADB\t0x0156\n0x8FAADC\t0x015A\n0x8FAADD\t0x015C\n0x8FAADE\t0x0160\n0x8FAADF\t0x015E\n0x8FAAE0\t0x0164\n0x8FAAE1\t0x0162\n0x8FAAE2\t0x00DA\n0x8FAAE3\t0x00D9\n0x8FAAE4\t0x00DC\n0x8FAAE5\t0x00DB\n0x8FAAE6\t0x016C\n0x8FAAE7\t0x01D3\n0x8FAAE8\t0x0170\n0x8FAAE9\t0x016A\n0x8FAAEA\t0x0172\n0x8FAAEB\t0x016E\n0x8FAAEC\t0x0168\n0x8FAAED\t0x01D7\n0x8FAAEE\t0x01DB\n0x8FAAEF\t0x01D9\n0x8FAAF0\t0x01D5\n0x8FAAF1\t0x0174\n0x8FAAF2\t0x00DD\n0x8FAAF3\t0x0178\n0x8FAAF4\t0x0176\n0x8FAAF5\t0x0179\n0x8FAAF6\t0x017D\n0x8FAAF7\t0x017B\n0x8FABA1\t0x00E1\n0x8FABA2\t0x00E0\n0x8FABA3\t0x00E4\n0x8FABA4\t0x00E2\n0x8FABA5\t0x0103\n0x8FABA6\t0x01CE\n0x8FABA7\t0x0101\n0x8FABA8\t0x0105\n0x8FABA9\t0x00E5\n0x8FABAA\t0x00E3\n0x8FABAB\t0x0107\n0x8FABAC\t0x0109\n0x8FABAD\t0x010D\n0x8FABAE\t0x00E7\n0x8FABAF\t0x010B\n0x8FABB0\t0x010F\n0x8FABB1\t0x00E9\n0x8FABB2\t0x00E8\n0x8FABB3\t0x00EB\n0x8FABB4\t0x00EA\n0x8FABB5\t0x011B\n0x8FABB6\t0x0117\n0x8FABB7\t0x0113\n0x8FABB8\t0x0119\n0x8FABB9\t0x01F5\n0x8FABBA\t0x011D\n0x8FABBB\t0x011F\n0x8FABBD\t0x0121\n0x8FABBE\t0x0125\n0x8FABBF\t0x00ED\n0x8FABC0\t0x00EC\n0x8FABC1\t0x00EF\n0x8FABC2\t0x00EE\n0x8FABC3\t0x01D0\n0x8FABC5\t0x012B\n0x8FABC6\t0x012F\n0x8FABC7\t0x0129\n0x8FABC8\t0x0135\n0x8FABC9\t0x0137\n0x8FABCA\t0x013A\n0x8FABCB\t0x013E\n0x8FABCC\t0x013C\n0x8FABCD\t0x0144\n0x8FABCE\t0x0148\n0x8FABCF\t0x0146\n0x8FABD0\t0x00F1\n0x8FABD1\t0x00F3\n0x8FABD2\t0x00F2\n0x8FABD3\t0x00F6\n0x8FABD4\t0x00F4\n0x8FABD5\t0x01D2\n0x8FABD6\t0x0151\n0x8FABD7\t0x014D\n0x8FABD8\t0x00F5\n0x8FABD9\t0x0155\n0x8FABDA\t0x0159\n0x8FABDB\t0x0157\n0x8FABDC\t0x015B\n0x8FABDD\t0x015D\n0x8FABDE\t0x0161\n0x8FABDF\t0x015F\n0x8FABE0\t0x0165\n0x8FABE1\t0x0163\n0x8FABE2\t0x00FA\n0x8FABE3\t0x00F9\n0x8FABE4\t0x00FC\n0x8FABE5\t0x00FB\n0x8FABE6\t0x016D\n0x8FABE7\t0x01D4\n0x8FABE8\t0x0171\n0x8FABE9\t0x016B\n0x8FABEA\t0x0173\n0x8FABEB\t0x016F\n0x8FABEC\t0x0169\n0x8FABED\t0x01D8\n0x8FABEE\t0x01DC\n0x8FABEF\t0x01DA\n0x8FABF0\t0x01D6\n0x8FABF1\t0x0175\n0x8FABF2\t0x00FD\n0x8FABF3\t0x00FF\n0x8FABF4\t0x0177\n0x8FABF5\t0x017A\n0x8FABF6\t0x017E\n0x8FABF7\t0x017C\n0x8FB0A1\t0x4E02\n0x8FB0A2\t0x4E04\n0x8FB0A3\t0x4E05\n0x8FB0A4\t0x4E0C\n0x8FB0A5\t0x4E12\n0x8FB0A6\t0x4E1F\n0x8FB0A7\t0x4E23\n0x8FB0A8\t0x4E24\n0x8FB0A9\t0x4E28\n0x8FB0AA\t0x4E2B\n0x8FB0AB\t0x4E2E\n0x8FB0AC\t0x4E2F\n0x8FB0AD\t0x4E30\n0x8FB0AE\t0x4E35\n0x8FB0AF\t0x4E40\n0x8FB0B0\t0x4E41\n0x8FB0B1\t0x4E44\n0x8FB0B2\t0x4E47\n0x8FB0B3\t0x4E51\n0x8FB0B4\t0x4E5A\n0x8FB0B5\t0x4E5C\n0x8FB0B6\t0x4E63\n0x8FB0B7\t0x4E68\n0x8FB0B8\t0x4E69\n0x8FB0B9\t0x4E74\n0x8FB0BA\t0x4E75\n0x8FB0BB\t0x4E79\n0x8FB0BC\t0x4E7F\n0x8FB0BD\t0x4E8D\n0x8FB0BE\t0x4E96\n0x8FB0BF\t0x4E97\n0x8FB0C0\t0x4E9D\n0x8FB0C1\t0x4EAF\n0x8FB0C2\t0x4EB9\n0x8FB0C3\t0x4EC3\n0x8FB0C4\t0x4ED0\n0x8FB0C5\t0x4EDA\n0x8FB0C6\t0x4EDB\n0x8FB0C7\t0x4EE0\n0x8FB0C8\t0x4EE1\n0x8FB0C9\t0x4EE2\n0x8FB0CA\t0x4EE8\n0x8FB0CB\t0x4EEF\n0x8FB0CC\t0x4EF1\n0x8FB0CD\t0x4EF3\n0x8FB0CE\t0x4EF5\n0x8FB0CF\t0x4EFD\n0x8FB0D0\t0x4EFE\n0x8FB0D1\t0x4EFF\n0x8FB0D2\t0x4F00\n0x8FB0D3\t0x4F02\n0x8FB0D4\t0x4F03\n0x8FB0D5\t0x4F08\n0x8FB0D6\t0x4F0B\n0x8FB0D7\t0x4F0C\n0x8FB0D8\t0x4F12\n0x8FB0D9\t0x4F15\n0x8FB0DA\t0x4F16\n0x8FB0DB\t0x4F17\n0x8FB0DC\t0x4F19\n0x8FB0DD\t0x4F2E\n0x8FB0DE\t0x4F31\n0x8FB0DF\t0x4F60\n0x8FB0E0\t0x4F33\n0x8FB0E1\t0x4F35\n0x8FB0E2\t0x4F37\n0x8FB0E3\t0x4F39\n0x8FB0E4\t0x4F3B\n0x8FB0E5\t0x4F3E\n0x8FB0E6\t0x4F40\n0x8FB0E7\t0x4F42\n0x8FB0E8\t0x4F48\n0x8FB0E9\t0x4F49\n0x8FB0EA\t0x4F4B\n0x8FB0EB\t0x4F4C\n0x8FB0EC\t0x4F52\n0x8FB0ED\t0x4F54\n0x8FB0EE\t0x4F56\n0x8FB0EF\t0x4F58\n0x8FB0F0\t0x4F5F\n0x8FB0F1\t0x4F63\n0x8FB0F2\t0x4F6A\n0x8FB0F3\t0x4F6C\n0x8FB0F4\t0x4F6E\n0x8FB0F5\t0x4F71\n0x8FB0F6\t0x4F77\n0x8FB0F7\t0x4F78\n0x8FB0F8\t0x4F79\n0x8FB0F9\t0x4F7A\n0x8FB0FA\t0x4F7D\n0x8FB0FB\t0x4F7E\n0x8FB0FC\t0x4F81\n0x8FB0FD\t0x4F82\n0x8FB0FE\t0x4F84\n0x8FB1A1\t0x4F85\n0x8FB1A2\t0x4F89\n0x8FB1A3\t0x4F8A\n0x8FB1A4\t0x4F8C\n0x8FB1A5\t0x4F8E\n0x8FB1A6\t0x4F90\n0x8FB1A7\t0x4F92\n0x8FB1A8\t0x4F93\n0x8FB1A9\t0x4F94\n0x8FB1AA\t0x4F97\n0x8FB1AB\t0x4F99\n0x8FB1AC\t0x4F9A\n0x8FB1AD\t0x4F9E\n0x8FB1AE\t0x4F9F\n0x8FB1AF\t0x4FB2\n0x8FB1B0\t0x4FB7\n0x8FB1B1\t0x4FB9\n0x8FB1B2\t0x4FBB\n0x8FB1B3\t0x4FBC\n0x8FB1B4\t0x4FBD\n0x8FB1B5\t0x4FBE\n0x8FB1B6\t0x4FC0\n0x8FB1B7\t0x4FC1\n0x8FB1B8\t0x4FC5\n0x8FB1B9\t0x4FC6\n0x8FB1BA\t0x4FC8\n0x8FB1BB\t0x4FC9\n0x8FB1BC\t0x4FCB\n0x8FB1BD\t0x4FCC\n0x8FB1BE\t0x4FCD\n0x8FB1BF\t0x4FCF\n0x8FB1C0\t0x4FD2\n0x8FB1C1\t0x4FDC\n0x8FB1C2\t0x4FE0\n0x8FB1C3\t0x4FE2\n0x8FB1C4\t0x4FF0\n0x8FB1C5\t0x4FF2\n0x8FB1C6\t0x4FFC\n0x8FB1C7\t0x4FFD\n0x8FB1C8\t0x4FFF\n0x8FB1C9\t0x5000\n0x8FB1CA\t0x5001\n0x8FB1CB\t0x5004\n0x8FB1CC\t0x5007\n0x8FB1CD\t0x500A\n0x8FB1CE\t0x500C\n0x8FB1CF\t0x500E\n0x8FB1D0\t0x5010\n0x8FB1D1\t0x5013\n0x8FB1D2\t0x5017\n0x8FB1D3\t0x5018\n0x8FB1D4\t0x501B\n0x8FB1D5\t0x501C\n0x8FB1D6\t0x501D\n0x8FB1D7\t0x501E\n0x8FB1D8\t0x5022\n0x8FB1D9\t0x5027\n0x8FB1DA\t0x502E\n0x8FB1DB\t0x5030\n0x8FB1DC\t0x5032\n0x8FB1DD\t0x5033\n0x8FB1DE\t0x5035\n0x8FB1DF\t0x5040\n0x8FB1E0\t0x5041\n0x8FB1E1\t0x5042\n0x8FB1E2\t0x5045\n0x8FB1E3\t0x5046\n0x8FB1E4\t0x504A\n0x8FB1E5\t0x504C\n0x8FB1E6\t0x504E\n0x8FB1E7\t0x5051\n0x8FB1E8\t0x5052\n0x8FB1E9\t0x5053\n0x8FB1EA\t0x5057\n0x8FB1EB\t0x5059\n0x8FB1EC\t0x505F\n0x8FB1ED\t0x5060\n0x8FB1EE\t0x5062\n0x8FB1EF\t0x5063\n0x8FB1F0\t0x5066\n0x8FB1F1\t0x5067\n0x8FB1F2\t0x506A\n0x8FB1F3\t0x506D\n0x8FB1F4\t0x5070\n0x8FB1F5\t0x5071\n0x8FB1F6\t0x503B\n0x8FB1F7\t0x5081\n0x8FB1F8\t0x5083\n0x8FB1F9\t0x5084\n0x8FB1FA\t0x5086\n0x8FB1FB\t0x508A\n0x8FB1FC\t0x508E\n0x8FB1FD\t0x508F\n0x8FB1FE\t0x5090\n0x8FB2A1\t0x5092\n0x8FB2A2\t0x5093\n0x8FB2A3\t0x5094\n0x8FB2A4\t0x5096\n0x8FB2A5\t0x509B\n0x8FB2A6\t0x509C\n0x8FB2A7\t0x509E\n0x8FB2A8\t0x509F\n0x8FB2A9\t0x50A0\n0x8FB2AA\t0x50A1\n0x8FB2AB\t0x50A2\n0x8FB2AC\t0x50AA\n0x8FB2AD\t0x50AF\n0x8FB2AE\t0x50B0\n0x8FB2AF\t0x50B9\n0x8FB2B0\t0x50BA\n0x8FB2B1\t0x50BD\n0x8FB2B2\t0x50C0\n0x8FB2B3\t0x50C3\n0x8FB2B4\t0x50C4\n0x8FB2B5\t0x50C7\n0x8FB2B6\t0x50CC\n0x8FB2B7\t0x50CE\n0x8FB2B8\t0x50D0\n0x8FB2B9\t0x50D3\n0x8FB2BA\t0x50D4\n0x8FB2BB\t0x50D8\n0x8FB2BC\t0x50DC\n0x8FB2BD\t0x50DD\n0x8FB2BE\t0x50DF\n0x8FB2BF\t0x50E2\n0x8FB2C0\t0x50E4\n0x8FB2C1\t0x50E6\n0x8FB2C2\t0x50E8\n0x8FB2C3\t0x50E9\n0x8FB2C4\t0x50EF\n0x8FB2C5\t0x50F1\n0x8FB2C6\t0x50F6\n0x8FB2C7\t0x50FA\n0x8FB2C8\t0x50FE\n0x8FB2C9\t0x5103\n0x8FB2CA\t0x5106\n0x8FB2CB\t0x5107\n0x8FB2CC\t0x5108\n0x8FB2CD\t0x510B\n0x8FB2CE\t0x510C\n0x8FB2CF\t0x510D\n0x8FB2D0\t0x510E\n0x8FB2D1\t0x50F2\n0x8FB2D2\t0x5110\n0x8FB2D3\t0x5117\n0x8FB2D4\t0x5119\n0x8FB2D5\t0x511B\n0x8FB2D6\t0x511C\n0x8FB2D7\t0x511D\n0x8FB2D8\t0x511E\n0x8FB2D9\t0x5123\n0x8FB2DA\t0x5127\n0x8FB2DB\t0x5128\n0x8FB2DC\t0x512C\n0x8FB2DD\t0x512D\n0x8FB2DE\t0x512F\n0x8FB2DF\t0x5131\n0x8FB2E0\t0x5133\n0x8FB2E1\t0x5134\n0x8FB2E2\t0x5135\n0x8FB2E3\t0x5138\n0x8FB2E4\t0x5139\n0x8FB2E5\t0x5142\n0x8FB2E6\t0x514A\n0x8FB2E7\t0x514F\n0x8FB2E8\t0x5153\n0x8FB2E9\t0x5155\n0x8FB2EA\t0x5157\n0x8FB2EB\t0x5158\n0x8FB2EC\t0x515F\n0x8FB2ED\t0x5164\n0x8FB2EE\t0x5166\n0x8FB2EF\t0x517E\n0x8FB2F0\t0x5183\n0x8FB2F1\t0x5184\n0x8FB2F2\t0x518B\n0x8FB2F3\t0x518E\n0x8FB2F4\t0x5198\n0x8FB2F5\t0x519D\n0x8FB2F6\t0x51A1\n0x8FB2F7\t0x51A3\n0x8FB2F8\t0x51AD\n0x8FB2F9\t0x51B8\n0x8FB2FA\t0x51BA\n0x8FB2FB\t0x51BC\n0x8FB2FC\t0x51BE\n0x8FB2FD\t0x51BF\n0x8FB2FE\t0x51C2\n0x8FB3A1\t0x51C8\n0x8FB3A2\t0x51CF\n0x8FB3A3\t0x51D1\n0x8FB3A4\t0x51D2\n0x8FB3A5\t0x51D3\n0x8FB3A6\t0x51D5\n0x8FB3A7\t0x51D8\n0x8FB3A8\t0x51DE\n0x8FB3A9\t0x51E2\n0x8FB3AA\t0x51E5\n0x8FB3AB\t0x51EE\n0x8FB3AC\t0x51F2\n0x8FB3AD\t0x51F3\n0x8FB3AE\t0x51F4\n0x8FB3AF\t0x51F7\n0x8FB3B0\t0x5201\n0x8FB3B1\t0x5202\n0x8FB3B2\t0x5205\n0x8FB3B3\t0x5212\n0x8FB3B4\t0x5213\n0x8FB3B5\t0x5215\n0x8FB3B6\t0x5216\n0x8FB3B7\t0x5218\n0x8FB3B8\t0x5222\n0x8FB3B9\t0x5228\n0x8FB3BA\t0x5231\n0x8FB3BB\t0x5232\n0x8FB3BC\t0x5235\n0x8FB3BD\t0x523C\n0x8FB3BE\t0x5245\n0x8FB3BF\t0x5249\n0x8FB3C0\t0x5255\n0x8FB3C1\t0x5257\n0x8FB3C2\t0x5258\n0x8FB3C3\t0x525A\n0x8FB3C4\t0x525C\n0x8FB3C5\t0x525F\n0x8FB3C6\t0x5260\n0x8FB3C7\t0x5261\n0x8FB3C8\t0x5266\n0x8FB3C9\t0x526E\n0x8FB3CA\t0x5277\n0x8FB3CB\t0x5278\n0x8FB3CC\t0x5279\n0x8FB3CD\t0x5280\n0x8FB3CE\t0x5282\n0x8FB3CF\t0x5285\n0x8FB3D0\t0x528A\n0x8FB3D1\t0x528C\n0x8FB3D2\t0x5293\n0x8FB3D3\t0x5295\n0x8FB3D4\t0x5296\n0x8FB3D5\t0x5297\n0x8FB3D6\t0x5298\n0x8FB3D7\t0x529A\n0x8FB3D8\t0x529C\n0x8FB3D9\t0x52A4\n0x8FB3DA\t0x52A5\n0x8FB3DB\t0x52A6\n0x8FB3DC\t0x52A7\n0x8FB3DD\t0x52AF\n0x8FB3DE\t0x52B0\n0x8FB3DF\t0x52B6\n0x8FB3E0\t0x52B7\n0x8FB3E1\t0x52B8\n0x8FB3E2\t0x52BA\n0x8FB3E3\t0x52BB\n0x8FB3E4\t0x52BD\n0x8FB3E5\t0x52C0\n0x8FB3E6\t0x52C4\n0x8FB3E7\t0x52C6\n0x8FB3E8\t0x52C8\n0x8FB3E9\t0x52CC\n0x8FB3EA\t0x52CF\n0x8FB3EB\t0x52D1\n0x8FB3EC\t0x52D4\n0x8FB3ED\t0x52D6\n0x8FB3EE\t0x52DB\n0x8FB3EF\t0x52DC\n0x8FB3F0\t0x52E1\n0x8FB3F1\t0x52E5\n0x8FB3F2\t0x52E8\n0x8FB3F3\t0x52E9\n0x8FB3F4\t0x52EA\n0x8FB3F5\t0x52EC\n0x8FB3F6\t0x52F0\n0x8FB3F7\t0x52F1\n0x8FB3F8\t0x52F4\n0x8FB3F9\t0x52F6\n0x8FB3FA\t0x52F7\n0x8FB3FB\t0x5300\n0x8FB3FC\t0x5303\n0x8FB3FD\t0x530A\n0x8FB3FE\t0x530B\n0x8FB4A1\t0x530C\n0x8FB4A2\t0x5311\n0x8FB4A3\t0x5313\n0x8FB4A4\t0x5318\n0x8FB4A5\t0x531B\n0x8FB4A6\t0x531C\n0x8FB4A7\t0x531E\n0x8FB4A8\t0x531F\n0x8FB4A9\t0x5325\n0x8FB4AA\t0x5327\n0x8FB4AB\t0x5328\n0x8FB4AC\t0x5329\n0x8FB4AD\t0x532B\n0x8FB4AE\t0x532C\n0x8FB4AF\t0x532D\n0x8FB4B0\t0x5330\n0x8FB4B1\t0x5332\n0x8FB4B2\t0x5335\n0x8FB4B3\t0x533C\n0x8FB4B4\t0x533D\n0x8FB4B5\t0x533E\n0x8FB4B6\t0x5342\n0x8FB4B7\t0x534C\n0x8FB4B8\t0x534B\n0x8FB4B9\t0x5359\n0x8FB4BA\t0x535B\n0x8FB4BB\t0x5361\n0x8FB4BC\t0x5363\n0x8FB4BD\t0x5365\n0x8FB4BE\t0x536C\n0x8FB4BF\t0x536D\n0x8FB4C0\t0x5372\n0x8FB4C1\t0x5379\n0x8FB4C2\t0x537E\n0x8FB4C3\t0x5383\n0x8FB4C4\t0x5387\n0x8FB4C5\t0x5388\n0x8FB4C6\t0x538E\n0x8FB4C7\t0x5393\n0x8FB4C8\t0x5394\n0x8FB4C9\t0x5399\n0x8FB4CA\t0x539D\n0x8FB4CB\t0x53A1\n0x8FB4CC\t0x53A4\n0x8FB4CD\t0x53AA\n0x8FB4CE\t0x53AB\n0x8FB4CF\t0x53AF\n0x8FB4D0\t0x53B2\n0x8FB4D1\t0x53B4\n0x8FB4D2\t0x53B5\n0x8FB4D3\t0x53B7\n0x8FB4D4\t0x53B8\n0x8FB4D5\t0x53BA\n0x8FB4D6\t0x53BD\n0x8FB4D7\t0x53C0\n0x8FB4D8\t0x53C5\n0x8FB4D9\t0x53CF\n0x8FB4DA\t0x53D2\n0x8FB4DB\t0x53D3\n0x8FB4DC\t0x53D5\n0x8FB4DD\t0x53DA\n0x8FB4DE\t0x53DD\n0x8FB4DF\t0x53DE\n0x8FB4E0\t0x53E0\n0x8FB4E1\t0x53E6\n0x8FB4E2\t0x53E7\n0x8FB4E3\t0x53F5\n0x8FB4E4\t0x5402\n0x8FB4E5\t0x5413\n0x8FB4E6\t0x541A\n0x8FB4E7\t0x5421\n0x8FB4E8\t0x5427\n0x8FB4E9\t0x5428\n0x8FB4EA\t0x542A\n0x8FB4EB\t0x542F\n0x8FB4EC\t0x5431\n0x8FB4ED\t0x5434\n0x8FB4EE\t0x5435\n0x8FB4EF\t0x5443\n0x8FB4F0\t0x5444\n0x8FB4F1\t0x5447\n0x8FB4F2\t0x544D\n0x8FB4F3\t0x544F\n0x8FB4F4\t0x545E\n0x8FB4F5\t0x5462\n0x8FB4F6\t0x5464\n0x8FB4F7\t0x5466\n0x8FB4F8\t0x5467\n0x8FB4F9\t0x5469\n0x8FB4FA\t0x546B\n0x8FB4FB\t0x546D\n0x8FB4FC\t0x546E\n0x8FB4FD\t0x5474\n0x8FB4FE\t0x547F\n0x8FB5A1\t0x5481\n0x8FB5A2\t0x5483\n0x8FB5A3\t0x5485\n0x8FB5A4\t0x5488\n0x8FB5A5\t0x5489\n0x8FB5A6\t0x548D\n0x8FB5A7\t0x5491\n0x8FB5A8\t0x5495\n0x8FB5A9\t0x5496\n0x8FB5AA\t0x549C\n0x8FB5AB\t0x549F\n0x8FB5AC\t0x54A1\n0x8FB5AD\t0x54A6\n0x8FB5AE\t0x54A7\n0x8FB5AF\t0x54A9\n0x8FB5B0\t0x54AA\n0x8FB5B1\t0x54AD\n0x8FB5B2\t0x54AE\n0x8FB5B3\t0x54B1\n0x8FB5B4\t0x54B7\n0x8FB5B5\t0x54B9\n0x8FB5B6\t0x54BA\n0x8FB5B7\t0x54BB\n0x8FB5B8\t0x54BF\n0x8FB5B9\t0x54C6\n0x8FB5BA\t0x54CA\n0x8FB5BB\t0x54CD\n0x8FB5BC\t0x54CE\n0x8FB5BD\t0x54E0\n0x8FB5BE\t0x54EA\n0x8FB5BF\t0x54EC\n0x8FB5C0\t0x54EF\n0x8FB5C1\t0x54F6\n0x8FB5C2\t0x54FC\n0x8FB5C3\t0x54FE\n0x8FB5C4\t0x54FF\n0x8FB5C5\t0x5500\n0x8FB5C6\t0x5501\n0x8FB5C7\t0x5505\n0x8FB5C8\t0x5508\n0x8FB5C9\t0x5509\n0x8FB5CA\t0x550C\n0x8FB5CB\t0x550D\n0x8FB5CC\t0x550E\n0x8FB5CD\t0x5515\n0x8FB5CE\t0x552A\n0x8FB5CF\t0x552B\n0x8FB5D0\t0x5532\n0x8FB5D1\t0x5535\n0x8FB5D2\t0x5536\n0x8FB5D3\t0x553B\n0x8FB5D4\t0x553C\n0x8FB5D5\t0x553D\n0x8FB5D6\t0x5541\n0x8FB5D7\t0x5547\n0x8FB5D8\t0x5549\n0x8FB5D9\t0x554A\n0x8FB5DA\t0x554D\n0x8FB5DB\t0x5550\n0x8FB5DC\t0x5551\n0x8FB5DD\t0x5558\n0x8FB5DE\t0x555A\n0x8FB5DF\t0x555B\n0x8FB5E0\t0x555E\n0x8FB5E1\t0x5560\n0x8FB5E2\t0x5561\n0x8FB5E3\t0x5564\n0x8FB5E4\t0x5566\n0x8FB5E5\t0x557F\n0x8FB5E6\t0x5581\n0x8FB5E7\t0x5582\n0x8FB5E8\t0x5586\n0x8FB5E9\t0x5588\n0x8FB5EA\t0x558E\n0x8FB5EB\t0x558F\n0x8FB5EC\t0x5591\n0x8FB5ED\t0x5592\n0x8FB5EE\t0x5593\n0x8FB5EF\t0x5594\n0x8FB5F0\t0x5597\n0x8FB5F1\t0x55A3\n0x8FB5F2\t0x55A4\n0x8FB5F3\t0x55AD\n0x8FB5F4\t0x55B2\n0x8FB5F5\t0x55BF\n0x8FB5F6\t0x55C1\n0x8FB5F7\t0x55C3\n0x8FB5F8\t0x55C6\n0x8FB5F9\t0x55C9\n0x8FB5FA\t0x55CB\n0x8FB5FB\t0x55CC\n0x8FB5FC\t0x55CE\n0x8FB5FD\t0x55D1\n0x8FB5FE\t0x55D2\n0x8FB6A1\t0x55D3\n0x8FB6A2\t0x55D7\n0x8FB6A3\t0x55D8\n0x8FB6A4\t0x55DB\n0x8FB6A5\t0x55DE\n0x8FB6A6\t0x55E2\n0x8FB6A7\t0x55E9\n0x8FB6A8\t0x55F6\n0x8FB6A9\t0x55FF\n0x8FB6AA\t0x5605\n0x8FB6AB\t0x5608\n0x8FB6AC\t0x560A\n0x8FB6AD\t0x560D\n0x8FB6AE\t0x560E\n0x8FB6AF\t0x560F\n0x8FB6B0\t0x5610\n0x8FB6B1\t0x5611\n0x8FB6B2\t0x5612\n0x8FB6B3\t0x5619\n0x8FB6B4\t0x562C\n0x8FB6B5\t0x5630\n0x8FB6B6\t0x5633\n0x8FB6B7\t0x5635\n0x8FB6B8\t0x5637\n0x8FB6B9\t0x5639\n0x8FB6BA\t0x563B\n0x8FB6BB\t0x563C\n0x8FB6BC\t0x563D\n0x8FB6BD\t0x563F\n0x8FB6BE\t0x5640\n0x8FB6BF\t0x5641\n0x8FB6C0\t0x5643\n0x8FB6C1\t0x5644\n0x8FB6C2\t0x5646\n0x8FB6C3\t0x5649\n0x8FB6C4\t0x564B\n0x8FB6C5\t0x564D\n0x8FB6C6\t0x564F\n0x8FB6C7\t0x5654\n0x8FB6C8\t0x565E\n0x8FB6C9\t0x5660\n0x8FB6CA\t0x5661\n0x8FB6CB\t0x5662\n0x8FB6CC\t0x5663\n0x8FB6CD\t0x5666\n0x8FB6CE\t0x5669\n0x8FB6CF\t0x566D\n0x8FB6D0\t0x566F\n0x8FB6D1\t0x5671\n0x8FB6D2\t0x5672\n0x8FB6D3\t0x5675\n0x8FB6D4\t0x5684\n0x8FB6D5\t0x5685\n0x8FB6D6\t0x5688\n0x8FB6D7\t0x568B\n0x8FB6D8\t0x568C\n0x8FB6D9\t0x5695\n0x8FB6DA\t0x5699\n0x8FB6DB\t0x569A\n0x8FB6DC\t0x569D\n0x8FB6DD\t0x569E\n0x8FB6DE\t0x569F\n0x8FB6DF\t0x56A6\n0x8FB6E0\t0x56A7\n0x8FB6E1\t0x56A8\n0x8FB6E2\t0x56A9\n0x8FB6E3\t0x56AB\n0x8FB6E4\t0x56AC\n0x8FB6E5\t0x56AD\n0x8FB6E6\t0x56B1\n0x8FB6E7\t0x56B3\n0x8FB6E8\t0x56B7\n0x8FB6E9\t0x56BE\n0x8FB6EA\t0x56C5\n0x8FB6EB\t0x56C9\n0x8FB6EC\t0x56CA\n0x8FB6ED\t0x56CB\n0x8FB6EE\t0x56CF\n0x8FB6EF\t0x56D0\n0x8FB6F0\t0x56CC\n0x8FB6F1\t0x56CD\n0x8FB6F2\t0x56D9\n0x8FB6F3\t0x56DC\n0x8FB6F4\t0x56DD\n0x8FB6F5\t0x56DF\n0x8FB6F6\t0x56E1\n0x8FB6F7\t0x56E4\n0x8FB6F8\t0x56E5\n0x8FB6F9\t0x56E6\n0x8FB6FA\t0x56E7\n0x8FB6FB\t0x56E8\n0x8FB6FC\t0x56F1\n0x8FB6FD\t0x56EB\n0x8FB6FE\t0x56ED\n0x8FB7A1\t0x56F6\n0x8FB7A2\t0x56F7\n0x8FB7A3\t0x5701\n0x8FB7A4\t0x5702\n0x8FB7A5\t0x5707\n0x8FB7A6\t0x570A\n0x8FB7A7\t0x570C\n0x8FB7A8\t0x5711\n0x8FB7A9\t0x5715\n0x8FB7AA\t0x571A\n0x8FB7AB\t0x571B\n0x8FB7AC\t0x571D\n0x8FB7AD\t0x5720\n0x8FB7AE\t0x5722\n0x8FB7AF\t0x5723\n0x8FB7B0\t0x5724\n0x8FB7B1\t0x5725\n0x8FB7B2\t0x5729\n0x8FB7B3\t0x572A\n0x8FB7B4\t0x572C\n0x8FB7B5\t0x572E\n0x8FB7B6\t0x572F\n0x8FB7B7\t0x5733\n0x8FB7B8\t0x5734\n0x8FB7B9\t0x573D\n0x8FB7BA\t0x573E\n0x8FB7BB\t0x573F\n0x8FB7BC\t0x5745\n0x8FB7BD\t0x5746\n0x8FB7BE\t0x574C\n0x8FB7BF\t0x574D\n0x8FB7C0\t0x5752\n0x8FB7C1\t0x5762\n0x8FB7C2\t0x5765\n0x8FB7C3\t0x5767\n0x8FB7C4\t0x5768\n0x8FB7C5\t0x576B\n0x8FB7C6\t0x576D\n0x8FB7C7\t0x576E\n0x8FB7C8\t0x576F\n0x8FB7C9\t0x5770\n0x8FB7CA\t0x5771\n0x8FB7CB\t0x5773\n0x8FB7CC\t0x5774\n0x8FB7CD\t0x5775\n0x8FB7CE\t0x5777\n0x8FB7CF\t0x5779\n0x8FB7D0\t0x577A\n0x8FB7D1\t0x577B\n0x8FB7D2\t0x577C\n0x8FB7D3\t0x577E\n0x8FB7D4\t0x5781\n0x8FB7D5\t0x5783\n0x8FB7D6\t0x578C\n0x8FB7D7\t0x5794\n0x8FB7D8\t0x5797\n0x8FB7D9\t0x5799\n0x8FB7DA\t0x579A\n0x8FB7DB\t0x579C\n0x8FB7DC\t0x579D\n0x8FB7DD\t0x579E\n0x8FB7DE\t0x579F\n0x8FB7DF\t0x57A1\n0x8FB7E0\t0x5795\n0x8FB7E1\t0x57A7\n0x8FB7E2\t0x57A8\n0x8FB7E3\t0x57A9\n0x8FB7E4\t0x57AC\n0x8FB7E5\t0x57B8\n0x8FB7E6\t0x57BD\n0x8FB7E7\t0x57C7\n0x8FB7E8\t0x57C8\n0x8FB7E9\t0x57CC\n0x8FB7EA\t0x57CF\n0x8FB7EB\t0x57D5\n0x8FB7EC\t0x57DD\n0x8FB7ED\t0x57DE\n0x8FB7EE\t0x57E4\n0x8FB7EF\t0x57E6\n0x8FB7F0\t0x57E7\n0x8FB7F1\t0x57E9\n0x8FB7F2\t0x57ED\n0x8FB7F3\t0x57F0\n0x8FB7F4\t0x57F5\n0x8FB7F5\t0x57F6\n0x8FB7F6\t0x57F8\n0x8FB7F7\t0x57FD\n0x8FB7F8\t0x57FE\n0x8FB7F9\t0x57FF\n0x8FB7FA\t0x5803\n0x8FB7FB\t0x5804\n0x8FB7FC\t0x5808\n0x8FB7FD\t0x5809\n0x8FB7FE\t0x57E1\n0x8FB8A1\t0x580C\n0x8FB8A2\t0x580D\n0x8FB8A3\t0x581B\n0x8FB8A4\t0x581E\n0x8FB8A5\t0x581F\n0x8FB8A6\t0x5820\n0x8FB8A7\t0x5826\n0x8FB8A8\t0x5827\n0x8FB8A9\t0x582D\n0x8FB8AA\t0x5832\n0x8FB8AB\t0x5839\n0x8FB8AC\t0x583F\n0x8FB8AD\t0x5849\n0x8FB8AE\t0x584C\n0x8FB8AF\t0x584D\n0x8FB8B0\t0x584F\n0x8FB8B1\t0x5850\n0x8FB8B2\t0x5855\n0x8FB8B3\t0x585F\n0x8FB8B4\t0x5861\n0x8FB8B5\t0x5864\n0x8FB8B6\t0x5867\n0x8FB8B7\t0x5868\n0x8FB8B8\t0x5878\n0x8FB8B9\t0x587C\n0x8FB8BA\t0x587F\n0x8FB8BB\t0x5880\n0x8FB8BC\t0x5881\n0x8FB8BD\t0x5887\n0x8FB8BE\t0x5888\n0x8FB8BF\t0x5889\n0x8FB8C0\t0x588A\n0x8FB8C1\t0x588C\n0x8FB8C2\t0x588D\n0x8FB8C3\t0x588F\n0x8FB8C4\t0x5890\n0x8FB8C5\t0x5894\n0x8FB8C6\t0x5896\n0x8FB8C7\t0x589D\n0x8FB8C8\t0x58A0\n0x8FB8C9\t0x58A1\n0x8FB8CA\t0x58A2\n0x8FB8CB\t0x58A6\n0x8FB8CC\t0x58A9\n0x8FB8CD\t0x58B1\n0x8FB8CE\t0x58B2\n0x8FB8CF\t0x58C4\n0x8FB8D0\t0x58BC\n0x8FB8D1\t0x58C2\n0x8FB8D2\t0x58C8\n0x8FB8D3\t0x58CD\n0x8FB8D4\t0x58CE\n0x8FB8D5\t0x58D0\n0x8FB8D6\t0x58D2\n0x8FB8D7\t0x58D4\n0x8FB8D8\t0x58D6\n0x8FB8D9\t0x58DA\n0x8FB8DA\t0x58DD\n0x8FB8DB\t0x58E1\n0x8FB8DC\t0x58E2\n0x8FB8DD\t0x58E9\n0x8FB8DE\t0x58F3\n0x8FB8DF\t0x5905\n0x8FB8E0\t0x5906\n0x8FB8E1\t0x590B\n0x8FB8E2\t0x590C\n0x8FB8E3\t0x5912\n0x8FB8E4\t0x5913\n0x8FB8E5\t0x5914\n0x8FB8E6\t0x8641\n0x8FB8E7\t0x591D\n0x8FB8E8\t0x5921\n0x8FB8E9\t0x5923\n0x8FB8EA\t0x5924\n0x8FB8EB\t0x5928\n0x8FB8EC\t0x592F\n0x8FB8ED\t0x5930\n0x8FB8EE\t0x5933\n0x8FB8EF\t0x5935\n0x8FB8F0\t0x5936\n0x8FB8F1\t0x593F\n0x8FB8F2\t0x5943\n0x8FB8F3\t0x5946\n0x8FB8F4\t0x5952\n0x8FB8F5\t0x5953\n0x8FB8F6\t0x5959\n0x8FB8F7\t0x595B\n0x8FB8F8\t0x595D\n0x8FB8F9\t0x595E\n0x8FB8FA\t0x595F\n0x8FB8FB\t0x5961\n0x8FB8FC\t0x5963\n0x8FB8FD\t0x596B\n0x8FB8FE\t0x596D\n0x8FB9A1\t0x596F\n0x8FB9A2\t0x5972\n0x8FB9A3\t0x5975\n0x8FB9A4\t0x5976\n0x8FB9A5\t0x5979\n0x8FB9A6\t0x597B\n0x8FB9A7\t0x597C\n0x8FB9A8\t0x598B\n0x8FB9A9\t0x598C\n0x8FB9AA\t0x598E\n0x8FB9AB\t0x5992\n0x8FB9AC\t0x5995\n0x8FB9AD\t0x5997\n0x8FB9AE\t0x599F\n0x8FB9AF\t0x59A4\n0x8FB9B0\t0x59A7\n0x8FB9B1\t0x59AD\n0x8FB9B2\t0x59AE\n0x8FB9B3\t0x59AF\n0x8FB9B4\t0x59B0\n0x8FB9B5\t0x59B3\n0x8FB9B6\t0x59B7\n0x8FB9B7\t0x59BA\n0x8FB9B8\t0x59BC\n0x8FB9B9\t0x59C1\n0x8FB9BA\t0x59C3\n0x8FB9BB\t0x59C4\n0x8FB9BC\t0x59C8\n0x8FB9BD\t0x59CA\n0x8FB9BE\t0x59CD\n0x8FB9BF\t0x59D2\n0x8FB9C0\t0x59DD\n0x8FB9C1\t0x59DE\n0x8FB9C2\t0x59DF\n0x8FB9C3\t0x59E3\n0x8FB9C4\t0x59E4\n0x8FB9C5\t0x59E7\n0x8FB9C6\t0x59EE\n0x8FB9C7\t0x59EF\n0x8FB9C8\t0x59F1\n0x8FB9C9\t0x59F2\n0x8FB9CA\t0x59F4\n0x8FB9CB\t0x59F7\n0x8FB9CC\t0x5A00\n0x8FB9CD\t0x5A04\n0x8FB9CE\t0x5A0C\n0x8FB9CF\t0x5A0D\n0x8FB9D0\t0x5A0E\n0x8FB9D1\t0x5A12\n0x8FB9D2\t0x5A13\n0x8FB9D3\t0x5A1E\n0x8FB9D4\t0x5A23\n0x8FB9D5\t0x5A24\n0x8FB9D6\t0x5A27\n0x8FB9D7\t0x5A28\n0x8FB9D8\t0x5A2A\n0x8FB9D9\t0x5A2D\n0x8FB9DA\t0x5A30\n0x8FB9DB\t0x5A44\n0x8FB9DC\t0x5A45\n0x8FB9DD\t0x5A47\n0x8FB9DE\t0x5A48\n0x8FB9DF\t0x5A4C\n0x8FB9E0\t0x5A50\n0x8FB9E1\t0x5A55\n0x8FB9E2\t0x5A5E\n0x8FB9E3\t0x5A63\n0x8FB9E4\t0x5A65\n0x8FB9E5\t0x5A67\n0x8FB9E6\t0x5A6D\n0x8FB9E7\t0x5A77\n0x8FB9E8\t0x5A7A\n0x8FB9E9\t0x5A7B\n0x8FB9EA\t0x5A7E\n0x8FB9EB\t0x5A8B\n0x8FB9EC\t0x5A90\n0x8FB9ED\t0x5A93\n0x8FB9EE\t0x5A96\n0x8FB9EF\t0x5A99\n0x8FB9F0\t0x5A9C\n0x8FB9F1\t0x5A9E\n0x8FB9F2\t0x5A9F\n0x8FB9F3\t0x5AA0\n0x8FB9F4\t0x5AA2\n0x8FB9F5\t0x5AA7\n0x8FB9F6\t0x5AAC\n0x8FB9F7\t0x5AB1\n0x8FB9F8\t0x5AB2\n0x8FB9F9\t0x5AB3\n0x8FB9FA\t0x5AB5\n0x8FB9FB\t0x5AB8\n0x8FB9FC\t0x5ABA\n0x8FB9FD\t0x5ABB\n0x8FB9FE\t0x5ABF\n0x8FBAA1\t0x5AC4\n0x8FBAA2\t0x5AC6\n0x8FBAA3\t0x5AC8\n0x8FBAA4\t0x5ACF\n0x8FBAA5\t0x5ADA\n0x8FBAA6\t0x5ADC\n0x8FBAA7\t0x5AE0\n0x8FBAA8\t0x5AE5\n0x8FBAA9\t0x5AEA\n0x8FBAAA\t0x5AEE\n0x8FBAAB\t0x5AF5\n0x8FBAAC\t0x5AF6\n0x8FBAAD\t0x5AFD\n0x8FBAAE\t0x5B00\n0x8FBAAF\t0x5B01\n0x8FBAB0\t0x5B08\n0x8FBAB1\t0x5B17\n0x8FBAB2\t0x5B34\n0x8FBAB3\t0x5B19\n0x8FBAB4\t0x5B1B\n0x8FBAB5\t0x5B1D\n0x8FBAB6\t0x5B21\n0x8FBAB7\t0x5B25\n0x8FBAB8\t0x5B2D\n0x8FBAB9\t0x5B38\n0x8FBABA\t0x5B41\n0x8FBABB\t0x5B4B\n0x8FBABC\t0x5B4C\n0x8FBABD\t0x5B52\n0x8FBABE\t0x5B56\n0x8FBABF\t0x5B5E\n0x8FBAC0\t0x5B68\n0x8FBAC1\t0x5B6E\n0x8FBAC2\t0x5B6F\n0x8FBAC3\t0x5B7C\n0x8FBAC4\t0x5B7D\n0x8FBAC5\t0x5B7E\n0x8FBAC6\t0x5B7F\n0x8FBAC7\t0x5B81\n0x8FBAC8\t0x5B84\n0x8FBAC9\t0x5B86\n0x8FBACA\t0x5B8A\n0x8FBACB\t0x5B8E\n0x8FBACC\t0x5B90\n0x8FBACD\t0x5B91\n0x8FBACE\t0x5B93\n0x8FBACF\t0x5B94\n0x8FBAD0\t0x5B96\n0x8FBAD1\t0x5BA8\n0x8FBAD2\t0x5BA9\n0x8FBAD3\t0x5BAC\n0x8FBAD4\t0x5BAD\n0x8FBAD5\t0x5BAF\n0x8FBAD6\t0x5BB1\n0x8FBAD7\t0x5BB2\n0x8FBAD8\t0x5BB7\n0x8FBAD9\t0x5BBA\n0x8FBADA\t0x5BBC\n0x8FBADB\t0x5BC0\n0x8FBADC\t0x5BC1\n0x8FBADD\t0x5BCD\n0x8FBADE\t0x5BCF\n0x8FBADF\t0x5BD6\n0x8FBAE0\t0x5BD7\n0x8FBAE1\t0x5BD8\n0x8FBAE2\t0x5BD9\n0x8FBAE3\t0x5BDA\n0x8FBAE4\t0x5BE0\n0x8FBAE5\t0x5BEF\n0x8FBAE6\t0x5BF1\n0x8FBAE7\t0x5BF4\n0x8FBAE8\t0x5BFD\n0x8FBAE9\t0x5C0C\n0x8FBAEA\t0x5C17\n0x8FBAEB\t0x5C1E\n0x8FBAEC\t0x5C1F\n0x8FBAED\t0x5C23\n0x8FBAEE\t0x5C26\n0x8FBAEF\t0x5C29\n0x8FBAF0\t0x5C2B\n0x8FBAF1\t0x5C2C\n0x8FBAF2\t0x5C2E\n0x8FBAF3\t0x5C30\n0x8FBAF4\t0x5C32\n0x8FBAF5\t0x5C35\n0x8FBAF6\t0x5C36\n0x8FBAF7\t0x5C59\n0x8FBAF8\t0x5C5A\n0x8FBAF9\t0x5C5C\n0x8FBAFA\t0x5C62\n0x8FBAFB\t0x5C63\n0x8FBAFC\t0x5C67\n0x8FBAFD\t0x5C68\n0x8FBAFE\t0x5C69\n0x8FBBA1\t0x5C6D\n0x8FBBA2\t0x5C70\n0x8FBBA3\t0x5C74\n0x8FBBA4\t0x5C75\n0x8FBBA5\t0x5C7A\n0x8FBBA6\t0x5C7B\n0x8FBBA7\t0x5C7C\n0x8FBBA8\t0x5C7D\n0x8FBBA9\t0x5C87\n0x8FBBAA\t0x5C88\n0x8FBBAB\t0x5C8A\n0x8FBBAC\t0x5C8F\n0x8FBBAD\t0x5C92\n0x8FBBAE\t0x5C9D\n0x8FBBAF\t0x5C9F\n0x8FBBB0\t0x5CA0\n0x8FBBB1\t0x5CA2\n0x8FBBB2\t0x5CA3\n0x8FBBB3\t0x5CA6\n0x8FBBB4\t0x5CAA\n0x8FBBB5\t0x5CB2\n0x8FBBB6\t0x5CB4\n0x8FBBB7\t0x5CB5\n0x8FBBB8\t0x5CBA\n0x8FBBB9\t0x5CC9\n0x8FBBBA\t0x5CCB\n0x8FBBBB\t0x5CD2\n0x8FBBBC\t0x5CDD\n0x8FBBBD\t0x5CD7\n0x8FBBBE\t0x5CEE\n0x8FBBBF\t0x5CF1\n0x8FBBC0\t0x5CF2\n0x8FBBC1\t0x5CF4\n0x8FBBC2\t0x5D01\n0x8FBBC3\t0x5D06\n0x8FBBC4\t0x5D0D\n0x8FBBC5\t0x5D12\n0x8FBBC6\t0x5D2B\n0x8FBBC7\t0x5D23\n0x8FBBC8\t0x5D24\n0x8FBBC9\t0x5D26\n0x8FBBCA\t0x5D27\n0x8FBBCB\t0x5D31\n0x8FBBCC\t0x5D34\n0x8FBBCD\t0x5D39\n0x8FBBCE\t0x5D3D\n0x8FBBCF\t0x5D3F\n0x8FBBD0\t0x5D42\n0x8FBBD1\t0x5D43\n0x8FBBD2\t0x5D46\n0x8FBBD3\t0x5D48\n0x8FBBD4\t0x5D55\n0x8FBBD5\t0x5D51\n0x8FBBD6\t0x5D59\n0x8FBBD7\t0x5D4A\n0x8FBBD8\t0x5D5F\n0x8FBBD9\t0x5D60\n0x8FBBDA\t0x5D61\n0x8FBBDB\t0x5D62\n0x8FBBDC\t0x5D64\n0x8FBBDD\t0x5D6A\n0x8FBBDE\t0x5D6D\n0x8FBBDF\t0x5D70\n0x8FBBE0\t0x5D79\n0x8FBBE1\t0x5D7A\n0x8FBBE2\t0x5D7E\n0x8FBBE3\t0x5D7F\n0x8FBBE4\t0x5D81\n0x8FBBE5\t0x5D83\n0x8FBBE6\t0x5D88\n0x8FBBE7\t0x5D8A\n0x8FBBE8\t0x5D92\n0x8FBBE9\t0x5D93\n0x8FBBEA\t0x5D94\n0x8FBBEB\t0x5D95\n0x8FBBEC\t0x5D99\n0x8FBBED\t0x5D9B\n0x8FBBEE\t0x5D9F\n0x8FBBEF\t0x5DA0\n0x8FBBF0\t0x5DA7\n0x8FBBF1\t0x5DAB\n0x8FBBF2\t0x5DB0\n0x8FBBF3\t0x5DB4\n0x8FBBF4\t0x5DB8\n0x8FBBF5\t0x5DB9\n0x8FBBF6\t0x5DC3\n0x8FBBF7\t0x5DC7\n0x8FBBF8\t0x5DCB\n0x8FBBF9\t0x5DD0\n0x8FBBFA\t0x5DCE\n0x8FBBFB\t0x5DD8\n0x8FBBFC\t0x5DD9\n0x8FBBFD\t0x5DE0\n0x8FBBFE\t0x5DE4\n0x8FBCA1\t0x5DE9\n0x8FBCA2\t0x5DF8\n0x8FBCA3\t0x5DF9\n0x8FBCA4\t0x5E00\n0x8FBCA5\t0x5E07\n0x8FBCA6\t0x5E0D\n0x8FBCA7\t0x5E12\n0x8FBCA8\t0x5E14\n0x8FBCA9\t0x5E15\n0x8FBCAA\t0x5E18\n0x8FBCAB\t0x5E1F\n0x8FBCAC\t0x5E20\n0x8FBCAD\t0x5E2E\n0x8FBCAE\t0x5E28\n0x8FBCAF\t0x5E32\n0x8FBCB0\t0x5E35\n0x8FBCB1\t0x5E3E\n0x8FBCB2\t0x5E4B\n0x8FBCB3\t0x5E50\n0x8FBCB4\t0x5E49\n0x8FBCB5\t0x5E51\n0x8FBCB6\t0x5E56\n0x8FBCB7\t0x5E58\n0x8FBCB8\t0x5E5B\n0x8FBCB9\t0x5E5C\n0x8FBCBA\t0x5E5E\n0x8FBCBB\t0x5E68\n0x8FBCBC\t0x5E6A\n0x8FBCBD\t0x5E6B\n0x8FBCBE\t0x5E6C\n0x8FBCBF\t0x5E6D\n0x8FBCC0\t0x5E6E\n0x8FBCC1\t0x5E70\n0x8FBCC2\t0x5E80\n0x8FBCC3\t0x5E8B\n0x8FBCC4\t0x5E8E\n0x8FBCC5\t0x5EA2\n0x8FBCC6\t0x5EA4\n0x8FBCC7\t0x5EA5\n0x8FBCC8\t0x5EA8\n0x8FBCC9\t0x5EAA\n0x8FBCCA\t0x5EAC\n0x8FBCCB\t0x5EB1\n0x8FBCCC\t0x5EB3\n0x8FBCCD\t0x5EBD\n0x8FBCCE\t0x5EBE\n0x8FBCCF\t0x5EBF\n0x8FBCD0\t0x5EC6\n0x8FBCD1\t0x5ECC\n0x8FBCD2\t0x5ECB\n0x8FBCD3\t0x5ECE\n0x8FBCD4\t0x5ED1\n0x8FBCD5\t0x5ED2\n0x8FBCD6\t0x5ED4\n0x8FBCD7\t0x5ED5\n0x8FBCD8\t0x5EDC\n0x8FBCD9\t0x5EDE\n0x8FBCDA\t0x5EE5\n0x8FBCDB\t0x5EEB\n0x8FBCDC\t0x5F02\n0x8FBCDD\t0x5F06\n0x8FBCDE\t0x5F07\n0x8FBCDF\t0x5F08\n0x8FBCE0\t0x5F0E\n0x8FBCE1\t0x5F19\n0x8FBCE2\t0x5F1C\n0x8FBCE3\t0x5F1D\n0x8FBCE4\t0x5F21\n0x8FBCE5\t0x5F22\n0x8FBCE6\t0x5F23\n0x8FBCE7\t0x5F24\n0x8FBCE8\t0x5F28\n0x8FBCE9\t0x5F2B\n0x8FBCEA\t0x5F2C\n0x8FBCEB\t0x5F2E\n0x8FBCEC\t0x5F30\n0x8FBCED\t0x5F34\n0x8FBCEE\t0x5F36\n0x8FBCEF\t0x5F3B\n0x8FBCF0\t0x5F3D\n0x8FBCF1\t0x5F3F\n0x8FBCF2\t0x5F40\n0x8FBCF3\t0x5F44\n0x8FBCF4\t0x5F45\n0x8FBCF5\t0x5F47\n0x8FBCF6\t0x5F4D\n0x8FBCF7\t0x5F50\n0x8FBCF8\t0x5F54\n0x8FBCF9\t0x5F58\n0x8FBCFA\t0x5F5B\n0x8FBCFB\t0x5F60\n0x8FBCFC\t0x5F63\n0x8FBCFD\t0x5F64\n0x8FBCFE\t0x5F67\n0x8FBDA1\t0x5F6F\n0x8FBDA2\t0x5F72\n0x8FBDA3\t0x5F74\n0x8FBDA4\t0x5F75\n0x8FBDA5\t0x5F78\n0x8FBDA6\t0x5F7A\n0x8FBDA7\t0x5F7D\n0x8FBDA8\t0x5F7E\n0x8FBDA9\t0x5F89\n0x8FBDAA\t0x5F8D\n0x8FBDAB\t0x5F8F\n0x8FBDAC\t0x5F96\n0x8FBDAD\t0x5F9C\n0x8FBDAE\t0x5F9D\n0x8FBDAF\t0x5FA2\n0x8FBDB0\t0x5FA7\n0x8FBDB1\t0x5FAB\n0x8FBDB2\t0x5FA4\n0x8FBDB3\t0x5FAC\n0x8FBDB4\t0x5FAF\n0x8FBDB5\t0x5FB0\n0x8FBDB6\t0x5FB1\n0x8FBDB7\t0x5FB8\n0x8FBDB8\t0x5FC4\n0x8FBDB9\t0x5FC7\n0x8FBDBA\t0x5FC8\n0x8FBDBB\t0x5FC9\n0x8FBDBC\t0x5FCB\n0x8FBDBD\t0x5FD0\n0x8FBDBE\t0x5FD1\n0x8FBDBF\t0x5FD2\n0x8FBDC0\t0x5FD3\n0x8FBDC1\t0x5FD4\n0x8FBDC2\t0x5FDE\n0x8FBDC3\t0x5FE1\n0x8FBDC4\t0x5FE2\n0x8FBDC5\t0x5FE8\n0x8FBDC6\t0x5FE9\n0x8FBDC7\t0x5FEA\n0x8FBDC8\t0x5FEC\n0x8FBDC9\t0x5FED\n0x8FBDCA\t0x5FEE\n0x8FBDCB\t0x5FEF\n0x8FBDCC\t0x5FF2\n0x8FBDCD\t0x5FF3\n0x8FBDCE\t0x5FF6\n0x8FBDCF\t0x5FFA\n0x8FBDD0\t0x5FFC\n0x8FBDD1\t0x6007\n0x8FBDD2\t0x600A\n0x8FBDD3\t0x600D\n0x8FBDD4\t0x6013\n0x8FBDD5\t0x6014\n0x8FBDD6\t0x6017\n0x8FBDD7\t0x6018\n0x8FBDD8\t0x601A\n0x8FBDD9\t0x601F\n0x8FBDDA\t0x6024\n0x8FBDDB\t0x602D\n0x8FBDDC\t0x6033\n0x8FBDDD\t0x6035\n0x8FBDDE\t0x6040\n0x8FBDDF\t0x6047\n0x8FBDE0\t0x6048\n0x8FBDE1\t0x6049\n0x8FBDE2\t0x604C\n0x8FBDE3\t0x6051\n0x8FBDE4\t0x6054\n0x8FBDE5\t0x6056\n0x8FBDE6\t0x6057\n0x8FBDE7\t0x605D\n0x8FBDE8\t0x6061\n0x8FBDE9\t0x6067\n0x8FBDEA\t0x6071\n0x8FBDEB\t0x607E\n0x8FBDEC\t0x607F\n0x8FBDED\t0x6082\n0x8FBDEE\t0x6086\n0x8FBDEF\t0x6088\n0x8FBDF0\t0x608A\n0x8FBDF1\t0x608E\n0x8FBDF2\t0x6091\n0x8FBDF3\t0x6093\n0x8FBDF4\t0x6095\n0x8FBDF5\t0x6098\n0x8FBDF6\t0x609D\n0x8FBDF7\t0x609E\n0x8FBDF8\t0x60A2\n0x8FBDF9\t0x60A4\n0x8FBDFA\t0x60A5\n0x8FBDFB\t0x60A8\n0x8FBDFC\t0x60B0\n0x8FBDFD\t0x60B1\n0x8FBDFE\t0x60B7\n0x8FBEA1\t0x60BB\n0x8FBEA2\t0x60BE\n0x8FBEA3\t0x60C2\n0x8FBEA4\t0x60C4\n0x8FBEA5\t0x60C8\n0x8FBEA6\t0x60C9\n0x8FBEA7\t0x60CA\n0x8FBEA8\t0x60CB\n0x8FBEA9\t0x60CE\n0x8FBEAA\t0x60CF\n0x8FBEAB\t0x60D4\n0x8FBEAC\t0x60D5\n0x8FBEAD\t0x60D9\n0x8FBEAE\t0x60DB\n0x8FBEAF\t0x60DD\n0x8FBEB0\t0x60DE\n0x8FBEB1\t0x60E2\n0x8FBEB2\t0x60E5\n0x8FBEB3\t0x60F2\n0x8FBEB4\t0x60F5\n0x8FBEB5\t0x60F8\n0x8FBEB6\t0x60FC\n0x8FBEB7\t0x60FD\n0x8FBEB8\t0x6102\n0x8FBEB9\t0x6107\n0x8FBEBA\t0x610A\n0x8FBEBB\t0x610C\n0x8FBEBC\t0x6110\n0x8FBEBD\t0x6111\n0x8FBEBE\t0x6112\n0x8FBEBF\t0x6113\n0x8FBEC0\t0x6114\n0x8FBEC1\t0x6116\n0x8FBEC2\t0x6117\n0x8FBEC3\t0x6119\n0x8FBEC4\t0x611C\n0x8FBEC5\t0x611E\n0x8FBEC6\t0x6122\n0x8FBEC7\t0x612A\n0x8FBEC8\t0x612B\n0x8FBEC9\t0x6130\n0x8FBECA\t0x6131\n0x8FBECB\t0x6135\n0x8FBECC\t0x6136\n0x8FBECD\t0x6137\n0x8FBECE\t0x6139\n0x8FBECF\t0x6141\n0x8FBED0\t0x6145\n0x8FBED1\t0x6146\n0x8FBED2\t0x6149\n0x8FBED3\t0x615E\n0x8FBED4\t0x6160\n0x8FBED5\t0x616C\n0x8FBED6\t0x6172\n0x8FBED7\t0x6178\n0x8FBED8\t0x617B\n0x8FBED9\t0x617C\n0x8FBEDA\t0x617F\n0x8FBEDB\t0x6180\n0x8FBEDC\t0x6181\n0x8FBEDD\t0x6183\n0x8FBEDE\t0x6184\n0x8FBEDF\t0x618B\n0x8FBEE0\t0x618D\n0x8FBEE1\t0x6192\n0x8FBEE2\t0x6193\n0x8FBEE3\t0x6197\n0x8FBEE4\t0x6198\n0x8FBEE5\t0x619C\n0x8FBEE6\t0x619D\n0x8FBEE7\t0x619F\n0x8FBEE8\t0x61A0\n0x8FBEE9\t0x61A5\n0x8FBEEA\t0x61A8\n0x8FBEEB\t0x61AA\n0x8FBEEC\t0x61AD\n0x8FBEED\t0x61B8\n0x8FBEEE\t0x61B9\n0x8FBEEF\t0x61BC\n0x8FBEF0\t0x61C0\n0x8FBEF1\t0x61C1\n0x8FBEF2\t0x61C2\n0x8FBEF3\t0x61CE\n0x8FBEF4\t0x61CF\n0x8FBEF5\t0x61D5\n0x8FBEF6\t0x61DC\n0x8FBEF7\t0x61DD\n0x8FBEF8\t0x61DE\n0x8FBEF9\t0x61DF\n0x8FBEFA\t0x61E1\n0x8FBEFB\t0x61E2\n0x8FBEFC\t0x61E7\n0x8FBEFD\t0x61E9\n0x8FBEFE\t0x61E5\n0x8FBFA1\t0x61EC\n0x8FBFA2\t0x61ED\n0x8FBFA3\t0x61EF\n0x8FBFA4\t0x6201\n0x8FBFA5\t0x6203\n0x8FBFA6\t0x6204\n0x8FBFA7\t0x6207\n0x8FBFA8\t0x6213\n0x8FBFA9\t0x6215\n0x8FBFAA\t0x621C\n0x8FBFAB\t0x6220\n0x8FBFAC\t0x6222\n0x8FBFAD\t0x6223\n0x8FBFAE\t0x6227\n0x8FBFAF\t0x6229\n0x8FBFB0\t0x622B\n0x8FBFB1\t0x6239\n0x8FBFB2\t0x623D\n0x8FBFB3\t0x6242\n0x8FBFB4\t0x6243\n0x8FBFB5\t0x6244\n0x8FBFB6\t0x6246\n0x8FBFB7\t0x624C\n0x8FBFB8\t0x6250\n0x8FBFB9\t0x6251\n0x8FBFBA\t0x6252\n0x8FBFBB\t0x6254\n0x8FBFBC\t0x6256\n0x8FBFBD\t0x625A\n0x8FBFBE\t0x625C\n0x8FBFBF\t0x6264\n0x8FBFC0\t0x626D\n0x8FBFC1\t0x626F\n0x8FBFC2\t0x6273\n0x8FBFC3\t0x627A\n0x8FBFC4\t0x627D\n0x8FBFC5\t0x628D\n0x8FBFC6\t0x628E\n0x8FBFC7\t0x628F\n0x8FBFC8\t0x6290\n0x8FBFC9\t0x62A6\n0x8FBFCA\t0x62A8\n0x8FBFCB\t0x62B3\n0x8FBFCC\t0x62B6\n0x8FBFCD\t0x62B7\n0x8FBFCE\t0x62BA\n0x8FBFCF\t0x62BE\n0x8FBFD0\t0x62BF\n0x8FBFD1\t0x62C4\n0x8FBFD2\t0x62CE\n0x8FBFD3\t0x62D5\n0x8FBFD4\t0x62D6\n0x8FBFD5\t0x62DA\n0x8FBFD6\t0x62EA\n0x8FBFD7\t0x62F2\n0x8FBFD8\t0x62F4\n0x8FBFD9\t0x62FC\n0x8FBFDA\t0x62FD\n0x8FBFDB\t0x6303\n0x8FBFDC\t0x6304\n0x8FBFDD\t0x630A\n0x8FBFDE\t0x630B\n0x8FBFDF\t0x630D\n0x8FBFE0\t0x6310\n0x8FBFE1\t0x6313\n0x8FBFE2\t0x6316\n0x8FBFE3\t0x6318\n0x8FBFE4\t0x6329\n0x8FBFE5\t0x632A\n0x8FBFE6\t0x632D\n0x8FBFE7\t0x6335\n0x8FBFE8\t0x6336\n0x8FBFE9\t0x6339\n0x8FBFEA\t0x633C\n0x8FBFEB\t0x6341\n0x8FBFEC\t0x6342\n0x8FBFED\t0x6343\n0x8FBFEE\t0x6344\n0x8FBFEF\t0x6346\n0x8FBFF0\t0x634A\n0x8FBFF1\t0x634B\n0x8FBFF2\t0x634E\n0x8FBFF3\t0x6352\n0x8FBFF4\t0x6353\n0x8FBFF5\t0x6354\n0x8FBFF6\t0x6358\n0x8FBFF7\t0x635B\n0x8FBFF8\t0x6365\n0x8FBFF9\t0x6366\n0x8FBFFA\t0x636C\n0x8FBFFB\t0x636D\n0x8FBFFC\t0x6371\n0x8FBFFD\t0x6374\n0x8FBFFE\t0x6375\n0x8FC0A1\t0x6378\n0x8FC0A2\t0x637C\n0x8FC0A3\t0x637D\n0x8FC0A4\t0x637F\n0x8FC0A5\t0x6382\n0x8FC0A6\t0x6384\n0x8FC0A7\t0x6387\n0x8FC0A8\t0x638A\n0x8FC0A9\t0x6390\n0x8FC0AA\t0x6394\n0x8FC0AB\t0x6395\n0x8FC0AC\t0x6399\n0x8FC0AD\t0x639A\n0x8FC0AE\t0x639E\n0x8FC0AF\t0x63A4\n0x8FC0B0\t0x63A6\n0x8FC0B1\t0x63AD\n0x8FC0B2\t0x63AE\n0x8FC0B3\t0x63AF\n0x8FC0B4\t0x63BD\n0x8FC0B5\t0x63C1\n0x8FC0B6\t0x63C5\n0x8FC0B7\t0x63C8\n0x8FC0B8\t0x63CE\n0x8FC0B9\t0x63D1\n0x8FC0BA\t0x63D3\n0x8FC0BB\t0x63D4\n0x8FC0BC\t0x63D5\n0x8FC0BD\t0x63DC\n0x8FC0BE\t0x63E0\n0x8FC0BF\t0x63E5\n0x8FC0C0\t0x63EA\n0x8FC0C1\t0x63EC\n0x8FC0C2\t0x63F2\n0x8FC0C3\t0x63F3\n0x8FC0C4\t0x63F5\n0x8FC0C5\t0x63F8\n0x8FC0C6\t0x63F9\n0x8FC0C7\t0x6409\n0x8FC0C8\t0x640A\n0x8FC0C9\t0x6410\n0x8FC0CA\t0x6412\n0x8FC0CB\t0x6414\n0x8FC0CC\t0x6418\n0x8FC0CD\t0x641E\n0x8FC0CE\t0x6420\n0x8FC0CF\t0x6422\n0x8FC0D0\t0x6424\n0x8FC0D1\t0x6425\n0x8FC0D2\t0x6429\n0x8FC0D3\t0x642A\n0x8FC0D4\t0x642F\n0x8FC0D5\t0x6430\n0x8FC0D6\t0x6435\n0x8FC0D7\t0x643D\n0x8FC0D8\t0x643F\n0x8FC0D9\t0x644B\n0x8FC0DA\t0x644F\n0x8FC0DB\t0x6451\n0x8FC0DC\t0x6452\n0x8FC0DD\t0x6453\n0x8FC0DE\t0x6454\n0x8FC0DF\t0x645A\n0x8FC0E0\t0x645B\n0x8FC0E1\t0x645C\n0x8FC0E2\t0x645D\n0x8FC0E3\t0x645F\n0x8FC0E4\t0x6460\n0x8FC0E5\t0x6461\n0x8FC0E6\t0x6463\n0x8FC0E7\t0x646D\n0x8FC0E8\t0x6473\n0x8FC0E9\t0x6474\n0x8FC0EA\t0x647B\n0x8FC0EB\t0x647D\n0x8FC0EC\t0x6485\n0x8FC0ED\t0x6487\n0x8FC0EE\t0x648F\n0x8FC0EF\t0x6490\n0x8FC0F0\t0x6491\n0x8FC0F1\t0x6498\n0x8FC0F2\t0x6499\n0x8FC0F3\t0x649B\n0x8FC0F4\t0x649D\n0x8FC0F5\t0x649F\n0x8FC0F6\t0x64A1\n0x8FC0F7\t0x64A3\n0x8FC0F8\t0x64A6\n0x8FC0F9\t0x64A8\n0x8FC0FA\t0x64AC\n0x8FC0FB\t0x64B3\n0x8FC0FC\t0x64BD\n0x8FC0FD\t0x64BE\n0x8FC0FE\t0x64BF\n0x8FC1A1\t0x64C4\n0x8FC1A2\t0x64C9\n0x8FC1A3\t0x64CA\n0x8FC1A4\t0x64CB\n0x8FC1A5\t0x64CC\n0x8FC1A6\t0x64CE\n0x8FC1A7\t0x64D0\n0x8FC1A8\t0x64D1\n0x8FC1A9\t0x64D5\n0x8FC1AA\t0x64D7\n0x8FC1AB\t0x64E4\n0x8FC1AC\t0x64E5\n0x8FC1AD\t0x64E9\n0x8FC1AE\t0x64EA\n0x8FC1AF\t0x64ED\n0x8FC1B0\t0x64F0\n0x8FC1B1\t0x64F5\n0x8FC1B2\t0x64F7\n0x8FC1B3\t0x64FB\n0x8FC1B4\t0x64FF\n0x8FC1B5\t0x6501\n0x8FC1B6\t0x6504\n0x8FC1B7\t0x6508\n0x8FC1B8\t0x6509\n0x8FC1B9\t0x650A\n0x8FC1BA\t0x650F\n0x8FC1BB\t0x6513\n0x8FC1BC\t0x6514\n0x8FC1BD\t0x6516\n0x8FC1BE\t0x6519\n0x8FC1BF\t0x651B\n0x8FC1C0\t0x651E\n0x8FC1C1\t0x651F\n0x8FC1C2\t0x6522\n0x8FC1C3\t0x6526\n0x8FC1C4\t0x6529\n0x8FC1C5\t0x652E\n0x8FC1C6\t0x6531\n0x8FC1C7\t0x653A\n0x8FC1C8\t0x653C\n0x8FC1C9\t0x653D\n0x8FC1CA\t0x6543\n0x8FC1CB\t0x6547\n0x8FC1CC\t0x6549\n0x8FC1CD\t0x6550\n0x8FC1CE\t0x6552\n0x8FC1CF\t0x6554\n0x8FC1D0\t0x655F\n0x8FC1D1\t0x6560\n0x8FC1D2\t0x6567\n0x8FC1D3\t0x656B\n0x8FC1D4\t0x657A\n0x8FC1D5\t0x657D\n0x8FC1D6\t0x6581\n0x8FC1D7\t0x6585\n0x8FC1D8\t0x658A\n0x8FC1D9\t0x6592\n0x8FC1DA\t0x6595\n0x8FC1DB\t0x6598\n0x8FC1DC\t0x659D\n0x8FC1DD\t0x65A0\n0x8FC1DE\t0x65A3\n0x8FC1DF\t0x65A6\n0x8FC1E0\t0x65AE\n0x8FC1E1\t0x65B2\n0x8FC1E2\t0x65B3\n0x8FC1E3\t0x65B4\n0x8FC1E4\t0x65BF\n0x8FC1E5\t0x65C2\n0x8FC1E6\t0x65C8\n0x8FC1E7\t0x65C9\n0x8FC1E8\t0x65CE\n0x8FC1E9\t0x65D0\n0x8FC1EA\t0x65D4\n0x8FC1EB\t0x65D6\n0x8FC1EC\t0x65D8\n0x8FC1ED\t0x65DF\n0x8FC1EE\t0x65F0\n0x8FC1EF\t0x65F2\n0x8FC1F0\t0x65F4\n0x8FC1F1\t0x65F5\n0x8FC1F2\t0x65F9\n0x8FC1F3\t0x65FE\n0x8FC1F4\t0x65FF\n0x8FC1F5\t0x6600\n0x8FC1F6\t0x6604\n0x8FC1F7\t0x6608\n0x8FC1F8\t0x6609\n0x8FC1F9\t0x660D\n0x8FC1FA\t0x6611\n0x8FC1FB\t0x6612\n0x8FC1FC\t0x6615\n0x8FC1FD\t0x6616\n0x8FC1FE\t0x661D\n0x8FC2A1\t0x661E\n0x8FC2A2\t0x6621\n0x8FC2A3\t0x6622\n0x8FC2A4\t0x6623\n0x8FC2A5\t0x6624\n0x8FC2A6\t0x6626\n0x8FC2A7\t0x6629\n0x8FC2A8\t0x662A\n0x8FC2A9\t0x662B\n0x8FC2AA\t0x662C\n0x8FC2AB\t0x662E\n0x8FC2AC\t0x6630\n0x8FC2AD\t0x6631\n0x8FC2AE\t0x6633\n0x8FC2AF\t0x6639\n0x8FC2B0\t0x6637\n0x8FC2B1\t0x6640\n0x8FC2B2\t0x6645\n0x8FC2B3\t0x6646\n0x8FC2B4\t0x664A\n0x8FC2B5\t0x664C\n0x8FC2B6\t0x6651\n0x8FC2B7\t0x664E\n0x8FC2B8\t0x6657\n0x8FC2B9\t0x6658\n0x8FC2BA\t0x6659\n0x8FC2BB\t0x665B\n0x8FC2BC\t0x665C\n0x8FC2BD\t0x6660\n0x8FC2BE\t0x6661\n0x8FC2BF\t0x66FB\n0x8FC2C0\t0x666A\n0x8FC2C1\t0x666B\n0x8FC2C2\t0x666C\n0x8FC2C3\t0x667E\n0x8FC2C4\t0x6673\n0x8FC2C5\t0x6675\n0x8FC2C6\t0x667F\n0x8FC2C7\t0x6677\n0x8FC2C8\t0x6678\n0x8FC2C9\t0x6679\n0x8FC2CA\t0x667B\n0x8FC2CB\t0x6680\n0x8FC2CC\t0x667C\n0x8FC2CD\t0x668B\n0x8FC2CE\t0x668C\n0x8FC2CF\t0x668D\n0x8FC2D0\t0x6690\n0x8FC2D1\t0x6692\n0x8FC2D2\t0x6699\n0x8FC2D3\t0x669A\n0x8FC2D4\t0x669B\n0x8FC2D5\t0x669C\n0x8FC2D6\t0x669F\n0x8FC2D7\t0x66A0\n0x8FC2D8\t0x66A4\n0x8FC2D9\t0x66AD\n0x8FC2DA\t0x66B1\n0x8FC2DB\t0x66B2\n0x8FC2DC\t0x66B5\n0x8FC2DD\t0x66BB\n0x8FC2DE\t0x66BF\n0x8FC2DF\t0x66C0\n0x8FC2E0\t0x66C2\n0x8FC2E1\t0x66C3\n0x8FC2E2\t0x66C8\n0x8FC2E3\t0x66CC\n0x8FC2E4\t0x66CE\n0x8FC2E5\t0x66CF\n0x8FC2E6\t0x66D4\n0x8FC2E7\t0x66DB\n0x8FC2E8\t0x66DF\n0x8FC2E9\t0x66E8\n0x8FC2EA\t0x66EB\n0x8FC2EB\t0x66EC\n0x8FC2EC\t0x66EE\n0x8FC2ED\t0x66FA\n0x8FC2EE\t0x6705\n0x8FC2EF\t0x6707\n0x8FC2F0\t0x670E\n0x8FC2F1\t0x6713\n0x8FC2F2\t0x6719\n0x8FC2F3\t0x671C\n0x8FC2F4\t0x6720\n0x8FC2F5\t0x6722\n0x8FC2F6\t0x6733\n0x8FC2F7\t0x673E\n0x8FC2F8\t0x6745\n0x8FC2F9\t0x6747\n0x8FC2FA\t0x6748\n0x8FC2FB\t0x674C\n0x8FC2FC\t0x6754\n0x8FC2FD\t0x6755\n0x8FC2FE\t0x675D\n0x8FC3A1\t0x6766\n0x8FC3A2\t0x676C\n0x8FC3A3\t0x676E\n0x8FC3A4\t0x6774\n0x8FC3A5\t0x6776\n0x8FC3A6\t0x677B\n0x8FC3A7\t0x6781\n0x8FC3A8\t0x6784\n0x8FC3A9\t0x678E\n0x8FC3AA\t0x678F\n0x8FC3AB\t0x6791\n0x8FC3AC\t0x6793\n0x8FC3AD\t0x6796\n0x8FC3AE\t0x6798\n0x8FC3AF\t0x6799\n0x8FC3B0\t0x679B\n0x8FC3B1\t0x67B0\n0x8FC3B2\t0x67B1\n0x8FC3B3\t0x67B2\n0x8FC3B4\t0x67B5\n0x8FC3B5\t0x67BB\n0x8FC3B6\t0x67BC\n0x8FC3B7\t0x67BD\n0x8FC3B8\t0x67F9\n0x8FC3B9\t0x67C0\n0x8FC3BA\t0x67C2\n0x8FC3BB\t0x67C3\n0x8FC3BC\t0x67C5\n0x8FC3BD\t0x67C8\n0x8FC3BE\t0x67C9\n0x8FC3BF\t0x67D2\n0x8FC3C0\t0x67D7\n0x8FC3C1\t0x67D9\n0x8FC3C2\t0x67DC\n0x8FC3C3\t0x67E1\n0x8FC3C4\t0x67E6\n0x8FC3C5\t0x67F0\n0x8FC3C6\t0x67F2\n0x8FC3C7\t0x67F6\n0x8FC3C8\t0x67F7\n0x8FC3C9\t0x6852\n0x8FC3CA\t0x6814\n0x8FC3CB\t0x6819\n0x8FC3CC\t0x681D\n0x8FC3CD\t0x681F\n0x8FC3CE\t0x6828\n0x8FC3CF\t0x6827\n0x8FC3D0\t0x682C\n0x8FC3D1\t0x682D\n0x8FC3D2\t0x682F\n0x8FC3D3\t0x6830\n0x8FC3D4\t0x6831\n0x8FC3D5\t0x6833\n0x8FC3D6\t0x683B\n0x8FC3D7\t0x683F\n0x8FC3D8\t0x6844\n0x8FC3D9\t0x6845\n0x8FC3DA\t0x684A\n0x8FC3DB\t0x684C\n0x8FC3DC\t0x6855\n0x8FC3DD\t0x6857\n0x8FC3DE\t0x6858\n0x8FC3DF\t0x685B\n0x8FC3E0\t0x686B\n0x8FC3E1\t0x686E\n0x8FC3E2\t0x686F\n0x8FC3E3\t0x6870\n0x8FC3E4\t0x6871\n0x8FC3E5\t0x6872\n0x8FC3E6\t0x6875\n0x8FC3E7\t0x6879\n0x8FC3E8\t0x687A\n0x8FC3E9\t0x687B\n0x8FC3EA\t0x687C\n0x8FC3EB\t0x6882\n0x8FC3EC\t0x6884\n0x8FC3ED\t0x6886\n0x8FC3EE\t0x6888\n0x8FC3EF\t0x6896\n0x8FC3F0\t0x6898\n0x8FC3F1\t0x689A\n0x8FC3F2\t0x689C\n0x8FC3F3\t0x68A1\n0x8FC3F4\t0x68A3\n0x8FC3F5\t0x68A5\n0x8FC3F6\t0x68A9\n0x8FC3F7\t0x68AA\n0x8FC3F8\t0x68AE\n0x8FC3F9\t0x68B2\n0x8FC3FA\t0x68BB\n0x8FC3FB\t0x68C5\n0x8FC3FC\t0x68C8\n0x8FC3FD\t0x68CC\n0x8FC3FE\t0x68CF\n0x8FC4A1\t0x68D0\n0x8FC4A2\t0x68D1\n0x8FC4A3\t0x68D3\n0x8FC4A4\t0x68D6\n0x8FC4A5\t0x68D9\n0x8FC4A6\t0x68DC\n0x8FC4A7\t0x68DD\n0x8FC4A8\t0x68E5\n0x8FC4A9\t0x68E8\n0x8FC4AA\t0x68EA\n0x8FC4AB\t0x68EB\n0x8FC4AC\t0x68EC\n0x8FC4AD\t0x68ED\n0x8FC4AE\t0x68F0\n0x8FC4AF\t0x68F1\n0x8FC4B0\t0x68F5\n0x8FC4B1\t0x68F6\n0x8FC4B2\t0x68FB\n0x8FC4B3\t0x68FC\n0x8FC4B4\t0x68FD\n0x8FC4B5\t0x6906\n0x8FC4B6\t0x6909\n0x8FC4B7\t0x690A\n0x8FC4B8\t0x6910\n0x8FC4B9\t0x6911\n0x8FC4BA\t0x6913\n0x8FC4BB\t0x6916\n0x8FC4BC\t0x6917\n0x8FC4BD\t0x6931\n0x8FC4BE\t0x6933\n0x8FC4BF\t0x6935\n0x8FC4C0\t0x6938\n0x8FC4C1\t0x693B\n0x8FC4C2\t0x6942\n0x8FC4C3\t0x6945\n0x8FC4C4\t0x6949\n0x8FC4C5\t0x694E\n0x8FC4C6\t0x6957\n0x8FC4C7\t0x695B\n0x8FC4C8\t0x6963\n0x8FC4C9\t0x6964\n0x8FC4CA\t0x6965\n0x8FC4CB\t0x6966\n0x8FC4CC\t0x6968\n0x8FC4CD\t0x6969\n0x8FC4CE\t0x696C\n0x8FC4CF\t0x6970\n0x8FC4D0\t0x6971\n0x8FC4D1\t0x6972\n0x8FC4D2\t0x697A\n0x8FC4D3\t0x697B\n0x8FC4D4\t0x697F\n0x8FC4D5\t0x6980\n0x8FC4D6\t0x698D\n0x8FC4D7\t0x6992\n0x8FC4D8\t0x6996\n0x8FC4D9\t0x6998\n0x8FC4DA\t0x69A1\n0x8FC4DB\t0x69A5\n0x8FC4DC\t0x69A6\n0x8FC4DD\t0x69A8\n0x8FC4DE\t0x69AB\n0x8FC4DF\t0x69AD\n0x8FC4E0\t0x69AF\n0x8FC4E1\t0x69B7\n0x8FC4E2\t0x69B8\n0x8FC4E3\t0x69BA\n0x8FC4E4\t0x69BC\n0x8FC4E5\t0x69C5\n0x8FC4E6\t0x69C8\n0x8FC4E7\t0x69D1\n0x8FC4E8\t0x69D6\n0x8FC4E9\t0x69D7\n0x8FC4EA\t0x69E2\n0x8FC4EB\t0x69E5\n0x8FC4EC\t0x69EE\n0x8FC4ED\t0x69EF\n0x8FC4EE\t0x69F1\n0x8FC4EF\t0x69F3\n0x8FC4F0\t0x69F5\n0x8FC4F1\t0x69FE\n0x8FC4F2\t0x6A00\n0x8FC4F3\t0x6A01\n0x8FC4F4\t0x6A03\n0x8FC4F5\t0x6A0F\n0x8FC4F6\t0x6A11\n0x8FC4F7\t0x6A15\n0x8FC4F8\t0x6A1A\n0x8FC4F9\t0x6A1D\n0x8FC4FA\t0x6A20\n0x8FC4FB\t0x6A24\n0x8FC4FC\t0x6A28\n0x8FC4FD\t0x6A30\n0x8FC4FE\t0x6A32\n0x8FC5A1\t0x6A34\n0x8FC5A2\t0x6A37\n0x8FC5A3\t0x6A3B\n0x8FC5A4\t0x6A3E\n0x8FC5A5\t0x6A3F\n0x8FC5A6\t0x6A45\n0x8FC5A7\t0x6A46\n0x8FC5A8\t0x6A49\n0x8FC5A9\t0x6A4A\n0x8FC5AA\t0x6A4E\n0x8FC5AB\t0x6A50\n0x8FC5AC\t0x6A51\n0x8FC5AD\t0x6A52\n0x8FC5AE\t0x6A55\n0x8FC5AF\t0x6A56\n0x8FC5B0\t0x6A5B\n0x8FC5B1\t0x6A64\n0x8FC5B2\t0x6A67\n0x8FC5B3\t0x6A6A\n0x8FC5B4\t0x6A71\n0x8FC5B5\t0x6A73\n0x8FC5B6\t0x6A7E\n0x8FC5B7\t0x6A81\n0x8FC5B8\t0x6A83\n0x8FC5B9\t0x6A86\n0x8FC5BA\t0x6A87\n0x8FC5BB\t0x6A89\n0x8FC5BC\t0x6A8B\n0x8FC5BD\t0x6A91\n0x8FC5BE\t0x6A9B\n0x8FC5BF\t0x6A9D\n0x8FC5C0\t0x6A9E\n0x8FC5C1\t0x6A9F\n0x8FC5C2\t0x6AA5\n0x8FC5C3\t0x6AAB\n0x8FC5C4\t0x6AAF\n0x8FC5C5\t0x6AB0\n0x8FC5C6\t0x6AB1\n0x8FC5C7\t0x6AB4\n0x8FC5C8\t0x6ABD\n0x8FC5C9\t0x6ABE\n0x8FC5CA\t0x6ABF\n0x8FC5CB\t0x6AC6\n0x8FC5CC\t0x6AC9\n0x8FC5CD\t0x6AC8\n0x8FC5CE\t0x6ACC\n0x8FC5CF\t0x6AD0\n0x8FC5D0\t0x6AD4\n0x8FC5D1\t0x6AD5\n0x8FC5D2\t0x6AD6\n0x8FC5D3\t0x6ADC\n0x8FC5D4\t0x6ADD\n0x8FC5D5\t0x6AE4\n0x8FC5D6\t0x6AE7\n0x8FC5D7\t0x6AEC\n0x8FC5D8\t0x6AF0\n0x8FC5D9\t0x6AF1\n0x8FC5DA\t0x6AF2\n0x8FC5DB\t0x6AFC\n0x8FC5DC\t0x6AFD\n0x8FC5DD\t0x6B02\n0x8FC5DE\t0x6B03\n0x8FC5DF\t0x6B06\n0x8FC5E0\t0x6B07\n0x8FC5E1\t0x6B09\n0x8FC5E2\t0x6B0F\n0x8FC5E3\t0x6B10\n0x8FC5E4\t0x6B11\n0x8FC5E5\t0x6B17\n0x8FC5E6\t0x6B1B\n0x8FC5E7\t0x6B1E\n0x8FC5E8\t0x6B24\n0x8FC5E9\t0x6B28\n0x8FC5EA\t0x6B2B\n0x8FC5EB\t0x6B2C\n0x8FC5EC\t0x6B2F\n0x8FC5ED\t0x6B35\n0x8FC5EE\t0x6B36\n0x8FC5EF\t0x6B3B\n0x8FC5F0\t0x6B3F\n0x8FC5F1\t0x6B46\n0x8FC5F2\t0x6B4A\n0x8FC5F3\t0x6B4D\n0x8FC5F4\t0x6B52\n0x8FC5F5\t0x6B56\n0x8FC5F6\t0x6B58\n0x8FC5F7\t0x6B5D\n0x8FC5F8\t0x6B60\n0x8FC5F9\t0x6B67\n0x8FC5FA\t0x6B6B\n0x8FC5FB\t0x6B6E\n0x8FC5FC\t0x6B70\n0x8FC5FD\t0x6B75\n0x8FC5FE\t0x6B7D\n0x8FC6A1\t0x6B7E\n0x8FC6A2\t0x6B82\n0x8FC6A3\t0x6B85\n0x8FC6A4\t0x6B97\n0x8FC6A5\t0x6B9B\n0x8FC6A6\t0x6B9F\n0x8FC6A7\t0x6BA0\n0x8FC6A8\t0x6BA2\n0x8FC6A9\t0x6BA3\n0x8FC6AA\t0x6BA8\n0x8FC6AB\t0x6BA9\n0x8FC6AC\t0x6BAC\n0x8FC6AD\t0x6BAD\n0x8FC6AE\t0x6BAE\n0x8FC6AF\t0x6BB0\n0x8FC6B0\t0x6BB8\n0x8FC6B1\t0x6BB9\n0x8FC6B2\t0x6BBD\n0x8FC6B3\t0x6BBE\n0x8FC6B4\t0x6BC3\n0x8FC6B5\t0x6BC4\n0x8FC6B6\t0x6BC9\n0x8FC6B7\t0x6BCC\n0x8FC6B8\t0x6BD6\n0x8FC6B9\t0x6BDA\n0x8FC6BA\t0x6BE1\n0x8FC6BB\t0x6BE3\n0x8FC6BC\t0x6BE6\n0x8FC6BD\t0x6BE7\n0x8FC6BE\t0x6BEE\n0x8FC6BF\t0x6BF1\n0x8FC6C0\t0x6BF7\n0x8FC6C1\t0x6BF9\n0x8FC6C2\t0x6BFF\n0x8FC6C3\t0x6C02\n0x8FC6C4\t0x6C04\n0x8FC6C5\t0x6C05\n0x8FC6C6\t0x6C09\n0x8FC6C7\t0x6C0D\n0x8FC6C8\t0x6C0E\n0x8FC6C9\t0x6C10\n0x8FC6CA\t0x6C12\n0x8FC6CB\t0x6C19\n0x8FC6CC\t0x6C1F\n0x8FC6CD\t0x6C26\n0x8FC6CE\t0x6C27\n0x8FC6CF\t0x6C28\n0x8FC6D0\t0x6C2C\n0x8FC6D1\t0x6C2E\n0x8FC6D2\t0x6C33\n0x8FC6D3\t0x6C35\n0x8FC6D4\t0x6C36\n0x8FC6D5\t0x6C3A\n0x8FC6D6\t0x6C3B\n0x8FC6D7\t0x6C3F\n0x8FC6D8\t0x6C4A\n0x8FC6D9\t0x6C4B\n0x8FC6DA\t0x6C4D\n0x8FC6DB\t0x6C4F\n0x8FC6DC\t0x6C52\n0x8FC6DD\t0x6C54\n0x8FC6DE\t0x6C59\n0x8FC6DF\t0x6C5B\n0x8FC6E0\t0x6C5C\n0x8FC6E1\t0x6C6B\n0x8FC6E2\t0x6C6D\n0x8FC6E3\t0x6C6F\n0x8FC6E4\t0x6C74\n0x8FC6E5\t0x6C76\n0x8FC6E6\t0x6C78\n0x8FC6E7\t0x6C79\n0x8FC6E8\t0x6C7B\n0x8FC6E9\t0x6C85\n0x8FC6EA\t0x6C86\n0x8FC6EB\t0x6C87\n0x8FC6EC\t0x6C89\n0x8FC6ED\t0x6C94\n0x8FC6EE\t0x6C95\n0x8FC6EF\t0x6C97\n0x8FC6F0\t0x6C98\n0x8FC6F1\t0x6C9C\n0x8FC6F2\t0x6C9F\n0x8FC6F3\t0x6CB0\n0x8FC6F4\t0x6CB2\n0x8FC6F5\t0x6CB4\n0x8FC6F6\t0x6CC2\n0x8FC6F7\t0x6CC6\n0x8FC6F8\t0x6CCD\n0x8FC6F9\t0x6CCF\n0x8FC6FA\t0x6CD0\n0x8FC6FB\t0x6CD1\n0x8FC6FC\t0x6CD2\n0x8FC6FD\t0x6CD4\n0x8FC6FE\t0x6CD6\n0x8FC7A1\t0x6CDA\n0x8FC7A2\t0x6CDC\n0x8FC7A3\t0x6CE0\n0x8FC7A4\t0x6CE7\n0x8FC7A5\t0x6CE9\n0x8FC7A6\t0x6CEB\n0x8FC7A7\t0x6CEC\n0x8FC7A8\t0x6CEE\n0x8FC7A9\t0x6CF2\n0x8FC7AA\t0x6CF4\n0x8FC7AB\t0x6D04\n0x8FC7AC\t0x6D07\n0x8FC7AD\t0x6D0A\n0x8FC7AE\t0x6D0E\n0x8FC7AF\t0x6D0F\n0x8FC7B0\t0x6D11\n0x8FC7B1\t0x6D13\n0x8FC7B2\t0x6D1A\n0x8FC7B3\t0x6D26\n0x8FC7B4\t0x6D27\n0x8FC7B5\t0x6D28\n0x8FC7B6\t0x6C67\n0x8FC7B7\t0x6D2E\n0x8FC7B8\t0x6D2F\n0x8FC7B9\t0x6D31\n0x8FC7BA\t0x6D39\n0x8FC7BB\t0x6D3C\n0x8FC7BC\t0x6D3F\n0x8FC7BD\t0x6D57\n0x8FC7BE\t0x6D5E\n0x8FC7BF\t0x6D5F\n0x8FC7C0\t0x6D61\n0x8FC7C1\t0x6D65\n0x8FC7C2\t0x6D67\n0x8FC7C3\t0x6D6F\n0x8FC7C4\t0x6D70\n0x8FC7C5\t0x6D7C\n0x8FC7C6\t0x6D82\n0x8FC7C7\t0x6D87\n0x8FC7C8\t0x6D91\n0x8FC7C9\t0x6D92\n0x8FC7CA\t0x6D94\n0x8FC7CB\t0x6D96\n0x8FC7CC\t0x6D97\n0x8FC7CD\t0x6D98\n0x8FC7CE\t0x6DAA\n0x8FC7CF\t0x6DAC\n0x8FC7D0\t0x6DB4\n0x8FC7D1\t0x6DB7\n0x8FC7D2\t0x6DB9\n0x8FC7D3\t0x6DBD\n0x8FC7D4\t0x6DBF\n0x8FC7D5\t0x6DC4\n0x8FC7D6\t0x6DC8\n0x8FC7D7\t0x6DCA\n0x8FC7D8\t0x6DCE\n0x8FC7D9\t0x6DCF\n0x8FC7DA\t0x6DD6\n0x8FC7DB\t0x6DDB\n0x8FC7DC\t0x6DDD\n0x8FC7DD\t0x6DDF\n0x8FC7DE\t0x6DE0\n0x8FC7DF\t0x6DE2\n0x8FC7E0\t0x6DE5\n0x8FC7E1\t0x6DE9\n0x8FC7E2\t0x6DEF\n0x8FC7E3\t0x6DF0\n0x8FC7E4\t0x6DF4\n0x8FC7E5\t0x6DF6\n0x8FC7E6\t0x6DFC\n0x8FC7E7\t0x6E00\n0x8FC7E8\t0x6E04\n0x8FC7E9\t0x6E1E\n0x8FC7EA\t0x6E22\n0x8FC7EB\t0x6E27\n0x8FC7EC\t0x6E32\n0x8FC7ED\t0x6E36\n0x8FC7EE\t0x6E39\n0x8FC7EF\t0x6E3B\n0x8FC7F0\t0x6E3C\n0x8FC7F1\t0x6E44\n0x8FC7F2\t0x6E45\n0x8FC7F3\t0x6E48\n0x8FC7F4\t0x6E49\n0x8FC7F5\t0x6E4B\n0x8FC7F6\t0x6E4F\n0x8FC7F7\t0x6E51\n0x8FC7F8\t0x6E52\n0x8FC7F9\t0x6E53\n0x8FC7FA\t0x6E54\n0x8FC7FB\t0x6E57\n0x8FC7FC\t0x6E5C\n0x8FC7FD\t0x6E5D\n0x8FC7FE\t0x6E5E\n0x8FC8A1\t0x6E62\n0x8FC8A2\t0x6E63\n0x8FC8A3\t0x6E68\n0x8FC8A4\t0x6E73\n0x8FC8A5\t0x6E7B\n0x8FC8A6\t0x6E7D\n0x8FC8A7\t0x6E8D\n0x8FC8A8\t0x6E93\n0x8FC8A9\t0x6E99\n0x8FC8AA\t0x6EA0\n0x8FC8AB\t0x6EA7\n0x8FC8AC\t0x6EAD\n0x8FC8AD\t0x6EAE\n0x8FC8AE\t0x6EB1\n0x8FC8AF\t0x6EB3\n0x8FC8B0\t0x6EBB\n0x8FC8B1\t0x6EBF\n0x8FC8B2\t0x6EC0\n0x8FC8B3\t0x6EC1\n0x8FC8B4\t0x6EC3\n0x8FC8B5\t0x6EC7\n0x8FC8B6\t0x6EC8\n0x8FC8B7\t0x6ECA\n0x8FC8B8\t0x6ECD\n0x8FC8B9\t0x6ECE\n0x8FC8BA\t0x6ECF\n0x8FC8BB\t0x6EEB\n0x8FC8BC\t0x6EED\n0x8FC8BD\t0x6EEE\n0x8FC8BE\t0x6EF9\n0x8FC8BF\t0x6EFB\n0x8FC8C0\t0x6EFD\n0x8FC8C1\t0x6F04\n0x8FC8C2\t0x6F08\n0x8FC8C3\t0x6F0A\n0x8FC8C4\t0x6F0C\n0x8FC8C5\t0x6F0D\n0x8FC8C6\t0x6F16\n0x8FC8C7\t0x6F18\n0x8FC8C8\t0x6F1A\n0x8FC8C9\t0x6F1B\n0x8FC8CA\t0x6F26\n0x8FC8CB\t0x6F29\n0x8FC8CC\t0x6F2A\n0x8FC8CD\t0x6F2F\n0x8FC8CE\t0x6F30\n0x8FC8CF\t0x6F33\n0x8FC8D0\t0x6F36\n0x8FC8D1\t0x6F3B\n0x8FC8D2\t0x6F3C\n0x8FC8D3\t0x6F2D\n0x8FC8D4\t0x6F4F\n0x8FC8D5\t0x6F51\n0x8FC8D6\t0x6F52\n0x8FC8D7\t0x6F53\n0x8FC8D8\t0x6F57\n0x8FC8D9\t0x6F59\n0x8FC8DA\t0x6F5A\n0x8FC8DB\t0x6F5D\n0x8FC8DC\t0x6F5E\n0x8FC8DD\t0x6F61\n0x8FC8DE\t0x6F62\n0x8FC8DF\t0x6F68\n0x8FC8E0\t0x6F6C\n0x8FC8E1\t0x6F7D\n0x8FC8E2\t0x6F7E\n0x8FC8E3\t0x6F83\n0x8FC8E4\t0x6F87\n0x8FC8E5\t0x6F88\n0x8FC8E6\t0x6F8B\n0x8FC8E7\t0x6F8C\n0x8FC8E8\t0x6F8D\n0x8FC8E9\t0x6F90\n0x8FC8EA\t0x6F92\n0x8FC8EB\t0x6F93\n0x8FC8EC\t0x6F94\n0x8FC8ED\t0x6F96\n0x8FC8EE\t0x6F9A\n0x8FC8EF\t0x6F9F\n0x8FC8F0\t0x6FA0\n0x8FC8F1\t0x6FA5\n0x8FC8F2\t0x6FA6\n0x8FC8F3\t0x6FA7\n0x8FC8F4\t0x6FA8\n0x8FC8F5\t0x6FAE\n0x8FC8F6\t0x6FAF\n0x8FC8F7\t0x6FB0\n0x8FC8F8\t0x6FB5\n0x8FC8F9\t0x6FB6\n0x8FC8FA\t0x6FBC\n0x8FC8FB\t0x6FC5\n0x8FC8FC\t0x6FC7\n0x8FC8FD\t0x6FC8\n0x8FC8FE\t0x6FCA\n0x8FC9A1\t0x6FDA\n0x8FC9A2\t0x6FDE\n0x8FC9A3\t0x6FE8\n0x8FC9A4\t0x6FE9\n0x8FC9A5\t0x6FF0\n0x8FC9A6\t0x6FF5\n0x8FC9A7\t0x6FF9\n0x8FC9A8\t0x6FFC\n0x8FC9A9\t0x6FFD\n0x8FC9AA\t0x7000\n0x8FC9AB\t0x7005\n0x8FC9AC\t0x7006\n0x8FC9AD\t0x7007\n0x8FC9AE\t0x700D\n0x8FC9AF\t0x7017\n0x8FC9B0\t0x7020\n0x8FC9B1\t0x7023\n0x8FC9B2\t0x702F\n0x8FC9B3\t0x7034\n0x8FC9B4\t0x7037\n0x8FC9B5\t0x7039\n0x8FC9B6\t0x703C\n0x8FC9B7\t0x7043\n0x8FC9B8\t0x7044\n0x8FC9B9\t0x7048\n0x8FC9BA\t0x7049\n0x8FC9BB\t0x704A\n0x8FC9BC\t0x704B\n0x8FC9BD\t0x7054\n0x8FC9BE\t0x7055\n0x8FC9BF\t0x705D\n0x8FC9C0\t0x705E\n0x8FC9C1\t0x704E\n0x8FC9C2\t0x7064\n0x8FC9C3\t0x7065\n0x8FC9C4\t0x706C\n0x8FC9C5\t0x706E\n0x8FC9C6\t0x7075\n0x8FC9C7\t0x7076\n0x8FC9C8\t0x707E\n0x8FC9C9\t0x7081\n0x8FC9CA\t0x7085\n0x8FC9CB\t0x7086\n0x8FC9CC\t0x7094\n0x8FC9CD\t0x7095\n0x8FC9CE\t0x7096\n0x8FC9CF\t0x7097\n0x8FC9D0\t0x7098\n0x8FC9D1\t0x709B\n0x8FC9D2\t0x70A4\n0x8FC9D3\t0x70AB\n0x8FC9D4\t0x70B0\n0x8FC9D5\t0x70B1\n0x8FC9D6\t0x70B4\n0x8FC9D7\t0x70B7\n0x8FC9D8\t0x70CA\n0x8FC9D9\t0x70D1\n0x8FC9DA\t0x70D3\n0x8FC9DB\t0x70D4\n0x8FC9DC\t0x70D5\n0x8FC9DD\t0x70D6\n0x8FC9DE\t0x70D8\n0x8FC9DF\t0x70DC\n0x8FC9E0\t0x70E4\n0x8FC9E1\t0x70FA\n0x8FC9E2\t0x7103\n0x8FC9E3\t0x7104\n0x8FC9E4\t0x7105\n0x8FC9E5\t0x7106\n0x8FC9E6\t0x7107\n0x8FC9E7\t0x710B\n0x8FC9E8\t0x710C\n0x8FC9E9\t0x710F\n0x8FC9EA\t0x711E\n0x8FC9EB\t0x7120\n0x8FC9EC\t0x712B\n0x8FC9ED\t0x712D\n0x8FC9EE\t0x712F\n0x8FC9EF\t0x7130\n0x8FC9F0\t0x7131\n0x8FC9F1\t0x7138\n0x8FC9F2\t0x7141\n0x8FC9F3\t0x7145\n0x8FC9F4\t0x7146\n0x8FC9F5\t0x7147\n0x8FC9F6\t0x714A\n0x8FC9F7\t0x714B\n0x8FC9F8\t0x7150\n0x8FC9F9\t0x7152\n0x8FC9FA\t0x7157\n0x8FC9FB\t0x715A\n0x8FC9FC\t0x715C\n0x8FC9FD\t0x715E\n0x8FC9FE\t0x7160\n0x8FCAA1\t0x7168\n0x8FCAA2\t0x7179\n0x8FCAA3\t0x7180\n0x8FCAA4\t0x7185\n0x8FCAA5\t0x7187\n0x8FCAA6\t0x718C\n0x8FCAA7\t0x7192\n0x8FCAA8\t0x719A\n0x8FCAA9\t0x719B\n0x8FCAAA\t0x71A0\n0x8FCAAB\t0x71A2\n0x8FCAAC\t0x71AF\n0x8FCAAD\t0x71B0\n0x8FCAAE\t0x71B2\n0x8FCAAF\t0x71B3\n0x8FCAB0\t0x71BA\n0x8FCAB1\t0x71BF\n0x8FCAB2\t0x71C0\n0x8FCAB3\t0x71C1\n0x8FCAB4\t0x71C4\n0x8FCAB5\t0x71CB\n0x8FCAB6\t0x71CC\n0x8FCAB7\t0x71D3\n0x8FCAB8\t0x71D6\n0x8FCAB9\t0x71D9\n0x8FCABA\t0x71DA\n0x8FCABB\t0x71DC\n0x8FCABC\t0x71F8\n0x8FCABD\t0x71FE\n0x8FCABE\t0x7200\n0x8FCABF\t0x7207\n0x8FCAC0\t0x7208\n0x8FCAC1\t0x7209\n0x8FCAC2\t0x7213\n0x8FCAC3\t0x7217\n0x8FCAC4\t0x721A\n0x8FCAC5\t0x721D\n0x8FCAC6\t0x721F\n0x8FCAC7\t0x7224\n0x8FCAC8\t0x722B\n0x8FCAC9\t0x722F\n0x8FCACA\t0x7234\n0x8FCACB\t0x7238\n0x8FCACC\t0x7239\n0x8FCACD\t0x7241\n0x8FCACE\t0x7242\n0x8FCACF\t0x7243\n0x8FCAD0\t0x7245\n0x8FCAD1\t0x724E\n0x8FCAD2\t0x724F\n0x8FCAD3\t0x7250\n0x8FCAD4\t0x7253\n0x8FCAD5\t0x7255\n0x8FCAD6\t0x7256\n0x8FCAD7\t0x725A\n0x8FCAD8\t0x725C\n0x8FCAD9\t0x725E\n0x8FCADA\t0x7260\n0x8FCADB\t0x7263\n0x8FCADC\t0x7268\n0x8FCADD\t0x726B\n0x8FCADE\t0x726E\n0x8FCADF\t0x726F\n0x8FCAE0\t0x7271\n0x8FCAE1\t0x7277\n0x8FCAE2\t0x7278\n0x8FCAE3\t0x727B\n0x8FCAE4\t0x727C\n0x8FCAE5\t0x727F\n0x8FCAE6\t0x7284\n0x8FCAE7\t0x7289\n0x8FCAE8\t0x728D\n0x8FCAE9\t0x728E\n0x8FCAEA\t0x7293\n0x8FCAEB\t0x729B\n0x8FCAEC\t0x72A8\n0x8FCAED\t0x72AD\n0x8FCAEE\t0x72AE\n0x8FCAEF\t0x72B1\n0x8FCAF0\t0x72B4\n0x8FCAF1\t0x72BE\n0x8FCAF2\t0x72C1\n0x8FCAF3\t0x72C7\n0x8FCAF4\t0x72C9\n0x8FCAF5\t0x72CC\n0x8FCAF6\t0x72D5\n0x8FCAF7\t0x72D6\n0x8FCAF8\t0x72D8\n0x8FCAF9\t0x72DF\n0x8FCAFA\t0x72E5\n0x8FCAFB\t0x72F3\n0x8FCAFC\t0x72F4\n0x8FCAFD\t0x72FA\n0x8FCAFE\t0x72FB\n0x8FCBA1\t0x72FE\n0x8FCBA2\t0x7302\n0x8FCBA3\t0x7304\n0x8FCBA4\t0x7305\n0x8FCBA5\t0x7307\n0x8FCBA6\t0x730B\n0x8FCBA7\t0x730D\n0x8FCBA8\t0x7312\n0x8FCBA9\t0x7313\n0x8FCBAA\t0x7318\n0x8FCBAB\t0x7319\n0x8FCBAC\t0x731E\n0x8FCBAD\t0x7322\n0x8FCBAE\t0x7324\n0x8FCBAF\t0x7327\n0x8FCBB0\t0x7328\n0x8FCBB1\t0x732C\n0x8FCBB2\t0x7331\n0x8FCBB3\t0x7332\n0x8FCBB4\t0x7335\n0x8FCBB5\t0x733A\n0x8FCBB6\t0x733B\n0x8FCBB7\t0x733D\n0x8FCBB8\t0x7343\n0x8FCBB9\t0x734D\n0x8FCBBA\t0x7350\n0x8FCBBB\t0x7352\n0x8FCBBC\t0x7356\n0x8FCBBD\t0x7358\n0x8FCBBE\t0x735D\n0x8FCBBF\t0x735E\n0x8FCBC0\t0x735F\n0x8FCBC1\t0x7360\n0x8FCBC2\t0x7366\n0x8FCBC3\t0x7367\n0x8FCBC4\t0x7369\n0x8FCBC5\t0x736B\n0x8FCBC6\t0x736C\n0x8FCBC7\t0x736E\n0x8FCBC8\t0x736F\n0x8FCBC9\t0x7371\n0x8FCBCA\t0x7377\n0x8FCBCB\t0x7379\n0x8FCBCC\t0x737C\n0x8FCBCD\t0x7380\n0x8FCBCE\t0x7381\n0x8FCBCF\t0x7383\n0x8FCBD0\t0x7385\n0x8FCBD1\t0x7386\n0x8FCBD2\t0x738E\n0x8FCBD3\t0x7390\n0x8FCBD4\t0x7393\n0x8FCBD5\t0x7395\n0x8FCBD6\t0x7397\n0x8FCBD7\t0x7398\n0x8FCBD8\t0x739C\n0x8FCBD9\t0x739E\n0x8FCBDA\t0x739F\n0x8FCBDB\t0x73A0\n0x8FCBDC\t0x73A2\n0x8FCBDD\t0x73A5\n0x8FCBDE\t0x73A6\n0x8FCBDF\t0x73AA\n0x8FCBE0\t0x73AB\n0x8FCBE1\t0x73AD\n0x8FCBE2\t0x73B5\n0x8FCBE3\t0x73B7\n0x8FCBE4\t0x73B9\n0x8FCBE5\t0x73BC\n0x8FCBE6\t0x73BD\n0x8FCBE7\t0x73BF\n0x8FCBE8\t0x73C5\n0x8FCBE9\t0x73C6\n0x8FCBEA\t0x73C9\n0x8FCBEB\t0x73CB\n0x8FCBEC\t0x73CC\n0x8FCBED\t0x73CF\n0x8FCBEE\t0x73D2\n0x8FCBEF\t0x73D3\n0x8FCBF0\t0x73D6\n0x8FCBF1\t0x73D9\n0x8FCBF2\t0x73DD\n0x8FCBF3\t0x73E1\n0x8FCBF4\t0x73E3\n0x8FCBF5\t0x73E6\n0x8FCBF6\t0x73E7\n0x8FCBF7\t0x73E9\n0x8FCBF8\t0x73F4\n0x8FCBF9\t0x73F5\n0x8FCBFA\t0x73F7\n0x8FCBFB\t0x73F9\n0x8FCBFC\t0x73FA\n0x8FCBFD\t0x73FB\n0x8FCBFE\t0x73FD\n0x8FCCA1\t0x73FF\n0x8FCCA2\t0x7400\n0x8FCCA3\t0x7401\n0x8FCCA4\t0x7404\n0x8FCCA5\t0x7407\n0x8FCCA6\t0x740A\n0x8FCCA7\t0x7411\n0x8FCCA8\t0x741A\n0x8FCCA9\t0x741B\n0x8FCCAA\t0x7424\n0x8FCCAB\t0x7426\n0x8FCCAC\t0x7428\n0x8FCCAD\t0x7429\n0x8FCCAE\t0x742A\n0x8FCCAF\t0x742B\n0x8FCCB0\t0x742C\n0x8FCCB1\t0x742D\n0x8FCCB2\t0x742E\n0x8FCCB3\t0x742F\n0x8FCCB4\t0x7430\n0x8FCCB5\t0x7431\n0x8FCCB6\t0x7439\n0x8FCCB7\t0x7440\n0x8FCCB8\t0x7443\n0x8FCCB9\t0x7444\n0x8FCCBA\t0x7446\n0x8FCCBB\t0x7447\n0x8FCCBC\t0x744B\n0x8FCCBD\t0x744D\n0x8FCCBE\t0x7451\n0x8FCCBF\t0x7452\n0x8FCCC0\t0x7457\n0x8FCCC1\t0x745D\n0x8FCCC2\t0x7462\n0x8FCCC3\t0x7466\n0x8FCCC4\t0x7467\n0x8FCCC5\t0x7468\n0x8FCCC6\t0x746B\n0x8FCCC7\t0x746D\n0x8FCCC8\t0x746E\n0x8FCCC9\t0x7471\n0x8FCCCA\t0x7472\n0x8FCCCB\t0x7480\n0x8FCCCC\t0x7481\n0x8FCCCD\t0x7485\n0x8FCCCE\t0x7486\n0x8FCCCF\t0x7487\n0x8FCCD0\t0x7489\n0x8FCCD1\t0x748F\n0x8FCCD2\t0x7490\n0x8FCCD3\t0x7491\n0x8FCCD4\t0x7492\n0x8FCCD5\t0x7498\n0x8FCCD6\t0x7499\n0x8FCCD7\t0x749A\n0x8FCCD8\t0x749C\n0x8FCCD9\t0x749F\n0x8FCCDA\t0x74A0\n0x8FCCDB\t0x74A1\n0x8FCCDC\t0x74A3\n0x8FCCDD\t0x74A6\n0x8FCCDE\t0x74A8\n0x8FCCDF\t0x74A9\n0x8FCCE0\t0x74AA\n0x8FCCE1\t0x74AB\n0x8FCCE2\t0x74AE\n0x8FCCE3\t0x74AF\n0x8FCCE4\t0x74B1\n0x8FCCE5\t0x74B2\n0x8FCCE6\t0x74B5\n0x8FCCE7\t0x74B9\n0x8FCCE8\t0x74BB\n0x8FCCE9\t0x74BF\n0x8FCCEA\t0x74C8\n0x8FCCEB\t0x74C9\n0x8FCCEC\t0x74CC\n0x8FCCED\t0x74D0\n0x8FCCEE\t0x74D3\n0x8FCCEF\t0x74D8\n0x8FCCF0\t0x74DA\n0x8FCCF1\t0x74DB\n0x8FCCF2\t0x74DE\n0x8FCCF3\t0x74DF\n0x8FCCF4\t0x74E4\n0x8FCCF5\t0x74E8\n0x8FCCF6\t0x74EA\n0x8FCCF7\t0x74EB\n0x8FCCF8\t0x74EF\n0x8FCCF9\t0x74F4\n0x8FCCFA\t0x74FA\n0x8FCCFB\t0x74FB\n0x8FCCFC\t0x74FC\n0x8FCCFD\t0x74FF\n0x8FCCFE\t0x7506\n0x8FCDA1\t0x7512\n0x8FCDA2\t0x7516\n0x8FCDA3\t0x7517\n0x8FCDA4\t0x7520\n0x8FCDA5\t0x7521\n0x8FCDA6\t0x7524\n0x8FCDA7\t0x7527\n0x8FCDA8\t0x7529\n0x8FCDA9\t0x752A\n0x8FCDAA\t0x752F\n0x8FCDAB\t0x7536\n0x8FCDAC\t0x7539\n0x8FCDAD\t0x753D\n0x8FCDAE\t0x753E\n0x8FCDAF\t0x753F\n0x8FCDB0\t0x7540\n0x8FCDB1\t0x7543\n0x8FCDB2\t0x7547\n0x8FCDB3\t0x7548\n0x8FCDB4\t0x754E\n0x8FCDB5\t0x7550\n0x8FCDB6\t0x7552\n0x8FCDB7\t0x7557\n0x8FCDB8\t0x755E\n0x8FCDB9\t0x755F\n0x8FCDBA\t0x7561\n0x8FCDBB\t0x756F\n0x8FCDBC\t0x7571\n0x8FCDBD\t0x7579\n0x8FCDBE\t0x757A\n0x8FCDBF\t0x757B\n0x8FCDC0\t0x757C\n0x8FCDC1\t0x757D\n0x8FCDC2\t0x757E\n0x8FCDC3\t0x7581\n0x8FCDC4\t0x7585\n0x8FCDC5\t0x7590\n0x8FCDC6\t0x7592\n0x8FCDC7\t0x7593\n0x8FCDC8\t0x7595\n0x8FCDC9\t0x7599\n0x8FCDCA\t0x759C\n0x8FCDCB\t0x75A2\n0x8FCDCC\t0x75A4\n0x8FCDCD\t0x75B4\n0x8FCDCE\t0x75BA\n0x8FCDCF\t0x75BF\n0x8FCDD0\t0x75C0\n0x8FCDD1\t0x75C1\n0x8FCDD2\t0x75C4\n0x8FCDD3\t0x75C6\n0x8FCDD4\t0x75CC\n0x8FCDD5\t0x75CE\n0x8FCDD6\t0x75CF\n0x8FCDD7\t0x75D7\n0x8FCDD8\t0x75DC\n0x8FCDD9\t0x75DF\n0x8FCDDA\t0x75E0\n0x8FCDDB\t0x75E1\n0x8FCDDC\t0x75E4\n0x8FCDDD\t0x75E7\n0x8FCDDE\t0x75EC\n0x8FCDDF\t0x75EE\n0x8FCDE0\t0x75EF\n0x8FCDE1\t0x75F1\n0x8FCDE2\t0x75F9\n0x8FCDE3\t0x7600\n0x8FCDE4\t0x7602\n0x8FCDE5\t0x7603\n0x8FCDE6\t0x7604\n0x8FCDE7\t0x7607\n0x8FCDE8\t0x7608\n0x8FCDE9\t0x760A\n0x8FCDEA\t0x760C\n0x8FCDEB\t0x760F\n0x8FCDEC\t0x7612\n0x8FCDED\t0x7613\n0x8FCDEE\t0x7615\n0x8FCDEF\t0x7616\n0x8FCDF0\t0x7619\n0x8FCDF1\t0x761B\n0x8FCDF2\t0x761C\n0x8FCDF3\t0x761D\n0x8FCDF4\t0x761E\n0x8FCDF5\t0x7623\n0x8FCDF6\t0x7625\n0x8FCDF7\t0x7626\n0x8FCDF8\t0x7629\n0x8FCDF9\t0x762D\n0x8FCDFA\t0x7632\n0x8FCDFB\t0x7633\n0x8FCDFC\t0x7635\n0x8FCDFD\t0x7638\n0x8FCDFE\t0x7639\n0x8FCEA1\t0x763A\n0x8FCEA2\t0x763C\n0x8FCEA3\t0x764A\n0x8FCEA4\t0x7640\n0x8FCEA5\t0x7641\n0x8FCEA6\t0x7643\n0x8FCEA7\t0x7644\n0x8FCEA8\t0x7645\n0x8FCEA9\t0x7649\n0x8FCEAA\t0x764B\n0x8FCEAB\t0x7655\n0x8FCEAC\t0x7659\n0x8FCEAD\t0x765F\n0x8FCEAE\t0x7664\n0x8FCEAF\t0x7665\n0x8FCEB0\t0x766D\n0x8FCEB1\t0x766E\n0x8FCEB2\t0x766F\n0x8FCEB3\t0x7671\n0x8FCEB4\t0x7674\n0x8FCEB5\t0x7681\n0x8FCEB6\t0x7685\n0x8FCEB7\t0x768C\n0x8FCEB8\t0x768D\n0x8FCEB9\t0x7695\n0x8FCEBA\t0x769B\n0x8FCEBB\t0x769C\n0x8FCEBC\t0x769D\n0x8FCEBD\t0x769F\n0x8FCEBE\t0x76A0\n0x8FCEBF\t0x76A2\n0x8FCEC0\t0x76A3\n0x8FCEC1\t0x76A4\n0x8FCEC2\t0x76A5\n0x8FCEC3\t0x76A6\n0x8FCEC4\t0x76A7\n0x8FCEC5\t0x76A8\n0x8FCEC6\t0x76AA\n0x8FCEC7\t0x76AD\n0x8FCEC8\t0x76BD\n0x8FCEC9\t0x76C1\n0x8FCECA\t0x76C5\n0x8FCECB\t0x76C9\n0x8FCECC\t0x76CB\n0x8FCECD\t0x76CC\n0x8FCECE\t0x76CE\n0x8FCECF\t0x76D4\n0x8FCED0\t0x76D9\n0x8FCED1\t0x76E0\n0x8FCED2\t0x76E6\n0x8FCED3\t0x76E8\n0x8FCED4\t0x76EC\n0x8FCED5\t0x76F0\n0x8FCED6\t0x76F1\n0x8FCED7\t0x76F6\n0x8FCED8\t0x76F9\n0x8FCED9\t0x76FC\n0x8FCEDA\t0x7700\n0x8FCEDB\t0x7706\n0x8FCEDC\t0x770A\n0x8FCEDD\t0x770E\n0x8FCEDE\t0x7712\n0x8FCEDF\t0x7714\n0x8FCEE0\t0x7715\n0x8FCEE1\t0x7717\n0x8FCEE2\t0x7719\n0x8FCEE3\t0x771A\n0x8FCEE4\t0x771C\n0x8FCEE5\t0x7722\n0x8FCEE6\t0x7728\n0x8FCEE7\t0x772D\n0x8FCEE8\t0x772E\n0x8FCEE9\t0x772F\n0x8FCEEA\t0x7734\n0x8FCEEB\t0x7735\n0x8FCEEC\t0x7736\n0x8FCEED\t0x7739\n0x8FCEEE\t0x773D\n0x8FCEEF\t0x773E\n0x8FCEF0\t0x7742\n0x8FCEF1\t0x7745\n0x8FCEF2\t0x7746\n0x8FCEF3\t0x774A\n0x8FCEF4\t0x774D\n0x8FCEF5\t0x774E\n0x8FCEF6\t0x774F\n0x8FCEF7\t0x7752\n0x8FCEF8\t0x7756\n0x8FCEF9\t0x7757\n0x8FCEFA\t0x775C\n0x8FCEFB\t0x775E\n0x8FCEFC\t0x775F\n0x8FCEFD\t0x7760\n0x8FCEFE\t0x7762\n0x8FCFA1\t0x7764\n0x8FCFA2\t0x7767\n0x8FCFA3\t0x776A\n0x8FCFA4\t0x776C\n0x8FCFA5\t0x7770\n0x8FCFA6\t0x7772\n0x8FCFA7\t0x7773\n0x8FCFA8\t0x7774\n0x8FCFA9\t0x777A\n0x8FCFAA\t0x777D\n0x8FCFAB\t0x7780\n0x8FCFAC\t0x7784\n0x8FCFAD\t0x778C\n0x8FCFAE\t0x778D\n0x8FCFAF\t0x7794\n0x8FCFB0\t0x7795\n0x8FCFB1\t0x7796\n0x8FCFB2\t0x779A\n0x8FCFB3\t0x779F\n0x8FCFB4\t0x77A2\n0x8FCFB5\t0x77A7\n0x8FCFB6\t0x77AA\n0x8FCFB7\t0x77AE\n0x8FCFB8\t0x77AF\n0x8FCFB9\t0x77B1\n0x8FCFBA\t0x77B5\n0x8FCFBB\t0x77BE\n0x8FCFBC\t0x77C3\n0x8FCFBD\t0x77C9\n0x8FCFBE\t0x77D1\n0x8FCFBF\t0x77D2\n0x8FCFC0\t0x77D5\n0x8FCFC1\t0x77D9\n0x8FCFC2\t0x77DE\n0x8FCFC3\t0x77DF\n0x8FCFC4\t0x77E0\n0x8FCFC5\t0x77E4\n0x8FCFC6\t0x77E6\n0x8FCFC7\t0x77EA\n0x8FCFC8\t0x77EC\n0x8FCFC9\t0x77F0\n0x8FCFCA\t0x77F1\n0x8FCFCB\t0x77F4\n0x8FCFCC\t0x77F8\n0x8FCFCD\t0x77FB\n0x8FCFCE\t0x7805\n0x8FCFCF\t0x7806\n0x8FCFD0\t0x7809\n0x8FCFD1\t0x780D\n0x8FCFD2\t0x780E\n0x8FCFD3\t0x7811\n0x8FCFD4\t0x781D\n0x8FCFD5\t0x7821\n0x8FCFD6\t0x7822\n0x8FCFD7\t0x7823\n0x8FCFD8\t0x782D\n0x8FCFD9\t0x782E\n0x8FCFDA\t0x7830\n0x8FCFDB\t0x7835\n0x8FCFDC\t0x7837\n0x8FCFDD\t0x7843\n0x8FCFDE\t0x7844\n0x8FCFDF\t0x7847\n0x8FCFE0\t0x7848\n0x8FCFE1\t0x784C\n0x8FCFE2\t0x784E\n0x8FCFE3\t0x7852\n0x8FCFE4\t0x785C\n0x8FCFE5\t0x785E\n0x8FCFE6\t0x7860\n0x8FCFE7\t0x7861\n0x8FCFE8\t0x7863\n0x8FCFE9\t0x7864\n0x8FCFEA\t0x7868\n0x8FCFEB\t0x786A\n0x8FCFEC\t0x786E\n0x8FCFED\t0x787A\n0x8FCFEE\t0x787E\n0x8FCFEF\t0x788A\n0x8FCFF0\t0x788F\n0x8FCFF1\t0x7894\n0x8FCFF2\t0x7898\n0x8FCFF3\t0x78A1\n0x8FCFF4\t0x789D\n0x8FCFF5\t0x789E\n0x8FCFF6\t0x789F\n0x8FCFF7\t0x78A4\n0x8FCFF8\t0x78A8\n0x8FCFF9\t0x78AC\n0x8FCFFA\t0x78AD\n0x8FCFFB\t0x78B0\n0x8FCFFC\t0x78B1\n0x8FCFFD\t0x78B2\n0x8FCFFE\t0x78B3\n0x8FD0A1\t0x78BB\n0x8FD0A2\t0x78BD\n0x8FD0A3\t0x78BF\n0x8FD0A4\t0x78C7\n0x8FD0A5\t0x78C8\n0x8FD0A6\t0x78C9\n0x8FD0A7\t0x78CC\n0x8FD0A8\t0x78CE\n0x8FD0A9\t0x78D2\n0x8FD0AA\t0x78D3\n0x8FD0AB\t0x78D5\n0x8FD0AC\t0x78D6\n0x8FD0AD\t0x78E4\n0x8FD0AE\t0x78DB\n0x8FD0AF\t0x78DF\n0x8FD0B0\t0x78E0\n0x8FD0B1\t0x78E1\n0x8FD0B2\t0x78E6\n0x8FD0B3\t0x78EA\n0x8FD0B4\t0x78F2\n0x8FD0B5\t0x78F3\n0x8FD0B6\t0x7900\n0x8FD0B7\t0x78F6\n0x8FD0B8\t0x78F7\n0x8FD0B9\t0x78FA\n0x8FD0BA\t0x78FB\n0x8FD0BB\t0x78FF\n0x8FD0BC\t0x7906\n0x8FD0BD\t0x790C\n0x8FD0BE\t0x7910\n0x8FD0BF\t0x791A\n0x8FD0C0\t0x791C\n0x8FD0C1\t0x791E\n0x8FD0C2\t0x791F\n0x8FD0C3\t0x7920\n0x8FD0C4\t0x7925\n0x8FD0C5\t0x7927\n0x8FD0C6\t0x7929\n0x8FD0C7\t0x792D\n0x8FD0C8\t0x7931\n0x8FD0C9\t0x7934\n0x8FD0CA\t0x7935\n0x8FD0CB\t0x793B\n0x8FD0CC\t0x793D\n0x8FD0CD\t0x793F\n0x8FD0CE\t0x7944\n0x8FD0CF\t0x7945\n0x8FD0D0\t0x7946\n0x8FD0D1\t0x794A\n0x8FD0D2\t0x794B\n0x8FD0D3\t0x794F\n0x8FD0D4\t0x7951\n0x8FD0D5\t0x7954\n0x8FD0D6\t0x7958\n0x8FD0D7\t0x795B\n0x8FD0D8\t0x795C\n0x8FD0D9\t0x7967\n0x8FD0DA\t0x7969\n0x8FD0DB\t0x796B\n0x8FD0DC\t0x7972\n0x8FD0DD\t0x7979\n0x8FD0DE\t0x797B\n0x8FD0DF\t0x797C\n0x8FD0E0\t0x797E\n0x8FD0E1\t0x798B\n0x8FD0E2\t0x798C\n0x8FD0E3\t0x7991\n0x8FD0E4\t0x7993\n0x8FD0E5\t0x7994\n0x8FD0E6\t0x7995\n0x8FD0E7\t0x7996\n0x8FD0E8\t0x7998\n0x8FD0E9\t0x799B\n0x8FD0EA\t0x799C\n0x8FD0EB\t0x79A1\n0x8FD0EC\t0x79A8\n0x8FD0ED\t0x79A9\n0x8FD0EE\t0x79AB\n0x8FD0EF\t0x79AF\n0x8FD0F0\t0x79B1\n0x8FD0F1\t0x79B4\n0x8FD0F2\t0x79B8\n0x8FD0F3\t0x79BB\n0x8FD0F4\t0x79C2\n0x8FD0F5\t0x79C4\n0x8FD0F6\t0x79C7\n0x8FD0F7\t0x79C8\n0x8FD0F8\t0x79CA\n0x8FD0F9\t0x79CF\n0x8FD0FA\t0x79D4\n0x8FD0FB\t0x79D6\n0x8FD0FC\t0x79DA\n0x8FD0FD\t0x79DD\n0x8FD0FE\t0x79DE\n0x8FD1A1\t0x79E0\n0x8FD1A2\t0x79E2\n0x8FD1A3\t0x79E5\n0x8FD1A4\t0x79EA\n0x8FD1A5\t0x79EB\n0x8FD1A6\t0x79ED\n0x8FD1A7\t0x79F1\n0x8FD1A8\t0x79F8\n0x8FD1A9\t0x79FC\n0x8FD1AA\t0x7A02\n0x8FD1AB\t0x7A03\n0x8FD1AC\t0x7A07\n0x8FD1AD\t0x7A09\n0x8FD1AE\t0x7A0A\n0x8FD1AF\t0x7A0C\n0x8FD1B0\t0x7A11\n0x8FD1B1\t0x7A15\n0x8FD1B2\t0x7A1B\n0x8FD1B3\t0x7A1E\n0x8FD1B4\t0x7A21\n0x8FD1B5\t0x7A27\n0x8FD1B6\t0x7A2B\n0x8FD1B7\t0x7A2D\n0x8FD1B8\t0x7A2F\n0x8FD1B9\t0x7A30\n0x8FD1BA\t0x7A34\n0x8FD1BB\t0x7A35\n0x8FD1BC\t0x7A38\n0x8FD1BD\t0x7A39\n0x8FD1BE\t0x7A3A\n0x8FD1BF\t0x7A44\n0x8FD1C0\t0x7A45\n0x8FD1C1\t0x7A47\n0x8FD1C2\t0x7A48\n0x8FD1C3\t0x7A4C\n0x8FD1C4\t0x7A55\n0x8FD1C5\t0x7A56\n0x8FD1C6\t0x7A59\n0x8FD1C7\t0x7A5C\n0x8FD1C8\t0x7A5D\n0x8FD1C9\t0x7A5F\n0x8FD1CA\t0x7A60\n0x8FD1CB\t0x7A65\n0x8FD1CC\t0x7A67\n0x8FD1CD\t0x7A6A\n0x8FD1CE\t0x7A6D\n0x8FD1CF\t0x7A75\n0x8FD1D0\t0x7A78\n0x8FD1D1\t0x7A7E\n0x8FD1D2\t0x7A80\n0x8FD1D3\t0x7A82\n0x8FD1D4\t0x7A85\n0x8FD1D5\t0x7A86\n0x8FD1D6\t0x7A8A\n0x8FD1D7\t0x7A8B\n0x8FD1D8\t0x7A90\n0x8FD1D9\t0x7A91\n0x8FD1DA\t0x7A94\n0x8FD1DB\t0x7A9E\n0x8FD1DC\t0x7AA0\n0x8FD1DD\t0x7AA3\n0x8FD1DE\t0x7AAC\n0x8FD1DF\t0x7AB3\n0x8FD1E0\t0x7AB5\n0x8FD1E1\t0x7AB9\n0x8FD1E2\t0x7ABB\n0x8FD1E3\t0x7ABC\n0x8FD1E4\t0x7AC6\n0x8FD1E5\t0x7AC9\n0x8FD1E6\t0x7ACC\n0x8FD1E7\t0x7ACE\n0x8FD1E8\t0x7AD1\n0x8FD1E9\t0x7ADB\n0x8FD1EA\t0x7AE8\n0x8FD1EB\t0x7AE9\n0x8FD1EC\t0x7AEB\n0x8FD1ED\t0x7AEC\n0x8FD1EE\t0x7AF1\n0x8FD1EF\t0x7AF4\n0x8FD1F0\t0x7AFB\n0x8FD1F1\t0x7AFD\n0x8FD1F2\t0x7AFE\n0x8FD1F3\t0x7B07\n0x8FD1F4\t0x7B14\n0x8FD1F5\t0x7B1F\n0x8FD1F6\t0x7B23\n0x8FD1F7\t0x7B27\n0x8FD1F8\t0x7B29\n0x8FD1F9\t0x7B2A\n0x8FD1FA\t0x7B2B\n0x8FD1FB\t0x7B2D\n0x8FD1FC\t0x7B2E\n0x8FD1FD\t0x7B2F\n0x8FD1FE\t0x7B30\n0x8FD2A1\t0x7B31\n0x8FD2A2\t0x7B34\n0x8FD2A3\t0x7B3D\n0x8FD2A4\t0x7B3F\n0x8FD2A5\t0x7B40\n0x8FD2A6\t0x7B41\n0x8FD2A7\t0x7B47\n0x8FD2A8\t0x7B4E\n0x8FD2A9\t0x7B55\n0x8FD2AA\t0x7B60\n0x8FD2AB\t0x7B64\n0x8FD2AC\t0x7B66\n0x8FD2AD\t0x7B69\n0x8FD2AE\t0x7B6A\n0x8FD2AF\t0x7B6D\n0x8FD2B0\t0x7B6F\n0x8FD2B1\t0x7B72\n0x8FD2B2\t0x7B73\n0x8FD2B3\t0x7B77\n0x8FD2B4\t0x7B84\n0x8FD2B5\t0x7B89\n0x8FD2B6\t0x7B8E\n0x8FD2B7\t0x7B90\n0x8FD2B8\t0x7B91\n0x8FD2B9\t0x7B96\n0x8FD2BA\t0x7B9B\n0x8FD2BB\t0x7B9E\n0x8FD2BC\t0x7BA0\n0x8FD2BD\t0x7BA5\n0x8FD2BE\t0x7BAC\n0x8FD2BF\t0x7BAF\n0x8FD2C0\t0x7BB0\n0x8FD2C1\t0x7BB2\n0x8FD2C2\t0x7BB5\n0x8FD2C3\t0x7BB6\n0x8FD2C4\t0x7BBA\n0x8FD2C5\t0x7BBB\n0x8FD2C6\t0x7BBC\n0x8FD2C7\t0x7BBD\n0x8FD2C8\t0x7BC2\n0x8FD2C9\t0x7BC5\n0x8FD2CA\t0x7BC8\n0x8FD2CB\t0x7BCA\n0x8FD2CC\t0x7BD4\n0x8FD2CD\t0x7BD6\n0x8FD2CE\t0x7BD7\n0x8FD2CF\t0x7BD9\n0x8FD2D0\t0x7BDA\n0x8FD2D1\t0x7BDB\n0x8FD2D2\t0x7BE8\n0x8FD2D3\t0x7BEA\n0x8FD2D4\t0x7BF2\n0x8FD2D5\t0x7BF4\n0x8FD2D6\t0x7BF5\n0x8FD2D7\t0x7BF8\n0x8FD2D8\t0x7BF9\n0x8FD2D9\t0x7BFA\n0x8FD2DA\t0x7BFC\n0x8FD2DB\t0x7BFE\n0x8FD2DC\t0x7C01\n0x8FD2DD\t0x7C02\n0x8FD2DE\t0x7C03\n0x8FD2DF\t0x7C04\n0x8FD2E0\t0x7C06\n0x8FD2E1\t0x7C09\n0x8FD2E2\t0x7C0B\n0x8FD2E3\t0x7C0C\n0x8FD2E4\t0x7C0E\n0x8FD2E5\t0x7C0F\n0x8FD2E6\t0x7C19\n0x8FD2E7\t0x7C1B\n0x8FD2E8\t0x7C20\n0x8FD2E9\t0x7C25\n0x8FD2EA\t0x7C26\n0x8FD2EB\t0x7C28\n0x8FD2EC\t0x7C2C\n0x8FD2ED\t0x7C31\n0x8FD2EE\t0x7C33\n0x8FD2EF\t0x7C34\n0x8FD2F0\t0x7C36\n0x8FD2F1\t0x7C39\n0x8FD2F2\t0x7C3A\n0x8FD2F3\t0x7C46\n0x8FD2F4\t0x7C4A\n0x8FD2F5\t0x7C55\n0x8FD2F6\t0x7C51\n0x8FD2F7\t0x7C52\n0x8FD2F8\t0x7C53\n0x8FD2F9\t0x7C59\n0x8FD2FA\t0x7C5A\n0x8FD2FB\t0x7C5B\n0x8FD2FC\t0x7C5C\n0x8FD2FD\t0x7C5D\n0x8FD2FE\t0x7C5E\n0x8FD3A1\t0x7C61\n0x8FD3A2\t0x7C63\n0x8FD3A3\t0x7C67\n0x8FD3A4\t0x7C69\n0x8FD3A5\t0x7C6D\n0x8FD3A6\t0x7C6E\n0x8FD3A7\t0x7C70\n0x8FD3A8\t0x7C72\n0x8FD3A9\t0x7C79\n0x8FD3AA\t0x7C7C\n0x8FD3AB\t0x7C7D\n0x8FD3AC\t0x7C86\n0x8FD3AD\t0x7C87\n0x8FD3AE\t0x7C8F\n0x8FD3AF\t0x7C94\n0x8FD3B0\t0x7C9E\n0x8FD3B1\t0x7CA0\n0x8FD3B2\t0x7CA6\n0x8FD3B3\t0x7CB0\n0x8FD3B4\t0x7CB6\n0x8FD3B5\t0x7CB7\n0x8FD3B6\t0x7CBA\n0x8FD3B7\t0x7CBB\n0x8FD3B8\t0x7CBC\n0x8FD3B9\t0x7CBF\n0x8FD3BA\t0x7CC4\n0x8FD3BB\t0x7CC7\n0x8FD3BC\t0x7CC8\n0x8FD3BD\t0x7CC9\n0x8FD3BE\t0x7CCD\n0x8FD3BF\t0x7CCF\n0x8FD3C0\t0x7CD3\n0x8FD3C1\t0x7CD4\n0x8FD3C2\t0x7CD5\n0x8FD3C3\t0x7CD7\n0x8FD3C4\t0x7CD9\n0x8FD3C5\t0x7CDA\n0x8FD3C6\t0x7CDD\n0x8FD3C7\t0x7CE6\n0x8FD3C8\t0x7CE9\n0x8FD3C9\t0x7CEB\n0x8FD3CA\t0x7CF5\n0x8FD3CB\t0x7D03\n0x8FD3CC\t0x7D07\n0x8FD3CD\t0x7D08\n0x8FD3CE\t0x7D09\n0x8FD3CF\t0x7D0F\n0x8FD3D0\t0x7D11\n0x8FD3D1\t0x7D12\n0x8FD3D2\t0x7D13\n0x8FD3D3\t0x7D16\n0x8FD3D4\t0x7D1D\n0x8FD3D5\t0x7D1E\n0x8FD3D6\t0x7D23\n0x8FD3D7\t0x7D26\n0x8FD3D8\t0x7D2A\n0x8FD3D9\t0x7D2D\n0x8FD3DA\t0x7D31\n0x8FD3DB\t0x7D3C\n0x8FD3DC\t0x7D3D\n0x8FD3DD\t0x7D3E\n0x8FD3DE\t0x7D40\n0x8FD3DF\t0x7D41\n0x8FD3E0\t0x7D47\n0x8FD3E1\t0x7D48\n0x8FD3E2\t0x7D4D\n0x8FD3E3\t0x7D51\n0x8FD3E4\t0x7D53\n0x8FD3E5\t0x7D57\n0x8FD3E6\t0x7D59\n0x8FD3E7\t0x7D5A\n0x8FD3E8\t0x7D5C\n0x8FD3E9\t0x7D5D\n0x8FD3EA\t0x7D65\n0x8FD3EB\t0x7D67\n0x8FD3EC\t0x7D6A\n0x8FD3ED\t0x7D70\n0x8FD3EE\t0x7D78\n0x8FD3EF\t0x7D7A\n0x8FD3F0\t0x7D7B\n0x8FD3F1\t0x7D7F\n0x8FD3F2\t0x7D81\n0x8FD3F3\t0x7D82\n0x8FD3F4\t0x7D83\n0x8FD3F5\t0x7D85\n0x8FD3F6\t0x7D86\n0x8FD3F7\t0x7D88\n0x8FD3F8\t0x7D8B\n0x8FD3F9\t0x7D8C\n0x8FD3FA\t0x7D8D\n0x8FD3FB\t0x7D91\n0x8FD3FC\t0x7D96\n0x8FD3FD\t0x7D97\n0x8FD3FE\t0x7D9D\n0x8FD4A1\t0x7D9E\n0x8FD4A2\t0x7DA6\n0x8FD4A3\t0x7DA7\n0x8FD4A4\t0x7DAA\n0x8FD4A5\t0x7DB3\n0x8FD4A6\t0x7DB6\n0x8FD4A7\t0x7DB7\n0x8FD4A8\t0x7DB9\n0x8FD4A9\t0x7DC2\n0x8FD4AA\t0x7DC3\n0x8FD4AB\t0x7DC4\n0x8FD4AC\t0x7DC5\n0x8FD4AD\t0x7DC6\n0x8FD4AE\t0x7DCC\n0x8FD4AF\t0x7DCD\n0x8FD4B0\t0x7DCE\n0x8FD4B1\t0x7DD7\n0x8FD4B2\t0x7DD9\n0x8FD4B3\t0x7E00\n0x8FD4B4\t0x7DE2\n0x8FD4B5\t0x7DE5\n0x8FD4B6\t0x7DE6\n0x8FD4B7\t0x7DEA\n0x8FD4B8\t0x7DEB\n0x8FD4B9\t0x7DED\n0x8FD4BA\t0x7DF1\n0x8FD4BB\t0x7DF5\n0x8FD4BC\t0x7DF6\n0x8FD4BD\t0x7DF9\n0x8FD4BE\t0x7DFA\n0x8FD4BF\t0x7E08\n0x8FD4C0\t0x7E10\n0x8FD4C1\t0x7E11\n0x8FD4C2\t0x7E15\n0x8FD4C3\t0x7E17\n0x8FD4C4\t0x7E1C\n0x8FD4C5\t0x7E1D\n0x8FD4C6\t0x7E20\n0x8FD4C7\t0x7E27\n0x8FD4C8\t0x7E28\n0x8FD4C9\t0x7E2C\n0x8FD4CA\t0x7E2D\n0x8FD4CB\t0x7E2F\n0x8FD4CC\t0x7E33\n0x8FD4CD\t0x7E36\n0x8FD4CE\t0x7E3F\n0x8FD4CF\t0x7E44\n0x8FD4D0\t0x7E45\n0x8FD4D1\t0x7E47\n0x8FD4D2\t0x7E4E\n0x8FD4D3\t0x7E50\n0x8FD4D4\t0x7E52\n0x8FD4D5\t0x7E58\n0x8FD4D6\t0x7E5F\n0x8FD4D7\t0x7E61\n0x8FD4D8\t0x7E62\n0x8FD4D9\t0x7E65\n0x8FD4DA\t0x7E6B\n0x8FD4DB\t0x7E6E\n0x8FD4DC\t0x7E6F\n0x8FD4DD\t0x7E73\n0x8FD4DE\t0x7E78\n0x8FD4DF\t0x7E7E\n0x8FD4E0\t0x7E81\n0x8FD4E1\t0x7E86\n0x8FD4E2\t0x7E87\n0x8FD4E3\t0x7E8A\n0x8FD4E4\t0x7E8D\n0x8FD4E5\t0x7E91\n0x8FD4E6\t0x7E95\n0x8FD4E7\t0x7E98\n0x8FD4E8\t0x7E9A\n0x8FD4E9\t0x7E9D\n0x8FD4EA\t0x7E9E\n0x8FD4EB\t0x7F3C\n0x8FD4EC\t0x7F3B\n0x8FD4ED\t0x7F3D\n0x8FD4EE\t0x7F3E\n0x8FD4EF\t0x7F3F\n0x8FD4F0\t0x7F43\n0x8FD4F1\t0x7F44\n0x8FD4F2\t0x7F47\n0x8FD4F3\t0x7F4F\n0x8FD4F4\t0x7F52\n0x8FD4F5\t0x7F53\n0x8FD4F6\t0x7F5B\n0x8FD4F7\t0x7F5C\n0x8FD4F8\t0x7F5D\n0x8FD4F9\t0x7F61\n0x8FD4FA\t0x7F63\n0x8FD4FB\t0x7F64\n0x8FD4FC\t0x7F65\n0x8FD4FD\t0x7F66\n0x8FD4FE\t0x7F6D\n0x8FD5A1\t0x7F71\n0x8FD5A2\t0x7F7D\n0x8FD5A3\t0x7F7E\n0x8FD5A4\t0x7F7F\n0x8FD5A5\t0x7F80\n0x8FD5A6\t0x7F8B\n0x8FD5A7\t0x7F8D\n0x8FD5A8\t0x7F8F\n0x8FD5A9\t0x7F90\n0x8FD5AA\t0x7F91\n0x8FD5AB\t0x7F96\n0x8FD5AC\t0x7F97\n0x8FD5AD\t0x7F9C\n0x8FD5AE\t0x7FA1\n0x8FD5AF\t0x7FA2\n0x8FD5B0\t0x7FA6\n0x8FD5B1\t0x7FAA\n0x8FD5B2\t0x7FAD\n0x8FD5B3\t0x7FB4\n0x8FD5B4\t0x7FBC\n0x8FD5B5\t0x7FBF\n0x8FD5B6\t0x7FC0\n0x8FD5B7\t0x7FC3\n0x8FD5B8\t0x7FC8\n0x8FD5B9\t0x7FCE\n0x8FD5BA\t0x7FCF\n0x8FD5BB\t0x7FDB\n0x8FD5BC\t0x7FDF\n0x8FD5BD\t0x7FE3\n0x8FD5BE\t0x7FE5\n0x8FD5BF\t0x7FE8\n0x8FD5C0\t0x7FEC\n0x8FD5C1\t0x7FEE\n0x8FD5C2\t0x7FEF\n0x8FD5C3\t0x7FF2\n0x8FD5C4\t0x7FFA\n0x8FD5C5\t0x7FFD\n0x8FD5C6\t0x7FFE\n0x8FD5C7\t0x7FFF\n0x8FD5C8\t0x8007\n0x8FD5C9\t0x8008\n0x8FD5CA\t0x800A\n0x8FD5CB\t0x800D\n0x8FD5CC\t0x800E\n0x8FD5CD\t0x800F\n0x8FD5CE\t0x8011\n0x8FD5CF\t0x8013\n0x8FD5D0\t0x8014\n0x8FD5D1\t0x8016\n0x8FD5D2\t0x801D\n0x8FD5D3\t0x801E\n0x8FD5D4\t0x801F\n0x8FD5D5\t0x8020\n0x8FD5D6\t0x8024\n0x8FD5D7\t0x8026\n0x8FD5D8\t0x802C\n0x8FD5D9\t0x802E\n0x8FD5DA\t0x8030\n0x8FD5DB\t0x8034\n0x8FD5DC\t0x8035\n0x8FD5DD\t0x8037\n0x8FD5DE\t0x8039\n0x8FD5DF\t0x803A\n0x8FD5E0\t0x803C\n0x8FD5E1\t0x803E\n0x8FD5E2\t0x8040\n0x8FD5E3\t0x8044\n0x8FD5E4\t0x8060\n0x8FD5E5\t0x8064\n0x8FD5E6\t0x8066\n0x8FD5E7\t0x806D\n0x8FD5E8\t0x8071\n0x8FD5E9\t0x8075\n0x8FD5EA\t0x8081\n0x8FD5EB\t0x8088\n0x8FD5EC\t0x808E\n0x8FD5ED\t0x809C\n0x8FD5EE\t0x809E\n0x8FD5EF\t0x80A6\n0x8FD5F0\t0x80A7\n0x8FD5F1\t0x80AB\n0x8FD5F2\t0x80B8\n0x8FD5F3\t0x80B9\n0x8FD5F4\t0x80C8\n0x8FD5F5\t0x80CD\n0x8FD5F6\t0x80CF\n0x8FD5F7\t0x80D2\n0x8FD5F8\t0x80D4\n0x8FD5F9\t0x80D5\n0x8FD5FA\t0x80D7\n0x8FD5FB\t0x80D8\n0x8FD5FC\t0x80E0\n0x8FD5FD\t0x80ED\n0x8FD5FE\t0x80EE\n0x8FD6A1\t0x80F0\n0x8FD6A2\t0x80F2\n0x8FD6A3\t0x80F3\n0x8FD6A4\t0x80F6\n0x8FD6A5\t0x80F9\n0x8FD6A6\t0x80FA\n0x8FD6A7\t0x80FE\n0x8FD6A8\t0x8103\n0x8FD6A9\t0x810B\n0x8FD6AA\t0x8116\n0x8FD6AB\t0x8117\n0x8FD6AC\t0x8118\n0x8FD6AD\t0x811C\n0x8FD6AE\t0x811E\n0x8FD6AF\t0x8120\n0x8FD6B0\t0x8124\n0x8FD6B1\t0x8127\n0x8FD6B2\t0x812C\n0x8FD6B3\t0x8130\n0x8FD6B4\t0x8135\n0x8FD6B5\t0x813A\n0x8FD6B6\t0x813C\n0x8FD6B7\t0x8145\n0x8FD6B8\t0x8147\n0x8FD6B9\t0x814A\n0x8FD6BA\t0x814C\n0x8FD6BB\t0x8152\n0x8FD6BC\t0x8157\n0x8FD6BD\t0x8160\n0x8FD6BE\t0x8161\n0x8FD6BF\t0x8167\n0x8FD6C0\t0x8168\n0x8FD6C1\t0x8169\n0x8FD6C2\t0x816D\n0x8FD6C3\t0x816F\n0x8FD6C4\t0x8177\n0x8FD6C5\t0x8181\n0x8FD6C6\t0x8190\n0x8FD6C7\t0x8184\n0x8FD6C8\t0x8185\n0x8FD6C9\t0x8186\n0x8FD6CA\t0x818B\n0x8FD6CB\t0x818E\n0x8FD6CC\t0x8196\n0x8FD6CD\t0x8198\n0x8FD6CE\t0x819B\n0x8FD6CF\t0x819E\n0x8FD6D0\t0x81A2\n0x8FD6D1\t0x81AE\n0x8FD6D2\t0x81B2\n0x8FD6D3\t0x81B4\n0x8FD6D4\t0x81BB\n0x8FD6D5\t0x81CB\n0x8FD6D6\t0x81C3\n0x8FD6D7\t0x81C5\n0x8FD6D8\t0x81CA\n0x8FD6D9\t0x81CE\n0x8FD6DA\t0x81CF\n0x8FD6DB\t0x81D5\n0x8FD6DC\t0x81D7\n0x8FD6DD\t0x81DB\n0x8FD6DE\t0x81DD\n0x8FD6DF\t0x81DE\n0x8FD6E0\t0x81E1\n0x8FD6E1\t0x81E4\n0x8FD6E2\t0x81EB\n0x8FD6E3\t0x81EC\n0x8FD6E4\t0x81F0\n0x8FD6E5\t0x81F1\n0x8FD6E6\t0x81F2\n0x8FD6E7\t0x81F5\n0x8FD6E8\t0x81F6\n0x8FD6E9\t0x81F8\n0x8FD6EA\t0x81F9\n0x8FD6EB\t0x81FD\n0x8FD6EC\t0x81FF\n0x8FD6ED\t0x8200\n0x8FD6EE\t0x8203\n0x8FD6EF\t0x820F\n0x8FD6F0\t0x8213\n0x8FD6F1\t0x8214\n0x8FD6F2\t0x8219\n0x8FD6F3\t0x821A\n0x8FD6F4\t0x821D\n0x8FD6F5\t0x8221\n0x8FD6F6\t0x8222\n0x8FD6F7\t0x8228\n0x8FD6F8\t0x8232\n0x8FD6F9\t0x8234\n0x8FD6FA\t0x823A\n0x8FD6FB\t0x8243\n0x8FD6FC\t0x8244\n0x8FD6FD\t0x8245\n0x8FD6FE\t0x8246\n0x8FD7A1\t0x824B\n0x8FD7A2\t0x824E\n0x8FD7A3\t0x824F\n0x8FD7A4\t0x8251\n0x8FD7A5\t0x8256\n0x8FD7A6\t0x825C\n0x8FD7A7\t0x8260\n0x8FD7A8\t0x8263\n0x8FD7A9\t0x8267\n0x8FD7AA\t0x826D\n0x8FD7AB\t0x8274\n0x8FD7AC\t0x827B\n0x8FD7AD\t0x827D\n0x8FD7AE\t0x827F\n0x8FD7AF\t0x8280\n0x8FD7B0\t0x8281\n0x8FD7B1\t0x8283\n0x8FD7B2\t0x8284\n0x8FD7B3\t0x8287\n0x8FD7B4\t0x8289\n0x8FD7B5\t0x828A\n0x8FD7B6\t0x828E\n0x8FD7B7\t0x8291\n0x8FD7B8\t0x8294\n0x8FD7B9\t0x8296\n0x8FD7BA\t0x8298\n0x8FD7BB\t0x829A\n0x8FD7BC\t0x829B\n0x8FD7BD\t0x82A0\n0x8FD7BE\t0x82A1\n0x8FD7BF\t0x82A3\n0x8FD7C0\t0x82A4\n0x8FD7C1\t0x82A7\n0x8FD7C2\t0x82A8\n0x8FD7C3\t0x82A9\n0x8FD7C4\t0x82AA\n0x8FD7C5\t0x82AE\n0x8FD7C6\t0x82B0\n0x8FD7C7\t0x82B2\n0x8FD7C8\t0x82B4\n0x8FD7C9\t0x82B7\n0x8FD7CA\t0x82BA\n0x8FD7CB\t0x82BC\n0x8FD7CC\t0x82BE\n0x8FD7CD\t0x82BF\n0x8FD7CE\t0x82C6\n0x8FD7CF\t0x82D0\n0x8FD7D0\t0x82D5\n0x8FD7D1\t0x82DA\n0x8FD7D2\t0x82E0\n0x8FD7D3\t0x82E2\n0x8FD7D4\t0x82E4\n0x8FD7D5\t0x82E8\n0x8FD7D6\t0x82EA\n0x8FD7D7\t0x82ED\n0x8FD7D8\t0x82EF\n0x8FD7D9\t0x82F6\n0x8FD7DA\t0x82F7\n0x8FD7DB\t0x82FD\n0x8FD7DC\t0x82FE\n0x8FD7DD\t0x8300\n0x8FD7DE\t0x8301\n0x8FD7DF\t0x8307\n0x8FD7E0\t0x8308\n0x8FD7E1\t0x830A\n0x8FD7E2\t0x830B\n0x8FD7E3\t0x8354\n0x8FD7E4\t0x831B\n0x8FD7E5\t0x831D\n0x8FD7E6\t0x831E\n0x8FD7E7\t0x831F\n0x8FD7E8\t0x8321\n0x8FD7E9\t0x8322\n0x8FD7EA\t0x832C\n0x8FD7EB\t0x832D\n0x8FD7EC\t0x832E\n0x8FD7ED\t0x8330\n0x8FD7EE\t0x8333\n0x8FD7EF\t0x8337\n0x8FD7F0\t0x833A\n0x8FD7F1\t0x833C\n0x8FD7F2\t0x833D\n0x8FD7F3\t0x8342\n0x8FD7F4\t0x8343\n0x8FD7F5\t0x8344\n0x8FD7F6\t0x8347\n0x8FD7F7\t0x834D\n0x8FD7F8\t0x834E\n0x8FD7F9\t0x8351\n0x8FD7FA\t0x8355\n0x8FD7FB\t0x8356\n0x8FD7FC\t0x8357\n0x8FD7FD\t0x8370\n0x8FD7FE\t0x8378\n0x8FD8A1\t0x837D\n0x8FD8A2\t0x837F\n0x8FD8A3\t0x8380\n0x8FD8A4\t0x8382\n0x8FD8A5\t0x8384\n0x8FD8A6\t0x8386\n0x8FD8A7\t0x838D\n0x8FD8A8\t0x8392\n0x8FD8A9\t0x8394\n0x8FD8AA\t0x8395\n0x8FD8AB\t0x8398\n0x8FD8AC\t0x8399\n0x8FD8AD\t0x839B\n0x8FD8AE\t0x839C\n0x8FD8AF\t0x839D\n0x8FD8B0\t0x83A6\n0x8FD8B1\t0x83A7\n0x8FD8B2\t0x83A9\n0x8FD8B3\t0x83AC\n0x8FD8B4\t0x83BE\n0x8FD8B5\t0x83BF\n0x8FD8B6\t0x83C0\n0x8FD8B7\t0x83C7\n0x8FD8B8\t0x83C9\n0x8FD8B9\t0x83CF\n0x8FD8BA\t0x83D0\n0x8FD8BB\t0x83D1\n0x8FD8BC\t0x83D4\n0x8FD8BD\t0x83DD\n0x8FD8BE\t0x8353\n0x8FD8BF\t0x83E8\n0x8FD8C0\t0x83EA\n0x8FD8C1\t0x83F6\n0x8FD8C2\t0x83F8\n0x8FD8C3\t0x83F9\n0x8FD8C4\t0x83FC\n0x8FD8C5\t0x8401\n0x8FD8C6\t0x8406\n0x8FD8C7\t0x840A\n0x8FD8C8\t0x840F\n0x8FD8C9\t0x8411\n0x8FD8CA\t0x8415\n0x8FD8CB\t0x8419\n0x8FD8CC\t0x83AD\n0x8FD8CD\t0x842F\n0x8FD8CE\t0x8439\n0x8FD8CF\t0x8445\n0x8FD8D0\t0x8447\n0x8FD8D1\t0x8448\n0x8FD8D2\t0x844A\n0x8FD8D3\t0x844D\n0x8FD8D4\t0x844F\n0x8FD8D5\t0x8451\n0x8FD8D6\t0x8452\n0x8FD8D7\t0x8456\n0x8FD8D8\t0x8458\n0x8FD8D9\t0x8459\n0x8FD8DA\t0x845A\n0x8FD8DB\t0x845C\n0x8FD8DC\t0x8460\n0x8FD8DD\t0x8464\n0x8FD8DE\t0x8465\n0x8FD8DF\t0x8467\n0x8FD8E0\t0x846A\n0x8FD8E1\t0x8470\n0x8FD8E2\t0x8473\n0x8FD8E3\t0x8474\n0x8FD8E4\t0x8476\n0x8FD8E5\t0x8478\n0x8FD8E6\t0x847C\n0x8FD8E7\t0x847D\n0x8FD8E8\t0x8481\n0x8FD8E9\t0x8485\n0x8FD8EA\t0x8492\n0x8FD8EB\t0x8493\n0x8FD8EC\t0x8495\n0x8FD8ED\t0x849E\n0x8FD8EE\t0x84A6\n0x8FD8EF\t0x84A8\n0x8FD8F0\t0x84A9\n0x8FD8F1\t0x84AA\n0x8FD8F2\t0x84AF\n0x8FD8F3\t0x84B1\n0x8FD8F4\t0x84B4\n0x8FD8F5\t0x84BA\n0x8FD8F6\t0x84BD\n0x8FD8F7\t0x84BE\n0x8FD8F8\t0x84C0\n0x8FD8F9\t0x84C2\n0x8FD8FA\t0x84C7\n0x8FD8FB\t0x84C8\n0x8FD8FC\t0x84CC\n0x8FD8FD\t0x84CF\n0x8FD8FE\t0x84D3\n0x8FD9A1\t0x84DC\n0x8FD9A2\t0x84E7\n0x8FD9A3\t0x84EA\n0x8FD9A4\t0x84EF\n0x8FD9A5\t0x84F0\n0x8FD9A6\t0x84F1\n0x8FD9A7\t0x84F2\n0x8FD9A8\t0x84F7\n0x8FD9A9\t0x8532\n0x8FD9AA\t0x84FA\n0x8FD9AB\t0x84FB\n0x8FD9AC\t0x84FD\n0x8FD9AD\t0x8502\n0x8FD9AE\t0x8503\n0x8FD9AF\t0x8507\n0x8FD9B0\t0x850C\n0x8FD9B1\t0x850E\n0x8FD9B2\t0x8510\n0x8FD9B3\t0x851C\n0x8FD9B4\t0x851E\n0x8FD9B5\t0x8522\n0x8FD9B6\t0x8523\n0x8FD9B7\t0x8524\n0x8FD9B8\t0x8525\n0x8FD9B9\t0x8527\n0x8FD9BA\t0x852A\n0x8FD9BB\t0x852B\n0x8FD9BC\t0x852F\n0x8FD9BD\t0x8533\n0x8FD9BE\t0x8534\n0x8FD9BF\t0x8536\n0x8FD9C0\t0x853F\n0x8FD9C1\t0x8546\n0x8FD9C2\t0x854F\n0x8FD9C3\t0x8550\n0x8FD9C4\t0x8551\n0x8FD9C5\t0x8552\n0x8FD9C6\t0x8553\n0x8FD9C7\t0x8556\n0x8FD9C8\t0x8559\n0x8FD9C9\t0x855C\n0x8FD9CA\t0x855D\n0x8FD9CB\t0x855E\n0x8FD9CC\t0x855F\n0x8FD9CD\t0x8560\n0x8FD9CE\t0x8561\n0x8FD9CF\t0x8562\n0x8FD9D0\t0x8564\n0x8FD9D1\t0x856B\n0x8FD9D2\t0x856F\n0x8FD9D3\t0x8579\n0x8FD9D4\t0x857A\n0x8FD9D5\t0x857B\n0x8FD9D6\t0x857D\n0x8FD9D7\t0x857F\n0x8FD9D8\t0x8581\n0x8FD9D9\t0x8585\n0x8FD9DA\t0x8586\n0x8FD9DB\t0x8589\n0x8FD9DC\t0x858B\n0x8FD9DD\t0x858C\n0x8FD9DE\t0x858F\n0x8FD9DF\t0x8593\n0x8FD9E0\t0x8598\n0x8FD9E1\t0x859D\n0x8FD9E2\t0x859F\n0x8FD9E3\t0x85A0\n0x8FD9E4\t0x85A2\n0x8FD9E5\t0x85A5\n0x8FD9E6\t0x85A7\n0x8FD9E7\t0x85B4\n0x8FD9E8\t0x85B6\n0x8FD9E9\t0x85B7\n0x8FD9EA\t0x85B8\n0x8FD9EB\t0x85BC\n0x8FD9EC\t0x85BD\n0x8FD9ED\t0x85BE\n0x8FD9EE\t0x85BF\n0x8FD9EF\t0x85C2\n0x8FD9F0\t0x85C7\n0x8FD9F1\t0x85CA\n0x8FD9F2\t0x85CB\n0x8FD9F3\t0x85CE\n0x8FD9F4\t0x85AD\n0x8FD9F5\t0x85D8\n0x8FD9F6\t0x85DA\n0x8FD9F7\t0x85DF\n0x8FD9F8\t0x85E0\n0x8FD9F9\t0x85E6\n0x8FD9FA\t0x85E8\n0x8FD9FB\t0x85ED\n0x8FD9FC\t0x85F3\n0x8FD9FD\t0x85F6\n0x8FD9FE\t0x85FC\n0x8FDAA1\t0x85FF\n0x8FDAA2\t0x8600\n0x8FDAA3\t0x8604\n0x8FDAA4\t0x8605\n0x8FDAA5\t0x860D\n0x8FDAA6\t0x860E\n0x8FDAA7\t0x8610\n0x8FDAA8\t0x8611\n0x8FDAA9\t0x8612\n0x8FDAAA\t0x8618\n0x8FDAAB\t0x8619\n0x8FDAAC\t0x861B\n0x8FDAAD\t0x861E\n0x8FDAAE\t0x8621\n0x8FDAAF\t0x8627\n0x8FDAB0\t0x8629\n0x8FDAB1\t0x8636\n0x8FDAB2\t0x8638\n0x8FDAB3\t0x863A\n0x8FDAB4\t0x863C\n0x8FDAB5\t0x863D\n0x8FDAB6\t0x8640\n0x8FDAB7\t0x8642\n0x8FDAB8\t0x8646\n0x8FDAB9\t0x8652\n0x8FDABA\t0x8653\n0x8FDABB\t0x8656\n0x8FDABC\t0x8657\n0x8FDABD\t0x8658\n0x8FDABE\t0x8659\n0x8FDABF\t0x865D\n0x8FDAC0\t0x8660\n0x8FDAC1\t0x8661\n0x8FDAC2\t0x8662\n0x8FDAC3\t0x8663\n0x8FDAC4\t0x8664\n0x8FDAC5\t0x8669\n0x8FDAC6\t0x866C\n0x8FDAC7\t0x866F\n0x8FDAC8\t0x8675\n0x8FDAC9\t0x8676\n0x8FDACA\t0x8677\n0x8FDACB\t0x867A\n0x8FDACC\t0x868D\n0x8FDACD\t0x8691\n0x8FDACE\t0x8696\n0x8FDACF\t0x8698\n0x8FDAD0\t0x869A\n0x8FDAD1\t0x869C\n0x8FDAD2\t0x86A1\n0x8FDAD3\t0x86A6\n0x8FDAD4\t0x86A7\n0x8FDAD5\t0x86A8\n0x8FDAD6\t0x86AD\n0x8FDAD7\t0x86B1\n0x8FDAD8\t0x86B3\n0x8FDAD9\t0x86B4\n0x8FDADA\t0x86B5\n0x8FDADB\t0x86B7\n0x8FDADC\t0x86B8\n0x8FDADD\t0x86B9\n0x8FDADE\t0x86BF\n0x8FDADF\t0x86C0\n0x8FDAE0\t0x86C1\n0x8FDAE1\t0x86C3\n0x8FDAE2\t0x86C5\n0x8FDAE3\t0x86D1\n0x8FDAE4\t0x86D2\n0x8FDAE5\t0x86D5\n0x8FDAE6\t0x86D7\n0x8FDAE7\t0x86DA\n0x8FDAE8\t0x86DC\n0x8FDAE9\t0x86E0\n0x8FDAEA\t0x86E3\n0x8FDAEB\t0x86E5\n0x8FDAEC\t0x86E7\n0x8FDAED\t0x8688\n0x8FDAEE\t0x86FA\n0x8FDAEF\t0x86FC\n0x8FDAF0\t0x86FD\n0x8FDAF1\t0x8704\n0x8FDAF2\t0x8705\n0x8FDAF3\t0x8707\n0x8FDAF4\t0x870B\n0x8FDAF5\t0x870E\n0x8FDAF6\t0x870F\n0x8FDAF7\t0x8710\n0x8FDAF8\t0x8713\n0x8FDAF9\t0x8714\n0x8FDAFA\t0x8719\n0x8FDAFB\t0x871E\n0x8FDAFC\t0x871F\n0x8FDAFD\t0x8721\n0x8FDAFE\t0x8723\n0x8FDBA1\t0x8728\n0x8FDBA2\t0x872E\n0x8FDBA3\t0x872F\n0x8FDBA4\t0x8731\n0x8FDBA5\t0x8732\n0x8FDBA6\t0x8739\n0x8FDBA7\t0x873A\n0x8FDBA8\t0x873C\n0x8FDBA9\t0x873D\n0x8FDBAA\t0x873E\n0x8FDBAB\t0x8740\n0x8FDBAC\t0x8743\n0x8FDBAD\t0x8745\n0x8FDBAE\t0x874D\n0x8FDBAF\t0x8758\n0x8FDBB0\t0x875D\n0x8FDBB1\t0x8761\n0x8FDBB2\t0x8764\n0x8FDBB3\t0x8765\n0x8FDBB4\t0x876F\n0x8FDBB5\t0x8771\n0x8FDBB6\t0x8772\n0x8FDBB7\t0x877B\n0x8FDBB8\t0x8783\n0x8FDBB9\t0x8784\n0x8FDBBA\t0x8785\n0x8FDBBB\t0x8786\n0x8FDBBC\t0x8787\n0x8FDBBD\t0x8788\n0x8FDBBE\t0x8789\n0x8FDBBF\t0x878B\n0x8FDBC0\t0x878C\n0x8FDBC1\t0x8790\n0x8FDBC2\t0x8793\n0x8FDBC3\t0x8795\n0x8FDBC4\t0x8797\n0x8FDBC5\t0x8798\n0x8FDBC6\t0x8799\n0x8FDBC7\t0x879E\n0x8FDBC8\t0x87A0\n0x8FDBC9\t0x87A3\n0x8FDBCA\t0x87A7\n0x8FDBCB\t0x87AC\n0x8FDBCC\t0x87AD\n0x8FDBCD\t0x87AE\n0x8FDBCE\t0x87B1\n0x8FDBCF\t0x87B5\n0x8FDBD0\t0x87BE\n0x8FDBD1\t0x87BF\n0x8FDBD2\t0x87C1\n0x8FDBD3\t0x87C8\n0x8FDBD4\t0x87C9\n0x8FDBD5\t0x87CA\n0x8FDBD6\t0x87CE\n0x8FDBD7\t0x87D5\n0x8FDBD8\t0x87D6\n0x8FDBD9\t0x87D9\n0x8FDBDA\t0x87DA\n0x8FDBDB\t0x87DC\n0x8FDBDC\t0x87DF\n0x8FDBDD\t0x87E2\n0x8FDBDE\t0x87E3\n0x8FDBDF\t0x87E4\n0x8FDBE0\t0x87EA\n0x8FDBE1\t0x87EB\n0x8FDBE2\t0x87ED\n0x8FDBE3\t0x87F1\n0x8FDBE4\t0x87F3\n0x8FDBE5\t0x87F8\n0x8FDBE6\t0x87FA\n0x8FDBE7\t0x87FF\n0x8FDBE8\t0x8801\n0x8FDBE9\t0x8803\n0x8FDBEA\t0x8806\n0x8FDBEB\t0x8809\n0x8FDBEC\t0x880A\n0x8FDBED\t0x880B\n0x8FDBEE\t0x8810\n0x8FDBEF\t0x8819\n0x8FDBF0\t0x8812\n0x8FDBF1\t0x8813\n0x8FDBF2\t0x8814\n0x8FDBF3\t0x8818\n0x8FDBF4\t0x881A\n0x8FDBF5\t0x881B\n0x8FDBF6\t0x881C\n0x8FDBF7\t0x881E\n0x8FDBF8\t0x881F\n0x8FDBF9\t0x8828\n0x8FDBFA\t0x882D\n0x8FDBFB\t0x882E\n0x8FDBFC\t0x8830\n0x8FDBFD\t0x8832\n0x8FDBFE\t0x8835\n0x8FDCA1\t0x883A\n0x8FDCA2\t0x883C\n0x8FDCA3\t0x8841\n0x8FDCA4\t0x8843\n0x8FDCA5\t0x8845\n0x8FDCA6\t0x8848\n0x8FDCA7\t0x8849\n0x8FDCA8\t0x884A\n0x8FDCA9\t0x884B\n0x8FDCAA\t0x884E\n0x8FDCAB\t0x8851\n0x8FDCAC\t0x8855\n0x8FDCAD\t0x8856\n0x8FDCAE\t0x8858\n0x8FDCAF\t0x885A\n0x8FDCB0\t0x885C\n0x8FDCB1\t0x885F\n0x8FDCB2\t0x8860\n0x8FDCB3\t0x8864\n0x8FDCB4\t0x8869\n0x8FDCB5\t0x8871\n0x8FDCB6\t0x8879\n0x8FDCB7\t0x887B\n0x8FDCB8\t0x8880\n0x8FDCB9\t0x8898\n0x8FDCBA\t0x889A\n0x8FDCBB\t0x889B\n0x8FDCBC\t0x889C\n0x8FDCBD\t0x889F\n0x8FDCBE\t0x88A0\n0x8FDCBF\t0x88A8\n0x8FDCC0\t0x88AA\n0x8FDCC1\t0x88BA\n0x8FDCC2\t0x88BD\n0x8FDCC3\t0x88BE\n0x8FDCC4\t0x88C0\n0x8FDCC5\t0x88CA\n0x8FDCC6\t0x88CB\n0x8FDCC7\t0x88CC\n0x8FDCC8\t0x88CD\n0x8FDCC9\t0x88CE\n0x8FDCCA\t0x88D1\n0x8FDCCB\t0x88D2\n0x8FDCCC\t0x88D3\n0x8FDCCD\t0x88DB\n0x8FDCCE\t0x88DE\n0x8FDCCF\t0x88E7\n0x8FDCD0\t0x88EF\n0x8FDCD1\t0x88F0\n0x8FDCD2\t0x88F1\n0x8FDCD3\t0x88F5\n0x8FDCD4\t0x88F7\n0x8FDCD5\t0x8901\n0x8FDCD6\t0x8906\n0x8FDCD7\t0x890D\n0x8FDCD8\t0x890E\n0x8FDCD9\t0x890F\n0x8FDCDA\t0x8915\n0x8FDCDB\t0x8916\n0x8FDCDC\t0x8918\n0x8FDCDD\t0x8919\n0x8FDCDE\t0x891A\n0x8FDCDF\t0x891C\n0x8FDCE0\t0x8920\n0x8FDCE1\t0x8926\n0x8FDCE2\t0x8927\n0x8FDCE3\t0x8928\n0x8FDCE4\t0x8930\n0x8FDCE5\t0x8931\n0x8FDCE6\t0x8932\n0x8FDCE7\t0x8935\n0x8FDCE8\t0x8939\n0x8FDCE9\t0x893A\n0x8FDCEA\t0x893E\n0x8FDCEB\t0x8940\n0x8FDCEC\t0x8942\n0x8FDCED\t0x8945\n0x8FDCEE\t0x8946\n0x8FDCEF\t0x8949\n0x8FDCF0\t0x894F\n0x8FDCF1\t0x8952\n0x8FDCF2\t0x8957\n0x8FDCF3\t0x895A\n0x8FDCF4\t0x895B\n0x8FDCF5\t0x895C\n0x8FDCF6\t0x8961\n0x8FDCF7\t0x8962\n0x8FDCF8\t0x8963\n0x8FDCF9\t0x896B\n0x8FDCFA\t0x896E\n0x8FDCFB\t0x8970\n0x8FDCFC\t0x8973\n0x8FDCFD\t0x8975\n0x8FDCFE\t0x897A\n0x8FDDA1\t0x897B\n0x8FDDA2\t0x897C\n0x8FDDA3\t0x897D\n0x8FDDA4\t0x8989\n0x8FDDA5\t0x898D\n0x8FDDA6\t0x8990\n0x8FDDA7\t0x8994\n0x8FDDA8\t0x8995\n0x8FDDA9\t0x899B\n0x8FDDAA\t0x899C\n0x8FDDAB\t0x899F\n0x8FDDAC\t0x89A0\n0x8FDDAD\t0x89A5\n0x8FDDAE\t0x89B0\n0x8FDDAF\t0x89B4\n0x8FDDB0\t0x89B5\n0x8FDDB1\t0x89B6\n0x8FDDB2\t0x89B7\n0x8FDDB3\t0x89BC\n0x8FDDB4\t0x89D4\n0x8FDDB5\t0x89D5\n0x8FDDB6\t0x89D6\n0x8FDDB7\t0x89D7\n0x8FDDB8\t0x89D8\n0x8FDDB9\t0x89E5\n0x8FDDBA\t0x89E9\n0x8FDDBB\t0x89EB\n0x8FDDBC\t0x89ED\n0x8FDDBD\t0x89F1\n0x8FDDBE\t0x89F3\n0x8FDDBF\t0x89F6\n0x8FDDC0\t0x89F9\n0x8FDDC1\t0x89FD\n0x8FDDC2\t0x89FF\n0x8FDDC3\t0x8A04\n0x8FDDC4\t0x8A05\n0x8FDDC5\t0x8A07\n0x8FDDC6\t0x8A0F\n0x8FDDC7\t0x8A11\n0x8FDDC8\t0x8A12\n0x8FDDC9\t0x8A14\n0x8FDDCA\t0x8A15\n0x8FDDCB\t0x8A1E\n0x8FDDCC\t0x8A20\n0x8FDDCD\t0x8A22\n0x8FDDCE\t0x8A24\n0x8FDDCF\t0x8A26\n0x8FDDD0\t0x8A2B\n0x8FDDD1\t0x8A2C\n0x8FDDD2\t0x8A2F\n0x8FDDD3\t0x8A35\n0x8FDDD4\t0x8A37\n0x8FDDD5\t0x8A3D\n0x8FDDD6\t0x8A3E\n0x8FDDD7\t0x8A40\n0x8FDDD8\t0x8A43\n0x8FDDD9\t0x8A45\n0x8FDDDA\t0x8A47\n0x8FDDDB\t0x8A49\n0x8FDDDC\t0x8A4D\n0x8FDDDD\t0x8A4E\n0x8FDDDE\t0x8A53\n0x8FDDDF\t0x8A56\n0x8FDDE0\t0x8A57\n0x8FDDE1\t0x8A58\n0x8FDDE2\t0x8A5C\n0x8FDDE3\t0x8A5D\n0x8FDDE4\t0x8A61\n0x8FDDE5\t0x8A65\n0x8FDDE6\t0x8A67\n0x8FDDE7\t0x8A75\n0x8FDDE8\t0x8A76\n0x8FDDE9\t0x8A77\n0x8FDDEA\t0x8A79\n0x8FDDEB\t0x8A7A\n0x8FDDEC\t0x8A7B\n0x8FDDED\t0x8A7E\n0x8FDDEE\t0x8A7F\n0x8FDDEF\t0x8A80\n0x8FDDF0\t0x8A83\n0x8FDDF1\t0x8A86\n0x8FDDF2\t0x8A8B\n0x8FDDF3\t0x8A8F\n0x8FDDF4\t0x8A90\n0x8FDDF5\t0x8A92\n0x8FDDF6\t0x8A96\n0x8FDDF7\t0x8A97\n0x8FDDF8\t0x8A99\n0x8FDDF9\t0x8A9F\n0x8FDDFA\t0x8AA7\n0x8FDDFB\t0x8AA9\n0x8FDDFC\t0x8AAE\n0x8FDDFD\t0x8AAF\n0x8FDDFE\t0x8AB3\n0x8FDEA1\t0x8AB6\n0x8FDEA2\t0x8AB7\n0x8FDEA3\t0x8ABB\n0x8FDEA4\t0x8ABE\n0x8FDEA5\t0x8AC3\n0x8FDEA6\t0x8AC6\n0x8FDEA7\t0x8AC8\n0x8FDEA8\t0x8AC9\n0x8FDEA9\t0x8ACA\n0x8FDEAA\t0x8AD1\n0x8FDEAB\t0x8AD3\n0x8FDEAC\t0x8AD4\n0x8FDEAD\t0x8AD5\n0x8FDEAE\t0x8AD7\n0x8FDEAF\t0x8ADD\n0x8FDEB0\t0x8ADF\n0x8FDEB1\t0x8AEC\n0x8FDEB2\t0x8AF0\n0x8FDEB3\t0x8AF4\n0x8FDEB4\t0x8AF5\n0x8FDEB5\t0x8AF6\n0x8FDEB6\t0x8AFC\n0x8FDEB7\t0x8AFF\n0x8FDEB8\t0x8B05\n0x8FDEB9\t0x8B06\n0x8FDEBA\t0x8B0B\n0x8FDEBB\t0x8B11\n0x8FDEBC\t0x8B1C\n0x8FDEBD\t0x8B1E\n0x8FDEBE\t0x8B1F\n0x8FDEBF\t0x8B0A\n0x8FDEC0\t0x8B2D\n0x8FDEC1\t0x8B30\n0x8FDEC2\t0x8B37\n0x8FDEC3\t0x8B3C\n0x8FDEC4\t0x8B42\n0x8FDEC5\t0x8B43\n0x8FDEC6\t0x8B44\n0x8FDEC7\t0x8B45\n0x8FDEC8\t0x8B46\n0x8FDEC9\t0x8B48\n0x8FDECA\t0x8B52\n0x8FDECB\t0x8B53\n0x8FDECC\t0x8B54\n0x8FDECD\t0x8B59\n0x8FDECE\t0x8B4D\n0x8FDECF\t0x8B5E\n0x8FDED0\t0x8B63\n0x8FDED1\t0x8B6D\n0x8FDED2\t0x8B76\n0x8FDED3\t0x8B78\n0x8FDED4\t0x8B79\n0x8FDED5\t0x8B7C\n0x8FDED6\t0x8B7E\n0x8FDED7\t0x8B81\n0x8FDED8\t0x8B84\n0x8FDED9\t0x8B85\n0x8FDEDA\t0x8B8B\n0x8FDEDB\t0x8B8D\n0x8FDEDC\t0x8B8F\n0x8FDEDD\t0x8B94\n0x8FDEDE\t0x8B95\n0x8FDEDF\t0x8B9C\n0x8FDEE0\t0x8B9E\n0x8FDEE1\t0x8B9F\n0x8FDEE2\t0x8C38\n0x8FDEE3\t0x8C39\n0x8FDEE4\t0x8C3D\n0x8FDEE5\t0x8C3E\n0x8FDEE6\t0x8C45\n0x8FDEE7\t0x8C47\n0x8FDEE8\t0x8C49\n0x8FDEE9\t0x8C4B\n0x8FDEEA\t0x8C4F\n0x8FDEEB\t0x8C51\n0x8FDEEC\t0x8C53\n0x8FDEED\t0x8C54\n0x8FDEEE\t0x8C57\n0x8FDEEF\t0x8C58\n0x8FDEF0\t0x8C5B\n0x8FDEF1\t0x8C5D\n0x8FDEF2\t0x8C59\n0x8FDEF3\t0x8C63\n0x8FDEF4\t0x8C64\n0x8FDEF5\t0x8C66\n0x8FDEF6\t0x8C68\n0x8FDEF7\t0x8C69\n0x8FDEF8\t0x8C6D\n0x8FDEF9\t0x8C73\n0x8FDEFA\t0x8C75\n0x8FDEFB\t0x8C76\n0x8FDEFC\t0x8C7B\n0x8FDEFD\t0x8C7E\n0x8FDEFE\t0x8C86\n0x8FDFA1\t0x8C87\n0x8FDFA2\t0x8C8B\n0x8FDFA3\t0x8C90\n0x8FDFA4\t0x8C92\n0x8FDFA5\t0x8C93\n0x8FDFA6\t0x8C99\n0x8FDFA7\t0x8C9B\n0x8FDFA8\t0x8C9C\n0x8FDFA9\t0x8CA4\n0x8FDFAA\t0x8CB9\n0x8FDFAB\t0x8CBA\n0x8FDFAC\t0x8CC5\n0x8FDFAD\t0x8CC6\n0x8FDFAE\t0x8CC9\n0x8FDFAF\t0x8CCB\n0x8FDFB0\t0x8CCF\n0x8FDFB1\t0x8CD6\n0x8FDFB2\t0x8CD5\n0x8FDFB3\t0x8CD9\n0x8FDFB4\t0x8CDD\n0x8FDFB5\t0x8CE1\n0x8FDFB6\t0x8CE8\n0x8FDFB7\t0x8CEC\n0x8FDFB8\t0x8CEF\n0x8FDFB9\t0x8CF0\n0x8FDFBA\t0x8CF2\n0x8FDFBB\t0x8CF5\n0x8FDFBC\t0x8CF7\n0x8FDFBD\t0x8CF8\n0x8FDFBE\t0x8CFE\n0x8FDFBF\t0x8CFF\n0x8FDFC0\t0x8D01\n0x8FDFC1\t0x8D03\n0x8FDFC2\t0x8D09\n0x8FDFC3\t0x8D12\n0x8FDFC4\t0x8D17\n0x8FDFC5\t0x8D1B\n0x8FDFC6\t0x8D65\n0x8FDFC7\t0x8D69\n0x8FDFC8\t0x8D6C\n0x8FDFC9\t0x8D6E\n0x8FDFCA\t0x8D7F\n0x8FDFCB\t0x8D82\n0x8FDFCC\t0x8D84\n0x8FDFCD\t0x8D88\n0x8FDFCE\t0x8D8D\n0x8FDFCF\t0x8D90\n0x8FDFD0\t0x8D91\n0x8FDFD1\t0x8D95\n0x8FDFD2\t0x8D9E\n0x8FDFD3\t0x8D9F\n0x8FDFD4\t0x8DA0\n0x8FDFD5\t0x8DA6\n0x8FDFD6\t0x8DAB\n0x8FDFD7\t0x8DAC\n0x8FDFD8\t0x8DAF\n0x8FDFD9\t0x8DB2\n0x8FDFDA\t0x8DB5\n0x8FDFDB\t0x8DB7\n0x8FDFDC\t0x8DB9\n0x8FDFDD\t0x8DBB\n0x8FDFDE\t0x8DC0\n0x8FDFDF\t0x8DC5\n0x8FDFE0\t0x8DC6\n0x8FDFE1\t0x8DC7\n0x8FDFE2\t0x8DC8\n0x8FDFE3\t0x8DCA\n0x8FDFE4\t0x8DCE\n0x8FDFE5\t0x8DD1\n0x8FDFE6\t0x8DD4\n0x8FDFE7\t0x8DD5\n0x8FDFE8\t0x8DD7\n0x8FDFE9\t0x8DD9\n0x8FDFEA\t0x8DE4\n0x8FDFEB\t0x8DE5\n0x8FDFEC\t0x8DE7\n0x8FDFED\t0x8DEC\n0x8FDFEE\t0x8DF0\n0x8FDFEF\t0x8DBC\n0x8FDFF0\t0x8DF1\n0x8FDFF1\t0x8DF2\n0x8FDFF2\t0x8DF4\n0x8FDFF3\t0x8DFD\n0x8FDFF4\t0x8E01\n0x8FDFF5\t0x8E04\n0x8FDFF6\t0x8E05\n0x8FDFF7\t0x8E06\n0x8FDFF8\t0x8E0B\n0x8FDFF9\t0x8E11\n0x8FDFFA\t0x8E14\n0x8FDFFB\t0x8E16\n0x8FDFFC\t0x8E20\n0x8FDFFD\t0x8E21\n0x8FDFFE\t0x8E22\n0x8FE0A1\t0x8E23\n0x8FE0A2\t0x8E26\n0x8FE0A3\t0x8E27\n0x8FE0A4\t0x8E31\n0x8FE0A5\t0x8E33\n0x8FE0A6\t0x8E36\n0x8FE0A7\t0x8E37\n0x8FE0A8\t0x8E38\n0x8FE0A9\t0x8E39\n0x8FE0AA\t0x8E3D\n0x8FE0AB\t0x8E40\n0x8FE0AC\t0x8E41\n0x8FE0AD\t0x8E4B\n0x8FE0AE\t0x8E4D\n0x8FE0AF\t0x8E4E\n0x8FE0B0\t0x8E4F\n0x8FE0B1\t0x8E54\n0x8FE0B2\t0x8E5B\n0x8FE0B3\t0x8E5C\n0x8FE0B4\t0x8E5D\n0x8FE0B5\t0x8E5E\n0x8FE0B6\t0x8E61\n0x8FE0B7\t0x8E62\n0x8FE0B8\t0x8E69\n0x8FE0B9\t0x8E6C\n0x8FE0BA\t0x8E6D\n0x8FE0BB\t0x8E6F\n0x8FE0BC\t0x8E70\n0x8FE0BD\t0x8E71\n0x8FE0BE\t0x8E79\n0x8FE0BF\t0x8E7A\n0x8FE0C0\t0x8E7B\n0x8FE0C1\t0x8E82\n0x8FE0C2\t0x8E83\n0x8FE0C3\t0x8E89\n0x8FE0C4\t0x8E90\n0x8FE0C5\t0x8E92\n0x8FE0C6\t0x8E95\n0x8FE0C7\t0x8E9A\n0x8FE0C8\t0x8E9B\n0x8FE0C9\t0x8E9D\n0x8FE0CA\t0x8E9E\n0x8FE0CB\t0x8EA2\n0x8FE0CC\t0x8EA7\n0x8FE0CD\t0x8EA9\n0x8FE0CE\t0x8EAD\n0x8FE0CF\t0x8EAE\n0x8FE0D0\t0x8EB3\n0x8FE0D1\t0x8EB5\n0x8FE0D2\t0x8EBA\n0x8FE0D3\t0x8EBB\n0x8FE0D4\t0x8EC0\n0x8FE0D5\t0x8EC1\n0x8FE0D6\t0x8EC3\n0x8FE0D7\t0x8EC4\n0x8FE0D8\t0x8EC7\n0x8FE0D9\t0x8ECF\n0x8FE0DA\t0x8ED1\n0x8FE0DB\t0x8ED4\n0x8FE0DC\t0x8EDC\n0x8FE0DD\t0x8EE8\n0x8FE0DE\t0x8EEE\n0x8FE0DF\t0x8EF0\n0x8FE0E0\t0x8EF1\n0x8FE0E1\t0x8EF7\n0x8FE0E2\t0x8EF9\n0x8FE0E3\t0x8EFA\n0x8FE0E4\t0x8EED\n0x8FE0E5\t0x8F00\n0x8FE0E6\t0x8F02\n0x8FE0E7\t0x8F07\n0x8FE0E8\t0x8F08\n0x8FE0E9\t0x8F0F\n0x8FE0EA\t0x8F10\n0x8FE0EB\t0x8F16\n0x8FE0EC\t0x8F17\n0x8FE0ED\t0x8F18\n0x8FE0EE\t0x8F1E\n0x8FE0EF\t0x8F20\n0x8FE0F0\t0x8F21\n0x8FE0F1\t0x8F23\n0x8FE0F2\t0x8F25\n0x8FE0F3\t0x8F27\n0x8FE0F4\t0x8F28\n0x8FE0F5\t0x8F2C\n0x8FE0F6\t0x8F2D\n0x8FE0F7\t0x8F2E\n0x8FE0F8\t0x8F34\n0x8FE0F9\t0x8F35\n0x8FE0FA\t0x8F36\n0x8FE0FB\t0x8F37\n0x8FE0FC\t0x8F3A\n0x8FE0FD\t0x8F40\n0x8FE0FE\t0x8F41\n0x8FE1A1\t0x8F43\n0x8FE1A2\t0x8F47\n0x8FE1A3\t0x8F4F\n0x8FE1A4\t0x8F51\n0x8FE1A5\t0x8F52\n0x8FE1A6\t0x8F53\n0x8FE1A7\t0x8F54\n0x8FE1A8\t0x8F55\n0x8FE1A9\t0x8F58\n0x8FE1AA\t0x8F5D\n0x8FE1AB\t0x8F5E\n0x8FE1AC\t0x8F65\n0x8FE1AD\t0x8F9D\n0x8FE1AE\t0x8FA0\n0x8FE1AF\t0x8FA1\n0x8FE1B0\t0x8FA4\n0x8FE1B1\t0x8FA5\n0x8FE1B2\t0x8FA6\n0x8FE1B3\t0x8FB5\n0x8FE1B4\t0x8FB6\n0x8FE1B5\t0x8FB8\n0x8FE1B6\t0x8FBE\n0x8FE1B7\t0x8FC0\n0x8FE1B8\t0x8FC1\n0x8FE1B9\t0x8FC6\n0x8FE1BA\t0x8FCA\n0x8FE1BB\t0x8FCB\n0x8FE1BC\t0x8FCD\n0x8FE1BD\t0x8FD0\n0x8FE1BE\t0x8FD2\n0x8FE1BF\t0x8FD3\n0x8FE1C0\t0x8FD5\n0x8FE1C1\t0x8FE0\n0x8FE1C2\t0x8FE3\n0x8FE1C3\t0x8FE4\n0x8FE1C4\t0x8FE8\n0x8FE1C5\t0x8FEE\n0x8FE1C6\t0x8FF1\n0x8FE1C7\t0x8FF5\n0x8FE1C8\t0x8FF6\n0x8FE1C9\t0x8FFB\n0x8FE1CA\t0x8FFE\n0x8FE1CB\t0x9002\n0x8FE1CC\t0x9004\n0x8FE1CD\t0x9008\n0x8FE1CE\t0x900C\n0x8FE1CF\t0x9018\n0x8FE1D0\t0x901B\n0x8FE1D1\t0x9028\n0x8FE1D2\t0x9029\n0x8FE1D3\t0x902F\n0x8FE1D4\t0x902A\n0x8FE1D5\t0x902C\n0x8FE1D6\t0x902D\n0x8FE1D7\t0x9033\n0x8FE1D8\t0x9034\n0x8FE1D9\t0x9037\n0x8FE1DA\t0x903F\n0x8FE1DB\t0x9043\n0x8FE1DC\t0x9044\n0x8FE1DD\t0x904C\n0x8FE1DE\t0x905B\n0x8FE1DF\t0x905D\n0x8FE1E0\t0x9062\n0x8FE1E1\t0x9066\n0x8FE1E2\t0x9067\n0x8FE1E3\t0x906C\n0x8FE1E4\t0x9070\n0x8FE1E5\t0x9074\n0x8FE1E6\t0x9079\n0x8FE1E7\t0x9085\n0x8FE1E8\t0x9088\n0x8FE1E9\t0x908B\n0x8FE1EA\t0x908C\n0x8FE1EB\t0x908E\n0x8FE1EC\t0x9090\n0x8FE1ED\t0x9095\n0x8FE1EE\t0x9097\n0x8FE1EF\t0x9098\n0x8FE1F0\t0x9099\n0x8FE1F1\t0x909B\n0x8FE1F2\t0x90A0\n0x8FE1F3\t0x90A1\n0x8FE1F4\t0x90A2\n0x8FE1F5\t0x90A5\n0x8FE1F6\t0x90B0\n0x8FE1F7\t0x90B2\n0x8FE1F8\t0x90B3\n0x8FE1F9\t0x90B4\n0x8FE1FA\t0x90B6\n0x8FE1FB\t0x90BD\n0x8FE1FC\t0x90CC\n0x8FE1FD\t0x90BE\n0x8FE1FE\t0x90C3\n0x8FE2A1\t0x90C4\n0x8FE2A2\t0x90C5\n0x8FE2A3\t0x90C7\n0x8FE2A4\t0x90C8\n0x8FE2A5\t0x90D5\n0x8FE2A6\t0x90D7\n0x8FE2A7\t0x90D8\n0x8FE2A8\t0x90D9\n0x8FE2A9\t0x90DC\n0x8FE2AA\t0x90DD\n0x8FE2AB\t0x90DF\n0x8FE2AC\t0x90E5\n0x8FE2AD\t0x90D2\n0x8FE2AE\t0x90F6\n0x8FE2AF\t0x90EB\n0x8FE2B0\t0x90EF\n0x8FE2B1\t0x90F0\n0x8FE2B2\t0x90F4\n0x8FE2B3\t0x90FE\n0x8FE2B4\t0x90FF\n0x8FE2B5\t0x9100\n0x8FE2B6\t0x9104\n0x8FE2B7\t0x9105\n0x8FE2B8\t0x9106\n0x8FE2B9\t0x9108\n0x8FE2BA\t0x910D\n0x8FE2BB\t0x9110\n0x8FE2BC\t0x9114\n0x8FE2BD\t0x9116\n0x8FE2BE\t0x9117\n0x8FE2BF\t0x9118\n0x8FE2C0\t0x911A\n0x8FE2C1\t0x911C\n0x8FE2C2\t0x911E\n0x8FE2C3\t0x9120\n0x8FE2C4\t0x9125\n0x8FE2C5\t0x9122\n0x8FE2C6\t0x9123\n0x8FE2C7\t0x9127\n0x8FE2C8\t0x9129\n0x8FE2C9\t0x912E\n0x8FE2CA\t0x912F\n0x8FE2CB\t0x9131\n0x8FE2CC\t0x9134\n0x8FE2CD\t0x9136\n0x8FE2CE\t0x9137\n0x8FE2CF\t0x9139\n0x8FE2D0\t0x913A\n0x8FE2D1\t0x913C\n0x8FE2D2\t0x913D\n0x8FE2D3\t0x9143\n0x8FE2D4\t0x9147\n0x8FE2D5\t0x9148\n0x8FE2D6\t0x914F\n0x8FE2D7\t0x9153\n0x8FE2D8\t0x9157\n0x8FE2D9\t0x9159\n0x8FE2DA\t0x915A\n0x8FE2DB\t0x915B\n0x8FE2DC\t0x9161\n0x8FE2DD\t0x9164\n0x8FE2DE\t0x9167\n0x8FE2DF\t0x916D\n0x8FE2E0\t0x9174\n0x8FE2E1\t0x9179\n0x8FE2E2\t0x917A\n0x8FE2E3\t0x917B\n0x8FE2E4\t0x9181\n0x8FE2E5\t0x9183\n0x8FE2E6\t0x9185\n0x8FE2E7\t0x9186\n0x8FE2E8\t0x918A\n0x8FE2E9\t0x918E\n0x8FE2EA\t0x9191\n0x8FE2EB\t0x9193\n0x8FE2EC\t0x9194\n0x8FE2ED\t0x9195\n0x8FE2EE\t0x9198\n0x8FE2EF\t0x919E\n0x8FE2F0\t0x91A1\n0x8FE2F1\t0x91A6\n0x8FE2F2\t0x91A8\n0x8FE2F3\t0x91AC\n0x8FE2F4\t0x91AD\n0x8FE2F5\t0x91AE\n0x8FE2F6\t0x91B0\n0x8FE2F7\t0x91B1\n0x8FE2F8\t0x91B2\n0x8FE2F9\t0x91B3\n0x8FE2FA\t0x91B6\n0x8FE2FB\t0x91BB\n0x8FE2FC\t0x91BC\n0x8FE2FD\t0x91BD\n0x8FE2FE\t0x91BF\n0x8FE3A1\t0x91C2\n0x8FE3A2\t0x91C3\n0x8FE3A3\t0x91C5\n0x8FE3A4\t0x91D3\n0x8FE3A5\t0x91D4\n0x8FE3A6\t0x91D7\n0x8FE3A7\t0x91D9\n0x8FE3A8\t0x91DA\n0x8FE3A9\t0x91DE\n0x8FE3AA\t0x91E4\n0x8FE3AB\t0x91E5\n0x8FE3AC\t0x91E9\n0x8FE3AD\t0x91EA\n0x8FE3AE\t0x91EC\n0x8FE3AF\t0x91ED\n0x8FE3B0\t0x91EE\n0x8FE3B1\t0x91EF\n0x8FE3B2\t0x91F0\n0x8FE3B3\t0x91F1\n0x8FE3B4\t0x91F7\n0x8FE3B5\t0x91F9\n0x8FE3B6\t0x91FB\n0x8FE3B7\t0x91FD\n0x8FE3B8\t0x9200\n0x8FE3B9\t0x9201\n0x8FE3BA\t0x9204\n0x8FE3BB\t0x9205\n0x8FE3BC\t0x9206\n0x8FE3BD\t0x9207\n0x8FE3BE\t0x9209\n0x8FE3BF\t0x920A\n0x8FE3C0\t0x920C\n0x8FE3C1\t0x9210\n0x8FE3C2\t0x9212\n0x8FE3C3\t0x9213\n0x8FE3C4\t0x9216\n0x8FE3C5\t0x9218\n0x8FE3C6\t0x921C\n0x8FE3C7\t0x921D\n0x8FE3C8\t0x9223\n0x8FE3C9\t0x9224\n0x8FE3CA\t0x9225\n0x8FE3CB\t0x9226\n0x8FE3CC\t0x9228\n0x8FE3CD\t0x922E\n0x8FE3CE\t0x922F\n0x8FE3CF\t0x9230\n0x8FE3D0\t0x9233\n0x8FE3D1\t0x9235\n0x8FE3D2\t0x9236\n0x8FE3D3\t0x9238\n0x8FE3D4\t0x9239\n0x8FE3D5\t0x923A\n0x8FE3D6\t0x923C\n0x8FE3D7\t0x923E\n0x8FE3D8\t0x9240\n0x8FE3D9\t0x9242\n0x8FE3DA\t0x9243\n0x8FE3DB\t0x9246\n0x8FE3DC\t0x9247\n0x8FE3DD\t0x924A\n0x8FE3DE\t0x924D\n0x8FE3DF\t0x924E\n0x8FE3E0\t0x924F\n0x8FE3E1\t0x9251\n0x8FE3E2\t0x9258\n0x8FE3E3\t0x9259\n0x8FE3E4\t0x925C\n0x8FE3E5\t0x925D\n0x8FE3E6\t0x9260\n0x8FE3E7\t0x9261\n0x8FE3E8\t0x9265\n0x8FE3E9\t0x9267\n0x8FE3EA\t0x9268\n0x8FE3EB\t0x9269\n0x8FE3EC\t0x926E\n0x8FE3ED\t0x926F\n0x8FE3EE\t0x9270\n0x8FE3EF\t0x9275\n0x8FE3F0\t0x9276\n0x8FE3F1\t0x9277\n0x8FE3F2\t0x9278\n0x8FE3F3\t0x9279\n0x8FE3F4\t0x927B\n0x8FE3F5\t0x927C\n0x8FE3F6\t0x927D\n0x8FE3F7\t0x927F\n0x8FE3F8\t0x9288\n0x8FE3F9\t0x9289\n0x8FE3FA\t0x928A\n0x8FE3FB\t0x928D\n0x8FE3FC\t0x928E\n0x8FE3FD\t0x9292\n0x8FE3FE\t0x9297\n0x8FE4A1\t0x9299\n0x8FE4A2\t0x929F\n0x8FE4A3\t0x92A0\n0x8FE4A4\t0x92A4\n0x8FE4A5\t0x92A5\n0x8FE4A6\t0x92A7\n0x8FE4A7\t0x92A8\n0x8FE4A8\t0x92AB\n0x8FE4A9\t0x92AF\n0x8FE4AA\t0x92B2\n0x8FE4AB\t0x92B6\n0x8FE4AC\t0x92B8\n0x8FE4AD\t0x92BA\n0x8FE4AE\t0x92BB\n0x8FE4AF\t0x92BC\n0x8FE4B0\t0x92BD\n0x8FE4B1\t0x92BF\n0x8FE4B2\t0x92C0\n0x8FE4B3\t0x92C1\n0x8FE4B4\t0x92C2\n0x8FE4B5\t0x92C3\n0x8FE4B6\t0x92C5\n0x8FE4B7\t0x92C6\n0x8FE4B8\t0x92C7\n0x8FE4B9\t0x92C8\n0x8FE4BA\t0x92CB\n0x8FE4BB\t0x92CC\n0x8FE4BC\t0x92CD\n0x8FE4BD\t0x92CE\n0x8FE4BE\t0x92D0\n0x8FE4BF\t0x92D3\n0x8FE4C0\t0x92D5\n0x8FE4C1\t0x92D7\n0x8FE4C2\t0x92D8\n0x8FE4C3\t0x92D9\n0x8FE4C4\t0x92DC\n0x8FE4C5\t0x92DD\n0x8FE4C6\t0x92DF\n0x8FE4C7\t0x92E0\n0x8FE4C8\t0x92E1\n0x8FE4C9\t0x92E3\n0x8FE4CA\t0x92E5\n0x8FE4CB\t0x92E7\n0x8FE4CC\t0x92E8\n0x8FE4CD\t0x92EC\n0x8FE4CE\t0x92EE\n0x8FE4CF\t0x92F0\n0x8FE4D0\t0x92F9\n0x8FE4D1\t0x92FB\n0x8FE4D2\t0x92FF\n0x8FE4D3\t0x9300\n0x8FE4D4\t0x9302\n0x8FE4D5\t0x9308\n0x8FE4D6\t0x930D\n0x8FE4D7\t0x9311\n0x8FE4D8\t0x9314\n0x8FE4D9\t0x9315\n0x8FE4DA\t0x931C\n0x8FE4DB\t0x931D\n0x8FE4DC\t0x931E\n0x8FE4DD\t0x931F\n0x8FE4DE\t0x9321\n0x8FE4DF\t0x9324\n0x8FE4E0\t0x9325\n0x8FE4E1\t0x9327\n0x8FE4E2\t0x9329\n0x8FE4E3\t0x932A\n0x8FE4E4\t0x9333\n0x8FE4E5\t0x9334\n0x8FE4E6\t0x9336\n0x8FE4E7\t0x9337\n0x8FE4E8\t0x9347\n0x8FE4E9\t0x9348\n0x8FE4EA\t0x9349\n0x8FE4EB\t0x9350\n0x8FE4EC\t0x9351\n0x8FE4ED\t0x9352\n0x8FE4EE\t0x9355\n0x8FE4EF\t0x9357\n0x8FE4F0\t0x9358\n0x8FE4F1\t0x935A\n0x8FE4F2\t0x935E\n0x8FE4F3\t0x9364\n0x8FE4F4\t0x9365\n0x8FE4F5\t0x9367\n0x8FE4F6\t0x9369\n0x8FE4F7\t0x936A\n0x8FE4F8\t0x936D\n0x8FE4F9\t0x936F\n0x8FE4FA\t0x9370\n0x8FE4FB\t0x9371\n0x8FE4FC\t0x9373\n0x8FE4FD\t0x9374\n0x8FE4FE\t0x9376\n0x8FE5A1\t0x937A\n0x8FE5A2\t0x937D\n0x8FE5A3\t0x937F\n0x8FE5A4\t0x9380\n0x8FE5A5\t0x9381\n0x8FE5A6\t0x9382\n0x8FE5A7\t0x9388\n0x8FE5A8\t0x938A\n0x8FE5A9\t0x938B\n0x8FE5AA\t0x938D\n0x8FE5AB\t0x938F\n0x8FE5AC\t0x9392\n0x8FE5AD\t0x9395\n0x8FE5AE\t0x9398\n0x8FE5AF\t0x939B\n0x8FE5B0\t0x939E\n0x8FE5B1\t0x93A1\n0x8FE5B2\t0x93A3\n0x8FE5B3\t0x93A4\n0x8FE5B4\t0x93A6\n0x8FE5B5\t0x93A8\n0x8FE5B6\t0x93AB\n0x8FE5B7\t0x93B4\n0x8FE5B8\t0x93B5\n0x8FE5B9\t0x93B6\n0x8FE5BA\t0x93BA\n0x8FE5BB\t0x93A9\n0x8FE5BC\t0x93C1\n0x8FE5BD\t0x93C4\n0x8FE5BE\t0x93C5\n0x8FE5BF\t0x93C6\n0x8FE5C0\t0x93C7\n0x8FE5C1\t0x93C9\n0x8FE5C2\t0x93CA\n0x8FE5C3\t0x93CB\n0x8FE5C4\t0x93CC\n0x8FE5C5\t0x93CD\n0x8FE5C6\t0x93D3\n0x8FE5C7\t0x93D9\n0x8FE5C8\t0x93DC\n0x8FE5C9\t0x93DE\n0x8FE5CA\t0x93DF\n0x8FE5CB\t0x93E2\n0x8FE5CC\t0x93E6\n0x8FE5CD\t0x93E7\n0x8FE5CE\t0x93F9\n0x8FE5CF\t0x93F7\n0x8FE5D0\t0x93F8\n0x8FE5D1\t0x93FA\n0x8FE5D2\t0x93FB\n0x8FE5D3\t0x93FD\n0x8FE5D4\t0x9401\n0x8FE5D5\t0x9402\n0x8FE5D6\t0x9404\n0x8FE5D7\t0x9408\n0x8FE5D8\t0x9409\n0x8FE5D9\t0x940D\n0x8FE5DA\t0x940E\n0x8FE5DB\t0x940F\n0x8FE5DC\t0x9415\n0x8FE5DD\t0x9416\n0x8FE5DE\t0x9417\n0x8FE5DF\t0x941F\n0x8FE5E0\t0x942E\n0x8FE5E1\t0x942F\n0x8FE5E2\t0x9431\n0x8FE5E3\t0x9432\n0x8FE5E4\t0x9433\n0x8FE5E5\t0x9434\n0x8FE5E6\t0x943B\n0x8FE5E7\t0x943F\n0x8FE5E8\t0x943D\n0x8FE5E9\t0x9443\n0x8FE5EA\t0x9445\n0x8FE5EB\t0x9448\n0x8FE5EC\t0x944A\n0x8FE5ED\t0x944C\n0x8FE5EE\t0x9455\n0x8FE5EF\t0x9459\n0x8FE5F0\t0x945C\n0x8FE5F1\t0x945F\n0x8FE5F2\t0x9461\n0x8FE5F3\t0x9463\n0x8FE5F4\t0x9468\n0x8FE5F5\t0x946B\n0x8FE5F6\t0x946D\n0x8FE5F7\t0x946E\n0x8FE5F8\t0x946F\n0x8FE5F9\t0x9471\n0x8FE5FA\t0x9472\n0x8FE5FB\t0x9484\n0x8FE5FC\t0x9483\n0x8FE5FD\t0x9578\n0x8FE5FE\t0x9579\n0x8FE6A1\t0x957E\n0x8FE6A2\t0x9584\n0x8FE6A3\t0x9588\n0x8FE6A4\t0x958C\n0x8FE6A5\t0x958D\n0x8FE6A6\t0x958E\n0x8FE6A7\t0x959D\n0x8FE6A8\t0x959E\n0x8FE6A9\t0x959F\n0x8FE6AA\t0x95A1\n0x8FE6AB\t0x95A6\n0x8FE6AC\t0x95A9\n0x8FE6AD\t0x95AB\n0x8FE6AE\t0x95AC\n0x8FE6AF\t0x95B4\n0x8FE6B0\t0x95B6\n0x8FE6B1\t0x95BA\n0x8FE6B2\t0x95BD\n0x8FE6B3\t0x95BF\n0x8FE6B4\t0x95C6\n0x8FE6B5\t0x95C8\n0x8FE6B6\t0x95C9\n0x8FE6B7\t0x95CB\n0x8FE6B8\t0x95D0\n0x8FE6B9\t0x95D1\n0x8FE6BA\t0x95D2\n0x8FE6BB\t0x95D3\n0x8FE6BC\t0x95D9\n0x8FE6BD\t0x95DA\n0x8FE6BE\t0x95DD\n0x8FE6BF\t0x95DE\n0x8FE6C0\t0x95DF\n0x8FE6C1\t0x95E0\n0x8FE6C2\t0x95E4\n0x8FE6C3\t0x95E6\n0x8FE6C4\t0x961D\n0x8FE6C5\t0x961E\n0x8FE6C6\t0x9622\n0x8FE6C7\t0x9624\n0x8FE6C8\t0x9625\n0x8FE6C9\t0x9626\n0x8FE6CA\t0x962C\n0x8FE6CB\t0x9631\n0x8FE6CC\t0x9633\n0x8FE6CD\t0x9637\n0x8FE6CE\t0x9638\n0x8FE6CF\t0x9639\n0x8FE6D0\t0x963A\n0x8FE6D1\t0x963C\n0x8FE6D2\t0x963D\n0x8FE6D3\t0x9641\n0x8FE6D4\t0x9652\n0x8FE6D5\t0x9654\n0x8FE6D6\t0x9656\n0x8FE6D7\t0x9657\n0x8FE6D8\t0x9658\n0x8FE6D9\t0x9661\n0x8FE6DA\t0x966E\n0x8FE6DB\t0x9674\n0x8FE6DC\t0x967B\n0x8FE6DD\t0x967C\n0x8FE6DE\t0x967E\n0x8FE6DF\t0x967F\n0x8FE6E0\t0x9681\n0x8FE6E1\t0x9682\n0x8FE6E2\t0x9683\n0x8FE6E3\t0x9684\n0x8FE6E4\t0x9689\n0x8FE6E5\t0x9691\n0x8FE6E6\t0x9696\n0x8FE6E7\t0x969A\n0x8FE6E8\t0x969D\n0x8FE6E9\t0x969F\n0x8FE6EA\t0x96A4\n0x8FE6EB\t0x96A5\n0x8FE6EC\t0x96A6\n0x8FE6ED\t0x96A9\n0x8FE6EE\t0x96AE\n0x8FE6EF\t0x96AF\n0x8FE6F0\t0x96B3\n0x8FE6F1\t0x96BA\n0x8FE6F2\t0x96CA\n0x8FE6F3\t0x96D2\n0x8FE6F4\t0x5DB2\n0x8FE6F5\t0x96D8\n0x8FE6F6\t0x96DA\n0x8FE6F7\t0x96DD\n0x8FE6F8\t0x96DE\n0x8FE6F9\t0x96DF\n0x8FE6FA\t0x96E9\n0x8FE6FB\t0x96EF\n0x8FE6FC\t0x96F1\n0x8FE6FD\t0x96FA\n0x8FE6FE\t0x9702\n0x8FE7A1\t0x9703\n0x8FE7A2\t0x9705\n0x8FE7A3\t0x9709\n0x8FE7A4\t0x971A\n0x8FE7A5\t0x971B\n0x8FE7A6\t0x971D\n0x8FE7A7\t0x9721\n0x8FE7A8\t0x9722\n0x8FE7A9\t0x9723\n0x8FE7AA\t0x9728\n0x8FE7AB\t0x9731\n0x8FE7AC\t0x9733\n0x8FE7AD\t0x9741\n0x8FE7AE\t0x9743\n0x8FE7AF\t0x974A\n0x8FE7B0\t0x974E\n0x8FE7B1\t0x974F\n0x8FE7B2\t0x9755\n0x8FE7B3\t0x9757\n0x8FE7B4\t0x9758\n0x8FE7B5\t0x975A\n0x8FE7B6\t0x975B\n0x8FE7B7\t0x9763\n0x8FE7B8\t0x9767\n0x8FE7B9\t0x976A\n0x8FE7BA\t0x976E\n0x8FE7BB\t0x9773\n0x8FE7BC\t0x9776\n0x8FE7BD\t0x9777\n0x8FE7BE\t0x9778\n0x8FE7BF\t0x977B\n0x8FE7C0\t0x977D\n0x8FE7C1\t0x977F\n0x8FE7C2\t0x9780\n0x8FE7C3\t0x9789\n0x8FE7C4\t0x9795\n0x8FE7C5\t0x9796\n0x8FE7C6\t0x9797\n0x8FE7C7\t0x9799\n0x8FE7C8\t0x979A\n0x8FE7C9\t0x979E\n0x8FE7CA\t0x979F\n0x8FE7CB\t0x97A2\n0x8FE7CC\t0x97AC\n0x8FE7CD\t0x97AE\n0x8FE7CE\t0x97B1\n0x8FE7CF\t0x97B2\n0x8FE7D0\t0x97B5\n0x8FE7D1\t0x97B6\n0x8FE7D2\t0x97B8\n0x8FE7D3\t0x97B9\n0x8FE7D4\t0x97BA\n0x8FE7D5\t0x97BC\n0x8FE7D6\t0x97BE\n0x8FE7D7\t0x97BF\n0x8FE7D8\t0x97C1\n0x8FE7D9\t0x97C4\n0x8FE7DA\t0x97C5\n0x8FE7DB\t0x97C7\n0x8FE7DC\t0x97C9\n0x8FE7DD\t0x97CA\n0x8FE7DE\t0x97CC\n0x8FE7DF\t0x97CD\n0x8FE7E0\t0x97CE\n0x8FE7E1\t0x97D0\n0x8FE7E2\t0x97D1\n0x8FE7E3\t0x97D4\n0x8FE7E4\t0x97D7\n0x8FE7E5\t0x97D8\n0x8FE7E6\t0x97D9\n0x8FE7E7\t0x97DD\n0x8FE7E8\t0x97DE\n0x8FE7E9\t0x97E0\n0x8FE7EA\t0x97DB\n0x8FE7EB\t0x97E1\n0x8FE7EC\t0x97E4\n0x8FE7ED\t0x97EF\n0x8FE7EE\t0x97F1\n0x8FE7EF\t0x97F4\n0x8FE7F0\t0x97F7\n0x8FE7F1\t0x97F8\n0x8FE7F2\t0x97FA\n0x8FE7F3\t0x9807\n0x8FE7F4\t0x980A\n0x8FE7F5\t0x9819\n0x8FE7F6\t0x980D\n0x8FE7F7\t0x980E\n0x8FE7F8\t0x9814\n0x8FE7F9\t0x9816\n0x8FE7FA\t0x981C\n0x8FE7FB\t0x981E\n0x8FE7FC\t0x9820\n0x8FE7FD\t0x9823\n0x8FE7FE\t0x9826\n0x8FE8A1\t0x982B\n0x8FE8A2\t0x982E\n0x8FE8A3\t0x982F\n0x8FE8A4\t0x9830\n0x8FE8A5\t0x9832\n0x8FE8A6\t0x9833\n0x8FE8A7\t0x9835\n0x8FE8A8\t0x9825\n0x8FE8A9\t0x983E\n0x8FE8AA\t0x9844\n0x8FE8AB\t0x9847\n0x8FE8AC\t0x984A\n0x8FE8AD\t0x9851\n0x8FE8AE\t0x9852\n0x8FE8AF\t0x9853\n0x8FE8B0\t0x9856\n0x8FE8B1\t0x9857\n0x8FE8B2\t0x9859\n0x8FE8B3\t0x985A\n0x8FE8B4\t0x9862\n0x8FE8B5\t0x9863\n0x8FE8B6\t0x9865\n0x8FE8B7\t0x9866\n0x8FE8B8\t0x986A\n0x8FE8B9\t0x986C\n0x8FE8BA\t0x98AB\n0x8FE8BB\t0x98AD\n0x8FE8BC\t0x98AE\n0x8FE8BD\t0x98B0\n0x8FE8BE\t0x98B4\n0x8FE8BF\t0x98B7\n0x8FE8C0\t0x98B8\n0x8FE8C1\t0x98BA\n0x8FE8C2\t0x98BB\n0x8FE8C3\t0x98BF\n0x8FE8C4\t0x98C2\n0x8FE8C5\t0x98C5\n0x8FE8C6\t0x98C8\n0x8FE8C7\t0x98CC\n0x8FE8C8\t0x98E1\n0x8FE8C9\t0x98E3\n0x8FE8CA\t0x98E5\n0x8FE8CB\t0x98E6\n0x8FE8CC\t0x98E7\n0x8FE8CD\t0x98EA\n0x8FE8CE\t0x98F3\n0x8FE8CF\t0x98F6\n0x8FE8D0\t0x9902\n0x8FE8D1\t0x9907\n0x8FE8D2\t0x9908\n0x8FE8D3\t0x9911\n0x8FE8D4\t0x9915\n0x8FE8D5\t0x9916\n0x8FE8D6\t0x9917\n0x8FE8D7\t0x991A\n0x8FE8D8\t0x991B\n0x8FE8D9\t0x991C\n0x8FE8DA\t0x991F\n0x8FE8DB\t0x9922\n0x8FE8DC\t0x9926\n0x8FE8DD\t0x9927\n0x8FE8DE\t0x992B\n0x8FE8DF\t0x9931\n0x8FE8E0\t0x9932\n0x8FE8E1\t0x9933\n0x8FE8E2\t0x9934\n0x8FE8E3\t0x9935\n0x8FE8E4\t0x9939\n0x8FE8E5\t0x993A\n0x8FE8E6\t0x993B\n0x8FE8E7\t0x993C\n0x8FE8E8\t0x9940\n0x8FE8E9\t0x9941\n0x8FE8EA\t0x9946\n0x8FE8EB\t0x9947\n0x8FE8EC\t0x9948\n0x8FE8ED\t0x994D\n0x8FE8EE\t0x994E\n0x8FE8EF\t0x9954\n0x8FE8F0\t0x9958\n0x8FE8F1\t0x9959\n0x8FE8F2\t0x995B\n0x8FE8F3\t0x995C\n0x8FE8F4\t0x995E\n0x8FE8F5\t0x995F\n0x8FE8F6\t0x9960\n0x8FE8F7\t0x999B\n0x8FE8F8\t0x999D\n0x8FE8F9\t0x999F\n0x8FE8FA\t0x99A6\n0x8FE8FB\t0x99B0\n0x8FE8FC\t0x99B1\n0x8FE8FD\t0x99B2\n0x8FE8FE\t0x99B5\n0x8FE9A1\t0x99B9\n0x8FE9A2\t0x99BA\n0x8FE9A3\t0x99BD\n0x8FE9A4\t0x99BF\n0x8FE9A5\t0x99C3\n0x8FE9A6\t0x99C9\n0x8FE9A7\t0x99D3\n0x8FE9A8\t0x99D4\n0x8FE9A9\t0x99D9\n0x8FE9AA\t0x99DA\n0x8FE9AB\t0x99DC\n0x8FE9AC\t0x99DE\n0x8FE9AD\t0x99E7\n0x8FE9AE\t0x99EA\n0x8FE9AF\t0x99EB\n0x8FE9B0\t0x99EC\n0x8FE9B1\t0x99F0\n0x8FE9B2\t0x99F4\n0x8FE9B3\t0x99F5\n0x8FE9B4\t0x99F9\n0x8FE9B5\t0x99FD\n0x8FE9B6\t0x99FE\n0x8FE9B7\t0x9A02\n0x8FE9B8\t0x9A03\n0x8FE9B9\t0x9A04\n0x8FE9BA\t0x9A0B\n0x8FE9BB\t0x9A0C\n0x8FE9BC\t0x9A10\n0x8FE9BD\t0x9A11\n0x8FE9BE\t0x9A16\n0x8FE9BF\t0x9A1E\n0x8FE9C0\t0x9A20\n0x8FE9C1\t0x9A22\n0x8FE9C2\t0x9A23\n0x8FE9C3\t0x9A24\n0x8FE9C4\t0x9A27\n0x8FE9C5\t0x9A2D\n0x8FE9C6\t0x9A2E\n0x8FE9C7\t0x9A33\n0x8FE9C8\t0x9A35\n0x8FE9C9\t0x9A36\n0x8FE9CA\t0x9A38\n0x8FE9CB\t0x9A47\n0x8FE9CC\t0x9A41\n0x8FE9CD\t0x9A44\n0x8FE9CE\t0x9A4A\n0x8FE9CF\t0x9A4B\n0x8FE9D0\t0x9A4C\n0x8FE9D1\t0x9A4E\n0x8FE9D2\t0x9A51\n0x8FE9D3\t0x9A54\n0x8FE9D4\t0x9A56\n0x8FE9D5\t0x9A5D\n0x8FE9D6\t0x9AAA\n0x8FE9D7\t0x9AAC\n0x8FE9D8\t0x9AAE\n0x8FE9D9\t0x9AAF\n0x8FE9DA\t0x9AB2\n0x8FE9DB\t0x9AB4\n0x8FE9DC\t0x9AB5\n0x8FE9DD\t0x9AB6\n0x8FE9DE\t0x9AB9\n0x8FE9DF\t0x9ABB\n0x8FE9E0\t0x9ABE\n0x8FE9E1\t0x9ABF\n0x8FE9E2\t0x9AC1\n0x8FE9E3\t0x9AC3\n0x8FE9E4\t0x9AC6\n0x8FE9E5\t0x9AC8\n0x8FE9E6\t0x9ACE\n0x8FE9E7\t0x9AD0\n0x8FE9E8\t0x9AD2\n0x8FE9E9\t0x9AD5\n0x8FE9EA\t0x9AD6\n0x8FE9EB\t0x9AD7\n0x8FE9EC\t0x9ADB\n0x8FE9ED\t0x9ADC\n0x8FE9EE\t0x9AE0\n0x8FE9EF\t0x9AE4\n0x8FE9F0\t0x9AE5\n0x8FE9F1\t0x9AE7\n0x8FE9F2\t0x9AE9\n0x8FE9F3\t0x9AEC\n0x8FE9F4\t0x9AF2\n0x8FE9F5\t0x9AF3\n0x8FE9F6\t0x9AF5\n0x8FE9F7\t0x9AF9\n0x8FE9F8\t0x9AFA\n0x8FE9F9\t0x9AFD\n0x8FE9FA\t0x9AFF\n0x8FE9FB\t0x9B00\n0x8FE9FC\t0x9B01\n0x8FE9FD\t0x9B02\n0x8FE9FE\t0x9B03\n0x8FEAA1\t0x9B04\n0x8FEAA2\t0x9B05\n0x8FEAA3\t0x9B08\n0x8FEAA4\t0x9B09\n0x8FEAA5\t0x9B0B\n0x8FEAA6\t0x9B0C\n0x8FEAA7\t0x9B0D\n0x8FEAA8\t0x9B0E\n0x8FEAA9\t0x9B10\n0x8FEAAA\t0x9B12\n0x8FEAAB\t0x9B16\n0x8FEAAC\t0x9B19\n0x8FEAAD\t0x9B1B\n0x8FEAAE\t0x9B1C\n0x8FEAAF\t0x9B20\n0x8FEAB0\t0x9B26\n0x8FEAB1\t0x9B2B\n0x8FEAB2\t0x9B2D\n0x8FEAB3\t0x9B33\n0x8FEAB4\t0x9B34\n0x8FEAB5\t0x9B35\n0x8FEAB6\t0x9B37\n0x8FEAB7\t0x9B39\n0x8FEAB8\t0x9B3A\n0x8FEAB9\t0x9B3D\n0x8FEABA\t0x9B48\n0x8FEABB\t0x9B4B\n0x8FEABC\t0x9B4C\n0x8FEABD\t0x9B55\n0x8FEABE\t0x9B56\n0x8FEABF\t0x9B57\n0x8FEAC0\t0x9B5B\n0x8FEAC1\t0x9B5E\n0x8FEAC2\t0x9B61\n0x8FEAC3\t0x9B63\n0x8FEAC4\t0x9B65\n0x8FEAC5\t0x9B66\n0x8FEAC6\t0x9B68\n0x8FEAC7\t0x9B6A\n0x8FEAC8\t0x9B6B\n0x8FEAC9\t0x9B6C\n0x8FEACA\t0x9B6D\n0x8FEACB\t0x9B6E\n0x8FEACC\t0x9B73\n0x8FEACD\t0x9B75\n0x8FEACE\t0x9B77\n0x8FEACF\t0x9B78\n0x8FEAD0\t0x9B79\n0x8FEAD1\t0x9B7F\n0x8FEAD2\t0x9B80\n0x8FEAD3\t0x9B84\n0x8FEAD4\t0x9B85\n0x8FEAD5\t0x9B86\n0x8FEAD6\t0x9B87\n0x8FEAD7\t0x9B89\n0x8FEAD8\t0x9B8A\n0x8FEAD9\t0x9B8B\n0x8FEADA\t0x9B8D\n0x8FEADB\t0x9B8F\n0x8FEADC\t0x9B90\n0x8FEADD\t0x9B94\n0x8FEADE\t0x9B9A\n0x8FEADF\t0x9B9D\n0x8FEAE0\t0x9B9E\n0x8FEAE1\t0x9BA6\n0x8FEAE2\t0x9BA7\n0x8FEAE3\t0x9BA9\n0x8FEAE4\t0x9BAC\n0x8FEAE5\t0x9BB0\n0x8FEAE6\t0x9BB1\n0x8FEAE7\t0x9BB2\n0x8FEAE8\t0x9BB7\n0x8FEAE9\t0x9BB8\n0x8FEAEA\t0x9BBB\n0x8FEAEB\t0x9BBC\n0x8FEAEC\t0x9BBE\n0x8FEAED\t0x9BBF\n0x8FEAEE\t0x9BC1\n0x8FEAEF\t0x9BC7\n0x8FEAF0\t0x9BC8\n0x8FEAF1\t0x9BCE\n0x8FEAF2\t0x9BD0\n0x8FEAF3\t0x9BD7\n0x8FEAF4\t0x9BD8\n0x8FEAF5\t0x9BDD\n0x8FEAF6\t0x9BDF\n0x8FEAF7\t0x9BE5\n0x8FEAF8\t0x9BE7\n0x8FEAF9\t0x9BEA\n0x8FEAFA\t0x9BEB\n0x8FEAFB\t0x9BEF\n0x8FEAFC\t0x9BF3\n0x8FEAFD\t0x9BF7\n0x8FEAFE\t0x9BF8\n0x8FEBA1\t0x9BF9\n0x8FEBA2\t0x9BFA\n0x8FEBA3\t0x9BFD\n0x8FEBA4\t0x9BFF\n0x8FEBA5\t0x9C00\n0x8FEBA6\t0x9C02\n0x8FEBA7\t0x9C0B\n0x8FEBA8\t0x9C0F\n0x8FEBA9\t0x9C11\n0x8FEBAA\t0x9C16\n0x8FEBAB\t0x9C18\n0x8FEBAC\t0x9C19\n0x8FEBAD\t0x9C1A\n0x8FEBAE\t0x9C1C\n0x8FEBAF\t0x9C1E\n0x8FEBB0\t0x9C22\n0x8FEBB1\t0x9C23\n0x8FEBB2\t0x9C26\n0x8FEBB3\t0x9C27\n0x8FEBB4\t0x9C28\n0x8FEBB5\t0x9C29\n0x8FEBB6\t0x9C2A\n0x8FEBB7\t0x9C31\n0x8FEBB8\t0x9C35\n0x8FEBB9\t0x9C36\n0x8FEBBA\t0x9C37\n0x8FEBBB\t0x9C3D\n0x8FEBBC\t0x9C41\n0x8FEBBD\t0x9C43\n0x8FEBBE\t0x9C44\n0x8FEBBF\t0x9C45\n0x8FEBC0\t0x9C49\n0x8FEBC1\t0x9C4A\n0x8FEBC2\t0x9C4E\n0x8FEBC3\t0x9C4F\n0x8FEBC4\t0x9C50\n0x8FEBC5\t0x9C53\n0x8FEBC6\t0x9C54\n0x8FEBC7\t0x9C56\n0x8FEBC8\t0x9C58\n0x8FEBC9\t0x9C5B\n0x8FEBCA\t0x9C5D\n0x8FEBCB\t0x9C5E\n0x8FEBCC\t0x9C5F\n0x8FEBCD\t0x9C63\n0x8FEBCE\t0x9C69\n0x8FEBCF\t0x9C6A\n0x8FEBD0\t0x9C5C\n0x8FEBD1\t0x9C6B\n0x8FEBD2\t0x9C68\n0x8FEBD3\t0x9C6E\n0x8FEBD4\t0x9C70\n0x8FEBD5\t0x9C72\n0x8FEBD6\t0x9C75\n0x8FEBD7\t0x9C77\n0x8FEBD8\t0x9C7B\n0x8FEBD9\t0x9CE6\n0x8FEBDA\t0x9CF2\n0x8FEBDB\t0x9CF7\n0x8FEBDC\t0x9CF9\n0x8FEBDD\t0x9D0B\n0x8FEBDE\t0x9D02\n0x8FEBDF\t0x9D11\n0x8FEBE0\t0x9D17\n0x8FEBE1\t0x9D18\n0x8FEBE2\t0x9D1C\n0x8FEBE3\t0x9D1D\n0x8FEBE4\t0x9D1E\n0x8FEBE5\t0x9D2F\n0x8FEBE6\t0x9D30\n0x8FEBE7\t0x9D32\n0x8FEBE8\t0x9D33\n0x8FEBE9\t0x9D34\n0x8FEBEA\t0x9D3A\n0x8FEBEB\t0x9D3C\n0x8FEBEC\t0x9D45\n0x8FEBED\t0x9D3D\n0x8FEBEE\t0x9D42\n0x8FEBEF\t0x9D43\n0x8FEBF0\t0x9D47\n0x8FEBF1\t0x9D4A\n0x8FEBF2\t0x9D53\n0x8FEBF3\t0x9D54\n0x8FEBF4\t0x9D5F\n0x8FEBF5\t0x9D63\n0x8FEBF6\t0x9D62\n0x8FEBF7\t0x9D65\n0x8FEBF8\t0x9D69\n0x8FEBF9\t0x9D6A\n0x8FEBFA\t0x9D6B\n0x8FEBFB\t0x9D70\n0x8FEBFC\t0x9D76\n0x8FEBFD\t0x9D77\n0x8FEBFE\t0x9D7B\n0x8FECA1\t0x9D7C\n0x8FECA2\t0x9D7E\n0x8FECA3\t0x9D83\n0x8FECA4\t0x9D84\n0x8FECA5\t0x9D86\n0x8FECA6\t0x9D8A\n0x8FECA7\t0x9D8D\n0x8FECA8\t0x9D8E\n0x8FECA9\t0x9D92\n0x8FECAA\t0x9D93\n0x8FECAB\t0x9D95\n0x8FECAC\t0x9D96\n0x8FECAD\t0x9D97\n0x8FECAE\t0x9D98\n0x8FECAF\t0x9DA1\n0x8FECB0\t0x9DAA\n0x8FECB1\t0x9DAC\n0x8FECB2\t0x9DAE\n0x8FECB3\t0x9DB1\n0x8FECB4\t0x9DB5\n0x8FECB5\t0x9DB9\n0x8FECB6\t0x9DBC\n0x8FECB7\t0x9DBF\n0x8FECB8\t0x9DC3\n0x8FECB9\t0x9DC7\n0x8FECBA\t0x9DC9\n0x8FECBB\t0x9DCA\n0x8FECBC\t0x9DD4\n0x8FECBD\t0x9DD5\n0x8FECBE\t0x9DD6\n0x8FECBF\t0x9DD7\n0x8FECC0\t0x9DDA\n0x8FECC1\t0x9DDE\n0x8FECC2\t0x9DDF\n0x8FECC3\t0x9DE0\n0x8FECC4\t0x9DE5\n0x8FECC5\t0x9DE7\n0x8FECC6\t0x9DE9\n0x8FECC7\t0x9DEB\n0x8FECC8\t0x9DEE\n0x8FECC9\t0x9DF0\n0x8FECCA\t0x9DF3\n0x8FECCB\t0x9DF4\n0x8FECCC\t0x9DFE\n0x8FECCD\t0x9E0A\n0x8FECCE\t0x9E02\n0x8FECCF\t0x9E07\n0x8FECD0\t0x9E0E\n0x8FECD1\t0x9E10\n0x8FECD2\t0x9E11\n0x8FECD3\t0x9E12\n0x8FECD4\t0x9E15\n0x8FECD5\t0x9E16\n0x8FECD6\t0x9E19\n0x8FECD7\t0x9E1C\n0x8FECD8\t0x9E1D\n0x8FECD9\t0x9E7A\n0x8FECDA\t0x9E7B\n0x8FECDB\t0x9E7C\n0x8FECDC\t0x9E80\n0x8FECDD\t0x9E82\n0x8FECDE\t0x9E83\n0x8FECDF\t0x9E84\n0x8FECE0\t0x9E85\n0x8FECE1\t0x9E87\n0x8FECE2\t0x9E8E\n0x8FECE3\t0x9E8F\n0x8FECE4\t0x9E96\n0x8FECE5\t0x9E98\n0x8FECE6\t0x9E9B\n0x8FECE7\t0x9E9E\n0x8FECE8\t0x9EA4\n0x8FECE9\t0x9EA8\n0x8FECEA\t0x9EAC\n0x8FECEB\t0x9EAE\n0x8FECEC\t0x9EAF\n0x8FECED\t0x9EB0\n0x8FECEE\t0x9EB3\n0x8FECEF\t0x9EB4\n0x8FECF0\t0x9EB5\n0x8FECF1\t0x9EC6\n0x8FECF2\t0x9EC8\n0x8FECF3\t0x9ECB\n0x8FECF4\t0x9ED5\n0x8FECF5\t0x9EDF\n0x8FECF6\t0x9EE4\n0x8FECF7\t0x9EE7\n0x8FECF8\t0x9EEC\n0x8FECF9\t0x9EED\n0x8FECFA\t0x9EEE\n0x8FECFB\t0x9EF0\n0x8FECFC\t0x9EF1\n0x8FECFD\t0x9EF2\n0x8FECFE\t0x9EF5\n0x8FEDA1\t0x9EF8\n0x8FEDA2\t0x9EFF\n0x8FEDA3\t0x9F02\n0x8FEDA4\t0x9F03\n0x8FEDA5\t0x9F09\n0x8FEDA6\t0x9F0F\n0x8FEDA7\t0x9F10\n0x8FEDA8\t0x9F11\n0x8FEDA9\t0x9F12\n0x8FEDAA\t0x9F14\n0x8FEDAB\t0x9F16\n0x8FEDAC\t0x9F17\n0x8FEDAD\t0x9F19\n0x8FEDAE\t0x9F1A\n0x8FEDAF\t0x9F1B\n0x8FEDB0\t0x9F1F\n0x8FEDB1\t0x9F22\n0x8FEDB2\t0x9F26\n0x8FEDB3\t0x9F2A\n0x8FEDB4\t0x9F2B\n0x8FEDB5\t0x9F2F\n0x8FEDB6\t0x9F31\n0x8FEDB7\t0x9F32\n0x8FEDB8\t0x9F34\n0x8FEDB9\t0x9F37\n0x8FEDBA\t0x9F39\n0x8FEDBB\t0x9F3A\n0x8FEDBC\t0x9F3C\n0x8FEDBD\t0x9F3D\n0x8FEDBE\t0x9F3F\n0x8FEDBF\t0x9F41\n0x8FEDC0\t0x9F43\n0x8FEDC1\t0x9F44\n0x8FEDC2\t0x9F45\n0x8FEDC3\t0x9F46\n0x8FEDC4\t0x9F47\n0x8FEDC5\t0x9F53\n0x8FEDC6\t0x9F55\n0x8FEDC7\t0x9F56\n0x8FEDC8\t0x9F57\n0x8FEDC9\t0x9F58\n0x8FEDCA\t0x9F5A\n0x8FEDCB\t0x9F5D\n0x8FEDCC\t0x9F5E\n0x8FEDCD\t0x9F68\n0x8FEDCE\t0x9F69\n0x8FEDCF\t0x9F6D\n0x8FEDD0\t0x9F6E\n0x8FEDD1\t0x9F6F\n0x8FEDD2\t0x9F70\n0x8FEDD3\t0x9F71\n0x8FEDD4\t0x9F73\n0x8FEDD5\t0x9F75\n0x8FEDD6\t0x9F7A\n0x8FEDD7\t0x9F7D\n0x8FEDD8\t0x9F8F\n0x8FEDD9\t0x9F90\n0x8FEDDA\t0x9F91\n0x8FEDDB\t0x9F92\n0x8FEDDC\t0x9F94\n0x8FEDDD\t0x9F96\n0x8FEDDE\t0x9F97\n0x8FEDDF\t0x9F9E\n0x8FEDE0\t0x9FA1\n0x8FEDE1\t0x9FA2\n0x8FEDE2\t0x9FA3\n0x8FEDE3\t0x9FA5\n0x8FF5A1\t0xE3AC\n0x8FF5A2\t0xE3AD\n0x8FF5A3\t0xE3AE\n0x8FF5A4\t0xE3AF\n0x8FF5A5\t0xE3B0\n0x8FF5A6\t0xE3B1\n0x8FF5A7\t0xE3B2\n0x8FF5A8\t0xE3B3\n0x8FF5A9\t0xE3B4\n0x8FF5AA\t0xE3B5\n0x8FF5AB\t0xE3B6\n0x8FF5AC\t0xE3B7\n0x8FF5AD\t0xE3B8\n0x8FF5AE\t0xE3B9\n0x8FF5AF\t0xE3BA\n0x8FF5B0\t0xE3BB\n0x8FF5B1\t0xE3BC\n0x8FF5B2\t0xE3BD\n0x8FF5B3\t0xE3BE\n0x8FF5B4\t0xE3BF\n0x8FF5B5\t0xE3C0\n0x8FF5B6\t0xE3C1\n0x8FF5B7\t0xE3C2\n0x8FF5B8\t0xE3C3\n0x8FF5B9\t0xE3C4\n0x8FF5BA\t0xE3C5\n0x8FF5BB\t0xE3C6\n0x8FF5BC\t0xE3C7\n0x8FF5BD\t0xE3C8\n0x8FF5BE\t0xE3C9\n0x8FF5BF\t0xE3CA\n0x8FF5C0\t0xE3CB\n0x8FF5C1\t0xE3CC\n0x8FF5C2\t0xE3CD\n0x8FF5C3\t0xE3CE\n0x8FF5C4\t0xE3CF\n0x8FF5C5\t0xE3D0\n0x8FF5C6\t0xE3D1\n0x8FF5C7\t0xE3D2\n0x8FF5C8\t0xE3D3\n0x8FF5C9\t0xE3D4\n0x8FF5CA\t0xE3D5\n0x8FF5CB\t0xE3D6\n0x8FF5CC\t0xE3D7\n0x8FF5CD\t0xE3D8\n0x8FF5CE\t0xE3D9\n0x8FF5CF\t0xE3DA\n0x8FF5D0\t0xE3DB\n0x8FF5D1\t0xE3DC\n0x8FF5D2\t0xE3DD\n0x8FF5D3\t0xE3DE\n0x8FF5D4\t0xE3DF\n0x8FF5D5\t0xE3E0\n0x8FF5D6\t0xE3E1\n0x8FF5D7\t0xE3E2\n0x8FF5D8\t0xE3E3\n0x8FF5D9\t0xE3E4\n0x8FF5DA\t0xE3E5\n0x8FF5DB\t0xE3E6\n0x8FF5DC\t0xE3E7\n0x8FF5DD\t0xE3E8\n0x8FF5DE\t0xE3E9\n0x8FF5DF\t0xE3EA\n0x8FF5E0\t0xE3EB\n0x8FF5E1\t0xE3EC\n0x8FF5E2\t0xE3ED\n0x8FF5E3\t0xE3EE\n0x8FF5E4\t0xE3EF\n0x8FF5E5\t0xE3F0\n0x8FF5E6\t0xE3F1\n0x8FF5E7\t0xE3F2\n0x8FF5E8\t0xE3F3\n0x8FF5E9\t0xE3F4\n0x8FF5EA\t0xE3F5\n0x8FF5EB\t0xE3F6\n0x8FF5EC\t0xE3F7\n0x8FF5ED\t0xE3F8\n0x8FF5EE\t0xE3F9\n0x8FF5EF\t0xE3FA\n0x8FF5F0\t0xE3FB\n0x8FF5F1\t0xE3FC\n0x8FF5F2\t0xE3FD\n0x8FF5F3\t0xE3FE\n0x8FF5F4\t0xE3FF\n0x8FF5F5\t0xE400\n0x8FF5F6\t0xE401\n0x8FF5F7\t0xE402\n0x8FF5F8\t0xE403\n0x8FF5F9\t0xE404\n0x8FF5FA\t0xE405\n0x8FF5FB\t0xE406\n0x8FF5FC\t0xE407\n0x8FF5FD\t0xE408\n0x8FF5FE\t0xE409\n0x8FF6A1\t0xE40A\n0x8FF6A2\t0xE40B\n0x8FF6A3\t0xE40C\n0x8FF6A4\t0xE40D\n0x8FF6A5\t0xE40E\n0x8FF6A6\t0xE40F\n0x8FF6A7\t0xE410\n0x8FF6A8\t0xE411\n0x8FF6A9\t0xE412\n0x8FF6AA\t0xE413\n0x8FF6AB\t0xE414\n0x8FF6AC\t0xE415\n0x8FF6AD\t0xE416\n0x8FF6AE\t0xE417\n0x8FF6AF\t0xE418\n0x8FF6B0\t0xE419\n0x8FF6B1\t0xE41A\n0x8FF6B2\t0xE41B\n0x8FF6B3\t0xE41C\n0x8FF6B4\t0xE41D\n0x8FF6B5\t0xE41E\n0x8FF6B6\t0xE41F\n0x8FF6B7\t0xE420\n0x8FF6B8\t0xE421\n0x8FF6B9\t0xE422\n0x8FF6BA\t0xE423\n0x8FF6BB\t0xE424\n0x8FF6BC\t0xE425\n0x8FF6BD\t0xE426\n0x8FF6BE\t0xE427\n0x8FF6BF\t0xE428\n0x8FF6C0\t0xE429\n0x8FF6C1\t0xE42A\n0x8FF6C2\t0xE42B\n0x8FF6C3\t0xE42C\n0x8FF6C4\t0xE42D\n0x8FF6C5\t0xE42E\n0x8FF6C6\t0xE42F\n0x8FF6C7\t0xE430\n0x8FF6C8\t0xE431\n0x8FF6C9\t0xE432\n0x8FF6CA\t0xE433\n0x8FF6CB\t0xE434\n0x8FF6CC\t0xE435\n0x8FF6CD\t0xE436\n0x8FF6CE\t0xE437\n0x8FF6CF\t0xE438\n0x8FF6D0\t0xE439\n0x8FF6D1\t0xE43A\n0x8FF6D2\t0xE43B\n0x8FF6D3\t0xE43C\n0x8FF6D4\t0xE43D\n0x8FF6D5\t0xE43E\n0x8FF6D6\t0xE43F\n0x8FF6D7\t0xE440\n0x8FF6D8\t0xE441\n0x8FF6D9\t0xE442\n0x8FF6DA\t0xE443\n0x8FF6DB\t0xE444\n0x8FF6DC\t0xE445\n0x8FF6DD\t0xE446\n0x8FF6DE\t0xE447\n0x8FF6DF\t0xE448\n0x8FF6E0\t0xE449\n0x8FF6E1\t0xE44A\n0x8FF6E2\t0xE44B\n0x8FF6E3\t0xE44C\n0x8FF6E4\t0xE44D\n0x8FF6E5\t0xE44E\n0x8FF6E6\t0xE44F\n0x8FF6E7\t0xE450\n0x8FF6E8\t0xE451\n0x8FF6E9\t0xE452\n0x8FF6EA\t0xE453\n0x8FF6EB\t0xE454\n0x8FF6EC\t0xE455\n0x8FF6ED\t0xE456\n0x8FF6EE\t0xE457\n0x8FF6EF\t0xE458\n0x8FF6F0\t0xE459\n0x8FF6F1\t0xE45A\n0x8FF6F2\t0xE45B\n0x8FF6F3\t0xE45C\n0x8FF6F4\t0xE45D\n0x8FF6F5\t0xE45E\n0x8FF6F6\t0xE45F\n0x8FF6F7\t0xE460\n0x8FF6F8\t0xE461\n0x8FF6F9\t0xE462\n0x8FF6FA\t0xE463\n0x8FF6FB\t0xE464\n0x8FF6FC\t0xE465\n0x8FF6FD\t0xE466\n0x8FF6FE\t0xE467\n0x8FF7A1\t0xE468\n0x8FF7A2\t0xE469\n0x8FF7A3\t0xE46A\n0x8FF7A4\t0xE46B\n0x8FF7A5\t0xE46C\n0x8FF7A6\t0xE46D\n0x8FF7A7\t0xE46E\n0x8FF7A8\t0xE46F\n0x8FF7A9\t0xE470\n0x8FF7AA\t0xE471\n0x8FF7AB\t0xE472\n0x8FF7AC\t0xE473\n0x8FF7AD\t0xE474\n0x8FF7AE\t0xE475\n0x8FF7AF\t0xE476\n0x8FF7B0\t0xE477\n0x8FF7B1\t0xE478\n0x8FF7B2\t0xE479\n0x8FF7B3\t0xE47A\n0x8FF7B4\t0xE47B\n0x8FF7B5\t0xE47C\n0x8FF7B6\t0xE47D\n0x8FF7B7\t0xE47E\n0x8FF7B8\t0xE47F\n0x8FF7B9\t0xE480\n0x8FF7BA\t0xE481\n0x8FF7BB\t0xE482\n0x8FF7BC\t0xE483\n0x8FF7BD\t0xE484\n0x8FF7BE\t0xE485\n0x8FF7BF\t0xE486\n0x8FF7C0\t0xE487\n0x8FF7C1\t0xE488\n0x8FF7C2\t0xE489\n0x8FF7C3\t0xE48A\n0x8FF7C4\t0xE48B\n0x8FF7C5\t0xE48C\n0x8FF7C6\t0xE48D\n0x8FF7C7\t0xE48E\n0x8FF7C8\t0xE48F\n0x8FF7C9\t0xE490\n0x8FF7CA\t0xE491\n0x8FF7CB\t0xE492\n0x8FF7CC\t0xE493\n0x8FF7CD\t0xE494\n0x8FF7CE\t0xE495\n0x8FF7CF\t0xE496\n0x8FF7D0\t0xE497\n0x8FF7D1\t0xE498\n0x8FF7D2\t0xE499\n0x8FF7D3\t0xE49A\n0x8FF7D4\t0xE49B\n0x8FF7D5\t0xE49C\n0x8FF7D6\t0xE49D\n0x8FF7D7\t0xE49E\n0x8FF7D8\t0xE49F\n0x8FF7D9\t0xE4A0\n0x8FF7DA\t0xE4A1\n0x8FF7DB\t0xE4A2\n0x8FF7DC\t0xE4A3\n0x8FF7DD\t0xE4A4\n0x8FF7DE\t0xE4A5\n0x8FF7DF\t0xE4A6\n0x8FF7E0\t0xE4A7\n0x8FF7E1\t0xE4A8\n0x8FF7E2\t0xE4A9\n0x8FF7E3\t0xE4AA\n0x8FF7E4\t0xE4AB\n0x8FF7E5\t0xE4AC\n0x8FF7E6\t0xE4AD\n0x8FF7E7\t0xE4AE\n0x8FF7E8\t0xE4AF\n0x8FF7E9\t0xE4B0\n0x8FF7EA\t0xE4B1\n0x8FF7EB\t0xE4B2\n0x8FF7EC\t0xE4B3\n0x8FF7ED\t0xE4B4\n0x8FF7EE\t0xE4B5\n0x8FF7EF\t0xE4B6\n0x8FF7F0\t0xE4B7\n0x8FF7F1\t0xE4B8\n0x8FF7F2\t0xE4B9\n0x8FF7F3\t0xE4BA\n0x8FF7F4\t0xE4BB\n0x8FF7F5\t0xE4BC\n0x8FF7F6\t0xE4BD\n0x8FF7F7\t0xE4BE\n0x8FF7F8\t0xE4BF\n0x8FF7F9\t0xE4C0\n0x8FF7FA\t0xE4C1\n0x8FF7FB\t0xE4C2\n0x8FF7FC\t0xE4C3\n0x8FF7FD\t0xE4C4\n0x8FF7FE\t0xE4C5\n0x8FF8A1\t0xE4C6\n0x8FF8A2\t0xE4C7\n0x8FF8A3\t0xE4C8\n0x8FF8A4\t0xE4C9\n0x8FF8A5\t0xE4CA\n0x8FF8A6\t0xE4CB\n0x8FF8A7\t0xE4CC\n0x8FF8A8\t0xE4CD\n0x8FF8A9\t0xE4CE\n0x8FF8AA\t0xE4CF\n0x8FF8AB\t0xE4D0\n0x8FF8AC\t0xE4D1\n0x8FF8AD\t0xE4D2\n0x8FF8AE\t0xE4D3\n0x8FF8AF\t0xE4D4\n0x8FF8B0\t0xE4D5\n0x8FF8B1\t0xE4D6\n0x8FF8B2\t0xE4D7\n0x8FF8B3\t0xE4D8\n0x8FF8B4\t0xE4D9\n0x8FF8B5\t0xE4DA\n0x8FF8B6\t0xE4DB\n0x8FF8B7\t0xE4DC\n0x8FF8B8\t0xE4DD\n0x8FF8B9\t0xE4DE\n0x8FF8BA\t0xE4DF\n0x8FF8BB\t0xE4E0\n0x8FF8BC\t0xE4E1\n0x8FF8BD\t0xE4E2\n0x8FF8BE\t0xE4E3\n0x8FF8BF\t0xE4E4\n0x8FF8C0\t0xE4E5\n0x8FF8C1\t0xE4E6\n0x8FF8C2\t0xE4E7\n0x8FF8C3\t0xE4E8\n0x8FF8C4\t0xE4E9\n0x8FF8C5\t0xE4EA\n0x8FF8C6\t0xE4EB\n0x8FF8C7\t0xE4EC\n0x8FF8C8\t0xE4ED\n0x8FF8C9\t0xE4EE\n0x8FF8CA\t0xE4EF\n0x8FF8CB\t0xE4F0\n0x8FF8CC\t0xE4F1\n0x8FF8CD\t0xE4F2\n0x8FF8CE\t0xE4F3\n0x8FF8CF\t0xE4F4\n0x8FF8D0\t0xE4F5\n0x8FF8D1\t0xE4F6\n0x8FF8D2\t0xE4F7\n0x8FF8D3\t0xE4F8\n0x8FF8D4\t0xE4F9\n0x8FF8D5\t0xE4FA\n0x8FF8D6\t0xE4FB\n0x8FF8D7\t0xE4FC\n0x8FF8D8\t0xE4FD\n0x8FF8D9\t0xE4FE\n0x8FF8DA\t0xE4FF\n0x8FF8DB\t0xE500\n0x8FF8DC\t0xE501\n0x8FF8DD\t0xE502\n0x8FF8DE\t0xE503\n0x8FF8DF\t0xE504\n0x8FF8E0\t0xE505\n0x8FF8E1\t0xE506\n0x8FF8E2\t0xE507\n0x8FF8E3\t0xE508\n0x8FF8E4\t0xE509\n0x8FF8E5\t0xE50A\n0x8FF8E6\t0xE50B\n0x8FF8E7\t0xE50C\n0x8FF8E8\t0xE50D\n0x8FF8E9\t0xE50E\n0x8FF8EA\t0xE50F\n0x8FF8EB\t0xE510\n0x8FF8EC\t0xE511\n0x8FF8ED\t0xE512\n0x8FF8EE\t0xE513\n0x8FF8EF\t0xE514\n0x8FF8F0\t0xE515\n0x8FF8F1\t0xE516\n0x8FF8F2\t0xE517\n0x8FF8F3\t0xE518\n0x8FF8F4\t0xE519\n0x8FF8F5\t0xE51A\n0x8FF8F6\t0xE51B\n0x8FF8F7\t0xE51C\n0x8FF8F8\t0xE51D\n0x8FF8F9\t0xE51E\n0x8FF8FA\t0xE51F\n0x8FF8FB\t0xE520\n0x8FF8FC\t0xE521\n0x8FF8FD\t0xE522\n0x8FF8FE\t0xE523\n0x8FF9A1\t0xE524\n0x8FF9A2\t0xE525\n0x8FF9A3\t0xE526\n0x8FF9A4\t0xE527\n0x8FF9A5\t0xE528\n0x8FF9A6\t0xE529\n0x8FF9A7\t0xE52A\n0x8FF9A8\t0xE52B\n0x8FF9A9\t0xE52C\n0x8FF9AA\t0xE52D\n0x8FF9AB\t0xE52E\n0x8FF9AC\t0xE52F\n0x8FF9AD\t0xE530\n0x8FF9AE\t0xE531\n0x8FF9AF\t0xE532\n0x8FF9B0\t0xE533\n0x8FF9B1\t0xE534\n0x8FF9B2\t0xE535\n0x8FF9B3\t0xE536\n0x8FF9B4\t0xE537\n0x8FF9B5\t0xE538\n0x8FF9B6\t0xE539\n0x8FF9B7\t0xE53A\n0x8FF9B8\t0xE53B\n0x8FF9B9\t0xE53C\n0x8FF9BA\t0xE53D\n0x8FF9BB\t0xE53E\n0x8FF9BC\t0xE53F\n0x8FF9BD\t0xE540\n0x8FF9BE\t0xE541\n0x8FF9BF\t0xE542\n0x8FF9C0\t0xE543\n0x8FF9C1\t0xE544\n0x8FF9C2\t0xE545\n0x8FF9C3\t0xE546\n0x8FF9C4\t0xE547\n0x8FF9C5\t0xE548\n0x8FF9C6\t0xE549\n0x8FF9C7\t0xE54A\n0x8FF9C8\t0xE54B\n0x8FF9C9\t0xE54C\n0x8FF9CA\t0xE54D\n0x8FF9CB\t0xE54E\n0x8FF9CC\t0xE54F\n0x8FF9CD\t0xE550\n0x8FF9CE\t0xE551\n0x8FF9CF\t0xE552\n0x8FF9D0\t0xE553\n0x8FF9D1\t0xE554\n0x8FF9D2\t0xE555\n0x8FF9D3\t0xE556\n0x8FF9D4\t0xE557\n0x8FF9D5\t0xE558\n0x8FF9D6\t0xE559\n0x8FF9D7\t0xE55A\n0x8FF9D8\t0xE55B\n0x8FF9D9\t0xE55C\n0x8FF9DA\t0xE55D\n0x8FF9DB\t0xE55E\n0x8FF9DC\t0xE55F\n0x8FF9DD\t0xE560\n0x8FF9DE\t0xE561\n0x8FF9DF\t0xE562\n0x8FF9E0\t0xE563\n0x8FF9E1\t0xE564\n0x8FF9E2\t0xE565\n0x8FF9E3\t0xE566\n0x8FF9E4\t0xE567\n0x8FF9E5\t0xE568\n0x8FF9E6\t0xE569\n0x8FF9E7\t0xE56A\n0x8FF9E8\t0xE56B\n0x8FF9E9\t0xE56C\n0x8FF9EA\t0xE56D\n0x8FF9EB\t0xE56E\n0x8FF9EC\t0xE56F\n0x8FF9ED\t0xE570\n0x8FF9EE\t0xE571\n0x8FF9EF\t0xE572\n0x8FF9F0\t0xE573\n0x8FF9F1\t0xE574\n0x8FF9F2\t0xE575\n0x8FF9F3\t0xE576\n0x8FF9F4\t0xE577\n0x8FF9F5\t0xE578\n0x8FF9F6\t0xE579\n0x8FF9F7\t0xE57A\n0x8FF9F8\t0xE57B\n0x8FF9F9\t0xE57C\n0x8FF9FA\t0xE57D\n0x8FF9FB\t0xE57E\n0x8FF9FC\t0xE57F\n0x8FF9FD\t0xE580\n0x8FF9FE\t0xE581\n0x8FFAA1\t0xE582\n0x8FFAA2\t0xE583\n0x8FFAA3\t0xE584\n0x8FFAA4\t0xE585\n0x8FFAA5\t0xE586\n0x8FFAA6\t0xE587\n0x8FFAA7\t0xE588\n0x8FFAA8\t0xE589\n0x8FFAA9\t0xE58A\n0x8FFAAA\t0xE58B\n0x8FFAAB\t0xE58C\n0x8FFAAC\t0xE58D\n0x8FFAAD\t0xE58E\n0x8FFAAE\t0xE58F\n0x8FFAAF\t0xE590\n0x8FFAB0\t0xE591\n0x8FFAB1\t0xE592\n0x8FFAB2\t0xE593\n0x8FFAB3\t0xE594\n0x8FFAB4\t0xE595\n0x8FFAB5\t0xE596\n0x8FFAB6\t0xE597\n0x8FFAB7\t0xE598\n0x8FFAB8\t0xE599\n0x8FFAB9\t0xE59A\n0x8FFABA\t0xE59B\n0x8FFABB\t0xE59C\n0x8FFABC\t0xE59D\n0x8FFABD\t0xE59E\n0x8FFABE\t0xE59F\n0x8FFABF\t0xE5A0\n0x8FFAC0\t0xE5A1\n0x8FFAC1\t0xE5A2\n0x8FFAC2\t0xE5A3\n0x8FFAC3\t0xE5A4\n0x8FFAC4\t0xE5A5\n0x8FFAC5\t0xE5A6\n0x8FFAC6\t0xE5A7\n0x8FFAC7\t0xE5A8\n0x8FFAC8\t0xE5A9\n0x8FFAC9\t0xE5AA\n0x8FFACA\t0xE5AB\n0x8FFACB\t0xE5AC\n0x8FFACC\t0xE5AD\n0x8FFACD\t0xE5AE\n0x8FFACE\t0xE5AF\n0x8FFACF\t0xE5B0\n0x8FFAD0\t0xE5B1\n0x8FFAD1\t0xE5B2\n0x8FFAD2\t0xE5B3\n0x8FFAD3\t0xE5B4\n0x8FFAD4\t0xE5B5\n0x8FFAD5\t0xE5B6\n0x8FFAD6\t0xE5B7\n0x8FFAD7\t0xE5B8\n0x8FFAD8\t0xE5B9\n0x8FFAD9\t0xE5BA\n0x8FFADA\t0xE5BB\n0x8FFADB\t0xE5BC\n0x8FFADC\t0xE5BD\n0x8FFADD\t0xE5BE\n0x8FFADE\t0xE5BF\n0x8FFADF\t0xE5C0\n0x8FFAE0\t0xE5C1\n0x8FFAE1\t0xE5C2\n0x8FFAE2\t0xE5C3\n0x8FFAE3\t0xE5C4\n0x8FFAE4\t0xE5C5\n0x8FFAE5\t0xE5C6\n0x8FFAE6\t0xE5C7\n0x8FFAE7\t0xE5C8\n0x8FFAE8\t0xE5C9\n0x8FFAE9\t0xE5CA\n0x8FFAEA\t0xE5CB\n0x8FFAEB\t0xE5CC\n0x8FFAEC\t0xE5CD\n0x8FFAED\t0xE5CE\n0x8FFAEE\t0xE5CF\n0x8FFAEF\t0xE5D0\n0x8FFAF0\t0xE5D1\n0x8FFAF1\t0xE5D2\n0x8FFAF2\t0xE5D3\n0x8FFAF3\t0xE5D4\n0x8FFAF4\t0xE5D5\n0x8FFAF5\t0xE5D6\n0x8FFAF6\t0xE5D7\n0x8FFAF7\t0xE5D8\n0x8FFAF8\t0xE5D9\n0x8FFAF9\t0xE5DA\n0x8FFAFA\t0xE5DB\n0x8FFAFB\t0xE5DC\n0x8FFAFC\t0xE5DD\n0x8FFAFD\t0xE5DE\n0x8FFAFE\t0xE5DF\n0x8FFBA1\t0xE5E0\n0x8FFBA2\t0xE5E1\n0x8FFBA3\t0xE5E2\n0x8FFBA4\t0xE5E3\n0x8FFBA5\t0xE5E4\n0x8FFBA6\t0xE5E5\n0x8FFBA7\t0xE5E6\n0x8FFBA8\t0xE5E7\n0x8FFBA9\t0xE5E8\n0x8FFBAA\t0xE5E9\n0x8FFBAB\t0xE5EA\n0x8FFBAC\t0xE5EB\n0x8FFBAD\t0xE5EC\n0x8FFBAE\t0xE5ED\n0x8FFBAF\t0xE5EE\n0x8FFBB0\t0xE5EF\n0x8FFBB1\t0xE5F0\n0x8FFBB2\t0xE5F1\n0x8FFBB3\t0xE5F2\n0x8FFBB4\t0xE5F3\n0x8FFBB5\t0xE5F4\n0x8FFBB6\t0xE5F5\n0x8FFBB7\t0xE5F6\n0x8FFBB8\t0xE5F7\n0x8FFBB9\t0xE5F8\n0x8FFBBA\t0xE5F9\n0x8FFBBB\t0xE5FA\n0x8FFBBC\t0xE5FB\n0x8FFBBD\t0xE5FC\n0x8FFBBE\t0xE5FD\n0x8FFBBF\t0xE5FE\n0x8FFBC0\t0xE5FF\n0x8FFBC1\t0xE600\n0x8FFBC2\t0xE601\n0x8FFBC3\t0xE602\n0x8FFBC4\t0xE603\n0x8FFBC5\t0xE604\n0x8FFBC6\t0xE605\n0x8FFBC7\t0xE606\n0x8FFBC8\t0xE607\n0x8FFBC9\t0xE608\n0x8FFBCA\t0xE609\n0x8FFBCB\t0xE60A\n0x8FFBCC\t0xE60B\n0x8FFBCD\t0xE60C\n0x8FFBCE\t0xE60D\n0x8FFBCF\t0xE60E\n0x8FFBD0\t0xE60F\n0x8FFBD1\t0xE610\n0x8FFBD2\t0xE611\n0x8FFBD3\t0xE612\n0x8FFBD4\t0xE613\n0x8FFBD5\t0xE614\n0x8FFBD6\t0xE615\n0x8FFBD7\t0xE616\n0x8FFBD8\t0xE617\n0x8FFBD9\t0xE618\n0x8FFBDA\t0xE619\n0x8FFBDB\t0xE61A\n0x8FFBDC\t0xE61B\n0x8FFBDD\t0xE61C\n0x8FFBDE\t0xE61D\n0x8FFBDF\t0xE61E\n0x8FFBE0\t0xE61F\n0x8FFBE1\t0xE620\n0x8FFBE2\t0xE621\n0x8FFBE3\t0xE622\n0x8FFBE4\t0xE623\n0x8FFBE5\t0xE624\n0x8FFBE6\t0xE625\n0x8FFBE7\t0xE626\n0x8FFBE8\t0xE627\n0x8FFBE9\t0xE628\n0x8FFBEA\t0xE629\n0x8FFBEB\t0xE62A\n0x8FFBEC\t0xE62B\n0x8FFBED\t0xE62C\n0x8FFBEE\t0xE62D\n0x8FFBEF\t0xE62E\n0x8FFBF0\t0xE62F\n0x8FFBF1\t0xE630\n0x8FFBF2\t0xE631\n0x8FFBF3\t0xE632\n0x8FFBF4\t0xE633\n0x8FFBF5\t0xE634\n0x8FFBF6\t0xE635\n0x8FFBF7\t0xE636\n0x8FFBF8\t0xE637\n0x8FFBF9\t0xE638\n0x8FFBFA\t0xE639\n0x8FFBFB\t0xE63A\n0x8FFBFC\t0xE63B\n0x8FFBFD\t0xE63C\n0x8FFBFE\t0xE63D\n0x8FFCA1\t0xE63E\n0x8FFCA2\t0xE63F\n0x8FFCA3\t0xE640\n0x8FFCA4\t0xE641\n0x8FFCA5\t0xE642\n0x8FFCA6\t0xE643\n0x8FFCA7\t0xE644\n0x8FFCA8\t0xE645\n0x8FFCA9\t0xE646\n0x8FFCAA\t0xE647\n0x8FFCAB\t0xE648\n0x8FFCAC\t0xE649\n0x8FFCAD\t0xE64A\n0x8FFCAE\t0xE64B\n0x8FFCAF\t0xE64C\n0x8FFCB0\t0xE64D\n0x8FFCB1\t0xE64E\n0x8FFCB2\t0xE64F\n0x8FFCB3\t0xE650\n0x8FFCB4\t0xE651\n0x8FFCB5\t0xE652\n0x8FFCB6\t0xE653\n0x8FFCB7\t0xE654\n0x8FFCB8\t0xE655\n0x8FFCB9\t0xE656\n0x8FFCBA\t0xE657\n0x8FFCBB\t0xE658\n0x8FFCBC\t0xE659\n0x8FFCBD\t0xE65A\n0x8FFCBE\t0xE65B\n0x8FFCBF\t0xE65C\n0x8FFCC0\t0xE65D\n0x8FFCC1\t0xE65E\n0x8FFCC2\t0xE65F\n0x8FFCC3\t0xE660\n0x8FFCC4\t0xE661\n0x8FFCC5\t0xE662\n0x8FFCC6\t0xE663\n0x8FFCC7\t0xE664\n0x8FFCC8\t0xE665\n0x8FFCC9\t0xE666\n0x8FFCCA\t0xE667\n0x8FFCCB\t0xE668\n0x8FFCCC\t0xE669\n0x8FFCCD\t0xE66A\n0x8FFCCE\t0xE66B\n0x8FFCCF\t0xE66C\n0x8FFCD0\t0xE66D\n0x8FFCD1\t0xE66E\n0x8FFCD2\t0xE66F\n0x8FFCD3\t0xE670\n0x8FFCD4\t0xE671\n0x8FFCD5\t0xE672\n0x8FFCD6\t0xE673\n0x8FFCD7\t0xE674\n0x8FFCD8\t0xE675\n0x8FFCD9\t0xE676\n0x8FFCDA\t0xE677\n0x8FFCDB\t0xE678\n0x8FFCDC\t0xE679\n0x8FFCDD\t0xE67A\n0x8FFCDE\t0xE67B\n0x8FFCDF\t0xE67C\n0x8FFCE0\t0xE67D\n0x8FFCE1\t0xE67E\n0x8FFCE2\t0xE67F\n0x8FFCE3\t0xE680\n0x8FFCE4\t0xE681\n0x8FFCE5\t0xE682\n0x8FFCE6\t0xE683\n0x8FFCE7\t0xE684\n0x8FFCE8\t0xE685\n0x8FFCE9\t0xE686\n0x8FFCEA\t0xE687\n0x8FFCEB\t0xE688\n0x8FFCEC\t0xE689\n0x8FFCED\t0xE68A\n0x8FFCEE\t0xE68B\n0x8FFCEF\t0xE68C\n0x8FFCF0\t0xE68D\n0x8FFCF1\t0xE68E\n0x8FFCF2\t0xE68F\n0x8FFCF3\t0xE690\n0x8FFCF4\t0xE691\n0x8FFCF5\t0xE692\n0x8FFCF6\t0xE693\n0x8FFCF7\t0xE694\n0x8FFCF8\t0xE695\n0x8FFCF9\t0xE696\n0x8FFCFA\t0xE697\n0x8FFCFB\t0xE698\n0x8FFCFC\t0xE699\n0x8FFCFD\t0xE69A\n0x8FFCFE\t0xE69B\n0x8FFDA1\t0xE69C\n0x8FFDA2\t0xE69D\n0x8FFDA3\t0xE69E\n0x8FFDA4\t0xE69F\n0x8FFDA5\t0xE6A0\n0x8FFDA6\t0xE6A1\n0x8FFDA7\t0xE6A2\n0x8FFDA8\t0xE6A3\n0x8FFDA9\t0xE6A4\n0x8FFDAA\t0xE6A5\n0x8FFDAB\t0xE6A6\n0x8FFDAC\t0xE6A7\n0x8FFDAD\t0xE6A8\n0x8FFDAE\t0xE6A9\n0x8FFDAF\t0xE6AA\n0x8FFDB0\t0xE6AB\n0x8FFDB1\t0xE6AC\n0x8FFDB2\t0xE6AD\n0x8FFDB3\t0xE6AE\n0x8FFDB4\t0xE6AF\n0x8FFDB5\t0xE6B0\n0x8FFDB6\t0xE6B1\n0x8FFDB7\t0xE6B2\n0x8FFDB8\t0xE6B3\n0x8FFDB9\t0xE6B4\n0x8FFDBA\t0xE6B5\n0x8FFDBB\t0xE6B6\n0x8FFDBC\t0xE6B7\n0x8FFDBD\t0xE6B8\n0x8FFDBE\t0xE6B9\n0x8FFDBF\t0xE6BA\n0x8FFDC0\t0xE6BB\n0x8FFDC1\t0xE6BC\n0x8FFDC2\t0xE6BD\n0x8FFDC3\t0xE6BE\n0x8FFDC4\t0xE6BF\n0x8FFDC5\t0xE6C0\n0x8FFDC6\t0xE6C1\n0x8FFDC7\t0xE6C2\n0x8FFDC8\t0xE6C3\n0x8FFDC9\t0xE6C4\n0x8FFDCA\t0xE6C5\n0x8FFDCB\t0xE6C6\n0x8FFDCC\t0xE6C7\n0x8FFDCD\t0xE6C8\n0x8FFDCE\t0xE6C9\n0x8FFDCF\t0xE6CA\n0x8FFDD0\t0xE6CB\n0x8FFDD1\t0xE6CC\n0x8FFDD2\t0xE6CD\n0x8FFDD3\t0xE6CE\n0x8FFDD4\t0xE6CF\n0x8FFDD5\t0xE6D0\n0x8FFDD6\t0xE6D1\n0x8FFDD7\t0xE6D2\n0x8FFDD8\t0xE6D3\n0x8FFDD9\t0xE6D4\n0x8FFDDA\t0xE6D5\n0x8FFDDB\t0xE6D6\n0x8FFDDC\t0xE6D7\n0x8FFDDD\t0xE6D8\n0x8FFDDE\t0xE6D9\n0x8FFDDF\t0xE6DA\n0x8FFDE0\t0xE6DB\n0x8FFDE1\t0xE6DC\n0x8FFDE2\t0xE6DD\n0x8FFDE3\t0xE6DE\n0x8FFDE4\t0xE6DF\n0x8FFDE5\t0xE6E0\n0x8FFDE6\t0xE6E1\n0x8FFDE7\t0xE6E2\n0x8FFDE8\t0xE6E3\n0x8FFDE9\t0xE6E4\n0x8FFDEA\t0xE6E5\n0x8FFDEB\t0xE6E6\n0x8FFDEC\t0xE6E7\n0x8FFDED\t0xE6E8\n0x8FFDEE\t0xE6E9\n0x8FFDEF\t0xE6EA\n0x8FFDF0\t0xE6EB\n0x8FFDF1\t0xE6EC\n0x8FFDF2\t0xE6ED\n0x8FFDF3\t0xE6EE\n0x8FFDF4\t0xE6EF\n0x8FFDF5\t0xE6F0\n0x8FFDF6\t0xE6F1\n0x8FFDF7\t0xE6F2\n0x8FFDF8\t0xE6F3\n0x8FFDF9\t0xE6F4\n0x8FFDFA\t0xE6F5\n0x8FFDFB\t0xE6F6\n0x8FFDFC\t0xE6F7\n0x8FFDFD\t0xE6F8\n0x8FFDFE\t0xE6F9\n0x8FFEA1\t0xE6FA\n0x8FFEA2\t0xE6FB\n0x8FFEA3\t0xE6FC\n0x8FFEA4\t0xE6FD\n0x8FFEA5\t0xE6FE\n0x8FFEA6\t0xE6FF\n0x8FFEA7\t0xE700\n0x8FFEA8\t0xE701\n0x8FFEA9\t0xE702\n0x8FFEAA\t0xE703\n0x8FFEAB\t0xE704\n0x8FFEAC\t0xE705\n0x8FFEAD\t0xE706\n0x8FFEAE\t0xE707\n0x8FFEAF\t0xE708\n0x8FFEB0\t0xE709\n0x8FFEB1\t0xE70A\n0x8FFEB2\t0xE70B\n0x8FFEB3\t0xE70C\n0x8FFEB4\t0xE70D\n0x8FFEB5\t0xE70E\n0x8FFEB6\t0xE70F\n0x8FFEB7\t0xE710\n0x8FFEB8\t0xE711\n0x8FFEB9\t0xE712\n0x8FFEBA\t0xE713\n0x8FFEBB\t0xE714\n0x8FFEBC\t0xE715\n0x8FFEBD\t0xE716\n0x8FFEBE\t0xE717\n0x8FFEBF\t0xE718\n0x8FFEC0\t0xE719\n0x8FFEC1\t0xE71A\n0x8FFEC2\t0xE71B\n0x8FFEC3\t0xE71C\n0x8FFEC4\t0xE71D\n0x8FFEC5\t0xE71E\n0x8FFEC6\t0xE71F\n0x8FFEC7\t0xE720\n0x8FFEC8\t0xE721\n0x8FFEC9\t0xE722\n0x8FFECA\t0xE723\n0x8FFECB\t0xE724\n0x8FFECC\t0xE725\n0x8FFECD\t0xE726\n0x8FFECE\t0xE727\n0x8FFECF\t0xE728\n0x8FFED0\t0xE729\n0x8FFED1\t0xE72A\n0x8FFED2\t0xE72B\n0x8FFED3\t0xE72C\n0x8FFED4\t0xE72D\n0x8FFED5\t0xE72E\n0x8FFED6\t0xE72F\n0x8FFED7\t0xE730\n0x8FFED8\t0xE731\n0x8FFED9\t0xE732\n0x8FFEDA\t0xE733\n0x8FFEDB\t0xE734\n0x8FFEDC\t0xE735\n0x8FFEDD\t0xE736\n0x8FFEDE\t0xE737\n0x8FFEDF\t0xE738\n0x8FFEE0\t0xE739\n0x8FFEE1\t0xE73A\n0x8FFEE2\t0xE73B\n0x8FFEE3\t0xE73C\n0x8FFEE4\t0xE73D\n0x8FFEE5\t0xE73E\n0x8FFEE6\t0xE73F\n0x8FFEE7\t0xE740\n0x8FFEE8\t0xE741\n0x8FFEE9\t0xE742\n0x8FFEEA\t0xE743\n0x8FFEEB\t0xE744\n0x8FFEEC\t0xE745\n0x8FFEED\t0xE746\n0x8FFEEE\t0xE747\n0x8FFEEF\t0xE748\n0x8FFEF0\t0xE749\n0x8FFEF1\t0xE74A\n0x8FFEF2\t0xE74B\n0x8FFEF3\t0xE74C\n0x8FFEF4\t0xE74D\n0x8FFEF5\t0xE74E\n0x8FFEF6\t0xE74F\n0x8FFEF7\t0xE750\n0x8FFEF8\t0xE751\n0x8FFEF9\t0xE752\n0x8FFEFA\t0xE753\n0x8FFEFB\t0xE754\n0x8FFEFC\t0xE755\n0x8FFEFD\t0xE756\n0x8FFEFE\t0xE757\n0xA1A1\t0x3000\n0xA1A2\t0x3001\n0xA1A3\t0x3002\n0xA1A4\t0xFF0C\n0xA1A5\t0xFF0E\n0xA1A6\t0x30FB\n0xA1A7\t0xFF1A\n0xA1A8\t0xFF1B\n0xA1A9\t0xFF1F\n0xA1AA\t0xFF01\n0xA1AB\t0x309B\n0xA1AC\t0x309C\n0xA1AD\t0x00B4\n0xA1AE\t0xFF40\n0xA1AF\t0x00A8\n0xA1B0\t0xFF3E\n0xA1B1\t0xFFE3\n0xA1B2\t0xFF3F\n0xA1B3\t0x30FD\n0xA1B4\t0x30FE\n0xA1B5\t0x309D\n0xA1B6\t0x309E\n0xA1B7\t0x3003\n0xA1B8\t0x4EDD\n0xA1B9\t0x3005\n0xA1BA\t0x3006\n0xA1BB\t0x3007\n0xA1BC\t0x30FC\n0xA1BD\t0x2015\n0xA1BE\t0x2010\n0xA1BF\t0xFF0F\n0xA1C0\t0xFF3C\n0xA1C1\t0x301C\n0xA1C2\t0x2016\n0xA1C3\t0xFF5C\n0xA1C4\t0x2026\n0xA1C5\t0x2025\n0xA1C6\t0x2018\n0xA1C7\t0x2019\n0xA1C8\t0x201C\n0xA1C9\t0x201D\n0xA1CA\t0xFF08\n0xA1CB\t0xFF09\n0xA1CC\t0x3014\n0xA1CD\t0x3015\n0xA1CE\t0xFF3B\n0xA1CF\t0xFF3D\n0xA1D0\t0xFF5B\n0xA1D1\t0xFF5D\n0xA1D2\t0x3008\n0xA1D3\t0x3009\n0xA1D4\t0x300A\n0xA1D5\t0x300B\n0xA1D6\t0x300C\n0xA1D7\t0x300D\n0xA1D8\t0x300E\n0xA1D9\t0x300F\n0xA1DA\t0x3010\n0xA1DB\t0x3011\n0xA1DC\t0xFF0B\n0xA1DD\t0x2212\n0xA1DE\t0x00B1\n0xA1DF\t0x00D7\n0xA1E0\t0x00F7\n0xA1E1\t0xFF1D\n0xA1E2\t0x2260\n0xA1E3\t0xFF1C\n0xA1E4\t0xFF1E\n0xA1E5\t0x2266\n0xA1E6\t0x2267\n0xA1E7\t0x221E\n0xA1E8\t0x2234\n0xA1E9\t0x2642\n0xA1EA\t0x2640\n0xA1EB\t0x00B0\n0xA1EC\t0x2032\n0xA1ED\t0x2033\n0xA1EE\t0x2103\n0xA1EF\t0xFFE5\n0xA1F0\t0xFF04\n0xA1F1\t0x00A2\n0xA1F2\t0x00A3\n0xA1F3\t0xFF05\n0xA1F4\t0xFF03\n0xA1F5\t0xFF06\n0xA1F6\t0xFF0A\n0xA1F7\t0xFF20\n0xA1F8\t0x00A7\n0xA1F9\t0x2606\n0xA1FA\t0x2605\n0xA1FB\t0x25CB\n0xA1FC\t0x25CF\n0xA1FD\t0x25CE\n0xA1FE\t0x25C7\n0xA2A1\t0x25C6\n0xA2A2\t0x25A1\n0xA2A3\t0x25A0\n0xA2A4\t0x25B3\n0xA2A5\t0x25B2\n0xA2A6\t0x25BD\n0xA2A7\t0x25BC\n0xA2A8\t0x203B\n0xA2A9\t0x3012\n0xA2AA\t0x2192\n0xA2AB\t0x2190\n0xA2AC\t0x2191\n0xA2AD\t0x2193\n0xA2AE\t0x3013\n0xA2BA\t0x2208\n0xA2BB\t0x220B\n0xA2BC\t0x2286\n0xA2BD\t0x2287\n0xA2BE\t0x2282\n0xA2BF\t0x2283\n0xA2C0\t0x222A\n0xA2C1\t0x2229\n0xA2CA\t0x2227\n0xA2CB\t0x2228\n0xA2CC\t0x00AC\n0xA2CD\t0x21D2\n0xA2CE\t0x21D4\n0xA2CF\t0x2200\n0xA2D0\t0x2203\n0xA2DC\t0x2220\n0xA2DD\t0x22A5\n0xA2DE\t0x2312\n0xA2DF\t0x2202\n0xA2E0\t0x2207\n0xA2E1\t0x2261\n0xA2E2\t0x2252\n0xA2E3\t0x226A\n0xA2E4\t0x226B\n0xA2E5\t0x221A\n0xA2E6\t0x223D\n0xA2E7\t0x221D\n0xA2E8\t0x2235\n0xA2E9\t0x222B\n0xA2EA\t0x222C\n0xA2F2\t0x212B\n0xA2F3\t0x2030\n0xA2F4\t0x266F\n0xA2F5\t0x266D\n0xA2F6\t0x266A\n0xA2F7\t0x2020\n0xA2F8\t0x2021\n0xA2F9\t0x00B6\n0xA2FE\t0x25EF\n0xA3B0\t0xFF10\n0xA3B1\t0xFF11\n0xA3B2\t0xFF12\n0xA3B3\t0xFF13\n0xA3B4\t0xFF14\n0xA3B5\t0xFF15\n0xA3B6\t0xFF16\n0xA3B7\t0xFF17\n0xA3B8\t0xFF18\n0xA3B9\t0xFF19\n0xA3C1\t0xFF21\n0xA3C2\t0xFF22\n0xA3C3\t0xFF23\n0xA3C4\t0xFF24\n0xA3C5\t0xFF25\n0xA3C6\t0xFF26\n0xA3C7\t0xFF27\n0xA3C8\t0xFF28\n0xA3C9\t0xFF29\n0xA3CA\t0xFF2A\n0xA3CB\t0xFF2B\n0xA3CC\t0xFF2C\n0xA3CD\t0xFF2D\n0xA3CE\t0xFF2E\n0xA3CF\t0xFF2F\n0xA3D0\t0xFF30\n0xA3D1\t0xFF31\n0xA3D2\t0xFF32\n0xA3D3\t0xFF33\n0xA3D4\t0xFF34\n0xA3D5\t0xFF35\n0xA3D6\t0xFF36\n0xA3D7\t0xFF37\n0xA3D8\t0xFF38\n0xA3D9\t0xFF39\n0xA3DA\t0xFF3A\n0xA3E1\t0xFF41\n0xA3E2\t0xFF42\n0xA3E3\t0xFF43\n0xA3E4\t0xFF44\n0xA3E5\t0xFF45\n0xA3E6\t0xFF46\n0xA3E7\t0xFF47\n0xA3E8\t0xFF48\n0xA3E9\t0xFF49\n0xA3EA\t0xFF4A\n0xA3EB\t0xFF4B\n0xA3EC\t0xFF4C\n0xA3ED\t0xFF4D\n0xA3EE\t0xFF4E\n0xA3EF\t0xFF4F\n0xA3F0\t0xFF50\n0xA3F1\t0xFF51\n0xA3F2\t0xFF52\n0xA3F3\t0xFF53\n0xA3F4\t0xFF54\n0xA3F5\t0xFF55\n0xA3F6\t0xFF56\n0xA3F7\t0xFF57\n0xA3F8\t0xFF58\n0xA3F9\t0xFF59\n0xA3FA\t0xFF5A\n0xA4A1\t0x3041\n0xA4A2\t0x3042\n0xA4A3\t0x3043\n0xA4A4\t0x3044\n0xA4A5\t0x3045\n0xA4A6\t0x3046\n0xA4A7\t0x3047\n0xA4A8\t0x3048\n0xA4A9\t0x3049\n0xA4AA\t0x304A\n0xA4AB\t0x304B\n0xA4AC\t0x304C\n0xA4AD\t0x304D\n0xA4AE\t0x304E\n0xA4AF\t0x304F\n0xA4B0\t0x3050\n0xA4B1\t0x3051\n0xA4B2\t0x3052\n0xA4B3\t0x3053\n0xA4B4\t0x3054\n0xA4B5\t0x3055\n0xA4B6\t0x3056\n0xA4B7\t0x3057\n0xA4B8\t0x3058\n0xA4B9\t0x3059\n0xA4BA\t0x305A\n0xA4BB\t0x305B\n0xA4BC\t0x305C\n0xA4BD\t0x305D\n0xA4BE\t0x305E\n0xA4BF\t0x305F\n0xA4C0\t0x3060\n0xA4C1\t0x3061\n0xA4C2\t0x3062\n0xA4C3\t0x3063\n0xA4C4\t0x3064\n0xA4C5\t0x3065\n0xA4C6\t0x3066\n0xA4C7\t0x3067\n0xA4C8\t0x3068\n0xA4C9\t0x3069\n0xA4CA\t0x306A\n0xA4CB\t0x306B\n0xA4CC\t0x306C\n0xA4CD\t0x306D\n0xA4CE\t0x306E\n0xA4CF\t0x306F\n0xA4D0\t0x3070\n0xA4D1\t0x3071\n0xA4D2\t0x3072\n0xA4D3\t0x3073\n0xA4D4\t0x3074\n0xA4D5\t0x3075\n0xA4D6\t0x3076\n0xA4D7\t0x3077\n0xA4D8\t0x3078\n0xA4D9\t0x3079\n0xA4DA\t0x307A\n0xA4DB\t0x307B\n0xA4DC\t0x307C\n0xA4DD\t0x307D\n0xA4DE\t0x307E\n0xA4DF\t0x307F\n0xA4E0\t0x3080\n0xA4E1\t0x3081\n0xA4E2\t0x3082\n0xA4E3\t0x3083\n0xA4E4\t0x3084\n0xA4E5\t0x3085\n0xA4E6\t0x3086\n0xA4E7\t0x3087\n0xA4E8\t0x3088\n0xA4E9\t0x3089\n0xA4EA\t0x308A\n0xA4EB\t0x308B\n0xA4EC\t0x308C\n0xA4ED\t0x308D\n0xA4EE\t0x308E\n0xA4EF\t0x308F\n0xA4F0\t0x3090\n0xA4F1\t0x3091\n0xA4F2\t0x3092\n0xA4F3\t0x3093\n0xA5A1\t0x30A1\n0xA5A2\t0x30A2\n0xA5A3\t0x30A3\n0xA5A4\t0x30A4\n0xA5A5\t0x30A5\n0xA5A6\t0x30A6\n0xA5A7\t0x30A7\n0xA5A8\t0x30A8\n0xA5A9\t0x30A9\n0xA5AA\t0x30AA\n0xA5AB\t0x30AB\n0xA5AC\t0x30AC\n0xA5AD\t0x30AD\n0xA5AE\t0x30AE\n0xA5AF\t0x30AF\n0xA5B0\t0x30B0\n0xA5B1\t0x30B1\n0xA5B2\t0x30B2\n0xA5B3\t0x30B3\n0xA5B4\t0x30B4\n0xA5B5\t0x30B5\n0xA5B6\t0x30B6\n0xA5B7\t0x30B7\n0xA5B8\t0x30B8\n0xA5B9\t0x30B9\n0xA5BA\t0x30BA\n0xA5BB\t0x30BB\n0xA5BC\t0x30BC\n0xA5BD\t0x30BD\n0xA5BE\t0x30BE\n0xA5BF\t0x30BF\n0xA5C0\t0x30C0\n0xA5C1\t0x30C1\n0xA5C2\t0x30C2\n0xA5C3\t0x30C3\n0xA5C4\t0x30C4\n0xA5C5\t0x30C5\n0xA5C6\t0x30C6\n0xA5C7\t0x30C7\n0xA5C8\t0x30C8\n0xA5C9\t0x30C9\n0xA5CA\t0x30CA\n0xA5CB\t0x30CB\n0xA5CC\t0x30CC\n0xA5CD\t0x30CD\n0xA5CE\t0x30CE\n0xA5CF\t0x30CF\n0xA5D0\t0x30D0\n0xA5D1\t0x30D1\n0xA5D2\t0x30D2\n0xA5D3\t0x30D3\n0xA5D4\t0x30D4\n0xA5D5\t0x30D5\n0xA5D6\t0x30D6\n0xA5D7\t0x30D7\n0xA5D8\t0x30D8\n0xA5D9\t0x30D9\n0xA5DA\t0x30DA\n0xA5DB\t0x30DB\n0xA5DC\t0x30DC\n0xA5DD\t0x30DD\n0xA5DE\t0x30DE\n0xA5DF\t0x30DF\n0xA5E0\t0x30E0\n0xA5E1\t0x30E1\n0xA5E2\t0x30E2\n0xA5E3\t0x30E3\n0xA5E4\t0x30E4\n0xA5E5\t0x30E5\n0xA5E6\t0x30E6\n0xA5E7\t0x30E7\n0xA5E8\t0x30E8\n0xA5E9\t0x30E9\n0xA5EA\t0x30EA\n0xA5EB\t0x30EB\n0xA5EC\t0x30EC\n0xA5ED\t0x30ED\n0xA5EE\t0x30EE\n0xA5EF\t0x30EF\n0xA5F0\t0x30F0\n0xA5F1\t0x30F1\n0xA5F2\t0x30F2\n0xA5F3\t0x30F3\n0xA5F4\t0x30F4\n0xA5F5\t0x30F5\n0xA5F6\t0x30F6\n0xA6A1\t0x0391\n0xA6A2\t0x0392\n0xA6A3\t0x0393\n0xA6A4\t0x0394\n0xA6A5\t0x0395\n0xA6A6\t0x0396\n0xA6A7\t0x0397\n0xA6A8\t0x0398\n0xA6A9\t0x0399\n0xA6AA\t0x039A\n0xA6AB\t0x039B\n0xA6AC\t0x039C\n0xA6AD\t0x039D\n0xA6AE\t0x039E\n0xA6AF\t0x039F\n0xA6B0\t0x03A0\n0xA6B1\t0x03A1\n0xA6B2\t0x03A3\n0xA6B3\t0x03A4\n0xA6B4\t0x03A5\n0xA6B5\t0x03A6\n0xA6B6\t0x03A7\n0xA6B7\t0x03A8\n0xA6B8\t0x03A9\n0xA6C1\t0x03B1\n0xA6C2\t0x03B2\n0xA6C3\t0x03B3\n0xA6C4\t0x03B4\n0xA6C5\t0x03B5\n0xA6C6\t0x03B6\n0xA6C7\t0x03B7\n0xA6C8\t0x03B8\n0xA6C9\t0x03B9\n0xA6CA\t0x03BA\n0xA6CB\t0x03BB\n0xA6CC\t0x03BC\n0xA6CD\t0x03BD\n0xA6CE\t0x03BE\n0xA6CF\t0x03BF\n0xA6D0\t0x03C0\n0xA6D1\t0x03C1\n0xA6D2\t0x03C3\n0xA6D3\t0x03C4\n0xA6D4\t0x03C5\n0xA6D5\t0x03C6\n0xA6D6\t0x03C7\n0xA6D7\t0x03C8\n0xA6D8\t0x03C9\n0xA7A1\t0x0410\n0xA7A2\t0x0411\n0xA7A3\t0x0412\n0xA7A4\t0x0413\n0xA7A5\t0x0414\n0xA7A6\t0x0415\n0xA7A7\t0x0401\n0xA7A8\t0x0416\n0xA7A9\t0x0417\n0xA7AA\t0x0418\n0xA7AB\t0x0419\n0xA7AC\t0x041A\n0xA7AD\t0x041B\n0xA7AE\t0x041C\n0xA7AF\t0x041D\n0xA7B0\t0x041E\n0xA7B1\t0x041F\n0xA7B2\t0x0420\n0xA7B3\t0x0421\n0xA7B4\t0x0422\n0xA7B5\t0x0423\n0xA7B6\t0x0424\n0xA7B7\t0x0425\n0xA7B8\t0x0426\n0xA7B9\t0x0427\n0xA7BA\t0x0428\n0xA7BB\t0x0429\n0xA7BC\t0x042A\n0xA7BD\t0x042B\n0xA7BE\t0x042C\n0xA7BF\t0x042D\n0xA7C0\t0x042E\n0xA7C1\t0x042F\n0xA7D1\t0x0430\n0xA7D2\t0x0431\n0xA7D3\t0x0432\n0xA7D4\t0x0433\n0xA7D5\t0x0434\n0xA7D6\t0x0435\n0xA7D7\t0x0451\n0xA7D8\t0x0436\n0xA7D9\t0x0437\n0xA7DA\t0x0438\n0xA7DB\t0x0439\n0xA7DC\t0x043A\n0xA7DD\t0x043B\n0xA7DE\t0x043C\n0xA7DF\t0x043D\n0xA7E0\t0x043E\n0xA7E1\t0x043F\n0xA7E2\t0x0440\n0xA7E3\t0x0441\n0xA7E4\t0x0442\n0xA7E5\t0x0443\n0xA7E6\t0x0444\n0xA7E7\t0x0445\n0xA7E8\t0x0446\n0xA7E9\t0x0447\n0xA7EA\t0x0448\n0xA7EB\t0x0449\n0xA7EC\t0x044A\n0xA7ED\t0x044B\n0xA7EE\t0x044C\n0xA7EF\t0x044D\n0xA7F0\t0x044E\n0xA7F1\t0x044F\n0xA8A1\t0x2500\n0xA8A2\t0x2502\n0xA8A3\t0x250C\n0xA8A4\t0x2510\n0xA8A5\t0x2518\n0xA8A6\t0x2514\n0xA8A7\t0x251C\n0xA8A8\t0x252C\n0xA8A9\t0x2524\n0xA8AA\t0x2534\n0xA8AB\t0x253C\n0xA8AC\t0x2501\n0xA8AD\t0x2503\n0xA8AE\t0x250F\n0xA8AF\t0x2513\n0xA8B0\t0x251B\n0xA8B1\t0x2517\n0xA8B2\t0x2523\n0xA8B3\t0x2533\n0xA8B4\t0x252B\n0xA8B5\t0x253B\n0xA8B6\t0x254B\n0xA8B7\t0x2520\n0xA8B8\t0x252F\n0xA8B9\t0x2528\n0xA8BA\t0x2537\n0xA8BB\t0x253F\n0xA8BC\t0x251D\n0xA8BD\t0x2530\n0xA8BE\t0x2525\n0xA8BF\t0x2538\n0xA8C0\t0x2542\n0xB0A1\t0x4E9C\n0xB0A2\t0x5516\n0xB0A3\t0x5A03\n0xB0A4\t0x963F\n0xB0A5\t0x54C0\n0xB0A6\t0x611B\n0xB0A7\t0x6328\n0xB0A8\t0x59F6\n0xB0A9\t0x9022\n0xB0AA\t0x8475\n0xB0AB\t0x831C\n0xB0AC\t0x7A50\n0xB0AD\t0x60AA\n0xB0AE\t0x63E1\n0xB0AF\t0x6E25\n0xB0B0\t0x65ED\n0xB0B1\t0x8466\n0xB0B2\t0x82A6\n0xB0B3\t0x9BF5\n0xB0B4\t0x6893\n0xB0B5\t0x5727\n0xB0B6\t0x65A1\n0xB0B7\t0x6271\n0xB0B8\t0x5B9B\n0xB0B9\t0x59D0\n0xB0BA\t0x867B\n0xB0BB\t0x98F4\n0xB0BC\t0x7D62\n0xB0BD\t0x7DBE\n0xB0BE\t0x9B8E\n0xB0BF\t0x6216\n0xB0C0\t0x7C9F\n0xB0C1\t0x88B7\n0xB0C2\t0x5B89\n0xB0C3\t0x5EB5\n0xB0C4\t0x6309\n0xB0C5\t0x6697\n0xB0C6\t0x6848\n0xB0C7\t0x95C7\n0xB0C8\t0x978D\n0xB0C9\t0x674F\n0xB0CA\t0x4EE5\n0xB0CB\t0x4F0A\n0xB0CC\t0x4F4D\n0xB0CD\t0x4F9D\n0xB0CE\t0x5049\n0xB0CF\t0x56F2\n0xB0D0\t0x5937\n0xB0D1\t0x59D4\n0xB0D2\t0x5A01\n0xB0D3\t0x5C09\n0xB0D4\t0x60DF\n0xB0D5\t0x610F\n0xB0D6\t0x6170\n0xB0D7\t0x6613\n0xB0D8\t0x6905\n0xB0D9\t0x70BA\n0xB0DA\t0x754F\n0xB0DB\t0x7570\n0xB0DC\t0x79FB\n0xB0DD\t0x7DAD\n0xB0DE\t0x7DEF\n0xB0DF\t0x80C3\n0xB0E0\t0x840E\n0xB0E1\t0x8863\n0xB0E2\t0x8B02\n0xB0E3\t0x9055\n0xB0E4\t0x907A\n0xB0E5\t0x533B\n0xB0E6\t0x4E95\n0xB0E7\t0x4EA5\n0xB0E8\t0x57DF\n0xB0E9\t0x80B2\n0xB0EA\t0x90C1\n0xB0EB\t0x78EF\n0xB0EC\t0x4E00\n0xB0ED\t0x58F1\n0xB0EE\t0x6EA2\n0xB0EF\t0x9038\n0xB0F0\t0x7A32\n0xB0F1\t0x8328\n0xB0F2\t0x828B\n0xB0F3\t0x9C2F\n0xB0F4\t0x5141\n0xB0F5\t0x5370\n0xB0F6\t0x54BD\n0xB0F7\t0x54E1\n0xB0F8\t0x56E0\n0xB0F9\t0x59FB\n0xB0FA\t0x5F15\n0xB0FB\t0x98F2\n0xB0FC\t0x6DEB\n0xB0FD\t0x80E4\n0xB0FE\t0x852D\n0xB1A1\t0x9662\n0xB1A2\t0x9670\n0xB1A3\t0x96A0\n0xB1A4\t0x97FB\n0xB1A5\t0x540B\n0xB1A6\t0x53F3\n0xB1A7\t0x5B87\n0xB1A8\t0x70CF\n0xB1A9\t0x7FBD\n0xB1AA\t0x8FC2\n0xB1AB\t0x96E8\n0xB1AC\t0x536F\n0xB1AD\t0x9D5C\n0xB1AE\t0x7ABA\n0xB1AF\t0x4E11\n0xB1B0\t0x7893\n0xB1B1\t0x81FC\n0xB1B2\t0x6E26\n0xB1B3\t0x5618\n0xB1B4\t0x5504\n0xB1B5\t0x6B1D\n0xB1B6\t0x851A\n0xB1B7\t0x9C3B\n0xB1B8\t0x59E5\n0xB1B9\t0x53A9\n0xB1BA\t0x6D66\n0xB1BB\t0x74DC\n0xB1BC\t0x958F\n0xB1BD\t0x5642\n0xB1BE\t0x4E91\n0xB1BF\t0x904B\n0xB1C0\t0x96F2\n0xB1C1\t0x834F\n0xB1C2\t0x990C\n0xB1C3\t0x53E1\n0xB1C4\t0x55B6\n0xB1C5\t0x5B30\n0xB1C6\t0x5F71\n0xB1C7\t0x6620\n0xB1C8\t0x66F3\n0xB1C9\t0x6804\n0xB1CA\t0x6C38\n0xB1CB\t0x6CF3\n0xB1CC\t0x6D29\n0xB1CD\t0x745B\n0xB1CE\t0x76C8\n0xB1CF\t0x7A4E\n0xB1D0\t0x9834\n0xB1D1\t0x82F1\n0xB1D2\t0x885B\n0xB1D3\t0x8A60\n0xB1D4\t0x92ED\n0xB1D5\t0x6DB2\n0xB1D6\t0x75AB\n0xB1D7\t0x76CA\n0xB1D8\t0x99C5\n0xB1D9\t0x60A6\n0xB1DA\t0x8B01\n0xB1DB\t0x8D8A\n0xB1DC\t0x95B2\n0xB1DD\t0x698E\n0xB1DE\t0x53AD\n0xB1DF\t0x5186\n0xB1E0\t0x5712\n0xB1E1\t0x5830\n0xB1E2\t0x5944\n0xB1E3\t0x5BB4\n0xB1E4\t0x5EF6\n0xB1E5\t0x6028\n0xB1E6\t0x63A9\n0xB1E7\t0x63F4\n0xB1E8\t0x6CBF\n0xB1E9\t0x6F14\n0xB1EA\t0x708E\n0xB1EB\t0x7114\n0xB1EC\t0x7159\n0xB1ED\t0x71D5\n0xB1EE\t0x733F\n0xB1EF\t0x7E01\n0xB1F0\t0x8276\n0xB1F1\t0x82D1\n0xB1F2\t0x8597\n0xB1F3\t0x9060\n0xB1F4\t0x925B\n0xB1F5\t0x9D1B\n0xB1F6\t0x5869\n0xB1F7\t0x65BC\n0xB1F8\t0x6C5A\n0xB1F9\t0x7525\n0xB1FA\t0x51F9\n0xB1FB\t0x592E\n0xB1FC\t0x5965\n0xB1FD\t0x5F80\n0xB1FE\t0x5FDC\n0xB2A1\t0x62BC\n0xB2A2\t0x65FA\n0xB2A3\t0x6A2A\n0xB2A4\t0x6B27\n0xB2A5\t0x6BB4\n0xB2A6\t0x738B\n0xB2A7\t0x7FC1\n0xB2A8\t0x8956\n0xB2A9\t0x9D2C\n0xB2AA\t0x9D0E\n0xB2AB\t0x9EC4\n0xB2AC\t0x5CA1\n0xB2AD\t0x6C96\n0xB2AE\t0x837B\n0xB2AF\t0x5104\n0xB2B0\t0x5C4B\n0xB2B1\t0x61B6\n0xB2B2\t0x81C6\n0xB2B3\t0x6876\n0xB2B4\t0x7261\n0xB2B5\t0x4E59\n0xB2B6\t0x4FFA\n0xB2B7\t0x5378\n0xB2B8\t0x6069\n0xB2B9\t0x6E29\n0xB2BA\t0x7A4F\n0xB2BB\t0x97F3\n0xB2BC\t0x4E0B\n0xB2BD\t0x5316\n0xB2BE\t0x4EEE\n0xB2BF\t0x4F55\n0xB2C0\t0x4F3D\n0xB2C1\t0x4FA1\n0xB2C2\t0x4F73\n0xB2C3\t0x52A0\n0xB2C4\t0x53EF\n0xB2C5\t0x5609\n0xB2C6\t0x590F\n0xB2C7\t0x5AC1\n0xB2C8\t0x5BB6\n0xB2C9\t0x5BE1\n0xB2CA\t0x79D1\n0xB2CB\t0x6687\n0xB2CC\t0x679C\n0xB2CD\t0x67B6\n0xB2CE\t0x6B4C\n0xB2CF\t0x6CB3\n0xB2D0\t0x706B\n0xB2D1\t0x73C2\n0xB2D2\t0x798D\n0xB2D3\t0x79BE\n0xB2D4\t0x7A3C\n0xB2D5\t0x7B87\n0xB2D6\t0x82B1\n0xB2D7\t0x82DB\n0xB2D8\t0x8304\n0xB2D9\t0x8377\n0xB2DA\t0x83EF\n0xB2DB\t0x83D3\n0xB2DC\t0x8766\n0xB2DD\t0x8AB2\n0xB2DE\t0x5629\n0xB2DF\t0x8CA8\n0xB2E0\t0x8FE6\n0xB2E1\t0x904E\n0xB2E2\t0x971E\n0xB2E3\t0x868A\n0xB2E4\t0x4FC4\n0xB2E5\t0x5CE8\n0xB2E6\t0x6211\n0xB2E7\t0x7259\n0xB2E8\t0x753B\n0xB2E9\t0x81E5\n0xB2EA\t0x82BD\n0xB2EB\t0x86FE\n0xB2EC\t0x8CC0\n0xB2ED\t0x96C5\n0xB2EE\t0x9913\n0xB2EF\t0x99D5\n0xB2F0\t0x4ECB\n0xB2F1\t0x4F1A\n0xB2F2\t0x89E3\n0xB2F3\t0x56DE\n0xB2F4\t0x584A\n0xB2F5\t0x58CA\n0xB2F6\t0x5EFB\n0xB2F7\t0x5FEB\n0xB2F8\t0x602A\n0xB2F9\t0x6094\n0xB2FA\t0x6062\n0xB2FB\t0x61D0\n0xB2FC\t0x6212\n0xB2FD\t0x62D0\n0xB2FE\t0x6539\n0xB3A1\t0x9B41\n0xB3A2\t0x6666\n0xB3A3\t0x68B0\n0xB3A4\t0x6D77\n0xB3A5\t0x7070\n0xB3A6\t0x754C\n0xB3A7\t0x7686\n0xB3A8\t0x7D75\n0xB3A9\t0x82A5\n0xB3AA\t0x87F9\n0xB3AB\t0x958B\n0xB3AC\t0x968E\n0xB3AD\t0x8C9D\n0xB3AE\t0x51F1\n0xB3AF\t0x52BE\n0xB3B0\t0x5916\n0xB3B1\t0x54B3\n0xB3B2\t0x5BB3\n0xB3B3\t0x5D16\n0xB3B4\t0x6168\n0xB3B5\t0x6982\n0xB3B6\t0x6DAF\n0xB3B7\t0x788D\n0xB3B8\t0x84CB\n0xB3B9\t0x8857\n0xB3BA\t0x8A72\n0xB3BB\t0x93A7\n0xB3BC\t0x9AB8\n0xB3BD\t0x6D6C\n0xB3BE\t0x99A8\n0xB3BF\t0x86D9\n0xB3C0\t0x57A3\n0xB3C1\t0x67FF\n0xB3C2\t0x86CE\n0xB3C3\t0x920E\n0xB3C4\t0x5283\n0xB3C5\t0x5687\n0xB3C6\t0x5404\n0xB3C7\t0x5ED3\n0xB3C8\t0x62E1\n0xB3C9\t0x64B9\n0xB3CA\t0x683C\n0xB3CB\t0x6838\n0xB3CC\t0x6BBB\n0xB3CD\t0x7372\n0xB3CE\t0x78BA\n0xB3CF\t0x7A6B\n0xB3D0\t0x899A\n0xB3D1\t0x89D2\n0xB3D2\t0x8D6B\n0xB3D3\t0x8F03\n0xB3D4\t0x90ED\n0xB3D5\t0x95A3\n0xB3D6\t0x9694\n0xB3D7\t0x9769\n0xB3D8\t0x5B66\n0xB3D9\t0x5CB3\n0xB3DA\t0x697D\n0xB3DB\t0x984D\n0xB3DC\t0x984E\n0xB3DD\t0x639B\n0xB3DE\t0x7B20\n0xB3DF\t0x6A2B\n0xB3E0\t0x6A7F\n0xB3E1\t0x68B6\n0xB3E2\t0x9C0D\n0xB3E3\t0x6F5F\n0xB3E4\t0x5272\n0xB3E5\t0x559D\n0xB3E6\t0x6070\n0xB3E7\t0x62EC\n0xB3E8\t0x6D3B\n0xB3E9\t0x6E07\n0xB3EA\t0x6ED1\n0xB3EB\t0x845B\n0xB3EC\t0x8910\n0xB3ED\t0x8F44\n0xB3EE\t0x4E14\n0xB3EF\t0x9C39\n0xB3F0\t0x53F6\n0xB3F1\t0x691B\n0xB3F2\t0x6A3A\n0xB3F3\t0x9784\n0xB3F4\t0x682A\n0xB3F5\t0x515C\n0xB3F6\t0x7AC3\n0xB3F7\t0x84B2\n0xB3F8\t0x91DC\n0xB3F9\t0x938C\n0xB3FA\t0x565B\n0xB3FB\t0x9D28\n0xB3FC\t0x6822\n0xB3FD\t0x8305\n0xB3FE\t0x8431\n0xB4A1\t0x7CA5\n0xB4A2\t0x5208\n0xB4A3\t0x82C5\n0xB4A4\t0x74E6\n0xB4A5\t0x4E7E\n0xB4A6\t0x4F83\n0xB4A7\t0x51A0\n0xB4A8\t0x5BD2\n0xB4A9\t0x520A\n0xB4AA\t0x52D8\n0xB4AB\t0x52E7\n0xB4AC\t0x5DFB\n0xB4AD\t0x559A\n0xB4AE\t0x582A\n0xB4AF\t0x59E6\n0xB4B0\t0x5B8C\n0xB4B1\t0x5B98\n0xB4B2\t0x5BDB\n0xB4B3\t0x5E72\n0xB4B4\t0x5E79\n0xB4B5\t0x60A3\n0xB4B6\t0x611F\n0xB4B7\t0x6163\n0xB4B8\t0x61BE\n0xB4B9\t0x63DB\n0xB4BA\t0x6562\n0xB4BB\t0x67D1\n0xB4BC\t0x6853\n0xB4BD\t0x68FA\n0xB4BE\t0x6B3E\n0xB4BF\t0x6B53\n0xB4C0\t0x6C57\n0xB4C1\t0x6F22\n0xB4C2\t0x6F97\n0xB4C3\t0x6F45\n0xB4C4\t0x74B0\n0xB4C5\t0x7518\n0xB4C6\t0x76E3\n0xB4C7\t0x770B\n0xB4C8\t0x7AFF\n0xB4C9\t0x7BA1\n0xB4CA\t0x7C21\n0xB4CB\t0x7DE9\n0xB4CC\t0x7F36\n0xB4CD\t0x7FF0\n0xB4CE\t0x809D\n0xB4CF\t0x8266\n0xB4D0\t0x839E\n0xB4D1\t0x89B3\n0xB4D2\t0x8ACC\n0xB4D3\t0x8CAB\n0xB4D4\t0x9084\n0xB4D5\t0x9451\n0xB4D6\t0x9593\n0xB4D7\t0x9591\n0xB4D8\t0x95A2\n0xB4D9\t0x9665\n0xB4DA\t0x97D3\n0xB4DB\t0x9928\n0xB4DC\t0x8218\n0xB4DD\t0x4E38\n0xB4DE\t0x542B\n0xB4DF\t0x5CB8\n0xB4E0\t0x5DCC\n0xB4E1\t0x73A9\n0xB4E2\t0x764C\n0xB4E3\t0x773C\n0xB4E4\t0x5CA9\n0xB4E5\t0x7FEB\n0xB4E6\t0x8D0B\n0xB4E7\t0x96C1\n0xB4E8\t0x9811\n0xB4E9\t0x9854\n0xB4EA\t0x9858\n0xB4EB\t0x4F01\n0xB4EC\t0x4F0E\n0xB4ED\t0x5371\n0xB4EE\t0x559C\n0xB4EF\t0x5668\n0xB4F0\t0x57FA\n0xB4F1\t0x5947\n0xB4F2\t0x5B09\n0xB4F3\t0x5BC4\n0xB4F4\t0x5C90\n0xB4F5\t0x5E0C\n0xB4F6\t0x5E7E\n0xB4F7\t0x5FCC\n0xB4F8\t0x63EE\n0xB4F9\t0x673A\n0xB4FA\t0x65D7\n0xB4FB\t0x65E2\n0xB4FC\t0x671F\n0xB4FD\t0x68CB\n0xB4FE\t0x68C4\n0xB5A1\t0x6A5F\n0xB5A2\t0x5E30\n0xB5A3\t0x6BC5\n0xB5A4\t0x6C17\n0xB5A5\t0x6C7D\n0xB5A6\t0x757F\n0xB5A7\t0x7948\n0xB5A8\t0x5B63\n0xB5A9\t0x7A00\n0xB5AA\t0x7D00\n0xB5AB\t0x5FBD\n0xB5AC\t0x898F\n0xB5AD\t0x8A18\n0xB5AE\t0x8CB4\n0xB5AF\t0x8D77\n0xB5B0\t0x8ECC\n0xB5B1\t0x8F1D\n0xB5B2\t0x98E2\n0xB5B3\t0x9A0E\n0xB5B4\t0x9B3C\n0xB5B5\t0x4E80\n0xB5B6\t0x507D\n0xB5B7\t0x5100\n0xB5B8\t0x5993\n0xB5B9\t0x5B9C\n0xB5BA\t0x622F\n0xB5BB\t0x6280\n0xB5BC\t0x64EC\n0xB5BD\t0x6B3A\n0xB5BE\t0x72A0\n0xB5BF\t0x7591\n0xB5C0\t0x7947\n0xB5C1\t0x7FA9\n0xB5C2\t0x87FB\n0xB5C3\t0x8ABC\n0xB5C4\t0x8B70\n0xB5C5\t0x63AC\n0xB5C6\t0x83CA\n0xB5C7\t0x97A0\n0xB5C8\t0x5409\n0xB5C9\t0x5403\n0xB5CA\t0x55AB\n0xB5CB\t0x6854\n0xB5CC\t0x6A58\n0xB5CD\t0x8A70\n0xB5CE\t0x7827\n0xB5CF\t0x6775\n0xB5D0\t0x9ECD\n0xB5D1\t0x5374\n0xB5D2\t0x5BA2\n0xB5D3\t0x811A\n0xB5D4\t0x8650\n0xB5D5\t0x9006\n0xB5D6\t0x4E18\n0xB5D7\t0x4E45\n0xB5D8\t0x4EC7\n0xB5D9\t0x4F11\n0xB5DA\t0x53CA\n0xB5DB\t0x5438\n0xB5DC\t0x5BAE\n0xB5DD\t0x5F13\n0xB5DE\t0x6025\n0xB5DF\t0x6551\n0xB5E0\t0x673D\n0xB5E1\t0x6C42\n0xB5E2\t0x6C72\n0xB5E3\t0x6CE3\n0xB5E4\t0x7078\n0xB5E5\t0x7403\n0xB5E6\t0x7A76\n0xB5E7\t0x7AAE\n0xB5E8\t0x7B08\n0xB5E9\t0x7D1A\n0xB5EA\t0x7CFE\n0xB5EB\t0x7D66\n0xB5EC\t0x65E7\n0xB5ED\t0x725B\n0xB5EE\t0x53BB\n0xB5EF\t0x5C45\n0xB5F0\t0x5DE8\n0xB5F1\t0x62D2\n0xB5F2\t0x62E0\n0xB5F3\t0x6319\n0xB5F4\t0x6E20\n0xB5F5\t0x865A\n0xB5F6\t0x8A31\n0xB5F7\t0x8DDD\n0xB5F8\t0x92F8\n0xB5F9\t0x6F01\n0xB5FA\t0x79A6\n0xB5FB\t0x9B5A\n0xB5FC\t0x4EA8\n0xB5FD\t0x4EAB\n0xB5FE\t0x4EAC\n0xB6A1\t0x4F9B\n0xB6A2\t0x4FA0\n0xB6A3\t0x50D1\n0xB6A4\t0x5147\n0xB6A5\t0x7AF6\n0xB6A6\t0x5171\n0xB6A7\t0x51F6\n0xB6A8\t0x5354\n0xB6A9\t0x5321\n0xB6AA\t0x537F\n0xB6AB\t0x53EB\n0xB6AC\t0x55AC\n0xB6AD\t0x5883\n0xB6AE\t0x5CE1\n0xB6AF\t0x5F37\n0xB6B0\t0x5F4A\n0xB6B1\t0x602F\n0xB6B2\t0x6050\n0xB6B3\t0x606D\n0xB6B4\t0x631F\n0xB6B5\t0x6559\n0xB6B6\t0x6A4B\n0xB6B7\t0x6CC1\n0xB6B8\t0x72C2\n0xB6B9\t0x72ED\n0xB6BA\t0x77EF\n0xB6BB\t0x80F8\n0xB6BC\t0x8105\n0xB6BD\t0x8208\n0xB6BE\t0x854E\n0xB6BF\t0x90F7\n0xB6C0\t0x93E1\n0xB6C1\t0x97FF\n0xB6C2\t0x9957\n0xB6C3\t0x9A5A\n0xB6C4\t0x4EF0\n0xB6C5\t0x51DD\n0xB6C6\t0x5C2D\n0xB6C7\t0x6681\n0xB6C8\t0x696D\n0xB6C9\t0x5C40\n0xB6CA\t0x66F2\n0xB6CB\t0x6975\n0xB6CC\t0x7389\n0xB6CD\t0x6850\n0xB6CE\t0x7C81\n0xB6CF\t0x50C5\n0xB6D0\t0x52E4\n0xB6D1\t0x5747\n0xB6D2\t0x5DFE\n0xB6D3\t0x9326\n0xB6D4\t0x65A4\n0xB6D5\t0x6B23\n0xB6D6\t0x6B3D\n0xB6D7\t0x7434\n0xB6D8\t0x7981\n0xB6D9\t0x79BD\n0xB6DA\t0x7B4B\n0xB6DB\t0x7DCA\n0xB6DC\t0x82B9\n0xB6DD\t0x83CC\n0xB6DE\t0x887F\n0xB6DF\t0x895F\n0xB6E0\t0x8B39\n0xB6E1\t0x8FD1\n0xB6E2\t0x91D1\n0xB6E3\t0x541F\n0xB6E4\t0x9280\n0xB6E5\t0x4E5D\n0xB6E6\t0x5036\n0xB6E7\t0x53E5\n0xB6E8\t0x533A\n0xB6E9\t0x72D7\n0xB6EA\t0x7396\n0xB6EB\t0x77E9\n0xB6EC\t0x82E6\n0xB6ED\t0x8EAF\n0xB6EE\t0x99C6\n0xB6EF\t0x99C8\n0xB6F0\t0x99D2\n0xB6F1\t0x5177\n0xB6F2\t0x611A\n0xB6F3\t0x865E\n0xB6F4\t0x55B0\n0xB6F5\t0x7A7A\n0xB6F6\t0x5076\n0xB6F7\t0x5BD3\n0xB6F8\t0x9047\n0xB6F9\t0x9685\n0xB6FA\t0x4E32\n0xB6FB\t0x6ADB\n0xB6FC\t0x91E7\n0xB6FD\t0x5C51\n0xB6FE\t0x5C48\n0xB7A1\t0x6398\n0xB7A2\t0x7A9F\n0xB7A3\t0x6C93\n0xB7A4\t0x9774\n0xB7A5\t0x8F61\n0xB7A6\t0x7AAA\n0xB7A7\t0x718A\n0xB7A8\t0x9688\n0xB7A9\t0x7C82\n0xB7AA\t0x6817\n0xB7AB\t0x7E70\n0xB7AC\t0x6851\n0xB7AD\t0x936C\n0xB7AE\t0x52F2\n0xB7AF\t0x541B\n0xB7B0\t0x85AB\n0xB7B1\t0x8A13\n0xB7B2\t0x7FA4\n0xB7B3\t0x8ECD\n0xB7B4\t0x90E1\n0xB7B5\t0x5366\n0xB7B6\t0x8888\n0xB7B7\t0x7941\n0xB7B8\t0x4FC2\n0xB7B9\t0x50BE\n0xB7BA\t0x5211\n0xB7BB\t0x5144\n0xB7BC\t0x5553\n0xB7BD\t0x572D\n0xB7BE\t0x73EA\n0xB7BF\t0x578B\n0xB7C0\t0x5951\n0xB7C1\t0x5F62\n0xB7C2\t0x5F84\n0xB7C3\t0x6075\n0xB7C4\t0x6176\n0xB7C5\t0x6167\n0xB7C6\t0x61A9\n0xB7C7\t0x63B2\n0xB7C8\t0x643A\n0xB7C9\t0x656C\n0xB7CA\t0x666F\n0xB7CB\t0x6842\n0xB7CC\t0x6E13\n0xB7CD\t0x7566\n0xB7CE\t0x7A3D\n0xB7CF\t0x7CFB\n0xB7D0\t0x7D4C\n0xB7D1\t0x7D99\n0xB7D2\t0x7E4B\n0xB7D3\t0x7F6B\n0xB7D4\t0x830E\n0xB7D5\t0x834A\n0xB7D6\t0x86CD\n0xB7D7\t0x8A08\n0xB7D8\t0x8A63\n0xB7D9\t0x8B66\n0xB7DA\t0x8EFD\n0xB7DB\t0x981A\n0xB7DC\t0x9D8F\n0xB7DD\t0x82B8\n0xB7DE\t0x8FCE\n0xB7DF\t0x9BE8\n0xB7E0\t0x5287\n0xB7E1\t0x621F\n0xB7E2\t0x6483\n0xB7E3\t0x6FC0\n0xB7E4\t0x9699\n0xB7E5\t0x6841\n0xB7E6\t0x5091\n0xB7E7\t0x6B20\n0xB7E8\t0x6C7A\n0xB7E9\t0x6F54\n0xB7EA\t0x7A74\n0xB7EB\t0x7D50\n0xB7EC\t0x8840\n0xB7ED\t0x8A23\n0xB7EE\t0x6708\n0xB7EF\t0x4EF6\n0xB7F0\t0x5039\n0xB7F1\t0x5026\n0xB7F2\t0x5065\n0xB7F3\t0x517C\n0xB7F4\t0x5238\n0xB7F5\t0x5263\n0xB7F6\t0x55A7\n0xB7F7\t0x570F\n0xB7F8\t0x5805\n0xB7F9\t0x5ACC\n0xB7FA\t0x5EFA\n0xB7FB\t0x61B2\n0xB7FC\t0x61F8\n0xB7FD\t0x62F3\n0xB7FE\t0x6372\n0xB8A1\t0x691C\n0xB8A2\t0x6A29\n0xB8A3\t0x727D\n0xB8A4\t0x72AC\n0xB8A5\t0x732E\n0xB8A6\t0x7814\n0xB8A7\t0x786F\n0xB8A8\t0x7D79\n0xB8A9\t0x770C\n0xB8AA\t0x80A9\n0xB8AB\t0x898B\n0xB8AC\t0x8B19\n0xB8AD\t0x8CE2\n0xB8AE\t0x8ED2\n0xB8AF\t0x9063\n0xB8B0\t0x9375\n0xB8B1\t0x967A\n0xB8B2\t0x9855\n0xB8B3\t0x9A13\n0xB8B4\t0x9E78\n0xB8B5\t0x5143\n0xB8B6\t0x539F\n0xB8B7\t0x53B3\n0xB8B8\t0x5E7B\n0xB8B9\t0x5F26\n0xB8BA\t0x6E1B\n0xB8BB\t0x6E90\n0xB8BC\t0x7384\n0xB8BD\t0x73FE\n0xB8BE\t0x7D43\n0xB8BF\t0x8237\n0xB8C0\t0x8A00\n0xB8C1\t0x8AFA\n0xB8C2\t0x9650\n0xB8C3\t0x4E4E\n0xB8C4\t0x500B\n0xB8C5\t0x53E4\n0xB8C6\t0x547C\n0xB8C7\t0x56FA\n0xB8C8\t0x59D1\n0xB8C9\t0x5B64\n0xB8CA\t0x5DF1\n0xB8CB\t0x5EAB\n0xB8CC\t0x5F27\n0xB8CD\t0x6238\n0xB8CE\t0x6545\n0xB8CF\t0x67AF\n0xB8D0\t0x6E56\n0xB8D1\t0x72D0\n0xB8D2\t0x7CCA\n0xB8D3\t0x88B4\n0xB8D4\t0x80A1\n0xB8D5\t0x80E1\n0xB8D6\t0x83F0\n0xB8D7\t0x864E\n0xB8D8\t0x8A87\n0xB8D9\t0x8DE8\n0xB8DA\t0x9237\n0xB8DB\t0x96C7\n0xB8DC\t0x9867\n0xB8DD\t0x9F13\n0xB8DE\t0x4E94\n0xB8DF\t0x4E92\n0xB8E0\t0x4F0D\n0xB8E1\t0x5348\n0xB8E2\t0x5449\n0xB8E3\t0x543E\n0xB8E4\t0x5A2F\n0xB8E5\t0x5F8C\n0xB8E6\t0x5FA1\n0xB8E7\t0x609F\n0xB8E8\t0x68A7\n0xB8E9\t0x6A8E\n0xB8EA\t0x745A\n0xB8EB\t0x7881\n0xB8EC\t0x8A9E\n0xB8ED\t0x8AA4\n0xB8EE\t0x8B77\n0xB8EF\t0x9190\n0xB8F0\t0x4E5E\n0xB8F1\t0x9BC9\n0xB8F2\t0x4EA4\n0xB8F3\t0x4F7C\n0xB8F4\t0x4FAF\n0xB8F5\t0x5019\n0xB8F6\t0x5016\n0xB8F7\t0x5149\n0xB8F8\t0x516C\n0xB8F9\t0x529F\n0xB8FA\t0x52B9\n0xB8FB\t0x52FE\n0xB8FC\t0x539A\n0xB8FD\t0x53E3\n0xB8FE\t0x5411\n0xB9A1\t0x540E\n0xB9A2\t0x5589\n0xB9A3\t0x5751\n0xB9A4\t0x57A2\n0xB9A5\t0x597D\n0xB9A6\t0x5B54\n0xB9A7\t0x5B5D\n0xB9A8\t0x5B8F\n0xB9A9\t0x5DE5\n0xB9AA\t0x5DE7\n0xB9AB\t0x5DF7\n0xB9AC\t0x5E78\n0xB9AD\t0x5E83\n0xB9AE\t0x5E9A\n0xB9AF\t0x5EB7\n0xB9B0\t0x5F18\n0xB9B1\t0x6052\n0xB9B2\t0x614C\n0xB9B3\t0x6297\n0xB9B4\t0x62D8\n0xB9B5\t0x63A7\n0xB9B6\t0x653B\n0xB9B7\t0x6602\n0xB9B8\t0x6643\n0xB9B9\t0x66F4\n0xB9BA\t0x676D\n0xB9BB\t0x6821\n0xB9BC\t0x6897\n0xB9BD\t0x69CB\n0xB9BE\t0x6C5F\n0xB9BF\t0x6D2A\n0xB9C0\t0x6D69\n0xB9C1\t0x6E2F\n0xB9C2\t0x6E9D\n0xB9C3\t0x7532\n0xB9C4\t0x7687\n0xB9C5\t0x786C\n0xB9C6\t0x7A3F\n0xB9C7\t0x7CE0\n0xB9C8\t0x7D05\n0xB9C9\t0x7D18\n0xB9CA\t0x7D5E\n0xB9CB\t0x7DB1\n0xB9CC\t0x8015\n0xB9CD\t0x8003\n0xB9CE\t0x80AF\n0xB9CF\t0x80B1\n0xB9D0\t0x8154\n0xB9D1\t0x818F\n0xB9D2\t0x822A\n0xB9D3\t0x8352\n0xB9D4\t0x884C\n0xB9D5\t0x8861\n0xB9D6\t0x8B1B\n0xB9D7\t0x8CA2\n0xB9D8\t0x8CFC\n0xB9D9\t0x90CA\n0xB9DA\t0x9175\n0xB9DB\t0x9271\n0xB9DC\t0x783F\n0xB9DD\t0x92FC\n0xB9DE\t0x95A4\n0xB9DF\t0x964D\n0xB9E0\t0x9805\n0xB9E1\t0x9999\n0xB9E2\t0x9AD8\n0xB9E3\t0x9D3B\n0xB9E4\t0x525B\n0xB9E5\t0x52AB\n0xB9E6\t0x53F7\n0xB9E7\t0x5408\n0xB9E8\t0x58D5\n0xB9E9\t0x62F7\n0xB9EA\t0x6FE0\n0xB9EB\t0x8C6A\n0xB9EC\t0x8F5F\n0xB9ED\t0x9EB9\n0xB9EE\t0x514B\n0xB9EF\t0x523B\n0xB9F0\t0x544A\n0xB9F1\t0x56FD\n0xB9F2\t0x7A40\n0xB9F3\t0x9177\n0xB9F4\t0x9D60\n0xB9F5\t0x9ED2\n0xB9F6\t0x7344\n0xB9F7\t0x6F09\n0xB9F8\t0x8170\n0xB9F9\t0x7511\n0xB9FA\t0x5FFD\n0xB9FB\t0x60DA\n0xB9FC\t0x9AA8\n0xB9FD\t0x72DB\n0xB9FE\t0x8FBC\n0xBAA1\t0x6B64\n0xBAA2\t0x9803\n0xBAA3\t0x4ECA\n0xBAA4\t0x56F0\n0xBAA5\t0x5764\n0xBAA6\t0x58BE\n0xBAA7\t0x5A5A\n0xBAA8\t0x6068\n0xBAA9\t0x61C7\n0xBAAA\t0x660F\n0xBAAB\t0x6606\n0xBAAC\t0x6839\n0xBAAD\t0x68B1\n0xBAAE\t0x6DF7\n0xBAAF\t0x75D5\n0xBAB0\t0x7D3A\n0xBAB1\t0x826E\n0xBAB2\t0x9B42\n0xBAB3\t0x4E9B\n0xBAB4\t0x4F50\n0xBAB5\t0x53C9\n0xBAB6\t0x5506\n0xBAB7\t0x5D6F\n0xBAB8\t0x5DE6\n0xBAB9\t0x5DEE\n0xBABA\t0x67FB\n0xBABB\t0x6C99\n0xBABC\t0x7473\n0xBABD\t0x7802\n0xBABE\t0x8A50\n0xBABF\t0x9396\n0xBAC0\t0x88DF\n0xBAC1\t0x5750\n0xBAC2\t0x5EA7\n0xBAC3\t0x632B\n0xBAC4\t0x50B5\n0xBAC5\t0x50AC\n0xBAC6\t0x518D\n0xBAC7\t0x6700\n0xBAC8\t0x54C9\n0xBAC9\t0x585E\n0xBACA\t0x59BB\n0xBACB\t0x5BB0\n0xBACC\t0x5F69\n0xBACD\t0x624D\n0xBACE\t0x63A1\n0xBACF\t0x683D\n0xBAD0\t0x6B73\n0xBAD1\t0x6E08\n0xBAD2\t0x707D\n0xBAD3\t0x91C7\n0xBAD4\t0x7280\n0xBAD5\t0x7815\n0xBAD6\t0x7826\n0xBAD7\t0x796D\n0xBAD8\t0x658E\n0xBAD9\t0x7D30\n0xBADA\t0x83DC\n0xBADB\t0x88C1\n0xBADC\t0x8F09\n0xBADD\t0x969B\n0xBADE\t0x5264\n0xBADF\t0x5728\n0xBAE0\t0x6750\n0xBAE1\t0x7F6A\n0xBAE2\t0x8CA1\n0xBAE3\t0x51B4\n0xBAE4\t0x5742\n0xBAE5\t0x962A\n0xBAE6\t0x583A\n0xBAE7\t0x698A\n0xBAE8\t0x80B4\n0xBAE9\t0x54B2\n0xBAEA\t0x5D0E\n0xBAEB\t0x57FC\n0xBAEC\t0x7895\n0xBAED\t0x9DFA\n0xBAEE\t0x4F5C\n0xBAEF\t0x524A\n0xBAF0\t0x548B\n0xBAF1\t0x643E\n0xBAF2\t0x6628\n0xBAF3\t0x6714\n0xBAF4\t0x67F5\n0xBAF5\t0x7A84\n0xBAF6\t0x7B56\n0xBAF7\t0x7D22\n0xBAF8\t0x932F\n0xBAF9\t0x685C\n0xBAFA\t0x9BAD\n0xBAFB\t0x7B39\n0xBAFC\t0x5319\n0xBAFD\t0x518A\n0xBAFE\t0x5237\n0xBBA1\t0x5BDF\n0xBBA2\t0x62F6\n0xBBA3\t0x64AE\n0xBBA4\t0x64E6\n0xBBA5\t0x672D\n0xBBA6\t0x6BBA\n0xBBA7\t0x85A9\n0xBBA8\t0x96D1\n0xBBA9\t0x7690\n0xBBAA\t0x9BD6\n0xBBAB\t0x634C\n0xBBAC\t0x9306\n0xBBAD\t0x9BAB\n0xBBAE\t0x76BF\n0xBBAF\t0x6652\n0xBBB0\t0x4E09\n0xBBB1\t0x5098\n0xBBB2\t0x53C2\n0xBBB3\t0x5C71\n0xBBB4\t0x60E8\n0xBBB5\t0x6492\n0xBBB6\t0x6563\n0xBBB7\t0x685F\n0xBBB8\t0x71E6\n0xBBB9\t0x73CA\n0xBBBA\t0x7523\n0xBBBB\t0x7B97\n0xBBBC\t0x7E82\n0xBBBD\t0x8695\n0xBBBE\t0x8B83\n0xBBBF\t0x8CDB\n0xBBC0\t0x9178\n0xBBC1\t0x9910\n0xBBC2\t0x65AC\n0xBBC3\t0x66AB\n0xBBC4\t0x6B8B\n0xBBC5\t0x4ED5\n0xBBC6\t0x4ED4\n0xBBC7\t0x4F3A\n0xBBC8\t0x4F7F\n0xBBC9\t0x523A\n0xBBCA\t0x53F8\n0xBBCB\t0x53F2\n0xBBCC\t0x55E3\n0xBBCD\t0x56DB\n0xBBCE\t0x58EB\n0xBBCF\t0x59CB\n0xBBD0\t0x59C9\n0xBBD1\t0x59FF\n0xBBD2\t0x5B50\n0xBBD3\t0x5C4D\n0xBBD4\t0x5E02\n0xBBD5\t0x5E2B\n0xBBD6\t0x5FD7\n0xBBD7\t0x601D\n0xBBD8\t0x6307\n0xBBD9\t0x652F\n0xBBDA\t0x5B5C\n0xBBDB\t0x65AF\n0xBBDC\t0x65BD\n0xBBDD\t0x65E8\n0xBBDE\t0x679D\n0xBBDF\t0x6B62\n0xBBE0\t0x6B7B\n0xBBE1\t0x6C0F\n0xBBE2\t0x7345\n0xBBE3\t0x7949\n0xBBE4\t0x79C1\n0xBBE5\t0x7CF8\n0xBBE6\t0x7D19\n0xBBE7\t0x7D2B\n0xBBE8\t0x80A2\n0xBBE9\t0x8102\n0xBBEA\t0x81F3\n0xBBEB\t0x8996\n0xBBEC\t0x8A5E\n0xBBED\t0x8A69\n0xBBEE\t0x8A66\n0xBBEF\t0x8A8C\n0xBBF0\t0x8AEE\n0xBBF1\t0x8CC7\n0xBBF2\t0x8CDC\n0xBBF3\t0x96CC\n0xBBF4\t0x98FC\n0xBBF5\t0x6B6F\n0xBBF6\t0x4E8B\n0xBBF7\t0x4F3C\n0xBBF8\t0x4F8D\n0xBBF9\t0x5150\n0xBBFA\t0x5B57\n0xBBFB\t0x5BFA\n0xBBFC\t0x6148\n0xBBFD\t0x6301\n0xBBFE\t0x6642\n0xBCA1\t0x6B21\n0xBCA2\t0x6ECB\n0xBCA3\t0x6CBB\n0xBCA4\t0x723E\n0xBCA5\t0x74BD\n0xBCA6\t0x75D4\n0xBCA7\t0x78C1\n0xBCA8\t0x793A\n0xBCA9\t0x800C\n0xBCAA\t0x8033\n0xBCAB\t0x81EA\n0xBCAC\t0x8494\n0xBCAD\t0x8F9E\n0xBCAE\t0x6C50\n0xBCAF\t0x9E7F\n0xBCB0\t0x5F0F\n0xBCB1\t0x8B58\n0xBCB2\t0x9D2B\n0xBCB3\t0x7AFA\n0xBCB4\t0x8EF8\n0xBCB5\t0x5B8D\n0xBCB6\t0x96EB\n0xBCB7\t0x4E03\n0xBCB8\t0x53F1\n0xBCB9\t0x57F7\n0xBCBA\t0x5931\n0xBCBB\t0x5AC9\n0xBCBC\t0x5BA4\n0xBCBD\t0x6089\n0xBCBE\t0x6E7F\n0xBCBF\t0x6F06\n0xBCC0\t0x75BE\n0xBCC1\t0x8CEA\n0xBCC2\t0x5B9F\n0xBCC3\t0x8500\n0xBCC4\t0x7BE0\n0xBCC5\t0x5072\n0xBCC6\t0x67F4\n0xBCC7\t0x829D\n0xBCC8\t0x5C61\n0xBCC9\t0x854A\n0xBCCA\t0x7E1E\n0xBCCB\t0x820E\n0xBCCC\t0x5199\n0xBCCD\t0x5C04\n0xBCCE\t0x6368\n0xBCCF\t0x8D66\n0xBCD0\t0x659C\n0xBCD1\t0x716E\n0xBCD2\t0x793E\n0xBCD3\t0x7D17\n0xBCD4\t0x8005\n0xBCD5\t0x8B1D\n0xBCD6\t0x8ECA\n0xBCD7\t0x906E\n0xBCD8\t0x86C7\n0xBCD9\t0x90AA\n0xBCDA\t0x501F\n0xBCDB\t0x52FA\n0xBCDC\t0x5C3A\n0xBCDD\t0x6753\n0xBCDE\t0x707C\n0xBCDF\t0x7235\n0xBCE0\t0x914C\n0xBCE1\t0x91C8\n0xBCE2\t0x932B\n0xBCE3\t0x82E5\n0xBCE4\t0x5BC2\n0xBCE5\t0x5F31\n0xBCE6\t0x60F9\n0xBCE7\t0x4E3B\n0xBCE8\t0x53D6\n0xBCE9\t0x5B88\n0xBCEA\t0x624B\n0xBCEB\t0x6731\n0xBCEC\t0x6B8A\n0xBCED\t0x72E9\n0xBCEE\t0x73E0\n0xBCEF\t0x7A2E\n0xBCF0\t0x816B\n0xBCF1\t0x8DA3\n0xBCF2\t0x9152\n0xBCF3\t0x9996\n0xBCF4\t0x5112\n0xBCF5\t0x53D7\n0xBCF6\t0x546A\n0xBCF7\t0x5BFF\n0xBCF8\t0x6388\n0xBCF9\t0x6A39\n0xBCFA\t0x7DAC\n0xBCFB\t0x9700\n0xBCFC\t0x56DA\n0xBCFD\t0x53CE\n0xBCFE\t0x5468\n0xBDA1\t0x5B97\n0xBDA2\t0x5C31\n0xBDA3\t0x5DDE\n0xBDA4\t0x4FEE\n0xBDA5\t0x6101\n0xBDA6\t0x62FE\n0xBDA7\t0x6D32\n0xBDA8\t0x79C0\n0xBDA9\t0x79CB\n0xBDAA\t0x7D42\n0xBDAB\t0x7E4D\n0xBDAC\t0x7FD2\n0xBDAD\t0x81ED\n0xBDAE\t0x821F\n0xBDAF\t0x8490\n0xBDB0\t0x8846\n0xBDB1\t0x8972\n0xBDB2\t0x8B90\n0xBDB3\t0x8E74\n0xBDB4\t0x8F2F\n0xBDB5\t0x9031\n0xBDB6\t0x914B\n0xBDB7\t0x916C\n0xBDB8\t0x96C6\n0xBDB9\t0x919C\n0xBDBA\t0x4EC0\n0xBDBB\t0x4F4F\n0xBDBC\t0x5145\n0xBDBD\t0x5341\n0xBDBE\t0x5F93\n0xBDBF\t0x620E\n0xBDC0\t0x67D4\n0xBDC1\t0x6C41\n0xBDC2\t0x6E0B\n0xBDC3\t0x7363\n0xBDC4\t0x7E26\n0xBDC5\t0x91CD\n0xBDC6\t0x9283\n0xBDC7\t0x53D4\n0xBDC8\t0x5919\n0xBDC9\t0x5BBF\n0xBDCA\t0x6DD1\n0xBDCB\t0x795D\n0xBDCC\t0x7E2E\n0xBDCD\t0x7C9B\n0xBDCE\t0x587E\n0xBDCF\t0x719F\n0xBDD0\t0x51FA\n0xBDD1\t0x8853\n0xBDD2\t0x8FF0\n0xBDD3\t0x4FCA\n0xBDD4\t0x5CFB\n0xBDD5\t0x6625\n0xBDD6\t0x77AC\n0xBDD7\t0x7AE3\n0xBDD8\t0x821C\n0xBDD9\t0x99FF\n0xBDDA\t0x51C6\n0xBDDB\t0x5FAA\n0xBDDC\t0x65EC\n0xBDDD\t0x696F\n0xBDDE\t0x6B89\n0xBDDF\t0x6DF3\n0xBDE0\t0x6E96\n0xBDE1\t0x6F64\n0xBDE2\t0x76FE\n0xBDE3\t0x7D14\n0xBDE4\t0x5DE1\n0xBDE5\t0x9075\n0xBDE6\t0x9187\n0xBDE7\t0x9806\n0xBDE8\t0x51E6\n0xBDE9\t0x521D\n0xBDEA\t0x6240\n0xBDEB\t0x6691\n0xBDEC\t0x66D9\n0xBDED\t0x6E1A\n0xBDEE\t0x5EB6\n0xBDEF\t0x7DD2\n0xBDF0\t0x7F72\n0xBDF1\t0x66F8\n0xBDF2\t0x85AF\n0xBDF3\t0x85F7\n0xBDF4\t0x8AF8\n0xBDF5\t0x52A9\n0xBDF6\t0x53D9\n0xBDF7\t0x5973\n0xBDF8\t0x5E8F\n0xBDF9\t0x5F90\n0xBDFA\t0x6055\n0xBDFB\t0x92E4\n0xBDFC\t0x9664\n0xBDFD\t0x50B7\n0xBDFE\t0x511F\n0xBEA1\t0x52DD\n0xBEA2\t0x5320\n0xBEA3\t0x5347\n0xBEA4\t0x53EC\n0xBEA5\t0x54E8\n0xBEA6\t0x5546\n0xBEA7\t0x5531\n0xBEA8\t0x5617\n0xBEA9\t0x5968\n0xBEAA\t0x59BE\n0xBEAB\t0x5A3C\n0xBEAC\t0x5BB5\n0xBEAD\t0x5C06\n0xBEAE\t0x5C0F\n0xBEAF\t0x5C11\n0xBEB0\t0x5C1A\n0xBEB1\t0x5E84\n0xBEB2\t0x5E8A\n0xBEB3\t0x5EE0\n0xBEB4\t0x5F70\n0xBEB5\t0x627F\n0xBEB6\t0x6284\n0xBEB7\t0x62DB\n0xBEB8\t0x638C\n0xBEB9\t0x6377\n0xBEBA\t0x6607\n0xBEBB\t0x660C\n0xBEBC\t0x662D\n0xBEBD\t0x6676\n0xBEBE\t0x677E\n0xBEBF\t0x68A2\n0xBEC0\t0x6A1F\n0xBEC1\t0x6A35\n0xBEC2\t0x6CBC\n0xBEC3\t0x6D88\n0xBEC4\t0x6E09\n0xBEC5\t0x6E58\n0xBEC6\t0x713C\n0xBEC7\t0x7126\n0xBEC8\t0x7167\n0xBEC9\t0x75C7\n0xBECA\t0x7701\n0xBECB\t0x785D\n0xBECC\t0x7901\n0xBECD\t0x7965\n0xBECE\t0x79F0\n0xBECF\t0x7AE0\n0xBED0\t0x7B11\n0xBED1\t0x7CA7\n0xBED2\t0x7D39\n0xBED3\t0x8096\n0xBED4\t0x83D6\n0xBED5\t0x848B\n0xBED6\t0x8549\n0xBED7\t0x885D\n0xBED8\t0x88F3\n0xBED9\t0x8A1F\n0xBEDA\t0x8A3C\n0xBEDB\t0x8A54\n0xBEDC\t0x8A73\n0xBEDD\t0x8C61\n0xBEDE\t0x8CDE\n0xBEDF\t0x91A4\n0xBEE0\t0x9266\n0xBEE1\t0x937E\n0xBEE2\t0x9418\n0xBEE3\t0x969C\n0xBEE4\t0x9798\n0xBEE5\t0x4E0A\n0xBEE6\t0x4E08\n0xBEE7\t0x4E1E\n0xBEE8\t0x4E57\n0xBEE9\t0x5197\n0xBEEA\t0x5270\n0xBEEB\t0x57CE\n0xBEEC\t0x5834\n0xBEED\t0x58CC\n0xBEEE\t0x5B22\n0xBEEF\t0x5E38\n0xBEF0\t0x60C5\n0xBEF1\t0x64FE\n0xBEF2\t0x6761\n0xBEF3\t0x6756\n0xBEF4\t0x6D44\n0xBEF5\t0x72B6\n0xBEF6\t0x7573\n0xBEF7\t0x7A63\n0xBEF8\t0x84B8\n0xBEF9\t0x8B72\n0xBEFA\t0x91B8\n0xBEFB\t0x9320\n0xBEFC\t0x5631\n0xBEFD\t0x57F4\n0xBEFE\t0x98FE\n0xBFA1\t0x62ED\n0xBFA2\t0x690D\n0xBFA3\t0x6B96\n0xBFA4\t0x71ED\n0xBFA5\t0x7E54\n0xBFA6\t0x8077\n0xBFA7\t0x8272\n0xBFA8\t0x89E6\n0xBFA9\t0x98DF\n0xBFAA\t0x8755\n0xBFAB\t0x8FB1\n0xBFAC\t0x5C3B\n0xBFAD\t0x4F38\n0xBFAE\t0x4FE1\n0xBFAF\t0x4FB5\n0xBFB0\t0x5507\n0xBFB1\t0x5A20\n0xBFB2\t0x5BDD\n0xBFB3\t0x5BE9\n0xBFB4\t0x5FC3\n0xBFB5\t0x614E\n0xBFB6\t0x632F\n0xBFB7\t0x65B0\n0xBFB8\t0x664B\n0xBFB9\t0x68EE\n0xBFBA\t0x699B\n0xBFBB\t0x6D78\n0xBFBC\t0x6DF1\n0xBFBD\t0x7533\n0xBFBE\t0x75B9\n0xBFBF\t0x771F\n0xBFC0\t0x795E\n0xBFC1\t0x79E6\n0xBFC2\t0x7D33\n0xBFC3\t0x81E3\n0xBFC4\t0x82AF\n0xBFC5\t0x85AA\n0xBFC6\t0x89AA\n0xBFC7\t0x8A3A\n0xBFC8\t0x8EAB\n0xBFC9\t0x8F9B\n0xBFCA\t0x9032\n0xBFCB\t0x91DD\n0xBFCC\t0x9707\n0xBFCD\t0x4EBA\n0xBFCE\t0x4EC1\n0xBFCF\t0x5203\n0xBFD0\t0x5875\n0xBFD1\t0x58EC\n0xBFD2\t0x5C0B\n0xBFD3\t0x751A\n0xBFD4\t0x5C3D\n0xBFD5\t0x814E\n0xBFD6\t0x8A0A\n0xBFD7\t0x8FC5\n0xBFD8\t0x9663\n0xBFD9\t0x976D\n0xBFDA\t0x7B25\n0xBFDB\t0x8ACF\n0xBFDC\t0x9808\n0xBFDD\t0x9162\n0xBFDE\t0x56F3\n0xBFDF\t0x53A8\n0xBFE0\t0x9017\n0xBFE1\t0x5439\n0xBFE2\t0x5782\n0xBFE3\t0x5E25\n0xBFE4\t0x63A8\n0xBFE5\t0x6C34\n0xBFE6\t0x708A\n0xBFE7\t0x7761\n0xBFE8\t0x7C8B\n0xBFE9\t0x7FE0\n0xBFEA\t0x8870\n0xBFEB\t0x9042\n0xBFEC\t0x9154\n0xBFED\t0x9310\n0xBFEE\t0x9318\n0xBFEF\t0x968F\n0xBFF0\t0x745E\n0xBFF1\t0x9AC4\n0xBFF2\t0x5D07\n0xBFF3\t0x5D69\n0xBFF4\t0x6570\n0xBFF5\t0x67A2\n0xBFF6\t0x8DA8\n0xBFF7\t0x96DB\n0xBFF8\t0x636E\n0xBFF9\t0x6749\n0xBFFA\t0x6919\n0xBFFB\t0x83C5\n0xBFFC\t0x9817\n0xBFFD\t0x96C0\n0xBFFE\t0x88FE\n0xC0A1\t0x6F84\n0xC0A2\t0x647A\n0xC0A3\t0x5BF8\n0xC0A4\t0x4E16\n0xC0A5\t0x702C\n0xC0A6\t0x755D\n0xC0A7\t0x662F\n0xC0A8\t0x51C4\n0xC0A9\t0x5236\n0xC0AA\t0x52E2\n0xC0AB\t0x59D3\n0xC0AC\t0x5F81\n0xC0AD\t0x6027\n0xC0AE\t0x6210\n0xC0AF\t0x653F\n0xC0B0\t0x6574\n0xC0B1\t0x661F\n0xC0B2\t0x6674\n0xC0B3\t0x68F2\n0xC0B4\t0x6816\n0xC0B5\t0x6B63\n0xC0B6\t0x6E05\n0xC0B7\t0x7272\n0xC0B8\t0x751F\n0xC0B9\t0x76DB\n0xC0BA\t0x7CBE\n0xC0BB\t0x8056\n0xC0BC\t0x58F0\n0xC0BD\t0x88FD\n0xC0BE\t0x897F\n0xC0BF\t0x8AA0\n0xC0C0\t0x8A93\n0xC0C1\t0x8ACB\n0xC0C2\t0x901D\n0xC0C3\t0x9192\n0xC0C4\t0x9752\n0xC0C5\t0x9759\n0xC0C6\t0x6589\n0xC0C7\t0x7A0E\n0xC0C8\t0x8106\n0xC0C9\t0x96BB\n0xC0CA\t0x5E2D\n0xC0CB\t0x60DC\n0xC0CC\t0x621A\n0xC0CD\t0x65A5\n0xC0CE\t0x6614\n0xC0CF\t0x6790\n0xC0D0\t0x77F3\n0xC0D1\t0x7A4D\n0xC0D2\t0x7C4D\n0xC0D3\t0x7E3E\n0xC0D4\t0x810A\n0xC0D5\t0x8CAC\n0xC0D6\t0x8D64\n0xC0D7\t0x8DE1\n0xC0D8\t0x8E5F\n0xC0D9\t0x78A9\n0xC0DA\t0x5207\n0xC0DB\t0x62D9\n0xC0DC\t0x63A5\n0xC0DD\t0x6442\n0xC0DE\t0x6298\n0xC0DF\t0x8A2D\n0xC0E0\t0x7A83\n0xC0E1\t0x7BC0\n0xC0E2\t0x8AAC\n0xC0E3\t0x96EA\n0xC0E4\t0x7D76\n0xC0E5\t0x820C\n0xC0E6\t0x8749\n0xC0E7\t0x4ED9\n0xC0E8\t0x5148\n0xC0E9\t0x5343\n0xC0EA\t0x5360\n0xC0EB\t0x5BA3\n0xC0EC\t0x5C02\n0xC0ED\t0x5C16\n0xC0EE\t0x5DDD\n0xC0EF\t0x6226\n0xC0F0\t0x6247\n0xC0F1\t0x64B0\n0xC0F2\t0x6813\n0xC0F3\t0x6834\n0xC0F4\t0x6CC9\n0xC0F5\t0x6D45\n0xC0F6\t0x6D17\n0xC0F7\t0x67D3\n0xC0F8\t0x6F5C\n0xC0F9\t0x714E\n0xC0FA\t0x717D\n0xC0FB\t0x65CB\n0xC0FC\t0x7A7F\n0xC0FD\t0x7BAD\n0xC0FE\t0x7DDA\n0xC1A1\t0x7E4A\n0xC1A2\t0x7FA8\n0xC1A3\t0x817A\n0xC1A4\t0x821B\n0xC1A5\t0x8239\n0xC1A6\t0x85A6\n0xC1A7\t0x8A6E\n0xC1A8\t0x8CCE\n0xC1A9\t0x8DF5\n0xC1AA\t0x9078\n0xC1AB\t0x9077\n0xC1AC\t0x92AD\n0xC1AD\t0x9291\n0xC1AE\t0x9583\n0xC1AF\t0x9BAE\n0xC1B0\t0x524D\n0xC1B1\t0x5584\n0xC1B2\t0x6F38\n0xC1B3\t0x7136\n0xC1B4\t0x5168\n0xC1B5\t0x7985\n0xC1B6\t0x7E55\n0xC1B7\t0x81B3\n0xC1B8\t0x7CCE\n0xC1B9\t0x564C\n0xC1BA\t0x5851\n0xC1BB\t0x5CA8\n0xC1BC\t0x63AA\n0xC1BD\t0x66FE\n0xC1BE\t0x66FD\n0xC1BF\t0x695A\n0xC1C0\t0x72D9\n0xC1C1\t0x758F\n0xC1C2\t0x758E\n0xC1C3\t0x790E\n0xC1C4\t0x7956\n0xC1C5\t0x79DF\n0xC1C6\t0x7C97\n0xC1C7\t0x7D20\n0xC1C8\t0x7D44\n0xC1C9\t0x8607\n0xC1CA\t0x8A34\n0xC1CB\t0x963B\n0xC1CC\t0x9061\n0xC1CD\t0x9F20\n0xC1CE\t0x50E7\n0xC1CF\t0x5275\n0xC1D0\t0x53CC\n0xC1D1\t0x53E2\n0xC1D2\t0x5009\n0xC1D3\t0x55AA\n0xC1D4\t0x58EE\n0xC1D5\t0x594F\n0xC1D6\t0x723D\n0xC1D7\t0x5B8B\n0xC1D8\t0x5C64\n0xC1D9\t0x531D\n0xC1DA\t0x60E3\n0xC1DB\t0x60F3\n0xC1DC\t0x635C\n0xC1DD\t0x6383\n0xC1DE\t0x633F\n0xC1DF\t0x63BB\n0xC1E0\t0x64CD\n0xC1E1\t0x65E9\n0xC1E2\t0x66F9\n0xC1E3\t0x5DE3\n0xC1E4\t0x69CD\n0xC1E5\t0x69FD\n0xC1E6\t0x6F15\n0xC1E7\t0x71E5\n0xC1E8\t0x4E89\n0xC1E9\t0x75E9\n0xC1EA\t0x76F8\n0xC1EB\t0x7A93\n0xC1EC\t0x7CDF\n0xC1ED\t0x7DCF\n0xC1EE\t0x7D9C\n0xC1EF\t0x8061\n0xC1F0\t0x8349\n0xC1F1\t0x8358\n0xC1F2\t0x846C\n0xC1F3\t0x84BC\n0xC1F4\t0x85FB\n0xC1F5\t0x88C5\n0xC1F6\t0x8D70\n0xC1F7\t0x9001\n0xC1F8\t0x906D\n0xC1F9\t0x9397\n0xC1FA\t0x971C\n0xC1FB\t0x9A12\n0xC1FC\t0x50CF\n0xC1FD\t0x5897\n0xC1FE\t0x618E\n0xC2A1\t0x81D3\n0xC2A2\t0x8535\n0xC2A3\t0x8D08\n0xC2A4\t0x9020\n0xC2A5\t0x4FC3\n0xC2A6\t0x5074\n0xC2A7\t0x5247\n0xC2A8\t0x5373\n0xC2A9\t0x606F\n0xC2AA\t0x6349\n0xC2AB\t0x675F\n0xC2AC\t0x6E2C\n0xC2AD\t0x8DB3\n0xC2AE\t0x901F\n0xC2AF\t0x4FD7\n0xC2B0\t0x5C5E\n0xC2B1\t0x8CCA\n0xC2B2\t0x65CF\n0xC2B3\t0x7D9A\n0xC2B4\t0x5352\n0xC2B5\t0x8896\n0xC2B6\t0x5176\n0xC2B7\t0x63C3\n0xC2B8\t0x5B58\n0xC2B9\t0x5B6B\n0xC2BA\t0x5C0A\n0xC2BB\t0x640D\n0xC2BC\t0x6751\n0xC2BD\t0x905C\n0xC2BE\t0x4ED6\n0xC2BF\t0x591A\n0xC2C0\t0x592A\n0xC2C1\t0x6C70\n0xC2C2\t0x8A51\n0xC2C3\t0x553E\n0xC2C4\t0x5815\n0xC2C5\t0x59A5\n0xC2C6\t0x60F0\n0xC2C7\t0x6253\n0xC2C8\t0x67C1\n0xC2C9\t0x8235\n0xC2CA\t0x6955\n0xC2CB\t0x9640\n0xC2CC\t0x99C4\n0xC2CD\t0x9A28\n0xC2CE\t0x4F53\n0xC2CF\t0x5806\n0xC2D0\t0x5BFE\n0xC2D1\t0x8010\n0xC2D2\t0x5CB1\n0xC2D3\t0x5E2F\n0xC2D4\t0x5F85\n0xC2D5\t0x6020\n0xC2D6\t0x614B\n0xC2D7\t0x6234\n0xC2D8\t0x66FF\n0xC2D9\t0x6CF0\n0xC2DA\t0x6EDE\n0xC2DB\t0x80CE\n0xC2DC\t0x817F\n0xC2DD\t0x82D4\n0xC2DE\t0x888B\n0xC2DF\t0x8CB8\n0xC2E0\t0x9000\n0xC2E1\t0x902E\n0xC2E2\t0x968A\n0xC2E3\t0x9EDB\n0xC2E4\t0x9BDB\n0xC2E5\t0x4EE3\n0xC2E6\t0x53F0\n0xC2E7\t0x5927\n0xC2E8\t0x7B2C\n0xC2E9\t0x918D\n0xC2EA\t0x984C\n0xC2EB\t0x9DF9\n0xC2EC\t0x6EDD\n0xC2ED\t0x7027\n0xC2EE\t0x5353\n0xC2EF\t0x5544\n0xC2F0\t0x5B85\n0xC2F1\t0x6258\n0xC2F2\t0x629E\n0xC2F3\t0x62D3\n0xC2F4\t0x6CA2\n0xC2F5\t0x6FEF\n0xC2F6\t0x7422\n0xC2F7\t0x8A17\n0xC2F8\t0x9438\n0xC2F9\t0x6FC1\n0xC2FA\t0x8AFE\n0xC2FB\t0x8338\n0xC2FC\t0x51E7\n0xC2FD\t0x86F8\n0xC2FE\t0x53EA\n0xC3A1\t0x53E9\n0xC3A2\t0x4F46\n0xC3A3\t0x9054\n0xC3A4\t0x8FB0\n0xC3A5\t0x596A\n0xC3A6\t0x8131\n0xC3A7\t0x5DFD\n0xC3A8\t0x7AEA\n0xC3A9\t0x8FBF\n0xC3AA\t0x68DA\n0xC3AB\t0x8C37\n0xC3AC\t0x72F8\n0xC3AD\t0x9C48\n0xC3AE\t0x6A3D\n0xC3AF\t0x8AB0\n0xC3B0\t0x4E39\n0xC3B1\t0x5358\n0xC3B2\t0x5606\n0xC3B3\t0x5766\n0xC3B4\t0x62C5\n0xC3B5\t0x63A2\n0xC3B6\t0x65E6\n0xC3B7\t0x6B4E\n0xC3B8\t0x6DE1\n0xC3B9\t0x6E5B\n0xC3BA\t0x70AD\n0xC3BB\t0x77ED\n0xC3BC\t0x7AEF\n0xC3BD\t0x7BAA\n0xC3BE\t0x7DBB\n0xC3BF\t0x803D\n0xC3C0\t0x80C6\n0xC3C1\t0x86CB\n0xC3C2\t0x8A95\n0xC3C3\t0x935B\n0xC3C4\t0x56E3\n0xC3C5\t0x58C7\n0xC3C6\t0x5F3E\n0xC3C7\t0x65AD\n0xC3C8\t0x6696\n0xC3C9\t0x6A80\n0xC3CA\t0x6BB5\n0xC3CB\t0x7537\n0xC3CC\t0x8AC7\n0xC3CD\t0x5024\n0xC3CE\t0x77E5\n0xC3CF\t0x5730\n0xC3D0\t0x5F1B\n0xC3D1\t0x6065\n0xC3D2\t0x667A\n0xC3D3\t0x6C60\n0xC3D4\t0x75F4\n0xC3D5\t0x7A1A\n0xC3D6\t0x7F6E\n0xC3D7\t0x81F4\n0xC3D8\t0x8718\n0xC3D9\t0x9045\n0xC3DA\t0x99B3\n0xC3DB\t0x7BC9\n0xC3DC\t0x755C\n0xC3DD\t0x7AF9\n0xC3DE\t0x7B51\n0xC3DF\t0x84C4\n0xC3E0\t0x9010\n0xC3E1\t0x79E9\n0xC3E2\t0x7A92\n0xC3E3\t0x8336\n0xC3E4\t0x5AE1\n0xC3E5\t0x7740\n0xC3E6\t0x4E2D\n0xC3E7\t0x4EF2\n0xC3E8\t0x5B99\n0xC3E9\t0x5FE0\n0xC3EA\t0x62BD\n0xC3EB\t0x663C\n0xC3EC\t0x67F1\n0xC3ED\t0x6CE8\n0xC3EE\t0x866B\n0xC3EF\t0x8877\n0xC3F0\t0x8A3B\n0xC3F1\t0x914E\n0xC3F2\t0x92F3\n0xC3F3\t0x99D0\n0xC3F4\t0x6A17\n0xC3F5\t0x7026\n0xC3F6\t0x732A\n0xC3F7\t0x82E7\n0xC3F8\t0x8457\n0xC3F9\t0x8CAF\n0xC3FA\t0x4E01\n0xC3FB\t0x5146\n0xC3FC\t0x51CB\n0xC3FD\t0x558B\n0xC3FE\t0x5BF5\n0xC4A1\t0x5E16\n0xC4A2\t0x5E33\n0xC4A3\t0x5E81\n0xC4A4\t0x5F14\n0xC4A5\t0x5F35\n0xC4A6\t0x5F6B\n0xC4A7\t0x5FB4\n0xC4A8\t0x61F2\n0xC4A9\t0x6311\n0xC4AA\t0x66A2\n0xC4AB\t0x671D\n0xC4AC\t0x6F6E\n0xC4AD\t0x7252\n0xC4AE\t0x753A\n0xC4AF\t0x773A\n0xC4B0\t0x8074\n0xC4B1\t0x8139\n0xC4B2\t0x8178\n0xC4B3\t0x8776\n0xC4B4\t0x8ABF\n0xC4B5\t0x8ADC\n0xC4B6\t0x8D85\n0xC4B7\t0x8DF3\n0xC4B8\t0x929A\n0xC4B9\t0x9577\n0xC4BA\t0x9802\n0xC4BB\t0x9CE5\n0xC4BC\t0x52C5\n0xC4BD\t0x6357\n0xC4BE\t0x76F4\n0xC4BF\t0x6715\n0xC4C0\t0x6C88\n0xC4C1\t0x73CD\n0xC4C2\t0x8CC3\n0xC4C3\t0x93AE\n0xC4C4\t0x9673\n0xC4C5\t0x6D25\n0xC4C6\t0x589C\n0xC4C7\t0x690E\n0xC4C8\t0x69CC\n0xC4C9\t0x8FFD\n0xC4CA\t0x939A\n0xC4CB\t0x75DB\n0xC4CC\t0x901A\n0xC4CD\t0x585A\n0xC4CE\t0x6802\n0xC4CF\t0x63B4\n0xC4D0\t0x69FB\n0xC4D1\t0x4F43\n0xC4D2\t0x6F2C\n0xC4D3\t0x67D8\n0xC4D4\t0x8FBB\n0xC4D5\t0x8526\n0xC4D6\t0x7DB4\n0xC4D7\t0x9354\n0xC4D8\t0x693F\n0xC4D9\t0x6F70\n0xC4DA\t0x576A\n0xC4DB\t0x58F7\n0xC4DC\t0x5B2C\n0xC4DD\t0x7D2C\n0xC4DE\t0x722A\n0xC4DF\t0x540A\n0xC4E0\t0x91E3\n0xC4E1\t0x9DB4\n0xC4E2\t0x4EAD\n0xC4E3\t0x4F4E\n0xC4E4\t0x505C\n0xC4E5\t0x5075\n0xC4E6\t0x5243\n0xC4E7\t0x8C9E\n0xC4E8\t0x5448\n0xC4E9\t0x5824\n0xC4EA\t0x5B9A\n0xC4EB\t0x5E1D\n0xC4EC\t0x5E95\n0xC4ED\t0x5EAD\n0xC4EE\t0x5EF7\n0xC4EF\t0x5F1F\n0xC4F0\t0x608C\n0xC4F1\t0x62B5\n0xC4F2\t0x633A\n0xC4F3\t0x63D0\n0xC4F4\t0x68AF\n0xC4F5\t0x6C40\n0xC4F6\t0x7887\n0xC4F7\t0x798E\n0xC4F8\t0x7A0B\n0xC4F9\t0x7DE0\n0xC4FA\t0x8247\n0xC4FB\t0x8A02\n0xC4FC\t0x8AE6\n0xC4FD\t0x8E44\n0xC4FE\t0x9013\n0xC5A1\t0x90B8\n0xC5A2\t0x912D\n0xC5A3\t0x91D8\n0xC5A4\t0x9F0E\n0xC5A5\t0x6CE5\n0xC5A6\t0x6458\n0xC5A7\t0x64E2\n0xC5A8\t0x6575\n0xC5A9\t0x6EF4\n0xC5AA\t0x7684\n0xC5AB\t0x7B1B\n0xC5AC\t0x9069\n0xC5AD\t0x93D1\n0xC5AE\t0x6EBA\n0xC5AF\t0x54F2\n0xC5B0\t0x5FB9\n0xC5B1\t0x64A4\n0xC5B2\t0x8F4D\n0xC5B3\t0x8FED\n0xC5B4\t0x9244\n0xC5B5\t0x5178\n0xC5B6\t0x586B\n0xC5B7\t0x5929\n0xC5B8\t0x5C55\n0xC5B9\t0x5E97\n0xC5BA\t0x6DFB\n0xC5BB\t0x7E8F\n0xC5BC\t0x751C\n0xC5BD\t0x8CBC\n0xC5BE\t0x8EE2\n0xC5BF\t0x985B\n0xC5C0\t0x70B9\n0xC5C1\t0x4F1D\n0xC5C2\t0x6BBF\n0xC5C3\t0x6FB1\n0xC5C4\t0x7530\n0xC5C5\t0x96FB\n0xC5C6\t0x514E\n0xC5C7\t0x5410\n0xC5C8\t0x5835\n0xC5C9\t0x5857\n0xC5CA\t0x59AC\n0xC5CB\t0x5C60\n0xC5CC\t0x5F92\n0xC5CD\t0x6597\n0xC5CE\t0x675C\n0xC5CF\t0x6E21\n0xC5D0\t0x767B\n0xC5D1\t0x83DF\n0xC5D2\t0x8CED\n0xC5D3\t0x9014\n0xC5D4\t0x90FD\n0xC5D5\t0x934D\n0xC5D6\t0x7825\n0xC5D7\t0x783A\n0xC5D8\t0x52AA\n0xC5D9\t0x5EA6\n0xC5DA\t0x571F\n0xC5DB\t0x5974\n0xC5DC\t0x6012\n0xC5DD\t0x5012\n0xC5DE\t0x515A\n0xC5DF\t0x51AC\n0xC5E0\t0x51CD\n0xC5E1\t0x5200\n0xC5E2\t0x5510\n0xC5E3\t0x5854\n0xC5E4\t0x5858\n0xC5E5\t0x5957\n0xC5E6\t0x5B95\n0xC5E7\t0x5CF6\n0xC5E8\t0x5D8B\n0xC5E9\t0x60BC\n0xC5EA\t0x6295\n0xC5EB\t0x642D\n0xC5EC\t0x6771\n0xC5ED\t0x6843\n0xC5EE\t0x68BC\n0xC5EF\t0x68DF\n0xC5F0\t0x76D7\n0xC5F1\t0x6DD8\n0xC5F2\t0x6E6F\n0xC5F3\t0x6D9B\n0xC5F4\t0x706F\n0xC5F5\t0x71C8\n0xC5F6\t0x5F53\n0xC5F7\t0x75D8\n0xC5F8\t0x7977\n0xC5F9\t0x7B49\n0xC5FA\t0x7B54\n0xC5FB\t0x7B52\n0xC5FC\t0x7CD6\n0xC5FD\t0x7D71\n0xC5FE\t0x5230\n0xC6A1\t0x8463\n0xC6A2\t0x8569\n0xC6A3\t0x85E4\n0xC6A4\t0x8A0E\n0xC6A5\t0x8B04\n0xC6A6\t0x8C46\n0xC6A7\t0x8E0F\n0xC6A8\t0x9003\n0xC6A9\t0x900F\n0xC6AA\t0x9419\n0xC6AB\t0x9676\n0xC6AC\t0x982D\n0xC6AD\t0x9A30\n0xC6AE\t0x95D8\n0xC6AF\t0x50CD\n0xC6B0\t0x52D5\n0xC6B1\t0x540C\n0xC6B2\t0x5802\n0xC6B3\t0x5C0E\n0xC6B4\t0x61A7\n0xC6B5\t0x649E\n0xC6B6\t0x6D1E\n0xC6B7\t0x77B3\n0xC6B8\t0x7AE5\n0xC6B9\t0x80F4\n0xC6BA\t0x8404\n0xC6BB\t0x9053\n0xC6BC\t0x9285\n0xC6BD\t0x5CE0\n0xC6BE\t0x9D07\n0xC6BF\t0x533F\n0xC6C0\t0x5F97\n0xC6C1\t0x5FB3\n0xC6C2\t0x6D9C\n0xC6C3\t0x7279\n0xC6C4\t0x7763\n0xC6C5\t0x79BF\n0xC6C6\t0x7BE4\n0xC6C7\t0x6BD2\n0xC6C8\t0x72EC\n0xC6C9\t0x8AAD\n0xC6CA\t0x6803\n0xC6CB\t0x6A61\n0xC6CC\t0x51F8\n0xC6CD\t0x7A81\n0xC6CE\t0x6934\n0xC6CF\t0x5C4A\n0xC6D0\t0x9CF6\n0xC6D1\t0x82EB\n0xC6D2\t0x5BC5\n0xC6D3\t0x9149\n0xC6D4\t0x701E\n0xC6D5\t0x5678\n0xC6D6\t0x5C6F\n0xC6D7\t0x60C7\n0xC6D8\t0x6566\n0xC6D9\t0x6C8C\n0xC6DA\t0x8C5A\n0xC6DB\t0x9041\n0xC6DC\t0x9813\n0xC6DD\t0x5451\n0xC6DE\t0x66C7\n0xC6DF\t0x920D\n0xC6E0\t0x5948\n0xC6E1\t0x90A3\n0xC6E2\t0x5185\n0xC6E3\t0x4E4D\n0xC6E4\t0x51EA\n0xC6E5\t0x8599\n0xC6E6\t0x8B0E\n0xC6E7\t0x7058\n0xC6E8\t0x637A\n0xC6E9\t0x934B\n0xC6EA\t0x6962\n0xC6EB\t0x99B4\n0xC6EC\t0x7E04\n0xC6ED\t0x7577\n0xC6EE\t0x5357\n0xC6EF\t0x6960\n0xC6F0\t0x8EDF\n0xC6F1\t0x96E3\n0xC6F2\t0x6C5D\n0xC6F3\t0x4E8C\n0xC6F4\t0x5C3C\n0xC6F5\t0x5F10\n0xC6F6\t0x8FE9\n0xC6F7\t0x5302\n0xC6F8\t0x8CD1\n0xC6F9\t0x8089\n0xC6FA\t0x8679\n0xC6FB\t0x5EFF\n0xC6FC\t0x65E5\n0xC6FD\t0x4E73\n0xC6FE\t0x5165\n0xC7A1\t0x5982\n0xC7A2\t0x5C3F\n0xC7A3\t0x97EE\n0xC7A4\t0x4EFB\n0xC7A5\t0x598A\n0xC7A6\t0x5FCD\n0xC7A7\t0x8A8D\n0xC7A8\t0x6FE1\n0xC7A9\t0x79B0\n0xC7AA\t0x7962\n0xC7AB\t0x5BE7\n0xC7AC\t0x8471\n0xC7AD\t0x732B\n0xC7AE\t0x71B1\n0xC7AF\t0x5E74\n0xC7B0\t0x5FF5\n0xC7B1\t0x637B\n0xC7B2\t0x649A\n0xC7B3\t0x71C3\n0xC7B4\t0x7C98\n0xC7B5\t0x4E43\n0xC7B6\t0x5EFC\n0xC7B7\t0x4E4B\n0xC7B8\t0x57DC\n0xC7B9\t0x56A2\n0xC7BA\t0x60A9\n0xC7BB\t0x6FC3\n0xC7BC\t0x7D0D\n0xC7BD\t0x80FD\n0xC7BE\t0x8133\n0xC7BF\t0x81BF\n0xC7C0\t0x8FB2\n0xC7C1\t0x8997\n0xC7C2\t0x86A4\n0xC7C3\t0x5DF4\n0xC7C4\t0x628A\n0xC7C5\t0x64AD\n0xC7C6\t0x8987\n0xC7C7\t0x6777\n0xC7C8\t0x6CE2\n0xC7C9\t0x6D3E\n0xC7CA\t0x7436\n0xC7CB\t0x7834\n0xC7CC\t0x5A46\n0xC7CD\t0x7F75\n0xC7CE\t0x82AD\n0xC7CF\t0x99AC\n0xC7D0\t0x4FF3\n0xC7D1\t0x5EC3\n0xC7D2\t0x62DD\n0xC7D3\t0x6392\n0xC7D4\t0x6557\n0xC7D5\t0x676F\n0xC7D6\t0x76C3\n0xC7D7\t0x724C\n0xC7D8\t0x80CC\n0xC7D9\t0x80BA\n0xC7DA\t0x8F29\n0xC7DB\t0x914D\n0xC7DC\t0x500D\n0xC7DD\t0x57F9\n0xC7DE\t0x5A92\n0xC7DF\t0x6885\n0xC7E0\t0x6973\n0xC7E1\t0x7164\n0xC7E2\t0x72FD\n0xC7E3\t0x8CB7\n0xC7E4\t0x58F2\n0xC7E5\t0x8CE0\n0xC7E6\t0x966A\n0xC7E7\t0x9019\n0xC7E8\t0x877F\n0xC7E9\t0x79E4\n0xC7EA\t0x77E7\n0xC7EB\t0x8429\n0xC7EC\t0x4F2F\n0xC7ED\t0x5265\n0xC7EE\t0x535A\n0xC7EF\t0x62CD\n0xC7F0\t0x67CF\n0xC7F1\t0x6CCA\n0xC7F2\t0x767D\n0xC7F3\t0x7B94\n0xC7F4\t0x7C95\n0xC7F5\t0x8236\n0xC7F6\t0x8584\n0xC7F7\t0x8FEB\n0xC7F8\t0x66DD\n0xC7F9\t0x6F20\n0xC7FA\t0x7206\n0xC7FB\t0x7E1B\n0xC7FC\t0x83AB\n0xC7FD\t0x99C1\n0xC7FE\t0x9EA6\n0xC8A1\t0x51FD\n0xC8A2\t0x7BB1\n0xC8A3\t0x7872\n0xC8A4\t0x7BB8\n0xC8A5\t0x8087\n0xC8A6\t0x7B48\n0xC8A7\t0x6AE8\n0xC8A8\t0x5E61\n0xC8A9\t0x808C\n0xC8AA\t0x7551\n0xC8AB\t0x7560\n0xC8AC\t0x516B\n0xC8AD\t0x9262\n0xC8AE\t0x6E8C\n0xC8AF\t0x767A\n0xC8B0\t0x9197\n0xC8B1\t0x9AEA\n0xC8B2\t0x4F10\n0xC8B3\t0x7F70\n0xC8B4\t0x629C\n0xC8B5\t0x7B4F\n0xC8B6\t0x95A5\n0xC8B7\t0x9CE9\n0xC8B8\t0x567A\n0xC8B9\t0x5859\n0xC8BA\t0x86E4\n0xC8BB\t0x96BC\n0xC8BC\t0x4F34\n0xC8BD\t0x5224\n0xC8BE\t0x534A\n0xC8BF\t0x53CD\n0xC8C0\t0x53DB\n0xC8C1\t0x5E06\n0xC8C2\t0x642C\n0xC8C3\t0x6591\n0xC8C4\t0x677F\n0xC8C5\t0x6C3E\n0xC8C6\t0x6C4E\n0xC8C7\t0x7248\n0xC8C8\t0x72AF\n0xC8C9\t0x73ED\n0xC8CA\t0x7554\n0xC8CB\t0x7E41\n0xC8CC\t0x822C\n0xC8CD\t0x85E9\n0xC8CE\t0x8CA9\n0xC8CF\t0x7BC4\n0xC8D0\t0x91C6\n0xC8D1\t0x7169\n0xC8D2\t0x9812\n0xC8D3\t0x98EF\n0xC8D4\t0x633D\n0xC8D5\t0x6669\n0xC8D6\t0x756A\n0xC8D7\t0x76E4\n0xC8D8\t0x78D0\n0xC8D9\t0x8543\n0xC8DA\t0x86EE\n0xC8DB\t0x532A\n0xC8DC\t0x5351\n0xC8DD\t0x5426\n0xC8DE\t0x5983\n0xC8DF\t0x5E87\n0xC8E0\t0x5F7C\n0xC8E1\t0x60B2\n0xC8E2\t0x6249\n0xC8E3\t0x6279\n0xC8E4\t0x62AB\n0xC8E5\t0x6590\n0xC8E6\t0x6BD4\n0xC8E7\t0x6CCC\n0xC8E8\t0x75B2\n0xC8E9\t0x76AE\n0xC8EA\t0x7891\n0xC8EB\t0x79D8\n0xC8EC\t0x7DCB\n0xC8ED\t0x7F77\n0xC8EE\t0x80A5\n0xC8EF\t0x88AB\n0xC8F0\t0x8AB9\n0xC8F1\t0x8CBB\n0xC8F2\t0x907F\n0xC8F3\t0x975E\n0xC8F4\t0x98DB\n0xC8F5\t0x6A0B\n0xC8F6\t0x7C38\n0xC8F7\t0x5099\n0xC8F8\t0x5C3E\n0xC8F9\t0x5FAE\n0xC8FA\t0x6787\n0xC8FB\t0x6BD8\n0xC8FC\t0x7435\n0xC8FD\t0x7709\n0xC8FE\t0x7F8E\n0xC9A1\t0x9F3B\n0xC9A2\t0x67CA\n0xC9A3\t0x7A17\n0xC9A4\t0x5339\n0xC9A5\t0x758B\n0xC9A6\t0x9AED\n0xC9A7\t0x5F66\n0xC9A8\t0x819D\n0xC9A9\t0x83F1\n0xC9AA\t0x8098\n0xC9AB\t0x5F3C\n0xC9AC\t0x5FC5\n0xC9AD\t0x7562\n0xC9AE\t0x7B46\n0xC9AF\t0x903C\n0xC9B0\t0x6867\n0xC9B1\t0x59EB\n0xC9B2\t0x5A9B\n0xC9B3\t0x7D10\n0xC9B4\t0x767E\n0xC9B5\t0x8B2C\n0xC9B6\t0x4FF5\n0xC9B7\t0x5F6A\n0xC9B8\t0x6A19\n0xC9B9\t0x6C37\n0xC9BA\t0x6F02\n0xC9BB\t0x74E2\n0xC9BC\t0x7968\n0xC9BD\t0x8868\n0xC9BE\t0x8A55\n0xC9BF\t0x8C79\n0xC9C0\t0x5EDF\n0xC9C1\t0x63CF\n0xC9C2\t0x75C5\n0xC9C3\t0x79D2\n0xC9C4\t0x82D7\n0xC9C5\t0x9328\n0xC9C6\t0x92F2\n0xC9C7\t0x849C\n0xC9C8\t0x86ED\n0xC9C9\t0x9C2D\n0xC9CA\t0x54C1\n0xC9CB\t0x5F6C\n0xC9CC\t0x658C\n0xC9CD\t0x6D5C\n0xC9CE\t0x7015\n0xC9CF\t0x8CA7\n0xC9D0\t0x8CD3\n0xC9D1\t0x983B\n0xC9D2\t0x654F\n0xC9D3\t0x74F6\n0xC9D4\t0x4E0D\n0xC9D5\t0x4ED8\n0xC9D6\t0x57E0\n0xC9D7\t0x592B\n0xC9D8\t0x5A66\n0xC9D9\t0x5BCC\n0xC9DA\t0x51A8\n0xC9DB\t0x5E03\n0xC9DC\t0x5E9C\n0xC9DD\t0x6016\n0xC9DE\t0x6276\n0xC9DF\t0x6577\n0xC9E0\t0x65A7\n0xC9E1\t0x666E\n0xC9E2\t0x6D6E\n0xC9E3\t0x7236\n0xC9E4\t0x7B26\n0xC9E5\t0x8150\n0xC9E6\t0x819A\n0xC9E7\t0x8299\n0xC9E8\t0x8B5C\n0xC9E9\t0x8CA0\n0xC9EA\t0x8CE6\n0xC9EB\t0x8D74\n0xC9EC\t0x961C\n0xC9ED\t0x9644\n0xC9EE\t0x4FAE\n0xC9EF\t0x64AB\n0xC9F0\t0x6B66\n0xC9F1\t0x821E\n0xC9F2\t0x8461\n0xC9F3\t0x856A\n0xC9F4\t0x90E8\n0xC9F5\t0x5C01\n0xC9F6\t0x6953\n0xC9F7\t0x98A8\n0xC9F8\t0x847A\n0xC9F9\t0x8557\n0xC9FA\t0x4F0F\n0xC9FB\t0x526F\n0xC9FC\t0x5FA9\n0xC9FD\t0x5E45\n0xC9FE\t0x670D\n0xCAA1\t0x798F\n0xCAA2\t0x8179\n0xCAA3\t0x8907\n0xCAA4\t0x8986\n0xCAA5\t0x6DF5\n0xCAA6\t0x5F17\n0xCAA7\t0x6255\n0xCAA8\t0x6CB8\n0xCAA9\t0x4ECF\n0xCAAA\t0x7269\n0xCAAB\t0x9B92\n0xCAAC\t0x5206\n0xCAAD\t0x543B\n0xCAAE\t0x5674\n0xCAAF\t0x58B3\n0xCAB0\t0x61A4\n0xCAB1\t0x626E\n0xCAB2\t0x711A\n0xCAB3\t0x596E\n0xCAB4\t0x7C89\n0xCAB5\t0x7CDE\n0xCAB6\t0x7D1B\n0xCAB7\t0x96F0\n0xCAB8\t0x6587\n0xCAB9\t0x805E\n0xCABA\t0x4E19\n0xCABB\t0x4F75\n0xCABC\t0x5175\n0xCABD\t0x5840\n0xCABE\t0x5E63\n0xCABF\t0x5E73\n0xCAC0\t0x5F0A\n0xCAC1\t0x67C4\n0xCAC2\t0x4E26\n0xCAC3\t0x853D\n0xCAC4\t0x9589\n0xCAC5\t0x965B\n0xCAC6\t0x7C73\n0xCAC7\t0x9801\n0xCAC8\t0x50FB\n0xCAC9\t0x58C1\n0xCACA\t0x7656\n0xCACB\t0x78A7\n0xCACC\t0x5225\n0xCACD\t0x77A5\n0xCACE\t0x8511\n0xCACF\t0x7B86\n0xCAD0\t0x504F\n0xCAD1\t0x5909\n0xCAD2\t0x7247\n0xCAD3\t0x7BC7\n0xCAD4\t0x7DE8\n0xCAD5\t0x8FBA\n0xCAD6\t0x8FD4\n0xCAD7\t0x904D\n0xCAD8\t0x4FBF\n0xCAD9\t0x52C9\n0xCADA\t0x5A29\n0xCADB\t0x5F01\n0xCADC\t0x97AD\n0xCADD\t0x4FDD\n0xCADE\t0x8217\n0xCADF\t0x92EA\n0xCAE0\t0x5703\n0xCAE1\t0x6355\n0xCAE2\t0x6B69\n0xCAE3\t0x752B\n0xCAE4\t0x88DC\n0xCAE5\t0x8F14\n0xCAE6\t0x7A42\n0xCAE7\t0x52DF\n0xCAE8\t0x5893\n0xCAE9\t0x6155\n0xCAEA\t0x620A\n0xCAEB\t0x66AE\n0xCAEC\t0x6BCD\n0xCAED\t0x7C3F\n0xCAEE\t0x83E9\n0xCAEF\t0x5023\n0xCAF0\t0x4FF8\n0xCAF1\t0x5305\n0xCAF2\t0x5446\n0xCAF3\t0x5831\n0xCAF4\t0x5949\n0xCAF5\t0x5B9D\n0xCAF6\t0x5CF0\n0xCAF7\t0x5CEF\n0xCAF8\t0x5D29\n0xCAF9\t0x5E96\n0xCAFA\t0x62B1\n0xCAFB\t0x6367\n0xCAFC\t0x653E\n0xCAFD\t0x65B9\n0xCAFE\t0x670B\n0xCBA1\t0x6CD5\n0xCBA2\t0x6CE1\n0xCBA3\t0x70F9\n0xCBA4\t0x7832\n0xCBA5\t0x7E2B\n0xCBA6\t0x80DE\n0xCBA7\t0x82B3\n0xCBA8\t0x840C\n0xCBA9\t0x84EC\n0xCBAA\t0x8702\n0xCBAB\t0x8912\n0xCBAC\t0x8A2A\n0xCBAD\t0x8C4A\n0xCBAE\t0x90A6\n0xCBAF\t0x92D2\n0xCBB0\t0x98FD\n0xCBB1\t0x9CF3\n0xCBB2\t0x9D6C\n0xCBB3\t0x4E4F\n0xCBB4\t0x4EA1\n0xCBB5\t0x508D\n0xCBB6\t0x5256\n0xCBB7\t0x574A\n0xCBB8\t0x59A8\n0xCBB9\t0x5E3D\n0xCBBA\t0x5FD8\n0xCBBB\t0x5FD9\n0xCBBC\t0x623F\n0xCBBD\t0x66B4\n0xCBBE\t0x671B\n0xCBBF\t0x67D0\n0xCBC0\t0x68D2\n0xCBC1\t0x5192\n0xCBC2\t0x7D21\n0xCBC3\t0x80AA\n0xCBC4\t0x81A8\n0xCBC5\t0x8B00\n0xCBC6\t0x8C8C\n0xCBC7\t0x8CBF\n0xCBC8\t0x927E\n0xCBC9\t0x9632\n0xCBCA\t0x5420\n0xCBCB\t0x982C\n0xCBCC\t0x5317\n0xCBCD\t0x50D5\n0xCBCE\t0x535C\n0xCBCF\t0x58A8\n0xCBD0\t0x64B2\n0xCBD1\t0x6734\n0xCBD2\t0x7267\n0xCBD3\t0x7766\n0xCBD4\t0x7A46\n0xCBD5\t0x91E6\n0xCBD6\t0x52C3\n0xCBD7\t0x6CA1\n0xCBD8\t0x6B86\n0xCBD9\t0x5800\n0xCBDA\t0x5E4C\n0xCBDB\t0x5954\n0xCBDC\t0x672C\n0xCBDD\t0x7FFB\n0xCBDE\t0x51E1\n0xCBDF\t0x76C6\n0xCBE0\t0x6469\n0xCBE1\t0x78E8\n0xCBE2\t0x9B54\n0xCBE3\t0x9EBB\n0xCBE4\t0x57CB\n0xCBE5\t0x59B9\n0xCBE6\t0x6627\n0xCBE7\t0x679A\n0xCBE8\t0x6BCE\n0xCBE9\t0x54E9\n0xCBEA\t0x69D9\n0xCBEB\t0x5E55\n0xCBEC\t0x819C\n0xCBED\t0x6795\n0xCBEE\t0x9BAA\n0xCBEF\t0x67FE\n0xCBF0\t0x9C52\n0xCBF1\t0x685D\n0xCBF2\t0x4EA6\n0xCBF3\t0x4FE3\n0xCBF4\t0x53C8\n0xCBF5\t0x62B9\n0xCBF6\t0x672B\n0xCBF7\t0x6CAB\n0xCBF8\t0x8FC4\n0xCBF9\t0x4FAD\n0xCBFA\t0x7E6D\n0xCBFB\t0x9EBF\n0xCBFC\t0x4E07\n0xCBFD\t0x6162\n0xCBFE\t0x6E80\n0xCCA1\t0x6F2B\n0xCCA2\t0x8513\n0xCCA3\t0x5473\n0xCCA4\t0x672A\n0xCCA5\t0x9B45\n0xCCA6\t0x5DF3\n0xCCA7\t0x7B95\n0xCCA8\t0x5CAC\n0xCCA9\t0x5BC6\n0xCCAA\t0x871C\n0xCCAB\t0x6E4A\n0xCCAC\t0x84D1\n0xCCAD\t0x7A14\n0xCCAE\t0x8108\n0xCCAF\t0x5999\n0xCCB0\t0x7C8D\n0xCCB1\t0x6C11\n0xCCB2\t0x7720\n0xCCB3\t0x52D9\n0xCCB4\t0x5922\n0xCCB5\t0x7121\n0xCCB6\t0x725F\n0xCCB7\t0x77DB\n0xCCB8\t0x9727\n0xCCB9\t0x9D61\n0xCCBA\t0x690B\n0xCCBB\t0x5A7F\n0xCCBC\t0x5A18\n0xCCBD\t0x51A5\n0xCCBE\t0x540D\n0xCCBF\t0x547D\n0xCCC0\t0x660E\n0xCCC1\t0x76DF\n0xCCC2\t0x8FF7\n0xCCC3\t0x9298\n0xCCC4\t0x9CF4\n0xCCC5\t0x59EA\n0xCCC6\t0x725D\n0xCCC7\t0x6EC5\n0xCCC8\t0x514D\n0xCCC9\t0x68C9\n0xCCCA\t0x7DBF\n0xCCCB\t0x7DEC\n0xCCCC\t0x9762\n0xCCCD\t0x9EBA\n0xCCCE\t0x6478\n0xCCCF\t0x6A21\n0xCCD0\t0x8302\n0xCCD1\t0x5984\n0xCCD2\t0x5B5F\n0xCCD3\t0x6BDB\n0xCCD4\t0x731B\n0xCCD5\t0x76F2\n0xCCD6\t0x7DB2\n0xCCD7\t0x8017\n0xCCD8\t0x8499\n0xCCD9\t0x5132\n0xCCDA\t0x6728\n0xCCDB\t0x9ED9\n0xCCDC\t0x76EE\n0xCCDD\t0x6762\n0xCCDE\t0x52FF\n0xCCDF\t0x9905\n0xCCE0\t0x5C24\n0xCCE1\t0x623B\n0xCCE2\t0x7C7E\n0xCCE3\t0x8CB0\n0xCCE4\t0x554F\n0xCCE5\t0x60B6\n0xCCE6\t0x7D0B\n0xCCE7\t0x9580\n0xCCE8\t0x5301\n0xCCE9\t0x4E5F\n0xCCEA\t0x51B6\n0xCCEB\t0x591C\n0xCCEC\t0x723A\n0xCCED\t0x8036\n0xCCEE\t0x91CE\n0xCCEF\t0x5F25\n0xCCF0\t0x77E2\n0xCCF1\t0x5384\n0xCCF2\t0x5F79\n0xCCF3\t0x7D04\n0xCCF4\t0x85AC\n0xCCF5\t0x8A33\n0xCCF6\t0x8E8D\n0xCCF7\t0x9756\n0xCCF8\t0x67F3\n0xCCF9\t0x85AE\n0xCCFA\t0x9453\n0xCCFB\t0x6109\n0xCCFC\t0x6108\n0xCCFD\t0x6CB9\n0xCCFE\t0x7652\n0xCDA1\t0x8AED\n0xCDA2\t0x8F38\n0xCDA3\t0x552F\n0xCDA4\t0x4F51\n0xCDA5\t0x512A\n0xCDA6\t0x52C7\n0xCDA7\t0x53CB\n0xCDA8\t0x5BA5\n0xCDA9\t0x5E7D\n0xCDAA\t0x60A0\n0xCDAB\t0x6182\n0xCDAC\t0x63D6\n0xCDAD\t0x6709\n0xCDAE\t0x67DA\n0xCDAF\t0x6E67\n0xCDB0\t0x6D8C\n0xCDB1\t0x7336\n0xCDB2\t0x7337\n0xCDB3\t0x7531\n0xCDB4\t0x7950\n0xCDB5\t0x88D5\n0xCDB6\t0x8A98\n0xCDB7\t0x904A\n0xCDB8\t0x9091\n0xCDB9\t0x90F5\n0xCDBA\t0x96C4\n0xCDBB\t0x878D\n0xCDBC\t0x5915\n0xCDBD\t0x4E88\n0xCDBE\t0x4F59\n0xCDBF\t0x4E0E\n0xCDC0\t0x8A89\n0xCDC1\t0x8F3F\n0xCDC2\t0x9810\n0xCDC3\t0x50AD\n0xCDC4\t0x5E7C\n0xCDC5\t0x5996\n0xCDC6\t0x5BB9\n0xCDC7\t0x5EB8\n0xCDC8\t0x63DA\n0xCDC9\t0x63FA\n0xCDCA\t0x64C1\n0xCDCB\t0x66DC\n0xCDCC\t0x694A\n0xCDCD\t0x69D8\n0xCDCE\t0x6D0B\n0xCDCF\t0x6EB6\n0xCDD0\t0x7194\n0xCDD1\t0x7528\n0xCDD2\t0x7AAF\n0xCDD3\t0x7F8A\n0xCDD4\t0x8000\n0xCDD5\t0x8449\n0xCDD6\t0x84C9\n0xCDD7\t0x8981\n0xCDD8\t0x8B21\n0xCDD9\t0x8E0A\n0xCDDA\t0x9065\n0xCDDB\t0x967D\n0xCDDC\t0x990A\n0xCDDD\t0x617E\n0xCDDE\t0x6291\n0xCDDF\t0x6B32\n0xCDE0\t0x6C83\n0xCDE1\t0x6D74\n0xCDE2\t0x7FCC\n0xCDE3\t0x7FFC\n0xCDE4\t0x6DC0\n0xCDE5\t0x7F85\n0xCDE6\t0x87BA\n0xCDE7\t0x88F8\n0xCDE8\t0x6765\n0xCDE9\t0x83B1\n0xCDEA\t0x983C\n0xCDEB\t0x96F7\n0xCDEC\t0x6D1B\n0xCDED\t0x7D61\n0xCDEE\t0x843D\n0xCDEF\t0x916A\n0xCDF0\t0x4E71\n0xCDF1\t0x5375\n0xCDF2\t0x5D50\n0xCDF3\t0x6B04\n0xCDF4\t0x6FEB\n0xCDF5\t0x85CD\n0xCDF6\t0x862D\n0xCDF7\t0x89A7\n0xCDF8\t0x5229\n0xCDF9\t0x540F\n0xCDFA\t0x5C65\n0xCDFB\t0x674E\n0xCDFC\t0x68A8\n0xCDFD\t0x7406\n0xCDFE\t0x7483\n0xCEA1\t0x75E2\n0xCEA2\t0x88CF\n0xCEA3\t0x88E1\n0xCEA4\t0x91CC\n0xCEA5\t0x96E2\n0xCEA6\t0x9678\n0xCEA7\t0x5F8B\n0xCEA8\t0x7387\n0xCEA9\t0x7ACB\n0xCEAA\t0x844E\n0xCEAB\t0x63A0\n0xCEAC\t0x7565\n0xCEAD\t0x5289\n0xCEAE\t0x6D41\n0xCEAF\t0x6E9C\n0xCEB0\t0x7409\n0xCEB1\t0x7559\n0xCEB2\t0x786B\n0xCEB3\t0x7C92\n0xCEB4\t0x9686\n0xCEB5\t0x7ADC\n0xCEB6\t0x9F8D\n0xCEB7\t0x4FB6\n0xCEB8\t0x616E\n0xCEB9\t0x65C5\n0xCEBA\t0x865C\n0xCEBB\t0x4E86\n0xCEBC\t0x4EAE\n0xCEBD\t0x50DA\n0xCEBE\t0x4E21\n0xCEBF\t0x51CC\n0xCEC0\t0x5BEE\n0xCEC1\t0x6599\n0xCEC2\t0x6881\n0xCEC3\t0x6DBC\n0xCEC4\t0x731F\n0xCEC5\t0x7642\n0xCEC6\t0x77AD\n0xCEC7\t0x7A1C\n0xCEC8\t0x7CE7\n0xCEC9\t0x826F\n0xCECA\t0x8AD2\n0xCECB\t0x907C\n0xCECC\t0x91CF\n0xCECD\t0x9675\n0xCECE\t0x9818\n0xCECF\t0x529B\n0xCED0\t0x7DD1\n0xCED1\t0x502B\n0xCED2\t0x5398\n0xCED3\t0x6797\n0xCED4\t0x6DCB\n0xCED5\t0x71D0\n0xCED6\t0x7433\n0xCED7\t0x81E8\n0xCED8\t0x8F2A\n0xCED9\t0x96A3\n0xCEDA\t0x9C57\n0xCEDB\t0x9E9F\n0xCEDC\t0x7460\n0xCEDD\t0x5841\n0xCEDE\t0x6D99\n0xCEDF\t0x7D2F\n0xCEE0\t0x985E\n0xCEE1\t0x4EE4\n0xCEE2\t0x4F36\n0xCEE3\t0x4F8B\n0xCEE4\t0x51B7\n0xCEE5\t0x52B1\n0xCEE6\t0x5DBA\n0xCEE7\t0x601C\n0xCEE8\t0x73B2\n0xCEE9\t0x793C\n0xCEEA\t0x82D3\n0xCEEB\t0x9234\n0xCEEC\t0x96B7\n0xCEED\t0x96F6\n0xCEEE\t0x970A\n0xCEEF\t0x9E97\n0xCEF0\t0x9F62\n0xCEF1\t0x66A6\n0xCEF2\t0x6B74\n0xCEF3\t0x5217\n0xCEF4\t0x52A3\n0xCEF5\t0x70C8\n0xCEF6\t0x88C2\n0xCEF7\t0x5EC9\n0xCEF8\t0x604B\n0xCEF9\t0x6190\n0xCEFA\t0x6F23\n0xCEFB\t0x7149\n0xCEFC\t0x7C3E\n0xCEFD\t0x7DF4\n0xCEFE\t0x806F\n0xCFA1\t0x84EE\n0xCFA2\t0x9023\n0xCFA3\t0x932C\n0xCFA4\t0x5442\n0xCFA5\t0x9B6F\n0xCFA6\t0x6AD3\n0xCFA7\t0x7089\n0xCFA8\t0x8CC2\n0xCFA9\t0x8DEF\n0xCFAA\t0x9732\n0xCFAB\t0x52B4\n0xCFAC\t0x5A41\n0xCFAD\t0x5ECA\n0xCFAE\t0x5F04\n0xCFAF\t0x6717\n0xCFB0\t0x697C\n0xCFB1\t0x6994\n0xCFB2\t0x6D6A\n0xCFB3\t0x6F0F\n0xCFB4\t0x7262\n0xCFB5\t0x72FC\n0xCFB6\t0x7BED\n0xCFB7\t0x8001\n0xCFB8\t0x807E\n0xCFB9\t0x874B\n0xCFBA\t0x90CE\n0xCFBB\t0x516D\n0xCFBC\t0x9E93\n0xCFBD\t0x7984\n0xCFBE\t0x808B\n0xCFBF\t0x9332\n0xCFC0\t0x8AD6\n0xCFC1\t0x502D\n0xCFC2\t0x548C\n0xCFC3\t0x8A71\n0xCFC4\t0x6B6A\n0xCFC5\t0x8CC4\n0xCFC6\t0x8107\n0xCFC7\t0x60D1\n0xCFC8\t0x67A0\n0xCFC9\t0x9DF2\n0xCFCA\t0x4E99\n0xCFCB\t0x4E98\n0xCFCC\t0x9C10\n0xCFCD\t0x8A6B\n0xCFCE\t0x85C1\n0xCFCF\t0x8568\n0xCFD0\t0x6900\n0xCFD1\t0x6E7E\n0xCFD2\t0x7897\n0xCFD3\t0x8155\n0xD0A1\t0x5F0C\n0xD0A2\t0x4E10\n0xD0A3\t0x4E15\n0xD0A4\t0x4E2A\n0xD0A5\t0x4E31\n0xD0A6\t0x4E36\n0xD0A7\t0x4E3C\n0xD0A8\t0x4E3F\n0xD0A9\t0x4E42\n0xD0AA\t0x4E56\n0xD0AB\t0x4E58\n0xD0AC\t0x4E82\n0xD0AD\t0x4E85\n0xD0AE\t0x8C6B\n0xD0AF\t0x4E8A\n0xD0B0\t0x8212\n0xD0B1\t0x5F0D\n0xD0B2\t0x4E8E\n0xD0B3\t0x4E9E\n0xD0B4\t0x4E9F\n0xD0B5\t0x4EA0\n0xD0B6\t0x4EA2\n0xD0B7\t0x4EB0\n0xD0B8\t0x4EB3\n0xD0B9\t0x4EB6\n0xD0BA\t0x4ECE\n0xD0BB\t0x4ECD\n0xD0BC\t0x4EC4\n0xD0BD\t0x4EC6\n0xD0BE\t0x4EC2\n0xD0BF\t0x4ED7\n0xD0C0\t0x4EDE\n0xD0C1\t0x4EED\n0xD0C2\t0x4EDF\n0xD0C3\t0x4EF7\n0xD0C4\t0x4F09\n0xD0C5\t0x4F5A\n0xD0C6\t0x4F30\n0xD0C7\t0x4F5B\n0xD0C8\t0x4F5D\n0xD0C9\t0x4F57\n0xD0CA\t0x4F47\n0xD0CB\t0x4F76\n0xD0CC\t0x4F88\n0xD0CD\t0x4F8F\n0xD0CE\t0x4F98\n0xD0CF\t0x4F7B\n0xD0D0\t0x4F69\n0xD0D1\t0x4F70\n0xD0D2\t0x4F91\n0xD0D3\t0x4F6F\n0xD0D4\t0x4F86\n0xD0D5\t0x4F96\n0xD0D6\t0x5118\n0xD0D7\t0x4FD4\n0xD0D8\t0x4FDF\n0xD0D9\t0x4FCE\n0xD0DA\t0x4FD8\n0xD0DB\t0x4FDB\n0xD0DC\t0x4FD1\n0xD0DD\t0x4FDA\n0xD0DE\t0x4FD0\n0xD0DF\t0x4FE4\n0xD0E0\t0x4FE5\n0xD0E1\t0x501A\n0xD0E2\t0x5028\n0xD0E3\t0x5014\n0xD0E4\t0x502A\n0xD0E5\t0x5025\n0xD0E6\t0x5005\n0xD0E7\t0x4F1C\n0xD0E8\t0x4FF6\n0xD0E9\t0x5021\n0xD0EA\t0x5029\n0xD0EB\t0x502C\n0xD0EC\t0x4FFE\n0xD0ED\t0x4FEF\n0xD0EE\t0x5011\n0xD0EF\t0x5006\n0xD0F0\t0x5043\n0xD0F1\t0x5047\n0xD0F2\t0x6703\n0xD0F3\t0x5055\n0xD0F4\t0x5050\n0xD0F5\t0x5048\n0xD0F6\t0x505A\n0xD0F7\t0x5056\n0xD0F8\t0x506C\n0xD0F9\t0x5078\n0xD0FA\t0x5080\n0xD0FB\t0x509A\n0xD0FC\t0x5085\n0xD0FD\t0x50B4\n0xD0FE\t0x50B2\n0xD1A1\t0x50C9\n0xD1A2\t0x50CA\n0xD1A3\t0x50B3\n0xD1A4\t0x50C2\n0xD1A5\t0x50D6\n0xD1A6\t0x50DE\n0xD1A7\t0x50E5\n0xD1A8\t0x50ED\n0xD1A9\t0x50E3\n0xD1AA\t0x50EE\n0xD1AB\t0x50F9\n0xD1AC\t0x50F5\n0xD1AD\t0x5109\n0xD1AE\t0x5101\n0xD1AF\t0x5102\n0xD1B0\t0x5116\n0xD1B1\t0x5115\n0xD1B2\t0x5114\n0xD1B3\t0x511A\n0xD1B4\t0x5121\n0xD1B5\t0x513A\n0xD1B6\t0x5137\n0xD1B7\t0x513C\n0xD1B8\t0x513B\n0xD1B9\t0x513F\n0xD1BA\t0x5140\n0xD1BB\t0x5152\n0xD1BC\t0x514C\n0xD1BD\t0x5154\n0xD1BE\t0x5162\n0xD1BF\t0x7AF8\n0xD1C0\t0x5169\n0xD1C1\t0x516A\n0xD1C2\t0x516E\n0xD1C3\t0x5180\n0xD1C4\t0x5182\n0xD1C5\t0x56D8\n0xD1C6\t0x518C\n0xD1C7\t0x5189\n0xD1C8\t0x518F\n0xD1C9\t0x5191\n0xD1CA\t0x5193\n0xD1CB\t0x5195\n0xD1CC\t0x5196\n0xD1CD\t0x51A4\n0xD1CE\t0x51A6\n0xD1CF\t0x51A2\n0xD1D0\t0x51A9\n0xD1D1\t0x51AA\n0xD1D2\t0x51AB\n0xD1D3\t0x51B3\n0xD1D4\t0x51B1\n0xD1D5\t0x51B2\n0xD1D6\t0x51B0\n0xD1D7\t0x51B5\n0xD1D8\t0x51BD\n0xD1D9\t0x51C5\n0xD1DA\t0x51C9\n0xD1DB\t0x51DB\n0xD1DC\t0x51E0\n0xD1DD\t0x8655\n0xD1DE\t0x51E9\n0xD1DF\t0x51ED\n0xD1E0\t0x51F0\n0xD1E1\t0x51F5\n0xD1E2\t0x51FE\n0xD1E3\t0x5204\n0xD1E4\t0x520B\n0xD1E5\t0x5214\n0xD1E6\t0x520E\n0xD1E7\t0x5227\n0xD1E8\t0x522A\n0xD1E9\t0x522E\n0xD1EA\t0x5233\n0xD1EB\t0x5239\n0xD1EC\t0x524F\n0xD1ED\t0x5244\n0xD1EE\t0x524B\n0xD1EF\t0x524C\n0xD1F0\t0x525E\n0xD1F1\t0x5254\n0xD1F2\t0x526A\n0xD1F3\t0x5274\n0xD1F4\t0x5269\n0xD1F5\t0x5273\n0xD1F6\t0x527F\n0xD1F7\t0x527D\n0xD1F8\t0x528D\n0xD1F9\t0x5294\n0xD1FA\t0x5292\n0xD1FB\t0x5271\n0xD1FC\t0x5288\n0xD1FD\t0x5291\n0xD1FE\t0x8FA8\n0xD2A1\t0x8FA7\n0xD2A2\t0x52AC\n0xD2A3\t0x52AD\n0xD2A4\t0x52BC\n0xD2A5\t0x52B5\n0xD2A6\t0x52C1\n0xD2A7\t0x52CD\n0xD2A8\t0x52D7\n0xD2A9\t0x52DE\n0xD2AA\t0x52E3\n0xD2AB\t0x52E6\n0xD2AC\t0x98ED\n0xD2AD\t0x52E0\n0xD2AE\t0x52F3\n0xD2AF\t0x52F5\n0xD2B0\t0x52F8\n0xD2B1\t0x52F9\n0xD2B2\t0x5306\n0xD2B3\t0x5308\n0xD2B4\t0x7538\n0xD2B5\t0x530D\n0xD2B6\t0x5310\n0xD2B7\t0x530F\n0xD2B8\t0x5315\n0xD2B9\t0x531A\n0xD2BA\t0x5323\n0xD2BB\t0x532F\n0xD2BC\t0x5331\n0xD2BD\t0x5333\n0xD2BE\t0x5338\n0xD2BF\t0x5340\n0xD2C0\t0x5346\n0xD2C1\t0x5345\n0xD2C2\t0x4E17\n0xD2C3\t0x5349\n0xD2C4\t0x534D\n0xD2C5\t0x51D6\n0xD2C6\t0x535E\n0xD2C7\t0x5369\n0xD2C8\t0x536E\n0xD2C9\t0x5918\n0xD2CA\t0x537B\n0xD2CB\t0x5377\n0xD2CC\t0x5382\n0xD2CD\t0x5396\n0xD2CE\t0x53A0\n0xD2CF\t0x53A6\n0xD2D0\t0x53A5\n0xD2D1\t0x53AE\n0xD2D2\t0x53B0\n0xD2D3\t0x53B6\n0xD2D4\t0x53C3\n0xD2D5\t0x7C12\n0xD2D6\t0x96D9\n0xD2D7\t0x53DF\n0xD2D8\t0x66FC\n0xD2D9\t0x71EE\n0xD2DA\t0x53EE\n0xD2DB\t0x53E8\n0xD2DC\t0x53ED\n0xD2DD\t0x53FA\n0xD2DE\t0x5401\n0xD2DF\t0x543D\n0xD2E0\t0x5440\n0xD2E1\t0x542C\n0xD2E2\t0x542D\n0xD2E3\t0x543C\n0xD2E4\t0x542E\n0xD2E5\t0x5436\n0xD2E6\t0x5429\n0xD2E7\t0x541D\n0xD2E8\t0x544E\n0xD2E9\t0x548F\n0xD2EA\t0x5475\n0xD2EB\t0x548E\n0xD2EC\t0x545F\n0xD2ED\t0x5471\n0xD2EE\t0x5477\n0xD2EF\t0x5470\n0xD2F0\t0x5492\n0xD2F1\t0x547B\n0xD2F2\t0x5480\n0xD2F3\t0x5476\n0xD2F4\t0x5484\n0xD2F5\t0x5490\n0xD2F6\t0x5486\n0xD2F7\t0x54C7\n0xD2F8\t0x54A2\n0xD2F9\t0x54B8\n0xD2FA\t0x54A5\n0xD2FB\t0x54AC\n0xD2FC\t0x54C4\n0xD2FD\t0x54C8\n0xD2FE\t0x54A8\n0xD3A1\t0x54AB\n0xD3A2\t0x54C2\n0xD3A3\t0x54A4\n0xD3A4\t0x54BE\n0xD3A5\t0x54BC\n0xD3A6\t0x54D8\n0xD3A7\t0x54E5\n0xD3A8\t0x54E6\n0xD3A9\t0x550F\n0xD3AA\t0x5514\n0xD3AB\t0x54FD\n0xD3AC\t0x54EE\n0xD3AD\t0x54ED\n0xD3AE\t0x54FA\n0xD3AF\t0x54E2\n0xD3B0\t0x5539\n0xD3B1\t0x5540\n0xD3B2\t0x5563\n0xD3B3\t0x554C\n0xD3B4\t0x552E\n0xD3B5\t0x555C\n0xD3B6\t0x5545\n0xD3B7\t0x5556\n0xD3B8\t0x5557\n0xD3B9\t0x5538\n0xD3BA\t0x5533\n0xD3BB\t0x555D\n0xD3BC\t0x5599\n0xD3BD\t0x5580\n0xD3BE\t0x54AF\n0xD3BF\t0x558A\n0xD3C0\t0x559F\n0xD3C1\t0x557B\n0xD3C2\t0x557E\n0xD3C3\t0x5598\n0xD3C4\t0x559E\n0xD3C5\t0x55AE\n0xD3C6\t0x557C\n0xD3C7\t0x5583\n0xD3C8\t0x55A9\n0xD3C9\t0x5587\n0xD3CA\t0x55A8\n0xD3CB\t0x55DA\n0xD3CC\t0x55C5\n0xD3CD\t0x55DF\n0xD3CE\t0x55C4\n0xD3CF\t0x55DC\n0xD3D0\t0x55E4\n0xD3D1\t0x55D4\n0xD3D2\t0x5614\n0xD3D3\t0x55F7\n0xD3D4\t0x5616\n0xD3D5\t0x55FE\n0xD3D6\t0x55FD\n0xD3D7\t0x561B\n0xD3D8\t0x55F9\n0xD3D9\t0x564E\n0xD3DA\t0x5650\n0xD3DB\t0x71DF\n0xD3DC\t0x5634\n0xD3DD\t0x5636\n0xD3DE\t0x5632\n0xD3DF\t0x5638\n0xD3E0\t0x566B\n0xD3E1\t0x5664\n0xD3E2\t0x562F\n0xD3E3\t0x566C\n0xD3E4\t0x566A\n0xD3E5\t0x5686\n0xD3E6\t0x5680\n0xD3E7\t0x568A\n0xD3E8\t0x56A0\n0xD3E9\t0x5694\n0xD3EA\t0x568F\n0xD3EB\t0x56A5\n0xD3EC\t0x56AE\n0xD3ED\t0x56B6\n0xD3EE\t0x56B4\n0xD3EF\t0x56C2\n0xD3F0\t0x56BC\n0xD3F1\t0x56C1\n0xD3F2\t0x56C3\n0xD3F3\t0x56C0\n0xD3F4\t0x56C8\n0xD3F5\t0x56CE\n0xD3F6\t0x56D1\n0xD3F7\t0x56D3\n0xD3F8\t0x56D7\n0xD3F9\t0x56EE\n0xD3FA\t0x56F9\n0xD3FB\t0x5700\n0xD3FC\t0x56FF\n0xD3FD\t0x5704\n0xD3FE\t0x5709\n0xD4A1\t0x5708\n0xD4A2\t0x570B\n0xD4A3\t0x570D\n0xD4A4\t0x5713\n0xD4A5\t0x5718\n0xD4A6\t0x5716\n0xD4A7\t0x55C7\n0xD4A8\t0x571C\n0xD4A9\t0x5726\n0xD4AA\t0x5737\n0xD4AB\t0x5738\n0xD4AC\t0x574E\n0xD4AD\t0x573B\n0xD4AE\t0x5740\n0xD4AF\t0x574F\n0xD4B0\t0x5769\n0xD4B1\t0x57C0\n0xD4B2\t0x5788\n0xD4B3\t0x5761\n0xD4B4\t0x577F\n0xD4B5\t0x5789\n0xD4B6\t0x5793\n0xD4B7\t0x57A0\n0xD4B8\t0x57B3\n0xD4B9\t0x57A4\n0xD4BA\t0x57AA\n0xD4BB\t0x57B0\n0xD4BC\t0x57C3\n0xD4BD\t0x57C6\n0xD4BE\t0x57D4\n0xD4BF\t0x57D2\n0xD4C0\t0x57D3\n0xD4C1\t0x580A\n0xD4C2\t0x57D6\n0xD4C3\t0x57E3\n0xD4C4\t0x580B\n0xD4C5\t0x5819\n0xD4C6\t0x581D\n0xD4C7\t0x5872\n0xD4C8\t0x5821\n0xD4C9\t0x5862\n0xD4CA\t0x584B\n0xD4CB\t0x5870\n0xD4CC\t0x6BC0\n0xD4CD\t0x5852\n0xD4CE\t0x583D\n0xD4CF\t0x5879\n0xD4D0\t0x5885\n0xD4D1\t0x58B9\n0xD4D2\t0x589F\n0xD4D3\t0x58AB\n0xD4D4\t0x58BA\n0xD4D5\t0x58DE\n0xD4D6\t0x58BB\n0xD4D7\t0x58B8\n0xD4D8\t0x58AE\n0xD4D9\t0x58C5\n0xD4DA\t0x58D3\n0xD4DB\t0x58D1\n0xD4DC\t0x58D7\n0xD4DD\t0x58D9\n0xD4DE\t0x58D8\n0xD4DF\t0x58E5\n0xD4E0\t0x58DC\n0xD4E1\t0x58E4\n0xD4E2\t0x58DF\n0xD4E3\t0x58EF\n0xD4E4\t0x58FA\n0xD4E5\t0x58F9\n0xD4E6\t0x58FB\n0xD4E7\t0x58FC\n0xD4E8\t0x58FD\n0xD4E9\t0x5902\n0xD4EA\t0x590A\n0xD4EB\t0x5910\n0xD4EC\t0x591B\n0xD4ED\t0x68A6\n0xD4EE\t0x5925\n0xD4EF\t0x592C\n0xD4F0\t0x592D\n0xD4F1\t0x5932\n0xD4F2\t0x5938\n0xD4F3\t0x593E\n0xD4F4\t0x7AD2\n0xD4F5\t0x5955\n0xD4F6\t0x5950\n0xD4F7\t0x594E\n0xD4F8\t0x595A\n0xD4F9\t0x5958\n0xD4FA\t0x5962\n0xD4FB\t0x5960\n0xD4FC\t0x5967\n0xD4FD\t0x596C\n0xD4FE\t0x5969\n0xD5A1\t0x5978\n0xD5A2\t0x5981\n0xD5A3\t0x599D\n0xD5A4\t0x4F5E\n0xD5A5\t0x4FAB\n0xD5A6\t0x59A3\n0xD5A7\t0x59B2\n0xD5A8\t0x59C6\n0xD5A9\t0x59E8\n0xD5AA\t0x59DC\n0xD5AB\t0x598D\n0xD5AC\t0x59D9\n0xD5AD\t0x59DA\n0xD5AE\t0x5A25\n0xD5AF\t0x5A1F\n0xD5B0\t0x5A11\n0xD5B1\t0x5A1C\n0xD5B2\t0x5A09\n0xD5B3\t0x5A1A\n0xD5B4\t0x5A40\n0xD5B5\t0x5A6C\n0xD5B6\t0x5A49\n0xD5B7\t0x5A35\n0xD5B8\t0x5A36\n0xD5B9\t0x5A62\n0xD5BA\t0x5A6A\n0xD5BB\t0x5A9A\n0xD5BC\t0x5ABC\n0xD5BD\t0x5ABE\n0xD5BE\t0x5ACB\n0xD5BF\t0x5AC2\n0xD5C0\t0x5ABD\n0xD5C1\t0x5AE3\n0xD5C2\t0x5AD7\n0xD5C3\t0x5AE6\n0xD5C4\t0x5AE9\n0xD5C5\t0x5AD6\n0xD5C6\t0x5AFA\n0xD5C7\t0x5AFB\n0xD5C8\t0x5B0C\n0xD5C9\t0x5B0B\n0xD5CA\t0x5B16\n0xD5CB\t0x5B32\n0xD5CC\t0x5AD0\n0xD5CD\t0x5B2A\n0xD5CE\t0x5B36\n0xD5CF\t0x5B3E\n0xD5D0\t0x5B43\n0xD5D1\t0x5B45\n0xD5D2\t0x5B40\n0xD5D3\t0x5B51\n0xD5D4\t0x5B55\n0xD5D5\t0x5B5A\n0xD5D6\t0x5B5B\n0xD5D7\t0x5B65\n0xD5D8\t0x5B69\n0xD5D9\t0x5B70\n0xD5DA\t0x5B73\n0xD5DB\t0x5B75\n0xD5DC\t0x5B78\n0xD5DD\t0x6588\n0xD5DE\t0x5B7A\n0xD5DF\t0x5B80\n0xD5E0\t0x5B83\n0xD5E1\t0x5BA6\n0xD5E2\t0x5BB8\n0xD5E3\t0x5BC3\n0xD5E4\t0x5BC7\n0xD5E5\t0x5BC9\n0xD5E6\t0x5BD4\n0xD5E7\t0x5BD0\n0xD5E8\t0x5BE4\n0xD5E9\t0x5BE6\n0xD5EA\t0x5BE2\n0xD5EB\t0x5BDE\n0xD5EC\t0x5BE5\n0xD5ED\t0x5BEB\n0xD5EE\t0x5BF0\n0xD5EF\t0x5BF6\n0xD5F0\t0x5BF3\n0xD5F1\t0x5C05\n0xD5F2\t0x5C07\n0xD5F3\t0x5C08\n0xD5F4\t0x5C0D\n0xD5F5\t0x5C13\n0xD5F6\t0x5C20\n0xD5F7\t0x5C22\n0xD5F8\t0x5C28\n0xD5F9\t0x5C38\n0xD5FA\t0x5C39\n0xD5FB\t0x5C41\n0xD5FC\t0x5C46\n0xD5FD\t0x5C4E\n0xD5FE\t0x5C53\n0xD6A1\t0x5C50\n0xD6A2\t0x5C4F\n0xD6A3\t0x5B71\n0xD6A4\t0x5C6C\n0xD6A5\t0x5C6E\n0xD6A6\t0x4E62\n0xD6A7\t0x5C76\n0xD6A8\t0x5C79\n0xD6A9\t0x5C8C\n0xD6AA\t0x5C91\n0xD6AB\t0x5C94\n0xD6AC\t0x599B\n0xD6AD\t0x5CAB\n0xD6AE\t0x5CBB\n0xD6AF\t0x5CB6\n0xD6B0\t0x5CBC\n0xD6B1\t0x5CB7\n0xD6B2\t0x5CC5\n0xD6B3\t0x5CBE\n0xD6B4\t0x5CC7\n0xD6B5\t0x5CD9\n0xD6B6\t0x5CE9\n0xD6B7\t0x5CFD\n0xD6B8\t0x5CFA\n0xD6B9\t0x5CED\n0xD6BA\t0x5D8C\n0xD6BB\t0x5CEA\n0xD6BC\t0x5D0B\n0xD6BD\t0x5D15\n0xD6BE\t0x5D17\n0xD6BF\t0x5D5C\n0xD6C0\t0x5D1F\n0xD6C1\t0x5D1B\n0xD6C2\t0x5D11\n0xD6C3\t0x5D14\n0xD6C4\t0x5D22\n0xD6C5\t0x5D1A\n0xD6C6\t0x5D19\n0xD6C7\t0x5D18\n0xD6C8\t0x5D4C\n0xD6C9\t0x5D52\n0xD6CA\t0x5D4E\n0xD6CB\t0x5D4B\n0xD6CC\t0x5D6C\n0xD6CD\t0x5D73\n0xD6CE\t0x5D76\n0xD6CF\t0x5D87\n0xD6D0\t0x5D84\n0xD6D1\t0x5D82\n0xD6D2\t0x5DA2\n0xD6D3\t0x5D9D\n0xD6D4\t0x5DAC\n0xD6D5\t0x5DAE\n0xD6D6\t0x5DBD\n0xD6D7\t0x5D90\n0xD6D8\t0x5DB7\n0xD6D9\t0x5DBC\n0xD6DA\t0x5DC9\n0xD6DB\t0x5DCD\n0xD6DC\t0x5DD3\n0xD6DD\t0x5DD2\n0xD6DE\t0x5DD6\n0xD6DF\t0x5DDB\n0xD6E0\t0x5DEB\n0xD6E1\t0x5DF2\n0xD6E2\t0x5DF5\n0xD6E3\t0x5E0B\n0xD6E4\t0x5E1A\n0xD6E5\t0x5E19\n0xD6E6\t0x5E11\n0xD6E7\t0x5E1B\n0xD6E8\t0x5E36\n0xD6E9\t0x5E37\n0xD6EA\t0x5E44\n0xD6EB\t0x5E43\n0xD6EC\t0x5E40\n0xD6ED\t0x5E4E\n0xD6EE\t0x5E57\n0xD6EF\t0x5E54\n0xD6F0\t0x5E5F\n0xD6F1\t0x5E62\n0xD6F2\t0x5E64\n0xD6F3\t0x5E47\n0xD6F4\t0x5E75\n0xD6F5\t0x5E76\n0xD6F6\t0x5E7A\n0xD6F7\t0x9EBC\n0xD6F8\t0x5E7F\n0xD6F9\t0x5EA0\n0xD6FA\t0x5EC1\n0xD6FB\t0x5EC2\n0xD6FC\t0x5EC8\n0xD6FD\t0x5ED0\n0xD6FE\t0x5ECF\n0xD7A1\t0x5ED6\n0xD7A2\t0x5EE3\n0xD7A3\t0x5EDD\n0xD7A4\t0x5EDA\n0xD7A5\t0x5EDB\n0xD7A6\t0x5EE2\n0xD7A7\t0x5EE1\n0xD7A8\t0x5EE8\n0xD7A9\t0x5EE9\n0xD7AA\t0x5EEC\n0xD7AB\t0x5EF1\n0xD7AC\t0x5EF3\n0xD7AD\t0x5EF0\n0xD7AE\t0x5EF4\n0xD7AF\t0x5EF8\n0xD7B0\t0x5EFE\n0xD7B1\t0x5F03\n0xD7B2\t0x5F09\n0xD7B3\t0x5F5D\n0xD7B4\t0x5F5C\n0xD7B5\t0x5F0B\n0xD7B6\t0x5F11\n0xD7B7\t0x5F16\n0xD7B8\t0x5F29\n0xD7B9\t0x5F2D\n0xD7BA\t0x5F38\n0xD7BB\t0x5F41\n0xD7BC\t0x5F48\n0xD7BD\t0x5F4C\n0xD7BE\t0x5F4E\n0xD7BF\t0x5F2F\n0xD7C0\t0x5F51\n0xD7C1\t0x5F56\n0xD7C2\t0x5F57\n0xD7C3\t0x5F59\n0xD7C4\t0x5F61\n0xD7C5\t0x5F6D\n0xD7C6\t0x5F73\n0xD7C7\t0x5F77\n0xD7C8\t0x5F83\n0xD7C9\t0x5F82\n0xD7CA\t0x5F7F\n0xD7CB\t0x5F8A\n0xD7CC\t0x5F88\n0xD7CD\t0x5F91\n0xD7CE\t0x5F87\n0xD7CF\t0x5F9E\n0xD7D0\t0x5F99\n0xD7D1\t0x5F98\n0xD7D2\t0x5FA0\n0xD7D3\t0x5FA8\n0xD7D4\t0x5FAD\n0xD7D5\t0x5FBC\n0xD7D6\t0x5FD6\n0xD7D7\t0x5FFB\n0xD7D8\t0x5FE4\n0xD7D9\t0x5FF8\n0xD7DA\t0x5FF1\n0xD7DB\t0x5FDD\n0xD7DC\t0x60B3\n0xD7DD\t0x5FFF\n0xD7DE\t0x6021\n0xD7DF\t0x6060\n0xD7E0\t0x6019\n0xD7E1\t0x6010\n0xD7E2\t0x6029\n0xD7E3\t0x600E\n0xD7E4\t0x6031\n0xD7E5\t0x601B\n0xD7E6\t0x6015\n0xD7E7\t0x602B\n0xD7E8\t0x6026\n0xD7E9\t0x600F\n0xD7EA\t0x603A\n0xD7EB\t0x605A\n0xD7EC\t0x6041\n0xD7ED\t0x606A\n0xD7EE\t0x6077\n0xD7EF\t0x605F\n0xD7F0\t0x604A\n0xD7F1\t0x6046\n0xD7F2\t0x604D\n0xD7F3\t0x6063\n0xD7F4\t0x6043\n0xD7F5\t0x6064\n0xD7F6\t0x6042\n0xD7F7\t0x606C\n0xD7F8\t0x606B\n0xD7F9\t0x6059\n0xD7FA\t0x6081\n0xD7FB\t0x608D\n0xD7FC\t0x60E7\n0xD7FD\t0x6083\n0xD7FE\t0x609A\n0xD8A1\t0x6084\n0xD8A2\t0x609B\n0xD8A3\t0x6096\n0xD8A4\t0x6097\n0xD8A5\t0x6092\n0xD8A6\t0x60A7\n0xD8A7\t0x608B\n0xD8A8\t0x60E1\n0xD8A9\t0x60B8\n0xD8AA\t0x60E0\n0xD8AB\t0x60D3\n0xD8AC\t0x60B4\n0xD8AD\t0x5FF0\n0xD8AE\t0x60BD\n0xD8AF\t0x60C6\n0xD8B0\t0x60B5\n0xD8B1\t0x60D8\n0xD8B2\t0x614D\n0xD8B3\t0x6115\n0xD8B4\t0x6106\n0xD8B5\t0x60F6\n0xD8B6\t0x60F7\n0xD8B7\t0x6100\n0xD8B8\t0x60F4\n0xD8B9\t0x60FA\n0xD8BA\t0x6103\n0xD8BB\t0x6121\n0xD8BC\t0x60FB\n0xD8BD\t0x60F1\n0xD8BE\t0x610D\n0xD8BF\t0x610E\n0xD8C0\t0x6147\n0xD8C1\t0x613E\n0xD8C2\t0x6128\n0xD8C3\t0x6127\n0xD8C4\t0x614A\n0xD8C5\t0x613F\n0xD8C6\t0x613C\n0xD8C7\t0x612C\n0xD8C8\t0x6134\n0xD8C9\t0x613D\n0xD8CA\t0x6142\n0xD8CB\t0x6144\n0xD8CC\t0x6173\n0xD8CD\t0x6177\n0xD8CE\t0x6158\n0xD8CF\t0x6159\n0xD8D0\t0x615A\n0xD8D1\t0x616B\n0xD8D2\t0x6174\n0xD8D3\t0x616F\n0xD8D4\t0x6165\n0xD8D5\t0x6171\n0xD8D6\t0x615F\n0xD8D7\t0x615D\n0xD8D8\t0x6153\n0xD8D9\t0x6175\n0xD8DA\t0x6199\n0xD8DB\t0x6196\n0xD8DC\t0x6187\n0xD8DD\t0x61AC\n0xD8DE\t0x6194\n0xD8DF\t0x619A\n0xD8E0\t0x618A\n0xD8E1\t0x6191\n0xD8E2\t0x61AB\n0xD8E3\t0x61AE\n0xD8E4\t0x61CC\n0xD8E5\t0x61CA\n0xD8E6\t0x61C9\n0xD8E7\t0x61F7\n0xD8E8\t0x61C8\n0xD8E9\t0x61C3\n0xD8EA\t0x61C6\n0xD8EB\t0x61BA\n0xD8EC\t0x61CB\n0xD8ED\t0x7F79\n0xD8EE\t0x61CD\n0xD8EF\t0x61E6\n0xD8F0\t0x61E3\n0xD8F1\t0x61F6\n0xD8F2\t0x61FA\n0xD8F3\t0x61F4\n0xD8F4\t0x61FF\n0xD8F5\t0x61FD\n0xD8F6\t0x61FC\n0xD8F7\t0x61FE\n0xD8F8\t0x6200\n0xD8F9\t0x6208\n0xD8FA\t0x6209\n0xD8FB\t0x620D\n0xD8FC\t0x620C\n0xD8FD\t0x6214\n0xD8FE\t0x621B\n0xD9A1\t0x621E\n0xD9A2\t0x6221\n0xD9A3\t0x622A\n0xD9A4\t0x622E\n0xD9A5\t0x6230\n0xD9A6\t0x6232\n0xD9A7\t0x6233\n0xD9A8\t0x6241\n0xD9A9\t0x624E\n0xD9AA\t0x625E\n0xD9AB\t0x6263\n0xD9AC\t0x625B\n0xD9AD\t0x6260\n0xD9AE\t0x6268\n0xD9AF\t0x627C\n0xD9B0\t0x6282\n0xD9B1\t0x6289\n0xD9B2\t0x627E\n0xD9B3\t0x6292\n0xD9B4\t0x6293\n0xD9B5\t0x6296\n0xD9B6\t0x62D4\n0xD9B7\t0x6283\n0xD9B8\t0x6294\n0xD9B9\t0x62D7\n0xD9BA\t0x62D1\n0xD9BB\t0x62BB\n0xD9BC\t0x62CF\n0xD9BD\t0x62FF\n0xD9BE\t0x62C6\n0xD9BF\t0x64D4\n0xD9C0\t0x62C8\n0xD9C1\t0x62DC\n0xD9C2\t0x62CC\n0xD9C3\t0x62CA\n0xD9C4\t0x62C2\n0xD9C5\t0x62C7\n0xD9C6\t0x629B\n0xD9C7\t0x62C9\n0xD9C8\t0x630C\n0xD9C9\t0x62EE\n0xD9CA\t0x62F1\n0xD9CB\t0x6327\n0xD9CC\t0x6302\n0xD9CD\t0x6308\n0xD9CE\t0x62EF\n0xD9CF\t0x62F5\n0xD9D0\t0x6350\n0xD9D1\t0x633E\n0xD9D2\t0x634D\n0xD9D3\t0x641C\n0xD9D4\t0x634F\n0xD9D5\t0x6396\n0xD9D6\t0x638E\n0xD9D7\t0x6380\n0xD9D8\t0x63AB\n0xD9D9\t0x6376\n0xD9DA\t0x63A3\n0xD9DB\t0x638F\n0xD9DC\t0x6389\n0xD9DD\t0x639F\n0xD9DE\t0x63B5\n0xD9DF\t0x636B\n0xD9E0\t0x6369\n0xD9E1\t0x63BE\n0xD9E2\t0x63E9\n0xD9E3\t0x63C0\n0xD9E4\t0x63C6\n0xD9E5\t0x63E3\n0xD9E6\t0x63C9\n0xD9E7\t0x63D2\n0xD9E8\t0x63F6\n0xD9E9\t0x63C4\n0xD9EA\t0x6416\n0xD9EB\t0x6434\n0xD9EC\t0x6406\n0xD9ED\t0x6413\n0xD9EE\t0x6426\n0xD9EF\t0x6436\n0xD9F0\t0x651D\n0xD9F1\t0x6417\n0xD9F2\t0x6428\n0xD9F3\t0x640F\n0xD9F4\t0x6467\n0xD9F5\t0x646F\n0xD9F6\t0x6476\n0xD9F7\t0x644E\n0xD9F8\t0x652A\n0xD9F9\t0x6495\n0xD9FA\t0x6493\n0xD9FB\t0x64A5\n0xD9FC\t0x64A9\n0xD9FD\t0x6488\n0xD9FE\t0x64BC\n0xDAA1\t0x64DA\n0xDAA2\t0x64D2\n0xDAA3\t0x64C5\n0xDAA4\t0x64C7\n0xDAA5\t0x64BB\n0xDAA6\t0x64D8\n0xDAA7\t0x64C2\n0xDAA8\t0x64F1\n0xDAA9\t0x64E7\n0xDAAA\t0x8209\n0xDAAB\t0x64E0\n0xDAAC\t0x64E1\n0xDAAD\t0x62AC\n0xDAAE\t0x64E3\n0xDAAF\t0x64EF\n0xDAB0\t0x652C\n0xDAB1\t0x64F6\n0xDAB2\t0x64F4\n0xDAB3\t0x64F2\n0xDAB4\t0x64FA\n0xDAB5\t0x6500\n0xDAB6\t0x64FD\n0xDAB7\t0x6518\n0xDAB8\t0x651C\n0xDAB9\t0x6505\n0xDABA\t0x6524\n0xDABB\t0x6523\n0xDABC\t0x652B\n0xDABD\t0x6534\n0xDABE\t0x6535\n0xDABF\t0x6537\n0xDAC0\t0x6536\n0xDAC1\t0x6538\n0xDAC2\t0x754B\n0xDAC3\t0x6548\n0xDAC4\t0x6556\n0xDAC5\t0x6555\n0xDAC6\t0x654D\n0xDAC7\t0x6558\n0xDAC8\t0x655E\n0xDAC9\t0x655D\n0xDACA\t0x6572\n0xDACB\t0x6578\n0xDACC\t0x6582\n0xDACD\t0x6583\n0xDACE\t0x8B8A\n0xDACF\t0x659B\n0xDAD0\t0x659F\n0xDAD1\t0x65AB\n0xDAD2\t0x65B7\n0xDAD3\t0x65C3\n0xDAD4\t0x65C6\n0xDAD5\t0x65C1\n0xDAD6\t0x65C4\n0xDAD7\t0x65CC\n0xDAD8\t0x65D2\n0xDAD9\t0x65DB\n0xDADA\t0x65D9\n0xDADB\t0x65E0\n0xDADC\t0x65E1\n0xDADD\t0x65F1\n0xDADE\t0x6772\n0xDADF\t0x660A\n0xDAE0\t0x6603\n0xDAE1\t0x65FB\n0xDAE2\t0x6773\n0xDAE3\t0x6635\n0xDAE4\t0x6636\n0xDAE5\t0x6634\n0xDAE6\t0x661C\n0xDAE7\t0x664F\n0xDAE8\t0x6644\n0xDAE9\t0x6649\n0xDAEA\t0x6641\n0xDAEB\t0x665E\n0xDAEC\t0x665D\n0xDAED\t0x6664\n0xDAEE\t0x6667\n0xDAEF\t0x6668\n0xDAF0\t0x665F\n0xDAF1\t0x6662\n0xDAF2\t0x6670\n0xDAF3\t0x6683\n0xDAF4\t0x6688\n0xDAF5\t0x668E\n0xDAF6\t0x6689\n0xDAF7\t0x6684\n0xDAF8\t0x6698\n0xDAF9\t0x669D\n0xDAFA\t0x66C1\n0xDAFB\t0x66B9\n0xDAFC\t0x66C9\n0xDAFD\t0x66BE\n0xDAFE\t0x66BC\n0xDBA1\t0x66C4\n0xDBA2\t0x66B8\n0xDBA3\t0x66D6\n0xDBA4\t0x66DA\n0xDBA5\t0x66E0\n0xDBA6\t0x663F\n0xDBA7\t0x66E6\n0xDBA8\t0x66E9\n0xDBA9\t0x66F0\n0xDBAA\t0x66F5\n0xDBAB\t0x66F7\n0xDBAC\t0x670F\n0xDBAD\t0x6716\n0xDBAE\t0x671E\n0xDBAF\t0x6726\n0xDBB0\t0x6727\n0xDBB1\t0x9738\n0xDBB2\t0x672E\n0xDBB3\t0x673F\n0xDBB4\t0x6736\n0xDBB5\t0x6741\n0xDBB6\t0x6738\n0xDBB7\t0x6737\n0xDBB8\t0x6746\n0xDBB9\t0x675E\n0xDBBA\t0x6760\n0xDBBB\t0x6759\n0xDBBC\t0x6763\n0xDBBD\t0x6764\n0xDBBE\t0x6789\n0xDBBF\t0x6770\n0xDBC0\t0x67A9\n0xDBC1\t0x677C\n0xDBC2\t0x676A\n0xDBC3\t0x678C\n0xDBC4\t0x678B\n0xDBC5\t0x67A6\n0xDBC6\t0x67A1\n0xDBC7\t0x6785\n0xDBC8\t0x67B7\n0xDBC9\t0x67EF\n0xDBCA\t0x67B4\n0xDBCB\t0x67EC\n0xDBCC\t0x67B3\n0xDBCD\t0x67E9\n0xDBCE\t0x67B8\n0xDBCF\t0x67E4\n0xDBD0\t0x67DE\n0xDBD1\t0x67DD\n0xDBD2\t0x67E2\n0xDBD3\t0x67EE\n0xDBD4\t0x67B9\n0xDBD5\t0x67CE\n0xDBD6\t0x67C6\n0xDBD7\t0x67E7\n0xDBD8\t0x6A9C\n0xDBD9\t0x681E\n0xDBDA\t0x6846\n0xDBDB\t0x6829\n0xDBDC\t0x6840\n0xDBDD\t0x684D\n0xDBDE\t0x6832\n0xDBDF\t0x684E\n0xDBE0\t0x68B3\n0xDBE1\t0x682B\n0xDBE2\t0x6859\n0xDBE3\t0x6863\n0xDBE4\t0x6877\n0xDBE5\t0x687F\n0xDBE6\t0x689F\n0xDBE7\t0x688F\n0xDBE8\t0x68AD\n0xDBE9\t0x6894\n0xDBEA\t0x689D\n0xDBEB\t0x689B\n0xDBEC\t0x6883\n0xDBED\t0x6AAE\n0xDBEE\t0x68B9\n0xDBEF\t0x6874\n0xDBF0\t0x68B5\n0xDBF1\t0x68A0\n0xDBF2\t0x68BA\n0xDBF3\t0x690F\n0xDBF4\t0x688D\n0xDBF5\t0x687E\n0xDBF6\t0x6901\n0xDBF7\t0x68CA\n0xDBF8\t0x6908\n0xDBF9\t0x68D8\n0xDBFA\t0x6922\n0xDBFB\t0x6926\n0xDBFC\t0x68E1\n0xDBFD\t0x690C\n0xDBFE\t0x68CD\n0xDCA1\t0x68D4\n0xDCA2\t0x68E7\n0xDCA3\t0x68D5\n0xDCA4\t0x6936\n0xDCA5\t0x6912\n0xDCA6\t0x6904\n0xDCA7\t0x68D7\n0xDCA8\t0x68E3\n0xDCA9\t0x6925\n0xDCAA\t0x68F9\n0xDCAB\t0x68E0\n0xDCAC\t0x68EF\n0xDCAD\t0x6928\n0xDCAE\t0x692A\n0xDCAF\t0x691A\n0xDCB0\t0x6923\n0xDCB1\t0x6921\n0xDCB2\t0x68C6\n0xDCB3\t0x6979\n0xDCB4\t0x6977\n0xDCB5\t0x695C\n0xDCB6\t0x6978\n0xDCB7\t0x696B\n0xDCB8\t0x6954\n0xDCB9\t0x697E\n0xDCBA\t0x696E\n0xDCBB\t0x6939\n0xDCBC\t0x6974\n0xDCBD\t0x693D\n0xDCBE\t0x6959\n0xDCBF\t0x6930\n0xDCC0\t0x6961\n0xDCC1\t0x695E\n0xDCC2\t0x695D\n0xDCC3\t0x6981\n0xDCC4\t0x696A\n0xDCC5\t0x69B2\n0xDCC6\t0x69AE\n0xDCC7\t0x69D0\n0xDCC8\t0x69BF\n0xDCC9\t0x69C1\n0xDCCA\t0x69D3\n0xDCCB\t0x69BE\n0xDCCC\t0x69CE\n0xDCCD\t0x5BE8\n0xDCCE\t0x69CA\n0xDCCF\t0x69DD\n0xDCD0\t0x69BB\n0xDCD1\t0x69C3\n0xDCD2\t0x69A7\n0xDCD3\t0x6A2E\n0xDCD4\t0x6991\n0xDCD5\t0x69A0\n0xDCD6\t0x699C\n0xDCD7\t0x6995\n0xDCD8\t0x69B4\n0xDCD9\t0x69DE\n0xDCDA\t0x69E8\n0xDCDB\t0x6A02\n0xDCDC\t0x6A1B\n0xDCDD\t0x69FF\n0xDCDE\t0x6B0A\n0xDCDF\t0x69F9\n0xDCE0\t0x69F2\n0xDCE1\t0x69E7\n0xDCE2\t0x6A05\n0xDCE3\t0x69B1\n0xDCE4\t0x6A1E\n0xDCE5\t0x69ED\n0xDCE6\t0x6A14\n0xDCE7\t0x69EB\n0xDCE8\t0x6A0A\n0xDCE9\t0x6A12\n0xDCEA\t0x6AC1\n0xDCEB\t0x6A23\n0xDCEC\t0x6A13\n0xDCED\t0x6A44\n0xDCEE\t0x6A0C\n0xDCEF\t0x6A72\n0xDCF0\t0x6A36\n0xDCF1\t0x6A78\n0xDCF2\t0x6A47\n0xDCF3\t0x6A62\n0xDCF4\t0x6A59\n0xDCF5\t0x6A66\n0xDCF6\t0x6A48\n0xDCF7\t0x6A38\n0xDCF8\t0x6A22\n0xDCF9\t0x6A90\n0xDCFA\t0x6A8D\n0xDCFB\t0x6AA0\n0xDCFC\t0x6A84\n0xDCFD\t0x6AA2\n0xDCFE\t0x6AA3\n0xDDA1\t0x6A97\n0xDDA2\t0x8617\n0xDDA3\t0x6ABB\n0xDDA4\t0x6AC3\n0xDDA5\t0x6AC2\n0xDDA6\t0x6AB8\n0xDDA7\t0x6AB3\n0xDDA8\t0x6AAC\n0xDDA9\t0x6ADE\n0xDDAA\t0x6AD1\n0xDDAB\t0x6ADF\n0xDDAC\t0x6AAA\n0xDDAD\t0x6ADA\n0xDDAE\t0x6AEA\n0xDDAF\t0x6AFB\n0xDDB0\t0x6B05\n0xDDB1\t0x8616\n0xDDB2\t0x6AFA\n0xDDB3\t0x6B12\n0xDDB4\t0x6B16\n0xDDB5\t0x9B31\n0xDDB6\t0x6B1F\n0xDDB7\t0x6B38\n0xDDB8\t0x6B37\n0xDDB9\t0x76DC\n0xDDBA\t0x6B39\n0xDDBB\t0x98EE\n0xDDBC\t0x6B47\n0xDDBD\t0x6B43\n0xDDBE\t0x6B49\n0xDDBF\t0x6B50\n0xDDC0\t0x6B59\n0xDDC1\t0x6B54\n0xDDC2\t0x6B5B\n0xDDC3\t0x6B5F\n0xDDC4\t0x6B61\n0xDDC5\t0x6B78\n0xDDC6\t0x6B79\n0xDDC7\t0x6B7F\n0xDDC8\t0x6B80\n0xDDC9\t0x6B84\n0xDDCA\t0x6B83\n0xDDCB\t0x6B8D\n0xDDCC\t0x6B98\n0xDDCD\t0x6B95\n0xDDCE\t0x6B9E\n0xDDCF\t0x6BA4\n0xDDD0\t0x6BAA\n0xDDD1\t0x6BAB\n0xDDD2\t0x6BAF\n0xDDD3\t0x6BB2\n0xDDD4\t0x6BB1\n0xDDD5\t0x6BB3\n0xDDD6\t0x6BB7\n0xDDD7\t0x6BBC\n0xDDD8\t0x6BC6\n0xDDD9\t0x6BCB\n0xDDDA\t0x6BD3\n0xDDDB\t0x6BDF\n0xDDDC\t0x6BEC\n0xDDDD\t0x6BEB\n0xDDDE\t0x6BF3\n0xDDDF\t0x6BEF\n0xDDE0\t0x9EBE\n0xDDE1\t0x6C08\n0xDDE2\t0x6C13\n0xDDE3\t0x6C14\n0xDDE4\t0x6C1B\n0xDDE5\t0x6C24\n0xDDE6\t0x6C23\n0xDDE7\t0x6C5E\n0xDDE8\t0x6C55\n0xDDE9\t0x6C62\n0xDDEA\t0x6C6A\n0xDDEB\t0x6C82\n0xDDEC\t0x6C8D\n0xDDED\t0x6C9A\n0xDDEE\t0x6C81\n0xDDEF\t0x6C9B\n0xDDF0\t0x6C7E\n0xDDF1\t0x6C68\n0xDDF2\t0x6C73\n0xDDF3\t0x6C92\n0xDDF4\t0x6C90\n0xDDF5\t0x6CC4\n0xDDF6\t0x6CF1\n0xDDF7\t0x6CD3\n0xDDF8\t0x6CBD\n0xDDF9\t0x6CD7\n0xDDFA\t0x6CC5\n0xDDFB\t0x6CDD\n0xDDFC\t0x6CAE\n0xDDFD\t0x6CB1\n0xDDFE\t0x6CBE\n0xDEA1\t0x6CBA\n0xDEA2\t0x6CDB\n0xDEA3\t0x6CEF\n0xDEA4\t0x6CD9\n0xDEA5\t0x6CEA\n0xDEA6\t0x6D1F\n0xDEA7\t0x884D\n0xDEA8\t0x6D36\n0xDEA9\t0x6D2B\n0xDEAA\t0x6D3D\n0xDEAB\t0x6D38\n0xDEAC\t0x6D19\n0xDEAD\t0x6D35\n0xDEAE\t0x6D33\n0xDEAF\t0x6D12\n0xDEB0\t0x6D0C\n0xDEB1\t0x6D63\n0xDEB2\t0x6D93\n0xDEB3\t0x6D64\n0xDEB4\t0x6D5A\n0xDEB5\t0x6D79\n0xDEB6\t0x6D59\n0xDEB7\t0x6D8E\n0xDEB8\t0x6D95\n0xDEB9\t0x6FE4\n0xDEBA\t0x6D85\n0xDEBB\t0x6DF9\n0xDEBC\t0x6E15\n0xDEBD\t0x6E0A\n0xDEBE\t0x6DB5\n0xDEBF\t0x6DC7\n0xDEC0\t0x6DE6\n0xDEC1\t0x6DB8\n0xDEC2\t0x6DC6\n0xDEC3\t0x6DEC\n0xDEC4\t0x6DDE\n0xDEC5\t0x6DCC\n0xDEC6\t0x6DE8\n0xDEC7\t0x6DD2\n0xDEC8\t0x6DC5\n0xDEC9\t0x6DFA\n0xDECA\t0x6DD9\n0xDECB\t0x6DE4\n0xDECC\t0x6DD5\n0xDECD\t0x6DEA\n0xDECE\t0x6DEE\n0xDECF\t0x6E2D\n0xDED0\t0x6E6E\n0xDED1\t0x6E2E\n0xDED2\t0x6E19\n0xDED3\t0x6E72\n0xDED4\t0x6E5F\n0xDED5\t0x6E3E\n0xDED6\t0x6E23\n0xDED7\t0x6E6B\n0xDED8\t0x6E2B\n0xDED9\t0x6E76\n0xDEDA\t0x6E4D\n0xDEDB\t0x6E1F\n0xDEDC\t0x6E43\n0xDEDD\t0x6E3A\n0xDEDE\t0x6E4E\n0xDEDF\t0x6E24\n0xDEE0\t0x6EFF\n0xDEE1\t0x6E1D\n0xDEE2\t0x6E38\n0xDEE3\t0x6E82\n0xDEE4\t0x6EAA\n0xDEE5\t0x6E98\n0xDEE6\t0x6EC9\n0xDEE7\t0x6EB7\n0xDEE8\t0x6ED3\n0xDEE9\t0x6EBD\n0xDEEA\t0x6EAF\n0xDEEB\t0x6EC4\n0xDEEC\t0x6EB2\n0xDEED\t0x6ED4\n0xDEEE\t0x6ED5\n0xDEEF\t0x6E8F\n0xDEF0\t0x6EA5\n0xDEF1\t0x6EC2\n0xDEF2\t0x6E9F\n0xDEF3\t0x6F41\n0xDEF4\t0x6F11\n0xDEF5\t0x704C\n0xDEF6\t0x6EEC\n0xDEF7\t0x6EF8\n0xDEF8\t0x6EFE\n0xDEF9\t0x6F3F\n0xDEFA\t0x6EF2\n0xDEFB\t0x6F31\n0xDEFC\t0x6EEF\n0xDEFD\t0x6F32\n0xDEFE\t0x6ECC\n0xDFA1\t0x6F3E\n0xDFA2\t0x6F13\n0xDFA3\t0x6EF7\n0xDFA4\t0x6F86\n0xDFA5\t0x6F7A\n0xDFA6\t0x6F78\n0xDFA7\t0x6F81\n0xDFA8\t0x6F80\n0xDFA9\t0x6F6F\n0xDFAA\t0x6F5B\n0xDFAB\t0x6FF3\n0xDFAC\t0x6F6D\n0xDFAD\t0x6F82\n0xDFAE\t0x6F7C\n0xDFAF\t0x6F58\n0xDFB0\t0x6F8E\n0xDFB1\t0x6F91\n0xDFB2\t0x6FC2\n0xDFB3\t0x6F66\n0xDFB4\t0x6FB3\n0xDFB5\t0x6FA3\n0xDFB6\t0x6FA1\n0xDFB7\t0x6FA4\n0xDFB8\t0x6FB9\n0xDFB9\t0x6FC6\n0xDFBA\t0x6FAA\n0xDFBB\t0x6FDF\n0xDFBC\t0x6FD5\n0xDFBD\t0x6FEC\n0xDFBE\t0x6FD4\n0xDFBF\t0x6FD8\n0xDFC0\t0x6FF1\n0xDFC1\t0x6FEE\n0xDFC2\t0x6FDB\n0xDFC3\t0x7009\n0xDFC4\t0x700B\n0xDFC5\t0x6FFA\n0xDFC6\t0x7011\n0xDFC7\t0x7001\n0xDFC8\t0x700F\n0xDFC9\t0x6FFE\n0xDFCA\t0x701B\n0xDFCB\t0x701A\n0xDFCC\t0x6F74\n0xDFCD\t0x701D\n0xDFCE\t0x7018\n0xDFCF\t0x701F\n0xDFD0\t0x7030\n0xDFD1\t0x703E\n0xDFD2\t0x7032\n0xDFD3\t0x7051\n0xDFD4\t0x7063\n0xDFD5\t0x7099\n0xDFD6\t0x7092\n0xDFD7\t0x70AF\n0xDFD8\t0x70F1\n0xDFD9\t0x70AC\n0xDFDA\t0x70B8\n0xDFDB\t0x70B3\n0xDFDC\t0x70AE\n0xDFDD\t0x70DF\n0xDFDE\t0x70CB\n0xDFDF\t0x70DD\n0xDFE0\t0x70D9\n0xDFE1\t0x7109\n0xDFE2\t0x70FD\n0xDFE3\t0x711C\n0xDFE4\t0x7119\n0xDFE5\t0x7165\n0xDFE6\t0x7155\n0xDFE7\t0x7188\n0xDFE8\t0x7166\n0xDFE9\t0x7162\n0xDFEA\t0x714C\n0xDFEB\t0x7156\n0xDFEC\t0x716C\n0xDFED\t0x718F\n0xDFEE\t0x71FB\n0xDFEF\t0x7184\n0xDFF0\t0x7195\n0xDFF1\t0x71A8\n0xDFF2\t0x71AC\n0xDFF3\t0x71D7\n0xDFF4\t0x71B9\n0xDFF5\t0x71BE\n0xDFF6\t0x71D2\n0xDFF7\t0x71C9\n0xDFF8\t0x71D4\n0xDFF9\t0x71CE\n0xDFFA\t0x71E0\n0xDFFB\t0x71EC\n0xDFFC\t0x71E7\n0xDFFD\t0x71F5\n0xDFFE\t0x71FC\n0xE0A1\t0x71F9\n0xE0A2\t0x71FF\n0xE0A3\t0x720D\n0xE0A4\t0x7210\n0xE0A5\t0x721B\n0xE0A6\t0x7228\n0xE0A7\t0x722D\n0xE0A8\t0x722C\n0xE0A9\t0x7230\n0xE0AA\t0x7232\n0xE0AB\t0x723B\n0xE0AC\t0x723C\n0xE0AD\t0x723F\n0xE0AE\t0x7240\n0xE0AF\t0x7246\n0xE0B0\t0x724B\n0xE0B1\t0x7258\n0xE0B2\t0x7274\n0xE0B3\t0x727E\n0xE0B4\t0x7282\n0xE0B5\t0x7281\n0xE0B6\t0x7287\n0xE0B7\t0x7292\n0xE0B8\t0x7296\n0xE0B9\t0x72A2\n0xE0BA\t0x72A7\n0xE0BB\t0x72B9\n0xE0BC\t0x72B2\n0xE0BD\t0x72C3\n0xE0BE\t0x72C6\n0xE0BF\t0x72C4\n0xE0C0\t0x72CE\n0xE0C1\t0x72D2\n0xE0C2\t0x72E2\n0xE0C3\t0x72E0\n0xE0C4\t0x72E1\n0xE0C5\t0x72F9\n0xE0C6\t0x72F7\n0xE0C7\t0x500F\n0xE0C8\t0x7317\n0xE0C9\t0x730A\n0xE0CA\t0x731C\n0xE0CB\t0x7316\n0xE0CC\t0x731D\n0xE0CD\t0x7334\n0xE0CE\t0x732F\n0xE0CF\t0x7329\n0xE0D0\t0x7325\n0xE0D1\t0x733E\n0xE0D2\t0x734E\n0xE0D3\t0x734F\n0xE0D4\t0x9ED8\n0xE0D5\t0x7357\n0xE0D6\t0x736A\n0xE0D7\t0x7368\n0xE0D8\t0x7370\n0xE0D9\t0x7378\n0xE0DA\t0x7375\n0xE0DB\t0x737B\n0xE0DC\t0x737A\n0xE0DD\t0x73C8\n0xE0DE\t0x73B3\n0xE0DF\t0x73CE\n0xE0E0\t0x73BB\n0xE0E1\t0x73C0\n0xE0E2\t0x73E5\n0xE0E3\t0x73EE\n0xE0E4\t0x73DE\n0xE0E5\t0x74A2\n0xE0E6\t0x7405\n0xE0E7\t0x746F\n0xE0E8\t0x7425\n0xE0E9\t0x73F8\n0xE0EA\t0x7432\n0xE0EB\t0x743A\n0xE0EC\t0x7455\n0xE0ED\t0x743F\n0xE0EE\t0x745F\n0xE0EF\t0x7459\n0xE0F0\t0x7441\n0xE0F1\t0x745C\n0xE0F2\t0x7469\n0xE0F3\t0x7470\n0xE0F4\t0x7463\n0xE0F5\t0x746A\n0xE0F6\t0x7476\n0xE0F7\t0x747E\n0xE0F8\t0x748B\n0xE0F9\t0x749E\n0xE0FA\t0x74A7\n0xE0FB\t0x74CA\n0xE0FC\t0x74CF\n0xE0FD\t0x74D4\n0xE0FE\t0x73F1\n0xE1A1\t0x74E0\n0xE1A2\t0x74E3\n0xE1A3\t0x74E7\n0xE1A4\t0x74E9\n0xE1A5\t0x74EE\n0xE1A6\t0x74F2\n0xE1A7\t0x74F0\n0xE1A8\t0x74F1\n0xE1A9\t0x74F8\n0xE1AA\t0x74F7\n0xE1AB\t0x7504\n0xE1AC\t0x7503\n0xE1AD\t0x7505\n0xE1AE\t0x750C\n0xE1AF\t0x750E\n0xE1B0\t0x750D\n0xE1B1\t0x7515\n0xE1B2\t0x7513\n0xE1B3\t0x751E\n0xE1B4\t0x7526\n0xE1B5\t0x752C\n0xE1B6\t0x753C\n0xE1B7\t0x7544\n0xE1B8\t0x754D\n0xE1B9\t0x754A\n0xE1BA\t0x7549\n0xE1BB\t0x755B\n0xE1BC\t0x7546\n0xE1BD\t0x755A\n0xE1BE\t0x7569\n0xE1BF\t0x7564\n0xE1C0\t0x7567\n0xE1C1\t0x756B\n0xE1C2\t0x756D\n0xE1C3\t0x7578\n0xE1C4\t0x7576\n0xE1C5\t0x7586\n0xE1C6\t0x7587\n0xE1C7\t0x7574\n0xE1C8\t0x758A\n0xE1C9\t0x7589\n0xE1CA\t0x7582\n0xE1CB\t0x7594\n0xE1CC\t0x759A\n0xE1CD\t0x759D\n0xE1CE\t0x75A5\n0xE1CF\t0x75A3\n0xE1D0\t0x75C2\n0xE1D1\t0x75B3\n0xE1D2\t0x75C3\n0xE1D3\t0x75B5\n0xE1D4\t0x75BD\n0xE1D5\t0x75B8\n0xE1D6\t0x75BC\n0xE1D7\t0x75B1\n0xE1D8\t0x75CD\n0xE1D9\t0x75CA\n0xE1DA\t0x75D2\n0xE1DB\t0x75D9\n0xE1DC\t0x75E3\n0xE1DD\t0x75DE\n0xE1DE\t0x75FE\n0xE1DF\t0x75FF\n0xE1E0\t0x75FC\n0xE1E1\t0x7601\n0xE1E2\t0x75F0\n0xE1E3\t0x75FA\n0xE1E4\t0x75F2\n0xE1E5\t0x75F3\n0xE1E6\t0x760B\n0xE1E7\t0x760D\n0xE1E8\t0x7609\n0xE1E9\t0x761F\n0xE1EA\t0x7627\n0xE1EB\t0x7620\n0xE1EC\t0x7621\n0xE1ED\t0x7622\n0xE1EE\t0x7624\n0xE1EF\t0x7634\n0xE1F0\t0x7630\n0xE1F1\t0x763B\n0xE1F2\t0x7647\n0xE1F3\t0x7648\n0xE1F4\t0x7646\n0xE1F5\t0x765C\n0xE1F6\t0x7658\n0xE1F7\t0x7661\n0xE1F8\t0x7662\n0xE1F9\t0x7668\n0xE1FA\t0x7669\n0xE1FB\t0x766A\n0xE1FC\t0x7667\n0xE1FD\t0x766C\n0xE1FE\t0x7670\n0xE2A1\t0x7672\n0xE2A2\t0x7676\n0xE2A3\t0x7678\n0xE2A4\t0x767C\n0xE2A5\t0x7680\n0xE2A6\t0x7683\n0xE2A7\t0x7688\n0xE2A8\t0x768B\n0xE2A9\t0x768E\n0xE2AA\t0x7696\n0xE2AB\t0x7693\n0xE2AC\t0x7699\n0xE2AD\t0x769A\n0xE2AE\t0x76B0\n0xE2AF\t0x76B4\n0xE2B0\t0x76B8\n0xE2B1\t0x76B9\n0xE2B2\t0x76BA\n0xE2B3\t0x76C2\n0xE2B4\t0x76CD\n0xE2B5\t0x76D6\n0xE2B6\t0x76D2\n0xE2B7\t0x76DE\n0xE2B8\t0x76E1\n0xE2B9\t0x76E5\n0xE2BA\t0x76E7\n0xE2BB\t0x76EA\n0xE2BC\t0x862F\n0xE2BD\t0x76FB\n0xE2BE\t0x7708\n0xE2BF\t0x7707\n0xE2C0\t0x7704\n0xE2C1\t0x7729\n0xE2C2\t0x7724\n0xE2C3\t0x771E\n0xE2C4\t0x7725\n0xE2C5\t0x7726\n0xE2C6\t0x771B\n0xE2C7\t0x7737\n0xE2C8\t0x7738\n0xE2C9\t0x7747\n0xE2CA\t0x775A\n0xE2CB\t0x7768\n0xE2CC\t0x776B\n0xE2CD\t0x775B\n0xE2CE\t0x7765\n0xE2CF\t0x777F\n0xE2D0\t0x777E\n0xE2D1\t0x7779\n0xE2D2\t0x778E\n0xE2D3\t0x778B\n0xE2D4\t0x7791\n0xE2D5\t0x77A0\n0xE2D6\t0x779E\n0xE2D7\t0x77B0\n0xE2D8\t0x77B6\n0xE2D9\t0x77B9\n0xE2DA\t0x77BF\n0xE2DB\t0x77BC\n0xE2DC\t0x77BD\n0xE2DD\t0x77BB\n0xE2DE\t0x77C7\n0xE2DF\t0x77CD\n0xE2E0\t0x77D7\n0xE2E1\t0x77DA\n0xE2E2\t0x77DC\n0xE2E3\t0x77E3\n0xE2E4\t0x77EE\n0xE2E5\t0x77FC\n0xE2E6\t0x780C\n0xE2E7\t0x7812\n0xE2E8\t0x7926\n0xE2E9\t0x7820\n0xE2EA\t0x792A\n0xE2EB\t0x7845\n0xE2EC\t0x788E\n0xE2ED\t0x7874\n0xE2EE\t0x7886\n0xE2EF\t0x787C\n0xE2F0\t0x789A\n0xE2F1\t0x788C\n0xE2F2\t0x78A3\n0xE2F3\t0x78B5\n0xE2F4\t0x78AA\n0xE2F5\t0x78AF\n0xE2F6\t0x78D1\n0xE2F7\t0x78C6\n0xE2F8\t0x78CB\n0xE2F9\t0x78D4\n0xE2FA\t0x78BE\n0xE2FB\t0x78BC\n0xE2FC\t0x78C5\n0xE2FD\t0x78CA\n0xE2FE\t0x78EC\n0xE3A1\t0x78E7\n0xE3A2\t0x78DA\n0xE3A3\t0x78FD\n0xE3A4\t0x78F4\n0xE3A5\t0x7907\n0xE3A6\t0x7912\n0xE3A7\t0x7911\n0xE3A8\t0x7919\n0xE3A9\t0x792C\n0xE3AA\t0x792B\n0xE3AB\t0x7940\n0xE3AC\t0x7960\n0xE3AD\t0x7957\n0xE3AE\t0x795F\n0xE3AF\t0x795A\n0xE3B0\t0x7955\n0xE3B1\t0x7953\n0xE3B2\t0x797A\n0xE3B3\t0x797F\n0xE3B4\t0x798A\n0xE3B5\t0x799D\n0xE3B6\t0x79A7\n0xE3B7\t0x9F4B\n0xE3B8\t0x79AA\n0xE3B9\t0x79AE\n0xE3BA\t0x79B3\n0xE3BB\t0x79B9\n0xE3BC\t0x79BA\n0xE3BD\t0x79C9\n0xE3BE\t0x79D5\n0xE3BF\t0x79E7\n0xE3C0\t0x79EC\n0xE3C1\t0x79E1\n0xE3C2\t0x79E3\n0xE3C3\t0x7A08\n0xE3C4\t0x7A0D\n0xE3C5\t0x7A18\n0xE3C6\t0x7A19\n0xE3C7\t0x7A20\n0xE3C8\t0x7A1F\n0xE3C9\t0x7980\n0xE3CA\t0x7A31\n0xE3CB\t0x7A3B\n0xE3CC\t0x7A3E\n0xE3CD\t0x7A37\n0xE3CE\t0x7A43\n0xE3CF\t0x7A57\n0xE3D0\t0x7A49\n0xE3D1\t0x7A61\n0xE3D2\t0x7A62\n0xE3D3\t0x7A69\n0xE3D4\t0x9F9D\n0xE3D5\t0x7A70\n0xE3D6\t0x7A79\n0xE3D7\t0x7A7D\n0xE3D8\t0x7A88\n0xE3D9\t0x7A97\n0xE3DA\t0x7A95\n0xE3DB\t0x7A98\n0xE3DC\t0x7A96\n0xE3DD\t0x7AA9\n0xE3DE\t0x7AC8\n0xE3DF\t0x7AB0\n0xE3E0\t0x7AB6\n0xE3E1\t0x7AC5\n0xE3E2\t0x7AC4\n0xE3E3\t0x7ABF\n0xE3E4\t0x9083\n0xE3E5\t0x7AC7\n0xE3E6\t0x7ACA\n0xE3E7\t0x7ACD\n0xE3E8\t0x7ACF\n0xE3E9\t0x7AD5\n0xE3EA\t0x7AD3\n0xE3EB\t0x7AD9\n0xE3EC\t0x7ADA\n0xE3ED\t0x7ADD\n0xE3EE\t0x7AE1\n0xE3EF\t0x7AE2\n0xE3F0\t0x7AE6\n0xE3F1\t0x7AED\n0xE3F2\t0x7AF0\n0xE3F3\t0x7B02\n0xE3F4\t0x7B0F\n0xE3F5\t0x7B0A\n0xE3F6\t0x7B06\n0xE3F7\t0x7B33\n0xE3F8\t0x7B18\n0xE3F9\t0x7B19\n0xE3FA\t0x7B1E\n0xE3FB\t0x7B35\n0xE3FC\t0x7B28\n0xE3FD\t0x7B36\n0xE3FE\t0x7B50\n0xE4A1\t0x7B7A\n0xE4A2\t0x7B04\n0xE4A3\t0x7B4D\n0xE4A4\t0x7B0B\n0xE4A5\t0x7B4C\n0xE4A6\t0x7B45\n0xE4A7\t0x7B75\n0xE4A8\t0x7B65\n0xE4A9\t0x7B74\n0xE4AA\t0x7B67\n0xE4AB\t0x7B70\n0xE4AC\t0x7B71\n0xE4AD\t0x7B6C\n0xE4AE\t0x7B6E\n0xE4AF\t0x7B9D\n0xE4B0\t0x7B98\n0xE4B1\t0x7B9F\n0xE4B2\t0x7B8D\n0xE4B3\t0x7B9C\n0xE4B4\t0x7B9A\n0xE4B5\t0x7B8B\n0xE4B6\t0x7B92\n0xE4B7\t0x7B8F\n0xE4B8\t0x7B5D\n0xE4B9\t0x7B99\n0xE4BA\t0x7BCB\n0xE4BB\t0x7BC1\n0xE4BC\t0x7BCC\n0xE4BD\t0x7BCF\n0xE4BE\t0x7BB4\n0xE4BF\t0x7BC6\n0xE4C0\t0x7BDD\n0xE4C1\t0x7BE9\n0xE4C2\t0x7C11\n0xE4C3\t0x7C14\n0xE4C4\t0x7BE6\n0xE4C5\t0x7BE5\n0xE4C6\t0x7C60\n0xE4C7\t0x7C00\n0xE4C8\t0x7C07\n0xE4C9\t0x7C13\n0xE4CA\t0x7BF3\n0xE4CB\t0x7BF7\n0xE4CC\t0x7C17\n0xE4CD\t0x7C0D\n0xE4CE\t0x7BF6\n0xE4CF\t0x7C23\n0xE4D0\t0x7C27\n0xE4D1\t0x7C2A\n0xE4D2\t0x7C1F\n0xE4D3\t0x7C37\n0xE4D4\t0x7C2B\n0xE4D5\t0x7C3D\n0xE4D6\t0x7C4C\n0xE4D7\t0x7C43\n0xE4D8\t0x7C54\n0xE4D9\t0x7C4F\n0xE4DA\t0x7C40\n0xE4DB\t0x7C50\n0xE4DC\t0x7C58\n0xE4DD\t0x7C5F\n0xE4DE\t0x7C64\n0xE4DF\t0x7C56\n0xE4E0\t0x7C65\n0xE4E1\t0x7C6C\n0xE4E2\t0x7C75\n0xE4E3\t0x7C83\n0xE4E4\t0x7C90\n0xE4E5\t0x7CA4\n0xE4E6\t0x7CAD\n0xE4E7\t0x7CA2\n0xE4E8\t0x7CAB\n0xE4E9\t0x7CA1\n0xE4EA\t0x7CA8\n0xE4EB\t0x7CB3\n0xE4EC\t0x7CB2\n0xE4ED\t0x7CB1\n0xE4EE\t0x7CAE\n0xE4EF\t0x7CB9\n0xE4F0\t0x7CBD\n0xE4F1\t0x7CC0\n0xE4F2\t0x7CC5\n0xE4F3\t0x7CC2\n0xE4F4\t0x7CD8\n0xE4F5\t0x7CD2\n0xE4F6\t0x7CDC\n0xE4F7\t0x7CE2\n0xE4F8\t0x9B3B\n0xE4F9\t0x7CEF\n0xE4FA\t0x7CF2\n0xE4FB\t0x7CF4\n0xE4FC\t0x7CF6\n0xE4FD\t0x7CFA\n0xE4FE\t0x7D06\n0xE5A1\t0x7D02\n0xE5A2\t0x7D1C\n0xE5A3\t0x7D15\n0xE5A4\t0x7D0A\n0xE5A5\t0x7D45\n0xE5A6\t0x7D4B\n0xE5A7\t0x7D2E\n0xE5A8\t0x7D32\n0xE5A9\t0x7D3F\n0xE5AA\t0x7D35\n0xE5AB\t0x7D46\n0xE5AC\t0x7D73\n0xE5AD\t0x7D56\n0xE5AE\t0x7D4E\n0xE5AF\t0x7D72\n0xE5B0\t0x7D68\n0xE5B1\t0x7D6E\n0xE5B2\t0x7D4F\n0xE5B3\t0x7D63\n0xE5B4\t0x7D93\n0xE5B5\t0x7D89\n0xE5B6\t0x7D5B\n0xE5B7\t0x7D8F\n0xE5B8\t0x7D7D\n0xE5B9\t0x7D9B\n0xE5BA\t0x7DBA\n0xE5BB\t0x7DAE\n0xE5BC\t0x7DA3\n0xE5BD\t0x7DB5\n0xE5BE\t0x7DC7\n0xE5BF\t0x7DBD\n0xE5C0\t0x7DAB\n0xE5C1\t0x7E3D\n0xE5C2\t0x7DA2\n0xE5C3\t0x7DAF\n0xE5C4\t0x7DDC\n0xE5C5\t0x7DB8\n0xE5C6\t0x7D9F\n0xE5C7\t0x7DB0\n0xE5C8\t0x7DD8\n0xE5C9\t0x7DDD\n0xE5CA\t0x7DE4\n0xE5CB\t0x7DDE\n0xE5CC\t0x7DFB\n0xE5CD\t0x7DF2\n0xE5CE\t0x7DE1\n0xE5CF\t0x7E05\n0xE5D0\t0x7E0A\n0xE5D1\t0x7E23\n0xE5D2\t0x7E21\n0xE5D3\t0x7E12\n0xE5D4\t0x7E31\n0xE5D5\t0x7E1F\n0xE5D6\t0x7E09\n0xE5D7\t0x7E0B\n0xE5D8\t0x7E22\n0xE5D9\t0x7E46\n0xE5DA\t0x7E66\n0xE5DB\t0x7E3B\n0xE5DC\t0x7E35\n0xE5DD\t0x7E39\n0xE5DE\t0x7E43\n0xE5DF\t0x7E37\n0xE5E0\t0x7E32\n0xE5E1\t0x7E3A\n0xE5E2\t0x7E67\n0xE5E3\t0x7E5D\n0xE5E4\t0x7E56\n0xE5E5\t0x7E5E\n0xE5E6\t0x7E59\n0xE5E7\t0x7E5A\n0xE5E8\t0x7E79\n0xE5E9\t0x7E6A\n0xE5EA\t0x7E69\n0xE5EB\t0x7E7C\n0xE5EC\t0x7E7B\n0xE5ED\t0x7E83\n0xE5EE\t0x7DD5\n0xE5EF\t0x7E7D\n0xE5F0\t0x8FAE\n0xE5F1\t0x7E7F\n0xE5F2\t0x7E88\n0xE5F3\t0x7E89\n0xE5F4\t0x7E8C\n0xE5F5\t0x7E92\n0xE5F6\t0x7E90\n0xE5F7\t0x7E93\n0xE5F8\t0x7E94\n0xE5F9\t0x7E96\n0xE5FA\t0x7E8E\n0xE5FB\t0x7E9B\n0xE5FC\t0x7E9C\n0xE5FD\t0x7F38\n0xE5FE\t0x7F3A\n0xE6A1\t0x7F45\n0xE6A2\t0x7F4C\n0xE6A3\t0x7F4D\n0xE6A4\t0x7F4E\n0xE6A5\t0x7F50\n0xE6A6\t0x7F51\n0xE6A7\t0x7F55\n0xE6A8\t0x7F54\n0xE6A9\t0x7F58\n0xE6AA\t0x7F5F\n0xE6AB\t0x7F60\n0xE6AC\t0x7F68\n0xE6AD\t0x7F69\n0xE6AE\t0x7F67\n0xE6AF\t0x7F78\n0xE6B0\t0x7F82\n0xE6B1\t0x7F86\n0xE6B2\t0x7F83\n0xE6B3\t0x7F88\n0xE6B4\t0x7F87\n0xE6B5\t0x7F8C\n0xE6B6\t0x7F94\n0xE6B7\t0x7F9E\n0xE6B8\t0x7F9D\n0xE6B9\t0x7F9A\n0xE6BA\t0x7FA3\n0xE6BB\t0x7FAF\n0xE6BC\t0x7FB2\n0xE6BD\t0x7FB9\n0xE6BE\t0x7FAE\n0xE6BF\t0x7FB6\n0xE6C0\t0x7FB8\n0xE6C1\t0x8B71\n0xE6C2\t0x7FC5\n0xE6C3\t0x7FC6\n0xE6C4\t0x7FCA\n0xE6C5\t0x7FD5\n0xE6C6\t0x7FD4\n0xE6C7\t0x7FE1\n0xE6C8\t0x7FE6\n0xE6C9\t0x7FE9\n0xE6CA\t0x7FF3\n0xE6CB\t0x7FF9\n0xE6CC\t0x98DC\n0xE6CD\t0x8006\n0xE6CE\t0x8004\n0xE6CF\t0x800B\n0xE6D0\t0x8012\n0xE6D1\t0x8018\n0xE6D2\t0x8019\n0xE6D3\t0x801C\n0xE6D4\t0x8021\n0xE6D5\t0x8028\n0xE6D6\t0x803F\n0xE6D7\t0x803B\n0xE6D8\t0x804A\n0xE6D9\t0x8046\n0xE6DA\t0x8052\n0xE6DB\t0x8058\n0xE6DC\t0x805A\n0xE6DD\t0x805F\n0xE6DE\t0x8062\n0xE6DF\t0x8068\n0xE6E0\t0x8073\n0xE6E1\t0x8072\n0xE6E2\t0x8070\n0xE6E3\t0x8076\n0xE6E4\t0x8079\n0xE6E5\t0x807D\n0xE6E6\t0x807F\n0xE6E7\t0x8084\n0xE6E8\t0x8086\n0xE6E9\t0x8085\n0xE6EA\t0x809B\n0xE6EB\t0x8093\n0xE6EC\t0x809A\n0xE6ED\t0x80AD\n0xE6EE\t0x5190\n0xE6EF\t0x80AC\n0xE6F0\t0x80DB\n0xE6F1\t0x80E5\n0xE6F2\t0x80D9\n0xE6F3\t0x80DD\n0xE6F4\t0x80C4\n0xE6F5\t0x80DA\n0xE6F6\t0x80D6\n0xE6F7\t0x8109\n0xE6F8\t0x80EF\n0xE6F9\t0x80F1\n0xE6FA\t0x811B\n0xE6FB\t0x8129\n0xE6FC\t0x8123\n0xE6FD\t0x812F\n0xE6FE\t0x814B\n0xE7A1\t0x968B\n0xE7A2\t0x8146\n0xE7A3\t0x813E\n0xE7A4\t0x8153\n0xE7A5\t0x8151\n0xE7A6\t0x80FC\n0xE7A7\t0x8171\n0xE7A8\t0x816E\n0xE7A9\t0x8165\n0xE7AA\t0x8166\n0xE7AB\t0x8174\n0xE7AC\t0x8183\n0xE7AD\t0x8188\n0xE7AE\t0x818A\n0xE7AF\t0x8180\n0xE7B0\t0x8182\n0xE7B1\t0x81A0\n0xE7B2\t0x8195\n0xE7B3\t0x81A4\n0xE7B4\t0x81A3\n0xE7B5\t0x815F\n0xE7B6\t0x8193\n0xE7B7\t0x81A9\n0xE7B8\t0x81B0\n0xE7B9\t0x81B5\n0xE7BA\t0x81BE\n0xE7BB\t0x81B8\n0xE7BC\t0x81BD\n0xE7BD\t0x81C0\n0xE7BE\t0x81C2\n0xE7BF\t0x81BA\n0xE7C0\t0x81C9\n0xE7C1\t0x81CD\n0xE7C2\t0x81D1\n0xE7C3\t0x81D9\n0xE7C4\t0x81D8\n0xE7C5\t0x81C8\n0xE7C6\t0x81DA\n0xE7C7\t0x81DF\n0xE7C8\t0x81E0\n0xE7C9\t0x81E7\n0xE7CA\t0x81FA\n0xE7CB\t0x81FB\n0xE7CC\t0x81FE\n0xE7CD\t0x8201\n0xE7CE\t0x8202\n0xE7CF\t0x8205\n0xE7D0\t0x8207\n0xE7D1\t0x820A\n0xE7D2\t0x820D\n0xE7D3\t0x8210\n0xE7D4\t0x8216\n0xE7D5\t0x8229\n0xE7D6\t0x822B\n0xE7D7\t0x8238\n0xE7D8\t0x8233\n0xE7D9\t0x8240\n0xE7DA\t0x8259\n0xE7DB\t0x8258\n0xE7DC\t0x825D\n0xE7DD\t0x825A\n0xE7DE\t0x825F\n0xE7DF\t0x8264\n0xE7E0\t0x8262\n0xE7E1\t0x8268\n0xE7E2\t0x826A\n0xE7E3\t0x826B\n0xE7E4\t0x822E\n0xE7E5\t0x8271\n0xE7E6\t0x8277\n0xE7E7\t0x8278\n0xE7E8\t0x827E\n0xE7E9\t0x828D\n0xE7EA\t0x8292\n0xE7EB\t0x82AB\n0xE7EC\t0x829F\n0xE7ED\t0x82BB\n0xE7EE\t0x82AC\n0xE7EF\t0x82E1\n0xE7F0\t0x82E3\n0xE7F1\t0x82DF\n0xE7F2\t0x82D2\n0xE7F3\t0x82F4\n0xE7F4\t0x82F3\n0xE7F5\t0x82FA\n0xE7F6\t0x8393\n0xE7F7\t0x8303\n0xE7F8\t0x82FB\n0xE7F9\t0x82F9\n0xE7FA\t0x82DE\n0xE7FB\t0x8306\n0xE7FC\t0x82DC\n0xE7FD\t0x8309\n0xE7FE\t0x82D9\n0xE8A1\t0x8335\n0xE8A2\t0x8334\n0xE8A3\t0x8316\n0xE8A4\t0x8332\n0xE8A5\t0x8331\n0xE8A6\t0x8340\n0xE8A7\t0x8339\n0xE8A8\t0x8350\n0xE8A9\t0x8345\n0xE8AA\t0x832F\n0xE8AB\t0x832B\n0xE8AC\t0x8317\n0xE8AD\t0x8318\n0xE8AE\t0x8385\n0xE8AF\t0x839A\n0xE8B0\t0x83AA\n0xE8B1\t0x839F\n0xE8B2\t0x83A2\n0xE8B3\t0x8396\n0xE8B4\t0x8323\n0xE8B5\t0x838E\n0xE8B6\t0x8387\n0xE8B7\t0x838A\n0xE8B8\t0x837C\n0xE8B9\t0x83B5\n0xE8BA\t0x8373\n0xE8BB\t0x8375\n0xE8BC\t0x83A0\n0xE8BD\t0x8389\n0xE8BE\t0x83A8\n0xE8BF\t0x83F4\n0xE8C0\t0x8413\n0xE8C1\t0x83EB\n0xE8C2\t0x83CE\n0xE8C3\t0x83FD\n0xE8C4\t0x8403\n0xE8C5\t0x83D8\n0xE8C6\t0x840B\n0xE8C7\t0x83C1\n0xE8C8\t0x83F7\n0xE8C9\t0x8407\n0xE8CA\t0x83E0\n0xE8CB\t0x83F2\n0xE8CC\t0x840D\n0xE8CD\t0x8422\n0xE8CE\t0x8420\n0xE8CF\t0x83BD\n0xE8D0\t0x8438\n0xE8D1\t0x8506\n0xE8D2\t0x83FB\n0xE8D3\t0x846D\n0xE8D4\t0x842A\n0xE8D5\t0x843C\n0xE8D6\t0x855A\n0xE8D7\t0x8484\n0xE8D8\t0x8477\n0xE8D9\t0x846B\n0xE8DA\t0x84AD\n0xE8DB\t0x846E\n0xE8DC\t0x8482\n0xE8DD\t0x8469\n0xE8DE\t0x8446\n0xE8DF\t0x842C\n0xE8E0\t0x846F\n0xE8E1\t0x8479\n0xE8E2\t0x8435\n0xE8E3\t0x84CA\n0xE8E4\t0x8462\n0xE8E5\t0x84B9\n0xE8E6\t0x84BF\n0xE8E7\t0x849F\n0xE8E8\t0x84D9\n0xE8E9\t0x84CD\n0xE8EA\t0x84BB\n0xE8EB\t0x84DA\n0xE8EC\t0x84D0\n0xE8ED\t0x84C1\n0xE8EE\t0x84C6\n0xE8EF\t0x84D6\n0xE8F0\t0x84A1\n0xE8F1\t0x8521\n0xE8F2\t0x84FF\n0xE8F3\t0x84F4\n0xE8F4\t0x8517\n0xE8F5\t0x8518\n0xE8F6\t0x852C\n0xE8F7\t0x851F\n0xE8F8\t0x8515\n0xE8F9\t0x8514\n0xE8FA\t0x84FC\n0xE8FB\t0x8540\n0xE8FC\t0x8563\n0xE8FD\t0x8558\n0xE8FE\t0x8548\n0xE9A1\t0x8541\n0xE9A2\t0x8602\n0xE9A3\t0x854B\n0xE9A4\t0x8555\n0xE9A5\t0x8580\n0xE9A6\t0x85A4\n0xE9A7\t0x8588\n0xE9A8\t0x8591\n0xE9A9\t0x858A\n0xE9AA\t0x85A8\n0xE9AB\t0x856D\n0xE9AC\t0x8594\n0xE9AD\t0x859B\n0xE9AE\t0x85EA\n0xE9AF\t0x8587\n0xE9B0\t0x859C\n0xE9B1\t0x8577\n0xE9B2\t0x857E\n0xE9B3\t0x8590\n0xE9B4\t0x85C9\n0xE9B5\t0x85BA\n0xE9B6\t0x85CF\n0xE9B7\t0x85B9\n0xE9B8\t0x85D0\n0xE9B9\t0x85D5\n0xE9BA\t0x85DD\n0xE9BB\t0x85E5\n0xE9BC\t0x85DC\n0xE9BD\t0x85F9\n0xE9BE\t0x860A\n0xE9BF\t0x8613\n0xE9C0\t0x860B\n0xE9C1\t0x85FE\n0xE9C2\t0x85FA\n0xE9C3\t0x8606\n0xE9C4\t0x8622\n0xE9C5\t0x861A\n0xE9C6\t0x8630\n0xE9C7\t0x863F\n0xE9C8\t0x864D\n0xE9C9\t0x4E55\n0xE9CA\t0x8654\n0xE9CB\t0x865F\n0xE9CC\t0x8667\n0xE9CD\t0x8671\n0xE9CE\t0x8693\n0xE9CF\t0x86A3\n0xE9D0\t0x86A9\n0xE9D1\t0x86AA\n0xE9D2\t0x868B\n0xE9D3\t0x868C\n0xE9D4\t0x86B6\n0xE9D5\t0x86AF\n0xE9D6\t0x86C4\n0xE9D7\t0x86C6\n0xE9D8\t0x86B0\n0xE9D9\t0x86C9\n0xE9DA\t0x8823\n0xE9DB\t0x86AB\n0xE9DC\t0x86D4\n0xE9DD\t0x86DE\n0xE9DE\t0x86E9\n0xE9DF\t0x86EC\n0xE9E0\t0x86DF\n0xE9E1\t0x86DB\n0xE9E2\t0x86EF\n0xE9E3\t0x8712\n0xE9E4\t0x8706\n0xE9E5\t0x8708\n0xE9E6\t0x8700\n0xE9E7\t0x8703\n0xE9E8\t0x86FB\n0xE9E9\t0x8711\n0xE9EA\t0x8709\n0xE9EB\t0x870D\n0xE9EC\t0x86F9\n0xE9ED\t0x870A\n0xE9EE\t0x8734\n0xE9EF\t0x873F\n0xE9F0\t0x8737\n0xE9F1\t0x873B\n0xE9F2\t0x8725\n0xE9F3\t0x8729\n0xE9F4\t0x871A\n0xE9F5\t0x8760\n0xE9F6\t0x875F\n0xE9F7\t0x8778\n0xE9F8\t0x874C\n0xE9F9\t0x874E\n0xE9FA\t0x8774\n0xE9FB\t0x8757\n0xE9FC\t0x8768\n0xE9FD\t0x876E\n0xE9FE\t0x8759\n0xEAA1\t0x8753\n0xEAA2\t0x8763\n0xEAA3\t0x876A\n0xEAA4\t0x8805\n0xEAA5\t0x87A2\n0xEAA6\t0x879F\n0xEAA7\t0x8782\n0xEAA8\t0x87AF\n0xEAA9\t0x87CB\n0xEAAA\t0x87BD\n0xEAAB\t0x87C0\n0xEAAC\t0x87D0\n0xEAAD\t0x96D6\n0xEAAE\t0x87AB\n0xEAAF\t0x87C4\n0xEAB0\t0x87B3\n0xEAB1\t0x87C7\n0xEAB2\t0x87C6\n0xEAB3\t0x87BB\n0xEAB4\t0x87EF\n0xEAB5\t0x87F2\n0xEAB6\t0x87E0\n0xEAB7\t0x880F\n0xEAB8\t0x880D\n0xEAB9\t0x87FE\n0xEABA\t0x87F6\n0xEABB\t0x87F7\n0xEABC\t0x880E\n0xEABD\t0x87D2\n0xEABE\t0x8811\n0xEABF\t0x8816\n0xEAC0\t0x8815\n0xEAC1\t0x8822\n0xEAC2\t0x8821\n0xEAC3\t0x8831\n0xEAC4\t0x8836\n0xEAC5\t0x8839\n0xEAC6\t0x8827\n0xEAC7\t0x883B\n0xEAC8\t0x8844\n0xEAC9\t0x8842\n0xEACA\t0x8852\n0xEACB\t0x8859\n0xEACC\t0x885E\n0xEACD\t0x8862\n0xEACE\t0x886B\n0xEACF\t0x8881\n0xEAD0\t0x887E\n0xEAD1\t0x889E\n0xEAD2\t0x8875\n0xEAD3\t0x887D\n0xEAD4\t0x88B5\n0xEAD5\t0x8872\n0xEAD6\t0x8882\n0xEAD7\t0x8897\n0xEAD8\t0x8892\n0xEAD9\t0x88AE\n0xEADA\t0x8899\n0xEADB\t0x88A2\n0xEADC\t0x888D\n0xEADD\t0x88A4\n0xEADE\t0x88B0\n0xEADF\t0x88BF\n0xEAE0\t0x88B1\n0xEAE1\t0x88C3\n0xEAE2\t0x88C4\n0xEAE3\t0x88D4\n0xEAE4\t0x88D8\n0xEAE5\t0x88D9\n0xEAE6\t0x88DD\n0xEAE7\t0x88F9\n0xEAE8\t0x8902\n0xEAE9\t0x88FC\n0xEAEA\t0x88F4\n0xEAEB\t0x88E8\n0xEAEC\t0x88F2\n0xEAED\t0x8904\n0xEAEE\t0x890C\n0xEAEF\t0x890A\n0xEAF0\t0x8913\n0xEAF1\t0x8943\n0xEAF2\t0x891E\n0xEAF3\t0x8925\n0xEAF4\t0x892A\n0xEAF5\t0x892B\n0xEAF6\t0x8941\n0xEAF7\t0x8944\n0xEAF8\t0x893B\n0xEAF9\t0x8936\n0xEAFA\t0x8938\n0xEAFB\t0x894C\n0xEAFC\t0x891D\n0xEAFD\t0x8960\n0xEAFE\t0x895E\n0xEBA1\t0x8966\n0xEBA2\t0x8964\n0xEBA3\t0x896D\n0xEBA4\t0x896A\n0xEBA5\t0x896F\n0xEBA6\t0x8974\n0xEBA7\t0x8977\n0xEBA8\t0x897E\n0xEBA9\t0x8983\n0xEBAA\t0x8988\n0xEBAB\t0x898A\n0xEBAC\t0x8993\n0xEBAD\t0x8998\n0xEBAE\t0x89A1\n0xEBAF\t0x89A9\n0xEBB0\t0x89A6\n0xEBB1\t0x89AC\n0xEBB2\t0x89AF\n0xEBB3\t0x89B2\n0xEBB4\t0x89BA\n0xEBB5\t0x89BD\n0xEBB6\t0x89BF\n0xEBB7\t0x89C0\n0xEBB8\t0x89DA\n0xEBB9\t0x89DC\n0xEBBA\t0x89DD\n0xEBBB\t0x89E7\n0xEBBC\t0x89F4\n0xEBBD\t0x89F8\n0xEBBE\t0x8A03\n0xEBBF\t0x8A16\n0xEBC0\t0x8A10\n0xEBC1\t0x8A0C\n0xEBC2\t0x8A1B\n0xEBC3\t0x8A1D\n0xEBC4\t0x8A25\n0xEBC5\t0x8A36\n0xEBC6\t0x8A41\n0xEBC7\t0x8A5B\n0xEBC8\t0x8A52\n0xEBC9\t0x8A46\n0xEBCA\t0x8A48\n0xEBCB\t0x8A7C\n0xEBCC\t0x8A6D\n0xEBCD\t0x8A6C\n0xEBCE\t0x8A62\n0xEBCF\t0x8A85\n0xEBD0\t0x8A82\n0xEBD1\t0x8A84\n0xEBD2\t0x8AA8\n0xEBD3\t0x8AA1\n0xEBD4\t0x8A91\n0xEBD5\t0x8AA5\n0xEBD6\t0x8AA6\n0xEBD7\t0x8A9A\n0xEBD8\t0x8AA3\n0xEBD9\t0x8AC4\n0xEBDA\t0x8ACD\n0xEBDB\t0x8AC2\n0xEBDC\t0x8ADA\n0xEBDD\t0x8AEB\n0xEBDE\t0x8AF3\n0xEBDF\t0x8AE7\n0xEBE0\t0x8AE4\n0xEBE1\t0x8AF1\n0xEBE2\t0x8B14\n0xEBE3\t0x8AE0\n0xEBE4\t0x8AE2\n0xEBE5\t0x8AF7\n0xEBE6\t0x8ADE\n0xEBE7\t0x8ADB\n0xEBE8\t0x8B0C\n0xEBE9\t0x8B07\n0xEBEA\t0x8B1A\n0xEBEB\t0x8AE1\n0xEBEC\t0x8B16\n0xEBED\t0x8B10\n0xEBEE\t0x8B17\n0xEBEF\t0x8B20\n0xEBF0\t0x8B33\n0xEBF1\t0x97AB\n0xEBF2\t0x8B26\n0xEBF3\t0x8B2B\n0xEBF4\t0x8B3E\n0xEBF5\t0x8B28\n0xEBF6\t0x8B41\n0xEBF7\t0x8B4C\n0xEBF8\t0x8B4F\n0xEBF9\t0x8B4E\n0xEBFA\t0x8B49\n0xEBFB\t0x8B56\n0xEBFC\t0x8B5B\n0xEBFD\t0x8B5A\n0xEBFE\t0x8B6B\n0xECA1\t0x8B5F\n0xECA2\t0x8B6C\n0xECA3\t0x8B6F\n0xECA4\t0x8B74\n0xECA5\t0x8B7D\n0xECA6\t0x8B80\n0xECA7\t0x8B8C\n0xECA8\t0x8B8E\n0xECA9\t0x8B92\n0xECAA\t0x8B93\n0xECAB\t0x8B96\n0xECAC\t0x8B99\n0xECAD\t0x8B9A\n0xECAE\t0x8C3A\n0xECAF\t0x8C41\n0xECB0\t0x8C3F\n0xECB1\t0x8C48\n0xECB2\t0x8C4C\n0xECB3\t0x8C4E\n0xECB4\t0x8C50\n0xECB5\t0x8C55\n0xECB6\t0x8C62\n0xECB7\t0x8C6C\n0xECB8\t0x8C78\n0xECB9\t0x8C7A\n0xECBA\t0x8C82\n0xECBB\t0x8C89\n0xECBC\t0x8C85\n0xECBD\t0x8C8A\n0xECBE\t0x8C8D\n0xECBF\t0x8C8E\n0xECC0\t0x8C94\n0xECC1\t0x8C7C\n0xECC2\t0x8C98\n0xECC3\t0x621D\n0xECC4\t0x8CAD\n0xECC5\t0x8CAA\n0xECC6\t0x8CBD\n0xECC7\t0x8CB2\n0xECC8\t0x8CB3\n0xECC9\t0x8CAE\n0xECCA\t0x8CB6\n0xECCB\t0x8CC8\n0xECCC\t0x8CC1\n0xECCD\t0x8CE4\n0xECCE\t0x8CE3\n0xECCF\t0x8CDA\n0xECD0\t0x8CFD\n0xECD1\t0x8CFA\n0xECD2\t0x8CFB\n0xECD3\t0x8D04\n0xECD4\t0x8D05\n0xECD5\t0x8D0A\n0xECD6\t0x8D07\n0xECD7\t0x8D0F\n0xECD8\t0x8D0D\n0xECD9\t0x8D10\n0xECDA\t0x9F4E\n0xECDB\t0x8D13\n0xECDC\t0x8CCD\n0xECDD\t0x8D14\n0xECDE\t0x8D16\n0xECDF\t0x8D67\n0xECE0\t0x8D6D\n0xECE1\t0x8D71\n0xECE2\t0x8D73\n0xECE3\t0x8D81\n0xECE4\t0x8D99\n0xECE5\t0x8DC2\n0xECE6\t0x8DBE\n0xECE7\t0x8DBA\n0xECE8\t0x8DCF\n0xECE9\t0x8DDA\n0xECEA\t0x8DD6\n0xECEB\t0x8DCC\n0xECEC\t0x8DDB\n0xECED\t0x8DCB\n0xECEE\t0x8DEA\n0xECEF\t0x8DEB\n0xECF0\t0x8DDF\n0xECF1\t0x8DE3\n0xECF2\t0x8DFC\n0xECF3\t0x8E08\n0xECF4\t0x8E09\n0xECF5\t0x8DFF\n0xECF6\t0x8E1D\n0xECF7\t0x8E1E\n0xECF8\t0x8E10\n0xECF9\t0x8E1F\n0xECFA\t0x8E42\n0xECFB\t0x8E35\n0xECFC\t0x8E30\n0xECFD\t0x8E34\n0xECFE\t0x8E4A\n0xEDA1\t0x8E47\n0xEDA2\t0x8E49\n0xEDA3\t0x8E4C\n0xEDA4\t0x8E50\n0xEDA5\t0x8E48\n0xEDA6\t0x8E59\n0xEDA7\t0x8E64\n0xEDA8\t0x8E60\n0xEDA9\t0x8E2A\n0xEDAA\t0x8E63\n0xEDAB\t0x8E55\n0xEDAC\t0x8E76\n0xEDAD\t0x8E72\n0xEDAE\t0x8E7C\n0xEDAF\t0x8E81\n0xEDB0\t0x8E87\n0xEDB1\t0x8E85\n0xEDB2\t0x8E84\n0xEDB3\t0x8E8B\n0xEDB4\t0x8E8A\n0xEDB5\t0x8E93\n0xEDB6\t0x8E91\n0xEDB7\t0x8E94\n0xEDB8\t0x8E99\n0xEDB9\t0x8EAA\n0xEDBA\t0x8EA1\n0xEDBB\t0x8EAC\n0xEDBC\t0x8EB0\n0xEDBD\t0x8EC6\n0xEDBE\t0x8EB1\n0xEDBF\t0x8EBE\n0xEDC0\t0x8EC5\n0xEDC1\t0x8EC8\n0xEDC2\t0x8ECB\n0xEDC3\t0x8EDB\n0xEDC4\t0x8EE3\n0xEDC5\t0x8EFC\n0xEDC6\t0x8EFB\n0xEDC7\t0x8EEB\n0xEDC8\t0x8EFE\n0xEDC9\t0x8F0A\n0xEDCA\t0x8F05\n0xEDCB\t0x8F15\n0xEDCC\t0x8F12\n0xEDCD\t0x8F19\n0xEDCE\t0x8F13\n0xEDCF\t0x8F1C\n0xEDD0\t0x8F1F\n0xEDD1\t0x8F1B\n0xEDD2\t0x8F0C\n0xEDD3\t0x8F26\n0xEDD4\t0x8F33\n0xEDD5\t0x8F3B\n0xEDD6\t0x8F39\n0xEDD7\t0x8F45\n0xEDD8\t0x8F42\n0xEDD9\t0x8F3E\n0xEDDA\t0x8F4C\n0xEDDB\t0x8F49\n0xEDDC\t0x8F46\n0xEDDD\t0x8F4E\n0xEDDE\t0x8F57\n0xEDDF\t0x8F5C\n0xEDE0\t0x8F62\n0xEDE1\t0x8F63\n0xEDE2\t0x8F64\n0xEDE3\t0x8F9C\n0xEDE4\t0x8F9F\n0xEDE5\t0x8FA3\n0xEDE6\t0x8FAD\n0xEDE7\t0x8FAF\n0xEDE8\t0x8FB7\n0xEDE9\t0x8FDA\n0xEDEA\t0x8FE5\n0xEDEB\t0x8FE2\n0xEDEC\t0x8FEA\n0xEDED\t0x8FEF\n0xEDEE\t0x9087\n0xEDEF\t0x8FF4\n0xEDF0\t0x9005\n0xEDF1\t0x8FF9\n0xEDF2\t0x8FFA\n0xEDF3\t0x9011\n0xEDF4\t0x9015\n0xEDF5\t0x9021\n0xEDF6\t0x900D\n0xEDF7\t0x901E\n0xEDF8\t0x9016\n0xEDF9\t0x900B\n0xEDFA\t0x9027\n0xEDFB\t0x9036\n0xEDFC\t0x9035\n0xEDFD\t0x9039\n0xEDFE\t0x8FF8\n0xEEA1\t0x904F\n0xEEA2\t0x9050\n0xEEA3\t0x9051\n0xEEA4\t0x9052\n0xEEA5\t0x900E\n0xEEA6\t0x9049\n0xEEA7\t0x903E\n0xEEA8\t0x9056\n0xEEA9\t0x9058\n0xEEAA\t0x905E\n0xEEAB\t0x9068\n0xEEAC\t0x906F\n0xEEAD\t0x9076\n0xEEAE\t0x96A8\n0xEEAF\t0x9072\n0xEEB0\t0x9082\n0xEEB1\t0x907D\n0xEEB2\t0x9081\n0xEEB3\t0x9080\n0xEEB4\t0x908A\n0xEEB5\t0x9089\n0xEEB6\t0x908F\n0xEEB7\t0x90A8\n0xEEB8\t0x90AF\n0xEEB9\t0x90B1\n0xEEBA\t0x90B5\n0xEEBB\t0x90E2\n0xEEBC\t0x90E4\n0xEEBD\t0x6248\n0xEEBE\t0x90DB\n0xEEBF\t0x9102\n0xEEC0\t0x9112\n0xEEC1\t0x9119\n0xEEC2\t0x9132\n0xEEC3\t0x9130\n0xEEC4\t0x914A\n0xEEC5\t0x9156\n0xEEC6\t0x9158\n0xEEC7\t0x9163\n0xEEC8\t0x9165\n0xEEC9\t0x9169\n0xEECA\t0x9173\n0xEECB\t0x9172\n0xEECC\t0x918B\n0xEECD\t0x9189\n0xEECE\t0x9182\n0xEECF\t0x91A2\n0xEED0\t0x91AB\n0xEED1\t0x91AF\n0xEED2\t0x91AA\n0xEED3\t0x91B5\n0xEED4\t0x91B4\n0xEED5\t0x91BA\n0xEED6\t0x91C0\n0xEED7\t0x91C1\n0xEED8\t0x91C9\n0xEED9\t0x91CB\n0xEEDA\t0x91D0\n0xEEDB\t0x91D6\n0xEEDC\t0x91DF\n0xEEDD\t0x91E1\n0xEEDE\t0x91DB\n0xEEDF\t0x91FC\n0xEEE0\t0x91F5\n0xEEE1\t0x91F6\n0xEEE2\t0x921E\n0xEEE3\t0x91FF\n0xEEE4\t0x9214\n0xEEE5\t0x922C\n0xEEE6\t0x9215\n0xEEE7\t0x9211\n0xEEE8\t0x925E\n0xEEE9\t0x9257\n0xEEEA\t0x9245\n0xEEEB\t0x9249\n0xEEEC\t0x9264\n0xEEED\t0x9248\n0xEEEE\t0x9295\n0xEEEF\t0x923F\n0xEEF0\t0x924B\n0xEEF1\t0x9250\n0xEEF2\t0x929C\n0xEEF3\t0x9296\n0xEEF4\t0x9293\n0xEEF5\t0x929B\n0xEEF6\t0x925A\n0xEEF7\t0x92CF\n0xEEF8\t0x92B9\n0xEEF9\t0x92B7\n0xEEFA\t0x92E9\n0xEEFB\t0x930F\n0xEEFC\t0x92FA\n0xEEFD\t0x9344\n0xEEFE\t0x932E\n0xEFA1\t0x9319\n0xEFA2\t0x9322\n0xEFA3\t0x931A\n0xEFA4\t0x9323\n0xEFA5\t0x933A\n0xEFA6\t0x9335\n0xEFA7\t0x933B\n0xEFA8\t0x935C\n0xEFA9\t0x9360\n0xEFAA\t0x937C\n0xEFAB\t0x936E\n0xEFAC\t0x9356\n0xEFAD\t0x93B0\n0xEFAE\t0x93AC\n0xEFAF\t0x93AD\n0xEFB0\t0x9394\n0xEFB1\t0x93B9\n0xEFB2\t0x93D6\n0xEFB3\t0x93D7\n0xEFB4\t0x93E8\n0xEFB5\t0x93E5\n0xEFB6\t0x93D8\n0xEFB7\t0x93C3\n0xEFB8\t0x93DD\n0xEFB9\t0x93D0\n0xEFBA\t0x93C8\n0xEFBB\t0x93E4\n0xEFBC\t0x941A\n0xEFBD\t0x9414\n0xEFBE\t0x9413\n0xEFBF\t0x9403\n0xEFC0\t0x9407\n0xEFC1\t0x9410\n0xEFC2\t0x9436\n0xEFC3\t0x942B\n0xEFC4\t0x9435\n0xEFC5\t0x9421\n0xEFC6\t0x943A\n0xEFC7\t0x9441\n0xEFC8\t0x9452\n0xEFC9\t0x9444\n0xEFCA\t0x945B\n0xEFCB\t0x9460\n0xEFCC\t0x9462\n0xEFCD\t0x945E\n0xEFCE\t0x946A\n0xEFCF\t0x9229\n0xEFD0\t0x9470\n0xEFD1\t0x9475\n0xEFD2\t0x9477\n0xEFD3\t0x947D\n0xEFD4\t0x945A\n0xEFD5\t0x947C\n0xEFD6\t0x947E\n0xEFD7\t0x9481\n0xEFD8\t0x947F\n0xEFD9\t0x9582\n0xEFDA\t0x9587\n0xEFDB\t0x958A\n0xEFDC\t0x9594\n0xEFDD\t0x9596\n0xEFDE\t0x9598\n0xEFDF\t0x9599\n0xEFE0\t0x95A0\n0xEFE1\t0x95A8\n0xEFE2\t0x95A7\n0xEFE3\t0x95AD\n0xEFE4\t0x95BC\n0xEFE5\t0x95BB\n0xEFE6\t0x95B9\n0xEFE7\t0x95BE\n0xEFE8\t0x95CA\n0xEFE9\t0x6FF6\n0xEFEA\t0x95C3\n0xEFEB\t0x95CD\n0xEFEC\t0x95CC\n0xEFED\t0x95D5\n0xEFEE\t0x95D4\n0xEFEF\t0x95D6\n0xEFF0\t0x95DC\n0xEFF1\t0x95E1\n0xEFF2\t0x95E5\n0xEFF3\t0x95E2\n0xEFF4\t0x9621\n0xEFF5\t0x9628\n0xEFF6\t0x962E\n0xEFF7\t0x962F\n0xEFF8\t0x9642\n0xEFF9\t0x964C\n0xEFFA\t0x964F\n0xEFFB\t0x964B\n0xEFFC\t0x9677\n0xEFFD\t0x965C\n0xEFFE\t0x965E\n0xF0A1\t0x965D\n0xF0A2\t0x965F\n0xF0A3\t0x9666\n0xF0A4\t0x9672\n0xF0A5\t0x966C\n0xF0A6\t0x968D\n0xF0A7\t0x9698\n0xF0A8\t0x9695\n0xF0A9\t0x9697\n0xF0AA\t0x96AA\n0xF0AB\t0x96A7\n0xF0AC\t0x96B1\n0xF0AD\t0x96B2\n0xF0AE\t0x96B0\n0xF0AF\t0x96B4\n0xF0B0\t0x96B6\n0xF0B1\t0x96B8\n0xF0B2\t0x96B9\n0xF0B3\t0x96CE\n0xF0B4\t0x96CB\n0xF0B5\t0x96C9\n0xF0B6\t0x96CD\n0xF0B7\t0x894D\n0xF0B8\t0x96DC\n0xF0B9\t0x970D\n0xF0BA\t0x96D5\n0xF0BB\t0x96F9\n0xF0BC\t0x9704\n0xF0BD\t0x9706\n0xF0BE\t0x9708\n0xF0BF\t0x9713\n0xF0C0\t0x970E\n0xF0C1\t0x9711\n0xF0C2\t0x970F\n0xF0C3\t0x9716\n0xF0C4\t0x9719\n0xF0C5\t0x9724\n0xF0C6\t0x972A\n0xF0C7\t0x9730\n0xF0C8\t0x9739\n0xF0C9\t0x973D\n0xF0CA\t0x973E\n0xF0CB\t0x9744\n0xF0CC\t0x9746\n0xF0CD\t0x9748\n0xF0CE\t0x9742\n0xF0CF\t0x9749\n0xF0D0\t0x975C\n0xF0D1\t0x9760\n0xF0D2\t0x9764\n0xF0D3\t0x9766\n0xF0D4\t0x9768\n0xF0D5\t0x52D2\n0xF0D6\t0x976B\n0xF0D7\t0x9771\n0xF0D8\t0x9779\n0xF0D9\t0x9785\n0xF0DA\t0x977C\n0xF0DB\t0x9781\n0xF0DC\t0x977A\n0xF0DD\t0x9786\n0xF0DE\t0x978B\n0xF0DF\t0x978F\n0xF0E0\t0x9790\n0xF0E1\t0x979C\n0xF0E2\t0x97A8\n0xF0E3\t0x97A6\n0xF0E4\t0x97A3\n0xF0E5\t0x97B3\n0xF0E6\t0x97B4\n0xF0E7\t0x97C3\n0xF0E8\t0x97C6\n0xF0E9\t0x97C8\n0xF0EA\t0x97CB\n0xF0EB\t0x97DC\n0xF0EC\t0x97ED\n0xF0ED\t0x9F4F\n0xF0EE\t0x97F2\n0xF0EF\t0x7ADF\n0xF0F0\t0x97F6\n0xF0F1\t0x97F5\n0xF0F2\t0x980F\n0xF0F3\t0x980C\n0xF0F4\t0x9838\n0xF0F5\t0x9824\n0xF0F6\t0x9821\n0xF0F7\t0x9837\n0xF0F8\t0x983D\n0xF0F9\t0x9846\n0xF0FA\t0x984F\n0xF0FB\t0x984B\n0xF0FC\t0x986B\n0xF0FD\t0x986F\n0xF0FE\t0x9870\n0xF1A1\t0x9871\n0xF1A2\t0x9874\n0xF1A3\t0x9873\n0xF1A4\t0x98AA\n0xF1A5\t0x98AF\n0xF1A6\t0x98B1\n0xF1A7\t0x98B6\n0xF1A8\t0x98C4\n0xF1A9\t0x98C3\n0xF1AA\t0x98C6\n0xF1AB\t0x98E9\n0xF1AC\t0x98EB\n0xF1AD\t0x9903\n0xF1AE\t0x9909\n0xF1AF\t0x9912\n0xF1B0\t0x9914\n0xF1B1\t0x9918\n0xF1B2\t0x9921\n0xF1B3\t0x991D\n0xF1B4\t0x991E\n0xF1B5\t0x9924\n0xF1B6\t0x9920\n0xF1B7\t0x992C\n0xF1B8\t0x992E\n0xF1B9\t0x993D\n0xF1BA\t0x993E\n0xF1BB\t0x9942\n0xF1BC\t0x9949\n0xF1BD\t0x9945\n0xF1BE\t0x9950\n0xF1BF\t0x994B\n0xF1C0\t0x9951\n0xF1C1\t0x9952\n0xF1C2\t0x994C\n0xF1C3\t0x9955\n0xF1C4\t0x9997\n0xF1C5\t0x9998\n0xF1C6\t0x99A5\n0xF1C7\t0x99AD\n0xF1C8\t0x99AE\n0xF1C9\t0x99BC\n0xF1CA\t0x99DF\n0xF1CB\t0x99DB\n0xF1CC\t0x99DD\n0xF1CD\t0x99D8\n0xF1CE\t0x99D1\n0xF1CF\t0x99ED\n0xF1D0\t0x99EE\n0xF1D1\t0x99F1\n0xF1D2\t0x99F2\n0xF1D3\t0x99FB\n0xF1D4\t0x99F8\n0xF1D5\t0x9A01\n0xF1D6\t0x9A0F\n0xF1D7\t0x9A05\n0xF1D8\t0x99E2\n0xF1D9\t0x9A19\n0xF1DA\t0x9A2B\n0xF1DB\t0x9A37\n0xF1DC\t0x9A45\n0xF1DD\t0x9A42\n0xF1DE\t0x9A40\n0xF1DF\t0x9A43\n0xF1E0\t0x9A3E\n0xF1E1\t0x9A55\n0xF1E2\t0x9A4D\n0xF1E3\t0x9A5B\n0xF1E4\t0x9A57\n0xF1E5\t0x9A5F\n0xF1E6\t0x9A62\n0xF1E7\t0x9A65\n0xF1E8\t0x9A64\n0xF1E9\t0x9A69\n0xF1EA\t0x9A6B\n0xF1EB\t0x9A6A\n0xF1EC\t0x9AAD\n0xF1ED\t0x9AB0\n0xF1EE\t0x9ABC\n0xF1EF\t0x9AC0\n0xF1F0\t0x9ACF\n0xF1F1\t0x9AD1\n0xF1F2\t0x9AD3\n0xF1F3\t0x9AD4\n0xF1F4\t0x9ADE\n0xF1F5\t0x9ADF\n0xF1F6\t0x9AE2\n0xF1F7\t0x9AE3\n0xF1F8\t0x9AE6\n0xF1F9\t0x9AEF\n0xF1FA\t0x9AEB\n0xF1FB\t0x9AEE\n0xF1FC\t0x9AF4\n0xF1FD\t0x9AF1\n0xF1FE\t0x9AF7\n0xF2A1\t0x9AFB\n0xF2A2\t0x9B06\n0xF2A3\t0x9B18\n0xF2A4\t0x9B1A\n0xF2A5\t0x9B1F\n0xF2A6\t0x9B22\n0xF2A7\t0x9B23\n0xF2A8\t0x9B25\n0xF2A9\t0x9B27\n0xF2AA\t0x9B28\n0xF2AB\t0x9B29\n0xF2AC\t0x9B2A\n0xF2AD\t0x9B2E\n0xF2AE\t0x9B2F\n0xF2AF\t0x9B32\n0xF2B0\t0x9B44\n0xF2B1\t0x9B43\n0xF2B2\t0x9B4F\n0xF2B3\t0x9B4D\n0xF2B4\t0x9B4E\n0xF2B5\t0x9B51\n0xF2B6\t0x9B58\n0xF2B7\t0x9B74\n0xF2B8\t0x9B93\n0xF2B9\t0x9B83\n0xF2BA\t0x9B91\n0xF2BB\t0x9B96\n0xF2BC\t0x9B97\n0xF2BD\t0x9B9F\n0xF2BE\t0x9BA0\n0xF2BF\t0x9BA8\n0xF2C0\t0x9BB4\n0xF2C1\t0x9BC0\n0xF2C2\t0x9BCA\n0xF2C3\t0x9BB9\n0xF2C4\t0x9BC6\n0xF2C5\t0x9BCF\n0xF2C6\t0x9BD1\n0xF2C7\t0x9BD2\n0xF2C8\t0x9BE3\n0xF2C9\t0x9BE2\n0xF2CA\t0x9BE4\n0xF2CB\t0x9BD4\n0xF2CC\t0x9BE1\n0xF2CD\t0x9C3A\n0xF2CE\t0x9BF2\n0xF2CF\t0x9BF1\n0xF2D0\t0x9BF0\n0xF2D1\t0x9C15\n0xF2D2\t0x9C14\n0xF2D3\t0x9C09\n0xF2D4\t0x9C13\n0xF2D5\t0x9C0C\n0xF2D6\t0x9C06\n0xF2D7\t0x9C08\n0xF2D8\t0x9C12\n0xF2D9\t0x9C0A\n0xF2DA\t0x9C04\n0xF2DB\t0x9C2E\n0xF2DC\t0x9C1B\n0xF2DD\t0x9C25\n0xF2DE\t0x9C24\n0xF2DF\t0x9C21\n0xF2E0\t0x9C30\n0xF2E1\t0x9C47\n0xF2E2\t0x9C32\n0xF2E3\t0x9C46\n0xF2E4\t0x9C3E\n0xF2E5\t0x9C5A\n0xF2E6\t0x9C60\n0xF2E7\t0x9C67\n0xF2E8\t0x9C76\n0xF2E9\t0x9C78\n0xF2EA\t0x9CE7\n0xF2EB\t0x9CEC\n0xF2EC\t0x9CF0\n0xF2ED\t0x9D09\n0xF2EE\t0x9D08\n0xF2EF\t0x9CEB\n0xF2F0\t0x9D03\n0xF2F1\t0x9D06\n0xF2F2\t0x9D2A\n0xF2F3\t0x9D26\n0xF2F4\t0x9DAF\n0xF2F5\t0x9D23\n0xF2F6\t0x9D1F\n0xF2F7\t0x9D44\n0xF2F8\t0x9D15\n0xF2F9\t0x9D12\n0xF2FA\t0x9D41\n0xF2FB\t0x9D3F\n0xF2FC\t0x9D3E\n0xF2FD\t0x9D46\n0xF2FE\t0x9D48\n0xF3A1\t0x9D5D\n0xF3A2\t0x9D5E\n0xF3A3\t0x9D64\n0xF3A4\t0x9D51\n0xF3A5\t0x9D50\n0xF3A6\t0x9D59\n0xF3A7\t0x9D72\n0xF3A8\t0x9D89\n0xF3A9\t0x9D87\n0xF3AA\t0x9DAB\n0xF3AB\t0x9D6F\n0xF3AC\t0x9D7A\n0xF3AD\t0x9D9A\n0xF3AE\t0x9DA4\n0xF3AF\t0x9DA9\n0xF3B0\t0x9DB2\n0xF3B1\t0x9DC4\n0xF3B2\t0x9DC1\n0xF3B3\t0x9DBB\n0xF3B4\t0x9DB8\n0xF3B5\t0x9DBA\n0xF3B6\t0x9DC6\n0xF3B7\t0x9DCF\n0xF3B8\t0x9DC2\n0xF3B9\t0x9DD9\n0xF3BA\t0x9DD3\n0xF3BB\t0x9DF8\n0xF3BC\t0x9DE6\n0xF3BD\t0x9DED\n0xF3BE\t0x9DEF\n0xF3BF\t0x9DFD\n0xF3C0\t0x9E1A\n0xF3C1\t0x9E1B\n0xF3C2\t0x9E1E\n0xF3C3\t0x9E75\n0xF3C4\t0x9E79\n0xF3C5\t0x9E7D\n0xF3C6\t0x9E81\n0xF3C7\t0x9E88\n0xF3C8\t0x9E8B\n0xF3C9\t0x9E8C\n0xF3CA\t0x9E92\n0xF3CB\t0x9E95\n0xF3CC\t0x9E91\n0xF3CD\t0x9E9D\n0xF3CE\t0x9EA5\n0xF3CF\t0x9EA9\n0xF3D0\t0x9EB8\n0xF3D1\t0x9EAA\n0xF3D2\t0x9EAD\n0xF3D3\t0x9761\n0xF3D4\t0x9ECC\n0xF3D5\t0x9ECE\n0xF3D6\t0x9ECF\n0xF3D7\t0x9ED0\n0xF3D8\t0x9ED4\n0xF3D9\t0x9EDC\n0xF3DA\t0x9EDE\n0xF3DB\t0x9EDD\n0xF3DC\t0x9EE0\n0xF3DD\t0x9EE5\n0xF3DE\t0x9EE8\n0xF3DF\t0x9EEF\n0xF3E0\t0x9EF4\n0xF3E1\t0x9EF6\n0xF3E2\t0x9EF7\n0xF3E3\t0x9EF9\n0xF3E4\t0x9EFB\n0xF3E5\t0x9EFC\n0xF3E6\t0x9EFD\n0xF3E7\t0x9F07\n0xF3E8\t0x9F08\n0xF3E9\t0x76B7\n0xF3EA\t0x9F15\n0xF3EB\t0x9F21\n0xF3EC\t0x9F2C\n0xF3ED\t0x9F3E\n0xF3EE\t0x9F4A\n0xF3EF\t0x9F52\n0xF3F0\t0x9F54\n0xF3F1\t0x9F63\n0xF3F2\t0x9F5F\n0xF3F3\t0x9F60\n0xF3F4\t0x9F61\n0xF3F5\t0x9F66\n0xF3F6\t0x9F67\n0xF3F7\t0x9F6C\n0xF3F8\t0x9F6A\n0xF3F9\t0x9F77\n0xF3FA\t0x9F72\n0xF3FB\t0x9F76\n0xF3FC\t0x9F95\n0xF3FD\t0x9F9C\n0xF3FE\t0x9FA0\n0xF4A1\t0x582F\n0xF4A2\t0x69C7\n0xF4A3\t0x9059\n0xF4A4\t0x7464\n0xF4A5\t0x51DC\n0xF4A6\t0x7199\n0xF5A1\t0xE000\n0xF5A2\t0xE001\n0xF5A3\t0xE002\n0xF5A4\t0xE003\n0xF5A5\t0xE004\n0xF5A6\t0xE005\n0xF5A7\t0xE006\n0xF5A8\t0xE007\n0xF5A9\t0xE008\n0xF5AA\t0xE009\n0xF5AB\t0xE00A\n0xF5AC\t0xE00B\n0xF5AD\t0xE00C\n0xF5AE\t0xE00D\n0xF5AF\t0xE00E\n0xF5B0\t0xE00F\n0xF5B1\t0xE010\n0xF5B2\t0xE011\n0xF5B3\t0xE012\n0xF5B4\t0xE013\n0xF5B5\t0xE014\n0xF5B6\t0xE015\n0xF5B7\t0xE016\n0xF5B8\t0xE017\n0xF5B9\t0xE018\n0xF5BA\t0xE019\n0xF5BB\t0xE01A\n0xF5BC\t0xE01B\n0xF5BD\t0xE01C\n0xF5BE\t0xE01D\n0xF5BF\t0xE01E\n0xF5C0\t0xE01F\n0xF5C1\t0xE020\n0xF5C2\t0xE021\n0xF5C3\t0xE022\n0xF5C4\t0xE023\n0xF5C5\t0xE024\n0xF5C6\t0xE025\n0xF5C7\t0xE026\n0xF5C8\t0xE027\n0xF5C9\t0xE028\n0xF5CA\t0xE029\n0xF5CB\t0xE02A\n0xF5CC\t0xE02B\n0xF5CD\t0xE02C\n0xF5CE\t0xE02D\n0xF5CF\t0xE02E\n0xF5D0\t0xE02F\n0xF5D1\t0xE030\n0xF5D2\t0xE031\n0xF5D3\t0xE032\n0xF5D4\t0xE033\n0xF5D5\t0xE034\n0xF5D6\t0xE035\n0xF5D7\t0xE036\n0xF5D8\t0xE037\n0xF5D9\t0xE038\n0xF5DA\t0xE039\n0xF5DB\t0xE03A\n0xF5DC\t0xE03B\n0xF5DD\t0xE03C\n0xF5DE\t0xE03D\n0xF5DF\t0xE03E\n0xF5E0\t0xE03F\n0xF5E1\t0xE040\n0xF5E2\t0xE041\n0xF5E3\t0xE042\n0xF5E4\t0xE043\n0xF5E5\t0xE044\n0xF5E6\t0xE045\n0xF5E7\t0xE046\n0xF5E8\t0xE047\n0xF5E9\t0xE048\n0xF5EA\t0xE049\n0xF5EB\t0xE04A\n0xF5EC\t0xE04B\n0xF5ED\t0xE04C\n0xF5EE\t0xE04D\n0xF5EF\t0xE04E\n0xF5F0\t0xE04F\n0xF5F1\t0xE050\n0xF5F2\t0xE051\n0xF5F3\t0xE052\n0xF5F4\t0xE053\n0xF5F5\t0xE054\n0xF5F6\t0xE055\n0xF5F7\t0xE056\n0xF5F8\t0xE057\n0xF5F9\t0xE058\n0xF5FA\t0xE059\n0xF5FB\t0xE05A\n0xF5FC\t0xE05B\n0xF5FD\t0xE05C\n0xF5FE\t0xE05D\n0xF6A1\t0xE05E\n0xF6A2\t0xE05F\n0xF6A3\t0xE060\n0xF6A4\t0xE061\n0xF6A5\t0xE062\n0xF6A6\t0xE063\n0xF6A7\t0xE064\n0xF6A8\t0xE065\n0xF6A9\t0xE066\n0xF6AA\t0xE067\n0xF6AB\t0xE068\n0xF6AC\t0xE069\n0xF6AD\t0xE06A\n0xF6AE\t0xE06B\n0xF6AF\t0xE06C\n0xF6B0\t0xE06D\n0xF6B1\t0xE06E\n0xF6B2\t0xE06F\n0xF6B3\t0xE070\n0xF6B4\t0xE071\n0xF6B5\t0xE072\n0xF6B6\t0xE073\n0xF6B7\t0xE074\n0xF6B8\t0xE075\n0xF6B9\t0xE076\n0xF6BA\t0xE077\n0xF6BB\t0xE078\n0xF6BC\t0xE079\n0xF6BD\t0xE07A\n0xF6BE\t0xE07B\n0xF6BF\t0xE07C\n0xF6C0\t0xE07D\n0xF6C1\t0xE07E\n0xF6C2\t0xE07F\n0xF6C3\t0xE080\n0xF6C4\t0xE081\n0xF6C5\t0xE082\n0xF6C6\t0xE083\n0xF6C7\t0xE084\n0xF6C8\t0xE085\n0xF6C9\t0xE086\n0xF6CA\t0xE087\n0xF6CB\t0xE088\n0xF6CC\t0xE089\n0xF6CD\t0xE08A\n0xF6CE\t0xE08B\n0xF6CF\t0xE08C\n0xF6D0\t0xE08D\n0xF6D1\t0xE08E\n0xF6D2\t0xE08F\n0xF6D3\t0xE090\n0xF6D4\t0xE091\n0xF6D5\t0xE092\n0xF6D6\t0xE093\n0xF6D7\t0xE094\n0xF6D8\t0xE095\n0xF6D9\t0xE096\n0xF6DA\t0xE097\n0xF6DB\t0xE098\n0xF6DC\t0xE099\n0xF6DD\t0xE09A\n0xF6DE\t0xE09B\n0xF6DF\t0xE09C\n0xF6E0\t0xE09D\n0xF6E1\t0xE09E\n0xF6E2\t0xE09F\n0xF6E3\t0xE0A0\n0xF6E4\t0xE0A1\n0xF6E5\t0xE0A2\n0xF6E6\t0xE0A3\n0xF6E7\t0xE0A4\n0xF6E8\t0xE0A5\n0xF6E9\t0xE0A6\n0xF6EA\t0xE0A7\n0xF6EB\t0xE0A8\n0xF6EC\t0xE0A9\n0xF6ED\t0xE0AA\n0xF6EE\t0xE0AB\n0xF6EF\t0xE0AC\n0xF6F0\t0xE0AD\n0xF6F1\t0xE0AE\n0xF6F2\t0xE0AF\n0xF6F3\t0xE0B0\n0xF6F4\t0xE0B1\n0xF6F5\t0xE0B2\n0xF6F6\t0xE0B3\n0xF6F7\t0xE0B4\n0xF6F8\t0xE0B5\n0xF6F9\t0xE0B6\n0xF6FA\t0xE0B7\n0xF6FB\t0xE0B8\n0xF6FC\t0xE0B9\n0xF6FD\t0xE0BA\n0xF6FE\t0xE0BB\n0xF7A1\t0xE0BC\n0xF7A2\t0xE0BD\n0xF7A3\t0xE0BE\n0xF7A4\t0xE0BF\n0xF7A5\t0xE0C0\n0xF7A6\t0xE0C1\n0xF7A7\t0xE0C2\n0xF7A8\t0xE0C3\n0xF7A9\t0xE0C4\n0xF7AA\t0xE0C5\n0xF7AB\t0xE0C6\n0xF7AC\t0xE0C7\n0xF7AD\t0xE0C8\n0xF7AE\t0xE0C9\n0xF7AF\t0xE0CA\n0xF7B0\t0xE0CB\n0xF7B1\t0xE0CC\n0xF7B2\t0xE0CD\n0xF7B3\t0xE0CE\n0xF7B4\t0xE0CF\n0xF7B5\t0xE0D0\n0xF7B6\t0xE0D1\n0xF7B7\t0xE0D2\n0xF7B8\t0xE0D3\n0xF7B9\t0xE0D4\n0xF7BA\t0xE0D5\n0xF7BB\t0xE0D6\n0xF7BC\t0xE0D7\n0xF7BD\t0xE0D8\n0xF7BE\t0xE0D9\n0xF7BF\t0xE0DA\n0xF7C0\t0xE0DB\n0xF7C1\t0xE0DC\n0xF7C2\t0xE0DD\n0xF7C3\t0xE0DE\n0xF7C4\t0xE0DF\n0xF7C5\t0xE0E0\n0xF7C6\t0xE0E1\n0xF7C7\t0xE0E2\n0xF7C8\t0xE0E3\n0xF7C9\t0xE0E4\n0xF7CA\t0xE0E5\n0xF7CB\t0xE0E6\n0xF7CC\t0xE0E7\n0xF7CD\t0xE0E8\n0xF7CE\t0xE0E9\n0xF7CF\t0xE0EA\n0xF7D0\t0xE0EB\n0xF7D1\t0xE0EC\n0xF7D2\t0xE0ED\n0xF7D3\t0xE0EE\n0xF7D4\t0xE0EF\n0xF7D5\t0xE0F0\n0xF7D6\t0xE0F1\n0xF7D7\t0xE0F2\n0xF7D8\t0xE0F3\n0xF7D9\t0xE0F4\n0xF7DA\t0xE0F5\n0xF7DB\t0xE0F6\n0xF7DC\t0xE0F7\n0xF7DD\t0xE0F8\n0xF7DE\t0xE0F9\n0xF7DF\t0xE0FA\n0xF7E0\t0xE0FB\n0xF7E1\t0xE0FC\n0xF7E2\t0xE0FD\n0xF7E3\t0xE0FE\n0xF7E4\t0xE0FF\n0xF7E5\t0xE100\n0xF7E6\t0xE101\n0xF7E7\t0xE102\n0xF7E8\t0xE103\n0xF7E9\t0xE104\n0xF7EA\t0xE105\n0xF7EB\t0xE106\n0xF7EC\t0xE107\n0xF7ED\t0xE108\n0xF7EE\t0xE109\n0xF7EF\t0xE10A\n0xF7F0\t0xE10B\n0xF7F1\t0xE10C\n0xF7F2\t0xE10D\n0xF7F3\t0xE10E\n0xF7F4\t0xE10F\n0xF7F5\t0xE110\n0xF7F6\t0xE111\n0xF7F7\t0xE112\n0xF7F8\t0xE113\n0xF7F9\t0xE114\n0xF7FA\t0xE115\n0xF7FB\t0xE116\n0xF7FC\t0xE117\n0xF7FD\t0xE118\n0xF7FE\t0xE119\n0xF8A1\t0xE11A\n0xF8A2\t0xE11B\n0xF8A3\t0xE11C\n0xF8A4\t0xE11D\n0xF8A5\t0xE11E\n0xF8A6\t0xE11F\n0xF8A7\t0xE120\n0xF8A8\t0xE121\n0xF8A9\t0xE122\n0xF8AA\t0xE123\n0xF8AB\t0xE124\n0xF8AC\t0xE125\n0xF8AD\t0xE126\n0xF8AE\t0xE127\n0xF8AF\t0xE128\n0xF8B0\t0xE129\n0xF8B1\t0xE12A\n0xF8B2\t0xE12B\n0xF8B3\t0xE12C\n0xF8B4\t0xE12D\n0xF8B5\t0xE12E\n0xF8B6\t0xE12F\n0xF8B7\t0xE130\n0xF8B8\t0xE131\n0xF8B9\t0xE132\n0xF8BA\t0xE133\n0xF8BB\t0xE134\n0xF8BC\t0xE135\n0xF8BD\t0xE136\n0xF8BE\t0xE137\n0xF8BF\t0xE138\n0xF8C0\t0xE139\n0xF8C1\t0xE13A\n0xF8C2\t0xE13B\n0xF8C3\t0xE13C\n0xF8C4\t0xE13D\n0xF8C5\t0xE13E\n0xF8C6\t0xE13F\n0xF8C7\t0xE140\n0xF8C8\t0xE141\n0xF8C9\t0xE142\n0xF8CA\t0xE143\n0xF8CB\t0xE144\n0xF8CC\t0xE145\n0xF8CD\t0xE146\n0xF8CE\t0xE147\n0xF8CF\t0xE148\n0xF8D0\t0xE149\n0xF8D1\t0xE14A\n0xF8D2\t0xE14B\n0xF8D3\t0xE14C\n0xF8D4\t0xE14D\n0xF8D5\t0xE14E\n0xF8D6\t0xE14F\n0xF8D7\t0xE150\n0xF8D8\t0xE151\n0xF8D9\t0xE152\n0xF8DA\t0xE153\n0xF8DB\t0xE154\n0xF8DC\t0xE155\n0xF8DD\t0xE156\n0xF8DE\t0xE157\n0xF8DF\t0xE158\n0xF8E0\t0xE159\n0xF8E1\t0xE15A\n0xF8E2\t0xE15B\n0xF8E3\t0xE15C\n0xF8E4\t0xE15D\n0xF8E5\t0xE15E\n0xF8E6\t0xE15F\n0xF8E7\t0xE160\n0xF8E8\t0xE161\n0xF8E9\t0xE162\n0xF8EA\t0xE163\n0xF8EB\t0xE164\n0xF8EC\t0xE165\n0xF8ED\t0xE166\n0xF8EE\t0xE167\n0xF8EF\t0xE168\n0xF8F0\t0xE169\n0xF8F1\t0xE16A\n0xF8F2\t0xE16B\n0xF8F3\t0xE16C\n0xF8F4\t0xE16D\n0xF8F5\t0xE16E\n0xF8F6\t0xE16F\n0xF8F7\t0xE170\n0xF8F8\t0xE171\n0xF8F9\t0xE172\n0xF8FA\t0xE173\n0xF8FB\t0xE174\n0xF8FC\t0xE175\n0xF8FD\t0xE176\n0xF8FE\t0xE177\n0xF9A1\t0xE178\n0xF9A2\t0xE179\n0xF9A3\t0xE17A\n0xF9A4\t0xE17B\n0xF9A5\t0xE17C\n0xF9A6\t0xE17D\n0xF9A7\t0xE17E\n0xF9A8\t0xE17F\n0xF9A9\t0xE180\n0xF9AA\t0xE181\n0xF9AB\t0xE182\n0xF9AC\t0xE183\n0xF9AD\t0xE184\n0xF9AE\t0xE185\n0xF9AF\t0xE186\n0xF9B0\t0xE187\n0xF9B1\t0xE188\n0xF9B2\t0xE189\n0xF9B3\t0xE18A\n0xF9B4\t0xE18B\n0xF9B5\t0xE18C\n0xF9B6\t0xE18D\n0xF9B7\t0xE18E\n0xF9B8\t0xE18F\n0xF9B9\t0xE190\n0xF9BA\t0xE191\n0xF9BB\t0xE192\n0xF9BC\t0xE193\n0xF9BD\t0xE194\n0xF9BE\t0xE195\n0xF9BF\t0xE196\n0xF9C0\t0xE197\n0xF9C1\t0xE198\n0xF9C2\t0xE199\n0xF9C3\t0xE19A\n0xF9C4\t0xE19B\n0xF9C5\t0xE19C\n0xF9C6\t0xE19D\n0xF9C7\t0xE19E\n0xF9C8\t0xE19F\n0xF9C9\t0xE1A0\n0xF9CA\t0xE1A1\n0xF9CB\t0xE1A2\n0xF9CC\t0xE1A3\n0xF9CD\t0xE1A4\n0xF9CE\t0xE1A5\n0xF9CF\t0xE1A6\n0xF9D0\t0xE1A7\n0xF9D1\t0xE1A8\n0xF9D2\t0xE1A9\n0xF9D3\t0xE1AA\n0xF9D4\t0xE1AB\n0xF9D5\t0xE1AC\n0xF9D6\t0xE1AD\n0xF9D7\t0xE1AE\n0xF9D8\t0xE1AF\n0xF9D9\t0xE1B0\n0xF9DA\t0xE1B1\n0xF9DB\t0xE1B2\n0xF9DC\t0xE1B3\n0xF9DD\t0xE1B4\n0xF9DE\t0xE1B5\n0xF9DF\t0xE1B6\n0xF9E0\t0xE1B7\n0xF9E1\t0xE1B8\n0xF9E2\t0xE1B9\n0xF9E3\t0xE1BA\n0xF9E4\t0xE1BB\n0xF9E5\t0xE1BC\n0xF9E6\t0xE1BD\n0xF9E7\t0xE1BE\n0xF9E8\t0xE1BF\n0xF9E9\t0xE1C0\n0xF9EA\t0xE1C1\n0xF9EB\t0xE1C2\n0xF9EC\t0xE1C3\n0xF9ED\t0xE1C4\n0xF9EE\t0xE1C5\n0xF9EF\t0xE1C6\n0xF9F0\t0xE1C7\n0xF9F1\t0xE1C8\n0xF9F2\t0xE1C9\n0xF9F3\t0xE1CA\n0xF9F4\t0xE1CB\n0xF9F5\t0xE1CC\n0xF9F6\t0xE1CD\n0xF9F7\t0xE1CE\n0xF9F8\t0xE1CF\n0xF9F9\t0xE1D0\n0xF9FA\t0xE1D1\n0xF9FB\t0xE1D2\n0xF9FC\t0xE1D3\n0xF9FD\t0xE1D4\n0xF9FE\t0xE1D5\n0xFAA1\t0xE1D6\n0xFAA2\t0xE1D7\n0xFAA3\t0xE1D8\n0xFAA4\t0xE1D9\n0xFAA5\t0xE1DA\n0xFAA6\t0xE1DB\n0xFAA7\t0xE1DC\n0xFAA8\t0xE1DD\n0xFAA9\t0xE1DE\n0xFAAA\t0xE1DF\n0xFAAB\t0xE1E0\n0xFAAC\t0xE1E1\n0xFAAD\t0xE1E2\n0xFAAE\t0xE1E3\n0xFAAF\t0xE1E4\n0xFAB0\t0xE1E5\n0xFAB1\t0xE1E6\n0xFAB2\t0xE1E7\n0xFAB3\t0xE1E8\n0xFAB4\t0xE1E9\n0xFAB5\t0xE1EA\n0xFAB6\t0xE1EB\n0xFAB7\t0xE1EC\n0xFAB8\t0xE1ED\n0xFAB9\t0xE1EE\n0xFABA\t0xE1EF\n0xFABB\t0xE1F0\n0xFABC\t0xE1F1\n0xFABD\t0xE1F2\n0xFABE\t0xE1F3\n0xFABF\t0xE1F4\n0xFAC0\t0xE1F5\n0xFAC1\t0xE1F6\n0xFAC2\t0xE1F7\n0xFAC3\t0xE1F8\n0xFAC4\t0xE1F9\n0xFAC5\t0xE1FA\n0xFAC6\t0xE1FB\n0xFAC7\t0xE1FC\n0xFAC8\t0xE1FD\n0xFAC9\t0xE1FE\n0xFACA\t0xE1FF\n0xFACB\t0xE200\n0xFACC\t0xE201\n0xFACD\t0xE202\n0xFACE\t0xE203\n0xFACF\t0xE204\n0xFAD0\t0xE205\n0xFAD1\t0xE206\n0xFAD2\t0xE207\n0xFAD3\t0xE208\n0xFAD4\t0xE209\n0xFAD5\t0xE20A\n0xFAD6\t0xE20B\n0xFAD7\t0xE20C\n0xFAD8\t0xE20D\n0xFAD9\t0xE20E\n0xFADA\t0xE20F\n0xFADB\t0xE210\n0xFADC\t0xE211\n0xFADD\t0xE212\n0xFADE\t0xE213\n0xFADF\t0xE214\n0xFAE0\t0xE215\n0xFAE1\t0xE216\n0xFAE2\t0xE217\n0xFAE3\t0xE218\n0xFAE4\t0xE219\n0xFAE5\t0xE21A\n0xFAE6\t0xE21B\n0xFAE7\t0xE21C\n0xFAE8\t0xE21D\n0xFAE9\t0xE21E\n0xFAEA\t0xE21F\n0xFAEB\t0xE220\n0xFAEC\t0xE221\n0xFAED\t0xE222\n0xFAEE\t0xE223\n0xFAEF\t0xE224\n0xFAF0\t0xE225\n0xFAF1\t0xE226\n0xFAF2\t0xE227\n0xFAF3\t0xE228\n0xFAF4\t0xE229\n0xFAF5\t0xE22A\n0xFAF6\t0xE22B\n0xFAF7\t0xE22C\n0xFAF8\t0xE22D\n0xFAF9\t0xE22E\n0xFAFA\t0xE22F\n0xFAFB\t0xE230\n0xFAFC\t0xE231\n0xFAFD\t0xE232\n0xFAFE\t0xE233\n0xFBA1\t0xE234\n0xFBA2\t0xE235\n0xFBA3\t0xE236\n0xFBA4\t0xE237\n0xFBA5\t0xE238\n0xFBA6\t0xE239\n0xFBA7\t0xE23A\n0xFBA8\t0xE23B\n0xFBA9\t0xE23C\n0xFBAA\t0xE23D\n0xFBAB\t0xE23E\n0xFBAC\t0xE23F\n0xFBAD\t0xE240\n0xFBAE\t0xE241\n0xFBAF\t0xE242\n0xFBB0\t0xE243\n0xFBB1\t0xE244\n0xFBB2\t0xE245\n0xFBB3\t0xE246\n0xFBB4\t0xE247\n0xFBB5\t0xE248\n0xFBB6\t0xE249\n0xFBB7\t0xE24A\n0xFBB8\t0xE24B\n0xFBB9\t0xE24C\n0xFBBA\t0xE24D\n0xFBBB\t0xE24E\n0xFBBC\t0xE24F\n0xFBBD\t0xE250\n0xFBBE\t0xE251\n0xFBBF\t0xE252\n0xFBC0\t0xE253\n0xFBC1\t0xE254\n0xFBC2\t0xE255\n0xFBC3\t0xE256\n0xFBC4\t0xE257\n0xFBC5\t0xE258\n0xFBC6\t0xE259\n0xFBC7\t0xE25A\n0xFBC8\t0xE25B\n0xFBC9\t0xE25C\n0xFBCA\t0xE25D\n0xFBCB\t0xE25E\n0xFBCC\t0xE25F\n0xFBCD\t0xE260\n0xFBCE\t0xE261\n0xFBCF\t0xE262\n0xFBD0\t0xE263\n0xFBD1\t0xE264\n0xFBD2\t0xE265\n0xFBD3\t0xE266\n0xFBD4\t0xE267\n0xFBD5\t0xE268\n0xFBD6\t0xE269\n0xFBD7\t0xE26A\n0xFBD8\t0xE26B\n0xFBD9\t0xE26C\n0xFBDA\t0xE26D\n0xFBDB\t0xE26E\n0xFBDC\t0xE26F\n0xFBDD\t0xE270\n0xFBDE\t0xE271\n0xFBDF\t0xE272\n0xFBE0\t0xE273\n0xFBE1\t0xE274\n0xFBE2\t0xE275\n0xFBE3\t0xE276\n0xFBE4\t0xE277\n0xFBE5\t0xE278\n0xFBE6\t0xE279\n0xFBE7\t0xE27A\n0xFBE8\t0xE27B\n0xFBE9\t0xE27C\n0xFBEA\t0xE27D\n0xFBEB\t0xE27E\n0xFBEC\t0xE27F\n0xFBED\t0xE280\n0xFBEE\t0xE281\n0xFBEF\t0xE282\n0xFBF0\t0xE283\n0xFBF1\t0xE284\n0xFBF2\t0xE285\n0xFBF3\t0xE286\n0xFBF4\t0xE287\n0xFBF5\t0xE288\n0xFBF6\t0xE289\n0xFBF7\t0xE28A\n0xFBF8\t0xE28B\n0xFBF9\t0xE28C\n0xFBFA\t0xE28D\n0xFBFB\t0xE28E\n0xFBFC\t0xE28F\n0xFBFD\t0xE290\n0xFBFE\t0xE291\n0xFCA1\t0xE292\n0xFCA2\t0xE293\n0xFCA3\t0xE294\n0xFCA4\t0xE295\n0xFCA5\t0xE296\n0xFCA6\t0xE297\n0xFCA7\t0xE298\n0xFCA8\t0xE299\n0xFCA9\t0xE29A\n0xFCAA\t0xE29B\n0xFCAB\t0xE29C\n0xFCAC\t0xE29D\n0xFCAD\t0xE29E\n0xFCAE\t0xE29F\n0xFCAF\t0xE2A0\n0xFCB0\t0xE2A1\n0xFCB1\t0xE2A2\n0xFCB2\t0xE2A3\n0xFCB3\t0xE2A4\n0xFCB4\t0xE2A5\n0xFCB5\t0xE2A6\n0xFCB6\t0xE2A7\n0xFCB7\t0xE2A8\n0xFCB8\t0xE2A9\n0xFCB9\t0xE2AA\n0xFCBA\t0xE2AB\n0xFCBB\t0xE2AC\n0xFCBC\t0xE2AD\n0xFCBD\t0xE2AE\n0xFCBE\t0xE2AF\n0xFCBF\t0xE2B0\n0xFCC0\t0xE2B1\n0xFCC1\t0xE2B2\n0xFCC2\t0xE2B3\n0xFCC3\t0xE2B4\n0xFCC4\t0xE2B5\n0xFCC5\t0xE2B6\n0xFCC6\t0xE2B7\n0xFCC7\t0xE2B8\n0xFCC8\t0xE2B9\n0xFCC9\t0xE2BA\n0xFCCA\t0xE2BB\n0xFCCB\t0xE2BC\n0xFCCC\t0xE2BD\n0xFCCD\t0xE2BE\n0xFCCE\t0xE2BF\n0xFCCF\t0xE2C0\n0xFCD0\t0xE2C1\n0xFCD1\t0xE2C2\n0xFCD2\t0xE2C3\n0xFCD3\t0xE2C4\n0xFCD4\t0xE2C5\n0xFCD5\t0xE2C6\n0xFCD6\t0xE2C7\n0xFCD7\t0xE2C8\n0xFCD8\t0xE2C9\n0xFCD9\t0xE2CA\n0xFCDA\t0xE2CB\n0xFCDB\t0xE2CC\n0xFCDC\t0xE2CD\n0xFCDD\t0xE2CE\n0xFCDE\t0xE2CF\n0xFCDF\t0xE2D0\n0xFCE0\t0xE2D1\n0xFCE1\t0xE2D2\n0xFCE2\t0xE2D3\n0xFCE3\t0xE2D4\n0xFCE4\t0xE2D5\n0xFCE5\t0xE2D6\n0xFCE6\t0xE2D7\n0xFCE7\t0xE2D8\n0xFCE8\t0xE2D9\n0xFCE9\t0xE2DA\n0xFCEA\t0xE2DB\n0xFCEB\t0xE2DC\n0xFCEC\t0xE2DD\n0xFCED\t0xE2DE\n0xFCEE\t0xE2DF\n0xFCEF\t0xE2E0\n0xFCF0\t0xE2E1\n0xFCF1\t0xE2E2\n0xFCF2\t0xE2E3\n0xFCF3\t0xE2E4\n0xFCF4\t0xE2E5\n0xFCF5\t0xE2E6\n0xFCF6\t0xE2E7\n0xFCF7\t0xE2E8\n0xFCF8\t0xE2E9\n0xFCF9\t0xE2EA\n0xFCFA\t0xE2EB\n0xFCFB\t0xE2EC\n0xFCFC\t0xE2ED\n0xFCFD\t0xE2EE\n0xFCFE\t0xE2EF\n0xFDA1\t0xE2F0\n0xFDA2\t0xE2F1\n0xFDA3\t0xE2F2\n0xFDA4\t0xE2F3\n0xFDA5\t0xE2F4\n0xFDA6\t0xE2F5\n0xFDA7\t0xE2F6\n0xFDA8\t0xE2F7\n0xFDA9\t0xE2F8\n0xFDAA\t0xE2F9\n0xFDAB\t0xE2FA\n0xFDAC\t0xE2FB\n0xFDAD\t0xE2FC\n0xFDAE\t0xE2FD\n0xFDAF\t0xE2FE\n0xFDB0\t0xE2FF\n0xFDB1\t0xE300\n0xFDB2\t0xE301\n0xFDB3\t0xE302\n0xFDB4\t0xE303\n0xFDB5\t0xE304\n0xFDB6\t0xE305\n0xFDB7\t0xE306\n0xFDB8\t0xE307\n0xFDB9\t0xE308\n0xFDBA\t0xE309\n0xFDBB\t0xE30A\n0xFDBC\t0xE30B\n0xFDBD\t0xE30C\n0xFDBE\t0xE30D\n0xFDBF\t0xE30E\n0xFDC0\t0xE30F\n0xFDC1\t0xE310\n0xFDC2\t0xE311\n0xFDC3\t0xE312\n0xFDC4\t0xE313\n0xFDC5\t0xE314\n0xFDC6\t0xE315\n0xFDC7\t0xE316\n0xFDC8\t0xE317\n0xFDC9\t0xE318\n0xFDCA\t0xE319\n0xFDCB\t0xE31A\n0xFDCC\t0xE31B\n0xFDCD\t0xE31C\n0xFDCE\t0xE31D\n0xFDCF\t0xE31E\n0xFDD0\t0xE31F\n0xFDD1\t0xE320\n0xFDD2\t0xE321\n0xFDD3\t0xE322\n0xFDD4\t0xE323\n0xFDD5\t0xE324\n0xFDD6\t0xE325\n0xFDD7\t0xE326\n0xFDD8\t0xE327\n0xFDD9\t0xE328\n0xFDDA\t0xE329\n0xFDDB\t0xE32A\n0xFDDC\t0xE32B\n0xFDDD\t0xE32C\n0xFDDE\t0xE32D\n0xFDDF\t0xE32E\n0xFDE0\t0xE32F\n0xFDE1\t0xE330\n0xFDE2\t0xE331\n0xFDE3\t0xE332\n0xFDE4\t0xE333\n0xFDE5\t0xE334\n0xFDE6\t0xE335\n0xFDE7\t0xE336\n0xFDE8\t0xE337\n0xFDE9\t0xE338\n0xFDEA\t0xE339\n0xFDEB\t0xE33A\n0xFDEC\t0xE33B\n0xFDED\t0xE33C\n0xFDEE\t0xE33D\n0xFDEF\t0xE33E\n0xFDF0\t0xE33F\n0xFDF1\t0xE340\n0xFDF2\t0xE341\n0xFDF3\t0xE342\n0xFDF4\t0xE343\n0xFDF5\t0xE344\n0xFDF6\t0xE345\n0xFDF7\t0xE346\n0xFDF8\t0xE347\n0xFDF9\t0xE348\n0xFDFA\t0xE349\n0xFDFB\t0xE34A\n0xFDFC\t0xE34B\n0xFDFD\t0xE34C\n0xFDFE\t0xE34D\n0xFEA1\t0xE34E\n0xFEA2\t0xE34F\n0xFEA3\t0xE350\n0xFEA4\t0xE351\n0xFEA5\t0xE352\n0xFEA6\t0xE353\n0xFEA7\t0xE354\n0xFEA8\t0xE355\n0xFEA9\t0xE356\n0xFEAA\t0xE357\n0xFEAB\t0xE358\n0xFEAC\t0xE359\n0xFEAD\t0xE35A\n0xFEAE\t0xE35B\n0xFEAF\t0xE35C\n0xFEB0\t0xE35D\n0xFEB1\t0xE35E\n0xFEB2\t0xE35F\n0xFEB3\t0xE360\n0xFEB4\t0xE361\n0xFEB5\t0xE362\n0xFEB6\t0xE363\n0xFEB7\t0xE364\n0xFEB8\t0xE365\n0xFEB9\t0xE366\n0xFEBA\t0xE367\n0xFEBB\t0xE368\n0xFEBC\t0xE369\n0xFEBD\t0xE36A\n0xFEBE\t0xE36B\n0xFEBF\t0xE36C\n0xFEC0\t0xE36D\n0xFEC1\t0xE36E\n0xFEC2\t0xE36F\n0xFEC3\t0xE370\n0xFEC4\t0xE371\n0xFEC5\t0xE372\n0xFEC6\t0xE373\n0xFEC7\t0xE374\n0xFEC8\t0xE375\n0xFEC9\t0xE376\n0xFECA\t0xE377\n0xFECB\t0xE378\n0xFECC\t0xE379\n0xFECD\t0xE37A\n0xFECE\t0xE37B\n0xFECF\t0xE37C\n0xFED0\t0xE37D\n0xFED1\t0xE37E\n0xFED2\t0xE37F\n0xFED3\t0xE380\n0xFED4\t0xE381\n0xFED5\t0xE382\n0xFED6\t0xE383\n0xFED7\t0xE384\n0xFED8\t0xE385\n0xFED9\t0xE386\n0xFEDA\t0xE387\n0xFEDB\t0xE388\n0xFEDC\t0xE389\n0xFEDD\t0xE38A\n0xFEDE\t0xE38B\n0xFEDF\t0xE38C\n0xFEE0\t0xE38D\n0xFEE1\t0xE38E\n0xFEE2\t0xE38F\n0xFEE3\t0xE390\n0xFEE4\t0xE391\n0xFEE5\t0xE392\n0xFEE6\t0xE393\n0xFEE7\t0xE394\n0xFEE8\t0xE395\n0xFEE9\t0xE396\n0xFEEA\t0xE397\n0xFEEB\t0xE398\n0xFEEC\t0xE399\n0xFEED\t0xE39A\n0xFEEE\t0xE39B\n0xFEEF\t0xE39C\n0xFEF0\t0xE39D\n0xFEF1\t0xE39E\n0xFEF2\t0xE39F\n0xFEF3\t0xE3A0\n0xFEF4\t0xE3A1\n0xFEF5\t0xE3A2\n0xFEF6\t0xE3A3\n0xFEF7\t0xE3A4\n0xFEF8\t0xE3A5\n0xFEF9\t0xE3A6\n0xFEFA\t0xE3A7\n0xFEFB\t0xE3A8\n0xFEFC\t0xE3A9\n0xFEFD\t0xE3AA\n0xFEFE\t0xE3AB\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/EUC-KR.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0xA1A1\t0x3000\n0xA1A2\t0x3001\n0xA1A3\t0x3002\n0xA1A4\t0x00B7\n0xA1A5\t0x2025\n0xA1A6\t0x2026\n0xA1A7\t0x00A8\n0xA1A8\t0x3003\n0xA1A9\t0x00AD\n0xA1AA\t0x2015\n0xA1AB\t0x2225\n0xA1AC\t0xFF3C\n0xA1AD\t0x223C\n0xA1AE\t0x2018\n0xA1AF\t0x2019\n0xA1B0\t0x201C\n0xA1B1\t0x201D\n0xA1B2\t0x3014\n0xA1B3\t0x3015\n0xA1B4\t0x3008\n0xA1B5\t0x3009\n0xA1B6\t0x300A\n0xA1B7\t0x300B\n0xA1B8\t0x300C\n0xA1B9\t0x300D\n0xA1BA\t0x300E\n0xA1BB\t0x300F\n0xA1BC\t0x3010\n0xA1BD\t0x3011\n0xA1BE\t0x00B1\n0xA1BF\t0x00D7\n0xA1C0\t0x00F7\n0xA1C1\t0x2260\n0xA1C2\t0x2264\n0xA1C3\t0x2265\n0xA1C4\t0x221E\n0xA1C5\t0x2234\n0xA1C6\t0x00B0\n0xA1C7\t0x2032\n0xA1C8\t0x2033\n0xA1C9\t0x2103\n0xA1CA\t0x212B\n0xA1CB\t0xFFE0\n0xA1CC\t0xFFE1\n0xA1CD\t0xFFE5\n0xA1CE\t0x2642\n0xA1CF\t0x2640\n0xA1D0\t0x2220\n0xA1D1\t0x22A5\n0xA1D2\t0x2312\n0xA1D3\t0x2202\n0xA1D4\t0x2207\n0xA1D5\t0x2261\n0xA1D6\t0x2252\n0xA1D7\t0x00A7\n0xA1D8\t0x203B\n0xA1D9\t0x2606\n0xA1DA\t0x2605\n0xA1DB\t0x25CB\n0xA1DC\t0x25CF\n0xA1DD\t0x25CE\n0xA1DE\t0x25C7\n0xA1DF\t0x25C6\n0xA1E0\t0x25A1\n0xA1E1\t0x25A0\n0xA1E2\t0x25B3\n0xA1E3\t0x25B2\n0xA1E4\t0x25BD\n0xA1E5\t0x25BC\n0xA1E6\t0x2192\n0xA1E7\t0x2190\n0xA1E8\t0x2191\n0xA1E9\t0x2193\n0xA1EA\t0x2194\n0xA1EB\t0x3013\n0xA1EC\t0x226A\n0xA1ED\t0x226B\n0xA1EE\t0x221A\n0xA1EF\t0x223D\n0xA1F0\t0x221D\n0xA1F1\t0x2235\n0xA1F2\t0x222B\n0xA1F3\t0x222C\n0xA1F4\t0x2208\n0xA1F5\t0x220B\n0xA1F6\t0x2286\n0xA1F7\t0x2287\n0xA1F8\t0x2282\n0xA1F9\t0x2283\n0xA1FA\t0x222A\n0xA1FB\t0x2229\n0xA1FC\t0x2227\n0xA1FD\t0x2228\n0xA1FE\t0xFFE2\n0xA2A1\t0x21D2\n0xA2A2\t0x21D4\n0xA2A3\t0x2200\n0xA2A4\t0x2203\n0xA2A5\t0x00B4\n0xA2A6\t0xFF5E\n0xA2A7\t0x02C7\n0xA2A8\t0x02D8\n0xA2A9\t0x02DD\n0xA2AA\t0x02DA\n0xA2AB\t0x02D9\n0xA2AC\t0x00B8\n0xA2AD\t0x02DB\n0xA2AE\t0x00A1\n0xA2AF\t0x00BF\n0xA2B0\t0x02D0\n0xA2B1\t0x222E\n0xA2B2\t0x2211\n0xA2B3\t0x220F\n0xA2B4\t0x00A4\n0xA2B5\t0x2109\n0xA2B6\t0x2030\n0xA2B7\t0x25C1\n0xA2B8\t0x25C0\n0xA2B9\t0x25B7\n0xA2BA\t0x25B6\n0xA2BB\t0x2664\n0xA2BC\t0x2660\n0xA2BD\t0x2661\n0xA2BE\t0x2665\n0xA2BF\t0x2667\n0xA2C0\t0x2663\n0xA2C1\t0x2299\n0xA2C2\t0x25C8\n0xA2C3\t0x25A3\n0xA2C4\t0x25D0\n0xA2C5\t0x25D1\n0xA2C6\t0x2592\n0xA2C7\t0x25A4\n0xA2C8\t0x25A5\n0xA2C9\t0x25A8\n0xA2CA\t0x25A7\n0xA2CB\t0x25A6\n0xA2CC\t0x25A9\n0xA2CD\t0x2668\n0xA2CE\t0x260F\n0xA2CF\t0x260E\n0xA2D0\t0x261C\n0xA2D1\t0x261E\n0xA2D2\t0x00B6\n0xA2D3\t0x2020\n0xA2D4\t0x2021\n0xA2D5\t0x2195\n0xA2D6\t0x2197\n0xA2D7\t0x2199\n0xA2D8\t0x2196\n0xA2D9\t0x2198\n0xA2DA\t0x266D\n0xA2DB\t0x2669\n0xA2DC\t0x266A\n0xA2DD\t0x266C\n0xA2DE\t0x327F\n0xA2DF\t0x321C\n0xA2E0\t0x2116\n0xA2E1\t0x33C7\n0xA2E2\t0x2122\n0xA2E3\t0x33C2\n0xA2E4\t0x33D8\n0xA2E5\t0x2121\n0xA2E6\t0x20AC\n0xA2E7\t0x00AE\n0xA2E8\t0x327E\n0xA3A1\t0xFF01\n0xA3A2\t0xFF02\n0xA3A3\t0xFF03\n0xA3A4\t0xFF04\n0xA3A5\t0xFF05\n0xA3A6\t0xFF06\n0xA3A7\t0xFF07\n0xA3A8\t0xFF08\n0xA3A9\t0xFF09\n0xA3AA\t0xFF0A\n0xA3AB\t0xFF0B\n0xA3AC\t0xFF0C\n0xA3AD\t0xFF0D\n0xA3AE\t0xFF0E\n0xA3AF\t0xFF0F\n0xA3B0\t0xFF10\n0xA3B1\t0xFF11\n0xA3B2\t0xFF12\n0xA3B3\t0xFF13\n0xA3B4\t0xFF14\n0xA3B5\t0xFF15\n0xA3B6\t0xFF16\n0xA3B7\t0xFF17\n0xA3B8\t0xFF18\n0xA3B9\t0xFF19\n0xA3BA\t0xFF1A\n0xA3BB\t0xFF1B\n0xA3BC\t0xFF1C\n0xA3BD\t0xFF1D\n0xA3BE\t0xFF1E\n0xA3BF\t0xFF1F\n0xA3C0\t0xFF20\n0xA3C1\t0xFF21\n0xA3C2\t0xFF22\n0xA3C3\t0xFF23\n0xA3C4\t0xFF24\n0xA3C5\t0xFF25\n0xA3C6\t0xFF26\n0xA3C7\t0xFF27\n0xA3C8\t0xFF28\n0xA3C9\t0xFF29\n0xA3CA\t0xFF2A\n0xA3CB\t0xFF2B\n0xA3CC\t0xFF2C\n0xA3CD\t0xFF2D\n0xA3CE\t0xFF2E\n0xA3CF\t0xFF2F\n0xA3D0\t0xFF30\n0xA3D1\t0xFF31\n0xA3D2\t0xFF32\n0xA3D3\t0xFF33\n0xA3D4\t0xFF34\n0xA3D5\t0xFF35\n0xA3D6\t0xFF36\n0xA3D7\t0xFF37\n0xA3D8\t0xFF38\n0xA3D9\t0xFF39\n0xA3DA\t0xFF3A\n0xA3DB\t0xFF3B\n0xA3DC\t0xFFE6\n0xA3DD\t0xFF3D\n0xA3DE\t0xFF3E\n0xA3DF\t0xFF3F\n0xA3E0\t0xFF40\n0xA3E1\t0xFF41\n0xA3E2\t0xFF42\n0xA3E3\t0xFF43\n0xA3E4\t0xFF44\n0xA3E5\t0xFF45\n0xA3E6\t0xFF46\n0xA3E7\t0xFF47\n0xA3E8\t0xFF48\n0xA3E9\t0xFF49\n0xA3EA\t0xFF4A\n0xA3EB\t0xFF4B\n0xA3EC\t0xFF4C\n0xA3ED\t0xFF4D\n0xA3EE\t0xFF4E\n0xA3EF\t0xFF4F\n0xA3F0\t0xFF50\n0xA3F1\t0xFF51\n0xA3F2\t0xFF52\n0xA3F3\t0xFF53\n0xA3F4\t0xFF54\n0xA3F5\t0xFF55\n0xA3F6\t0xFF56\n0xA3F7\t0xFF57\n0xA3F8\t0xFF58\n0xA3F9\t0xFF59\n0xA3FA\t0xFF5A\n0xA3FB\t0xFF5B\n0xA3FC\t0xFF5C\n0xA3FD\t0xFF5D\n0xA3FE\t0xFFE3\n0xA4A1\t0x3131\n0xA4A2\t0x3132\n0xA4A3\t0x3133\n0xA4A4\t0x3134\n0xA4A5\t0x3135\n0xA4A6\t0x3136\n0xA4A7\t0x3137\n0xA4A8\t0x3138\n0xA4A9\t0x3139\n0xA4AA\t0x313A\n0xA4AB\t0x313B\n0xA4AC\t0x313C\n0xA4AD\t0x313D\n0xA4AE\t0x313E\n0xA4AF\t0x313F\n0xA4B0\t0x3140\n0xA4B1\t0x3141\n0xA4B2\t0x3142\n0xA4B3\t0x3143\n0xA4B4\t0x3144\n0xA4B5\t0x3145\n0xA4B6\t0x3146\n0xA4B7\t0x3147\n0xA4B8\t0x3148\n0xA4B9\t0x3149\n0xA4BA\t0x314A\n0xA4BB\t0x314B\n0xA4BC\t0x314C\n0xA4BD\t0x314D\n0xA4BE\t0x314E\n0xA4BF\t0x314F\n0xA4C0\t0x3150\n0xA4C1\t0x3151\n0xA4C2\t0x3152\n0xA4C3\t0x3153\n0xA4C4\t0x3154\n0xA4C5\t0x3155\n0xA4C6\t0x3156\n0xA4C7\t0x3157\n0xA4C8\t0x3158\n0xA4C9\t0x3159\n0xA4CA\t0x315A\n0xA4CB\t0x315B\n0xA4CC\t0x315C\n0xA4CD\t0x315D\n0xA4CE\t0x315E\n0xA4CF\t0x315F\n0xA4D0\t0x3160\n0xA4D1\t0x3161\n0xA4D2\t0x3162\n0xA4D3\t0x3163\n0xA4D4\t0x3164\n0xA4D5\t0x3165\n0xA4D6\t0x3166\n0xA4D7\t0x3167\n0xA4D8\t0x3168\n0xA4D9\t0x3169\n0xA4DA\t0x316A\n0xA4DB\t0x316B\n0xA4DC\t0x316C\n0xA4DD\t0x316D\n0xA4DE\t0x316E\n0xA4DF\t0x316F\n0xA4E0\t0x3170\n0xA4E1\t0x3171\n0xA4E2\t0x3172\n0xA4E3\t0x3173\n0xA4E4\t0x3174\n0xA4E5\t0x3175\n0xA4E6\t0x3176\n0xA4E7\t0x3177\n0xA4E8\t0x3178\n0xA4E9\t0x3179\n0xA4EA\t0x317A\n0xA4EB\t0x317B\n0xA4EC\t0x317C\n0xA4ED\t0x317D\n0xA4EE\t0x317E\n0xA4EF\t0x317F\n0xA4F0\t0x3180\n0xA4F1\t0x3181\n0xA4F2\t0x3182\n0xA4F3\t0x3183\n0xA4F4\t0x3184\n0xA4F5\t0x3185\n0xA4F6\t0x3186\n0xA4F7\t0x3187\n0xA4F8\t0x3188\n0xA4F9\t0x3189\n0xA4FA\t0x318A\n0xA4FB\t0x318B\n0xA4FC\t0x318C\n0xA4FD\t0x318D\n0xA4FE\t0x318E\n0xA5A1\t0x2170\n0xA5A2\t0x2171\n0xA5A3\t0x2172\n0xA5A4\t0x2173\n0xA5A5\t0x2174\n0xA5A6\t0x2175\n0xA5A7\t0x2176\n0xA5A8\t0x2177\n0xA5A9\t0x2178\n0xA5AA\t0x2179\n0xA5B0\t0x2160\n0xA5B1\t0x2161\n0xA5B2\t0x2162\n0xA5B3\t0x2163\n0xA5B4\t0x2164\n0xA5B5\t0x2165\n0xA5B6\t0x2166\n0xA5B7\t0x2167\n0xA5B8\t0x2168\n0xA5B9\t0x2169\n0xA5C1\t0x0391\n0xA5C2\t0x0392\n0xA5C3\t0x0393\n0xA5C4\t0x0394\n0xA5C5\t0x0395\n0xA5C6\t0x0396\n0xA5C7\t0x0397\n0xA5C8\t0x0398\n0xA5C9\t0x0399\n0xA5CA\t0x039A\n0xA5CB\t0x039B\n0xA5CC\t0x039C\n0xA5CD\t0x039D\n0xA5CE\t0x039E\n0xA5CF\t0x039F\n0xA5D0\t0x03A0\n0xA5D1\t0x03A1\n0xA5D2\t0x03A3\n0xA5D3\t0x03A4\n0xA5D4\t0x03A5\n0xA5D5\t0x03A6\n0xA5D6\t0x03A7\n0xA5D7\t0x03A8\n0xA5D8\t0x03A9\n0xA5E1\t0x03B1\n0xA5E2\t0x03B2\n0xA5E3\t0x03B3\n0xA5E4\t0x03B4\n0xA5E5\t0x03B5\n0xA5E6\t0x03B6\n0xA5E7\t0x03B7\n0xA5E8\t0x03B8\n0xA5E9\t0x03B9\n0xA5EA\t0x03BA\n0xA5EB\t0x03BB\n0xA5EC\t0x03BC\n0xA5ED\t0x03BD\n0xA5EE\t0x03BE\n0xA5EF\t0x03BF\n0xA5F0\t0x03C0\n0xA5F1\t0x03C1\n0xA5F2\t0x03C3\n0xA5F3\t0x03C4\n0xA5F4\t0x03C5\n0xA5F5\t0x03C6\n0xA5F6\t0x03C7\n0xA5F7\t0x03C8\n0xA5F8\t0x03C9\n0xA6A1\t0x2500\n0xA6A2\t0x2502\n0xA6A3\t0x250C\n0xA6A4\t0x2510\n0xA6A5\t0x2518\n0xA6A6\t0x2514\n0xA6A7\t0x251C\n0xA6A8\t0x252C\n0xA6A9\t0x2524\n0xA6AA\t0x2534\n0xA6AB\t0x253C\n0xA6AC\t0x2501\n0xA6AD\t0x2503\n0xA6AE\t0x250F\n0xA6AF\t0x2513\n0xA6B0\t0x251B\n0xA6B1\t0x2517\n0xA6B2\t0x2523\n0xA6B3\t0x2533\n0xA6B4\t0x252B\n0xA6B5\t0x253B\n0xA6B6\t0x254B\n0xA6B7\t0x2520\n0xA6B8\t0x252F\n0xA6B9\t0x2528\n0xA6BA\t0x2537\n0xA6BB\t0x253F\n0xA6BC\t0x251D\n0xA6BD\t0x2530\n0xA6BE\t0x2525\n0xA6BF\t0x2538\n0xA6C0\t0x2542\n0xA6C1\t0x2512\n0xA6C2\t0x2511\n0xA6C3\t0x251A\n0xA6C4\t0x2519\n0xA6C5\t0x2516\n0xA6C6\t0x2515\n0xA6C7\t0x250E\n0xA6C8\t0x250D\n0xA6C9\t0x251E\n0xA6CA\t0x251F\n0xA6CB\t0x2521\n0xA6CC\t0x2522\n0xA6CD\t0x2526\n0xA6CE\t0x2527\n0xA6CF\t0x2529\n0xA6D0\t0x252A\n0xA6D1\t0x252D\n0xA6D2\t0x252E\n0xA6D3\t0x2531\n0xA6D4\t0x2532\n0xA6D5\t0x2535\n0xA6D6\t0x2536\n0xA6D7\t0x2539\n0xA6D8\t0x253A\n0xA6D9\t0x253D\n0xA6DA\t0x253E\n0xA6DB\t0x2540\n0xA6DC\t0x2541\n0xA6DD\t0x2543\n0xA6DE\t0x2544\n0xA6DF\t0x2545\n0xA6E0\t0x2546\n0xA6E1\t0x2547\n0xA6E2\t0x2548\n0xA6E3\t0x2549\n0xA6E4\t0x254A\n0xA7A1\t0x3395\n0xA7A2\t0x3396\n0xA7A3\t0x3397\n0xA7A4\t0x2113\n0xA7A5\t0x3398\n0xA7A6\t0x33C4\n0xA7A7\t0x33A3\n0xA7A8\t0x33A4\n0xA7A9\t0x33A5\n0xA7AA\t0x33A6\n0xA7AB\t0x3399\n0xA7AC\t0x339A\n0xA7AD\t0x339B\n0xA7AE\t0x339C\n0xA7AF\t0x339D\n0xA7B0\t0x339E\n0xA7B1\t0x339F\n0xA7B2\t0x33A0\n0xA7B3\t0x33A1\n0xA7B4\t0x33A2\n0xA7B5\t0x33CA\n0xA7B6\t0x338D\n0xA7B7\t0x338E\n0xA7B8\t0x338F\n0xA7B9\t0x33CF\n0xA7BA\t0x3388\n0xA7BB\t0x3389\n0xA7BC\t0x33C8\n0xA7BD\t0x33A7\n0xA7BE\t0x33A8\n0xA7BF\t0x33B0\n0xA7C0\t0x33B1\n0xA7C1\t0x33B2\n0xA7C2\t0x33B3\n0xA7C3\t0x33B4\n0xA7C4\t0x33B5\n0xA7C5\t0x33B6\n0xA7C6\t0x33B7\n0xA7C7\t0x33B8\n0xA7C8\t0x33B9\n0xA7C9\t0x3380\n0xA7CA\t0x3381\n0xA7CB\t0x3382\n0xA7CC\t0x3383\n0xA7CD\t0x3384\n0xA7CE\t0x33BA\n0xA7CF\t0x33BB\n0xA7D0\t0x33BC\n0xA7D1\t0x33BD\n0xA7D2\t0x33BE\n0xA7D3\t0x33BF\n0xA7D4\t0x3390\n0xA7D5\t0x3391\n0xA7D6\t0x3392\n0xA7D7\t0x3393\n0xA7D8\t0x3394\n0xA7D9\t0x2126\n0xA7DA\t0x33C0\n0xA7DB\t0x33C1\n0xA7DC\t0x338A\n0xA7DD\t0x338B\n0xA7DE\t0x338C\n0xA7DF\t0x33D6\n0xA7E0\t0x33C5\n0xA7E1\t0x33AD\n0xA7E2\t0x33AE\n0xA7E3\t0x33AF\n0xA7E4\t0x33DB\n0xA7E5\t0x33A9\n0xA7E6\t0x33AA\n0xA7E7\t0x33AB\n0xA7E8\t0x33AC\n0xA7E9\t0x33DD\n0xA7EA\t0x33D0\n0xA7EB\t0x33D3\n0xA7EC\t0x33C3\n0xA7ED\t0x33C9\n0xA7EE\t0x33DC\n0xA7EF\t0x33C6\n0xA8A1\t0x00C6\n0xA8A2\t0x00D0\n0xA8A3\t0x00AA\n0xA8A4\t0x0126\n0xA8A6\t0x0132\n0xA8A8\t0x013F\n0xA8A9\t0x0141\n0xA8AA\t0x00D8\n0xA8AB\t0x0152\n0xA8AC\t0x00BA\n0xA8AD\t0x00DE\n0xA8AE\t0x0166\n0xA8AF\t0x014A\n0xA8B1\t0x3260\n0xA8B2\t0x3261\n0xA8B3\t0x3262\n0xA8B4\t0x3263\n0xA8B5\t0x3264\n0xA8B6\t0x3265\n0xA8B7\t0x3266\n0xA8B8\t0x3267\n0xA8B9\t0x3268\n0xA8BA\t0x3269\n0xA8BB\t0x326A\n0xA8BC\t0x326B\n0xA8BD\t0x326C\n0xA8BE\t0x326D\n0xA8BF\t0x326E\n0xA8C0\t0x326F\n0xA8C1\t0x3270\n0xA8C2\t0x3271\n0xA8C3\t0x3272\n0xA8C4\t0x3273\n0xA8C5\t0x3274\n0xA8C6\t0x3275\n0xA8C7\t0x3276\n0xA8C8\t0x3277\n0xA8C9\t0x3278\n0xA8CA\t0x3279\n0xA8CB\t0x327A\n0xA8CC\t0x327B\n0xA8CD\t0x24D0\n0xA8CE\t0x24D1\n0xA8CF\t0x24D2\n0xA8D0\t0x24D3\n0xA8D1\t0x24D4\n0xA8D2\t0x24D5\n0xA8D3\t0x24D6\n0xA8D4\t0x24D7\n0xA8D5\t0x24D8\n0xA8D6\t0x24D9\n0xA8D7\t0x24DA\n0xA8D8\t0x24DB\n0xA8D9\t0x24DC\n0xA8DA\t0x24DD\n0xA8DB\t0x24DE\n0xA8DC\t0x24DF\n0xA8DD\t0x24E0\n0xA8DE\t0x24E1\n0xA8DF\t0x24E2\n0xA8E0\t0x24E3\n0xA8E1\t0x24E4\n0xA8E2\t0x24E5\n0xA8E3\t0x24E6\n0xA8E4\t0x24E7\n0xA8E5\t0x24E8\n0xA8E6\t0x24E9\n0xA8E7\t0x2460\n0xA8E8\t0x2461\n0xA8E9\t0x2462\n0xA8EA\t0x2463\n0xA8EB\t0x2464\n0xA8EC\t0x2465\n0xA8ED\t0x2466\n0xA8EE\t0x2467\n0xA8EF\t0x2468\n0xA8F0\t0x2469\n0xA8F1\t0x246A\n0xA8F2\t0x246B\n0xA8F3\t0x246C\n0xA8F4\t0x246D\n0xA8F5\t0x246E\n0xA8F6\t0x00BD\n0xA8F7\t0x2153\n0xA8F8\t0x2154\n0xA8F9\t0x00BC\n0xA8FA\t0x00BE\n0xA8FB\t0x215B\n0xA8FC\t0x215C\n0xA8FD\t0x215D\n0xA8FE\t0x215E\n0xA9A1\t0x00E6\n0xA9A2\t0x0111\n0xA9A3\t0x00F0\n0xA9A4\t0x0127\n0xA9A5\t0x0131\n0xA9A6\t0x0133\n0xA9A7\t0x0138\n0xA9A8\t0x0140\n0xA9A9\t0x0142\n0xA9AA\t0x00F8\n0xA9AB\t0x0153\n0xA9AC\t0x00DF\n0xA9AD\t0x00FE\n0xA9AE\t0x0167\n0xA9AF\t0x014B\n0xA9B0\t0x0149\n0xA9B1\t0x3200\n0xA9B2\t0x3201\n0xA9B3\t0x3202\n0xA9B4\t0x3203\n0xA9B5\t0x3204\n0xA9B6\t0x3205\n0xA9B7\t0x3206\n0xA9B8\t0x3207\n0xA9B9\t0x3208\n0xA9BA\t0x3209\n0xA9BB\t0x320A\n0xA9BC\t0x320B\n0xA9BD\t0x320C\n0xA9BE\t0x320D\n0xA9BF\t0x320E\n0xA9C0\t0x320F\n0xA9C1\t0x3210\n0xA9C2\t0x3211\n0xA9C3\t0x3212\n0xA9C4\t0x3213\n0xA9C5\t0x3214\n0xA9C6\t0x3215\n0xA9C7\t0x3216\n0xA9C8\t0x3217\n0xA9C9\t0x3218\n0xA9CA\t0x3219\n0xA9CB\t0x321A\n0xA9CC\t0x321B\n0xA9CD\t0x249C\n0xA9CE\t0x249D\n0xA9CF\t0x249E\n0xA9D0\t0x249F\n0xA9D1\t0x24A0\n0xA9D2\t0x24A1\n0xA9D3\t0x24A2\n0xA9D4\t0x24A3\n0xA9D5\t0x24A4\n0xA9D6\t0x24A5\n0xA9D7\t0x24A6\n0xA9D8\t0x24A7\n0xA9D9\t0x24A8\n0xA9DA\t0x24A9\n0xA9DB\t0x24AA\n0xA9DC\t0x24AB\n0xA9DD\t0x24AC\n0xA9DE\t0x24AD\n0xA9DF\t0x24AE\n0xA9E0\t0x24AF\n0xA9E1\t0x24B0\n0xA9E2\t0x24B1\n0xA9E3\t0x24B2\n0xA9E4\t0x24B3\n0xA9E5\t0x24B4\n0xA9E6\t0x24B5\n0xA9E7\t0x2474\n0xA9E8\t0x2475\n0xA9E9\t0x2476\n0xA9EA\t0x2477\n0xA9EB\t0x2478\n0xA9EC\t0x2479\n0xA9ED\t0x247A\n0xA9EE\t0x247B\n0xA9EF\t0x247C\n0xA9F0\t0x247D\n0xA9F1\t0x247E\n0xA9F2\t0x247F\n0xA9F3\t0x2480\n0xA9F4\t0x2481\n0xA9F5\t0x2482\n0xA9F6\t0x00B9\n0xA9F7\t0x00B2\n0xA9F8\t0x00B3\n0xA9F9\t0x2074\n0xA9FA\t0x207F\n0xA9FB\t0x2081\n0xA9FC\t0x2082\n0xA9FD\t0x2083\n0xA9FE\t0x2084\n0xAAA1\t0x3041\n0xAAA2\t0x3042\n0xAAA3\t0x3043\n0xAAA4\t0x3044\n0xAAA5\t0x3045\n0xAAA6\t0x3046\n0xAAA7\t0x3047\n0xAAA8\t0x3048\n0xAAA9\t0x3049\n0xAAAA\t0x304A\n0xAAAB\t0x304B\n0xAAAC\t0x304C\n0xAAAD\t0x304D\n0xAAAE\t0x304E\n0xAAAF\t0x304F\n0xAAB0\t0x3050\n0xAAB1\t0x3051\n0xAAB2\t0x3052\n0xAAB3\t0x3053\n0xAAB4\t0x3054\n0xAAB5\t0x3055\n0xAAB6\t0x3056\n0xAAB7\t0x3057\n0xAAB8\t0x3058\n0xAAB9\t0x3059\n0xAABA\t0x305A\n0xAABB\t0x305B\n0xAABC\t0x305C\n0xAABD\t0x305D\n0xAABE\t0x305E\n0xAABF\t0x305F\n0xAAC0\t0x3060\n0xAAC1\t0x3061\n0xAAC2\t0x3062\n0xAAC3\t0x3063\n0xAAC4\t0x3064\n0xAAC5\t0x3065\n0xAAC6\t0x3066\n0xAAC7\t0x3067\n0xAAC8\t0x3068\n0xAAC9\t0x3069\n0xAACA\t0x306A\n0xAACB\t0x306B\n0xAACC\t0x306C\n0xAACD\t0x306D\n0xAACE\t0x306E\n0xAACF\t0x306F\n0xAAD0\t0x3070\n0xAAD1\t0x3071\n0xAAD2\t0x3072\n0xAAD3\t0x3073\n0xAAD4\t0x3074\n0xAAD5\t0x3075\n0xAAD6\t0x3076\n0xAAD7\t0x3077\n0xAAD8\t0x3078\n0xAAD9\t0x3079\n0xAADA\t0x307A\n0xAADB\t0x307B\n0xAADC\t0x307C\n0xAADD\t0x307D\n0xAADE\t0x307E\n0xAADF\t0x307F\n0xAAE0\t0x3080\n0xAAE1\t0x3081\n0xAAE2\t0x3082\n0xAAE3\t0x3083\n0xAAE4\t0x3084\n0xAAE5\t0x3085\n0xAAE6\t0x3086\n0xAAE7\t0x3087\n0xAAE8\t0x3088\n0xAAE9\t0x3089\n0xAAEA\t0x308A\n0xAAEB\t0x308B\n0xAAEC\t0x308C\n0xAAED\t0x308D\n0xAAEE\t0x308E\n0xAAEF\t0x308F\n0xAAF0\t0x3090\n0xAAF1\t0x3091\n0xAAF2\t0x3092\n0xAAF3\t0x3093\n0xABA1\t0x30A1\n0xABA2\t0x30A2\n0xABA3\t0x30A3\n0xABA4\t0x30A4\n0xABA5\t0x30A5\n0xABA6\t0x30A6\n0xABA7\t0x30A7\n0xABA8\t0x30A8\n0xABA9\t0x30A9\n0xABAA\t0x30AA\n0xABAB\t0x30AB\n0xABAC\t0x30AC\n0xABAD\t0x30AD\n0xABAE\t0x30AE\n0xABAF\t0x30AF\n0xABB0\t0x30B0\n0xABB1\t0x30B1\n0xABB2\t0x30B2\n0xABB3\t0x30B3\n0xABB4\t0x30B4\n0xABB5\t0x30B5\n0xABB6\t0x30B6\n0xABB7\t0x30B7\n0xABB8\t0x30B8\n0xABB9\t0x30B9\n0xABBA\t0x30BA\n0xABBB\t0x30BB\n0xABBC\t0x30BC\n0xABBD\t0x30BD\n0xABBE\t0x30BE\n0xABBF\t0x30BF\n0xABC0\t0x30C0\n0xABC1\t0x30C1\n0xABC2\t0x30C2\n0xABC3\t0x30C3\n0xABC4\t0x30C4\n0xABC5\t0x30C5\n0xABC6\t0x30C6\n0xABC7\t0x30C7\n0xABC8\t0x30C8\n0xABC9\t0x30C9\n0xABCA\t0x30CA\n0xABCB\t0x30CB\n0xABCC\t0x30CC\n0xABCD\t0x30CD\n0xABCE\t0x30CE\n0xABCF\t0x30CF\n0xABD0\t0x30D0\n0xABD1\t0x30D1\n0xABD2\t0x30D2\n0xABD3\t0x30D3\n0xABD4\t0x30D4\n0xABD5\t0x30D5\n0xABD6\t0x30D6\n0xABD7\t0x30D7\n0xABD8\t0x30D8\n0xABD9\t0x30D9\n0xABDA\t0x30DA\n0xABDB\t0x30DB\n0xABDC\t0x30DC\n0xABDD\t0x30DD\n0xABDE\t0x30DE\n0xABDF\t0x30DF\n0xABE0\t0x30E0\n0xABE1\t0x30E1\n0xABE2\t0x30E2\n0xABE3\t0x30E3\n0xABE4\t0x30E4\n0xABE5\t0x30E5\n0xABE6\t0x30E6\n0xABE7\t0x30E7\n0xABE8\t0x30E8\n0xABE9\t0x30E9\n0xABEA\t0x30EA\n0xABEB\t0x30EB\n0xABEC\t0x30EC\n0xABED\t0x30ED\n0xABEE\t0x30EE\n0xABEF\t0x30EF\n0xABF0\t0x30F0\n0xABF1\t0x30F1\n0xABF2\t0x30F2\n0xABF3\t0x30F3\n0xABF4\t0x30F4\n0xABF5\t0x30F5\n0xABF6\t0x30F6\n0xACA1\t0x0410\n0xACA2\t0x0411\n0xACA3\t0x0412\n0xACA4\t0x0413\n0xACA5\t0x0414\n0xACA6\t0x0415\n0xACA7\t0x0401\n0xACA8\t0x0416\n0xACA9\t0x0417\n0xACAA\t0x0418\n0xACAB\t0x0419\n0xACAC\t0x041A\n0xACAD\t0x041B\n0xACAE\t0x041C\n0xACAF\t0x041D\n0xACB0\t0x041E\n0xACB1\t0x041F\n0xACB2\t0x0420\n0xACB3\t0x0421\n0xACB4\t0x0422\n0xACB5\t0x0423\n0xACB6\t0x0424\n0xACB7\t0x0425\n0xACB8\t0x0426\n0xACB9\t0x0427\n0xACBA\t0x0428\n0xACBB\t0x0429\n0xACBC\t0x042A\n0xACBD\t0x042B\n0xACBE\t0x042C\n0xACBF\t0x042D\n0xACC0\t0x042E\n0xACC1\t0x042F\n0xACD1\t0x0430\n0xACD2\t0x0431\n0xACD3\t0x0432\n0xACD4\t0x0433\n0xACD5\t0x0434\n0xACD6\t0x0435\n0xACD7\t0x0451\n0xACD8\t0x0436\n0xACD9\t0x0437\n0xACDA\t0x0438\n0xACDB\t0x0439\n0xACDC\t0x043A\n0xACDD\t0x043B\n0xACDE\t0x043C\n0xACDF\t0x043D\n0xACE0\t0x043E\n0xACE1\t0x043F\n0xACE2\t0x0440\n0xACE3\t0x0441\n0xACE4\t0x0442\n0xACE5\t0x0443\n0xACE6\t0x0444\n0xACE7\t0x0445\n0xACE8\t0x0446\n0xACE9\t0x0447\n0xACEA\t0x0448\n0xACEB\t0x0449\n0xACEC\t0x044A\n0xACED\t0x044B\n0xACEE\t0x044C\n0xACEF\t0x044D\n0xACF0\t0x044E\n0xACF1\t0x044F\n0xB0A1\t0xAC00\n0xB0A2\t0xAC01\n0xB0A3\t0xAC04\n0xB0A4\t0xAC07\n0xB0A5\t0xAC08\n0xB0A6\t0xAC09\n0xB0A7\t0xAC0A\n0xB0A8\t0xAC10\n0xB0A9\t0xAC11\n0xB0AA\t0xAC12\n0xB0AB\t0xAC13\n0xB0AC\t0xAC14\n0xB0AD\t0xAC15\n0xB0AE\t0xAC16\n0xB0AF\t0xAC17\n0xB0B0\t0xAC19\n0xB0B1\t0xAC1A\n0xB0B2\t0xAC1B\n0xB0B3\t0xAC1C\n0xB0B4\t0xAC1D\n0xB0B5\t0xAC20\n0xB0B6\t0xAC24\n0xB0B7\t0xAC2C\n0xB0B8\t0xAC2D\n0xB0B9\t0xAC2F\n0xB0BA\t0xAC30\n0xB0BB\t0xAC31\n0xB0BC\t0xAC38\n0xB0BD\t0xAC39\n0xB0BE\t0xAC3C\n0xB0BF\t0xAC40\n0xB0C0\t0xAC4B\n0xB0C1\t0xAC4D\n0xB0C2\t0xAC54\n0xB0C3\t0xAC58\n0xB0C4\t0xAC5C\n0xB0C5\t0xAC70\n0xB0C6\t0xAC71\n0xB0C7\t0xAC74\n0xB0C8\t0xAC77\n0xB0C9\t0xAC78\n0xB0CA\t0xAC7A\n0xB0CB\t0xAC80\n0xB0CC\t0xAC81\n0xB0CD\t0xAC83\n0xB0CE\t0xAC84\n0xB0CF\t0xAC85\n0xB0D0\t0xAC86\n0xB0D1\t0xAC89\n0xB0D2\t0xAC8A\n0xB0D3\t0xAC8B\n0xB0D4\t0xAC8C\n0xB0D5\t0xAC90\n0xB0D6\t0xAC94\n0xB0D7\t0xAC9C\n0xB0D8\t0xAC9D\n0xB0D9\t0xAC9F\n0xB0DA\t0xACA0\n0xB0DB\t0xACA1\n0xB0DC\t0xACA8\n0xB0DD\t0xACA9\n0xB0DE\t0xACAA\n0xB0DF\t0xACAC\n0xB0E0\t0xACAF\n0xB0E1\t0xACB0\n0xB0E2\t0xACB8\n0xB0E3\t0xACB9\n0xB0E4\t0xACBB\n0xB0E5\t0xACBC\n0xB0E6\t0xACBD\n0xB0E7\t0xACC1\n0xB0E8\t0xACC4\n0xB0E9\t0xACC8\n0xB0EA\t0xACCC\n0xB0EB\t0xACD5\n0xB0EC\t0xACD7\n0xB0ED\t0xACE0\n0xB0EE\t0xACE1\n0xB0EF\t0xACE4\n0xB0F0\t0xACE7\n0xB0F1\t0xACE8\n0xB0F2\t0xACEA\n0xB0F3\t0xACEC\n0xB0F4\t0xACEF\n0xB0F5\t0xACF0\n0xB0F6\t0xACF1\n0xB0F7\t0xACF3\n0xB0F8\t0xACF5\n0xB0F9\t0xACF6\n0xB0FA\t0xACFC\n0xB0FB\t0xACFD\n0xB0FC\t0xAD00\n0xB0FD\t0xAD04\n0xB0FE\t0xAD06\n0xB1A1\t0xAD0C\n0xB1A2\t0xAD0D\n0xB1A3\t0xAD0F\n0xB1A4\t0xAD11\n0xB1A5\t0xAD18\n0xB1A6\t0xAD1C\n0xB1A7\t0xAD20\n0xB1A8\t0xAD29\n0xB1A9\t0xAD2C\n0xB1AA\t0xAD2D\n0xB1AB\t0xAD34\n0xB1AC\t0xAD35\n0xB1AD\t0xAD38\n0xB1AE\t0xAD3C\n0xB1AF\t0xAD44\n0xB1B0\t0xAD45\n0xB1B1\t0xAD47\n0xB1B2\t0xAD49\n0xB1B3\t0xAD50\n0xB1B4\t0xAD54\n0xB1B5\t0xAD58\n0xB1B6\t0xAD61\n0xB1B7\t0xAD63\n0xB1B8\t0xAD6C\n0xB1B9\t0xAD6D\n0xB1BA\t0xAD70\n0xB1BB\t0xAD73\n0xB1BC\t0xAD74\n0xB1BD\t0xAD75\n0xB1BE\t0xAD76\n0xB1BF\t0xAD7B\n0xB1C0\t0xAD7C\n0xB1C1\t0xAD7D\n0xB1C2\t0xAD7F\n0xB1C3\t0xAD81\n0xB1C4\t0xAD82\n0xB1C5\t0xAD88\n0xB1C6\t0xAD89\n0xB1C7\t0xAD8C\n0xB1C8\t0xAD90\n0xB1C9\t0xAD9C\n0xB1CA\t0xAD9D\n0xB1CB\t0xADA4\n0xB1CC\t0xADB7\n0xB1CD\t0xADC0\n0xB1CE\t0xADC1\n0xB1CF\t0xADC4\n0xB1D0\t0xADC8\n0xB1D1\t0xADD0\n0xB1D2\t0xADD1\n0xB1D3\t0xADD3\n0xB1D4\t0xADDC\n0xB1D5\t0xADE0\n0xB1D6\t0xADE4\n0xB1D7\t0xADF8\n0xB1D8\t0xADF9\n0xB1D9\t0xADFC\n0xB1DA\t0xADFF\n0xB1DB\t0xAE00\n0xB1DC\t0xAE01\n0xB1DD\t0xAE08\n0xB1DE\t0xAE09\n0xB1DF\t0xAE0B\n0xB1E0\t0xAE0D\n0xB1E1\t0xAE14\n0xB1E2\t0xAE30\n0xB1E3\t0xAE31\n0xB1E4\t0xAE34\n0xB1E5\t0xAE37\n0xB1E6\t0xAE38\n0xB1E7\t0xAE3A\n0xB1E8\t0xAE40\n0xB1E9\t0xAE41\n0xB1EA\t0xAE43\n0xB1EB\t0xAE45\n0xB1EC\t0xAE46\n0xB1ED\t0xAE4A\n0xB1EE\t0xAE4C\n0xB1EF\t0xAE4D\n0xB1F0\t0xAE4E\n0xB1F1\t0xAE50\n0xB1F2\t0xAE54\n0xB1F3\t0xAE56\n0xB1F4\t0xAE5C\n0xB1F5\t0xAE5D\n0xB1F6\t0xAE5F\n0xB1F7\t0xAE60\n0xB1F8\t0xAE61\n0xB1F9\t0xAE65\n0xB1FA\t0xAE68\n0xB1FB\t0xAE69\n0xB1FC\t0xAE6C\n0xB1FD\t0xAE70\n0xB1FE\t0xAE78\n0xB2A1\t0xAE79\n0xB2A2\t0xAE7B\n0xB2A3\t0xAE7C\n0xB2A4\t0xAE7D\n0xB2A5\t0xAE84\n0xB2A6\t0xAE85\n0xB2A7\t0xAE8C\n0xB2A8\t0xAEBC\n0xB2A9\t0xAEBD\n0xB2AA\t0xAEBE\n0xB2AB\t0xAEC0\n0xB2AC\t0xAEC4\n0xB2AD\t0xAECC\n0xB2AE\t0xAECD\n0xB2AF\t0xAECF\n0xB2B0\t0xAED0\n0xB2B1\t0xAED1\n0xB2B2\t0xAED8\n0xB2B3\t0xAED9\n0xB2B4\t0xAEDC\n0xB2B5\t0xAEE8\n0xB2B6\t0xAEEB\n0xB2B7\t0xAEED\n0xB2B8\t0xAEF4\n0xB2B9\t0xAEF8\n0xB2BA\t0xAEFC\n0xB2BB\t0xAF07\n0xB2BC\t0xAF08\n0xB2BD\t0xAF0D\n0xB2BE\t0xAF10\n0xB2BF\t0xAF2C\n0xB2C0\t0xAF2D\n0xB2C1\t0xAF30\n0xB2C2\t0xAF32\n0xB2C3\t0xAF34\n0xB2C4\t0xAF3C\n0xB2C5\t0xAF3D\n0xB2C6\t0xAF3F\n0xB2C7\t0xAF41\n0xB2C8\t0xAF42\n0xB2C9\t0xAF43\n0xB2CA\t0xAF48\n0xB2CB\t0xAF49\n0xB2CC\t0xAF50\n0xB2CD\t0xAF5C\n0xB2CE\t0xAF5D\n0xB2CF\t0xAF64\n0xB2D0\t0xAF65\n0xB2D1\t0xAF79\n0xB2D2\t0xAF80\n0xB2D3\t0xAF84\n0xB2D4\t0xAF88\n0xB2D5\t0xAF90\n0xB2D6\t0xAF91\n0xB2D7\t0xAF95\n0xB2D8\t0xAF9C\n0xB2D9\t0xAFB8\n0xB2DA\t0xAFB9\n0xB2DB\t0xAFBC\n0xB2DC\t0xAFC0\n0xB2DD\t0xAFC7\n0xB2DE\t0xAFC8\n0xB2DF\t0xAFC9\n0xB2E0\t0xAFCB\n0xB2E1\t0xAFCD\n0xB2E2\t0xAFCE\n0xB2E3\t0xAFD4\n0xB2E4\t0xAFDC\n0xB2E5\t0xAFE8\n0xB2E6\t0xAFE9\n0xB2E7\t0xAFF0\n0xB2E8\t0xAFF1\n0xB2E9\t0xAFF4\n0xB2EA\t0xAFF8\n0xB2EB\t0xB000\n0xB2EC\t0xB001\n0xB2ED\t0xB004\n0xB2EE\t0xB00C\n0xB2EF\t0xB010\n0xB2F0\t0xB014\n0xB2F1\t0xB01C\n0xB2F2\t0xB01D\n0xB2F3\t0xB028\n0xB2F4\t0xB044\n0xB2F5\t0xB045\n0xB2F6\t0xB048\n0xB2F7\t0xB04A\n0xB2F8\t0xB04C\n0xB2F9\t0xB04E\n0xB2FA\t0xB053\n0xB2FB\t0xB054\n0xB2FC\t0xB055\n0xB2FD\t0xB057\n0xB2FE\t0xB059\n0xB3A1\t0xB05D\n0xB3A2\t0xB07C\n0xB3A3\t0xB07D\n0xB3A4\t0xB080\n0xB3A5\t0xB084\n0xB3A6\t0xB08C\n0xB3A7\t0xB08D\n0xB3A8\t0xB08F\n0xB3A9\t0xB091\n0xB3AA\t0xB098\n0xB3AB\t0xB099\n0xB3AC\t0xB09A\n0xB3AD\t0xB09C\n0xB3AE\t0xB09F\n0xB3AF\t0xB0A0\n0xB3B0\t0xB0A1\n0xB3B1\t0xB0A2\n0xB3B2\t0xB0A8\n0xB3B3\t0xB0A9\n0xB3B4\t0xB0AB\n0xB3B5\t0xB0AC\n0xB3B6\t0xB0AD\n0xB3B7\t0xB0AE\n0xB3B8\t0xB0AF\n0xB3B9\t0xB0B1\n0xB3BA\t0xB0B3\n0xB3BB\t0xB0B4\n0xB3BC\t0xB0B5\n0xB3BD\t0xB0B8\n0xB3BE\t0xB0BC\n0xB3BF\t0xB0C4\n0xB3C0\t0xB0C5\n0xB3C1\t0xB0C7\n0xB3C2\t0xB0C8\n0xB3C3\t0xB0C9\n0xB3C4\t0xB0D0\n0xB3C5\t0xB0D1\n0xB3C6\t0xB0D4\n0xB3C7\t0xB0D8\n0xB3C8\t0xB0E0\n0xB3C9\t0xB0E5\n0xB3CA\t0xB108\n0xB3CB\t0xB109\n0xB3CC\t0xB10B\n0xB3CD\t0xB10C\n0xB3CE\t0xB110\n0xB3CF\t0xB112\n0xB3D0\t0xB113\n0xB3D1\t0xB118\n0xB3D2\t0xB119\n0xB3D3\t0xB11B\n0xB3D4\t0xB11C\n0xB3D5\t0xB11D\n0xB3D6\t0xB123\n0xB3D7\t0xB124\n0xB3D8\t0xB125\n0xB3D9\t0xB128\n0xB3DA\t0xB12C\n0xB3DB\t0xB134\n0xB3DC\t0xB135\n0xB3DD\t0xB137\n0xB3DE\t0xB138\n0xB3DF\t0xB139\n0xB3E0\t0xB140\n0xB3E1\t0xB141\n0xB3E2\t0xB144\n0xB3E3\t0xB148\n0xB3E4\t0xB150\n0xB3E5\t0xB151\n0xB3E6\t0xB154\n0xB3E7\t0xB155\n0xB3E8\t0xB158\n0xB3E9\t0xB15C\n0xB3EA\t0xB160\n0xB3EB\t0xB178\n0xB3EC\t0xB179\n0xB3ED\t0xB17C\n0xB3EE\t0xB180\n0xB3EF\t0xB182\n0xB3F0\t0xB188\n0xB3F1\t0xB189\n0xB3F2\t0xB18B\n0xB3F3\t0xB18D\n0xB3F4\t0xB192\n0xB3F5\t0xB193\n0xB3F6\t0xB194\n0xB3F7\t0xB198\n0xB3F8\t0xB19C\n0xB3F9\t0xB1A8\n0xB3FA\t0xB1CC\n0xB3FB\t0xB1D0\n0xB3FC\t0xB1D4\n0xB3FD\t0xB1DC\n0xB3FE\t0xB1DD\n0xB4A1\t0xB1DF\n0xB4A2\t0xB1E8\n0xB4A3\t0xB1E9\n0xB4A4\t0xB1EC\n0xB4A5\t0xB1F0\n0xB4A6\t0xB1F9\n0xB4A7\t0xB1FB\n0xB4A8\t0xB1FD\n0xB4A9\t0xB204\n0xB4AA\t0xB205\n0xB4AB\t0xB208\n0xB4AC\t0xB20B\n0xB4AD\t0xB20C\n0xB4AE\t0xB214\n0xB4AF\t0xB215\n0xB4B0\t0xB217\n0xB4B1\t0xB219\n0xB4B2\t0xB220\n0xB4B3\t0xB234\n0xB4B4\t0xB23C\n0xB4B5\t0xB258\n0xB4B6\t0xB25C\n0xB4B7\t0xB260\n0xB4B8\t0xB268\n0xB4B9\t0xB269\n0xB4BA\t0xB274\n0xB4BB\t0xB275\n0xB4BC\t0xB27C\n0xB4BD\t0xB284\n0xB4BE\t0xB285\n0xB4BF\t0xB289\n0xB4C0\t0xB290\n0xB4C1\t0xB291\n0xB4C2\t0xB294\n0xB4C3\t0xB298\n0xB4C4\t0xB299\n0xB4C5\t0xB29A\n0xB4C6\t0xB2A0\n0xB4C7\t0xB2A1\n0xB4C8\t0xB2A3\n0xB4C9\t0xB2A5\n0xB4CA\t0xB2A6\n0xB4CB\t0xB2AA\n0xB4CC\t0xB2AC\n0xB4CD\t0xB2B0\n0xB4CE\t0xB2B4\n0xB4CF\t0xB2C8\n0xB4D0\t0xB2C9\n0xB4D1\t0xB2CC\n0xB4D2\t0xB2D0\n0xB4D3\t0xB2D2\n0xB4D4\t0xB2D8\n0xB4D5\t0xB2D9\n0xB4D6\t0xB2DB\n0xB4D7\t0xB2DD\n0xB4D8\t0xB2E2\n0xB4D9\t0xB2E4\n0xB4DA\t0xB2E5\n0xB4DB\t0xB2E6\n0xB4DC\t0xB2E8\n0xB4DD\t0xB2EB\n0xB4DE\t0xB2EC\n0xB4DF\t0xB2ED\n0xB4E0\t0xB2EE\n0xB4E1\t0xB2EF\n0xB4E2\t0xB2F3\n0xB4E3\t0xB2F4\n0xB4E4\t0xB2F5\n0xB4E5\t0xB2F7\n0xB4E6\t0xB2F8\n0xB4E7\t0xB2F9\n0xB4E8\t0xB2FA\n0xB4E9\t0xB2FB\n0xB4EA\t0xB2FF\n0xB4EB\t0xB300\n0xB4EC\t0xB301\n0xB4ED\t0xB304\n0xB4EE\t0xB308\n0xB4EF\t0xB310\n0xB4F0\t0xB311\n0xB4F1\t0xB313\n0xB4F2\t0xB314\n0xB4F3\t0xB315\n0xB4F4\t0xB31C\n0xB4F5\t0xB354\n0xB4F6\t0xB355\n0xB4F7\t0xB356\n0xB4F8\t0xB358\n0xB4F9\t0xB35B\n0xB4FA\t0xB35C\n0xB4FB\t0xB35E\n0xB4FC\t0xB35F\n0xB4FD\t0xB364\n0xB4FE\t0xB365\n0xB5A1\t0xB367\n0xB5A2\t0xB369\n0xB5A3\t0xB36B\n0xB5A4\t0xB36E\n0xB5A5\t0xB370\n0xB5A6\t0xB371\n0xB5A7\t0xB374\n0xB5A8\t0xB378\n0xB5A9\t0xB380\n0xB5AA\t0xB381\n0xB5AB\t0xB383\n0xB5AC\t0xB384\n0xB5AD\t0xB385\n0xB5AE\t0xB38C\n0xB5AF\t0xB390\n0xB5B0\t0xB394\n0xB5B1\t0xB3A0\n0xB5B2\t0xB3A1\n0xB5B3\t0xB3A8\n0xB5B4\t0xB3AC\n0xB5B5\t0xB3C4\n0xB5B6\t0xB3C5\n0xB5B7\t0xB3C8\n0xB5B8\t0xB3CB\n0xB5B9\t0xB3CC\n0xB5BA\t0xB3CE\n0xB5BB\t0xB3D0\n0xB5BC\t0xB3D4\n0xB5BD\t0xB3D5\n0xB5BE\t0xB3D7\n0xB5BF\t0xB3D9\n0xB5C0\t0xB3DB\n0xB5C1\t0xB3DD\n0xB5C2\t0xB3E0\n0xB5C3\t0xB3E4\n0xB5C4\t0xB3E8\n0xB5C5\t0xB3FC\n0xB5C6\t0xB410\n0xB5C7\t0xB418\n0xB5C8\t0xB41C\n0xB5C9\t0xB420\n0xB5CA\t0xB428\n0xB5CB\t0xB429\n0xB5CC\t0xB42B\n0xB5CD\t0xB434\n0xB5CE\t0xB450\n0xB5CF\t0xB451\n0xB5D0\t0xB454\n0xB5D1\t0xB458\n0xB5D2\t0xB460\n0xB5D3\t0xB461\n0xB5D4\t0xB463\n0xB5D5\t0xB465\n0xB5D6\t0xB46C\n0xB5D7\t0xB480\n0xB5D8\t0xB488\n0xB5D9\t0xB49D\n0xB5DA\t0xB4A4\n0xB5DB\t0xB4A8\n0xB5DC\t0xB4AC\n0xB5DD\t0xB4B5\n0xB5DE\t0xB4B7\n0xB5DF\t0xB4B9\n0xB5E0\t0xB4C0\n0xB5E1\t0xB4C4\n0xB5E2\t0xB4C8\n0xB5E3\t0xB4D0\n0xB5E4\t0xB4D5\n0xB5E5\t0xB4DC\n0xB5E6\t0xB4DD\n0xB5E7\t0xB4E0\n0xB5E8\t0xB4E3\n0xB5E9\t0xB4E4\n0xB5EA\t0xB4E6\n0xB5EB\t0xB4EC\n0xB5EC\t0xB4ED\n0xB5ED\t0xB4EF\n0xB5EE\t0xB4F1\n0xB5EF\t0xB4F8\n0xB5F0\t0xB514\n0xB5F1\t0xB515\n0xB5F2\t0xB518\n0xB5F3\t0xB51B\n0xB5F4\t0xB51C\n0xB5F5\t0xB524\n0xB5F6\t0xB525\n0xB5F7\t0xB527\n0xB5F8\t0xB528\n0xB5F9\t0xB529\n0xB5FA\t0xB52A\n0xB5FB\t0xB530\n0xB5FC\t0xB531\n0xB5FD\t0xB534\n0xB5FE\t0xB538\n0xB6A1\t0xB540\n0xB6A2\t0xB541\n0xB6A3\t0xB543\n0xB6A4\t0xB544\n0xB6A5\t0xB545\n0xB6A6\t0xB54B\n0xB6A7\t0xB54C\n0xB6A8\t0xB54D\n0xB6A9\t0xB550\n0xB6AA\t0xB554\n0xB6AB\t0xB55C\n0xB6AC\t0xB55D\n0xB6AD\t0xB55F\n0xB6AE\t0xB560\n0xB6AF\t0xB561\n0xB6B0\t0xB5A0\n0xB6B1\t0xB5A1\n0xB6B2\t0xB5A4\n0xB6B3\t0xB5A8\n0xB6B4\t0xB5AA\n0xB6B5\t0xB5AB\n0xB6B6\t0xB5B0\n0xB6B7\t0xB5B1\n0xB6B8\t0xB5B3\n0xB6B9\t0xB5B4\n0xB6BA\t0xB5B5\n0xB6BB\t0xB5BB\n0xB6BC\t0xB5BC\n0xB6BD\t0xB5BD\n0xB6BE\t0xB5C0\n0xB6BF\t0xB5C4\n0xB6C0\t0xB5CC\n0xB6C1\t0xB5CD\n0xB6C2\t0xB5CF\n0xB6C3\t0xB5D0\n0xB6C4\t0xB5D1\n0xB6C5\t0xB5D8\n0xB6C6\t0xB5EC\n0xB6C7\t0xB610\n0xB6C8\t0xB611\n0xB6C9\t0xB614\n0xB6CA\t0xB618\n0xB6CB\t0xB625\n0xB6CC\t0xB62C\n0xB6CD\t0xB634\n0xB6CE\t0xB648\n0xB6CF\t0xB664\n0xB6D0\t0xB668\n0xB6D1\t0xB69C\n0xB6D2\t0xB69D\n0xB6D3\t0xB6A0\n0xB6D4\t0xB6A4\n0xB6D5\t0xB6AB\n0xB6D6\t0xB6AC\n0xB6D7\t0xB6B1\n0xB6D8\t0xB6D4\n0xB6D9\t0xB6F0\n0xB6DA\t0xB6F4\n0xB6DB\t0xB6F8\n0xB6DC\t0xB700\n0xB6DD\t0xB701\n0xB6DE\t0xB705\n0xB6DF\t0xB728\n0xB6E0\t0xB729\n0xB6E1\t0xB72C\n0xB6E2\t0xB72F\n0xB6E3\t0xB730\n0xB6E4\t0xB738\n0xB6E5\t0xB739\n0xB6E6\t0xB73B\n0xB6E7\t0xB744\n0xB6E8\t0xB748\n0xB6E9\t0xB74C\n0xB6EA\t0xB754\n0xB6EB\t0xB755\n0xB6EC\t0xB760\n0xB6ED\t0xB764\n0xB6EE\t0xB768\n0xB6EF\t0xB770\n0xB6F0\t0xB771\n0xB6F1\t0xB773\n0xB6F2\t0xB775\n0xB6F3\t0xB77C\n0xB6F4\t0xB77D\n0xB6F5\t0xB780\n0xB6F6\t0xB784\n0xB6F7\t0xB78C\n0xB6F8\t0xB78D\n0xB6F9\t0xB78F\n0xB6FA\t0xB790\n0xB6FB\t0xB791\n0xB6FC\t0xB792\n0xB6FD\t0xB796\n0xB6FE\t0xB797\n0xB7A1\t0xB798\n0xB7A2\t0xB799\n0xB7A3\t0xB79C\n0xB7A4\t0xB7A0\n0xB7A5\t0xB7A8\n0xB7A6\t0xB7A9\n0xB7A7\t0xB7AB\n0xB7A8\t0xB7AC\n0xB7A9\t0xB7AD\n0xB7AA\t0xB7B4\n0xB7AB\t0xB7B5\n0xB7AC\t0xB7B8\n0xB7AD\t0xB7C7\n0xB7AE\t0xB7C9\n0xB7AF\t0xB7EC\n0xB7B0\t0xB7ED\n0xB7B1\t0xB7F0\n0xB7B2\t0xB7F4\n0xB7B3\t0xB7FC\n0xB7B4\t0xB7FD\n0xB7B5\t0xB7FF\n0xB7B6\t0xB800\n0xB7B7\t0xB801\n0xB7B8\t0xB807\n0xB7B9\t0xB808\n0xB7BA\t0xB809\n0xB7BB\t0xB80C\n0xB7BC\t0xB810\n0xB7BD\t0xB818\n0xB7BE\t0xB819\n0xB7BF\t0xB81B\n0xB7C0\t0xB81D\n0xB7C1\t0xB824\n0xB7C2\t0xB825\n0xB7C3\t0xB828\n0xB7C4\t0xB82C\n0xB7C5\t0xB834\n0xB7C6\t0xB835\n0xB7C7\t0xB837\n0xB7C8\t0xB838\n0xB7C9\t0xB839\n0xB7CA\t0xB840\n0xB7CB\t0xB844\n0xB7CC\t0xB851\n0xB7CD\t0xB853\n0xB7CE\t0xB85C\n0xB7CF\t0xB85D\n0xB7D0\t0xB860\n0xB7D1\t0xB864\n0xB7D2\t0xB86C\n0xB7D3\t0xB86D\n0xB7D4\t0xB86F\n0xB7D5\t0xB871\n0xB7D6\t0xB878\n0xB7D7\t0xB87C\n0xB7D8\t0xB88D\n0xB7D9\t0xB8A8\n0xB7DA\t0xB8B0\n0xB7DB\t0xB8B4\n0xB7DC\t0xB8B8\n0xB7DD\t0xB8C0\n0xB7DE\t0xB8C1\n0xB7DF\t0xB8C3\n0xB7E0\t0xB8C5\n0xB7E1\t0xB8CC\n0xB7E2\t0xB8D0\n0xB7E3\t0xB8D4\n0xB7E4\t0xB8DD\n0xB7E5\t0xB8DF\n0xB7E6\t0xB8E1\n0xB7E7\t0xB8E8\n0xB7E8\t0xB8E9\n0xB7E9\t0xB8EC\n0xB7EA\t0xB8F0\n0xB7EB\t0xB8F8\n0xB7EC\t0xB8F9\n0xB7ED\t0xB8FB\n0xB7EE\t0xB8FD\n0xB7EF\t0xB904\n0xB7F0\t0xB918\n0xB7F1\t0xB920\n0xB7F2\t0xB93C\n0xB7F3\t0xB93D\n0xB7F4\t0xB940\n0xB7F5\t0xB944\n0xB7F6\t0xB94C\n0xB7F7\t0xB94F\n0xB7F8\t0xB951\n0xB7F9\t0xB958\n0xB7FA\t0xB959\n0xB7FB\t0xB95C\n0xB7FC\t0xB960\n0xB7FD\t0xB968\n0xB7FE\t0xB969\n0xB8A1\t0xB96B\n0xB8A2\t0xB96D\n0xB8A3\t0xB974\n0xB8A4\t0xB975\n0xB8A5\t0xB978\n0xB8A6\t0xB97C\n0xB8A7\t0xB984\n0xB8A8\t0xB985\n0xB8A9\t0xB987\n0xB8AA\t0xB989\n0xB8AB\t0xB98A\n0xB8AC\t0xB98D\n0xB8AD\t0xB98E\n0xB8AE\t0xB9AC\n0xB8AF\t0xB9AD\n0xB8B0\t0xB9B0\n0xB8B1\t0xB9B4\n0xB8B2\t0xB9BC\n0xB8B3\t0xB9BD\n0xB8B4\t0xB9BF\n0xB8B5\t0xB9C1\n0xB8B6\t0xB9C8\n0xB8B7\t0xB9C9\n0xB8B8\t0xB9CC\n0xB8B9\t0xB9CE\n0xB8BA\t0xB9CF\n0xB8BB\t0xB9D0\n0xB8BC\t0xB9D1\n0xB8BD\t0xB9D2\n0xB8BE\t0xB9D8\n0xB8BF\t0xB9D9\n0xB8C0\t0xB9DB\n0xB8C1\t0xB9DD\n0xB8C2\t0xB9DE\n0xB8C3\t0xB9E1\n0xB8C4\t0xB9E3\n0xB8C5\t0xB9E4\n0xB8C6\t0xB9E5\n0xB8C7\t0xB9E8\n0xB8C8\t0xB9EC\n0xB8C9\t0xB9F4\n0xB8CA\t0xB9F5\n0xB8CB\t0xB9F7\n0xB8CC\t0xB9F8\n0xB8CD\t0xB9F9\n0xB8CE\t0xB9FA\n0xB8CF\t0xBA00\n0xB8D0\t0xBA01\n0xB8D1\t0xBA08\n0xB8D2\t0xBA15\n0xB8D3\t0xBA38\n0xB8D4\t0xBA39\n0xB8D5\t0xBA3C\n0xB8D6\t0xBA40\n0xB8D7\t0xBA42\n0xB8D8\t0xBA48\n0xB8D9\t0xBA49\n0xB8DA\t0xBA4B\n0xB8DB\t0xBA4D\n0xB8DC\t0xBA4E\n0xB8DD\t0xBA53\n0xB8DE\t0xBA54\n0xB8DF\t0xBA55\n0xB8E0\t0xBA58\n0xB8E1\t0xBA5C\n0xB8E2\t0xBA64\n0xB8E3\t0xBA65\n0xB8E4\t0xBA67\n0xB8E5\t0xBA68\n0xB8E6\t0xBA69\n0xB8E7\t0xBA70\n0xB8E8\t0xBA71\n0xB8E9\t0xBA74\n0xB8EA\t0xBA78\n0xB8EB\t0xBA83\n0xB8EC\t0xBA84\n0xB8ED\t0xBA85\n0xB8EE\t0xBA87\n0xB8EF\t0xBA8C\n0xB8F0\t0xBAA8\n0xB8F1\t0xBAA9\n0xB8F2\t0xBAAB\n0xB8F3\t0xBAAC\n0xB8F4\t0xBAB0\n0xB8F5\t0xBAB2\n0xB8F6\t0xBAB8\n0xB8F7\t0xBAB9\n0xB8F8\t0xBABB\n0xB8F9\t0xBABD\n0xB8FA\t0xBAC4\n0xB8FB\t0xBAC8\n0xB8FC\t0xBAD8\n0xB8FD\t0xBAD9\n0xB8FE\t0xBAFC\n0xB9A1\t0xBB00\n0xB9A2\t0xBB04\n0xB9A3\t0xBB0D\n0xB9A4\t0xBB0F\n0xB9A5\t0xBB11\n0xB9A6\t0xBB18\n0xB9A7\t0xBB1C\n0xB9A8\t0xBB20\n0xB9A9\t0xBB29\n0xB9AA\t0xBB2B\n0xB9AB\t0xBB34\n0xB9AC\t0xBB35\n0xB9AD\t0xBB36\n0xB9AE\t0xBB38\n0xB9AF\t0xBB3B\n0xB9B0\t0xBB3C\n0xB9B1\t0xBB3D\n0xB9B2\t0xBB3E\n0xB9B3\t0xBB44\n0xB9B4\t0xBB45\n0xB9B5\t0xBB47\n0xB9B6\t0xBB49\n0xB9B7\t0xBB4D\n0xB9B8\t0xBB4F\n0xB9B9\t0xBB50\n0xB9BA\t0xBB54\n0xB9BB\t0xBB58\n0xB9BC\t0xBB61\n0xB9BD\t0xBB63\n0xB9BE\t0xBB6C\n0xB9BF\t0xBB88\n0xB9C0\t0xBB8C\n0xB9C1\t0xBB90\n0xB9C2\t0xBBA4\n0xB9C3\t0xBBA8\n0xB9C4\t0xBBAC\n0xB9C5\t0xBBB4\n0xB9C6\t0xBBB7\n0xB9C7\t0xBBC0\n0xB9C8\t0xBBC4\n0xB9C9\t0xBBC8\n0xB9CA\t0xBBD0\n0xB9CB\t0xBBD3\n0xB9CC\t0xBBF8\n0xB9CD\t0xBBF9\n0xB9CE\t0xBBFC\n0xB9CF\t0xBBFF\n0xB9D0\t0xBC00\n0xB9D1\t0xBC02\n0xB9D2\t0xBC08\n0xB9D3\t0xBC09\n0xB9D4\t0xBC0B\n0xB9D5\t0xBC0C\n0xB9D6\t0xBC0D\n0xB9D7\t0xBC0F\n0xB9D8\t0xBC11\n0xB9D9\t0xBC14\n0xB9DA\t0xBC15\n0xB9DB\t0xBC16\n0xB9DC\t0xBC17\n0xB9DD\t0xBC18\n0xB9DE\t0xBC1B\n0xB9DF\t0xBC1C\n0xB9E0\t0xBC1D\n0xB9E1\t0xBC1E\n0xB9E2\t0xBC1F\n0xB9E3\t0xBC24\n0xB9E4\t0xBC25\n0xB9E5\t0xBC27\n0xB9E6\t0xBC29\n0xB9E7\t0xBC2D\n0xB9E8\t0xBC30\n0xB9E9\t0xBC31\n0xB9EA\t0xBC34\n0xB9EB\t0xBC38\n0xB9EC\t0xBC40\n0xB9ED\t0xBC41\n0xB9EE\t0xBC43\n0xB9EF\t0xBC44\n0xB9F0\t0xBC45\n0xB9F1\t0xBC49\n0xB9F2\t0xBC4C\n0xB9F3\t0xBC4D\n0xB9F4\t0xBC50\n0xB9F5\t0xBC5D\n0xB9F6\t0xBC84\n0xB9F7\t0xBC85\n0xB9F8\t0xBC88\n0xB9F9\t0xBC8B\n0xB9FA\t0xBC8C\n0xB9FB\t0xBC8E\n0xB9FC\t0xBC94\n0xB9FD\t0xBC95\n0xB9FE\t0xBC97\n0xBAA1\t0xBC99\n0xBAA2\t0xBC9A\n0xBAA3\t0xBCA0\n0xBAA4\t0xBCA1\n0xBAA5\t0xBCA4\n0xBAA6\t0xBCA7\n0xBAA7\t0xBCA8\n0xBAA8\t0xBCB0\n0xBAA9\t0xBCB1\n0xBAAA\t0xBCB3\n0xBAAB\t0xBCB4\n0xBAAC\t0xBCB5\n0xBAAD\t0xBCBC\n0xBAAE\t0xBCBD\n0xBAAF\t0xBCC0\n0xBAB0\t0xBCC4\n0xBAB1\t0xBCCD\n0xBAB2\t0xBCCF\n0xBAB3\t0xBCD0\n0xBAB4\t0xBCD1\n0xBAB5\t0xBCD5\n0xBAB6\t0xBCD8\n0xBAB7\t0xBCDC\n0xBAB8\t0xBCF4\n0xBAB9\t0xBCF5\n0xBABA\t0xBCF6\n0xBABB\t0xBCF8\n0xBABC\t0xBCFC\n0xBABD\t0xBD04\n0xBABE\t0xBD05\n0xBABF\t0xBD07\n0xBAC0\t0xBD09\n0xBAC1\t0xBD10\n0xBAC2\t0xBD14\n0xBAC3\t0xBD24\n0xBAC4\t0xBD2C\n0xBAC5\t0xBD40\n0xBAC6\t0xBD48\n0xBAC7\t0xBD49\n0xBAC8\t0xBD4C\n0xBAC9\t0xBD50\n0xBACA\t0xBD58\n0xBACB\t0xBD59\n0xBACC\t0xBD64\n0xBACD\t0xBD68\n0xBACE\t0xBD80\n0xBACF\t0xBD81\n0xBAD0\t0xBD84\n0xBAD1\t0xBD87\n0xBAD2\t0xBD88\n0xBAD3\t0xBD89\n0xBAD4\t0xBD8A\n0xBAD5\t0xBD90\n0xBAD6\t0xBD91\n0xBAD7\t0xBD93\n0xBAD8\t0xBD95\n0xBAD9\t0xBD99\n0xBADA\t0xBD9A\n0xBADB\t0xBD9C\n0xBADC\t0xBDA4\n0xBADD\t0xBDB0\n0xBADE\t0xBDB8\n0xBADF\t0xBDD4\n0xBAE0\t0xBDD5\n0xBAE1\t0xBDD8\n0xBAE2\t0xBDDC\n0xBAE3\t0xBDE9\n0xBAE4\t0xBDF0\n0xBAE5\t0xBDF4\n0xBAE6\t0xBDF8\n0xBAE7\t0xBE00\n0xBAE8\t0xBE03\n0xBAE9\t0xBE05\n0xBAEA\t0xBE0C\n0xBAEB\t0xBE0D\n0xBAEC\t0xBE10\n0xBAED\t0xBE14\n0xBAEE\t0xBE1C\n0xBAEF\t0xBE1D\n0xBAF0\t0xBE1F\n0xBAF1\t0xBE44\n0xBAF2\t0xBE45\n0xBAF3\t0xBE48\n0xBAF4\t0xBE4C\n0xBAF5\t0xBE4E\n0xBAF6\t0xBE54\n0xBAF7\t0xBE55\n0xBAF8\t0xBE57\n0xBAF9\t0xBE59\n0xBAFA\t0xBE5A\n0xBAFB\t0xBE5B\n0xBAFC\t0xBE60\n0xBAFD\t0xBE61\n0xBAFE\t0xBE64\n0xBBA1\t0xBE68\n0xBBA2\t0xBE6A\n0xBBA3\t0xBE70\n0xBBA4\t0xBE71\n0xBBA5\t0xBE73\n0xBBA6\t0xBE74\n0xBBA7\t0xBE75\n0xBBA8\t0xBE7B\n0xBBA9\t0xBE7C\n0xBBAA\t0xBE7D\n0xBBAB\t0xBE80\n0xBBAC\t0xBE84\n0xBBAD\t0xBE8C\n0xBBAE\t0xBE8D\n0xBBAF\t0xBE8F\n0xBBB0\t0xBE90\n0xBBB1\t0xBE91\n0xBBB2\t0xBE98\n0xBBB3\t0xBE99\n0xBBB4\t0xBEA8\n0xBBB5\t0xBED0\n0xBBB6\t0xBED1\n0xBBB7\t0xBED4\n0xBBB8\t0xBED7\n0xBBB9\t0xBED8\n0xBBBA\t0xBEE0\n0xBBBB\t0xBEE3\n0xBBBC\t0xBEE4\n0xBBBD\t0xBEE5\n0xBBBE\t0xBEEC\n0xBBBF\t0xBF01\n0xBBC0\t0xBF08\n0xBBC1\t0xBF09\n0xBBC2\t0xBF18\n0xBBC3\t0xBF19\n0xBBC4\t0xBF1B\n0xBBC5\t0xBF1C\n0xBBC6\t0xBF1D\n0xBBC7\t0xBF40\n0xBBC8\t0xBF41\n0xBBC9\t0xBF44\n0xBBCA\t0xBF48\n0xBBCB\t0xBF50\n0xBBCC\t0xBF51\n0xBBCD\t0xBF55\n0xBBCE\t0xBF94\n0xBBCF\t0xBFB0\n0xBBD0\t0xBFC5\n0xBBD1\t0xBFCC\n0xBBD2\t0xBFCD\n0xBBD3\t0xBFD0\n0xBBD4\t0xBFD4\n0xBBD5\t0xBFDC\n0xBBD6\t0xBFDF\n0xBBD7\t0xBFE1\n0xBBD8\t0xC03C\n0xBBD9\t0xC051\n0xBBDA\t0xC058\n0xBBDB\t0xC05C\n0xBBDC\t0xC060\n0xBBDD\t0xC068\n0xBBDE\t0xC069\n0xBBDF\t0xC090\n0xBBE0\t0xC091\n0xBBE1\t0xC094\n0xBBE2\t0xC098\n0xBBE3\t0xC0A0\n0xBBE4\t0xC0A1\n0xBBE5\t0xC0A3\n0xBBE6\t0xC0A5\n0xBBE7\t0xC0AC\n0xBBE8\t0xC0AD\n0xBBE9\t0xC0AF\n0xBBEA\t0xC0B0\n0xBBEB\t0xC0B3\n0xBBEC\t0xC0B4\n0xBBED\t0xC0B5\n0xBBEE\t0xC0B6\n0xBBEF\t0xC0BC\n0xBBF0\t0xC0BD\n0xBBF1\t0xC0BF\n0xBBF2\t0xC0C0\n0xBBF3\t0xC0C1\n0xBBF4\t0xC0C5\n0xBBF5\t0xC0C8\n0xBBF6\t0xC0C9\n0xBBF7\t0xC0CC\n0xBBF8\t0xC0D0\n0xBBF9\t0xC0D8\n0xBBFA\t0xC0D9\n0xBBFB\t0xC0DB\n0xBBFC\t0xC0DC\n0xBBFD\t0xC0DD\n0xBBFE\t0xC0E4\n0xBCA1\t0xC0E5\n0xBCA2\t0xC0E8\n0xBCA3\t0xC0EC\n0xBCA4\t0xC0F4\n0xBCA5\t0xC0F5\n0xBCA6\t0xC0F7\n0xBCA7\t0xC0F9\n0xBCA8\t0xC100\n0xBCA9\t0xC104\n0xBCAA\t0xC108\n0xBCAB\t0xC110\n0xBCAC\t0xC115\n0xBCAD\t0xC11C\n0xBCAE\t0xC11D\n0xBCAF\t0xC11E\n0xBCB0\t0xC11F\n0xBCB1\t0xC120\n0xBCB2\t0xC123\n0xBCB3\t0xC124\n0xBCB4\t0xC126\n0xBCB5\t0xC127\n0xBCB6\t0xC12C\n0xBCB7\t0xC12D\n0xBCB8\t0xC12F\n0xBCB9\t0xC130\n0xBCBA\t0xC131\n0xBCBB\t0xC136\n0xBCBC\t0xC138\n0xBCBD\t0xC139\n0xBCBE\t0xC13C\n0xBCBF\t0xC140\n0xBCC0\t0xC148\n0xBCC1\t0xC149\n0xBCC2\t0xC14B\n0xBCC3\t0xC14C\n0xBCC4\t0xC14D\n0xBCC5\t0xC154\n0xBCC6\t0xC155\n0xBCC7\t0xC158\n0xBCC8\t0xC15C\n0xBCC9\t0xC164\n0xBCCA\t0xC165\n0xBCCB\t0xC167\n0xBCCC\t0xC168\n0xBCCD\t0xC169\n0xBCCE\t0xC170\n0xBCCF\t0xC174\n0xBCD0\t0xC178\n0xBCD1\t0xC185\n0xBCD2\t0xC18C\n0xBCD3\t0xC18D\n0xBCD4\t0xC18E\n0xBCD5\t0xC190\n0xBCD6\t0xC194\n0xBCD7\t0xC196\n0xBCD8\t0xC19C\n0xBCD9\t0xC19D\n0xBCDA\t0xC19F\n0xBCDB\t0xC1A1\n0xBCDC\t0xC1A5\n0xBCDD\t0xC1A8\n0xBCDE\t0xC1A9\n0xBCDF\t0xC1AC\n0xBCE0\t0xC1B0\n0xBCE1\t0xC1BD\n0xBCE2\t0xC1C4\n0xBCE3\t0xC1C8\n0xBCE4\t0xC1CC\n0xBCE5\t0xC1D4\n0xBCE6\t0xC1D7\n0xBCE7\t0xC1D8\n0xBCE8\t0xC1E0\n0xBCE9\t0xC1E4\n0xBCEA\t0xC1E8\n0xBCEB\t0xC1F0\n0xBCEC\t0xC1F1\n0xBCED\t0xC1F3\n0xBCEE\t0xC1FC\n0xBCEF\t0xC1FD\n0xBCF0\t0xC200\n0xBCF1\t0xC204\n0xBCF2\t0xC20C\n0xBCF3\t0xC20D\n0xBCF4\t0xC20F\n0xBCF5\t0xC211\n0xBCF6\t0xC218\n0xBCF7\t0xC219\n0xBCF8\t0xC21C\n0xBCF9\t0xC21F\n0xBCFA\t0xC220\n0xBCFB\t0xC228\n0xBCFC\t0xC229\n0xBCFD\t0xC22B\n0xBCFE\t0xC22D\n0xBDA1\t0xC22F\n0xBDA2\t0xC231\n0xBDA3\t0xC232\n0xBDA4\t0xC234\n0xBDA5\t0xC248\n0xBDA6\t0xC250\n0xBDA7\t0xC251\n0xBDA8\t0xC254\n0xBDA9\t0xC258\n0xBDAA\t0xC260\n0xBDAB\t0xC265\n0xBDAC\t0xC26C\n0xBDAD\t0xC26D\n0xBDAE\t0xC270\n0xBDAF\t0xC274\n0xBDB0\t0xC27C\n0xBDB1\t0xC27D\n0xBDB2\t0xC27F\n0xBDB3\t0xC281\n0xBDB4\t0xC288\n0xBDB5\t0xC289\n0xBDB6\t0xC290\n0xBDB7\t0xC298\n0xBDB8\t0xC29B\n0xBDB9\t0xC29D\n0xBDBA\t0xC2A4\n0xBDBB\t0xC2A5\n0xBDBC\t0xC2A8\n0xBDBD\t0xC2AC\n0xBDBE\t0xC2AD\n0xBDBF\t0xC2B4\n0xBDC0\t0xC2B5\n0xBDC1\t0xC2B7\n0xBDC2\t0xC2B9\n0xBDC3\t0xC2DC\n0xBDC4\t0xC2DD\n0xBDC5\t0xC2E0\n0xBDC6\t0xC2E3\n0xBDC7\t0xC2E4\n0xBDC8\t0xC2EB\n0xBDC9\t0xC2EC\n0xBDCA\t0xC2ED\n0xBDCB\t0xC2EF\n0xBDCC\t0xC2F1\n0xBDCD\t0xC2F6\n0xBDCE\t0xC2F8\n0xBDCF\t0xC2F9\n0xBDD0\t0xC2FB\n0xBDD1\t0xC2FC\n0xBDD2\t0xC300\n0xBDD3\t0xC308\n0xBDD4\t0xC309\n0xBDD5\t0xC30C\n0xBDD6\t0xC30D\n0xBDD7\t0xC313\n0xBDD8\t0xC314\n0xBDD9\t0xC315\n0xBDDA\t0xC318\n0xBDDB\t0xC31C\n0xBDDC\t0xC324\n0xBDDD\t0xC325\n0xBDDE\t0xC328\n0xBDDF\t0xC329\n0xBDE0\t0xC345\n0xBDE1\t0xC368\n0xBDE2\t0xC369\n0xBDE3\t0xC36C\n0xBDE4\t0xC370\n0xBDE5\t0xC372\n0xBDE6\t0xC378\n0xBDE7\t0xC379\n0xBDE8\t0xC37C\n0xBDE9\t0xC37D\n0xBDEA\t0xC384\n0xBDEB\t0xC388\n0xBDEC\t0xC38C\n0xBDED\t0xC3C0\n0xBDEE\t0xC3D8\n0xBDEF\t0xC3D9\n0xBDF0\t0xC3DC\n0xBDF1\t0xC3DF\n0xBDF2\t0xC3E0\n0xBDF3\t0xC3E2\n0xBDF4\t0xC3E8\n0xBDF5\t0xC3E9\n0xBDF6\t0xC3ED\n0xBDF7\t0xC3F4\n0xBDF8\t0xC3F5\n0xBDF9\t0xC3F8\n0xBDFA\t0xC408\n0xBDFB\t0xC410\n0xBDFC\t0xC424\n0xBDFD\t0xC42C\n0xBDFE\t0xC430\n0xBEA1\t0xC434\n0xBEA2\t0xC43C\n0xBEA3\t0xC43D\n0xBEA4\t0xC448\n0xBEA5\t0xC464\n0xBEA6\t0xC465\n0xBEA7\t0xC468\n0xBEA8\t0xC46C\n0xBEA9\t0xC474\n0xBEAA\t0xC475\n0xBEAB\t0xC479\n0xBEAC\t0xC480\n0xBEAD\t0xC494\n0xBEAE\t0xC49C\n0xBEAF\t0xC4B8\n0xBEB0\t0xC4BC\n0xBEB1\t0xC4E9\n0xBEB2\t0xC4F0\n0xBEB3\t0xC4F1\n0xBEB4\t0xC4F4\n0xBEB5\t0xC4F8\n0xBEB6\t0xC4FA\n0xBEB7\t0xC4FF\n0xBEB8\t0xC500\n0xBEB9\t0xC501\n0xBEBA\t0xC50C\n0xBEBB\t0xC510\n0xBEBC\t0xC514\n0xBEBD\t0xC51C\n0xBEBE\t0xC528\n0xBEBF\t0xC529\n0xBEC0\t0xC52C\n0xBEC1\t0xC530\n0xBEC2\t0xC538\n0xBEC3\t0xC539\n0xBEC4\t0xC53B\n0xBEC5\t0xC53D\n0xBEC6\t0xC544\n0xBEC7\t0xC545\n0xBEC8\t0xC548\n0xBEC9\t0xC549\n0xBECA\t0xC54A\n0xBECB\t0xC54C\n0xBECC\t0xC54D\n0xBECD\t0xC54E\n0xBECE\t0xC553\n0xBECF\t0xC554\n0xBED0\t0xC555\n0xBED1\t0xC557\n0xBED2\t0xC558\n0xBED3\t0xC559\n0xBED4\t0xC55D\n0xBED5\t0xC55E\n0xBED6\t0xC560\n0xBED7\t0xC561\n0xBED8\t0xC564\n0xBED9\t0xC568\n0xBEDA\t0xC570\n0xBEDB\t0xC571\n0xBEDC\t0xC573\n0xBEDD\t0xC574\n0xBEDE\t0xC575\n0xBEDF\t0xC57C\n0xBEE0\t0xC57D\n0xBEE1\t0xC580\n0xBEE2\t0xC584\n0xBEE3\t0xC587\n0xBEE4\t0xC58C\n0xBEE5\t0xC58D\n0xBEE6\t0xC58F\n0xBEE7\t0xC591\n0xBEE8\t0xC595\n0xBEE9\t0xC597\n0xBEEA\t0xC598\n0xBEEB\t0xC59C\n0xBEEC\t0xC5A0\n0xBEED\t0xC5A9\n0xBEEE\t0xC5B4\n0xBEEF\t0xC5B5\n0xBEF0\t0xC5B8\n0xBEF1\t0xC5B9\n0xBEF2\t0xC5BB\n0xBEF3\t0xC5BC\n0xBEF4\t0xC5BD\n0xBEF5\t0xC5BE\n0xBEF6\t0xC5C4\n0xBEF7\t0xC5C5\n0xBEF8\t0xC5C6\n0xBEF9\t0xC5C7\n0xBEFA\t0xC5C8\n0xBEFB\t0xC5C9\n0xBEFC\t0xC5CA\n0xBEFD\t0xC5CC\n0xBEFE\t0xC5CE\n0xBFA1\t0xC5D0\n0xBFA2\t0xC5D1\n0xBFA3\t0xC5D4\n0xBFA4\t0xC5D8\n0xBFA5\t0xC5E0\n0xBFA6\t0xC5E1\n0xBFA7\t0xC5E3\n0xBFA8\t0xC5E5\n0xBFA9\t0xC5EC\n0xBFAA\t0xC5ED\n0xBFAB\t0xC5EE\n0xBFAC\t0xC5F0\n0xBFAD\t0xC5F4\n0xBFAE\t0xC5F6\n0xBFAF\t0xC5F7\n0xBFB0\t0xC5FC\n0xBFB1\t0xC5FD\n0xBFB2\t0xC5FE\n0xBFB3\t0xC5FF\n0xBFB4\t0xC600\n0xBFB5\t0xC601\n0xBFB6\t0xC605\n0xBFB7\t0xC606\n0xBFB8\t0xC607\n0xBFB9\t0xC608\n0xBFBA\t0xC60C\n0xBFBB\t0xC610\n0xBFBC\t0xC618\n0xBFBD\t0xC619\n0xBFBE\t0xC61B\n0xBFBF\t0xC61C\n0xBFC0\t0xC624\n0xBFC1\t0xC625\n0xBFC2\t0xC628\n0xBFC3\t0xC62C\n0xBFC4\t0xC62D\n0xBFC5\t0xC62E\n0xBFC6\t0xC630\n0xBFC7\t0xC633\n0xBFC8\t0xC634\n0xBFC9\t0xC635\n0xBFCA\t0xC637\n0xBFCB\t0xC639\n0xBFCC\t0xC63B\n0xBFCD\t0xC640\n0xBFCE\t0xC641\n0xBFCF\t0xC644\n0xBFD0\t0xC648\n0xBFD1\t0xC650\n0xBFD2\t0xC651\n0xBFD3\t0xC653\n0xBFD4\t0xC654\n0xBFD5\t0xC655\n0xBFD6\t0xC65C\n0xBFD7\t0xC65D\n0xBFD8\t0xC660\n0xBFD9\t0xC66C\n0xBFDA\t0xC66F\n0xBFDB\t0xC671\n0xBFDC\t0xC678\n0xBFDD\t0xC679\n0xBFDE\t0xC67C\n0xBFDF\t0xC680\n0xBFE0\t0xC688\n0xBFE1\t0xC689\n0xBFE2\t0xC68B\n0xBFE3\t0xC68D\n0xBFE4\t0xC694\n0xBFE5\t0xC695\n0xBFE6\t0xC698\n0xBFE7\t0xC69C\n0xBFE8\t0xC6A4\n0xBFE9\t0xC6A5\n0xBFEA\t0xC6A7\n0xBFEB\t0xC6A9\n0xBFEC\t0xC6B0\n0xBFED\t0xC6B1\n0xBFEE\t0xC6B4\n0xBFEF\t0xC6B8\n0xBFF0\t0xC6B9\n0xBFF1\t0xC6BA\n0xBFF2\t0xC6C0\n0xBFF3\t0xC6C1\n0xBFF4\t0xC6C3\n0xBFF5\t0xC6C5\n0xBFF6\t0xC6CC\n0xBFF7\t0xC6CD\n0xBFF8\t0xC6D0\n0xBFF9\t0xC6D4\n0xBFFA\t0xC6DC\n0xBFFB\t0xC6DD\n0xBFFC\t0xC6E0\n0xBFFD\t0xC6E1\n0xBFFE\t0xC6E8\n0xC0A1\t0xC6E9\n0xC0A2\t0xC6EC\n0xC0A3\t0xC6F0\n0xC0A4\t0xC6F8\n0xC0A5\t0xC6F9\n0xC0A6\t0xC6FD\n0xC0A7\t0xC704\n0xC0A8\t0xC705\n0xC0A9\t0xC708\n0xC0AA\t0xC70C\n0xC0AB\t0xC714\n0xC0AC\t0xC715\n0xC0AD\t0xC717\n0xC0AE\t0xC719\n0xC0AF\t0xC720\n0xC0B0\t0xC721\n0xC0B1\t0xC724\n0xC0B2\t0xC728\n0xC0B3\t0xC730\n0xC0B4\t0xC731\n0xC0B5\t0xC733\n0xC0B6\t0xC735\n0xC0B7\t0xC737\n0xC0B8\t0xC73C\n0xC0B9\t0xC73D\n0xC0BA\t0xC740\n0xC0BB\t0xC744\n0xC0BC\t0xC74A\n0xC0BD\t0xC74C\n0xC0BE\t0xC74D\n0xC0BF\t0xC74F\n0xC0C0\t0xC751\n0xC0C1\t0xC752\n0xC0C2\t0xC753\n0xC0C3\t0xC754\n0xC0C4\t0xC755\n0xC0C5\t0xC756\n0xC0C6\t0xC757\n0xC0C7\t0xC758\n0xC0C8\t0xC75C\n0xC0C9\t0xC760\n0xC0CA\t0xC768\n0xC0CB\t0xC76B\n0xC0CC\t0xC774\n0xC0CD\t0xC775\n0xC0CE\t0xC778\n0xC0CF\t0xC77C\n0xC0D0\t0xC77D\n0xC0D1\t0xC77E\n0xC0D2\t0xC783\n0xC0D3\t0xC784\n0xC0D4\t0xC785\n0xC0D5\t0xC787\n0xC0D6\t0xC788\n0xC0D7\t0xC789\n0xC0D8\t0xC78A\n0xC0D9\t0xC78E\n0xC0DA\t0xC790\n0xC0DB\t0xC791\n0xC0DC\t0xC794\n0xC0DD\t0xC796\n0xC0DE\t0xC797\n0xC0DF\t0xC798\n0xC0E0\t0xC79A\n0xC0E1\t0xC7A0\n0xC0E2\t0xC7A1\n0xC0E3\t0xC7A3\n0xC0E4\t0xC7A4\n0xC0E5\t0xC7A5\n0xC0E6\t0xC7A6\n0xC0E7\t0xC7AC\n0xC0E8\t0xC7AD\n0xC0E9\t0xC7B0\n0xC0EA\t0xC7B4\n0xC0EB\t0xC7BC\n0xC0EC\t0xC7BD\n0xC0ED\t0xC7BF\n0xC0EE\t0xC7C0\n0xC0EF\t0xC7C1\n0xC0F0\t0xC7C8\n0xC0F1\t0xC7C9\n0xC0F2\t0xC7CC\n0xC0F3\t0xC7CE\n0xC0F4\t0xC7D0\n0xC0F5\t0xC7D8\n0xC0F6\t0xC7DD\n0xC0F7\t0xC7E4\n0xC0F8\t0xC7E8\n0xC0F9\t0xC7EC\n0xC0FA\t0xC800\n0xC0FB\t0xC801\n0xC0FC\t0xC804\n0xC0FD\t0xC808\n0xC0FE\t0xC80A\n0xC1A1\t0xC810\n0xC1A2\t0xC811\n0xC1A3\t0xC813\n0xC1A4\t0xC815\n0xC1A5\t0xC816\n0xC1A6\t0xC81C\n0xC1A7\t0xC81D\n0xC1A8\t0xC820\n0xC1A9\t0xC824\n0xC1AA\t0xC82C\n0xC1AB\t0xC82D\n0xC1AC\t0xC82F\n0xC1AD\t0xC831\n0xC1AE\t0xC838\n0xC1AF\t0xC83C\n0xC1B0\t0xC840\n0xC1B1\t0xC848\n0xC1B2\t0xC849\n0xC1B3\t0xC84C\n0xC1B4\t0xC84D\n0xC1B5\t0xC854\n0xC1B6\t0xC870\n0xC1B7\t0xC871\n0xC1B8\t0xC874\n0xC1B9\t0xC878\n0xC1BA\t0xC87A\n0xC1BB\t0xC880\n0xC1BC\t0xC881\n0xC1BD\t0xC883\n0xC1BE\t0xC885\n0xC1BF\t0xC886\n0xC1C0\t0xC887\n0xC1C1\t0xC88B\n0xC1C2\t0xC88C\n0xC1C3\t0xC88D\n0xC1C4\t0xC894\n0xC1C5\t0xC89D\n0xC1C6\t0xC89F\n0xC1C7\t0xC8A1\n0xC1C8\t0xC8A8\n0xC1C9\t0xC8BC\n0xC1CA\t0xC8BD\n0xC1CB\t0xC8C4\n0xC1CC\t0xC8C8\n0xC1CD\t0xC8CC\n0xC1CE\t0xC8D4\n0xC1CF\t0xC8D5\n0xC1D0\t0xC8D7\n0xC1D1\t0xC8D9\n0xC1D2\t0xC8E0\n0xC1D3\t0xC8E1\n0xC1D4\t0xC8E4\n0xC1D5\t0xC8F5\n0xC1D6\t0xC8FC\n0xC1D7\t0xC8FD\n0xC1D8\t0xC900\n0xC1D9\t0xC904\n0xC1DA\t0xC905\n0xC1DB\t0xC906\n0xC1DC\t0xC90C\n0xC1DD\t0xC90D\n0xC1DE\t0xC90F\n0xC1DF\t0xC911\n0xC1E0\t0xC918\n0xC1E1\t0xC92C\n0xC1E2\t0xC934\n0xC1E3\t0xC950\n0xC1E4\t0xC951\n0xC1E5\t0xC954\n0xC1E6\t0xC958\n0xC1E7\t0xC960\n0xC1E8\t0xC961\n0xC1E9\t0xC963\n0xC1EA\t0xC96C\n0xC1EB\t0xC970\n0xC1EC\t0xC974\n0xC1ED\t0xC97C\n0xC1EE\t0xC988\n0xC1EF\t0xC989\n0xC1F0\t0xC98C\n0xC1F1\t0xC990\n0xC1F2\t0xC998\n0xC1F3\t0xC999\n0xC1F4\t0xC99B\n0xC1F5\t0xC99D\n0xC1F6\t0xC9C0\n0xC1F7\t0xC9C1\n0xC1F8\t0xC9C4\n0xC1F9\t0xC9C7\n0xC1FA\t0xC9C8\n0xC1FB\t0xC9CA\n0xC1FC\t0xC9D0\n0xC1FD\t0xC9D1\n0xC1FE\t0xC9D3\n0xC2A1\t0xC9D5\n0xC2A2\t0xC9D6\n0xC2A3\t0xC9D9\n0xC2A4\t0xC9DA\n0xC2A5\t0xC9DC\n0xC2A6\t0xC9DD\n0xC2A7\t0xC9E0\n0xC2A8\t0xC9E2\n0xC2A9\t0xC9E4\n0xC2AA\t0xC9E7\n0xC2AB\t0xC9EC\n0xC2AC\t0xC9ED\n0xC2AD\t0xC9EF\n0xC2AE\t0xC9F0\n0xC2AF\t0xC9F1\n0xC2B0\t0xC9F8\n0xC2B1\t0xC9F9\n0xC2B2\t0xC9FC\n0xC2B3\t0xCA00\n0xC2B4\t0xCA08\n0xC2B5\t0xCA09\n0xC2B6\t0xCA0B\n0xC2B7\t0xCA0C\n0xC2B8\t0xCA0D\n0xC2B9\t0xCA14\n0xC2BA\t0xCA18\n0xC2BB\t0xCA29\n0xC2BC\t0xCA4C\n0xC2BD\t0xCA4D\n0xC2BE\t0xCA50\n0xC2BF\t0xCA54\n0xC2C0\t0xCA5C\n0xC2C1\t0xCA5D\n0xC2C2\t0xCA5F\n0xC2C3\t0xCA60\n0xC2C4\t0xCA61\n0xC2C5\t0xCA68\n0xC2C6\t0xCA7D\n0xC2C7\t0xCA84\n0xC2C8\t0xCA98\n0xC2C9\t0xCABC\n0xC2CA\t0xCABD\n0xC2CB\t0xCAC0\n0xC2CC\t0xCAC4\n0xC2CD\t0xCACC\n0xC2CE\t0xCACD\n0xC2CF\t0xCACF\n0xC2D0\t0xCAD1\n0xC2D1\t0xCAD3\n0xC2D2\t0xCAD8\n0xC2D3\t0xCAD9\n0xC2D4\t0xCAE0\n0xC2D5\t0xCAEC\n0xC2D6\t0xCAF4\n0xC2D7\t0xCB08\n0xC2D8\t0xCB10\n0xC2D9\t0xCB14\n0xC2DA\t0xCB18\n0xC2DB\t0xCB20\n0xC2DC\t0xCB21\n0xC2DD\t0xCB41\n0xC2DE\t0xCB48\n0xC2DF\t0xCB49\n0xC2E0\t0xCB4C\n0xC2E1\t0xCB50\n0xC2E2\t0xCB58\n0xC2E3\t0xCB59\n0xC2E4\t0xCB5D\n0xC2E5\t0xCB64\n0xC2E6\t0xCB78\n0xC2E7\t0xCB79\n0xC2E8\t0xCB9C\n0xC2E9\t0xCBB8\n0xC2EA\t0xCBD4\n0xC2EB\t0xCBE4\n0xC2EC\t0xCBE7\n0xC2ED\t0xCBE9\n0xC2EE\t0xCC0C\n0xC2EF\t0xCC0D\n0xC2F0\t0xCC10\n0xC2F1\t0xCC14\n0xC2F2\t0xCC1C\n0xC2F3\t0xCC1D\n0xC2F4\t0xCC21\n0xC2F5\t0xCC22\n0xC2F6\t0xCC27\n0xC2F7\t0xCC28\n0xC2F8\t0xCC29\n0xC2F9\t0xCC2C\n0xC2FA\t0xCC2E\n0xC2FB\t0xCC30\n0xC2FC\t0xCC38\n0xC2FD\t0xCC39\n0xC2FE\t0xCC3B\n0xC3A1\t0xCC3C\n0xC3A2\t0xCC3D\n0xC3A3\t0xCC3E\n0xC3A4\t0xCC44\n0xC3A5\t0xCC45\n0xC3A6\t0xCC48\n0xC3A7\t0xCC4C\n0xC3A8\t0xCC54\n0xC3A9\t0xCC55\n0xC3AA\t0xCC57\n0xC3AB\t0xCC58\n0xC3AC\t0xCC59\n0xC3AD\t0xCC60\n0xC3AE\t0xCC64\n0xC3AF\t0xCC66\n0xC3B0\t0xCC68\n0xC3B1\t0xCC70\n0xC3B2\t0xCC75\n0xC3B3\t0xCC98\n0xC3B4\t0xCC99\n0xC3B5\t0xCC9C\n0xC3B6\t0xCCA0\n0xC3B7\t0xCCA8\n0xC3B8\t0xCCA9\n0xC3B9\t0xCCAB\n0xC3BA\t0xCCAC\n0xC3BB\t0xCCAD\n0xC3BC\t0xCCB4\n0xC3BD\t0xCCB5\n0xC3BE\t0xCCB8\n0xC3BF\t0xCCBC\n0xC3C0\t0xCCC4\n0xC3C1\t0xCCC5\n0xC3C2\t0xCCC7\n0xC3C3\t0xCCC9\n0xC3C4\t0xCCD0\n0xC3C5\t0xCCD4\n0xC3C6\t0xCCE4\n0xC3C7\t0xCCEC\n0xC3C8\t0xCCF0\n0xC3C9\t0xCD01\n0xC3CA\t0xCD08\n0xC3CB\t0xCD09\n0xC3CC\t0xCD0C\n0xC3CD\t0xCD10\n0xC3CE\t0xCD18\n0xC3CF\t0xCD19\n0xC3D0\t0xCD1B\n0xC3D1\t0xCD1D\n0xC3D2\t0xCD24\n0xC3D3\t0xCD28\n0xC3D4\t0xCD2C\n0xC3D5\t0xCD39\n0xC3D6\t0xCD5C\n0xC3D7\t0xCD60\n0xC3D8\t0xCD64\n0xC3D9\t0xCD6C\n0xC3DA\t0xCD6D\n0xC3DB\t0xCD6F\n0xC3DC\t0xCD71\n0xC3DD\t0xCD78\n0xC3DE\t0xCD88\n0xC3DF\t0xCD94\n0xC3E0\t0xCD95\n0xC3E1\t0xCD98\n0xC3E2\t0xCD9C\n0xC3E3\t0xCDA4\n0xC3E4\t0xCDA5\n0xC3E5\t0xCDA7\n0xC3E6\t0xCDA9\n0xC3E7\t0xCDB0\n0xC3E8\t0xCDC4\n0xC3E9\t0xCDCC\n0xC3EA\t0xCDD0\n0xC3EB\t0xCDE8\n0xC3EC\t0xCDEC\n0xC3ED\t0xCDF0\n0xC3EE\t0xCDF8\n0xC3EF\t0xCDF9\n0xC3F0\t0xCDFB\n0xC3F1\t0xCDFD\n0xC3F2\t0xCE04\n0xC3F3\t0xCE08\n0xC3F4\t0xCE0C\n0xC3F5\t0xCE14\n0xC3F6\t0xCE19\n0xC3F7\t0xCE20\n0xC3F8\t0xCE21\n0xC3F9\t0xCE24\n0xC3FA\t0xCE28\n0xC3FB\t0xCE30\n0xC3FC\t0xCE31\n0xC3FD\t0xCE33\n0xC3FE\t0xCE35\n0xC4A1\t0xCE58\n0xC4A2\t0xCE59\n0xC4A3\t0xCE5C\n0xC4A4\t0xCE5F\n0xC4A5\t0xCE60\n0xC4A6\t0xCE61\n0xC4A7\t0xCE68\n0xC4A8\t0xCE69\n0xC4A9\t0xCE6B\n0xC4AA\t0xCE6D\n0xC4AB\t0xCE74\n0xC4AC\t0xCE75\n0xC4AD\t0xCE78\n0xC4AE\t0xCE7C\n0xC4AF\t0xCE84\n0xC4B0\t0xCE85\n0xC4B1\t0xCE87\n0xC4B2\t0xCE89\n0xC4B3\t0xCE90\n0xC4B4\t0xCE91\n0xC4B5\t0xCE94\n0xC4B6\t0xCE98\n0xC4B7\t0xCEA0\n0xC4B8\t0xCEA1\n0xC4B9\t0xCEA3\n0xC4BA\t0xCEA4\n0xC4BB\t0xCEA5\n0xC4BC\t0xCEAC\n0xC4BD\t0xCEAD\n0xC4BE\t0xCEC1\n0xC4BF\t0xCEE4\n0xC4C0\t0xCEE5\n0xC4C1\t0xCEE8\n0xC4C2\t0xCEEB\n0xC4C3\t0xCEEC\n0xC4C4\t0xCEF4\n0xC4C5\t0xCEF5\n0xC4C6\t0xCEF7\n0xC4C7\t0xCEF8\n0xC4C8\t0xCEF9\n0xC4C9\t0xCF00\n0xC4CA\t0xCF01\n0xC4CB\t0xCF04\n0xC4CC\t0xCF08\n0xC4CD\t0xCF10\n0xC4CE\t0xCF11\n0xC4CF\t0xCF13\n0xC4D0\t0xCF15\n0xC4D1\t0xCF1C\n0xC4D2\t0xCF20\n0xC4D3\t0xCF24\n0xC4D4\t0xCF2C\n0xC4D5\t0xCF2D\n0xC4D6\t0xCF2F\n0xC4D7\t0xCF30\n0xC4D8\t0xCF31\n0xC4D9\t0xCF38\n0xC4DA\t0xCF54\n0xC4DB\t0xCF55\n0xC4DC\t0xCF58\n0xC4DD\t0xCF5C\n0xC4DE\t0xCF64\n0xC4DF\t0xCF65\n0xC4E0\t0xCF67\n0xC4E1\t0xCF69\n0xC4E2\t0xCF70\n0xC4E3\t0xCF71\n0xC4E4\t0xCF74\n0xC4E5\t0xCF78\n0xC4E6\t0xCF80\n0xC4E7\t0xCF85\n0xC4E8\t0xCF8C\n0xC4E9\t0xCFA1\n0xC4EA\t0xCFA8\n0xC4EB\t0xCFB0\n0xC4EC\t0xCFC4\n0xC4ED\t0xCFE0\n0xC4EE\t0xCFE1\n0xC4EF\t0xCFE4\n0xC4F0\t0xCFE8\n0xC4F1\t0xCFF0\n0xC4F2\t0xCFF1\n0xC4F3\t0xCFF3\n0xC4F4\t0xCFF5\n0xC4F5\t0xCFFC\n0xC4F6\t0xD000\n0xC4F7\t0xD004\n0xC4F8\t0xD011\n0xC4F9\t0xD018\n0xC4FA\t0xD02D\n0xC4FB\t0xD034\n0xC4FC\t0xD035\n0xC4FD\t0xD038\n0xC4FE\t0xD03C\n0xC5A1\t0xD044\n0xC5A2\t0xD045\n0xC5A3\t0xD047\n0xC5A4\t0xD049\n0xC5A5\t0xD050\n0xC5A6\t0xD054\n0xC5A7\t0xD058\n0xC5A8\t0xD060\n0xC5A9\t0xD06C\n0xC5AA\t0xD06D\n0xC5AB\t0xD070\n0xC5AC\t0xD074\n0xC5AD\t0xD07C\n0xC5AE\t0xD07D\n0xC5AF\t0xD081\n0xC5B0\t0xD0A4\n0xC5B1\t0xD0A5\n0xC5B2\t0xD0A8\n0xC5B3\t0xD0AC\n0xC5B4\t0xD0B4\n0xC5B5\t0xD0B5\n0xC5B6\t0xD0B7\n0xC5B7\t0xD0B9\n0xC5B8\t0xD0C0\n0xC5B9\t0xD0C1\n0xC5BA\t0xD0C4\n0xC5BB\t0xD0C8\n0xC5BC\t0xD0C9\n0xC5BD\t0xD0D0\n0xC5BE\t0xD0D1\n0xC5BF\t0xD0D3\n0xC5C0\t0xD0D4\n0xC5C1\t0xD0D5\n0xC5C2\t0xD0DC\n0xC5C3\t0xD0DD\n0xC5C4\t0xD0E0\n0xC5C5\t0xD0E4\n0xC5C6\t0xD0EC\n0xC5C7\t0xD0ED\n0xC5C8\t0xD0EF\n0xC5C9\t0xD0F0\n0xC5CA\t0xD0F1\n0xC5CB\t0xD0F8\n0xC5CC\t0xD10D\n0xC5CD\t0xD130\n0xC5CE\t0xD131\n0xC5CF\t0xD134\n0xC5D0\t0xD138\n0xC5D1\t0xD13A\n0xC5D2\t0xD140\n0xC5D3\t0xD141\n0xC5D4\t0xD143\n0xC5D5\t0xD144\n0xC5D6\t0xD145\n0xC5D7\t0xD14C\n0xC5D8\t0xD14D\n0xC5D9\t0xD150\n0xC5DA\t0xD154\n0xC5DB\t0xD15C\n0xC5DC\t0xD15D\n0xC5DD\t0xD15F\n0xC5DE\t0xD161\n0xC5DF\t0xD168\n0xC5E0\t0xD16C\n0xC5E1\t0xD17C\n0xC5E2\t0xD184\n0xC5E3\t0xD188\n0xC5E4\t0xD1A0\n0xC5E5\t0xD1A1\n0xC5E6\t0xD1A4\n0xC5E7\t0xD1A8\n0xC5E8\t0xD1B0\n0xC5E9\t0xD1B1\n0xC5EA\t0xD1B3\n0xC5EB\t0xD1B5\n0xC5EC\t0xD1BA\n0xC5ED\t0xD1BC\n0xC5EE\t0xD1C0\n0xC5EF\t0xD1D8\n0xC5F0\t0xD1F4\n0xC5F1\t0xD1F8\n0xC5F2\t0xD207\n0xC5F3\t0xD209\n0xC5F4\t0xD210\n0xC5F5\t0xD22C\n0xC5F6\t0xD22D\n0xC5F7\t0xD230\n0xC5F8\t0xD234\n0xC5F9\t0xD23C\n0xC5FA\t0xD23D\n0xC5FB\t0xD23F\n0xC5FC\t0xD241\n0xC5FD\t0xD248\n0xC5FE\t0xD25C\n0xC6A1\t0xD264\n0xC6A2\t0xD280\n0xC6A3\t0xD281\n0xC6A4\t0xD284\n0xC6A5\t0xD288\n0xC6A6\t0xD290\n0xC6A7\t0xD291\n0xC6A8\t0xD295\n0xC6A9\t0xD29C\n0xC6AA\t0xD2A0\n0xC6AB\t0xD2A4\n0xC6AC\t0xD2AC\n0xC6AD\t0xD2B1\n0xC6AE\t0xD2B8\n0xC6AF\t0xD2B9\n0xC6B0\t0xD2BC\n0xC6B1\t0xD2BF\n0xC6B2\t0xD2C0\n0xC6B3\t0xD2C2\n0xC6B4\t0xD2C8\n0xC6B5\t0xD2C9\n0xC6B6\t0xD2CB\n0xC6B7\t0xD2D4\n0xC6B8\t0xD2D8\n0xC6B9\t0xD2DC\n0xC6BA\t0xD2E4\n0xC6BB\t0xD2E5\n0xC6BC\t0xD2F0\n0xC6BD\t0xD2F1\n0xC6BE\t0xD2F4\n0xC6BF\t0xD2F8\n0xC6C0\t0xD300\n0xC6C1\t0xD301\n0xC6C2\t0xD303\n0xC6C3\t0xD305\n0xC6C4\t0xD30C\n0xC6C5\t0xD30D\n0xC6C6\t0xD30E\n0xC6C7\t0xD310\n0xC6C8\t0xD314\n0xC6C9\t0xD316\n0xC6CA\t0xD31C\n0xC6CB\t0xD31D\n0xC6CC\t0xD31F\n0xC6CD\t0xD320\n0xC6CE\t0xD321\n0xC6CF\t0xD325\n0xC6D0\t0xD328\n0xC6D1\t0xD329\n0xC6D2\t0xD32C\n0xC6D3\t0xD330\n0xC6D4\t0xD338\n0xC6D5\t0xD339\n0xC6D6\t0xD33B\n0xC6D7\t0xD33C\n0xC6D8\t0xD33D\n0xC6D9\t0xD344\n0xC6DA\t0xD345\n0xC6DB\t0xD37C\n0xC6DC\t0xD37D\n0xC6DD\t0xD380\n0xC6DE\t0xD384\n0xC6DF\t0xD38C\n0xC6E0\t0xD38D\n0xC6E1\t0xD38F\n0xC6E2\t0xD390\n0xC6E3\t0xD391\n0xC6E4\t0xD398\n0xC6E5\t0xD399\n0xC6E6\t0xD39C\n0xC6E7\t0xD3A0\n0xC6E8\t0xD3A8\n0xC6E9\t0xD3A9\n0xC6EA\t0xD3AB\n0xC6EB\t0xD3AD\n0xC6EC\t0xD3B4\n0xC6ED\t0xD3B8\n0xC6EE\t0xD3BC\n0xC6EF\t0xD3C4\n0xC6F0\t0xD3C5\n0xC6F1\t0xD3C8\n0xC6F2\t0xD3C9\n0xC6F3\t0xD3D0\n0xC6F4\t0xD3D8\n0xC6F5\t0xD3E1\n0xC6F6\t0xD3E3\n0xC6F7\t0xD3EC\n0xC6F8\t0xD3ED\n0xC6F9\t0xD3F0\n0xC6FA\t0xD3F4\n0xC6FB\t0xD3FC\n0xC6FC\t0xD3FD\n0xC6FD\t0xD3FF\n0xC6FE\t0xD401\n0xC7A1\t0xD408\n0xC7A2\t0xD41D\n0xC7A3\t0xD440\n0xC7A4\t0xD444\n0xC7A5\t0xD45C\n0xC7A6\t0xD460\n0xC7A7\t0xD464\n0xC7A8\t0xD46D\n0xC7A9\t0xD46F\n0xC7AA\t0xD478\n0xC7AB\t0xD479\n0xC7AC\t0xD47C\n0xC7AD\t0xD47F\n0xC7AE\t0xD480\n0xC7AF\t0xD482\n0xC7B0\t0xD488\n0xC7B1\t0xD489\n0xC7B2\t0xD48B\n0xC7B3\t0xD48D\n0xC7B4\t0xD494\n0xC7B5\t0xD4A9\n0xC7B6\t0xD4CC\n0xC7B7\t0xD4D0\n0xC7B8\t0xD4D4\n0xC7B9\t0xD4DC\n0xC7BA\t0xD4DF\n0xC7BB\t0xD4E8\n0xC7BC\t0xD4EC\n0xC7BD\t0xD4F0\n0xC7BE\t0xD4F8\n0xC7BF\t0xD4FB\n0xC7C0\t0xD4FD\n0xC7C1\t0xD504\n0xC7C2\t0xD508\n0xC7C3\t0xD50C\n0xC7C4\t0xD514\n0xC7C5\t0xD515\n0xC7C6\t0xD517\n0xC7C7\t0xD53C\n0xC7C8\t0xD53D\n0xC7C9\t0xD540\n0xC7CA\t0xD544\n0xC7CB\t0xD54C\n0xC7CC\t0xD54D\n0xC7CD\t0xD54F\n0xC7CE\t0xD551\n0xC7CF\t0xD558\n0xC7D0\t0xD559\n0xC7D1\t0xD55C\n0xC7D2\t0xD560\n0xC7D3\t0xD565\n0xC7D4\t0xD568\n0xC7D5\t0xD569\n0xC7D6\t0xD56B\n0xC7D7\t0xD56D\n0xC7D8\t0xD574\n0xC7D9\t0xD575\n0xC7DA\t0xD578\n0xC7DB\t0xD57C\n0xC7DC\t0xD584\n0xC7DD\t0xD585\n0xC7DE\t0xD587\n0xC7DF\t0xD588\n0xC7E0\t0xD589\n0xC7E1\t0xD590\n0xC7E2\t0xD5A5\n0xC7E3\t0xD5C8\n0xC7E4\t0xD5C9\n0xC7E5\t0xD5CC\n0xC7E6\t0xD5D0\n0xC7E7\t0xD5D2\n0xC7E8\t0xD5D8\n0xC7E9\t0xD5D9\n0xC7EA\t0xD5DB\n0xC7EB\t0xD5DD\n0xC7EC\t0xD5E4\n0xC7ED\t0xD5E5\n0xC7EE\t0xD5E8\n0xC7EF\t0xD5EC\n0xC7F0\t0xD5F4\n0xC7F1\t0xD5F5\n0xC7F2\t0xD5F7\n0xC7F3\t0xD5F9\n0xC7F4\t0xD600\n0xC7F5\t0xD601\n0xC7F6\t0xD604\n0xC7F7\t0xD608\n0xC7F8\t0xD610\n0xC7F9\t0xD611\n0xC7FA\t0xD613\n0xC7FB\t0xD614\n0xC7FC\t0xD615\n0xC7FD\t0xD61C\n0xC7FE\t0xD620\n0xC8A1\t0xD624\n0xC8A2\t0xD62D\n0xC8A3\t0xD638\n0xC8A4\t0xD639\n0xC8A5\t0xD63C\n0xC8A6\t0xD640\n0xC8A7\t0xD645\n0xC8A8\t0xD648\n0xC8A9\t0xD649\n0xC8AA\t0xD64B\n0xC8AB\t0xD64D\n0xC8AC\t0xD651\n0xC8AD\t0xD654\n0xC8AE\t0xD655\n0xC8AF\t0xD658\n0xC8B0\t0xD65C\n0xC8B1\t0xD667\n0xC8B2\t0xD669\n0xC8B3\t0xD670\n0xC8B4\t0xD671\n0xC8B5\t0xD674\n0xC8B6\t0xD683\n0xC8B7\t0xD685\n0xC8B8\t0xD68C\n0xC8B9\t0xD68D\n0xC8BA\t0xD690\n0xC8BB\t0xD694\n0xC8BC\t0xD69D\n0xC8BD\t0xD69F\n0xC8BE\t0xD6A1\n0xC8BF\t0xD6A8\n0xC8C0\t0xD6AC\n0xC8C1\t0xD6B0\n0xC8C2\t0xD6B9\n0xC8C3\t0xD6BB\n0xC8C4\t0xD6C4\n0xC8C5\t0xD6C5\n0xC8C6\t0xD6C8\n0xC8C7\t0xD6CC\n0xC8C8\t0xD6D1\n0xC8C9\t0xD6D4\n0xC8CA\t0xD6D7\n0xC8CB\t0xD6D9\n0xC8CC\t0xD6E0\n0xC8CD\t0xD6E4\n0xC8CE\t0xD6E8\n0xC8CF\t0xD6F0\n0xC8D0\t0xD6F5\n0xC8D1\t0xD6FC\n0xC8D2\t0xD6FD\n0xC8D3\t0xD700\n0xC8D4\t0xD704\n0xC8D5\t0xD711\n0xC8D6\t0xD718\n0xC8D7\t0xD719\n0xC8D8\t0xD71C\n0xC8D9\t0xD720\n0xC8DA\t0xD728\n0xC8DB\t0xD729\n0xC8DC\t0xD72B\n0xC8DD\t0xD72D\n0xC8DE\t0xD734\n0xC8DF\t0xD735\n0xC8E0\t0xD738\n0xC8E1\t0xD73C\n0xC8E2\t0xD744\n0xC8E3\t0xD747\n0xC8E4\t0xD749\n0xC8E5\t0xD750\n0xC8E6\t0xD751\n0xC8E7\t0xD754\n0xC8E8\t0xD756\n0xC8E9\t0xD757\n0xC8EA\t0xD758\n0xC8EB\t0xD759\n0xC8EC\t0xD760\n0xC8ED\t0xD761\n0xC8EE\t0xD763\n0xC8EF\t0xD765\n0xC8F0\t0xD769\n0xC8F1\t0xD76C\n0xC8F2\t0xD770\n0xC8F3\t0xD774\n0xC8F4\t0xD77C\n0xC8F5\t0xD77D\n0xC8F6\t0xD781\n0xC8F7\t0xD788\n0xC8F8\t0xD789\n0xC8F9\t0xD78C\n0xC8FA\t0xD790\n0xC8FB\t0xD798\n0xC8FC\t0xD799\n0xC8FD\t0xD79B\n0xC8FE\t0xD79D\n0xCAA1\t0x4F3D\n0xCAA2\t0x4F73\n0xCAA3\t0x5047\n0xCAA4\t0x50F9\n0xCAA5\t0x52A0\n0xCAA6\t0x53EF\n0xCAA7\t0x5475\n0xCAA8\t0x54E5\n0xCAA9\t0x5609\n0xCAAA\t0x5AC1\n0xCAAB\t0x5BB6\n0xCAAC\t0x6687\n0xCAAD\t0x67B6\n0xCAAE\t0x67B7\n0xCAAF\t0x67EF\n0xCAB0\t0x6B4C\n0xCAB1\t0x73C2\n0xCAB2\t0x75C2\n0xCAB3\t0x7A3C\n0xCAB4\t0x82DB\n0xCAB5\t0x8304\n0xCAB6\t0x8857\n0xCAB7\t0x8888\n0xCAB8\t0x8A36\n0xCAB9\t0x8CC8\n0xCABA\t0x8DCF\n0xCABB\t0x8EFB\n0xCABC\t0x8FE6\n0xCABD\t0x99D5\n0xCABE\t0x523B\n0xCABF\t0x5374\n0xCAC0\t0x5404\n0xCAC1\t0x606A\n0xCAC2\t0x6164\n0xCAC3\t0x6BBC\n0xCAC4\t0x73CF\n0xCAC5\t0x811A\n0xCAC6\t0x89BA\n0xCAC7\t0x89D2\n0xCAC8\t0x95A3\n0xCAC9\t0x4F83\n0xCACA\t0x520A\n0xCACB\t0x58BE\n0xCACC\t0x5978\n0xCACD\t0x59E6\n0xCACE\t0x5E72\n0xCACF\t0x5E79\n0xCAD0\t0x61C7\n0xCAD1\t0x63C0\n0xCAD2\t0x6746\n0xCAD3\t0x67EC\n0xCAD4\t0x687F\n0xCAD5\t0x6F97\n0xCAD6\t0x764E\n0xCAD7\t0x770B\n0xCAD8\t0x78F5\n0xCAD9\t0x7A08\n0xCADA\t0x7AFF\n0xCADB\t0x7C21\n0xCADC\t0x809D\n0xCADD\t0x826E\n0xCADE\t0x8271\n0xCADF\t0x8AEB\n0xCAE0\t0x9593\n0xCAE1\t0x4E6B\n0xCAE2\t0x559D\n0xCAE3\t0x66F7\n0xCAE4\t0x6E34\n0xCAE5\t0x78A3\n0xCAE6\t0x7AED\n0xCAE7\t0x845B\n0xCAE8\t0x8910\n0xCAE9\t0x874E\n0xCAEA\t0x97A8\n0xCAEB\t0x52D8\n0xCAEC\t0x574E\n0xCAED\t0x582A\n0xCAEE\t0x5D4C\n0xCAEF\t0x611F\n0xCAF0\t0x61BE\n0xCAF1\t0x6221\n0xCAF2\t0x6562\n0xCAF3\t0x67D1\n0xCAF4\t0x6A44\n0xCAF5\t0x6E1B\n0xCAF6\t0x7518\n0xCAF7\t0x75B3\n0xCAF8\t0x76E3\n0xCAF9\t0x77B0\n0xCAFA\t0x7D3A\n0xCAFB\t0x90AF\n0xCAFC\t0x9451\n0xCAFD\t0x9452\n0xCAFE\t0x9F95\n0xCBA1\t0x5323\n0xCBA2\t0x5CAC\n0xCBA3\t0x7532\n0xCBA4\t0x80DB\n0xCBA5\t0x9240\n0xCBA6\t0x9598\n0xCBA7\t0x525B\n0xCBA8\t0x5808\n0xCBA9\t0x59DC\n0xCBAA\t0x5CA1\n0xCBAB\t0x5D17\n0xCBAC\t0x5EB7\n0xCBAD\t0x5F3A\n0xCBAE\t0x5F4A\n0xCBAF\t0x6177\n0xCBB0\t0x6C5F\n0xCBB1\t0x757A\n0xCBB2\t0x7586\n0xCBB3\t0x7CE0\n0xCBB4\t0x7D73\n0xCBB5\t0x7DB1\n0xCBB6\t0x7F8C\n0xCBB7\t0x8154\n0xCBB8\t0x8221\n0xCBB9\t0x8591\n0xCBBA\t0x8941\n0xCBBB\t0x8B1B\n0xCBBC\t0x92FC\n0xCBBD\t0x964D\n0xCBBE\t0x9C47\n0xCBBF\t0x4ECB\n0xCBC0\t0x4EF7\n0xCBC1\t0x500B\n0xCBC2\t0x51F1\n0xCBC3\t0x584F\n0xCBC4\t0x6137\n0xCBC5\t0x613E\n0xCBC6\t0x6168\n0xCBC7\t0x6539\n0xCBC8\t0x69EA\n0xCBC9\t0x6F11\n0xCBCA\t0x75A5\n0xCBCB\t0x7686\n0xCBCC\t0x76D6\n0xCBCD\t0x7B87\n0xCBCE\t0x82A5\n0xCBCF\t0x84CB\n0xCBD0\t0xF900\n0xCBD1\t0x93A7\n0xCBD2\t0x958B\n0xCBD3\t0x5580\n0xCBD4\t0x5BA2\n0xCBD5\t0x5751\n0xCBD6\t0xF901\n0xCBD7\t0x7CB3\n0xCBD8\t0x7FB9\n0xCBD9\t0x91B5\n0xCBDA\t0x5028\n0xCBDB\t0x53BB\n0xCBDC\t0x5C45\n0xCBDD\t0x5DE8\n0xCBDE\t0x62D2\n0xCBDF\t0x636E\n0xCBE0\t0x64DA\n0xCBE1\t0x64E7\n0xCBE2\t0x6E20\n0xCBE3\t0x70AC\n0xCBE4\t0x795B\n0xCBE5\t0x8DDD\n0xCBE6\t0x8E1E\n0xCBE7\t0xF902\n0xCBE8\t0x907D\n0xCBE9\t0x9245\n0xCBEA\t0x92F8\n0xCBEB\t0x4E7E\n0xCBEC\t0x4EF6\n0xCBED\t0x5065\n0xCBEE\t0x5DFE\n0xCBEF\t0x5EFA\n0xCBF0\t0x6106\n0xCBF1\t0x6957\n0xCBF2\t0x8171\n0xCBF3\t0x8654\n0xCBF4\t0x8E47\n0xCBF5\t0x9375\n0xCBF6\t0x9A2B\n0xCBF7\t0x4E5E\n0xCBF8\t0x5091\n0xCBF9\t0x6770\n0xCBFA\t0x6840\n0xCBFB\t0x5109\n0xCBFC\t0x528D\n0xCBFD\t0x5292\n0xCBFE\t0x6AA2\n0xCCA1\t0x77BC\n0xCCA2\t0x9210\n0xCCA3\t0x9ED4\n0xCCA4\t0x52AB\n0xCCA5\t0x602F\n0xCCA6\t0x8FF2\n0xCCA7\t0x5048\n0xCCA8\t0x61A9\n0xCCA9\t0x63ED\n0xCCAA\t0x64CA\n0xCCAB\t0x683C\n0xCCAC\t0x6A84\n0xCCAD\t0x6FC0\n0xCCAE\t0x8188\n0xCCAF\t0x89A1\n0xCCB0\t0x9694\n0xCCB1\t0x5805\n0xCCB2\t0x727D\n0xCCB3\t0x72AC\n0xCCB4\t0x7504\n0xCCB5\t0x7D79\n0xCCB6\t0x7E6D\n0xCCB7\t0x80A9\n0xCCB8\t0x898B\n0xCCB9\t0x8B74\n0xCCBA\t0x9063\n0xCCBB\t0x9D51\n0xCCBC\t0x6289\n0xCCBD\t0x6C7A\n0xCCBE\t0x6F54\n0xCCBF\t0x7D50\n0xCCC0\t0x7F3A\n0xCCC1\t0x8A23\n0xCCC2\t0x517C\n0xCCC3\t0x614A\n0xCCC4\t0x7B9D\n0xCCC5\t0x8B19\n0xCCC6\t0x9257\n0xCCC7\t0x938C\n0xCCC8\t0x4EAC\n0xCCC9\t0x4FD3\n0xCCCA\t0x501E\n0xCCCB\t0x50BE\n0xCCCC\t0x5106\n0xCCCD\t0x52C1\n0xCCCE\t0x52CD\n0xCCCF\t0x537F\n0xCCD0\t0x5770\n0xCCD1\t0x5883\n0xCCD2\t0x5E9A\n0xCCD3\t0x5F91\n0xCCD4\t0x6176\n0xCCD5\t0x61AC\n0xCCD6\t0x64CE\n0xCCD7\t0x656C\n0xCCD8\t0x666F\n0xCCD9\t0x66BB\n0xCCDA\t0x66F4\n0xCCDB\t0x6897\n0xCCDC\t0x6D87\n0xCCDD\t0x7085\n0xCCDE\t0x70F1\n0xCCDF\t0x749F\n0xCCE0\t0x74A5\n0xCCE1\t0x74CA\n0xCCE2\t0x75D9\n0xCCE3\t0x786C\n0xCCE4\t0x78EC\n0xCCE5\t0x7ADF\n0xCCE6\t0x7AF6\n0xCCE7\t0x7D45\n0xCCE8\t0x7D93\n0xCCE9\t0x8015\n0xCCEA\t0x803F\n0xCCEB\t0x811B\n0xCCEC\t0x8396\n0xCCED\t0x8B66\n0xCCEE\t0x8F15\n0xCCEF\t0x9015\n0xCCF0\t0x93E1\n0xCCF1\t0x9803\n0xCCF2\t0x9838\n0xCCF3\t0x9A5A\n0xCCF4\t0x9BE8\n0xCCF5\t0x4FC2\n0xCCF6\t0x5553\n0xCCF7\t0x583A\n0xCCF8\t0x5951\n0xCCF9\t0x5B63\n0xCCFA\t0x5C46\n0xCCFB\t0x60B8\n0xCCFC\t0x6212\n0xCCFD\t0x6842\n0xCCFE\t0x68B0\n0xCDA1\t0x68E8\n0xCDA2\t0x6EAA\n0xCDA3\t0x754C\n0xCDA4\t0x7678\n0xCDA5\t0x78CE\n0xCDA6\t0x7A3D\n0xCDA7\t0x7CFB\n0xCDA8\t0x7E6B\n0xCDA9\t0x7E7C\n0xCDAA\t0x8A08\n0xCDAB\t0x8AA1\n0xCDAC\t0x8C3F\n0xCDAD\t0x968E\n0xCDAE\t0x9DC4\n0xCDAF\t0x53E4\n0xCDB0\t0x53E9\n0xCDB1\t0x544A\n0xCDB2\t0x5471\n0xCDB3\t0x56FA\n0xCDB4\t0x59D1\n0xCDB5\t0x5B64\n0xCDB6\t0x5C3B\n0xCDB7\t0x5EAB\n0xCDB8\t0x62F7\n0xCDB9\t0x6537\n0xCDBA\t0x6545\n0xCDBB\t0x6572\n0xCDBC\t0x66A0\n0xCDBD\t0x67AF\n0xCDBE\t0x69C1\n0xCDBF\t0x6CBD\n0xCDC0\t0x75FC\n0xCDC1\t0x7690\n0xCDC2\t0x777E\n0xCDC3\t0x7A3F\n0xCDC4\t0x7F94\n0xCDC5\t0x8003\n0xCDC6\t0x80A1\n0xCDC7\t0x818F\n0xCDC8\t0x82E6\n0xCDC9\t0x82FD\n0xCDCA\t0x83F0\n0xCDCB\t0x85C1\n0xCDCC\t0x8831\n0xCDCD\t0x88B4\n0xCDCE\t0x8AA5\n0xCDCF\t0xF903\n0xCDD0\t0x8F9C\n0xCDD1\t0x932E\n0xCDD2\t0x96C7\n0xCDD3\t0x9867\n0xCDD4\t0x9AD8\n0xCDD5\t0x9F13\n0xCDD6\t0x54ED\n0xCDD7\t0x659B\n0xCDD8\t0x66F2\n0xCDD9\t0x688F\n0xCDDA\t0x7A40\n0xCDDB\t0x8C37\n0xCDDC\t0x9D60\n0xCDDD\t0x56F0\n0xCDDE\t0x5764\n0xCDDF\t0x5D11\n0xCDE0\t0x6606\n0xCDE1\t0x68B1\n0xCDE2\t0x68CD\n0xCDE3\t0x6EFE\n0xCDE4\t0x7428\n0xCDE5\t0x889E\n0xCDE6\t0x9BE4\n0xCDE7\t0x6C68\n0xCDE8\t0xF904\n0xCDE9\t0x9AA8\n0xCDEA\t0x4F9B\n0xCDEB\t0x516C\n0xCDEC\t0x5171\n0xCDED\t0x529F\n0xCDEE\t0x5B54\n0xCDEF\t0x5DE5\n0xCDF0\t0x6050\n0xCDF1\t0x606D\n0xCDF2\t0x62F1\n0xCDF3\t0x63A7\n0xCDF4\t0x653B\n0xCDF5\t0x73D9\n0xCDF6\t0x7A7A\n0xCDF7\t0x86A3\n0xCDF8\t0x8CA2\n0xCDF9\t0x978F\n0xCDFA\t0x4E32\n0xCDFB\t0x5BE1\n0xCDFC\t0x6208\n0xCDFD\t0x679C\n0xCDFE\t0x74DC\n0xCEA1\t0x79D1\n0xCEA2\t0x83D3\n0xCEA3\t0x8A87\n0xCEA4\t0x8AB2\n0xCEA5\t0x8DE8\n0xCEA6\t0x904E\n0xCEA7\t0x934B\n0xCEA8\t0x9846\n0xCEA9\t0x5ED3\n0xCEAA\t0x69E8\n0xCEAB\t0x85FF\n0xCEAC\t0x90ED\n0xCEAD\t0xF905\n0xCEAE\t0x51A0\n0xCEAF\t0x5B98\n0xCEB0\t0x5BEC\n0xCEB1\t0x6163\n0xCEB2\t0x68FA\n0xCEB3\t0x6B3E\n0xCEB4\t0x704C\n0xCEB5\t0x742F\n0xCEB6\t0x74D8\n0xCEB7\t0x7BA1\n0xCEB8\t0x7F50\n0xCEB9\t0x83C5\n0xCEBA\t0x89C0\n0xCEBB\t0x8CAB\n0xCEBC\t0x95DC\n0xCEBD\t0x9928\n0xCEBE\t0x522E\n0xCEBF\t0x605D\n0xCEC0\t0x62EC\n0xCEC1\t0x9002\n0xCEC2\t0x4F8A\n0xCEC3\t0x5149\n0xCEC4\t0x5321\n0xCEC5\t0x58D9\n0xCEC6\t0x5EE3\n0xCEC7\t0x66E0\n0xCEC8\t0x6D38\n0xCEC9\t0x709A\n0xCECA\t0x72C2\n0xCECB\t0x73D6\n0xCECC\t0x7B50\n0xCECD\t0x80F1\n0xCECE\t0x945B\n0xCECF\t0x5366\n0xCED0\t0x639B\n0xCED1\t0x7F6B\n0xCED2\t0x4E56\n0xCED3\t0x5080\n0xCED4\t0x584A\n0xCED5\t0x58DE\n0xCED6\t0x602A\n0xCED7\t0x6127\n0xCED8\t0x62D0\n0xCED9\t0x69D0\n0xCEDA\t0x9B41\n0xCEDB\t0x5B8F\n0xCEDC\t0x7D18\n0xCEDD\t0x80B1\n0xCEDE\t0x8F5F\n0xCEDF\t0x4EA4\n0xCEE0\t0x50D1\n0xCEE1\t0x54AC\n0xCEE2\t0x55AC\n0xCEE3\t0x5B0C\n0xCEE4\t0x5DA0\n0xCEE5\t0x5DE7\n0xCEE6\t0x652A\n0xCEE7\t0x654E\n0xCEE8\t0x6821\n0xCEE9\t0x6A4B\n0xCEEA\t0x72E1\n0xCEEB\t0x768E\n0xCEEC\t0x77EF\n0xCEED\t0x7D5E\n0xCEEE\t0x7FF9\n0xCEEF\t0x81A0\n0xCEF0\t0x854E\n0xCEF1\t0x86DF\n0xCEF2\t0x8F03\n0xCEF3\t0x8F4E\n0xCEF4\t0x90CA\n0xCEF5\t0x9903\n0xCEF6\t0x9A55\n0xCEF7\t0x9BAB\n0xCEF8\t0x4E18\n0xCEF9\t0x4E45\n0xCEFA\t0x4E5D\n0xCEFB\t0x4EC7\n0xCEFC\t0x4FF1\n0xCEFD\t0x5177\n0xCEFE\t0x52FE\n0xCFA1\t0x5340\n0xCFA2\t0x53E3\n0xCFA3\t0x53E5\n0xCFA4\t0x548E\n0xCFA5\t0x5614\n0xCFA6\t0x5775\n0xCFA7\t0x57A2\n0xCFA8\t0x5BC7\n0xCFA9\t0x5D87\n0xCFAA\t0x5ED0\n0xCFAB\t0x61FC\n0xCFAC\t0x62D8\n0xCFAD\t0x6551\n0xCFAE\t0x67B8\n0xCFAF\t0x67E9\n0xCFB0\t0x69CB\n0xCFB1\t0x6B50\n0xCFB2\t0x6BC6\n0xCFB3\t0x6BEC\n0xCFB4\t0x6C42\n0xCFB5\t0x6E9D\n0xCFB6\t0x7078\n0xCFB7\t0x72D7\n0xCFB8\t0x7396\n0xCFB9\t0x7403\n0xCFBA\t0x77BF\n0xCFBB\t0x77E9\n0xCFBC\t0x7A76\n0xCFBD\t0x7D7F\n0xCFBE\t0x8009\n0xCFBF\t0x81FC\n0xCFC0\t0x8205\n0xCFC1\t0x820A\n0xCFC2\t0x82DF\n0xCFC3\t0x8862\n0xCFC4\t0x8B33\n0xCFC5\t0x8CFC\n0xCFC6\t0x8EC0\n0xCFC7\t0x9011\n0xCFC8\t0x90B1\n0xCFC9\t0x9264\n0xCFCA\t0x92B6\n0xCFCB\t0x99D2\n0xCFCC\t0x9A45\n0xCFCD\t0x9CE9\n0xCFCE\t0x9DD7\n0xCFCF\t0x9F9C\n0xCFD0\t0x570B\n0xCFD1\t0x5C40\n0xCFD2\t0x83CA\n0xCFD3\t0x97A0\n0xCFD4\t0x97AB\n0xCFD5\t0x9EB4\n0xCFD6\t0x541B\n0xCFD7\t0x7A98\n0xCFD8\t0x7FA4\n0xCFD9\t0x88D9\n0xCFDA\t0x8ECD\n0xCFDB\t0x90E1\n0xCFDC\t0x5800\n0xCFDD\t0x5C48\n0xCFDE\t0x6398\n0xCFDF\t0x7A9F\n0xCFE0\t0x5BAE\n0xCFE1\t0x5F13\n0xCFE2\t0x7A79\n0xCFE3\t0x7AAE\n0xCFE4\t0x828E\n0xCFE5\t0x8EAC\n0xCFE6\t0x5026\n0xCFE7\t0x5238\n0xCFE8\t0x52F8\n0xCFE9\t0x5377\n0xCFEA\t0x5708\n0xCFEB\t0x62F3\n0xCFEC\t0x6372\n0xCFED\t0x6B0A\n0xCFEE\t0x6DC3\n0xCFEF\t0x7737\n0xCFF0\t0x53A5\n0xCFF1\t0x7357\n0xCFF2\t0x8568\n0xCFF3\t0x8E76\n0xCFF4\t0x95D5\n0xCFF5\t0x673A\n0xCFF6\t0x6AC3\n0xCFF7\t0x6F70\n0xCFF8\t0x8A6D\n0xCFF9\t0x8ECC\n0xCFFA\t0x994B\n0xCFFB\t0xF906\n0xCFFC\t0x6677\n0xCFFD\t0x6B78\n0xCFFE\t0x8CB4\n0xD0A1\t0x9B3C\n0xD0A2\t0xF907\n0xD0A3\t0x53EB\n0xD0A4\t0x572D\n0xD0A5\t0x594E\n0xD0A6\t0x63C6\n0xD0A7\t0x69FB\n0xD0A8\t0x73EA\n0xD0A9\t0x7845\n0xD0AA\t0x7ABA\n0xD0AB\t0x7AC5\n0xD0AC\t0x7CFE\n0xD0AD\t0x8475\n0xD0AE\t0x898F\n0xD0AF\t0x8D73\n0xD0B0\t0x9035\n0xD0B1\t0x95A8\n0xD0B2\t0x52FB\n0xD0B3\t0x5747\n0xD0B4\t0x7547\n0xD0B5\t0x7B60\n0xD0B6\t0x83CC\n0xD0B7\t0x921E\n0xD0B8\t0xF908\n0xD0B9\t0x6A58\n0xD0BA\t0x514B\n0xD0BB\t0x524B\n0xD0BC\t0x5287\n0xD0BD\t0x621F\n0xD0BE\t0x68D8\n0xD0BF\t0x6975\n0xD0C0\t0x9699\n0xD0C1\t0x50C5\n0xD0C2\t0x52A4\n0xD0C3\t0x52E4\n0xD0C4\t0x61C3\n0xD0C5\t0x65A4\n0xD0C6\t0x6839\n0xD0C7\t0x69FF\n0xD0C8\t0x747E\n0xD0C9\t0x7B4B\n0xD0CA\t0x82B9\n0xD0CB\t0x83EB\n0xD0CC\t0x89B2\n0xD0CD\t0x8B39\n0xD0CE\t0x8FD1\n0xD0CF\t0x9949\n0xD0D0\t0xF909\n0xD0D1\t0x4ECA\n0xD0D2\t0x5997\n0xD0D3\t0x64D2\n0xD0D4\t0x6611\n0xD0D5\t0x6A8E\n0xD0D6\t0x7434\n0xD0D7\t0x7981\n0xD0D8\t0x79BD\n0xD0D9\t0x82A9\n0xD0DA\t0x887E\n0xD0DB\t0x887F\n0xD0DC\t0x895F\n0xD0DD\t0xF90A\n0xD0DE\t0x9326\n0xD0DF\t0x4F0B\n0xD0E0\t0x53CA\n0xD0E1\t0x6025\n0xD0E2\t0x6271\n0xD0E3\t0x6C72\n0xD0E4\t0x7D1A\n0xD0E5\t0x7D66\n0xD0E6\t0x4E98\n0xD0E7\t0x5162\n0xD0E8\t0x77DC\n0xD0E9\t0x80AF\n0xD0EA\t0x4F01\n0xD0EB\t0x4F0E\n0xD0EC\t0x5176\n0xD0ED\t0x5180\n0xD0EE\t0x55DC\n0xD0EF\t0x5668\n0xD0F0\t0x573B\n0xD0F1\t0x57FA\n0xD0F2\t0x57FC\n0xD0F3\t0x5914\n0xD0F4\t0x5947\n0xD0F5\t0x5993\n0xD0F6\t0x5BC4\n0xD0F7\t0x5C90\n0xD0F8\t0x5D0E\n0xD0F9\t0x5DF1\n0xD0FA\t0x5E7E\n0xD0FB\t0x5FCC\n0xD0FC\t0x6280\n0xD0FD\t0x65D7\n0xD0FE\t0x65E3\n0xD1A1\t0x671E\n0xD1A2\t0x671F\n0xD1A3\t0x675E\n0xD1A4\t0x68CB\n0xD1A5\t0x68C4\n0xD1A6\t0x6A5F\n0xD1A7\t0x6B3A\n0xD1A8\t0x6C23\n0xD1A9\t0x6C7D\n0xD1AA\t0x6C82\n0xD1AB\t0x6DC7\n0xD1AC\t0x7398\n0xD1AD\t0x7426\n0xD1AE\t0x742A\n0xD1AF\t0x7482\n0xD1B0\t0x74A3\n0xD1B1\t0x7578\n0xD1B2\t0x757F\n0xD1B3\t0x7881\n0xD1B4\t0x78EF\n0xD1B5\t0x7941\n0xD1B6\t0x7947\n0xD1B7\t0x7948\n0xD1B8\t0x797A\n0xD1B9\t0x7B95\n0xD1BA\t0x7D00\n0xD1BB\t0x7DBA\n0xD1BC\t0x7F88\n0xD1BD\t0x8006\n0xD1BE\t0x802D\n0xD1BF\t0x808C\n0xD1C0\t0x8A18\n0xD1C1\t0x8B4F\n0xD1C2\t0x8C48\n0xD1C3\t0x8D77\n0xD1C4\t0x9321\n0xD1C5\t0x9324\n0xD1C6\t0x98E2\n0xD1C7\t0x9951\n0xD1C8\t0x9A0E\n0xD1C9\t0x9A0F\n0xD1CA\t0x9A65\n0xD1CB\t0x9E92\n0xD1CC\t0x7DCA\n0xD1CD\t0x4F76\n0xD1CE\t0x5409\n0xD1CF\t0x62EE\n0xD1D0\t0x6854\n0xD1D1\t0x91D1\n0xD1D2\t0x55AB\n0xD1D3\t0x513A\n0xD1D4\t0xF90B\n0xD1D5\t0xF90C\n0xD1D6\t0x5A1C\n0xD1D7\t0x61E6\n0xD1D8\t0xF90D\n0xD1D9\t0x62CF\n0xD1DA\t0x62FF\n0xD1DB\t0xF90E\n0xD1DC\t0xF90F\n0xD1DD\t0xF910\n0xD1DE\t0xF911\n0xD1DF\t0xF912\n0xD1E0\t0xF913\n0xD1E1\t0x90A3\n0xD1E2\t0xF914\n0xD1E3\t0xF915\n0xD1E4\t0xF916\n0xD1E5\t0xF917\n0xD1E6\t0xF918\n0xD1E7\t0x8AFE\n0xD1E8\t0xF919\n0xD1E9\t0xF91A\n0xD1EA\t0xF91B\n0xD1EB\t0xF91C\n0xD1EC\t0x6696\n0xD1ED\t0xF91D\n0xD1EE\t0x7156\n0xD1EF\t0xF91E\n0xD1F0\t0xF91F\n0xD1F1\t0x96E3\n0xD1F2\t0xF920\n0xD1F3\t0x634F\n0xD1F4\t0x637A\n0xD1F5\t0x5357\n0xD1F6\t0xF921\n0xD1F7\t0x678F\n0xD1F8\t0x6960\n0xD1F9\t0x6E73\n0xD1FA\t0xF922\n0xD1FB\t0x7537\n0xD1FC\t0xF923\n0xD1FD\t0xF924\n0xD1FE\t0xF925\n0xD2A1\t0x7D0D\n0xD2A2\t0xF926\n0xD2A3\t0xF927\n0xD2A4\t0x8872\n0xD2A5\t0x56CA\n0xD2A6\t0x5A18\n0xD2A7\t0xF928\n0xD2A8\t0xF929\n0xD2A9\t0xF92A\n0xD2AA\t0xF92B\n0xD2AB\t0xF92C\n0xD2AC\t0x4E43\n0xD2AD\t0xF92D\n0xD2AE\t0x5167\n0xD2AF\t0x5948\n0xD2B0\t0x67F0\n0xD2B1\t0x8010\n0xD2B2\t0xF92E\n0xD2B3\t0x5973\n0xD2B4\t0x5E74\n0xD2B5\t0x649A\n0xD2B6\t0x79CA\n0xD2B7\t0x5FF5\n0xD2B8\t0x606C\n0xD2B9\t0x62C8\n0xD2BA\t0x637B\n0xD2BB\t0x5BE7\n0xD2BC\t0x5BD7\n0xD2BD\t0x52AA\n0xD2BE\t0xF92F\n0xD2BF\t0x5974\n0xD2C0\t0x5F29\n0xD2C1\t0x6012\n0xD2C2\t0xF930\n0xD2C3\t0xF931\n0xD2C4\t0xF932\n0xD2C5\t0x7459\n0xD2C6\t0xF933\n0xD2C7\t0xF934\n0xD2C8\t0xF935\n0xD2C9\t0xF936\n0xD2CA\t0xF937\n0xD2CB\t0xF938\n0xD2CC\t0x99D1\n0xD2CD\t0xF939\n0xD2CE\t0xF93A\n0xD2CF\t0xF93B\n0xD2D0\t0xF93C\n0xD2D1\t0xF93D\n0xD2D2\t0xF93E\n0xD2D3\t0xF93F\n0xD2D4\t0xF940\n0xD2D5\t0xF941\n0xD2D6\t0xF942\n0xD2D7\t0xF943\n0xD2D8\t0x6FC3\n0xD2D9\t0xF944\n0xD2DA\t0xF945\n0xD2DB\t0x81BF\n0xD2DC\t0x8FB2\n0xD2DD\t0x60F1\n0xD2DE\t0xF946\n0xD2DF\t0xF947\n0xD2E0\t0x8166\n0xD2E1\t0xF948\n0xD2E2\t0xF949\n0xD2E3\t0x5C3F\n0xD2E4\t0xF94A\n0xD2E5\t0xF94B\n0xD2E6\t0xF94C\n0xD2E7\t0xF94D\n0xD2E8\t0xF94E\n0xD2E9\t0xF94F\n0xD2EA\t0xF950\n0xD2EB\t0xF951\n0xD2EC\t0x5AE9\n0xD2ED\t0x8A25\n0xD2EE\t0x677B\n0xD2EF\t0x7D10\n0xD2F0\t0xF952\n0xD2F1\t0xF953\n0xD2F2\t0xF954\n0xD2F3\t0xF955\n0xD2F4\t0xF956\n0xD2F5\t0xF957\n0xD2F6\t0x80FD\n0xD2F7\t0xF958\n0xD2F8\t0xF959\n0xD2F9\t0x5C3C\n0xD2FA\t0x6CE5\n0xD2FB\t0x533F\n0xD2FC\t0x6EBA\n0xD2FD\t0x591A\n0xD2FE\t0x8336\n0xD3A1\t0x4E39\n0xD3A2\t0x4EB6\n0xD3A3\t0x4F46\n0xD3A4\t0x55AE\n0xD3A5\t0x5718\n0xD3A6\t0x58C7\n0xD3A7\t0x5F56\n0xD3A8\t0x65B7\n0xD3A9\t0x65E6\n0xD3AA\t0x6A80\n0xD3AB\t0x6BB5\n0xD3AC\t0x6E4D\n0xD3AD\t0x77ED\n0xD3AE\t0x7AEF\n0xD3AF\t0x7C1E\n0xD3B0\t0x7DDE\n0xD3B1\t0x86CB\n0xD3B2\t0x8892\n0xD3B3\t0x9132\n0xD3B4\t0x935B\n0xD3B5\t0x64BB\n0xD3B6\t0x6FBE\n0xD3B7\t0x737A\n0xD3B8\t0x75B8\n0xD3B9\t0x9054\n0xD3BA\t0x5556\n0xD3BB\t0x574D\n0xD3BC\t0x61BA\n0xD3BD\t0x64D4\n0xD3BE\t0x66C7\n0xD3BF\t0x6DE1\n0xD3C0\t0x6E5B\n0xD3C1\t0x6F6D\n0xD3C2\t0x6FB9\n0xD3C3\t0x75F0\n0xD3C4\t0x8043\n0xD3C5\t0x81BD\n0xD3C6\t0x8541\n0xD3C7\t0x8983\n0xD3C8\t0x8AC7\n0xD3C9\t0x8B5A\n0xD3CA\t0x931F\n0xD3CB\t0x6C93\n0xD3CC\t0x7553\n0xD3CD\t0x7B54\n0xD3CE\t0x8E0F\n0xD3CF\t0x905D\n0xD3D0\t0x5510\n0xD3D1\t0x5802\n0xD3D2\t0x5858\n0xD3D3\t0x5E62\n0xD3D4\t0x6207\n0xD3D5\t0x649E\n0xD3D6\t0x68E0\n0xD3D7\t0x7576\n0xD3D8\t0x7CD6\n0xD3D9\t0x87B3\n0xD3DA\t0x9EE8\n0xD3DB\t0x4EE3\n0xD3DC\t0x5788\n0xD3DD\t0x576E\n0xD3DE\t0x5927\n0xD3DF\t0x5C0D\n0xD3E0\t0x5CB1\n0xD3E1\t0x5E36\n0xD3E2\t0x5F85\n0xD3E3\t0x6234\n0xD3E4\t0x64E1\n0xD3E5\t0x73B3\n0xD3E6\t0x81FA\n0xD3E7\t0x888B\n0xD3E8\t0x8CB8\n0xD3E9\t0x968A\n0xD3EA\t0x9EDB\n0xD3EB\t0x5B85\n0xD3EC\t0x5FB7\n0xD3ED\t0x60B3\n0xD3EE\t0x5012\n0xD3EF\t0x5200\n0xD3F0\t0x5230\n0xD3F1\t0x5716\n0xD3F2\t0x5835\n0xD3F3\t0x5857\n0xD3F4\t0x5C0E\n0xD3F5\t0x5C60\n0xD3F6\t0x5CF6\n0xD3F7\t0x5D8B\n0xD3F8\t0x5EA6\n0xD3F9\t0x5F92\n0xD3FA\t0x60BC\n0xD3FB\t0x6311\n0xD3FC\t0x6389\n0xD3FD\t0x6417\n0xD3FE\t0x6843\n0xD4A1\t0x68F9\n0xD4A2\t0x6AC2\n0xD4A3\t0x6DD8\n0xD4A4\t0x6E21\n0xD4A5\t0x6ED4\n0xD4A6\t0x6FE4\n0xD4A7\t0x71FE\n0xD4A8\t0x76DC\n0xD4A9\t0x7779\n0xD4AA\t0x79B1\n0xD4AB\t0x7A3B\n0xD4AC\t0x8404\n0xD4AD\t0x89A9\n0xD4AE\t0x8CED\n0xD4AF\t0x8DF3\n0xD4B0\t0x8E48\n0xD4B1\t0x9003\n0xD4B2\t0x9014\n0xD4B3\t0x9053\n0xD4B4\t0x90FD\n0xD4B5\t0x934D\n0xD4B6\t0x9676\n0xD4B7\t0x97DC\n0xD4B8\t0x6BD2\n0xD4B9\t0x7006\n0xD4BA\t0x7258\n0xD4BB\t0x72A2\n0xD4BC\t0x7368\n0xD4BD\t0x7763\n0xD4BE\t0x79BF\n0xD4BF\t0x7BE4\n0xD4C0\t0x7E9B\n0xD4C1\t0x8B80\n0xD4C2\t0x58A9\n0xD4C3\t0x60C7\n0xD4C4\t0x6566\n0xD4C5\t0x65FD\n0xD4C6\t0x66BE\n0xD4C7\t0x6C8C\n0xD4C8\t0x711E\n0xD4C9\t0x71C9\n0xD4CA\t0x8C5A\n0xD4CB\t0x9813\n0xD4CC\t0x4E6D\n0xD4CD\t0x7A81\n0xD4CE\t0x4EDD\n0xD4CF\t0x51AC\n0xD4D0\t0x51CD\n0xD4D1\t0x52D5\n0xD4D2\t0x540C\n0xD4D3\t0x61A7\n0xD4D4\t0x6771\n0xD4D5\t0x6850\n0xD4D6\t0x68DF\n0xD4D7\t0x6D1E\n0xD4D8\t0x6F7C\n0xD4D9\t0x75BC\n0xD4DA\t0x77B3\n0xD4DB\t0x7AE5\n0xD4DC\t0x80F4\n0xD4DD\t0x8463\n0xD4DE\t0x9285\n0xD4DF\t0x515C\n0xD4E0\t0x6597\n0xD4E1\t0x675C\n0xD4E2\t0x6793\n0xD4E3\t0x75D8\n0xD4E4\t0x7AC7\n0xD4E5\t0x8373\n0xD4E6\t0xF95A\n0xD4E7\t0x8C46\n0xD4E8\t0x9017\n0xD4E9\t0x982D\n0xD4EA\t0x5C6F\n0xD4EB\t0x81C0\n0xD4EC\t0x829A\n0xD4ED\t0x9041\n0xD4EE\t0x906F\n0xD4EF\t0x920D\n0xD4F0\t0x5F97\n0xD4F1\t0x5D9D\n0xD4F2\t0x6A59\n0xD4F3\t0x71C8\n0xD4F4\t0x767B\n0xD4F5\t0x7B49\n0xD4F6\t0x85E4\n0xD4F7\t0x8B04\n0xD4F8\t0x9127\n0xD4F9\t0x9A30\n0xD4FA\t0x5587\n0xD4FB\t0x61F6\n0xD4FC\t0xF95B\n0xD4FD\t0x7669\n0xD4FE\t0x7F85\n0xD5A1\t0x863F\n0xD5A2\t0x87BA\n0xD5A3\t0x88F8\n0xD5A4\t0x908F\n0xD5A5\t0xF95C\n0xD5A6\t0x6D1B\n0xD5A7\t0x70D9\n0xD5A8\t0x73DE\n0xD5A9\t0x7D61\n0xD5AA\t0x843D\n0xD5AB\t0xF95D\n0xD5AC\t0x916A\n0xD5AD\t0x99F1\n0xD5AE\t0xF95E\n0xD5AF\t0x4E82\n0xD5B0\t0x5375\n0xD5B1\t0x6B04\n0xD5B2\t0x6B12\n0xD5B3\t0x703E\n0xD5B4\t0x721B\n0xD5B5\t0x862D\n0xD5B6\t0x9E1E\n0xD5B7\t0x524C\n0xD5B8\t0x8FA3\n0xD5B9\t0x5D50\n0xD5BA\t0x64E5\n0xD5BB\t0x652C\n0xD5BC\t0x6B16\n0xD5BD\t0x6FEB\n0xD5BE\t0x7C43\n0xD5BF\t0x7E9C\n0xD5C0\t0x85CD\n0xD5C1\t0x8964\n0xD5C2\t0x89BD\n0xD5C3\t0x62C9\n0xD5C4\t0x81D8\n0xD5C5\t0x881F\n0xD5C6\t0x5ECA\n0xD5C7\t0x6717\n0xD5C8\t0x6D6A\n0xD5C9\t0x72FC\n0xD5CA\t0x7405\n0xD5CB\t0x746F\n0xD5CC\t0x8782\n0xD5CD\t0x90DE\n0xD5CE\t0x4F86\n0xD5CF\t0x5D0D\n0xD5D0\t0x5FA0\n0xD5D1\t0x840A\n0xD5D2\t0x51B7\n0xD5D3\t0x63A0\n0xD5D4\t0x7565\n0xD5D5\t0x4EAE\n0xD5D6\t0x5006\n0xD5D7\t0x5169\n0xD5D8\t0x51C9\n0xD5D9\t0x6881\n0xD5DA\t0x6A11\n0xD5DB\t0x7CAE\n0xD5DC\t0x7CB1\n0xD5DD\t0x7CE7\n0xD5DE\t0x826F\n0xD5DF\t0x8AD2\n0xD5E0\t0x8F1B\n0xD5E1\t0x91CF\n0xD5E2\t0x4FB6\n0xD5E3\t0x5137\n0xD5E4\t0x52F5\n0xD5E5\t0x5442\n0xD5E6\t0x5EEC\n0xD5E7\t0x616E\n0xD5E8\t0x623E\n0xD5E9\t0x65C5\n0xD5EA\t0x6ADA\n0xD5EB\t0x6FFE\n0xD5EC\t0x792A\n0xD5ED\t0x85DC\n0xD5EE\t0x8823\n0xD5EF\t0x95AD\n0xD5F0\t0x9A62\n0xD5F1\t0x9A6A\n0xD5F2\t0x9E97\n0xD5F3\t0x9ECE\n0xD5F4\t0x529B\n0xD5F5\t0x66C6\n0xD5F6\t0x6B77\n0xD5F7\t0x701D\n0xD5F8\t0x792B\n0xD5F9\t0x8F62\n0xD5FA\t0x9742\n0xD5FB\t0x6190\n0xD5FC\t0x6200\n0xD5FD\t0x6523\n0xD5FE\t0x6F23\n0xD6A1\t0x7149\n0xD6A2\t0x7489\n0xD6A3\t0x7DF4\n0xD6A4\t0x806F\n0xD6A5\t0x84EE\n0xD6A6\t0x8F26\n0xD6A7\t0x9023\n0xD6A8\t0x934A\n0xD6A9\t0x51BD\n0xD6AA\t0x5217\n0xD6AB\t0x52A3\n0xD6AC\t0x6D0C\n0xD6AD\t0x70C8\n0xD6AE\t0x88C2\n0xD6AF\t0x5EC9\n0xD6B0\t0x6582\n0xD6B1\t0x6BAE\n0xD6B2\t0x6FC2\n0xD6B3\t0x7C3E\n0xD6B4\t0x7375\n0xD6B5\t0x4EE4\n0xD6B6\t0x4F36\n0xD6B7\t0x56F9\n0xD6B8\t0xF95F\n0xD6B9\t0x5CBA\n0xD6BA\t0x5DBA\n0xD6BB\t0x601C\n0xD6BC\t0x73B2\n0xD6BD\t0x7B2D\n0xD6BE\t0x7F9A\n0xD6BF\t0x7FCE\n0xD6C0\t0x8046\n0xD6C1\t0x901E\n0xD6C2\t0x9234\n0xD6C3\t0x96F6\n0xD6C4\t0x9748\n0xD6C5\t0x9818\n0xD6C6\t0x9F61\n0xD6C7\t0x4F8B\n0xD6C8\t0x6FA7\n0xD6C9\t0x79AE\n0xD6CA\t0x91B4\n0xD6CB\t0x96B7\n0xD6CC\t0x52DE\n0xD6CD\t0xF960\n0xD6CE\t0x6488\n0xD6CF\t0x64C4\n0xD6D0\t0x6AD3\n0xD6D1\t0x6F5E\n0xD6D2\t0x7018\n0xD6D3\t0x7210\n0xD6D4\t0x76E7\n0xD6D5\t0x8001\n0xD6D6\t0x8606\n0xD6D7\t0x865C\n0xD6D8\t0x8DEF\n0xD6D9\t0x8F05\n0xD6DA\t0x9732\n0xD6DB\t0x9B6F\n0xD6DC\t0x9DFA\n0xD6DD\t0x9E75\n0xD6DE\t0x788C\n0xD6DF\t0x797F\n0xD6E0\t0x7DA0\n0xD6E1\t0x83C9\n0xD6E2\t0x9304\n0xD6E3\t0x9E7F\n0xD6E4\t0x9E93\n0xD6E5\t0x8AD6\n0xD6E6\t0x58DF\n0xD6E7\t0x5F04\n0xD6E8\t0x6727\n0xD6E9\t0x7027\n0xD6EA\t0x74CF\n0xD6EB\t0x7C60\n0xD6EC\t0x807E\n0xD6ED\t0x5121\n0xD6EE\t0x7028\n0xD6EF\t0x7262\n0xD6F0\t0x78CA\n0xD6F1\t0x8CC2\n0xD6F2\t0x8CDA\n0xD6F3\t0x8CF4\n0xD6F4\t0x96F7\n0xD6F5\t0x4E86\n0xD6F6\t0x50DA\n0xD6F7\t0x5BEE\n0xD6F8\t0x5ED6\n0xD6F9\t0x6599\n0xD6FA\t0x71CE\n0xD6FB\t0x7642\n0xD6FC\t0x77AD\n0xD6FD\t0x804A\n0xD6FE\t0x84FC\n0xD7A1\t0x907C\n0xD7A2\t0x9B27\n0xD7A3\t0x9F8D\n0xD7A4\t0x58D8\n0xD7A5\t0x5A41\n0xD7A6\t0x5C62\n0xD7A7\t0x6A13\n0xD7A8\t0x6DDA\n0xD7A9\t0x6F0F\n0xD7AA\t0x763B\n0xD7AB\t0x7D2F\n0xD7AC\t0x7E37\n0xD7AD\t0x851E\n0xD7AE\t0x8938\n0xD7AF\t0x93E4\n0xD7B0\t0x964B\n0xD7B1\t0x5289\n0xD7B2\t0x65D2\n0xD7B3\t0x67F3\n0xD7B4\t0x69B4\n0xD7B5\t0x6D41\n0xD7B6\t0x6E9C\n0xD7B7\t0x700F\n0xD7B8\t0x7409\n0xD7B9\t0x7460\n0xD7BA\t0x7559\n0xD7BB\t0x7624\n0xD7BC\t0x786B\n0xD7BD\t0x8B2C\n0xD7BE\t0x985E\n0xD7BF\t0x516D\n0xD7C0\t0x622E\n0xD7C1\t0x9678\n0xD7C2\t0x4F96\n0xD7C3\t0x502B\n0xD7C4\t0x5D19\n0xD7C5\t0x6DEA\n0xD7C6\t0x7DB8\n0xD7C7\t0x8F2A\n0xD7C8\t0x5F8B\n0xD7C9\t0x6144\n0xD7CA\t0x6817\n0xD7CB\t0xF961\n0xD7CC\t0x9686\n0xD7CD\t0x52D2\n0xD7CE\t0x808B\n0xD7CF\t0x51DC\n0xD7D0\t0x51CC\n0xD7D1\t0x695E\n0xD7D2\t0x7A1C\n0xD7D3\t0x7DBE\n0xD7D4\t0x83F1\n0xD7D5\t0x9675\n0xD7D6\t0x4FDA\n0xD7D7\t0x5229\n0xD7D8\t0x5398\n0xD7D9\t0x540F\n0xD7DA\t0x550E\n0xD7DB\t0x5C65\n0xD7DC\t0x60A7\n0xD7DD\t0x674E\n0xD7DE\t0x68A8\n0xD7DF\t0x6D6C\n0xD7E0\t0x7281\n0xD7E1\t0x72F8\n0xD7E2\t0x7406\n0xD7E3\t0x7483\n0xD7E4\t0xF962\n0xD7E5\t0x75E2\n0xD7E6\t0x7C6C\n0xD7E7\t0x7F79\n0xD7E8\t0x7FB8\n0xD7E9\t0x8389\n0xD7EA\t0x88CF\n0xD7EB\t0x88E1\n0xD7EC\t0x91CC\n0xD7ED\t0x91D0\n0xD7EE\t0x96E2\n0xD7EF\t0x9BC9\n0xD7F0\t0x541D\n0xD7F1\t0x6F7E\n0xD7F2\t0x71D0\n0xD7F3\t0x7498\n0xD7F4\t0x85FA\n0xD7F5\t0x8EAA\n0xD7F6\t0x96A3\n0xD7F7\t0x9C57\n0xD7F8\t0x9E9F\n0xD7F9\t0x6797\n0xD7FA\t0x6DCB\n0xD7FB\t0x7433\n0xD7FC\t0x81E8\n0xD7FD\t0x9716\n0xD7FE\t0x782C\n0xD8A1\t0x7ACB\n0xD8A2\t0x7B20\n0xD8A3\t0x7C92\n0xD8A4\t0x6469\n0xD8A5\t0x746A\n0xD8A6\t0x75F2\n0xD8A7\t0x78BC\n0xD8A8\t0x78E8\n0xD8A9\t0x99AC\n0xD8AA\t0x9B54\n0xD8AB\t0x9EBB\n0xD8AC\t0x5BDE\n0xD8AD\t0x5E55\n0xD8AE\t0x6F20\n0xD8AF\t0x819C\n0xD8B0\t0x83AB\n0xD8B1\t0x9088\n0xD8B2\t0x4E07\n0xD8B3\t0x534D\n0xD8B4\t0x5A29\n0xD8B5\t0x5DD2\n0xD8B6\t0x5F4E\n0xD8B7\t0x6162\n0xD8B8\t0x633D\n0xD8B9\t0x6669\n0xD8BA\t0x66FC\n0xD8BB\t0x6EFF\n0xD8BC\t0x6F2B\n0xD8BD\t0x7063\n0xD8BE\t0x779E\n0xD8BF\t0x842C\n0xD8C0\t0x8513\n0xD8C1\t0x883B\n0xD8C2\t0x8F13\n0xD8C3\t0x9945\n0xD8C4\t0x9C3B\n0xD8C5\t0x551C\n0xD8C6\t0x62B9\n0xD8C7\t0x672B\n0xD8C8\t0x6CAB\n0xD8C9\t0x8309\n0xD8CA\t0x896A\n0xD8CB\t0x977A\n0xD8CC\t0x4EA1\n0xD8CD\t0x5984\n0xD8CE\t0x5FD8\n0xD8CF\t0x5FD9\n0xD8D0\t0x671B\n0xD8D1\t0x7DB2\n0xD8D2\t0x7F54\n0xD8D3\t0x8292\n0xD8D4\t0x832B\n0xD8D5\t0x83BD\n0xD8D6\t0x8F1E\n0xD8D7\t0x9099\n0xD8D8\t0x57CB\n0xD8D9\t0x59B9\n0xD8DA\t0x5A92\n0xD8DB\t0x5BD0\n0xD8DC\t0x6627\n0xD8DD\t0x679A\n0xD8DE\t0x6885\n0xD8DF\t0x6BCF\n0xD8E0\t0x7164\n0xD8E1\t0x7F75\n0xD8E2\t0x8CB7\n0xD8E3\t0x8CE3\n0xD8E4\t0x9081\n0xD8E5\t0x9B45\n0xD8E6\t0x8108\n0xD8E7\t0x8C8A\n0xD8E8\t0x964C\n0xD8E9\t0x9A40\n0xD8EA\t0x9EA5\n0xD8EB\t0x5B5F\n0xD8EC\t0x6C13\n0xD8ED\t0x731B\n0xD8EE\t0x76F2\n0xD8EF\t0x76DF\n0xD8F0\t0x840C\n0xD8F1\t0x51AA\n0xD8F2\t0x8993\n0xD8F3\t0x514D\n0xD8F4\t0x5195\n0xD8F5\t0x52C9\n0xD8F6\t0x68C9\n0xD8F7\t0x6C94\n0xD8F8\t0x7704\n0xD8F9\t0x7720\n0xD8FA\t0x7DBF\n0xD8FB\t0x7DEC\n0xD8FC\t0x9762\n0xD8FD\t0x9EB5\n0xD8FE\t0x6EC5\n0xD9A1\t0x8511\n0xD9A2\t0x51A5\n0xD9A3\t0x540D\n0xD9A4\t0x547D\n0xD9A5\t0x660E\n0xD9A6\t0x669D\n0xD9A7\t0x6927\n0xD9A8\t0x6E9F\n0xD9A9\t0x76BF\n0xD9AA\t0x7791\n0xD9AB\t0x8317\n0xD9AC\t0x84C2\n0xD9AD\t0x879F\n0xD9AE\t0x9169\n0xD9AF\t0x9298\n0xD9B0\t0x9CF4\n0xD9B1\t0x8882\n0xD9B2\t0x4FAE\n0xD9B3\t0x5192\n0xD9B4\t0x52DF\n0xD9B5\t0x59C6\n0xD9B6\t0x5E3D\n0xD9B7\t0x6155\n0xD9B8\t0x6478\n0xD9B9\t0x6479\n0xD9BA\t0x66AE\n0xD9BB\t0x67D0\n0xD9BC\t0x6A21\n0xD9BD\t0x6BCD\n0xD9BE\t0x6BDB\n0xD9BF\t0x725F\n0xD9C0\t0x7261\n0xD9C1\t0x7441\n0xD9C2\t0x7738\n0xD9C3\t0x77DB\n0xD9C4\t0x8017\n0xD9C5\t0x82BC\n0xD9C6\t0x8305\n0xD9C7\t0x8B00\n0xD9C8\t0x8B28\n0xD9C9\t0x8C8C\n0xD9CA\t0x6728\n0xD9CB\t0x6C90\n0xD9CC\t0x7267\n0xD9CD\t0x76EE\n0xD9CE\t0x7766\n0xD9CF\t0x7A46\n0xD9D0\t0x9DA9\n0xD9D1\t0x6B7F\n0xD9D2\t0x6C92\n0xD9D3\t0x5922\n0xD9D4\t0x6726\n0xD9D5\t0x8499\n0xD9D6\t0x536F\n0xD9D7\t0x5893\n0xD9D8\t0x5999\n0xD9D9\t0x5EDF\n0xD9DA\t0x63CF\n0xD9DB\t0x6634\n0xD9DC\t0x6773\n0xD9DD\t0x6E3A\n0xD9DE\t0x732B\n0xD9DF\t0x7AD7\n0xD9E0\t0x82D7\n0xD9E1\t0x9328\n0xD9E2\t0x52D9\n0xD9E3\t0x5DEB\n0xD9E4\t0x61AE\n0xD9E5\t0x61CB\n0xD9E6\t0x620A\n0xD9E7\t0x62C7\n0xD9E8\t0x64AB\n0xD9E9\t0x65E0\n0xD9EA\t0x6959\n0xD9EB\t0x6B66\n0xD9EC\t0x6BCB\n0xD9ED\t0x7121\n0xD9EE\t0x73F7\n0xD9EF\t0x755D\n0xD9F0\t0x7E46\n0xD9F1\t0x821E\n0xD9F2\t0x8302\n0xD9F3\t0x856A\n0xD9F4\t0x8AA3\n0xD9F5\t0x8CBF\n0xD9F6\t0x9727\n0xD9F7\t0x9D61\n0xD9F8\t0x58A8\n0xD9F9\t0x9ED8\n0xD9FA\t0x5011\n0xD9FB\t0x520E\n0xD9FC\t0x543B\n0xD9FD\t0x554F\n0xD9FE\t0x6587\n0xDAA1\t0x6C76\n0xDAA2\t0x7D0A\n0xDAA3\t0x7D0B\n0xDAA4\t0x805E\n0xDAA5\t0x868A\n0xDAA6\t0x9580\n0xDAA7\t0x96EF\n0xDAA8\t0x52FF\n0xDAA9\t0x6C95\n0xDAAA\t0x7269\n0xDAAB\t0x5473\n0xDAAC\t0x5A9A\n0xDAAD\t0x5C3E\n0xDAAE\t0x5D4B\n0xDAAF\t0x5F4C\n0xDAB0\t0x5FAE\n0xDAB1\t0x672A\n0xDAB2\t0x68B6\n0xDAB3\t0x6963\n0xDAB4\t0x6E3C\n0xDAB5\t0x6E44\n0xDAB6\t0x7709\n0xDAB7\t0x7C73\n0xDAB8\t0x7F8E\n0xDAB9\t0x8587\n0xDABA\t0x8B0E\n0xDABB\t0x8FF7\n0xDABC\t0x9761\n0xDABD\t0x9EF4\n0xDABE\t0x5CB7\n0xDABF\t0x60B6\n0xDAC0\t0x610D\n0xDAC1\t0x61AB\n0xDAC2\t0x654F\n0xDAC3\t0x65FB\n0xDAC4\t0x65FC\n0xDAC5\t0x6C11\n0xDAC6\t0x6CEF\n0xDAC7\t0x739F\n0xDAC8\t0x73C9\n0xDAC9\t0x7DE1\n0xDACA\t0x9594\n0xDACB\t0x5BC6\n0xDACC\t0x871C\n0xDACD\t0x8B10\n0xDACE\t0x525D\n0xDACF\t0x535A\n0xDAD0\t0x62CD\n0xDAD1\t0x640F\n0xDAD2\t0x64B2\n0xDAD3\t0x6734\n0xDAD4\t0x6A38\n0xDAD5\t0x6CCA\n0xDAD6\t0x73C0\n0xDAD7\t0x749E\n0xDAD8\t0x7B94\n0xDAD9\t0x7C95\n0xDADA\t0x7E1B\n0xDADB\t0x818A\n0xDADC\t0x8236\n0xDADD\t0x8584\n0xDADE\t0x8FEB\n0xDADF\t0x96F9\n0xDAE0\t0x99C1\n0xDAE1\t0x4F34\n0xDAE2\t0x534A\n0xDAE3\t0x53CD\n0xDAE4\t0x53DB\n0xDAE5\t0x62CC\n0xDAE6\t0x642C\n0xDAE7\t0x6500\n0xDAE8\t0x6591\n0xDAE9\t0x69C3\n0xDAEA\t0x6CEE\n0xDAEB\t0x6F58\n0xDAEC\t0x73ED\n0xDAED\t0x7554\n0xDAEE\t0x7622\n0xDAEF\t0x76E4\n0xDAF0\t0x76FC\n0xDAF1\t0x78D0\n0xDAF2\t0x78FB\n0xDAF3\t0x792C\n0xDAF4\t0x7D46\n0xDAF5\t0x822C\n0xDAF6\t0x87E0\n0xDAF7\t0x8FD4\n0xDAF8\t0x9812\n0xDAF9\t0x98EF\n0xDAFA\t0x52C3\n0xDAFB\t0x62D4\n0xDAFC\t0x64A5\n0xDAFD\t0x6E24\n0xDAFE\t0x6F51\n0xDBA1\t0x767C\n0xDBA2\t0x8DCB\n0xDBA3\t0x91B1\n0xDBA4\t0x9262\n0xDBA5\t0x9AEE\n0xDBA6\t0x9B43\n0xDBA7\t0x5023\n0xDBA8\t0x508D\n0xDBA9\t0x574A\n0xDBAA\t0x59A8\n0xDBAB\t0x5C28\n0xDBAC\t0x5E47\n0xDBAD\t0x5F77\n0xDBAE\t0x623F\n0xDBAF\t0x653E\n0xDBB0\t0x65B9\n0xDBB1\t0x65C1\n0xDBB2\t0x6609\n0xDBB3\t0x678B\n0xDBB4\t0x699C\n0xDBB5\t0x6EC2\n0xDBB6\t0x78C5\n0xDBB7\t0x7D21\n0xDBB8\t0x80AA\n0xDBB9\t0x8180\n0xDBBA\t0x822B\n0xDBBB\t0x82B3\n0xDBBC\t0x84A1\n0xDBBD\t0x868C\n0xDBBE\t0x8A2A\n0xDBBF\t0x8B17\n0xDBC0\t0x90A6\n0xDBC1\t0x9632\n0xDBC2\t0x9F90\n0xDBC3\t0x500D\n0xDBC4\t0x4FF3\n0xDBC5\t0xF963\n0xDBC6\t0x57F9\n0xDBC7\t0x5F98\n0xDBC8\t0x62DC\n0xDBC9\t0x6392\n0xDBCA\t0x676F\n0xDBCB\t0x6E43\n0xDBCC\t0x7119\n0xDBCD\t0x76C3\n0xDBCE\t0x80CC\n0xDBCF\t0x80DA\n0xDBD0\t0x88F4\n0xDBD1\t0x88F5\n0xDBD2\t0x8919\n0xDBD3\t0x8CE0\n0xDBD4\t0x8F29\n0xDBD5\t0x914D\n0xDBD6\t0x966A\n0xDBD7\t0x4F2F\n0xDBD8\t0x4F70\n0xDBD9\t0x5E1B\n0xDBDA\t0x67CF\n0xDBDB\t0x6822\n0xDBDC\t0x767D\n0xDBDD\t0x767E\n0xDBDE\t0x9B44\n0xDBDF\t0x5E61\n0xDBE0\t0x6A0A\n0xDBE1\t0x7169\n0xDBE2\t0x71D4\n0xDBE3\t0x756A\n0xDBE4\t0xF964\n0xDBE5\t0x7E41\n0xDBE6\t0x8543\n0xDBE7\t0x85E9\n0xDBE8\t0x98DC\n0xDBE9\t0x4F10\n0xDBEA\t0x7B4F\n0xDBEB\t0x7F70\n0xDBEC\t0x95A5\n0xDBED\t0x51E1\n0xDBEE\t0x5E06\n0xDBEF\t0x68B5\n0xDBF0\t0x6C3E\n0xDBF1\t0x6C4E\n0xDBF2\t0x6CDB\n0xDBF3\t0x72AF\n0xDBF4\t0x7BC4\n0xDBF5\t0x8303\n0xDBF6\t0x6CD5\n0xDBF7\t0x743A\n0xDBF8\t0x50FB\n0xDBF9\t0x5288\n0xDBFA\t0x58C1\n0xDBFB\t0x64D8\n0xDBFC\t0x6A97\n0xDBFD\t0x74A7\n0xDBFE\t0x7656\n0xDCA1\t0x78A7\n0xDCA2\t0x8617\n0xDCA3\t0x95E2\n0xDCA4\t0x9739\n0xDCA5\t0xF965\n0xDCA6\t0x535E\n0xDCA7\t0x5F01\n0xDCA8\t0x8B8A\n0xDCA9\t0x8FA8\n0xDCAA\t0x8FAF\n0xDCAB\t0x908A\n0xDCAC\t0x5225\n0xDCAD\t0x77A5\n0xDCAE\t0x9C49\n0xDCAF\t0x9F08\n0xDCB0\t0x4E19\n0xDCB1\t0x5002\n0xDCB2\t0x5175\n0xDCB3\t0x5C5B\n0xDCB4\t0x5E77\n0xDCB5\t0x661E\n0xDCB6\t0x663A\n0xDCB7\t0x67C4\n0xDCB8\t0x68C5\n0xDCB9\t0x70B3\n0xDCBA\t0x7501\n0xDCBB\t0x75C5\n0xDCBC\t0x79C9\n0xDCBD\t0x7ADD\n0xDCBE\t0x8F27\n0xDCBF\t0x9920\n0xDCC0\t0x9A08\n0xDCC1\t0x4FDD\n0xDCC2\t0x5821\n0xDCC3\t0x5831\n0xDCC4\t0x5BF6\n0xDCC5\t0x666E\n0xDCC6\t0x6B65\n0xDCC7\t0x6D11\n0xDCC8\t0x6E7A\n0xDCC9\t0x6F7D\n0xDCCA\t0x73E4\n0xDCCB\t0x752B\n0xDCCC\t0x83E9\n0xDCCD\t0x88DC\n0xDCCE\t0x8913\n0xDCCF\t0x8B5C\n0xDCD0\t0x8F14\n0xDCD1\t0x4F0F\n0xDCD2\t0x50D5\n0xDCD3\t0x5310\n0xDCD4\t0x535C\n0xDCD5\t0x5B93\n0xDCD6\t0x5FA9\n0xDCD7\t0x670D\n0xDCD8\t0x798F\n0xDCD9\t0x8179\n0xDCDA\t0x832F\n0xDCDB\t0x8514\n0xDCDC\t0x8907\n0xDCDD\t0x8986\n0xDCDE\t0x8F39\n0xDCDF\t0x8F3B\n0xDCE0\t0x99A5\n0xDCE1\t0x9C12\n0xDCE2\t0x672C\n0xDCE3\t0x4E76\n0xDCE4\t0x4FF8\n0xDCE5\t0x5949\n0xDCE6\t0x5C01\n0xDCE7\t0x5CEF\n0xDCE8\t0x5CF0\n0xDCE9\t0x6367\n0xDCEA\t0x68D2\n0xDCEB\t0x70FD\n0xDCEC\t0x71A2\n0xDCED\t0x742B\n0xDCEE\t0x7E2B\n0xDCEF\t0x84EC\n0xDCF0\t0x8702\n0xDCF1\t0x9022\n0xDCF2\t0x92D2\n0xDCF3\t0x9CF3\n0xDCF4\t0x4E0D\n0xDCF5\t0x4ED8\n0xDCF6\t0x4FEF\n0xDCF7\t0x5085\n0xDCF8\t0x5256\n0xDCF9\t0x526F\n0xDCFA\t0x5426\n0xDCFB\t0x5490\n0xDCFC\t0x57E0\n0xDCFD\t0x592B\n0xDCFE\t0x5A66\n0xDDA1\t0x5B5A\n0xDDA2\t0x5B75\n0xDDA3\t0x5BCC\n0xDDA4\t0x5E9C\n0xDDA5\t0xF966\n0xDDA6\t0x6276\n0xDDA7\t0x6577\n0xDDA8\t0x65A7\n0xDDA9\t0x6D6E\n0xDDAA\t0x6EA5\n0xDDAB\t0x7236\n0xDDAC\t0x7B26\n0xDDAD\t0x7C3F\n0xDDAE\t0x7F36\n0xDDAF\t0x8150\n0xDDB0\t0x8151\n0xDDB1\t0x819A\n0xDDB2\t0x8240\n0xDDB3\t0x8299\n0xDDB4\t0x83A9\n0xDDB5\t0x8A03\n0xDDB6\t0x8CA0\n0xDDB7\t0x8CE6\n0xDDB8\t0x8CFB\n0xDDB9\t0x8D74\n0xDDBA\t0x8DBA\n0xDDBB\t0x90E8\n0xDDBC\t0x91DC\n0xDDBD\t0x961C\n0xDDBE\t0x9644\n0xDDBF\t0x99D9\n0xDDC0\t0x9CE7\n0xDDC1\t0x5317\n0xDDC2\t0x5206\n0xDDC3\t0x5429\n0xDDC4\t0x5674\n0xDDC5\t0x58B3\n0xDDC6\t0x5954\n0xDDC7\t0x596E\n0xDDC8\t0x5FFF\n0xDDC9\t0x61A4\n0xDDCA\t0x626E\n0xDDCB\t0x6610\n0xDDCC\t0x6C7E\n0xDDCD\t0x711A\n0xDDCE\t0x76C6\n0xDDCF\t0x7C89\n0xDDD0\t0x7CDE\n0xDDD1\t0x7D1B\n0xDDD2\t0x82AC\n0xDDD3\t0x8CC1\n0xDDD4\t0x96F0\n0xDDD5\t0xF967\n0xDDD6\t0x4F5B\n0xDDD7\t0x5F17\n0xDDD8\t0x5F7F\n0xDDD9\t0x62C2\n0xDDDA\t0x5D29\n0xDDDB\t0x670B\n0xDDDC\t0x68DA\n0xDDDD\t0x787C\n0xDDDE\t0x7E43\n0xDDDF\t0x9D6C\n0xDDE0\t0x4E15\n0xDDE1\t0x5099\n0xDDE2\t0x5315\n0xDDE3\t0x532A\n0xDDE4\t0x5351\n0xDDE5\t0x5983\n0xDDE6\t0x5A62\n0xDDE7\t0x5E87\n0xDDE8\t0x60B2\n0xDDE9\t0x618A\n0xDDEA\t0x6249\n0xDDEB\t0x6279\n0xDDEC\t0x6590\n0xDDED\t0x6787\n0xDDEE\t0x69A7\n0xDDEF\t0x6BD4\n0xDDF0\t0x6BD6\n0xDDF1\t0x6BD7\n0xDDF2\t0x6BD8\n0xDDF3\t0x6CB8\n0xDDF4\t0xF968\n0xDDF5\t0x7435\n0xDDF6\t0x75FA\n0xDDF7\t0x7812\n0xDDF8\t0x7891\n0xDDF9\t0x79D5\n0xDDFA\t0x79D8\n0xDDFB\t0x7C83\n0xDDFC\t0x7DCB\n0xDDFD\t0x7FE1\n0xDDFE\t0x80A5\n0xDEA1\t0x813E\n0xDEA2\t0x81C2\n0xDEA3\t0x83F2\n0xDEA4\t0x871A\n0xDEA5\t0x88E8\n0xDEA6\t0x8AB9\n0xDEA7\t0x8B6C\n0xDEA8\t0x8CBB\n0xDEA9\t0x9119\n0xDEAA\t0x975E\n0xDEAB\t0x98DB\n0xDEAC\t0x9F3B\n0xDEAD\t0x56AC\n0xDEAE\t0x5B2A\n0xDEAF\t0x5F6C\n0xDEB0\t0x658C\n0xDEB1\t0x6AB3\n0xDEB2\t0x6BAF\n0xDEB3\t0x6D5C\n0xDEB4\t0x6FF1\n0xDEB5\t0x7015\n0xDEB6\t0x725D\n0xDEB7\t0x73AD\n0xDEB8\t0x8CA7\n0xDEB9\t0x8CD3\n0xDEBA\t0x983B\n0xDEBB\t0x6191\n0xDEBC\t0x6C37\n0xDEBD\t0x8058\n0xDEBE\t0x9A01\n0xDEBF\t0x4E4D\n0xDEC0\t0x4E8B\n0xDEC1\t0x4E9B\n0xDEC2\t0x4ED5\n0xDEC3\t0x4F3A\n0xDEC4\t0x4F3C\n0xDEC5\t0x4F7F\n0xDEC6\t0x4FDF\n0xDEC7\t0x50FF\n0xDEC8\t0x53F2\n0xDEC9\t0x53F8\n0xDECA\t0x5506\n0xDECB\t0x55E3\n0xDECC\t0x56DB\n0xDECD\t0x58EB\n0xDECE\t0x5962\n0xDECF\t0x5A11\n0xDED0\t0x5BEB\n0xDED1\t0x5BFA\n0xDED2\t0x5C04\n0xDED3\t0x5DF3\n0xDED4\t0x5E2B\n0xDED5\t0x5F99\n0xDED6\t0x601D\n0xDED7\t0x6368\n0xDED8\t0x659C\n0xDED9\t0x65AF\n0xDEDA\t0x67F6\n0xDEDB\t0x67FB\n0xDEDC\t0x68AD\n0xDEDD\t0x6B7B\n0xDEDE\t0x6C99\n0xDEDF\t0x6CD7\n0xDEE0\t0x6E23\n0xDEE1\t0x7009\n0xDEE2\t0x7345\n0xDEE3\t0x7802\n0xDEE4\t0x793E\n0xDEE5\t0x7940\n0xDEE6\t0x7960\n0xDEE7\t0x79C1\n0xDEE8\t0x7BE9\n0xDEE9\t0x7D17\n0xDEEA\t0x7D72\n0xDEEB\t0x8086\n0xDEEC\t0x820D\n0xDEED\t0x838E\n0xDEEE\t0x84D1\n0xDEEF\t0x86C7\n0xDEF0\t0x88DF\n0xDEF1\t0x8A50\n0xDEF2\t0x8A5E\n0xDEF3\t0x8B1D\n0xDEF4\t0x8CDC\n0xDEF5\t0x8D66\n0xDEF6\t0x8FAD\n0xDEF7\t0x90AA\n0xDEF8\t0x98FC\n0xDEF9\t0x99DF\n0xDEFA\t0x9E9D\n0xDEFB\t0x524A\n0xDEFC\t0xF969\n0xDEFD\t0x6714\n0xDEFE\t0xF96A\n0xDFA1\t0x5098\n0xDFA2\t0x522A\n0xDFA3\t0x5C71\n0xDFA4\t0x6563\n0xDFA5\t0x6C55\n0xDFA6\t0x73CA\n0xDFA7\t0x7523\n0xDFA8\t0x759D\n0xDFA9\t0x7B97\n0xDFAA\t0x849C\n0xDFAB\t0x9178\n0xDFAC\t0x9730\n0xDFAD\t0x4E77\n0xDFAE\t0x6492\n0xDFAF\t0x6BBA\n0xDFB0\t0x715E\n0xDFB1\t0x85A9\n0xDFB2\t0x4E09\n0xDFB3\t0xF96B\n0xDFB4\t0x6749\n0xDFB5\t0x68EE\n0xDFB6\t0x6E17\n0xDFB7\t0x829F\n0xDFB8\t0x8518\n0xDFB9\t0x886B\n0xDFBA\t0x63F7\n0xDFBB\t0x6F81\n0xDFBC\t0x9212\n0xDFBD\t0x98AF\n0xDFBE\t0x4E0A\n0xDFBF\t0x50B7\n0xDFC0\t0x50CF\n0xDFC1\t0x511F\n0xDFC2\t0x5546\n0xDFC3\t0x55AA\n0xDFC4\t0x5617\n0xDFC5\t0x5B40\n0xDFC6\t0x5C19\n0xDFC7\t0x5CE0\n0xDFC8\t0x5E38\n0xDFC9\t0x5E8A\n0xDFCA\t0x5EA0\n0xDFCB\t0x5EC2\n0xDFCC\t0x60F3\n0xDFCD\t0x6851\n0xDFCE\t0x6A61\n0xDFCF\t0x6E58\n0xDFD0\t0x723D\n0xDFD1\t0x7240\n0xDFD2\t0x72C0\n0xDFD3\t0x76F8\n0xDFD4\t0x7965\n0xDFD5\t0x7BB1\n0xDFD6\t0x7FD4\n0xDFD7\t0x88F3\n0xDFD8\t0x89F4\n0xDFD9\t0x8A73\n0xDFDA\t0x8C61\n0xDFDB\t0x8CDE\n0xDFDC\t0x971C\n0xDFDD\t0x585E\n0xDFDE\t0x74BD\n0xDFDF\t0x8CFD\n0xDFE0\t0x55C7\n0xDFE1\t0xF96C\n0xDFE2\t0x7A61\n0xDFE3\t0x7D22\n0xDFE4\t0x8272\n0xDFE5\t0x7272\n0xDFE6\t0x751F\n0xDFE7\t0x7525\n0xDFE8\t0xF96D\n0xDFE9\t0x7B19\n0xDFEA\t0x5885\n0xDFEB\t0x58FB\n0xDFEC\t0x5DBC\n0xDFED\t0x5E8F\n0xDFEE\t0x5EB6\n0xDFEF\t0x5F90\n0xDFF0\t0x6055\n0xDFF1\t0x6292\n0xDFF2\t0x637F\n0xDFF3\t0x654D\n0xDFF4\t0x6691\n0xDFF5\t0x66D9\n0xDFF6\t0x66F8\n0xDFF7\t0x6816\n0xDFF8\t0x68F2\n0xDFF9\t0x7280\n0xDFFA\t0x745E\n0xDFFB\t0x7B6E\n0xDFFC\t0x7D6E\n0xDFFD\t0x7DD6\n0xDFFE\t0x7F72\n0xE0A1\t0x80E5\n0xE0A2\t0x8212\n0xE0A3\t0x85AF\n0xE0A4\t0x897F\n0xE0A5\t0x8A93\n0xE0A6\t0x901D\n0xE0A7\t0x92E4\n0xE0A8\t0x9ECD\n0xE0A9\t0x9F20\n0xE0AA\t0x5915\n0xE0AB\t0x596D\n0xE0AC\t0x5E2D\n0xE0AD\t0x60DC\n0xE0AE\t0x6614\n0xE0AF\t0x6673\n0xE0B0\t0x6790\n0xE0B1\t0x6C50\n0xE0B2\t0x6DC5\n0xE0B3\t0x6F5F\n0xE0B4\t0x77F3\n0xE0B5\t0x78A9\n0xE0B6\t0x84C6\n0xE0B7\t0x91CB\n0xE0B8\t0x932B\n0xE0B9\t0x4ED9\n0xE0BA\t0x50CA\n0xE0BB\t0x5148\n0xE0BC\t0x5584\n0xE0BD\t0x5B0B\n0xE0BE\t0x5BA3\n0xE0BF\t0x6247\n0xE0C0\t0x657E\n0xE0C1\t0x65CB\n0xE0C2\t0x6E32\n0xE0C3\t0x717D\n0xE0C4\t0x7401\n0xE0C5\t0x7444\n0xE0C6\t0x7487\n0xE0C7\t0x74BF\n0xE0C8\t0x766C\n0xE0C9\t0x79AA\n0xE0CA\t0x7DDA\n0xE0CB\t0x7E55\n0xE0CC\t0x7FA8\n0xE0CD\t0x817A\n0xE0CE\t0x81B3\n0xE0CF\t0x8239\n0xE0D0\t0x861A\n0xE0D1\t0x87EC\n0xE0D2\t0x8A75\n0xE0D3\t0x8DE3\n0xE0D4\t0x9078\n0xE0D5\t0x9291\n0xE0D6\t0x9425\n0xE0D7\t0x994D\n0xE0D8\t0x9BAE\n0xE0D9\t0x5368\n0xE0DA\t0x5C51\n0xE0DB\t0x6954\n0xE0DC\t0x6CC4\n0xE0DD\t0x6D29\n0xE0DE\t0x6E2B\n0xE0DF\t0x820C\n0xE0E0\t0x859B\n0xE0E1\t0x893B\n0xE0E2\t0x8A2D\n0xE0E3\t0x8AAA\n0xE0E4\t0x96EA\n0xE0E5\t0x9F67\n0xE0E6\t0x5261\n0xE0E7\t0x66B9\n0xE0E8\t0x6BB2\n0xE0E9\t0x7E96\n0xE0EA\t0x87FE\n0xE0EB\t0x8D0D\n0xE0EC\t0x9583\n0xE0ED\t0x965D\n0xE0EE\t0x651D\n0xE0EF\t0x6D89\n0xE0F0\t0x71EE\n0xE0F1\t0xF96E\n0xE0F2\t0x57CE\n0xE0F3\t0x59D3\n0xE0F4\t0x5BAC\n0xE0F5\t0x6027\n0xE0F6\t0x60FA\n0xE0F7\t0x6210\n0xE0F8\t0x661F\n0xE0F9\t0x665F\n0xE0FA\t0x7329\n0xE0FB\t0x73F9\n0xE0FC\t0x76DB\n0xE0FD\t0x7701\n0xE0FE\t0x7B6C\n0xE1A1\t0x8056\n0xE1A2\t0x8072\n0xE1A3\t0x8165\n0xE1A4\t0x8AA0\n0xE1A5\t0x9192\n0xE1A6\t0x4E16\n0xE1A7\t0x52E2\n0xE1A8\t0x6B72\n0xE1A9\t0x6D17\n0xE1AA\t0x7A05\n0xE1AB\t0x7B39\n0xE1AC\t0x7D30\n0xE1AD\t0xF96F\n0xE1AE\t0x8CB0\n0xE1AF\t0x53EC\n0xE1B0\t0x562F\n0xE1B1\t0x5851\n0xE1B2\t0x5BB5\n0xE1B3\t0x5C0F\n0xE1B4\t0x5C11\n0xE1B5\t0x5DE2\n0xE1B6\t0x6240\n0xE1B7\t0x6383\n0xE1B8\t0x6414\n0xE1B9\t0x662D\n0xE1BA\t0x68B3\n0xE1BB\t0x6CBC\n0xE1BC\t0x6D88\n0xE1BD\t0x6EAF\n0xE1BE\t0x701F\n0xE1BF\t0x70A4\n0xE1C0\t0x71D2\n0xE1C1\t0x7526\n0xE1C2\t0x758F\n0xE1C3\t0x758E\n0xE1C4\t0x7619\n0xE1C5\t0x7B11\n0xE1C6\t0x7BE0\n0xE1C7\t0x7C2B\n0xE1C8\t0x7D20\n0xE1C9\t0x7D39\n0xE1CA\t0x852C\n0xE1CB\t0x856D\n0xE1CC\t0x8607\n0xE1CD\t0x8A34\n0xE1CE\t0x900D\n0xE1CF\t0x9061\n0xE1D0\t0x90B5\n0xE1D1\t0x92B7\n0xE1D2\t0x97F6\n0xE1D3\t0x9A37\n0xE1D4\t0x4FD7\n0xE1D5\t0x5C6C\n0xE1D6\t0x675F\n0xE1D7\t0x6D91\n0xE1D8\t0x7C9F\n0xE1D9\t0x7E8C\n0xE1DA\t0x8B16\n0xE1DB\t0x8D16\n0xE1DC\t0x901F\n0xE1DD\t0x5B6B\n0xE1DE\t0x5DFD\n0xE1DF\t0x640D\n0xE1E0\t0x84C0\n0xE1E1\t0x905C\n0xE1E2\t0x98E1\n0xE1E3\t0x7387\n0xE1E4\t0x5B8B\n0xE1E5\t0x609A\n0xE1E6\t0x677E\n0xE1E7\t0x6DDE\n0xE1E8\t0x8A1F\n0xE1E9\t0x8AA6\n0xE1EA\t0x9001\n0xE1EB\t0x980C\n0xE1EC\t0x5237\n0xE1ED\t0xF970\n0xE1EE\t0x7051\n0xE1EF\t0x788E\n0xE1F0\t0x9396\n0xE1F1\t0x8870\n0xE1F2\t0x91D7\n0xE1F3\t0x4FEE\n0xE1F4\t0x53D7\n0xE1F5\t0x55FD\n0xE1F6\t0x56DA\n0xE1F7\t0x5782\n0xE1F8\t0x58FD\n0xE1F9\t0x5AC2\n0xE1FA\t0x5B88\n0xE1FB\t0x5CAB\n0xE1FC\t0x5CC0\n0xE1FD\t0x5E25\n0xE1FE\t0x6101\n0xE2A1\t0x620D\n0xE2A2\t0x624B\n0xE2A3\t0x6388\n0xE2A4\t0x641C\n0xE2A5\t0x6536\n0xE2A6\t0x6578\n0xE2A7\t0x6A39\n0xE2A8\t0x6B8A\n0xE2A9\t0x6C34\n0xE2AA\t0x6D19\n0xE2AB\t0x6F31\n0xE2AC\t0x71E7\n0xE2AD\t0x72E9\n0xE2AE\t0x7378\n0xE2AF\t0x7407\n0xE2B0\t0x74B2\n0xE2B1\t0x7626\n0xE2B2\t0x7761\n0xE2B3\t0x79C0\n0xE2B4\t0x7A57\n0xE2B5\t0x7AEA\n0xE2B6\t0x7CB9\n0xE2B7\t0x7D8F\n0xE2B8\t0x7DAC\n0xE2B9\t0x7E61\n0xE2BA\t0x7F9E\n0xE2BB\t0x8129\n0xE2BC\t0x8331\n0xE2BD\t0x8490\n0xE2BE\t0x84DA\n0xE2BF\t0x85EA\n0xE2C0\t0x8896\n0xE2C1\t0x8AB0\n0xE2C2\t0x8B90\n0xE2C3\t0x8F38\n0xE2C4\t0x9042\n0xE2C5\t0x9083\n0xE2C6\t0x916C\n0xE2C7\t0x9296\n0xE2C8\t0x92B9\n0xE2C9\t0x968B\n0xE2CA\t0x96A7\n0xE2CB\t0x96A8\n0xE2CC\t0x96D6\n0xE2CD\t0x9700\n0xE2CE\t0x9808\n0xE2CF\t0x9996\n0xE2D0\t0x9AD3\n0xE2D1\t0x9B1A\n0xE2D2\t0x53D4\n0xE2D3\t0x587E\n0xE2D4\t0x5919\n0xE2D5\t0x5B70\n0xE2D6\t0x5BBF\n0xE2D7\t0x6DD1\n0xE2D8\t0x6F5A\n0xE2D9\t0x719F\n0xE2DA\t0x7421\n0xE2DB\t0x74B9\n0xE2DC\t0x8085\n0xE2DD\t0x83FD\n0xE2DE\t0x5DE1\n0xE2DF\t0x5F87\n0xE2E0\t0x5FAA\n0xE2E1\t0x6042\n0xE2E2\t0x65EC\n0xE2E3\t0x6812\n0xE2E4\t0x696F\n0xE2E5\t0x6A53\n0xE2E6\t0x6B89\n0xE2E7\t0x6D35\n0xE2E8\t0x6DF3\n0xE2E9\t0x73E3\n0xE2EA\t0x76FE\n0xE2EB\t0x77AC\n0xE2EC\t0x7B4D\n0xE2ED\t0x7D14\n0xE2EE\t0x8123\n0xE2EF\t0x821C\n0xE2F0\t0x8340\n0xE2F1\t0x84F4\n0xE2F2\t0x8563\n0xE2F3\t0x8A62\n0xE2F4\t0x8AC4\n0xE2F5\t0x9187\n0xE2F6\t0x931E\n0xE2F7\t0x9806\n0xE2F8\t0x99B4\n0xE2F9\t0x620C\n0xE2FA\t0x8853\n0xE2FB\t0x8FF0\n0xE2FC\t0x9265\n0xE2FD\t0x5D07\n0xE2FE\t0x5D27\n0xE3A1\t0x5D69\n0xE3A2\t0x745F\n0xE3A3\t0x819D\n0xE3A4\t0x8768\n0xE3A5\t0x6FD5\n0xE3A6\t0x62FE\n0xE3A7\t0x7FD2\n0xE3A8\t0x8936\n0xE3A9\t0x8972\n0xE3AA\t0x4E1E\n0xE3AB\t0x4E58\n0xE3AC\t0x50E7\n0xE3AD\t0x52DD\n0xE3AE\t0x5347\n0xE3AF\t0x627F\n0xE3B0\t0x6607\n0xE3B1\t0x7E69\n0xE3B2\t0x8805\n0xE3B3\t0x965E\n0xE3B4\t0x4F8D\n0xE3B5\t0x5319\n0xE3B6\t0x5636\n0xE3B7\t0x59CB\n0xE3B8\t0x5AA4\n0xE3B9\t0x5C38\n0xE3BA\t0x5C4E\n0xE3BB\t0x5C4D\n0xE3BC\t0x5E02\n0xE3BD\t0x5F11\n0xE3BE\t0x6043\n0xE3BF\t0x65BD\n0xE3C0\t0x662F\n0xE3C1\t0x6642\n0xE3C2\t0x67BE\n0xE3C3\t0x67F4\n0xE3C4\t0x731C\n0xE3C5\t0x77E2\n0xE3C6\t0x793A\n0xE3C7\t0x7FC5\n0xE3C8\t0x8494\n0xE3C9\t0x84CD\n0xE3CA\t0x8996\n0xE3CB\t0x8A66\n0xE3CC\t0x8A69\n0xE3CD\t0x8AE1\n0xE3CE\t0x8C55\n0xE3CF\t0x8C7A\n0xE3D0\t0x57F4\n0xE3D1\t0x5BD4\n0xE3D2\t0x5F0F\n0xE3D3\t0x606F\n0xE3D4\t0x62ED\n0xE3D5\t0x690D\n0xE3D6\t0x6B96\n0xE3D7\t0x6E5C\n0xE3D8\t0x7184\n0xE3D9\t0x7BD2\n0xE3DA\t0x8755\n0xE3DB\t0x8B58\n0xE3DC\t0x8EFE\n0xE3DD\t0x98DF\n0xE3DE\t0x98FE\n0xE3DF\t0x4F38\n0xE3E0\t0x4F81\n0xE3E1\t0x4FE1\n0xE3E2\t0x547B\n0xE3E3\t0x5A20\n0xE3E4\t0x5BB8\n0xE3E5\t0x613C\n0xE3E6\t0x65B0\n0xE3E7\t0x6668\n0xE3E8\t0x71FC\n0xE3E9\t0x7533\n0xE3EA\t0x795E\n0xE3EB\t0x7D33\n0xE3EC\t0x814E\n0xE3ED\t0x81E3\n0xE3EE\t0x8398\n0xE3EF\t0x85AA\n0xE3F0\t0x85CE\n0xE3F1\t0x8703\n0xE3F2\t0x8A0A\n0xE3F3\t0x8EAB\n0xE3F4\t0x8F9B\n0xE3F5\t0xF971\n0xE3F6\t0x8FC5\n0xE3F7\t0x5931\n0xE3F8\t0x5BA4\n0xE3F9\t0x5BE6\n0xE3FA\t0x6089\n0xE3FB\t0x5BE9\n0xE3FC\t0x5C0B\n0xE3FD\t0x5FC3\n0xE3FE\t0x6C81\n0xE4A1\t0xF972\n0xE4A2\t0x6DF1\n0xE4A3\t0x700B\n0xE4A4\t0x751A\n0xE4A5\t0x82AF\n0xE4A6\t0x8AF6\n0xE4A7\t0x4EC0\n0xE4A8\t0x5341\n0xE4A9\t0xF973\n0xE4AA\t0x96D9\n0xE4AB\t0x6C0F\n0xE4AC\t0x4E9E\n0xE4AD\t0x4FC4\n0xE4AE\t0x5152\n0xE4AF\t0x555E\n0xE4B0\t0x5A25\n0xE4B1\t0x5CE8\n0xE4B2\t0x6211\n0xE4B3\t0x7259\n0xE4B4\t0x82BD\n0xE4B5\t0x83AA\n0xE4B6\t0x86FE\n0xE4B7\t0x8859\n0xE4B8\t0x8A1D\n0xE4B9\t0x963F\n0xE4BA\t0x96C5\n0xE4BB\t0x9913\n0xE4BC\t0x9D09\n0xE4BD\t0x9D5D\n0xE4BE\t0x580A\n0xE4BF\t0x5CB3\n0xE4C0\t0x5DBD\n0xE4C1\t0x5E44\n0xE4C2\t0x60E1\n0xE4C3\t0x6115\n0xE4C4\t0x63E1\n0xE4C5\t0x6A02\n0xE4C6\t0x6E25\n0xE4C7\t0x9102\n0xE4C8\t0x9354\n0xE4C9\t0x984E\n0xE4CA\t0x9C10\n0xE4CB\t0x9F77\n0xE4CC\t0x5B89\n0xE4CD\t0x5CB8\n0xE4CE\t0x6309\n0xE4CF\t0x664F\n0xE4D0\t0x6848\n0xE4D1\t0x773C\n0xE4D2\t0x96C1\n0xE4D3\t0x978D\n0xE4D4\t0x9854\n0xE4D5\t0x9B9F\n0xE4D6\t0x65A1\n0xE4D7\t0x8B01\n0xE4D8\t0x8ECB\n0xE4D9\t0x95BC\n0xE4DA\t0x5535\n0xE4DB\t0x5CA9\n0xE4DC\t0x5DD6\n0xE4DD\t0x5EB5\n0xE4DE\t0x6697\n0xE4DF\t0x764C\n0xE4E0\t0x83F4\n0xE4E1\t0x95C7\n0xE4E2\t0x58D3\n0xE4E3\t0x62BC\n0xE4E4\t0x72CE\n0xE4E5\t0x9D28\n0xE4E6\t0x4EF0\n0xE4E7\t0x592E\n0xE4E8\t0x600F\n0xE4E9\t0x663B\n0xE4EA\t0x6B83\n0xE4EB\t0x79E7\n0xE4EC\t0x9D26\n0xE4ED\t0x5393\n0xE4EE\t0x54C0\n0xE4EF\t0x57C3\n0xE4F0\t0x5D16\n0xE4F1\t0x611B\n0xE4F2\t0x66D6\n0xE4F3\t0x6DAF\n0xE4F4\t0x788D\n0xE4F5\t0x827E\n0xE4F6\t0x9698\n0xE4F7\t0x9744\n0xE4F8\t0x5384\n0xE4F9\t0x627C\n0xE4FA\t0x6396\n0xE4FB\t0x6DB2\n0xE4FC\t0x7E0A\n0xE4FD\t0x814B\n0xE4FE\t0x984D\n0xE5A1\t0x6AFB\n0xE5A2\t0x7F4C\n0xE5A3\t0x9DAF\n0xE5A4\t0x9E1A\n0xE5A5\t0x4E5F\n0xE5A6\t0x503B\n0xE5A7\t0x51B6\n0xE5A8\t0x591C\n0xE5A9\t0x60F9\n0xE5AA\t0x63F6\n0xE5AB\t0x6930\n0xE5AC\t0x723A\n0xE5AD\t0x8036\n0xE5AE\t0xF974\n0xE5AF\t0x91CE\n0xE5B0\t0x5F31\n0xE5B1\t0xF975\n0xE5B2\t0xF976\n0xE5B3\t0x7D04\n0xE5B4\t0x82E5\n0xE5B5\t0x846F\n0xE5B6\t0x84BB\n0xE5B7\t0x85E5\n0xE5B8\t0x8E8D\n0xE5B9\t0xF977\n0xE5BA\t0x4F6F\n0xE5BB\t0xF978\n0xE5BC\t0xF979\n0xE5BD\t0x58E4\n0xE5BE\t0x5B43\n0xE5BF\t0x6059\n0xE5C0\t0x63DA\n0xE5C1\t0x6518\n0xE5C2\t0x656D\n0xE5C3\t0x6698\n0xE5C4\t0xF97A\n0xE5C5\t0x694A\n0xE5C6\t0x6A23\n0xE5C7\t0x6D0B\n0xE5C8\t0x7001\n0xE5C9\t0x716C\n0xE5CA\t0x75D2\n0xE5CB\t0x760D\n0xE5CC\t0x79B3\n0xE5CD\t0x7A70\n0xE5CE\t0xF97B\n0xE5CF\t0x7F8A\n0xE5D0\t0xF97C\n0xE5D1\t0x8944\n0xE5D2\t0xF97D\n0xE5D3\t0x8B93\n0xE5D4\t0x91C0\n0xE5D5\t0x967D\n0xE5D6\t0xF97E\n0xE5D7\t0x990A\n0xE5D8\t0x5704\n0xE5D9\t0x5FA1\n0xE5DA\t0x65BC\n0xE5DB\t0x6F01\n0xE5DC\t0x7600\n0xE5DD\t0x79A6\n0xE5DE\t0x8A9E\n0xE5DF\t0x99AD\n0xE5E0\t0x9B5A\n0xE5E1\t0x9F6C\n0xE5E2\t0x5104\n0xE5E3\t0x61B6\n0xE5E4\t0x6291\n0xE5E5\t0x6A8D\n0xE5E6\t0x81C6\n0xE5E7\t0x5043\n0xE5E8\t0x5830\n0xE5E9\t0x5F66\n0xE5EA\t0x7109\n0xE5EB\t0x8A00\n0xE5EC\t0x8AFA\n0xE5ED\t0x5B7C\n0xE5EE\t0x8616\n0xE5EF\t0x4FFA\n0xE5F0\t0x513C\n0xE5F1\t0x56B4\n0xE5F2\t0x5944\n0xE5F3\t0x63A9\n0xE5F4\t0x6DF9\n0xE5F5\t0x5DAA\n0xE5F6\t0x696D\n0xE5F7\t0x5186\n0xE5F8\t0x4E88\n0xE5F9\t0x4F59\n0xE5FA\t0xF97F\n0xE5FB\t0xF980\n0xE5FC\t0xF981\n0xE5FD\t0x5982\n0xE5FE\t0xF982\n0xE6A1\t0xF983\n0xE6A2\t0x6B5F\n0xE6A3\t0x6C5D\n0xE6A4\t0xF984\n0xE6A5\t0x74B5\n0xE6A6\t0x7916\n0xE6A7\t0xF985\n0xE6A8\t0x8207\n0xE6A9\t0x8245\n0xE6AA\t0x8339\n0xE6AB\t0x8F3F\n0xE6AC\t0x8F5D\n0xE6AD\t0xF986\n0xE6AE\t0x9918\n0xE6AF\t0xF987\n0xE6B0\t0xF988\n0xE6B1\t0xF989\n0xE6B2\t0x4EA6\n0xE6B3\t0xF98A\n0xE6B4\t0x57DF\n0xE6B5\t0x5F79\n0xE6B6\t0x6613\n0xE6B7\t0xF98B\n0xE6B8\t0xF98C\n0xE6B9\t0x75AB\n0xE6BA\t0x7E79\n0xE6BB\t0x8B6F\n0xE6BC\t0xF98D\n0xE6BD\t0x9006\n0xE6BE\t0x9A5B\n0xE6BF\t0x56A5\n0xE6C0\t0x5827\n0xE6C1\t0x59F8\n0xE6C2\t0x5A1F\n0xE6C3\t0x5BB4\n0xE6C4\t0xF98E\n0xE6C5\t0x5EF6\n0xE6C6\t0xF98F\n0xE6C7\t0xF990\n0xE6C8\t0x6350\n0xE6C9\t0x633B\n0xE6CA\t0xF991\n0xE6CB\t0x693D\n0xE6CC\t0x6C87\n0xE6CD\t0x6CBF\n0xE6CE\t0x6D8E\n0xE6CF\t0x6D93\n0xE6D0\t0x6DF5\n0xE6D1\t0x6F14\n0xE6D2\t0xF992\n0xE6D3\t0x70DF\n0xE6D4\t0x7136\n0xE6D5\t0x7159\n0xE6D6\t0xF993\n0xE6D7\t0x71C3\n0xE6D8\t0x71D5\n0xE6D9\t0xF994\n0xE6DA\t0x784F\n0xE6DB\t0x786F\n0xE6DC\t0xF995\n0xE6DD\t0x7B75\n0xE6DE\t0x7DE3\n0xE6DF\t0xF996\n0xE6E0\t0x7E2F\n0xE6E1\t0xF997\n0xE6E2\t0x884D\n0xE6E3\t0x8EDF\n0xE6E4\t0xF998\n0xE6E5\t0xF999\n0xE6E6\t0xF99A\n0xE6E7\t0x925B\n0xE6E8\t0xF99B\n0xE6E9\t0x9CF6\n0xE6EA\t0xF99C\n0xE6EB\t0xF99D\n0xE6EC\t0xF99E\n0xE6ED\t0x6085\n0xE6EE\t0x6D85\n0xE6EF\t0xF99F\n0xE6F0\t0x71B1\n0xE6F1\t0xF9A0\n0xE6F2\t0xF9A1\n0xE6F3\t0x95B1\n0xE6F4\t0x53AD\n0xE6F5\t0xF9A2\n0xE6F6\t0xF9A3\n0xE6F7\t0xF9A4\n0xE6F8\t0x67D3\n0xE6F9\t0xF9A5\n0xE6FA\t0x708E\n0xE6FB\t0x7130\n0xE6FC\t0x7430\n0xE6FD\t0x8276\n0xE6FE\t0x82D2\n0xE7A1\t0xF9A6\n0xE7A2\t0x95BB\n0xE7A3\t0x9AE5\n0xE7A4\t0x9E7D\n0xE7A5\t0x66C4\n0xE7A6\t0xF9A7\n0xE7A7\t0x71C1\n0xE7A8\t0x8449\n0xE7A9\t0xF9A8\n0xE7AA\t0xF9A9\n0xE7AB\t0x584B\n0xE7AC\t0xF9AA\n0xE7AD\t0xF9AB\n0xE7AE\t0x5DB8\n0xE7AF\t0x5F71\n0xE7B0\t0xF9AC\n0xE7B1\t0x6620\n0xE7B2\t0x668E\n0xE7B3\t0x6979\n0xE7B4\t0x69AE\n0xE7B5\t0x6C38\n0xE7B6\t0x6CF3\n0xE7B7\t0x6E36\n0xE7B8\t0x6F41\n0xE7B9\t0x6FDA\n0xE7BA\t0x701B\n0xE7BB\t0x702F\n0xE7BC\t0x7150\n0xE7BD\t0x71DF\n0xE7BE\t0x7370\n0xE7BF\t0xF9AD\n0xE7C0\t0x745B\n0xE7C1\t0xF9AE\n0xE7C2\t0x74D4\n0xE7C3\t0x76C8\n0xE7C4\t0x7A4E\n0xE7C5\t0x7E93\n0xE7C6\t0xF9AF\n0xE7C7\t0xF9B0\n0xE7C8\t0x82F1\n0xE7C9\t0x8A60\n0xE7CA\t0x8FCE\n0xE7CB\t0xF9B1\n0xE7CC\t0x9348\n0xE7CD\t0xF9B2\n0xE7CE\t0x9719\n0xE7CF\t0xF9B3\n0xE7D0\t0xF9B4\n0xE7D1\t0x4E42\n0xE7D2\t0x502A\n0xE7D3\t0xF9B5\n0xE7D4\t0x5208\n0xE7D5\t0x53E1\n0xE7D6\t0x66F3\n0xE7D7\t0x6C6D\n0xE7D8\t0x6FCA\n0xE7D9\t0x730A\n0xE7DA\t0x777F\n0xE7DB\t0x7A62\n0xE7DC\t0x82AE\n0xE7DD\t0x85DD\n0xE7DE\t0x8602\n0xE7DF\t0xF9B6\n0xE7E0\t0x88D4\n0xE7E1\t0x8A63\n0xE7E2\t0x8B7D\n0xE7E3\t0x8C6B\n0xE7E4\t0xF9B7\n0xE7E5\t0x92B3\n0xE7E6\t0xF9B8\n0xE7E7\t0x9713\n0xE7E8\t0x9810\n0xE7E9\t0x4E94\n0xE7EA\t0x4F0D\n0xE7EB\t0x4FC9\n0xE7EC\t0x50B2\n0xE7ED\t0x5348\n0xE7EE\t0x543E\n0xE7EF\t0x5433\n0xE7F0\t0x55DA\n0xE7F1\t0x5862\n0xE7F2\t0x58BA\n0xE7F3\t0x5967\n0xE7F4\t0x5A1B\n0xE7F5\t0x5BE4\n0xE7F6\t0x609F\n0xE7F7\t0xF9B9\n0xE7F8\t0x61CA\n0xE7F9\t0x6556\n0xE7FA\t0x65FF\n0xE7FB\t0x6664\n0xE7FC\t0x68A7\n0xE7FD\t0x6C5A\n0xE7FE\t0x6FB3\n0xE8A1\t0x70CF\n0xE8A2\t0x71AC\n0xE8A3\t0x7352\n0xE8A4\t0x7B7D\n0xE8A5\t0x8708\n0xE8A6\t0x8AA4\n0xE8A7\t0x9C32\n0xE8A8\t0x9F07\n0xE8A9\t0x5C4B\n0xE8AA\t0x6C83\n0xE8AB\t0x7344\n0xE8AC\t0x7389\n0xE8AD\t0x923A\n0xE8AE\t0x6EAB\n0xE8AF\t0x7465\n0xE8B0\t0x761F\n0xE8B1\t0x7A69\n0xE8B2\t0x7E15\n0xE8B3\t0x860A\n0xE8B4\t0x5140\n0xE8B5\t0x58C5\n0xE8B6\t0x64C1\n0xE8B7\t0x74EE\n0xE8B8\t0x7515\n0xE8B9\t0x7670\n0xE8BA\t0x7FC1\n0xE8BB\t0x9095\n0xE8BC\t0x96CD\n0xE8BD\t0x9954\n0xE8BE\t0x6E26\n0xE8BF\t0x74E6\n0xE8C0\t0x7AA9\n0xE8C1\t0x7AAA\n0xE8C2\t0x81E5\n0xE8C3\t0x86D9\n0xE8C4\t0x8778\n0xE8C5\t0x8A1B\n0xE8C6\t0x5A49\n0xE8C7\t0x5B8C\n0xE8C8\t0x5B9B\n0xE8C9\t0x68A1\n0xE8CA\t0x6900\n0xE8CB\t0x6D63\n0xE8CC\t0x73A9\n0xE8CD\t0x7413\n0xE8CE\t0x742C\n0xE8CF\t0x7897\n0xE8D0\t0x7DE9\n0xE8D1\t0x7FEB\n0xE8D2\t0x8118\n0xE8D3\t0x8155\n0xE8D4\t0x839E\n0xE8D5\t0x8C4C\n0xE8D6\t0x962E\n0xE8D7\t0x9811\n0xE8D8\t0x66F0\n0xE8D9\t0x5F80\n0xE8DA\t0x65FA\n0xE8DB\t0x6789\n0xE8DC\t0x6C6A\n0xE8DD\t0x738B\n0xE8DE\t0x502D\n0xE8DF\t0x5A03\n0xE8E0\t0x6B6A\n0xE8E1\t0x77EE\n0xE8E2\t0x5916\n0xE8E3\t0x5D6C\n0xE8E4\t0x5DCD\n0xE8E5\t0x7325\n0xE8E6\t0x754F\n0xE8E7\t0xF9BA\n0xE8E8\t0xF9BB\n0xE8E9\t0x50E5\n0xE8EA\t0x51F9\n0xE8EB\t0x582F\n0xE8EC\t0x592D\n0xE8ED\t0x5996\n0xE8EE\t0x59DA\n0xE8EF\t0x5BE5\n0xE8F0\t0xF9BC\n0xE8F1\t0xF9BD\n0xE8F2\t0x5DA2\n0xE8F3\t0x62D7\n0xE8F4\t0x6416\n0xE8F5\t0x6493\n0xE8F6\t0x64FE\n0xE8F7\t0xF9BE\n0xE8F8\t0x66DC\n0xE8F9\t0xF9BF\n0xE8FA\t0x6A48\n0xE8FB\t0xF9C0\n0xE8FC\t0x71FF\n0xE8FD\t0x7464\n0xE8FE\t0xF9C1\n0xE9A1\t0x7A88\n0xE9A2\t0x7AAF\n0xE9A3\t0x7E47\n0xE9A4\t0x7E5E\n0xE9A5\t0x8000\n0xE9A6\t0x8170\n0xE9A7\t0xF9C2\n0xE9A8\t0x87EF\n0xE9A9\t0x8981\n0xE9AA\t0x8B20\n0xE9AB\t0x9059\n0xE9AC\t0xF9C3\n0xE9AD\t0x9080\n0xE9AE\t0x9952\n0xE9AF\t0x617E\n0xE9B0\t0x6B32\n0xE9B1\t0x6D74\n0xE9B2\t0x7E1F\n0xE9B3\t0x8925\n0xE9B4\t0x8FB1\n0xE9B5\t0x4FD1\n0xE9B6\t0x50AD\n0xE9B7\t0x5197\n0xE9B8\t0x52C7\n0xE9B9\t0x57C7\n0xE9BA\t0x5889\n0xE9BB\t0x5BB9\n0xE9BC\t0x5EB8\n0xE9BD\t0x6142\n0xE9BE\t0x6995\n0xE9BF\t0x6D8C\n0xE9C0\t0x6E67\n0xE9C1\t0x6EB6\n0xE9C2\t0x7194\n0xE9C3\t0x7462\n0xE9C4\t0x7528\n0xE9C5\t0x752C\n0xE9C6\t0x8073\n0xE9C7\t0x8338\n0xE9C8\t0x84C9\n0xE9C9\t0x8E0A\n0xE9CA\t0x9394\n0xE9CB\t0x93DE\n0xE9CC\t0xF9C4\n0xE9CD\t0x4E8E\n0xE9CE\t0x4F51\n0xE9CF\t0x5076\n0xE9D0\t0x512A\n0xE9D1\t0x53C8\n0xE9D2\t0x53CB\n0xE9D3\t0x53F3\n0xE9D4\t0x5B87\n0xE9D5\t0x5BD3\n0xE9D6\t0x5C24\n0xE9D7\t0x611A\n0xE9D8\t0x6182\n0xE9D9\t0x65F4\n0xE9DA\t0x725B\n0xE9DB\t0x7397\n0xE9DC\t0x7440\n0xE9DD\t0x76C2\n0xE9DE\t0x7950\n0xE9DF\t0x7991\n0xE9E0\t0x79B9\n0xE9E1\t0x7D06\n0xE9E2\t0x7FBD\n0xE9E3\t0x828B\n0xE9E4\t0x85D5\n0xE9E5\t0x865E\n0xE9E6\t0x8FC2\n0xE9E7\t0x9047\n0xE9E8\t0x90F5\n0xE9E9\t0x91EA\n0xE9EA\t0x9685\n0xE9EB\t0x96E8\n0xE9EC\t0x96E9\n0xE9ED\t0x52D6\n0xE9EE\t0x5F67\n0xE9EF\t0x65ED\n0xE9F0\t0x6631\n0xE9F1\t0x682F\n0xE9F2\t0x715C\n0xE9F3\t0x7A36\n0xE9F4\t0x90C1\n0xE9F5\t0x980A\n0xE9F6\t0x4E91\n0xE9F7\t0xF9C5\n0xE9F8\t0x6A52\n0xE9F9\t0x6B9E\n0xE9FA\t0x6F90\n0xE9FB\t0x7189\n0xE9FC\t0x8018\n0xE9FD\t0x82B8\n0xE9FE\t0x8553\n0xEAA1\t0x904B\n0xEAA2\t0x9695\n0xEAA3\t0x96F2\n0xEAA4\t0x97FB\n0xEAA5\t0x851A\n0xEAA6\t0x9B31\n0xEAA7\t0x4E90\n0xEAA8\t0x718A\n0xEAA9\t0x96C4\n0xEAAA\t0x5143\n0xEAAB\t0x539F\n0xEAAC\t0x54E1\n0xEAAD\t0x5713\n0xEAAE\t0x5712\n0xEAAF\t0x57A3\n0xEAB0\t0x5A9B\n0xEAB1\t0x5AC4\n0xEAB2\t0x5BC3\n0xEAB3\t0x6028\n0xEAB4\t0x613F\n0xEAB5\t0x63F4\n0xEAB6\t0x6C85\n0xEAB7\t0x6D39\n0xEAB8\t0x6E72\n0xEAB9\t0x6E90\n0xEABA\t0x7230\n0xEABB\t0x733F\n0xEABC\t0x7457\n0xEABD\t0x82D1\n0xEABE\t0x8881\n0xEABF\t0x8F45\n0xEAC0\t0x9060\n0xEAC1\t0xF9C6\n0xEAC2\t0x9662\n0xEAC3\t0x9858\n0xEAC4\t0x9D1B\n0xEAC5\t0x6708\n0xEAC6\t0x8D8A\n0xEAC7\t0x925E\n0xEAC8\t0x4F4D\n0xEAC9\t0x5049\n0xEACA\t0x50DE\n0xEACB\t0x5371\n0xEACC\t0x570D\n0xEACD\t0x59D4\n0xEACE\t0x5A01\n0xEACF\t0x5C09\n0xEAD0\t0x6170\n0xEAD1\t0x6690\n0xEAD2\t0x6E2D\n0xEAD3\t0x7232\n0xEAD4\t0x744B\n0xEAD5\t0x7DEF\n0xEAD6\t0x80C3\n0xEAD7\t0x840E\n0xEAD8\t0x8466\n0xEAD9\t0x853F\n0xEADA\t0x875F\n0xEADB\t0x885B\n0xEADC\t0x8918\n0xEADD\t0x8B02\n0xEADE\t0x9055\n0xEADF\t0x97CB\n0xEAE0\t0x9B4F\n0xEAE1\t0x4E73\n0xEAE2\t0x4F91\n0xEAE3\t0x5112\n0xEAE4\t0x516A\n0xEAE5\t0xF9C7\n0xEAE6\t0x552F\n0xEAE7\t0x55A9\n0xEAE8\t0x5B7A\n0xEAE9\t0x5BA5\n0xEAEA\t0x5E7C\n0xEAEB\t0x5E7D\n0xEAEC\t0x5EBE\n0xEAED\t0x60A0\n0xEAEE\t0x60DF\n0xEAEF\t0x6108\n0xEAF0\t0x6109\n0xEAF1\t0x63C4\n0xEAF2\t0x6538\n0xEAF3\t0x6709\n0xEAF4\t0xF9C8\n0xEAF5\t0x67D4\n0xEAF6\t0x67DA\n0xEAF7\t0xF9C9\n0xEAF8\t0x6961\n0xEAF9\t0x6962\n0xEAFA\t0x6CB9\n0xEAFB\t0x6D27\n0xEAFC\t0xF9CA\n0xEAFD\t0x6E38\n0xEAFE\t0xF9CB\n0xEBA1\t0x6FE1\n0xEBA2\t0x7336\n0xEBA3\t0x7337\n0xEBA4\t0xF9CC\n0xEBA5\t0x745C\n0xEBA6\t0x7531\n0xEBA7\t0xF9CD\n0xEBA8\t0x7652\n0xEBA9\t0xF9CE\n0xEBAA\t0xF9CF\n0xEBAB\t0x7DAD\n0xEBAC\t0x81FE\n0xEBAD\t0x8438\n0xEBAE\t0x88D5\n0xEBAF\t0x8A98\n0xEBB0\t0x8ADB\n0xEBB1\t0x8AED\n0xEBB2\t0x8E30\n0xEBB3\t0x8E42\n0xEBB4\t0x904A\n0xEBB5\t0x903E\n0xEBB6\t0x907A\n0xEBB7\t0x9149\n0xEBB8\t0x91C9\n0xEBB9\t0x936E\n0xEBBA\t0xF9D0\n0xEBBB\t0xF9D1\n0xEBBC\t0x5809\n0xEBBD\t0xF9D2\n0xEBBE\t0x6BD3\n0xEBBF\t0x8089\n0xEBC0\t0x80B2\n0xEBC1\t0xF9D3\n0xEBC2\t0xF9D4\n0xEBC3\t0x5141\n0xEBC4\t0x596B\n0xEBC5\t0x5C39\n0xEBC6\t0xF9D5\n0xEBC7\t0xF9D6\n0xEBC8\t0x6F64\n0xEBC9\t0x73A7\n0xEBCA\t0x80E4\n0xEBCB\t0x8D07\n0xEBCC\t0xF9D7\n0xEBCD\t0x9217\n0xEBCE\t0x958F\n0xEBCF\t0xF9D8\n0xEBD0\t0xF9D9\n0xEBD1\t0xF9DA\n0xEBD2\t0xF9DB\n0xEBD3\t0x807F\n0xEBD4\t0x620E\n0xEBD5\t0x701C\n0xEBD6\t0x7D68\n0xEBD7\t0x878D\n0xEBD8\t0xF9DC\n0xEBD9\t0x57A0\n0xEBDA\t0x6069\n0xEBDB\t0x6147\n0xEBDC\t0x6BB7\n0xEBDD\t0x8ABE\n0xEBDE\t0x9280\n0xEBDF\t0x96B1\n0xEBE0\t0x4E59\n0xEBE1\t0x541F\n0xEBE2\t0x6DEB\n0xEBE3\t0x852D\n0xEBE4\t0x9670\n0xEBE5\t0x97F3\n0xEBE6\t0x98EE\n0xEBE7\t0x63D6\n0xEBE8\t0x6CE3\n0xEBE9\t0x9091\n0xEBEA\t0x51DD\n0xEBEB\t0x61C9\n0xEBEC\t0x81BA\n0xEBED\t0x9DF9\n0xEBEE\t0x4F9D\n0xEBEF\t0x501A\n0xEBF0\t0x5100\n0xEBF1\t0x5B9C\n0xEBF2\t0x610F\n0xEBF3\t0x61FF\n0xEBF4\t0x64EC\n0xEBF5\t0x6905\n0xEBF6\t0x6BC5\n0xEBF7\t0x7591\n0xEBF8\t0x77E3\n0xEBF9\t0x7FA9\n0xEBFA\t0x8264\n0xEBFB\t0x858F\n0xEBFC\t0x87FB\n0xEBFD\t0x8863\n0xEBFE\t0x8ABC\n0xECA1\t0x8B70\n0xECA2\t0x91AB\n0xECA3\t0x4E8C\n0xECA4\t0x4EE5\n0xECA5\t0x4F0A\n0xECA6\t0xF9DD\n0xECA7\t0xF9DE\n0xECA8\t0x5937\n0xECA9\t0x59E8\n0xECAA\t0xF9DF\n0xECAB\t0x5DF2\n0xECAC\t0x5F1B\n0xECAD\t0x5F5B\n0xECAE\t0x6021\n0xECAF\t0xF9E0\n0xECB0\t0xF9E1\n0xECB1\t0xF9E2\n0xECB2\t0xF9E3\n0xECB3\t0x723E\n0xECB4\t0x73E5\n0xECB5\t0xF9E4\n0xECB6\t0x7570\n0xECB7\t0x75CD\n0xECB8\t0xF9E5\n0xECB9\t0x79FB\n0xECBA\t0xF9E6\n0xECBB\t0x800C\n0xECBC\t0x8033\n0xECBD\t0x8084\n0xECBE\t0x82E1\n0xECBF\t0x8351\n0xECC0\t0xF9E7\n0xECC1\t0xF9E8\n0xECC2\t0x8CBD\n0xECC3\t0x8CB3\n0xECC4\t0x9087\n0xECC5\t0xF9E9\n0xECC6\t0xF9EA\n0xECC7\t0x98F4\n0xECC8\t0x990C\n0xECC9\t0xF9EB\n0xECCA\t0xF9EC\n0xECCB\t0x7037\n0xECCC\t0x76CA\n0xECCD\t0x7FCA\n0xECCE\t0x7FCC\n0xECCF\t0x7FFC\n0xECD0\t0x8B1A\n0xECD1\t0x4EBA\n0xECD2\t0x4EC1\n0xECD3\t0x5203\n0xECD4\t0x5370\n0xECD5\t0xF9ED\n0xECD6\t0x54BD\n0xECD7\t0x56E0\n0xECD8\t0x59FB\n0xECD9\t0x5BC5\n0xECDA\t0x5F15\n0xECDB\t0x5FCD\n0xECDC\t0x6E6E\n0xECDD\t0xF9EE\n0xECDE\t0xF9EF\n0xECDF\t0x7D6A\n0xECE0\t0x8335\n0xECE1\t0xF9F0\n0xECE2\t0x8693\n0xECE3\t0x8A8D\n0xECE4\t0xF9F1\n0xECE5\t0x976D\n0xECE6\t0x9777\n0xECE7\t0xF9F2\n0xECE8\t0xF9F3\n0xECE9\t0x4E00\n0xECEA\t0x4F5A\n0xECEB\t0x4F7E\n0xECEC\t0x58F9\n0xECED\t0x65E5\n0xECEE\t0x6EA2\n0xECEF\t0x9038\n0xECF0\t0x93B0\n0xECF1\t0x99B9\n0xECF2\t0x4EFB\n0xECF3\t0x58EC\n0xECF4\t0x598A\n0xECF5\t0x59D9\n0xECF6\t0x6041\n0xECF7\t0xF9F4\n0xECF8\t0xF9F5\n0xECF9\t0x7A14\n0xECFA\t0xF9F6\n0xECFB\t0x834F\n0xECFC\t0x8CC3\n0xECFD\t0x5165\n0xECFE\t0x5344\n0xEDA1\t0xF9F7\n0xEDA2\t0xF9F8\n0xEDA3\t0xF9F9\n0xEDA4\t0x4ECD\n0xEDA5\t0x5269\n0xEDA6\t0x5B55\n0xEDA7\t0x82BF\n0xEDA8\t0x4ED4\n0xEDA9\t0x523A\n0xEDAA\t0x54A8\n0xEDAB\t0x59C9\n0xEDAC\t0x59FF\n0xEDAD\t0x5B50\n0xEDAE\t0x5B57\n0xEDAF\t0x5B5C\n0xEDB0\t0x6063\n0xEDB1\t0x6148\n0xEDB2\t0x6ECB\n0xEDB3\t0x7099\n0xEDB4\t0x716E\n0xEDB5\t0x7386\n0xEDB6\t0x74F7\n0xEDB7\t0x75B5\n0xEDB8\t0x78C1\n0xEDB9\t0x7D2B\n0xEDBA\t0x8005\n0xEDBB\t0x81EA\n0xEDBC\t0x8328\n0xEDBD\t0x8517\n0xEDBE\t0x85C9\n0xEDBF\t0x8AEE\n0xEDC0\t0x8CC7\n0xEDC1\t0x96CC\n0xEDC2\t0x4F5C\n0xEDC3\t0x52FA\n0xEDC4\t0x56BC\n0xEDC5\t0x65AB\n0xEDC6\t0x6628\n0xEDC7\t0x707C\n0xEDC8\t0x70B8\n0xEDC9\t0x7235\n0xEDCA\t0x7DBD\n0xEDCB\t0x828D\n0xEDCC\t0x914C\n0xEDCD\t0x96C0\n0xEDCE\t0x9D72\n0xEDCF\t0x5B71\n0xEDD0\t0x68E7\n0xEDD1\t0x6B98\n0xEDD2\t0x6F7A\n0xEDD3\t0x76DE\n0xEDD4\t0x5C91\n0xEDD5\t0x66AB\n0xEDD6\t0x6F5B\n0xEDD7\t0x7BB4\n0xEDD8\t0x7C2A\n0xEDD9\t0x8836\n0xEDDA\t0x96DC\n0xEDDB\t0x4E08\n0xEDDC\t0x4ED7\n0xEDDD\t0x5320\n0xEDDE\t0x5834\n0xEDDF\t0x58BB\n0xEDE0\t0x58EF\n0xEDE1\t0x596C\n0xEDE2\t0x5C07\n0xEDE3\t0x5E33\n0xEDE4\t0x5E84\n0xEDE5\t0x5F35\n0xEDE6\t0x638C\n0xEDE7\t0x66B2\n0xEDE8\t0x6756\n0xEDE9\t0x6A1F\n0xEDEA\t0x6AA3\n0xEDEB\t0x6B0C\n0xEDEC\t0x6F3F\n0xEDED\t0x7246\n0xEDEE\t0xF9FA\n0xEDEF\t0x7350\n0xEDF0\t0x748B\n0xEDF1\t0x7AE0\n0xEDF2\t0x7CA7\n0xEDF3\t0x8178\n0xEDF4\t0x81DF\n0xEDF5\t0x81E7\n0xEDF6\t0x838A\n0xEDF7\t0x846C\n0xEDF8\t0x8523\n0xEDF9\t0x8594\n0xEDFA\t0x85CF\n0xEDFB\t0x88DD\n0xEDFC\t0x8D13\n0xEDFD\t0x91AC\n0xEDFE\t0x9577\n0xEEA1\t0x969C\n0xEEA2\t0x518D\n0xEEA3\t0x54C9\n0xEEA4\t0x5728\n0xEEA5\t0x5BB0\n0xEEA6\t0x624D\n0xEEA7\t0x6750\n0xEEA8\t0x683D\n0xEEA9\t0x6893\n0xEEAA\t0x6E3D\n0xEEAB\t0x6ED3\n0xEEAC\t0x707D\n0xEEAD\t0x7E21\n0xEEAE\t0x88C1\n0xEEAF\t0x8CA1\n0xEEB0\t0x8F09\n0xEEB1\t0x9F4B\n0xEEB2\t0x9F4E\n0xEEB3\t0x722D\n0xEEB4\t0x7B8F\n0xEEB5\t0x8ACD\n0xEEB6\t0x931A\n0xEEB7\t0x4F47\n0xEEB8\t0x4F4E\n0xEEB9\t0x5132\n0xEEBA\t0x5480\n0xEEBB\t0x59D0\n0xEEBC\t0x5E95\n0xEEBD\t0x62B5\n0xEEBE\t0x6775\n0xEEBF\t0x696E\n0xEEC0\t0x6A17\n0xEEC1\t0x6CAE\n0xEEC2\t0x6E1A\n0xEEC3\t0x72D9\n0xEEC4\t0x732A\n0xEEC5\t0x75BD\n0xEEC6\t0x7BB8\n0xEEC7\t0x7D35\n0xEEC8\t0x82E7\n0xEEC9\t0x83F9\n0xEECA\t0x8457\n0xEECB\t0x85F7\n0xEECC\t0x8A5B\n0xEECD\t0x8CAF\n0xEECE\t0x8E87\n0xEECF\t0x9019\n0xEED0\t0x90B8\n0xEED1\t0x96CE\n0xEED2\t0x9F5F\n0xEED3\t0x52E3\n0xEED4\t0x540A\n0xEED5\t0x5AE1\n0xEED6\t0x5BC2\n0xEED7\t0x6458\n0xEED8\t0x6575\n0xEED9\t0x6EF4\n0xEEDA\t0x72C4\n0xEEDB\t0xF9FB\n0xEEDC\t0x7684\n0xEEDD\t0x7A4D\n0xEEDE\t0x7B1B\n0xEEDF\t0x7C4D\n0xEEE0\t0x7E3E\n0xEEE1\t0x7FDF\n0xEEE2\t0x837B\n0xEEE3\t0x8B2B\n0xEEE4\t0x8CCA\n0xEEE5\t0x8D64\n0xEEE6\t0x8DE1\n0xEEE7\t0x8E5F\n0xEEE8\t0x8FEA\n0xEEE9\t0x8FF9\n0xEEEA\t0x9069\n0xEEEB\t0x93D1\n0xEEEC\t0x4F43\n0xEEED\t0x4F7A\n0xEEEE\t0x50B3\n0xEEEF\t0x5168\n0xEEF0\t0x5178\n0xEEF1\t0x524D\n0xEEF2\t0x526A\n0xEEF3\t0x5861\n0xEEF4\t0x587C\n0xEEF5\t0x5960\n0xEEF6\t0x5C08\n0xEEF7\t0x5C55\n0xEEF8\t0x5EDB\n0xEEF9\t0x609B\n0xEEFA\t0x6230\n0xEEFB\t0x6813\n0xEEFC\t0x6BBF\n0xEEFD\t0x6C08\n0xEEFE\t0x6FB1\n0xEFA1\t0x714E\n0xEFA2\t0x7420\n0xEFA3\t0x7530\n0xEFA4\t0x7538\n0xEFA5\t0x7551\n0xEFA6\t0x7672\n0xEFA7\t0x7B4C\n0xEFA8\t0x7B8B\n0xEFA9\t0x7BAD\n0xEFAA\t0x7BC6\n0xEFAB\t0x7E8F\n0xEFAC\t0x8A6E\n0xEFAD\t0x8F3E\n0xEFAE\t0x8F49\n0xEFAF\t0x923F\n0xEFB0\t0x9293\n0xEFB1\t0x9322\n0xEFB2\t0x942B\n0xEFB3\t0x96FB\n0xEFB4\t0x985A\n0xEFB5\t0x986B\n0xEFB6\t0x991E\n0xEFB7\t0x5207\n0xEFB8\t0x622A\n0xEFB9\t0x6298\n0xEFBA\t0x6D59\n0xEFBB\t0x7664\n0xEFBC\t0x7ACA\n0xEFBD\t0x7BC0\n0xEFBE\t0x7D76\n0xEFBF\t0x5360\n0xEFC0\t0x5CBE\n0xEFC1\t0x5E97\n0xEFC2\t0x6F38\n0xEFC3\t0x70B9\n0xEFC4\t0x7C98\n0xEFC5\t0x9711\n0xEFC6\t0x9B8E\n0xEFC7\t0x9EDE\n0xEFC8\t0x63A5\n0xEFC9\t0x647A\n0xEFCA\t0x8776\n0xEFCB\t0x4E01\n0xEFCC\t0x4E95\n0xEFCD\t0x4EAD\n0xEFCE\t0x505C\n0xEFCF\t0x5075\n0xEFD0\t0x5448\n0xEFD1\t0x59C3\n0xEFD2\t0x5B9A\n0xEFD3\t0x5E40\n0xEFD4\t0x5EAD\n0xEFD5\t0x5EF7\n0xEFD6\t0x5F81\n0xEFD7\t0x60C5\n0xEFD8\t0x633A\n0xEFD9\t0x653F\n0xEFDA\t0x6574\n0xEFDB\t0x65CC\n0xEFDC\t0x6676\n0xEFDD\t0x6678\n0xEFDE\t0x67FE\n0xEFDF\t0x6968\n0xEFE0\t0x6A89\n0xEFE1\t0x6B63\n0xEFE2\t0x6C40\n0xEFE3\t0x6DC0\n0xEFE4\t0x6DE8\n0xEFE5\t0x6E1F\n0xEFE6\t0x6E5E\n0xEFE7\t0x701E\n0xEFE8\t0x70A1\n0xEFE9\t0x738E\n0xEFEA\t0x73FD\n0xEFEB\t0x753A\n0xEFEC\t0x775B\n0xEFED\t0x7887\n0xEFEE\t0x798E\n0xEFEF\t0x7A0B\n0xEFF0\t0x7A7D\n0xEFF1\t0x7CBE\n0xEFF2\t0x7D8E\n0xEFF3\t0x8247\n0xEFF4\t0x8A02\n0xEFF5\t0x8AEA\n0xEFF6\t0x8C9E\n0xEFF7\t0x912D\n0xEFF8\t0x914A\n0xEFF9\t0x91D8\n0xEFFA\t0x9266\n0xEFFB\t0x92CC\n0xEFFC\t0x9320\n0xEFFD\t0x9706\n0xEFFE\t0x9756\n0xF0A1\t0x975C\n0xF0A2\t0x9802\n0xF0A3\t0x9F0E\n0xF0A4\t0x5236\n0xF0A5\t0x5291\n0xF0A6\t0x557C\n0xF0A7\t0x5824\n0xF0A8\t0x5E1D\n0xF0A9\t0x5F1F\n0xF0AA\t0x608C\n0xF0AB\t0x63D0\n0xF0AC\t0x68AF\n0xF0AD\t0x6FDF\n0xF0AE\t0x796D\n0xF0AF\t0x7B2C\n0xF0B0\t0x81CD\n0xF0B1\t0x85BA\n0xF0B2\t0x88FD\n0xF0B3\t0x8AF8\n0xF0B4\t0x8E44\n0xF0B5\t0x918D\n0xF0B6\t0x9664\n0xF0B7\t0x969B\n0xF0B8\t0x973D\n0xF0B9\t0x984C\n0xF0BA\t0x9F4A\n0xF0BB\t0x4FCE\n0xF0BC\t0x5146\n0xF0BD\t0x51CB\n0xF0BE\t0x52A9\n0xF0BF\t0x5632\n0xF0C0\t0x5F14\n0xF0C1\t0x5F6B\n0xF0C2\t0x63AA\n0xF0C3\t0x64CD\n0xF0C4\t0x65E9\n0xF0C5\t0x6641\n0xF0C6\t0x66FA\n0xF0C7\t0x66F9\n0xF0C8\t0x671D\n0xF0C9\t0x689D\n0xF0CA\t0x68D7\n0xF0CB\t0x69FD\n0xF0CC\t0x6F15\n0xF0CD\t0x6F6E\n0xF0CE\t0x7167\n0xF0CF\t0x71E5\n0xF0D0\t0x722A\n0xF0D1\t0x74AA\n0xF0D2\t0x773A\n0xF0D3\t0x7956\n0xF0D4\t0x795A\n0xF0D5\t0x79DF\n0xF0D6\t0x7A20\n0xF0D7\t0x7A95\n0xF0D8\t0x7C97\n0xF0D9\t0x7CDF\n0xF0DA\t0x7D44\n0xF0DB\t0x7E70\n0xF0DC\t0x8087\n0xF0DD\t0x85FB\n0xF0DE\t0x86A4\n0xF0DF\t0x8A54\n0xF0E0\t0x8ABF\n0xF0E1\t0x8D99\n0xF0E2\t0x8E81\n0xF0E3\t0x9020\n0xF0E4\t0x906D\n0xF0E5\t0x91E3\n0xF0E6\t0x963B\n0xF0E7\t0x96D5\n0xF0E8\t0x9CE5\n0xF0E9\t0x65CF\n0xF0EA\t0x7C07\n0xF0EB\t0x8DB3\n0xF0EC\t0x93C3\n0xF0ED\t0x5B58\n0xF0EE\t0x5C0A\n0xF0EF\t0x5352\n0xF0F0\t0x62D9\n0xF0F1\t0x731D\n0xF0F2\t0x5027\n0xF0F3\t0x5B97\n0xF0F4\t0x5F9E\n0xF0F5\t0x60B0\n0xF0F6\t0x616B\n0xF0F7\t0x68D5\n0xF0F8\t0x6DD9\n0xF0F9\t0x742E\n0xF0FA\t0x7A2E\n0xF0FB\t0x7D42\n0xF0FC\t0x7D9C\n0xF0FD\t0x7E31\n0xF0FE\t0x816B\n0xF1A1\t0x8E2A\n0xF1A2\t0x8E35\n0xF1A3\t0x937E\n0xF1A4\t0x9418\n0xF1A5\t0x4F50\n0xF1A6\t0x5750\n0xF1A7\t0x5DE6\n0xF1A8\t0x5EA7\n0xF1A9\t0x632B\n0xF1AA\t0x7F6A\n0xF1AB\t0x4E3B\n0xF1AC\t0x4F4F\n0xF1AD\t0x4F8F\n0xF1AE\t0x505A\n0xF1AF\t0x59DD\n0xF1B0\t0x80C4\n0xF1B1\t0x546A\n0xF1B2\t0x5468\n0xF1B3\t0x55FE\n0xF1B4\t0x594F\n0xF1B5\t0x5B99\n0xF1B6\t0x5DDE\n0xF1B7\t0x5EDA\n0xF1B8\t0x665D\n0xF1B9\t0x6731\n0xF1BA\t0x67F1\n0xF1BB\t0x682A\n0xF1BC\t0x6CE8\n0xF1BD\t0x6D32\n0xF1BE\t0x6E4A\n0xF1BF\t0x6F8D\n0xF1C0\t0x70B7\n0xF1C1\t0x73E0\n0xF1C2\t0x7587\n0xF1C3\t0x7C4C\n0xF1C4\t0x7D02\n0xF1C5\t0x7D2C\n0xF1C6\t0x7DA2\n0xF1C7\t0x821F\n0xF1C8\t0x86DB\n0xF1C9\t0x8A3B\n0xF1CA\t0x8A85\n0xF1CB\t0x8D70\n0xF1CC\t0x8E8A\n0xF1CD\t0x8F33\n0xF1CE\t0x9031\n0xF1CF\t0x914E\n0xF1D0\t0x9152\n0xF1D1\t0x9444\n0xF1D2\t0x99D0\n0xF1D3\t0x7AF9\n0xF1D4\t0x7CA5\n0xF1D5\t0x4FCA\n0xF1D6\t0x5101\n0xF1D7\t0x51C6\n0xF1D8\t0x57C8\n0xF1D9\t0x5BEF\n0xF1DA\t0x5CFB\n0xF1DB\t0x6659\n0xF1DC\t0x6A3D\n0xF1DD\t0x6D5A\n0xF1DE\t0x6E96\n0xF1DF\t0x6FEC\n0xF1E0\t0x710C\n0xF1E1\t0x756F\n0xF1E2\t0x7AE3\n0xF1E3\t0x8822\n0xF1E4\t0x9021\n0xF1E5\t0x9075\n0xF1E6\t0x96CB\n0xF1E7\t0x99FF\n0xF1E8\t0x8301\n0xF1E9\t0x4E2D\n0xF1EA\t0x4EF2\n0xF1EB\t0x8846\n0xF1EC\t0x91CD\n0xF1ED\t0x537D\n0xF1EE\t0x6ADB\n0xF1EF\t0x696B\n0xF1F0\t0x6C41\n0xF1F1\t0x847A\n0xF1F2\t0x589E\n0xF1F3\t0x618E\n0xF1F4\t0x66FE\n0xF1F5\t0x62EF\n0xF1F6\t0x70DD\n0xF1F7\t0x7511\n0xF1F8\t0x75C7\n0xF1F9\t0x7E52\n0xF1FA\t0x84B8\n0xF1FB\t0x8B49\n0xF1FC\t0x8D08\n0xF1FD\t0x4E4B\n0xF1FE\t0x53EA\n0xF2A1\t0x54AB\n0xF2A2\t0x5730\n0xF2A3\t0x5740\n0xF2A4\t0x5FD7\n0xF2A5\t0x6301\n0xF2A6\t0x6307\n0xF2A7\t0x646F\n0xF2A8\t0x652F\n0xF2A9\t0x65E8\n0xF2AA\t0x667A\n0xF2AB\t0x679D\n0xF2AC\t0x67B3\n0xF2AD\t0x6B62\n0xF2AE\t0x6C60\n0xF2AF\t0x6C9A\n0xF2B0\t0x6F2C\n0xF2B1\t0x77E5\n0xF2B2\t0x7825\n0xF2B3\t0x7949\n0xF2B4\t0x7957\n0xF2B5\t0x7D19\n0xF2B6\t0x80A2\n0xF2B7\t0x8102\n0xF2B8\t0x81F3\n0xF2B9\t0x829D\n0xF2BA\t0x82B7\n0xF2BB\t0x8718\n0xF2BC\t0x8A8C\n0xF2BD\t0xF9FC\n0xF2BE\t0x8D04\n0xF2BF\t0x8DBE\n0xF2C0\t0x9072\n0xF2C1\t0x76F4\n0xF2C2\t0x7A19\n0xF2C3\t0x7A37\n0xF2C4\t0x7E54\n0xF2C5\t0x8077\n0xF2C6\t0x5507\n0xF2C7\t0x55D4\n0xF2C8\t0x5875\n0xF2C9\t0x632F\n0xF2CA\t0x6422\n0xF2CB\t0x6649\n0xF2CC\t0x664B\n0xF2CD\t0x686D\n0xF2CE\t0x699B\n0xF2CF\t0x6B84\n0xF2D0\t0x6D25\n0xF2D1\t0x6EB1\n0xF2D2\t0x73CD\n0xF2D3\t0x7468\n0xF2D4\t0x74A1\n0xF2D5\t0x755B\n0xF2D6\t0x75B9\n0xF2D7\t0x76E1\n0xF2D8\t0x771E\n0xF2D9\t0x778B\n0xF2DA\t0x79E6\n0xF2DB\t0x7E09\n0xF2DC\t0x7E1D\n0xF2DD\t0x81FB\n0xF2DE\t0x852F\n0xF2DF\t0x8897\n0xF2E0\t0x8A3A\n0xF2E1\t0x8CD1\n0xF2E2\t0x8EEB\n0xF2E3\t0x8FB0\n0xF2E4\t0x9032\n0xF2E5\t0x93AD\n0xF2E6\t0x9663\n0xF2E7\t0x9673\n0xF2E8\t0x9707\n0xF2E9\t0x4F84\n0xF2EA\t0x53F1\n0xF2EB\t0x59EA\n0xF2EC\t0x5AC9\n0xF2ED\t0x5E19\n0xF2EE\t0x684E\n0xF2EF\t0x74C6\n0xF2F0\t0x75BE\n0xF2F1\t0x79E9\n0xF2F2\t0x7A92\n0xF2F3\t0x81A3\n0xF2F4\t0x86ED\n0xF2F5\t0x8CEA\n0xF2F6\t0x8DCC\n0xF2F7\t0x8FED\n0xF2F8\t0x659F\n0xF2F9\t0x6715\n0xF2FA\t0xF9FD\n0xF2FB\t0x57F7\n0xF2FC\t0x6F57\n0xF2FD\t0x7DDD\n0xF2FE\t0x8F2F\n0xF3A1\t0x93F6\n0xF3A2\t0x96C6\n0xF3A3\t0x5FB5\n0xF3A4\t0x61F2\n0xF3A5\t0x6F84\n0xF3A6\t0x4E14\n0xF3A7\t0x4F98\n0xF3A8\t0x501F\n0xF3A9\t0x53C9\n0xF3AA\t0x55DF\n0xF3AB\t0x5D6F\n0xF3AC\t0x5DEE\n0xF3AD\t0x6B21\n0xF3AE\t0x6B64\n0xF3AF\t0x78CB\n0xF3B0\t0x7B9A\n0xF3B1\t0xF9FE\n0xF3B2\t0x8E49\n0xF3B3\t0x8ECA\n0xF3B4\t0x906E\n0xF3B5\t0x6349\n0xF3B6\t0x643E\n0xF3B7\t0x7740\n0xF3B8\t0x7A84\n0xF3B9\t0x932F\n0xF3BA\t0x947F\n0xF3BB\t0x9F6A\n0xF3BC\t0x64B0\n0xF3BD\t0x6FAF\n0xF3BE\t0x71E6\n0xF3BF\t0x74A8\n0xF3C0\t0x74DA\n0xF3C1\t0x7AC4\n0xF3C2\t0x7C12\n0xF3C3\t0x7E82\n0xF3C4\t0x7CB2\n0xF3C5\t0x7E98\n0xF3C6\t0x8B9A\n0xF3C7\t0x8D0A\n0xF3C8\t0x947D\n0xF3C9\t0x9910\n0xF3CA\t0x994C\n0xF3CB\t0x5239\n0xF3CC\t0x5BDF\n0xF3CD\t0x64E6\n0xF3CE\t0x672D\n0xF3CF\t0x7D2E\n0xF3D0\t0x50ED\n0xF3D1\t0x53C3\n0xF3D2\t0x5879\n0xF3D3\t0x6158\n0xF3D4\t0x6159\n0xF3D5\t0x61FA\n0xF3D6\t0x65AC\n0xF3D7\t0x7AD9\n0xF3D8\t0x8B92\n0xF3D9\t0x8B96\n0xF3DA\t0x5009\n0xF3DB\t0x5021\n0xF3DC\t0x5275\n0xF3DD\t0x5531\n0xF3DE\t0x5A3C\n0xF3DF\t0x5EE0\n0xF3E0\t0x5F70\n0xF3E1\t0x6134\n0xF3E2\t0x655E\n0xF3E3\t0x660C\n0xF3E4\t0x6636\n0xF3E5\t0x66A2\n0xF3E6\t0x69CD\n0xF3E7\t0x6EC4\n0xF3E8\t0x6F32\n0xF3E9\t0x7316\n0xF3EA\t0x7621\n0xF3EB\t0x7A93\n0xF3EC\t0x8139\n0xF3ED\t0x8259\n0xF3EE\t0x83D6\n0xF3EF\t0x84BC\n0xF3F0\t0x50B5\n0xF3F1\t0x57F0\n0xF3F2\t0x5BC0\n0xF3F3\t0x5BE8\n0xF3F4\t0x5F69\n0xF3F5\t0x63A1\n0xF3F6\t0x7826\n0xF3F7\t0x7DB5\n0xF3F8\t0x83DC\n0xF3F9\t0x8521\n0xF3FA\t0x91C7\n0xF3FB\t0x91F5\n0xF3FC\t0x518A\n0xF3FD\t0x67F5\n0xF3FE\t0x7B56\n0xF4A1\t0x8CAC\n0xF4A2\t0x51C4\n0xF4A3\t0x59BB\n0xF4A4\t0x60BD\n0xF4A5\t0x8655\n0xF4A6\t0x501C\n0xF4A7\t0xF9FF\n0xF4A8\t0x5254\n0xF4A9\t0x5C3A\n0xF4AA\t0x617D\n0xF4AB\t0x621A\n0xF4AC\t0x62D3\n0xF4AD\t0x64F2\n0xF4AE\t0x65A5\n0xF4AF\t0x6ECC\n0xF4B0\t0x7620\n0xF4B1\t0x810A\n0xF4B2\t0x8E60\n0xF4B3\t0x965F\n0xF4B4\t0x96BB\n0xF4B5\t0x4EDF\n0xF4B6\t0x5343\n0xF4B7\t0x5598\n0xF4B8\t0x5929\n0xF4B9\t0x5DDD\n0xF4BA\t0x64C5\n0xF4BB\t0x6CC9\n0xF4BC\t0x6DFA\n0xF4BD\t0x7394\n0xF4BE\t0x7A7F\n0xF4BF\t0x821B\n0xF4C0\t0x85A6\n0xF4C1\t0x8CE4\n0xF4C2\t0x8E10\n0xF4C3\t0x9077\n0xF4C4\t0x91E7\n0xF4C5\t0x95E1\n0xF4C6\t0x9621\n0xF4C7\t0x97C6\n0xF4C8\t0x51F8\n0xF4C9\t0x54F2\n0xF4CA\t0x5586\n0xF4CB\t0x5FB9\n0xF4CC\t0x64A4\n0xF4CD\t0x6F88\n0xF4CE\t0x7DB4\n0xF4CF\t0x8F1F\n0xF4D0\t0x8F4D\n0xF4D1\t0x9435\n0xF4D2\t0x50C9\n0xF4D3\t0x5C16\n0xF4D4\t0x6CBE\n0xF4D5\t0x6DFB\n0xF4D6\t0x751B\n0xF4D7\t0x77BB\n0xF4D8\t0x7C3D\n0xF4D9\t0x7C64\n0xF4DA\t0x8A79\n0xF4DB\t0x8AC2\n0xF4DC\t0x581E\n0xF4DD\t0x59BE\n0xF4DE\t0x5E16\n0xF4DF\t0x6377\n0xF4E0\t0x7252\n0xF4E1\t0x758A\n0xF4E2\t0x776B\n0xF4E3\t0x8ADC\n0xF4E4\t0x8CBC\n0xF4E5\t0x8F12\n0xF4E6\t0x5EF3\n0xF4E7\t0x6674\n0xF4E8\t0x6DF8\n0xF4E9\t0x807D\n0xF4EA\t0x83C1\n0xF4EB\t0x8ACB\n0xF4EC\t0x9751\n0xF4ED\t0x9BD6\n0xF4EE\t0xFA00\n0xF4EF\t0x5243\n0xF4F0\t0x66FF\n0xF4F1\t0x6D95\n0xF4F2\t0x6EEF\n0xF4F3\t0x7DE0\n0xF4F4\t0x8AE6\n0xF4F5\t0x902E\n0xF4F6\t0x905E\n0xF4F7\t0x9AD4\n0xF4F8\t0x521D\n0xF4F9\t0x527F\n0xF4FA\t0x54E8\n0xF4FB\t0x6194\n0xF4FC\t0x6284\n0xF4FD\t0x62DB\n0xF4FE\t0x68A2\n0xF5A1\t0x6912\n0xF5A2\t0x695A\n0xF5A3\t0x6A35\n0xF5A4\t0x7092\n0xF5A5\t0x7126\n0xF5A6\t0x785D\n0xF5A7\t0x7901\n0xF5A8\t0x790E\n0xF5A9\t0x79D2\n0xF5AA\t0x7A0D\n0xF5AB\t0x8096\n0xF5AC\t0x8278\n0xF5AD\t0x82D5\n0xF5AE\t0x8349\n0xF5AF\t0x8549\n0xF5B0\t0x8C82\n0xF5B1\t0x8D85\n0xF5B2\t0x9162\n0xF5B3\t0x918B\n0xF5B4\t0x91AE\n0xF5B5\t0x4FC3\n0xF5B6\t0x56D1\n0xF5B7\t0x71ED\n0xF5B8\t0x77D7\n0xF5B9\t0x8700\n0xF5BA\t0x89F8\n0xF5BB\t0x5BF8\n0xF5BC\t0x5FD6\n0xF5BD\t0x6751\n0xF5BE\t0x90A8\n0xF5BF\t0x53E2\n0xF5C0\t0x585A\n0xF5C1\t0x5BF5\n0xF5C2\t0x60A4\n0xF5C3\t0x6181\n0xF5C4\t0x6460\n0xF5C5\t0x7E3D\n0xF5C6\t0x8070\n0xF5C7\t0x8525\n0xF5C8\t0x9283\n0xF5C9\t0x64AE\n0xF5CA\t0x50AC\n0xF5CB\t0x5D14\n0xF5CC\t0x6700\n0xF5CD\t0x589C\n0xF5CE\t0x62BD\n0xF5CF\t0x63A8\n0xF5D0\t0x690E\n0xF5D1\t0x6978\n0xF5D2\t0x6A1E\n0xF5D3\t0x6E6B\n0xF5D4\t0x76BA\n0xF5D5\t0x79CB\n0xF5D6\t0x82BB\n0xF5D7\t0x8429\n0xF5D8\t0x8ACF\n0xF5D9\t0x8DA8\n0xF5DA\t0x8FFD\n0xF5DB\t0x9112\n0xF5DC\t0x914B\n0xF5DD\t0x919C\n0xF5DE\t0x9310\n0xF5DF\t0x9318\n0xF5E0\t0x939A\n0xF5E1\t0x96DB\n0xF5E2\t0x9A36\n0xF5E3\t0x9C0D\n0xF5E4\t0x4E11\n0xF5E5\t0x755C\n0xF5E6\t0x795D\n0xF5E7\t0x7AFA\n0xF5E8\t0x7B51\n0xF5E9\t0x7BC9\n0xF5EA\t0x7E2E\n0xF5EB\t0x84C4\n0xF5EC\t0x8E59\n0xF5ED\t0x8E74\n0xF5EE\t0x8EF8\n0xF5EF\t0x9010\n0xF5F0\t0x6625\n0xF5F1\t0x693F\n0xF5F2\t0x7443\n0xF5F3\t0x51FA\n0xF5F4\t0x672E\n0xF5F5\t0x9EDC\n0xF5F6\t0x5145\n0xF5F7\t0x5FE0\n0xF5F8\t0x6C96\n0xF5F9\t0x87F2\n0xF5FA\t0x885D\n0xF5FB\t0x8877\n0xF5FC\t0x60B4\n0xF5FD\t0x81B5\n0xF5FE\t0x8403\n0xF6A1\t0x8D05\n0xF6A2\t0x53D6\n0xF6A3\t0x5439\n0xF6A4\t0x5634\n0xF6A5\t0x5A36\n0xF6A6\t0x5C31\n0xF6A7\t0x708A\n0xF6A8\t0x7FE0\n0xF6A9\t0x805A\n0xF6AA\t0x8106\n0xF6AB\t0x81ED\n0xF6AC\t0x8DA3\n0xF6AD\t0x9189\n0xF6AE\t0x9A5F\n0xF6AF\t0x9DF2\n0xF6B0\t0x5074\n0xF6B1\t0x4EC4\n0xF6B2\t0x53A0\n0xF6B3\t0x60FB\n0xF6B4\t0x6E2C\n0xF6B5\t0x5C64\n0xF6B6\t0x4F88\n0xF6B7\t0x5024\n0xF6B8\t0x55E4\n0xF6B9\t0x5CD9\n0xF6BA\t0x5E5F\n0xF6BB\t0x6065\n0xF6BC\t0x6894\n0xF6BD\t0x6CBB\n0xF6BE\t0x6DC4\n0xF6BF\t0x71BE\n0xF6C0\t0x75D4\n0xF6C1\t0x75F4\n0xF6C2\t0x7661\n0xF6C3\t0x7A1A\n0xF6C4\t0x7A49\n0xF6C5\t0x7DC7\n0xF6C6\t0x7DFB\n0xF6C7\t0x7F6E\n0xF6C8\t0x81F4\n0xF6C9\t0x86A9\n0xF6CA\t0x8F1C\n0xF6CB\t0x96C9\n0xF6CC\t0x99B3\n0xF6CD\t0x9F52\n0xF6CE\t0x5247\n0xF6CF\t0x52C5\n0xF6D0\t0x98ED\n0xF6D1\t0x89AA\n0xF6D2\t0x4E03\n0xF6D3\t0x67D2\n0xF6D4\t0x6F06\n0xF6D5\t0x4FB5\n0xF6D6\t0x5BE2\n0xF6D7\t0x6795\n0xF6D8\t0x6C88\n0xF6D9\t0x6D78\n0xF6DA\t0x741B\n0xF6DB\t0x7827\n0xF6DC\t0x91DD\n0xF6DD\t0x937C\n0xF6DE\t0x87C4\n0xF6DF\t0x79E4\n0xF6E0\t0x7A31\n0xF6E1\t0x5FEB\n0xF6E2\t0x4ED6\n0xF6E3\t0x54A4\n0xF6E4\t0x553E\n0xF6E5\t0x58AE\n0xF6E6\t0x59A5\n0xF6E7\t0x60F0\n0xF6E8\t0x6253\n0xF6E9\t0x62D6\n0xF6EA\t0x6736\n0xF6EB\t0x6955\n0xF6EC\t0x8235\n0xF6ED\t0x9640\n0xF6EE\t0x99B1\n0xF6EF\t0x99DD\n0xF6F0\t0x502C\n0xF6F1\t0x5353\n0xF6F2\t0x5544\n0xF6F3\t0x577C\n0xF6F4\t0xFA01\n0xF6F5\t0x6258\n0xF6F6\t0xFA02\n0xF6F7\t0x64E2\n0xF6F8\t0x666B\n0xF6F9\t0x67DD\n0xF6FA\t0x6FC1\n0xF6FB\t0x6FEF\n0xF6FC\t0x7422\n0xF6FD\t0x7438\n0xF6FE\t0x8A17\n0xF7A1\t0x9438\n0xF7A2\t0x5451\n0xF7A3\t0x5606\n0xF7A4\t0x5766\n0xF7A5\t0x5F48\n0xF7A6\t0x619A\n0xF7A7\t0x6B4E\n0xF7A8\t0x7058\n0xF7A9\t0x70AD\n0xF7AA\t0x7DBB\n0xF7AB\t0x8A95\n0xF7AC\t0x596A\n0xF7AD\t0x812B\n0xF7AE\t0x63A2\n0xF7AF\t0x7708\n0xF7B0\t0x803D\n0xF7B1\t0x8CAA\n0xF7B2\t0x5854\n0xF7B3\t0x642D\n0xF7B4\t0x69BB\n0xF7B5\t0x5B95\n0xF7B6\t0x5E11\n0xF7B7\t0x6E6F\n0xF7B8\t0xFA03\n0xF7B9\t0x8569\n0xF7BA\t0x514C\n0xF7BB\t0x53F0\n0xF7BC\t0x592A\n0xF7BD\t0x6020\n0xF7BE\t0x614B\n0xF7BF\t0x6B86\n0xF7C0\t0x6C70\n0xF7C1\t0x6CF0\n0xF7C2\t0x7B1E\n0xF7C3\t0x80CE\n0xF7C4\t0x82D4\n0xF7C5\t0x8DC6\n0xF7C6\t0x90B0\n0xF7C7\t0x98B1\n0xF7C8\t0xFA04\n0xF7C9\t0x64C7\n0xF7CA\t0x6FA4\n0xF7CB\t0x6491\n0xF7CC\t0x6504\n0xF7CD\t0x514E\n0xF7CE\t0x5410\n0xF7CF\t0x571F\n0xF7D0\t0x8A0E\n0xF7D1\t0x615F\n0xF7D2\t0x6876\n0xF7D3\t0xFA05\n0xF7D4\t0x75DB\n0xF7D5\t0x7B52\n0xF7D6\t0x7D71\n0xF7D7\t0x901A\n0xF7D8\t0x5806\n0xF7D9\t0x69CC\n0xF7DA\t0x817F\n0xF7DB\t0x892A\n0xF7DC\t0x9000\n0xF7DD\t0x9839\n0xF7DE\t0x5078\n0xF7DF\t0x5957\n0xF7E0\t0x59AC\n0xF7E1\t0x6295\n0xF7E2\t0x900F\n0xF7E3\t0x9B2A\n0xF7E4\t0x615D\n0xF7E5\t0x7279\n0xF7E6\t0x95D6\n0xF7E7\t0x5761\n0xF7E8\t0x5A46\n0xF7E9\t0x5DF4\n0xF7EA\t0x628A\n0xF7EB\t0x64AD\n0xF7EC\t0x64FA\n0xF7ED\t0x6777\n0xF7EE\t0x6CE2\n0xF7EF\t0x6D3E\n0xF7F0\t0x722C\n0xF7F1\t0x7436\n0xF7F2\t0x7834\n0xF7F3\t0x7F77\n0xF7F4\t0x82AD\n0xF7F5\t0x8DDB\n0xF7F6\t0x9817\n0xF7F7\t0x5224\n0xF7F8\t0x5742\n0xF7F9\t0x677F\n0xF7FA\t0x7248\n0xF7FB\t0x74E3\n0xF7FC\t0x8CA9\n0xF7FD\t0x8FA6\n0xF7FE\t0x9211\n0xF8A1\t0x962A\n0xF8A2\t0x516B\n0xF8A3\t0x53ED\n0xF8A4\t0x634C\n0xF8A5\t0x4F69\n0xF8A6\t0x5504\n0xF8A7\t0x6096\n0xF8A8\t0x6557\n0xF8A9\t0x6C9B\n0xF8AA\t0x6D7F\n0xF8AB\t0x724C\n0xF8AC\t0x72FD\n0xF8AD\t0x7A17\n0xF8AE\t0x8987\n0xF8AF\t0x8C9D\n0xF8B0\t0x5F6D\n0xF8B1\t0x6F8E\n0xF8B2\t0x70F9\n0xF8B3\t0x81A8\n0xF8B4\t0x610E\n0xF8B5\t0x4FBF\n0xF8B6\t0x504F\n0xF8B7\t0x6241\n0xF8B8\t0x7247\n0xF8B9\t0x7BC7\n0xF8BA\t0x7DE8\n0xF8BB\t0x7FE9\n0xF8BC\t0x904D\n0xF8BD\t0x97AD\n0xF8BE\t0x9A19\n0xF8BF\t0x8CB6\n0xF8C0\t0x576A\n0xF8C1\t0x5E73\n0xF8C2\t0x67B0\n0xF8C3\t0x840D\n0xF8C4\t0x8A55\n0xF8C5\t0x5420\n0xF8C6\t0x5B16\n0xF8C7\t0x5E63\n0xF8C8\t0x5EE2\n0xF8C9\t0x5F0A\n0xF8CA\t0x6583\n0xF8CB\t0x80BA\n0xF8CC\t0x853D\n0xF8CD\t0x9589\n0xF8CE\t0x965B\n0xF8CF\t0x4F48\n0xF8D0\t0x5305\n0xF8D1\t0x530D\n0xF8D2\t0x530F\n0xF8D3\t0x5486\n0xF8D4\t0x54FA\n0xF8D5\t0x5703\n0xF8D6\t0x5E03\n0xF8D7\t0x6016\n0xF8D8\t0x629B\n0xF8D9\t0x62B1\n0xF8DA\t0x6355\n0xF8DB\t0xFA06\n0xF8DC\t0x6CE1\n0xF8DD\t0x6D66\n0xF8DE\t0x75B1\n0xF8DF\t0x7832\n0xF8E0\t0x80DE\n0xF8E1\t0x812F\n0xF8E2\t0x82DE\n0xF8E3\t0x8461\n0xF8E4\t0x84B2\n0xF8E5\t0x888D\n0xF8E6\t0x8912\n0xF8E7\t0x900B\n0xF8E8\t0x92EA\n0xF8E9\t0x98FD\n0xF8EA\t0x9B91\n0xF8EB\t0x5E45\n0xF8EC\t0x66B4\n0xF8ED\t0x66DD\n0xF8EE\t0x7011\n0xF8EF\t0x7206\n0xF8F0\t0xFA07\n0xF8F1\t0x4FF5\n0xF8F2\t0x527D\n0xF8F3\t0x5F6A\n0xF8F4\t0x6153\n0xF8F5\t0x6753\n0xF8F6\t0x6A19\n0xF8F7\t0x6F02\n0xF8F8\t0x74E2\n0xF8F9\t0x7968\n0xF8FA\t0x8868\n0xF8FB\t0x8C79\n0xF8FC\t0x98C7\n0xF8FD\t0x98C4\n0xF8FE\t0x9A43\n0xF9A1\t0x54C1\n0xF9A2\t0x7A1F\n0xF9A3\t0x6953\n0xF9A4\t0x8AF7\n0xF9A5\t0x8C4A\n0xF9A6\t0x98A8\n0xF9A7\t0x99AE\n0xF9A8\t0x5F7C\n0xF9A9\t0x62AB\n0xF9AA\t0x75B2\n0xF9AB\t0x76AE\n0xF9AC\t0x88AB\n0xF9AD\t0x907F\n0xF9AE\t0x9642\n0xF9AF\t0x5339\n0xF9B0\t0x5F3C\n0xF9B1\t0x5FC5\n0xF9B2\t0x6CCC\n0xF9B3\t0x73CC\n0xF9B4\t0x7562\n0xF9B5\t0x758B\n0xF9B6\t0x7B46\n0xF9B7\t0x82FE\n0xF9B8\t0x999D\n0xF9B9\t0x4E4F\n0xF9BA\t0x903C\n0xF9BB\t0x4E0B\n0xF9BC\t0x4F55\n0xF9BD\t0x53A6\n0xF9BE\t0x590F\n0xF9BF\t0x5EC8\n0xF9C0\t0x6630\n0xF9C1\t0x6CB3\n0xF9C2\t0x7455\n0xF9C3\t0x8377\n0xF9C4\t0x8766\n0xF9C5\t0x8CC0\n0xF9C6\t0x9050\n0xF9C7\t0x971E\n0xF9C8\t0x9C15\n0xF9C9\t0x58D1\n0xF9CA\t0x5B78\n0xF9CB\t0x8650\n0xF9CC\t0x8B14\n0xF9CD\t0x9DB4\n0xF9CE\t0x5BD2\n0xF9CF\t0x6068\n0xF9D0\t0x608D\n0xF9D1\t0x65F1\n0xF9D2\t0x6C57\n0xF9D3\t0x6F22\n0xF9D4\t0x6FA3\n0xF9D5\t0x701A\n0xF9D6\t0x7F55\n0xF9D7\t0x7FF0\n0xF9D8\t0x9591\n0xF9D9\t0x9592\n0xF9DA\t0x9650\n0xF9DB\t0x97D3\n0xF9DC\t0x5272\n0xF9DD\t0x8F44\n0xF9DE\t0x51FD\n0xF9DF\t0x542B\n0xF9E0\t0x54B8\n0xF9E1\t0x5563\n0xF9E2\t0x558A\n0xF9E3\t0x6ABB\n0xF9E4\t0x6DB5\n0xF9E5\t0x7DD8\n0xF9E6\t0x8266\n0xF9E7\t0x929C\n0xF9E8\t0x9677\n0xF9E9\t0x9E79\n0xF9EA\t0x5408\n0xF9EB\t0x54C8\n0xF9EC\t0x76D2\n0xF9ED\t0x86E4\n0xF9EE\t0x95A4\n0xF9EF\t0x95D4\n0xF9F0\t0x965C\n0xF9F1\t0x4EA2\n0xF9F2\t0x4F09\n0xF9F3\t0x59EE\n0xF9F4\t0x5AE6\n0xF9F5\t0x5DF7\n0xF9F6\t0x6052\n0xF9F7\t0x6297\n0xF9F8\t0x676D\n0xF9F9\t0x6841\n0xF9FA\t0x6C86\n0xF9FB\t0x6E2F\n0xF9FC\t0x7F38\n0xF9FD\t0x809B\n0xF9FE\t0x822A\n0xFAA1\t0xFA08\n0xFAA2\t0xFA09\n0xFAA3\t0x9805\n0xFAA4\t0x4EA5\n0xFAA5\t0x5055\n0xFAA6\t0x54B3\n0xFAA7\t0x5793\n0xFAA8\t0x595A\n0xFAA9\t0x5B69\n0xFAAA\t0x5BB3\n0xFAAB\t0x61C8\n0xFAAC\t0x6977\n0xFAAD\t0x6D77\n0xFAAE\t0x7023\n0xFAAF\t0x87F9\n0xFAB0\t0x89E3\n0xFAB1\t0x8A72\n0xFAB2\t0x8AE7\n0xFAB3\t0x9082\n0xFAB4\t0x99ED\n0xFAB5\t0x9AB8\n0xFAB6\t0x52BE\n0xFAB7\t0x6838\n0xFAB8\t0x5016\n0xFAB9\t0x5E78\n0xFABA\t0x674F\n0xFABB\t0x8347\n0xFABC\t0x884C\n0xFABD\t0x4EAB\n0xFABE\t0x5411\n0xFABF\t0x56AE\n0xFAC0\t0x73E6\n0xFAC1\t0x9115\n0xFAC2\t0x97FF\n0xFAC3\t0x9909\n0xFAC4\t0x9957\n0xFAC5\t0x9999\n0xFAC6\t0x5653\n0xFAC7\t0x589F\n0xFAC8\t0x865B\n0xFAC9\t0x8A31\n0xFACA\t0x61B2\n0xFACB\t0x6AF6\n0xFACC\t0x737B\n0xFACD\t0x8ED2\n0xFACE\t0x6B47\n0xFACF\t0x96AA\n0xFAD0\t0x9A57\n0xFAD1\t0x5955\n0xFAD2\t0x7200\n0xFAD3\t0x8D6B\n0xFAD4\t0x9769\n0xFAD5\t0x4FD4\n0xFAD6\t0x5CF4\n0xFAD7\t0x5F26\n0xFAD8\t0x61F8\n0xFAD9\t0x665B\n0xFADA\t0x6CEB\n0xFADB\t0x70AB\n0xFADC\t0x7384\n0xFADD\t0x73B9\n0xFADE\t0x73FE\n0xFADF\t0x7729\n0xFAE0\t0x774D\n0xFAE1\t0x7D43\n0xFAE2\t0x7D62\n0xFAE3\t0x7E23\n0xFAE4\t0x8237\n0xFAE5\t0x8852\n0xFAE6\t0xFA0A\n0xFAE7\t0x8CE2\n0xFAE8\t0x9249\n0xFAE9\t0x986F\n0xFAEA\t0x5B51\n0xFAEB\t0x7A74\n0xFAEC\t0x8840\n0xFAED\t0x9801\n0xFAEE\t0x5ACC\n0xFAEF\t0x4FE0\n0xFAF0\t0x5354\n0xFAF1\t0x593E\n0xFAF2\t0x5CFD\n0xFAF3\t0x633E\n0xFAF4\t0x6D79\n0xFAF5\t0x72F9\n0xFAF6\t0x8105\n0xFAF7\t0x8107\n0xFAF8\t0x83A2\n0xFAF9\t0x92CF\n0xFAFA\t0x9830\n0xFAFB\t0x4EA8\n0xFAFC\t0x5144\n0xFAFD\t0x5211\n0xFAFE\t0x578B\n0xFBA1\t0x5F62\n0xFBA2\t0x6CC2\n0xFBA3\t0x6ECE\n0xFBA4\t0x7005\n0xFBA5\t0x7050\n0xFBA6\t0x70AF\n0xFBA7\t0x7192\n0xFBA8\t0x73E9\n0xFBA9\t0x7469\n0xFBAA\t0x834A\n0xFBAB\t0x87A2\n0xFBAC\t0x8861\n0xFBAD\t0x9008\n0xFBAE\t0x90A2\n0xFBAF\t0x93A3\n0xFBB0\t0x99A8\n0xFBB1\t0x516E\n0xFBB2\t0x5F57\n0xFBB3\t0x60E0\n0xFBB4\t0x6167\n0xFBB5\t0x66B3\n0xFBB6\t0x8559\n0xFBB7\t0x8E4A\n0xFBB8\t0x91AF\n0xFBB9\t0x978B\n0xFBBA\t0x4E4E\n0xFBBB\t0x4E92\n0xFBBC\t0x547C\n0xFBBD\t0x58D5\n0xFBBE\t0x58FA\n0xFBBF\t0x597D\n0xFBC0\t0x5CB5\n0xFBC1\t0x5F27\n0xFBC2\t0x6236\n0xFBC3\t0x6248\n0xFBC4\t0x660A\n0xFBC5\t0x6667\n0xFBC6\t0x6BEB\n0xFBC7\t0x6D69\n0xFBC8\t0x6DCF\n0xFBC9\t0x6E56\n0xFBCA\t0x6EF8\n0xFBCB\t0x6F94\n0xFBCC\t0x6FE0\n0xFBCD\t0x6FE9\n0xFBCE\t0x705D\n0xFBCF\t0x72D0\n0xFBD0\t0x7425\n0xFBD1\t0x745A\n0xFBD2\t0x74E0\n0xFBD3\t0x7693\n0xFBD4\t0x795C\n0xFBD5\t0x7CCA\n0xFBD6\t0x7E1E\n0xFBD7\t0x80E1\n0xFBD8\t0x82A6\n0xFBD9\t0x846B\n0xFBDA\t0x84BF\n0xFBDB\t0x864E\n0xFBDC\t0x865F\n0xFBDD\t0x8774\n0xFBDE\t0x8B77\n0xFBDF\t0x8C6A\n0xFBE0\t0x93AC\n0xFBE1\t0x9800\n0xFBE2\t0x9865\n0xFBE3\t0x60D1\n0xFBE4\t0x6216\n0xFBE5\t0x9177\n0xFBE6\t0x5A5A\n0xFBE7\t0x660F\n0xFBE8\t0x6DF7\n0xFBE9\t0x6E3E\n0xFBEA\t0x743F\n0xFBEB\t0x9B42\n0xFBEC\t0x5FFD\n0xFBED\t0x60DA\n0xFBEE\t0x7B0F\n0xFBEF\t0x54C4\n0xFBF0\t0x5F18\n0xFBF1\t0x6C5E\n0xFBF2\t0x6CD3\n0xFBF3\t0x6D2A\n0xFBF4\t0x70D8\n0xFBF5\t0x7D05\n0xFBF6\t0x8679\n0xFBF7\t0x8A0C\n0xFBF8\t0x9D3B\n0xFBF9\t0x5316\n0xFBFA\t0x548C\n0xFBFB\t0x5B05\n0xFBFC\t0x6A3A\n0xFBFD\t0x706B\n0xFBFE\t0x7575\n0xFCA1\t0x798D\n0xFCA2\t0x79BE\n0xFCA3\t0x82B1\n0xFCA4\t0x83EF\n0xFCA5\t0x8A71\n0xFCA6\t0x8B41\n0xFCA7\t0x8CA8\n0xFCA8\t0x9774\n0xFCA9\t0xFA0B\n0xFCAA\t0x64F4\n0xFCAB\t0x652B\n0xFCAC\t0x78BA\n0xFCAD\t0x78BB\n0xFCAE\t0x7A6B\n0xFCAF\t0x4E38\n0xFCB0\t0x559A\n0xFCB1\t0x5950\n0xFCB2\t0x5BA6\n0xFCB3\t0x5E7B\n0xFCB4\t0x60A3\n0xFCB5\t0x63DB\n0xFCB6\t0x6B61\n0xFCB7\t0x6665\n0xFCB8\t0x6853\n0xFCB9\t0x6E19\n0xFCBA\t0x7165\n0xFCBB\t0x74B0\n0xFCBC\t0x7D08\n0xFCBD\t0x9084\n0xFCBE\t0x9A69\n0xFCBF\t0x9C25\n0xFCC0\t0x6D3B\n0xFCC1\t0x6ED1\n0xFCC2\t0x733E\n0xFCC3\t0x8C41\n0xFCC4\t0x95CA\n0xFCC5\t0x51F0\n0xFCC6\t0x5E4C\n0xFCC7\t0x5FA8\n0xFCC8\t0x604D\n0xFCC9\t0x60F6\n0xFCCA\t0x6130\n0xFCCB\t0x614C\n0xFCCC\t0x6643\n0xFCCD\t0x6644\n0xFCCE\t0x69A5\n0xFCCF\t0x6CC1\n0xFCD0\t0x6E5F\n0xFCD1\t0x6EC9\n0xFCD2\t0x6F62\n0xFCD3\t0x714C\n0xFCD4\t0x749C\n0xFCD5\t0x7687\n0xFCD6\t0x7BC1\n0xFCD7\t0x7C27\n0xFCD8\t0x8352\n0xFCD9\t0x8757\n0xFCDA\t0x9051\n0xFCDB\t0x968D\n0xFCDC\t0x9EC3\n0xFCDD\t0x532F\n0xFCDE\t0x56DE\n0xFCDF\t0x5EFB\n0xFCE0\t0x5F8A\n0xFCE1\t0x6062\n0xFCE2\t0x6094\n0xFCE3\t0x61F7\n0xFCE4\t0x6666\n0xFCE5\t0x6703\n0xFCE6\t0x6A9C\n0xFCE7\t0x6DEE\n0xFCE8\t0x6FAE\n0xFCE9\t0x7070\n0xFCEA\t0x736A\n0xFCEB\t0x7E6A\n0xFCEC\t0x81BE\n0xFCED\t0x8334\n0xFCEE\t0x86D4\n0xFCEF\t0x8AA8\n0xFCF0\t0x8CC4\n0xFCF1\t0x5283\n0xFCF2\t0x7372\n0xFCF3\t0x5B96\n0xFCF4\t0x6A6B\n0xFCF5\t0x9404\n0xFCF6\t0x54EE\n0xFCF7\t0x5686\n0xFCF8\t0x5B5D\n0xFCF9\t0x6548\n0xFCFA\t0x6585\n0xFCFB\t0x66C9\n0xFCFC\t0x689F\n0xFCFD\t0x6D8D\n0xFCFE\t0x6DC6\n0xFDA1\t0x723B\n0xFDA2\t0x80B4\n0xFDA3\t0x9175\n0xFDA4\t0x9A4D\n0xFDA5\t0x4FAF\n0xFDA6\t0x5019\n0xFDA7\t0x539A\n0xFDA8\t0x540E\n0xFDA9\t0x543C\n0xFDAA\t0x5589\n0xFDAB\t0x55C5\n0xFDAC\t0x5E3F\n0xFDAD\t0x5F8C\n0xFDAE\t0x673D\n0xFDAF\t0x7166\n0xFDB0\t0x73DD\n0xFDB1\t0x9005\n0xFDB2\t0x52DB\n0xFDB3\t0x52F3\n0xFDB4\t0x5864\n0xFDB5\t0x58CE\n0xFDB6\t0x7104\n0xFDB7\t0x718F\n0xFDB8\t0x71FB\n0xFDB9\t0x85B0\n0xFDBA\t0x8A13\n0xFDBB\t0x6688\n0xFDBC\t0x85A8\n0xFDBD\t0x55A7\n0xFDBE\t0x6684\n0xFDBF\t0x714A\n0xFDC0\t0x8431\n0xFDC1\t0x5349\n0xFDC2\t0x5599\n0xFDC3\t0x6BC1\n0xFDC4\t0x5F59\n0xFDC5\t0x5FBD\n0xFDC6\t0x63EE\n0xFDC7\t0x6689\n0xFDC8\t0x7147\n0xFDC9\t0x8AF1\n0xFDCA\t0x8F1D\n0xFDCB\t0x9EBE\n0xFDCC\t0x4F11\n0xFDCD\t0x643A\n0xFDCE\t0x70CB\n0xFDCF\t0x7566\n0xFDD0\t0x8667\n0xFDD1\t0x6064\n0xFDD2\t0x8B4E\n0xFDD3\t0x9DF8\n0xFDD4\t0x5147\n0xFDD5\t0x51F6\n0xFDD6\t0x5308\n0xFDD7\t0x6D36\n0xFDD8\t0x80F8\n0xFDD9\t0x9ED1\n0xFDDA\t0x6615\n0xFDDB\t0x6B23\n0xFDDC\t0x7098\n0xFDDD\t0x75D5\n0xFDDE\t0x5403\n0xFDDF\t0x5C79\n0xFDE0\t0x7D07\n0xFDE1\t0x8A16\n0xFDE2\t0x6B20\n0xFDE3\t0x6B3D\n0xFDE4\t0x6B46\n0xFDE5\t0x5438\n0xFDE6\t0x6070\n0xFDE7\t0x6D3D\n0xFDE8\t0x7FD5\n0xFDE9\t0x8208\n0xFDEA\t0x50D6\n0xFDEB\t0x51DE\n0xFDEC\t0x559C\n0xFDED\t0x566B\n0xFDEE\t0x56CD\n0xFDEF\t0x59EC\n0xFDF0\t0x5B09\n0xFDF1\t0x5E0C\n0xFDF2\t0x6199\n0xFDF3\t0x6198\n0xFDF4\t0x6231\n0xFDF5\t0x665E\n0xFDF6\t0x66E6\n0xFDF7\t0x7199\n0xFDF8\t0x71B9\n0xFDF9\t0x71BA\n0xFDFA\t0x72A7\n0xFDFB\t0x79A7\n0xFDFC\t0x7A00\n0xFDFD\t0x7FB2\n0xFDFE\t0x8A70\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/EUC-TW.IRREVERSIBLE.TXT",
    "content": "0x8EA1A1A1\t0x3000\n0x8EA1A1A2\t0xFF0C\n0x8EA1A1A3\t0x3001\n0x8EA1A1A4\t0x3002\n0x8EA1A1A5\t0xFF0E\n0x8EA1A1A6\t0x30FB\n0x8EA1A1A7\t0xFF1B\n0x8EA1A1A8\t0xFF1A\n0x8EA1A1A9\t0xFF1F\n0x8EA1A1AA\t0xFF01\n0x8EA1A1AB\t0xFE30\n0x8EA1A1AC\t0x2026\n0x8EA1A1AD\t0x2025\n0x8EA1A1AE\t0xFE50\n0x8EA1A1AF\t0xFE51\n0x8EA1A1B0\t0xFE52\n0x8EA1A1B1\t0x00B7\n0x8EA1A1B2\t0xFE54\n0x8EA1A1B3\t0xFE55\n0x8EA1A1B4\t0xFE56\n0x8EA1A1B5\t0xFE57\n0x8EA1A1B6\t0xFE31\n0x8EA1A1B7\t0x2014\n0x8EA1A1B8\t0xFE32\n0x8EA1A1B9\t0x2013\n0x8EA1A1BE\t0xFF08\n0x8EA1A1BF\t0xFF09\n0x8EA1A1C0\t0xFE35\n0x8EA1A1C1\t0xFE36\n0x8EA1A1C2\t0xFF5B\n0x8EA1A1C3\t0xFF5D\n0x8EA1A1C4\t0xFE37\n0x8EA1A1C5\t0xFE38\n0x8EA1A1C6\t0x3014\n0x8EA1A1C7\t0x3015\n0x8EA1A1C8\t0xFE39\n0x8EA1A1C9\t0xFE3A\n0x8EA1A1CA\t0x3010\n0x8EA1A1CB\t0x3011\n0x8EA1A1CC\t0xFE3B\n0x8EA1A1CD\t0xFE3C\n0x8EA1A1CE\t0x300A\n0x8EA1A1CF\t0x300B\n0x8EA1A1D0\t0xFE3D\n0x8EA1A1D1\t0xFE3E\n0x8EA1A1D2\t0x3008\n0x8EA1A1D3\t0x3009\n0x8EA1A1D4\t0xFE3F\n0x8EA1A1D5\t0xFE40\n0x8EA1A1D6\t0x300C\n0x8EA1A1D7\t0x300D\n0x8EA1A1D8\t0xFE41\n0x8EA1A1D9\t0xFE42\n0x8EA1A1DA\t0x300E\n0x8EA1A1DB\t0x300F\n0x8EA1A1DC\t0xFE43\n0x8EA1A1DD\t0xFE44\n0x8EA1A1DE\t0xFE59\n0x8EA1A1DF\t0xFE5A\n0x8EA1A1E0\t0xFE5B\n0x8EA1A1E1\t0xFE5C\n0x8EA1A1E2\t0xFE5D\n0x8EA1A1E3\t0xFE5E\n0x8EA1A1E4\t0x2018\n0x8EA1A1E5\t0x2019\n0x8EA1A1E6\t0x201C\n0x8EA1A1E7\t0x201D\n0x8EA1A1E8\t0x301D\n0x8EA1A1E9\t0x301E\n0x8EA1A1EA\t0x2032\n0x8EA1A1EB\t0x2035\n0x8EA1A1EC\t0xFF03\n0x8EA1A1ED\t0xFF06\n0x8EA1A1EE\t0xFF0A\n0x8EA1A1EF\t0x203B\n0x8EA1A1F0\t0x00A7\n0x8EA1A1F1\t0x3003\n0x8EA1A1F2\t0x25CB\n0x8EA1A1F3\t0x25CF\n0x8EA1A1F4\t0x25B3\n0x8EA1A1F5\t0x25B2\n0x8EA1A1F6\t0x25CE\n0x8EA1A1F7\t0x2606\n0x8EA1A1F8\t0x2605\n0x8EA1A1F9\t0x25C7\n0x8EA1A1FA\t0x25C6\n0x8EA1A1FB\t0x25A1\n0x8EA1A1FC\t0x25A0\n0x8EA1A1FD\t0x25BD\n0x8EA1A1FE\t0x25BC\n0x8EA1A2A1\t0x32A3\n0x8EA1A2A2\t0x2105\n0x8EA1A2A3\t0x203E\n0x8EA1A2A5\t0xFF3F\n0x8EA1A2A7\t0xFE49\n0x8EA1A2A8\t0xFE4A\n0x8EA1A2A9\t0xFE4D\n0x8EA1A2AA\t0xFE4E\n0x8EA1A2AB\t0xFE4B\n0x8EA1A2AC\t0xFE4C\n0x8EA1A2AD\t0xFE5F\n0x8EA1A2AE\t0xFE60\n0x8EA1A2AF\t0xFE61\n0x8EA1A2B0\t0xFF0B\n0x8EA1A2B1\t0xFF0D\n0x8EA1A2B2\t0x00D7\n0x8EA1A2B3\t0x00F7\n0x8EA1A2B4\t0x00B1\n0x8EA1A2B5\t0x221A\n0x8EA1A2B6\t0xFF1C\n0x8EA1A2B7\t0xFF1E\n0x8EA1A2B8\t0xFF1D\n0x8EA1A2B9\t0x2266\n0x8EA1A2BA\t0x2267\n0x8EA1A2BB\t0x2260\n0x8EA1A2BC\t0x221E\n0x8EA1A2BD\t0x2252\n0x8EA1A2BE\t0x2261\n0x8EA1A2BF\t0xFE62\n0x8EA1A2C0\t0xFE63\n0x8EA1A2C1\t0xFE64\n0x8EA1A2C2\t0xFE66\n0x8EA1A2C3\t0xFE65\n0x8EA1A2C4\t0x223C\n0x8EA1A2C5\t0x2229\n0x8EA1A2C6\t0x222A\n0x8EA1A2C7\t0x22A5\n0x8EA1A2C8\t0x2220\n0x8EA1A2C9\t0x221F\n0x8EA1A2CA\t0x22BF\n0x8EA1A2CB\t0x33D2\n0x8EA1A2CC\t0x33D1\n0x8EA1A2CD\t0x222B\n0x8EA1A2CE\t0x222E\n0x8EA1A2CF\t0x2235\n0x8EA1A2D0\t0x2234\n0x8EA1A2D1\t0x2640\n0x8EA1A2D2\t0x2642\n0x8EA1A2D3\t0x2641\n0x8EA1A2D4\t0x2609\n0x8EA1A2D5\t0x2191\n0x8EA1A2D6\t0x2193\n0x8EA1A2D7\t0x2192\n0x8EA1A2D8\t0x2190\n0x8EA1A2D9\t0x2196\n0x8EA1A2DA\t0x2197\n0x8EA1A2DB\t0x2199\n0x8EA1A2DC\t0x2198\n0x8EA1A2DD\t0x2016\n0x8EA1A2DE\t0xFF5C\n0x8EA1A2DF\t0xFF0F\n0x8EA1A2E0\t0xFF3C\n0x8EA1A2E1\t0x2215\n0x8EA1A2E2\t0xFE68\n0x8EA1A2E3\t0xFF04\n0x8EA1A2E4\t0xFFE5\n0x8EA1A2E5\t0x3012\n0x8EA1A2E6\t0xFFE0\n0x8EA1A2E7\t0xFFE1\n0x8EA1A2E8\t0xFF05\n0x8EA1A2E9\t0xFF20\n0x8EA1A2EA\t0x2103\n0x8EA1A2EB\t0x2109\n0x8EA1A2EC\t0xFE69\n0x8EA1A2ED\t0xFE6A\n0x8EA1A2EE\t0xFE6B\n0x8EA1A2EF\t0x33D5\n0x8EA1A2F0\t0x339C\n0x8EA1A2F1\t0x339D\n0x8EA1A2F2\t0x339E\n0x8EA1A2F3\t0x33CE\n0x8EA1A2F4\t0x33A1\n0x8EA1A2F5\t0x338E\n0x8EA1A2F6\t0x338F\n0x8EA1A2F7\t0x33C4\n0x8EA1A2F8\t0x00B0\n0x8EA1A2F9\t0x5159\n0x8EA1A2FA\t0x515B\n0x8EA1A2FB\t0x515E\n0x8EA1A2FC\t0x515D\n0x8EA1A2FD\t0x5161\n0x8EA1A2FE\t0x5163\n0x8EA1A3A1\t0x55E7\n0x8EA1A3A2\t0x74E9\n0x8EA1A3A3\t0x7CCE\n0x8EA1A3A4\t0x2581\n0x8EA1A3A5\t0x2582\n0x8EA1A3A6\t0x2583\n0x8EA1A3A7\t0x2584\n0x8EA1A3A8\t0x2585\n0x8EA1A3A9\t0x2586\n0x8EA1A3AA\t0x2587\n0x8EA1A3AB\t0x2588\n0x8EA1A3AC\t0x258F\n0x8EA1A3AD\t0x258E\n0x8EA1A3AE\t0x258D\n0x8EA1A3AF\t0x258C\n0x8EA1A3B0\t0x258B\n0x8EA1A3B1\t0x258A\n0x8EA1A3B2\t0x2589\n0x8EA1A3B3\t0x253C\n0x8EA1A3B4\t0x2534\n0x8EA1A3B5\t0x252C\n0x8EA1A3B6\t0x2524\n0x8EA1A3B7\t0x251C\n0x8EA1A3B8\t0x2594\n0x8EA1A3B9\t0x2500\n0x8EA1A3BA\t0x2502\n0x8EA1A3BB\t0x2595\n0x8EA1A3BC\t0x250C\n0x8EA1A3BD\t0x2510\n0x8EA1A3BE\t0x2514\n0x8EA1A3BF\t0x2518\n0x8EA1A3C0\t0x256D\n0x8EA1A3C1\t0x256E\n0x8EA1A3C2\t0x2570\n0x8EA1A3C3\t0x256F\n0x8EA1A3C4\t0x2550\n0x8EA1A3C5\t0x255E\n0x8EA1A3C6\t0x256A\n0x8EA1A3C7\t0x2561\n0x8EA1A3C8\t0x25E2\n0x8EA1A3C9\t0x25E3\n0x8EA1A3CA\t0x25E5\n0x8EA1A3CB\t0x25E4\n0x8EA1A3CC\t0x2571\n0x8EA1A3CD\t0x2572\n0x8EA1A3CE\t0x2573\n0x8EA1A4A1\t0xFF10\n0x8EA1A4A2\t0xFF11\n0x8EA1A4A3\t0xFF12\n0x8EA1A4A4\t0xFF13\n0x8EA1A4A5\t0xFF14\n0x8EA1A4A6\t0xFF15\n0x8EA1A4A7\t0xFF16\n0x8EA1A4A8\t0xFF17\n0x8EA1A4A9\t0xFF18\n0x8EA1A4AA\t0xFF19\n0x8EA1A4AB\t0x2160\n0x8EA1A4AC\t0x2161\n0x8EA1A4AD\t0x2162\n0x8EA1A4AE\t0x2163\n0x8EA1A4AF\t0x2164\n0x8EA1A4B0\t0x2165\n0x8EA1A4B1\t0x2166\n0x8EA1A4B2\t0x2167\n0x8EA1A4B3\t0x2168\n0x8EA1A4B4\t0x2169\n0x8EA1A4B5\t0x3021\n0x8EA1A4B6\t0x3022\n0x8EA1A4B7\t0x3023\n0x8EA1A4B8\t0x3024\n0x8EA1A4B9\t0x3025\n0x8EA1A4BA\t0x3026\n0x8EA1A4BB\t0x3027\n0x8EA1A4BC\t0x3028\n0x8EA1A4BD\t0x3029\n0x8EA1A4BF\t0x5344\n0x8EA1A4C1\t0xFF21\n0x8EA1A4C2\t0xFF22\n0x8EA1A4C3\t0xFF23\n0x8EA1A4C4\t0xFF24\n0x8EA1A4C5\t0xFF25\n0x8EA1A4C6\t0xFF26\n0x8EA1A4C7\t0xFF27\n0x8EA1A4C8\t0xFF28\n0x8EA1A4C9\t0xFF29\n0x8EA1A4CA\t0xFF2A\n0x8EA1A4CB\t0xFF2B\n0x8EA1A4CC\t0xFF2C\n0x8EA1A4CD\t0xFF2D\n0x8EA1A4CE\t0xFF2E\n0x8EA1A4CF\t0xFF2F\n0x8EA1A4D0\t0xFF30\n0x8EA1A4D1\t0xFF31\n0x8EA1A4D2\t0xFF32\n0x8EA1A4D3\t0xFF33\n0x8EA1A4D4\t0xFF34\n0x8EA1A4D5\t0xFF35\n0x8EA1A4D6\t0xFF36\n0x8EA1A4D7\t0xFF37\n0x8EA1A4D8\t0xFF38\n0x8EA1A4D9\t0xFF39\n0x8EA1A4DA\t0xFF3A\n0x8EA1A4DB\t0xFF41\n0x8EA1A4DC\t0xFF42\n0x8EA1A4DD\t0xFF43\n0x8EA1A4DE\t0xFF44\n0x8EA1A4DF\t0xFF45\n0x8EA1A4E0\t0xFF46\n0x8EA1A4E1\t0xFF47\n0x8EA1A4E2\t0xFF48\n0x8EA1A4E3\t0xFF49\n0x8EA1A4E4\t0xFF4A\n0x8EA1A4E5\t0xFF4B\n0x8EA1A4E6\t0xFF4C\n0x8EA1A4E7\t0xFF4D\n0x8EA1A4E8\t0xFF4E\n0x8EA1A4E9\t0xFF4F\n0x8EA1A4EA\t0xFF50\n0x8EA1A4EB\t0xFF51\n0x8EA1A4EC\t0xFF52\n0x8EA1A4ED\t0xFF53\n0x8EA1A4EE\t0xFF54\n0x8EA1A4EF\t0xFF55\n0x8EA1A4F0\t0xFF56\n0x8EA1A4F1\t0xFF57\n0x8EA1A4F2\t0xFF58\n0x8EA1A4F3\t0xFF59\n0x8EA1A4F4\t0xFF5A\n0x8EA1A4F5\t0x0391\n0x8EA1A4F6\t0x0392\n0x8EA1A4F7\t0x0393\n0x8EA1A4F8\t0x0394\n0x8EA1A4F9\t0x0395\n0x8EA1A4FA\t0x0396\n0x8EA1A4FB\t0x0397\n0x8EA1A4FC\t0x0398\n0x8EA1A4FD\t0x0399\n0x8EA1A4FE\t0x039A\n0x8EA1A5A1\t0x039B\n0x8EA1A5A2\t0x039C\n0x8EA1A5A3\t0x039D\n0x8EA1A5A4\t0x039E\n0x8EA1A5A5\t0x039F\n0x8EA1A5A6\t0x03A0\n0x8EA1A5A7\t0x03A1\n0x8EA1A5A8\t0x03A3\n0x8EA1A5A9\t0x03A4\n0x8EA1A5AA\t0x03A5\n0x8EA1A5AB\t0x03A6\n0x8EA1A5AC\t0x03A7\n0x8EA1A5AD\t0x03A8\n0x8EA1A5AE\t0x03A9\n0x8EA1A5AF\t0x03B1\n0x8EA1A5B0\t0x03B2\n0x8EA1A5B1\t0x03B3\n0x8EA1A5B2\t0x03B4\n0x8EA1A5B3\t0x03B5\n0x8EA1A5B4\t0x03B6\n0x8EA1A5B5\t0x03B7\n0x8EA1A5B6\t0x03B8\n0x8EA1A5B7\t0x03B9\n0x8EA1A5B8\t0x03BA\n0x8EA1A5B9\t0x03BB\n0x8EA1A5BA\t0x03BC\n0x8EA1A5BB\t0x03BD\n0x8EA1A5BC\t0x03BE\n0x8EA1A5BD\t0x03BF\n0x8EA1A5BE\t0x03C0\n0x8EA1A5BF\t0x03C1\n0x8EA1A5C0\t0x03C3\n0x8EA1A5C1\t0x03C4\n0x8EA1A5C2\t0x03C5\n0x8EA1A5C3\t0x03C6\n0x8EA1A5C4\t0x03C7\n0x8EA1A5C5\t0x03C8\n0x8EA1A5C6\t0x03C9\n0x8EA1A5C7\t0x3105\n0x8EA1A5C8\t0x3106\n0x8EA1A5C9\t0x3107\n0x8EA1A5CA\t0x3108\n0x8EA1A5CB\t0x3109\n0x8EA1A5CC\t0x310A\n0x8EA1A5CD\t0x310B\n0x8EA1A5CE\t0x310C\n0x8EA1A5CF\t0x310D\n0x8EA1A5D0\t0x310E\n0x8EA1A5D1\t0x310F\n0x8EA1A5D2\t0x3110\n0x8EA1A5D3\t0x3111\n0x8EA1A5D4\t0x3112\n0x8EA1A5D5\t0x3113\n0x8EA1A5D6\t0x3114\n0x8EA1A5D7\t0x3115\n0x8EA1A5D8\t0x3116\n0x8EA1A5D9\t0x3117\n0x8EA1A5DA\t0x3118\n0x8EA1A5DB\t0x3119\n0x8EA1A5DC\t0x311A\n0x8EA1A5DD\t0x311B\n0x8EA1A5DE\t0x311C\n0x8EA1A5DF\t0x311D\n0x8EA1A5E0\t0x311E\n0x8EA1A5E1\t0x311F\n0x8EA1A5E2\t0x3120\n0x8EA1A5E3\t0x3121\n0x8EA1A5E4\t0x3122\n0x8EA1A5E5\t0x3123\n0x8EA1A5E6\t0x3124\n0x8EA1A5E7\t0x3125\n0x8EA1A5E8\t0x3126\n0x8EA1A5E9\t0x3127\n0x8EA1A5EA\t0x3128\n0x8EA1A5EB\t0x3129\n0x8EA1A5EC\t0x02D9\n0x8EA1A5ED\t0x02C9\n0x8EA1A5EE\t0x02CA\n0x8EA1A5EF\t0x02C7\n0x8EA1A5F0\t0x02CB\n0x8EA1A6A1\t0x2460\n0x8EA1A6A2\t0x2461\n0x8EA1A6A3\t0x2462\n0x8EA1A6A4\t0x2463\n0x8EA1A6A5\t0x2464\n0x8EA1A6A6\t0x2465\n0x8EA1A6A7\t0x2466\n0x8EA1A6A8\t0x2467\n0x8EA1A6A9\t0x2468\n0x8EA1A6AA\t0x2469\n0x8EA1A6AB\t0x2474\n0x8EA1A6AC\t0x2475\n0x8EA1A6AD\t0x2476\n0x8EA1A6AE\t0x2477\n0x8EA1A6AF\t0x2478\n0x8EA1A6B0\t0x2479\n0x8EA1A6B1\t0x247A\n0x8EA1A6B2\t0x247B\n0x8EA1A6B3\t0x247C\n0x8EA1A6B4\t0x247D\n0x8EA1A6B5\t0x2170\n0x8EA1A6B6\t0x2171\n0x8EA1A6B7\t0x2172\n0x8EA1A6B8\t0x2173\n0x8EA1A6B9\t0x2174\n0x8EA1A6BA\t0x2175\n0x8EA1A6BB\t0x2176\n0x8EA1A6BC\t0x2177\n0x8EA1A6BD\t0x2178\n0x8EA1A6BE\t0x2179\n0x8EA1A7A8\t0x4EA0\n0x8EA1A7AF\t0x51AB\n0x8EA1A7B4\t0x52F9\n0x8EA1C2A1\t0x2400\n0x8EA1C2A2\t0x2401\n0x8EA1C2A3\t0x2402\n0x8EA1C2A4\t0x2403\n0x8EA1C2A5\t0x2404\n0x8EA1C2A6\t0x2405\n0x8EA1C2A7\t0x2406\n0x8EA1C2A8\t0x2407\n0x8EA1C2A9\t0x2408\n0x8EA1C2AA\t0x2409\n0x8EA1C2AB\t0x240A\n0x8EA1C2AC\t0x240B\n0x8EA1C2AD\t0x240C\n0x8EA1C2AE\t0x240D\n0x8EA1C2AF\t0x240E\n0x8EA1C2B0\t0x240F\n0x8EA1C2B1\t0x2410\n0x8EA1C2B2\t0x2411\n0x8EA1C2B3\t0x2412\n0x8EA1C2B4\t0x2413\n0x8EA1C2B5\t0x2414\n0x8EA1C2B6\t0x2415\n0x8EA1C2B7\t0x2416\n0x8EA1C2B8\t0x2417\n0x8EA1C2B9\t0x2418\n0x8EA1C2BA\t0x2419\n0x8EA1C2BB\t0x241A\n0x8EA1C2BC\t0x241B\n0x8EA1C2BD\t0x241C\n0x8EA1C2BE\t0x241D\n0x8EA1C2BF\t0x241E\n0x8EA1C2C0\t0x241F\n0x8EA1C2C1\t0x2421\n0x8EA1C2C2\t0x20AC\n0x8EA1C4A1\t0x4E00\n0x8EA1C4A2\t0x4E59\n0x8EA1C4A3\t0x4E01\n0x8EA1C4A4\t0x4E03\n0x8EA1C4A5\t0x4E43\n0x8EA1C4A6\t0x4E5D\n0x8EA1C4A7\t0x4E86\n0x8EA1C4A8\t0x4E8C\n0x8EA1C4A9\t0x4EBA\n0x8EA1C4AA\t0x513F\n0x8EA1C4AB\t0x5165\n0x8EA1C4AC\t0x516B\n0x8EA1C4AD\t0x51E0\n0x8EA1C4AE\t0x5200\n0x8EA1C4AF\t0x5201\n0x8EA1C4B0\t0x529B\n0x8EA1C4B1\t0x5315\n0x8EA1C4B2\t0x5341\n0x8EA1C4B3\t0x535C\n0x8EA1C4B4\t0x53C8\n0x8EA1C4B5\t0x4E09\n0x8EA1C4B6\t0x4E0B\n0x8EA1C4B7\t0x4E08\n0x8EA1C4B8\t0x4E0A\n0x8EA1C4B9\t0x4E2B\n0x8EA1C4BA\t0x4E38\n0x8EA1C4BB\t0x51E1\n0x8EA1C4BC\t0x4E45\n0x8EA1C4BD\t0x4E48\n0x8EA1C4BE\t0x4E5F\n0x8EA1C4BF\t0x4E5E\n0x8EA1C4C0\t0x4E8E\n0x8EA1C4C1\t0x4EA1\n0x8EA1C4C2\t0x5140\n0x8EA1C4C3\t0x5203\n0x8EA1C4C4\t0x52FA\n0x8EA1C4C5\t0x5343\n0x8EA1C4C6\t0x53C9\n0x8EA1C4C7\t0x53E3\n0x8EA1C4C8\t0x571F\n0x8EA1C4C9\t0x58EB\n0x8EA1C4CA\t0x5915\n0x8EA1C4CB\t0x5927\n0x8EA1C4CC\t0x5973\n0x8EA1C4CD\t0x5B50\n0x8EA1C4CE\t0x5B51\n0x8EA1C4CF\t0x5B53\n0x8EA1C4D0\t0x5BF8\n0x8EA1C4D1\t0x5C0F\n0x8EA1C4D2\t0x5C22\n0x8EA1C4D3\t0x5C38\n0x8EA1C4D4\t0x5C71\n0x8EA1C4D5\t0x5DDD\n0x8EA1C4D6\t0x5DE5\n0x8EA1C4D7\t0x5DF1\n0x8EA1C4D8\t0x5DF2\n0x8EA1C4D9\t0x5DF3\n0x8EA1C4DA\t0x5DFE\n0x8EA1C4DB\t0x5E72\n0x8EA1C4DC\t0x5EFE\n0x8EA1C4DD\t0x5F0B\n0x8EA1C4DE\t0x5F13\n0x8EA1C4DF\t0x624D\n0x8EA1C4E0\t0x4E11\n0x8EA1C4E1\t0x4E10\n0x8EA1C4E2\t0x4E0D\n0x8EA1C4E3\t0x4E2D\n0x8EA1C4E4\t0x4E30\n0x8EA1C4E5\t0x4E39\n0x8EA1C4E6\t0x4E4B\n0x8EA1C4E7\t0x5C39\n0x8EA1C4E8\t0x4E88\n0x8EA1C4E9\t0x4E91\n0x8EA1C4EA\t0x4E95\n0x8EA1C4EB\t0x4E92\n0x8EA1C4EC\t0x4E94\n0x8EA1C4ED\t0x4EA2\n0x8EA1C4EE\t0x4EC1\n0x8EA1C4EF\t0x4EC0\n0x8EA1C4F0\t0x4EC3\n0x8EA1C4F1\t0x4EC6\n0x8EA1C4F2\t0x4EC7\n0x8EA1C4F3\t0x4ECD\n0x8EA1C4F4\t0x4ECA\n0x8EA1C4F5\t0x4ECB\n0x8EA1C4F6\t0x4EC4\n0x8EA1C4F7\t0x5143\n0x8EA1C4F8\t0x5141\n0x8EA1C4F9\t0x5167\n0x8EA1C4FA\t0x516D\n0x8EA1C4FB\t0x516E\n0x8EA1C4FC\t0x516C\n0x8EA1C4FD\t0x5197\n0x8EA1C4FE\t0x51F6\n0x8EA1C5A1\t0x5206\n0x8EA1C5A2\t0x5207\n0x8EA1C5A3\t0x5208\n0x8EA1C5A4\t0x52FB\n0x8EA1C5A5\t0x52FE\n0x8EA1C5A6\t0x52FF\n0x8EA1C5A7\t0x5316\n0x8EA1C5A8\t0x5339\n0x8EA1C5A9\t0x5348\n0x8EA1C5AA\t0x5347\n0x8EA1C5AB\t0x5345\n0x8EA1C5AC\t0x535E\n0x8EA1C5AD\t0x5384\n0x8EA1C5AE\t0x53CB\n0x8EA1C5AF\t0x53CA\n0x8EA1C5B0\t0x53CD\n0x8EA1C5B1\t0x58EC\n0x8EA1C5B2\t0x5929\n0x8EA1C5B3\t0x592B\n0x8EA1C5B4\t0x592A\n0x8EA1C5B5\t0x592D\n0x8EA1C5B6\t0x5B54\n0x8EA1C5B7\t0x5C11\n0x8EA1C5B8\t0x5C24\n0x8EA1C5B9\t0x5C3A\n0x8EA1C5BA\t0x5C6F\n0x8EA1C5BB\t0x5DF4\n0x8EA1C5BC\t0x5E7B\n0x8EA1C5BD\t0x5EFF\n0x8EA1C5BE\t0x5F14\n0x8EA1C5BF\t0x5F15\n0x8EA1C5C0\t0x5FC3\n0x8EA1C5C1\t0x6208\n0x8EA1C5C2\t0x6236\n0x8EA1C5C3\t0x624B\n0x8EA1C5C4\t0x624E\n0x8EA1C5C5\t0x652F\n0x8EA1C5C6\t0x6587\n0x8EA1C5C7\t0x6597\n0x8EA1C5C8\t0x65A4\n0x8EA1C5C9\t0x65B9\n0x8EA1C5CA\t0x65E5\n0x8EA1C5CB\t0x66F0\n0x8EA1C5CC\t0x6708\n0x8EA1C5CD\t0x6728\n0x8EA1C5CE\t0x6B20\n0x8EA1C5CF\t0x6B62\n0x8EA1C5D0\t0x6B79\n0x8EA1C5D1\t0x6BCB\n0x8EA1C5D2\t0x6BD4\n0x8EA1C5D3\t0x6BDB\n0x8EA1C5D4\t0x6C0F\n0x8EA1C5D5\t0x6C34\n0x8EA1C5D6\t0x706B\n0x8EA1C5D7\t0x722A\n0x8EA1C5D8\t0x7236\n0x8EA1C5D9\t0x723B\n0x8EA1C5DA\t0x7247\n0x8EA1C5DB\t0x7259\n0x8EA1C5DC\t0x725B\n0x8EA1C5DD\t0x72AC\n0x8EA1C5DE\t0x738B\n0x8EA1C5DF\t0x4E19\n0x8EA1C5E0\t0x4E16\n0x8EA1C5E1\t0x4E15\n0x8EA1C5E2\t0x4E14\n0x8EA1C5E3\t0x4E18\n0x8EA1C5E4\t0x4E3B\n0x8EA1C5E5\t0x4E4D\n0x8EA1C5E6\t0x4E4F\n0x8EA1C5E7\t0x4E4E\n0x8EA1C5E8\t0x4EE5\n0x8EA1C5E9\t0x4ED8\n0x8EA1C5EA\t0x4ED4\n0x8EA1C5EB\t0x4ED5\n0x8EA1C5EC\t0x4ED6\n0x8EA1C5ED\t0x4ED7\n0x8EA1C5EE\t0x4EE3\n0x8EA1C5EF\t0x4EE4\n0x8EA1C5F0\t0x4ED9\n0x8EA1C5F1\t0x4EDE\n0x8EA1C5F2\t0x5145\n0x8EA1C5F3\t0x5144\n0x8EA1C5F4\t0x5189\n0x8EA1C5F5\t0x518A\n0x8EA1C5F6\t0x51AC\n0x8EA1C5F7\t0x51F9\n0x8EA1C5F8\t0x51FA\n0x8EA1C5F9\t0x51F8\n0x8EA1C5FA\t0x520A\n0x8EA1C5FB\t0x52A0\n0x8EA1C5FC\t0x529F\n0x8EA1C5FD\t0x5305\n0x8EA1C5FE\t0x5306\n0x8EA1C6A1\t0x5317\n0x8EA1C6A2\t0x531D\n0x8EA1C6A3\t0x4EDF\n0x8EA1C6A4\t0x534A\n0x8EA1C6A5\t0x5349\n0x8EA1C6A6\t0x5361\n0x8EA1C6A7\t0x5360\n0x8EA1C6A8\t0x536F\n0x8EA1C6A9\t0x536E\n0x8EA1C6AA\t0x53BB\n0x8EA1C6AB\t0x53EF\n0x8EA1C6AC\t0x53E4\n0x8EA1C6AD\t0x53F3\n0x8EA1C6AE\t0x53EC\n0x8EA1C6AF\t0x53EE\n0x8EA1C6B0\t0x53E9\n0x8EA1C6B1\t0x53E8\n0x8EA1C6B2\t0x53FC\n0x8EA1C6B3\t0x53F8\n0x8EA1C6B4\t0x53F5\n0x8EA1C6B5\t0x53EB\n0x8EA1C6B6\t0x53E6\n0x8EA1C6B7\t0x53EA\n0x8EA1C6B8\t0x53F2\n0x8EA1C6B9\t0x53F1\n0x8EA1C6BA\t0x53F0\n0x8EA1C6BB\t0x53E5\n0x8EA1C6BC\t0x53ED\n0x8EA1C6BD\t0x53FB\n0x8EA1C6BE\t0x56DB\n0x8EA1C6BF\t0x56DA\n0x8EA1C6C0\t0x5916\n0x8EA1C6C1\t0x592E\n0x8EA1C6C2\t0x5931\n0x8EA1C6C3\t0x5974\n0x8EA1C6C4\t0x5976\n0x8EA1C6C5\t0x5B55\n0x8EA1C6C6\t0x5B83\n0x8EA1C6C7\t0x5C3C\n0x8EA1C6C8\t0x5DE8\n0x8EA1C6C9\t0x5DE7\n0x8EA1C6CA\t0x5DE6\n0x8EA1C6CB\t0x5E02\n0x8EA1C6CC\t0x5E03\n0x8EA1C6CD\t0x5E73\n0x8EA1C6CE\t0x5E7C\n0x8EA1C6CF\t0x5F01\n0x8EA1C6D0\t0x5F18\n0x8EA1C6D1\t0x5F17\n0x8EA1C6D2\t0x5FC5\n0x8EA1C6D3\t0x620A\n0x8EA1C6D4\t0x6253\n0x8EA1C6D5\t0x6254\n0x8EA1C6D6\t0x6252\n0x8EA1C6D7\t0x6251\n0x8EA1C6D8\t0x65A5\n0x8EA1C6D9\t0x65E6\n0x8EA1C6DA\t0x672E\n0x8EA1C6DB\t0x672C\n0x8EA1C6DC\t0x672A\n0x8EA1C6DD\t0x672B\n0x8EA1C6DE\t0x672D\n0x8EA1C6DF\t0x6B63\n0x8EA1C6E0\t0x6BCD\n0x8EA1C6E1\t0x6C11\n0x8EA1C6E2\t0x6C10\n0x8EA1C6E3\t0x6C38\n0x8EA1C6E4\t0x6C41\n0x8EA1C6E5\t0x6C40\n0x8EA1C6E6\t0x6C3E\n0x8EA1C6E7\t0x72AF\n0x8EA1C6E8\t0x7384\n0x8EA1C6E9\t0x7389\n0x8EA1C6EA\t0x74DC\n0x8EA1C6EB\t0x74E6\n0x8EA1C6EC\t0x7518\n0x8EA1C6ED\t0x751F\n0x8EA1C6EE\t0x7528\n0x8EA1C6EF\t0x7529\n0x8EA1C6F0\t0x7530\n0x8EA1C6F1\t0x7531\n0x8EA1C6F2\t0x7532\n0x8EA1C6F3\t0x7533\n0x8EA1C6F4\t0x758B\n0x8EA1C6F5\t0x767D\n0x8EA1C6F6\t0x76AE\n0x8EA1C6F7\t0x76BF\n0x8EA1C6F8\t0x76EE\n0x8EA1C6F9\t0x77DB\n0x8EA1C6FA\t0x77E2\n0x8EA1C6FB\t0x77F3\n0x8EA1C6FC\t0x793A\n0x8EA1C6FD\t0x79BE\n0x8EA1C6FE\t0x7A74\n0x8EA1C7A1\t0x7ACB\n0x8EA1C7A2\t0x4E1E\n0x8EA1C7A3\t0x4E1F\n0x8EA1C7A4\t0x4E52\n0x8EA1C7A5\t0x4E53\n0x8EA1C7A6\t0x4E69\n0x8EA1C7A7\t0x4E99\n0x8EA1C7A8\t0x4EA4\n0x8EA1C7A9\t0x4EA6\n0x8EA1C7AA\t0x4EA5\n0x8EA1C7AB\t0x4EFF\n0x8EA1C7AC\t0x4F09\n0x8EA1C7AD\t0x4F19\n0x8EA1C7AE\t0x4F0A\n0x8EA1C7AF\t0x4F15\n0x8EA1C7B0\t0x4F0D\n0x8EA1C7B1\t0x4F10\n0x8EA1C7B2\t0x4F11\n0x8EA1C7B3\t0x4F0F\n0x8EA1C7B4\t0x4EF2\n0x8EA1C7B5\t0x4EF6\n0x8EA1C7B6\t0x4EFB\n0x8EA1C7B7\t0x4EF0\n0x8EA1C7B8\t0x4EF3\n0x8EA1C7B9\t0x4EFD\n0x8EA1C7BA\t0x4F01\n0x8EA1C7BB\t0x4F0B\n0x8EA1C7BC\t0x5149\n0x8EA1C7BD\t0x5147\n0x8EA1C7BE\t0x5146\n0x8EA1C7BF\t0x5148\n0x8EA1C7C0\t0x5168\n0x8EA1C7C1\t0x5171\n0x8EA1C7C2\t0x518D\n0x8EA1C7C3\t0x51B0\n0x8EA1C7C4\t0x5217\n0x8EA1C7C5\t0x5211\n0x8EA1C7C6\t0x5212\n0x8EA1C7C7\t0x520E\n0x8EA1C7C8\t0x5216\n0x8EA1C7C9\t0x52A3\n0x8EA1C7CA\t0x5308\n0x8EA1C7CB\t0x5321\n0x8EA1C7CC\t0x5320\n0x8EA1C7CD\t0x5370\n0x8EA1C7CE\t0x5371\n0x8EA1C7CF\t0x5409\n0x8EA1C7D0\t0x540F\n0x8EA1C7D1\t0x540C\n0x8EA1C7D2\t0x540A\n0x8EA1C7D3\t0x5410\n0x8EA1C7D4\t0x5401\n0x8EA1C7D5\t0x540B\n0x8EA1C7D6\t0x5404\n0x8EA1C7D7\t0x5411\n0x8EA1C7D8\t0x540D\n0x8EA1C7D9\t0x5408\n0x8EA1C7DA\t0x5403\n0x8EA1C7DB\t0x540E\n0x8EA1C7DC\t0x5406\n0x8EA1C7DD\t0x5412\n0x8EA1C7DE\t0x56E0\n0x8EA1C7DF\t0x56DE\n0x8EA1C7E0\t0x56DD\n0x8EA1C7E1\t0x5733\n0x8EA1C7E2\t0x5730\n0x8EA1C7E3\t0x5728\n0x8EA1C7E4\t0x572D\n0x8EA1C7E5\t0x572C\n0x8EA1C7E6\t0x572F\n0x8EA1C7E7\t0x5729\n0x8EA1C7E8\t0x5919\n0x8EA1C7E9\t0x591A\n0x8EA1C7EA\t0x5937\n0x8EA1C7EB\t0x5938\n0x8EA1C7EC\t0x5984\n0x8EA1C7ED\t0x5978\n0x8EA1C7EE\t0x5983\n0x8EA1C7EF\t0x597D\n0x8EA1C7F0\t0x5979\n0x8EA1C7F1\t0x5982\n0x8EA1C7F2\t0x5981\n0x8EA1C7F3\t0x5B57\n0x8EA1C7F4\t0x5B58\n0x8EA1C7F5\t0x5B87\n0x8EA1C7F6\t0x5B88\n0x8EA1C7F7\t0x5B85\n0x8EA1C7F8\t0x5B89\n0x8EA1C7F9\t0x5BFA\n0x8EA1C7FA\t0x5C16\n0x8EA1C7FB\t0x5C79\n0x8EA1C7FC\t0x5DDE\n0x8EA1C7FD\t0x5E06\n0x8EA1C7FE\t0x5E76\n0x8EA1C8A1\t0x5E74\n0x8EA1C8A2\t0x5F0F\n0x8EA1C8A3\t0x5F1B\n0x8EA1C8A4\t0x5FD9\n0x8EA1C8A5\t0x5FD6\n0x8EA1C8A6\t0x620E\n0x8EA1C8A7\t0x620C\n0x8EA1C8A8\t0x620D\n0x8EA1C8A9\t0x6210\n0x8EA1C8AA\t0x6263\n0x8EA1C8AB\t0x625B\n0x8EA1C8AC\t0x6258\n0x8EA1C8AD\t0x6536\n0x8EA1C8AE\t0x65E9\n0x8EA1C8AF\t0x65E8\n0x8EA1C8B0\t0x65EC\n0x8EA1C8B1\t0x65ED\n0x8EA1C8B2\t0x66F2\n0x8EA1C8B3\t0x66F3\n0x8EA1C8B4\t0x6709\n0x8EA1C8B5\t0x673D\n0x8EA1C8B6\t0x6734\n0x8EA1C8B7\t0x6731\n0x8EA1C8B8\t0x6735\n0x8EA1C8B9\t0x6B21\n0x8EA1C8BA\t0x6B64\n0x8EA1C8BB\t0x6B7B\n0x8EA1C8BC\t0x6C16\n0x8EA1C8BD\t0x6C5D\n0x8EA1C8BE\t0x6C57\n0x8EA1C8BF\t0x6C59\n0x8EA1C8C0\t0x6C5F\n0x8EA1C8C1\t0x6C60\n0x8EA1C8C2\t0x6C50\n0x8EA1C8C3\t0x6C55\n0x8EA1C8C4\t0x6C61\n0x8EA1C8C5\t0x6C5B\n0x8EA1C8C6\t0x6C4D\n0x8EA1C8C7\t0x6C4E\n0x8EA1C8C8\t0x7070\n0x8EA1C8C9\t0x725F\n0x8EA1C8CA\t0x725D\n0x8EA1C8CB\t0x767E\n0x8EA1C8CC\t0x7AF9\n0x8EA1C8CD\t0x7C73\n0x8EA1C8CE\t0x7CF8\n0x8EA1C8CF\t0x7F36\n0x8EA1C8D0\t0x7F8A\n0x8EA1C8D1\t0x7FBD\n0x8EA1C8D2\t0x8001\n0x8EA1C8D3\t0x8003\n0x8EA1C8D4\t0x800C\n0x8EA1C8D5\t0x8012\n0x8EA1C8D6\t0x8033\n0x8EA1C8D7\t0x807F\n0x8EA1C8D8\t0x8089\n0x8EA1C8D9\t0x808B\n0x8EA1C8DA\t0x808C\n0x8EA1C8DB\t0x81E3\n0x8EA1C8DC\t0x81EA\n0x8EA1C8DD\t0x81F3\n0x8EA1C8DE\t0x81FC\n0x8EA1C8DF\t0x820C\n0x8EA1C8E0\t0x821B\n0x8EA1C8E1\t0x821F\n0x8EA1C8E2\t0x826E\n0x8EA1C8E3\t0x8272\n0x8EA1C8E4\t0x827E\n0x8EA1C8E5\t0x866B\n0x8EA1C8E6\t0x8840\n0x8EA1C8E7\t0x884C\n0x8EA1C8E8\t0x8863\n0x8EA1C8E9\t0x897F\n0x8EA1C8EA\t0x9621\n0x8EA1C8EB\t0x4E32\n0x8EA1C8EC\t0x4EA8\n0x8EA1C8ED\t0x4F4D\n0x8EA1C8EE\t0x4F4F\n0x8EA1C8EF\t0x4F47\n0x8EA1C8F0\t0x4F57\n0x8EA1C8F1\t0x4F5E\n0x8EA1C8F2\t0x4F34\n0x8EA1C8F3\t0x4F5B\n0x8EA1C8F4\t0x4F55\n0x8EA1C8F5\t0x4F30\n0x8EA1C8F6\t0x4F50\n0x8EA1C8F7\t0x4F51\n0x8EA1C8F8\t0x4F3D\n0x8EA1C8F9\t0x4F3A\n0x8EA1C8FA\t0x4F38\n0x8EA1C8FB\t0x4F43\n0x8EA1C8FC\t0x4F54\n0x8EA1C8FD\t0x4F3C\n0x8EA1C8FE\t0x4F46\n0x8EA1C9A1\t0x4F63\n0x8EA1C9A2\t0x4F5C\n0x8EA1C9A3\t0x4F60\n0x8EA1C9A4\t0x4F2F\n0x8EA1C9A5\t0x4F4E\n0x8EA1C9A6\t0x4F36\n0x8EA1C9A7\t0x4F59\n0x8EA1C9A8\t0x4F5D\n0x8EA1C9A9\t0x4F48\n0x8EA1C9AA\t0x4F5A\n0x8EA1C9AB\t0x514C\n0x8EA1C9AC\t0x514B\n0x8EA1C9AD\t0x514D\n0x8EA1C9AE\t0x5175\n0x8EA1C9AF\t0x51B6\n0x8EA1C9B0\t0x51B7\n0x8EA1C9B1\t0x5225\n0x8EA1C9B2\t0x5224\n0x8EA1C9B3\t0x5229\n0x8EA1C9B4\t0x522A\n0x8EA1C9B5\t0x5228\n0x8EA1C9B6\t0x52AB\n0x8EA1C9B7\t0x52A9\n0x8EA1C9B8\t0x52AA\n0x8EA1C9B9\t0x52AC\n0x8EA1C9BA\t0x5323\n0x8EA1C9BB\t0x5373\n0x8EA1C9BC\t0x5375\n0x8EA1C9BD\t0x541D\n0x8EA1C9BE\t0x542D\n0x8EA1C9BF\t0x541E\n0x8EA1C9C0\t0x543E\n0x8EA1C9C1\t0x5426\n0x8EA1C9C2\t0x544E\n0x8EA1C9C3\t0x5427\n0x8EA1C9C4\t0x5446\n0x8EA1C9C5\t0x5443\n0x8EA1C9C6\t0x5433\n0x8EA1C9C7\t0x5448\n0x8EA1C9C8\t0x5442\n0x8EA1C9C9\t0x541B\n0x8EA1C9CA\t0x5429\n0x8EA1C9CB\t0x544A\n0x8EA1C9CC\t0x5439\n0x8EA1C9CD\t0x543B\n0x8EA1C9CE\t0x5438\n0x8EA1C9CF\t0x542E\n0x8EA1C9D0\t0x5435\n0x8EA1C9D1\t0x5436\n0x8EA1C9D2\t0x5420\n0x8EA1C9D3\t0x543C\n0x8EA1C9D4\t0x5440\n0x8EA1C9D5\t0x5431\n0x8EA1C9D6\t0x542B\n0x8EA1C9D7\t0x541F\n0x8EA1C9D8\t0x542C\n0x8EA1C9D9\t0x56EA\n0x8EA1C9DA\t0x56F0\n0x8EA1C9DB\t0x56E4\n0x8EA1C9DC\t0x56EB\n0x8EA1C9DD\t0x574A\n0x8EA1C9DE\t0x5751\n0x8EA1C9DF\t0x5740\n0x8EA1C9E0\t0x574D\n0x8EA1C9E1\t0x5747\n0x8EA1C9E2\t0x574E\n0x8EA1C9E3\t0x573E\n0x8EA1C9E4\t0x5750\n0x8EA1C9E5\t0x574F\n0x8EA1C9E6\t0x573B\n0x8EA1C9E7\t0x58EF\n0x8EA1C9E8\t0x593E\n0x8EA1C9E9\t0x599D\n0x8EA1C9EA\t0x5992\n0x8EA1C9EB\t0x59A8\n0x8EA1C9EC\t0x599E\n0x8EA1C9ED\t0x59A3\n0x8EA1C9EE\t0x5999\n0x8EA1C9EF\t0x5996\n0x8EA1C9F0\t0x598D\n0x8EA1C9F1\t0x59A4\n0x8EA1C9F2\t0x5993\n0x8EA1C9F3\t0x598A\n0x8EA1C9F4\t0x59A5\n0x8EA1C9F5\t0x5B5D\n0x8EA1C9F6\t0x5B5C\n0x8EA1C9F7\t0x5B5A\n0x8EA1C9F8\t0x5B5B\n0x8EA1C9F9\t0x5B8C\n0x8EA1C9FA\t0x5B8B\n0x8EA1C9FB\t0x5B8F\n0x8EA1C9FC\t0x5C2C\n0x8EA1C9FD\t0x5C40\n0x8EA1C9FE\t0x5C41\n0x8EA1CAA1\t0x5C3F\n0x8EA1CAA2\t0x5C3E\n0x8EA1CAA3\t0x5C90\n0x8EA1CAA4\t0x5C91\n0x8EA1CAA5\t0x5C94\n0x8EA1CAA6\t0x5C8C\n0x8EA1CAA7\t0x5DEB\n0x8EA1CAA8\t0x5E0C\n0x8EA1CAA9\t0x5E8F\n0x8EA1CAAA\t0x5E87\n0x8EA1CAAB\t0x5E8A\n0x8EA1CAAC\t0x5EF7\n0x8EA1CAAD\t0x5F04\n0x8EA1CAAE\t0x5F1F\n0x8EA1CAAF\t0x5F64\n0x8EA1CAB0\t0x5F62\n0x8EA1CAB1\t0x5F77\n0x8EA1CAB2\t0x5F79\n0x8EA1CAB3\t0x5FD8\n0x8EA1CAB4\t0x5FCC\n0x8EA1CAB5\t0x5FD7\n0x8EA1CAB6\t0x5FCD\n0x8EA1CAB7\t0x5FF1\n0x8EA1CAB8\t0x5FEB\n0x8EA1CAB9\t0x5FF8\n0x8EA1CABA\t0x5FEA\n0x8EA1CABB\t0x6212\n0x8EA1CABC\t0x6211\n0x8EA1CABD\t0x6284\n0x8EA1CABE\t0x6297\n0x8EA1CABF\t0x6296\n0x8EA1CAC0\t0x6280\n0x8EA1CAC1\t0x6276\n0x8EA1CAC2\t0x6289\n0x8EA1CAC3\t0x626D\n0x8EA1CAC4\t0x628A\n0x8EA1CAC5\t0x627C\n0x8EA1CAC6\t0x627E\n0x8EA1CAC7\t0x6279\n0x8EA1CAC8\t0x6273\n0x8EA1CAC9\t0x6292\n0x8EA1CACA\t0x626F\n0x8EA1CACB\t0x6298\n0x8EA1CACC\t0x626E\n0x8EA1CACD\t0x6295\n0x8EA1CACE\t0x6293\n0x8EA1CACF\t0x6291\n0x8EA1CAD0\t0x6286\n0x8EA1CAD1\t0x6539\n0x8EA1CAD2\t0x653B\n0x8EA1CAD3\t0x6538\n0x8EA1CAD4\t0x65F1\n0x8EA1CAD5\t0x66F4\n0x8EA1CAD6\t0x675F\n0x8EA1CAD7\t0x674E\n0x8EA1CAD8\t0x674F\n0x8EA1CAD9\t0x6750\n0x8EA1CADA\t0x6751\n0x8EA1CADB\t0x675C\n0x8EA1CADC\t0x6756\n0x8EA1CADD\t0x675E\n0x8EA1CADE\t0x6749\n0x8EA1CADF\t0x6746\n0x8EA1CAE0\t0x6760\n0x8EA1CAE1\t0x6753\n0x8EA1CAE2\t0x6757\n0x8EA1CAE3\t0x6B65\n0x8EA1CAE4\t0x6BCF\n0x8EA1CAE5\t0x6C42\n0x8EA1CAE6\t0x6C5E\n0x8EA1CAE7\t0x6C99\n0x8EA1CAE8\t0x6C81\n0x8EA1CAE9\t0x6C88\n0x8EA1CAEA\t0x6C89\n0x8EA1CAEB\t0x6C85\n0x8EA1CAEC\t0x6C9B\n0x8EA1CAED\t0x6C6A\n0x8EA1CAEE\t0x6C7A\n0x8EA1CAEF\t0x6C90\n0x8EA1CAF0\t0x6C70\n0x8EA1CAF1\t0x6C8C\n0x8EA1CAF2\t0x6C68\n0x8EA1CAF3\t0x6C96\n0x8EA1CAF4\t0x6C92\n0x8EA1CAF5\t0x6C7D\n0x8EA1CAF6\t0x6C83\n0x8EA1CAF7\t0x6C72\n0x8EA1CAF8\t0x6C7E\n0x8EA1CAF9\t0x6C74\n0x8EA1CAFA\t0x6C86\n0x8EA1CAFB\t0x6C76\n0x8EA1CAFC\t0x6C8D\n0x8EA1CAFD\t0x6C94\n0x8EA1CAFE\t0x6C98\n0x8EA1CBA1\t0x6C82\n0x8EA1CBA2\t0x7076\n0x8EA1CBA3\t0x707C\n0x8EA1CBA4\t0x707D\n0x8EA1CBA5\t0x7078\n0x8EA1CBA6\t0x7262\n0x8EA1CBA7\t0x7261\n0x8EA1CBA8\t0x7260\n0x8EA1CBA9\t0x72C4\n0x8EA1CBAA\t0x72C2\n0x8EA1CBAB\t0x7396\n0x8EA1CBAC\t0x752C\n0x8EA1CBAD\t0x752B\n0x8EA1CBAE\t0x7537\n0x8EA1CBAF\t0x7538\n0x8EA1CBB0\t0x7682\n0x8EA1CBB1\t0x76EF\n0x8EA1CBB2\t0x77E3\n0x8EA1CBB3\t0x79C1\n0x8EA1CBB4\t0x79C0\n0x8EA1CBB5\t0x79BF\n0x8EA1CBB6\t0x7A76\n0x8EA1CBB7\t0x7CFB\n0x8EA1CBB8\t0x7F55\n0x8EA1CBB9\t0x8096\n0x8EA1CBBA\t0x8093\n0x8EA1CBBB\t0x809D\n0x8EA1CBBC\t0x8098\n0x8EA1CBBD\t0x809B\n0x8EA1CBBE\t0x809A\n0x8EA1CBBF\t0x80B2\n0x8EA1CBC0\t0x826F\n0x8EA1CBC1\t0x8292\n0x8EA1CBC2\t0x828B\n0x8EA1CBC3\t0x828D\n0x8EA1CBC4\t0x898B\n0x8EA1CBC5\t0x89D2\n0x8EA1CBC6\t0x8A00\n0x8EA1CBC7\t0x8C37\n0x8EA1CBC8\t0x8C46\n0x8EA1CBC9\t0x8C55\n0x8EA1CBCA\t0x8C9D\n0x8EA1CBCB\t0x8D64\n0x8EA1CBCC\t0x8D70\n0x8EA1CBCD\t0x8DB3\n0x8EA1CBCE\t0x8EAB\n0x8EA1CBCF\t0x8ECA\n0x8EA1CBD0\t0x8F9B\n0x8EA1CBD1\t0x8FB0\n0x8EA1CBD2\t0x8FC2\n0x8EA1CBD3\t0x8FC6\n0x8EA1CBD4\t0x8FC5\n0x8EA1CBD5\t0x8FC4\n0x8EA1CBD6\t0x5DE1\n0x8EA1CBD7\t0x9091\n0x8EA1CBD8\t0x90A2\n0x8EA1CBD9\t0x90AA\n0x8EA1CBDA\t0x90A6\n0x8EA1CBDB\t0x90A3\n0x8EA1CBDC\t0x9149\n0x8EA1CBDD\t0x91C6\n0x8EA1CBDE\t0x91CC\n0x8EA1CBDF\t0x9632\n0x8EA1CBE0\t0x962E\n0x8EA1CBE1\t0x9631\n0x8EA1CBE2\t0x962A\n0x8EA1CBE3\t0x962C\n0x8EA1CBE4\t0x4E26\n0x8EA1CBE5\t0x4E56\n0x8EA1CBE6\t0x4E73\n0x8EA1CBE7\t0x4E8B\n0x8EA1CBE8\t0x4E9B\n0x8EA1CBE9\t0x4E9E\n0x8EA1CBEA\t0x4EAB\n0x8EA1CBEB\t0x4EAC\n0x8EA1CBEC\t0x4F6F\n0x8EA1CBED\t0x4F9D\n0x8EA1CBEE\t0x4F8D\n0x8EA1CBEF\t0x4F73\n0x8EA1CBF0\t0x4F7F\n0x8EA1CBF1\t0x4F6C\n0x8EA1CBF2\t0x4F9B\n0x8EA1CBF3\t0x4F8B\n0x8EA1CBF4\t0x4F86\n0x8EA1CBF5\t0x4F83\n0x8EA1CBF6\t0x4F70\n0x8EA1CBF7\t0x4F75\n0x8EA1CBF8\t0x4F88\n0x8EA1CBF9\t0x4F69\n0x8EA1CBFA\t0x4F7B\n0x8EA1CBFB\t0x4F96\n0x8EA1CBFC\t0x4F7E\n0x8EA1CBFD\t0x4F8F\n0x8EA1CBFE\t0x4F91\n0x8EA1CCA1\t0x4F7A\n0x8EA1CCA2\t0x5154\n0x8EA1CCA3\t0x5152\n0x8EA1CCA4\t0x5155\n0x8EA1CCA5\t0x5169\n0x8EA1CCA6\t0x5177\n0x8EA1CCA7\t0x5176\n0x8EA1CCA8\t0x5178\n0x8EA1CCA9\t0x51BD\n0x8EA1CCAA\t0x51FD\n0x8EA1CCAB\t0x523B\n0x8EA1CCAC\t0x5238\n0x8EA1CCAD\t0x5237\n0x8EA1CCAE\t0x523A\n0x8EA1CCAF\t0x5230\n0x8EA1CCB0\t0x522E\n0x8EA1CCB1\t0x5236\n0x8EA1CCB2\t0x5241\n0x8EA1CCB3\t0x52BE\n0x8EA1CCB4\t0x52BB\n0x8EA1CCB5\t0x5352\n0x8EA1CCB6\t0x5354\n0x8EA1CCB7\t0x5353\n0x8EA1CCB8\t0x5351\n0x8EA1CCB9\t0x5366\n0x8EA1CCBA\t0x5377\n0x8EA1CCBB\t0x5378\n0x8EA1CCBC\t0x5379\n0x8EA1CCBD\t0x53D6\n0x8EA1CCBE\t0x53D4\n0x8EA1CCBF\t0x53D7\n0x8EA1CCC0\t0x5473\n0x8EA1CCC1\t0x5475\n0x8EA1CCC2\t0x5496\n0x8EA1CCC3\t0x5478\n0x8EA1CCC4\t0x5495\n0x8EA1CCC5\t0x5480\n0x8EA1CCC6\t0x547B\n0x8EA1CCC7\t0x5477\n0x8EA1CCC8\t0x5484\n0x8EA1CCC9\t0x5492\n0x8EA1CCCA\t0x5486\n0x8EA1CCCB\t0x547C\n0x8EA1CCCC\t0x5490\n0x8EA1CCCD\t0x5471\n0x8EA1CCCE\t0x5476\n0x8EA1CCCF\t0x548C\n0x8EA1CCD0\t0x549A\n0x8EA1CCD1\t0x5462\n0x8EA1CCD2\t0x5468\n0x8EA1CCD3\t0x548B\n0x8EA1CCD4\t0x547D\n0x8EA1CCD5\t0x548E\n0x8EA1CCD6\t0x56FA\n0x8EA1CCD7\t0x5783\n0x8EA1CCD8\t0x5777\n0x8EA1CCD9\t0x576A\n0x8EA1CCDA\t0x5769\n0x8EA1CCDB\t0x5761\n0x8EA1CCDC\t0x5766\n0x8EA1CCDD\t0x5764\n0x8EA1CCDE\t0x577C\n0x8EA1CCDF\t0x591C\n0x8EA1CCE0\t0x5949\n0x8EA1CCE1\t0x5947\n0x8EA1CCE2\t0x5948\n0x8EA1CCE3\t0x5944\n0x8EA1CCE4\t0x5954\n0x8EA1CCE5\t0x59BE\n0x8EA1CCE6\t0x59BB\n0x8EA1CCE7\t0x59D4\n0x8EA1CCE8\t0x59B9\n0x8EA1CCE9\t0x59AE\n0x8EA1CCEA\t0x59D1\n0x8EA1CCEB\t0x59C6\n0x8EA1CCEC\t0x59D0\n0x8EA1CCED\t0x59CD\n0x8EA1CCEE\t0x59CB\n0x8EA1CCEF\t0x59D3\n0x8EA1CCF0\t0x59CA\n0x8EA1CCF1\t0x59AF\n0x8EA1CCF2\t0x59B3\n0x8EA1CCF3\t0x59D2\n0x8EA1CCF4\t0x59C5\n0x8EA1CCF5\t0x5B5F\n0x8EA1CCF6\t0x5B64\n0x8EA1CCF7\t0x5B63\n0x8EA1CCF8\t0x5B97\n0x8EA1CCF9\t0x5B9A\n0x8EA1CCFA\t0x5B98\n0x8EA1CCFB\t0x5B9C\n0x8EA1CCFC\t0x5B99\n0x8EA1CCFD\t0x5B9B\n0x8EA1CCFE\t0x5C1A\n0x8EA1CDA1\t0x5C48\n0x8EA1CDA2\t0x5C45\n0x8EA1CDA3\t0x5C46\n0x8EA1CDA4\t0x5CB7\n0x8EA1CDA5\t0x5CA1\n0x8EA1CDA6\t0x5CB8\n0x8EA1CDA7\t0x5CA9\n0x8EA1CDA8\t0x5CAB\n0x8EA1CDA9\t0x5CB1\n0x8EA1CDAA\t0x5CB3\n0x8EA1CDAB\t0x5E18\n0x8EA1CDAC\t0x5E1A\n0x8EA1CDAD\t0x5E16\n0x8EA1CDAE\t0x5E15\n0x8EA1CDAF\t0x5E1B\n0x8EA1CDB0\t0x5E11\n0x8EA1CDB1\t0x5E78\n0x8EA1CDB2\t0x5E9A\n0x8EA1CDB3\t0x5E97\n0x8EA1CDB4\t0x5E9C\n0x8EA1CDB5\t0x5E95\n0x8EA1CDB6\t0x5E96\n0x8EA1CDB7\t0x5EF6\n0x8EA1CDB8\t0x5F26\n0x8EA1CDB9\t0x5F27\n0x8EA1CDBA\t0x5F29\n0x8EA1CDBB\t0x5F80\n0x8EA1CDBC\t0x5F81\n0x8EA1CDBD\t0x5F7F\n0x8EA1CDBE\t0x5F7C\n0x8EA1CDBF\t0x5FDD\n0x8EA1CDC0\t0x5FE0\n0x8EA1CDC1\t0x5FFD\n0x8EA1CDC2\t0x5FF5\n0x8EA1CDC3\t0x5FFF\n0x8EA1CDC4\t0x600F\n0x8EA1CDC5\t0x6014\n0x8EA1CDC6\t0x602F\n0x8EA1CDC7\t0x6035\n0x8EA1CDC8\t0x6016\n0x8EA1CDC9\t0x602A\n0x8EA1CDCA\t0x6015\n0x8EA1CDCB\t0x6021\n0x8EA1CDCC\t0x6027\n0x8EA1CDCD\t0x6029\n0x8EA1CDCE\t0x602B\n0x8EA1CDCF\t0x601B\n0x8EA1CDD0\t0x6216\n0x8EA1CDD1\t0x6215\n0x8EA1CDD2\t0x623F\n0x8EA1CDD3\t0x623E\n0x8EA1CDD4\t0x6240\n0x8EA1CDD5\t0x627F\n0x8EA1CDD6\t0x62C9\n0x8EA1CDD7\t0x62CC\n0x8EA1CDD8\t0x62C4\n0x8EA1CDD9\t0x62BF\n0x8EA1CDDA\t0x62C2\n0x8EA1CDDB\t0x62B9\n0x8EA1CDDC\t0x62D2\n0x8EA1CDDD\t0x62DB\n0x8EA1CDDE\t0x62AB\n0x8EA1CDDF\t0x62D3\n0x8EA1CDE0\t0x62D4\n0x8EA1CDE1\t0x62CB\n0x8EA1CDE2\t0x62C8\n0x8EA1CDE3\t0x62A8\n0x8EA1CDE4\t0x62BD\n0x8EA1CDE5\t0x62BC\n0x8EA1CDE6\t0x62D0\n0x8EA1CDE7\t0x62D9\n0x8EA1CDE8\t0x62C7\n0x8EA1CDE9\t0x62CD\n0x8EA1CDEA\t0x62B5\n0x8EA1CDEB\t0x62DA\n0x8EA1CDEC\t0x62B1\n0x8EA1CDED\t0x62D8\n0x8EA1CDEE\t0x62D6\n0x8EA1CDEF\t0x62D7\n0x8EA1CDF0\t0x62C6\n0x8EA1CDF1\t0x62AC\n0x8EA1CDF2\t0x62CE\n0x8EA1CDF3\t0x653E\n0x8EA1CDF4\t0x65A7\n0x8EA1CDF5\t0x65BC\n0x8EA1CDF6\t0x65FA\n0x8EA1CDF7\t0x6614\n0x8EA1CDF8\t0x6613\n0x8EA1CDF9\t0x660C\n0x8EA1CDFA\t0x6606\n0x8EA1CDFB\t0x6602\n0x8EA1CDFC\t0x660E\n0x8EA1CDFD\t0x6600\n0x8EA1CDFE\t0x660F\n0x8EA1CEA1\t0x6615\n0x8EA1CEA2\t0x660A\n0x8EA1CEA3\t0x6607\n0x8EA1CEA4\t0x670D\n0x8EA1CEA5\t0x670B\n0x8EA1CEA6\t0x676D\n0x8EA1CEA7\t0x678B\n0x8EA1CEA8\t0x6795\n0x8EA1CEA9\t0x6771\n0x8EA1CEAA\t0x679C\n0x8EA1CEAB\t0x6773\n0x8EA1CEAC\t0x6777\n0x8EA1CEAD\t0x6787\n0x8EA1CEAE\t0x679D\n0x8EA1CEAF\t0x6797\n0x8EA1CEB0\t0x676F\n0x8EA1CEB1\t0x6770\n0x8EA1CEB2\t0x677F\n0x8EA1CEB3\t0x6789\n0x8EA1CEB4\t0x677E\n0x8EA1CEB5\t0x6790\n0x8EA1CEB6\t0x6775\n0x8EA1CEB7\t0x679A\n0x8EA1CEB8\t0x6793\n0x8EA1CEB9\t0x677C\n0x8EA1CEBA\t0x676A\n0x8EA1CEBB\t0x6772\n0x8EA1CEBC\t0x6B23\n0x8EA1CEBD\t0x6B66\n0x8EA1CEBE\t0x6B67\n0x8EA1CEBF\t0x6B7F\n0x8EA1CEC0\t0x6C13\n0x8EA1CEC1\t0x6C1B\n0x8EA1CEC2\t0x6CE3\n0x8EA1CEC3\t0x6CE8\n0x8EA1CEC4\t0x6CF3\n0x8EA1CEC5\t0x6CB1\n0x8EA1CEC6\t0x6CCC\n0x8EA1CEC7\t0x6CE5\n0x8EA1CEC8\t0x6CB3\n0x8EA1CEC9\t0x6CBD\n0x8EA1CECA\t0x6CBE\n0x8EA1CECB\t0x6CBC\n0x8EA1CECC\t0x6CE2\n0x8EA1CECD\t0x6CAB\n0x8EA1CECE\t0x6CD5\n0x8EA1CECF\t0x6CD3\n0x8EA1CED0\t0x6CB8\n0x8EA1CED1\t0x6CC4\n0x8EA1CED2\t0x6CB9\n0x8EA1CED3\t0x6CC1\n0x8EA1CED4\t0x6CAE\n0x8EA1CED5\t0x6CD7\n0x8EA1CED6\t0x6CC5\n0x8EA1CED7\t0x6CF1\n0x8EA1CED8\t0x6CBF\n0x8EA1CED9\t0x6CBB\n0x8EA1CEDA\t0x6CE1\n0x8EA1CEDB\t0x6CDB\n0x8EA1CEDC\t0x6CCA\n0x8EA1CEDD\t0x6CAC\n0x8EA1CEDE\t0x6CEF\n0x8EA1CEDF\t0x6CDC\n0x8EA1CEE0\t0x6CD6\n0x8EA1CEE1\t0x6CE0\n0x8EA1CEE2\t0x7095\n0x8EA1CEE3\t0x708E\n0x8EA1CEE4\t0x7092\n0x8EA1CEE5\t0x708A\n0x8EA1CEE6\t0x7099\n0x8EA1CEE7\t0x722C\n0x8EA1CEE8\t0x722D\n0x8EA1CEE9\t0x7238\n0x8EA1CEEA\t0x7248\n0x8EA1CEEB\t0x7267\n0x8EA1CEEC\t0x7269\n0x8EA1CEED\t0x72C0\n0x8EA1CEEE\t0x72CE\n0x8EA1CEEF\t0x72D9\n0x8EA1CEF0\t0x72D7\n0x8EA1CEF1\t0x72D0\n0x8EA1CEF2\t0x73A9\n0x8EA1CEF3\t0x73A8\n0x8EA1CEF4\t0x739F\n0x8EA1CEF5\t0x73AB\n0x8EA1CEF6\t0x73A5\n0x8EA1CEF7\t0x753D\n0x8EA1CEF8\t0x759D\n0x8EA1CEF9\t0x7599\n0x8EA1CEFA\t0x759A\n0x8EA1CEFB\t0x7684\n0x8EA1CEFC\t0x76C2\n0x8EA1CEFD\t0x76F2\n0x8EA1CEFE\t0x76F4\n0x8EA1CFA1\t0x77E5\n0x8EA1CFA2\t0x77FD\n0x8EA1CFA3\t0x793E\n0x8EA1CFA4\t0x7940\n0x8EA1CFA5\t0x7941\n0x8EA1CFA6\t0x79C9\n0x8EA1CFA7\t0x79C8\n0x8EA1CFA8\t0x7A7A\n0x8EA1CFA9\t0x7A79\n0x8EA1CFAA\t0x7AFA\n0x8EA1CFAB\t0x7CFE\n0x8EA1CFAC\t0x7F54\n0x8EA1CFAD\t0x7F8C\n0x8EA1CFAE\t0x7F8B\n0x8EA1CFAF\t0x8005\n0x8EA1CFB0\t0x80BA\n0x8EA1CFB1\t0x80A5\n0x8EA1CFB2\t0x80A2\n0x8EA1CFB3\t0x80B1\n0x8EA1CFB4\t0x80A1\n0x8EA1CFB5\t0x80AB\n0x8EA1CFB6\t0x80A9\n0x8EA1CFB7\t0x80B4\n0x8EA1CFB8\t0x80AA\n0x8EA1CFB9\t0x80AF\n0x8EA1CFBA\t0x81E5\n0x8EA1CFBB\t0x81FE\n0x8EA1CFBC\t0x820D\n0x8EA1CFBD\t0x82B3\n0x8EA1CFBE\t0x829D\n0x8EA1CFBF\t0x8299\n0x8EA1CFC0\t0x82AD\n0x8EA1CFC1\t0x82BD\n0x8EA1CFC2\t0x829F\n0x8EA1CFC3\t0x82B9\n0x8EA1CFC4\t0x82B1\n0x8EA1CFC5\t0x82AC\n0x8EA1CFC6\t0x82A5\n0x8EA1CFC7\t0x82AF\n0x8EA1CFC8\t0x82B8\n0x8EA1CFC9\t0x82A3\n0x8EA1CFCA\t0x82B0\n0x8EA1CFCB\t0x82BE\n0x8EA1CFCC\t0x82B7\n0x8EA1CFCD\t0x864E\n0x8EA1CFCE\t0x8671\n0x8EA1CFCF\t0x521D\n0x8EA1CFD0\t0x8868\n0x8EA1CFD1\t0x8ECB\n0x8EA1CFD2\t0x8FCE\n0x8EA1CFD3\t0x8FD4\n0x8EA1CFD4\t0x8FD1\n0x8EA1CFD5\t0x90B5\n0x8EA1CFD6\t0x90B8\n0x8EA1CFD7\t0x90B1\n0x8EA1CFD8\t0x90B6\n0x8EA1CFD9\t0x91C7\n0x8EA1CFDA\t0x91D1\n0x8EA1CFDB\t0x9577\n0x8EA1CFDC\t0x9580\n0x8EA1CFDD\t0x961C\n0x8EA1CFDE\t0x9640\n0x8EA1CFDF\t0x963F\n0x8EA1CFE0\t0x963B\n0x8EA1CFE1\t0x9644\n0x8EA1CFE2\t0x9642\n0x8EA1CFE3\t0x96B9\n0x8EA1CFE4\t0x96E8\n0x8EA1CFE5\t0x9752\n0x8EA1CFE6\t0x975E\n0x8EA1CFE7\t0x4E9F\n0x8EA1CFE8\t0x4EAD\n0x8EA1CFE9\t0x4EAE\n0x8EA1CFEA\t0x4FE1\n0x8EA1CFEB\t0x4FB5\n0x8EA1CFEC\t0x4FAF\n0x8EA1CFED\t0x4FBF\n0x8EA1CFEE\t0x4FE0\n0x8EA1CFEF\t0x4FD1\n0x8EA1CFF0\t0x4FCF\n0x8EA1CFF1\t0x4FDD\n0x8EA1CFF2\t0x4FC3\n0x8EA1CFF3\t0x4FB6\n0x8EA1CFF4\t0x4FD8\n0x8EA1CFF5\t0x4FDF\n0x8EA1CFF6\t0x4FCA\n0x8EA1CFF7\t0x4FD7\n0x8EA1CFF8\t0x4FAE\n0x8EA1CFF9\t0x4FD0\n0x8EA1CFFA\t0x4FC4\n0x8EA1CFFB\t0x4FC2\n0x8EA1CFFC\t0x4FDA\n0x8EA1CFFD\t0x4FCE\n0x8EA1CFFE\t0x4FDE\n0x8EA1D0A1\t0x4FB7\n0x8EA1D0A2\t0x5157\n0x8EA1D0A3\t0x5192\n0x8EA1D0A4\t0x5191\n0x8EA1D0A5\t0x51A0\n0x8EA1D0A6\t0x524E\n0x8EA1D0A7\t0x5243\n0x8EA1D0A8\t0x524A\n0x8EA1D0A9\t0x524D\n0x8EA1D0AA\t0x524C\n0x8EA1D0AB\t0x524B\n0x8EA1D0AC\t0x5247\n0x8EA1D0AD\t0x52C7\n0x8EA1D0AE\t0x52C9\n0x8EA1D0AF\t0x52C3\n0x8EA1D0B0\t0x52C1\n0x8EA1D0B1\t0x530D\n0x8EA1D0B2\t0x5357\n0x8EA1D0B3\t0x537B\n0x8EA1D0B4\t0x539A\n0x8EA1D0B5\t0x53DB\n0x8EA1D0B6\t0x54AC\n0x8EA1D0B7\t0x54C0\n0x8EA1D0B8\t0x54A8\n0x8EA1D0B9\t0x54CE\n0x8EA1D0BA\t0x54C9\n0x8EA1D0BB\t0x54B8\n0x8EA1D0BC\t0x54A6\n0x8EA1D0BD\t0x54B3\n0x8EA1D0BE\t0x54C7\n0x8EA1D0BF\t0x54C2\n0x8EA1D0C0\t0x54BD\n0x8EA1D0C1\t0x54AA\n0x8EA1D0C2\t0x54C1\n0x8EA1D0C3\t0x54C4\n0x8EA1D0C4\t0x54C8\n0x8EA1D0C5\t0x54AF\n0x8EA1D0C6\t0x54AB\n0x8EA1D0C7\t0x54B1\n0x8EA1D0C8\t0x54BB\n0x8EA1D0C9\t0x54A9\n0x8EA1D0CA\t0x54A7\n0x8EA1D0CB\t0x54BF\n0x8EA1D0CC\t0x56FF\n0x8EA1D0CD\t0x5782\n0x8EA1D0CE\t0x578B\n0x8EA1D0CF\t0x57A0\n0x8EA1D0D0\t0x57A3\n0x8EA1D0D1\t0x57A2\n0x8EA1D0D2\t0x57CE\n0x8EA1D0D3\t0x57AE\n0x8EA1D0D4\t0x5793\n0x8EA1D0D5\t0x5955\n0x8EA1D0D6\t0x5951\n0x8EA1D0D7\t0x594F\n0x8EA1D0D8\t0x594E\n0x8EA1D0D9\t0x5950\n0x8EA1D0DA\t0x59DC\n0x8EA1D0DB\t0x59D8\n0x8EA1D0DC\t0x59FF\n0x8EA1D0DD\t0x59E3\n0x8EA1D0DE\t0x59E8\n0x8EA1D0DF\t0x5A03\n0x8EA1D0E0\t0x59E5\n0x8EA1D0E1\t0x59EA\n0x8EA1D0E2\t0x59DA\n0x8EA1D0E3\t0x59E6\n0x8EA1D0E4\t0x5A01\n0x8EA1D0E5\t0x59FB\n0x8EA1D0E6\t0x5B69\n0x8EA1D0E7\t0x5BA3\n0x8EA1D0E8\t0x5BA6\n0x8EA1D0E9\t0x5BA4\n0x8EA1D0EA\t0x5BA2\n0x8EA1D0EB\t0x5BA5\n0x8EA1D0EC\t0x5C01\n0x8EA1D0ED\t0x5C4E\n0x8EA1D0EE\t0x5C4F\n0x8EA1D0EF\t0x5C4D\n0x8EA1D0F0\t0x5C4B\n0x8EA1D0F1\t0x5CD9\n0x8EA1D0F2\t0x5CD2\n0x8EA1D0F3\t0x5DF7\n0x8EA1D0F4\t0x5E1D\n0x8EA1D0F5\t0x5E25\n0x8EA1D0F6\t0x5E1F\n0x8EA1D0F7\t0x5E7D\n0x8EA1D0F8\t0x5EA0\n0x8EA1D0F9\t0x5EA6\n0x8EA1D0FA\t0x5EFA\n0x8EA1D0FB\t0x5F08\n0x8EA1D0FC\t0x5F2D\n0x8EA1D0FD\t0x5F65\n0x8EA1D0FE\t0x5F88\n0x8EA1D1A1\t0x5F85\n0x8EA1D1A2\t0x5F8A\n0x8EA1D1A3\t0x5F8B\n0x8EA1D1A4\t0x5F87\n0x8EA1D1A5\t0x5F8C\n0x8EA1D1A6\t0x5F89\n0x8EA1D1A7\t0x6012\n0x8EA1D1A8\t0x601D\n0x8EA1D1A9\t0x6020\n0x8EA1D1AA\t0x6025\n0x8EA1D1AB\t0x600E\n0x8EA1D1AC\t0x6028\n0x8EA1D1AD\t0x604D\n0x8EA1D1AE\t0x6070\n0x8EA1D1AF\t0x6068\n0x8EA1D1B0\t0x6062\n0x8EA1D1B1\t0x6046\n0x8EA1D1B2\t0x6043\n0x8EA1D1B3\t0x606C\n0x8EA1D1B4\t0x606B\n0x8EA1D1B5\t0x606A\n0x8EA1D1B6\t0x6064\n0x8EA1D1B7\t0x6241\n0x8EA1D1B8\t0x62DC\n0x8EA1D1B9\t0x6316\n0x8EA1D1BA\t0x6309\n0x8EA1D1BB\t0x62FC\n0x8EA1D1BC\t0x62ED\n0x8EA1D1BD\t0x6301\n0x8EA1D1BE\t0x62EE\n0x8EA1D1BF\t0x62FD\n0x8EA1D1C0\t0x6307\n0x8EA1D1C1\t0x62F1\n0x8EA1D1C2\t0x62F7\n0x8EA1D1C3\t0x62EF\n0x8EA1D1C4\t0x62EC\n0x8EA1D1C5\t0x62FE\n0x8EA1D1C6\t0x62F4\n0x8EA1D1C7\t0x6311\n0x8EA1D1C8\t0x6302\n0x8EA1D1C9\t0x653F\n0x8EA1D1CA\t0x6545\n0x8EA1D1CB\t0x65AB\n0x8EA1D1CC\t0x65BD\n0x8EA1D1CD\t0x65E2\n0x8EA1D1CE\t0x6625\n0x8EA1D1CF\t0x662D\n0x8EA1D1D0\t0x6620\n0x8EA1D1D1\t0x6627\n0x8EA1D1D2\t0x662F\n0x8EA1D1D3\t0x661F\n0x8EA1D1D4\t0x6628\n0x8EA1D1D5\t0x6631\n0x8EA1D1D6\t0x6624\n0x8EA1D1D7\t0x66F7\n0x8EA1D1D8\t0x67FF\n0x8EA1D1D9\t0x67D3\n0x8EA1D1DA\t0x67F1\n0x8EA1D1DB\t0x67D4\n0x8EA1D1DC\t0x67D0\n0x8EA1D1DD\t0x67EC\n0x8EA1D1DE\t0x67B6\n0x8EA1D1DF\t0x67AF\n0x8EA1D1E0\t0x67F5\n0x8EA1D1E1\t0x67E9\n0x8EA1D1E2\t0x67EF\n0x8EA1D1E3\t0x67C4\n0x8EA1D1E4\t0x67D1\n0x8EA1D1E5\t0x67B4\n0x8EA1D1E6\t0x67DA\n0x8EA1D1E7\t0x67E5\n0x8EA1D1E8\t0x67B8\n0x8EA1D1E9\t0x67CF\n0x8EA1D1EA\t0x67DE\n0x8EA1D1EB\t0x67F3\n0x8EA1D1EC\t0x67B0\n0x8EA1D1ED\t0x67D9\n0x8EA1D1EE\t0x67E2\n0x8EA1D1EF\t0x67DD\n0x8EA1D1F0\t0x67D2\n0x8EA1D1F1\t0x6B6A\n0x8EA1D1F2\t0x6B83\n0x8EA1D1F3\t0x6B86\n0x8EA1D1F4\t0x6BB5\n0x8EA1D1F5\t0x6BD2\n0x8EA1D1F6\t0x6BD7\n0x8EA1D1F7\t0x6C1F\n0x8EA1D1F8\t0x6CC9\n0x8EA1D1F9\t0x6D0B\n0x8EA1D1FA\t0x6D32\n0x8EA1D1FB\t0x6D2A\n0x8EA1D1FC\t0x6D41\n0x8EA1D1FD\t0x6D25\n0x8EA1D1FE\t0x6D0C\n0x8EA1D2A1\t0x6D31\n0x8EA1D2A2\t0x6D1E\n0x8EA1D2A3\t0x6D17\n0x8EA1D2A4\t0x6D3B\n0x8EA1D2A5\t0x6D3D\n0x8EA1D2A6\t0x6D3E\n0x8EA1D2A7\t0x6D36\n0x8EA1D2A8\t0x6D1B\n0x8EA1D2A9\t0x6CF5\n0x8EA1D2AA\t0x6D39\n0x8EA1D2AB\t0x6D27\n0x8EA1D2AC\t0x6D38\n0x8EA1D2AD\t0x6D29\n0x8EA1D2AE\t0x6D2E\n0x8EA1D2AF\t0x6D35\n0x8EA1D2B0\t0x6D0E\n0x8EA1D2B1\t0x6D2B\n0x8EA1D2B2\t0x70AB\n0x8EA1D2B3\t0x70BA\n0x8EA1D2B4\t0x70B3\n0x8EA1D2B5\t0x70AC\n0x8EA1D2B6\t0x70AF\n0x8EA1D2B7\t0x70AD\n0x8EA1D2B8\t0x70B8\n0x8EA1D2B9\t0x70AE\n0x8EA1D2BA\t0x70A4\n0x8EA1D2BB\t0x7230\n0x8EA1D2BC\t0x7272\n0x8EA1D2BD\t0x726F\n0x8EA1D2BE\t0x7274\n0x8EA1D2BF\t0x72E9\n0x8EA1D2C0\t0x72E0\n0x8EA1D2C1\t0x72E1\n0x8EA1D2C2\t0x73B7\n0x8EA1D2C3\t0x73CA\n0x8EA1D2C4\t0x73BB\n0x8EA1D2C5\t0x73B2\n0x8EA1D2C6\t0x73CD\n0x8EA1D2C7\t0x73C0\n0x8EA1D2C8\t0x73B3\n0x8EA1D2C9\t0x751A\n0x8EA1D2CA\t0x752D\n0x8EA1D2CB\t0x754F\n0x8EA1D2CC\t0x754C\n0x8EA1D2CD\t0x754E\n0x8EA1D2CE\t0x754B\n0x8EA1D2CF\t0x75AB\n0x8EA1D2D0\t0x75A4\n0x8EA1D2D1\t0x75A5\n0x8EA1D2D2\t0x75A2\n0x8EA1D2D3\t0x75A3\n0x8EA1D2D4\t0x7678\n0x8EA1D2D5\t0x7686\n0x8EA1D2D6\t0x7687\n0x8EA1D2D7\t0x7688\n0x8EA1D2D8\t0x76C8\n0x8EA1D2D9\t0x76C6\n0x8EA1D2DA\t0x76C3\n0x8EA1D2DB\t0x76C5\n0x8EA1D2DC\t0x7701\n0x8EA1D2DD\t0x76F9\n0x8EA1D2DE\t0x76F8\n0x8EA1D2DF\t0x7709\n0x8EA1D2E0\t0x770B\n0x8EA1D2E1\t0x76FE\n0x8EA1D2E2\t0x76FC\n0x8EA1D2E3\t0x7707\n0x8EA1D2E4\t0x77DC\n0x8EA1D2E5\t0x7802\n0x8EA1D2E6\t0x7814\n0x8EA1D2E7\t0x780C\n0x8EA1D2E8\t0x780D\n0x8EA1D2E9\t0x7946\n0x8EA1D2EA\t0x7949\n0x8EA1D2EB\t0x7948\n0x8EA1D2EC\t0x7947\n0x8EA1D2ED\t0x79B9\n0x8EA1D2EE\t0x79BA\n0x8EA1D2EF\t0x79D1\n0x8EA1D2F0\t0x79D2\n0x8EA1D2F1\t0x79CB\n0x8EA1D2F2\t0x7A7F\n0x8EA1D2F3\t0x7A81\n0x8EA1D2F4\t0x7AFF\n0x8EA1D2F5\t0x7AFD\n0x8EA1D2F6\t0x7C7D\n0x8EA1D2F7\t0x7D02\n0x8EA1D2F8\t0x7D05\n0x8EA1D2F9\t0x7D00\n0x8EA1D2FA\t0x7D09\n0x8EA1D2FB\t0x7D07\n0x8EA1D2FC\t0x7D04\n0x8EA1D2FD\t0x7D06\n0x8EA1D2FE\t0x7F38\n0x8EA1D3A1\t0x7F8E\n0x8EA1D3A2\t0x7FBF\n0x8EA1D3A3\t0x8010\n0x8EA1D3A4\t0x800D\n0x8EA1D3A5\t0x8011\n0x8EA1D3A6\t0x8036\n0x8EA1D3A7\t0x80D6\n0x8EA1D3A8\t0x80E5\n0x8EA1D3A9\t0x80DA\n0x8EA1D3AA\t0x80C3\n0x8EA1D3AB\t0x80C4\n0x8EA1D3AC\t0x80CC\n0x8EA1D3AD\t0x80E1\n0x8EA1D3AE\t0x80DB\n0x8EA1D3AF\t0x80CE\n0x8EA1D3B0\t0x80DE\n0x8EA1D3B1\t0x80E4\n0x8EA1D3B2\t0x80DD\n0x8EA1D3B3\t0x81F4\n0x8EA1D3B4\t0x8222\n0x8EA1D3B5\t0x82E7\n0x8EA1D3B6\t0x8303\n0x8EA1D3B7\t0x8305\n0x8EA1D3B8\t0x82E3\n0x8EA1D3B9\t0x82DB\n0x8EA1D3BA\t0x82E6\n0x8EA1D3BB\t0x8304\n0x8EA1D3BC\t0x82E5\n0x8EA1D3BD\t0x8302\n0x8EA1D3BE\t0x8309\n0x8EA1D3BF\t0x82D2\n0x8EA1D3C0\t0x82D7\n0x8EA1D3C1\t0x82F1\n0x8EA1D3C2\t0x8301\n0x8EA1D3C3\t0x82DC\n0x8EA1D3C4\t0x82D4\n0x8EA1D3C5\t0x82D1\n0x8EA1D3C6\t0x82DE\n0x8EA1D3C7\t0x82D3\n0x8EA1D3C8\t0x82DF\n0x8EA1D3C9\t0x82EF\n0x8EA1D3CA\t0x8306\n0x8EA1D3CB\t0x8650\n0x8EA1D3CC\t0x8679\n0x8EA1D3CD\t0x867B\n0x8EA1D3CE\t0x867A\n0x8EA1D3CF\t0x884D\n0x8EA1D3D0\t0x886B\n0x8EA1D3D1\t0x8981\n0x8EA1D3D2\t0x89D4\n0x8EA1D3D3\t0x8A08\n0x8EA1D3D4\t0x8A02\n0x8EA1D3D5\t0x8A03\n0x8EA1D3D6\t0x8C9E\n0x8EA1D3D7\t0x8CA0\n0x8EA1D3D8\t0x8D74\n0x8EA1D3D9\t0x8D73\n0x8EA1D3DA\t0x8DB4\n0x8EA1D3DB\t0x8ECD\n0x8EA1D3DC\t0x8ECC\n0x8EA1D3DD\t0x8FF0\n0x8EA1D3DE\t0x8FE6\n0x8EA1D3DF\t0x8FE2\n0x8EA1D3E0\t0x8FEA\n0x8EA1D3E1\t0x8FE5\n0x8EA1D3E2\t0x8FED\n0x8EA1D3E3\t0x8FEB\n0x8EA1D3E4\t0x8FE4\n0x8EA1D3E5\t0x8FE8\n0x8EA1D3E6\t0x90CA\n0x8EA1D3E7\t0x90CE\n0x8EA1D3E8\t0x90C1\n0x8EA1D3E9\t0x90C3\n0x8EA1D3EA\t0x914B\n0x8EA1D3EB\t0x914A\n0x8EA1D3EC\t0x91CD\n0x8EA1D3ED\t0x9582\n0x8EA1D3EE\t0x9650\n0x8EA1D3EF\t0x964B\n0x8EA1D3F0\t0x964C\n0x8EA1D3F1\t0x964D\n0x8EA1D3F2\t0x9762\n0x8EA1D3F3\t0x9769\n0x8EA1D3F4\t0x97CB\n0x8EA1D3F5\t0x97ED\n0x8EA1D3F6\t0x97F3\n0x8EA1D3F7\t0x9801\n0x8EA1D3F8\t0x98A8\n0x8EA1D3F9\t0x98DB\n0x8EA1D3FA\t0x98DF\n0x8EA1D3FB\t0x9996\n0x8EA1D3FC\t0x9999\n0x8EA1D3FD\t0x4E58\n0x8EA1D3FE\t0x4EB3\n0x8EA1D4A1\t0x500C\n0x8EA1D4A2\t0x500D\n0x8EA1D4A3\t0x5023\n0x8EA1D4A4\t0x4FEF\n0x8EA1D4A5\t0x5026\n0x8EA1D4A6\t0x5025\n0x8EA1D4A7\t0x4FF8\n0x8EA1D4A8\t0x5029\n0x8EA1D4A9\t0x5016\n0x8EA1D4AA\t0x5006\n0x8EA1D4AB\t0x503C\n0x8EA1D4AC\t0x501F\n0x8EA1D4AD\t0x501A\n0x8EA1D4AE\t0x5012\n0x8EA1D4AF\t0x5011\n0x8EA1D4B0\t0x4FFA\n0x8EA1D4B1\t0x5000\n0x8EA1D4B2\t0x5014\n0x8EA1D4B3\t0x5028\n0x8EA1D4B4\t0x4FF1\n0x8EA1D4B5\t0x5021\n0x8EA1D4B6\t0x500B\n0x8EA1D4B7\t0x5019\n0x8EA1D4B8\t0x5018\n0x8EA1D4B9\t0x4FF3\n0x8EA1D4BA\t0x4FEE\n0x8EA1D4BB\t0x502D\n0x8EA1D4BC\t0x502A\n0x8EA1D4BD\t0x4FFE\n0x8EA1D4BE\t0x502B\n0x8EA1D4BF\t0x5009\n0x8EA1D4C0\t0x517C\n0x8EA1D4C1\t0x51A4\n0x8EA1D4C2\t0x51A5\n0x8EA1D4C3\t0x51A2\n0x8EA1D4C4\t0x51CD\n0x8EA1D4C5\t0x51CC\n0x8EA1D4C6\t0x51C6\n0x8EA1D4C7\t0x51CB\n0x8EA1D4C8\t0x5256\n0x8EA1D4C9\t0x525C\n0x8EA1D4CA\t0x5254\n0x8EA1D4CB\t0x525B\n0x8EA1D4CC\t0x525D\n0x8EA1D4CD\t0x532A\n0x8EA1D4CE\t0x537F\n0x8EA1D4CF\t0x539F\n0x8EA1D4D0\t0x539D\n0x8EA1D4D1\t0x53DF\n0x8EA1D4D2\t0x54E8\n0x8EA1D4D3\t0x5510\n0x8EA1D4D4\t0x5501\n0x8EA1D4D5\t0x5537\n0x8EA1D4D6\t0x54FC\n0x8EA1D4D7\t0x54E5\n0x8EA1D4D8\t0x54F2\n0x8EA1D4D9\t0x5506\n0x8EA1D4DA\t0x54FA\n0x8EA1D4DB\t0x5514\n0x8EA1D4DC\t0x54E9\n0x8EA1D4DD\t0x54ED\n0x8EA1D4DE\t0x54E1\n0x8EA1D4DF\t0x5509\n0x8EA1D4E0\t0x54EE\n0x8EA1D4E1\t0x54EA\n0x8EA1D4E2\t0x54E6\n0x8EA1D4E3\t0x5527\n0x8EA1D4E4\t0x5507\n0x8EA1D4E5\t0x54FD\n0x8EA1D4E6\t0x550F\n0x8EA1D4E7\t0x5703\n0x8EA1D4E8\t0x5704\n0x8EA1D4E9\t0x57C2\n0x8EA1D4EA\t0x57D4\n0x8EA1D4EB\t0x57CB\n0x8EA1D4EC\t0x57C3\n0x8EA1D4ED\t0x5809\n0x8EA1D4EE\t0x590F\n0x8EA1D4EF\t0x5957\n0x8EA1D4F0\t0x5958\n0x8EA1D4F1\t0x595A\n0x8EA1D4F2\t0x5A11\n0x8EA1D4F3\t0x5A18\n0x8EA1D4F4\t0x5A1C\n0x8EA1D4F5\t0x5A1F\n0x8EA1D4F6\t0x5A1B\n0x8EA1D4F7\t0x5A13\n0x8EA1D4F8\t0x59EC\n0x8EA1D4F9\t0x5A20\n0x8EA1D4FA\t0x5A23\n0x8EA1D4FB\t0x5A29\n0x8EA1D4FC\t0x5A25\n0x8EA1D4FD\t0x5A0C\n0x8EA1D4FE\t0x5A09\n0x8EA1D5A1\t0x5B6B\n0x8EA1D5A2\t0x5C58\n0x8EA1D5A3\t0x5BB0\n0x8EA1D5A4\t0x5BB3\n0x8EA1D5A5\t0x5BB6\n0x8EA1D5A6\t0x5BB4\n0x8EA1D5A7\t0x5BAE\n0x8EA1D5A8\t0x5BB5\n0x8EA1D5A9\t0x5BB9\n0x8EA1D5AA\t0x5BB8\n0x8EA1D5AB\t0x5C04\n0x8EA1D5AC\t0x5C51\n0x8EA1D5AD\t0x5C55\n0x8EA1D5AE\t0x5C50\n0x8EA1D5AF\t0x5CED\n0x8EA1D5B0\t0x5CFD\n0x8EA1D5B1\t0x5CFB\n0x8EA1D5B2\t0x5CEA\n0x8EA1D5B3\t0x5CE8\n0x8EA1D5B4\t0x5CF0\n0x8EA1D5B5\t0x5CF6\n0x8EA1D5B6\t0x5D01\n0x8EA1D5B7\t0x5CF4\n0x8EA1D5B8\t0x5DEE\n0x8EA1D5B9\t0x5E2D\n0x8EA1D5BA\t0x5E2B\n0x8EA1D5BB\t0x5EAB\n0x8EA1D5BC\t0x5EAD\n0x8EA1D5BD\t0x5EA7\n0x8EA1D5BE\t0x5F31\n0x8EA1D5BF\t0x5F92\n0x8EA1D5C0\t0x5F91\n0x8EA1D5C1\t0x5F90\n0x8EA1D5C2\t0x6059\n0x8EA1D5C3\t0x6063\n0x8EA1D5C4\t0x6065\n0x8EA1D5C5\t0x6050\n0x8EA1D5C6\t0x6055\n0x8EA1D5C7\t0x606D\n0x8EA1D5C8\t0x6069\n0x8EA1D5C9\t0x606F\n0x8EA1D5CA\t0x6084\n0x8EA1D5CB\t0x609F\n0x8EA1D5CC\t0x609A\n0x8EA1D5CD\t0x608D\n0x8EA1D5CE\t0x6094\n0x8EA1D5CF\t0x608C\n0x8EA1D5D0\t0x6085\n0x8EA1D5D1\t0x6096\n0x8EA1D5D2\t0x6247\n0x8EA1D5D3\t0x62F3\n0x8EA1D5D4\t0x6308\n0x8EA1D5D5\t0x62FF\n0x8EA1D5D6\t0x634E\n0x8EA1D5D7\t0x633E\n0x8EA1D5D8\t0x632F\n0x8EA1D5D9\t0x6355\n0x8EA1D5DA\t0x6342\n0x8EA1D5DB\t0x6346\n0x8EA1D5DC\t0x634F\n0x8EA1D5DD\t0x6349\n0x8EA1D5DE\t0x633A\n0x8EA1D5DF\t0x6350\n0x8EA1D5E0\t0x633D\n0x8EA1D5E1\t0x632A\n0x8EA1D5E2\t0x632B\n0x8EA1D5E3\t0x6328\n0x8EA1D5E4\t0x634D\n0x8EA1D5E5\t0x634C\n0x8EA1D5E6\t0x6548\n0x8EA1D5E7\t0x6549\n0x8EA1D5E8\t0x6599\n0x8EA1D5E9\t0x65C1\n0x8EA1D5EA\t0x65C5\n0x8EA1D5EB\t0x6642\n0x8EA1D5EC\t0x6649\n0x8EA1D5ED\t0x664F\n0x8EA1D5EE\t0x6643\n0x8EA1D5EF\t0x6652\n0x8EA1D5F0\t0x664C\n0x8EA1D5F1\t0x6645\n0x8EA1D5F2\t0x6641\n0x8EA1D5F3\t0x66F8\n0x8EA1D5F4\t0x6714\n0x8EA1D5F5\t0x6715\n0x8EA1D5F6\t0x6717\n0x8EA1D5F7\t0x6821\n0x8EA1D5F8\t0x6838\n0x8EA1D5F9\t0x6848\n0x8EA1D5FA\t0x6846\n0x8EA1D5FB\t0x6853\n0x8EA1D5FC\t0x6839\n0x8EA1D5FD\t0x6842\n0x8EA1D5FE\t0x6854\n0x8EA1D6A1\t0x6829\n0x8EA1D6A2\t0x68B3\n0x8EA1D6A3\t0x6817\n0x8EA1D6A4\t0x684C\n0x8EA1D6A5\t0x6851\n0x8EA1D6A6\t0x683D\n0x8EA1D6A7\t0x67F4\n0x8EA1D6A8\t0x6850\n0x8EA1D6A9\t0x6840\n0x8EA1D6AA\t0x683C\n0x8EA1D6AB\t0x6843\n0x8EA1D6AC\t0x682A\n0x8EA1D6AD\t0x6845\n0x8EA1D6AE\t0x6813\n0x8EA1D6AF\t0x6818\n0x8EA1D6B0\t0x6841\n0x8EA1D6B1\t0x6B8A\n0x8EA1D6B2\t0x6B89\n0x8EA1D6B3\t0x6BB7\n0x8EA1D6B4\t0x6C23\n0x8EA1D6B5\t0x6C27\n0x8EA1D6B6\t0x6C28\n0x8EA1D6B7\t0x6C26\n0x8EA1D6B8\t0x6C24\n0x8EA1D6B9\t0x6CF0\n0x8EA1D6BA\t0x6D6A\n0x8EA1D6BB\t0x6D95\n0x8EA1D6BC\t0x6D88\n0x8EA1D6BD\t0x6D87\n0x8EA1D6BE\t0x6D66\n0x8EA1D6BF\t0x6D78\n0x8EA1D6C0\t0x6D77\n0x8EA1D6C1\t0x6D59\n0x8EA1D6C2\t0x6D93\n0x8EA1D6C3\t0x6D6C\n0x8EA1D6C4\t0x6D89\n0x8EA1D6C5\t0x6D6E\n0x8EA1D6C6\t0x6D5A\n0x8EA1D6C7\t0x6D74\n0x8EA1D6C8\t0x6D69\n0x8EA1D6C9\t0x6D8C\n0x8EA1D6CA\t0x6D8A\n0x8EA1D6CB\t0x6D79\n0x8EA1D6CC\t0x6D85\n0x8EA1D6CD\t0x6D65\n0x8EA1D6CE\t0x6D94\n0x8EA1D6CF\t0x70CA\n0x8EA1D6D0\t0x70D8\n0x8EA1D6D1\t0x70E4\n0x8EA1D6D2\t0x70D9\n0x8EA1D6D3\t0x70C8\n0x8EA1D6D4\t0x70CF\n0x8EA1D6D5\t0x7239\n0x8EA1D6D6\t0x7279\n0x8EA1D6D7\t0x72FC\n0x8EA1D6D8\t0x72F9\n0x8EA1D6D9\t0x72FD\n0x8EA1D6DA\t0x72F8\n0x8EA1D6DB\t0x72F7\n0x8EA1D6DC\t0x7386\n0x8EA1D6DD\t0x73ED\n0x8EA1D6DE\t0x7409\n0x8EA1D6DF\t0x73EE\n0x8EA1D6E0\t0x73E0\n0x8EA1D6E1\t0x73EA\n0x8EA1D6E2\t0x73DE\n0x8EA1D6E3\t0x7554\n0x8EA1D6E4\t0x755D\n0x8EA1D6E5\t0x755C\n0x8EA1D6E6\t0x755A\n0x8EA1D6E7\t0x7559\n0x8EA1D6E8\t0x75BE\n0x8EA1D6E9\t0x75C5\n0x8EA1D6EA\t0x75C7\n0x8EA1D6EB\t0x75B2\n0x8EA1D6EC\t0x75B3\n0x8EA1D6ED\t0x75BD\n0x8EA1D6EE\t0x75BC\n0x8EA1D6EF\t0x75B9\n0x8EA1D6F0\t0x75C2\n0x8EA1D6F1\t0x75B8\n0x8EA1D6F2\t0x768B\n0x8EA1D6F3\t0x76B0\n0x8EA1D6F4\t0x76CA\n0x8EA1D6F5\t0x76CD\n0x8EA1D6F6\t0x76CE\n0x8EA1D6F7\t0x7729\n0x8EA1D6F8\t0x771F\n0x8EA1D6F9\t0x7720\n0x8EA1D6FA\t0x7728\n0x8EA1D6FB\t0x77E9\n0x8EA1D6FC\t0x7830\n0x8EA1D6FD\t0x7827\n0x8EA1D6FE\t0x7838\n0x8EA1D7A1\t0x781D\n0x8EA1D7A2\t0x7834\n0x8EA1D7A3\t0x7837\n0x8EA1D7A4\t0x7825\n0x8EA1D7A5\t0x782D\n0x8EA1D7A6\t0x7820\n0x8EA1D7A7\t0x781F\n0x8EA1D7A8\t0x7832\n0x8EA1D7A9\t0x7955\n0x8EA1D7AA\t0x7950\n0x8EA1D7AB\t0x7960\n0x8EA1D7AC\t0x795F\n0x8EA1D7AD\t0x7956\n0x8EA1D7AE\t0x795E\n0x8EA1D7AF\t0x795D\n0x8EA1D7B0\t0x7957\n0x8EA1D7B1\t0x795A\n0x8EA1D7B2\t0x79E4\n0x8EA1D7B3\t0x79E3\n0x8EA1D7B4\t0x79E7\n0x8EA1D7B5\t0x79DF\n0x8EA1D7B6\t0x79E6\n0x8EA1D7B7\t0x79E9\n0x8EA1D7B8\t0x79D8\n0x8EA1D7B9\t0x7A84\n0x8EA1D7BA\t0x7A88\n0x8EA1D7BB\t0x7AD9\n0x8EA1D7BC\t0x7B06\n0x8EA1D7BD\t0x7B11\n0x8EA1D7BE\t0x7C89\n0x8EA1D7BF\t0x7D21\n0x8EA1D7C0\t0x7D17\n0x8EA1D7C1\t0x7D0B\n0x8EA1D7C2\t0x7D0A\n0x8EA1D7C3\t0x7D20\n0x8EA1D7C4\t0x7D22\n0x8EA1D7C5\t0x7D14\n0x8EA1D7C6\t0x7D10\n0x8EA1D7C7\t0x7D15\n0x8EA1D7C8\t0x7D1A\n0x8EA1D7C9\t0x7D1C\n0x8EA1D7CA\t0x7D0D\n0x8EA1D7CB\t0x7D19\n0x8EA1D7CC\t0x7D1B\n0x8EA1D7CD\t0x7F3A\n0x8EA1D7CE\t0x7F5F\n0x8EA1D7CF\t0x7F94\n0x8EA1D7D0\t0x7FC5\n0x8EA1D7D1\t0x7FC1\n0x8EA1D7D2\t0x8006\n0x8EA1D7D3\t0x8004\n0x8EA1D7D4\t0x8018\n0x8EA1D7D5\t0x8015\n0x8EA1D7D6\t0x8019\n0x8EA1D7D7\t0x8017\n0x8EA1D7D8\t0x803D\n0x8EA1D7D9\t0x803F\n0x8EA1D7DA\t0x80F1\n0x8EA1D7DB\t0x8102\n0x8EA1D7DC\t0x80F0\n0x8EA1D7DD\t0x8105\n0x8EA1D7DE\t0x80ED\n0x8EA1D7DF\t0x80F4\n0x8EA1D7E0\t0x8106\n0x8EA1D7E1\t0x80F8\n0x8EA1D7E2\t0x80F3\n0x8EA1D7E3\t0x8108\n0x8EA1D7E4\t0x80FD\n0x8EA1D7E5\t0x810A\n0x8EA1D7E6\t0x80FC\n0x8EA1D7E7\t0x80EF\n0x8EA1D7E8\t0x81ED\n0x8EA1D7E9\t0x81EC\n0x8EA1D7EA\t0x8200\n0x8EA1D7EB\t0x8210\n0x8EA1D7EC\t0x822A\n0x8EA1D7ED\t0x822B\n0x8EA1D7EE\t0x8228\n0x8EA1D7EF\t0x822C\n0x8EA1D7F0\t0x82BB\n0x8EA1D7F1\t0x832B\n0x8EA1D7F2\t0x8352\n0x8EA1D7F3\t0x8354\n0x8EA1D7F4\t0x834A\n0x8EA1D7F5\t0x8338\n0x8EA1D7F6\t0x8350\n0x8EA1D7F7\t0x8349\n0x8EA1D7F8\t0x8335\n0x8EA1D7F9\t0x8334\n0x8EA1D7FA\t0x834F\n0x8EA1D7FB\t0x8332\n0x8EA1D7FC\t0x8339\n0x8EA1D7FD\t0x8336\n0x8EA1D7FE\t0x8317\n0x8EA1D8A1\t0x8340\n0x8EA1D8A2\t0x8331\n0x8EA1D8A3\t0x8328\n0x8EA1D8A4\t0x8343\n0x8EA1D8A5\t0x8654\n0x8EA1D8A6\t0x868A\n0x8EA1D8A7\t0x86AA\n0x8EA1D8A8\t0x8693\n0x8EA1D8A9\t0x86A4\n0x8EA1D8AA\t0x86A9\n0x8EA1D8AB\t0x868C\n0x8EA1D8AC\t0x86A3\n0x8EA1D8AD\t0x869C\n0x8EA1D8AE\t0x8870\n0x8EA1D8AF\t0x8877\n0x8EA1D8B0\t0x8881\n0x8EA1D8B1\t0x8882\n0x8EA1D8B2\t0x887D\n0x8EA1D8B3\t0x8879\n0x8EA1D8B4\t0x8A18\n0x8EA1D8B5\t0x8A10\n0x8EA1D8B6\t0x8A0E\n0x8EA1D8B7\t0x8A0C\n0x8EA1D8B8\t0x8A15\n0x8EA1D8B9\t0x8A0A\n0x8EA1D8BA\t0x8A17\n0x8EA1D8BB\t0x8A13\n0x8EA1D8BC\t0x8A16\n0x8EA1D8BD\t0x8A0F\n0x8EA1D8BE\t0x8A11\n0x8EA1D8BF\t0x8C48\n0x8EA1D8C0\t0x8C7A\n0x8EA1D8C1\t0x8C79\n0x8EA1D8C2\t0x8CA1\n0x8EA1D8C3\t0x8CA2\n0x8EA1D8C4\t0x8D77\n0x8EA1D8C5\t0x8EAC\n0x8EA1D8C6\t0x8ED2\n0x8EA1D8C7\t0x8ED4\n0x8EA1D8C8\t0x8ECF\n0x8EA1D8C9\t0x8FB1\n0x8EA1D8CA\t0x9001\n0x8EA1D8CB\t0x9006\n0x8EA1D8CC\t0x8FF7\n0x8EA1D8CD\t0x9000\n0x8EA1D8CE\t0x8FFA\n0x8EA1D8CF\t0x8FF4\n0x8EA1D8D0\t0x9003\n0x8EA1D8D1\t0x8FFD\n0x8EA1D8D2\t0x9005\n0x8EA1D8D3\t0x8FF8\n0x8EA1D8D4\t0x9095\n0x8EA1D8D5\t0x90E1\n0x8EA1D8D6\t0x90DD\n0x8EA1D8D7\t0x90E2\n0x8EA1D8D8\t0x9152\n0x8EA1D8D9\t0x914D\n0x8EA1D8DA\t0x914C\n0x8EA1D8DB\t0x91D8\n0x8EA1D8DC\t0x91DD\n0x8EA1D8DD\t0x91D7\n0x8EA1D8DE\t0x91DC\n0x8EA1D8DF\t0x91D9\n0x8EA1D8E0\t0x9583\n0x8EA1D8E1\t0x9662\n0x8EA1D8E2\t0x9663\n0x8EA1D8E3\t0x9661\n0x8EA1D8E4\t0x965B\n0x8EA1D8E5\t0x965D\n0x8EA1D8E6\t0x9664\n0x8EA1D8E7\t0x9658\n0x8EA1D8E8\t0x965E\n0x8EA1D8E9\t0x96BB\n0x8EA1D8EA\t0x98E2\n0x8EA1D8EB\t0x99AC\n0x8EA1D8EC\t0x9AA8\n0x8EA1D8ED\t0x9AD8\n0x8EA1D8EE\t0x9B25\n0x8EA1D8EF\t0x9B32\n0x8EA1D8F0\t0x9B3C\n0x8EA1D8F1\t0x4E7E\n0x8EA1D8F2\t0x507A\n0x8EA1D8F3\t0x507D\n0x8EA1D8F4\t0x505C\n0x8EA1D8F5\t0x5047\n0x8EA1D8F6\t0x5043\n0x8EA1D8F7\t0x504C\n0x8EA1D8F8\t0x505A\n0x8EA1D8F9\t0x5049\n0x8EA1D8FA\t0x5065\n0x8EA1D8FB\t0x5076\n0x8EA1D8FC\t0x504E\n0x8EA1D8FD\t0x5055\n0x8EA1D8FE\t0x5075\n0x8EA1D9A1\t0x5074\n0x8EA1D9A2\t0x5077\n0x8EA1D9A3\t0x504F\n0x8EA1D9A4\t0x500F\n0x8EA1D9A5\t0x506F\n0x8EA1D9A6\t0x506D\n0x8EA1D9A7\t0x515C\n0x8EA1D9A8\t0x5195\n0x8EA1D9A9\t0x51F0\n0x8EA1D9AA\t0x526A\n0x8EA1D9AB\t0x526F\n0x8EA1D9AC\t0x52D2\n0x8EA1D9AD\t0x52D9\n0x8EA1D9AE\t0x52D8\n0x8EA1D9AF\t0x52D5\n0x8EA1D9B0\t0x5310\n0x8EA1D9B1\t0x530F\n0x8EA1D9B2\t0x5319\n0x8EA1D9B3\t0x533F\n0x8EA1D9B4\t0x5340\n0x8EA1D9B5\t0x533E\n0x8EA1D9B6\t0x53C3\n0x8EA1D9B7\t0x66FC\n0x8EA1D9B8\t0x5546\n0x8EA1D9B9\t0x556A\n0x8EA1D9BA\t0x5566\n0x8EA1D9BB\t0x5544\n0x8EA1D9BC\t0x555E\n0x8EA1D9BD\t0x5561\n0x8EA1D9BE\t0x5543\n0x8EA1D9BF\t0x554A\n0x8EA1D9C0\t0x5531\n0x8EA1D9C1\t0x5556\n0x8EA1D9C2\t0x554F\n0x8EA1D9C3\t0x5555\n0x8EA1D9C4\t0x552F\n0x8EA1D9C5\t0x5564\n0x8EA1D9C6\t0x5538\n0x8EA1D9C7\t0x552E\n0x8EA1D9C8\t0x555C\n0x8EA1D9C9\t0x552C\n0x8EA1D9CA\t0x5563\n0x8EA1D9CB\t0x5533\n0x8EA1D9CC\t0x5541\n0x8EA1D9CD\t0x5557\n0x8EA1D9CE\t0x5708\n0x8EA1D9CF\t0x570B\n0x8EA1D9D0\t0x5709\n0x8EA1D9D1\t0x57DF\n0x8EA1D9D2\t0x5805\n0x8EA1D9D3\t0x580A\n0x8EA1D9D4\t0x5806\n0x8EA1D9D5\t0x57E0\n0x8EA1D9D6\t0x57E4\n0x8EA1D9D7\t0x57FA\n0x8EA1D9D8\t0x5802\n0x8EA1D9D9\t0x5835\n0x8EA1D9DA\t0x57F7\n0x8EA1D9DB\t0x57F9\n0x8EA1D9DC\t0x5920\n0x8EA1D9DD\t0x5962\n0x8EA1D9DE\t0x5A36\n0x8EA1D9DF\t0x5A41\n0x8EA1D9E0\t0x5A49\n0x8EA1D9E1\t0x5A66\n0x8EA1D9E2\t0x5A6A\n0x8EA1D9E3\t0x5A40\n0x8EA1D9E4\t0x5A3C\n0x8EA1D9E5\t0x5A62\n0x8EA1D9E6\t0x5A5A\n0x8EA1D9E7\t0x5A46\n0x8EA1D9E8\t0x5A4A\n0x8EA1D9E9\t0x5B70\n0x8EA1D9EA\t0x5BC7\n0x8EA1D9EB\t0x5BC5\n0x8EA1D9EC\t0x5BC4\n0x8EA1D9ED\t0x5BC2\n0x8EA1D9EE\t0x5BBF\n0x8EA1D9EF\t0x5BC6\n0x8EA1D9F0\t0x5C09\n0x8EA1D9F1\t0x5C08\n0x8EA1D9F2\t0x5C07\n0x8EA1D9F3\t0x5C60\n0x8EA1D9F4\t0x5C5C\n0x8EA1D9F5\t0x5C5D\n0x8EA1D9F6\t0x5D07\n0x8EA1D9F7\t0x5D06\n0x8EA1D9F8\t0x5D0E\n0x8EA1D9F9\t0x5D1B\n0x8EA1D9FA\t0x5D16\n0x8EA1D9FB\t0x5D22\n0x8EA1D9FC\t0x5D11\n0x8EA1D9FD\t0x5D29\n0x8EA1D9FE\t0x5D14\n0x8EA1DAA1\t0x5D19\n0x8EA1DAA2\t0x5D24\n0x8EA1DAA3\t0x5D27\n0x8EA1DAA4\t0x5D17\n0x8EA1DAA5\t0x5DE2\n0x8EA1DAA6\t0x5E38\n0x8EA1DAA7\t0x5E36\n0x8EA1DAA8\t0x5E33\n0x8EA1DAA9\t0x5E37\n0x8EA1DAAA\t0x5EB7\n0x8EA1DAAB\t0x5EB8\n0x8EA1DAAC\t0x5EB6\n0x8EA1DAAD\t0x5EB5\n0x8EA1DAAE\t0x5EBE\n0x8EA1DAAF\t0x5F35\n0x8EA1DAB0\t0x5F37\n0x8EA1DAB1\t0x5F57\n0x8EA1DAB2\t0x5F6C\n0x8EA1DAB3\t0x5F69\n0x8EA1DAB4\t0x5F6B\n0x8EA1DAB5\t0x5F97\n0x8EA1DAB6\t0x5F99\n0x8EA1DAB7\t0x5F9E\n0x8EA1DAB8\t0x5F98\n0x8EA1DAB9\t0x5FA1\n0x8EA1DABA\t0x5FA0\n0x8EA1DABB\t0x5F9C\n0x8EA1DABC\t0x607F\n0x8EA1DABD\t0x60A3\n0x8EA1DABE\t0x6089\n0x8EA1DABF\t0x60A0\n0x8EA1DAC0\t0x60A8\n0x8EA1DAC1\t0x60CB\n0x8EA1DAC2\t0x60B4\n0x8EA1DAC3\t0x60E6\n0x8EA1DAC4\t0x60BD\n0x8EA1DAC5\t0x60C5\n0x8EA1DAC6\t0x60BB\n0x8EA1DAC7\t0x60B5\n0x8EA1DAC8\t0x60DC\n0x8EA1DAC9\t0x60BC\n0x8EA1DACA\t0x60D8\n0x8EA1DACB\t0x60D5\n0x8EA1DACC\t0x60C6\n0x8EA1DACD\t0x60DF\n0x8EA1DACE\t0x60B8\n0x8EA1DACF\t0x60DA\n0x8EA1DAD0\t0x60C7\n0x8EA1DAD1\t0x621A\n0x8EA1DAD2\t0x621B\n0x8EA1DAD3\t0x6248\n0x8EA1DAD4\t0x63A0\n0x8EA1DAD5\t0x63A7\n0x8EA1DAD6\t0x6372\n0x8EA1DAD7\t0x6396\n0x8EA1DAD8\t0x63A2\n0x8EA1DAD9\t0x63A5\n0x8EA1DADA\t0x6377\n0x8EA1DADB\t0x6367\n0x8EA1DADC\t0x6398\n0x8EA1DADD\t0x63AA\n0x8EA1DADE\t0x6371\n0x8EA1DADF\t0x63A9\n0x8EA1DAE0\t0x6389\n0x8EA1DAE1\t0x6383\n0x8EA1DAE2\t0x639B\n0x8EA1DAE3\t0x636B\n0x8EA1DAE4\t0x63A8\n0x8EA1DAE5\t0x6384\n0x8EA1DAE6\t0x6388\n0x8EA1DAE7\t0x6399\n0x8EA1DAE8\t0x63A1\n0x8EA1DAE9\t0x63AC\n0x8EA1DAEA\t0x6392\n0x8EA1DAEB\t0x638F\n0x8EA1DAEC\t0x6380\n0x8EA1DAED\t0x637B\n0x8EA1DAEE\t0x6369\n0x8EA1DAEF\t0x6368\n0x8EA1DAF0\t0x637A\n0x8EA1DAF1\t0x655D\n0x8EA1DAF2\t0x6556\n0x8EA1DAF3\t0x6551\n0x8EA1DAF4\t0x6559\n0x8EA1DAF5\t0x6557\n0x8EA1DAF6\t0x555F\n0x8EA1DAF7\t0x654F\n0x8EA1DAF8\t0x6558\n0x8EA1DAF9\t0x6555\n0x8EA1DAFA\t0x6554\n0x8EA1DAFB\t0x659C\n0x8EA1DAFC\t0x659B\n0x8EA1DAFD\t0x65AC\n0x8EA1DAFE\t0x65CF\n0x8EA1DBA1\t0x65CB\n0x8EA1DBA2\t0x65CC\n0x8EA1DBA3\t0x65CE\n0x8EA1DBA4\t0x665D\n0x8EA1DBA5\t0x665A\n0x8EA1DBA6\t0x6664\n0x8EA1DBA7\t0x6668\n0x8EA1DBA8\t0x6666\n0x8EA1DBA9\t0x665E\n0x8EA1DBAA\t0x66F9\n0x8EA1DBAB\t0x52D7\n0x8EA1DBAC\t0x671B\n0x8EA1DBAD\t0x6881\n0x8EA1DBAE\t0x68AF\n0x8EA1DBAF\t0x68A2\n0x8EA1DBB0\t0x6893\n0x8EA1DBB1\t0x68B5\n0x8EA1DBB2\t0x687F\n0x8EA1DBB3\t0x6876\n0x8EA1DBB4\t0x68B1\n0x8EA1DBB5\t0x68A7\n0x8EA1DBB6\t0x6897\n0x8EA1DBB7\t0x68B0\n0x8EA1DBB8\t0x6883\n0x8EA1DBB9\t0x68C4\n0x8EA1DBBA\t0x68AD\n0x8EA1DBBB\t0x6886\n0x8EA1DBBC\t0x6885\n0x8EA1DBBD\t0x6894\n0x8EA1DBBE\t0x689D\n0x8EA1DBBF\t0x68A8\n0x8EA1DBC0\t0x689F\n0x8EA1DBC1\t0x68A1\n0x8EA1DBC2\t0x6882\n0x8EA1DBC3\t0x6B32\n0x8EA1DBC4\t0x6BBA\n0x8EA1DBC5\t0x6BEB\n0x8EA1DBC6\t0x6BEC\n0x8EA1DBC7\t0x6C2B\n0x8EA1DBC8\t0x6D8E\n0x8EA1DBC9\t0x6DBC\n0x8EA1DBCA\t0x6DF3\n0x8EA1DBCB\t0x6DD9\n0x8EA1DBCC\t0x6DB2\n0x8EA1DBCD\t0x6DE1\n0x8EA1DBCE\t0x6DCC\n0x8EA1DBCF\t0x6DE4\n0x8EA1DBD0\t0x6DFB\n0x8EA1DBD1\t0x6DFA\n0x8EA1DBD2\t0x6E05\n0x8EA1DBD3\t0x6DC7\n0x8EA1DBD4\t0x6DCB\n0x8EA1DBD5\t0x6DAF\n0x8EA1DBD6\t0x6DD1\n0x8EA1DBD7\t0x6DAE\n0x8EA1DBD8\t0x6DDE\n0x8EA1DBD9\t0x6DF9\n0x8EA1DBDA\t0x6DB8\n0x8EA1DBDB\t0x6DF7\n0x8EA1DBDC\t0x6DF5\n0x8EA1DBDD\t0x6DC5\n0x8EA1DBDE\t0x6DD2\n0x8EA1DBDF\t0x6E1A\n0x8EA1DBE0\t0x6DB5\n0x8EA1DBE1\t0x6DDA\n0x8EA1DBE2\t0x6DEB\n0x8EA1DBE3\t0x6DD8\n0x8EA1DBE4\t0x6DEA\n0x8EA1DBE5\t0x6DF1\n0x8EA1DBE6\t0x6DEE\n0x8EA1DBE7\t0x6DE8\n0x8EA1DBE8\t0x6DC6\n0x8EA1DBE9\t0x6DC4\n0x8EA1DBEA\t0x6DAA\n0x8EA1DBEB\t0x6DEC\n0x8EA1DBEC\t0x6DBF\n0x8EA1DBED\t0x6DE6\n0x8EA1DBEE\t0x70F9\n0x8EA1DBEF\t0x7109\n0x8EA1DBF0\t0x710A\n0x8EA1DBF1\t0x70FD\n0x8EA1DBF2\t0x70EF\n0x8EA1DBF3\t0x723D\n0x8EA1DBF4\t0x727D\n0x8EA1DBF5\t0x7281\n0x8EA1DBF6\t0x731C\n0x8EA1DBF7\t0x731B\n0x8EA1DBF8\t0x7316\n0x8EA1DBF9\t0x7313\n0x8EA1DBFA\t0x7319\n0x8EA1DBFB\t0x7387\n0x8EA1DBFC\t0x7405\n0x8EA1DBFD\t0x740A\n0x8EA1DBFE\t0x7403\n0x8EA1DCA1\t0x7406\n0x8EA1DCA2\t0x73FE\n0x8EA1DCA3\t0x740D\n0x8EA1DCA4\t0x74E0\n0x8EA1DCA5\t0x74F6\n0x8EA1DCA6\t0x74F7\n0x8EA1DCA7\t0x751C\n0x8EA1DCA8\t0x7522\n0x8EA1DCA9\t0x7565\n0x8EA1DCAA\t0x7566\n0x8EA1DCAB\t0x7562\n0x8EA1DCAC\t0x7570\n0x8EA1DCAD\t0x758F\n0x8EA1DCAE\t0x75D4\n0x8EA1DCAF\t0x75D5\n0x8EA1DCB0\t0x75B5\n0x8EA1DCB1\t0x75CA\n0x8EA1DCB2\t0x75CD\n0x8EA1DCB3\t0x768E\n0x8EA1DCB4\t0x76D4\n0x8EA1DCB5\t0x76D2\n0x8EA1DCB6\t0x76DB\n0x8EA1DCB7\t0x7737\n0x8EA1DCB8\t0x773E\n0x8EA1DCB9\t0x773C\n0x8EA1DCBA\t0x7736\n0x8EA1DCBB\t0x7738\n0x8EA1DCBC\t0x773A\n0x8EA1DCBD\t0x786B\n0x8EA1DCBE\t0x7843\n0x8EA1DCBF\t0x784E\n0x8EA1DCC0\t0x7965\n0x8EA1DCC1\t0x7968\n0x8EA1DCC2\t0x796D\n0x8EA1DCC3\t0x79FB\n0x8EA1DCC4\t0x7A92\n0x8EA1DCC5\t0x7A95\n0x8EA1DCC6\t0x7B20\n0x8EA1DCC7\t0x7B28\n0x8EA1DCC8\t0x7B1B\n0x8EA1DCC9\t0x7B2C\n0x8EA1DCCA\t0x7B26\n0x8EA1DCCB\t0x7B19\n0x8EA1DCCC\t0x7B1E\n0x8EA1DCCD\t0x7B2E\n0x8EA1DCCE\t0x7C92\n0x8EA1DCCF\t0x7C97\n0x8EA1DCD0\t0x7C95\n0x8EA1DCD1\t0x7D46\n0x8EA1DCD2\t0x7D43\n0x8EA1DCD3\t0x7D71\n0x8EA1DCD4\t0x7D2E\n0x8EA1DCD5\t0x7D39\n0x8EA1DCD6\t0x7D3C\n0x8EA1DCD7\t0x7D40\n0x8EA1DCD8\t0x7D30\n0x8EA1DCD9\t0x7D33\n0x8EA1DCDA\t0x7D44\n0x8EA1DCDB\t0x7D2F\n0x8EA1DCDC\t0x7D42\n0x8EA1DCDD\t0x7D32\n0x8EA1DCDE\t0x7D31\n0x8EA1DCDF\t0x7F3D\n0x8EA1DCE0\t0x7F9E\n0x8EA1DCE1\t0x7F9A\n0x8EA1DCE2\t0x7FCC\n0x8EA1DCE3\t0x7FCE\n0x8EA1DCE4\t0x7FD2\n0x8EA1DCE5\t0x801C\n0x8EA1DCE6\t0x804A\n0x8EA1DCE7\t0x8046\n0x8EA1DCE8\t0x812F\n0x8EA1DCE9\t0x8116\n0x8EA1DCEA\t0x8123\n0x8EA1DCEB\t0x812B\n0x8EA1DCEC\t0x8129\n0x8EA1DCED\t0x8130\n0x8EA1DCEE\t0x8124\n0x8EA1DCEF\t0x8202\n0x8EA1DCF0\t0x8235\n0x8EA1DCF1\t0x8237\n0x8EA1DCF2\t0x8236\n0x8EA1DCF3\t0x8239\n0x8EA1DCF4\t0x838E\n0x8EA1DCF5\t0x839E\n0x8EA1DCF6\t0x8398\n0x8EA1DCF7\t0x8378\n0x8EA1DCF8\t0x83A2\n0x8EA1DCF9\t0x8396\n0x8EA1DCFA\t0x83BD\n0x8EA1DCFB\t0x83AB\n0x8EA1DCFC\t0x8392\n0x8EA1DCFD\t0x838A\n0x8EA1DCFE\t0x8393\n0x8EA1DDA1\t0x8389\n0x8EA1DDA2\t0x83A0\n0x8EA1DDA3\t0x8377\n0x8EA1DDA4\t0x837B\n0x8EA1DDA5\t0x837C\n0x8EA1DDA6\t0x8386\n0x8EA1DDA7\t0x83A7\n0x8EA1DDA8\t0x8655\n0x8EA1DDA9\t0x5F6A\n0x8EA1DDAA\t0x86C7\n0x8EA1DDAB\t0x86C0\n0x8EA1DDAC\t0x86B6\n0x8EA1DDAD\t0x86C4\n0x8EA1DDAE\t0x86B5\n0x8EA1DDAF\t0x86C6\n0x8EA1DDB0\t0x86CB\n0x8EA1DDB1\t0x86B1\n0x8EA1DDB2\t0x86AF\n0x8EA1DDB3\t0x86C9\n0x8EA1DDB4\t0x8853\n0x8EA1DDB5\t0x889E\n0x8EA1DDB6\t0x8888\n0x8EA1DDB7\t0x88AB\n0x8EA1DDB8\t0x8892\n0x8EA1DDB9\t0x8896\n0x8EA1DDBA\t0x888D\n0x8EA1DDBB\t0x888B\n0x8EA1DDBC\t0x8993\n0x8EA1DDBD\t0x898F\n0x8EA1DDBE\t0x8A2A\n0x8EA1DDBF\t0x8A1D\n0x8EA1DDC0\t0x8A23\n0x8EA1DDC1\t0x8A25\n0x8EA1DDC2\t0x8A31\n0x8EA1DDC3\t0x8A2D\n0x8EA1DDC4\t0x8A1F\n0x8EA1DDC5\t0x8A1B\n0x8EA1DDC6\t0x8A22\n0x8EA1DDC7\t0x8C49\n0x8EA1DDC8\t0x8C5A\n0x8EA1DDC9\t0x8CA9\n0x8EA1DDCA\t0x8CAC\n0x8EA1DDCB\t0x8CAB\n0x8EA1DDCC\t0x8CA8\n0x8EA1DDCD\t0x8CAA\n0x8EA1DDCE\t0x8CA7\n0x8EA1DDCF\t0x8D67\n0x8EA1DDD0\t0x8D66\n0x8EA1DDD1\t0x8DBE\n0x8EA1DDD2\t0x8DBA\n0x8EA1DDD3\t0x8EDB\n0x8EA1DDD4\t0x8EDF\n0x8EA1DDD5\t0x9019\n0x8EA1DDD6\t0x900D\n0x8EA1DDD7\t0x901A\n0x8EA1DDD8\t0x9017\n0x8EA1DDD9\t0x9023\n0x8EA1DDDA\t0x901F\n0x8EA1DDDB\t0x901D\n0x8EA1DDDC\t0x9010\n0x8EA1DDDD\t0x9015\n0x8EA1DDDE\t0x901E\n0x8EA1DDDF\t0x9020\n0x8EA1DDE0\t0x900F\n0x8EA1DDE1\t0x9022\n0x8EA1DDE2\t0x9016\n0x8EA1DDE3\t0x901B\n0x8EA1DDE4\t0x9014\n0x8EA1DDE5\t0x90E8\n0x8EA1DDE6\t0x90ED\n0x8EA1DDE7\t0x90FD\n0x8EA1DDE8\t0x9157\n0x8EA1DDE9\t0x91CE\n0x8EA1DDEA\t0x91F5\n0x8EA1DDEB\t0x91E6\n0x8EA1DDEC\t0x91E3\n0x8EA1DDED\t0x91E7\n0x8EA1DDEE\t0x91ED\n0x8EA1DDEF\t0x91E9\n0x8EA1DDF0\t0x9589\n0x8EA1DDF1\t0x966A\n0x8EA1DDF2\t0x9675\n0x8EA1DDF3\t0x9673\n0x8EA1DDF4\t0x9678\n0x8EA1DDF5\t0x9670\n0x8EA1DDF6\t0x9674\n0x8EA1DDF7\t0x9676\n0x8EA1DDF8\t0x9677\n0x8EA1DDF9\t0x966C\n0x8EA1DDFA\t0x96C0\n0x8EA1DDFB\t0x96EA\n0x8EA1DDFC\t0x96E9\n0x8EA1DDFD\t0x7AE0\n0x8EA1DDFE\t0x7ADF\n0x8EA1DEA1\t0x9802\n0x8EA1DEA2\t0x9803\n0x8EA1DEA3\t0x9B5A\n0x8EA1DEA4\t0x9CE5\n0x8EA1DEA5\t0x9E75\n0x8EA1DEA6\t0x9E7F\n0x8EA1DEA7\t0x9EA5\n0x8EA1DEA8\t0x9EBB\n0x8EA1DEA9\t0x50A2\n0x8EA1DEAA\t0x508D\n0x8EA1DEAB\t0x5085\n0x8EA1DEAC\t0x5099\n0x8EA1DEAD\t0x5091\n0x8EA1DEAE\t0x5080\n0x8EA1DEAF\t0x5096\n0x8EA1DEB0\t0x5098\n0x8EA1DEB1\t0x509A\n0x8EA1DEB2\t0x6700\n0x8EA1DEB3\t0x51F1\n0x8EA1DEB4\t0x5272\n0x8EA1DEB5\t0x5274\n0x8EA1DEB6\t0x5275\n0x8EA1DEB7\t0x5269\n0x8EA1DEB8\t0x52DE\n0x8EA1DEB9\t0x52DD\n0x8EA1DEBA\t0x52DB\n0x8EA1DEBB\t0x535A\n0x8EA1DEBC\t0x53A5\n0x8EA1DEBD\t0x557B\n0x8EA1DEBE\t0x5580\n0x8EA1DEBF\t0x55A7\n0x8EA1DEC0\t0x557C\n0x8EA1DEC1\t0x558A\n0x8EA1DEC2\t0x559D\n0x8EA1DEC3\t0x5598\n0x8EA1DEC4\t0x5582\n0x8EA1DEC5\t0x559C\n0x8EA1DEC6\t0x55AA\n0x8EA1DEC7\t0x5594\n0x8EA1DEC8\t0x5587\n0x8EA1DEC9\t0x558B\n0x8EA1DECA\t0x5583\n0x8EA1DECB\t0x55B3\n0x8EA1DECC\t0x55AE\n0x8EA1DECD\t0x559F\n0x8EA1DECE\t0x553E\n0x8EA1DECF\t0x55B2\n0x8EA1DED0\t0x559A\n0x8EA1DED1\t0x55BB\n0x8EA1DED2\t0x55AC\n0x8EA1DED3\t0x55B1\n0x8EA1DED4\t0x557E\n0x8EA1DED5\t0x5589\n0x8EA1DED6\t0x55AB\n0x8EA1DED7\t0x5599\n0x8EA1DED8\t0x570D\n0x8EA1DED9\t0x582F\n0x8EA1DEDA\t0x582A\n0x8EA1DEDB\t0x5834\n0x8EA1DEDC\t0x5824\n0x8EA1DEDD\t0x5830\n0x8EA1DEDE\t0x5831\n0x8EA1DEDF\t0x5821\n0x8EA1DEE0\t0x581D\n0x8EA1DEE1\t0x5820\n0x8EA1DEE2\t0x58F9\n0x8EA1DEE3\t0x58FA\n0x8EA1DEE4\t0x5960\n0x8EA1DEE5\t0x5A77\n0x8EA1DEE6\t0x5A9A\n0x8EA1DEE7\t0x5A7F\n0x8EA1DEE8\t0x5A92\n0x8EA1DEE9\t0x5A9B\n0x8EA1DEEA\t0x5AA7\n0x8EA1DEEB\t0x5B73\n0x8EA1DEEC\t0x5B71\n0x8EA1DEED\t0x5BD2\n0x8EA1DEEE\t0x5BCC\n0x8EA1DEEF\t0x5BD3\n0x8EA1DEF0\t0x5BD0\n0x8EA1DEF1\t0x5C0A\n0x8EA1DEF2\t0x5C0B\n0x8EA1DEF3\t0x5C31\n0x8EA1DEF4\t0x5D4C\n0x8EA1DEF5\t0x5D50\n0x8EA1DEF6\t0x5D34\n0x8EA1DEF7\t0x5D47\n0x8EA1DEF8\t0x5DFD\n0x8EA1DEF9\t0x5E45\n0x8EA1DEFA\t0x5E3D\n0x8EA1DEFB\t0x5E40\n0x8EA1DEFC\t0x5E43\n0x8EA1DEFD\t0x5E7E\n0x8EA1DEFE\t0x5ECA\n0x8EA1DFA1\t0x5EC1\n0x8EA1DFA2\t0x5EC2\n0x8EA1DFA3\t0x5EC4\n0x8EA1DFA4\t0x5F3C\n0x8EA1DFA5\t0x5F6D\n0x8EA1DFA6\t0x5FA9\n0x8EA1DFA7\t0x5FAA\n0x8EA1DFA8\t0x5FA8\n0x8EA1DFA9\t0x60D1\n0x8EA1DFAA\t0x60E1\n0x8EA1DFAB\t0x60B2\n0x8EA1DFAC\t0x60B6\n0x8EA1DFAD\t0x60E0\n0x8EA1DFAE\t0x611C\n0x8EA1DFAF\t0x6123\n0x8EA1DFB0\t0x60FA\n0x8EA1DFB1\t0x6115\n0x8EA1DFB2\t0x60F0\n0x8EA1DFB3\t0x60FB\n0x8EA1DFB4\t0x60F4\n0x8EA1DFB5\t0x6168\n0x8EA1DFB6\t0x60F1\n0x8EA1DFB7\t0x610E\n0x8EA1DFB8\t0x60F6\n0x8EA1DFB9\t0x6109\n0x8EA1DFBA\t0x6100\n0x8EA1DFBB\t0x6112\n0x8EA1DFBC\t0x621F\n0x8EA1DFBD\t0x6249\n0x8EA1DFBE\t0x63A3\n0x8EA1DFBF\t0x638C\n0x8EA1DFC0\t0x63CF\n0x8EA1DFC1\t0x63C0\n0x8EA1DFC2\t0x63E9\n0x8EA1DFC3\t0x63C9\n0x8EA1DFC4\t0x63C6\n0x8EA1DFC5\t0x63CD\n0x8EA1DFC6\t0x63D2\n0x8EA1DFC7\t0x63E3\n0x8EA1DFC8\t0x63D0\n0x8EA1DFC9\t0x63E1\n0x8EA1DFCA\t0x63D6\n0x8EA1DFCB\t0x63ED\n0x8EA1DFCC\t0x63EE\n0x8EA1DFCD\t0x6376\n0x8EA1DFCE\t0x63F4\n0x8EA1DFCF\t0x63EA\n0x8EA1DFD0\t0x63DB\n0x8EA1DFD1\t0x6452\n0x8EA1DFD2\t0x63DA\n0x8EA1DFD3\t0x63F9\n0x8EA1DFD4\t0x655E\n0x8EA1DFD5\t0x6566\n0x8EA1DFD6\t0x6562\n0x8EA1DFD7\t0x6563\n0x8EA1DFD8\t0x6591\n0x8EA1DFD9\t0x6590\n0x8EA1DFDA\t0x65AF\n0x8EA1DFDB\t0x666E\n0x8EA1DFDC\t0x6670\n0x8EA1DFDD\t0x6674\n0x8EA1DFDE\t0x6676\n0x8EA1DFDF\t0x666F\n0x8EA1DFE0\t0x6691\n0x8EA1DFE1\t0x667A\n0x8EA1DFE2\t0x667E\n0x8EA1DFE3\t0x6677\n0x8EA1DFE4\t0x66FE\n0x8EA1DFE5\t0x66FF\n0x8EA1DFE6\t0x671F\n0x8EA1DFE7\t0x671D\n0x8EA1DFE8\t0x68FA\n0x8EA1DFE9\t0x68D5\n0x8EA1DFEA\t0x68E0\n0x8EA1DFEB\t0x68D8\n0x8EA1DFEC\t0x68D7\n0x8EA1DFED\t0x6905\n0x8EA1DFEE\t0x68DF\n0x8EA1DFEF\t0x68F5\n0x8EA1DFF0\t0x68EE\n0x8EA1DFF1\t0x68E7\n0x8EA1DFF2\t0x68F9\n0x8EA1DFF3\t0x68D2\n0x8EA1DFF4\t0x68F2\n0x8EA1DFF5\t0x68E3\n0x8EA1DFF6\t0x68CB\n0x8EA1DFF7\t0x68CD\n0x8EA1DFF8\t0x690D\n0x8EA1DFF9\t0x6912\n0x8EA1DFFA\t0x690E\n0x8EA1DFFB\t0x68C9\n0x8EA1DFFC\t0x68DA\n0x8EA1DFFD\t0x696E\n0x8EA1DFFE\t0x68FB\n0x8EA1E0A1\t0x6B3E\n0x8EA1E0A2\t0x6B3A\n0x8EA1E0A3\t0x6B3D\n0x8EA1E0A4\t0x6B98\n0x8EA1E0A5\t0x6B96\n0x8EA1E0A6\t0x6BBC\n0x8EA1E0A7\t0x6BEF\n0x8EA1E0A8\t0x6C2E\n0x8EA1E0A9\t0x6C2F\n0x8EA1E0AA\t0x6C2C\n0x8EA1E0AB\t0x6E2F\n0x8EA1E0AC\t0x6E38\n0x8EA1E0AD\t0x6E54\n0x8EA1E0AE\t0x6E21\n0x8EA1E0AF\t0x6E32\n0x8EA1E0B0\t0x6E67\n0x8EA1E0B1\t0x6E4A\n0x8EA1E0B2\t0x6E20\n0x8EA1E0B3\t0x6E25\n0x8EA1E0B4\t0x6E23\n0x8EA1E0B5\t0x6E1B\n0x8EA1E0B6\t0x6E5B\n0x8EA1E0B7\t0x6E58\n0x8EA1E0B8\t0x6E24\n0x8EA1E0B9\t0x6E56\n0x8EA1E0BA\t0x6E6E\n0x8EA1E0BB\t0x6E2D\n0x8EA1E0BC\t0x6E26\n0x8EA1E0BD\t0x6E6F\n0x8EA1E0BE\t0x6E34\n0x8EA1E0BF\t0x6E4D\n0x8EA1E0C0\t0x6E3A\n0x8EA1E0C1\t0x6E2C\n0x8EA1E0C2\t0x6E43\n0x8EA1E0C3\t0x6E1D\n0x8EA1E0C4\t0x6E3E\n0x8EA1E0C5\t0x6ECB\n0x8EA1E0C6\t0x6E89\n0x8EA1E0C7\t0x6E19\n0x8EA1E0C8\t0x6E4E\n0x8EA1E0C9\t0x6E63\n0x8EA1E0CA\t0x6E44\n0x8EA1E0CB\t0x6E72\n0x8EA1E0CC\t0x6E69\n0x8EA1E0CD\t0x6E5F\n0x8EA1E0CE\t0x7119\n0x8EA1E0CF\t0x711A\n0x8EA1E0D0\t0x7126\n0x8EA1E0D1\t0x7130\n0x8EA1E0D2\t0x7121\n0x8EA1E0D3\t0x7136\n0x8EA1E0D4\t0x716E\n0x8EA1E0D5\t0x711C\n0x8EA1E0D6\t0x724C\n0x8EA1E0D7\t0x7284\n0x8EA1E0D8\t0x7280\n0x8EA1E0D9\t0x7336\n0x8EA1E0DA\t0x7325\n0x8EA1E0DB\t0x7334\n0x8EA1E0DC\t0x7329\n0x8EA1E0DD\t0x743A\n0x8EA1E0DE\t0x742A\n0x8EA1E0DF\t0x7433\n0x8EA1E0E0\t0x7422\n0x8EA1E0E1\t0x7425\n0x8EA1E0E2\t0x7435\n0x8EA1E0E3\t0x7436\n0x8EA1E0E4\t0x7434\n0x8EA1E0E5\t0x742F\n0x8EA1E0E6\t0x741B\n0x8EA1E0E7\t0x7426\n0x8EA1E0E8\t0x7428\n0x8EA1E0E9\t0x7525\n0x8EA1E0EA\t0x7526\n0x8EA1E0EB\t0x756B\n0x8EA1E0EC\t0x756A\n0x8EA1E0ED\t0x75E2\n0x8EA1E0EE\t0x75DB\n0x8EA1E0EF\t0x75E3\n0x8EA1E0F0\t0x75D9\n0x8EA1E0F1\t0x75D8\n0x8EA1E0F2\t0x75DE\n0x8EA1E0F3\t0x75E0\n0x8EA1E0F4\t0x767B\n0x8EA1E0F5\t0x767C\n0x8EA1E0F6\t0x7696\n0x8EA1E0F7\t0x7693\n0x8EA1E0F8\t0x76B4\n0x8EA1E0F9\t0x76DC\n0x8EA1E0FA\t0x774F\n0x8EA1E0FB\t0x77ED\n0x8EA1E0FC\t0x785D\n0x8EA1E0FD\t0x786C\n0x8EA1E0FE\t0x786F\n0x8EA1E1A1\t0x7A0D\n0x8EA1E1A2\t0x7A08\n0x8EA1E1A3\t0x7A0B\n0x8EA1E1A4\t0x7A05\n0x8EA1E1A5\t0x7A00\n0x8EA1E1A6\t0x7A98\n0x8EA1E1A7\t0x7A97\n0x8EA1E1A8\t0x7A96\n0x8EA1E1A9\t0x7AE5\n0x8EA1E1AA\t0x7AE3\n0x8EA1E1AB\t0x7B49\n0x8EA1E1AC\t0x7B56\n0x8EA1E1AD\t0x7B46\n0x8EA1E1AE\t0x7B50\n0x8EA1E1AF\t0x7B52\n0x8EA1E1B0\t0x7B54\n0x8EA1E1B1\t0x7B4D\n0x8EA1E1B2\t0x7B4B\n0x8EA1E1B3\t0x7B4F\n0x8EA1E1B4\t0x7B51\n0x8EA1E1B5\t0x7C9F\n0x8EA1E1B6\t0x7CA5\n0x8EA1E1B7\t0x7D5E\n0x8EA1E1B8\t0x7D50\n0x8EA1E1B9\t0x7D68\n0x8EA1E1BA\t0x7D55\n0x8EA1E1BB\t0x7D2B\n0x8EA1E1BC\t0x7D6E\n0x8EA1E1BD\t0x7D72\n0x8EA1E1BE\t0x7D61\n0x8EA1E1BF\t0x7D66\n0x8EA1E1C0\t0x7D62\n0x8EA1E1C1\t0x7D70\n0x8EA1E1C2\t0x7D73\n0x8EA1E1C3\t0x5584\n0x8EA1E1C4\t0x7FD4\n0x8EA1E1C5\t0x7FD5\n0x8EA1E1C6\t0x800B\n0x8EA1E1C7\t0x8052\n0x8EA1E1C8\t0x8085\n0x8EA1E1C9\t0x8155\n0x8EA1E1CA\t0x8154\n0x8EA1E1CB\t0x814B\n0x8EA1E1CC\t0x8151\n0x8EA1E1CD\t0x814E\n0x8EA1E1CE\t0x8139\n0x8EA1E1CF\t0x8146\n0x8EA1E1D0\t0x813E\n0x8EA1E1D1\t0x814C\n0x8EA1E1D2\t0x8153\n0x8EA1E1D3\t0x8174\n0x8EA1E1D4\t0x8212\n0x8EA1E1D5\t0x821C\n0x8EA1E1D6\t0x83E9\n0x8EA1E1D7\t0x8403\n0x8EA1E1D8\t0x83F8\n0x8EA1E1D9\t0x840D\n0x8EA1E1DA\t0x83E0\n0x8EA1E1DB\t0x83C5\n0x8EA1E1DC\t0x840B\n0x8EA1E1DD\t0x83C1\n0x8EA1E1DE\t0x83EF\n0x8EA1E1DF\t0x83F1\n0x8EA1E1E0\t0x83F4\n0x8EA1E1E1\t0x8457\n0x8EA1E1E2\t0x840A\n0x8EA1E1E3\t0x83F0\n0x8EA1E1E4\t0x840C\n0x8EA1E1E5\t0x83CC\n0x8EA1E1E6\t0x83FD\n0x8EA1E1E7\t0x83F2\n0x8EA1E1E8\t0x83CA\n0x8EA1E1E9\t0x8438\n0x8EA1E1EA\t0x840E\n0x8EA1E1EB\t0x8404\n0x8EA1E1EC\t0x83DC\n0x8EA1E1ED\t0x8407\n0x8EA1E1EE\t0x83D4\n0x8EA1E1EF\t0x83DF\n0x8EA1E1F0\t0x865B\n0x8EA1E1F1\t0x86DF\n0x8EA1E1F2\t0x86D9\n0x8EA1E1F3\t0x86ED\n0x8EA1E1F4\t0x86D4\n0x8EA1E1F5\t0x86DB\n0x8EA1E1F6\t0x86E4\n0x8EA1E1F7\t0x86D0\n0x8EA1E1F8\t0x86DE\n0x8EA1E1F9\t0x8857\n0x8EA1E1FA\t0x88C1\n0x8EA1E1FB\t0x88C2\n0x8EA1E1FC\t0x88B1\n0x8EA1E1FD\t0x8983\n0x8EA1E1FE\t0x8996\n0x8EA1E2A1\t0x8A3B\n0x8EA1E2A2\t0x8A60\n0x8EA1E2A3\t0x8A55\n0x8EA1E2A4\t0x8A5E\n0x8EA1E2A5\t0x8A3C\n0x8EA1E2A6\t0x8A41\n0x8EA1E2A7\t0x8A54\n0x8EA1E2A8\t0x8A5B\n0x8EA1E2A9\t0x8A50\n0x8EA1E2AA\t0x8A46\n0x8EA1E2AB\t0x8A34\n0x8EA1E2AC\t0x8A3A\n0x8EA1E2AD\t0x8A36\n0x8EA1E2AE\t0x8A56\n0x8EA1E2AF\t0x8C61\n0x8EA1E2B0\t0x8C82\n0x8EA1E2B1\t0x8CAF\n0x8EA1E2B2\t0x8CBC\n0x8EA1E2B3\t0x8CB3\n0x8EA1E2B4\t0x8CBD\n0x8EA1E2B5\t0x8CC1\n0x8EA1E2B6\t0x8CBB\n0x8EA1E2B7\t0x8CC0\n0x8EA1E2B8\t0x8CB4\n0x8EA1E2B9\t0x8CB7\n0x8EA1E2BA\t0x8CB6\n0x8EA1E2BB\t0x8CBF\n0x8EA1E2BC\t0x8CB8\n0x8EA1E2BD\t0x8D8A\n0x8EA1E2BE\t0x8D85\n0x8EA1E2BF\t0x8D81\n0x8EA1E2C0\t0x8DCE\n0x8EA1E2C1\t0x8DDD\n0x8EA1E2C2\t0x8DCB\n0x8EA1E2C3\t0x8DDA\n0x8EA1E2C4\t0x8DD1\n0x8EA1E2C5\t0x8DCC\n0x8EA1E2C6\t0x8DDB\n0x8EA1E2C7\t0x8DC6\n0x8EA1E2C8\t0x8EFB\n0x8EA1E2C9\t0x8EF8\n0x8EA1E2CA\t0x8EFC\n0x8EA1E2CB\t0x8F9C\n0x8EA1E2CC\t0x902E\n0x8EA1E2CD\t0x9035\n0x8EA1E2CE\t0x9031\n0x8EA1E2CF\t0x9038\n0x8EA1E2D0\t0x9032\n0x8EA1E2D1\t0x9036\n0x8EA1E2D2\t0x9102\n0x8EA1E2D3\t0x90F5\n0x8EA1E2D4\t0x9109\n0x8EA1E2D5\t0x90FE\n0x8EA1E2D6\t0x9163\n0x8EA1E2D7\t0x9165\n0x8EA1E2D8\t0x91CF\n0x8EA1E2D9\t0x9214\n0x8EA1E2DA\t0x9215\n0x8EA1E2DB\t0x9223\n0x8EA1E2DC\t0x9209\n0x8EA1E2DD\t0x921E\n0x8EA1E2DE\t0x920D\n0x8EA1E2DF\t0x9210\n0x8EA1E2E0\t0x9207\n0x8EA1E2E1\t0x9211\n0x8EA1E2E2\t0x9594\n0x8EA1E2E3\t0x958F\n0x8EA1E2E4\t0x958B\n0x8EA1E2E5\t0x9591\n0x8EA1E2E6\t0x9593\n0x8EA1E2E7\t0x9592\n0x8EA1E2E8\t0x958E\n0x8EA1E2E9\t0x968A\n0x8EA1E2EA\t0x968E\n0x8EA1E2EB\t0x968B\n0x8EA1E2EC\t0x967D\n0x8EA1E2ED\t0x9685\n0x8EA1E2EE\t0x9686\n0x8EA1E2EF\t0x968D\n0x8EA1E2F0\t0x9672\n0x8EA1E2F1\t0x9684\n0x8EA1E2F2\t0x96C1\n0x8EA1E2F3\t0x96C5\n0x8EA1E2F4\t0x96C4\n0x8EA1E2F5\t0x96C6\n0x8EA1E2F6\t0x96C7\n0x8EA1E2F7\t0x96EF\n0x8EA1E2F8\t0x96F2\n0x8EA1E2F9\t0x97CC\n0x8EA1E2FA\t0x9805\n0x8EA1E2FB\t0x9806\n0x8EA1E2FC\t0x9808\n0x8EA1E2FD\t0x98E7\n0x8EA1E2FE\t0x98EA\n0x8EA1E3A1\t0x98EF\n0x8EA1E3A2\t0x98E9\n0x8EA1E3A3\t0x98F2\n0x8EA1E3A4\t0x98ED\n0x8EA1E3A5\t0x99AE\n0x8EA1E3A6\t0x99AD\n0x8EA1E3A7\t0x9EC3\n0x8EA1E3A8\t0x9ECD\n0x8EA1E3A9\t0x9ED1\n0x8EA1E3AA\t0x4E82\n0x8EA1E3AB\t0x50AD\n0x8EA1E3AC\t0x50B5\n0x8EA1E3AD\t0x50B2\n0x8EA1E3AE\t0x50B3\n0x8EA1E3AF\t0x50C5\n0x8EA1E3B0\t0x50BE\n0x8EA1E3B1\t0x50AC\n0x8EA1E3B2\t0x50B7\n0x8EA1E3B3\t0x50BB\n0x8EA1E3B4\t0x50AF\n0x8EA1E3B5\t0x50C7\n0x8EA1E3B6\t0x527F\n0x8EA1E3B7\t0x5277\n0x8EA1E3B8\t0x527D\n0x8EA1E3B9\t0x52DF\n0x8EA1E3BA\t0x52E6\n0x8EA1E3BB\t0x52E4\n0x8EA1E3BC\t0x52E2\n0x8EA1E3BD\t0x52E3\n0x8EA1E3BE\t0x532F\n0x8EA1E3BF\t0x55DF\n0x8EA1E3C0\t0x55E8\n0x8EA1E3C1\t0x55D3\n0x8EA1E3C2\t0x55E6\n0x8EA1E3C3\t0x55CE\n0x8EA1E3C4\t0x55DC\n0x8EA1E3C5\t0x55C7\n0x8EA1E3C6\t0x55D1\n0x8EA1E3C7\t0x55E3\n0x8EA1E3C8\t0x55E4\n0x8EA1E3C9\t0x55EF\n0x8EA1E3CA\t0x55DA\n0x8EA1E3CB\t0x55E1\n0x8EA1E3CC\t0x55C5\n0x8EA1E3CD\t0x55C6\n0x8EA1E3CE\t0x55E5\n0x8EA1E3CF\t0x55C9\n0x8EA1E3D0\t0x5712\n0x8EA1E3D1\t0x5713\n0x8EA1E3D2\t0x585E\n0x8EA1E3D3\t0x5851\n0x8EA1E3D4\t0x5858\n0x8EA1E3D5\t0x5857\n0x8EA1E3D6\t0x585A\n0x8EA1E3D7\t0x5854\n0x8EA1E3D8\t0x586B\n0x8EA1E3D9\t0x584C\n0x8EA1E3DA\t0x586D\n0x8EA1E3DB\t0x584A\n0x8EA1E3DC\t0x5862\n0x8EA1E3DD\t0x5852\n0x8EA1E3DE\t0x584B\n0x8EA1E3DF\t0x5967\n0x8EA1E3E0\t0x5AC1\n0x8EA1E3E1\t0x5AC9\n0x8EA1E3E2\t0x5ACC\n0x8EA1E3E3\t0x5ABE\n0x8EA1E3E4\t0x5ABD\n0x8EA1E3E5\t0x5ABC\n0x8EA1E3E6\t0x5AB3\n0x8EA1E3E7\t0x5AC2\n0x8EA1E3E8\t0x5AB2\n0x8EA1E3E9\t0x5D69\n0x8EA1E3EA\t0x5D6F\n0x8EA1E3EB\t0x5E4C\n0x8EA1E3EC\t0x5E79\n0x8EA1E3ED\t0x5EC9\n0x8EA1E3EE\t0x5EC8\n0x8EA1E3EF\t0x5F12\n0x8EA1E3F0\t0x5F59\n0x8EA1E3F1\t0x5FAC\n0x8EA1E3F2\t0x5FAE\n0x8EA1E3F3\t0x611A\n0x8EA1E3F4\t0x610F\n0x8EA1E3F5\t0x6148\n0x8EA1E3F6\t0x611F\n0x8EA1E3F7\t0x60F3\n0x8EA1E3F8\t0x611B\n0x8EA1E3F9\t0x60F9\n0x8EA1E3FA\t0x6101\n0x8EA1E3FB\t0x6108\n0x8EA1E3FC\t0x614E\n0x8EA1E3FD\t0x614C\n0x8EA1E3FE\t0x6144\n0x8EA1E4A1\t0x614D\n0x8EA1E4A2\t0x613E\n0x8EA1E4A3\t0x6134\n0x8EA1E4A4\t0x6127\n0x8EA1E4A5\t0x610D\n0x8EA1E4A6\t0x6106\n0x8EA1E4A7\t0x6137\n0x8EA1E4A8\t0x6221\n0x8EA1E4A9\t0x6222\n0x8EA1E4AA\t0x6413\n0x8EA1E4AB\t0x643E\n0x8EA1E4AC\t0x641E\n0x8EA1E4AD\t0x642A\n0x8EA1E4AE\t0x642D\n0x8EA1E4AF\t0x643D\n0x8EA1E4B0\t0x642C\n0x8EA1E4B1\t0x640F\n0x8EA1E4B2\t0x641C\n0x8EA1E4B3\t0x6414\n0x8EA1E4B4\t0x640D\n0x8EA1E4B5\t0x6436\n0x8EA1E4B6\t0x6416\n0x8EA1E4B7\t0x6417\n0x8EA1E4B8\t0x6406\n0x8EA1E4B9\t0x656C\n0x8EA1E4BA\t0x659F\n0x8EA1E4BB\t0x65B0\n0x8EA1E4BC\t0x6697\n0x8EA1E4BD\t0x6689\n0x8EA1E4BE\t0x6687\n0x8EA1E4BF\t0x6688\n0x8EA1E4C0\t0x6696\n0x8EA1E4C1\t0x6684\n0x8EA1E4C2\t0x6698\n0x8EA1E4C3\t0x668D\n0x8EA1E4C4\t0x6703\n0x8EA1E4C5\t0x6994\n0x8EA1E4C6\t0x696D\n0x8EA1E4C7\t0x695A\n0x8EA1E4C8\t0x6977\n0x8EA1E4C9\t0x6960\n0x8EA1E4CA\t0x6954\n0x8EA1E4CB\t0x6975\n0x8EA1E4CC\t0x6930\n0x8EA1E4CD\t0x6982\n0x8EA1E4CE\t0x694A\n0x8EA1E4CF\t0x6968\n0x8EA1E4D0\t0x696B\n0x8EA1E4D1\t0x695E\n0x8EA1E4D2\t0x6953\n0x8EA1E4D3\t0x6979\n0x8EA1E4D4\t0x6986\n0x8EA1E4D5\t0x695D\n0x8EA1E4D6\t0x6963\n0x8EA1E4D7\t0x695B\n0x8EA1E4D8\t0x6B47\n0x8EA1E4D9\t0x6B72\n0x8EA1E4DA\t0x6BC0\n0x8EA1E4DB\t0x6BBF\n0x8EA1E4DC\t0x6BD3\n0x8EA1E4DD\t0x6BFD\n0x8EA1E4DE\t0x6EA2\n0x8EA1E4DF\t0x6EAF\n0x8EA1E4E0\t0x6ED3\n0x8EA1E4E1\t0x6EB6\n0x8EA1E4E2\t0x6EC2\n0x8EA1E4E3\t0x6E90\n0x8EA1E4E4\t0x6E9D\n0x8EA1E4E5\t0x6EC7\n0x8EA1E4E6\t0x6EC5\n0x8EA1E4E7\t0x6EA5\n0x8EA1E4E8\t0x6E98\n0x8EA1E4E9\t0x6EBC\n0x8EA1E4EA\t0x6EBA\n0x8EA1E4EB\t0x6EAB\n0x8EA1E4EC\t0x6ED1\n0x8EA1E4ED\t0x6E96\n0x8EA1E4EE\t0x6E9C\n0x8EA1E4EF\t0x6EC4\n0x8EA1E4F0\t0x6ED4\n0x8EA1E4F1\t0x6EAA\n0x8EA1E4F2\t0x6EA7\n0x8EA1E4F3\t0x6EB4\n0x8EA1E4F4\t0x714E\n0x8EA1E4F5\t0x7159\n0x8EA1E4F6\t0x7169\n0x8EA1E4F7\t0x7164\n0x8EA1E4F8\t0x7149\n0x8EA1E4F9\t0x7167\n0x8EA1E4FA\t0x715C\n0x8EA1E4FB\t0x716C\n0x8EA1E4FC\t0x7166\n0x8EA1E4FD\t0x714C\n0x8EA1E4FE\t0x7165\n0x8EA1E5A1\t0x715E\n0x8EA1E5A2\t0x7146\n0x8EA1E5A3\t0x7168\n0x8EA1E5A4\t0x7156\n0x8EA1E5A5\t0x723A\n0x8EA1E5A6\t0x7252\n0x8EA1E5A7\t0x7337\n0x8EA1E5A8\t0x7345\n0x8EA1E5A9\t0x733F\n0x8EA1E5AA\t0x733E\n0x8EA1E5AB\t0x746F\n0x8EA1E5AC\t0x745A\n0x8EA1E5AD\t0x7455\n0x8EA1E5AE\t0x745F\n0x8EA1E5AF\t0x745E\n0x8EA1E5B0\t0x7441\n0x8EA1E5B1\t0x743F\n0x8EA1E5B2\t0x7459\n0x8EA1E5B3\t0x745B\n0x8EA1E5B4\t0x745C\n0x8EA1E5B5\t0x7576\n0x8EA1E5B6\t0x7578\n0x8EA1E5B7\t0x7600\n0x8EA1E5B8\t0x75F0\n0x8EA1E5B9\t0x7601\n0x8EA1E5BA\t0x75F2\n0x8EA1E5BB\t0x75F1\n0x8EA1E5BC\t0x75FA\n0x8EA1E5BD\t0x75FF\n0x8EA1E5BE\t0x75F4\n0x8EA1E5BF\t0x75F3\n0x8EA1E5C0\t0x76DE\n0x8EA1E5C1\t0x76DF\n0x8EA1E5C2\t0x775B\n0x8EA1E5C3\t0x776B\n0x8EA1E5C4\t0x7766\n0x8EA1E5C5\t0x775E\n0x8EA1E5C6\t0x7763\n0x8EA1E5C7\t0x7779\n0x8EA1E5C8\t0x776A\n0x8EA1E5C9\t0x776C\n0x8EA1E5CA\t0x775C\n0x8EA1E5CB\t0x7765\n0x8EA1E5CC\t0x7768\n0x8EA1E5CD\t0x7762\n0x8EA1E5CE\t0x77EE\n0x8EA1E5CF\t0x788E\n0x8EA1E5D0\t0x78B0\n0x8EA1E5D1\t0x7897\n0x8EA1E5D2\t0x7898\n0x8EA1E5D3\t0x788C\n0x8EA1E5D4\t0x7889\n0x8EA1E5D5\t0x787C\n0x8EA1E5D6\t0x7891\n0x8EA1E5D7\t0x7893\n0x8EA1E5D8\t0x787F\n0x8EA1E5D9\t0x797A\n0x8EA1E5DA\t0x797F\n0x8EA1E5DB\t0x7981\n0x8EA1E5DC\t0x842C\n0x8EA1E5DD\t0x79BD\n0x8EA1E5DE\t0x7A1C\n0x8EA1E5DF\t0x7A1A\n0x8EA1E5E0\t0x7A20\n0x8EA1E5E1\t0x7A14\n0x8EA1E5E2\t0x7A1F\n0x8EA1E5E3\t0x7A1E\n0x8EA1E5E4\t0x7A9F\n0x8EA1E5E5\t0x7AA0\n0x8EA1E5E6\t0x7B77\n0x8EA1E5E7\t0x7BC0\n0x8EA1E5E8\t0x7B60\n0x8EA1E5E9\t0x7B6E\n0x8EA1E5EA\t0x7B67\n0x8EA1E5EB\t0x7CB1\n0x8EA1E5EC\t0x7CB3\n0x8EA1E5ED\t0x7CB5\n0x8EA1E5EE\t0x7D93\n0x8EA1E5EF\t0x7D79\n0x8EA1E5F0\t0x7D91\n0x8EA1E5F1\t0x7D81\n0x8EA1E5F2\t0x7D8F\n0x8EA1E5F3\t0x7D5B\n0x8EA1E5F4\t0x7F6E\n0x8EA1E5F5\t0x7F69\n0x8EA1E5F6\t0x7F6A\n0x8EA1E5F7\t0x7F72\n0x8EA1E5F8\t0x7FA9\n0x8EA1E5F9\t0x7FA8\n0x8EA1E5FA\t0x7FA4\n0x8EA1E5FB\t0x8056\n0x8EA1E5FC\t0x8058\n0x8EA1E5FD\t0x8086\n0x8EA1E5FE\t0x8084\n0x8EA1E6A1\t0x8171\n0x8EA1E6A2\t0x8170\n0x8EA1E6A3\t0x8178\n0x8EA1E6A4\t0x8165\n0x8EA1E6A5\t0x816E\n0x8EA1E6A6\t0x8173\n0x8EA1E6A7\t0x816B\n0x8EA1E6A8\t0x8179\n0x8EA1E6A9\t0x817A\n0x8EA1E6AA\t0x8166\n0x8EA1E6AB\t0x8205\n0x8EA1E6AC\t0x8247\n0x8EA1E6AD\t0x8482\n0x8EA1E6AE\t0x8477\n0x8EA1E6AF\t0x843D\n0x8EA1E6B0\t0x8431\n0x8EA1E6B1\t0x8475\n0x8EA1E6B2\t0x8466\n0x8EA1E6B3\t0x846B\n0x8EA1E6B4\t0x8449\n0x8EA1E6B5\t0x846C\n0x8EA1E6B6\t0x845B\n0x8EA1E6B7\t0x843C\n0x8EA1E6B8\t0x8435\n0x8EA1E6B9\t0x8461\n0x8EA1E6BA\t0x8463\n0x8EA1E6BB\t0x8469\n0x8EA1E6BC\t0x846D\n0x8EA1E6BD\t0x8446\n0x8EA1E6BE\t0x865E\n0x8EA1E6BF\t0x865C\n0x8EA1E6C0\t0x865F\n0x8EA1E6C1\t0x86F9\n0x8EA1E6C2\t0x8713\n0x8EA1E6C3\t0x8708\n0x8EA1E6C4\t0x8707\n0x8EA1E6C5\t0x8700\n0x8EA1E6C6\t0x86FE\n0x8EA1E6C7\t0x86FB\n0x8EA1E6C8\t0x8702\n0x8EA1E6C9\t0x8703\n0x8EA1E6CA\t0x8706\n0x8EA1E6CB\t0x870A\n0x8EA1E6CC\t0x8859\n0x8EA1E6CD\t0x88DF\n0x8EA1E6CE\t0x88D4\n0x8EA1E6CF\t0x88D9\n0x8EA1E6D0\t0x88DC\n0x8EA1E6D1\t0x88D8\n0x8EA1E6D2\t0x88DD\n0x8EA1E6D3\t0x88E1\n0x8EA1E6D4\t0x88CA\n0x8EA1E6D5\t0x88D5\n0x8EA1E6D6\t0x88D2\n0x8EA1E6D7\t0x899C\n0x8EA1E6D8\t0x89E3\n0x8EA1E6D9\t0x8A6B\n0x8EA1E6DA\t0x8A72\n0x8EA1E6DB\t0x8A73\n0x8EA1E6DC\t0x8A66\n0x8EA1E6DD\t0x8A69\n0x8EA1E6DE\t0x8A70\n0x8EA1E6DF\t0x8A87\n0x8EA1E6E0\t0x8A7C\n0x8EA1E6E1\t0x8A63\n0x8EA1E6E2\t0x8AA0\n0x8EA1E6E3\t0x8A71\n0x8EA1E6E4\t0x8A85\n0x8EA1E6E5\t0x8A6D\n0x8EA1E6E6\t0x8A62\n0x8EA1E6E7\t0x8A6E\n0x8EA1E6E8\t0x8A6C\n0x8EA1E6E9\t0x8A79\n0x8EA1E6EA\t0x8A7B\n0x8EA1E6EB\t0x8A3E\n0x8EA1E6EC\t0x8A68\n0x8EA1E6ED\t0x8C62\n0x8EA1E6EE\t0x8C8A\n0x8EA1E6EF\t0x8C89\n0x8EA1E6F0\t0x8CCA\n0x8EA1E6F1\t0x8CC7\n0x8EA1E6F2\t0x8CC8\n0x8EA1E6F3\t0x8CC4\n0x8EA1E6F4\t0x8CB2\n0x8EA1E6F5\t0x8CC3\n0x8EA1E6F6\t0x8CC2\n0x8EA1E6F7\t0x8CC5\n0x8EA1E6F8\t0x8DE1\n0x8EA1E6F9\t0x8DDF\n0x8EA1E6FA\t0x8DE8\n0x8EA1E6FB\t0x8DEF\n0x8EA1E6FC\t0x8DF3\n0x8EA1E6FD\t0x8DFA\n0x8EA1E6FE\t0x8DEA\n0x8EA1E7A1\t0x8DE4\n0x8EA1E7A2\t0x8DE6\n0x8EA1E7A3\t0x8EB2\n0x8EA1E7A4\t0x8F03\n0x8EA1E7A5\t0x8F09\n0x8EA1E7A6\t0x8EFE\n0x8EA1E7A7\t0x8F0A\n0x8EA1E7A8\t0x8F9F\n0x8EA1E7A9\t0x8FB2\n0x8EA1E7AA\t0x904B\n0x8EA1E7AB\t0x904A\n0x8EA1E7AC\t0x9053\n0x8EA1E7AD\t0x9042\n0x8EA1E7AE\t0x9054\n0x8EA1E7AF\t0x903C\n0x8EA1E7B0\t0x9055\n0x8EA1E7B1\t0x9050\n0x8EA1E7B2\t0x9047\n0x8EA1E7B3\t0x904F\n0x8EA1E7B4\t0x904E\n0x8EA1E7B5\t0x904D\n0x8EA1E7B6\t0x9051\n0x8EA1E7B7\t0x903E\n0x8EA1E7B8\t0x9041\n0x8EA1E7B9\t0x9112\n0x8EA1E7BA\t0x9117\n0x8EA1E7BB\t0x916C\n0x8EA1E7BC\t0x916A\n0x8EA1E7BD\t0x9169\n0x8EA1E7BE\t0x91C9\n0x8EA1E7BF\t0x9237\n0x8EA1E7C0\t0x9257\n0x8EA1E7C1\t0x9238\n0x8EA1E7C2\t0x923D\n0x8EA1E7C3\t0x9240\n0x8EA1E7C4\t0x923E\n0x8EA1E7C5\t0x925B\n0x8EA1E7C6\t0x924B\n0x8EA1E7C7\t0x9264\n0x8EA1E7C8\t0x9251\n0x8EA1E7C9\t0x9234\n0x8EA1E7CA\t0x9249\n0x8EA1E7CB\t0x924D\n0x8EA1E7CC\t0x9245\n0x8EA1E7CD\t0x9239\n0x8EA1E7CE\t0x923F\n0x8EA1E7CF\t0x925A\n0x8EA1E7D0\t0x9598\n0x8EA1E7D1\t0x9698\n0x8EA1E7D2\t0x9694\n0x8EA1E7D3\t0x9695\n0x8EA1E7D4\t0x96CD\n0x8EA1E7D5\t0x96CB\n0x8EA1E7D6\t0x96C9\n0x8EA1E7D7\t0x96CA\n0x8EA1E7D8\t0x96F7\n0x8EA1E7D9\t0x96FB\n0x8EA1E7DA\t0x96F9\n0x8EA1E7DB\t0x96F6\n0x8EA1E7DC\t0x9756\n0x8EA1E7DD\t0x9774\n0x8EA1E7DE\t0x9776\n0x8EA1E7DF\t0x9810\n0x8EA1E7E0\t0x9811\n0x8EA1E7E1\t0x9813\n0x8EA1E7E2\t0x980A\n0x8EA1E7E3\t0x9812\n0x8EA1E7E4\t0x980C\n0x8EA1E7E5\t0x98FC\n0x8EA1E7E6\t0x98F4\n0x8EA1E7E7\t0x98FD\n0x8EA1E7E8\t0x98FE\n0x8EA1E7E9\t0x99B3\n0x8EA1E7EA\t0x99B1\n0x8EA1E7EB\t0x99B4\n0x8EA1E7EC\t0x9AE1\n0x8EA1E7ED\t0x9CE9\n0x8EA1E7EE\t0x9E82\n0x8EA1E7EF\t0x9F0E\n0x8EA1E7F0\t0x9F13\n0x8EA1E7F1\t0x9F20\n0x8EA1E7F2\t0x50E7\n0x8EA1E7F3\t0x50EE\n0x8EA1E7F4\t0x50E5\n0x8EA1E7F5\t0x50D6\n0x8EA1E7F6\t0x50ED\n0x8EA1E7F7\t0x50DA\n0x8EA1E7F8\t0x50D5\n0x8EA1E7F9\t0x50CF\n0x8EA1E7FA\t0x50D1\n0x8EA1E7FB\t0x50F1\n0x8EA1E7FC\t0x50CE\n0x8EA1E7FD\t0x50E9\n0x8EA1E7FE\t0x5162\n0x8EA1E8A1\t0x51F3\n0x8EA1E8A2\t0x5283\n0x8EA1E8A3\t0x5282\n0x8EA1E8A4\t0x5331\n0x8EA1E8A5\t0x53AD\n0x8EA1E8A6\t0x55FE\n0x8EA1E8A7\t0x5600\n0x8EA1E8A8\t0x561B\n0x8EA1E8A9\t0x5617\n0x8EA1E8AA\t0x55FD\n0x8EA1E8AB\t0x5614\n0x8EA1E8AC\t0x5606\n0x8EA1E8AD\t0x5609\n0x8EA1E8AE\t0x560D\n0x8EA1E8AF\t0x560E\n0x8EA1E8B0\t0x55F7\n0x8EA1E8B1\t0x5616\n0x8EA1E8B2\t0x561F\n0x8EA1E8B3\t0x5608\n0x8EA1E8B4\t0x5610\n0x8EA1E8B5\t0x55F6\n0x8EA1E8B6\t0x5718\n0x8EA1E8B7\t0x5716\n0x8EA1E8B8\t0x5875\n0x8EA1E8B9\t0x587E\n0x8EA1E8BA\t0x5883\n0x8EA1E8BB\t0x5893\n0x8EA1E8BC\t0x588A\n0x8EA1E8BD\t0x5879\n0x8EA1E8BE\t0x5885\n0x8EA1E8BF\t0x587D\n0x8EA1E8C0\t0x58FD\n0x8EA1E8C1\t0x5925\n0x8EA1E8C2\t0x5922\n0x8EA1E8C3\t0x5924\n0x8EA1E8C4\t0x596A\n0x8EA1E8C5\t0x5969\n0x8EA1E8C6\t0x5AE1\n0x8EA1E8C7\t0x5AE6\n0x8EA1E8C8\t0x5AE9\n0x8EA1E8C9\t0x5AD7\n0x8EA1E8CA\t0x5AD6\n0x8EA1E8CB\t0x5AD8\n0x8EA1E8CC\t0x5AE3\n0x8EA1E8CD\t0x5B75\n0x8EA1E8CE\t0x5BDE\n0x8EA1E8CF\t0x5BE7\n0x8EA1E8D0\t0x5BE1\n0x8EA1E8D1\t0x5BE5\n0x8EA1E8D2\t0x5BE6\n0x8EA1E8D3\t0x5BE8\n0x8EA1E8D4\t0x5BE2\n0x8EA1E8D5\t0x5BE4\n0x8EA1E8D6\t0x5BDF\n0x8EA1E8D7\t0x5C0D\n0x8EA1E8D8\t0x5C62\n0x8EA1E8D9\t0x5D84\n0x8EA1E8DA\t0x5D87\n0x8EA1E8DB\t0x5E5B\n0x8EA1E8DC\t0x5E63\n0x8EA1E8DD\t0x5E55\n0x8EA1E8DE\t0x5E57\n0x8EA1E8DF\t0x5E54\n0x8EA1E8E0\t0x5ED3\n0x8EA1E8E1\t0x5ED6\n0x8EA1E8E2\t0x5F0A\n0x8EA1E8E3\t0x5F46\n0x8EA1E8E4\t0x5F70\n0x8EA1E8E5\t0x5FB9\n0x8EA1E8E6\t0x6147\n0x8EA1E8E7\t0x613F\n0x8EA1E8E8\t0x614B\n0x8EA1E8E9\t0x6177\n0x8EA1E8EA\t0x6162\n0x8EA1E8EB\t0x6163\n0x8EA1E8EC\t0x615F\n0x8EA1E8ED\t0x615A\n0x8EA1E8EE\t0x6158\n0x8EA1E8EF\t0x6175\n0x8EA1E8F0\t0x622A\n0x8EA1E8F1\t0x6487\n0x8EA1E8F2\t0x6458\n0x8EA1E8F3\t0x6454\n0x8EA1E8F4\t0x64A4\n0x8EA1E8F5\t0x6478\n0x8EA1E8F6\t0x645F\n0x8EA1E8F7\t0x647A\n0x8EA1E8F8\t0x6451\n0x8EA1E8F9\t0x6467\n0x8EA1E8FA\t0x6434\n0x8EA1E8FB\t0x646D\n0x8EA1E8FC\t0x647B\n0x8EA1E8FD\t0x6572\n0x8EA1E8FE\t0x65A1\n0x8EA1E9A1\t0x65D7\n0x8EA1E9A2\t0x65D6\n0x8EA1E9A3\t0x66A2\n0x8EA1E9A4\t0x66A8\n0x8EA1E9A5\t0x669D\n0x8EA1E9A6\t0x699C\n0x8EA1E9A7\t0x69A8\n0x8EA1E9A8\t0x6995\n0x8EA1E9A9\t0x69C1\n0x8EA1E9AA\t0x69AE\n0x8EA1E9AB\t0x69D3\n0x8EA1E9AC\t0x69CB\n0x8EA1E9AD\t0x699B\n0x8EA1E9AE\t0x69B7\n0x8EA1E9AF\t0x69BB\n0x8EA1E9B0\t0x69AB\n0x8EA1E9B1\t0x69B4\n0x8EA1E9B2\t0x69D0\n0x8EA1E9B3\t0x69CD\n0x8EA1E9B4\t0x69AD\n0x8EA1E9B5\t0x69CC\n0x8EA1E9B6\t0x69A6\n0x8EA1E9B7\t0x69C3\n0x8EA1E9B8\t0x69A3\n0x8EA1E9B9\t0x6B49\n0x8EA1E9BA\t0x6B4C\n0x8EA1E9BB\t0x6C33\n0x8EA1E9BC\t0x6F33\n0x8EA1E9BD\t0x6F14\n0x8EA1E9BE\t0x6EFE\n0x8EA1E9BF\t0x6F13\n0x8EA1E9C0\t0x6EF4\n0x8EA1E9C1\t0x6F29\n0x8EA1E9C2\t0x6F3E\n0x8EA1E9C3\t0x6F20\n0x8EA1E9C4\t0x6F2C\n0x8EA1E9C5\t0x6F0F\n0x8EA1E9C6\t0x6F02\n0x8EA1E9C7\t0x6F22\n0x8EA1E9C8\t0x6EFF\n0x8EA1E9C9\t0x6EEF\n0x8EA1E9CA\t0x6F06\n0x8EA1E9CB\t0x6F31\n0x8EA1E9CC\t0x6F38\n0x8EA1E9CD\t0x6F32\n0x8EA1E9CE\t0x6F23\n0x8EA1E9CF\t0x6F15\n0x8EA1E9D0\t0x6F2B\n0x8EA1E9D1\t0x6F2F\n0x8EA1E9D2\t0x6F88\n0x8EA1E9D3\t0x6F2A\n0x8EA1E9D4\t0x6EEC\n0x8EA1E9D5\t0x6F01\n0x8EA1E9D6\t0x6EF2\n0x8EA1E9D7\t0x6ECC\n0x8EA1E9D8\t0x6EF7\n0x8EA1E9D9\t0x7194\n0x8EA1E9DA\t0x7199\n0x8EA1E9DB\t0x717D\n0x8EA1E9DC\t0x718A\n0x8EA1E9DD\t0x7184\n0x8EA1E9DE\t0x7192\n0x8EA1E9DF\t0x723E\n0x8EA1E9E0\t0x7292\n0x8EA1E9E1\t0x7296\n0x8EA1E9E2\t0x7344\n0x8EA1E9E3\t0x7350\n0x8EA1E9E4\t0x7464\n0x8EA1E9E5\t0x7463\n0x8EA1E9E6\t0x746A\n0x8EA1E9E7\t0x7470\n0x8EA1E9E8\t0x746D\n0x8EA1E9E9\t0x7504\n0x8EA1E9EA\t0x7591\n0x8EA1E9EB\t0x7627\n0x8EA1E9EC\t0x760D\n0x8EA1E9ED\t0x760B\n0x8EA1E9EE\t0x7609\n0x8EA1E9EF\t0x7613\n0x8EA1E9F0\t0x76E1\n0x8EA1E9F1\t0x76E3\n0x8EA1E9F2\t0x7784\n0x8EA1E9F3\t0x777D\n0x8EA1E9F4\t0x777F\n0x8EA1E9F5\t0x7761\n0x8EA1E9F6\t0x78C1\n0x8EA1E9F7\t0x789F\n0x8EA1E9F8\t0x78A7\n0x8EA1E9F9\t0x78B3\n0x8EA1E9FA\t0x78A9\n0x8EA1E9FB\t0x78A3\n0x8EA1E9FC\t0x798E\n0x8EA1E9FD\t0x798F\n0x8EA1E9FE\t0x798D\n0x8EA1EAA1\t0x7A2E\n0x8EA1EAA2\t0x7A31\n0x8EA1EAA3\t0x7AAA\n0x8EA1EAA4\t0x7AA9\n0x8EA1EAA5\t0x7AED\n0x8EA1EAA6\t0x7AEF\n0x8EA1EAA7\t0x7BA1\n0x8EA1EAA8\t0x7B95\n0x8EA1EAA9\t0x7B8B\n0x8EA1EAAA\t0x7B75\n0x8EA1EAAB\t0x7B97\n0x8EA1EAAC\t0x7B9D\n0x8EA1EAAD\t0x7B94\n0x8EA1EAAE\t0x7B8F\n0x8EA1EAAF\t0x7BB8\n0x8EA1EAB0\t0x7B87\n0x8EA1EAB1\t0x7B84\n0x8EA1EAB2\t0x7CB9\n0x8EA1EAB3\t0x7CBD\n0x8EA1EAB4\t0x7CBE\n0x8EA1EAB5\t0x7DBB\n0x8EA1EAB6\t0x7DB0\n0x8EA1EAB7\t0x7D9C\n0x8EA1EAB8\t0x7DBD\n0x8EA1EAB9\t0x7DBE\n0x8EA1EABA\t0x7DA0\n0x8EA1EABB\t0x7DCA\n0x8EA1EABC\t0x7DB4\n0x8EA1EABD\t0x7DB2\n0x8EA1EABE\t0x7DB1\n0x8EA1EABF\t0x7DBA\n0x8EA1EAC0\t0x7DA2\n0x8EA1EAC1\t0x7DBF\n0x8EA1EAC2\t0x7DB5\n0x8EA1EAC3\t0x7DB8\n0x8EA1EAC4\t0x7DAD\n0x8EA1EAC5\t0x7DD2\n0x8EA1EAC6\t0x7DC7\n0x8EA1EAC7\t0x7DAC\n0x8EA1EAC8\t0x7F70\n0x8EA1EAC9\t0x7FE0\n0x8EA1EACA\t0x7FE1\n0x8EA1EACB\t0x7FDF\n0x8EA1EACC\t0x805E\n0x8EA1EACD\t0x805A\n0x8EA1EACE\t0x8087\n0x8EA1EACF\t0x8150\n0x8EA1EAD0\t0x8180\n0x8EA1EAD1\t0x818F\n0x8EA1EAD2\t0x8188\n0x8EA1EAD3\t0x818A\n0x8EA1EAD4\t0x817F\n0x8EA1EAD5\t0x8182\n0x8EA1EAD6\t0x81E7\n0x8EA1EAD7\t0x81FA\n0x8EA1EAD8\t0x8207\n0x8EA1EAD9\t0x8214\n0x8EA1EADA\t0x821E\n0x8EA1EADB\t0x824B\n0x8EA1EADC\t0x84C9\n0x8EA1EADD\t0x84BF\n0x8EA1EADE\t0x84C6\n0x8EA1EADF\t0x84C4\n0x8EA1EAE0\t0x8499\n0x8EA1EAE1\t0x849E\n0x8EA1EAE2\t0x84B2\n0x8EA1EAE3\t0x849C\n0x8EA1EAE4\t0x84CB\n0x8EA1EAE5\t0x84B8\n0x8EA1EAE6\t0x84C0\n0x8EA1EAE7\t0x84D3\n0x8EA1EAE8\t0x8490\n0x8EA1EAE9\t0x84BC\n0x8EA1EAEA\t0x84D1\n0x8EA1EAEB\t0x84CA\n0x8EA1EAEC\t0x873F\n0x8EA1EAED\t0x871C\n0x8EA1EAEE\t0x873B\n0x8EA1EAEF\t0x8722\n0x8EA1EAF0\t0x8725\n0x8EA1EAF1\t0x8734\n0x8EA1EAF2\t0x8718\n0x8EA1EAF3\t0x8755\n0x8EA1EAF4\t0x8737\n0x8EA1EAF5\t0x8729\n0x8EA1EAF6\t0x88F3\n0x8EA1EAF7\t0x8902\n0x8EA1EAF8\t0x88F4\n0x8EA1EAF9\t0x88F9\n0x8EA1EAFA\t0x88F8\n0x8EA1EAFB\t0x88FD\n0x8EA1EAFC\t0x88E8\n0x8EA1EAFD\t0x891A\n0x8EA1EAFE\t0x88EF\n0x8EA1EBA1\t0x8AA6\n0x8EA1EBA2\t0x8A8C\n0x8EA1EBA3\t0x8A9E\n0x8EA1EBA4\t0x8AA3\n0x8EA1EBA5\t0x8A8D\n0x8EA1EBA6\t0x8AA1\n0x8EA1EBA7\t0x8A93\n0x8EA1EBA8\t0x8AA4\n0x8EA1EBA9\t0x8AAA\n0x8EA1EBAA\t0x8AA5\n0x8EA1EBAB\t0x8AA8\n0x8EA1EBAC\t0x8A98\n0x8EA1EBAD\t0x8A91\n0x8EA1EBAE\t0x8A9A\n0x8EA1EBAF\t0x8AA7\n0x8EA1EBB0\t0x8C6A\n0x8EA1EBB1\t0x8C8D\n0x8EA1EBB2\t0x8C8C\n0x8EA1EBB3\t0x8CD3\n0x8EA1EBB4\t0x8CD1\n0x8EA1EBB5\t0x8CD2\n0x8EA1EBB6\t0x8D6B\n0x8EA1EBB7\t0x8D99\n0x8EA1EBB8\t0x8D95\n0x8EA1EBB9\t0x8DFC\n0x8EA1EBBA\t0x8F14\n0x8EA1EBBB\t0x8F12\n0x8EA1EBBC\t0x8F15\n0x8EA1EBBD\t0x8F13\n0x8EA1EBBE\t0x8FA3\n0x8EA1EBBF\t0x9060\n0x8EA1EBC0\t0x9058\n0x8EA1EBC1\t0x905C\n0x8EA1EBC2\t0x9063\n0x8EA1EBC3\t0x9059\n0x8EA1EBC4\t0x905E\n0x8EA1EBC5\t0x9062\n0x8EA1EBC6\t0x905D\n0x8EA1EBC7\t0x905B\n0x8EA1EBC8\t0x9119\n0x8EA1EBC9\t0x9118\n0x8EA1EBCA\t0x911E\n0x8EA1EBCB\t0x9175\n0x8EA1EBCC\t0x9178\n0x8EA1EBCD\t0x9177\n0x8EA1EBCE\t0x9174\n0x8EA1EBCF\t0x9278\n0x8EA1EBD0\t0x92AC\n0x8EA1EBD1\t0x9280\n0x8EA1EBD2\t0x9285\n0x8EA1EBD3\t0x9298\n0x8EA1EBD4\t0x9296\n0x8EA1EBD5\t0x927B\n0x8EA1EBD6\t0x9293\n0x8EA1EBD7\t0x929C\n0x8EA1EBD8\t0x92A8\n0x8EA1EBD9\t0x927C\n0x8EA1EBDA\t0x9291\n0x8EA1EBDB\t0x95A1\n0x8EA1EBDC\t0x95A8\n0x8EA1EBDD\t0x95A9\n0x8EA1EBDE\t0x95A3\n0x8EA1EBDF\t0x95A5\n0x8EA1EBE0\t0x95A4\n0x8EA1EBE1\t0x9699\n0x8EA1EBE2\t0x969C\n0x8EA1EBE3\t0x969B\n0x8EA1EBE4\t0x96CC\n0x8EA1EBE5\t0x96D2\n0x8EA1EBE6\t0x9700\n0x8EA1EBE7\t0x977C\n0x8EA1EBE8\t0x9785\n0x8EA1EBE9\t0x97F6\n0x8EA1EBEA\t0x9817\n0x8EA1EBEB\t0x9818\n0x8EA1EBEC\t0x98AF\n0x8EA1EBED\t0x98B1\n0x8EA1EBEE\t0x9903\n0x8EA1EBEF\t0x9905\n0x8EA1EBF0\t0x990C\n0x8EA1EBF1\t0x9909\n0x8EA1EBF2\t0x99C1\n0x8EA1EBF3\t0x9AAF\n0x8EA1EBF4\t0x9AB0\n0x8EA1EBF5\t0x9AE6\n0x8EA1EBF6\t0x9B41\n0x8EA1EBF7\t0x9B42\n0x8EA1EBF8\t0x9CF4\n0x8EA1EBF9\t0x9CF6\n0x8EA1EBFA\t0x9CF3\n0x8EA1EBFB\t0x9EBC\n0x8EA1EBFC\t0x9F3B\n0x8EA1EBFD\t0x9F4A\n0x8EA1EBFE\t0x5104\n0x8EA1ECA1\t0x5100\n0x8EA1ECA2\t0x50FB\n0x8EA1ECA3\t0x50F5\n0x8EA1ECA4\t0x50F9\n0x8EA1ECA5\t0x5102\n0x8EA1ECA6\t0x5108\n0x8EA1ECA7\t0x5109\n0x8EA1ECA8\t0x5105\n0x8EA1ECA9\t0x51DC\n0x8EA1ECAA\t0x5287\n0x8EA1ECAB\t0x5288\n0x8EA1ECAC\t0x5289\n0x8EA1ECAD\t0x528D\n0x8EA1ECAE\t0x528A\n0x8EA1ECAF\t0x52F0\n0x8EA1ECB0\t0x53B2\n0x8EA1ECB1\t0x562E\n0x8EA1ECB2\t0x563B\n0x8EA1ECB3\t0x5639\n0x8EA1ECB4\t0x5632\n0x8EA1ECB5\t0x563F\n0x8EA1ECB6\t0x5634\n0x8EA1ECB7\t0x5629\n0x8EA1ECB8\t0x5653\n0x8EA1ECB9\t0x564E\n0x8EA1ECBA\t0x5657\n0x8EA1ECBB\t0x5674\n0x8EA1ECBC\t0x5636\n0x8EA1ECBD\t0x562F\n0x8EA1ECBE\t0x5630\n0x8EA1ECBF\t0x5880\n0x8EA1ECC0\t0x589F\n0x8EA1ECC1\t0x589E\n0x8EA1ECC2\t0x58B3\n0x8EA1ECC3\t0x589C\n0x8EA1ECC4\t0x58AE\n0x8EA1ECC5\t0x58A9\n0x8EA1ECC6\t0x58A6\n0x8EA1ECC7\t0x596D\n0x8EA1ECC8\t0x5B09\n0x8EA1ECC9\t0x5AFB\n0x8EA1ECCA\t0x5B0B\n0x8EA1ECCB\t0x5AF5\n0x8EA1ECCC\t0x5B0C\n0x8EA1ECCD\t0x5B08\n0x8EA1ECCE\t0x5BEE\n0x8EA1ECCF\t0x5BEC\n0x8EA1ECD0\t0x5BE9\n0x8EA1ECD1\t0x5BEB\n0x8EA1ECD2\t0x5C64\n0x8EA1ECD3\t0x5C65\n0x8EA1ECD4\t0x5D9D\n0x8EA1ECD5\t0x5D94\n0x8EA1ECD6\t0x5E62\n0x8EA1ECD7\t0x5E5F\n0x8EA1ECD8\t0x5E61\n0x8EA1ECD9\t0x5EE2\n0x8EA1ECDA\t0x5EDA\n0x8EA1ECDB\t0x5EDF\n0x8EA1ECDC\t0x5EDD\n0x8EA1ECDD\t0x5EE3\n0x8EA1ECDE\t0x5EE0\n0x8EA1ECDF\t0x5F48\n0x8EA1ECE0\t0x5F71\n0x8EA1ECE1\t0x5FB7\n0x8EA1ECE2\t0x5FB5\n0x8EA1ECE3\t0x6176\n0x8EA1ECE4\t0x6167\n0x8EA1ECE5\t0x616E\n0x8EA1ECE6\t0x615D\n0x8EA1ECE7\t0x6155\n0x8EA1ECE8\t0x6182\n0x8EA1ECE9\t0x617C\n0x8EA1ECEA\t0x6170\n0x8EA1ECEB\t0x616B\n0x8EA1ECEC\t0x617E\n0x8EA1ECED\t0x61A7\n0x8EA1ECEE\t0x6190\n0x8EA1ECEF\t0x61AB\n0x8EA1ECF0\t0x618E\n0x8EA1ECF1\t0x61AC\n0x8EA1ECF2\t0x619A\n0x8EA1ECF3\t0x61A4\n0x8EA1ECF4\t0x6194\n0x8EA1ECF5\t0x61AE\n0x8EA1ECF6\t0x622E\n0x8EA1ECF7\t0x6469\n0x8EA1ECF8\t0x646F\n0x8EA1ECF9\t0x6479\n0x8EA1ECFA\t0x649E\n0x8EA1ECFB\t0x64B2\n0x8EA1ECFC\t0x6488\n0x8EA1ECFD\t0x6490\n0x8EA1ECFE\t0x64B0\n0x8EA1EDA1\t0x64A5\n0x8EA1EDA2\t0x6493\n0x8EA1EDA3\t0x6495\n0x8EA1EDA4\t0x64A9\n0x8EA1EDA5\t0x6492\n0x8EA1EDA6\t0x64AE\n0x8EA1EDA7\t0x64AD\n0x8EA1EDA8\t0x64AB\n0x8EA1EDA9\t0x649A\n0x8EA1EDAA\t0x64AC\n0x8EA1EDAB\t0x6499\n0x8EA1EDAC\t0x64A2\n0x8EA1EDAD\t0x64B3\n0x8EA1EDAE\t0x6575\n0x8EA1EDAF\t0x6577\n0x8EA1EDB0\t0x6578\n0x8EA1EDB1\t0x66AE\n0x8EA1EDB2\t0x66AB\n0x8EA1EDB3\t0x66B4\n0x8EA1EDB4\t0x66B1\n0x8EA1EDB5\t0x6A23\n0x8EA1EDB6\t0x6A1F\n0x8EA1EDB7\t0x69E8\n0x8EA1EDB8\t0x6A01\n0x8EA1EDB9\t0x6A1E\n0x8EA1EDBA\t0x6A19\n0x8EA1EDBB\t0x69FD\n0x8EA1EDBC\t0x6A21\n0x8EA1EDBD\t0x6A13\n0x8EA1EDBE\t0x6A0A\n0x8EA1EDBF\t0x69F3\n0x8EA1EDC0\t0x6A02\n0x8EA1EDC1\t0x6A05\n0x8EA1EDC2\t0x69ED\n0x8EA1EDC3\t0x6A11\n0x8EA1EDC4\t0x6B50\n0x8EA1EDC5\t0x6B4E\n0x8EA1EDC6\t0x6BA4\n0x8EA1EDC7\t0x6BC5\n0x8EA1EDC8\t0x6BC6\n0x8EA1EDC9\t0x6F3F\n0x8EA1EDCA\t0x6F7C\n0x8EA1EDCB\t0x6F84\n0x8EA1EDCC\t0x6F51\n0x8EA1EDCD\t0x6F66\n0x8EA1EDCE\t0x6F54\n0x8EA1EDCF\t0x6F86\n0x8EA1EDD0\t0x6F6D\n0x8EA1EDD1\t0x6F5B\n0x8EA1EDD2\t0x6F78\n0x8EA1EDD3\t0x6F6E\n0x8EA1EDD4\t0x6F8E\n0x8EA1EDD5\t0x6F7A\n0x8EA1EDD6\t0x6F70\n0x8EA1EDD7\t0x6F64\n0x8EA1EDD8\t0x6F97\n0x8EA1EDD9\t0x6F58\n0x8EA1EDDA\t0x6ED5\n0x8EA1EDDB\t0x6F6F\n0x8EA1EDDC\t0x6F60\n0x8EA1EDDD\t0x6F5F\n0x8EA1EDDE\t0x719F\n0x8EA1EDDF\t0x71AC\n0x8EA1EDE0\t0x71B1\n0x8EA1EDE1\t0x71A8\n0x8EA1EDE2\t0x7256\n0x8EA1EDE3\t0x729B\n0x8EA1EDE4\t0x734E\n0x8EA1EDE5\t0x7357\n0x8EA1EDE6\t0x7469\n0x8EA1EDE7\t0x748B\n0x8EA1EDE8\t0x7483\n0x8EA1EDE9\t0x747E\n0x8EA1EDEA\t0x7480\n0x8EA1EDEB\t0x757F\n0x8EA1EDEC\t0x7620\n0x8EA1EDED\t0x7629\n0x8EA1EDEE\t0x761F\n0x8EA1EDEF\t0x7624\n0x8EA1EDF0\t0x7626\n0x8EA1EDF1\t0x7621\n0x8EA1EDF2\t0x7622\n0x8EA1EDF3\t0x769A\n0x8EA1EDF4\t0x76BA\n0x8EA1EDF5\t0x76E4\n0x8EA1EDF6\t0x778E\n0x8EA1EDF7\t0x7787\n0x8EA1EDF8\t0x778C\n0x8EA1EDF9\t0x7791\n0x8EA1EDFA\t0x778B\n0x8EA1EDFB\t0x78CB\n0x8EA1EDFC\t0x78C5\n0x8EA1EDFD\t0x78BA\n0x8EA1EDFE\t0x78CA\n0x8EA1EEA1\t0x78BE\n0x8EA1EEA2\t0x78D5\n0x8EA1EEA3\t0x78BC\n0x8EA1EEA4\t0x78D0\n0x8EA1EEA5\t0x7A3F\n0x8EA1EEA6\t0x7A3C\n0x8EA1EEA7\t0x7A40\n0x8EA1EEA8\t0x7A3D\n0x8EA1EEA9\t0x7A37\n0x8EA1EEAA\t0x7A3B\n0x8EA1EEAB\t0x7AAF\n0x8EA1EEAC\t0x7AAE\n0x8EA1EEAD\t0x7BAD\n0x8EA1EEAE\t0x7BB1\n0x8EA1EEAF\t0x7BC4\n0x8EA1EEB0\t0x7BB4\n0x8EA1EEB1\t0x7BC6\n0x8EA1EEB2\t0x7BC7\n0x8EA1EEB3\t0x7BC1\n0x8EA1EEB4\t0x7BA0\n0x8EA1EEB5\t0x7BCC\n0x8EA1EEB6\t0x7CCA\n0x8EA1EEB7\t0x7DE0\n0x8EA1EEB8\t0x7DF4\n0x8EA1EEB9\t0x7DEF\n0x8EA1EEBA\t0x7DFB\n0x8EA1EEBB\t0x7DD8\n0x8EA1EEBC\t0x7DEC\n0x8EA1EEBD\t0x7DDD\n0x8EA1EEBE\t0x7DE8\n0x8EA1EEBF\t0x7DE3\n0x8EA1EEC0\t0x7DDA\n0x8EA1EEC1\t0x7DDE\n0x8EA1EEC2\t0x7DE9\n0x8EA1EEC3\t0x7D9E\n0x8EA1EEC4\t0x7DD9\n0x8EA1EEC5\t0x7DF2\n0x8EA1EEC6\t0x7DF9\n0x8EA1EEC7\t0x7F75\n0x8EA1EEC8\t0x7F77\n0x8EA1EEC9\t0x7FAF\n0x8EA1EECA\t0x7FE9\n0x8EA1EECB\t0x8026\n0x8EA1EECC\t0x819B\n0x8EA1EECD\t0x819C\n0x8EA1EECE\t0x819D\n0x8EA1EECF\t0x81A0\n0x8EA1EED0\t0x819A\n0x8EA1EED1\t0x8198\n0x8EA1EED2\t0x8517\n0x8EA1EED3\t0x853D\n0x8EA1EED4\t0x851A\n0x8EA1EED5\t0x84EE\n0x8EA1EED6\t0x852C\n0x8EA1EED7\t0x852D\n0x8EA1EED8\t0x8513\n0x8EA1EED9\t0x8511\n0x8EA1EEDA\t0x8523\n0x8EA1EEDB\t0x8521\n0x8EA1EEDC\t0x8514\n0x8EA1EEDD\t0x84EC\n0x8EA1EEDE\t0x8525\n0x8EA1EEDF\t0x84FF\n0x8EA1EEE0\t0x8506\n0x8EA1EEE1\t0x8782\n0x8EA1EEE2\t0x8774\n0x8EA1EEE3\t0x8776\n0x8EA1EEE4\t0x8760\n0x8EA1EEE5\t0x8766\n0x8EA1EEE6\t0x8778\n0x8EA1EEE7\t0x8768\n0x8EA1EEE8\t0x8759\n0x8EA1EEE9\t0x8757\n0x8EA1EEEA\t0x874C\n0x8EA1EEEB\t0x8753\n0x8EA1EEEC\t0x885B\n0x8EA1EEED\t0x885D\n0x8EA1EEEE\t0x8910\n0x8EA1EEEF\t0x8907\n0x8EA1EEF0\t0x8912\n0x8EA1EEF1\t0x8913\n0x8EA1EEF2\t0x8915\n0x8EA1EEF3\t0x890A\n0x8EA1EEF4\t0x8ABC\n0x8EA1EEF5\t0x8AD2\n0x8EA1EEF6\t0x8AC7\n0x8EA1EEF7\t0x8AC4\n0x8EA1EEF8\t0x8A95\n0x8EA1EEF9\t0x8ACB\n0x8EA1EEFA\t0x8AF8\n0x8EA1EEFB\t0x8AB2\n0x8EA1EEFC\t0x8AC9\n0x8EA1EEFD\t0x8AC2\n0x8EA1EEFE\t0x8ABF\n0x8EA1EFA1\t0x8AB0\n0x8EA1EFA2\t0x8AD6\n0x8EA1EFA3\t0x8ACD\n0x8EA1EFA4\t0x8AB6\n0x8EA1EFA5\t0x8AB9\n0x8EA1EFA6\t0x8ADB\n0x8EA1EFA7\t0x8C4C\n0x8EA1EFA8\t0x8C4E\n0x8EA1EFA9\t0x8C6C\n0x8EA1EFAA\t0x8CE0\n0x8EA1EFAB\t0x8CDE\n0x8EA1EFAC\t0x8CE6\n0x8EA1EFAD\t0x8CE4\n0x8EA1EFAE\t0x8CEC\n0x8EA1EFAF\t0x8CED\n0x8EA1EFB0\t0x8CE2\n0x8EA1EFB1\t0x8CE3\n0x8EA1EFB2\t0x8CDC\n0x8EA1EFB3\t0x8CEA\n0x8EA1EFB4\t0x8CE1\n0x8EA1EFB5\t0x8D6D\n0x8EA1EFB6\t0x8D9F\n0x8EA1EFB7\t0x8DA3\n0x8EA1EFB8\t0x8E2B\n0x8EA1EFB9\t0x8E10\n0x8EA1EFBA\t0x8E1D\n0x8EA1EFBB\t0x8E22\n0x8EA1EFBC\t0x8E0F\n0x8EA1EFBD\t0x8E29\n0x8EA1EFBE\t0x8E1F\n0x8EA1EFBF\t0x8E21\n0x8EA1EFC0\t0x8E1E\n0x8EA1EFC1\t0x8EBA\n0x8EA1EFC2\t0x8F1D\n0x8EA1EFC3\t0x8F1B\n0x8EA1EFC4\t0x8F1F\n0x8EA1EFC5\t0x8F29\n0x8EA1EFC6\t0x8F26\n0x8EA1EFC7\t0x8F2A\n0x8EA1EFC8\t0x8F1C\n0x8EA1EFC9\t0x8F1E\n0x8EA1EFCA\t0x8F25\n0x8EA1EFCB\t0x9069\n0x8EA1EFCC\t0x906E\n0x8EA1EFCD\t0x9068\n0x8EA1EFCE\t0x906D\n0x8EA1EFCF\t0x9077\n0x8EA1EFD0\t0x9130\n0x8EA1EFD1\t0x912D\n0x8EA1EFD2\t0x9127\n0x8EA1EFD3\t0x9131\n0x8EA1EFD4\t0x9187\n0x8EA1EFD5\t0x9189\n0x8EA1EFD6\t0x918B\n0x8EA1EFD7\t0x9183\n0x8EA1EFD8\t0x92C5\n0x8EA1EFD9\t0x92BB\n0x8EA1EFDA\t0x92B7\n0x8EA1EFDB\t0x92EA\n0x8EA1EFDC\t0x92E4\n0x8EA1EFDD\t0x92C1\n0x8EA1EFDE\t0x92B3\n0x8EA1EFDF\t0x92BC\n0x8EA1EFE0\t0x92D2\n0x8EA1EFE1\t0x92C7\n0x8EA1EFE2\t0x92F0\n0x8EA1EFE3\t0x92B2\n0x8EA1EFE4\t0x95AD\n0x8EA1EFE5\t0x95B1\n0x8EA1EFE6\t0x9704\n0x8EA1EFE7\t0x9706\n0x8EA1EFE8\t0x9707\n0x8EA1EFE9\t0x9709\n0x8EA1EFEA\t0x9760\n0x8EA1EFEB\t0x978D\n0x8EA1EFEC\t0x978B\n0x8EA1EFED\t0x978F\n0x8EA1EFEE\t0x9821\n0x8EA1EFEF\t0x982B\n0x8EA1EFF0\t0x981C\n0x8EA1EFF1\t0x98B3\n0x8EA1EFF2\t0x990A\n0x8EA1EFF3\t0x9913\n0x8EA1EFF4\t0x9912\n0x8EA1EFF5\t0x9918\n0x8EA1EFF6\t0x99DD\n0x8EA1EFF7\t0x99D0\n0x8EA1EFF8\t0x99DF\n0x8EA1EFF9\t0x99DB\n0x8EA1EFFA\t0x99D1\n0x8EA1EFFB\t0x99D5\n0x8EA1EFFC\t0x99D2\n0x8EA1EFFD\t0x99D9\n0x8EA1EFFE\t0x9AB7\n0x8EA1F0A1\t0x9AEE\n0x8EA1F0A2\t0x9AEF\n0x8EA1F0A3\t0x9B27\n0x8EA1F0A4\t0x9B45\n0x8EA1F0A5\t0x9B44\n0x8EA1F0A6\t0x9B77\n0x8EA1F0A7\t0x9B6F\n0x8EA1F0A8\t0x9D06\n0x8EA1F0A9\t0x9D09\n0x8EA1F0AA\t0x9D03\n0x8EA1F0AB\t0x9EA9\n0x8EA1F0AC\t0x9EBE\n0x8EA1F0AD\t0x9ECE\n0x8EA1F0AE\t0x58A8\n0x8EA1F0AF\t0x9F52\n0x8EA1F0B0\t0x5112\n0x8EA1F0B1\t0x5118\n0x8EA1F0B2\t0x5114\n0x8EA1F0B3\t0x5110\n0x8EA1F0B4\t0x5115\n0x8EA1F0B5\t0x5180\n0x8EA1F0B6\t0x51AA\n0x8EA1F0B7\t0x51DD\n0x8EA1F0B8\t0x5291\n0x8EA1F0B9\t0x5293\n0x8EA1F0BA\t0x52F3\n0x8EA1F0BB\t0x5659\n0x8EA1F0BC\t0x566B\n0x8EA1F0BD\t0x5679\n0x8EA1F0BE\t0x5669\n0x8EA1F0BF\t0x5664\n0x8EA1F0C0\t0x5678\n0x8EA1F0C1\t0x566A\n0x8EA1F0C2\t0x5668\n0x8EA1F0C3\t0x5665\n0x8EA1F0C4\t0x5671\n0x8EA1F0C5\t0x566F\n0x8EA1F0C6\t0x566C\n0x8EA1F0C7\t0x5662\n0x8EA1F0C8\t0x5676\n0x8EA1F0C9\t0x58C1\n0x8EA1F0CA\t0x58BE\n0x8EA1F0CB\t0x58C7\n0x8EA1F0CC\t0x58C5\n0x8EA1F0CD\t0x596E\n0x8EA1F0CE\t0x5B1D\n0x8EA1F0CF\t0x5B34\n0x8EA1F0D0\t0x5B78\n0x8EA1F0D1\t0x5BF0\n0x8EA1F0D2\t0x5C0E\n0x8EA1F0D3\t0x5F4A\n0x8EA1F0D4\t0x61B2\n0x8EA1F0D5\t0x6191\n0x8EA1F0D6\t0x61A9\n0x8EA1F0D7\t0x618A\n0x8EA1F0D8\t0x61CD\n0x8EA1F0D9\t0x61B6\n0x8EA1F0DA\t0x61BE\n0x8EA1F0DB\t0x61CA\n0x8EA1F0DC\t0x61C8\n0x8EA1F0DD\t0x6230\n0x8EA1F0DE\t0x64C5\n0x8EA1F0DF\t0x64C1\n0x8EA1F0E0\t0x64CB\n0x8EA1F0E1\t0x64BB\n0x8EA1F0E2\t0x64BC\n0x8EA1F0E3\t0x64DA\n0x8EA1F0E4\t0x64C4\n0x8EA1F0E5\t0x64C7\n0x8EA1F0E6\t0x64C2\n0x8EA1F0E7\t0x64CD\n0x8EA1F0E8\t0x64BF\n0x8EA1F0E9\t0x64D2\n0x8EA1F0EA\t0x64D4\n0x8EA1F0EB\t0x64BE\n0x8EA1F0EC\t0x6574\n0x8EA1F0ED\t0x66C6\n0x8EA1F0EE\t0x66C9\n0x8EA1F0EF\t0x66B9\n0x8EA1F0F0\t0x66C4\n0x8EA1F0F1\t0x66C7\n0x8EA1F0F2\t0x66B8\n0x8EA1F0F3\t0x6A3D\n0x8EA1F0F4\t0x6A38\n0x8EA1F0F5\t0x6A3A\n0x8EA1F0F6\t0x6A59\n0x8EA1F0F7\t0x6A6B\n0x8EA1F0F8\t0x6A58\n0x8EA1F0F9\t0x6A39\n0x8EA1F0FA\t0x6A44\n0x8EA1F0FB\t0x6A62\n0x8EA1F0FC\t0x6A61\n0x8EA1F0FD\t0x6A4B\n0x8EA1F0FE\t0x6A47\n0x8EA1F1A1\t0x6A35\n0x8EA1F1A2\t0x6A5F\n0x8EA1F1A3\t0x6A48\n0x8EA1F1A4\t0x6B59\n0x8EA1F1A5\t0x6B77\n0x8EA1F1A6\t0x6C05\n0x8EA1F1A7\t0x6FC2\n0x8EA1F1A8\t0x6FB1\n0x8EA1F1A9\t0x6FA1\n0x8EA1F1AA\t0x6FC3\n0x8EA1F1AB\t0x6FA4\n0x8EA1F1AC\t0x6FC1\n0x8EA1F1AD\t0x6FA7\n0x8EA1F1AE\t0x6FB3\n0x8EA1F1AF\t0x6FC0\n0x8EA1F1B0\t0x6FB9\n0x8EA1F1B1\t0x6FB6\n0x8EA1F1B2\t0x6FA6\n0x8EA1F1B3\t0x6FA0\n0x8EA1F1B4\t0x6FB4\n0x8EA1F1B5\t0x71BE\n0x8EA1F1B6\t0x71C9\n0x8EA1F1B7\t0x71D0\n0x8EA1F1B8\t0x71D2\n0x8EA1F1B9\t0x71C8\n0x8EA1F1BA\t0x71D5\n0x8EA1F1BB\t0x71B9\n0x8EA1F1BC\t0x71CE\n0x8EA1F1BD\t0x71D9\n0x8EA1F1BE\t0x71DC\n0x8EA1F1BF\t0x71C3\n0x8EA1F1C0\t0x71C4\n0x8EA1F1C1\t0x7368\n0x8EA1F1C2\t0x749C\n0x8EA1F1C3\t0x74A3\n0x8EA1F1C4\t0x7498\n0x8EA1F1C5\t0x749F\n0x8EA1F1C6\t0x749E\n0x8EA1F1C7\t0x74E2\n0x8EA1F1C8\t0x750C\n0x8EA1F1C9\t0x750D\n0x8EA1F1CA\t0x7634\n0x8EA1F1CB\t0x7638\n0x8EA1F1CC\t0x763A\n0x8EA1F1CD\t0x76E7\n0x8EA1F1CE\t0x76E5\n0x8EA1F1CF\t0x77A0\n0x8EA1F1D0\t0x779E\n0x8EA1F1D1\t0x779F\n0x8EA1F1D2\t0x77A5\n0x8EA1F1D3\t0x78E8\n0x8EA1F1D4\t0x78DA\n0x8EA1F1D5\t0x78EC\n0x8EA1F1D6\t0x78E7\n0x8EA1F1D7\t0x79A6\n0x8EA1F1D8\t0x7A4D\n0x8EA1F1D9\t0x7A4E\n0x8EA1F1DA\t0x7A46\n0x8EA1F1DB\t0x7A4C\n0x8EA1F1DC\t0x7A4B\n0x8EA1F1DD\t0x7ABA\n0x8EA1F1DE\t0x7BD9\n0x8EA1F1DF\t0x7C11\n0x8EA1F1E0\t0x7BC9\n0x8EA1F1E1\t0x7BE4\n0x8EA1F1E2\t0x7BDB\n0x8EA1F1E3\t0x7BE1\n0x8EA1F1E4\t0x7BE9\n0x8EA1F1E5\t0x7BE6\n0x8EA1F1E6\t0x7CD5\n0x8EA1F1E7\t0x7CD6\n0x8EA1F1E8\t0x7E0A\n0x8EA1F1E9\t0x7E11\n0x8EA1F1EA\t0x7E08\n0x8EA1F1EB\t0x7E1B\n0x8EA1F1EC\t0x7E23\n0x8EA1F1ED\t0x7E1E\n0x8EA1F1EE\t0x7E1D\n0x8EA1F1EF\t0x7E09\n0x8EA1F1F0\t0x7E10\n0x8EA1F1F1\t0x7F79\n0x8EA1F1F2\t0x7FB2\n0x8EA1F1F3\t0x7FF0\n0x8EA1F1F4\t0x7FF1\n0x8EA1F1F5\t0x7FEE\n0x8EA1F1F6\t0x8028\n0x8EA1F1F7\t0x81B3\n0x8EA1F1F8\t0x81A9\n0x8EA1F1F9\t0x81A8\n0x8EA1F1FA\t0x81FB\n0x8EA1F1FB\t0x8208\n0x8EA1F1FC\t0x8258\n0x8EA1F1FD\t0x8259\n0x8EA1F1FE\t0x854A\n0x8EA1F2A1\t0x8559\n0x8EA1F2A2\t0x8548\n0x8EA1F2A3\t0x8568\n0x8EA1F2A4\t0x8569\n0x8EA1F2A5\t0x8543\n0x8EA1F2A6\t0x8549\n0x8EA1F2A7\t0x856D\n0x8EA1F2A8\t0x856A\n0x8EA1F2A9\t0x855E\n0x8EA1F2AA\t0x8783\n0x8EA1F2AB\t0x879F\n0x8EA1F2AC\t0x879E\n0x8EA1F2AD\t0x87A2\n0x8EA1F2AE\t0x878D\n0x8EA1F2AF\t0x8861\n0x8EA1F2B0\t0x892A\n0x8EA1F2B1\t0x8932\n0x8EA1F2B2\t0x8925\n0x8EA1F2B3\t0x892B\n0x8EA1F2B4\t0x8921\n0x8EA1F2B5\t0x89AA\n0x8EA1F2B6\t0x89A6\n0x8EA1F2B7\t0x8AE6\n0x8EA1F2B8\t0x8AFA\n0x8EA1F2B9\t0x8AEB\n0x8EA1F2BA\t0x8AF1\n0x8EA1F2BB\t0x8B00\n0x8EA1F2BC\t0x8ADC\n0x8EA1F2BD\t0x8AE7\n0x8EA1F2BE\t0x8AEE\n0x8EA1F2BF\t0x8AFE\n0x8EA1F2C0\t0x8B01\n0x8EA1F2C1\t0x8B02\n0x8EA1F2C2\t0x8AF7\n0x8EA1F2C3\t0x8AED\n0x8EA1F2C4\t0x8AF3\n0x8EA1F2C5\t0x8AF6\n0x8EA1F2C6\t0x8AFC\n0x8EA1F2C7\t0x8C6B\n0x8EA1F2C8\t0x8C6D\n0x8EA1F2C9\t0x8C93\n0x8EA1F2CA\t0x8CF4\n0x8EA1F2CB\t0x8E44\n0x8EA1F2CC\t0x8E31\n0x8EA1F2CD\t0x8E34\n0x8EA1F2CE\t0x8E42\n0x8EA1F2CF\t0x8E39\n0x8EA1F2D0\t0x8E35\n0x8EA1F2D1\t0x8F3B\n0x8EA1F2D2\t0x8F2F\n0x8EA1F2D3\t0x8F38\n0x8EA1F2D4\t0x8F33\n0x8EA1F2D5\t0x8FA8\n0x8EA1F2D6\t0x8FA6\n0x8EA1F2D7\t0x9075\n0x8EA1F2D8\t0x9074\n0x8EA1F2D9\t0x9078\n0x8EA1F2DA\t0x9072\n0x8EA1F2DB\t0x907C\n0x8EA1F2DC\t0x907A\n0x8EA1F2DD\t0x9134\n0x8EA1F2DE\t0x9192\n0x8EA1F2DF\t0x9320\n0x8EA1F2E0\t0x9336\n0x8EA1F2E1\t0x92F8\n0x8EA1F2E2\t0x9333\n0x8EA1F2E3\t0x932F\n0x8EA1F2E4\t0x9322\n0x8EA1F2E5\t0x92FC\n0x8EA1F2E6\t0x932B\n0x8EA1F2E7\t0x9304\n0x8EA1F2E8\t0x931A\n0x8EA1F2E9\t0x9310\n0x8EA1F2EA\t0x9326\n0x8EA1F2EB\t0x9321\n0x8EA1F2EC\t0x9315\n0x8EA1F2ED\t0x932E\n0x8EA1F2EE\t0x9319\n0x8EA1F2EF\t0x95BB\n0x8EA1F2F0\t0x96A7\n0x8EA1F2F1\t0x96A8\n0x8EA1F2F2\t0x96AA\n0x8EA1F2F3\t0x96D5\n0x8EA1F2F4\t0x970E\n0x8EA1F2F5\t0x9711\n0x8EA1F2F6\t0x9716\n0x8EA1F2F7\t0x970D\n0x8EA1F2F8\t0x9713\n0x8EA1F2F9\t0x970F\n0x8EA1F2FA\t0x975B\n0x8EA1F2FB\t0x975C\n0x8EA1F2FC\t0x9766\n0x8EA1F2FD\t0x9798\n0x8EA1F2FE\t0x9830\n0x8EA1F3A1\t0x9838\n0x8EA1F3A2\t0x983B\n0x8EA1F3A3\t0x9837\n0x8EA1F3A4\t0x982D\n0x8EA1F3A5\t0x9839\n0x8EA1F3A6\t0x9824\n0x8EA1F3A7\t0x9910\n0x8EA1F3A8\t0x9928\n0x8EA1F3A9\t0x991E\n0x8EA1F3AA\t0x991B\n0x8EA1F3AB\t0x9921\n0x8EA1F3AC\t0x991A\n0x8EA1F3AD\t0x99ED\n0x8EA1F3AE\t0x99E2\n0x8EA1F3AF\t0x99F1\n0x8EA1F3B0\t0x9AB8\n0x8EA1F3B1\t0x9ABC\n0x8EA1F3B2\t0x9AFB\n0x8EA1F3B3\t0x9AED\n0x8EA1F3B4\t0x9B28\n0x8EA1F3B5\t0x9B91\n0x8EA1F3B6\t0x9D15\n0x8EA1F3B7\t0x9D23\n0x8EA1F3B8\t0x9D26\n0x8EA1F3B9\t0x9D28\n0x8EA1F3BA\t0x9D12\n0x8EA1F3BB\t0x9D1B\n0x8EA1F3BC\t0x9ED8\n0x8EA1F3BD\t0x9ED4\n0x8EA1F3BE\t0x9F8D\n0x8EA1F3BF\t0x9F9C\n0x8EA1F3C0\t0x512A\n0x8EA1F3C1\t0x511F\n0x8EA1F3C2\t0x5121\n0x8EA1F3C3\t0x5132\n0x8EA1F3C4\t0x52F5\n0x8EA1F3C5\t0x568E\n0x8EA1F3C6\t0x5680\n0x8EA1F3C7\t0x5690\n0x8EA1F3C8\t0x5685\n0x8EA1F3C9\t0x5687\n0x8EA1F3CA\t0x568F\n0x8EA1F3CB\t0x58D5\n0x8EA1F3CC\t0x58D3\n0x8EA1F3CD\t0x58D1\n0x8EA1F3CE\t0x58CE\n0x8EA1F3CF\t0x5B30\n0x8EA1F3D0\t0x5B2A\n0x8EA1F3D1\t0x5B24\n0x8EA1F3D2\t0x5B7A\n0x8EA1F3D3\t0x5C37\n0x8EA1F3D4\t0x5C68\n0x8EA1F3D5\t0x5DBC\n0x8EA1F3D6\t0x5DBA\n0x8EA1F3D7\t0x5DBD\n0x8EA1F3D8\t0x5DB8\n0x8EA1F3D9\t0x5E6B\n0x8EA1F3DA\t0x5F4C\n0x8EA1F3DB\t0x5FBD\n0x8EA1F3DC\t0x61C9\n0x8EA1F3DD\t0x61C2\n0x8EA1F3DE\t0x61C7\n0x8EA1F3DF\t0x61E6\n0x8EA1F3E0\t0x61CB\n0x8EA1F3E1\t0x6232\n0x8EA1F3E2\t0x6234\n0x8EA1F3E3\t0x64CE\n0x8EA1F3E4\t0x64CA\n0x8EA1F3E5\t0x64D8\n0x8EA1F3E6\t0x64E0\n0x8EA1F3E7\t0x64F0\n0x8EA1F3E8\t0x64E6\n0x8EA1F3E9\t0x64EC\n0x8EA1F3EA\t0x64F1\n0x8EA1F3EB\t0x64E2\n0x8EA1F3EC\t0x64ED\n0x8EA1F3ED\t0x6582\n0x8EA1F3EE\t0x6583\n0x8EA1F3EF\t0x66D9\n0x8EA1F3F0\t0x66D6\n0x8EA1F3F1\t0x6A80\n0x8EA1F3F2\t0x6A94\n0x8EA1F3F3\t0x6A84\n0x8EA1F3F4\t0x6AA2\n0x8EA1F3F5\t0x6A9C\n0x8EA1F3F6\t0x6ADB\n0x8EA1F3F7\t0x6AA3\n0x8EA1F3F8\t0x6A7E\n0x8EA1F3F9\t0x6A97\n0x8EA1F3FA\t0x6A90\n0x8EA1F3FB\t0x6AA0\n0x8EA1F3FC\t0x6B5C\n0x8EA1F3FD\t0x6BAE\n0x8EA1F3FE\t0x6BDA\n0x8EA1F4A1\t0x6C08\n0x8EA1F4A2\t0x6FD8\n0x8EA1F4A3\t0x6FF1\n0x8EA1F4A4\t0x6FDF\n0x8EA1F4A5\t0x6FE0\n0x8EA1F4A6\t0x6FDB\n0x8EA1F4A7\t0x6FE4\n0x8EA1F4A8\t0x6FEB\n0x8EA1F4A9\t0x6FEF\n0x8EA1F4AA\t0x6F80\n0x8EA1F4AB\t0x6FEC\n0x8EA1F4AC\t0x6FE1\n0x8EA1F4AD\t0x6FE9\n0x8EA1F4AE\t0x6FD5\n0x8EA1F4AF\t0x6FEE\n0x8EA1F4B0\t0x6FF0\n0x8EA1F4B1\t0x71E7\n0x8EA1F4B2\t0x71DF\n0x8EA1F4B3\t0x71EE\n0x8EA1F4B4\t0x71E6\n0x8EA1F4B5\t0x71E5\n0x8EA1F4B6\t0x71ED\n0x8EA1F4B7\t0x71EC\n0x8EA1F4B8\t0x71F4\n0x8EA1F4B9\t0x71E0\n0x8EA1F4BA\t0x7235\n0x8EA1F4BB\t0x7246\n0x8EA1F4BC\t0x7370\n0x8EA1F4BD\t0x7372\n0x8EA1F4BE\t0x74A9\n0x8EA1F4BF\t0x74B0\n0x8EA1F4C0\t0x74A6\n0x8EA1F4C1\t0x74A8\n0x8EA1F4C2\t0x7646\n0x8EA1F4C3\t0x7642\n0x8EA1F4C4\t0x764C\n0x8EA1F4C5\t0x76EA\n0x8EA1F4C6\t0x77B3\n0x8EA1F4C7\t0x77AA\n0x8EA1F4C8\t0x77B0\n0x8EA1F4C9\t0x77AC\n0x8EA1F4CA\t0x77A7\n0x8EA1F4CB\t0x77AD\n0x8EA1F4CC\t0x77EF\n0x8EA1F4CD\t0x78F7\n0x8EA1F4CE\t0x78FA\n0x8EA1F4CF\t0x78F4\n0x8EA1F4D0\t0x78EF\n0x8EA1F4D1\t0x7901\n0x8EA1F4D2\t0x79A7\n0x8EA1F4D3\t0x79AA\n0x8EA1F4D4\t0x7A57\n0x8EA1F4D5\t0x7ABF\n0x8EA1F4D6\t0x7C07\n0x8EA1F4D7\t0x7C0D\n0x8EA1F4D8\t0x7BFE\n0x8EA1F4D9\t0x7BF7\n0x8EA1F4DA\t0x7C0C\n0x8EA1F4DB\t0x7BE0\n0x8EA1F4DC\t0x7CE0\n0x8EA1F4DD\t0x7CDC\n0x8EA1F4DE\t0x7CDE\n0x8EA1F4DF\t0x7CE2\n0x8EA1F4E0\t0x7CDF\n0x8EA1F4E1\t0x7CD9\n0x8EA1F4E2\t0x7CDD\n0x8EA1F4E3\t0x7E2E\n0x8EA1F4E4\t0x7E3E\n0x8EA1F4E5\t0x7E46\n0x8EA1F4E6\t0x7E37\n0x8EA1F4E7\t0x7E32\n0x8EA1F4E8\t0x7E43\n0x8EA1F4E9\t0x7E2B\n0x8EA1F4EA\t0x7E3D\n0x8EA1F4EB\t0x7E31\n0x8EA1F4EC\t0x7E45\n0x8EA1F4ED\t0x7E41\n0x8EA1F4EE\t0x7E34\n0x8EA1F4EF\t0x7E39\n0x8EA1F4F0\t0x7E48\n0x8EA1F4F1\t0x7E35\n0x8EA1F4F2\t0x7E3F\n0x8EA1F4F3\t0x7E2F\n0x8EA1F4F4\t0x7F44\n0x8EA1F4F5\t0x7FF3\n0x8EA1F4F6\t0x7FFC\n0x8EA1F4F7\t0x8071\n0x8EA1F4F8\t0x8072\n0x8EA1F4F9\t0x8070\n0x8EA1F4FA\t0x806F\n0x8EA1F4FB\t0x8073\n0x8EA1F4FC\t0x81C6\n0x8EA1F4FD\t0x81C3\n0x8EA1F4FE\t0x81BA\n0x8EA1F5A1\t0x81C2\n0x8EA1F5A2\t0x81C0\n0x8EA1F5A3\t0x81BF\n0x8EA1F5A4\t0x81BD\n0x8EA1F5A5\t0x81C9\n0x8EA1F5A6\t0x81BE\n0x8EA1F5A7\t0x81E8\n0x8EA1F5A8\t0x8209\n0x8EA1F5A9\t0x8271\n0x8EA1F5AA\t0x85AA\n0x8EA1F5AB\t0x8584\n0x8EA1F5AC\t0x857E\n0x8EA1F5AD\t0x859C\n0x8EA1F5AE\t0x8591\n0x8EA1F5AF\t0x8594\n0x8EA1F5B0\t0x85AF\n0x8EA1F5B1\t0x859B\n0x8EA1F5B2\t0x8587\n0x8EA1F5B3\t0x85A8\n0x8EA1F5B4\t0x858A\n0x8EA1F5B5\t0x85A6\n0x8EA1F5B6\t0x8667\n0x8EA1F5B7\t0x87C0\n0x8EA1F5B8\t0x87D1\n0x8EA1F5B9\t0x87B3\n0x8EA1F5BA\t0x87D2\n0x8EA1F5BB\t0x87C6\n0x8EA1F5BC\t0x87AB\n0x8EA1F5BD\t0x87BB\n0x8EA1F5BE\t0x87BA\n0x8EA1F5BF\t0x87C8\n0x8EA1F5C0\t0x87CB\n0x8EA1F5C1\t0x893B\n0x8EA1F5C2\t0x8936\n0x8EA1F5C3\t0x8944\n0x8EA1F5C4\t0x8938\n0x8EA1F5C5\t0x893D\n0x8EA1F5C6\t0x89AC\n0x8EA1F5C7\t0x8B0E\n0x8EA1F5C8\t0x8B17\n0x8EA1F5C9\t0x8B19\n0x8EA1F5CA\t0x8B1B\n0x8EA1F5CB\t0x8B0A\n0x8EA1F5CC\t0x8B20\n0x8EA1F5CD\t0x8B1D\n0x8EA1F5CE\t0x8B04\n0x8EA1F5CF\t0x8B10\n0x8EA1F5D0\t0x8C41\n0x8EA1F5D1\t0x8C3F\n0x8EA1F5D2\t0x8C73\n0x8EA1F5D3\t0x8CFA\n0x8EA1F5D4\t0x8CFD\n0x8EA1F5D5\t0x8CFC\n0x8EA1F5D6\t0x8CF8\n0x8EA1F5D7\t0x8CFB\n0x8EA1F5D8\t0x8DA8\n0x8EA1F5D9\t0x8E49\n0x8EA1F5DA\t0x8E4B\n0x8EA1F5DB\t0x8E48\n0x8EA1F5DC\t0x8E4A\n0x8EA1F5DD\t0x8F44\n0x8EA1F5DE\t0x8F3E\n0x8EA1F5DF\t0x8F42\n0x8EA1F5E0\t0x8F45\n0x8EA1F5E1\t0x8F3F\n0x8EA1F5E2\t0x907F\n0x8EA1F5E3\t0x907D\n0x8EA1F5E4\t0x9084\n0x8EA1F5E5\t0x9081\n0x8EA1F5E6\t0x9082\n0x8EA1F5E7\t0x9080\n0x8EA1F5E8\t0x9139\n0x8EA1F5E9\t0x91A3\n0x8EA1F5EA\t0x919E\n0x8EA1F5EB\t0x919C\n0x8EA1F5EC\t0x934D\n0x8EA1F5ED\t0x9382\n0x8EA1F5EE\t0x9328\n0x8EA1F5EF\t0x9375\n0x8EA1F5F0\t0x934A\n0x8EA1F5F1\t0x9365\n0x8EA1F5F2\t0x934B\n0x8EA1F5F3\t0x9318\n0x8EA1F5F4\t0x937E\n0x8EA1F5F5\t0x936C\n0x8EA1F5F6\t0x935B\n0x8EA1F5F7\t0x9370\n0x8EA1F5F8\t0x935A\n0x8EA1F5F9\t0x9354\n0x8EA1F5FA\t0x95CA\n0x8EA1F5FB\t0x95CB\n0x8EA1F5FC\t0x95CC\n0x8EA1F5FD\t0x95C8\n0x8EA1F5FE\t0x95C6\n0x8EA1F6A1\t0x96B1\n0x8EA1F6A2\t0x96B8\n0x8EA1F6A3\t0x96D6\n0x8EA1F6A4\t0x971C\n0x8EA1F6A5\t0x971E\n0x8EA1F6A6\t0x97A0\n0x8EA1F6A7\t0x97D3\n0x8EA1F6A8\t0x9846\n0x8EA1F6A9\t0x98B6\n0x8EA1F6AA\t0x9935\n0x8EA1F6AB\t0x9A01\n0x8EA1F6AC\t0x99FF\n0x8EA1F6AD\t0x9BAE\n0x8EA1F6AE\t0x9BAB\n0x8EA1F6AF\t0x9BAA\n0x8EA1F6B0\t0x9BAD\n0x8EA1F6B1\t0x9D3B\n0x8EA1F6B2\t0x9D3F\n0x8EA1F6B3\t0x9E8B\n0x8EA1F6B4\t0x9ECF\n0x8EA1F6B5\t0x9EDE\n0x8EA1F6B6\t0x9EDC\n0x8EA1F6B7\t0x9EDD\n0x8EA1F6B8\t0x9EDB\n0x8EA1F6B9\t0x9F3E\n0x8EA1F6BA\t0x9F4B\n0x8EA1F6BB\t0x53E2\n0x8EA1F6BC\t0x5695\n0x8EA1F6BD\t0x56AE\n0x8EA1F6BE\t0x58D9\n0x8EA1F6BF\t0x58D8\n0x8EA1F6C0\t0x5B38\n0x8EA1F6C1\t0x5F5E\n0x8EA1F6C2\t0x61E3\n0x8EA1F6C3\t0x6233\n0x8EA1F6C4\t0x64F4\n0x8EA1F6C5\t0x64F2\n0x8EA1F6C6\t0x64FE\n0x8EA1F6C7\t0x6506\n0x8EA1F6C8\t0x64FA\n0x8EA1F6C9\t0x64FB\n0x8EA1F6CA\t0x64F7\n0x8EA1F6CB\t0x65B7\n0x8EA1F6CC\t0x66DC\n0x8EA1F6CD\t0x6726\n0x8EA1F6CE\t0x6AB3\n0x8EA1F6CF\t0x6AAC\n0x8EA1F6D0\t0x6AC3\n0x8EA1F6D1\t0x6ABB\n0x8EA1F6D2\t0x6AB8\n0x8EA1F6D3\t0x6AC2\n0x8EA1F6D4\t0x6AAE\n0x8EA1F6D5\t0x6AAF\n0x8EA1F6D6\t0x6B5F\n0x8EA1F6D7\t0x6B78\n0x8EA1F6D8\t0x6BAF\n0x8EA1F6D9\t0x7009\n0x8EA1F6DA\t0x700B\n0x8EA1F6DB\t0x6FFE\n0x8EA1F6DC\t0x7006\n0x8EA1F6DD\t0x6FFA\n0x8EA1F6DE\t0x7011\n0x8EA1F6DF\t0x700F\n0x8EA1F6E0\t0x71FB\n0x8EA1F6E1\t0x71FC\n0x8EA1F6E2\t0x71FE\n0x8EA1F6E3\t0x71F8\n0x8EA1F6E4\t0x7377\n0x8EA1F6E5\t0x7375\n0x8EA1F6E6\t0x74A7\n0x8EA1F6E7\t0x74BF\n0x8EA1F6E8\t0x7515\n0x8EA1F6E9\t0x7656\n0x8EA1F6EA\t0x7658\n0x8EA1F6EB\t0x7652\n0x8EA1F6EC\t0x77BD\n0x8EA1F6ED\t0x77BF\n0x8EA1F6EE\t0x77BB\n0x8EA1F6EF\t0x77BC\n0x8EA1F6F0\t0x790E\n0x8EA1F6F1\t0x79AE\n0x8EA1F6F2\t0x7A61\n0x8EA1F6F3\t0x7A62\n0x8EA1F6F4\t0x7A60\n0x8EA1F6F5\t0x7AC4\n0x8EA1F6F6\t0x7AC5\n0x8EA1F6F7\t0x7C2B\n0x8EA1F6F8\t0x7C27\n0x8EA1F6F9\t0x7C2A\n0x8EA1F6FA\t0x7C1E\n0x8EA1F6FB\t0x7C23\n0x8EA1F6FC\t0x7C21\n0x8EA1F6FD\t0x7CE7\n0x8EA1F6FE\t0x7E54\n0x8EA1F7A1\t0x7E55\n0x8EA1F7A2\t0x7E5E\n0x8EA1F7A3\t0x7E5A\n0x8EA1F7A4\t0x7E61\n0x8EA1F7A5\t0x7E52\n0x8EA1F7A6\t0x7E59\n0x8EA1F7A7\t0x7F48\n0x8EA1F7A8\t0x7FF9\n0x8EA1F7A9\t0x7FFB\n0x8EA1F7AA\t0x8077\n0x8EA1F7AB\t0x8076\n0x8EA1F7AC\t0x81CD\n0x8EA1F7AD\t0x81CF\n0x8EA1F7AE\t0x820A\n0x8EA1F7AF\t0x85CF\n0x8EA1F7B0\t0x85A9\n0x8EA1F7B1\t0x85CD\n0x8EA1F7B2\t0x85D0\n0x8EA1F7B3\t0x85C9\n0x8EA1F7B4\t0x85B0\n0x8EA1F7B5\t0x85BA\n0x8EA1F7B6\t0x85B9\n0x8EA1F7B7\t0x87EF\n0x8EA1F7B8\t0x87EC\n0x8EA1F7B9\t0x87F2\n0x8EA1F7BA\t0x87E0\n0x8EA1F7BB\t0x8986\n0x8EA1F7BC\t0x89B2\n0x8EA1F7BD\t0x89F4\n0x8EA1F7BE\t0x8B28\n0x8EA1F7BF\t0x8B39\n0x8EA1F7C0\t0x8B2C\n0x8EA1F7C1\t0x8B2B\n0x8EA1F7C2\t0x8C50\n0x8EA1F7C3\t0x8D05\n0x8EA1F7C4\t0x8E59\n0x8EA1F7C5\t0x8E63\n0x8EA1F7C6\t0x8E66\n0x8EA1F7C7\t0x8E64\n0x8EA1F7C8\t0x8E5F\n0x8EA1F7C9\t0x8E55\n0x8EA1F7CA\t0x8EC0\n0x8EA1F7CB\t0x8F49\n0x8EA1F7CC\t0x8F4D\n0x8EA1F7CD\t0x9087\n0x8EA1F7CE\t0x9083\n0x8EA1F7CF\t0x9088\n0x8EA1F7D0\t0x91AB\n0x8EA1F7D1\t0x91AC\n0x8EA1F7D2\t0x91D0\n0x8EA1F7D3\t0x9394\n0x8EA1F7D4\t0x938A\n0x8EA1F7D5\t0x9396\n0x8EA1F7D6\t0x93A2\n0x8EA1F7D7\t0x93B3\n0x8EA1F7D8\t0x93AE\n0x8EA1F7D9\t0x93AC\n0x8EA1F7DA\t0x93B0\n0x8EA1F7DB\t0x9398\n0x8EA1F7DC\t0x939A\n0x8EA1F7DD\t0x9397\n0x8EA1F7DE\t0x95D4\n0x8EA1F7DF\t0x95D6\n0x8EA1F7E0\t0x95D0\n0x8EA1F7E1\t0x95D5\n0x8EA1F7E2\t0x96E2\n0x8EA1F7E3\t0x96DC\n0x8EA1F7E4\t0x96D9\n0x8EA1F7E5\t0x96DB\n0x8EA1F7E6\t0x96DE\n0x8EA1F7E7\t0x9724\n0x8EA1F7E8\t0x97A3\n0x8EA1F7E9\t0x97A6\n0x8EA1F7EA\t0x97AD\n0x8EA1F7EB\t0x97F9\n0x8EA1F7EC\t0x984D\n0x8EA1F7ED\t0x984F\n0x8EA1F7EE\t0x984C\n0x8EA1F7EF\t0x984E\n0x8EA1F7F0\t0x9853\n0x8EA1F7F1\t0x98BA\n0x8EA1F7F2\t0x993E\n0x8EA1F7F3\t0x993F\n0x8EA1F7F4\t0x993D\n0x8EA1F7F5\t0x992E\n0x8EA1F7F6\t0x99A5\n0x8EA1F7F7\t0x9A0E\n0x8EA1F7F8\t0x9AC1\n0x8EA1F7F9\t0x9B03\n0x8EA1F7FA\t0x9B06\n0x8EA1F7FB\t0x9B4F\n0x8EA1F7FC\t0x9B4E\n0x8EA1F7FD\t0x9B4D\n0x8EA1F7FE\t0x9BCA\n0x8EA1F8A1\t0x9BC9\n0x8EA1F8A2\t0x9BFD\n0x8EA1F8A3\t0x9BC8\n0x8EA1F8A4\t0x9BC0\n0x8EA1F8A5\t0x9D51\n0x8EA1F8A6\t0x9D5D\n0x8EA1F8A7\t0x9D60\n0x8EA1F8A8\t0x9EE0\n0x8EA1F8A9\t0x9F15\n0x8EA1F8AA\t0x9F2C\n0x8EA1F8AB\t0x5133\n0x8EA1F8AC\t0x56A5\n0x8EA1F8AD\t0x56A8\n0x8EA1F8AE\t0x58DE\n0x8EA1F8AF\t0x58DF\n0x8EA1F8B0\t0x58E2\n0x8EA1F8B1\t0x5BF5\n0x8EA1F8B2\t0x9F90\n0x8EA1F8B3\t0x5EEC\n0x8EA1F8B4\t0x61F2\n0x8EA1F8B5\t0x61F7\n0x8EA1F8B6\t0x61F6\n0x8EA1F8B7\t0x61F5\n0x8EA1F8B8\t0x6500\n0x8EA1F8B9\t0x650F\n0x8EA1F8BA\t0x66E0\n0x8EA1F8BB\t0x66DD\n0x8EA1F8BC\t0x6AE5\n0x8EA1F8BD\t0x6ADD\n0x8EA1F8BE\t0x6ADA\n0x8EA1F8BF\t0x6AD3\n0x8EA1F8C0\t0x701B\n0x8EA1F8C1\t0x701F\n0x8EA1F8C2\t0x7028\n0x8EA1F8C3\t0x701A\n0x8EA1F8C4\t0x701D\n0x8EA1F8C5\t0x7015\n0x8EA1F8C6\t0x7018\n0x8EA1F8C7\t0x7206\n0x8EA1F8C8\t0x720D\n0x8EA1F8C9\t0x7258\n0x8EA1F8CA\t0x72A2\n0x8EA1F8CB\t0x7378\n0x8EA1F8CC\t0x737A\n0x8EA1F8CD\t0x74BD\n0x8EA1F8CE\t0x74CA\n0x8EA1F8CF\t0x74E3\n0x8EA1F8D0\t0x7587\n0x8EA1F8D1\t0x7586\n0x8EA1F8D2\t0x765F\n0x8EA1F8D3\t0x7661\n0x8EA1F8D4\t0x77C7\n0x8EA1F8D5\t0x7919\n0x8EA1F8D6\t0x79B1\n0x8EA1F8D7\t0x7A6B\n0x8EA1F8D8\t0x7A69\n0x8EA1F8D9\t0x7C3E\n0x8EA1F8DA\t0x7C3F\n0x8EA1F8DB\t0x7C38\n0x8EA1F8DC\t0x7C3D\n0x8EA1F8DD\t0x7C37\n0x8EA1F8DE\t0x7C40\n0x8EA1F8DF\t0x7E6B\n0x8EA1F8E0\t0x7E6D\n0x8EA1F8E1\t0x7E79\n0x8EA1F8E2\t0x7E69\n0x8EA1F8E3\t0x7E6A\n0x8EA1F8E4\t0x7E73\n0x8EA1F8E5\t0x7F85\n0x8EA1F8E6\t0x7FB6\n0x8EA1F8E7\t0x7FB9\n0x8EA1F8E8\t0x7FB8\n0x8EA1F8E9\t0x81D8\n0x8EA1F8EA\t0x85E9\n0x8EA1F8EB\t0x85DD\n0x8EA1F8EC\t0x85EA\n0x8EA1F8ED\t0x85D5\n0x8EA1F8EE\t0x85E4\n0x8EA1F8EF\t0x85E5\n0x8EA1F8F0\t0x85F7\n0x8EA1F8F1\t0x87FB\n0x8EA1F8F2\t0x8805\n0x8EA1F8F3\t0x880D\n0x8EA1F8F4\t0x87F9\n0x8EA1F8F5\t0x87FE\n0x8EA1F8F6\t0x8960\n0x8EA1F8F7\t0x895F\n0x8EA1F8F8\t0x8956\n0x8EA1F8F9\t0x895E\n0x8EA1F8FA\t0x8B41\n0x8EA1F8FB\t0x8B5C\n0x8EA1F8FC\t0x8B58\n0x8EA1F8FD\t0x8B49\n0x8EA1F8FE\t0x8B5A\n0x8EA1F9A1\t0x8B4E\n0x8EA1F9A2\t0x8B4F\n0x8EA1F9A3\t0x8B46\n0x8EA1F9A4\t0x8B59\n0x8EA1F9A5\t0x8D08\n0x8EA1F9A6\t0x8D0A\n0x8EA1F9A7\t0x8E7C\n0x8EA1F9A8\t0x8E72\n0x8EA1F9A9\t0x8E87\n0x8EA1F9AA\t0x8E76\n0x8EA1F9AB\t0x8E6C\n0x8EA1F9AC\t0x8E7A\n0x8EA1F9AD\t0x8E74\n0x8EA1F9AE\t0x8F54\n0x8EA1F9AF\t0x8F4E\n0x8EA1F9B0\t0x8FAD\n0x8EA1F9B1\t0x908A\n0x8EA1F9B2\t0x908B\n0x8EA1F9B3\t0x91B1\n0x8EA1F9B4\t0x91AE\n0x8EA1F9B5\t0x93E1\n0x8EA1F9B6\t0x93D1\n0x8EA1F9B7\t0x93DF\n0x8EA1F9B8\t0x93C3\n0x8EA1F9B9\t0x93C8\n0x8EA1F9BA\t0x93DC\n0x8EA1F9BB\t0x93DD\n0x8EA1F9BC\t0x93D6\n0x8EA1F9BD\t0x93E2\n0x8EA1F9BE\t0x93CD\n0x8EA1F9BF\t0x93D8\n0x8EA1F9C0\t0x93E4\n0x8EA1F9C1\t0x93D7\n0x8EA1F9C2\t0x93E8\n0x8EA1F9C3\t0x95DC\n0x8EA1F9C4\t0x96B4\n0x8EA1F9C5\t0x96E3\n0x8EA1F9C6\t0x972A\n0x8EA1F9C7\t0x9727\n0x8EA1F9C8\t0x9761\n0x8EA1F9C9\t0x97DC\n0x8EA1F9CA\t0x97FB\n0x8EA1F9CB\t0x985E\n0x8EA1F9CC\t0x9858\n0x8EA1F9CD\t0x985B\n0x8EA1F9CE\t0x98BC\n0x8EA1F9CF\t0x9945\n0x8EA1F9D0\t0x9949\n0x8EA1F9D1\t0x9A16\n0x8EA1F9D2\t0x9A19\n0x8EA1F9D3\t0x9B0D\n0x8EA1F9D4\t0x9BE8\n0x8EA1F9D5\t0x9BE7\n0x8EA1F9D6\t0x9BD6\n0x8EA1F9D7\t0x9BDB\n0x8EA1F9D8\t0x9D89\n0x8EA1F9D9\t0x9D61\n0x8EA1F9DA\t0x9D72\n0x8EA1F9DB\t0x9D6A\n0x8EA1F9DC\t0x9D6C\n0x8EA1F9DD\t0x9E92\n0x8EA1F9DE\t0x9E97\n0x8EA1F9DF\t0x9E93\n0x8EA1F9E0\t0x9EB4\n0x8EA1F9E1\t0x52F8\n0x8EA1F9E2\t0x56B7\n0x8EA1F9E3\t0x56B6\n0x8EA1F9E4\t0x56B4\n0x8EA1F9E5\t0x56BC\n0x8EA1F9E6\t0x58E4\n0x8EA1F9E7\t0x5B40\n0x8EA1F9E8\t0x5B43\n0x8EA1F9E9\t0x5B7D\n0x8EA1F9EA\t0x5BF6\n0x8EA1F9EB\t0x5DC9\n0x8EA1F9EC\t0x61F8\n0x8EA1F9ED\t0x61FA\n0x8EA1F9EE\t0x6518\n0x8EA1F9EF\t0x6514\n0x8EA1F9F0\t0x6519\n0x8EA1F9F1\t0x66E6\n0x8EA1F9F2\t0x6727\n0x8EA1F9F3\t0x6AEC\n0x8EA1F9F4\t0x703E\n0x8EA1F9F5\t0x7030\n0x8EA1F9F6\t0x7032\n0x8EA1F9F7\t0x7210\n0x8EA1F9F8\t0x737B\n0x8EA1F9F9\t0x74CF\n0x8EA1F9FA\t0x7662\n0x8EA1F9FB\t0x7665\n0x8EA1F9FC\t0x7926\n0x8EA1F9FD\t0x792A\n0x8EA1F9FE\t0x792C\n0x8EA1FAA1\t0x792B\n0x8EA1FAA2\t0x7AC7\n0x8EA1FAA3\t0x7AF6\n0x8EA1FAA4\t0x7C4C\n0x8EA1FAA5\t0x7C43\n0x8EA1FAA6\t0x7C4D\n0x8EA1FAA7\t0x7CEF\n0x8EA1FAA8\t0x7CF0\n0x8EA1FAA9\t0x8FAE\n0x8EA1FAAA\t0x7E7D\n0x8EA1FAAB\t0x7E7C\n0x8EA1FAAC\t0x7E82\n0x8EA1FAAD\t0x7F4C\n0x8EA1FAAE\t0x8000\n0x8EA1FAAF\t0x81DA\n0x8EA1FAB0\t0x8266\n0x8EA1FAB1\t0x85FB\n0x8EA1FAB2\t0x85F9\n0x8EA1FAB3\t0x8611\n0x8EA1FAB4\t0x85FA\n0x8EA1FAB5\t0x8606\n0x8EA1FAB6\t0x860B\n0x8EA1FAB7\t0x8607\n0x8EA1FAB8\t0x860A\n0x8EA1FAB9\t0x8814\n0x8EA1FABA\t0x8815\n0x8EA1FABB\t0x8964\n0x8EA1FABC\t0x89BA\n0x8EA1FABD\t0x89F8\n0x8EA1FABE\t0x8B70\n0x8EA1FABF\t0x8B6C\n0x8EA1FAC0\t0x8B66\n0x8EA1FAC1\t0x8B6F\n0x8EA1FAC2\t0x8B5F\n0x8EA1FAC3\t0x8B6B\n0x8EA1FAC4\t0x8D0F\n0x8EA1FAC5\t0x8D0D\n0x8EA1FAC6\t0x8E89\n0x8EA1FAC7\t0x8E81\n0x8EA1FAC8\t0x8E85\n0x8EA1FAC9\t0x8E82\n0x8EA1FACA\t0x91B4\n0x8EA1FACB\t0x91CB\n0x8EA1FACC\t0x9418\n0x8EA1FACD\t0x9403\n0x8EA1FACE\t0x93FD\n0x8EA1FACF\t0x95E1\n0x8EA1FAD0\t0x9730\n0x8EA1FAD1\t0x98C4\n0x8EA1FAD2\t0x9952\n0x8EA1FAD3\t0x9951\n0x8EA1FAD4\t0x99A8\n0x8EA1FAD5\t0x9A2B\n0x8EA1FAD6\t0x9A30\n0x8EA1FAD7\t0x9A37\n0x8EA1FAD8\t0x9A35\n0x8EA1FAD9\t0x9C13\n0x8EA1FADA\t0x9C0D\n0x8EA1FADB\t0x9E79\n0x8EA1FADC\t0x9EB5\n0x8EA1FADD\t0x9EE8\n0x8EA1FADE\t0x9F2F\n0x8EA1FADF\t0x9F5F\n0x8EA1FAE0\t0x9F63\n0x8EA1FAE1\t0x9F61\n0x8EA1FAE2\t0x5137\n0x8EA1FAE3\t0x5138\n0x8EA1FAE4\t0x56C1\n0x8EA1FAE5\t0x56C0\n0x8EA1FAE6\t0x56C2\n0x8EA1FAE7\t0x5914\n0x8EA1FAE8\t0x5C6C\n0x8EA1FAE9\t0x5DCD\n0x8EA1FAEA\t0x61FC\n0x8EA1FAEB\t0x61FE\n0x8EA1FAEC\t0x651D\n0x8EA1FAED\t0x651C\n0x8EA1FAEE\t0x6595\n0x8EA1FAEF\t0x66E9\n0x8EA1FAF0\t0x6AFB\n0x8EA1FAF1\t0x6B04\n0x8EA1FAF2\t0x6AFA\n0x8EA1FAF3\t0x6BB2\n0x8EA1FAF4\t0x704C\n0x8EA1FAF5\t0x721B\n0x8EA1FAF6\t0x72A7\n0x8EA1FAF7\t0x74D6\n0x8EA1FAF8\t0x74D4\n0x8EA1FAF9\t0x7669\n0x8EA1FAFA\t0x77D3\n0x8EA1FAFB\t0x7C50\n0x8EA1FAFC\t0x7E8F\n0x8EA1FAFD\t0x7E8C\n0x8EA1FAFE\t0x7FBC\n0x8EA1FBA1\t0x8617\n0x8EA1FBA2\t0x862D\n0x8EA1FBA3\t0x861A\n0x8EA1FBA4\t0x8823\n0x8EA1FBA5\t0x8822\n0x8EA1FBA6\t0x8821\n0x8EA1FBA7\t0x881F\n0x8EA1FBA8\t0x896A\n0x8EA1FBA9\t0x896C\n0x8EA1FBAA\t0x89BD\n0x8EA1FBAB\t0x8B74\n0x8EA1FBAC\t0x8B77\n0x8EA1FBAD\t0x8B7D\n0x8EA1FBAE\t0x8D13\n0x8EA1FBAF\t0x8E8A\n0x8EA1FBB0\t0x8E8D\n0x8EA1FBB1\t0x8E8B\n0x8EA1FBB2\t0x8F5F\n0x8EA1FBB3\t0x8FAF\n0x8EA1FBB4\t0x91BA\n0x8EA1FBB5\t0x942E\n0x8EA1FBB6\t0x9433\n0x8EA1FBB7\t0x9435\n0x8EA1FBB8\t0x943A\n0x8EA1FBB9\t0x9438\n0x8EA1FBBA\t0x9432\n0x8EA1FBBB\t0x942B\n0x8EA1FBBC\t0x95E2\n0x8EA1FBBD\t0x9738\n0x8EA1FBBE\t0x9739\n0x8EA1FBBF\t0x9732\n0x8EA1FBC0\t0x97FF\n0x8EA1FBC1\t0x9867\n0x8EA1FBC2\t0x9865\n0x8EA1FBC3\t0x9957\n0x8EA1FBC4\t0x9A45\n0x8EA1FBC5\t0x9A43\n0x8EA1FBC6\t0x9A40\n0x8EA1FBC7\t0x9A3E\n0x8EA1FBC8\t0x9ACF\n0x8EA1FBC9\t0x9B54\n0x8EA1FBCA\t0x9B51\n0x8EA1FBCB\t0x9C2D\n0x8EA1FBCC\t0x9C25\n0x8EA1FBCD\t0x9DAF\n0x8EA1FBCE\t0x9DB4\n0x8EA1FBCF\t0x9DC2\n0x8EA1FBD0\t0x9DB8\n0x8EA1FBD1\t0x9E9D\n0x8EA1FBD2\t0x9EEF\n0x8EA1FBD3\t0x9F19\n0x8EA1FBD4\t0x9F5C\n0x8EA1FBD5\t0x9F66\n0x8EA1FBD6\t0x9F67\n0x8EA1FBD7\t0x513C\n0x8EA1FBD8\t0x513B\n0x8EA1FBD9\t0x56C8\n0x8EA1FBDA\t0x56CA\n0x8EA1FBDB\t0x56C9\n0x8EA1FBDC\t0x5B7F\n0x8EA1FBDD\t0x5DD4\n0x8EA1FBDE\t0x5DD2\n0x8EA1FBDF\t0x5F4E\n0x8EA1FBE0\t0x61FF\n0x8EA1FBE1\t0x6524\n0x8EA1FBE2\t0x6B0A\n0x8EA1FBE3\t0x6B61\n0x8EA1FBE4\t0x7051\n0x8EA1FBE5\t0x7058\n0x8EA1FBE6\t0x7380\n0x8EA1FBE7\t0x74E4\n0x8EA1FBE8\t0x758A\n0x8EA1FBE9\t0x766E\n0x8EA1FBEA\t0x766C\n0x8EA1FBEB\t0x79B3\n0x8EA1FBEC\t0x7C60\n0x8EA1FBED\t0x7C5F\n0x8EA1FBEE\t0x807E\n0x8EA1FBEF\t0x807D\n0x8EA1FBF0\t0x81DF\n0x8EA1FBF1\t0x8972\n0x8EA1FBF2\t0x896F\n0x8EA1FBF3\t0x89FC\n0x8EA1FBF4\t0x8B80\n0x8EA1FBF5\t0x8D16\n0x8EA1FBF6\t0x8D17\n0x8EA1FBF7\t0x8E91\n0x8EA1FBF8\t0x8E93\n0x8EA1FBF9\t0x8F61\n0x8EA1FBFA\t0x9148\n0x8EA1FBFB\t0x9444\n0x8EA1FBFC\t0x9451\n0x8EA1FBFD\t0x9452\n0x8EA1FBFE\t0x973D\n0x8EA1FCA1\t0x973E\n0x8EA1FCA2\t0x97C3\n0x8EA1FCA3\t0x97C1\n0x8EA1FCA4\t0x986B\n0x8EA1FCA5\t0x9955\n0x8EA1FCA6\t0x9A55\n0x8EA1FCA7\t0x9A4D\n0x8EA1FCA8\t0x9AD2\n0x8EA1FCA9\t0x9B1A\n0x8EA1FCAA\t0x9C49\n0x8EA1FCAB\t0x9C31\n0x8EA1FCAC\t0x9C3E\n0x8EA1FCAD\t0x9C3B\n0x8EA1FCAE\t0x9DD3\n0x8EA1FCAF\t0x9DD7\n0x8EA1FCB0\t0x9F34\n0x8EA1FCB1\t0x9F6C\n0x8EA1FCB2\t0x9F6A\n0x8EA1FCB3\t0x9F94\n0x8EA1FCB4\t0x56CC\n0x8EA1FCB5\t0x5DD6\n0x8EA1FCB6\t0x6200\n0x8EA1FCB7\t0x6523\n0x8EA1FCB8\t0x652B\n0x8EA1FCB9\t0x652A\n0x8EA1FCBA\t0x66EC\n0x8EA1FCBB\t0x6B10\n0x8EA1FCBC\t0x74DA\n0x8EA1FCBD\t0x7ACA\n0x8EA1FCBE\t0x7C64\n0x8EA1FCBF\t0x7C63\n0x8EA1FCC0\t0x7C65\n0x8EA1FCC1\t0x7E93\n0x8EA1FCC2\t0x7E96\n0x8EA1FCC3\t0x7E94\n0x8EA1FCC4\t0x81E2\n0x8EA1FCC5\t0x8638\n0x8EA1FCC6\t0x863F\n0x8EA1FCC7\t0x8831\n0x8EA1FCC8\t0x8B8A\n0x8EA1FCC9\t0x9090\n0x8EA1FCCA\t0x908F\n0x8EA1FCCB\t0x9463\n0x8EA1FCCC\t0x9460\n0x8EA1FCCD\t0x9464\n0x8EA1FCCE\t0x9768\n0x8EA1FCCF\t0x986F\n0x8EA1FCD0\t0x995C\n0x8EA1FCD1\t0x9A5A\n0x8EA1FCD2\t0x9A5B\n0x8EA1FCD3\t0x9A57\n0x8EA1FCD4\t0x9AD3\n0x8EA1FCD5\t0x9AD4\n0x8EA1FCD6\t0x9AD1\n0x8EA1FCD7\t0x9C54\n0x8EA1FCD8\t0x9C57\n0x8EA1FCD9\t0x9C56\n0x8EA1FCDA\t0x9DE5\n0x8EA1FCDB\t0x9E9F\n0x8EA1FCDC\t0x9EF4\n0x8EA1FCDD\t0x56D1\n0x8EA1FCDE\t0x58E9\n0x8EA1FCDF\t0x652C\n0x8EA1FCE0\t0x705E\n0x8EA1FCE1\t0x7671\n0x8EA1FCE2\t0x7672\n0x8EA1FCE3\t0x77D7\n0x8EA1FCE4\t0x7F50\n0x8EA1FCE5\t0x7F88\n0x8EA1FCE6\t0x8836\n0x8EA1FCE7\t0x8839\n0x8EA1FCE8\t0x8862\n0x8EA1FCE9\t0x8B93\n0x8EA1FCEA\t0x8B92\n0x8EA1FCEB\t0x8B96\n0x8EA1FCEC\t0x8277\n0x8EA1FCED\t0x8D1B\n0x8EA1FCEE\t0x91C0\n0x8EA1FCEF\t0x946A\n0x8EA1FCF0\t0x9742\n0x8EA1FCF1\t0x9748\n0x8EA1FCF2\t0x9744\n0x8EA1FCF3\t0x97C6\n0x8EA1FCF4\t0x9870\n0x8EA1FCF5\t0x9A5F\n0x8EA1FCF6\t0x9B22\n0x8EA1FCF7\t0x9B58\n0x8EA1FCF8\t0x9C5F\n0x8EA1FCF9\t0x9DF9\n0x8EA1FCFA\t0x9DFA\n0x8EA1FCFB\t0x9E7C\n0x8EA1FCFC\t0x9E7D\n0x8EA1FCFD\t0x9F07\n0x8EA1FCFE\t0x9F77\n0x8EA1FDA1\t0x9F72\n0x8EA1FDA2\t0x5EF3\n0x8EA1FDA3\t0x6B16\n0x8EA1FDA4\t0x7063\n0x8EA1FDA5\t0x7C6C\n0x8EA1FDA6\t0x7C6E\n0x8EA1FDA7\t0x883B\n0x8EA1FDA8\t0x89C0\n0x8EA1FDA9\t0x8EA1\n0x8EA1FDAA\t0x91C1\n0x8EA1FDAB\t0x9472\n0x8EA1FDAC\t0x9470\n0x8EA1FDAD\t0x9871\n0x8EA1FDAE\t0x995E\n0x8EA1FDAF\t0x9AD6\n0x8EA1FDB0\t0x9B23\n0x8EA1FDB1\t0x9ECC\n0x8EA1FDB2\t0x7064\n0x8EA1FDB3\t0x77DA\n0x8EA1FDB4\t0x8B9A\n0x8EA1FDB5\t0x9477\n0x8EA1FDB6\t0x97C9\n0x8EA1FDB7\t0x9A62\n0x8EA1FDB8\t0x9A65\n0x8EA1FDB9\t0x7E9C\n0x8EA1FDBA\t0x8B9C\n0x8EA1FDBB\t0x8EAA\n0x8EA1FDBC\t0x91C5\n0x8EA1FDBD\t0x947D\n0x8EA1FDBE\t0x947E\n0x8EA1FDBF\t0x947C\n0x8EA1FDC0\t0x9C77\n0x8EA1FDC1\t0x9C78\n0x8EA1FDC2\t0x9EF7\n0x8EA1FDC3\t0x8C54\n0x8EA1FDC4\t0x947F\n0x8EA1FDC5\t0x9E1A\n0x8EA1FDC6\t0x7228\n0x8EA1FDC7\t0x9A6A\n0x8EA1FDC8\t0x9B31\n0x8EA1FDC9\t0x9E1B\n0x8EA1FDCA\t0x9E1E\n0x8EA1FDCB\t0x7C72\n0x8EA3A1B8\t0x5344\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/EUC-TW.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8EA1A1A1\t0x3000\n0x8EA1A1A2\t0xFF0C\n0x8EA1A1A3\t0x3001\n0x8EA1A1A4\t0x3002\n0x8EA1A1A5\t0xFF0E\n0x8EA1A1A6\t0x30FB\n0x8EA1A1A7\t0xFF1B\n0x8EA1A1A8\t0xFF1A\n0x8EA1A1A9\t0xFF1F\n0x8EA1A1AA\t0xFF01\n0x8EA1A1AB\t0xFE30\n0x8EA1A1AC\t0x2026\n0x8EA1A1AD\t0x2025\n0x8EA1A1AE\t0xFE50\n0x8EA1A1AF\t0xFE51\n0x8EA1A1B0\t0xFE52\n0x8EA1A1B1\t0x00B7\n0x8EA1A1B2\t0xFE54\n0x8EA1A1B3\t0xFE55\n0x8EA1A1B4\t0xFE56\n0x8EA1A1B5\t0xFE57\n0x8EA1A1B6\t0xFE31\n0x8EA1A1B7\t0x2014\n0x8EA1A1B8\t0xFE32\n0x8EA1A1B9\t0x2013\n0x8EA1A1BE\t0xFF08\n0x8EA1A1BF\t0xFF09\n0x8EA1A1C0\t0xFE35\n0x8EA1A1C1\t0xFE36\n0x8EA1A1C2\t0xFF5B\n0x8EA1A1C3\t0xFF5D\n0x8EA1A1C4\t0xFE37\n0x8EA1A1C5\t0xFE38\n0x8EA1A1C6\t0x3014\n0x8EA1A1C7\t0x3015\n0x8EA1A1C8\t0xFE39\n0x8EA1A1C9\t0xFE3A\n0x8EA1A1CA\t0x3010\n0x8EA1A1CB\t0x3011\n0x8EA1A1CC\t0xFE3B\n0x8EA1A1CD\t0xFE3C\n0x8EA1A1CE\t0x300A\n0x8EA1A1CF\t0x300B\n0x8EA1A1D0\t0xFE3D\n0x8EA1A1D1\t0xFE3E\n0x8EA1A1D2\t0x3008\n0x8EA1A1D3\t0x3009\n0x8EA1A1D4\t0xFE3F\n0x8EA1A1D5\t0xFE40\n0x8EA1A1D6\t0x300C\n0x8EA1A1D7\t0x300D\n0x8EA1A1D8\t0xFE41\n0x8EA1A1D9\t0xFE42\n0x8EA1A1DA\t0x300E\n0x8EA1A1DB\t0x300F\n0x8EA1A1DC\t0xFE43\n0x8EA1A1DD\t0xFE44\n0x8EA1A1DE\t0xFE59\n0x8EA1A1DF\t0xFE5A\n0x8EA1A1E0\t0xFE5B\n0x8EA1A1E1\t0xFE5C\n0x8EA1A1E2\t0xFE5D\n0x8EA1A1E3\t0xFE5E\n0x8EA1A1E4\t0x2018\n0x8EA1A1E5\t0x2019\n0x8EA1A1E6\t0x201C\n0x8EA1A1E7\t0x201D\n0x8EA1A1E8\t0x301D\n0x8EA1A1E9\t0x301E\n0x8EA1A1EA\t0x2032\n0x8EA1A1EB\t0x2035\n0x8EA1A1EC\t0xFF03\n0x8EA1A1ED\t0xFF06\n0x8EA1A1EE\t0xFF0A\n0x8EA1A1EF\t0x203B\n0x8EA1A1F0\t0x00A7\n0x8EA1A1F1\t0x3003\n0x8EA1A1F2\t0x25CB\n0x8EA1A1F3\t0x25CF\n0x8EA1A1F4\t0x25B3\n0x8EA1A1F5\t0x25B2\n0x8EA1A1F6\t0x25CE\n0x8EA1A1F7\t0x2606\n0x8EA1A1F8\t0x2605\n0x8EA1A1F9\t0x25C7\n0x8EA1A1FA\t0x25C6\n0x8EA1A1FB\t0x25A1\n0x8EA1A1FC\t0x25A0\n0x8EA1A1FD\t0x25BD\n0x8EA1A1FE\t0x25BC\n0x8EA1A2A1\t0x32A3\n0x8EA1A2A2\t0x2105\n0x8EA1A2A3\t0x203E\n0x8EA1A2A5\t0xFF3F\n0x8EA1A2A7\t0xFE49\n0x8EA1A2A8\t0xFE4A\n0x8EA1A2A9\t0xFE4D\n0x8EA1A2AA\t0xFE4E\n0x8EA1A2AB\t0xFE4B\n0x8EA1A2AC\t0xFE4C\n0x8EA1A2AD\t0xFE5F\n0x8EA1A2AE\t0xFE60\n0x8EA1A2AF\t0xFE61\n0x8EA1A2B0\t0xFF0B\n0x8EA1A2B1\t0xFF0D\n0x8EA1A2B2\t0x00D7\n0x8EA1A2B3\t0x00F7\n0x8EA1A2B4\t0x00B1\n0x8EA1A2B5\t0x221A\n0x8EA1A2B6\t0xFF1C\n0x8EA1A2B7\t0xFF1E\n0x8EA1A2B8\t0xFF1D\n0x8EA1A2B9\t0x2266\n0x8EA1A2BA\t0x2267\n0x8EA1A2BB\t0x2260\n0x8EA1A2BC\t0x221E\n0x8EA1A2BD\t0x2252\n0x8EA1A2BE\t0x2261\n0x8EA1A2BF\t0xFE62\n0x8EA1A2C0\t0xFE63\n0x8EA1A2C1\t0xFE64\n0x8EA1A2C2\t0xFE66\n0x8EA1A2C3\t0xFE65\n0x8EA1A2C4\t0x223C\n0x8EA1A2C5\t0x2229\n0x8EA1A2C6\t0x222A\n0x8EA1A2C7\t0x22A5\n0x8EA1A2C8\t0x2220\n0x8EA1A2C9\t0x221F\n0x8EA1A2CA\t0x22BF\n0x8EA1A2CB\t0x33D2\n0x8EA1A2CC\t0x33D1\n0x8EA1A2CD\t0x222B\n0x8EA1A2CE\t0x222E\n0x8EA1A2CF\t0x2235\n0x8EA1A2D0\t0x2234\n0x8EA1A2D1\t0x2640\n0x8EA1A2D2\t0x2642\n0x8EA1A2D3\t0x2641\n0x8EA1A2D4\t0x2609\n0x8EA1A2D5\t0x2191\n0x8EA1A2D6\t0x2193\n0x8EA1A2D7\t0x2192\n0x8EA1A2D8\t0x2190\n0x8EA1A2D9\t0x2196\n0x8EA1A2DA\t0x2197\n0x8EA1A2DB\t0x2199\n0x8EA1A2DC\t0x2198\n0x8EA1A2DD\t0x2016\n0x8EA1A2DE\t0xFF5C\n0x8EA1A2DF\t0xFF0F\n0x8EA1A2E0\t0xFF3C\n0x8EA1A2E1\t0x2215\n0x8EA1A2E2\t0xFE68\n0x8EA1A2E3\t0xFF04\n0x8EA1A2E4\t0xFFE5\n0x8EA1A2E5\t0x3012\n0x8EA1A2E6\t0xFFE0\n0x8EA1A2E7\t0xFFE1\n0x8EA1A2E8\t0xFF05\n0x8EA1A2E9\t0xFF20\n0x8EA1A2EA\t0x2103\n0x8EA1A2EB\t0x2109\n0x8EA1A2EC\t0xFE69\n0x8EA1A2ED\t0xFE6A\n0x8EA1A2EE\t0xFE6B\n0x8EA1A2EF\t0x33D5\n0x8EA1A2F0\t0x339C\n0x8EA1A2F1\t0x339D\n0x8EA1A2F2\t0x339E\n0x8EA1A2F3\t0x33CE\n0x8EA1A2F4\t0x33A1\n0x8EA1A2F5\t0x338E\n0x8EA1A2F6\t0x338F\n0x8EA1A2F7\t0x33C4\n0x8EA1A2F8\t0x00B0\n0x8EA1A2F9\t0x5159\n0x8EA1A2FA\t0x515B\n0x8EA1A2FB\t0x515E\n0x8EA1A2FC\t0x515D\n0x8EA1A2FD\t0x5161\n0x8EA1A2FE\t0x5163\n0x8EA1A3A1\t0x55E7\n0x8EA1A3A2\t0x74E9\n0x8EA1A3A3\t0x7CCE\n0x8EA1A3A4\t0x2581\n0x8EA1A3A5\t0x2582\n0x8EA1A3A6\t0x2583\n0x8EA1A3A7\t0x2584\n0x8EA1A3A8\t0x2585\n0x8EA1A3A9\t0x2586\n0x8EA1A3AA\t0x2587\n0x8EA1A3AB\t0x2588\n0x8EA1A3AC\t0x258F\n0x8EA1A3AD\t0x258E\n0x8EA1A3AE\t0x258D\n0x8EA1A3AF\t0x258C\n0x8EA1A3B0\t0x258B\n0x8EA1A3B1\t0x258A\n0x8EA1A3B2\t0x2589\n0x8EA1A3B3\t0x253C\n0x8EA1A3B4\t0x2534\n0x8EA1A3B5\t0x252C\n0x8EA1A3B6\t0x2524\n0x8EA1A3B7\t0x251C\n0x8EA1A3B8\t0x2594\n0x8EA1A3B9\t0x2500\n0x8EA1A3BA\t0x2502\n0x8EA1A3BB\t0x2595\n0x8EA1A3BC\t0x250C\n0x8EA1A3BD\t0x2510\n0x8EA1A3BE\t0x2514\n0x8EA1A3BF\t0x2518\n0x8EA1A3C0\t0x256D\n0x8EA1A3C1\t0x256E\n0x8EA1A3C2\t0x2570\n0x8EA1A3C3\t0x256F\n0x8EA1A3C4\t0x2550\n0x8EA1A3C5\t0x255E\n0x8EA1A3C6\t0x256A\n0x8EA1A3C7\t0x2561\n0x8EA1A3C8\t0x25E2\n0x8EA1A3C9\t0x25E3\n0x8EA1A3CA\t0x25E5\n0x8EA1A3CB\t0x25E4\n0x8EA1A3CC\t0x2571\n0x8EA1A3CD\t0x2572\n0x8EA1A3CE\t0x2573\n0x8EA1A4A1\t0xFF10\n0x8EA1A4A2\t0xFF11\n0x8EA1A4A3\t0xFF12\n0x8EA1A4A4\t0xFF13\n0x8EA1A4A5\t0xFF14\n0x8EA1A4A6\t0xFF15\n0x8EA1A4A7\t0xFF16\n0x8EA1A4A8\t0xFF17\n0x8EA1A4A9\t0xFF18\n0x8EA1A4AA\t0xFF19\n0x8EA1A4AB\t0x2160\n0x8EA1A4AC\t0x2161\n0x8EA1A4AD\t0x2162\n0x8EA1A4AE\t0x2163\n0x8EA1A4AF\t0x2164\n0x8EA1A4B0\t0x2165\n0x8EA1A4B1\t0x2166\n0x8EA1A4B2\t0x2167\n0x8EA1A4B3\t0x2168\n0x8EA1A4B4\t0x2169\n0x8EA1A4B5\t0x3021\n0x8EA1A4B6\t0x3022\n0x8EA1A4B7\t0x3023\n0x8EA1A4B8\t0x3024\n0x8EA1A4B9\t0x3025\n0x8EA1A4BA\t0x3026\n0x8EA1A4BB\t0x3027\n0x8EA1A4BC\t0x3028\n0x8EA1A4BD\t0x3029\n0x8EA1A4BF\t0x5344\n0x8EA1A4C1\t0xFF21\n0x8EA1A4C2\t0xFF22\n0x8EA1A4C3\t0xFF23\n0x8EA1A4C4\t0xFF24\n0x8EA1A4C5\t0xFF25\n0x8EA1A4C6\t0xFF26\n0x8EA1A4C7\t0xFF27\n0x8EA1A4C8\t0xFF28\n0x8EA1A4C9\t0xFF29\n0x8EA1A4CA\t0xFF2A\n0x8EA1A4CB\t0xFF2B\n0x8EA1A4CC\t0xFF2C\n0x8EA1A4CD\t0xFF2D\n0x8EA1A4CE\t0xFF2E\n0x8EA1A4CF\t0xFF2F\n0x8EA1A4D0\t0xFF30\n0x8EA1A4D1\t0xFF31\n0x8EA1A4D2\t0xFF32\n0x8EA1A4D3\t0xFF33\n0x8EA1A4D4\t0xFF34\n0x8EA1A4D5\t0xFF35\n0x8EA1A4D6\t0xFF36\n0x8EA1A4D7\t0xFF37\n0x8EA1A4D8\t0xFF38\n0x8EA1A4D9\t0xFF39\n0x8EA1A4DA\t0xFF3A\n0x8EA1A4DB\t0xFF41\n0x8EA1A4DC\t0xFF42\n0x8EA1A4DD\t0xFF43\n0x8EA1A4DE\t0xFF44\n0x8EA1A4DF\t0xFF45\n0x8EA1A4E0\t0xFF46\n0x8EA1A4E1\t0xFF47\n0x8EA1A4E2\t0xFF48\n0x8EA1A4E3\t0xFF49\n0x8EA1A4E4\t0xFF4A\n0x8EA1A4E5\t0xFF4B\n0x8EA1A4E6\t0xFF4C\n0x8EA1A4E7\t0xFF4D\n0x8EA1A4E8\t0xFF4E\n0x8EA1A4E9\t0xFF4F\n0x8EA1A4EA\t0xFF50\n0x8EA1A4EB\t0xFF51\n0x8EA1A4EC\t0xFF52\n0x8EA1A4ED\t0xFF53\n0x8EA1A4EE\t0xFF54\n0x8EA1A4EF\t0xFF55\n0x8EA1A4F0\t0xFF56\n0x8EA1A4F1\t0xFF57\n0x8EA1A4F2\t0xFF58\n0x8EA1A4F3\t0xFF59\n0x8EA1A4F4\t0xFF5A\n0x8EA1A4F5\t0x0391\n0x8EA1A4F6\t0x0392\n0x8EA1A4F7\t0x0393\n0x8EA1A4F8\t0x0394\n0x8EA1A4F9\t0x0395\n0x8EA1A4FA\t0x0396\n0x8EA1A4FB\t0x0397\n0x8EA1A4FC\t0x0398\n0x8EA1A4FD\t0x0399\n0x8EA1A4FE\t0x039A\n0x8EA1A5A1\t0x039B\n0x8EA1A5A2\t0x039C\n0x8EA1A5A3\t0x039D\n0x8EA1A5A4\t0x039E\n0x8EA1A5A5\t0x039F\n0x8EA1A5A6\t0x03A0\n0x8EA1A5A7\t0x03A1\n0x8EA1A5A8\t0x03A3\n0x8EA1A5A9\t0x03A4\n0x8EA1A5AA\t0x03A5\n0x8EA1A5AB\t0x03A6\n0x8EA1A5AC\t0x03A7\n0x8EA1A5AD\t0x03A8\n0x8EA1A5AE\t0x03A9\n0x8EA1A5AF\t0x03B1\n0x8EA1A5B0\t0x03B2\n0x8EA1A5B1\t0x03B3\n0x8EA1A5B2\t0x03B4\n0x8EA1A5B3\t0x03B5\n0x8EA1A5B4\t0x03B6\n0x8EA1A5B5\t0x03B7\n0x8EA1A5B6\t0x03B8\n0x8EA1A5B7\t0x03B9\n0x8EA1A5B8\t0x03BA\n0x8EA1A5B9\t0x03BB\n0x8EA1A5BA\t0x03BC\n0x8EA1A5BB\t0x03BD\n0x8EA1A5BC\t0x03BE\n0x8EA1A5BD\t0x03BF\n0x8EA1A5BE\t0x03C0\n0x8EA1A5BF\t0x03C1\n0x8EA1A5C0\t0x03C3\n0x8EA1A5C1\t0x03C4\n0x8EA1A5C2\t0x03C5\n0x8EA1A5C3\t0x03C6\n0x8EA1A5C4\t0x03C7\n0x8EA1A5C5\t0x03C8\n0x8EA1A5C6\t0x03C9\n0x8EA1A5C7\t0x3105\n0x8EA1A5C8\t0x3106\n0x8EA1A5C9\t0x3107\n0x8EA1A5CA\t0x3108\n0x8EA1A5CB\t0x3109\n0x8EA1A5CC\t0x310A\n0x8EA1A5CD\t0x310B\n0x8EA1A5CE\t0x310C\n0x8EA1A5CF\t0x310D\n0x8EA1A5D0\t0x310E\n0x8EA1A5D1\t0x310F\n0x8EA1A5D2\t0x3110\n0x8EA1A5D3\t0x3111\n0x8EA1A5D4\t0x3112\n0x8EA1A5D5\t0x3113\n0x8EA1A5D6\t0x3114\n0x8EA1A5D7\t0x3115\n0x8EA1A5D8\t0x3116\n0x8EA1A5D9\t0x3117\n0x8EA1A5DA\t0x3118\n0x8EA1A5DB\t0x3119\n0x8EA1A5DC\t0x311A\n0x8EA1A5DD\t0x311B\n0x8EA1A5DE\t0x311C\n0x8EA1A5DF\t0x311D\n0x8EA1A5E0\t0x311E\n0x8EA1A5E1\t0x311F\n0x8EA1A5E2\t0x3120\n0x8EA1A5E3\t0x3121\n0x8EA1A5E4\t0x3122\n0x8EA1A5E5\t0x3123\n0x8EA1A5E6\t0x3124\n0x8EA1A5E7\t0x3125\n0x8EA1A5E8\t0x3126\n0x8EA1A5E9\t0x3127\n0x8EA1A5EA\t0x3128\n0x8EA1A5EB\t0x3129\n0x8EA1A5EC\t0x02D9\n0x8EA1A5ED\t0x02C9\n0x8EA1A5EE\t0x02CA\n0x8EA1A5EF\t0x02C7\n0x8EA1A5F0\t0x02CB\n0x8EA1A6A1\t0x2460\n0x8EA1A6A2\t0x2461\n0x8EA1A6A3\t0x2462\n0x8EA1A6A4\t0x2463\n0x8EA1A6A5\t0x2464\n0x8EA1A6A6\t0x2465\n0x8EA1A6A7\t0x2466\n0x8EA1A6A8\t0x2467\n0x8EA1A6A9\t0x2468\n0x8EA1A6AA\t0x2469\n0x8EA1A6AB\t0x2474\n0x8EA1A6AC\t0x2475\n0x8EA1A6AD\t0x2476\n0x8EA1A6AE\t0x2477\n0x8EA1A6AF\t0x2478\n0x8EA1A6B0\t0x2479\n0x8EA1A6B1\t0x247A\n0x8EA1A6B2\t0x247B\n0x8EA1A6B3\t0x247C\n0x8EA1A6B4\t0x247D\n0x8EA1A6B5\t0x2170\n0x8EA1A6B6\t0x2171\n0x8EA1A6B7\t0x2172\n0x8EA1A6B8\t0x2173\n0x8EA1A6B9\t0x2174\n0x8EA1A6BA\t0x2175\n0x8EA1A6BB\t0x2176\n0x8EA1A6BC\t0x2177\n0x8EA1A6BD\t0x2178\n0x8EA1A6BE\t0x2179\n0x8EA1A7A8\t0x4EA0\n0x8EA1A7AF\t0x51AB\n0x8EA1A7B4\t0x52F9\n0x8EA1C2A1\t0x2400\n0x8EA1C2A2\t0x2401\n0x8EA1C2A3\t0x2402\n0x8EA1C2A4\t0x2403\n0x8EA1C2A5\t0x2404\n0x8EA1C2A6\t0x2405\n0x8EA1C2A7\t0x2406\n0x8EA1C2A8\t0x2407\n0x8EA1C2A9\t0x2408\n0x8EA1C2AA\t0x2409\n0x8EA1C2AB\t0x240A\n0x8EA1C2AC\t0x240B\n0x8EA1C2AD\t0x240C\n0x8EA1C2AE\t0x240D\n0x8EA1C2AF\t0x240E\n0x8EA1C2B0\t0x240F\n0x8EA1C2B1\t0x2410\n0x8EA1C2B2\t0x2411\n0x8EA1C2B3\t0x2412\n0x8EA1C2B4\t0x2413\n0x8EA1C2B5\t0x2414\n0x8EA1C2B6\t0x2415\n0x8EA1C2B7\t0x2416\n0x8EA1C2B8\t0x2417\n0x8EA1C2B9\t0x2418\n0x8EA1C2BA\t0x2419\n0x8EA1C2BB\t0x241A\n0x8EA1C2BC\t0x241B\n0x8EA1C2BD\t0x241C\n0x8EA1C2BE\t0x241D\n0x8EA1C2BF\t0x241E\n0x8EA1C2C0\t0x241F\n0x8EA1C2C1\t0x2421\n0x8EA1C2C2\t0x20AC\n0x8EA1C4A1\t0x4E00\n0x8EA1C4A2\t0x4E59\n0x8EA1C4A3\t0x4E01\n0x8EA1C4A4\t0x4E03\n0x8EA1C4A5\t0x4E43\n0x8EA1C4A6\t0x4E5D\n0x8EA1C4A7\t0x4E86\n0x8EA1C4A8\t0x4E8C\n0x8EA1C4A9\t0x4EBA\n0x8EA1C4AA\t0x513F\n0x8EA1C4AB\t0x5165\n0x8EA1C4AC\t0x516B\n0x8EA1C4AD\t0x51E0\n0x8EA1C4AE\t0x5200\n0x8EA1C4AF\t0x5201\n0x8EA1C4B0\t0x529B\n0x8EA1C4B1\t0x5315\n0x8EA1C4B2\t0x5341\n0x8EA1C4B3\t0x535C\n0x8EA1C4B4\t0x53C8\n0x8EA1C4B5\t0x4E09\n0x8EA1C4B6\t0x4E0B\n0x8EA1C4B7\t0x4E08\n0x8EA1C4B8\t0x4E0A\n0x8EA1C4B9\t0x4E2B\n0x8EA1C4BA\t0x4E38\n0x8EA1C4BB\t0x51E1\n0x8EA1C4BC\t0x4E45\n0x8EA1C4BD\t0x4E48\n0x8EA1C4BE\t0x4E5F\n0x8EA1C4BF\t0x4E5E\n0x8EA1C4C0\t0x4E8E\n0x8EA1C4C1\t0x4EA1\n0x8EA1C4C2\t0x5140\n0x8EA1C4C3\t0x5203\n0x8EA1C4C4\t0x52FA\n0x8EA1C4C5\t0x5343\n0x8EA1C4C6\t0x53C9\n0x8EA1C4C7\t0x53E3\n0x8EA1C4C8\t0x571F\n0x8EA1C4C9\t0x58EB\n0x8EA1C4CA\t0x5915\n0x8EA1C4CB\t0x5927\n0x8EA1C4CC\t0x5973\n0x8EA1C4CD\t0x5B50\n0x8EA1C4CE\t0x5B51\n0x8EA1C4CF\t0x5B53\n0x8EA1C4D0\t0x5BF8\n0x8EA1C4D1\t0x5C0F\n0x8EA1C4D2\t0x5C22\n0x8EA1C4D3\t0x5C38\n0x8EA1C4D4\t0x5C71\n0x8EA1C4D5\t0x5DDD\n0x8EA1C4D6\t0x5DE5\n0x8EA1C4D7\t0x5DF1\n0x8EA1C4D8\t0x5DF2\n0x8EA1C4D9\t0x5DF3\n0x8EA1C4DA\t0x5DFE\n0x8EA1C4DB\t0x5E72\n0x8EA1C4DC\t0x5EFE\n0x8EA1C4DD\t0x5F0B\n0x8EA1C4DE\t0x5F13\n0x8EA1C4DF\t0x624D\n0x8EA1C4E0\t0x4E11\n0x8EA1C4E1\t0x4E10\n0x8EA1C4E2\t0x4E0D\n0x8EA1C4E3\t0x4E2D\n0x8EA1C4E4\t0x4E30\n0x8EA1C4E5\t0x4E39\n0x8EA1C4E6\t0x4E4B\n0x8EA1C4E7\t0x5C39\n0x8EA1C4E8\t0x4E88\n0x8EA1C4E9\t0x4E91\n0x8EA1C4EA\t0x4E95\n0x8EA1C4EB\t0x4E92\n0x8EA1C4EC\t0x4E94\n0x8EA1C4ED\t0x4EA2\n0x8EA1C4EE\t0x4EC1\n0x8EA1C4EF\t0x4EC0\n0x8EA1C4F0\t0x4EC3\n0x8EA1C4F1\t0x4EC6\n0x8EA1C4F2\t0x4EC7\n0x8EA1C4F3\t0x4ECD\n0x8EA1C4F4\t0x4ECA\n0x8EA1C4F5\t0x4ECB\n0x8EA1C4F6\t0x4EC4\n0x8EA1C4F7\t0x5143\n0x8EA1C4F8\t0x5141\n0x8EA1C4F9\t0x5167\n0x8EA1C4FA\t0x516D\n0x8EA1C4FB\t0x516E\n0x8EA1C4FC\t0x516C\n0x8EA1C4FD\t0x5197\n0x8EA1C4FE\t0x51F6\n0x8EA1C5A1\t0x5206\n0x8EA1C5A2\t0x5207\n0x8EA1C5A3\t0x5208\n0x8EA1C5A4\t0x52FB\n0x8EA1C5A5\t0x52FE\n0x8EA1C5A6\t0x52FF\n0x8EA1C5A7\t0x5316\n0x8EA1C5A8\t0x5339\n0x8EA1C5A9\t0x5348\n0x8EA1C5AA\t0x5347\n0x8EA1C5AB\t0x5345\n0x8EA1C5AC\t0x535E\n0x8EA1C5AD\t0x5384\n0x8EA1C5AE\t0x53CB\n0x8EA1C5AF\t0x53CA\n0x8EA1C5B0\t0x53CD\n0x8EA1C5B1\t0x58EC\n0x8EA1C5B2\t0x5929\n0x8EA1C5B3\t0x592B\n0x8EA1C5B4\t0x592A\n0x8EA1C5B5\t0x592D\n0x8EA1C5B6\t0x5B54\n0x8EA1C5B7\t0x5C11\n0x8EA1C5B8\t0x5C24\n0x8EA1C5B9\t0x5C3A\n0x8EA1C5BA\t0x5C6F\n0x8EA1C5BB\t0x5DF4\n0x8EA1C5BC\t0x5E7B\n0x8EA1C5BD\t0x5EFF\n0x8EA1C5BE\t0x5F14\n0x8EA1C5BF\t0x5F15\n0x8EA1C5C0\t0x5FC3\n0x8EA1C5C1\t0x6208\n0x8EA1C5C2\t0x6236\n0x8EA1C5C3\t0x624B\n0x8EA1C5C4\t0x624E\n0x8EA1C5C5\t0x652F\n0x8EA1C5C6\t0x6587\n0x8EA1C5C7\t0x6597\n0x8EA1C5C8\t0x65A4\n0x8EA1C5C9\t0x65B9\n0x8EA1C5CA\t0x65E5\n0x8EA1C5CB\t0x66F0\n0x8EA1C5CC\t0x6708\n0x8EA1C5CD\t0x6728\n0x8EA1C5CE\t0x6B20\n0x8EA1C5CF\t0x6B62\n0x8EA1C5D0\t0x6B79\n0x8EA1C5D1\t0x6BCB\n0x8EA1C5D2\t0x6BD4\n0x8EA1C5D3\t0x6BDB\n0x8EA1C5D4\t0x6C0F\n0x8EA1C5D5\t0x6C34\n0x8EA1C5D6\t0x706B\n0x8EA1C5D7\t0x722A\n0x8EA1C5D8\t0x7236\n0x8EA1C5D9\t0x723B\n0x8EA1C5DA\t0x7247\n0x8EA1C5DB\t0x7259\n0x8EA1C5DC\t0x725B\n0x8EA1C5DD\t0x72AC\n0x8EA1C5DE\t0x738B\n0x8EA1C5DF\t0x4E19\n0x8EA1C5E0\t0x4E16\n0x8EA1C5E1\t0x4E15\n0x8EA1C5E2\t0x4E14\n0x8EA1C5E3\t0x4E18\n0x8EA1C5E4\t0x4E3B\n0x8EA1C5E5\t0x4E4D\n0x8EA1C5E6\t0x4E4F\n0x8EA1C5E7\t0x4E4E\n0x8EA1C5E8\t0x4EE5\n0x8EA1C5E9\t0x4ED8\n0x8EA1C5EA\t0x4ED4\n0x8EA1C5EB\t0x4ED5\n0x8EA1C5EC\t0x4ED6\n0x8EA1C5ED\t0x4ED7\n0x8EA1C5EE\t0x4EE3\n0x8EA1C5EF\t0x4EE4\n0x8EA1C5F0\t0x4ED9\n0x8EA1C5F1\t0x4EDE\n0x8EA1C5F2\t0x5145\n0x8EA1C5F3\t0x5144\n0x8EA1C5F4\t0x5189\n0x8EA1C5F5\t0x518A\n0x8EA1C5F6\t0x51AC\n0x8EA1C5F7\t0x51F9\n0x8EA1C5F8\t0x51FA\n0x8EA1C5F9\t0x51F8\n0x8EA1C5FA\t0x520A\n0x8EA1C5FB\t0x52A0\n0x8EA1C5FC\t0x529F\n0x8EA1C5FD\t0x5305\n0x8EA1C5FE\t0x5306\n0x8EA1C6A1\t0x5317\n0x8EA1C6A2\t0x531D\n0x8EA1C6A3\t0x4EDF\n0x8EA1C6A4\t0x534A\n0x8EA1C6A5\t0x5349\n0x8EA1C6A6\t0x5361\n0x8EA1C6A7\t0x5360\n0x8EA1C6A8\t0x536F\n0x8EA1C6A9\t0x536E\n0x8EA1C6AA\t0x53BB\n0x8EA1C6AB\t0x53EF\n0x8EA1C6AC\t0x53E4\n0x8EA1C6AD\t0x53F3\n0x8EA1C6AE\t0x53EC\n0x8EA1C6AF\t0x53EE\n0x8EA1C6B0\t0x53E9\n0x8EA1C6B1\t0x53E8\n0x8EA1C6B2\t0x53FC\n0x8EA1C6B3\t0x53F8\n0x8EA1C6B4\t0x53F5\n0x8EA1C6B5\t0x53EB\n0x8EA1C6B6\t0x53E6\n0x8EA1C6B7\t0x53EA\n0x8EA1C6B8\t0x53F2\n0x8EA1C6B9\t0x53F1\n0x8EA1C6BA\t0x53F0\n0x8EA1C6BB\t0x53E5\n0x8EA1C6BC\t0x53ED\n0x8EA1C6BD\t0x53FB\n0x8EA1C6BE\t0x56DB\n0x8EA1C6BF\t0x56DA\n0x8EA1C6C0\t0x5916\n0x8EA1C6C1\t0x592E\n0x8EA1C6C2\t0x5931\n0x8EA1C6C3\t0x5974\n0x8EA1C6C4\t0x5976\n0x8EA1C6C5\t0x5B55\n0x8EA1C6C6\t0x5B83\n0x8EA1C6C7\t0x5C3C\n0x8EA1C6C8\t0x5DE8\n0x8EA1C6C9\t0x5DE7\n0x8EA1C6CA\t0x5DE6\n0x8EA1C6CB\t0x5E02\n0x8EA1C6CC\t0x5E03\n0x8EA1C6CD\t0x5E73\n0x8EA1C6CE\t0x5E7C\n0x8EA1C6CF\t0x5F01\n0x8EA1C6D0\t0x5F18\n0x8EA1C6D1\t0x5F17\n0x8EA1C6D2\t0x5FC5\n0x8EA1C6D3\t0x620A\n0x8EA1C6D4\t0x6253\n0x8EA1C6D5\t0x6254\n0x8EA1C6D6\t0x6252\n0x8EA1C6D7\t0x6251\n0x8EA1C6D8\t0x65A5\n0x8EA1C6D9\t0x65E6\n0x8EA1C6DA\t0x672E\n0x8EA1C6DB\t0x672C\n0x8EA1C6DC\t0x672A\n0x8EA1C6DD\t0x672B\n0x8EA1C6DE\t0x672D\n0x8EA1C6DF\t0x6B63\n0x8EA1C6E0\t0x6BCD\n0x8EA1C6E1\t0x6C11\n0x8EA1C6E2\t0x6C10\n0x8EA1C6E3\t0x6C38\n0x8EA1C6E4\t0x6C41\n0x8EA1C6E5\t0x6C40\n0x8EA1C6E6\t0x6C3E\n0x8EA1C6E7\t0x72AF\n0x8EA1C6E8\t0x7384\n0x8EA1C6E9\t0x7389\n0x8EA1C6EA\t0x74DC\n0x8EA1C6EB\t0x74E6\n0x8EA1C6EC\t0x7518\n0x8EA1C6ED\t0x751F\n0x8EA1C6EE\t0x7528\n0x8EA1C6EF\t0x7529\n0x8EA1C6F0\t0x7530\n0x8EA1C6F1\t0x7531\n0x8EA1C6F2\t0x7532\n0x8EA1C6F3\t0x7533\n0x8EA1C6F4\t0x758B\n0x8EA1C6F5\t0x767D\n0x8EA1C6F6\t0x76AE\n0x8EA1C6F7\t0x76BF\n0x8EA1C6F8\t0x76EE\n0x8EA1C6F9\t0x77DB\n0x8EA1C6FA\t0x77E2\n0x8EA1C6FB\t0x77F3\n0x8EA1C6FC\t0x793A\n0x8EA1C6FD\t0x79BE\n0x8EA1C6FE\t0x7A74\n0x8EA1C7A1\t0x7ACB\n0x8EA1C7A2\t0x4E1E\n0x8EA1C7A3\t0x4E1F\n0x8EA1C7A4\t0x4E52\n0x8EA1C7A5\t0x4E53\n0x8EA1C7A6\t0x4E69\n0x8EA1C7A7\t0x4E99\n0x8EA1C7A8\t0x4EA4\n0x8EA1C7A9\t0x4EA6\n0x8EA1C7AA\t0x4EA5\n0x8EA1C7AB\t0x4EFF\n0x8EA1C7AC\t0x4F09\n0x8EA1C7AD\t0x4F19\n0x8EA1C7AE\t0x4F0A\n0x8EA1C7AF\t0x4F15\n0x8EA1C7B0\t0x4F0D\n0x8EA1C7B1\t0x4F10\n0x8EA1C7B2\t0x4F11\n0x8EA1C7B3\t0x4F0F\n0x8EA1C7B4\t0x4EF2\n0x8EA1C7B5\t0x4EF6\n0x8EA1C7B6\t0x4EFB\n0x8EA1C7B7\t0x4EF0\n0x8EA1C7B8\t0x4EF3\n0x8EA1C7B9\t0x4EFD\n0x8EA1C7BA\t0x4F01\n0x8EA1C7BB\t0x4F0B\n0x8EA1C7BC\t0x5149\n0x8EA1C7BD\t0x5147\n0x8EA1C7BE\t0x5146\n0x8EA1C7BF\t0x5148\n0x8EA1C7C0\t0x5168\n0x8EA1C7C1\t0x5171\n0x8EA1C7C2\t0x518D\n0x8EA1C7C3\t0x51B0\n0x8EA1C7C4\t0x5217\n0x8EA1C7C5\t0x5211\n0x8EA1C7C6\t0x5212\n0x8EA1C7C7\t0x520E\n0x8EA1C7C8\t0x5216\n0x8EA1C7C9\t0x52A3\n0x8EA1C7CA\t0x5308\n0x8EA1C7CB\t0x5321\n0x8EA1C7CC\t0x5320\n0x8EA1C7CD\t0x5370\n0x8EA1C7CE\t0x5371\n0x8EA1C7CF\t0x5409\n0x8EA1C7D0\t0x540F\n0x8EA1C7D1\t0x540C\n0x8EA1C7D2\t0x540A\n0x8EA1C7D3\t0x5410\n0x8EA1C7D4\t0x5401\n0x8EA1C7D5\t0x540B\n0x8EA1C7D6\t0x5404\n0x8EA1C7D7\t0x5411\n0x8EA1C7D8\t0x540D\n0x8EA1C7D9\t0x5408\n0x8EA1C7DA\t0x5403\n0x8EA1C7DB\t0x540E\n0x8EA1C7DC\t0x5406\n0x8EA1C7DD\t0x5412\n0x8EA1C7DE\t0x56E0\n0x8EA1C7DF\t0x56DE\n0x8EA1C7E0\t0x56DD\n0x8EA1C7E1\t0x5733\n0x8EA1C7E2\t0x5730\n0x8EA1C7E3\t0x5728\n0x8EA1C7E4\t0x572D\n0x8EA1C7E5\t0x572C\n0x8EA1C7E6\t0x572F\n0x8EA1C7E7\t0x5729\n0x8EA1C7E8\t0x5919\n0x8EA1C7E9\t0x591A\n0x8EA1C7EA\t0x5937\n0x8EA1C7EB\t0x5938\n0x8EA1C7EC\t0x5984\n0x8EA1C7ED\t0x5978\n0x8EA1C7EE\t0x5983\n0x8EA1C7EF\t0x597D\n0x8EA1C7F0\t0x5979\n0x8EA1C7F1\t0x5982\n0x8EA1C7F2\t0x5981\n0x8EA1C7F3\t0x5B57\n0x8EA1C7F4\t0x5B58\n0x8EA1C7F5\t0x5B87\n0x8EA1C7F6\t0x5B88\n0x8EA1C7F7\t0x5B85\n0x8EA1C7F8\t0x5B89\n0x8EA1C7F9\t0x5BFA\n0x8EA1C7FA\t0x5C16\n0x8EA1C7FB\t0x5C79\n0x8EA1C7FC\t0x5DDE\n0x8EA1C7FD\t0x5E06\n0x8EA1C7FE\t0x5E76\n0x8EA1C8A1\t0x5E74\n0x8EA1C8A2\t0x5F0F\n0x8EA1C8A3\t0x5F1B\n0x8EA1C8A4\t0x5FD9\n0x8EA1C8A5\t0x5FD6\n0x8EA1C8A6\t0x620E\n0x8EA1C8A7\t0x620C\n0x8EA1C8A8\t0x620D\n0x8EA1C8A9\t0x6210\n0x8EA1C8AA\t0x6263\n0x8EA1C8AB\t0x625B\n0x8EA1C8AC\t0x6258\n0x8EA1C8AD\t0x6536\n0x8EA1C8AE\t0x65E9\n0x8EA1C8AF\t0x65E8\n0x8EA1C8B0\t0x65EC\n0x8EA1C8B1\t0x65ED\n0x8EA1C8B2\t0x66F2\n0x8EA1C8B3\t0x66F3\n0x8EA1C8B4\t0x6709\n0x8EA1C8B5\t0x673D\n0x8EA1C8B6\t0x6734\n0x8EA1C8B7\t0x6731\n0x8EA1C8B8\t0x6735\n0x8EA1C8B9\t0x6B21\n0x8EA1C8BA\t0x6B64\n0x8EA1C8BB\t0x6B7B\n0x8EA1C8BC\t0x6C16\n0x8EA1C8BD\t0x6C5D\n0x8EA1C8BE\t0x6C57\n0x8EA1C8BF\t0x6C59\n0x8EA1C8C0\t0x6C5F\n0x8EA1C8C1\t0x6C60\n0x8EA1C8C2\t0x6C50\n0x8EA1C8C3\t0x6C55\n0x8EA1C8C4\t0x6C61\n0x8EA1C8C5\t0x6C5B\n0x8EA1C8C6\t0x6C4D\n0x8EA1C8C7\t0x6C4E\n0x8EA1C8C8\t0x7070\n0x8EA1C8C9\t0x725F\n0x8EA1C8CA\t0x725D\n0x8EA1C8CB\t0x767E\n0x8EA1C8CC\t0x7AF9\n0x8EA1C8CD\t0x7C73\n0x8EA1C8CE\t0x7CF8\n0x8EA1C8CF\t0x7F36\n0x8EA1C8D0\t0x7F8A\n0x8EA1C8D1\t0x7FBD\n0x8EA1C8D2\t0x8001\n0x8EA1C8D3\t0x8003\n0x8EA1C8D4\t0x800C\n0x8EA1C8D5\t0x8012\n0x8EA1C8D6\t0x8033\n0x8EA1C8D7\t0x807F\n0x8EA1C8D8\t0x8089\n0x8EA1C8D9\t0x808B\n0x8EA1C8DA\t0x808C\n0x8EA1C8DB\t0x81E3\n0x8EA1C8DC\t0x81EA\n0x8EA1C8DD\t0x81F3\n0x8EA1C8DE\t0x81FC\n0x8EA1C8DF\t0x820C\n0x8EA1C8E0\t0x821B\n0x8EA1C8E1\t0x821F\n0x8EA1C8E2\t0x826E\n0x8EA1C8E3\t0x8272\n0x8EA1C8E4\t0x827E\n0x8EA1C8E5\t0x866B\n0x8EA1C8E6\t0x8840\n0x8EA1C8E7\t0x884C\n0x8EA1C8E8\t0x8863\n0x8EA1C8E9\t0x897F\n0x8EA1C8EA\t0x9621\n0x8EA1C8EB\t0x4E32\n0x8EA1C8EC\t0x4EA8\n0x8EA1C8ED\t0x4F4D\n0x8EA1C8EE\t0x4F4F\n0x8EA1C8EF\t0x4F47\n0x8EA1C8F0\t0x4F57\n0x8EA1C8F1\t0x4F5E\n0x8EA1C8F2\t0x4F34\n0x8EA1C8F3\t0x4F5B\n0x8EA1C8F4\t0x4F55\n0x8EA1C8F5\t0x4F30\n0x8EA1C8F6\t0x4F50\n0x8EA1C8F7\t0x4F51\n0x8EA1C8F8\t0x4F3D\n0x8EA1C8F9\t0x4F3A\n0x8EA1C8FA\t0x4F38\n0x8EA1C8FB\t0x4F43\n0x8EA1C8FC\t0x4F54\n0x8EA1C8FD\t0x4F3C\n0x8EA1C8FE\t0x4F46\n0x8EA1C9A1\t0x4F63\n0x8EA1C9A2\t0x4F5C\n0x8EA1C9A3\t0x4F60\n0x8EA1C9A4\t0x4F2F\n0x8EA1C9A5\t0x4F4E\n0x8EA1C9A6\t0x4F36\n0x8EA1C9A7\t0x4F59\n0x8EA1C9A8\t0x4F5D\n0x8EA1C9A9\t0x4F48\n0x8EA1C9AA\t0x4F5A\n0x8EA1C9AB\t0x514C\n0x8EA1C9AC\t0x514B\n0x8EA1C9AD\t0x514D\n0x8EA1C9AE\t0x5175\n0x8EA1C9AF\t0x51B6\n0x8EA1C9B0\t0x51B7\n0x8EA1C9B1\t0x5225\n0x8EA1C9B2\t0x5224\n0x8EA1C9B3\t0x5229\n0x8EA1C9B4\t0x522A\n0x8EA1C9B5\t0x5228\n0x8EA1C9B6\t0x52AB\n0x8EA1C9B7\t0x52A9\n0x8EA1C9B8\t0x52AA\n0x8EA1C9B9\t0x52AC\n0x8EA1C9BA\t0x5323\n0x8EA1C9BB\t0x5373\n0x8EA1C9BC\t0x5375\n0x8EA1C9BD\t0x541D\n0x8EA1C9BE\t0x542D\n0x8EA1C9BF\t0x541E\n0x8EA1C9C0\t0x543E\n0x8EA1C9C1\t0x5426\n0x8EA1C9C2\t0x544E\n0x8EA1C9C3\t0x5427\n0x8EA1C9C4\t0x5446\n0x8EA1C9C5\t0x5443\n0x8EA1C9C6\t0x5433\n0x8EA1C9C7\t0x5448\n0x8EA1C9C8\t0x5442\n0x8EA1C9C9\t0x541B\n0x8EA1C9CA\t0x5429\n0x8EA1C9CB\t0x544A\n0x8EA1C9CC\t0x5439\n0x8EA1C9CD\t0x543B\n0x8EA1C9CE\t0x5438\n0x8EA1C9CF\t0x542E\n0x8EA1C9D0\t0x5435\n0x8EA1C9D1\t0x5436\n0x8EA1C9D2\t0x5420\n0x8EA1C9D3\t0x543C\n0x8EA1C9D4\t0x5440\n0x8EA1C9D5\t0x5431\n0x8EA1C9D6\t0x542B\n0x8EA1C9D7\t0x541F\n0x8EA1C9D8\t0x542C\n0x8EA1C9D9\t0x56EA\n0x8EA1C9DA\t0x56F0\n0x8EA1C9DB\t0x56E4\n0x8EA1C9DC\t0x56EB\n0x8EA1C9DD\t0x574A\n0x8EA1C9DE\t0x5751\n0x8EA1C9DF\t0x5740\n0x8EA1C9E0\t0x574D\n0x8EA1C9E1\t0x5747\n0x8EA1C9E2\t0x574E\n0x8EA1C9E3\t0x573E\n0x8EA1C9E4\t0x5750\n0x8EA1C9E5\t0x574F\n0x8EA1C9E6\t0x573B\n0x8EA1C9E7\t0x58EF\n0x8EA1C9E8\t0x593E\n0x8EA1C9E9\t0x599D\n0x8EA1C9EA\t0x5992\n0x8EA1C9EB\t0x59A8\n0x8EA1C9EC\t0x599E\n0x8EA1C9ED\t0x59A3\n0x8EA1C9EE\t0x5999\n0x8EA1C9EF\t0x5996\n0x8EA1C9F0\t0x598D\n0x8EA1C9F1\t0x59A4\n0x8EA1C9F2\t0x5993\n0x8EA1C9F3\t0x598A\n0x8EA1C9F4\t0x59A5\n0x8EA1C9F5\t0x5B5D\n0x8EA1C9F6\t0x5B5C\n0x8EA1C9F7\t0x5B5A\n0x8EA1C9F8\t0x5B5B\n0x8EA1C9F9\t0x5B8C\n0x8EA1C9FA\t0x5B8B\n0x8EA1C9FB\t0x5B8F\n0x8EA1C9FC\t0x5C2C\n0x8EA1C9FD\t0x5C40\n0x8EA1C9FE\t0x5C41\n0x8EA1CAA1\t0x5C3F\n0x8EA1CAA2\t0x5C3E\n0x8EA1CAA3\t0x5C90\n0x8EA1CAA4\t0x5C91\n0x8EA1CAA5\t0x5C94\n0x8EA1CAA6\t0x5C8C\n0x8EA1CAA7\t0x5DEB\n0x8EA1CAA8\t0x5E0C\n0x8EA1CAA9\t0x5E8F\n0x8EA1CAAA\t0x5E87\n0x8EA1CAAB\t0x5E8A\n0x8EA1CAAC\t0x5EF7\n0x8EA1CAAD\t0x5F04\n0x8EA1CAAE\t0x5F1F\n0x8EA1CAAF\t0x5F64\n0x8EA1CAB0\t0x5F62\n0x8EA1CAB1\t0x5F77\n0x8EA1CAB2\t0x5F79\n0x8EA1CAB3\t0x5FD8\n0x8EA1CAB4\t0x5FCC\n0x8EA1CAB5\t0x5FD7\n0x8EA1CAB6\t0x5FCD\n0x8EA1CAB7\t0x5FF1\n0x8EA1CAB8\t0x5FEB\n0x8EA1CAB9\t0x5FF8\n0x8EA1CABA\t0x5FEA\n0x8EA1CABB\t0x6212\n0x8EA1CABC\t0x6211\n0x8EA1CABD\t0x6284\n0x8EA1CABE\t0x6297\n0x8EA1CABF\t0x6296\n0x8EA1CAC0\t0x6280\n0x8EA1CAC1\t0x6276\n0x8EA1CAC2\t0x6289\n0x8EA1CAC3\t0x626D\n0x8EA1CAC4\t0x628A\n0x8EA1CAC5\t0x627C\n0x8EA1CAC6\t0x627E\n0x8EA1CAC7\t0x6279\n0x8EA1CAC8\t0x6273\n0x8EA1CAC9\t0x6292\n0x8EA1CACA\t0x626F\n0x8EA1CACB\t0x6298\n0x8EA1CACC\t0x626E\n0x8EA1CACD\t0x6295\n0x8EA1CACE\t0x6293\n0x8EA1CACF\t0x6291\n0x8EA1CAD0\t0x6286\n0x8EA1CAD1\t0x6539\n0x8EA1CAD2\t0x653B\n0x8EA1CAD3\t0x6538\n0x8EA1CAD4\t0x65F1\n0x8EA1CAD5\t0x66F4\n0x8EA1CAD6\t0x675F\n0x8EA1CAD7\t0x674E\n0x8EA1CAD8\t0x674F\n0x8EA1CAD9\t0x6750\n0x8EA1CADA\t0x6751\n0x8EA1CADB\t0x675C\n0x8EA1CADC\t0x6756\n0x8EA1CADD\t0x675E\n0x8EA1CADE\t0x6749\n0x8EA1CADF\t0x6746\n0x8EA1CAE0\t0x6760\n0x8EA1CAE1\t0x6753\n0x8EA1CAE2\t0x6757\n0x8EA1CAE3\t0x6B65\n0x8EA1CAE4\t0x6BCF\n0x8EA1CAE5\t0x6C42\n0x8EA1CAE6\t0x6C5E\n0x8EA1CAE7\t0x6C99\n0x8EA1CAE8\t0x6C81\n0x8EA1CAE9\t0x6C88\n0x8EA1CAEA\t0x6C89\n0x8EA1CAEB\t0x6C85\n0x8EA1CAEC\t0x6C9B\n0x8EA1CAED\t0x6C6A\n0x8EA1CAEE\t0x6C7A\n0x8EA1CAEF\t0x6C90\n0x8EA1CAF0\t0x6C70\n0x8EA1CAF1\t0x6C8C\n0x8EA1CAF2\t0x6C68\n0x8EA1CAF3\t0x6C96\n0x8EA1CAF4\t0x6C92\n0x8EA1CAF5\t0x6C7D\n0x8EA1CAF6\t0x6C83\n0x8EA1CAF7\t0x6C72\n0x8EA1CAF8\t0x6C7E\n0x8EA1CAF9\t0x6C74\n0x8EA1CAFA\t0x6C86\n0x8EA1CAFB\t0x6C76\n0x8EA1CAFC\t0x6C8D\n0x8EA1CAFD\t0x6C94\n0x8EA1CAFE\t0x6C98\n0x8EA1CBA1\t0x6C82\n0x8EA1CBA2\t0x7076\n0x8EA1CBA3\t0x707C\n0x8EA1CBA4\t0x707D\n0x8EA1CBA5\t0x7078\n0x8EA1CBA6\t0x7262\n0x8EA1CBA7\t0x7261\n0x8EA1CBA8\t0x7260\n0x8EA1CBA9\t0x72C4\n0x8EA1CBAA\t0x72C2\n0x8EA1CBAB\t0x7396\n0x8EA1CBAC\t0x752C\n0x8EA1CBAD\t0x752B\n0x8EA1CBAE\t0x7537\n0x8EA1CBAF\t0x7538\n0x8EA1CBB0\t0x7682\n0x8EA1CBB1\t0x76EF\n0x8EA1CBB2\t0x77E3\n0x8EA1CBB3\t0x79C1\n0x8EA1CBB4\t0x79C0\n0x8EA1CBB5\t0x79BF\n0x8EA1CBB6\t0x7A76\n0x8EA1CBB7\t0x7CFB\n0x8EA1CBB8\t0x7F55\n0x8EA1CBB9\t0x8096\n0x8EA1CBBA\t0x8093\n0x8EA1CBBB\t0x809D\n0x8EA1CBBC\t0x8098\n0x8EA1CBBD\t0x809B\n0x8EA1CBBE\t0x809A\n0x8EA1CBBF\t0x80B2\n0x8EA1CBC0\t0x826F\n0x8EA1CBC1\t0x8292\n0x8EA1CBC2\t0x828B\n0x8EA1CBC3\t0x828D\n0x8EA1CBC4\t0x898B\n0x8EA1CBC5\t0x89D2\n0x8EA1CBC6\t0x8A00\n0x8EA1CBC7\t0x8C37\n0x8EA1CBC8\t0x8C46\n0x8EA1CBC9\t0x8C55\n0x8EA1CBCA\t0x8C9D\n0x8EA1CBCB\t0x8D64\n0x8EA1CBCC\t0x8D70\n0x8EA1CBCD\t0x8DB3\n0x8EA1CBCE\t0x8EAB\n0x8EA1CBCF\t0x8ECA\n0x8EA1CBD0\t0x8F9B\n0x8EA1CBD1\t0x8FB0\n0x8EA1CBD2\t0x8FC2\n0x8EA1CBD3\t0x8FC6\n0x8EA1CBD4\t0x8FC5\n0x8EA1CBD5\t0x8FC4\n0x8EA1CBD6\t0x5DE1\n0x8EA1CBD7\t0x9091\n0x8EA1CBD8\t0x90A2\n0x8EA1CBD9\t0x90AA\n0x8EA1CBDA\t0x90A6\n0x8EA1CBDB\t0x90A3\n0x8EA1CBDC\t0x9149\n0x8EA1CBDD\t0x91C6\n0x8EA1CBDE\t0x91CC\n0x8EA1CBDF\t0x9632\n0x8EA1CBE0\t0x962E\n0x8EA1CBE1\t0x9631\n0x8EA1CBE2\t0x962A\n0x8EA1CBE3\t0x962C\n0x8EA1CBE4\t0x4E26\n0x8EA1CBE5\t0x4E56\n0x8EA1CBE6\t0x4E73\n0x8EA1CBE7\t0x4E8B\n0x8EA1CBE8\t0x4E9B\n0x8EA1CBE9\t0x4E9E\n0x8EA1CBEA\t0x4EAB\n0x8EA1CBEB\t0x4EAC\n0x8EA1CBEC\t0x4F6F\n0x8EA1CBED\t0x4F9D\n0x8EA1CBEE\t0x4F8D\n0x8EA1CBEF\t0x4F73\n0x8EA1CBF0\t0x4F7F\n0x8EA1CBF1\t0x4F6C\n0x8EA1CBF2\t0x4F9B\n0x8EA1CBF3\t0x4F8B\n0x8EA1CBF4\t0x4F86\n0x8EA1CBF5\t0x4F83\n0x8EA1CBF6\t0x4F70\n0x8EA1CBF7\t0x4F75\n0x8EA1CBF8\t0x4F88\n0x8EA1CBF9\t0x4F69\n0x8EA1CBFA\t0x4F7B\n0x8EA1CBFB\t0x4F96\n0x8EA1CBFC\t0x4F7E\n0x8EA1CBFD\t0x4F8F\n0x8EA1CBFE\t0x4F91\n0x8EA1CCA1\t0x4F7A\n0x8EA1CCA2\t0x5154\n0x8EA1CCA3\t0x5152\n0x8EA1CCA4\t0x5155\n0x8EA1CCA5\t0x5169\n0x8EA1CCA6\t0x5177\n0x8EA1CCA7\t0x5176\n0x8EA1CCA8\t0x5178\n0x8EA1CCA9\t0x51BD\n0x8EA1CCAA\t0x51FD\n0x8EA1CCAB\t0x523B\n0x8EA1CCAC\t0x5238\n0x8EA1CCAD\t0x5237\n0x8EA1CCAE\t0x523A\n0x8EA1CCAF\t0x5230\n0x8EA1CCB0\t0x522E\n0x8EA1CCB1\t0x5236\n0x8EA1CCB2\t0x5241\n0x8EA1CCB3\t0x52BE\n0x8EA1CCB4\t0x52BB\n0x8EA1CCB5\t0x5352\n0x8EA1CCB6\t0x5354\n0x8EA1CCB7\t0x5353\n0x8EA1CCB8\t0x5351\n0x8EA1CCB9\t0x5366\n0x8EA1CCBA\t0x5377\n0x8EA1CCBB\t0x5378\n0x8EA1CCBC\t0x5379\n0x8EA1CCBD\t0x53D6\n0x8EA1CCBE\t0x53D4\n0x8EA1CCBF\t0x53D7\n0x8EA1CCC0\t0x5473\n0x8EA1CCC1\t0x5475\n0x8EA1CCC2\t0x5496\n0x8EA1CCC3\t0x5478\n0x8EA1CCC4\t0x5495\n0x8EA1CCC5\t0x5480\n0x8EA1CCC6\t0x547B\n0x8EA1CCC7\t0x5477\n0x8EA1CCC8\t0x5484\n0x8EA1CCC9\t0x5492\n0x8EA1CCCA\t0x5486\n0x8EA1CCCB\t0x547C\n0x8EA1CCCC\t0x5490\n0x8EA1CCCD\t0x5471\n0x8EA1CCCE\t0x5476\n0x8EA1CCCF\t0x548C\n0x8EA1CCD0\t0x549A\n0x8EA1CCD1\t0x5462\n0x8EA1CCD2\t0x5468\n0x8EA1CCD3\t0x548B\n0x8EA1CCD4\t0x547D\n0x8EA1CCD5\t0x548E\n0x8EA1CCD6\t0x56FA\n0x8EA1CCD7\t0x5783\n0x8EA1CCD8\t0x5777\n0x8EA1CCD9\t0x576A\n0x8EA1CCDA\t0x5769\n0x8EA1CCDB\t0x5761\n0x8EA1CCDC\t0x5766\n0x8EA1CCDD\t0x5764\n0x8EA1CCDE\t0x577C\n0x8EA1CCDF\t0x591C\n0x8EA1CCE0\t0x5949\n0x8EA1CCE1\t0x5947\n0x8EA1CCE2\t0x5948\n0x8EA1CCE3\t0x5944\n0x8EA1CCE4\t0x5954\n0x8EA1CCE5\t0x59BE\n0x8EA1CCE6\t0x59BB\n0x8EA1CCE7\t0x59D4\n0x8EA1CCE8\t0x59B9\n0x8EA1CCE9\t0x59AE\n0x8EA1CCEA\t0x59D1\n0x8EA1CCEB\t0x59C6\n0x8EA1CCEC\t0x59D0\n0x8EA1CCED\t0x59CD\n0x8EA1CCEE\t0x59CB\n0x8EA1CCEF\t0x59D3\n0x8EA1CCF0\t0x59CA\n0x8EA1CCF1\t0x59AF\n0x8EA1CCF2\t0x59B3\n0x8EA1CCF3\t0x59D2\n0x8EA1CCF4\t0x59C5\n0x8EA1CCF5\t0x5B5F\n0x8EA1CCF6\t0x5B64\n0x8EA1CCF7\t0x5B63\n0x8EA1CCF8\t0x5B97\n0x8EA1CCF9\t0x5B9A\n0x8EA1CCFA\t0x5B98\n0x8EA1CCFB\t0x5B9C\n0x8EA1CCFC\t0x5B99\n0x8EA1CCFD\t0x5B9B\n0x8EA1CCFE\t0x5C1A\n0x8EA1CDA1\t0x5C48\n0x8EA1CDA2\t0x5C45\n0x8EA1CDA3\t0x5C46\n0x8EA1CDA4\t0x5CB7\n0x8EA1CDA5\t0x5CA1\n0x8EA1CDA6\t0x5CB8\n0x8EA1CDA7\t0x5CA9\n0x8EA1CDA8\t0x5CAB\n0x8EA1CDA9\t0x5CB1\n0x8EA1CDAA\t0x5CB3\n0x8EA1CDAB\t0x5E18\n0x8EA1CDAC\t0x5E1A\n0x8EA1CDAD\t0x5E16\n0x8EA1CDAE\t0x5E15\n0x8EA1CDAF\t0x5E1B\n0x8EA1CDB0\t0x5E11\n0x8EA1CDB1\t0x5E78\n0x8EA1CDB2\t0x5E9A\n0x8EA1CDB3\t0x5E97\n0x8EA1CDB4\t0x5E9C\n0x8EA1CDB5\t0x5E95\n0x8EA1CDB6\t0x5E96\n0x8EA1CDB7\t0x5EF6\n0x8EA1CDB8\t0x5F26\n0x8EA1CDB9\t0x5F27\n0x8EA1CDBA\t0x5F29\n0x8EA1CDBB\t0x5F80\n0x8EA1CDBC\t0x5F81\n0x8EA1CDBD\t0x5F7F\n0x8EA1CDBE\t0x5F7C\n0x8EA1CDBF\t0x5FDD\n0x8EA1CDC0\t0x5FE0\n0x8EA1CDC1\t0x5FFD\n0x8EA1CDC2\t0x5FF5\n0x8EA1CDC3\t0x5FFF\n0x8EA1CDC4\t0x600F\n0x8EA1CDC5\t0x6014\n0x8EA1CDC6\t0x602F\n0x8EA1CDC7\t0x6035\n0x8EA1CDC8\t0x6016\n0x8EA1CDC9\t0x602A\n0x8EA1CDCA\t0x6015\n0x8EA1CDCB\t0x6021\n0x8EA1CDCC\t0x6027\n0x8EA1CDCD\t0x6029\n0x8EA1CDCE\t0x602B\n0x8EA1CDCF\t0x601B\n0x8EA1CDD0\t0x6216\n0x8EA1CDD1\t0x6215\n0x8EA1CDD2\t0x623F\n0x8EA1CDD3\t0x623E\n0x8EA1CDD4\t0x6240\n0x8EA1CDD5\t0x627F\n0x8EA1CDD6\t0x62C9\n0x8EA1CDD7\t0x62CC\n0x8EA1CDD8\t0x62C4\n0x8EA1CDD9\t0x62BF\n0x8EA1CDDA\t0x62C2\n0x8EA1CDDB\t0x62B9\n0x8EA1CDDC\t0x62D2\n0x8EA1CDDD\t0x62DB\n0x8EA1CDDE\t0x62AB\n0x8EA1CDDF\t0x62D3\n0x8EA1CDE0\t0x62D4\n0x8EA1CDE1\t0x62CB\n0x8EA1CDE2\t0x62C8\n0x8EA1CDE3\t0x62A8\n0x8EA1CDE4\t0x62BD\n0x8EA1CDE5\t0x62BC\n0x8EA1CDE6\t0x62D0\n0x8EA1CDE7\t0x62D9\n0x8EA1CDE8\t0x62C7\n0x8EA1CDE9\t0x62CD\n0x8EA1CDEA\t0x62B5\n0x8EA1CDEB\t0x62DA\n0x8EA1CDEC\t0x62B1\n0x8EA1CDED\t0x62D8\n0x8EA1CDEE\t0x62D6\n0x8EA1CDEF\t0x62D7\n0x8EA1CDF0\t0x62C6\n0x8EA1CDF1\t0x62AC\n0x8EA1CDF2\t0x62CE\n0x8EA1CDF3\t0x653E\n0x8EA1CDF4\t0x65A7\n0x8EA1CDF5\t0x65BC\n0x8EA1CDF6\t0x65FA\n0x8EA1CDF7\t0x6614\n0x8EA1CDF8\t0x6613\n0x8EA1CDF9\t0x660C\n0x8EA1CDFA\t0x6606\n0x8EA1CDFB\t0x6602\n0x8EA1CDFC\t0x660E\n0x8EA1CDFD\t0x6600\n0x8EA1CDFE\t0x660F\n0x8EA1CEA1\t0x6615\n0x8EA1CEA2\t0x660A\n0x8EA1CEA3\t0x6607\n0x8EA1CEA4\t0x670D\n0x8EA1CEA5\t0x670B\n0x8EA1CEA6\t0x676D\n0x8EA1CEA7\t0x678B\n0x8EA1CEA8\t0x6795\n0x8EA1CEA9\t0x6771\n0x8EA1CEAA\t0x679C\n0x8EA1CEAB\t0x6773\n0x8EA1CEAC\t0x6777\n0x8EA1CEAD\t0x6787\n0x8EA1CEAE\t0x679D\n0x8EA1CEAF\t0x6797\n0x8EA1CEB0\t0x676F\n0x8EA1CEB1\t0x6770\n0x8EA1CEB2\t0x677F\n0x8EA1CEB3\t0x6789\n0x8EA1CEB4\t0x677E\n0x8EA1CEB5\t0x6790\n0x8EA1CEB6\t0x6775\n0x8EA1CEB7\t0x679A\n0x8EA1CEB8\t0x6793\n0x8EA1CEB9\t0x677C\n0x8EA1CEBA\t0x676A\n0x8EA1CEBB\t0x6772\n0x8EA1CEBC\t0x6B23\n0x8EA1CEBD\t0x6B66\n0x8EA1CEBE\t0x6B67\n0x8EA1CEBF\t0x6B7F\n0x8EA1CEC0\t0x6C13\n0x8EA1CEC1\t0x6C1B\n0x8EA1CEC2\t0x6CE3\n0x8EA1CEC3\t0x6CE8\n0x8EA1CEC4\t0x6CF3\n0x8EA1CEC5\t0x6CB1\n0x8EA1CEC6\t0x6CCC\n0x8EA1CEC7\t0x6CE5\n0x8EA1CEC8\t0x6CB3\n0x8EA1CEC9\t0x6CBD\n0x8EA1CECA\t0x6CBE\n0x8EA1CECB\t0x6CBC\n0x8EA1CECC\t0x6CE2\n0x8EA1CECD\t0x6CAB\n0x8EA1CECE\t0x6CD5\n0x8EA1CECF\t0x6CD3\n0x8EA1CED0\t0x6CB8\n0x8EA1CED1\t0x6CC4\n0x8EA1CED2\t0x6CB9\n0x8EA1CED3\t0x6CC1\n0x8EA1CED4\t0x6CAE\n0x8EA1CED5\t0x6CD7\n0x8EA1CED6\t0x6CC5\n0x8EA1CED7\t0x6CF1\n0x8EA1CED8\t0x6CBF\n0x8EA1CED9\t0x6CBB\n0x8EA1CEDA\t0x6CE1\n0x8EA1CEDB\t0x6CDB\n0x8EA1CEDC\t0x6CCA\n0x8EA1CEDD\t0x6CAC\n0x8EA1CEDE\t0x6CEF\n0x8EA1CEDF\t0x6CDC\n0x8EA1CEE0\t0x6CD6\n0x8EA1CEE1\t0x6CE0\n0x8EA1CEE2\t0x7095\n0x8EA1CEE3\t0x708E\n0x8EA1CEE4\t0x7092\n0x8EA1CEE5\t0x708A\n0x8EA1CEE6\t0x7099\n0x8EA1CEE7\t0x722C\n0x8EA1CEE8\t0x722D\n0x8EA1CEE9\t0x7238\n0x8EA1CEEA\t0x7248\n0x8EA1CEEB\t0x7267\n0x8EA1CEEC\t0x7269\n0x8EA1CEED\t0x72C0\n0x8EA1CEEE\t0x72CE\n0x8EA1CEEF\t0x72D9\n0x8EA1CEF0\t0x72D7\n0x8EA1CEF1\t0x72D0\n0x8EA1CEF2\t0x73A9\n0x8EA1CEF3\t0x73A8\n0x8EA1CEF4\t0x739F\n0x8EA1CEF5\t0x73AB\n0x8EA1CEF6\t0x73A5\n0x8EA1CEF7\t0x753D\n0x8EA1CEF8\t0x759D\n0x8EA1CEF9\t0x7599\n0x8EA1CEFA\t0x759A\n0x8EA1CEFB\t0x7684\n0x8EA1CEFC\t0x76C2\n0x8EA1CEFD\t0x76F2\n0x8EA1CEFE\t0x76F4\n0x8EA1CFA1\t0x77E5\n0x8EA1CFA2\t0x77FD\n0x8EA1CFA3\t0x793E\n0x8EA1CFA4\t0x7940\n0x8EA1CFA5\t0x7941\n0x8EA1CFA6\t0x79C9\n0x8EA1CFA7\t0x79C8\n0x8EA1CFA8\t0x7A7A\n0x8EA1CFA9\t0x7A79\n0x8EA1CFAA\t0x7AFA\n0x8EA1CFAB\t0x7CFE\n0x8EA1CFAC\t0x7F54\n0x8EA1CFAD\t0x7F8C\n0x8EA1CFAE\t0x7F8B\n0x8EA1CFAF\t0x8005\n0x8EA1CFB0\t0x80BA\n0x8EA1CFB1\t0x80A5\n0x8EA1CFB2\t0x80A2\n0x8EA1CFB3\t0x80B1\n0x8EA1CFB4\t0x80A1\n0x8EA1CFB5\t0x80AB\n0x8EA1CFB6\t0x80A9\n0x8EA1CFB7\t0x80B4\n0x8EA1CFB8\t0x80AA\n0x8EA1CFB9\t0x80AF\n0x8EA1CFBA\t0x81E5\n0x8EA1CFBB\t0x81FE\n0x8EA1CFBC\t0x820D\n0x8EA1CFBD\t0x82B3\n0x8EA1CFBE\t0x829D\n0x8EA1CFBF\t0x8299\n0x8EA1CFC0\t0x82AD\n0x8EA1CFC1\t0x82BD\n0x8EA1CFC2\t0x829F\n0x8EA1CFC3\t0x82B9\n0x8EA1CFC4\t0x82B1\n0x8EA1CFC5\t0x82AC\n0x8EA1CFC6\t0x82A5\n0x8EA1CFC7\t0x82AF\n0x8EA1CFC8\t0x82B8\n0x8EA1CFC9\t0x82A3\n0x8EA1CFCA\t0x82B0\n0x8EA1CFCB\t0x82BE\n0x8EA1CFCC\t0x82B7\n0x8EA1CFCD\t0x864E\n0x8EA1CFCE\t0x8671\n0x8EA1CFCF\t0x521D\n0x8EA1CFD0\t0x8868\n0x8EA1CFD1\t0x8ECB\n0x8EA1CFD2\t0x8FCE\n0x8EA1CFD3\t0x8FD4\n0x8EA1CFD4\t0x8FD1\n0x8EA1CFD5\t0x90B5\n0x8EA1CFD6\t0x90B8\n0x8EA1CFD7\t0x90B1\n0x8EA1CFD8\t0x90B6\n0x8EA1CFD9\t0x91C7\n0x8EA1CFDA\t0x91D1\n0x8EA1CFDB\t0x9577\n0x8EA1CFDC\t0x9580\n0x8EA1CFDD\t0x961C\n0x8EA1CFDE\t0x9640\n0x8EA1CFDF\t0x963F\n0x8EA1CFE0\t0x963B\n0x8EA1CFE1\t0x9644\n0x8EA1CFE2\t0x9642\n0x8EA1CFE3\t0x96B9\n0x8EA1CFE4\t0x96E8\n0x8EA1CFE5\t0x9752\n0x8EA1CFE6\t0x975E\n0x8EA1CFE7\t0x4E9F\n0x8EA1CFE8\t0x4EAD\n0x8EA1CFE9\t0x4EAE\n0x8EA1CFEA\t0x4FE1\n0x8EA1CFEB\t0x4FB5\n0x8EA1CFEC\t0x4FAF\n0x8EA1CFED\t0x4FBF\n0x8EA1CFEE\t0x4FE0\n0x8EA1CFEF\t0x4FD1\n0x8EA1CFF0\t0x4FCF\n0x8EA1CFF1\t0x4FDD\n0x8EA1CFF2\t0x4FC3\n0x8EA1CFF3\t0x4FB6\n0x8EA1CFF4\t0x4FD8\n0x8EA1CFF5\t0x4FDF\n0x8EA1CFF6\t0x4FCA\n0x8EA1CFF7\t0x4FD7\n0x8EA1CFF8\t0x4FAE\n0x8EA1CFF9\t0x4FD0\n0x8EA1CFFA\t0x4FC4\n0x8EA1CFFB\t0x4FC2\n0x8EA1CFFC\t0x4FDA\n0x8EA1CFFD\t0x4FCE\n0x8EA1CFFE\t0x4FDE\n0x8EA1D0A1\t0x4FB7\n0x8EA1D0A2\t0x5157\n0x8EA1D0A3\t0x5192\n0x8EA1D0A4\t0x5191\n0x8EA1D0A5\t0x51A0\n0x8EA1D0A6\t0x524E\n0x8EA1D0A7\t0x5243\n0x8EA1D0A8\t0x524A\n0x8EA1D0A9\t0x524D\n0x8EA1D0AA\t0x524C\n0x8EA1D0AB\t0x524B\n0x8EA1D0AC\t0x5247\n0x8EA1D0AD\t0x52C7\n0x8EA1D0AE\t0x52C9\n0x8EA1D0AF\t0x52C3\n0x8EA1D0B0\t0x52C1\n0x8EA1D0B1\t0x530D\n0x8EA1D0B2\t0x5357\n0x8EA1D0B3\t0x537B\n0x8EA1D0B4\t0x539A\n0x8EA1D0B5\t0x53DB\n0x8EA1D0B6\t0x54AC\n0x8EA1D0B7\t0x54C0\n0x8EA1D0B8\t0x54A8\n0x8EA1D0B9\t0x54CE\n0x8EA1D0BA\t0x54C9\n0x8EA1D0BB\t0x54B8\n0x8EA1D0BC\t0x54A6\n0x8EA1D0BD\t0x54B3\n0x8EA1D0BE\t0x54C7\n0x8EA1D0BF\t0x54C2\n0x8EA1D0C0\t0x54BD\n0x8EA1D0C1\t0x54AA\n0x8EA1D0C2\t0x54C1\n0x8EA1D0C3\t0x54C4\n0x8EA1D0C4\t0x54C8\n0x8EA1D0C5\t0x54AF\n0x8EA1D0C6\t0x54AB\n0x8EA1D0C7\t0x54B1\n0x8EA1D0C8\t0x54BB\n0x8EA1D0C9\t0x54A9\n0x8EA1D0CA\t0x54A7\n0x8EA1D0CB\t0x54BF\n0x8EA1D0CC\t0x56FF\n0x8EA1D0CD\t0x5782\n0x8EA1D0CE\t0x578B\n0x8EA1D0CF\t0x57A0\n0x8EA1D0D0\t0x57A3\n0x8EA1D0D1\t0x57A2\n0x8EA1D0D2\t0x57CE\n0x8EA1D0D3\t0x57AE\n0x8EA1D0D4\t0x5793\n0x8EA1D0D5\t0x5955\n0x8EA1D0D6\t0x5951\n0x8EA1D0D7\t0x594F\n0x8EA1D0D8\t0x594E\n0x8EA1D0D9\t0x5950\n0x8EA1D0DA\t0x59DC\n0x8EA1D0DB\t0x59D8\n0x8EA1D0DC\t0x59FF\n0x8EA1D0DD\t0x59E3\n0x8EA1D0DE\t0x59E8\n0x8EA1D0DF\t0x5A03\n0x8EA1D0E0\t0x59E5\n0x8EA1D0E1\t0x59EA\n0x8EA1D0E2\t0x59DA\n0x8EA1D0E3\t0x59E6\n0x8EA1D0E4\t0x5A01\n0x8EA1D0E5\t0x59FB\n0x8EA1D0E6\t0x5B69\n0x8EA1D0E7\t0x5BA3\n0x8EA1D0E8\t0x5BA6\n0x8EA1D0E9\t0x5BA4\n0x8EA1D0EA\t0x5BA2\n0x8EA1D0EB\t0x5BA5\n0x8EA1D0EC\t0x5C01\n0x8EA1D0ED\t0x5C4E\n0x8EA1D0EE\t0x5C4F\n0x8EA1D0EF\t0x5C4D\n0x8EA1D0F0\t0x5C4B\n0x8EA1D0F1\t0x5CD9\n0x8EA1D0F2\t0x5CD2\n0x8EA1D0F3\t0x5DF7\n0x8EA1D0F4\t0x5E1D\n0x8EA1D0F5\t0x5E25\n0x8EA1D0F6\t0x5E1F\n0x8EA1D0F7\t0x5E7D\n0x8EA1D0F8\t0x5EA0\n0x8EA1D0F9\t0x5EA6\n0x8EA1D0FA\t0x5EFA\n0x8EA1D0FB\t0x5F08\n0x8EA1D0FC\t0x5F2D\n0x8EA1D0FD\t0x5F65\n0x8EA1D0FE\t0x5F88\n0x8EA1D1A1\t0x5F85\n0x8EA1D1A2\t0x5F8A\n0x8EA1D1A3\t0x5F8B\n0x8EA1D1A4\t0x5F87\n0x8EA1D1A5\t0x5F8C\n0x8EA1D1A6\t0x5F89\n0x8EA1D1A7\t0x6012\n0x8EA1D1A8\t0x601D\n0x8EA1D1A9\t0x6020\n0x8EA1D1AA\t0x6025\n0x8EA1D1AB\t0x600E\n0x8EA1D1AC\t0x6028\n0x8EA1D1AD\t0x604D\n0x8EA1D1AE\t0x6070\n0x8EA1D1AF\t0x6068\n0x8EA1D1B0\t0x6062\n0x8EA1D1B1\t0x6046\n0x8EA1D1B2\t0x6043\n0x8EA1D1B3\t0x606C\n0x8EA1D1B4\t0x606B\n0x8EA1D1B5\t0x606A\n0x8EA1D1B6\t0x6064\n0x8EA1D1B7\t0x6241\n0x8EA1D1B8\t0x62DC\n0x8EA1D1B9\t0x6316\n0x8EA1D1BA\t0x6309\n0x8EA1D1BB\t0x62FC\n0x8EA1D1BC\t0x62ED\n0x8EA1D1BD\t0x6301\n0x8EA1D1BE\t0x62EE\n0x8EA1D1BF\t0x62FD\n0x8EA1D1C0\t0x6307\n0x8EA1D1C1\t0x62F1\n0x8EA1D1C2\t0x62F7\n0x8EA1D1C3\t0x62EF\n0x8EA1D1C4\t0x62EC\n0x8EA1D1C5\t0x62FE\n0x8EA1D1C6\t0x62F4\n0x8EA1D1C7\t0x6311\n0x8EA1D1C8\t0x6302\n0x8EA1D1C9\t0x653F\n0x8EA1D1CA\t0x6545\n0x8EA1D1CB\t0x65AB\n0x8EA1D1CC\t0x65BD\n0x8EA1D1CD\t0x65E2\n0x8EA1D1CE\t0x6625\n0x8EA1D1CF\t0x662D\n0x8EA1D1D0\t0x6620\n0x8EA1D1D1\t0x6627\n0x8EA1D1D2\t0x662F\n0x8EA1D1D3\t0x661F\n0x8EA1D1D4\t0x6628\n0x8EA1D1D5\t0x6631\n0x8EA1D1D6\t0x6624\n0x8EA1D1D7\t0x66F7\n0x8EA1D1D8\t0x67FF\n0x8EA1D1D9\t0x67D3\n0x8EA1D1DA\t0x67F1\n0x8EA1D1DB\t0x67D4\n0x8EA1D1DC\t0x67D0\n0x8EA1D1DD\t0x67EC\n0x8EA1D1DE\t0x67B6\n0x8EA1D1DF\t0x67AF\n0x8EA1D1E0\t0x67F5\n0x8EA1D1E1\t0x67E9\n0x8EA1D1E2\t0x67EF\n0x8EA1D1E3\t0x67C4\n0x8EA1D1E4\t0x67D1\n0x8EA1D1E5\t0x67B4\n0x8EA1D1E6\t0x67DA\n0x8EA1D1E7\t0x67E5\n0x8EA1D1E8\t0x67B8\n0x8EA1D1E9\t0x67CF\n0x8EA1D1EA\t0x67DE\n0x8EA1D1EB\t0x67F3\n0x8EA1D1EC\t0x67B0\n0x8EA1D1ED\t0x67D9\n0x8EA1D1EE\t0x67E2\n0x8EA1D1EF\t0x67DD\n0x8EA1D1F0\t0x67D2\n0x8EA1D1F1\t0x6B6A\n0x8EA1D1F2\t0x6B83\n0x8EA1D1F3\t0x6B86\n0x8EA1D1F4\t0x6BB5\n0x8EA1D1F5\t0x6BD2\n0x8EA1D1F6\t0x6BD7\n0x8EA1D1F7\t0x6C1F\n0x8EA1D1F8\t0x6CC9\n0x8EA1D1F9\t0x6D0B\n0x8EA1D1FA\t0x6D32\n0x8EA1D1FB\t0x6D2A\n0x8EA1D1FC\t0x6D41\n0x8EA1D1FD\t0x6D25\n0x8EA1D1FE\t0x6D0C\n0x8EA1D2A1\t0x6D31\n0x8EA1D2A2\t0x6D1E\n0x8EA1D2A3\t0x6D17\n0x8EA1D2A4\t0x6D3B\n0x8EA1D2A5\t0x6D3D\n0x8EA1D2A6\t0x6D3E\n0x8EA1D2A7\t0x6D36\n0x8EA1D2A8\t0x6D1B\n0x8EA1D2A9\t0x6CF5\n0x8EA1D2AA\t0x6D39\n0x8EA1D2AB\t0x6D27\n0x8EA1D2AC\t0x6D38\n0x8EA1D2AD\t0x6D29\n0x8EA1D2AE\t0x6D2E\n0x8EA1D2AF\t0x6D35\n0x8EA1D2B0\t0x6D0E\n0x8EA1D2B1\t0x6D2B\n0x8EA1D2B2\t0x70AB\n0x8EA1D2B3\t0x70BA\n0x8EA1D2B4\t0x70B3\n0x8EA1D2B5\t0x70AC\n0x8EA1D2B6\t0x70AF\n0x8EA1D2B7\t0x70AD\n0x8EA1D2B8\t0x70B8\n0x8EA1D2B9\t0x70AE\n0x8EA1D2BA\t0x70A4\n0x8EA1D2BB\t0x7230\n0x8EA1D2BC\t0x7272\n0x8EA1D2BD\t0x726F\n0x8EA1D2BE\t0x7274\n0x8EA1D2BF\t0x72E9\n0x8EA1D2C0\t0x72E0\n0x8EA1D2C1\t0x72E1\n0x8EA1D2C2\t0x73B7\n0x8EA1D2C3\t0x73CA\n0x8EA1D2C4\t0x73BB\n0x8EA1D2C5\t0x73B2\n0x8EA1D2C6\t0x73CD\n0x8EA1D2C7\t0x73C0\n0x8EA1D2C8\t0x73B3\n0x8EA1D2C9\t0x751A\n0x8EA1D2CA\t0x752D\n0x8EA1D2CB\t0x754F\n0x8EA1D2CC\t0x754C\n0x8EA1D2CD\t0x754E\n0x8EA1D2CE\t0x754B\n0x8EA1D2CF\t0x75AB\n0x8EA1D2D0\t0x75A4\n0x8EA1D2D1\t0x75A5\n0x8EA1D2D2\t0x75A2\n0x8EA1D2D3\t0x75A3\n0x8EA1D2D4\t0x7678\n0x8EA1D2D5\t0x7686\n0x8EA1D2D6\t0x7687\n0x8EA1D2D7\t0x7688\n0x8EA1D2D8\t0x76C8\n0x8EA1D2D9\t0x76C6\n0x8EA1D2DA\t0x76C3\n0x8EA1D2DB\t0x76C5\n0x8EA1D2DC\t0x7701\n0x8EA1D2DD\t0x76F9\n0x8EA1D2DE\t0x76F8\n0x8EA1D2DF\t0x7709\n0x8EA1D2E0\t0x770B\n0x8EA1D2E1\t0x76FE\n0x8EA1D2E2\t0x76FC\n0x8EA1D2E3\t0x7707\n0x8EA1D2E4\t0x77DC\n0x8EA1D2E5\t0x7802\n0x8EA1D2E6\t0x7814\n0x8EA1D2E7\t0x780C\n0x8EA1D2E8\t0x780D\n0x8EA1D2E9\t0x7946\n0x8EA1D2EA\t0x7949\n0x8EA1D2EB\t0x7948\n0x8EA1D2EC\t0x7947\n0x8EA1D2ED\t0x79B9\n0x8EA1D2EE\t0x79BA\n0x8EA1D2EF\t0x79D1\n0x8EA1D2F0\t0x79D2\n0x8EA1D2F1\t0x79CB\n0x8EA1D2F2\t0x7A7F\n0x8EA1D2F3\t0x7A81\n0x8EA1D2F4\t0x7AFF\n0x8EA1D2F5\t0x7AFD\n0x8EA1D2F6\t0x7C7D\n0x8EA1D2F7\t0x7D02\n0x8EA1D2F8\t0x7D05\n0x8EA1D2F9\t0x7D00\n0x8EA1D2FA\t0x7D09\n0x8EA1D2FB\t0x7D07\n0x8EA1D2FC\t0x7D04\n0x8EA1D2FD\t0x7D06\n0x8EA1D2FE\t0x7F38\n0x8EA1D3A1\t0x7F8E\n0x8EA1D3A2\t0x7FBF\n0x8EA1D3A3\t0x8010\n0x8EA1D3A4\t0x800D\n0x8EA1D3A5\t0x8011\n0x8EA1D3A6\t0x8036\n0x8EA1D3A7\t0x80D6\n0x8EA1D3A8\t0x80E5\n0x8EA1D3A9\t0x80DA\n0x8EA1D3AA\t0x80C3\n0x8EA1D3AB\t0x80C4\n0x8EA1D3AC\t0x80CC\n0x8EA1D3AD\t0x80E1\n0x8EA1D3AE\t0x80DB\n0x8EA1D3AF\t0x80CE\n0x8EA1D3B0\t0x80DE\n0x8EA1D3B1\t0x80E4\n0x8EA1D3B2\t0x80DD\n0x8EA1D3B3\t0x81F4\n0x8EA1D3B4\t0x8222\n0x8EA1D3B5\t0x82E7\n0x8EA1D3B6\t0x8303\n0x8EA1D3B7\t0x8305\n0x8EA1D3B8\t0x82E3\n0x8EA1D3B9\t0x82DB\n0x8EA1D3BA\t0x82E6\n0x8EA1D3BB\t0x8304\n0x8EA1D3BC\t0x82E5\n0x8EA1D3BD\t0x8302\n0x8EA1D3BE\t0x8309\n0x8EA1D3BF\t0x82D2\n0x8EA1D3C0\t0x82D7\n0x8EA1D3C1\t0x82F1\n0x8EA1D3C2\t0x8301\n0x8EA1D3C3\t0x82DC\n0x8EA1D3C4\t0x82D4\n0x8EA1D3C5\t0x82D1\n0x8EA1D3C6\t0x82DE\n0x8EA1D3C7\t0x82D3\n0x8EA1D3C8\t0x82DF\n0x8EA1D3C9\t0x82EF\n0x8EA1D3CA\t0x8306\n0x8EA1D3CB\t0x8650\n0x8EA1D3CC\t0x8679\n0x8EA1D3CD\t0x867B\n0x8EA1D3CE\t0x867A\n0x8EA1D3CF\t0x884D\n0x8EA1D3D0\t0x886B\n0x8EA1D3D1\t0x8981\n0x8EA1D3D2\t0x89D4\n0x8EA1D3D3\t0x8A08\n0x8EA1D3D4\t0x8A02\n0x8EA1D3D5\t0x8A03\n0x8EA1D3D6\t0x8C9E\n0x8EA1D3D7\t0x8CA0\n0x8EA1D3D8\t0x8D74\n0x8EA1D3D9\t0x8D73\n0x8EA1D3DA\t0x8DB4\n0x8EA1D3DB\t0x8ECD\n0x8EA1D3DC\t0x8ECC\n0x8EA1D3DD\t0x8FF0\n0x8EA1D3DE\t0x8FE6\n0x8EA1D3DF\t0x8FE2\n0x8EA1D3E0\t0x8FEA\n0x8EA1D3E1\t0x8FE5\n0x8EA1D3E2\t0x8FED\n0x8EA1D3E3\t0x8FEB\n0x8EA1D3E4\t0x8FE4\n0x8EA1D3E5\t0x8FE8\n0x8EA1D3E6\t0x90CA\n0x8EA1D3E7\t0x90CE\n0x8EA1D3E8\t0x90C1\n0x8EA1D3E9\t0x90C3\n0x8EA1D3EA\t0x914B\n0x8EA1D3EB\t0x914A\n0x8EA1D3EC\t0x91CD\n0x8EA1D3ED\t0x9582\n0x8EA1D3EE\t0x9650\n0x8EA1D3EF\t0x964B\n0x8EA1D3F0\t0x964C\n0x8EA1D3F1\t0x964D\n0x8EA1D3F2\t0x9762\n0x8EA1D3F3\t0x9769\n0x8EA1D3F4\t0x97CB\n0x8EA1D3F5\t0x97ED\n0x8EA1D3F6\t0x97F3\n0x8EA1D3F7\t0x9801\n0x8EA1D3F8\t0x98A8\n0x8EA1D3F9\t0x98DB\n0x8EA1D3FA\t0x98DF\n0x8EA1D3FB\t0x9996\n0x8EA1D3FC\t0x9999\n0x8EA1D3FD\t0x4E58\n0x8EA1D3FE\t0x4EB3\n0x8EA1D4A1\t0x500C\n0x8EA1D4A2\t0x500D\n0x8EA1D4A3\t0x5023\n0x8EA1D4A4\t0x4FEF\n0x8EA1D4A5\t0x5026\n0x8EA1D4A6\t0x5025\n0x8EA1D4A7\t0x4FF8\n0x8EA1D4A8\t0x5029\n0x8EA1D4A9\t0x5016\n0x8EA1D4AA\t0x5006\n0x8EA1D4AB\t0x503C\n0x8EA1D4AC\t0x501F\n0x8EA1D4AD\t0x501A\n0x8EA1D4AE\t0x5012\n0x8EA1D4AF\t0x5011\n0x8EA1D4B0\t0x4FFA\n0x8EA1D4B1\t0x5000\n0x8EA1D4B2\t0x5014\n0x8EA1D4B3\t0x5028\n0x8EA1D4B4\t0x4FF1\n0x8EA1D4B5\t0x5021\n0x8EA1D4B6\t0x500B\n0x8EA1D4B7\t0x5019\n0x8EA1D4B8\t0x5018\n0x8EA1D4B9\t0x4FF3\n0x8EA1D4BA\t0x4FEE\n0x8EA1D4BB\t0x502D\n0x8EA1D4BC\t0x502A\n0x8EA1D4BD\t0x4FFE\n0x8EA1D4BE\t0x502B\n0x8EA1D4BF\t0x5009\n0x8EA1D4C0\t0x517C\n0x8EA1D4C1\t0x51A4\n0x8EA1D4C2\t0x51A5\n0x8EA1D4C3\t0x51A2\n0x8EA1D4C4\t0x51CD\n0x8EA1D4C5\t0x51CC\n0x8EA1D4C6\t0x51C6\n0x8EA1D4C7\t0x51CB\n0x8EA1D4C8\t0x5256\n0x8EA1D4C9\t0x525C\n0x8EA1D4CA\t0x5254\n0x8EA1D4CB\t0x525B\n0x8EA1D4CC\t0x525D\n0x8EA1D4CD\t0x532A\n0x8EA1D4CE\t0x537F\n0x8EA1D4CF\t0x539F\n0x8EA1D4D0\t0x539D\n0x8EA1D4D1\t0x53DF\n0x8EA1D4D2\t0x54E8\n0x8EA1D4D3\t0x5510\n0x8EA1D4D4\t0x5501\n0x8EA1D4D5\t0x5537\n0x8EA1D4D6\t0x54FC\n0x8EA1D4D7\t0x54E5\n0x8EA1D4D8\t0x54F2\n0x8EA1D4D9\t0x5506\n0x8EA1D4DA\t0x54FA\n0x8EA1D4DB\t0x5514\n0x8EA1D4DC\t0x54E9\n0x8EA1D4DD\t0x54ED\n0x8EA1D4DE\t0x54E1\n0x8EA1D4DF\t0x5509\n0x8EA1D4E0\t0x54EE\n0x8EA1D4E1\t0x54EA\n0x8EA1D4E2\t0x54E6\n0x8EA1D4E3\t0x5527\n0x8EA1D4E4\t0x5507\n0x8EA1D4E5\t0x54FD\n0x8EA1D4E6\t0x550F\n0x8EA1D4E7\t0x5703\n0x8EA1D4E8\t0x5704\n0x8EA1D4E9\t0x57C2\n0x8EA1D4EA\t0x57D4\n0x8EA1D4EB\t0x57CB\n0x8EA1D4EC\t0x57C3\n0x8EA1D4ED\t0x5809\n0x8EA1D4EE\t0x590F\n0x8EA1D4EF\t0x5957\n0x8EA1D4F0\t0x5958\n0x8EA1D4F1\t0x595A\n0x8EA1D4F2\t0x5A11\n0x8EA1D4F3\t0x5A18\n0x8EA1D4F4\t0x5A1C\n0x8EA1D4F5\t0x5A1F\n0x8EA1D4F6\t0x5A1B\n0x8EA1D4F7\t0x5A13\n0x8EA1D4F8\t0x59EC\n0x8EA1D4F9\t0x5A20\n0x8EA1D4FA\t0x5A23\n0x8EA1D4FB\t0x5A29\n0x8EA1D4FC\t0x5A25\n0x8EA1D4FD\t0x5A0C\n0x8EA1D4FE\t0x5A09\n0x8EA1D5A1\t0x5B6B\n0x8EA1D5A2\t0x5C58\n0x8EA1D5A3\t0x5BB0\n0x8EA1D5A4\t0x5BB3\n0x8EA1D5A5\t0x5BB6\n0x8EA1D5A6\t0x5BB4\n0x8EA1D5A7\t0x5BAE\n0x8EA1D5A8\t0x5BB5\n0x8EA1D5A9\t0x5BB9\n0x8EA1D5AA\t0x5BB8\n0x8EA1D5AB\t0x5C04\n0x8EA1D5AC\t0x5C51\n0x8EA1D5AD\t0x5C55\n0x8EA1D5AE\t0x5C50\n0x8EA1D5AF\t0x5CED\n0x8EA1D5B0\t0x5CFD\n0x8EA1D5B1\t0x5CFB\n0x8EA1D5B2\t0x5CEA\n0x8EA1D5B3\t0x5CE8\n0x8EA1D5B4\t0x5CF0\n0x8EA1D5B5\t0x5CF6\n0x8EA1D5B6\t0x5D01\n0x8EA1D5B7\t0x5CF4\n0x8EA1D5B8\t0x5DEE\n0x8EA1D5B9\t0x5E2D\n0x8EA1D5BA\t0x5E2B\n0x8EA1D5BB\t0x5EAB\n0x8EA1D5BC\t0x5EAD\n0x8EA1D5BD\t0x5EA7\n0x8EA1D5BE\t0x5F31\n0x8EA1D5BF\t0x5F92\n0x8EA1D5C0\t0x5F91\n0x8EA1D5C1\t0x5F90\n0x8EA1D5C2\t0x6059\n0x8EA1D5C3\t0x6063\n0x8EA1D5C4\t0x6065\n0x8EA1D5C5\t0x6050\n0x8EA1D5C6\t0x6055\n0x8EA1D5C7\t0x606D\n0x8EA1D5C8\t0x6069\n0x8EA1D5C9\t0x606F\n0x8EA1D5CA\t0x6084\n0x8EA1D5CB\t0x609F\n0x8EA1D5CC\t0x609A\n0x8EA1D5CD\t0x608D\n0x8EA1D5CE\t0x6094\n0x8EA1D5CF\t0x608C\n0x8EA1D5D0\t0x6085\n0x8EA1D5D1\t0x6096\n0x8EA1D5D2\t0x6247\n0x8EA1D5D3\t0x62F3\n0x8EA1D5D4\t0x6308\n0x8EA1D5D5\t0x62FF\n0x8EA1D5D6\t0x634E\n0x8EA1D5D7\t0x633E\n0x8EA1D5D8\t0x632F\n0x8EA1D5D9\t0x6355\n0x8EA1D5DA\t0x6342\n0x8EA1D5DB\t0x6346\n0x8EA1D5DC\t0x634F\n0x8EA1D5DD\t0x6349\n0x8EA1D5DE\t0x633A\n0x8EA1D5DF\t0x6350\n0x8EA1D5E0\t0x633D\n0x8EA1D5E1\t0x632A\n0x8EA1D5E2\t0x632B\n0x8EA1D5E3\t0x6328\n0x8EA1D5E4\t0x634D\n0x8EA1D5E5\t0x634C\n0x8EA1D5E6\t0x6548\n0x8EA1D5E7\t0x6549\n0x8EA1D5E8\t0x6599\n0x8EA1D5E9\t0x65C1\n0x8EA1D5EA\t0x65C5\n0x8EA1D5EB\t0x6642\n0x8EA1D5EC\t0x6649\n0x8EA1D5ED\t0x664F\n0x8EA1D5EE\t0x6643\n0x8EA1D5EF\t0x6652\n0x8EA1D5F0\t0x664C\n0x8EA1D5F1\t0x6645\n0x8EA1D5F2\t0x6641\n0x8EA1D5F3\t0x66F8\n0x8EA1D5F4\t0x6714\n0x8EA1D5F5\t0x6715\n0x8EA1D5F6\t0x6717\n0x8EA1D5F7\t0x6821\n0x8EA1D5F8\t0x6838\n0x8EA1D5F9\t0x6848\n0x8EA1D5FA\t0x6846\n0x8EA1D5FB\t0x6853\n0x8EA1D5FC\t0x6839\n0x8EA1D5FD\t0x6842\n0x8EA1D5FE\t0x6854\n0x8EA1D6A1\t0x6829\n0x8EA1D6A2\t0x68B3\n0x8EA1D6A3\t0x6817\n0x8EA1D6A4\t0x684C\n0x8EA1D6A5\t0x6851\n0x8EA1D6A6\t0x683D\n0x8EA1D6A7\t0x67F4\n0x8EA1D6A8\t0x6850\n0x8EA1D6A9\t0x6840\n0x8EA1D6AA\t0x683C\n0x8EA1D6AB\t0x6843\n0x8EA1D6AC\t0x682A\n0x8EA1D6AD\t0x6845\n0x8EA1D6AE\t0x6813\n0x8EA1D6AF\t0x6818\n0x8EA1D6B0\t0x6841\n0x8EA1D6B1\t0x6B8A\n0x8EA1D6B2\t0x6B89\n0x8EA1D6B3\t0x6BB7\n0x8EA1D6B4\t0x6C23\n0x8EA1D6B5\t0x6C27\n0x8EA1D6B6\t0x6C28\n0x8EA1D6B7\t0x6C26\n0x8EA1D6B8\t0x6C24\n0x8EA1D6B9\t0x6CF0\n0x8EA1D6BA\t0x6D6A\n0x8EA1D6BB\t0x6D95\n0x8EA1D6BC\t0x6D88\n0x8EA1D6BD\t0x6D87\n0x8EA1D6BE\t0x6D66\n0x8EA1D6BF\t0x6D78\n0x8EA1D6C0\t0x6D77\n0x8EA1D6C1\t0x6D59\n0x8EA1D6C2\t0x6D93\n0x8EA1D6C3\t0x6D6C\n0x8EA1D6C4\t0x6D89\n0x8EA1D6C5\t0x6D6E\n0x8EA1D6C6\t0x6D5A\n0x8EA1D6C7\t0x6D74\n0x8EA1D6C8\t0x6D69\n0x8EA1D6C9\t0x6D8C\n0x8EA1D6CA\t0x6D8A\n0x8EA1D6CB\t0x6D79\n0x8EA1D6CC\t0x6D85\n0x8EA1D6CD\t0x6D65\n0x8EA1D6CE\t0x6D94\n0x8EA1D6CF\t0x70CA\n0x8EA1D6D0\t0x70D8\n0x8EA1D6D1\t0x70E4\n0x8EA1D6D2\t0x70D9\n0x8EA1D6D3\t0x70C8\n0x8EA1D6D4\t0x70CF\n0x8EA1D6D5\t0x7239\n0x8EA1D6D6\t0x7279\n0x8EA1D6D7\t0x72FC\n0x8EA1D6D8\t0x72F9\n0x8EA1D6D9\t0x72FD\n0x8EA1D6DA\t0x72F8\n0x8EA1D6DB\t0x72F7\n0x8EA1D6DC\t0x7386\n0x8EA1D6DD\t0x73ED\n0x8EA1D6DE\t0x7409\n0x8EA1D6DF\t0x73EE\n0x8EA1D6E0\t0x73E0\n0x8EA1D6E1\t0x73EA\n0x8EA1D6E2\t0x73DE\n0x8EA1D6E3\t0x7554\n0x8EA1D6E4\t0x755D\n0x8EA1D6E5\t0x755C\n0x8EA1D6E6\t0x755A\n0x8EA1D6E7\t0x7559\n0x8EA1D6E8\t0x75BE\n0x8EA1D6E9\t0x75C5\n0x8EA1D6EA\t0x75C7\n0x8EA1D6EB\t0x75B2\n0x8EA1D6EC\t0x75B3\n0x8EA1D6ED\t0x75BD\n0x8EA1D6EE\t0x75BC\n0x8EA1D6EF\t0x75B9\n0x8EA1D6F0\t0x75C2\n0x8EA1D6F1\t0x75B8\n0x8EA1D6F2\t0x768B\n0x8EA1D6F3\t0x76B0\n0x8EA1D6F4\t0x76CA\n0x8EA1D6F5\t0x76CD\n0x8EA1D6F6\t0x76CE\n0x8EA1D6F7\t0x7729\n0x8EA1D6F8\t0x771F\n0x8EA1D6F9\t0x7720\n0x8EA1D6FA\t0x7728\n0x8EA1D6FB\t0x77E9\n0x8EA1D6FC\t0x7830\n0x8EA1D6FD\t0x7827\n0x8EA1D6FE\t0x7838\n0x8EA1D7A1\t0x781D\n0x8EA1D7A2\t0x7834\n0x8EA1D7A3\t0x7837\n0x8EA1D7A4\t0x7825\n0x8EA1D7A5\t0x782D\n0x8EA1D7A6\t0x7820\n0x8EA1D7A7\t0x781F\n0x8EA1D7A8\t0x7832\n0x8EA1D7A9\t0x7955\n0x8EA1D7AA\t0x7950\n0x8EA1D7AB\t0x7960\n0x8EA1D7AC\t0x795F\n0x8EA1D7AD\t0x7956\n0x8EA1D7AE\t0x795E\n0x8EA1D7AF\t0x795D\n0x8EA1D7B0\t0x7957\n0x8EA1D7B1\t0x795A\n0x8EA1D7B2\t0x79E4\n0x8EA1D7B3\t0x79E3\n0x8EA1D7B4\t0x79E7\n0x8EA1D7B5\t0x79DF\n0x8EA1D7B6\t0x79E6\n0x8EA1D7B7\t0x79E9\n0x8EA1D7B8\t0x79D8\n0x8EA1D7B9\t0x7A84\n0x8EA1D7BA\t0x7A88\n0x8EA1D7BB\t0x7AD9\n0x8EA1D7BC\t0x7B06\n0x8EA1D7BD\t0x7B11\n0x8EA1D7BE\t0x7C89\n0x8EA1D7BF\t0x7D21\n0x8EA1D7C0\t0x7D17\n0x8EA1D7C1\t0x7D0B\n0x8EA1D7C2\t0x7D0A\n0x8EA1D7C3\t0x7D20\n0x8EA1D7C4\t0x7D22\n0x8EA1D7C5\t0x7D14\n0x8EA1D7C6\t0x7D10\n0x8EA1D7C7\t0x7D15\n0x8EA1D7C8\t0x7D1A\n0x8EA1D7C9\t0x7D1C\n0x8EA1D7CA\t0x7D0D\n0x8EA1D7CB\t0x7D19\n0x8EA1D7CC\t0x7D1B\n0x8EA1D7CD\t0x7F3A\n0x8EA1D7CE\t0x7F5F\n0x8EA1D7CF\t0x7F94\n0x8EA1D7D0\t0x7FC5\n0x8EA1D7D1\t0x7FC1\n0x8EA1D7D2\t0x8006\n0x8EA1D7D3\t0x8004\n0x8EA1D7D4\t0x8018\n0x8EA1D7D5\t0x8015\n0x8EA1D7D6\t0x8019\n0x8EA1D7D7\t0x8017\n0x8EA1D7D8\t0x803D\n0x8EA1D7D9\t0x803F\n0x8EA1D7DA\t0x80F1\n0x8EA1D7DB\t0x8102\n0x8EA1D7DC\t0x80F0\n0x8EA1D7DD\t0x8105\n0x8EA1D7DE\t0x80ED\n0x8EA1D7DF\t0x80F4\n0x8EA1D7E0\t0x8106\n0x8EA1D7E1\t0x80F8\n0x8EA1D7E2\t0x80F3\n0x8EA1D7E3\t0x8108\n0x8EA1D7E4\t0x80FD\n0x8EA1D7E5\t0x810A\n0x8EA1D7E6\t0x80FC\n0x8EA1D7E7\t0x80EF\n0x8EA1D7E8\t0x81ED\n0x8EA1D7E9\t0x81EC\n0x8EA1D7EA\t0x8200\n0x8EA1D7EB\t0x8210\n0x8EA1D7EC\t0x822A\n0x8EA1D7ED\t0x822B\n0x8EA1D7EE\t0x8228\n0x8EA1D7EF\t0x822C\n0x8EA1D7F0\t0x82BB\n0x8EA1D7F1\t0x832B\n0x8EA1D7F2\t0x8352\n0x8EA1D7F3\t0x8354\n0x8EA1D7F4\t0x834A\n0x8EA1D7F5\t0x8338\n0x8EA1D7F6\t0x8350\n0x8EA1D7F7\t0x8349\n0x8EA1D7F8\t0x8335\n0x8EA1D7F9\t0x8334\n0x8EA1D7FA\t0x834F\n0x8EA1D7FB\t0x8332\n0x8EA1D7FC\t0x8339\n0x8EA1D7FD\t0x8336\n0x8EA1D7FE\t0x8317\n0x8EA1D8A1\t0x8340\n0x8EA1D8A2\t0x8331\n0x8EA1D8A3\t0x8328\n0x8EA1D8A4\t0x8343\n0x8EA1D8A5\t0x8654\n0x8EA1D8A6\t0x868A\n0x8EA1D8A7\t0x86AA\n0x8EA1D8A8\t0x8693\n0x8EA1D8A9\t0x86A4\n0x8EA1D8AA\t0x86A9\n0x8EA1D8AB\t0x868C\n0x8EA1D8AC\t0x86A3\n0x8EA1D8AD\t0x869C\n0x8EA1D8AE\t0x8870\n0x8EA1D8AF\t0x8877\n0x8EA1D8B0\t0x8881\n0x8EA1D8B1\t0x8882\n0x8EA1D8B2\t0x887D\n0x8EA1D8B3\t0x8879\n0x8EA1D8B4\t0x8A18\n0x8EA1D8B5\t0x8A10\n0x8EA1D8B6\t0x8A0E\n0x8EA1D8B7\t0x8A0C\n0x8EA1D8B8\t0x8A15\n0x8EA1D8B9\t0x8A0A\n0x8EA1D8BA\t0x8A17\n0x8EA1D8BB\t0x8A13\n0x8EA1D8BC\t0x8A16\n0x8EA1D8BD\t0x8A0F\n0x8EA1D8BE\t0x8A11\n0x8EA1D8BF\t0x8C48\n0x8EA1D8C0\t0x8C7A\n0x8EA1D8C1\t0x8C79\n0x8EA1D8C2\t0x8CA1\n0x8EA1D8C3\t0x8CA2\n0x8EA1D8C4\t0x8D77\n0x8EA1D8C5\t0x8EAC\n0x8EA1D8C6\t0x8ED2\n0x8EA1D8C7\t0x8ED4\n0x8EA1D8C8\t0x8ECF\n0x8EA1D8C9\t0x8FB1\n0x8EA1D8CA\t0x9001\n0x8EA1D8CB\t0x9006\n0x8EA1D8CC\t0x8FF7\n0x8EA1D8CD\t0x9000\n0x8EA1D8CE\t0x8FFA\n0x8EA1D8CF\t0x8FF4\n0x8EA1D8D0\t0x9003\n0x8EA1D8D1\t0x8FFD\n0x8EA1D8D2\t0x9005\n0x8EA1D8D3\t0x8FF8\n0x8EA1D8D4\t0x9095\n0x8EA1D8D5\t0x90E1\n0x8EA1D8D6\t0x90DD\n0x8EA1D8D7\t0x90E2\n0x8EA1D8D8\t0x9152\n0x8EA1D8D9\t0x914D\n0x8EA1D8DA\t0x914C\n0x8EA1D8DB\t0x91D8\n0x8EA1D8DC\t0x91DD\n0x8EA1D8DD\t0x91D7\n0x8EA1D8DE\t0x91DC\n0x8EA1D8DF\t0x91D9\n0x8EA1D8E0\t0x9583\n0x8EA1D8E1\t0x9662\n0x8EA1D8E2\t0x9663\n0x8EA1D8E3\t0x9661\n0x8EA1D8E4\t0x965B\n0x8EA1D8E5\t0x965D\n0x8EA1D8E6\t0x9664\n0x8EA1D8E7\t0x9658\n0x8EA1D8E8\t0x965E\n0x8EA1D8E9\t0x96BB\n0x8EA1D8EA\t0x98E2\n0x8EA1D8EB\t0x99AC\n0x8EA1D8EC\t0x9AA8\n0x8EA1D8ED\t0x9AD8\n0x8EA1D8EE\t0x9B25\n0x8EA1D8EF\t0x9B32\n0x8EA1D8F0\t0x9B3C\n0x8EA1D8F1\t0x4E7E\n0x8EA1D8F2\t0x507A\n0x8EA1D8F3\t0x507D\n0x8EA1D8F4\t0x505C\n0x8EA1D8F5\t0x5047\n0x8EA1D8F6\t0x5043\n0x8EA1D8F7\t0x504C\n0x8EA1D8F8\t0x505A\n0x8EA1D8F9\t0x5049\n0x8EA1D8FA\t0x5065\n0x8EA1D8FB\t0x5076\n0x8EA1D8FC\t0x504E\n0x8EA1D8FD\t0x5055\n0x8EA1D8FE\t0x5075\n0x8EA1D9A1\t0x5074\n0x8EA1D9A2\t0x5077\n0x8EA1D9A3\t0x504F\n0x8EA1D9A4\t0x500F\n0x8EA1D9A5\t0x506F\n0x8EA1D9A6\t0x506D\n0x8EA1D9A7\t0x515C\n0x8EA1D9A8\t0x5195\n0x8EA1D9A9\t0x51F0\n0x8EA1D9AA\t0x526A\n0x8EA1D9AB\t0x526F\n0x8EA1D9AC\t0x52D2\n0x8EA1D9AD\t0x52D9\n0x8EA1D9AE\t0x52D8\n0x8EA1D9AF\t0x52D5\n0x8EA1D9B0\t0x5310\n0x8EA1D9B1\t0x530F\n0x8EA1D9B2\t0x5319\n0x8EA1D9B3\t0x533F\n0x8EA1D9B4\t0x5340\n0x8EA1D9B5\t0x533E\n0x8EA1D9B6\t0x53C3\n0x8EA1D9B7\t0x66FC\n0x8EA1D9B8\t0x5546\n0x8EA1D9B9\t0x556A\n0x8EA1D9BA\t0x5566\n0x8EA1D9BB\t0x5544\n0x8EA1D9BC\t0x555E\n0x8EA1D9BD\t0x5561\n0x8EA1D9BE\t0x5543\n0x8EA1D9BF\t0x554A\n0x8EA1D9C0\t0x5531\n0x8EA1D9C1\t0x5556\n0x8EA1D9C2\t0x554F\n0x8EA1D9C3\t0x5555\n0x8EA1D9C4\t0x552F\n0x8EA1D9C5\t0x5564\n0x8EA1D9C6\t0x5538\n0x8EA1D9C7\t0x552E\n0x8EA1D9C8\t0x555C\n0x8EA1D9C9\t0x552C\n0x8EA1D9CA\t0x5563\n0x8EA1D9CB\t0x5533\n0x8EA1D9CC\t0x5541\n0x8EA1D9CD\t0x5557\n0x8EA1D9CE\t0x5708\n0x8EA1D9CF\t0x570B\n0x8EA1D9D0\t0x5709\n0x8EA1D9D1\t0x57DF\n0x8EA1D9D2\t0x5805\n0x8EA1D9D3\t0x580A\n0x8EA1D9D4\t0x5806\n0x8EA1D9D5\t0x57E0\n0x8EA1D9D6\t0x57E4\n0x8EA1D9D7\t0x57FA\n0x8EA1D9D8\t0x5802\n0x8EA1D9D9\t0x5835\n0x8EA1D9DA\t0x57F7\n0x8EA1D9DB\t0x57F9\n0x8EA1D9DC\t0x5920\n0x8EA1D9DD\t0x5962\n0x8EA1D9DE\t0x5A36\n0x8EA1D9DF\t0x5A41\n0x8EA1D9E0\t0x5A49\n0x8EA1D9E1\t0x5A66\n0x8EA1D9E2\t0x5A6A\n0x8EA1D9E3\t0x5A40\n0x8EA1D9E4\t0x5A3C\n0x8EA1D9E5\t0x5A62\n0x8EA1D9E6\t0x5A5A\n0x8EA1D9E7\t0x5A46\n0x8EA1D9E8\t0x5A4A\n0x8EA1D9E9\t0x5B70\n0x8EA1D9EA\t0x5BC7\n0x8EA1D9EB\t0x5BC5\n0x8EA1D9EC\t0x5BC4\n0x8EA1D9ED\t0x5BC2\n0x8EA1D9EE\t0x5BBF\n0x8EA1D9EF\t0x5BC6\n0x8EA1D9F0\t0x5C09\n0x8EA1D9F1\t0x5C08\n0x8EA1D9F2\t0x5C07\n0x8EA1D9F3\t0x5C60\n0x8EA1D9F4\t0x5C5C\n0x8EA1D9F5\t0x5C5D\n0x8EA1D9F6\t0x5D07\n0x8EA1D9F7\t0x5D06\n0x8EA1D9F8\t0x5D0E\n0x8EA1D9F9\t0x5D1B\n0x8EA1D9FA\t0x5D16\n0x8EA1D9FB\t0x5D22\n0x8EA1D9FC\t0x5D11\n0x8EA1D9FD\t0x5D29\n0x8EA1D9FE\t0x5D14\n0x8EA1DAA1\t0x5D19\n0x8EA1DAA2\t0x5D24\n0x8EA1DAA3\t0x5D27\n0x8EA1DAA4\t0x5D17\n0x8EA1DAA5\t0x5DE2\n0x8EA1DAA6\t0x5E38\n0x8EA1DAA7\t0x5E36\n0x8EA1DAA8\t0x5E33\n0x8EA1DAA9\t0x5E37\n0x8EA1DAAA\t0x5EB7\n0x8EA1DAAB\t0x5EB8\n0x8EA1DAAC\t0x5EB6\n0x8EA1DAAD\t0x5EB5\n0x8EA1DAAE\t0x5EBE\n0x8EA1DAAF\t0x5F35\n0x8EA1DAB0\t0x5F37\n0x8EA1DAB1\t0x5F57\n0x8EA1DAB2\t0x5F6C\n0x8EA1DAB3\t0x5F69\n0x8EA1DAB4\t0x5F6B\n0x8EA1DAB5\t0x5F97\n0x8EA1DAB6\t0x5F99\n0x8EA1DAB7\t0x5F9E\n0x8EA1DAB8\t0x5F98\n0x8EA1DAB9\t0x5FA1\n0x8EA1DABA\t0x5FA0\n0x8EA1DABB\t0x5F9C\n0x8EA1DABC\t0x607F\n0x8EA1DABD\t0x60A3\n0x8EA1DABE\t0x6089\n0x8EA1DABF\t0x60A0\n0x8EA1DAC0\t0x60A8\n0x8EA1DAC1\t0x60CB\n0x8EA1DAC2\t0x60B4\n0x8EA1DAC3\t0x60E6\n0x8EA1DAC4\t0x60BD\n0x8EA1DAC5\t0x60C5\n0x8EA1DAC6\t0x60BB\n0x8EA1DAC7\t0x60B5\n0x8EA1DAC8\t0x60DC\n0x8EA1DAC9\t0x60BC\n0x8EA1DACA\t0x60D8\n0x8EA1DACB\t0x60D5\n0x8EA1DACC\t0x60C6\n0x8EA1DACD\t0x60DF\n0x8EA1DACE\t0x60B8\n0x8EA1DACF\t0x60DA\n0x8EA1DAD0\t0x60C7\n0x8EA1DAD1\t0x621A\n0x8EA1DAD2\t0x621B\n0x8EA1DAD3\t0x6248\n0x8EA1DAD4\t0x63A0\n0x8EA1DAD5\t0x63A7\n0x8EA1DAD6\t0x6372\n0x8EA1DAD7\t0x6396\n0x8EA1DAD8\t0x63A2\n0x8EA1DAD9\t0x63A5\n0x8EA1DADA\t0x6377\n0x8EA1DADB\t0x6367\n0x8EA1DADC\t0x6398\n0x8EA1DADD\t0x63AA\n0x8EA1DADE\t0x6371\n0x8EA1DADF\t0x63A9\n0x8EA1DAE0\t0x6389\n0x8EA1DAE1\t0x6383\n0x8EA1DAE2\t0x639B\n0x8EA1DAE3\t0x636B\n0x8EA1DAE4\t0x63A8\n0x8EA1DAE5\t0x6384\n0x8EA1DAE6\t0x6388\n0x8EA1DAE7\t0x6399\n0x8EA1DAE8\t0x63A1\n0x8EA1DAE9\t0x63AC\n0x8EA1DAEA\t0x6392\n0x8EA1DAEB\t0x638F\n0x8EA1DAEC\t0x6380\n0x8EA1DAED\t0x637B\n0x8EA1DAEE\t0x6369\n0x8EA1DAEF\t0x6368\n0x8EA1DAF0\t0x637A\n0x8EA1DAF1\t0x655D\n0x8EA1DAF2\t0x6556\n0x8EA1DAF3\t0x6551\n0x8EA1DAF4\t0x6559\n0x8EA1DAF5\t0x6557\n0x8EA1DAF6\t0x555F\n0x8EA1DAF7\t0x654F\n0x8EA1DAF8\t0x6558\n0x8EA1DAF9\t0x6555\n0x8EA1DAFA\t0x6554\n0x8EA1DAFB\t0x659C\n0x8EA1DAFC\t0x659B\n0x8EA1DAFD\t0x65AC\n0x8EA1DAFE\t0x65CF\n0x8EA1DBA1\t0x65CB\n0x8EA1DBA2\t0x65CC\n0x8EA1DBA3\t0x65CE\n0x8EA1DBA4\t0x665D\n0x8EA1DBA5\t0x665A\n0x8EA1DBA6\t0x6664\n0x8EA1DBA7\t0x6668\n0x8EA1DBA8\t0x6666\n0x8EA1DBA9\t0x665E\n0x8EA1DBAA\t0x66F9\n0x8EA1DBAB\t0x52D7\n0x8EA1DBAC\t0x671B\n0x8EA1DBAD\t0x6881\n0x8EA1DBAE\t0x68AF\n0x8EA1DBAF\t0x68A2\n0x8EA1DBB0\t0x6893\n0x8EA1DBB1\t0x68B5\n0x8EA1DBB2\t0x687F\n0x8EA1DBB3\t0x6876\n0x8EA1DBB4\t0x68B1\n0x8EA1DBB5\t0x68A7\n0x8EA1DBB6\t0x6897\n0x8EA1DBB7\t0x68B0\n0x8EA1DBB8\t0x6883\n0x8EA1DBB9\t0x68C4\n0x8EA1DBBA\t0x68AD\n0x8EA1DBBB\t0x6886\n0x8EA1DBBC\t0x6885\n0x8EA1DBBD\t0x6894\n0x8EA1DBBE\t0x689D\n0x8EA1DBBF\t0x68A8\n0x8EA1DBC0\t0x689F\n0x8EA1DBC1\t0x68A1\n0x8EA1DBC2\t0x6882\n0x8EA1DBC3\t0x6B32\n0x8EA1DBC4\t0x6BBA\n0x8EA1DBC5\t0x6BEB\n0x8EA1DBC6\t0x6BEC\n0x8EA1DBC7\t0x6C2B\n0x8EA1DBC8\t0x6D8E\n0x8EA1DBC9\t0x6DBC\n0x8EA1DBCA\t0x6DF3\n0x8EA1DBCB\t0x6DD9\n0x8EA1DBCC\t0x6DB2\n0x8EA1DBCD\t0x6DE1\n0x8EA1DBCE\t0x6DCC\n0x8EA1DBCF\t0x6DE4\n0x8EA1DBD0\t0x6DFB\n0x8EA1DBD1\t0x6DFA\n0x8EA1DBD2\t0x6E05\n0x8EA1DBD3\t0x6DC7\n0x8EA1DBD4\t0x6DCB\n0x8EA1DBD5\t0x6DAF\n0x8EA1DBD6\t0x6DD1\n0x8EA1DBD7\t0x6DAE\n0x8EA1DBD8\t0x6DDE\n0x8EA1DBD9\t0x6DF9\n0x8EA1DBDA\t0x6DB8\n0x8EA1DBDB\t0x6DF7\n0x8EA1DBDC\t0x6DF5\n0x8EA1DBDD\t0x6DC5\n0x8EA1DBDE\t0x6DD2\n0x8EA1DBDF\t0x6E1A\n0x8EA1DBE0\t0x6DB5\n0x8EA1DBE1\t0x6DDA\n0x8EA1DBE2\t0x6DEB\n0x8EA1DBE3\t0x6DD8\n0x8EA1DBE4\t0x6DEA\n0x8EA1DBE5\t0x6DF1\n0x8EA1DBE6\t0x6DEE\n0x8EA1DBE7\t0x6DE8\n0x8EA1DBE8\t0x6DC6\n0x8EA1DBE9\t0x6DC4\n0x8EA1DBEA\t0x6DAA\n0x8EA1DBEB\t0x6DEC\n0x8EA1DBEC\t0x6DBF\n0x8EA1DBED\t0x6DE6\n0x8EA1DBEE\t0x70F9\n0x8EA1DBEF\t0x7109\n0x8EA1DBF0\t0x710A\n0x8EA1DBF1\t0x70FD\n0x8EA1DBF2\t0x70EF\n0x8EA1DBF3\t0x723D\n0x8EA1DBF4\t0x727D\n0x8EA1DBF5\t0x7281\n0x8EA1DBF6\t0x731C\n0x8EA1DBF7\t0x731B\n0x8EA1DBF8\t0x7316\n0x8EA1DBF9\t0x7313\n0x8EA1DBFA\t0x7319\n0x8EA1DBFB\t0x7387\n0x8EA1DBFC\t0x7405\n0x8EA1DBFD\t0x740A\n0x8EA1DBFE\t0x7403\n0x8EA1DCA1\t0x7406\n0x8EA1DCA2\t0x73FE\n0x8EA1DCA3\t0x740D\n0x8EA1DCA4\t0x74E0\n0x8EA1DCA5\t0x74F6\n0x8EA1DCA6\t0x74F7\n0x8EA1DCA7\t0x751C\n0x8EA1DCA8\t0x7522\n0x8EA1DCA9\t0x7565\n0x8EA1DCAA\t0x7566\n0x8EA1DCAB\t0x7562\n0x8EA1DCAC\t0x7570\n0x8EA1DCAD\t0x758F\n0x8EA1DCAE\t0x75D4\n0x8EA1DCAF\t0x75D5\n0x8EA1DCB0\t0x75B5\n0x8EA1DCB1\t0x75CA\n0x8EA1DCB2\t0x75CD\n0x8EA1DCB3\t0x768E\n0x8EA1DCB4\t0x76D4\n0x8EA1DCB5\t0x76D2\n0x8EA1DCB6\t0x76DB\n0x8EA1DCB7\t0x7737\n0x8EA1DCB8\t0x773E\n0x8EA1DCB9\t0x773C\n0x8EA1DCBA\t0x7736\n0x8EA1DCBB\t0x7738\n0x8EA1DCBC\t0x773A\n0x8EA1DCBD\t0x786B\n0x8EA1DCBE\t0x7843\n0x8EA1DCBF\t0x784E\n0x8EA1DCC0\t0x7965\n0x8EA1DCC1\t0x7968\n0x8EA1DCC2\t0x796D\n0x8EA1DCC3\t0x79FB\n0x8EA1DCC4\t0x7A92\n0x8EA1DCC5\t0x7A95\n0x8EA1DCC6\t0x7B20\n0x8EA1DCC7\t0x7B28\n0x8EA1DCC8\t0x7B1B\n0x8EA1DCC9\t0x7B2C\n0x8EA1DCCA\t0x7B26\n0x8EA1DCCB\t0x7B19\n0x8EA1DCCC\t0x7B1E\n0x8EA1DCCD\t0x7B2E\n0x8EA1DCCE\t0x7C92\n0x8EA1DCCF\t0x7C97\n0x8EA1DCD0\t0x7C95\n0x8EA1DCD1\t0x7D46\n0x8EA1DCD2\t0x7D43\n0x8EA1DCD3\t0x7D71\n0x8EA1DCD4\t0x7D2E\n0x8EA1DCD5\t0x7D39\n0x8EA1DCD6\t0x7D3C\n0x8EA1DCD7\t0x7D40\n0x8EA1DCD8\t0x7D30\n0x8EA1DCD9\t0x7D33\n0x8EA1DCDA\t0x7D44\n0x8EA1DCDB\t0x7D2F\n0x8EA1DCDC\t0x7D42\n0x8EA1DCDD\t0x7D32\n0x8EA1DCDE\t0x7D31\n0x8EA1DCDF\t0x7F3D\n0x8EA1DCE0\t0x7F9E\n0x8EA1DCE1\t0x7F9A\n0x8EA1DCE2\t0x7FCC\n0x8EA1DCE3\t0x7FCE\n0x8EA1DCE4\t0x7FD2\n0x8EA1DCE5\t0x801C\n0x8EA1DCE6\t0x804A\n0x8EA1DCE7\t0x8046\n0x8EA1DCE8\t0x812F\n0x8EA1DCE9\t0x8116\n0x8EA1DCEA\t0x8123\n0x8EA1DCEB\t0x812B\n0x8EA1DCEC\t0x8129\n0x8EA1DCED\t0x8130\n0x8EA1DCEE\t0x8124\n0x8EA1DCEF\t0x8202\n0x8EA1DCF0\t0x8235\n0x8EA1DCF1\t0x8237\n0x8EA1DCF2\t0x8236\n0x8EA1DCF3\t0x8239\n0x8EA1DCF4\t0x838E\n0x8EA1DCF5\t0x839E\n0x8EA1DCF6\t0x8398\n0x8EA1DCF7\t0x8378\n0x8EA1DCF8\t0x83A2\n0x8EA1DCF9\t0x8396\n0x8EA1DCFA\t0x83BD\n0x8EA1DCFB\t0x83AB\n0x8EA1DCFC\t0x8392\n0x8EA1DCFD\t0x838A\n0x8EA1DCFE\t0x8393\n0x8EA1DDA1\t0x8389\n0x8EA1DDA2\t0x83A0\n0x8EA1DDA3\t0x8377\n0x8EA1DDA4\t0x837B\n0x8EA1DDA5\t0x837C\n0x8EA1DDA6\t0x8386\n0x8EA1DDA7\t0x83A7\n0x8EA1DDA8\t0x8655\n0x8EA1DDA9\t0x5F6A\n0x8EA1DDAA\t0x86C7\n0x8EA1DDAB\t0x86C0\n0x8EA1DDAC\t0x86B6\n0x8EA1DDAD\t0x86C4\n0x8EA1DDAE\t0x86B5\n0x8EA1DDAF\t0x86C6\n0x8EA1DDB0\t0x86CB\n0x8EA1DDB1\t0x86B1\n0x8EA1DDB2\t0x86AF\n0x8EA1DDB3\t0x86C9\n0x8EA1DDB4\t0x8853\n0x8EA1DDB5\t0x889E\n0x8EA1DDB6\t0x8888\n0x8EA1DDB7\t0x88AB\n0x8EA1DDB8\t0x8892\n0x8EA1DDB9\t0x8896\n0x8EA1DDBA\t0x888D\n0x8EA1DDBB\t0x888B\n0x8EA1DDBC\t0x8993\n0x8EA1DDBD\t0x898F\n0x8EA1DDBE\t0x8A2A\n0x8EA1DDBF\t0x8A1D\n0x8EA1DDC0\t0x8A23\n0x8EA1DDC1\t0x8A25\n0x8EA1DDC2\t0x8A31\n0x8EA1DDC3\t0x8A2D\n0x8EA1DDC4\t0x8A1F\n0x8EA1DDC5\t0x8A1B\n0x8EA1DDC6\t0x8A22\n0x8EA1DDC7\t0x8C49\n0x8EA1DDC8\t0x8C5A\n0x8EA1DDC9\t0x8CA9\n0x8EA1DDCA\t0x8CAC\n0x8EA1DDCB\t0x8CAB\n0x8EA1DDCC\t0x8CA8\n0x8EA1DDCD\t0x8CAA\n0x8EA1DDCE\t0x8CA7\n0x8EA1DDCF\t0x8D67\n0x8EA1DDD0\t0x8D66\n0x8EA1DDD1\t0x8DBE\n0x8EA1DDD2\t0x8DBA\n0x8EA1DDD3\t0x8EDB\n0x8EA1DDD4\t0x8EDF\n0x8EA1DDD5\t0x9019\n0x8EA1DDD6\t0x900D\n0x8EA1DDD7\t0x901A\n0x8EA1DDD8\t0x9017\n0x8EA1DDD9\t0x9023\n0x8EA1DDDA\t0x901F\n0x8EA1DDDB\t0x901D\n0x8EA1DDDC\t0x9010\n0x8EA1DDDD\t0x9015\n0x8EA1DDDE\t0x901E\n0x8EA1DDDF\t0x9020\n0x8EA1DDE0\t0x900F\n0x8EA1DDE1\t0x9022\n0x8EA1DDE2\t0x9016\n0x8EA1DDE3\t0x901B\n0x8EA1DDE4\t0x9014\n0x8EA1DDE5\t0x90E8\n0x8EA1DDE6\t0x90ED\n0x8EA1DDE7\t0x90FD\n0x8EA1DDE8\t0x9157\n0x8EA1DDE9\t0x91CE\n0x8EA1DDEA\t0x91F5\n0x8EA1DDEB\t0x91E6\n0x8EA1DDEC\t0x91E3\n0x8EA1DDED\t0x91E7\n0x8EA1DDEE\t0x91ED\n0x8EA1DDEF\t0x91E9\n0x8EA1DDF0\t0x9589\n0x8EA1DDF1\t0x966A\n0x8EA1DDF2\t0x9675\n0x8EA1DDF3\t0x9673\n0x8EA1DDF4\t0x9678\n0x8EA1DDF5\t0x9670\n0x8EA1DDF6\t0x9674\n0x8EA1DDF7\t0x9676\n0x8EA1DDF8\t0x9677\n0x8EA1DDF9\t0x966C\n0x8EA1DDFA\t0x96C0\n0x8EA1DDFB\t0x96EA\n0x8EA1DDFC\t0x96E9\n0x8EA1DDFD\t0x7AE0\n0x8EA1DDFE\t0x7ADF\n0x8EA1DEA1\t0x9802\n0x8EA1DEA2\t0x9803\n0x8EA1DEA3\t0x9B5A\n0x8EA1DEA4\t0x9CE5\n0x8EA1DEA5\t0x9E75\n0x8EA1DEA6\t0x9E7F\n0x8EA1DEA7\t0x9EA5\n0x8EA1DEA8\t0x9EBB\n0x8EA1DEA9\t0x50A2\n0x8EA1DEAA\t0x508D\n0x8EA1DEAB\t0x5085\n0x8EA1DEAC\t0x5099\n0x8EA1DEAD\t0x5091\n0x8EA1DEAE\t0x5080\n0x8EA1DEAF\t0x5096\n0x8EA1DEB0\t0x5098\n0x8EA1DEB1\t0x509A\n0x8EA1DEB2\t0x6700\n0x8EA1DEB3\t0x51F1\n0x8EA1DEB4\t0x5272\n0x8EA1DEB5\t0x5274\n0x8EA1DEB6\t0x5275\n0x8EA1DEB7\t0x5269\n0x8EA1DEB8\t0x52DE\n0x8EA1DEB9\t0x52DD\n0x8EA1DEBA\t0x52DB\n0x8EA1DEBB\t0x535A\n0x8EA1DEBC\t0x53A5\n0x8EA1DEBD\t0x557B\n0x8EA1DEBE\t0x5580\n0x8EA1DEBF\t0x55A7\n0x8EA1DEC0\t0x557C\n0x8EA1DEC1\t0x558A\n0x8EA1DEC2\t0x559D\n0x8EA1DEC3\t0x5598\n0x8EA1DEC4\t0x5582\n0x8EA1DEC5\t0x559C\n0x8EA1DEC6\t0x55AA\n0x8EA1DEC7\t0x5594\n0x8EA1DEC8\t0x5587\n0x8EA1DEC9\t0x558B\n0x8EA1DECA\t0x5583\n0x8EA1DECB\t0x55B3\n0x8EA1DECC\t0x55AE\n0x8EA1DECD\t0x559F\n0x8EA1DECE\t0x553E\n0x8EA1DECF\t0x55B2\n0x8EA1DED0\t0x559A\n0x8EA1DED1\t0x55BB\n0x8EA1DED2\t0x55AC\n0x8EA1DED3\t0x55B1\n0x8EA1DED4\t0x557E\n0x8EA1DED5\t0x5589\n0x8EA1DED6\t0x55AB\n0x8EA1DED7\t0x5599\n0x8EA1DED8\t0x570D\n0x8EA1DED9\t0x582F\n0x8EA1DEDA\t0x582A\n0x8EA1DEDB\t0x5834\n0x8EA1DEDC\t0x5824\n0x8EA1DEDD\t0x5830\n0x8EA1DEDE\t0x5831\n0x8EA1DEDF\t0x5821\n0x8EA1DEE0\t0x581D\n0x8EA1DEE1\t0x5820\n0x8EA1DEE2\t0x58F9\n0x8EA1DEE3\t0x58FA\n0x8EA1DEE4\t0x5960\n0x8EA1DEE5\t0x5A77\n0x8EA1DEE6\t0x5A9A\n0x8EA1DEE7\t0x5A7F\n0x8EA1DEE8\t0x5A92\n0x8EA1DEE9\t0x5A9B\n0x8EA1DEEA\t0x5AA7\n0x8EA1DEEB\t0x5B73\n0x8EA1DEEC\t0x5B71\n0x8EA1DEED\t0x5BD2\n0x8EA1DEEE\t0x5BCC\n0x8EA1DEEF\t0x5BD3\n0x8EA1DEF0\t0x5BD0\n0x8EA1DEF1\t0x5C0A\n0x8EA1DEF2\t0x5C0B\n0x8EA1DEF3\t0x5C31\n0x8EA1DEF4\t0x5D4C\n0x8EA1DEF5\t0x5D50\n0x8EA1DEF6\t0x5D34\n0x8EA1DEF7\t0x5D47\n0x8EA1DEF8\t0x5DFD\n0x8EA1DEF9\t0x5E45\n0x8EA1DEFA\t0x5E3D\n0x8EA1DEFB\t0x5E40\n0x8EA1DEFC\t0x5E43\n0x8EA1DEFD\t0x5E7E\n0x8EA1DEFE\t0x5ECA\n0x8EA1DFA1\t0x5EC1\n0x8EA1DFA2\t0x5EC2\n0x8EA1DFA3\t0x5EC4\n0x8EA1DFA4\t0x5F3C\n0x8EA1DFA5\t0x5F6D\n0x8EA1DFA6\t0x5FA9\n0x8EA1DFA7\t0x5FAA\n0x8EA1DFA8\t0x5FA8\n0x8EA1DFA9\t0x60D1\n0x8EA1DFAA\t0x60E1\n0x8EA1DFAB\t0x60B2\n0x8EA1DFAC\t0x60B6\n0x8EA1DFAD\t0x60E0\n0x8EA1DFAE\t0x611C\n0x8EA1DFAF\t0x6123\n0x8EA1DFB0\t0x60FA\n0x8EA1DFB1\t0x6115\n0x8EA1DFB2\t0x60F0\n0x8EA1DFB3\t0x60FB\n0x8EA1DFB4\t0x60F4\n0x8EA1DFB5\t0x6168\n0x8EA1DFB6\t0x60F1\n0x8EA1DFB7\t0x610E\n0x8EA1DFB8\t0x60F6\n0x8EA1DFB9\t0x6109\n0x8EA1DFBA\t0x6100\n0x8EA1DFBB\t0x6112\n0x8EA1DFBC\t0x621F\n0x8EA1DFBD\t0x6249\n0x8EA1DFBE\t0x63A3\n0x8EA1DFBF\t0x638C\n0x8EA1DFC0\t0x63CF\n0x8EA1DFC1\t0x63C0\n0x8EA1DFC2\t0x63E9\n0x8EA1DFC3\t0x63C9\n0x8EA1DFC4\t0x63C6\n0x8EA1DFC5\t0x63CD\n0x8EA1DFC6\t0x63D2\n0x8EA1DFC7\t0x63E3\n0x8EA1DFC8\t0x63D0\n0x8EA1DFC9\t0x63E1\n0x8EA1DFCA\t0x63D6\n0x8EA1DFCB\t0x63ED\n0x8EA1DFCC\t0x63EE\n0x8EA1DFCD\t0x6376\n0x8EA1DFCE\t0x63F4\n0x8EA1DFCF\t0x63EA\n0x8EA1DFD0\t0x63DB\n0x8EA1DFD1\t0x6452\n0x8EA1DFD2\t0x63DA\n0x8EA1DFD3\t0x63F9\n0x8EA1DFD4\t0x655E\n0x8EA1DFD5\t0x6566\n0x8EA1DFD6\t0x6562\n0x8EA1DFD7\t0x6563\n0x8EA1DFD8\t0x6591\n0x8EA1DFD9\t0x6590\n0x8EA1DFDA\t0x65AF\n0x8EA1DFDB\t0x666E\n0x8EA1DFDC\t0x6670\n0x8EA1DFDD\t0x6674\n0x8EA1DFDE\t0x6676\n0x8EA1DFDF\t0x666F\n0x8EA1DFE0\t0x6691\n0x8EA1DFE1\t0x667A\n0x8EA1DFE2\t0x667E\n0x8EA1DFE3\t0x6677\n0x8EA1DFE4\t0x66FE\n0x8EA1DFE5\t0x66FF\n0x8EA1DFE6\t0x671F\n0x8EA1DFE7\t0x671D\n0x8EA1DFE8\t0x68FA\n0x8EA1DFE9\t0x68D5\n0x8EA1DFEA\t0x68E0\n0x8EA1DFEB\t0x68D8\n0x8EA1DFEC\t0x68D7\n0x8EA1DFED\t0x6905\n0x8EA1DFEE\t0x68DF\n0x8EA1DFEF\t0x68F5\n0x8EA1DFF0\t0x68EE\n0x8EA1DFF1\t0x68E7\n0x8EA1DFF2\t0x68F9\n0x8EA1DFF3\t0x68D2\n0x8EA1DFF4\t0x68F2\n0x8EA1DFF5\t0x68E3\n0x8EA1DFF6\t0x68CB\n0x8EA1DFF7\t0x68CD\n0x8EA1DFF8\t0x690D\n0x8EA1DFF9\t0x6912\n0x8EA1DFFA\t0x690E\n0x8EA1DFFB\t0x68C9\n0x8EA1DFFC\t0x68DA\n0x8EA1DFFD\t0x696E\n0x8EA1DFFE\t0x68FB\n0x8EA1E0A1\t0x6B3E\n0x8EA1E0A2\t0x6B3A\n0x8EA1E0A3\t0x6B3D\n0x8EA1E0A4\t0x6B98\n0x8EA1E0A5\t0x6B96\n0x8EA1E0A6\t0x6BBC\n0x8EA1E0A7\t0x6BEF\n0x8EA1E0A8\t0x6C2E\n0x8EA1E0A9\t0x6C2F\n0x8EA1E0AA\t0x6C2C\n0x8EA1E0AB\t0x6E2F\n0x8EA1E0AC\t0x6E38\n0x8EA1E0AD\t0x6E54\n0x8EA1E0AE\t0x6E21\n0x8EA1E0AF\t0x6E32\n0x8EA1E0B0\t0x6E67\n0x8EA1E0B1\t0x6E4A\n0x8EA1E0B2\t0x6E20\n0x8EA1E0B3\t0x6E25\n0x8EA1E0B4\t0x6E23\n0x8EA1E0B5\t0x6E1B\n0x8EA1E0B6\t0x6E5B\n0x8EA1E0B7\t0x6E58\n0x8EA1E0B8\t0x6E24\n0x8EA1E0B9\t0x6E56\n0x8EA1E0BA\t0x6E6E\n0x8EA1E0BB\t0x6E2D\n0x8EA1E0BC\t0x6E26\n0x8EA1E0BD\t0x6E6F\n0x8EA1E0BE\t0x6E34\n0x8EA1E0BF\t0x6E4D\n0x8EA1E0C0\t0x6E3A\n0x8EA1E0C1\t0x6E2C\n0x8EA1E0C2\t0x6E43\n0x8EA1E0C3\t0x6E1D\n0x8EA1E0C4\t0x6E3E\n0x8EA1E0C5\t0x6ECB\n0x8EA1E0C6\t0x6E89\n0x8EA1E0C7\t0x6E19\n0x8EA1E0C8\t0x6E4E\n0x8EA1E0C9\t0x6E63\n0x8EA1E0CA\t0x6E44\n0x8EA1E0CB\t0x6E72\n0x8EA1E0CC\t0x6E69\n0x8EA1E0CD\t0x6E5F\n0x8EA1E0CE\t0x7119\n0x8EA1E0CF\t0x711A\n0x8EA1E0D0\t0x7126\n0x8EA1E0D1\t0x7130\n0x8EA1E0D2\t0x7121\n0x8EA1E0D3\t0x7136\n0x8EA1E0D4\t0x716E\n0x8EA1E0D5\t0x711C\n0x8EA1E0D6\t0x724C\n0x8EA1E0D7\t0x7284\n0x8EA1E0D8\t0x7280\n0x8EA1E0D9\t0x7336\n0x8EA1E0DA\t0x7325\n0x8EA1E0DB\t0x7334\n0x8EA1E0DC\t0x7329\n0x8EA1E0DD\t0x743A\n0x8EA1E0DE\t0x742A\n0x8EA1E0DF\t0x7433\n0x8EA1E0E0\t0x7422\n0x8EA1E0E1\t0x7425\n0x8EA1E0E2\t0x7435\n0x8EA1E0E3\t0x7436\n0x8EA1E0E4\t0x7434\n0x8EA1E0E5\t0x742F\n0x8EA1E0E6\t0x741B\n0x8EA1E0E7\t0x7426\n0x8EA1E0E8\t0x7428\n0x8EA1E0E9\t0x7525\n0x8EA1E0EA\t0x7526\n0x8EA1E0EB\t0x756B\n0x8EA1E0EC\t0x756A\n0x8EA1E0ED\t0x75E2\n0x8EA1E0EE\t0x75DB\n0x8EA1E0EF\t0x75E3\n0x8EA1E0F0\t0x75D9\n0x8EA1E0F1\t0x75D8\n0x8EA1E0F2\t0x75DE\n0x8EA1E0F3\t0x75E0\n0x8EA1E0F4\t0x767B\n0x8EA1E0F5\t0x767C\n0x8EA1E0F6\t0x7696\n0x8EA1E0F7\t0x7693\n0x8EA1E0F8\t0x76B4\n0x8EA1E0F9\t0x76DC\n0x8EA1E0FA\t0x774F\n0x8EA1E0FB\t0x77ED\n0x8EA1E0FC\t0x785D\n0x8EA1E0FD\t0x786C\n0x8EA1E0FE\t0x786F\n0x8EA1E1A1\t0x7A0D\n0x8EA1E1A2\t0x7A08\n0x8EA1E1A3\t0x7A0B\n0x8EA1E1A4\t0x7A05\n0x8EA1E1A5\t0x7A00\n0x8EA1E1A6\t0x7A98\n0x8EA1E1A7\t0x7A97\n0x8EA1E1A8\t0x7A96\n0x8EA1E1A9\t0x7AE5\n0x8EA1E1AA\t0x7AE3\n0x8EA1E1AB\t0x7B49\n0x8EA1E1AC\t0x7B56\n0x8EA1E1AD\t0x7B46\n0x8EA1E1AE\t0x7B50\n0x8EA1E1AF\t0x7B52\n0x8EA1E1B0\t0x7B54\n0x8EA1E1B1\t0x7B4D\n0x8EA1E1B2\t0x7B4B\n0x8EA1E1B3\t0x7B4F\n0x8EA1E1B4\t0x7B51\n0x8EA1E1B5\t0x7C9F\n0x8EA1E1B6\t0x7CA5\n0x8EA1E1B7\t0x7D5E\n0x8EA1E1B8\t0x7D50\n0x8EA1E1B9\t0x7D68\n0x8EA1E1BA\t0x7D55\n0x8EA1E1BB\t0x7D2B\n0x8EA1E1BC\t0x7D6E\n0x8EA1E1BD\t0x7D72\n0x8EA1E1BE\t0x7D61\n0x8EA1E1BF\t0x7D66\n0x8EA1E1C0\t0x7D62\n0x8EA1E1C1\t0x7D70\n0x8EA1E1C2\t0x7D73\n0x8EA1E1C3\t0x5584\n0x8EA1E1C4\t0x7FD4\n0x8EA1E1C5\t0x7FD5\n0x8EA1E1C6\t0x800B\n0x8EA1E1C7\t0x8052\n0x8EA1E1C8\t0x8085\n0x8EA1E1C9\t0x8155\n0x8EA1E1CA\t0x8154\n0x8EA1E1CB\t0x814B\n0x8EA1E1CC\t0x8151\n0x8EA1E1CD\t0x814E\n0x8EA1E1CE\t0x8139\n0x8EA1E1CF\t0x8146\n0x8EA1E1D0\t0x813E\n0x8EA1E1D1\t0x814C\n0x8EA1E1D2\t0x8153\n0x8EA1E1D3\t0x8174\n0x8EA1E1D4\t0x8212\n0x8EA1E1D5\t0x821C\n0x8EA1E1D6\t0x83E9\n0x8EA1E1D7\t0x8403\n0x8EA1E1D8\t0x83F8\n0x8EA1E1D9\t0x840D\n0x8EA1E1DA\t0x83E0\n0x8EA1E1DB\t0x83C5\n0x8EA1E1DC\t0x840B\n0x8EA1E1DD\t0x83C1\n0x8EA1E1DE\t0x83EF\n0x8EA1E1DF\t0x83F1\n0x8EA1E1E0\t0x83F4\n0x8EA1E1E1\t0x8457\n0x8EA1E1E2\t0x840A\n0x8EA1E1E3\t0x83F0\n0x8EA1E1E4\t0x840C\n0x8EA1E1E5\t0x83CC\n0x8EA1E1E6\t0x83FD\n0x8EA1E1E7\t0x83F2\n0x8EA1E1E8\t0x83CA\n0x8EA1E1E9\t0x8438\n0x8EA1E1EA\t0x840E\n0x8EA1E1EB\t0x8404\n0x8EA1E1EC\t0x83DC\n0x8EA1E1ED\t0x8407\n0x8EA1E1EE\t0x83D4\n0x8EA1E1EF\t0x83DF\n0x8EA1E1F0\t0x865B\n0x8EA1E1F1\t0x86DF\n0x8EA1E1F2\t0x86D9\n0x8EA1E1F3\t0x86ED\n0x8EA1E1F4\t0x86D4\n0x8EA1E1F5\t0x86DB\n0x8EA1E1F6\t0x86E4\n0x8EA1E1F7\t0x86D0\n0x8EA1E1F8\t0x86DE\n0x8EA1E1F9\t0x8857\n0x8EA1E1FA\t0x88C1\n0x8EA1E1FB\t0x88C2\n0x8EA1E1FC\t0x88B1\n0x8EA1E1FD\t0x8983\n0x8EA1E1FE\t0x8996\n0x8EA1E2A1\t0x8A3B\n0x8EA1E2A2\t0x8A60\n0x8EA1E2A3\t0x8A55\n0x8EA1E2A4\t0x8A5E\n0x8EA1E2A5\t0x8A3C\n0x8EA1E2A6\t0x8A41\n0x8EA1E2A7\t0x8A54\n0x8EA1E2A8\t0x8A5B\n0x8EA1E2A9\t0x8A50\n0x8EA1E2AA\t0x8A46\n0x8EA1E2AB\t0x8A34\n0x8EA1E2AC\t0x8A3A\n0x8EA1E2AD\t0x8A36\n0x8EA1E2AE\t0x8A56\n0x8EA1E2AF\t0x8C61\n0x8EA1E2B0\t0x8C82\n0x8EA1E2B1\t0x8CAF\n0x8EA1E2B2\t0x8CBC\n0x8EA1E2B3\t0x8CB3\n0x8EA1E2B4\t0x8CBD\n0x8EA1E2B5\t0x8CC1\n0x8EA1E2B6\t0x8CBB\n0x8EA1E2B7\t0x8CC0\n0x8EA1E2B8\t0x8CB4\n0x8EA1E2B9\t0x8CB7\n0x8EA1E2BA\t0x8CB6\n0x8EA1E2BB\t0x8CBF\n0x8EA1E2BC\t0x8CB8\n0x8EA1E2BD\t0x8D8A\n0x8EA1E2BE\t0x8D85\n0x8EA1E2BF\t0x8D81\n0x8EA1E2C0\t0x8DCE\n0x8EA1E2C1\t0x8DDD\n0x8EA1E2C2\t0x8DCB\n0x8EA1E2C3\t0x8DDA\n0x8EA1E2C4\t0x8DD1\n0x8EA1E2C5\t0x8DCC\n0x8EA1E2C6\t0x8DDB\n0x8EA1E2C7\t0x8DC6\n0x8EA1E2C8\t0x8EFB\n0x8EA1E2C9\t0x8EF8\n0x8EA1E2CA\t0x8EFC\n0x8EA1E2CB\t0x8F9C\n0x8EA1E2CC\t0x902E\n0x8EA1E2CD\t0x9035\n0x8EA1E2CE\t0x9031\n0x8EA1E2CF\t0x9038\n0x8EA1E2D0\t0x9032\n0x8EA1E2D1\t0x9036\n0x8EA1E2D2\t0x9102\n0x8EA1E2D3\t0x90F5\n0x8EA1E2D4\t0x9109\n0x8EA1E2D5\t0x90FE\n0x8EA1E2D6\t0x9163\n0x8EA1E2D7\t0x9165\n0x8EA1E2D8\t0x91CF\n0x8EA1E2D9\t0x9214\n0x8EA1E2DA\t0x9215\n0x8EA1E2DB\t0x9223\n0x8EA1E2DC\t0x9209\n0x8EA1E2DD\t0x921E\n0x8EA1E2DE\t0x920D\n0x8EA1E2DF\t0x9210\n0x8EA1E2E0\t0x9207\n0x8EA1E2E1\t0x9211\n0x8EA1E2E2\t0x9594\n0x8EA1E2E3\t0x958F\n0x8EA1E2E4\t0x958B\n0x8EA1E2E5\t0x9591\n0x8EA1E2E6\t0x9593\n0x8EA1E2E7\t0x9592\n0x8EA1E2E8\t0x958E\n0x8EA1E2E9\t0x968A\n0x8EA1E2EA\t0x968E\n0x8EA1E2EB\t0x968B\n0x8EA1E2EC\t0x967D\n0x8EA1E2ED\t0x9685\n0x8EA1E2EE\t0x9686\n0x8EA1E2EF\t0x968D\n0x8EA1E2F0\t0x9672\n0x8EA1E2F1\t0x9684\n0x8EA1E2F2\t0x96C1\n0x8EA1E2F3\t0x96C5\n0x8EA1E2F4\t0x96C4\n0x8EA1E2F5\t0x96C6\n0x8EA1E2F6\t0x96C7\n0x8EA1E2F7\t0x96EF\n0x8EA1E2F8\t0x96F2\n0x8EA1E2F9\t0x97CC\n0x8EA1E2FA\t0x9805\n0x8EA1E2FB\t0x9806\n0x8EA1E2FC\t0x9808\n0x8EA1E2FD\t0x98E7\n0x8EA1E2FE\t0x98EA\n0x8EA1E3A1\t0x98EF\n0x8EA1E3A2\t0x98E9\n0x8EA1E3A3\t0x98F2\n0x8EA1E3A4\t0x98ED\n0x8EA1E3A5\t0x99AE\n0x8EA1E3A6\t0x99AD\n0x8EA1E3A7\t0x9EC3\n0x8EA1E3A8\t0x9ECD\n0x8EA1E3A9\t0x9ED1\n0x8EA1E3AA\t0x4E82\n0x8EA1E3AB\t0x50AD\n0x8EA1E3AC\t0x50B5\n0x8EA1E3AD\t0x50B2\n0x8EA1E3AE\t0x50B3\n0x8EA1E3AF\t0x50C5\n0x8EA1E3B0\t0x50BE\n0x8EA1E3B1\t0x50AC\n0x8EA1E3B2\t0x50B7\n0x8EA1E3B3\t0x50BB\n0x8EA1E3B4\t0x50AF\n0x8EA1E3B5\t0x50C7\n0x8EA1E3B6\t0x527F\n0x8EA1E3B7\t0x5277\n0x8EA1E3B8\t0x527D\n0x8EA1E3B9\t0x52DF\n0x8EA1E3BA\t0x52E6\n0x8EA1E3BB\t0x52E4\n0x8EA1E3BC\t0x52E2\n0x8EA1E3BD\t0x52E3\n0x8EA1E3BE\t0x532F\n0x8EA1E3BF\t0x55DF\n0x8EA1E3C0\t0x55E8\n0x8EA1E3C1\t0x55D3\n0x8EA1E3C2\t0x55E6\n0x8EA1E3C3\t0x55CE\n0x8EA1E3C4\t0x55DC\n0x8EA1E3C5\t0x55C7\n0x8EA1E3C6\t0x55D1\n0x8EA1E3C7\t0x55E3\n0x8EA1E3C8\t0x55E4\n0x8EA1E3C9\t0x55EF\n0x8EA1E3CA\t0x55DA\n0x8EA1E3CB\t0x55E1\n0x8EA1E3CC\t0x55C5\n0x8EA1E3CD\t0x55C6\n0x8EA1E3CE\t0x55E5\n0x8EA1E3CF\t0x55C9\n0x8EA1E3D0\t0x5712\n0x8EA1E3D1\t0x5713\n0x8EA1E3D2\t0x585E\n0x8EA1E3D3\t0x5851\n0x8EA1E3D4\t0x5858\n0x8EA1E3D5\t0x5857\n0x8EA1E3D6\t0x585A\n0x8EA1E3D7\t0x5854\n0x8EA1E3D8\t0x586B\n0x8EA1E3D9\t0x584C\n0x8EA1E3DA\t0x586D\n0x8EA1E3DB\t0x584A\n0x8EA1E3DC\t0x5862\n0x8EA1E3DD\t0x5852\n0x8EA1E3DE\t0x584B\n0x8EA1E3DF\t0x5967\n0x8EA1E3E0\t0x5AC1\n0x8EA1E3E1\t0x5AC9\n0x8EA1E3E2\t0x5ACC\n0x8EA1E3E3\t0x5ABE\n0x8EA1E3E4\t0x5ABD\n0x8EA1E3E5\t0x5ABC\n0x8EA1E3E6\t0x5AB3\n0x8EA1E3E7\t0x5AC2\n0x8EA1E3E8\t0x5AB2\n0x8EA1E3E9\t0x5D69\n0x8EA1E3EA\t0x5D6F\n0x8EA1E3EB\t0x5E4C\n0x8EA1E3EC\t0x5E79\n0x8EA1E3ED\t0x5EC9\n0x8EA1E3EE\t0x5EC8\n0x8EA1E3EF\t0x5F12\n0x8EA1E3F0\t0x5F59\n0x8EA1E3F1\t0x5FAC\n0x8EA1E3F2\t0x5FAE\n0x8EA1E3F3\t0x611A\n0x8EA1E3F4\t0x610F\n0x8EA1E3F5\t0x6148\n0x8EA1E3F6\t0x611F\n0x8EA1E3F7\t0x60F3\n0x8EA1E3F8\t0x611B\n0x8EA1E3F9\t0x60F9\n0x8EA1E3FA\t0x6101\n0x8EA1E3FB\t0x6108\n0x8EA1E3FC\t0x614E\n0x8EA1E3FD\t0x614C\n0x8EA1E3FE\t0x6144\n0x8EA1E4A1\t0x614D\n0x8EA1E4A2\t0x613E\n0x8EA1E4A3\t0x6134\n0x8EA1E4A4\t0x6127\n0x8EA1E4A5\t0x610D\n0x8EA1E4A6\t0x6106\n0x8EA1E4A7\t0x6137\n0x8EA1E4A8\t0x6221\n0x8EA1E4A9\t0x6222\n0x8EA1E4AA\t0x6413\n0x8EA1E4AB\t0x643E\n0x8EA1E4AC\t0x641E\n0x8EA1E4AD\t0x642A\n0x8EA1E4AE\t0x642D\n0x8EA1E4AF\t0x643D\n0x8EA1E4B0\t0x642C\n0x8EA1E4B1\t0x640F\n0x8EA1E4B2\t0x641C\n0x8EA1E4B3\t0x6414\n0x8EA1E4B4\t0x640D\n0x8EA1E4B5\t0x6436\n0x8EA1E4B6\t0x6416\n0x8EA1E4B7\t0x6417\n0x8EA1E4B8\t0x6406\n0x8EA1E4B9\t0x656C\n0x8EA1E4BA\t0x659F\n0x8EA1E4BB\t0x65B0\n0x8EA1E4BC\t0x6697\n0x8EA1E4BD\t0x6689\n0x8EA1E4BE\t0x6687\n0x8EA1E4BF\t0x6688\n0x8EA1E4C0\t0x6696\n0x8EA1E4C1\t0x6684\n0x8EA1E4C2\t0x6698\n0x8EA1E4C3\t0x668D\n0x8EA1E4C4\t0x6703\n0x8EA1E4C5\t0x6994\n0x8EA1E4C6\t0x696D\n0x8EA1E4C7\t0x695A\n0x8EA1E4C8\t0x6977\n0x8EA1E4C9\t0x6960\n0x8EA1E4CA\t0x6954\n0x8EA1E4CB\t0x6975\n0x8EA1E4CC\t0x6930\n0x8EA1E4CD\t0x6982\n0x8EA1E4CE\t0x694A\n0x8EA1E4CF\t0x6968\n0x8EA1E4D0\t0x696B\n0x8EA1E4D1\t0x695E\n0x8EA1E4D2\t0x6953\n0x8EA1E4D3\t0x6979\n0x8EA1E4D4\t0x6986\n0x8EA1E4D5\t0x695D\n0x8EA1E4D6\t0x6963\n0x8EA1E4D7\t0x695B\n0x8EA1E4D8\t0x6B47\n0x8EA1E4D9\t0x6B72\n0x8EA1E4DA\t0x6BC0\n0x8EA1E4DB\t0x6BBF\n0x8EA1E4DC\t0x6BD3\n0x8EA1E4DD\t0x6BFD\n0x8EA1E4DE\t0x6EA2\n0x8EA1E4DF\t0x6EAF\n0x8EA1E4E0\t0x6ED3\n0x8EA1E4E1\t0x6EB6\n0x8EA1E4E2\t0x6EC2\n0x8EA1E4E3\t0x6E90\n0x8EA1E4E4\t0x6E9D\n0x8EA1E4E5\t0x6EC7\n0x8EA1E4E6\t0x6EC5\n0x8EA1E4E7\t0x6EA5\n0x8EA1E4E8\t0x6E98\n0x8EA1E4E9\t0x6EBC\n0x8EA1E4EA\t0x6EBA\n0x8EA1E4EB\t0x6EAB\n0x8EA1E4EC\t0x6ED1\n0x8EA1E4ED\t0x6E96\n0x8EA1E4EE\t0x6E9C\n0x8EA1E4EF\t0x6EC4\n0x8EA1E4F0\t0x6ED4\n0x8EA1E4F1\t0x6EAA\n0x8EA1E4F2\t0x6EA7\n0x8EA1E4F3\t0x6EB4\n0x8EA1E4F4\t0x714E\n0x8EA1E4F5\t0x7159\n0x8EA1E4F6\t0x7169\n0x8EA1E4F7\t0x7164\n0x8EA1E4F8\t0x7149\n0x8EA1E4F9\t0x7167\n0x8EA1E4FA\t0x715C\n0x8EA1E4FB\t0x716C\n0x8EA1E4FC\t0x7166\n0x8EA1E4FD\t0x714C\n0x8EA1E4FE\t0x7165\n0x8EA1E5A1\t0x715E\n0x8EA1E5A2\t0x7146\n0x8EA1E5A3\t0x7168\n0x8EA1E5A4\t0x7156\n0x8EA1E5A5\t0x723A\n0x8EA1E5A6\t0x7252\n0x8EA1E5A7\t0x7337\n0x8EA1E5A8\t0x7345\n0x8EA1E5A9\t0x733F\n0x8EA1E5AA\t0x733E\n0x8EA1E5AB\t0x746F\n0x8EA1E5AC\t0x745A\n0x8EA1E5AD\t0x7455\n0x8EA1E5AE\t0x745F\n0x8EA1E5AF\t0x745E\n0x8EA1E5B0\t0x7441\n0x8EA1E5B1\t0x743F\n0x8EA1E5B2\t0x7459\n0x8EA1E5B3\t0x745B\n0x8EA1E5B4\t0x745C\n0x8EA1E5B5\t0x7576\n0x8EA1E5B6\t0x7578\n0x8EA1E5B7\t0x7600\n0x8EA1E5B8\t0x75F0\n0x8EA1E5B9\t0x7601\n0x8EA1E5BA\t0x75F2\n0x8EA1E5BB\t0x75F1\n0x8EA1E5BC\t0x75FA\n0x8EA1E5BD\t0x75FF\n0x8EA1E5BE\t0x75F4\n0x8EA1E5BF\t0x75F3\n0x8EA1E5C0\t0x76DE\n0x8EA1E5C1\t0x76DF\n0x8EA1E5C2\t0x775B\n0x8EA1E5C3\t0x776B\n0x8EA1E5C4\t0x7766\n0x8EA1E5C5\t0x775E\n0x8EA1E5C6\t0x7763\n0x8EA1E5C7\t0x7779\n0x8EA1E5C8\t0x776A\n0x8EA1E5C9\t0x776C\n0x8EA1E5CA\t0x775C\n0x8EA1E5CB\t0x7765\n0x8EA1E5CC\t0x7768\n0x8EA1E5CD\t0x7762\n0x8EA1E5CE\t0x77EE\n0x8EA1E5CF\t0x788E\n0x8EA1E5D0\t0x78B0\n0x8EA1E5D1\t0x7897\n0x8EA1E5D2\t0x7898\n0x8EA1E5D3\t0x788C\n0x8EA1E5D4\t0x7889\n0x8EA1E5D5\t0x787C\n0x8EA1E5D6\t0x7891\n0x8EA1E5D7\t0x7893\n0x8EA1E5D8\t0x787F\n0x8EA1E5D9\t0x797A\n0x8EA1E5DA\t0x797F\n0x8EA1E5DB\t0x7981\n0x8EA1E5DC\t0x842C\n0x8EA1E5DD\t0x79BD\n0x8EA1E5DE\t0x7A1C\n0x8EA1E5DF\t0x7A1A\n0x8EA1E5E0\t0x7A20\n0x8EA1E5E1\t0x7A14\n0x8EA1E5E2\t0x7A1F\n0x8EA1E5E3\t0x7A1E\n0x8EA1E5E4\t0x7A9F\n0x8EA1E5E5\t0x7AA0\n0x8EA1E5E6\t0x7B77\n0x8EA1E5E7\t0x7BC0\n0x8EA1E5E8\t0x7B60\n0x8EA1E5E9\t0x7B6E\n0x8EA1E5EA\t0x7B67\n0x8EA1E5EB\t0x7CB1\n0x8EA1E5EC\t0x7CB3\n0x8EA1E5ED\t0x7CB5\n0x8EA1E5EE\t0x7D93\n0x8EA1E5EF\t0x7D79\n0x8EA1E5F0\t0x7D91\n0x8EA1E5F1\t0x7D81\n0x8EA1E5F2\t0x7D8F\n0x8EA1E5F3\t0x7D5B\n0x8EA1E5F4\t0x7F6E\n0x8EA1E5F5\t0x7F69\n0x8EA1E5F6\t0x7F6A\n0x8EA1E5F7\t0x7F72\n0x8EA1E5F8\t0x7FA9\n0x8EA1E5F9\t0x7FA8\n0x8EA1E5FA\t0x7FA4\n0x8EA1E5FB\t0x8056\n0x8EA1E5FC\t0x8058\n0x8EA1E5FD\t0x8086\n0x8EA1E5FE\t0x8084\n0x8EA1E6A1\t0x8171\n0x8EA1E6A2\t0x8170\n0x8EA1E6A3\t0x8178\n0x8EA1E6A4\t0x8165\n0x8EA1E6A5\t0x816E\n0x8EA1E6A6\t0x8173\n0x8EA1E6A7\t0x816B\n0x8EA1E6A8\t0x8179\n0x8EA1E6A9\t0x817A\n0x8EA1E6AA\t0x8166\n0x8EA1E6AB\t0x8205\n0x8EA1E6AC\t0x8247\n0x8EA1E6AD\t0x8482\n0x8EA1E6AE\t0x8477\n0x8EA1E6AF\t0x843D\n0x8EA1E6B0\t0x8431\n0x8EA1E6B1\t0x8475\n0x8EA1E6B2\t0x8466\n0x8EA1E6B3\t0x846B\n0x8EA1E6B4\t0x8449\n0x8EA1E6B5\t0x846C\n0x8EA1E6B6\t0x845B\n0x8EA1E6B7\t0x843C\n0x8EA1E6B8\t0x8435\n0x8EA1E6B9\t0x8461\n0x8EA1E6BA\t0x8463\n0x8EA1E6BB\t0x8469\n0x8EA1E6BC\t0x846D\n0x8EA1E6BD\t0x8446\n0x8EA1E6BE\t0x865E\n0x8EA1E6BF\t0x865C\n0x8EA1E6C0\t0x865F\n0x8EA1E6C1\t0x86F9\n0x8EA1E6C2\t0x8713\n0x8EA1E6C3\t0x8708\n0x8EA1E6C4\t0x8707\n0x8EA1E6C5\t0x8700\n0x8EA1E6C6\t0x86FE\n0x8EA1E6C7\t0x86FB\n0x8EA1E6C8\t0x8702\n0x8EA1E6C9\t0x8703\n0x8EA1E6CA\t0x8706\n0x8EA1E6CB\t0x870A\n0x8EA1E6CC\t0x8859\n0x8EA1E6CD\t0x88DF\n0x8EA1E6CE\t0x88D4\n0x8EA1E6CF\t0x88D9\n0x8EA1E6D0\t0x88DC\n0x8EA1E6D1\t0x88D8\n0x8EA1E6D2\t0x88DD\n0x8EA1E6D3\t0x88E1\n0x8EA1E6D4\t0x88CA\n0x8EA1E6D5\t0x88D5\n0x8EA1E6D6\t0x88D2\n0x8EA1E6D7\t0x899C\n0x8EA1E6D8\t0x89E3\n0x8EA1E6D9\t0x8A6B\n0x8EA1E6DA\t0x8A72\n0x8EA1E6DB\t0x8A73\n0x8EA1E6DC\t0x8A66\n0x8EA1E6DD\t0x8A69\n0x8EA1E6DE\t0x8A70\n0x8EA1E6DF\t0x8A87\n0x8EA1E6E0\t0x8A7C\n0x8EA1E6E1\t0x8A63\n0x8EA1E6E2\t0x8AA0\n0x8EA1E6E3\t0x8A71\n0x8EA1E6E4\t0x8A85\n0x8EA1E6E5\t0x8A6D\n0x8EA1E6E6\t0x8A62\n0x8EA1E6E7\t0x8A6E\n0x8EA1E6E8\t0x8A6C\n0x8EA1E6E9\t0x8A79\n0x8EA1E6EA\t0x8A7B\n0x8EA1E6EB\t0x8A3E\n0x8EA1E6EC\t0x8A68\n0x8EA1E6ED\t0x8C62\n0x8EA1E6EE\t0x8C8A\n0x8EA1E6EF\t0x8C89\n0x8EA1E6F0\t0x8CCA\n0x8EA1E6F1\t0x8CC7\n0x8EA1E6F2\t0x8CC8\n0x8EA1E6F3\t0x8CC4\n0x8EA1E6F4\t0x8CB2\n0x8EA1E6F5\t0x8CC3\n0x8EA1E6F6\t0x8CC2\n0x8EA1E6F7\t0x8CC5\n0x8EA1E6F8\t0x8DE1\n0x8EA1E6F9\t0x8DDF\n0x8EA1E6FA\t0x8DE8\n0x8EA1E6FB\t0x8DEF\n0x8EA1E6FC\t0x8DF3\n0x8EA1E6FD\t0x8DFA\n0x8EA1E6FE\t0x8DEA\n0x8EA1E7A1\t0x8DE4\n0x8EA1E7A2\t0x8DE6\n0x8EA1E7A3\t0x8EB2\n0x8EA1E7A4\t0x8F03\n0x8EA1E7A5\t0x8F09\n0x8EA1E7A6\t0x8EFE\n0x8EA1E7A7\t0x8F0A\n0x8EA1E7A8\t0x8F9F\n0x8EA1E7A9\t0x8FB2\n0x8EA1E7AA\t0x904B\n0x8EA1E7AB\t0x904A\n0x8EA1E7AC\t0x9053\n0x8EA1E7AD\t0x9042\n0x8EA1E7AE\t0x9054\n0x8EA1E7AF\t0x903C\n0x8EA1E7B0\t0x9055\n0x8EA1E7B1\t0x9050\n0x8EA1E7B2\t0x9047\n0x8EA1E7B3\t0x904F\n0x8EA1E7B4\t0x904E\n0x8EA1E7B5\t0x904D\n0x8EA1E7B6\t0x9051\n0x8EA1E7B7\t0x903E\n0x8EA1E7B8\t0x9041\n0x8EA1E7B9\t0x9112\n0x8EA1E7BA\t0x9117\n0x8EA1E7BB\t0x916C\n0x8EA1E7BC\t0x916A\n0x8EA1E7BD\t0x9169\n0x8EA1E7BE\t0x91C9\n0x8EA1E7BF\t0x9237\n0x8EA1E7C0\t0x9257\n0x8EA1E7C1\t0x9238\n0x8EA1E7C2\t0x923D\n0x8EA1E7C3\t0x9240\n0x8EA1E7C4\t0x923E\n0x8EA1E7C5\t0x925B\n0x8EA1E7C6\t0x924B\n0x8EA1E7C7\t0x9264\n0x8EA1E7C8\t0x9251\n0x8EA1E7C9\t0x9234\n0x8EA1E7CA\t0x9249\n0x8EA1E7CB\t0x924D\n0x8EA1E7CC\t0x9245\n0x8EA1E7CD\t0x9239\n0x8EA1E7CE\t0x923F\n0x8EA1E7CF\t0x925A\n0x8EA1E7D0\t0x9598\n0x8EA1E7D1\t0x9698\n0x8EA1E7D2\t0x9694\n0x8EA1E7D3\t0x9695\n0x8EA1E7D4\t0x96CD\n0x8EA1E7D5\t0x96CB\n0x8EA1E7D6\t0x96C9\n0x8EA1E7D7\t0x96CA\n0x8EA1E7D8\t0x96F7\n0x8EA1E7D9\t0x96FB\n0x8EA1E7DA\t0x96F9\n0x8EA1E7DB\t0x96F6\n0x8EA1E7DC\t0x9756\n0x8EA1E7DD\t0x9774\n0x8EA1E7DE\t0x9776\n0x8EA1E7DF\t0x9810\n0x8EA1E7E0\t0x9811\n0x8EA1E7E1\t0x9813\n0x8EA1E7E2\t0x980A\n0x8EA1E7E3\t0x9812\n0x8EA1E7E4\t0x980C\n0x8EA1E7E5\t0x98FC\n0x8EA1E7E6\t0x98F4\n0x8EA1E7E7\t0x98FD\n0x8EA1E7E8\t0x98FE\n0x8EA1E7E9\t0x99B3\n0x8EA1E7EA\t0x99B1\n0x8EA1E7EB\t0x99B4\n0x8EA1E7EC\t0x9AE1\n0x8EA1E7ED\t0x9CE9\n0x8EA1E7EE\t0x9E82\n0x8EA1E7EF\t0x9F0E\n0x8EA1E7F0\t0x9F13\n0x8EA1E7F1\t0x9F20\n0x8EA1E7F2\t0x50E7\n0x8EA1E7F3\t0x50EE\n0x8EA1E7F4\t0x50E5\n0x8EA1E7F5\t0x50D6\n0x8EA1E7F6\t0x50ED\n0x8EA1E7F7\t0x50DA\n0x8EA1E7F8\t0x50D5\n0x8EA1E7F9\t0x50CF\n0x8EA1E7FA\t0x50D1\n0x8EA1E7FB\t0x50F1\n0x8EA1E7FC\t0x50CE\n0x8EA1E7FD\t0x50E9\n0x8EA1E7FE\t0x5162\n0x8EA1E8A1\t0x51F3\n0x8EA1E8A2\t0x5283\n0x8EA1E8A3\t0x5282\n0x8EA1E8A4\t0x5331\n0x8EA1E8A5\t0x53AD\n0x8EA1E8A6\t0x55FE\n0x8EA1E8A7\t0x5600\n0x8EA1E8A8\t0x561B\n0x8EA1E8A9\t0x5617\n0x8EA1E8AA\t0x55FD\n0x8EA1E8AB\t0x5614\n0x8EA1E8AC\t0x5606\n0x8EA1E8AD\t0x5609\n0x8EA1E8AE\t0x560D\n0x8EA1E8AF\t0x560E\n0x8EA1E8B0\t0x55F7\n0x8EA1E8B1\t0x5616\n0x8EA1E8B2\t0x561F\n0x8EA1E8B3\t0x5608\n0x8EA1E8B4\t0x5610\n0x8EA1E8B5\t0x55F6\n0x8EA1E8B6\t0x5718\n0x8EA1E8B7\t0x5716\n0x8EA1E8B8\t0x5875\n0x8EA1E8B9\t0x587E\n0x8EA1E8BA\t0x5883\n0x8EA1E8BB\t0x5893\n0x8EA1E8BC\t0x588A\n0x8EA1E8BD\t0x5879\n0x8EA1E8BE\t0x5885\n0x8EA1E8BF\t0x587D\n0x8EA1E8C0\t0x58FD\n0x8EA1E8C1\t0x5925\n0x8EA1E8C2\t0x5922\n0x8EA1E8C3\t0x5924\n0x8EA1E8C4\t0x596A\n0x8EA1E8C5\t0x5969\n0x8EA1E8C6\t0x5AE1\n0x8EA1E8C7\t0x5AE6\n0x8EA1E8C8\t0x5AE9\n0x8EA1E8C9\t0x5AD7\n0x8EA1E8CA\t0x5AD6\n0x8EA1E8CB\t0x5AD8\n0x8EA1E8CC\t0x5AE3\n0x8EA1E8CD\t0x5B75\n0x8EA1E8CE\t0x5BDE\n0x8EA1E8CF\t0x5BE7\n0x8EA1E8D0\t0x5BE1\n0x8EA1E8D1\t0x5BE5\n0x8EA1E8D2\t0x5BE6\n0x8EA1E8D3\t0x5BE8\n0x8EA1E8D4\t0x5BE2\n0x8EA1E8D5\t0x5BE4\n0x8EA1E8D6\t0x5BDF\n0x8EA1E8D7\t0x5C0D\n0x8EA1E8D8\t0x5C62\n0x8EA1E8D9\t0x5D84\n0x8EA1E8DA\t0x5D87\n0x8EA1E8DB\t0x5E5B\n0x8EA1E8DC\t0x5E63\n0x8EA1E8DD\t0x5E55\n0x8EA1E8DE\t0x5E57\n0x8EA1E8DF\t0x5E54\n0x8EA1E8E0\t0x5ED3\n0x8EA1E8E1\t0x5ED6\n0x8EA1E8E2\t0x5F0A\n0x8EA1E8E3\t0x5F46\n0x8EA1E8E4\t0x5F70\n0x8EA1E8E5\t0x5FB9\n0x8EA1E8E6\t0x6147\n0x8EA1E8E7\t0x613F\n0x8EA1E8E8\t0x614B\n0x8EA1E8E9\t0x6177\n0x8EA1E8EA\t0x6162\n0x8EA1E8EB\t0x6163\n0x8EA1E8EC\t0x615F\n0x8EA1E8ED\t0x615A\n0x8EA1E8EE\t0x6158\n0x8EA1E8EF\t0x6175\n0x8EA1E8F0\t0x622A\n0x8EA1E8F1\t0x6487\n0x8EA1E8F2\t0x6458\n0x8EA1E8F3\t0x6454\n0x8EA1E8F4\t0x64A4\n0x8EA1E8F5\t0x6478\n0x8EA1E8F6\t0x645F\n0x8EA1E8F7\t0x647A\n0x8EA1E8F8\t0x6451\n0x8EA1E8F9\t0x6467\n0x8EA1E8FA\t0x6434\n0x8EA1E8FB\t0x646D\n0x8EA1E8FC\t0x647B\n0x8EA1E8FD\t0x6572\n0x8EA1E8FE\t0x65A1\n0x8EA1E9A1\t0x65D7\n0x8EA1E9A2\t0x65D6\n0x8EA1E9A3\t0x66A2\n0x8EA1E9A4\t0x66A8\n0x8EA1E9A5\t0x669D\n0x8EA1E9A6\t0x699C\n0x8EA1E9A7\t0x69A8\n0x8EA1E9A8\t0x6995\n0x8EA1E9A9\t0x69C1\n0x8EA1E9AA\t0x69AE\n0x8EA1E9AB\t0x69D3\n0x8EA1E9AC\t0x69CB\n0x8EA1E9AD\t0x699B\n0x8EA1E9AE\t0x69B7\n0x8EA1E9AF\t0x69BB\n0x8EA1E9B0\t0x69AB\n0x8EA1E9B1\t0x69B4\n0x8EA1E9B2\t0x69D0\n0x8EA1E9B3\t0x69CD\n0x8EA1E9B4\t0x69AD\n0x8EA1E9B5\t0x69CC\n0x8EA1E9B6\t0x69A6\n0x8EA1E9B7\t0x69C3\n0x8EA1E9B8\t0x69A3\n0x8EA1E9B9\t0x6B49\n0x8EA1E9BA\t0x6B4C\n0x8EA1E9BB\t0x6C33\n0x8EA1E9BC\t0x6F33\n0x8EA1E9BD\t0x6F14\n0x8EA1E9BE\t0x6EFE\n0x8EA1E9BF\t0x6F13\n0x8EA1E9C0\t0x6EF4\n0x8EA1E9C1\t0x6F29\n0x8EA1E9C2\t0x6F3E\n0x8EA1E9C3\t0x6F20\n0x8EA1E9C4\t0x6F2C\n0x8EA1E9C5\t0x6F0F\n0x8EA1E9C6\t0x6F02\n0x8EA1E9C7\t0x6F22\n0x8EA1E9C8\t0x6EFF\n0x8EA1E9C9\t0x6EEF\n0x8EA1E9CA\t0x6F06\n0x8EA1E9CB\t0x6F31\n0x8EA1E9CC\t0x6F38\n0x8EA1E9CD\t0x6F32\n0x8EA1E9CE\t0x6F23\n0x8EA1E9CF\t0x6F15\n0x8EA1E9D0\t0x6F2B\n0x8EA1E9D1\t0x6F2F\n0x8EA1E9D2\t0x6F88\n0x8EA1E9D3\t0x6F2A\n0x8EA1E9D4\t0x6EEC\n0x8EA1E9D5\t0x6F01\n0x8EA1E9D6\t0x6EF2\n0x8EA1E9D7\t0x6ECC\n0x8EA1E9D8\t0x6EF7\n0x8EA1E9D9\t0x7194\n0x8EA1E9DA\t0x7199\n0x8EA1E9DB\t0x717D\n0x8EA1E9DC\t0x718A\n0x8EA1E9DD\t0x7184\n0x8EA1E9DE\t0x7192\n0x8EA1E9DF\t0x723E\n0x8EA1E9E0\t0x7292\n0x8EA1E9E1\t0x7296\n0x8EA1E9E2\t0x7344\n0x8EA1E9E3\t0x7350\n0x8EA1E9E4\t0x7464\n0x8EA1E9E5\t0x7463\n0x8EA1E9E6\t0x746A\n0x8EA1E9E7\t0x7470\n0x8EA1E9E8\t0x746D\n0x8EA1E9E9\t0x7504\n0x8EA1E9EA\t0x7591\n0x8EA1E9EB\t0x7627\n0x8EA1E9EC\t0x760D\n0x8EA1E9ED\t0x760B\n0x8EA1E9EE\t0x7609\n0x8EA1E9EF\t0x7613\n0x8EA1E9F0\t0x76E1\n0x8EA1E9F1\t0x76E3\n0x8EA1E9F2\t0x7784\n0x8EA1E9F3\t0x777D\n0x8EA1E9F4\t0x777F\n0x8EA1E9F5\t0x7761\n0x8EA1E9F6\t0x78C1\n0x8EA1E9F7\t0x789F\n0x8EA1E9F8\t0x78A7\n0x8EA1E9F9\t0x78B3\n0x8EA1E9FA\t0x78A9\n0x8EA1E9FB\t0x78A3\n0x8EA1E9FC\t0x798E\n0x8EA1E9FD\t0x798F\n0x8EA1E9FE\t0x798D\n0x8EA1EAA1\t0x7A2E\n0x8EA1EAA2\t0x7A31\n0x8EA1EAA3\t0x7AAA\n0x8EA1EAA4\t0x7AA9\n0x8EA1EAA5\t0x7AED\n0x8EA1EAA6\t0x7AEF\n0x8EA1EAA7\t0x7BA1\n0x8EA1EAA8\t0x7B95\n0x8EA1EAA9\t0x7B8B\n0x8EA1EAAA\t0x7B75\n0x8EA1EAAB\t0x7B97\n0x8EA1EAAC\t0x7B9D\n0x8EA1EAAD\t0x7B94\n0x8EA1EAAE\t0x7B8F\n0x8EA1EAAF\t0x7BB8\n0x8EA1EAB0\t0x7B87\n0x8EA1EAB1\t0x7B84\n0x8EA1EAB2\t0x7CB9\n0x8EA1EAB3\t0x7CBD\n0x8EA1EAB4\t0x7CBE\n0x8EA1EAB5\t0x7DBB\n0x8EA1EAB6\t0x7DB0\n0x8EA1EAB7\t0x7D9C\n0x8EA1EAB8\t0x7DBD\n0x8EA1EAB9\t0x7DBE\n0x8EA1EABA\t0x7DA0\n0x8EA1EABB\t0x7DCA\n0x8EA1EABC\t0x7DB4\n0x8EA1EABD\t0x7DB2\n0x8EA1EABE\t0x7DB1\n0x8EA1EABF\t0x7DBA\n0x8EA1EAC0\t0x7DA2\n0x8EA1EAC1\t0x7DBF\n0x8EA1EAC2\t0x7DB5\n0x8EA1EAC3\t0x7DB8\n0x8EA1EAC4\t0x7DAD\n0x8EA1EAC5\t0x7DD2\n0x8EA1EAC6\t0x7DC7\n0x8EA1EAC7\t0x7DAC\n0x8EA1EAC8\t0x7F70\n0x8EA1EAC9\t0x7FE0\n0x8EA1EACA\t0x7FE1\n0x8EA1EACB\t0x7FDF\n0x8EA1EACC\t0x805E\n0x8EA1EACD\t0x805A\n0x8EA1EACE\t0x8087\n0x8EA1EACF\t0x8150\n0x8EA1EAD0\t0x8180\n0x8EA1EAD1\t0x818F\n0x8EA1EAD2\t0x8188\n0x8EA1EAD3\t0x818A\n0x8EA1EAD4\t0x817F\n0x8EA1EAD5\t0x8182\n0x8EA1EAD6\t0x81E7\n0x8EA1EAD7\t0x81FA\n0x8EA1EAD8\t0x8207\n0x8EA1EAD9\t0x8214\n0x8EA1EADA\t0x821E\n0x8EA1EADB\t0x824B\n0x8EA1EADC\t0x84C9\n0x8EA1EADD\t0x84BF\n0x8EA1EADE\t0x84C6\n0x8EA1EADF\t0x84C4\n0x8EA1EAE0\t0x8499\n0x8EA1EAE1\t0x849E\n0x8EA1EAE2\t0x84B2\n0x8EA1EAE3\t0x849C\n0x8EA1EAE4\t0x84CB\n0x8EA1EAE5\t0x84B8\n0x8EA1EAE6\t0x84C0\n0x8EA1EAE7\t0x84D3\n0x8EA1EAE8\t0x8490\n0x8EA1EAE9\t0x84BC\n0x8EA1EAEA\t0x84D1\n0x8EA1EAEB\t0x84CA\n0x8EA1EAEC\t0x873F\n0x8EA1EAED\t0x871C\n0x8EA1EAEE\t0x873B\n0x8EA1EAEF\t0x8722\n0x8EA1EAF0\t0x8725\n0x8EA1EAF1\t0x8734\n0x8EA1EAF2\t0x8718\n0x8EA1EAF3\t0x8755\n0x8EA1EAF4\t0x8737\n0x8EA1EAF5\t0x8729\n0x8EA1EAF6\t0x88F3\n0x8EA1EAF7\t0x8902\n0x8EA1EAF8\t0x88F4\n0x8EA1EAF9\t0x88F9\n0x8EA1EAFA\t0x88F8\n0x8EA1EAFB\t0x88FD\n0x8EA1EAFC\t0x88E8\n0x8EA1EAFD\t0x891A\n0x8EA1EAFE\t0x88EF\n0x8EA1EBA1\t0x8AA6\n0x8EA1EBA2\t0x8A8C\n0x8EA1EBA3\t0x8A9E\n0x8EA1EBA4\t0x8AA3\n0x8EA1EBA5\t0x8A8D\n0x8EA1EBA6\t0x8AA1\n0x8EA1EBA7\t0x8A93\n0x8EA1EBA8\t0x8AA4\n0x8EA1EBA9\t0x8AAA\n0x8EA1EBAA\t0x8AA5\n0x8EA1EBAB\t0x8AA8\n0x8EA1EBAC\t0x8A98\n0x8EA1EBAD\t0x8A91\n0x8EA1EBAE\t0x8A9A\n0x8EA1EBAF\t0x8AA7\n0x8EA1EBB0\t0x8C6A\n0x8EA1EBB1\t0x8C8D\n0x8EA1EBB2\t0x8C8C\n0x8EA1EBB3\t0x8CD3\n0x8EA1EBB4\t0x8CD1\n0x8EA1EBB5\t0x8CD2\n0x8EA1EBB6\t0x8D6B\n0x8EA1EBB7\t0x8D99\n0x8EA1EBB8\t0x8D95\n0x8EA1EBB9\t0x8DFC\n0x8EA1EBBA\t0x8F14\n0x8EA1EBBB\t0x8F12\n0x8EA1EBBC\t0x8F15\n0x8EA1EBBD\t0x8F13\n0x8EA1EBBE\t0x8FA3\n0x8EA1EBBF\t0x9060\n0x8EA1EBC0\t0x9058\n0x8EA1EBC1\t0x905C\n0x8EA1EBC2\t0x9063\n0x8EA1EBC3\t0x9059\n0x8EA1EBC4\t0x905E\n0x8EA1EBC5\t0x9062\n0x8EA1EBC6\t0x905D\n0x8EA1EBC7\t0x905B\n0x8EA1EBC8\t0x9119\n0x8EA1EBC9\t0x9118\n0x8EA1EBCA\t0x911E\n0x8EA1EBCB\t0x9175\n0x8EA1EBCC\t0x9178\n0x8EA1EBCD\t0x9177\n0x8EA1EBCE\t0x9174\n0x8EA1EBCF\t0x9278\n0x8EA1EBD0\t0x92AC\n0x8EA1EBD1\t0x9280\n0x8EA1EBD2\t0x9285\n0x8EA1EBD3\t0x9298\n0x8EA1EBD4\t0x9296\n0x8EA1EBD5\t0x927B\n0x8EA1EBD6\t0x9293\n0x8EA1EBD7\t0x929C\n0x8EA1EBD8\t0x92A8\n0x8EA1EBD9\t0x927C\n0x8EA1EBDA\t0x9291\n0x8EA1EBDB\t0x95A1\n0x8EA1EBDC\t0x95A8\n0x8EA1EBDD\t0x95A9\n0x8EA1EBDE\t0x95A3\n0x8EA1EBDF\t0x95A5\n0x8EA1EBE0\t0x95A4\n0x8EA1EBE1\t0x9699\n0x8EA1EBE2\t0x969C\n0x8EA1EBE3\t0x969B\n0x8EA1EBE4\t0x96CC\n0x8EA1EBE5\t0x96D2\n0x8EA1EBE6\t0x9700\n0x8EA1EBE7\t0x977C\n0x8EA1EBE8\t0x9785\n0x8EA1EBE9\t0x97F6\n0x8EA1EBEA\t0x9817\n0x8EA1EBEB\t0x9818\n0x8EA1EBEC\t0x98AF\n0x8EA1EBED\t0x98B1\n0x8EA1EBEE\t0x9903\n0x8EA1EBEF\t0x9905\n0x8EA1EBF0\t0x990C\n0x8EA1EBF1\t0x9909\n0x8EA1EBF2\t0x99C1\n0x8EA1EBF3\t0x9AAF\n0x8EA1EBF4\t0x9AB0\n0x8EA1EBF5\t0x9AE6\n0x8EA1EBF6\t0x9B41\n0x8EA1EBF7\t0x9B42\n0x8EA1EBF8\t0x9CF4\n0x8EA1EBF9\t0x9CF6\n0x8EA1EBFA\t0x9CF3\n0x8EA1EBFB\t0x9EBC\n0x8EA1EBFC\t0x9F3B\n0x8EA1EBFD\t0x9F4A\n0x8EA1EBFE\t0x5104\n0x8EA1ECA1\t0x5100\n0x8EA1ECA2\t0x50FB\n0x8EA1ECA3\t0x50F5\n0x8EA1ECA4\t0x50F9\n0x8EA1ECA5\t0x5102\n0x8EA1ECA6\t0x5108\n0x8EA1ECA7\t0x5109\n0x8EA1ECA8\t0x5105\n0x8EA1ECA9\t0x51DC\n0x8EA1ECAA\t0x5287\n0x8EA1ECAB\t0x5288\n0x8EA1ECAC\t0x5289\n0x8EA1ECAD\t0x528D\n0x8EA1ECAE\t0x528A\n0x8EA1ECAF\t0x52F0\n0x8EA1ECB0\t0x53B2\n0x8EA1ECB1\t0x562E\n0x8EA1ECB2\t0x563B\n0x8EA1ECB3\t0x5639\n0x8EA1ECB4\t0x5632\n0x8EA1ECB5\t0x563F\n0x8EA1ECB6\t0x5634\n0x8EA1ECB7\t0x5629\n0x8EA1ECB8\t0x5653\n0x8EA1ECB9\t0x564E\n0x8EA1ECBA\t0x5657\n0x8EA1ECBB\t0x5674\n0x8EA1ECBC\t0x5636\n0x8EA1ECBD\t0x562F\n0x8EA1ECBE\t0x5630\n0x8EA1ECBF\t0x5880\n0x8EA1ECC0\t0x589F\n0x8EA1ECC1\t0x589E\n0x8EA1ECC2\t0x58B3\n0x8EA1ECC3\t0x589C\n0x8EA1ECC4\t0x58AE\n0x8EA1ECC5\t0x58A9\n0x8EA1ECC6\t0x58A6\n0x8EA1ECC7\t0x596D\n0x8EA1ECC8\t0x5B09\n0x8EA1ECC9\t0x5AFB\n0x8EA1ECCA\t0x5B0B\n0x8EA1ECCB\t0x5AF5\n0x8EA1ECCC\t0x5B0C\n0x8EA1ECCD\t0x5B08\n0x8EA1ECCE\t0x5BEE\n0x8EA1ECCF\t0x5BEC\n0x8EA1ECD0\t0x5BE9\n0x8EA1ECD1\t0x5BEB\n0x8EA1ECD2\t0x5C64\n0x8EA1ECD3\t0x5C65\n0x8EA1ECD4\t0x5D9D\n0x8EA1ECD5\t0x5D94\n0x8EA1ECD6\t0x5E62\n0x8EA1ECD7\t0x5E5F\n0x8EA1ECD8\t0x5E61\n0x8EA1ECD9\t0x5EE2\n0x8EA1ECDA\t0x5EDA\n0x8EA1ECDB\t0x5EDF\n0x8EA1ECDC\t0x5EDD\n0x8EA1ECDD\t0x5EE3\n0x8EA1ECDE\t0x5EE0\n0x8EA1ECDF\t0x5F48\n0x8EA1ECE0\t0x5F71\n0x8EA1ECE1\t0x5FB7\n0x8EA1ECE2\t0x5FB5\n0x8EA1ECE3\t0x6176\n0x8EA1ECE4\t0x6167\n0x8EA1ECE5\t0x616E\n0x8EA1ECE6\t0x615D\n0x8EA1ECE7\t0x6155\n0x8EA1ECE8\t0x6182\n0x8EA1ECE9\t0x617C\n0x8EA1ECEA\t0x6170\n0x8EA1ECEB\t0x616B\n0x8EA1ECEC\t0x617E\n0x8EA1ECED\t0x61A7\n0x8EA1ECEE\t0x6190\n0x8EA1ECEF\t0x61AB\n0x8EA1ECF0\t0x618E\n0x8EA1ECF1\t0x61AC\n0x8EA1ECF2\t0x619A\n0x8EA1ECF3\t0x61A4\n0x8EA1ECF4\t0x6194\n0x8EA1ECF5\t0x61AE\n0x8EA1ECF6\t0x622E\n0x8EA1ECF7\t0x6469\n0x8EA1ECF8\t0x646F\n0x8EA1ECF9\t0x6479\n0x8EA1ECFA\t0x649E\n0x8EA1ECFB\t0x64B2\n0x8EA1ECFC\t0x6488\n0x8EA1ECFD\t0x6490\n0x8EA1ECFE\t0x64B0\n0x8EA1EDA1\t0x64A5\n0x8EA1EDA2\t0x6493\n0x8EA1EDA3\t0x6495\n0x8EA1EDA4\t0x64A9\n0x8EA1EDA5\t0x6492\n0x8EA1EDA6\t0x64AE\n0x8EA1EDA7\t0x64AD\n0x8EA1EDA8\t0x64AB\n0x8EA1EDA9\t0x649A\n0x8EA1EDAA\t0x64AC\n0x8EA1EDAB\t0x6499\n0x8EA1EDAC\t0x64A2\n0x8EA1EDAD\t0x64B3\n0x8EA1EDAE\t0x6575\n0x8EA1EDAF\t0x6577\n0x8EA1EDB0\t0x6578\n0x8EA1EDB1\t0x66AE\n0x8EA1EDB2\t0x66AB\n0x8EA1EDB3\t0x66B4\n0x8EA1EDB4\t0x66B1\n0x8EA1EDB5\t0x6A23\n0x8EA1EDB6\t0x6A1F\n0x8EA1EDB7\t0x69E8\n0x8EA1EDB8\t0x6A01\n0x8EA1EDB9\t0x6A1E\n0x8EA1EDBA\t0x6A19\n0x8EA1EDBB\t0x69FD\n0x8EA1EDBC\t0x6A21\n0x8EA1EDBD\t0x6A13\n0x8EA1EDBE\t0x6A0A\n0x8EA1EDBF\t0x69F3\n0x8EA1EDC0\t0x6A02\n0x8EA1EDC1\t0x6A05\n0x8EA1EDC2\t0x69ED\n0x8EA1EDC3\t0x6A11\n0x8EA1EDC4\t0x6B50\n0x8EA1EDC5\t0x6B4E\n0x8EA1EDC6\t0x6BA4\n0x8EA1EDC7\t0x6BC5\n0x8EA1EDC8\t0x6BC6\n0x8EA1EDC9\t0x6F3F\n0x8EA1EDCA\t0x6F7C\n0x8EA1EDCB\t0x6F84\n0x8EA1EDCC\t0x6F51\n0x8EA1EDCD\t0x6F66\n0x8EA1EDCE\t0x6F54\n0x8EA1EDCF\t0x6F86\n0x8EA1EDD0\t0x6F6D\n0x8EA1EDD1\t0x6F5B\n0x8EA1EDD2\t0x6F78\n0x8EA1EDD3\t0x6F6E\n0x8EA1EDD4\t0x6F8E\n0x8EA1EDD5\t0x6F7A\n0x8EA1EDD6\t0x6F70\n0x8EA1EDD7\t0x6F64\n0x8EA1EDD8\t0x6F97\n0x8EA1EDD9\t0x6F58\n0x8EA1EDDA\t0x6ED5\n0x8EA1EDDB\t0x6F6F\n0x8EA1EDDC\t0x6F60\n0x8EA1EDDD\t0x6F5F\n0x8EA1EDDE\t0x719F\n0x8EA1EDDF\t0x71AC\n0x8EA1EDE0\t0x71B1\n0x8EA1EDE1\t0x71A8\n0x8EA1EDE2\t0x7256\n0x8EA1EDE3\t0x729B\n0x8EA1EDE4\t0x734E\n0x8EA1EDE5\t0x7357\n0x8EA1EDE6\t0x7469\n0x8EA1EDE7\t0x748B\n0x8EA1EDE8\t0x7483\n0x8EA1EDE9\t0x747E\n0x8EA1EDEA\t0x7480\n0x8EA1EDEB\t0x757F\n0x8EA1EDEC\t0x7620\n0x8EA1EDED\t0x7629\n0x8EA1EDEE\t0x761F\n0x8EA1EDEF\t0x7624\n0x8EA1EDF0\t0x7626\n0x8EA1EDF1\t0x7621\n0x8EA1EDF2\t0x7622\n0x8EA1EDF3\t0x769A\n0x8EA1EDF4\t0x76BA\n0x8EA1EDF5\t0x76E4\n0x8EA1EDF6\t0x778E\n0x8EA1EDF7\t0x7787\n0x8EA1EDF8\t0x778C\n0x8EA1EDF9\t0x7791\n0x8EA1EDFA\t0x778B\n0x8EA1EDFB\t0x78CB\n0x8EA1EDFC\t0x78C5\n0x8EA1EDFD\t0x78BA\n0x8EA1EDFE\t0x78CA\n0x8EA1EEA1\t0x78BE\n0x8EA1EEA2\t0x78D5\n0x8EA1EEA3\t0x78BC\n0x8EA1EEA4\t0x78D0\n0x8EA1EEA5\t0x7A3F\n0x8EA1EEA6\t0x7A3C\n0x8EA1EEA7\t0x7A40\n0x8EA1EEA8\t0x7A3D\n0x8EA1EEA9\t0x7A37\n0x8EA1EEAA\t0x7A3B\n0x8EA1EEAB\t0x7AAF\n0x8EA1EEAC\t0x7AAE\n0x8EA1EEAD\t0x7BAD\n0x8EA1EEAE\t0x7BB1\n0x8EA1EEAF\t0x7BC4\n0x8EA1EEB0\t0x7BB4\n0x8EA1EEB1\t0x7BC6\n0x8EA1EEB2\t0x7BC7\n0x8EA1EEB3\t0x7BC1\n0x8EA1EEB4\t0x7BA0\n0x8EA1EEB5\t0x7BCC\n0x8EA1EEB6\t0x7CCA\n0x8EA1EEB7\t0x7DE0\n0x8EA1EEB8\t0x7DF4\n0x8EA1EEB9\t0x7DEF\n0x8EA1EEBA\t0x7DFB\n0x8EA1EEBB\t0x7DD8\n0x8EA1EEBC\t0x7DEC\n0x8EA1EEBD\t0x7DDD\n0x8EA1EEBE\t0x7DE8\n0x8EA1EEBF\t0x7DE3\n0x8EA1EEC0\t0x7DDA\n0x8EA1EEC1\t0x7DDE\n0x8EA1EEC2\t0x7DE9\n0x8EA1EEC3\t0x7D9E\n0x8EA1EEC4\t0x7DD9\n0x8EA1EEC5\t0x7DF2\n0x8EA1EEC6\t0x7DF9\n0x8EA1EEC7\t0x7F75\n0x8EA1EEC8\t0x7F77\n0x8EA1EEC9\t0x7FAF\n0x8EA1EECA\t0x7FE9\n0x8EA1EECB\t0x8026\n0x8EA1EECC\t0x819B\n0x8EA1EECD\t0x819C\n0x8EA1EECE\t0x819D\n0x8EA1EECF\t0x81A0\n0x8EA1EED0\t0x819A\n0x8EA1EED1\t0x8198\n0x8EA1EED2\t0x8517\n0x8EA1EED3\t0x853D\n0x8EA1EED4\t0x851A\n0x8EA1EED5\t0x84EE\n0x8EA1EED6\t0x852C\n0x8EA1EED7\t0x852D\n0x8EA1EED8\t0x8513\n0x8EA1EED9\t0x8511\n0x8EA1EEDA\t0x8523\n0x8EA1EEDB\t0x8521\n0x8EA1EEDC\t0x8514\n0x8EA1EEDD\t0x84EC\n0x8EA1EEDE\t0x8525\n0x8EA1EEDF\t0x84FF\n0x8EA1EEE0\t0x8506\n0x8EA1EEE1\t0x8782\n0x8EA1EEE2\t0x8774\n0x8EA1EEE3\t0x8776\n0x8EA1EEE4\t0x8760\n0x8EA1EEE5\t0x8766\n0x8EA1EEE6\t0x8778\n0x8EA1EEE7\t0x8768\n0x8EA1EEE8\t0x8759\n0x8EA1EEE9\t0x8757\n0x8EA1EEEA\t0x874C\n0x8EA1EEEB\t0x8753\n0x8EA1EEEC\t0x885B\n0x8EA1EEED\t0x885D\n0x8EA1EEEE\t0x8910\n0x8EA1EEEF\t0x8907\n0x8EA1EEF0\t0x8912\n0x8EA1EEF1\t0x8913\n0x8EA1EEF2\t0x8915\n0x8EA1EEF3\t0x890A\n0x8EA1EEF4\t0x8ABC\n0x8EA1EEF5\t0x8AD2\n0x8EA1EEF6\t0x8AC7\n0x8EA1EEF7\t0x8AC4\n0x8EA1EEF8\t0x8A95\n0x8EA1EEF9\t0x8ACB\n0x8EA1EEFA\t0x8AF8\n0x8EA1EEFB\t0x8AB2\n0x8EA1EEFC\t0x8AC9\n0x8EA1EEFD\t0x8AC2\n0x8EA1EEFE\t0x8ABF\n0x8EA1EFA1\t0x8AB0\n0x8EA1EFA2\t0x8AD6\n0x8EA1EFA3\t0x8ACD\n0x8EA1EFA4\t0x8AB6\n0x8EA1EFA5\t0x8AB9\n0x8EA1EFA6\t0x8ADB\n0x8EA1EFA7\t0x8C4C\n0x8EA1EFA8\t0x8C4E\n0x8EA1EFA9\t0x8C6C\n0x8EA1EFAA\t0x8CE0\n0x8EA1EFAB\t0x8CDE\n0x8EA1EFAC\t0x8CE6\n0x8EA1EFAD\t0x8CE4\n0x8EA1EFAE\t0x8CEC\n0x8EA1EFAF\t0x8CED\n0x8EA1EFB0\t0x8CE2\n0x8EA1EFB1\t0x8CE3\n0x8EA1EFB2\t0x8CDC\n0x8EA1EFB3\t0x8CEA\n0x8EA1EFB4\t0x8CE1\n0x8EA1EFB5\t0x8D6D\n0x8EA1EFB6\t0x8D9F\n0x8EA1EFB7\t0x8DA3\n0x8EA1EFB8\t0x8E2B\n0x8EA1EFB9\t0x8E10\n0x8EA1EFBA\t0x8E1D\n0x8EA1EFBB\t0x8E22\n0x8EA1EFBC\t0x8E0F\n0x8EA1EFBD\t0x8E29\n0x8EA1EFBE\t0x8E1F\n0x8EA1EFBF\t0x8E21\n0x8EA1EFC0\t0x8E1E\n0x8EA1EFC1\t0x8EBA\n0x8EA1EFC2\t0x8F1D\n0x8EA1EFC3\t0x8F1B\n0x8EA1EFC4\t0x8F1F\n0x8EA1EFC5\t0x8F29\n0x8EA1EFC6\t0x8F26\n0x8EA1EFC7\t0x8F2A\n0x8EA1EFC8\t0x8F1C\n0x8EA1EFC9\t0x8F1E\n0x8EA1EFCA\t0x8F25\n0x8EA1EFCB\t0x9069\n0x8EA1EFCC\t0x906E\n0x8EA1EFCD\t0x9068\n0x8EA1EFCE\t0x906D\n0x8EA1EFCF\t0x9077\n0x8EA1EFD0\t0x9130\n0x8EA1EFD1\t0x912D\n0x8EA1EFD2\t0x9127\n0x8EA1EFD3\t0x9131\n0x8EA1EFD4\t0x9187\n0x8EA1EFD5\t0x9189\n0x8EA1EFD6\t0x918B\n0x8EA1EFD7\t0x9183\n0x8EA1EFD8\t0x92C5\n0x8EA1EFD9\t0x92BB\n0x8EA1EFDA\t0x92B7\n0x8EA1EFDB\t0x92EA\n0x8EA1EFDC\t0x92E4\n0x8EA1EFDD\t0x92C1\n0x8EA1EFDE\t0x92B3\n0x8EA1EFDF\t0x92BC\n0x8EA1EFE0\t0x92D2\n0x8EA1EFE1\t0x92C7\n0x8EA1EFE2\t0x92F0\n0x8EA1EFE3\t0x92B2\n0x8EA1EFE4\t0x95AD\n0x8EA1EFE5\t0x95B1\n0x8EA1EFE6\t0x9704\n0x8EA1EFE7\t0x9706\n0x8EA1EFE8\t0x9707\n0x8EA1EFE9\t0x9709\n0x8EA1EFEA\t0x9760\n0x8EA1EFEB\t0x978D\n0x8EA1EFEC\t0x978B\n0x8EA1EFED\t0x978F\n0x8EA1EFEE\t0x9821\n0x8EA1EFEF\t0x982B\n0x8EA1EFF0\t0x981C\n0x8EA1EFF1\t0x98B3\n0x8EA1EFF2\t0x990A\n0x8EA1EFF3\t0x9913\n0x8EA1EFF4\t0x9912\n0x8EA1EFF5\t0x9918\n0x8EA1EFF6\t0x99DD\n0x8EA1EFF7\t0x99D0\n0x8EA1EFF8\t0x99DF\n0x8EA1EFF9\t0x99DB\n0x8EA1EFFA\t0x99D1\n0x8EA1EFFB\t0x99D5\n0x8EA1EFFC\t0x99D2\n0x8EA1EFFD\t0x99D9\n0x8EA1EFFE\t0x9AB7\n0x8EA1F0A1\t0x9AEE\n0x8EA1F0A2\t0x9AEF\n0x8EA1F0A3\t0x9B27\n0x8EA1F0A4\t0x9B45\n0x8EA1F0A5\t0x9B44\n0x8EA1F0A6\t0x9B77\n0x8EA1F0A7\t0x9B6F\n0x8EA1F0A8\t0x9D06\n0x8EA1F0A9\t0x9D09\n0x8EA1F0AA\t0x9D03\n0x8EA1F0AB\t0x9EA9\n0x8EA1F0AC\t0x9EBE\n0x8EA1F0AD\t0x9ECE\n0x8EA1F0AE\t0x58A8\n0x8EA1F0AF\t0x9F52\n0x8EA1F0B0\t0x5112\n0x8EA1F0B1\t0x5118\n0x8EA1F0B2\t0x5114\n0x8EA1F0B3\t0x5110\n0x8EA1F0B4\t0x5115\n0x8EA1F0B5\t0x5180\n0x8EA1F0B6\t0x51AA\n0x8EA1F0B7\t0x51DD\n0x8EA1F0B8\t0x5291\n0x8EA1F0B9\t0x5293\n0x8EA1F0BA\t0x52F3\n0x8EA1F0BB\t0x5659\n0x8EA1F0BC\t0x566B\n0x8EA1F0BD\t0x5679\n0x8EA1F0BE\t0x5669\n0x8EA1F0BF\t0x5664\n0x8EA1F0C0\t0x5678\n0x8EA1F0C1\t0x566A\n0x8EA1F0C2\t0x5668\n0x8EA1F0C3\t0x5665\n0x8EA1F0C4\t0x5671\n0x8EA1F0C5\t0x566F\n0x8EA1F0C6\t0x566C\n0x8EA1F0C7\t0x5662\n0x8EA1F0C8\t0x5676\n0x8EA1F0C9\t0x58C1\n0x8EA1F0CA\t0x58BE\n0x8EA1F0CB\t0x58C7\n0x8EA1F0CC\t0x58C5\n0x8EA1F0CD\t0x596E\n0x8EA1F0CE\t0x5B1D\n0x8EA1F0CF\t0x5B34\n0x8EA1F0D0\t0x5B78\n0x8EA1F0D1\t0x5BF0\n0x8EA1F0D2\t0x5C0E\n0x8EA1F0D3\t0x5F4A\n0x8EA1F0D4\t0x61B2\n0x8EA1F0D5\t0x6191\n0x8EA1F0D6\t0x61A9\n0x8EA1F0D7\t0x618A\n0x8EA1F0D8\t0x61CD\n0x8EA1F0D9\t0x61B6\n0x8EA1F0DA\t0x61BE\n0x8EA1F0DB\t0x61CA\n0x8EA1F0DC\t0x61C8\n0x8EA1F0DD\t0x6230\n0x8EA1F0DE\t0x64C5\n0x8EA1F0DF\t0x64C1\n0x8EA1F0E0\t0x64CB\n0x8EA1F0E1\t0x64BB\n0x8EA1F0E2\t0x64BC\n0x8EA1F0E3\t0x64DA\n0x8EA1F0E4\t0x64C4\n0x8EA1F0E5\t0x64C7\n0x8EA1F0E6\t0x64C2\n0x8EA1F0E7\t0x64CD\n0x8EA1F0E8\t0x64BF\n0x8EA1F0E9\t0x64D2\n0x8EA1F0EA\t0x64D4\n0x8EA1F0EB\t0x64BE\n0x8EA1F0EC\t0x6574\n0x8EA1F0ED\t0x66C6\n0x8EA1F0EE\t0x66C9\n0x8EA1F0EF\t0x66B9\n0x8EA1F0F0\t0x66C4\n0x8EA1F0F1\t0x66C7\n0x8EA1F0F2\t0x66B8\n0x8EA1F0F3\t0x6A3D\n0x8EA1F0F4\t0x6A38\n0x8EA1F0F5\t0x6A3A\n0x8EA1F0F6\t0x6A59\n0x8EA1F0F7\t0x6A6B\n0x8EA1F0F8\t0x6A58\n0x8EA1F0F9\t0x6A39\n0x8EA1F0FA\t0x6A44\n0x8EA1F0FB\t0x6A62\n0x8EA1F0FC\t0x6A61\n0x8EA1F0FD\t0x6A4B\n0x8EA1F0FE\t0x6A47\n0x8EA1F1A1\t0x6A35\n0x8EA1F1A2\t0x6A5F\n0x8EA1F1A3\t0x6A48\n0x8EA1F1A4\t0x6B59\n0x8EA1F1A5\t0x6B77\n0x8EA1F1A6\t0x6C05\n0x8EA1F1A7\t0x6FC2\n0x8EA1F1A8\t0x6FB1\n0x8EA1F1A9\t0x6FA1\n0x8EA1F1AA\t0x6FC3\n0x8EA1F1AB\t0x6FA4\n0x8EA1F1AC\t0x6FC1\n0x8EA1F1AD\t0x6FA7\n0x8EA1F1AE\t0x6FB3\n0x8EA1F1AF\t0x6FC0\n0x8EA1F1B0\t0x6FB9\n0x8EA1F1B1\t0x6FB6\n0x8EA1F1B2\t0x6FA6\n0x8EA1F1B3\t0x6FA0\n0x8EA1F1B4\t0x6FB4\n0x8EA1F1B5\t0x71BE\n0x8EA1F1B6\t0x71C9\n0x8EA1F1B7\t0x71D0\n0x8EA1F1B8\t0x71D2\n0x8EA1F1B9\t0x71C8\n0x8EA1F1BA\t0x71D5\n0x8EA1F1BB\t0x71B9\n0x8EA1F1BC\t0x71CE\n0x8EA1F1BD\t0x71D9\n0x8EA1F1BE\t0x71DC\n0x8EA1F1BF\t0x71C3\n0x8EA1F1C0\t0x71C4\n0x8EA1F1C1\t0x7368\n0x8EA1F1C2\t0x749C\n0x8EA1F1C3\t0x74A3\n0x8EA1F1C4\t0x7498\n0x8EA1F1C5\t0x749F\n0x8EA1F1C6\t0x749E\n0x8EA1F1C7\t0x74E2\n0x8EA1F1C8\t0x750C\n0x8EA1F1C9\t0x750D\n0x8EA1F1CA\t0x7634\n0x8EA1F1CB\t0x7638\n0x8EA1F1CC\t0x763A\n0x8EA1F1CD\t0x76E7\n0x8EA1F1CE\t0x76E5\n0x8EA1F1CF\t0x77A0\n0x8EA1F1D0\t0x779E\n0x8EA1F1D1\t0x779F\n0x8EA1F1D2\t0x77A5\n0x8EA1F1D3\t0x78E8\n0x8EA1F1D4\t0x78DA\n0x8EA1F1D5\t0x78EC\n0x8EA1F1D6\t0x78E7\n0x8EA1F1D7\t0x79A6\n0x8EA1F1D8\t0x7A4D\n0x8EA1F1D9\t0x7A4E\n0x8EA1F1DA\t0x7A46\n0x8EA1F1DB\t0x7A4C\n0x8EA1F1DC\t0x7A4B\n0x8EA1F1DD\t0x7ABA\n0x8EA1F1DE\t0x7BD9\n0x8EA1F1DF\t0x7C11\n0x8EA1F1E0\t0x7BC9\n0x8EA1F1E1\t0x7BE4\n0x8EA1F1E2\t0x7BDB\n0x8EA1F1E3\t0x7BE1\n0x8EA1F1E4\t0x7BE9\n0x8EA1F1E5\t0x7BE6\n0x8EA1F1E6\t0x7CD5\n0x8EA1F1E7\t0x7CD6\n0x8EA1F1E8\t0x7E0A\n0x8EA1F1E9\t0x7E11\n0x8EA1F1EA\t0x7E08\n0x8EA1F1EB\t0x7E1B\n0x8EA1F1EC\t0x7E23\n0x8EA1F1ED\t0x7E1E\n0x8EA1F1EE\t0x7E1D\n0x8EA1F1EF\t0x7E09\n0x8EA1F1F0\t0x7E10\n0x8EA1F1F1\t0x7F79\n0x8EA1F1F2\t0x7FB2\n0x8EA1F1F3\t0x7FF0\n0x8EA1F1F4\t0x7FF1\n0x8EA1F1F5\t0x7FEE\n0x8EA1F1F6\t0x8028\n0x8EA1F1F7\t0x81B3\n0x8EA1F1F8\t0x81A9\n0x8EA1F1F9\t0x81A8\n0x8EA1F1FA\t0x81FB\n0x8EA1F1FB\t0x8208\n0x8EA1F1FC\t0x8258\n0x8EA1F1FD\t0x8259\n0x8EA1F1FE\t0x854A\n0x8EA1F2A1\t0x8559\n0x8EA1F2A2\t0x8548\n0x8EA1F2A3\t0x8568\n0x8EA1F2A4\t0x8569\n0x8EA1F2A5\t0x8543\n0x8EA1F2A6\t0x8549\n0x8EA1F2A7\t0x856D\n0x8EA1F2A8\t0x856A\n0x8EA1F2A9\t0x855E\n0x8EA1F2AA\t0x8783\n0x8EA1F2AB\t0x879F\n0x8EA1F2AC\t0x879E\n0x8EA1F2AD\t0x87A2\n0x8EA1F2AE\t0x878D\n0x8EA1F2AF\t0x8861\n0x8EA1F2B0\t0x892A\n0x8EA1F2B1\t0x8932\n0x8EA1F2B2\t0x8925\n0x8EA1F2B3\t0x892B\n0x8EA1F2B4\t0x8921\n0x8EA1F2B5\t0x89AA\n0x8EA1F2B6\t0x89A6\n0x8EA1F2B7\t0x8AE6\n0x8EA1F2B8\t0x8AFA\n0x8EA1F2B9\t0x8AEB\n0x8EA1F2BA\t0x8AF1\n0x8EA1F2BB\t0x8B00\n0x8EA1F2BC\t0x8ADC\n0x8EA1F2BD\t0x8AE7\n0x8EA1F2BE\t0x8AEE\n0x8EA1F2BF\t0x8AFE\n0x8EA1F2C0\t0x8B01\n0x8EA1F2C1\t0x8B02\n0x8EA1F2C2\t0x8AF7\n0x8EA1F2C3\t0x8AED\n0x8EA1F2C4\t0x8AF3\n0x8EA1F2C5\t0x8AF6\n0x8EA1F2C6\t0x8AFC\n0x8EA1F2C7\t0x8C6B\n0x8EA1F2C8\t0x8C6D\n0x8EA1F2C9\t0x8C93\n0x8EA1F2CA\t0x8CF4\n0x8EA1F2CB\t0x8E44\n0x8EA1F2CC\t0x8E31\n0x8EA1F2CD\t0x8E34\n0x8EA1F2CE\t0x8E42\n0x8EA1F2CF\t0x8E39\n0x8EA1F2D0\t0x8E35\n0x8EA1F2D1\t0x8F3B\n0x8EA1F2D2\t0x8F2F\n0x8EA1F2D3\t0x8F38\n0x8EA1F2D4\t0x8F33\n0x8EA1F2D5\t0x8FA8\n0x8EA1F2D6\t0x8FA6\n0x8EA1F2D7\t0x9075\n0x8EA1F2D8\t0x9074\n0x8EA1F2D9\t0x9078\n0x8EA1F2DA\t0x9072\n0x8EA1F2DB\t0x907C\n0x8EA1F2DC\t0x907A\n0x8EA1F2DD\t0x9134\n0x8EA1F2DE\t0x9192\n0x8EA1F2DF\t0x9320\n0x8EA1F2E0\t0x9336\n0x8EA1F2E1\t0x92F8\n0x8EA1F2E2\t0x9333\n0x8EA1F2E3\t0x932F\n0x8EA1F2E4\t0x9322\n0x8EA1F2E5\t0x92FC\n0x8EA1F2E6\t0x932B\n0x8EA1F2E7\t0x9304\n0x8EA1F2E8\t0x931A\n0x8EA1F2E9\t0x9310\n0x8EA1F2EA\t0x9326\n0x8EA1F2EB\t0x9321\n0x8EA1F2EC\t0x9315\n0x8EA1F2ED\t0x932E\n0x8EA1F2EE\t0x9319\n0x8EA1F2EF\t0x95BB\n0x8EA1F2F0\t0x96A7\n0x8EA1F2F1\t0x96A8\n0x8EA1F2F2\t0x96AA\n0x8EA1F2F3\t0x96D5\n0x8EA1F2F4\t0x970E\n0x8EA1F2F5\t0x9711\n0x8EA1F2F6\t0x9716\n0x8EA1F2F7\t0x970D\n0x8EA1F2F8\t0x9713\n0x8EA1F2F9\t0x970F\n0x8EA1F2FA\t0x975B\n0x8EA1F2FB\t0x975C\n0x8EA1F2FC\t0x9766\n0x8EA1F2FD\t0x9798\n0x8EA1F2FE\t0x9830\n0x8EA1F3A1\t0x9838\n0x8EA1F3A2\t0x983B\n0x8EA1F3A3\t0x9837\n0x8EA1F3A4\t0x982D\n0x8EA1F3A5\t0x9839\n0x8EA1F3A6\t0x9824\n0x8EA1F3A7\t0x9910\n0x8EA1F3A8\t0x9928\n0x8EA1F3A9\t0x991E\n0x8EA1F3AA\t0x991B\n0x8EA1F3AB\t0x9921\n0x8EA1F3AC\t0x991A\n0x8EA1F3AD\t0x99ED\n0x8EA1F3AE\t0x99E2\n0x8EA1F3AF\t0x99F1\n0x8EA1F3B0\t0x9AB8\n0x8EA1F3B1\t0x9ABC\n0x8EA1F3B2\t0x9AFB\n0x8EA1F3B3\t0x9AED\n0x8EA1F3B4\t0x9B28\n0x8EA1F3B5\t0x9B91\n0x8EA1F3B6\t0x9D15\n0x8EA1F3B7\t0x9D23\n0x8EA1F3B8\t0x9D26\n0x8EA1F3B9\t0x9D28\n0x8EA1F3BA\t0x9D12\n0x8EA1F3BB\t0x9D1B\n0x8EA1F3BC\t0x9ED8\n0x8EA1F3BD\t0x9ED4\n0x8EA1F3BE\t0x9F8D\n0x8EA1F3BF\t0x9F9C\n0x8EA1F3C0\t0x512A\n0x8EA1F3C1\t0x511F\n0x8EA1F3C2\t0x5121\n0x8EA1F3C3\t0x5132\n0x8EA1F3C4\t0x52F5\n0x8EA1F3C5\t0x568E\n0x8EA1F3C6\t0x5680\n0x8EA1F3C7\t0x5690\n0x8EA1F3C8\t0x5685\n0x8EA1F3C9\t0x5687\n0x8EA1F3CA\t0x568F\n0x8EA1F3CB\t0x58D5\n0x8EA1F3CC\t0x58D3\n0x8EA1F3CD\t0x58D1\n0x8EA1F3CE\t0x58CE\n0x8EA1F3CF\t0x5B30\n0x8EA1F3D0\t0x5B2A\n0x8EA1F3D1\t0x5B24\n0x8EA1F3D2\t0x5B7A\n0x8EA1F3D3\t0x5C37\n0x8EA1F3D4\t0x5C68\n0x8EA1F3D5\t0x5DBC\n0x8EA1F3D6\t0x5DBA\n0x8EA1F3D7\t0x5DBD\n0x8EA1F3D8\t0x5DB8\n0x8EA1F3D9\t0x5E6B\n0x8EA1F3DA\t0x5F4C\n0x8EA1F3DB\t0x5FBD\n0x8EA1F3DC\t0x61C9\n0x8EA1F3DD\t0x61C2\n0x8EA1F3DE\t0x61C7\n0x8EA1F3DF\t0x61E6\n0x8EA1F3E0\t0x61CB\n0x8EA1F3E1\t0x6232\n0x8EA1F3E2\t0x6234\n0x8EA1F3E3\t0x64CE\n0x8EA1F3E4\t0x64CA\n0x8EA1F3E5\t0x64D8\n0x8EA1F3E6\t0x64E0\n0x8EA1F3E7\t0x64F0\n0x8EA1F3E8\t0x64E6\n0x8EA1F3E9\t0x64EC\n0x8EA1F3EA\t0x64F1\n0x8EA1F3EB\t0x64E2\n0x8EA1F3EC\t0x64ED\n0x8EA1F3ED\t0x6582\n0x8EA1F3EE\t0x6583\n0x8EA1F3EF\t0x66D9\n0x8EA1F3F0\t0x66D6\n0x8EA1F3F1\t0x6A80\n0x8EA1F3F2\t0x6A94\n0x8EA1F3F3\t0x6A84\n0x8EA1F3F4\t0x6AA2\n0x8EA1F3F5\t0x6A9C\n0x8EA1F3F6\t0x6ADB\n0x8EA1F3F7\t0x6AA3\n0x8EA1F3F8\t0x6A7E\n0x8EA1F3F9\t0x6A97\n0x8EA1F3FA\t0x6A90\n0x8EA1F3FB\t0x6AA0\n0x8EA1F3FC\t0x6B5C\n0x8EA1F3FD\t0x6BAE\n0x8EA1F3FE\t0x6BDA\n0x8EA1F4A1\t0x6C08\n0x8EA1F4A2\t0x6FD8\n0x8EA1F4A3\t0x6FF1\n0x8EA1F4A4\t0x6FDF\n0x8EA1F4A5\t0x6FE0\n0x8EA1F4A6\t0x6FDB\n0x8EA1F4A7\t0x6FE4\n0x8EA1F4A8\t0x6FEB\n0x8EA1F4A9\t0x6FEF\n0x8EA1F4AA\t0x6F80\n0x8EA1F4AB\t0x6FEC\n0x8EA1F4AC\t0x6FE1\n0x8EA1F4AD\t0x6FE9\n0x8EA1F4AE\t0x6FD5\n0x8EA1F4AF\t0x6FEE\n0x8EA1F4B0\t0x6FF0\n0x8EA1F4B1\t0x71E7\n0x8EA1F4B2\t0x71DF\n0x8EA1F4B3\t0x71EE\n0x8EA1F4B4\t0x71E6\n0x8EA1F4B5\t0x71E5\n0x8EA1F4B6\t0x71ED\n0x8EA1F4B7\t0x71EC\n0x8EA1F4B8\t0x71F4\n0x8EA1F4B9\t0x71E0\n0x8EA1F4BA\t0x7235\n0x8EA1F4BB\t0x7246\n0x8EA1F4BC\t0x7370\n0x8EA1F4BD\t0x7372\n0x8EA1F4BE\t0x74A9\n0x8EA1F4BF\t0x74B0\n0x8EA1F4C0\t0x74A6\n0x8EA1F4C1\t0x74A8\n0x8EA1F4C2\t0x7646\n0x8EA1F4C3\t0x7642\n0x8EA1F4C4\t0x764C\n0x8EA1F4C5\t0x76EA\n0x8EA1F4C6\t0x77B3\n0x8EA1F4C7\t0x77AA\n0x8EA1F4C8\t0x77B0\n0x8EA1F4C9\t0x77AC\n0x8EA1F4CA\t0x77A7\n0x8EA1F4CB\t0x77AD\n0x8EA1F4CC\t0x77EF\n0x8EA1F4CD\t0x78F7\n0x8EA1F4CE\t0x78FA\n0x8EA1F4CF\t0x78F4\n0x8EA1F4D0\t0x78EF\n0x8EA1F4D1\t0x7901\n0x8EA1F4D2\t0x79A7\n0x8EA1F4D3\t0x79AA\n0x8EA1F4D4\t0x7A57\n0x8EA1F4D5\t0x7ABF\n0x8EA1F4D6\t0x7C07\n0x8EA1F4D7\t0x7C0D\n0x8EA1F4D8\t0x7BFE\n0x8EA1F4D9\t0x7BF7\n0x8EA1F4DA\t0x7C0C\n0x8EA1F4DB\t0x7BE0\n0x8EA1F4DC\t0x7CE0\n0x8EA1F4DD\t0x7CDC\n0x8EA1F4DE\t0x7CDE\n0x8EA1F4DF\t0x7CE2\n0x8EA1F4E0\t0x7CDF\n0x8EA1F4E1\t0x7CD9\n0x8EA1F4E2\t0x7CDD\n0x8EA1F4E3\t0x7E2E\n0x8EA1F4E4\t0x7E3E\n0x8EA1F4E5\t0x7E46\n0x8EA1F4E6\t0x7E37\n0x8EA1F4E7\t0x7E32\n0x8EA1F4E8\t0x7E43\n0x8EA1F4E9\t0x7E2B\n0x8EA1F4EA\t0x7E3D\n0x8EA1F4EB\t0x7E31\n0x8EA1F4EC\t0x7E45\n0x8EA1F4ED\t0x7E41\n0x8EA1F4EE\t0x7E34\n0x8EA1F4EF\t0x7E39\n0x8EA1F4F0\t0x7E48\n0x8EA1F4F1\t0x7E35\n0x8EA1F4F2\t0x7E3F\n0x8EA1F4F3\t0x7E2F\n0x8EA1F4F4\t0x7F44\n0x8EA1F4F5\t0x7FF3\n0x8EA1F4F6\t0x7FFC\n0x8EA1F4F7\t0x8071\n0x8EA1F4F8\t0x8072\n0x8EA1F4F9\t0x8070\n0x8EA1F4FA\t0x806F\n0x8EA1F4FB\t0x8073\n0x8EA1F4FC\t0x81C6\n0x8EA1F4FD\t0x81C3\n0x8EA1F4FE\t0x81BA\n0x8EA1F5A1\t0x81C2\n0x8EA1F5A2\t0x81C0\n0x8EA1F5A3\t0x81BF\n0x8EA1F5A4\t0x81BD\n0x8EA1F5A5\t0x81C9\n0x8EA1F5A6\t0x81BE\n0x8EA1F5A7\t0x81E8\n0x8EA1F5A8\t0x8209\n0x8EA1F5A9\t0x8271\n0x8EA1F5AA\t0x85AA\n0x8EA1F5AB\t0x8584\n0x8EA1F5AC\t0x857E\n0x8EA1F5AD\t0x859C\n0x8EA1F5AE\t0x8591\n0x8EA1F5AF\t0x8594\n0x8EA1F5B0\t0x85AF\n0x8EA1F5B1\t0x859B\n0x8EA1F5B2\t0x8587\n0x8EA1F5B3\t0x85A8\n0x8EA1F5B4\t0x858A\n0x8EA1F5B5\t0x85A6\n0x8EA1F5B6\t0x8667\n0x8EA1F5B7\t0x87C0\n0x8EA1F5B8\t0x87D1\n0x8EA1F5B9\t0x87B3\n0x8EA1F5BA\t0x87D2\n0x8EA1F5BB\t0x87C6\n0x8EA1F5BC\t0x87AB\n0x8EA1F5BD\t0x87BB\n0x8EA1F5BE\t0x87BA\n0x8EA1F5BF\t0x87C8\n0x8EA1F5C0\t0x87CB\n0x8EA1F5C1\t0x893B\n0x8EA1F5C2\t0x8936\n0x8EA1F5C3\t0x8944\n0x8EA1F5C4\t0x8938\n0x8EA1F5C5\t0x893D\n0x8EA1F5C6\t0x89AC\n0x8EA1F5C7\t0x8B0E\n0x8EA1F5C8\t0x8B17\n0x8EA1F5C9\t0x8B19\n0x8EA1F5CA\t0x8B1B\n0x8EA1F5CB\t0x8B0A\n0x8EA1F5CC\t0x8B20\n0x8EA1F5CD\t0x8B1D\n0x8EA1F5CE\t0x8B04\n0x8EA1F5CF\t0x8B10\n0x8EA1F5D0\t0x8C41\n0x8EA1F5D1\t0x8C3F\n0x8EA1F5D2\t0x8C73\n0x8EA1F5D3\t0x8CFA\n0x8EA1F5D4\t0x8CFD\n0x8EA1F5D5\t0x8CFC\n0x8EA1F5D6\t0x8CF8\n0x8EA1F5D7\t0x8CFB\n0x8EA1F5D8\t0x8DA8\n0x8EA1F5D9\t0x8E49\n0x8EA1F5DA\t0x8E4B\n0x8EA1F5DB\t0x8E48\n0x8EA1F5DC\t0x8E4A\n0x8EA1F5DD\t0x8F44\n0x8EA1F5DE\t0x8F3E\n0x8EA1F5DF\t0x8F42\n0x8EA1F5E0\t0x8F45\n0x8EA1F5E1\t0x8F3F\n0x8EA1F5E2\t0x907F\n0x8EA1F5E3\t0x907D\n0x8EA1F5E4\t0x9084\n0x8EA1F5E5\t0x9081\n0x8EA1F5E6\t0x9082\n0x8EA1F5E7\t0x9080\n0x8EA1F5E8\t0x9139\n0x8EA1F5E9\t0x91A3\n0x8EA1F5EA\t0x919E\n0x8EA1F5EB\t0x919C\n0x8EA1F5EC\t0x934D\n0x8EA1F5ED\t0x9382\n0x8EA1F5EE\t0x9328\n0x8EA1F5EF\t0x9375\n0x8EA1F5F0\t0x934A\n0x8EA1F5F1\t0x9365\n0x8EA1F5F2\t0x934B\n0x8EA1F5F3\t0x9318\n0x8EA1F5F4\t0x937E\n0x8EA1F5F5\t0x936C\n0x8EA1F5F6\t0x935B\n0x8EA1F5F7\t0x9370\n0x8EA1F5F8\t0x935A\n0x8EA1F5F9\t0x9354\n0x8EA1F5FA\t0x95CA\n0x8EA1F5FB\t0x95CB\n0x8EA1F5FC\t0x95CC\n0x8EA1F5FD\t0x95C8\n0x8EA1F5FE\t0x95C6\n0x8EA1F6A1\t0x96B1\n0x8EA1F6A2\t0x96B8\n0x8EA1F6A3\t0x96D6\n0x8EA1F6A4\t0x971C\n0x8EA1F6A5\t0x971E\n0x8EA1F6A6\t0x97A0\n0x8EA1F6A7\t0x97D3\n0x8EA1F6A8\t0x9846\n0x8EA1F6A9\t0x98B6\n0x8EA1F6AA\t0x9935\n0x8EA1F6AB\t0x9A01\n0x8EA1F6AC\t0x99FF\n0x8EA1F6AD\t0x9BAE\n0x8EA1F6AE\t0x9BAB\n0x8EA1F6AF\t0x9BAA\n0x8EA1F6B0\t0x9BAD\n0x8EA1F6B1\t0x9D3B\n0x8EA1F6B2\t0x9D3F\n0x8EA1F6B3\t0x9E8B\n0x8EA1F6B4\t0x9ECF\n0x8EA1F6B5\t0x9EDE\n0x8EA1F6B6\t0x9EDC\n0x8EA1F6B7\t0x9EDD\n0x8EA1F6B8\t0x9EDB\n0x8EA1F6B9\t0x9F3E\n0x8EA1F6BA\t0x9F4B\n0x8EA1F6BB\t0x53E2\n0x8EA1F6BC\t0x5695\n0x8EA1F6BD\t0x56AE\n0x8EA1F6BE\t0x58D9\n0x8EA1F6BF\t0x58D8\n0x8EA1F6C0\t0x5B38\n0x8EA1F6C1\t0x5F5E\n0x8EA1F6C2\t0x61E3\n0x8EA1F6C3\t0x6233\n0x8EA1F6C4\t0x64F4\n0x8EA1F6C5\t0x64F2\n0x8EA1F6C6\t0x64FE\n0x8EA1F6C7\t0x6506\n0x8EA1F6C8\t0x64FA\n0x8EA1F6C9\t0x64FB\n0x8EA1F6CA\t0x64F7\n0x8EA1F6CB\t0x65B7\n0x8EA1F6CC\t0x66DC\n0x8EA1F6CD\t0x6726\n0x8EA1F6CE\t0x6AB3\n0x8EA1F6CF\t0x6AAC\n0x8EA1F6D0\t0x6AC3\n0x8EA1F6D1\t0x6ABB\n0x8EA1F6D2\t0x6AB8\n0x8EA1F6D3\t0x6AC2\n0x8EA1F6D4\t0x6AAE\n0x8EA1F6D5\t0x6AAF\n0x8EA1F6D6\t0x6B5F\n0x8EA1F6D7\t0x6B78\n0x8EA1F6D8\t0x6BAF\n0x8EA1F6D9\t0x7009\n0x8EA1F6DA\t0x700B\n0x8EA1F6DB\t0x6FFE\n0x8EA1F6DC\t0x7006\n0x8EA1F6DD\t0x6FFA\n0x8EA1F6DE\t0x7011\n0x8EA1F6DF\t0x700F\n0x8EA1F6E0\t0x71FB\n0x8EA1F6E1\t0x71FC\n0x8EA1F6E2\t0x71FE\n0x8EA1F6E3\t0x71F8\n0x8EA1F6E4\t0x7377\n0x8EA1F6E5\t0x7375\n0x8EA1F6E6\t0x74A7\n0x8EA1F6E7\t0x74BF\n0x8EA1F6E8\t0x7515\n0x8EA1F6E9\t0x7656\n0x8EA1F6EA\t0x7658\n0x8EA1F6EB\t0x7652\n0x8EA1F6EC\t0x77BD\n0x8EA1F6ED\t0x77BF\n0x8EA1F6EE\t0x77BB\n0x8EA1F6EF\t0x77BC\n0x8EA1F6F0\t0x790E\n0x8EA1F6F1\t0x79AE\n0x8EA1F6F2\t0x7A61\n0x8EA1F6F3\t0x7A62\n0x8EA1F6F4\t0x7A60\n0x8EA1F6F5\t0x7AC4\n0x8EA1F6F6\t0x7AC5\n0x8EA1F6F7\t0x7C2B\n0x8EA1F6F8\t0x7C27\n0x8EA1F6F9\t0x7C2A\n0x8EA1F6FA\t0x7C1E\n0x8EA1F6FB\t0x7C23\n0x8EA1F6FC\t0x7C21\n0x8EA1F6FD\t0x7CE7\n0x8EA1F6FE\t0x7E54\n0x8EA1F7A1\t0x7E55\n0x8EA1F7A2\t0x7E5E\n0x8EA1F7A3\t0x7E5A\n0x8EA1F7A4\t0x7E61\n0x8EA1F7A5\t0x7E52\n0x8EA1F7A6\t0x7E59\n0x8EA1F7A7\t0x7F48\n0x8EA1F7A8\t0x7FF9\n0x8EA1F7A9\t0x7FFB\n0x8EA1F7AA\t0x8077\n0x8EA1F7AB\t0x8076\n0x8EA1F7AC\t0x81CD\n0x8EA1F7AD\t0x81CF\n0x8EA1F7AE\t0x820A\n0x8EA1F7AF\t0x85CF\n0x8EA1F7B0\t0x85A9\n0x8EA1F7B1\t0x85CD\n0x8EA1F7B2\t0x85D0\n0x8EA1F7B3\t0x85C9\n0x8EA1F7B4\t0x85B0\n0x8EA1F7B5\t0x85BA\n0x8EA1F7B6\t0x85B9\n0x8EA1F7B7\t0x87EF\n0x8EA1F7B8\t0x87EC\n0x8EA1F7B9\t0x87F2\n0x8EA1F7BA\t0x87E0\n0x8EA1F7BB\t0x8986\n0x8EA1F7BC\t0x89B2\n0x8EA1F7BD\t0x89F4\n0x8EA1F7BE\t0x8B28\n0x8EA1F7BF\t0x8B39\n0x8EA1F7C0\t0x8B2C\n0x8EA1F7C1\t0x8B2B\n0x8EA1F7C2\t0x8C50\n0x8EA1F7C3\t0x8D05\n0x8EA1F7C4\t0x8E59\n0x8EA1F7C5\t0x8E63\n0x8EA1F7C6\t0x8E66\n0x8EA1F7C7\t0x8E64\n0x8EA1F7C8\t0x8E5F\n0x8EA1F7C9\t0x8E55\n0x8EA1F7CA\t0x8EC0\n0x8EA1F7CB\t0x8F49\n0x8EA1F7CC\t0x8F4D\n0x8EA1F7CD\t0x9087\n0x8EA1F7CE\t0x9083\n0x8EA1F7CF\t0x9088\n0x8EA1F7D0\t0x91AB\n0x8EA1F7D1\t0x91AC\n0x8EA1F7D2\t0x91D0\n0x8EA1F7D3\t0x9394\n0x8EA1F7D4\t0x938A\n0x8EA1F7D5\t0x9396\n0x8EA1F7D6\t0x93A2\n0x8EA1F7D7\t0x93B3\n0x8EA1F7D8\t0x93AE\n0x8EA1F7D9\t0x93AC\n0x8EA1F7DA\t0x93B0\n0x8EA1F7DB\t0x9398\n0x8EA1F7DC\t0x939A\n0x8EA1F7DD\t0x9397\n0x8EA1F7DE\t0x95D4\n0x8EA1F7DF\t0x95D6\n0x8EA1F7E0\t0x95D0\n0x8EA1F7E1\t0x95D5\n0x8EA1F7E2\t0x96E2\n0x8EA1F7E3\t0x96DC\n0x8EA1F7E4\t0x96D9\n0x8EA1F7E5\t0x96DB\n0x8EA1F7E6\t0x96DE\n0x8EA1F7E7\t0x9724\n0x8EA1F7E8\t0x97A3\n0x8EA1F7E9\t0x97A6\n0x8EA1F7EA\t0x97AD\n0x8EA1F7EB\t0x97F9\n0x8EA1F7EC\t0x984D\n0x8EA1F7ED\t0x984F\n0x8EA1F7EE\t0x984C\n0x8EA1F7EF\t0x984E\n0x8EA1F7F0\t0x9853\n0x8EA1F7F1\t0x98BA\n0x8EA1F7F2\t0x993E\n0x8EA1F7F3\t0x993F\n0x8EA1F7F4\t0x993D\n0x8EA1F7F5\t0x992E\n0x8EA1F7F6\t0x99A5\n0x8EA1F7F7\t0x9A0E\n0x8EA1F7F8\t0x9AC1\n0x8EA1F7F9\t0x9B03\n0x8EA1F7FA\t0x9B06\n0x8EA1F7FB\t0x9B4F\n0x8EA1F7FC\t0x9B4E\n0x8EA1F7FD\t0x9B4D\n0x8EA1F7FE\t0x9BCA\n0x8EA1F8A1\t0x9BC9\n0x8EA1F8A2\t0x9BFD\n0x8EA1F8A3\t0x9BC8\n0x8EA1F8A4\t0x9BC0\n0x8EA1F8A5\t0x9D51\n0x8EA1F8A6\t0x9D5D\n0x8EA1F8A7\t0x9D60\n0x8EA1F8A8\t0x9EE0\n0x8EA1F8A9\t0x9F15\n0x8EA1F8AA\t0x9F2C\n0x8EA1F8AB\t0x5133\n0x8EA1F8AC\t0x56A5\n0x8EA1F8AD\t0x56A8\n0x8EA1F8AE\t0x58DE\n0x8EA1F8AF\t0x58DF\n0x8EA1F8B0\t0x58E2\n0x8EA1F8B1\t0x5BF5\n0x8EA1F8B2\t0x9F90\n0x8EA1F8B3\t0x5EEC\n0x8EA1F8B4\t0x61F2\n0x8EA1F8B5\t0x61F7\n0x8EA1F8B6\t0x61F6\n0x8EA1F8B7\t0x61F5\n0x8EA1F8B8\t0x6500\n0x8EA1F8B9\t0x650F\n0x8EA1F8BA\t0x66E0\n0x8EA1F8BB\t0x66DD\n0x8EA1F8BC\t0x6AE5\n0x8EA1F8BD\t0x6ADD\n0x8EA1F8BE\t0x6ADA\n0x8EA1F8BF\t0x6AD3\n0x8EA1F8C0\t0x701B\n0x8EA1F8C1\t0x701F\n0x8EA1F8C2\t0x7028\n0x8EA1F8C3\t0x701A\n0x8EA1F8C4\t0x701D\n0x8EA1F8C5\t0x7015\n0x8EA1F8C6\t0x7018\n0x8EA1F8C7\t0x7206\n0x8EA1F8C8\t0x720D\n0x8EA1F8C9\t0x7258\n0x8EA1F8CA\t0x72A2\n0x8EA1F8CB\t0x7378\n0x8EA1F8CC\t0x737A\n0x8EA1F8CD\t0x74BD\n0x8EA1F8CE\t0x74CA\n0x8EA1F8CF\t0x74E3\n0x8EA1F8D0\t0x7587\n0x8EA1F8D1\t0x7586\n0x8EA1F8D2\t0x765F\n0x8EA1F8D3\t0x7661\n0x8EA1F8D4\t0x77C7\n0x8EA1F8D5\t0x7919\n0x8EA1F8D6\t0x79B1\n0x8EA1F8D7\t0x7A6B\n0x8EA1F8D8\t0x7A69\n0x8EA1F8D9\t0x7C3E\n0x8EA1F8DA\t0x7C3F\n0x8EA1F8DB\t0x7C38\n0x8EA1F8DC\t0x7C3D\n0x8EA1F8DD\t0x7C37\n0x8EA1F8DE\t0x7C40\n0x8EA1F8DF\t0x7E6B\n0x8EA1F8E0\t0x7E6D\n0x8EA1F8E1\t0x7E79\n0x8EA1F8E2\t0x7E69\n0x8EA1F8E3\t0x7E6A\n0x8EA1F8E4\t0x7E73\n0x8EA1F8E5\t0x7F85\n0x8EA1F8E6\t0x7FB6\n0x8EA1F8E7\t0x7FB9\n0x8EA1F8E8\t0x7FB8\n0x8EA1F8E9\t0x81D8\n0x8EA1F8EA\t0x85E9\n0x8EA1F8EB\t0x85DD\n0x8EA1F8EC\t0x85EA\n0x8EA1F8ED\t0x85D5\n0x8EA1F8EE\t0x85E4\n0x8EA1F8EF\t0x85E5\n0x8EA1F8F0\t0x85F7\n0x8EA1F8F1\t0x87FB\n0x8EA1F8F2\t0x8805\n0x8EA1F8F3\t0x880D\n0x8EA1F8F4\t0x87F9\n0x8EA1F8F5\t0x87FE\n0x8EA1F8F6\t0x8960\n0x8EA1F8F7\t0x895F\n0x8EA1F8F8\t0x8956\n0x8EA1F8F9\t0x895E\n0x8EA1F8FA\t0x8B41\n0x8EA1F8FB\t0x8B5C\n0x8EA1F8FC\t0x8B58\n0x8EA1F8FD\t0x8B49\n0x8EA1F8FE\t0x8B5A\n0x8EA1F9A1\t0x8B4E\n0x8EA1F9A2\t0x8B4F\n0x8EA1F9A3\t0x8B46\n0x8EA1F9A4\t0x8B59\n0x8EA1F9A5\t0x8D08\n0x8EA1F9A6\t0x8D0A\n0x8EA1F9A7\t0x8E7C\n0x8EA1F9A8\t0x8E72\n0x8EA1F9A9\t0x8E87\n0x8EA1F9AA\t0x8E76\n0x8EA1F9AB\t0x8E6C\n0x8EA1F9AC\t0x8E7A\n0x8EA1F9AD\t0x8E74\n0x8EA1F9AE\t0x8F54\n0x8EA1F9AF\t0x8F4E\n0x8EA1F9B0\t0x8FAD\n0x8EA1F9B1\t0x908A\n0x8EA1F9B2\t0x908B\n0x8EA1F9B3\t0x91B1\n0x8EA1F9B4\t0x91AE\n0x8EA1F9B5\t0x93E1\n0x8EA1F9B6\t0x93D1\n0x8EA1F9B7\t0x93DF\n0x8EA1F9B8\t0x93C3\n0x8EA1F9B9\t0x93C8\n0x8EA1F9BA\t0x93DC\n0x8EA1F9BB\t0x93DD\n0x8EA1F9BC\t0x93D6\n0x8EA1F9BD\t0x93E2\n0x8EA1F9BE\t0x93CD\n0x8EA1F9BF\t0x93D8\n0x8EA1F9C0\t0x93E4\n0x8EA1F9C1\t0x93D7\n0x8EA1F9C2\t0x93E8\n0x8EA1F9C3\t0x95DC\n0x8EA1F9C4\t0x96B4\n0x8EA1F9C5\t0x96E3\n0x8EA1F9C6\t0x972A\n0x8EA1F9C7\t0x9727\n0x8EA1F9C8\t0x9761\n0x8EA1F9C9\t0x97DC\n0x8EA1F9CA\t0x97FB\n0x8EA1F9CB\t0x985E\n0x8EA1F9CC\t0x9858\n0x8EA1F9CD\t0x985B\n0x8EA1F9CE\t0x98BC\n0x8EA1F9CF\t0x9945\n0x8EA1F9D0\t0x9949\n0x8EA1F9D1\t0x9A16\n0x8EA1F9D2\t0x9A19\n0x8EA1F9D3\t0x9B0D\n0x8EA1F9D4\t0x9BE8\n0x8EA1F9D5\t0x9BE7\n0x8EA1F9D6\t0x9BD6\n0x8EA1F9D7\t0x9BDB\n0x8EA1F9D8\t0x9D89\n0x8EA1F9D9\t0x9D61\n0x8EA1F9DA\t0x9D72\n0x8EA1F9DB\t0x9D6A\n0x8EA1F9DC\t0x9D6C\n0x8EA1F9DD\t0x9E92\n0x8EA1F9DE\t0x9E97\n0x8EA1F9DF\t0x9E93\n0x8EA1F9E0\t0x9EB4\n0x8EA1F9E1\t0x52F8\n0x8EA1F9E2\t0x56B7\n0x8EA1F9E3\t0x56B6\n0x8EA1F9E4\t0x56B4\n0x8EA1F9E5\t0x56BC\n0x8EA1F9E6\t0x58E4\n0x8EA1F9E7\t0x5B40\n0x8EA1F9E8\t0x5B43\n0x8EA1F9E9\t0x5B7D\n0x8EA1F9EA\t0x5BF6\n0x8EA1F9EB\t0x5DC9\n0x8EA1F9EC\t0x61F8\n0x8EA1F9ED\t0x61FA\n0x8EA1F9EE\t0x6518\n0x8EA1F9EF\t0x6514\n0x8EA1F9F0\t0x6519\n0x8EA1F9F1\t0x66E6\n0x8EA1F9F2\t0x6727\n0x8EA1F9F3\t0x6AEC\n0x8EA1F9F4\t0x703E\n0x8EA1F9F5\t0x7030\n0x8EA1F9F6\t0x7032\n0x8EA1F9F7\t0x7210\n0x8EA1F9F8\t0x737B\n0x8EA1F9F9\t0x74CF\n0x8EA1F9FA\t0x7662\n0x8EA1F9FB\t0x7665\n0x8EA1F9FC\t0x7926\n0x8EA1F9FD\t0x792A\n0x8EA1F9FE\t0x792C\n0x8EA1FAA1\t0x792B\n0x8EA1FAA2\t0x7AC7\n0x8EA1FAA3\t0x7AF6\n0x8EA1FAA4\t0x7C4C\n0x8EA1FAA5\t0x7C43\n0x8EA1FAA6\t0x7C4D\n0x8EA1FAA7\t0x7CEF\n0x8EA1FAA8\t0x7CF0\n0x8EA1FAA9\t0x8FAE\n0x8EA1FAAA\t0x7E7D\n0x8EA1FAAB\t0x7E7C\n0x8EA1FAAC\t0x7E82\n0x8EA1FAAD\t0x7F4C\n0x8EA1FAAE\t0x8000\n0x8EA1FAAF\t0x81DA\n0x8EA1FAB0\t0x8266\n0x8EA1FAB1\t0x85FB\n0x8EA1FAB2\t0x85F9\n0x8EA1FAB3\t0x8611\n0x8EA1FAB4\t0x85FA\n0x8EA1FAB5\t0x8606\n0x8EA1FAB6\t0x860B\n0x8EA1FAB7\t0x8607\n0x8EA1FAB8\t0x860A\n0x8EA1FAB9\t0x8814\n0x8EA1FABA\t0x8815\n0x8EA1FABB\t0x8964\n0x8EA1FABC\t0x89BA\n0x8EA1FABD\t0x89F8\n0x8EA1FABE\t0x8B70\n0x8EA1FABF\t0x8B6C\n0x8EA1FAC0\t0x8B66\n0x8EA1FAC1\t0x8B6F\n0x8EA1FAC2\t0x8B5F\n0x8EA1FAC3\t0x8B6B\n0x8EA1FAC4\t0x8D0F\n0x8EA1FAC5\t0x8D0D\n0x8EA1FAC6\t0x8E89\n0x8EA1FAC7\t0x8E81\n0x8EA1FAC8\t0x8E85\n0x8EA1FAC9\t0x8E82\n0x8EA1FACA\t0x91B4\n0x8EA1FACB\t0x91CB\n0x8EA1FACC\t0x9418\n0x8EA1FACD\t0x9403\n0x8EA1FACE\t0x93FD\n0x8EA1FACF\t0x95E1\n0x8EA1FAD0\t0x9730\n0x8EA1FAD1\t0x98C4\n0x8EA1FAD2\t0x9952\n0x8EA1FAD3\t0x9951\n0x8EA1FAD4\t0x99A8\n0x8EA1FAD5\t0x9A2B\n0x8EA1FAD6\t0x9A30\n0x8EA1FAD7\t0x9A37\n0x8EA1FAD8\t0x9A35\n0x8EA1FAD9\t0x9C13\n0x8EA1FADA\t0x9C0D\n0x8EA1FADB\t0x9E79\n0x8EA1FADC\t0x9EB5\n0x8EA1FADD\t0x9EE8\n0x8EA1FADE\t0x9F2F\n0x8EA1FADF\t0x9F5F\n0x8EA1FAE0\t0x9F63\n0x8EA1FAE1\t0x9F61\n0x8EA1FAE2\t0x5137\n0x8EA1FAE3\t0x5138\n0x8EA1FAE4\t0x56C1\n0x8EA1FAE5\t0x56C0\n0x8EA1FAE6\t0x56C2\n0x8EA1FAE7\t0x5914\n0x8EA1FAE8\t0x5C6C\n0x8EA1FAE9\t0x5DCD\n0x8EA1FAEA\t0x61FC\n0x8EA1FAEB\t0x61FE\n0x8EA1FAEC\t0x651D\n0x8EA1FAED\t0x651C\n0x8EA1FAEE\t0x6595\n0x8EA1FAEF\t0x66E9\n0x8EA1FAF0\t0x6AFB\n0x8EA1FAF1\t0x6B04\n0x8EA1FAF2\t0x6AFA\n0x8EA1FAF3\t0x6BB2\n0x8EA1FAF4\t0x704C\n0x8EA1FAF5\t0x721B\n0x8EA1FAF6\t0x72A7\n0x8EA1FAF7\t0x74D6\n0x8EA1FAF8\t0x74D4\n0x8EA1FAF9\t0x7669\n0x8EA1FAFA\t0x77D3\n0x8EA1FAFB\t0x7C50\n0x8EA1FAFC\t0x7E8F\n0x8EA1FAFD\t0x7E8C\n0x8EA1FAFE\t0x7FBC\n0x8EA1FBA1\t0x8617\n0x8EA1FBA2\t0x862D\n0x8EA1FBA3\t0x861A\n0x8EA1FBA4\t0x8823\n0x8EA1FBA5\t0x8822\n0x8EA1FBA6\t0x8821\n0x8EA1FBA7\t0x881F\n0x8EA1FBA8\t0x896A\n0x8EA1FBA9\t0x896C\n0x8EA1FBAA\t0x89BD\n0x8EA1FBAB\t0x8B74\n0x8EA1FBAC\t0x8B77\n0x8EA1FBAD\t0x8B7D\n0x8EA1FBAE\t0x8D13\n0x8EA1FBAF\t0x8E8A\n0x8EA1FBB0\t0x8E8D\n0x8EA1FBB1\t0x8E8B\n0x8EA1FBB2\t0x8F5F\n0x8EA1FBB3\t0x8FAF\n0x8EA1FBB4\t0x91BA\n0x8EA1FBB5\t0x942E\n0x8EA1FBB6\t0x9433\n0x8EA1FBB7\t0x9435\n0x8EA1FBB8\t0x943A\n0x8EA1FBB9\t0x9438\n0x8EA1FBBA\t0x9432\n0x8EA1FBBB\t0x942B\n0x8EA1FBBC\t0x95E2\n0x8EA1FBBD\t0x9738\n0x8EA1FBBE\t0x9739\n0x8EA1FBBF\t0x9732\n0x8EA1FBC0\t0x97FF\n0x8EA1FBC1\t0x9867\n0x8EA1FBC2\t0x9865\n0x8EA1FBC3\t0x9957\n0x8EA1FBC4\t0x9A45\n0x8EA1FBC5\t0x9A43\n0x8EA1FBC6\t0x9A40\n0x8EA1FBC7\t0x9A3E\n0x8EA1FBC8\t0x9ACF\n0x8EA1FBC9\t0x9B54\n0x8EA1FBCA\t0x9B51\n0x8EA1FBCB\t0x9C2D\n0x8EA1FBCC\t0x9C25\n0x8EA1FBCD\t0x9DAF\n0x8EA1FBCE\t0x9DB4\n0x8EA1FBCF\t0x9DC2\n0x8EA1FBD0\t0x9DB8\n0x8EA1FBD1\t0x9E9D\n0x8EA1FBD2\t0x9EEF\n0x8EA1FBD3\t0x9F19\n0x8EA1FBD4\t0x9F5C\n0x8EA1FBD5\t0x9F66\n0x8EA1FBD6\t0x9F67\n0x8EA1FBD7\t0x513C\n0x8EA1FBD8\t0x513B\n0x8EA1FBD9\t0x56C8\n0x8EA1FBDA\t0x56CA\n0x8EA1FBDB\t0x56C9\n0x8EA1FBDC\t0x5B7F\n0x8EA1FBDD\t0x5DD4\n0x8EA1FBDE\t0x5DD2\n0x8EA1FBDF\t0x5F4E\n0x8EA1FBE0\t0x61FF\n0x8EA1FBE1\t0x6524\n0x8EA1FBE2\t0x6B0A\n0x8EA1FBE3\t0x6B61\n0x8EA1FBE4\t0x7051\n0x8EA1FBE5\t0x7058\n0x8EA1FBE6\t0x7380\n0x8EA1FBE7\t0x74E4\n0x8EA1FBE8\t0x758A\n0x8EA1FBE9\t0x766E\n0x8EA1FBEA\t0x766C\n0x8EA1FBEB\t0x79B3\n0x8EA1FBEC\t0x7C60\n0x8EA1FBED\t0x7C5F\n0x8EA1FBEE\t0x807E\n0x8EA1FBEF\t0x807D\n0x8EA1FBF0\t0x81DF\n0x8EA1FBF1\t0x8972\n0x8EA1FBF2\t0x896F\n0x8EA1FBF3\t0x89FC\n0x8EA1FBF4\t0x8B80\n0x8EA1FBF5\t0x8D16\n0x8EA1FBF6\t0x8D17\n0x8EA1FBF7\t0x8E91\n0x8EA1FBF8\t0x8E93\n0x8EA1FBF9\t0x8F61\n0x8EA1FBFA\t0x9148\n0x8EA1FBFB\t0x9444\n0x8EA1FBFC\t0x9451\n0x8EA1FBFD\t0x9452\n0x8EA1FBFE\t0x973D\n0x8EA1FCA1\t0x973E\n0x8EA1FCA2\t0x97C3\n0x8EA1FCA3\t0x97C1\n0x8EA1FCA4\t0x986B\n0x8EA1FCA5\t0x9955\n0x8EA1FCA6\t0x9A55\n0x8EA1FCA7\t0x9A4D\n0x8EA1FCA8\t0x9AD2\n0x8EA1FCA9\t0x9B1A\n0x8EA1FCAA\t0x9C49\n0x8EA1FCAB\t0x9C31\n0x8EA1FCAC\t0x9C3E\n0x8EA1FCAD\t0x9C3B\n0x8EA1FCAE\t0x9DD3\n0x8EA1FCAF\t0x9DD7\n0x8EA1FCB0\t0x9F34\n0x8EA1FCB1\t0x9F6C\n0x8EA1FCB2\t0x9F6A\n0x8EA1FCB3\t0x9F94\n0x8EA1FCB4\t0x56CC\n0x8EA1FCB5\t0x5DD6\n0x8EA1FCB6\t0x6200\n0x8EA1FCB7\t0x6523\n0x8EA1FCB8\t0x652B\n0x8EA1FCB9\t0x652A\n0x8EA1FCBA\t0x66EC\n0x8EA1FCBB\t0x6B10\n0x8EA1FCBC\t0x74DA\n0x8EA1FCBD\t0x7ACA\n0x8EA1FCBE\t0x7C64\n0x8EA1FCBF\t0x7C63\n0x8EA1FCC0\t0x7C65\n0x8EA1FCC1\t0x7E93\n0x8EA1FCC2\t0x7E96\n0x8EA1FCC3\t0x7E94\n0x8EA1FCC4\t0x81E2\n0x8EA1FCC5\t0x8638\n0x8EA1FCC6\t0x863F\n0x8EA1FCC7\t0x8831\n0x8EA1FCC8\t0x8B8A\n0x8EA1FCC9\t0x9090\n0x8EA1FCCA\t0x908F\n0x8EA1FCCB\t0x9463\n0x8EA1FCCC\t0x9460\n0x8EA1FCCD\t0x9464\n0x8EA1FCCE\t0x9768\n0x8EA1FCCF\t0x986F\n0x8EA1FCD0\t0x995C\n0x8EA1FCD1\t0x9A5A\n0x8EA1FCD2\t0x9A5B\n0x8EA1FCD3\t0x9A57\n0x8EA1FCD4\t0x9AD3\n0x8EA1FCD5\t0x9AD4\n0x8EA1FCD6\t0x9AD1\n0x8EA1FCD7\t0x9C54\n0x8EA1FCD8\t0x9C57\n0x8EA1FCD9\t0x9C56\n0x8EA1FCDA\t0x9DE5\n0x8EA1FCDB\t0x9E9F\n0x8EA1FCDC\t0x9EF4\n0x8EA1FCDD\t0x56D1\n0x8EA1FCDE\t0x58E9\n0x8EA1FCDF\t0x652C\n0x8EA1FCE0\t0x705E\n0x8EA1FCE1\t0x7671\n0x8EA1FCE2\t0x7672\n0x8EA1FCE3\t0x77D7\n0x8EA1FCE4\t0x7F50\n0x8EA1FCE5\t0x7F88\n0x8EA1FCE6\t0x8836\n0x8EA1FCE7\t0x8839\n0x8EA1FCE8\t0x8862\n0x8EA1FCE9\t0x8B93\n0x8EA1FCEA\t0x8B92\n0x8EA1FCEB\t0x8B96\n0x8EA1FCEC\t0x8277\n0x8EA1FCED\t0x8D1B\n0x8EA1FCEE\t0x91C0\n0x8EA1FCEF\t0x946A\n0x8EA1FCF0\t0x9742\n0x8EA1FCF1\t0x9748\n0x8EA1FCF2\t0x9744\n0x8EA1FCF3\t0x97C6\n0x8EA1FCF4\t0x9870\n0x8EA1FCF5\t0x9A5F\n0x8EA1FCF6\t0x9B22\n0x8EA1FCF7\t0x9B58\n0x8EA1FCF8\t0x9C5F\n0x8EA1FCF9\t0x9DF9\n0x8EA1FCFA\t0x9DFA\n0x8EA1FCFB\t0x9E7C\n0x8EA1FCFC\t0x9E7D\n0x8EA1FCFD\t0x9F07\n0x8EA1FCFE\t0x9F77\n0x8EA1FDA1\t0x9F72\n0x8EA1FDA2\t0x5EF3\n0x8EA1FDA3\t0x6B16\n0x8EA1FDA4\t0x7063\n0x8EA1FDA5\t0x7C6C\n0x8EA1FDA6\t0x7C6E\n0x8EA1FDA7\t0x883B\n0x8EA1FDA8\t0x89C0\n0x8EA1FDA9\t0x8EA1\n0x8EA1FDAA\t0x91C1\n0x8EA1FDAB\t0x9472\n0x8EA1FDAC\t0x9470\n0x8EA1FDAD\t0x9871\n0x8EA1FDAE\t0x995E\n0x8EA1FDAF\t0x9AD6\n0x8EA1FDB0\t0x9B23\n0x8EA1FDB1\t0x9ECC\n0x8EA1FDB2\t0x7064\n0x8EA1FDB3\t0x77DA\n0x8EA1FDB4\t0x8B9A\n0x8EA1FDB5\t0x9477\n0x8EA1FDB6\t0x97C9\n0x8EA1FDB7\t0x9A62\n0x8EA1FDB8\t0x9A65\n0x8EA1FDB9\t0x7E9C\n0x8EA1FDBA\t0x8B9C\n0x8EA1FDBB\t0x8EAA\n0x8EA1FDBC\t0x91C5\n0x8EA1FDBD\t0x947D\n0x8EA1FDBE\t0x947E\n0x8EA1FDBF\t0x947C\n0x8EA1FDC0\t0x9C77\n0x8EA1FDC1\t0x9C78\n0x8EA1FDC2\t0x9EF7\n0x8EA1FDC3\t0x8C54\n0x8EA1FDC4\t0x947F\n0x8EA1FDC5\t0x9E1A\n0x8EA1FDC6\t0x7228\n0x8EA1FDC7\t0x9A6A\n0x8EA1FDC8\t0x9B31\n0x8EA1FDC9\t0x9E1B\n0x8EA1FDCA\t0x9E1E\n0x8EA1FDCB\t0x7C72\n0x8EA2A1A1\t0x4E42\n0x8EA2A1A2\t0x4E5C\n0x8EA2A1A3\t0x51F5\n0x8EA2A1A4\t0x531A\n0x8EA2A1A5\t0x5382\n0x8EA2A1A6\t0x4E07\n0x8EA2A1A7\t0x4E0C\n0x8EA2A1A8\t0x4E47\n0x8EA2A1A9\t0x4E8D\n0x8EA2A1AA\t0x56D7\n0x8EA2A1AB\t0x5C6E\n0x8EA2A1AC\t0x5F73\n0x8EA2A1AD\t0x4E0F\n0x8EA2A1AE\t0x5187\n0x8EA2A1AF\t0x4E0E\n0x8EA2A1B0\t0x4E2E\n0x8EA2A1B1\t0x4E93\n0x8EA2A1B2\t0x4EC2\n0x8EA2A1B3\t0x4EC9\n0x8EA2A1B4\t0x4EC8\n0x8EA2A1B5\t0x5198\n0x8EA2A1B6\t0x52FC\n0x8EA2A1B7\t0x536C\n0x8EA2A1B8\t0x53B9\n0x8EA2A1B9\t0x5720\n0x8EA2A1BA\t0x5903\n0x8EA2A1BB\t0x592C\n0x8EA2A1BC\t0x5C10\n0x8EA2A1BD\t0x5DFF\n0x8EA2A1BE\t0x65E1\n0x8EA2A1BF\t0x6BB3\n0x8EA2A1C0\t0x6BCC\n0x8EA2A1C1\t0x6C14\n0x8EA2A1C2\t0x723F\n0x8EA2A1C3\t0x4E31\n0x8EA2A1C4\t0x4E3C\n0x8EA2A1C5\t0x4EE8\n0x8EA2A1C6\t0x4EDC\n0x8EA2A1C7\t0x4EE9\n0x8EA2A1C8\t0x4EE1\n0x8EA2A1C9\t0x4EDD\n0x8EA2A1CA\t0x4EDA\n0x8EA2A1CB\t0x520C\n0x8EA2A1CC\t0x5209\n0x8EA2A1CD\t0x531C\n0x8EA2A1CE\t0x534C\n0x8EA2A1CF\t0x5722\n0x8EA2A1D0\t0x5723\n0x8EA2A1D1\t0x5917\n0x8EA2A1D2\t0x592F\n0x8EA2A1D3\t0x5B81\n0x8EA2A1D4\t0x5B84\n0x8EA2A1D5\t0x5C12\n0x8EA2A1D6\t0x5C3B\n0x8EA2A1D7\t0x5C74\n0x8EA2A1D8\t0x5C73\n0x8EA2A1D9\t0x5E04\n0x8EA2A1DA\t0x5E80\n0x8EA2A1DB\t0x5E82\n0x8EA2A1DC\t0x5FC9\n0x8EA2A1DD\t0x6209\n0x8EA2A1DE\t0x6250\n0x8EA2A1DF\t0x6C15\n0x8EA2A1E0\t0x6C36\n0x8EA2A1E1\t0x6C43\n0x8EA2A1E2\t0x6C3F\n0x8EA2A1E3\t0x6C3B\n0x8EA2A1E4\t0x72AE\n0x8EA2A1E5\t0x72B0\n0x8EA2A1E6\t0x738A\n0x8EA2A1E7\t0x79B8\n0x8EA2A1E8\t0x808A\n0x8EA2A1E9\t0x961E\n0x8EA2A1EA\t0x4F0E\n0x8EA2A1EB\t0x4F18\n0x8EA2A1EC\t0x4F2C\n0x8EA2A1ED\t0x4EF5\n0x8EA2A1EE\t0x4F14\n0x8EA2A1EF\t0x4EF1\n0x8EA2A1F0\t0x4F00\n0x8EA2A1F1\t0x4EF7\n0x8EA2A1F2\t0x4F08\n0x8EA2A1F3\t0x4F1D\n0x8EA2A1F4\t0x4F02\n0x8EA2A1F5\t0x4F05\n0x8EA2A1F6\t0x4F22\n0x8EA2A1F7\t0x4F13\n0x8EA2A1F8\t0x4F04\n0x8EA2A1F9\t0x4EF4\n0x8EA2A1FA\t0x4F12\n0x8EA2A1FB\t0x51B1\n0x8EA2A1FC\t0x5213\n0x8EA2A1FD\t0x5210\n0x8EA2A1FE\t0x52A6\n0x8EA2A2A1\t0x5322\n0x8EA2A2A2\t0x531F\n0x8EA2A2A3\t0x534D\n0x8EA2A2A4\t0x538A\n0x8EA2A2A5\t0x5407\n0x8EA2A2A6\t0x56E1\n0x8EA2A2A7\t0x56DF\n0x8EA2A2A8\t0x572E\n0x8EA2A2A9\t0x572A\n0x8EA2A2AA\t0x5734\n0x8EA2A2AB\t0x593C\n0x8EA2A2AC\t0x5980\n0x8EA2A2AD\t0x597C\n0x8EA2A2AE\t0x5985\n0x8EA2A2AF\t0x597B\n0x8EA2A2B0\t0x597E\n0x8EA2A2B1\t0x5977\n0x8EA2A2B2\t0x597F\n0x8EA2A2B3\t0x5B56\n0x8EA2A2B4\t0x5C15\n0x8EA2A2B5\t0x5C25\n0x8EA2A2B6\t0x5C7C\n0x8EA2A2B7\t0x5C7A\n0x8EA2A2B8\t0x5C7B\n0x8EA2A2B9\t0x5C7E\n0x8EA2A2BA\t0x5DDF\n0x8EA2A2BB\t0x5E75\n0x8EA2A2BC\t0x5E84\n0x8EA2A2BD\t0x5F02\n0x8EA2A2BE\t0x5F1A\n0x8EA2A2BF\t0x5F74\n0x8EA2A2C0\t0x5FD5\n0x8EA2A2C1\t0x5FD4\n0x8EA2A2C2\t0x5FCF\n0x8EA2A2C3\t0x625C\n0x8EA2A2C4\t0x625E\n0x8EA2A2C5\t0x6264\n0x8EA2A2C6\t0x6261\n0x8EA2A2C7\t0x6266\n0x8EA2A2C8\t0x6262\n0x8EA2A2C9\t0x6259\n0x8EA2A2CA\t0x6260\n0x8EA2A2CB\t0x625A\n0x8EA2A2CC\t0x6265\n0x8EA2A2CD\t0x6537\n0x8EA2A2CE\t0x65EF\n0x8EA2A2CF\t0x65EE\n0x8EA2A2D0\t0x673E\n0x8EA2A2D1\t0x6739\n0x8EA2A2D2\t0x6738\n0x8EA2A2D3\t0x673B\n0x8EA2A2D4\t0x673A\n0x8EA2A2D5\t0x673F\n0x8EA2A2D6\t0x673C\n0x8EA2A2D7\t0x6733\n0x8EA2A2D8\t0x6C18\n0x8EA2A2D9\t0x6C46\n0x8EA2A2DA\t0x6C52\n0x8EA2A2DB\t0x6C5C\n0x8EA2A2DC\t0x6C4F\n0x8EA2A2DD\t0x6C4A\n0x8EA2A2DE\t0x6C54\n0x8EA2A2DF\t0x6C4B\n0x8EA2A2E0\t0x6C4C\n0x8EA2A2E1\t0x7071\n0x8EA2A2E2\t0x725E\n0x8EA2A2E3\t0x72B4\n0x8EA2A2E4\t0x72B5\n0x8EA2A2E5\t0x738E\n0x8EA2A2E6\t0x752A\n0x8EA2A2E7\t0x767F\n0x8EA2A2E8\t0x7A75\n0x8EA2A2E9\t0x7F51\n0x8EA2A2EA\t0x8278\n0x8EA2A2EB\t0x827C\n0x8EA2A2EC\t0x8280\n0x8EA2A2ED\t0x827D\n0x8EA2A2EE\t0x827F\n0x8EA2A2EF\t0x864D\n0x8EA2A2F0\t0x897E\n0x8EA2A2F1\t0x9099\n0x8EA2A2F2\t0x9097\n0x8EA2A2F3\t0x9098\n0x8EA2A2F4\t0x909B\n0x8EA2A2F5\t0x9094\n0x8EA2A2F6\t0x9622\n0x8EA2A2F7\t0x9624\n0x8EA2A2F8\t0x9620\n0x8EA2A2F9\t0x9623\n0x8EA2A2FA\t0x4F56\n0x8EA2A2FB\t0x4F3B\n0x8EA2A2FC\t0x4F62\n0x8EA2A2FD\t0x4F49\n0x8EA2A2FE\t0x4F53\n0x8EA2A3A1\t0x4F64\n0x8EA2A3A2\t0x4F3E\n0x8EA2A3A3\t0x4F67\n0x8EA2A3A4\t0x4F52\n0x8EA2A3A5\t0x4F5F\n0x8EA2A3A6\t0x4F41\n0x8EA2A3A7\t0x4F58\n0x8EA2A3A8\t0x4F2D\n0x8EA2A3A9\t0x4F33\n0x8EA2A3AA\t0x4F3F\n0x8EA2A3AB\t0x4F61\n0x8EA2A3AC\t0x518F\n0x8EA2A3AD\t0x51B9\n0x8EA2A3AE\t0x521C\n0x8EA2A3AF\t0x521E\n0x8EA2A3B0\t0x5221\n0x8EA2A3B1\t0x52AD\n0x8EA2A3B2\t0x52AE\n0x8EA2A3B3\t0x5309\n0x8EA2A3B4\t0x5363\n0x8EA2A3B5\t0x5372\n0x8EA2A3B6\t0x538E\n0x8EA2A3B7\t0x538F\n0x8EA2A3B8\t0x5430\n0x8EA2A3B9\t0x5437\n0x8EA2A3BA\t0x542A\n0x8EA2A3BB\t0x5454\n0x8EA2A3BC\t0x5445\n0x8EA2A3BD\t0x5419\n0x8EA2A3BE\t0x541C\n0x8EA2A3BF\t0x5425\n0x8EA2A3C0\t0x5418\n0x8EA2A3C1\t0x543D\n0x8EA2A3C2\t0x544F\n0x8EA2A3C3\t0x5441\n0x8EA2A3C4\t0x5428\n0x8EA2A3C5\t0x5424\n0x8EA2A3C6\t0x5447\n0x8EA2A3C7\t0x56EE\n0x8EA2A3C8\t0x56E7\n0x8EA2A3C9\t0x56E5\n0x8EA2A3CA\t0x5741\n0x8EA2A3CB\t0x5745\n0x8EA2A3CC\t0x574C\n0x8EA2A3CD\t0x5749\n0x8EA2A3CE\t0x574B\n0x8EA2A3CF\t0x5752\n0x8EA2A3D0\t0x5906\n0x8EA2A3D1\t0x5940\n0x8EA2A3D2\t0x59A6\n0x8EA2A3D3\t0x5998\n0x8EA2A3D4\t0x59A0\n0x8EA2A3D5\t0x5997\n0x8EA2A3D6\t0x598E\n0x8EA2A3D7\t0x59A2\n0x8EA2A3D8\t0x5990\n0x8EA2A3D9\t0x598F\n0x8EA2A3DA\t0x59A7\n0x8EA2A3DB\t0x59A1\n0x8EA2A3DC\t0x5B8E\n0x8EA2A3DD\t0x5B92\n0x8EA2A3DE\t0x5C28\n0x8EA2A3DF\t0x5C2A\n0x8EA2A3E0\t0x5C8D\n0x8EA2A3E1\t0x5C8F\n0x8EA2A3E2\t0x5C88\n0x8EA2A3E3\t0x5C8B\n0x8EA2A3E4\t0x5C89\n0x8EA2A3E5\t0x5C92\n0x8EA2A3E6\t0x5C8A\n0x8EA2A3E7\t0x5C86\n0x8EA2A3E8\t0x5C93\n0x8EA2A3E9\t0x5C95\n0x8EA2A3EA\t0x5DE0\n0x8EA2A3EB\t0x5E0A\n0x8EA2A3EC\t0x5E0E\n0x8EA2A3ED\t0x5E8B\n0x8EA2A3EE\t0x5E89\n0x8EA2A3EF\t0x5E8C\n0x8EA2A3F0\t0x5E88\n0x8EA2A3F1\t0x5E8D\n0x8EA2A3F2\t0x5F05\n0x8EA2A3F3\t0x5F1D\n0x8EA2A3F4\t0x5F78\n0x8EA2A3F5\t0x5F76\n0x8EA2A3F6\t0x5FD2\n0x8EA2A3F7\t0x5FD1\n0x8EA2A3F8\t0x5FD0\n0x8EA2A3F9\t0x5FED\n0x8EA2A3FA\t0x5FE8\n0x8EA2A3FB\t0x5FEE\n0x8EA2A3FC\t0x5FF3\n0x8EA2A3FD\t0x5FE1\n0x8EA2A3FE\t0x5FE4\n0x8EA2A4A1\t0x5FE3\n0x8EA2A4A2\t0x5FFA\n0x8EA2A4A3\t0x5FEF\n0x8EA2A4A4\t0x5FF7\n0x8EA2A4A5\t0x5FFB\n0x8EA2A4A6\t0x6000\n0x8EA2A4A7\t0x5FF4\n0x8EA2A4A8\t0x623A\n0x8EA2A4A9\t0x6283\n0x8EA2A4AA\t0x628C\n0x8EA2A4AB\t0x628E\n0x8EA2A4AC\t0x628F\n0x8EA2A4AD\t0x6294\n0x8EA2A4AE\t0x6287\n0x8EA2A4AF\t0x6271\n0x8EA2A4B0\t0x627B\n0x8EA2A4B1\t0x627A\n0x8EA2A4B2\t0x6270\n0x8EA2A4B3\t0x6281\n0x8EA2A4B4\t0x6288\n0x8EA2A4B5\t0x6277\n0x8EA2A4B6\t0x627D\n0x8EA2A4B7\t0x6272\n0x8EA2A4B8\t0x6274\n0x8EA2A4B9\t0x65F0\n0x8EA2A4BA\t0x65F4\n0x8EA2A4BB\t0x65F3\n0x8EA2A4BC\t0x65F2\n0x8EA2A4BD\t0x65F5\n0x8EA2A4BE\t0x6745\n0x8EA2A4BF\t0x6747\n0x8EA2A4C0\t0x6759\n0x8EA2A4C1\t0x6755\n0x8EA2A4C2\t0x674C\n0x8EA2A4C3\t0x6748\n0x8EA2A4C4\t0x675D\n0x8EA2A4C5\t0x674D\n0x8EA2A4C6\t0x675A\n0x8EA2A4C7\t0x674B\n0x8EA2A4C8\t0x6BD0\n0x8EA2A4C9\t0x6C19\n0x8EA2A4CA\t0x6C1A\n0x8EA2A4CB\t0x6C78\n0x8EA2A4CC\t0x6C67\n0x8EA2A4CD\t0x6C6B\n0x8EA2A4CE\t0x6C84\n0x8EA2A4CF\t0x6C8B\n0x8EA2A4D0\t0x6C8F\n0x8EA2A4D1\t0x6C71\n0x8EA2A4D2\t0x6C6F\n0x8EA2A4D3\t0x6C69\n0x8EA2A4D4\t0x6C9A\n0x8EA2A4D5\t0x6C6D\n0x8EA2A4D6\t0x6C87\n0x8EA2A4D7\t0x6C95\n0x8EA2A4D8\t0x6C9C\n0x8EA2A4D9\t0x6C66\n0x8EA2A4DA\t0x6C73\n0x8EA2A4DB\t0x6C65\n0x8EA2A4DC\t0x6C7B\n0x8EA2A4DD\t0x6C8E\n0x8EA2A4DE\t0x7074\n0x8EA2A4DF\t0x707A\n0x8EA2A4E0\t0x7263\n0x8EA2A4E1\t0x72BF\n0x8EA2A4E2\t0x72BD\n0x8EA2A4E3\t0x72C3\n0x8EA2A4E4\t0x72C6\n0x8EA2A4E5\t0x72C1\n0x8EA2A4E6\t0x72BA\n0x8EA2A4E7\t0x72C5\n0x8EA2A4E8\t0x7395\n0x8EA2A4E9\t0x7397\n0x8EA2A4EA\t0x7393\n0x8EA2A4EB\t0x7394\n0x8EA2A4EC\t0x7392\n0x8EA2A4ED\t0x753A\n0x8EA2A4EE\t0x7539\n0x8EA2A4EF\t0x7594\n0x8EA2A4F0\t0x7595\n0x8EA2A4F1\t0x7681\n0x8EA2A4F2\t0x793D\n0x8EA2A4F3\t0x8034\n0x8EA2A4F4\t0x8095\n0x8EA2A4F5\t0x8099\n0x8EA2A4F6\t0x8090\n0x8EA2A4F7\t0x8092\n0x8EA2A4F8\t0x809C\n0x8EA2A4F9\t0x8290\n0x8EA2A4FA\t0x828F\n0x8EA2A4FB\t0x8285\n0x8EA2A4FC\t0x828E\n0x8EA2A4FD\t0x8291\n0x8EA2A4FE\t0x8293\n0x8EA2A5A1\t0x828A\n0x8EA2A5A2\t0x8283\n0x8EA2A5A3\t0x8284\n0x8EA2A5A4\t0x8C78\n0x8EA2A5A5\t0x8FC9\n0x8EA2A5A6\t0x8FBF\n0x8EA2A5A7\t0x909F\n0x8EA2A5A8\t0x90A1\n0x8EA2A5A9\t0x90A5\n0x8EA2A5AA\t0x909E\n0x8EA2A5AB\t0x90A7\n0x8EA2A5AC\t0x90A0\n0x8EA2A5AD\t0x9630\n0x8EA2A5AE\t0x9628\n0x8EA2A5AF\t0x962F\n0x8EA2A5B0\t0x962D\n0x8EA2A5B1\t0x4E33\n0x8EA2A5B2\t0x4F98\n0x8EA2A5B3\t0x4F7C\n0x8EA2A5B4\t0x4F85\n0x8EA2A5B5\t0x4F7D\n0x8EA2A5B6\t0x4F80\n0x8EA2A5B7\t0x4F87\n0x8EA2A5B8\t0x4F76\n0x8EA2A5B9\t0x4F74\n0x8EA2A5BA\t0x4F89\n0x8EA2A5BB\t0x4F84\n0x8EA2A5BC\t0x4F77\n0x8EA2A5BD\t0x4F4C\n0x8EA2A5BE\t0x4F97\n0x8EA2A5BF\t0x4F6A\n0x8EA2A5C0\t0x4F9A\n0x8EA2A5C1\t0x4F79\n0x8EA2A5C2\t0x4F81\n0x8EA2A5C3\t0x4F78\n0x8EA2A5C4\t0x4F90\n0x8EA2A5C5\t0x4F9C\n0x8EA2A5C6\t0x4F94\n0x8EA2A5C7\t0x4F9E\n0x8EA2A5C8\t0x4F92\n0x8EA2A5C9\t0x4F82\n0x8EA2A5CA\t0x4F95\n0x8EA2A5CB\t0x4F6B\n0x8EA2A5CC\t0x4F6E\n0x8EA2A5CD\t0x519E\n0x8EA2A5CE\t0x51BC\n0x8EA2A5CF\t0x51BE\n0x8EA2A5D0\t0x5235\n0x8EA2A5D1\t0x5232\n0x8EA2A5D2\t0x5233\n0x8EA2A5D3\t0x5246\n0x8EA2A5D4\t0x5231\n0x8EA2A5D5\t0x52BC\n0x8EA2A5D6\t0x530A\n0x8EA2A5D7\t0x530B\n0x8EA2A5D8\t0x533C\n0x8EA2A5D9\t0x5392\n0x8EA2A5DA\t0x5394\n0x8EA2A5DB\t0x5487\n0x8EA2A5DC\t0x547F\n0x8EA2A5DD\t0x5481\n0x8EA2A5DE\t0x5491\n0x8EA2A5DF\t0x5482\n0x8EA2A5E0\t0x5488\n0x8EA2A5E1\t0x546B\n0x8EA2A5E2\t0x547A\n0x8EA2A5E3\t0x547E\n0x8EA2A5E4\t0x5465\n0x8EA2A5E5\t0x546C\n0x8EA2A5E6\t0x5474\n0x8EA2A5E7\t0x5466\n0x8EA2A5E8\t0x548D\n0x8EA2A5E9\t0x546F\n0x8EA2A5EA\t0x5461\n0x8EA2A5EB\t0x5460\n0x8EA2A5EC\t0x5498\n0x8EA2A5ED\t0x5463\n0x8EA2A5EE\t0x5467\n0x8EA2A5EF\t0x5464\n0x8EA2A5F0\t0x56F7\n0x8EA2A5F1\t0x56F9\n0x8EA2A5F2\t0x576F\n0x8EA2A5F3\t0x5772\n0x8EA2A5F4\t0x576D\n0x8EA2A5F5\t0x576B\n0x8EA2A5F6\t0x5771\n0x8EA2A5F7\t0x5770\n0x8EA2A5F8\t0x5776\n0x8EA2A5F9\t0x5780\n0x8EA2A5FA\t0x5775\n0x8EA2A5FB\t0x577B\n0x8EA2A5FC\t0x5773\n0x8EA2A5FD\t0x5774\n0x8EA2A5FE\t0x5762\n0x8EA2A6A1\t0x5768\n0x8EA2A6A2\t0x577D\n0x8EA2A6A3\t0x590C\n0x8EA2A6A4\t0x5945\n0x8EA2A6A5\t0x59B5\n0x8EA2A6A6\t0x59BA\n0x8EA2A6A7\t0x59CF\n0x8EA2A6A8\t0x59CE\n0x8EA2A6A9\t0x59B2\n0x8EA2A6AA\t0x59CC\n0x8EA2A6AB\t0x59C1\n0x8EA2A6AC\t0x59B6\n0x8EA2A6AD\t0x59BC\n0x8EA2A6AE\t0x59C3\n0x8EA2A6AF\t0x59D6\n0x8EA2A6B0\t0x59B1\n0x8EA2A6B1\t0x59BD\n0x8EA2A6B2\t0x59C0\n0x8EA2A6B3\t0x59C8\n0x8EA2A6B4\t0x59B4\n0x8EA2A6B5\t0x59C7\n0x8EA2A6B6\t0x5B62\n0x8EA2A6B7\t0x5B65\n0x8EA2A6B8\t0x5B93\n0x8EA2A6B9\t0x5B95\n0x8EA2A6BA\t0x5C44\n0x8EA2A6BB\t0x5C47\n0x8EA2A6BC\t0x5CAE\n0x8EA2A6BD\t0x5CA4\n0x8EA2A6BE\t0x5CA0\n0x8EA2A6BF\t0x5CB5\n0x8EA2A6C0\t0x5CAF\n0x8EA2A6C1\t0x5CA8\n0x8EA2A6C2\t0x5CAC\n0x8EA2A6C3\t0x5C9F\n0x8EA2A6C4\t0x5CA3\n0x8EA2A6C5\t0x5CAD\n0x8EA2A6C6\t0x5CA2\n0x8EA2A6C7\t0x5CAA\n0x8EA2A6C8\t0x5CA7\n0x8EA2A6C9\t0x5C9D\n0x8EA2A6CA\t0x5CA5\n0x8EA2A6CB\t0x5CB6\n0x8EA2A6CC\t0x5CB0\n0x8EA2A6CD\t0x5CA6\n0x8EA2A6CE\t0x5E17\n0x8EA2A6CF\t0x5E14\n0x8EA2A6D0\t0x5E19\n0x8EA2A6D1\t0x5F28\n0x8EA2A6D2\t0x5F22\n0x8EA2A6D3\t0x5F23\n0x8EA2A6D4\t0x5F24\n0x8EA2A6D5\t0x5F54\n0x8EA2A6D6\t0x5F82\n0x8EA2A6D7\t0x5F7E\n0x8EA2A6D8\t0x5F7D\n0x8EA2A6D9\t0x5FDE\n0x8EA2A6DA\t0x5FE5\n0x8EA2A6DB\t0x602D\n0x8EA2A6DC\t0x6026\n0x8EA2A6DD\t0x6019\n0x8EA2A6DE\t0x6032\n0x8EA2A6DF\t0x600B\n0x8EA2A6E0\t0x6034\n0x8EA2A6E1\t0x600A\n0x8EA2A6E2\t0x6017\n0x8EA2A6E3\t0x6033\n0x8EA2A6E4\t0x601A\n0x8EA2A6E5\t0x601E\n0x8EA2A6E6\t0x602C\n0x8EA2A6E7\t0x6022\n0x8EA2A6E8\t0x600D\n0x8EA2A6E9\t0x6010\n0x8EA2A6EA\t0x602E\n0x8EA2A6EB\t0x6013\n0x8EA2A6EC\t0x6011\n0x8EA2A6ED\t0x600C\n0x8EA2A6EE\t0x6009\n0x8EA2A6EF\t0x601C\n0x8EA2A6F0\t0x6214\n0x8EA2A6F1\t0x623D\n0x8EA2A6F2\t0x62AD\n0x8EA2A6F3\t0x62B4\n0x8EA2A6F4\t0x62D1\n0x8EA2A6F5\t0x62BE\n0x8EA2A6F6\t0x62AA\n0x8EA2A6F7\t0x62B6\n0x8EA2A6F8\t0x62CA\n0x8EA2A6F9\t0x62AE\n0x8EA2A6FA\t0x62B3\n0x8EA2A6FB\t0x62AF\n0x8EA2A6FC\t0x62BB\n0x8EA2A6FD\t0x62A9\n0x8EA2A6FE\t0x62B0\n0x8EA2A7A1\t0x62B8\n0x8EA2A7A2\t0x653D\n0x8EA2A7A3\t0x65A8\n0x8EA2A7A4\t0x65BB\n0x8EA2A7A5\t0x6609\n0x8EA2A7A6\t0x65FC\n0x8EA2A7A7\t0x6604\n0x8EA2A7A8\t0x6612\n0x8EA2A7A9\t0x6608\n0x8EA2A7AA\t0x65FB\n0x8EA2A7AB\t0x6603\n0x8EA2A7AC\t0x660B\n0x8EA2A7AD\t0x660D\n0x8EA2A7AE\t0x6605\n0x8EA2A7AF\t0x65FD\n0x8EA2A7B0\t0x6611\n0x8EA2A7B1\t0x6610\n0x8EA2A7B2\t0x66F6\n0x8EA2A7B3\t0x670A\n0x8EA2A7B4\t0x6785\n0x8EA2A7B5\t0x676C\n0x8EA2A7B6\t0x678E\n0x8EA2A7B7\t0x6792\n0x8EA2A7B8\t0x6776\n0x8EA2A7B9\t0x677B\n0x8EA2A7BA\t0x6798\n0x8EA2A7BB\t0x6786\n0x8EA2A7BC\t0x6784\n0x8EA2A7BD\t0x6774\n0x8EA2A7BE\t0x678D\n0x8EA2A7BF\t0x678C\n0x8EA2A7C0\t0x677A\n0x8EA2A7C1\t0x679F\n0x8EA2A7C2\t0x6791\n0x8EA2A7C3\t0x6799\n0x8EA2A7C4\t0x6783\n0x8EA2A7C5\t0x677D\n0x8EA2A7C6\t0x6781\n0x8EA2A7C7\t0x6778\n0x8EA2A7C8\t0x6779\n0x8EA2A7C9\t0x6794\n0x8EA2A7CA\t0x6B25\n0x8EA2A7CB\t0x6B80\n0x8EA2A7CC\t0x6B7E\n0x8EA2A7CD\t0x6BDE\n0x8EA2A7CE\t0x6C1D\n0x8EA2A7CF\t0x6C93\n0x8EA2A7D0\t0x6CEC\n0x8EA2A7D1\t0x6CEB\n0x8EA2A7D2\t0x6CEE\n0x8EA2A7D3\t0x6CD9\n0x8EA2A7D4\t0x6CB6\n0x8EA2A7D5\t0x6CD4\n0x8EA2A7D6\t0x6CAD\n0x8EA2A7D7\t0x6CE7\n0x8EA2A7D8\t0x6CB7\n0x8EA2A7D9\t0x6CD0\n0x8EA2A7DA\t0x6CC2\n0x8EA2A7DB\t0x6CBA\n0x8EA2A7DC\t0x6CC3\n0x8EA2A7DD\t0x6CC6\n0x8EA2A7DE\t0x6CED\n0x8EA2A7DF\t0x6CF2\n0x8EA2A7E0\t0x6CD2\n0x8EA2A7E1\t0x6CDD\n0x8EA2A7E2\t0x6CB4\n0x8EA2A7E3\t0x6C8A\n0x8EA2A7E4\t0x6C9D\n0x8EA2A7E5\t0x6C80\n0x8EA2A7E6\t0x6CDE\n0x8EA2A7E7\t0x6CC0\n0x8EA2A7E8\t0x6D30\n0x8EA2A7E9\t0x6CCD\n0x8EA2A7EA\t0x6CC7\n0x8EA2A7EB\t0x6CB0\n0x8EA2A7EC\t0x6CF9\n0x8EA2A7ED\t0x6CCF\n0x8EA2A7EE\t0x6CE9\n0x8EA2A7EF\t0x6CD1\n0x8EA2A7F0\t0x7094\n0x8EA2A7F1\t0x7098\n0x8EA2A7F2\t0x7085\n0x8EA2A7F3\t0x7093\n0x8EA2A7F4\t0x7086\n0x8EA2A7F5\t0x7084\n0x8EA2A7F6\t0x7091\n0x8EA2A7F7\t0x7096\n0x8EA2A7F8\t0x7082\n0x8EA2A7F9\t0x709A\n0x8EA2A7FA\t0x7083\n0x8EA2A7FB\t0x726A\n0x8EA2A7FC\t0x72D6\n0x8EA2A7FD\t0x72CB\n0x8EA2A7FE\t0x72D8\n0x8EA2A8A1\t0x72C9\n0x8EA2A8A2\t0x72DC\n0x8EA2A8A3\t0x72D2\n0x8EA2A8A4\t0x72D4\n0x8EA2A8A5\t0x72DA\n0x8EA2A8A6\t0x72CC\n0x8EA2A8A7\t0x72D1\n0x8EA2A8A8\t0x73A4\n0x8EA2A8A9\t0x73A1\n0x8EA2A8AA\t0x73AD\n0x8EA2A8AB\t0x73A6\n0x8EA2A8AC\t0x73A2\n0x8EA2A8AD\t0x73A0\n0x8EA2A8AE\t0x73AC\n0x8EA2A8AF\t0x739D\n0x8EA2A8B0\t0x74DD\n0x8EA2A8B1\t0x74E8\n0x8EA2A8B2\t0x753F\n0x8EA2A8B3\t0x7540\n0x8EA2A8B4\t0x753E\n0x8EA2A8B5\t0x758C\n0x8EA2A8B6\t0x7598\n0x8EA2A8B7\t0x76AF\n0x8EA2A8B8\t0x76F3\n0x8EA2A8B9\t0x76F1\n0x8EA2A8BA\t0x76F0\n0x8EA2A8BB\t0x76F5\n0x8EA2A8BC\t0x77F8\n0x8EA2A8BD\t0x77FC\n0x8EA2A8BE\t0x77F9\n0x8EA2A8BF\t0x77FB\n0x8EA2A8C0\t0x77FA\n0x8EA2A8C1\t0x77F7\n0x8EA2A8C2\t0x7942\n0x8EA2A8C3\t0x793F\n0x8EA2A8C4\t0x79C5\n0x8EA2A8C5\t0x7A78\n0x8EA2A8C6\t0x7A7B\n0x8EA2A8C7\t0x7AFB\n0x8EA2A8C8\t0x7C75\n0x8EA2A8C9\t0x7CFD\n0x8EA2A8CA\t0x8035\n0x8EA2A8CB\t0x808F\n0x8EA2A8CC\t0x80AE\n0x8EA2A8CD\t0x80A3\n0x8EA2A8CE\t0x80B8\n0x8EA2A8CF\t0x80B5\n0x8EA2A8D0\t0x80AD\n0x8EA2A8D1\t0x8220\n0x8EA2A8D2\t0x82A0\n0x8EA2A8D3\t0x82C0\n0x8EA2A8D4\t0x82AB\n0x8EA2A8D5\t0x829A\n0x8EA2A8D6\t0x8298\n0x8EA2A8D7\t0x829B\n0x8EA2A8D8\t0x82B5\n0x8EA2A8D9\t0x82A7\n0x8EA2A8DA\t0x82AE\n0x8EA2A8DB\t0x82BC\n0x8EA2A8DC\t0x829E\n0x8EA2A8DD\t0x82BA\n0x8EA2A8DE\t0x82B4\n0x8EA2A8DF\t0x82A8\n0x8EA2A8E0\t0x82A1\n0x8EA2A8E1\t0x82A9\n0x8EA2A8E2\t0x82C2\n0x8EA2A8E3\t0x82A4\n0x8EA2A8E4\t0x82C3\n0x8EA2A8E5\t0x82B6\n0x8EA2A8E6\t0x82A2\n0x8EA2A8E7\t0x8670\n0x8EA2A8E8\t0x866F\n0x8EA2A8E9\t0x866D\n0x8EA2A8EA\t0x866E\n0x8EA2A8EB\t0x8C56\n0x8EA2A8EC\t0x8FD2\n0x8EA2A8ED\t0x8FCB\n0x8EA2A8EE\t0x8FD3\n0x8EA2A8EF\t0x8FCD\n0x8EA2A8F0\t0x8FD6\n0x8EA2A8F1\t0x8FD5\n0x8EA2A8F2\t0x8FD7\n0x8EA2A8F3\t0x90B2\n0x8EA2A8F4\t0x90B4\n0x8EA2A8F5\t0x90AF\n0x8EA2A8F6\t0x90B3\n0x8EA2A8F7\t0x90B0\n0x8EA2A8F8\t0x9639\n0x8EA2A8F9\t0x963D\n0x8EA2A8FA\t0x963C\n0x8EA2A8FB\t0x963A\n0x8EA2A8FC\t0x9643\n0x8EA2A8FD\t0x4FCD\n0x8EA2A8FE\t0x4FC5\n0x8EA2A9A1\t0x4FD3\n0x8EA2A9A2\t0x4FB2\n0x8EA2A9A3\t0x4FC9\n0x8EA2A9A4\t0x4FCB\n0x8EA2A9A5\t0x4FC1\n0x8EA2A9A6\t0x4FD4\n0x8EA2A9A7\t0x4FDC\n0x8EA2A9A8\t0x4FD9\n0x8EA2A9A9\t0x4FBB\n0x8EA2A9AA\t0x4FB3\n0x8EA2A9AB\t0x4FDB\n0x8EA2A9AC\t0x4FC7\n0x8EA2A9AD\t0x4FD6\n0x8EA2A9AE\t0x4FBA\n0x8EA2A9AF\t0x4FC0\n0x8EA2A9B0\t0x4FB9\n0x8EA2A9B1\t0x4FEC\n0x8EA2A9B2\t0x5244\n0x8EA2A9B3\t0x5249\n0x8EA2A9B4\t0x52C0\n0x8EA2A9B5\t0x52C2\n0x8EA2A9B6\t0x533D\n0x8EA2A9B7\t0x537C\n0x8EA2A9B8\t0x5397\n0x8EA2A9B9\t0x5396\n0x8EA2A9BA\t0x5399\n0x8EA2A9BB\t0x5398\n0x8EA2A9BC\t0x54BA\n0x8EA2A9BD\t0x54A1\n0x8EA2A9BE\t0x54AD\n0x8EA2A9BF\t0x54A5\n0x8EA2A9C0\t0x54CF\n0x8EA2A9C1\t0x54C3\n0x8EA2A9C2\t0x830D\n0x8EA2A9C3\t0x54B7\n0x8EA2A9C4\t0x54AE\n0x8EA2A9C5\t0x54D6\n0x8EA2A9C6\t0x54B6\n0x8EA2A9C7\t0x54C5\n0x8EA2A9C8\t0x54C6\n0x8EA2A9C9\t0x54A0\n0x8EA2A9CA\t0x5470\n0x8EA2A9CB\t0x54BC\n0x8EA2A9CC\t0x54A2\n0x8EA2A9CD\t0x54BE\n0x8EA2A9CE\t0x5472\n0x8EA2A9CF\t0x54DE\n0x8EA2A9D0\t0x54B0\n0x8EA2A9D1\t0x57B5\n0x8EA2A9D2\t0x579E\n0x8EA2A9D3\t0x579F\n0x8EA2A9D4\t0x57A4\n0x8EA2A9D5\t0x578C\n0x8EA2A9D6\t0x5797\n0x8EA2A9D7\t0x579D\n0x8EA2A9D8\t0x579B\n0x8EA2A9D9\t0x5794\n0x8EA2A9DA\t0x5798\n0x8EA2A9DB\t0x578F\n0x8EA2A9DC\t0x5799\n0x8EA2A9DD\t0x57A5\n0x8EA2A9DE\t0x579A\n0x8EA2A9DF\t0x5795\n0x8EA2A9E0\t0x58F4\n0x8EA2A9E1\t0x590D\n0x8EA2A9E2\t0x5953\n0x8EA2A9E3\t0x59E1\n0x8EA2A9E4\t0x59DE\n0x8EA2A9E5\t0x59EE\n0x8EA2A9E6\t0x5A00\n0x8EA2A9E7\t0x59F1\n0x8EA2A9E8\t0x59DD\n0x8EA2A9E9\t0x59FA\n0x8EA2A9EA\t0x59FD\n0x8EA2A9EB\t0x59FC\n0x8EA2A9EC\t0x59F6\n0x8EA2A9ED\t0x59E4\n0x8EA2A9EE\t0x59F2\n0x8EA2A9EF\t0x59F7\n0x8EA2A9F0\t0x59DB\n0x8EA2A9F1\t0x59E9\n0x8EA2A9F2\t0x59F3\n0x8EA2A9F3\t0x59F5\n0x8EA2A9F4\t0x59E0\n0x8EA2A9F5\t0x59FE\n0x8EA2A9F6\t0x59F4\n0x8EA2A9F7\t0x59ED\n0x8EA2A9F8\t0x5BA8\n0x8EA2A9F9\t0x5C4C\n0x8EA2A9FA\t0x5CD0\n0x8EA2A9FB\t0x5CD8\n0x8EA2A9FC\t0x5CCC\n0x8EA2A9FD\t0x5CD7\n0x8EA2A9FE\t0x5CCB\n0x8EA2AAA1\t0x5CDB\n0x8EA2AAA2\t0x5CDE\n0x8EA2AAA3\t0x5CDA\n0x8EA2AAA4\t0x5CC9\n0x8EA2AAA5\t0x5CC7\n0x8EA2AAA6\t0x5CCA\n0x8EA2AAA7\t0x5CD6\n0x8EA2AAA8\t0x5CD3\n0x8EA2AAA9\t0x5CD4\n0x8EA2AAAA\t0x5CCF\n0x8EA2AAAB\t0x5CC8\n0x8EA2AAAC\t0x5CC6\n0x8EA2AAAD\t0x5CCE\n0x8EA2AAAE\t0x5CDF\n0x8EA2AAAF\t0x5CF8\n0x8EA2AAB0\t0x5DF9\n0x8EA2AAB1\t0x5E21\n0x8EA2AAB2\t0x5E22\n0x8EA2AAB3\t0x5E23\n0x8EA2AAB4\t0x5E20\n0x8EA2AAB5\t0x5E24\n0x8EA2AAB6\t0x5EB0\n0x8EA2AAB7\t0x5EA4\n0x8EA2AAB8\t0x5EA2\n0x8EA2AAB9\t0x5E9B\n0x8EA2AABA\t0x5EA3\n0x8EA2AABB\t0x5EA5\n0x8EA2AABC\t0x5F07\n0x8EA2AABD\t0x5F2E\n0x8EA2AABE\t0x5F56\n0x8EA2AABF\t0x5F86\n0x8EA2AAC0\t0x6037\n0x8EA2AAC1\t0x6039\n0x8EA2AAC2\t0x6054\n0x8EA2AAC3\t0x6072\n0x8EA2AAC4\t0x605E\n0x8EA2AAC5\t0x6045\n0x8EA2AAC6\t0x6053\n0x8EA2AAC7\t0x6047\n0x8EA2AAC8\t0x6049\n0x8EA2AAC9\t0x605B\n0x8EA2AACA\t0x604C\n0x8EA2AACB\t0x6040\n0x8EA2AACC\t0x6042\n0x8EA2AACD\t0x605F\n0x8EA2AACE\t0x6024\n0x8EA2AACF\t0x6044\n0x8EA2AAD0\t0x6058\n0x8EA2AAD1\t0x6066\n0x8EA2AAD2\t0x606E\n0x8EA2AAD3\t0x6242\n0x8EA2AAD4\t0x6243\n0x8EA2AAD5\t0x62CF\n0x8EA2AAD6\t0x630D\n0x8EA2AAD7\t0x630B\n0x8EA2AAD8\t0x62F5\n0x8EA2AAD9\t0x630E\n0x8EA2AADA\t0x6303\n0x8EA2AADB\t0x62EB\n0x8EA2AADC\t0x62F9\n0x8EA2AADD\t0x630F\n0x8EA2AADE\t0x630C\n0x8EA2AADF\t0x62F8\n0x8EA2AAE0\t0x62F6\n0x8EA2AAE1\t0x6300\n0x8EA2AAE2\t0x6313\n0x8EA2AAE3\t0x6314\n0x8EA2AAE4\t0x62FA\n0x8EA2AAE5\t0x6315\n0x8EA2AAE6\t0x62FB\n0x8EA2AAE7\t0x62F0\n0x8EA2AAE8\t0x6541\n0x8EA2AAE9\t0x6543\n0x8EA2AAEA\t0x65AA\n0x8EA2AAEB\t0x65BF\n0x8EA2AAEC\t0x6636\n0x8EA2AAED\t0x6621\n0x8EA2AAEE\t0x6632\n0x8EA2AAEF\t0x6635\n0x8EA2AAF0\t0x661C\n0x8EA2AAF1\t0x6626\n0x8EA2AAF2\t0x6622\n0x8EA2AAF3\t0x6633\n0x8EA2AAF4\t0x662B\n0x8EA2AAF5\t0x663A\n0x8EA2AAF6\t0x661D\n0x8EA2AAF7\t0x6634\n0x8EA2AAF8\t0x6639\n0x8EA2AAF9\t0x662E\n0x8EA2AAFA\t0x670F\n0x8EA2AAFB\t0x6710\n0x8EA2AAFC\t0x67C1\n0x8EA2AAFD\t0x67F2\n0x8EA2AAFE\t0x67C8\n0x8EA2ABA1\t0x67BA\n0x8EA2ABA2\t0x67DC\n0x8EA2ABA3\t0x67BB\n0x8EA2ABA4\t0x67F8\n0x8EA2ABA5\t0x67D8\n0x8EA2ABA6\t0x67C0\n0x8EA2ABA7\t0x67B7\n0x8EA2ABA8\t0x67C5\n0x8EA2ABA9\t0x67EB\n0x8EA2ABAA\t0x67E4\n0x8EA2ABAB\t0x67DF\n0x8EA2ABAC\t0x67B5\n0x8EA2ABAD\t0x67CD\n0x8EA2ABAE\t0x67B3\n0x8EA2ABAF\t0x67F7\n0x8EA2ABB0\t0x67F6\n0x8EA2ABB1\t0x67EE\n0x8EA2ABB2\t0x67E3\n0x8EA2ABB3\t0x67C2\n0x8EA2ABB4\t0x67B9\n0x8EA2ABB5\t0x67CE\n0x8EA2ABB6\t0x67E7\n0x8EA2ABB7\t0x67F0\n0x8EA2ABB8\t0x67B2\n0x8EA2ABB9\t0x67FC\n0x8EA2ABBA\t0x67C6\n0x8EA2ABBB\t0x67ED\n0x8EA2ABBC\t0x67CC\n0x8EA2ABBD\t0x67AE\n0x8EA2ABBE\t0x67E6\n0x8EA2ABBF\t0x67DB\n0x8EA2ABC0\t0x67FA\n0x8EA2ABC1\t0x67C9\n0x8EA2ABC2\t0x67CA\n0x8EA2ABC3\t0x67C3\n0x8EA2ABC4\t0x67EA\n0x8EA2ABC5\t0x67CB\n0x8EA2ABC6\t0x6B28\n0x8EA2ABC7\t0x6B82\n0x8EA2ABC8\t0x6B84\n0x8EA2ABC9\t0x6BB6\n0x8EA2ABCA\t0x6BD6\n0x8EA2ABCB\t0x6BD8\n0x8EA2ABCC\t0x6BE0\n0x8EA2ABCD\t0x6C20\n0x8EA2ABCE\t0x6C21\n0x8EA2ABCF\t0x6D28\n0x8EA2ABD0\t0x6D34\n0x8EA2ABD1\t0x6D2D\n0x8EA2ABD2\t0x6D1F\n0x8EA2ABD3\t0x6D3C\n0x8EA2ABD4\t0x6D3F\n0x8EA2ABD5\t0x6D12\n0x8EA2ABD6\t0x6D0A\n0x8EA2ABD7\t0x6CDA\n0x8EA2ABD8\t0x6D33\n0x8EA2ABD9\t0x6D04\n0x8EA2ABDA\t0x6D19\n0x8EA2ABDB\t0x6D3A\n0x8EA2ABDC\t0x6D1A\n0x8EA2ABDD\t0x6D11\n0x8EA2ABDE\t0x6D00\n0x8EA2ABDF\t0x6D1D\n0x8EA2ABE0\t0x6D42\n0x8EA2ABE1\t0x6D01\n0x8EA2ABE2\t0x6D18\n0x8EA2ABE3\t0x6D37\n0x8EA2ABE4\t0x6D03\n0x8EA2ABE5\t0x6D0F\n0x8EA2ABE6\t0x6D40\n0x8EA2ABE7\t0x6D07\n0x8EA2ABE8\t0x6D20\n0x8EA2ABE9\t0x6D2C\n0x8EA2ABEA\t0x6D08\n0x8EA2ABEB\t0x6D22\n0x8EA2ABEC\t0x6D09\n0x8EA2ABED\t0x6D10\n0x8EA2ABEE\t0x70B7\n0x8EA2ABEF\t0x709F\n0x8EA2ABF0\t0x70BE\n0x8EA2ABF1\t0x70B1\n0x8EA2ABF2\t0x70B0\n0x8EA2ABF3\t0x70A1\n0x8EA2ABF4\t0x70B4\n0x8EA2ABF5\t0x70B5\n0x8EA2ABF6\t0x70A9\n0x8EA2ABF7\t0x7241\n0x8EA2ABF8\t0x7249\n0x8EA2ABF9\t0x724A\n0x8EA2ABFA\t0x726C\n0x8EA2ABFB\t0x7270\n0x8EA2ABFC\t0x7273\n0x8EA2ABFD\t0x726E\n0x8EA2ABFE\t0x72CA\n0x8EA2ACA1\t0x72E4\n0x8EA2ACA2\t0x72E8\n0x8EA2ACA3\t0x72EB\n0x8EA2ACA4\t0x72DF\n0x8EA2ACA5\t0x72EA\n0x8EA2ACA6\t0x72E6\n0x8EA2ACA7\t0x72E3\n0x8EA2ACA8\t0x7385\n0x8EA2ACA9\t0x73CC\n0x8EA2ACAA\t0x73C2\n0x8EA2ACAB\t0x73C8\n0x8EA2ACAC\t0x73C5\n0x8EA2ACAD\t0x73B9\n0x8EA2ACAE\t0x73B6\n0x8EA2ACAF\t0x73B5\n0x8EA2ACB0\t0x73B4\n0x8EA2ACB1\t0x73EB\n0x8EA2ACB2\t0x73BF\n0x8EA2ACB3\t0x73C7\n0x8EA2ACB4\t0x73BE\n0x8EA2ACB5\t0x73C3\n0x8EA2ACB6\t0x73C6\n0x8EA2ACB7\t0x73B8\n0x8EA2ACB8\t0x73CB\n0x8EA2ACB9\t0x74EC\n0x8EA2ACBA\t0x74EE\n0x8EA2ACBB\t0x752E\n0x8EA2ACBC\t0x7547\n0x8EA2ACBD\t0x7548\n0x8EA2ACBE\t0x75A7\n0x8EA2ACBF\t0x75AA\n0x8EA2ACC0\t0x7679\n0x8EA2ACC1\t0x76C4\n0x8EA2ACC2\t0x7708\n0x8EA2ACC3\t0x7703\n0x8EA2ACC4\t0x7704\n0x8EA2ACC5\t0x7705\n0x8EA2ACC6\t0x770A\n0x8EA2ACC7\t0x76F7\n0x8EA2ACC8\t0x76FB\n0x8EA2ACC9\t0x76FA\n0x8EA2ACCA\t0x77E7\n0x8EA2ACCB\t0x77E8\n0x8EA2ACCC\t0x7806\n0x8EA2ACCD\t0x7811\n0x8EA2ACCE\t0x7812\n0x8EA2ACCF\t0x7805\n0x8EA2ACD0\t0x7810\n0x8EA2ACD1\t0x780F\n0x8EA2ACD2\t0x780E\n0x8EA2ACD3\t0x7809\n0x8EA2ACD4\t0x7803\n0x8EA2ACD5\t0x7813\n0x8EA2ACD6\t0x794A\n0x8EA2ACD7\t0x794C\n0x8EA2ACD8\t0x794B\n0x8EA2ACD9\t0x7945\n0x8EA2ACDA\t0x7944\n0x8EA2ACDB\t0x79D5\n0x8EA2ACDC\t0x79CD\n0x8EA2ACDD\t0x79CF\n0x8EA2ACDE\t0x79D6\n0x8EA2ACDF\t0x79CE\n0x8EA2ACE0\t0x7A80\n0x8EA2ACE1\t0x7A7E\n0x8EA2ACE2\t0x7AD1\n0x8EA2ACE3\t0x7B00\n0x8EA2ACE4\t0x7B01\n0x8EA2ACE5\t0x7C7A\n0x8EA2ACE6\t0x7C78\n0x8EA2ACE7\t0x7C79\n0x8EA2ACE8\t0x7C7F\n0x8EA2ACE9\t0x7C80\n0x8EA2ACEA\t0x7C81\n0x8EA2ACEB\t0x7D03\n0x8EA2ACEC\t0x7D08\n0x8EA2ACED\t0x7D01\n0x8EA2ACEE\t0x7F58\n0x8EA2ACEF\t0x7F91\n0x8EA2ACF0\t0x7F8D\n0x8EA2ACF1\t0x7FBE\n0x8EA2ACF2\t0x8007\n0x8EA2ACF3\t0x800E\n0x8EA2ACF4\t0x800F\n0x8EA2ACF5\t0x8014\n0x8EA2ACF6\t0x8037\n0x8EA2ACF7\t0x80D8\n0x8EA2ACF8\t0x80C7\n0x8EA2ACF9\t0x80E0\n0x8EA2ACFA\t0x80D1\n0x8EA2ACFB\t0x80C8\n0x8EA2ACFC\t0x80C2\n0x8EA2ACFD\t0x80D0\n0x8EA2ACFE\t0x80C5\n0x8EA2ADA1\t0x80E3\n0x8EA2ADA2\t0x80D9\n0x8EA2ADA3\t0x80DC\n0x8EA2ADA4\t0x80CA\n0x8EA2ADA5\t0x80D5\n0x8EA2ADA6\t0x80C9\n0x8EA2ADA7\t0x80CF\n0x8EA2ADA8\t0x80D7\n0x8EA2ADA9\t0x80E6\n0x8EA2ADAA\t0x80CD\n0x8EA2ADAB\t0x81FF\n0x8EA2ADAC\t0x8221\n0x8EA2ADAD\t0x8294\n0x8EA2ADAE\t0x82D9\n0x8EA2ADAF\t0x82FE\n0x8EA2ADB0\t0x82F9\n0x8EA2ADB1\t0x8307\n0x8EA2ADB2\t0x82E8\n0x8EA2ADB3\t0x8300\n0x8EA2ADB4\t0x82D5\n0x8EA2ADB5\t0x833A\n0x8EA2ADB6\t0x82EB\n0x8EA2ADB7\t0x82D6\n0x8EA2ADB8\t0x82F4\n0x8EA2ADB9\t0x82EC\n0x8EA2ADBA\t0x82E1\n0x8EA2ADBB\t0x82F2\n0x8EA2ADBC\t0x82F5\n0x8EA2ADBD\t0x830C\n0x8EA2ADBE\t0x82FB\n0x8EA2ADBF\t0x82F6\n0x8EA2ADC0\t0x82F0\n0x8EA2ADC1\t0x82EA\n0x8EA2ADC2\t0x82E4\n0x8EA2ADC3\t0x82E0\n0x8EA2ADC4\t0x82FA\n0x8EA2ADC5\t0x82F3\n0x8EA2ADC6\t0x82ED\n0x8EA2ADC7\t0x8677\n0x8EA2ADC8\t0x8674\n0x8EA2ADC9\t0x867C\n0x8EA2ADCA\t0x8673\n0x8EA2ADCB\t0x8841\n0x8EA2ADCC\t0x884E\n0x8EA2ADCD\t0x8867\n0x8EA2ADCE\t0x886A\n0x8EA2ADCF\t0x8869\n0x8EA2ADD0\t0x89D3\n0x8EA2ADD1\t0x8A04\n0x8EA2ADD2\t0x8A07\n0x8EA2ADD3\t0x8D72\n0x8EA2ADD4\t0x8FE3\n0x8EA2ADD5\t0x8FE1\n0x8EA2ADD6\t0x8FEE\n0x8EA2ADD7\t0x8FE0\n0x8EA2ADD8\t0x90F1\n0x8EA2ADD9\t0x90BD\n0x8EA2ADDA\t0x90BF\n0x8EA2ADDB\t0x90D5\n0x8EA2ADDC\t0x90C5\n0x8EA2ADDD\t0x90BE\n0x8EA2ADDE\t0x90C7\n0x8EA2ADDF\t0x90CB\n0x8EA2ADE0\t0x90C8\n0x8EA2ADE1\t0x91D4\n0x8EA2ADE2\t0x91D3\n0x8EA2ADE3\t0x9654\n0x8EA2ADE4\t0x964F\n0x8EA2ADE5\t0x9651\n0x8EA2ADE6\t0x9653\n0x8EA2ADE7\t0x964A\n0x8EA2ADE8\t0x964E\n0x8EA2ADE9\t0x501E\n0x8EA2ADEA\t0x5005\n0x8EA2ADEB\t0x5007\n0x8EA2ADEC\t0x5013\n0x8EA2ADED\t0x5022\n0x8EA2ADEE\t0x5030\n0x8EA2ADEF\t0x501B\n0x8EA2ADF0\t0x4FF5\n0x8EA2ADF1\t0x4FF4\n0x8EA2ADF2\t0x5033\n0x8EA2ADF3\t0x5037\n0x8EA2ADF4\t0x502C\n0x8EA2ADF5\t0x4FF6\n0x8EA2ADF6\t0x4FF7\n0x8EA2ADF7\t0x5017\n0x8EA2ADF8\t0x501C\n0x8EA2ADF9\t0x5020\n0x8EA2ADFA\t0x5027\n0x8EA2ADFB\t0x5035\n0x8EA2ADFC\t0x502F\n0x8EA2ADFD\t0x5031\n0x8EA2ADFE\t0x500E\n0x8EA2AEA1\t0x515A\n0x8EA2AEA2\t0x5194\n0x8EA2AEA3\t0x5193\n0x8EA2AEA4\t0x51CA\n0x8EA2AEA5\t0x51C4\n0x8EA2AEA6\t0x51C5\n0x8EA2AEA7\t0x51C8\n0x8EA2AEA8\t0x51CE\n0x8EA2AEA9\t0x5261\n0x8EA2AEAA\t0x525A\n0x8EA2AEAB\t0x5252\n0x8EA2AEAC\t0x525E\n0x8EA2AEAD\t0x525F\n0x8EA2AEAE\t0x5255\n0x8EA2AEAF\t0x5262\n0x8EA2AEB0\t0x52CD\n0x8EA2AEB1\t0x530E\n0x8EA2AEB2\t0x539E\n0x8EA2AEB3\t0x5526\n0x8EA2AEB4\t0x54E2\n0x8EA2AEB5\t0x5517\n0x8EA2AEB6\t0x5512\n0x8EA2AEB7\t0x54E7\n0x8EA2AEB8\t0x54F3\n0x8EA2AEB9\t0x54E4\n0x8EA2AEBA\t0x551A\n0x8EA2AEBB\t0x54FF\n0x8EA2AEBC\t0x5504\n0x8EA2AEBD\t0x5508\n0x8EA2AEBE\t0x54EB\n0x8EA2AEBF\t0x5511\n0x8EA2AEC0\t0x5505\n0x8EA2AEC1\t0x54F1\n0x8EA2AEC2\t0x550A\n0x8EA2AEC3\t0x54FB\n0x8EA2AEC4\t0x54F7\n0x8EA2AEC5\t0x54F8\n0x8EA2AEC6\t0x54E0\n0x8EA2AEC7\t0x550E\n0x8EA2AEC8\t0x5503\n0x8EA2AEC9\t0x550B\n0x8EA2AECA\t0x5701\n0x8EA2AECB\t0x5702\n0x8EA2AECC\t0x57CC\n0x8EA2AECD\t0x5832\n0x8EA2AECE\t0x57D5\n0x8EA2AECF\t0x57D2\n0x8EA2AED0\t0x57BA\n0x8EA2AED1\t0x57C6\n0x8EA2AED2\t0x57BD\n0x8EA2AED3\t0x57BC\n0x8EA2AED4\t0x57B8\n0x8EA2AED5\t0x57B6\n0x8EA2AED6\t0x57BF\n0x8EA2AED7\t0x57C7\n0x8EA2AED8\t0x57D0\n0x8EA2AED9\t0x57B9\n0x8EA2AEDA\t0x57C1\n0x8EA2AEDB\t0x590E\n0x8EA2AEDC\t0x594A\n0x8EA2AEDD\t0x5A19\n0x8EA2AEDE\t0x5A16\n0x8EA2AEDF\t0x5A2D\n0x8EA2AEE0\t0x5A2E\n0x8EA2AEE1\t0x5A15\n0x8EA2AEE2\t0x5A0F\n0x8EA2AEE3\t0x5A17\n0x8EA2AEE4\t0x5A0A\n0x8EA2AEE5\t0x5A1E\n0x8EA2AEE6\t0x5A33\n0x8EA2AEE7\t0x5B6C\n0x8EA2AEE8\t0x5BA7\n0x8EA2AEE9\t0x5BAD\n0x8EA2AEEA\t0x5BAC\n0x8EA2AEEB\t0x5C03\n0x8EA2AEEC\t0x5C56\n0x8EA2AEED\t0x5C54\n0x8EA2AEEE\t0x5CEC\n0x8EA2AEEF\t0x5CFF\n0x8EA2AEF0\t0x5CEE\n0x8EA2AEF1\t0x5CF1\n0x8EA2AEF2\t0x5CF7\n0x8EA2AEF3\t0x5D00\n0x8EA2AEF4\t0x5CF9\n0x8EA2AEF5\t0x5E29\n0x8EA2AEF6\t0x5E28\n0x8EA2AEF7\t0x5EA8\n0x8EA2AEF8\t0x5EAE\n0x8EA2AEF9\t0x5EAA\n0x8EA2AEFA\t0x5EAC\n0x8EA2AEFB\t0x5F33\n0x8EA2AEFC\t0x5F30\n0x8EA2AEFD\t0x5F67\n0x8EA2AEFE\t0x605D\n0x8EA2AFA1\t0x605A\n0x8EA2AFA2\t0x6067\n0x8EA2AFA3\t0x6041\n0x8EA2AFA4\t0x60A2\n0x8EA2AFA5\t0x6088\n0x8EA2AFA6\t0x6080\n0x8EA2AFA7\t0x6092\n0x8EA2AFA8\t0x6081\n0x8EA2AFA9\t0x609D\n0x8EA2AFAA\t0x6083\n0x8EA2AFAB\t0x6095\n0x8EA2AFAC\t0x609B\n0x8EA2AFAD\t0x6097\n0x8EA2AFAE\t0x6087\n0x8EA2AFAF\t0x609C\n0x8EA2AFB0\t0x608E\n0x8EA2AFB1\t0x6219\n0x8EA2AFB2\t0x6246\n0x8EA2AFB3\t0x62F2\n0x8EA2AFB4\t0x6310\n0x8EA2AFB5\t0x6356\n0x8EA2AFB6\t0x632C\n0x8EA2AFB7\t0x6344\n0x8EA2AFB8\t0x6345\n0x8EA2AFB9\t0x6336\n0x8EA2AFBA\t0x6343\n0x8EA2AFBB\t0x63E4\n0x8EA2AFBC\t0x6339\n0x8EA2AFBD\t0x634B\n0x8EA2AFBE\t0x634A\n0x8EA2AFBF\t0x633C\n0x8EA2AFC0\t0x6329\n0x8EA2AFC1\t0x6341\n0x8EA2AFC2\t0x6334\n0x8EA2AFC3\t0x6358\n0x8EA2AFC4\t0x6354\n0x8EA2AFC5\t0x6359\n0x8EA2AFC6\t0x632D\n0x8EA2AFC7\t0x6347\n0x8EA2AFC8\t0x6333\n0x8EA2AFC9\t0x635A\n0x8EA2AFCA\t0x6351\n0x8EA2AFCB\t0x6338\n0x8EA2AFCC\t0x6357\n0x8EA2AFCD\t0x6340\n0x8EA2AFCE\t0x6348\n0x8EA2AFCF\t0x654A\n0x8EA2AFD0\t0x6546\n0x8EA2AFD1\t0x65C6\n0x8EA2AFD2\t0x65C3\n0x8EA2AFD3\t0x65C4\n0x8EA2AFD4\t0x65C2\n0x8EA2AFD5\t0x664A\n0x8EA2AFD6\t0x665F\n0x8EA2AFD7\t0x6647\n0x8EA2AFD8\t0x6651\n0x8EA2AFD9\t0x6712\n0x8EA2AFDA\t0x6713\n0x8EA2AFDB\t0x681F\n0x8EA2AFDC\t0x681A\n0x8EA2AFDD\t0x6849\n0x8EA2AFDE\t0x6832\n0x8EA2AFDF\t0x6833\n0x8EA2AFE0\t0x683B\n0x8EA2AFE1\t0x684B\n0x8EA2AFE2\t0x684F\n0x8EA2AFE3\t0x6816\n0x8EA2AFE4\t0x6831\n0x8EA2AFE5\t0x681C\n0x8EA2AFE6\t0x6835\n0x8EA2AFE7\t0x682B\n0x8EA2AFE8\t0x682D\n0x8EA2AFE9\t0x682F\n0x8EA2AFEA\t0x684E\n0x8EA2AFEB\t0x6844\n0x8EA2AFEC\t0x6834\n0x8EA2AFED\t0x681D\n0x8EA2AFEE\t0x6812\n0x8EA2AFEF\t0x6814\n0x8EA2AFF0\t0x6826\n0x8EA2AFF1\t0x6828\n0x8EA2AFF2\t0x682E\n0x8EA2AFF3\t0x684D\n0x8EA2AFF4\t0x683A\n0x8EA2AFF5\t0x6825\n0x8EA2AFF6\t0x6820\n0x8EA2AFF7\t0x6B2C\n0x8EA2AFF8\t0x6B2F\n0x8EA2AFF9\t0x6B2D\n0x8EA2AFFA\t0x6B31\n0x8EA2AFFB\t0x6B34\n0x8EA2AFFC\t0x6B6D\n0x8EA2AFFD\t0x8082\n0x8EA2AFFE\t0x6B88\n0x8EA2B0A1\t0x6BE6\n0x8EA2B0A2\t0x6BE4\n0x8EA2B0A3\t0x6BE8\n0x8EA2B0A4\t0x6BE3\n0x8EA2B0A5\t0x6BE2\n0x8EA2B0A6\t0x6BE7\n0x8EA2B0A7\t0x6C25\n0x8EA2B0A8\t0x6D7A\n0x8EA2B0A9\t0x6D63\n0x8EA2B0AA\t0x6D64\n0x8EA2B0AB\t0x6D76\n0x8EA2B0AC\t0x6D0D\n0x8EA2B0AD\t0x6D61\n0x8EA2B0AE\t0x6D92\n0x8EA2B0AF\t0x6D58\n0x8EA2B0B0\t0x6D62\n0x8EA2B0B1\t0x6D6D\n0x8EA2B0B2\t0x6D6F\n0x8EA2B0B3\t0x6D91\n0x8EA2B0B4\t0x6D8D\n0x8EA2B0B5\t0x6DEF\n0x8EA2B0B6\t0x6D7F\n0x8EA2B0B7\t0x6D86\n0x8EA2B0B8\t0x6D5E\n0x8EA2B0B9\t0x6D67\n0x8EA2B0BA\t0x6D60\n0x8EA2B0BB\t0x6D97\n0x8EA2B0BC\t0x6D70\n0x8EA2B0BD\t0x6D7C\n0x8EA2B0BE\t0x6D5F\n0x8EA2B0BF\t0x6D82\n0x8EA2B0C0\t0x6D98\n0x8EA2B0C1\t0x6D2F\n0x8EA2B0C2\t0x6D68\n0x8EA2B0C3\t0x6D8B\n0x8EA2B0C4\t0x6D7E\n0x8EA2B0C5\t0x6D80\n0x8EA2B0C6\t0x6D84\n0x8EA2B0C7\t0x6D16\n0x8EA2B0C8\t0x6D83\n0x8EA2B0C9\t0x6D7B\n0x8EA2B0CA\t0x6D7D\n0x8EA2B0CB\t0x6D75\n0x8EA2B0CC\t0x6D90\n0x8EA2B0CD\t0x70DC\n0x8EA2B0CE\t0x70D3\n0x8EA2B0CF\t0x70D1\n0x8EA2B0D0\t0x70DD\n0x8EA2B0D1\t0x70CB\n0x8EA2B0D2\t0x7F39\n0x8EA2B0D3\t0x70E2\n0x8EA2B0D4\t0x70D7\n0x8EA2B0D5\t0x70D2\n0x8EA2B0D6\t0x70DE\n0x8EA2B0D7\t0x70E0\n0x8EA2B0D8\t0x70D4\n0x8EA2B0D9\t0x70CD\n0x8EA2B0DA\t0x70C5\n0x8EA2B0DB\t0x70C6\n0x8EA2B0DC\t0x70C7\n0x8EA2B0DD\t0x70DA\n0x8EA2B0DE\t0x70CE\n0x8EA2B0DF\t0x70E1\n0x8EA2B0E0\t0x7242\n0x8EA2B0E1\t0x7278\n0x8EA2B0E2\t0x7277\n0x8EA2B0E3\t0x7276\n0x8EA2B0E4\t0x7300\n0x8EA2B0E5\t0x72FA\n0x8EA2B0E6\t0x72F4\n0x8EA2B0E7\t0x72FE\n0x8EA2B0E8\t0x72F6\n0x8EA2B0E9\t0x72F3\n0x8EA2B0EA\t0x72FB\n0x8EA2B0EB\t0x7301\n0x8EA2B0EC\t0x73D3\n0x8EA2B0ED\t0x73D9\n0x8EA2B0EE\t0x73E5\n0x8EA2B0EF\t0x73D6\n0x8EA2B0F0\t0x73BC\n0x8EA2B0F1\t0x73E7\n0x8EA2B0F2\t0x73E3\n0x8EA2B0F3\t0x73E9\n0x8EA2B0F4\t0x73DC\n0x8EA2B0F5\t0x73D2\n0x8EA2B0F6\t0x73DB\n0x8EA2B0F7\t0x73D4\n0x8EA2B0F8\t0x73DD\n0x8EA2B0F9\t0x73DA\n0x8EA2B0FA\t0x73D7\n0x8EA2B0FB\t0x73D8\n0x8EA2B0FC\t0x73E8\n0x8EA2B0FD\t0x74DE\n0x8EA2B0FE\t0x74DF\n0x8EA2B1A1\t0x74F4\n0x8EA2B1A2\t0x74F5\n0x8EA2B1A3\t0x7521\n0x8EA2B1A4\t0x755B\n0x8EA2B1A5\t0x755F\n0x8EA2B1A6\t0x75B0\n0x8EA2B1A7\t0x75C1\n0x8EA2B1A8\t0x75BB\n0x8EA2B1A9\t0x75C4\n0x8EA2B1AA\t0x75C0\n0x8EA2B1AB\t0x75BF\n0x8EA2B1AC\t0x75B6\n0x8EA2B1AD\t0x75BA\n0x8EA2B1AE\t0x768A\n0x8EA2B1AF\t0x76C9\n0x8EA2B1B0\t0x771D\n0x8EA2B1B1\t0x771B\n0x8EA2B1B2\t0x7710\n0x8EA2B1B3\t0x7713\n0x8EA2B1B4\t0x7712\n0x8EA2B1B5\t0x7723\n0x8EA2B1B6\t0x7711\n0x8EA2B1B7\t0x7715\n0x8EA2B1B8\t0x7719\n0x8EA2B1B9\t0x771A\n0x8EA2B1BA\t0x7722\n0x8EA2B1BB\t0x7727\n0x8EA2B1BC\t0x7823\n0x8EA2B1BD\t0x782C\n0x8EA2B1BE\t0x7822\n0x8EA2B1BF\t0x7835\n0x8EA2B1C0\t0x782F\n0x8EA2B1C1\t0x7828\n0x8EA2B1C2\t0x782E\n0x8EA2B1C3\t0x782B\n0x8EA2B1C4\t0x7821\n0x8EA2B1C5\t0x7829\n0x8EA2B1C6\t0x7833\n0x8EA2B1C7\t0x782A\n0x8EA2B1C8\t0x7831\n0x8EA2B1C9\t0x7954\n0x8EA2B1CA\t0x795B\n0x8EA2B1CB\t0x794F\n0x8EA2B1CC\t0x795C\n0x8EA2B1CD\t0x7953\n0x8EA2B1CE\t0x7952\n0x8EA2B1CF\t0x7951\n0x8EA2B1D0\t0x79EB\n0x8EA2B1D1\t0x79EC\n0x8EA2B1D2\t0x79E0\n0x8EA2B1D3\t0x79EE\n0x8EA2B1D4\t0x79ED\n0x8EA2B1D5\t0x79EA\n0x8EA2B1D6\t0x79DC\n0x8EA2B1D7\t0x79DE\n0x8EA2B1D8\t0x79DD\n0x8EA2B1D9\t0x7A86\n0x8EA2B1DA\t0x7A89\n0x8EA2B1DB\t0x7A85\n0x8EA2B1DC\t0x7A8B\n0x8EA2B1DD\t0x7A8C\n0x8EA2B1DE\t0x7A8A\n0x8EA2B1DF\t0x7A87\n0x8EA2B1E0\t0x7AD8\n0x8EA2B1E1\t0x7B10\n0x8EA2B1E2\t0x7B04\n0x8EA2B1E3\t0x7B13\n0x8EA2B1E4\t0x7B05\n0x8EA2B1E5\t0x7B0F\n0x8EA2B1E6\t0x7B08\n0x8EA2B1E7\t0x7B0A\n0x8EA2B1E8\t0x7B0E\n0x8EA2B1E9\t0x7B09\n0x8EA2B1EA\t0x7B12\n0x8EA2B1EB\t0x7C84\n0x8EA2B1EC\t0x7C91\n0x8EA2B1ED\t0x7C8A\n0x8EA2B1EE\t0x7C8C\n0x8EA2B1EF\t0x7C88\n0x8EA2B1F0\t0x7C8D\n0x8EA2B1F1\t0x7C85\n0x8EA2B1F2\t0x7D1E\n0x8EA2B1F3\t0x7D1D\n0x8EA2B1F4\t0x7D11\n0x8EA2B1F5\t0x7D0E\n0x8EA2B1F6\t0x7D18\n0x8EA2B1F7\t0x7D16\n0x8EA2B1F8\t0x7D13\n0x8EA2B1F9\t0x7D1F\n0x8EA2B1FA\t0x7D12\n0x8EA2B1FB\t0x7D0F\n0x8EA2B1FC\t0x7D0C\n0x8EA2B1FD\t0x7F5C\n0x8EA2B1FE\t0x7F61\n0x8EA2B2A1\t0x7F5E\n0x8EA2B2A2\t0x7F60\n0x8EA2B2A3\t0x7F5D\n0x8EA2B2A4\t0x7F5B\n0x8EA2B2A5\t0x7F96\n0x8EA2B2A6\t0x7F92\n0x8EA2B2A7\t0x7FC3\n0x8EA2B2A8\t0x7FC2\n0x8EA2B2A9\t0x7FC0\n0x8EA2B2AA\t0x8016\n0x8EA2B2AB\t0x803E\n0x8EA2B2AC\t0x8039\n0x8EA2B2AD\t0x80FA\n0x8EA2B2AE\t0x80F2\n0x8EA2B2AF\t0x80F9\n0x8EA2B2B0\t0x80F5\n0x8EA2B2B1\t0x8101\n0x8EA2B2B2\t0x80FB\n0x8EA2B2B3\t0x8100\n0x8EA2B2B4\t0x8201\n0x8EA2B2B5\t0x822F\n0x8EA2B2B6\t0x8225\n0x8EA2B2B7\t0x8333\n0x8EA2B2B8\t0x832D\n0x8EA2B2B9\t0x8344\n0x8EA2B2BA\t0x8319\n0x8EA2B2BB\t0x8351\n0x8EA2B2BC\t0x8325\n0x8EA2B2BD\t0x8356\n0x8EA2B2BE\t0x833F\n0x8EA2B2BF\t0x8341\n0x8EA2B2C0\t0x8326\n0x8EA2B2C1\t0x831C\n0x8EA2B2C2\t0x8322\n0x8EA2B2C3\t0x8342\n0x8EA2B2C4\t0x834E\n0x8EA2B2C5\t0x831B\n0x8EA2B2C6\t0x832A\n0x8EA2B2C7\t0x8308\n0x8EA2B2C8\t0x833C\n0x8EA2B2C9\t0x834D\n0x8EA2B2CA\t0x8316\n0x8EA2B2CB\t0x8324\n0x8EA2B2CC\t0x8320\n0x8EA2B2CD\t0x8337\n0x8EA2B2CE\t0x832F\n0x8EA2B2CF\t0x8329\n0x8EA2B2D0\t0x8347\n0x8EA2B2D1\t0x8345\n0x8EA2B2D2\t0x834C\n0x8EA2B2D3\t0x8353\n0x8EA2B2D4\t0x831E\n0x8EA2B2D5\t0x832C\n0x8EA2B2D6\t0x834B\n0x8EA2B2D7\t0x8327\n0x8EA2B2D8\t0x8348\n0x8EA2B2D9\t0x8653\n0x8EA2B2DA\t0x8652\n0x8EA2B2DB\t0x86A2\n0x8EA2B2DC\t0x86A8\n0x8EA2B2DD\t0x8696\n0x8EA2B2DE\t0x868D\n0x8EA2B2DF\t0x8691\n0x8EA2B2E0\t0x869E\n0x8EA2B2E1\t0x8687\n0x8EA2B2E2\t0x8697\n0x8EA2B2E3\t0x8686\n0x8EA2B2E4\t0x868B\n0x8EA2B2E5\t0x869A\n0x8EA2B2E6\t0x8685\n0x8EA2B2E7\t0x86A5\n0x8EA2B2E8\t0x8699\n0x8EA2B2E9\t0x86A1\n0x8EA2B2EA\t0x86A7\n0x8EA2B2EB\t0x8695\n0x8EA2B2EC\t0x8698\n0x8EA2B2ED\t0x868E\n0x8EA2B2EE\t0x869D\n0x8EA2B2EF\t0x8690\n0x8EA2B2F0\t0x8694\n0x8EA2B2F1\t0x8843\n0x8EA2B2F2\t0x8844\n0x8EA2B2F3\t0x886D\n0x8EA2B2F4\t0x8875\n0x8EA2B2F5\t0x8876\n0x8EA2B2F6\t0x8872\n0x8EA2B2F7\t0x8880\n0x8EA2B2F8\t0x8871\n0x8EA2B2F9\t0x887F\n0x8EA2B2FA\t0x886F\n0x8EA2B2FB\t0x8883\n0x8EA2B2FC\t0x887E\n0x8EA2B2FD\t0x8874\n0x8EA2B2FE\t0x887C\n0x8EA2B3A1\t0x8A12\n0x8EA2B3A2\t0x8C47\n0x8EA2B3A3\t0x8C57\n0x8EA2B3A4\t0x8C7B\n0x8EA2B3A5\t0x8CA4\n0x8EA2B3A6\t0x8CA3\n0x8EA2B3A7\t0x8D76\n0x8EA2B3A8\t0x8D78\n0x8EA2B3A9\t0x8DB5\n0x8EA2B3AA\t0x8DB7\n0x8EA2B3AB\t0x8DB6\n0x8EA2B3AC\t0x8ED1\n0x8EA2B3AD\t0x8ED3\n0x8EA2B3AE\t0x8FFE\n0x8EA2B3AF\t0x8FF5\n0x8EA2B3B0\t0x9002\n0x8EA2B3B1\t0x8FFF\n0x8EA2B3B2\t0x8FFB\n0x8EA2B3B3\t0x9004\n0x8EA2B3B4\t0x8FFC\n0x8EA2B3B5\t0x8FF6\n0x8EA2B3B6\t0x90D6\n0x8EA2B3B7\t0x90E0\n0x8EA2B3B8\t0x90D9\n0x8EA2B3B9\t0x90DA\n0x8EA2B3BA\t0x90E3\n0x8EA2B3BB\t0x90DF\n0x8EA2B3BC\t0x90E5\n0x8EA2B3BD\t0x90D8\n0x8EA2B3BE\t0x90DB\n0x8EA2B3BF\t0x90D7\n0x8EA2B3C0\t0x90DC\n0x8EA2B3C1\t0x90E4\n0x8EA2B3C2\t0x9150\n0x8EA2B3C3\t0x914E\n0x8EA2B3C4\t0x914F\n0x8EA2B3C5\t0x91D5\n0x8EA2B3C6\t0x91E2\n0x8EA2B3C7\t0x91DA\n0x8EA2B3C8\t0x965C\n0x8EA2B3C9\t0x965F\n0x8EA2B3CA\t0x96BC\n0x8EA2B3CB\t0x98E3\n0x8EA2B3CC\t0x9ADF\n0x8EA2B3CD\t0x9B2F\n0x8EA2B3CE\t0x4E7F\n0x8EA2B3CF\t0x5070\n0x8EA2B3D0\t0x506A\n0x8EA2B3D1\t0x5061\n0x8EA2B3D2\t0x505E\n0x8EA2B3D3\t0x5060\n0x8EA2B3D4\t0x5053\n0x8EA2B3D5\t0x504B\n0x8EA2B3D6\t0x505D\n0x8EA2B3D7\t0x5072\n0x8EA2B3D8\t0x5048\n0x8EA2B3D9\t0x504D\n0x8EA2B3DA\t0x5041\n0x8EA2B3DB\t0x505B\n0x8EA2B3DC\t0x504A\n0x8EA2B3DD\t0x5062\n0x8EA2B3DE\t0x5015\n0x8EA2B3DF\t0x5045\n0x8EA2B3E0\t0x505F\n0x8EA2B3E1\t0x5069\n0x8EA2B3E2\t0x506B\n0x8EA2B3E3\t0x5063\n0x8EA2B3E4\t0x5064\n0x8EA2B3E5\t0x5046\n0x8EA2B3E6\t0x5040\n0x8EA2B3E7\t0x506E\n0x8EA2B3E8\t0x5073\n0x8EA2B3E9\t0x5057\n0x8EA2B3EA\t0x5051\n0x8EA2B3EB\t0x51D0\n0x8EA2B3EC\t0x526B\n0x8EA2B3ED\t0x526D\n0x8EA2B3EE\t0x526C\n0x8EA2B3EF\t0x526E\n0x8EA2B3F0\t0x52D6\n0x8EA2B3F1\t0x52D3\n0x8EA2B3F2\t0x532D\n0x8EA2B3F3\t0x539C\n0x8EA2B3F4\t0x5575\n0x8EA2B3F5\t0x5576\n0x8EA2B3F6\t0x553C\n0x8EA2B3F7\t0x554D\n0x8EA2B3F8\t0x5550\n0x8EA2B3F9\t0x5534\n0x8EA2B3FA\t0x552A\n0x8EA2B3FB\t0x5551\n0x8EA2B3FC\t0x5562\n0x8EA2B3FD\t0x5536\n0x8EA2B3FE\t0x5535\n0x8EA2B4A1\t0x5530\n0x8EA2B4A2\t0x5552\n0x8EA2B4A3\t0x5545\n0x8EA2B4A4\t0x550C\n0x8EA2B4A5\t0x5532\n0x8EA2B4A6\t0x5565\n0x8EA2B4A7\t0x554E\n0x8EA2B4A8\t0x5539\n0x8EA2B4A9\t0x5548\n0x8EA2B4AA\t0x552D\n0x8EA2B4AB\t0x553B\n0x8EA2B4AC\t0x5540\n0x8EA2B4AD\t0x554B\n0x8EA2B4AE\t0x570A\n0x8EA2B4AF\t0x5707\n0x8EA2B4B0\t0x57FB\n0x8EA2B4B1\t0x5814\n0x8EA2B4B2\t0x57E2\n0x8EA2B4B3\t0x57F6\n0x8EA2B4B4\t0x57DC\n0x8EA2B4B5\t0x57F4\n0x8EA2B4B6\t0x5800\n0x8EA2B4B7\t0x57ED\n0x8EA2B4B8\t0x57FD\n0x8EA2B4B9\t0x5808\n0x8EA2B4BA\t0x57F8\n0x8EA2B4BB\t0x580B\n0x8EA2B4BC\t0x57F3\n0x8EA2B4BD\t0x57CF\n0x8EA2B4BE\t0x5807\n0x8EA2B4BF\t0x57EE\n0x8EA2B4C0\t0x57E3\n0x8EA2B4C1\t0x57F2\n0x8EA2B4C2\t0x57E5\n0x8EA2B4C3\t0x57EC\n0x8EA2B4C4\t0x57E1\n0x8EA2B4C5\t0x580E\n0x8EA2B4C6\t0x57FC\n0x8EA2B4C7\t0x5810\n0x8EA2B4C8\t0x57E7\n0x8EA2B4C9\t0x5801\n0x8EA2B4CA\t0x580C\n0x8EA2B4CB\t0x57F1\n0x8EA2B4CC\t0x57E9\n0x8EA2B4CD\t0x57F0\n0x8EA2B4CE\t0x580D\n0x8EA2B4CF\t0x5804\n0x8EA2B4D0\t0x595C\n0x8EA2B4D1\t0x5A60\n0x8EA2B4D2\t0x5A58\n0x8EA2B4D3\t0x5A55\n0x8EA2B4D4\t0x5A67\n0x8EA2B4D5\t0x5A5E\n0x8EA2B4D6\t0x5A38\n0x8EA2B4D7\t0x5A35\n0x8EA2B4D8\t0x5A6D\n0x8EA2B4D9\t0x5A50\n0x8EA2B4DA\t0x5A5F\n0x8EA2B4DB\t0x5A65\n0x8EA2B4DC\t0x5A6C\n0x8EA2B4DD\t0x5A53\n0x8EA2B4DE\t0x5A64\n0x8EA2B4DF\t0x5A57\n0x8EA2B4E0\t0x5A43\n0x8EA2B4E1\t0x5A5D\n0x8EA2B4E2\t0x5A52\n0x8EA2B4E3\t0x5A44\n0x8EA2B4E4\t0x5A5B\n0x8EA2B4E5\t0x5A48\n0x8EA2B4E6\t0x5A8E\n0x8EA2B4E7\t0x5A3E\n0x8EA2B4E8\t0x5A4D\n0x8EA2B4E9\t0x5A39\n0x8EA2B4EA\t0x5A4C\n0x8EA2B4EB\t0x5A70\n0x8EA2B4EC\t0x5A69\n0x8EA2B4ED\t0x5A47\n0x8EA2B4EE\t0x5A51\n0x8EA2B4EF\t0x5A56\n0x8EA2B4F0\t0x5A42\n0x8EA2B4F1\t0x5A5C\n0x8EA2B4F2\t0x5B72\n0x8EA2B4F3\t0x5B6E\n0x8EA2B4F4\t0x5BC1\n0x8EA2B4F5\t0x5BC0\n0x8EA2B4F6\t0x5C59\n0x8EA2B4F7\t0x5D1E\n0x8EA2B4F8\t0x5D0B\n0x8EA2B4F9\t0x5D1D\n0x8EA2B4FA\t0x5D1A\n0x8EA2B4FB\t0x5D20\n0x8EA2B4FC\t0x5D0C\n0x8EA2B4FD\t0x5D28\n0x8EA2B4FE\t0x5D0D\n0x8EA2B5A1\t0x5D26\n0x8EA2B5A2\t0x5D25\n0x8EA2B5A3\t0x5D0F\n0x8EA2B5A4\t0x5D30\n0x8EA2B5A5\t0x5D12\n0x8EA2B5A6\t0x5D23\n0x8EA2B5A7\t0x5D1F\n0x8EA2B5A8\t0x5D2E\n0x8EA2B5A9\t0x5E3E\n0x8EA2B5AA\t0x5E34\n0x8EA2B5AB\t0x5EB1\n0x8EA2B5AC\t0x5EB4\n0x8EA2B5AD\t0x5EB9\n0x8EA2B5AE\t0x5EB2\n0x8EA2B5AF\t0x5EB3\n0x8EA2B5B0\t0x5F36\n0x8EA2B5B1\t0x5F38\n0x8EA2B5B2\t0x5F9B\n0x8EA2B5B3\t0x5F96\n0x8EA2B5B4\t0x5F9F\n0x8EA2B5B5\t0x608A\n0x8EA2B5B6\t0x6090\n0x8EA2B5B7\t0x6086\n0x8EA2B5B8\t0x60BE\n0x8EA2B5B9\t0x60B0\n0x8EA2B5BA\t0x60BA\n0x8EA2B5BB\t0x60D3\n0x8EA2B5BC\t0x60D4\n0x8EA2B5BD\t0x60CF\n0x8EA2B5BE\t0x60E4\n0x8EA2B5BF\t0x60D9\n0x8EA2B5C0\t0x60DD\n0x8EA2B5C1\t0x60C8\n0x8EA2B5C2\t0x60B1\n0x8EA2B5C3\t0x60DB\n0x8EA2B5C4\t0x60B7\n0x8EA2B5C5\t0x60CA\n0x8EA2B5C6\t0x60BF\n0x8EA2B5C7\t0x60C3\n0x8EA2B5C8\t0x60CD\n0x8EA2B5C9\t0x60C0\n0x8EA2B5CA\t0x6332\n0x8EA2B5CB\t0x6365\n0x8EA2B5CC\t0x638A\n0x8EA2B5CD\t0x6382\n0x8EA2B5CE\t0x637D\n0x8EA2B5CF\t0x63BD\n0x8EA2B5D0\t0x639E\n0x8EA2B5D1\t0x63AD\n0x8EA2B5D2\t0x639D\n0x8EA2B5D3\t0x6397\n0x8EA2B5D4\t0x63AB\n0x8EA2B5D5\t0x638E\n0x8EA2B5D6\t0x636F\n0x8EA2B5D7\t0x6387\n0x8EA2B5D8\t0x6390\n0x8EA2B5D9\t0x636E\n0x8EA2B5DA\t0x63AF\n0x8EA2B5DB\t0x6375\n0x8EA2B5DC\t0x639C\n0x8EA2B5DD\t0x636D\n0x8EA2B5DE\t0x63AE\n0x8EA2B5DF\t0x637C\n0x8EA2B5E0\t0x63A4\n0x8EA2B5E1\t0x633B\n0x8EA2B5E2\t0x639F\n0x8EA2B5E3\t0x6378\n0x8EA2B5E4\t0x6385\n0x8EA2B5E5\t0x6381\n0x8EA2B5E6\t0x6391\n0x8EA2B5E7\t0x638D\n0x8EA2B5E8\t0x6370\n0x8EA2B5E9\t0x6553\n0x8EA2B5EA\t0x65CD\n0x8EA2B5EB\t0x6665\n0x8EA2B5EC\t0x6661\n0x8EA2B5ED\t0x665B\n0x8EA2B5EE\t0x6659\n0x8EA2B5EF\t0x665C\n0x8EA2B5F0\t0x6662\n0x8EA2B5F1\t0x6718\n0x8EA2B5F2\t0x6879\n0x8EA2B5F3\t0x6887\n0x8EA2B5F4\t0x6890\n0x8EA2B5F5\t0x689C\n0x8EA2B5F6\t0x686D\n0x8EA2B5F7\t0x686E\n0x8EA2B5F8\t0x68AE\n0x8EA2B5F9\t0x68AB\n0x8EA2B5FA\t0x6956\n0x8EA2B5FB\t0x686F\n0x8EA2B5FC\t0x68A3\n0x8EA2B5FD\t0x68AC\n0x8EA2B5FE\t0x68A9\n0x8EA2B6A1\t0x6875\n0x8EA2B6A2\t0x6874\n0x8EA2B6A3\t0x68B2\n0x8EA2B6A4\t0x688F\n0x8EA2B6A5\t0x6877\n0x8EA2B6A6\t0x6892\n0x8EA2B6A7\t0x687C\n0x8EA2B6A8\t0x686B\n0x8EA2B6A9\t0x6872\n0x8EA2B6AA\t0x68AA\n0x8EA2B6AB\t0x6880\n0x8EA2B6AC\t0x6871\n0x8EA2B6AD\t0x687E\n0x8EA2B6AE\t0x689B\n0x8EA2B6AF\t0x6896\n0x8EA2B6B0\t0x688B\n0x8EA2B6B1\t0x68A0\n0x8EA2B6B2\t0x6889\n0x8EA2B6B3\t0x68A4\n0x8EA2B6B4\t0x6878\n0x8EA2B6B5\t0x687B\n0x8EA2B6B6\t0x6891\n0x8EA2B6B7\t0x688C\n0x8EA2B6B8\t0x688A\n0x8EA2B6B9\t0x687D\n0x8EA2B6BA\t0x6B36\n0x8EA2B6BB\t0x6B33\n0x8EA2B6BC\t0x6B37\n0x8EA2B6BD\t0x6B38\n0x8EA2B6BE\t0x6B91\n0x8EA2B6BF\t0x6B8F\n0x8EA2B6C0\t0x6B8D\n0x8EA2B6C1\t0x6B8E\n0x8EA2B6C2\t0x6B8C\n0x8EA2B6C3\t0x6C2A\n0x8EA2B6C4\t0x6DC0\n0x8EA2B6C5\t0x6DAB\n0x8EA2B6C6\t0x6DB4\n0x8EA2B6C7\t0x6DB3\n0x8EA2B6C8\t0x6E74\n0x8EA2B6C9\t0x6DAC\n0x8EA2B6CA\t0x6DE9\n0x8EA2B6CB\t0x6DE2\n0x8EA2B6CC\t0x6DB7\n0x8EA2B6CD\t0x6DF6\n0x8EA2B6CE\t0x6DD4\n0x8EA2B6CF\t0x6E00\n0x8EA2B6D0\t0x6DC8\n0x8EA2B6D1\t0x6DE0\n0x8EA2B6D2\t0x6DDF\n0x8EA2B6D3\t0x6DD6\n0x8EA2B6D4\t0x6DBE\n0x8EA2B6D5\t0x6DE5\n0x8EA2B6D6\t0x6DDC\n0x8EA2B6D7\t0x6DDD\n0x8EA2B6D8\t0x6DDB\n0x8EA2B6D9\t0x6DF4\n0x8EA2B6DA\t0x6DCA\n0x8EA2B6DB\t0x6DBD\n0x8EA2B6DC\t0x6DED\n0x8EA2B6DD\t0x6DF0\n0x8EA2B6DE\t0x6DBA\n0x8EA2B6DF\t0x6DD5\n0x8EA2B6E0\t0x6DC2\n0x8EA2B6E1\t0x6DCF\n0x8EA2B6E2\t0x6DC9\n0x8EA2B6E3\t0x6DD0\n0x8EA2B6E4\t0x6DF2\n0x8EA2B6E5\t0x6DD3\n0x8EA2B6E6\t0x6DFD\n0x8EA2B6E7\t0x6DD7\n0x8EA2B6E8\t0x6DCD\n0x8EA2B6E9\t0x6DE3\n0x8EA2B6EA\t0x6DBB\n0x8EA2B6EB\t0x70FA\n0x8EA2B6EC\t0x710D\n0x8EA2B6ED\t0x70F7\n0x8EA2B6EE\t0x7117\n0x8EA2B6EF\t0x70F4\n0x8EA2B6F0\t0x710C\n0x8EA2B6F1\t0x70F0\n0x8EA2B6F2\t0x7104\n0x8EA2B6F3\t0x70F3\n0x8EA2B6F4\t0x7110\n0x8EA2B6F5\t0x70FC\n0x8EA2B6F6\t0x70FF\n0x8EA2B6F7\t0x7106\n0x8EA2B6F8\t0x7113\n0x8EA2B6F9\t0x7100\n0x8EA2B6FA\t0x70F8\n0x8EA2B6FB\t0x70F6\n0x8EA2B6FC\t0x710B\n0x8EA2B6FD\t0x7102\n0x8EA2B6FE\t0x710E\n0x8EA2B7A1\t0x727E\n0x8EA2B7A2\t0x727B\n0x8EA2B7A3\t0x727C\n0x8EA2B7A4\t0x727F\n0x8EA2B7A5\t0x731D\n0x8EA2B7A6\t0x7317\n0x8EA2B7A7\t0x7307\n0x8EA2B7A8\t0x7311\n0x8EA2B7A9\t0x7318\n0x8EA2B7AA\t0x730A\n0x8EA2B7AB\t0x7308\n0x8EA2B7AC\t0x72FF\n0x8EA2B7AD\t0x730F\n0x8EA2B7AE\t0x731E\n0x8EA2B7AF\t0x7388\n0x8EA2B7B0\t0x73F6\n0x8EA2B7B1\t0x73F8\n0x8EA2B7B2\t0x73F5\n0x8EA2B7B3\t0x7404\n0x8EA2B7B4\t0x7401\n0x8EA2B7B5\t0x73FD\n0x8EA2B7B6\t0x7407\n0x8EA2B7B7\t0x7400\n0x8EA2B7B8\t0x73FA\n0x8EA2B7B9\t0x73FC\n0x8EA2B7BA\t0x73FF\n0x8EA2B7BB\t0x740C\n0x8EA2B7BC\t0x740B\n0x8EA2B7BD\t0x73F4\n0x8EA2B7BE\t0x7408\n0x8EA2B7BF\t0x7564\n0x8EA2B7C0\t0x7563\n0x8EA2B7C1\t0x75CE\n0x8EA2B7C2\t0x75D2\n0x8EA2B7C3\t0x75CF\n0x8EA2B7C4\t0x75CB\n0x8EA2B7C5\t0x75CC\n0x8EA2B7C6\t0x75D1\n0x8EA2B7C7\t0x75D0\n0x8EA2B7C8\t0x768F\n0x8EA2B7C9\t0x7689\n0x8EA2B7CA\t0x76D3\n0x8EA2B7CB\t0x7739\n0x8EA2B7CC\t0x772F\n0x8EA2B7CD\t0x772D\n0x8EA2B7CE\t0x7731\n0x8EA2B7CF\t0x7732\n0x8EA2B7D0\t0x7734\n0x8EA2B7D1\t0x7733\n0x8EA2B7D2\t0x773D\n0x8EA2B7D3\t0x7725\n0x8EA2B7D4\t0x773B\n0x8EA2B7D5\t0x7735\n0x8EA2B7D6\t0x7848\n0x8EA2B7D7\t0x7852\n0x8EA2B7D8\t0x7849\n0x8EA2B7D9\t0x784D\n0x8EA2B7DA\t0x784A\n0x8EA2B7DB\t0x784C\n0x8EA2B7DC\t0x7826\n0x8EA2B7DD\t0x7845\n0x8EA2B7DE\t0x7850\n0x8EA2B7DF\t0x7964\n0x8EA2B7E0\t0x7967\n0x8EA2B7E1\t0x7969\n0x8EA2B7E2\t0x796A\n0x8EA2B7E3\t0x7963\n0x8EA2B7E4\t0x796B\n0x8EA2B7E5\t0x7961\n0x8EA2B7E6\t0x79BB\n0x8EA2B7E7\t0x79FA\n0x8EA2B7E8\t0x79F8\n0x8EA2B7E9\t0x79F6\n0x8EA2B7EA\t0x79F7\n0x8EA2B7EB\t0x7A8F\n0x8EA2B7EC\t0x7A94\n0x8EA2B7ED\t0x7A90\n0x8EA2B7EE\t0x7B35\n0x8EA2B7EF\t0x7B3B\n0x8EA2B7F0\t0x7B34\n0x8EA2B7F1\t0x7B25\n0x8EA2B7F2\t0x7B30\n0x8EA2B7F3\t0x7B22\n0x8EA2B7F4\t0x7B24\n0x8EA2B7F5\t0x7B33\n0x8EA2B7F6\t0x7B18\n0x8EA2B7F7\t0x7B2A\n0x8EA2B7F8\t0x7B1D\n0x8EA2B7F9\t0x7B31\n0x8EA2B7FA\t0x7B2B\n0x8EA2B7FB\t0x7B2D\n0x8EA2B7FC\t0x7B2F\n0x8EA2B7FD\t0x7B32\n0x8EA2B7FE\t0x7B38\n0x8EA2B8A1\t0x7B1A\n0x8EA2B8A2\t0x7B23\n0x8EA2B8A3\t0x7C94\n0x8EA2B8A4\t0x7C98\n0x8EA2B8A5\t0x7C96\n0x8EA2B8A6\t0x7CA3\n0x8EA2B8A7\t0x7D35\n0x8EA2B8A8\t0x7D3D\n0x8EA2B8A9\t0x7D38\n0x8EA2B8AA\t0x7D36\n0x8EA2B8AB\t0x7D3A\n0x8EA2B8AC\t0x7D45\n0x8EA2B8AD\t0x7D2C\n0x8EA2B8AE\t0x7D29\n0x8EA2B8AF\t0x7D41\n0x8EA2B8B0\t0x7D47\n0x8EA2B8B1\t0x7D3E\n0x8EA2B8B2\t0x7D3F\n0x8EA2B8B3\t0x7D4A\n0x8EA2B8B4\t0x7D3B\n0x8EA2B8B5\t0x7D28\n0x8EA2B8B6\t0x7F63\n0x8EA2B8B7\t0x7F95\n0x8EA2B8B8\t0x7F9C\n0x8EA2B8B9\t0x7F9D\n0x8EA2B8BA\t0x7F9B\n0x8EA2B8BB\t0x7FCA\n0x8EA2B8BC\t0x7FCB\n0x8EA2B8BD\t0x7FCD\n0x8EA2B8BE\t0x7FD0\n0x8EA2B8BF\t0x7FD1\n0x8EA2B8C0\t0x7FC7\n0x8EA2B8C1\t0x7FCF\n0x8EA2B8C2\t0x7FC9\n0x8EA2B8C3\t0x801F\n0x8EA2B8C4\t0x801E\n0x8EA2B8C5\t0x801B\n0x8EA2B8C6\t0x8047\n0x8EA2B8C7\t0x8043\n0x8EA2B8C8\t0x8048\n0x8EA2B8C9\t0x8118\n0x8EA2B8CA\t0x8125\n0x8EA2B8CB\t0x8119\n0x8EA2B8CC\t0x811B\n0x8EA2B8CD\t0x812D\n0x8EA2B8CE\t0x811F\n0x8EA2B8CF\t0x812C\n0x8EA2B8D0\t0x811E\n0x8EA2B8D1\t0x8121\n0x8EA2B8D2\t0x8115\n0x8EA2B8D3\t0x8127\n0x8EA2B8D4\t0x811D\n0x8EA2B8D5\t0x8122\n0x8EA2B8D6\t0x8211\n0x8EA2B8D7\t0x8238\n0x8EA2B8D8\t0x8233\n0x8EA2B8D9\t0x823A\n0x8EA2B8DA\t0x8234\n0x8EA2B8DB\t0x8232\n0x8EA2B8DC\t0x8274\n0x8EA2B8DD\t0x8390\n0x8EA2B8DE\t0x83A3\n0x8EA2B8DF\t0x83A8\n0x8EA2B8E0\t0x838D\n0x8EA2B8E1\t0x837A\n0x8EA2B8E2\t0x8373\n0x8EA2B8E3\t0x83A4\n0x8EA2B8E4\t0x8374\n0x8EA2B8E5\t0x838F\n0x8EA2B8E6\t0x8381\n0x8EA2B8E7\t0x8395\n0x8EA2B8E8\t0x8399\n0x8EA2B8E9\t0x8375\n0x8EA2B8EA\t0x8394\n0x8EA2B8EB\t0x83A9\n0x8EA2B8EC\t0x837D\n0x8EA2B8ED\t0x8383\n0x8EA2B8EE\t0x838C\n0x8EA2B8EF\t0x839D\n0x8EA2B8F0\t0x839B\n0x8EA2B8F1\t0x83AA\n0x8EA2B8F2\t0x838B\n0x8EA2B8F3\t0x837E\n0x8EA2B8F4\t0x83A5\n0x8EA2B8F5\t0x83AF\n0x8EA2B8F6\t0x8388\n0x8EA2B8F7\t0x8397\n0x8EA2B8F8\t0x83B0\n0x8EA2B8F9\t0x837F\n0x8EA2B8FA\t0x83A6\n0x8EA2B8FB\t0x8387\n0x8EA2B8FC\t0x83AE\n0x8EA2B8FD\t0x8376\n0x8EA2B8FE\t0x8659\n0x8EA2B9A1\t0x8656\n0x8EA2B9A2\t0x86BF\n0x8EA2B9A3\t0x86B7\n0x8EA2B9A4\t0x86C2\n0x8EA2B9A5\t0x86C1\n0x8EA2B9A6\t0x86C5\n0x8EA2B9A7\t0x86BA\n0x8EA2B9A8\t0x86B0\n0x8EA2B9A9\t0x86C8\n0x8EA2B9AA\t0x86B9\n0x8EA2B9AB\t0x86B3\n0x8EA2B9AC\t0x86B8\n0x8EA2B9AD\t0x86CC\n0x8EA2B9AE\t0x86B4\n0x8EA2B9AF\t0x86BB\n0x8EA2B9B0\t0x86BC\n0x8EA2B9B1\t0x86C3\n0x8EA2B9B2\t0x86BD\n0x8EA2B9B3\t0x86BE\n0x8EA2B9B4\t0x8852\n0x8EA2B9B5\t0x8889\n0x8EA2B9B6\t0x8895\n0x8EA2B9B7\t0x88A8\n0x8EA2B9B8\t0x88A2\n0x8EA2B9B9\t0x88AA\n0x8EA2B9BA\t0x889A\n0x8EA2B9BB\t0x8891\n0x8EA2B9BC\t0x88A1\n0x8EA2B9BD\t0x889F\n0x8EA2B9BE\t0x8898\n0x8EA2B9BF\t0x88A7\n0x8EA2B9C0\t0x8899\n0x8EA2B9C1\t0x889B\n0x8EA2B9C2\t0x8897\n0x8EA2B9C3\t0x88A4\n0x8EA2B9C4\t0x88AC\n0x8EA2B9C5\t0x888C\n0x8EA2B9C6\t0x8893\n0x8EA2B9C7\t0x888E\n0x8EA2B9C8\t0x8982\n0x8EA2B9C9\t0x89D6\n0x8EA2B9CA\t0x89D9\n0x8EA2B9CB\t0x89D5\n0x8EA2B9CC\t0x8A30\n0x8EA2B9CD\t0x8A27\n0x8EA2B9CE\t0x8A2C\n0x8EA2B9CF\t0x8A1E\n0x8EA2B9D0\t0x8C39\n0x8EA2B9D1\t0x8C3B\n0x8EA2B9D2\t0x8C5C\n0x8EA2B9D3\t0x8C5D\n0x8EA2B9D4\t0x8C7D\n0x8EA2B9D5\t0x8CA5\n0x8EA2B9D6\t0x8D7D\n0x8EA2B9D7\t0x8D7B\n0x8EA2B9D8\t0x8D79\n0x8EA2B9D9\t0x8DBC\n0x8EA2B9DA\t0x8DC2\n0x8EA2B9DB\t0x8DB9\n0x8EA2B9DC\t0x8DBF\n0x8EA2B9DD\t0x8DC1\n0x8EA2B9DE\t0x8ED8\n0x8EA2B9DF\t0x8EDE\n0x8EA2B9E0\t0x8EDD\n0x8EA2B9E1\t0x8EDC\n0x8EA2B9E2\t0x8ED7\n0x8EA2B9E3\t0x8EE0\n0x8EA2B9E4\t0x8EE1\n0x8EA2B9E5\t0x9024\n0x8EA2B9E6\t0x900B\n0x8EA2B9E7\t0x9011\n0x8EA2B9E8\t0x901C\n0x8EA2B9E9\t0x900C\n0x8EA2B9EA\t0x9021\n0x8EA2B9EB\t0x90EF\n0x8EA2B9EC\t0x90EA\n0x8EA2B9ED\t0x90F0\n0x8EA2B9EE\t0x90F4\n0x8EA2B9EF\t0x90F2\n0x8EA2B9F0\t0x90F3\n0x8EA2B9F1\t0x90D4\n0x8EA2B9F2\t0x90EB\n0x8EA2B9F3\t0x90EC\n0x8EA2B9F4\t0x90E9\n0x8EA2B9F5\t0x9156\n0x8EA2B9F6\t0x9158\n0x8EA2B9F7\t0x915A\n0x8EA2B9F8\t0x9153\n0x8EA2B9F9\t0x9155\n0x8EA2B9FA\t0x91EC\n0x8EA2B9FB\t0x91F4\n0x8EA2B9FC\t0x91F1\n0x8EA2B9FD\t0x91F3\n0x8EA2B9FE\t0x91F8\n0x8EA2BAA1\t0x91E4\n0x8EA2BAA2\t0x91F9\n0x8EA2BAA3\t0x91EA\n0x8EA2BAA4\t0x91EB\n0x8EA2BAA5\t0x91F7\n0x8EA2BAA6\t0x91E8\n0x8EA2BAA7\t0x91EE\n0x8EA2BAA8\t0x957A\n0x8EA2BAA9\t0x9586\n0x8EA2BAAA\t0x9588\n0x8EA2BAAB\t0x967C\n0x8EA2BAAC\t0x966D\n0x8EA2BAAD\t0x966B\n0x8EA2BAAE\t0x9671\n0x8EA2BAAF\t0x966F\n0x8EA2BAB0\t0x96BF\n0x8EA2BAB1\t0x976A\n0x8EA2BAB2\t0x9804\n0x8EA2BAB3\t0x98E5\n0x8EA2BAB4\t0x9997\n0x8EA2BAB5\t0x509B\n0x8EA2BAB6\t0x5095\n0x8EA2BAB7\t0x5094\n0x8EA2BAB8\t0x509E\n0x8EA2BAB9\t0x508B\n0x8EA2BABA\t0x50A3\n0x8EA2BABB\t0x5083\n0x8EA2BABC\t0x508C\n0x8EA2BABD\t0x508E\n0x8EA2BABE\t0x509D\n0x8EA2BABF\t0x5068\n0x8EA2BAC0\t0x509C\n0x8EA2BAC1\t0x5092\n0x8EA2BAC2\t0x5082\n0x8EA2BAC3\t0x5087\n0x8EA2BAC4\t0x515F\n0x8EA2BAC5\t0x51D4\n0x8EA2BAC6\t0x5312\n0x8EA2BAC7\t0x5311\n0x8EA2BAC8\t0x53A4\n0x8EA2BAC9\t0x53A7\n0x8EA2BACA\t0x5591\n0x8EA2BACB\t0x55A8\n0x8EA2BACC\t0x55A5\n0x8EA2BACD\t0x55AD\n0x8EA2BACE\t0x5577\n0x8EA2BACF\t0x5645\n0x8EA2BAD0\t0x55A2\n0x8EA2BAD1\t0x5593\n0x8EA2BAD2\t0x5588\n0x8EA2BAD3\t0x558F\n0x8EA2BAD4\t0x55B5\n0x8EA2BAD5\t0x5581\n0x8EA2BAD6\t0x55A3\n0x8EA2BAD7\t0x5592\n0x8EA2BAD8\t0x55A4\n0x8EA2BAD9\t0x557D\n0x8EA2BADA\t0x558C\n0x8EA2BADB\t0x55A6\n0x8EA2BADC\t0x557F\n0x8EA2BADD\t0x5595\n0x8EA2BADE\t0x55A1\n0x8EA2BADF\t0x558E\n0x8EA2BAE0\t0x570C\n0x8EA2BAE1\t0x5829\n0x8EA2BAE2\t0x5837\n0x8EA2BAE3\t0x5819\n0x8EA2BAE4\t0x581E\n0x8EA2BAE5\t0x5827\n0x8EA2BAE6\t0x5823\n0x8EA2BAE7\t0x5828\n0x8EA2BAE8\t0x57F5\n0x8EA2BAE9\t0x5848\n0x8EA2BAEA\t0x5825\n0x8EA2BAEB\t0x581C\n0x8EA2BAEC\t0x581B\n0x8EA2BAED\t0x5833\n0x8EA2BAEE\t0x583F\n0x8EA2BAEF\t0x5836\n0x8EA2BAF0\t0x582E\n0x8EA2BAF1\t0x5839\n0x8EA2BAF2\t0x5838\n0x8EA2BAF3\t0x582D\n0x8EA2BAF4\t0x582C\n0x8EA2BAF5\t0x583B\n0x8EA2BAF6\t0x5961\n0x8EA2BAF7\t0x5AAF\n0x8EA2BAF8\t0x5A94\n0x8EA2BAF9\t0x5A9F\n0x8EA2BAFA\t0x5A7A\n0x8EA2BAFB\t0x5AA2\n0x8EA2BAFC\t0x5A9E\n0x8EA2BAFD\t0x5A78\n0x8EA2BAFE\t0x5AA6\n0x8EA2BBA1\t0x5A7C\n0x8EA2BBA2\t0x5AA5\n0x8EA2BBA3\t0x5AAC\n0x8EA2BBA4\t0x5A95\n0x8EA2BBA5\t0x5AAE\n0x8EA2BBA6\t0x5A37\n0x8EA2BBA7\t0x5A84\n0x8EA2BBA8\t0x5A8A\n0x8EA2BBA9\t0x5A97\n0x8EA2BBAA\t0x5A83\n0x8EA2BBAB\t0x5A8B\n0x8EA2BBAC\t0x5AA9\n0x8EA2BBAD\t0x5A7B\n0x8EA2BBAE\t0x5A7D\n0x8EA2BBAF\t0x5A8C\n0x8EA2BBB0\t0x5A9C\n0x8EA2BBB1\t0x5A8F\n0x8EA2BBB2\t0x5A93\n0x8EA2BBB3\t0x5A9D\n0x8EA2BBB4\t0x5BEA\n0x8EA2BBB5\t0x5BCD\n0x8EA2BBB6\t0x5BCB\n0x8EA2BBB7\t0x5BD4\n0x8EA2BBB8\t0x5BD1\n0x8EA2BBB9\t0x5BCA\n0x8EA2BBBA\t0x5BCE\n0x8EA2BBBB\t0x5C0C\n0x8EA2BBBC\t0x5C30\n0x8EA2BBBD\t0x5D37\n0x8EA2BBBE\t0x5D43\n0x8EA2BBBF\t0x5D6B\n0x8EA2BBC0\t0x5D41\n0x8EA2BBC1\t0x5D4B\n0x8EA2BBC2\t0x5D3F\n0x8EA2BBC3\t0x5D35\n0x8EA2BBC4\t0x5D51\n0x8EA2BBC5\t0x5D4E\n0x8EA2BBC6\t0x5D55\n0x8EA2BBC7\t0x5D33\n0x8EA2BBC8\t0x5D3A\n0x8EA2BBC9\t0x5D52\n0x8EA2BBCA\t0x5D3D\n0x8EA2BBCB\t0x5D31\n0x8EA2BBCC\t0x5D59\n0x8EA2BBCD\t0x5D42\n0x8EA2BBCE\t0x5D39\n0x8EA2BBCF\t0x5D49\n0x8EA2BBD0\t0x5D38\n0x8EA2BBD1\t0x5D3C\n0x8EA2BBD2\t0x5D32\n0x8EA2BBD3\t0x5D36\n0x8EA2BBD4\t0x5D40\n0x8EA2BBD5\t0x5D45\n0x8EA2BBD6\t0x5E44\n0x8EA2BBD7\t0x5E41\n0x8EA2BBD8\t0x5F58\n0x8EA2BBD9\t0x5FA6\n0x8EA2BBDA\t0x5FA5\n0x8EA2BBDB\t0x5FAB\n0x8EA2BBDC\t0x60C9\n0x8EA2BBDD\t0x60B9\n0x8EA2BBDE\t0x60CC\n0x8EA2BBDF\t0x60E2\n0x8EA2BBE0\t0x60CE\n0x8EA2BBE1\t0x60C4\n0x8EA2BBE2\t0x6114\n0x8EA2BBE3\t0x60F2\n0x8EA2BBE4\t0x610A\n0x8EA2BBE5\t0x6116\n0x8EA2BBE6\t0x6105\n0x8EA2BBE7\t0x60F5\n0x8EA2BBE8\t0x6113\n0x8EA2BBE9\t0x60F8\n0x8EA2BBEA\t0x60FC\n0x8EA2BBEB\t0x60FE\n0x8EA2BBEC\t0x60C1\n0x8EA2BBED\t0x6103\n0x8EA2BBEE\t0x6118\n0x8EA2BBEF\t0x611D\n0x8EA2BBF0\t0x6110\n0x8EA2BBF1\t0x60FF\n0x8EA2BBF2\t0x6104\n0x8EA2BBF3\t0x610B\n0x8EA2BBF4\t0x624A\n0x8EA2BBF5\t0x6394\n0x8EA2BBF6\t0x63B1\n0x8EA2BBF7\t0x63B0\n0x8EA2BBF8\t0x63CE\n0x8EA2BBF9\t0x63E5\n0x8EA2BBFA\t0x63E8\n0x8EA2BBFB\t0x63EF\n0x8EA2BBFC\t0x63C3\n0x8EA2BBFD\t0x649D\n0x8EA2BBFE\t0x63F3\n0x8EA2BCA1\t0x63CA\n0x8EA2BCA2\t0x63E0\n0x8EA2BCA3\t0x63F6\n0x8EA2BCA4\t0x63D5\n0x8EA2BCA5\t0x63F2\n0x8EA2BCA6\t0x63F5\n0x8EA2BCA7\t0x6461\n0x8EA2BCA8\t0x63DF\n0x8EA2BCA9\t0x63BE\n0x8EA2BCAA\t0x63DD\n0x8EA2BCAB\t0x63DC\n0x8EA2BCAC\t0x63C4\n0x8EA2BCAD\t0x63D8\n0x8EA2BCAE\t0x63D3\n0x8EA2BCAF\t0x63C2\n0x8EA2BCB0\t0x63C7\n0x8EA2BCB1\t0x63CC\n0x8EA2BCB2\t0x63CB\n0x8EA2BCB3\t0x63C8\n0x8EA2BCB4\t0x63F0\n0x8EA2BCB5\t0x63D7\n0x8EA2BCB6\t0x63D9\n0x8EA2BCB7\t0x6532\n0x8EA2BCB8\t0x6567\n0x8EA2BCB9\t0x656A\n0x8EA2BCBA\t0x6564\n0x8EA2BCBB\t0x655C\n0x8EA2BCBC\t0x6568\n0x8EA2BCBD\t0x6565\n0x8EA2BCBE\t0x658C\n0x8EA2BCBF\t0x659D\n0x8EA2BCC0\t0x659E\n0x8EA2BCC1\t0x65AE\n0x8EA2BCC2\t0x65D0\n0x8EA2BCC3\t0x65D2\n0x8EA2BCC4\t0x667C\n0x8EA2BCC5\t0x666C\n0x8EA2BCC6\t0x667B\n0x8EA2BCC7\t0x6680\n0x8EA2BCC8\t0x6671\n0x8EA2BCC9\t0x6679\n0x8EA2BCCA\t0x666A\n0x8EA2BCCB\t0x6672\n0x8EA2BCCC\t0x6701\n0x8EA2BCCD\t0x690C\n0x8EA2BCCE\t0x68D3\n0x8EA2BCCF\t0x6904\n0x8EA2BCD0\t0x68DC\n0x8EA2BCD1\t0x692A\n0x8EA2BCD2\t0x68EC\n0x8EA2BCD3\t0x68EA\n0x8EA2BCD4\t0x68F1\n0x8EA2BCD5\t0x690F\n0x8EA2BCD6\t0x68D6\n0x8EA2BCD7\t0x68F7\n0x8EA2BCD8\t0x68EB\n0x8EA2BCD9\t0x68E4\n0x8EA2BCDA\t0x68F6\n0x8EA2BCDB\t0x6913\n0x8EA2BCDC\t0x6910\n0x8EA2BCDD\t0x68F3\n0x8EA2BCDE\t0x68E1\n0x8EA2BCDF\t0x6907\n0x8EA2BCE0\t0x68CC\n0x8EA2BCE1\t0x6908\n0x8EA2BCE2\t0x6970\n0x8EA2BCE3\t0x68B4\n0x8EA2BCE4\t0x6911\n0x8EA2BCE5\t0x68EF\n0x8EA2BCE6\t0x68C6\n0x8EA2BCE7\t0x6914\n0x8EA2BCE8\t0x68F8\n0x8EA2BCE9\t0x68D0\n0x8EA2BCEA\t0x68FD\n0x8EA2BCEB\t0x68FC\n0x8EA2BCEC\t0x68E8\n0x8EA2BCED\t0x690B\n0x8EA2BCEE\t0x690A\n0x8EA2BCEF\t0x6917\n0x8EA2BCF0\t0x68CE\n0x8EA2BCF1\t0x68C8\n0x8EA2BCF2\t0x68DD\n0x8EA2BCF3\t0x68DE\n0x8EA2BCF4\t0x68E6\n0x8EA2BCF5\t0x68F4\n0x8EA2BCF6\t0x68D1\n0x8EA2BCF7\t0x6906\n0x8EA2BCF8\t0x68D4\n0x8EA2BCF9\t0x68E9\n0x8EA2BCFA\t0x6915\n0x8EA2BCFB\t0x6925\n0x8EA2BCFC\t0x68C7\n0x8EA2BCFD\t0x6B39\n0x8EA2BCFE\t0x6B3B\n0x8EA2BDA1\t0x6B3F\n0x8EA2BDA2\t0x6B3C\n0x8EA2BDA3\t0x6B94\n0x8EA2BDA4\t0x6B97\n0x8EA2BDA5\t0x6B99\n0x8EA2BDA6\t0x6B95\n0x8EA2BDA7\t0x6BBD\n0x8EA2BDA8\t0x6BF0\n0x8EA2BDA9\t0x6BF2\n0x8EA2BDAA\t0x6BF3\n0x8EA2BDAB\t0x6C30\n0x8EA2BDAC\t0x6DFC\n0x8EA2BDAD\t0x6E46\n0x8EA2BDAE\t0x6E47\n0x8EA2BDAF\t0x6E1F\n0x8EA2BDB0\t0x6E49\n0x8EA2BDB1\t0x6E88\n0x8EA2BDB2\t0x6E3C\n0x8EA2BDB3\t0x6E3D\n0x8EA2BDB4\t0x6E45\n0x8EA2BDB5\t0x6E62\n0x8EA2BDB6\t0x6E2B\n0x8EA2BDB7\t0x6E3F\n0x8EA2BDB8\t0x6E41\n0x8EA2BDB9\t0x6E5D\n0x8EA2BDBA\t0x6E73\n0x8EA2BDBB\t0x6E1C\n0x8EA2BDBC\t0x6E33\n0x8EA2BDBD\t0x6E4B\n0x8EA2BDBE\t0x6E40\n0x8EA2BDBF\t0x6E51\n0x8EA2BDC0\t0x6E3B\n0x8EA2BDC1\t0x6E03\n0x8EA2BDC2\t0x6E2E\n0x8EA2BDC3\t0x6E5E\n0x8EA2BDC4\t0x6E68\n0x8EA2BDC5\t0x6E5C\n0x8EA2BDC6\t0x6E61\n0x8EA2BDC7\t0x6E31\n0x8EA2BDC8\t0x6E28\n0x8EA2BDC9\t0x6E60\n0x8EA2BDCA\t0x6E71\n0x8EA2BDCB\t0x6E6B\n0x8EA2BDCC\t0x6E39\n0x8EA2BDCD\t0x6E22\n0x8EA2BDCE\t0x6E30\n0x8EA2BDCF\t0x6E53\n0x8EA2BDD0\t0x6E65\n0x8EA2BDD1\t0x6E27\n0x8EA2BDD2\t0x6E78\n0x8EA2BDD3\t0x6E64\n0x8EA2BDD4\t0x6E77\n0x8EA2BDD5\t0x6E55\n0x8EA2BDD6\t0x6E79\n0x8EA2BDD7\t0x6E52\n0x8EA2BDD8\t0x6E66\n0x8EA2BDD9\t0x6E35\n0x8EA2BDDA\t0x6E36\n0x8EA2BDDB\t0x6E5A\n0x8EA2BDDC\t0x7120\n0x8EA2BDDD\t0x711E\n0x8EA2BDDE\t0x712F\n0x8EA2BDDF\t0x70FB\n0x8EA2BDE0\t0x712E\n0x8EA2BDE1\t0x7131\n0x8EA2BDE2\t0x7123\n0x8EA2BDE3\t0x7125\n0x8EA2BDE4\t0x7122\n0x8EA2BDE5\t0x7132\n0x8EA2BDE6\t0x711F\n0x8EA2BDE7\t0x7128\n0x8EA2BDE8\t0x713A\n0x8EA2BDE9\t0x711B\n0x8EA2BDEA\t0x724B\n0x8EA2BDEB\t0x725A\n0x8EA2BDEC\t0x7288\n0x8EA2BDED\t0x7289\n0x8EA2BDEE\t0x7286\n0x8EA2BDEF\t0x7285\n0x8EA2BDF0\t0x728B\n0x8EA2BDF1\t0x7312\n0x8EA2BDF2\t0x730B\n0x8EA2BDF3\t0x7330\n0x8EA2BDF4\t0x7322\n0x8EA2BDF5\t0x7331\n0x8EA2BDF6\t0x7333\n0x8EA2BDF7\t0x7327\n0x8EA2BDF8\t0x7332\n0x8EA2BDF9\t0x732D\n0x8EA2BDFA\t0x7326\n0x8EA2BDFB\t0x7323\n0x8EA2BDFC\t0x7335\n0x8EA2BDFD\t0x730C\n0x8EA2BDFE\t0x742E\n0x8EA2BEA1\t0x742C\n0x8EA2BEA2\t0x7430\n0x8EA2BEA3\t0x742B\n0x8EA2BEA4\t0x7416\n0x8EA2BEA5\t0x741A\n0x8EA2BEA6\t0x7421\n0x8EA2BEA7\t0x742D\n0x8EA2BEA8\t0x7431\n0x8EA2BEA9\t0x7424\n0x8EA2BEAA\t0x7423\n0x8EA2BEAB\t0x741D\n0x8EA2BEAC\t0x7429\n0x8EA2BEAD\t0x7420\n0x8EA2BEAE\t0x7432\n0x8EA2BEAF\t0x74FB\n0x8EA2BEB0\t0x752F\n0x8EA2BEB1\t0x756F\n0x8EA2BEB2\t0x756C\n0x8EA2BEB3\t0x75E7\n0x8EA2BEB4\t0x75DA\n0x8EA2BEB5\t0x75E1\n0x8EA2BEB6\t0x75E6\n0x8EA2BEB7\t0x75DD\n0x8EA2BEB8\t0x75DF\n0x8EA2BEB9\t0x75E4\n0x8EA2BEBA\t0x75D7\n0x8EA2BEBB\t0x7695\n0x8EA2BEBC\t0x7692\n0x8EA2BEBD\t0x76DA\n0x8EA2BEBE\t0x7746\n0x8EA2BEBF\t0x7747\n0x8EA2BEC0\t0x7744\n0x8EA2BEC1\t0x774D\n0x8EA2BEC2\t0x7745\n0x8EA2BEC3\t0x774A\n0x8EA2BEC4\t0x774E\n0x8EA2BEC5\t0x774B\n0x8EA2BEC6\t0x774C\n0x8EA2BEC7\t0x77DE\n0x8EA2BEC8\t0x77EC\n0x8EA2BEC9\t0x7860\n0x8EA2BECA\t0x7864\n0x8EA2BECB\t0x7865\n0x8EA2BECC\t0x785C\n0x8EA2BECD\t0x786D\n0x8EA2BECE\t0x7871\n0x8EA2BECF\t0x786A\n0x8EA2BED0\t0x786E\n0x8EA2BED1\t0x7870\n0x8EA2BED2\t0x7869\n0x8EA2BED3\t0x7868\n0x8EA2BED4\t0x785E\n0x8EA2BED5\t0x7862\n0x8EA2BED6\t0x7974\n0x8EA2BED7\t0x7973\n0x8EA2BED8\t0x7972\n0x8EA2BED9\t0x7970\n0x8EA2BEDA\t0x7A02\n0x8EA2BEDB\t0x7A0A\n0x8EA2BEDC\t0x7A03\n0x8EA2BEDD\t0x7A0C\n0x8EA2BEDE\t0x7A04\n0x8EA2BEDF\t0x7A99\n0x8EA2BEE0\t0x7AE6\n0x8EA2BEE1\t0x7AE4\n0x8EA2BEE2\t0x7B4A\n0x8EA2BEE3\t0x7B47\n0x8EA2BEE4\t0x7B44\n0x8EA2BEE5\t0x7B48\n0x8EA2BEE6\t0x7B4C\n0x8EA2BEE7\t0x7B4E\n0x8EA2BEE8\t0x7B40\n0x8EA2BEE9\t0x7B58\n0x8EA2BEEA\t0x7B45\n0x8EA2BEEB\t0x7CA2\n0x8EA2BEEC\t0x7C9E\n0x8EA2BEED\t0x7CA8\n0x8EA2BEEE\t0x7CA1\n0x8EA2BEEF\t0x7D58\n0x8EA2BEF0\t0x7D6F\n0x8EA2BEF1\t0x7D63\n0x8EA2BEF2\t0x7D53\n0x8EA2BEF3\t0x7D56\n0x8EA2BEF4\t0x7D67\n0x8EA2BEF5\t0x7D6A\n0x8EA2BEF6\t0x7D4F\n0x8EA2BEF7\t0x7D6D\n0x8EA2BEF8\t0x7D5C\n0x8EA2BEF9\t0x7D6B\n0x8EA2BEFA\t0x7D52\n0x8EA2BEFB\t0x7D54\n0x8EA2BEFC\t0x7D69\n0x8EA2BEFD\t0x7D51\n0x8EA2BEFE\t0x7D5F\n0x8EA2BFA1\t0x7D4E\n0x8EA2BFA2\t0x7F3E\n0x8EA2BFA3\t0x7F3F\n0x8EA2BFA4\t0x7F65\n0x8EA2BFA5\t0x7F66\n0x8EA2BFA6\t0x7FA2\n0x8EA2BFA7\t0x7FA0\n0x8EA2BFA8\t0x7FA1\n0x8EA2BFA9\t0x7FD7\n0x8EA2BFAA\t0x8051\n0x8EA2BFAB\t0x804F\n0x8EA2BFAC\t0x8050\n0x8EA2BFAD\t0x80FE\n0x8EA2BFAE\t0x80D4\n0x8EA2BFAF\t0x8143\n0x8EA2BFB0\t0x814A\n0x8EA2BFB1\t0x8152\n0x8EA2BFB2\t0x814F\n0x8EA2BFB3\t0x8147\n0x8EA2BFB4\t0x813D\n0x8EA2BFB5\t0x814D\n0x8EA2BFB6\t0x813A\n0x8EA2BFB7\t0x81E6\n0x8EA2BFB8\t0x81EE\n0x8EA2BFB9\t0x81F7\n0x8EA2BFBA\t0x81F8\n0x8EA2BFBB\t0x81F9\n0x8EA2BFBC\t0x8204\n0x8EA2BFBD\t0x823C\n0x8EA2BFBE\t0x823D\n0x8EA2BFBF\t0x823F\n0x8EA2BFC0\t0x8275\n0x8EA2BFC1\t0x833B\n0x8EA2BFC2\t0x83CF\n0x8EA2BFC3\t0x83F9\n0x8EA2BFC4\t0x8423\n0x8EA2BFC5\t0x83C0\n0x8EA2BFC6\t0x83E8\n0x8EA2BFC7\t0x8412\n0x8EA2BFC8\t0x83E7\n0x8EA2BFC9\t0x83E4\n0x8EA2BFCA\t0x83FC\n0x8EA2BFCB\t0x83F6\n0x8EA2BFCC\t0x8410\n0x8EA2BFCD\t0x83C6\n0x8EA2BFCE\t0x83C8\n0x8EA2BFCF\t0x83EB\n0x8EA2BFD0\t0x83E3\n0x8EA2BFD1\t0x83BF\n0x8EA2BFD2\t0x8401\n0x8EA2BFD3\t0x83DD\n0x8EA2BFD4\t0x83E5\n0x8EA2BFD5\t0x83D8\n0x8EA2BFD6\t0x83FF\n0x8EA2BFD7\t0x83E1\n0x8EA2BFD8\t0x83CB\n0x8EA2BFD9\t0x83CE\n0x8EA2BFDA\t0x83D6\n0x8EA2BFDB\t0x83F5\n0x8EA2BFDC\t0x83C9\n0x8EA2BFDD\t0x8409\n0x8EA2BFDE\t0x840F\n0x8EA2BFDF\t0x83DE\n0x8EA2BFE0\t0x8411\n0x8EA2BFE1\t0x8406\n0x8EA2BFE2\t0x83C2\n0x8EA2BFE3\t0x83F3\n0x8EA2BFE4\t0x83D5\n0x8EA2BFE5\t0x83FA\n0x8EA2BFE6\t0x83C7\n0x8EA2BFE7\t0x83D1\n0x8EA2BFE8\t0x83EA\n0x8EA2BFE9\t0x8413\n0x8EA2BFEA\t0x839A\n0x8EA2BFEB\t0x83C3\n0x8EA2BFEC\t0x83EC\n0x8EA2BFED\t0x83EE\n0x8EA2BFEE\t0x83C4\n0x8EA2BFEF\t0x83FB\n0x8EA2BFF0\t0x83D7\n0x8EA2BFF1\t0x83E2\n0x8EA2BFF2\t0x841B\n0x8EA2BFF3\t0x83DB\n0x8EA2BFF4\t0x83FE\n0x8EA2BFF5\t0x86D8\n0x8EA2BFF6\t0x86E2\n0x8EA2BFF7\t0x86E6\n0x8EA2BFF8\t0x86D3\n0x8EA2BFF9\t0x86E3\n0x8EA2BFFA\t0x86DA\n0x8EA2BFFB\t0x86EA\n0x8EA2BFFC\t0x86DD\n0x8EA2BFFD\t0x86EB\n0x8EA2BFFE\t0x86DC\n0x8EA2C0A1\t0x86EC\n0x8EA2C0A2\t0x86E9\n0x8EA2C0A3\t0x86D7\n0x8EA2C0A4\t0x86E8\n0x8EA2C0A5\t0x86D1\n0x8EA2C0A6\t0x8848\n0x8EA2C0A7\t0x8856\n0x8EA2C0A8\t0x8855\n0x8EA2C0A9\t0x88BA\n0x8EA2C0AA\t0x88D7\n0x8EA2C0AB\t0x88B9\n0x8EA2C0AC\t0x88B8\n0x8EA2C0AD\t0x88C0\n0x8EA2C0AE\t0x88BE\n0x8EA2C0AF\t0x88B6\n0x8EA2C0B0\t0x88BC\n0x8EA2C0B1\t0x88B7\n0x8EA2C0B2\t0x88BD\n0x8EA2C0B3\t0x88B2\n0x8EA2C0B4\t0x8901\n0x8EA2C0B5\t0x88C9\n0x8EA2C0B6\t0x8995\n0x8EA2C0B7\t0x8998\n0x8EA2C0B8\t0x8997\n0x8EA2C0B9\t0x89DD\n0x8EA2C0BA\t0x89DA\n0x8EA2C0BB\t0x89DB\n0x8EA2C0BC\t0x8A4E\n0x8EA2C0BD\t0x8A4D\n0x8EA2C0BE\t0x8A39\n0x8EA2C0BF\t0x8A59\n0x8EA2C0C0\t0x8A40\n0x8EA2C0C1\t0x8A57\n0x8EA2C0C2\t0x8A58\n0x8EA2C0C3\t0x8A44\n0x8EA2C0C4\t0x8A45\n0x8EA2C0C5\t0x8A52\n0x8EA2C0C6\t0x8A48\n0x8EA2C0C7\t0x8A51\n0x8EA2C0C8\t0x8A4A\n0x8EA2C0C9\t0x8A4C\n0x8EA2C0CA\t0x8A4F\n0x8EA2C0CB\t0x8C5F\n0x8EA2C0CC\t0x8C81\n0x8EA2C0CD\t0x8C80\n0x8EA2C0CE\t0x8CBA\n0x8EA2C0CF\t0x8CBE\n0x8EA2C0D0\t0x8CB0\n0x8EA2C0D1\t0x8CB9\n0x8EA2C0D2\t0x8CB5\n0x8EA2C0D3\t0x8D84\n0x8EA2C0D4\t0x8D80\n0x8EA2C0D5\t0x8D89\n0x8EA2C0D6\t0x8DD8\n0x8EA2C0D7\t0x8DD3\n0x8EA2C0D8\t0x8DCD\n0x8EA2C0D9\t0x8DC7\n0x8EA2C0DA\t0x8DD6\n0x8EA2C0DB\t0x8DDC\n0x8EA2C0DC\t0x8DCF\n0x8EA2C0DD\t0x8DD5\n0x8EA2C0DE\t0x8DD9\n0x8EA2C0DF\t0x8DC8\n0x8EA2C0E0\t0x8DD7\n0x8EA2C0E1\t0x8DC5\n0x8EA2C0E2\t0x8EEF\n0x8EA2C0E3\t0x8EF7\n0x8EA2C0E4\t0x8EFA\n0x8EA2C0E5\t0x8EF9\n0x8EA2C0E6\t0x8EE6\n0x8EA2C0E7\t0x8EEE\n0x8EA2C0E8\t0x8EE5\n0x8EA2C0E9\t0x8EF5\n0x8EA2C0EA\t0x8EE7\n0x8EA2C0EB\t0x8EE8\n0x8EA2C0EC\t0x8EF6\n0x8EA2C0ED\t0x8EEB\n0x8EA2C0EE\t0x8EF1\n0x8EA2C0EF\t0x8EEC\n0x8EA2C0F0\t0x8EF4\n0x8EA2C0F1\t0x8EE9\n0x8EA2C0F2\t0x902D\n0x8EA2C0F3\t0x9034\n0x8EA2C0F4\t0x902F\n0x8EA2C0F5\t0x9106\n0x8EA2C0F6\t0x912C\n0x8EA2C0F7\t0x9104\n0x8EA2C0F8\t0x90FF\n0x8EA2C0F9\t0x90FC\n0x8EA2C0FA\t0x9108\n0x8EA2C0FB\t0x90F9\n0x8EA2C0FC\t0x90FB\n0x8EA2C0FD\t0x9101\n0x8EA2C0FE\t0x9100\n0x8EA2C1A1\t0x9107\n0x8EA2C1A2\t0x9105\n0x8EA2C1A3\t0x9103\n0x8EA2C1A4\t0x9161\n0x8EA2C1A5\t0x9164\n0x8EA2C1A6\t0x915F\n0x8EA2C1A7\t0x9162\n0x8EA2C1A8\t0x9160\n0x8EA2C1A9\t0x9201\n0x8EA2C1AA\t0x920A\n0x8EA2C1AB\t0x9225\n0x8EA2C1AC\t0x9203\n0x8EA2C1AD\t0x921A\n0x8EA2C1AE\t0x9226\n0x8EA2C1AF\t0x920F\n0x8EA2C1B0\t0x920C\n0x8EA2C1B1\t0x9200\n0x8EA2C1B2\t0x9212\n0x8EA2C1B3\t0x91FF\n0x8EA2C1B4\t0x91FD\n0x8EA2C1B5\t0x9206\n0x8EA2C1B6\t0x9204\n0x8EA2C1B7\t0x9227\n0x8EA2C1B8\t0x9202\n0x8EA2C1B9\t0x921C\n0x8EA2C1BA\t0x9224\n0x8EA2C1BB\t0x9219\n0x8EA2C1BC\t0x9217\n0x8EA2C1BD\t0x9205\n0x8EA2C1BE\t0x9216\n0x8EA2C1BF\t0x957B\n0x8EA2C1C0\t0x958D\n0x8EA2C1C1\t0x958C\n0x8EA2C1C2\t0x9590\n0x8EA2C1C3\t0x9687\n0x8EA2C1C4\t0x967E\n0x8EA2C1C5\t0x9688\n0x8EA2C1C6\t0x9689\n0x8EA2C1C7\t0x9683\n0x8EA2C1C8\t0x9680\n0x8EA2C1C9\t0x96C2\n0x8EA2C1CA\t0x96C8\n0x8EA2C1CB\t0x96C3\n0x8EA2C1CC\t0x96F1\n0x8EA2C1CD\t0x96F0\n0x8EA2C1CE\t0x976C\n0x8EA2C1CF\t0x9770\n0x8EA2C1D0\t0x976E\n0x8EA2C1D1\t0x9807\n0x8EA2C1D2\t0x98A9\n0x8EA2C1D3\t0x98EB\n0x8EA2C1D4\t0x9CE6\n0x8EA2C1D5\t0x9EF9\n0x8EA2C1D6\t0x4E83\n0x8EA2C1D7\t0x4E84\n0x8EA2C1D8\t0x4EB6\n0x8EA2C1D9\t0x50BD\n0x8EA2C1DA\t0x50BF\n0x8EA2C1DB\t0x50C6\n0x8EA2C1DC\t0x50AE\n0x8EA2C1DD\t0x50C4\n0x8EA2C1DE\t0x50CA\n0x8EA2C1DF\t0x50B4\n0x8EA2C1E0\t0x50C8\n0x8EA2C1E1\t0x50C2\n0x8EA2C1E2\t0x50B0\n0x8EA2C1E3\t0x50C1\n0x8EA2C1E4\t0x50BA\n0x8EA2C1E5\t0x50B1\n0x8EA2C1E6\t0x50CB\n0x8EA2C1E7\t0x50C9\n0x8EA2C1E8\t0x50B6\n0x8EA2C1E9\t0x50B8\n0x8EA2C1EA\t0x51D7\n0x8EA2C1EB\t0x527A\n0x8EA2C1EC\t0x5278\n0x8EA2C1ED\t0x527B\n0x8EA2C1EE\t0x527C\n0x8EA2C1EF\t0x55C3\n0x8EA2C1F0\t0x55DB\n0x8EA2C1F1\t0x55CC\n0x8EA2C1F2\t0x55D0\n0x8EA2C1F3\t0x55CB\n0x8EA2C1F4\t0x55CA\n0x8EA2C1F5\t0x55DD\n0x8EA2C1F6\t0x55C0\n0x8EA2C1F7\t0x55D4\n0x8EA2C1F8\t0x55C4\n0x8EA2C1F9\t0x55E9\n0x8EA2C1FA\t0x55BF\n0x8EA2C1FB\t0x55D2\n0x8EA2C1FC\t0x558D\n0x8EA2C1FD\t0x55CF\n0x8EA2C1FE\t0x55D5\n0x8EA2C2A1\t0x55E2\n0x8EA2C2A2\t0x55D6\n0x8EA2C2A3\t0x55C8\n0x8EA2C2A4\t0x55F2\n0x8EA2C2A5\t0x55CD\n0x8EA2C2A6\t0x55D9\n0x8EA2C2A7\t0x55C2\n0x8EA2C2A8\t0x5714\n0x8EA2C2A9\t0x5853\n0x8EA2C2AA\t0x5868\n0x8EA2C2AB\t0x5864\n0x8EA2C2AC\t0x584F\n0x8EA2C2AD\t0x584D\n0x8EA2C2AE\t0x5849\n0x8EA2C2AF\t0x586F\n0x8EA2C2B0\t0x5855\n0x8EA2C2B1\t0x584E\n0x8EA2C2B2\t0x585D\n0x8EA2C2B3\t0x5859\n0x8EA2C2B4\t0x5865\n0x8EA2C2B5\t0x585B\n0x8EA2C2B6\t0x583D\n0x8EA2C2B7\t0x5863\n0x8EA2C2B8\t0x5871\n0x8EA2C2B9\t0x58FC\n0x8EA2C2BA\t0x5AC7\n0x8EA2C2BB\t0x5AC4\n0x8EA2C2BC\t0x5ACB\n0x8EA2C2BD\t0x5ABA\n0x8EA2C2BE\t0x5AB8\n0x8EA2C2BF\t0x5AB1\n0x8EA2C2C0\t0x5AB5\n0x8EA2C2C1\t0x5AB0\n0x8EA2C2C2\t0x5ABF\n0x8EA2C2C3\t0x5AC8\n0x8EA2C2C4\t0x5ABB\n0x8EA2C2C5\t0x5AC6\n0x8EA2C2C6\t0x5AB7\n0x8EA2C2C7\t0x5AC0\n0x8EA2C2C8\t0x5ACA\n0x8EA2C2C9\t0x5AB4\n0x8EA2C2CA\t0x5AB6\n0x8EA2C2CB\t0x5ACD\n0x8EA2C2CC\t0x5AB9\n0x8EA2C2CD\t0x5A90\n0x8EA2C2CE\t0x5BD6\n0x8EA2C2CF\t0x5BD8\n0x8EA2C2D0\t0x5BD9\n0x8EA2C2D1\t0x5C1F\n0x8EA2C2D2\t0x5C33\n0x8EA2C2D3\t0x5D71\n0x8EA2C2D4\t0x5D63\n0x8EA2C2D5\t0x5D4A\n0x8EA2C2D6\t0x5D65\n0x8EA2C2D7\t0x5D72\n0x8EA2C2D8\t0x5D6C\n0x8EA2C2D9\t0x5D5E\n0x8EA2C2DA\t0x5D68\n0x8EA2C2DB\t0x5D67\n0x8EA2C2DC\t0x5D62\n0x8EA2C2DD\t0x5DF0\n0x8EA2C2DE\t0x5E4F\n0x8EA2C2DF\t0x5E4E\n0x8EA2C2E0\t0x5E4A\n0x8EA2C2E1\t0x5E4D\n0x8EA2C2E2\t0x5E4B\n0x8EA2C2E3\t0x5EC5\n0x8EA2C2E4\t0x5ECC\n0x8EA2C2E5\t0x5EC6\n0x8EA2C2E6\t0x5ECB\n0x8EA2C2E7\t0x5EC7\n0x8EA2C2E8\t0x5F40\n0x8EA2C2E9\t0x5FAF\n0x8EA2C2EA\t0x5FAD\n0x8EA2C2EB\t0x60F7\n0x8EA2C2EC\t0x6149\n0x8EA2C2ED\t0x614A\n0x8EA2C2EE\t0x612B\n0x8EA2C2EF\t0x6145\n0x8EA2C2F0\t0x6136\n0x8EA2C2F1\t0x6132\n0x8EA2C2F2\t0x612E\n0x8EA2C2F3\t0x6146\n0x8EA2C2F4\t0x612F\n0x8EA2C2F5\t0x614F\n0x8EA2C2F6\t0x6129\n0x8EA2C2F7\t0x6140\n0x8EA2C2F8\t0x6220\n0x8EA2C2F9\t0x9168\n0x8EA2C2FA\t0x6223\n0x8EA2C2FB\t0x6225\n0x8EA2C2FC\t0x6224\n0x8EA2C2FD\t0x63C5\n0x8EA2C2FE\t0x63F1\n0x8EA2C3A1\t0x63EB\n0x8EA2C3A2\t0x6410\n0x8EA2C3A3\t0x6412\n0x8EA2C3A4\t0x6409\n0x8EA2C3A5\t0x6420\n0x8EA2C3A6\t0x6424\n0x8EA2C3A7\t0x6433\n0x8EA2C3A8\t0x6443\n0x8EA2C3A9\t0x641F\n0x8EA2C3AA\t0x6415\n0x8EA2C3AB\t0x6418\n0x8EA2C3AC\t0x6439\n0x8EA2C3AD\t0x6437\n0x8EA2C3AE\t0x6422\n0x8EA2C3AF\t0x6423\n0x8EA2C3B0\t0x640C\n0x8EA2C3B1\t0x6426\n0x8EA2C3B2\t0x6430\n0x8EA2C3B3\t0x6428\n0x8EA2C3B4\t0x6441\n0x8EA2C3B5\t0x6435\n0x8EA2C3B6\t0x642F\n0x8EA2C3B7\t0x640A\n0x8EA2C3B8\t0x641A\n0x8EA2C3B9\t0x6440\n0x8EA2C3BA\t0x6425\n0x8EA2C3BB\t0x6427\n0x8EA2C3BC\t0x640B\n0x8EA2C3BD\t0x63E7\n0x8EA2C3BE\t0x641B\n0x8EA2C3BF\t0x642E\n0x8EA2C3C0\t0x6421\n0x8EA2C3C1\t0x640E\n0x8EA2C3C2\t0x656F\n0x8EA2C3C3\t0x6592\n0x8EA2C3C4\t0x65D3\n0x8EA2C3C5\t0x6686\n0x8EA2C3C6\t0x668C\n0x8EA2C3C7\t0x6695\n0x8EA2C3C8\t0x6690\n0x8EA2C3C9\t0x668B\n0x8EA2C3CA\t0x668A\n0x8EA2C3CB\t0x6699\n0x8EA2C3CC\t0x6694\n0x8EA2C3CD\t0x6678\n0x8EA2C3CE\t0x6720\n0x8EA2C3CF\t0x6966\n0x8EA2C3D0\t0x695F\n0x8EA2C3D1\t0x6938\n0x8EA2C3D2\t0x694E\n0x8EA2C3D3\t0x6962\n0x8EA2C3D4\t0x6971\n0x8EA2C3D5\t0x693F\n0x8EA2C3D6\t0x6945\n0x8EA2C3D7\t0x696A\n0x8EA2C3D8\t0x6939\n0x8EA2C3D9\t0x6942\n0x8EA2C3DA\t0x6957\n0x8EA2C3DB\t0x6959\n0x8EA2C3DC\t0x697A\n0x8EA2C3DD\t0x6948\n0x8EA2C3DE\t0x6949\n0x8EA2C3DF\t0x6935\n0x8EA2C3E0\t0x696C\n0x8EA2C3E1\t0x6933\n0x8EA2C3E2\t0x693D\n0x8EA2C3E3\t0x6965\n0x8EA2C3E4\t0x68F0\n0x8EA2C3E5\t0x6978\n0x8EA2C3E6\t0x6934\n0x8EA2C3E7\t0x6969\n0x8EA2C3E8\t0x6940\n0x8EA2C3E9\t0x696F\n0x8EA2C3EA\t0x6944\n0x8EA2C3EB\t0x6976\n0x8EA2C3EC\t0x6958\n0x8EA2C3ED\t0x6941\n0x8EA2C3EE\t0x6974\n0x8EA2C3EF\t0x694C\n0x8EA2C3F0\t0x693B\n0x8EA2C3F1\t0x694B\n0x8EA2C3F2\t0x6937\n0x8EA2C3F3\t0x695C\n0x8EA2C3F4\t0x694F\n0x8EA2C3F5\t0x6951\n0x8EA2C3F6\t0x6932\n0x8EA2C3F7\t0x6952\n0x8EA2C3F8\t0x692F\n0x8EA2C3F9\t0x697B\n0x8EA2C3FA\t0x693C\n0x8EA2C3FB\t0x6B46\n0x8EA2C3FC\t0x6B45\n0x8EA2C3FD\t0x6B43\n0x8EA2C3FE\t0x6B42\n0x8EA2C4A1\t0x6B48\n0x8EA2C4A2\t0x6B41\n0x8EA2C4A3\t0x6B9B\n0x8EA2C4A4\t0x6BFB\n0x8EA2C4A5\t0x6BFC\n0x8EA2C4A6\t0x6BF9\n0x8EA2C4A7\t0x6BF7\n0x8EA2C4A8\t0x6BF8\n0x8EA2C4A9\t0x6E9B\n0x8EA2C4AA\t0x6ED6\n0x8EA2C4AB\t0x6EC8\n0x8EA2C4AC\t0x6E8F\n0x8EA2C4AD\t0x6EC0\n0x8EA2C4AE\t0x6E9F\n0x8EA2C4AF\t0x6E93\n0x8EA2C4B0\t0x6E94\n0x8EA2C4B1\t0x6EA0\n0x8EA2C4B2\t0x6EB1\n0x8EA2C4B3\t0x6EB9\n0x8EA2C4B4\t0x6EC6\n0x8EA2C4B5\t0x6ED2\n0x8EA2C4B6\t0x6EBD\n0x8EA2C4B7\t0x6EC1\n0x8EA2C4B8\t0x6E9E\n0x8EA2C4B9\t0x6EC9\n0x8EA2C4BA\t0x6EB7\n0x8EA2C4BB\t0x6EB0\n0x8EA2C4BC\t0x6ECD\n0x8EA2C4BD\t0x6EA6\n0x8EA2C4BE\t0x6ECF\n0x8EA2C4BF\t0x6EB2\n0x8EA2C4C0\t0x6EBE\n0x8EA2C4C1\t0x6EC3\n0x8EA2C4C2\t0x6EDC\n0x8EA2C4C3\t0x6ED8\n0x8EA2C4C4\t0x6E99\n0x8EA2C4C5\t0x6E92\n0x8EA2C4C6\t0x6E8E\n0x8EA2C4C7\t0x6E8D\n0x8EA2C4C8\t0x6EA4\n0x8EA2C4C9\t0x6EA1\n0x8EA2C4CA\t0x6EBF\n0x8EA2C4CB\t0x6EB3\n0x8EA2C4CC\t0x6ED0\n0x8EA2C4CD\t0x6ECA\n0x8EA2C4CE\t0x6E97\n0x8EA2C4CF\t0x6EAE\n0x8EA2C4D0\t0x6EA3\n0x8EA2C4D1\t0x7147\n0x8EA2C4D2\t0x7154\n0x8EA2C4D3\t0x7152\n0x8EA2C4D4\t0x7163\n0x8EA2C4D5\t0x7160\n0x8EA2C4D6\t0x7141\n0x8EA2C4D7\t0x715D\n0x8EA2C4D8\t0x7162\n0x8EA2C4D9\t0x7172\n0x8EA2C4DA\t0x7178\n0x8EA2C4DB\t0x716A\n0x8EA2C4DC\t0x7161\n0x8EA2C4DD\t0x7142\n0x8EA2C4DE\t0x7158\n0x8EA2C4DF\t0x7143\n0x8EA2C4E0\t0x714B\n0x8EA2C4E1\t0x7170\n0x8EA2C4E2\t0x715F\n0x8EA2C4E3\t0x7150\n0x8EA2C4E4\t0x7153\n0x8EA2C4E5\t0x7144\n0x8EA2C4E6\t0x714D\n0x8EA2C4E7\t0x715A\n0x8EA2C4E8\t0x724F\n0x8EA2C4E9\t0x728D\n0x8EA2C4EA\t0x728C\n0x8EA2C4EB\t0x7291\n0x8EA2C4EC\t0x7290\n0x8EA2C4ED\t0x728E\n0x8EA2C4EE\t0x733C\n0x8EA2C4EF\t0x7342\n0x8EA2C4F0\t0x733B\n0x8EA2C4F1\t0x733A\n0x8EA2C4F2\t0x7340\n0x8EA2C4F3\t0x734A\n0x8EA2C4F4\t0x7349\n0x8EA2C4F5\t0x7444\n0x8EA2C4F6\t0x744A\n0x8EA2C4F7\t0x744B\n0x8EA2C4F8\t0x7452\n0x8EA2C4F9\t0x7451\n0x8EA2C4FA\t0x7457\n0x8EA2C4FB\t0x7440\n0x8EA2C4FC\t0x744F\n0x8EA2C4FD\t0x7450\n0x8EA2C4FE\t0x744E\n0x8EA2C5A1\t0x7442\n0x8EA2C5A2\t0x7446\n0x8EA2C5A3\t0x744D\n0x8EA2C5A4\t0x7454\n0x8EA2C5A5\t0x74E1\n0x8EA2C5A6\t0x74FF\n0x8EA2C5A7\t0x74FE\n0x8EA2C5A8\t0x74FD\n0x8EA2C5A9\t0x751D\n0x8EA2C5AA\t0x7579\n0x8EA2C5AB\t0x7577\n0x8EA2C5AC\t0x6983\n0x8EA2C5AD\t0x75EF\n0x8EA2C5AE\t0x760F\n0x8EA2C5AF\t0x7603\n0x8EA2C5B0\t0x75F7\n0x8EA2C5B1\t0x75FE\n0x8EA2C5B2\t0x75FC\n0x8EA2C5B3\t0x75F9\n0x8EA2C5B4\t0x75F8\n0x8EA2C5B5\t0x7610\n0x8EA2C5B6\t0x75FB\n0x8EA2C5B7\t0x75F6\n0x8EA2C5B8\t0x75ED\n0x8EA2C5B9\t0x75F5\n0x8EA2C5BA\t0x75FD\n0x8EA2C5BB\t0x7699\n0x8EA2C5BC\t0x76B5\n0x8EA2C5BD\t0x76DD\n0x8EA2C5BE\t0x7755\n0x8EA2C5BF\t0x775F\n0x8EA2C5C0\t0x7760\n0x8EA2C5C1\t0x7752\n0x8EA2C5C2\t0x7756\n0x8EA2C5C3\t0x775A\n0x8EA2C5C4\t0x7769\n0x8EA2C5C5\t0x7767\n0x8EA2C5C6\t0x7754\n0x8EA2C5C7\t0x7759\n0x8EA2C5C8\t0x776D\n0x8EA2C5C9\t0x77E0\n0x8EA2C5CA\t0x7887\n0x8EA2C5CB\t0x789A\n0x8EA2C5CC\t0x7894\n0x8EA2C5CD\t0x788F\n0x8EA2C5CE\t0x7884\n0x8EA2C5CF\t0x7895\n0x8EA2C5D0\t0x7885\n0x8EA2C5D1\t0x7886\n0x8EA2C5D2\t0x78A1\n0x8EA2C5D3\t0x7883\n0x8EA2C5D4\t0x7879\n0x8EA2C5D5\t0x7899\n0x8EA2C5D6\t0x7880\n0x8EA2C5D7\t0x7896\n0x8EA2C5D8\t0x787B\n0x8EA2C5D9\t0x797C\n0x8EA2C5DA\t0x7982\n0x8EA2C5DB\t0x797D\n0x8EA2C5DC\t0x7979\n0x8EA2C5DD\t0x7A11\n0x8EA2C5DE\t0x7A18\n0x8EA2C5DF\t0x7A19\n0x8EA2C5E0\t0x7A12\n0x8EA2C5E1\t0x7A17\n0x8EA2C5E2\t0x7A15\n0x8EA2C5E3\t0x7A22\n0x8EA2C5E4\t0x7A13\n0x8EA2C5E5\t0x7A1B\n0x8EA2C5E6\t0x7A10\n0x8EA2C5E7\t0x7AA3\n0x8EA2C5E8\t0x7AA2\n0x8EA2C5E9\t0x7A9E\n0x8EA2C5EA\t0x7AEB\n0x8EA2C5EB\t0x7B66\n0x8EA2C5EC\t0x7B64\n0x8EA2C5ED\t0x7B6D\n0x8EA2C5EE\t0x7B74\n0x8EA2C5EF\t0x7B69\n0x8EA2C5F0\t0x7B72\n0x8EA2C5F1\t0x7B65\n0x8EA2C5F2\t0x7B73\n0x8EA2C5F3\t0x7B71\n0x8EA2C5F4\t0x7B70\n0x8EA2C5F5\t0x7B61\n0x8EA2C5F6\t0x7B78\n0x8EA2C5F7\t0x7B76\n0x8EA2C5F8\t0x7B63\n0x8EA2C5F9\t0x7CB2\n0x8EA2C5FA\t0x7CB4\n0x8EA2C5FB\t0x7CAF\n0x8EA2C5FC\t0x7D88\n0x8EA2C5FD\t0x7D86\n0x8EA2C5FE\t0x7D80\n0x8EA2C6A1\t0x7D8D\n0x8EA2C6A2\t0x7D7F\n0x8EA2C6A3\t0x7D85\n0x8EA2C6A4\t0x7D7A\n0x8EA2C6A5\t0x7D8E\n0x8EA2C6A6\t0x7D7B\n0x8EA2C6A7\t0x7D83\n0x8EA2C6A8\t0x7D7C\n0x8EA2C6A9\t0x7D8C\n0x8EA2C6AA\t0x7D94\n0x8EA2C6AB\t0x7D84\n0x8EA2C6AC\t0x7D7D\n0x8EA2C6AD\t0x7D92\n0x8EA2C6AE\t0x7F6D\n0x8EA2C6AF\t0x7F6B\n0x8EA2C6B0\t0x7F67\n0x8EA2C6B1\t0x7F68\n0x8EA2C6B2\t0x7F6C\n0x8EA2C6B3\t0x7FA6\n0x8EA2C6B4\t0x7FA5\n0x8EA2C6B5\t0x7FA7\n0x8EA2C6B6\t0x7FDB\n0x8EA2C6B7\t0x7FDC\n0x8EA2C6B8\t0x8021\n0x8EA2C6B9\t0x8164\n0x8EA2C6BA\t0x8160\n0x8EA2C6BB\t0x8177\n0x8EA2C6BC\t0x815C\n0x8EA2C6BD\t0x8169\n0x8EA2C6BE\t0x815B\n0x8EA2C6BF\t0x8162\n0x8EA2C6C0\t0x8172\n0x8EA2C6C1\t0x6721\n0x8EA2C6C2\t0x815E\n0x8EA2C6C3\t0x8176\n0x8EA2C6C4\t0x8167\n0x8EA2C6C5\t0x816F\n0x8EA2C6C6\t0x8144\n0x8EA2C6C7\t0x8161\n0x8EA2C6C8\t0x821D\n0x8EA2C6C9\t0x8249\n0x8EA2C6CA\t0x8244\n0x8EA2C6CB\t0x8240\n0x8EA2C6CC\t0x8242\n0x8EA2C6CD\t0x8245\n0x8EA2C6CE\t0x84F1\n0x8EA2C6CF\t0x843F\n0x8EA2C6D0\t0x8456\n0x8EA2C6D1\t0x8476\n0x8EA2C6D2\t0x8479\n0x8EA2C6D3\t0x848F\n0x8EA2C6D4\t0x848D\n0x8EA2C6D5\t0x8465\n0x8EA2C6D6\t0x8451\n0x8EA2C6D7\t0x8440\n0x8EA2C6D8\t0x8486\n0x8EA2C6D9\t0x8467\n0x8EA2C6DA\t0x8430\n0x8EA2C6DB\t0x844D\n0x8EA2C6DC\t0x847D\n0x8EA2C6DD\t0x845A\n0x8EA2C6DE\t0x8459\n0x8EA2C6DF\t0x8474\n0x8EA2C6E0\t0x8473\n0x8EA2C6E1\t0x845D\n0x8EA2C6E2\t0x8507\n0x8EA2C6E3\t0x845E\n0x8EA2C6E4\t0x8437\n0x8EA2C6E5\t0x843A\n0x8EA2C6E6\t0x8434\n0x8EA2C6E7\t0x847A\n0x8EA2C6E8\t0x8443\n0x8EA2C6E9\t0x8478\n0x8EA2C6EA\t0x8432\n0x8EA2C6EB\t0x8445\n0x8EA2C6EC\t0x8429\n0x8EA2C6ED\t0x83D9\n0x8EA2C6EE\t0x844B\n0x8EA2C6EF\t0x842F\n0x8EA2C6F0\t0x8442\n0x8EA2C6F1\t0x842D\n0x8EA2C6F2\t0x845F\n0x8EA2C6F3\t0x8470\n0x8EA2C6F4\t0x8439\n0x8EA2C6F5\t0x844E\n0x8EA2C6F6\t0x844C\n0x8EA2C6F7\t0x8452\n0x8EA2C6F8\t0x846F\n0x8EA2C6F9\t0x84C5\n0x8EA2C6FA\t0x848E\n0x8EA2C6FB\t0x843B\n0x8EA2C6FC\t0x8447\n0x8EA2C6FD\t0x8436\n0x8EA2C6FE\t0x8433\n0x8EA2C7A1\t0x8468\n0x8EA2C7A2\t0x847E\n0x8EA2C7A3\t0x8444\n0x8EA2C7A4\t0x842B\n0x8EA2C7A5\t0x8460\n0x8EA2C7A6\t0x8454\n0x8EA2C7A7\t0x846E\n0x8EA2C7A8\t0x8450\n0x8EA2C7A9\t0x870B\n0x8EA2C7AA\t0x8704\n0x8EA2C7AB\t0x86F7\n0x8EA2C7AC\t0x870C\n0x8EA2C7AD\t0x86FA\n0x8EA2C7AE\t0x86D6\n0x8EA2C7AF\t0x86F5\n0x8EA2C7B0\t0x874D\n0x8EA2C7B1\t0x86F8\n0x8EA2C7B2\t0x870E\n0x8EA2C7B3\t0x8709\n0x8EA2C7B4\t0x8701\n0x8EA2C7B5\t0x86F6\n0x8EA2C7B6\t0x870D\n0x8EA2C7B7\t0x8705\n0x8EA2C7B8\t0x88D6\n0x8EA2C7B9\t0x88CB\n0x8EA2C7BA\t0x88CD\n0x8EA2C7BB\t0x88CE\n0x8EA2C7BC\t0x88DE\n0x8EA2C7BD\t0x88DB\n0x8EA2C7BE\t0x88DA\n0x8EA2C7BF\t0x88CC\n0x8EA2C7C0\t0x88D0\n0x8EA2C7C1\t0x8985\n0x8EA2C7C2\t0x899B\n0x8EA2C7C3\t0x89DF\n0x8EA2C7C4\t0x89E5\n0x8EA2C7C5\t0x89E4\n0x8EA2C7C6\t0x89E1\n0x8EA2C7C7\t0x89E0\n0x8EA2C7C8\t0x89E2\n0x8EA2C7C9\t0x89DC\n0x8EA2C7CA\t0x89E6\n0x8EA2C7CB\t0x8A76\n0x8EA2C7CC\t0x8A86\n0x8EA2C7CD\t0x8A7F\n0x8EA2C7CE\t0x8A61\n0x8EA2C7CF\t0x8A3F\n0x8EA2C7D0\t0x8A77\n0x8EA2C7D1\t0x8A82\n0x8EA2C7D2\t0x8A84\n0x8EA2C7D3\t0x8A75\n0x8EA2C7D4\t0x8A83\n0x8EA2C7D5\t0x8A81\n0x8EA2C7D6\t0x8A74\n0x8EA2C7D7\t0x8A7A\n0x8EA2C7D8\t0x8C3C\n0x8EA2C7D9\t0x8C4B\n0x8EA2C7DA\t0x8C4A\n0x8EA2C7DB\t0x8C65\n0x8EA2C7DC\t0x8C64\n0x8EA2C7DD\t0x8C66\n0x8EA2C7DE\t0x8C86\n0x8EA2C7DF\t0x8C84\n0x8EA2C7E0\t0x8C85\n0x8EA2C7E1\t0x8CCC\n0x8EA2C7E2\t0x8D68\n0x8EA2C7E3\t0x8D69\n0x8EA2C7E4\t0x8D91\n0x8EA2C7E5\t0x8D8C\n0x8EA2C7E6\t0x8D8E\n0x8EA2C7E7\t0x8D8F\n0x8EA2C7E8\t0x8D8D\n0x8EA2C7E9\t0x8D93\n0x8EA2C7EA\t0x8D94\n0x8EA2C7EB\t0x8D90\n0x8EA2C7EC\t0x8D92\n0x8EA2C7ED\t0x8DF0\n0x8EA2C7EE\t0x8DE0\n0x8EA2C7EF\t0x8DEC\n0x8EA2C7F0\t0x8DF1\n0x8EA2C7F1\t0x8DEE\n0x8EA2C7F2\t0x8DD0\n0x8EA2C7F3\t0x8DE9\n0x8EA2C7F4\t0x8DE3\n0x8EA2C7F5\t0x8DE2\n0x8EA2C7F6\t0x8DE7\n0x8EA2C7F7\t0x8DF2\n0x8EA2C7F8\t0x8DEB\n0x8EA2C7F9\t0x8DF4\n0x8EA2C7FA\t0x8F06\n0x8EA2C7FB\t0x8EFF\n0x8EA2C7FC\t0x8F01\n0x8EA2C7FD\t0x8F00\n0x8EA2C7FE\t0x8F05\n0x8EA2C8A1\t0x8F07\n0x8EA2C8A2\t0x8F08\n0x8EA2C8A3\t0x8F02\n0x8EA2C8A4\t0x8F0B\n0x8EA2C8A5\t0x9052\n0x8EA2C8A6\t0x903F\n0x8EA2C8A7\t0x9044\n0x8EA2C8A8\t0x9049\n0x8EA2C8A9\t0x903D\n0x8EA2C8AA\t0x9110\n0x8EA2C8AB\t0x910D\n0x8EA2C8AC\t0x910F\n0x8EA2C8AD\t0x9111\n0x8EA2C8AE\t0x9116\n0x8EA2C8AF\t0x9114\n0x8EA2C8B0\t0x910B\n0x8EA2C8B1\t0x910E\n0x8EA2C8B2\t0x916E\n0x8EA2C8B3\t0x916F\n0x8EA2C8B4\t0x9248\n0x8EA2C8B5\t0x9252\n0x8EA2C8B6\t0x9230\n0x8EA2C8B7\t0x923A\n0x8EA2C8B8\t0x9266\n0x8EA2C8B9\t0x9233\n0x8EA2C8BA\t0x9265\n0x8EA2C8BB\t0x925E\n0x8EA2C8BC\t0x9283\n0x8EA2C8BD\t0x922E\n0x8EA2C8BE\t0x924A\n0x8EA2C8BF\t0x9246\n0x8EA2C8C0\t0x926D\n0x8EA2C8C1\t0x926C\n0x8EA2C8C2\t0x924F\n0x8EA2C8C3\t0x9260\n0x8EA2C8C4\t0x9267\n0x8EA2C8C5\t0x926F\n0x8EA2C8C6\t0x9236\n0x8EA2C8C7\t0x9261\n0x8EA2C8C8\t0x9270\n0x8EA2C8C9\t0x9231\n0x8EA2C8CA\t0x9254\n0x8EA2C8CB\t0x9263\n0x8EA2C8CC\t0x9250\n0x8EA2C8CD\t0x9272\n0x8EA2C8CE\t0x924E\n0x8EA2C8CF\t0x9253\n0x8EA2C8D0\t0x924C\n0x8EA2C8D1\t0x9256\n0x8EA2C8D2\t0x9232\n0x8EA2C8D3\t0x959F\n0x8EA2C8D4\t0x959C\n0x8EA2C8D5\t0x959E\n0x8EA2C8D6\t0x959B\n0x8EA2C8D7\t0x9692\n0x8EA2C8D8\t0x9693\n0x8EA2C8D9\t0x9691\n0x8EA2C8DA\t0x9697\n0x8EA2C8DB\t0x96CE\n0x8EA2C8DC\t0x96FA\n0x8EA2C8DD\t0x96FD\n0x8EA2C8DE\t0x96F8\n0x8EA2C8DF\t0x96F5\n0x8EA2C8E0\t0x9773\n0x8EA2C8E1\t0x9777\n0x8EA2C8E2\t0x9778\n0x8EA2C8E3\t0x9772\n0x8EA2C8E4\t0x980F\n0x8EA2C8E5\t0x980D\n0x8EA2C8E6\t0x980E\n0x8EA2C8E7\t0x98AC\n0x8EA2C8E8\t0x98F6\n0x8EA2C8E9\t0x98F9\n0x8EA2C8EA\t0x99AF\n0x8EA2C8EB\t0x99B2\n0x8EA2C8EC\t0x99B0\n0x8EA2C8ED\t0x99B5\n0x8EA2C8EE\t0x9AAD\n0x8EA2C8EF\t0x9AAB\n0x8EA2C8F0\t0x9B5B\n0x8EA2C8F1\t0x9CEA\n0x8EA2C8F2\t0x9CED\n0x8EA2C8F3\t0x9CE7\n0x8EA2C8F4\t0x9E80\n0x8EA2C8F5\t0x9EFD\n0x8EA2C8F6\t0x50E6\n0x8EA2C8F7\t0x50D4\n0x8EA2C8F8\t0x50D7\n0x8EA2C8F9\t0x50E8\n0x8EA2C8FA\t0x50F3\n0x8EA2C8FB\t0x50DB\n0x8EA2C8FC\t0x50EA\n0x8EA2C8FD\t0x50DD\n0x8EA2C8FE\t0x50E4\n0x8EA2C9A1\t0x50D3\n0x8EA2C9A2\t0x50EC\n0x8EA2C9A3\t0x50F0\n0x8EA2C9A4\t0x50EF\n0x8EA2C9A5\t0x50E3\n0x8EA2C9A6\t0x50E0\n0x8EA2C9A7\t0x51D8\n0x8EA2C9A8\t0x5280\n0x8EA2C9A9\t0x5281\n0x8EA2C9AA\t0x52E9\n0x8EA2C9AB\t0x52EB\n0x8EA2C9AC\t0x5330\n0x8EA2C9AD\t0x53AC\n0x8EA2C9AE\t0x5627\n0x8EA2C9AF\t0x5615\n0x8EA2C9B0\t0x560C\n0x8EA2C9B1\t0x5612\n0x8EA2C9B2\t0x55FC\n0x8EA2C9B3\t0x560F\n0x8EA2C9B4\t0x561C\n0x8EA2C9B5\t0x5601\n0x8EA2C9B6\t0x5613\n0x8EA2C9B7\t0x5602\n0x8EA2C9B8\t0x55FA\n0x8EA2C9B9\t0x561D\n0x8EA2C9BA\t0x5604\n0x8EA2C9BB\t0x55FF\n0x8EA2C9BC\t0x55F9\n0x8EA2C9BD\t0x5889\n0x8EA2C9BE\t0x587C\n0x8EA2C9BF\t0x5890\n0x8EA2C9C0\t0x5898\n0x8EA2C9C1\t0x5886\n0x8EA2C9C2\t0x5881\n0x8EA2C9C3\t0x587F\n0x8EA2C9C4\t0x5874\n0x8EA2C9C5\t0x588B\n0x8EA2C9C6\t0x587A\n0x8EA2C9C7\t0x5887\n0x8EA2C9C8\t0x5891\n0x8EA2C9C9\t0x588E\n0x8EA2C9CA\t0x5876\n0x8EA2C9CB\t0x5882\n0x8EA2C9CC\t0x5888\n0x8EA2C9CD\t0x587B\n0x8EA2C9CE\t0x5894\n0x8EA2C9CF\t0x588F\n0x8EA2C9D0\t0x58FE\n0x8EA2C9D1\t0x596B\n0x8EA2C9D2\t0x5ADC\n0x8EA2C9D3\t0x5AEE\n0x8EA2C9D4\t0x5AE5\n0x8EA2C9D5\t0x5AD5\n0x8EA2C9D6\t0x5AEA\n0x8EA2C9D7\t0x5ADA\n0x8EA2C9D8\t0x5AED\n0x8EA2C9D9\t0x5AEB\n0x8EA2C9DA\t0x5AF3\n0x8EA2C9DB\t0x5AE2\n0x8EA2C9DC\t0x5AE0\n0x8EA2C9DD\t0x5ADB\n0x8EA2C9DE\t0x5AEC\n0x8EA2C9DF\t0x5ADE\n0x8EA2C9E0\t0x5ADD\n0x8EA2C9E1\t0x5AD9\n0x8EA2C9E2\t0x5AE8\n0x8EA2C9E3\t0x5ADF\n0x8EA2C9E4\t0x5B77\n0x8EA2C9E5\t0x5BE0\n0x8EA2C9E6\t0x5BE3\n0x8EA2C9E7\t0x5C63\n0x8EA2C9E8\t0x5D82\n0x8EA2C9E9\t0x5D80\n0x8EA2C9EA\t0x5D7D\n0x8EA2C9EB\t0x5D86\n0x8EA2C9EC\t0x5D7A\n0x8EA2C9ED\t0x5D81\n0x8EA2C9EE\t0x5D77\n0x8EA2C9EF\t0x5D8A\n0x8EA2C9F0\t0x5D89\n0x8EA2C9F1\t0x5D88\n0x8EA2C9F2\t0x5D7E\n0x8EA2C9F3\t0x5D7C\n0x8EA2C9F4\t0x5D8D\n0x8EA2C9F5\t0x5D79\n0x8EA2C9F6\t0x5D7F\n0x8EA2C9F7\t0x5E58\n0x8EA2C9F8\t0x5E59\n0x8EA2C9F9\t0x5E53\n0x8EA2C9FA\t0x5ED8\n0x8EA2C9FB\t0x5ED1\n0x8EA2C9FC\t0x5ED7\n0x8EA2C9FD\t0x5ECE\n0x8EA2C9FE\t0x5EDC\n0x8EA2CAA1\t0x5ED5\n0x8EA2CAA2\t0x5ED9\n0x8EA2CAA3\t0x5ED2\n0x8EA2CAA4\t0x5ED4\n0x8EA2CAA5\t0x5F44\n0x8EA2CAA6\t0x5F43\n0x8EA2CAA7\t0x5F6F\n0x8EA2CAA8\t0x5FB6\n0x8EA2CAA9\t0x612C\n0x8EA2CAAA\t0x6128\n0x8EA2CAAB\t0x6141\n0x8EA2CAAC\t0x615E\n0x8EA2CAAD\t0x6171\n0x8EA2CAAE\t0x6173\n0x8EA2CAAF\t0x6152\n0x8EA2CAB0\t0x6153\n0x8EA2CAB1\t0x6172\n0x8EA2CAB2\t0x616C\n0x8EA2CAB3\t0x6180\n0x8EA2CAB4\t0x6174\n0x8EA2CAB5\t0x6154\n0x8EA2CAB6\t0x617A\n0x8EA2CAB7\t0x615B\n0x8EA2CAB8\t0x6165\n0x8EA2CAB9\t0x613B\n0x8EA2CABA\t0x616A\n0x8EA2CABB\t0x6161\n0x8EA2CABC\t0x6156\n0x8EA2CABD\t0x6229\n0x8EA2CABE\t0x6227\n0x8EA2CABF\t0x622B\n0x8EA2CAC0\t0x642B\n0x8EA2CAC1\t0x644D\n0x8EA2CAC2\t0x645B\n0x8EA2CAC3\t0x645D\n0x8EA2CAC4\t0x6474\n0x8EA2CAC5\t0x6476\n0x8EA2CAC6\t0x6472\n0x8EA2CAC7\t0x6473\n0x8EA2CAC8\t0x647D\n0x8EA2CAC9\t0x6475\n0x8EA2CACA\t0x6466\n0x8EA2CACB\t0x64A6\n0x8EA2CACC\t0x644E\n0x8EA2CACD\t0x6482\n0x8EA2CACE\t0x645E\n0x8EA2CACF\t0x645C\n0x8EA2CAD0\t0x644B\n0x8EA2CAD1\t0x6453\n0x8EA2CAD2\t0x6460\n0x8EA2CAD3\t0x6450\n0x8EA2CAD4\t0x647F\n0x8EA2CAD5\t0x643F\n0x8EA2CAD6\t0x646C\n0x8EA2CAD7\t0x646B\n0x8EA2CAD8\t0x6459\n0x8EA2CAD9\t0x6465\n0x8EA2CADA\t0x6477\n0x8EA2CADB\t0x6573\n0x8EA2CADC\t0x65A0\n0x8EA2CADD\t0x66A1\n0x8EA2CADE\t0x66A0\n0x8EA2CADF\t0x669F\n0x8EA2CAE0\t0x6705\n0x8EA2CAE1\t0x6704\n0x8EA2CAE2\t0x6722\n0x8EA2CAE3\t0x69B1\n0x8EA2CAE4\t0x69B6\n0x8EA2CAE5\t0x69C9\n0x8EA2CAE6\t0x69A0\n0x8EA2CAE7\t0x69CE\n0x8EA2CAE8\t0x6996\n0x8EA2CAE9\t0x69B0\n0x8EA2CAEA\t0x69AC\n0x8EA2CAEB\t0x69BC\n0x8EA2CAEC\t0x6991\n0x8EA2CAED\t0x6999\n0x8EA2CAEE\t0x698E\n0x8EA2CAEF\t0x69A7\n0x8EA2CAF0\t0x698D\n0x8EA2CAF1\t0x69A9\n0x8EA2CAF2\t0x69BE\n0x8EA2CAF3\t0x69AF\n0x8EA2CAF4\t0x69BF\n0x8EA2CAF5\t0x69C4\n0x8EA2CAF6\t0x69BD\n0x8EA2CAF7\t0x69A4\n0x8EA2CAF8\t0x69D4\n0x8EA2CAF9\t0x69B9\n0x8EA2CAFA\t0x69CA\n0x8EA2CAFB\t0x699A\n0x8EA2CAFC\t0x69CF\n0x8EA2CAFD\t0x69B3\n0x8EA2CAFE\t0x6993\n0x8EA2CBA1\t0x69AA\n0x8EA2CBA2\t0x69A1\n0x8EA2CBA3\t0x699E\n0x8EA2CBA4\t0x69D9\n0x8EA2CBA5\t0x6997\n0x8EA2CBA6\t0x6990\n0x8EA2CBA7\t0x69C2\n0x8EA2CBA8\t0x69B5\n0x8EA2CBA9\t0x69A5\n0x8EA2CBAA\t0x69C6\n0x8EA2CBAB\t0x6B4A\n0x8EA2CBAC\t0x6B4D\n0x8EA2CBAD\t0x6B4B\n0x8EA2CBAE\t0x6B9E\n0x8EA2CBAF\t0x6B9F\n0x8EA2CBB0\t0x6BA0\n0x8EA2CBB1\t0x6BC3\n0x8EA2CBB2\t0x6BC4\n0x8EA2CBB3\t0x6BFE\n0x8EA2CBB4\t0x6ECE\n0x8EA2CBB5\t0x6EF5\n0x8EA2CBB6\t0x6EF1\n0x8EA2CBB7\t0x6F03\n0x8EA2CBB8\t0x6F25\n0x8EA2CBB9\t0x6EF8\n0x8EA2CBBA\t0x6F37\n0x8EA2CBBB\t0x6EFB\n0x8EA2CBBC\t0x6F2E\n0x8EA2CBBD\t0x6F09\n0x8EA2CBBE\t0x6F4E\n0x8EA2CBBF\t0x6F19\n0x8EA2CBC0\t0x6F1A\n0x8EA2CBC1\t0x6F27\n0x8EA2CBC2\t0x6F18\n0x8EA2CBC3\t0x6F3B\n0x8EA2CBC4\t0x6F12\n0x8EA2CBC5\t0x6EED\n0x8EA2CBC6\t0x6F0A\n0x8EA2CBC7\t0x6F36\n0x8EA2CBC8\t0x6F73\n0x8EA2CBC9\t0x6EF9\n0x8EA2CBCA\t0x6EEE\n0x8EA2CBCB\t0x6F2D\n0x8EA2CBCC\t0x6F40\n0x8EA2CBCD\t0x6F30\n0x8EA2CBCE\t0x6F3C\n0x8EA2CBCF\t0x6F35\n0x8EA2CBD0\t0x6EEB\n0x8EA2CBD1\t0x6F07\n0x8EA2CBD2\t0x6F0E\n0x8EA2CBD3\t0x6F43\n0x8EA2CBD4\t0x6F05\n0x8EA2CBD5\t0x6EFD\n0x8EA2CBD6\t0x6EF6\n0x8EA2CBD7\t0x6F39\n0x8EA2CBD8\t0x6F1C\n0x8EA2CBD9\t0x6EFC\n0x8EA2CBDA\t0x6F3A\n0x8EA2CBDB\t0x6F1F\n0x8EA2CBDC\t0x6F0D\n0x8EA2CBDD\t0x6F1E\n0x8EA2CBDE\t0x6F08\n0x8EA2CBDF\t0x6F21\n0x8EA2CBE0\t0x7187\n0x8EA2CBE1\t0x7190\n0x8EA2CBE2\t0x7189\n0x8EA2CBE3\t0x7180\n0x8EA2CBE4\t0x7185\n0x8EA2CBE5\t0x7182\n0x8EA2CBE6\t0x718F\n0x8EA2CBE7\t0x717B\n0x8EA2CBE8\t0x7186\n0x8EA2CBE9\t0x7181\n0x8EA2CBEA\t0x7197\n0x8EA2CBEB\t0x7244\n0x8EA2CBEC\t0x7253\n0x8EA2CBED\t0x7297\n0x8EA2CBEE\t0x7295\n0x8EA2CBEF\t0x7293\n0x8EA2CBF0\t0x7343\n0x8EA2CBF1\t0x734D\n0x8EA2CBF2\t0x7351\n0x8EA2CBF3\t0x734C\n0x8EA2CBF4\t0x7462\n0x8EA2CBF5\t0x7473\n0x8EA2CBF6\t0x7471\n0x8EA2CBF7\t0x7475\n0x8EA2CBF8\t0x7472\n0x8EA2CBF9\t0x7467\n0x8EA2CBFA\t0x746E\n0x8EA2CBFB\t0x7500\n0x8EA2CBFC\t0x7502\n0x8EA2CBFD\t0x7503\n0x8EA2CBFE\t0x757D\n0x8EA2CCA1\t0x7590\n0x8EA2CCA2\t0x7616\n0x8EA2CCA3\t0x7608\n0x8EA2CCA4\t0x760C\n0x8EA2CCA5\t0x7615\n0x8EA2CCA6\t0x7611\n0x8EA2CCA7\t0x760A\n0x8EA2CCA8\t0x7614\n0x8EA2CCA9\t0x76B8\n0x8EA2CCAA\t0x7781\n0x8EA2CCAB\t0x777C\n0x8EA2CCAC\t0x7785\n0x8EA2CCAD\t0x7782\n0x8EA2CCAE\t0x776E\n0x8EA2CCAF\t0x7780\n0x8EA2CCB0\t0x776F\n0x8EA2CCB1\t0x777E\n0x8EA2CCB2\t0x7783\n0x8EA2CCB3\t0x78B2\n0x8EA2CCB4\t0x78AA\n0x8EA2CCB5\t0x78B4\n0x8EA2CCB6\t0x78AD\n0x8EA2CCB7\t0x78A8\n0x8EA2CCB8\t0x787E\n0x8EA2CCB9\t0x78AB\n0x8EA2CCBA\t0x789E\n0x8EA2CCBB\t0x78A5\n0x8EA2CCBC\t0x78A0\n0x8EA2CCBD\t0x78AC\n0x8EA2CCBE\t0x78A2\n0x8EA2CCBF\t0x78A4\n0x8EA2CCC0\t0x7998\n0x8EA2CCC1\t0x798A\n0x8EA2CCC2\t0x798B\n0x8EA2CCC3\t0x7996\n0x8EA2CCC4\t0x7995\n0x8EA2CCC5\t0x7994\n0x8EA2CCC6\t0x7993\n0x8EA2CCC7\t0x7997\n0x8EA2CCC8\t0x7988\n0x8EA2CCC9\t0x7992\n0x8EA2CCCA\t0x7990\n0x8EA2CCCB\t0x7A2B\n0x8EA2CCCC\t0x7A4A\n0x8EA2CCCD\t0x7A30\n0x8EA2CCCE\t0x7A2F\n0x8EA2CCCF\t0x7A28\n0x8EA2CCD0\t0x7A26\n0x8EA2CCD1\t0x7AA8\n0x8EA2CCD2\t0x7AAB\n0x8EA2CCD3\t0x7AAC\n0x8EA2CCD4\t0x7AEE\n0x8EA2CCD5\t0x7B88\n0x8EA2CCD6\t0x7B9C\n0x8EA2CCD7\t0x7B8A\n0x8EA2CCD8\t0x7B91\n0x8EA2CCD9\t0x7B90\n0x8EA2CCDA\t0x7B96\n0x8EA2CCDB\t0x7B8D\n0x8EA2CCDC\t0x7B8C\n0x8EA2CCDD\t0x7B9B\n0x8EA2CCDE\t0x7B8E\n0x8EA2CCDF\t0x7B85\n0x8EA2CCE0\t0x7B98\n0x8EA2CCE1\t0x5284\n0x8EA2CCE2\t0x7B99\n0x8EA2CCE3\t0x7BA4\n0x8EA2CCE4\t0x7B82\n0x8EA2CCE5\t0x7CBB\n0x8EA2CCE6\t0x7CBF\n0x8EA2CCE7\t0x7CBC\n0x8EA2CCE8\t0x7CBA\n0x8EA2CCE9\t0x7DA7\n0x8EA2CCEA\t0x7DB7\n0x8EA2CCEB\t0x7DC2\n0x8EA2CCEC\t0x7DA3\n0x8EA2CCED\t0x7DAA\n0x8EA2CCEE\t0x7DC1\n0x8EA2CCEF\t0x7DC0\n0x8EA2CCF0\t0x7DC5\n0x8EA2CCF1\t0x7D9D\n0x8EA2CCF2\t0x7DCE\n0x8EA2CCF3\t0x7DC4\n0x8EA2CCF4\t0x7DC6\n0x8EA2CCF5\t0x7DCB\n0x8EA2CCF6\t0x7DCC\n0x8EA2CCF7\t0x7DAF\n0x8EA2CCF8\t0x7DB9\n0x8EA2CCF9\t0x7D96\n0x8EA2CCFA\t0x7DBC\n0x8EA2CCFB\t0x7D9F\n0x8EA2CCFC\t0x7DA6\n0x8EA2CCFD\t0x7DAE\n0x8EA2CCFE\t0x7DA9\n0x8EA2CDA1\t0x7DA1\n0x8EA2CDA2\t0x7DC9\n0x8EA2CDA3\t0x7F73\n0x8EA2CDA4\t0x7FE2\n0x8EA2CDA5\t0x7FE3\n0x8EA2CDA6\t0x7FE5\n0x8EA2CDA7\t0x7FDE\n0x8EA2CDA8\t0x8024\n0x8EA2CDA9\t0x805D\n0x8EA2CDAA\t0x805C\n0x8EA2CDAB\t0x8189\n0x8EA2CDAC\t0x8186\n0x8EA2CDAD\t0x8183\n0x8EA2CDAE\t0x8187\n0x8EA2CDAF\t0x818D\n0x8EA2CDB0\t0x818C\n0x8EA2CDB1\t0x818B\n0x8EA2CDB2\t0x8215\n0x8EA2CDB3\t0x8497\n0x8EA2CDB4\t0x84A4\n0x8EA2CDB5\t0x84A1\n0x8EA2CDB6\t0x849F\n0x8EA2CDB7\t0x84BA\n0x8EA2CDB8\t0x84CE\n0x8EA2CDB9\t0x84C2\n0x8EA2CDBA\t0x84AC\n0x8EA2CDBB\t0x84AE\n0x8EA2CDBC\t0x84AB\n0x8EA2CDBD\t0x84B9\n0x8EA2CDBE\t0x84B4\n0x8EA2CDBF\t0x84C1\n0x8EA2CDC0\t0x84CD\n0x8EA2CDC1\t0x84AA\n0x8EA2CDC2\t0x849A\n0x8EA2CDC3\t0x84B1\n0x8EA2CDC4\t0x84D0\n0x8EA2CDC5\t0x849D\n0x8EA2CDC6\t0x84A7\n0x8EA2CDC7\t0x84BB\n0x8EA2CDC8\t0x84A2\n0x8EA2CDC9\t0x8494\n0x8EA2CDCA\t0x84C7\n0x8EA2CDCB\t0x84CC\n0x8EA2CDCC\t0x849B\n0x8EA2CDCD\t0x84A9\n0x8EA2CDCE\t0x84AF\n0x8EA2CDCF\t0x84A8\n0x8EA2CDD0\t0x84D6\n0x8EA2CDD1\t0x8498\n0x8EA2CDD2\t0x84B6\n0x8EA2CDD3\t0x84CF\n0x8EA2CDD4\t0x84A0\n0x8EA2CDD5\t0x84D7\n0x8EA2CDD6\t0x84D4\n0x8EA2CDD7\t0x84D2\n0x8EA2CDD8\t0x84DB\n0x8EA2CDD9\t0x84B0\n0x8EA2CDDA\t0x8491\n0x8EA2CDDB\t0x8661\n0x8EA2CDDC\t0x8733\n0x8EA2CDDD\t0x8723\n0x8EA2CDDE\t0x8728\n0x8EA2CDDF\t0x876B\n0x8EA2CDE0\t0x8740\n0x8EA2CDE1\t0x872E\n0x8EA2CDE2\t0x871E\n0x8EA2CDE3\t0x8721\n0x8EA2CDE4\t0x8719\n0x8EA2CDE5\t0x871B\n0x8EA2CDE6\t0x8743\n0x8EA2CDE7\t0x872C\n0x8EA2CDE8\t0x8741\n0x8EA2CDE9\t0x873E\n0x8EA2CDEA\t0x8746\n0x8EA2CDEB\t0x8720\n0x8EA2CDEC\t0x8732\n0x8EA2CDED\t0x872A\n0x8EA2CDEE\t0x872D\n0x8EA2CDEF\t0x873C\n0x8EA2CDF0\t0x8712\n0x8EA2CDF1\t0x873A\n0x8EA2CDF2\t0x8731\n0x8EA2CDF3\t0x8735\n0x8EA2CDF4\t0x8742\n0x8EA2CDF5\t0x8726\n0x8EA2CDF6\t0x8727\n0x8EA2CDF7\t0x8738\n0x8EA2CDF8\t0x8724\n0x8EA2CDF9\t0x871A\n0x8EA2CDFA\t0x8730\n0x8EA2CDFB\t0x8711\n0x8EA2CDFC\t0x88F7\n0x8EA2CDFD\t0x88E7\n0x8EA2CDFE\t0x88F1\n0x8EA2CEA1\t0x88F2\n0x8EA2CEA2\t0x88FA\n0x8EA2CEA3\t0x88FE\n0x8EA2CEA4\t0x88EE\n0x8EA2CEA5\t0x88FC\n0x8EA2CEA6\t0x88F6\n0x8EA2CEA7\t0x88FB\n0x8EA2CEA8\t0x88F0\n0x8EA2CEA9\t0x88EC\n0x8EA2CEAA\t0x88EB\n0x8EA2CEAB\t0x899D\n0x8EA2CEAC\t0x89A1\n0x8EA2CEAD\t0x899F\n0x8EA2CEAE\t0x899E\n0x8EA2CEAF\t0x89E9\n0x8EA2CEB0\t0x89EB\n0x8EA2CEB1\t0x89E8\n0x8EA2CEB2\t0x8AAB\n0x8EA2CEB3\t0x8A99\n0x8EA2CEB4\t0x8A8B\n0x8EA2CEB5\t0x8A92\n0x8EA2CEB6\t0x8A8F\n0x8EA2CEB7\t0x8A96\n0x8EA2CEB8\t0x8C3D\n0x8EA2CEB9\t0x8C68\n0x8EA2CEBA\t0x8C69\n0x8EA2CEBB\t0x8CD5\n0x8EA2CEBC\t0x8CCF\n0x8EA2CEBD\t0x8CD7\n0x8EA2CEBE\t0x8D96\n0x8EA2CEBF\t0x8E09\n0x8EA2CEC0\t0x8E02\n0x8EA2CEC1\t0x8DFF\n0x8EA2CEC2\t0x8E0D\n0x8EA2CEC3\t0x8DFD\n0x8EA2CEC4\t0x8E0A\n0x8EA2CEC5\t0x8E03\n0x8EA2CEC6\t0x8E07\n0x8EA2CEC7\t0x8E06\n0x8EA2CEC8\t0x8E05\n0x8EA2CEC9\t0x8DFE\n0x8EA2CECA\t0x8E00\n0x8EA2CECB\t0x8E04\n0x8EA2CECC\t0x8F10\n0x8EA2CECD\t0x8F11\n0x8EA2CECE\t0x8F0E\n0x8EA2CECF\t0x8F0D\n0x8EA2CED0\t0x9123\n0x8EA2CED1\t0x911C\n0x8EA2CED2\t0x9120\n0x8EA2CED3\t0x9122\n0x8EA2CED4\t0x911F\n0x8EA2CED5\t0x911D\n0x8EA2CED6\t0x911A\n0x8EA2CED7\t0x9124\n0x8EA2CED8\t0x9121\n0x8EA2CED9\t0x911B\n0x8EA2CEDA\t0x917A\n0x8EA2CEDB\t0x9172\n0x8EA2CEDC\t0x9179\n0x8EA2CEDD\t0x9173\n0x8EA2CEDE\t0x92A5\n0x8EA2CEDF\t0x92A4\n0x8EA2CEE0\t0x9276\n0x8EA2CEE1\t0x929B\n0x8EA2CEE2\t0x927A\n0x8EA2CEE3\t0x92A0\n0x8EA2CEE4\t0x9294\n0x8EA2CEE5\t0x92AA\n0x8EA2CEE6\t0x928D\n0x8EA2CEE7\t0x92A6\n0x8EA2CEE8\t0x929A\n0x8EA2CEE9\t0x92AB\n0x8EA2CEEA\t0x9279\n0x8EA2CEEB\t0x9297\n0x8EA2CEEC\t0x927F\n0x8EA2CEED\t0x92A3\n0x8EA2CEEE\t0x92EE\n0x8EA2CEEF\t0x928E\n0x8EA2CEF0\t0x9282\n0x8EA2CEF1\t0x9295\n0x8EA2CEF2\t0x92A2\n0x8EA2CEF3\t0x927D\n0x8EA2CEF4\t0x9288\n0x8EA2CEF5\t0x92A1\n0x8EA2CEF6\t0x928A\n0x8EA2CEF7\t0x9286\n0x8EA2CEF8\t0x928C\n0x8EA2CEF9\t0x9299\n0x8EA2CEFA\t0x92A7\n0x8EA2CEFB\t0x927E\n0x8EA2CEFC\t0x9287\n0x8EA2CEFD\t0x92A9\n0x8EA2CEFE\t0x929D\n0x8EA2CFA1\t0x928B\n0x8EA2CFA2\t0x922D\n0x8EA2CFA3\t0x969E\n0x8EA2CFA4\t0x96A1\n0x8EA2CFA5\t0x96FF\n0x8EA2CFA6\t0x9758\n0x8EA2CFA7\t0x977D\n0x8EA2CFA8\t0x977A\n0x8EA2CFA9\t0x977E\n0x8EA2CFAA\t0x9783\n0x8EA2CFAB\t0x9780\n0x8EA2CFAC\t0x9782\n0x8EA2CFAD\t0x977B\n0x8EA2CFAE\t0x9784\n0x8EA2CFAF\t0x9781\n0x8EA2CFB0\t0x977F\n0x8EA2CFB1\t0x97CE\n0x8EA2CFB2\t0x97CD\n0x8EA2CFB3\t0x9816\n0x8EA2CFB4\t0x98AD\n0x8EA2CFB5\t0x98AE\n0x8EA2CFB6\t0x9902\n0x8EA2CFB7\t0x9900\n0x8EA2CFB8\t0x9907\n0x8EA2CFB9\t0x999D\n0x8EA2CFBA\t0x999C\n0x8EA2CFBB\t0x99C3\n0x8EA2CFBC\t0x99B9\n0x8EA2CFBD\t0x99BB\n0x8EA2CFBE\t0x99BA\n0x8EA2CFBF\t0x99C2\n0x8EA2CFC0\t0x99BD\n0x8EA2CFC1\t0x99C7\n0x8EA2CFC2\t0x9AB1\n0x8EA2CFC3\t0x9AE3\n0x8EA2CFC4\t0x9AE7\n0x8EA2CFC5\t0x9B3E\n0x8EA2CFC6\t0x9B3F\n0x8EA2CFC7\t0x9B60\n0x8EA2CFC8\t0x9B61\n0x8EA2CFC9\t0x9B5F\n0x8EA2CFCA\t0x9CF1\n0x8EA2CFCB\t0x9CF2\n0x8EA2CFCC\t0x9CF5\n0x8EA2CFCD\t0x9EA7\n0x8EA2CFCE\t0x50FF\n0x8EA2CFCF\t0x5103\n0x8EA2CFD0\t0x5130\n0x8EA2CFD1\t0x50F8\n0x8EA2CFD2\t0x5106\n0x8EA2CFD3\t0x5107\n0x8EA2CFD4\t0x50F6\n0x8EA2CFD5\t0x50FE\n0x8EA2CFD6\t0x510B\n0x8EA2CFD7\t0x510C\n0x8EA2CFD8\t0x50FD\n0x8EA2CFD9\t0x510A\n0x8EA2CFDA\t0x528B\n0x8EA2CFDB\t0x528C\n0x8EA2CFDC\t0x52F1\n0x8EA2CFDD\t0x52EF\n0x8EA2CFDE\t0x5648\n0x8EA2CFDF\t0x5642\n0x8EA2CFE0\t0x564C\n0x8EA2CFE1\t0x5635\n0x8EA2CFE2\t0x5641\n0x8EA2CFE3\t0x564A\n0x8EA2CFE4\t0x5649\n0x8EA2CFE5\t0x5646\n0x8EA2CFE6\t0x5658\n0x8EA2CFE7\t0x565A\n0x8EA2CFE8\t0x5640\n0x8EA2CFE9\t0x5633\n0x8EA2CFEA\t0x563D\n0x8EA2CFEB\t0x562C\n0x8EA2CFEC\t0x563E\n0x8EA2CFED\t0x5638\n0x8EA2CFEE\t0x562A\n0x8EA2CFEF\t0x563A\n0x8EA2CFF0\t0x571A\n0x8EA2CFF1\t0x58AB\n0x8EA2CFF2\t0x589D\n0x8EA2CFF3\t0x58B1\n0x8EA2CFF4\t0x58A0\n0x8EA2CFF5\t0x58A3\n0x8EA2CFF6\t0x58AF\n0x8EA2CFF7\t0x58AC\n0x8EA2CFF8\t0x58A5\n0x8EA2CFF9\t0x58A1\n0x8EA2CFFA\t0x58FF\n0x8EA2CFFB\t0x5AFF\n0x8EA2CFFC\t0x5AF4\n0x8EA2CFFD\t0x5AFD\n0x8EA2CFFE\t0x5AF7\n0x8EA2D0A1\t0x5AF6\n0x8EA2D0A2\t0x5B03\n0x8EA2D0A3\t0x5AF8\n0x8EA2D0A4\t0x5B02\n0x8EA2D0A5\t0x5AF9\n0x8EA2D0A6\t0x5B01\n0x8EA2D0A7\t0x5B07\n0x8EA2D0A8\t0x5B05\n0x8EA2D0A9\t0x5B0F\n0x8EA2D0AA\t0x5C67\n0x8EA2D0AB\t0x5D99\n0x8EA2D0AC\t0x5D97\n0x8EA2D0AD\t0x5D9F\n0x8EA2D0AE\t0x5D92\n0x8EA2D0AF\t0x5DA2\n0x8EA2D0B0\t0x5D93\n0x8EA2D0B1\t0x5D95\n0x8EA2D0B2\t0x5DA0\n0x8EA2D0B3\t0x5D9C\n0x8EA2D0B4\t0x5DA1\n0x8EA2D0B5\t0x5D9A\n0x8EA2D0B6\t0x5D9E\n0x8EA2D0B7\t0x5E69\n0x8EA2D0B8\t0x5E5D\n0x8EA2D0B9\t0x5E60\n0x8EA2D0BA\t0x5E5C\n0x8EA2D0BB\t0x7DF3\n0x8EA2D0BC\t0x5EDB\n0x8EA2D0BD\t0x5EDE\n0x8EA2D0BE\t0x5EE1\n0x8EA2D0BF\t0x5F49\n0x8EA2D0C0\t0x5FB2\n0x8EA2D0C1\t0x618B\n0x8EA2D0C2\t0x6183\n0x8EA2D0C3\t0x6179\n0x8EA2D0C4\t0x61B1\n0x8EA2D0C5\t0x61B0\n0x8EA2D0C6\t0x61A2\n0x8EA2D0C7\t0x6189\n0x8EA2D0C8\t0x619B\n0x8EA2D0C9\t0x6193\n0x8EA2D0CA\t0x61AF\n0x8EA2D0CB\t0x61AD\n0x8EA2D0CC\t0x619F\n0x8EA2D0CD\t0x6192\n0x8EA2D0CE\t0x61AA\n0x8EA2D0CF\t0x61A1\n0x8EA2D0D0\t0x618D\n0x8EA2D0D1\t0x6166\n0x8EA2D0D2\t0x61B3\n0x8EA2D0D3\t0x622D\n0x8EA2D0D4\t0x646E\n0x8EA2D0D5\t0x6470\n0x8EA2D0D6\t0x6496\n0x8EA2D0D7\t0x64A0\n0x8EA2D0D8\t0x6485\n0x8EA2D0D9\t0x6497\n0x8EA2D0DA\t0x649C\n0x8EA2D0DB\t0x648F\n0x8EA2D0DC\t0x648B\n0x8EA2D0DD\t0x648A\n0x8EA2D0DE\t0x648C\n0x8EA2D0DF\t0x64A3\n0x8EA2D0E0\t0x649F\n0x8EA2D0E1\t0x6468\n0x8EA2D0E2\t0x64B1\n0x8EA2D0E3\t0x6498\n0x8EA2D0E4\t0x6576\n0x8EA2D0E5\t0x657A\n0x8EA2D0E6\t0x6579\n0x8EA2D0E7\t0x657B\n0x8EA2D0E8\t0x65B2\n0x8EA2D0E9\t0x65B3\n0x8EA2D0EA\t0x66B5\n0x8EA2D0EB\t0x66B0\n0x8EA2D0EC\t0x66A9\n0x8EA2D0ED\t0x66B2\n0x8EA2D0EE\t0x66B7\n0x8EA2D0EF\t0x66AA\n0x8EA2D0F0\t0x66AF\n0x8EA2D0F1\t0x6A00\n0x8EA2D0F2\t0x6A06\n0x8EA2D0F3\t0x6A17\n0x8EA2D0F4\t0x69E5\n0x8EA2D0F5\t0x69F8\n0x8EA2D0F6\t0x6A15\n0x8EA2D0F7\t0x69F1\n0x8EA2D0F8\t0x69E4\n0x8EA2D0F9\t0x6A20\n0x8EA2D0FA\t0x69FF\n0x8EA2D0FB\t0x69EC\n0x8EA2D0FC\t0x69E2\n0x8EA2D0FD\t0x6A1B\n0x8EA2D0FE\t0x6A1D\n0x8EA2D1A1\t0x69FE\n0x8EA2D1A2\t0x6A27\n0x8EA2D1A3\t0x69F2\n0x8EA2D1A4\t0x69EE\n0x8EA2D1A5\t0x6A14\n0x8EA2D1A6\t0x69F7\n0x8EA2D1A7\t0x69E7\n0x8EA2D1A8\t0x6A40\n0x8EA2D1A9\t0x6A08\n0x8EA2D1AA\t0x69E6\n0x8EA2D1AB\t0x69FB\n0x8EA2D1AC\t0x6A0D\n0x8EA2D1AD\t0x69FC\n0x8EA2D1AE\t0x69EB\n0x8EA2D1AF\t0x6A09\n0x8EA2D1B0\t0x6A04\n0x8EA2D1B1\t0x6A18\n0x8EA2D1B2\t0x6A25\n0x8EA2D1B3\t0x6A0F\n0x8EA2D1B4\t0x69F6\n0x8EA2D1B5\t0x6A26\n0x8EA2D1B6\t0x6A07\n0x8EA2D1B7\t0x69F4\n0x8EA2D1B8\t0x6A16\n0x8EA2D1B9\t0x6B51\n0x8EA2D1BA\t0x6BA5\n0x8EA2D1BB\t0x6BA3\n0x8EA2D1BC\t0x6BA2\n0x8EA2D1BD\t0x6BA6\n0x8EA2D1BE\t0x6C01\n0x8EA2D1BF\t0x6C00\n0x8EA2D1C0\t0x6BFF\n0x8EA2D1C1\t0x6C02\n0x8EA2D1C2\t0x6F41\n0x8EA2D1C3\t0x6F26\n0x8EA2D1C4\t0x6F7E\n0x8EA2D1C5\t0x6F87\n0x8EA2D1C6\t0x6FC6\n0x8EA2D1C7\t0x6F92\n0x8EA2D1C8\t0x6F8D\n0x8EA2D1C9\t0x6F89\n0x8EA2D1CA\t0x6F8C\n0x8EA2D1CB\t0x6F62\n0x8EA2D1CC\t0x6F4F\n0x8EA2D1CD\t0x6F85\n0x8EA2D1CE\t0x6F5A\n0x8EA2D1CF\t0x6F96\n0x8EA2D1D0\t0x6F76\n0x8EA2D1D1\t0x6F6C\n0x8EA2D1D2\t0x6F82\n0x8EA2D1D3\t0x6F55\n0x8EA2D1D4\t0x6F72\n0x8EA2D1D5\t0x6F52\n0x8EA2D1D6\t0x6F50\n0x8EA2D1D7\t0x6F57\n0x8EA2D1D8\t0x6F94\n0x8EA2D1D9\t0x6F93\n0x8EA2D1DA\t0x6F5D\n0x8EA2D1DB\t0x6F00\n0x8EA2D1DC\t0x6F61\n0x8EA2D1DD\t0x6F6B\n0x8EA2D1DE\t0x6F7D\n0x8EA2D1DF\t0x6F67\n0x8EA2D1E0\t0x6F90\n0x8EA2D1E1\t0x6F53\n0x8EA2D1E2\t0x6F8B\n0x8EA2D1E3\t0x6F69\n0x8EA2D1E4\t0x6F7F\n0x8EA2D1E5\t0x6F95\n0x8EA2D1E6\t0x6F63\n0x8EA2D1E7\t0x6F77\n0x8EA2D1E8\t0x6F6A\n0x8EA2D1E9\t0x6F7B\n0x8EA2D1EA\t0x71B2\n0x8EA2D1EB\t0x71AF\n0x8EA2D1EC\t0x719B\n0x8EA2D1ED\t0x71B0\n0x8EA2D1EE\t0x71A0\n0x8EA2D1EF\t0x719A\n0x8EA2D1F0\t0x71A9\n0x8EA2D1F1\t0x71B5\n0x8EA2D1F2\t0x719D\n0x8EA2D1F3\t0x71A5\n0x8EA2D1F4\t0x719E\n0x8EA2D1F5\t0x71A4\n0x8EA2D1F6\t0x71A1\n0x8EA2D1F7\t0x71AA\n0x8EA2D1F8\t0x719C\n0x8EA2D1F9\t0x71A7\n0x8EA2D1FA\t0x71B3\n0x8EA2D1FB\t0x7298\n0x8EA2D1FC\t0x729A\n0x8EA2D1FD\t0x7358\n0x8EA2D1FE\t0x7352\n0x8EA2D2A1\t0x735E\n0x8EA2D2A2\t0x735F\n0x8EA2D2A3\t0x7360\n0x8EA2D2A4\t0x735D\n0x8EA2D2A5\t0x735B\n0x8EA2D2A6\t0x7361\n0x8EA2D2A7\t0x735A\n0x8EA2D2A8\t0x7359\n0x8EA2D2A9\t0x7362\n0x8EA2D2AA\t0x7487\n0x8EA2D2AB\t0x7489\n0x8EA2D2AC\t0x748A\n0x8EA2D2AD\t0x7486\n0x8EA2D2AE\t0x7481\n0x8EA2D2AF\t0x747D\n0x8EA2D2B0\t0x7485\n0x8EA2D2B1\t0x7488\n0x8EA2D2B2\t0x747C\n0x8EA2D2B3\t0x7479\n0x8EA2D2B4\t0x7508\n0x8EA2D2B5\t0x7507\n0x8EA2D2B6\t0x757E\n0x8EA2D2B7\t0x7625\n0x8EA2D2B8\t0x761E\n0x8EA2D2B9\t0x7619\n0x8EA2D2BA\t0x761D\n0x8EA2D2BB\t0x761C\n0x8EA2D2BC\t0x7623\n0x8EA2D2BD\t0x761A\n0x8EA2D2BE\t0x7628\n0x8EA2D2BF\t0x761B\n0x8EA2D2C0\t0x769C\n0x8EA2D2C1\t0x769D\n0x8EA2D2C2\t0x769E\n0x8EA2D2C3\t0x769B\n0x8EA2D2C4\t0x778D\n0x8EA2D2C5\t0x778F\n0x8EA2D2C6\t0x7789\n0x8EA2D2C7\t0x7788\n0x8EA2D2C8\t0x78CD\n0x8EA2D2C9\t0x78BB\n0x8EA2D2CA\t0x78CF\n0x8EA2D2CB\t0x78CC\n0x8EA2D2CC\t0x78D1\n0x8EA2D2CD\t0x78CE\n0x8EA2D2CE\t0x78D4\n0x8EA2D2CF\t0x78C8\n0x8EA2D2D0\t0x78C3\n0x8EA2D2D1\t0x78C4\n0x8EA2D2D2\t0x78C9\n0x8EA2D2D3\t0x799A\n0x8EA2D2D4\t0x79A1\n0x8EA2D2D5\t0x79A0\n0x8EA2D2D6\t0x799C\n0x8EA2D2D7\t0x79A2\n0x8EA2D2D8\t0x799B\n0x8EA2D2D9\t0x6B76\n0x8EA2D2DA\t0x7A39\n0x8EA2D2DB\t0x7AB2\n0x8EA2D2DC\t0x7AB4\n0x8EA2D2DD\t0x7AB3\n0x8EA2D2DE\t0x7BB7\n0x8EA2D2DF\t0x7BCB\n0x8EA2D2E0\t0x7BBE\n0x8EA2D2E1\t0x7BAC\n0x8EA2D2E2\t0x7BCE\n0x8EA2D2E3\t0x7BAF\n0x8EA2D2E4\t0x7BB9\n0x8EA2D2E5\t0x7BCA\n0x8EA2D2E6\t0x7BB5\n0x8EA2D2E7\t0x7CC5\n0x8EA2D2E8\t0x7CC8\n0x8EA2D2E9\t0x7CCC\n0x8EA2D2EA\t0x7CCB\n0x8EA2D2EB\t0x7DF7\n0x8EA2D2EC\t0x7DDB\n0x8EA2D2ED\t0x7DEA\n0x8EA2D2EE\t0x7DE7\n0x8EA2D2EF\t0x7DD7\n0x8EA2D2F0\t0x7DE1\n0x8EA2D2F1\t0x7E03\n0x8EA2D2F2\t0x7DFA\n0x8EA2D2F3\t0x7DE6\n0x8EA2D2F4\t0x7DF6\n0x8EA2D2F5\t0x7DF1\n0x8EA2D2F6\t0x7DF0\n0x8EA2D2F7\t0x7DEE\n0x8EA2D2F8\t0x7DDF\n0x8EA2D2F9\t0x7F76\n0x8EA2D2FA\t0x7FAC\n0x8EA2D2FB\t0x7FB0\n0x8EA2D2FC\t0x7FAD\n0x8EA2D2FD\t0x7FED\n0x8EA2D2FE\t0x7FEB\n0x8EA2D3A1\t0x7FEA\n0x8EA2D3A2\t0x7FEC\n0x8EA2D3A3\t0x7FE6\n0x8EA2D3A4\t0x7FE8\n0x8EA2D3A5\t0x8064\n0x8EA2D3A6\t0x8067\n0x8EA2D3A7\t0x81A3\n0x8EA2D3A8\t0x819F\n0x8EA2D3A9\t0x819E\n0x8EA2D3AA\t0x8195\n0x8EA2D3AB\t0x81A2\n0x8EA2D3AC\t0x8199\n0x8EA2D3AD\t0x8197\n0x8EA2D3AE\t0x8216\n0x8EA2D3AF\t0x824F\n0x8EA2D3B0\t0x8253\n0x8EA2D3B1\t0x8252\n0x8EA2D3B2\t0x8250\n0x8EA2D3B3\t0x824E\n0x8EA2D3B4\t0x8251\n0x8EA2D3B5\t0x8524\n0x8EA2D3B6\t0x853B\n0x8EA2D3B7\t0x850F\n0x8EA2D3B8\t0x8500\n0x8EA2D3B9\t0x8529\n0x8EA2D3BA\t0x850E\n0x8EA2D3BB\t0x8509\n0x8EA2D3BC\t0x850D\n0x8EA2D3BD\t0x851F\n0x8EA2D3BE\t0x850A\n0x8EA2D3BF\t0x8527\n0x8EA2D3C0\t0x851C\n0x8EA2D3C1\t0x84FB\n0x8EA2D3C2\t0x852B\n0x8EA2D3C3\t0x84FA\n0x8EA2D3C4\t0x8508\n0x8EA2D3C5\t0x850C\n0x8EA2D3C6\t0x84F4\n0x8EA2D3C7\t0x852A\n0x8EA2D3C8\t0x84F2\n0x8EA2D3C9\t0x8515\n0x8EA2D3CA\t0x84F7\n0x8EA2D3CB\t0x84EB\n0x8EA2D3CC\t0x84F3\n0x8EA2D3CD\t0x84FC\n0x8EA2D3CE\t0x8512\n0x8EA2D3CF\t0x84EA\n0x8EA2D3D0\t0x84E9\n0x8EA2D3D1\t0x8516\n0x8EA2D3D2\t0x84FE\n0x8EA2D3D3\t0x8528\n0x8EA2D3D4\t0x851D\n0x8EA2D3D5\t0x852E\n0x8EA2D3D6\t0x8502\n0x8EA2D3D7\t0x84FD\n0x8EA2D3D8\t0x851E\n0x8EA2D3D9\t0x84F6\n0x8EA2D3DA\t0x8531\n0x8EA2D3DB\t0x8526\n0x8EA2D3DC\t0x84E7\n0x8EA2D3DD\t0x84E8\n0x8EA2D3DE\t0x84F0\n0x8EA2D3DF\t0x84EF\n0x8EA2D3E0\t0x84F9\n0x8EA2D3E1\t0x8518\n0x8EA2D3E2\t0x8520\n0x8EA2D3E3\t0x8530\n0x8EA2D3E4\t0x850B\n0x8EA2D3E5\t0x8519\n0x8EA2D3E6\t0x852F\n0x8EA2D3E7\t0x8662\n0x8EA2D3E8\t0x8756\n0x8EA2D3E9\t0x8763\n0x8EA2D3EA\t0x8764\n0x8EA2D3EB\t0x8777\n0x8EA2D3EC\t0x87E1\n0x8EA2D3ED\t0x8773\n0x8EA2D3EE\t0x8758\n0x8EA2D3EF\t0x8754\n0x8EA2D3F0\t0x875B\n0x8EA2D3F1\t0x8752\n0x8EA2D3F2\t0x8761\n0x8EA2D3F3\t0x875A\n0x8EA2D3F4\t0x8751\n0x8EA2D3F5\t0x875E\n0x8EA2D3F6\t0x876D\n0x8EA2D3F7\t0x876A\n0x8EA2D3F8\t0x8750\n0x8EA2D3F9\t0x874E\n0x8EA2D3FA\t0x875F\n0x8EA2D3FB\t0x875D\n0x8EA2D3FC\t0x876F\n0x8EA2D3FD\t0x876C\n0x8EA2D3FE\t0x877A\n0x8EA2D4A1\t0x876E\n0x8EA2D4A2\t0x875C\n0x8EA2D4A3\t0x8765\n0x8EA2D4A4\t0x874F\n0x8EA2D4A5\t0x877B\n0x8EA2D4A6\t0x8775\n0x8EA2D4A7\t0x8762\n0x8EA2D4A8\t0x8767\n0x8EA2D4A9\t0x8769\n0x8EA2D4AA\t0x885A\n0x8EA2D4AB\t0x8905\n0x8EA2D4AC\t0x890C\n0x8EA2D4AD\t0x8914\n0x8EA2D4AE\t0x890B\n0x8EA2D4AF\t0x8917\n0x8EA2D4B0\t0x8918\n0x8EA2D4B1\t0x8919\n0x8EA2D4B2\t0x8906\n0x8EA2D4B3\t0x8916\n0x8EA2D4B4\t0x8911\n0x8EA2D4B5\t0x890E\n0x8EA2D4B6\t0x8909\n0x8EA2D4B7\t0x89A2\n0x8EA2D4B8\t0x89A4\n0x8EA2D4B9\t0x89A3\n0x8EA2D4BA\t0x89ED\n0x8EA2D4BB\t0x89F0\n0x8EA2D4BC\t0x89EC\n0x8EA2D4BD\t0x8ACF\n0x8EA2D4BE\t0x8AC6\n0x8EA2D4BF\t0x8AB8\n0x8EA2D4C0\t0x8AD3\n0x8EA2D4C1\t0x8AD1\n0x8EA2D4C2\t0x8AD4\n0x8EA2D4C3\t0x8AD5\n0x8EA2D4C4\t0x8ABB\n0x8EA2D4C5\t0x8AD7\n0x8EA2D4C6\t0x8ABE\n0x8EA2D4C7\t0x8AC0\n0x8EA2D4C8\t0x8AC5\n0x8EA2D4C9\t0x8AD8\n0x8EA2D4CA\t0x8AC3\n0x8EA2D4CB\t0x8ABA\n0x8EA2D4CC\t0x8ABD\n0x8EA2D4CD\t0x8AD9\n0x8EA2D4CE\t0x8C3E\n0x8EA2D4CF\t0x8C4D\n0x8EA2D4D0\t0x8C8F\n0x8EA2D4D1\t0x8CE5\n0x8EA2D4D2\t0x8CDF\n0x8EA2D4D3\t0x8CD9\n0x8EA2D4D4\t0x8CE8\n0x8EA2D4D5\t0x8CDA\n0x8EA2D4D6\t0x8CDD\n0x8EA2D4D7\t0x8CE7\n0x8EA2D4D8\t0x8DA0\n0x8EA2D4D9\t0x8D9C\n0x8EA2D4DA\t0x8DA1\n0x8EA2D4DB\t0x8D9B\n0x8EA2D4DC\t0x8E20\n0x8EA2D4DD\t0x8E23\n0x8EA2D4DE\t0x8E25\n0x8EA2D4DF\t0x8E24\n0x8EA2D4E0\t0x8E2E\n0x8EA2D4E1\t0x8E15\n0x8EA2D4E2\t0x8E1B\n0x8EA2D4E3\t0x8E16\n0x8EA2D4E4\t0x8E11\n0x8EA2D4E5\t0x8E19\n0x8EA2D4E6\t0x8E26\n0x8EA2D4E7\t0x8E27\n0x8EA2D4E8\t0x8E14\n0x8EA2D4E9\t0x8E12\n0x8EA2D4EA\t0x8E18\n0x8EA2D4EB\t0x8E13\n0x8EA2D4EC\t0x8E1C\n0x8EA2D4ED\t0x8E17\n0x8EA2D4EE\t0x8E1A\n0x8EA2D4EF\t0x8F2C\n0x8EA2D4F0\t0x8F24\n0x8EA2D4F1\t0x8F18\n0x8EA2D4F2\t0x8F1A\n0x8EA2D4F3\t0x8F20\n0x8EA2D4F4\t0x8F23\n0x8EA2D4F5\t0x8F16\n0x8EA2D4F6\t0x8F17\n0x8EA2D4F7\t0x9073\n0x8EA2D4F8\t0x9070\n0x8EA2D4F9\t0x906F\n0x8EA2D4FA\t0x9067\n0x8EA2D4FB\t0x906B\n0x8EA2D4FC\t0x912F\n0x8EA2D4FD\t0x912B\n0x8EA2D4FE\t0x9129\n0x8EA2D5A1\t0x912A\n0x8EA2D5A2\t0x9132\n0x8EA2D5A3\t0x9126\n0x8EA2D5A4\t0x912E\n0x8EA2D5A5\t0x9185\n0x8EA2D5A6\t0x9186\n0x8EA2D5A7\t0x918A\n0x8EA2D5A8\t0x9181\n0x8EA2D5A9\t0x9182\n0x8EA2D5AA\t0x9184\n0x8EA2D5AB\t0x9180\n0x8EA2D5AC\t0x92D0\n0x8EA2D5AD\t0x92C3\n0x8EA2D5AE\t0x92C4\n0x8EA2D5AF\t0x92C0\n0x8EA2D5B0\t0x92D9\n0x8EA2D5B1\t0x92B6\n0x8EA2D5B2\t0x92CF\n0x8EA2D5B3\t0x92F1\n0x8EA2D5B4\t0x92DF\n0x8EA2D5B5\t0x92D8\n0x8EA2D5B6\t0x92E9\n0x8EA2D5B7\t0x92D7\n0x8EA2D5B8\t0x92DD\n0x8EA2D5B9\t0x92CC\n0x8EA2D5BA\t0x92EF\n0x8EA2D5BB\t0x92C2\n0x8EA2D5BC\t0x92E8\n0x8EA2D5BD\t0x92CA\n0x8EA2D5BE\t0x92C8\n0x8EA2D5BF\t0x92CE\n0x8EA2D5C0\t0x92E6\n0x8EA2D5C1\t0x92CD\n0x8EA2D5C2\t0x92D5\n0x8EA2D5C3\t0x92C9\n0x8EA2D5C4\t0x92E0\n0x8EA2D5C5\t0x92DE\n0x8EA2D5C6\t0x92E7\n0x8EA2D5C7\t0x92D1\n0x8EA2D5C8\t0x92D3\n0x8EA2D5C9\t0x92B5\n0x8EA2D5CA\t0x92E1\n0x8EA2D5CB\t0x9325\n0x8EA2D5CC\t0x92C6\n0x8EA2D5CD\t0x92B4\n0x8EA2D5CE\t0x957C\n0x8EA2D5CF\t0x95AC\n0x8EA2D5D0\t0x95AB\n0x8EA2D5D1\t0x95AE\n0x8EA2D5D2\t0x95B0\n0x8EA2D5D3\t0x96A4\n0x8EA2D5D4\t0x96A2\n0x8EA2D5D5\t0x96D3\n0x8EA2D5D6\t0x9705\n0x8EA2D5D7\t0x9708\n0x8EA2D5D8\t0x9702\n0x8EA2D5D9\t0x975A\n0x8EA2D5DA\t0x978A\n0x8EA2D5DB\t0x978E\n0x8EA2D5DC\t0x9788\n0x8EA2D5DD\t0x97D0\n0x8EA2D5DE\t0x97CF\n0x8EA2D5DF\t0x981E\n0x8EA2D5E0\t0x981D\n0x8EA2D5E1\t0x9826\n0x8EA2D5E2\t0x9829\n0x8EA2D5E3\t0x9828\n0x8EA2D5E4\t0x9820\n0x8EA2D5E5\t0x981B\n0x8EA2D5E6\t0x9827\n0x8EA2D5E7\t0x98B2\n0x8EA2D5E8\t0x9908\n0x8EA2D5E9\t0x98FA\n0x8EA2D5EA\t0x9911\n0x8EA2D5EB\t0x9914\n0x8EA2D5EC\t0x9916\n0x8EA2D5ED\t0x9917\n0x8EA2D5EE\t0x9915\n0x8EA2D5EF\t0x99DC\n0x8EA2D5F0\t0x99CD\n0x8EA2D5F1\t0x99CF\n0x8EA2D5F2\t0x99D3\n0x8EA2D5F3\t0x99D4\n0x8EA2D5F4\t0x99CE\n0x8EA2D5F5\t0x99C9\n0x8EA2D5F6\t0x99D6\n0x8EA2D5F7\t0x99D8\n0x8EA2D5F8\t0x99CB\n0x8EA2D5F9\t0x99D7\n0x8EA2D5FA\t0x99CC\n0x8EA2D5FB\t0x9AB3\n0x8EA2D5FC\t0x9AEC\n0x8EA2D5FD\t0x9AEB\n0x8EA2D5FE\t0x9AF3\n0x8EA2D6A1\t0x9AF2\n0x8EA2D6A2\t0x9AF1\n0x8EA2D6A3\t0x9B46\n0x8EA2D6A4\t0x9B43\n0x8EA2D6A5\t0x9B67\n0x8EA2D6A6\t0x9B74\n0x8EA2D6A7\t0x9B71\n0x8EA2D6A8\t0x9B66\n0x8EA2D6A9\t0x9B76\n0x8EA2D6AA\t0x9B75\n0x8EA2D6AB\t0x9B70\n0x8EA2D6AC\t0x9B68\n0x8EA2D6AD\t0x9B64\n0x8EA2D6AE\t0x9B6C\n0x8EA2D6AF\t0x9CFC\n0x8EA2D6B0\t0x9CFA\n0x8EA2D6B1\t0x9CFD\n0x8EA2D6B2\t0x9CFF\n0x8EA2D6B3\t0x9CF7\n0x8EA2D6B4\t0x9D07\n0x8EA2D6B5\t0x9D00\n0x8EA2D6B6\t0x9CF9\n0x8EA2D6B7\t0x9CFB\n0x8EA2D6B8\t0x9D08\n0x8EA2D6B9\t0x9D05\n0x8EA2D6BA\t0x9D04\n0x8EA2D6BB\t0x9E83\n0x8EA2D6BC\t0x9ED3\n0x8EA2D6BD\t0x9F0F\n0x8EA2D6BE\t0x9F10\n0x8EA2D6BF\t0x511C\n0x8EA2D6C0\t0x5113\n0x8EA2D6C1\t0x5117\n0x8EA2D6C2\t0x511A\n0x8EA2D6C3\t0x5111\n0x8EA2D6C4\t0x51DE\n0x8EA2D6C5\t0x5334\n0x8EA2D6C6\t0x53E1\n0x8EA2D6C7\t0x5670\n0x8EA2D6C8\t0x5660\n0x8EA2D6C9\t0x566E\n0x8EA2D6CA\t0x5673\n0x8EA2D6CB\t0x5666\n0x8EA2D6CC\t0x5663\n0x8EA2D6CD\t0x566D\n0x8EA2D6CE\t0x5672\n0x8EA2D6CF\t0x565E\n0x8EA2D6D0\t0x5677\n0x8EA2D6D1\t0x571C\n0x8EA2D6D2\t0x571B\n0x8EA2D6D3\t0x58C8\n0x8EA2D6D4\t0x58BD\n0x8EA2D6D5\t0x58C9\n0x8EA2D6D6\t0x58BF\n0x8EA2D6D7\t0x58BA\n0x8EA2D6D8\t0x58C2\n0x8EA2D6D9\t0x58BC\n0x8EA2D6DA\t0x58C6\n0x8EA2D6DB\t0x5B17\n0x8EA2D6DC\t0x5B19\n0x8EA2D6DD\t0x5B1B\n0x8EA2D6DE\t0x5B21\n0x8EA2D6DF\t0x5B14\n0x8EA2D6E0\t0x5B13\n0x8EA2D6E1\t0x5B10\n0x8EA2D6E2\t0x5B16\n0x8EA2D6E3\t0x5B28\n0x8EA2D6E4\t0x5B1A\n0x8EA2D6E5\t0x5B20\n0x8EA2D6E6\t0x5B1E\n0x8EA2D6E7\t0x5BEF\n0x8EA2D6E8\t0x5DAC\n0x8EA2D6E9\t0x5DB1\n0x8EA2D6EA\t0x5DA9\n0x8EA2D6EB\t0x5DA7\n0x8EA2D6EC\t0x5DB5\n0x8EA2D6ED\t0x5DB0\n0x8EA2D6EE\t0x5DAE\n0x8EA2D6EF\t0x5DAA\n0x8EA2D6F0\t0x5DA8\n0x8EA2D6F1\t0x5DB2\n0x8EA2D6F2\t0x5DAD\n0x8EA2D6F3\t0x5DAF\n0x8EA2D6F4\t0x5DB4\n0x8EA2D6F5\t0x5E67\n0x8EA2D6F6\t0x5E68\n0x8EA2D6F7\t0x5E66\n0x8EA2D6F8\t0x5E6F\n0x8EA2D6F9\t0x5EE9\n0x8EA2D6FA\t0x5EE7\n0x8EA2D6FB\t0x5EE6\n0x8EA2D6FC\t0x5EE8\n0x8EA2D6FD\t0x5EE5\n0x8EA2D6FE\t0x5F4B\n0x8EA2D7A1\t0x5FBC\n0x8EA2D7A2\t0x5FBB\n0x8EA2D7A3\t0x619D\n0x8EA2D7A4\t0x61A8\n0x8EA2D7A5\t0x6196\n0x8EA2D7A6\t0x61C5\n0x8EA2D7A7\t0x61B4\n0x8EA2D7A8\t0x61C6\n0x8EA2D7A9\t0x61C1\n0x8EA2D7AA\t0x61CC\n0x8EA2D7AB\t0x61BA\n0x8EA2D7AC\t0x61BF\n0x8EA2D7AD\t0x61B8\n0x8EA2D7AE\t0x618C\n0x8EA2D7AF\t0x64D7\n0x8EA2D7B0\t0x64D6\n0x8EA2D7B1\t0x64D0\n0x8EA2D7B2\t0x64CF\n0x8EA2D7B3\t0x64C9\n0x8EA2D7B4\t0x64BD\n0x8EA2D7B5\t0x6489\n0x8EA2D7B6\t0x64C3\n0x8EA2D7B7\t0x64DB\n0x8EA2D7B8\t0x64F3\n0x8EA2D7B9\t0x64D9\n0x8EA2D7BA\t0x6533\n0x8EA2D7BB\t0x657F\n0x8EA2D7BC\t0x657C\n0x8EA2D7BD\t0x65A2\n0x8EA2D7BE\t0x66C8\n0x8EA2D7BF\t0x66BE\n0x8EA2D7C0\t0x66C0\n0x8EA2D7C1\t0x66CA\n0x8EA2D7C2\t0x66CB\n0x8EA2D7C3\t0x66CF\n0x8EA2D7C4\t0x66BD\n0x8EA2D7C5\t0x66BB\n0x8EA2D7C6\t0x66BA\n0x8EA2D7C7\t0x66CC\n0x8EA2D7C8\t0x6723\n0x8EA2D7C9\t0x6A34\n0x8EA2D7CA\t0x6A66\n0x8EA2D7CB\t0x6A49\n0x8EA2D7CC\t0x6A67\n0x8EA2D7CD\t0x6A32\n0x8EA2D7CE\t0x6A68\n0x8EA2D7CF\t0x6A3E\n0x8EA2D7D0\t0x6A5D\n0x8EA2D7D1\t0x6A6D\n0x8EA2D7D2\t0x6A76\n0x8EA2D7D3\t0x6A5B\n0x8EA2D7D4\t0x6A51\n0x8EA2D7D5\t0x6A28\n0x8EA2D7D6\t0x6A5A\n0x8EA2D7D7\t0x6A3B\n0x8EA2D7D8\t0x6A3F\n0x8EA2D7D9\t0x6A41\n0x8EA2D7DA\t0x6A6A\n0x8EA2D7DB\t0x6A64\n0x8EA2D7DC\t0x6A50\n0x8EA2D7DD\t0x6A4F\n0x8EA2D7DE\t0x6A54\n0x8EA2D7DF\t0x6A6F\n0x8EA2D7E0\t0x6A69\n0x8EA2D7E1\t0x6A60\n0x8EA2D7E2\t0x6A3C\n0x8EA2D7E3\t0x6A5E\n0x8EA2D7E4\t0x6A56\n0x8EA2D7E5\t0x6A55\n0x8EA2D7E6\t0x6A4D\n0x8EA2D7E7\t0x6A4E\n0x8EA2D7E8\t0x6A46\n0x8EA2D7E9\t0x6B55\n0x8EA2D7EA\t0x6B54\n0x8EA2D7EB\t0x6B56\n0x8EA2D7EC\t0x6BA7\n0x8EA2D7ED\t0x6BAA\n0x8EA2D7EE\t0x6BAB\n0x8EA2D7EF\t0x6BC8\n0x8EA2D7F0\t0x6BC7\n0x8EA2D7F1\t0x6C04\n0x8EA2D7F2\t0x6C03\n0x8EA2D7F3\t0x6C06\n0x8EA2D7F4\t0x6FAD\n0x8EA2D7F5\t0x6FCB\n0x8EA2D7F6\t0x6FA3\n0x8EA2D7F7\t0x6FC7\n0x8EA2D7F8\t0x6FBC\n0x8EA2D7F9\t0x6FCE\n0x8EA2D7FA\t0x6FC8\n0x8EA2D7FB\t0x6F5E\n0x8EA2D7FC\t0x6FC4\n0x8EA2D7FD\t0x6FBD\n0x8EA2D7FE\t0x6F9E\n0x8EA2D8A1\t0x6FCA\n0x8EA2D8A2\t0x6FA8\n0x8EA2D8A3\t0x7004\n0x8EA2D8A4\t0x6FA5\n0x8EA2D8A5\t0x6FAE\n0x8EA2D8A6\t0x6FBA\n0x8EA2D8A7\t0x6FAC\n0x8EA2D8A8\t0x6FAA\n0x8EA2D8A9\t0x6FCF\n0x8EA2D8AA\t0x6FBF\n0x8EA2D8AB\t0x6FB8\n0x8EA2D8AC\t0x6FA2\n0x8EA2D8AD\t0x6FC9\n0x8EA2D8AE\t0x6FAB\n0x8EA2D8AF\t0x6FCD\n0x8EA2D8B0\t0x6FAF\n0x8EA2D8B1\t0x6FB2\n0x8EA2D8B2\t0x6FB0\n0x8EA2D8B3\t0x71C5\n0x8EA2D8B4\t0x71C2\n0x8EA2D8B5\t0x71BF\n0x8EA2D8B6\t0x71B8\n0x8EA2D8B7\t0x71D6\n0x8EA2D8B8\t0x71C0\n0x8EA2D8B9\t0x71C1\n0x8EA2D8BA\t0x71CB\n0x8EA2D8BB\t0x71D4\n0x8EA2D8BC\t0x71CA\n0x8EA2D8BD\t0x71C7\n0x8EA2D8BE\t0x71CF\n0x8EA2D8BF\t0x71BD\n0x8EA2D8C0\t0x71D8\n0x8EA2D8C1\t0x71BC\n0x8EA2D8C2\t0x71C6\n0x8EA2D8C3\t0x71DA\n0x8EA2D8C4\t0x71DB\n0x8EA2D8C5\t0x729D\n0x8EA2D8C6\t0x729E\n0x8EA2D8C7\t0x7369\n0x8EA2D8C8\t0x7366\n0x8EA2D8C9\t0x7367\n0x8EA2D8CA\t0x736C\n0x8EA2D8CB\t0x7365\n0x8EA2D8CC\t0x736B\n0x8EA2D8CD\t0x736A\n0x8EA2D8CE\t0x747F\n0x8EA2D8CF\t0x749A\n0x8EA2D8D0\t0x74A0\n0x8EA2D8D1\t0x7494\n0x8EA2D8D2\t0x7492\n0x8EA2D8D3\t0x7495\n0x8EA2D8D4\t0x74A1\n0x8EA2D8D5\t0x750B\n0x8EA2D8D6\t0x7580\n0x8EA2D8D7\t0x762F\n0x8EA2D8D8\t0x762D\n0x8EA2D8D9\t0x7631\n0x8EA2D8DA\t0x763D\n0x8EA2D8DB\t0x7633\n0x8EA2D8DC\t0x763C\n0x8EA2D8DD\t0x7635\n0x8EA2D8DE\t0x7632\n0x8EA2D8DF\t0x7630\n0x8EA2D8E0\t0x76BB\n0x8EA2D8E1\t0x76E6\n0x8EA2D8E2\t0x779A\n0x8EA2D8E3\t0x779D\n0x8EA2D8E4\t0x77A1\n0x8EA2D8E5\t0x779C\n0x8EA2D8E6\t0x779B\n0x8EA2D8E7\t0x77A2\n0x8EA2D8E8\t0x77A3\n0x8EA2D8E9\t0x7795\n0x8EA2D8EA\t0x7799\n0x8EA2D8EB\t0x7797\n0x8EA2D8EC\t0x78DD\n0x8EA2D8ED\t0x78E9\n0x8EA2D8EE\t0x78E5\n0x8EA2D8EF\t0x78EA\n0x8EA2D8F0\t0x78DE\n0x8EA2D8F1\t0x78E3\n0x8EA2D8F2\t0x78DB\n0x8EA2D8F3\t0x78E1\n0x8EA2D8F4\t0x78E2\n0x8EA2D8F5\t0x78ED\n0x8EA2D8F6\t0x78DF\n0x8EA2D8F7\t0x78E0\n0x8EA2D8F8\t0x79A4\n0x8EA2D8F9\t0x7A44\n0x8EA2D8FA\t0x7A48\n0x8EA2D8FB\t0x7A47\n0x8EA2D8FC\t0x7AB6\n0x8EA2D8FD\t0x7AB8\n0x8EA2D8FE\t0x7AB5\n0x8EA2D9A1\t0x7AB1\n0x8EA2D9A2\t0x7AB7\n0x8EA2D9A3\t0x7BDE\n0x8EA2D9A4\t0x7BE3\n0x8EA2D9A5\t0x7BE7\n0x8EA2D9A6\t0x7BDD\n0x8EA2D9A7\t0x7BD5\n0x8EA2D9A8\t0x7BE5\n0x8EA2D9A9\t0x7BDA\n0x8EA2D9AA\t0x7BE8\n0x8EA2D9AB\t0x7BF9\n0x8EA2D9AC\t0x7BD4\n0x8EA2D9AD\t0x7BEA\n0x8EA2D9AE\t0x7BE2\n0x8EA2D9AF\t0x7BDC\n0x8EA2D9B0\t0x7BEB\n0x8EA2D9B1\t0x7BD8\n0x8EA2D9B2\t0x7BDF\n0x8EA2D9B3\t0x7CD2\n0x8EA2D9B4\t0x7CD4\n0x8EA2D9B5\t0x7CD7\n0x8EA2D9B6\t0x7CD0\n0x8EA2D9B7\t0x7CD1\n0x8EA2D9B8\t0x7E12\n0x8EA2D9B9\t0x7E21\n0x8EA2D9BA\t0x7E17\n0x8EA2D9BB\t0x7E0C\n0x8EA2D9BC\t0x7E1F\n0x8EA2D9BD\t0x7E20\n0x8EA2D9BE\t0x7E13\n0x8EA2D9BF\t0x7E0E\n0x8EA2D9C0\t0x7E1C\n0x8EA2D9C1\t0x7E15\n0x8EA2D9C2\t0x7E1A\n0x8EA2D9C3\t0x7E22\n0x8EA2D9C4\t0x7E0B\n0x8EA2D9C5\t0x7E0F\n0x8EA2D9C6\t0x7E16\n0x8EA2D9C7\t0x7E0D\n0x8EA2D9C8\t0x7E14\n0x8EA2D9C9\t0x7E25\n0x8EA2D9CA\t0x7E24\n0x8EA2D9CB\t0x7F43\n0x8EA2D9CC\t0x7F7B\n0x8EA2D9CD\t0x7F7C\n0x8EA2D9CE\t0x7F7A\n0x8EA2D9CF\t0x7FB1\n0x8EA2D9D0\t0x7FEF\n0x8EA2D9D1\t0x802A\n0x8EA2D9D2\t0x8029\n0x8EA2D9D3\t0x806C\n0x8EA2D9D4\t0x81B1\n0x8EA2D9D5\t0x81A6\n0x8EA2D9D6\t0x81AE\n0x8EA2D9D7\t0x81B9\n0x8EA2D9D8\t0x81B5\n0x8EA2D9D9\t0x81AB\n0x8EA2D9DA\t0x81B0\n0x8EA2D9DB\t0x81AC\n0x8EA2D9DC\t0x81B4\n0x8EA2D9DD\t0x81B2\n0x8EA2D9DE\t0x81B7\n0x8EA2D9DF\t0x81A7\n0x8EA2D9E0\t0x81F2\n0x8EA2D9E1\t0x8255\n0x8EA2D9E2\t0x8256\n0x8EA2D9E3\t0x8257\n0x8EA2D9E4\t0x8556\n0x8EA2D9E5\t0x8545\n0x8EA2D9E6\t0x856B\n0x8EA2D9E7\t0x854D\n0x8EA2D9E8\t0x8553\n0x8EA2D9E9\t0x8561\n0x8EA2D9EA\t0x8558\n0x8EA2D9EB\t0x8540\n0x8EA2D9EC\t0x8546\n0x8EA2D9ED\t0x8564\n0x8EA2D9EE\t0x8541\n0x8EA2D9EF\t0x8562\n0x8EA2D9F0\t0x8544\n0x8EA2D9F1\t0x8551\n0x8EA2D9F2\t0x8547\n0x8EA2D9F3\t0x8563\n0x8EA2D9F4\t0x853E\n0x8EA2D9F5\t0x855B\n0x8EA2D9F6\t0x8571\n0x8EA2D9F7\t0x854E\n0x8EA2D9F8\t0x856E\n0x8EA2D9F9\t0x8575\n0x8EA2D9FA\t0x8555\n0x8EA2D9FB\t0x8567\n0x8EA2D9FC\t0x8560\n0x8EA2D9FD\t0x858C\n0x8EA2D9FE\t0x8566\n0x8EA2DAA1\t0x855D\n0x8EA2DAA2\t0x8554\n0x8EA2DAA3\t0x8565\n0x8EA2DAA4\t0x856C\n0x8EA2DAA5\t0x8663\n0x8EA2DAA6\t0x8665\n0x8EA2DAA7\t0x8664\n0x8EA2DAA8\t0x87A4\n0x8EA2DAA9\t0x879B\n0x8EA2DAAA\t0x878F\n0x8EA2DAAB\t0x8797\n0x8EA2DAAC\t0x8793\n0x8EA2DAAD\t0x8792\n0x8EA2DAAE\t0x8788\n0x8EA2DAAF\t0x8781\n0x8EA2DAB0\t0x8796\n0x8EA2DAB1\t0x8798\n0x8EA2DAB2\t0x8779\n0x8EA2DAB3\t0x8787\n0x8EA2DAB4\t0x87A3\n0x8EA2DAB5\t0x8785\n0x8EA2DAB6\t0x8790\n0x8EA2DAB7\t0x8791\n0x8EA2DAB8\t0x879D\n0x8EA2DAB9\t0x8784\n0x8EA2DABA\t0x8794\n0x8EA2DABB\t0x879C\n0x8EA2DABC\t0x879A\n0x8EA2DABD\t0x8789\n0x8EA2DABE\t0x891E\n0x8EA2DABF\t0x8926\n0x8EA2DAC0\t0x8930\n0x8EA2DAC1\t0x892D\n0x8EA2DAC2\t0x892E\n0x8EA2DAC3\t0x8927\n0x8EA2DAC4\t0x8931\n0x8EA2DAC5\t0x8922\n0x8EA2DAC6\t0x8929\n0x8EA2DAC7\t0x8923\n0x8EA2DAC8\t0x892F\n0x8EA2DAC9\t0x892C\n0x8EA2DACA\t0x891F\n0x8EA2DACB\t0x89F1\n0x8EA2DACC\t0x8AE0\n0x8EA2DACD\t0x8AE2\n0x8EA2DACE\t0x8AF2\n0x8EA2DACF\t0x8AF4\n0x8EA2DAD0\t0x8AF5\n0x8EA2DAD1\t0x8ADD\n0x8EA2DAD2\t0x8B14\n0x8EA2DAD3\t0x8AE4\n0x8EA2DAD4\t0x8ADF\n0x8EA2DAD5\t0x8AF0\n0x8EA2DAD6\t0x8AC8\n0x8EA2DAD7\t0x8ADE\n0x8EA2DAD8\t0x8AE1\n0x8EA2DAD9\t0x8AE8\n0x8EA2DADA\t0x8AFF\n0x8EA2DADB\t0x8AEF\n0x8EA2DADC\t0x8AFB\n0x8EA2DADD\t0x8C91\n0x8EA2DADE\t0x8C92\n0x8EA2DADF\t0x8C90\n0x8EA2DAE0\t0x8CF5\n0x8EA2DAE1\t0x8CEE\n0x8EA2DAE2\t0x8CF1\n0x8EA2DAE3\t0x8CF0\n0x8EA2DAE4\t0x8CF3\n0x8EA2DAE5\t0x8D6C\n0x8EA2DAE6\t0x8D6E\n0x8EA2DAE7\t0x8DA5\n0x8EA2DAE8\t0x8DA7\n0x8EA2DAE9\t0x8E33\n0x8EA2DAEA\t0x8E3E\n0x8EA2DAEB\t0x8E38\n0x8EA2DAEC\t0x8E40\n0x8EA2DAED\t0x8E45\n0x8EA2DAEE\t0x8E36\n0x8EA2DAEF\t0x8E3C\n0x8EA2DAF0\t0x8E3D\n0x8EA2DAF1\t0x8E41\n0x8EA2DAF2\t0x8E30\n0x8EA2DAF3\t0x8E3F\n0x8EA2DAF4\t0x8EBD\n0x8EA2DAF5\t0x8F36\n0x8EA2DAF6\t0x8F2E\n0x8EA2DAF7\t0x8F35\n0x8EA2DAF8\t0x8F32\n0x8EA2DAF9\t0x8F39\n0x8EA2DAFA\t0x8F37\n0x8EA2DAFB\t0x8F34\n0x8EA2DAFC\t0x9076\n0x8EA2DAFD\t0x9079\n0x8EA2DAFE\t0x907B\n0x8EA2DBA1\t0x9086\n0x8EA2DBA2\t0x90FA\n0x8EA2DBA3\t0x9133\n0x8EA2DBA4\t0x9135\n0x8EA2DBA5\t0x9136\n0x8EA2DBA6\t0x9193\n0x8EA2DBA7\t0x9190\n0x8EA2DBA8\t0x9191\n0x8EA2DBA9\t0x918D\n0x8EA2DBAA\t0x918F\n0x8EA2DBAB\t0x9327\n0x8EA2DBAC\t0x931E\n0x8EA2DBAD\t0x9308\n0x8EA2DBAE\t0x931F\n0x8EA2DBAF\t0x9306\n0x8EA2DBB0\t0x930F\n0x8EA2DBB1\t0x937A\n0x8EA2DBB2\t0x9338\n0x8EA2DBB3\t0x933C\n0x8EA2DBB4\t0x931B\n0x8EA2DBB5\t0x9323\n0x8EA2DBB6\t0x9312\n0x8EA2DBB7\t0x9301\n0x8EA2DBB8\t0x9346\n0x8EA2DBB9\t0x932D\n0x8EA2DBBA\t0x930E\n0x8EA2DBBB\t0x930D\n0x8EA2DBBC\t0x92CB\n0x8EA2DBBD\t0x931D\n0x8EA2DBBE\t0x92FA\n0x8EA2DBBF\t0x9313\n0x8EA2DBC0\t0x92F9\n0x8EA2DBC1\t0x92F7\n0x8EA2DBC2\t0x9334\n0x8EA2DBC3\t0x9302\n0x8EA2DBC4\t0x9324\n0x8EA2DBC5\t0x92FF\n0x8EA2DBC6\t0x9329\n0x8EA2DBC7\t0x9339\n0x8EA2DBC8\t0x9335\n0x8EA2DBC9\t0x932A\n0x8EA2DBCA\t0x9314\n0x8EA2DBCB\t0x930C\n0x8EA2DBCC\t0x930B\n0x8EA2DBCD\t0x92FE\n0x8EA2DBCE\t0x9309\n0x8EA2DBCF\t0x9300\n0x8EA2DBD0\t0x92FB\n0x8EA2DBD1\t0x9316\n0x8EA2DBD2\t0x95BC\n0x8EA2DBD3\t0x95CD\n0x8EA2DBD4\t0x95BE\n0x8EA2DBD5\t0x95B9\n0x8EA2DBD6\t0x95BA\n0x8EA2DBD7\t0x95B6\n0x8EA2DBD8\t0x95BF\n0x8EA2DBD9\t0x95B5\n0x8EA2DBDA\t0x95BD\n0x8EA2DBDB\t0x96A9\n0x8EA2DBDC\t0x96D4\n0x8EA2DBDD\t0x970B\n0x8EA2DBDE\t0x9712\n0x8EA2DBDF\t0x9710\n0x8EA2DBE0\t0x9799\n0x8EA2DBE1\t0x9797\n0x8EA2DBE2\t0x9794\n0x8EA2DBE3\t0x97F0\n0x8EA2DBE4\t0x97F8\n0x8EA2DBE5\t0x9835\n0x8EA2DBE6\t0x982F\n0x8EA2DBE7\t0x9832\n0x8EA2DBE8\t0x9924\n0x8EA2DBE9\t0x991F\n0x8EA2DBEA\t0x9927\n0x8EA2DBEB\t0x9929\n0x8EA2DBEC\t0x999E\n0x8EA2DBED\t0x99EE\n0x8EA2DBEE\t0x99EC\n0x8EA2DBEF\t0x99E5\n0x8EA2DBF0\t0x99E4\n0x8EA2DBF1\t0x99F0\n0x8EA2DBF2\t0x99E3\n0x8EA2DBF3\t0x99EA\n0x8EA2DBF4\t0x99E9\n0x8EA2DBF5\t0x99E7\n0x8EA2DBF6\t0x9AB9\n0x8EA2DBF7\t0x9ABF\n0x8EA2DBF8\t0x9AB4\n0x8EA2DBF9\t0x9ABB\n0x8EA2DBFA\t0x9AF6\n0x8EA2DBFB\t0x9AFA\n0x8EA2DBFC\t0x9AF9\n0x8EA2DBFD\t0x9AF7\n0x8EA2DBFE\t0x9B33\n0x8EA2DCA1\t0x9B80\n0x8EA2DCA2\t0x9B85\n0x8EA2DCA3\t0x9B87\n0x8EA2DCA4\t0x9B7C\n0x8EA2DCA5\t0x9B7E\n0x8EA2DCA6\t0x9B7B\n0x8EA2DCA7\t0x9B82\n0x8EA2DCA8\t0x9B93\n0x8EA2DCA9\t0x9B92\n0x8EA2DCAA\t0x9B90\n0x8EA2DCAB\t0x9B7A\n0x8EA2DCAC\t0x9B95\n0x8EA2DCAD\t0x9B7D\n0x8EA2DCAE\t0x9B88\n0x8EA2DCAF\t0x9D25\n0x8EA2DCB0\t0x9D17\n0x8EA2DCB1\t0x9D20\n0x8EA2DCB2\t0x9D1E\n0x8EA2DCB3\t0x9D14\n0x8EA2DCB4\t0x9D29\n0x8EA2DCB5\t0x9D1D\n0x8EA2DCB6\t0x9D18\n0x8EA2DCB7\t0x9D22\n0x8EA2DCB8\t0x9D10\n0x8EA2DCB9\t0x9D19\n0x8EA2DCBA\t0x9D1F\n0x8EA2DCBB\t0x9E88\n0x8EA2DCBC\t0x9E86\n0x8EA2DCBD\t0x9E87\n0x8EA2DCBE\t0x9EAE\n0x8EA2DCBF\t0x9EAD\n0x8EA2DCC0\t0x9ED5\n0x8EA2DCC1\t0x9ED6\n0x8EA2DCC2\t0x9EFA\n0x8EA2DCC3\t0x9F12\n0x8EA2DCC4\t0x9F3D\n0x8EA2DCC5\t0x5126\n0x8EA2DCC6\t0x5125\n0x8EA2DCC7\t0x5122\n0x8EA2DCC8\t0x5124\n0x8EA2DCC9\t0x5120\n0x8EA2DCCA\t0x5129\n0x8EA2DCCB\t0x52F4\n0x8EA2DCCC\t0x5693\n0x8EA2DCCD\t0x568C\n0x8EA2DCCE\t0x568D\n0x8EA2DCCF\t0x5686\n0x8EA2DCD0\t0x5684\n0x8EA2DCD1\t0x5683\n0x8EA2DCD2\t0x567E\n0x8EA2DCD3\t0x5682\n0x8EA2DCD4\t0x567F\n0x8EA2DCD5\t0x5681\n0x8EA2DCD6\t0x58D6\n0x8EA2DCD7\t0x58D4\n0x8EA2DCD8\t0x58CF\n0x8EA2DCD9\t0x58D2\n0x8EA2DCDA\t0x5B2D\n0x8EA2DCDB\t0x5B25\n0x8EA2DCDC\t0x5B32\n0x8EA2DCDD\t0x5B23\n0x8EA2DCDE\t0x5B2C\n0x8EA2DCDF\t0x5B27\n0x8EA2DCE0\t0x5B26\n0x8EA2DCE1\t0x5B2F\n0x8EA2DCE2\t0x5B2E\n0x8EA2DCE3\t0x5B7B\n0x8EA2DCE4\t0x5BF1\n0x8EA2DCE5\t0x5BF2\n0x8EA2DCE6\t0x5DB7\n0x8EA2DCE7\t0x5E6C\n0x8EA2DCE8\t0x5E6A\n0x8EA2DCE9\t0x5FBE\n0x8EA2DCEA\t0x61C3\n0x8EA2DCEB\t0x61B5\n0x8EA2DCEC\t0x61BC\n0x8EA2DCED\t0x61E7\n0x8EA2DCEE\t0x61E0\n0x8EA2DCEF\t0x61E5\n0x8EA2DCF0\t0x61E4\n0x8EA2DCF1\t0x61E8\n0x8EA2DCF2\t0x61DE\n0x8EA2DCF3\t0x64EF\n0x8EA2DCF4\t0x64E9\n0x8EA2DCF5\t0x64E3\n0x8EA2DCF6\t0x64EB\n0x8EA2DCF7\t0x64E4\n0x8EA2DCF8\t0x64E8\n0x8EA2DCF9\t0x6581\n0x8EA2DCFA\t0x6580\n0x8EA2DCFB\t0x65B6\n0x8EA2DCFC\t0x65DA\n0x8EA2DCFD\t0x66D2\n0x8EA2DCFE\t0x6A8D\n0x8EA2DDA1\t0x6A96\n0x8EA2DDA2\t0x6A81\n0x8EA2DDA3\t0x6AA5\n0x8EA2DDA4\t0x6A89\n0x8EA2DDA5\t0x6A9F\n0x8EA2DDA6\t0x6A9B\n0x8EA2DDA7\t0x6AA1\n0x8EA2DDA8\t0x6A9E\n0x8EA2DDA9\t0x6A87\n0x8EA2DDAA\t0x6A93\n0x8EA2DDAB\t0x6A8E\n0x8EA2DDAC\t0x6A95\n0x8EA2DDAD\t0x6A83\n0x8EA2DDAE\t0x6AA8\n0x8EA2DDAF\t0x6AA4\n0x8EA2DDB0\t0x6A91\n0x8EA2DDB1\t0x6A7F\n0x8EA2DDB2\t0x6AA6\n0x8EA2DDB3\t0x6A9A\n0x8EA2DDB4\t0x6A85\n0x8EA2DDB5\t0x6A8C\n0x8EA2DDB6\t0x6A92\n0x8EA2DDB7\t0x6B5B\n0x8EA2DDB8\t0x6BAD\n0x8EA2DDB9\t0x6C09\n0x8EA2DDBA\t0x6FCC\n0x8EA2DDBB\t0x6FA9\n0x8EA2DDBC\t0x6FF4\n0x8EA2DDBD\t0x6FD4\n0x8EA2DDBE\t0x6FE3\n0x8EA2DDBF\t0x6FDC\n0x8EA2DDC0\t0x6FED\n0x8EA2DDC1\t0x6FE7\n0x8EA2DDC2\t0x6FE6\n0x8EA2DDC3\t0x6FDE\n0x8EA2DDC4\t0x6FF2\n0x8EA2DDC5\t0x6FDD\n0x8EA2DDC6\t0x6FE2\n0x8EA2DDC7\t0x6FE8\n0x8EA2DDC8\t0x71E1\n0x8EA2DDC9\t0x71F1\n0x8EA2DDCA\t0x71E8\n0x8EA2DDCB\t0x71F2\n0x8EA2DDCC\t0x71E4\n0x8EA2DDCD\t0x71F0\n0x8EA2DDCE\t0x71E2\n0x8EA2DDCF\t0x7373\n0x8EA2DDD0\t0x736E\n0x8EA2DDD1\t0x736F\n0x8EA2DDD2\t0x7497\n0x8EA2DDD3\t0x74B2\n0x8EA2DDD4\t0x74AB\n0x8EA2DDD5\t0x7490\n0x8EA2DDD6\t0x74AA\n0x8EA2DDD7\t0x74AD\n0x8EA2DDD8\t0x74B1\n0x8EA2DDD9\t0x74A5\n0x8EA2DDDA\t0x74AF\n0x8EA2DDDB\t0x7510\n0x8EA2DDDC\t0x7511\n0x8EA2DDDD\t0x7512\n0x8EA2DDDE\t0x750F\n0x8EA2DDDF\t0x7584\n0x8EA2DDE0\t0x7643\n0x8EA2DDE1\t0x7648\n0x8EA2DDE2\t0x7649\n0x8EA2DDE3\t0x7647\n0x8EA2DDE4\t0x76A4\n0x8EA2DDE5\t0x76E9\n0x8EA2DDE6\t0x77B5\n0x8EA2DDE7\t0x77AB\n0x8EA2DDE8\t0x77B2\n0x8EA2DDE9\t0x77B7\n0x8EA2DDEA\t0x77B6\n0x8EA2DDEB\t0x77B4\n0x8EA2DDEC\t0x77B1\n0x8EA2DDED\t0x77A8\n0x8EA2DDEE\t0x77F0\n0x8EA2DDEF\t0x78F3\n0x8EA2DDF0\t0x78FD\n0x8EA2DDF1\t0x7902\n0x8EA2DDF2\t0x78FB\n0x8EA2DDF3\t0x78FC\n0x8EA2DDF4\t0x78FF\n0x8EA2DDF5\t0x78F2\n0x8EA2DDF6\t0x7905\n0x8EA2DDF7\t0x78F9\n0x8EA2DDF8\t0x78FE\n0x8EA2DDF9\t0x7904\n0x8EA2DDFA\t0x79AB\n0x8EA2DDFB\t0x79A8\n0x8EA2DDFC\t0x7A5C\n0x8EA2DDFD\t0x7A5B\n0x8EA2DDFE\t0x7A56\n0x8EA2DEA1\t0x7A58\n0x8EA2DEA2\t0x7A54\n0x8EA2DEA3\t0x7A5A\n0x8EA2DEA4\t0x7ABE\n0x8EA2DEA5\t0x7AC0\n0x8EA2DEA6\t0x7AC1\n0x8EA2DEA7\t0x7C05\n0x8EA2DEA8\t0x7C0F\n0x8EA2DEA9\t0x7BF2\n0x8EA2DEAA\t0x7C00\n0x8EA2DEAB\t0x7BFF\n0x8EA2DEAC\t0x7BFB\n0x8EA2DEAD\t0x7C0E\n0x8EA2DEAE\t0x7BF4\n0x8EA2DEAF\t0x7C0B\n0x8EA2DEB0\t0x7BF3\n0x8EA2DEB1\t0x7C02\n0x8EA2DEB2\t0x7C09\n0x8EA2DEB3\t0x7C03\n0x8EA2DEB4\t0x7C01\n0x8EA2DEB5\t0x7BF8\n0x8EA2DEB6\t0x7BFD\n0x8EA2DEB7\t0x7C06\n0x8EA2DEB8\t0x7BF0\n0x8EA2DEB9\t0x7BF1\n0x8EA2DEBA\t0x7C10\n0x8EA2DEBB\t0x7C0A\n0x8EA2DEBC\t0x7CE8\n0x8EA2DEBD\t0x7E2D\n0x8EA2DEBE\t0x7E3C\n0x8EA2DEBF\t0x7E42\n0x8EA2DEC0\t0x7E33\n0x8EA2DEC1\t0x9848\n0x8EA2DEC2\t0x7E38\n0x8EA2DEC3\t0x7E2A\n0x8EA2DEC4\t0x7E49\n0x8EA2DEC5\t0x7E40\n0x8EA2DEC6\t0x7E47\n0x8EA2DEC7\t0x7E29\n0x8EA2DEC8\t0x7E4C\n0x8EA2DEC9\t0x7E30\n0x8EA2DECA\t0x7E3B\n0x8EA2DECB\t0x7E36\n0x8EA2DECC\t0x7E44\n0x8EA2DECD\t0x7E3A\n0x8EA2DECE\t0x7F45\n0x8EA2DECF\t0x7F7F\n0x8EA2DED0\t0x7F7E\n0x8EA2DED1\t0x7F7D\n0x8EA2DED2\t0x7FF4\n0x8EA2DED3\t0x7FF2\n0x8EA2DED4\t0x802C\n0x8EA2DED5\t0x81BB\n0x8EA2DED6\t0x81C4\n0x8EA2DED7\t0x81CC\n0x8EA2DED8\t0x81CA\n0x8EA2DED9\t0x81C5\n0x8EA2DEDA\t0x81C7\n0x8EA2DEDB\t0x81BC\n0x8EA2DEDC\t0x81E9\n0x8EA2DEDD\t0x825B\n0x8EA2DEDE\t0x825A\n0x8EA2DEDF\t0x825C\n0x8EA2DEE0\t0x8583\n0x8EA2DEE1\t0x8580\n0x8EA2DEE2\t0x858F\n0x8EA2DEE3\t0x85A7\n0x8EA2DEE4\t0x8595\n0x8EA2DEE5\t0x85A0\n0x8EA2DEE6\t0x858B\n0x8EA2DEE7\t0x85A3\n0x8EA2DEE8\t0x857B\n0x8EA2DEE9\t0x85A4\n0x8EA2DEEA\t0x859A\n0x8EA2DEEB\t0x859E\n0x8EA2DEEC\t0x8577\n0x8EA2DEED\t0x857C\n0x8EA2DEEE\t0x8589\n0x8EA2DEEF\t0x85A1\n0x8EA2DEF0\t0x857A\n0x8EA2DEF1\t0x8578\n0x8EA2DEF2\t0x8557\n0x8EA2DEF3\t0x858E\n0x8EA2DEF4\t0x8596\n0x8EA2DEF5\t0x8586\n0x8EA2DEF6\t0x858D\n0x8EA2DEF7\t0x8599\n0x8EA2DEF8\t0x859D\n0x8EA2DEF9\t0x8581\n0x8EA2DEFA\t0x85A2\n0x8EA2DEFB\t0x8582\n0x8EA2DEFC\t0x8588\n0x8EA2DEFD\t0x8585\n0x8EA2DEFE\t0x8579\n0x8EA2DFA1\t0x8576\n0x8EA2DFA2\t0x8598\n0x8EA2DFA3\t0x8590\n0x8EA2DFA4\t0x859F\n0x8EA2DFA5\t0x8668\n0x8EA2DFA6\t0x87BE\n0x8EA2DFA7\t0x87AA\n0x8EA2DFA8\t0x87AD\n0x8EA2DFA9\t0x87C5\n0x8EA2DFAA\t0x87B0\n0x8EA2DFAB\t0x87AC\n0x8EA2DFAC\t0x87B9\n0x8EA2DFAD\t0x87B5\n0x8EA2DFAE\t0x87BC\n0x8EA2DFAF\t0x87AE\n0x8EA2DFB0\t0x87C9\n0x8EA2DFB1\t0x87C3\n0x8EA2DFB2\t0x87C2\n0x8EA2DFB3\t0x87CC\n0x8EA2DFB4\t0x87B7\n0x8EA2DFB5\t0x87AF\n0x8EA2DFB6\t0x87C4\n0x8EA2DFB7\t0x87CA\n0x8EA2DFB8\t0x87B4\n0x8EA2DFB9\t0x87B6\n0x8EA2DFBA\t0x87BF\n0x8EA2DFBB\t0x87B8\n0x8EA2DFBC\t0x87BD\n0x8EA2DFBD\t0x87DE\n0x8EA2DFBE\t0x87B2\n0x8EA2DFBF\t0x8935\n0x8EA2DFC0\t0x8933\n0x8EA2DFC1\t0x893C\n0x8EA2DFC2\t0x893E\n0x8EA2DFC3\t0x8941\n0x8EA2DFC4\t0x8952\n0x8EA2DFC5\t0x8937\n0x8EA2DFC6\t0x8942\n0x8EA2DFC7\t0x89AD\n0x8EA2DFC8\t0x89AF\n0x8EA2DFC9\t0x89AE\n0x8EA2DFCA\t0x89F2\n0x8EA2DFCB\t0x89F3\n0x8EA2DFCC\t0x8B1E\n0x8EA2DFCD\t0x8B18\n0x8EA2DFCE\t0x8B16\n0x8EA2DFCF\t0x8B11\n0x8EA2DFD0\t0x8B05\n0x8EA2DFD1\t0x8B0B\n0x8EA2DFD2\t0x8B22\n0x8EA2DFD3\t0x8B0F\n0x8EA2DFD4\t0x8B12\n0x8EA2DFD5\t0x8B15\n0x8EA2DFD6\t0x8B07\n0x8EA2DFD7\t0x8B0D\n0x8EA2DFD8\t0x8B08\n0x8EA2DFD9\t0x8B06\n0x8EA2DFDA\t0x8B1C\n0x8EA2DFDB\t0x8B13\n0x8EA2DFDC\t0x8B1A\n0x8EA2DFDD\t0x8C4F\n0x8EA2DFDE\t0x8C70\n0x8EA2DFDF\t0x8C72\n0x8EA2DFE0\t0x8C71\n0x8EA2DFE1\t0x8C6F\n0x8EA2DFE2\t0x8C95\n0x8EA2DFE3\t0x8C94\n0x8EA2DFE4\t0x8CF9\n0x8EA2DFE5\t0x8D6F\n0x8EA2DFE6\t0x8E4E\n0x8EA2DFE7\t0x8E4D\n0x8EA2DFE8\t0x8E53\n0x8EA2DFE9\t0x8E50\n0x8EA2DFEA\t0x8E4C\n0x8EA2DFEB\t0x8E47\n0x8EA2DFEC\t0x8F43\n0x8EA2DFED\t0x8F40\n0x8EA2DFEE\t0x9085\n0x8EA2DFEF\t0x907E\n0x8EA2DFF0\t0x9138\n0x8EA2DFF1\t0x919A\n0x8EA2DFF2\t0x91A2\n0x8EA2DFF3\t0x919B\n0x8EA2DFF4\t0x9199\n0x8EA2DFF5\t0x919F\n0x8EA2DFF6\t0x91A1\n0x8EA2DFF7\t0x919D\n0x8EA2DFF8\t0x91A0\n0x8EA2DFF9\t0x93A1\n0x8EA2DFFA\t0x9383\n0x8EA2DFFB\t0x93AF\n0x8EA2DFFC\t0x9364\n0x8EA2DFFD\t0x9356\n0x8EA2DFFE\t0x9347\n0x8EA2E0A1\t0x937C\n0x8EA2E0A2\t0x9358\n0x8EA2E0A3\t0x935C\n0x8EA2E0A4\t0x9376\n0x8EA2E0A5\t0x9349\n0x8EA2E0A6\t0x9350\n0x8EA2E0A7\t0x9351\n0x8EA2E0A8\t0x9360\n0x8EA2E0A9\t0x936D\n0x8EA2E0AA\t0x938F\n0x8EA2E0AB\t0x934C\n0x8EA2E0AC\t0x936A\n0x8EA2E0AD\t0x9379\n0x8EA2E0AE\t0x9357\n0x8EA2E0AF\t0x9355\n0x8EA2E0B0\t0x9352\n0x8EA2E0B1\t0x934F\n0x8EA2E0B2\t0x9371\n0x8EA2E0B3\t0x9377\n0x8EA2E0B4\t0x937B\n0x8EA2E0B5\t0x9361\n0x8EA2E0B6\t0x935E\n0x8EA2E0B7\t0x9363\n0x8EA2E0B8\t0x9367\n0x8EA2E0B9\t0x934E\n0x8EA2E0BA\t0x9359\n0x8EA2E0BB\t0x95C7\n0x8EA2E0BC\t0x95C0\n0x8EA2E0BD\t0x95C9\n0x8EA2E0BE\t0x95C3\n0x8EA2E0BF\t0x95C5\n0x8EA2E0C0\t0x95B7\n0x8EA2E0C1\t0x96AE\n0x8EA2E0C2\t0x96B0\n0x8EA2E0C3\t0x96AC\n0x8EA2E0C4\t0x9720\n0x8EA2E0C5\t0x971F\n0x8EA2E0C6\t0x9718\n0x8EA2E0C7\t0x971D\n0x8EA2E0C8\t0x9719\n0x8EA2E0C9\t0x979A\n0x8EA2E0CA\t0x97A1\n0x8EA2E0CB\t0x979C\n0x8EA2E0CC\t0x979E\n0x8EA2E0CD\t0x979D\n0x8EA2E0CE\t0x97D5\n0x8EA2E0CF\t0x97D4\n0x8EA2E0D0\t0x97F1\n0x8EA2E0D1\t0x9841\n0x8EA2E0D2\t0x9844\n0x8EA2E0D3\t0x984A\n0x8EA2E0D4\t0x9849\n0x8EA2E0D5\t0x9845\n0x8EA2E0D6\t0x9843\n0x8EA2E0D7\t0x9925\n0x8EA2E0D8\t0x992B\n0x8EA2E0D9\t0x992C\n0x8EA2E0DA\t0x992A\n0x8EA2E0DB\t0x9933\n0x8EA2E0DC\t0x9932\n0x8EA2E0DD\t0x992F\n0x8EA2E0DE\t0x992D\n0x8EA2E0DF\t0x9931\n0x8EA2E0E0\t0x9930\n0x8EA2E0E1\t0x9998\n0x8EA2E0E2\t0x99A3\n0x8EA2E0E3\t0x99A1\n0x8EA2E0E4\t0x9A02\n0x8EA2E0E5\t0x99FA\n0x8EA2E0E6\t0x99F4\n0x8EA2E0E7\t0x99F7\n0x8EA2E0E8\t0x99F9\n0x8EA2E0E9\t0x99F8\n0x8EA2E0EA\t0x99F6\n0x8EA2E0EB\t0x99FB\n0x8EA2E0EC\t0x99FD\n0x8EA2E0ED\t0x99FE\n0x8EA2E0EE\t0x99FC\n0x8EA2E0EF\t0x9A03\n0x8EA2E0F0\t0x9ABE\n0x8EA2E0F1\t0x9AFE\n0x8EA2E0F2\t0x9AFD\n0x8EA2E0F3\t0x9B01\n0x8EA2E0F4\t0x9AFC\n0x8EA2E0F5\t0x9B48\n0x8EA2E0F6\t0x9B9A\n0x8EA2E0F7\t0x9BA8\n0x8EA2E0F8\t0x9B9E\n0x8EA2E0F9\t0x9B9B\n0x8EA2E0FA\t0x9BA6\n0x8EA2E0FB\t0x9BA1\n0x8EA2E0FC\t0x9BA5\n0x8EA2E0FD\t0x9BA4\n0x8EA2E0FE\t0x9B86\n0x8EA2E1A1\t0x9BA2\n0x8EA2E1A2\t0x9BA0\n0x8EA2E1A3\t0x9BAF\n0x8EA2E1A4\t0x9D33\n0x8EA2E1A5\t0x9D41\n0x8EA2E1A6\t0x9D67\n0x8EA2E1A7\t0x9D36\n0x8EA2E1A8\t0x9D2E\n0x8EA2E1A9\t0x9D2F\n0x8EA2E1AA\t0x9D31\n0x8EA2E1AB\t0x9D38\n0x8EA2E1AC\t0x9D30\n0x8EA2E1AD\t0x9D45\n0x8EA2E1AE\t0x9D42\n0x8EA2E1AF\t0x9D43\n0x8EA2E1B0\t0x9D3E\n0x8EA2E1B1\t0x9D37\n0x8EA2E1B2\t0x9D40\n0x8EA2E1B3\t0x9D3D\n0x8EA2E1B4\t0x7FF5\n0x8EA2E1B5\t0x9D2D\n0x8EA2E1B6\t0x9E8A\n0x8EA2E1B7\t0x9E89\n0x8EA2E1B8\t0x9E8D\n0x8EA2E1B9\t0x9EB0\n0x8EA2E1BA\t0x9EC8\n0x8EA2E1BB\t0x9EDA\n0x8EA2E1BC\t0x9EFB\n0x8EA2E1BD\t0x9EFF\n0x8EA2E1BE\t0x9F24\n0x8EA2E1BF\t0x9F23\n0x8EA2E1C0\t0x9F22\n0x8EA2E1C1\t0x9F54\n0x8EA2E1C2\t0x9FA0\n0x8EA2E1C3\t0x5131\n0x8EA2E1C4\t0x512D\n0x8EA2E1C5\t0x512E\n0x8EA2E1C6\t0x5698\n0x8EA2E1C7\t0x569C\n0x8EA2E1C8\t0x5697\n0x8EA2E1C9\t0x569A\n0x8EA2E1CA\t0x569D\n0x8EA2E1CB\t0x5699\n0x8EA2E1CC\t0x5970\n0x8EA2E1CD\t0x5B3C\n0x8EA2E1CE\t0x5C69\n0x8EA2E1CF\t0x5C6A\n0x8EA2E1D0\t0x5DC0\n0x8EA2E1D1\t0x5E6D\n0x8EA2E1D2\t0x5E6E\n0x8EA2E1D3\t0x61D8\n0x8EA2E1D4\t0x61DF\n0x8EA2E1D5\t0x61ED\n0x8EA2E1D6\t0x61EE\n0x8EA2E1D7\t0x61F1\n0x8EA2E1D8\t0x61EA\n0x8EA2E1D9\t0x61F0\n0x8EA2E1DA\t0x61EB\n0x8EA2E1DB\t0x61D6\n0x8EA2E1DC\t0x61E9\n0x8EA2E1DD\t0x64FF\n0x8EA2E1DE\t0x6504\n0x8EA2E1DF\t0x64FD\n0x8EA2E1E0\t0x64F8\n0x8EA2E1E1\t0x6501\n0x8EA2E1E2\t0x6503\n0x8EA2E1E3\t0x64FC\n0x8EA2E1E4\t0x6594\n0x8EA2E1E5\t0x65DB\n0x8EA2E1E6\t0x66DA\n0x8EA2E1E7\t0x66DB\n0x8EA2E1E8\t0x66D8\n0x8EA2E1E9\t0x6AC5\n0x8EA2E1EA\t0x6AB9\n0x8EA2E1EB\t0x6ABD\n0x8EA2E1EC\t0x6AE1\n0x8EA2E1ED\t0x6AC6\n0x8EA2E1EE\t0x6ABA\n0x8EA2E1EF\t0x6AB6\n0x8EA2E1F0\t0x6AB7\n0x8EA2E1F1\t0x6AC7\n0x8EA2E1F2\t0x6AB4\n0x8EA2E1F3\t0x6AAD\n0x8EA2E1F4\t0x6B5E\n0x8EA2E1F5\t0x6BC9\n0x8EA2E1F6\t0x6C0B\n0x8EA2E1F7\t0x7007\n0x8EA2E1F8\t0x700C\n0x8EA2E1F9\t0x700D\n0x8EA2E1FA\t0x7001\n0x8EA2E1FB\t0x7005\n0x8EA2E1FC\t0x7014\n0x8EA2E1FD\t0x700E\n0x8EA2E1FE\t0x6FFF\n0x8EA2E2A1\t0x7000\n0x8EA2E2A2\t0x6FFB\n0x8EA2E2A3\t0x7026\n0x8EA2E2A4\t0x6FFC\n0x8EA2E2A5\t0x6FF7\n0x8EA2E2A6\t0x700A\n0x8EA2E2A7\t0x7201\n0x8EA2E2A8\t0x71FF\n0x8EA2E2A9\t0x71F9\n0x8EA2E2AA\t0x7203\n0x8EA2E2AB\t0x71FD\n0x8EA2E2AC\t0x7376\n0x8EA2E2AD\t0x74B8\n0x8EA2E2AE\t0x74C0\n0x8EA2E2AF\t0x74B5\n0x8EA2E2B0\t0x74C1\n0x8EA2E2B1\t0x74BE\n0x8EA2E2B2\t0x74B6\n0x8EA2E2B3\t0x74BB\n0x8EA2E2B4\t0x74C2\n0x8EA2E2B5\t0x7514\n0x8EA2E2B6\t0x7513\n0x8EA2E2B7\t0x765C\n0x8EA2E2B8\t0x7664\n0x8EA2E2B9\t0x7659\n0x8EA2E2BA\t0x7650\n0x8EA2E2BB\t0x7653\n0x8EA2E2BC\t0x7657\n0x8EA2E2BD\t0x765A\n0x8EA2E2BE\t0x76A6\n0x8EA2E2BF\t0x76BD\n0x8EA2E2C0\t0x76EC\n0x8EA2E2C1\t0x77C2\n0x8EA2E2C2\t0x77BA\n0x8EA2E2C3\t0x790C\n0x8EA2E2C4\t0x7913\n0x8EA2E2C5\t0x7914\n0x8EA2E2C6\t0x7909\n0x8EA2E2C7\t0x7910\n0x8EA2E2C8\t0x7912\n0x8EA2E2C9\t0x7911\n0x8EA2E2CA\t0x79AD\n0x8EA2E2CB\t0x79AC\n0x8EA2E2CC\t0x7A5F\n0x8EA2E2CD\t0x7C1C\n0x8EA2E2CE\t0x7C29\n0x8EA2E2CF\t0x7C19\n0x8EA2E2D0\t0x7C20\n0x8EA2E2D1\t0x7C1F\n0x8EA2E2D2\t0x7C2D\n0x8EA2E2D3\t0x7C1D\n0x8EA2E2D4\t0x7C26\n0x8EA2E2D5\t0x7C28\n0x8EA2E2D6\t0x7C22\n0x8EA2E2D7\t0x7C25\n0x8EA2E2D8\t0x7C30\n0x8EA2E2D9\t0x7E5C\n0x8EA2E2DA\t0x7E50\n0x8EA2E2DB\t0x7E56\n0x8EA2E2DC\t0x7E63\n0x8EA2E2DD\t0x7E58\n0x8EA2E2DE\t0x7E62\n0x8EA2E2DF\t0x7E5F\n0x8EA2E2E0\t0x7E51\n0x8EA2E2E1\t0x7E60\n0x8EA2E2E2\t0x7E57\n0x8EA2E2E3\t0x7E53\n0x8EA2E2E4\t0x7FB5\n0x8EA2E2E5\t0x7FB3\n0x8EA2E2E6\t0x7FF7\n0x8EA2E2E7\t0x7FF8\n0x8EA2E2E8\t0x8075\n0x8EA2E2E9\t0x81D1\n0x8EA2E2EA\t0x81D2\n0x8EA2E2EB\t0x81D0\n0x8EA2E2EC\t0x825F\n0x8EA2E2ED\t0x825E\n0x8EA2E2EE\t0x85B4\n0x8EA2E2EF\t0x85C6\n0x8EA2E2F0\t0x85C0\n0x8EA2E2F1\t0x85C3\n0x8EA2E2F2\t0x85C2\n0x8EA2E2F3\t0x85B3\n0x8EA2E2F4\t0x85B5\n0x8EA2E2F5\t0x85BD\n0x8EA2E2F6\t0x85C7\n0x8EA2E2F7\t0x85C4\n0x8EA2E2F8\t0x85BF\n0x8EA2E2F9\t0x85CB\n0x8EA2E2FA\t0x85CE\n0x8EA2E2FB\t0x85C8\n0x8EA2E2FC\t0x85C5\n0x8EA2E2FD\t0x85B1\n0x8EA2E2FE\t0x85B6\n0x8EA2E3A1\t0x85D2\n0x8EA2E3A2\t0x8624\n0x8EA2E3A3\t0x85B8\n0x8EA2E3A4\t0x85B7\n0x8EA2E3A5\t0x85BE\n0x8EA2E3A6\t0x8669\n0x8EA2E3A7\t0x87E7\n0x8EA2E3A8\t0x87E6\n0x8EA2E3A9\t0x87E2\n0x8EA2E3AA\t0x87DB\n0x8EA2E3AB\t0x87EB\n0x8EA2E3AC\t0x87EA\n0x8EA2E3AD\t0x87E5\n0x8EA2E3AE\t0x87DF\n0x8EA2E3AF\t0x87F3\n0x8EA2E3B0\t0x87E4\n0x8EA2E3B1\t0x87D4\n0x8EA2E3B2\t0x87DC\n0x8EA2E3B3\t0x87D3\n0x8EA2E3B4\t0x87ED\n0x8EA2E3B5\t0x87D8\n0x8EA2E3B6\t0x87E3\n0x8EA2E3B7\t0x87D7\n0x8EA2E3B8\t0x87D9\n0x8EA2E3B9\t0x8801\n0x8EA2E3BA\t0x87F4\n0x8EA2E3BB\t0x87E8\n0x8EA2E3BC\t0x87DD\n0x8EA2E3BD\t0x8953\n0x8EA2E3BE\t0x894B\n0x8EA2E3BF\t0x894F\n0x8EA2E3C0\t0x894C\n0x8EA2E3C1\t0x8946\n0x8EA2E3C2\t0x8950\n0x8EA2E3C3\t0x8951\n0x8EA2E3C4\t0x8949\n0x8EA2E3C5\t0x8B2A\n0x8EA2E3C6\t0x8B27\n0x8EA2E3C7\t0x8B23\n0x8EA2E3C8\t0x8B33\n0x8EA2E3C9\t0x8B30\n0x8EA2E3CA\t0x8B35\n0x8EA2E3CB\t0x8B47\n0x8EA2E3CC\t0x8B2F\n0x8EA2E3CD\t0x8B3C\n0x8EA2E3CE\t0x8B3E\n0x8EA2E3CF\t0x8B31\n0x8EA2E3D0\t0x8B25\n0x8EA2E3D1\t0x8B37\n0x8EA2E3D2\t0x8B26\n0x8EA2E3D3\t0x8B36\n0x8EA2E3D4\t0x8B2E\n0x8EA2E3D5\t0x8B24\n0x8EA2E3D6\t0x8B3B\n0x8EA2E3D7\t0x8B3D\n0x8EA2E3D8\t0x8B3A\n0x8EA2E3D9\t0x8C42\n0x8EA2E3DA\t0x8C75\n0x8EA2E3DB\t0x8C99\n0x8EA2E3DC\t0x8C98\n0x8EA2E3DD\t0x8C97\n0x8EA2E3DE\t0x8CFE\n0x8EA2E3DF\t0x8D04\n0x8EA2E3E0\t0x8D02\n0x8EA2E3E1\t0x8D00\n0x8EA2E3E2\t0x8E5C\n0x8EA2E3E3\t0x8E62\n0x8EA2E3E4\t0x8E60\n0x8EA2E3E5\t0x8E57\n0x8EA2E3E6\t0x8E56\n0x8EA2E3E7\t0x8E5E\n0x8EA2E3E8\t0x8E65\n0x8EA2E3E9\t0x8E67\n0x8EA2E3EA\t0x8E5B\n0x8EA2E3EB\t0x8E5A\n0x8EA2E3EC\t0x8E61\n0x8EA2E3ED\t0x8E5D\n0x8EA2E3EE\t0x8E69\n0x8EA2E3EF\t0x8E54\n0x8EA2E3F0\t0x8F46\n0x8EA2E3F1\t0x8F47\n0x8EA2E3F2\t0x8F48\n0x8EA2E3F3\t0x8F4B\n0x8EA2E3F4\t0x9128\n0x8EA2E3F5\t0x913A\n0x8EA2E3F6\t0x913B\n0x8EA2E3F7\t0x913E\n0x8EA2E3F8\t0x91A8\n0x8EA2E3F9\t0x91A5\n0x8EA2E3FA\t0x91A7\n0x8EA2E3FB\t0x91AF\n0x8EA2E3FC\t0x91AA\n0x8EA2E3FD\t0x93B5\n0x8EA2E3FE\t0x938C\n0x8EA2E4A1\t0x9392\n0x8EA2E4A2\t0x93B7\n0x8EA2E4A3\t0x939B\n0x8EA2E4A4\t0x939D\n0x8EA2E4A5\t0x9389\n0x8EA2E4A6\t0x93A7\n0x8EA2E4A7\t0x938E\n0x8EA2E4A8\t0x93AA\n0x8EA2E4A9\t0x939E\n0x8EA2E4AA\t0x93A6\n0x8EA2E4AB\t0x9395\n0x8EA2E4AC\t0x9388\n0x8EA2E4AD\t0x9399\n0x8EA2E4AE\t0x939F\n0x8EA2E4AF\t0x9380\n0x8EA2E4B0\t0x938D\n0x8EA2E4B1\t0x93B1\n0x8EA2E4B2\t0x9391\n0x8EA2E4B3\t0x93B2\n0x8EA2E4B4\t0x93A4\n0x8EA2E4B5\t0x93A8\n0x8EA2E4B6\t0x93B4\n0x8EA2E4B7\t0x93A3\n0x8EA2E4B8\t0x95D2\n0x8EA2E4B9\t0x95D3\n0x8EA2E4BA\t0x95D1\n0x8EA2E4BB\t0x96B3\n0x8EA2E4BC\t0x96D7\n0x8EA2E4BD\t0x96DA\n0x8EA2E4BE\t0x5DC2\n0x8EA2E4BF\t0x96DF\n0x8EA2E4C0\t0x96D8\n0x8EA2E4C1\t0x96DD\n0x8EA2E4C2\t0x9723\n0x8EA2E4C3\t0x9722\n0x8EA2E4C4\t0x9725\n0x8EA2E4C5\t0x97AC\n0x8EA2E4C6\t0x97AE\n0x8EA2E4C7\t0x97A8\n0x8EA2E4C8\t0x97AB\n0x8EA2E4C9\t0x97A4\n0x8EA2E4CA\t0x97AA\n0x8EA2E4CB\t0x97A2\n0x8EA2E4CC\t0x97A5\n0x8EA2E4CD\t0x97D7\n0x8EA2E4CE\t0x97D9\n0x8EA2E4CF\t0x97D6\n0x8EA2E4D0\t0x97D8\n0x8EA2E4D1\t0x97FA\n0x8EA2E4D2\t0x9850\n0x8EA2E4D3\t0x9851\n0x8EA2E4D4\t0x9852\n0x8EA2E4D5\t0x98B8\n0x8EA2E4D6\t0x9941\n0x8EA2E4D7\t0x993C\n0x8EA2E4D8\t0x993A\n0x8EA2E4D9\t0x9A0F\n0x8EA2E4DA\t0x9A0B\n0x8EA2E4DB\t0x9A09\n0x8EA2E4DC\t0x9A0D\n0x8EA2E4DD\t0x9A04\n0x8EA2E4DE\t0x9A11\n0x8EA2E4DF\t0x9A0A\n0x8EA2E4E0\t0x9A05\n0x8EA2E4E1\t0x9A07\n0x8EA2E4E2\t0x9A06\n0x8EA2E4E3\t0x9AC0\n0x8EA2E4E4\t0x9ADC\n0x8EA2E4E5\t0x9B08\n0x8EA2E4E6\t0x9B04\n0x8EA2E4E7\t0x9B05\n0x8EA2E4E8\t0x9B29\n0x8EA2E4E9\t0x9B35\n0x8EA2E4EA\t0x9B4A\n0x8EA2E4EB\t0x9B4C\n0x8EA2E4EC\t0x9B4B\n0x8EA2E4ED\t0x9BC7\n0x8EA2E4EE\t0x9BC6\n0x8EA2E4EF\t0x9BC3\n0x8EA2E4F0\t0x9BBF\n0x8EA2E4F1\t0x9BC1\n0x8EA2E4F2\t0x9BB5\n0x8EA2E4F3\t0x9BB8\n0x8EA2E4F4\t0x9BD3\n0x8EA2E4F5\t0x9BB6\n0x8EA2E4F6\t0x9BC4\n0x8EA2E4F7\t0x9BB9\n0x8EA2E4F8\t0x9BBD\n0x8EA2E4F9\t0x9D5C\n0x8EA2E4FA\t0x9D53\n0x8EA2E4FB\t0x9D4F\n0x8EA2E4FC\t0x9D4A\n0x8EA2E4FD\t0x9D5B\n0x8EA2E4FE\t0x9D4B\n0x8EA2E5A1\t0x9D59\n0x8EA2E5A2\t0x9D56\n0x8EA2E5A3\t0x9D4C\n0x8EA2E5A4\t0x9D57\n0x8EA2E5A5\t0x9D52\n0x8EA2E5A6\t0x9D54\n0x8EA2E5A7\t0x9D5F\n0x8EA2E5A8\t0x9D58\n0x8EA2E5A9\t0x9D5A\n0x8EA2E5AA\t0x9E8E\n0x8EA2E5AB\t0x9E8C\n0x8EA2E5AC\t0x9EDF\n0x8EA2E5AD\t0x9F01\n0x8EA2E5AE\t0x9F00\n0x8EA2E5AF\t0x9F16\n0x8EA2E5B0\t0x9F25\n0x8EA2E5B1\t0x9F2B\n0x8EA2E5B2\t0x9F2A\n0x8EA2E5B3\t0x9F29\n0x8EA2E5B4\t0x9F28\n0x8EA2E5B5\t0x9F4C\n0x8EA2E5B6\t0x9F55\n0x8EA2E5B7\t0x5134\n0x8EA2E5B8\t0x5135\n0x8EA2E5B9\t0x5296\n0x8EA2E5BA\t0x52F7\n0x8EA2E5BB\t0x53B4\n0x8EA2E5BC\t0x56AB\n0x8EA2E5BD\t0x56AD\n0x8EA2E5BE\t0x56A6\n0x8EA2E5BF\t0x56A7\n0x8EA2E5C0\t0x56AA\n0x8EA2E5C1\t0x56AC\n0x8EA2E5C2\t0x58DA\n0x8EA2E5C3\t0x58DD\n0x8EA2E5C4\t0x58DB\n0x8EA2E5C5\t0x5912\n0x8EA2E5C6\t0x5B3D\n0x8EA2E5C7\t0x5B3E\n0x8EA2E5C8\t0x5B3F\n0x8EA2E5C9\t0x5DC3\n0x8EA2E5CA\t0x5E70\n0x8EA2E5CB\t0x5FBF\n0x8EA2E5CC\t0x61FB\n0x8EA2E5CD\t0x6507\n0x8EA2E5CE\t0x6510\n0x8EA2E5CF\t0x650D\n0x8EA2E5D0\t0x6509\n0x8EA2E5D1\t0x650C\n0x8EA2E5D2\t0x650E\n0x8EA2E5D3\t0x6584\n0x8EA2E5D4\t0x65DE\n0x8EA2E5D5\t0x65DD\n0x8EA2E5D6\t0x66DE\n0x8EA2E5D7\t0x6AE7\n0x8EA2E5D8\t0x6AE0\n0x8EA2E5D9\t0x6ACC\n0x8EA2E5DA\t0x6AD1\n0x8EA2E5DB\t0x6AD9\n0x8EA2E5DC\t0x6ACB\n0x8EA2E5DD\t0x6ADF\n0x8EA2E5DE\t0x6ADC\n0x8EA2E5DF\t0x6AD0\n0x8EA2E5E0\t0x6AEB\n0x8EA2E5E1\t0x6ACF\n0x8EA2E5E2\t0x6ACD\n0x8EA2E5E3\t0x6ADE\n0x8EA2E5E4\t0x6B60\n0x8EA2E5E5\t0x6BB0\n0x8EA2E5E6\t0x6C0C\n0x8EA2E5E7\t0x7019\n0x8EA2E5E8\t0x7027\n0x8EA2E5E9\t0x7020\n0x8EA2E5EA\t0x7016\n0x8EA2E5EB\t0x702B\n0x8EA2E5EC\t0x7021\n0x8EA2E5ED\t0x7022\n0x8EA2E5EE\t0x7023\n0x8EA2E5EF\t0x7029\n0x8EA2E5F0\t0x7017\n0x8EA2E5F1\t0x7024\n0x8EA2E5F2\t0x701C\n0x8EA2E5F3\t0x720C\n0x8EA2E5F4\t0x720A\n0x8EA2E5F5\t0x7207\n0x8EA2E5F6\t0x7202\n0x8EA2E5F7\t0x7205\n0x8EA2E5F8\t0x72A5\n0x8EA2E5F9\t0x72A6\n0x8EA2E5FA\t0x72A4\n0x8EA2E5FB\t0x72A3\n0x8EA2E5FC\t0x72A1\n0x8EA2E5FD\t0x74CB\n0x8EA2E5FE\t0x74C5\n0x8EA2E6A1\t0x74B7\n0x8EA2E6A2\t0x74C3\n0x8EA2E6A3\t0x7516\n0x8EA2E6A4\t0x7660\n0x8EA2E6A5\t0x77C9\n0x8EA2E6A6\t0x77CA\n0x8EA2E6A7\t0x77C4\n0x8EA2E6A8\t0x77F1\n0x8EA2E6A9\t0x791D\n0x8EA2E6AA\t0x791B\n0x8EA2E6AB\t0x7921\n0x8EA2E6AC\t0x791C\n0x8EA2E6AD\t0x7917\n0x8EA2E6AE\t0x791E\n0x8EA2E6AF\t0x79B0\n0x8EA2E6B0\t0x7A67\n0x8EA2E6B1\t0x7A68\n0x8EA2E6B2\t0x7C33\n0x8EA2E6B3\t0x7C3C\n0x8EA2E6B4\t0x7C39\n0x8EA2E6B5\t0x7C2C\n0x8EA2E6B6\t0x7C3B\n0x8EA2E6B7\t0x7CEC\n0x8EA2E6B8\t0x7CEA\n0x8EA2E6B9\t0x7E76\n0x8EA2E6BA\t0x7E75\n0x8EA2E6BB\t0x7E78\n0x8EA2E6BC\t0x7E70\n0x8EA2E6BD\t0x7E77\n0x8EA2E6BE\t0x7E6F\n0x8EA2E6BF\t0x7E7A\n0x8EA2E6C0\t0x7E72\n0x8EA2E6C1\t0x7E74\n0x8EA2E6C2\t0x7E68\n0x8EA2E6C3\t0x7F4B\n0x8EA2E6C4\t0x7F4A\n0x8EA2E6C5\t0x7F83\n0x8EA2E6C6\t0x7F86\n0x8EA2E6C7\t0x7FB7\n0x8EA2E6C8\t0x7FFD\n0x8EA2E6C9\t0x7FFE\n0x8EA2E6CA\t0x8078\n0x8EA2E6CB\t0x81D7\n0x8EA2E6CC\t0x81D5\n0x8EA2E6CD\t0x820B\n0x8EA2E6CE\t0x8264\n0x8EA2E6CF\t0x8261\n0x8EA2E6D0\t0x8263\n0x8EA2E6D1\t0x85EB\n0x8EA2E6D2\t0x85F1\n0x8EA2E6D3\t0x85ED\n0x8EA2E6D4\t0x85D9\n0x8EA2E6D5\t0x85E1\n0x8EA2E6D6\t0x85E8\n0x8EA2E6D7\t0x85DA\n0x8EA2E6D8\t0x85D7\n0x8EA2E6D9\t0x85EC\n0x8EA2E6DA\t0x85F2\n0x8EA2E6DB\t0x85F8\n0x8EA2E6DC\t0x85D8\n0x8EA2E6DD\t0x85DF\n0x8EA2E6DE\t0x85E3\n0x8EA2E6DF\t0x85DC\n0x8EA2E6E0\t0x85D1\n0x8EA2E6E1\t0x85F0\n0x8EA2E6E2\t0x85E6\n0x8EA2E6E3\t0x85EF\n0x8EA2E6E4\t0x85DE\n0x8EA2E6E5\t0x85E2\n0x8EA2E6E6\t0x8800\n0x8EA2E6E7\t0x87FA\n0x8EA2E6E8\t0x8803\n0x8EA2E6E9\t0x87F6\n0x8EA2E6EA\t0x87F7\n0x8EA2E6EB\t0x8809\n0x8EA2E6EC\t0x880C\n0x8EA2E6ED\t0x880B\n0x8EA2E6EE\t0x8806\n0x8EA2E6EF\t0x87FC\n0x8EA2E6F0\t0x8808\n0x8EA2E6F1\t0x87FF\n0x8EA2E6F2\t0x880A\n0x8EA2E6F3\t0x8802\n0x8EA2E6F4\t0x8962\n0x8EA2E6F5\t0x895A\n0x8EA2E6F6\t0x895B\n0x8EA2E6F7\t0x8957\n0x8EA2E6F8\t0x8961\n0x8EA2E6F9\t0x895C\n0x8EA2E6FA\t0x8958\n0x8EA2E6FB\t0x895D\n0x8EA2E6FC\t0x8959\n0x8EA2E6FD\t0x8988\n0x8EA2E6FE\t0x89B7\n0x8EA2E7A1\t0x89B6\n0x8EA2E7A2\t0x89F6\n0x8EA2E7A3\t0x8B50\n0x8EA2E7A4\t0x8B48\n0x8EA2E7A5\t0x8B4A\n0x8EA2E7A6\t0x8B40\n0x8EA2E7A7\t0x8B53\n0x8EA2E7A8\t0x8B56\n0x8EA2E7A9\t0x8B54\n0x8EA2E7AA\t0x8B4B\n0x8EA2E7AB\t0x8B55\n0x8EA2E7AC\t0x8B51\n0x8EA2E7AD\t0x8B42\n0x8EA2E7AE\t0x8B52\n0x8EA2E7AF\t0x8B57\n0x8EA2E7B0\t0x8C43\n0x8EA2E7B1\t0x8C77\n0x8EA2E7B2\t0x8C76\n0x8EA2E7B3\t0x8C9A\n0x8EA2E7B4\t0x8D06\n0x8EA2E7B5\t0x8D07\n0x8EA2E7B6\t0x8D09\n0x8EA2E7B7\t0x8DAC\n0x8EA2E7B8\t0x8DAA\n0x8EA2E7B9\t0x8DAD\n0x8EA2E7BA\t0x8DAB\n0x8EA2E7BB\t0x8E6D\n0x8EA2E7BC\t0x8E78\n0x8EA2E7BD\t0x8E73\n0x8EA2E7BE\t0x8E6A\n0x8EA2E7BF\t0x8E6F\n0x8EA2E7C0\t0x8E7B\n0x8EA2E7C1\t0x8EC2\n0x8EA2E7C2\t0x8F52\n0x8EA2E7C3\t0x8F51\n0x8EA2E7C4\t0x8F4F\n0x8EA2E7C5\t0x8F50\n0x8EA2E7C6\t0x8F53\n0x8EA2E7C7\t0x8FB4\n0x8EA2E7C8\t0x9140\n0x8EA2E7C9\t0x913F\n0x8EA2E7CA\t0x91B0\n0x8EA2E7CB\t0x91AD\n0x8EA2E7CC\t0x93DE\n0x8EA2E7CD\t0x93C7\n0x8EA2E7CE\t0x93CF\n0x8EA2E7CF\t0x93C2\n0x8EA2E7D0\t0x93DA\n0x8EA2E7D1\t0x93D0\n0x8EA2E7D2\t0x93F9\n0x8EA2E7D3\t0x93EC\n0x8EA2E7D4\t0x93CC\n0x8EA2E7D5\t0x93D9\n0x8EA2E7D6\t0x93A9\n0x8EA2E7D7\t0x93E6\n0x8EA2E7D8\t0x93CA\n0x8EA2E7D9\t0x93D4\n0x8EA2E7DA\t0x93EE\n0x8EA2E7DB\t0x93E3\n0x8EA2E7DC\t0x93D5\n0x8EA2E7DD\t0x93C4\n0x8EA2E7DE\t0x93CE\n0x8EA2E7DF\t0x93C0\n0x8EA2E7E0\t0x93D2\n0x8EA2E7E1\t0x93A5\n0x8EA2E7E2\t0x93E7\n0x8EA2E7E3\t0x957D\n0x8EA2E7E4\t0x95DA\n0x8EA2E7E5\t0x95DB\n0x8EA2E7E6\t0x96E1\n0x8EA2E7E7\t0x9729\n0x8EA2E7E8\t0x972B\n0x8EA2E7E9\t0x972C\n0x8EA2E7EA\t0x9728\n0x8EA2E7EB\t0x9726\n0x8EA2E7EC\t0x97B3\n0x8EA2E7ED\t0x97B7\n0x8EA2E7EE\t0x97B6\n0x8EA2E7EF\t0x97DD\n0x8EA2E7F0\t0x97DE\n0x8EA2E7F1\t0x97DF\n0x8EA2E7F2\t0x985C\n0x8EA2E7F3\t0x9859\n0x8EA2E7F4\t0x985D\n0x8EA2E7F5\t0x9857\n0x8EA2E7F6\t0x98BF\n0x8EA2E7F7\t0x98BD\n0x8EA2E7F8\t0x98BB\n0x8EA2E7F9\t0x98BE\n0x8EA2E7FA\t0x9948\n0x8EA2E7FB\t0x9947\n0x8EA2E7FC\t0x9943\n0x8EA2E7FD\t0x99A6\n0x8EA2E7FE\t0x99A7\n0x8EA2E8A1\t0x9A1A\n0x8EA2E8A2\t0x9A15\n0x8EA2E8A3\t0x9A25\n0x8EA2E8A4\t0x9A1D\n0x8EA2E8A5\t0x9A24\n0x8EA2E8A6\t0x9A1B\n0x8EA2E8A7\t0x9A22\n0x8EA2E8A8\t0x9A20\n0x8EA2E8A9\t0x9A27\n0x8EA2E8AA\t0x9A23\n0x8EA2E8AB\t0x9A1E\n0x8EA2E8AC\t0x9A1C\n0x8EA2E8AD\t0x9A14\n0x8EA2E8AE\t0x9AC2\n0x8EA2E8AF\t0x9B0B\n0x8EA2E8B0\t0x9B0A\n0x8EA2E8B1\t0x9B0E\n0x8EA2E8B2\t0x9B0C\n0x8EA2E8B3\t0x9B37\n0x8EA2E8B4\t0x9BEA\n0x8EA2E8B5\t0x9BEB\n0x8EA2E8B6\t0x9BE0\n0x8EA2E8B7\t0x9BDE\n0x8EA2E8B8\t0x9BE4\n0x8EA2E8B9\t0x9BE6\n0x8EA2E8BA\t0x9BE2\n0x8EA2E8BB\t0x9BF0\n0x8EA2E8BC\t0x9BD4\n0x8EA2E8BD\t0x9BD7\n0x8EA2E8BE\t0x9BEC\n0x8EA2E8BF\t0x9BDC\n0x8EA2E8C0\t0x9BD9\n0x8EA2E8C1\t0x9BE5\n0x8EA2E8C2\t0x9BD5\n0x8EA2E8C3\t0x9BE1\n0x8EA2E8C4\t0x9BDA\n0x8EA2E8C5\t0x9D77\n0x8EA2E8C6\t0x9D81\n0x8EA2E8C7\t0x9D8A\n0x8EA2E8C8\t0x9D84\n0x8EA2E8C9\t0x9D88\n0x8EA2E8CA\t0x9D71\n0x8EA2E8CB\t0x9D80\n0x8EA2E8CC\t0x9D78\n0x8EA2E8CD\t0x9D86\n0x8EA2E8CE\t0x9D8B\n0x8EA2E8CF\t0x9D8C\n0x8EA2E8D0\t0x9D7D\n0x8EA2E8D1\t0x9D6B\n0x8EA2E8D2\t0x9D74\n0x8EA2E8D3\t0x9D75\n0x8EA2E8D4\t0x9D70\n0x8EA2E8D5\t0x9D69\n0x8EA2E8D6\t0x9D85\n0x8EA2E8D7\t0x9D73\n0x8EA2E8D8\t0x9D7B\n0x8EA2E8D9\t0x9D82\n0x8EA2E8DA\t0x9D6F\n0x8EA2E8DB\t0x9D79\n0x8EA2E8DC\t0x9D7F\n0x8EA2E8DD\t0x9D87\n0x8EA2E8DE\t0x9D68\n0x8EA2E8DF\t0x9E94\n0x8EA2E8E0\t0x9E91\n0x8EA2E8E1\t0x9EC0\n0x8EA2E8E2\t0x9EFC\n0x8EA2E8E3\t0x9F2D\n0x8EA2E8E4\t0x9F40\n0x8EA2E8E5\t0x9F41\n0x8EA2E8E6\t0x9F4D\n0x8EA2E8E7\t0x9F56\n0x8EA2E8E8\t0x9F57\n0x8EA2E8E9\t0x9F58\n0x8EA2E8EA\t0x5337\n0x8EA2E8EB\t0x56B2\n0x8EA2E8EC\t0x56B5\n0x8EA2E8ED\t0x56B3\n0x8EA2E8EE\t0x58E3\n0x8EA2E8EF\t0x5B45\n0x8EA2E8F0\t0x5DC6\n0x8EA2E8F1\t0x5DC7\n0x8EA2E8F2\t0x5EEE\n0x8EA2E8F3\t0x5EEF\n0x8EA2E8F4\t0x5FC0\n0x8EA2E8F5\t0x5FC1\n0x8EA2E8F6\t0x61F9\n0x8EA2E8F7\t0x6517\n0x8EA2E8F8\t0x6516\n0x8EA2E8F9\t0x6515\n0x8EA2E8FA\t0x6513\n0x8EA2E8FB\t0x65DF\n0x8EA2E8FC\t0x66E8\n0x8EA2E8FD\t0x66E3\n0x8EA2E8FE\t0x66E4\n0x8EA2E9A1\t0x6AF3\n0x8EA2E9A2\t0x6AF0\n0x8EA2E9A3\t0x6AEA\n0x8EA2E9A4\t0x6AE8\n0x8EA2E9A5\t0x6AF9\n0x8EA2E9A6\t0x6AF1\n0x8EA2E9A7\t0x6AEE\n0x8EA2E9A8\t0x6AEF\n0x8EA2E9A9\t0x703C\n0x8EA2E9AA\t0x7035\n0x8EA2E9AB\t0x702F\n0x8EA2E9AC\t0x7037\n0x8EA2E9AD\t0x7034\n0x8EA2E9AE\t0x7031\n0x8EA2E9AF\t0x7042\n0x8EA2E9B0\t0x7038\n0x8EA2E9B1\t0x703F\n0x8EA2E9B2\t0x703A\n0x8EA2E9B3\t0x7039\n0x8EA2E9B4\t0x702A\n0x8EA2E9B5\t0x7040\n0x8EA2E9B6\t0x703B\n0x8EA2E9B7\t0x7033\n0x8EA2E9B8\t0x7041\n0x8EA2E9B9\t0x7213\n0x8EA2E9BA\t0x7214\n0x8EA2E9BB\t0x72A8\n0x8EA2E9BC\t0x737D\n0x8EA2E9BD\t0x737C\n0x8EA2E9BE\t0x74BA\n0x8EA2E9BF\t0x76AB\n0x8EA2E9C0\t0x76AA\n0x8EA2E9C1\t0x76BE\n0x8EA2E9C2\t0x76ED\n0x8EA2E9C3\t0x77CC\n0x8EA2E9C4\t0x77CE\n0x8EA2E9C5\t0x77CF\n0x8EA2E9C6\t0x77CD\n0x8EA2E9C7\t0x77F2\n0x8EA2E9C8\t0x7925\n0x8EA2E9C9\t0x7923\n0x8EA2E9CA\t0x7927\n0x8EA2E9CB\t0x7928\n0x8EA2E9CC\t0x7924\n0x8EA2E9CD\t0x7929\n0x8EA2E9CE\t0x79B2\n0x8EA2E9CF\t0x7A6E\n0x8EA2E9D0\t0x7A6C\n0x8EA2E9D1\t0x7A6D\n0x8EA2E9D2\t0x7AF7\n0x8EA2E9D3\t0x7C49\n0x8EA2E9D4\t0x7C48\n0x8EA2E9D5\t0x7C4A\n0x8EA2E9D6\t0x7C47\n0x8EA2E9D7\t0x7C45\n0x8EA2E9D8\t0x7CEE\n0x8EA2E9D9\t0x7E7B\n0x8EA2E9DA\t0x7E7E\n0x8EA2E9DB\t0x7E81\n0x8EA2E9DC\t0x7E80\n0x8EA2E9DD\t0x7FBA\n0x8EA2E9DE\t0x7FFF\n0x8EA2E9DF\t0x8079\n0x8EA2E9E0\t0x81DB\n0x8EA2E9E1\t0x81D9\n0x8EA2E9E2\t0x8268\n0x8EA2E9E3\t0x8269\n0x8EA2E9E4\t0x8622\n0x8EA2E9E5\t0x85FF\n0x8EA2E9E6\t0x8601\n0x8EA2E9E7\t0x85FE\n0x8EA2E9E8\t0x861B\n0x8EA2E9E9\t0x8600\n0x8EA2E9EA\t0x85F6\n0x8EA2E9EB\t0x8604\n0x8EA2E9EC\t0x8609\n0x8EA2E9ED\t0x8605\n0x8EA2E9EE\t0x860C\n0x8EA2E9EF\t0x85FD\n0x8EA2E9F0\t0x8819\n0x8EA2E9F1\t0x8810\n0x8EA2E9F2\t0x8811\n0x8EA2E9F3\t0x8817\n0x8EA2E9F4\t0x8813\n0x8EA2E9F5\t0x8816\n0x8EA2E9F6\t0x8963\n0x8EA2E9F7\t0x8966\n0x8EA2E9F8\t0x89B9\n0x8EA2E9F9\t0x89F7\n0x8EA2E9FA\t0x8B60\n0x8EA2E9FB\t0x8B6A\n0x8EA2E9FC\t0x8B5D\n0x8EA2E9FD\t0x8B68\n0x8EA2E9FE\t0x8B63\n0x8EA2EAA1\t0x8B65\n0x8EA2EAA2\t0x8B67\n0x8EA2EAA3\t0x8B6D\n0x8EA2EAA4\t0x8DAE\n0x8EA2EAA5\t0x8E86\n0x8EA2EAA6\t0x8E88\n0x8EA2EAA7\t0x8E84\n0x8EA2EAA8\t0x8F59\n0x8EA2EAA9\t0x8F56\n0x8EA2EAAA\t0x8F57\n0x8EA2EAAB\t0x8F55\n0x8EA2EAAC\t0x8F58\n0x8EA2EAAD\t0x8F5A\n0x8EA2EAAE\t0x908D\n0x8EA2EAAF\t0x9143\n0x8EA2EAB0\t0x9141\n0x8EA2EAB1\t0x91B7\n0x8EA2EAB2\t0x91B5\n0x8EA2EAB3\t0x91B2\n0x8EA2EAB4\t0x91B3\n0x8EA2EAB5\t0x940B\n0x8EA2EAB6\t0x9413\n0x8EA2EAB7\t0x93FB\n0x8EA2EAB8\t0x9420\n0x8EA2EAB9\t0x940F\n0x8EA2EABA\t0x9414\n0x8EA2EABB\t0x93FE\n0x8EA2EABC\t0x9415\n0x8EA2EABD\t0x9410\n0x8EA2EABE\t0x9428\n0x8EA2EABF\t0x9419\n0x8EA2EAC0\t0x940D\n0x8EA2EAC1\t0x93F5\n0x8EA2EAC2\t0x9400\n0x8EA2EAC3\t0x93F7\n0x8EA2EAC4\t0x9407\n0x8EA2EAC5\t0x940E\n0x8EA2EAC6\t0x9416\n0x8EA2EAC7\t0x9412\n0x8EA2EAC8\t0x93FA\n0x8EA2EAC9\t0x9409\n0x8EA2EACA\t0x93F8\n0x8EA2EACB\t0x943C\n0x8EA2EACC\t0x940A\n0x8EA2EACD\t0x93FF\n0x8EA2EACE\t0x93FC\n0x8EA2EACF\t0x940C\n0x8EA2EAD0\t0x93F6\n0x8EA2EAD1\t0x9411\n0x8EA2EAD2\t0x9406\n0x8EA2EAD3\t0x95DE\n0x8EA2EAD4\t0x95E0\n0x8EA2EAD5\t0x95DF\n0x8EA2EAD6\t0x972E\n0x8EA2EAD7\t0x972F\n0x8EA2EAD8\t0x97B9\n0x8EA2EAD9\t0x97BB\n0x8EA2EADA\t0x97FD\n0x8EA2EADB\t0x97FE\n0x8EA2EADC\t0x9860\n0x8EA2EADD\t0x9862\n0x8EA2EADE\t0x9863\n0x8EA2EADF\t0x985F\n0x8EA2EAE0\t0x98C1\n0x8EA2EAE1\t0x98C2\n0x8EA2EAE2\t0x9950\n0x8EA2EAE3\t0x994E\n0x8EA2EAE4\t0x9959\n0x8EA2EAE5\t0x994C\n0x8EA2EAE6\t0x994B\n0x8EA2EAE7\t0x9953\n0x8EA2EAE8\t0x9A32\n0x8EA2EAE9\t0x9A34\n0x8EA2EAEA\t0x9A31\n0x8EA2EAEB\t0x9A2C\n0x8EA2EAEC\t0x9A2A\n0x8EA2EAED\t0x9A36\n0x8EA2EAEE\t0x9A29\n0x8EA2EAEF\t0x9A2E\n0x8EA2EAF0\t0x9A38\n0x8EA2EAF1\t0x9A2D\n0x8EA2EAF2\t0x9AC7\n0x8EA2EAF3\t0x9ACA\n0x8EA2EAF4\t0x9AC6\n0x8EA2EAF5\t0x9B10\n0x8EA2EAF6\t0x9B12\n0x8EA2EAF7\t0x9B11\n0x8EA2EAF8\t0x9C0B\n0x8EA2EAF9\t0x9C08\n0x8EA2EAFA\t0x9BF7\n0x8EA2EAFB\t0x9C05\n0x8EA2EAFC\t0x9C12\n0x8EA2EAFD\t0x9BF8\n0x8EA2EAFE\t0x9C40\n0x8EA2EBA1\t0x9C07\n0x8EA2EBA2\t0x9C0E\n0x8EA2EBA3\t0x9C06\n0x8EA2EBA4\t0x9C17\n0x8EA2EBA5\t0x9C14\n0x8EA2EBA6\t0x9C09\n0x8EA2EBA7\t0x9D9F\n0x8EA2EBA8\t0x9D99\n0x8EA2EBA9\t0x9DA4\n0x8EA2EBAA\t0x9D9D\n0x8EA2EBAB\t0x9D92\n0x8EA2EBAC\t0x9D98\n0x8EA2EBAD\t0x9D90\n0x8EA2EBAE\t0x9D9B\n0x8EA2EBAF\t0x9DA0\n0x8EA2EBB0\t0x9D94\n0x8EA2EBB1\t0x9D9C\n0x8EA2EBB2\t0x9DAA\n0x8EA2EBB3\t0x9D97\n0x8EA2EBB4\t0x9DA1\n0x8EA2EBB5\t0x9D9A\n0x8EA2EBB6\t0x9DA2\n0x8EA2EBB7\t0x9DA8\n0x8EA2EBB8\t0x9D9E\n0x8EA2EBB9\t0x9DA3\n0x8EA2EBBA\t0x9DBF\n0x8EA2EBBB\t0x9DA9\n0x8EA2EBBC\t0x9D96\n0x8EA2EBBD\t0x9DA6\n0x8EA2EBBE\t0x9DA7\n0x8EA2EBBF\t0x9E99\n0x8EA2EBC0\t0x9E9B\n0x8EA2EBC1\t0x9E9A\n0x8EA2EBC2\t0x9EE5\n0x8EA2EBC3\t0x9EE4\n0x8EA2EBC4\t0x9EE7\n0x8EA2EBC5\t0x9EE6\n0x8EA2EBC6\t0x9F30\n0x8EA2EBC7\t0x9F2E\n0x8EA2EBC8\t0x9F5B\n0x8EA2EBC9\t0x9F60\n0x8EA2EBCA\t0x9F5E\n0x8EA2EBCB\t0x9F5D\n0x8EA2EBCC\t0x9F59\n0x8EA2EBCD\t0x9F91\n0x8EA2EBCE\t0x513A\n0x8EA2EBCF\t0x5139\n0x8EA2EBD0\t0x5298\n0x8EA2EBD1\t0x5297\n0x8EA2EBD2\t0x56C3\n0x8EA2EBD3\t0x56BD\n0x8EA2EBD4\t0x56BE\n0x8EA2EBD5\t0x5B48\n0x8EA2EBD6\t0x5B47\n0x8EA2EBD7\t0x5DCB\n0x8EA2EBD8\t0x5DCF\n0x8EA2EBD9\t0x5EF1\n0x8EA2EBDA\t0x61FD\n0x8EA2EBDB\t0x651B\n0x8EA2EBDC\t0x6B02\n0x8EA2EBDD\t0x6AFC\n0x8EA2EBDE\t0x6B03\n0x8EA2EBDF\t0x6AF8\n0x8EA2EBE0\t0x6B00\n0x8EA2EBE1\t0x7043\n0x8EA2EBE2\t0x7044\n0x8EA2EBE3\t0x704A\n0x8EA2EBE4\t0x7048\n0x8EA2EBE5\t0x7049\n0x8EA2EBE6\t0x7045\n0x8EA2EBE7\t0x7046\n0x8EA2EBE8\t0x721D\n0x8EA2EBE9\t0x721A\n0x8EA2EBEA\t0x7219\n0x8EA2EBEB\t0x737E\n0x8EA2EBEC\t0x7517\n0x8EA2EBED\t0x766A\n0x8EA2EBEE\t0x77D0\n0x8EA2EBEF\t0x792D\n0x8EA2EBF0\t0x7931\n0x8EA2EBF1\t0x792F\n0x8EA2EBF2\t0x7C54\n0x8EA2EBF3\t0x7C53\n0x8EA2EBF4\t0x7CF2\n0x8EA2EBF5\t0x7E8A\n0x8EA2EBF6\t0x7E87\n0x8EA2EBF7\t0x7E88\n0x8EA2EBF8\t0x7E8B\n0x8EA2EBF9\t0x7E86\n0x8EA2EBFA\t0x7E8D\n0x8EA2EBFB\t0x7F4D\n0x8EA2EBFC\t0x7FBB\n0x8EA2EBFD\t0x8030\n0x8EA2EBFE\t0x81DD\n0x8EA2ECA1\t0x8618\n0x8EA2ECA2\t0x862A\n0x8EA2ECA3\t0x8626\n0x8EA2ECA4\t0x861F\n0x8EA2ECA5\t0x8623\n0x8EA2ECA6\t0x861C\n0x8EA2ECA7\t0x8619\n0x8EA2ECA8\t0x8627\n0x8EA2ECA9\t0x862E\n0x8EA2ECAA\t0x8621\n0x8EA2ECAB\t0x8620\n0x8EA2ECAC\t0x8629\n0x8EA2ECAD\t0x861E\n0x8EA2ECAE\t0x8625\n0x8EA2ECAF\t0x8829\n0x8EA2ECB0\t0x881D\n0x8EA2ECB1\t0x881B\n0x8EA2ECB2\t0x8820\n0x8EA2ECB3\t0x8824\n0x8EA2ECB4\t0x881C\n0x8EA2ECB5\t0x882B\n0x8EA2ECB6\t0x884A\n0x8EA2ECB7\t0x896D\n0x8EA2ECB8\t0x8969\n0x8EA2ECB9\t0x896E\n0x8EA2ECBA\t0x896B\n0x8EA2ECBB\t0x89FA\n0x8EA2ECBC\t0x8B79\n0x8EA2ECBD\t0x8B78\n0x8EA2ECBE\t0x8B45\n0x8EA2ECBF\t0x8B7A\n0x8EA2ECC0\t0x8B7B\n0x8EA2ECC1\t0x8D10\n0x8EA2ECC2\t0x8D14\n0x8EA2ECC3\t0x8DAF\n0x8EA2ECC4\t0x8E8E\n0x8EA2ECC5\t0x8E8C\n0x8EA2ECC6\t0x8F5E\n0x8EA2ECC7\t0x8F5B\n0x8EA2ECC8\t0x8F5D\n0x8EA2ECC9\t0x9146\n0x8EA2ECCA\t0x9144\n0x8EA2ECCB\t0x9145\n0x8EA2ECCC\t0x91B9\n0x8EA2ECCD\t0x943F\n0x8EA2ECCE\t0x943B\n0x8EA2ECCF\t0x9436\n0x8EA2ECD0\t0x9429\n0x8EA2ECD1\t0x943D\n0x8EA2ECD2\t0x9430\n0x8EA2ECD3\t0x9439\n0x8EA2ECD4\t0x942A\n0x8EA2ECD5\t0x9437\n0x8EA2ECD6\t0x942C\n0x8EA2ECD7\t0x9440\n0x8EA2ECD8\t0x9431\n0x8EA2ECD9\t0x95E5\n0x8EA2ECDA\t0x95E4\n0x8EA2ECDB\t0x95E3\n0x8EA2ECDC\t0x9735\n0x8EA2ECDD\t0x973A\n0x8EA2ECDE\t0x97BF\n0x8EA2ECDF\t0x97E1\n0x8EA2ECE0\t0x9864\n0x8EA2ECE1\t0x98C9\n0x8EA2ECE2\t0x98C6\n0x8EA2ECE3\t0x98C0\n0x8EA2ECE4\t0x9958\n0x8EA2ECE5\t0x9956\n0x8EA2ECE6\t0x9A39\n0x8EA2ECE7\t0x9A3D\n0x8EA2ECE8\t0x9A46\n0x8EA2ECE9\t0x9A44\n0x8EA2ECEA\t0x9A42\n0x8EA2ECEB\t0x9A41\n0x8EA2ECEC\t0x9A3A\n0x8EA2ECED\t0x9A3F\n0x8EA2ECEE\t0x9ACD\n0x8EA2ECEF\t0x9B15\n0x8EA2ECF0\t0x9B17\n0x8EA2ECF1\t0x9B18\n0x8EA2ECF2\t0x9B16\n0x8EA2ECF3\t0x9B3A\n0x8EA2ECF4\t0x9B52\n0x8EA2ECF5\t0x9C2B\n0x8EA2ECF6\t0x9C1D\n0x8EA2ECF7\t0x9C1C\n0x8EA2ECF8\t0x9C2C\n0x8EA2ECF9\t0x9C23\n0x8EA2ECFA\t0x9C28\n0x8EA2ECFB\t0x9C29\n0x8EA2ECFC\t0x9C24\n0x8EA2ECFD\t0x9C21\n0x8EA2ECFE\t0x9DB7\n0x8EA2EDA1\t0x9DB6\n0x8EA2EDA2\t0x9DBC\n0x8EA2EDA3\t0x9DC1\n0x8EA2EDA4\t0x9DC7\n0x8EA2EDA5\t0x9DCA\n0x8EA2EDA6\t0x9DCF\n0x8EA2EDA7\t0x9DBE\n0x8EA2EDA8\t0x9DC5\n0x8EA2EDA9\t0x9DC3\n0x8EA2EDAA\t0x9DBB\n0x8EA2EDAB\t0x9DB5\n0x8EA2EDAC\t0x9DCE\n0x8EA2EDAD\t0x9DB9\n0x8EA2EDAE\t0x9DBA\n0x8EA2EDAF\t0x9DAC\n0x8EA2EDB0\t0x9DC8\n0x8EA2EDB1\t0x9DB1\n0x8EA2EDB2\t0x9DAD\n0x8EA2EDB3\t0x9DCC\n0x8EA2EDB4\t0x9DB3\n0x8EA2EDB5\t0x9DCD\n0x8EA2EDB6\t0x9DB2\n0x8EA2EDB7\t0x9E7A\n0x8EA2EDB8\t0x9E9C\n0x8EA2EDB9\t0x9EEB\n0x8EA2EDBA\t0x9EEE\n0x8EA2EDBB\t0x9EED\n0x8EA2EDBC\t0x9F1B\n0x8EA2EDBD\t0x9F18\n0x8EA2EDBE\t0x9F1A\n0x8EA2EDBF\t0x9F31\n0x8EA2EDC0\t0x9F4E\n0x8EA2EDC1\t0x9F65\n0x8EA2EDC2\t0x9F64\n0x8EA2EDC3\t0x9F92\n0x8EA2EDC4\t0x4EB9\n0x8EA2EDC5\t0x56C6\n0x8EA2EDC6\t0x56C5\n0x8EA2EDC7\t0x56CB\n0x8EA2EDC8\t0x5971\n0x8EA2EDC9\t0x5B4B\n0x8EA2EDCA\t0x5B4C\n0x8EA2EDCB\t0x5DD5\n0x8EA2EDCC\t0x5DD1\n0x8EA2EDCD\t0x5EF2\n0x8EA2EDCE\t0x6521\n0x8EA2EDCF\t0x6520\n0x8EA2EDD0\t0x6526\n0x8EA2EDD1\t0x6522\n0x8EA2EDD2\t0x6B0B\n0x8EA2EDD3\t0x6B08\n0x8EA2EDD4\t0x6B09\n0x8EA2EDD5\t0x6C0D\n0x8EA2EDD6\t0x7055\n0x8EA2EDD7\t0x7056\n0x8EA2EDD8\t0x7057\n0x8EA2EDD9\t0x7052\n0x8EA2EDDA\t0x721E\n0x8EA2EDDB\t0x721F\n0x8EA2EDDC\t0x72A9\n0x8EA2EDDD\t0x737F\n0x8EA2EDDE\t0x74D8\n0x8EA2EDDF\t0x74D5\n0x8EA2EDE0\t0x74D9\n0x8EA2EDE1\t0x74D7\n0x8EA2EDE2\t0x766D\n0x8EA2EDE3\t0x76AD\n0x8EA2EDE4\t0x7935\n0x8EA2EDE5\t0x79B4\n0x8EA2EDE6\t0x7A70\n0x8EA2EDE7\t0x7A71\n0x8EA2EDE8\t0x7C57\n0x8EA2EDE9\t0x7C5C\n0x8EA2EDEA\t0x7C59\n0x8EA2EDEB\t0x7C5B\n0x8EA2EDEC\t0x7C5A\n0x8EA2EDED\t0x7CF4\n0x8EA2EDEE\t0x7CF1\n0x8EA2EDEF\t0x7E91\n0x8EA2EDF0\t0x7F4F\n0x8EA2EDF1\t0x7F87\n0x8EA2EDF2\t0x81DE\n0x8EA2EDF3\t0x826B\n0x8EA2EDF4\t0x8634\n0x8EA2EDF5\t0x8635\n0x8EA2EDF6\t0x8633\n0x8EA2EDF7\t0x862C\n0x8EA2EDF8\t0x8632\n0x8EA2EDF9\t0x8636\n0x8EA2EDFA\t0x882C\n0x8EA2EDFB\t0x8828\n0x8EA2EDFC\t0x8826\n0x8EA2EDFD\t0x882A\n0x8EA2EDFE\t0x8825\n0x8EA2EEA1\t0x8971\n0x8EA2EEA2\t0x89BF\n0x8EA2EEA3\t0x89BE\n0x8EA2EEA4\t0x89FB\n0x8EA2EEA5\t0x8B7E\n0x8EA2EEA6\t0x8B84\n0x8EA2EEA7\t0x8B82\n0x8EA2EEA8\t0x8B86\n0x8EA2EEA9\t0x8B85\n0x8EA2EEAA\t0x8B7F\n0x8EA2EEAB\t0x8D15\n0x8EA2EEAC\t0x8E95\n0x8EA2EEAD\t0x8E94\n0x8EA2EEAE\t0x8E9A\n0x8EA2EEAF\t0x8E92\n0x8EA2EEB0\t0x8E90\n0x8EA2EEB1\t0x8E96\n0x8EA2EEB2\t0x8E97\n0x8EA2EEB3\t0x8F60\n0x8EA2EEB4\t0x8F62\n0x8EA2EEB5\t0x9147\n0x8EA2EEB6\t0x944C\n0x8EA2EEB7\t0x9450\n0x8EA2EEB8\t0x944A\n0x8EA2EEB9\t0x944B\n0x8EA2EEBA\t0x944F\n0x8EA2EEBB\t0x9447\n0x8EA2EEBC\t0x9445\n0x8EA2EEBD\t0x9448\n0x8EA2EEBE\t0x9449\n0x8EA2EEBF\t0x9446\n0x8EA2EEC0\t0x973F\n0x8EA2EEC1\t0x97E3\n0x8EA2EEC2\t0x986A\n0x8EA2EEC3\t0x9869\n0x8EA2EEC4\t0x98CB\n0x8EA2EEC5\t0x9954\n0x8EA2EEC6\t0x995B\n0x8EA2EEC7\t0x9A4E\n0x8EA2EEC8\t0x9A53\n0x8EA2EEC9\t0x9A54\n0x8EA2EECA\t0x9A4C\n0x8EA2EECB\t0x9A4F\n0x8EA2EECC\t0x9A48\n0x8EA2EECD\t0x9A4A\n0x8EA2EECE\t0x9A49\n0x8EA2EECF\t0x9A52\n0x8EA2EED0\t0x9A50\n0x8EA2EED1\t0x9AD0\n0x8EA2EED2\t0x9B19\n0x8EA2EED3\t0x9B2B\n0x8EA2EED4\t0x9B3B\n0x8EA2EED5\t0x9B56\n0x8EA2EED6\t0x9B55\n0x8EA2EED7\t0x9C46\n0x8EA2EED8\t0x9C48\n0x8EA2EED9\t0x9C3F\n0x8EA2EEDA\t0x9C44\n0x8EA2EEDB\t0x9C39\n0x8EA2EEDC\t0x9C33\n0x8EA2EEDD\t0x9C41\n0x8EA2EEDE\t0x9C3C\n0x8EA2EEDF\t0x9C37\n0x8EA2EEE0\t0x9C34\n0x8EA2EEE1\t0x9C32\n0x8EA2EEE2\t0x9C3D\n0x8EA2EEE3\t0x9C36\n0x8EA2EEE4\t0x9DDB\n0x8EA2EEE5\t0x9DD2\n0x8EA2EEE6\t0x9DDE\n0x8EA2EEE7\t0x9DDA\n0x8EA2EEE8\t0x9DCB\n0x8EA2EEE9\t0x9DD0\n0x8EA2EEEA\t0x9DDC\n0x8EA2EEEB\t0x9DD1\n0x8EA2EEEC\t0x9DDF\n0x8EA2EEED\t0x9DE9\n0x8EA2EEEE\t0x9DD9\n0x8EA2EEEF\t0x9DD8\n0x8EA2EEF0\t0x9DD6\n0x8EA2EEF1\t0x9DF5\n0x8EA2EEF2\t0x9DD5\n0x8EA2EEF3\t0x9DDD\n0x8EA2EEF4\t0x9EB6\n0x8EA2EEF5\t0x9EF0\n0x8EA2EEF6\t0x9F35\n0x8EA2EEF7\t0x9F33\n0x8EA2EEF8\t0x9F32\n0x8EA2EEF9\t0x9F42\n0x8EA2EEFA\t0x9F6B\n0x8EA2EEFB\t0x9F95\n0x8EA2EEFC\t0x9FA2\n0x8EA2EEFD\t0x513D\n0x8EA2EEFE\t0x5299\n0x8EA2EFA1\t0x58E8\n0x8EA2EFA2\t0x58E7\n0x8EA2EFA3\t0x5972\n0x8EA2EFA4\t0x5B4D\n0x8EA2EFA5\t0x5DD8\n0x8EA2EFA6\t0x882F\n0x8EA2EFA7\t0x5F4F\n0x8EA2EFA8\t0x6201\n0x8EA2EFA9\t0x6203\n0x8EA2EFAA\t0x6204\n0x8EA2EFAB\t0x6529\n0x8EA2EFAC\t0x6525\n0x8EA2EFAD\t0x6596\n0x8EA2EFAE\t0x66EB\n0x8EA2EFAF\t0x6B11\n0x8EA2EFB0\t0x6B12\n0x8EA2EFB1\t0x6B0F\n0x8EA2EFB2\t0x6BCA\n0x8EA2EFB3\t0x705B\n0x8EA2EFB4\t0x705A\n0x8EA2EFB5\t0x7222\n0x8EA2EFB6\t0x7382\n0x8EA2EFB7\t0x7381\n0x8EA2EFB8\t0x7383\n0x8EA2EFB9\t0x7670\n0x8EA2EFBA\t0x77D4\n0x8EA2EFBB\t0x7C67\n0x8EA2EFBC\t0x7C66\n0x8EA2EFBD\t0x7E95\n0x8EA2EFBE\t0x826C\n0x8EA2EFBF\t0x863A\n0x8EA2EFC0\t0x8640\n0x8EA2EFC1\t0x8639\n0x8EA2EFC2\t0x863C\n0x8EA2EFC3\t0x8631\n0x8EA2EFC4\t0x863B\n0x8EA2EFC5\t0x863E\n0x8EA2EFC6\t0x8830\n0x8EA2EFC7\t0x8832\n0x8EA2EFC8\t0x882E\n0x8EA2EFC9\t0x8833\n0x8EA2EFCA\t0x8976\n0x8EA2EFCB\t0x8974\n0x8EA2EFCC\t0x8973\n0x8EA2EFCD\t0x89FE\n0x8EA2EFCE\t0x8B8C\n0x8EA2EFCF\t0x8B8E\n0x8EA2EFD0\t0x8B8B\n0x8EA2EFD1\t0x8B88\n0x8EA2EFD2\t0x8C45\n0x8EA2EFD3\t0x8D19\n0x8EA2EFD4\t0x8E98\n0x8EA2EFD5\t0x8F64\n0x8EA2EFD6\t0x8F63\n0x8EA2EFD7\t0x91BC\n0x8EA2EFD8\t0x9462\n0x8EA2EFD9\t0x9455\n0x8EA2EFDA\t0x945D\n0x8EA2EFDB\t0x9457\n0x8EA2EFDC\t0x945E\n0x8EA2EFDD\t0x97C4\n0x8EA2EFDE\t0x97C5\n0x8EA2EFDF\t0x9800\n0x8EA2EFE0\t0x9A56\n0x8EA2EFE1\t0x9A59\n0x8EA2EFE2\t0x9B1E\n0x8EA2EFE3\t0x9B1F\n0x8EA2EFE4\t0x9B20\n0x8EA2EFE5\t0x9C52\n0x8EA2EFE6\t0x9C58\n0x8EA2EFE7\t0x9C50\n0x8EA2EFE8\t0x9C4A\n0x8EA2EFE9\t0x9C4D\n0x8EA2EFEA\t0x9C4B\n0x8EA2EFEB\t0x9C55\n0x8EA2EFEC\t0x9C59\n0x8EA2EFED\t0x9C4C\n0x8EA2EFEE\t0x9C4E\n0x8EA2EFEF\t0x9DFB\n0x8EA2EFF0\t0x9DF7\n0x8EA2EFF1\t0x9DEF\n0x8EA2EFF2\t0x9DE3\n0x8EA2EFF3\t0x9DEB\n0x8EA2EFF4\t0x9DF8\n0x8EA2EFF5\t0x9DE4\n0x8EA2EFF6\t0x9DF6\n0x8EA2EFF7\t0x9DE1\n0x8EA2EFF8\t0x9DEE\n0x8EA2EFF9\t0x9DE6\n0x8EA2EFFA\t0x9DF2\n0x8EA2EFFB\t0x9DF0\n0x8EA2EFFC\t0x9DE2\n0x8EA2EFFD\t0x9DEC\n0x8EA2EFFE\t0x9DF4\n0x8EA2F0A1\t0x9DF3\n0x8EA2F0A2\t0x9DE8\n0x8EA2F0A3\t0x9DED\n0x8EA2F0A4\t0x9EC2\n0x8EA2F0A5\t0x9ED0\n0x8EA2F0A6\t0x9EF2\n0x8EA2F0A7\t0x9EF3\n0x8EA2F0A8\t0x9F06\n0x8EA2F0A9\t0x9F1C\n0x8EA2F0AA\t0x9F38\n0x8EA2F0AB\t0x9F37\n0x8EA2F0AC\t0x9F36\n0x8EA2F0AD\t0x9F43\n0x8EA2F0AE\t0x9F4F\n0x8EA2F0AF\t0x9F71\n0x8EA2F0B0\t0x9F70\n0x8EA2F0B1\t0x9F6E\n0x8EA2F0B2\t0x9F6F\n0x8EA2F0B3\t0x56D3\n0x8EA2F0B4\t0x56CD\n0x8EA2F0B5\t0x5B4E\n0x8EA2F0B6\t0x5C6D\n0x8EA2F0B7\t0x652D\n0x8EA2F0B8\t0x66ED\n0x8EA2F0B9\t0x66EE\n0x8EA2F0BA\t0x6B13\n0x8EA2F0BB\t0x705F\n0x8EA2F0BC\t0x7061\n0x8EA2F0BD\t0x705D\n0x8EA2F0BE\t0x7060\n0x8EA2F0BF\t0x7223\n0x8EA2F0C0\t0x74DB\n0x8EA2F0C1\t0x74E5\n0x8EA2F0C2\t0x77D5\n0x8EA2F0C3\t0x7938\n0x8EA2F0C4\t0x79B7\n0x8EA2F0C5\t0x79B6\n0x8EA2F0C6\t0x7C6A\n0x8EA2F0C7\t0x7E97\n0x8EA2F0C8\t0x7F89\n0x8EA2F0C9\t0x826D\n0x8EA2F0CA\t0x8643\n0x8EA2F0CB\t0x8838\n0x8EA2F0CC\t0x8837\n0x8EA2F0CD\t0x8835\n0x8EA2F0CE\t0x884B\n0x8EA2F0CF\t0x8B94\n0x8EA2F0D0\t0x8B95\n0x8EA2F0D1\t0x8E9E\n0x8EA2F0D2\t0x8E9F\n0x8EA2F0D3\t0x8EA0\n0x8EA2F0D4\t0x8E9D\n0x8EA2F0D5\t0x91BE\n0x8EA2F0D6\t0x91BD\n0x8EA2F0D7\t0x91C2\n0x8EA2F0D8\t0x946B\n0x8EA2F0D9\t0x9468\n0x8EA2F0DA\t0x9469\n0x8EA2F0DB\t0x96E5\n0x8EA2F0DC\t0x9746\n0x8EA2F0DD\t0x9743\n0x8EA2F0DE\t0x9747\n0x8EA2F0DF\t0x97C7\n0x8EA2F0E0\t0x97E5\n0x8EA2F0E1\t0x9A5E\n0x8EA2F0E2\t0x9AD5\n0x8EA2F0E3\t0x9B59\n0x8EA2F0E4\t0x9C63\n0x8EA2F0E5\t0x9C67\n0x8EA2F0E6\t0x9C66\n0x8EA2F0E7\t0x9C62\n0x8EA2F0E8\t0x9C5E\n0x8EA2F0E9\t0x9C60\n0x8EA2F0EA\t0x9E02\n0x8EA2F0EB\t0x9DFE\n0x8EA2F0EC\t0x9E07\n0x8EA2F0ED\t0x9E03\n0x8EA2F0EE\t0x9E06\n0x8EA2F0EF\t0x9E05\n0x8EA2F0F0\t0x9E00\n0x8EA2F0F1\t0x9E01\n0x8EA2F0F2\t0x9E09\n0x8EA2F0F3\t0x9DFF\n0x8EA2F0F4\t0x9DFD\n0x8EA2F0F5\t0x9E04\n0x8EA2F0F6\t0x9EA0\n0x8EA2F0F7\t0x9F1E\n0x8EA2F0F8\t0x9F46\n0x8EA2F0F9\t0x9F74\n0x8EA2F0FA\t0x9F75\n0x8EA2F0FB\t0x9F76\n0x8EA2F0FC\t0x56D4\n0x8EA2F0FD\t0x652E\n0x8EA2F0FE\t0x65B8\n0x8EA2F1A1\t0x6B18\n0x8EA2F1A2\t0x6B19\n0x8EA2F1A3\t0x6B17\n0x8EA2F1A4\t0x6B1A\n0x8EA2F1A5\t0x7062\n0x8EA2F1A6\t0x7226\n0x8EA2F1A7\t0x72AA\n0x8EA2F1A8\t0x77D8\n0x8EA2F1A9\t0x77D9\n0x8EA2F1AA\t0x7939\n0x8EA2F1AB\t0x7C69\n0x8EA2F1AC\t0x7C6B\n0x8EA2F1AD\t0x7CF6\n0x8EA2F1AE\t0x7E9A\n0x8EA2F1AF\t0x7E98\n0x8EA2F1B0\t0x7E9B\n0x8EA2F1B1\t0x7E99\n0x8EA2F1B2\t0x81E0\n0x8EA2F1B3\t0x81E1\n0x8EA2F1B4\t0x8646\n0x8EA2F1B5\t0x8647\n0x8EA2F1B6\t0x8648\n0x8EA2F1B7\t0x8979\n0x8EA2F1B8\t0x897A\n0x8EA2F1B9\t0x897C\n0x8EA2F1BA\t0x897B\n0x8EA2F1BB\t0x89FF\n0x8EA2F1BC\t0x8B98\n0x8EA2F1BD\t0x8B99\n0x8EA2F1BE\t0x8EA5\n0x8EA2F1BF\t0x8EA4\n0x8EA2F1C0\t0x8EA3\n0x8EA2F1C1\t0x946E\n0x8EA2F1C2\t0x946D\n0x8EA2F1C3\t0x946F\n0x8EA2F1C4\t0x9471\n0x8EA2F1C5\t0x9473\n0x8EA2F1C6\t0x9749\n0x8EA2F1C7\t0x9872\n0x8EA2F1C8\t0x995F\n0x8EA2F1C9\t0x9C68\n0x8EA2F1CA\t0x9C6E\n0x8EA2F1CB\t0x9C6D\n0x8EA2F1CC\t0x9E0B\n0x8EA2F1CD\t0x9E0D\n0x8EA2F1CE\t0x9E10\n0x8EA2F1CF\t0x9E0F\n0x8EA2F1D0\t0x9E12\n0x8EA2F1D1\t0x9E11\n0x8EA2F1D2\t0x9EA1\n0x8EA2F1D3\t0x9EF5\n0x8EA2F1D4\t0x9F09\n0x8EA2F1D5\t0x9F47\n0x8EA2F1D6\t0x9F78\n0x8EA2F1D7\t0x9F7B\n0x8EA2F1D8\t0x9F7A\n0x8EA2F1D9\t0x9F79\n0x8EA2F1DA\t0x571E\n0x8EA2F1DB\t0x7066\n0x8EA2F1DC\t0x7C6F\n0x8EA2F1DD\t0x883C\n0x8EA2F1DE\t0x8DB2\n0x8EA2F1DF\t0x8EA6\n0x8EA2F1E0\t0x91C3\n0x8EA2F1E1\t0x9474\n0x8EA2F1E2\t0x9478\n0x8EA2F1E3\t0x9476\n0x8EA2F1E4\t0x9475\n0x8EA2F1E5\t0x9A60\n0x8EA2F1E6\t0x9B2E\n0x8EA2F1E7\t0x9C74\n0x8EA2F1E8\t0x9C73\n0x8EA2F1E9\t0x9C71\n0x8EA2F1EA\t0x9C75\n0x8EA2F1EB\t0x9E14\n0x8EA2F1EC\t0x9E13\n0x8EA2F1ED\t0x9EF6\n0x8EA2F1EE\t0x9F0A\n0x8EA2F1EF\t0x9FA4\n0x8EA2F1F0\t0x7068\n0x8EA2F1F1\t0x7065\n0x8EA2F1F2\t0x7CF7\n0x8EA2F1F3\t0x866A\n0x8EA2F1F4\t0x883E\n0x8EA2F1F5\t0x883D\n0x8EA2F1F6\t0x883F\n0x8EA2F1F7\t0x8B9E\n0x8EA2F1F8\t0x8C9C\n0x8EA2F1F9\t0x8EA9\n0x8EA2F1FA\t0x8EC9\n0x8EA2F1FB\t0x974B\n0x8EA2F1FC\t0x9873\n0x8EA2F1FD\t0x9874\n0x8EA2F1FE\t0x98CC\n0x8EA2F2A1\t0x9961\n0x8EA2F2A2\t0x99AB\n0x8EA2F2A3\t0x9A64\n0x8EA2F2A4\t0x9A66\n0x8EA2F2A5\t0x9A67\n0x8EA2F2A6\t0x9B24\n0x8EA2F2A7\t0x9E15\n0x8EA2F2A8\t0x9E17\n0x8EA2F2A9\t0x9F48\n0x8EA2F2AA\t0x6207\n0x8EA2F2AB\t0x6B1E\n0x8EA2F2AC\t0x7227\n0x8EA2F2AD\t0x864C\n0x8EA2F2AE\t0x8EA8\n0x8EA2F2AF\t0x9482\n0x8EA2F2B0\t0x9480\n0x8EA2F2B1\t0x9481\n0x8EA2F2B2\t0x9A69\n0x8EA2F2B3\t0x9A68\n0x8EA2F2B4\t0x9E19\n0x8EA2F2B5\t0x864B\n0x8EA2F2B6\t0x8B9F\n0x8EA2F2B7\t0x9483\n0x8EA2F2B8\t0x9C79\n0x8EA2F2B9\t0x9EB7\n0x8EA2F2BA\t0x7675\n0x8EA2F2BB\t0x9A6B\n0x8EA2F2BC\t0x9C7A\n0x8EA2F2BD\t0x9E1D\n0x8EA2F2BE\t0x7069\n0x8EA2F2BF\t0x706A\n0x8EA2F2C0\t0x7229\n0x8EA2F2C1\t0x9EA4\n0x8EA2F2C2\t0x9F7E\n0x8EA2F2C3\t0x9F49\n0x8EA2F2C4\t0x9F98\n0x8EA3A1A1\t0x4E28\n0x8EA3A1A2\t0x4E36\n0x8EA3A1A3\t0x4E3F\n0x8EA3A1A4\t0x4E85\n0x8EA3A1A5\t0x4E05\n0x8EA3A1A6\t0x4E04\n0x8EA3A1A7\t0x5182\n0x8EA3A1A8\t0x5196\n0x8EA3A1A9\t0x5338\n0x8EA3A1AA\t0x5369\n0x8EA3A1AB\t0x53B6\n0x8EA3A1AC\t0x4E2A\n0x8EA3A1AD\t0x4E87\n0x8EA3A1AE\t0x4E49\n0x8EA3A1AF\t0x51E2\n0x8EA3A1B0\t0x4E46\n0x8EA3A1B1\t0x4E8F\n0x8EA3A1B2\t0x4EBC\n0x8EA3A1B3\t0x4EBE\n0x8EA3A1B4\t0x5166\n0x8EA3A1B5\t0x51E3\n0x8EA3A1B6\t0x5204\n0x8EA3A1B7\t0x529C\n0x8EA3A1B8\t0x5344\n0x8EA3A1B9\t0x5902\n0x8EA3A1BA\t0x590A\n0x8EA3A1BB\t0x5B80\n0x8EA3A1BC\t0x5DDB\n0x8EA3A1BD\t0x5E7A\n0x8EA3A1BE\t0x5E7F\n0x8EA3A1BF\t0x5EF4\n0x8EA3A1C0\t0x5F50\n0x8EA3A1C1\t0x5F51\n0x8EA3A1C2\t0x5F61\n0x8EA3A1C3\t0x961D\n0x8EA3A1C4\t0x2000B\n0x8EA3A1C5\t0x4E63\n0x8EA3A1C6\t0x4E62\n0x8EA3A1C7\t0x4EA3\n0x8EA3A1C8\t0x5185\n0x8EA3A1C9\t0x4EC5\n0x8EA3A1CA\t0x4ECF\n0x8EA3A1CB\t0x4ECE\n0x8EA3A1CC\t0x4ECC\n0x8EA3A1CD\t0x5184\n0x8EA3A1CE\t0x5186\n0x8EA3A1CF\t0x2F817\n0x8EA3A1D0\t0x34C5\n0x8EA3A1D1\t0x51E4\n0x8EA3A1D2\t0x5205\n0x8EA3A1D3\t0x529E\n0x8EA3A1D4\t0x529D\n0x8EA3A1D5\t0x52FD\n0x8EA3A1D6\t0x5300\n0x8EA3A1D7\t0x533A\n0x8EA3A1D8\t0x3539\n0x8EA3A1D9\t0x5346\n0x8EA3A1DA\t0x535D\n0x8EA3A1DB\t0x5386\n0x8EA3A1DC\t0x53B7\n0x8EA3A1DD\t0x3555\n0x8EA3A1DE\t0x53CC\n0x8EA3A1DF\t0x355B\n0x8EA3A1E0\t0x53CE\n0x8EA3A1E1\t0x5721\n0x8EA3A1E2\t0x37A2\n0x8EA3A1E3\t0x5E00\n0x8EA3A1E4\t0x5F0C\n0x8EA3A1E5\t0x6237\n0x8EA3A1E6\t0x6238\n0x8EA3A1E7\t0x6534\n0x8EA3A1E8\t0x6535\n0x8EA3A1E9\t0x65E0\n0x8EA3A1EA\t0x3E26\n0x8EA3A1EB\t0x738D\n0x8EA3A1EC\t0x4E97\n0x8EA3A1ED\t0x4EE0\n0x8EA3A1EE\t0x3432\n0x8EA3A1EF\t0x201A9\n0x8EA3A1F0\t0x4EE7\n0x8EA3A1F1\t0x3433\n0x8EA3A1F2\t0x4EE6\n0x8EA3A1F3\t0x3434\n0x8EA3A1F4\t0x36A2\n0x8EA3A1F5\t0x3431\n0x8EA3A1F6\t0x34B0\n0x8EA3A1F7\t0x56D8\n0x8EA3A1F8\t0x518B\n0x8EA3A1F9\t0x518C\n0x8EA3A1FA\t0x5199\n0x8EA3A1FB\t0x51E5\n0x8EA3A1FC\t0x2F850\n0x8EA3A1FD\t0x520B\n0x8EA3A1FE\t0x34DC\n0x8EA3A2A1\t0x361E\n0x8EA3A2A2\t0x5304\n0x8EA3A2A3\t0x5303\n0x8EA3A2A4\t0x5307\n0x8EA3A2A5\t0x2F82A\n0x8EA3A2A6\t0x531E\n0x8EA3A2A7\t0x535F\n0x8EA3A2A8\t0x536D\n0x8EA3A2A9\t0x5389\n0x8EA3A2AA\t0x53BA\n0x8EA3A2AB\t0x53D0\n0x8EA3A2AC\t0x3565\n0x8EA3A2AD\t0x53F6\n0x8EA3A2AE\t0x53F7\n0x8EA3A2AF\t0x53F9\n0x8EA3A2B0\t0x3564\n0x8EA3A2B1\t0x53F4\n0x8EA3A2B2\t0x361D\n0x8EA3A2B3\t0x3626\n0x8EA3A2B4\t0x5724\n0x8EA3A2B5\t0x5904\n0x8EA3A2B6\t0x5918\n0x8EA3A2B7\t0x5932\n0x8EA3A2B8\t0x5930\n0x8EA3A2B9\t0x5934\n0x8EA3A2BA\t0x368E\n0x8EA3A2BB\t0x5975\n0x8EA3A2BC\t0x374A\n0x8EA3A2BD\t0x5B82\n0x8EA3A2BE\t0x5BF9\n0x8EA3A2BF\t0x5C14\n0x8EA3A2C0\t0x378B\n0x8EA3A2C1\t0x37A6\n0x8EA3A2C2\t0x37A4\n0x8EA3A2C3\t0x37A5\n0x8EA3A2C4\t0x37A7\n0x8EA3A2C5\t0x382F\n0x8EA3A2C6\t0x3832\n0x8EA3A2C7\t0x5E81\n0x8EA3A2C8\t0x5E83\n0x8EA3A2C9\t0x5F0D\n0x8EA3A2CA\t0x5F52\n0x8EA3A2CB\t0x38D4\n0x8EA3A2CC\t0x5FCA\n0x8EA3A2CD\t0x5FC7\n0x8EA3A2CE\t0x6239\n0x8EA3A2CF\t0x39C5\n0x8EA3A2D0\t0x624F\n0x8EA3A2D1\t0x65E7\n0x8EA3A2D2\t0x672F\n0x8EA3A2D3\t0x6B7A\n0x8EA3A2D4\t0x6C39\n0x8EA3A2D5\t0x3CBA\n0x8EA3A2D6\t0x3CB9\n0x8EA3A2D7\t0x6C37\n0x8EA3A2D8\t0x6C44\n0x8EA3A2D9\t0x6C45\n0x8EA3A2DA\t0x738C\n0x8EA3A2DB\t0x7592\n0x8EA3A2DC\t0x7676\n0x8EA3A2DD\t0x9093\n0x8EA3A2DE\t0x9092\n0x8EA3A2DF\t0x48B3\n0x8EA3A2E0\t0x49BA\n0x8EA3A2E1\t0x4E21\n0x8EA3A2E2\t0x4E20\n0x8EA3A2E3\t0x4E22\n0x8EA3A2E4\t0x4E68\n0x8EA3A2E5\t0x4E89\n0x8EA3A2E6\t0x4E98\n0x8EA3A2E7\t0x4EF9\n0x8EA3A2E8\t0x4EEF\n0x8EA3A2E9\t0x343B\n0x8EA3A2EA\t0x343C\n0x8EA3A2EB\t0x4EF8\n0x8EA3A2EC\t0x4F06\n0x8EA3A2ED\t0x4F03\n0x8EA3A2EE\t0x4EFC\n0x8EA3A2EF\t0x4EEE\n0x8EA3A2F0\t0x4F16\n0x8EA3A2F1\t0x3439\n0x8EA3A2F2\t0x4F28\n0x8EA3A2F3\t0x4F1C\n0x8EA3A2F4\t0x4F07\n0x8EA3A2F5\t0x4F1A\n0x8EA3A2F6\t0x4EFA\n0x8EA3A2F7\t0x4F17\n0x8EA3A2F8\t0x514A\n0x8EA3A2F9\t0x34B2\n0x8EA3A2FA\t0x5172\n0x8EA3A2FB\t0x2F815\n0x8EA3A2FC\t0x51B4\n0x8EA3A2FD\t0x51B3\n0x8EA3A2FE\t0x51B2\n0x8EA3A3A1\t0x34C7\n0x8EA3A3A2\t0x51E8\n0x8EA3A3A3\t0x342B\n0x8EA3A3A4\t0x5214\n0x8EA3A3A5\t0x520F\n0x8EA3A3A6\t0x5215\n0x8EA3A3A7\t0x5218\n0x8EA3A3A8\t0x52A8\n0x8EA3A3A9\t0x2F82C\n0x8EA3A3AA\t0x534B\n0x8EA3A3AB\t0x534F\n0x8EA3A3AC\t0x353B\n0x8EA3A3AD\t0x5350\n0x8EA3A3AE\t0x3544\n0x8EA3A3AF\t0x538B\n0x8EA3A3B0\t0x3542\n0x8EA3A3B1\t0x53BE\n0x8EA3A3B2\t0x355C\n0x8EA3A3B3\t0x53D2\n0x8EA3A3B4\t0x5416\n0x8EA3A3B5\t0x53FF\n0x8EA3A3B6\t0x3567\n0x8EA3A3B7\t0x5400\n0x8EA3A3B8\t0x3566\n0x8EA3A3B9\t0x5405\n0x8EA3A3BA\t0x5413\n0x8EA3A3BB\t0x5415\n0x8EA3A3BC\t0x2F83B\n0x8EA3A3BD\t0x361F\n0x8EA3A3BE\t0x56E3\n0x8EA3A3BF\t0x5735\n0x8EA3A3C0\t0x5736\n0x8EA3A3C1\t0x5731\n0x8EA3A3C2\t0x5732\n0x8EA3A3C3\t0x58EE\n0x8EA3A3C4\t0x5905\n0x8EA3A3C5\t0x4E54\n0x8EA3A3C6\t0x368F\n0x8EA3A3C7\t0x5936\n0x8EA3A3C8\t0x3690\n0x8EA3A3C9\t0x36A8\n0x8EA3A3CA\t0x36A4\n0x8EA3A3CB\t0x597A\n0x8EA3A3CC\t0x36A3\n0x8EA3A3CD\t0x5986\n0x8EA3A3CE\t0x373D\n0x8EA3A3CF\t0x374C\n0x8EA3A3D0\t0x5B86\n0x8EA3A3D1\t0x5F53\n0x8EA3A3D2\t0x5C18\n0x8EA3A3D3\t0x378C\n0x8EA3A3D4\t0x5C3D\n0x8EA3A3D5\t0x5C78\n0x8EA3A3D6\t0x37A8\n0x8EA3A3D7\t0x37AD\n0x8EA3A3D8\t0x37AF\n0x8EA3A3D9\t0x21D46\n0x8EA3A3DA\t0x5C80\n0x8EA3A3DB\t0x3829\n0x8EA3A3DC\t0x5E08\n0x8EA3A3DD\t0x3836\n0x8EA3A3DE\t0x3871\n0x8EA3A3DF\t0x3870\n0x8EA3A3E0\t0x386F\n0x8EA3A3E1\t0x5EF5\n0x8EA3A3E2\t0x5F0E\n0x8EA3A3E3\t0x38A9\n0x8EA3A3E4\t0x38AA\n0x8EA3A3E5\t0x38FB\n0x8EA3A3E6\t0x5FD3\n0x8EA3A3E7\t0x5FDA\n0x8EA3A3E8\t0x38FC\n0x8EA3A3E9\t0x5FDB\n0x8EA3A3EA\t0x39AE\n0x8EA3A3EB\t0x620F\n0x8EA3A3EC\t0x625D\n0x8EA3A3ED\t0x625F\n0x8EA3A3EE\t0x6267\n0x8EA3A3EF\t0x6257\n0x8EA3A3F0\t0x9F50\n0x8EA3A3F1\t0x3AC3\n0x8EA3A3F2\t0x65EB\n0x8EA3A3F3\t0x65EA\n0x8EA3A3F4\t0x3B30\n0x8EA3A3F5\t0x6737\n0x8EA3A3F6\t0x3B41\n0x8EA3A3F7\t0x6732\n0x8EA3A3F8\t0x6736\n0x8EA3A3F9\t0x6B22\n0x8EA3A3FA\t0x6BCE\n0x8EA3A3FB\t0x3C8C\n0x8EA3A3FC\t0x6C58\n0x8EA3A3FD\t0x6C51\n0x8EA3A3FE\t0x6C77\n0x8EA3A4A1\t0x6C3C\n0x8EA3A4A2\t0x3CBB\n0x8EA3A4A3\t0x6C5A\n0x8EA3A4A4\t0x23C86\n0x8EA3A4A5\t0x6C53\n0x8EA3A4A6\t0x706F\n0x8EA3A4A7\t0x7072\n0x8EA3A4A8\t0x706E\n0x8EA3A4A9\t0x2F835\n0x8EA3A4AA\t0x3DA1\n0x8EA3A4AB\t0x7073\n0x8EA3A4AC\t0x72B1\n0x8EA3A4AD\t0x72B2\n0x8EA3A4AE\t0x3EA8\n0x8EA3A4AF\t0x738F\n0x8EA3A4B0\t0x3EAA\n0x8EA3A4B1\t0x3EAB\n0x8EA3A4B2\t0x4096\n0x8EA3A4B3\t0x793C\n0x8EA3A4B4\t0x41C2\n0x8EA3A4B5\t0x808D\n0x8EA3A4B6\t0x808E\n0x8EA3A4B7\t0x4493\n0x8EA3A4B8\t0x827B\n0x8EA3A4B9\t0x4494\n0x8EA3A4BA\t0x8D71\n0x8EA3A4BB\t0x8FB9\n0x8EA3A4BC\t0x9096\n0x8EA3A4BD\t0x909A\n0x8EA3A4BE\t0x49BB\n0x8EA3A4BF\t0x4E24\n0x8EA3A4C0\t0x4E71\n0x8EA3A4C1\t0x2F81B\n0x8EA3A4C2\t0x4E9C\n0x8EA3A4C3\t0x4F45\n0x8EA3A4C4\t0x4F4A\n0x8EA3A4C5\t0x4F39\n0x8EA3A4C6\t0x4F37\n0x8EA3A4C7\t0x3443\n0x8EA3A4C8\t0x4F32\n0x8EA3A4C9\t0x4F42\n0x8EA3A4CA\t0x3442\n0x8EA3A4CB\t0x4F44\n0x8EA3A4CC\t0x4F4B\n0x8EA3A4CD\t0x3444\n0x8EA3A4CE\t0x4F40\n0x8EA3A4CF\t0x4F35\n0x8EA3A4D0\t0x4F31\n0x8EA3A4D1\t0x5151\n0x8EA3A4D2\t0x2F80E\n0x8EA3A4D3\t0x5150\n0x8EA3A4D4\t0x514E\n0x8EA3A4D5\t0x34B3\n0x8EA3A4D6\t0x34B7\n0x8EA3A4D7\t0x519D\n0x8EA3A4D8\t0x34C8\n0x8EA3A4D9\t0x51B5\n0x8EA3A4DA\t0x51B8\n0x8EA3A4DB\t0x51EC\n0x8EA3A4DC\t0x5223\n0x8EA3A4DD\t0x5227\n0x8EA3A4DE\t0x5226\n0x8EA3A4DF\t0x521F\n0x8EA3A4E0\t0x522B\n0x8EA3A4E1\t0x5220\n0x8EA3A4E2\t0x52B4\n0x8EA3A4E3\t0x52B3\n0x8EA3A4E4\t0x3518\n0x8EA3A4E5\t0x5325\n0x8EA3A4E6\t0x533B\n0x8EA3A4E7\t0x5374\n0x8EA3A4E8\t0x3547\n0x8EA3A4E9\t0x3546\n0x8EA3A4EA\t0x3545\n0x8EA3A4EB\t0x356B\n0x8EA3A4EC\t0x3569\n0x8EA3A4ED\t0x544D\n0x8EA3A4EE\t0x3572\n0x8EA3A4EF\t0x3571\n0x8EA3A4F0\t0x543A\n0x8EA3A4F1\t0x356C\n0x8EA3A4F2\t0x356F\n0x8EA3A4F3\t0x5444\n0x8EA3A4F4\t0x544C\n0x8EA3A4F5\t0x5423\n0x8EA3A4F6\t0x541A\n0x8EA3A4F7\t0x5432\n0x8EA3A4F8\t0x544B\n0x8EA3A4F9\t0x5421\n0x8EA3A4FA\t0x3573\n0x8EA3A4FB\t0x5434\n0x8EA3A4FC\t0x5449\n0x8EA3A4FD\t0x5450\n0x8EA3A4FE\t0x5422\n0x8EA3A5A1\t0x543F\n0x8EA3A5A2\t0x5451\n0x8EA3A5A3\t0x545A\n0x8EA3A5A4\t0x542F\n0x8EA3A5A5\t0x3576\n0x8EA3A5A6\t0x56E9\n0x8EA3A5A7\t0x56F2\n0x8EA3A5A8\t0x56F3\n0x8EA3A5A9\t0x56EF\n0x8EA3A5AA\t0x56ED\n0x8EA3A5AB\t0x56EC\n0x8EA3A5AC\t0x56E6\n0x8EA3A5AD\t0x5748\n0x8EA3A5AE\t0x3627\n0x8EA3A5AF\t0x5744\n0x8EA3A5B0\t0x573F\n0x8EA3A5B1\t0x573C\n0x8EA3A5B2\t0x5753\n0x8EA3A5B3\t0x5756\n0x8EA3A5B4\t0x3630\n0x8EA3A5B5\t0x575F\n0x8EA3A5B6\t0x5743\n0x8EA3A5B7\t0x5758\n0x8EA3A5B8\t0x5757\n0x8EA3A5B9\t0x3629\n0x8EA3A5BA\t0x362A\n0x8EA3A5BB\t0x362F\n0x8EA3A5BC\t0x5746\n0x8EA3A5BD\t0x362C\n0x8EA3A5BE\t0x573D\n0x8EA3A5BF\t0x362D\n0x8EA3A5C0\t0x5742\n0x8EA3A5C1\t0x5754\n0x8EA3A5C2\t0x5755\n0x8EA3A5C3\t0x58F1\n0x8EA3A5C4\t0x58F2\n0x8EA3A5C5\t0x58F0\n0x8EA3A5C6\t0x590B\n0x8EA3A5C7\t0x9EA6\n0x8EA3A5C8\t0x56F1\n0x8EA3A5C9\t0x593D\n0x8EA3A5CA\t0x3693\n0x8EA3A5CB\t0x5994\n0x8EA3A5CC\t0x598C\n0x8EA3A5CD\t0x36AD\n0x8EA3A5CE\t0x599C\n0x8EA3A5CF\t0x36AC\n0x8EA3A5D0\t0x36AB\n0x8EA3A5D1\t0x599F\n0x8EA3A5D2\t0x36A9\n0x8EA3A5D3\t0x599B\n0x8EA3A5D4\t0x36AE\n0x8EA3A5D5\t0x5989\n0x8EA3A5D6\t0x599A\n0x8EA3A5D7\t0x36AA\n0x8EA3A5D8\t0x6588\n0x8EA3A5D9\t0x374E\n0x8EA3A5DA\t0x5B8D\n0x8EA3A5DB\t0x3750\n0x8EA3A5DC\t0x5BFE\n0x8EA3A5DD\t0x5BFF\n0x8EA3A5DE\t0x5BFD\n0x8EA3A5DF\t0x5C2B\n0x8EA3A5E0\t0x37B2\n0x8EA3A5E1\t0x5C84\n0x8EA3A5E2\t0x5C8E\n0x8EA3A5E3\t0x5C9C\n0x8EA3A5E4\t0x37B5\n0x8EA3A5E5\t0x37B6\n0x8EA3A5E6\t0x5C85\n0x8EA3A5E7\t0x5DF5\n0x8EA3A5E8\t0x5E09\n0x8EA3A5E9\t0x3839\n0x8EA3A5EA\t0x383B\n0x8EA3A5EB\t0x5E0B\n0x8EA3A5EC\t0x3872\n0x8EA3A5ED\t0x5E92\n0x8EA3A5EE\t0x5E90\n0x8EA3A5EF\t0x5F03\n0x8EA3A5F0\t0x38AC\n0x8EA3A5F1\t0x5F1E\n0x8EA3A5F2\t0x5F63\n0x8EA3A5F3\t0x3908\n0x8EA3A5F4\t0x5FE7\n0x8EA3A5F5\t0x5FFE\n0x8EA3A5F6\t0x5FE6\n0x8EA3A5F7\t0x5FDC\n0x8EA3A5F8\t0x5FCE\n0x8EA3A5F9\t0x3903\n0x8EA3A5FA\t0x5FFC\n0x8EA3A5FB\t0x5FDF\n0x8EA3A5FC\t0x5FEC\n0x8EA3A5FD\t0x5FF6\n0x8EA3A5FE\t0x225D7\n0x8EA3A6A1\t0x5FF2\n0x8EA3A6A2\t0x5FF0\n0x8EA3A6A3\t0x5FF9\n0x8EA3A6A4\t0x390B\n0x8EA3A6A5\t0x6213\n0x8EA3A6A6\t0x39AF\n0x8EA3A6A7\t0x2F8B2\n0x8EA3A6A8\t0x623B\n0x8EA3A6A9\t0x623C\n0x8EA3A6AA\t0x6282\n0x8EA3A6AB\t0x39CE\n0x8EA3A6AC\t0x39CB\n0x8EA3A6AD\t0x39CC\n0x8EA3A6AE\t0x6278\n0x8EA3A6AF\t0x628B\n0x8EA3A6B0\t0x39CD\n0x8EA3A6B1\t0x629E\n0x8EA3A6B2\t0x62A5\n0x8EA3A6B3\t0x629B\n0x8EA3A6B4\t0x629C\n0x8EA3A6B5\t0x6299\n0x8EA3A6B6\t0x628D\n0x8EA3A6B7\t0x6285\n0x8EA3A6B8\t0x629D\n0x8EA3A6B9\t0x6275\n0x8EA3A6BA\t0x3A80\n0x8EA3A6BB\t0x3AAF\n0x8EA3A6BC\t0x3AD3\n0x8EA3A6BD\t0x65F6\n0x8EA3A6BE\t0x3AD5\n0x8EA3A6BF\t0x3AD4\n0x8EA3A6C0\t0x3AD7\n0x8EA3A6C1\t0x66F5\n0x8EA3A6C2\t0x675B\n0x8EA3A6C3\t0x3B42\n0x8EA3A6C4\t0x6754\n0x8EA3A6C5\t0x6752\n0x8EA3A6C6\t0x3B44\n0x8EA3A6C7\t0x6758\n0x8EA3A6C8\t0x6744\n0x8EA3A6C9\t0x674A\n0x8EA3A6CA\t0x6761\n0x8EA3A6CB\t0x3CC6\n0x8EA3A6CC\t0x6C7F\n0x8EA3A6CD\t0x6C91\n0x8EA3A6CE\t0x6C9E\n0x8EA3A6CF\t0x3CC0\n0x8EA3A6D0\t0x6C6E\n0x8EA3A6D1\t0x6C7C\n0x8EA3A6D2\t0x6C9F\n0x8EA3A6D3\t0x6C75\n0x8EA3A6D4\t0x3CBE\n0x8EA3A6D5\t0x6C56\n0x8EA3A6D6\t0x6CA2\n0x8EA3A6D7\t0x6C79\n0x8EA3A6D8\t0x3CCA\n0x8EA3A6D9\t0x6CA1\n0x8EA3A6DA\t0x3CC4\n0x8EA3A6DB\t0x6CAA\n0x8EA3A6DC\t0x6CA0\n0x8EA3A6DD\t0x3CC2\n0x8EA3A6DE\t0x7079\n0x8EA3A6DF\t0x7077\n0x8EA3A6E0\t0x707E\n0x8EA3A6E1\t0x3DA4\n0x8EA3A6E2\t0x7075\n0x8EA3A6E3\t0x707B\n0x8EA3A6E4\t0x7264\n0x8EA3A6E5\t0x3E29\n0x8EA3A6E6\t0x72BB\n0x8EA3A6E7\t0x72BC\n0x8EA3A6E8\t0x72C7\n0x8EA3A6E9\t0x72B9\n0x8EA3A6EA\t0x72BE\n0x8EA3A6EB\t0x72B6\n0x8EA3A6EC\t0x3E60\n0x8EA3A6ED\t0x3E5E\n0x8EA3A6EE\t0x7398\n0x8EA3A6EF\t0x3EAD\n0x8EA3A6F0\t0x3EAE\n0x8EA3A6F1\t0x3EAC\n0x8EA3A6F2\t0x3F57\n0x8EA3A6F3\t0x7593\n0x8EA3A6F4\t0x7680\n0x8EA3A6F5\t0x3FDD\n0x8EA3A6F6\t0x7683\n0x8EA3A6F7\t0x76C0\n0x8EA3A6F8\t0x76C1\n0x8EA3A6F9\t0x400E\n0x8EA3A6FA\t0x4097\n0x8EA3A6FB\t0x77F4\n0x8EA3A6FC\t0x77F5\n0x8EA3A6FD\t0x4127\n0x8EA3A6FE\t0x7ACC\n0x8EA3A7A1\t0x7ACD\n0x8EA3A7A2\t0x7CFA\n0x8EA3A7A3\t0x809F\n0x8EA3A7A4\t0x8091\n0x8EA3A7A5\t0x8097\n0x8EA3A7A6\t0x8094\n0x8EA3A7A7\t0x4495\n0x8EA3A7A8\t0x8286\n0x8EA3A7A9\t0x828C\n0x8EA3A7AA\t0x2F98F\n0x8EA3A7AB\t0x8295\n0x8EA3A7AC\t0x4498\n0x8EA3A7AD\t0x866C\n0x8EA3A7AE\t0x459D\n0x8EA3A7AF\t0x8FB5\n0x8EA3A7B0\t0x8FBE\n0x8EA3A7B1\t0x8FC7\n0x8EA3A7B2\t0x488A\n0x8EA3A7B3\t0x8FC1\n0x8EA3A7B4\t0x90A9\n0x8EA3A7B5\t0x90A4\n0x8EA3A7B6\t0x48B5\n0x8EA3A7B7\t0x48B6\n0x8EA3A7B8\t0x48B7\n0x8EA3A7B9\t0x90A8\n0x8EA3A7BA\t0x9627\n0x8EA3A7BB\t0x9626\n0x8EA3A7BC\t0x962B\n0x8EA3A7BD\t0x9633\n0x8EA3A7BE\t0x9634\n0x8EA3A7BF\t0x9629\n0x8EA3A7C0\t0x4E3D\n0x8EA3A7C1\t0x3428\n0x8EA3A7C2\t0x4E9D\n0x8EA3A7C3\t0x4F93\n0x8EA3A7C4\t0x4F8A\n0x8EA3A7C5\t0x344D\n0x8EA3A7C6\t0x3449\n0x8EA3A7C7\t0x4F6D\n0x8EA3A7C8\t0x4F8E\n0x8EA3A7C9\t0x4FA0\n0x8EA3A7CA\t0x4FA2\n0x8EA3A7CB\t0x4FA1\n0x8EA3A7CC\t0x4F9F\n0x8EA3A7CD\t0x4FA3\n0x8EA3A7CE\t0x20209\n0x8EA3A7CF\t0x4F72\n0x8EA3A7D0\t0x3451\n0x8EA3A7D1\t0x4F8C\n0x8EA3A7D2\t0x5156\n0x8EA3A7D3\t0x2F80F\n0x8EA3A7D4\t0x2F811\n0x8EA3A7D5\t0x5190\n0x8EA3A7D6\t0x34CB\n0x8EA3A7D7\t0x34CA\n0x8EA3A7D8\t0x34CC\n0x8EA3A7D9\t0x51ED\n0x8EA3A7DA\t0x51FE\n0x8EA3A7DB\t0x522F\n0x8EA3A7DC\t0x206EC\n0x8EA3A7DD\t0x523C\n0x8EA3A7DE\t0x5234\n0x8EA3A7DF\t0x5239\n0x8EA3A7E0\t0x52B9\n0x8EA3A7E1\t0x52B5\n0x8EA3A7E2\t0x52BF\n0x8EA3A7E3\t0x5355\n0x8EA3A7E4\t0x353D\n0x8EA3A7E5\t0x5376\n0x8EA3A7E6\t0x537A\n0x8EA3A7E7\t0x5393\n0x8EA3A7E8\t0x3548\n0x8EA3A7E9\t0x53C1\n0x8EA3A7EA\t0x53C2\n0x8EA3A7EB\t0x53D5\n0x8EA3A7EC\t0x5485\n0x8EA3A7ED\t0x3578\n0x8EA3A7EE\t0x545F\n0x8EA3A7EF\t0x5493\n0x8EA3A7F0\t0x5489\n0x8EA3A7F1\t0x5479\n0x8EA3A7F2\t0x9EFE\n0x8EA3A7F3\t0x548F\n0x8EA3A7F4\t0x5469\n0x8EA3A7F5\t0x546D\n0x8EA3A7F6\t0x357A\n0x8EA3A7F7\t0x5494\n0x8EA3A7F8\t0x546A\n0x8EA3A7F9\t0x548A\n0x8EA3A7FA\t0x3577\n0x8EA3A7FB\t0x56FD\n0x8EA3A7FC\t0x56FB\n0x8EA3A7FD\t0x56F8\n0x8EA3A7FE\t0x3621\n0x8EA3A8A1\t0x56FC\n0x8EA3A8A2\t0x56F6\n0x8EA3A8A3\t0x5765\n0x8EA3A8A4\t0x5781\n0x8EA3A8A5\t0x5763\n0x8EA3A8A6\t0x5767\n0x8EA3A8A7\t0x3631\n0x8EA3A8A8\t0x576E\n0x8EA3A8A9\t0x5778\n0x8EA3A8AA\t0x577F\n0x8EA3A8AB\t0x3633\n0x8EA3A8AC\t0x3634\n0x8EA3A8AD\t0x58F3\n0x8EA3A8AE\t0x594B\n0x8EA3A8AF\t0x594C\n0x8EA3A8B0\t0x36C1\n0x8EA3A8B1\t0x36B0\n0x8EA3A8B2\t0x36B4\n0x8EA3A8B3\t0x59AD\n0x8EA3A8B4\t0x36B8\n0x8EA3A8B5\t0x59C4\n0x8EA3A8B6\t0x36BC\n0x8EA3A8B7\t0x59C2\n0x8EA3A8B8\t0x59B0\n0x8EA3A8B9\t0x36BF\n0x8EA3A8BA\t0x36B5\n0x8EA3A8BB\t0x36B1\n0x8EA3A8BC\t0x36BD\n0x8EA3A8BD\t0x59BF\n0x8EA3A8BE\t0x36BB\n0x8EA3A8BF\t0x59C9\n0x8EA3A8C0\t0x59B8\n0x8EA3A8C1\t0x59AC\n0x8EA3A8C2\t0x36B3\n0x8EA3A8C3\t0x36B6\n0x8EA3A8C4\t0x36BA\n0x8EA3A8C5\t0x59B7\n0x8EA3A8C6\t0x59D7\n0x8EA3A8C7\t0x36B7\n0x8EA3A8C8\t0x5B60\n0x8EA3A8C9\t0x3740\n0x8EA3A8CA\t0x5B96\n0x8EA3A8CB\t0x5B9E\n0x8EA3A8CC\t0x5B94\n0x8EA3A8CD\t0x5B9F\n0x8EA3A8CE\t0x5B9D\n0x8EA3A8CF\t0x3752\n0x8EA3A8D0\t0x5C00\n0x8EA3A8D1\t0x5C19\n0x8EA3A8D2\t0x3790\n0x8EA3A8D3\t0x3791\n0x8EA3A8D4\t0x5C49\n0x8EA3A8D5\t0x5C4A\n0x8EA3A8D6\t0x37BE\n0x8EA3A8D7\t0x5CBB\n0x8EA3A8D8\t0x5CC1\n0x8EA3A8D9\t0x37C0\n0x8EA3A8DA\t0x37C1\n0x8EA3A8DB\t0x37B9\n0x8EA3A8DC\t0x5CB9\n0x8EA3A8DD\t0x5C9E\n0x8EA3A8DE\t0x5CB4\n0x8EA3A8DF\t0x5CBA\n0x8EA3A8E0\t0x5DF6\n0x8EA3A8E1\t0x5E13\n0x8EA3A8E2\t0x5E12\n0x8EA3A8E3\t0x5E77\n0x8EA3A8E4\t0x3879\n0x8EA3A8E5\t0x5E98\n0x8EA3A8E6\t0x387B\n0x8EA3A8E7\t0x5E99\n0x8EA3A8E8\t0x5E9D\n0x8EA3A8E9\t0x5EF8\n0x8EA3A8EA\t0x38A0\n0x8EA3A8EB\t0x5EF9\n0x8EA3A8EC\t0x3429\n0x8EA3A8ED\t0x5F06\n0x8EA3A8EE\t0x5F21\n0x8EA3A8EF\t0x38AE\n0x8EA3A8F0\t0x5F25\n0x8EA3A8F1\t0x5F55\n0x8EA3A8F2\t0x38CD\n0x8EA3A8F3\t0x38CB\n0x8EA3A8F4\t0x38D9\n0x8EA3A8F5\t0x5F84\n0x8EA3A8F6\t0x5F83\n0x8EA3A8F7\t0x6030\n0x8EA3A8F8\t0x6007\n0x8EA3A8F9\t0x390C\n0x8EA3A8FA\t0x6036\n0x8EA3A8FB\t0x3901\n0x8EA3A8FC\t0x3905\n0x8EA3A8FD\t0x3902\n0x8EA3A8FE\t0x5FE9\n0x8EA3A9A1\t0x603D\n0x8EA3A9A2\t0x6008\n0x8EA3A9A3\t0x3913\n0x8EA3A9A4\t0x3911\n0x8EA3A9A5\t0x62BA\n0x8EA3A9A6\t0x62B2\n0x8EA3A9A7\t0x39E4\n0x8EA3A9A8\t0x62B7\n0x8EA3A9A9\t0x62E4\n0x8EA3A9AA\t0x62A7\n0x8EA3A9AB\t0x39DA\n0x8EA3A9AC\t0x39D5\n0x8EA3A9AD\t0x39D3\n0x8EA3A9AE\t0x62D5\n0x8EA3A9AF\t0x62E1\n0x8EA3A9B0\t0x62DD\n0x8EA3A9B1\t0x62A6\n0x8EA3A9B2\t0x62C1\n0x8EA3A9B3\t0x62C5\n0x8EA3A9B4\t0x62C0\n0x8EA3A9B5\t0x62DF\n0x8EA3A9B6\t0x62E0\n0x8EA3A9B7\t0x62DE\n0x8EA3A9B8\t0x39D6\n0x8EA3A9B9\t0x6589\n0x8EA3A9BA\t0x3AB4\n0x8EA3A9BB\t0x65A6\n0x8EA3A9BC\t0x65BA\n0x8EA3A9BD\t0x3AD9\n0x8EA3A9BE\t0x65FF\n0x8EA3A9BF\t0x3AD8\n0x8EA3A9C0\t0x6617\n0x8EA3A9C1\t0x6618\n0x8EA3A9C2\t0x6601\n0x8EA3A9C3\t0x65FE\n0x8EA3A9C4\t0x3B33\n0x8EA3A9C5\t0x670C\n0x8EA3A9C6\t0x3B48\n0x8EA3A9C7\t0x676B\n0x8EA3A9C8\t0x6796\n0x8EA3A9C9\t0x6782\n0x8EA3A9CA\t0x678A\n0x8EA3A9CB\t0x3B47\n0x8EA3A9CC\t0x67A3\n0x8EA3A9CD\t0x3B4B\n0x8EA3A9CE\t0x67A2\n0x8EA3A9CF\t0x678F\n0x8EA3A9D0\t0x3B4A\n0x8EA3A9D1\t0x67F9\n0x8EA3A9D2\t0x6780\n0x8EA3A9D3\t0x6B26\n0x8EA3A9D4\t0x6B27\n0x8EA3A9D5\t0x6B68\n0x8EA3A9D6\t0x6B69\n0x8EA3A9D7\t0x3C5A\n0x8EA3A9D8\t0x6B81\n0x8EA3A9D9\t0x6BB4\n0x8EA3A9DA\t0x6BD1\n0x8EA3A9DB\t0x3C8E\n0x8EA3A9DC\t0x3CB4\n0x8EA3A9DD\t0x6C1C\n0x8EA3A9DE\t0x3CCD\n0x8EA3A9DF\t0x3CCC\n0x8EA3A9E0\t0x3CCF\n0x8EA3A9E1\t0x3CCB\n0x8EA3A9E2\t0x3CCE\n0x8EA3A9E3\t0x6C97\n0x8EA3A9E4\t0x6C6C\n0x8EA3A9E5\t0x6CDF\n0x8EA3A9E6\t0x3CD2\n0x8EA3A9E7\t0x6CEA\n0x8EA3A9E8\t0x3CD1\n0x8EA3A9E9\t0x6CE4\n0x8EA3A9EA\t0x6CD8\n0x8EA3A9EB\t0x6CB2\n0x8EA3A9EC\t0x6CCE\n0x8EA3A9ED\t0x6CC8\n0x8EA3A9EE\t0x3DA6\n0x8EA3A9EF\t0x708B\n0x8EA3A9F0\t0x7088\n0x8EA3A9F1\t0x7090\n0x8EA3A9F2\t0x708F\n0x8EA3A9F3\t0x3DAA\n0x8EA3A9F4\t0x7087\n0x8EA3A9F5\t0x7089\n0x8EA3A9F6\t0x708D\n0x8EA3A9F7\t0x7081\n0x8EA3A9F8\t0x3DA8\n0x8EA3A9F9\t0x708C\n0x8EA3A9FA\t0x3E13\n0x8EA3A9FB\t0x3E1A\n0x8EA3A9FC\t0x7240\n0x8EA3A9FD\t0x3E1D\n0x8EA3A9FE\t0x3E1E\n0x8EA3AAA1\t0x7265\n0x8EA3AAA2\t0x7266\n0x8EA3AAA3\t0x7268\n0x8EA3AAA4\t0x3E65\n0x8EA3AAA5\t0x3E66\n0x8EA3AAA6\t0x72CD\n0x8EA3AAA7\t0x72D3\n0x8EA3AAA8\t0x72DB\n0x8EA3AAA9\t0x3E64\n0x8EA3AAAA\t0x72CF\n0x8EA3AAAB\t0x73A7\n0x8EA3AAAC\t0x73A3\n0x8EA3AAAD\t0x739E\n0x8EA3AAAE\t0x3EB0\n0x8EA3AAAF\t0x73AF\n0x8EA3AAB0\t0x3EB3\n0x8EA3AAB1\t0x3EB5\n0x8EA3AAB2\t0x73AA\n0x8EA3AAB3\t0x739C\n0x8EA3AAB4\t0x3F19\n0x8EA3AAB5\t0x7542\n0x8EA3AAB6\t0x7544\n0x8EA3AAB7\t0x753B\n0x8EA3AAB8\t0x7541\n0x8EA3AAB9\t0x2233F\n0x8EA3AABA\t0x759B\n0x8EA3AABB\t0x759E\n0x8EA3AABC\t0x3F75\n0x8EA3AABD\t0x79C4\n0x8EA3AABE\t0x79C3\n0x8EA3AABF\t0x79C6\n0x8EA3AAC0\t0x412B\n0x8EA3AAC1\t0x412C\n0x8EA3AAC2\t0x79C7\n0x8EA3AAC3\t0x412D\n0x8EA3AAC4\t0x79CA\n0x8EA3AAC5\t0x2592E\n0x8EA3AAC6\t0x41C3\n0x8EA3AAC7\t0x7ACF\n0x8EA3AAC8\t0x7C76\n0x8EA3AAC9\t0x7C74\n0x8EA3AACA\t0x7CFF\n0x8EA3AACB\t0x7CFC\n0x8EA3AACC\t0x34BA\n0x8EA3AACD\t0x4350\n0x8EA3AACE\t0x7F59\n0x8EA3AACF\t0x80A8\n0x8EA3AAD0\t0x43D3\n0x8EA3AAD1\t0x43D0\n0x8EA3AAD2\t0x80B0\n0x8EA3AAD3\t0x43DC\n0x8EA3AAD4\t0x80B3\n0x8EA3AAD5\t0x43D2\n0x8EA3AAD6\t0x80A4\n0x8EA3AAD7\t0x80B6\n0x8EA3AAD8\t0x80A7\n0x8EA3AAD9\t0x80AC\n0x8EA3AADA\t0x43DB\n0x8EA3AADB\t0x80A6\n0x8EA3AADC\t0x5367\n0x8EA3AADD\t0x820E\n0x8EA3AADE\t0x82C4\n0x8EA3AADF\t0x833E\n0x8EA3AAE0\t0x829C\n0x8EA3AAE1\t0x44A5\n0x8EA3AAE2\t0x449F\n0x8EA3AAE3\t0x449A\n0x8EA3AAE4\t0x449C\n0x8EA3AAE5\t0x44A2\n0x8EA3AAE6\t0x82AA\n0x8EA3AAE7\t0x449B\n0x8EA3AAE8\t0x82C9\n0x8EA3AAE9\t0x44A3\n0x8EA3AAEA\t0x449D\n0x8EA3AAEB\t0x82A6\n0x8EA3AAEC\t0x82B2\n0x8EA3AAED\t0x4588\n0x8EA3AAEE\t0x461A\n0x8EA3AAEF\t0x488D\n0x8EA3AAF0\t0x8FCC\n0x8EA3AAF1\t0x8FD9\n0x8EA3AAF2\t0x8FCA\n0x8EA3AAF3\t0x8FD8\n0x8EA3AAF4\t0x8FCF\n0x8EA3AAF5\t0x90B7\n0x8EA3AAF6\t0x48B8\n0x8EA3AAF7\t0x90AD\n0x8EA3AAF8\t0x90B9\n0x8EA3AAF9\t0x9637\n0x8EA3AAFA\t0x49C3\n0x8EA3AAFB\t0x9641\n0x8EA3AAFC\t0x963E\n0x8EA3AAFD\t0x96B6\n0x8EA3AAFE\t0x9751\n0x8EA3ABA1\t0x9763\n0x8EA3ABA2\t0x4E57\n0x8EA3ABA3\t0x4E79\n0x8EA3ABA4\t0x4EB2\n0x8EA3ABA5\t0x4EB0\n0x8EA3ABA6\t0x4EAF\n0x8EA3ABA7\t0x4EB1\n0x8EA3ABA8\t0x4FD2\n0x8EA3ABA9\t0x4FD5\n0x8EA3ABAA\t0x345D\n0x8EA3ABAB\t0x4FBE\n0x8EA3ABAC\t0x4FB8\n0x8EA3ABAD\t0x4FB0\n0x8EA3ABAE\t0x4FB1\n0x8EA3ABAF\t0x4FC8\n0x8EA3ABB0\t0x345A\n0x8EA3ABB1\t0x3457\n0x8EA3ABB2\t0x4FC6\n0x8EA3ABB3\t0x4FCC\n0x8EA3ABB4\t0x4FE5\n0x8EA3ABB5\t0x4FE3\n0x8EA3ABB6\t0x4FB4\n0x8EA3ABB7\t0x516A\n0x8EA3ABB8\t0x34B8\n0x8EA3ABB9\t0x519F\n0x8EA3ABBA\t0x34C2\n0x8EA3ABBB\t0x51C1\n0x8EA3ABBC\t0x34CF\n0x8EA3ABBD\t0x51C2\n0x8EA3ABBE\t0x51C3\n0x8EA3ABBF\t0x5245\n0x8EA3ABC0\t0x5248\n0x8EA3ABC1\t0x34E7\n0x8EA3ABC2\t0x34E9\n0x8EA3ABC3\t0x524F\n0x8EA3ABC4\t0x4452\n0x8EA3ABC5\t0x34E8\n0x8EA3ABC6\t0x52C5\n0x8EA3ABC7\t0x52CA\n0x8EA3ABC8\t0x52C4\n0x8EA3ABC9\t0x5327\n0x8EA3ABCA\t0x5358\n0x8EA3ABCB\t0x537D\n0x8EA3ABCC\t0x354A\n0x8EA3ABCD\t0x53DD\n0x8EA3ABCE\t0x53DC\n0x8EA3ABCF\t0x53DA\n0x8EA3ABD0\t0x53D9\n0x8EA3ABD1\t0x54B9\n0x8EA3ABD2\t0x3580\n0x8EA3ABD3\t0x54D0\n0x8EA3ABD4\t0x54B4\n0x8EA3ABD5\t0x54CA\n0x8EA3ABD6\t0x3587\n0x8EA3ABD7\t0x54A3\n0x8EA3ABD8\t0x54DA\n0x8EA3ABD9\t0x54A4\n0x8EA3ABDA\t0x3584\n0x8EA3ABDB\t0x54B2\n0x8EA3ABDC\t0x549E\n0x8EA3ABDD\t0x549F\n0x8EA3ABDE\t0x54B5\n0x8EA3ABDF\t0x3582\n0x8EA3ABE0\t0x3581\n0x8EA3ABE1\t0x54CD\n0x8EA3ABE2\t0x3583\n0x8EA3ABE3\t0x54CC\n0x8EA3ABE4\t0x3622\n0x8EA3ABE5\t0x5700\n0x8EA3ABE6\t0x57AC\n0x8EA3ABE7\t0x5791\n0x8EA3ABE8\t0x578E\n0x8EA3ABE9\t0x578D\n0x8EA3ABEA\t0x5792\n0x8EA3ABEB\t0x57A1\n0x8EA3ABEC\t0x5790\n0x8EA3ABED\t0x57A6\n0x8EA3ABEE\t0x57A8\n0x8EA3ABEF\t0x363B\n0x8EA3ABF0\t0x579C\n0x8EA3ABF1\t0x5796\n0x8EA3ABF2\t0x57A7\n0x8EA3ABF3\t0x363A\n0x8EA3ABF4\t0x3638\n0x8EA3ABF5\t0x3639\n0x8EA3ABF6\t0x3636\n0x8EA3ABF7\t0x58F5\n0x8EA3ABF8\t0x3685\n0x8EA3ABF9\t0x5909\n0x8EA3ABFA\t0x5908\n0x8EA3ABFB\t0x3C54\n0x8EA3ABFC\t0x5952\n0x8EA3ABFD\t0x369A\n0x8EA3ABFE\t0x36C4\n0x8EA3ACA1\t0x59DF\n0x8EA3ACA2\t0x36C5\n0x8EA3ACA3\t0x59EB\n0x8EA3ACA4\t0x59EF\n0x8EA3ACA5\t0x59F0\n0x8EA3ACA6\t0x59D5\n0x8EA3ACA7\t0x5A0D\n0x8EA3ACA8\t0x5A04\n0x8EA3ACA9\t0x59F9\n0x8EA3ACAA\t0x5A02\n0x8EA3ACAB\t0x59F8\n0x8EA3ACAC\t0x59E2\n0x8EA3ACAD\t0x59D9\n0x8EA3ACAE\t0x59E7\n0x8EA3ACAF\t0x5B6A\n0x8EA3ACB0\t0x3754\n0x8EA3ACB1\t0x3755\n0x8EA3ACB2\t0x5BAB\n0x8EA3ACB3\t0x3756\n0x8EA3ACB4\t0x5C1B\n0x8EA3ACB5\t0x5C2F\n0x8EA3ACB6\t0x3796\n0x8EA3ACB7\t0x663C\n0x8EA3ACB8\t0x3795\n0x8EA3ACB9\t0x3794\n0x8EA3ACBA\t0x37C4\n0x8EA3ACBB\t0x5CD1\n0x8EA3ACBC\t0x5CDC\n0x8EA3ACBD\t0x5CE6\n0x8EA3ACBE\t0x5CE1\n0x8EA3ACBF\t0x5CCD\n0x8EA3ACC0\t0x2F87A\n0x8EA3ACC1\t0x5CE2\n0x8EA3ACC2\t0x5CDD\n0x8EA3ACC3\t0x5CE5\n0x8EA3ACC4\t0x5DFB\n0x8EA3ACC5\t0x5DFA\n0x8EA3ACC6\t0x5E1E\n0x8EA3ACC7\t0x3844\n0x8EA3ACC8\t0x5EA1\n0x8EA3ACC9\t0x387D\n0x8EA3ACCA\t0x387E\n0x8EA3ACCB\t0x5EFC\n0x8EA3ACCC\t0x5EFB\n0x8EA3ACCD\t0x5F2F\n0x8EA3ACCE\t0x38B2\n0x8EA3ACCF\t0x38B6\n0x8EA3ACD0\t0x5F66\n0x8EA3ACD1\t0x2F899\n0x8EA3ACD2\t0x38DC\n0x8EA3ACD3\t0x38DF\n0x8EA3ACD4\t0x605C\n0x8EA3ACD5\t0x3928\n0x8EA3ACD6\t0x604E\n0x8EA3ACD7\t0x6051\n0x8EA3ACD8\t0x3919\n0x8EA3ACD9\t0x3910\n0x8EA3ACDA\t0x6023\n0x8EA3ACDB\t0x6031\n0x8EA3ACDC\t0x607C\n0x8EA3ACDD\t0x6052\n0x8EA3ACDE\t0x392C\n0x8EA3ACDF\t0x6060\n0x8EA3ACE0\t0x604A\n0x8EA3ACE1\t0x6061\n0x8EA3ACE2\t0x391B\n0x8EA3ACE3\t0x6218\n0x8EA3ACE4\t0x39C2\n0x8EA3ACE5\t0x39EF\n0x8EA3ACE6\t0x39E3\n0x8EA3ACE7\t0x39E5\n0x8EA3ACE8\t0x39EA\n0x8EA3ACE9\t0x39E6\n0x8EA3ACEA\t0x39EE\n0x8EA3ACEB\t0x631F\n0x8EA3ACEC\t0x6317\n0x8EA3ACED\t0x62EA\n0x8EA3ACEE\t0x6321\n0x8EA3ACEF\t0x6304\n0x8EA3ACF0\t0x6305\n0x8EA3ACF1\t0x39E8\n0x8EA3ACF2\t0x6531\n0x8EA3ACF3\t0x6544\n0x8EA3ACF4\t0x6540\n0x8EA3ACF5\t0x3A85\n0x8EA3ACF6\t0x6542\n0x8EA3ACF7\t0x65BE\n0x8EA3ACF8\t0x3AE0\n0x8EA3ACF9\t0x6629\n0x8EA3ACFA\t0x661B\n0x8EA3ACFB\t0x3ADD\n0x8EA3ACFC\t0x6623\n0x8EA3ACFD\t0x662C\n0x8EA3ACFE\t0x661A\n0x8EA3ADA1\t0x6630\n0x8EA3ADA2\t0x663B\n0x8EA3ADA3\t0x661E\n0x8EA3ADA4\t0x6637\n0x8EA3ADA5\t0x6638\n0x8EA3ADA6\t0x3AE1\n0x8EA3ADA7\t0x670E\n0x8EA3ADA8\t0x3B51\n0x8EA3ADA9\t0x3B55\n0x8EA3ADAA\t0x67E8\n0x8EA3ADAB\t0x67D6\n0x8EA3ADAC\t0x3B52\n0x8EA3ADAD\t0x67C7\n0x8EA3ADAE\t0x67BC\n0x8EA3ADAF\t0x6852\n0x8EA3ADB0\t0x67BF\n0x8EA3ADB1\t0x67D5\n0x8EA3ADB2\t0x67FE\n0x8EA3ADB3\t0x8363\n0x8EA3ADB4\t0x67FB\n0x8EA3ADB5\t0x2F8DF\n0x8EA3ADB6\t0x67B1\n0x8EA3ADB7\t0x6801\n0x8EA3ADB8\t0x6805\n0x8EA3ADB9\t0x6800\n0x8EA3ADBA\t0x67D7\n0x8EA3ADBB\t0x409E\n0x8EA3ADBC\t0x6B2A\n0x8EA3ADBD\t0x6B6B\n0x8EA3ADBE\t0x3C52\n0x8EA3ADBF\t0x3C5E\n0x8EA3ADC0\t0x3C60\n0x8EA3ADC1\t0x3C5F\n0x8EA3ADC2\t0x6BE1\n0x8EA3ADC3\t0x3C92\n0x8EA3ADC4\t0x3CD6\n0x8EA3ADC5\t0x6D23\n0x8EA3ADC6\t0x6CFF\n0x8EA3ADC7\t0x6D14\n0x8EA3ADC8\t0x6D05\n0x8EA3ADC9\t0x6D13\n0x8EA3ADCA\t0x6D06\n0x8EA3ADCB\t0x6D21\n0x8EA3ADCC\t0x3CDE\n0x8EA3ADCD\t0x6D15\n0x8EA3ADCE\t0x6CAF\n0x8EA3ADCF\t0x6CF4\n0x8EA3ADD0\t0x6D02\n0x8EA3ADD1\t0x6D45\n0x8EA3ADD2\t0x2F8FE\n0x8EA3ADD3\t0x6D26\n0x8EA3ADD4\t0x3CD9\n0x8EA3ADD5\t0x6D44\n0x8EA3ADD6\t0x3CDD\n0x8EA3ADD7\t0x6D24\n0x8EA3ADD8\t0x70A5\n0x8EA3ADD9\t0x3DAC\n0x8EA3ADDA\t0x70A3\n0x8EA3ADDB\t0x3DB0\n0x8EA3ADDC\t0x70A2\n0x8EA3ADDD\t0x70BB\n0x8EA3ADDE\t0x70A0\n0x8EA3ADDF\t0x70AA\n0x8EA3ADE0\t0x3DAF\n0x8EA3ADE1\t0x3DAE\n0x8EA3ADE2\t0x70A8\n0x8EA3ADE3\t0x70B6\n0x8EA3ADE4\t0x70B2\n0x8EA3ADE5\t0x70A7\n0x8EA3ADE6\t0x3DAD\n0x8EA3ADE7\t0x3DAB\n0x8EA3ADE8\t0x70B9\n0x8EA3ADE9\t0x722E\n0x8EA3ADEA\t0x3E16\n0x8EA3ADEB\t0x723C\n0x8EA3ADEC\t0x3E30\n0x8EA3ADED\t0x726D\n0x8EA3ADEE\t0x3E33\n0x8EA3ADEF\t0x3E31\n0x8EA3ADF0\t0x72E7\n0x8EA3ADF1\t0x72ED\n0x8EA3ADF2\t0x3E6E\n0x8EA3ADF3\t0x72EC\n0x8EA3ADF4\t0x72E5\n0x8EA3ADF5\t0x72E2\n0x8EA3ADF6\t0x3EB1\n0x8EA3ADF7\t0x73C4\n0x8EA3ADF8\t0x73BD\n0x8EA3ADF9\t0x73CF\n0x8EA3ADFA\t0x73C9\n0x8EA3ADFB\t0x73C1\n0x8EA3ADFC\t0x73D0\n0x8EA3ADFD\t0x3EB7\n0x8EA3ADFE\t0x73CE\n0x8EA3AEA1\t0x74ED\n0x8EA3AEA2\t0x74EB\n0x8EA3AEA3\t0x3F1A\n0x8EA3AEA4\t0x74EF\n0x8EA3AEA5\t0x7549\n0x8EA3AEA6\t0x7550\n0x8EA3AEA7\t0x7546\n0x8EA3AEA8\t0x754A\n0x8EA3AEA9\t0x3F59\n0x8EA3AEAA\t0x754D\n0x8EA3AEAB\t0x75A6\n0x8EA3AEAC\t0x3F7A\n0x8EA3AEAD\t0x3F78\n0x8EA3AEAE\t0x3F7B\n0x8EA3AEAF\t0x75A8\n0x8EA3AEB0\t0x3FDE\n0x8EA3AEB1\t0x3FEC\n0x8EA3AEB2\t0x76C7\n0x8EA3AEB3\t0x76FF\n0x8EA3AEB4\t0x401E\n0x8EA3AEB5\t0x76FD\n0x8EA3AEB6\t0x77E6\n0x8EA3AEB7\t0x780A\n0x8EA3AEB8\t0x409B\n0x8EA3AEB9\t0x7804\n0x8EA3AEBA\t0x780B\n0x8EA3AEBB\t0x7807\n0x8EA3AEBC\t0x409D\n0x8EA3AEBD\t0x7815\n0x8EA3AEBE\t0x7808\n0x8EA3AEBF\t0x40FD\n0x8EA3AEC0\t0x79D3\n0x8EA3AEC1\t0x79D4\n0x8EA3AEC2\t0x79D0\n0x8EA3AEC3\t0x79D7\n0x8EA3AEC4\t0x7A7C\n0x8EA3AEC5\t0x4194\n0x8EA3AEC6\t0x4193\n0x8EA3AEC7\t0x7A7D\n0x8EA3AEC8\t0x7A83\n0x8EA3AEC9\t0x7A82\n0x8EA3AECA\t0x41C6\n0x8EA3AECB\t0x7AD4\n0x8EA3AECC\t0x7AD5\n0x8EA3AECD\t0x7AD3\n0x8EA3AECE\t0x7AD0\n0x8EA3AECF\t0x7AD2\n0x8EA3AED0\t0x7AFE\n0x8EA3AED1\t0x7AFC\n0x8EA3AED2\t0x7C77\n0x8EA3AED3\t0x7C7C\n0x8EA3AED4\t0x7C7B\n0x8EA3AED5\t0x42B8\n0x8EA3AED6\t0x2F96A\n0x8EA3AED7\t0x42B7\n0x8EA3AED8\t0x42B9\n0x8EA3AED9\t0x4353\n0x8EA3AEDA\t0x25133\n0x8EA3AEDB\t0x4352\n0x8EA3AEDC\t0x4351\n0x8EA3AEDD\t0x7F8F\n0x8EA3AEDE\t0x80D3\n0x8EA3AEDF\t0x43E3\n0x8EA3AEE0\t0x80CB\n0x8EA3AEE1\t0x80D2\n0x8EA3AEE2\t0x43E2\n0x8EA3AEE3\t0x8109\n0x8EA3AEE4\t0x80E2\n0x8EA3AEE5\t0x80DF\n0x8EA3AEE6\t0x80C6\n0x8EA3AEE7\t0x4463\n0x8EA3AEE8\t0x8224\n0x8EA3AEE9\t0x82F7\n0x8EA3AEEA\t0x82D8\n0x8EA3AEEB\t0x82DD\n0x8EA3AEEC\t0x44AA\n0x8EA3AEED\t0x44A6\n0x8EA3AEEE\t0x82F8\n0x8EA3AEEF\t0x82FC\n0x8EA3AEF0\t0x44A8\n0x8EA3AEF1\t0x44A9\n0x8EA3AEF2\t0x82E9\n0x8EA3AEF3\t0x44AB\n0x8EA3AEF4\t0x82EE\n0x8EA3AEF5\t0x44AC\n0x8EA3AEF6\t0x82D0\n0x8EA3AEF7\t0x830E\n0x8EA3AEF8\t0x82E2\n0x8EA3AEF9\t0x830B\n0x8EA3AEFA\t0x82FD\n0x8EA3AEFB\t0x5179\n0x8EA3AEFC\t0x8676\n0x8EA3AEFD\t0x459E\n0x8EA3AEFE\t0x8678\n0x8EA3AFA1\t0x459F\n0x8EA3AFA2\t0x45A0\n0x8EA3AFA3\t0x8675\n0x8EA3AFA4\t0x867D\n0x8EA3AFA5\t0x460F\n0x8EA3AFA6\t0x8842\n0x8EA3AFA7\t0x8866\n0x8EA3AFA8\t0x461C\n0x8EA3AFA9\t0x898C\n0x8EA3AFAA\t0x8A05\n0x8EA3AFAB\t0x46AE\n0x8EA3AFAC\t0x8A06\n0x8EA3AFAD\t0x46B0\n0x8EA3AFAE\t0x8C9F\n0x8EA3AFAF\t0x47D4\n0x8EA3AFB0\t0x8FF1\n0x8EA3AFB1\t0x8FE7\n0x8EA3AFB2\t0x8FE9\n0x8EA3AFB3\t0x8FEF\n0x8EA3AFB4\t0x90C2\n0x8EA3AFB5\t0x90BC\n0x8EA3AFB6\t0x48BB\n0x8EA3AFB7\t0x90C6\n0x8EA3AFB8\t0x90C0\n0x8EA3AFB9\t0x48C1\n0x8EA3AFBA\t0x48C2\n0x8EA3AFBB\t0x90CD\n0x8EA3AFBC\t0x90C9\n0x8EA3AFBD\t0x48BE\n0x8EA3AFBE\t0x90C4\n0x8EA3AFBF\t0x48E5\n0x8EA3AFC0\t0x9581\n0x8EA3AFC1\t0x49C6\n0x8EA3AFC2\t0x9CEC\n0x8EA3AFC3\t0x5032\n0x8EA3AFC4\t0x4FF9\n0x8EA3AFC5\t0x501D\n0x8EA3AFC6\t0x4FFF\n0x8EA3AFC7\t0x5004\n0x8EA3AFC8\t0x4FF0\n0x8EA3AFC9\t0x5003\n0x8EA3AFCA\t0x462E\n0x8EA3AFCB\t0x5002\n0x8EA3AFCC\t0x4FFC\n0x8EA3AFCD\t0x4FF2\n0x8EA3AFCE\t0x5024\n0x8EA3AFCF\t0x5008\n0x8EA3AFD0\t0x5036\n0x8EA3AFD1\t0x502E\n0x8EA3AFD2\t0x3465\n0x8EA3AFD3\t0x5010\n0x8EA3AFD4\t0x5038\n0x8EA3AFD5\t0x5039\n0x8EA3AFD6\t0x4FFD\n0x8EA3AFD7\t0x5056\n0x8EA3AFD8\t0x4FFB\n0x8EA3AFD9\t0x51A3\n0x8EA3AFDA\t0x51A6\n0x8EA3AFDB\t0x51A1\n0x8EA3AFDC\t0x34D1\n0x8EA3AFDD\t0x34D0\n0x8EA3AFDE\t0x51C7\n0x8EA3AFDF\t0x51C9\n0x8EA3AFE0\t0x5260\n0x8EA3AFE1\t0x5264\n0x8EA3AFE2\t0x5259\n0x8EA3AFE3\t0x5265\n0x8EA3AFE4\t0x5267\n0x8EA3AFE5\t0x5257\n0x8EA3AFE6\t0x5263\n0x8EA3AFE7\t0x34EE\n0x8EA3AFE8\t0x5253\n0x8EA3AFE9\t0x34EF\n0x8EA3AFEA\t0x52CF\n0x8EA3AFEB\t0x351E\n0x8EA3AFEC\t0x52CE\n0x8EA3AFED\t0x52D0\n0x8EA3AFEE\t0x52D1\n0x8EA3AFEF\t0x52CC\n0x8EA3AFF0\t0x354B\n0x8EA3AFF1\t0x354D\n0x8EA3AFF2\t0x3556\n0x8EA3AFF3\t0x550D\n0x8EA3AFF4\t0x54F4\n0x8EA3AFF5\t0x3592\n0x8EA3AFF6\t0x5513\n0x8EA3AFF7\t0x54EF\n0x8EA3AFF8\t0x54F5\n0x8EA3AFF9\t0x54F9\n0x8EA3AFFA\t0x5502\n0x8EA3AFFB\t0x5500\n0x8EA3AFFC\t0x3593\n0x8EA3AFFD\t0x3590\n0x8EA3AFFE\t0x5518\n0x8EA3B0A1\t0x54F0\n0x8EA3B0A2\t0x54F6\n0x8EA3B0A3\t0x2F841\n0x8EA3B0A4\t0x3597\n0x8EA3B0A5\t0x5519\n0x8EA3B0A6\t0x3623\n0x8EA3B0A7\t0x5705\n0x8EA3B0A8\t0x57C9\n0x8EA3B0A9\t0x363F\n0x8EA3B0AA\t0x57B7\n0x8EA3B0AB\t0x57CD\n0x8EA3B0AC\t0x3643\n0x8EA3B0AD\t0x3642\n0x8EA3B0AE\t0x3644\n0x8EA3B0AF\t0x57BE\n0x8EA3B0B0\t0x57BB\n0x8EA3B0B1\t0x3645\n0x8EA3B0B2\t0x57DB\n0x8EA3B0B3\t0x57C8\n0x8EA3B0B4\t0x57C4\n0x8EA3B0B5\t0x57C5\n0x8EA3B0B6\t0x57D1\n0x8EA3B0B7\t0x57CA\n0x8EA3B0B8\t0x57C0\n0x8EA3B0B9\t0x36D9\n0x8EA3B0BA\t0x36DE\n0x8EA3B0BB\t0x5A21\n0x8EA3B0BC\t0x5A2A\n0x8EA3B0BD\t0x36CF\n0x8EA3B0BE\t0x5A1D\n0x8EA3B0BF\t0x36CD\n0x8EA3B0C0\t0x5A0B\n0x8EA3B0C1\t0x36DD\n0x8EA3B0C2\t0x36CE\n0x8EA3B0C3\t0x36D3\n0x8EA3B0C4\t0x36D6\n0x8EA3B0C5\t0x5A22\n0x8EA3B0C6\t0x36DC\n0x8EA3B0C7\t0x36D1\n0x8EA3B0C8\t0x5A24\n0x8EA3B0C9\t0x36D0\n0x8EA3B0CA\t0x5A14\n0x8EA3B0CB\t0x5A31\n0x8EA3B0CC\t0x36D5\n0x8EA3B0CD\t0x5A2F\n0x8EA3B0CE\t0x5A1A\n0x8EA3B0CF\t0x5A12\n0x8EA3B0D0\t0x36D4\n0x8EA3B0D1\t0x36DB\n0x8EA3B0D2\t0x5A26\n0x8EA3B0D3\t0x2172E\n0x8EA3B0D4\t0x3743\n0x8EA3B0D5\t0x5BBC\n0x8EA3B0D6\t0x5BBB\n0x8EA3B0D7\t0x5BB7\n0x8EA3B0D8\t0x5C05\n0x8EA3B0D9\t0x5C06\n0x8EA3B0DA\t0x5C52\n0x8EA3B0DB\t0x5C53\n0x8EA3B0DC\t0x37CD\n0x8EA3B0DD\t0x37D1\n0x8EA3B0DE\t0x5CFA\n0x8EA3B0DF\t0x5CEB\n0x8EA3B0E0\t0x37CA\n0x8EA3B0E1\t0x5CF3\n0x8EA3B0E2\t0x5CF5\n0x8EA3B0E3\t0x5CE9\n0x8EA3B0E4\t0x5CEF\n0x8EA3B0E5\t0x37D4\n0x8EA3B0E6\t0x5E2A\n0x8EA3B0E7\t0x5E30\n0x8EA3B0E8\t0x5E2E\n0x8EA3B0E9\t0x5E2C\n0x8EA3B0EA\t0x5E2F\n0x8EA3B0EB\t0x5EAF\n0x8EA3B0EC\t0x5EA9\n0x8EA3B0ED\t0x3886\n0x8EA3B0EE\t0x5EFD\n0x8EA3B0EF\t0x5F32\n0x8EA3B0F0\t0x5F8E\n0x8EA3B0F1\t0x5F93\n0x8EA3B0F2\t0x5F8F\n0x8EA3B0F3\t0x604F\n0x8EA3B0F4\t0x6099\n0x8EA3B0F5\t0x3933\n0x8EA3B0F6\t0x607E\n0x8EA3B0F7\t0x3937\n0x8EA3B0F8\t0x6074\n0x8EA3B0F9\t0x604B\n0x8EA3B0FA\t0x6073\n0x8EA3B0FB\t0x6075\n0x8EA3B0FC\t0x392A\n0x8EA3B0FD\t0x391F\n0x8EA3B0FE\t0x6056\n0x8EA3B1A1\t0x60A9\n0x8EA3B1A2\t0x608B\n0x8EA3B1A3\t0x60A6\n0x8EA3B1A4\t0x3939\n0x8EA3B1A5\t0x6093\n0x8EA3B1A6\t0x60AE\n0x8EA3B1A7\t0x609E\n0x8EA3B1A8\t0x60A7\n0x8EA3B1A9\t0x6245\n0x8EA3B1AA\t0x39F2\n0x8EA3B1AB\t0x39F8\n0x8EA3B1AC\t0x632E\n0x8EA3B1AD\t0x39F7\n0x8EA3B1AE\t0x6352\n0x8EA3B1AF\t0x6330\n0x8EA3B1B0\t0x635B\n0x8EA3B1B1\t0x39F4\n0x8EA3B1B2\t0x6319\n0x8EA3B1B3\t0x631B\n0x8EA3B1B4\t0x39F1\n0x8EA3B1B5\t0x6331\n0x8EA3B1B6\t0x635D\n0x8EA3B1B7\t0x6337\n0x8EA3B1B8\t0x6335\n0x8EA3B1B9\t0x6353\n0x8EA3B1BA\t0x39F5\n0x8EA3B1BB\t0x635C\n0x8EA3B1BC\t0x633F\n0x8EA3B1BD\t0x654B\n0x8EA3B1BE\t0x3A87\n0x8EA3B1BF\t0x4369\n0x8EA3B1C0\t0x658B\n0x8EA3B1C1\t0x3AB6\n0x8EA3B1C2\t0x659A\n0x8EA3B1C3\t0x6650\n0x8EA3B1C4\t0x6646\n0x8EA3B1C5\t0x664E\n0x8EA3B1C6\t0x6640\n0x8EA3B1C7\t0x3AE9\n0x8EA3B1C8\t0x664B\n0x8EA3B1C9\t0x6648\n0x8EA3B1CA\t0x3AEB\n0x8EA3B1CB\t0x6660\n0x8EA3B1CC\t0x6644\n0x8EA3B1CD\t0x664D\n0x8EA3B1CE\t0x3B34\n0x8EA3B1CF\t0x6837\n0x8EA3B1D0\t0x6824\n0x8EA3B1D1\t0x3B62\n0x8EA3B1D2\t0x3B5C\n0x8EA3B1D3\t0x681B\n0x8EA3B1D4\t0x6836\n0x8EA3B1D5\t0x3B60\n0x8EA3B1D6\t0x682C\n0x8EA3B1D7\t0x6819\n0x8EA3B1D8\t0x6856\n0x8EA3B1D9\t0x6847\n0x8EA3B1DA\t0x683E\n0x8EA3B1DB\t0x681E\n0x8EA3B1DC\t0x2F8E1\n0x8EA3B1DD\t0x6815\n0x8EA3B1DE\t0x6822\n0x8EA3B1DF\t0x6827\n0x8EA3B1E0\t0x6859\n0x8EA3B1E1\t0x6858\n0x8EA3B1E2\t0x6855\n0x8EA3B1E3\t0x6830\n0x8EA3B1E4\t0x6823\n0x8EA3B1E5\t0x6B2E\n0x8EA3B1E6\t0x6B2B\n0x8EA3B1E7\t0x6B30\n0x8EA3B1E8\t0x6B6C\n0x8EA3B1E9\t0x3C61\n0x8EA3B1EA\t0x6B8B\n0x8EA3B1EB\t0x3C7F\n0x8EA3B1EC\t0x6BE9\n0x8EA3B1ED\t0x6BEA\n0x8EA3B1EE\t0x6BE5\n0x8EA3B1EF\t0x6D6B\n0x8EA3B1F0\t0x3CE5\n0x8EA3B1F1\t0x3CE6\n0x8EA3B1F2\t0x6D73\n0x8EA3B1F3\t0x6D57\n0x8EA3B1F4\t0x3CE9\n0x8EA3B1F5\t0x3CF3\n0x8EA3B1F6\t0x6D5D\n0x8EA3B1F7\t0x6D56\n0x8EA3B1F8\t0x6D8F\n0x8EA3B1F9\t0x6D5B\n0x8EA3B1FA\t0x6D1C\n0x8EA3B1FB\t0x6D9A\n0x8EA3B1FC\t0x6D9B\n0x8EA3B1FD\t0x6D99\n0x8EA3B1FE\t0x3CEE\n0x8EA3B2A1\t0x6D81\n0x8EA3B2A2\t0x6D71\n0x8EA3B2A3\t0x3CED\n0x8EA3B2A4\t0x3CEC\n0x8EA3B2A5\t0x6D72\n0x8EA3B2A6\t0x6D5C\n0x8EA3B2A7\t0x6D96\n0x8EA3B2A8\t0x70C4\n0x8EA3B2A9\t0x70DB\n0x8EA3B2AA\t0x70CC\n0x8EA3B2AB\t0x70D0\n0x8EA3B2AC\t0x70E3\n0x8EA3B2AD\t0x70DF\n0x8EA3B2AE\t0x3DB3\n0x8EA3B2AF\t0x70D6\n0x8EA3B2B0\t0x70EE\n0x8EA3B2B1\t0x70D5\n0x8EA3B2B2\t0x3DB5\n0x8EA3B2B3\t0x3E27\n0x8EA3B2B4\t0x3E35\n0x8EA3B2B5\t0x3E36\n0x8EA3B2B6\t0x727A\n0x8EA3B2B7\t0x3E71\n0x8EA3B2B8\t0x72F5\n0x8EA3B2B9\t0x7302\n0x8EA3B2BA\t0x3EB8\n0x8EA3B2BB\t0x3EC2\n0x8EA3B2BC\t0x73E2\n0x8EA3B2BD\t0x73EC\n0x8EA3B2BE\t0x73D5\n0x8EA3B2BF\t0x73F9\n0x8EA3B2C0\t0x73DF\n0x8EA3B2C1\t0x73E6\n0x8EA3B2C2\t0x3EC8\n0x8EA3B2C3\t0x3EC0\n0x8EA3B2C4\t0x3EC1\n0x8EA3B2C5\t0x3EC4\n0x8EA3B2C6\t0x73E4\n0x8EA3B2C7\t0x73E1\n0x8EA3B2C8\t0x74F3\n0x8EA3B2C9\t0x3F1F\n0x8EA3B2CA\t0x3F1C\n0x8EA3B2CB\t0x3F1D\n0x8EA3B2CC\t0x3F4D\n0x8EA3B2CD\t0x7556\n0x8EA3B2CE\t0x7555\n0x8EA3B2CF\t0x7558\n0x8EA3B2D0\t0x7557\n0x8EA3B2D1\t0x755E\n0x8EA3B2D2\t0x75C3\n0x8EA3B2D3\t0x3F87\n0x8EA3B2D4\t0x3F82\n0x8EA3B2D5\t0x75B4\n0x8EA3B2D6\t0x3F7D\n0x8EA3B2D7\t0x75B1\n0x8EA3B2D8\t0x3FDF\n0x8EA3B2D9\t0x4000\n0x8EA3B2DA\t0x76CB\n0x8EA3B2DB\t0x76CC\n0x8EA3B2DC\t0x772A\n0x8EA3B2DD\t0x4020\n0x8EA3B2DE\t0x7716\n0x8EA3B2DF\t0x770F\n0x8EA3B2E0\t0x4022\n0x8EA3B2E1\t0x4024\n0x8EA3B2E2\t0x773F\n0x8EA3B2E3\t0x772B\n0x8EA3B2E4\t0x770E\n0x8EA3B2E5\t0x7724\n0x8EA3B2E6\t0x4021\n0x8EA3B2E7\t0x7721\n0x8EA3B2E8\t0x7718\n0x8EA3B2E9\t0x77DD\n0x8EA3B2EA\t0x40A4\n0x8EA3B2EB\t0x40A5\n0x8EA3B2EC\t0x7824\n0x8EA3B2ED\t0x7836\n0x8EA3B2EE\t0x4101\n0x8EA3B2EF\t0x7958\n0x8EA3B2F0\t0x7959\n0x8EA3B2F1\t0x4103\n0x8EA3B2F2\t0x7962\n0x8EA3B2F3\t0x79DA\n0x8EA3B2F4\t0x79D9\n0x8EA3B2F5\t0x4137\n0x8EA3B2F6\t0x79E1\n0x8EA3B2F7\t0x79E5\n0x8EA3B2F8\t0x79E8\n0x8EA3B2F9\t0x79DB\n0x8EA3B2FA\t0x4138\n0x8EA3B2FB\t0x79E2\n0x8EA3B2FC\t0x79F0\n0x8EA3B2FD\t0x4199\n0x8EA3B2FE\t0x4198\n0x8EA3B3A1\t0x4197\n0x8EA3B3A2\t0x41C9\n0x8EA3B3A3\t0x7ADA\n0x8EA3B3A4\t0x7ADD\n0x8EA3B3A5\t0x41C7\n0x8EA3B3A6\t0x7ADB\n0x8EA3B3A7\t0x7ADC\n0x8EA3B3A8\t0x41D9\n0x8EA3B3A9\t0x41DB\n0x8EA3B3AA\t0x7B0D\n0x8EA3B3AB\t0x7B0B\n0x8EA3B3AC\t0x7B14\n0x8EA3B3AD\t0x7C8E\n0x8EA3B3AE\t0x7C86\n0x8EA3B3AF\t0x427B\n0x8EA3B3B0\t0x7C87\n0x8EA3B3B1\t0x7C83\n0x8EA3B3B2\t0x7C8B\n0x8EA3B3B3\t0x427C\n0x8EA3B3B4\t0x42BD\n0x8EA3B3B5\t0x42BC\n0x8EA3B3B6\t0x42C3\n0x8EA3B3B7\t0x7D24\n0x8EA3B3B8\t0x42C1\n0x8EA3B3B9\t0x42BF\n0x8EA3B3BA\t0x42C4\n0x8EA3B3BB\t0x7D25\n0x8EA3B3BC\t0x7F62\n0x8EA3B3BD\t0x7F93\n0x8EA3B3BE\t0x7F99\n0x8EA3B3BF\t0x7F97\n0x8EA3B3C0\t0x437E\n0x8EA3B3C1\t0x437F\n0x8EA3B3C2\t0x7FC4\n0x8EA3B3C3\t0x7FC6\n0x8EA3B3C4\t0x800A\n0x8EA3B3C5\t0x43B4\n0x8EA3B3C6\t0x43B3\n0x8EA3B3C7\t0x8040\n0x8EA3B3C8\t0x803C\n0x8EA3B3C9\t0x803B\n0x8EA3B3CA\t0x80F6\n0x8EA3B3CB\t0x80FF\n0x8EA3B3CC\t0x80EE\n0x8EA3B3CD\t0x8104\n0x8EA3B3CE\t0x8103\n0x8EA3B3CF\t0x8107\n0x8EA3B3D0\t0x2F983\n0x8EA3B3D1\t0x43E6\n0x8EA3B3D2\t0x80F7\n0x8EA3B3D3\t0x4459\n0x8EA3B3D4\t0x445A\n0x8EA3B3D5\t0x822D\n0x8EA3B3D6\t0x4464\n0x8EA3B3D7\t0x8227\n0x8EA3B3D8\t0x8229\n0x8EA3B3D9\t0x831F\n0x8EA3B3DA\t0x8357\n0x8EA3B3DB\t0x44B4\n0x8EA3B3DC\t0x44B9\n0x8EA3B3DD\t0x44B7\n0x8EA3B3DE\t0x44B5\n0x8EA3B3DF\t0x8321\n0x8EA3B3E0\t0x44C1\n0x8EA3B3E1\t0x44B1\n0x8EA3B3E2\t0x8318\n0x8EA3B3E3\t0x8358\n0x8EA3B3E4\t0x44B3\n0x8EA3B3E5\t0x44BA\n0x8EA3B3E6\t0x458C\n0x8EA3B3E7\t0x458B\n0x8EA3B3E8\t0x458D\n0x8EA3B3E9\t0x8684\n0x8EA3B3EA\t0x869F\n0x8EA3B3EB\t0x869B\n0x8EA3B3EC\t0x8689\n0x8EA3B3ED\t0x86A6\n0x8EA3B3EE\t0x8692\n0x8EA3B3EF\t0x868F\n0x8EA3B3F0\t0x86A0\n0x8EA3B3F1\t0x884F\n0x8EA3B3F2\t0x8878\n0x8EA3B3F3\t0x887A\n0x8EA3B3F4\t0x886E\n0x8EA3B3F5\t0x887B\n0x8EA3B3F6\t0x8884\n0x8EA3B3F7\t0x8873\n0x8EA3B3F8\t0x4678\n0x8EA3B3F9\t0x4677\n0x8EA3B3FA\t0x8A0D\n0x8EA3B3FB\t0x8A0B\n0x8EA3B3FC\t0x8A19\n0x8EA3B3FD\t0x46B2\n0x8EA3B3FE\t0x47D6\n0x8EA3B4A1\t0x8ED0\n0x8EA3B4A2\t0x4845\n0x8EA3B4A3\t0x4892\n0x8EA3B4A4\t0x4895\n0x8EA3B4A5\t0x8FF9\n0x8EA3B4A6\t0x9009\n0x8EA3B4A7\t0x9008\n0x8EA3B4A8\t0x48C6\n0x8EA3B4A9\t0x90DE\n0x8EA3B4AA\t0x9151\n0x8EA3B4AB\t0x48E7\n0x8EA3B4AC\t0x48E8\n0x8EA3B4AD\t0x91DB\n0x8EA3B4AE\t0x91DF\n0x8EA3B4AF\t0x91DE\n0x8EA3B4B0\t0x91D6\n0x8EA3B4B1\t0x91E0\n0x8EA3B4B2\t0x9585\n0x8EA3B4B3\t0x9660\n0x8EA3B4B4\t0x9659\n0x8EA3B4B5\t0x49CB\n0x8EA3B4B6\t0x9656\n0x8EA3B4B7\t0x49CD\n0x8EA3B4B8\t0x49F1\n0x8EA3B4B9\t0x96BD\n0x8EA3B4BA\t0x4B22\n0x8EA3B4BB\t0x3421\n0x8EA3B4BC\t0x5042\n0x8EA3B4BD\t0x5059\n0x8EA3B4BE\t0x346F\n0x8EA3B4BF\t0x5044\n0x8EA3B4C0\t0x5066\n0x8EA3B4C1\t0x5052\n0x8EA3B4C2\t0x5054\n0x8EA3B4C3\t0x5071\n0x8EA3B4C4\t0x5050\n0x8EA3B4C5\t0x507B\n0x8EA3B4C6\t0x507C\n0x8EA3B4C7\t0x5058\n0x8EA3B4C8\t0x3470\n0x8EA3B4C9\t0x3464\n0x8EA3B4CA\t0x5079\n0x8EA3B4CB\t0x506C\n0x8EA3B4CC\t0x5078\n0x8EA3B4CD\t0x51A8\n0x8EA3B4CE\t0x51D1\n0x8EA3B4CF\t0x51CF\n0x8EA3B4D0\t0x5268\n0x8EA3B4D1\t0x5276\n0x8EA3B4D2\t0x52D4\n0x8EA3B4D3\t0x352D\n0x8EA3B4D4\t0x53A0\n0x8EA3B4D5\t0x53C4\n0x8EA3B4D6\t0x3558\n0x8EA3B4D7\t0x5558\n0x8EA3B4D8\t0x554C\n0x8EA3B4D9\t0x5568\n0x8EA3B4DA\t0x35A6\n0x8EA3B4DB\t0x5549\n0x8EA3B4DC\t0x35A4\n0x8EA3B4DD\t0x359F\n0x8EA3B4DE\t0x555D\n0x8EA3B4DF\t0x5529\n0x8EA3B4E0\t0x20DAE\n0x8EA3B4E1\t0x5554\n0x8EA3B4E2\t0x5553\n0x8EA3B4E3\t0x35A3\n0x8EA3B4E4\t0x555A\n0x8EA3B4E5\t0x35A0\n0x8EA3B4E6\t0x553A\n0x8EA3B4E7\t0x553F\n0x8EA3B4E8\t0x552B\n0x8EA3B4E9\t0x57EA\n0x8EA3B4EA\t0x364A\n0x8EA3B4EB\t0x57EF\n0x8EA3B4EC\t0x3647\n0x8EA3B4ED\t0x3648\n0x8EA3B4EE\t0x57DD\n0x8EA3B4EF\t0x57FE\n0x8EA3B4F0\t0x2F855\n0x8EA3B4F1\t0x57DE\n0x8EA3B4F2\t0x57E6\n0x8EA3B4F3\t0x3649\n0x8EA3B4F4\t0x57E8\n0x8EA3B4F5\t0x57FF\n0x8EA3B4F6\t0x5803\n0x8EA3B4F7\t0x58F7\n0x8EA3B4F8\t0x68A6\n0x8EA3B4F9\t0x591F\n0x8EA3B4FA\t0x369E\n0x8EA3B4FB\t0x595B\n0x8EA3B4FC\t0x595D\n0x8EA3B4FD\t0x595E\n0x8EA3B4FE\t0x21637\n0x8EA3B5A1\t0x36E8\n0x8EA3B5A2\t0x5A2B\n0x8EA3B5A3\t0x36EC\n0x8EA3B5A4\t0x5A3B\n0x8EA3B5A5\t0x36ED\n0x8EA3B5A6\t0x36E6\n0x8EA3B5A7\t0x5A61\n0x8EA3B5A8\t0x5A3A\n0x8EA3B5A9\t0x5A6E\n0x8EA3B5AA\t0x5A4B\n0x8EA3B5AB\t0x5A6B\n0x8EA3B5AC\t0x36EB\n0x8EA3B5AD\t0x36E7\n0x8EA3B5AE\t0x5A45\n0x8EA3B5AF\t0x5A4E\n0x8EA3B5B0\t0x5A68\n0x8EA3B5B1\t0x5A3D\n0x8EA3B5B2\t0x5A71\n0x8EA3B5B3\t0x5A3F\n0x8EA3B5B4\t0x5A6F\n0x8EA3B5B5\t0x5A75\n0x8EA3B5B6\t0x36E9\n0x8EA3B5B7\t0x5A73\n0x8EA3B5B8\t0x5A2C\n0x8EA3B5B9\t0x5A59\n0x8EA3B5BA\t0x5A54\n0x8EA3B5BB\t0x5A4F\n0x8EA3B5BC\t0x5A63\n0x8EA3B5BD\t0x375C\n0x8EA3B5BE\t0x375D\n0x8EA3B5BF\t0x5BC8\n0x8EA3B5C0\t0x3760\n0x8EA3B5C1\t0x5BC3\n0x8EA3B5C2\t0x375B\n0x8EA3B5C3\t0x5C5B\n0x8EA3B5C4\t0x5C61\n0x8EA3B5C5\t0x3799\n0x8EA3B5C6\t0x5D21\n0x8EA3B5C7\t0x5D0A\n0x8EA3B5C8\t0x5D09\n0x8EA3B5C9\t0x37D8\n0x8EA3B5CA\t0x5D2C\n0x8EA3B5CB\t0x5D08\n0x8EA3B5CC\t0x37DA\n0x8EA3B5CD\t0x37DD\n0x8EA3B5CE\t0x5D2A\n0x8EA3B5CF\t0x5D15\n0x8EA3B5D0\t0x37E0\n0x8EA3B5D1\t0x5D10\n0x8EA3B5D2\t0x5D13\n0x8EA3B5D3\t0x37E5\n0x8EA3B5D4\t0x5D2F\n0x8EA3B5D5\t0x5D18\n0x8EA3B5D6\t0x37D7\n0x8EA3B5D7\t0x5DE3\n0x8EA3B5D8\t0x5E39\n0x8EA3B5D9\t0x5E35\n0x8EA3B5DA\t0x5E3A\n0x8EA3B5DB\t0x5E32\n0x8EA3B5DC\t0x384E\n0x8EA3B5DD\t0x388C\n0x8EA3B5DE\t0x3888\n0x8EA3B5DF\t0x2F88D\n0x8EA3B5E0\t0x5EBB\n0x8EA3B5E1\t0x5EBA\n0x8EA3B5E2\t0x5F34\n0x8EA3B5E3\t0x5F39\n0x8EA3B5E4\t0x38CE\n0x8EA3B5E5\t0x2F89C\n0x8EA3B5E6\t0x38E5\n0x8EA3B5E7\t0x38E6\n0x8EA3B5E8\t0x6098\n0x8EA3B5E9\t0x3932\n0x8EA3B5EA\t0x60D0\n0x8EA3B5EB\t0x3940\n0x8EA3B5EC\t0x3947\n0x8EA3B5ED\t0x394C\n0x8EA3B5EE\t0x60D7\n0x8EA3B5EF\t0x60AA\n0x8EA3B5F0\t0x3935\n0x8EA3B5F1\t0x60A1\n0x8EA3B5F2\t0x60A4\n0x8EA3B5F3\t0x3930\n0x8EA3B5F4\t0x60EE\n0x8EA3B5F5\t0x3943\n0x8EA3B5F6\t0x60E7\n0x8EA3B5F7\t0x394D\n0x8EA3B5F8\t0x60E8\n0x8EA3B5F9\t0x60DE\n0x8EA3B5FA\t0x39B7\n0x8EA3B5FB\t0x39F3\n0x8EA3B5FC\t0x637E\n0x8EA3B5FD\t0x638B\n0x8EA3B5FE\t0x3A02\n0x8EA3B6A1\t0x3A0B\n0x8EA3B6A2\t0x6379\n0x8EA3B6A3\t0x6386\n0x8EA3B6A4\t0x6393\n0x8EA3B6A5\t0x3A04\n0x8EA3B6A6\t0x6373\n0x8EA3B6A7\t0x636A\n0x8EA3B6A8\t0x2F8BA\n0x8EA3B6A9\t0x636C\n0x8EA3B6AA\t0x3A08\n0x8EA3B6AB\t0x637F\n0x8EA3B6AC\t0x39FC\n0x8EA3B6AD\t0x63B2\n0x8EA3B6AE\t0x63BA\n0x8EA3B6AF\t0x39FF\n0x8EA3B6B0\t0x3A00\n0x8EA3B6B1\t0x6366\n0x8EA3B6B2\t0x6374\n0x8EA3B6B3\t0x3A8B\n0x8EA3B6B4\t0x655A\n0x8EA3B6B5\t0x3A8D\n0x8EA3B6B6\t0x654E\n0x8EA3B6B7\t0x654D\n0x8EA3B6B8\t0x658D\n0x8EA3B6B9\t0x658E\n0x8EA3B6BA\t0x65AD\n0x8EA3B6BB\t0x3ACA\n0x8EA3B6BC\t0x65C7\n0x8EA3B6BD\t0x65CA\n0x8EA3B6BE\t0x3ACB\n0x8EA3B6BF\t0x65C9\n0x8EA3B6C0\t0x2F8CB\n0x8EA3B6C1\t0x65E3\n0x8EA3B6C2\t0x6657\n0x8EA3B6C3\t0x3AF3\n0x8EA3B6C4\t0x6663\n0x8EA3B6C5\t0x6667\n0x8EA3B6C6\t0x671A\n0x8EA3B6C7\t0x6719\n0x8EA3B6C8\t0x6716\n0x8EA3B6C9\t0x3B36\n0x8EA3B6CA\t0x3B6A\n0x8EA3B6CB\t0x689E\n0x8EA3B6CC\t0x68B6\n0x8EA3B6CD\t0x6898\n0x8EA3B6CE\t0x6873\n0x8EA3B6CF\t0x3B6B\n0x8EA3B6D0\t0x689A\n0x8EA3B6D1\t0x688E\n0x8EA3B6D2\t0x68B7\n0x8EA3B6D3\t0x68DB\n0x8EA3B6D4\t0x68A5\n0x8EA3B6D5\t0x686C\n0x8EA3B6D6\t0x68C1\n0x8EA3B6D7\t0x6884\n0x8EA3B6D8\t0x3B71\n0x8EA3B6D9\t0x3B68\n0x8EA3B6DA\t0x6895\n0x8EA3B6DB\t0x687A\n0x8EA3B6DC\t0x6899\n0x8EA3B6DD\t0x3B72\n0x8EA3B6DE\t0x68B8\n0x8EA3B6DF\t0x68B9\n0x8EA3B6E0\t0x6870\n0x8EA3B6E1\t0x3C2E\n0x8EA3B6E2\t0x6B35\n0x8EA3B6E3\t0x3C62\n0x8EA3B6E4\t0x6B90\n0x8EA3B6E5\t0x6BBB\n0x8EA3B6E6\t0x6BED\n0x8EA3B6E7\t0x3C98\n0x8EA3B6E8\t0x3CB5\n0x8EA3B6E9\t0x3CEB\n0x8EA3B6EA\t0x6DC1\n0x8EA3B6EB\t0x6DC3\n0x8EA3B6EC\t0x6DCE\n0x8EA3B6ED\t0x3CFB\n0x8EA3B6EE\t0x3CF8\n0x8EA3B6EF\t0x6DAD\n0x8EA3B6F0\t0x6E04\n0x8EA3B6F1\t0x3CF5\n0x8EA3B6F2\t0x6DB9\n0x8EA3B6F3\t0x3D08\n0x8EA3B6F4\t0x6DE7\n0x8EA3B6F5\t0x2F907\n0x8EA3B6F6\t0x6E08\n0x8EA3B6F7\t0x6E06\n0x8EA3B6F8\t0x3D0A\n0x8EA3B6F9\t0x6E0A\n0x8EA3B6FA\t0x6DB0\n0x8EA3B6FB\t0x3D06\n0x8EA3B6FC\t0x6DF8\n0x8EA3B6FD\t0x6E0C\n0x8EA3B6FE\t0x3CFD\n0x8EA3B7A1\t0x6DB1\n0x8EA3B7A2\t0x3CFA\n0x8EA3B7A3\t0x6E02\n0x8EA3B7A4\t0x6E07\n0x8EA3B7A5\t0x6E09\n0x8EA3B7A6\t0x6E01\n0x8EA3B7A7\t0x6E17\n0x8EA3B7A8\t0x6DFF\n0x8EA3B7A9\t0x6E12\n0x8EA3B7AA\t0x3DBA\n0x8EA3B7AB\t0x3DB9\n0x8EA3B7AC\t0x7103\n0x8EA3B7AD\t0x7107\n0x8EA3B7AE\t0x7101\n0x8EA3B7AF\t0x70F5\n0x8EA3B7B0\t0x70F1\n0x8EA3B7B1\t0x7108\n0x8EA3B7B2\t0x70F2\n0x8EA3B7B3\t0x710F\n0x8EA3B7B4\t0x3DBB\n0x8EA3B7B5\t0x70FE\n0x8EA3B7B6\t0x3E18\n0x8EA3B7B7\t0x3E40\n0x8EA3B7B8\t0x3E3D\n0x8EA3B7B9\t0x731A\n0x8EA3B7BA\t0x7310\n0x8EA3B7BB\t0x730E\n0x8EA3B7BC\t0x7402\n0x8EA3B7BD\t0x73F3\n0x8EA3B7BE\t0x3ECD\n0x8EA3B7BF\t0x3EC9\n0x8EA3B7C0\t0x73FB\n0x8EA3B7C1\t0x3ECB\n0x8EA3B7C2\t0x3ECA\n0x8EA3B7C3\t0x3ECE\n0x8EA3B7C4\t0x751B\n0x8EA3B7C5\t0x7523\n0x8EA3B7C6\t0x7561\n0x8EA3B7C7\t0x7568\n0x8EA3B7C8\t0x3F5E\n0x8EA3B7C9\t0x7567\n0x8EA3B7CA\t0x75D3\n0x8EA3B7CB\t0x3F91\n0x8EA3B7CC\t0x3F8C\n0x8EA3B7CD\t0x7690\n0x8EA3B7CE\t0x3FE1\n0x8EA3B7CF\t0x4002\n0x8EA3B7D0\t0x76D5\n0x8EA3B7D1\t0x76D7\n0x8EA3B7D2\t0x76D6\n0x8EA3B7D3\t0x7730\n0x8EA3B7D4\t0x402B\n0x8EA3B7D5\t0x7726\n0x8EA3B7D6\t0x402A\n0x8EA3B7D7\t0x7740\n0x8EA3B7D8\t0x3E14\n0x8EA3B7D9\t0x771E\n0x8EA3B7DA\t0x40AD\n0x8EA3B7DB\t0x40A3\n0x8EA3B7DC\t0x40AB\n0x8EA3B7DD\t0x7847\n0x8EA3B7DE\t0x40AF\n0x8EA3B7DF\t0x784B\n0x8EA3B7E0\t0x7851\n0x8EA3B7E1\t0x784F\n0x8EA3B7E2\t0x7842\n0x8EA3B7E3\t0x7846\n0x8EA3B7E4\t0x4104\n0x8EA3B7E5\t0x796E\n0x8EA3B7E6\t0x796C\n0x8EA3B7E7\t0x79F2\n0x8EA3B7E8\t0x4144\n0x8EA3B7E9\t0x79F1\n0x8EA3B7EA\t0x79F5\n0x8EA3B7EB\t0x79F3\n0x8EA3B7EC\t0x79F9\n0x8EA3B7ED\t0x413D\n0x8EA3B7EE\t0x4147\n0x8EA3B7EF\t0x419C\n0x8EA3B7F0\t0x7A9A\n0x8EA3B7F1\t0x7A93\n0x8EA3B7F2\t0x7A91\n0x8EA3B7F3\t0x7AE1\n0x8EA3B7F4\t0x41E0\n0x8EA3B7F5\t0x41E4\n0x8EA3B7F6\t0x7B21\n0x8EA3B7F7\t0x7B1C\n0x8EA3B7F8\t0x7B16\n0x8EA3B7F9\t0x7B17\n0x8EA3B7FA\t0x7B36\n0x8EA3B7FB\t0x7B1F\n0x8EA3B7FC\t0x4280\n0x8EA3B7FD\t0x7C93\n0x8EA3B7FE\t0x7C99\n0x8EA3B8A1\t0x7C9A\n0x8EA3B8A2\t0x7C9C\n0x8EA3B8A3\t0x42CA\n0x8EA3B8A4\t0x7D49\n0x8EA3B8A5\t0x42D4\n0x8EA3B8A6\t0x7D34\n0x8EA3B8A7\t0x7D37\n0x8EA3B8A8\t0x42D2\n0x8EA3B8A9\t0x7D2D\n0x8EA3B8AA\t0x42CB\n0x8EA3B8AB\t0x7D4C\n0x8EA3B8AC\t0x42CE\n0x8EA3B8AD\t0x42D3\n0x8EA3B8AE\t0x7D48\n0x8EA3B8AF\t0x4344\n0x8EA3B8B0\t0x4348\n0x8EA3B8B1\t0x7F3B\n0x8EA3B8B2\t0x4345\n0x8EA3B8B3\t0x4381\n0x8EA3B8B4\t0x4386\n0x8EA3B8B5\t0x4385\n0x8EA3B8B6\t0x8008\n0x8EA3B8B7\t0x801A\n0x8EA3B8B8\t0x43A3\n0x8EA3B8B9\t0x801D\n0x8EA3B8BA\t0x43B5\n0x8EA3B8BB\t0x8049\n0x8EA3B8BC\t0x8045\n0x8EA3B8BD\t0x8044\n0x8EA3B8BE\t0x7C9B\n0x8EA3B8BF\t0x43FA\n0x8EA3B8C0\t0x43F9\n0x8EA3B8C1\t0x812A\n0x8EA3B8C2\t0x812E\n0x8EA3B8C3\t0x43FB\n0x8EA3B8C4\t0x43F2\n0x8EA3B8C5\t0x8131\n0x8EA3B8C6\t0x43EF\n0x8EA3B8C7\t0x811A\n0x8EA3B8C8\t0x8134\n0x8EA3B8C9\t0x8117\n0x8EA3B8CA\t0x445B\n0x8EA3B8CB\t0x4466\n0x8EA3B8CC\t0x44CE\n0x8EA3B8CD\t0x831D\n0x8EA3B8CE\t0x8371\n0x8EA3B8CF\t0x8384\n0x8EA3B8D0\t0x8380\n0x8EA3B8D1\t0x8372\n0x8EA3B8D2\t0x83A1\n0x8EA3B8D3\t0x35B4\n0x8EA3B8D4\t0x8379\n0x8EA3B8D5\t0x8391\n0x8EA3B8D6\t0x44C8\n0x8EA3B8D7\t0x839F\n0x8EA3B8D8\t0x83AD\n0x8EA3B8D9\t0x44D1\n0x8EA3B8DA\t0x44C5\n0x8EA3B8DB\t0x8323\n0x8EA3B8DC\t0x44D2\n0x8EA3B8DD\t0x8385\n0x8EA3B8DE\t0x839C\n0x8EA3B8DF\t0x83B7\n0x8EA3B8E0\t0x8658\n0x8EA3B8E1\t0x865A\n0x8EA3B8E2\t0x458F\n0x8EA3B8E3\t0x8657\n0x8EA3B8E4\t0x86B2\n0x8EA3B8E5\t0x45A7\n0x8EA3B8E6\t0x86AE\n0x8EA3B8E7\t0x45A5\n0x8EA3B8E8\t0x45A4\n0x8EA3B8E9\t0x4611\n0x8EA3B8EA\t0x8845\n0x8EA3B8EB\t0x889C\n0x8EA3B8EC\t0x8894\n0x8EA3B8ED\t0x88A3\n0x8EA3B8EE\t0x888F\n0x8EA3B8EF\t0x88A5\n0x8EA3B8F0\t0x88A9\n0x8EA3B8F1\t0x88A6\n0x8EA3B8F2\t0x888A\n0x8EA3B8F3\t0x88A0\n0x8EA3B8F4\t0x8890\n0x8EA3B8F5\t0x8992\n0x8EA3B8F6\t0x8991\n0x8EA3B8F7\t0x8994\n0x8EA3B8F8\t0x46B5\n0x8EA3B8F9\t0x8A26\n0x8EA3B8FA\t0x8A32\n0x8EA3B8FB\t0x8A28\n0x8EA3B8FC\t0x46B4\n0x8EA3B8FD\t0x46BD\n0x8EA3B8FE\t0x8A1C\n0x8EA3B9A1\t0x46BB\n0x8EA3B9A2\t0x8A2B\n0x8EA3B9A3\t0x8A20\n0x8EA3B9A4\t0x46B9\n0x8EA3B9A5\t0x8A29\n0x8EA3B9A6\t0x46C2\n0x8EA3B9A7\t0x46BE\n0x8EA3B9A8\t0x46BA\n0x8EA3B9A9\t0x8A21\n0x8EA3B9AA\t0x8C3A\n0x8EA3B9AB\t0x3AB7\n0x8EA3B9AC\t0x8C5B\n0x8EA3B9AD\t0x8C58\n0x8EA3B9AE\t0x8C7C\n0x8EA3B9AF\t0x4758\n0x8EA3B9B0\t0x8CA6\n0x8EA3B9B1\t0x8CAE\n0x8EA3B9B2\t0x8CAD\n0x8EA3B9B3\t0x8D65\n0x8EA3B9B4\t0x479B\n0x8EA3B9B5\t0x8D7E\n0x8EA3B9B6\t0x479C\n0x8EA3B9B7\t0x8D7C\n0x8EA3B9B8\t0x8D7F\n0x8EA3B9B9\t0x8D7A\n0x8EA3B9BA\t0x8DBD\n0x8EA3B9BB\t0x47DA\n0x8EA3B9BC\t0x47DE\n0x8EA3B9BD\t0x8DC0\n0x8EA3B9BE\t0x8DBB\n0x8EA3B9BF\t0x8EAD\n0x8EA3B9C0\t0x8EAF\n0x8EA3B9C1\t0x8ED6\n0x8EA3B9C2\t0x484D\n0x8EA3B9C3\t0x4846\n0x8EA3B9C4\t0x4847\n0x8EA3B9C5\t0x484B\n0x8EA3B9C6\t0x484C\n0x8EA3B9C7\t0x8ED9\n0x8EA3B9C8\t0x4848\n0x8EA3B9C9\t0x4899\n0x8EA3B9CA\t0x9012\n0x8EA3B9CB\t0x900E\n0x8EA3B9CC\t0x9025\n0x8EA3B9CD\t0x489B\n0x8EA3B9CE\t0x9013\n0x8EA3B9CF\t0x90EE\n0x8EA3B9D0\t0x48CE\n0x8EA3B9D1\t0x90AB\n0x8EA3B9D2\t0x90F7\n0x8EA3B9D3\t0x48EB\n0x8EA3B9D4\t0x9159\n0x8EA3B9D5\t0x9154\n0x8EA3B9D6\t0x91F2\n0x8EA3B9D7\t0x91F0\n0x8EA3B9D8\t0x91E5\n0x8EA3B9D9\t0x91F6\n0x8EA3B9DA\t0x491C\n0x8EA3B9DB\t0x498C\n0x8EA3B9DC\t0x9587\n0x8EA3B9DD\t0x49D1\n0x8EA3B9DE\t0x965A\n0x8EA3B9DF\t0x49D6\n0x8EA3B9E0\t0x49D3\n0x8EA3B9E1\t0x966E\n0x8EA3B9E2\t0x49D4\n0x8EA3B9E3\t0x49D0\n0x8EA3B9E4\t0x49D5\n0x8EA3B9E5\t0x9679\n0x8EA3B9E6\t0x4A0B\n0x8EA3B9E7\t0x98E1\n0x8EA3B9E8\t0x98E6\n0x8EA3B9E9\t0x4BC6\n0x8EA3B9EA\t0x9EC4\n0x8EA3B9EB\t0x9ED2\n0x8EA3B9EC\t0x4E80\n0x8EA3B9ED\t0x3424\n0x8EA3B9EE\t0x4E81\n0x8EA3B9EF\t0x508F\n0x8EA3B9F0\t0x5097\n0x8EA3B9F1\t0x5088\n0x8EA3B9F2\t0x5089\n0x8EA3B9F3\t0x3474\n0x8EA3B9F4\t0x347A\n0x8EA3B9F5\t0x5081\n0x8EA3B9F6\t0x5160\n0x8EA3B9F7\t0x20564\n0x8EA3B9F8\t0x34C3\n0x8EA3B9F9\t0x5E42\n0x8EA3B9FA\t0x51D3\n0x8EA3B9FB\t0x34D4\n0x8EA3B9FC\t0x34D5\n0x8EA3B9FD\t0x51D2\n0x8EA3B9FE\t0x51D6\n0x8EA3BAA1\t0x5273\n0x8EA3BAA2\t0x34FB\n0x8EA3BAA3\t0x5270\n0x8EA3BAA4\t0x34F7\n0x8EA3BAA5\t0x3532\n0x8EA3BAA6\t0x2F833\n0x8EA3BAA7\t0x53A8\n0x8EA3BAA8\t0x53A6\n0x8EA3BAA9\t0x53C5\n0x8EA3BAAA\t0x5597\n0x8EA3BAAB\t0x55DE\n0x8EA3BAAC\t0x35BA\n0x8EA3BAAD\t0x35BF\n0x8EA3BAAE\t0x5596\n0x8EA3BAAF\t0x55B4\n0x8EA3BAB0\t0x35C7\n0x8EA3BAB1\t0x5585\n0x8EA3BAB2\t0x35B7\n0x8EA3BAB3\t0x559B\n0x8EA3BAB4\t0x55A0\n0x8EA3BAB5\t0x35B9\n0x8EA3BAB6\t0x5559\n0x8EA3BAB7\t0x35C3\n0x8EA3BAB8\t0x5586\n0x8EA3BAB9\t0x35BD\n0x8EA3BABA\t0x35D0\n0x8EA3BABB\t0x55AF\n0x8EA3BABC\t0x557A\n0x8EA3BABD\t0x35C1\n0x8EA3BABE\t0x35BE\n0x8EA3BABF\t0x35CD\n0x8EA3BAC0\t0x559E\n0x8EA3BAC1\t0x35CB\n0x8EA3BAC2\t0x55A9\n0x8EA3BAC3\t0x570F\n0x8EA3BAC4\t0x570E\n0x8EA3BAC5\t0x581A\n0x8EA3BAC6\t0x364F\n0x8EA3BAC7\t0x581F\n0x8EA3BAC8\t0x3653\n0x8EA3BAC9\t0x583C\n0x8EA3BACA\t0x5818\n0x8EA3BACB\t0x583E\n0x8EA3BACC\t0x5826\n0x8EA3BACD\t0x3655\n0x8EA3BACE\t0x583A\n0x8EA3BACF\t0x21364\n0x8EA3BAD0\t0x5822\n0x8EA3BAD1\t0x3651\n0x8EA3BAD2\t0x58FB\n0x8EA3BAD3\t0x5963\n0x8EA3BAD4\t0x5964\n0x8EA3BAD5\t0x369F\n0x8EA3BAD6\t0x5AA8\n0x8EA3BAD7\t0x5AA3\n0x8EA3BAD8\t0x5A82\n0x8EA3BAD9\t0x5A88\n0x8EA3BADA\t0x5AA1\n0x8EA3BADB\t0x5A85\n0x8EA3BADC\t0x5A98\n0x8EA3BADD\t0x36FE\n0x8EA3BADE\t0x5A99\n0x8EA3BADF\t0x36FB\n0x8EA3BAE0\t0x5A89\n0x8EA3BAE1\t0x5A81\n0x8EA3BAE2\t0x5A96\n0x8EA3BAE3\t0x5A80\n0x8EA3BAE4\t0x36F1\n0x8EA3BAE5\t0x36F5\n0x8EA3BAE6\t0x5A91\n0x8EA3BAE7\t0x36EF\n0x8EA3BAE8\t0x3704\n0x8EA3BAE9\t0x3703\n0x8EA3BAEA\t0x36F4\n0x8EA3BAEB\t0x5ACF\n0x8EA3BAEC\t0x36F3\n0x8EA3BAED\t0x3702\n0x8EA3BAEE\t0x36F7\n0x8EA3BAEF\t0x36FA\n0x8EA3BAF0\t0x36FD\n0x8EA3BAF1\t0x36EE\n0x8EA3BAF2\t0x5A87\n0x8EA3BAF3\t0x5AA0\n0x8EA3BAF4\t0x36F0\n0x8EA3BAF5\t0x5A79\n0x8EA3BAF6\t0x36F2\n0x8EA3BAF7\t0x5A86\n0x8EA3BAF8\t0x5AAB\n0x8EA3BAF9\t0x5AAA\n0x8EA3BAFA\t0x5AA4\n0x8EA3BAFB\t0x5A8D\n0x8EA3BAFC\t0x5A7E\n0x8EA3BAFD\t0x3744\n0x8EA3BAFE\t0x5BD5\n0x8EA3BBA1\t0x3762\n0x8EA3BBA2\t0x3777\n0x8EA3BBA3\t0x3DC9\n0x8EA3BBA4\t0x5C1E\n0x8EA3BBA5\t0x5C5F\n0x8EA3BBA6\t0x5C5E\n0x8EA3BBA7\t0x5D44\n0x8EA3BBA8\t0x5D3E\n0x8EA3BBA9\t0x37E8\n0x8EA3BBAA\t0x5D48\n0x8EA3BBAB\t0x5D1C\n0x8EA3BBAC\t0x37EF\n0x8EA3BBAD\t0x5D5B\n0x8EA3BBAE\t0x5D4D\n0x8EA3BBAF\t0x37E6\n0x8EA3BBB0\t0x37ED\n0x8EA3BBB1\t0x5D57\n0x8EA3BBB2\t0x37E7\n0x8EA3BBB3\t0x5D53\n0x8EA3BBB4\t0x5D4F\n0x8EA3BBB5\t0x37EB\n0x8EA3BBB6\t0x5D3B\n0x8EA3BBB7\t0x5D46\n0x8EA3BBB8\t0x382D\n0x8EA3BBB9\t0x3855\n0x8EA3BBBA\t0x5E46\n0x8EA3BBBB\t0x5E47\n0x8EA3BBBC\t0x3853\n0x8EA3BBBD\t0x5E48\n0x8EA3BBBE\t0x5EC0\n0x8EA3BBBF\t0x5EBD\n0x8EA3BBC0\t0x5EBF\n0x8EA3BBC1\t0x3890\n0x8EA3BBC2\t0x5F11\n0x8EA3BBC3\t0x38BE\n0x8EA3BBC4\t0x5F3E\n0x8EA3BBC5\t0x5F3B\n0x8EA3BBC6\t0x38BD\n0x8EA3BBC7\t0x5F3A\n0x8EA3BBC8\t0x38CF\n0x8EA3BBC9\t0x38D0\n0x8EA3BBCA\t0x38EC\n0x8EA3BBCB\t0x5FA7\n0x8EA3BBCC\t0x394B\n0x8EA3BBCD\t0x60EA\n0x8EA3BBCE\t0x3948\n0x8EA3BBCF\t0x6107\n0x8EA3BBD0\t0x6122\n0x8EA3BBD1\t0x610C\n0x8EA3BBD2\t0x3955\n0x8EA3BBD3\t0x3951\n0x8EA3BBD4\t0x60B3\n0x8EA3BBD5\t0x60D6\n0x8EA3BBD6\t0x60D2\n0x8EA3BBD7\t0x394E\n0x8EA3BBD8\t0x60E3\n0x8EA3BBD9\t0x60E5\n0x8EA3BBDA\t0x60E9\n0x8EA3BBDB\t0x396B\n0x8EA3BBDC\t0x395E\n0x8EA3BBDD\t0x6111\n0x8EA3BBDE\t0x60FD\n0x8EA3BBDF\t0x3960\n0x8EA3BBE0\t0x3967\n0x8EA3BBE1\t0x611E\n0x8EA3BBE2\t0x6120\n0x8EA3BBE3\t0x6121\n0x8EA3BBE4\t0x621E\n0x8EA3BBE5\t0x39B8\n0x8EA3BBE6\t0x63E2\n0x8EA3BBE7\t0x63DE\n0x8EA3BBE8\t0x63E6\n0x8EA3BBE9\t0x3A14\n0x8EA3BBEA\t0x3A0F\n0x8EA3BBEB\t0x3A07\n0x8EA3BBEC\t0x3A13\n0x8EA3BBED\t0x63F8\n0x8EA3BBEE\t0x3A17\n0x8EA3BBEF\t0x63FE\n0x8EA3BBF0\t0x63C1\n0x8EA3BBF1\t0x63BF\n0x8EA3BBF2\t0x63F7\n0x8EA3BBF3\t0x63D1\n0x8EA3BBF4\t0x655F\n0x8EA3BBF5\t0x6560\n0x8EA3BBF6\t0x6561\n0x8EA3BBF7\t0x3A9A\n0x8EA3BBF8\t0x3AB8\n0x8EA3BBF9\t0x65D1\n0x8EA3BBFA\t0x3AF7\n0x8EA3BBFB\t0x3AF8\n0x8EA3BBFC\t0x667D\n0x8EA3BBFD\t0x666B\n0x8EA3BBFE\t0x667F\n0x8EA3BCA1\t0x3AFD\n0x8EA3BCA2\t0x3AF5\n0x8EA3BCA3\t0x6673\n0x8EA3BCA4\t0x6681\n0x8EA3BCA5\t0x666D\n0x8EA3BCA6\t0x6669\n0x8EA3BCA7\t0x3AFA\n0x8EA3BCA8\t0x3B38\n0x8EA3BCA9\t0x671E\n0x8EA3BCAA\t0x68ED\n0x8EA3BCAB\t0x3B87\n0x8EA3BCAC\t0x3B80\n0x8EA3BCAD\t0x3B88\n0x8EA3BCAE\t0x3B79\n0x8EA3BCAF\t0x6903\n0x8EA3BCB0\t0x3B7C\n0x8EA3BCB1\t0x68FE\n0x8EA3BCB2\t0x68E5\n0x8EA3BCB3\t0x691E\n0x8EA3BCB4\t0x6902\n0x8EA3BCB5\t0x3B83\n0x8EA3BCB6\t0x3B85\n0x8EA3BCB7\t0x6909\n0x8EA3BCB8\t0x68CA\n0x8EA3BCB9\t0x6900\n0x8EA3BCBA\t0x2F8E5\n0x8EA3BCBB\t0x6901\n0x8EA3BCBC\t0x6918\n0x8EA3BCBD\t0x68E2\n0x8EA3BCBE\t0x68CF\n0x8EA3BCBF\t0x3B7B\n0x8EA3BCC0\t0x692E\n0x8EA3BCC1\t0x68C5\n0x8EA3BCC2\t0x68FF\n0x8EA3BCC3\t0x3B86\n0x8EA3BCC4\t0x691C\n0x8EA3BCC5\t0x68C3\n0x8EA3BCC6\t0x3C34\n0x8EA3BCC7\t0x6B6F\n0x8EA3BCC8\t0x3C55\n0x8EA3BCC9\t0x6B6E\n0x8EA3BCCA\t0x3C68\n0x8EA3BCCB\t0x6BBE\n0x8EA3BCCC\t0x3C9C\n0x8EA3BCCD\t0x6BF4\n0x8EA3BCCE\t0x6C2D\n0x8EA3BCCF\t0x3CFC\n0x8EA3BCD0\t0x6DB6\n0x8EA3BCD1\t0x6E75\n0x8EA3BCD2\t0x6E1E\n0x8EA3BCD3\t0x3D1A\n0x8EA3BCD4\t0x6E18\n0x8EA3BCD5\t0x3D17\n0x8EA3BCD6\t0x6E48\n0x8EA3BCD7\t0x3D1B\n0x8EA3BCD8\t0x6E4F\n0x8EA3BCD9\t0x3D13\n0x8EA3BCDA\t0x6E42\n0x8EA3BCDB\t0x6E6A\n0x8EA3BCDC\t0x6E70\n0x8EA3BCDD\t0x6DFE\n0x8EA3BCDE\t0x3D05\n0x8EA3BCDF\t0x3D07\n0x8EA3BCE0\t0x6E6D\n0x8EA3BCE1\t0x3D1C\n0x8EA3BCE2\t0x6E7B\n0x8EA3BCE3\t0x6E7E\n0x8EA3BCE4\t0x6E59\n0x8EA3BCE5\t0x3D11\n0x8EA3BCE6\t0x6E57\n0x8EA3BCE7\t0x3D16\n0x8EA3BCE8\t0x6E80\n0x8EA3BCE9\t0x6E50\n0x8EA3BCEA\t0x3D15\n0x8EA3BCEB\t0x6E29\n0x8EA3BCEC\t0x6E76\n0x8EA3BCED\t0x6E2A\n0x8EA3BCEE\t0x6E4C\n0x8EA3BCEF\t0x712A\n0x8EA3BCF0\t0x3DCB\n0x8EA3BCF1\t0x7135\n0x8EA3BCF2\t0x712C\n0x8EA3BCF3\t0x7137\n0x8EA3BCF4\t0x711D\n0x8EA3BCF5\t0x3DC5\n0x8EA3BCF6\t0x3DC2\n0x8EA3BCF7\t0x7138\n0x8EA3BCF8\t0x3DCD\n0x8EA3BCF9\t0x7134\n0x8EA3BCFA\t0x712B\n0x8EA3BCFB\t0x7133\n0x8EA3BCFC\t0x7127\n0x8EA3BCFD\t0x7124\n0x8EA3BCFE\t0x3DCA\n0x8EA3BDA1\t0x712D\n0x8EA3BDA2\t0x7232\n0x8EA3BDA3\t0x7283\n0x8EA3BDA4\t0x7282\n0x8EA3BDA5\t0x7287\n0x8EA3BDA6\t0x7306\n0x8EA3BDA7\t0x7324\n0x8EA3BDA8\t0x7338\n0x8EA3BDA9\t0x732A\n0x8EA3BDAA\t0x732C\n0x8EA3BDAB\t0x732B\n0x8EA3BDAC\t0x3E83\n0x8EA3BDAD\t0x732F\n0x8EA3BDAE\t0x7328\n0x8EA3BDAF\t0x7417\n0x8EA3BDB0\t0x3ED6\n0x8EA3BDB1\t0x3ED5\n0x8EA3BDB2\t0x7419\n0x8EA3BDB3\t0x7438\n0x8EA3BDB4\t0x3ED1\n0x8EA3BDB5\t0x741F\n0x8EA3BDB6\t0x7414\n0x8EA3BDB7\t0x743C\n0x8EA3BDB8\t0x73F7\n0x8EA3BDB9\t0x741C\n0x8EA3BDBA\t0x7415\n0x8EA3BDBB\t0x7418\n0x8EA3BDBC\t0x7439\n0x8EA3BDBD\t0x74F9\n0x8EA3BDBE\t0x7524\n0x8EA3BDBF\t0x2F934\n0x8EA3BDC0\t0x3F52\n0x8EA3BDC1\t0x3F5F\n0x8EA3BDC2\t0x756E\n0x8EA3BDC3\t0x756D\n0x8EA3BDC4\t0x7571\n0x8EA3BDC5\t0x758E\n0x8EA3BDC6\t0x3F95\n0x8EA3BDC7\t0x75E5\n0x8EA3BDC8\t0x3F9D\n0x8EA3BDC9\t0x3F98\n0x8EA3BDCA\t0x3F9E\n0x8EA3BDCB\t0x3F96\n0x8EA3BDCC\t0x7694\n0x8EA3BDCD\t0x76B3\n0x8EA3BDCE\t0x4003\n0x8EA3BDCF\t0x76D9\n0x8EA3BDD0\t0x402F\n0x8EA3BDD1\t0x7748\n0x8EA3BDD2\t0x7749\n0x8EA3BDD3\t0x7743\n0x8EA3BDD4\t0x4031\n0x8EA3BDD5\t0x4033\n0x8EA3BDD6\t0x7742\n0x8EA3BDD7\t0x77DF\n0x8EA3BDD8\t0x40B4\n0x8EA3BDD9\t0x7863\n0x8EA3BDDA\t0x7876\n0x8EA3BDDB\t0x40B0\n0x8EA3BDDC\t0x785F\n0x8EA3BDDD\t0x7866\n0x8EA3BDDE\t0x7966\n0x8EA3BDDF\t0x7971\n0x8EA3BDE0\t0x4108\n0x8EA3BDE1\t0x4107\n0x8EA3BDE2\t0x7976\n0x8EA3BDE3\t0x7984\n0x8EA3BDE4\t0x7975\n0x8EA3BDE5\t0x79FF\n0x8EA3BDE6\t0x7A07\n0x8EA3BDE7\t0x414E\n0x8EA3BDE8\t0x7A0E\n0x8EA3BDE9\t0x7A09\n0x8EA3BDEA\t0x4150\n0x8EA3BDEB\t0x4152\n0x8EA3BDEC\t0x41A1\n0x8EA3BDED\t0x41A3\n0x8EA3BDEE\t0x41A5\n0x8EA3BDEF\t0x41CC\n0x8EA3BDF0\t0x7AE7\n0x8EA3BDF1\t0x7AE2\n0x8EA3BDF2\t0x7B55\n0x8EA3BDF3\t0x41EF\n0x8EA3BDF4\t0x41EA\n0x8EA3BDF5\t0x7B43\n0x8EA3BDF6\t0x7B57\n0x8EA3BDF7\t0x7B6C\n0x8EA3BDF8\t0x7B42\n0x8EA3BDF9\t0x7B53\n0x8EA3BDFA\t0x41ED\n0x8EA3BDFB\t0x7B41\n0x8EA3BDFC\t0x4285\n0x8EA3BDFD\t0x4284\n0x8EA3BDFE\t0x7CA7\n0x8EA3BEA1\t0x7CA0\n0x8EA3BEA2\t0x7CA6\n0x8EA3BEA3\t0x7CA4\n0x8EA3BEA4\t0x7D74\n0x8EA3BEA5\t0x42DB\n0x8EA3BEA6\t0x7D59\n0x8EA3BEA7\t0x42D9\n0x8EA3BEA8\t0x7D60\n0x8EA3BEA9\t0x7D57\n0x8EA3BEAA\t0x7D6C\n0x8EA3BEAB\t0x7D7E\n0x8EA3BEAC\t0x7D64\n0x8EA3BEAD\t0x42D7\n0x8EA3BEAE\t0x7D5A\n0x8EA3BEAF\t0x7D5D\n0x8EA3BEB0\t0x42DA\n0x8EA3BEB1\t0x42DE\n0x8EA3BEB2\t0x42D8\n0x8EA3BEB3\t0x7D76\n0x8EA3BEB4\t0x7D4D\n0x8EA3BEB5\t0x7D75\n0x8EA3BEB6\t0x42D5\n0x8EA3BEB7\t0x7FD3\n0x8EA3BEB8\t0x7FD6\n0x8EA3BEB9\t0x439C\n0x8EA3BEBA\t0x439D\n0x8EA3BEBB\t0x8060\n0x8EA3BEBC\t0x804E\n0x8EA3BEBD\t0x8145\n0x8EA3BEBE\t0x813B\n0x8EA3BEBF\t0x43FE\n0x8EA3BEC0\t0x8148\n0x8EA3BEC1\t0x8142\n0x8EA3BEC2\t0x8149\n0x8EA3BEC3\t0x8140\n0x8EA3BEC4\t0x8114\n0x8EA3BEC5\t0x8141\n0x8EA3BEC6\t0x4407\n0x8EA3BEC7\t0x81EF\n0x8EA3BEC8\t0x81F6\n0x8EA3BEC9\t0x8203\n0x8EA3BECA\t0x446A\n0x8EA3BECB\t0x83ED\n0x8EA3BECC\t0x44E7\n0x8EA3BECD\t0x83DA\n0x8EA3BECE\t0x8418\n0x8EA3BECF\t0x83D2\n0x8EA3BED0\t0x8408\n0x8EA3BED1\t0x44E2\n0x8EA3BED2\t0x8400\n0x8EA3BED3\t0x44DF\n0x8EA3BED4\t0x44E1\n0x8EA3BED5\t0x44E5\n0x8EA3BED6\t0x8417\n0x8EA3BED7\t0x8346\n0x8EA3BED8\t0x8414\n0x8EA3BED9\t0x83D3\n0x8EA3BEDA\t0x8405\n0x8EA3BEDB\t0x841F\n0x8EA3BEDC\t0x8402\n0x8EA3BEDD\t0x8416\n0x8EA3BEDE\t0x83CD\n0x8EA3BEDF\t0x83E6\n0x8EA3BEE0\t0x4591\n0x8EA3BEE1\t0x865D\n0x8EA3BEE2\t0x86D5\n0x8EA3BEE3\t0x86E1\n0x8EA3BEE4\t0x45B4\n0x8EA3BEE5\t0x45B0\n0x8EA3BEE6\t0x45B5\n0x8EA3BEE7\t0x45AE\n0x8EA3BEE8\t0x86EE\n0x8EA3BEE9\t0x8847\n0x8EA3BEEA\t0x8846\n0x8EA3BEEB\t0x462D\n0x8EA3BEEC\t0x462C\n0x8EA3BEED\t0x88BB\n0x8EA3BEEE\t0x462B\n0x8EA3BEEF\t0x88BF\n0x8EA3BEF0\t0x88B4\n0x8EA3BEF1\t0x4629\n0x8EA3BEF2\t0x88B5\n0x8EA3BEF3\t0x467F\n0x8EA3BEF4\t0x899A\n0x8EA3BEF5\t0x8A43\n0x8EA3BEF6\t0x46C9\n0x8EA3BEF7\t0x46CB\n0x8EA3BEF8\t0x8A5A\n0x8EA3BEF9\t0x46C5\n0x8EA3BEFA\t0x46C6\n0x8EA3BEFB\t0x46CA\n0x8EA3BEFC\t0x8A35\n0x8EA3BEFD\t0x8A38\n0x8EA3BEFE\t0x8A42\n0x8EA3BFA1\t0x8A49\n0x8EA3BFA2\t0x8A5D\n0x8EA3BFA3\t0x8A4B\n0x8EA3BFA4\t0x8A3D\n0x8EA3BFA5\t0x46D2\n0x8EA3BFA6\t0x46D0\n0x8EA3BFA7\t0x472D\n0x8EA3BFA8\t0x4735\n0x8EA3BFA9\t0x8C60\n0x8EA3BFAA\t0x8C5E\n0x8EA3BFAB\t0x8C7F\n0x8EA3BFAC\t0x8C7E\n0x8EA3BFAD\t0x8C83\n0x8EA3BFAE\t0x476C\n0x8EA3BFAF\t0x8CB1\n0x8EA3BFB0\t0x8D87\n0x8EA3BFB1\t0x479D\n0x8EA3BFB2\t0x47A0\n0x8EA3BFB3\t0x8D88\n0x8EA3BFB4\t0x8D83\n0x8EA3BFB5\t0x47A2\n0x8EA3BFB6\t0x479F\n0x8EA3BFB7\t0x8D86\n0x8EA3BFB8\t0x8D8B\n0x8EA3BFB9\t0x8D82\n0x8EA3BFBA\t0x8DCA\n0x8EA3BFBB\t0x8DD2\n0x8EA3BFBC\t0x47EB\n0x8EA3BFBD\t0x47E2\n0x8EA3BFBE\t0x8DD4\n0x8EA3BFBF\t0x8DC9\n0x8EA3BFC0\t0x8EB0\n0x8EA3BFC1\t0x4836\n0x8EA3BFC2\t0x4832\n0x8EA3BFC3\t0x4850\n0x8EA3BFC4\t0x8EF2\n0x8EA3BFC5\t0x8EE4\n0x8EA3BFC6\t0x8EF3\n0x8EA3BFC7\t0x8EEA\n0x8EA3BFC8\t0x484F\n0x8EA3BFC9\t0x8EFD\n0x8EA3BFCA\t0x4852\n0x8EA3BFCB\t0x8F9D\n0x8EA3BFCC\t0x902B\n0x8EA3BFCD\t0x902A\n0x8EA3BFCE\t0x489E\n0x8EA3BFCF\t0x9028\n0x8EA3BFD0\t0x9029\n0x8EA3BFD1\t0x902C\n0x8EA3BFD2\t0x48A0\n0x8EA3BFD3\t0x489C\n0x8EA3BFD4\t0x903A\n0x8EA3BFD5\t0x9030\n0x8EA3BFD6\t0x9037\n0x8EA3BFD7\t0x903B\n0x8EA3BFD8\t0x48D1\n0x8EA3BFD9\t0x910A\n0x8EA3BFDA\t0x48EF\n0x8EA3BFDB\t0x48F0\n0x8EA3BFDC\t0x48F1\n0x8EA3BFDD\t0x91FE\n0x8EA3BFDE\t0x9220\n0x8EA3BFDF\t0x491D\n0x8EA3BFE0\t0x920B\n0x8EA3BFE1\t0x491F\n0x8EA3BFE2\t0x9218\n0x8EA3BFE3\t0x9222\n0x8EA3BFE4\t0x491E\n0x8EA3BFE5\t0x921B\n0x8EA3BFE6\t0x9208\n0x8EA3BFE7\t0x4920\n0x8EA3BFE8\t0x920E\n0x8EA3BFE9\t0x9213\n0x8EA3BFEA\t0x498E\n0x8EA3BFEB\t0x4991\n0x8EA3BFEC\t0x9595\n0x8EA3BFED\t0x28CDD\n0x8EA3BFEE\t0x4990\n0x8EA3BFEF\t0x49D7\n0x8EA3BFF0\t0x968C\n0x8EA3BFF1\t0x967B\n0x8EA3BFF2\t0x967F\n0x8EA3BFF3\t0x9681\n0x8EA3BFF4\t0x49D9\n0x8EA3BFF5\t0x9682\n0x8EA3BFF6\t0x49F4\n0x8EA3BFF7\t0x49F6\n0x8EA3BFF8\t0x3560\n0x8EA3BFF9\t0x49F5\n0x8EA3BFFA\t0x49F3\n0x8EA3BFFB\t0x96EE\n0x8EA3BFFC\t0x96ED\n0x8EA3BFFD\t0x4A0C\n0x8EA3BFFE\t0x96EC\n0x8EA3C0A1\t0x975F\n0x8EA3C0A2\t0x976F\n0x8EA3C0A3\t0x4A51\n0x8EA3C0A4\t0x976D\n0x8EA3C0A5\t0x4AA6\n0x8EA3C0A6\t0x4AA7\n0x8EA3C0A7\t0x4AA8\n0x8EA3C0A8\t0x4B27\n0x8EA3C0A9\t0x4B24\n0x8EA3C0AA\t0x4B25\n0x8EA3C0AB\t0x98F0\n0x8EA3C0AC\t0x4B2A\n0x8EA3C0AD\t0x4B74\n0x8EA3C0AE\t0x4BC7\n0x8EA3C0AF\t0x9AA9\n0x8EA3C0B0\t0x4BE7\n0x8EA3C0B1\t0x4BED\n0x8EA3C0B2\t0x9AE0\n0x8EA3C0B3\t0x4EB7\n0x8EA3C0B4\t0x342E\n0x8EA3C0B5\t0x347B\n0x8EA3C0B6\t0x50CC\n0x8EA3C0B7\t0x50BC\n0x8EA3C0B8\t0x347C\n0x8EA3C0B9\t0x50AA\n0x8EA3C0BA\t0x50B9\n0x8EA3C0BB\t0x347D\n0x8EA3C0BC\t0x50AB\n0x8EA3C0BD\t0x50C3\n0x8EA3C0BE\t0x50CD\n0x8EA3C0BF\t0x517E\n0x8EA3C0C0\t0x527E\n0x8EA3C0C1\t0x5279\n0x8EA3C0C2\t0x34FD\n0x8EA3C0C3\t0x2F823\n0x8EA3C0C4\t0x52E1\n0x8EA3C0C5\t0x52E0\n0x8EA3C0C6\t0x52E7\n0x8EA3C0C7\t0x5380\n0x8EA3C0C8\t0x53AB\n0x8EA3C0C9\t0x53AA\n0x8EA3C0CA\t0x53A9\n0x8EA3C0CB\t0x53E0\n0x8EA3C0CC\t0x55EA\n0x8EA3C0CD\t0x35DA\n0x8EA3C0CE\t0x55D7\n0x8EA3C0CF\t0x35D6\n0x8EA3C0D0\t0x35DB\n0x8EA3C0D1\t0x55C1\n0x8EA3C0D2\t0x5715\n0x8EA3C0D3\t0x365B\n0x8EA3C0D4\t0x586C\n0x8EA3C0D5\t0x365C\n0x8EA3C0D6\t0x585C\n0x8EA3C0D7\t0x5850\n0x8EA3C0D8\t0x5861\n0x8EA3C0D9\t0x586A\n0x8EA3C0DA\t0x5869\n0x8EA3C0DB\t0x5856\n0x8EA3C0DC\t0x5860\n0x8EA3C0DD\t0x5866\n0x8EA3C0DE\t0x585F\n0x8EA3C0DF\t0x5923\n0x8EA3C0E0\t0x5966\n0x8EA3C0E1\t0x5968\n0x8EA3C0E2\t0x3706\n0x8EA3C0E3\t0x370B\n0x8EA3C0E4\t0x5ACE\n0x8EA3C0E5\t0x370D\n0x8EA3C0E6\t0x5AC5\n0x8EA3C0E7\t0x5AC3\n0x8EA3C0E8\t0x370A\n0x8EA3C0E9\t0x3713\n0x8EA3C0EA\t0x5AD0\n0x8EA3C0EB\t0x3710\n0x8EA3C0EC\t0x3712\n0x8EA3C0ED\t0x3709\n0x8EA3C0EE\t0x3708\n0x8EA3C0EF\t0x3711\n0x8EA3C0F0\t0x370F\n0x8EA3C0F1\t0x5B74\n0x8EA3C0F2\t0x5B76\n0x8EA3C0F3\t0x5BDC\n0x8EA3C0F4\t0x5BD7\n0x8EA3C0F5\t0x5BDA\n0x8EA3C0F6\t0x5BDB\n0x8EA3C0F7\t0x3767\n0x8EA3C0F8\t0x5C20\n0x8EA3C0F9\t0x5D6D\n0x8EA3C0FA\t0x5D66\n0x8EA3C0FB\t0x37F6\n0x8EA3C0FC\t0x5D64\n0x8EA3C0FD\t0x5D6E\n0x8EA3C0FE\t0x2F87E\n0x8EA3C1A1\t0x5D60\n0x8EA3C1A2\t0x5F42\n0x8EA3C1A3\t0x5F5A\n0x8EA3C1A4\t0x5F6E\n0x8EA3C1A5\t0x3964\n0x8EA3C1A6\t0x396C\n0x8EA3C1A7\t0x6130\n0x8EA3C1A8\t0x613A\n0x8EA3C1A9\t0x612A\n0x8EA3C1AA\t0x6143\n0x8EA3C1AB\t0x6119\n0x8EA3C1AC\t0x6131\n0x8EA3C1AD\t0x396D\n0x8EA3C1AE\t0x613D\n0x8EA3C1AF\t0x397A\n0x8EA3C1B0\t0x3975\n0x8EA3C1B1\t0x3A0D\n0x8EA3C1B2\t0x6408\n0x8EA3C1B3\t0x6432\n0x8EA3C1B4\t0x6438\n0x8EA3C1B5\t0x3A1E\n0x8EA3C1B6\t0x6431\n0x8EA3C1B7\t0x3A1B\n0x8EA3C1B8\t0x6419\n0x8EA3C1B9\t0x3A2A\n0x8EA3C1BA\t0x6411\n0x8EA3C1BB\t0x3A1F\n0x8EA3C1BC\t0x3A22\n0x8EA3C1BD\t0x6429\n0x8EA3C1BE\t0x641D\n0x8EA3C1BF\t0x3A25\n0x8EA3C1C0\t0x3A27\n0x8EA3C1C1\t0x3A29\n0x8EA3C1C2\t0x643C\n0x8EA3C1C3\t0x3A24\n0x8EA3C1C4\t0x6446\n0x8EA3C1C5\t0x6447\n0x8EA3C1C6\t0x3A28\n0x8EA3C1C7\t0x3A26\n0x8EA3C1C8\t0x643A\n0x8EA3C1C9\t0x6407\n0x8EA3C1CA\t0x3A23\n0x8EA3C1CB\t0x656B\n0x8EA3C1CC\t0x3A9F\n0x8EA3C1CD\t0x6570\n0x8EA3C1CE\t0x656D\n0x8EA3C1CF\t0x3AB1\n0x8EA3C1D0\t0x65E4\n0x8EA3C1D1\t0x6693\n0x8EA3C1D2\t0x3B03\n0x8EA3C1D3\t0x3B07\n0x8EA3C1D4\t0x3B0C\n0x8EA3C1D5\t0x3B06\n0x8EA3C1D6\t0x668F\n0x8EA3C1D7\t0x3B04\n0x8EA3C1D8\t0x3B09\n0x8EA3C1D9\t0x6692\n0x8EA3C1DA\t0x3B05\n0x8EA3C1DB\t0x668E\n0x8EA3C1DC\t0x3B08\n0x8EA3C1DD\t0x6946\n0x8EA3C1DE\t0x3B96\n0x8EA3C1DF\t0x3B9C\n0x8EA3C1E0\t0x3B9F\n0x8EA3C1E1\t0x3B9B\n0x8EA3C1E2\t0x3B98\n0x8EA3C1E3\t0x3B99\n0x8EA3C1E4\t0x3B94\n0x8EA3C1E5\t0x6931\n0x8EA3C1E6\t0x3B8D\n0x8EA3C1E7\t0x3BA3\n0x8EA3C1E8\t0x693E\n0x8EA3C1E9\t0x3B93\n0x8EA3C1EA\t0x697C\n0x8EA3C1EB\t0x6943\n0x8EA3C1EC\t0x3B92\n0x8EA3C1ED\t0x6973\n0x8EA3C1EE\t0x2F8E8\n0x8EA3C1EF\t0x6955\n0x8EA3C1F0\t0x3B8E\n0x8EA3C1F1\t0x3B8C\n0x8EA3C1F2\t0x6985\n0x8EA3C1F3\t0x694D\n0x8EA3C1F4\t0x6950\n0x8EA3C1F5\t0x6947\n0x8EA3C1F6\t0x6967\n0x8EA3C1F7\t0x6936\n0x8EA3C1F8\t0x6964\n0x8EA3C1F9\t0x6961\n0x8EA3C1FA\t0x3B9A\n0x8EA3C1FB\t0x697D\n0x8EA3C1FC\t0x6B44\n0x8EA3C1FD\t0x6B40\n0x8EA3C1FE\t0x6B71\n0x8EA3C2A1\t0x6B73\n0x8EA3C2A2\t0x6B9C\n0x8EA3C2A3\t0x3C6A\n0x8EA3C2A4\t0x3C6D\n0x8EA3C2A5\t0x3C84\n0x8EA3C2A6\t0x6BC1\n0x8EA3C2A7\t0x3CA0\n0x8EA3C2A8\t0x6BFA\n0x8EA3C2A9\t0x6C31\n0x8EA3C2AA\t0x6C32\n0x8EA3C2AB\t0x3D1D\n0x8EA3C2AC\t0x3D26\n0x8EA3C2AD\t0x6EB8\n0x8EA3C2AE\t0x6EA8\n0x8EA3C2AF\t0x3D33\n0x8EA3C2B0\t0x6E91\n0x8EA3C2B1\t0x6EBB\n0x8EA3C2B2\t0x3D38\n0x8EA3C2B3\t0x6E9A\n0x8EA3C2B4\t0x3D30\n0x8EA3C2B5\t0x3D28\n0x8EA3C2B6\t0x6EA9\n0x8EA3C2B7\t0x3D27\n0x8EA3C2B8\t0x3D2A\n0x8EA3C2B9\t0x6EB5\n0x8EA3C2BA\t0x6E6C\n0x8EA3C2BB\t0x6EE8\n0x8EA3C2BC\t0x3D31\n0x8EA3C2BD\t0x6EDD\n0x8EA3C2BE\t0x6EDA\n0x8EA3C2BF\t0x6EE6\n0x8EA3C2C0\t0x6EAC\n0x8EA3C2C1\t0x3D34\n0x8EA3C2C2\t0x3D2E\n0x8EA3C2C3\t0x3D3B\n0x8EA3C2C4\t0x6ED9\n0x8EA3C2C5\t0x6EE3\n0x8EA3C2C6\t0x6EE9\n0x8EA3C2C7\t0x6EDB\n0x8EA3C2C8\t0x3D29\n0x8EA3C2C9\t0x716F\n0x8EA3C2CA\t0x3DD2\n0x8EA3C2CB\t0x3DD8\n0x8EA3C2CC\t0x7148\n0x8EA3C2CD\t0x3DCF\n0x8EA3C2CE\t0x714A\n0x8EA3C2CF\t0x716B\n0x8EA3C2D0\t0x3DD9\n0x8EA3C2D1\t0x714F\n0x8EA3C2D2\t0x7157\n0x8EA3C2D3\t0x7174\n0x8EA3C2D4\t0x3DCE\n0x8EA3C2D5\t0x3DD3\n0x8EA3C2D6\t0x3DD0\n0x8EA3C2D7\t0x7145\n0x8EA3C2D8\t0x7151\n0x8EA3C2D9\t0x716D\n0x8EA3C2DA\t0x3BA1\n0x8EA3C2DB\t0x7251\n0x8EA3C2DC\t0x7250\n0x8EA3C2DD\t0x724E\n0x8EA3C2DE\t0x3E47\n0x8EA3C2DF\t0x7341\n0x8EA3C2E0\t0x3E8B\n0x8EA3C2E1\t0x732E\n0x8EA3C2E2\t0x7346\n0x8EA3C2E3\t0x3ED4\n0x8EA3C2E4\t0x7427\n0x8EA3C2E5\t0x3EDE\n0x8EA3C2E6\t0x7448\n0x8EA3C2E7\t0x7453\n0x8EA3C2E8\t0x743D\n0x8EA3C2E9\t0x3EDF\n0x8EA3C2EA\t0x745D\n0x8EA3C2EB\t0x7456\n0x8EA3C2EC\t0x3ED7\n0x8EA3C2ED\t0x741E\n0x8EA3C2EE\t0x7447\n0x8EA3C2EF\t0x7443\n0x8EA3C2F0\t0x7458\n0x8EA3C2F1\t0x7449\n0x8EA3C2F2\t0x3EE1\n0x8EA3C2F3\t0x744C\n0x8EA3C2F4\t0x7445\n0x8EA3C2F5\t0x743E\n0x8EA3C2F6\t0x3F2F\n0x8EA3C2F7\t0x7501\n0x8EA3C2F8\t0x751E\n0x8EA3C2F9\t0x3F62\n0x8EA3C2FA\t0x3F63\n0x8EA3C2FB\t0x757A\n0x8EA3C2FC\t0x75EE\n0x8EA3C2FD\t0x7602\n0x8EA3C2FE\t0x7697\n0x8EA3C3A1\t0x7698\n0x8EA3C3A2\t0x3FE2\n0x8EA3C3A3\t0x4004\n0x8EA3C3A4\t0x4043\n0x8EA3C3A5\t0x775D\n0x8EA3C3A6\t0x7764\n0x8EA3C3A7\t0x7753\n0x8EA3C3A8\t0x7758\n0x8EA3C3A9\t0x7882\n0x8EA3C3AA\t0x7890\n0x8EA3C3AB\t0x788A\n0x8EA3C3AC\t0x40BE\n0x8EA3C3AD\t0x787A\n0x8EA3C3AE\t0x787D\n0x8EA3C3AF\t0x40BA\n0x8EA3C3B0\t0x788B\n0x8EA3C3B1\t0x7878\n0x8EA3C3B2\t0x40BC\n0x8EA3C3B3\t0x2F94E\n0x8EA3C3B4\t0x788D\n0x8EA3C3B5\t0x7888\n0x8EA3C3B6\t0x7892\n0x8EA3C3B7\t0x7881\n0x8EA3C3B8\t0x797E\n0x8EA3C3B9\t0x7983\n0x8EA3C3BA\t0x410D\n0x8EA3C3BB\t0x410E\n0x8EA3C3BC\t0x4111\n0x8EA3C3BD\t0x7980\n0x8EA3C3BE\t0x410F\n0x8EA3C3BF\t0x4112\n0x8EA3C3C0\t0x4155\n0x8EA3C3C1\t0x7A0F\n0x8EA3C3C2\t0x4159\n0x8EA3C3C3\t0x415B\n0x8EA3C3C4\t0x7A1D\n0x8EA3C3C5\t0x4157\n0x8EA3C3C6\t0x7AA1\n0x8EA3C3C7\t0x7AA4\n0x8EA3C3C8\t0x41CE\n0x8EA3C3C9\t0x7AE9\n0x8EA3C3CA\t0x7AEA\n0x8EA3C3CB\t0x41FE\n0x8EA3C3CC\t0x7B62\n0x8EA3C3CD\t0x7B6B\n0x8EA3C3CE\t0x41FC\n0x8EA3C3CF\t0x7B5E\n0x8EA3C3D0\t0x41F5\n0x8EA3C3D1\t0x7B79\n0x8EA3C3D2\t0x41F9\n0x8EA3C3D3\t0x41FA\n0x8EA3C3D4\t0x7B6F\n0x8EA3C3D5\t0x7B68\n0x8EA3C3D6\t0x4288\n0x8EA3C3D7\t0x4289\n0x8EA3C3D8\t0x7CAE\n0x8EA3C3D9\t0x428A\n0x8EA3C3DA\t0x4287\n0x8EA3C3DB\t0x428B\n0x8EA3C3DC\t0x7CB0\n0x8EA3C3DD\t0x42E6\n0x8EA3C3DE\t0x7D90\n0x8EA3C3DF\t0x42ED\n0x8EA3C3E0\t0x7D8A\n0x8EA3C3E1\t0x42E5\n0x8EA3C3E2\t0x7D8B\n0x8EA3C3E3\t0x7D99\n0x8EA3C3E4\t0x7D95\n0x8EA3C3E5\t0x42E0\n0x8EA3C3E6\t0x7D87\n0x8EA3C3E7\t0x7D78\n0x8EA3C3E8\t0x7D97\n0x8EA3C3E9\t0x7D89\n0x8EA3C3EA\t0x7D98\n0x8EA3C3EB\t0x42E1\n0x8EA3C3EC\t0x435B\n0x8EA3C3ED\t0x435C\n0x8EA3C3EE\t0x7FA3\n0x8EA3C3EF\t0x438F\n0x8EA3C3F0\t0x438B\n0x8EA3C3F1\t0x438D\n0x8EA3C3F2\t0x7FDD\n0x8EA3C3F3\t0x8057\n0x8EA3C3F4\t0x43B9\n0x8EA3C3F5\t0x8163\n0x8EA3C3F6\t0x816A\n0x8EA3C3F7\t0x816C\n0x8EA3C3F8\t0x440F\n0x8EA3C3F9\t0x4419\n0x8EA3C3FA\t0x4413\n0x8EA3C3FB\t0x815D\n0x8EA3C3FC\t0x8175\n0x8EA3C3FD\t0x4418\n0x8EA3C3FE\t0x815F\n0x8EA3C4A1\t0x4416\n0x8EA3C4A2\t0x817D\n0x8EA3C4A3\t0x816D\n0x8EA3C4A4\t0x4453\n0x8EA3C4A5\t0x2F98D\n0x8EA3C4A6\t0x8241\n0x8EA3C4A7\t0x844F\n0x8EA3C4A8\t0x8484\n0x8EA3C4A9\t0x44F6\n0x8EA3C4AA\t0x847F\n0x8EA3C4AB\t0x44F5\n0x8EA3C4AC\t0x8448\n0x8EA3C4AD\t0x842A\n0x8EA3C4AE\t0x847B\n0x8EA3C4AF\t0x8472\n0x8EA3C4B0\t0x8464\n0x8EA3C4B1\t0x842E\n0x8EA3C4B2\t0x845C\n0x8EA3C4B3\t0x8453\n0x8EA3C4B4\t0x44F7\n0x8EA3C4B5\t0x8441\n0x8EA3C4B6\t0x84C8\n0x8EA3C4B7\t0x44F0\n0x8EA3C4B8\t0x8462\n0x8EA3C4B9\t0x8480\n0x8EA3C4BA\t0x843E\n0x8EA3C4BB\t0x8483\n0x8EA3C4BC\t0x8471\n0x8EA3C4BD\t0x44F9\n0x8EA3C4BE\t0x844A\n0x8EA3C4BF\t0x8455\n0x8EA3C4C0\t0x8458\n0x8EA3C4C1\t0x4592\n0x8EA3C4C2\t0x4595\n0x8EA3C4C3\t0x4596\n0x8EA3C4C4\t0x86FC\n0x8EA3C4C5\t0x86FD\n0x8EA3C4C6\t0x8715\n0x8EA3C4C7\t0x45B9\n0x8EA3C4C8\t0x8716\n0x8EA3C4C9\t0x86FF\n0x8EA3C4CA\t0x45BD\n0x8EA3C4CB\t0x45B8\n0x8EA3C4CC\t0x4612\n0x8EA3C4CD\t0x8858\n0x8EA3C4CE\t0x88CF\n0x8EA3C4CF\t0x88E0\n0x8EA3C4D0\t0x4680\n0x8EA3C4D1\t0x4681\n0x8EA3C4D2\t0x469A\n0x8EA3C4D3\t0x4698\n0x8EA3C4D4\t0x89E7\n0x8EA3C4D5\t0x8A6A\n0x8EA3C4D6\t0x8A80\n0x8EA3C4D7\t0x46D4\n0x8EA3C4D8\t0x8A6F\n0x8EA3C4D9\t0x8A65\n0x8EA3C4DA\t0x46DA\n0x8EA3C4DB\t0x8A78\n0x8EA3C4DC\t0x8A7D\n0x8EA3C4DD\t0x8A88\n0x8EA3C4DE\t0x46D6\n0x8EA3C4DF\t0x46DB\n0x8EA3C4E0\t0x8A64\n0x8EA3C4E1\t0x8A7E\n0x8EA3C4E2\t0x46DC\n0x8EA3C4E3\t0x8A67\n0x8EA3C4E4\t0x8C63\n0x8EA3C4E5\t0x8C88\n0x8EA3C4E6\t0x4771\n0x8EA3C4E7\t0x8CCD\n0x8EA3C4E8\t0x4772\n0x8EA3C4E9\t0x8CC9\n0x8EA3C4EA\t0x47A8\n0x8EA3C4EB\t0x8DED\n0x8EA3C4EC\t0x47F0\n0x8EA3C4ED\t0x2F9DB\n0x8EA3C4EE\t0x47F1\n0x8EA3C4EF\t0x47FD\n0x8EA3C4F0\t0x4838\n0x8EA3C4F1\t0x4837\n0x8EA3C4F2\t0x4839\n0x8EA3C4F3\t0x8EB1\n0x8EA3C4F4\t0x4855\n0x8EA3C4F5\t0x4853\n0x8EA3C4F6\t0x8F04\n0x8EA3C4F7\t0x8F9E\n0x8EA3C4F8\t0x8FA0\n0x8EA3C4F9\t0x9043\n0x8EA3C4FA\t0x9046\n0x8EA3C4FB\t0x9048\n0x8EA3C4FC\t0x9045\n0x8EA3C4FD\t0x9040\n0x8EA3C4FE\t0x904C\n0x8EA3C5A1\t0x48D5\n0x8EA3C5A2\t0x48BD\n0x8EA3C5A3\t0x910C\n0x8EA3C5A4\t0x9113\n0x8EA3C5A5\t0x9115\n0x8EA3C5A6\t0x48F5\n0x8EA3C5A7\t0x916B\n0x8EA3C5A8\t0x9167\n0x8EA3C5A9\t0x925D\n0x8EA3C5AA\t0x9255\n0x8EA3C5AB\t0x9235\n0x8EA3C5AC\t0x4921\n0x8EA3C5AD\t0x9259\n0x8EA3C5AE\t0x922F\n0x8EA3C5AF\t0x923C\n0x8EA3C5B0\t0x928F\n0x8EA3C5B1\t0x925C\n0x8EA3C5B2\t0x926A\n0x8EA3C5B3\t0x9262\n0x8EA3C5B4\t0x925F\n0x8EA3C5B5\t0x926B\n0x8EA3C5B6\t0x926E\n0x8EA3C5B7\t0x923B\n0x8EA3C5B8\t0x9244\n0x8EA3C5B9\t0x9241\n0x8EA3C5BA\t0x959A\n0x8EA3C5BB\t0x4992\n0x8EA3C5BC\t0x9599\n0x8EA3C5BD\t0x49DE\n0x8EA3C5BE\t0x49DB\n0x8EA3C5BF\t0x49DA\n0x8EA3C5C0\t0x968F\n0x8EA3C5C1\t0x49DF\n0x8EA3C5C2\t0x9696\n0x8EA3C5C3\t0x49F9\n0x8EA3C5C4\t0x49F8\n0x8EA3C5C5\t0x49FA\n0x8EA3C5C6\t0x96F4\n0x8EA3C5C7\t0x96FC\n0x8EA3C5C8\t0x4A0E\n0x8EA3C5C9\t0x9755\n0x8EA3C5CA\t0x4A43\n0x8EA3C5CB\t0x9779\n0x8EA3C5CC\t0x4A56\n0x8EA3C5CD\t0x4A53\n0x8EA3C5CE\t0x4A9E\n0x8EA3C5CF\t0x97EE\n0x8EA3C5D0\t0x97F5\n0x8EA3C5D1\t0x4AA9\n0x8EA3C5D2\t0x980B\n0x8EA3C5D3\t0x4AFA\n0x8EA3C5D4\t0x98F3\n0x8EA3C5D5\t0x4B31\n0x8EA3C5D6\t0x4B30\n0x8EA3C5D7\t0x98F7\n0x8EA3C5D8\t0x98FF\n0x8EA3C5D9\t0x98F5\n0x8EA3C5DA\t0x4B32\n0x8EA3C5DB\t0x98EC\n0x8EA3C5DC\t0x98F1\n0x8EA3C5DD\t0x4B29\n0x8EA3C5DE\t0x4B2E\n0x8EA3C5DF\t0x999A\n0x8EA3C5E0\t0x4B76\n0x8EA3C5E1\t0x9AE2\n0x8EA3C5E2\t0x9B3D\n0x8EA3C5E3\t0x9B5D\n0x8EA3C5E4\t0x9CE8\n0x8EA3C5E5\t0x4CA5\n0x8EA3C5E6\t0x9CEB\n0x8EA3C5E7\t0x9CEF\n0x8EA3C5E8\t0x9CEE\n0x8EA3C5E9\t0x9E81\n0x8EA3C5EA\t0x9F14\n0x8EA3C5EB\t0x50D0\n0x8EA3C5EC\t0x50D9\n0x8EA3C5ED\t0x50DC\n0x8EA3C5EE\t0x50D8\n0x8EA3C5EF\t0x348C\n0x8EA3C5F0\t0x50E1\n0x8EA3C5F1\t0x50EB\n0x8EA3C5F2\t0x348B\n0x8EA3C5F3\t0x3489\n0x8EA3C5F4\t0x50F4\n0x8EA3C5F5\t0x50E2\n0x8EA3C5F6\t0x50DE\n0x8EA3C5F7\t0x348D\n0x8EA3C5F8\t0x3486\n0x8EA3C5F9\t0x34D7\n0x8EA3C5FA\t0x51F4\n0x8EA3C5FB\t0x3504\n0x8EA3C5FC\t0x3507\n0x8EA3C5FD\t0x3503\n0x8EA3C5FE\t0x52ED\n0x8EA3C6A1\t0x52EA\n0x8EA3C6A2\t0x3522\n0x8EA3C6A3\t0x5332\n0x8EA3C6A4\t0x3551\n0x8EA3C6A5\t0x53AE\n0x8EA3C6A6\t0x53B0\n0x8EA3C6A7\t0x3561\n0x8EA3C6A8\t0x55FB\n0x8EA3C6A9\t0x5603\n0x8EA3C6AA\t0x560B\n0x8EA3C6AB\t0x35E9\n0x8EA3C6AC\t0x5607\n0x8EA3C6AD\t0x35E5\n0x8EA3C6AE\t0x55F8\n0x8EA3C6AF\t0x35E4\n0x8EA3C6B0\t0x5628\n0x8EA3C6B1\t0x561E\n0x8EA3C6B2\t0x35E3\n0x8EA3C6B3\t0x5618\n0x8EA3C6B4\t0x5611\n0x8EA3C6B5\t0x5651\n0x8EA3C6B6\t0x5605\n0x8EA3C6B7\t0x5717\n0x8EA3C6B8\t0x5892\n0x8EA3C6B9\t0x3665\n0x8EA3C6BA\t0x588C\n0x8EA3C6BB\t0x3663\n0x8EA3C6BC\t0x5878\n0x8EA3C6BD\t0x5884\n0x8EA3C6BE\t0x5873\n0x8EA3C6BF\t0x58AD\n0x8EA3C6C0\t0x5897\n0x8EA3C6C1\t0x5895\n0x8EA3C6C2\t0x5877\n0x8EA3C6C3\t0x5872\n0x8EA3C6C4\t0x5896\n0x8EA3C6C5\t0x588D\n0x8EA3C6C6\t0x5910\n0x8EA3C6C7\t0x368C\n0x8EA3C6C8\t0x596C\n0x8EA3C6C9\t0x371A\n0x8EA3C6CA\t0x5AE7\n0x8EA3C6CB\t0x3715\n0x8EA3C6CC\t0x5AE4\n0x8EA3C6CD\t0x3720\n0x8EA3C6CE\t0x3721\n0x8EA3C6CF\t0x5AEF\n0x8EA3C6D0\t0x5626\n0x8EA3C6D1\t0x371C\n0x8EA3C6D2\t0x371B\n0x8EA3C6D3\t0x5AF0\n0x8EA3C6D4\t0x5D7B\n0x8EA3C6D5\t0x37FE\n0x8EA3C6D6\t0x5D83\n0x8EA3C6D7\t0x3804\n0x8EA3C6D8\t0x3801\n0x8EA3C6D9\t0x5D8B\n0x8EA3C6DA\t0x5D8C\n0x8EA3C6DB\t0x3800\n0x8EA3C6DC\t0x5D78\n0x8EA3C6DD\t0x5E52\n0x8EA3C6DE\t0x386D\n0x8EA3C6DF\t0x3893\n0x8EA3C6E0\t0x5ED0\n0x8EA3C6E1\t0x5ECF\n0x8EA3C6E2\t0x38A1\n0x8EA3C6E3\t0x5FB3\n0x8EA3C6E4\t0x5FB4\n0x8EA3C6E5\t0x3976\n0x8EA3C6E6\t0x3979\n0x8EA3C6E7\t0x3972\n0x8EA3C6E8\t0x617B\n0x8EA3C6E9\t0x3983\n0x8EA3C6EA\t0x616F\n0x8EA3C6EB\t0x6181\n0x8EA3C6EC\t0x613C\n0x8EA3C6ED\t0x6142\n0x8EA3C6EE\t0x6138\n0x8EA3C6EF\t0x6133\n0x8EA3C6F0\t0x2F8A6\n0x8EA3C6F1\t0x6160\n0x8EA3C6F2\t0x6169\n0x8EA3C6F3\t0x617D\n0x8EA3C6F4\t0x6186\n0x8EA3C6F5\t0x622C\n0x8EA3C6F6\t0x6228\n0x8EA3C6F7\t0x3A38\n0x8EA3C6F8\t0x644C\n0x8EA3C6F9\t0x3A30\n0x8EA3C6FA\t0x6457\n0x8EA3C6FB\t0x647C\n0x8EA3C6FC\t0x3A34\n0x8EA3C6FD\t0x3A3A\n0x8EA3C6FE\t0x6455\n0x8EA3C7A1\t0x6462\n0x8EA3C7A2\t0x6471\n0x8EA3C7A3\t0x646A\n0x8EA3C7A4\t0x6456\n0x8EA3C7A5\t0x643B\n0x8EA3C7A6\t0x6481\n0x8EA3C7A7\t0x3A35\n0x8EA3C7A8\t0x644F\n0x8EA3C7A9\t0x647E\n0x8EA3C7AA\t0x6464\n0x8EA3C7AB\t0x3A3F\n0x8EA3C7AC\t0x3A40\n0x8EA3C7AD\t0x3A32\n0x8EA3C7AE\t0x3A31\n0x8EA3C7AF\t0x3A36\n0x8EA3C7B0\t0x6571\n0x8EA3C7B1\t0x230BA\n0x8EA3C7B2\t0x3B0F\n0x8EA3C7B3\t0x66A5\n0x8EA3C7B4\t0x669A\n0x8EA3C7B5\t0x669C\n0x8EA3C7B6\t0x3B10\n0x8EA3C7B7\t0x66A6\n0x8EA3C7B8\t0x3B0D\n0x8EA3C7B9\t0x66A4\n0x8EA3C7BA\t0x698F\n0x8EA3C7BB\t0x69C5\n0x8EA3C7BC\t0x69C8\n0x8EA3C7BD\t0x6992\n0x8EA3C7BE\t0x69B2\n0x8EA3C7BF\t0x3BA9\n0x8EA3C7C0\t0x3BB4\n0x8EA3C7C1\t0x3BAC\n0x8EA3C7C2\t0x69E3\n0x8EA3C7C3\t0x69C0\n0x8EA3C7C4\t0x69D6\n0x8EA3C7C5\t0x69D1\n0x8EA3C7C6\t0x699F\n0x8EA3C7C7\t0x69A2\n0x8EA3C7C8\t0x69D2\n0x8EA3C7C9\t0x3BB8\n0x8EA3C7CA\t0x3BAE\n0x8EA3C7CB\t0x235F3\n0x8EA3C7CC\t0x69E1\n0x8EA3C7CD\t0x69D5\n0x8EA3C7CE\t0x699D\n0x8EA3C7CF\t0x3BB3\n0x8EA3C7D0\t0x3BBA\n0x8EA3C7D1\t0x6998\n0x8EA3C7D2\t0x3C3F\n0x8EA3C7D3\t0x6B74\n0x8EA3C7D4\t0x6BA1\n0x8EA3C7D5\t0x3D3C\n0x8EA3C7D6\t0x6EF0\n0x8EA3C7D7\t0x6EF3\n0x8EA3C7D8\t0x3D42\n0x8EA3C7D9\t0x3D40\n0x8EA3C7DA\t0x6F1B\n0x8EA3C7DB\t0x6F0C\n0x8EA3C7DC\t0x6F1D\n0x8EA3C7DD\t0x6F34\n0x8EA3C7DE\t0x6F28\n0x8EA3C7DF\t0x6F17\n0x8EA3C7E0\t0x3D3E\n0x8EA3C7E1\t0x6F44\n0x8EA3C7E2\t0x6F42\n0x8EA3C7E3\t0x6F04\n0x8EA3C7E4\t0x6F11\n0x8EA3C7E5\t0x6EFA\n0x8EA3C7E6\t0x6F4A\n0x8EA3C7E7\t0x7191\n0x8EA3C7E8\t0x718E\n0x8EA3C7E9\t0x3DE1\n0x8EA3C7EA\t0x718B\n0x8EA3C7EB\t0x718D\n0x8EA3C7EC\t0x717F\n0x8EA3C7ED\t0x718C\n0x8EA3C7EE\t0x717E\n0x8EA3C7EF\t0x717C\n0x8EA3C7F0\t0x7183\n0x8EA3C7F1\t0x3DE6\n0x8EA3C7F2\t0x7188\n0x8EA3C7F3\t0x3DE0\n0x8EA3C7F4\t0x3E15\n0x8EA3C7F5\t0x7294\n0x8EA3C7F6\t0x3E93\n0x8EA3C7F7\t0x7355\n0x8EA3C7F8\t0x7353\n0x8EA3C7F9\t0x734F\n0x8EA3C7FA\t0x7354\n0x8EA3C7FB\t0x746C\n0x8EA3C7FC\t0x7465\n0x8EA3C7FD\t0x7466\n0x8EA3C7FE\t0x7461\n0x8EA3C8A1\t0x746B\n0x8EA3C8A2\t0x7468\n0x8EA3C8A3\t0x7476\n0x8EA3C8A4\t0x3EE7\n0x8EA3C8A5\t0x7460\n0x8EA3C8A6\t0x24A0F\n0x8EA3C8A7\t0x7474\n0x8EA3C8A8\t0x7506\n0x8EA3C8A9\t0x760E\n0x8EA3C8AA\t0x3FAD\n0x8EA3C8AB\t0x7607\n0x8EA3C8AC\t0x3FAE\n0x8EA3C8AD\t0x3FE3\n0x8EA3C8AE\t0x76B9\n0x8EA3C8AF\t0x3FF5\n0x8EA3C8B0\t0x76B7\n0x8EA3C8B1\t0x76E2\n0x8EA3C8B2\t0x4006\n0x8EA3C8B3\t0x7774\n0x8EA3C8B4\t0x7777\n0x8EA3C8B5\t0x7776\n0x8EA3C8B6\t0x7775\n0x8EA3C8B7\t0x404F\n0x8EA3C8B8\t0x7778\n0x8EA3C8B9\t0x7771\n0x8EA3C8BA\t0x4054\n0x8EA3C8BB\t0x777A\n0x8EA3C8BC\t0x715B\n0x8EA3C8BD\t0x777B\n0x8EA3C8BE\t0x78A6\n0x8EA3C8BF\t0x78AE\n0x8EA3C8C0\t0x78B8\n0x8EA3C8C1\t0x40CB\n0x8EA3C8C2\t0x40E3\n0x8EA3C8C3\t0x40C9\n0x8EA3C8C4\t0x78B1\n0x8EA3C8C5\t0x78AF\n0x8EA3C8C6\t0x4113\n0x8EA3C8C7\t0x7989\n0x8EA3C8C8\t0x7987\n0x8EA3C8C9\t0x4115\n0x8EA3C8CA\t0x4161\n0x8EA3C8CB\t0x7A29\n0x8EA3C8CC\t0x4166\n0x8EA3C8CD\t0x7A2A\n0x8EA3C8CE\t0x4164\n0x8EA3C8CF\t0x7A2D\n0x8EA3C8D0\t0x7A2C\n0x8EA3C8D1\t0x4160\n0x8EA3C8D2\t0x7A32\n0x8EA3C8D3\t0x4163\n0x8EA3C8D4\t0x7AEC\n0x8EA3C8D5\t0x7AF0\n0x8EA3C8D6\t0x7B81\n0x8EA3C8D7\t0x7B9E\n0x8EA3C8D8\t0x7B83\n0x8EA3C8D9\t0x420A\n0x8EA3C8DA\t0x7B92\n0x8EA3C8DB\t0x4204\n0x8EA3C8DC\t0x7BA3\n0x8EA3C8DD\t0x7B9F\n0x8EA3C8DE\t0x7B93\n0x8EA3C8DF\t0x4207\n0x8EA3C8E0\t0x7B86\n0x8EA3C8E1\t0x7CB8\n0x8EA3C8E2\t0x7CB7\n0x8EA3C8E3\t0x428D\n0x8EA3C8E4\t0x428F\n0x8EA3C8E5\t0x4290\n0x8EA3C8E6\t0x4292\n0x8EA3C8E7\t0x42EC\n0x8EA3C8E8\t0x7DC8\n0x8EA3C8E9\t0x7DB6\n0x8EA3C8EA\t0x2F96C\n0x8EA3C8EB\t0x7DD1\n0x8EA3C8EC\t0x42E7\n0x8EA3C8ED\t0x7DA8\n0x8EA3C8EE\t0x7DAB\n0x8EA3C8EF\t0x42F2\n0x8EA3C8F0\t0x7DB3\n0x8EA3C8F1\t0x7DCD\n0x8EA3C8F2\t0x42EE\n0x8EA3C8F3\t0x7DCF\n0x8EA3C8F4\t0x7DA4\n0x8EA3C8F5\t0x42EF\n0x8EA3C8F6\t0x434C\n0x8EA3C8F7\t0x7F41\n0x8EA3C8F8\t0x7F6F\n0x8EA3C8F9\t0x7F71\n0x8EA3C8FA\t0x435E\n0x8EA3C8FB\t0x435F\n0x8EA3C8FC\t0x4376\n0x8EA3C8FD\t0x4374\n0x8EA3C8FE\t0x4372\n0x8EA3C9A1\t0x4390\n0x8EA3C9A2\t0x8023\n0x8EA3C9A3\t0x805B\n0x8EA3C9A4\t0x43BE\n0x8EA3C9A5\t0x8061\n0x8EA3C9A6\t0x805F\n0x8EA3C9A7\t0x8181\n0x8EA3C9A8\t0x4426\n0x8EA3C9A9\t0x4425\n0x8EA3C9AA\t0x8184\n0x8EA3C9AB\t0x8213\n0x8EA3C9AC\t0x4474\n0x8EA3C9AD\t0x824A\n0x8EA3C9AE\t0x824C\n0x8EA3C9AF\t0x44FD\n0x8EA3C9B0\t0x4505\n0x8EA3C9B1\t0x4501\n0x8EA3C9B2\t0x84BD\n0x8EA3C9B3\t0x8495\n0x8EA3C9B4\t0x4509\n0x8EA3C9B5\t0x8492\n0x8EA3C9B6\t0x84C3\n0x8EA3C9B7\t0x450C\n0x8EA3C9B8\t0x8496\n0x8EA3C9B9\t0x84A5\n0x8EA3C9BA\t0x84B5\n0x8EA3C9BB\t0x84B3\n0x8EA3C9BC\t0x84A3\n0x8EA3C9BD\t0x84E4\n0x8EA3C9BE\t0x84D8\n0x8EA3C9BF\t0x84D5\n0x8EA3C9C0\t0x450D\n0x8EA3C9C1\t0x84B7\n0x8EA3C9C2\t0x84AD\n0x8EA3C9C3\t0x84DA\n0x8EA3C9C4\t0x8493\n0x8EA3C9C5\t0x8736\n0x8EA3C9C6\t0x45C0\n0x8EA3C9C7\t0x45C5\n0x8EA3C9C8\t0x45C9\n0x8EA3C9C9\t0x873D\n0x8EA3C9CA\t0x872B\n0x8EA3C9CB\t0x8747\n0x8EA3C9CC\t0x8739\n0x8EA3C9CD\t0x45D5\n0x8EA3C9CE\t0x8745\n0x8EA3C9CF\t0x871D\n0x8EA3C9D0\t0x4641\n0x8EA3C9D1\t0x88FF\n0x8EA3C9D2\t0x88EA\n0x8EA3C9D3\t0x4633\n0x8EA3C9D4\t0x88F5\n0x8EA3C9D5\t0x463A\n0x8EA3C9D6\t0x8900\n0x8EA3C9D7\t0x88ED\n0x8EA3C9D8\t0x8903\n0x8EA3C9D9\t0x88E9\n0x8EA3C9DA\t0x4640\n0x8EA3C9DB\t0x4642\n0x8EA3C9DC\t0x89EA\n0x8EA3C9DD\t0x46E8\n0x8EA3C9DE\t0x8A9B\n0x8EA3C9DF\t0x8A8E\n0x8EA3C9E0\t0x8AA2\n0x8EA3C9E1\t0x46E4\n0x8EA3C9E2\t0x8A9C\n0x8EA3C9E3\t0x8A94\n0x8EA3C9E4\t0x8A90\n0x8EA3C9E5\t0x8AA9\n0x8EA3C9E6\t0x8AAC\n0x8EA3C9E7\t0x46E7\n0x8EA3C9E8\t0x8A9F\n0x8EA3C9E9\t0x46E6\n0x8EA3C9EA\t0x46E1\n0x8EA3C9EB\t0x8A9D\n0x8EA3C9EC\t0x4739\n0x8EA3C9ED\t0x8C67\n0x8EA3C9EE\t0x475C\n0x8EA3C9EF\t0x4775\n0x8EA3C9F0\t0x8CD0\n0x8EA3C9F1\t0x8CD6\n0x8EA3C9F2\t0x8CD4\n0x8EA3C9F3\t0x8D98\n0x8EA3C9F4\t0x8D9A\n0x8EA3C9F5\t0x8D97\n0x8EA3C9F6\t0x47AE\n0x8EA3C9F7\t0x47B0\n0x8EA3C9F8\t0x47FA\n0x8EA3C9F9\t0x8E0B\n0x8EA3C9FA\t0x8E08\n0x8EA3C9FB\t0x8E01\n0x8EA3C9FC\t0x8EB4\n0x8EA3C9FD\t0x8EB3\n0x8EA3C9FE\t0x485B\n0x8EA3CAA1\t0x8FA1\n0x8EA3CAA2\t0x8FA2\n0x8EA3CAA3\t0x48A5\n0x8EA3CAA4\t0x905A\n0x8EA3CAA5\t0x48A2\n0x8EA3CAA6\t0x9061\n0x8EA3CAA7\t0x905F\n0x8EA3CAA8\t0x48DB\n0x8EA3CAA9\t0x48DA\n0x8EA3CAAA\t0x9125\n0x8EA3CAAB\t0x917B\n0x8EA3CAAC\t0x9176\n0x8EA3CAAD\t0x917C\n0x8EA3CAAE\t0x4924\n0x8EA3CAAF\t0x9289\n0x8EA3CAB0\t0x92F6\n0x8EA3CAB1\t0x92B1\n0x8EA3CAB2\t0x92AD\n0x8EA3CAB3\t0x9292\n0x8EA3CAB4\t0x9281\n0x8EA3CAB5\t0x9284\n0x8EA3CAB6\t0x4926\n0x8EA3CAB7\t0x92AE\n0x8EA3CAB8\t0x9290\n0x8EA3CAB9\t0x929E\n0x8EA3CABA\t0x4998\n0x8EA3CABB\t0x4996\n0x8EA3CABC\t0x499A\n0x8EA3CABD\t0x95A2\n0x8EA3CABE\t0x95A7\n0x8EA3CABF\t0x4997\n0x8EA3CAC0\t0x49E1\n0x8EA3CAC1\t0x49E0\n0x8EA3CAC2\t0x49E3\n0x8EA3CAC3\t0x49E2\n0x8EA3CAC4\t0x96A0\n0x8EA3CAC5\t0x969D\n0x8EA3CAC6\t0x969F\n0x8EA3CAC7\t0x96D0\n0x8EA3CAC8\t0x49FB\n0x8EA3CAC9\t0x96D1\n0x8EA3CACA\t0x4A12\n0x8EA3CACB\t0x4A14\n0x8EA3CACC\t0x9759\n0x8EA3CACD\t0x4A45\n0x8EA3CACE\t0x9764\n0x8EA3CACF\t0x4A5C\n0x8EA3CAD0\t0x4A5D\n0x8EA3CAD1\t0x4AB8\n0x8EA3CAD2\t0x9819\n0x8EA3CAD3\t0x4ABA\n0x8EA3CAD4\t0x9814\n0x8EA3CAD5\t0x9815\n0x8EA3CAD6\t0x981A\n0x8EA3CAD7\t0x4B03\n0x8EA3CAD8\t0x4B35\n0x8EA3CAD9\t0x4B36\n0x8EA3CADA\t0x4B39\n0x8EA3CADB\t0x9906\n0x8EA3CADC\t0x4B2D\n0x8EA3CADD\t0x98F8\n0x8EA3CADE\t0x9901\n0x8EA3CADF\t0x4B7A\n0x8EA3CAE0\t0x99BE\n0x8EA3CAE1\t0x99BC\n0x8EA3CAE2\t0x99B7\n0x8EA3CAE3\t0x99B6\n0x8EA3CAE4\t0x99C0\n0x8EA3CAE5\t0x4B78\n0x8EA3CAE6\t0x99B8\n0x8EA3CAE7\t0x4B7B\n0x8EA3CAE8\t0x4B7C\n0x8EA3CAE9\t0x4B7E\n0x8EA3CAEA\t0x99C4\n0x8EA3CAEB\t0x4B7D\n0x8EA3CAEC\t0x99BF\n0x8EA3CAED\t0x4BC9\n0x8EA3CAEE\t0x9ADA\n0x8EA3CAEF\t0x9AE4\n0x8EA3CAF0\t0x9AE9\n0x8EA3CAF1\t0x9AE8\n0x8EA3CAF2\t0x9AEA\n0x8EA3CAF3\t0x9AE5\n0x8EA3CAF4\t0x4BF3\n0x8EA3CAF5\t0x9B26\n0x8EA3CAF6\t0x4C1A\n0x8EA3CAF7\t0x4C19\n0x8EA3CAF8\t0x9B40\n0x8EA3CAF9\t0x4C1F\n0x8EA3CAFA\t0x4CA6\n0x8EA3CAFB\t0x4CA7\n0x8EA3CAFC\t0x4CA8\n0x8EA3CAFD\t0x4CAB\n0x8EA3CAFE\t0x4CA9\n0x8EA3CBA1\t0x4D2E\n0x8EA3CBA2\t0x9EBD\n0x8EA3CBA3\t0x4D5E\n0x8EA3CBA4\t0x3495\n0x8EA3CBA5\t0x3493\n0x8EA3CBA6\t0x3492\n0x8EA3CBA7\t0x510E\n0x8EA3CBA8\t0x3496\n0x8EA3CBA9\t0x50F7\n0x8EA3CBAA\t0x3497\n0x8EA3CBAB\t0x50FC\n0x8EA3CBAC\t0x510D\n0x8EA3CBAD\t0x5101\n0x8EA3CBAE\t0x51DA\n0x8EA3CBAF\t0x51D9\n0x8EA3CBB0\t0x51DB\n0x8EA3CBB1\t0x5286\n0x8EA3CBB2\t0x528E\n0x8EA3CBB3\t0x52EE\n0x8EA3CBB4\t0x5333\n0x8EA3CBB5\t0x53B1\n0x8EA3CBB6\t0x35F5\n0x8EA3CBB7\t0x5647\n0x8EA3CBB8\t0x562D\n0x8EA3CBB9\t0x5654\n0x8EA3CBBA\t0x35EA\n0x8EA3CBBB\t0x564B\n0x8EA3CBBC\t0x5652\n0x8EA3CBBD\t0x5631\n0x8EA3CBBE\t0x5644\n0x8EA3CBBF\t0x5656\n0x8EA3CBC0\t0x5650\n0x8EA3CBC1\t0x562B\n0x8EA3CBC2\t0x35F3\n0x8EA3CBC3\t0x564D\n0x8EA3CBC4\t0x5637\n0x8EA3CBC5\t0x564F\n0x8EA3CBC6\t0x58A2\n0x8EA3CBC7\t0x58B7\n0x8EA3CBC8\t0x3669\n0x8EA3CBC9\t0x58B2\n0x8EA3CBCA\t0x366B\n0x8EA3CBCB\t0x58AA\n0x8EA3CBCC\t0x58B5\n0x8EA3CBCD\t0x58B0\n0x8EA3CBCE\t0x366C\n0x8EA3CBCF\t0x58B4\n0x8EA3CBD0\t0x58A4\n0x8EA3CBD1\t0x58A7\n0x8EA3CBD2\t0x3668\n0x8EA3CBD3\t0x5926\n0x8EA3CBD4\t0x5AFE\n0x8EA3CBD5\t0x3728\n0x8EA3CBD6\t0x5B04\n0x8EA3CBD7\t0x3726\n0x8EA3CBD8\t0x5AFC\n0x8EA3CBD9\t0x3725\n0x8EA3CBDA\t0x5B06\n0x8EA3CBDB\t0x5B0A\n0x8EA3CBDC\t0x5AFA\n0x8EA3CBDD\t0x5B0D\n0x8EA3CBDE\t0x5B00\n0x8EA3CBDF\t0x5B0E\n0x8EA3CBE0\t0x376B\n0x8EA3CBE1\t0x380F\n0x8EA3CBE2\t0x3808\n0x8EA3CBE3\t0x5D91\n0x8EA3CBE4\t0x380C\n0x8EA3CBE5\t0x5D8F\n0x8EA3CBE6\t0x5D90\n0x8EA3CBE7\t0x5D98\n0x8EA3CBE8\t0x5DA4\n0x8EA3CBE9\t0x5D9B\n0x8EA3CBEA\t0x5DA3\n0x8EA3CBEB\t0x5D96\n0x8EA3CBEC\t0x5DE4\n0x8EA3CBED\t0x5E5A\n0x8EA3CBEE\t0x3860\n0x8EA3CBEF\t0x3862\n0x8EA3CBF0\t0x5E5E\n0x8EA3CBF1\t0x3898\n0x8EA3CBF2\t0x5FB8\n0x8EA3CBF3\t0x6157\n0x8EA3CBF4\t0x615C\n0x8EA3CBF5\t0x61A6\n0x8EA3CBF6\t0x6195\n0x8EA3CBF7\t0x6188\n0x8EA3CBF8\t0x398A\n0x8EA3CBF9\t0x61A3\n0x8EA3CBFA\t0x618F\n0x8EA3CBFB\t0x3984\n0x8EA3CBFC\t0x6164\n0x8EA3CBFD\t0x397F\n0x8EA3CBFE\t0x6159\n0x8EA3CCA1\t0x6178\n0x8EA3CCA2\t0x3982\n0x8EA3CCA3\t0x6185\n0x8EA3CCA4\t0x6187\n0x8EA3CCA5\t0x619E\n0x8EA3CCA6\t0x3996\n0x8EA3CCA7\t0x3989\n0x8EA3CCA8\t0x6198\n0x8EA3CCA9\t0x619C\n0x8EA3CCAA\t0x398D\n0x8EA3CCAB\t0x39BC\n0x8EA3CCAC\t0x622F\n0x8EA3CCAD\t0x6480\n0x8EA3CCAE\t0x649B\n0x8EA3CCAF\t0x648E\n0x8EA3CCB0\t0x648D\n0x8EA3CCB1\t0x6494\n0x8EA3CCB2\t0x64C6\n0x8EA3CCB3\t0x3A44\n0x8EA3CCB4\t0x64A8\n0x8EA3CCB5\t0x6483\n0x8EA3CCB6\t0x3A3C\n0x8EA3CCB7\t0x64B9\n0x8EA3CCB8\t0x6486\n0x8EA3CCB9\t0x64B4\n0x8EA3CCBA\t0x64AF\n0x8EA3CCBB\t0x6491\n0x8EA3CCBC\t0x3A4E\n0x8EA3CCBD\t0x64AA\n0x8EA3CCBE\t0x64A1\n0x8EA3CCBF\t0x64A7\n0x8EA3CCC0\t0x66B6\n0x8EA3CCC1\t0x66B3\n0x8EA3CCC2\t0x3B14\n0x8EA3CCC3\t0x66BC\n0x8EA3CCC4\t0x66AC\n0x8EA3CCC5\t0x3B15\n0x8EA3CCC6\t0x66AD\n0x8EA3CCC7\t0x6A0E\n0x8EA3CCC8\t0x3BCE\n0x8EA3CCC9\t0x6A1C\n0x8EA3CCCA\t0x6A1A\n0x8EA3CCCB\t0x3BE0\n0x8EA3CCCC\t0x3BC2\n0x8EA3CCCD\t0x6A0B\n0x8EA3CCCE\t0x3BBF\n0x8EA3CCCF\t0x69EF\n0x8EA3CCD0\t0x6A0C\n0x8EA3CCD1\t0x69F0\n0x8EA3CCD2\t0x6A22\n0x8EA3CCD3\t0x3BC4\n0x8EA3CCD4\t0x69D8\n0x8EA3CCD5\t0x3BCF\n0x8EA3CCD6\t0x6A12\n0x8EA3CCD7\t0x69FA\n0x8EA3CCD8\t0x3BC8\n0x8EA3CCD9\t0x6A2A\n0x8EA3CCDA\t0x3BCC\n0x8EA3CCDB\t0x6A10\n0x8EA3CCDC\t0x3BCD\n0x8EA3CCDD\t0x3BC7\n0x8EA3CCDE\t0x6A29\n0x8EA3CCDF\t0x69F9\n0x8EA3CCE0\t0x69EA\n0x8EA3CCE1\t0x6A2C\n0x8EA3CCE2\t0x6A24\n0x8EA3CCE3\t0x4CB7\n0x8EA3CCE4\t0x69E9\n0x8EA3CCE5\t0x6B52\n0x8EA3CCE6\t0x6B4F\n0x8EA3CCE7\t0x6B53\n0x8EA3CCE8\t0x3C43\n0x8EA3CCE9\t0x3CB6\n0x8EA3CCEA\t0x6F10\n0x8EA3CCEB\t0x6F65\n0x8EA3CCEC\t0x6F75\n0x8EA3CCED\t0x3D51\n0x8EA3CCEE\t0x3D4A\n0x8EA3CCEF\t0x3D4D\n0x8EA3CCF0\t0x3D56\n0x8EA3CCF1\t0x6FD0\n0x8EA3CCF2\t0x3D53\n0x8EA3CCF3\t0x6F5C\n0x8EA3CCF4\t0x6F3D\n0x8EA3CCF5\t0x6F71\n0x8EA3CCF6\t0x3D59\n0x8EA3CCF7\t0x6F91\n0x8EA3CCF8\t0x6F0B\n0x8EA3CCF9\t0x6F79\n0x8EA3CCFA\t0x6F81\n0x8EA3CCFB\t0x6F8F\n0x8EA3CCFC\t0x3D4E\n0x8EA3CCFD\t0x6F59\n0x8EA3CCFE\t0x6F74\n0x8EA3CDA1\t0x3DEE\n0x8EA3CDA2\t0x71AE\n0x8EA3CDA3\t0x3DEC\n0x8EA3CDA4\t0x71A3\n0x8EA3CDA5\t0x71AD\n0x8EA3CDA6\t0x3DEB\n0x8EA3CDA7\t0x3DEF\n0x8EA3CDA8\t0x71AB\n0x8EA3CDA9\t0x71A6\n0x8EA3CDAA\t0x71A2\n0x8EA3CDAB\t0x3DED\n0x8EA3CDAC\t0x52F2\n0x8EA3CDAD\t0x7257\n0x8EA3CDAE\t0x7255\n0x8EA3CDAF\t0x7299\n0x8EA3CDB0\t0x734B\n0x8EA3CDB1\t0x747A\n0x8EA3CDB2\t0x3EF2\n0x8EA3CDB3\t0x3EEF\n0x8EA3CDB4\t0x3EF1\n0x8EA3CDB5\t0x748C\n0x8EA3CDB6\t0x7484\n0x8EA3CDB7\t0x3EED\n0x8EA3CDB8\t0x3EF0\n0x8EA3CDB9\t0x7482\n0x8EA3CDBA\t0x7493\n0x8EA3CDBB\t0x747B\n0x8EA3CDBC\t0x3EEE\n0x8EA3CDBD\t0x7509\n0x8EA3CDBE\t0x4C1B\n0x8EA3CDBF\t0x3F50\n0x8EA3CDC0\t0x3F66\n0x8EA3CDC1\t0x3684\n0x8EA3CDC2\t0x3FB8\n0x8EA3CDC3\t0x3FF6\n0x8EA3CDC4\t0x778A\n0x8EA3CDC5\t0x4057\n0x8EA3CDC6\t0x7790\n0x8EA3CDC7\t0x405E\n0x8EA3CDC8\t0x78C6\n0x8EA3CDC9\t0x78D3\n0x8EA3CDCA\t0x78C0\n0x8EA3CDCB\t0x78D2\n0x8EA3CDCC\t0x78C7\n0x8EA3CDCD\t0x78C2\n0x8EA3CDCE\t0x4119\n0x8EA3CDCF\t0x799F\n0x8EA3CDD0\t0x799D\n0x8EA3CDD1\t0x799E\n0x8EA3CDD2\t0x4170\n0x8EA3CDD3\t0x7A41\n0x8EA3CDD4\t0x416E\n0x8EA3CDD5\t0x7A38\n0x8EA3CDD6\t0x7A3A\n0x8EA3CDD7\t0x7A42\n0x8EA3CDD8\t0x4172\n0x8EA3CDD9\t0x4176\n0x8EA3CDDA\t0x7A3E\n0x8EA3CDDB\t0x7AB0\n0x8EA3CDDC\t0x7BAE\n0x8EA3CDDD\t0x7BB3\n0x8EA3CDDE\t0x4212\n0x8EA3CDDF\t0x421F\n0x8EA3CDE0\t0x7BBF\n0x8EA3CDE1\t0x4211\n0x8EA3CDE2\t0x4216\n0x8EA3CDE3\t0x7BCD\n0x8EA3CDE4\t0x4219\n0x8EA3CDE5\t0x7BB2\n0x8EA3CDE6\t0x4224\n0x8EA3CDE7\t0x4214\n0x8EA3CDE8\t0x4225\n0x8EA3CDE9\t0x4295\n0x8EA3CDEA\t0x4296\n0x8EA3CDEB\t0x4293\n0x8EA3CDEC\t0x4294\n0x8EA3CDED\t0x7CC4\n0x8EA3CDEE\t0x7CCD\n0x8EA3CDEF\t0x7CC2\n0x8EA3CDF0\t0x7CC6\n0x8EA3CDF1\t0x7CC3\n0x8EA3CDF2\t0x7CC9\n0x8EA3CDF3\t0x7CC7\n0x8EA3CDF4\t0x42A0\n0x8EA3CDF5\t0x7DF8\n0x8EA3CDF6\t0x42FB\n0x8EA3CDF7\t0x7DED\n0x8EA3CDF8\t0x7DE2\n0x8EA3CDF9\t0x42FC\n0x8EA3CDFA\t0x4300\n0x8EA3CDFB\t0x42F8\n0x8EA3CDFC\t0x7DDC\n0x8EA3CDFD\t0x7E02\n0x8EA3CDFE\t0x7E01\n0x8EA3CEA1\t0x42F9\n0x8EA3CEA2\t0x7DD6\n0x8EA3CEA3\t0x4304\n0x8EA3CEA4\t0x7DE4\n0x8EA3CEA5\t0x7DFE\n0x8EA3CEA6\t0x4303\n0x8EA3CEA7\t0x7E00\n0x8EA3CEA8\t0x7DFC\n0x8EA3CEA9\t0x7DFD\n0x8EA3CEAA\t0x42F3\n0x8EA3CEAB\t0x7DF5\n0x8EA3CEAC\t0x7DFF\n0x8EA3CEAD\t0x42FA\n0x8EA3CEAE\t0x7DEB\n0x8EA3CEAF\t0x7DE5\n0x8EA3CEB0\t0x7F78\n0x8EA3CEB1\t0x7FAE\n0x8EA3CEB2\t0x7FE7\n0x8EA3CEB3\t0x43BF\n0x8EA3CEB4\t0x8065\n0x8EA3CEB5\t0x806A\n0x8EA3CEB6\t0x8066\n0x8EA3CEB7\t0x8068\n0x8EA3CEB8\t0x806B\n0x8EA3CEB9\t0x8194\n0x8EA3CEBA\t0x81A1\n0x8EA3CEBB\t0x8192\n0x8EA3CEBC\t0x8196\n0x8EA3CEBD\t0x8193\n0x8EA3CEBE\t0x4479\n0x8EA3CEBF\t0x4510\n0x8EA3CEC0\t0x8501\n0x8EA3CEC1\t0x4514\n0x8EA3CEC2\t0x84F8\n0x8EA3CEC3\t0x450E\n0x8EA3CEC4\t0x84F5\n0x8EA3CEC5\t0x451A\n0x8EA3CEC6\t0x8504\n0x8EA3CEC7\t0x4519\n0x8EA3CEC8\t0x4521\n0x8EA3CEC9\t0x4523\n0x8EA3CECA\t0x451F\n0x8EA3CECB\t0x851B\n0x8EA3CECC\t0x8503\n0x8EA3CECD\t0x8533\n0x8EA3CECE\t0x8534\n0x8EA3CECF\t0x84ED\n0x8EA3CED0\t0x4525\n0x8EA3CED1\t0x452B\n0x8EA3CED2\t0x8535\n0x8EA3CED3\t0x4516\n0x8EA3CED4\t0x8505\n0x8EA3CED5\t0x4522\n0x8EA3CED6\t0x451B\n0x8EA3CED7\t0x45CE\n0x8EA3CED8\t0x45CF\n0x8EA3CED9\t0x877D\n0x8EA3CEDA\t0x45CB\n0x8EA3CEDB\t0x45D1\n0x8EA3CEDC\t0x45CC\n0x8EA3CEDD\t0x8771\n0x8EA3CEDE\t0x4617\n0x8EA3CEDF\t0x885C\n0x8EA3CEE0\t0x88E6\n0x8EA3CEE1\t0x890F\n0x8EA3CEE2\t0x891B\n0x8EA3CEE3\t0x4651\n0x8EA3CEE4\t0x89A9\n0x8EA3CEE5\t0x89A5\n0x8EA3CEE6\t0x89EE\n0x8EA3CEE7\t0x8AB1\n0x8EA3CEE8\t0x46ED\n0x8EA3CEE9\t0x8ACC\n0x8EA3CEEA\t0x8ACE\n0x8EA3CEEB\t0x46F4\n0x8EA3CEEC\t0x8AB7\n0x8EA3CEED\t0x46F1\n0x8EA3CEEE\t0x8AB5\n0x8EA3CEEF\t0x8AE9\n0x8EA3CEF0\t0x8AB4\n0x8EA3CEF1\t0x46F8\n0x8EA3CEF2\t0x8AB3\n0x8EA3CEF3\t0x8AC1\n0x8EA3CEF4\t0x8AAF\n0x8EA3CEF5\t0x8ACA\n0x8EA3CEF6\t0x8AD0\n0x8EA3CEF7\t0x472F\n0x8EA3CEF8\t0x475E\n0x8EA3CEF9\t0x475D\n0x8EA3CEFA\t0x8C8E\n0x8EA3CEFB\t0x4776\n0x8EA3CEFC\t0x4777\n0x8EA3CEFD\t0x8CE9\n0x8EA3CEFE\t0x8CDB\n0x8EA3CFA1\t0x477E\n0x8EA3CFA2\t0x8CEB\n0x8EA3CFA3\t0x8DA4\n0x8EA3CFA4\t0x47B6\n0x8EA3CFA5\t0x8DA2\n0x8EA3CFA6\t0x8D9D\n0x8EA3CFA7\t0x47B3\n0x8EA3CFA8\t0x47FC\n0x8EA3CFA9\t0x4803\n0x8EA3CFAA\t0x4800\n0x8EA3CFAB\t0x8E2A\n0x8EA3CFAC\t0x8E28\n0x8EA3CFAD\t0x480A\n0x8EA3CFAE\t0x4802\n0x8EA3CFAF\t0x8EB8\n0x8EA3CFB0\t0x8EB6\n0x8EA3CFB1\t0x8EB9\n0x8EA3CFB2\t0x8EB7\n0x8EA3CFB3\t0x8F22\n0x8EA3CFB4\t0x8F2B\n0x8EA3CFB5\t0x8F27\n0x8EA3CFB6\t0x8F19\n0x8EA3CFB7\t0x8FA4\n0x8EA3CFB8\t0x4887\n0x8EA3CFB9\t0x8FB3\n0x8EA3CFBA\t0x48A6\n0x8EA3CFBB\t0x9071\n0x8EA3CFBC\t0x906A\n0x8EA3CFBD\t0x48A9\n0x8EA3CFBE\t0x48DE\n0x8EA3CFBF\t0x9188\n0x8EA3CFC0\t0x918C\n0x8EA3CFC1\t0x92BF\n0x8EA3CFC2\t0x92B8\n0x8EA3CFC3\t0x92BE\n0x8EA3CFC4\t0x92DC\n0x8EA3CFC5\t0x92E5\n0x8EA3CFC6\t0x492E\n0x8EA3CFC7\t0x492D\n0x8EA3CFC8\t0x92D4\n0x8EA3CFC9\t0x92D6\n0x8EA3CFCA\t0x4930\n0x8EA3CFCB\t0x92DA\n0x8EA3CFCC\t0x92ED\n0x8EA3CFCD\t0x92F3\n0x8EA3CFCE\t0x92DB\n0x8EA3CFCF\t0x492B\n0x8EA3CFD0\t0x92B9\n0x8EA3CFD1\t0x92E2\n0x8EA3CFD2\t0x92EB\n0x8EA3CFD3\t0x95AF\n0x8EA3CFD4\t0x499E\n0x8EA3CFD5\t0x95B2\n0x8EA3CFD6\t0x95B3\n0x8EA3CFD7\t0x499F\n0x8EA3CFD8\t0x49E5\n0x8EA3CFD9\t0x49E4\n0x8EA3CFDA\t0x96A3\n0x8EA3CFDB\t0x96A5\n0x8EA3CFDC\t0x49FD\n0x8EA3CFDD\t0x49FC\n0x8EA3CFDE\t0x4A17\n0x8EA3CFDF\t0x4A19\n0x8EA3CFE0\t0x970A\n0x8EA3CFE1\t0x4A18\n0x8EA3CFE2\t0x9787\n0x8EA3CFE3\t0x9789\n0x8EA3CFE4\t0x978C\n0x8EA3CFE5\t0x97EF\n0x8EA3CFE6\t0x982A\n0x8EA3CFE7\t0x9822\n0x8EA3CFE8\t0x4ABF\n0x8EA3CFE9\t0x981F\n0x8EA3CFEA\t0x4B3C\n0x8EA3CFEB\t0x9919\n0x8EA3CFEC\t0x4B6B\n0x8EA3CFED\t0x99CA\n0x8EA3CFEE\t0x99DA\n0x8EA3CFEF\t0x4B83\n0x8EA3CFF0\t0x4B81\n0x8EA3CFF1\t0x4B80\n0x8EA3CFF2\t0x99DE\n0x8EA3CFF3\t0x99C8\n0x8EA3CFF4\t0x99E0\n0x8EA3CFF5\t0x4BCA\n0x8EA3CFF6\t0x9AB6\n0x8EA3CFF7\t0x9AB5\n0x8EA3CFF8\t0x4BCE\n0x8EA3CFF9\t0x9AF4\n0x8EA3CFFA\t0x4BF6\n0x8EA3CFFB\t0x9B6B\n0x8EA3CFFC\t0x9B69\n0x8EA3CFFD\t0x9B72\n0x8EA3CFFE\t0x9B63\n0x8EA3D0A1\t0x4C39\n0x8EA3D0A2\t0x9D0D\n0x8EA3D0A3\t0x4CAE\n0x8EA3D0A4\t0x9D01\n0x8EA3D0A5\t0x9D0C\n0x8EA3D0A6\t0x4CB5\n0x8EA3D0A7\t0x9CF8\n0x8EA3D0A8\t0x4CB3\n0x8EA3D0A9\t0x4CB4\n0x8EA3D0AA\t0x9CFE\n0x8EA3D0AB\t0x9D02\n0x8EA3D0AC\t0x9E84\n0x8EA3D0AD\t0x4D22\n0x8EA3D0AE\t0x9EAB\n0x8EA3D0AF\t0x9EAA\n0x8EA3D0B0\t0x511D\n0x8EA3D0B1\t0x5116\n0x8EA3D0B2\t0x3499\n0x8EA3D0B3\t0x512B\n0x8EA3D0B4\t0x511E\n0x8EA3D0B5\t0x511B\n0x8EA3D0B6\t0x5290\n0x8EA3D0B7\t0x5294\n0x8EA3D0B8\t0x5314\n0x8EA3D0B9\t0x20B89\n0x8EA3D0BA\t0x3602\n0x8EA3D0BB\t0x5667\n0x8EA3D0BC\t0x3601\n0x8EA3D0BD\t0x567B\n0x8EA3D0BE\t0x36A1\n0x8EA3D0BF\t0x565F\n0x8EA3D0C0\t0x5661\n0x8EA3D0C1\t0x35FD\n0x8EA3D0C2\t0x3673\n0x8EA3D0C3\t0x3674\n0x8EA3D0C4\t0x3670\n0x8EA3D0C5\t0x3676\n0x8EA3D0C6\t0x3675\n0x8EA3D0C7\t0x3672\n0x8EA3D0C8\t0x58C3\n0x8EA3D0C9\t0x58CA\n0x8EA3D0CA\t0x58BB\n0x8EA3D0CB\t0x58C0\n0x8EA3D0CC\t0x58C4\n0x8EA3D0CD\t0x5901\n0x8EA3D0CE\t0x5B1F\n0x8EA3D0CF\t0x5B18\n0x8EA3D0D0\t0x5B11\n0x8EA3D0D1\t0x5B15\n0x8EA3D0D2\t0x3729\n0x8EA3D0D3\t0x5B12\n0x8EA3D0D4\t0x5B1C\n0x8EA3D0D5\t0x372A\n0x8EA3D0D6\t0x5B22\n0x8EA3D0D7\t0x5B79\n0x8EA3D0D8\t0x5DA6\n0x8EA3D0D9\t0x3816\n0x8EA3D0DA\t0x5DB3\n0x8EA3D0DB\t0x5DAB\n0x8EA3D0DC\t0x5EEA\n0x8EA3D0DD\t0x3899\n0x8EA3D0DE\t0x5F5B\n0x8EA3D0DF\t0x38D3\n0x8EA3D0E0\t0x38F5\n0x8EA3D0E1\t0x61B7\n0x8EA3D0E2\t0x61CE\n0x8EA3D0E3\t0x61B9\n0x8EA3D0E4\t0x61BD\n0x8EA3D0E5\t0x61CF\n0x8EA3D0E6\t0x61C0\n0x8EA3D0E7\t0x6199\n0x8EA3D0E8\t0x6197\n0x8EA3D0E9\t0x3994\n0x8EA3D0EA\t0x61BB\n0x8EA3D0EB\t0x61D0\n0x8EA3D0EC\t0x61C4\n0x8EA3D0ED\t0x6231\n0x8EA3D0EE\t0x3A56\n0x8EA3D0EF\t0x64D3\n0x8EA3D0F0\t0x64C0\n0x8EA3D0F1\t0x3A59\n0x8EA3D0F2\t0x3A58\n0x8EA3D0F3\t0x3A55\n0x8EA3D0F4\t0x3A52\n0x8EA3D0F5\t0x64DC\n0x8EA3D0F6\t0x64D1\n0x8EA3D0F7\t0x64C8\n0x8EA3D0F8\t0x3A57\n0x8EA3D0F9\t0x64D5\n0x8EA3D0FA\t0x66C3\n0x8EA3D0FB\t0x3B1B\n0x8EA3D0FC\t0x3B1C\n0x8EA3D0FD\t0x66BF\n0x8EA3D0FE\t0x66C5\n0x8EA3D1A1\t0x3B19\n0x8EA3D1A2\t0x66CD\n0x8EA3D1A3\t0x66C1\n0x8EA3D1A4\t0x6706\n0x8EA3D1A5\t0x3B3F\n0x8EA3D1A6\t0x6724\n0x8EA3D1A7\t0x6A63\n0x8EA3D1A8\t0x6A42\n0x8EA3D1A9\t0x6A52\n0x8EA3D1AA\t0x3BDB\n0x8EA3D1AB\t0x6A43\n0x8EA3D1AC\t0x6A33\n0x8EA3D1AD\t0x3BE2\n0x8EA3D1AE\t0x6A6C\n0x8EA3D1AF\t0x6A57\n0x8EA3D1B0\t0x3BD7\n0x8EA3D1B1\t0x6A4C\n0x8EA3D1B2\t0x6A6E\n0x8EA3D1B3\t0x3BDE\n0x8EA3D1B4\t0x3BE5\n0x8EA3D1B5\t0x3BE4\n0x8EA3D1B6\t0x3BE6\n0x8EA3D1B7\t0x3BD6\n0x8EA3D1B8\t0x6A37\n0x8EA3D1B9\t0x3BDF\n0x8EA3D1BA\t0x6A71\n0x8EA3D1BB\t0x6A4A\n0x8EA3D1BC\t0x6A36\n0x8EA3D1BD\t0x3BDC\n0x8EA3D1BE\t0x6A53\n0x8EA3D1BF\t0x3BDA\n0x8EA3D1C0\t0x6A45\n0x8EA3D1C1\t0x6A70\n0x8EA3D1C2\t0x3BD3\n0x8EA3D1C3\t0x3BD0\n0x8EA3D1C4\t0x6A5C\n0x8EA3D1C5\t0x6B58\n0x8EA3D1C6\t0x6B57\n0x8EA3D1C7\t0x3C86\n0x8EA3D1C8\t0x3C87\n0x8EA3D1C9\t0x3CAD\n0x8EA3D1CA\t0x3CB7\n0x8EA3D1CB\t0x3D58\n0x8EA3D1CC\t0x3D6A\n0x8EA3D1CD\t0x6FBB\n0x8EA3D1CE\t0x3D62\n0x8EA3D1CF\t0x3D61\n0x8EA3D1D0\t0x6FBE\n0x8EA3D1D1\t0x3D69\n0x8EA3D1D2\t0x3D6C\n0x8EA3D1D3\t0x3D65\n0x8EA3D1D4\t0x6FB5\n0x8EA3D1D5\t0x6FD3\n0x8EA3D1D6\t0x6F9F\n0x8EA3D1D7\t0x3D66\n0x8EA3D1D8\t0x6FB7\n0x8EA3D1D9\t0x6FF5\n0x8EA3D1DA\t0x71B7\n0x8EA3D1DB\t0x3DF5\n0x8EA3D1DC\t0x71BB\n0x8EA3D1DD\t0x3DF4\n0x8EA3D1DE\t0x71D1\n0x8EA3D1DF\t0x3DF7\n0x8EA3D1E0\t0x71BA\n0x8EA3D1E1\t0x3DF8\n0x8EA3D1E2\t0x71B6\n0x8EA3D1E3\t0x71CC\n0x8EA3D1E4\t0x3DFB\n0x8EA3D1E5\t0x3DFC\n0x8EA3D1E6\t0x71D3\n0x8EA3D1E7\t0x749B\n0x8EA3D1E8\t0x3EF5\n0x8EA3D1E9\t0x3EF8\n0x8EA3D1EA\t0x7496\n0x8EA3D1EB\t0x74A2\n0x8EA3D1EC\t0x749D\n0x8EA3D1ED\t0x750A\n0x8EA3D1EE\t0x750E\n0x8EA3D1EF\t0x3F3C\n0x8EA3D1F0\t0x7581\n0x8EA3D1F1\t0x762C\n0x8EA3D1F2\t0x7637\n0x8EA3D1F3\t0x7636\n0x8EA3D1F4\t0x763B\n0x8EA3D1F5\t0x3FC5\n0x8EA3D1F6\t0x76A1\n0x8EA3D1F7\t0x4062\n0x8EA3D1F8\t0x4063\n0x8EA3D1F9\t0x7798\n0x8EA3D1FA\t0x4067\n0x8EA3D1FB\t0x7796\n0x8EA3D1FC\t0x4066\n0x8EA3D1FD\t0x40D9\n0x8EA3D1FE\t0x40DB\n0x8EA3D2A1\t0x78D6\n0x8EA3D2A2\t0x78EB\n0x8EA3D2A3\t0x40D8\n0x8EA3D2A4\t0x78DC\n0x8EA3D2A5\t0x411B\n0x8EA3D2A6\t0x79A5\n0x8EA3D2A7\t0x79A9\n0x8EA3D2A8\t0x9834\n0x8EA3D2A9\t0x7A53\n0x8EA3D2AA\t0x7A45\n0x8EA3D2AB\t0x4179\n0x8EA3D2AC\t0x7A4F\n0x8EA3D2AD\t0x417D\n0x8EA3D2AE\t0x7ABD\n0x8EA3D2AF\t0x7ABB\n0x8EA3D2B0\t0x7AF1\n0x8EA3D2B1\t0x422C\n0x8EA3D2B2\t0x4237\n0x8EA3D2B3\t0x7BEC\n0x8EA3D2B4\t0x7BED\n0x8EA3D2B5\t0x4230\n0x8EA3D2B6\t0x429A\n0x8EA3D2B7\t0x7CD3\n0x8EA3D2B8\t0x4A00\n0x8EA3D2B9\t0x7CE1\n0x8EA3D2BA\t0x4305\n0x8EA3D2BB\t0x7E19\n0x8EA3D2BC\t0x4307\n0x8EA3D2BD\t0x4309\n0x8EA3D2BE\t0x430A\n0x8EA3D2BF\t0x7E27\n0x8EA3D2C0\t0x7E26\n0x8EA3D2C1\t0x4379\n0x8EA3D2C2\t0x43C2\n0x8EA3D2C3\t0x806E\n0x8EA3D2C4\t0x81AF\n0x8EA3D2C5\t0x4438\n0x8EA3D2C6\t0x4437\n0x8EA3D2C7\t0x81AD\n0x8EA3D2C8\t0x4421\n0x8EA3D2C9\t0x81AA\n0x8EA3D2CA\t0x8218\n0x8EA3D2CB\t0x445E\n0x8EA3D2CC\t0x453D\n0x8EA3D2CD\t0x4537\n0x8EA3D2CE\t0x4540\n0x8EA3D2CF\t0x856F\n0x8EA3D2D0\t0x854C\n0x8EA3D2D1\t0x451D\n0x8EA3D2D2\t0x8542\n0x8EA3D2D3\t0x4533\n0x8EA3D2D4\t0x855C\n0x8EA3D2D5\t0x8570\n0x8EA3D2D6\t0x855F\n0x8EA3D2D7\t0x4535\n0x8EA3D2D8\t0x855A\n0x8EA3D2D9\t0x854B\n0x8EA3D2DA\t0x853F\n0x8EA3D2DB\t0x878A\n0x8EA3D2DC\t0x45D8\n0x8EA3D2DD\t0x878B\n0x8EA3D2DE\t0x87A1\n0x8EA3D2DF\t0x878E\n0x8EA3D2E0\t0x45DC\n0x8EA3D2E1\t0x45DE\n0x8EA3D2E2\t0x8799\n0x8EA3D2E3\t0x885E\n0x8EA3D2E4\t0x885F\n0x8EA3D2E5\t0x8924\n0x8EA3D2E6\t0x89A7\n0x8EA3D2E7\t0x8AEA\n0x8EA3D2E8\t0x8AFD\n0x8EA3D2E9\t0x8AF9\n0x8EA3D2EA\t0x8AE3\n0x8EA3D2EB\t0x8AE5\n0x8EA3D2EC\t0x46FA\n0x8EA3D2ED\t0x46FB\n0x8EA3D2EE\t0x8AEC\n0x8EA3D2EF\t0x473D\n0x8EA3D2F0\t0x473B\n0x8EA3D2F1\t0x473F\n0x8EA3D2F2\t0x475F\n0x8EA3D2F3\t0x8CF2\n0x8EA3D2F4\t0x477F\n0x8EA3D2F5\t0x8CEF\n0x8EA3D2F6\t0x4784\n0x8EA3D2F7\t0x8DA6\n0x8EA3D2F8\t0x47BC\n0x8EA3D2F9\t0x4814\n0x8EA3D2FA\t0x480F\n0x8EA3D2FB\t0x8E3B\n0x8EA3D2FC\t0x8E43\n0x8EA3D2FD\t0x480E\n0x8EA3D2FE\t0x8E32\n0x8EA3D3A1\t0x8F31\n0x8EA3D3A2\t0x8F30\n0x8EA3D3A3\t0x4860\n0x8EA3D3A4\t0x8F2D\n0x8EA3D3A5\t0x8F3C\n0x8EA3D3A6\t0x8FA7\n0x8EA3D3A7\t0x8FA5\n0x8EA3D3A8\t0x48AB\n0x8EA3D3A9\t0x48AC\n0x8EA3D3AA\t0x48AA\n0x8EA3D3AB\t0x9137\n0x8EA3D3AC\t0x9195\n0x8EA3D3AD\t0x918E\n0x8EA3D3AE\t0x4904\n0x8EA3D3AF\t0x9196\n0x8EA3D3B0\t0x4908\n0x8EA3D3B1\t0x9345\n0x8EA3D3B2\t0x930A\n0x8EA3D3B3\t0x4933\n0x8EA3D3B4\t0x4934\n0x8EA3D3B5\t0x92FD\n0x8EA3D3B6\t0x9317\n0x8EA3D3B7\t0x931C\n0x8EA3D3B8\t0x9307\n0x8EA3D3B9\t0x9331\n0x8EA3D3BA\t0x9332\n0x8EA3D3BB\t0x932C\n0x8EA3D3BC\t0x9330\n0x8EA3D3BD\t0x9303\n0x8EA3D3BE\t0x9305\n0x8EA3D3BF\t0x49A2\n0x8EA3D3C0\t0x95C2\n0x8EA3D3C1\t0x49A4\n0x8EA3D3C2\t0x95B8\n0x8EA3D3C3\t0x49A5\n0x8EA3D3C4\t0x95C1\n0x8EA3D3C5\t0x49A7\n0x8EA3D3C6\t0x49A6\n0x8EA3D3C7\t0x49E7\n0x8EA3D3C8\t0x96AB\n0x8EA3D3C9\t0x96B7\n0x8EA3D3CA\t0x49FF\n0x8EA3D3CB\t0x49FE\n0x8EA3D3CC\t0x9715\n0x8EA3D3CD\t0x9714\n0x8EA3D3CE\t0x4A1D\n0x8EA3D3CF\t0x4A1C\n0x8EA3D3D0\t0x970C\n0x8EA3D3D1\t0x9717\n0x8EA3D3D2\t0x4A67\n0x8EA3D3D3\t0x9793\n0x8EA3D3D4\t0x4A94\n0x8EA3D3D5\t0x97D2\n0x8EA3D3D6\t0x4AC5\n0x8EA3D3D7\t0x4AC8\n0x8EA3D3D8\t0x9836\n0x8EA3D3D9\t0x9831\n0x8EA3D3DA\t0x9833\n0x8EA3D3DB\t0x983C\n0x8EA3D3DC\t0x982E\n0x8EA3D3DD\t0x983A\n0x8EA3D3DE\t0x4AC9\n0x8EA3D3DF\t0x983D\n0x8EA3D3E0\t0x4AC7\n0x8EA3D3E1\t0x98B5\n0x8EA3D3E2\t0x9922\n0x8EA3D3E3\t0x9923\n0x8EA3D3E4\t0x9920\n0x8EA3D3E5\t0x991C\n0x8EA3D3E6\t0x991D\n0x8EA3D3E7\t0x4B6C\n0x8EA3D3E8\t0x99A0\n0x8EA3D3E9\t0x4B8A\n0x8EA3D3EA\t0x99EF\n0x8EA3D3EB\t0x99E8\n0x8EA3D3EC\t0x99EB\n0x8EA3D3ED\t0x4B88\n0x8EA3D3EE\t0x4B87\n0x8EA3D3EF\t0x4B86\n0x8EA3D3F0\t0x99E1\n0x8EA3D3F1\t0x99E6\n0x8EA3D3F2\t0x4BCF\n0x8EA3D3F3\t0x4BD0\n0x8EA3D3F4\t0x9AF8\n0x8EA3D3F5\t0x9AF5\n0x8EA3D3F6\t0x4C1C\n0x8EA3D3F7\t0x4C23\n0x8EA3D3F8\t0x9B83\n0x8EA3D3F9\t0x9B94\n0x8EA3D3FA\t0x9B84\n0x8EA3D3FB\t0x4C49\n0x8EA3D3FC\t0x9B8B\n0x8EA3D3FD\t0x9B8F\n0x8EA3D3FE\t0x4C43\n0x8EA3D4A1\t0x9B8C\n0x8EA3D4A2\t0x4C48\n0x8EA3D4A3\t0x9B89\n0x8EA3D4A4\t0x4C47\n0x8EA3D4A5\t0x9B8E\n0x8EA3D4A6\t0x4C46\n0x8EA3D4A7\t0x4C3F\n0x8EA3D4A8\t0x4C44\n0x8EA3D4A9\t0x9D24\n0x8EA3D4AA\t0x9D0F\n0x8EA3D4AB\t0x4CBE\n0x8EA3D4AC\t0x9D13\n0x8EA3D4AD\t0x9D0A\n0x8EA3D4AE\t0x4CC2\n0x8EA3D4AF\t0x4CBA\n0x8EA3D4B0\t0x4CBC\n0x8EA3D4B1\t0x4CC6\n0x8EA3D4B2\t0x9D2A\n0x8EA3D4B3\t0x9D1A\n0x8EA3D4B4\t0x4CC8\n0x8EA3D4B5\t0x9D27\n0x8EA3D4B6\t0x9D16\n0x8EA3D4B7\t0x9D21\n0x8EA3D4B8\t0x4D23\n0x8EA3D4B9\t0x9E85\n0x8EA3D4BA\t0x9EAC\n0x8EA3D4BB\t0x9EC6\n0x8EA3D4BC\t0x9EC5\n0x8EA3D4BD\t0x9ED7\n0x8EA3D4BE\t0x9F53\n0x8EA3D4BF\t0x349D\n0x8EA3D4C0\t0x5128\n0x8EA3D4C1\t0x5127\n0x8EA3D4C2\t0x51DF\n0x8EA3D4C3\t0x3524\n0x8EA3D4C4\t0x5335\n0x8EA3D4C5\t0x53B3\n0x8EA3D4C6\t0x3607\n0x8EA3D4C7\t0x568A\n0x8EA3D4C8\t0x567D\n0x8EA3D4C9\t0x5689\n0x8EA3D4CA\t0x3679\n0x8EA3D4CB\t0x58CD\n0x8EA3D4CC\t0x58D0\n0x8EA3D4CD\t0x3678\n0x8EA3D4CE\t0x5B2B\n0x8EA3D4CF\t0x5B33\n0x8EA3D4D0\t0x5B29\n0x8EA3D4D1\t0x5B35\n0x8EA3D4D2\t0x5B31\n0x8EA3D4D3\t0x5B37\n0x8EA3D4D4\t0x5C36\n0x8EA3D4D5\t0x5DBE\n0x8EA3D4D6\t0x3819\n0x8EA3D4D7\t0x5DB9\n0x8EA3D4D8\t0x381C\n0x8EA3D4D9\t0x5DBB\n0x8EA3D4DA\t0x3818\n0x8EA3D4DB\t0x61E2\n0x8EA3D4DC\t0x61DB\n0x8EA3D4DD\t0x61DD\n0x8EA3D4DE\t0x61DC\n0x8EA3D4DF\t0x61DA\n0x8EA3D4E0\t0x2F8AF\n0x8EA3D4E1\t0x61D9\n0x8EA3D4E2\t0x39BD\n0x8EA3D4E3\t0x3A5D\n0x8EA3D4E4\t0x64DF\n0x8EA3D4E5\t0x3A5A\n0x8EA3D4E6\t0x3A5E\n0x8EA3D4E7\t0x64E1\n0x8EA3D4E8\t0x3A5C\n0x8EA3D4E9\t0x64EE\n0x8EA3D4EA\t0x3A5B\n0x8EA3D4EB\t0x65B5\n0x8EA3D4EC\t0x66D4\n0x8EA3D4ED\t0x66D5\n0x8EA3D4EE\t0x3B21\n0x8EA3D4EF\t0x66D0\n0x8EA3D4F0\t0x66D1\n0x8EA3D4F1\t0x66CE\n0x8EA3D4F2\t0x66D7\n0x8EA3D4F3\t0x3B20\n0x8EA3D4F4\t0x3B32\n0x8EA3D4F5\t0x6A7D\n0x8EA3D4F6\t0x6A8A\n0x8EA3D4F7\t0x3BF2\n0x8EA3D4F8\t0x6AA7\n0x8EA3D4F9\t0x3BF5\n0x8EA3D4FA\t0x6A99\n0x8EA3D4FB\t0x6A82\n0x8EA3D4FC\t0x6A88\n0x8EA3D4FD\t0x3BEE\n0x8EA3D4FE\t0x3BEC\n0x8EA3D5A1\t0x6A86\n0x8EA3D5A2\t0x3BEA\n0x8EA3D5A3\t0x6A98\n0x8EA3D5A4\t0x6A9D\n0x8EA3D5A5\t0x3BED\n0x8EA3D5A6\t0x3BF3\n0x8EA3D5A7\t0x6A8F\n0x8EA3D5A8\t0x3BF6\n0x8EA3D5A9\t0x6AAA\n0x8EA3D5AA\t0x3C48\n0x8EA3D5AB\t0x6B5D\n0x8EA3D5AC\t0x3C49\n0x8EA3D5AD\t0x6C0A\n0x8EA3D5AE\t0x3D75\n0x8EA3D5AF\t0x6FD7\n0x8EA3D5B0\t0x6FD6\n0x8EA3D5B1\t0x6FE5\n0x8EA3D5B2\t0x3D6F\n0x8EA3D5B3\t0x3D7B\n0x8EA3D5B4\t0x3D73\n0x8EA3D5B5\t0x6FD9\n0x8EA3D5B6\t0x6FDA\n0x8EA3D5B7\t0x6FEA\n0x8EA3D5B8\t0x3D70\n0x8EA3D5B9\t0x6FF6\n0x8EA3D5BA\t0x24039\n0x8EA3D5BB\t0x3D78\n0x8EA3D5BC\t0x71E3\n0x8EA3D5BD\t0x3DFE\n0x8EA3D5BE\t0x71E9\n0x8EA3D5BF\t0x3E00\n0x8EA3D5C0\t0x71EB\n0x8EA3D5C1\t0x71EF\n0x8EA3D5C2\t0x71F3\n0x8EA3D5C3\t0x71EA\n0x8EA3D5C4\t0x3E01\n0x8EA3D5C5\t0x2F921\n0x8EA3D5C6\t0x3E55\n0x8EA3D5C7\t0x3E56\n0x8EA3D5C8\t0x3E9D\n0x8EA3D5C9\t0x7371\n0x8EA3D5CA\t0x3EF9\n0x8EA3D5CB\t0x74AE\n0x8EA3D5CC\t0x3EFF\n0x8EA3D5CD\t0x74B3\n0x8EA3D5CE\t0x3EFD\n0x8EA3D5CF\t0x74AC\n0x8EA3D5D0\t0x3F43\n0x8EA3D5D1\t0x3F41\n0x8EA3D5D2\t0x7583\n0x8EA3D5D3\t0x7645\n0x8EA3D5D4\t0x764E\n0x8EA3D5D5\t0x7644\n0x8EA3D5D6\t0x76A3\n0x8EA3D5D7\t0x76A5\n0x8EA3D5D8\t0x77A6\n0x8EA3D5D9\t0x77A4\n0x8EA3D5DA\t0x406F\n0x8EA3D5DB\t0x77A9\n0x8EA3D5DC\t0x77AF\n0x8EA3D5DD\t0x408A\n0x8EA3D5DE\t0x40E5\n0x8EA3D5DF\t0x40E6\n0x8EA3D5E0\t0x78F0\n0x8EA3D5E1\t0x78F8\n0x8EA3D5E2\t0x78F1\n0x8EA3D5E3\t0x417F\n0x8EA3D5E4\t0x7A49\n0x8EA3D5E5\t0x41B5\n0x8EA3D5E6\t0x41B6\n0x8EA3D5E7\t0x41BB\n0x8EA3D5E8\t0x7AC2\n0x8EA3D5E9\t0x7AF2\n0x8EA3D5EA\t0x7AF3\n0x8EA3D5EB\t0x7BFA\n0x8EA3D5EC\t0x4240\n0x8EA3D5ED\t0x7BF6\n0x8EA3D5EE\t0x7BFC\n0x8EA3D5EF\t0x7C18\n0x8EA3D5F0\t0x7C08\n0x8EA3D5F1\t0x7C12\n0x8EA3D5F2\t0x429D\n0x8EA3D5F3\t0x429C\n0x8EA3D5F4\t0x7CDB\n0x8EA3D5F5\t0x7CDA\n0x8EA3D5F6\t0x430F\n0x8EA3D5F7\t0x4311\n0x8EA3D5F8\t0x430D\n0x8EA3D5F9\t0x7E2C\n0x8EA3D5FA\t0x7E4D\n0x8EA3D5FB\t0x4314\n0x8EA3D5FC\t0x4313\n0x8EA3D5FD\t0x7F46\n0x8EA3D5FE\t0x7FF6\n0x8EA3D6A1\t0x802B\n0x8EA3D6A2\t0x8074\n0x8EA3D6A3\t0x81B8\n0x8EA3D6A4\t0x81C8\n0x8EA3D6A5\t0x4482\n0x8EA3D6A6\t0x4483\n0x8EA3D6A7\t0x454D\n0x8EA3D6A8\t0x8592\n0x8EA3D6A9\t0x8593\n0x8EA3D6AA\t0x454F\n0x8EA3D6AB\t0x857F\n0x8EA3D6AC\t0x85AB\n0x8EA3D6AD\t0x8597\n0x8EA3D6AE\t0x454C\n0x8EA3D6AF\t0x4551\n0x8EA3D6B0\t0x85AC\n0x8EA3D6B1\t0x45EE\n0x8EA3D6B2\t0x45E8\n0x8EA3D6B3\t0x4CCB\n0x8EA3D6B4\t0x87CE\n0x8EA3D6B5\t0x45EB\n0x8EA3D6B6\t0x87CD\n0x8EA3D6B7\t0x45E2\n0x8EA3D6B8\t0x45E6\n0x8EA3D6B9\t0x87C1\n0x8EA3D6BA\t0x87B1\n0x8EA3D6BB\t0x87C7\n0x8EA3D6BC\t0x45EC\n0x8EA3D6BD\t0x8940\n0x8EA3D6BE\t0x4659\n0x8EA3D6BF\t0x893F\n0x8EA3D6C0\t0x8939\n0x8EA3D6C1\t0x465D\n0x8EA3D6C2\t0x8943\n0x8EA3D6C3\t0x4657\n0x8EA3D6C4\t0x465B\n0x8EA3D6C5\t0x4656\n0x8EA3D6C6\t0x89AB\n0x8EA3D6C7\t0x46FE\n0x8EA3D6C8\t0x8B1F\n0x8EA3D6C9\t0x8B09\n0x8EA3D6CA\t0x8B0C\n0x8EA3D6CB\t0x4700\n0x8EA3D6CC\t0x4701\n0x8EA3D6CD\t0x8C40\n0x8EA3D6CE\t0x4742\n0x8EA3D6CF\t0x8C96\n0x8EA3D6D0\t0x4760\n0x8EA3D6D1\t0x8CF6\n0x8EA3D6D2\t0x8CF7\n0x8EA3D6D3\t0x481D\n0x8EA3D6D4\t0x8E46\n0x8EA3D6D5\t0x8E4F\n0x8EA3D6D6\t0x483E\n0x8EA3D6D7\t0x4869\n0x8EA3D6D8\t0x4865\n0x8EA3D6D9\t0x8F3D\n0x8EA3D6DA\t0x8F41\n0x8EA3D6DB\t0x9366\n0x8EA3D6DC\t0x9378\n0x8EA3D6DD\t0x935D\n0x8EA3D6DE\t0x9369\n0x8EA3D6DF\t0x9374\n0x8EA3D6E0\t0x937D\n0x8EA3D6E1\t0x936E\n0x8EA3D6E2\t0x9372\n0x8EA3D6E3\t0x9373\n0x8EA3D6E4\t0x9362\n0x8EA3D6E5\t0x9348\n0x8EA3D6E6\t0x9353\n0x8EA3D6E7\t0x935F\n0x8EA3D6E8\t0x9368\n0x8EA3D6E9\t0x4938\n0x8EA3D6EA\t0x937F\n0x8EA3D6EB\t0x936B\n0x8EA3D6EC\t0x49AE\n0x8EA3D6ED\t0x95C4\n0x8EA3D6EE\t0x49AD\n0x8EA3D6EF\t0x96AF\n0x8EA3D6F0\t0x96AD\n0x8EA3D6F1\t0x96B2\n0x8EA3D6F2\t0x4A02\n0x8EA3D6F3\t0x4A1F\n0x8EA3D6F4\t0x971A\n0x8EA3D6F5\t0x971B\n0x8EA3D6F6\t0x4A22\n0x8EA3D6F7\t0x4A20\n0x8EA3D6F8\t0x2F9F5\n0x8EA3D6F9\t0x4A6C\n0x8EA3D6FA\t0x979B\n0x8EA3D6FB\t0x979F\n0x8EA3D6FC\t0x4A68\n0x8EA3D6FD\t0x4A6D\n0x8EA3D6FE\t0x4A6E\n0x8EA3D7A1\t0x4AA0\n0x8EA3D7A2\t0x4ACE\n0x8EA3D7A3\t0x4AD0\n0x8EA3D7A4\t0x4AD1\n0x8EA3D7A5\t0x4ACB\n0x8EA3D7A6\t0x9840\n0x8EA3D7A7\t0x4AD2\n0x8EA3D7A8\t0x9847\n0x8EA3D7A9\t0x4AD3\n0x8EA3D7AA\t0x98B7\n0x8EA3D7AB\t0x4B20\n0x8EA3D7AC\t0x4B4E\n0x8EA3D7AD\t0x4B4B\n0x8EA3D7AE\t0x4B72\n0x8EA3D7AF\t0x4B70\n0x8EA3D7B0\t0x99A2\n0x8EA3D7B1\t0x4B92\n0x8EA3D7B2\t0x4B8F\n0x8EA3D7B3\t0x9A00\n0x8EA3D7B4\t0x99F3\n0x8EA3D7B5\t0x4B90\n0x8EA3D7B6\t0x29937\n0x8EA3D7B7\t0x99F5\n0x8EA3D7B8\t0x4BD9\n0x8EA3D7B9\t0x4BD5\n0x8EA3D7BA\t0x9ABD\n0x8EA3D7BB\t0x9B00\n0x8EA3D7BC\t0x9B02\n0x8EA3D7BD\t0x4BFA\n0x8EA3D7BE\t0x9B34\n0x8EA3D7BF\t0x9B49\n0x8EA3D7C0\t0x9B9F\n0x8EA3D7C1\t0x4C4B\n0x8EA3D7C2\t0x9BA3\n0x8EA3D7C3\t0x9BCD\n0x8EA3D7C4\t0x9B99\n0x8EA3D7C5\t0x9B9D\n0x8EA3D7C6\t0x4CD0\n0x8EA3D7C7\t0x4CCE\n0x8EA3D7C8\t0x9D39\n0x8EA3D7C9\t0x4CCF\n0x8EA3D7CA\t0x9D44\n0x8EA3D7CB\t0x4CC4\n0x8EA3D7CC\t0x4CCC\n0x8EA3D7CD\t0x9D35\n0x8EA3D7CE\t0x4CD2\n0x8EA3D7CF\t0x4D35\n0x8EA3D7D0\t0x9EAF\n0x8EA3D7D1\t0x3E03\n0x8EA3D7D2\t0x512F\n0x8EA3D7D3\t0x349E\n0x8EA3D7D4\t0x34AF\n0x8EA3D7D5\t0x9F8E\n0x8EA3D7D6\t0x360C\n0x8EA3D7D7\t0x569F\n0x8EA3D7D8\t0x569B\n0x8EA3D7D9\t0x569E\n0x8EA3D7DA\t0x5696\n0x8EA3D7DB\t0x5694\n0x8EA3D7DC\t0x56A0\n0x8EA3D7DD\t0x367C\n0x8EA3D7DE\t0x5B3B\n0x8EA3D7DF\t0x3730\n0x8EA3D7E0\t0x3731\n0x8EA3D7E1\t0x5B3A\n0x8EA3D7E2\t0x5DC1\n0x8EA3D7E3\t0x5F4D\n0x8EA3D7E4\t0x5F5D\n0x8EA3D7E5\t0x61F3\n0x8EA3D7E6\t0x39A1\n0x8EA3D7E7\t0x399E\n0x8EA3D7E8\t0x3A68\n0x8EA3D7E9\t0x3A61\n0x8EA3D7EA\t0x64F6\n0x8EA3D7EB\t0x64E5\n0x8EA3D7EC\t0x64EA\n0x8EA3D7ED\t0x64E7\n0x8EA3D7EE\t0x6505\n0x8EA3D7EF\t0x3A65\n0x8EA3D7F0\t0x64F9\n0x8EA3D7F1\t0x3A66\n0x8EA3D7F2\t0x3A6A\n0x8EA3D7F3\t0x3AAB\n0x8EA3D7F4\t0x6AAB\n0x8EA3D7F5\t0x6AED\n0x8EA3D7F6\t0x6AB2\n0x8EA3D7F7\t0x6AB0\n0x8EA3D7F8\t0x6AB5\n0x8EA3D7F9\t0x6ABE\n0x8EA3D7FA\t0x6AC1\n0x8EA3D7FB\t0x6AC8\n0x8EA3D7FC\t0x3BF9\n0x8EA3D7FD\t0x6AC0\n0x8EA3D7FE\t0x6ABC\n0x8EA3D8A1\t0x6AB1\n0x8EA3D8A2\t0x6AC4\n0x8EA3D8A3\t0x6ABF\n0x8EA3D8A4\t0x3C58\n0x8EA3D8A5\t0x3C8A\n0x8EA3D8A6\t0x7008\n0x8EA3D8A7\t0x7003\n0x8EA3D8A8\t0x6FFD\n0x8EA3D8A9\t0x7010\n0x8EA3D8AA\t0x7002\n0x8EA3D8AB\t0x7013\n0x8EA3D8AC\t0x3E04\n0x8EA3D8AD\t0x71FA\n0x8EA3D8AE\t0x7200\n0x8EA3D8AF\t0x74B9\n0x8EA3D8B0\t0x74BC\n0x8EA3D8B1\t0x3F02\n0x8EA3D8B2\t0x765B\n0x8EA3D8B3\t0x7651\n0x8EA3D8B4\t0x764F\n0x8EA3D8B5\t0x76EB\n0x8EA3D8B6\t0x77B8\n0x8EA3D8B7\t0x4079\n0x8EA3D8B8\t0x77B9\n0x8EA3D8B9\t0x77C1\n0x8EA3D8BA\t0x77C0\n0x8EA3D8BB\t0x77BE\n0x8EA3D8BC\t0x790B\n0x8EA3D8BD\t0x40EB\n0x8EA3D8BE\t0x7907\n0x8EA3D8BF\t0x790A\n0x8EA3D8C0\t0x7908\n0x8EA3D8C1\t0x40E9\n0x8EA3D8C2\t0x790D\n0x8EA3D8C3\t0x7906\n0x8EA3D8C4\t0x7915\n0x8EA3D8C5\t0x79AF\n0x8EA3D8C6\t0x4120\n0x8EA3D8C7\t0x4121\n0x8EA3D8C8\t0x4181\n0x8EA3D8C9\t0x7AF5\n0x8EA3D8CA\t0x424D\n0x8EA3D8CB\t0x4259\n0x8EA3D8CC\t0x7C2E\n0x8EA3D8CD\t0x4258\n0x8EA3D8CE\t0x7C1B\n0x8EA3D8CF\t0x25CD1\n0x8EA3D8D0\t0x7C1A\n0x8EA3D8D1\t0x7C24\n0x8EA3D8D2\t0x42A5\n0x8EA3D8D3\t0x42A9\n0x8EA3D8D4\t0x7CE6\n0x8EA3D8D5\t0x7CE3\n0x8EA3D8D6\t0x431A\n0x8EA3D8D7\t0x4319\n0x8EA3D8D8\t0x7E5D\n0x8EA3D8D9\t0x7E4F\n0x8EA3D8DA\t0x7E66\n0x8EA3D8DB\t0x7E5B\n0x8EA3D8DC\t0x7F47\n0x8EA3D8DD\t0x7FB4\n0x8EA3D8DE\t0x4396\n0x8EA3D8DF\t0x4398\n0x8EA3D8E0\t0x4397\n0x8EA3D8E1\t0x7FFA\n0x8EA3D8E2\t0x802E\n0x8EA3D8E3\t0x265DF\n0x8EA3D8E4\t0x43C8\n0x8EA3D8E5\t0x81CE\n0x8EA3D8E6\t0x4443\n0x8EA3D8E7\t0x4445\n0x8EA3D8E8\t0x8219\n0x8EA3D8E9\t0x4552\n0x8EA3D8EA\t0x4557\n0x8EA3D8EB\t0x85CC\n0x8EA3D8EC\t0x85B2\n0x8EA3D8ED\t0x4555\n0x8EA3D8EE\t0x85BB\n0x8EA3D8EF\t0x85C1\n0x8EA3D8F0\t0x4556\n0x8EA3D8F1\t0x4558\n0x8EA3D8F2\t0x45F2\n0x8EA3D8F3\t0x87E9\n0x8EA3D8F4\t0x87EE\n0x8EA3D8F5\t0x87F0\n0x8EA3D8F6\t0x87D6\n0x8EA3D8F7\t0x880E\n0x8EA3D8F8\t0x87DA\n0x8EA3D8F9\t0x8948\n0x8EA3D8FA\t0x894A\n0x8EA3D8FB\t0x894E\n0x8EA3D8FC\t0x894D\n0x8EA3D8FD\t0x89B1\n0x8EA3D8FE\t0x89B0\n0x8EA3D9A1\t0x89B3\n0x8EA3D9A2\t0x4707\n0x8EA3D9A3\t0x8B38\n0x8EA3D9A4\t0x8B32\n0x8EA3D9A5\t0x4708\n0x8EA3D9A6\t0x8B2D\n0x8EA3D9A7\t0x470A\n0x8EA3D9A8\t0x8B34\n0x8EA3D9A9\t0x431B\n0x8EA3D9AA\t0x8B29\n0x8EA3D9AB\t0x8C74\n0x8EA3D9AC\t0x4761\n0x8EA3D9AD\t0x4762\n0x8EA3D9AE\t0x8D03\n0x8EA3D9AF\t0x47C2\n0x8EA3D9B0\t0x47C6\n0x8EA3D9B1\t0x8DA9\n0x8EA3D9B2\t0x8E58\n0x8EA3D9B3\t0x481E\n0x8EA3D9B4\t0x4825\n0x8EA3D9B5\t0x8EBF\n0x8EA3D9B6\t0x8EC1\n0x8EA3D9B7\t0x8F4A\n0x8EA3D9B8\t0x8FAC\n0x8EA3D9B9\t0x48B0\n0x8EA3D9BA\t0x9089\n0x8EA3D9BB\t0x913D\n0x8EA3D9BC\t0x913C\n0x8EA3D9BD\t0x91A9\n0x8EA3D9BE\t0x93A0\n0x8EA3D9BF\t0x493D\n0x8EA3D9C0\t0x9390\n0x8EA3D9C1\t0x493E\n0x8EA3D9C2\t0x9393\n0x8EA3D9C3\t0x938B\n0x8EA3D9C4\t0x93AD\n0x8EA3D9C5\t0x93BB\n0x8EA3D9C6\t0x93B8\n0x8EA3D9C7\t0x4946\n0x8EA3D9C8\t0x4945\n0x8EA3D9C9\t0x939C\n0x8EA3D9CA\t0x95D8\n0x8EA3D9CB\t0x95D7\n0x8EA3D9CC\t0x4A03\n0x8EA3D9CD\t0x4A26\n0x8EA3D9CE\t0x4A27\n0x8EA3D9CF\t0x975D\n0x8EA3D9D0\t0x97A9\n0x8EA3D9D1\t0x97DA\n0x8EA3D9D2\t0x4A98\n0x8EA3D9D3\t0x4AAD\n0x8EA3D9D4\t0x4AD5\n0x8EA3D9D5\t0x4ADA\n0x8EA3D9D6\t0x9854\n0x8EA3D9D7\t0x4AD9\n0x8EA3D9D8\t0x9855\n0x8EA3D9D9\t0x984B\n0x8EA3D9DA\t0x4ADD\n0x8EA3D9DB\t0x983F\n0x8EA3D9DC\t0x98B9\n0x8EA3D9DD\t0x4B15\n0x8EA3D9DE\t0x4B16\n0x8EA3D9DF\t0x4B17\n0x8EA3D9E0\t0x4B21\n0x8EA3D9E1\t0x9938\n0x8EA3D9E2\t0x9936\n0x8EA3D9E3\t0x9940\n0x8EA3D9E4\t0x4B4C\n0x8EA3D9E5\t0x993B\n0x8EA3D9E6\t0x9939\n0x8EA3D9E7\t0x99A4\n0x8EA3D9E8\t0x4B96\n0x8EA3D9E9\t0x4B98\n0x8EA3D9EA\t0x9A08\n0x8EA3D9EB\t0x9A0C\n0x8EA3D9EC\t0x4B9B\n0x8EA3D9ED\t0x9A10\n0x8EA3D9EE\t0x4BFF\n0x8EA3D9EF\t0x9B07\n0x8EA3D9F0\t0x4C25\n0x8EA3D9F1\t0x9BD2\n0x8EA3D9F2\t0x4C4F\n0x8EA3D9F3\t0x9BC2\n0x8EA3D9F4\t0x9BBB\n0x8EA3D9F5\t0x9BCC\n0x8EA3D9F6\t0x9BCB\n0x8EA3D9F7\t0x4C56\n0x8EA3D9F8\t0x4C54\n0x8EA3D9F9\t0x9D4D\n0x8EA3D9FA\t0x9D63\n0x8EA3D9FB\t0x9D4E\n0x8EA3D9FC\t0x4CD8\n0x8EA3D9FD\t0x9D50\n0x8EA3D9FE\t0x9D55\n0x8EA3DAA1\t0x4CD7\n0x8EA3DAA2\t0x9D5E\n0x8EA3DAA3\t0x4D26\n0x8EA3DAA4\t0x9E90\n0x8EA3DAA5\t0x9EB2\n0x8EA3DAA6\t0x9EB1\n0x8EA3DAA7\t0x4D38\n0x8EA3DAA8\t0x9ECA\n0x8EA3DAA9\t0x9F02\n0x8EA3DAAA\t0x9F27\n0x8EA3DAAB\t0x9F26\n0x8EA3DAAC\t0x4D8A\n0x8EA3DAAD\t0x56AF\n0x8EA3DAAE\t0x58E0\n0x8EA3DAAF\t0x58DC\n0x8EA3DAB0\t0x3734\n0x8EA3DAB1\t0x5B39\n0x8EA3DAB2\t0x3735\n0x8EA3DAB3\t0x2F86A\n0x8EA3DAB4\t0x5B7C\n0x8EA3DAB5\t0x5BF3\n0x8EA3DAB6\t0x2F870\n0x8EA3DAB7\t0x37A1\n0x8EA3DAB8\t0x5C6B\n0x8EA3DAB9\t0x5DC4\n0x8EA3DABA\t0x650B\n0x8EA3DABB\t0x6508\n0x8EA3DABC\t0x650A\n0x8EA3DABD\t0x3A6C\n0x8EA3DABE\t0x3A6D\n0x8EA3DABF\t0x65DC\n0x8EA3DAC0\t0x3B29\n0x8EA3DAC1\t0x3B2A\n0x8EA3DAC2\t0x66E1\n0x8EA3DAC3\t0x66DF\n0x8EA3DAC4\t0x6ACE\n0x8EA3DAC5\t0x6AD4\n0x8EA3DAC6\t0x6AE3\n0x8EA3DAC7\t0x6AD7\n0x8EA3DAC8\t0x6AE2\n0x8EA3DAC9\t0x3C00\n0x8EA3DACA\t0x3C08\n0x8EA3DACB\t0x3C06\n0x8EA3DACC\t0x3C05\n0x8EA3DACD\t0x6AD8\n0x8EA3DACE\t0x6AD5\n0x8EA3DACF\t0x6AD2\n0x8EA3DAD0\t0x3CB1\n0x8EA3DAD1\t0x3D88\n0x8EA3DAD2\t0x701E\n0x8EA3DAD3\t0x702C\n0x8EA3DAD4\t0x7025\n0x8EA3DAD5\t0x6FF3\n0x8EA3DAD6\t0x7204\n0x8EA3DAD7\t0x7208\n0x8EA3DAD8\t0x7215\n0x8EA3DAD9\t0x3E09\n0x8EA3DADA\t0x74C4\n0x8EA3DADB\t0x74C9\n0x8EA3DADC\t0x74C7\n0x8EA3DADD\t0x74C8\n0x8EA3DADE\t0x76A9\n0x8EA3DADF\t0x77C6\n0x8EA3DAE0\t0x77C5\n0x8EA3DAE1\t0x7918\n0x8EA3DAE2\t0x791A\n0x8EA3DAE3\t0x7920\n0x8EA3DAE4\t0x4122\n0x8EA3DAE5\t0x7A66\n0x8EA3DAE6\t0x7A64\n0x8EA3DAE7\t0x7A6A\n0x8EA3DAE8\t0x41D5\n0x8EA3DAE9\t0x4261\n0x8EA3DAEA\t0x425D\n0x8EA3DAEB\t0x4262\n0x8EA3DAEC\t0x424F\n0x8EA3DAED\t0x4260\n0x8EA3DAEE\t0x7C35\n0x8EA3DAEF\t0x7C34\n0x8EA3DAF0\t0x42AA\n0x8EA3DAF1\t0x4322\n0x8EA3DAF2\t0x7E6C\n0x8EA3DAF3\t0x4321\n0x8EA3DAF4\t0x7E6E\n0x8EA3DAF5\t0x7E71\n0x8EA3DAF6\t0x4446\n0x8EA3DAF7\t0x81D4\n0x8EA3DAF8\t0x81D6\n0x8EA3DAF9\t0x821A\n0x8EA3DAFA\t0x8262\n0x8EA3DAFB\t0x8265\n0x8EA3DAFC\t0x8276\n0x8EA3DAFD\t0x85DB\n0x8EA3DAFE\t0x85D6\n0x8EA3DBA1\t0x4562\n0x8EA3DBA2\t0x85E7\n0x8EA3DBA3\t0x4560\n0x8EA3DBA4\t0x4564\n0x8EA3DBA5\t0x85F4\n0x8EA3DBA6\t0x2F9B6\n0x8EA3DBA7\t0x87FD\n0x8EA3DBA8\t0x87D5\n0x8EA3DBA9\t0x8807\n0x8EA3DBAA\t0x45F6\n0x8EA3DBAB\t0x880F\n0x8EA3DBAC\t0x87F8\n0x8EA3DBAD\t0x2F9C1\n0x8EA3DBAE\t0x4619\n0x8EA3DBAF\t0x8987\n0x8EA3DBB0\t0x4691\n0x8EA3DBB1\t0x89B5\n0x8EA3DBB2\t0x89F5\n0x8EA3DBB3\t0x470D\n0x8EA3DBB4\t0x8B3F\n0x8EA3DBB5\t0x8B43\n0x8EA3DBB6\t0x8B4C\n0x8EA3DBB7\t0x4765\n0x8EA3DBB8\t0x8D0B\n0x8EA3DBB9\t0x8E6B\n0x8EA3DBBA\t0x8E68\n0x8EA3DBBB\t0x8E70\n0x8EA3DBBC\t0x8E75\n0x8EA3DBBD\t0x8E77\n0x8EA3DBBE\t0x483F\n0x8EA3DBBF\t0x8EC3\n0x8EA3DBC0\t0x494B\n0x8EA3DBC1\t0x93E9\n0x8EA3DBC2\t0x93EA\n0x8EA3DBC3\t0x93CB\n0x8EA3DBC4\t0x93C5\n0x8EA3DBC5\t0x93C6\n0x8EA3DBC6\t0x4948\n0x8EA3DBC7\t0x93ED\n0x8EA3DBC8\t0x93D3\n0x8EA3DBC9\t0x4952\n0x8EA3DBCA\t0x93E5\n0x8EA3DBCB\t0x494A\n0x8EA3DBCC\t0x4951\n0x8EA3DBCD\t0x93DB\n0x8EA3DBCE\t0x93EB\n0x8EA3DBCF\t0x93E0\n0x8EA3DBD0\t0x93C1\n0x8EA3DBD1\t0x4950\n0x8EA3DBD2\t0x494C\n0x8EA3DBD3\t0x95DD\n0x8EA3DBD4\t0x49EE\n0x8EA3DBD5\t0x4A04\n0x8EA3DBD6\t0x4A06\n0x8EA3DBD7\t0x4A2D\n0x8EA3DBD8\t0x4A2E\n0x8EA3DBD9\t0x4A2F\n0x8EA3DBDA\t0x4A7B\n0x8EA3DBDB\t0x4A78\n0x8EA3DBDC\t0x4A77\n0x8EA3DBDD\t0x97B2\n0x8EA3DBDE\t0x97B4\n0x8EA3DBDF\t0x97B1\n0x8EA3DBE0\t0x97B5\n0x8EA3DBE1\t0x97F2\n0x8EA3DBE2\t0x4AA2\n0x8EA3DBE3\t0x4AA1\n0x8EA3DBE4\t0x4AE3\n0x8EA3DBE5\t0x9856\n0x8EA3DBE6\t0x4B1A\n0x8EA3DBE7\t0x4B19\n0x8EA3DBE8\t0x4B57\n0x8EA3DBE9\t0x9944\n0x8EA3DBEA\t0x4B9E\n0x8EA3DBEB\t0x9A26\n0x8EA3DBEC\t0x9A1F\n0x8EA3DBED\t0x9A18\n0x8EA3DBEE\t0x9A21\n0x8EA3DBEF\t0x9A17\n0x8EA3DBF0\t0x4BDD\n0x8EA3DBF1\t0x9B09\n0x8EA3DBF2\t0x4C05\n0x8EA3DBF3\t0x4C28\n0x8EA3DBF4\t0x9BC5\n0x8EA3DBF5\t0x9BDF\n0x8EA3DBF6\t0x4C60\n0x8EA3DBF7\t0x9BE3\n0x8EA3DBF8\t0x4C66\n0x8EA3DBF9\t0x9BE9\n0x8EA3DBFA\t0x9BEE\n0x8EA3DBFB\t0x4C67\n0x8EA3DBFC\t0x4C68\n0x8EA3DBFD\t0x9D66\n0x8EA3DBFE\t0x9D7A\n0x8EA3DCA1\t0x4CDE\n0x8EA3DCA2\t0x9D6E\n0x8EA3DCA3\t0x9D91\n0x8EA3DCA4\t0x9D83\n0x8EA3DCA5\t0x9D76\n0x8EA3DCA6\t0x9D7E\n0x8EA3DCA7\t0x9D6D\n0x8EA3DCA8\t0x4CE1\n0x8EA3DCA9\t0x9E95\n0x8EA3DCAA\t0x9EE3\n0x8EA3DCAB\t0x4D69\n0x8EA3DCAC\t0x4D77\n0x8EA3DCAD\t0x9F03\n0x8EA3DCAE\t0x9F04\n0x8EA3DCAF\t0x2FA19\n0x8EA3DCB0\t0x9F17\n0x8EA3DCB1\t0x34A6\n0x8EA3DCB2\t0x5136\n0x8EA3DCB3\t0x34A5\n0x8EA3DCB4\t0x5336\n0x8EA3DCB5\t0x3614\n0x8EA3DCB6\t0x5B42\n0x8EA3DCB7\t0x3736\n0x8EA3DCB8\t0x3738\n0x8EA3DCB9\t0x5B44\n0x8EA3DCBA\t0x5B46\n0x8EA3DCBB\t0x5B7E\n0x8EA3DCBC\t0x5DCA\n0x8EA3DCBD\t0x5DC8\n0x8EA3DCBE\t0x5DCC\n0x8EA3DCBF\t0x5EF0\n0x8EA3DCC0\t0x3A70\n0x8EA3DCC1\t0x6585\n0x8EA3DCC2\t0x66E5\n0x8EA3DCC3\t0x66E7\n0x8EA3DCC4\t0x3B2B\n0x8EA3DCC5\t0x3C11\n0x8EA3DCC6\t0x3C0A\n0x8EA3DCC7\t0x6AF4\n0x8EA3DCC8\t0x3C0D\n0x8EA3DCC9\t0x6AE9\n0x8EA3DCCA\t0x3C16\n0x8EA3DCCB\t0x3C10\n0x8EA3DCCC\t0x3C09\n0x8EA3DCCD\t0x3C0E\n0x8EA3DCCE\t0x3C7A\n0x8EA3DCCF\t0x703D\n0x8EA3DCD0\t0x3D8C\n0x8EA3DCD1\t0x7036\n0x8EA3DCD2\t0x3D91\n0x8EA3DCD3\t0x7216\n0x8EA3DCD4\t0x3E0A\n0x8EA3DCD5\t0x7212\n0x8EA3DCD6\t0x720F\n0x8EA3DCD7\t0x7217\n0x8EA3DCD8\t0x7211\n0x8EA3DCD9\t0x720B\n0x8EA3DCDA\t0x3E08\n0x8EA3DCDB\t0x3E0B\n0x8EA3DCDC\t0x74CD\n0x8EA3DCDD\t0x74D0\n0x8EA3DCDE\t0x74CC\n0x8EA3DCDF\t0x74CE\n0x8EA3DCE0\t0x74D1\n0x8EA3DCE1\t0x3F07\n0x8EA3DCE2\t0x7589\n0x8EA3DCE3\t0x40F2\n0x8EA3DCE4\t0x7A6F\n0x8EA3DCE5\t0x7C4B\n0x8EA3DCE6\t0x7C44\n0x8EA3DCE7\t0x7C55\n0x8EA3DCE8\t0x42AE\n0x8EA3DCE9\t0x4324\n0x8EA3DCEA\t0x4326\n0x8EA3DCEB\t0x4327\n0x8EA3DCEC\t0x7E7F\n0x8EA3DCED\t0x8B71\n0x8EA3DCEE\t0x4399\n0x8EA3DCEF\t0x802F\n0x8EA3DCF0\t0x807A\n0x8EA3DCF1\t0x807B\n0x8EA3DCF2\t0x807C\n0x8EA3DCF3\t0x455F\n0x8EA3DCF4\t0x456A\n0x8EA3DCF5\t0x4571\n0x8EA3DCF6\t0x85FC\n0x8EA3DCF7\t0x8610\n0x8EA3DCF8\t0x8602\n0x8EA3DCF9\t0x456C\n0x8EA3DCFA\t0x456F\n0x8EA3DCFB\t0x85EE\n0x8EA3DCFC\t0x8603\n0x8EA3DCFD\t0x4568\n0x8EA3DCFE\t0x860D\n0x8EA3DDA1\t0x8613\n0x8EA3DDA2\t0x8608\n0x8EA3DDA3\t0x860F\n0x8EA3DDA4\t0x8818\n0x8EA3DDA5\t0x8812\n0x8EA3DDA6\t0x4601\n0x8EA3DDA7\t0x4668\n0x8EA3DDA8\t0x8967\n0x8EA3DDA9\t0x8965\n0x8EA3DDAA\t0x89BB\n0x8EA3DDAB\t0x8B69\n0x8EA3DDAC\t0x8B62\n0x8EA3DDAD\t0x4713\n0x8EA3DDAE\t0x8B6E\n0x8EA3DDAF\t0x4716\n0x8EA3DDB0\t0x8B61\n0x8EA3DDB1\t0x4718\n0x8EA3DDB2\t0x8B64\n0x8EA3DDB3\t0x8B4D\n0x8EA3DDB4\t0x8C51\n0x8EA3DDB5\t0x4789\n0x8EA3DDB6\t0x47C8\n0x8EA3DDB7\t0x8E83\n0x8EA3DDB8\t0x8EC6\n0x8EA3DDB9\t0x4884\n0x8EA3DDBA\t0x941F\n0x8EA3DDBB\t0x4954\n0x8EA3DDBC\t0x9404\n0x8EA3DDBD\t0x9417\n0x8EA3DDBE\t0x9408\n0x8EA3DDBF\t0x9405\n0x8EA3DDC0\t0x4956\n0x8EA3DDC1\t0x93F3\n0x8EA3DDC2\t0x941E\n0x8EA3DDC3\t0x9402\n0x8EA3DDC4\t0x941A\n0x8EA3DDC5\t0x941B\n0x8EA3DDC6\t0x9427\n0x8EA3DDC7\t0x941C\n0x8EA3DDC8\t0x495A\n0x8EA3DDC9\t0x96B5\n0x8EA3DDCA\t0x4A05\n0x8EA3DDCB\t0x4A07\n0x8EA3DDCC\t0x9733\n0x8EA3DDCD\t0x4A31\n0x8EA3DDCE\t0x9734\n0x8EA3DDCF\t0x9731\n0x8EA3DDD0\t0x97B8\n0x8EA3DDD1\t0x97BA\n0x8EA3DDD2\t0x4AA3\n0x8EA3DDD3\t0x97FC\n0x8EA3DDD4\t0x4AEB\n0x8EA3DDD5\t0x4B1C\n0x8EA3DDD6\t0x98C3\n0x8EA3DDD7\t0x4B5A\n0x8EA3DDD8\t0x994D\n0x8EA3DDD9\t0x4B5B\n0x8EA3DDDA\t0x9A2F\n0x8EA3DDDB\t0x4BA6\n0x8EA3DDDC\t0x4BAA\n0x8EA3DDDD\t0x4BA5\n0x8EA3DDDE\t0x9AC9\n0x8EA3DDDF\t0x4BE1\n0x8EA3DDE0\t0x9AC8\n0x8EA3DDE1\t0x9AC4\n0x8EA3DDE2\t0x9B2A\n0x8EA3DDE3\t0x9B38\n0x8EA3DDE4\t0x9B50\n0x8EA3DDE5\t0x4C2A\n0x8EA3DDE6\t0x9C0A\n0x8EA3DDE7\t0x9BFB\n0x8EA3DDE8\t0x9C04\n0x8EA3DDE9\t0x9BFC\n0x8EA3DDEA\t0x9BFE\n0x8EA3DDEB\t0x4C72\n0x8EA3DDEC\t0x4C6F\n0x8EA3DDED\t0x4C73\n0x8EA3DDEE\t0x9C02\n0x8EA3DDEF\t0x9BF6\n0x8EA3DDF0\t0x9C1B\n0x8EA3DDF1\t0x9BF9\n0x8EA3DDF2\t0x9C15\n0x8EA3DDF3\t0x9C10\n0x8EA3DDF4\t0x9BFF\n0x8EA3DDF5\t0x9C00\n0x8EA3DDF6\t0x9C0C\n0x8EA3DDF7\t0x4C6B\n0x8EA3DDF8\t0x4CE6\n0x8EA3DDF9\t0x9D95\n0x8EA3DDFA\t0x9DA5\n0x8EA3DDFB\t0x4CE9\n0x8EA3DDFC\t0x4CEC\n0x8EA3DDFD\t0x4CE8\n0x8EA3DDFE\t0x4CF0\n0x8EA3DEA1\t0x9E98\n0x8EA3DEA2\t0x9EC1\n0x8EA3DEA3\t0x4D8C\n0x8EA3DEA4\t0x9F5A\n0x8EA3DEA5\t0x5164\n0x8EA3DEA6\t0x56BB\n0x8EA3DEA7\t0x3615\n0x8EA3DEA8\t0x58E6\n0x8EA3DEA9\t0x5B49\n0x8EA3DEAA\t0x5BF7\n0x8EA3DEAB\t0x3771\n0x8EA3DEAC\t0x3826\n0x8EA3DEAD\t0x5DD0\n0x8EA3DEAE\t0x38C6\n0x8EA3DEAF\t0x5FC2\n0x8EA3DEB0\t0x39A8\n0x8EA3DEB1\t0x6511\n0x8EA3DEB2\t0x3A73\n0x8EA3DEB3\t0x6AFF\n0x8EA3DEB4\t0x6AFE\n0x8EA3DEB5\t0x6AFD\n0x8EA3DEB6\t0x3C15\n0x8EA3DEB7\t0x6B01\n0x8EA3DEB8\t0x3D98\n0x8EA3DEB9\t0x3D97\n0x8EA3DEBA\t0x704B\n0x8EA3DEBB\t0x704D\n0x8EA3DEBC\t0x7047\n0x8EA3DEBD\t0x74D3\n0x8EA3DEBE\t0x7668\n0x8EA3DEBF\t0x7667\n0x8EA3DEC0\t0x3FD7\n0x8EA3DEC1\t0x4080\n0x8EA3DEC2\t0x77D1\n0x8EA3DEC3\t0x7930\n0x8EA3DEC4\t0x7932\n0x8EA3DEC5\t0x792E\n0x8EA3DEC6\t0x4188\n0x8EA3DEC7\t0x9F9D\n0x8EA3DEC8\t0x7AC9\n0x8EA3DEC9\t0x7AC8\n0x8EA3DECA\t0x4269\n0x8EA3DECB\t0x7C56\n0x8EA3DECC\t0x7C51\n0x8EA3DECD\t0x426B\n0x8EA3DECE\t0x4329\n0x8EA3DECF\t0x4328\n0x8EA3DED0\t0x7E85\n0x8EA3DED1\t0x7E89\n0x8EA3DED2\t0x7E8E\n0x8EA3DED3\t0x7E84\n0x8EA3DED4\t0x445F\n0x8EA3DED5\t0x826A\n0x8EA3DED6\t0x862B\n0x8EA3DED7\t0x862F\n0x8EA3DED8\t0x8628\n0x8EA3DED9\t0x4574\n0x8EA3DEDA\t0x8616\n0x8EA3DEDB\t0x8615\n0x8EA3DEDC\t0x861D\n0x8EA3DEDD\t0x881A\n0x8EA3DEDE\t0x4602\n0x8EA3DEDF\t0x466A\n0x8EA3DEE0\t0x4694\n0x8EA3DEE1\t0x89BC\n0x8EA3DEE2\t0x8B75\n0x8EA3DEE3\t0x8B7C\n0x8EA3DEE4\t0x478A\n0x8EA3DEE5\t0x8D11\n0x8EA3DEE6\t0x8D12\n0x8EA3DEE7\t0x8F5C\n0x8EA3DEE8\t0x91BB\n0x8EA3DEE9\t0x4964\n0x8EA3DEEA\t0x93F4\n0x8EA3DEEB\t0x495E\n0x8EA3DEEC\t0x4961\n0x8EA3DEED\t0x942D\n0x8EA3DEEE\t0x4965\n0x8EA3DEEF\t0x4966\n0x8EA3DEF0\t0x96E4\n0x8EA3DEF1\t0x9737\n0x8EA3DEF2\t0x9736\n0x8EA3DEF3\t0x9767\n0x8EA3DEF4\t0x97BE\n0x8EA3DEF5\t0x97BD\n0x8EA3DEF6\t0x97E2\n0x8EA3DEF7\t0x9868\n0x8EA3DEF8\t0x9866\n0x8EA3DEF9\t0x98C8\n0x8EA3DEFA\t0x98CA\n0x8EA3DEFB\t0x98C7\n0x8EA3DEFC\t0x98DC\n0x8EA3DEFD\t0x4B5F\n0x8EA3DEFE\t0x994F\n0x8EA3DFA1\t0x99A9\n0x8EA3DFA2\t0x9A3C\n0x8EA3DFA3\t0x4BAF\n0x8EA3DFA4\t0x9A3B\n0x8EA3DFA5\t0x9ACE\n0x8EA3DFA6\t0x4C0D\n0x8EA3DFA7\t0x9B14\n0x8EA3DFA8\t0x9B53\n0x8EA3DFA9\t0x4C7C\n0x8EA3DFAA\t0x9C2E\n0x8EA3DFAB\t0x4C7A\n0x8EA3DFAC\t0x9C1F\n0x8EA3DFAD\t0x4C76\n0x8EA3DFAE\t0x4C79\n0x8EA3DFAF\t0x4C7D\n0x8EA3DFB0\t0x4C77\n0x8EA3DFB1\t0x9DB0\n0x8EA3DFB2\t0x9DBD\n0x8EA3DFB3\t0x4CF6\n0x8EA3DFB4\t0x4CF1\n0x8EA3DFB5\t0x9DAE\n0x8EA3DFB6\t0x9DC4\n0x8EA3DFB7\t0x9E7B\n0x8EA3DFB8\t0x400B\n0x8EA3DFB9\t0x4D29\n0x8EA3DFBA\t0x9E9E\n0x8EA3DFBB\t0x4D6F\n0x8EA3DFBC\t0x9F05\n0x8EA3DFBD\t0x4D9A\n0x8EA3DFBE\t0x9F69\n0x8EA3DFBF\t0x9FA1\n0x8EA3DFC0\t0x56C7\n0x8EA3DFC1\t0x571D\n0x8EA3DFC2\t0x5B4A\n0x8EA3DFC3\t0x5DD3\n0x8EA3DFC4\t0x3869\n0x8EA3DFC5\t0x5F72\n0x8EA3DFC6\t0x6202\n0x8EA3DFC7\t0x39AB\n0x8EA3DFC8\t0x6235\n0x8EA3DFC9\t0x6527\n0x8EA3DFCA\t0x651E\n0x8EA3DFCB\t0x651F\n0x8EA3DFCC\t0x3B2C\n0x8EA3DFCD\t0x3B2D\n0x8EA3DFCE\t0x6B07\n0x8EA3DFCF\t0x6B06\n0x8EA3DFD0\t0x3C17\n0x8EA3DFD1\t0x3D9A\n0x8EA3DFD2\t0x7054\n0x8EA3DFD3\t0x721C\n0x8EA3DFD4\t0x7220\n0x8EA3DFD5\t0x7AF8\n0x8EA3DFD6\t0x426E\n0x8EA3DFD7\t0x7C5D\n0x8EA3DFD8\t0x7C58\n0x8EA3DFD9\t0x432C\n0x8EA3DFDA\t0x7E92\n0x8EA3DFDB\t0x7F4E\n0x8EA3DFDC\t0x43CA\n0x8EA3DFDD\t0x4578\n0x8EA3DFDE\t0x4606\n0x8EA3DFDF\t0x8827\n0x8EA3DFE0\t0x4607\n0x8EA3DFE1\t0x8B81\n0x8EA3DFE2\t0x8B83\n0x8EA3DFE3\t0x4720\n0x8EA3DFE4\t0x8C44\n0x8EA3DFE5\t0x4753\n0x8EA3DFE6\t0x47CE\n0x8EA3DFE7\t0x487A\n0x8EA3DFE8\t0x4879\n0x8EA3DFE9\t0x9442\n0x8EA3DFEA\t0x944D\n0x8EA3DFEB\t0x9454\n0x8EA3DFEC\t0x944E\n0x8EA3DFED\t0x496B\n0x8EA3DFEE\t0x9443\n0x8EA3DFEF\t0x4967\n0x8EA3DFF0\t0x496D\n0x8EA3DFF1\t0x973C\n0x8EA3DFF2\t0x9740\n0x8EA3DFF3\t0x97C0\n0x8EA3DFF4\t0x4A85\n0x8EA3DFF5\t0x4AB0\n0x8EA3DFF6\t0x4AF3\n0x8EA3DFF7\t0x4B63\n0x8EA3DFF8\t0x995A\n0x8EA3DFF9\t0x9A51\n0x8EA3DFFA\t0x4BB6\n0x8EA3DFFB\t0x9ADD\n0x8EA3DFFC\t0x4C82\n0x8EA3DFFD\t0x4C7F\n0x8EA3DFFE\t0x9C38\n0x8EA3E0A1\t0x4C86\n0x8EA3E0A2\t0x9C45\n0x8EA3E0A3\t0x9C3A\n0x8EA3E0A4\t0x4C84\n0x8EA3E0A5\t0x9C35\n0x8EA3E0A6\t0x4CFC\n0x8EA3E0A7\t0x4CFD\n0x8EA3E0A8\t0x4CFA\n0x8EA3E0A9\t0x9EF1\n0x8EA3E0AA\t0x4D87\n0x8EA3E0AB\t0x9F93\n0x8EA3E0AC\t0x529A\n0x8EA3E0AD\t0x361A\n0x8EA3E0AE\t0x3619\n0x8EA3E0AF\t0x8641\n0x8EA3E0B0\t0x5DD7\n0x8EA3E0B1\t0x3A75\n0x8EA3E0B2\t0x6528\n0x8EA3E0B3\t0x3C1A\n0x8EA3E0B4\t0x3C1B\n0x8EA3E0B5\t0x3C19\n0x8EA3E0B6\t0x7053\n0x8EA3E0B7\t0x7059\n0x8EA3E0B8\t0x3D9C\n0x8EA3E0B9\t0x7221\n0x8EA3E0BA\t0x3E10\n0x8EA3E0BB\t0x766F\n0x8EA3E0BC\t0x7937\n0x8EA3E0BD\t0x79B5\n0x8EA3E0BE\t0x7C62\n0x8EA3E0BF\t0x7C5E\n0x8EA3E0C0\t0x7CF5\n0x8EA3E0C1\t0x457B\n0x8EA3E0C2\t0x457C\n0x8EA3E0C3\t0x863D\n0x8EA3E0C4\t0x4608\n0x8EA3E0C5\t0x882D\n0x8EA3E0C6\t0x8989\n0x8EA3E0C7\t0x8B8D\n0x8EA3E0C8\t0x8B87\n0x8EA3E0C9\t0x8B90\n0x8EA3E0CA\t0x8D1A\n0x8EA3E0CB\t0x8E99\n0x8EA3E0CC\t0x4841\n0x8EA3E0CD\t0x48E3\n0x8EA3E0CE\t0x4972\n0x8EA3E0CF\t0x945F\n0x8EA3E0D0\t0x4973\n0x8EA3E0D1\t0x4968\n0x8EA3E0D2\t0x9456\n0x8EA3E0D3\t0x9461\n0x8EA3E0D4\t0x945B\n0x8EA3E0D5\t0x945A\n0x8EA3E0D6\t0x945C\n0x8EA3E0D7\t0x9465\n0x8EA3E0D8\t0x4A35\n0x8EA3E0D9\t0x9741\n0x8EA3E0DA\t0x4A88\n0x8EA3E0DB\t0x4A9D\n0x8EA3E0DC\t0x986E\n0x8EA3E0DD\t0x986C\n0x8EA3E0DE\t0x986D\n0x8EA3E0DF\t0x4275\n0x8EA3E0E0\t0x99AA\n0x8EA3E0E1\t0x9A5C\n0x8EA3E0E2\t0x9A58\n0x8EA3E0E3\t0x9ADE\n0x8EA3E0E4\t0x4C8F\n0x8EA3E0E5\t0x9C4F\n0x8EA3E0E6\t0x9C51\n0x8EA3E0E7\t0x4C8E\n0x8EA3E0E8\t0x9C53\n0x8EA3E0E9\t0x4D05\n0x8EA3E0EA\t0x4D04\n0x8EA3E0EB\t0x4CFF\n0x8EA3E0EC\t0x9DFC\n0x8EA3E0ED\t0x9F39\n0x8EA3E0EE\t0x4D9E\n0x8EA3E0EF\t0x513E\n0x8EA3E0F0\t0x3554\n0x8EA3E0F1\t0x56D2\n0x8EA3E0F2\t0x3681\n0x8EA3E0F3\t0x5B4F\n0x8EA3E0F4\t0x6B14\n0x8EA3E0F5\t0x40FA\n0x8EA3E0F6\t0x7A72\n0x8EA3E0F7\t0x7A73\n0x8EA3E0F8\t0x4332\n0x8EA3E0F9\t0x4670\n0x8EA3E0FA\t0x466E\n0x8EA3E0FB\t0x8B91\n0x8EA3E0FC\t0x2F9D6\n0x8EA3E0FD\t0x487C\n0x8EA3E0FE\t0x91BF\n0x8EA3E1A1\t0x4975\n0x8EA3E1A2\t0x946C\n0x8EA3E1A3\t0x4974\n0x8EA3E1A4\t0x4977\n0x8EA3E1A5\t0x96E6\n0x8EA3E1A6\t0x9745\n0x8EA3E1A7\t0x4A37\n0x8EA3E1A8\t0x97C8\n0x8EA3E1A9\t0x97E4\n0x8EA3E1AA\t0x995D\n0x8EA3E1AB\t0x4BBA\n0x8EA3E1AC\t0x9B21\n0x8EA3E1AD\t0x4C11\n0x8EA3E1AE\t0x9B2C\n0x8EA3E1AF\t0x9B57\n0x8EA3E1B0\t0x4C92\n0x8EA3E1B1\t0x4C99\n0x8EA3E1B2\t0x9C5D\n0x8EA3E1B3\t0x9C61\n0x8EA3E1B4\t0x9C65\n0x8EA3E1B5\t0x9E08\n0x8EA3E1B6\t0x4D0A\n0x8EA3E1B7\t0x4D2A\n0x8EA3E1B8\t0x4D2B\n0x8EA3E1B9\t0x4D44\n0x8EA3E1BA\t0x4D79\n0x8EA3E1BB\t0x9F45\n0x8EA3E1BC\t0x34AA\n0x8EA3E1BD\t0x3748\n0x8EA3E1BE\t0x6205\n0x8EA3E1BF\t0x66EF\n0x8EA3E1C0\t0x6B1B\n0x8EA3E1C1\t0x6B1D\n0x8EA3E1C2\t0x7225\n0x8EA3E1C3\t0x7224\n0x8EA3E1C4\t0x7C6D\n0x8EA3E1C5\t0x42B4\n0x8EA3E1C6\t0x8642\n0x8EA3E1C7\t0x8649\n0x8EA3E1C8\t0x460D\n0x8EA3E1C9\t0x8978\n0x8EA3E1CA\t0x898A\n0x8EA3E1CB\t0x8B97\n0x8EA3E1CC\t0x4754\n0x8EA3E1CD\t0x8C9B\n0x8EA3E1CE\t0x8D1C\n0x8EA3E1CF\t0x4830\n0x8EA3E1D0\t0x8EA2\n0x8EA3E1D1\t0x4A09\n0x8EA3E1D2\t0x4A38\n0x8EA3E1D3\t0x4A36\n0x8EA3E1D4\t0x4A8B\n0x8EA3E1D5\t0x4AF7\n0x8EA3E1D6\t0x4B66\n0x8EA3E1D7\t0x4BBD\n0x8EA3E1D8\t0x4C1E\n0x8EA3E1D9\t0x9C6C\n0x8EA3E1DA\t0x4C96\n0x8EA3E1DB\t0x9C6F\n0x8EA3E1DC\t0x4D0D\n0x8EA3E1DD\t0x9E0E\n0x8EA3E1DE\t0x4D73\n0x8EA3E1DF\t0x9F08\n0x8EA3E1E0\t0x9F1D\n0x8EA3E1E1\t0x9FA3\n0x8EA3E1E2\t0x373B\n0x8EA3E1E3\t0x373C\n0x8EA3E1E4\t0x5F60\n0x8EA3E1E5\t0x6B1C\n0x8EA3E1E6\t0x3DA0\n0x8EA3E1E7\t0x40FB\n0x8EA3E1E9\t0x7CF3\n0x8EA3E1EA\t0x4581\n0x8EA3E1EB\t0x8B9B\n0x8EA3E1EC\t0x8EA7\n0x8EA3E1ED\t0x91C4\n0x8EA3E1EE\t0x4978\n0x8EA3E1EF\t0x947A\n0x8EA3E1F0\t0x4A8D\n0x8EA3E1F1\t0x4B73\n0x8EA3E1F2\t0x9A61\n0x8EA3E1F3\t0x9A63\n0x8EA3E1F4\t0x9AD7\n0x8EA3E1F5\t0x9C76\n0x8EA3E1F6\t0x4DA6\n0x8EA3E1F7\t0x9FA5\n0x8EA3E1F8\t0x39AD\n0x8EA3E1F9\t0x7067\n0x8EA3E1FA\t0x3E11\n0x8EA3E1FB\t0x72AB\n0x8EA3E1FC\t0x864A\n0x8EA3E1FD\t0x897D\n0x8EA3E1FE\t0x8B9D\n0x8EA3E2A1\t0x8C53\n0x8EA3E2A2\t0x8F65\n0x8EA3E2A3\t0x947B\n0x8EA3E2A4\t0x4A39\n0x8EA3E2A5\t0x98CD\n0x8EA3E2A6\t0x98DD\n0x8EA3E2A7\t0x4BBF\n0x8EA3E2A8\t0x9B30\n0x8EA3E2A9\t0x9E16\n0x8EA3E2AA\t0x4D0F\n0x8EA3E2AB\t0x4DA7\n0x8EA3E2AC\t0x4DB5\n0x8EA3E2AD\t0x3FDC\n0x8EA3E2AE\t0x4831\n0x8EA3E2AF\t0x96E7\n0x8EA3E2B0\t0x9E18\n0x8EA3E2B1\t0x9EA2\n0x8EA3E2B2\t0x4DA8\n0x8EA3E2B3\t0x9F7C\n0x8EA3E2B4\t0x4125\n0x8EA3E2B5\t0x7E9E\n0x8EA3E2B6\t0x9484\n0x8EA3E2B7\t0x4BC1\n0x8EA3E2B8\t0x9E1C\n0x8EA3E2B9\t0x4190\n0x8EA3E2BA\t0x7C71\n0x8EA3E2BB\t0x97CA\n0x8EA3E2BC\t0x4696\n0x8EA3E2BD\t0x487F\n0x8EA3E2BE\t0x4D10\n0x8EA3E2BF\t0x9EA3\n0x8EA3E2C0\t0x4A0A\n0x8EA3E2C1\t0x9C7B\n0x8EA3E2C2\t0x9F97\n0x8EA3E2C3\t0x4D12\n0x8EA3E2C4\t0x4A3A\n0x8EA3E2C5\t0x9750\n0x8EA3E2C6\t0x4A3B\n0x8EA3E4C8\t0x4F66\n0x8EA3E4C9\t0x4F68\n0x8EA3E4CA\t0x4FE7\n0x8EA3E4CB\t0x503F\n0x8EA3E4CD\t0x50A6\n0x8EA3E4CE\t0x510F\n0x8EA3E4CF\t0x523E\n0x8EA3E4D0\t0x5324\n0x8EA3E4D1\t0x5365\n0x8EA3E4D2\t0x539B\n0x8EA3E4D3\t0x517F\n0x8EA3E4D4\t0x54CB\n0x8EA3E4D5\t0x5573\n0x8EA3E4D6\t0x5571\n0x8EA3E4D7\t0x556B\n0x8EA3E4D8\t0x55F4\n0x8EA3E4D9\t0x5622\n0x8EA3E4DA\t0x5620\n0x8EA3E4DB\t0x5692\n0x8EA3E4DC\t0x56BA\n0x8EA3E4DD\t0x5691\n0x8EA3E4DE\t0x56B0\n0x8EA3E4DF\t0x5759\n0x8EA3E4E0\t0x578A\n0x8EA3E4E1\t0x580F\n0x8EA3E4E2\t0x5812\n0x8EA3E4E3\t0x5813\n0x8EA3E4E4\t0x5847\n0x8EA3E4E5\t0x589B\n0x8EA3E4E6\t0x5900\n0x8EA3E4E7\t0x594D\n0x8EA3E4E8\t0x5AD1\n0x8EA3E4E9\t0x5AD3\n0x8EA3E4EA\t0x5B67\n0x8EA3E4EB\t0x5C57\n0x8EA3E4EC\t0x5C77\n0x8EA3E4ED\t0x5CD5\n0x8EA3E4EE\t0x5D75\n0x8EA3E4EF\t0x5D8E\n0x8EA3E4F0\t0x5DA5\n0x8EA3E4F1\t0x5DB6\n0x8EA3E4F2\t0x5DBF\n0x8EA3E4F3\t0x5E65\n0x8EA3E4F4\t0x5ECD\n0x8EA3E4F5\t0x5EED\n0x8EA3E4F6\t0x5F94\n0x8EA3E4F7\t0x5F9A\n0x8EA3E4F8\t0x5FBA\n0x8EA3E4F9\t0x6125\n0x8EA3E4FA\t0x6150\n0x8EA3E4FB\t0x62A3\n0x8EA3E4FC\t0x6360\n0x8EA3E4FD\t0x6364\n0x8EA3E4FE\t0x63B6\n0x8EA3E5A1\t0x6403\n0x8EA3E5A2\t0x64B6\n0x8EA3E5A3\t0x651A\n0x8EA3E5A4\t0x7A25\n0x8EA3E5A5\t0x5C21\n0x8EA3E5A6\t0x66E2\n0x8EA3E5A7\t0x6702\n0x8EA3E5A8\t0x67A4\n0x8EA3E5A9\t0x67AC\n0x8EA3E5AA\t0x6810\n0x8EA3E5AB\t0x6806\n0x8EA3E5AC\t0x685E\n0x8EA3E5AD\t0x685A\n0x8EA3E5AE\t0x692C\n0x8EA3E5AF\t0x6929\n0x8EA3E5B0\t0x6A2D\n0x8EA3E5B1\t0x6A77\n0x8EA3E5B2\t0x6A7A\n0x8EA3E5B3\t0x6ACA\n0x8EA3E5B4\t0x6AE6\n0x8EA3E5B5\t0x6AF5\n0x8EA3E5B6\t0x6B0D\n0x8EA3E5B7\t0x6B0E\n0x8EA3E5B8\t0x6BDC\n0x8EA3E5B9\t0x6BDD\n0x8EA3E5BA\t0x6BF6\n0x8EA3E5BB\t0x6C1E\n0x8EA3E5BC\t0x6C63\n0x8EA3E5BD\t0x6DA5\n0x8EA3E5BE\t0x6E0F\n0x8EA3E5BF\t0x6E8A\n0x8EA3E5C0\t0x6E84\n0x8EA3E5C1\t0x6E8B\n0x8EA3E5C2\t0x6E7C\n0x8EA3E5C3\t0x6F4C\n0x8EA3E5C4\t0x6F48\n0x8EA3E5C5\t0x6F49\n0x8EA3E5C6\t0x6F9D\n0x8EA3E5C7\t0x6F99\n0x8EA3E5C8\t0x6FF8\n0x8EA3E5C9\t0x702E\n0x8EA3E5CA\t0x702D\n0x8EA3E5CB\t0x705C\n0x8EA3E5CC\t0x79CC\n0x8EA3E5CD\t0x70BF\n0x8EA3E5CE\t0x70EA\n0x8EA3E5CF\t0x70E5\n0x8EA3E5D0\t0x7111\n0x8EA3E5D1\t0x7112\n0x8EA3E5D2\t0x713F\n0x8EA3E5D3\t0x7139\n0x8EA3E5D4\t0x713B\n0x8EA3E5D5\t0x713D\n0x8EA3E5D6\t0x7177\n0x8EA3E5D7\t0x7175\n0x8EA3E5D8\t0x7176\n0x8EA3E5D9\t0x7171\n0x8EA3E5DA\t0x7196\n0x8EA3E5DB\t0x7193\n0x8EA3E5DC\t0x71B4\n0x8EA3E5DD\t0x71DD\n0x8EA3E5DE\t0x71DE\n0x8EA3E5DF\t0x720E\n0x8EA3E5E0\t0x5911\n0x8EA3E5E1\t0x7218\n0x8EA3E5E2\t0x7347\n0x8EA3E5E3\t0x7348\n0x8EA3E5E4\t0x73EF\n0x8EA3E5E5\t0x7412\n0x8EA3E5E6\t0x743B\n0x8EA3E5E7\t0x74A4\n0x8EA3E5E8\t0x748D\n0x8EA3E5E9\t0x74B4\n0x8EA3E5EA\t0x7673\n0x8EA3E5EB\t0x7677\n0x8EA3E5EC\t0x76BC\n0x8EA3E5ED\t0x7819\n0x8EA3E5EE\t0x781B\n0x8EA3E5EF\t0x783D\n0x8EA3E5F0\t0x7853\n0x8EA3E5F1\t0x7854\n0x8EA3E5F2\t0x7858\n0x8EA3E5F3\t0x78B7\n0x8EA3E5F4\t0x78D8\n0x8EA3E5F5\t0x78EE\n0x8EA3E5F6\t0x7922\n0x8EA3E5F7\t0x794D\n0x8EA3E5F8\t0x7986\n0x8EA3E5F9\t0x7999\n0x8EA3E5FA\t0x79A3\n0x8EA3E5FB\t0x79BC\n0x8EA3E5FC\t0x7AA7\n0x8EA3E5FD\t0x7B37\n0x8EA3E5FE\t0x7B59\n0x8EA3E6A1\t0x7BD0\n0x8EA3E6A2\t0x7C2F\n0x8EA3E6A3\t0x7C32\n0x8EA3E6A4\t0x7C42\n0x8EA3E6A5\t0x7C4E\n0x8EA3E6A6\t0x7C68\n0x8EA3E6A7\t0x7CA9\n0x8EA3E6A8\t0x7CED\n0x8EA3E6A9\t0x7DD0\n0x8EA3E6AA\t0x7E07\n0x8EA3E6AB\t0x7DD3\n0x8EA3E6AC\t0x7E64\n0x8EA3E6AD\t0x7F40\n0x8EA3E6AF\t0x8041\n0x8EA3E6B0\t0x8063\n0x8EA3E6B1\t0x80BB\n0x8EA3E6B2\t0x6711\n0x8EA3E6B3\t0x6725\n0x8EA3E6B4\t0x8248\n0x8EA3E6B5\t0x8310\n0x8EA3E6B6\t0x8362\n0x8EA3E6B7\t0x8312\n0x8EA3E6B8\t0x8421\n0x8EA3E6B9\t0x841E\n0x8EA3E6BA\t0x84E2\n0x8EA3E6BB\t0x84DE\n0x8EA3E6BC\t0x84E1\n0x8EA3E6BD\t0x8573\n0x8EA3E6BE\t0x85D4\n0x8EA3E6BF\t0x85F5\n0x8EA3E6C0\t0x8637\n0x8EA3E6C1\t0x8645\n0x8EA3E6C2\t0x8672\n0x8EA3E6C3\t0x874A\n0x8EA3E6C4\t0x87A9\n0x8EA3E6C5\t0x87A5\n0x8EA3E6C6\t0x87F5\n0x8EA3E6C7\t0x8834\n0x8EA3E6C8\t0x8850\n0x8EA3E6C9\t0x8887\n0x8EA3E6CA\t0x8954\n0x8EA3E6CB\t0x8984\n0x8EA3E6CC\t0x8B03\n0x8EA3E6CD\t0x8C52\n0x8EA3E6CE\t0x8CD8\n0x8EA3E6CF\t0x8D0C\n0x8EA3E6D0\t0x8D18\n0x8EA3E6D1\t0x8DB0\n0x8EA3E6D2\t0x8EBC\n0x8EA3E6D3\t0x8ED5\n0x8EA3E6D4\t0x8FAA\n0x8EA3E6D5\t0x909C\n0x8EA3E6D7\t0x915C\n0x8EA3E6D8\t0x922B\n0x8EA3E6D9\t0x9221\n0x8EA3E6DA\t0x9273\n0x8EA3E6DB\t0x92F4\n0x8EA3E6DC\t0x92F5\n0x8EA3E6DD\t0x933F\n0x8EA3E6DE\t0x9342\n0x8EA3E6DF\t0x9386\n0x8EA3E6E0\t0x93BE\n0x8EA3E6E1\t0x93BC\n0x8EA3E6E2\t0x93BD\n0x8EA3E6E3\t0x93F1\n0x8EA3E6E4\t0x93F2\n0x8EA3E6E5\t0x93EF\n0x8EA3E6E6\t0x9422\n0x8EA3E6E7\t0x9423\n0x8EA3E6E8\t0x9424\n0x8EA3E6E9\t0x9467\n0x8EA3E6EA\t0x9466\n0x8EA3E6EB\t0x9597\n0x8EA3E6EC\t0x95CE\n0x8EA3E6ED\t0x95E7\n0x8EA3E6EE\t0x973B\n0x8EA3E6EF\t0x974D\n0x8EA3E6F0\t0x98E4\n0x8EA3E6F1\t0x9942\n0x8EA3E6F2\t0x9B1D\n0x8EA3E6F3\t0x9B98\n0x8EA3E6F5\t0x9D49\n0x8EA3E6F6\t0x6449\n0x8EA3E6F7\t0x5E71\n0x8EA3E6F8\t0x5E85\n0x8EA3E6F9\t0x61D3\n0x8EA3E6FA\t0x990E\n0x8EA3E6FB\t0x8002\n0x8EA3E6FC\t0x781E\n0x8EA3E7A1\t0x5528\n0x8EA3E7A2\t0x5572\n0x8EA3E7A3\t0x55BA\n0x8EA3E7A4\t0x55F0\n0x8EA3E7A5\t0x55EE\n0x8EA3E7A6\t0x56B8\n0x8EA3E7A7\t0x56B9\n0x8EA3E7A8\t0x56C4\n0x8EA3E7A9\t0x8053\n0x8EA3E7AA\t0x92B0\n0x8EA4A1A1\t0x20086\n0x8EA4A1A2\t0x4E40\n0x8EA4A1A3\t0x4E41\n0x8EA4A1A4\t0x4E5A\n0x8EA4A1A5\t0x21FE8\n0x8EA4A1A6\t0x4E02\n0x8EA4A1A7\t0x4E29\n0x8EA4A1A8\t0x2010E\n0x8EA4A1A9\t0x20627\n0x8EA4A1AA\t0x5202\n0x8EA4A1AB\t0x353E\n0x8EA4A1AC\t0x5DDC\n0x8EA4A1AD\t0x2053C\n0x8EA4A1AE\t0x20675\n0x8EA4A1AF\t0x2F828\n0x8EA4A1B0\t0x5342\n0x8EA4A1B1\t0x536A\n0x8EA4A1B2\t0x5B52\n0x8EA4A1B3\t0x2193C\n0x8EA4A1B4\t0x2F875\n0x8EA4A1B5\t0x2F878\n0x8EA4A1B6\t0x5FC4\n0x8EA4A1B7\t0x624C\n0x8EA4A1B8\t0x72AD\n0x8EA4A1B9\t0x4E12\n0x8EA4A1BA\t0x4E2F\n0x8EA4A1BB\t0x4E96\n0x8EA4A1BC\t0x4ED0\n0x8EA4A1BD\t0x5142\n0x8EA4A1BE\t0x5183\n0x8EA4A1BF\t0x2F819\n0x8EA4A1C0\t0x206A5\n0x8EA4A1C1\t0x206AA\n0x8EA4A1C2\t0x2090F\n0x8EA4A1C3\t0x20A0E\n0x8EA4A1C4\t0x5383\n0x8EA4A1C5\t0x53B8\n0x8EA4A1C6\t0x20B9C\n0x8EA4A1C7\t0x20B9B\n0x8EA4A1C8\t0x2123C\n0x8EA4A1C9\t0x5928\n0x8EA4A1CA\t0x21BC2\n0x8EA4A1CB\t0x5C23\n0x8EA4A1CC\t0x5E01\n0x8EA4A1CD\t0x5F00\n0x8EA4A1CE\t0x233B4\n0x8EA4A1CF\t0x3CB8\n0x8EA4A1D0\t0x706C\n0x8EA4A1D1\t0x722B\n0x8EA4A1D2\t0x5188\n0x8EA4A1D3\t0x8279\n0x8EA4A1D4\t0x8FB6\n0x8EA4A1D5\t0x4E17\n0x8EA4A1D6\t0x20065\n0x8EA4A1D7\t0x340C\n0x8EA4A1D8\t0x201B2\n0x8EA4A1D9\t0x3430\n0x8EA4A1DA\t0x4EE2\n0x8EA4A1DB\t0x4EDB\n0x8EA4A1DC\t0x20477\n0x8EA4A1DD\t0x20542\n0x8EA4A1DE\t0x51AD\n0x8EA4A1DF\t0x20633\n0x8EA4A1E0\t0x51F7\n0x8EA4A1E1\t0x34DA\n0x8EA4A1E2\t0x206AF\n0x8EA4A1E3\t0x20836\n0x8EA4A1E4\t0x3513\n0x8EA4A1E5\t0x531B\n0x8EA4A1E6\t0x5388\n0x8EA4A1E7\t0x5387\n0x8EA4A1E8\t0x20B22\n0x8EA4A1E9\t0x53CF\n0x8EA4A1EA\t0x53FD\n0x8EA4A1EB\t0x3563\n0x8EA4A1EC\t0x53E7\n0x8EA4A1ED\t0x56DC\n0x8EA4A1EE\t0x211A3\n0x8EA4A1EF\t0x56D9\n0x8EA4A1F0\t0x5725\n0x8EA4A1F1\t0x5727\n0x8EA4A1F2\t0x5933\n0x8EA4A1F3\t0x5C13\n0x8EA4A1F4\t0x21C25\n0x8EA4A1F5\t0x21C24\n0x8EA4A1F6\t0x5C75\n0x8EA4A1F7\t0x22052\n0x8EA4A1F8\t0x22189\n0x8EA4A1F9\t0x224BF\n0x8EA4A1FA\t0x39C4\n0x8EA4A1FB\t0x39C3\n0x8EA4A1FC\t0x66F1\n0x8EA4A1FD\t0x233B5\n0x8EA4A1FE\t0x2574C\n0x8EA4A2A1\t0x7F52\n0x8EA4A2A2\t0x28E14\n0x8EA4A2A3\t0x28E12\n0x8EA4A2A4\t0x3401\n0x8EA4A2A5\t0x200A3\n0x8EA4A2A6\t0x200A2\n0x8EA4A2A7\t0x4E51\n0x8EA4A2A8\t0x4E6A\n0x8EA4A2A9\t0x201B6\n0x8EA4A2AA\t0x4F0C\n0x8EA4A2AB\t0x201B5\n0x8EA4A2AC\t0x201B4\n0x8EA4A2AD\t0x4EFE\n0x8EA4A2AE\t0x4F1B\n0x8EA4A2AF\t0x201C2\n0x8EA4A2B0\t0x201B8\n0x8EA4A2B1\t0x343A\n0x8EA4A2B2\t0x20479\n0x8EA4A2B3\t0x34AB\n0x8EA4A2B4\t0x5173\n0x8EA4A2B5\t0x20508\n0x8EA4A2B6\t0x518E\n0x8EA4A2B7\t0x2057A\n0x8EA4A2B8\t0x205B6\n0x8EA4A2B9\t0x206BD\n0x8EA4A2BA\t0x206B7\n0x8EA4A2BB\t0x206BC\n0x8EA4A2BC\t0x34DD\n0x8EA4A2BD\t0x206C4\n0x8EA4A2BE\t0x206C9\n0x8EA4A2BF\t0x52A5\n0x8EA4A2C0\t0x3515\n0x8EA4A2C1\t0x52A7\n0x8EA4A2C2\t0x52A4\n0x8EA4A2C3\t0x20930\n0x8EA4A2C4\t0x20983\n0x8EA4A2C5\t0x20985\n0x8EA4A2C6\t0x20A12\n0x8EA4A2C7\t0x20A34\n0x8EA4A2C8\t0x53BD\n0x8EA4A2C9\t0x20AE4\n0x8EA4A2CA\t0x20ADE\n0x8EA4A2CB\t0x20B2A\n0x8EA4A2CC\t0x5402\n0x8EA4A2CD\t0x20BAF\n0x8EA4A2CE\t0x20BB4\n0x8EA4A2CF\t0x20BB3\n0x8EA4A2D0\t0x20BB1\n0x8EA4A2D1\t0x572B\n0x8EA4A2D2\t0x591B\n0x8EA4A2D3\t0x5935\n0x8EA4A2D4\t0x215DE\n0x8EA4A2D5\t0x36A7\n0x8EA4A2D6\t0x36A5\n0x8EA4A2D7\t0x216B8\n0x8EA4A2D8\t0x216B0\n0x8EA4A2D9\t0x36A6\n0x8EA4A2DA\t0x219C2\n0x8EA4A2DC\t0x5C17\n0x8EA4A2DD\t0x377C\n0x8EA4A2DE\t0x21C2A\n0x8EA4A2DF\t0x5C70\n0x8EA4A2E0\t0x5C7D\n0x8EA4A2E1\t0x37A9\n0x8EA4A2E2\t0x21FE9\n0x8EA4A2E3\t0x5DE9\n0x8EA4A2E4\t0x22057\n0x8EA4A2E5\t0x3834\n0x8EA4A2E6\t0x3835\n0x8EA4A2E7\t0x221B6\n0x8EA4A2E8\t0x221D7\n0x8EA4A2E9\t0x221DE\n0x8EA4A2EA\t0x38A8\n0x8EA4A2EB\t0x5F19\n0x8EA4A2EC\t0x5F1C\n0x8EA4A2ED\t0x5F75\n0x8EA4A2EE\t0x224C2\n0x8EA4A2EF\t0x225AB\n0x8EA4A2F0\t0x38FF\n0x8EA4A2F1\t0x5FC8\n0x8EA4A2F2\t0x2298F\n0x8EA4A2F3\t0x39C7\n0x8EA4A2F4\t0x39C6\n0x8EA4A2F5\t0x39C8\n0x8EA4A2F6\t0x22A6D\n0x8EA4A2F7\t0x22EB5\n0x8EA4A2F8\t0x3AD0\n0x8EA4A2F9\t0x3AD1\n0x8EA4A2FA\t0x233C0\n0x8EA4A2FB\t0x233BF\n0x8EA4A2FC\t0x3C59\n0x8EA4A2FD\t0x239B9\n0x8EA4A2FE\t0x23B1C\n0x8EA4A3A1\t0x6C12\n0x8EA4A3A2\t0x3CBD\n0x8EA4A3A3\t0x23C80\n0x8EA4A3A4\t0x24184\n0x8EA4A3A5\t0x24185\n0x8EA4A3A6\t0x3E28\n0x8EA4A3A7\t0x72B3\n0x8EA4A3A8\t0x24724\n0x8EA4A3A9\t0x3EA9\n0x8EA4A3AA\t0x7390\n0x8EA4A3AB\t0x7536\n0x8EA4A3AC\t0x2634C\n0x8EA4A3AD\t0x43CC\n0x8EA4A3AE\t0x26AF6\n0x8EA4A3AF\t0x8281\n0x8EA4A3B0\t0x8FB8\n0x8EA4A3B1\t0x28670\n0x8EA4A3B2\t0x48B4\n0x8EA4A3B3\t0x28675\n0x8EA4A3B4\t0x28E17\n0x8EA4A3B5\t0x4E23\n0x8EA4A3B6\t0x3416\n0x8EA4A3B7\t0x342C\n0x8EA4A3B8\t0x201F1\n0x8EA4A3B9\t0x4F2E\n0x8EA4A3BA\t0x201DA\n0x8EA4A3BB\t0x514F\n0x8EA4A3BC\t0x205B9\n0x8EA4A3BD\t0x51BA\n0x8EA4A3BE\t0x34DF\n0x8EA4A3BF\t0x34E0\n0x8EA4A3C0\t0x5222\n0x8EA4A3C1\t0x206CE\n0x8EA4A3C2\t0x206D2\n0x8EA4A3C3\t0x206D0\n0x8EA4A3C4\t0x3517\n0x8EA4A3C5\t0x20843\n0x8EA4A3C6\t0x52AF\n0x8EA4A3C7\t0x52B0\n0x8EA4A3C8\t0x52B1\n0x8EA4A3C9\t0x2084D\n0x8EA4A3CA\t0x20934\n0x8EA4A3CB\t0x352F\n0x8EA4A3CC\t0x209D9\n0x8EA4A3CD\t0x5364\n0x8EA4A3CE\t0x20A18\n0x8EA4A3CF\t0x53D3\n0x8EA4A3D0\t0x20B38\n0x8EA4A3D1\t0x356A\n0x8EA4A3D2\t0x20BD7\n0x8EA4A3D3\t0x3570\n0x8EA4A3D4\t0x356D\n0x8EA4A3D5\t0x20BDC\n0x8EA4A3D6\t0x20BCB\n0x8EA4A3D7\t0x20BD6\n0x8EA4A3D8\t0x20BD8\n0x8EA4A3D9\t0x356E\n0x8EA4A3DA\t0x20BD1\n0x8EA4A3DB\t0x2F83E\n0x8EA4A3DC\t0x2F83C\n0x8EA4A3DD\t0x20BD2\n0x8EA4A3DE\t0x362B\n0x8EA4A3DF\t0x3628\n0x8EA4A3E0\t0x21259\n0x8EA4A3E2\t0x593F\n0x8EA4A3E3\t0x215E5\n0x8EA4A3E4\t0x215E6\n0x8EA4A3E5\t0x3692\n0x8EA4A3E6\t0x215E8\n0x8EA4A3E7\t0x598B\n0x8EA4A3E8\t0x216BD\n0x8EA4A3E9\t0x5991\n0x8EA4A3EA\t0x5995\n0x8EA4A3EB\t0x216BE\n0x8EA4A3EC\t0x21949\n0x8EA4A3ED\t0x373F\n0x8EA4A3EE\t0x219CD\n0x8EA4A3EF\t0x5B8A\n0x8EA4A3F0\t0x374F\n0x8EA4A3F1\t0x3774\n0x8EA4A3F2\t0x21B5E\n0x8EA4A3F3\t0x21BD0\n0x8EA4A3F4\t0x377D\n0x8EA4A3F5\t0x21D06\n0x8EA4A3F6\t0x37B7\n0x8EA4A3F7\t0x37A3\n0x8EA4A3F8\t0x37B0\n0x8EA4A3F9\t0x37B1\n0x8EA4A3FA\t0x5C87\n0x8EA4A3FB\t0x37AB\n0x8EA4A3FC\t0x21D7C\n0x8EA4A3FD\t0x21D71\n0x8EA4A3FE\t0x21FEF\n0x8EA4A4A1\t0x383A\n0x8EA4A4A2\t0x3837\n0x8EA4A4A3\t0x5E0D\n0x8EA4A4A4\t0x3838\n0x8EA4A4A5\t0x3840\n0x8EA4A4A6\t0x2218D\n0x8EA4A4A7\t0x221B7\n0x8EA4A4A8\t0x5E8E\n0x8EA4A4A9\t0x389F\n0x8EA4A4AA\t0x22333\n0x8EA4A4AB\t0x2237F\n0x8EA4A4AC\t0x5F7A\n0x8EA4A4AD\t0x225F2\n0x8EA4A4AE\t0x3904\n0x8EA4A4AF\t0x3909\n0x8EA4A4B0\t0x3906\n0x8EA4A4B1\t0x38FD\n0x8EA4A4B2\t0x390A\n0x8EA4A4B3\t0x3907\n0x8EA4A4B4\t0x22A2A\n0x8EA4A4B5\t0x22A8B\n0x8EA4A4B6\t0x39CA\n0x8EA4A4B7\t0x22A83\n0x8EA4A4B8\t0x22A8A\n0x8EA4A4B9\t0x6290\n0x8EA4A4BA\t0x39C9\n0x8EA4A4BB\t0x22A8E\n0x8EA4A4BC\t0x629A\n0x8EA4A4BD\t0x22EB6\n0x8EA4A4BE\t0x653C\n0x8EA4A4BF\t0x653A\n0x8EA4A4C0\t0x3A7F\n0x8EA4A4C1\t0x6598\n0x8EA4A4C2\t0x230D8\n0x8EA4A4C3\t0x3AD2\n0x8EA4A4C4\t0x23156\n0x8EA4A4C5\t0x233D2\n0x8EA4A4C6\t0x6765\n0x8EA4A4C7\t0x2F8DB\n0x8EA4A4C8\t0x3B43\n0x8EA4A4C9\t0x233C2\n0x8EA4A4CA\t0x23887\n0x8EA4A4CB\t0x23881\n0x8EA4A4CC\t0x239C2\n0x8EA4A4CD\t0x239BC\n0x8EA4A4CE\t0x23B23\n0x8EA4A4CF\t0x3CC1\n0x8EA4A4D0\t0x23C93\n0x8EA4A4D1\t0x3CC5\n0x8EA4A4D2\t0x3DA3\n0x8EA4A4D3\t0x2418D\n0x8EA4A4D4\t0x2418E\n0x8EA4A4D5\t0x3E2A\n0x8EA4A4D6\t0x3E5F\n0x8EA4A4D7\t0x2473B\n0x8EA4A4D8\t0x2474D\n0x8EA4A4D9\t0x3E5D\n0x8EA4A4DA\t0x24734\n0x8EA4A4DB\t0x24731\n0x8EA4A4DC\t0x248F2\n0x8EA4A4DD\t0x248F0\n0x8EA4A4DE\t0x3F17\n0x8EA4A4DF\t0x24C15\n0x8EA4A4E0\t0x24D28\n0x8EA4A4E1\t0x3F71\n0x8EA4A4E2\t0x3F72\n0x8EA4A4E3\t0x24F25\n0x8EA4A4E4\t0x250E7\n0x8EA4A4E5\t0x400F\n0x8EA4A4E6\t0x250E9\n0x8EA4A4E7\t0x25417\n0x8EA4A4E8\t0x79C2\n0x8EA4A4E9\t0x4191\n0x8EA4A4EA\t0x2626C\n0x8EA4A4EB\t0x26280\n0x8EA4A4EC\t0x2634B\n0x8EA4A4ED\t0x43B2\n0x8EA4A4EE\t0x43CF\n0x8EA4A4EF\t0x43CE\n0x8EA4A4F0\t0x809E\n0x8EA4A4F1\t0x268DE\n0x8EA4A4F2\t0x268FB\n0x8EA4A4F3\t0x81EB\n0x8EA4A4F4\t0x26951\n0x8EA4A4F5\t0x8289\n0x8EA4A4F6\t0x4496\n0x8EA4A4F7\t0x26B01\n0x8EA4A4F8\t0x26B02\n0x8EA4A4F9\t0x8296\n0x8EA4A4FA\t0x26B05\n0x8EA4A4FB\t0x8287\n0x8EA4A4FC\t0x26B03\n0x8EA4A4FD\t0x4497\n0x8EA4A4FE\t0x28451\n0x8EA4A5A1\t0x8FC0\n0x8EA4A5A2\t0x488B\n0x8EA4A5A3\t0x8FC3\n0x8EA4A5A4\t0x28453\n0x8EA4A5A5\t0x2867A\n0x8EA4A5A6\t0x28678\n0x8EA4A5A7\t0x28676\n0x8EA4A5A8\t0x28679\n0x8EA4A5A9\t0x2868F\n0x8EA4A5AA\t0x2867C\n0x8EA4A5AB\t0x9578\n0x8EA4A5AC\t0x28E1B\n0x8EA4A5AD\t0x28E1C\n0x8EA4A5AE\t0x9625\n0x8EA4A5AF\t0x23D92\n0x8EA4A5B0\t0x4E75\n0x8EA4A5B1\t0x4E74\n0x8EA4A5B2\t0x2012E\n0x8EA4A5B3\t0x2012C\n0x8EA4A5B4\t0x342D\n0x8EA4A5B5\t0x2020C\n0x8EA4A5B6\t0x4F99\n0x8EA4A5B7\t0x2020B\n0x8EA4A5B8\t0x3450\n0x8EA4A5B9\t0x344B\n0x8EA4A5BA\t0x20205\n0x8EA4A5BB\t0x344F\n0x8EA4A5BC\t0x344C\n0x8EA4A5BD\t0x2F805\n0x8EA4A5BE\t0x4F71\n0x8EA4A5BF\t0x5153\n0x8EA4A5C0\t0x51BF\n0x8EA4A5C1\t0x205C2\n0x8EA4A5C2\t0x205C3\n0x8EA4A5C3\t0x51C0\n0x8EA4A5C4\t0x20648\n0x8EA4A5C5\t0x51EE\n0x8EA4A5C6\t0x20646\n0x8EA4A5C7\t0x34E4\n0x8EA4A5C8\t0x34E3\n0x8EA4A5C9\t0x206EA\n0x8EA4A5CA\t0x34E1\n0x8EA4A5CB\t0x206EB\n0x8EA4A5CC\t0x34E2\n0x8EA4A5CD\t0x206EE\n0x8EA4A5CE\t0x523D\n0x8EA4A5CF\t0x3519\n0x8EA4A5D0\t0x52BD\n0x8EA4A5D1\t0x530C\n0x8EA4A5D2\t0x208D8\n0x8EA4A5D3\t0x24C1E\n0x8EA4A5D4\t0x209DF\n0x8EA4A5D5\t0x209DE\n0x8EA4A5D6\t0x3541\n0x8EA4A5D7\t0x7F37\n0x8EA4A5D8\t0x20A4F\n0x8EA4A5D9\t0x53C0\n0x8EA4A5DA\t0x355E\n0x8EA4A5DB\t0x20C0D\n0x8EA4A5DC\t0x20C08\n0x8EA4A5DD\t0x3579\n0x8EA4A5DE\t0x20C09\n0x8EA4A5DF\t0x546E\n0x8EA4A5E0\t0x5483\n0x8EA4A5E1\t0x20C12\n0x8EA4A5E2\t0x20C65\n0x8EA4A5E3\t0x545E\n0x8EA4A5E4\t0x545D\n0x8EA4A5E5\t0x577E\n0x8EA4A5E6\t0x5779\n0x8EA4A5E7\t0x21289\n0x8EA4A5E8\t0x577A\n0x8EA4A5E9\t0x576C\n0x8EA4A5EA\t0x21284\n0x8EA4A5EB\t0x2129E\n0x8EA4A5EC\t0x2128B\n0x8EA4A5ED\t0x3632\n0x8EA4A5EE\t0x5787\n0x8EA4A5EF\t0x21562\n0x8EA4A5F0\t0x591D\n0x8EA4A5F1\t0x3694\n0x8EA4A5F2\t0x5946\n0x8EA4A5F3\t0x3697\n0x8EA4A5F4\t0x215F9\n0x8EA4A5F5\t0x5943\n0x8EA4A5F6\t0x215F7\n0x8EA4A5F7\t0x3696\n0x8EA4A5F8\t0x3698\n0x8EA4A5F9\t0x21606\n0x8EA4A5FA\t0x216DD\n0x8EA4A5FB\t0x36B2\n0x8EA4A5FC\t0x216D9\n0x8EA4A5FD\t0x216DF\n0x8EA4A5FE\t0x216E2\n0x8EA4A6A1\t0x36B9\n0x8EA4A6A2\t0x5B61\n0x8EA4A6A3\t0x5B66\n0x8EA4A6A4\t0x200F1\n0x8EA4A6A5\t0x5B90\n0x8EA4A6A6\t0x3775\n0x8EA4A6A7\t0x377F\n0x8EA4A6A8\t0x377E\n0x8EA4A6A9\t0x5C29\n0x8EA4A6AA\t0x378F\n0x8EA4A6AB\t0x21C3F\n0x8EA4A6AC\t0x21C3E\n0x8EA4A6AD\t0x21D0B\n0x8EA4A6AE\t0x37BD\n0x8EA4A6AF\t0x5CB2\n0x8EA4A6B0\t0x21D83\n0x8EA4A6B1\t0x37BB\n0x8EA4A6B2\t0x37BC\n0x8EA4A6B3\t0x21D86\n0x8EA4A6B4\t0x5CC0\n0x8EA4A6B5\t0x2207C\n0x8EA4A6B6\t0x383D\n0x8EA4A6B7\t0x383E\n0x8EA4A6B8\t0x3874\n0x8EA4A6B9\t0x221F7\n0x8EA4A6BA\t0x387A\n0x8EA4A6BB\t0x3876\n0x8EA4A6BC\t0x3878\n0x8EA4A6BD\t0x3875\n0x8EA4A6BE\t0x221FB\n0x8EA4A6BF\t0x2233B\n0x8EA4A6C0\t0x38AF\n0x8EA4A6C1\t0x38B0\n0x8EA4A6C2\t0x38C7\n0x8EA4A6C3\t0x38CC\n0x8EA4A6C4\t0x225F9\n0x8EA4A6C5\t0x225CA\n0x8EA4A6C6\t0x3916\n0x8EA4A6C7\t0x225FF\n0x8EA4A6C8\t0x3912\n0x8EA4A6C9\t0x391D\n0x8EA4A6CA\t0x22609\n0x8EA4A6CB\t0x22603\n0x8EA4A6CC\t0x3915\n0x8EA4A6CD\t0x390F\n0x8EA4A6CE\t0x3914\n0x8EA4A6CF\t0x601F\n0x8EA4A6D0\t0x5FE2\n0x8EA4A6D1\t0x22610\n0x8EA4A6D2\t0x2299A\n0x8EA4A6D3\t0x2299F\n0x8EA4A6D4\t0x39B0\n0x8EA4A6D5\t0x39BF\n0x8EA4A6D6\t0x39C0\n0x8EA4A6D7\t0x22A87\n0x8EA4A6D8\t0x39D2\n0x8EA4A6D9\t0x39D9\n0x8EA4A6DA\t0x22EB7\n0x8EA4A6DB\t0x3A7A\n0x8EA4A6DC\t0x22F08\n0x8EA4A6DD\t0x22EF9\n0x8EA4A6DE\t0x3A81\n0x8EA4A6DF\t0x3A82\n0x8EA4A6E0\t0x22EF4\n0x8EA4A6E1\t0x6616\n0x8EA4A6E2\t0x65F9\n0x8EA4A6E3\t0x3ADA\n0x8EA4A6E4\t0x26657\n0x8EA4A6E5\t0x6788\n0x8EA4A6E6\t0x233D6\n0x8EA4A6E7\t0x679B\n0x8EA4A6E8\t0x2F8DE\n0x8EA4A6E9\t0x676E\n0x8EA4A6EA\t0x679E\n0x8EA4A6EB\t0x233D4\n0x8EA4A6EC\t0x3C22\n0x8EA4A6ED\t0x3C1F\n0x8EA4A6EE\t0x23890\n0x8EA4A6EF\t0x2388D\n0x8EA4A6F0\t0x3C21\n0x8EA4A6F1\t0x6B24\n0x8EA4A6F2\t0x23960\n0x8EA4A6F3\t0x239CE\n0x8EA4A6F4\t0x239CF\n0x8EA4A6F5\t0x3C5C\n0x8EA4A6F6\t0x6B7D\n0x8EA4A6F7\t0x239D1\n0x8EA4A6F8\t0x3C7D\n0x8EA4A6F9\t0x3C8D\n0x8EA4A6FA\t0x3C8F\n0x8EA4A6FB\t0x6CE6\n0x8EA4A6FC\t0x23CCA\n0x8EA4A6FD\t0x6CCB\n0x8EA4A6FE\t0x3CD0\n0x8EA4A7A1\t0x23CB7\n0x8EA4A7A2\t0x3CD8\n0x8EA4A7A3\t0x23CB2\n0x8EA4A7A4\t0x23CBB\n0x8EA4A7A5\t0x23CB9\n0x8EA4A7A6\t0x6CB5\n0x8EA4A7A7\t0x3DA7\n0x8EA4A7A8\t0x2419E\n0x8EA4A7A9\t0x7097\n0x8EA4A7AA\t0x241B2\n0x8EA4A7AB\t0x709B\n0x8EA4A7AC\t0x3E12\n0x8EA4A7AD\t0x2456F\n0x8EA4A7AE\t0x245AC\n0x8EA4A7AF\t0x3E2F\n0x8EA4A7B0\t0x24623\n0x8EA4A7B1\t0x726B\n0x8EA4A7B2\t0x3E2E\n0x8EA4A7B3\t0x3E2C\n0x8EA4A7B4\t0x3E5C\n0x8EA4A7B5\t0x2476C\n0x8EA4A7B6\t0x72D5\n0x8EA4A7B7\t0x24732\n0x8EA4A7B8\t0x2475E\n0x8EA4A7B9\t0x3E62\n0x8EA4A7BA\t0x3E67\n0x8EA4A7BB\t0x3EB4\n0x8EA4A7BC\t0x248FB\n0x8EA4A7BD\t0x24B29\n0x8EA4A7BE\t0x24BBD\n0x8EA4A7BF\t0x24C1F\n0x8EA4A7C0\t0x7543\n0x8EA4A7C1\t0x22341\n0x8EA4A7C2\t0x24C1D\n0x8EA4A7C3\t0x759C\n0x8EA4A7C4\t0x24D31\n0x8EA4A7C5\t0x24D2F\n0x8EA4A7C6\t0x3FEA\n0x8EA4A7C7\t0x25043\n0x8EA4A7C8\t0x3FFB\n0x8EA4A7C9\t0x25041\n0x8EA4A7CA\t0x4014\n0x8EA4A7CB\t0x250F5\n0x8EA4A7CC\t0x4013\n0x8EA4A7CD\t0x4012\n0x8EA4A7CE\t0x4010\n0x8EA4A7CF\t0x4011\n0x8EA4A7D0\t0x250F2\n0x8EA4A7D1\t0x4086\n0x8EA4A7D2\t0x77E4\n0x8EA4A7D3\t0x4098\n0x8EA4A7D4\t0x2541E\n0x8EA4A7D5\t0x25754\n0x8EA4A7D6\t0x412A\n0x8EA4A7D7\t0x25756\n0x8EA4A7D8\t0x25929\n0x8EA4A7D9\t0x25927\n0x8EA4A7DA\t0x25928\n0x8EA4A7DB\t0x7ACE\n0x8EA4A7DC\t0x42B5\n0x8EA4A7DD\t0x26279\n0x8EA4A7DE\t0x2627E\n0x8EA4A7DF\t0x264B6\n0x8EA4A7E0\t0x264B7\n0x8EA4A7E1\t0x8013\n0x8EA4A7E2\t0x43D6\n0x8EA4A7E3\t0x43D8\n0x8EA4A7E4\t0x80B7\n0x8EA4A7E5\t0x43D9\n0x8EA4A7E6\t0x43D4\n0x8EA4A7E7\t0x43D7\n0x8EA4A7E8\t0x2F981\n0x8EA4A7E9\t0x80B9\n0x8EA4A7EB\t0x2664D\n0x8EA4A7EC\t0x81E4\n0x8EA4A7ED\t0x81FD\n0x8EA4A7EE\t0x820F\n0x8EA4A7EF\t0x4460\n0x8EA4A7F0\t0x26A09\n0x8EA4A7F1\t0x26A08\n0x8EA4A7F2\t0x449E\n0x8EA4A7F3\t0x44A1\n0x8EA4A7F4\t0x26B1E\n0x8EA4A7F5\t0x26B1A\n0x8EA4A7F6\t0x26B23\n0x8EA4A7F7\t0x26B15\n0x8EA4A7F8\t0x26B19\n0x8EA4A7F9\t0x26B16\n0x8EA4A7FA\t0x82BF\n0x8EA4A7FB\t0x82CA\n0x8EA4A7FC\t0x26B14\n0x8EA4A7FD\t0x26B18\n0x8EA4A7FE\t0x82C1\n0x8EA4A8A1\t0x44A0\n0x8EA4A8A2\t0x2721F\n0x8EA4A8A3\t0x275DD\n0x8EA4A8A4\t0x275DF\n0x8EA4A8A5\t0x28469\n0x8EA4A8A6\t0x8FD0\n0x8EA4A8A8\t0x2846C\n0x8EA4A8A9\t0x48B9\n0x8EA4A8AA\t0x28693\n0x8EA4A8AB\t0x90AE\n0x8EA4A8AC\t0x28695\n0x8EA4A8AD\t0x28694\n0x8EA4A8AE\t0x28691\n0x8EA4A8AF\t0x28697\n0x8EA4A8B0\t0x28E30\n0x8EA4A8B1\t0x49C1\n0x8EA4A8B2\t0x49C2\n0x8EA4A8B3\t0x9638\n0x8EA4A8B4\t0x2FA18\n0x8EA4A8B5\t0x341C\n0x8EA4A8B6\t0x20231\n0x8EA4A8B7\t0x345E\n0x8EA4A8B8\t0x4FBC\n0x8EA4A8B9\t0x3459\n0x8EA4A8BA\t0x345C\n0x8EA4A8BB\t0x20236\n0x8EA4A8BC\t0x345F\n0x8EA4A8BD\t0x4FE9\n0x8EA4A8BE\t0x4FBD\n0x8EA4A8BF\t0x4FE2\n0x8EA4A8C0\t0x5158\n0x8EA4A8C1\t0x205C9\n0x8EA4A8C2\t0x205CA\n0x8EA4A8C3\t0x34CE\n0x8EA4A8C4\t0x20718\n0x8EA4A8C5\t0x20712\n0x8EA4A8C6\t0x20719\n0x8EA4A8C7\t0x20710\n0x8EA4A8C8\t0x20716\n0x8EA4A8C9\t0x52C6\n0x8EA4A8CA\t0x2085F\n0x8EA4A8CB\t0x52C8\n0x8EA4A8CC\t0x208DF\n0x8EA4A8CD\t0x20917\n0x8EA4A8CE\t0x5328\n0x8EA4A8CF\t0x2093C\n0x8EA4A8D0\t0x5329\n0x8EA4A8D1\t0x209EA\n0x8EA4A8D2\t0x209E9\n0x8EA4A8D3\t0x20A1C\n0x8EA4A8D4\t0x20A58\n0x8EA4A8D5\t0x20A64\n0x8EA4A8D6\t0x20AF3\n0x8EA4A8D7\t0x355F\n0x8EA4A8D8\t0x20C97\n0x8EA4A8D9\t0x3585\n0x8EA4A8DA\t0x20C5A\n0x8EA4A8DB\t0x20C59\n0x8EA4A8DC\t0x3586\n0x8EA4A8DD\t0x20C8E\n0x8EA4A8DE\t0x57B4\n0x8EA4A8DF\t0x212BC\n0x8EA4A8E0\t0x57A9\n0x8EA4A8E1\t0x3687\n0x8EA4A8E2\t0x2160D\n0x8EA4A8E3\t0x215FC\n0x8EA4A8E4\t0x2160C\n0x8EA4A8E5\t0x21707\n0x8EA4A8E6\t0x2170A\n0x8EA4A8E7\t0x36CA\n0x8EA4A8E8\t0x21702\n0x8EA4A8E9\t0x36C3\n0x8EA4A8EA\t0x21726\n0x8EA4A8EB\t0x21708\n0x8EA4A8EC\t0x2171D\n0x8EA4A8ED\t0x36C2\n0x8EA4A8EE\t0x5B68\n0x8EA4A8EF\t0x2194E\n0x8EA4A8F0\t0x3741\n0x8EA4A8F1\t0x219ED\n0x8EA4A8F2\t0x219EE\n0x8EA4A8F3\t0x219EF\n0x8EA4A8F4\t0x3780\n0x8EA4A8F5\t0x3781\n0x8EA4A8F6\t0x21C50\n0x8EA4A8F7\t0x21C4C\n0x8EA4A8F8\t0x3793\n0x8EA4A8F9\t0x3792\n0x8EA4A8FA\t0x21C4F\n0x8EA4A8FB\t0x37C5\n0x8EA4A8FC\t0x21DD4\n0x8EA4A8FE\t0x21DB0\n0x8EA4A9A1\t0x3846\n0x8EA4A9A2\t0x3841\n0x8EA4A9A3\t0x3845\n0x8EA4A9A4\t0x3842\n0x8EA4A9A5\t0x383F\n0x8EA4A9A6\t0x220A5\n0x8EA4A9A7\t0x22209\n0x8EA4A9A8\t0x3882\n0x8EA4A9A9\t0x3881\n0x8EA4A9AA\t0x387F\n0x8EA4A9AB\t0x38A5\n0x8EA4A9AC\t0x5F2B\n0x8EA4A9AD\t0x38B3\n0x8EA4A9AE\t0x38B5\n0x8EA4A9AF\t0x223F3\n0x8EA4A9B0\t0x223D7\n0x8EA4A9B1\t0x5F8D\n0x8EA4A9B2\t0x38DA\n0x8EA4A9B3\t0x224DC\n0x8EA4A9B4\t0x38DB\n0x8EA4A9B5\t0x390D\n0x8EA4A9B6\t0x6018\n0x8EA4A9B7\t0x390E\n0x8EA4A9B8\t0x2260B\n0x8EA4A9B9\t0x391E\n0x8EA4A9BA\t0x3925\n0x8EA4A9BB\t0x3926\n0x8EA4A9BC\t0x391C\n0x8EA4A9BD\t0x3921\n0x8EA4A9BE\t0x6057\n0x8EA4A9BF\t0x6048\n0x8EA4A9C0\t0x3927\n0x8EA4A9C1\t0x391A\n0x8EA4A9C2\t0x2263A\n0x8EA4A9C3\t0x2260D\n0x8EA4A9C4\t0x22611\n0x8EA4A9C5\t0x6038\n0x8EA4A9C6\t0x22620\n0x8EA4A9C7\t0x22601\n0x8EA4A9C8\t0x3924\n0x8EA4A9C9\t0x22637\n0x8EA4A9CA\t0x2F8A3\n0x8EA4A9CB\t0x6071\n0x8EA4A9CC\t0x229AA\n0x8EA4A9CD\t0x39C1\n0x8EA4A9CE\t0x39E1\n0x8EA4A9CF\t0x22AE7\n0x8EA4A9D0\t0x22AE8\n0x8EA4A9D1\t0x6312\n0x8EA4A9D2\t0x39EB\n0x8EA4A9D3\t0x22AF5\n0x8EA4A9D4\t0x39E2\n0x8EA4A9D5\t0x39D7\n0x8EA4A9D6\t0x39E9\n0x8EA4A9D7\t0x22B35\n0x8EA4A9D8\t0x22AE6\n0x8EA4A9D9\t0x630A\n0x8EA4A9DA\t0x22AF8\n0x8EA4A9DB\t0x6323\n0x8EA4A9DC\t0x22AF1\n0x8EA4A9DD\t0x3A84\n0x8EA4A9DE\t0x22F14\n0x8EA4A9DF\t0x22F15\n0x8EA4A9E0\t0x22F09\n0x8EA4A9E1\t0x3AB5\n0x8EA4A9E2\t0x3ABC\n0x8EA4A9E3\t0x3ADC\n0x8EA4A9E4\t0x3ADE\n0x8EA4A9E5\t0x3ADF\n0x8EA4A9E6\t0x2317B\n0x8EA4A9E7\t0x662A\n0x8EA4A9E8\t0x2317E\n0x8EA4A9E9\t0x23366\n0x8EA4A9EA\t0x23367\n0x8EA4A9EB\t0x2340A\n0x8EA4A9EC\t0x3B54\n0x8EA4A9ED\t0x67E0\n0x8EA4A9EE\t0x67BE\n0x8EA4A9EF\t0x3B53\n0x8EA4A9F0\t0x3C24\n0x8EA4A9F1\t0x3C25\n0x8EA4A9F2\t0x6B29\n0x8EA4A9F3\t0x3C28\n0x8EA4A9F4\t0x3C27\n0x8EA4A9F5\t0x2389C\n0x8EA4A9F6\t0x23962\n0x8EA4A9F7\t0x239E1\n0x8EA4A9F8\t0x239DE\n0x8EA4A9F9\t0x239DF\n0x8EA4A9FA\t0x239E9\n0x8EA4A9FB\t0x3C8B\n0x8EA4A9FC\t0x23CE4\n0x8EA4A9FD\t0x23CF7\n0x8EA4A9FE\t0x3CDC\n0x8EA4AAA1\t0x6D43\n0x8EA4AAA2\t0x23CEA\n0x8EA4AAA3\t0x23CF6\n0x8EA4AAA4\t0x23D12\n0x8EA4AAA5\t0x2F901\n0x8EA4AAA6\t0x70A6\n0x8EA4AAA7\t0x3DB2\n0x8EA4AAA8\t0x70C0\n0x8EA4AAA9\t0x241D9\n0x8EA4AAAA\t0x722F\n0x8EA4AAAB\t0x2455F\n0x8EA4AAAC\t0x3E1B\n0x8EA4AAAD\t0x24573\n0x8EA4AAAE\t0x3E32\n0x8EA4AAAF\t0x7271\n0x8EA4AAB0\t0x2463F\n0x8EA4AAB1\t0x24778\n0x8EA4AAB2\t0x3E6B\n0x8EA4AAB3\t0x2477D\n0x8EA4AAB4\t0x3E6C\n0x8EA4AAB5\t0x3E6D\n0x8EA4AAB6\t0x24912\n0x8EA4AAB7\t0x3EB9\n0x8EA4AAB8\t0x3EBA\n0x8EA4AAB9\t0x3F09\n0x8EA4AABA\t0x3F0A\n0x8EA4AABB\t0x24B2F\n0x8EA4AABC\t0x74EA\n0x8EA4AABD\t0x3F1B\n0x8EA4AABE\t0x24B30\n0x8EA4AABF\t0x24BDB\n0x8EA4AAC0\t0x7520\n0x8EA4AAC1\t0x3F58\n0x8EA4AAC2\t0x24C29\n0x8EA4AAC3\t0x3F5A\n0x8EA4AAC4\t0x2F936\n0x8EA4AAC5\t0x24D40\n0x8EA4AAC6\t0x3F77\n0x8EA4AAC7\t0x24D3D\n0x8EA4AAC8\t0x24D3E\n0x8EA4AAC9\t0x3F79\n0x8EA4AACA\t0x75A9\n0x8EA4AACB\t0x24D38\n0x8EA4AACC\t0x7685\n0x8EA4AACD\t0x24F48\n0x8EA4AACE\t0x3FEB\n0x8EA4AACF\t0x24FD0\n0x8EA4AAD0\t0x3FFD\n0x8EA4AAD1\t0x3FFC\n0x8EA4AAD2\t0x7706\n0x8EA4AAD3\t0x4015\n0x8EA4AAD4\t0x4018\n0x8EA4AAD5\t0x76F6\n0x8EA4AAD6\t0x4016\n0x8EA4AAD7\t0x4017\n0x8EA4AAD8\t0x4019\n0x8EA4AAD9\t0x7700\n0x8EA4AADA\t0x401B\n0x8EA4AADB\t0x2510E\n0x8EA4AADC\t0x25109\n0x8EA4AADD\t0x7702\n0x8EA4AADE\t0x25107\n0x8EA4AADF\t0x4087\n0x8EA4AAE0\t0x2535F\n0x8EA4AAE1\t0x25360\n0x8EA4AAE2\t0x409C\n0x8EA4AAE3\t0x2542A\n0x8EA4AAE4\t0x409A\n0x8EA4AAE5\t0x25429\n0x8EA4AAE6\t0x40FF\n0x8EA4AAE7\t0x40FE\n0x8EA4AAE8\t0x2564D\n0x8EA4AAE9\t0x4131\n0x8EA4AAEA\t0x412E\n0x8EA4AAEB\t0x4130\n0x8EA4AAEC\t0x4132\n0x8EA4AAED\t0x2576C\n0x8EA4AAEF\t0x412F\n0x8EA4AAF0\t0x25767\n0x8EA4AAF1\t0x4195\n0x8EA4AAF2\t0x4196\n0x8EA4AAF3\t0x25939\n0x8EA4AAF4\t0x25934\n0x8EA4AAF5\t0x25A59\n0x8EA4AAF6\t0x41C5\n0x8EA4AAF7\t0x427A\n0x8EA4AAF8\t0x26223\n0x8EA4AAF9\t0x4342\n0x8EA4AAFA\t0x26282\n0x8EA4AAFB\t0x4354\n0x8EA4AAFC\t0x26283\n0x8EA4AAFD\t0x262A8\n0x8EA4AAFE\t0x26355\n0x8EA4ABA1\t0x263F9\n0x8EA4ABA2\t0x263F8\n0x8EA4ABA3\t0x263FC\n0x8EA4ABA4\t0x263FA\n0x8EA4ABA5\t0x8009\n0x8EA4ABA6\t0x2F97A\n0x8EA4ABA7\t0x439F\n0x8EA4ABA8\t0x43A0\n0x8EA4ABA9\t0x43A2\n0x8EA4ABAA\t0x43E0\n0x8EA4ABAB\t0x26674\n0x8EA4ABAC\t0x43E1\n0x8EA4ABAD\t0x2666B\n0x8EA4ABAE\t0x26671\n0x8EA4ABAF\t0x43DF\n0x8EA4ABB0\t0x26676\n0x8EA4ABB1\t0x26A0E\n0x8EA4ABB2\t0x4462\n0x8EA4ABB3\t0x4461\n0x8EA4ABB4\t0x26A10\n0x8EA4ABB5\t0x26A0F\n0x8EA4ABB6\t0x44A7\n0x8EA4ABB7\t0x26B38\n0x8EA4ABB8\t0x26B39\n0x8EA4ABB9\t0x26B3A\n0x8EA4ABBA\t0x82DA\n0x8EA4ABBB\t0x26B37\n0x8EA4ABBC\t0x26B3E\n0x8EA4ABBD\t0x830A\n0x8EA4ABBE\t0x4589\n0x8EA4ABBF\t0x2719C\n0x8EA4ABC0\t0x2722A\n0x8EA4ABC1\t0x2723A\n0x8EA4ABC2\t0x2722B\n0x8EA4ABC3\t0x27228\n0x8EA4ABC4\t0x275AA\n0x8EA4ABC5\t0x2760F\n0x8EA4ABC6\t0x461D\n0x8EA4ABC7\t0x27610\n0x8EA4ABC8\t0x277E6\n0x8EA4ABC9\t0x472A\n0x8EA4ABCA\t0x27D25\n0x8EA4ABCB\t0x27E8E\n0x8EA4ABCC\t0x47D3\n0x8EA4ABCD\t0x4842\n0x8EA4ABCE\t0x4843\n0x8EA4ABCF\t0x2848B\n0x8EA4ABD0\t0x4891\n0x8EA4ABD1\t0x2848C\n0x8EA4ABD2\t0x2849A\n0x8EA4ABD3\t0x4890\n0x8EA4ABD4\t0x48BF\n0x8EA4ABD5\t0x286B3\n0x8EA4ABD6\t0x48BC\n0x8EA4ABD7\t0x286B2\n0x8EA4ABD8\t0x48C0\n0x8EA4ABD9\t0x49C7\n0x8EA4ABDA\t0x49C5\n0x8EA4ABDB\t0x9655\n0x8EA4ABDC\t0x28E44\n0x8EA4ABDD\t0x9652\n0x8EA4ABDE\t0x4E35\n0x8EA4ABDF\t0x20158\n0x8EA4ABE0\t0x202A7\n0x8EA4ABE1\t0x5034\n0x8EA4ABE2\t0x5001\n0x8EA4ABE3\t0x20263\n0x8EA4ABE4\t0x500A\n0x8EA4ABE5\t0x3466\n0x8EA4ABE6\t0x2026A\n0x8EA4ABE7\t0x20265\n0x8EA4ABE8\t0x2026B\n0x8EA4ABE9\t0x34AD\n0x8EA4ABEA\t0x204ED\n0x8EA4ABEB\t0x205D9\n0x8EA4ABEC\t0x2073B\n0x8EA4ABED\t0x20732\n0x8EA4ABEE\t0x5258\n0x8EA4ABEF\t0x20735\n0x8EA4ABF0\t0x20731\n0x8EA4ABF1\t0x2073E\n0x8EA4ABF2\t0x20743\n0x8EA4ABF3\t0x20736\n0x8EA4ABF4\t0x2086D\n0x8EA4ABF5\t0x351D\n0x8EA4ABF6\t0x208E4\n0x8EA4ABF7\t0x3531\n0x8EA4ABF8\t0x532B\n0x8EA4ABF9\t0x209F4\n0x8EA4ABFA\t0x354C\n0x8EA4ABFB\t0x20A69\n0x8EA4ABFC\t0x20A6B\n0x8EA4ABFD\t0x3595\n0x8EA4ABFE\t0x3591\n0x8EA4ACA1\t0x3594\n0x8EA4ACA2\t0x20CBF\n0x8EA4ACA3\t0x20CC3\n0x8EA4ACA4\t0x20CAE\n0x8EA4ACA5\t0x358F\n0x8EA4ACA6\t0x54EC\n0x8EA4ACA7\t0x20CB1\n0x8EA4ACA8\t0x5515\n0x8EA4ACA9\t0x54FE\n0x8EA4ACAA\t0x20CBB\n0x8EA4ACAB\t0x20CAF\n0x8EA4ACAC\t0x20CB0\n0x8EA4ACAD\t0x54E3\n0x8EA4ACAE\t0x5516\n0x8EA4ACAF\t0x3640\n0x8EA4ACB0\t0x212EF\n0x8EA4ACB1\t0x3641\n0x8EA4ACB2\t0x212ED\n0x8EA4ACB3\t0x57D3\n0x8EA4ACB4\t0x212F0\n0x8EA4ACB5\t0x21593\n0x8EA4ACB6\t0x21634\n0x8EA4ACB7\t0x2162B\n0x8EA4ACB8\t0x5959\n0x8EA4ACB9\t0x5A27\n0x8EA4ACBA\t0x36D8\n0x8EA4ACBB\t0x36D2\n0x8EA4ACBC\t0x36DA\n0x8EA4ACBD\t0x5A28\n0x8EA4ACBE\t0x5A10\n0x8EA4ACBF\t0x36D7\n0x8EA4ACC0\t0x5A0E\n0x8EA4ACC1\t0x3742\n0x8EA4ACC2\t0x3757\n0x8EA4ACC3\t0x21A04\n0x8EA4ACC4\t0x21A03\n0x8EA4ACC5\t0x21A02\n0x8EA4ACC6\t0x5BAF\n0x8EA4ACC7\t0x21A05\n0x8EA4ACC8\t0x5BBA\n0x8EA4ACC9\t0x5BB1\n0x8EA4ACCA\t0x21A00\n0x8EA4ACCB\t0x21B74\n0x8EA4ACCC\t0x3778\n0x8EA4ACCD\t0x3782\n0x8EA4ACCE\t0x3797\n0x8EA4ACCF\t0x21C65\n0x8EA4ACD0\t0x21C63\n0x8EA4ACD1\t0x37C9\n0x8EA4ACD2\t0x21DD7\n0x8EA4ACD3\t0x37C8\n0x8EA4ACD4\t0x37D6\n0x8EA4ACD5\t0x37CC\n0x8EA4ACD6\t0x21DE8\n0x8EA4ACD7\t0x37D0\n0x8EA4ACD8\t0x21DDB\n0x8EA4ACD9\t0x21DD8\n0x8EA4ACDA\t0x37CE\n0x8EA4ACDB\t0x37C7\n0x8EA4ACDC\t0x5CFC\n0x8EA4ACDD\t0x21E09\n0x8EA4ACDE\t0x37CF\n0x8EA4ACDF\t0x37CB\n0x8EA4ACE0\t0x5CF2\n0x8EA4ACE1\t0x5CFE\n0x8EA4ACE2\t0x21DE5\n0x8EA4ACE3\t0x21DE7\n0x8EA4ACE4\t0x5DF8\n0x8EA4ACE5\t0x2203F\n0x8EA4ACE6\t0x3847\n0x8EA4ACE7\t0x220C0\n0x8EA4ACE8\t0x3848\n0x8EA4ACE9\t0x220B9\n0x8EA4ACEA\t0x220BA\n0x8EA4ACEB\t0x3883\n0x8EA4ACEC\t0x3885\n0x8EA4ACED\t0x3884\n0x8EA4ACEE\t0x22220\n0x8EA4ACEF\t0x2234F\n0x8EA4ACF0\t0x5F2C\n0x8EA4ACF1\t0x38B8\n0x8EA4ACF2\t0x38BC\n0x8EA4ACF3\t0x22491\n0x8EA4ACF4\t0x22490\n0x8EA4ACF5\t0x224EE\n0x8EA4ACF6\t0x224F3\n0x8EA4ACF7\t0x224EC\n0x8EA4ACF8\t0x224F1\n0x8EA4ACF9\t0x224EB\n0x8EA4ACFA\t0x224F2\n0x8EA4ACFB\t0x224F4\n0x8EA4ACFC\t0x224ED\n0x8EA4ACFD\t0x22641\n0x8EA4ACFE\t0x22648\n0x8EA4ADA1\t0x22645\n0x8EA4ADA2\t0x3931\n0x8EA4ADA3\t0x3934\n0x8EA4ADA4\t0x3936\n0x8EA4ADA5\t0x6082\n0x8EA4ADA6\t0x2267F\n0x8EA4ADA7\t0x2268B\n0x8EA4ADA8\t0x3923\n0x8EA4ADA9\t0x2263B\n0x8EA4ADAA\t0x2264E\n0x8EA4ADAB\t0x393A\n0x8EA4ADAC\t0x6091\n0x8EA4ADAD\t0x608F\n0x8EA4ADAE\t0x2267C\n0x8EA4ADAF\t0x39B4\n0x8EA4ADB0\t0x39B5\n0x8EA4ADB1\t0x39ED\n0x8EA4ADB2\t0x39EC\n0x8EA4ADB3\t0x39D8\n0x8EA4ADB4\t0x22AF0\n0x8EA4ADB5\t0x22B36\n0x8EA4ADB6\t0x22B3F\n0x8EA4ADB7\t0x22B43\n0x8EA4ADB8\t0x22B31\n0x8EA4ADB9\t0x22B34\n0x8EA4ADBA\t0x22B46\n0x8EA4ADBB\t0x39F6\n0x8EA4ADBC\t0x39E7\n0x8EA4ADBD\t0x22B2F\n0x8EA4ADBE\t0x22EC3\n0x8EA4ADBF\t0x3A7C\n0x8EA4ADC0\t0x3A7B\n0x8EA4ADC1\t0x22F36\n0x8EA4ADC2\t0x3A88\n0x8EA4ADC3\t0x6547\n0x8EA4ADC4\t0x654C\n0x8EA4ADC5\t0x22F21\n0x8EA4ADC6\t0x2F8C8\n0x8EA4ADC7\t0x658A\n0x8EA4ADC8\t0x23073\n0x8EA4ADC9\t0x3ABE\n0x8EA4ADCA\t0x230E6\n0x8EA4ADCB\t0x3AE7\n0x8EA4ADCC\t0x3AE5\n0x8EA4ADCD\t0x3AEE\n0x8EA4ADCE\t0x67E1\n0x8EA4ADCF\t0x684A\n0x8EA4ADD0\t0x2343F\n0x8EA4ADD1\t0x3B59\n0x8EA4ADD2\t0x3B5E\n0x8EA4ADD3\t0x2346B\n0x8EA4ADD4\t0x3B5A\n0x8EA4ADD5\t0x683F\n0x8EA4ADD6\t0x3B61\n0x8EA4ADD7\t0x3B58\n0x8EA4ADD8\t0x3B5B\n0x8EA4ADD9\t0x67BD\n0x8EA4ADDA\t0x23471\n0x8EA4ADDB\t0x3B5F\n0x8EA4ADDC\t0x2F8E2\n0x8EA4ADDD\t0x3C2A\n0x8EA4ADDE\t0x3C2D\n0x8EA4ADDF\t0x238B0\n0x8EA4ADE0\t0x3C23\n0x8EA4ADE1\t0x3C2B\n0x8EA4ADE2\t0x3C2C\n0x8EA4ADE3\t0x239F3\n0x8EA4ADE4\t0x3C7E\n0x8EA4ADE5\t0x2F8F5\n0x8EA4ADE6\t0x3C93\n0x8EA4ADE7\t0x3C99\n0x8EA4ADE8\t0x23B61\n0x8EA4ADE9\t0x23B5F\n0x8EA4ADEA\t0x3CB3\n0x8EA4ADEB\t0x3CE7\n0x8EA4ADEC\t0x3CEA\n0x8EA4ADED\t0x23D28\n0x8EA4ADEE\t0x23D1E\n0x8EA4ADEF\t0x23D29\n0x8EA4ADF0\t0x2F902\n0x8EA4ADF1\t0x23CEB\n0x8EA4ADF2\t0x23D66\n0x8EA4ADF3\t0x3DB4\n0x8EA4ADF4\t0x241F6\n0x8EA4ADF5\t0x70C9\n0x8EA4ADF6\t0x3E17\n0x8EA4ADF7\t0x24560\n0x8EA4ADF8\t0x24577\n0x8EA4ADF9\t0x245BB\n0x8EA4ADFA\t0x3E21\n0x8EA4ADFB\t0x245BC\n0x8EA4ADFC\t0x3E38\n0x8EA4ADFD\t0x3E37\n0x8EA4ADFE\t0x3E74\n0x8EA4AEA1\t0x3E73\n0x8EA4AEA2\t0x3E75\n0x8EA4AEA3\t0x247A2\n0x8EA4AEA4\t0x247B2\n0x8EA4AEA5\t0x2479E\n0x8EA4AEA6\t0x3E76\n0x8EA4AEA7\t0x3E78\n0x8EA4AEA8\t0x2493A\n0x8EA4AEA9\t0x24938\n0x8EA4AEAA\t0x73BA\n0x8EA4AEAB\t0x3F0C\n0x8EA4AEAC\t0x3F20\n0x8EA4AEAD\t0x3F1E\n0x8EA4AEAE\t0x24C4D\n0x8EA4AEAF\t0x3F5B\n0x8EA4AEB0\t0x24C5E\n0x8EA4AEB1\t0x3F5C\n0x8EA4AEB2\t0x24D17\n0x8EA4AEB3\t0x3F83\n0x8EA4AEB4\t0x75C6\n0x8EA4AEB5\t0x3F80\n0x8EA4AEB6\t0x3F81\n0x8EA4AEB7\t0x3F7E\n0x8EA4AEB8\t0x3F88\n0x8EA4AEB9\t0x3F85\n0x8EA4AEBA\t0x3F89\n0x8EA4AEBB\t0x3F7F\n0x8EA4AEBC\t0x3F8E\n0x8EA4AEBD\t0x24D64\n0x8EA4AEBE\t0x24D67\n0x8EA4AEBF\t0x3F84\n0x8EA4AEC0\t0x75B7\n0x8EA4AEC1\t0x768C\n0x8EA4AEC2\t0x24F59\n0x8EA4AEC3\t0x768D\n0x8EA4AEC4\t0x24FDA\n0x8EA4AEC5\t0x3FEE\n0x8EA4AEC6\t0x3FED\n0x8EA4AEC7\t0x3FFE\n0x8EA4AEC8\t0x25051\n0x8EA4AEC9\t0x3FFF\n0x8EA4AECA\t0x25055\n0x8EA4AECB\t0x2513B\n0x8EA4AECC\t0x25134\n0x8EA4AECD\t0x4023\n0x8EA4AECE\t0x25137\n0x8EA4AECF\t0x7717\n0x8EA4AED0\t0x25131\n0x8EA4AED1\t0x771C\n0x8EA4AED2\t0x401F\n0x8EA4AED3\t0x2513F\n0x8EA4AED4\t0x25159\n0x8EA4AED5\t0x7714\n0x8EA4AED6\t0x25361\n0x8EA4AED7\t0x408F\n0x8EA4AED8\t0x4090\n0x8EA4AED9\t0x25458\n0x8EA4AEDA\t0x25462\n0x8EA4AEDB\t0x25450\n0x8EA4AEDC\t0x40A0\n0x8EA4AEDD\t0x25451\n0x8EA4AEDE\t0x40A6\n0x8EA4AEDF\t0x409F\n0x8EA4AEE0\t0x25446\n0x8EA4AEE1\t0x40A7\n0x8EA4AEE2\t0x40A1\n0x8EA4AEE3\t0x2562D\n0x8EA4AEE4\t0x4102\n0x8EA4AEE5\t0x4136\n0x8EA4AEE6\t0x25948\n0x8EA4AEE7\t0x25951\n0x8EA4AEE8\t0x2594A\n0x8EA4AEE9\t0x2594F\n0x8EA4AEEA\t0x25950\n0x8EA4AEEB\t0x25949\n0x8EA4AEEC\t0x25A63\n0x8EA4AEED\t0x41C8\n0x8EA4AEEE\t0x25A66\n0x8EA4AEEF\t0x25A60\n0x8EA4AEF0\t0x41D8\n0x8EA4AEF1\t0x7B0C\n0x8EA4AEF2\t0x41DD\n0x8EA4AEF3\t0x41DC\n0x8EA4AEF4\t0x25AF1\n0x8EA4AEF5\t0x41D7\n0x8EA4AEF6\t0x25B07\n0x8EA4AEF7\t0x41DA\n0x8EA4AEF8\t0x42BA\n0x8EA4AEF9\t0x25F9B\n0x8EA4AEFA\t0x25FA3\n0x8EA4AEFB\t0x25F9D\n0x8EA4AEFC\t0x42BE\n0x8EA4AEFD\t0x42C2\n0x8EA4AEFE\t0x42BB\n0x8EA4AFA1\t0x42C0\n0x8EA4AFA2\t0x25FA9\n0x8EA4AFA3\t0x25FA7\n0x8EA4AFA4\t0x25FA4\n0x8EA4AFA5\t0x7D23\n0x8EA4AFA6\t0x25FBA\n0x8EA4AFA7\t0x221C1\n0x8EA4AFA8\t0x26226\n0x8EA4AFA9\t0x4343\n0x8EA4AFAA\t0x4355\n0x8EA4AFAB\t0x26294\n0x8EA4AFAC\t0x26293\n0x8EA4AFAD\t0x4357\n0x8EA4AFAE\t0x4368\n0x8EA4AFAF\t0x7F98\n0x8EA4AFB0\t0x7F90\n0x8EA4AFB1\t0x26407\n0x8EA4AFB2\t0x2640D\n0x8EA4AFB3\t0x26402\n0x8EA4AFB4\t0x2640C\n0x8EA4AFB5\t0x26409\n0x8EA4AFB6\t0x26408\n0x8EA4AFB7\t0x26413\n0x8EA4AFB8\t0x43A1\n0x8EA4AFB9\t0x264D2\n0x8EA4AFBA\t0x803A\n0x8EA4AFBB\t0x2653E\n0x8EA4AFBC\t0x2653C\n0x8EA4AFBD\t0x26667\n0x8EA4AFBE\t0x2669E\n0x8EA4AFBF\t0x43EA\n0x8EA4AFC0\t0x266AD\n0x8EA4AFC1\t0x43E7\n0x8EA4AFC2\t0x266D9\n0x8EA4AFC3\t0x26642\n0x8EA4AFC4\t0x266A3\n0x8EA4AFC5\t0x266A0\n0x8EA4AFC6\t0x43E8\n0x8EA4AFC7\t0x43E9\n0x8EA4AFC8\t0x2667C\n0x8EA4AFC9\t0x26904\n0x8EA4AFCA\t0x4454\n0x8EA4AFCB\t0x26958\n0x8EA4AFCC\t0x26960\n0x8EA4AFCD\t0x269C9\n0x8EA4AFCE\t0x269C8\n0x8EA4AFCF\t0x8226\n0x8EA4AFD0\t0x4465\n0x8EA4AFD1\t0x26A1C\n0x8EA4AFD2\t0x26A1A\n0x8EA4AFD3\t0x448A\n0x8EA4AFD4\t0x26B74\n0x8EA4AFD5\t0x44B0\n0x8EA4AFD6\t0x26B6E\n0x8EA4AFD7\t0x26B6F\n0x8EA4AFD8\t0x26B79\n0x8EA4AFD9\t0x44BC\n0x8EA4AFDA\t0x832E\n0x8EA4AFDB\t0x26B77\n0x8EA4AFDC\t0x8355\n0x8EA4AFDD\t0x831A\n0x8EA4AFDE\t0x44B8\n0x8EA4AFDF\t0x833D\n0x8EA4AFE0\t0x26B7C\n0x8EA4AFE1\t0x44B2\n0x8EA4AFE2\t0x26B70\n0x8EA4AFE3\t0x8330\n0x8EA4AFE4\t0x44BD\n0x8EA4AFE5\t0x26B7A\n0x8EA4AFE6\t0x26B82\n0x8EA4AFE7\t0x458A\n0x8EA4AFE8\t0x8651\n0x8EA4AFE9\t0x45A1\n0x8EA4AFEA\t0x27244\n0x8EA4AFEB\t0x45A2\n0x8EA4AFEC\t0x27243\n0x8EA4AFED\t0x8688\n0x8EA4AFEE\t0x27245\n0x8EA4AFEF\t0x4615\n0x8EA4AFF0\t0x27625\n0x8EA4AFF1\t0x2761F\n0x8EA4AFF2\t0x4620\n0x8EA4AFF3\t0x4673\n0x8EA4AFF4\t0x277E8\n0x8EA4AFF5\t0x898E\n0x8EA4AFF6\t0x898D\n0x8EA4AFF7\t0x27809\n0x8EA4AFF8\t0x278B7\n0x8EA4AFF9\t0x278B9\n0x8EA4AFFA\t0x27964\n0x8EA4AFFB\t0x27963\n0x8EA4AFFC\t0x8A09\n0x8EA4AFFD\t0x8A14\n0x8EA4AFFE\t0x46B1\n0x8EA4B0A1\t0x27962\n0x8EA4B0A2\t0x27965\n0x8EA4B0A3\t0x472B\n0x8EA4B0A4\t0x27BAC\n0x8EA4B0A5\t0x4745\n0x8EA4B0A6\t0x27D2A\n0x8EA4B0A7\t0x4797\n0x8EA4B0A8\t0x4798\n0x8EA4B0A9\t0x27E96\n0x8EA4B0AA\t0x47D5\n0x8EA4B0AB\t0x27FC2\n0x8EA4B0AC\t0x2F9DE\n0x8EA4B0AD\t0x4893\n0x8EA4B0AE\t0x4896\n0x8EA4B0AF\t0x9007\n0x8EA4B0B0\t0x4894\n0x8EA4B0B1\t0x284AA\n0x8EA4B0B2\t0x284B0\n0x8EA4B0B3\t0x48C7\n0x8EA4B0B4\t0x48C5\n0x8EA4B0B5\t0x286D4\n0x8EA4B0B6\t0x286CD\n0x8EA4B0B7\t0x286D6\n0x8EA4B0B8\t0x48C4\n0x8EA4B0B9\t0x287F0\n0x8EA4B0BA\t0x9579\n0x8EA4B0BB\t0x9584\n0x8EA4B0BC\t0x49CE\n0x8EA4B0BD\t0x49CA\n0x8EA4B0BE\t0x49CC\n0x8EA4B0BF\t0x9657\n0x8EA4B0C0\t0x49C9\n0x8EA4B0C1\t0x96BA\n0x8EA4B0C3\t0x29D4B\n0x8EA4B0C4\t0x20162\n0x8EA4B0C5\t0x346E\n0x8EA4B0C6\t0x202B7\n0x8EA4B0C7\t0x5067\n0x8EA4B0C8\t0x202AC\n0x8EA4B0C9\t0x202AB\n0x8EA4B0CA\t0x3471\n0x8EA4B0CB\t0x202C1\n0x8EA4B0CC\t0x34BB\n0x8EA4B0CD\t0x34D3\n0x8EA4B0CE\t0x205E8\n0x8EA4B0CF\t0x20769\n0x8EA4B0D0\t0x2075D\n0x8EA4B0D1\t0x2075F\n0x8EA4B0D2\t0x34F3\n0x8EA4B0D3\t0x34ED\n0x8EA4B0D4\t0x34F5\n0x8EA4B0D5\t0x20764\n0x8EA4B0D6\t0x20762\n0x8EA4B0D7\t0x34F1\n0x8EA4B0D8\t0x34F2\n0x8EA4B0D9\t0x34F6\n0x8EA4B0DA\t0x3520\n0x8EA4B0DB\t0x208F9\n0x8EA4B0DC\t0x3528\n0x8EA4B0DD\t0x208EE\n0x8EA4B0DE\t0x5318\n0x8EA4B0DF\t0x532C\n0x8EA4B0E0\t0x5359\n0x8EA4B0E1\t0x209AB\n0x8EA4B0E2\t0x209AC\n0x8EA4B0E3\t0x209AA\n0x8EA4B0E4\t0x5368\n0x8EA4B0E5\t0x537E\n0x8EA4B0E6\t0x20A86\n0x8EA4B0E7\t0x20A7A\n0x8EA4B0E8\t0x53A1\n0x8EA4B0E9\t0x20D28\n0x8EA4B0EA\t0x35A1\n0x8EA4B0EB\t0x555B\n0x8EA4B0EC\t0x35AA\n0x8EA4B0ED\t0x35A9\n0x8EA4B0EE\t0x20D31\n0x8EA4B0EF\t0x35B5\n0x8EA4B0F0\t0x35A5\n0x8EA4B0F1\t0x35A8\n0x8EA4B0F2\t0x5542\n0x8EA4B0F3\t0x35A7\n0x8EA4B0F4\t0x5547\n0x8EA4B0F5\t0x20D2D\n0x8EA4B0F6\t0x2F843\n0x8EA4B0F7\t0x553D\n0x8EA4B0F8\t0x20D2B\n0x8EA4B0F9\t0x20D32\n0x8EA4B0FA\t0x5560\n0x8EA4B0FB\t0x57EB\n0x8EA4B0FC\t0x21329\n0x8EA4B0FD\t0x21326\n0x8EA4B0FE\t0x21353\n0x8EA4B1A1\t0x364D\n0x8EA4B1A2\t0x21333\n0x8EA4B1A3\t0x21334\n0x8EA4B1A4\t0x2159D\n0x8EA4B1A5\t0x369C\n0x8EA4B1A6\t0x595F\n0x8EA4B1A7\t0x21641\n0x8EA4B1A8\t0x36EA\n0x8EA4B1A9\t0x36E5\n0x8EA4B1AA\t0x21791\n0x8EA4B1AB\t0x21769\n0x8EA4B1AC\t0x5B6F\n0x8EA4B1AD\t0x21A22\n0x8EA4B1AE\t0x375E\n0x8EA4B1AF\t0x21A34\n0x8EA4B1B0\t0x2F86D\n0x8EA4B1B1\t0x21B2E\n0x8EA4B1B2\t0x3786\n0x8EA4B1B3\t0x3784\n0x8EA4B1B4\t0x21BF4\n0x8EA4B1B5\t0x5C5A\n0x8EA4B1B6\t0x21E28\n0x8EA4B1B7\t0x37D9\n0x8EA4B1B8\t0x21E1C\n0x8EA4B1B9\t0x37DE\n0x8EA4B1BA\t0x21E11\n0x8EA4B1BB\t0x21E24\n0x8EA4B1BC\t0x21E15\n0x8EA4B1BD\t0x37DB\n0x8EA4B1BE\t0x21E16\n0x8EA4B1BF\t0x21E54\n0x8EA4B1C0\t0x21E23\n0x8EA4B1C1\t0x21FFF\n0x8EA4B1C2\t0x3831\n0x8EA4B1C3\t0x220CF\n0x8EA4B1C4\t0x220D0\n0x8EA4B1C5\t0x384B\n0x8EA4B1C6\t0x220CE\n0x8EA4B1C7\t0x3849\n0x8EA4B1C8\t0x384A\n0x8EA4B1C9\t0x384C\n0x8EA4B1CA\t0x221C7\n0x8EA4B1CB\t0x2225C\n0x8EA4B1CC\t0x388A\n0x8EA4B1CD\t0x22236\n0x8EA4B1CE\t0x3889\n0x8EA4B1CF\t0x388B\n0x8EA4B1D0\t0x22243\n0x8EA4B1D1\t0x38BB\n0x8EA4B1D2\t0x5FA2\n0x8EA4B1D3\t0x5F9D\n0x8EA4B1D4\t0x38E4\n0x8EA4B1D5\t0x2252A\n0x8EA4B1D6\t0x22501\n0x8EA4B1D7\t0x5FA3\n0x8EA4B1D8\t0x2250B\n0x8EA4B1D9\t0x2250F\n0x8EA4B1DA\t0x393B\n0x8EA4B1DB\t0x392E\n0x8EA4B1DC\t0x393E\n0x8EA4B1DD\t0x3946\n0x8EA4B1DE\t0x3953\n0x8EA4B1DF\t0x226DF\n0x8EA4B1E0\t0x3944\n0x8EA4B1E1\t0x226D2\n0x8EA4B1E2\t0x393F\n0x8EA4B1E3\t0x3942\n0x8EA4B1E4\t0x394F\n0x8EA4B1E5\t0x226CD\n0x8EA4B1E6\t0x3952\n0x8EA4B1E7\t0x394A\n0x8EA4B1E8\t0x60C2\n0x8EA4B1E9\t0x226DB\n0x8EA4B1EA\t0x395A\n0x8EA4B1EB\t0x60A5\n0x8EA4B1EC\t0x3949\n0x8EA4B1ED\t0x226CF\n0x8EA4B1EE\t0x621C\n0x8EA4B1EF\t0x229C0\n0x8EA4B1F0\t0x621D\n0x8EA4B1F1\t0x3A03\n0x8EA4B1F2\t0x22B81\n0x8EA4B1F3\t0x22B82\n0x8EA4B1F4\t0x22B8A\n0x8EA4B1F5\t0x22BA8\n0x8EA4B1F6\t0x22B8C\n0x8EA4B1F7\t0x6395\n0x8EA4B1F8\t0x639A\n0x8EA4B1F9\t0x3A01\n0x8EA4B1FA\t0x3A06\n0x8EA4B1FB\t0x39FB\n0x8EA4B1FC\t0x39F9\n0x8EA4B1FD\t0x22B8E\n0x8EA4B1FE\t0x3A05\n0x8EA4B2A1\t0x39FA\n0x8EA4B2A2\t0x22B8B\n0x8EA4B2A3\t0x63A6\n0x8EA4B2A4\t0x22B96\n0x8EA4B2A5\t0x39FE\n0x8EA4B2A6\t0x22BCC\n0x8EA4B2A7\t0x3A7D\n0x8EA4B2A8\t0x3A8C\n0x8EA4B2A9\t0x22F4F\n0x8EA4B2AA\t0x22F4A\n0x8EA4B2AB\t0x6550\n0x8EA4B2AC\t0x3A8E\n0x8EA4B2AD\t0x22F4B\n0x8EA4B2AE\t0x22F3D\n0x8EA4B2AF\t0x6552\n0x8EA4B2B0\t0x22F44\n0x8EA4B2B1\t0x22F49\n0x8EA4B2B2\t0x2309E\n0x8EA4B2B3\t0x230F3\n0x8EA4B2B4\t0x65C8\n0x8EA4B2B5\t0x230F5\n0x8EA4B2B6\t0x3AF0\n0x8EA4B2B7\t0x3AF2\n0x8EA4B2B8\t0x231B3\n0x8EA4B2B9\t0x6658\n0x8EA4B2BA\t0x3AF1\n0x8EA4B2BB\t0x3AE6\n0x8EA4B2BC\t0x231E5\n0x8EA4B2BD\t0x231B6\n0x8EA4B2BE\t0x2F8D8\n0x8EA4B2BF\t0x6888\n0x8EA4B2C0\t0x23486\n0x8EA4B2C1\t0x3B6F\n0x8EA4B2C2\t0x3B6D\n0x8EA4B2C3\t0x3B69\n0x8EA4B2C4\t0x234B6\n0x8EA4B2C5\t0x23485\n0x8EA4B2C6\t0x3B6E\n0x8EA4B2C7\t0x234AB\n0x8EA4B2C8\t0x3C2F\n0x8EA4B2C9\t0x3C30\n0x8EA4B2CA\t0x3C63\n0x8EA4B2CB\t0x23A0D\n0x8EA4B2CC\t0x23A8B\n0x8EA4B2CD\t0x23A8C\n0x8EA4B2CE\t0x6BB8\n0x8EA4B2CF\t0x3C80\n0x8EA4B2D0\t0x6BB9\n0x8EA4B2D1\t0x3C9A\n0x8EA4B2D2\t0x3C94\n0x8EA4B2D3\t0x3C96\n0x8EA4B2D4\t0x3C95\n0x8EA4B2D5\t0x3C97\n0x8EA4B2D6\t0x23B72\n0x8EA4B2D7\t0x3CF4\n0x8EA4B2D8\t0x3CFE\n0x8EA4B2D9\t0x23D8F\n0x8EA4B2DA\t0x3D01\n0x8EA4B2DB\t0x23D79\n0x8EA4B2DC\t0x3D02\n0x8EA4B2DD\t0x23D77\n0x8EA4B2DE\t0x3CF9\n0x8EA4B2DF\t0x23D90\n0x8EA4B2E0\t0x23D88\n0x8EA4B2E1\t0x23D80\n0x8EA4B2E2\t0x23D9E\n0x8EA4B2E3\t0x3CF6\n0x8EA4B2E4\t0x3CF7\n0x8EA4B2E5\t0x23D82\n0x8EA4B2E6\t0x23D34\n0x8EA4B2E7\t0x23D89\n0x8EA4B2E8\t0x3CFF\n0x8EA4B2E9\t0x23D85\n0x8EA4B2EA\t0x23D7E\n0x8EA4B2EB\t0x23D7A\n0x8EA4B2EC\t0x23DA6\n0x8EA4B2ED\t0x6E0B\n0x8EA4B2EE\t0x23DB5\n0x8EA4B2EF\t0x241F4\n0x8EA4B2F0\t0x3DBF\n0x8EA4B2F1\t0x3DBC\n0x8EA4B2F2\t0x7105\n0x8EA4B2F3\t0x24229\n0x8EA4B2F4\t0x24226\n0x8EA4B2F5\t0x2422A\n0x8EA4B2F6\t0x3DBE\n0x8EA4B2F7\t0x3DC0\n0x8EA4B2F8\t0x2457E\n0x8EA4B2F9\t0x3E3B\n0x8EA4B2FA\t0x3E39\n0x8EA4B2FB\t0x2465B\n0x8EA4B2FC\t0x24661\n0x8EA4B2FD\t0x24660\n0x8EA4B2FE\t0x3E3C\n0x8EA4B3A1\t0x2479B\n0x8EA4B3A2\t0x7314\n0x8EA4B3A3\t0x7304\n0x8EA4B3A4\t0x247C3\n0x8EA4B3A5\t0x3E7D\n0x8EA4B3A6\t0x247CD\n0x8EA4B3A7\t0x3E7F\n0x8EA4B3A8\t0x3E7A\n0x8EA4B3A9\t0x3E7C\n0x8EA4B3AA\t0x7305\n0x8EA4B3AB\t0x3E7E\n0x8EA4B3AC\t0x7315\n0x8EA4B3AD\t0x730D\n0x8EA4B3AE\t0x3E80\n0x8EA4B3AF\t0x3EBF\n0x8EA4B3B0\t0x3EC3\n0x8EA4B3B1\t0x24954\n0x8EA4B3B2\t0x24959\n0x8EA4B3B3\t0x3ECC\n0x8EA4B3B4\t0x3F0E\n0x8EA4B3B5\t0x3F0D\n0x8EA4B3B6\t0x24AF5\n0x8EA4B3B7\t0x3F26\n0x8EA4B3B8\t0x3F24\n0x8EA4B3B9\t0x3F25\n0x8EA4B3BA\t0x3F23\n0x8EA4B3BB\t0x3F21\n0x8EA4B3BC\t0x3F29\n0x8EA4B3BD\t0x24C69\n0x8EA4B3BE\t0x24C65\n0x8EA4B3BF\t0x3F8F\n0x8EA4B3C0\t0x3F8D\n0x8EA4B3C1\t0x24D7C\n0x8EA4B3C2\t0x3F8B\n0x8EA4B3C3\t0x3F92\n0x8EA4B3C4\t0x24D80\n0x8EA4B3C5\t0x3F90\n0x8EA4B3C6\t0x24F65\n0x8EA4B3C7\t0x3FEF\n0x8EA4B3C8\t0x3FF0\n0x8EA4B3C9\t0x24FDF\n0x8EA4B3CA\t0x25060\n0x8EA4B3CB\t0x4001\n0x8EA4B3CC\t0x2505E\n0x8EA4B3CD\t0x402E\n0x8EA4B3CE\t0x402D\n0x8EA4B3CF\t0x772E\n0x8EA4B3D0\t0x4028\n0x8EA4B3D1\t0x4029\n0x8EA4B3D2\t0x402C\n0x8EA4B3D3\t0x2518F\n0x8EA4B3D4\t0x25161\n0x8EA4B3D5\t0x2515A\n0x8EA4B3D6\t0x7741\n0x8EA4B3D7\t0x4088\n0x8EA4B3D8\t0x25367\n0x8EA4B3D9\t0x4092\n0x8EA4B3DA\t0x4091\n0x8EA4B3DB\t0x77EA\n0x8EA4B3DC\t0x253BB\n0x8EA4B3DD\t0x7844\n0x8EA4B3DE\t0x40A9\n0x8EA4B3DF\t0x40AC\n0x8EA4B3E0\t0x40AE\n0x8EA4B3E1\t0x40AA\n0x8EA4B3E2\t0x4106\n0x8EA4B3E3\t0x4105\n0x8EA4B3E4\t0x414A\n0x8EA4B3E5\t0x413E\n0x8EA4B3E6\t0x413C\n0x8EA4B3E7\t0x413B\n0x8EA4B3E8\t0x2579B\n0x8EA4B3E9\t0x4142\n0x8EA4B3EA\t0x4141\n0x8EA4B3EB\t0x4143\n0x8EA4B3EC\t0x257A9\n0x8EA4B3ED\t0x4145\n0x8EA4B3EE\t0x25966\n0x8EA4B3EF\t0x419A\n0x8EA4B3F0\t0x419B\n0x8EA4B3F1\t0x419F\n0x8EA4B3F2\t0x419E\n0x8EA4B3F3\t0x25A72\n0x8EA4B3F4\t0x25A76\n0x8EA4B3F5\t0x25B14\n0x8EA4B3F6\t0x41DE\n0x8EA4B3F7\t0x41E2\n0x8EA4B3F8\t0x41E6\n0x8EA4B3F9\t0x25B0F\n0x8EA4B3FA\t0x7B29\n0x8EA4B3FB\t0x41E3\n0x8EA4B3FC\t0x7B27\n0x8EA4B3FD\t0x41DF\n0x8EA4B3FE\t0x25E41\n0x8EA4B4A1\t0x25E46\n0x8EA4B4A2\t0x7C9D\n0x8EA4B4A3\t0x25E4B\n0x8EA4B4A4\t0x25E43\n0x8EA4B4A5\t0x427E\n0x8EA4B4A6\t0x42C9\n0x8EA4B4A7\t0x42CC\n0x8EA4B4A8\t0x25FC6\n0x8EA4B4A9\t0x42D1\n0x8EA4B4AA\t0x25FC7\n0x8EA4B4AB\t0x42D0\n0x8EA4B4AC\t0x25FCE\n0x8EA4B4AD\t0x42CF\n0x8EA4B4AE\t0x42C8\n0x8EA4B4AF\t0x25FC9\n0x8EA4B4B0\t0x42CD\n0x8EA4B4B1\t0x25FCB\n0x8EA4B4B2\t0x25FC5\n0x8EA4B4B3\t0x4349\n0x8EA4B4B4\t0x4347\n0x8EA4B4B5\t0x4358\n0x8EA4B4B6\t0x436B\n0x8EA4B4B7\t0x436C\n0x8EA4B4B8\t0x436A\n0x8EA4B4B9\t0x26369\n0x8EA4B4BA\t0x4380\n0x8EA4B4BB\t0x4382\n0x8EA4B4BC\t0x4384\n0x8EA4B4BD\t0x7FC8\n0x8EA4B4BE\t0x4383\n0x8EA4B4BF\t0x2641E\n0x8EA4B4C0\t0x264BA\n0x8EA4B4C1\t0x43B6\n0x8EA4B4C2\t0x26552\n0x8EA4B4C3\t0x26551\n0x8EA4B4C4\t0x26553\n0x8EA4B4C5\t0x2669F\n0x8EA4B4C6\t0x266DB\n0x8EA4B4C7\t0x8126\n0x8EA4B4C8\t0x43F1\n0x8EA4B4C9\t0x266E3\n0x8EA4B4CA\t0x43F6\n0x8EA4B4CB\t0x43F3\n0x8EA4B4CC\t0x43F0\n0x8EA4B4CD\t0x811C\n0x8EA4B4CE\t0x266D7\n0x8EA4B4CF\t0x266E9\n0x8EA4B4D0\t0x8128\n0x8EA4B4D1\t0x43F5\n0x8EA4B4D2\t0x43F4\n0x8EA4B4D3\t0x43F7\n0x8EA4B4D4\t0x266DE\n0x8EA4B4D5\t0x266DC\n0x8EA4B4D6\t0x2693C\n0x8EA4B4D7\t0x2F98B\n0x8EA4B4D8\t0x4455\n0x8EA4B4D9\t0x26A22\n0x8EA4B4DA\t0x26A32\n0x8EA4B4DB\t0x26A23\n0x8EA4B4DC\t0x448B\n0x8EA4B4DD\t0x44CB\n0x8EA4B4DE\t0x44C2\n0x8EA4B4DF\t0x26BD4\n0x8EA4B4E0\t0x26BC8\n0x8EA4B4E1\t0x26BBC\n0x8EA4B4E2\t0x44CA\n0x8EA4B4E3\t0x44CC\n0x8EA4B4E4\t0x26BCD\n0x8EA4B4E5\t0x44C7\n0x8EA4B4E6\t0x44C9\n0x8EA4B4E7\t0x8370\n0x8EA4B4E8\t0x26BBE\n0x8EA4B4E9\t0x44C6\n0x8EA4B4EA\t0x26C40\n0x8EA4B4EB\t0x26BD6\n0x8EA4B4EC\t0x44C3\n0x8EA4B4ED\t0x8382\n0x8EA4B4EE\t0x26BBD\n0x8EA4B4EF\t0x83AC\n0x8EA4B4F0\t0x26BBA\n0x8EA4B4F1\t0x44C4\n0x8EA4B4F2\t0x26BC0\n0x8EA4B4F3\t0x2F99B\n0x8EA4B4F4\t0x2F99D\n0x8EA4B4F5\t0x26BC1\n0x8EA4B4F6\t0x271A6\n0x8EA4B4F7\t0x271A5\n0x8EA4B4F8\t0x271A8\n0x8EA4B4F9\t0x45A9\n0x8EA4B4FA\t0x86AD\n0x8EA4B4FB\t0x45A8\n0x8EA4B4FC\t0x45A6\n0x8EA4B4FD\t0x2725F\n0x8EA4B4FE\t0x27270\n0x8EA4B5A1\t0x2726A\n0x8EA4B5A2\t0x27265\n0x8EA4B5A3\t0x27267\n0x8EA4B5A4\t0x2726F\n0x8EA4B5A5\t0x27287\n0x8EA4B5A6\t0x86CA\n0x8EA4B5A7\t0x8851\n0x8EA4B5A8\t0x2763D\n0x8EA4B5A9\t0x27643\n0x8EA4B5AA\t0x4622\n0x8EA4B5AB\t0x27640\n0x8EA4B5AC\t0x4626\n0x8EA4B5AD\t0x4624\n0x8EA4B5AE\t0x4625\n0x8EA4B5AF\t0x889D\n0x8EA4B5B0\t0x462A\n0x8EA4B5B1\t0x4674\n0x8EA4B5B2\t0x27818\n0x8EA4B5B3\t0x4679\n0x8EA4B5B4\t0x8990\n0x8EA4B5B5\t0x467A\n0x8EA4B5B6\t0x27819\n0x8EA4B5B7\t0x278C1\n0x8EA4B5B8\t0x89D8\n0x8EA4B5B9\t0x89D7\n0x8EA4B5BA\t0x4697\n0x8EA4B5BB\t0x278BC\n0x8EA4B5BC\t0x278C8\n0x8EA4B5BD\t0x8A2E\n0x8EA4B5BE\t0x27971\n0x8EA4B5BF\t0x46BC\n0x8EA4B5C0\t0x2796E\n0x8EA4B5C1\t0x46B3\n0x8EA4B5C2\t0x27978\n0x8EA4B5C3\t0x46BF\n0x8EA4B5C4\t0x46B7\n0x8EA4B5C5\t0x2F9CD\n0x8EA4B5C6\t0x2797A\n0x8EA4B5C7\t0x27BB1\n0x8EA4B5C8\t0x27BAF\n0x8EA4B5C9\t0x27BB0\n0x8EA4B5CA\t0x4734\n0x8EA4B5CB\t0x4746\n0x8EA4B5CC\t0x4748\n0x8EA4B5CD\t0x8C59\n0x8EA4B5CE\t0x27CA8\n0x8EA4B5CF\t0x27CA6\n0x8EA4B5D0\t0x4756\n0x8EA4B5D1\t0x4767\n0x8EA4B5D2\t0x27D48\n0x8EA4B5D3\t0x27D45\n0x8EA4B5D4\t0x4768\n0x8EA4B5D5\t0x4799\n0x8EA4B5D6\t0x479A\n0x8EA4B5D7\t0x27EA0\n0x8EA4B5D8\t0x27EA4\n0x8EA4B5D9\t0x47D8\n0x8EA4B5DA\t0x27FD4\n0x8EA4B5DB\t0x47DB\n0x8EA4B5DC\t0x47DC\n0x8EA4B5DD\t0x47DD\n0x8EA4B5DE\t0x47D7\n0x8EA4B5DF\t0x27FD2\n0x8EA4B5E0\t0x28222\n0x8EA4B5E1\t0x4849\n0x8EA4B5E2\t0x484A\n0x8EA4B5E3\t0x8EDA\n0x8EA4B5E4\t0x282B7\n0x8EA4B5E5\t0x282CC\n0x8EA4B5E6\t0x9033\n0x8EA4B5E7\t0x284E6\n0x8EA4B5E8\t0x9018\n0x8EA4B5E9\t0x489A\n0x8EA4B5EA\t0x284C8\n0x8EA4B5EB\t0x48CD\n0x8EA4B5EC\t0x48CA\n0x8EA4B5ED\t0x286F4\n0x8EA4B5EE\t0x48CB\n0x8EA4B5EF\t0x286ED\n0x8EA4B5F0\t0x48CF\n0x8EA4B5F1\t0x2867E\n0x8EA4B5F2\t0x2F9E3\n0x8EA4B5F3\t0x48CC\n0x8EA4B5F4\t0x48EA\n0x8EA4B5F5\t0x48ED\n0x8EA4B5F6\t0x287F9\n0x8EA4B5F7\t0x287FD\n0x8EA4B5F8\t0x48E9\n0x8EA4B5F9\t0x28807\n0x8EA4B5FA\t0x491A\n0x8EA4B5FB\t0x91EF\n0x8EA4B5FC\t0x498D\n0x8EA4B5FD\t0x49D2\n0x8EA4B5FE\t0x28E78\n0x8EA4B6A1\t0x28E7A\n0x8EA4B6A2\t0x28E79\n0x8EA4B6A3\t0x28F8A\n0x8EA4B6A4\t0x49F2\n0x8EA4B6A5\t0x2907B\n0x8EA4B6A6\t0x291D5\n0x8EA4B6A7\t0x291E9\n0x8EA4B6A8\t0x4A3D\n0x8EA4B6A9\t0x291EB\n0x8EA4B6AA\t0x4A3E\n0x8EA4B6AB\t0x4AF8\n0x8EA4B6AC\t0x4B23\n0x8EA4B6AD\t0x9AD9\n0x8EA4B6AE\t0x4EB4\n0x8EA4B6AF\t0x2016C\n0x8EA4B6B0\t0x50A0\n0x8EA4B6B1\t0x5090\n0x8EA4B6B2\t0x3475\n0x8EA4B6B3\t0x5086\n0x8EA4B6B4\t0x5084\n0x8EA4B6B5\t0x202FA\n0x8EA4B6B6\t0x508A\n0x8EA4B6B7\t0x3476\n0x8EA4B6B8\t0x3473\n0x8EA4B6B9\t0x509F\n0x8EA4B6BA\t0x50A1\n0x8EA4B6BB\t0x20318\n0x8EA4B6BC\t0x5093\n0x8EA4B6BD\t0x34BD\n0x8EA4B6BE\t0x205F6\n0x8EA4B6BF\t0x51D5\n0x8EA4B6C0\t0x2078A\n0x8EA4B6C1\t0x20789\n0x8EA4B6C2\t0x34F9\n0x8EA4B6C3\t0x2077F\n0x8EA4B6C4\t0x20788\n0x8EA4B6C5\t0x34FA\n0x8EA4B6C6\t0x20783\n0x8EA4B6C7\t0x20784\n0x8EA4B6C8\t0x20798\n0x8EA4B6C9\t0x20763\n0x8EA4B6CA\t0x20787\n0x8EA4B6CB\t0x3521\n0x8EA4B6CC\t0x2F827\n0x8EA4B6CD\t0x3529\n0x8EA4B6CE\t0x208F5\n0x8EA4B6CF\t0x20950\n0x8EA4B6D0\t0x3538\n0x8EA4B6D1\t0x354E\n0x8EA4B6D2\t0x20A87\n0x8EA4B6D3\t0x20A8A\n0x8EA4B6D4\t0x20B65\n0x8EA4B6D5\t0x20DB7\n0x8EA4B6D6\t0x20DC1\n0x8EA4B6D7\t0x20DC7\n0x8EA4B6D8\t0x35C8\n0x8EA4B6D9\t0x35BC\n0x8EA4B6DA\t0x20DC5\n0x8EA4B6DB\t0x20DCB\n0x8EA4B6DC\t0x5590\n0x8EA4B6DD\t0x20DD1\n0x8EA4B6DE\t0x35BB\n0x8EA4B6DF\t0x35C2\n0x8EA4B6E0\t0x35C0\n0x8EA4B6E1\t0x20DB8\n0x8EA4B6E2\t0x20DCA\n0x8EA4B6E3\t0x35CA\n0x8EA4B6E4\t0x20DDE\n0x8EA4B6E5\t0x35C9\n0x8EA4B6E6\t0x20DCE\n0x8EA4B6E7\t0x35B8\n0x8EA4B6E8\t0x5710\n0x8EA4B6E9\t0x5817\n0x8EA4B6EA\t0x21368\n0x8EA4B6EB\t0x364E\n0x8EA4B6EC\t0x2136B\n0x8EA4B6ED\t0x5844\n0x8EA4B6EE\t0x3650\n0x8EA4B6EF\t0x582B\n0x8EA4B6F0\t0x2136A\n0x8EA4B6F1\t0x5845\n0x8EA4B6F2\t0x21366\n0x8EA4B6F3\t0x21377\n0x8EA4B6F4\t0x21396\n0x8EA4B6F5\t0x2136E\n0x8EA4B6F6\t0x2F856\n0x8EA4B6F7\t0x368A\n0x8EA4B6F8\t0x21657\n0x8EA4B6F9\t0x5965\n0x8EA4B6FA\t0x21656\n0x8EA4B6FB\t0x2179C\n0x8EA4B6FC\t0x2179E\n0x8EA4B6FD\t0x36FC\n0x8EA4B6FE\t0x36F9\n0x8EA4B7A1\t0x217A1\n0x8EA4B7A2\t0x3763\n0x8EA4B7A3\t0x21A42\n0x8EA4B7A4\t0x5BCF\n0x8EA4B7A5\t0x21A46\n0x8EA4B7A6\t0x21A3E\n0x8EA4B7A7\t0x21B33\n0x8EA4B7A8\t0x3787\n0x8EA4B7A9\t0x3788\n0x8EA4B7AA\t0x21BFA\n0x8EA4B7AB\t0x379A\n0x8EA4B7AC\t0x21C97\n0x8EA4B7AD\t0x21C9B\n0x8EA4B7AE\t0x21CAA\n0x8EA4B7AF\t0x5D56\n0x8EA4B7B0\t0x21E73\n0x8EA4B7B1\t0x21E7C\n0x8EA4B7B2\t0x37E9\n0x8EA4B7B3\t0x21E86\n0x8EA4B7B4\t0x37EA\n0x8EA4B7B5\t0x5D54\n0x8EA4B7B6\t0x3850\n0x8EA4B7B7\t0x220F3\n0x8EA4B7B8\t0x220F0\n0x8EA4B7B9\t0x3856\n0x8EA4B7BA\t0x3852\n0x8EA4B7BB\t0x384F\n0x8EA4B7BC\t0x3854\n0x8EA4B7BD\t0x3851\n0x8EA4B7BE\t0x220EC\n0x8EA4B7BF\t0x222AF\n0x8EA4B7C0\t0x388E\n0x8EA4B7C1\t0x388F\n0x8EA4B7C2\t0x22264\n0x8EA4B7C3\t0x22268\n0x8EA4B7C4\t0x2235A\n0x8EA4B7C5\t0x5F3D\n0x8EA4B7C6\t0x2251F\n0x8EA4B7C7\t0x22525\n0x8EA4B7C8\t0x38ED\n0x8EA4B7C9\t0x38EB\n0x8EA4B7CA\t0x5FA4\n0x8EA4B7CB\t0x226C6\n0x8EA4B7CC\t0x226D6\n0x8EA4B7CD\t0x226C3\n0x8EA4B7CE\t0x3962\n0x8EA4B7CF\t0x2272C\n0x8EA4B7D0\t0x395D\n0x8EA4B7D1\t0x2272E\n0x8EA4B7D2\t0x2275E\n0x8EA4B7D3\t0x22733\n0x8EA4B7D4\t0x3961\n0x8EA4B7D5\t0x3965\n0x8EA4B7D6\t0x395C\n0x8EA4B7D7\t0x2272D\n0x8EA4B7D8\t0x22746\n0x8EA4B7D9\t0x395F\n0x8EA4B7DA\t0x226C1\n0x8EA4B7DB\t0x2273A\n0x8EA4B7DC\t0x229CC\n0x8EA4B7DD\t0x22B9D\n0x8EA4B7DE\t0x22B83\n0x8EA4B7DF\t0x22BF6\n0x8EA4B7E0\t0x63EC\n0x8EA4B7E1\t0x3A16\n0x8EA4B7E2\t0x3A0A\n0x8EA4B7E3\t0x22BF8\n0x8EA4B7E4\t0x3A0E\n0x8EA4B7E5\t0x3A12\n0x8EA4B7E6\t0x22BFE\n0x8EA4B7E7\t0x22BF3\n0x8EA4B7E8\t0x3A11\n0x8EA4B7E9\t0x22BEB\n0x8EA4B7EA\t0x22BFA\n0x8EA4B7EB\t0x3A10\n0x8EA4B7EC\t0x22C07\n0x8EA4B7ED\t0x22BFC\n0x8EA4B7EE\t0x3A09\n0x8EA4B7EF\t0x63FA\n0x8EA4B7F0\t0x3A15\n0x8EA4B7F1\t0x63D4\n0x8EA4B7F2\t0x22F72\n0x8EA4B7F3\t0x22F73\n0x8EA4B7F4\t0x22F74\n0x8EA4B7F5\t0x3A91\n0x8EA4B7F6\t0x3A95\n0x8EA4B7F7\t0x3A93\n0x8EA4B7F8\t0x3A92\n0x8EA4B7F9\t0x3A8F\n0x8EA4B7FA\t0x22F5F\n0x8EA4B7FB\t0x22F60\n0x8EA4B7FC\t0x230AA\n0x8EA4B7FD\t0x23134\n0x8EA4B7FE\t0x3AF6\n0x8EA4B8A1\t0x231B4\n0x8EA4B8A2\t0x3AFB\n0x8EA4B8A3\t0x231F0\n0x8EA4B8A4\t0x6675\n0x8EA4B8A5\t0x3AF9\n0x8EA4B8A6\t0x2320D\n0x8EA4B8A7\t0x231F3\n0x8EA4B8A8\t0x2320F\n0x8EA4B8A9\t0x671C\n0x8EA4B8AA\t0x3B7D\n0x8EA4B8AB\t0x234C9\n0x8EA4B8AC\t0x3B7A\n0x8EA4B8AD\t0x3B7F\n0x8EA4B8AE\t0x234C5\n0x8EA4B8AF\t0x3B78\n0x8EA4B8B0\t0x234D7\n0x8EA4B8B1\t0x234CC\n0x8EA4B8B2\t0x68D9\n0x8EA4B8B3\t0x234E7\n0x8EA4B8B4\t0x3B70\n0x8EA4B8B5\t0x3B82\n0x8EA4B8B6\t0x234C1\n0x8EA4B8B7\t0x3B84\n0x8EA4B8B8\t0x234E8\n0x8EA4B8B9\t0x3C33\n0x8EA4B8BA\t0x238CB\n0x8EA4B8BB\t0x3C32\n0x8EA4B8BC\t0x3C36\n0x8EA4B8BD\t0x238C8\n0x8EA4B8BE\t0x2397A\n0x8EA4B8BF\t0x3C56\n0x8EA4B8C0\t0x23979\n0x8EA4B8C1\t0x2397E\n0x8EA4B8C2\t0x3C67\n0x8EA4B8C3\t0x23A1B\n0x8EA4B8C4\t0x3C65\n0x8EA4B8C5\t0x3C64\n0x8EA4B8C6\t0x3C66\n0x8EA4B8C7\t0x23A1F\n0x8EA4B8C8\t0x23A19\n0x8EA4B8C9\t0x3C81\n0x8EA4B8CA\t0x3C82\n0x8EA4B8CB\t0x3C83\n0x8EA4B8CC\t0x3C9E\n0x8EA4B8CD\t0x23B89\n0x8EA4B8CE\t0x6BF1\n0x8EA4B8CF\t0x3C9D\n0x8EA4B8D0\t0x23B8B\n0x8EA4B8D1\t0x3D0F\n0x8EA4B8D2\t0x3D12\n0x8EA4B8D3\t0x23E09\n0x8EA4B8D4\t0x23DFE\n0x8EA4B8D5\t0x23E00\n0x8EA4B8D6\t0x3D10\n0x8EA4B8D7\t0x3D18\n0x8EA4B8D8\t0x23E0B\n0x8EA4B8D9\t0x3D14\n0x8EA4B8DA\t0x3D19\n0x8EA4B8DB\t0x6E37\n0x8EA4B8DD\t0x23E4A\n0x8EA4B8DE\t0x6E7D\n0x8EA4B8DF\t0x6E86\n0x8EA4B8E0\t0x3DC8\n0x8EA4B8E1\t0x3DC4\n0x8EA4B8E2\t0x3DC6\n0x8EA4B8E3\t0x24279\n0x8EA4B8E4\t0x3DC7\n0x8EA4B8E5\t0x3DC3\n0x8EA4B8E6\t0x2426C\n0x8EA4B8E7\t0x24299\n0x8EA4B8E8\t0x2F91B\n0x8EA4B8E9\t0x24262\n0x8EA4B8EA\t0x24514\n0x8EA4B8EB\t0x3E19\n0x8EA4B8EC\t0x3E1C\n0x8EA4B8ED\t0x245C8\n0x8EA4B8EE\t0x245D7\n0x8EA4B8EF\t0x2460C\n0x8EA4B8F0\t0x3E41\n0x8EA4B8F1\t0x24670\n0x8EA4B8F2\t0x3E42\n0x8EA4B8F3\t0x3E43\n0x8EA4B8F4\t0x24671\n0x8EA4B8F5\t0x247DF\n0x8EA4B8F6\t0x247E4\n0x8EA4B8F7\t0x3E82\n0x8EA4B8F8\t0x247E7\n0x8EA4B8F9\t0x3E81\n0x8EA4B8FA\t0x3E94\n0x8EA4B8FB\t0x3E84\n0x8EA4B8FC\t0x24990\n0x8EA4B8FD\t0x3ED2\n0x8EA4B8FE\t0x3F0F\n0x8EA4B9A1\t0x3F22\n0x8EA4B9A2\t0x24B4C\n0x8EA4B9A3\t0x3F27\n0x8EA4B9A4\t0x3F2A\n0x8EA4B9A5\t0x74FA\n0x8EA4B9A6\t0x3F28\n0x8EA4B9A7\t0x24B4F\n0x8EA4B9A8\t0x3F60\n0x8EA4B9A9\t0x24C7D\n0x8EA4B9AA\t0x24C7E\n0x8EA4B9AB\t0x24C7C\n0x8EA4B9AC\t0x7572\n0x8EA4B9AD\t0x24C8D\n0x8EA4B9AE\t0x24D19\n0x8EA4B9AF\t0x3F9B\n0x8EA4B9B0\t0x3F9C\n0x8EA4B9B1\t0x24DC0\n0x8EA4B9B2\t0x3F93\n0x8EA4B9B3\t0x3F94\n0x8EA4B9B4\t0x75DC\n0x8EA4B9B5\t0x3FA0\n0x8EA4B9B6\t0x3F99\n0x8EA4B9B7\t0x24DB6\n0x8EA4B9B8\t0x3FA1\n0x8EA4B9B9\t0x24DA8\n0x8EA4B9BA\t0x3FF1\n0x8EA4B9BB\t0x24FEB\n0x8EA4B9BC\t0x24FE7\n0x8EA4B9BD\t0x2506F\n0x8EA4B9BE\t0x251C7\n0x8EA4B9BF\t0x4036\n0x8EA4B9C0\t0x2519F\n0x8EA4B9C1\t0x4037\n0x8EA4B9C2\t0x403F\n0x8EA4B9C3\t0x403C\n0x8EA4B9C4\t0x251C4\n0x8EA4B9C5\t0x4034\n0x8EA4B9C6\t0x4039\n0x8EA4B9C7\t0x403B\n0x8EA4B9C8\t0x4035\n0x8EA4B9C9\t0x4030\n0x8EA4B9CA\t0x4032\n0x8EA4B9CB\t0x4038\n0x8EA4B9CC\t0x403E\n0x8EA4B9CD\t0x403A\n0x8EA4B9CE\t0x2519B\n0x8EA4B9CF\t0x25197\n0x8EA4B9D0\t0x251C5\n0x8EA4B9D1\t0x2536B\n0x8EA4B9D2\t0x253CE\n0x8EA4B9D3\t0x40B6\n0x8EA4B9D4\t0x7867\n0x8EA4B9D5\t0x254B1\n0x8EA4B9D6\t0x254AE\n0x8EA4B9D7\t0x254B0\n0x8EA4B9D8\t0x40B3\n0x8EA4B9D9\t0x4109\n0x8EA4B9DA\t0x7977\n0x8EA4B9DB\t0x2573E\n0x8EA4B9DC\t0x257B5\n0x8EA4B9DD\t0x257BA\n0x8EA4B9DE\t0x414C\n0x8EA4B9DF\t0x257B2\n0x8EA4B9E0\t0x257B4\n0x8EA4B9E1\t0x4153\n0x8EA4B9E2\t0x414D\n0x8EA4B9E3\t0x4151\n0x8EA4B9E4\t0x414F\n0x8EA4B9E5\t0x7A9B\n0x8EA4B9E6\t0x25977\n0x8EA4B9E7\t0x41A2\n0x8EA4B9E8\t0x25986\n0x8EA4B9E9\t0x2597B\n0x8EA4B9EA\t0x41CD\n0x8EA4B9EB\t0x25A7E\n0x8EA4B9EC\t0x25B2E\n0x8EA4B9ED\t0x41E7\n0x8EA4B9EE\t0x25B2F\n0x8EA4B9EF\t0x41F0\n0x8EA4B9F0\t0x25B37\n0x8EA4B9F1\t0x41E9\n0x8EA4B9F2\t0x41EC\n0x8EA4B9F3\t0x25B32\n0x8EA4B9F4\t0x41E8\n0x8EA4B9F5\t0x41EE\n0x8EA4B9F6\t0x4202\n0x8EA4B9F7\t0x25B36\n0x8EA4B9F8\t0x25B39\n0x8EA4B9F9\t0x25B35\n0x8EA4B9FA\t0x25E5C\n0x8EA4B9FB\t0x4282\n0x8EA4B9FC\t0x4283\n0x8EA4B9FD\t0x4286\n0x8EA4B9FE\t0x25E7B\n0x8EA4BAA1\t0x25E61\n0x8EA4BAA2\t0x25FEE\n0x8EA4BAA3\t0x25FEB\n0x8EA4BAA4\t0x25FEF\n0x8EA4BAA5\t0x26020\n0x8EA4BAA6\t0x7D2A\n0x8EA4BAA7\t0x7D65\n0x8EA4BAA8\t0x434A\n0x8EA4BAA9\t0x26230\n0x8EA4BAAA\t0x435A\n0x8EA4BAAB\t0x7F64\n0x8EA4BAAC\t0x262BE\n0x8EA4BAAD\t0x436E\n0x8EA4BAAE\t0x26367\n0x8EA4BAAF\t0x2637C\n0x8EA4BAB0\t0x4370\n0x8EA4BAB1\t0x436F\n0x8EA4BAB2\t0x26424\n0x8EA4BAB3\t0x438A\n0x8EA4BAB4\t0x4387\n0x8EA4BAB5\t0x4388\n0x8EA4BAB6\t0x26429\n0x8EA4BAB7\t0x264EF\n0x8EA4BAB8\t0x8020\n0x8EA4BAB9\t0x43B7\n0x8EA4BABA\t0x43FD\n0x8EA4BABB\t0x8120\n0x8EA4BABC\t0x2670D\n0x8EA4BABD\t0x4405\n0x8EA4BABE\t0x813C\n0x8EA4BABF\t0x4408\n0x8EA4BAC0\t0x4403\n0x8EA4BAC1\t0x4402\n0x8EA4BAC2\t0x4404\n0x8EA4BAC3\t0x3B39\n0x8EA4BAC4\t0x4409\n0x8EA4BAC5\t0x43FF\n0x8EA4BAC6\t0x26764\n0x8EA4BAC7\t0x813F\n0x8EA4BAC8\t0x26715\n0x8EA4BAC9\t0x43FC\n0x8EA4BACA\t0x4401\n0x8EA4BACB\t0x440A\n0x8EA4BACC\t0x81F0\n0x8EA4BACD\t0x81F5\n0x8EA4BACE\t0x446B\n0x8EA4BACF\t0x446C\n0x8EA4BAD0\t0x26A35\n0x8EA4BAD1\t0x26A36\n0x8EA4BAD2\t0x26A34\n0x8EA4BAD3\t0x26A37\n0x8EA4BAD4\t0x26C47\n0x8EA4BAD5\t0x26C2B\n0x8EA4BAD6\t0x44DE\n0x8EA4BAD7\t0x26C41\n0x8EA4BAD8\t0x26C43\n0x8EA4BAD9\t0x44DB\n0x8EA4BADA\t0x26C42\n0x8EA4BADB\t0x44DD\n0x8EA4BADC\t0x44E3\n0x8EA4BADD\t0x26C32\n0x8EA4BADE\t0x44E0\n0x8EA4BADF\t0x44D9\n0x8EA4BAE0\t0x44D8\n0x8EA4BAE1\t0x44E4\n0x8EA4BAE2\t0x26C44\n0x8EA4BAE3\t0x26C4A\n0x8EA4BAE4\t0x44DA\n0x8EA4BAE5\t0x44EF\n0x8EA4BAE6\t0x2F9A0\n0x8EA4BAE7\t0x8415\n0x8EA4BAE8\t0x83BE\n0x8EA4BAE9\t0x26C54\n0x8EA4BAEA\t0x26C6E\n0x8EA4BAEB\t0x26C52\n0x8EA4BAEC\t0x44D7\n0x8EA4BAED\t0x45B3\n0x8EA4BAEE\t0x45BB\n0x8EA4BAEF\t0x86E5\n0x8EA4BAF0\t0x45B2\n0x8EA4BAF1\t0x86D2\n0x8EA4BAF2\t0x45AD\n0x8EA4BAF3\t0x27292\n0x8EA4BAF4\t0x45AF\n0x8EA4BAF5\t0x2F9B8\n0x8EA4BAF6\t0x86E0\n0x8EA4BAF7\t0x272BF\n0x8EA4BAF8\t0x4616\n0x8EA4BAF9\t0x4628\n0x8EA4BAFA\t0x4623\n0x8EA4BAFB\t0x88B3\n0x8EA4BAFC\t0x27641\n0x8EA4BAFD\t0x27669\n0x8EA4BAFE\t0x27665\n0x8EA4BBA1\t0x4675\n0x8EA4BBA2\t0x467E\n0x8EA4BBA3\t0x467C\n0x8EA4BBA4\t0x27822\n0x8EA4BBA5\t0x2781D\n0x8EA4BBA6\t0x278D2\n0x8EA4BBA7\t0x278DA\n0x8EA4BBA8\t0x278DB\n0x8EA4BBA9\t0x46CE\n0x8EA4BBAA\t0x46CD\n0x8EA4BBAB\t0x46CF\n0x8EA4BBAC\t0x8A53\n0x8EA4BBAD\t0x279A4\n0x8EA4BBAE\t0x2799E\n0x8EA4BBAF\t0x8A37\n0x8EA4BBB0\t0x8A47\n0x8EA4BBB1\t0x8A5C\n0x8EA4BBB2\t0x2799D\n0x8EA4BBB3\t0x46C4\n0x8EA4BBB4\t0x46CC\n0x8EA4BBB5\t0x46C8\n0x8EA4BBB6\t0x46C7\n0x8EA4BBB7\t0x279AD\n0x8EA4BBB8\t0x279A6\n0x8EA4BBB9\t0x279A7\n0x8EA4BBBA\t0x27BB3\n0x8EA4BBBB\t0x27BE0\n0x8EA4BBBC\t0x27C35\n0x8EA4BBBD\t0x27C37\n0x8EA4BBBE\t0x475A\n0x8EA4BBBF\t0x476A\n0x8EA4BBC0\t0x27D4A\n0x8EA4BBC1\t0x476B\n0x8EA4BBC2\t0x476D\n0x8EA4BBC3\t0x476F\n0x8EA4BBC4\t0x27E5E\n0x8EA4BBC5\t0x479E\n0x8EA4BBC6\t0x27EC0\n0x8EA4BBC7\t0x47A4\n0x8EA4BBC8\t0x47A3\n0x8EA4BBC9\t0x47E4\n0x8EA4BBCA\t0x47E8\n0x8EA4BBCB\t0x47E9\n0x8EA4BBCC\t0x47E0\n0x8EA4BBCD\t0x47E3\n0x8EA4BBCE\t0x27FF9\n0x8EA4BBCF\t0x47EA\n0x8EA4BBD0\t0x47E1\n0x8EA4BBD1\t0x47ED\n0x8EA4BBD2\t0x4834\n0x8EA4BBD3\t0x4835\n0x8EA4BBD4\t0x4851\n0x8EA4BBD5\t0x8EF0\n0x8EA4BBD6\t0x284F0\n0x8EA4BBD7\t0x489D\n0x8EA4BBD8\t0x284F3\n0x8EA4BBD9\t0x2851B\n0x8EA4BBDA\t0x284F2\n0x8EA4BBDB\t0x284FB\n0x8EA4BBDC\t0x2871C\n0x8EA4BBDD\t0x28713\n0x8EA4BBDE\t0x48D0\n0x8EA4BBDF\t0x2870F\n0x8EA4BBE0\t0x48EE\n0x8EA4BBE1\t0x28816\n0x8EA4BBE2\t0x28811\n0x8EA4BBE3\t0x28812\n0x8EA4BBE4\t0x48F2\n0x8EA4BBE5\t0x2880E\n0x8EA4BBE6\t0x921D\n0x8EA4BBE7\t0x4988\n0x8EA4BBE8\t0x28C67\n0x8EA4BBE9\t0x28CF2\n0x8EA4BBEA\t0x28CDA\n0x8EA4BBEB\t0x498F\n0x8EA4BBEC\t0x28CDC\n0x8EA4BBED\t0x49D8\n0x8EA4BBEE\t0x28F94\n0x8EA4BBEF\t0x28F9B\n0x8EA4BBF0\t0x28F92\n0x8EA4BBF1\t0x28F9A\n0x8EA4BBF2\t0x29088\n0x8EA4BBF3\t0x29086\n0x8EA4BBF4\t0x4A3F\n0x8EA4BBF5\t0x291EF\n0x8EA4BBF6\t0x4A52\n0x8EA4BBF7\t0x976B\n0x8EA4BBF8\t0x2925E\n0x8EA4BBF9\t0x4A50\n0x8EA4BBFA\t0x29458\n0x8EA4BBFB\t0x4AB1\n0x8EA4BBFC\t0x29456\n0x8EA4BBFD\t0x29454\n0x8EA4BBFE\t0x4AF9\n0x8EA4BCA1\t0x2959B\n0x8EA4BCA2\t0x29696\n0x8EA4BCA3\t0x296A4\n0x8EA4BCA4\t0x4B26\n0x8EA4BCA5\t0x4B28\n0x8EA4BCA6\t0x2969A\n0x8EA4BCA7\t0x29A12\n0x8EA4BCA8\t0x3480\n0x8EA4BCA9\t0x50C0\n0x8EA4BCAA\t0x3481\n0x8EA4BCAB\t0x2036B\n0x8EA4BCAC\t0x347E\n0x8EA4BCAD\t0x347F\n0x8EA4BCAE\t0x20337\n0x8EA4BCAF\t0x2033C\n0x8EA4BCB0\t0x2F80A\n0x8EA4BCB1\t0x204F7\n0x8EA4BCB2\t0x34BE\n0x8EA4BCB3\t0x20566\n0x8EA4BCB4\t0x34D6\n0x8EA4BCB5\t0x207A9\n0x8EA4BCB6\t0x207AE\n0x8EA4BCB7\t0x207AD\n0x8EA4BCB8\t0x207C8\n0x8EA4BCB9\t0x207A5\n0x8EA4BCBA\t0x207B0\n0x8EA4BCBB\t0x20895\n0x8EA4BCBC\t0x52E5\n0x8EA4BCBD\t0x20925\n0x8EA4BCBE\t0x3534\n0x8EA4BCBF\t0x20A99\n0x8EA4BCC0\t0x53AF\n0x8EA4BCC1\t0x20B74\n0x8EA4BCC2\t0x20B70\n0x8EA4BCC3\t0x20B6F\n0x8EA4BCC4\t0x20E41\n0x8EA4BCC5\t0x20E54\n0x8EA4BCC6\t0x35D5\n0x8EA4BCC7\t0x35D8\n0x8EA4BCC8\t0x20E40\n0x8EA4BCC9\t0x20E38\n0x8EA4BCCA\t0x35D4\n0x8EA4BCCB\t0x55D8\n0x8EA4BCCC\t0x35D9\n0x8EA4BCCD\t0x20E52\n0x8EA4BCCE\t0x20E3A\n0x8EA4BCCF\t0x20E57\n0x8EA4BCD0\t0x2F84A\n0x8EA4BCD1\t0x20E59\n0x8EA4BCD2\t0x5711\n0x8EA4BCD3\t0x5867\n0x8EA4BCD4\t0x213B4\n0x8EA4BCD5\t0x213C0\n0x8EA4BCD6\t0x365D\n0x8EA4BCD7\t0x5843\n0x8EA4BCD8\t0x365E\n0x8EA4BCD9\t0x3659\n0x8EA4BCDA\t0x21375\n0x8EA4BCDB\t0x365A\n0x8EA4BCDC\t0x36A0\n0x8EA4BCDD\t0x21660\n0x8EA4BCDE\t0x21647\n0x8EA4BCDF\t0x3705\n0x8EA4BCE0\t0x217F0\n0x8EA4BCE1\t0x3707\n0x8EA4BCE2\t0x217EF\n0x8EA4BCE3\t0x370E\n0x8EA4BCE4\t0x370C\n0x8EA4BCE5\t0x217EC\n0x8EA4BCE6\t0x21983\n0x8EA4BCE7\t0x3745\n0x8EA4BCE8\t0x21984\n0x8EA4BCE9\t0x2198F\n0x8EA4BCEA\t0x3764\n0x8EA4BCEB\t0x21A61\n0x8EA4BCEC\t0x3765\n0x8EA4BCED\t0x21A69\n0x8EA4BCEE\t0x5BDD\n0x8EA4BCEF\t0x3766\n0x8EA4BCF0\t0x21A62\n0x8EA4BCF1\t0x3789\n0x8EA4BCF2\t0x37EC\n0x8EA4BCF3\t0x37F1\n0x8EA4BCF4\t0x5D70\n0x8EA4BCF5\t0x5D6A\n0x8EA4BCF6\t0x37F0\n0x8EA4BCF7\t0x37F8\n0x8EA4BCF8\t0x5D74\n0x8EA4BCF9\t0x5D5F\n0x8EA4BCFA\t0x21EAE\n0x8EA4BCFB\t0x5D61\n0x8EA4BCFC\t0x5D73\n0x8EA4BCFD\t0x21EB2\n0x8EA4BCFE\t0x37F2\n0x8EA4BDA1\t0x37F4\n0x8EA4BDA2\t0x2210B\n0x8EA4BDA3\t0x3858\n0x8EA4BDA4\t0x22110\n0x8EA4BDA5\t0x2210D\n0x8EA4BDA6\t0x385A\n0x8EA4BDA7\t0x3859\n0x8EA4BDA8\t0x3857\n0x8EA4BDA9\t0x385B\n0x8EA4BDAA\t0x5E50\n0x8EA4BDAB\t0x2227F\n0x8EA4BDAC\t0x22281\n0x8EA4BDAD\t0x38A6\n0x8EA4BDAE\t0x38C2\n0x8EA4BDAF\t0x38C1\n0x8EA4BDB0\t0x5F3F\n0x8EA4BDB1\t0x2240B\n0x8EA4BDB2\t0x2254E\n0x8EA4BDB3\t0x38EF\n0x8EA4BDB4\t0x5FB0\n0x8EA4BDB5\t0x227EA\n0x8EA4BDB6\t0x22745\n0x8EA4BDB7\t0x3968\n0x8EA4BDB8\t0x6135\n0x8EA4BDB9\t0x612D\n0x8EA4BDBA\t0x3973\n0x8EA4BDBB\t0x396E\n0x8EA4BDBC\t0x3974\n0x8EA4BDBD\t0x6102\n0x8EA4BDBE\t0x3966\n0x8EA4BDBF\t0x22728\n0x8EA4BDC0\t0x2275D\n0x8EA4BDC1\t0x229DC\n0x8EA4BDC2\t0x39B9\n0x8EA4BDC3\t0x6226\n0x8EA4BDC4\t0x229D4\n0x8EA4BDC5\t0x3A0C\n0x8EA4BDC6\t0x22C64\n0x8EA4BDC7\t0x22C68\n0x8EA4BDC8\t0x3A20\n0x8EA4BDC9\t0x22C62\n0x8EA4BDCA\t0x3A1D\n0x8EA4BDCB\t0x22C61\n0x8EA4BDCC\t0x3A1C\n0x8EA4BDCD\t0x22C66\n0x8EA4BDCE\t0x3A21\n0x8EA4BDCF\t0x3A1A\n0x8EA4BDD0\t0x3A19\n0x8EA4BDD1\t0x22BF2\n0x8EA4BDD2\t0x22C69\n0x8EA4BDD3\t0x22C67\n0x8EA4BDD4\t0x3A7E\n0x8EA4BDD5\t0x22F9A\n0x8EA4BDD6\t0x22F9B\n0x8EA4BDD7\t0x22F85\n0x8EA4BDD8\t0x22F9C\n0x8EA4BDD9\t0x3A9D\n0x8EA4BDDA\t0x22FA4\n0x8EA4BDDB\t0x3A9E\n0x8EA4BDDC\t0x3A9C\n0x8EA4BDDD\t0x656E\n0x8EA4BDDE\t0x22F99\n0x8EA4BDDF\t0x22F86\n0x8EA4BDE0\t0x22F90\n0x8EA4BDE1\t0x23081\n0x8EA4BDE2\t0x230AE\n0x8EA4BDE3\t0x65B1\n0x8EA4BDE4\t0x65D4\n0x8EA4BDE5\t0x3ACD\n0x8EA4BDE6\t0x23138\n0x8EA4BDE7\t0x3B0B\n0x8EA4BDE8\t0x3B0A\n0x8EA4BDE9\t0x6685\n0x8EA4BDEA\t0x2353B\n0x8EA4BDEB\t0x3B8F\n0x8EA4BDEC\t0x6972\n0x8EA4BDED\t0x3B95\n0x8EA4BDEE\t0x3B90\n0x8EA4BDEF\t0x3B91\n0x8EA4BDF0\t0x2354C\n0x8EA4BDF1\t0x693A\n0x8EA4BDF2\t0x3BB9\n0x8EA4BDF3\t0x23547\n0x8EA4BDF4\t0x23535\n0x8EA4BDF5\t0x3B97\n0x8EA4BDF6\t0x3B9E\n0x8EA4BDF7\t0x23533\n0x8EA4BDF8\t0x3B8B\n0x8EA4BDF9\t0x23582\n0x8EA4BDFA\t0x23540\n0x8EA4BDFB\t0x3C3B\n0x8EA4BDFC\t0x3C3A\n0x8EA4BDFD\t0x3C3C\n0x8EA4BDFE\t0x3C3D\n0x8EA4BEA1\t0x3C39\n0x8EA4BEA2\t0x3C3E\n0x8EA4BEA3\t0x3C6B\n0x8EA4BEA4\t0x3C6C\n0x8EA4BEA5\t0x23A36\n0x8EA4BEA6\t0x23B0E\n0x8EA4BEA7\t0x3CA2\n0x8EA4BEA8\t0x3CA1\n0x8EA4BEA9\t0x3C9F\n0x8EA4BEAA\t0x23BAD\n0x8EA4BEAB\t0x23BAA\n0x8EA4BEAC\t0x23E17\n0x8EA4BEAD\t0x3D2D\n0x8EA4BEAE\t0x23E67\n0x8EA4BEAF\t0x3D36\n0x8EA4BEB0\t0x3D2B\n0x8EA4BEB1\t0x23E72\n0x8EA4BEB2\t0x3D37\n0x8EA4BEB3\t0x2F90A\n0x8EA4BEB4\t0x23E61\n0x8EA4BEB5\t0x23EB0\n0x8EA4BEB6\t0x6EAD\n0x8EA4BEB7\t0x3D25\n0x8EA4BEB8\t0x3D2F\n0x8EA4BEB9\t0x3D2C\n0x8EA4BEBA\t0x23E6E\n0x8EA4BEBB\t0x23E64\n0x8EA4BEBC\t0x3D32\n0x8EA4BEBD\t0x23E8C\n0x8EA4BEBE\t0x23E66\n0x8EA4BEBF\t0x6E95\n0x8EA4BEC0\t0x23E6B\n0x8EA4BEC1\t0x23E5F\n0x8EA4BEC2\t0x23E74\n0x8EA4BEC3\t0x23E65\n0x8EA4BEC4\t0x242BB\n0x8EA4BEC5\t0x242BE\n0x8EA4BEC6\t0x3DD5\n0x8EA4BEC7\t0x242B9\n0x8EA4BEC8\t0x3DD4\n0x8EA4BEC9\t0x3DD6\n0x8EA4BECA\t0x242EF\n0x8EA4BECB\t0x3DD1\n0x8EA4BECC\t0x7243\n0x8EA4BECD\t0x245DA\n0x8EA4BECE\t0x3E46\n0x8EA4BECF\t0x728F\n0x8EA4BED0\t0x24690\n0x8EA4BED1\t0x247E9\n0x8EA4BED2\t0x3E8C\n0x8EA4BED3\t0x3E8A\n0x8EA4BED4\t0x3E88\n0x8EA4BED5\t0x24811\n0x8EA4BED6\t0x2480D\n0x8EA4BED7\t0x247ED\n0x8EA4BED8\t0x24821\n0x8EA4BED9\t0x3EDD\n0x8EA4BEDA\t0x24981\n0x8EA4BEDB\t0x249B1\n0x8EA4BEDC\t0x24B01\n0x8EA4BEDD\t0x3F2D\n0x8EA4BEDE\t0x24B5E\n0x8EA4BEDF\t0x24B62\n0x8EA4BEE0\t0x3F2E\n0x8EA4BEE1\t0x3F2C\n0x8EA4BEE2\t0x3F2B\n0x8EA4BEE3\t0x3F30\n0x8EA4BEE4\t0x24B5B\n0x8EA4BEE5\t0x3F4E\n0x8EA4BEE6\t0x24C96\n0x8EA4BEE7\t0x24C93\n0x8EA4BEE8\t0x3F64\n0x8EA4BEE9\t0x3F61\n0x8EA4BEEA\t0x24C92\n0x8EA4BEEB\t0x7575\n0x8EA4BEEC\t0x2F939\n0x8EA4BEED\t0x3F70\n0x8EA4BEEE\t0x3FA6\n0x8EA4BEEF\t0x3FA4\n0x8EA4BEF0\t0x24DC4\n0x8EA4BEF1\t0x24DC7\n0x8EA4BEF2\t0x24DC3\n0x8EA4BEF3\t0x3FA8\n0x8EA4BEF4\t0x3FA2\n0x8EA4BEF5\t0x24DC8\n0x8EA4BEF6\t0x3FA7\n0x8EA4BEF7\t0x75EC\n0x8EA4BEF8\t0x3FA5\n0x8EA4BEF9\t0x24DCA\n0x8EA4BEFA\t0x3FA9\n0x8EA4BEFB\t0x24DC5\n0x8EA4BEFC\t0x24DCF\n0x8EA4BEFD\t0x24DDC\n0x8EA4BEFE\t0x24F7C\n0x8EA4BFA1\t0x25001\n0x8EA4BFA2\t0x403D\n0x8EA4BFA3\t0x251D3\n0x8EA4BFA4\t0x251DC\n0x8EA4BFA5\t0x4044\n0x8EA4BFA6\t0x4045\n0x8EA4BFA7\t0x4046\n0x8EA4BFA8\t0x251D4\n0x8EA4BFA9\t0x7757\n0x8EA4BFAA\t0x251CC\n0x8EA4BFAB\t0x4047\n0x8EA4BFAC\t0x4048\n0x8EA4BFAD\t0x4042\n0x8EA4BFAE\t0x251D6\n0x8EA4BFAF\t0x251DB\n0x8EA4BFB0\t0x4041\n0x8EA4BFB1\t0x251D5\n0x8EA4BFB2\t0x253D9\n0x8EA4BFB3\t0x4094\n0x8EA4BFB4\t0x253DD\n0x8EA4BFB5\t0x253DC\n0x8EA4BFB6\t0x253E0\n0x8EA4BFB7\t0x254CC\n0x8EA4BFB8\t0x40C0\n0x8EA4BFB9\t0x40B8\n0x8EA4BFBA\t0x40C1\n0x8EA4BFBB\t0x40C2\n0x8EA4BFBC\t0x40BB\n0x8EA4BFBD\t0x40BD\n0x8EA4BFBE\t0x40BF\n0x8EA4BFBF\t0x40B9\n0x8EA4BFC0\t0x40B7\n0x8EA4BFC1\t0x254D2\n0x8EA4BFC2\t0x40C7\n0x8EA4BFC3\t0x254D3\n0x8EA4BFC4\t0x410C\n0x8EA4BFC5\t0x410B\n0x8EA4BFC6\t0x797B\n0x8EA4BFC7\t0x4110\n0x8EA4BFC8\t0x2568D\n0x8EA4BFC9\t0x415D\n0x8EA4BFCA\t0x7A21\n0x8EA4BFCB\t0x415A\n0x8EA4BFCC\t0x4158\n0x8EA4BFCD\t0x4156\n0x8EA4BFCE\t0x257D8\n0x8EA4BFCF\t0x4154\n0x8EA4BFD0\t0x7A16\n0x8EA4BFD1\t0x257BC\n0x8EA4BFD2\t0x41A8\n0x8EA4BFD3\t0x41A7\n0x8EA4BFD4\t0x41CF\n0x8EA4BFD5\t0x41D0\n0x8EA4BFD6\t0x25A8A\n0x8EA4BFD7\t0x7AE8\n0x8EA4BFD8\t0x25A8B\n0x8EA4BFD9\t0x25A8D\n0x8EA4BFDA\t0x41D1\n0x8EA4BFDB\t0x41EB\n0x8EA4BFDC\t0x25B53\n0x8EA4BFDD\t0x41FB\n0x8EA4BFDE\t0x7B6A\n0x8EA4BFDF\t0x25B59\n0x8EA4BFE0\t0x41FD\n0x8EA4BFE1\t0x41F8\n0x8EA4BFE2\t0x41F7\n0x8EA4BFE3\t0x4200\n0x8EA4BFE4\t0x25B56\n0x8EA4BFE5\t0x25B57\n0x8EA4BFE6\t0x41F6\n0x8EA4BFE7\t0x7B5F\n0x8EA4BFE8\t0x25E73\n0x8EA4BFE9\t0x2601B\n0x8EA4BFEA\t0x42DF\n0x8EA4BFEB\t0x26021\n0x8EA4BFEC\t0x26016\n0x8EA4BFED\t0x26018\n0x8EA4BFEE\t0x42E2\n0x8EA4BFEF\t0x42E4\n0x8EA4BFF0\t0x26044\n0x8EA4BFF1\t0x7D82\n0x8EA4BFF2\t0x26026\n0x8EA4BFF3\t0x42E3\n0x8EA4BFF4\t0x26236\n0x8EA4BFF5\t0x4359\n0x8EA4BFF6\t0x4371\n0x8EA4BFF7\t0x438E\n0x8EA4BFF8\t0x438C\n0x8EA4BFF9\t0x2643A\n0x8EA4BFFA\t0x43A4\n0x8EA4BFFB\t0x264F4\n0x8EA4BFFC\t0x8055\n0x8EA4BFFD\t0x4414\n0x8EA4BFFE\t0x26762\n0x8EA4C0A1\t0x2675B\n0x8EA4C0A2\t0x2676A\n0x8EA4C0A3\t0x4411\n0x8EA4C0A4\t0x26768\n0x8EA4C0A5\t0x441B\n0x8EA4C0A6\t0x4412\n0x8EA4C0A7\t0x440E\n0x8EA4C0A8\t0x4415\n0x8EA4C0A9\t0x8168\n0x8EA4C0AA\t0x4410\n0x8EA4C0AB\t0x26781\n0x8EA4C0AC\t0x4417\n0x8EA4C0AD\t0x8246\n0x8EA4C0AE\t0x8243\n0x8EA4C0AF\t0x4470\n0x8EA4C0B0\t0x44ED\n0x8EA4C0B1\t0x26CE7\n0x8EA4C0B2\t0x44EE\n0x8EA4C0B3\t0x26CE6\n0x8EA4C0B4\t0x26CD1\n0x8EA4C0B5\t0x26D11\n0x8EA4C0B6\t0x8481\n0x8EA4C0B7\t0x26CD0\n0x8EA4C0B8\t0x26CD9\n0x8EA4C0B9\t0x26D0A\n0x8EA4C0BA\t0x44F4\n0x8EA4C0BB\t0x26CDA\n0x8EA4C0BC\t0x26CDD\n0x8EA4C0BD\t0x26CC8\n0x8EA4C0BE\t0x26CE2\n0x8EA4C0BF\t0x26CE9\n0x8EA4C0C0\t0x26CCB\n0x8EA4C0C1\t0x847C\n0x8EA4C0C2\t0x26CCC\n0x8EA4C0C3\t0x26CC1\n0x8EA4C0C4\t0x846A\n0x8EA4C0C5\t0x26CDE\n0x8EA4C0C6\t0x8488\n0x8EA4C0C7\t0x44F2\n0x8EA4C0C8\t0x44F8\n0x8EA4C0C9\t0x44F3\n0x8EA4C0CA\t0x26D51\n0x8EA4C0CB\t0x26D12\n0x8EA4C0CC\t0x44FA\n0x8EA4C0CD\t0x26CE0\n0x8EA4C0CE\t0x26D2B\n0x8EA4C0CF\t0x2F9B4\n0x8EA4C0D0\t0x272D8\n0x8EA4C0D1\t0x272D1\n0x8EA4C0D2\t0x8710\n0x8EA4C0D3\t0x272D2\n0x8EA4C0D4\t0x272CD\n0x8EA4C0D5\t0x871F\n0x8EA4C0D6\t0x45B6\n0x8EA4C0D7\t0x45B7\n0x8EA4C0D8\t0x2733D\n0x8EA4C0D9\t0x870F\n0x8EA4C0DA\t0x272CA\n0x8EA4C0DB\t0x45BA\n0x8EA4C0DC\t0x272CB\n0x8EA4C0DD\t0x45BC\n0x8EA4C0DE\t0x272D7\n0x8EA4C0DF\t0x275F4\n0x8EA4C0E0\t0x463B\n0x8EA4C0E1\t0x88D3\n0x8EA4C0E2\t0x462F\n0x8EA4C0E3\t0x27687\n0x8EA4C0E4\t0x2768B\n0x8EA4C0E5\t0x27683\n0x8EA4C0E6\t0x4637\n0x8EA4C0E7\t0x4699\n0x8EA4C0E8\t0x279C5\n0x8EA4C0E9\t0x279D2\n0x8EA4C0EA\t0x279C6\n0x8EA4C0EB\t0x279D3\n0x8EA4C0EC\t0x46D9\n0x8EA4C0ED\t0x46D8\n0x8EA4C0EE\t0x46D7\n0x8EA4C0EF\t0x279F0\n0x8EA4C0F0\t0x279CD\n0x8EA4C0F1\t0x279CC\n0x8EA4C0F2\t0x279DC\n0x8EA4C0F3\t0x279D6\n0x8EA4C0F4\t0x4736\n0x8EA4C0F5\t0x27BE6\n0x8EA4C0F6\t0x27C41\n0x8EA4C0F7\t0x27C3F\n0x8EA4C0F8\t0x8C87\n0x8EA4C0F9\t0x27CC5\n0x8EA4C0FA\t0x27CC0\n0x8EA4C0FB\t0x27CC6\n0x8EA4C0FC\t0x27CBE\n0x8EA4C0FD\t0x27CBF\n0x8EA4C0FE\t0x8CC6\n0x8EA4C1A1\t0x4770\n0x8EA4C1A2\t0x27D63\n0x8EA4C1A3\t0x27ED3\n0x8EA4C1A4\t0x27EDA\n0x8EA4C1A5\t0x27ED5\n0x8EA4C1A6\t0x47A5\n0x8EA4C1A7\t0x47A6\n0x8EA4C1A8\t0x47A9\n0x8EA4C1A9\t0x47EE\n0x8EA4C1AA\t0x4854\n0x8EA4C1AB\t0x282EE\n0x8EA4C1AC\t0x4857\n0x8EA4C1AD\t0x282FC\n0x8EA4C1AE\t0x28414\n0x8EA4C1AF\t0x48A1\n0x8EA4C1B0\t0x28523\n0x8EA4C1B1\t0x28522\n0x8EA4C1B2\t0x28530\n0x8EA4C1B3\t0x286B5\n0x8EA4C1B4\t0x48D3\n0x8EA4C1B5\t0x28738\n0x8EA4C1B6\t0x48D4\n0x8EA4C1B7\t0x2873F\n0x8EA4C1B8\t0x48D7\n0x8EA4C1B9\t0x90CC\n0x8EA4C1BA\t0x916D\n0x8EA4C1BB\t0x9170\n0x8EA4C1BC\t0x48F7\n0x8EA4C1BD\t0x48F6\n0x8EA4C1BE\t0x48F9\n0x8EA4C1BF\t0x48F8\n0x8EA4C1C0\t0x9258\n0x8EA4C1C1\t0x9242\n0x8EA4C1C2\t0x9268\n0x8EA4C1C3\t0x9269\n0x8EA4C1C4\t0x28968\n0x8EA4C1C5\t0x28967\n0x8EA4C1C6\t0x9243\n0x8EA4C1C7\t0x28965\n0x8EA4C1C8\t0x9247\n0x8EA4C1C9\t0x498A\n0x8EA4C1CA\t0x28C75\n0x8EA4C1CB\t0x28CF7\n0x8EA4C1CC\t0x28CF3\n0x8EA4C1CD\t0x28CF6\n0x8EA4C1CE\t0x4994\n0x8EA4C1CF\t0x28D00\n0x8EA4C1D0\t0x4993\n0x8EA4C1D1\t0x28CFF\n0x8EA4C1D2\t0x28CF5\n0x8EA4C1D3\t0x959D\n0x8EA4C1D4\t0x49DD\n0x8EA4C1D5\t0x49DC\n0x8EA4C1D6\t0x49F7\n0x8EA4C1D7\t0x96CF\n0x8EA4C1D8\t0x29092\n0x8EA4C1D9\t0x29206\n0x8EA4C1DA\t0x4A42\n0x8EA4C1DB\t0x29207\n0x8EA4C1DC\t0x2926B\n0x8EA4C1DD\t0x4A54\n0x8EA4C1DE\t0x2926C\n0x8EA4C1DF\t0x4A55\n0x8EA4C1E0\t0x29393\n0x8EA4C1E1\t0x4A8F\n0x8EA4C1E2\t0x29394\n0x8EA4C1E3\t0x97F4\n0x8EA4C1E4\t0x4AB4\n0x8EA4C1E5\t0x4AB3\n0x8EA4C1E6\t0x29462\n0x8EA4C1E7\t0x29463\n0x8EA4C1E8\t0x9809\n0x8EA4C1E9\t0x2945F\n0x8EA4C1EA\t0x29464\n0x8EA4C1EB\t0x2945B\n0x8EA4C1EC\t0x29459\n0x8EA4C1ED\t0x4AFB\n0x8EA4C1EE\t0x4AFD\n0x8EA4C1EF\t0x295A4\n0x8EA4C1F0\t0x295AC\n0x8EA4C1F1\t0x98AB\n0x8EA4C1F2\t0x4AFC\n0x8EA4C1F3\t0x296B5\n0x8EA4C1F4\t0x4B2C\n0x8EA4C1F5\t0x4B2F\n0x8EA4C1F6\t0x296AE\n0x8EA4C1F7\t0x4B2B\n0x8EA4C1F8\t0x296C5\n0x8EA4C1F9\t0x4B33\n0x8EA4C1FA\t0x4B34\n0x8EA4C1FB\t0x98FB\n0x8EA4C1FC\t0x2983B\n0x8EA4C1FD\t0x9AAC\n0x8EA4C1FE\t0x9AAE\n0x8EA4C2A1\t0x9AAA\n0x8EA4C2A2\t0x4BE8\n0x8EA4C2A3\t0x29ABF\n0x8EA4C2A4\t0x29C2B\n0x8EA4C2A5\t0x29C84\n0x8EA4C2A6\t0x29C80\n0x8EA4C2A7\t0x29D4D\n0x8EA4C2A8\t0x29D4F\n0x8EA4C2A9\t0x9B5C\n0x8EA4C2AA\t0x29D4C\n0x8EA4C2AB\t0x29F92\n0x8EA4C2AC\t0x4D5D\n0x8EA4C2AD\t0x50D2\n0x8EA4C2AE\t0x3485\n0x8EA4C2AF\t0x3488\n0x8EA4C2B0\t0x203AE\n0x8EA4C2B1\t0x20379\n0x8EA4C2B2\t0x348E\n0x8EA4C2B3\t0x3484\n0x8EA4C2B4\t0x20371\n0x8EA4C2B5\t0x50DF\n0x8EA4C2B6\t0x203B3\n0x8EA4C2B7\t0x3483\n0x8EA4C2B8\t0x2032C\n0x8EA4C2B9\t0x20377\n0x8EA4C2BA\t0x2052F\n0x8EA4C2BB\t0x207C3\n0x8EA4C2BC\t0x3502\n0x8EA4C2BD\t0x207CD\n0x8EA4C2BE\t0x3506\n0x8EA4C2BF\t0x3505\n0x8EA4C2C0\t0x207C9\n0x8EA4C2C1\t0x34FE\n0x8EA4C2C2\t0x3501\n0x8EA4C2C3\t0x3500\n0x8EA4C2C4\t0x207CE\n0x8EA4C2C5\t0x208A5\n0x8EA4C2C6\t0x208A0\n0x8EA4C2C7\t0x208FE\n0x8EA4C2C8\t0x20959\n0x8EA4C2C9\t0x20A9A\n0x8EA4C2CA\t0x35E7\n0x8EA4C2CB\t0x5619\n0x8EA4C2CC\t0x20EE4\n0x8EA4C2CD\t0x20ED7\n0x8EA4C2CE\t0x20EDC\n0x8EA4C2CF\t0x35E6\n0x8EA4C2D0\t0x20EE7\n0x8EA4C2D1\t0x35ED\n0x8EA4C2D2\t0x35E2\n0x8EA4C2D3\t0x35EB\n0x8EA4C2D4\t0x20EE5\n0x8EA4C2D5\t0x35E8\n0x8EA4C2D6\t0x35EC\n0x8EA4C2D7\t0x560A\n0x8EA4C2D8\t0x3624\n0x8EA4C2D9\t0x589A\n0x8EA4C2DA\t0x21414\n0x8EA4C2DB\t0x3662\n0x8EA4C2DC\t0x213F1\n0x8EA4C2DD\t0x3661\n0x8EA4C2DE\t0x3660\n0x8EA4C2DF\t0x3664\n0x8EA4C2E0\t0x368B\n0x8EA4C2E1\t0x215B6\n0x8EA4C2E2\t0x2166E\n0x8EA4C2E3\t0x2166C\n0x8EA4C2E4\t0x21681\n0x8EA4C2E5\t0x21842\n0x8EA4C2E6\t0x3719\n0x8EA4C2E7\t0x3716\n0x8EA4C2E8\t0x3718\n0x8EA4C2E9\t0x3722\n0x8EA4C2EA\t0x2181A\n0x8EA4C2EB\t0x371D\n0x8EA4C2EC\t0x3717\n0x8EA4C2ED\t0x371E\n0x8EA4C2EE\t0x21827\n0x8EA4C2EF\t0x21825\n0x8EA4C2F0\t0x21817\n0x8EA4C2F1\t0x2181C\n0x8EA4C2F2\t0x2183D\n0x8EA4C2F3\t0x21820\n0x8EA4C2F4\t0x3769\n0x8EA4C2F5\t0x376A\n0x8EA4C2F6\t0x21A81\n0x8EA4C2F7\t0x376C\n0x8EA4C2F8\t0x377A\n0x8EA4C2F9\t0x378A\n0x8EA4C2FA\t0x21C09\n0x8EA4C2FB\t0x21CC6\n0x8EA4C2FC\t0x21CC4\n0x8EA4C2FD\t0x379C\n0x8EA4C2FE\t0x21CC5\n0x8EA4C3A1\t0x37FD\n0x8EA4C3A2\t0x37F9\n0x8EA4C3A3\t0x21EEF\n0x8EA4C3A4\t0x37FF\n0x8EA4C3A5\t0x21EDF\n0x8EA4C3A6\t0x21EDE\n0x8EA4C3A7\t0x21EEE\n0x8EA4C3A8\t0x21EF5\n0x8EA4C3A9\t0x21EEC\n0x8EA4C3AA\t0x37FC\n0x8EA4C3AB\t0x21EDD\n0x8EA4C3AC\t0x5D85\n0x8EA4C3AD\t0x37FB\n0x8EA4C3AE\t0x3802\n0x8EA4C3AF\t0x385F\n0x8EA4C3B0\t0x5E56\n0x8EA4C3B1\t0x385E\n0x8EA4C3B2\t0x385D\n0x8EA4C3B3\t0x385C\n0x8EA4C3B4\t0x22122\n0x8EA4C3B5\t0x5E51\n0x8EA4C3B6\t0x3892\n0x8EA4C3B7\t0x22297\n0x8EA4C3B8\t0x22295\n0x8EA4C3B9\t0x3894\n0x8EA4C3BA\t0x3895\n0x8EA4C3BB\t0x38D1\n0x8EA4C3BC\t0x224A9\n0x8EA4C3BD\t0x38F1\n0x8EA4C3BE\t0x22553\n0x8EA4C3BF\t0x5FB1\n0x8EA4C3C0\t0x22556\n0x8EA4C3C1\t0x22555\n0x8EA4C3C2\t0x3977\n0x8EA4C3C3\t0x396F\n0x8EA4C3C4\t0x227E3\n0x8EA4C3C5\t0x227E2\n0x8EA4C3C6\t0x3987\n0x8EA4C3C7\t0x397D\n0x8EA4C3C8\t0x397C\n0x8EA4C3C9\t0x397E\n0x8EA4C3CA\t0x3985\n0x8EA4C3CB\t0x398B\n0x8EA4C3CC\t0x3986\n0x8EA4C3CD\t0x3980\n0x8EA4C3CF\t0x227A9\n0x8EA4C3D0\t0x3978\n0x8EA4C3D1\t0x2F8AB\n0x8EA4C3D2\t0x22833\n0x8EA4C3D3\t0x2280A\n0x8EA4C3D4\t0x39BA\n0x8EA4C3D5\t0x22A59\n0x8EA4C3D6\t0x3A33\n0x8EA4C3D7\t0x22CBC\n0x8EA4C3D8\t0x3A2D\n0x8EA4C3D9\t0x22CC4\n0x8EA4C3DA\t0x22CC7\n0x8EA4C3DB\t0x22CC6\n0x8EA4C3DC\t0x3A37\n0x8EA4C3DD\t0x645A\n0x8EA4C3DE\t0x6463\n0x8EA4C3DF\t0x22CB8\n0x8EA4C3E0\t0x22CDA\n0x8EA4C3E1\t0x3A2E\n0x8EA4C3E2\t0x22CB7\n0x8EA4C3E3\t0x22CC0\n0x8EA4C3E4\t0x3A3D\n0x8EA4C3E5\t0x22CCD\n0x8EA4C3E6\t0x3AA0\n0x8EA4C3E7\t0x22FBC\n0x8EA4C3E8\t0x22FAB\n0x8EA4C3E9\t0x3AA3\n0x8EA4C3EA\t0x23086\n0x8EA4C3EB\t0x669B\n0x8EA4C3EC\t0x2325A\n0x8EA4C3ED\t0x66A3\n0x8EA4C3EE\t0x3B0E\n0x8EA4C3EF\t0x669E\n0x8EA4C3F0\t0x23343\n0x8EA4C3F1\t0x3BB6\n0x8EA4C3F2\t0x235AC\n0x8EA4C3F3\t0x3BAB\n0x8EA4C3F4\t0x3BAD\n0x8EA4C3F5\t0x3BA6\n0x8EA4C3F6\t0x235BE\n0x8EA4C3F7\t0x69B8\n0x8EA4C3F8\t0x3BAA\n0x8EA4C3F9\t0x69BA\n0x8EA4C3FA\t0x3BB1\n0x8EA4C3FB\t0x235AB\n0x8EA4C3FC\t0x3BA8\n0x8EA4C3FD\t0x3BAF\n0x8EA4C3FE\t0x3BB0\n0x8EA4C4A1\t0x3BA7\n0x8EA4C4A2\t0x3BB2\n0x8EA4C4A3\t0x3B9D\n0x8EA4C4A4\t0x3BA5\n0x8EA4C4A5\t0x3BB5\n0x8EA4C4A6\t0x21B3E\n0x8EA4C4A7\t0x69C7\n0x8EA4C4A8\t0x69D7\n0x8EA4C4A9\t0x238F9\n0x8EA4C4AA\t0x3C41\n0x8EA4C4AB\t0x238F3\n0x8EA4C4AC\t0x238F7\n0x8EA4C4AD\t0x6B70\n0x8EA4C4AE\t0x23A45\n0x8EA4C4AF\t0x23A48\n0x8EA4C4B0\t0x3C72\n0x8EA4C4B1\t0x6B9D\n0x8EA4C4B2\t0x3C6F\n0x8EA4C4B3\t0x3C71\n0x8EA4C4B4\t0x23A44\n0x8EA4C4B5\t0x3C85\n0x8EA4C4B6\t0x23AAF\n0x8EA4C4B7\t0x23AB1\n0x8EA4C4B8\t0x3CA4\n0x8EA4C4B9\t0x3CA5\n0x8EA4C4BA\t0x3CA6\n0x8EA4C4BB\t0x23BCF\n0x8EA4C4BC\t0x3CA8\n0x8EA4C4BD\t0x23BCB\n0x8EA4C4BE\t0x23BCD\n0x8EA4C4BF\t0x3CA3\n0x8EA4C4C0\t0x23C50\n0x8EA4C4C1\t0x23EEC\n0x8EA4C4C2\t0x23F1A\n0x8EA4C4C3\t0x6F16\n0x8EA4C4C4\t0x6F24\n0x8EA4C4C5\t0x23ED8\n0x8EA4C4C6\t0x3D43\n0x8EA4C4C7\t0x23ED0\n0x8EA4C4C8\t0x23ED1\n0x8EA4C4C9\t0x3D3D\n0x8EA4C4CA\t0x3D45\n0x8EA4C4CB\t0x23E7B\n0x8EA4C4CC\t0x23ED2\n0x8EA4C4CD\t0x3D44\n0x8EA4C4CE\t0x23ED4\n0x8EA4C4CF\t0x23EE7\n0x8EA4C4D0\t0x23EDF\n0x8EA4C4D1\t0x23EDE\n0x8EA4C4D2\t0x6F45\n0x8EA4C4D3\t0x23ED9\n0x8EA4C4D4\t0x23ECF\n0x8EA4C4D5\t0x2430D\n0x8EA4C4D6\t0x3DE3\n0x8EA4C4D7\t0x7179\n0x8EA4C4D9\t0x3DDF\n0x8EA4C4DA\t0x3DE4\n0x8EA4C4DB\t0x717A\n0x8EA4C4DC\t0x3DE5\n0x8EA4C4DD\t0x24338\n0x8EA4C4DE\t0x7254\n0x8EA4C4DF\t0x3E22\n0x8EA4C4E0\t0x3E4A\n0x8EA4C4E1\t0x246A9\n0x8EA4C4E2\t0x3E49\n0x8EA4C4E3\t0x3E44\n0x8EA4C4E4\t0x3E4B\n0x8EA4C4E5\t0x3E87\n0x8EA4C4E6\t0x3E89\n0x8EA4C4E7\t0x3E92\n0x8EA4C4E8\t0x3E91\n0x8EA4C4E9\t0x3E90\n0x8EA4C4EA\t0x3E8E\n0x8EA4C4EB\t0x2483E\n0x8EA4C4EC\t0x24846\n0x8EA4C4ED\t0x249ED\n0x8EA4C4EE\t0x2F930\n0x8EA4C4EF\t0x3F12\n0x8EA4C4F0\t0x3F10\n0x8EA4C4F1\t0x3F11\n0x8EA4C4F2\t0x24B6C\n0x8EA4C4F3\t0x3F32\n0x8EA4C4F4\t0x3F34\n0x8EA4C4F5\t0x3F37\n0x8EA4C4F6\t0x3F33\n0x8EA4C4F7\t0x3F36\n0x8EA4C4F8\t0x3F35\n0x8EA4C4F9\t0x3F65\n0x8EA4C4FA\t0x24CAC\n0x8EA4C4FB\t0x757C\n0x8EA4C4FC\t0x757B\n0x8EA4C4FD\t0x24DC9\n0x8EA4C4FE\t0x7612\n0x8EA4C5A1\t0x3FB0\n0x8EA4C5A2\t0x24E12\n0x8EA4C5A3\t0x3FAF\n0x8EA4C5A4\t0x3FAA\n0x8EA4C5A5\t0x24DFD\n0x8EA4C5A6\t0x24E01\n0x8EA4C5A7\t0x24E11\n0x8EA4C5A8\t0x3FAB\n0x8EA4C5A9\t0x24E89\n0x8EA4C5AA\t0x24E05\n0x8EA4C5AB\t0x24DFE\n0x8EA4C5AC\t0x24E0B\n0x8EA4C5AD\t0x24E20\n0x8EA4C5AE\t0x24E04\n0x8EA4C5AF\t0x24F88\n0x8EA4C5B0\t0x3FF3\n0x8EA4C5B1\t0x25002\n0x8EA4C5B2\t0x3FF4\n0x8EA4C5B3\t0x25003\n0x8EA4C5B4\t0x76B6\n0x8EA4C5B5\t0x76E0\n0x8EA4C5B6\t0x4008\n0x8EA4C5B7\t0x404E\n0x8EA4C5B8\t0x4055\n0x8EA4C5B9\t0x404B\n0x8EA4C5BA\t0x25229\n0x8EA4C5BB\t0x2523B\n0x8EA4C5BC\t0x404D\n0x8EA4C5BD\t0x7773\n0x8EA4C5BE\t0x25206\n0x8EA4C5BF\t0x4052\n0x8EA4C5C0\t0x7772\n0x8EA4C5C1\t0x404C\n0x8EA4C5C2\t0x7770\n0x8EA4C5C3\t0x4050\n0x8EA4C5C4\t0x4053\n0x8EA4C5C5\t0x25203\n0x8EA4C5C6\t0x4051\n0x8EA4C5C7\t0x25378\n0x8EA4C5C8\t0x25379\n0x8EA4C5C9\t0x2537D\n0x8EA4C5CA\t0x4089\n0x8EA4C5CB\t0x2537F\n0x8EA4C5CC\t0x4095\n0x8EA4C5CD\t0x40CC\n0x8EA4C5CE\t0x40C8\n0x8EA4C5CF\t0x40CE\n0x8EA4C5D0\t0x25532\n0x8EA4C5D1\t0x40CA\n0x8EA4C5D2\t0x25500\n0x8EA4C5D3\t0x789D\n0x8EA4C5D4\t0x25522\n0x8EA4C5D5\t0x40CD\n0x8EA4C5D6\t0x256A9\n0x8EA4C5D7\t0x415C\n0x8EA4C5D8\t0x4167\n0x8EA4C5D9\t0x4169\n0x8EA4C5DA\t0x4165\n0x8EA4C5DB\t0x4162\n0x8EA4C5DC\t0x25804\n0x8EA4C5DD\t0x7A27\n0x8EA4C5DE\t0x7A35\n0x8EA4C5DF\t0x2F959\n0x8EA4C5E0\t0x41AA\n0x8EA4C5E1\t0x259B8\n0x8EA4C5E2\t0x25A9B\n0x8EA4C5E3\t0x41D2\n0x8EA4C5E4\t0x7BA2\n0x8EA4C5E5\t0x4203\n0x8EA4C5E6\t0x420C\n0x8EA4C5E7\t0x25B92\n0x8EA4C5E8\t0x4209\n0x8EA4C5E9\t0x4206\n0x8EA4C5EA\t0x4205\n0x8EA4C5EB\t0x7B89\n0x8EA4C5EC\t0x25B8F\n0x8EA4C5ED\t0x420B\n0x8EA4C5EE\t0x4208\n0x8EA4C5EF\t0x25B98\n0x8EA4C5F0\t0x7BA5\n0x8EA4C5F1\t0x25BAE\n0x8EA4C5F2\t0x428E\n0x8EA4C5F3\t0x25E9D\n0x8EA4C5F4\t0x7CB6\n0x8EA4C5F5\t0x42E8\n0x8EA4C5F6\t0x26049\n0x8EA4C5F7\t0x26050\n0x8EA4C5F8\t0x26046\n0x8EA4C5F9\t0x42EA\n0x8EA4C5FA\t0x2604E\n0x8EA4C5FB\t0x7DA5\n0x8EA4C5FC\t0x7DC3\n0x8EA4C5FD\t0x26055\n0x8EA4C5FE\t0x42E9\n0x8EA4C6A1\t0x42EB\n0x8EA4C6A2\t0x26064\n0x8EA4C6A3\t0x42F0\n0x8EA4C6A4\t0x26238\n0x8EA4C6A5\t0x434B\n0x8EA4C6A6\t0x7FAB\n0x8EA4C6A7\t0x4373\n0x8EA4C6A8\t0x4375\n0x8EA4C6A9\t0x4392\n0x8EA4C6AA\t0x4391\n0x8EA4C6AB\t0x4393\n0x8EA4C6AC\t0x8025\n0x8EA4C6AD\t0x43A7\n0x8EA4C6AE\t0x43A6\n0x8EA4C6AF\t0x43A8\n0x8EA4C6B0\t0x43AA\n0x8EA4C6B1\t0x264FE\n0x8EA4C6B2\t0x43A9\n0x8EA4C6B3\t0x8059\n0x8EA4C6B4\t0x43BB\n0x8EA4C6B5\t0x43BC\n0x8EA4C6B6\t0x43BA\n0x8EA4C6B7\t0x43BD\n0x8EA4C6B8\t0x4427\n0x8EA4C6B9\t0x8185\n0x8EA4C6BA\t0x267A6\n0x8EA4C6BB\t0x4424\n0x8EA4C6BC\t0x441E\n0x8EA4C6BD\t0x441F\n0x8EA4C6BE\t0x441D\n0x8EA4C6BF\t0x4420\n0x8EA4C6C0\t0x4423\n0x8EA4C6C1\t0x4429\n0x8EA4C6C2\t0x4422\n0x8EA4C6C3\t0x2679C\n0x8EA4C6C4\t0x26799\n0x8EA4C6C5\t0x441C\n0x8EA4C6C6\t0x818E\n0x8EA4C6C7\t0x4428\n0x8EA4C6C8\t0x267B5\n0x8EA4C6C9\t0x267A3\n0x8EA4C6CA\t0x267A0\n0x8EA4C6CB\t0x267A7\n0x8EA4C6CC\t0x2679B\n0x8EA4C6CD\t0x269DF\n0x8EA4C6CE\t0x269E1\n0x8EA4C6CF\t0x4471\n0x8EA4C6D0\t0x4473\n0x8EA4C6D1\t0x4472\n0x8EA4C6D2\t0x26A4D\n0x8EA4C6D3\t0x4502\n0x8EA4C6D4\t0x26DF3\n0x8EA4C6D5\t0x26D6F\n0x8EA4C6D6\t0x26D69\n0x8EA4C6D7\t0x44FE\n0x8EA4C6D8\t0x84BE\n0x8EA4C6D9\t0x26D6B\n0x8EA4C6DA\t0x26D78\n0x8EA4C6DB\t0x26D87\n0x8EA4C6DC\t0x4508\n0x8EA4C6DD\t0x26D85\n0x8EA4C6DE\t0x26D82\n0x8EA4C6DF\t0x26D90\n0x8EA4C6E0\t0x4507\n0x8EA4C6E1\t0x4504\n0x8EA4C6E2\t0x26D80\n0x8EA4C6E3\t0x26D67\n0x8EA4C6E4\t0x4500\n0x8EA4C6E5\t0x44FC\n0x8EA4C6E6\t0x26D61\n0x8EA4C6E7\t0x4544\n0x8EA4C6E8\t0x26D93\n0x8EA4C6E9\t0x44F1\n0x8EA4C6EA\t0x26DF2\n0x8EA4C6EB\t0x26D86\n0x8EA4C6EC\t0x84A6\n0x8EA4C6ED\t0x4506\n0x8EA4C6EE\t0x271CD\n0x8EA4C6EF\t0x271C4\n0x8EA4C6F0\t0x45C6\n0x8EA4C6F1\t0x45C3\n0x8EA4C6F2\t0x45C1\n0x8EA4C6F3\t0x45C2\n0x8EA4C6F4\t0x2730F\n0x8EA4C6F5\t0x45C4\n0x8EA4C6F6\t0x45C7\n0x8EA4C6F7\t0x2730D\n0x8EA4C6F8\t0x45BF\n0x8EA4C6F9\t0x45D2\n0x8EA4C6FA\t0x27373\n0x8EA4C6FB\t0x45CA\n0x8EA4C6FC\t0x2F9BA\n0x8EA4C6FD\t0x2730A\n0x8EA4C6FE\t0x872F\n0x8EA4C7A1\t0x27308\n0x8EA4C7A2\t0x27313\n0x8EA4C7A3\t0x4613\n0x8EA4C7A4\t0x275F8\n0x8EA4C7A5\t0x4630\n0x8EA4C7A6\t0x463E\n0x8EA4C7A7\t0x4639\n0x8EA4C7A8\t0x276AB\n0x8EA4C7A9\t0x276A8\n0x8EA4C7AA\t0x463C\n0x8EA4C7AB\t0x463F\n0x8EA4C7AC\t0x276A5\n0x8EA4C7AD\t0x4634\n0x8EA4C7AE\t0x463D\n0x8EA4C7AF\t0x276C3\n0x8EA4C7B0\t0x276A4\n0x8EA4C7B1\t0x4638\n0x8EA4C7B2\t0x276D4\n0x8EA4C7B3\t0x276BA\n0x8EA4C7B4\t0x277F1\n0x8EA4C7B5\t0x89A0\n0x8EA4C7B6\t0x4682\n0x8EA4C7B7\t0x2783F\n0x8EA4C7B8\t0x4683\n0x8EA4C7B9\t0x278EA\n0x8EA4C7BA\t0x469B\n0x8EA4C7BB\t0x279F7\n0x8EA4C7BC\t0x46E0\n0x8EA4C7BD\t0x46DD\n0x8EA4C7BE\t0x279FA\n0x8EA4C7BF\t0x279F5\n0x8EA4C7C0\t0x46DE\n0x8EA4C7C1\t0x279FE\n0x8EA4C7C2\t0x46E3\n0x8EA4C7C3\t0x46E5\n0x8EA4C7C4\t0x27A00\n0x8EA4C7C5\t0x8A97\n0x8EA4C7C6\t0x46E2\n0x8EA4C7C7\t0x27A02\n0x8EA4C7C8\t0x279FB\n0x8EA4C7C9\t0x27A07\n0x8EA4C7CA\t0x46DF\n0x8EA4C7CB\t0x27A1A\n0x8EA4C7CC\t0x472E\n0x8EA4C7CD\t0x27BB8\n0x8EA4C7CE\t0x4737\n0x8EA4C7CF\t0x4738\n0x8EA4C7D0\t0x27BE9\n0x8EA4C7D1\t0x27BEB\n0x8EA4C7D2\t0x27C50\n0x8EA4C7D3\t0x27C4F\n0x8EA4C7D4\t0x8C8B\n0x8EA4C7D5\t0x27D86\n0x8EA4C7D6\t0x3562\n0x8EA4C7D7\t0x27D8E\n0x8EA4C7D8\t0x4794\n0x8EA4C7D9\t0x4793\n0x8EA4C7DA\t0x47AB\n0x8EA4C7DB\t0x47AD\n0x8EA4C7DC\t0x27EF0\n0x8EA4C7DD\t0x27EFB\n0x8EA4C7DE\t0x47F5\n0x8EA4C7DF\t0x47F7\n0x8EA4C7E0\t0x28042\n0x8EA4C7E1\t0x47F6\n0x8EA4C7E2\t0x47F8\n0x8EA4C7E3\t0x28085\n0x8EA4C7E4\t0x47FB\n0x8EA4C7E5\t0x47F9\n0x8EA4C7E6\t0x4858\n0x8EA4C7E7\t0x485A\n0x8EA4C7E8\t0x28305\n0x8EA4C7E9\t0x4859\n0x8EA4C7EA\t0x8F0F\n0x8EA4C7EB\t0x4885\n0x8EA4C7EC\t0x48A4\n0x8EA4C7ED\t0x48D8\n0x8EA4C7EE\t0x48D9\n0x8EA4C7EF\t0x2874B\n0x8EA4C7F0\t0x48DD\n0x8EA4C7F1\t0x48C8\n0x8EA4C7F2\t0x28763\n0x8EA4C7F3\t0x48FA\n0x8EA4C7F4\t0x48FB\n0x8EA4C7F5\t0x9275\n0x8EA4C7F6\t0x4927\n0x8EA4C7F7\t0x929F\n0x8EA4C7F8\t0x492A\n0x8EA4C7F9\t0x4925\n0x8EA4C7FA\t0x28999\n0x8EA4C7FB\t0x4928\n0x8EA4C7FC\t0x28C81\n0x8EA4C7FD\t0x28D17\n0x8EA4C7FE\t0x28D10\n0x8EA4C8A1\t0x28D12\n0x8EA4C8A2\t0x95A6\n0x8EA4C8A3\t0x4995\n0x8EA4C8A4\t0x969A\n0x8EA4C8A5\t0x28EFA\n0x8EA4C8A6\t0x28EF3\n0x8EA4C8A7\t0x28EF2\n0x8EA4C8A8\t0x28EF5\n0x8EA4C8A9\t0x28EF6\n0x8EA4C8AA\t0x28FBB\n0x8EA4C8AB\t0x28FC2\n0x8EA4C8AC\t0x290A7\n0x8EA4C8AD\t0x4A0F\n0x8EA4C8AE\t0x4A11\n0x8EA4C8AF\t0x290A8\n0x8EA4C8B0\t0x290A3\n0x8EA4C8B1\t0x4A10\n0x8EA4C8B2\t0x290AA\n0x8EA4C8B3\t0x4A15\n0x8EA4C8B4\t0x4A13\n0x8EA4C8B5\t0x9757\n0x8EA4C8B6\t0x291DC\n0x8EA4C8B7\t0x4A47\n0x8EA4C8B8\t0x4A46\n0x8EA4C8B9\t0x2920F\n0x8EA4C8BA\t0x4A59\n0x8EA4C8BB\t0x4A5B\n0x8EA4C8BC\t0x29279\n0x8EA4C8BD\t0x4A5E\n0x8EA4C8BE\t0x2927F\n0x8EA4C8BF\t0x29285\n0x8EA4C8C0\t0x4A5A\n0x8EA4C8C1\t0x4A91\n0x8EA4C8C2\t0x4A92\n0x8EA4C8C3\t0x4A90\n0x8EA4C8C4\t0x4A93\n0x8EA4C8C5\t0x2941B\n0x8EA4C8C6\t0x97F7\n0x8EA4C8C7\t0x4ABE\n0x8EA4C8C8\t0x29477\n0x8EA4C8C9\t0x29476\n0x8EA4C8CA\t0x29498\n0x8EA4C8CB\t0x4ABC\n0x8EA4C8CC\t0x4ABB\n0x8EA4C8CD\t0x4AB7\n0x8EA4C8CE\t0x4AB9\n0x8EA4C8CF\t0x2947A\n0x8EA4C8D0\t0x4B01\n0x8EA4C8D1\t0x4AFE\n0x8EA4C8D2\t0x295BC\n0x8EA4C8D3\t0x295BA\n0x8EA4C8D4\t0x4B02\n0x8EA4C8D5\t0x295B6\n0x8EA4C8D6\t0x4AFF\n0x8EA4C8D7\t0x98B0\n0x8EA4C8D8\t0x295B4\n0x8EA4C8D9\t0x4B00\n0x8EA4C8DA\t0x296CF\n0x8EA4C8DB\t0x4B37\n0x8EA4C8DC\t0x4B3A\n0x8EA4C8DD\t0x4B6F\n0x8EA4C8DE\t0x4B77\n0x8EA4C8DF\t0x4B79\n0x8EA4C8E0\t0x99C6\n0x8EA4C8E1\t0x2987B\n0x8EA4C8E2\t0x4BC8\n0x8EA4C8E3\t0x29A1C\n0x8EA4C8E4\t0x29A21\n0x8EA4C8E5\t0x29A1D\n0x8EA4C8E6\t0x29AC0\n0x8EA4C8E7\t0x4BF2\n0x8EA4C8E8\t0x29AFF\n0x8EA4C8E9\t0x4BF1\n0x8EA4C8EA\t0x4BF0\n0x8EA4C8EB\t0x9B62\n0x8EA4C8EC\t0x29D56\n0x8EA4C8ED\t0x4C34\n0x8EA4C8EE\t0x29FA1\n0x8EA4C8EF\t0x29FA2\n0x8EA4C8F0\t0x29FA6\n0x8EA4C8F1\t0x2A256\n0x8EA4C8F2\t0x2A257\n0x8EA4C8F3\t0x4D2C\n0x8EA4C8F4\t0x4D2D\n0x8EA4C8F5\t0x2A301\n0x8EA4C8F6\t0x2A3ED\n0x8EA4C8F7\t0x2FA1C\n0x8EA4C8F8\t0x2A5F2\n0x8EA4C8F9\t0x50FA\n0x8EA4C8FA\t0x203B8\n0x8EA4C8FB\t0x3491\n0x8EA4C8FC\t0x203C0\n0x8EA4C8FD\t0x3494\n0x8EA4C8FE\t0x203B7\n0x8EA4C9A1\t0x203E1\n0x8EA4C9A2\t0x34C4\n0x8EA4C9A3\t0x350A\n0x8EA4C9A4\t0x207E8\n0x8EA4C9A5\t0x5285\n0x8EA4C9A6\t0x208B2\n0x8EA4C9A7\t0x3552\n0x8EA4C9A8\t0x20AAE\n0x8EA4C9A9\t0x3559\n0x8EA4C9AA\t0x366F\n0x8EA4C9AB\t0x20F7E\n0x8EA4C9AC\t0x35F2\n0x8EA4C9AD\t0x35F4\n0x8EA4C9AE\t0x5643\n0x8EA4C9AF\t0x20F76\n0x8EA4C9B0\t0x35F1\n0x8EA4C9B1\t0x563C\n0x8EA4C9B2\t0x20F96\n0x8EA4C9B3\t0x366A\n0x8EA4C9B4\t0x21420\n0x8EA4C9B5\t0x21421\n0x8EA4C9B6\t0x21423\n0x8EA4C9B7\t0x21429\n0x8EA4C9B8\t0x21677\n0x8EA4C9B9\t0x21851\n0x8EA4C9BA\t0x3724\n0x8EA4C9BB\t0x21856\n0x8EA4C9BC\t0x3723\n0x8EA4C9BD\t0x21888\n0x8EA4C9BE\t0x21859\n0x8EA4C9BF\t0x21855\n0x8EA4C9C0\t0x3727\n0x8EA4C9C1\t0x21997\n0x8EA4C9C2\t0x21998\n0x8EA4C9C3\t0x376D\n0x8EA4C9C4\t0x5BED\n0x8EA4C9C5\t0x376E\n0x8EA4C9C6\t0x376F\n0x8EA4C9C7\t0x21AA1\n0x8EA4C9C8\t0x21AA3\n0x8EA4C9C9\t0x5C35\n0x8EA4C9CA\t0x379F\n0x8EA4C9CB\t0x380A\n0x8EA4C9CC\t0x3806\n0x8EA4C9CD\t0x380E\n0x8EA4C9CE\t0x21F0A\n0x8EA4C9CF\t0x380D\n0x8EA4C9D0\t0x3805\n0x8EA4C9D1\t0x21F3D\n0x8EA4C9D2\t0x21F0C\n0x8EA4C9D3\t0x380B\n0x8EA4C9D4\t0x3810\n0x8EA4C9D5\t0x382E\n0x8EA4C9D6\t0x2213D\n0x8EA4C9D7\t0x22139\n0x8EA4C9D8\t0x222B0\n0x8EA4C9D9\t0x222B2\n0x8EA4C9DA\t0x222AE\n0x8EA4C9DB\t0x3896\n0x8EA4C9DC\t0x3897\n0x8EA4C9DD\t0x38C4\n0x8EA4C9DE\t0x5F47\n0x8EA4C9DF\t0x38C5\n0x8EA4C9E0\t0x22420\n0x8EA4C9E1\t0x38D2\n0x8EA4C9E2\t0x2256E\n0x8EA4C9E3\t0x2256D\n0x8EA4C9E4\t0x2256A\n0x8EA4C9E5\t0x3981\n0x8EA4C9E6\t0x22832\n0x8EA4C9E7\t0x398E\n0x8EA4C9E8\t0x3990\n0x8EA4C9E9\t0x398F\n0x8EA4C9EA\t0x22839\n0x8EA4C9EB\t0x3991\n0x8EA4C9EC\t0x3995\n0x8EA4C9ED\t0x3993\n0x8EA4C9EE\t0x227A3\n0x8EA4C9EF\t0x616D\n0x8EA4C9F0\t0x2287F\n0x8EA4C9F1\t0x22835\n0x8EA4C9F2\t0x2283D\n0x8EA4C9F3\t0x229F4\n0x8EA4C9F4\t0x229F5\n0x8EA4C9F5\t0x3A3B\n0x8EA4C9F6\t0x3A48\n0x8EA4C9F7\t0x22D48\n0x8EA4C9F8\t0x22D28\n0x8EA4C9F9\t0x3A46\n0x8EA4C9FA\t0x3A47\n0x8EA4C9FB\t0x22D27\n0x8EA4C9FC\t0x22D32\n0x8EA4C9FD\t0x22D2C\n0x8EA4C9FE\t0x3A4C\n0x8EA4CAA1\t0x22D2E\n0x8EA4CAA2\t0x3A4A\n0x8EA4CAA3\t0x3A50\n0x8EA4CAA4\t0x3A43\n0x8EA4CAA5\t0x22D23\n0x8EA4CAA6\t0x22D31\n0x8EA4CAA7\t0x2F8C5\n0x8EA4CAA8\t0x3A49\n0x8EA4CAA9\t0x3AA6\n0x8EA4CAAA\t0x3AA5\n0x8EA4CAAB\t0x3AA4\n0x8EA4CAAC\t0x22FC9\n0x8EA4CAAD\t0x23089\n0x8EA4CAAE\t0x3AB9\n0x8EA4CAAF\t0x230BB\n0x8EA4CAB0\t0x3ACE\n0x8EA4CAB1\t0x3ACF\n0x8EA4CAB2\t0x3B13\n0x8EA4CAB3\t0x23397\n0x8EA4CAB4\t0x23393\n0x8EA4CAB5\t0x23628\n0x8EA4CAB6\t0x3BC6\n0x8EA4CAB7\t0x3BC5\n0x8EA4CAB8\t0x3BCA\n0x8EA4CAB9\t0x3BD9\n0x8EA4CABA\t0x3BC1\n0x8EA4CABB\t0x23618\n0x8EA4CABC\t0x2363B\n0x8EA4CABD\t0x69F5\n0x8EA4CABE\t0x23627\n0x8EA4CABF\t0x23624\n0x8EA4CAC0\t0x2361B\n0x8EA4CAC1\t0x23631\n0x8EA4CAC2\t0x3BCB\n0x8EA4CAC3\t0x23626\n0x8EA4CAC4\t0x236A3\n0x8EA4CAC5\t0x2363F\n0x8EA4CAC6\t0x23622\n0x8EA4CAC7\t0x23619\n0x8EA4CAC8\t0x6A03\n0x8EA4CAC9\t0x23641\n0x8EA4CACA\t0x2362B\n0x8EA4CACB\t0x6A65\n0x8EA4CACC\t0x3C42\n0x8EA4CACD\t0x2390C\n0x8EA4CACE\t0x6B75\n0x8EA4CACF\t0x3C74\n0x8EA4CAD0\t0x3C73\n0x8EA4CAD1\t0x23A4E\n0x8EA4CAD2\t0x23AB9\n0x8EA4CAD3\t0x23AFA\n0x8EA4CAD4\t0x23BE9\n0x8EA4CAD5\t0x23BE8\n0x8EA4CAD6\t0x23BE4\n0x8EA4CAD7\t0x6F8A\n0x8EA4CAD8\t0x6F56\n0x8EA4CAD9\t0x3D52\n0x8EA4CADA\t0x23F5F\n0x8EA4CADB\t0x23F5D\n0x8EA4CADC\t0x23F52\n0x8EA4CADD\t0x3D50\n0x8EA4CADE\t0x23F74\n0x8EA4CADF\t0x3D4B\n0x8EA4CAE0\t0x23F46\n0x8EA4CAE1\t0x3D4C\n0x8EA4CAE2\t0x3D6D\n0x8EA4CAE3\t0x23FAA\n0x8EA4CAE4\t0x6F98\n0x8EA4CAE5\t0x23F4A\n0x8EA4CAE6\t0x23F59\n0x8EA4CAE7\t0x23F4B\n0x8EA4CAE8\t0x3D4F\n0x8EA4CAE9\t0x6F68\n0x8EA4CAEA\t0x3DF0\n0x8EA4CAEB\t0x24350\n0x8EA4CAEC\t0x7234\n0x8EA4CAED\t0x7245\n0x8EA4CAEE\t0x3E4D\n0x8EA4CAEF\t0x3E4C\n0x8EA4CAF0\t0x246D0\n0x8EA4CAF1\t0x3E4F\n0x8EA4CAF2\t0x3E4E\n0x8EA4CAF3\t0x3E50\n0x8EA4CAF4\t0x246CC\n0x8EA4CAF5\t0x735C\n0x8EA4CAF6\t0x3E96\n0x8EA4CAF7\t0x7356\n0x8EA4CAF8\t0x24864\n0x8EA4CAF9\t0x24865\n0x8EA4CAFA\t0x3E97\n0x8EA4CAFB\t0x3E95\n0x8EA4CAFC\t0x3E98\n0x8EA4CAFD\t0x2485C\n0x8EA4CAFE\t0x24A15\n0x8EA4CBA1\t0x3EEC\n0x8EA4CBA2\t0x3EEB\n0x8EA4CBA3\t0x3F13\n0x8EA4CBA4\t0x3F14\n0x8EA4CBA5\t0x3F38\n0x8EA4CBA6\t0x3F3A\n0x8EA4CBA7\t0x3F39\n0x8EA4CBA8\t0x24B79\n0x8EA4CBA9\t0x3F68\n0x8EA4CBAA\t0x3F67\n0x8EA4CBAB\t0x24CC5\n0x8EA4CBAC\t0x24CB8\n0x8EA4CBAD\t0x24E2C\n0x8EA4CBAE\t0x3FBE\n0x8EA4CBAF\t0x3FBC\n0x8EA4CBB0\t0x24E37\n0x8EA4CBB1\t0x24E35\n0x8EA4CBB2\t0x24E31\n0x8EA4CBB3\t0x3FBB\n0x8EA4CBB4\t0x24E2F\n0x8EA4CBB5\t0x3FBA\n0x8EA4CBB6\t0x24E2B\n0x8EA4CBB7\t0x3FB9\n0x8EA4CBB8\t0x3FB7\n0x8EA4CBB9\t0x24E2D\n0x8EA4CBBA\t0x24E2A\n0x8EA4CBBB\t0x3FC1\n0x8EA4CBBC\t0x24F95\n0x8EA4CBBD\t0x3FF7\n0x8EA4CBBE\t0x2523E\n0x8EA4CBBF\t0x4060\n0x8EA4CBC0\t0x25247\n0x8EA4CBC1\t0x25245\n0x8EA4CBC2\t0x4059\n0x8EA4CBC3\t0x405C\n0x8EA4CBC4\t0x405A\n0x8EA4CBC5\t0x4058\n0x8EA4CBC6\t0x25252\n0x8EA4CBC7\t0x405B\n0x8EA4CBC8\t0x25270\n0x8EA4CBC9\t0x25250\n0x8EA4CBCA\t0x25258\n0x8EA4CBCB\t0x25251\n0x8EA4CBCC\t0x2523D\n0x8EA4CBCD\t0x405D\n0x8EA4CBCE\t0x25241\n0x8EA4CBCF\t0x2520C\n0x8EA4CBD0\t0x2523C\n0x8EA4CBD1\t0x25386\n0x8EA4CBD2\t0x25383\n0x8EA4CBD3\t0x25389\n0x8EA4CBD4\t0x253F3\n0x8EA4CBD5\t0x40D4\n0x8EA4CBD6\t0x40D3\n0x8EA4CBD7\t0x78BF\n0x8EA4CBD8\t0x40D2\n0x8EA4CBD9\t0x78BD\n0x8EA4CBDA\t0x2552D\n0x8EA4CBDB\t0x40D7\n0x8EA4CBDC\t0x40D1\n0x8EA4CBDD\t0x78E4\n0x8EA4CBDE\t0x40D5\n0x8EA4CBDF\t0x256C5\n0x8EA4CBE0\t0x2F955\n0x8EA4CBE1\t0x416D\n0x8EA4CBE2\t0x416F\n0x8EA4CBE3\t0x7A34\n0x8EA4CBE4\t0x4175\n0x8EA4CBE5\t0x416C\n0x8EA4CBE6\t0x4174\n0x8EA4CBE7\t0x25843\n0x8EA4CBE8\t0x4173\n0x8EA4CBE9\t0x25837\n0x8EA4CBEA\t0x25845\n0x8EA4CBEB\t0x7A36\n0x8EA4CBEC\t0x41AC\n0x8EA4CBED\t0x259E5\n0x8EA4CBEE\t0x25AA6\n0x8EA4CBEF\t0x25BDB\n0x8EA4CBF0\t0x4210\n0x8EA4CBF1\t0x25BDA\n0x8EA4CBF2\t0x25BE6\n0x8EA4CBF3\t0x7BBA\n0x8EA4CBF4\t0x7BBC\n0x8EA4CBF5\t0x420F\n0x8EA4CBF6\t0x7BC8\n0x8EA4CBF7\t0x4223\n0x8EA4CBF8\t0x7BC3\n0x8EA4CBF9\t0x421D\n0x8EA4CBFA\t0x7BB6\n0x8EA4CBFB\t0x420E\n0x8EA4CBFC\t0x25BF8\n0x8EA4CBFD\t0x25BE9\n0x8EA4CBFE\t0x4215\n0x8EA4CCA1\t0x7BC2\n0x8EA4CCA2\t0x4213\n0x8EA4CCA3\t0x25BE8\n0x8EA4CCA4\t0x25BF6\n0x8EA4CCA5\t0x421B\n0x8EA4CCA6\t0x7BC5\n0x8EA4CCA7\t0x4222\n0x8EA4CCA8\t0x4226\n0x8EA4CCA9\t0x25BE7\n0x8EA4CCAA\t0x7BBD\n0x8EA4CCAB\t0x7BB0\n0x8EA4CCAC\t0x4221\n0x8EA4CCAD\t0x421C\n0x8EA4CCAE\t0x4217\n0x8EA4CCAF\t0x25BD5\n0x8EA4CCB0\t0x421A\n0x8EA4CCB1\t0x7BBB\n0x8EA4CCB2\t0x25ED3\n0x8EA4CCB3\t0x25EC7\n0x8EA4CCB4\t0x25ED1\n0x8EA4CCB5\t0x4299\n0x8EA4CCB6\t0x25EC3\n0x8EA4CCB7\t0x4297\n0x8EA4CCB8\t0x26080\n0x8EA4CCB9\t0x26098\n0x8EA4CCBA\t0x42FD\n0x8EA4CCBB\t0x26084\n0x8EA4CCBC\t0x42F6\n0x8EA4CCBD\t0x42FE\n0x8EA4CCBE\t0x42F5\n0x8EA4CCBF\t0x42FF\n0x8EA4CCC0\t0x42F7\n0x8EA4CCC1\t0x26097\n0x8EA4CCC2\t0x26083\n0x8EA4CCC3\t0x26081\n0x8EA4CCC4\t0x4301\n0x8EA4CCC5\t0x7E04\n0x8EA4CCC6\t0x2608C\n0x8EA4CCC7\t0x26242\n0x8EA4CCC8\t0x263AB\n0x8EA4CCC9\t0x4377\n0x8EA4CCCA\t0x263A3\n0x8EA4CCCB\t0x263A6\n0x8EA4CCCC\t0x2645C\n0x8EA4CCCD\t0x26469\n0x8EA4CCCE\t0x26467\n0x8EA4CCCF\t0x43AB\n0x8EA4CCD0\t0x2658B\n0x8EA4CCD1\t0x265A8\n0x8EA4CCD2\t0x43C0\n0x8EA4CCD3\t0x267D8\n0x8EA4CCD4\t0x4431\n0x8EA4CCD5\t0x442E\n0x8EA4CCD6\t0x2F989\n0x8EA4CCD7\t0x267DC\n0x8EA4CCD8\t0x442C\n0x8EA4CCD9\t0x267E0\n0x8EA4CCDA\t0x267E5\n0x8EA4CCDB\t0x4432\n0x8EA4CCDC\t0x442F\n0x8EA4CCDD\t0x442B\n0x8EA4CCDE\t0x442D\n0x8EA4CCDF\t0x4433\n0x8EA4CCE0\t0x26918\n0x8EA4CCE1\t0x26919\n0x8EA4CCE2\t0x81F1\n0x8EA4CCE3\t0x4457\n0x8EA4CCE4\t0x445C\n0x8EA4CCE5\t0x447B\n0x8EA4CCE6\t0x26A5F\n0x8EA4CCE7\t0x26A5E\n0x8EA4CCE8\t0x447A\n0x8EA4CCE9\t0x26E02\n0x8EA4CCEA\t0x8522\n0x8EA4CCEB\t0x4513\n0x8EA4CCEC\t0x451E\n0x8EA4CCED\t0x4517\n0x8EA4CCEE\t0x4520\n0x8EA4CCEF\t0x452A\n0x8EA4CCF0\t0x4511\n0x8EA4CCF1\t0x4515\n0x8EA4CCF2\t0x450F\n0x8EA4CCF3\t0x4518\n0x8EA4CCF4\t0x8538\n0x8EA4CCF5\t0x26E12\n0x8EA4CCF6\t0x26E36\n0x8EA4CCF7\t0x452C\n0x8EA4CCF8\t0x8532\n0x8EA4CCF9\t0x2F9A8\n0x8EA4CCFA\t0x8510\n0x8EA4CCFB\t0x26E23\n0x8EA4CCFC\t0x26E03\n0x8EA4CCFD\t0x451C\n0x8EA4CCFE\t0x26E00\n0x8EA4CDA1\t0x4529\n0x8EA4CDA2\t0x26E46\n0x8EA4CDA3\t0x26E61\n0x8EA4CDA4\t0x4512\n0x8EA4CDA5\t0x854F\n0x8EA4CDA6\t0x4597\n0x8EA4CDA7\t0x27384\n0x8EA4CDA8\t0x8772\n0x8EA4CDA9\t0x2736B\n0x8EA4CDAA\t0x27362\n0x8EA4CDAB\t0x27356\n0x8EA4CDAC\t0x2736A\n0x8EA4CDAD\t0x27352\n0x8EA4CDAE\t0x27355\n0x8EA4CDAF\t0x45D4\n0x8EA4CDB0\t0x45D0\n0x8EA4CDB1\t0x877C\n0x8EA4CDB2\t0x27361\n0x8EA4CDB3\t0x2F9BB\n0x8EA4CDB4\t0x27358\n0x8EA4CDB5\t0x27377\n0x8EA4CDB6\t0x45D3\n0x8EA4CDB7\t0x4614\n0x8EA4CDB8\t0x276D7\n0x8EA4CDB9\t0x4646\n0x8EA4CDBA\t0x4645\n0x8EA4CDBB\t0x276DE\n0x8EA4CDBC\t0x4643\n0x8EA4CDBD\t0x276DF\n0x8EA4CDBE\t0x890D\n0x8EA4CDBF\t0x4644\n0x8EA4CDC0\t0x4648\n0x8EA4CDC1\t0x276D1\n0x8EA4CDC2\t0x4647\n0x8EA4CDC3\t0x276E2\n0x8EA4CDC4\t0x276E1\n0x8EA4CDC5\t0x276DD\n0x8EA4CDC6\t0x8908\n0x8EA4CDC7\t0x4649\n0x8EA4CDC8\t0x4685\n0x8EA4CDC9\t0x2784B\n0x8EA4CDCA\t0x4684\n0x8EA4CDCB\t0x2784E\n0x8EA4CDCC\t0x469D\n0x8EA4CDCD\t0x278FC\n0x8EA4CDCE\t0x469E\n0x8EA4CDCF\t0x46A0\n0x8EA4CDD0\t0x278FA\n0x8EA4CDD1\t0x469C\n0x8EA4CDD2\t0x278FB\n0x8EA4CDD3\t0x469F\n0x8EA4CDD4\t0x278FE\n0x8EA4CDD5\t0x46F7\n0x8EA4CDD6\t0x46EA\n0x8EA4CDD7\t0x27A31\n0x8EA4CDD8\t0x46EF\n0x8EA4CDD9\t0x46E9\n0x8EA4CDDA\t0x46F3\n0x8EA4CDDB\t0x46F0\n0x8EA4CDDC\t0x46EB\n0x8EA4CDDD\t0x27A38\n0x8EA4CDDE\t0x46EC\n0x8EA4CDDF\t0x46F2\n0x8EA4CDE0\t0x46F5\n0x8EA4CDE1\t0x46EE\n0x8EA4CDE2\t0x27A3A\n0x8EA4CDE3\t0x27BBB\n0x8EA4CDE4\t0x473A\n0x8EA4CDE5\t0x474B\n0x8EA4CDE6\t0x27C59\n0x8EA4CDE7\t0x474A\n0x8EA4CDE8\t0x474C\n0x8EA4CDE9\t0x27CDB\n0x8EA4CDEA\t0x27CDF\n0x8EA4CDEB\t0x27CE2\n0x8EA4CDEC\t0x4779\n0x8EA4CDED\t0x477B\n0x8EA4CDEE\t0x4778\n0x8EA4CDEF\t0x27D9E\n0x8EA4CDF0\t0x27DA1\n0x8EA4CDF1\t0x47B5\n0x8EA4CDF2\t0x27F10\n0x8EA4CDF3\t0x47B4\n0x8EA4CDF4\t0x47B7\n0x8EA4CDF5\t0x8D9E\n0x8EA4CDF6\t0x4809\n0x8EA4CDF7\t0x47FE\n0x8EA4CDF8\t0x4808\n0x8EA4CDF9\t0x4807\n0x8EA4CDFA\t0x28076\n0x8EA4CDFB\t0x2807F\n0x8EA4CDFC\t0x2807D\n0x8EA4CDFD\t0x4806\n0x8EA4CDFE\t0x4804\n0x8EA4CEA1\t0x4805\n0x8EA4CEA2\t0x47FF\n0x8EA4CEA3\t0x480B\n0x8EA4CEA4\t0x28082\n0x8EA4CEA5\t0x28257\n0x8EA4CEA6\t0x483B\n0x8EA4CEA7\t0x485D\n0x8EA4CEA8\t0x485C\n0x8EA4CEA9\t0x485F\n0x8EA4CEAA\t0x485E\n0x8EA4CEAB\t0x8F28\n0x8EA4CEAC\t0x2832E\n0x8EA4CEAD\t0x8F21\n0x8EA4CEAE\t0x4883\n0x8EA4CEAF\t0x2858B\n0x8EA4CEB0\t0x2858D\n0x8EA4CEB1\t0x48A7\n0x8EA4CEB2\t0x9066\n0x8EA4CEB3\t0x906C\n0x8EA4CEB4\t0x28590\n0x8EA4CEB5\t0x48A8\n0x8EA4CEB6\t0x286EC\n0x8EA4CEB7\t0x2876F\n0x8EA4CEB8\t0x2876B\n0x8EA4CEB9\t0x28771\n0x8EA4CEBA\t0x28778\n0x8EA4CEBB\t0x90F6\n0x8EA4CEBC\t0x48E0\n0x8EA4CEBD\t0x48DF\n0x8EA4CEBE\t0x48FE\n0x8EA4CEBF\t0x48FC\n0x8EA4CEC0\t0x48FF\n0x8EA4CEC1\t0x48FD\n0x8EA4CEC2\t0x289AD\n0x8EA4CEC3\t0x492C\n0x8EA4CEC4\t0x92EC\n0x8EA4CEC5\t0x92BA\n0x8EA4CEC6\t0x92E3\n0x8EA4CEC7\t0x92BD\n0x8EA4CEC8\t0x499D\n0x8EA4CEC9\t0x28D2F\n0x8EA4CECA\t0x95B4\n0x8EA4CECB\t0x28F78\n0x8EA4CECC\t0x4A40\n0x8EA4CECD\t0x291F8\n0x8EA4CECE\t0x29219\n0x8EA4CECF\t0x4A5F\n0x8EA4CED0\t0x2929B\n0x8EA4CED1\t0x29294\n0x8EA4CED2\t0x29297\n0x8EA4CED3\t0x29299\n0x8EA4CED4\t0x293A6\n0x8EA4CED5\t0x293A4\n0x8EA4CED6\t0x293A7\n0x8EA4CED7\t0x97D1\n0x8EA4CED8\t0x29495\n0x8EA4CED9\t0x4AC0\n0x8EA4CEDA\t0x9823\n0x8EA4CEDB\t0x29490\n0x8EA4CEDC\t0x4AC1\n0x8EA4CEDD\t0x4AC6\n0x8EA4CEDE\t0x2949B\n0x8EA4CEDF\t0x295C4\n0x8EA4CEE0\t0x4B04\n0x8EA4CEE1\t0x4B05\n0x8EA4CEE2\t0x295C6\n0x8EA4CEE3\t0x990B\n0x8EA4CEE4\t0x4B3E\n0x8EA4CEE5\t0x4B3D\n0x8EA4CEE6\t0x4B40\n0x8EA4CEE7\t0x4B3F\n0x8EA4CEE8\t0x296E3\n0x8EA4CEE9\t0x4B42\n0x8EA4CEEA\t0x296DF\n0x8EA4CEEB\t0x296DD\n0x8EA4CEEC\t0x296E7\n0x8EA4CEED\t0x4B84\n0x8EA4CEEE\t0x4B82\n0x8EA4CEEF\t0x4B7F\n0x8EA4CEF0\t0x4B85\n0x8EA4CEF1\t0x29A2D\n0x8EA4CEF2\t0x29A2C\n0x8EA4CEF3\t0x4BCC\n0x8EA4CEF4\t0x9AB2\n0x8EA4CEF5\t0x4BCB\n0x8EA4CEF6\t0x4BCD\n0x8EA4CEF7\t0x29A34\n0x8EA4CEF8\t0x29A38\n0x8EA4CEF9\t0x9ADB\n0x8EA4CEFA\t0x29B1D\n0x8EA4CEFB\t0x4BF5\n0x8EA4CEFC\t0x29B1A\n0x8EA4CEFD\t0x29B1B\n0x8EA4CEFE\t0x29B14\n0x8EA4CFA1\t0x9AF0\n0x8EA4CFA2\t0x29B17\n0x8EA4CFA3\t0x29C21\n0x8EA4CFA4\t0x4C20\n0x8EA4CFA5\t0x4C21\n0x8EA4CFA6\t0x29CAA\n0x8EA4CFA7\t0x29CA1\n0x8EA4CFA8\t0x4C37\n0x8EA4CFA9\t0x4C3E\n0x8EA4CFAA\t0x9B73\n0x8EA4CFAB\t0x4C3D\n0x8EA4CFAC\t0x9B6E\n0x8EA4CFAD\t0x29D63\n0x8EA4CFAE\t0x29D79\n0x8EA4CFAF\t0x29D60\n0x8EA4CFB0\t0x9B65\n0x8EA4CFB1\t0x29D62\n0x8EA4CFB2\t0x4C3C\n0x8EA4CFB3\t0x29D61\n0x8EA4CFB4\t0x4C38\n0x8EA4CFB5\t0x9B6A\n0x8EA4CFB6\t0x29D70\n0x8EA4CFB7\t0x9B6D\n0x8EA4CFB8\t0x29D6A\n0x8EA4CFB9\t0x4C3B\n0x8EA4CFBA\t0x29FC8\n0x8EA4CFBB\t0x4CB0\n0x8EA4CFBC\t0x29FC5\n0x8EA4CFBD\t0x29FBE\n0x8EA4CFBE\t0x29FC2\n0x8EA4CFBF\t0x4CAD\n0x8EA4CFC0\t0x4CB2\n0x8EA4CFC1\t0x4CB8\n0x8EA4CFC2\t0x9D0B\n0x8EA4CFC3\t0x29FC7\n0x8EA4CFC4\t0x4CAF\n0x8EA4CFC5\t0x29FB0\n0x8EA4CFC6\t0x29FCA\n0x8EA4CFC7\t0x4D1A\n0x8EA4CFC8\t0x9E76\n0x8EA4CFC9\t0x4D20\n0x8EA4CFCA\t0x4D21\n0x8EA4CFCB\t0x4D30\n0x8EA4CFCC\t0x9EA8\n0x8EA4CFCD\t0x4D2F\n0x8EA4CFCE\t0x2A30D\n0x8EA4CFCF\t0x2A307\n0x8EA4CFD0\t0x2A396\n0x8EA4CFD1\t0x2A3EF\n0x8EA4CFD2\t0x4D5F\n0x8EA4CFD3\t0x4D60\n0x8EA4CFD4\t0x2A41E\n0x8EA4CFD5\t0x2A41D\n0x8EA4CFD6\t0x9F11\n0x8EA4CFD7\t0x2A590\n0x8EA4CFD8\t0x203EB\n0x8EA4CFD9\t0x348A\n0x8EA4CFDA\t0x5119\n0x8EA4CFDB\t0x349C\n0x8EA4CFDC\t0x203EE\n0x8EA4CFDD\t0x349A\n0x8EA4CFDE\t0x203EF\n0x8EA4CFDF\t0x203EC\n0x8EA4CFE0\t0x207FA\n0x8EA4CFE1\t0x350C\n0x8EA4CFE2\t0x350B\n0x8EA4CFE3\t0x350D\n0x8EA4CFE4\t0x5292\n0x8EA4CFE5\t0x20904\n0x8EA4CFE6\t0x20FD3\n0x8EA4CFE7\t0x35FE\n0x8EA4CFE8\t0x20FD1\n0x8EA4CFE9\t0x20FFA\n0x8EA4CFEA\t0x35FF\n0x8EA4CFEB\t0x35FB\n0x8EA4CFEC\t0x35FC\n0x8EA4CFED\t0x3609\n0x8EA4CFEE\t0x20FC8\n0x8EA4CFEF\t0x3600\n0x8EA4CFF0\t0x20FD5\n0x8EA4CFF1\t0x5675\n0x8EA4CFF2\t0x20FCD\n0x8EA4CFF3\t0x20FD2\n0x8EA4CFF4\t0x20FFB\n0x8EA4CFF5\t0x2122A\n0x8EA4CFF6\t0x21488\n0x8EA4CFF7\t0x21461\n0x8EA4CFF8\t0x3671\n0x8EA4CFF9\t0x21463\n0x8EA4CFFA\t0x21462\n0x8EA4CFFB\t0x596F\n0x8EA4CFFC\t0x20057\n0x8EA4CFFD\t0x218C8\n0x8EA4CFFE\t0x21898\n0x8EA4D0A1\t0x372B\n0x8EA4D0A2\t0x21AC1\n0x8EA4D0A3\t0x21F3F\n0x8EA4D0A4\t0x21F41\n0x8EA4D0A5\t0x3814\n0x8EA4D0A6\t0x3811\n0x8EA4D0A7\t0x3812\n0x8EA4D0A8\t0x22152\n0x8EA4D0A9\t0x3863\n0x8EA4D0AA\t0x2215E\n0x8EA4D0AB\t0x386E\n0x8EA4D0AC\t0x389A\n0x8EA4D0AD\t0x222C7\n0x8EA4D0AE\t0x389B\n0x8EA4D0AF\t0x22370\n0x8EA4D0B0\t0x22427\n0x8EA4D0B1\t0x38C8\n0x8EA4D0B2\t0x22471\n0x8EA4D0B3\t0x224B0\n0x8EA4D0B4\t0x38F6\n0x8EA4D0B5\t0x22842\n0x8EA4D0B6\t0x22843\n0x8EA4D0B7\t0x61A5\n0x8EA4D0B8\t0x398C\n0x8EA4D0B9\t0x3997\n0x8EA4D0BA\t0x39A2\n0x8EA4D0BB\t0x61A0\n0x8EA4D0BC\t0x22857\n0x8EA4D0BD\t0x2289D\n0x8EA4D0BE\t0x22D89\n0x8EA4D0BF\t0x22D8D\n0x8EA4D0C0\t0x22D8B\n0x8EA4D0C1\t0x22D80\n0x8EA4D0C2\t0x22D92\n0x8EA4D0C3\t0x22D8A\n0x8EA4D0C4\t0x22DC8\n0x8EA4D0C5\t0x3A54\n0x8EA4D0C6\t0x22D8F\n0x8EA4D0C7\t0x22D93\n0x8EA4D0C8\t0x22D91\n0x8EA4D0C9\t0x3AA8\n0x8EA4D0CA\t0x22FF2\n0x8EA4D0CB\t0x22FDE\n0x8EA4D0CC\t0x3AA9\n0x8EA4D0CD\t0x230C8\n0x8EA4D0CE\t0x65B4\n0x8EA4D0CF\t0x65D8\n0x8EA4D0D0\t0x66C2\n0x8EA4D0D1\t0x3B18\n0x8EA4D0D2\t0x3B17\n0x8EA4D0D3\t0x3B1D\n0x8EA4D0D4\t0x232A7\n0x8EA4D0D5\t0x232A1\n0x8EA4D0D6\t0x3B31\n0x8EA4D0D7\t0x2368C\n0x8EA4D0D8\t0x2367F\n0x8EA4D0D9\t0x3BD8\n0x8EA4D0DA\t0x3BD5\n0x8EA4D0DB\t0x2367B\n0x8EA4D0DC\t0x23695\n0x8EA4D0DD\t0x23699\n0x8EA4D0DE\t0x3BE1\n0x8EA4D0DF\t0x2368E\n0x8EA4D0E0\t0x3BD4\n0x8EA4D0E1\t0x236DA\n0x8EA4D0E2\t0x2368A\n0x8EA4D0E3\t0x2369C\n0x8EA4D0E4\t0x3BE3\n0x8EA4D0E5\t0x2367E\n0x8EA4D0E6\t0x3C44\n0x8EA4D0E7\t0x3C45\n0x8EA4D0E8\t0x2391A\n0x8EA4D0E9\t0x23A55\n0x8EA4D0EA\t0x3C76\n0x8EA4D0EB\t0x3C75\n0x8EA4D0EC\t0x23A60\n0x8EA4D0ED\t0x6BA8\n0x8EA4D0EE\t0x3C88\n0x8EA4D0EF\t0x3CAA\n0x8EA4D0F0\t0x23BFB\n0x8EA4D0F1\t0x3CAB\n0x8EA4D0F2\t0x3CAC\n0x8EA4D0F3\t0x23BFD\n0x8EA4D0F4\t0x3D57\n0x8EA4D0F5\t0x6F83\n0x8EA4D0F6\t0x3D60\n0x8EA4D0F7\t0x3D5D\n0x8EA4D0F8\t0x3D6B\n0x8EA4D0F9\t0x23FD0\n0x8EA4D0FA\t0x3D63\n0x8EA4D0FB\t0x3D67\n0x8EA4D0FC\t0x23FC5\n0x8EA4D0FD\t0x3D5E\n0x8EA4D0FE\t0x23FD2\n0x8EA4D1A1\t0x24011\n0x8EA4D1A2\t0x6FC5\n0x8EA4D1A3\t0x71CD\n0x8EA4D1A4\t0x3DF9\n0x8EA4D1A5\t0x3DF3\n0x8EA4D1A6\t0x243AD\n0x8EA4D1A7\t0x243A4\n0x8EA4D1A8\t0x243A9\n0x8EA4D1A9\t0x243B0\n0x8EA4D1AA\t0x2439D\n0x8EA4D1AB\t0x3DF6\n0x8EA4D1AC\t0x24598\n0x8EA4D1AD\t0x729C\n0x8EA4D1AE\t0x3E51\n0x8EA4D1AF\t0x3E53\n0x8EA4D1B0\t0x3E52\n0x8EA4D1B1\t0x24892\n0x8EA4D1B2\t0x3E9B\n0x8EA4D1B3\t0x2488A\n0x8EA4D1B4\t0x3E9C\n0x8EA4D1B5\t0x2488D\n0x8EA4D1B6\t0x24896\n0x8EA4D1B7\t0x3EF7\n0x8EA4D1B8\t0x7499\n0x8EA4D1B9\t0x748F\n0x8EA4D1BA\t0x7491\n0x8EA4D1BB\t0x24A45\n0x8EA4D1BC\t0x24A4B\n0x8EA4D1BD\t0x24B0F\n0x8EA4D1BE\t0x24B16\n0x8EA4D1BF\t0x3F3B\n0x8EA4D1C0\t0x24B8A\n0x8EA4D1C1\t0x3F3E\n0x8EA4D1C2\t0x3F3D\n0x8EA4D1C3\t0x24CC9\n0x8EA4D1C4\t0x3F69\n0x8EA4D1C5\t0x24CC8\n0x8EA4D1C6\t0x24CCA\n0x8EA4D1C7\t0x24E64\n0x8EA4D1C8\t0x3FC3\n0x8EA4D1C9\t0x3FC4\n0x8EA4D1CA\t0x3FC7\n0x8EA4D1CB\t0x24E5D\n0x8EA4D1CC\t0x24E63\n0x8EA4D1CD\t0x7639\n0x8EA4D1CE\t0x3FC6\n0x8EA4D1CF\t0x762E\n0x8EA4D1D0\t0x3FC8\n0x8EA4D1D1\t0x24E88\n0x8EA4D1D2\t0x24F3A\n0x8EA4D1D3\t0x24F39\n0x8EA4D1D4\t0x769F\n0x8EA4D1D5\t0x76A0\n0x8EA4D1D6\t0x3FE6\n0x8EA4D1D7\t0x3FF8\n0x8EA4D1D8\t0x25017\n0x8EA4D1D9\t0x25093\n0x8EA4D1DA\t0x4007\n0x8EA4D1DB\t0x25095\n0x8EA4D1DC\t0x4064\n0x8EA4D1DD\t0x4068\n0x8EA4D1DE\t0x25276\n0x8EA4D1DF\t0x7794\n0x8EA4D1E0\t0x4065\n0x8EA4D1E1\t0x77AE\n0x8EA4D1E2\t0x25280\n0x8EA4D1E3\t0x2527B\n0x8EA4D1E4\t0x4069\n0x8EA4D1E5\t0x25248\n0x8EA4D1E6\t0x252A8\n0x8EA4D1E7\t0x25288\n0x8EA4D1E8\t0x2538B\n0x8EA4D1E9\t0x2538A\n0x8EA4D1EA\t0x2538C\n0x8EA4D1EB\t0x253FC\n0x8EA4D1EC\t0x40DA\n0x8EA4D1ED\t0x40E0\n0x8EA4D1EE\t0x78E6\n0x8EA4D1EF\t0x25558\n0x8EA4D1F0\t0x40DE\n0x8EA4D1F1\t0x25551\n0x8EA4D1F2\t0x25555\n0x8EA4D1F3\t0x25553\n0x8EA4D1F4\t0x411C\n0x8EA4D1F5\t0x411D\n0x8EA4D1F6\t0x411A\n0x8EA4D1F7\t0x256DC\n0x8EA4D1F8\t0x417B\n0x8EA4D1F9\t0x417A\n0x8EA4D1FA\t0x417C\n0x8EA4D1FB\t0x2585C\n0x8EA4D1FC\t0x4178\n0x8EA4D1FD\t0x4177\n0x8EA4D1FE\t0x25865\n0x8EA4D2A1\t0x2F95A\n0x8EA4D2A2\t0x41B1\n0x8EA4D2A3\t0x259EE\n0x8EA4D2A4\t0x41B2\n0x8EA4D2A5\t0x41B0\n0x8EA4D2A6\t0x259F0\n0x8EA4D2A7\t0x7ABC\n0x8EA4D2A8\t0x259F2\n0x8EA4D2A9\t0x4236\n0x8EA4D2AA\t0x25C35\n0x8EA4D2AB\t0x422E\n0x8EA4D2AC\t0x25C22\n0x8EA4D2AD\t0x7BD6\n0x8EA4D2AE\t0x25C20\n0x8EA4D2AF\t0x4234\n0x8EA4D2B0\t0x25C2D\n0x8EA4D2B1\t0x25C28\n0x8EA4D2B2\t0x25C26\n0x8EA4D2B3\t0x25C3C\n0x8EA4D2B4\t0x422A\n0x8EA4D2B5\t0x25C38\n0x8EA4D2B6\t0x4233\n0x8EA4D2B7\t0x422D\n0x8EA4D2B8\t0x422F\n0x8EA4D2B9\t0x4231\n0x8EA4D2BA\t0x422B\n0x8EA4D2BB\t0x4232\n0x8EA4D2BC\t0x25C2A\n0x8EA4D2BD\t0x4235\n0x8EA4D2BE\t0x25C1A\n0x8EA4D2BF\t0x25C30\n0x8EA4D2C0\t0x25BE3\n0x8EA4D2C1\t0x25C19\n0x8EA4D2C2\t0x25EE9\n0x8EA4D2C3\t0x25EE7\n0x8EA4D2C4\t0x7CCF\n0x8EA4D2C5\t0x260D6\n0x8EA4D2C6\t0x260C4\n0x8EA4D2C7\t0x4308\n0x8EA4D2C8\t0x26087\n0x8EA4D2C9\t0x4306\n0x8EA4D2CA\t0x260C7\n0x8EA4D2CB\t0x260D9\n0x8EA4D2CC\t0x7E18\n0x8EA4D2CD\t0x260DF\n0x8EA4D2CE\t0x434D\n0x8EA4D2CF\t0x4361\n0x8EA4D2D0\t0x2630A\n0x8EA4D2D1\t0x26301\n0x8EA4D2D2\t0x263B1\n0x8EA4D2D3\t0x4378\n0x8EA4D2D4\t0x263C1\n0x8EA4D2D5\t0x4394\n0x8EA4D2D6\t0x4395\n0x8EA4D2D7\t0x26476\n0x8EA4D2D8\t0x2650D\n0x8EA4D2D9\t0x2650E\n0x8EA4D2DA\t0x43C1\n0x8EA4D2DB\t0x43C3\n0x8EA4D2DC\t0x806D\n0x8EA4D2DD\t0x26807\n0x8EA4D2DE\t0x4439\n0x8EA4D2DF\t0x26809\n0x8EA4D2E0\t0x26816\n0x8EA4D2E1\t0x443A\n0x8EA4D2E2\t0x443B\n0x8EA4D2E3\t0x4435\n0x8EA4D2E4\t0x4436\n0x8EA4D2E5\t0x2680E\n0x8EA4D2E6\t0x443C\n0x8EA4D2E7\t0x8190\n0x8EA4D2E8\t0x26806\n0x8EA4D2E9\t0x2691E\n0x8EA4D2EA\t0x2694A\n0x8EA4D2EB\t0x4458\n0x8EA4D2EC\t0x447C\n0x8EA4D2ED\t0x447D\n0x8EA4D2EE\t0x448D\n0x8EA4D2EF\t0x448C\n0x8EA4D2F0\t0x26EA6\n0x8EA4D2F1\t0x26E91\n0x8EA4D2F2\t0x453B\n0x8EA4D2F3\t0x453F\n0x8EA4D2F4\t0x26EB8\n0x8EA4D2F5\t0x26E96\n0x8EA4D2F6\t0x4532\n0x8EA4D2F7\t0x452D\n0x8EA4D2F8\t0x26EC5\n0x8EA4D2F9\t0x452F\n0x8EA4D2FA\t0x4539\n0x8EA4D2FB\t0x452E\n0x8EA4D2FC\t0x453A\n0x8EA4D2FD\t0x26F0A\n0x8EA4D2FE\t0x4536\n0x8EA4D3A1\t0x4531\n0x8EA4D3A2\t0x453E\n0x8EA4D3A3\t0x4538\n0x8EA4D3A4\t0x8552\n0x8EA4D3A5\t0x4534\n0x8EA4D3A6\t0x26EB2\n0x8EA4D3A7\t0x4541\n0x8EA4D3A8\t0x26EB7\n0x8EA4D3A9\t0x26EB4\n0x8EA4D3AA\t0x26E89\n0x8EA4D3AB\t0x26E8D\n0x8EA4D3AC\t0x4530\n0x8EA4D3AD\t0x26E87\n0x8EA4D3AE\t0x26EC2\n0x8EA4D3AF\t0x26E9C\n0x8EA4D3B0\t0x26E92\n0x8EA4D3B1\t0x4543\n0x8EA4D3B2\t0x26ECA\n0x8EA4D3B3\t0x8550\n0x8EA4D3B4\t0x26E8A\n0x8EA4D3B5\t0x271E0\n0x8EA4D3B6\t0x4598\n0x8EA4D3B7\t0x271E6\n0x8EA4D3B8\t0x271E5\n0x8EA4D3B9\t0x87A0\n0x8EA4D3BA\t0x273A5\n0x8EA4D3BB\t0x273B3\n0x8EA4D3BC\t0x8786\n0x8EA4D3BD\t0x45DA\n0x8EA4D3BE\t0x45D7\n0x8EA4D3BF\t0x273B5\n0x8EA4D3C0\t0x273AF\n0x8EA4D3C1\t0x8795\n0x8EA4D3C2\t0x273B0\n0x8EA4D3C3\t0x273CC\n0x8EA4D3C4\t0x878C\n0x8EA4D3C5\t0x273A2\n0x8EA4D3C6\t0x273BE\n0x8EA4D3C7\t0x273C6\n0x8EA4D3C8\t0x273AC\n0x8EA4D3C9\t0x273AE\n0x8EA4D3CA\t0x4618\n0x8EA4D3CB\t0x8860\n0x8EA4D3CC\t0x2F9C3\n0x8EA4D3CD\t0x27708\n0x8EA4D3CE\t0x27705\n0x8EA4D3CF\t0x4652\n0x8EA4D3D0\t0x8928\n0x8EA4D3D1\t0x276FE\n0x8EA4D3D2\t0x464E\n0x8EA4D3D3\t0x8920\n0x8EA4D3D4\t0x27700\n0x8EA4D3D5\t0x464F\n0x8EA4D3D6\t0x4650\n0x8EA4D3D7\t0x27864\n0x8EA4D3D8\t0x27868\n0x8EA4D3D9\t0x89A8\n0x8EA4D3DA\t0x4686\n0x8EA4D3DB\t0x4687\n0x8EA4D3DC\t0x4689\n0x8EA4D3DD\t0x2786A\n0x8EA4D3DE\t0x27869\n0x8EA4D3DF\t0x2790D\n0x8EA4D3E0\t0x27912\n0x8EA4D3E1\t0x46A2\n0x8EA4D3E2\t0x46A3\n0x8EA4D3E3\t0x2790F\n0x8EA4D3E4\t0x46A1\n0x8EA4D3E5\t0x27A67\n0x8EA4D3E6\t0x27A79\n0x8EA4D3E7\t0x27A72\n0x8EA4D3E8\t0x27A66\n0x8EA4D3E9\t0x27A7C\n0x8EA4D3EA\t0x46F9\n0x8EA4D3EB\t0x46FD\n0x8EA4D3EC\t0x27A68\n0x8EA4D3ED\t0x27A85\n0x8EA4D3EE\t0x27A76\n0x8EA4D3EF\t0x27A74\n0x8EA4D3F0\t0x27A71\n0x8EA4D3F1\t0x27A64\n0x8EA4D3F2\t0x473E\n0x8EA4D3F3\t0x473C\n0x8EA4D3F4\t0x27BF8\n0x8EA4D3F5\t0x474D\n0x8EA4D3F6\t0x27C6C\n0x8EA4D3F7\t0x474E\n0x8EA4D3F8\t0x27CEB\n0x8EA4D3F9\t0x4781\n0x8EA4D3FA\t0x4783\n0x8EA4D3FB\t0x4782\n0x8EA4D3FC\t0x27DB8\n0x8EA4D3FD\t0x4780\n0x8EA4D3FE\t0x4788\n0x8EA4D4A1\t0x27F2D\n0x8EA4D4A2\t0x27F2E\n0x8EA4D4A3\t0x27F28\n0x8EA4D4A4\t0x27F29\n0x8EA4D4A5\t0x27F31\n0x8EA4D4A6\t0x47B9\n0x8EA4D4A7\t0x27F2F\n0x8EA4D4A8\t0x27F2A\n0x8EA4D4A9\t0x8E3A\n0x8EA4D4AA\t0x280A4\n0x8EA4D4AB\t0x280B7\n0x8EA4D4AC\t0x280BF\n0x8EA4D4AD\t0x4811\n0x8EA4D4AE\t0x480D\n0x8EA4D4AF\t0x4810\n0x8EA4D4B0\t0x4813\n0x8EA4D4B1\t0x28263\n0x8EA4D4B2\t0x483C\n0x8EA4D4B3\t0x4862\n0x8EA4D4B4\t0x4863\n0x8EA4D4B5\t0x28367\n0x8EA4D4B6\t0x285BE\n0x8EA4D4B7\t0x2F9E0\n0x8EA4D4B8\t0x28795\n0x8EA4D4B9\t0x2879C\n0x8EA4D4BA\t0x4903\n0x8EA4D4BB\t0x4906\n0x8EA4D4BC\t0x4902\n0x8EA4D4BD\t0x4901\n0x8EA4D4BE\t0x28871\n0x8EA4D4BF\t0x28872\n0x8EA4D4C0\t0x4905\n0x8EA4D4C1\t0x2886F\n0x8EA4D4C2\t0x9194\n0x8EA4D4C3\t0x9311\n0x8EA4D4C4\t0x289F1\n0x8EA4D4C5\t0x9337\n0x8EA4D4C6\t0x4936\n0x8EA4D4C7\t0x289E8\n0x8EA4D4C8\t0x4935\n0x8EA4D4C9\t0x9343\n0x8EA4D4CA\t0x2F9EA\n0x8EA4D4CB\t0x49A1\n0x8EA4D4CC\t0x49A3\n0x8EA4D4CD\t0x28D49\n0x8EA4D4CE\t0x28D64\n0x8EA4D4CF\t0x49A0\n0x8EA4D4D0\t0x28D48\n0x8EA4D4D1\t0x49EA\n0x8EA4D4D2\t0x96A6\n0x8EA4D4D3\t0x49E8\n0x8EA4D4D4\t0x28F2C\n0x8EA4D4D5\t0x28FE1\n0x8EA4D4D6\t0x28FEF\n0x8EA4D4D7\t0x290C0\n0x8EA4D4D8\t0x4A21\n0x8EA4D4D9\t0x4A1B\n0x8EA4D4DA\t0x290D7\n0x8EA4D4DB\t0x290D4\n0x8EA4D4DC\t0x4A49\n0x8EA4D4DD\t0x4A48\n0x8EA4D4DE\t0x292AD\n0x8EA4D4DF\t0x9795\n0x8EA4D4E0\t0x4A62\n0x8EA4D4E1\t0x4A61\n0x8EA4D4E2\t0x4A64\n0x8EA4D4E3\t0x4A60\n0x8EA4D4E4\t0x4A63\n0x8EA4D4E5\t0x292AE\n0x8EA4D4E6\t0x292AC\n0x8EA4D4E7\t0x9796\n0x8EA4D4E8\t0x4A66\n0x8EA4D4E9\t0x4AAC\n0x8EA4D4EA\t0x4AAB\n0x8EA4D4EB\t0x29427\n0x8EA4D4EC\t0x294AE\n0x8EA4D4ED\t0x4AC3\n0x8EA4D4EE\t0x294B0\n0x8EA4D4EF\t0x4AC4\n0x8EA4D4F0\t0x9825\n0x8EA4D4F1\t0x294C0\n0x8EA4D4F2\t0x294C4\n0x8EA4D4F3\t0x4B08\n0x8EA4D4F4\t0x4B09\n0x8EA4D4F5\t0x4B0A\n0x8EA4D4F6\t0x4B06\n0x8EA4D4F7\t0x4B07\n0x8EA4D4F8\t0x4B41\n0x8EA4D4F9\t0x29707\n0x8EA4D4FA\t0x4B45\n0x8EA4D4FB\t0x296FD\n0x8EA4D4FC\t0x4B43\n0x8EA4D4FD\t0x4B44\n0x8EA4D4FE\t0x9926\n0x8EA4D5A1\t0x9934\n0x8EA4D5A2\t0x4B47\n0x8EA4D5A3\t0x2FA04\n0x8EA4D5A4\t0x2981B\n0x8EA4D5A5\t0x2981C\n0x8EA4D5A6\t0x4B71\n0x8EA4D5A7\t0x298B2\n0x8EA4D5A8\t0x298B4\n0x8EA4D5A9\t0x298B7\n0x8EA4D5AA\t0x298B1\n0x8EA4D5AB\t0x298B3\n0x8EA4D5AC\t0x298AE\n0x8EA4D5AD\t0x4B8B\n0x8EA4D5AE\t0x4BD4\n0x8EA4D5AF\t0x4BD3\n0x8EA4D5B0\t0x4BD1\n0x8EA4D5B1\t0x9ABA\n0x8EA4D5B2\t0x4BD2\n0x8EA4D5B3\t0x29A3F\n0x8EA4D5B4\t0x29B36\n0x8EA4D5B5\t0x4BF7\n0x8EA4D5B6\t0x4BF8\n0x8EA4D5B7\t0x29B31\n0x8EA4D5B8\t0x29B3B\n0x8EA4D5B9\t0x29B35\n0x8EA4D5BA\t0x29B3A\n0x8EA4D5BB\t0x29B37\n0x8EA4D5BC\t0x29C22\n0x8EA4D5BD\t0x29C36\n0x8EA4D5BE\t0x29C32\n0x8EA4D5BF\t0x4C22\n0x8EA4D5C0\t0x29CC0\n0x8EA4D5C1\t0x4C45\n0x8EA4D5C2\t0x4C41\n0x8EA4D5C3\t0x9B81\n0x8EA4D5C4\t0x4C40\n0x8EA4D5C5\t0x9B8A\n0x8EA4D5C6\t0x29D85\n0x8EA4D5C7\t0x9B7F\n0x8EA4D5C8\t0x4C42\n0x8EA4D5C9\t0x29D89\n0x8EA4D5CA\t0x4CC1\n0x8EA4D5CB\t0x4CC5\n0x8EA4D5CC\t0x29FE1\n0x8EA4D5CD\t0x4CBB\n0x8EA4D5CE\t0x4CB9\n0x8EA4D5CF\t0x4CBD\n0x8EA4D5D0\t0x4CC9\n0x8EA4D5D1\t0x2A00A\n0x8EA4D5D2\t0x9D11\n0x8EA4D5D3\t0x2A009\n0x8EA4D5D4\t0x4CBF\n0x8EA4D5D5\t0x4CC7\n0x8EA4D5D6\t0x29FE8\n0x8EA4D5D7\t0x4CC3\n0x8EA4D5D8\t0x4D24\n0x8EA4D5D9\t0x4D31\n0x8EA4D5DA\t0x4D33\n0x8EA4D5DB\t0x2A318\n0x8EA4D5DC\t0x4D32\n0x8EA4D5DD\t0x4D34\n0x8EA4D5DE\t0x4D52\n0x8EA4D5DF\t0x4D61\n0x8EA4D5E0\t0x9ED9\n0x8EA4D5E1\t0x4D7A\n0x8EA4D5E2\t0x4D82\n0x8EA4D5E3\t0x9F3C\n0x8EA4D5E4\t0x2A5C5\n0x8EA4D5E5\t0x5123\n0x8EA4D5E6\t0x2040D\n0x8EA4D5E7\t0x2040C\n0x8EA4D5E8\t0x20421\n0x8EA4D5E9\t0x512C\n0x8EA4D5EA\t0x20616\n0x8EA4D5EB\t0x2080E\n0x8EA4D5EC\t0x350F\n0x8EA4D5ED\t0x5295\n0x8EA4D5EE\t0x20817\n0x8EA4D5EF\t0x3523\n0x8EA4D5F0\t0x3525\n0x8EA4D5F1\t0x21048\n0x8EA4D5F2\t0x3606\n0x8EA4D5F3\t0x3608\n0x8EA4D5F4\t0x5688\n0x8EA4D5F5\t0x21055\n0x8EA4D5F6\t0x21049\n0x8EA4D5F7\t0x2104C\n0x8EA4D5F8\t0x568B\n0x8EA4D5F9\t0x2104F\n0x8EA4D5FA\t0x2103D\n0x8EA4D5FB\t0x367A\n0x8EA4D5FC\t0x3677\n0x8EA4D5FD\t0x2148A\n0x8EA4D5FE\t0x214A8\n0x8EA4D6A1\t0x2168A\n0x8EA4D6A2\t0x372E\n0x8EA4D6A3\t0x218CB\n0x8EA4D6A4\t0x372F\n0x8EA4D6A5\t0x218D5\n0x8EA4D6A6\t0x221D4\n0x8EA4D6A7\t0x381B\n0x8EA4D6A8\t0x3813\n0x8EA4D6A9\t0x21F5C\n0x8EA4D6AA\t0x21F75\n0x8EA4D6AB\t0x3866\n0x8EA4D6AC\t0x22161\n0x8EA4D6AD\t0x3865\n0x8EA4D6AE\t0x21696\n0x8EA4D6AF\t0x38F7\n0x8EA4D6B0\t0x2258A\n0x8EA4D6B1\t0x228D0\n0x8EA4D6B2\t0x61E1\n0x8EA4D6B3\t0x61D7\n0x8EA4D6B4\t0x22849\n0x8EA4D6B5\t0x228CF\n0x8EA4D6B6\t0x399C\n0x8EA4D6B7\t0x22DD6\n0x8EA4D6B8\t0x22D7F\n0x8EA4D6B9\t0x3A53\n0x8EA4D6BA\t0x22DD2\n0x8EA4D6BB\t0x22DCF\n0x8EA4D6BC\t0x23006\n0x8EA4D6BD\t0x23009\n0x8EA4D6BE\t0x3ABA\n0x8EA4D6BF\t0x65A3\n0x8EA4D6C0\t0x3B22\n0x8EA4D6C1\t0x66D3\n0x8EA4D6C2\t0x23706\n0x8EA4D6C3\t0x236F1\n0x8EA4D6C4\t0x23704\n0x8EA4D6C5\t0x6A8B\n0x8EA4D6C6\t0x236FA\n0x8EA4D6C7\t0x236F4\n0x8EA4D6C8\t0x3BEB\n0x8EA4D6C9\t0x3BDD\n0x8EA4D6CA\t0x236F9\n0x8EA4D6CB\t0x3BEF\n0x8EA4D6CC\t0x2368B\n0x8EA4D6CD\t0x23703\n0x8EA4D6CE\t0x3C47\n0x8EA4D6CF\t0x3C46\n0x8EA4D6D0\t0x239A2\n0x8EA4D6D1\t0x3C78\n0x8EA4D6D2\t0x6BAC\n0x8EA4D6D3\t0x3C89\n0x8EA4D6D4\t0x23C0C\n0x8EA4D6D5\t0x23C0B\n0x8EA4D6D6\t0x3D68\n0x8EA4D6D7\t0x3D76\n0x8EA4D6D8\t0x3D74\n0x8EA4D6D9\t0x3D79\n0x8EA4D6DA\t0x24024\n0x8EA4D6DB\t0x3D7A\n0x8EA4D6DC\t0x3D77\n0x8EA4D6DD\t0x2F914\n0x8EA4D6DE\t0x3D71\n0x8EA4D6DF\t0x24025\n0x8EA4D6E0\t0x3D72\n0x8EA4D6E1\t0x243F6\n0x8EA4D6E2\t0x3DFF\n0x8EA4D6E3\t0x243FB\n0x8EA4D6E4\t0x3E05\n0x8EA4D6E5\t0x24532\n0x8EA4D6E6\t0x245FB\n0x8EA4D6E7\t0x3E54\n0x8EA4D6E8\t0x246F2\n0x8EA4D6E9\t0x246F3\n0x8EA4D6EA\t0x3E9E\n0x8EA4D6EB\t0x3E9F\n0x8EA4D6EC\t0x7374\n0x8EA4D6ED\t0x2489C\n0x8EA4D6EE\t0x24A72\n0x8EA4D6EF\t0x3EFA\n0x8EA4D6F0\t0x24A74\n0x8EA4D6F1\t0x3F44\n0x8EA4D6F2\t0x3F3F\n0x8EA4D6F3\t0x3F40\n0x8EA4D6F4\t0x24B86\n0x8EA4D6F5\t0x3F42\n0x8EA4D6F6\t0x24B8E\n0x8EA4D6F7\t0x24B90\n0x8EA4D6F8\t0x3F51\n0x8EA4D6F9\t0x24BCD\n0x8EA4D6FA\t0x24BF7\n0x8EA4D6FB\t0x24CD6\n0x8EA4D6FC\t0x24E84\n0x8EA4D6FD\t0x24E95\n0x8EA4D6FE\t0x24E8A\n0x8EA4D7A1\t0x7640\n0x8EA4D7A2\t0x3FCA\n0x8EA4D7A3\t0x24E97\n0x8EA4D7A4\t0x7641\n0x8EA4D7A5\t0x3FCE\n0x8EA4D7A6\t0x3FC9\n0x8EA4D7A7\t0x24FA0\n0x8EA4D7A8\t0x24FA1\n0x8EA4D7A9\t0x25022\n0x8EA4D7AA\t0x250A6\n0x8EA4D7AB\t0x250A4\n0x8EA4D7AC\t0x4009\n0x8EA4D7AD\t0x76E8\n0x8EA4D7AE\t0x406C\n0x8EA4D7AF\t0x406E\n0x8EA4D7B0\t0x4070\n0x8EA4D7B1\t0x406D\n0x8EA4D7B2\t0x406B\n0x8EA4D7B3\t0x4071\n0x8EA4D7B4\t0x4072\n0x8EA4D7B5\t0x252AF\n0x8EA4D7B6\t0x252B0\n0x8EA4D7B7\t0x252BD\n0x8EA4D7B8\t0x408C\n0x8EA4D7B9\t0x40E4\n0x8EA4D7BA\t0x25576\n0x8EA4D7BB\t0x40E1\n0x8EA4D7BC\t0x2557B\n0x8EA4D7BD\t0x25579\n0x8EA4D7BE\t0x78F6\n0x8EA4D7BF\t0x40E7\n0x8EA4D7C0\t0x7900\n0x8EA4D7C1\t0x40E2\n0x8EA4D7C2\t0x411F\n0x8EA4D7C3\t0x256EE\n0x8EA4D7C4\t0x256F1\n0x8EA4D7C5\t0x417E\n0x8EA4D7C6\t0x25894\n0x8EA4D7C7\t0x4180\n0x8EA4D7C8\t0x7A59\n0x8EA4D7C9\t0x7A55\n0x8EA4D7CA\t0x25891\n0x8EA4D7CB\t0x41B9\n0x8EA4D7CC\t0x41B7\n0x8EA4D7CD\t0x41B8\n0x8EA4D7CE\t0x25A10\n0x8EA4D7CF\t0x41BA\n0x8EA4D7D0\t0x7AF4\n0x8EA4D7D1\t0x25AAF\n0x8EA4D7D2\t0x41D3\n0x8EA4D7D3\t0x423F\n0x8EA4D7D4\t0x7C04\n0x8EA4D7D5\t0x4245\n0x8EA4D7D6\t0x4241\n0x8EA4D7D7\t0x7C15\n0x8EA4D7D8\t0x4242\n0x8EA4D7D9\t0x4243\n0x8EA4D7DA\t0x423B\n0x8EA4D7DB\t0x4238\n0x8EA4D7DC\t0x25C7B\n0x8EA4D7DD\t0x25C77\n0x8EA4D7DE\t0x423A\n0x8EA4D7DF\t0x7BF5\n0x8EA4D7E0\t0x25C80\n0x8EA4D7E1\t0x25CC6\n0x8EA4D7E2\t0x423C\n0x8EA4D7E3\t0x25C7C\n0x8EA4D7E4\t0x25C90\n0x8EA4D7E5\t0x423E\n0x8EA4D7E6\t0x25CA3\n0x8EA4D7E7\t0x25C7D\n0x8EA4D7E8\t0x25CBD\n0x8EA4D7E9\t0x429E\n0x8EA4D7EA\t0x429F\n0x8EA4D7EB\t0x42A1\n0x8EA4D7EC\t0x25F13\n0x8EA4D7ED\t0x429B\n0x8EA4D7EE\t0x4312\n0x8EA4D7EF\t0x26111\n0x8EA4D7F0\t0x26144\n0x8EA4D7F1\t0x2610D\n0x8EA4D7F2\t0x4318\n0x8EA4D7F3\t0x430C\n0x8EA4D7F4\t0x26314\n0x8EA4D7F5\t0x4362\n0x8EA4D7F6\t0x263B8\n0x8EA4D7F7\t0x437A\n0x8EA4D7F8\t0x263B7\n0x8EA4D7F9\t0x26483\n0x8EA4D7FA\t0x43AE\n0x8EA4D7FB\t0x43AF\n0x8EA4D7FC\t0x26514\n0x8EA4D7FD\t0x43AD\n0x8EA4D7FE\t0x2651C\n0x8EA4D8A1\t0x43C4\n0x8EA4D8A2\t0x43C7\n0x8EA4D8A3\t0x43C6\n0x8EA4D8A4\t0x43C5\n0x8EA4D8A5\t0x265D4\n0x8EA4D8A6\t0x265D5\n0x8EA4D8A7\t0x81C1\n0x8EA4D8A8\t0x4440\n0x8EA4D8A9\t0x26843\n0x8EA4D8AA\t0x26842\n0x8EA4D8AB\t0x443F\n0x8EA4D8AC\t0x4441\n0x8EA4D8AD\t0x2F98A\n0x8EA4D8AE\t0x26841\n0x8EA4D8AF\t0x2694E\n0x8EA4D8B0\t0x447F\n0x8EA4D8B1\t0x26A87\n0x8EA4D8B2\t0x4486\n0x8EA4D8B3\t0x4481\n0x8EA4D8B4\t0x4480\n0x8EA4D8B5\t0x448E\n0x8EA4D8B6\t0x454A\n0x8EA4D8B7\t0x26F39\n0x8EA4D8B8\t0x4547\n0x8EA4D8B9\t0x26F8F\n0x8EA4D8BA\t0x26F2A\n0x8EA4D8BB\t0x454B\n0x8EA4D8BC\t0x4546\n0x8EA4D8BD\t0x454E\n0x8EA4D8BE\t0x857D\n0x8EA4D8BF\t0x26F2B\n0x8EA4D8C0\t0x85A5\n0x8EA4D8C1\t0x26F50\n0x8EA4D8C2\t0x4548\n0x8EA4D8C3\t0x26F6E\n0x8EA4D8C4\t0x4545\n0x8EA4D8C5\t0x26F3B\n0x8EA4D8C6\t0x26F53\n0x8EA4D8C7\t0x26F5F\n0x8EA4D8C8\t0x26F2F\n0x8EA4D8C9\t0x26F30\n0x8EA4D8CA\t0x26F38\n0x8EA4D8CB\t0x26F4C\n0x8EA4D8CC\t0x271F1\n0x8EA4D8CD\t0x45DB\n0x8EA4D8CE\t0x45E7\n0x8EA4D8CF\t0x45E4\n0x8EA4D8D0\t0x27407\n0x8EA4D8D1\t0x27416\n0x8EA4D8D2\t0x45E1\n0x8EA4D8D3\t0x27414\n0x8EA4D8D4\t0x45E9\n0x8EA4D8D5\t0x273FB\n0x8EA4D8D6\t0x45E5\n0x8EA4D8D7\t0x45E0\n0x8EA4D8D8\t0x45E3\n0x8EA4D8D9\t0x273F8\n0x8EA4D8DA\t0x27410\n0x8EA4D8DB\t0x2741D\n0x8EA4D8DC\t0x273FF\n0x8EA4D8DD\t0x2740B\n0x8EA4D8DE\t0x27404\n0x8EA4D8DF\t0x45EA\n0x8EA4D8E0\t0x273FE\n0x8EA4D8E1\t0x275FF\n0x8EA4D8E2\t0x893A\n0x8EA4D8E3\t0x4654\n0x8EA4D8E4\t0x4658\n0x8EA4D8E5\t0x465C\n0x8EA4D8E6\t0x27723\n0x8EA4D8E7\t0x4655\n0x8EA4D8E8\t0x468B\n0x8EA4D8E9\t0x468C\n0x8EA4D8EA\t0x46A6\n0x8EA4D8EB\t0x46A5\n0x8EA4D8EC\t0x2792A\n0x8EA4D8ED\t0x27AA0\n0x8EA4D8EE\t0x27A98\n0x8EA4D8EF\t0x27A9C\n0x8EA4D8F0\t0x46FF\n0x8EA4D8F1\t0x27A9E\n0x8EA4D8F2\t0x27AA6\n0x8EA4D8F3\t0x27AB5\n0x8EA4D8F4\t0x27AB0\n0x8EA4D8F5\t0x4730\n0x8EA4D8F6\t0x4740\n0x8EA4D8F7\t0x4741\n0x8EA4D8F8\t0x27CF9\n0x8EA4D8F9\t0x27CF5\n0x8EA4D8FA\t0x4786\n0x8EA4D8FB\t0x27DD2\n0x8EA4D8FC\t0x47BF\n0x8EA4D8FD\t0x47BD\n0x8EA4D8FE\t0x27F50\n0x8EA4D9A1\t0x27F4E\n0x8EA4D9A2\t0x27F4B\n0x8EA4D9A3\t0x27F52\n0x8EA4D9A4\t0x27F4D\n0x8EA4D9A5\t0x47BE\n0x8EA4D9A6\t0x4819\n0x8EA4D9A7\t0x280E4\n0x8EA4D9A8\t0x481C\n0x8EA4D9A9\t0x280DA\n0x8EA4D9AA\t0x481B\n0x8EA4D9AB\t0x4817\n0x8EA4D9AC\t0x4818\n0x8EA4D9AD\t0x8E51\n0x8EA4D9AE\t0x280DF\n0x8EA4D9AF\t0x280E8\n0x8EA4D9B0\t0x483D\n0x8EA4D9B1\t0x486A\n0x8EA4D9B2\t0x4866\n0x8EA4D9B3\t0x28370\n0x8EA4D9B4\t0x28372\n0x8EA4D9B5\t0x4867\n0x8EA4D9B6\t0x28377\n0x8EA4D9B7\t0x4868\n0x8EA4D9B8\t0x48AD\n0x8EA4D9B9\t0x48AE\n0x8EA4D9BA\t0x285E6\n0x8EA4D9BB\t0x287AA\n0x8EA4D9BC\t0x48D6\n0x8EA4D9BD\t0x4909\n0x8EA4D9BE\t0x2888C\n0x8EA4D9BF\t0x9198\n0x8EA4D9C0\t0x28889\n0x8EA4D9C1\t0x490C\n0x8EA4D9C2\t0x490A\n0x8EA4D9C3\t0x28A32\n0x8EA4D9C4\t0x493B\n0x8EA4D9C5\t0x493A\n0x8EA4D9C6\t0x9384\n0x8EA4D9C7\t0x9381\n0x8EA4D9C8\t0x28A7A\n0x8EA4D9C9\t0x936F\n0x8EA4D9CA\t0x28C9E\n0x8EA4D9CB\t0x28CA0\n0x8EA4D9CC\t0x28D70\n0x8EA4D9CD\t0x49AF\n0x8EA4D9CE\t0x49AA\n0x8EA4D9CF\t0x49AB\n0x8EA4D9D0\t0x28D6E\n0x8EA4D9D1\t0x28D66\n0x8EA4D9D2\t0x49B1\n0x8EA4D9D3\t0x28D65\n0x8EA4D9D4\t0x49AC\n0x8EA4D9D5\t0x49EC\n0x8EA4D9D6\t0x28F7F\n0x8EA4D9D7\t0x28FE0\n0x8EA4D9D8\t0x4A01\n0x8EA4D9D9\t0x28FFF\n0x8EA4D9DA\t0x290F6\n0x8EA4D9DB\t0x290F7\n0x8EA4D9DC\t0x290F5\n0x8EA4D9DD\t0x4A23\n0x8EA4D9DE\t0x290FC\n0x8EA4D9DF\t0x4A24\n0x8EA4D9E0\t0x4A1E\n0x8EA4D9E1\t0x290F9\n0x8EA4D9E2\t0x4A4A\n0x8EA4D9E3\t0x4A65\n0x8EA4D9E4\t0x4A6A\n0x8EA4D9E5\t0x292CA\n0x8EA4D9E6\t0x292C3\n0x8EA4D9E7\t0x292C6\n0x8EA4D9E8\t0x4A69\n0x8EA4D9E9\t0x293B8\n0x8EA4D9EA\t0x293BD\n0x8EA4D9EB\t0x4A95\n0x8EA4D9EC\t0x293BC\n0x8EA4D9ED\t0x29405\n0x8EA4D9EE\t0x294E0\n0x8EA4D9EF\t0x294E9\n0x8EA4D9F0\t0x9842\n0x8EA4D9F1\t0x294DF\n0x8EA4D9F2\t0x294EC\n0x8EA4D9F3\t0x4ACC\n0x8EA4D9F4\t0x294E5\n0x8EA4D9F5\t0x294DE\n0x8EA4D9F6\t0x2FA00\n0x8EA4D9F7\t0x4ACF\n0x8EA4D9F8\t0x294F0\n0x8EA4D9F9\t0x294E3\n0x8EA4D9FA\t0x4B0F\n0x8EA4D9FB\t0x295EC\n0x8EA4D9FC\t0x4B0E\n0x8EA4D9FD\t0x4B0B\n0x8EA4D9FE\t0x4B10\n0x8EA4DAA1\t0x4B0D\n0x8EA4DAA2\t0x4B0C\n0x8EA4DAA3\t0x295F2\n0x8EA4DAA4\t0x295EF\n0x8EA4DAA5\t0x295E9\n0x8EA4DAA6\t0x296FB\n0x8EA4DAA7\t0x4B46\n0x8EA4DAA8\t0x4B48\n0x8EA4DAA9\t0x9937\n0x8EA4DAAA\t0x4B49\n0x8EA4DAAB\t0x29737\n0x8EA4DAAC\t0x298DE\n0x8EA4DAAD\t0x4B91\n0x8EA4DAAE\t0x4B8E\n0x8EA4DAAF\t0x298DA\n0x8EA4DAB0\t0x4BD8\n0x8EA4DAB1\t0x4BD6\n0x8EA4DAB2\t0x29A4B\n0x8EA4DAB3\t0x4BDA\n0x8EA4DAB4\t0x29A49\n0x8EA4DAB5\t0x4BD7\n0x8EA4DAB6\t0x29AD5\n0x8EA4DAB7\t0x9AFF\n0x8EA4DAB8\t0x4BF9\n0x8EA4DAB9\t0x29B52\n0x8EA4DABA\t0x29B47\n0x8EA4DABB\t0x4BFC\n0x8EA4DABC\t0x29B48\n0x8EA4DABD\t0x29CCC\n0x8EA4DABE\t0x29CD0\n0x8EA4DABF\t0x9BA9\n0x8EA4DAC0\t0x4C4A\n0x8EA4DAC1\t0x9BA7\n0x8EA4DAC2\t0x4C4E\n0x8EA4DAC3\t0x9BB3\n0x8EA4DAC4\t0x9BAC\n0x8EA4DAC5\t0x9BB0\n0x8EA4DAC6\t0x29D86\n0x8EA4DAC7\t0x29DA7\n0x8EA4DAC8\t0x29DA3\n0x8EA4DAC9\t0x9B9C\n0x8EA4DACA\t0x29DB6\n0x8EA4DACB\t0x29DAD\n0x8EA4DACC\t0x2A013\n0x8EA4DACD\t0x9D3C\n0x8EA4DACE\t0x9D1C\n0x8EA4DACF\t0x9D3A\n0x8EA4DAD0\t0x4CD3\n0x8EA4DAD1\t0x4CCD\n0x8EA4DAD2\t0x4CD1\n0x8EA4DAD3\t0x2A017\n0x8EA4DAD4\t0x2A022\n0x8EA4DAD5\t0x9D32\n0x8EA4DAD6\t0x9D34\n0x8EA4DAD7\t0x2A049\n0x8EA4DAD8\t0x2A026\n0x8EA4DAD9\t0x2FA0C\n0x8EA4DADA\t0x2A03C\n0x8EA4DADB\t0x2A028\n0x8EA4DADC\t0x2A2A8\n0x8EA4DADD\t0x9EC7\n0x8EA4DADE\t0x2A3FB\n0x8EA4DADF\t0x4D62\n0x8EA4DAE0\t0x2A432\n0x8EA4DAE1\t0x2A4D6\n0x8EA4DAE2\t0x2A548\n0x8EA4DAE3\t0x4D83\n0x8EA4DAE4\t0x9F3F\n0x8EA4DAE5\t0x2A5C6\n0x8EA4DAE6\t0x4D92\n0x8EA4DAE7\t0x349F\n0x8EA4DAE8\t0x34A0\n0x8EA4DAE9\t0x20425\n0x8EA4DAEA\t0x20426\n0x8EA4DAEB\t0x20424\n0x8EA4DAEC\t0x20433\n0x8EA4DAED\t0x20570\n0x8EA4DAEE\t0x3527\n0x8EA4DAEF\t0x20B90\n0x8EA4DAF0\t0x360B\n0x8EA4DAF1\t0x21095\n0x8EA4DAF2\t0x210A1\n0x8EA4DAF3\t0x21092\n0x8EA4DAF4\t0x2108F\n0x8EA4DAF5\t0x2109F\n0x8EA4DAF6\t0x21096\n0x8EA4DAF7\t0x21098\n0x8EA4DAF8\t0x2109D\n0x8EA4DAF9\t0x210A0\n0x8EA4DAFA\t0x368D\n0x8EA4DAFB\t0x21697\n0x8EA4DAFC\t0x218EB\n0x8EA4DAFD\t0x3770\n0x8EA4DAFE\t0x21F87\n0x8EA4DBA1\t0x5EEB\n0x8EA4DBA2\t0x22432\n0x8EA4DBA3\t0x399A\n0x8EA4DBA4\t0x399F\n0x8EA4DBA5\t0x399D\n0x8EA4DBA6\t0x228D8\n0x8EA4DBA7\t0x228FB\n0x8EA4DBA8\t0x22906\n0x8EA4DBA9\t0x399B\n0x8EA4DBAA\t0x228D1\n0x8EA4DBAB\t0x61D5\n0x8EA4DBAC\t0x2F8B0\n0x8EA4DBAD\t0x3A60\n0x8EA4DBAE\t0x3A64\n0x8EA4DBAF\t0x3A69\n0x8EA4DBB0\t0x3A63\n0x8EA4DBB1\t0x3A67\n0x8EA4DBB2\t0x3A62\n0x8EA4DBB3\t0x22DF6\n0x8EA4DBB4\t0x22E04\n0x8EA4DBB5\t0x22DFE\n0x8EA4DBB6\t0x6502\n0x8EA4DBB7\t0x22DFF\n0x8EA4DBB8\t0x22DF7\n0x8EA4DBB9\t0x23018\n0x8EA4DBBA\t0x3AAC\n0x8EA4DBBB\t0x23014\n0x8EA4DBBC\t0x230CD\n0x8EA4DBBD\t0x23120\n0x8EA4DBBE\t0x232DE\n0x8EA4DBBF\t0x3B26\n0x8EA4DBC0\t0x3B23\n0x8EA4DBC1\t0x3B25\n0x8EA4DBC2\t0x23745\n0x8EA4DBC3\t0x23753\n0x8EA4DBC4\t0x3BF8\n0x8EA4DBC5\t0x2374B\n0x8EA4DBC6\t0x23755\n0x8EA4DBC7\t0x23741\n0x8EA4DBC8\t0x3BF7\n0x8EA4DBC9\t0x3BFB\n0x8EA4DBCA\t0x3BFA\n0x8EA4DBCB\t0x2375C\n0x8EA4DBCC\t0x23754\n0x8EA4DBCD\t0x23A71\n0x8EA4DBCE\t0x23AD0\n0x8EA4DBCF\t0x3CB0\n0x8EA4DBD0\t0x3CAF\n0x8EA4DBD1\t0x23C53\n0x8EA4DBD2\t0x24029\n0x8EA4DBD3\t0x2407E\n0x8EA4DBD4\t0x3D7E\n0x8EA4DBD5\t0x24079\n0x8EA4DBD6\t0x3D7D\n0x8EA4DBD7\t0x3D80\n0x8EA4DBD8\t0x24070\n0x8EA4DBD9\t0x2406A\n0x8EA4DBDA\t0x3D7F\n0x8EA4DBDB\t0x3D86\n0x8EA4DBDC\t0x24085\n0x8EA4DBDD\t0x24064\n0x8EA4DBDE\t0x7012\n0x8EA4DBDF\t0x24078\n0x8EA4DBE0\t0x3D81\n0x8EA4DBE1\t0x24432\n0x8EA4DBE2\t0x24427\n0x8EA4DBE3\t0x2442F\n0x8EA4DBE4\t0x3E24\n0x8EA4DBE5\t0x3E58\n0x8EA4DBE6\t0x3E57\n0x8EA4DBE7\t0x3EA0\n0x8EA4DBE8\t0x248BA\n0x8EA4DBE9\t0x3EFE\n0x8EA4DBEA\t0x24A71\n0x8EA4DBEB\t0x24A8C\n0x8EA4DBEC\t0x3F15\n0x8EA4DBED\t0x24B1A\n0x8EA4DBEE\t0x3F47\n0x8EA4DBEF\t0x3F46\n0x8EA4DBF0\t0x24B98\n0x8EA4DBF1\t0x24CE4\n0x8EA4DBF2\t0x3F6B\n0x8EA4DBF3\t0x3F6C\n0x8EA4DBF4\t0x7585\n0x8EA4DBF5\t0x7654\n0x8EA4DBF6\t0x24EC2\n0x8EA4DBF7\t0x3FCC\n0x8EA4DBF8\t0x24EBA\n0x8EA4DBF9\t0x7655\n0x8EA4DBFA\t0x24EC8\n0x8EA4DBFB\t0x3FCB\n0x8EA4DBFC\t0x76A7\n0x8EA4DBFD\t0x76A8\n0x8EA4DBFE\t0x3FF9\n0x8EA4DCA1\t0x250B9\n0x8EA4DCA2\t0x250B8\n0x8EA4DCA3\t0x250A5\n0x8EA4DCA4\t0x252E2\n0x8EA4DCA5\t0x4078\n0x8EA4DCA6\t0x407A\n0x8EA4DCA7\t0x4075\n0x8EA4DCA8\t0x252D9\n0x8EA4DCA9\t0x4076\n0x8EA4DCAA\t0x4077\n0x8EA4DCAB\t0x252AC\n0x8EA4DCAC\t0x252DD\n0x8EA4DCAD\t0x40EA\n0x8EA4DCAE\t0x40EE\n0x8EA4DCAF\t0x40ED\n0x8EA4DCB0\t0x2559D\n0x8EA4DCB1\t0x40EC\n0x8EA4DCB2\t0x790F\n0x8EA4DCB3\t0x25711\n0x8EA4DCB4\t0x25703\n0x8EA4DCB5\t0x4184\n0x8EA4DCB6\t0x4185\n0x8EA4DCB7\t0x4183\n0x8EA4DCB8\t0x258EE\n0x8EA4DCB9\t0x41BC\n0x8EA4DCBA\t0x41BD\n0x8EA4DCBB\t0x41D4\n0x8EA4DCBC\t0x25CA4\n0x8EA4DCBD\t0x25CD8\n0x8EA4DCBE\t0x25CDD\n0x8EA4DCBF\t0x25CDE\n0x8EA4DCC0\t0x4255\n0x8EA4DCC1\t0x25CE7\n0x8EA4DCC2\t0x4250\n0x8EA4DCC3\t0x424C\n0x8EA4DCC4\t0x4248\n0x8EA4DCC5\t0x25CD4\n0x8EA4DCC6\t0x4253\n0x8EA4DCC7\t0x25CCE\n0x8EA4DCC8\t0x4257\n0x8EA4DCC9\t0x4254\n0x8EA4DCCA\t0x424E\n0x8EA4DCCB\t0x424A\n0x8EA4DCCC\t0x4251\n0x8EA4DCCD\t0x25CF1\n0x8EA4DCCE\t0x25CD3\n0x8EA4DCCF\t0x4249\n0x8EA4DCD0\t0x424B\n0x8EA4DCD1\t0x4263\n0x8EA4DCD2\t0x25CCA\n0x8EA4DCD3\t0x25CE9\n0x8EA4DCD4\t0x42A7\n0x8EA4DCD5\t0x42A6\n0x8EA4DCD6\t0x42A4\n0x8EA4DCD7\t0x25F1A\n0x8EA4DCD8\t0x25F41\n0x8EA4DCD9\t0x2F968\n0x8EA4DCDA\t0x7CE4\n0x8EA4DCDB\t0x7CE5\n0x8EA4DCDC\t0x2613D\n0x8EA4DCDD\t0x26140\n0x8EA4DCDE\t0x7E65\n0x8EA4DCDF\t0x7E4E\n0x8EA4DCE0\t0x4317\n0x8EA4DCE1\t0x26143\n0x8EA4DCE2\t0x4316\n0x8EA4DCE3\t0x2613F\n0x8EA4DCE4\t0x2613C\n0x8EA4DCE5\t0x4363\n0x8EA4DCE6\t0x26321\n0x8EA4DCE7\t0x26320\n0x8EA4DCE8\t0x7F82\n0x8EA4DCE9\t0x263C6\n0x8EA4DCEA\t0x437B\n0x8EA4DCEB\t0x437C\n0x8EA4DCEC\t0x263D1\n0x8EA4DCED\t0x263CA\n0x8EA4DCEE\t0x2648E\n0x8EA4DCEF\t0x26491\n0x8EA4DCF0\t0x43B0\n0x8EA4DCF1\t0x802D\n0x8EA4DCF2\t0x265E3\n0x8EA4DCF3\t0x26888\n0x8EA4DCF4\t0x4442\n0x8EA4DCF5\t0x26870\n0x8EA4DCF6\t0x4444\n0x8EA4DCF7\t0x2699D\n0x8EA4DCF8\t0x26A9D\n0x8EA4DCF9\t0x26A91\n0x8EA4DCFA\t0x26A98\n0x8EA4DCFB\t0x26A99\n0x8EA4DCFC\t0x4488\n0x8EA4DCFD\t0x448F\n0x8EA4DCFE\t0x4553\n0x8EA4DDA1\t0x455B\n0x8EA4DDA2\t0x26FBF\n0x8EA4DDA3\t0x4559\n0x8EA4DDA4\t0x26FAE\n0x8EA4DDA5\t0x26FB1\n0x8EA4DDA6\t0x26FCC\n0x8EA4DDA7\t0x27004\n0x8EA4DDA8\t0x85CA\n0x8EA4DDA9\t0x27016\n0x8EA4DDAA\t0x26FCD\n0x8EA4DDAB\t0x4554\n0x8EA4DDAC\t0x85BC\n0x8EA4DDAD\t0x26FE0\n0x8EA4DDAE\t0x26FCB\n0x8EA4DDAF\t0x26FD4\n0x8EA4DDB0\t0x26FC9\n0x8EA4DDB1\t0x271FF\n0x8EA4DDB2\t0x4599\n0x8EA4DDB3\t0x271FD\n0x8EA4DDB4\t0x27457\n0x8EA4DDB5\t0x27452\n0x8EA4DDB6\t0x27450\n0x8EA4DDB7\t0x27445\n0x8EA4DDB8\t0x2744D\n0x8EA4DDB9\t0x45F1\n0x8EA4DDBA\t0x27453\n0x8EA4DDBB\t0x45EF\n0x8EA4DDBC\t0x27482\n0x8EA4DDBD\t0x27444\n0x8EA4DDBE\t0x275CE\n0x8EA4DDBF\t0x275CF\n0x8EA4DDC0\t0x275D2\n0x8EA4DDC1\t0x27602\n0x8EA4DDC2\t0x2774F\n0x8EA4DDC3\t0x27758\n0x8EA4DDC4\t0x4662\n0x8EA4DDC5\t0x27743\n0x8EA4DDC6\t0x4663\n0x8EA4DDC7\t0x27752\n0x8EA4DDC8\t0x4660\n0x8EA4DDC9\t0x4661\n0x8EA4DDCA\t0x465F\n0x8EA4DDCB\t0x27749\n0x8EA4DDCC\t0x27753\n0x8EA4DDCD\t0x2774D\n0x8EA4DDCE\t0x468D\n0x8EA4DDCF\t0x27884\n0x8EA4DDD0\t0x468E\n0x8EA4DDD1\t0x27883\n0x8EA4DDD2\t0x27932\n0x8EA4DDD3\t0x27AE2\n0x8EA4DDD4\t0x4709\n0x8EA4DDD5\t0x27AE4\n0x8EA4DDD6\t0x27AD3\n0x8EA4DDD7\t0x4705\n0x8EA4DDD8\t0x27AD5\n0x8EA4DDD9\t0x27ADD\n0x8EA4DDDA\t0x4703\n0x8EA4DDDB\t0x4706\n0x8EA4DDDC\t0x27AEC\n0x8EA4DDDD\t0x27AE6\n0x8EA4DDDE\t0x27AD2\n0x8EA4DDDF\t0x27AFA\n0x8EA4DDE0\t0x27ADA\n0x8EA4DDE1\t0x4731\n0x8EA4DDE2\t0x27C06\n0x8EA4DDE3\t0x27C04\n0x8EA4DDE4\t0x474F\n0x8EA4DDE5\t0x27C7B\n0x8EA4DDE6\t0x27D04\n0x8EA4DDE7\t0x27D02\n0x8EA4DDE8\t0x4766\n0x8EA4DDE9\t0x8CFF\n0x8EA4DDEA\t0x47C4\n0x8EA4DDEB\t0x27F60\n0x8EA4DDEC\t0x47C3\n0x8EA4DDED\t0x47C1\n0x8EA4DDEE\t0x47C5\n0x8EA4DDEF\t0x28107\n0x8EA4DDF0\t0x28105\n0x8EA4DDF1\t0x2810C\n0x8EA4DDF2\t0x4821\n0x8EA4DDF3\t0x2815A\n0x8EA4DDF4\t0x481F\n0x8EA4DDF5\t0x4822\n0x8EA4DDF6\t0x2811A\n0x8EA4DDF7\t0x4827\n0x8EA4DDF8\t0x4820\n0x8EA4DDF9\t0x2838A\n0x8EA4DDFA\t0x486D\n0x8EA4DDFB\t0x486C\n0x8EA4DDFC\t0x486B\n0x8EA4DDFD\t0x486F\n0x8EA4DDFE\t0x4870\n0x8EA4DEA1\t0x2838C\n0x8EA4DEA2\t0x28609\n0x8EA4DEA3\t0x288A6\n0x8EA4DEA4\t0x91A6\n0x8EA4DEA5\t0x288AC\n0x8EA4DEA6\t0x288A9\n0x8EA4DEA7\t0x4942\n0x8EA4DEA8\t0x28A8B\n0x8EA4DEA9\t0x93B6\n0x8EA4DEAA\t0x28A8C\n0x8EA4DEAB\t0x4944\n0x8EA4DEAC\t0x4940\n0x8EA4DEAD\t0x28A88\n0x8EA4DEAE\t0x28A89\n0x8EA4DEAF\t0x493F\n0x8EA4DEB0\t0x28A93\n0x8EA4DEB1\t0x93AB\n0x8EA4DEB2\t0x498B\n0x8EA4DEB3\t0x28D83\n0x8EA4DEB4\t0x28F4F\n0x8EA4DEB5\t0x4A25\n0x8EA4DEB6\t0x4A28\n0x8EA4DEB7\t0x29120\n0x8EA4DEB8\t0x9721\n0x8EA4DEB9\t0x29236\n0x8EA4DEBA\t0x292E2\n0x8EA4DEBB\t0x4A75\n0x8EA4DEBC\t0x4A72\n0x8EA4DEBD\t0x292EE\n0x8EA4DEBE\t0x4A6F\n0x8EA4DEBF\t0x292E7\n0x8EA4DEC0\t0x292E9\n0x8EA4DEC1\t0x4A76\n0x8EA4DEC2\t0x4A71\n0x8EA4DEC3\t0x97A7\n0x8EA4DEC4\t0x292DF\n0x8EA4DEC5\t0x4A97\n0x8EA4DEC6\t0x293C7\n0x8EA4DEC7\t0x4AD7\n0x8EA4DEC8\t0x29509\n0x8EA4DEC9\t0x4AD6\n0x8EA4DECA\t0x29501\n0x8EA4DECB\t0x4AD8\n0x8EA4DECC\t0x4ADC\n0x8EA4DECD\t0x4ADB\n0x8EA4DECE\t0x4AD4\n0x8EA4DECF\t0x983E\n0x8EA4DED0\t0x4B13\n0x8EA4DED1\t0x4B11\n0x8EA4DED2\t0x4B14\n0x8EA4DED3\t0x29605\n0x8EA4DED4\t0x2960C\n0x8EA4DED5\t0x29778\n0x8EA4DED6\t0x2975D\n0x8EA4DED7\t0x4B51\n0x8EA4DED8\t0x4B50\n0x8EA4DED9\t0x4B53\n0x8EA4DEDA\t0x4B54\n0x8EA4DEDB\t0x4B52\n0x8EA4DEDC\t0x2975E\n0x8EA4DEDD\t0x29760\n0x8EA4DEDE\t0x29767\n0x8EA4DEDF\t0x4B6D\n0x8EA4DEE0\t0x2FA05\n0x8EA4DEE1\t0x298F4\n0x8EA4DEE2\t0x4B95\n0x8EA4DEE3\t0x4B99\n0x8EA4DEE4\t0x298F1\n0x8EA4DEE5\t0x4B9A\n0x8EA4DEE6\t0x298FA\n0x8EA4DEE7\t0x4B93\n0x8EA4DEE8\t0x4B97\n0x8EA4DEE9\t0x298F8\n0x8EA4DEEA\t0x298F9\n0x8EA4DEEB\t0x29909\n0x8EA4DEEC\t0x298FD\n0x8EA4DEED\t0x298F7\n0x8EA4DEEE\t0x4BDC\n0x8EA4DEEF\t0x29A59\n0x8EA4DEF0\t0x4BFD\n0x8EA4DEF1\t0x29B60\n0x8EA4DEF2\t0x29B68\n0x8EA4DEF3\t0x4BFE\n0x8EA4DEF4\t0x4C00\n0x8EA4DEF5\t0x4C02\n0x8EA4DEF6\t0x4C01\n0x8EA4DEF7\t0x4C03\n0x8EA4DEF8\t0x29B6A\n0x8EA4DEF9\t0x29C14\n0x8EA4DEFA\t0x29C3E\n0x8EA4DEFB\t0x29CE4\n0x8EA4DEFC\t0x4C27\n0x8EA4DEFD\t0x4C26\n0x8EA4DEFE\t0x4C24\n0x8EA4DFA1\t0x4C4C\n0x8EA4DFA2\t0x9BBC\n0x8EA4DFA3\t0x4C50\n0x8EA4DFA4\t0x4C55\n0x8EA4DFA5\t0x4C53\n0x8EA4DFA6\t0x9BB7\n0x8EA4DFA7\t0x4C52\n0x8EA4DFA8\t0x29DD2\n0x8EA4DFA9\t0x4C57\n0x8EA4DFAA\t0x9BBE\n0x8EA4DFAB\t0x4C58\n0x8EA4DFAC\t0x4CD6\n0x8EA4DFAD\t0x2A058\n0x8EA4DFAE\t0x2A050\n0x8EA4DFAF\t0x4CD4\n0x8EA4DFB0\t0x2A05C\n0x8EA4DFB1\t0x4CDA\n0x8EA4DFB2\t0x4CD9\n0x8EA4DFB3\t0x28119\n0x8EA4DFB4\t0x9D62\n0x8EA4DFB5\t0x4CD5\n0x8EA4DFB6\t0x4CE4\n0x8EA4DFB7\t0x2FA0E\n0x8EA4DFB8\t0x4CDC\n0x8EA4DFB9\t0x4D1B\n0x8EA4DFBA\t0x9E8F\n0x8EA4DFBB\t0x4D37\n0x8EA4DFBC\t0x4D36\n0x8EA4DFBD\t0x4D4B\n0x8EA4DFBE\t0x9ECB\n0x8EA4DFBF\t0x4D66\n0x8EA4DFC0\t0x4D76\n0x8EA4DFC1\t0x2A4DF\n0x8EA4DFC2\t0x4D7E\n0x8EA4DFC3\t0x4D7D\n0x8EA4DFC4\t0x4D7F\n0x8EA4DFC5\t0x4D84\n0x8EA4DFC6\t0x4D8B\n0x8EA4DFC7\t0x2A5D9\n0x8EA4DFC8\t0x4D94\n0x8EA4DFC9\t0x34A1\n0x8EA4DFCA\t0x3511\n0x8EA4DFCB\t0x20966\n0x8EA4DFCC\t0x3610\n0x8EA4DFCD\t0x56A9\n0x8EA4DFCE\t0x210E1\n0x8EA4DFCF\t0x210EF\n0x8EA4DFD0\t0x210E8\n0x8EA4DFD1\t0x21233\n0x8EA4DFD2\t0x5913\n0x8EA4DFD3\t0x218FE\n0x8EA4DFD4\t0x3732\n0x8EA4DFD5\t0x5BF4\n0x8EA4DFD6\t0x21AEF\n0x8EA4DFD7\t0x21AEC\n0x8EA4DFD8\t0x21CEC\n0x8EA4DFD9\t0x21F9C\n0x8EA4DFDA\t0x3820\n0x8EA4DFDB\t0x21F99\n0x8EA4DFDC\t0x22170\n0x8EA4DFDD\t0x2216E\n0x8EA4DFDE\t0x389D\n0x8EA4DFDF\t0x22441\n0x8EA4DFE0\t0x61EC\n0x8EA4DFE1\t0x61EF\n0x8EA4DFE2\t0x22902\n0x8EA4DFE3\t0x22901\n0x8EA4DFE4\t0x39A5\n0x8EA4DFE5\t0x22A1B\n0x8EA4DFE6\t0x22E23\n0x8EA4DFE7\t0x22E25\n0x8EA4DFE8\t0x22E24\n0x8EA4DFE9\t0x22E26\n0x8EA4DFEA\t0x22E33\n0x8EA4DFEB\t0x22E2F\n0x8EA4DFEC\t0x2308F\n0x8EA4DFED\t0x23356\n0x8EA4DFEE\t0x3C02\n0x8EA4DFEF\t0x3BFE\n0x8EA4DFF0\t0x3C01\n0x8EA4DFF1\t0x6AD6\n0x8EA4DFF2\t0x3C03\n0x8EA4DFF3\t0x3BFF\n0x8EA4DFF4\t0x23799\n0x8EA4DFF5\t0x3C04\n0x8EA4DFF6\t0x2F8ED\n0x8EA4DFF7\t0x3C4A\n0x8EA4DFF8\t0x23AD9\n0x8EA4DFF9\t0x3D87\n0x8EA4DFFA\t0x240B7\n0x8EA4DFFB\t0x3D84\n0x8EA4DFFC\t0x240B6\n0x8EA4DFFD\t0x3D85\n0x8EA4DFFE\t0x7209\n0x8EA4E0A1\t0x24454\n0x8EA4E0A2\t0x24457\n0x8EA4E0A3\t0x2447A\n0x8EA4E0A4\t0x3E59\n0x8EA4E0A5\t0x7379\n0x8EA4E0A6\t0x24A8E\n0x8EA4E0A7\t0x74C6\n0x8EA4E0A8\t0x24A90\n0x8EA4E0A9\t0x24AB9\n0x8EA4E0AA\t0x3F04\n0x8EA4E0AB\t0x3F49\n0x8EA4E0AC\t0x3F48\n0x8EA4E0AD\t0x24CEF\n0x8EA4E0AE\t0x3F6D\n0x8EA4E0AF\t0x3FD2\n0x8EA4E0B0\t0x3FD3\n0x8EA4E0B1\t0x24EE2\n0x8EA4E0B2\t0x3FD1\n0x8EA4E0B3\t0x24ED6\n0x8EA4E0B4\t0x24ED8\n0x8EA4E0B5\t0x24EDA\n0x8EA4E0B6\t0x24EDE\n0x8EA4E0B7\t0x3FE7\n0x8EA4E0B8\t0x400A\n0x8EA4E0B9\t0x77C3\n0x8EA4E0BA\t0x25308\n0x8EA4E0BB\t0x25304\n0x8EA4E0BC\t0x2530A\n0x8EA4E0BD\t0x2530B\n0x8EA4E0BE\t0x25302\n0x8EA4E0BF\t0x40F0\n0x8EA4E0C0\t0x255AA\n0x8EA4E0C1\t0x255C1\n0x8EA4E0C2\t0x791F\n0x8EA4E0C3\t0x258D7\n0x8EA4E0C4\t0x258D9\n0x8EA4E0C5\t0x7A65\n0x8EA4E0C6\t0x258DE\n0x8EA4E0C7\t0x258DA\n0x8EA4E0C8\t0x41BE\n0x8EA4E0C9\t0x41BF\n0x8EA4E0CA\t0x25A2A\n0x8EA4E0CB\t0x7AC6\n0x8EA4E0CC\t0x7C3A\n0x8EA4E0CD\t0x25D31\n0x8EA4E0CE\t0x7C36\n0x8EA4E0CF\t0x25D2B\n0x8EA4E0D0\t0x25D2C\n0x8EA4E0D1\t0x25D29\n0x8EA4E0D2\t0x25D2E\n0x8EA4E0D3\t0x425E\n0x8EA4E0D4\t0x25D27\n0x8EA4E0D5\t0x25D28\n0x8EA4E0D6\t0x425B\n0x8EA4E0D7\t0x25D5F\n0x8EA4E0D8\t0x25D30\n0x8EA4E0D9\t0x25D24\n0x8EA4E0DA\t0x7CEB\n0x8EA4E0DB\t0x42AB\n0x8EA4E0DC\t0x25F3A\n0x8EA4E0DD\t0x42AC\n0x8EA4E0DE\t0x25F39\n0x8EA4E0DF\t0x25F40\n0x8EA4E0E0\t0x26180\n0x8EA4E0E1\t0x26184\n0x8EA4E0E2\t0x431F\n0x8EA4E0E3\t0x431D\n0x8EA4E0E4\t0x26175\n0x8EA4E0E5\t0x26176\n0x8EA4E0E6\t0x431C\n0x8EA4E0E7\t0x2617C\n0x8EA4E0E8\t0x431E\n0x8EA4E0E9\t0x26178\n0x8EA4E0EA\t0x2619B\n0x8EA4E0EB\t0x2617E\n0x8EA4E0EC\t0x2625A\n0x8EA4E0ED\t0x4364\n0x8EA4E0EE\t0x2632C\n0x8EA4E0EF\t0x7F84\n0x8EA4E0F0\t0x2649C\n0x8EA4E0F1\t0x26847\n0x8EA4E0F2\t0x2688A\n0x8EA4E0F3\t0x4448\n0x8EA4E0F4\t0x4447\n0x8EA4E0F5\t0x26927\n0x8EA4E0F6\t0x2704A\n0x8EA4E0F7\t0x455E\n0x8EA4E0F8\t0x4561\n0x8EA4E0F9\t0x27027\n0x8EA4E0FA\t0x85E0\n0x8EA4E0FB\t0x85F3\n0x8EA4E0FC\t0x2702E\n0x8EA4E0FD\t0x27026\n0x8EA4E0FE\t0x27208\n0x8EA4E1A1\t0x45F7\n0x8EA4E1A2\t0x274BD\n0x8EA4E1A3\t0x27496\n0x8EA4E1A4\t0x45F4\n0x8EA4E1A5\t0x45F8\n0x8EA4E1A6\t0x881E\n0x8EA4E1A7\t0x274BE\n0x8EA4E1A8\t0x2748E\n0x8EA4E1A9\t0x27774\n0x8EA4E1AA\t0x4664\n0x8EA4E1AB\t0x27780\n0x8EA4E1AC\t0x4692\n0x8EA4E1AD\t0x468F\n0x8EA4E1AE\t0x4690\n0x8EA4E1AF\t0x89B4\n0x8EA4E1B0\t0x4693\n0x8EA4E1B1\t0x46A8\n0x8EA4E1B2\t0x2793C\n0x8EA4E1B3\t0x2793D\n0x8EA4E1B4\t0x46A9\n0x8EA4E1B5\t0x2793A\n0x8EA4E1B6\t0x27942\n0x8EA4E1B7\t0x89F9\n0x8EA4E1B8\t0x27B24\n0x8EA4E1B9\t0x27B06\n0x8EA4E1BA\t0x8B44\n0x8EA4E1BB\t0x470E\n0x8EA4E1BC\t0x27B15\n0x8EA4E1BD\t0x470F\n0x8EA4E1BE\t0x27B02\n0x8EA4E1BF\t0x27B0C\n0x8EA4E1C0\t0x470B\n0x8EA4E1C1\t0x27B08\n0x8EA4E1C2\t0x27B0A\n0x8EA4E1C3\t0x27B05\n0x8EA4E1C4\t0x27B1C\n0x8EA4E1C5\t0x4710\n0x8EA4E1C6\t0x4751\n0x8EA4E1C7\t0x27C82\n0x8EA4E1C8\t0x4750\n0x8EA4E1C9\t0x27C86\n0x8EA4E1CA\t0x4763\n0x8EA4E1CB\t0x27E03\n0x8EA4E1CC\t0x27F7B\n0x8EA4E1CD\t0x47C7\n0x8EA4E1CE\t0x27F7A\n0x8EA4E1CF\t0x8E71\n0x8EA4E1D0\t0x4824\n0x8EA4E1D1\t0x4826\n0x8EA4E1D2\t0x8E6E\n0x8EA4E1D3\t0x28180\n0x8EA4E1D4\t0x8E79\n0x8EA4E1D5\t0x28158\n0x8EA4E1D6\t0x8EC4\n0x8EA4E1D7\t0x4874\n0x8EA4E1D8\t0x4873\n0x8EA4E1D9\t0x4872\n0x8EA4E1DA\t0x283AA\n0x8EA4E1DB\t0x283AB\n0x8EA4E1DC\t0x28436\n0x8EA4E1DD\t0x2844A\n0x8EA4E1DE\t0x48B1\n0x8EA4E1DF\t0x908C\n0x8EA4E1E0\t0x287D6\n0x8EA4E1E1\t0x490E\n0x8EA4E1E2\t0x4911\n0x8EA4E1E3\t0x4910\n0x8EA4E1E4\t0x490F\n0x8EA4E1E5\t0x4912\n0x8EA4E1E6\t0x4949\n0x8EA4E1E7\t0x93C9\n0x8EA4E1E8\t0x494F\n0x8EA4E1E9\t0x494D\n0x8EA4E1EA\t0x28B03\n0x8EA4E1EB\t0x28ACF\n0x8EA4E1EC\t0x4955\n0x8EA4E1ED\t0x28D9F\n0x8EA4E1EE\t0x28DA2\n0x8EA4E1EF\t0x2902A\n0x8EA4E1F0\t0x2902F\n0x8EA4E1F1\t0x29144\n0x8EA4E1F2\t0x29140\n0x8EA4E1F3\t0x4A2C\n0x8EA4E1F4\t0x4A2B\n0x8EA4E1F5\t0x29311\n0x8EA4E1F6\t0x2930F\n0x8EA4E1F7\t0x4A79\n0x8EA4E1F8\t0x2930D\n0x8EA4E1F9\t0x29307\n0x8EA4E1FA\t0x29303\n0x8EA4E1FB\t0x4A7A\n0x8EA4E1FC\t0x97B0\n0x8EA4E1FD\t0x4A99\n0x8EA4E1FE\t0x4A9A\n0x8EA4E2A1\t0x29435\n0x8EA4E2A2\t0x4AAE\n0x8EA4E2A3\t0x4AAF\n0x8EA4E2A4\t0x29504\n0x8EA4E2A5\t0x4AE4\n0x8EA4E2A6\t0x4AE1\n0x8EA4E2A7\t0x4ADE\n0x8EA4E2A8\t0x4AE6\n0x8EA4E2A9\t0x4ADF\n0x8EA4E2AA\t0x29526\n0x8EA4E2AB\t0x4AE7\n0x8EA4E2AC\t0x4AE2\n0x8EA4E2AD\t0x4AE0\n0x8EA4E2AE\t0x2951E\n0x8EA4E2AF\t0x4AE5\n0x8EA4E2B0\t0x985A\n0x8EA4E2B1\t0x2960E\n0x8EA4E2B2\t0x4B18\n0x8EA4E2B3\t0x2961D\n0x8EA4E2B4\t0x2961E\n0x8EA4E2B5\t0x2961F\n0x8EA4E2B6\t0x4B56\n0x8EA4E2B7\t0x29788\n0x8EA4E2B8\t0x9946\n0x8EA4E2B9\t0x2978D\n0x8EA4E2BA\t0x29791\n0x8EA4E2BB\t0x29780\n0x8EA4E2BC\t0x4B6E\n0x8EA4E2BD\t0x29854\n0x8EA4E2BE\t0x29855\n0x8EA4E2BF\t0x4B9D\n0x8EA4E2C0\t0x4BA0\n0x8EA4E2C1\t0x4B9C\n0x8EA4E2C2\t0x29925\n0x8EA4E2C3\t0x2991A\n0x8EA4E2C4\t0x4BA1\n0x8EA4E2C5\t0x4BA2\n0x8EA4E2C6\t0x4B9F\n0x8EA4E2C7\t0x4BDF\n0x8EA4E2C8\t0x4BDE\n0x8EA4E2C9\t0x9AC3\n0x8EA4E2CA\t0x4BEA\n0x8EA4E2CB\t0x29B88\n0x8EA4E2CC\t0x4C06\n0x8EA4E2CD\t0x29B7A\n0x8EA4E2CE\t0x4C04\n0x8EA4E2CF\t0x9B0F\n0x8EA4E2D0\t0x29B80\n0x8EA4E2D1\t0x29D1E\n0x8EA4E2D2\t0x29DFC\n0x8EA4E2D3\t0x29E25\n0x8EA4E2D4\t0x4C5F\n0x8EA4E2D5\t0x9BF4\n0x8EA4E2D6\t0x9BFA\n0x8EA4E2D7\t0x4C5C\n0x8EA4E2D8\t0x29E0B\n0x8EA4E2D9\t0x4C5E\n0x8EA4E2DA\t0x29E06\n0x8EA4E2DB\t0x29E04\n0x8EA4E2DC\t0x9BDD\n0x8EA4E2DD\t0x4C59\n0x8EA4E2DE\t0x29DF9\n0x8EA4E2DF\t0x29E00\n0x8EA4E2E0\t0x4C64\n0x8EA4E2E1\t0x4C5D\n0x8EA4E2E2\t0x4C62\n0x8EA4E2E3\t0x29E02\n0x8EA4E2E4\t0x4C65\n0x8EA4E2E5\t0x29E07\n0x8EA4E2E6\t0x9BED\n0x8EA4E2E7\t0x4C5B\n0x8EA4E2E8\t0x9BEF\n0x8EA4E2E9\t0x2A0B5\n0x8EA4E2EA\t0x4CDD\n0x8EA4E2EB\t0x2A087\n0x8EA4E2EC\t0x4CDF\n0x8EA4E2ED\t0x2A093\n0x8EA4E2EE\t0x2FA0F\n0x8EA4E2EF\t0x4CE2\n0x8EA4E2F0\t0x2A0BE\n0x8EA4E2F1\t0x2A266\n0x8EA4E2F2\t0x4D27\n0x8EA4E2F3\t0x2A2C7\n0x8EA4E2F4\t0x2A2CF\n0x8EA4E2F5\t0x9E96\n0x8EA4E2F6\t0x4D3A\n0x8EA4E2F7\t0x4D3C\n0x8EA4E2F8\t0x2A33D\n0x8EA4E2F9\t0x4D39\n0x8EA4E2FA\t0x2A33C\n0x8EA4E2FB\t0x2A347\n0x8EA4E2FC\t0x4D3D\n0x8EA4E2FD\t0x4D3B\n0x8EA4E2FE\t0x9EB3\n0x8EA4E3A1\t0x4D4C\n0x8EA4E3A2\t0x2A3C3\n0x8EA4E3A3\t0x4D68\n0x8EA4E3A4\t0x9EE2\n0x8EA4E3A5\t0x2A51B\n0x8EA4E3A6\t0x4D80\n0x8EA4E3A7\t0x4D85\n0x8EA4E3A8\t0x2A5C9\n0x8EA4E3A9\t0x4D95\n0x8EA4E3AA\t0x2A5DD\n0x8EA4E3AB\t0x4D96\n0x8EA4E3AC\t0x2A693\n0x8EA4E3AD\t0x9F8F\n0x8EA4E3AE\t0x2043D\n0x8EA4E3AF\t0x34A4\n0x8EA4E3B0\t0x3512\n0x8EA4E3B1\t0x56B1\n0x8EA4E3B2\t0x3625\n0x8EA4E3B3\t0x214E6\n0x8EA4E3B4\t0x5B41\n0x8EA4E3B5\t0x3737\n0x8EA4E3B6\t0x21AF7\n0x8EA4E3B7\t0x21FB0\n0x8EA4E3B8\t0x21FAE\n0x8EA4E3BA\t0x3868\n0x8EA4E3BB\t0x3867\n0x8EA4E3BC\t0x389E\n0x8EA4E3BD\t0x2259F\n0x8EA4E3BE\t0x2259E\n0x8EA4E3BF\t0x22930\n0x8EA4E3C0\t0x39AA\n0x8EA4E3C1\t0x2294F\n0x8EA4E3C2\t0x39A9\n0x8EA4E3C3\t0x39A4\n0x8EA4E3C4\t0x22927\n0x8EA4E3C5\t0x22951\n0x8EA4E3C6\t0x3A71\n0x8EA4E3C7\t0x3A6F\n0x8EA4E3C8\t0x22E51\n0x8EA4E3C9\t0x22E54\n0x8EA4E3CA\t0x22E56\n0x8EA4E3CB\t0x23027\n0x8EA4E3CC\t0x3AAD\n0x8EA4E3CD\t0x23024\n0x8EA4E3CE\t0x6AF6\n0x8EA4E3CF\t0x3C0C\n0x8EA4E3D0\t0x6AF2\n0x8EA4E3D1\t0x3C0B\n0x8EA4E3D2\t0x237EC\n0x8EA4E3D3\t0x237C4\n0x8EA4E3D4\t0x3C0F\n0x8EA4E3D5\t0x3C79\n0x8EA4E3D6\t0x240F8\n0x8EA4E3D7\t0x240F6\n0x8EA4E3D8\t0x240F7\n0x8EA4E3D9\t0x240ED\n0x8EA4E3DA\t0x3D8D\n0x8EA4E3DB\t0x3D8F\n0x8EA4E3DC\t0x240F4\n0x8EA4E3DD\t0x240EF\n0x8EA4E3DE\t0x3D8E\n0x8EA4E3DF\t0x3E0C\n0x8EA4E3E0\t0x2447F\n0x8EA4E3E1\t0x244A2\n0x8EA4E3E2\t0x2447E\n0x8EA4E3E3\t0x3EA6\n0x8EA4E3E4\t0x248C5\n0x8EA4E3E5\t0x3EA3\n0x8EA4E3E6\t0x3EA4\n0x8EA4E3E7\t0x3EA5\n0x8EA4E3E8\t0x7588\n0x8EA4E3E9\t0x3F6E\n0x8EA4E3EA\t0x24EF1\n0x8EA4E3EB\t0x24EF2\n0x8EA4E3EC\t0x3FFA\n0x8EA4E3ED\t0x2502F\n0x8EA4E3EE\t0x407C\n0x8EA4E3EF\t0x407E\n0x8EA4E3F0\t0x407B\n0x8EA4E3F1\t0x407D\n0x8EA4E3F2\t0x25323\n0x8EA4E3F3\t0x25329\n0x8EA4E3F4\t0x408D\n0x8EA4E3F5\t0x40F4\n0x8EA4E3F6\t0x40F3\n0x8EA4E3F7\t0x2571B\n0x8EA4E3F8\t0x258EB\n0x8EA4E3F9\t0x4189\n0x8EA4E3FA\t0x258EA\n0x8EA4E3FB\t0x25A33\n0x8EA4E3FC\t0x41C0\n0x8EA4E3FD\t0x25D63\n0x8EA4E3FE\t0x4265\n0x8EA4E4A1\t0x25D92\n0x8EA4E4A2\t0x25D65\n0x8EA4E4A3\t0x42AD\n0x8EA4E4A4\t0x4325\n0x8EA4E4A5\t0x261A0\n0x8EA4E4A6\t0x2F970\n0x8EA4E4A7\t0x2625E\n0x8EA4E4A8\t0x43C9\n0x8EA4E4A9\t0x268AA\n0x8EA4E4AA\t0x444A\n0x8EA4E4AB\t0x268A9\n0x8EA4E4AC\t0x8267\n0x8EA4E4AD\t0x4489\n0x8EA4E4AE\t0x2709C\n0x8EA4E4AF\t0x4566\n0x8EA4E4B0\t0x4570\n0x8EA4E4B1\t0x27092\n0x8EA4E4B2\t0x456D\n0x8EA4E4B3\t0x4569\n0x8EA4E4B4\t0x4567\n0x8EA4E4B5\t0x27086\n0x8EA4E4B6\t0x4572\n0x8EA4E4B7\t0x860E\n0x8EA4E4B8\t0x456E\n0x8EA4E4B9\t0x27083\n0x8EA4E4BA\t0x459C\n0x8EA4E4BB\t0x45FC\n0x8EA4E4BC\t0x45FD\n0x8EA4E4BD\t0x4604\n0x8EA4E4BE\t0x45FF\n0x8EA4E4BF\t0x2F9C2\n0x8EA4E4C0\t0x45FE\n0x8EA4E4C1\t0x4600\n0x8EA4E4C2\t0x274CE\n0x8EA4E4C3\t0x4666\n0x8EA4E4C4\t0x4669\n0x8EA4E4C5\t0x27793\n0x8EA4E4C6\t0x46AA\n0x8EA4E4C7\t0x46AB\n0x8EA4E4C8\t0x4717\n0x8EA4E4C9\t0x27B2E\n0x8EA4E4CA\t0x27B27\n0x8EA4E4CB\t0x27B28\n0x8EA4E4CC\t0x4715\n0x8EA4E4CD\t0x8B5E\n0x8EA4E4CE\t0x4712\n0x8EA4E4CF\t0x8D0E\n0x8EA4E4D0\t0x27E18\n0x8EA4E4D1\t0x27E16\n0x8EA4E4D2\t0x27F8D\n0x8EA4E4D3\t0x47CA\n0x8EA4E4D4\t0x27F8E\n0x8EA4E4D5\t0x47C9\n0x8EA4E4D6\t0x47CB\n0x8EA4E4D7\t0x27F90\n0x8EA4E4D8\t0x27F8F\n0x8EA4E4D9\t0x28181\n0x8EA4E4DA\t0x4829\n0x8EA4E4DB\t0x4828\n0x8EA4E4DC\t0x2818A\n0x8EA4E4DD\t0x2818C\n0x8EA4E4DE\t0x2828D\n0x8EA4E4DF\t0x4840\n0x8EA4E4E0\t0x4875\n0x8EA4E4E1\t0x4876\n0x8EA4E4E2\t0x283B2\n0x8EA4E4E3\t0x4888\n0x8EA4E4E4\t0x287D9\n0x8EA4E4E5\t0x91B6\n0x8EA4E4E6\t0x4957\n0x8EA4E4E7\t0x9401\n0x8EA4E4E8\t0x28B0D\n0x8EA4E4E9\t0x495F\n0x8EA4E4EA\t0x28B13\n0x8EA4E4EB\t0x941D\n0x8EA4E4EC\t0x4958\n0x8EA4E4ED\t0x495B\n0x8EA4E4EE\t0x28B1B\n0x8EA4E4EF\t0x942F\n0x8EA4E4F0\t0x28DAC\n0x8EA4E4F1\t0x49B3\n0x8EA4E4F2\t0x28DB3\n0x8EA4E4F3\t0x49EF\n0x8EA4E4F4\t0x2915E\n0x8EA4E4F5\t0x4A30\n0x8EA4E4F6\t0x29160\n0x8EA4E4F7\t0x29168\n0x8EA4E4F8\t0x29163\n0x8EA4E4F9\t0x29169\n0x8EA4E4FA\t0x29167\n0x8EA4E4FB\t0x4A41\n0x8EA4E4FC\t0x4A4B\n0x8EA4E4FD\t0x29328\n0x8EA4E4FE\t0x4A7D\n0x8EA4E5A1\t0x2932E\n0x8EA4E5A2\t0x29330\n0x8EA4E5A3\t0x4A7C\n0x8EA4E5A4\t0x29326\n0x8EA4E5A5\t0x29331\n0x8EA4E5A6\t0x29341\n0x8EA4E5A7\t0x97E0\n0x8EA4E5A8\t0x293DA\n0x8EA4E5A9\t0x97DB\n0x8EA4E5AA\t0x2F9FA\n0x8EA4E5AB\t0x2940B\n0x8EA4E5AC\t0x9861\n0x8EA4E5AD\t0x29534\n0x8EA4E5AE\t0x29533\n0x8EA4E5AF\t0x4AE8\n0x8EA4E5B0\t0x4AEA\n0x8EA4E5B1\t0x4AE9\n0x8EA4E5B2\t0x29539\n0x8EA4E5B3\t0x2953B\n0x8EA4E5B4\t0x29540\n0x8EA4E5B5\t0x29630\n0x8EA4E5B6\t0x4B1B\n0x8EA4E5B7\t0x29632\n0x8EA4E5B8\t0x29637\n0x8EA4E5B9\t0x4B55\n0x8EA4E5BA\t0x994A\n0x8EA4E5BB\t0x4B59\n0x8EA4E5BC\t0x4B58\n0x8EA4E5BD\t0x29781\n0x8EA4E5BE\t0x2979F\n0x8EA4E5BF\t0x297A7\n0x8EA4E5C0\t0x4BA4\n0x8EA4E5C1\t0x4BA3\n0x8EA4E5C2\t0x29944\n0x8EA4E5C3\t0x29947\n0x8EA4E5C4\t0x29948\n0x8EA4E5C5\t0x2993D\n0x8EA4E5C6\t0x9A33\n0x8EA4E5C7\t0x4BA7\n0x8EA4E5C8\t0x29949\n0x8EA4E5C9\t0x4BE0\n0x8EA4E5CA\t0x29A80\n0x8EA4E5CB\t0x29BA0\n0x8EA4E5CC\t0x29B9D\n0x8EA4E5CD\t0x4C08\n0x8EA4E5CE\t0x4C0A\n0x8EA4E5CF\t0x4C09\n0x8EA4E5D0\t0x29B9C\n0x8EA4E5D1\t0x29C47\n0x8EA4E5D2\t0x29D07\n0x8EA4E5D3\t0x4C71\n0x8EA4E5D4\t0x9C0F\n0x8EA4E5D5\t0x4C6C\n0x8EA4E5D6\t0x29E49\n0x8EA4E5D7\t0x9C11\n0x8EA4E5D8\t0x29E44\n0x8EA4E5D9\t0x9C03\n0x8EA4E5DA\t0x9C01\n0x8EA4E5DB\t0x4C6E\n0x8EA4E5DC\t0x29EDF\n0x8EA4E5DD\t0x9C16\n0x8EA4E5DE\t0x29E4C\n0x8EA4E5E0\t0x29E4F\n0x8EA4E5E1\t0x4CE0\n0x8EA4E5E2\t0x4CEE\n0x8EA4E5E3\t0x2A0C1\n0x8EA4E5E4\t0x4CEB\n0x8EA4E5E5\t0x2A0B9\n0x8EA4E5E6\t0x2A0CB\n0x8EA4E5E7\t0x2A0CF\n0x8EA4E5E8\t0x2A0C4\n0x8EA4E5E9\t0x9D93\n0x8EA4E5EA\t0x4CEA\n0x8EA4E5EB\t0x4CEF\n0x8EA4E5EC\t0x4CE7\n0x8EA4E5ED\t0x2A0CA\n0x8EA4E5EE\t0x2A0C3\n0x8EA4E5EF\t0x2A2D0\n0x8EA4E5F0\t0x2A351\n0x8EA4E5F1\t0x4D48\n0x8EA4E5F2\t0x4D49\n0x8EA4E5F3\t0x2A3A8\n0x8EA4E5F4\t0x2A3C7\n0x8EA4E5F5\t0x2A3C6\n0x8EA4E5F6\t0x4D4D\n0x8EA4E5F7\t0x2A3CA\n0x8EA4E5F8\t0x2A402\n0x8EA4E5F9\t0x4D55\n0x8EA4E5FA\t0x2A45D\n0x8EA4E5FB\t0x2A45A\n0x8EA4E5FC\t0x4D6A\n0x8EA4E5FD\t0x4D6C\n0x8EA4E5FE\t0x2A459\n0x8EA4E6A1\t0x4D6B\n0x8EA4E6A2\t0x2A4CC\n0x8EA4E6A3\t0x2A51C\n0x8EA4E6A4\t0x2A5CC\n0x8EA4E6A5\t0x4D98\n0x8EA4E6A6\t0x4D99\n0x8EA4E6A7\t0x4D97\n0x8EA4E6A8\t0x2A5E8\n0x8EA4E6A9\t0x2A5EC\n0x8EA4E6AA\t0x2A5EA\n0x8EA4E6AB\t0x2A6AD\n0x8EA4E6AC\t0x2A6B0\n0x8EA4E6AD\t0x2045F\n0x8EA4E6AE\t0x20458\n0x8EA4E6AF\t0x20457\n0x8EA4E6B0\t0x535B\n0x8EA4E6B1\t0x20B93\n0x8EA4E6B2\t0x3616\n0x8EA4E6B3\t0x2113B\n0x8EA4E6B4\t0x56BF\n0x8EA4E6B5\t0x21134\n0x8EA4E6B6\t0x214F2\n0x8EA4E6B7\t0x3739\n0x8EA4E6B8\t0x21AFD\n0x8EA4E6B9\t0x21C1D\n0x8EA4E6BA\t0x3825\n0x8EA4E6BB\t0x5DCE\n0x8EA4E6BC\t0x22304\n0x8EA4E6BD\t0x22448\n0x8EA4E6BE\t0x22958\n0x8EA4E6BF\t0x22E4F\n0x8EA4E6C0\t0x3A74\n0x8EA4E6C1\t0x22E6E\n0x8EA4E6C2\t0x22E72\n0x8EA4E6C3\t0x3AAE\n0x8EA4E6C4\t0x2302E\n0x8EA4E6C5\t0x237FC\n0x8EA4E6C6\t0x237F4\n0x8EA4E6C7\t0x23C36\n0x8EA4E6C8\t0x2410E\n0x8EA4E6C9\t0x3D92\n0x8EA4E6CA\t0x3D94\n0x8EA4E6CB\t0x24114\n0x8EA4E6CC\t0x3D95\n0x8EA4E6CD\t0x24119\n0x8EA4E6CE\t0x3E0D\n0x8EA4E6CF\t0x244A6\n0x8EA4E6D0\t0x3E25\n0x8EA4E6D1\t0x24AC9\n0x8EA4E6D2\t0x24AC0\n0x8EA4E6D3\t0x24ACC\n0x8EA4E6D4\t0x24B1B\n0x8EA4E6D5\t0x24BAA\n0x8EA4E6D6\t0x24BA8\n0x8EA4E6D7\t0x24F03\n0x8EA4E6D8\t0x3FD5\n0x8EA4E6D9\t0x3FD6\n0x8EA4E6DA\t0x76AC\n0x8EA4E6DB\t0x3FE8\n0x8EA4E6DC\t0x25035\n0x8EA4E6DD\t0x407F\n0x8EA4E6DE\t0x77D2\n0x8EA4E6DF\t0x40F5\n0x8EA4E6E0\t0x40F6\n0x8EA4E6E1\t0x40F7\n0x8EA4E6E2\t0x255D9\n0x8EA4E6E3\t0x4124\n0x8EA4E6E4\t0x418D\n0x8EA4E6E5\t0x418A\n0x8EA4E6E6\t0x25A3F\n0x8EA4E6E7\t0x25A3D\n0x8EA4E6E8\t0x426C\n0x8EA4E6E9\t0x4266\n0x8EA4E6EA\t0x426A\n0x8EA4E6EB\t0x25D8B\n0x8EA4E6EC\t0x4267\n0x8EA4E6ED\t0x426D\n0x8EA4E6EE\t0x4268\n0x8EA4E6EF\t0x7C52\n0x8EA4E6F0\t0x25D68\n0x8EA4E6F1\t0x25D8A\n0x8EA4E6F2\t0x25F58\n0x8EA4E6F3\t0x25F57\n0x8EA4E6F4\t0x261CE\n0x8EA4E6F5\t0x261BC\n0x8EA4E6F6\t0x261C0\n0x8EA4E6F7\t0x261C1\n0x8EA4E6F8\t0x261BF\n0x8EA4E6F9\t0x261AB\n0x8EA4E6FA\t0x2625F\n0x8EA4E6FB\t0x4365\n0x8EA4E6FC\t0x264A6\n0x8EA4E6FD\t0x439A\n0x8EA4E6FE\t0x26529\n0x8EA4E7A1\t0x43B1\n0x8EA4E7A2\t0x444B\n0x8EA4E7A3\t0x444D\n0x8EA4E7A4\t0x444C\n0x8EA4E7A5\t0x444E\n0x8EA4E7A6\t0x268B8\n0x8EA4E7A7\t0x4573\n0x8EA4E7A8\t0x4575\n0x8EA4E7A9\t0x270DD\n0x8EA4E7AA\t0x270D6\n0x8EA4E7AB\t0x2F9B1\n0x8EA4E7AC\t0x270D5\n0x8EA4E7AD\t0x270E7\n0x8EA4E7AE\t0x270D8\n0x8EA4E7AF\t0x274EC\n0x8EA4E7B0\t0x4603\n0x8EA4E7B1\t0x27500\n0x8EA4E7B2\t0x27507\n0x8EA4E7B3\t0x274FD\n0x8EA4E7B4\t0x274F1\n0x8EA4E7B5\t0x274FF\n0x8EA4E7B6\t0x277AA\n0x8EA4E7B7\t0x277B0\n0x8EA4E7B8\t0x27B48\n0x8EA4E7B9\t0x471E\n0x8EA4E7BA\t0x27B53\n0x8EA4E7BB\t0x8B73\n0x8EA4E7BC\t0x27B4D\n0x8EA4E7BD\t0x4719\n0x8EA4E7BE\t0x471C\n0x8EA4E7BF\t0x471A\n0x8EA4E7C0\t0x471D\n0x8EA4E7C1\t0x8B76\n0x8EA4E7C2\t0x27B43\n0x8EA4E7C3\t0x27B50\n0x8EA4E7C4\t0x4743\n0x8EA4E7C5\t0x4752\n0x8EA4E7C6\t0x27C8C\n0x8EA4E7C7\t0x27E27\n0x8EA4E7C8\t0x4795\n0x8EA4E7C9\t0x27F99\n0x8EA4E7CA\t0x47CC\n0x8EA4E7CB\t0x281B1\n0x8EA4E7CC\t0x482B\n0x8EA4E7CD\t0x281B0\n0x8EA4E7CE\t0x281AA\n0x8EA4E7CF\t0x281AC\n0x8EA4E7D0\t0x482A\n0x8EA4E7D1\t0x8EC7\n0x8EA4E7D2\t0x4877\n0x8EA4E7D3\t0x283C8\n0x8EA4E7D4\t0x283CA\n0x8EA4E7D5\t0x28642\n0x8EA4E7D6\t0x287E0\n0x8EA4E7D7\t0x288E7\n0x8EA4E7D8\t0x288E8\n0x8EA4E7D9\t0x288E6\n0x8EA4E7DA\t0x4913\n0x8EA4E7DB\t0x4914\n0x8EA4E7DC\t0x9434\n0x8EA4E7DD\t0x28B5B\n0x8EA4E7DE\t0x28B56\n0x8EA4E7DF\t0x495D\n0x8EA4E7E0\t0x28B5A\n0x8EA4E7E1\t0x4960\n0x8EA4E7E2\t0x943E\n0x8EA4E7E3\t0x4962\n0x8EA4E7E4\t0x28CB8\n0x8EA4E7E5\t0x28DC5\n0x8EA4E7E6\t0x49B2\n0x8EA4E7E7\t0x49F0\n0x8EA4E7E8\t0x29048\n0x8EA4E7E9\t0x2917D\n0x8EA4E7EA\t0x2917C\n0x8EA4E7EB\t0x29181\n0x8EA4E7EC\t0x29182\n0x8EA4E7ED\t0x29162\n0x8EA4E7EE\t0x4A4C\n0x8EA4E7EF\t0x29345\n0x8EA4E7F0\t0x4A82\n0x8EA4E7F1\t0x97BC\n0x8EA4E7F2\t0x4A81\n0x8EA4E7F3\t0x4A9B\n0x8EA4E7F4\t0x293E3\n0x8EA4E7F5\t0x4AA4\n0x8EA4E7F6\t0x4AEE\n0x8EA4E7F7\t0x4AEC\n0x8EA4E7F8\t0x29550\n0x8EA4E7F9\t0x4AED\n0x8EA4E7FA\t0x2954F\n0x8EA4E7FB\t0x4AF0\n0x8EA4E7FC\t0x4AEF\n0x8EA4E7FD\t0x29639\n0x8EA4E7FE\t0x4B1D\n0x8EA4E8A1\t0x2963A\n0x8EA4E8A2\t0x4B60\n0x8EA4E8A3\t0x4B5E\n0x8EA4E8A4\t0x4B5D\n0x8EA4E8A5\t0x297C1\n0x8EA4E8A6\t0x2994E\n0x8EA4E8A7\t0x2996E\n0x8EA4E8A8\t0x4BB1\n0x8EA4E8A9\t0x4BAB\n0x8EA4E8AA\t0x4BAC\n0x8EA4E8AB\t0x4BAD\n0x8EA4E8AC\t0x29971\n0x8EA4E8AD\t0x4BAE\n0x8EA4E8AE\t0x29A8C\n0x8EA4E8AF\t0x29A89\n0x8EA4E8B0\t0x4BE2\n0x8EA4E8B1\t0x29AE5\n0x8EA4E8B2\t0x29BB3\n0x8EA4E8B3\t0x29BB6\n0x8EA4E8B4\t0x29BB4\n0x8EA4E8B5\t0x29C4D\n0x8EA4E8B6\t0x9B39\n0x8EA4E8B7\t0x29D13\n0x8EA4E8B8\t0x29E78\n0x8EA4E8B9\t0x9C2A\n0x8EA4E8BA\t0x4C7B\n0x8EA4E8BB\t0x9C26\n0x8EA4E8BC\t0x4C78\n0x8EA4E8BD\t0x4C75\n0x8EA4E8BE\t0x9C27\n0x8EA4E8BF\t0x29E72\n0x8EA4E8C0\t0x4CF2\n0x8EA4E8C1\t0x4CF4\n0x8EA4E8C2\t0x4CF3\n0x8EA4E8C3\t0x9DC0\n0x8EA4E8C4\t0x9DC9\n0x8EA4E8C5\t0x2A275\n0x8EA4E8C6\t0x2A2DA\n0x8EA4E8C7\t0x2A2D7\n0x8EA4E8C8\t0x4D3F\n0x8EA4E8C9\t0x4D3E\n0x8EA4E8CA\t0x4D40\n0x8EA4E8CB\t0x4D4E\n0x8EA4E8CC\t0x4D57\n0x8EA4E8CD\t0x4D59\n0x8EA4E8CE\t0x4D58\n0x8EA4E8CF\t0x2FA16\n0x8EA4E8D0\t0x2A469\n0x8EA4E8D1\t0x2A467\n0x8EA4E8D2\t0x4D6E\n0x8EA4E8D3\t0x2A466\n0x8EA4E8D4\t0x2A46F\n0x8EA4E8D5\t0x2A471\n0x8EA4E8D6\t0x9EEC\n0x8EA4E8D7\t0x2A4CF\n0x8EA4E8D8\t0x2A523\n0x8EA4E8D9\t0x4D81\n0x8EA4E8DA\t0x4D86\n0x8EA4E8DB\t0x2A5A5\n0x8EA4E8DC\t0x4D8F\n0x8EA4E8DD\t0x2A5FE\n0x8EA4E8DE\t0x2A5FB\n0x8EA4E8DF\t0x2A5FD\n0x8EA4E8E0\t0x9F68\n0x8EA4E8E1\t0x4D9B\n0x8EA4E8E2\t0x4DB1\n0x8EA4E8E3\t0x4DB3\n0x8EA4E8E4\t0x2116D\n0x8EA4E8E5\t0x373A\n0x8EA4E8E6\t0x21B05\n0x8EA4E8E7\t0x21C20\n0x8EA4E8E8\t0x3827\n0x8EA4E8E9\t0x21FC8\n0x8EA4E8EA\t0x21FC9\n0x8EA4E8EB\t0x386A\n0x8EA4E8EC\t0x39AC\n0x8EA4E8ED\t0x23127\n0x8EA4E8EE\t0x3C18\n0x8EA4E8EF\t0x2381E\n0x8EA4E8F0\t0x23936\n0x8EA4E8F1\t0x3C4C\n0x8EA4E8F2\t0x2413D\n0x8EA4E8F3\t0x3D96\n0x8EA4E8F4\t0x248D7\n0x8EA4E8F5\t0x3F4A\n0x8EA4E8F6\t0x24BAD\n0x8EA4E8F7\t0x24D00\n0x8EA4E8F8\t0x4081\n0x8EA4E8F9\t0x2533A\n0x8EA4E8FA\t0x4083\n0x8EA4E8FB\t0x40F9\n0x8EA4E8FC\t0x40F8\n0x8EA4E8FD\t0x25726\n0x8EA4E8FE\t0x418E\n0x8EA4E9A1\t0x418F\n0x8EA4E9A2\t0x41C1\n0x8EA4E9A3\t0x25DB7\n0x8EA4E9A4\t0x25DB6\n0x8EA4E9A5\t0x25DC0\n0x8EA4E9A6\t0x4270\n0x8EA4E9A7\t0x25D9B\n0x8EA4E9A8\t0x4271\n0x8EA4E9A9\t0x261D8\n0x8EA4E9AA\t0x432A\n0x8EA4E9AB\t0x432D\n0x8EA4E9AC\t0x437D\n0x8EA4E9AD\t0x8032\n0x8EA4E9AE\t0x8031\n0x8EA4E9AF\t0x268C0\n0x8EA4E9B0\t0x444F\n0x8EA4E9B1\t0x268BF\n0x8EA4E9B2\t0x26ABF\n0x8EA4E9B3\t0x4490\n0x8EA4E9B4\t0x27120\n0x8EA4E9B5\t0x270D0\n0x8EA4E9B6\t0x2710E\n0x8EA4E9B7\t0x4579\n0x8EA4E9B8\t0x2711D\n0x8EA4E9B9\t0x2711E\n0x8EA4E9BA\t0x27115\n0x8EA4E9BB\t0x27114\n0x8EA4E9BC\t0x2751E\n0x8EA4E9BD\t0x2752C\n0x8EA4E9BE\t0x4605\n0x8EA4E9BF\t0x277B9\n0x8EA4E9C0\t0x277B8\n0x8EA4E9C1\t0x277B6\n0x8EA4E9C2\t0x2789E\n0x8EA4E9C3\t0x2789C\n0x8EA4E9C4\t0x2794D\n0x8EA4E9C5\t0x89FD\n0x8EA4E9C6\t0x27B6E\n0x8EA4E9C7\t0x27B60\n0x8EA4E9C8\t0x4721\n0x8EA4E9C9\t0x27B64\n0x8EA4E9CA\t0x27B62\n0x8EA4E9CB\t0x261E5\n0x8EA4E9CC\t0x4732\n0x8EA4E9CD\t0x27FA3\n0x8EA4E9CE\t0x47CD\n0x8EA4E9CF\t0x47CF\n0x8EA4E9D0\t0x283D2\n0x8EA4E9D1\t0x283D5\n0x8EA4E9D2\t0x908E\n0x8EA4E9D3\t0x4916\n0x8EA4E9D4\t0x4915\n0x8EA4E9D5\t0x49B5\n0x8EA4E9D6\t0x4A08\n0x8EA4E9D7\t0x29055\n0x8EA4E9D8\t0x4A32\n0x8EA4E9D9\t0x29193\n0x8EA4E9DA\t0x4A33\n0x8EA4E9DB\t0x4A34\n0x8EA4E9DC\t0x4A3C\n0x8EA4E9DD\t0x29356\n0x8EA4E9DE\t0x97C2\n0x8EA4E9DF\t0x293E9\n0x8EA4E9E0\t0x4A9C\n0x8EA4E9E1\t0x29445\n0x8EA4E9E2\t0x4AF4\n0x8EA4E9E3\t0x4AF2\n0x8EA4E9E4\t0x2967C\n0x8EA4E9E5\t0x4B62\n0x8EA4E9E6\t0x297D3\n0x8EA4E9E7\t0x4B61\n0x8EA4E9E8\t0x4B64\n0x8EA4E9E9\t0x4BB5\n0x8EA4E9EA\t0x9A4B\n0x8EA4E9EB\t0x4BB4\n0x8EA4E9EC\t0x2998E\n0x8EA4E9ED\t0x29A97\n0x8EA4E9EE\t0x4BE3\n0x8EA4E9EF\t0x29A9B\n0x8EA4E9F0\t0x29A99\n0x8EA4E9F1\t0x9B1C\n0x8EA4E9F2\t0x4C0E\n0x8EA4E9F3\t0x29BCF\n0x8EA4E9F4\t0x9B1B\n0x8EA4E9F5\t0x29C59\n0x8EA4E9F6\t0x4C2C\n0x8EA4E9F7\t0x4C2B\n0x8EA4E9F8\t0x29D20\n0x8EA4E9F9\t0x29D23\n0x8EA4E9FA\t0x29D2A\n0x8EA4E9FB\t0x4C85\n0x8EA4E9FC\t0x4C81\n0x8EA4E9FD\t0x4C7E\n0x8EA4E9FE\t0x4C83\n0x8EA4EAA1\t0x4C80\n0x8EA4EAA2\t0x29EB0\n0x8EA4EAA3\t0x9C42\n0x8EA4EAA4\t0x2A12F\n0x8EA4EAA5\t0x9DD4\n0x8EA4EAA6\t0x4CFB\n0x8EA4EAA7\t0x4CF7\n0x8EA4EAA8\t0x2A132\n0x8EA4EAA9\t0x2A143\n0x8EA4EAAA\t0x2A13F\n0x8EA4EAAB\t0x2A139\n0x8EA4EAAC\t0x4CF8\n0x8EA4EAAD\t0x2A130\n0x8EA4EAAE\t0x2A2DD\n0x8EA4EAAF\t0x2A3DA\n0x8EA4EAB0\t0x2A3DB\n0x8EA4EAB1\t0x4D5A\n0x8EA4EAB2\t0x2A484\n0x8EA4EAB3\t0x2A47F\n0x8EA4EAB4\t0x2A472\n0x8EA4EAB5\t0x2A480\n0x8EA4EAB6\t0x2A4EE\n0x8EA4EAB7\t0x4D78\n0x8EA4EAB8\t0x2A52A\n0x8EA4EAB9\t0x2A522\n0x8EA4EABA\t0x2A571\n0x8EA4EABB\t0x2A5CD\n0x8EA4EABC\t0x4D9D\n0x8EA4EABD\t0x4D9C\n0x8EA4EABE\t0x2A60F\n0x8EA4EABF\t0x2A618\n0x8EA4EAC0\t0x2046A\n0x8EA4EAC1\t0x34A9\n0x8EA4EAC2\t0x34BF\n0x8EA4EAC3\t0x56D0\n0x8EA4EAC4\t0x56CF\n0x8EA4EAC5\t0x21B0C\n0x8EA4EAC6\t0x5DDA\n0x8EA4EAC7\t0x225A6\n0x8EA4EAC8\t0x3A77\n0x8EA4EAC9\t0x3A76\n0x8EA4EACA\t0x23037\n0x8EA4EACB\t0x3ABB\n0x8EA4EACC\t0x66EA\n0x8EA4EACD\t0x23AE2\n0x8EA4EACE\t0x3D9B\n0x8EA4EACF\t0x244BC\n0x8EA4EAD0\t0x3E0F\n0x8EA4EAD1\t0x3E5B\n0x8EA4EAD2\t0x24AD5\n0x8EA4EAD3\t0x3F4C\n0x8EA4EAD4\t0x3F6F\n0x8EA4EAD5\t0x3FD9\n0x8EA4EAD6\t0x24F12\n0x8EA4EAD7\t0x4082\n0x8EA4EAD8\t0x2534B\n0x8EA4EAD9\t0x25341\n0x8EA4EADA\t0x253A1\n0x8EA4EADB\t0x255EC\n0x8EA4EADC\t0x4274\n0x8EA4EADD\t0x4272\n0x8EA4EADE\t0x25DD4\n0x8EA4EADF\t0x25DD8\n0x8EA4EAE0\t0x25DD9\n0x8EA4EAE1\t0x4273\n0x8EA4EAE2\t0x25DDA\n0x8EA4EAE3\t0x25F6C\n0x8EA4EAE4\t0x25F6D\n0x8EA4EAE5\t0x42B1\n0x8EA4EAE6\t0x432E\n0x8EA4EAE7\t0x261E7\n0x8EA4EAE8\t0x261EB\n0x8EA4EAE9\t0x261EC\n0x8EA4EAEA\t0x26262\n0x8EA4EAEB\t0x434E\n0x8EA4EAEC\t0x2652B\n0x8EA4EAED\t0x2660D\n0x8EA4EAEE\t0x268CD\n0x8EA4EAEF\t0x26AC3\n0x8EA4EAF0\t0x2713F\n0x8EA4EAF1\t0x2713C\n0x8EA4EAF2\t0x2713E\n0x8EA4EAF3\t0x2713D\n0x8EA4EAF4\t0x2713A\n0x8EA4EAF5\t0x27138\n0x8EA4EAF6\t0x27544\n0x8EA4EAF7\t0x27545\n0x8EA4EAF8\t0x460B\n0x8EA4EAF9\t0x27548\n0x8EA4EAFA\t0x27550\n0x8EA4EAFB\t0x466C\n0x8EA4EAFC\t0x8B89\n0x8EA4EAFD\t0x27B78\n0x8EA4EAFE\t0x27B79\n0x8EA4EBA1\t0x478B\n0x8EA4EBA2\t0x27E3E\n0x8EA4EBA3\t0x47D0\n0x8EA4EBA4\t0x482D\n0x8EA4EBA5\t0x28654\n0x8EA4EBA6\t0x48E4\n0x8EA4EBA7\t0x4971\n0x8EA4EBA8\t0x28BB9\n0x8EA4EBA9\t0x9458\n0x8EA4EBAA\t0x496F\n0x8EA4EBAB\t0x2905F\n0x8EA4EBAC\t0x4A87\n0x8EA4EBAD\t0x4AA5\n0x8EA4EBAE\t0x29572\n0x8EA4EBAF\t0x29575\n0x8EA4EBB0\t0x4B1E\n0x8EA4EBB1\t0x4B65\n0x8EA4EBB2\t0x4BB9\n0x8EA4EBB3\t0x4BB7\n0x8EA4EBB4\t0x4BB8\n0x8EA4EBB5\t0x4BE4\n0x8EA4EBB6\t0x29AA3\n0x8EA4EBB7\t0x29AA5\n0x8EA4EBB8\t0x29BDC\n0x8EA4EBB9\t0x29BDD\n0x8EA4EBBA\t0x29C5A\n0x8EA4EBBB\t0x4C8C\n0x8EA4EBBC\t0x4C89\n0x8EA4EBBD\t0x4C8A\n0x8EA4EBBE\t0x29EDB\n0x8EA4EBBF\t0x29EDC\n0x8EA4EBC0\t0x4C8B\n0x8EA4EBC1\t0x2A1AB\n0x8EA4EBC2\t0x2A184\n0x8EA4EBC3\t0x2A176\n0x8EA4EBC4\t0x4D01\n0x8EA4EBC5\t0x4CFE\n0x8EA4EBC6\t0x9DE7\n0x8EA4EBC7\t0x4D03\n0x8EA4EBC8\t0x4D06\n0x8EA4EBC9\t0x2A183\n0x8EA4EBCA\t0x9DEA\n0x8EA4EBCB\t0x9DF1\n0x8EA4EBCC\t0x2A27F\n0x8EA4EBCD\t0x4D1D\n0x8EA4EBCE\t0x4D43\n0x8EA4EBCF\t0x2A373\n0x8EA4EBD0\t0x2A3AD\n0x8EA4EBD1\t0x2A3B0\n0x8EA4EBD2\t0x4D4F\n0x8EA4EBD3\t0x2A40F\n0x8EA4EBD4\t0x2A40C\n0x8EA4EBD5\t0x4D5B\n0x8EA4EBD6\t0x4D70\n0x8EA4EBD7\t0x2A579\n0x8EA4EBD8\t0x4D88\n0x8EA4EBD9\t0x2A577\n0x8EA4EBDA\t0x2A57A\n0x8EA4EBDB\t0x4D89\n0x8EA4EBDC\t0x9F44\n0x8EA4EBDD\t0x2A632\n0x8EA4EBDE\t0x2A627\n0x8EA4EBDF\t0x2A62A\n0x8EA4EBE0\t0x2A62C\n0x8EA4EBE1\t0x9F6D\n0x8EA4EBE2\t0x2A628\n0x8EA4EBE3\t0x2A629\n0x8EA4EBE4\t0x2A638\n0x8EA4EBE5\t0x2082F\n0x8EA4EBE6\t0x2117B\n0x8EA4EBE7\t0x21B0D\n0x8EA4EBE8\t0x5DD9\n0x8EA4EBE9\t0x21FD6\n0x8EA4EBEA\t0x21FD5\n0x8EA4EBEB\t0x22EA1\n0x8EA4EBEC\t0x2384C\n0x8EA4EBED\t0x3D9E\n0x8EA4EBEE\t0x3D9F\n0x8EA4EBEF\t0x3EA7\n0x8EA4EBF0\t0x3F4B\n0x8EA4EBF1\t0x3FDB\n0x8EA4EBF2\t0x3FDA\n0x8EA4EBF3\t0x24FC0\n0x8EA4EBF4\t0x77D6\n0x8EA4EBF5\t0x408E\n0x8EA4EBF6\t0x4276\n0x8EA4EBF7\t0x25DF4\n0x8EA4EBF8\t0x4330\n0x8EA4EBF9\t0x432F\n0x8EA4EBFA\t0x261F0\n0x8EA4EBFB\t0x4366\n0x8EA4EBFC\t0x2633F\n0x8EA4EBFD\t0x457E\n0x8EA4EBFE\t0x2755D\n0x8EA4ECA1\t0x27572\n0x8EA4ECA2\t0x27562\n0x8EA4ECA3\t0x883A\n0x8EA4ECA4\t0x27566\n0x8EA4ECA5\t0x8975\n0x8EA4ECA6\t0x466F\n0x8EA4ECA7\t0x27B88\n0x8EA4ECA8\t0x47D1\n0x8EA4ECA9\t0x482F\n0x8EA4ECAA\t0x281E8\n0x8EA4ECAB\t0x281E4\n0x8EA4ECAC\t0x48B2\n0x8EA4ECAD\t0x4918\n0x8EA4ECAE\t0x4917\n0x8EA4ECAF\t0x288FF\n0x8EA4ECB0\t0x4976\n0x8EA4ECB1\t0x291AF\n0x8EA4ECB2\t0x291AE\n0x8EA4ECB3\t0x4A4F\n0x8EA4ECB4\t0x4A89\n0x8EA4ECB5\t0x293F2\n0x8EA4ECB6\t0x29448\n0x8EA4ECB7\t0x29581\n0x8EA4ECB8\t0x2957E\n0x8EA4ECB9\t0x4AF5\n0x8EA4ECBA\t0x4B1F\n0x8EA4ECBB\t0x29652\n0x8EA4ECBC\t0x297EF\n0x8EA4ECBD\t0x9A5D\n0x8EA4ECBE\t0x4BE5\n0x8EA4ECBF\t0x29AAD\n0x8EA4ECC0\t0x29BE6\n0x8EA4ECC1\t0x4C10\n0x8EA4ECC2\t0x29BED\n0x8EA4ECC3\t0x4C0F\n0x8EA4ECC4\t0x29BE9\n0x8EA4ECC5\t0x29C61\n0x8EA4ECC6\t0x29C60\n0x8EA4ECC7\t0x29D33\n0x8EA4ECC8\t0x4C2F\n0x8EA4ECC9\t0x4C30\n0x8EA4ECCA\t0x9C64\n0x8EA4ECCB\t0x29F0B\n0x8EA4ECCC\t0x29F08\n0x8EA4ECCD\t0x4C93\n0x8EA4ECCE\t0x4C94\n0x8EA4ECCF\t0x29F07\n0x8EA4ECD0\t0x4D07\n0x8EA4ECD1\t0x4D09\n0x8EA4ECD2\t0x4D08\n0x8EA4ECD3\t0x2A1CA\n0x8EA4ECD4\t0x4D0B\n0x8EA4ECD5\t0x2A1C6\n0x8EA4ECD6\t0x9E0A\n0x8EA4ECD7\t0x2A284\n0x8EA4ECD8\t0x2A2EB\n0x8EA4ECD9\t0x2A37D\n0x8EA4ECDA\t0x4D50\n0x8EA4ECDB\t0x4D71\n0x8EA4ECDC\t0x2A49B\n0x8EA4ECDD\t0x2A4A2\n0x8EA4ECDE\t0x2A4A1\n0x8EA4ECDF\t0x2A4A0\n0x8EA4ECE0\t0x2A49C\n0x8EA4ECE1\t0x4D7B\n0x8EA4ECE2\t0x4D7C\n0x8EA4ECE3\t0x2A580\n0x8EA4ECE4\t0x9F73\n0x8EA4ECE5\t0x2A640\n0x8EA4ECE6\t0x4DA1\n0x8EA4ECE7\t0x2A639\n0x8EA4ECE8\t0x2A63C\n0x8EA4ECE9\t0x4DA0\n0x8EA4ECEA\t0x4DA2\n0x8EA4ECEB\t0x208CA\n0x8EA4ECEC\t0x361B\n0x8EA4ECED\t0x21189\n0x8EA4ECEE\t0x3682\n0x8EA4ECEF\t0x2303C\n0x8EA4ECF0\t0x23940\n0x8EA4ECF1\t0x24163\n0x8EA4ECF2\t0x24169\n0x8EA4ECF3\t0x3FE9\n0x8EA4ECF4\t0x25353\n0x8EA4ECF5\t0x4084\n0x8EA4ECF6\t0x77E1\n0x8EA4ECF7\t0x25917\n0x8EA4ECF8\t0x2591A\n0x8EA4ECF9\t0x25E00\n0x8EA4ECFA\t0x42B3\n0x8EA4ECFB\t0x4334\n0x8EA4ECFC\t0x4333\n0x8EA4ECFD\t0x4580\n0x8EA4ECFE\t0x2756F\n0x8EA4EDA1\t0x278AB\n0x8EA4EDA2\t0x46AD\n0x8EA4EDA3\t0x27B91\n0x8EA4EDA4\t0x4744\n0x8EA4EDA5\t0x4755\n0x8EA4EDA6\t0x27FB1\n0x8EA4EDA7\t0x47D2\n0x8EA4EDA8\t0x281EF\n0x8EA4EDA9\t0x28DF1\n0x8EA4EDAA\t0x28DF2\n0x8EA4EDAB\t0x291B7\n0x8EA4EDAC\t0x291B5\n0x8EA4EDAD\t0x4A8A\n0x8EA4EDAE\t0x29586\n0x8EA4EDAF\t0x2965A\n0x8EA4EDB0\t0x4B67\n0x8EA4EDB1\t0x299C6\n0x8EA4EDB2\t0x299CB\n0x8EA4EDB3\t0x4BE6\n0x8EA4EDB4\t0x29AB2\n0x8EA4EDB5\t0x4C13\n0x8EA4EDB6\t0x29BF3\n0x8EA4EDB7\t0x9B2D\n0x8EA4EDB8\t0x29F27\n0x8EA4EDB9\t0x4C97\n0x8EA4EDBA\t0x9E0C\n0x8EA4EDBB\t0x2A1D5\n0x8EA4EDBC\t0x2A1D8\n0x8EA4EDBD\t0x4D0C\n0x8EA4EDBE\t0x2A1EC\n0x8EA4EDBF\t0x2A287\n0x8EA4EDC0\t0x2A2F2\n0x8EA4EDC1\t0x4D46\n0x8EA4EDC2\t0x4D5C\n0x8EA4EDC3\t0x4D74\n0x8EA4EDC4\t0x4D72\n0x8EA4EDC5\t0x2A4AD\n0x8EA4EDC6\t0x2A4B0\n0x8EA4EDC7\t0x2A4FD\n0x8EA4EDC8\t0x9F1F\n0x8EA4EDC9\t0x2A587\n0x8EA4EDCA\t0x2A64A\n0x8EA4EDCB\t0x4DA4\n0x8EA4EDCC\t0x4DA3\n0x8EA4EDCD\t0x2A64E\n0x8EA4EDCE\t0x2A649\n0x8EA4EDCF\t0x2A651\n0x8EA4EDD0\t0x2A64D\n0x8EA4EDD1\t0x4DB4\n0x8EA4EDD2\t0x20472\n0x8EA4EDD3\t0x3536\n0x8EA4EDD4\t0x21B16\n0x8EA4EDD5\t0x2386D\n0x8EA4EDD6\t0x23941\n0x8EA4EDD7\t0x3CB2\n0x8EA4EDD8\t0x24171\n0x8EA4EDD9\t0x24174\n0x8EA4EDDA\t0x3F16\n0x8EA4EDDB\t0x7C70\n0x8EA4EDDC\t0x4277\n0x8EA4EDDD\t0x25F7C\n0x8EA4EDDE\t0x457F\n0x8EA4EDDF\t0x2718A\n0x8EA4EDE0\t0x27956\n0x8EA4EDE1\t0x487D\n0x8EA4EDE2\t0x9479\n0x8EA4EDE3\t0x28BFA\n0x8EA4EDE4\t0x974A\n0x8EA4EDE5\t0x4A8C\n0x8EA4EDE6\t0x2965B\n0x8EA4EDE7\t0x4B68\n0x8EA4EDE8\t0x4BBE\n0x8EA4EDE9\t0x4C15\n0x8EA4EDEA\t0x2A1F5\n0x8EA4EDEB\t0x2A1F0\n0x8EA4EDEC\t0x2A2F3\n0x8EA4EDED\t0x2A37F\n0x8EA4EDEE\t0x2A413\n0x8EA4EDEF\t0x4D75\n0x8EA4EDF0\t0x4DA5\n0x8EA4EDF1\t0x21B19\n0x8EA4EDF2\t0x22985\n0x8EA4EDF3\t0x22EB0\n0x8EA4EDF4\t0x24177\n0x8EA4EDF5\t0x255FF\n0x8EA4EDF6\t0x4278\n0x8EA4EDF7\t0x4335\n0x8EA4EDF8\t0x7E9D\n0x8EA4EDF9\t0x4582\n0x8EA4EDFA\t0x27187\n0x8EA4EDFB\t0x4583\n0x8EA4EDFC\t0x2718B\n0x8EA4EDFD\t0x4671\n0x8EA4EDFE\t0x27B9E\n0x8EA4EEA1\t0x487E\n0x8EA4EEA2\t0x4A8E\n0x8EA4EEA3\t0x2958F\n0x8EA4EEA4\t0x9960\n0x8EA4EEA5\t0x4B69\n0x8EA4EEA6\t0x29839\n0x8EA4EEA7\t0x299D4\n0x8EA4EEA8\t0x29AF1\n0x8EA4EEA9\t0x29C02\n0x8EA4EEAA\t0x29C6B\n0x8EA4EEAB\t0x29D40\n0x8EA4EEAC\t0x4C9A\n0x8EA4EEAD\t0x4C9B\n0x8EA4EEAE\t0x2A210\n0x8EA4EEAF\t0x2A4BE\n0x8EA4EEB0\t0x2A4B9\n0x8EA4EEB1\t0x4D90\n0x8EA4EEB2\t0x2A664\n0x8EA4EEB3\t0x9F9E\n0x8EA4EEB4\t0x24AE9\n0x8EA4EEB5\t0x27190\n0x8EA4EEB6\t0x4586\n0x8EA4EEB7\t0x4585\n0x8EA4EEB8\t0x2721C\n0x8EA4EEB9\t0x460E\n0x8EA4EEBA\t0x27592\n0x8EA4EEBB\t0x278AE\n0x8EA4EEBC\t0x27BA3\n0x8EA4EEBD\t0x4919\n0x8EA4EEBE\t0x291C9\n0x8EA4EEBF\t0x4BC0\n0x8EA4EEC0\t0x299D8\n0x8EA4EEC1\t0x29D44\n0x8EA4EEC2\t0x2A224\n0x8EA4EEC3\t0x9EF8\n0x8EA4EEC4\t0x9F3A\n0x8EA4EEC5\t0x9F7D\n0x8EA4EEC6\t0x2A670\n0x8EA4EEC7\t0x2A6D3\n0x8EA4EEC8\t0x400D\n0x8EA4EEC9\t0x4C16\n0x8EA4EECA\t0x2A4C3\n0x8EA4EECB\t0x4DA9\n0x8EA4EECC\t0x4DAA\n0x8EA4EECD\t0x4085\n0x8EA4EECE\t0x25E21\n0x8EA4EECF\t0x26ACA\n0x8EA4EED0\t0x2759C\n0x8EA4EED1\t0x29C73\n0x8EA4EED2\t0x2A386\n0x8EA4EED3\t0x2A5C1\n0x8EA4EED4\t0x29C09\n0x8EA4EED5\t0x9F96\n0x8EA4EED6\t0x2A6D5\n0x8EA4EED7\t0x4BC2\n0x8EA4EED8\t0x4C31\n0x8EA4EED9\t0x4D11\n0x8EA4EEDA\t0x4DAB\n0x8EA4EEDB\t0x4C9C\n0x8EA4EEDC\t0x291D4\n0x8EA5A1A1\t0x200D1\n0x8EA5A1A2\t0x200CB\n0x8EA5A1A3\t0x200C9\n0x8EA5A1A4\t0x2010C\n0x8EA5A1A5\t0x20000\n0x8EA5A1A6\t0x20087\n0x8EA5A1A7\t0x2010D\n0x8EA5A1A8\t0x2010F\n0x8EA5A1A9\t0x2F81D\n0x8EA5A1AA\t0x22398\n0x8EA5A1AB\t0x200D2\n0x8EA5A1AC\t0x20111\n0x8EA5A1AD\t0x2007E\n0x8EA5A1AE\t0x20AD3\n0x8EA5A1AF\t0x21552\n0x8EA5A1B0\t0x21CFE\n0x8EA5A1B1\t0x225A9\n0x8EA5A1B2\t0x23942\n0x8EA5A1B3\t0x20009\n0x8EA5A1B4\t0x200D6\n0x8EA5A1B5\t0x204DD\n0x8EA5A1B6\t0x204DC\n0x8EA5A1B7\t0x20502\n0x8EA5A1B8\t0x20573\n0x8EA5A1B9\t0x20676\n0x8EA5A1BA\t0x206A7\n0x8EA5A1BB\t0x206A8\n0x8EA5A1BC\t0x20833\n0x8EA5A1BD\t0x208CC\n0x8EA5A1BE\t0x20A0D\n0x8EA5A1BF\t0x20A2C\n0x8EA5A1C0\t0x20B1B\n0x8EA5A1C1\t0x355A\n0x8EA5A1C2\t0x20B1D\n0x8EA5A1C3\t0x20B99\n0x8EA5A1C4\t0x2123E\n0x8EA5A1C5\t0x21D2D\n0x8EA5A1C6\t0x21D2F\n0x8EA5A1C7\t0x22399\n0x8EA5A1C8\t0x233B3\n0x8EA5A1C9\t0x239B6\n0x8EA5A1CA\t0x23B1B\n0x8EA5A1CB\t0x244EF\n0x8EA5A1CC\t0x248E9\n0x8EA5A1CD\t0x20014\n0x8EA5A1CE\t0x20094\n0x8EA5A1CF\t0x200E1\n0x8EA5A1D0\t0x20506\n0x8EA5A1D1\t0x2054A\n0x8EA5A1D2\t0x20544\n0x8EA5A1D3\t0x20631\n0x8EA5A1D4\t0x2067A\n0x8EA5A1D5\t0x206AD\n0x8EA5A1D6\t0x206AE\n0x8EA5A1D7\t0x206B1\n0x8EA5A1D8\t0x20838\n0x8EA5A1D9\t0x20837\n0x8EA5A1DA\t0x2097D\n0x8EA5A1DB\t0x2097E\n0x8EA5A1DC\t0x20A2D\n0x8EA5A1DD\t0x20A32\n0x8EA5A1DE\t0x20B23\n0x8EA5A1DF\t0x20B26\n0x8EA5A1E0\t0x2F83A\n0x8EA5A1E1\t0x20BA0\n0x8EA5A1E2\t0x216A8\n0x8EA5A1E3\t0x2193F\n0x8EA5A1E4\t0x219BC\n0x8EA5A1E5\t0x21BC4\n0x8EA5A1E6\t0x21D3B\n0x8EA5A1E7\t0x22019\n0x8EA5A1E8\t0x22018\n0x8EA5A1E9\t0x221B3\n0x8EA5A1EA\t0x223AA\n0x8EA5A1EB\t0x224BE\n0x8EA5A1EC\t0x225AC\n0x8EA5A1ED\t0x22A25\n0x8EA5A1EE\t0x22A66\n0x8EA5A1EF\t0x22A6B\n0x8EA5A1F0\t0x23943\n0x8EA5A1F1\t0x239B5\n0x8EA5A1F2\t0x23AEC\n0x8EA5A1F3\t0x23C76\n0x8EA5A1F4\t0x3CBC\n0x8EA5A1F5\t0x24614\n0x8EA5A1F6\t0x215DC\n0x8EA5A1F7\t0x2471C\n0x8EA5A1F8\t0x2471D\n0x8EA5A1F9\t0x264D0\n0x8EA5A1FA\t0x26612\n0x8EA5A1FB\t0x26AF3\n0x8EA5A1FC\t0x28669\n0x8EA5A1FD\t0x49B9\n0x8EA5A1FE\t0x28E11\n0x8EA5A2A1\t0x28E15\n0x8EA5A2A2\t0x28E10\n0x8EA5A2A3\t0x28E13\n0x8EA5A2A4\t0x200A4\n0x8EA5A2A5\t0x200A5\n0x8EA5A2A6\t0x201D0\n0x8EA5A2A7\t0x201BA\n0x8EA5A2A8\t0x201CB\n0x8EA5A2A9\t0x2057B\n0x8EA5A2AA\t0x20686\n0x8EA5A2AB\t0x206BB\n0x8EA5A2AC\t0x206BA\n0x8EA5A2AD\t0x206C3\n0x8EA5A2AE\t0x206B9\n0x8EA5A2AF\t0x206C0\n0x8EA5A2B0\t0x34DE\n0x8EA5A2B1\t0x20839\n0x8EA5A2B2\t0x2083B\n0x8EA5A2B3\t0x20841\n0x8EA5A2B4\t0x208D1\n0x8EA5A2B5\t0x208CF\n0x8EA5A2B6\t0x208D2\n0x8EA5A2B7\t0x2092E\n0x8EA5A2B8\t0x2096E\n0x8EA5A2B9\t0x2098C\n0x8EA5A2BA\t0x20988\n0x8EA5A2BB\t0x20A35\n0x8EA5A2BC\t0x3543\n0x8EA5A2BD\t0x20A3A\n0x8EA5A2BE\t0x20A3B\n0x8EA5A2BF\t0x20A38\n0x8EA5A2C0\t0x20A39\n0x8EA5A2C1\t0x20B2E\n0x8EA5A2C2\t0x20B2C\n0x8EA5A2C3\t0x20BC8\n0x8EA5A2C4\t0x20BB5\n0x8EA5A2C5\t0x20BAD\n0x8EA5A2C6\t0x20BB0\n0x8EA5A2C7\t0x20BAB\n0x8EA5A2C8\t0x211B3\n0x8EA5A2C9\t0x211A9\n0x8EA5A2CA\t0x216BB\n0x8EA5A2CB\t0x216B9\n0x8EA5A2CC\t0x21B5A\n0x8EA5A2CD\t0x21BCD\n0x8EA5A2CE\t0x21C2B\n0x8EA5A2CF\t0x21D05\n0x8EA5A2D0\t0x37AC\n0x8EA5A2D1\t0x37AA\n0x8EA5A2D2\t0x21D51\n0x8EA5A2D3\t0x21D4B\n0x8EA5A2D4\t0x21FEA\n0x8EA5A2D5\t0x21FED\n0x8EA5A2D6\t0x22036\n0x8EA5A2D7\t0x22062\n0x8EA5A2D8\t0x22056\n0x8EA5A2D9\t0x22055\n0x8EA5A2DA\t0x22064\n0x8EA5A2DB\t0x22058\n0x8EA5A2DC\t0x5E07\n0x8EA5A2DD\t0x221DA\n0x8EA5A2DE\t0x221D8\n0x8EA5A2DF\t0x223AD\n0x8EA5A2E0\t0x223AB\n0x8EA5A2E1\t0x224C0\n0x8EA5A2E2\t0x224C3\n0x8EA5A2E3\t0x225B3\n0x8EA5A2E4\t0x225B7\n0x8EA5A2E5\t0x225BA\n0x8EA5A2E6\t0x5FCB\n0x8EA5A2E7\t0x38FE\n0x8EA5A2E8\t0x225C7\n0x8EA5A2E9\t0x225B5\n0x8EA5A2EA\t0x2298E\n0x8EA5A2EB\t0x22A73\n0x8EA5A2EC\t0x22A6C\n0x8EA5A2ED\t0x22A74\n0x8EA5A2EE\t0x2F8B4\n0x8EA5A2EF\t0x22A72\n0x8EA5A2F0\t0x22A71\n0x8EA5A2F1\t0x22A82\n0x8EA5A2F2\t0x22A70\n0x8EA5A2F3\t0x2313F\n0x8EA5A2F4\t0x233BA\n0x8EA5A2F5\t0x233B8\n0x8EA5A2F6\t0x239B7\n0x8EA5A2F7\t0x24723\n0x8EA5A2F8\t0x24721\n0x8EA5A2F9\t0x2472B\n0x8EA5A2FA\t0x24726\n0x8EA5A2FB\t0x24722\n0x8EA5A2FC\t0x24D25\n0x8EA5A2FD\t0x250E4\n0x8EA5A2FE\t0x25415\n0x8EA5A3A1\t0x264E4\n0x8EA5A3A2\t0x26633\n0x8EA5A3A3\t0x2662A\n0x8EA5A3A4\t0x26632\n0x8EA5A3A5\t0x26629\n0x8EA5A3A6\t0x26AFB\n0x8EA5A3A7\t0x2795B\n0x8EA5A3A8\t0x2795C\n0x8EA5A3A9\t0x27C28\n0x8EA5A3AA\t0x2866F\n0x8EA5A3AB\t0x2866D\n0x8EA5A3AC\t0x2866B\n0x8EA5A3AD\t0x2866E\n0x8EA5A3AE\t0x28E16\n0x8EA5A3AF\t0x20022\n0x8EA5A3B0\t0x20116\n0x8EA5A3B1\t0x20148\n0x8EA5A3B2\t0x201D8\n0x8EA5A3B3\t0x20200\n0x8EA5A3B4\t0x3441\n0x8EA5A3B5\t0x20480\n0x8EA5A3B6\t0x204E4\n0x8EA5A3B7\t0x34B4\n0x8EA5A3B8\t0x204E7\n0x8EA5A3B9\t0x2050C\n0x8EA5A3BA\t0x20553\n0x8EA5A3BB\t0x205B7\n0x8EA5A3BC\t0x20AE8\n0x8EA5A3BD\t0x206D1\n0x8EA5A3BE\t0x206E5\n0x8EA5A3BF\t0x206D8\n0x8EA5A3C0\t0x206D6\n0x8EA5A3C1\t0x206DA\n0x8EA5A3C2\t0x206D9\n0x8EA5A3C3\t0x206D5\n0x8EA5A3C4\t0x206E6\n0x8EA5A3C5\t0x206D4\n0x8EA5A3C6\t0x206D3\n0x8EA5A3C7\t0x20844\n0x8EA5A3C8\t0x208D6\n0x8EA5A3C9\t0x208D7\n0x8EA5A3CA\t0x20913\n0x8EA5A3CC\t0x20970\n0x8EA5A3CD\t0x20992\n0x8EA5A3CE\t0x209DB\n0x8EA5A3CF\t0x209DA\n0x8EA5A3D0\t0x20A41\n0x8EA5A3D1\t0x20A43\n0x8EA5A3D2\t0x20B33\n0x8EA5A3D3\t0x20BF6\n0x8EA5A3D4\t0x20BD4\n0x8EA5A3D5\t0x20BDD\n0x8EA5A3D6\t0x20BD0\n0x8EA5A3D7\t0x20C04\n0x8EA5A3D8\t0x20BD9\n0x8EA5A3D9\t0x20BDB\n0x8EA5A3DA\t0x20C05\n0x8EA5A3DB\t0x20BD3\n0x8EA5A3DC\t0x20BE1\n0x8EA5A3DD\t0x21280\n0x8EA5A3DE\t0x21277\n0x8EA5A3DF\t0x21281\n0x8EA5A3E0\t0x21282\n0x8EA5A3E1\t0x21283\n0x8EA5A3E2\t0x2F85C\n0x8EA5A3E3\t0x21561\n0x8EA5A3E4\t0x21560\n0x8EA5A3E5\t0x216D8\n0x8EA5A3E6\t0x216D6\n0x8EA5A3E7\t0x216D7\n0x8EA5A3E8\t0x24605\n0x8EA5A3E9\t0x2194D\n0x8EA5A3EA\t0x21948\n0x8EA5A3EB\t0x21BD6\n0x8EA5A3EC\t0x21BCF\n0x8EA5A3ED\t0x21BD9\n0x8EA5A3EE\t0x21BD8\n0x8EA5A3EF\t0x21C3D\n0x8EA5A3F0\t0x37B3\n0x8EA5A3F1\t0x21D54\n0x8EA5A3F2\t0x21D5B\n0x8EA5A3F3\t0x21D5C\n0x8EA5A3F4\t0x37B4\n0x8EA5A3F5\t0x21D59\n0x8EA5A3F6\t0x21D58\n0x8EA5A3F7\t0x21D5A\n0x8EA5A3F8\t0x21D55\n0x8EA5A3F9\t0x21D56\n0x8EA5A3FA\t0x21D82\n0x8EA5A3FB\t0x21FF0\n0x8EA5A3FC\t0x2201C\n0x8EA5A3FD\t0x2206A\n0x8EA5A3FE\t0x22069\n0x8EA5A4A1\t0x22071\n0x8EA5A4A2\t0x22067\n0x8EA5A4A3\t0x2206C\n0x8EA5A4A4\t0x2206E\n0x8EA5A4A5\t0x22079\n0x8EA5A4A6\t0x2218B\n0x8EA5A4A7\t0x221B8\n0x8EA5A4A8\t0x221E7\n0x8EA5A4A9\t0x221E8\n0x8EA5A4AA\t0x221E4\n0x8EA5A4AB\t0x221E6\n0x8EA5A4AC\t0x221E5\n0x8EA5A4AD\t0x221F0\n0x8EA5A4AE\t0x22383\n0x8EA5A4AF\t0x223B7\n0x8EA5A4B0\t0x223BB\n0x8EA5A4B1\t0x223B9\n0x8EA5A4B2\t0x223C5\n0x8EA5A4B3\t0x22453\n0x8EA5A4B4\t0x224C4\n0x8EA5A4B5\t0x224C6\n0x8EA5A4B6\t0x224CB\n0x8EA5A4B7\t0x225C8\n0x8EA5A4B8\t0x2F89F\n0x8EA5A4B9\t0x225C9\n0x8EA5A4BA\t0x225DB\n0x8EA5A4BB\t0x22994\n0x8EA5A4BC\t0x22A95\n0x8EA5A4BD\t0x22A88\n0x8EA5A4BE\t0x22A8D\n0x8EA5A4BF\t0x22EEC\n0x8EA5A4C0\t0x22EEE\n0x8EA5A4C1\t0x22EF1\n0x8EA5A4C2\t0x2312E\n0x8EA5A4C3\t0x23149\n0x8EA5A4C4\t0x2335F\n0x8EA5A4C5\t0x233D1\n0x8EA5A4C6\t0x233CB\n0x8EA5A4C7\t0x23885\n0x8EA5A4C8\t0x3C1D\n0x8EA5A4C9\t0x2394A\n0x8EA5A4CA\t0x23947\n0x8EA5A4CB\t0x2394B\n0x8EA5A4CC\t0x239BB\n0x8EA5A4CD\t0x239C4\n0x8EA5A4CE\t0x3C7C\n0x8EA5A4CF\t0x23B02\n0x8EA5A4D0\t0x23C82\n0x8EA5A4D1\t0x23C91\n0x8EA5A4D2\t0x23C8F\n0x8EA5A4D3\t0x23C92\n0x8EA5A4D4\t0x2418F\n0x8EA5A4D5\t0x24191\n0x8EA5A4D6\t0x241B4\n0x8EA5A4D7\t0x24192\n0x8EA5A4D8\t0x244F4\n0x8EA5A4D9\t0x245AA\n0x8EA5A4DA\t0x24735\n0x8EA5A4DB\t0x24737\n0x8EA5A4DC\t0x2473D\n0x8EA5A4DD\t0x2473C\n0x8EA5A4DE\t0x2472F\n0x8EA5A4DF\t0x24730\n0x8EA5A4E0\t0x248F8\n0x8EA5A4E1\t0x248EF\n0x8EA5A4E2\t0x24B26\n0x8EA5A4E3\t0x3F55\n0x8EA5A4E4\t0x24D26\n0x8EA5A4E5\t0x24D27\n0x8EA5A4E6\t0x24F41\n0x8EA5A4E7\t0x24FC6\n0x8EA5A4E8\t0x24FC7\n0x8EA5A4E9\t0x250EB\n0x8EA5A4EA\t0x250E8\n0x8EA5A4EB\t0x250EA\n0x8EA5A4EC\t0x2541A\n0x8EA5A4ED\t0x25419\n0x8EA5A4EE\t0x4126\n0x8EA5A4EF\t0x25923\n0x8EA5A4F0\t0x25924\n0x8EA5A4F1\t0x25E25\n0x8EA5A4F2\t0x26635\n0x8EA5A4F3\t0x26634\n0x8EA5A4F4\t0x26A07\n0x8EA5A4F5\t0x2721D\n0x8EA5A4F6\t0x277E1\n0x8EA5A4F7\t0x27BAB\n0x8EA5A4F8\t0x28460\n0x8EA5A4F9\t0x28677\n0x8EA5A4FA\t0x2867D\n0x8EA5A4FB\t0x49BC\n0x8EA5A4FC\t0x28E1E\n0x8EA5A4FD\t0x28E1A\n0x8EA5A4FE\t0x28E1D\n0x8EA5A5A1\t0x2006B\n0x8EA5A5A2\t0x2012D\n0x8EA5A5A3\t0x2014C\n0x8EA5A5A4\t0x2022A\n0x8EA5A5A5\t0x344A\n0x8EA5A5A6\t0x20215\n0x8EA5A5A7\t0x2022C\n0x8EA5A5A8\t0x20206\n0x8EA5A5A9\t0x20208\n0x8EA5A5AA\t0x2020A\n0x8EA5A5AB\t0x344E\n0x8EA5A5AC\t0x20556\n0x8EA5A5AD\t0x20584\n0x8EA5A5AE\t0x34C9\n0x8EA5A5AF\t0x205C6\n0x8EA5A5B0\t0x206F5\n0x8EA5A5B1\t0x20709\n0x8EA5A5B2\t0x206F8\n0x8EA5A5B3\t0x206E8\n0x8EA5A5B4\t0x206FB\n0x8EA5A5B5\t0x206E9\n0x8EA5A5B6\t0x206F6\n0x8EA5A5B7\t0x52B7\n0x8EA5A5B8\t0x52B8\n0x8EA5A5B9\t0x20852\n0x8EA5A5BA\t0x52B6\n0x8EA5A5BB\t0x52BA\n0x8EA5A5BC\t0x20854\n0x8EA5A5BD\t0x20851\n0x8EA5A5BE\t0x20939\n0x8EA5A5BF\t0x2093A\n0x8EA5A5C0\t0x20998\n0x8EA5A5C1\t0x20A4E\n0x8EA5A5C2\t0x357B\n0x8EA5A5C3\t0x20C36\n0x8EA5A5C4\t0x20C0C\n0x8EA5A5C5\t0x20C10\n0x8EA5A5C6\t0x20C32\n0x8EA5A5C7\t0x20C11\n0x8EA5A5C8\t0x20C18\n0x8EA5A5C9\t0x20C1C\n0x8EA5A5CA\t0x20C1A\n0x8EA5A5CB\t0x20C19\n0x8EA5A5CC\t0x20C0B\n0x8EA5A5CD\t0x20C0F\n0x8EA5A5CE\t0x20C1D\n0x8EA5A5CF\t0x20C21\n0x8EA5A5D0\t0x20C13\n0x8EA5A5D1\t0x20C1B\n0x8EA5A5D2\t0x20C15\n0x8EA5A5D3\t0x3620\n0x8EA5A5D4\t0x211D1\n0x8EA5A5D5\t0x211C8\n0x8EA5A5D6\t0x2128D\n0x8EA5A5D7\t0x212B5\n0x8EA5A5D8\t0x3689\n0x8EA5A5D9\t0x3695\n0x8EA5A5DA\t0x215F8\n0x8EA5A5DB\t0x216E0\n0x8EA5A5DC\t0x216E1\n0x8EA5A5DD\t0x36BE\n0x8EA5A5DE\t0x216DE\n0x8EA5A5DF\t0x216FE\n0x8EA5A5E0\t0x216DC\n0x8EA5A5E1\t0x21701\n0x8EA5A5E2\t0x216FD\n0x8EA5A5E3\t0x21700\n0x8EA5A5E4\t0x219D7\n0x8EA5A5E5\t0x219D6\n0x8EA5A5E6\t0x219D9\n0x8EA5A5E7\t0x21B65\n0x8EA5A5E8\t0x21BD2\n0x8EA5A5E9\t0x21BDC\n0x8EA5A5EA\t0x21BE1\n0x8EA5A5EB\t0x21BDE\n0x8EA5A5EC\t0x21C42\n0x8EA5A5ED\t0x21C4B\n0x8EA5A5EE\t0x37C3\n0x8EA5A5EF\t0x21D8E\n0x8EA5A5F0\t0x21D91\n0x8EA5A5F1\t0x21D8B\n0x8EA5A5F2\t0x21D90\n0x8EA5A5F3\t0x21D88\n0x8EA5A5F4\t0x21D89\n0x8EA5A5F5\t0x21D84\n0x8EA5A5F6\t0x21DAA\n0x8EA5A5F7\t0x2208D\n0x8EA5A5F8\t0x2208F\n0x8EA5A5F9\t0x2207D\n0x8EA5A5FA\t0x2207F\n0x8EA5A5FB\t0x2207B\n0x8EA5A5FC\t0x22080\n0x8EA5A5FD\t0x2207E\n0x8EA5A5FE\t0x22083\n0x8EA5A6A1\t0x22081\n0x8EA5A6A2\t0x22086\n0x8EA5A6A3\t0x2208A\n0x8EA5A6A4\t0x221BD\n0x8EA5A6A5\t0x221BE\n0x8EA5A6A6\t0x3877\n0x8EA5A6A7\t0x221F4\n0x8EA5A6A8\t0x221F3\n0x8EA5A6A9\t0x22202\n0x8EA5A6AA\t0x221F6\n0x8EA5A6AB\t0x221F5\n0x8EA5A6AC\t0x221F2\n0x8EA5A6AD\t0x22204\n0x8EA5A6AE\t0x2233D\n0x8EA5A6AF\t0x223C6\n0x8EA5A6B0\t0x22489\n0x8EA5A6B1\t0x224D4\n0x8EA5A6B2\t0x224D6\n0x8EA5A6B3\t0x224D2\n0x8EA5A6B4\t0x225FA\n0x8EA5A6B5\t0x22606\n0x8EA5A6B6\t0x2260C\n0x8EA5A6B7\t0x2260A\n0x8EA5A6B8\t0x2260F\n0x8EA5A6B9\t0x22A2F\n0x8EA5A6BA\t0x39D4\n0x8EA5A6BB\t0x22AB7\n0x8EA5A6BC\t0x22ABE\n0x8EA5A6BD\t0x22ABC\n0x8EA5A6BE\t0x22AE2\n0x8EA5A6BF\t0x22F06\n0x8EA5A6C0\t0x22EF7\n0x8EA5A6C1\t0x22F07\n0x8EA5A6C2\t0x22EF6\n0x8EA5A6C3\t0x23B35\n0x8EA5A6C4\t0x2315F\n0x8EA5A6C5\t0x23165\n0x8EA5A6C6\t0x23164\n0x8EA5A6C7\t0x23161\n0x8EA5A6C8\t0x2315A\n0x8EA5A6C9\t0x2315D\n0x8EA5A6CA\t0x2F8D7\n0x8EA5A6CB\t0x233D7\n0x8EA5A6CC\t0x233D5\n0x8EA5A6CD\t0x233DE\n0x8EA5A6CE\t0x233E1\n0x8EA5A6CF\t0x233E0\n0x8EA5A6D0\t0x233D9\n0x8EA5A6D1\t0x3B4C\n0x8EA5A6D2\t0x233DA\n0x8EA5A6D3\t0x233DF\n0x8EA5A6D4\t0x233F6\n0x8EA5A6D5\t0x23403\n0x8EA5A6D6\t0x3C20\n0x8EA5A6D7\t0x23893\n0x8EA5A6D8\t0x2388B\n0x8EA5A6D9\t0x23891\n0x8EA5A6DA\t0x23892\n0x8EA5A6DB\t0x2388A\n0x8EA5A6DC\t0x23889\n0x8EA5A6DD\t0x2388F\n0x8EA5A6DE\t0x23956\n0x8EA5A6DF\t0x23959\n0x8EA5A6E0\t0x239CA\n0x8EA5A6E1\t0x239CC\n0x8EA5A6E2\t0x3C5B\n0x8EA5A6E3\t0x239D0\n0x8EA5A6E4\t0x239CD\n0x8EA5A6E5\t0x239D6\n0x8EA5A6E6\t0x239CB\n0x8EA5A6E7\t0x23A83\n0x8EA5A6E8\t0x23A82\n0x8EA5A6E9\t0x23B06\n0x8EA5A6EA\t0x23B2A\n0x8EA5A6EB\t0x23B2C\n0x8EA5A6EC\t0x23B2B\n0x8EA5A6ED\t0x23B29\n0x8EA5A6EE\t0x23CBD\n0x8EA5A6EF\t0x23CB3\n0x8EA5A6F0\t0x23CBE\n0x8EA5A6F1\t0x23CC0\n0x8EA5A6F2\t0x23CB5\n0x8EA5A6F3\t0x23CB6\n0x8EA5A6F4\t0x2419D\n0x8EA5A6F5\t0x2419F\n0x8EA5A6F6\t0x24620\n0x8EA5A6F7\t0x3E2D\n0x8EA5A6F8\t0x2461E\n0x8EA5A6F9\t0x2461C\n0x8EA5A6FA\t0x24632\n0x8EA5A6FB\t0x2461F\n0x8EA5A6FC\t0x2462B\n0x8EA5A6FD\t0x24621\n0x8EA5A6FE\t0x24626\n0x8EA5A7A1\t0x24624\n0x8EA5A7A2\t0x2461D\n0x8EA5A7A3\t0x24627\n0x8EA5A7A4\t0x2475B\n0x8EA5A7A5\t0x24759\n0x8EA5A7A6\t0x24780\n0x8EA5A7A7\t0x24755\n0x8EA5A7A8\t0x24750\n0x8EA5A7A9\t0x2475A\n0x8EA5A7AA\t0x24756\n0x8EA5A7AB\t0x24763\n0x8EA5A7AC\t0x24752\n0x8EA5A7AD\t0x24758\n0x8EA5A7AE\t0x3E63\n0x8EA5A7AF\t0x24739\n0x8EA5A7B0\t0x248F9\n0x8EA5A7B1\t0x24B28\n0x8EA5A7B2\t0x3F18\n0x8EA5A7B3\t0x24BBC\n0x8EA5A7B4\t0x24BD6\n0x8EA5A7B5\t0x24C05\n0x8EA5A7B6\t0x24C20\n0x8EA5A7B7\t0x3F74\n0x8EA5A7B8\t0x24D33\n0x8EA5A7B9\t0x24F46\n0x8EA5A7BA\t0x24F42\n0x8EA5A7BB\t0x24F43\n0x8EA5A7BC\t0x24F47\n0x8EA5A7BD\t0x24FCB\n0x8EA5A7BE\t0x25042\n0x8EA5A7BF\t0x25045\n0x8EA5A7C0\t0x250FD\n0x8EA5A7C1\t0x250F4\n0x8EA5A7C2\t0x250F9\n0x8EA5A7C3\t0x250FA\n0x8EA5A7C4\t0x2535E\n0x8EA5A7C5\t0x2541D\n0x8EA5A7C6\t0x4128\n0x8EA5A7C7\t0x25758\n0x8EA5A7C8\t0x25755\n0x8EA5A7C9\t0x25A57\n0x8EA5A7CA\t0x25A58\n0x8EA5A7CB\t0x25AD9\n0x8EA5A7CC\t0x25ADC\n0x8EA5A7CD\t0x25ADB\n0x8EA5A7CE\t0x25E27\n0x8EA5A7CF\t0x25F85\n0x8EA5A7D0\t0x25F87\n0x8EA5A7D1\t0x25F8A\n0x8EA5A7D2\t0x2628B\n0x8EA5A7D3\t0x2634F\n0x8EA5A7D4\t0x26530\n0x8EA5A7D5\t0x2652F\n0x8EA5A7D6\t0x26668\n0x8EA5A7D7\t0x26649\n0x8EA5A7D8\t0x43DA\n0x8EA5A7D9\t0x26648\n0x8EA5A7DA\t0x2663F\n0x8EA5A7DB\t0x2664B\n0x8EA5A7DC\t0x2665C\n0x8EA5A7DD\t0x26646\n0x8EA5A7DE\t0x26640\n0x8EA5A7DF\t0x26A0D\n0x8EA5A7E0\t0x26B1B\n0x8EA5A7E1\t0x26B1D\n0x8EA5A7E2\t0x26B17\n0x8EA5A7E3\t0x44A4\n0x8EA5A7E4\t0x26B22\n0x8EA5A7E5\t0x275A7\n0x8EA5A7E6\t0x27608\n0x8EA5A7E7\t0x27806\n0x8EA5A7E8\t0x2847D\n0x8EA5A7E9\t0x488E\n0x8EA5A7EA\t0x28463\n0x8EA5A7EB\t0x28464\n0x8EA5A7EC\t0x2847F\n0x8EA5A7ED\t0x2846B\n0x8EA5A7EE\t0x2847C\n0x8EA5A7EF\t0x28468\n0x8EA5A7F0\t0x28465\n0x8EA5A7F1\t0x2846A\n0x8EA5A7F2\t0x28698\n0x8EA5A7F3\t0x28699\n0x8EA5A7F4\t0x286AE\n0x8EA5A7F5\t0x28E2B\n0x8EA5A7F6\t0x28E2D\n0x8EA5A7F7\t0x28E31\n0x8EA5A7F8\t0x28E2E\n0x8EA5A7F9\t0x28E2F\n0x8EA5A7FA\t0x2006D\n0x8EA5A7FB\t0x20131\n0x8EA5A7FC\t0x2022D\n0x8EA5A7FD\t0x20239\n0x8EA5A7FE\t0x20238\n0x8EA5A8A1\t0x345B\n0x8EA5A8A2\t0x2023A\n0x8EA5A8A3\t0x20235\n0x8EA5A8A4\t0x20262\n0x8EA5A8A5\t0x204EA\n0x8EA5A8A6\t0x204EB\n0x8EA5A8A7\t0x20515\n0x8EA5A8A8\t0x205CC\n0x8EA5A8A9\t0x205C8\n0x8EA5A8AA\t0x205CD\n0x8EA5A8AB\t0x205DB\n0x8EA5A8AC\t0x205CB\n0x8EA5A8AD\t0x20711\n0x8EA5A8AE\t0x20726\n0x8EA5A8AF\t0x20862\n0x8EA5A8B0\t0x2085E\n0x8EA5A8B1\t0x20861\n0x8EA5A8B2\t0x20941\n0x8EA5A8B3\t0x2093F\n0x8EA5A8B4\t0x20975\n0x8EA5A8B5\t0x23965\n0x8EA5A8B6\t0x20B49\n0x8EA5A8B7\t0x209EB\n0x8EA5A8B8\t0x20A1A\n0x8EA5A8B9\t0x20A57\n0x8EA5A8BA\t0x20C6B\n0x8EA5A8BB\t0x20CA9\n0x8EA5A8BC\t0x20C54\n0x8EA5A8BD\t0x20C62\n0x8EA5A8BE\t0x20CAA\n0x8EA5A8BF\t0x20C58\n0x8EA5A8C0\t0x20C72\n0x8EA5A8C1\t0x20C63\n0x8EA5A8C2\t0x20C73\n0x8EA5A8C3\t0x20C8B\n0x8EA5A8C4\t0x20C8C\n0x8EA5A8C5\t0x20C5C\n0x8EA5A8C6\t0x20C51\n0x8EA5A8C7\t0x20C16\n0x8EA5A8C8\t0x20C60\n0x8EA5A8C9\t0x20C61\n0x8EA5A8CA\t0x20C5E\n0x8EA5A8CB\t0x20C5D\n0x8EA5A8CC\t0x20C64\n0x8EA5A8CD\t0x20C53\n0x8EA5A8CE\t0x20C5F\n0x8EA5A8CF\t0x20C5B\n0x8EA5A8D0\t0x20C6E\n0x8EA5A8D1\t0x20C55\n0x8EA5A8D2\t0x20C52\n0x8EA5A8D3\t0x20C68\n0x8EA5A8D4\t0x211D2\n0x8EA5A8D5\t0x211D6\n0x8EA5A8D6\t0x211D3\n0x8EA5A8D7\t0x212B8\n0x8EA5A8D8\t0x212BB\n0x8EA5A8D9\t0x212EB\n0x8EA5A8DA\t0x212E8\n0x8EA5A8DB\t0x212B6\n0x8EA5A8DC\t0x212EA\n0x8EA5A8DD\t0x212E7\n0x8EA5A8DE\t0x212E9\n0x8EA5A8DF\t0x21591\n0x8EA5A8E0\t0x21610\n0x8EA5A8E1\t0x2160E\n0x8EA5A8E2\t0x2160F\n0x8EA5A8E3\t0x2170B\n0x8EA5A8E4\t0x21703\n0x8EA5A8E5\t0x2172B\n0x8EA5A8E6\t0x21709\n0x8EA5A8E7\t0x21728\n0x8EA5A8E8\t0x2172C\n0x8EA5A8E9\t0x21725\n0x8EA5A8EA\t0x21727\n0x8EA5A8EB\t0x2170F\n0x8EA5A8EC\t0x219E9\n0x8EA5A8ED\t0x219EC\n0x8EA5A8EE\t0x3753\n0x8EA5A8EF\t0x21B27\n0x8EA5A8F0\t0x21B73\n0x8EA5A8F1\t0x21BE2\n0x8EA5A8F2\t0x21BE6\n0x8EA5A8F3\t0x2F876\n0x8EA5A8F4\t0x21C61\n0x8EA5A8F5\t0x21C51\n0x8EA5A8F6\t0x21D12\n0x8EA5A8F7\t0x21D0E\n0x8EA5A8F8\t0x21DAD\n0x8EA5A8F9\t0x21DAF\n0x8EA5A8FA\t0x21DB1\n0x8EA5A8FB\t0x21DD3\n0x8EA5A8FC\t0x22094\n0x8EA5A8FD\t0x22092\n0x8EA5A8FE\t0x22090\n0x8EA5A9A1\t0x2209D\n0x8EA5A9A2\t0x22093\n0x8EA5A9A3\t0x22095\n0x8EA5A9A4\t0x22098\n0x8EA5A9A5\t0x22097\n0x8EA5A9A6\t0x3880\n0x8EA5A9A7\t0x2F88A\n0x8EA5A9A8\t0x22207\n0x8EA5A9A9\t0x2220B\n0x8EA5A9AA\t0x22208\n0x8EA5A9AB\t0x223D9\n0x8EA5A9AC\t0x223D5\n0x8EA5A9AD\t0x224D7\n0x8EA5A9AE\t0x224DF\n0x8EA5A9AF\t0x38DD\n0x8EA5A9B0\t0x224DE\n0x8EA5A9B1\t0x224E3\n0x8EA5A9B2\t0x224E2\n0x8EA5A9B3\t0x38DE\n0x8EA5A9B4\t0x22647\n0x8EA5A9B5\t0x3922\n0x8EA5A9B6\t0x2263D\n0x8EA5A9B7\t0x22638\n0x8EA5A9B8\t0x22A44\n0x8EA5A9B9\t0x22A3A\n0x8EA5A9BA\t0x22AB8\n0x8EA5A9BB\t0x22B2A\n0x8EA5A9BC\t0x22B00\n0x8EA5A9BD\t0x22AF3\n0x8EA5A9BE\t0x22AF2\n0x8EA5A9BF\t0x22AEB\n0x8EA5A9C0\t0x22AFA\n0x8EA5A9C1\t0x22AED\n0x8EA5A9C2\t0x22AEC\n0x8EA5A9C3\t0x22AFF\n0x8EA5A9C4\t0x22AFB\n0x8EA5A9C5\t0x6306\n0x8EA5A9C6\t0x22B4E\n0x8EA5A9C7\t0x22AEF\n0x8EA5A9C8\t0x22AF7\n0x8EA5A9C9\t0x22F10\n0x8EA5A9CA\t0x22F11\n0x8EA5A9CB\t0x22F0C\n0x8EA5A9CC\t0x22F0B\n0x8EA5A9CD\t0x230DD\n0x8EA5A9CE\t0x23130\n0x8EA5A9CF\t0x3ADB\n0x8EA5A9D0\t0x2317A\n0x8EA5A9D1\t0x23177\n0x8EA5A9D2\t0x23328\n0x8EA5A9D3\t0x23327\n0x8EA5A9D4\t0x23365\n0x8EA5A9D5\t0x2340E\n0x8EA5A9D6\t0x2340B\n0x8EA5A9D7\t0x23441\n0x8EA5A9D8\t0x23413\n0x8EA5A9D9\t0x2340F\n0x8EA5A9DA\t0x23412\n0x8EA5A9DB\t0x23430\n0x8EA5A9DC\t0x238A0\n0x8EA5A9DD\t0x238A3\n0x8EA5A9DE\t0x2389E\n0x8EA5A9DF\t0x23897\n0x8EA5A9E0\t0x238A1\n0x8EA5A9E1\t0x2389D\n0x8EA5A9E2\t0x2389B\n0x8EA5A9E3\t0x23963\n0x8EA5A9E4\t0x239E3\n0x8EA5A9E5\t0x239E4\n0x8EA5A9E6\t0x239E6\n0x8EA5A9E7\t0x239E7\n0x8EA5A9E8\t0x239DD\n0x8EA5A9E9\t0x6B85\n0x8EA5A9EA\t0x239EC\n0x8EA5A9EB\t0x239E5\n0x8EA5A9EC\t0x239F1\n0x8EA5A9ED\t0x23B3B\n0x8EA5A9EE\t0x23B39\n0x8EA5A9EF\t0x23B3A\n0x8EA5A9F0\t0x23B3C\n0x8EA5A9F1\t0x23B3D\n0x8EA5A9F2\t0x23B47\n0x8EA5A9F3\t0x23B3F\n0x8EA5A9F4\t0x23B44\n0x8EA5A9F5\t0x23C48\n0x8EA5A9F6\t0x23C49\n0x8EA5A9F7\t0x23C60\n0x8EA5A9F8\t0x23CE3\n0x8EA5A9F9\t0x23CE9\n0x8EA5A9FA\t0x23CF0\n0x8EA5A9FB\t0x3CDA\n0x8EA5A9FC\t0x3CDB\n0x8EA5A9FD\t0x23CF2\n0x8EA5A9FE\t0x23CED\n0x8EA5AAA1\t0x23CEC\n0x8EA5AAA2\t0x23CE6\n0x8EA5AAA3\t0x23D16\n0x8EA5AAA4\t0x3CD7\n0x8EA5AAA5\t0x241BC\n0x8EA5AAA6\t0x241BE\n0x8EA5AAA7\t0x241C0\n0x8EA5AAA8\t0x241E0\n0x8EA5AAA9\t0x24500\n0x8EA5AAAA\t0x24502\n0x8EA5AAAB\t0x244FE\n0x8EA5AAAC\t0x2455E\n0x8EA5AAAD\t0x245B3\n0x8EA5AAAE\t0x245B7\n0x8EA5AAAF\t0x2463A\n0x8EA5AAB0\t0x24639\n0x8EA5AAB1\t0x2463E\n0x8EA5AAB2\t0x24638\n0x8EA5AAB3\t0x2463D\n0x8EA5AAB4\t0x2464F\n0x8EA5AAB5\t0x2476E\n0x8EA5AAB6\t0x2475F\n0x8EA5AAB7\t0x24781\n0x8EA5AAB8\t0x24782\n0x8EA5AAB9\t0x24771\n0x8EA5AABA\t0x2477B\n0x8EA5AABB\t0x24779\n0x8EA5AABC\t0x24777\n0x8EA5AABD\t0x24773\n0x8EA5AABE\t0x2476F\n0x8EA5AABF\t0x24797\n0x8EA5AAC0\t0x2477E\n0x8EA5AAC1\t0x248FC\n0x8EA5AAC2\t0x24911\n0x8EA5AAC3\t0x24932\n0x8EA5AAC4\t0x24931\n0x8EA5AAC5\t0x24910\n0x8EA5AAC6\t0x24AEC\n0x8EA5AAC7\t0x24AEB\n0x8EA5AAC8\t0x24B2C\n0x8EA5AAC9\t0x24B2D\n0x8EA5AACA\t0x24BDA\n0x8EA5AACB\t0x24C2E\n0x8EA5AACC\t0x24C2C\n0x8EA5AACD\t0x24C2A\n0x8EA5AACE\t0x24C33\n0x8EA5AACF\t0x24C4B\n0x8EA5AAD0\t0x24D18\n0x8EA5AAD1\t0x24D42\n0x8EA5AAD2\t0x24D3B\n0x8EA5AAD3\t0x24D3F\n0x8EA5AAD4\t0x24D41\n0x8EA5AAD5\t0x24D43\n0x8EA5AAD6\t0x24D3C\n0x8EA5AAD7\t0x24F4C\n0x8EA5AAD8\t0x24F4A\n0x8EA5AAD9\t0x24F49\n0x8EA5AADA\t0x24F56\n0x8EA5AADB\t0x24FCF\n0x8EA5AADC\t0x25047\n0x8EA5AADD\t0x25048\n0x8EA5AADE\t0x25046\n0x8EA5AADF\t0x2511B\n0x8EA5AAE0\t0x25111\n0x8EA5AAE1\t0x25114\n0x8EA5AAE2\t0x2511D\n0x8EA5AAE3\t0x25117\n0x8EA5AAE4\t0x2511E\n0x8EA5AAE5\t0x2510B\n0x8EA5AAE6\t0x2511C\n0x8EA5AAE7\t0x25112\n0x8EA5AAE8\t0x25116\n0x8EA5AAE9\t0x2510D\n0x8EA5AAEA\t0x25115\n0x8EA5AAEB\t0x25113\n0x8EA5AAEC\t0x25118\n0x8EA5AAED\t0x401A\n0x8EA5AAEE\t0x253AC\n0x8EA5AAEF\t0x25444\n0x8EA5AAF0\t0x2542C\n0x8EA5AAF1\t0x25445\n0x8EA5AAF2\t0x25766\n0x8EA5AAF3\t0x2576E\n0x8EA5AAF4\t0x25765\n0x8EA5AAF5\t0x25768\n0x8EA5AAF6\t0x25784\n0x8EA5AAF7\t0x25938\n0x8EA5AAF8\t0x2593B\n0x8EA5AAF9\t0x2593A\n0x8EA5AAFA\t0x2593F\n0x8EA5AAFB\t0x25ADF\n0x8EA5AAFC\t0x25ADD\n0x8EA5AAFD\t0x25ADE\n0x8EA5AAFE\t0x25AE2\n0x8EA5ABA1\t0x41D6\n0x8EA5ABA2\t0x25E2C\n0x8EA5ABA3\t0x25E2F\n0x8EA5ABA4\t0x25F8F\n0x8EA5ABA5\t0x25F90\n0x8EA5ABA6\t0x25F8C\n0x8EA5ABA7\t0x25F93\n0x8EA5ABA8\t0x26225\n0x8EA5ABA9\t0x26288\n0x8EA5ABAA\t0x262A7\n0x8EA5ABAB\t0x263F7\n0x8EA5ABAC\t0x264BB\n0x8EA5ABAD\t0x26538\n0x8EA5ABAE\t0x26539\n0x8EA5ABAF\t0x26537\n0x8EA5ABB0\t0x26614\n0x8EA5ABB1\t0x2666E\n0x8EA5ABB2\t0x2667B\n0x8EA5ABB3\t0x43DE\n0x8EA5ABB4\t0x2666C\n0x8EA5ABB5\t0x2667F\n0x8EA5ABB6\t0x26678\n0x8EA5ABB7\t0x2667A\n0x8EA5ABB8\t0x2666F\n0x8EA5ABB9\t0x43E5\n0x8EA5ABBA\t0x268FE\n0x8EA5ABBB\t0x26B48\n0x8EA5ABBC\t0x26B4B\n0x8EA5ABBD\t0x26B41\n0x8EA5ABBE\t0x26B49\n0x8EA5ABBF\t0x26B3B\n0x8EA5ABC0\t0x2722D\n0x8EA5ABC1\t0x275E3\n0x8EA5ABC2\t0x2761A\n0x8EA5ABC3\t0x2760D\n0x8EA5ABC4\t0x27613\n0x8EA5ABC5\t0x27611\n0x8EA5ABC6\t0x2761C\n0x8EA5ABC7\t0x4672\n0x8EA5ABC8\t0x278B5\n0x8EA5ABC9\t0x46AF\n0x8EA5ABCA\t0x27C29\n0x8EA5ABCB\t0x27CA1\n0x8EA5ABCC\t0x27D24\n0x8EA5ABCD\t0x27FBB\n0x8EA5ABCE\t0x282A1\n0x8EA5ABCF\t0x28483\n0x8EA5ABD0\t0x2848D\n0x8EA5ABD1\t0x28487\n0x8EA5ABD2\t0x28485\n0x8EA5ABD3\t0x2848A\n0x8EA5ABD4\t0x284A3\n0x8EA5ABD5\t0x28489\n0x8EA5ABD6\t0x28484\n0x8EA5ABD7\t0x284A2\n0x8EA5ABD8\t0x286B1\n0x8EA5ABD9\t0x286B0\n0x8EA5ABDA\t0x286AF\n0x8EA5ABDB\t0x286B6\n0x8EA5ABDC\t0x286C9\n0x8EA5ABDD\t0x286CA\n0x8EA5ABDE\t0x286C8\n0x8EA5ABDF\t0x286B4\n0x8EA5ABE0\t0x28C59\n0x8EA5ABE1\t0x28CC9\n0x8EA5ABE2\t0x28E41\n0x8EA5ABE3\t0x28E4C\n0x8EA5ABE4\t0x49C4\n0x8EA5ABE5\t0x28E45\n0x8EA5ABE6\t0x28E5A\n0x8EA5ABE7\t0x200B9\n0x8EA5ABE8\t0x20294\n0x8EA5ABE9\t0x2026E\n0x8EA5ABEA\t0x202A2\n0x8EA5ABEB\t0x20267\n0x8EA5ABEC\t0x3463\n0x8EA5ABED\t0x202A3\n0x8EA5ABEE\t0x20276\n0x8EA5ABEF\t0x2026C\n0x8EA5ABF0\t0x20264\n0x8EA5ABF1\t0x202A5\n0x8EA5ABF2\t0x20230\n0x8EA5ABF3\t0x202A6\n0x8EA5ABF4\t0x20269\n0x8EA5ABF5\t0x202A4\n0x8EA5ABF6\t0x20490\n0x8EA5ABF7\t0x2055F\n0x8EA5ABF8\t0x20560\n0x8EA5ABF9\t0x205DA\n0x8EA5ABFA\t0x205D8\n0x8EA5ABFB\t0x205DD\n0x8EA5ABFC\t0x34EC\n0x8EA5ABFD\t0x20759\n0x8EA5ABFE\t0x2075B\n0x8EA5ACA1\t0x2075A\n0x8EA5ACA2\t0x20739\n0x8EA5ACA3\t0x20734\n0x8EA5ACA4\t0x20744\n0x8EA5ACA5\t0x20733\n0x8EA5ACA6\t0x2073C\n0x8EA5ACA7\t0x20758\n0x8EA5ACA8\t0x2076A\n0x8EA5ACA9\t0x2086F\n0x8EA5ACAA\t0x20872\n0x8EA5ACAB\t0x20870\n0x8EA5ACAC\t0x20871\n0x8EA5ACAD\t0x2086E\n0x8EA5ACAE\t0x208F0\n0x8EA5ACAF\t0x208EB\n0x8EA5ACB0\t0x20949\n0x8EA5ACB1\t0x2094C\n0x8EA5ACB2\t0x209F5\n0x8EA5ACB3\t0x20A20\n0x8EA5ACB4\t0x20A6A\n0x8EA5ACB5\t0x20A72\n0x8EA5ACB6\t0x20B4B\n0x8EA5ACB7\t0x20B5D\n0x8EA5ACB8\t0x20C50\n0x8EA5ACB9\t0x20CF9\n0x8EA5ACBA\t0x20CFA\n0x8EA5ACBB\t0x20CFB\n0x8EA5ACBC\t0x20D23\n0x8EA5ACBD\t0x20CB7\n0x8EA5ACBE\t0x20D22\n0x8EA5ACBF\t0x20CB5\n0x8EA5ACC0\t0x20CC4\n0x8EA5ACC1\t0x20CB4\n0x8EA5ACC2\t0x20CEF\n0x8EA5ACC3\t0x3598\n0x8EA5ACC4\t0x20CCD\n0x8EA5ACC5\t0x20CF0\n0x8EA5ACC6\t0x20CB8\n0x8EA5ACC7\t0x20CCB\n0x8EA5ACC8\t0x20CF1\n0x8EA5ACC9\t0x20CBA\n0x8EA5ACCA\t0x20D03\n0x8EA5ACCB\t0x20CF8\n0x8EA5ACCC\t0x20CB6\n0x8EA5ACCD\t0x20CBC\n0x8EA5ACCE\t0x20CB3\n0x8EA5ACCF\t0x20D21\n0x8EA5ACD0\t0x20CF7\n0x8EA5ACD1\t0x20CC2\n0x8EA5ACD2\t0x20CBE\n0x8EA5ACD3\t0x20CC9\n0x8EA5ACD4\t0x20CBD\n0x8EA5ACD5\t0x20CCE\n0x8EA5ACD6\t0x20CB9\n0x8EA5ACD7\t0x20CC7\n0x8EA5ACD8\t0x20CCA\n0x8EA5ACD9\t0x20CCC\n0x8EA5ACDA\t0x20D26\n0x8EA5ACDB\t0x211E4\n0x8EA5ACDC\t0x211E0\n0x8EA5ACDD\t0x211F0\n0x8EA5ACDE\t0x212EC\n0x8EA5ACDF\t0x21324\n0x8EA5ACE0\t0x21318\n0x8EA5ACE1\t0x2132F\n0x8EA5ACE2\t0x21325\n0x8EA5ACE3\t0x21528\n0x8EA5ACE4\t0x21522\n0x8EA5ACE5\t0x2156A\n0x8EA5ACE6\t0x20157\n0x8EA5ACE7\t0x21594\n0x8EA5ACE8\t0x21592\n0x8EA5ACE9\t0x2159C\n0x8EA5ACEA\t0x21622\n0x8EA5ACEB\t0x21630\n0x8EA5ACEC\t0x2161D\n0x8EA5ACED\t0x21623\n0x8EA5ACEE\t0x21735\n0x8EA5ACEF\t0x21733\n0x8EA5ACF0\t0x2172F\n0x8EA5ACF1\t0x2174D\n0x8EA5ACF2\t0x21731\n0x8EA5ACF3\t0x2175B\n0x8EA5ACF4\t0x2175A\n0x8EA5ACF5\t0x21732\n0x8EA5ACF6\t0x2175C\n0x8EA5ACF7\t0x21759\n0x8EA5ACF8\t0x2175D\n0x8EA5ACF9\t0x21969\n0x8EA5ACFA\t0x2196D\n0x8EA5ACFB\t0x22232\n0x8EA5ACFC\t0x3758\n0x8EA5ACFD\t0x21A0A\n0x8EA5ACFE\t0x21A20\n0x8EA5ADA1\t0x21A1F\n0x8EA5ADA2\t0x21A0D\n0x8EA5ADA3\t0x21BE8\n0x8EA5ADA4\t0x21BEC\n0x8EA5ADA5\t0x21C77\n0x8EA5ADA6\t0x21C70\n0x8EA5ADA7\t0x21C71\n0x8EA5ADA8\t0x21DF8\n0x8EA5ADA9\t0x21DD6\n0x8EA5ADAA\t0x21DD9\n0x8EA5ADAB\t0x21DDE\n0x8EA5ADAC\t0x21DD5\n0x8EA5ADAD\t0x21DE1\n0x8EA5ADAE\t0x37D3\n0x8EA5ADAF\t0x21DE2\n0x8EA5ADB0\t0x21DDD\n0x8EA5ADB1\t0x21DE0\n0x8EA5ADB2\t0x21E0E\n0x8EA5ADB3\t0x21E08\n0x8EA5ADB4\t0x21DDC\n0x8EA5ADB5\t0x21E0A\n0x8EA5ADB6\t0x21E0C\n0x8EA5ADB7\t0x220B4\n0x8EA5ADB8\t0x220B1\n0x8EA5ADB9\t0x220B6\n0x8EA5ADBA\t0x220BC\n0x8EA5ADBB\t0x2221D\n0x8EA5ADBC\t0x22224\n0x8EA5ADBD\t0x22219\n0x8EA5ADBE\t0x2221B\n0x8EA5ADBF\t0x22222\n0x8EA5ADC0\t0x2221A\n0x8EA5ADC1\t0x2221C\n0x8EA5ADC2\t0x22221\n0x8EA5ADC3\t0x223E6\n0x8EA5ADC4\t0x223E4\n0x8EA5ADC5\t0x223E7\n0x8EA5ADC6\t0x223EA\n0x8EA5ADC7\t0x38E2\n0x8EA5ADC8\t0x2F89B\n0x8EA5ADC9\t0x224F0\n0x8EA5ADCA\t0x224F5\n0x8EA5ADCB\t0x224EF\n0x8EA5ADCC\t0x22642\n0x8EA5ADCD\t0x2266E\n0x8EA5ADCE\t0x2263C\n0x8EA5ADCF\t0x22697\n0x8EA5ADD0\t0x2268C\n0x8EA5ADD1\t0x22681\n0x8EA5ADD2\t0x22671\n0x8EA5ADD3\t0x226CE\n0x8EA5ADD4\t0x226BA\n0x8EA5ADD5\t0x2267A\n0x8EA5ADD6\t0x2267E\n0x8EA5ADD7\t0x3954\n0x8EA5ADD8\t0x22672\n0x8EA5ADD9\t0x226BB\n0x8EA5ADDA\t0x392F\n0x8EA5ADDB\t0x22673\n0x8EA5ADDC\t0x22682\n0x8EA5ADDD\t0x39B6\n0x8EA5ADDE\t0x229BA\n0x8EA5ADDF\t0x229B8\n0x8EA5ADE0\t0x22A4B\n0x8EA5ADE1\t0x22A48\n0x8EA5ADE2\t0x22B2B\n0x8EA5ADE3\t0x22AF4\n0x8EA5ADE4\t0x22B2C\n0x8EA5ADE5\t0x22B42\n0x8EA5ADE6\t0x22B48\n0x8EA5ADE7\t0x22B44\n0x8EA5ADE8\t0x22B45\n0x8EA5ADE9\t0x22B3C\n0x8EA5ADEA\t0x22B37\n0x8EA5ADEB\t0x22B33\n0x8EA5ADEC\t0x22B41\n0x8EA5ADED\t0x22B32\n0x8EA5ADEE\t0x22B87\n0x8EA5ADEF\t0x22F27\n0x8EA5ADF0\t0x22F23\n0x8EA5ADF1\t0x22F2D\n0x8EA5ADF2\t0x22F1F\n0x8EA5ADF3\t0x22F2C\n0x8EA5ADF4\t0x22F28\n0x8EA5ADF5\t0x23075\n0x8EA5ADF6\t0x23074\n0x8EA5ADF7\t0x230E7\n0x8EA5ADF8\t0x23132\n0x8EA5ADF9\t0x23131\n0x8EA5ADFA\t0x23199\n0x8EA5ADFB\t0x23196\n0x8EA5ADFC\t0x23198\n0x8EA5ADFD\t0x2319D\n0x8EA5ADFE\t0x23192\n0x8EA5AEA1\t0x23194\n0x8EA5AEA2\t0x23195\n0x8EA5AEA3\t0x23197\n0x8EA5AEA4\t0x266B9\n0x8EA5AEA5\t0x3B35\n0x8EA5AEA6\t0x23411\n0x8EA5AEA7\t0x2343B\n0x8EA5AEA8\t0x23479\n0x8EA5AEA9\t0x23442\n0x8EA5AEAA\t0x23443\n0x8EA5AEAB\t0x3B5D\n0x8EA5AEAC\t0x23478\n0x8EA5AEAD\t0x238AC\n0x8EA5AEAE\t0x3C29\n0x8EA5AEAF\t0x238B1\n0x8EA5AEB0\t0x238B4\n0x8EA5AEB1\t0x238B3\n0x8EA5AEB2\t0x238AF\n0x8EA5AEB3\t0x238AA\n0x8EA5AEB4\t0x238B2\n0x8EA5AEB5\t0x23968\n0x8EA5AEB6\t0x239F2\n0x8EA5AEB7\t0x239FE\n0x8EA5AEB8\t0x239F8\n0x8EA5AEB9\t0x239F9\n0x8EA5AEBA\t0x239FF\n0x8EA5AEBB\t0x239F5\n0x8EA5AEBC\t0x239F7\n0x8EA5AEBD\t0x239FD\n0x8EA5AEBE\t0x23A00\n0x8EA5AEBF\t0x23A88\n0x8EA5AEC0\t0x23B6E\n0x8EA5AEC1\t0x23B5D\n0x8EA5AEC2\t0x23B63\n0x8EA5AEC3\t0x23B60\n0x8EA5AEC4\t0x23C61\n0x8EA5AEC5\t0x23D37\n0x8EA5AEC6\t0x23D71\n0x8EA5AEC7\t0x23D23\n0x8EA5AEC8\t0x23D22\n0x8EA5AEC9\t0x23D1F\n0x8EA5AECA\t0x23D25\n0x8EA5AECB\t0x241FD\n0x8EA5AECC\t0x24211\n0x8EA5AECD\t0x24223\n0x8EA5AECE\t0x241F0\n0x8EA5AECF\t0x241EF\n0x8EA5AED0\t0x2450E\n0x8EA5AED1\t0x2450C\n0x8EA5AED2\t0x245BA\n0x8EA5AED3\t0x3E1F\n0x8EA5AED4\t0x24652\n0x8EA5AED5\t0x24655\n0x8EA5AED6\t0x24653\n0x8EA5AED7\t0x24654\n0x8EA5AED8\t0x24651\n0x8EA5AED9\t0x24658\n0x8EA5AEDA\t0x247B0\n0x8EA5AEDB\t0x2479F\n0x8EA5AEDC\t0x3E72\n0x8EA5AEDD\t0x247A1\n0x8EA5AEDE\t0x2479A\n0x8EA5AEDF\t0x247BE\n0x8EA5AEE0\t0x247A0\n0x8EA5AEE1\t0x24937\n0x8EA5AEE2\t0x3F0B\n0x8EA5AEE3\t0x24AF1\n0x8EA5AEE4\t0x24AF2\n0x8EA5AEE5\t0x24B34\n0x8EA5AEE6\t0x24B37\n0x8EA5AEE7\t0x24B35\n0x8EA5AEE8\t0x2238C\n0x8EA5AEE9\t0x24BDF\n0x8EA5AEEA\t0x24C4C\n0x8EA5AEEB\t0x24C4E\n0x8EA5AEEC\t0x24C64\n0x8EA5AEED\t0x24C63\n0x8EA5AEEE\t0x24C36\n0x8EA5AEEF\t0x24D58\n0x8EA5AEF0\t0x24D68\n0x8EA5AEF1\t0x24D5B\n0x8EA5AEF2\t0x24D5F\n0x8EA5AEF3\t0x24D59\n0x8EA5AEF4\t0x24D65\n0x8EA5AEF5\t0x24D60\n0x8EA5AEF6\t0x24D5E\n0x8EA5AEF7\t0x24FD5\n0x8EA5AEF8\t0x24FD6\n0x8EA5AEF9\t0x2504E\n0x8EA5AEFA\t0x25052\n0x8EA5AEFB\t0x25135\n0x8EA5AEFC\t0x25139\n0x8EA5AEFD\t0x25158\n0x8EA5AEFE\t0x25141\n0x8EA5AFA1\t0x25157\n0x8EA5AFA2\t0x25138\n0x8EA5AFA3\t0x2513D\n0x8EA5AFA4\t0x25132\n0x8EA5AFA5\t0x25144\n0x8EA5AFA6\t0x2F944\n0x8EA5AFA7\t0x25363\n0x8EA5AFA8\t0x25362\n0x8EA5AFA9\t0x253B8\n0x8EA5AFAA\t0x253B0\n0x8EA5AFAB\t0x253B1\n0x8EA5AFAC\t0x2544D\n0x8EA5AFAD\t0x25463\n0x8EA5AFAE\t0x25470\n0x8EA5AFAF\t0x2544B\n0x8EA5AFB0\t0x2544F\n0x8EA5AFB1\t0x2544E\n0x8EA5AFB2\t0x25453\n0x8EA5AFB3\t0x25447\n0x8EA5AFB4\t0x40A2\n0x8EA5AFB5\t0x25454\n0x8EA5AFB6\t0x25452\n0x8EA5AFB7\t0x25459\n0x8EA5AFB8\t0x2547E\n0x8EA5AFB9\t0x2562B\n0x8EA5AFBA\t0x2562E\n0x8EA5AFBB\t0x2577F\n0x8EA5AFBC\t0x2577E\n0x8EA5AFBD\t0x25781\n0x8EA5AFBE\t0x25783\n0x8EA5AFBF\t0x25947\n0x8EA5AFC0\t0x25954\n0x8EA5AFC1\t0x2594D\n0x8EA5AFC2\t0x2594C\n0x8EA5AFC3\t0x2594B\n0x8EA5AFC4\t0x25957\n0x8EA5AFC5\t0x25A65\n0x8EA5AFC6\t0x25A64\n0x8EA5AFC7\t0x25A61\n0x8EA5AFC8\t0x25A62\n0x8EA5AFC9\t0x25AF0\n0x8EA5AFCA\t0x25AF3\n0x8EA5AFCB\t0x25AF9\n0x8EA5AFCC\t0x25AF4\n0x8EA5AFCD\t0x25AF5\n0x8EA5AFCE\t0x25AEF\n0x8EA5AFCF\t0x25AF8\n0x8EA5AFD0\t0x25AFC\n0x8EA5AFD1\t0x25AF7\n0x8EA5AFD2\t0x25AFD\n0x8EA5AFD3\t0x25B17\n0x8EA5AFD4\t0x25E34\n0x8EA5AFD5\t0x25E36\n0x8EA5AFD6\t0x25E38\n0x8EA5AFD7\t0x25FAF\n0x8EA5AFD8\t0x25FAE\n0x8EA5AFD9\t0x25FAC\n0x8EA5AFDA\t0x25FA2\n0x8EA5AFDB\t0x26228\n0x8EA5AFDC\t0x22EC2\n0x8EA5AFDD\t0x2629C\n0x8EA5AFDE\t0x262B3\n0x8EA5AFDF\t0x26290\n0x8EA5AFE0\t0x26406\n0x8EA5AFE1\t0x26404\n0x8EA5AFE2\t0x2640B\n0x8EA5AFE3\t0x26405\n0x8EA5AFE4\t0x26540\n0x8EA5AFE5\t0x2654F\n0x8EA5AFE6\t0x266AB\n0x8EA5AFE7\t0x2669D\n0x8EA5AFE8\t0x266B8\n0x8EA5AFE9\t0x266B2\n0x8EA5AFEA\t0x266D2\n0x8EA5AFEB\t0x266CF\n0x8EA5AFEC\t0x266A2\n0x8EA5AFED\t0x43EC\n0x8EA5AFEE\t0x266A5\n0x8EA5AFEF\t0x266A9\n0x8EA5AFF0\t0x266A7\n0x8EA5AFF1\t0x266D0\n0x8EA5AFF2\t0x26902\n0x8EA5AFF3\t0x269CF\n0x8EA5AFF4\t0x269D0\n0x8EA5AFF5\t0x26A16\n0x8EA5AFF6\t0x26A19\n0x8EA5AFF7\t0x26B75\n0x8EA5AFF8\t0x26B71\n0x8EA5AFF9\t0x26B91\n0x8EA5AFFA\t0x26B72\n0x8EA5AFFB\t0x26B8E\n0x8EA5AFFC\t0x26B6D\n0x8EA5AFFD\t0x26B88\n0x8EA5AFFE\t0x26B73\n0x8EA5B0A1\t0x44BB\n0x8EA5B0A2\t0x26B81\n0x8EA5B0A3\t0x26B76\n0x8EA5B0A4\t0x26B7B\n0x8EA5B0A5\t0x26B7F\n0x8EA5B0A6\t0x26B90\n0x8EA5B0A7\t0x26B78\n0x8EA5B0A8\t0x2724B\n0x8EA5B0A9\t0x27248\n0x8EA5B0AA\t0x2725B\n0x8EA5B0AB\t0x27251\n0x8EA5B0AC\t0x2723D\n0x8EA5B0AD\t0x27240\n0x8EA5B0AE\t0x27246\n0x8EA5B0AF\t0x2724D\n0x8EA5B0B0\t0x2723B\n0x8EA5B0B1\t0x2724A\n0x8EA5B0B2\t0x27241\n0x8EA5B0B3\t0x2723E\n0x8EA5B0B4\t0x2724E\n0x8EA5B0B5\t0x275AC\n0x8EA5B0B6\t0x275E6\n0x8EA5B0B7\t0x275E9\n0x8EA5B0B8\t0x27629\n0x8EA5B0B9\t0x4621\n0x8EA5B0BA\t0x27633\n0x8EA5B0BB\t0x2762E\n0x8EA5B0BC\t0x2761E\n0x8EA5B0BD\t0x461F\n0x8EA5B0BE\t0x2F9C5\n0x8EA5B0BF\t0x27622\n0x8EA5B0C0\t0x27627\n0x8EA5B0C1\t0x277E7\n0x8EA5B0C2\t0x2780B\n0x8EA5B0C3\t0x27966\n0x8EA5B0C4\t0x27BAD\n0x8EA5B0C5\t0x27BAE\n0x8EA5B0C6\t0x8C38\n0x8EA5B0C7\t0x27C2B\n0x8EA5B0C8\t0x27C2A\n0x8EA5B0C9\t0x27D2C\n0x8EA5B0CA\t0x27D2D\n0x8EA5B0CB\t0x4791\n0x8EA5B0CC\t0x4796\n0x8EA5B0CD\t0x27E8F\n0x8EA5B0CE\t0x27E93\n0x8EA5B0CF\t0x27FC6\n0x8EA5B0D0\t0x27FC5\n0x8EA5B0D1\t0x28215\n0x8EA5B0D2\t0x28213\n0x8EA5B0D3\t0x282B1\n0x8EA5B0D4\t0x282A9\n0x8EA5B0D5\t0x8ECE\n0x8EA5B0D6\t0x284A8\n0x8EA5B0D7\t0x284AB\n0x8EA5B0D8\t0x284BE\n0x8EA5B0D9\t0x284AC\n0x8EA5B0DA\t0x284A9\n0x8EA5B0DB\t0x284A6\n0x8EA5B0DC\t0x284C1\n0x8EA5B0DD\t0x286CC\n0x8EA5B0DE\t0x286D1\n0x8EA5B0DF\t0x286D3\n0x8EA5B0E0\t0x286E4\n0x8EA5B0E1\t0x286CB\n0x8EA5B0E2\t0x286E1\n0x8EA5B0E3\t0x286D2\n0x8EA5B0E4\t0x286E3\n0x8EA5B0E5\t0x286CF\n0x8EA5B0E6\t0x286D0\n0x8EA5B0E7\t0x286E5\n0x8EA5B0E8\t0x2870E\n0x8EA5B0E9\t0x28CCC\n0x8EA5B0EA\t0x28CCA\n0x8EA5B0EB\t0x28CCB\n0x8EA5B0EC\t0x28E5C\n0x8EA5B0ED\t0x28E61\n0x8EA5B0EE\t0x28E5D\n0x8EA5B0EF\t0x28E59\n0x8EA5B0F0\t0x29077\n0x8EA5B0F1\t0x29684\n0x8EA5B0F2\t0x20041\n0x8EA5B0F3\t0x200FD\n0x8EA5B0F4\t0x2011A\n0x8EA5B0F5\t0x20163\n0x8EA5B0F6\t0x202B6\n0x8EA5B0F7\t0x202B2\n0x8EA5B0F8\t0x202E9\n0x8EA5B0F9\t0x202E7\n0x8EA5B0FA\t0x202D6\n0x8EA5B0FB\t0x20330\n0x8EA5B0FC\t0x202EC\n0x8EA5B0FD\t0x202DD\n0x8EA5B0FE\t0x202E8\n0x8EA5B1A1\t0x202B0\n0x8EA5B1A2\t0x202B5\n0x8EA5B1A3\t0x202E1\n0x8EA5B1A4\t0x20498\n0x8EA5B1A5\t0x20499\n0x8EA5B1A6\t0x34BC\n0x8EA5B1A7\t0x20593\n0x8EA5B1A8\t0x205E5\n0x8EA5B1A9\t0x34D8\n0x8EA5B1AA\t0x20760\n0x8EA5B1AB\t0x2075E\n0x8EA5B1AC\t0x34F4\n0x8EA5B1AD\t0x2087B\n0x8EA5B1AE\t0x208F1\n0x8EA5B1AF\t0x208F3\n0x8EA5B1B0\t0x20A7F\n0x8EA5B1B1\t0x2F838\n0x8EA5B1B2\t0x20B57\n0x8EA5B1B3\t0x20B58\n0x8EA5B1B4\t0x20D39\n0x8EA5B1B5\t0x20DA7\n0x8EA5B1B6\t0x20D35\n0x8EA5B1B7\t0x20D60\n0x8EA5B1B8\t0x20D51\n0x8EA5B1B9\t0x20D62\n0x8EA5B1BA\t0x20D42\n0x8EA5B1BB\t0x20D3C\n0x8EA5B1BC\t0x20D43\n0x8EA5B1BD\t0x20DAB\n0x8EA5B1BE\t0x20DA9\n0x8EA5B1BF\t0x20DB4\n0x8EA5B1C0\t0x20D79\n0x8EA5B1C1\t0x20D6A\n0x8EA5B1C2\t0x20D3B\n0x8EA5B1C3\t0x20DAA\n0x8EA5B1C4\t0x20D33\n0x8EA5B1C5\t0x20D37\n0x8EA5B1C6\t0x20D27\n0x8EA5B1C7\t0x20DA8\n0x8EA5B1C8\t0x20D70\n0x8EA5B1C9\t0x20D2F\n0x8EA5B1CA\t0x20D36\n0x8EA5B1CB\t0x20DB5\n0x8EA5B1CC\t0x20D30\n0x8EA5B1CD\t0x20D3A\n0x8EA5B1CE\t0x20D38\n0x8EA5B1CF\t0x20DB1\n0x8EA5B1D0\t0x20DAC\n0x8EA5B1D1\t0x20D2E\n0x8EA5B1D2\t0x20D75\n0x8EA5B1D3\t0x20DB0\n0x8EA5B1D4\t0x211F7\n0x8EA5B1D5\t0x21200\n0x8EA5B1D6\t0x211F1\n0x8EA5B1D7\t0x211F3\n0x8EA5B1D8\t0x21360\n0x8EA5B1D9\t0x21361\n0x8EA5B1DA\t0x21332\n0x8EA5B1DB\t0x2132D\n0x8EA5B1DC\t0x2134A\n0x8EA5B1DD\t0x2132A\n0x8EA5B1DE\t0x21567\n0x8EA5B1DF\t0x215A2\n0x8EA5B1E0\t0x215A3\n0x8EA5B1E1\t0x2159E\n0x8EA5B1E2\t0x215A4\n0x8EA5B1E3\t0x21644\n0x8EA5B1E4\t0x21632\n0x8EA5B1E5\t0x2179B\n0x8EA5B1E6\t0x21798\n0x8EA5B1E7\t0x21799\n0x8EA5B1E8\t0x2179A\n0x8EA5B1E9\t0x21766\n0x8EA5B1EA\t0x21762\n0x8EA5B1EB\t0x2176B\n0x8EA5B1EC\t0x24562\n0x8EA5B1ED\t0x21767\n0x8EA5B1EE\t0x21A3B\n0x8EA5B1EF\t0x21A23\n0x8EA5B1F0\t0x21A29\n0x8EA5B1F1\t0x21B7E\n0x8EA5B1F2\t0x21BF3\n0x8EA5B1F3\t0x3785\n0x8EA5B1F4\t0x21BF5\n0x8EA5B1F5\t0x3783\n0x8EA5B1F6\t0x21C80\n0x8EA5B1F7\t0x21C7E\n0x8EA5B1F8\t0x21C7C\n0x8EA5B1F9\t0x21C7F\n0x8EA5B1FA\t0x21C7D\n0x8EA5B1FB\t0x21C81\n0x8EA5B1FC\t0x21E25\n0x8EA5B1FD\t0x21E29\n0x8EA5B1FE\t0x21E17\n0x8EA5B2A1\t0x21E63\n0x8EA5B2A2\t0x21E67\n0x8EA5B2A3\t0x21E65\n0x8EA5B2A4\t0x21E2A\n0x8EA5B2A5\t0x21E68\n0x8EA5B2A6\t0x21E26\n0x8EA5B2A7\t0x21E64\n0x8EA5B2A8\t0x21E1B\n0x8EA5B2A9\t0x21E62\n0x8EA5B2AA\t0x21E69\n0x8EA5B2AB\t0x21FFE\n0x8EA5B2AC\t0x22044\n0x8EA5B2AD\t0x22042\n0x8EA5B2AE\t0x220B7\n0x8EA5B2AF\t0x220D2\n0x8EA5B2B0\t0x220D4\n0x8EA5B2B1\t0x220D7\n0x8EA5B2B2\t0x220DC\n0x8EA5B2B3\t0x220D1\n0x8EA5B2B4\t0x220D5\n0x8EA5B2B5\t0x220CD\n0x8EA5B2B6\t0x220D8\n0x8EA5B2B7\t0x2219A\n0x8EA5B2B8\t0x22242\n0x8EA5B2B9\t0x22235\n0x8EA5B2BA\t0x22258\n0x8EA5B2BB\t0x22234\n0x8EA5B2BC\t0x2223C\n0x8EA5B2BD\t0x2223B\n0x8EA5B2BE\t0x2223E\n0x8EA5B2BF\t0x2223D\n0x8EA5B2C0\t0x2225A\n0x8EA5B2C1\t0x22241\n0x8EA5B2C2\t0x22238\n0x8EA5B2C3\t0x22245\n0x8EA5B2C4\t0x22233\n0x8EA5B2C5\t0x22326\n0x8EA5B2C6\t0x38BA\n0x8EA5B2C7\t0x223F7\n0x8EA5B2C8\t0x223EF\n0x8EA5B2C9\t0x223F0\n0x8EA5B2CA\t0x223EE\n0x8EA5B2CB\t0x2249D\n0x8EA5B2CC\t0x22506\n0x8EA5B2CD\t0x22511\n0x8EA5B2CE\t0x22508\n0x8EA5B2CF\t0x22502\n0x8EA5B2D0\t0x2250A\n0x8EA5B2D1\t0x22507\n0x8EA5B2D2\t0x22691\n0x8EA5B2D3\t0x2268E\n0x8EA5B2D4\t0x22685\n0x8EA5B2D5\t0x226E8\n0x8EA5B2D6\t0x22717\n0x8EA5B2D7\t0x226D4\n0x8EA5B2D8\t0x3969\n0x8EA5B2D9\t0x226C4\n0x8EA5B2DA\t0x226D5\n0x8EA5B2DB\t0x3945\n0x8EA5B2DC\t0x226D8\n0x8EA5B2DD\t0x22680\n0x8EA5B2DE\t0x226DE\n0x8EA5B2DF\t0x22742\n0x8EA5B2E0\t0x229C7\n0x8EA5B2E1\t0x229BF\n0x8EA5B2E2\t0x22B8D\n0x8EA5B2E3\t0x22B89\n0x8EA5B2E4\t0x22B90\n0x8EA5B2E5\t0x22B9A\n0x8EA5B2E6\t0x22BC8\n0x8EA5B2E7\t0x22B92\n0x8EA5B2E8\t0x22BA1\n0x8EA5B2E9\t0x22B84\n0x8EA5B2EA\t0x22F57\n0x8EA5B2EB\t0x22F47\n0x8EA5B2EC\t0x22F77\n0x8EA5B2ED\t0x22F3A\n0x8EA5B2EE\t0x22F50\n0x8EA5B2EF\t0x22F42\n0x8EA5B2F0\t0x22F43\n0x8EA5B2F1\t0x22FA3\n0x8EA5B2F2\t0x23077\n0x8EA5B2F3\t0x231B2\n0x8EA5B2F4\t0x231E2\n0x8EA5B2F5\t0x231BD\n0x8EA5B2F6\t0x23374\n0x8EA5B2F7\t0x23482\n0x8EA5B2F8\t0x234B8\n0x8EA5B2F9\t0x3B6C\n0x8EA5B2FA\t0x234BA\n0x8EA5B2FB\t0x234B9\n0x8EA5B2FC\t0x234BB\n0x8EA5B2FD\t0x23487\n0x8EA5B2FE\t0x2F8E4\n0x8EA5B3A1\t0x23483\n0x8EA5B3A2\t0x234B7\n0x8EA5B3A3\t0x20043\n0x8EA5B3A4\t0x238CE\n0x8EA5B3A5\t0x238BA\n0x8EA5B3A6\t0x23973\n0x8EA5B3A7\t0x23A09\n0x8EA5B3A8\t0x23A0A\n0x8EA5B3A9\t0x23A0B\n0x8EA5B3AA\t0x23A07\n0x8EA5B3AB\t0x23A05\n0x8EA5B3AC\t0x23A0E\n0x8EA5B3AD\t0x23A97\n0x8EA5B3AE\t0x23B77\n0x8EA5B3AF\t0x23B7B\n0x8EA5B3B0\t0x23B7A\n0x8EA5B3B1\t0x23B74\n0x8EA5B3B2\t0x23B79\n0x8EA5B3B3\t0x23D86\n0x8EA5B3B4\t0x23DF5\n0x8EA5B3B5\t0x23DA5\n0x8EA5B3B6\t0x23D9D\n0x8EA5B3B7\t0x23DBE\n0x8EA5B3B8\t0x23D96\n0x8EA5B3B9\t0x23DE1\n0x8EA5B3BA\t0x23DA4\n0x8EA5B3BB\t0x23DA1\n0x8EA5B3BC\t0x23DF6\n0x8EA5B3BD\t0x3D04\n0x8EA5B3BE\t0x23D8D\n0x8EA5B3BF\t0x23D8B\n0x8EA5B3C0\t0x23D78\n0x8EA5B3C1\t0x23D98\n0x8EA5B3C2\t0x23E0A\n0x8EA5B3C3\t0x2425D\n0x8EA5B3C4\t0x24227\n0x8EA5B3C5\t0x2425F\n0x8EA5B3C6\t0x245C0\n0x8EA5B3C7\t0x245C1\n0x8EA5B3C8\t0x2466D\n0x8EA5B3C9\t0x2465E\n0x8EA5B3CA\t0x2468A\n0x8EA5B3CB\t0x24662\n0x8EA5B3CC\t0x24664\n0x8EA5B3CD\t0x3E3A\n0x8EA5B3CE\t0x247C0\n0x8EA5B3CF\t0x247CA\n0x8EA5B3D0\t0x247D1\n0x8EA5B3D1\t0x3E79\n0x8EA5B3D2\t0x247C7\n0x8EA5B3D3\t0x247CE\n0x8EA5B3D4\t0x7309\n0x8EA5B3D5\t0x247C5\n0x8EA5B3D6\t0x24936\n0x8EA5B3D7\t0x24957\n0x8EA5B3D8\t0x24977\n0x8EA5B3D9\t0x24AF6\n0x8EA5B3DA\t0x24AF7\n0x8EA5B3DB\t0x24B55\n0x8EA5B3DC\t0x24B44\n0x8EA5B3DD\t0x24B3E\n0x8EA5B3DE\t0x24B42\n0x8EA5B3DF\t0x24B52\n0x8EA5B3E0\t0x24BE1\n0x8EA5B3E1\t0x24C08\n0x8EA5B3E2\t0x24C68\n0x8EA5B3E3\t0x24C67\n0x8EA5B3E4\t0x3F5D\n0x8EA5B3E5\t0x2F937\n0x8EA5B3E6\t0x24D7E\n0x8EA5B3E7\t0x24D93\n0x8EA5B3E8\t0x24D79\n0x8EA5B3E9\t0x24D81\n0x8EA5B3EA\t0x24D7D\n0x8EA5B3EB\t0x24D7B\n0x8EA5B3EC\t0x24D94\n0x8EA5B3ED\t0x3F8A\n0x8EA5B3EE\t0x24F66\n0x8EA5B3EF\t0x24FD9\n0x8EA5B3F0\t0x24FE0\n0x8EA5B3F1\t0x2F93E\n0x8EA5B3F2\t0x2505F\n0x8EA5B3F3\t0x2515F\n0x8EA5B3F4\t0x2515E\n0x8EA5B3F5\t0x25168\n0x8EA5B3F6\t0x4027\n0x8EA5B3F7\t0x25188\n0x8EA5B3F8\t0x2516A\n0x8EA5B3F9\t0x2516C\n0x8EA5B3FA\t0x25166\n0x8EA5B3FB\t0x25167\n0x8EA5B3FC\t0x25189\n0x8EA5B3FD\t0x25160\n0x8EA5B3FE\t0x25185\n0x8EA5B4A1\t0x2032A\n0x8EA5B4A2\t0x25368\n0x8EA5B4A3\t0x253B9\n0x8EA5B4A4\t0x253BA\n0x8EA5B4A5\t0x253BE\n0x8EA5B4A6\t0x2546F\n0x8EA5B4A7\t0x25480\n0x8EA5B4A8\t0x25474\n0x8EA5B4A9\t0x25481\n0x8EA5B4AA\t0x2547A\n0x8EA5B4AB\t0x2549C\n0x8EA5B4AC\t0x25473\n0x8EA5B4AD\t0x25482\n0x8EA5B4AE\t0x2547F\n0x8EA5B4AF\t0x254A7\n0x8EA5B4B0\t0x25479\n0x8EA5B4B1\t0x25478\n0x8EA5B4B2\t0x2547D\n0x8EA5B4B3\t0x254A8\n0x8EA5B4B4\t0x2547C\n0x8EA5B4B5\t0x25668\n0x8EA5B4B6\t0x2564E\n0x8EA5B4B7\t0x2579E\n0x8EA5B4B8\t0x4146\n0x8EA5B4B9\t0x4140\n0x8EA5B4BA\t0x25798\n0x8EA5B4BB\t0x413F\n0x8EA5B4BC\t0x25785\n0x8EA5B4BD\t0x2579C\n0x8EA5B4BE\t0x257C5\n0x8EA5B4BF\t0x2579A\n0x8EA5B4C0\t0x25968\n0x8EA5B4C1\t0x25965\n0x8EA5B4C2\t0x25967\n0x8EA5B4C3\t0x25961\n0x8EA5B4C4\t0x25960\n0x8EA5B4C5\t0x419D\n0x8EA5B4C6\t0x41CB\n0x8EA5B4C7\t0x25A7B\n0x8EA5B4C8\t0x41E1\n0x8EA5B4C9\t0x25B19\n0x8EA5B4CA\t0x25B0E\n0x8EA5B4CB\t0x25B31\n0x8EA5B4CC\t0x25B12\n0x8EA5B4CD\t0x25B10\n0x8EA5B4CE\t0x25B15\n0x8EA5B4CF\t0x25B3F\n0x8EA5B4D0\t0x25B1D\n0x8EA5B4D1\t0x25B1E\n0x8EA5B4D2\t0x25E4D\n0x8EA5B4D3\t0x25E48\n0x8EA5B4D4\t0x25E45\n0x8EA5B4D5\t0x25E42\n0x8EA5B4D6\t0x25E49\n0x8EA5B4D7\t0x25E4A\n0x8EA5B4D8\t0x25E47\n0x8EA5B4D9\t0x427F\n0x8EA5B4DA\t0x25E4C\n0x8EA5B4DB\t0x25FCD\n0x8EA5B4DC\t0x25FD5\n0x8EA5B4DD\t0x25FC4\n0x8EA5B4DE\t0x25FCA\n0x8EA5B4DF\t0x25FC3\n0x8EA5B4E0\t0x4346\n0x8EA5B4E1\t0x26229\n0x8EA5B4E2\t0x262B4\n0x8EA5B4E3\t0x2636D\n0x8EA5B4E4\t0x26366\n0x8EA5B4E5\t0x2636A\n0x8EA5B4E6\t0x26415\n0x8EA5B4E7\t0x264D3\n0x8EA5B4E8\t0x264EC\n0x8EA5B4E9\t0x26555\n0x8EA5B4EA\t0x441A\n0x8EA5B4EB\t0x266D6\n0x8EA5B4EC\t0x266D8\n0x8EA5B4ED\t0x26751\n0x8EA5B4EE\t0x266E0\n0x8EA5B4EF\t0x26703\n0x8EA5B4F0\t0x26704\n0x8EA5B4F1\t0x266DA\n0x8EA5B4F2\t0x266EA\n0x8EA5B4F3\t0x26702\n0x8EA5B4F4\t0x266D3\n0x8EA5B4F5\t0x266E4\n0x8EA5B4F6\t0x266E5\n0x8EA5B4F7\t0x2693B\n0x8EA5B4F8\t0x26966\n0x8EA5B4F9\t0x26A2C\n0x8EA5B4FA\t0x26A21\n0x8EA5B4FB\t0x26A26\n0x8EA5B4FC\t0x26AD4\n0x8EA5B4FD\t0x26AD5\n0x8EA5B4FE\t0x26AD9\n0x8EA5B5A1\t0x26BD5\n0x8EA5B5A2\t0x26BEB\n0x8EA5B5A3\t0x26BC5\n0x8EA5B5A4\t0x44D3\n0x8EA5B5A5\t0x26C27\n0x8EA5B5A6\t0x26BF0\n0x8EA5B5A7\t0x26BB9\n0x8EA5B5A8\t0x26C18\n0x8EA5B5A9\t0x26BEE\n0x8EA5B5AA\t0x44D0\n0x8EA5B5AB\t0x26BB7\n0x8EA5B5AC\t0x26BBB\n0x8EA5B5AD\t0x26BEF\n0x8EA5B5AE\t0x26BB8\n0x8EA5B5AF\t0x26BDF\n0x8EA5B5B0\t0x26BDA\n0x8EA5B5B1\t0x26BE3\n0x8EA5B5B2\t0x26BC9\n0x8EA5B5B3\t0x26BEC\n0x8EA5B5B4\t0x271A4\n0x8EA5B5B5\t0x458E\n0x8EA5B5B6\t0x271A3\n0x8EA5B5B7\t0x2725E\n0x8EA5B5B8\t0x27261\n0x8EA5B5B9\t0x27262\n0x8EA5B5BA\t0x27263\n0x8EA5B5BB\t0x2728E\n0x8EA5B5BC\t0x27269\n0x8EA5B5BD\t0x2726B\n0x8EA5B5BE\t0x27285\n0x8EA5B5BF\t0x2728D\n0x8EA5B5C0\t0x27264\n0x8EA5B5C1\t0x2726D\n0x8EA5B5C2\t0x2764C\n0x8EA5B5C3\t0x27649\n0x8EA5B5C4\t0x27647\n0x8EA5B5C5\t0x27648\n0x8EA5B5C6\t0x27642\n0x8EA5B5C7\t0x27645\n0x8EA5B5C8\t0x2765B\n0x8EA5B5C9\t0x2765D\n0x8EA5B5CA\t0x27646\n0x8EA5B5CB\t0x27813\n0x8EA5B5CC\t0x2781A\n0x8EA5B5CD\t0x2780E\n0x8EA5B5CE\t0x2780F\n0x8EA5B5CF\t0x2781B\n0x8EA5B5D0\t0x27812\n0x8EA5B5D1\t0x278C3\n0x8EA5B5D2\t0x278BE\n0x8EA5B5D3\t0x278BD\n0x8EA5B5D4\t0x27979\n0x8EA5B5D5\t0x2797C\n0x8EA5B5D6\t0x46C3\n0x8EA5B5D7\t0x46B6\n0x8EA5B5D8\t0x27980\n0x8EA5B5D9\t0x27975\n0x8EA5B5DA\t0x2799B\n0x8EA5B5DB\t0x8A2F\n0x8EA5B5DC\t0x27974\n0x8EA5B5DD\t0x46C0\n0x8EA5B5DE\t0x46B8\n0x8EA5B5DF\t0x22041\n0x8EA5B5E0\t0x22494\n0x8EA5B5E1\t0x27C30\n0x8EA5B5E2\t0x27CA7\n0x8EA5B5E3\t0x27CA5\n0x8EA5B5E4\t0x27CA4\n0x8EA5B5E5\t0x27D3A\n0x8EA5B5E6\t0x27E5B\n0x8EA5B5E7\t0x27E9F\n0x8EA5B5E8\t0x27EA8\n0x8EA5B5E9\t0x27EB3\n0x8EA5B5EA\t0x27EA1\n0x8EA5B5EB\t0x27EA7\n0x8EA5B5EC\t0x27EB2\n0x8EA5B5ED\t0x27E9D\n0x8EA5B5EE\t0x27EA3\n0x8EA5B5EF\t0x27EA2\n0x8EA5B5F0\t0x27FEF\n0x8EA5B5F1\t0x27FD9\n0x8EA5B5F2\t0x47D9\n0x8EA5B5F3\t0x27FD5\n0x8EA5B5F4\t0x27FDD\n0x8EA5B5F5\t0x27FDA\n0x8EA5B5F6\t0x27FEE\n0x8EA5B5F7\t0x27FD7\n0x8EA5B5F8\t0x2821A\n0x8EA5B5F9\t0x28219\n0x8EA5B5FA\t0x28218\n0x8EA5B5FB\t0x282B3\n0x8EA5B5FC\t0x282BF\n0x8EA5B5FD\t0x282BB\n0x8EA5B5FE\t0x282C0\n0x8EA5B6A1\t0x282B9\n0x8EA5B6A2\t0x282B8\n0x8EA5B6A3\t0x282D5\n0x8EA5B6A4\t0x28411\n0x8EA5B6A5\t0x28410\n0x8EA5B6A6\t0x284C3\n0x8EA5B6A7\t0x284C2\n0x8EA5B6A8\t0x284E9\n0x8EA5B6A9\t0x284CD\n0x8EA5B6AA\t0x284E5\n0x8EA5B6AB\t0x284CA\n0x8EA5B6AC\t0x284C7\n0x8EA5B6AD\t0x284E8\n0x8EA5B6AE\t0x286F1\n0x8EA5B6AF\t0x2870C\n0x8EA5B6B0\t0x286EF\n0x8EA5B6B1\t0x286EE\n0x8EA5B6B2\t0x286F3\n0x8EA5B6B3\t0x2870D\n0x8EA5B6B4\t0x286F6\n0x8EA5B6B5\t0x286F0\n0x8EA5B6B6\t0x48EC\n0x8EA5B6B7\t0x287F5\n0x8EA5B6B8\t0x287F4\n0x8EA5B6B9\t0x287F8\n0x8EA5B6BA\t0x287FE\n0x8EA5B6BB\t0x28911\n0x8EA5B6BC\t0x28922\n0x8EA5B6BD\t0x28942\n0x8EA5B6BE\t0x28C5C\n0x8EA5B6BF\t0x28C5A\n0x8EA5B6C0\t0x28C5D\n0x8EA5B6C1\t0x28CD1\n0x8EA5B6C2\t0x28CD0\n0x8EA5B6C3\t0x28E75\n0x8EA5B6C4\t0x28E7B\n0x8EA5B6C5\t0x28F89\n0x8EA5B6C6\t0x2944D\n0x8EA5B6C7\t0x29689\n0x8EA5B6C8\t0x29692\n0x8EA5B6C9\t0x2968C\n0x8EA5B6CA\t0x29688\n0x8EA5B6CB\t0x29867\n0x8EA5B6CC\t0x29868\n0x8EA5B6CD\t0x20321\n0x8EA5B6CE\t0x202F2\n0x8EA5B6CF\t0x20309\n0x8EA5B6D0\t0x202F8\n0x8EA5B6D1\t0x202F0\n0x8EA5B6D2\t0x202F3\n0x8EA5B6D3\t0x202F5\n0x8EA5B6D4\t0x202FB\n0x8EA5B6D5\t0x202F7\n0x8EA5B6D6\t0x202EF\n0x8EA5B6D7\t0x2030B\n0x8EA5B6D8\t0x204A2\n0x8EA5B6D9\t0x205F5\n0x8EA5B6DA\t0x205F3\n0x8EA5B6DB\t0x205F4\n0x8EA5B6DC\t0x205F2\n0x8EA5B6DD\t0x20698\n0x8EA5B6DE\t0x20768\n0x8EA5B6DF\t0x20780\n0x8EA5B6E0\t0x20785\n0x8EA5B6E1\t0x2078E\n0x8EA5B6E2\t0x2078F\n0x8EA5B6E3\t0x202F4\n0x8EA5B6E4\t0x20786\n0x8EA5B6E5\t0x207A4\n0x8EA5B6E6\t0x20886\n0x8EA5B6E7\t0x20889\n0x8EA5B6E8\t0x20887\n0x8EA5B6E9\t0x20885\n0x8EA5B6EA\t0x52DC\n0x8EA5B6EB\t0x20888\n0x8EA5B6EC\t0x20AFF\n0x8EA5B6ED\t0x20B66\n0x8EA5B6EE\t0x35CC\n0x8EA5B6EF\t0x20DC3\n0x8EA5B6F0\t0x35A2\n0x8EA5B6F1\t0x20DC4\n0x8EA5B6F2\t0x20E3B\n0x8EA5B6F3\t0x20DE7\n0x8EA5B6F4\t0x20DF8\n0x8EA5B6F5\t0x20DFB\n0x8EA5B6F6\t0x35B6\n0x8EA5B6F7\t0x20DBE\n0x8EA5B6F8\t0x20DC6\n0x8EA5B6F9\t0x35C5\n0x8EA5B6FA\t0x35C6\n0x8EA5B6FB\t0x20DFC\n0x8EA5B6FC\t0x20DC0\n0x8EA5B6FD\t0x20E33\n0x8EA5B6FE\t0x20DC9\n0x8EA5B7A1\t0x20DFE\n0x8EA5B7A2\t0x20DDA\n0x8EA5B7A3\t0x20DCC\n0x8EA5B7A4\t0x20DBB\n0x8EA5B7A5\t0x20DFD\n0x8EA5B7A6\t0x20DDF\n0x8EA5B7A7\t0x20DCD\n0x8EA5B7A8\t0x20DC2\n0x8EA5B7A9\t0x20DC8\n0x8EA5B7AA\t0x20E32\n0x8EA5B7AB\t0x20E2D\n0x8EA5B7AC\t0x20DD2\n0x8EA5B7AD\t0x20E31\n0x8EA5B7AE\t0x20DD3\n0x8EA5B7AF\t0x20E2E\n0x8EA5B7B0\t0x20DCF\n0x8EA5B7B1\t0x211FF\n0x8EA5B7B2\t0x21209\n0x8EA5B7B3\t0x211FC\n0x8EA5B7B4\t0x21372\n0x8EA5B7B5\t0x213AA\n0x8EA5B7B6\t0x213AB\n0x8EA5B7B7\t0x213A7\n0x8EA5B7B8\t0x2137B\n0x8EA5B7B9\t0x21376\n0x8EA5B7BA\t0x213A8\n0x8EA5B7BB\t0x213AC\n0x8EA5B7BC\t0x3683\n0x8EA5B7BD\t0x5921\n0x8EA5B7BE\t0x215AA\n0x8EA5B7BF\t0x20A03\n0x8EA5B7C0\t0x215AC\n0x8EA5B7C1\t0x215AD\n0x8EA5B7C2\t0x215AB\n0x8EA5B7C3\t0x21650\n0x8EA5B7C4\t0x21658\n0x8EA5B7C5\t0x217DD\n0x8EA5B7C6\t0x36F8\n0x8EA5B7C7\t0x217AE\n0x8EA5B7C8\t0x217A2\n0x8EA5B7C9\t0x217AB\n0x8EA5B7CA\t0x217E3\n0x8EA5B7CB\t0x217AF\n0x8EA5B7CC\t0x217E0\n0x8EA5B7CD\t0x217E4\n0x8EA5B7CE\t0x36F6\n0x8EA5B7CF\t0x217A7\n0x8EA5B7D0\t0x217AA\n0x8EA5B7D1\t0x217E2\n0x8EA5B7D2\t0x217E1\n0x8EA5B7D3\t0x217DF\n0x8EA5B7D4\t0x217AD\n0x8EA5B7D5\t0x217E5\n0x8EA5B7D6\t0x217D1\n0x8EA5B7D7\t0x217AC\n0x8EA5B7D8\t0x217D5\n0x8EA5B7D9\t0x217A3\n0x8EA5B7DA\t0x2179F\n0x8EA5B7DB\t0x21979\n0x8EA5B7DC\t0x21976\n0x8EA5B7DD\t0x21A43\n0x8EA5B7DE\t0x21A3D\n0x8EA5B7DF\t0x21A47\n0x8EA5B7E0\t0x21A44\n0x8EA5B7E1\t0x21A3F\n0x8EA5B7E2\t0x21A5B\n0x8EA5B7E3\t0x21B7F\n0x8EA5B7E4\t0x21C9A\n0x8EA5B7E5\t0x21C9C\n0x8EA5B7E6\t0x379B\n0x8EA5B7E7\t0x21D1E\n0x8EA5B7E8\t0x21E88\n0x8EA5B7E9\t0x21E6A\n0x8EA5B7EA\t0x21E76\n0x8EA5B7EB\t0x21E72\n0x8EA5B7EC\t0x21E70\n0x8EA5B7ED\t0x21E7E\n0x8EA5B7EE\t0x21E6C\n0x8EA5B7EF\t0x21E6F\n0x8EA5B7F0\t0x21E75\n0x8EA5B7F1\t0x21E77\n0x8EA5B7F2\t0x21E78\n0x8EA5B7F3\t0x21E8A\n0x8EA5B7F4\t0x21E79\n0x8EA5B7F5\t0x21E94\n0x8EA5B7F6\t0x22001\n0x8EA5B7F7\t0x22105\n0x8EA5B7F8\t0x220F1\n0x8EA5B7F9\t0x220EE\n0x8EA5B7FA\t0x220EF\n0x8EA5B7FB\t0x22104\n0x8EA5B7FC\t0x5E3F\n0x8EA5B7FD\t0x220FA\n0x8EA5B7FE\t0x22107\n0x8EA5B8A1\t0x220F4\n0x8EA5B8A2\t0x220F5\n0x8EA5B8A3\t0x2219C\n0x8EA5B8A4\t0x2226D\n0x8EA5B8A5\t0x22269\n0x8EA5B8A6\t0x22266\n0x8EA5B8A7\t0x22262\n0x8EA5B8A8\t0x22246\n0x8EA5B8A9\t0x388D\n0x8EA5B8AA\t0x22265\n0x8EA5B8AB\t0x2225D\n0x8EA5B8AC\t0x2225E\n0x8EA5B8AD\t0x2225F\n0x8EA5B8AE\t0x2238E\n0x8EA5B8AF\t0x22402\n0x8EA5B8B0\t0x22406\n0x8EA5B8B1\t0x22404\n0x8EA5B8B2\t0x22403\n0x8EA5B8B3\t0x22462\n0x8EA5B8B4\t0x22527\n0x8EA5B8B5\t0x22521\n0x8EA5B8B6\t0x22520\n0x8EA5B8B7\t0x22524\n0x8EA5B8B8\t0x22529\n0x8EA5B8B9\t0x22531\n0x8EA5B8BA\t0x22523\n0x8EA5B8BB\t0x22522\n0x8EA5B8BC\t0x226DC\n0x8EA5B8BD\t0x2274D\n0x8EA5B8BE\t0x226E5\n0x8EA5B8BF\t0x226D3\n0x8EA5B8C0\t0x226EE\n0x8EA5B8C1\t0x226E6\n0x8EA5B8C2\t0x3956\n0x8EA5B8C3\t0x22736\n0x8EA5B8C4\t0x22740\n0x8EA5B8C5\t0x2283F\n0x8EA5B8C6\t0x2273D\n0x8EA5B8C7\t0x22744\n0x8EA5B8C8\t0x395B\n0x8EA5B8C9\t0x2275F\n0x8EA5B8CA\t0x22729\n0x8EA5B8CB\t0x22749\n0x8EA5B8CC\t0x2278A\n0x8EA5B8CD\t0x2272A\n0x8EA5B8CE\t0x22787\n0x8EA5B8CF\t0x2274C\n0x8EA5B8D0\t0x22731\n0x8EA5B8D1\t0x22748\n0x8EA5B8D2\t0x2272B\n0x8EA5B8D3\t0x2273B\n0x8EA5B8D4\t0x22741\n0x8EA5B8D5\t0x226C9\n0x8EA5B8D6\t0x22734\n0x8EA5B8D7\t0x22753\n0x8EA5B8D8\t0x22735\n0x8EA5B8D9\t0x22747\n0x8EA5B8DA\t0x22738\n0x8EA5B8DB\t0x229D1\n0x8EA5B8DC\t0x229D2\n0x8EA5B8DD\t0x22A51\n0x8EA5B8DE\t0x22A55\n0x8EA5B8DF\t0x22A52\n0x8EA5B8E0\t0x22A53\n0x8EA5B8E1\t0x22B8F\n0x8EA5B8E2\t0x22BF4\n0x8EA5B8E3\t0x22C47\n0x8EA5B8E4\t0x22C0D\n0x8EA5B8E5\t0x22C1C\n0x8EA5B8E6\t0x22BFB\n0x8EA5B8E7\t0x22C19\n0x8EA5B8E8\t0x22BF7\n0x8EA5B8E9\t0x22BF9\n0x8EA5B8EA\t0x22BF5\n0x8EA5B8EB\t0x22BE9\n0x8EA5B8EC\t0x22C0A\n0x8EA5B8ED\t0x22BEE\n0x8EA5B8EE\t0x22C0B\n0x8EA5B8EF\t0x22BFD\n0x8EA5B8F0\t0x22C06\n0x8EA5B8F1\t0x22C02\n0x8EA5B8F2\t0x22C16\n0x8EA5B8F3\t0x22C18\n0x8EA5B8F4\t0x22BF0\n0x8EA5B8F5\t0x22ED4\n0x8EA5B8F6\t0x22F66\n0x8EA5B8F7\t0x22F6A\n0x8EA5B8F8\t0x22F75\n0x8EA5B8F9\t0x22F76\n0x8EA5B8FA\t0x22F80\n0x8EA5B8FB\t0x22F6D\n0x8EA5B8FC\t0x3A96\n0x8EA5B8FD\t0x22F69\n0x8EA5B8FE\t0x22F67\n0x8EA5B9A1\t0x22F68\n0x8EA5B9A2\t0x22F5D\n0x8EA5B9A3\t0x230A4\n0x8EA5B9A4\t0x230FE\n0x8EA5B9A5\t0x230FD\n0x8EA5B9A6\t0x231EC\n0x8EA5B9A7\t0x231E9\n0x8EA5B9A8\t0x23221\n0x8EA5B9A9\t0x231EB\n0x8EA5B9AA\t0x231E7\n0x8EA5B9AB\t0x231F2\n0x8EA5B9AC\t0x23220\n0x8EA5B9AD\t0x2337A\n0x8EA5B9AE\t0x2352D\n0x8EA5B9AF\t0x2352E\n0x8EA5B9B0\t0x234CA\n0x8EA5B9B1\t0x2352F\n0x8EA5B9B2\t0x234C8\n0x8EA5B9B3\t0x3B7E\n0x8EA5B9B4\t0x234CB\n0x8EA5B9B5\t0x234C3\n0x8EA5B9B6\t0x23484\n0x8EA5B9B7\t0x234D2\n0x8EA5B9B8\t0x234C6\n0x8EA5B9B9\t0x3B81\n0x8EA5B9BA\t0x234CF\n0x8EA5B9BB\t0x234D5\n0x8EA5B9BC\t0x234D4\n0x8EA5B9BD\t0x234DD\n0x8EA5B9BE\t0x2352B\n0x8EA5B9BF\t0x235A3\n0x8EA5B9C0\t0x234DB\n0x8EA5B9C1\t0x2352C\n0x8EA5B9C2\t0x23513\n0x8EA5B9C3\t0x3C35\n0x8EA5B9C4\t0x238D1\n0x8EA5B9C5\t0x238CC\n0x8EA5B9C6\t0x238D5\n0x8EA5B9C7\t0x238C9\n0x8EA5B9C8\t0x238CF\n0x8EA5B9C9\t0x238D2\n0x8EA5B9CA\t0x2397B\n0x8EA5B9CB\t0x2397C\n0x8EA5B9CC\t0x23A23\n0x8EA5B9CD\t0x23A1D\n0x8EA5B9CE\t0x23A1C\n0x8EA5B9CF\t0x23A1E\n0x8EA5B9D0\t0x23A22\n0x8EA5B9D1\t0x23A24\n0x8EA5B9D2\t0x23A20\n0x8EA5B9D3\t0x23A18\n0x8EA5B9D4\t0x23A21\n0x8EA5B9D5\t0x23B88\n0x8EA5B9D6\t0x23B8A\n0x8EA5B9D7\t0x23B94\n0x8EA5B9D8\t0x23B8F\n0x8EA5B9D9\t0x23B8E\n0x8EA5B9DA\t0x23B90\n0x8EA5B9DB\t0x3C9B\n0x8EA5B9DC\t0x23BA7\n0x8EA5B9DD\t0x23C64\n0x8EA5B9DE\t0x3D00\n0x8EA5B9DF\t0x23E18\n0x8EA5B9E0\t0x23E14\n0x8EA5B9E1\t0x23E1D\n0x8EA5B9E2\t0x23E05\n0x8EA5B9E3\t0x23DFF\n0x8EA5B9E4\t0x23E1B\n0x8EA5B9E5\t0x23E1A\n0x8EA5B9E6\t0x23E19\n0x8EA5B9E7\t0x23E03\n0x8EA5B9E8\t0x23E0E\n0x8EA5B9E9\t0x23E47\n0x8EA5B9EA\t0x23E04\n0x8EA5B9EB\t0x23E5A\n0x8EA5B9EC\t0x23E07\n0x8EA5B9ED\t0x23E20\n0x8EA5B9EE\t0x2426A\n0x8EA5B9EF\t0x24266\n0x8EA5B9F0\t0x2427A\n0x8EA5B9F1\t0x24265\n0x8EA5B9F2\t0x242AF\n0x8EA5B9F3\t0x245CD\n0x8EA5B9F4\t0x245CF\n0x8EA5B9F5\t0x245D1\n0x8EA5B9F6\t0x245CE\n0x8EA5B9F7\t0x2465F\n0x8EA5B9F8\t0x24677\n0x8EA5B9F9\t0x24674\n0x8EA5B9FA\t0x24688\n0x8EA5B9FB\t0x24675\n0x8EA5B9FC\t0x24689\n0x8EA5B9FD\t0x24672\n0x8EA5B9FE\t0x247C6\n0x8EA5BAA1\t0x247EA\n0x8EA5BAA2\t0x247E0\n0x8EA5BAA3\t0x24807\n0x8EA5BAA4\t0x247E6\n0x8EA5BAA5\t0x247E5\n0x8EA5BAA6\t0x247DD\n0x8EA5BAA7\t0x247E3\n0x8EA5BAA8\t0x247DA\n0x8EA5BAA9\t0x249AE\n0x8EA5BAAA\t0x2497E\n0x8EA5BAAB\t0x2497D\n0x8EA5BAAC\t0x2497F\n0x8EA5BAAD\t0x3ED3\n0x8EA5BAAE\t0x249D9\n0x8EA5BAAF\t0x24AFA\n0x8EA5BAB0\t0x24AFB\n0x8EA5BAB1\t0x24B4D\n0x8EA5BAB2\t0x24B54\n0x8EA5BAB3\t0x24B51\n0x8EA5BAB4\t0x24B50\n0x8EA5BAB5\t0x24D98\n0x8EA5BAB6\t0x24D95\n0x8EA5BAB7\t0x24D9D\n0x8EA5BAB8\t0x24DC1\n0x8EA5BAB9\t0x24D9A\n0x8EA5BABA\t0x24D9B\n0x8EA5BABB\t0x3F9F\n0x8EA5BABC\t0x24D9C\n0x8EA5BABD\t0x24DD7\n0x8EA5BABE\t0x24DA4\n0x8EA5BABF\t0x24D96\n0x8EA5BAC0\t0x24DA0\n0x8EA5BAC1\t0x24F31\n0x8EA5BAC2\t0x24FE9\n0x8EA5BAC3\t0x2506E\n0x8EA5BAC4\t0x2519A\n0x8EA5BAC5\t0x251A5\n0x8EA5BAC6\t0x25194\n0x8EA5BAC7\t0x251A6\n0x8EA5BAC8\t0x25199\n0x8EA5BAC9\t0x2518B\n0x8EA5BACA\t0x25198\n0x8EA5BACB\t0x25191\n0x8EA5BACC\t0x2518C\n0x8EA5BACD\t0x251A1\n0x8EA5BACE\t0x251A3\n0x8EA5BACF\t0x251C6\n0x8EA5BAD0\t0x2536F\n0x8EA5BAD1\t0x2536D\n0x8EA5BAD2\t0x2536A\n0x8EA5BAD3\t0x2536C\n0x8EA5BAD4\t0x25371\n0x8EA5BAD5\t0x2536E\n0x8EA5BAD6\t0x253DF\n0x8EA5BAD7\t0x254AC\n0x8EA5BAD8\t0x254AA\n0x8EA5BAD9\t0x40B1\n0x8EA5BADA\t0x254B5\n0x8EA5BADB\t0x254AD\n0x8EA5BADC\t0x254B2\n0x8EA5BADD\t0x254B3\n0x8EA5BADE\t0x254AB\n0x8EA5BADF\t0x254B6\n0x8EA5BAE0\t0x254C7\n0x8EA5BAE1\t0x254C6\n0x8EA5BAE2\t0x2566C\n0x8EA5BAE3\t0x25670\n0x8EA5BAE4\t0x257B3\n0x8EA5BAE5\t0x414B\n0x8EA5BAE6\t0x2598C\n0x8EA5BAE7\t0x25981\n0x8EA5BAE8\t0x25983\n0x8EA5BAE9\t0x2597D\n0x8EA5BAEA\t0x25985\n0x8EA5BAEB\t0x25990\n0x8EA5BAEC\t0x259A2\n0x8EA5BAED\t0x2598D\n0x8EA5BAEE\t0x2598F\n0x8EA5BAEF\t0x2597E\n0x8EA5BAF0\t0x2598A\n0x8EA5BAF1\t0x2597F\n0x8EA5BAF2\t0x25976\n0x8EA5BAF3\t0x25987\n0x8EA5BAF4\t0x25978\n0x8EA5BAF5\t0x25A80\n0x8EA5BAF6\t0x25A82\n0x8EA5BAF7\t0x25A81\n0x8EA5BAF8\t0x25A83\n0x8EA5BAF9\t0x25B5A\n0x8EA5BAFA\t0x25B34\n0x8EA5BAFB\t0x25B2C\n0x8EA5BAFC\t0x25B2A\n0x8EA5BAFD\t0x25B40\n0x8EA5BAFE\t0x25B2D\n0x8EA5BBA1\t0x25B33\n0x8EA5BBA2\t0x25B2B\n0x8EA5BBA3\t0x25B4B\n0x8EA5BBA4\t0x7B3F\n0x8EA5BBA5\t0x25B3C\n0x8EA5BBA6\t0x25E5A\n0x8EA5BBA7\t0x25E77\n0x8EA5BBA8\t0x25E60\n0x8EA5BBA9\t0x25FFA\n0x8EA5BBAA\t0x25FF9\n0x8EA5BBAB\t0x25FFC\n0x8EA5BBAC\t0x42D6\n0x8EA5BBAD\t0x25FF5\n0x8EA5BBAE\t0x25FE8\n0x8EA5BBAF\t0x26009\n0x8EA5BBB0\t0x25FE7\n0x8EA5BBB1\t0x25FE6\n0x8EA5BBB2\t0x25FE9\n0x8EA5BBB3\t0x26232\n0x8EA5BBB4\t0x2622C\n0x8EA5BBB5\t0x262BD\n0x8EA5BBB6\t0x262BC\n0x8EA5BBB7\t0x2637A\n0x8EA5BBB8\t0x2637E\n0x8EA5BBB9\t0x26379\n0x8EA5BBBA\t0x4389\n0x8EA5BBBB\t0x26423\n0x8EA5BBBC\t0x26430\n0x8EA5BBBD\t0x26428\n0x8EA5BBBE\t0x264D4\n0x8EA5BBBF\t0x26ACE\n0x8EA5BBC0\t0x264F1\n0x8EA5BBC1\t0x264F0\n0x8EA5BBC2\t0x26560\n0x8EA5BBC3\t0x26565\n0x8EA5BBC4\t0x266A8\n0x8EA5BBC5\t0x2670A\n0x8EA5BBC6\t0x2671B\n0x8EA5BBC7\t0x26712\n0x8EA5BBC8\t0x26707\n0x8EA5BBC9\t0x2674F\n0x8EA5BBCA\t0x2670E\n0x8EA5BBCB\t0x26752\n0x8EA5BBCC\t0x26716\n0x8EA5BBCD\t0x4400\n0x8EA5BBCE\t0x26753\n0x8EA5BBCF\t0x26754\n0x8EA5BBD0\t0x2F984\n0x8EA5BBD1\t0x26756\n0x8EA5BBD2\t0x2696D\n0x8EA5BBD3\t0x26972\n0x8EA5BBD4\t0x26A2F\n0x8EA5BBD5\t0x26C2A\n0x8EA5BBD6\t0x44DC\n0x8EA5BBD7\t0x26C63\n0x8EA5BBD8\t0x26C84\n0x8EA5BBD9\t0x26CAF\n0x8EA5BBDA\t0x26C45\n0x8EA5BBDB\t0x26C70\n0x8EA5BBDC\t0x26C56\n0x8EA5BBDD\t0x26C16\n0x8EA5BBDE\t0x26C3D\n0x8EA5BBDF\t0x26C38\n0x8EA5BBE0\t0x26C6F\n0x8EA5BBE1\t0x26C77\n0x8EA5BBE2\t0x26C2E\n0x8EA5BBE3\t0x26C31\n0x8EA5BBE4\t0x26C4C\n0x8EA5BBE5\t0x26C5F\n0x8EA5BBE6\t0x26C75\n0x8EA5BBE7\t0x26C39\n0x8EA5BBE8\t0x26C3A\n0x8EA5BBE9\t0x26C2C\n0x8EA5BBEA\t0x26C2D\n0x8EA5BBEB\t0x26C3F\n0x8EA5BBEC\t0x26C2F\n0x8EA5BBED\t0x26C30\n0x8EA5BBEE\t0x26C3E\n0x8EA5BBEF\t0x83D0\n0x8EA5BBF0\t0x4590\n0x8EA5BBF1\t0x271B2\n0x8EA5BBF2\t0x272B7\n0x8EA5BBF3\t0x2728F\n0x8EA5BBF4\t0x45B1\n0x8EA5BBF5\t0x27296\n0x8EA5BBF6\t0x2729E\n0x8EA5BBF7\t0x27297\n0x8EA5BBF8\t0x27295\n0x8EA5BBF9\t0x272A5\n0x8EA5BBFA\t0x27298\n0x8EA5BBFB\t0x86E7\n0x8EA5BBFC\t0x272A3\n0x8EA5BBFD\t0x2729A\n0x8EA5BBFE\t0x272AD\n0x8EA5BCA1\t0x272A6\n0x8EA5BCA2\t0x272B6\n0x8EA5BCA3\t0x27299\n0x8EA5BCA4\t0x272AF\n0x8EA5BCA5\t0x272AC\n0x8EA5BCA6\t0x45AA\n0x8EA5BCA7\t0x2729F\n0x8EA5BCA8\t0x27294\n0x8EA5BCA9\t0x275EB\n0x8EA5BCAA\t0x2766F\n0x8EA5BCAB\t0x2766D\n0x8EA5BCAC\t0x2767E\n0x8EA5BCAD\t0x2766C\n0x8EA5BCAE\t0x27661\n0x8EA5BCAF\t0x27663\n0x8EA5BCB0\t0x2766B\n0x8EA5BCB1\t0x2765E\n0x8EA5BCB2\t0x2763E\n0x8EA5BCB3\t0x27664\n0x8EA5BCB4\t0x276AD\n0x8EA5BCB5\t0x467D\n0x8EA5BCB6\t0x27820\n0x8EA5BCB7\t0x278D1\n0x8EA5BCB8\t0x278D5\n0x8EA5BCB9\t0x279AE\n0x8EA5BCBA\t0x279AF\n0x8EA5BCBB\t0x2799F\n0x8EA5BCBC\t0x279A8\n0x8EA5BCBD\t0x279CA\n0x8EA5BCBE\t0x27BE1\n0x8EA5BCBF\t0x27C39\n0x8EA5BCC0\t0x27C38\n0x8EA5BCC1\t0x27C3B\n0x8EA5BCC2\t0x27CAD\n0x8EA5BCC3\t0x27CB5\n0x8EA5BCC4\t0x27CAF\n0x8EA5BCC5\t0x27CB1\n0x8EA5BCC6\t0x27CAE\n0x8EA5BCC7\t0x27CB4\n0x8EA5BCC8\t0x27CB0\n0x8EA5BCC9\t0x27D4B\n0x8EA5BCCA\t0x27D51\n0x8EA5BCCB\t0x27D4C\n0x8EA5BCCC\t0x4769\n0x8EA5BCCD\t0x27D60\n0x8EA5BCCE\t0x27EBE\n0x8EA5BCCF\t0x27EB9\n0x8EA5BCD0\t0x27EB7\n0x8EA5BCD1\t0x27EB6\n0x8EA5BCD2\t0x47A1\n0x8EA5BCD3\t0x27EBD\n0x8EA5BCD4\t0x27EB8\n0x8EA5BCD5\t0x27EC1\n0x8EA5BCD6\t0x27FF7\n0x8EA5BCD7\t0x27FF3\n0x8EA5BCD8\t0x27FF4\n0x8EA5BCD9\t0x27FFB\n0x8EA5BCDA\t0x27FFD\n0x8EA5BCDB\t0x27FF5\n0x8EA5BCDC\t0x47E7\n0x8EA5BCDD\t0x27FFA\n0x8EA5BCDE\t0x28014\n0x8EA5BCDF\t0x47EC\n0x8EA5BCE0\t0x27FF2\n0x8EA5BCE1\t0x27FFC\n0x8EA5BCE2\t0x28000\n0x8EA5BCE3\t0x47DF\n0x8EA5BCE4\t0x2822B\n0x8EA5BCE5\t0x28229\n0x8EA5BCE6\t0x2822E\n0x8EA5BCE7\t0x4833\n0x8EA5BCE8\t0x282D7\n0x8EA5BCE9\t0x282DB\n0x8EA5BCEA\t0x282D9\n0x8EA5BCEB\t0x282D8\n0x8EA5BCEC\t0x282E6\n0x8EA5BCED\t0x282D6\n0x8EA5BCEE\t0x282D1\n0x8EA5BCEF\t0x282E7\n0x8EA5BCF0\t0x282D0\n0x8EA5BCF1\t0x282DC\n0x8EA5BCF2\t0x284ED\n0x8EA5BCF3\t0x2851A\n0x8EA5BCF4\t0x28519\n0x8EA5BCF5\t0x28516\n0x8EA5BCF6\t0x284EC\n0x8EA5BCF7\t0x284EF\n0x8EA5BCF8\t0x284EE\n0x8EA5BCF9\t0x284F4\n0x8EA5BCFA\t0x2852F\n0x8EA5BCFB\t0x28730\n0x8EA5BCFC\t0x28719\n0x8EA5BCFD\t0x28718\n0x8EA5BCFE\t0x28711\n0x8EA5BDA1\t0x28716\n0x8EA5BDA2\t0x28712\n0x8EA5BDA3\t0x28710\n0x8EA5BDA4\t0x28714\n0x8EA5BDA5\t0x2880C\n0x8EA5BDA6\t0x2880D\n0x8EA5BDA7\t0x28910\n0x8EA5BDA8\t0x28929\n0x8EA5BDA9\t0x28928\n0x8EA5BDAA\t0x28C65\n0x8EA5BDAB\t0x28C66\n0x8EA5BDAC\t0x28CDE\n0x8EA5BDAD\t0x28CDF\n0x8EA5BDAE\t0x28CE0\n0x8EA5BDAF\t0x28CD9\n0x8EA5BDB0\t0x28CDB\n0x8EA5BDB1\t0x28CD8\n0x8EA5BDB2\t0x28CE3\n0x8EA5BDB3\t0x28CD7\n0x8EA5BDB4\t0x28EA6\n0x8EA5BDB5\t0x28EA7\n0x8EA5BDB6\t0x28EBF\n0x8EA5BDB7\t0x28EA8\n0x8EA5BDB8\t0x28E9F\n0x8EA5BDB9\t0x28EA1\n0x8EA5BDBA\t0x28EA2\n0x8EA5BDBB\t0x28EAD\n0x8EA5BDBC\t0x28EA3\n0x8EA5BDBD\t0x28EA0\n0x8EA5BDBE\t0x29083\n0x8EA5BDBF\t0x29085\n0x8EA5BDC0\t0x29082\n0x8EA5BDC1\t0x29084\n0x8EA5BDC2\t0x291EE\n0x8EA5BDC3\t0x2925D\n0x8EA5BDC4\t0x29392\n0x8EA5BDC5\t0x29455\n0x8EA5BDC6\t0x29453\n0x8EA5BDC7\t0x2F9FC\n0x8EA5BDC8\t0x29451\n0x8EA5BDC9\t0x29452\n0x8EA5BDCA\t0x29450\n0x8EA5BDCB\t0x2959D\n0x8EA5BDCC\t0x29687\n0x8EA5BDCD\t0x29697\n0x8EA5BDCE\t0x2969B\n0x8EA5BDCF\t0x2969D\n0x8EA5BDD0\t0x29869\n0x8EA5BDD1\t0x29A11\n0x8EA5BDD2\t0x4BEE\n0x8EA5BDD3\t0x29C7A\n0x8EA5BDD4\t0x4C32\n0x8EA5BDD5\t0x23244\n0x8EA5BDD6\t0x200C6\n0x8EA5BDD7\t0x20340\n0x8EA5BDD8\t0x2032E\n0x8EA5BDD9\t0x20368\n0x8EA5BDDA\t0x2032D\n0x8EA5BDDB\t0x20334\n0x8EA5BDDC\t0x20332\n0x8EA5BDDD\t0x20369\n0x8EA5BDDE\t0x20331\n0x8EA5BDDF\t0x2036A\n0x8EA5BDE0\t0x2033E\n0x8EA5BDE1\t0x2036F\n0x8EA5BDE2\t0x20375\n0x8EA5BDE3\t0x204F6\n0x8EA5BDE4\t0x20520\n0x8EA5BDE5\t0x20528\n0x8EA5BDE6\t0x20567\n0x8EA5BDE7\t0x205FB\n0x8EA5BDE8\t0x205FE\n0x8EA5BDE9\t0x205FC\n0x8EA5BDEA\t0x205FD\n0x8EA5BDEB\t0x205FF\n0x8EA5BDEC\t0x205FA\n0x8EA5BDED\t0x207AC\n0x8EA5BDEE\t0x207AF\n0x8EA5BDEF\t0x207B1\n0x8EA5BDF0\t0x34FC\n0x8EA5BDF1\t0x207BF\n0x8EA5BDF2\t0x207BE\n0x8EA5BDF3\t0x207A7\n0x8EA5BDF4\t0x207AA\n0x8EA5BDF5\t0x20894\n0x8EA5BDF6\t0x20893\n0x8EA5BDF7\t0x20899\n0x8EA5BDF8\t0x352A\n0x8EA5BDF9\t0x208FA\n0x8EA5BDFA\t0x20956\n0x8EA5BDFB\t0x20A22\n0x8EA5BDFC\t0x20A91\n0x8EA5BDFD\t0x20A92\n0x8EA5BDFE\t0x20B08\n0x8EA5BEA1\t0x20B06\n0x8EA5BEA2\t0x20DD6\n0x8EA5BEA3\t0x20E37\n0x8EA5BEA4\t0x20E4B\n0x8EA5BEA5\t0x20ECE\n0x8EA5BEA6\t0x20ED0\n0x8EA5BEA7\t0x20E39\n0x8EA5BEA8\t0x20E64\n0x8EA5BEA9\t0x20ECF\n0x8EA5BEAA\t0x20E46\n0x8EA5BEAB\t0x20E66\n0x8EA5BEAC\t0x20E56\n0x8EA5BEAD\t0x20E43\n0x8EA5BEAE\t0x20E4A\n0x8EA5BEAF\t0x20E58\n0x8EA5BEB0\t0x20E65\n0x8EA5BEB1\t0x20E5A\n0x8EA5BEB2\t0x20E5B\n0x8EA5BEB3\t0x20E55\n0x8EA5BEB4\t0x20E50\n0x8EA5BEB5\t0x20E4C\n0x8EA5BEB6\t0x20ECD\n0x8EA5BEB7\t0x20E51\n0x8EA5BEB8\t0x20E47\n0x8EA5BEB9\t0x35D3\n0x8EA5BEBA\t0x20E53\n0x8EA5BEBB\t0x20E62\n0x8EA5BEBC\t0x20ECC\n0x8EA5BEBD\t0x35D7\n0x8EA5BEBE\t0x20E7F\n0x8EA5BEBF\t0x20E4D\n0x8EA5BEC0\t0x2120A\n0x8EA5BEC1\t0x2120C\n0x8EA5BEC2\t0x2120F\n0x8EA5BEC3\t0x213BB\n0x8EA5BEC4\t0x213B9\n0x8EA5BEC5\t0x213EB\n0x8EA5BEC6\t0x213AE\n0x8EA5BEC7\t0x213C1\n0x8EA5BEC8\t0x213EA\n0x8EA5BEC9\t0x213BE\n0x8EA5BECA\t0x213BF\n0x8EA5BECB\t0x213BA\n0x8EA5BECC\t0x213B7\n0x8EA5BECD\t0x213B3\n0x8EA5BECE\t0x213E9\n0x8EA5BECF\t0x2156E\n0x8EA5BED0\t0x215AF\n0x8EA5BED1\t0x215B3\n0x8EA5BED2\t0x215B2\n0x8EA5BED3\t0x21668\n0x8EA5BED4\t0x21669\n0x8EA5BED5\t0x2166A\n0x8EA5BED6\t0x217DE\n0x8EA5BED7\t0x217EB\n0x8EA5BED8\t0x21811\n0x8EA5BED9\t0x217ED\n0x8EA5BEDA\t0x217E9\n0x8EA5BEDB\t0x217F7\n0x8EA5BEDC\t0x217F4\n0x8EA5BEDD\t0x217EA\n0x8EA5BEDE\t0x21812\n0x8EA5BEDF\t0x217E8\n0x8EA5BEE0\t0x21813\n0x8EA5BEE1\t0x2198E\n0x8EA5BEE2\t0x21986\n0x8EA5BEE3\t0x21A63\n0x8EA5BEE4\t0x21A65\n0x8EA5BEE5\t0x21B99\n0x8EA5BEE6\t0x21CC2\n0x8EA5BEE7\t0x21CAE\n0x8EA5BEE8\t0x21CB0\n0x8EA5BEE9\t0x21CAD\n0x8EA5BEEA\t0x21EB4\n0x8EA5BEEB\t0x21ED1\n0x8EA5BEEC\t0x21EAD\n0x8EA5BEED\t0x37F3\n0x8EA5BEEE\t0x21EBD\n0x8EA5BEEF\t0x21EB7\n0x8EA5BEF0\t0x21EAB\n0x8EA5BEF1\t0x21EAF\n0x8EA5BEF2\t0x21EC1\n0x8EA5BEF3\t0x21EB5\n0x8EA5BEF4\t0x2210F\n0x8EA5BEF5\t0x2210E\n0x8EA5BEF6\t0x2211C\n0x8EA5BEF7\t0x22113\n0x8EA5BEF8\t0x2210A\n0x8EA5BEF9\t0x2211E\n0x8EA5BEFA\t0x22114\n0x8EA5BEFB\t0x2211A\n0x8EA5BEFC\t0x221CB\n0x8EA5BEFD\t0x22287\n0x8EA5BEFE\t0x22293\n0x8EA5BFA1\t0x3891\n0x8EA5BFA2\t0x22284\n0x8EA5BFA3\t0x22285\n0x8EA5BFA4\t0x22292\n0x8EA5BFA5\t0x22280\n0x8EA5BFA6\t0x2232B\n0x8EA5BFA7\t0x22363\n0x8EA5BFA8\t0x2240A\n0x8EA5BFA9\t0x38C0\n0x8EA5BFAA\t0x22466\n0x8EA5BFAB\t0x22534\n0x8EA5BFAC\t0x22533\n0x8EA5BFAD\t0x2254D\n0x8EA5BFAE\t0x22789\n0x8EA5BFAF\t0x22757\n0x8EA5BFB0\t0x6117\n0x8EA5BFB1\t0x2274A\n0x8EA5BFB2\t0x3963\n0x8EA5BFB3\t0x22739\n0x8EA5BFB4\t0x2273F\n0x8EA5BFB5\t0x22790\n0x8EA5BFB6\t0x2278F\n0x8EA5BFB7\t0x227B2\n0x8EA5BFB8\t0x2279F\n0x8EA5BFB9\t0x22795\n0x8EA5BFBA\t0x227A1\n0x8EA5BFBB\t0x2279C\n0x8EA5BFBC\t0x2278E\n0x8EA5BFBD\t0x227A0\n0x8EA5BFBE\t0x227AE\n0x8EA5BFBF\t0x22796\n0x8EA5BFC0\t0x227CA\n0x8EA5BFC1\t0x227AC\n0x8EA5BFC2\t0x3970\n0x8EA5BFC3\t0x227A6\n0x8EA5BFC4\t0x22797\n0x8EA5BFC5\t0x22793\n0x8EA5BFC6\t0x203B6\n0x8EA5BFC7\t0x229D6\n0x8EA5BFC8\t0x229E0\n0x8EA5BFC9\t0x229D8\n0x8EA5BFCA\t0x22A56\n0x8EA5BFCB\t0x22C6E\n0x8EA5BFCC\t0x22C7E\n0x8EA5BFCD\t0x22C74\n0x8EA5BFCE\t0x22C77\n0x8EA5BFCF\t0x22C80\n0x8EA5BFD0\t0x22C7A\n0x8EA5BFD1\t0x22C6B\n0x8EA5BFD2\t0x22C5F\n0x8EA5BFD3\t0x22C76\n0x8EA5BFD4\t0x22CB0\n0x8EA5BFD5\t0x22C63\n0x8EA5BFD6\t0x22F92\n0x8EA5BFD7\t0x22F82\n0x8EA5BFD8\t0x22F9D\n0x8EA5BFD9\t0x22F94\n0x8EA5BFDA\t0x22F83\n0x8EA5BFDB\t0x22F8B\n0x8EA5BFDC\t0x22F84\n0x8EA5BFDD\t0x23057\n0x8EA5BFDE\t0x23084\n0x8EA5BFDF\t0x230B5\n0x8EA5BFE0\t0x23109\n0x8EA5BFE1\t0x231E6\n0x8EA5BFE2\t0x3B02\n0x8EA5BFE3\t0x23225\n0x8EA5BFE4\t0x23251\n0x8EA5BFE5\t0x2333E\n0x8EA5BFE6\t0x2F8DA\n0x8EA5BFE7\t0x23385\n0x8EA5BFE8\t0x2353F\n0x8EA5BFE9\t0x23542\n0x8EA5BFEA\t0x23538\n0x8EA5BFEB\t0x2353A\n0x8EA5BFEC\t0x2354E\n0x8EA5BFED\t0x23545\n0x8EA5BFEE\t0x23539\n0x8EA5BFEF\t0x23537\n0x8EA5BFF0\t0x23544\n0x8EA5BFF1\t0x2F8E7\n0x8EA5BFF2\t0x235A4\n0x8EA5BFF3\t0x2353D\n0x8EA5BFF4\t0x23541\n0x8EA5BFF5\t0x238DF\n0x8EA5BFF6\t0x238DE\n0x8EA5BFF7\t0x238CA\n0x8EA5BFF8\t0x238E9\n0x8EA5BFF9\t0x238E2\n0x8EA5BFFA\t0x238E0\n0x8EA5BFFB\t0x23989\n0x8EA5BFFC\t0x23987\n0x8EA5BFFD\t0x23A32\n0x8EA5BFFE\t0x23A33\n0x8EA5C0A1\t0x23AAC\n0x8EA5C0A2\t0x23AF9\n0x8EA5C0A3\t0x23B0D\n0x8EA5C0A4\t0x23BB9\n0x8EA5C0A5\t0x23E5E\n0x8EA5C0A6\t0x23E6A\n0x8EA5C0A7\t0x3D35\n0x8EA5C0A8\t0x23E81\n0x8EA5C0A9\t0x23E69\n0x8EA5C0AA\t0x23EAC\n0x8EA5C0AB\t0x23E80\n0x8EA5C0AC\t0x23E75\n0x8EA5C0AD\t0x23E71\n0x8EA5C0AE\t0x23E76\n0x8EA5C0AF\t0x23E6F\n0x8EA5C0B0\t0x242B6\n0x8EA5C0B1\t0x24303\n0x8EA5C0B2\t0x242BF\n0x8EA5C0B3\t0x24301\n0x8EA5C0B4\t0x242B2\n0x8EA5C0B5\t0x242C4\n0x8EA5C0B6\t0x245DB\n0x8EA5C0B7\t0x245DC\n0x8EA5C0B8\t0x245D8\n0x8EA5C0B9\t0x29672\n0x8EA5C0BA\t0x246B5\n0x8EA5C0BB\t0x246A8\n0x8EA5C0BC\t0x2468F\n0x8EA5C0BD\t0x2469E\n0x8EA5C0BE\t0x2468E\n0x8EA5C0BF\t0x247DE\n0x8EA5C0C0\t0x247E2\n0x8EA5C0C1\t0x24820\n0x8EA5C0C2\t0x2481D\n0x8EA5C0C3\t0x2481A\n0x8EA5C0C4\t0x24819\n0x8EA5C0C5\t0x2482B\n0x8EA5C0C6\t0x24818\n0x8EA5C0C7\t0x24810\n0x8EA5C0C8\t0x2480E\n0x8EA5C0C9\t0x24824\n0x8EA5C0CA\t0x2481F\n0x8EA5C0CB\t0x24813\n0x8EA5C0CC\t0x24835\n0x8EA5C0CD\t0x24983\n0x8EA5C0CE\t0x3EE0\n0x8EA5C0CF\t0x249D7\n0x8EA5C0D0\t0x24B02\n0x8EA5C0D1\t0x24B03\n0x8EA5C0D2\t0x24B5C\n0x8EA5C0D3\t0x24B5F\n0x8EA5C0D4\t0x24BC7\n0x8EA5C0D5\t0x24C9A\n0x8EA5C0D6\t0x24C97\n0x8EA5C0D7\t0x24CA3\n0x8EA5C0D8\t0x24DF7\n0x8EA5C0D9\t0x24DC6\n0x8EA5C0DA\t0x24DCC\n0x8EA5C0DB\t0x24DD6\n0x8EA5C0DC\t0x24DCD\n0x8EA5C0DD\t0x24DF9\n0x8EA5C0DE\t0x24DD9\n0x8EA5C0DF\t0x24DD8\n0x8EA5C0E0\t0x3F9A\n0x8EA5C0E1\t0x24DD1\n0x8EA5C0E2\t0x24DCE\n0x8EA5C0E3\t0x24DD5\n0x8EA5C0E4\t0x3FA3\n0x8EA5C0E5\t0x24DD4\n0x8EA5C0E6\t0x24DF8\n0x8EA5C0E7\t0x24F7A\n0x8EA5C0E8\t0x24F79\n0x8EA5C0E9\t0x24F7F\n0x8EA5C0EA\t0x24FF3\n0x8EA5C0EB\t0x24FF5\n0x8EA5C0EC\t0x24FF6\n0x8EA5C0ED\t0x24FF4\n0x8EA5C0EE\t0x24FF7\n0x8EA5C0EF\t0x4005\n0x8EA5C0F0\t0x25079\n0x8EA5C0F1\t0x2519C\n0x8EA5C0F2\t0x251DF\n0x8EA5C0F3\t0x251F5\n0x8EA5C0F4\t0x251FF\n0x8EA5C0F5\t0x251D1\n0x8EA5C0F6\t0x251DA\n0x8EA5C0F7\t0x251CF\n0x8EA5C0F8\t0x251CD\n0x8EA5C0F9\t0x251DE\n0x8EA5C0FA\t0x251D8\n0x8EA5C0FB\t0x23AAD\n0x8EA5C0FC\t0x251E0\n0x8EA5C0FD\t0x251FE\n0x8EA5C0FE\t0x2519E\n0x8EA5C1A1\t0x25375\n0x8EA5C1A2\t0x25373\n0x8EA5C1A3\t0x25372\n0x8EA5C1A4\t0x253D8\n0x8EA5C1A5\t0x254D0\n0x8EA5C1A6\t0x254D6\n0x8EA5C1A7\t0x254D7\n0x8EA5C1A8\t0x254CA\n0x8EA5C1A9\t0x254CD\n0x8EA5C1AA\t0x2568A\n0x8EA5C1AB\t0x25689\n0x8EA5C1AC\t0x2568B\n0x8EA5C1AD\t0x257D3\n0x8EA5C1AE\t0x257DA\n0x8EA5C1AF\t0x257CE\n0x8EA5C1B0\t0x257D2\n0x8EA5C1B1\t0x415E\n0x8EA5C1B2\t0x257D4\n0x8EA5C1B3\t0x257D7\n0x8EA5C1B4\t0x257D5\n0x8EA5C1B5\t0x257FB\n0x8EA5C1B6\t0x257CD\n0x8EA5C1B7\t0x257FA\n0x8EA5C1B8\t0x257D6\n0x8EA5C1B9\t0x41A6\n0x8EA5C1BA\t0x2599B\n0x8EA5C1BB\t0x2599E\n0x8EA5C1BC\t0x2599D\n0x8EA5C1BD\t0x259A4\n0x8EA5C1BE\t0x2599F\n0x8EA5C1BF\t0x259A5\n0x8EA5C1C0\t0x259A8\n0x8EA5C1C1\t0x25A8F\n0x8EA5C1C2\t0x25A8C\n0x8EA5C1C3\t0x25A95\n0x8EA5C1C4\t0x25B60\n0x8EA5C1C5\t0x25B55\n0x8EA5C1C6\t0x25B5C\n0x8EA5C1C7\t0x25B6F\n0x8EA5C1C8\t0x25B51\n0x8EA5C1C9\t0x25B61\n0x8EA5C1CA\t0x25BA7\n0x8EA5C1CB\t0x25B5E\n0x8EA5C1CC\t0x25B62\n0x8EA5C1CD\t0x25B54\n0x8EA5C1CE\t0x25B6E\n0x8EA5C1CF\t0x25B52\n0x8EA5C1D0\t0x25B58\n0x8EA5C1D1\t0x25B6D\n0x8EA5C1D2\t0x25B5F\n0x8EA5C1D3\t0x25B6C\n0x8EA5C1D4\t0x25B50\n0x8EA5C1D5\t0x25B5D\n0x8EA5C1D6\t0x25B8E\n0x8EA5C1D7\t0x25E72\n0x8EA5C1D8\t0x25E78\n0x8EA5C1D9\t0x25E75\n0x8EA5C1DA\t0x25E76\n0x8EA5C1DB\t0x25E7C\n0x8EA5C1DC\t0x25E7E\n0x8EA5C1DD\t0x25E7D\n0x8EA5C1DE\t0x26015\n0x8EA5C1DF\t0x26014\n0x8EA5C1E0\t0x2601D\n0x8EA5C1E1\t0x2601C\n0x8EA5C1E2\t0x26023\n0x8EA5C1E3\t0x26057\n0x8EA5C1E4\t0x262C8\n0x8EA5C1E5\t0x435D\n0x8EA5C1E6\t0x262C9\n0x8EA5C1E7\t0x262C5\n0x8EA5C1E8\t0x26387\n0x8EA5C1E9\t0x2638A\n0x8EA5C1EA\t0x26394\n0x8EA5C1EB\t0x26439\n0x8EA5C1EC\t0x26440\n0x8EA5C1ED\t0x2643E\n0x8EA5C1EE\t0x26438\n0x8EA5C1EF\t0x264D6\n0x8EA5C1F0\t0x43B8\n0x8EA5C1F1\t0x26577\n0x8EA5C1F2\t0x26578\n0x8EA5C1F3\t0x2657D\n0x8EA5C1F4\t0x266DD\n0x8EA5C1F5\t0x2675E\n0x8EA5C1F6\t0x26777\n0x8EA5C1F7\t0x267D4\n0x8EA5C1F8\t0x26766\n0x8EA5C1F9\t0x2675F\n0x8EA5C1FA\t0x26773\n0x8EA5C1FB\t0x26772\n0x8EA5C1FC\t0x26797\n0x8EA5C1FD\t0x2675A\n0x8EA5C1FE\t0x26796\n0x8EA5C2A1\t0x2675D\n0x8EA5C2A2\t0x26765\n0x8EA5C2A3\t0x26770\n0x8EA5C2A4\t0x26775\n0x8EA5C2A5\t0x26774\n0x8EA5C2A6\t0x2675C\n0x8EA5C2A7\t0x26760\n0x8EA5C2A8\t0x4434\n0x8EA5C2A9\t0x2676D\n0x8EA5C2AA\t0x26941\n0x8EA5C2AB\t0x26A3C\n0x8EA5C2AC\t0x26A3E\n0x8EA5C2AD\t0x446F\n0x8EA5C2AE\t0x26A49\n0x8EA5C2AF\t0x26BE4\n0x8EA5C2B0\t0x26D0C\n0x8EA5C2B1\t0x26D15\n0x8EA5C2B2\t0x26D0E\n0x8EA5C2B3\t0x26CD4\n0x8EA5C2B4\t0x26CC7\n0x8EA5C2B5\t0x26D14\n0x8EA5C2B6\t0x26CDB\n0x8EA5C2B7\t0x26D5F\n0x8EA5C2B8\t0x26CED\n0x8EA5C2B9\t0x26D09\n0x8EA5C2BA\t0x26CCF\n0x8EA5C2BB\t0x26CFF\n0x8EA5C2BC\t0x26D1A\n0x8EA5C2BD\t0x26CF5\n0x8EA5C2BE\t0x26CEE\n0x8EA5C2BF\t0x26CE5\n0x8EA5C2C0\t0x26D0D\n0x8EA5C2C1\t0x26CDF\n0x8EA5C2C2\t0x26CEC\n0x8EA5C2C3\t0x26CD7\n0x8EA5C2C4\t0x26D2C\n0x8EA5C2C5\t0x26CCD\n0x8EA5C2C6\t0x26CE3\n0x8EA5C2C7\t0x26D00\n0x8EA5C2C8\t0x26CEB\n0x8EA5C2C9\t0x26CFD\n0x8EA5C2CA\t0x26D0F\n0x8EA5C2CB\t0x26D2D\n0x8EA5C2CC\t0x26D50\n0x8EA5C2CD\t0x26CFE\n0x8EA5C2CE\t0x26CC4\n0x8EA5C2CF\t0x26CE1\n0x8EA5C2D0\t0x26CF9\n0x8EA5C2D1\t0x271BB\n0x8EA5C2D2\t0x271BC\n0x8EA5C2D3\t0x4594\n0x8EA5C2D4\t0x4593\n0x8EA5C2D5\t0x271BA\n0x8EA5C2D6\t0x272D0\n0x8EA5C2D7\t0x272D6\n0x8EA5C2D8\t0x272CE\n0x8EA5C2D9\t0x272E1\n0x8EA5C2DA\t0x272D5\n0x8EA5C2DB\t0x272CF\n0x8EA5C2DC\t0x272D3\n0x8EA5C2DD\t0x8714\n0x8EA5C2DE\t0x272D4\n0x8EA5C2DF\t0x275B5\n0x8EA5C2E0\t0x27690\n0x8EA5C2E1\t0x276A1\n0x8EA5C2E2\t0x27681\n0x8EA5C2E3\t0x27685\n0x8EA5C2E4\t0x2766E\n0x8EA5C2E5\t0x27688\n0x8EA5C2E6\t0x27682\n0x8EA5C2E7\t0x27686\n0x8EA5C2E8\t0x2768F\n0x8EA5C2E9\t0x27689\n0x8EA5C2EA\t0x27680\n0x8EA5C2EB\t0x27684\n0x8EA5C2EC\t0x88D1\n0x8EA5C2ED\t0x27829\n0x8EA5C2EE\t0x2782B\n0x8EA5C2EF\t0x2782A\n0x8EA5C2F0\t0x27830\n0x8EA5C2F1\t0x278E2\n0x8EA5C2F2\t0x278E3\n0x8EA5C2F3\t0x278E1\n0x8EA5C2F4\t0x279D5\n0x8EA5C2F5\t0x279C4\n0x8EA5C2F6\t0x279C9\n0x8EA5C2F7\t0x279E0\n0x8EA5C2F8\t0x279DF\n0x8EA5C2F9\t0x279CB\n0x8EA5C2FA\t0x279DD\n0x8EA5C2FB\t0x279E8\n0x8EA5C2FC\t0x279D4\n0x8EA5C2FD\t0x27A1C\n0x8EA5C2FE\t0x27BB5\n0x8EA5C3A1\t0x27BB6\n0x8EA5C3A2\t0x27BE5\n0x8EA5C3A3\t0x27C45\n0x8EA5C3A4\t0x27C49\n0x8EA5C3A5\t0x27C40\n0x8EA5C3A6\t0x27C46\n0x8EA5C3A7\t0x27C44\n0x8EA5C3A8\t0x27C4A\n0x8EA5C3A9\t0x27CC9\n0x8EA5C3AA\t0x27CC4\n0x8EA5C3AB\t0x27CC2\n0x8EA5C3AC\t0x27D68\n0x8EA5C3AD\t0x8CCB\n0x8EA5C3AE\t0x27D82\n0x8EA5C3AF\t0x27D6B\n0x8EA5C3B0\t0x27D67\n0x8EA5C3B1\t0x27D6C\n0x8EA5C3B2\t0x27D6D\n0x8EA5C3B3\t0x27D71\n0x8EA5C3B4\t0x4792\n0x8EA5C3B5\t0x27ED7\n0x8EA5C3B6\t0x27ED2\n0x8EA5C3B7\t0x27ED9\n0x8EA5C3B8\t0x47AA\n0x8EA5C3B9\t0x27EBC\n0x8EA5C3BA\t0x27EDD\n0x8EA5C3BB\t0x27ED6\n0x8EA5C3BC\t0x47A7\n0x8EA5C3BD\t0x27ED8\n0x8EA5C3BE\t0x28020\n0x8EA5C3BF\t0x28016\n0x8EA5C3C0\t0x28018\n0x8EA5C3C1\t0x28015\n0x8EA5C3C2\t0x28019\n0x8EA5C3C3\t0x28027\n0x8EA5C3C4\t0x28050\n0x8EA5C3C5\t0x2801D\n0x8EA5C3C6\t0x2802C\n0x8EA5C3C7\t0x2801C\n0x8EA5C3C8\t0x28029\n0x8EA5C3C9\t0x2802B\n0x8EA5C3CA\t0x28024\n0x8EA5C3CB\t0x47EF\n0x8EA5C3CC\t0x28028\n0x8EA5C3CD\t0x28239\n0x8EA5C3CE\t0x282F2\n0x8EA5C3CF\t0x282F0\n0x8EA5C3D0\t0x8EED\n0x8EA5C3D1\t0x282ED\n0x8EA5C3D2\t0x282EF\n0x8EA5C3D3\t0x282EA\n0x8EA5C3D4\t0x28301\n0x8EA5C3D5\t0x284BC\n0x8EA5C3D6\t0x2855C\n0x8EA5C3D7\t0x2855B\n0x8EA5C3D8\t0x2855A\n0x8EA5C3D9\t0x28526\n0x8EA5C3DA\t0x28743\n0x8EA5C3DB\t0x28733\n0x8EA5C3DC\t0x2873A\n0x8EA5C3DD\t0x28737\n0x8EA5C3DE\t0x28736\n0x8EA5C3DF\t0x2873C\n0x8EA5C3E0\t0x28734\n0x8EA5C3E1\t0x2874A\n0x8EA5C3E2\t0x2873B\n0x8EA5C3E3\t0x28735\n0x8EA5C3E4\t0x2873D\n0x8EA5C3E5\t0x28740\n0x8EA5C3E6\t0x2873E\n0x8EA5C3E7\t0x28717\n0x8EA5C3E8\t0x28826\n0x8EA5C3E9\t0x28824\n0x8EA5C3EA\t0x28810\n0x8EA5C3EB\t0x28836\n0x8EA5C3EC\t0x28825\n0x8EA5C3ED\t0x4922\n0x8EA5C3EE\t0x28966\n0x8EA5C3EF\t0x28C7F\n0x8EA5C3F0\t0x28C7A\n0x8EA5C3F1\t0x28CFB\n0x8EA5C3F2\t0x28CFD\n0x8EA5C3F3\t0x28CFC\n0x8EA5C3F4\t0x28CFA\n0x8EA5C3F5\t0x28ED6\n0x8EA5C3F6\t0x28ED2\n0x8EA5C3F7\t0x28EC8\n0x8EA5C3F8\t0x28EC2\n0x8EA5C3F9\t0x28EC7\n0x8EA5C3FA\t0x28ECD\n0x8EA5C3FB\t0x28EC1\n0x8EA5C3FC\t0x28EC6\n0x8EA5C3FD\t0x28ECC\n0x8EA5C3FE\t0x28FA1\n0x8EA5C4A1\t0x29095\n0x8EA5C4A2\t0x29094\n0x8EA5C4A3\t0x29097\n0x8EA5C4A4\t0x29096\n0x8EA5C4A5\t0x29093\n0x8EA5C4A6\t0x290A1\n0x8EA5C4A7\t0x29209\n0x8EA5C4A8\t0x29208\n0x8EA5C4A9\t0x29267\n0x8EA5C4AA\t0x29265\n0x8EA5C4AB\t0x29262\n0x8EA5C4AC\t0x29261\n0x8EA5C4AD\t0x29397\n0x8EA5C4AE\t0x29401\n0x8EA5C4AF\t0x29419\n0x8EA5C4B0\t0x29418\n0x8EA5C4B1\t0x2945C\n0x8EA5C4B2\t0x29467\n0x8EA5C4B3\t0x2946C\n0x8EA5C4B4\t0x4AB5\n0x8EA5C4B5\t0x2F9FD\n0x8EA5C4B6\t0x29466\n0x8EA5C4B7\t0x29461\n0x8EA5C4B8\t0x2946E\n0x8EA5C4B9\t0x2945D\n0x8EA5C4BA\t0x2945A\n0x8EA5C4BB\t0x295A2\n0x8EA5C4BC\t0x295A9\n0x8EA5C4BD\t0x295A5\n0x8EA5C4BE\t0x295A6\n0x8EA5C4BF\t0x295B2\n0x8EA5C4C0\t0x295A3\n0x8EA5C4C1\t0x296AC\n0x8EA5C4C2\t0x296AA\n0x8EA5C4C3\t0x296AF\n0x8EA5C4C4\t0x296AB\n0x8EA5C4C5\t0x296B1\n0x8EA5C4C6\t0x296C6\n0x8EA5C4C7\t0x296AD\n0x8EA5C4C8\t0x296B9\n0x8EA5C4C9\t0x29870\n0x8EA5C4CA\t0x4B75\n0x8EA5C4CB\t0x29C0C\n0x8EA5C4CC\t0x29C81\n0x8EA5C4CD\t0x29C83\n0x8EA5C4CE\t0x29C7E\n0x8EA5C4CF\t0x29D51\n0x8EA5C4D0\t0x29F99\n0x8EA5C4D1\t0x29F94\n0x8EA5C4D2\t0x29F95\n0x8EA5C4D3\t0x2A2FE\n0x8EA5C4D4\t0x2A418\n0x8EA5C4D5\t0x20105\n0x8EA5C4D6\t0x20372\n0x8EA5C4D7\t0x3482\n0x8EA5C4D8\t0x20399\n0x8EA5C4D9\t0x204AD\n0x8EA5C4DA\t0x20606\n0x8EA5C4DB\t0x207C2\n0x8EA5C4DC\t0x207CB\n0x8EA5C4DD\t0x207D5\n0x8EA5C4DE\t0x207D2\n0x8EA5C4DF\t0x207CC\n0x8EA5C4E0\t0x207D7\n0x8EA5C4E1\t0x207C5\n0x8EA5C4E2\t0x207CA\n0x8EA5C4E3\t0x52EC\n0x8EA5C4E4\t0x208A2\n0x8EA5C4E5\t0x208A3\n0x8EA5C4E6\t0x208A1\n0x8EA5C4E7\t0x52E8\n0x8EA5C4E8\t0x208A6\n0x8EA5C4E9\t0x208A4\n0x8EA5C4EA\t0x208FF\n0x8EA5C4EB\t0x20900\n0x8EA5C4EC\t0x3535\n0x8EA5C4ED\t0x20A06\n0x8EA5C4EE\t0x20A25\n0x8EA5C4EF\t0x20A9F\n0x8EA5C4F0\t0x20B7F\n0x8EA5C4F1\t0x20EEA\n0x8EA5C4F2\t0x20EEB\n0x8EA5C4F3\t0x20EDE\n0x8EA5C4F4\t0x20F18\n0x8EA5C4F5\t0x20EE0\n0x8EA5C4F6\t0x20EE8\n0x8EA5C4F7\t0x20EDF\n0x8EA5C4F8\t0x20EF1\n0x8EA5C4F9\t0x20EEC\n0x8EA5C4FA\t0x20F1A\n0x8EA5C4FB\t0x20EE6\n0x8EA5C4FC\t0x20EE1\n0x8EA5C4FD\t0x20F5D\n0x8EA5C4FE\t0x20077\n0x8EA5C5A1\t0x20F1E\n0x8EA5C5A2\t0x35F0\n0x8EA5C5A3\t0x20F80\n0x8EA5C5A4\t0x21217\n0x8EA5C5A5\t0x2141D\n0x8EA5C5A6\t0x213F7\n0x8EA5C5A7\t0x213EF\n0x8EA5C5A8\t0x213EE\n0x8EA5C5A9\t0x213ED\n0x8EA5C5AA\t0x213F5\n0x8EA5C5AB\t0x2141E\n0x8EA5C5AC\t0x215BD\n0x8EA5C5AD\t0x257FF\n0x8EA5C5AE\t0x215BE\n0x8EA5C5AF\t0x2166D\n0x8EA5C5B0\t0x21676\n0x8EA5C5B1\t0x2184C\n0x8EA5C5B2\t0x21819\n0x8EA5C5B3\t0x21848\n0x8EA5C5B4\t0x2181E\n0x8EA5C5B5\t0x2184A\n0x8EA5C5B6\t0x21849\n0x8EA5C5B7\t0x21826\n0x8EA5C5B8\t0x21995\n0x8EA5C5B9\t0x21A85\n0x8EA5C5BA\t0x21A7E\n0x8EA5C5BB\t0x21A97\n0x8EA5C5BC\t0x21A7D\n0x8EA5C5BD\t0x21B42\n0x8EA5C5BE\t0x21B9E\n0x8EA5C5BF\t0x21C0C\n0x8EA5C5C0\t0x21C0B\n0x8EA5C5C1\t0x21C0E\n0x8EA5C5C2\t0x21CCF\n0x8EA5C5C3\t0x21ED8\n0x8EA5C5C4\t0x21EE0\n0x8EA5C5C5\t0x21EE8\n0x8EA5C5C6\t0x21EE9\n0x8EA5C5C7\t0x21EE2\n0x8EA5C5C8\t0x21EE1\n0x8EA5C5C9\t0x21EDA\n0x8EA5C5CA\t0x21EE3\n0x8EA5C5CB\t0x21ED9\n0x8EA5C5CC\t0x21EF0\n0x8EA5C5CD\t0x21EE7\n0x8EA5C5CE\t0x21EE4\n0x8EA5C5CF\t0x22123\n0x8EA5C5D0\t0x22131\n0x8EA5C5D1\t0x22133\n0x8EA5C5D2\t0x2210C\n0x8EA5C5D3\t0x269E0\n0x8EA5C5D4\t0x22126\n0x8EA5C5D5\t0x22124\n0x8EA5C5D6\t0x22132\n0x8EA5C5D7\t0x22127\n0x8EA5C5D8\t0x22121\n0x8EA5C5D9\t0x22130\n0x8EA5C5DA\t0x221A2\n0x8EA5C5DB\t0x221CC\n0x8EA5C5DC\t0x22296\n0x8EA5C5DD\t0x2F88F\n0x8EA5C5DE\t0x22298\n0x8EA5C5DF\t0x2229C\n0x8EA5C5E0\t0x2229B\n0x8EA5C5E1\t0x2236B\n0x8EA5C5E2\t0x22412\n0x8EA5C5E3\t0x22414\n0x8EA5C5E4\t0x2255A\n0x8EA5C5E5\t0x22554\n0x8EA5C5E6\t0x22551\n0x8EA5C5E7\t0x2255E\n0x8EA5C5E8\t0x22558\n0x8EA5C5E9\t0x38F0\n0x8EA5C5EA\t0x22559\n0x8EA5C5EB\t0x2279A\n0x8EA5C5EC\t0x227F2\n0x8EA5C5ED\t0x227AD\n0x8EA5C5EE\t0x22820\n0x8EA5C5EF\t0x227F1\n0x8EA5C5F0\t0x227F0\n0x8EA5C5F1\t0x227F3\n0x8EA5C5F2\t0x227F4\n0x8EA5C5F3\t0x227E9\n0x8EA5C5F4\t0x227FE\n0x8EA5C5F5\t0x2282E\n0x8EA5C5F6\t0x227E8\n0x8EA5C5F7\t0x227E7\n0x8EA5C5F8\t0x227FF\n0x8EA5C5F9\t0x227F5\n0x8EA5C5FA\t0x229E5\n0x8EA5C5FB\t0x229E7\n0x8EA5C5FC\t0x229E6\n0x8EA5C5FD\t0x229E9\n0x8EA5C5FE\t0x22A58\n0x8EA5C6A1\t0x22C6C\n0x8EA5C6A2\t0x22CD9\n0x8EA5C6A3\t0x3A3E\n0x8EA5C6A4\t0x22CCB\n0x8EA5C6A5\t0x3A39\n0x8EA5C6A6\t0x22CBE\n0x8EA5C6A7\t0x22CB5\n0x8EA5C6A8\t0x22CD1\n0x8EA5C6A9\t0x22CC2\n0x8EA5C6AA\t0x22CB6\n0x8EA5C6AB\t0x22CD3\n0x8EA5C6AC\t0x2F8C2\n0x8EA5C6AD\t0x22EDA\n0x8EA5C6AE\t0x3AA2\n0x8EA5C6AF\t0x22FAE\n0x8EA5C6B0\t0x3AA1\n0x8EA5C6B1\t0x22FAC\n0x8EA5C6B2\t0x22FA9\n0x8EA5C6B3\t0x22FBA\n0x8EA5C6B4\t0x22FA7\n0x8EA5C6B5\t0x22FB3\n0x8EA5C6B6\t0x22FBD\n0x8EA5C6B7\t0x22FB1\n0x8EA5C6B8\t0x2310E\n0x8EA5C6B9\t0x23111\n0x8EA5C6BA\t0x2310F\n0x8EA5C6BB\t0x23252\n0x8EA5C6BC\t0x2326A\n0x8EA5C6BD\t0x23254\n0x8EA5C6BE\t0x23255\n0x8EA5C6BF\t0x23253\n0x8EA5C6C0\t0x23257\n0x8EA5C6C1\t0x2F8D0\n0x8EA5C6C2\t0x2325B\n0x8EA5C6C3\t0x23258\n0x8EA5C6C4\t0x23259\n0x8EA5C6C5\t0x3B3B\n0x8EA5C6C6\t0x235B8\n0x8EA5C6C7\t0x235B5\n0x8EA5C6C8\t0x235BF\n0x8EA5C6C9\t0x235C1\n0x8EA5C6CA\t0x235BB\n0x8EA5C6CB\t0x3BB7\n0x8EA5C6CC\t0x235C3\n0x8EA5C6CD\t0x235AD\n0x8EA5C6CE\t0x235A8\n0x8EA5C6CF\t0x235AE\n0x8EA5C6D0\t0x235AA\n0x8EA5C6D1\t0x235D0\n0x8EA5C6D2\t0x235B1\n0x8EA5C6D3\t0x235BC\n0x8EA5C6D4\t0x235B7\n0x8EA5C6D5\t0x235B0\n0x8EA5C6D6\t0x235FA\n0x8EA5C6D7\t0x235FB\n0x8EA5C6D8\t0x235B9\n0x8EA5C6D9\t0x23907\n0x8EA5C6DA\t0x238FC\n0x8EA5C6DB\t0x238FF\n0x8EA5C6DC\t0x238F2\n0x8EA5C6DD\t0x238F8\n0x8EA5C6DE\t0x238F4\n0x8EA5C6DF\t0x3C57\n0x8EA5C6E0\t0x3C70\n0x8EA5C6E1\t0x23AAE\n0x8EA5C6E2\t0x23B0F\n0x8EA5C6E3\t0x23B10\n0x8EA5C6E4\t0x29AC1\n0x8EA5C6E5\t0x23BC7\n0x8EA5C6E6\t0x23BC6\n0x8EA5C6E7\t0x23BCE\n0x8EA5C6E8\t0x3CA7\n0x8EA5C6E9\t0x23BDC\n0x8EA5C6EA\t0x23ED5\n0x8EA5C6EB\t0x23ED3\n0x8EA5C6EC\t0x23F20\n0x8EA5C6ED\t0x23EE2\n0x8EA5C6EE\t0x23EF1\n0x8EA5C6EF\t0x23EDB\n0x8EA5C6F0\t0x23EEA\n0x8EA5C6F1\t0x23EEB\n0x8EA5C6F2\t0x23EE1\n0x8EA5C6F3\t0x23EFF\n0x8EA5C6F4\t0x23ED6\n0x8EA5C6F5\t0x23EE0\n0x8EA5C6F6\t0x23ED7\n0x8EA5C6F7\t0x23EE5\n0x8EA5C6F8\t0x3D54\n0x8EA5C6F9\t0x2431B\n0x8EA5C6FA\t0x24310\n0x8EA5C6FB\t0x2430F\n0x8EA5C6FC\t0x2430E\n0x8EA5C6FD\t0x24339\n0x8EA5C6FE\t0x2430A\n0x8EA5C7A1\t0x24314\n0x8EA5C7A2\t0x2430C\n0x8EA5C7A3\t0x24523\n0x8EA5C7A4\t0x2455A\n0x8EA5C7A5\t0x245E2\n0x8EA5C7A6\t0x24693\n0x8EA5C7A7\t0x246B0\n0x8EA5C7A8\t0x246AB\n0x8EA5C7A9\t0x246BD\n0x8EA5C7AA\t0x246B1\n0x8EA5C7AB\t0x2468D\n0x8EA5C7AC\t0x246AD\n0x8EA5C7AD\t0x246AA\n0x8EA5C7AE\t0x246AC\n0x8EA5C7AF\t0x246BC\n0x8EA5C7B0\t0x246C9\n0x8EA5C7B1\t0x24847\n0x8EA5C7B2\t0x24862\n0x8EA5C7B3\t0x24840\n0x8EA5C7B4\t0x24844\n0x8EA5C7B5\t0x2483F\n0x8EA5C7B6\t0x24843\n0x8EA5C7B7\t0x2483D\n0x8EA5C7B8\t0x24860\n0x8EA5C7B9\t0x2485F\n0x8EA5C7BA\t0x2483A\n0x8EA5C7BB\t0x24842\n0x8EA5C7BC\t0x2485E\n0x8EA5C7BD\t0x2485D\n0x8EA5C7BE\t0x249BC\n0x8EA5C7BF\t0x249E0\n0x8EA5C7C0\t0x249EE\n0x8EA5C7C1\t0x249EB\n0x8EA5C7C2\t0x24A0D\n0x8EA5C7C3\t0x24B09\n0x8EA5C7C4\t0x24B0C\n0x8EA5C7C5\t0x24B69\n0x8EA5C7C6\t0x24B74\n0x8EA5C7C7\t0x24B67\n0x8EA5C7C8\t0x3F31\n0x8EA5C7C9\t0x7527\n0x8EA5C7CA\t0x24CAD\n0x8EA5C7CB\t0x24DFF\n0x8EA5C7CC\t0x24E16\n0x8EA5C7CD\t0x24E08\n0x8EA5C7CE\t0x24E09\n0x8EA5C7CF\t0x24E00\n0x8EA5C7D0\t0x24DFC\n0x8EA5C7D1\t0x24E13\n0x8EA5C7D2\t0x24E14\n0x8EA5C7D3\t0x24E0A\n0x8EA5C7D4\t0x2983E\n0x8EA5C7D5\t0x24E29\n0x8EA5C7D6\t0x24E17\n0x8EA5C7D7\t0x24E3B\n0x8EA5C7D8\t0x24DFB\n0x8EA5C7D9\t0x3FBF\n0x8EA5C7DA\t0x24E0E\n0x8EA5C7DB\t0x3FE4\n0x8EA5C7DC\t0x25008\n0x8EA5C7DD\t0x2521B\n0x8EA5C7DE\t0x2521A\n0x8EA5C7DF\t0x25219\n0x8EA5C7E0\t0x25202\n0x8EA5C7E1\t0x404A\n0x8EA5C7E2\t0x25217\n0x8EA5C7E3\t0x25207\n0x8EA5C7E4\t0x25213\n0x8EA5C7E5\t0x25209\n0x8EA5C7E6\t0x2520A\n0x8EA5C7E7\t0x25212\n0x8EA5C7E8\t0x252AA\n0x8EA5C7E9\t0x25238\n0x8EA5C7EA\t0x2537B\n0x8EA5C7EB\t0x2537C\n0x8EA5C7EC\t0x2537A\n0x8EA5C7ED\t0x253EA\n0x8EA5C7EE\t0x253EB\n0x8EA5C7EF\t0x253EF\n0x8EA5C7F0\t0x253F0\n0x8EA5C7F1\t0x25509\n0x8EA5C7F2\t0x25502\n0x8EA5C7F3\t0x25501\n0x8EA5C7F4\t0x2552B\n0x8EA5C7F5\t0x25507\n0x8EA5C7F6\t0x40CF\n0x8EA5C7F7\t0x25528\n0x8EA5C7F8\t0x254FB\n0x8EA5C7F9\t0x2552A\n0x8EA5C7FA\t0x254FE\n0x8EA5C7FB\t0x25504\n0x8EA5C7FC\t0x25529\n0x8EA5C7FD\t0x2550A\n0x8EA5C7FE\t0x798C\n0x8EA5C8A1\t0x256C2\n0x8EA5C8A2\t0x7991\n0x8EA5C8A3\t0x256A6\n0x8EA5C8A4\t0x4114\n0x8EA5C8A5\t0x22FC6\n0x8EA5C8A6\t0x21C07\n0x8EA5C8A7\t0x2580A\n0x8EA5C8A8\t0x257FD\n0x8EA5C8A9\t0x25806\n0x8EA5C8AA\t0x2580D\n0x8EA5C8AB\t0x25809\n0x8EA5C8AC\t0x2580B\n0x8EA5C8AD\t0x25800\n0x8EA5C8AE\t0x25805\n0x8EA5C8AF\t0x2583D\n0x8EA5C8B0\t0x259D5\n0x8EA5C8B1\t0x259BF\n0x8EA5C8B2\t0x259BA\n0x8EA5C8B3\t0x259C7\n0x8EA5C8B4\t0x25A98\n0x8EA5C8B5\t0x25A9A\n0x8EA5C8B6\t0x420D\n0x8EA5C8B7\t0x25BA4\n0x8EA5C8B8\t0x25B9C\n0x8EA5C8B9\t0x25B9D\n0x8EA5C8BA\t0x25BA2\n0x8EA5C8BB\t0x25B96\n0x8EA5C8BC\t0x25B95\n0x8EA5C8BD\t0x25BA5\n0x8EA5C8BE\t0x25BAA\n0x8EA5C8BF\t0x25BAD\n0x8EA5C8C0\t0x25B9A\n0x8EA5C8C1\t0x25BA3\n0x8EA5C8C2\t0x25B97\n0x8EA5C8C3\t0x25B90\n0x8EA5C8C4\t0x25BAF\n0x8EA5C8C5\t0x25B8D\n0x8EA5C8C6\t0x4201\n0x8EA5C8C7\t0x25BA8\n0x8EA5C8C8\t0x25BEE\n0x8EA5C8C9\t0x25EA3\n0x8EA5C8CA\t0x25E99\n0x8EA5C8CB\t0x25EA1\n0x8EA5C8CC\t0x25E9C\n0x8EA5C8CD\t0x25EA4\n0x8EA5C8CE\t0x25ECB\n0x8EA5C8CF\t0x26056\n0x8EA5C8D0\t0x26048\n0x8EA5C8D1\t0x26059\n0x8EA5C8D2\t0x2604A\n0x8EA5C8D3\t0x2605C\n0x8EA5C8D4\t0x42F1\n0x8EA5C8D5\t0x2604F\n0x8EA5C8D6\t0x2604D\n0x8EA5C8D7\t0x2605D\n0x8EA5C8D8\t0x2623A\n0x8EA5C8D9\t0x262E3\n0x8EA5C8DA\t0x262E1\n0x8EA5C8DB\t0x262DE\n0x8EA5C8DC\t0x26397\n0x8EA5C8DD\t0x2639A\n0x8EA5C8DE\t0x26448\n0x8EA5C8DF\t0x2644A\n0x8EA5C8E0\t0x2644C\n0x8EA5C8E1\t0x2644E\n0x8EA5C8E2\t0x2644F\n0x8EA5C8E3\t0x2644B\n0x8EA5C8E4\t0x2644D\n0x8EA5C8E5\t0x26447\n0x8EA5C8E6\t0x26451\n0x8EA5C8E7\t0x264DA\n0x8EA5C8E8\t0x264F9\n0x8EA5C8E9\t0x264FC\n0x8EA5C8EA\t0x264FB\n0x8EA5C8EB\t0x264FD\n0x8EA5C8EC\t0x264F8\n0x8EA5C8ED\t0x264FA\n0x8EA5C8EE\t0x2658A\n0x8EA5C8EF\t0x2658E\n0x8EA5C8F0\t0x26588\n0x8EA5C8F1\t0x26589\n0x8EA5C8F2\t0x2658D\n0x8EA5C8F3\t0x26590\n0x8EA5C8F4\t0x2F97E\n0x8EA5C8F5\t0x2671C\n0x8EA5C8F6\t0x267AB\n0x8EA5C8F7\t0x267A4\n0x8EA5C8F8\t0x267A8\n0x8EA5C8F9\t0x267AD\n0x8EA5C8FA\t0x2679F\n0x8EA5C8FB\t0x2679A\n0x8EA5C8FC\t0x267B0\n0x8EA5C8FD\t0x267A5\n0x8EA5C8FE\t0x267D5\n0x8EA5C9A1\t0x267A2\n0x8EA5C9A2\t0x267B2\n0x8EA5C9A3\t0x2679D\n0x8EA5C9A4\t0x267A1\n0x8EA5C9A5\t0x26915\n0x8EA5C9A6\t0x26942\n0x8EA5C9A7\t0x26973\n0x8EA5C9A8\t0x26984\n0x8EA5C9A9\t0x269DD\n0x8EA5C9AA\t0x26A5C\n0x8EA5C9AB\t0x26A4C\n0x8EA5C9AC\t0x4476\n0x8EA5C9AD\t0x26A4B\n0x8EA5C9AE\t0x26C67\n0x8EA5C9AF\t0x26DA8\n0x8EA5C9B0\t0x26D7F\n0x8EA5C9B1\t0x26D8D\n0x8EA5C9B2\t0x26D8B\n0x8EA5C9B3\t0x26DF7\n0x8EA5C9B4\t0x26DA9\n0x8EA5C9B5\t0x26DF4\n0x8EA5C9B6\t0x26D9A\n0x8EA5C9B7\t0x26D8C\n0x8EA5C9B8\t0x26D95\n0x8EA5C9B9\t0x26D7E\n0x8EA5C9BA\t0x26D77\n0x8EA5C9BB\t0x450A\n0x8EA5C9BC\t0x4503\n0x8EA5C9BD\t0x26D71\n0x8EA5C9BE\t0x26DFD\n0x8EA5C9BF\t0x26D88\n0x8EA5C9C0\t0x26D99\n0x8EA5C9C1\t0x26D6D\n0x8EA5C9C2\t0x26DD4\n0x8EA5C9C3\t0x26D91\n0x8EA5C9C4\t0x26D7D\n0x8EA5C9C5\t0x26D63\n0x8EA5C9C6\t0x26D75\n0x8EA5C9C7\t0x26DF9\n0x8EA5C9C8\t0x26D8E\n0x8EA5C9C9\t0x26D74\n0x8EA5C9CA\t0x26DD9\n0x8EA5C9CB\t0x26D66\n0x8EA5C9CC\t0x26DFA\n0x8EA5C9CD\t0x26DF5\n0x8EA5C9CE\t0x8660\n0x8EA5C9CF\t0x271C1\n0x8EA5C9D0\t0x271C9\n0x8EA5C9D1\t0x27303\n0x8EA5C9D2\t0x2732C\n0x8EA5C9D3\t0x27334\n0x8EA5C9D4\t0x27317\n0x8EA5C9D5\t0x27309\n0x8EA5C9D6\t0x27304\n0x8EA5C9D7\t0x27306\n0x8EA5C9D8\t0x2731A\n0x8EA5C9D9\t0x2730E\n0x8EA5C9DA\t0x27327\n0x8EA5C9DB\t0x27305\n0x8EA5C9DC\t0x27307\n0x8EA5C9DD\t0x27319\n0x8EA5C9DE\t0x27314\n0x8EA5C9DF\t0x2730C\n0x8EA5C9E0\t0x2731D\n0x8EA5C9E1\t0x27322\n0x8EA5C9E2\t0x27323\n0x8EA5C9E3\t0x275BB\n0x8EA5C9E4\t0x275BC\n0x8EA5C9E5\t0x275BA\n0x8EA5C9E6\t0x276A9\n0x8EA5C9E7\t0x276B5\n0x8EA5C9E8\t0x276AC\n0x8EA5C9E9\t0x276AA\n0x8EA5C9EA\t0x276AF\n0x8EA5C9EB\t0x276B7\n0x8EA5C9EC\t0x4635\n0x8EA5C9ED\t0x4636\n0x8EA5C9EE\t0x2783D\n0x8EA5C9EF\t0x27845\n0x8EA5C9F0\t0x27848\n0x8EA5C9F1\t0x2783C\n0x8EA5C9F2\t0x2783E\n0x8EA5C9F3\t0x278EC\n0x8EA5C9F4\t0x278ED\n0x8EA5C9F5\t0x278E9\n0x8EA5C9F6\t0x27A0A\n0x8EA5C9F7\t0x27A0B\n0x8EA5C9F8\t0x279F8\n0x8EA5C9F9\t0x27A04\n0x8EA5C9FA\t0x279F6\n0x8EA5C9FB\t0x279F9\n0x8EA5C9FC\t0x27C53\n0x8EA5C9FD\t0x27C52\n0x8EA5C9FE\t0x27C60\n0x8EA5CAA1\t0x27C63\n0x8EA5CAA2\t0x27CCE\n0x8EA5CAA3\t0x27CCD\n0x8EA5CAA4\t0x27CD0\n0x8EA5CAA5\t0x27CCC\n0x8EA5CAA6\t0x27D87\n0x8EA5CAA7\t0x27D8D\n0x8EA5CAA8\t0x27D9D\n0x8EA5CAA9\t0x4773\n0x8EA5CAAA\t0x27E63\n0x8EA5CAAB\t0x27EF4\n0x8EA5CAAC\t0x27EF1\n0x8EA5CAAD\t0x27EFF\n0x8EA5CAAE\t0x27EF5\n0x8EA5CAAF\t0x27EFC\n0x8EA5CAB0\t0x27EF2\n0x8EA5CAB1\t0x27EF6\n0x8EA5CAB2\t0x47B1\n0x8EA5CAB3\t0x27EFA\n0x8EA5CAB4\t0x47AF\n0x8EA5CAB5\t0x2802E\n0x8EA5CAB6\t0x28045\n0x8EA5CAB7\t0x28043\n0x8EA5CAB8\t0x28051\n0x8EA5CAB9\t0x2804C\n0x8EA5CABA\t0x28073\n0x8EA5CABB\t0x28047\n0x8EA5CABC\t0x2804B\n0x8EA5CABD\t0x2804F\n0x8EA5CABE\t0x47F4\n0x8EA5CABF\t0x28044\n0x8EA5CAC0\t0x2804D\n0x8EA5CAC1\t0x2804E\n0x8EA5CAC2\t0x2804A\n0x8EA5CAC3\t0x28041\n0x8EA5CAC4\t0x28052\n0x8EA5CAC5\t0x2809F\n0x8EA5CAC6\t0x28054\n0x8EA5CAC7\t0x28059\n0x8EA5CAC8\t0x280A2\n0x8EA5CAC9\t0x2824B\n0x8EA5CACA\t0x28248\n0x8EA5CACB\t0x2830D\n0x8EA5CACC\t0x2831F\n0x8EA5CACD\t0x28308\n0x8EA5CACE\t0x2830E\n0x8EA5CACF\t0x2831D\n0x8EA5CAD0\t0x28304\n0x8EA5CAD1\t0x28418\n0x8EA5CAD2\t0x2841B\n0x8EA5CAD3\t0x28566\n0x8EA5CAD4\t0x28562\n0x8EA5CAD5\t0x28583\n0x8EA5CAD6\t0x28567\n0x8EA5CAD7\t0x28762\n0x8EA5CAD8\t0x2874F\n0x8EA5CAD9\t0x2874E\n0x8EA5CADA\t0x28767\n0x8EA5CADB\t0x28753\n0x8EA5CADC\t0x2874D\n0x8EA5CADD\t0x2874C\n0x8EA5CADE\t0x28768\n0x8EA5CADF\t0x28751\n0x8EA5CAE0\t0x48DC\n0x8EA5CAE1\t0x28758\n0x8EA5CAE2\t0x2875B\n0x8EA5CAE3\t0x28750\n0x8EA5CAE4\t0x2876A\n0x8EA5CAE5\t0x28839\n0x8EA5CAE6\t0x28838\n0x8EA5CAE7\t0x28982\n0x8EA5CAE8\t0x28984\n0x8EA5CAE9\t0x28986\n0x8EA5CAEA\t0x28C80\n0x8EA5CAEB\t0x28C86\n0x8EA5CAEC\t0x28D25\n0x8EA5CAED\t0x28D11\n0x8EA5CAEE\t0x4999\n0x8EA5CAEF\t0x28D0E\n0x8EA5CAF0\t0x28D15\n0x8EA5CAF1\t0x28D0F\n0x8EA5CAF2\t0x28D18\n0x8EA5CAF3\t0x28D0D\n0x8EA5CAF4\t0x28D13\n0x8EA5CAF5\t0x28D16\n0x8EA5CAF6\t0x28D19\n0x8EA5CAF7\t0x28F08\n0x8EA5CAF8\t0x28EF7\n0x8EA5CAF9\t0x28EFB\n0x8EA5CAFA\t0x28EFC\n0x8EA5CAFB\t0x28FB4\n0x8EA5CAFC\t0x28FBE\n0x8EA5CAFD\t0x28FC1\n0x8EA5CAFE\t0x290A6\n0x8EA5CBA1\t0x290A5\n0x8EA5CBA2\t0x290A2\n0x8EA5CBA3\t0x290A4\n0x8EA5CBA4\t0x29212\n0x8EA5CBA5\t0x2920E\n0x8EA5CBA6\t0x2927A\n0x8EA5CBA7\t0x29278\n0x8EA5CBA8\t0x2927D\n0x8EA5CBA9\t0x2927E\n0x8EA5CBAA\t0x29281\n0x8EA5CBAB\t0x29283\n0x8EA5CBAC\t0x29280\n0x8EA5CBAD\t0x29282\n0x8EA5CBAE\t0x2939B\n0x8EA5CBAF\t0x29399\n0x8EA5CBB0\t0x2939C\n0x8EA5CBB1\t0x2939A\n0x8EA5CBB2\t0x293A1\n0x8EA5CBB3\t0x2941A\n0x8EA5CBB4\t0x2941C\n0x8EA5CBB5\t0x2948A\n0x8EA5CBB6\t0x29479\n0x8EA5CBB7\t0x29473\n0x8EA5CBB8\t0x29475\n0x8EA5CBB9\t0x2947C\n0x8EA5CBBA\t0x29478\n0x8EA5CBBB\t0x29460\n0x8EA5CBBC\t0x29483\n0x8EA5CBBD\t0x29470\n0x8EA5CBBE\t0x4AB6\n0x8EA5CBBF\t0x4ABD\n0x8EA5CBC0\t0x29487\n0x8EA5CBC1\t0x29484\n0x8EA5CBC2\t0x2947B\n0x8EA5CBC3\t0x2947E\n0x8EA5CBC4\t0x29474\n0x8EA5CBC5\t0x295B9\n0x8EA5CBC6\t0x295B8\n0x8EA5CBC7\t0x295B7\n0x8EA5CBC8\t0x295B5\n0x8EA5CBC9\t0x296CC\n0x8EA5CBCA\t0x296CE\n0x8EA5CBCB\t0x296D1\n0x8EA5CBCC\t0x9904\n0x8EA5CBCD\t0x296CB\n0x8EA5CBCE\t0x999B\n0x8EA5CBCF\t0x2987E\n0x8EA5CBD0\t0x2987A\n0x8EA5CBD1\t0x29877\n0x8EA5CBD2\t0x2988C\n0x8EA5CBD3\t0x298E1\n0x8EA5CBD4\t0x29A20\n0x8EA5CBD5\t0x29A1E\n0x8EA5CBD6\t0x29AC2\n0x8EA5CBD7\t0x29B0F\n0x8EA5CBD8\t0x29B00\n0x8EA5CBD9\t0x4BF4\n0x8EA5CBDA\t0x29B10\n0x8EA5CBDB\t0x29C0D\n0x8EA5CBDC\t0x29C0E\n0x8EA5CBDD\t0x29C8E\n0x8EA5CBDE\t0x29C8D\n0x8EA5CBDF\t0x29C8A\n0x8EA5CBE0\t0x29C8B\n0x8EA5CBE1\t0x29C8C\n0x8EA5CBE2\t0x29C8F\n0x8EA5CBE3\t0x29D57\n0x8EA5CBE4\t0x4C35\n0x8EA5CBE5\t0x29D55\n0x8EA5CBE6\t0x29D5B\n0x8EA5CBE7\t0x29FAC\n0x8EA5CBE8\t0x29FA7\n0x8EA5CBE9\t0x29FA0\n0x8EA5CBEA\t0x29F9E\n0x8EA5CBEB\t0x4CAA\n0x8EA5CBEC\t0x2A28D\n0x8EA5CBED\t0x4D1F\n0x8EA5CBEE\t0x2A393\n0x8EA5CBEF\t0x2A394\n0x8EA5CBF0\t0x2A392\n0x8EA5CBF1\t0x20181\n0x8EA5CBF2\t0x203D6\n0x8EA5CBF3\t0x203C3\n0x8EA5CBF4\t0x203E4\n0x8EA5CBF5\t0x203E2\n0x8EA5CBF6\t0x20409\n0x8EA5CBF7\t0x203BF\n0x8EA5CBF8\t0x203C8\n0x8EA5CBF9\t0x203C7\n0x8EA5CBFA\t0x204B5\n0x8EA5CBFB\t0x204B2\n0x8EA5CBFC\t0x2060C\n0x8EA5CBFD\t0x2060B\n0x8EA5CBFE\t0x2060A\n0x8EA5CCA1\t0x20605\n0x8EA5CCA2\t0x207D3\n0x8EA5CCA3\t0x207E6\n0x8EA5CCA4\t0x207E9\n0x8EA5CCA5\t0x207F0\n0x8EA5CCA6\t0x207EA\n0x8EA5CCA7\t0x207E7\n0x8EA5CCA8\t0x208B1\n0x8EA5CCA9\t0x208B3\n0x8EA5CCAA\t0x208B4\n0x8EA5CCAB\t0x208B0\n0x8EA5CCAC\t0x2095C\n0x8EA5CCAD\t0x2095D\n0x8EA5CCAE\t0x2095E\n0x8EA5CCAF\t0x209C0\n0x8EA5CCB0\t0x20AAF\n0x8EA5CCB1\t0x3550\n0x8EA5CCB2\t0x20B86\n0x8EA5CCB3\t0x20B83\n0x8EA5CCB4\t0x20B84\n0x8EA5CCB5\t0x20F5C\n0x8EA5CCB6\t0x20F70\n0x8EA5CCB7\t0x20F8C\n0x8EA5CCB8\t0x20F7B\n0x8EA5CCB9\t0x20F66\n0x8EA5CCBA\t0x20F79\n0x8EA5CCBB\t0x20F63\n0x8EA5CCBC\t0x20FC5\n0x8EA5CCBD\t0x20F6B\n0x8EA5CCBE\t0x20F6D\n0x8EA5CCBF\t0x20F72\n0x8EA5CCC0\t0x20F69\n0x8EA5CCC1\t0x20F75\n0x8EA5CCC2\t0x20F89\n0x8EA5CCC3\t0x20FC6\n0x8EA5CCC4\t0x20FA5\n0x8EA5CCC5\t0x203E7\n0x8EA5CCC6\t0x20F6A\n0x8EA5CCC7\t0x20F97\n0x8EA5CCC8\t0x2145A\n0x8EA5CCC9\t0x2145C\n0x8EA5CCCA\t0x21459\n0x8EA5CCCB\t0x21424\n0x8EA5CCCC\t0x21425\n0x8EA5CCCD\t0x21430\n0x8EA5CCCE\t0x21458\n0x8EA5CCCF\t0x21431\n0x8EA5CCD0\t0x21576\n0x8EA5CCD1\t0x215C1\n0x8EA5CCD2\t0x21685\n0x8EA5CCD3\t0x2167D\n0x8EA5CCD4\t0x21865\n0x8EA5CCD5\t0x21887\n0x8EA5CCD6\t0x21852\n0x8EA5CCD7\t0x21854\n0x8EA5CCD8\t0x2188A\n0x8EA5CCD9\t0x21850\n0x8EA5CCDA\t0x21886\n0x8EA5CCDB\t0x2184F\n0x8EA5CCDC\t0x21868\n0x8EA5CCDD\t0x2199D\n0x8EA5CCDE\t0x21AA0\n0x8EA5CCDF\t0x21ABA\n0x8EA5CCE0\t0x21ABD\n0x8EA5CCE1\t0x21AB8\n0x8EA5CCE2\t0x21BA6\n0x8EA5CCE3\t0x377B\n0x8EA5CCE4\t0x21CDE\n0x8EA5CCE5\t0x21CD8\n0x8EA5CCE6\t0x21CD1\n0x8EA5CCE7\t0x21F13\n0x8EA5CCE8\t0x3809\n0x8EA5CCE9\t0x21F0E\n0x8EA5CCEA\t0x21F1B\n0x8EA5CCEB\t0x21F3A\n0x8EA5CCEC\t0x3807\n0x8EA5CCED\t0x21F1C\n0x8EA5CCEE\t0x21F12\n0x8EA5CCEF\t0x21F16\n0x8EA5CCF0\t0x21F1A\n0x8EA5CCF1\t0x21448\n0x8EA5CCF2\t0x2214B\n0x8EA5CCF3\t0x22137\n0x8EA5CCF4\t0x22136\n0x8EA5CCF5\t0x22138\n0x8EA5CCF6\t0x2213A\n0x8EA5CCF7\t0x22149\n0x8EA5CCF8\t0x2213C\n0x8EA5CCF9\t0x2214A\n0x8EA5CCFA\t0x222B1\n0x8EA5CCFB\t0x222C2\n0x8EA5CCFC\t0x222B5\n0x8EA5CCFD\t0x222C4\n0x8EA5CCFE\t0x222B6\n0x8EA5CDA1\t0x2241E\n0x8EA5CDA2\t0x2241F\n0x8EA5CDA3\t0x224AF\n0x8EA5CDA4\t0x2256B\n0x8EA5CDA5\t0x2256F\n0x8EA5CDA6\t0x22792\n0x8EA5CDA7\t0x227E4\n0x8EA5CDA8\t0x2282C\n0x8EA5CDA9\t0x227EF\n0x8EA5CDAA\t0x6184\n0x8EA5CDAB\t0x2284F\n0x8EA5CDAC\t0x22852\n0x8EA5CDAD\t0x22850\n0x8EA5CDAE\t0x2283A\n0x8EA5CDAF\t0x22837\n0x8EA5CDB0\t0x22847\n0x8EA5CDB1\t0x22864\n0x8EA5CDB2\t0x22840\n0x8EA5CDB3\t0x2283C\n0x8EA5CDB4\t0x22845\n0x8EA5CDB5\t0x22841\n0x8EA5CDB6\t0x229F3\n0x8EA5CDB7\t0x39BB\n0x8EA5CDB8\t0x22CC1\n0x8EA5CDB9\t0x22CB4\n0x8EA5CDBA\t0x3A4B\n0x8EA5CDBB\t0x22D2A\n0x8EA5CDBC\t0x22D22\n0x8EA5CDBD\t0x22D29\n0x8EA5CDBE\t0x3A4D\n0x8EA5CDBF\t0x22D3E\n0x8EA5CDC0\t0x22D3C\n0x8EA5CDC1\t0x22D30\n0x8EA5CDC2\t0x22FC7\n0x8EA5CDC3\t0x22FD5\n0x8EA5CDC4\t0x22FD6\n0x8EA5CDC5\t0x22FD3\n0x8EA5CDC6\t0x22FCE\n0x8EA5CDC7\t0x22FC8\n0x8EA5CDC8\t0x2305C\n0x8EA5CDC9\t0x2305F\n0x8EA5CDCA\t0x23062\n0x8EA5CDCB\t0x3AC2\n0x8EA5CDCC\t0x230BD\n0x8EA5CDCD\t0x230BF\n0x8EA5CDCE\t0x2325C\n0x8EA5CDCF\t0x232B6\n0x8EA5CDD0\t0x3B1A\n0x8EA5CDD1\t0x2329D\n0x8EA5CDD2\t0x2327F\n0x8EA5CDD3\t0x3B12\n0x8EA5CDD4\t0x23294\n0x8EA5CDD5\t0x23281\n0x8EA5CDD6\t0x23347\n0x8EA5CDD7\t0x23346\n0x8EA5CDD8\t0x3B3C\n0x8EA5CDD9\t0x23394\n0x8EA5CDDA\t0x23675\n0x8EA5CDDB\t0x2361A\n0x8EA5CDDC\t0x2362A\n0x8EA5CDDD\t0x23632\n0x8EA5CDDE\t0x23617\n0x8EA5CDDF\t0x23623\n0x8EA5CDE0\t0x23674\n0x8EA5CDE1\t0x3BC3\n0x8EA5CDE2\t0x23676\n0x8EA5CDE3\t0x2362E\n0x8EA5CDE4\t0x23625\n0x8EA5CDE5\t0x23620\n0x8EA5CDE6\t0x23671\n0x8EA5CDE7\t0x23616\n0x8EA5CDE8\t0x23670\n0x8EA5CDE9\t0x2362C\n0x8EA5CDEA\t0x2362F\n0x8EA5CDEB\t0x2361F\n0x8EA5CDEC\t0x23664\n0x8EA5CDED\t0x3BC0\n0x8EA5CDEE\t0x23908\n0x8EA5CDEF\t0x23914\n0x8EA5CDF0\t0x2390A\n0x8EA5CDF1\t0x2390B\n0x8EA5CDF2\t0x23A4F\n0x8EA5CDF3\t0x23A59\n0x8EA5CDF4\t0x23A54\n0x8EA5CDF5\t0x23A51\n0x8EA5CDF6\t0x23AB6\n0x8EA5CDF7\t0x23BEC\n0x8EA5CDF8\t0x23BED\n0x8EA5CDF9\t0x23BEA\n0x8EA5CDFA\t0x23EEE\n0x8EA5CDFB\t0x23F5A\n0x8EA5CDFC\t0x23F73\n0x8EA5CDFD\t0x23F65\n0x8EA5CDFE\t0x23F61\n0x8EA5CEA1\t0x23F55\n0x8EA5CEA2\t0x23F6B\n0x8EA5CEA3\t0x23F64\n0x8EA5CEA4\t0x23F5B\n0x8EA5CEA5\t0x23F4C\n0x8EA5CEA6\t0x23F6F\n0x8EA5CEA7\t0x23F84\n0x8EA5CEA8\t0x23F70\n0x8EA5CEA9\t0x2435D\n0x8EA5CEAA\t0x24357\n0x8EA5CEAB\t0x24366\n0x8EA5CEAC\t0x24353\n0x8EA5CEAD\t0x24398\n0x8EA5CEAE\t0x24397\n0x8EA5CEAF\t0x24528\n0x8EA5CEB0\t0x245EB\n0x8EA5CEB1\t0x245EA\n0x8EA5CEB2\t0x245E8\n0x8EA5CEB3\t0x245EC\n0x8EA5CEB4\t0x245EF\n0x8EA5CEB5\t0x246D1\n0x8EA5CEB6\t0x246CA\n0x8EA5CEB7\t0x729F\n0x8EA5CEB8\t0x246CF\n0x8EA5CEB9\t0x246CD\n0x8EA5CEBA\t0x246CE\n0x8EA5CEBB\t0x24870\n0x8EA5CEBC\t0x24867\n0x8EA5CEBD\t0x24873\n0x8EA5CEBE\t0x2486D\n0x8EA5CEBF\t0x24876\n0x8EA5CEC0\t0x24879\n0x8EA5CEC1\t0x2486A\n0x8EA5CEC2\t0x2488B\n0x8EA5CEC3\t0x24872\n0x8EA5CEC4\t0x24871\n0x8EA5CEC5\t0x2486E\n0x8EA5CEC6\t0x2487A\n0x8EA5CEC7\t0x24A16\n0x8EA5CEC8\t0x24A39\n0x8EA5CEC9\t0x24A3B\n0x8EA5CECA\t0x24B10\n0x8EA5CECB\t0x24B96\n0x8EA5CECC\t0x24B7B\n0x8EA5CECD\t0x24B7C\n0x8EA5CECE\t0x24B7D\n0x8EA5CECF\t0x24CBE\n0x8EA5CED0\t0x24E5C\n0x8EA5CED1\t0x24E38\n0x8EA5CED2\t0x24E39\n0x8EA5CED3\t0x24E2E\n0x8EA5CED4\t0x24E34\n0x8EA5CED5\t0x24E32\n0x8EA5CED6\t0x24E5B\n0x8EA5CED7\t0x24E33\n0x8EA5CED8\t0x24E3C\n0x8EA5CED9\t0x3FE5\n0x8EA5CEDA\t0x2500E\n0x8EA5CEDB\t0x2500F\n0x8EA5CEDC\t0x25010\n0x8EA5CEDD\t0x25087\n0x8EA5CEDE\t0x2525B\n0x8EA5CEDF\t0x25253\n0x8EA5CEE0\t0x405F\n0x8EA5CEE1\t0x2525C\n0x8EA5CEE2\t0x2523F\n0x8EA5CEE3\t0x25259\n0x8EA5CEE4\t0x2524A\n0x8EA5CEE5\t0x25244\n0x8EA5CEE6\t0x2524C\n0x8EA5CEE7\t0x25240\n0x8EA5CEE8\t0x2525F\n0x8EA5CEE9\t0x2525E\n0x8EA5CEEA\t0x2524E\n0x8EA5CEEB\t0x25254\n0x8EA5CEEC\t0x25243\n0x8EA5CEED\t0x25287\n0x8EA5CEEE\t0x25382\n0x8EA5CEEF\t0x25385\n0x8EA5CEF0\t0x25531\n0x8EA5CEF1\t0x25547\n0x8EA5CEF2\t0x2552E\n0x8EA5CEF3\t0x2552F\n0x8EA5CEF4\t0x25548\n0x8EA5CEF5\t0x25534\n0x8EA5CEF6\t0x4118\n0x8EA5CEF7\t0x2059F\n0x8EA5CEF8\t0x25832\n0x8EA5CEF9\t0x25836\n0x8EA5CEFA\t0x25833\n0x8EA5CEFB\t0x25831\n0x8EA5CEFC\t0x25840\n0x8EA5CEFD\t0x25841\n0x8EA5CEFE\t0x259DD\n0x8EA5CFA1\t0x259D2\n0x8EA5CFA2\t0x259D9\n0x8EA5CFA3\t0x41AD\n0x8EA5CFA4\t0x259DF\n0x8EA5CFA5\t0x259DB\n0x8EA5CFA6\t0x259D8\n0x8EA5CFA7\t0x259D3\n0x8EA5CFA8\t0x259DE\n0x8EA5CFA9\t0x259E0\n0x8EA5CFAA\t0x259D4\n0x8EA5CFAB\t0x259D7\n0x8EA5CFAC\t0x259DA\n0x8EA5CFAD\t0x25AA7\n0x8EA5CFAE\t0x25BFE\n0x8EA5CFAF\t0x25BDD\n0x8EA5CFB0\t0x25C40\n0x8EA5CFB1\t0x25BE2\n0x8EA5CFB2\t0x421E\n0x8EA5CFB3\t0x25BD6\n0x8EA5CFB4\t0x25BDE\n0x8EA5CFB5\t0x25BEF\n0x8EA5CFB6\t0x4227\n0x8EA5CFB7\t0x25BEB\n0x8EA5CFB8\t0x25BEA\n0x8EA5CFB9\t0x25BE4\n0x8EA5CFBA\t0x25BD1\n0x8EA5CFBB\t0x4218\n0x8EA5CFBC\t0x25BEC\n0x8EA5CFBD\t0x25BFA\n0x8EA5CFBE\t0x25BD9\n0x8EA5CFBF\t0x25BF3\n0x8EA5CFC0\t0x25BE1\n0x8EA5CFC1\t0x25BDC\n0x8EA5CFC2\t0x25BE5\n0x8EA5CFC3\t0x25BDF\n0x8EA5CFC4\t0x25BD4\n0x8EA5CFC5\t0x4220\n0x8EA5CFC6\t0x25C05\n0x8EA5CFC7\t0x25ED6\n0x8EA5CFC8\t0x25ED5\n0x8EA5CFC9\t0x25ED0\n0x8EA5CFCA\t0x25EC8\n0x8EA5CFCB\t0x25EC4\n0x8EA5CFCC\t0x25EC9\n0x8EA5CFCD\t0x25ECD\n0x8EA5CFCE\t0x25ED2\n0x8EA5CFCF\t0x25ECC\n0x8EA5CFD0\t0x25ECA\n0x8EA5CFD1\t0x260A0\n0x8EA5CFD2\t0x26092\n0x8EA5CFD3\t0x42F4\n0x8EA5CFD4\t0x4302\n0x8EA5CFD5\t0x2608B\n0x8EA5CFD6\t0x260A1\n0x8EA5CFD7\t0x26095\n0x8EA5CFD8\t0x26088\n0x8EA5CFD9\t0x26086\n0x8EA5CFDA\t0x2608D\n0x8EA5CFDB\t0x26085\n0x8EA5CFDC\t0x26091\n0x8EA5CFDD\t0x26089\n0x8EA5CFDE\t0x260A2\n0x8EA5CFDF\t0x262F0\n0x8EA5CFE0\t0x262F3\n0x8EA5CFE1\t0x262F4\n0x8EA5CFE2\t0x262EF\n0x8EA5CFE3\t0x26306\n0x8EA5CFE4\t0x263A2\n0x8EA5CFE5\t0x2645E\n0x8EA5CFE6\t0x26463\n0x8EA5CFE7\t0x26460\n0x8EA5CFE8\t0x2645B\n0x8EA5CFE9\t0x2647B\n0x8EA5CFEA\t0x26458\n0x8EA5CFEB\t0x26459\n0x8EA5CFEC\t0x2645D\n0x8EA5CFED\t0x26505\n0x8EA5CFEE\t0x26506\n0x8EA5CFEF\t0x26502\n0x8EA5CFF0\t0x26503\n0x8EA5CFF1\t0x26504\n0x8EA5CFF2\t0x265A2\n0x8EA5CFF3\t0x265A7\n0x8EA5CFF4\t0x265A6\n0x8EA5CFF5\t0x265A4\n0x8EA5CFF6\t0x265AC\n0x8EA5CFF7\t0x265A9\n0x8EA5CFF8\t0x267E7\n0x8EA5CFF9\t0x26801\n0x8EA5CFFA\t0x267DF\n0x8EA5CFFB\t0x267D9\n0x8EA5CFFC\t0x267E3\n0x8EA5CFFD\t0x2680F\n0x8EA5CFFE\t0x2691A\n0x8EA5D0A1\t0x26945\n0x8EA5D0A2\t0x26948\n0x8EA5D0A3\t0x2697B\n0x8EA5D0A4\t0x26985\n0x8EA5D0A5\t0x26986\n0x8EA5D0A6\t0x269FE\n0x8EA5D0A7\t0x269FF\n0x8EA5D0A8\t0x26A64\n0x8EA5D0A9\t0x26A71\n0x8EA5D0AA\t0x26A72\n0x8EA5D0AB\t0x26A61\n0x8EA5D0AC\t0x26A62\n0x8EA5D0AD\t0x26A6C\n0x8EA5D0AE\t0x26A60\n0x8EA5D0AF\t0x26A5D\n0x8EA5D0B0\t0x26A63\n0x8EA5D0B1\t0x26A67\n0x8EA5D0B2\t0x26E01\n0x8EA5D0B3\t0x26E2A\n0x8EA5D0B4\t0x26E30\n0x8EA5D0B5\t0x26E06\n0x8EA5D0B6\t0x26E7D\n0x8EA5D0B7\t0x26E22\n0x8EA5D0B8\t0x26EB9\n0x8EA5D0B9\t0x26E0A\n0x8EA5D0BA\t0x26E10\n0x8EA5D0BB\t0x26D8F\n0x8EA5D0BC\t0x26E80\n0x8EA5D0BD\t0x26E13\n0x8EA5D0BE\t0x26E2E\n0x8EA5D0BF\t0x26E18\n0x8EA5D0C0\t0x26E17\n0x8EA5D0C1\t0x26E1A\n0x8EA5D0C2\t0x26E14\n0x8EA5D0C3\t0x26E47\n0x8EA5D0C4\t0x26E63\n0x8EA5D0C5\t0x26E38\n0x8EA5D0C6\t0x4524\n0x8EA5D0C7\t0x26E7F\n0x8EA5D0C8\t0x26E21\n0x8EA5D0C9\t0x26E37\n0x8EA5D0CA\t0x26E31\n0x8EA5D0CB\t0x26E1B\n0x8EA5D0CC\t0x26EA5\n0x8EA5D0CD\t0x26F6C\n0x8EA5D0CE\t0x271D3\n0x8EA5D0CF\t0x27388\n0x8EA5D0D0\t0x2736E\n0x8EA5D0D1\t0x2735C\n0x8EA5D0D2\t0x27374\n0x8EA5D0D3\t0x27354\n0x8EA5D0D4\t0x27383\n0x8EA5D0D5\t0x8770\n0x8EA5D0D6\t0x27365\n0x8EA5D0D7\t0x27360\n0x8EA5D0D8\t0x27370\n0x8EA5D0D9\t0x2736F\n0x8EA5D0DA\t0x2736D\n0x8EA5D0DB\t0x27372\n0x8EA5D0DC\t0x2736C\n0x8EA5D0DD\t0x27376\n0x8EA5D0DE\t0x27375\n0x8EA5D0DF\t0x27359\n0x8EA5D0E0\t0x273C7\n0x8EA5D0E1\t0x275C1\n0x8EA5D0E2\t0x275F9\n0x8EA5D0E3\t0x276E3\n0x8EA5D0E4\t0x276E7\n0x8EA5D0E5\t0x276D6\n0x8EA5D0E6\t0x276CF\n0x8EA5D0E7\t0x276DA\n0x8EA5D0E8\t0x276E9\n0x8EA5D0E9\t0x276D2\n0x8EA5D0EA\t0x27855\n0x8EA5D0EB\t0x2784F\n0x8EA5D0EC\t0x2784D\n0x8EA5D0ED\t0x27851\n0x8EA5D0EE\t0x27856\n0x8EA5D0EF\t0x278F9\n0x8EA5D0F0\t0x278F8\n0x8EA5D0F1\t0x27906\n0x8EA5D0F2\t0x27903\n0x8EA5D0F3\t0x27909\n0x8EA5D0F4\t0x278F7\n0x8EA5D0F5\t0x278F5\n0x8EA5D0F6\t0x27A47\n0x8EA5D0F7\t0x27A45\n0x8EA5D0F8\t0x27A3E\n0x8EA5D0F9\t0x27A46\n0x8EA5D0FA\t0x27A29\n0x8EA5D0FB\t0x27A34\n0x8EA5D0FC\t0x27A3F\n0x8EA5D0FD\t0x27A44\n0x8EA5D0FE\t0x27A35\n0x8EA5D1A1\t0x27A5A\n0x8EA5D1A2\t0x27A2A\n0x8EA5D1A3\t0x27A33\n0x8EA5D1A4\t0x27A37\n0x8EA5D1A5\t0x27A43\n0x8EA5D1A6\t0x27A39\n0x8EA5D1A7\t0x27A30\n0x8EA5D1A8\t0x27A5D\n0x8EA5D1A9\t0x27A32\n0x8EA5D1AA\t0x27A27\n0x8EA5D1AB\t0x27BBD\n0x8EA5D1AC\t0x27BBA\n0x8EA5D1AD\t0x27BBC\n0x8EA5D1AE\t0x27BF1\n0x8EA5D1AF\t0x27BF0\n0x8EA5D1B0\t0x27C61\n0x8EA5D1B1\t0x27C5C\n0x8EA5D1B2\t0x27C58\n0x8EA5D1B3\t0x27C5D\n0x8EA5D1B4\t0x27CDA\n0x8EA5D1B5\t0x27CD9\n0x8EA5D1B6\t0x27CDD\n0x8EA5D1B7\t0x27CDC\n0x8EA5D1B8\t0x27CDE\n0x8EA5D1B9\t0x477D\n0x8EA5D1BA\t0x27DA0\n0x8EA5D1BB\t0x27DA2\n0x8EA5D1BC\t0x27F0F\n0x8EA5D1BD\t0x27F13\n0x8EA5D1BE\t0x27F12\n0x8EA5D1BF\t0x27F11\n0x8EA5D1C0\t0x27F14\n0x8EA5D1C1\t0x27F19\n0x8EA5D1C2\t0x27F0E\n0x8EA5D1C3\t0x27F17\n0x8EA5D1C4\t0x27F21\n0x8EA5D1C5\t0x27F20\n0x8EA5D1C6\t0x27F16\n0x8EA5D1C7\t0x28078\n0x8EA5D1C8\t0x8E37\n0x8EA5D1C9\t0x28087\n0x8EA5D1CA\t0x28079\n0x8EA5D1CB\t0x28080\n0x8EA5D1CC\t0x28077\n0x8EA5D1CD\t0x28081\n0x8EA5D1CE\t0x28046\n0x8EA5D1CF\t0x2807A\n0x8EA5D1D0\t0x2809C\n0x8EA5D1D1\t0x28083\n0x8EA5D1D2\t0x28084\n0x8EA5D1D3\t0x280AD\n0x8EA5D1D4\t0x2809D\n0x8EA5D1D5\t0x2809E\n0x8EA5D1D6\t0x28255\n0x8EA5D1D7\t0x28336\n0x8EA5D1D8\t0x2832B\n0x8EA5D1D9\t0x28327\n0x8EA5D1DA\t0x28346\n0x8EA5D1DB\t0x2832C\n0x8EA5D1DC\t0x28345\n0x8EA5D1DD\t0x28333\n0x8EA5D1DE\t0x2832D\n0x8EA5D1DF\t0x28334\n0x8EA5D1E0\t0x28322\n0x8EA5D1E1\t0x4864\n0x8EA5D1E2\t0x2841F\n0x8EA5D1E3\t0x285B3\n0x8EA5D1E4\t0x2858C\n0x8EA5D1E5\t0x2858F\n0x8EA5D1E6\t0x285AF\n0x8EA5D1E7\t0x285AD\n0x8EA5D1E8\t0x2858E\n0x8EA5D1E9\t0x285AC\n0x8EA5D1EA\t0x285B0\n0x8EA5D1EB\t0x285B1\n0x8EA5D1EC\t0x285AE\n0x8EA5D1ED\t0x28599\n0x8EA5D1EE\t0x286EB\n0x8EA5D1EF\t0x28774\n0x8EA5D1F0\t0x28775\n0x8EA5D1F1\t0x2878E\n0x8EA5D1F2\t0x2876D\n0x8EA5D1F3\t0x28770\n0x8EA5D1F4\t0x2878C\n0x8EA5D1F5\t0x2884F\n0x8EA5D1F6\t0x28851\n0x8EA5D1F7\t0x28858\n0x8EA5D1F8\t0x2884C\n0x8EA5D1F9\t0x2884E\n0x8EA5D1FA\t0x28915\n0x8EA5D1FB\t0x289BE\n0x8EA5D1FC\t0x289DB\n0x8EA5D1FD\t0x289B3\n0x8EA5D1FE\t0x289AE\n0x8EA5D2A1\t0x28C87\n0x8EA5D2A2\t0x28C8A\n0x8EA5D2A3\t0x28C88\n0x8EA5D2A4\t0x28C8B\n0x8EA5D2A5\t0x28C8C\n0x8EA5D2A6\t0x28D44\n0x8EA5D2A7\t0x28D2D\n0x8EA5D2A8\t0x28D2A\n0x8EA5D2A9\t0x28D31\n0x8EA5D2AA\t0x28D2C\n0x8EA5D2AB\t0x28D45\n0x8EA5D2AC\t0x28D30\n0x8EA5D2AD\t0x28D29\n0x8EA5D2AE\t0x28D46\n0x8EA5D2AF\t0x28EF4\n0x8EA5D2B0\t0x28F14\n0x8EA5D2B1\t0x28F10\n0x8EA5D2B2\t0x28F0F\n0x8EA5D2B3\t0x28F12\n0x8EA5D2B4\t0x28F0B\n0x8EA5D2B5\t0x28F0C\n0x8EA5D2B6\t0x28F0A\n0x8EA5D2B7\t0x28F13\n0x8EA5D2B8\t0x28F0E\n0x8EA5D2B9\t0x28FD9\n0x8EA5D2BA\t0x28FD0\n0x8EA5D2BB\t0x9703\n0x8EA5D2BC\t0x290C1\n0x8EA5D2BD\t0x290BF\n0x8EA5D2BE\t0x290BD\n0x8EA5D2BF\t0x290BC\n0x8EA5D2C0\t0x290BA\n0x8EA5D2C1\t0x290BB\n0x8EA5D2C2\t0x290D1\n0x8EA5D2C3\t0x290BE\n0x8EA5D2C4\t0x290D0\n0x8EA5D2C5\t0x290B9\n0x8EA5D2C6\t0x2921A\n0x8EA5D2C7\t0x2921C\n0x8EA5D2C8\t0x2921B\n0x8EA5D2C9\t0x29291\n0x8EA5D2CA\t0x29296\n0x8EA5D2CB\t0x2929F\n0x8EA5D2CC\t0x2929C\n0x8EA5D2CD\t0x2929A\n0x8EA5D2CE\t0x2929D\n0x8EA5D2CF\t0x293AD\n0x8EA5D2D0\t0x293A5\n0x8EA5D2D1\t0x293AE\n0x8EA5D2D2\t0x29403\n0x8EA5D2D3\t0x29426\n0x8EA5D2D4\t0x29420\n0x8EA5D2D5\t0x29423\n0x8EA5D2D6\t0x29424\n0x8EA5D2D7\t0x29421\n0x8EA5D2D8\t0x29428\n0x8EA5D2D9\t0x29425\n0x8EA5D2DA\t0x2941E\n0x8EA5D2DB\t0x29494\n0x8EA5D2DC\t0x29493\n0x8EA5D2DD\t0x2948F\n0x8EA5D2DE\t0x2949A\n0x8EA5D2DF\t0x294AD\n0x8EA5D2E0\t0x4AC2\n0x8EA5D2E1\t0x295CA\n0x8EA5D2E2\t0x295C5\n0x8EA5D2E3\t0x296BB\n0x8EA5D2E4\t0x296E1\n0x8EA5D2E5\t0x296EA\n0x8EA5D2E6\t0x296E4\n0x8EA5D2E7\t0x296ED\n0x8EA5D2E8\t0x296E6\n0x8EA5D2E9\t0x296E0\n0x8EA5D2EA\t0x296E8\n0x8EA5D2EB\t0x296E5\n0x8EA5D2EC\t0x2981A\n0x8EA5D2ED\t0x29894\n0x8EA5D2EE\t0x29896\n0x8EA5D2EF\t0x2989E\n0x8EA5D2F0\t0x29895\n0x8EA5D2F1\t0x298A1\n0x8EA5D2F2\t0x2988E\n0x8EA5D2F3\t0x2989B\n0x8EA5D2F4\t0x29892\n0x8EA5D2F5\t0x29897\n0x8EA5D2F6\t0x29899\n0x8EA5D2F7\t0x29893\n0x8EA5D2F8\t0x29A32\n0x8EA5D2F9\t0x29A2F\n0x8EA5D2FA\t0x29A2E\n0x8EA5D2FB\t0x29A33\n0x8EA5D2FC\t0x29B1C\n0x8EA5D2FD\t0x29B1E\n0x8EA5D2FE\t0x29B11\n0x8EA5D3A1\t0x29B20\n0x8EA5D3A2\t0x29B1F\n0x8EA5D3A3\t0x29B19\n0x8EA5D3A4\t0x29B16\n0x8EA5D3A5\t0x29CAC\n0x8EA5D3A6\t0x29CB9\n0x8EA5D3A7\t0x29CB3\n0x8EA5D3A8\t0x29CA6\n0x8EA5D3A9\t0x29CA2\n0x8EA5D3AA\t0x29CA9\n0x8EA5D3AB\t0x29CA7\n0x8EA5D3AC\t0x29D6C\n0x8EA5D3AD\t0x29D6D\n0x8EA5D3AE\t0x29D69\n0x8EA5D3AF\t0x29D80\n0x8EA5D3B0\t0x29D66\n0x8EA5D3B1\t0x29D65\n0x8EA5D3B2\t0x29D71\n0x8EA5D3B3\t0x29D6B\n0x8EA5D3B4\t0x29FBD\n0x8EA5D3B5\t0x29FC1\n0x8EA5D3B6\t0x29FD3\n0x8EA5D3B7\t0x29FB6\n0x8EA5D3B8\t0x4CAC\n0x8EA5D3B9\t0x29FB9\n0x8EA5D3BA\t0x29FD4\n0x8EA5D3BB\t0x29FB7\n0x8EA5D3BC\t0x29FDB\n0x8EA5D3BD\t0x29FB8\n0x8EA5D3BE\t0x29FC0\n0x8EA5D3BF\t0x29FBC\n0x8EA5D3C0\t0x29FD5\n0x8EA5D3C1\t0x29FBF\n0x8EA5D3C2\t0x29FC3\n0x8EA5D3C3\t0x29FC9\n0x8EA5D3C4\t0x2A258\n0x8EA5D3C5\t0x2A290\n0x8EA5D3C6\t0x2A295\n0x8EA5D3C7\t0x2A297\n0x8EA5D3C8\t0x2A309\n0x8EA5D3C9\t0x2A308\n0x8EA5D3CA\t0x2A306\n0x8EA5D3CB\t0x2A305\n0x8EA5D3CC\t0x2A310\n0x8EA5D3CD\t0x2A397\n0x8EA5D3CE\t0x2A395\n0x8EA5D3CF\t0x2A3EE\n0x8EA5D3D0\t0x2A41F\n0x8EA5D3D1\t0x2FA1A\n0x8EA5D3D2\t0x21B4B\n0x8EA5D3D3\t0x2018E\n0x8EA5D3D4\t0x203E8\n0x8EA5D3D5\t0x203F0\n0x8EA5D3D6\t0x203F4\n0x8EA5D3D7\t0x20406\n0x8EA5D3D8\t0x203ED\n0x8EA5D3D9\t0x349B\n0x8EA5D3DA\t0x203E9\n0x8EA5D3DB\t0x20400\n0x8EA5D3DC\t0x204B8\n0x8EA5D3DD\t0x2056D\n0x8EA5D3DE\t0x20804\n0x8EA5D3DF\t0x20801\n0x8EA5D3E0\t0x20803\n0x8EA5D3E1\t0x20802\n0x8EA5D3E2\t0x52F6\n0x8EA5D3E3\t0x3526\n0x8EA5D3E4\t0x20962\n0x8EA5D3E5\t0x20ABA\n0x8EA5D3E6\t0x20B13\n0x8EA5D3E7\t0x20FDE\n0x8EA5D3E8\t0x20FD7\n0x8EA5D3E9\t0x20FE4\n0x8EA5D3EA\t0x20FCE\n0x8EA5D3EB\t0x20FE3\n0x8EA5D3EC\t0x20FDD\n0x8EA5D3ED\t0x2103A\n0x8EA5D3EE\t0x20FDB\n0x8EA5D3EF\t0x20FD6\n0x8EA5D3F0\t0x20FE0\n0x8EA5D3F1\t0x20FD4\n0x8EA5D3F2\t0x20FCB\n0x8EA5D3F3\t0x20FE1\n0x8EA5D3F4\t0x20FC9\n0x8EA5D3F5\t0x20FDF\n0x8EA5D3F6\t0x2103C\n0x8EA5D3F7\t0x20FFC\n0x8EA5D3F8\t0x20FCF\n0x8EA5D3F9\t0x21479\n0x8EA5D3FA\t0x21476\n0x8EA5D3FB\t0x21478\n0x8EA5D3FC\t0x21687\n0x8EA5D3FD\t0x2189C\n0x8EA5D3FE\t0x218B1\n0x8EA5D4A1\t0x218C1\n0x8EA5D4A2\t0x2189A\n0x8EA5D4A3\t0x21892\n0x8EA5D4A4\t0x41AF\n0x8EA5D4A5\t0x218C2\n0x8EA5D4A6\t0x21896\n0x8EA5D4A7\t0x218C0\n0x8EA5D4A8\t0x21891\n0x8EA5D4A9\t0x21895\n0x8EA5D4AA\t0x219A2\n0x8EA5D4AB\t0x21AC3\n0x8EA5D4AC\t0x21AC0\n0x8EA5D4AD\t0x21AC2\n0x8EA5D4AE\t0x20B8A\n0x8EA5D4AF\t0x21BB0\n0x8EA5D4B0\t0x21C16\n0x8EA5D4B1\t0x21F46\n0x8EA5D4B2\t0x21F4A\n0x8EA5D4B3\t0x21F3E\n0x8EA5D4B4\t0x21F45\n0x8EA5D4B5\t0x21F42\n0x8EA5D4B6\t0x3815\n0x8EA5D4B7\t0x21F5B\n0x8EA5D4B8\t0x21F44\n0x8EA5D4B9\t0x22004\n0x8EA5D4BA\t0x24022\n0x8EA5D4BB\t0x22155\n0x8EA5D4BC\t0x22157\n0x8EA5D4BD\t0x22151\n0x8EA5D4BE\t0x2214E\n0x8EA5D4BF\t0x2215A\n0x8EA5D4C0\t0x222C6\n0x8EA5D4C1\t0x222C3\n0x8EA5D4C2\t0x389C\n0x8EA5D4C3\t0x222C5\n0x8EA5D4C4\t0x222CC\n0x8EA5D4C5\t0x22371\n0x8EA5D4C6\t0x22426\n0x8EA5D4C7\t0x224B2\n0x8EA5D4C8\t0x2257A\n0x8EA5D4C9\t0x22584\n0x8EA5D4CA\t0x2257B\n0x8EA5D4CB\t0x22874\n0x8EA5D4CC\t0x2288C\n0x8EA5D4CD\t0x22851\n0x8EA5D4CE\t0x22848\n0x8EA5D4CF\t0x2288D\n0x8EA5D4D0\t0x22892\n0x8EA5D4D1\t0x22898\n0x8EA5D4D2\t0x22893\n0x8EA5D4D3\t0x228B0\n0x8EA5D4D4\t0x2284E\n0x8EA5D4D5\t0x22896\n0x8EA5D4D6\t0x22897\n0x8EA5D4D7\t0x2289C\n0x8EA5D4D8\t0x228CA\n0x8EA5D4D9\t0x22D33\n0x8EA5D4DA\t0x22D83\n0x8EA5D4DB\t0x22D84\n0x8EA5D4DC\t0x22D9A\n0x8EA5D4DD\t0x22D8C\n0x8EA5D4DE\t0x64CC\n0x8EA5D4DF\t0x22D99\n0x8EA5D4E0\t0x22EE0\n0x8EA5D4E1\t0x22FE4\n0x8EA5D4E2\t0x22FF8\n0x8EA5D4E3\t0x22FED\n0x8EA5D4E4\t0x22FF3\n0x8EA5D4E5\t0x22FF4\n0x8EA5D4E6\t0x22FF5\n0x8EA5D4E7\t0x22FFD\n0x8EA5D4E8\t0x23119\n0x8EA5D4E9\t0x2329E\n0x8EA5D4EA\t0x232C4\n0x8EA5D4EB\t0x2329F\n0x8EA5D4EC\t0x2339B\n0x8EA5D4ED\t0x2339F\n0x8EA5D4EE\t0x2339A\n0x8EA5D4EF\t0x236AA\n0x8EA5D4F0\t0x2369D\n0x8EA5D4F1\t0x23692\n0x8EA5D4F2\t0x236A2\n0x8EA5D4F3\t0x236AF\n0x8EA5D4F4\t0x236EB\n0x8EA5D4F5\t0x236A0\n0x8EA5D4F6\t0x236A1\n0x8EA5D4F7\t0x23694\n0x8EA5D4F8\t0x23698\n0x8EA5D4F9\t0x2368F\n0x8EA5D4FA\t0x23687\n0x8EA5D4FB\t0x23684\n0x8EA5D4FC\t0x236A9\n0x8EA5D4FD\t0x2367C\n0x8EA5D4FE\t0x23918\n0x8EA5D5A1\t0x23A5F\n0x8EA5D5A2\t0x23A62\n0x8EA5D5A3\t0x23A61\n0x8EA5D5A4\t0x23AC0\n0x8EA5D5A5\t0x23B15\n0x8EA5D5A6\t0x23BFC\n0x8EA5D5A7\t0x23BF9\n0x8EA5D5A8\t0x23FC8\n0x8EA5D5A9\t0x23FC9\n0x8EA5D5AA\t0x23FDE\n0x8EA5D5AB\t0x23FCA\n0x8EA5D5AC\t0x23FE2\n0x8EA5D5AD\t0x3D64\n0x8EA5D5AE\t0x3D6E\n0x8EA5D5AF\t0x24004\n0x8EA5D5B0\t0x23FCC\n0x8EA5D5B1\t0x23FDD\n0x8EA5D5B2\t0x23FE4\n0x8EA5D5B3\t0x23FD3\n0x8EA5D5B4\t0x23FC7\n0x8EA5D5B5\t0x23FC6\n0x8EA5D5B6\t0x3D5F\n0x8EA5D5B7\t0x24037\n0x8EA5D5B8\t0x243D8\n0x8EA5D5B9\t0x243EE\n0x8EA5D5BA\t0x243B2\n0x8EA5D5BB\t0x243A3\n0x8EA5D5BC\t0x243B3\n0x8EA5D5BD\t0x243ED\n0x8EA5D5BE\t0x243F8\n0x8EA5D5BF\t0x24531\n0x8EA5D5C0\t0x2455B\n0x8EA5D5C1\t0x24566\n0x8EA5D5C2\t0x24569\n0x8EA5D5C3\t0x24596\n0x8EA5D5C4\t0x2459B\n0x8EA5D5C5\t0x245F7\n0x8EA5D5C6\t0x245F3\n0x8EA5D5C7\t0x245F4\n0x8EA5D5C8\t0x245F5\n0x8EA5D5C9\t0x246E2\n0x8EA5D5CA\t0x246E7\n0x8EA5D5CB\t0x246E5\n0x8EA5D5CC\t0x246E9\n0x8EA5D5CD\t0x246E6\n0x8EA5D5CE\t0x246E3\n0x8EA5D5CF\t0x24874\n0x8EA5D5D0\t0x2487F\n0x8EA5D5D1\t0x2488F\n0x8EA5D5D2\t0x24890\n0x8EA5D5D3\t0x24897\n0x8EA5D5D4\t0x248A3\n0x8EA5D5D5\t0x2488E\n0x8EA5D5D6\t0x24898\n0x8EA5D5D7\t0x2488C\n0x8EA5D5D8\t0x24A42\n0x8EA5D5D9\t0x24A44\n0x8EA5D5DA\t0x24A69\n0x8EA5D5DB\t0x24A43\n0x8EA5D5DC\t0x24A68\n0x8EA5D5DD\t0x3EF6\n0x8EA5D5DE\t0x24B8D\n0x8EA5D5DF\t0x24B88\n0x8EA5D5E0\t0x24B8B\n0x8EA5D5E1\t0x24B89\n0x8EA5D5E2\t0x24CCC\n0x8EA5D5E3\t0x24D1F\n0x8EA5D5E4\t0x24E80\n0x8EA5D5E5\t0x24E5E\n0x8EA5D5E6\t0x24E67\n0x8EA5D5E7\t0x24E68\n0x8EA5D5E8\t0x24E65\n0x8EA5D5E9\t0x764A\n0x8EA5D5EA\t0x24E74\n0x8EA5D5EB\t0x24E69\n0x8EA5D5EC\t0x24E61\n0x8EA5D5ED\t0x24E62\n0x8EA5D5EE\t0x24E6C\n0x8EA5D5EF\t0x24E93\n0x8EA5D5F0\t0x24E86\n0x8EA5D5F1\t0x24F9D\n0x8EA5D5F2\t0x24F9B\n0x8EA5D5F3\t0x2501B\n0x8EA5D5F4\t0x25016\n0x8EA5D5F5\t0x25019\n0x8EA5D5F6\t0x25014\n0x8EA5D5F7\t0x25018\n0x8EA5D5F8\t0x25015\n0x8EA5D5F9\t0x25099\n0x8EA5D5FA\t0x25098\n0x8EA5D5FB\t0x2525D\n0x8EA5D5FC\t0x25289\n0x8EA5D5FD\t0x2527A\n0x8EA5D5FE\t0x2527D\n0x8EA5D6A1\t0x2524B\n0x8EA5D6A2\t0x4073\n0x8EA5D6A3\t0x25278\n0x8EA5D6A4\t0x2527F\n0x8EA5D6A5\t0x25277\n0x8EA5D6A6\t0x2527E\n0x8EA5D6A7\t0x25279\n0x8EA5D6A8\t0x252AB\n0x8EA5D6A9\t0x2527C\n0x8EA5D6AA\t0x25274\n0x8EA5D6AB\t0x25275\n0x8EA5D6AC\t0x252A7\n0x8EA5D6AD\t0x2538D\n0x8EA5D6AE\t0x2554E\n0x8EA5D6AF\t0x25566\n0x8EA5D6B0\t0x25561\n0x8EA5D6B1\t0x2554D\n0x8EA5D6B2\t0x2554F\n0x8EA5D6B3\t0x40DD\n0x8EA5D6B4\t0x25554\n0x8EA5D6B5\t0x2557C\n0x8EA5D6B6\t0x256DA\n0x8EA5D6B7\t0x256DE\n0x8EA5D6B8\t0x256D8\n0x8EA5D6B9\t0x256DD\n0x8EA5D6BA\t0x256DF\n0x8EA5D6BB\t0x25866\n0x8EA5D6BC\t0x25862\n0x8EA5D6BD\t0x2585F\n0x8EA5D6BE\t0x25864\n0x8EA5D6BF\t0x25863\n0x8EA5D6C0\t0x25860\n0x8EA5D6C1\t0x25888\n0x8EA5D6C2\t0x2586A\n0x8EA5D6C3\t0x25867\n0x8EA5D6C4\t0x25887\n0x8EA5D6C5\t0x2583F\n0x8EA5D6C6\t0x2586C\n0x8EA5D6C7\t0x2586E\n0x8EA5D6C8\t0x258AD\n0x8EA5D6C9\t0x259F1\n0x8EA5D6CA\t0x259F4\n0x8EA5D6CB\t0x259F6\n0x8EA5D6CC\t0x259F5\n0x8EA5D6CD\t0x259F8\n0x8EA5D6CE\t0x259FB\n0x8EA5D6CF\t0x259EC\n0x8EA5D6D0\t0x259EF\n0x8EA5D6D1\t0x259ED\n0x8EA5D6D2\t0x7AB9\n0x8EA5D6D3\t0x259F7\n0x8EA5D6D4\t0x259F9\n0x8EA5D6D5\t0x259FD\n0x8EA5D6D6\t0x25AB1\n0x8EA5D6D7\t0x25C36\n0x8EA5D6D8\t0x25C1B\n0x8EA5D6D9\t0x25C32\n0x8EA5D6DA\t0x25C42\n0x8EA5D6DB\t0x25C4D\n0x8EA5D6DC\t0x25C1F\n0x8EA5D6DD\t0x25C21\n0x8EA5D6DE\t0x25C1C\n0x8EA5D6DF\t0x25C31\n0x8EA5D6E0\t0x25C2E\n0x8EA5D6E1\t0x25C47\n0x8EA5D6E2\t0x25C3B\n0x8EA5D6E3\t0x25C41\n0x8EA5D6E4\t0x25C18\n0x8EA5D6E5\t0x25C39\n0x8EA5D6E6\t0x25C1D\n0x8EA5D6E7\t0x25C27\n0x8EA5D6E8\t0x25C23\n0x8EA5D6E9\t0x7BD7\n0x8EA5D6EA\t0x25EEE\n0x8EA5D6EB\t0x25EE8\n0x8EA5D6EC\t0x25EE5\n0x8EA5D6ED\t0x25EEF\n0x8EA5D6EE\t0x25EE4\n0x8EA5D6EF\t0x25EEC\n0x8EA5D6F0\t0x25EF0\n0x8EA5D6F1\t0x260D7\n0x8EA5D6F2\t0x260D8\n0x8EA5D6F3\t0x260D4\n0x8EA5D6F4\t0x260CA\n0x8EA5D6F5\t0x260D2\n0x8EA5D6F6\t0x260CB\n0x8EA5D6F7\t0x260D3\n0x8EA5D6F8\t0x260E6\n0x8EA5D6F9\t0x260E2\n0x8EA5D6FA\t0x26249\n0x8EA5D6FB\t0x26248\n0x8EA5D6FC\t0x262FF\n0x8EA5D6FD\t0x26309\n0x8EA5D6FE\t0x263B0\n0x8EA5D7A1\t0x263AF\n0x8EA5D7A2\t0x2647C\n0x8EA5D7A3\t0x26478\n0x8EA5D7A4\t0x2647A\n0x8EA5D7A5\t0x26472\n0x8EA5D7A6\t0x26479\n0x8EA5D7A7\t0x2647E\n0x8EA5D7A8\t0x2650C\n0x8EA5D7A9\t0x2650B\n0x8EA5D7AA\t0x265CD\n0x8EA5D7AB\t0x265BE\n0x8EA5D7AC\t0x265BC\n0x8EA5D7AD\t0x265BF\n0x8EA5D7AE\t0x265C0\n0x8EA5D7AF\t0x265BD\n0x8EA5D7B0\t0x26838\n0x8EA5D7B1\t0x26808\n0x8EA5D7B2\t0x26805\n0x8EA5D7B3\t0x2683B\n0x8EA5D7B4\t0x26810\n0x8EA5D7B5\t0x2680C\n0x8EA5D7B6\t0x2680D\n0x8EA5D7B7\t0x26804\n0x8EA5D7B8\t0x2683A\n0x8EA5D7B9\t0x26813\n0x8EA5D7BA\t0x26837\n0x8EA5D7BB\t0x26839\n0x8EA5D7BC\t0x2691F\n0x8EA5D7BD\t0x2694B\n0x8EA5D7BE\t0x269EE\n0x8EA5D7BF\t0x26A75\n0x8EA5D7C0\t0x26A78\n0x8EA5D7C1\t0x26A7C\n0x8EA5D7C2\t0x26A74\n0x8EA5D7C3\t0x26A76\n0x8EA5D7C4\t0x26AEA\n0x8EA5D7C5\t0x26AEB\n0x8EA5D7C6\t0x26DFB\n0x8EA5D7C7\t0x26E19\n0x8EA5D7C8\t0x26EA7\n0x8EA5D7C9\t0x26E8C\n0x8EA5D7CA\t0x26EDC\n0x8EA5D7CB\t0x26E98\n0x8EA5D7CC\t0x26EBE\n0x8EA5D7CD\t0x26E9E\n0x8EA5D7CE\t0x26F0F\n0x8EA5D7CF\t0x26E9F\n0x8EA5D7D0\t0x26EDD\n0x8EA5D7D1\t0x26E93\n0x8EA5D7D2\t0x26EBB\n0x8EA5D7D3\t0x26EB6\n0x8EA5D7D4\t0x26E90\n0x8EA5D7D5\t0x26EA1\n0x8EA5D7D6\t0x26EBD\n0x8EA5D7D7\t0x26EDE\n0x8EA5D7D8\t0x26E3A\n0x8EA5D7D9\t0x26F22\n0x8EA5D7DA\t0x26E97\n0x8EA5D7DB\t0x26E94\n0x8EA5D7DC\t0x26EC3\n0x8EA5D7DD\t0x26E8E\n0x8EA5D7DE\t0x26EA8\n0x8EA5D7DF\t0x26E99\n0x8EA5D7E0\t0x26EAD\n0x8EA5D7E1\t0x26E9B\n0x8EA5D7E2\t0x26EA2\n0x8EA5D7E3\t0x26F21\n0x8EA5D7E4\t0x26EAC\n0x8EA5D7E5\t0x26F0E\n0x8EA5D7E6\t0x26F31\n0x8EA5D7E7\t0x271E1\n0x8EA5D7E8\t0x271DE\n0x8EA5D7E9\t0x271DF\n0x8EA5D7EA\t0x271DC\n0x8EA5D7EB\t0x271DD\n0x8EA5D7EC\t0x271EC\n0x8EA5D7ED\t0x271E7\n0x8EA5D7EE\t0x27369\n0x8EA5D7EF\t0x273B8\n0x8EA5D7F0\t0x273A1\n0x8EA5D7F1\t0x273A8\n0x8EA5D7F2\t0x273BA\n0x8EA5D7F3\t0x273C2\n0x8EA5D7F4\t0x273A6\n0x8EA5D7F5\t0x273A4\n0x8EA5D7F6\t0x273A3\n0x8EA5D7F7\t0x273AB\n0x8EA5D7F8\t0x273BC\n0x8EA5D7F9\t0x273B7\n0x8EA5D7FA\t0x273BF\n0x8EA5D7FB\t0x273AD\n0x8EA5D7FC\t0x273B1\n0x8EA5D7FD\t0x273CA\n0x8EA5D7FE\t0x273C4\n0x8EA5D8A1\t0x273B9\n0x8EA5D8A2\t0x275C8\n0x8EA5D8A3\t0x275C6\n0x8EA5D8A4\t0x275C7\n0x8EA5D8A5\t0x2770A\n0x8EA5D8A6\t0x2770D\n0x8EA5D8A7\t0x276FB\n0x8EA5D8A8\t0x27703\n0x8EA5D8A9\t0x27702\n0x8EA5D8AA\t0x276FC\n0x8EA5D8AB\t0x276F9\n0x8EA5D8AC\t0x276F8\n0x8EA5D8AD\t0x2786E\n0x8EA5D8AE\t0x27863\n0x8EA5D8AF\t0x27862\n0x8EA5D8B0\t0x27861\n0x8EA5D8B1\t0x2786B\n0x8EA5D8B2\t0x4688\n0x8EA5D8B3\t0x2786F\n0x8EA5D8B4\t0x27866\n0x8EA5D8B5\t0x2786C\n0x8EA5D8B6\t0x2790E\n0x8EA5D8B7\t0x27915\n0x8EA5D8B8\t0x27916\n0x8EA5D8B9\t0x27910\n0x8EA5D8BA\t0x27917\n0x8EA5D8BB\t0x27911\n0x8EA5D8BC\t0x27A6E\n0x8EA5D8BD\t0x27A6C\n0x8EA5D8BE\t0x27A87\n0x8EA5D8BF\t0x27A83\n0x8EA5D8C0\t0x27A63\n0x8EA5D8C1\t0x27ADC\n0x8EA5D8C2\t0x27BC0\n0x8EA5D8C3\t0x27BF7\n0x8EA5D8C4\t0x27BFA\n0x8EA5D8C5\t0x27C70\n0x8EA5D8C6\t0x27C6A\n0x8EA5D8C7\t0x27C68\n0x8EA5D8C8\t0x27C69\n0x8EA5D8C9\t0x27C84\n0x8EA5D8CA\t0x27CEC\n0x8EA5D8CB\t0x27CE7\n0x8EA5D8CC\t0x27CEE\n0x8EA5D8CD\t0x27DBA\n0x8EA5D8CE\t0x27DB2\n0x8EA5D8CF\t0x27DB5\n0x8EA5D8D0\t0x27DCB\n0x8EA5D8D1\t0x2080B\n0x8EA5D8D2\t0x27DD0\n0x8EA5D8D3\t0x27E6D\n0x8EA5D8D4\t0x27E6C\n0x8EA5D8D5\t0x47BB\n0x8EA5D8D6\t0x27F45\n0x8EA5D8D7\t0x27F46\n0x8EA5D8D8\t0x27F34\n0x8EA5D8D9\t0x27F2C\n0x8EA5D8DA\t0x27F35\n0x8EA5D8DB\t0x27F44\n0x8EA5D8DC\t0x47BA\n0x8EA5D8DD\t0x27F76\n0x8EA5D8DE\t0x280B1\n0x8EA5D8DF\t0x280AA\n0x8EA5D8E0\t0x280A1\n0x8EA5D8E1\t0x280B2\n0x8EA5D8E2\t0x4812\n0x8EA5D8E3\t0x280A6\n0x8EA5D8E4\t0x280B5\n0x8EA5D8E5\t0x280B4\n0x8EA5D8E6\t0x280B8\n0x8EA5D8E7\t0x280AF\n0x8EA5D8E8\t0x280B0\n0x8EA5D8E9\t0x280A3\n0x8EA5D8EA\t0x28262\n0x8EA5D8EB\t0x28264\n0x8EA5D8EC\t0x28356\n0x8EA5D8ED\t0x28351\n0x8EA5D8EE\t0x2834F\n0x8EA5D8EF\t0x28368\n0x8EA5D8F0\t0x2834C\n0x8EA5D8F1\t0x28350\n0x8EA5D8F2\t0x4861\n0x8EA5D8F3\t0x28348\n0x8EA5D8F4\t0x2834A\n0x8EA5D8F5\t0x28421\n0x8EA5D8F6\t0x285E3\n0x8EA5D8F7\t0x285B9\n0x8EA5D8F8\t0x285DE\n0x8EA5D8F9\t0x285B7\n0x8EA5D8FA\t0x285E1\n0x8EA5D8FB\t0x285B6\n0x8EA5D8FC\t0x285B5\n0x8EA5D8FD\t0x285DF\n0x8EA5D8FE\t0x48E1\n0x8EA5D9A1\t0x28797\n0x8EA5D9A2\t0x2879A\n0x8EA5D9A3\t0x2879B\n0x8EA5D9A4\t0x28798\n0x8EA5D9A5\t0x28792\n0x8EA5D9A6\t0x28793\n0x8EA5D9A7\t0x287D7\n0x8EA5D9A8\t0x28773\n0x8EA5D9A9\t0x2886B\n0x8EA5D9AA\t0x28874\n0x8EA5D9AB\t0x28878\n0x8EA5D9AC\t0x2886D\n0x8EA5D9AD\t0x28918\n0x8EA5D9AE\t0x289E9\n0x8EA5D9AF\t0x289F5\n0x8EA5D9B0\t0x289EA\n0x8EA5D9B1\t0x28A2E\n0x8EA5D9B2\t0x289E7\n0x8EA5D9B3\t0x289FE\n0x8EA5D9B4\t0x289E5\n0x8EA5D9B5\t0x28A36\n0x8EA5D9B6\t0x289F0\n0x8EA5D9B7\t0x289E6\n0x8EA5D9B8\t0x28A2C\n0x8EA5D9B9\t0x28C89\n0x8EA5D9BA\t0x28C95\n0x8EA5D9BB\t0x28C93\n0x8EA5D9BC\t0x28D4D\n0x8EA5D9BD\t0x28D4A\n0x8EA5D9BE\t0x28D4F\n0x8EA5D9BF\t0x28D50\n0x8EA5D9C0\t0x28D4B\n0x8EA5D9C1\t0x28F2A\n0x8EA5D9C2\t0x28F2B\n0x8EA5D9C3\t0x28F2F\n0x8EA5D9C4\t0x28F2E\n0x8EA5D9C5\t0x28F7C\n0x8EA5D9C6\t0x28FED\n0x8EA5D9C7\t0x28FE2\n0x8EA5D9C8\t0x290E0\n0x8EA5D9C9\t0x290DC\n0x8EA5D9CA\t0x290DA\n0x8EA5D9CB\t0x290D6\n0x8EA5D9CC\t0x290F4\n0x8EA5D9CD\t0x290D9\n0x8EA5D9CE\t0x290D5\n0x8EA5D9CF\t0x29222\n0x8EA5D9D0\t0x29221\n0x8EA5D9D1\t0x29224\n0x8EA5D9D2\t0x29225\n0x8EA5D9D3\t0x29226\n0x8EA5D9D4\t0x29223\n0x8EA5D9D5\t0x292AA\n0x8EA5D9D6\t0x292AF\n0x8EA5D9D7\t0x292B0\n0x8EA5D9D8\t0x292AB\n0x8EA5D9D9\t0x293AF\n0x8EA5D9DA\t0x293B7\n0x8EA5D9DB\t0x293B5\n0x8EA5D9DC\t0x293B2\n0x8EA5D9DD\t0x293B3\n0x8EA5D9DE\t0x2942B\n0x8EA5D9DF\t0x294D8\n0x8EA5D9E0\t0x294C2\n0x8EA5D9E1\t0x294AF\n0x8EA5D9E2\t0x294BC\n0x8EA5D9E3\t0x294B8\n0x8EA5D9E4\t0x294BE\n0x8EA5D9E5\t0x294B7\n0x8EA5D9E6\t0x294B4\n0x8EA5D9E7\t0x294BF\n0x8EA5D9E8\t0x294B3\n0x8EA5D9E9\t0x294B1\n0x8EA5D9EA\t0x294BB\n0x8EA5D9EB\t0x294BD\n0x8EA5D9EC\t0x294D6\n0x8EA5D9ED\t0x294DD\n0x8EA5D9EE\t0x295D8\n0x8EA5D9EF\t0x295D3\n0x8EA5D9F0\t0x295D5\n0x8EA5D9F1\t0x295E3\n0x8EA5D9F2\t0x295E2\n0x8EA5D9F3\t0x295D9\n0x8EA5D9F4\t0x295DE\n0x8EA5D9F5\t0x295DF\n0x8EA5D9F6\t0x295DA\n0x8EA5D9F7\t0x295D4\n0x8EA5D9F8\t0x296F3\n0x8EA5D9F9\t0x296E2\n0x8EA5D9FA\t0x2970D\n0x8EA5D9FB\t0x29701\n0x8EA5D9FC\t0x29705\n0x8EA5D9FD\t0x2971A\n0x8EA5D9FE\t0x29703\n0x8EA5DAA1\t0x2971F\n0x8EA5DAA2\t0x29716\n0x8EA5DAA3\t0x296FA\n0x8EA5DAA4\t0x296FC\n0x8EA5DAA5\t0x2970A\n0x8EA5DAA6\t0x999F\n0x8EA5DAA7\t0x298BC\n0x8EA5DAA8\t0x298CA\n0x8EA5DAA9\t0x298B6\n0x8EA5DAAA\t0x298C7\n0x8EA5DAAB\t0x298BF\n0x8EA5DAAC\t0x4B89\n0x8EA5DAAD\t0x298B9\n0x8EA5DAAE\t0x4B8C\n0x8EA5DAAF\t0x298B0\n0x8EA5DAB0\t0x298B8\n0x8EA5DAB1\t0x298BD\n0x8EA5DAB2\t0x29891\n0x8EA5DAB3\t0x298BB\n0x8EA5DAB4\t0x298BE\n0x8EA5DAB5\t0x29A3E\n0x8EA5DAB6\t0x29A3D\n0x8EA5DAB7\t0x29B38\n0x8EA5DAB8\t0x29B3D\n0x8EA5DAB9\t0x29B39\n0x8EA5DABA\t0x29B33\n0x8EA5DABB\t0x29C33\n0x8EA5DABC\t0x29CBB\n0x8EA5DABD\t0x29CC6\n0x8EA5DABE\t0x29CC5\n0x8EA5DABF\t0x29CC7\n0x8EA5DAC0\t0x29CCB\n0x8EA5DAC1\t0x29CA8\n0x8EA5DAC2\t0x29CC8\n0x8EA5DAC3\t0x29CBE\n0x8EA5DAC4\t0x29CC1\n0x8EA5DAC5\t0x29CBD\n0x8EA5DAC6\t0x29D82\n0x8EA5DAC7\t0x29D9E\n0x8EA5DAC8\t0x29D81\n0x8EA5DAC9\t0x29D84\n0x8EA5DACA\t0x9B8D\n0x8EA5DACB\t0x29D96\n0x8EA5DACC\t0x29D8E\n0x8EA5DACD\t0x29D88\n0x8EA5DACE\t0x29D87\n0x8EA5DACF\t0x29FE0\n0x8EA5DAD0\t0x2A00D\n0x8EA5DAD1\t0x29FDF\n0x8EA5DAD2\t0x29FE4\n0x8EA5DAD3\t0x29FE2\n0x8EA5DAD4\t0x29FDD\n0x8EA5DAD5\t0x29FEC\n0x8EA5DAD6\t0x29FDE\n0x8EA5DAD7\t0x29FE7\n0x8EA5DAD8\t0x29FEA\n0x8EA5DAD9\t0x29FE3\n0x8EA5DADA\t0x2A25C\n0x8EA5DADB\t0x9E77\n0x8EA5DADC\t0x2A25D\n0x8EA5DADD\t0x2A29C\n0x8EA5DADE\t0x2A31D\n0x8EA5DADF\t0x2A39D\n0x8EA5DAE0\t0x2A39E\n0x8EA5DAE1\t0x2A39B\n0x8EA5DAE2\t0x2A3B5\n0x8EA5DAE3\t0x2A3B9\n0x8EA5DAE4\t0x2A3B6\n0x8EA5DAE5\t0x2A3F3\n0x8EA5DAE6\t0x2A3F2\n0x8EA5DAE7\t0x2A3F4\n0x8EA5DAE8\t0x2A426\n0x8EA5DAE9\t0x2A427\n0x8EA5DAEA\t0x2A425\n0x8EA5DAEB\t0x2A506\n0x8EA5DAEC\t0x2A50B\n0x8EA5DAED\t0x2A53A\n0x8EA5DAEE\t0x2A53C\n0x8EA5DAEF\t0x2040A\n0x8EA5DAF0\t0x2040B\n0x8EA5DAF1\t0x204BF\n0x8EA5DAF2\t0x204FD\n0x8EA5DAF3\t0x20618\n0x8EA5DAF4\t0x291DF\n0x8EA5DAF5\t0x25390\n0x8EA5DAF6\t0x2069E\n0x8EA5DAF7\t0x207FC\n0x8EA5DAF8\t0x20810\n0x8EA5DAF9\t0x2080F\n0x8EA5DAFA\t0x2080D\n0x8EA5DAFB\t0x208B9\n0x8EA5DAFC\t0x208B7\n0x8EA5DAFD\t0x208BA\n0x8EA5DAFE\t0x2090A\n0x8EA5DBA1\t0x21041\n0x8EA5DBA2\t0x2108B\n0x8EA5DBA3\t0x21046\n0x8EA5DBA4\t0x21053\n0x8EA5DBA5\t0x210E2\n0x8EA5DBA6\t0x2103F\n0x8EA5DBA7\t0x20F7C\n0x8EA5DBA8\t0x2104B\n0x8EA5DBA9\t0x2104E\n0x8EA5DBAA\t0x2108A\n0x8EA5DBAB\t0x21047\n0x8EA5DBAC\t0x21493\n0x8EA5DBAD\t0x27DCE\n0x8EA5DBAE\t0x2148C\n0x8EA5DBAF\t0x214AF\n0x8EA5DBB0\t0x214C9\n0x8EA5DBB1\t0x215C6\n0x8EA5DBB2\t0x215C8\n0x8EA5DBB3\t0x21691\n0x8EA5DBB4\t0x218CF\n0x8EA5DBB5\t0x218D4\n0x8EA5DBB6\t0x218CE\n0x8EA5DBB7\t0x21ADD\n0x8EA5DBB8\t0x21AD4\n0x8EA5DBB9\t0x21F49\n0x8EA5DBBA\t0x21F63\n0x8EA5DBBB\t0x21F5D\n0x8EA5DBBC\t0x381A\n0x8EA5DBBD\t0x21F67\n0x8EA5DBBE\t0x21FBB\n0x8EA5DBBF\t0x21F60\n0x8EA5DBC0\t0x21F80\n0x8EA5DBC1\t0x2215F\n0x8EA5DBC2\t0x22160\n0x8EA5DBC3\t0x222DA\n0x8EA5DBC4\t0x222D2\n0x8EA5DBC5\t0x222DD\n0x8EA5DBC6\t0x2258E\n0x8EA5DBC7\t0x22588\n0x8EA5DBC8\t0x2256C\n0x8EA5DBC9\t0x2289E\n0x8EA5DBCA\t0x228C9\n0x8EA5DBCB\t0x228A4\n0x8EA5DBCC\t0x3998\n0x8EA5DBCD\t0x228D9\n0x8EA5DBCE\t0x228D2\n0x8EA5DBCF\t0x228DA\n0x8EA5DBD0\t0x228DD\n0x8EA5DBD1\t0x228CE\n0x8EA5DBD2\t0x228FC\n0x8EA5DBD3\t0x22A14\n0x8EA5DBD4\t0x22A60\n0x8EA5DBD5\t0x22DD7\n0x8EA5DBD6\t0x22DCB\n0x8EA5DBD7\t0x22DCD\n0x8EA5DBD8\t0x22DD5\n0x8EA5DBD9\t0x22EE7\n0x8EA5DBDA\t0x23000\n0x8EA5DBDB\t0x2300A\n0x8EA5DBDC\t0x2300F\n0x8EA5DBDD\t0x23002\n0x8EA5DBDE\t0x23001\n0x8EA5DBDF\t0x2311D\n0x8EA5DBE0\t0x232CA\n0x8EA5DBE1\t0x232CB\n0x8EA5DBE2\t0x232CD\n0x8EA5DBE3\t0x2334F\n0x8EA5DBE4\t0x2339C\n0x8EA5DBE5\t0x23680\n0x8EA5DBE6\t0x2370D\n0x8EA5DBE7\t0x23702\n0x8EA5DBE8\t0x3BF1\n0x8EA5DBE9\t0x23707\n0x8EA5DBEA\t0x236F7\n0x8EA5DBEB\t0x236F8\n0x8EA5DBEC\t0x236FD\n0x8EA5DBED\t0x23724\n0x8EA5DBEE\t0x236FB\n0x8EA5DBEF\t0x23739\n0x8EA5DBF0\t0x2373A\n0x8EA5DBF1\t0x23922\n0x8EA5DBF2\t0x6BA9\n0x8EA5DBF3\t0x23A6A\n0x8EA5DBF4\t0x23A6D\n0x8EA5DBF5\t0x23A74\n0x8EA5DBF6\t0x23C0E\n0x8EA5DBF7\t0x23FDF\n0x8EA5DBF8\t0x2402B\n0x8EA5DBF9\t0x23FE3\n0x8EA5DBFA\t0x24026\n0x8EA5DBFB\t0x2402A\n0x8EA5DBFC\t0x24023\n0x8EA5DBFD\t0x24035\n0x8EA5DBFE\t0x2404A\n0x8EA5DCA1\t0x243FD\n0x8EA5DCA2\t0x24400\n0x8EA5DCA3\t0x2441E\n0x8EA5DCA4\t0x243FF\n0x8EA5DCA5\t0x2459E\n0x8EA5DCA6\t0x245FA\n0x8EA5DCA7\t0x246F1\n0x8EA5DCA8\t0x24895\n0x8EA5DCA9\t0x248A8\n0x8EA5DCAA\t0x248A6\n0x8EA5DCAB\t0x24A6E\n0x8EA5DCAC\t0x24A83\n0x8EA5DCAD\t0x24A6D\n0x8EA5DCAE\t0x24B8F\n0x8EA5DCAF\t0x3F6A\n0x8EA5DCB0\t0x24CDF\n0x8EA5DCB1\t0x24CD5\n0x8EA5DCB2\t0x24CE0\n0x8EA5DCB3\t0x24CD3\n0x8EA5DCB4\t0x24CD8\n0x8EA5DCB5\t0x24E8C\n0x8EA5DCB6\t0x764B\n0x8EA5DCB7\t0x24E94\n0x8EA5DCB8\t0x24E96\n0x8EA5DCB9\t0x24E85\n0x8EA5DCBA\t0x24E8F\n0x8EA5DCBB\t0x24EA9\n0x8EA5DCBC\t0x24E8E\n0x8EA5DCBD\t0x24E90\n0x8EA5DCBE\t0x24EB8\n0x8EA5DCBF\t0x24EC3\n0x8EA5DCC0\t0x24EBB\n0x8EA5DCC1\t0x24FA5\n0x8EA5DCC2\t0x24FA2\n0x8EA5DCC3\t0x76A2\n0x8EA5DCC4\t0x24FA3\n0x8EA5DCC5\t0x250B5\n0x8EA5DCC6\t0x250AC\n0x8EA5DCC7\t0x250A8\n0x8EA5DCC8\t0x252AD\n0x8EA5DCC9\t0x252B8\n0x8EA5DCCA\t0x252B4\n0x8EA5DCCB\t0x252AE\n0x8EA5DCCC\t0x252B6\n0x8EA5DCCD\t0x4485\n0x8EA5DCCE\t0x252C1\n0x8EA5DCCF\t0x252BF\n0x8EA5DCD0\t0x25392\n0x8EA5DCD1\t0x25400\n0x8EA5DCD2\t0x25401\n0x8EA5DCD3\t0x25575\n0x8EA5DCD4\t0x25572\n0x8EA5DCD5\t0x25578\n0x8EA5DCD6\t0x25570\n0x8EA5DCD7\t0x2557E\n0x8EA5DCD8\t0x2557D\n0x8EA5DCD9\t0x2557F\n0x8EA5DCDA\t0x256EF\n0x8EA5DCDB\t0x2586D\n0x8EA5DCDC\t0x2588E\n0x8EA5DCDD\t0x2588F\n0x8EA5DCDE\t0x2588A\n0x8EA5DCDF\t0x2588D\n0x8EA5DCE0\t0x25895\n0x8EA5DCE1\t0x2588B\n0x8EA5DCE2\t0x2588C\n0x8EA5DCE3\t0x258B0\n0x8EA5DCE4\t0x25893\n0x8EA5DCE5\t0x259FC\n0x8EA5DCE6\t0x25A15\n0x8EA5DCE7\t0x25A0E\n0x8EA5DCE8\t0x25A18\n0x8EA5DCE9\t0x25A11\n0x8EA5DCEA\t0x25A0D\n0x8EA5DCEB\t0x25ABB\n0x8EA5DCEC\t0x25AB3\n0x8EA5DCED\t0x4239\n0x8EA5DCEE\t0x25CA1\n0x8EA5DCEF\t0x25C9A\n0x8EA5DCF0\t0x25C84\n0x8EA5DCF1\t0x25CA0\n0x8EA5DCF2\t0x25C86\n0x8EA5DCF3\t0x25C9D\n0x8EA5DCF4\t0x25CAA\n0x8EA5DCF5\t0x25C78\n0x8EA5DCF6\t0x25C8D\n0x8EA5DCF7\t0x25C8A\n0x8EA5DCF8\t0x25CA6\n0x8EA5DCF9\t0x25C7A\n0x8EA5DCFA\t0x25C97\n0x8EA5DCFB\t0x25C88\n0x8EA5DCFC\t0x25C8E\n0x8EA5DCFD\t0x423D\n0x8EA5DCFE\t0x4244\n0x8EA5DDA1\t0x25C76\n0x8EA5DDA2\t0x25C81\n0x8EA5DDA3\t0x25C85\n0x8EA5DDA4\t0x25C75\n0x8EA5DDA5\t0x25CA8\n0x8EA5DDA6\t0x25C8F\n0x8EA5DDA7\t0x25C91\n0x8EA5DDA8\t0x25CA2\n0x8EA5DDA9\t0x25C9C\n0x8EA5DDAA\t0x25C89\n0x8EA5DDAB\t0x25C7F\n0x8EA5DDAC\t0x25C96\n0x8EA5DDAD\t0x25C79\n0x8EA5DDAE\t0x25C9F\n0x8EA5DDAF\t0x25CA7\n0x8EA5DDB0\t0x4246\n0x8EA5DDB1\t0x25C87\n0x8EA5DDB2\t0x25C9B\n0x8EA5DDB3\t0x25CA5\n0x8EA5DDB4\t0x25C8B\n0x8EA5DDB5\t0x25CC9\n0x8EA5DDB6\t0x25EFF\n0x8EA5DDB7\t0x25F03\n0x8EA5DDB8\t0x25F00\n0x8EA5DDB9\t0x25F02\n0x8EA5DDBA\t0x25F04\n0x8EA5DDBB\t0x25F05\n0x8EA5DDBC\t0x25EE6\n0x8EA5DDBD\t0x25F1F\n0x8EA5DDBE\t0x26114\n0x8EA5DDBF\t0x430E\n0x8EA5DDC0\t0x2610C\n0x8EA5DDC1\t0x2610F\n0x8EA5DDC2\t0x26119\n0x8EA5DDC3\t0x2610B\n0x8EA5DDC4\t0x26113\n0x8EA5DDC5\t0x260D5\n0x8EA5DDC6\t0x4310\n0x8EA5DDC7\t0x2611C\n0x8EA5DDC8\t0x26250\n0x8EA5DDC9\t0x2624E\n0x8EA5DDCA\t0x26312\n0x8EA5DDCB\t0x263B9\n0x8EA5DDCC\t0x26485\n0x8EA5DDCD\t0x26488\n0x8EA5DDCE\t0x26490\n0x8EA5DDCF\t0x26513\n0x8EA5DDD0\t0x265D0\n0x8EA5DDD1\t0x265D1\n0x8EA5DDD2\t0x265D2\n0x8EA5DDD3\t0x265D7\n0x8EA5DDD4\t0x265D6\n0x8EA5DDD5\t0x265E5\n0x8EA5DDD6\t0x26846\n0x8EA5DDD7\t0x2686B\n0x8EA5DDD8\t0x26845\n0x8EA5DDD9\t0x2683F\n0x8EA5DDDA\t0x2683E\n0x8EA5DDDB\t0x443E\n0x8EA5DDDC\t0x2686A\n0x8EA5DDDD\t0x26868\n0x8EA5DDDE\t0x2684C\n0x8EA5DDDF\t0x26923\n0x8EA5DDE0\t0x26922\n0x8EA5DDE1\t0x26997\n0x8EA5DDE2\t0x26991\n0x8EA5DDE3\t0x25AB5\n0x8EA5DDE4\t0x26998\n0x8EA5DDE5\t0x2699C\n0x8EA5DDE6\t0x26A89\n0x8EA5DDE7\t0x4484\n0x8EA5DDE8\t0x26A8B\n0x8EA5DDE9\t0x26A8A\n0x8EA5DDEA\t0x26A8D\n0x8EA5DDEB\t0x26A8E\n0x8EA5DDEC\t0x26A88\n0x8EA5DDED\t0x26F4E\n0x8EA5DDEE\t0x26F44\n0x8EA5DDEF\t0x26F37\n0x8EA5DDF0\t0x26F75\n0x8EA5DDF1\t0x26F54\n0x8EA5DDF2\t0x26F76\n0x8EA5DDF3\t0x26F34\n0x8EA5DDF4\t0x26F6B\n0x8EA5DDF5\t0x26F32\n0x8EA5DDF6\t0x26F57\n0x8EA5DDF7\t0x26F52\n0x8EA5DDF8\t0x26F45\n0x8EA5DDF9\t0x4549\n0x8EA5DDFA\t0x26EB1\n0x8EA5DDFB\t0x26F4B\n0x8EA5DDFC\t0x26F47\n0x8EA5DDFD\t0x26F33\n0x8EA5DDFE\t0x26F40\n0x8EA5DEA1\t0x26F3C\n0x8EA5DEA2\t0x26F43\n0x8EA5DEA3\t0x26F4F\n0x8EA5DEA4\t0x26F55\n0x8EA5DEA5\t0x26F41\n0x8EA5DEA6\t0x26FB2\n0x8EA5DEA7\t0x26FC0\n0x8EA5DEA8\t0x27434\n0x8EA5DEA9\t0x273F9\n0x8EA5DEAA\t0x27419\n0x8EA5DEAB\t0x2740D\n0x8EA5DEAC\t0x273FA\n0x8EA5DEAD\t0x2741E\n0x8EA5DEAE\t0x2741F\n0x8EA5DEAF\t0x2740E\n0x8EA5DEB0\t0x27440\n0x8EA5DEB1\t0x27408\n0x8EA5DEB2\t0x45DF\n0x8EA5DEB3\t0x27413\n0x8EA5DEB4\t0x2744C\n0x8EA5DEB5\t0x45F0\n0x8EA5DEB6\t0x275CC\n0x8EA5DEB7\t0x275CB\n0x8EA5DEB8\t0x27724\n0x8EA5DEB9\t0x27725\n0x8EA5DEBA\t0x2773D\n0x8EA5DEBB\t0x27720\n0x8EA5DEBC\t0x27727\n0x8EA5DEBD\t0x27726\n0x8EA5DEBE\t0x2771D\n0x8EA5DEBF\t0x2771E\n0x8EA5DEC0\t0x27732\n0x8EA5DEC1\t0x2776C\n0x8EA5DEC2\t0x27759\n0x8EA5DEC3\t0x468A\n0x8EA5DEC4\t0x2787A\n0x8EA5DEC5\t0x27879\n0x8EA5DEC6\t0x2791B\n0x8EA5DEC7\t0x2792E\n0x8EA5DEC8\t0x27923\n0x8EA5DEC9\t0x27920\n0x8EA5DECA\t0x2791F\n0x8EA5DECB\t0x27AB6\n0x8EA5DECC\t0x27AB9\n0x8EA5DECD\t0x27AA1\n0x8EA5DECE\t0x27AA3\n0x8EA5DECF\t0x27AA8\n0x8EA5DED0\t0x27AAF\n0x8EA5DED1\t0x27A9A\n0x8EA5DED2\t0x27A99\n0x8EA5DED3\t0x27AA2\n0x8EA5DED4\t0x27A9D\n0x8EA5DED5\t0x4702\n0x8EA5DED6\t0x27AAB\n0x8EA5DED7\t0x27BC9\n0x8EA5DED8\t0x27BFE\n0x8EA5DED9\t0x27C00\n0x8EA5DEDA\t0x27BFC\n0x8EA5DEDB\t0x27C07\n0x8EA5DEDC\t0x27C75\n0x8EA5DEDD\t0x27C72\n0x8EA5DEDE\t0x27C73\n0x8EA5DEDF\t0x27C74\n0x8EA5DEE0\t0x27CFA\n0x8EA5DEE1\t0x27CFC\n0x8EA5DEE2\t0x27CF8\n0x8EA5DEE3\t0x27CF6\n0x8EA5DEE4\t0x27CFB\n0x8EA5DEE5\t0x27DCD\n0x8EA5DEE6\t0x27DD1\n0x8EA5DEE7\t0x27DCF\n0x8EA5DEE8\t0x27E74\n0x8EA5DEE9\t0x27E72\n0x8EA5DEEA\t0x27E73\n0x8EA5DEEB\t0x27F54\n0x8EA5DEEC\t0x27F51\n0x8EA5DEED\t0x47C0\n0x8EA5DEEE\t0x27F53\n0x8EA5DEEF\t0x27F49\n0x8EA5DEF0\t0x27F4C\n0x8EA5DEF1\t0x27F4A\n0x8EA5DEF2\t0x27F4F\n0x8EA5DEF3\t0x27F56\n0x8EA5DEF4\t0x28100\n0x8EA5DEF5\t0x280D5\n0x8EA5DEF6\t0x280D7\n0x8EA5DEF7\t0x280FF\n0x8EA5DEF8\t0x280D9\n0x8EA5DEF9\t0x280E3\n0x8EA5DEFA\t0x280D3\n0x8EA5DEFB\t0x4815\n0x8EA5DEFC\t0x280D8\n0x8EA5DEFD\t0x280D4\n0x8EA5DEFE\t0x280DE\n0x8EA5DFA1\t0x28271\n0x8EA5DFA2\t0x28374\n0x8EA5DFA3\t0x28388\n0x8EA5DFA4\t0x2837F\n0x8EA5DFA5\t0x2836B\n0x8EA5DFA6\t0x28387\n0x8EA5DFA7\t0x28379\n0x8EA5DFA8\t0x28378\n0x8EA5DFA9\t0x28389\n0x8EA5DFAA\t0x28380\n0x8EA5DFAB\t0x28376\n0x8EA5DFAC\t0x28429\n0x8EA5DFAD\t0x28428\n0x8EA5DFAE\t0x2842F\n0x8EA5DFAF\t0x285E5\n0x8EA5DFB0\t0x28604\n0x8EA5DFB1\t0x28603\n0x8EA5DFB2\t0x285F0\n0x8EA5DFB3\t0x285E8\n0x8EA5DFB4\t0x285EA\n0x8EA5DFB5\t0x285F1\n0x8EA5DFB6\t0x28601\n0x8EA5DFB7\t0x28602\n0x8EA5DFB8\t0x287A9\n0x8EA5DFB9\t0x287AB\n0x8EA5DFBA\t0x287B7\n0x8EA5DFBB\t0x287B6\n0x8EA5DFBC\t0x48E2\n0x8EA5DFBD\t0x288A0\n0x8EA5DFBE\t0x2888E\n0x8EA5DFBF\t0x28886\n0x8EA5DFC0\t0x28887\n0x8EA5DFC1\t0x28885\n0x8EA5DFC2\t0x2888B\n0x8EA5DFC3\t0x28888\n0x8EA5DFC4\t0x28890\n0x8EA5DFC5\t0x2891A\n0x8EA5DFC6\t0x28934\n0x8EA5DFC7\t0x28A37\n0x8EA5DFC8\t0x28A2F\n0x8EA5DFC9\t0x28A30\n0x8EA5DFCA\t0x28A39\n0x8EA5DFCB\t0x28A34\n0x8EA5DFCC\t0x28A33\n0x8EA5DFCD\t0x28A85\n0x8EA5DFCE\t0x28A84\n0x8EA5DFCF\t0x28A3A\n0x8EA5DFD0\t0x28C9F\n0x8EA5DFD1\t0x28D69\n0x8EA5DFD2\t0x28D6C\n0x8EA5DFD3\t0x28D6A\n0x8EA5DFD4\t0x28D67\n0x8EA5DFD5\t0x28D6B\n0x8EA5DFD6\t0x28F3F\n0x8EA5DFD7\t0x28F40\n0x8EA5DFD8\t0x2900B\n0x8EA5DFD9\t0x290D2\n0x8EA5DFDA\t0x290F8\n0x8EA5DFDB\t0x29101\n0x8EA5DFDC\t0x290FA\n0x8EA5DFDD\t0x29116\n0x8EA5DFDE\t0x2F9F6\n0x8EA5DFDF\t0x2922C\n0x8EA5DFE0\t0x2922D\n0x8EA5DFE1\t0x2922F\n0x8EA5DFE2\t0x2922E\n0x8EA5DFE3\t0x292C1\n0x8EA5DFE4\t0x292F5\n0x8EA5DFE5\t0x292C4\n0x8EA5DFE6\t0x292DE\n0x8EA5DFE7\t0x292CC\n0x8EA5DFE8\t0x292D2\n0x8EA5DFE9\t0x292C2\n0x8EA5DFEA\t0x292CD\n0x8EA5DFEB\t0x292CF\n0x8EA5DFEC\t0x292DD\n0x8EA5DFED\t0x292C8\n0x8EA5DFEE\t0x293BA\n0x8EA5DFEF\t0x293BE\n0x8EA5DFF0\t0x293BF\n0x8EA5DFF1\t0x2942E\n0x8EA5DFF2\t0x29430\n0x8EA5DFF3\t0x294E7\n0x8EA5DFF4\t0x294EE\n0x8EA5DFF5\t0x294E8\n0x8EA5DFF6\t0x294E6\n0x8EA5DFF7\t0x294E2\n0x8EA5DFF8\t0x294E4\n0x8EA5DFF9\t0x294FB\n0x8EA5DFFA\t0x294FC\n0x8EA5DFFB\t0x294EA\n0x8EA5DFFC\t0x295ED\n0x8EA5DFFD\t0x295F6\n0x8EA5DFFE\t0x295F3\n0x8EA5E0A1\t0x295F4\n0x8EA5E0A2\t0x295F1\n0x8EA5E0A3\t0x295F7\n0x8EA5E0A4\t0x295F5\n0x8EA5E0A5\t0x295EA\n0x8EA5E0A6\t0x295EB\n0x8EA5E0A7\t0x29700\n0x8EA5E0A8\t0x2972C\n0x8EA5E0A9\t0x29712\n0x8EA5E0AA\t0x2973D\n0x8EA5E0AB\t0x29733\n0x8EA5E0AC\t0x4B4D\n0x8EA5E0AD\t0x29730\n0x8EA5E0AE\t0x29740\n0x8EA5E0AF\t0x29731\n0x8EA5E0B0\t0x29757\n0x8EA5E0B1\t0x4B4A\n0x8EA5E0B2\t0x29735\n0x8EA5E0B3\t0x29732\n0x8EA5E0B4\t0x2972D\n0x8EA5E0B5\t0x29736\n0x8EA5E0B6\t0x29738\n0x8EA5E0B7\t0x29762\n0x8EA5E0B8\t0x2975F\n0x8EA5E0B9\t0x2978A\n0x8EA5E0BA\t0x298D6\n0x8EA5E0BB\t0x298D8\n0x8EA5E0BC\t0x298DD\n0x8EA5E0BD\t0x298E4\n0x8EA5E0BE\t0x298E3\n0x8EA5E0BF\t0x29A4D\n0x8EA5E0C0\t0x29AD7\n0x8EA5E0C1\t0x29B4A\n0x8EA5E0C2\t0x29B4C\n0x8EA5E0C3\t0x29B50\n0x8EA5E0C4\t0x29B4B\n0x8EA5E0C5\t0x29B4E\n0x8EA5E0C6\t0x29B4F\n0x8EA5E0C7\t0x29C39\n0x8EA5E0C8\t0x29CD2\n0x8EA5E0C9\t0x29CCD\n0x8EA5E0CA\t0x29CD3\n0x8EA5E0CB\t0x29CE1\n0x8EA5E0CC\t0x29CCE\n0x8EA5E0CD\t0x29CD5\n0x8EA5E0CE\t0x29CDD\n0x8EA5E0CF\t0x29CD4\n0x8EA5E0D0\t0x29CCF\n0x8EA5E0D1\t0x29DCB\n0x8EA5E0D2\t0x29DA6\n0x8EA5E0D3\t0x29DC2\n0x8EA5E0D4\t0x29DA5\n0x8EA5E0D5\t0x29DA9\n0x8EA5E0D6\t0x29DA2\n0x8EA5E0D7\t0x29DA4\n0x8EA5E0D8\t0x29DB0\n0x8EA5E0D9\t0x29DCC\n0x8EA5E0DA\t0x29DAF\n0x8EA5E0DB\t0x29DBF\n0x8EA5E0DC\t0x2A024\n0x8EA5E0DD\t0x2A01A\n0x8EA5E0DE\t0x2A014\n0x8EA5E0DF\t0x2A03A\n0x8EA5E0E0\t0x2A020\n0x8EA5E0E1\t0x2A01B\n0x8EA5E0E2\t0x2A021\n0x8EA5E0E3\t0x2A025\n0x8EA5E0E4\t0x2A01E\n0x8EA5E0E5\t0x2A03F\n0x8EA5E0E6\t0x2A040\n0x8EA5E0E7\t0x2A018\n0x8EA5E0E8\t0x2A02C\n0x8EA5E0E9\t0x2A015\n0x8EA5E0EA\t0x2A02D\n0x8EA5E0EB\t0x2A01F\n0x8EA5E0EC\t0x2A029\n0x8EA5E0ED\t0x2A04B\n0x8EA5E0EE\t0x2A2B3\n0x8EA5E0EF\t0x2A2A5\n0x8EA5E0F0\t0x2A2A7\n0x8EA5E0F1\t0x2A2AB\n0x8EA5E0F2\t0x2A2A6\n0x8EA5E0F3\t0x2A2AA\n0x8EA5E0F4\t0x2A322\n0x8EA5E0F5\t0x2A323\n0x8EA5E0F6\t0x2A3A1\n0x8EA5E0F7\t0x2A3A3\n0x8EA5E0F8\t0x2A3A0\n0x8EA5E0F9\t0x2A3BD\n0x8EA5E0FA\t0x2A3BA\n0x8EA5E0FB\t0x2A3FA\n0x8EA5E0FC\t0x2A3F8\n0x8EA5E0FD\t0x2A3FC\n0x8EA5E0FE\t0x2A3F6\n0x8EA5E1A1\t0x2A434\n0x8EA5E1A2\t0x2A443\n0x8EA5E1A3\t0x4D63\n0x8EA5E1A4\t0x2A4D4\n0x8EA5E1A5\t0x2A50D\n0x8EA5E1A6\t0x2A543\n0x8EA5E1A7\t0x2A541\n0x8EA5E1A8\t0x2A53D\n0x8EA5E1A9\t0x2A540\n0x8EA5E1AA\t0x2A53E\n0x8EA5E1AB\t0x2A53F\n0x8EA5E1AC\t0x2A546\n0x8EA5E1AD\t0x4D93\n0x8EA5E1AE\t0x2A5D4\n0x8EA5E1AF\t0x20435\n0x8EA5E1B0\t0x20436\n0x8EA5E1B1\t0x20432\n0x8EA5E1B2\t0x2043A\n0x8EA5E1B3\t0x204C8\n0x8EA5E1B4\t0x20536\n0x8EA5E1B5\t0x2061E\n0x8EA5E1B6\t0x2061D\n0x8EA5E1B7\t0x2061F\n0x8EA5E1B8\t0x2081C\n0x8EA5E1B9\t0x2081D\n0x8EA5E1BA\t0x20820\n0x8EA5E1BB\t0x350E\n0x8EA5E1BC\t0x208C0\n0x8EA5E1BD\t0x2109A\n0x8EA5E1BE\t0x21093\n0x8EA5E1BF\t0x210DD\n0x8EA5E1C0\t0x360A\n0x8EA5E1C1\t0x210A3\n0x8EA5E1C2\t0x210A9\n0x8EA5E1C3\t0x2109C\n0x8EA5E1C4\t0x2109B\n0x8EA5E1C5\t0x360D\n0x8EA5E1C6\t0x21097\n0x8EA5E1C7\t0x214B1\n0x8EA5E1C8\t0x214CA\n0x8EA5E1C9\t0x214B3\n0x8EA5E1CA\t0x214CD\n0x8EA5E1CB\t0x218EA\n0x8EA5E1CC\t0x218EE\n0x8EA5E1CD\t0x218EF\n0x8EA5E1CE\t0x21ADF\n0x8EA5E1CF\t0x21B50\n0x8EA5E1D0\t0x21BBB\n0x8EA5E1D1\t0x21F88\n0x8EA5E1D2\t0x21F89\n0x8EA5E1D3\t0x21F8C\n0x8EA5E1D4\t0x21F85\n0x8EA5E1D5\t0x21F5E\n0x8EA5E1D6\t0x21F94\n0x8EA5E1D7\t0x21F95\n0x8EA5E1D8\t0x2216B\n0x8EA5E1D9\t0x2216A\n0x8EA5E1DA\t0x22169\n0x8EA5E1DB\t0x222E3\n0x8EA5E1DC\t0x222F1\n0x8EA5E1DD\t0x22437\n0x8EA5E1DE\t0x22433\n0x8EA5E1DF\t0x22591\n0x8EA5E1E0\t0x2258F\n0x8EA5E1E1\t0x22597\n0x8EA5E1E2\t0x228D4\n0x8EA5E1E3\t0x228DE\n0x8EA5E1E4\t0x228D3\n0x8EA5E1E5\t0x228E0\n0x8EA5E1E6\t0x22943\n0x8EA5E1E7\t0x2290B\n0x8EA5E1E8\t0x228FF\n0x8EA5E1E9\t0x22904\n0x8EA5E1EA\t0x22907\n0x8EA5E1EB\t0x22DF9\n0x8EA5E1EC\t0x22DFA\n0x8EA5E1ED\t0x22DFB\n0x8EA5E1EE\t0x22DF8\n0x8EA5E1EF\t0x23012\n0x8EA5E1F0\t0x23010\n0x8EA5E1F1\t0x2311F\n0x8EA5E1F2\t0x232DF\n0x8EA5E1F3\t0x232E3\n0x8EA5E1F4\t0x23352\n0x8EA5E1F5\t0x233A9\n0x8EA5E1F6\t0x23765\n0x8EA5E1F7\t0x23787\n0x8EA5E1F8\t0x23742\n0x8EA5E1F9\t0x23752\n0x8EA5E1FA\t0x2374C\n0x8EA5E1FB\t0x2369F\n0x8EA5E1FC\t0x23701\n0x8EA5E1FD\t0x23748\n0x8EA5E1FE\t0x2374F\n0x8EA5E2A1\t0x2377E\n0x8EA5E2A2\t0x2374D\n0x8EA5E2A3\t0x23758\n0x8EA5E2A4\t0x23747\n0x8EA5E2A5\t0x2375E\n0x8EA5E2A6\t0x23749\n0x8EA5E2A7\t0x2374E\n0x8EA5E2A8\t0x2375D\n0x8EA5E2A9\t0x2375A\n0x8EA5E2AA\t0x23786\n0x8EA5E2AB\t0x23751\n0x8EA5E2AC\t0x23929\n0x8EA5E2AD\t0x239A6\n0x8EA5E2AE\t0x239A7\n0x8EA5E2AF\t0x23A70\n0x8EA5E2B0\t0x23A6F\n0x8EA5E2B1\t0x23AD3\n0x8EA5E2B2\t0x23AD2\n0x8EA5E2B3\t0x23C28\n0x8EA5E2B4\t0x23C1B\n0x8EA5E2B5\t0x23C1A\n0x8EA5E2B6\t0x23C1C\n0x8EA5E2B7\t0x23C21\n0x8EA5E2B8\t0x24032\n0x8EA5E2B9\t0x24066\n0x8EA5E2BA\t0x2407D\n0x8EA5E2BB\t0x24073\n0x8EA5E2BC\t0x2407F\n0x8EA5E2BD\t0x24065\n0x8EA5E2BE\t0x24080\n0x8EA5E2BF\t0x24061\n0x8EA5E2C0\t0x24075\n0x8EA5E2C1\t0x2406E\n0x8EA5E2C2\t0x24067\n0x8EA5E2C3\t0x24071\n0x8EA5E2C4\t0x2406C\n0x8EA5E2C5\t0x24063\n0x8EA5E2C6\t0x24062\n0x8EA5E2C7\t0x24083\n0x8EA5E2C8\t0x240B2\n0x8EA5E2C9\t0x24081\n0x8EA5E2CA\t0x2406F\n0x8EA5E2CB\t0x2406B\n0x8EA5E2CC\t0x24082\n0x8EA5E2CD\t0x2408A\n0x8EA5E2CE\t0x24429\n0x8EA5E2CF\t0x24430\n0x8EA5E2D0\t0x24431\n0x8EA5E2D1\t0x24597\n0x8EA5E2D2\t0x24600\n0x8EA5E2D3\t0x245FF\n0x8EA5E2D4\t0x248B6\n0x8EA5E2D5\t0x248B5\n0x8EA5E2D6\t0x248C3\n0x8EA5E2D7\t0x24A8D\n0x8EA5E2D8\t0x24B18\n0x8EA5E2D9\t0x24B9C\n0x8EA5E2DA\t0x24B9A\n0x8EA5E2DB\t0x24B99\n0x8EA5E2DC\t0x24EB7\n0x8EA5E2DD\t0x24EC4\n0x8EA5E2DE\t0x24EC6\n0x8EA5E2DF\t0x24EC7\n0x8EA5E2E0\t0x24EBC\n0x8EA5E2E1\t0x24EC0\n0x8EA5E2E2\t0x24EC5\n0x8EA5E2E3\t0x24ECD\n0x8EA5E2E4\t0x24EC1\n0x8EA5E2E5\t0x24EBE\n0x8EA5E2E6\t0x24FA7\n0x8EA5E2E7\t0x24FB8\n0x8EA5E2E8\t0x25023\n0x8EA5E2E9\t0x4074\n0x8EA5E2EA\t0x252E8\n0x8EA5E2EB\t0x252DE\n0x8EA5E2EC\t0x252E3\n0x8EA5E2ED\t0x252EF\n0x8EA5E2EE\t0x252DC\n0x8EA5E2EF\t0x252E4\n0x8EA5E2F0\t0x252E1\n0x8EA5E2F1\t0x252E5\n0x8EA5E2F2\t0x25395\n0x8EA5E2F3\t0x25394\n0x8EA5E2F4\t0x25393\n0x8EA5E2F5\t0x2538E\n0x8EA5E2F6\t0x25598\n0x8EA5E2F7\t0x2559C\n0x8EA5E2F8\t0x25599\n0x8EA5E2F9\t0x255A0\n0x8EA5E2FA\t0x2559E\n0x8EA5E2FB\t0x25704\n0x8EA5E2FC\t0x258D3\n0x8EA5E2FD\t0x258B4\n0x8EA5E2FE\t0x258BB\n0x8EA5E3A1\t0x258B7\n0x8EA5E3A2\t0x258B8\n0x8EA5E3A3\t0x258BD\n0x8EA5E3A4\t0x258B6\n0x8EA5E3A5\t0x258B9\n0x8EA5E3A6\t0x258B5\n0x8EA5E3A7\t0x25A22\n0x8EA5E3A8\t0x25A21\n0x8EA5E3A9\t0x25AC3\n0x8EA5E3AA\t0x25ABC\n0x8EA5E3AB\t0x25CFF\n0x8EA5E3AC\t0x25CE5\n0x8EA5E3AD\t0x25CF7\n0x8EA5E3AE\t0x25CD2\n0x8EA5E3AF\t0x25D00\n0x8EA5E3B0\t0x25CDB\n0x8EA5E3B1\t0x25CF0\n0x8EA5E3B2\t0x25CE2\n0x8EA5E3B3\t0x25CCD\n0x8EA5E3B4\t0x4256\n0x8EA5E3B5\t0x25CE1\n0x8EA5E3B6\t0x25CF2\n0x8EA5E3B7\t0x25CDC\n0x8EA5E3B8\t0x25CCC\n0x8EA5E3B9\t0x25CD6\n0x8EA5E3BA\t0x25CF3\n0x8EA5E3BB\t0x25CFA\n0x8EA5E3BC\t0x25CF6\n0x8EA5E3BD\t0x25CEC\n0x8EA5E3BE\t0x25CEA\n0x8EA5E3BF\t0x25CE3\n0x8EA5E3C0\t0x25CD0\n0x8EA5E3C1\t0x425A\n0x8EA5E3C2\t0x25C95\n0x8EA5E3C3\t0x25CD5\n0x8EA5E3C4\t0x25CF4\n0x8EA5E3C5\t0x25CCB\n0x8EA5E3C6\t0x25CDA\n0x8EA5E3C7\t0x25CC8\n0x8EA5E3C8\t0x25CDF\n0x8EA5E3C9\t0x25CF5\n0x8EA5E3CA\t0x25CCF\n0x8EA5E3CB\t0x25CC7\n0x8EA5E3CC\t0x25CD7\n0x8EA5E3CD\t0x25F24\n0x8EA5E3CE\t0x42A3\n0x8EA5E3CF\t0x25F1C\n0x8EA5E3D0\t0x25F21\n0x8EA5E3D1\t0x25F1E\n0x8EA5E3D2\t0x25F18\n0x8EA5E3D3\t0x25F1B\n0x8EA5E3D4\t0x42A8\n0x8EA5E3D5\t0x26146\n0x8EA5E3D6\t0x2614B\n0x8EA5E3D7\t0x26148\n0x8EA5E3D8\t0x26147\n0x8EA5E3D9\t0x26167\n0x8EA5E3DA\t0x26154\n0x8EA5E3DB\t0x26315\n0x8EA5E3DC\t0x26322\n0x8EA5E3DD\t0x263C5\n0x8EA5E3DE\t0x26329\n0x8EA5E3DF\t0x263C7\n0x8EA5E3E0\t0x2648D\n0x8EA5E3E1\t0x2651B\n0x8EA5E3E2\t0x26520\n0x8EA5E3E3\t0x265E2\n0x8EA5E3E4\t0x265E7\n0x8EA5E3E5\t0x265E8\n0x8EA5E3E6\t0x265E1\n0x8EA5E3E7\t0x26872\n0x8EA5E3E8\t0x2687B\n0x8EA5E3E9\t0x26874\n0x8EA5E3EA\t0x26871\n0x8EA5E3EB\t0x26879\n0x8EA5E3EC\t0x26875\n0x8EA5E3ED\t0x26890\n0x8EA5E3EE\t0x26877\n0x8EA5E3EF\t0x2687D\n0x8EA5E3F0\t0x2694F\n0x8EA5E3F1\t0x26950\n0x8EA5E3F2\t0x269A3\n0x8EA5E3F3\t0x269A2\n0x8EA5E3F4\t0x269F4\n0x8EA5E3F5\t0x26A94\n0x8EA5E3F6\t0x26A9A\n0x8EA5E3F7\t0x26A9B\n0x8EA5E3F8\t0x26AA7\n0x8EA5E3F9\t0x26A97\n0x8EA5E3FA\t0x26A95\n0x8EA5E3FB\t0x26A92\n0x8EA5E3FC\t0x26A9C\n0x8EA5E3FD\t0x26A96\n0x8EA5E3FE\t0x26FB6\n0x8EA5E4A1\t0x26FB8\n0x8EA5E4A2\t0x26FB0\n0x8EA5E4A3\t0x27018\n0x8EA5E4A4\t0x26FC5\n0x8EA5E4A5\t0x26FB5\n0x8EA5E4A6\t0x26FC2\n0x8EA5E4A7\t0x27006\n0x8EA5E4A8\t0x27019\n0x8EA5E4A9\t0x26FB9\n0x8EA5E4AA\t0x27015\n0x8EA5E4AB\t0x26FD6\n0x8EA5E4AC\t0x26FAC\n0x8EA5E4AD\t0x453C\n0x8EA5E4AE\t0x26FC6\n0x8EA5E4AF\t0x26FB3\n0x8EA5E4B0\t0x26FC3\n0x8EA5E4B1\t0x26FCA\n0x8EA5E4B2\t0x26FCF\n0x8EA5E4B3\t0x26FBD\n0x8EA5E4B4\t0x26FCE\n0x8EA5E4B5\t0x27014\n0x8EA5E4B6\t0x26FBA\n0x8EA5E4B7\t0x2701A\n0x8EA5E4B8\t0x26FC1\n0x8EA5E4B9\t0x26FBB\n0x8EA5E4BA\t0x459B\n0x8EA5E4BB\t0x459A\n0x8EA5E4BC\t0x27201\n0x8EA5E4BD\t0x271FC\n0x8EA5E4BE\t0x2745A\n0x8EA5E4BF\t0x27454\n0x8EA5E4C0\t0x27461\n0x8EA5E4C1\t0x2745C\n0x8EA5E4C2\t0x27455\n0x8EA5E4C3\t0x2744A\n0x8EA5E4C4\t0x2744B\n0x8EA5E4C5\t0x27451\n0x8EA5E4C6\t0x27469\n0x8EA5E4C7\t0x2746B\n0x8EA5E4C8\t0x87F1\n0x8EA5E4C9\t0x27466\n0x8EA5E4CA\t0x27458\n0x8EA5E4CB\t0x2745D\n0x8EA5E4CC\t0x27467\n0x8EA5E4CD\t0x27456\n0x8EA5E4CE\t0x27488\n0x8EA5E4CF\t0x27464\n0x8EA5E4D0\t0x2744E\n0x8EA5E4D1\t0x27757\n0x8EA5E4D2\t0x2775A\n0x8EA5E4D3\t0x27751\n0x8EA5E4D4\t0x2774A\n0x8EA5E4D5\t0x2774B\n0x8EA5E4D6\t0x465E\n0x8EA5E4D7\t0x27747\n0x8EA5E4D8\t0x2776F\n0x8EA5E4D9\t0x2776A\n0x8EA5E4DA\t0x2776B\n0x8EA5E4DB\t0x27746\n0x8EA5E4DC\t0x2776D\n0x8EA5E4DD\t0x27754\n0x8EA5E4DE\t0x2776E\n0x8EA5E4DF\t0x2774C\n0x8EA5E4E0\t0x27878\n0x8EA5E4E1\t0x27886\n0x8EA5E4E2\t0x27882\n0x8EA5E4E3\t0x46A7\n0x8EA5E4E4\t0x27AE1\n0x8EA5E4E5\t0x27AE5\n0x8EA5E4E6\t0x27ADB\n0x8EA5E4E7\t0x27ADE\n0x8EA5E4E8\t0x27AD7\n0x8EA5E4E9\t0x27C03\n0x8EA5E4EA\t0x27C7C\n0x8EA5E4EB\t0x27C7E\n0x8EA5E4EC\t0x27D05\n0x8EA5E4ED\t0x27D07\n0x8EA5E4EE\t0x27DE6\n0x8EA5E4EF\t0x27DE1\n0x8EA5E4F0\t0x27DFB\n0x8EA5E4F1\t0x27DE5\n0x8EA5E4F2\t0x27DE7\n0x8EA5E4F3\t0x27DDF\n0x8EA5E4F4\t0x27DFF\n0x8EA5E4F5\t0x27E76\n0x8EA5E4F6\t0x27F63\n0x8EA5E4F7\t0x27F66\n0x8EA5E4F8\t0x27F65\n0x8EA5E4F9\t0x27F5E\n0x8EA5E4FA\t0x27F64\n0x8EA5E4FB\t0x27F6B\n0x8EA5E4FC\t0x27F5F\n0x8EA5E4FD\t0x27F67\n0x8EA5E4FE\t0x27F68\n0x8EA5E5A1\t0x28108\n0x8EA5E5A2\t0x28109\n0x8EA5E5A3\t0x28117\n0x8EA5E5A4\t0x28115\n0x8EA5E5A5\t0x2811B\n0x8EA5E5A6\t0x2810B\n0x8EA5E5A7\t0x28128\n0x8EA5E5A8\t0x2810E\n0x8EA5E5A9\t0x28118\n0x8EA5E5AA\t0x28153\n0x8EA5E5AB\t0x28145\n0x8EA5E5AC\t0x2810D\n0x8EA5E5AD\t0x2810A\n0x8EA5E5AE\t0x28113\n0x8EA5E5AF\t0x2814A\n0x8EA5E5B0\t0x28279\n0x8EA5E5B1\t0x283A1\n0x8EA5E5B2\t0x2838D\n0x8EA5E5B3\t0x283A2\n0x8EA5E5B4\t0x28390\n0x8EA5E5B5\t0x486E\n0x8EA5E5B6\t0x28431\n0x8EA5E5B7\t0x28430\n0x8EA5E5B8\t0x2861F\n0x8EA5E5B9\t0x28619\n0x8EA5E5BA\t0x2860C\n0x8EA5E5BB\t0x2861E\n0x8EA5E5BC\t0x2861D\n0x8EA5E5BD\t0x28607\n0x8EA5E5BE\t0x28766\n0x8EA5E5BF\t0x287C5\n0x8EA5E5C0\t0x287BA\n0x8EA5E5C1\t0x287BD\n0x8EA5E5C2\t0x287C2\n0x8EA5E5C3\t0x287C3\n0x8EA5E5C4\t0x287BF\n0x8EA5E5C5\t0x490D\n0x8EA5E5C6\t0x288A1\n0x8EA5E5C7\t0x288A2\n0x8EA5E5C8\t0x288A8\n0x8EA5E5C9\t0x288A3\n0x8EA5E5CA\t0x288AA\n0x8EA5E5CB\t0x288AF\n0x8EA5E5CC\t0x288B9\n0x8EA5E5CD\t0x28937\n0x8EA5E5CE\t0x28A8F\n0x8EA5E5CF\t0x4943\n0x8EA5E5D0\t0x28A8E\n0x8EA5E5D1\t0x28A87\n0x8EA5E5D2\t0x28A8A\n0x8EA5E5D3\t0x28A92\n0x8EA5E5D4\t0x28A97\n0x8EA5E5D5\t0x28A9F\n0x8EA5E5D6\t0x28B05\n0x8EA5E5D7\t0x28CA9\n0x8EA5E5D8\t0x28CA7\n0x8EA5E5D9\t0x28D8A\n0x8EA5E5DA\t0x28D82\n0x8EA5E5DB\t0x28D85\n0x8EA5E5DC\t0x28D8B\n0x8EA5E5DD\t0x28D89\n0x8EA5E5DE\t0x28D81\n0x8EA5E5DF\t0x28D80\n0x8EA5E5E0\t0x28D87\n0x8EA5E5E1\t0x28D86\n0x8EA5E5E2\t0x28F4D\n0x8EA5E5E3\t0x2901C\n0x8EA5E5E4\t0x2901F\n0x8EA5E5E5\t0x29121\n0x8EA5E5E6\t0x2911D\n0x8EA5E5E7\t0x29122\n0x8EA5E5E8\t0x290FE\n0x8EA5E5E9\t0x2911B\n0x8EA5E5EA\t0x2913A\n0x8EA5E5EB\t0x29137\n0x8EA5E5EC\t0x29117\n0x8EA5E5ED\t0x29138\n0x8EA5E5EE\t0x29126\n0x8EA5E5EF\t0x29118\n0x8EA5E5F0\t0x29234\n0x8EA5E5F1\t0x29235\n0x8EA5E5F2\t0x29232\n0x8EA5E5F3\t0x4A73\n0x8EA5E5F4\t0x292E1\n0x8EA5E5F5\t0x292FD\n0x8EA5E5F6\t0x292E3\n0x8EA5E5F7\t0x292E8\n0x8EA5E5F8\t0x292F9\n0x8EA5E5F9\t0x292FF\n0x8EA5E5FA\t0x292FE\n0x8EA5E5FB\t0x4A74\n0x8EA5E5FC\t0x292E0\n0x8EA5E5FD\t0x29300\n0x8EA5E5FE\t0x4A70\n0x8EA5E6A1\t0x292EC\n0x8EA5E6A2\t0x292E4\n0x8EA5E6A3\t0x292EF\n0x8EA5E6A4\t0x292FA\n0x8EA5E6A5\t0x293CA\n0x8EA5E6A6\t0x29431\n0x8EA5E6A7\t0x29432\n0x8EA5E6A8\t0x29434\n0x8EA5E6A9\t0x29441\n0x8EA5E6AA\t0x29500\n0x8EA5E6AB\t0x29506\n0x8EA5E6AC\t0x29508\n0x8EA5E6AD\t0x29505\n0x8EA5E6AE\t0x29503\n0x8EA5E6AF\t0x2950B\n0x8EA5E6B0\t0x29502\n0x8EA5E6B1\t0x2950A\n0x8EA5E6B2\t0x295F0\n0x8EA5E6B3\t0x29613\n0x8EA5E6B4\t0x2960A\n0x8EA5E6B5\t0x2960F\n0x8EA5E6B6\t0x29611\n0x8EA5E6B7\t0x29608\n0x8EA5E6B8\t0x2960B\n0x8EA5E6B9\t0x29612\n0x8EA5E6BA\t0x2960D\n0x8EA5E6BB\t0x2975B\n0x8EA5E6BC\t0x29763\n0x8EA5E6BD\t0x29761\n0x8EA5E6BE\t0x29768\n0x8EA5E6BF\t0x2975A\n0x8EA5E6C0\t0x2984E\n0x8EA5E6C1\t0x2984D\n0x8EA5E6C2\t0x29850\n0x8EA5E6C3\t0x298FC\n0x8EA5E6C4\t0x29912\n0x8EA5E6C5\t0x298F5\n0x8EA5E6C6\t0x2991E\n0x8EA5E6C7\t0x298F0\n0x8EA5E6C8\t0x298F3\n0x8EA5E6C9\t0x298F2\n0x8EA5E6CA\t0x29901\n0x8EA5E6CB\t0x298EF\n0x8EA5E6CC\t0x298EE\n0x8EA5E6CD\t0x29916\n0x8EA5E6CE\t0x298F6\n0x8EA5E6CF\t0x298FB\n0x8EA5E6D0\t0x2991C\n0x8EA5E6D1\t0x4BDB\n0x8EA5E6D2\t0x29A5D\n0x8EA5E6D3\t0x29A60\n0x8EA5E6D4\t0x29A66\n0x8EA5E6D5\t0x29A5F\n0x8EA5E6D6\t0x29A61\n0x8EA5E6D7\t0x29A5B\n0x8EA5E6D8\t0x29A62\n0x8EA5E6D9\t0x29A57\n0x8EA5E6DA\t0x29B69\n0x8EA5E6DB\t0x29B6B\n0x8EA5E6DC\t0x29B61\n0x8EA5E6DD\t0x29B77\n0x8EA5E6DE\t0x29B5F\n0x8EA5E6DF\t0x29B63\n0x8EA5E6E0\t0x29B62\n0x8EA5E6E1\t0x29B65\n0x8EA5E6E2\t0x29CEF\n0x8EA5E6E3\t0x29CE2\n0x8EA5E6E4\t0x29D00\n0x8EA5E6E5\t0x29CE8\n0x8EA5E6E6\t0x29CF2\n0x8EA5E6E7\t0x29CE7\n0x8EA5E6E8\t0x4C29\n0x8EA5E6E9\t0x29CE5\n0x8EA5E6EA\t0x29DD5\n0x8EA5E6EB\t0x29DD0\n0x8EA5E6EC\t0x29DDA\n0x8EA5E6ED\t0x29DD3\n0x8EA5E6EE\t0x4C51\n0x8EA5E6EF\t0x29DD9\n0x8EA5E6F0\t0x29DCF\n0x8EA5E6F1\t0x29DD6\n0x8EA5E6F2\t0x29DD8\n0x8EA5E6F3\t0x29DF5\n0x8EA5E6F4\t0x29DCE\n0x8EA5E6F5\t0x29DD7\n0x8EA5E6F6\t0x29DF4\n0x8EA5E6F7\t0x29DCD\n0x8EA5E6F8\t0x29E01\n0x8EA5E6F9\t0x9BBA\n0x8EA5E6FA\t0x2A052\n0x8EA5E6FB\t0x2A055\n0x8EA5E6FC\t0x2A05A\n0x8EA5E6FD\t0x2A04D\n0x8EA5E6FE\t0x2A054\n0x8EA5E7A1\t0x2A053\n0x8EA5E7A2\t0x2A05E\n0x8EA5E7A3\t0x2A067\n0x8EA5E7A4\t0x2A065\n0x8EA5E7A5\t0x2A04E\n0x8EA5E7A6\t0x4CDB\n0x8EA5E7A7\t0x2A04F\n0x8EA5E7A8\t0x2A061\n0x8EA5E7A9\t0x2A06E\n0x8EA5E7AA\t0x2A051\n0x8EA5E7AB\t0x2A05B\n0x8EA5E7AC\t0x2A263\n0x8EA5E7AD\t0x2A2B7\n0x8EA5E7AE\t0x2A2B6\n0x8EA5E7AF\t0x2A2C3\n0x8EA5E7B0\t0x2A2BB\n0x8EA5E7B1\t0x2A2B5\n0x8EA5E7B2\t0x2A32E\n0x8EA5E7B3\t0x2A330\n0x8EA5E7B4\t0x2A333\n0x8EA5E7B5\t0x2A331\n0x8EA5E7B6\t0x2A3A4\n0x8EA5E7B7\t0x2A3C1\n0x8EA5E7B8\t0x2A3BB\n0x8EA5E7B9\t0x2A3BE\n0x8EA5E7BA\t0x2A400\n0x8EA5E7BB\t0x2A3FF\n0x8EA5E7BC\t0x2A440\n0x8EA5E7BD\t0x4D65\n0x8EA5E7BE\t0x2A43F\n0x8EA5E7BF\t0x2A444\n0x8EA5E7C0\t0x4D64\n0x8EA5E7C1\t0x4D67\n0x8EA5E7C2\t0x2A4DB\n0x8EA5E7C3\t0x2A50F\n0x8EA5E7C4\t0x2A511\n0x8EA5E7C5\t0x2A54E\n0x8EA5E7C6\t0x2A54D\n0x8EA5E7C7\t0x2A54B\n0x8EA5E7C8\t0x2A54C\n0x8EA5E7C9\t0x2A595\n0x8EA5E7CA\t0x2043B\n0x8EA5E7CB\t0x20445\n0x8EA5E7CC\t0x20444\n0x8EA5E7CD\t0x2043E\n0x8EA5E7CE\t0x2043C\n0x8EA5E7CF\t0x2043F\n0x8EA5E7D0\t0x204CC\n0x8EA5E7D1\t0x204CE\n0x8EA5E7D2\t0x20622\n0x8EA5E7D3\t0x20623\n0x8EA5E7D4\t0x2069F\n0x8EA5E7D5\t0x208C5\n0x8EA5E7D6\t0x208C4\n0x8EA5E7D7\t0x210E9\n0x8EA5E7D8\t0x21099\n0x8EA5E7D9\t0x3611\n0x8EA5E7DA\t0x210E6\n0x8EA5E7DB\t0x210E7\n0x8EA5E7DC\t0x210F7\n0x8EA5E7DD\t0x214D2\n0x8EA5E7DE\t0x3733\n0x8EA5E7DF\t0x218FD\n0x8EA5E7E0\t0x2190C\n0x8EA5E7E1\t0x2190B\n0x8EA5E7E2\t0x21CED\n0x8EA5E7E3\t0x3821\n0x8EA5E7E4\t0x3822\n0x8EA5E7E5\t0x21F9B\n0x8EA5E7E6\t0x2200A\n0x8EA5E7E7\t0x2216F\n0x8EA5E7E8\t0x22175\n0x8EA5E7E9\t0x222F2\n0x8EA5E7EA\t0x222F8\n0x8EA5E7EB\t0x2243E\n0x8EA5E7EC\t0x22924\n0x8EA5E7ED\t0x2290E\n0x8EA5E7EE\t0x22916\n0x8EA5E7EF\t0x22918\n0x8EA5E7F0\t0x22910\n0x8EA5E7F1\t0x22931\n0x8EA5E7F2\t0x22944\n0x8EA5E7F3\t0x39A6\n0x8EA5E7F4\t0x22929\n0x8EA5E7F5\t0x2292F\n0x8EA5E7F6\t0x2294B\n0x8EA5E7F7\t0x22936\n0x8EA5E7F8\t0x39A3\n0x8EA5E7F9\t0x22E34\n0x8EA5E7FA\t0x22E00\n0x8EA5E7FB\t0x22E2B\n0x8EA5E7FC\t0x23020\n0x8EA5E7FD\t0x23021\n0x8EA5E7FE\t0x2301E\n0x8EA5E8A1\t0x2301D\n0x8EA5E8A2\t0x232F5\n0x8EA5E8A3\t0x232F2\n0x8EA5E8A4\t0x232F6\n0x8EA5E8A5\t0x23790\n0x8EA5E8A6\t0x2379D\n0x8EA5E8A7\t0x2379C\n0x8EA5E8A8\t0x23792\n0x8EA5E8A9\t0x23794\n0x8EA5E8AA\t0x237D1\n0x8EA5E8AB\t0x23793\n0x8EA5E8AC\t0x237B7\n0x8EA5E8AD\t0x23797\n0x8EA5E8AE\t0x237B0\n0x8EA5E8AF\t0x2379F\n0x8EA5E8B0\t0x237C9\n0x8EA5E8B1\t0x2392D\n0x8EA5E8B2\t0x2392C\n0x8EA5E8B3\t0x23A77\n0x8EA5E8B4\t0x23C2C\n0x8EA5E8B5\t0x240C0\n0x8EA5E8B6\t0x240B9\n0x8EA5E8B7\t0x24453\n0x8EA5E8B8\t0x24540\n0x8EA5E8B9\t0x24702\n0x8EA5E8BA\t0x246FB\n0x8EA5E8BB\t0x3EA1\n0x8EA5E8BC\t0x24A8B\n0x8EA5E8BD\t0x24AAE\n0x8EA5E8BE\t0x24AAB\n0x8EA5E8BF\t0x24BA1\n0x8EA5E8C0\t0x2A2CD\n0x8EA5E8C1\t0x24CEA\n0x8EA5E8C2\t0x24EDD\n0x8EA5E8C3\t0x24EDC\n0x8EA5E8C4\t0x24ED9\n0x8EA5E8C5\t0x24FAB\n0x8EA5E8C6\t0x24FAC\n0x8EA5E8C7\t0x24FAD\n0x8EA5E8C8\t0x24FB2\n0x8EA5E8C9\t0x2502C\n0x8EA5E8CA\t0x2502B\n0x8EA5E8CB\t0x250C2\n0x8EA5E8CC\t0x25300\n0x8EA5E8CD\t0x2530D\n0x8EA5E8CE\t0x25306\n0x8EA5E8CF\t0x252FF\n0x8EA5E8D0\t0x25303\n0x8EA5E8D1\t0x25301\n0x8EA5E8D2\t0x25310\n0x8EA5E8D3\t0x2530F\n0x8EA5E8D4\t0x25305\n0x8EA5E8D5\t0x25398\n0x8EA5E8D6\t0x25397\n0x8EA5E8D7\t0x25396\n0x8EA5E8D8\t0x25399\n0x8EA5E8D9\t0x255AC\n0x8EA5E8DA\t0x255AB\n0x8EA5E8DB\t0x25712\n0x8EA5E8DC\t0x258D8\n0x8EA5E8DD\t0x258DF\n0x8EA5E8DE\t0x258D6\n0x8EA5E8DF\t0x25A2D\n0x8EA5E8E0\t0x25A32\n0x8EA5E8E1\t0x25D3F\n0x8EA5E8E2\t0x25D2F\n0x8EA5E8E3\t0x25D26\n0x8EA5E8E4\t0x25D3A\n0x8EA5E8E5\t0x25D39\n0x8EA5E8E6\t0x425F\n0x8EA5E8E7\t0x25D3B\n0x8EA5E8E8\t0x25D35\n0x8EA5E8E9\t0x25D2A\n0x8EA5E8EA\t0x25D21\n0x8EA5E8EB\t0x25D38\n0x8EA5E8EC\t0x25D37\n0x8EA5E8ED\t0x25D34\n0x8EA5E8EE\t0x425C\n0x8EA5E8EF\t0x25D22\n0x8EA5E8F0\t0x25D36\n0x8EA5E8F1\t0x25D44\n0x8EA5E8F2\t0x25F45\n0x8EA5E8F3\t0x25F3B\n0x8EA5E8F4\t0x25F36\n0x8EA5E8F5\t0x25F42\n0x8EA5E8F6\t0x2617A\n0x8EA5E8F7\t0x26186\n0x8EA5E8F8\t0x2618B\n0x8EA5E8F9\t0x2617F\n0x8EA5E8FA\t0x26181\n0x8EA5E8FB\t0x2632A\n0x8EA5E8FC\t0x263D5\n0x8EA5E8FD\t0x2649F\n0x8EA5E8FE\t0x2649D\n0x8EA5E9A1\t0x26526\n0x8EA5E9A2\t0x265F4\n0x8EA5E9A3\t0x265F5\n0x8EA5E9A4\t0x26815\n0x8EA5E9A5\t0x2688E\n0x8EA5E9A6\t0x2688F\n0x8EA5E9A7\t0x26926\n0x8EA5E9A8\t0x269A7\n0x8EA5E9A9\t0x269AF\n0x8EA5E9AA\t0x26AAD\n0x8EA5E9AB\t0x26AAC\n0x8EA5E9AC\t0x26AAB\n0x8EA5E9AD\t0x26AAA\n0x8EA5E9AE\t0x2702F\n0x8EA5E9AF\t0x27021\n0x8EA5E9B0\t0x27023\n0x8EA5E9B1\t0x270A3\n0x8EA5E9B2\t0x27049\n0x8EA5E9B3\t0x2703A\n0x8EA5E9B4\t0x27048\n0x8EA5E9B5\t0x2702D\n0x8EA5E9B6\t0x27025\n0x8EA5E9B7\t0x27029\n0x8EA5E9B8\t0x27032\n0x8EA5E9B9\t0x27034\n0x8EA5E9BA\t0x27024\n0x8EA5E9BB\t0x2702C\n0x8EA5E9BC\t0x2704B\n0x8EA5E9BD\t0x2703B\n0x8EA5E9BE\t0x27020\n0x8EA5E9BF\t0x27028\n0x8EA5E9C0\t0x27498\n0x8EA5E9C1\t0x45F5\n0x8EA5E9C2\t0x27497\n0x8EA5E9C3\t0x8804\n0x8EA5E9C4\t0x2749D\n0x8EA5E9C5\t0x274A8\n0x8EA5E9C6\t0x275D5\n0x8EA5E9C7\t0x27777\n0x8EA5E9C8\t0x27778\n0x8EA5E9C9\t0x27772\n0x8EA5E9CA\t0x27773\n0x8EA5E9CB\t0x27802\n0x8EA5E9CC\t0x2793B\n0x8EA5E9CD\t0x27AFE\n0x8EA5E9CE\t0x27B0B\n0x8EA5E9CF\t0x27AFF\n0x8EA5E9D0\t0x27B07\n0x8EA5E9D1\t0x4711\n0x8EA5E9D2\t0x470C\n0x8EA5E9D3\t0x27B30\n0x8EA5E9D4\t0x27BCD\n0x8EA5E9D5\t0x27BCF\n0x8EA5E9D6\t0x27C10\n0x8EA5E9D7\t0x27C0A\n0x8EA5E9D8\t0x27C83\n0x8EA5E9D9\t0x27D15\n0x8EA5E9DA\t0x27D0E\n0x8EA5E9DB\t0x27D0C\n0x8EA5E9DC\t0x27E02\n0x8EA5E9DD\t0x27DFE\n0x8EA5E9DE\t0x27E05\n0x8EA5E9DF\t0x27E15\n0x8EA5E9E0\t0x27E08\n0x8EA5E9E1\t0x27F7F\n0x8EA5E9E2\t0x27F77\n0x8EA5E9E3\t0x27F7C\n0x8EA5E9E4\t0x27F82\n0x8EA5E9E5\t0x27F7E\n0x8EA5E9E6\t0x27F78\n0x8EA5E9E7\t0x27F7D\n0x8EA5E9E8\t0x27F79\n0x8EA5E9E9\t0x27F81\n0x8EA5E9EA\t0x2814B\n0x8EA5E9EB\t0x28163\n0x8EA5E9EC\t0x28164\n0x8EA5E9ED\t0x28156\n0x8EA5E9EE\t0x28154\n0x8EA5E9EF\t0x2814E\n0x8EA5E9F0\t0x28110\n0x8EA5E9F1\t0x2814F\n0x8EA5E9F2\t0x28157\n0x8EA5E9F3\t0x2815E\n0x8EA5E9F4\t0x28151\n0x8EA5E9F5\t0x2816A\n0x8EA5E9F6\t0x28169\n0x8EA5E9F7\t0x283AD\n0x8EA5E9F8\t0x283A4\n0x8EA5E9F9\t0x283AC\n0x8EA5E9FA\t0x283A9\n0x8EA5E9FB\t0x283AE\n0x8EA5E9FC\t0x2044C\n0x8EA5E9FD\t0x28650\n0x8EA5E9FE\t0x28635\n0x8EA5EAA1\t0x28632\n0x8EA5EAA2\t0x287D8\n0x8EA5EAA3\t0x287D1\n0x8EA5EAA4\t0x287CF\n0x8EA5EAA5\t0x287BE\n0x8EA5EAA6\t0x288D5\n0x8EA5EAA7\t0x288C1\n0x8EA5EAA8\t0x288C6\n0x8EA5EAA9\t0x288C3\n0x8EA5EAAA\t0x288C2\n0x8EA5EAAB\t0x288C0\n0x8EA5EAAC\t0x288C5\n0x8EA5EAAD\t0x288C7\n0x8EA5EAAE\t0x288BF\n0x8EA5EAAF\t0x288C4\n0x8EA5EAB0\t0x288D4\n0x8EA5EAB1\t0x28A90\n0x8EA5EAB2\t0x28AD2\n0x8EA5EAB3\t0x494E\n0x8EA5EAB4\t0x28AD4\n0x8EA5EAB5\t0x28CAF\n0x8EA5EAB6\t0x28CAE\n0x8EA5EAB7\t0x28CB2\n0x8EA5EAB8\t0x28CAD\n0x8EA5EAB9\t0x28D9C\n0x8EA5EABA\t0x28DA0\n0x8EA5EABB\t0x28DB6\n0x8EA5EABC\t0x28F3D\n0x8EA5EABD\t0x28F56\n0x8EA5EABE\t0x28F82\n0x8EA5EABF\t0x29028\n0x8EA5EAC0\t0x2902B\n0x8EA5EAC1\t0x2913C\n0x8EA5EAC2\t0x2913E\n0x8EA5EAC3\t0x2913F\n0x8EA5EAC4\t0x29142\n0x8EA5EAC5\t0x2913D\n0x8EA5EAC6\t0x29141\n0x8EA5EAC7\t0x2913B\n0x8EA5EAC8\t0x29149\n0x8EA5EAC9\t0x29143\n0x8EA5EACA\t0x29239\n0x8EA5EACB\t0x29238\n0x8EA5EACC\t0x29322\n0x8EA5EACD\t0x29308\n0x8EA5EACE\t0x2930C\n0x8EA5EACF\t0x29306\n0x8EA5EAD0\t0x29313\n0x8EA5EAD1\t0x29304\n0x8EA5EAD2\t0x29320\n0x8EA5EAD3\t0x2931D\n0x8EA5EAD4\t0x29305\n0x8EA5EAD5\t0x2930A\n0x8EA5EAD6\t0x293D6\n0x8EA5EAD7\t0x293D7\n0x8EA5EAD8\t0x29436\n0x8EA5EAD9\t0x29437\n0x8EA5EADA\t0x29523\n0x8EA5EADB\t0x29522\n0x8EA5EADC\t0x29520\n0x8EA5EADD\t0x2951A\n0x8EA5EADE\t0x2951D\n0x8EA5EADF\t0x2961C\n0x8EA5EAE0\t0x29620\n0x8EA5EAE1\t0x29677\n0x8EA5EAE2\t0x2977F\n0x8EA5EAE3\t0x2978B\n0x8EA5EAE4\t0x2977D\n0x8EA5EAE5\t0x29799\n0x8EA5EAE6\t0x29784\n0x8EA5EAE7\t0x29789\n0x8EA5EAE8\t0x29785\n0x8EA5EAE9\t0x29783\n0x8EA5EAEA\t0x29786\n0x8EA5EAEB\t0x2979E\n0x8EA5EAEC\t0x29853\n0x8EA5EAED\t0x29917\n0x8EA5EAEE\t0x4B94\n0x8EA5EAEF\t0x29919\n0x8EA5EAF0\t0x29920\n0x8EA5EAF1\t0x2991F\n0x8EA5EAF2\t0x29923\n0x8EA5EAF3\t0x29918\n0x8EA5EAF4\t0x29921\n0x8EA5EAF5\t0x29929\n0x8EA5EAF6\t0x29924\n0x8EA5EAF7\t0x29926\n0x8EA5EAF8\t0x29A5E\n0x8EA5EAF9\t0x29A6F\n0x8EA5EAFA\t0x29A6E\n0x8EA5EAFB\t0x29A74\n0x8EA5EAFC\t0x29A72\n0x8EA5EAFD\t0x29A73\n0x8EA5EAFE\t0x29B7D\n0x8EA5EBA1\t0x29B7E\n0x8EA5EBA2\t0x29B85\n0x8EA5EBA3\t0x29B7F\n0x8EA5EBA4\t0x29B84\n0x8EA5EBA5\t0x29C44\n0x8EA5EBA6\t0x29CF5\n0x8EA5EBA7\t0x29CF8\n0x8EA5EBA8\t0x29D03\n0x8EA5EBA9\t0x29CF6\n0x8EA5EBAA\t0x29E28\n0x8EA5EBAB\t0x4C63\n0x8EA5EBAC\t0x29E39\n0x8EA5EBAD\t0x29DFB\n0x8EA5EBAE\t0x29E0E\n0x8EA5EBAF\t0x29DFD\n0x8EA5EBB0\t0x29E1F\n0x8EA5EBB1\t0x4C61\n0x8EA5EBB2\t0x29E03\n0x8EA5EBB3\t0x9BD8\n0x8EA5EBB4\t0x29E10\n0x8EA5EBB5\t0x4C5A\n0x8EA5EBB6\t0x29E0D\n0x8EA5EBB7\t0x29E27\n0x8EA5EBB8\t0x29E41\n0x8EA5EBB9\t0x2A072\n0x8EA5EBBA\t0x2A078\n0x8EA5EBBB\t0x2A080\n0x8EA5EBBC\t0x4CE3\n0x8EA5EBBD\t0x2A085\n0x8EA5EBBE\t0x2A07B\n0x8EA5EBBF\t0x9D7C\n0x8EA5EBC0\t0x2A07D\n0x8EA5EBC1\t0x2A091\n0x8EA5EBC2\t0x2A088\n0x8EA5EBC3\t0x2A0AA\n0x8EA5EBC4\t0x2A08D\n0x8EA5EBC5\t0x2A089\n0x8EA5EBC6\t0x2A095\n0x8EA5EBC7\t0x2A09B\n0x8EA5EBC8\t0x2A08C\n0x8EA5EBC9\t0x2A09E\n0x8EA5EBCA\t0x2A07C\n0x8EA5EBCB\t0x2A086\n0x8EA5EBCC\t0x2A084\n0x8EA5EBCD\t0x2A268\n0x8EA5EBCE\t0x2A2C5\n0x8EA5EBCF\t0x2A2C4\n0x8EA5EBD0\t0x2A2C9\n0x8EA5EBD1\t0x2A2C6\n0x8EA5EBD2\t0x2A342\n0x8EA5EBD3\t0x2A345\n0x8EA5EBD4\t0x2A341\n0x8EA5EBD5\t0x2A344\n0x8EA5EBD6\t0x2A3A6\n0x8EA5EBD7\t0x2A3C2\n0x8EA5EBD8\t0x2A442\n0x8EA5EBD9\t0x2A449\n0x8EA5EBDA\t0x2A448\n0x8EA5EBDB\t0x2A44A\n0x8EA5EBDC\t0x2A44C\n0x8EA5EBDD\t0x2A44B\n0x8EA5EBDE\t0x2A517\n0x8EA5EBDF\t0x2A518\n0x8EA5EBE0\t0x2A515\n0x8EA5EBE1\t0x2A552\n0x8EA5EBE2\t0x2A554\n0x8EA5EBE3\t0x2A553\n0x8EA5EBE4\t0x2A59A\n0x8EA5EBE5\t0x2A59B\n0x8EA5EBE6\t0x2A5DC\n0x8EA5EBE7\t0x2A5E4\n0x8EA5EBE8\t0x2A691\n0x8EA5EBE9\t0x4DAF\n0x8EA5EBEA\t0x2A6BA\n0x8EA5EBEB\t0x20451\n0x8EA5EBEC\t0x2045B\n0x8EA5EBED\t0x204CF\n0x8EA5EBEE\t0x23305\n0x8EA5EBEF\t0x21113\n0x8EA5EBF0\t0x21115\n0x8EA5EBF1\t0x21114\n0x8EA5EBF2\t0x21123\n0x8EA5EBF3\t0x3613\n0x8EA5EBF4\t0x21111\n0x8EA5EBF5\t0x21112\n0x8EA5EBF6\t0x3680\n0x8EA5EBF7\t0x214F0\n0x8EA5EBF8\t0x2169B\n0x8EA5EBF9\t0x21912\n0x8EA5EBFA\t0x21916\n0x8EA5EBFB\t0x21917\n0x8EA5EBFC\t0x219B5\n0x8EA5EBFD\t0x21CF4\n0x8EA5EBFE\t0x21FB1\n0x8EA5ECA1\t0x22179\n0x8EA5ECA2\t0x222FF\n0x8EA5ECA3\t0x222FC\n0x8EA5ECA4\t0x222FB\n0x8EA5ECA5\t0x2243F\n0x8EA5ECA6\t0x22444\n0x8EA5ECA7\t0x2259D\n0x8EA5ECA8\t0x22932\n0x8EA5ECA9\t0x2294C\n0x8EA5ECAA\t0x2292B\n0x8EA5ECAB\t0x2295A\n0x8EA5ECAC\t0x22A1F\n0x8EA5ECAD\t0x22E01\n0x8EA5ECAE\t0x22E2D\n0x8EA5ECAF\t0x22E27\n0x8EA5ECB0\t0x22E59\n0x8EA5ECB1\t0x22E5A\n0x8EA5ECB2\t0x22E4D\n0x8EA5ECB3\t0x22E58\n0x8EA5ECB4\t0x23023\n0x8EA5ECB5\t0x23025\n0x8EA5ECB6\t0x2302B\n0x8EA5ECB7\t0x232FF\n0x8EA5ECB8\t0x233AE\n0x8EA5ECB9\t0x237CB\n0x8EA5ECBA\t0x237CA\n0x8EA5ECBB\t0x237D0\n0x8EA5ECBC\t0x237CE\n0x8EA5ECBD\t0x237CC\n0x8EA5ECBE\t0x237D8\n0x8EA5ECBF\t0x237C6\n0x8EA5ECC0\t0x237D2\n0x8EA5ECC1\t0x237CF\n0x8EA5ECC2\t0x237C8\n0x8EA5ECC3\t0x23B17\n0x8EA5ECC4\t0x4DB0\n0x8EA5ECC5\t0x240C4\n0x8EA5ECC6\t0x29240\n0x8EA5ECC7\t0x240E9\n0x8EA5ECC8\t0x240F2\n0x8EA5ECC9\t0x240FC\n0x8EA5ECCA\t0x240EA\n0x8EA5ECCB\t0x240EB\n0x8EA5ECCC\t0x240FD\n0x8EA5ECCD\t0x24478\n0x8EA5ECCE\t0x24477\n0x8EA5ECCF\t0x24473\n0x8EA5ECD0\t0x2449E\n0x8EA5ECD1\t0x24479\n0x8EA5ECD2\t0x245A2\n0x8EA5ECD3\t0x24603\n0x8EA5ECD4\t0x24704\n0x8EA5ECD5\t0x24705\n0x8EA5ECD6\t0x248CE\n0x8EA5ECD7\t0x24ABF\n0x8EA5ECD8\t0x24EF6\n0x8EA5ECD9\t0x24EF7\n0x8EA5ECDA\t0x25031\n0x8EA5ECDB\t0x25030\n0x8EA5ECDC\t0x250C9\n0x8EA5ECDD\t0x250C7\n0x8EA5ECDE\t0x2531C\n0x8EA5ECDF\t0x25328\n0x8EA5ECE0\t0x2531A\n0x8EA5ECE1\t0x2531E\n0x8EA5ECE2\t0x2531B\n0x8EA5ECE3\t0x2531F\n0x8EA5ECE4\t0x255BF\n0x8EA5ECE5\t0x255BB\n0x8EA5ECE6\t0x255BC\n0x8EA5ECE7\t0x255C0\n0x8EA5ECE8\t0x2571A\n0x8EA5ECE9\t0x258EF\n0x8EA5ECEA\t0x258EC\n0x8EA5ECEB\t0x258E9\n0x8EA5ECEC\t0x258F0\n0x8EA5ECED\t0x258FE\n0x8EA5ECEE\t0x25A34\n0x8EA5ECEF\t0x25D6A\n0x8EA5ECF0\t0x25D95\n0x8EA5ECF1\t0x25D6C\n0x8EA5ECF2\t0x25D72\n0x8EA5ECF3\t0x25D67\n0x8EA5ECF4\t0x25D60\n0x8EA5ECF5\t0x25D6B\n0x8EA5ECF6\t0x25D5E\n0x8EA5ECF7\t0x25D6F\n0x8EA5ECF8\t0x25D66\n0x8EA5ECF9\t0x7C46\n0x8EA5ECFA\t0x25D62\n0x8EA5ECFB\t0x25D5D\n0x8EA5ECFC\t0x25D5C\n0x8EA5ECFD\t0x2F965\n0x8EA5ECFE\t0x25F50\n0x8EA5EDA1\t0x2619F\n0x8EA5EDA2\t0x4323\n0x8EA5EDA3\t0x2619E\n0x8EA5EDA4\t0x261A6\n0x8EA5EDA5\t0x26335\n0x8EA5EDA6\t0x26338\n0x8EA5EDA7\t0x26336\n0x8EA5EDA8\t0x2633A\n0x8EA5EDA9\t0x263DC\n0x8EA5EDAA\t0x2687C\n0x8EA5EDAB\t0x268AB\n0x8EA5EDAC\t0x4449\n0x8EA5EDAD\t0x268A8\n0x8EA5EDAE\t0x268A7\n0x8EA5EDAF\t0x2692B\n0x8EA5EDB0\t0x2692C\n0x8EA5EDB1\t0x26928\n0x8EA5EDB2\t0x2092B\n0x8EA5EDB3\t0x269A9\n0x8EA5EDB4\t0x269AA\n0x8EA5EDB5\t0x269AB\n0x8EA5EDB6\t0x269F8\n0x8EA5EDB7\t0x26AB1\n0x8EA5EDB8\t0x26AF0\n0x8EA5EDB9\t0x26AEF\n0x8EA5EDBA\t0x270A8\n0x8EA5EDBB\t0x2708B\n0x8EA5EDBC\t0x27094\n0x8EA5EDBD\t0x2709E\n0x8EA5EDBE\t0x2708F\n0x8EA5EDBF\t0x27088\n0x8EA5EDC0\t0x2707E\n0x8EA5EDC1\t0x27081\n0x8EA5EDC2\t0x27030\n0x8EA5EDC3\t0x2709B\n0x8EA5EDC4\t0x27082\n0x8EA5EDC5\t0x27090\n0x8EA5EDC6\t0x27085\n0x8EA5EDC7\t0x2707F\n0x8EA5EDC8\t0x270A9\n0x8EA5EDC9\t0x270DE\n0x8EA5EDCA\t0x2720D\n0x8EA5EDCB\t0x45FA\n0x8EA5EDCC\t0x274CF\n0x8EA5EDCD\t0x274CB\n0x8EA5EDCE\t0x274D8\n0x8EA5EDCF\t0x274DD\n0x8EA5EDD0\t0x274D3\n0x8EA5EDD1\t0x274D0\n0x8EA5EDD2\t0x274D5\n0x8EA5EDD3\t0x274D6\n0x8EA5EDD4\t0x275D6\n0x8EA5EDD5\t0x27792\n0x8EA5EDD6\t0x27795\n0x8EA5EDD7\t0x2A5CB\n0x8EA5EDD8\t0x2778D\n0x8EA5EDD9\t0x2779B\n0x8EA5EDDA\t0x2779D\n0x8EA5EDDB\t0x2778F\n0x8EA5EDDC\t0x2779E\n0x8EA5EDDD\t0x277A6\n0x8EA5EDDE\t0x27896\n0x8EA5EDDF\t0x27892\n0x8EA5EDE0\t0x27B16\n0x8EA5EDE1\t0x27B2A\n0x8EA5EDE2\t0x27B29\n0x8EA5EDE3\t0x27B2C\n0x8EA5EDE4\t0x27C15\n0x8EA5EDE5\t0x27C12\n0x8EA5EDE6\t0x27C11\n0x8EA5EDE7\t0x27C13\n0x8EA5EDE8\t0x27C88\n0x8EA5EDE9\t0x27C8B\n0x8EA5EDEA\t0x27C8A\n0x8EA5EDEB\t0x27C87\n0x8EA5EDEC\t0x27D17\n0x8EA5EDED\t0x27D16\n0x8EA5EDEE\t0x27D1A\n0x8EA5EDEF\t0x27E19\n0x8EA5EDF0\t0x27E17\n0x8EA5EDF1\t0x27F91\n0x8EA5EDF2\t0x27F94\n0x8EA5EDF3\t0x2818B\n0x8EA5EDF4\t0x28190\n0x8EA5EDF5\t0x2818F\n0x8EA5EDF6\t0x28186\n0x8EA5EDF7\t0x28183\n0x8EA5EDF8\t0x2818E\n0x8EA5EDF9\t0x28187\n0x8EA5EDFA\t0x281A8\n0x8EA5EDFB\t0x28185\n0x8EA5EDFC\t0x281A6\n0x8EA5EDFD\t0x28182\n0x8EA5EDFE\t0x281A7\n0x8EA5EEA1\t0x283B9\n0x8EA5EEA2\t0x283B7\n0x8EA5EEA3\t0x283B4\n0x8EA5EEA4\t0x283B6\n0x8EA5EEA5\t0x283B3\n0x8EA5EEA6\t0x283C6\n0x8EA5EEA7\t0x2863C\n0x8EA5EEA8\t0x28640\n0x8EA5EEA9\t0x28638\n0x8EA5EEAA\t0x28791\n0x8EA5EEAB\t0x287A6\n0x8EA5EEAC\t0x287DA\n0x8EA5EEAD\t0x288DA\n0x8EA5EEAE\t0x288D8\n0x8EA5EEAF\t0x288D9\n0x8EA5EEB0\t0x288DB\n0x8EA5EEB1\t0x288D7\n0x8EA5EEB2\t0x28B16\n0x8EA5EEB3\t0x28B12\n0x8EA5EEB4\t0x28B1F\n0x8EA5EEB5\t0x4959\n0x8EA5EEB6\t0x28B14\n0x8EA5EEB7\t0x28B1A\n0x8EA5EEB8\t0x28B10\n0x8EA5EEB9\t0x28CB3\n0x8EA5EEBA\t0x28DAE\n0x8EA5EEBB\t0x28DC1\n0x8EA5EEBC\t0x28DB0\n0x8EA5EEBD\t0x28DAF\n0x8EA5EEBE\t0x28DB1\n0x8EA5EEBF\t0x28DAD\n0x8EA5EEC0\t0x28DB2\n0x8EA5EEC1\t0x28DC4\n0x8EA5EEC2\t0x2903C\n0x8EA5EEC3\t0x2903F\n0x8EA5EEC4\t0x29161\n0x8EA5EEC5\t0x29166\n0x8EA5EEC6\t0x2923C\n0x8EA5EEC7\t0x2923B\n0x8EA5EEC8\t0x2932C\n0x8EA5EEC9\t0x4A7E\n0x8EA5EECA\t0x2932A\n0x8EA5EECB\t0x2933E\n0x8EA5EECC\t0x2932F\n0x8EA5EECD\t0x29332\n0x8EA5EECE\t0x29327\n0x8EA5EECF\t0x29329\n0x8EA5EED0\t0x29340\n0x8EA5EED1\t0x293DF\n0x8EA5EED2\t0x293DE\n0x8EA5EED3\t0x2943C\n0x8EA5EED4\t0x2943B\n0x8EA5EED5\t0x2943E\n0x8EA5EED6\t0x29521\n0x8EA5EED7\t0x29546\n0x8EA5EED8\t0x2953C\n0x8EA5EED9\t0x29536\n0x8EA5EEDA\t0x29538\n0x8EA5EEDB\t0x29535\n0x8EA5EEDC\t0x29631\n0x8EA5EEDD\t0x29636\n0x8EA5EEDE\t0x2962D\n0x8EA5EEDF\t0x29633\n0x8EA5EEE0\t0x2962F\n0x8EA5EEE1\t0x2962E\n0x8EA5EEE2\t0x29635\n0x8EA5EEE3\t0x297AC\n0x8EA5EEE4\t0x297A9\n0x8EA5EEE5\t0x297A6\n0x8EA5EEE6\t0x4BA8\n0x8EA5EEE7\t0x2994C\n0x8EA5EEE8\t0x29943\n0x8EA5EEE9\t0x29941\n0x8EA5EEEA\t0x2994F\n0x8EA5EEEB\t0x29942\n0x8EA5EEEC\t0x29951\n0x8EA5EEED\t0x4BA9\n0x8EA5EEEE\t0x29940\n0x8EA5EEEF\t0x29950\n0x8EA5EEF0\t0x29945\n0x8EA5EEF1\t0x2994A\n0x8EA5EEF2\t0x2994B\n0x8EA5EEF3\t0x29A83\n0x8EA5EEF4\t0x29A82\n0x8EA5EEF5\t0x29A81\n0x8EA5EEF6\t0x29AE0\n0x8EA5EEF7\t0x29B98\n0x8EA5EEF8\t0x29B9F\n0x8EA5EEF9\t0x29B9B\n0x8EA5EEFA\t0x29B9A\n0x8EA5EEFB\t0x29B99\n0x8EA5EEFC\t0x29B96\n0x8EA5EEFD\t0x29BAE\n0x8EA5EEFE\t0x29B9E\n0x8EA5EFA1\t0x29D09\n0x8EA5EFA2\t0x29D0D\n0x8EA5EFA3\t0x29E4E\n0x8EA5EFA4\t0x29E4A\n0x8EA5EFA5\t0x29E4D\n0x8EA5EFA6\t0x29E40\n0x8EA5EFA7\t0x29E3E\n0x8EA5EFA8\t0x29E48\n0x8EA5EFA9\t0x29E42\n0x8EA5EFAA\t0x29E62\n0x8EA5EFAB\t0x29E45\n0x8EA5EFAC\t0x29E51\n0x8EA5EFAD\t0x2A0C6\n0x8EA5EFAE\t0x2A0D0\n0x8EA5EFAF\t0x2A0C0\n0x8EA5EFB0\t0x2A0B7\n0x8EA5EFB1\t0x2A0C2\n0x8EA5EFB2\t0x2A0BC\n0x8EA5EFB3\t0x2A0C5\n0x8EA5EFB4\t0x2A0DC\n0x8EA5EFB5\t0x2A0DB\n0x8EA5EFB6\t0x2A0D2\n0x8EA5EFB7\t0x2A0C7\n0x8EA5EFB8\t0x2A0B6\n0x8EA5EFB9\t0x2A0C9\n0x8EA5EFBA\t0x2A0CC\n0x8EA5EFBB\t0x2A0D1\n0x8EA5EFBC\t0x2A0CD\n0x8EA5EFBD\t0x2A0DA\n0x8EA5EFBE\t0x2A0BA\n0x8EA5EFBF\t0x2A0D3\n0x8EA5EFC0\t0x2A0CE\n0x8EA5EFC1\t0x2A0F6\n0x8EA5EFC2\t0x2A0BD\n0x8EA5EFC3\t0x2A0DD\n0x8EA5EFC4\t0x2A0C8\n0x8EA5EFC5\t0x2A10D\n0x8EA5EFC6\t0x2A135\n0x8EA5EFC7\t0x2A271\n0x8EA5EFC8\t0x2A26E\n0x8EA5EFC9\t0x2A26F\n0x8EA5EFCA\t0x2A2D6\n0x8EA5EFCB\t0x2A34C\n0x8EA5EFCC\t0x2A34F\n0x8EA5EFCD\t0x2A354\n0x8EA5EFCE\t0x2A353\n0x8EA5EFCF\t0x2A3C9\n0x8EA5EFD0\t0x2A3C8\n0x8EA5EFD1\t0x2A403\n0x8EA5EFD2\t0x4D54\n0x8EA5EFD3\t0x2A404\n0x8EA5EFD4\t0x4D56\n0x8EA5EFD5\t0x2A457\n0x8EA5EFD6\t0x2A452\n0x8EA5EFD7\t0x2A453\n0x8EA5EFD8\t0x4D6D\n0x8EA5EFD9\t0x2A456\n0x8EA5EFDA\t0x2A45C\n0x8EA5EFDB\t0x2A455\n0x8EA5EFDC\t0x2A564\n0x8EA5EFDD\t0x2A55D\n0x8EA5EFDE\t0x2A55E\n0x8EA5EFDF\t0x2A5A2\n0x8EA5EFE0\t0x2A5A3\n0x8EA5EFE1\t0x4D8E\n0x8EA5EFE2\t0x2A5E7\n0x8EA5EFE3\t0x2A5E6\n0x8EA5EFE4\t0x2A698\n0x8EA5EFE5\t0x2A6AC\n0x8EA5EFE6\t0x2A6AF\n0x8EA5EFE7\t0x2A6AE\n0x8EA5EFE8\t0x20459\n0x8EA5EFE9\t0x205A9\n0x8EA5EFEA\t0x2082A\n0x8EA5EFEB\t0x208C7\n0x8EA5EFEC\t0x21141\n0x8EA5EFED\t0x21137\n0x8EA5EFEE\t0x21135\n0x8EA5EFEF\t0x21133\n0x8EA5EFF0\t0x21139\n0x8EA5EFF1\t0x21132\n0x8EA5EFF2\t0x214FF\n0x8EA5EFF3\t0x21501\n0x8EA5EFF4\t0x214F8\n0x8EA5EFF5\t0x2191B\n0x8EA5EFF6\t0x21919\n0x8EA5EFF7\t0x21BBF\n0x8EA5EFF8\t0x21FBC\n0x8EA5EFF9\t0x21FBE\n0x8EA5EFFA\t0x21FBD\n0x8EA5EFFB\t0x2217D\n0x8EA5EFFC\t0x22446\n0x8EA5EFFD\t0x22447\n0x8EA5EFFE\t0x225A4\n0x8EA5F0A1\t0x22A21\n0x8EA5F0A2\t0x22A62\n0x8EA5F0A3\t0x22E86\n0x8EA5F0A4\t0x3A72\n0x8EA5F0A5\t0x2302F\n0x8EA5F0A6\t0x23031\n0x8EA5F0A7\t0x3C14\n0x8EA5F0A8\t0x237F8\n0x8EA5F0A9\t0x237F5\n0x8EA5F0AA\t0x237F9\n0x8EA5F0AB\t0x237F2\n0x8EA5F0AC\t0x237FA\n0x8EA5F0AD\t0x237F3\n0x8EA5F0AE\t0x23814\n0x8EA5F0AF\t0x237FD\n0x8EA5F0B0\t0x2380F\n0x8EA5F0B1\t0x2380E\n0x8EA5F0B2\t0x23801\n0x8EA5F0B3\t0x23937\n0x8EA5F0B4\t0x23935\n0x8EA5F0B5\t0x23934\n0x8EA5F0B6\t0x23931\n0x8EA5F0B7\t0x23A7A\n0x8EA5F0B8\t0x23A7B\n0x8EA5F0B9\t0x23C37\n0x8EA5F0BA\t0x2412B\n0x8EA5F0BB\t0x240FB\n0x8EA5F0BC\t0x24116\n0x8EA5F0BD\t0x24113\n0x8EA5F0BE\t0x3D93\n0x8EA5F0BF\t0x24111\n0x8EA5F0C0\t0x2410F\n0x8EA5F0C1\t0x2411B\n0x8EA5F0C2\t0x24138\n0x8EA5F0C3\t0x244A4\n0x8EA5F0C4\t0x24709\n0x8EA5F0C5\t0x24707\n0x8EA5F0C6\t0x2470B\n0x8EA5F0C7\t0x248D3\n0x8EA5F0C8\t0x248D1\n0x8EA5F0C9\t0x248D8\n0x8EA5F0CA\t0x24B1D\n0x8EA5F0CB\t0x24BA9\n0x8EA5F0CC\t0x24BD0\n0x8EA5F0CD\t0x27215\n0x8EA5F0CE\t0x24F02\n0x8EA5F0CF\t0x24F05\n0x8EA5F0D0\t0x24F01\n0x8EA5F0D1\t0x24F00\n0x8EA5F0D2\t0x2532E\n0x8EA5F0D3\t0x25330\n0x8EA5F0D4\t0x2532F\n0x8EA5F0D5\t0x25331\n0x8EA5F0D6\t0x255D2\n0x8EA5F0D7\t0x255D3\n0x8EA5F0D8\t0x25902\n0x8EA5F0D9\t0x25A40\n0x8EA5F0DA\t0x25A42\n0x8EA5F0DB\t0x25A3B\n0x8EA5F0DC\t0x25ACE\n0x8EA5F0DD\t0x25D98\n0x8EA5F0DE\t0x25D8F\n0x8EA5F0DF\t0x25D94\n0x8EA5F0E0\t0x25D91\n0x8EA5F0E1\t0x426F\n0x8EA5F0E2\t0x25DBA\n0x8EA5F0E3\t0x25D90\n0x8EA5F0E4\t0x25D86\n0x8EA5F0E5\t0x25D9A\n0x8EA5F0E6\t0x25D8C\n0x8EA5F0E7\t0x25D93\n0x8EA5F0E8\t0x25D87\n0x8EA5F0E9\t0x25D88\n0x8EA5F0EA\t0x25D97\n0x8EA5F0EB\t0x25D8D\n0x8EA5F0EC\t0x25D9C\n0x8EA5F0ED\t0x25DBD\n0x8EA5F0EE\t0x25F3C\n0x8EA5F0EF\t0x25F59\n0x8EA5F0F0\t0x42B0\n0x8EA5F0F1\t0x261D1\n0x8EA5F0F2\t0x261BB\n0x8EA5F0F3\t0x261BE\n0x8EA5F0F4\t0x2625D\n0x8EA5F0F5\t0x263E2\n0x8EA5F0F6\t0x26605\n0x8EA5F0F7\t0x268BA\n0x8EA5F0F8\t0x352E\n0x8EA5F0F9\t0x268F4\n0x8EA5F0FA\t0x269B2\n0x8EA5F0FB\t0x269F9\n0x8EA5F0FC\t0x26AB7\n0x8EA5F0FD\t0x26AB6\n0x8EA5F0FE\t0x27089\n0x8EA5F1A1\t0x270F9\n0x8EA5F1A2\t0x270D9\n0x8EA5F1A3\t0x270E8\n0x8EA5F1A4\t0x270D4\n0x8EA5F1A5\t0x270DB\n0x8EA5F1A6\t0x270E2\n0x8EA5F1A7\t0x270DF\n0x8EA5F1A8\t0x270D1\n0x8EA5F1A9\t0x270E9\n0x8EA5F1AA\t0x270EA\n0x8EA5F1AB\t0x27213\n0x8EA5F1AC\t0x27211\n0x8EA5F1AD\t0x274FA\n0x8EA5F1AE\t0x274F8\n0x8EA5F1AF\t0x274F4\n0x8EA5F1B0\t0x274FB\n0x8EA5F1B1\t0x2750E\n0x8EA5F1B2\t0x27502\n0x8EA5F1B3\t0x2750F\n0x8EA5F1B4\t0x27790\n0x8EA5F1B5\t0x277AD\n0x8EA5F1B6\t0x277A9\n0x8EA5F1B7\t0x27948\n0x8EA5F1B8\t0x27B5A\n0x8EA5F1B9\t0x27B4F\n0x8EA5F1BA\t0x27B4E\n0x8EA5F1BB\t0x27B55\n0x8EA5F1BC\t0x27B54\n0x8EA5F1BD\t0x27B4A\n0x8EA5F1BE\t0x27BD5\n0x8EA5F1BF\t0x27C18\n0x8EA5F1C0\t0x27C8D\n0x8EA5F1C1\t0x27D1D\n0x8EA5F1C2\t0x27D19\n0x8EA5F1C3\t0x27E26\n0x8EA5F1C4\t0x27E28\n0x8EA5F1C5\t0x27E2B\n0x8EA5F1C6\t0x27E7D\n0x8EA5F1C7\t0x27FA0\n0x8EA5F1C8\t0x27F9A\n0x8EA5F1C9\t0x27F9B\n0x8EA5F1CA\t0x281B5\n0x8EA5F1CB\t0x281AD\n0x8EA5F1CC\t0x281B2\n0x8EA5F1CD\t0x28294\n0x8EA5F1CE\t0x283C9\n0x8EA5F1CF\t0x2864E\n0x8EA5F1D0\t0x2864F\n0x8EA5F1D1\t0x28644\n0x8EA5F1D2\t0x28652\n0x8EA5F1D3\t0x288E9\n0x8EA5F1D4\t0x28939\n0x8EA5F1D5\t0x4969\n0x8EA5F1D6\t0x957E\n0x8EA5F1D7\t0x28DC7\n0x8EA5F1D8\t0x28DD3\n0x8EA5F1D9\t0x28DC6\n0x8EA5F1DA\t0x28DC3\n0x8EA5F1DB\t0x49B4\n0x8EA5F1DC\t0x28DD2\n0x8EA5F1DD\t0x28F66\n0x8EA5F1DE\t0x2917F\n0x8EA5F1DF\t0x29180\n0x8EA5F1E0\t0x29184\n0x8EA5F1E1\t0x29185\n0x8EA5F1E2\t0x291E3\n0x8EA5F1E3\t0x4A4D\n0x8EA5F1E4\t0x29241\n0x8EA5F1E5\t0x29244\n0x8EA5F1E6\t0x29243\n0x8EA5F1E7\t0x2934E\n0x8EA5F1E8\t0x2934F\n0x8EA5F1E9\t0x4A83\n0x8EA5F1EA\t0x29349\n0x8EA5F1EB\t0x2934A\n0x8EA5F1EC\t0x2934B\n0x8EA5F1ED\t0x29343\n0x8EA5F1EE\t0x293E0\n0x8EA5F1EF\t0x293E5\n0x8EA5F1F0\t0x293E1\n0x8EA5F1F1\t0x293E6\n0x8EA5F1F2\t0x293E2\n0x8EA5F1F3\t0x2940C\n0x8EA5F1F4\t0x29440\n0x8EA5F1F5\t0x29549\n0x8EA5F1F6\t0x2954A\n0x8EA5F1F7\t0x29554\n0x8EA5F1F8\t0x2954C\n0x8EA5F1F9\t0x29555\n0x8EA5F1FA\t0x29556\n0x8EA5F1FB\t0x2963B\n0x8EA5F1FC\t0x2963D\n0x8EA5F1FD\t0x297A4\n0x8EA5F1FE\t0x297A8\n0x8EA5F2A1\t0x297C3\n0x8EA5F2A2\t0x297BF\n0x8EA5F2A3\t0x297C8\n0x8EA5F2A4\t0x297C2\n0x8EA5F2A5\t0x297CA\n0x8EA5F2A6\t0x297CC\n0x8EA5F2A7\t0x297C9\n0x8EA5F2A8\t0x297BE\n0x8EA5F2A9\t0x297CD\n0x8EA5F2AA\t0x297C7\n0x8EA5F2AB\t0x297C5\n0x8EA5F2AC\t0x2985D\n0x8EA5F2AD\t0x4BB0\n0x8EA5F2AE\t0x2996C\n0x8EA5F2AF\t0x2996B\n0x8EA5F2B0\t0x29970\n0x8EA5F2B1\t0x2996D\n0x8EA5F2B2\t0x2996F\n0x8EA5F2B3\t0x29989\n0x8EA5F2B4\t0x29984\n0x8EA5F2B5\t0x29A8D\n0x8EA5F2B6\t0x29A8A\n0x8EA5F2B7\t0x29A8E\n0x8EA5F2B8\t0x29A91\n0x8EA5F2B9\t0x29BB5\n0x8EA5F2BA\t0x29BB1\n0x8EA5F2BB\t0x29BAF\n0x8EA5F2BC\t0x29BB9\n0x8EA5F2BD\t0x29BB7\n0x8EA5F2BE\t0x29BB0\n0x8EA5F2BF\t0x4C0C\n0x8EA5F2C0\t0x29C17\n0x8EA5F2C1\t0x4C18\n0x8EA5F2C2\t0x29C4F\n0x8EA5F2C3\t0x29D19\n0x8EA5F2C4\t0x29D10\n0x8EA5F2C5\t0x29D18\n0x8EA5F2C6\t0x29D11\n0x8EA5F2C7\t0x29D1C\n0x8EA5F2C8\t0x29D12\n0x8EA5F2C9\t0x29E76\n0x8EA5F2CA\t0x29E71\n0x8EA5F2CB\t0x9C20\n0x8EA5F2CC\t0x29E7A\n0x8EA5F2CD\t0x29E7F\n0x8EA5F2CE\t0x9C22\n0x8EA5F2CF\t0x29E73\n0x8EA5F2D0\t0x29EAB\n0x8EA5F2D1\t0x9C1E\n0x8EA5F2D2\t0x29E77\n0x8EA5F2D3\t0x29E74\n0x8EA5F2D4\t0x29E7E\n0x8EA5F2D5\t0x29E9B\n0x8EA5F2D6\t0x29E84\n0x8EA5F2D7\t0x29E7C\n0x8EA5F2D8\t0x2A129\n0x8EA5F2D9\t0x2A12B\n0x8EA5F2DA\t0x2A10E\n0x8EA5F2DB\t0x2A100\n0x8EA5F2DC\t0x2A10B\n0x8EA5F2DD\t0x2A0FE\n0x8EA5F2DE\t0x2A0FA\n0x8EA5F2DF\t0x2A117\n0x8EA5F2E0\t0x2A0FF\n0x8EA5F2E1\t0x2A10C\n0x8EA5F2E2\t0x2A10F\n0x8EA5F2E3\t0x4CF5\n0x8EA5F2E4\t0x2A102\n0x8EA5F2E5\t0x2A101\n0x8EA5F2E6\t0x2A0FC\n0x8EA5F2E7\t0x2A149\n0x8EA5F2E8\t0x2A106\n0x8EA5F2E9\t0x2A112\n0x8EA5F2EA\t0x2A113\n0x8EA5F2EB\t0x2A278\n0x8EA5F2EC\t0x2A35B\n0x8EA5F2ED\t0x2A362\n0x8EA5F2EE\t0x2A35F\n0x8EA5F2EF\t0x2A35D\n0x8EA5F2F0\t0x2A3AB\n0x8EA5F2F1\t0x2A3D5\n0x8EA5F2F2\t0x2A3D4\n0x8EA5F2F3\t0x2A3D3\n0x8EA5F2F4\t0x2A407\n0x8EA5F2F5\t0x2A46C\n0x8EA5F2F6\t0x2A470\n0x8EA5F2F7\t0x2A46E\n0x8EA5F2F8\t0x2A468\n0x8EA5F2F9\t0x2A46D\n0x8EA5F2FA\t0x2A477\n0x8EA5F2FB\t0x2A46A\n0x8EA5F2FC\t0x2A4CE\n0x8EA5F2FD\t0x2A4EC\n0x8EA5F2FE\t0x2A569\n0x8EA5F3A1\t0x2A568\n0x8EA5F3A2\t0x2A5A6\n0x8EA5F3A3\t0x2A5A9\n0x8EA5F3A4\t0x2A5AA\n0x8EA5F3A5\t0x2A600\n0x8EA5F3A6\t0x2A60D\n0x8EA5F3A7\t0x2A5F8\n0x8EA5F3A8\t0x2A5FC\n0x8EA5F3A9\t0x2A60A\n0x8EA5F3AA\t0x2A5F7\n0x8EA5F3AB\t0x2A601\n0x8EA5F3AC\t0x2A6B6\n0x8EA5F3AD\t0x2A6BB\n0x8EA5F3AE\t0x2A6B7\n0x8EA5F3AF\t0x2A6B9\n0x8EA5F3B0\t0x2A6CA\n0x8EA5F3B1\t0x20469\n0x8EA5F3B2\t0x20625\n0x8EA5F3B3\t0x21159\n0x8EA5F3B4\t0x21507\n0x8EA5F3B5\t0x21509\n0x8EA5F3B6\t0x21922\n0x8EA5F3B7\t0x21B07\n0x8EA5F3B8\t0x21B04\n0x8EA5F3B9\t0x2330F\n0x8EA5F3BA\t0x21CF8\n0x8EA5F3BB\t0x21FC7\n0x8EA5F3BC\t0x21FD1\n0x8EA5F3BD\t0x2217E\n0x8EA5F3BE\t0x22308\n0x8EA5F3BF\t0x2244A\n0x8EA5F3C0\t0x2F898\n0x8EA5F3C1\t0x224B9\n0x8EA5F3C2\t0x22E88\n0x8EA5F3C3\t0x22E91\n0x8EA5F3C4\t0x22E84\n0x8EA5F3C5\t0x22E73\n0x8EA5F3C6\t0x22E89\n0x8EA5F3C7\t0x22E85\n0x8EA5F3C8\t0x23033\n0x8EA5F3C9\t0x23313\n0x8EA5F3CA\t0x2381D\n0x8EA5F3CB\t0x2381F\n0x8EA5F3CC\t0x2381C\n0x8EA5F3CD\t0x23820\n0x8EA5F3CE\t0x2381A\n0x8EA5F3CF\t0x2381B\n0x8EA5F3D0\t0x23939\n0x8EA5F3D1\t0x239AF\n0x8EA5F3D2\t0x23AE5\n0x8EA5F3D3\t0x23C3C\n0x8EA5F3D4\t0x24137\n0x8EA5F3D5\t0x2413A\n0x8EA5F3D6\t0x244BB\n0x8EA5F3D7\t0x3E0E\n0x8EA5F3D8\t0x24710\n0x8EA5F3D9\t0x2470D\n0x8EA5F3DA\t0x24BAF\n0x8EA5F3DB\t0x24C11\n0x8EA5F3DC\t0x3FD8\n0x8EA5F3DD\t0x24F0D\n0x8EA5F3DE\t0x24F0C\n0x8EA5F3DF\t0x24F0B\n0x8EA5F3E0\t0x250D4\n0x8EA5F3E1\t0x2533D\n0x8EA5F3E2\t0x2533E\n0x8EA5F3E3\t0x2533B\n0x8EA5F3E4\t0x25343\n0x8EA5F3E5\t0x25340\n0x8EA5F3E6\t0x25346\n0x8EA5F3E7\t0x25411\n0x8EA5F3E8\t0x255DD\n0x8EA5F3E9\t0x255DF\n0x8EA5F3EA\t0x255EA\n0x8EA5F3EB\t0x2574A\n0x8EA5F3EC\t0x25906\n0x8EA5F3ED\t0x25DC1\n0x8EA5F3EE\t0x25DB9\n0x8EA5F3EF\t0x25DC6\n0x8EA5F3F0\t0x25DB8\n0x8EA5F3F1\t0x25DBB\n0x8EA5F3F2\t0x25DC8\n0x8EA5F3F3\t0x25DC5\n0x8EA5F3F4\t0x25DBF\n0x8EA5F3F5\t0x25DC7\n0x8EA5F3F6\t0x25DC4\n0x8EA5F3F7\t0x25F65\n0x8EA5F3F8\t0x25F67\n0x8EA5F3F9\t0x261D7\n0x8EA5F3FA\t0x261DB\n0x8EA5F3FB\t0x261D4\n0x8EA5F3FC\t0x261D6\n0x8EA5F3FD\t0x263E8\n0x8EA5F3FE\t0x2660A\n0x8EA5F4A1\t0x26ABD\n0x8EA5F4A2\t0x26ABE\n0x8EA5F4A3\t0x2711A\n0x8EA5F4A4\t0x2710D\n0x8EA5F4A5\t0x2710F\n0x8EA5F4A6\t0x2711B\n0x8EA5F4A7\t0x27110\n0x8EA5F4A8\t0x27111\n0x8EA5F4A9\t0x27113\n0x8EA5F4AA\t0x27218\n0x8EA5F4AB\t0x27520\n0x8EA5F4AC\t0x2751F\n0x8EA5F4AD\t0x27523\n0x8EA5F4AE\t0x2751D\n0x8EA5F4AF\t0x27537\n0x8EA5F4B0\t0x27525\n0x8EA5F4B1\t0x27524\n0x8EA5F4B2\t0x2752A\n0x8EA5F4B3\t0x27527\n0x8EA5F4B4\t0x27533\n0x8EA5F4B5\t0x27528\n0x8EA5F4B6\t0x27534\n0x8EA5F4B7\t0x277BA\n0x8EA5F4B8\t0x8970\n0x8EA5F4B9\t0x2789D\n0x8EA5F4BA\t0x2794C\n0x8EA5F4BB\t0x27B5C\n0x8EA5F4BC\t0x27B6A\n0x8EA5F4BD\t0x27B5D\n0x8EA5F4BE\t0x27B65\n0x8EA5F4BF\t0x27B63\n0x8EA5F4C0\t0x27B5E\n0x8EA5F4C1\t0x27C19\n0x8EA5F4C2\t0x27C97\n0x8EA5F4C3\t0x27E3F\n0x8EA5F4C4\t0x27E33\n0x8EA5F4C5\t0x27E32\n0x8EA5F4C6\t0x27FA1\n0x8EA5F4C7\t0x27FA5\n0x8EA5F4C8\t0x27FA4\n0x8EA5F4C9\t0x27FA2\n0x8EA5F4CA\t0x281C1\n0x8EA5F4CB\t0x482C\n0x8EA5F4CC\t0x281C7\n0x8EA5F4CD\t0x281C4\n0x8EA5F4CE\t0x281C6\n0x8EA5F4CF\t0x281C5\n0x8EA5F4D0\t0x281D4\n0x8EA5F4D1\t0x281CA\n0x8EA5F4D2\t0x28653\n0x8EA5F4D3\t0x288F1\n0x8EA5F4D4\t0x28921\n0x8EA5F4D5\t0x496E\n0x8EA5F4D6\t0x28BB7\n0x8EA5F4D7\t0x28B92\n0x8EA5F4D8\t0x28DD4\n0x8EA5F4D9\t0x28F44\n0x8EA5F4DA\t0x29198\n0x8EA5F4DB\t0x2919B\n0x8EA5F4DC\t0x29191\n0x8EA5F4DD\t0x29195\n0x8EA5F4DE\t0x2919A\n0x8EA5F4DF\t0x29192\n0x8EA5F4E0\t0x29353\n0x8EA5F4E1\t0x29357\n0x8EA5F4E2\t0x4A86\n0x8EA5F4E3\t0x2935C\n0x8EA5F4E4\t0x2935D\n0x8EA5F4E5\t0x29364\n0x8EA5F4E6\t0x293EA\n0x8EA5F4E7\t0x293ED\n0x8EA5F4E8\t0x29442\n0x8EA5F4E9\t0x29443\n0x8EA5F4EA\t0x29564\n0x8EA5F4EB\t0x29561\n0x8EA5F4EC\t0x29560\n0x8EA5F4ED\t0x2967D\n0x8EA5F4EE\t0x297D4\n0x8EA5F4EF\t0x297D5\n0x8EA5F4F0\t0x297D9\n0x8EA5F4F1\t0x29987\n0x8EA5F4F2\t0x29999\n0x8EA5F4F3\t0x2998C\n0x8EA5F4F4\t0x2998A\n0x8EA5F4F5\t0x2998F\n0x8EA5F4F6\t0x4BB3\n0x8EA5F4F7\t0x2998B\n0x8EA5F4F8\t0x29982\n0x8EA5F4F9\t0x2999B\n0x8EA5F4FA\t0x4BEB\n0x8EA5F4FB\t0x29BC8\n0x8EA5F4FC\t0x29BC4\n0x8EA5F4FD\t0x29BCC\n0x8EA5F4FE\t0x29BC7\n0x8EA5F5A1\t0x29BC3\n0x8EA5F5A2\t0x29BC6\n0x8EA5F5A3\t0x29BCB\n0x8EA5F5A4\t0x29BCA\n0x8EA5F5A5\t0x29BC9\n0x8EA5F5A6\t0x29BCD\n0x8EA5F5A7\t0x29C53\n0x8EA5F5A8\t0x29D21\n0x8EA5F5A9\t0x29D29\n0x8EA5F5AA\t0x29D1D\n0x8EA5F5AB\t0x29D24\n0x8EA5F5AC\t0x29D28\n0x8EA5F5AD\t0x9C43\n0x8EA5F5AE\t0x29EB1\n0x8EA5F5AF\t0x29EB2\n0x8EA5F5B0\t0x29EB5\n0x8EA5F5B1\t0x29ED6\n0x8EA5F5B2\t0x29EAF\n0x8EA5F5B3\t0x29ECA\n0x8EA5F5B4\t0x29EB8\n0x8EA5F5B5\t0x2FA12\n0x8EA5F5B6\t0x2FA11\n0x8EA5F5B7\t0x2A145\n0x8EA5F5B8\t0x2A147\n0x8EA5F5B9\t0x2A134\n0x8EA5F5BA\t0x2A16E\n0x8EA5F5BB\t0x2A142\n0x8EA5F5BC\t0x2A131\n0x8EA5F5BD\t0x2A12E\n0x8EA5F5BE\t0x2A156\n0x8EA5F5BF\t0x2A138\n0x8EA5F5C0\t0x2A137\n0x8EA5F5C1\t0x2A14B\n0x8EA5F5C2\t0x2A12D\n0x8EA5F5C3\t0x2A133\n0x8EA5F5C4\t0x2A136\n0x8EA5F5C5\t0x9DE0\n0x8EA5F5C6\t0x2A148\n0x8EA5F5C7\t0x2A2DC\n0x8EA5F5C8\t0x4D42\n0x8EA5F5C9\t0x2A366\n0x8EA5F5CA\t0x2A36D\n0x8EA5F5CB\t0x2A363\n0x8EA5F5CC\t0x2A364\n0x8EA5F5CD\t0x4D41\n0x8EA5F5CE\t0x2A367\n0x8EA5F5CF\t0x2A3D9\n0x8EA5F5D0\t0x2A40B\n0x8EA5F5D1\t0x2A47E\n0x8EA5F5D2\t0x2A48B\n0x8EA5F5D3\t0x2A526\n0x8EA5F5D4\t0x2A52C\n0x8EA5F5D5\t0x2A529\n0x8EA5F5D6\t0x2A56F\n0x8EA5F5D7\t0x2A56B\n0x8EA5F5D8\t0x2A56D\n0x8EA5F5D9\t0x2A56E\n0x8EA5F5DA\t0x2A61C\n0x8EA5F5DB\t0x2A611\n0x8EA5F5DC\t0x2A610\n0x8EA5F5DD\t0x2A624\n0x8EA5F5DE\t0x2A612\n0x8EA5F5DF\t0x2A615\n0x8EA5F5E0\t0x2A617\n0x8EA5F5E1\t0x4DAC\n0x8EA5F5E2\t0x2046F\n0x8EA5F5E3\t0x205AB\n0x8EA5F5E4\t0x2082E\n0x8EA5F5E5\t0x208C9\n0x8EA5F5E6\t0x20B96\n0x8EA5F5E7\t0x21185\n0x8EA5F5E8\t0x216A0\n0x8EA5F5E9\t0x2192B\n0x8EA5F5EA\t0x2230D\n0x8EA5F5EB\t0x23036\n0x8EA5F5ED\t0x3B2F\n0x8EA5F5EE\t0x3B2E\n0x8EA5F5EF\t0x233B1\n0x8EA5F5F0\t0x2384A\n0x8EA5F5F1\t0x23837\n0x8EA5F5F2\t0x2383C\n0x8EA5F5F3\t0x23838\n0x8EA5F5F4\t0x2383A\n0x8EA5F5F5\t0x2383E\n0x8EA5F5F6\t0x23849\n0x8EA5F5F7\t0x3C4D\n0x8EA5F5F8\t0x3C7B\n0x8EA5F5F9\t0x23A80\n0x8EA5F5FA\t0x23A7F\n0x8EA5F5FB\t0x23AE3\n0x8EA5F5FC\t0x23C3F\n0x8EA5F5FD\t0x24152\n0x8EA5F5FE\t0x2414E\n0x8EA5F6A1\t0x2414A\n0x8EA5F6A2\t0x2414B\n0x8EA5F6A3\t0x244D5\n0x8EA5F6A4\t0x24AD8\n0x8EA5F6A5\t0x24B20\n0x8EA5F6A6\t0x24BB3\n0x8EA5F6A7\t0x24BB1\n0x8EA5F6A8\t0x24BB0\n0x8EA5F6A9\t0x24F17\n0x8EA5F6AA\t0x250D9\n0x8EA5F6AB\t0x25349\n0x8EA5F6AC\t0x25413\n0x8EA5F6AD\t0x255ED\n0x8EA5F6AE\t0x255EB\n0x8EA5F6AF\t0x255EE\n0x8EA5F6B0\t0x2590A\n0x8EA5F6B1\t0x2590B\n0x8EA5F6B2\t0x25A4A\n0x8EA5F6B3\t0x25DD5\n0x8EA5F6B4\t0x25DD7\n0x8EA5F6B5\t0x25DDE\n0x8EA5F6B6\t0x25DDC\n0x8EA5F6B7\t0x25DEE\n0x8EA5F6B8\t0x25F70\n0x8EA5F6B9\t0x42B2\n0x8EA5F6BA\t0x261D9\n0x8EA5F6BB\t0x263D7\n0x8EA5F6BC\t0x268CB\n0x8EA5F6BD\t0x268C7\n0x8EA5F6BE\t0x269FC\n0x8EA5F6BF\t0x2713B\n0x8EA5F6C0\t0x27139\n0x8EA5F6C1\t0x2714B\n0x8EA5F6C2\t0x27143\n0x8EA5F6C3\t0x27140\n0x8EA5F6C4\t0x27146\n0x8EA5F6C5\t0x2754D\n0x8EA5F6C6\t0x27543\n0x8EA5F6C7\t0x27547\n0x8EA5F6C8\t0x2754B\n0x8EA5F6C9\t0x27555\n0x8EA5F6CA\t0x27552\n0x8EA5F6CB\t0x27B5F\n0x8EA5F6CC\t0x4722\n0x8EA5F6CD\t0x27B7C\n0x8EA5F6CE\t0x27B7B\n0x8EA5F6CF\t0x27FA8\n0x8EA5F6D0\t0x27FA9\n0x8EA5F6D1\t0x281DE\n0x8EA5F6D2\t0x281D7\n0x8EA5F6D3\t0x281DD\n0x8EA5F6D4\t0x281D6\n0x8EA5F6D5\t0x281D8\n0x8EA5F6D6\t0x2829B\n0x8EA5F6D7\t0x283E0\n0x8EA5F6D8\t0x283E8\n0x8EA5F6D9\t0x283E6\n0x8EA5F6DA\t0x288F8\n0x8EA5F6DB\t0x288FB\n0x8EA5F6DC\t0x28BBB\n0x8EA5F6DD\t0x9459\n0x8EA5F6DE\t0x28BB8\n0x8EA5F6DF\t0x4970\n0x8EA5F6E0\t0x28CC1\n0x8EA5F6E1\t0x28CC0\n0x8EA5F6E2\t0x291A4\n0x8EA5F6E3\t0x291AB\n0x8EA5F6E4\t0x2924D\n0x8EA5F6E5\t0x29365\n0x8EA5F6E6\t0x29367\n0x8EA5F6E7\t0x2936A\n0x8EA5F6E8\t0x29366\n0x8EA5F6E9\t0x29369\n0x8EA5F6EA\t0x29573\n0x8EA5F6EB\t0x29580\n0x8EA5F6EC\t0x2956F\n0x8EA5F6ED\t0x29571\n0x8EA5F6EE\t0x297E4\n0x8EA5F6EF\t0x297E6\n0x8EA5F6F0\t0x297E7\n0x8EA5F6F1\t0x299A0\n0x8EA5F6F2\t0x299A4\n0x8EA5F6F3\t0x29AA2\n0x8EA5F6F4\t0x29AA7\n0x8EA5F6F5\t0x29AA4\n0x8EA5F6F6\t0x29BDE\n0x8EA5F6F7\t0x29BDB\n0x8EA5F6F8\t0x29C58\n0x8EA5F6F9\t0x29C5C\n0x8EA5F6FA\t0x29D2F\n0x8EA5F6FB\t0x29D2E\n0x8EA5F6FC\t0x29EDD\n0x8EA5F6FD\t0x29EE4\n0x8EA5F6FE\t0x29ED8\n0x8EA5F7A1\t0x29EE7\n0x8EA5F7A2\t0x29EDA\n0x8EA5F7A3\t0x29E75\n0x8EA5F7A4\t0x4C95\n0x8EA5F7A5\t0x2A179\n0x8EA5F7A6\t0x2A180\n0x8EA5F7A7\t0x2A17F\n0x8EA5F7A8\t0x2A17C\n0x8EA5F7A9\t0x2A175\n0x8EA5F7AA\t0x2A17B\n0x8EA5F7AB\t0x2A182\n0x8EA5F7AC\t0x4D00\n0x8EA5F7AD\t0x2A189\n0x8EA5F7AE\t0x2A174\n0x8EA5F7AF\t0x2A17D\n0x8EA5F7B0\t0x2A17A\n0x8EA5F7B1\t0x2A186\n0x8EA5F7B2\t0x2A1A8\n0x8EA5F7B3\t0x2A172\n0x8EA5F7B4\t0x4D02\n0x8EA5F7B5\t0x2A18B\n0x8EA5F7B6\t0x2A191\n0x8EA5F7B7\t0x2A1B3\n0x8EA5F7B8\t0x2A181\n0x8EA5F7B9\t0x2A282\n0x8EA5F7BA\t0x2A2E1\n0x8EA5F7BB\t0x2A2E3\n0x8EA5F7BC\t0x2A2E2\n0x8EA5F7BD\t0x2A376\n0x8EA5F7BE\t0x2A374\n0x8EA5F7BF\t0x2A372\n0x8EA5F7C0\t0x2A375\n0x8EA5F7C1\t0x2A40E\n0x8EA5F7C2\t0x2A40D\n0x8EA5F7C3\t0x2A494\n0x8EA5F7C4\t0x2A492\n0x8EA5F7C5\t0x2A493\n0x8EA5F7C6\t0x2A491\n0x8EA5F7C7\t0x2A48F\n0x8EA5F7C8\t0x2A495\n0x8EA5F7C9\t0x2A4D0\n0x8EA5F7CA\t0x2A4F7\n0x8EA5F7CB\t0x2A576\n0x8EA5F7CC\t0x2A5AF\n0x8EA5F7CD\t0x4D9F\n0x8EA5F7CE\t0x2A626\n0x8EA5F7CF\t0x2A625\n0x8EA5F7D0\t0x2A62D\n0x8EA5F7D1\t0x2A6A0\n0x8EA5F7D2\t0x2A6C3\n0x8EA5F7D3\t0x204D7\n0x8EA5F7D4\t0x20ACC\n0x8EA5F7D5\t0x21179\n0x8EA5F7D6\t0x2117A\n0x8EA5F7D7\t0x21515\n0x8EA5F7D8\t0x21FDB\n0x8EA5F7D9\t0x22185\n0x8EA5F7DA\t0x22970\n0x8EA5F7DB\t0x2297B\n0x8EA5F7DC\t0x22EA5\n0x8EA5F7DD\t0x22E9F\n0x8EA5F7DE\t0x23317\n0x8EA5F7DF\t0x233B2\n0x8EA5F7E0\t0x23839\n0x8EA5F7E1\t0x23840\n0x8EA5F7E2\t0x2384E\n0x8EA5F7E3\t0x2393E\n0x8EA5F7E4\t0x23AE8\n0x8EA5F7E5\t0x23AE7\n0x8EA5F7E6\t0x24166\n0x8EA5F7E7\t0x24161\n0x8EA5F7E8\t0x244DA\n0x8EA5F7E9\t0x24714\n0x8EA5F7EA\t0x248DF\n0x8EA5F7EB\t0x24F18\n0x8EA5F7EC\t0x25039\n0x8EA5F7ED\t0x2503A\n0x8EA5F7EE\t0x25730\n0x8EA5F7EF\t0x25732\n0x8EA5F7F0\t0x2590E\n0x8EA5F7F1\t0x25A4C\n0x8EA5F7F2\t0x25DE8\n0x8EA5F7F3\t0x25DF1\n0x8EA5F7F4\t0x25DEB\n0x8EA5F7F5\t0x25DEC\n0x8EA5F7F6\t0x25F74\n0x8EA5F7F7\t0x25F73\n0x8EA5F7F8\t0x261F1\n0x8EA5F7F9\t0x26342\n0x8EA5F7FA\t0x2633E\n0x8EA5F7FB\t0x26341\n0x8EA5F7FC\t0x2652C\n0x8EA5F7FD\t0x268D2\n0x8EA5F7FE\t0x269BB\n0x8EA5F8A1\t0x27158\n0x8EA5F8A2\t0x27157\n0x8EA5F8A3\t0x27156\n0x8EA5F8A4\t0x2715A\n0x8EA5F8A5\t0x457D\n0x8EA5F8A6\t0x27561\n0x8EA5F8A7\t0x27568\n0x8EA5F8A8\t0x27565\n0x8EA5F8A9\t0x2755F\n0x8EA5F8AA\t0x27564\n0x8EA5F8AB\t0x2755E\n0x8EA5F8AC\t0x2755B\n0x8EA5F8AD\t0x27567\n0x8EA5F8AE\t0x277C3\n0x8EA5F8AF\t0x278A2\n0x8EA5F8B0\t0x27953\n0x8EA5F8B1\t0x27B7D\n0x8EA5F8B2\t0x27C20\n0x8EA5F8B3\t0x27FAE\n0x8EA5F8B4\t0x27FAF\n0x8EA5F8B5\t0x27FB0\n0x8EA5F8B6\t0x281E7\n0x8EA5F8B7\t0x281E6\n0x8EA5F8B8\t0x281E9\n0x8EA5F8B9\t0x283F1\n0x8EA5F8BA\t0x283EB\n0x8EA5F8BB\t0x283EA\n0x8EA5F8BC\t0x283E9\n0x8EA5F8BD\t0x28663\n0x8EA5F8BE\t0x28902\n0x8EA5F8BF\t0x288FE\n0x8EA5F8C0\t0x28BDE\n0x8EA5F8C1\t0x28CC2\n0x8EA5F8C2\t0x28DE6\n0x8EA5F8C3\t0x28F5D\n0x8EA5F8C4\t0x291AD\n0x8EA5F8C5\t0x29375\n0x8EA5F8C6\t0x29372\n0x8EA5F8C7\t0x29377\n0x8EA5F8C8\t0x4AF6\n0x8EA5F8C9\t0x29651\n0x8EA5F8CA\t0x297E8\n0x8EA5F8CB\t0x297ED\n0x8EA5F8CC\t0x297EE\n0x8EA5F8CD\t0x299B9\n0x8EA5F8CE\t0x299A1\n0x8EA5F8CF\t0x299B6\n0x8EA5F8D0\t0x29AAE\n0x8EA5F8D1\t0x29BE8\n0x8EA5F8D2\t0x4C12\n0x8EA5F8D3\t0x29C1E\n0x8EA5F8D4\t0x29D31\n0x8EA5F8D5\t0x29D32\n0x8EA5F8D6\t0x4C91\n0x8EA5F8D7\t0x29F0E\n0x8EA5F8D8\t0x29F12\n0x8EA5F8D9\t0x29F09\n0x8EA5F8DA\t0x29F05\n0x8EA5F8DB\t0x4C90\n0x8EA5F8DC\t0x29F03\n0x8EA5F8DD\t0x29F1F\n0x8EA5F8DE\t0x29F0D\n0x8EA5F8DF\t0x29F0C\n0x8EA5F8E0\t0x29F04\n0x8EA5F8E1\t0x29F0A\n0x8EA5F8E2\t0x2A1C2\n0x8EA5F8E3\t0x2A1BF\n0x8EA5F8E4\t0x2A1C9\n0x8EA5F8E5\t0x2A1B2\n0x8EA5F8E6\t0x2A1C1\n0x8EA5F8E7\t0x2A1AF\n0x8EA5F8E8\t0x2A1B4\n0x8EA5F8E9\t0x2A1B0\n0x8EA5F8EA\t0x2A1B6\n0x8EA5F8EB\t0x2A1B7\n0x8EA5F8EC\t0x2A1BB\n0x8EA5F8ED\t0x2A1B1\n0x8EA5F8EE\t0x2A2F0\n0x8EA5F8EF\t0x2A378\n0x8EA5F8F0\t0x2A37A\n0x8EA5F8F1\t0x2A379\n0x8EA5F8F2\t0x2A3E4\n0x8EA5F8F3\t0x2A3E6\n0x8EA5F8F4\t0x2A49F\n0x8EA5F8F5\t0x2A49D\n0x8EA5F8F6\t0x2A498\n0x8EA5F8F7\t0x2A499\n0x8EA5F8F8\t0x2A4F9\n0x8EA5F8F9\t0x2A530\n0x8EA5F8FA\t0x2A582\n0x8EA5F8FB\t0x2A581\n0x8EA5F8FC\t0x2A5B3\n0x8EA5F8FD\t0x2A57F\n0x8EA5F8FE\t0x2A63A\n0x8EA5F9A1\t0x2A63E\n0x8EA5F9A2\t0x2A648\n0x8EA5F9A3\t0x21186\n0x8EA5F9A4\t0x21936\n0x8EA5F9A5\t0x21B13\n0x8EA5F9A6\t0x21C22\n0x8EA5F9A7\t0x21FDD\n0x8EA5F9A8\t0x225A7\n0x8EA5F9A9\t0x2297D\n0x8EA5F9AA\t0x3A79\n0x8EA5F9AB\t0x2331C\n0x8EA5F9AC\t0x23865\n0x8EA5F9AD\t0x23860\n0x8EA5F9AE\t0x23867\n0x8EA5F9AF\t0x3C4E\n0x8EA5F9B0\t0x23B1A\n0x8EA5F9B1\t0x24AE3\n0x8EA5F9B2\t0x25734\n0x8EA5F9B3\t0x25918\n0x8EA5F9B4\t0x25A52\n0x8EA5F9B5\t0x25DFC\n0x8EA5F9B6\t0x25F79\n0x8EA5F9B7\t0x25F78\n0x8EA5F9B8\t0x25F76\n0x8EA5F9B9\t0x261FA\n0x8EA5F9BA\t0x261F8\n0x8EA5F9BB\t0x2652D\n0x8EA5F9BC\t0x268D6\n0x8EA5F9BD\t0x269BD\n0x8EA5F9BE\t0x269BF\n0x8EA5F9BF\t0x269BE\n0x8EA5F9C0\t0x27144\n0x8EA5F9C1\t0x27170\n0x8EA5F9C2\t0x27162\n0x8EA5F9C3\t0x2716E\n0x8EA5F9C4\t0x2756E\n0x8EA5F9C5\t0x2757C\n0x8EA5F9C6\t0x27574\n0x8EA5F9C7\t0x27578\n0x8EA5F9C8\t0x27570\n0x8EA5F9C9\t0x27579\n0x8EA5F9CA\t0x27571\n0x8EA5F9CB\t0x277CC\n0x8EA5F9CC\t0x278A7\n0x8EA5F9CD\t0x278A6\n0x8EA5F9CE\t0x27B93\n0x8EA5F9CF\t0x27C21\n0x8EA5F9D0\t0x27C9C\n0x8EA5F9D1\t0x2829D\n0x8EA5F9D2\t0x283F4\n0x8EA5F9D3\t0x283F3\n0x8EA5F9D4\t0x28DF0\n0x8EA5F9D5\t0x291B8\n0x8EA5F9D6\t0x291B6\n0x8EA5F9D7\t0x291BD\n0x8EA5F9D8\t0x29373\n0x8EA5F9D9\t0x29382\n0x8EA5F9DA\t0x29587\n0x8EA5F9DB\t0x29656\n0x8EA5F9DC\t0x29659\n0x8EA5F9DD\t0x297F6\n0x8EA5F9DE\t0x299C9\n0x8EA5F9DF\t0x299C5\n0x8EA5F9E0\t0x299C7\n0x8EA5F9E1\t0x299CA\n0x8EA5F9E2\t0x299C2\n0x8EA5F9E3\t0x299C4\n0x8EA5F9E4\t0x29BF2\n0x8EA5F9E5\t0x29BF0\n0x8EA5F9E6\t0x29D3B\n0x8EA5F9E7\t0x29D3A\n0x8EA5F9E8\t0x29F26\n0x8EA5F9E9\t0x29F28\n0x8EA5F9EA\t0x29F34\n0x8EA5F9EB\t0x29F2D\n0x8EA5F9EC\t0x2A1D7\n0x8EA5F9ED\t0x2A1D2\n0x8EA5F9EE\t0x2A1D6\n0x8EA5F9EF\t0x2A1DC\n0x8EA5F9F0\t0x2A1D3\n0x8EA5F9F1\t0x2A1D1\n0x8EA5F9F2\t0x2A286\n0x8EA5F9F3\t0x4D1E\n0x8EA5F9F4\t0x2A2EF\n0x8EA5F9F5\t0x2A2EE\n0x8EA5F9F6\t0x2A3E8\n0x8EA5F9F7\t0x2A4AC\n0x8EA5F9F8\t0x2A4A9\n0x8EA5F9F9\t0x2A4AA\n0x8EA5F9FA\t0x2A4AB\n0x8EA5F9FB\t0x2A4FB\n0x8EA5F9FC\t0x2A533\n0x8EA5F9FD\t0x2A588\n0x8EA5F9FE\t0x2A5B6\n0x8EA5FAA1\t0x2A5B7\n0x8EA5FAA2\t0x2A5D0\n0x8EA5FAA3\t0x2A5CF\n0x8EA5FAA4\t0x2A64F\n0x8EA5FAA5\t0x2A659\n0x8EA5FAA6\t0x2A64C\n0x8EA5FAA7\t0x21B18\n0x8EA5FAA8\t0x21FE0\n0x8EA5FAA9\t0x23869\n0x8EA5FAAA\t0x24173\n0x8EA5FAAB\t0x24172\n0x8EA5FAAC\t0x24AE8\n0x8EA5FAAD\t0x255FB\n0x8EA5FAAE\t0x2591C\n0x8EA5FAAF\t0x25E09\n0x8EA5FAB0\t0x25E0A\n0x8EA5FAB1\t0x25E08\n0x8EA5FAB2\t0x25F7D\n0x8EA5FAB3\t0x25F7F\n0x8EA5FAB4\t0x26267\n0x8EA5FAB5\t0x2717A\n0x8EA5FAB6\t0x2717B\n0x8EA5FAB7\t0x277D1\n0x8EA5FAB8\t0x2F9CB\n0x8EA5FAB9\t0x27B9D\n0x8EA5FABA\t0x27C9D\n0x8EA5FABB\t0x281FC\n0x8EA5FABC\t0x281FB\n0x8EA5FABD\t0x281FD\n0x8EA5FABE\t0x283F5\n0x8EA5FABF\t0x283F6\n0x8EA5FAC0\t0x28C0F\n0x8EA5FAC1\t0x28C1D\n0x8EA5FAC2\t0x291C7\n0x8EA5FAC3\t0x291C1\n0x8EA5FAC4\t0x291BF\n0x8EA5FAC5\t0x29254\n0x8EA5FAC6\t0x2937F\n0x8EA5FAC7\t0x293F5\n0x8EA5FAC8\t0x2958A\n0x8EA5FAC9\t0x2958C\n0x8EA5FACA\t0x2965C\n0x8EA5FACB\t0x29865\n0x8EA5FACC\t0x299CF\n0x8EA5FACD\t0x299D0\n0x8EA5FACE\t0x29AB8\n0x8EA5FACF\t0x29BFA\n0x8EA5FAD0\t0x29C66\n0x8EA5FAD1\t0x29F40\n0x8EA5FAD2\t0x29F41\n0x8EA5FAD3\t0x9C72\n0x8EA5FAD4\t0x2A1F7\n0x8EA5FAD5\t0x2A1F3\n0x8EA5FAD6\t0x2A1EF\n0x8EA5FAD7\t0x2A1F4\n0x8EA5FAD8\t0x2A1ED\n0x8EA5FAD9\t0x2A1F2\n0x8EA5FADA\t0x2A1F1\n0x8EA5FADB\t0x2A1F9\n0x8EA5FADC\t0x2A4B4\n0x8EA5FADD\t0x2A4FC\n0x8EA5FADE\t0x2A5BC\n0x8EA5FADF\t0x2A65E\n0x8EA5FAE0\t0x2A65B\n0x8EA5FAE1\t0x2A65F\n0x8EA5FAE2\t0x2A65D\n0x8EA5FAE3\t0x2A6CF\n0x8EA5FAE4\t0x2A6CE\n0x8EA5FAE5\t0x2193A\n0x8EA5FAE6\t0x21FE1\n0x8EA5FAE7\t0x22315\n0x8EA5FAE8\t0x22314\n0x8EA5FAE9\t0x24178\n0x8EA5FAEA\t0x24179\n0x8EA5FAEB\t0x244E6\n0x8EA5FAEC\t0x24BB8\n0x8EA5FAED\t0x24F22\n0x8EA5FAEE\t0x255FE\n0x8EA5FAEF\t0x268DB\n0x8EA5FAF0\t0x26A06\n0x8EA5FAF1\t0x26AC8\n0x8EA5FAF2\t0x27189\n0x8EA5FAF3\t0x27586\n0x8EA5FAF4\t0x278AD\n0x8EA5FAF5\t0x27B99\n0x8EA5FAF6\t0x27BD8\n0x8EA5FAF7\t0x27C23\n0x8EA5FAF8\t0x27D23\n0x8EA5FAF9\t0x27FB5\n0x8EA5FAFA\t0x283F9\n0x8EA5FAFB\t0x28907\n0x8EA5FAFC\t0x28C1E\n0x8EA5FAFD\t0x28DFB\n0x8EA5FAFE\t0x28F72\n0x8EA5FBA1\t0x28F73\n0x8EA5FBA2\t0x29387\n0x8EA5FBA3\t0x29449\n0x8EA5FBA4\t0x2965D\n0x8EA5FBA5\t0x297F8\n0x8EA5FBA6\t0x29C03\n0x8EA5FBA7\t0x29F4E\n0x8EA5FBA8\t0x29F4D\n0x8EA5FBA9\t0x29F50\n0x8EA5FBAA\t0x29F55\n0x8EA5FBAB\t0x2A209\n0x8EA5FBAC\t0x2A207\n0x8EA5FBAD\t0x2A20C\n0x8EA5FBAE\t0x2A203\n0x8EA5FBAF\t0x2A206\n0x8EA5FBB0\t0x2A20B\n0x8EA5FBB1\t0x2A20A\n0x8EA5FBB2\t0x2A289\n0x8EA5FBB3\t0x2A4BB\n0x8EA5FBB4\t0x2A4FF\n0x8EA5FBB5\t0x2A536\n0x8EA5FBB6\t0x2A58B\n0x8EA5FBB7\t0x2A666\n0x8EA5FBB8\t0x2A669\n0x8EA5FBB9\t0x2A667\n0x8EA5FBBA\t0x2A6C2\n0x8EA5FBBB\t0x2A6D2\n0x8EA5FBBC\t0x21FE2\n0x8EA5FBBD\t0x3828\n0x8EA5FBBE\t0x22988\n0x8EA5FBBF\t0x2335B\n0x8EA5FBC0\t0x23876\n0x8EA5FBC1\t0x2417D\n0x8EA5FBC2\t0x245A6\n0x8EA5FBC3\t0x2535A\n0x8EA5FBC4\t0x25E17\n0x8EA5FBC5\t0x268DC\n0x8EA5FBC6\t0x2718F\n0x8EA5FBC7\t0x27594\n0x8EA5FBC8\t0x27595\n0x8EA5FBC9\t0x27FB6\n0x8EA5FBCA\t0x28204\n0x8EA5FBCB\t0x287EE\n0x8EA5FBCC\t0x2938A\n0x8EA5FBCD\t0x293F9\n0x8EA5FBCE\t0x29C07\n0x8EA5FBCF\t0x29C1F\n0x8EA5FBD0\t0x29C2A\n0x8EA5FBD1\t0x29D45\n0x8EA5FBD2\t0x29F5C\n0x8EA5FBD3\t0x29F5B\n0x8EA5FBD4\t0x29F61\n0x8EA5FBD5\t0x29F5D\n0x8EA5FBD6\t0x2A218\n0x8EA5FBD7\t0x2A21F\n0x8EA5FBD8\t0x2A383\n0x8EA5FBD9\t0x2A416\n0x8EA5FBDA\t0x2A414\n0x8EA5FBDB\t0x2A4BF\n0x8EA5FBDC\t0x2A4C0\n0x8EA5FBDD\t0x2A673\n0x8EA5FBDE\t0x2A6C0\n0x8EA5FBDF\t0x21517\n0x8EA5FBE0\t0x22989\n0x8EA5FBE1\t0x2591E\n0x8EA5FBE2\t0x2591F\n0x8EA5FBE3\t0x25A54\n0x8EA5FBE4\t0x25E18\n0x8EA5FBE5\t0x26205\n0x8EA5FBE6\t0x27195\n0x8EA5FBE7\t0x27598\n0x8EA5FBE8\t0x2759B\n0x8EA5FBE9\t0x27959\n0x8EA5FBEA\t0x28208\n0x8EA5FBEB\t0x28401\n0x8EA5FBEC\t0x291CE\n0x8EA5FBED\t0x293FA\n0x8EA5FBEE\t0x29ABE\n0x8EA5FBEF\t0x29D47\n0x8EA5FBF0\t0x29F6A\n0x8EA5FBF1\t0x29F69\n0x8EA5FBF2\t0x29F68\n0x8EA5FBF3\t0x29F67\n0x8EA5FBF4\t0x2A225\n0x8EA5FBF5\t0x2A228\n0x8EA5FBF6\t0x2A4C4\n0x8EA5FBF7\t0x2A537\n0x8EA5FBF8\t0x2A58D\n0x8EA5FBF9\t0x2A58C\n0x8EA5FBFA\t0x4D91\n0x8EA5FBFB\t0x2F920\n0x8EA5FBFC\t0x25E22\n0x8EA5FBFD\t0x25F82\n0x8EA5FBFE\t0x277D9\n0x8EA5FCA1\t0x28C38\n0x8EA5FCA2\t0x293FB\n0x8EA5FCA3\t0x299E1\n0x8EA5FCA4\t0x29C72\n0x8EA5FCA5\t0x29D48\n0x8EA5FCA6\t0x29F6C\n0x8EA5FCA7\t0x29F70\n0x8EA5FCA8\t0x2A231\n0x8EA5FCA9\t0x2A230\n0x8EA5FCAA\t0x2A679\n0x8EA5FCAB\t0x25E23\n0x8EA5FCAC\t0x268F8\n0x8EA5FCAD\t0x29C74\n0x8EA5FCAE\t0x29F73\n0x8EA5FCAF\t0x2A234\n0x8EA5FCB0\t0x2A387\n0x8EA5FCB1\t0x2A3B2\n0x8EA5FCB2\t0x2A5C2\n0x8EA5FCB3\t0x2A67D\n0x8EA5FCB4\t0x21FE5\n0x8EA5FCB5\t0x2938C\n0x8EA5FCB6\t0x29F77\n0x8EA5FCB7\t0x29F75\n0x8EA5FCB8\t0x2A238\n0x8EA5FCB9\t0x2A23A\n0x8EA5FCBA\t0x2A683\n0x8EA5FCBB\t0x2A681\n0x8EA5FCBC\t0x24180\n0x8EA5FCBD\t0x27199\n0x8EA5FCBE\t0x4587\n0x8EA5FCBF\t0x2944A\n0x8EA5FCC0\t0x29D4A\n0x8EA5FCC1\t0x2A23C\n0x8EA5FCC2\t0x2A6C8\n0x8EA5FCC3\t0x25604\n0x8EA5FCC4\t0x278AF\n0x8EA5FCC5\t0x2A689\n0x8EA5FCC6\t0x2A2FA\n0x8EA5FCC7\t0x29661\n0x8EA5FCC8\t0x2A23F\n0x8EA5FCC9\t0x27193\n0x8EA5FCCA\t0x2A4C9\n0x8EA5FCCB\t0x277DE\n0x8EA5FCCC\t0x29391\n0x8EA5FCCD\t0x2A68E\n0x8EA5FCCE\t0x2A68D\n0x8EA5FCCF\t0x27198\n0x8EA5FCD0\t0x269C5\n0x8EA5FCD1\t0x2A6A5\n0x8EA6A1A1\t0x2F802\n0x8EA6A1A2\t0x20062\n0x8EA6A1A3\t0x3405\n0x8EA6A1A4\t0x20088\n0x8EA6A1A5\t0x200D0\n0x8EA6A1A6\t0x200CF\n0x8EA6A1A7\t0x2011E\n0x8EA6A1A8\t0x2011F\n0x8EA6A1A9\t0x20120\n0x8EA6A1AA\t0x2090E\n0x8EA6A1AB\t0x2092C\n0x8EA6A1AC\t0x20061\n0x8EA6A1AD\t0x20004\n0x8EA6A1AE\t0x20005\n0x8EA6A1AF\t0x20003\n0x8EA6A1B0\t0x3404\n0x8EA6A1B1\t0x2F801\n0x8EA6A1B2\t0x2007D\n0x8EA6A1B3\t0x2008D\n0x8EA6A1B4\t0x201A3\n0x8EA6A1B5\t0x201A4\n0x8EA6A1B6\t0x204DB\n0x8EA6A1B7\t0x20500\n0x8EA6A1B8\t0x2F81E\n0x8EA6A1B9\t0x206A3\n0x8EA6A1BA\t0x20832\n0x8EA6A1BB\t0x353F\n0x8EA6A1BC\t0x20AD4\n0x8EA6A1BD\t0x20AD5\n0x8EA6A1BE\t0x21C23\n0x8EA6A1BF\t0x2232C\n0x8EA6A1C0\t0x2237A\n0x8EA6A1C1\t0x20503\n0x8EA6A1C2\t0x20007\n0x8EA6A1C3\t0x20008\n0x8EA6A1C4\t0x2008F\n0x8EA6A1C5\t0x2009C\n0x8EA6A1C6\t0x200D5\n0x8EA6A1C7\t0x20112\n0x8EA6A1C8\t0x20113\n0x8EA6A1C9\t0x20114\n0x8EA6A1CA\t0x20121\n0x8EA6A1CB\t0x201A8\n0x8EA6A1CC\t0x201A6\n0x8EA6A1CD\t0x20476\n0x8EA6A1CE\t0x20501\n0x8EA6A1CF\t0x2053D\n0x8EA6A1D0\t0x2F814\n0x8EA6A1D1\t0x2053E\n0x8EA6A1D2\t0x20629\n0x8EA6A1D3\t0x20677\n0x8EA6A1D4\t0x20678\n0x8EA6A1D5\t0x206A6\n0x8EA6A1D6\t0x206A9\n0x8EA6A1D7\t0x206AC\n0x8EA6A1D8\t0x20834\n0x8EA6A1D9\t0x20504\n0x8EA6A1DA\t0x2097B\n0x8EA6A1DB\t0x20A10\n0x8EA6A1DC\t0x2062F\n0x8EA6A1DD\t0x20AD7\n0x8EA6A1DE\t0x20B1C\n0x8EA6A1DF\t0x20B1F\n0x8EA6A1E0\t0x20B1A\n0x8EA6A1E1\t0x2F836\n0x8EA6A1E2\t0x20B1E\n0x8EA6A1E3\t0x20B9E\n0x8EA6A1E4\t0x20B9A\n0x8EA6A1E5\t0x211A0\n0x8EA6A1E6\t0x211A1\n0x8EA6A1E7\t0x215D2\n0x8EA6A1E8\t0x215D3\n0x8EA6A1E9\t0x219B9\n0x8EA6A1EA\t0x21B1D\n0x8EA6A1EB\t0x21B55\n0x8EA6A1EC\t0x21CFF\n0x8EA6A1ED\t0x21FE7\n0x8EA6A1EE\t0x382A\n0x8EA6A1EF\t0x22011\n0x8EA6A1F0\t0x22013\n0x8EA6A1F1\t0x22012\n0x8EA6A1F2\t0x221AF\n0x8EA6A1F3\t0x221B1\n0x8EA6A1F4\t0x2F890\n0x8EA6A1F5\t0x2232D\n0x8EA6A1F6\t0x2237B\n0x8EA6A1F7\t0x2239D\n0x8EA6A1F8\t0x2239A\n0x8EA6A1F9\t0x38A7\n0x8EA6A1FA\t0x2239F\n0x8EA6A1FB\t0x223A0\n0x8EA6A1FC\t0x2239C\n0x8EA6A1FD\t0x224BD\n0x8EA6A1FE\t0x38FA\n0x8EA6A2A1\t0x225AA\n0x8EA6A2A2\t0x2306C\n0x8EA6A2A3\t0x23091\n0x8EA6A2A4\t0x23C74\n0x8EA6A2A5\t0x2456A\n0x8EA6A2A6\t0x2F929\n0x8EA6A2A7\t0x25605\n0x8EA6A2A8\t0x2626B\n0x8EA6A2A9\t0x2626A\n0x8EA6A2AA\t0x200E0\n0x8EA6A2AB\t0x20012\n0x8EA6A2AC\t0x3400\n0x8EA6A2AD\t0x2007F\n0x8EA6A2AE\t0x200A0\n0x8EA6A2AF\t0x20099\n0x8EA6A2B0\t0x20095\n0x8EA6A2B1\t0x2009E\n0x8EA6A2B2\t0x200DF\n0x8EA6A2B3\t0x200DE\n0x8EA6A2B4\t0x201AF\n0x8EA6A2B5\t0x201AD\n0x8EA6A2B6\t0x201B0\n0x8EA6A2B7\t0x204DF\n0x8EA6A2B8\t0x20543\n0x8EA6A2B9\t0x20541\n0x8EA6A2BA\t0x20548\n0x8EA6A2BB\t0x20575\n0x8EA6A2BC\t0x2F81A\n0x8EA6A2BD\t0x20632\n0x8EA6A2BE\t0x2067B\n0x8EA6A2BF\t0x20679\n0x8EA6A2C0\t0x206B3\n0x8EA6A2C1\t0x34DB\n0x8EA6A2C2\t0x20BA7\n0x8EA6A2C3\t0x206B2\n0x8EA6A2C4\t0x206B0\n0x8EA6A2C5\t0x206B4\n0x8EA6A2C6\t0x2F829\n0x8EA6A2C7\t0x208CD\n0x8EA6A2C8\t0x208CE\n0x8EA6A2C9\t0x2F82B\n0x8EA6A2CA\t0x20910\n0x8EA6A2CB\t0x20980\n0x8EA6A2CC\t0x209D3\n0x8EA6A2CD\t0x20A30\n0x8EA6A2CE\t0x20098\n0x8EA6A2CF\t0x20A2F\n0x8EA6A2D0\t0x20A31\n0x8EA6A2D1\t0x20ADA\n0x8EA6A2D2\t0x20AD9\n0x8EA6A2D3\t0x20B27\n0x8EA6A2D4\t0x20B28\n0x8EA6A2D5\t0x20B21\n0x8EA6A2D6\t0x20B25\n0x8EA6A2D7\t0x20BA6\n0x8EA6A2D8\t0x20BA2\n0x8EA6A2D9\t0x20BA1\n0x8EA6A2DA\t0x20BA4\n0x8EA6A2DB\t0x2F839\n0x8EA6A2DC\t0x20BAA\n0x8EA6A2DD\t0x20BA5\n0x8EA6A2DE\t0x20BA3\n0x8EA6A2DF\t0x20064\n0x8EA6A2E0\t0x2123F\n0x8EA6A2E1\t0x21244\n0x8EA6A2E2\t0x2151B\n0x8EA6A2E3\t0x21553\n0x8EA6A2E4\t0x21584\n0x8EA6A2E5\t0x21586\n0x8EA6A2E6\t0x215D5\n0x8EA6A2E7\t0x2F860\n0x8EA6A2E8\t0x2193E\n0x8EA6A2E9\t0x21940\n0x8EA6A2EA\t0x21BCA\n0x8EA6A2EB\t0x21BC9\n0x8EA6A2EC\t0x21C26\n0x8EA6A2ED\t0x21D00\n0x8EA6A2EE\t0x21D31\n0x8EA6A2EF\t0x21D3C\n0x8EA6A2F0\t0x21D30\n0x8EA6A2F1\t0x21D33\n0x8EA6A2F2\t0x21D32\n0x8EA6A2F3\t0x21D38\n0x8EA6A2F4\t0x22034\n0x8EA6A2F5\t0x22053\n0x8EA6A2F6\t0x22054\n0x8EA6A2F7\t0x221B4\n0x8EA6A2F8\t0x221B2\n0x8EA6A2F9\t0x2232F\n0x8EA6A2FA\t0x223A5\n0x8EA6A2FB\t0x223A7\n0x8EA6A2FC\t0x223A4\n0x8EA6A2FD\t0x223A8\n0x8EA6A2FE\t0x223A9\n0x8EA6A3A1\t0x223A2\n0x8EA6A3A2\t0x223A3\n0x8EA6A3A3\t0x223A6\n0x8EA6A3A4\t0x22481\n0x8EA6A3A5\t0x22480\n0x8EA6A3A6\t0x225AD\n0x8EA6A3A7\t0x22A24\n0x8EA6A3A8\t0x22A65\n0x8EA6A3A9\t0x22A68\n0x8EA6A3AA\t0x22A69\n0x8EA6A3AB\t0x2313C\n0x8EA6A3AC\t0x2313B\n0x8EA6A3AD\t0x2335D\n0x8EA6A3AE\t0x23944\n0x8EA6A3AF\t0x24182\n0x8EA6A3B0\t0x244F1\n0x8EA6A3B1\t0x2456B\n0x8EA6A3B2\t0x2471B\n0x8EA6A3B3\t0x248EB\n0x8EA6A3B4\t0x24BBA\n0x8EA6A3B5\t0x24BD3\n0x8EA6A3B6\t0x24D13\n0x8EA6A3B7\t0x25922\n0x8EA6A3B8\t0x26AF4\n0x8EA6A3B9\t0x2820F\n0x8EA6A3BA\t0x28210\n0x8EA6A3BB\t0x20507\n0x8EA6A3BC\t0x29C0B\n0x8EA6A3BD\t0x29C0A\n0x8EA6A3BE\t0x20019\n0x8EA6A3BF\t0x2001A\n0x8EA6A3C0\t0x20018\n0x8EA6A3C1\t0x20066\n0x8EA6A3C2\t0x20082\n0x8EA6A3C3\t0x200A8\n0x8EA6A3C4\t0x200E5\n0x8EA6A3C5\t0x200E7\n0x8EA6A3C6\t0x200E4\n0x8EA6A3C7\t0x20115\n0x8EA6A3C8\t0x20123\n0x8EA6A3C9\t0x20124\n0x8EA6A3CA\t0x20143\n0x8EA6A3CB\t0x201C3\n0x8EA6A3CC\t0x201BC\n0x8EA6A3CD\t0x201BB\n0x8EA6A3CE\t0x3438\n0x8EA6A3CF\t0x201B7\n0x8EA6A3D0\t0x201B9\n0x8EA6A3D1\t0x201CF\n0x8EA6A3D2\t0x2F80D\n0x8EA6A3D3\t0x2047A\n0x8EA6A3D4\t0x2047B\n0x8EA6A3D5\t0x204E1\n0x8EA6A3D6\t0x204E0\n0x8EA6A3D7\t0x20509\n0x8EA6A3D8\t0x2054D\n0x8EA6A3D9\t0x2F816\n0x8EA6A3DA\t0x2054B\n0x8EA6A3DB\t0x20579\n0x8EA6A3DC\t0x205B1\n0x8EA6A3DD\t0x20636\n0x8EA6A3DE\t0x20635\n0x8EA6A3DF\t0x20637\n0x8EA6A3E0\t0x20638\n0x8EA6A3E1\t0x2067F\n0x8EA6A3E2\t0x20680\n0x8EA6A3E3\t0x20681\n0x8EA6A3E4\t0x26953\n0x8EA6A3E5\t0x2067E\n0x8EA6A3E6\t0x206CD\n0x8EA6A3E7\t0x206BF\n0x8EA6A3E8\t0x206BE\n0x8EA6A3E9\t0x206C2\n0x8EA6A3EA\t0x206B8\n0x8EA6A3EB\t0x206C1\n0x8EA6A3EC\t0x6530\n0x8EA6A3ED\t0x20931\n0x8EA6A3EE\t0x2092F\n0x8EA6A3EF\t0x2096F\n0x8EA6A3F0\t0x20982\n0x8EA6A3F1\t0x353A\n0x8EA6A3F2\t0x20987\n0x8EA6A3F3\t0x20986\n0x8EA6A3F4\t0x2098D\n0x8EA6A3F5\t0x20994\n0x8EA6A3F6\t0x209D7\n0x8EA6A3F7\t0x209D4\n0x8EA6A3F8\t0x209D8\n0x8EA6A3F9\t0x20A16\n0x8EA6A3FA\t0x20A14\n0x8EA6A3FB\t0x20A2E\n0x8EA6A3FC\t0x20A36\n0x8EA6A3FD\t0x20A37\n0x8EA6A3FE\t0x21FEE\n0x8EA6A4A1\t0x20AE0\n0x8EA6A4A2\t0x20AE5\n0x8EA6A4A3\t0x20ADF\n0x8EA6A4A4\t0x20B2B\n0x8EA6A4A5\t0x20B29\n0x8EA6A4A6\t0x20B2D\n0x8EA6A4A7\t0x20B2F\n0x8EA6A4A8\t0x20BB7\n0x8EA6A4A9\t0x20BC9\n0x8EA6A4AA\t0x20BC1\n0x8EA6A4AB\t0x20BCA\n0x8EA6A4AC\t0x20BB2\n0x8EA6A4AD\t0x20BAC\n0x8EA6A4AE\t0x20BAE\n0x8EA6A4AF\t0x211B2\n0x8EA6A4B0\t0x211A8\n0x8EA6A4B1\t0x211B0\n0x8EA6A4B2\t0x211A7\n0x8EA6A4B3\t0x2F851\n0x8EA6A4B4\t0x21252\n0x8EA6A4B5\t0x2124A\n0x8EA6A4B6\t0x21556\n0x8EA6A4B7\t0x21555\n0x8EA6A4B8\t0x2155F\n0x8EA6A4B9\t0x2155E\n0x8EA6A4BA\t0x21588\n0x8EA6A4BB\t0x2F85D\n0x8EA6A4BC\t0x215DD\n0x8EA6A4BD\t0x215E2\n0x8EA6A4BE\t0x215E1\n0x8EA6A4BF\t0x215DF\n0x8EA6A4C0\t0x215E0\n0x8EA6A4C1\t0x216AF\n0x8EA6A4C2\t0x216B1\n0x8EA6A4C3\t0x216BA\n0x8EA6A4C4\t0x21945\n0x8EA6A4C5\t0x21943\n0x8EA6A4C6\t0x219BD\n0x8EA6A4C7\t0x219C8\n0x8EA6A4C8\t0x2F86C\n0x8EA6A4C9\t0x219BE\n0x8EA6A4CA\t0x219BF\n0x8EA6A4CB\t0x2F874\n0x8EA6A4CC\t0x21B59\n0x8EA6A4CD\t0x21C29\n0x8EA6A4CE\t0x21C2C\n0x8EA6A4CF\t0x21C2F\n0x8EA6A4D0\t0x21C2D\n0x8EA6A4D1\t0x21C2E\n0x8EA6A4D2\t0x21D04\n0x8EA6A4D3\t0x21D02\n0x8EA6A4D4\t0x21D01\n0x8EA6A4D5\t0x21D40\n0x8EA6A4D6\t0x21D4A\n0x8EA6A4D7\t0x21D3F\n0x8EA6A4D8\t0x21D4F\n0x8EA6A4D9\t0x21D41\n0x8EA6A4DA\t0x21D4E\n0x8EA6A4DB\t0x21FEB\n0x8EA6A4DC\t0x21FEC\n0x8EA6A4DD\t0x200AC\n0x8EA6A4DE\t0x2205B\n0x8EA6A4DF\t0x22063\n0x8EA6A4E0\t0x2205A\n0x8EA6A4E1\t0x22059\n0x8EA6A4E2\t0x221DC\n0x8EA6A4E3\t0x221DB\n0x8EA6A4E4\t0x221D9\n0x8EA6A4E5\t0x221E0\n0x8EA6A4E6\t0x221DD\n0x8EA6A4E7\t0x20020\n0x8EA6A4E8\t0x223B0\n0x8EA6A4E9\t0x223B1\n0x8EA6A4EA\t0x223B2\n0x8EA6A4EB\t0x223B6\n0x8EA6A4EC\t0x22451\n0x8EA6A4ED\t0x22452\n0x8EA6A4EE\t0x22450\n0x8EA6A4EF\t0x22484\n0x8EA6A4F0\t0x38C9\n0x8EA6A4F1\t0x22483\n0x8EA6A4F2\t0x225C3\n0x8EA6A4F3\t0x225B8\n0x8EA6A4F4\t0x225B9\n0x8EA6A4F5\t0x225B2\n0x8EA6A4F6\t0x22990\n0x8EA6A4F7\t0x22A26\n0x8EA6A4F8\t0x22A29\n0x8EA6A4F9\t0x22A6E\n0x8EA6A4FA\t0x23140\n0x8EA6A4FB\t0x2313E\n0x8EA6A4FC\t0x23141\n0x8EA6A4FD\t0x2335E\n0x8EA6A4FE\t0x233BB\n0x8EA6A5A1\t0x233BC\n0x8EA6A5A2\t0x233B9\n0x8EA6A5A3\t0x2F8EF\n0x8EA6A5A4\t0x23880\n0x8EA6A5A5\t0x3C4F\n0x8EA6A5A6\t0x23945\n0x8EA6A5A7\t0x239BA\n0x8EA6A5A8\t0x239BD\n0x8EA6A5A9\t0x23C56\n0x8EA6A5AA\t0x23C55\n0x8EA6A5AB\t0x23C75\n0x8EA6A5AC\t0x23C77\n0x8EA6A5AD\t0x23C81\n0x8EA6A5AE\t0x2F8FA\n0x8EA6A5AF\t0x23C83\n0x8EA6A5B0\t0x23C8B\n0x8EA6A5B1\t0x23C84\n0x8EA6A5B2\t0x24186\n0x8EA6A5B3\t0x24183\n0x8EA6A5B4\t0x2418B\n0x8EA6A5B5\t0x2456D\n0x8EA6A5B6\t0x24616\n0x8EA6A5B7\t0x24728\n0x8EA6A5B8\t0x248EA\n0x8EA6A5B9\t0x24BD4\n0x8EA6A5BA\t0x24C03\n0x8EA6A5BB\t0x24D15\n0x8EA6A5BC\t0x24F3D\n0x8EA6A5BD\t0x24F3E\n0x8EA6A5BE\t0x25416\n0x8EA6A5BF\t0x2F94C\n0x8EA6A5C0\t0x25606\n0x8EA6A5C1\t0x2574D\n0x8EA6A5C2\t0x26222\n0x8EA6A5C3\t0x26273\n0x8EA6A5C4\t0x2626D\n0x8EA6A5C5\t0x2626E\n0x8EA6A5C6\t0x264B1\n0x8EA6A5C7\t0x2054E\n0x8EA6A5C8\t0x2662D\n0x8EA6A5C9\t0x43CD\n0x8EA6A5CA\t0x268F9\n0x8EA6A5CB\t0x26952\n0x8EA6A5CC\t0x26B00\n0x8EA6A5CD\t0x26AFC\n0x8EA6A5CE\t0x26AFA\n0x8EA6A5CF\t0x4492\n0x8EA6A5D0\t0x26AF7\n0x8EA6A5D1\t0x26AF8\n0x8EA6A5D2\t0x2F990\n0x8EA6A5D3\t0x2F9C4\n0x8EA6A5D4\t0x27C27\n0x8EA6A5D5\t0x28211\n0x8EA6A5D6\t0x200AE\n0x8EA6A5D7\t0x28450\n0x8EA6A5D8\t0x2844F\n0x8EA6A5D9\t0x2844D\n0x8EA6A5DA\t0x28671\n0x8EA6A5DB\t0x2F9E2\n0x8EA6A5DC\t0x28672\n0x8EA6A5DD\t0x28E18\n0x8EA6A5DE\t0x20A44\n0x8EA6A5DF\t0x20021\n0x8EA6A5E0\t0x20067\n0x8EA6A5E1\t0x200AF\n0x8EA6A5E2\t0x200B0\n0x8EA6A5E3\t0x20029\n0x8EA6A5E4\t0x20117\n0x8EA6A5E5\t0x20122\n0x8EA6A5E6\t0x2F803\n0x8EA6A5E7\t0x20025\n0x8EA6A5E8\t0x20128\n0x8EA6A5E9\t0x201FF\n0x8EA6A5EA\t0x201D9\n0x8EA6A5EB\t0x201DB\n0x8EA6A5EC\t0x201DE\n0x8EA6A5ED\t0x201F2\n0x8EA6A5EE\t0x201FE\n0x8EA6A5EF\t0x201F4\n0x8EA6A5F0\t0x201DD\n0x8EA6A5F1\t0x3445\n0x8EA6A5F2\t0x2F804\n0x8EA6A5F3\t0x20201\n0x8EA6A5F4\t0x201DC\n0x8EA6A5F5\t0x2047D\n0x8EA6A5F6\t0x20481\n0x8EA6A5F7\t0x2047E\n0x8EA6A5F8\t0x2047F\n0x8EA6A5F9\t0x204E5\n0x8EA6A5FA\t0x2050F\n0x8EA6A5FB\t0x34B5\n0x8EA6A5FC\t0x2050A\n0x8EA6A5FD\t0x34B6\n0x8EA6A5FE\t0x2050B\n0x8EA6A6A1\t0x20551\n0x8EA6A6A2\t0x20552\n0x8EA6A6A3\t0x20550\n0x8EA6A6A4\t0x205B8\n0x8EA6A6A5\t0x2063D\n0x8EA6A6A6\t0x2063E\n0x8EA6A6A7\t0x2063C\n0x8EA6A6A8\t0x20687\n0x8EA6A6A9\t0x206D7\n0x8EA6A6AA\t0x206DB\n0x8EA6A6AB\t0x206CF\n0x8EA6A6AC\t0x206E0\n0x8EA6A6AD\t0x2084C\n0x8EA6A6AE\t0x20842\n0x8EA6A6AF\t0x208D4\n0x8EA6A6B0\t0x20911\n0x8EA6A6B1\t0x20914\n0x8EA6A6B2\t0x20915\n0x8EA6A6B3\t0x20912\n0x8EA6A6B4\t0x20933\n0x8EA6A6B5\t0x20935\n0x8EA6A6B6\t0x3537\n0x8EA6A6B7\t0x20971\n0x8EA6A6B8\t0x3530\n0x8EA6A6B9\t0x20991\n0x8EA6A6BA\t0x20993\n0x8EA6A6BB\t0x20995\n0x8EA6A6BC\t0x209DC\n0x8EA6A6BD\t0x20A42\n0x8EA6A6BE\t0x20A40\n0x8EA6A6BF\t0x253A6\n0x8EA6A6C0\t0x20AE6\n0x8EA6A6C1\t0x2128F\n0x8EA6A6C2\t0x20B32\n0x8EA6A6C3\t0x2F837\n0x8EA6A6C4\t0x20B31\n0x8EA6A6C5\t0x20BF5\n0x8EA6A6C6\t0x20BCD\n0x8EA6A6C7\t0x20BDE\n0x8EA6A6C8\t0x20BD5\n0x8EA6A6C9\t0x20BDA\n0x8EA6A6CA\t0x20BEE\n0x8EA6A6CB\t0x20BEC\n0x8EA6A6CC\t0x20BCF\n0x8EA6A6CD\t0x20BCE\n0x8EA6A6CE\t0x2F83D\n0x8EA6A6CF\t0x20BCC\n0x8EA6A6D0\t0x20BF3\n0x8EA6A6D1\t0x211C1\n0x8EA6A6D2\t0x211C4\n0x8EA6A6D3\t0x211C6\n0x8EA6A6D4\t0x211B4\n0x8EA6A6D5\t0x211C3\n0x8EA6A6D6\t0x211B8\n0x8EA6A6D7\t0x211BB\n0x8EA6A6D8\t0x211B7\n0x8EA6A6D9\t0x211BC\n0x8EA6A6DA\t0x211BF\n0x8EA6A6DB\t0x211C7\n0x8EA6A6DC\t0x211BE\n0x8EA6A6DD\t0x21260\n0x8EA6A6DE\t0x2125D\n0x8EA6A6DF\t0x21276\n0x8EA6A6E0\t0x2126C\n0x8EA6A6E1\t0x21275\n0x8EA6A6E2\t0x2125B\n0x8EA6A6E3\t0x21271\n0x8EA6A6E4\t0x21273\n0x8EA6A6E5\t0x21261\n0x8EA6A6E6\t0x2125A\n0x8EA6A6E7\t0x21262\n0x8EA6A6E8\t0x21272\n0x8EA6A6E9\t0x2125F\n0x8EA6A6EA\t0x21258\n0x8EA6A6EB\t0x2151E\n0x8EA6A6EC\t0x21558\n0x8EA6A6ED\t0x2158B\n0x8EA6A6EE\t0x2158A\n0x8EA6A6EF\t0x215F4\n0x8EA6A6F0\t0x215F0\n0x8EA6A6F1\t0x216D2\n0x8EA6A6F2\t0x216CD\n0x8EA6A6F3\t0x216CE\n0x8EA6A6F4\t0x216BC\n0x8EA6A6F5\t0x216D0\n0x8EA6A6F6\t0x21946\n0x8EA6A6F7\t0x21947\n0x8EA6A6F8\t0x373E\n0x8EA6A6F9\t0x374D\n0x8EA6A6FA\t0x3751\n0x8EA6A6FB\t0x219CE\n0x8EA6A6FC\t0x219CF\n0x8EA6A6FD\t0x219CC\n0x8EA6A6FE\t0x219CB\n0x8EA6A7A1\t0x2F872\n0x8EA6A7A2\t0x21B60\n0x8EA6A7A3\t0x21B5F\n0x8EA6A7A4\t0x21B5D\n0x8EA6A7A5\t0x21BD4\n0x8EA6A7A6\t0x21C3A\n0x8EA6A7A7\t0x21C38\n0x8EA6A7A8\t0x21C3C\n0x8EA6A7A9\t0x21C36\n0x8EA6A7AA\t0x21D08\n0x8EA6A7AB\t0x21D7E\n0x8EA6A7AC\t0x21D5E\n0x8EA6A7AD\t0x21D6E\n0x8EA6A7AE\t0x21D53\n0x8EA6A7AF\t0x21D70\n0x8EA6A7B0\t0x21D57\n0x8EA6A7B1\t0x21D5D\n0x8EA6A7B2\t0x21D63\n0x8EA6A7B3\t0x21D7A\n0x8EA6A7B4\t0x21D79\n0x8EA6A7B5\t0x21D93\n0x8EA6A7B6\t0x2F881\n0x8EA6A7B7\t0x2201D\n0x8EA6A7B8\t0x22068\n0x8EA6A7B9\t0x22073\n0x8EA6A7BA\t0x22074\n0x8EA6A7BB\t0x22066\n0x8EA6A7BC\t0x2206F\n0x8EA6A7BD\t0x22075\n0x8EA6A7BE\t0x2207A\n0x8EA6A7BF\t0x22070\n0x8EA6A7C0\t0x2206D\n0x8EA6A7C1\t0x22065\n0x8EA6A7C2\t0x2218A\n0x8EA6A7C3\t0x221ED\n0x8EA6A7C4\t0x221E9\n0x8EA6A7C5\t0x221E3\n0x8EA6A7C6\t0x221EF\n0x8EA6A7C7\t0x3873\n0x8EA6A7C8\t0x221EA\n0x8EA6A7C9\t0x22331\n0x8EA6A7CA\t0x2F891\n0x8EA6A7CB\t0x22338\n0x8EA6A7CC\t0x26B20\n0x8EA6A7CD\t0x22335\n0x8EA6A7CE\t0x2233A\n0x8EA6A7CF\t0x22381\n0x8EA6A7D0\t0x22380\n0x8EA6A7D1\t0x223B8\n0x8EA6A7D2\t0x223C1\n0x8EA6A7D3\t0x223BA\n0x8EA6A7D4\t0x22488\n0x8EA6A7D5\t0x224CF\n0x8EA6A7D6\t0x224CA\n0x8EA6A7D7\t0x224C7\n0x8EA6A7D8\t0x224C5\n0x8EA6A7D9\t0x224C8\n0x8EA6A7DA\t0x224D0\n0x8EA6A7DB\t0x224C9\n0x8EA6A7DC\t0x225BB\n0x8EA6A7DD\t0x225B6\n0x8EA6A7DE\t0x225BD\n0x8EA6A7DF\t0x2F89D\n0x8EA6A7E0\t0x225B4\n0x8EA6A7E1\t0x225C1\n0x8EA6A7E2\t0x225D1\n0x8EA6A7E3\t0x225D2\n0x8EA6A7E4\t0x225CC\n0x8EA6A7E5\t0x225D4\n0x8EA6A7E6\t0x225CB\n0x8EA6A7E7\t0x225CE\n0x8EA6A7E8\t0x225D5\n0x8EA6A7E9\t0x225D8\n0x8EA6A7EA\t0x22995\n0x8EA6A7EB\t0x22993\n0x8EA6A7EC\t0x22999\n0x8EA6A7ED\t0x22996\n0x8EA6A7EE\t0x39BE\n0x8EA6A7EF\t0x22A89\n0x8EA6A7F0\t0x22A94\n0x8EA6A7F1\t0x22A91\n0x8EA6A7F2\t0x22A8F\n0x8EA6A7F3\t0x22A84\n0x8EA6A7F4\t0x22A97\n0x8EA6A7F5\t0x22A86\n0x8EA6A7F6\t0x22A85\n0x8EA6A7F7\t0x22A8C\n0x8EA6A7F8\t0x22EF2\n0x8EA6A7F9\t0x22EED\n0x8EA6A7FA\t0x22EEF\n0x8EA6A7FB\t0x230D9\n0x8EA6A7FC\t0x23146\n0x8EA6A7FD\t0x23147\n0x8EA6A7FE\t0x2314B\n0x8EA6A8A1\t0x23150\n0x8EA6A8A2\t0x2314A\n0x8EA6A8A3\t0x2314E\n0x8EA6A8A4\t0x2314C\n0x8EA6A8A5\t0x23148\n0x8EA6A8A6\t0x23363\n0x8EA6A8A7\t0x23361\n0x8EA6A8A8\t0x23362\n0x8EA6A8A9\t0x23360\n0x8EA6A8AA\t0x233C3\n0x8EA6A8AB\t0x233C5\n0x8EA6A8AC\t0x233C1\n0x8EA6A8AD\t0x233D0\n0x8EA6A8AE\t0x2F8DC\n0x8EA6A8AF\t0x23882\n0x8EA6A8B0\t0x3C1E\n0x8EA6A8B1\t0x23886\n0x8EA6A8B2\t0x23884\n0x8EA6A8B3\t0x2394C\n0x8EA6A8B4\t0x23948\n0x8EA6A8B5\t0x239B8\n0x8EA6A8B6\t0x239BF\n0x8EA6A8B7\t0x239C1\n0x8EA6A8B8\t0x239C6\n0x8EA6A8B9\t0x239C5\n0x8EA6A8BA\t0x239C7\n0x8EA6A8BB\t0x239C0\n0x8EA6A8BC\t0x239C3\n0x8EA6A8BD\t0x23AED\n0x8EA6A8BE\t0x23B03\n0x8EA6A8BF\t0x23B22\n0x8EA6A8C0\t0x23B21\n0x8EA6A8C1\t0x23C9F\n0x8EA6A8C2\t0x23C90\n0x8EA6A8C3\t0x23C9E\n0x8EA6A8C4\t0x3CC8\n0x8EA6A8C5\t0x23CA0\n0x8EA6A8C6\t0x23C94\n0x8EA6A8C7\t0x23C95\n0x8EA6A8C8\t0x23CA1\n0x8EA6A8C9\t0x3CC3\n0x8EA6A8CA\t0x3CC7\n0x8EA6A8CB\t0x2419A\n0x8EA6A8CC\t0x24190\n0x8EA6A8CD\t0x244F2\n0x8EA6A8CE\t0x244F3\n0x8EA6A8CF\t0x2456E\n0x8EA6A8D0\t0x245AB\n0x8EA6A8D1\t0x245A9\n0x8EA6A8D2\t0x2461A\n0x8EA6A8D3\t0x24618\n0x8EA6A8D4\t0x2461B\n0x8EA6A8D5\t0x24760\n0x8EA6A8D6\t0x2474C\n0x8EA6A8D7\t0x24742\n0x8EA6A8D8\t0x24733\n0x8EA6A8D9\t0x2473F\n0x8EA6A8DA\t0x2473E\n0x8EA6A8DB\t0x24738\n0x8EA6A8DC\t0x24743\n0x8EA6A8DD\t0x24746\n0x8EA6A8DE\t0x24736\n0x8EA6A8DF\t0x248EE\n0x8EA6A8E0\t0x248F5\n0x8EA6A8E1\t0x248F4\n0x8EA6A8E2\t0x3F56\n0x8EA6A8E3\t0x24C1B\n0x8EA6A8E4\t0x3540\n0x8EA6A8E5\t0x24D2B\n0x8EA6A8E6\t0x24D29\n0x8EA6A8E7\t0x24D2A\n0x8EA6A8E8\t0x24D2E\n0x8EA6A8E9\t0x2503F\n0x8EA6A8EA\t0x250E6\n0x8EA6A8EB\t0x253A7\n0x8EA6A8EC\t0x253A8\n0x8EA6A8ED\t0x25418\n0x8EA6A8EE\t0x25608\n0x8EA6A8EF\t0x25750\n0x8EA6A8F0\t0x25753\n0x8EA6A8F1\t0x25A56\n0x8EA6A8F2\t0x25A55\n0x8EA6A8F3\t0x2626F\n0x8EA6A8F4\t0x2627F\n0x8EA6A8F5\t0x264B3\n0x8EA6A8F6\t0x2663A\n0x8EA6A8F7\t0x26638\n0x8EA6A8F8\t0x26637\n0x8EA6A8F9\t0x26636\n0x8EA6A8FA\t0x20554\n0x8EA6A8FB\t0x2F980\n0x8EA6A8FC\t0x268DD\n0x8EA6A8FD\t0x268FC\n0x8EA6A8FE\t0x268FA\n0x8EA6A9A1\t0x26933\n0x8EA6A9A2\t0x26B04\n0x8EA6A9A3\t0x26B07\n0x8EA6A9A4\t0x26B08\n0x8EA6A9A5\t0x26B06\n0x8EA6A9A6\t0x26B09\n0x8EA6A9A7\t0x2F991\n0x8EA6A9A8\t0x2F993\n0x8EA6A9A9\t0x2721E\n0x8EA6A9AA\t0x2F9D2\n0x8EA6A9AB\t0x2840B\n0x8EA6A9AC\t0x28443\n0x8EA6A9AD\t0x28452\n0x8EA6A9AE\t0x28458\n0x8EA6A9AF\t0x2845E\n0x8EA6A9B0\t0x28668\n0x8EA6A9B1\t0x2868D\n0x8EA6A9B2\t0x28682\n0x8EA6A9B3\t0x2867B\n0x8EA6A9B4\t0x28C58\n0x8EA6A9B5\t0x49BD\n0x8EA6A9B6\t0x2F800\n0x8EA6A9B7\t0x2002C\n0x8EA6A9B8\t0x2002E\n0x8EA6A9B9\t0x2160B\n0x8EA6A9BA\t0x2002D\n0x8EA6A9BB\t0x20069\n0x8EA6A9BC\t0x200B2\n0x8EA6A9BD\t0x200B6\n0x8EA6A9BE\t0x200A9\n0x8EA6A9BF\t0x200ED\n0x8EA6A9C0\t0x20119\n0x8EA6A9C1\t0x2014F\n0x8EA6A9C2\t0x20216\n0x8EA6A9C3\t0x20203\n0x8EA6A9C4\t0x2020E\n0x8EA6A9C5\t0x20204\n0x8EA6A9C6\t0x20207\n0x8EA6A9C7\t0x20210\n0x8EA6A9C8\t0x20227\n0x8EA6A9C9\t0x20228\n0x8EA6A9CA\t0x2020D\n0x8EA6A9CB\t0x20229\n0x8EA6A9CC\t0x2020F\n0x8EA6A9CD\t0x20222\n0x8EA6A9CE\t0x20211\n0x8EA6A9CF\t0x20485\n0x8EA6A9D0\t0x20484\n0x8EA6A9D1\t0x20483\n0x8EA6A9D2\t0x2048A\n0x8EA6A9D3\t0x20486\n0x8EA6A9D4\t0x20510\n0x8EA6A9D5\t0x20558\n0x8EA6A9D6\t0x2055A\n0x8EA6A9D7\t0x2070C\n0x8EA6A9D8\t0x205C4\n0x8EA6A9D9\t0x205C5\n0x8EA6A9DA\t0x20647\n0x8EA6A9DB\t0x20649\n0x8EA6A9DC\t0x2064A\n0x8EA6A9DD\t0x2064B\n0x8EA6A9DE\t0x221BB\n0x8EA6A9DF\t0x2068D\n0x8EA6A9E0\t0x2068B\n0x8EA6A9E1\t0x20707\n0x8EA6A9E2\t0x20706\n0x8EA6A9E3\t0x2F820\n0x8EA6A9E4\t0x206EF\n0x8EA6A9E5\t0x206F0\n0x8EA6A9E6\t0x206ED\n0x8EA6A9E7\t0x206F9\n0x8EA6A9E8\t0x20702\n0x8EA6A9E9\t0x206E7\n0x8EA6A9EA\t0x206F4\n0x8EA6A9EB\t0x206F7\n0x8EA6A9EC\t0x206F1\n0x8EA6A9ED\t0x20853\n0x8EA6A9EE\t0x20855\n0x8EA6A9EF\t0x351A\n0x8EA6A9F0\t0x208DA\n0x8EA6A9F1\t0x208D9\n0x8EA6A9F2\t0x352C\n0x8EA6A9F3\t0x20938\n0x8EA6A9F4\t0x20999\n0x8EA6A9F5\t0x209A2\n0x8EA6A9F6\t0x2099C\n0x8EA6A9F7\t0x2099A\n0x8EA6A9F8\t0x2099B\n0x8EA6A9F9\t0x209E5\n0x8EA6A9FA\t0x209E3\n0x8EA6A9FB\t0x209E1\n0x8EA6A9FC\t0x209E0\n0x8EA6A9FD\t0x209E2\n0x8EA6A9FE\t0x209E4\n0x8EA6AAA2\t0x209E8\n0x8EA6AAA3\t0x2F82F\n0x8EA6AAA4\t0x20A13\n0x8EA6AAA5\t0x20A56\n0x8EA6AAA6\t0x20A4B\n0x8EA6AAA7\t0x20A4A\n0x8EA6AAA8\t0x20A4D\n0x8EA6AAA9\t0x20A4C\n0x8EA6AAAA\t0x3549\n0x8EA6AAAB\t0x20AEA\n0x8EA6AAAC\t0x20AE9\n0x8EA6AAAD\t0x20AEB\n0x8EA6AAAE\t0x20AEC\n0x8EA6AAAF\t0x20B3A\n0x8EA6AAB0\t0x20B3C\n0x8EA6AAB1\t0x20B39\n0x8EA6AAB2\t0x20B3B\n0x8EA6AAB3\t0x20C14\n0x8EA6AAB4\t0x20C0E\n0x8EA6AAB5\t0x20C35\n0x8EA6AAB6\t0x20C0A\n0x8EA6AAB7\t0x20C3F\n0x8EA6AAB8\t0x20C38\n0x8EA6AAB9\t0x357C\n0x8EA6AABA\t0x20C4E\n0x8EA6AABB\t0x20C17\n0x8EA6AABC\t0x2F83F\n0x8EA6AABD\t0x20C1E\n0x8EA6AABE\t0x211B6\n0x8EA6AABF\t0x211CE\n0x8EA6AAC0\t0x211CA\n0x8EA6AAC1\t0x211CB\n0x8EA6AAC2\t0x211CC\n0x8EA6AAC3\t0x211C9\n0x8EA6AAC4\t0x212B4\n0x8EA6AAC5\t0x212AC\n0x8EA6AAC6\t0x21288\n0x8EA6AAC7\t0x21286\n0x8EA6AAC8\t0x2128C\n0x8EA6AAC9\t0x21293\n0x8EA6AACA\t0x2128A\n0x8EA6AACB\t0x212A4\n0x8EA6AACC\t0x21287\n0x8EA6AACD\t0x212A5\n0x8EA6AACE\t0x212A6\n0x8EA6AACF\t0x21285\n0x8EA6AAD0\t0x212A3\n0x8EA6AAD1\t0x2128E\n0x8EA6AAD2\t0x2151F\n0x8EA6AAD3\t0x21563\n0x8EA6AAD4\t0x2158D\n0x8EA6AAD5\t0x215FA\n0x8EA6AAD6\t0x215FB\n0x8EA6AAD7\t0x21609\n0x8EA6AAD8\t0x215FE\n0x8EA6AAD9\t0x215FF\n0x8EA6AADA\t0x21602\n0x8EA6AADB\t0x21604\n0x8EA6AADC\t0x215FD\n0x8EA6AADD\t0x21605\n0x8EA6AADE\t0x216F9\n0x8EA6AADF\t0x216F7\n0x8EA6AAE0\t0x216DB\n0x8EA6AAE1\t0x216DA\n0x8EA6AAE2\t0x21951\n0x8EA6AAE3\t0x21950\n0x8EA6AAE4\t0x21957\n0x8EA6AAE5\t0x219E2\n0x8EA6AAE6\t0x219D8\n0x8EA6AAE7\t0x219DA\n0x8EA6AAE8\t0x219DC\n0x8EA6AAE9\t0x21B20\n0x8EA6AAEA\t0x21B1F\n0x8EA6AAEB\t0x21B69\n0x8EA6AAEC\t0x21BDD\n0x8EA6AAED\t0x21C40\n0x8EA6AAEE\t0x21C41\n0x8EA6AAEF\t0x21C43\n0x8EA6AAF0\t0x21D0D\n0x8EA6AAF1\t0x21D0C\n0x8EA6AAF2\t0x21D87\n0x8EA6AAF3\t0x21DA9\n0x8EA6AAF4\t0x21D92\n0x8EA6AAF5\t0x21D85\n0x8EA6AAF6\t0x37BF\n0x8EA6AAF7\t0x21D8C\n0x8EA6AAF8\t0x21DA2\n0x8EA6AAF9\t0x21D8F\n0x8EA6AAFA\t0x21D8A\n0x8EA6AAFB\t0x37BA\n0x8EA6AAFC\t0x21D8D\n0x8EA6AAFD\t0x21FF1\n0x8EA6AAFE\t0x22037\n0x8EA6ABA1\t0x2208B\n0x8EA6ABA2\t0x22087\n0x8EA6ABA3\t0x22082\n0x8EA6ABA4\t0x2218E\n0x8EA6ABA5\t0x221BC\n0x8EA6ABA6\t0x221F8\n0x8EA6ABA7\t0x221FA\n0x8EA6ABA8\t0x221EB\n0x8EA6ABA9\t0x221F9\n0x8EA6ABAA\t0x221FC\n0x8EA6ABAB\t0x22205\n0x8EA6ABAC\t0x2231B\n0x8EA6ABAD\t0x2231D\n0x8EA6ABAE\t0x2231E\n0x8EA6ABAF\t0x2F892\n0x8EA6ABB0\t0x2233C\n0x8EA6ABB1\t0x2233E\n0x8EA6ABB2\t0x22384\n0x8EA6ABB3\t0x223C8\n0x8EA6ABB4\t0x223C9\n0x8EA6ABB5\t0x223D3\n0x8EA6ABB6\t0x223C7\n0x8EA6ABB7\t0x223D2\n0x8EA6ABB8\t0x22455\n0x8EA6ABB9\t0x2F896\n0x8EA6ABBA\t0x2248C\n0x8EA6ABBB\t0x2248A\n0x8EA6ABBC\t0x224D5\n0x8EA6ABBD\t0x224D3\n0x8EA6ABBE\t0x38D8\n0x8EA6ABBF\t0x224D8\n0x8EA6ABC0\t0x225D0\n0x8EA6ABC1\t0x225EE\n0x8EA6ABC2\t0x225F1\n0x8EA6ABC3\t0x225FB\n0x8EA6ABC4\t0x225D3\n0x8EA6ABC5\t0x225EC\n0x8EA6ABC6\t0x225CD\n0x8EA6ABC7\t0x22615\n0x8EA6ABC8\t0x22626\n0x8EA6ABC9\t0x2260E\n0x8EA6ABCA\t0x22627\n0x8EA6ABCB\t0x2262A\n0x8EA6ABCC\t0x22600\n0x8EA6ABCD\t0x22604\n0x8EA6ABCE\t0x22628\n0x8EA6ABCF\t0x22608\n0x8EA6ABD0\t0x22614\n0x8EA6ABD1\t0x2299B\n0x8EA6ABD2\t0x39B2\n0x8EA6ABD3\t0x229A1\n0x8EA6ABD4\t0x2299D\n0x8EA6ABD5\t0x229A0\n0x8EA6ABD6\t0x2299E\n0x8EA6ABD7\t0x229A2\n0x8EA6ABD8\t0x2299C\n0x8EA6ABD9\t0x22A32\n0x8EA6ABDA\t0x22A34\n0x8EA6ABDB\t0x22A93\n0x8EA6ABDC\t0x22A96\n0x8EA6ABDD\t0x22A90\n0x8EA6ABDE\t0x22AB4\n0x8EA6ABDF\t0x22AB5\n0x8EA6ABE0\t0x2F8B6\n0x8EA6ABE1\t0x22AB6\n0x8EA6ABE2\t0x22AC2\n0x8EA6ABE3\t0x2F8B5\n0x8EA6ABE4\t0x22ABA\n0x8EA6ABE5\t0x22A92\n0x8EA6ABE6\t0x22EFB\n0x8EA6ABE7\t0x22F05\n0x8EA6ABE8\t0x22EF3\n0x8EA6ABE9\t0x22EFE\n0x8EA6ABEA\t0x22EFD\n0x8EA6ABEB\t0x2455D\n0x8EA6ABEC\t0x22EFA\n0x8EA6ABED\t0x23043\n0x8EA6ABEE\t0x23095\n0x8EA6ABEF\t0x23094\n0x8EA6ABF0\t0x3AC4\n0x8EA6ABF1\t0x2316F\n0x8EA6ABF2\t0x23173\n0x8EA6ABF3\t0x2315C\n0x8EA6ABF4\t0x2315B\n0x8EA6ABF5\t0x23166\n0x8EA6ABF6\t0x23174\n0x8EA6ABF7\t0x23163\n0x8EA6ABF8\t0x23167\n0x8EA6ABF9\t0x23160\n0x8EA6ABFA\t0x23162\n0x8EA6ABFB\t0x23171\n0x8EA6ABFC\t0x23172\n0x8EA6ABFD\t0x2315E\n0x8EA6ABFE\t0x23323\n0x8EA6ACA1\t0x23326\n0x8EA6ACA2\t0x23364\n0x8EA6ACA3\t0x2F8D6\n0x8EA6ACA4\t0x233F2\n0x8EA6ACA5\t0x23401\n0x8EA6ACA6\t0x233DD\n0x8EA6ACA7\t0x233DC\n0x8EA6ACA8\t0x233DB\n0x8EA6ACA9\t0x233F3\n0x8EA6ACAA\t0x233FD\n0x8EA6ACAB\t0x233D8\n0x8EA6ACAC\t0x233F8\n0x8EA6ACAD\t0x233FB\n0x8EA6ACAE\t0x23883\n0x8EA6ACAF\t0x2388C\n0x8EA6ACB0\t0x2388E\n0x8EA6ACB1\t0x23949\n0x8EA6ACB2\t0x23954\n0x8EA6ACB3\t0x23952\n0x8EA6ACB4\t0x2394E\n0x8EA6ACB5\t0x23958\n0x8EA6ACB6\t0x23951\n0x8EA6ACB7\t0x23955\n0x8EA6ACB8\t0x23953\n0x8EA6ACB9\t0x23957\n0x8EA6ACBA\t0x23950\n0x8EA6ACBB\t0x2394F\n0x8EA6ACBC\t0x2394D\n0x8EA6ACBD\t0x239D2\n0x8EA6ACBE\t0x239D3\n0x8EA6ACBF\t0x239C9\n0x8EA6ACC0\t0x239D4\n0x8EA6ACC1\t0x23AEF\n0x8EA6ACC2\t0x2F8F8\n0x8EA6ACC3\t0x200B1\n0x8EA6ACC4\t0x23B05\n0x8EA6ACC5\t0x23B04\n0x8EA6ACC6\t0x23B2E\n0x8EA6ACC7\t0x23B2D\n0x8EA6ACC8\t0x23C45\n0x8EA6ACC9\t0x23C5B\n0x8EA6ACCA\t0x23C5A\n0x8EA6ACCB\t0x23C59\n0x8EA6ACCC\t0x23C9D\n0x8EA6ACCD\t0x23C8E\n0x8EA6ACCE\t0x23CBC\n0x8EA6ACCF\t0x23CDD\n0x8EA6ACD0\t0x23CBA\n0x8EA6ACD1\t0x2F8FD\n0x8EA6ACD2\t0x23CD8\n0x8EA6ACD3\t0x23CCB\n0x8EA6ACD4\t0x23CD9\n0x8EA6ACD5\t0x23CDA\n0x8EA6ACD6\t0x23CC4\n0x8EA6ACD7\t0x23CB8\n0x8EA6ACD8\t0x23CBF\n0x8EA6ACD9\t0x23CDB\n0x8EA6ACDA\t0x23CC1\n0x8EA6ACDB\t0x2F8FC\n0x8EA6ACDC\t0x23CC5\n0x8EA6ACDD\t0x2F919\n0x8EA6ACDE\t0x241B1\n0x8EA6ACDF\t0x241AF\n0x8EA6ACE0\t0x2F918\n0x8EA6ACE1\t0x244F7\n0x8EA6ACE2\t0x244F6\n0x8EA6ACE3\t0x244F8\n0x8EA6ACE4\t0x24550\n0x8EA6ACE5\t0x24551\n0x8EA6ACE6\t0x24571\n0x8EA6ACE7\t0x24570\n0x8EA6ACE8\t0x245B0\n0x8EA6ACE9\t0x245AF\n0x8EA6ACEA\t0x245AE\n0x8EA6ACEB\t0x245AD\n0x8EA6ACEC\t0x24625\n0x8EA6ACED\t0x2462C\n0x8EA6ACEE\t0x24622\n0x8EA6ACEF\t0x24633\n0x8EA6ACF0\t0x24634\n0x8EA6ACF1\t0x3E2B\n0x8EA6ACF2\t0x2473A\n0x8EA6ACF3\t0x24740\n0x8EA6ACF4\t0x24768\n0x8EA6ACF5\t0x3E61\n0x8EA6ACF6\t0x24764\n0x8EA6ACF7\t0x2475C\n0x8EA6ACF8\t0x24757\n0x8EA6ACF9\t0x24753\n0x8EA6ACFA\t0x2474F\n0x8EA6ACFB\t0x24751\n0x8EA6ACFC\t0x24754\n0x8EA6ACFD\t0x24766\n0x8EA6ACFE\t0x72DD\n0x8EA6ADA1\t0x3EB2\n0x8EA6ADA2\t0x2490D\n0x8EA6ADA3\t0x24908\n0x8EA6ADA4\t0x2F92B\n0x8EA6ADA5\t0x248FA\n0x8EA6ADA6\t0x24AEA\n0x8EA6ADA7\t0x24B2A\n0x8EA6ADA8\t0x24BBB\n0x8EA6ADA9\t0x24BD5\n0x8EA6ADAA\t0x24BD7\n0x8EA6ADAB\t0x21DA4\n0x8EA6ADAC\t0x200F0\n0x8EA6ADAD\t0x200B5\n0x8EA6ADAE\t0x24C06\n0x8EA6ADAF\t0x24C28\n0x8EA6ADB0\t0x24C22\n0x8EA6ADB1\t0x24C21\n0x8EA6ADB2\t0x22456\n0x8EA6ADB3\t0x24C23\n0x8EA6ADB4\t0x211CD\n0x8EA6ADB5\t0x24D30\n0x8EA6ADB6\t0x24D34\n0x8EA6ADB7\t0x24FC9\n0x8EA6ADB8\t0x24FCA\n0x8EA6ADB9\t0x24FC8\n0x8EA6ADBA\t0x2F93D\n0x8EA6ADBB\t0x25044\n0x8EA6ADBC\t0x250F3\n0x8EA6ADBD\t0x2F941\n0x8EA6ADBE\t0x250F8\n0x8EA6ADBF\t0x250FC\n0x8EA6ADC0\t0x250F6\n0x8EA6ADC1\t0x250FB\n0x8EA6ADC2\t0x250F7\n0x8EA6ADC3\t0x25100\n0x8EA6ADC4\t0x25102\n0x8EA6ADC5\t0x2F940\n0x8EA6ADC6\t0x2F94D\n0x8EA6ADC7\t0x25424\n0x8EA6ADC8\t0x2560D\n0x8EA6ADC9\t0x4129\n0x8EA6ADCA\t0x25762\n0x8EA6ADCB\t0x25930\n0x8EA6ADCC\t0x2592B\n0x8EA6ADCD\t0x2592A\n0x8EA6ADCE\t0x4192\n0x8EA6ADCF\t0x2592D\n0x8EA6ADD0\t0x25ADA\n0x8EA6ADD1\t0x25E28\n0x8EA6ADD2\t0x25F86\n0x8EA6ADD3\t0x26277\n0x8EA6ADD4\t0x2627C\n0x8EA6ADD5\t0x26350\n0x8EA6ADD6\t0x2634E\n0x8EA6ADD7\t0x263F2\n0x8EA6ADD8\t0x264B2\n0x8EA6ADD9\t0x264CE\n0x8EA6ADDA\t0x264CF\n0x8EA6ADDB\t0x264E5\n0x8EA6ADDC\t0x23407\n0x8EA6ADDD\t0x26535\n0x8EA6ADDE\t0x26531\n0x8EA6ADDF\t0x26613\n0x8EA6ADE0\t0x2662B\n0x8EA6ADE1\t0x2662C\n0x8EA6ADE2\t0x26645\n0x8EA6ADE3\t0x26660\n0x8EA6ADE4\t0x26641\n0x8EA6ADE5\t0x26658\n0x8EA6ADE6\t0x26647\n0x8EA6ADE7\t0x2665B\n0x8EA6ADE8\t0x26650\n0x8EA6ADE9\t0x2F982\n0x8EA6ADEA\t0x2665F\n0x8EA6ADEB\t0x2664A\n0x8EA6ADEC\t0x26656\n0x8EA6ADED\t0x26643\n0x8EA6ADEE\t0x26644\n0x8EA6ADEF\t0x26651\n0x8EA6ADF0\t0x268FD\n0x8EA6ADF1\t0x26934\n0x8EA6ADF2\t0x26935\n0x8EA6ADF3\t0x26954\n0x8EA6ADF4\t0x26955\n0x8EA6ADF5\t0x26A0C\n0x8EA6ADF6\t0x26A0B\n0x8EA6ADF7\t0x26A0A\n0x8EA6ADF8\t0x26AF9\n0x8EA6ADF9\t0x26B35\n0x8EA6ADFA\t0x26B24\n0x8EA6ADFB\t0x26B13\n0x8EA6ADFC\t0x26B1C\n0x8EA6ADFD\t0x26B69\n0x8EA6ADFE\t0x26B25\n0x8EA6AEA1\t0x26B21\n0x8EA6AEA2\t0x2F995\n0x8EA6AEA3\t0x2F996\n0x8EA6AEA4\t0x2F998\n0x8EA6AEA5\t0x27220\n0x8EA6AEA6\t0x275A9\n0x8EA6AEA7\t0x275A8\n0x8EA6AEA8\t0x275DE\n0x8EA6AEA9\t0x27609\n0x8EA6AEAA\t0x2760A\n0x8EA6AEAB\t0x2760B\n0x8EA6AEAC\t0x277E3\n0x8EA6AEAD\t0x27807\n0x8EA6AEAE\t0x278B2\n0x8EA6AEAF\t0x278B3\n0x8EA6AEB0\t0x2795D\n0x8EA6AEB1\t0x27E58\n0x8EA6AEB2\t0x27E86\n0x8EA6AEB3\t0x27E87\n0x8EA6AEB4\t0x27FB9\n0x8EA6AEB5\t0x27FB8\n0x8EA6AEB6\t0x2840C\n0x8EA6AEB7\t0x28444\n0x8EA6AEB8\t0x28466\n0x8EA6AEB9\t0x28480\n0x8EA6AEBA\t0x28475\n0x8EA6AEBB\t0x2846D\n0x8EA6AEBC\t0x2847E\n0x8EA6AEBD\t0x28467\n0x8EA6AEBE\t0x28481\n0x8EA6AEBF\t0x28477\n0x8EA6AEC0\t0x286A8\n0x8EA6AEC1\t0x286A2\n0x8EA6AEC2\t0x286A5\n0x8EA6AEC3\t0x2869B\n0x8EA6AEC4\t0x28C57\n0x8EA6AEC5\t0x28E0F\n0x8EA6AEC6\t0x28E32\n0x8EA6AEC7\t0x28E2C\n0x8EA6AEC8\t0x28E33\n0x8EA6AEC9\t0x291E7\n0x8EA6AECA\t0x2006E\n0x8EA6AECB\t0x200B7\n0x8EA6AECC\t0x200F6\n0x8EA6AECD\t0x200F2\n0x8EA6AECE\t0x200F3\n0x8EA6AECF\t0x20517\n0x8EA6AED0\t0x20130\n0x8EA6AED1\t0x20154\n0x8EA6AED2\t0x20153\n0x8EA6AED3\t0x20252\n0x8EA6AED4\t0x2023D\n0x8EA6AED5\t0x2023C\n0x8EA6AED6\t0x20234\n0x8EA6AED7\t0x20233\n0x8EA6AED8\t0x20254\n0x8EA6AED9\t0x2022F\n0x8EA6AEDA\t0x3458\n0x8EA6AEDB\t0x20255\n0x8EA6AEDC\t0x2023F\n0x8EA6AEDD\t0x20237\n0x8EA6AEDE\t0x20256\n0x8EA6AEDF\t0x20261\n0x8EA6AEE0\t0x20258\n0x8EA6AEE1\t0x2F806\n0x8EA6AEE2\t0x2023B\n0x8EA6AEE3\t0x20232\n0x8EA6AEE4\t0x2022E\n0x8EA6AEE5\t0x2023E\n0x8EA6AEE6\t0x2003B\n0x8EA6AEE7\t0x2048C\n0x8EA6AEE8\t0x2048D\n0x8EA6AEE9\t0x20513\n0x8EA6AEEA\t0x20516\n0x8EA6AEEB\t0x20512\n0x8EA6AEEC\t0x2055B\n0x8EA6AEED\t0x2058A\n0x8EA6AEEE\t0x205D7\n0x8EA6AEEF\t0x205CE\n0x8EA6AEF0\t0x20650\n0x8EA6AEF1\t0x20651\n0x8EA6AEF2\t0x2064F\n0x8EA6AEF3\t0x2068E\n0x8EA6AEF4\t0x2068F\n0x8EA6AEF5\t0x206F2\n0x8EA6AEF6\t0x2F821\n0x8EA6AEF7\t0x20728\n0x8EA6AEF8\t0x2071A\n0x8EA6AEF9\t0x20725\n0x8EA6AEFA\t0x2071D\n0x8EA6AEFB\t0x20714\n0x8EA6AEFC\t0x20720\n0x8EA6AEFD\t0x2071F\n0x8EA6AEFE\t0x2071B\n0x8EA6AFA1\t0x20717\n0x8EA6AFA2\t0x20715\n0x8EA6AFA3\t0x2071C\n0x8EA6AFA4\t0x20713\n0x8EA6AFA5\t0x2F825\n0x8EA6AFA6\t0x20860\n0x8EA6AFA7\t0x351C\n0x8EA6AFA8\t0x20866\n0x8EA6AFA9\t0x208E3\n0x8EA6AFAA\t0x208DE\n0x8EA6AFAB\t0x208E0\n0x8EA6AFAC\t0x208E1\n0x8EA6AFAD\t0x2091A\n0x8EA6AFAE\t0x2091B\n0x8EA6AFAF\t0x20918\n0x8EA6AFB0\t0x2091C\n0x8EA6AFB1\t0x20919\n0x8EA6AFB2\t0x20942\n0x8EA6AFB3\t0x20940\n0x8EA6AFB4\t0x2093E\n0x8EA6AFB5\t0x20944\n0x8EA6AFB6\t0x20974\n0x8EA6AFB7\t0x20943\n0x8EA6AFB8\t0x2F82D\n0x8EA6AFB9\t0x209F2\n0x8EA6AFBA\t0x20A1B\n0x8EA6AFBB\t0x20A19\n0x8EA6AFBC\t0x20A1E\n0x8EA6AFBD\t0x2F830\n0x8EA6AFBE\t0x20A5E\n0x8EA6AFBF\t0x20A66\n0x8EA6AFC0\t0x20A5D\n0x8EA6AFC1\t0x20A5A\n0x8EA6AFC2\t0x20A5F\n0x8EA6AFC3\t0x20A60\n0x8EA6AFC4\t0x20A5B\n0x8EA6AFC5\t0x20A5C\n0x8EA6AFC6\t0x20A59\n0x8EA6AFC7\t0x20AF0\n0x8EA6AFC8\t0x20AF1\n0x8EA6AFC9\t0x20B43\n0x8EA6AFCA\t0x20B40\n0x8EA6AFCB\t0x20B42\n0x8EA6AFCC\t0x20B41\n0x8EA6AFCD\t0x20B3F\n0x8EA6AFCE\t0x20C57\n0x8EA6AFCF\t0x20C69\n0x8EA6AFD0\t0x20C6F\n0x8EA6AFD1\t0x20CAB\n0x8EA6AFD2\t0x20C71\n0x8EA6AFD3\t0x20C93\n0x8EA6AFD4\t0x20C56\n0x8EA6AFD5\t0x20C90\n0x8EA6AFD6\t0x20C6D\n0x8EA6AFD7\t0x20C6C\n0x8EA6AFD8\t0x20C70\n0x8EA6AFD9\t0x20C66\n0x8EA6AFDA\t0x20C67\n0x8EA6AFDB\t0x211D7\n0x8EA6AFDC\t0x211B5\n0x8EA6AFDD\t0x211DB\n0x8EA6AFDE\t0x211D8\n0x8EA6AFDF\t0x211D5\n0x8EA6AFE0\t0x211D4\n0x8EA6AFE1\t0x212BA\n0x8EA6AFE2\t0x212B7\n0x8EA6AFE3\t0x212BE\n0x8EA6AFE4\t0x212B9\n0x8EA6AFE5\t0x3637\n0x8EA6AFE6\t0x212E0\n0x8EA6AFE7\t0x212DD\n0x8EA6AFE8\t0x212DE\n0x8EA6AFE9\t0x24918\n0x8EA6AFEA\t0x212D8\n0x8EA6AFEB\t0x212BD\n0x8EA6AFEC\t0x212DB\n0x8EA6AFED\t0x2151D\n0x8EA6AFEE\t0x21525\n0x8EA6AFEF\t0x21721\n0x8EA6AFF0\t0x2170C\n0x8EA6AFF1\t0x21729\n0x8EA6AFF2\t0x2172D\n0x8EA6AFF3\t0x2171B\n0x8EA6AFF4\t0x2170E\n0x8EA6AFF5\t0x2171F\n0x8EA6AFF6\t0x21704\n0x8EA6AFF7\t0x2171C\n0x8EA6AFF8\t0x21705\n0x8EA6AFF9\t0x21706\n0x8EA6AFFA\t0x21720\n0x8EA6AFFB\t0x2170D\n0x8EA6AFFC\t0x2172A\n0x8EA6AFFD\t0x21723\n0x8EA6AFFE\t0x21711\n0x8EA6B0A1\t0x2195C\n0x8EA6B0A2\t0x21966\n0x8EA6B0A3\t0x2195B\n0x8EA6B0A4\t0x2194F\n0x8EA6B0A5\t0x2195E\n0x8EA6B0A6\t0x2195D\n0x8EA6B0A7\t0x219F1\n0x8EA6B0A8\t0x219EA\n0x8EA6B0A9\t0x219F4\n0x8EA6B0AA\t0x219EB\n0x8EA6B0AB\t0x219F0\n0x8EA6B0AC\t0x219FA\n0x8EA6B0AD\t0x219FB\n0x8EA6B0AE\t0x21B28\n0x8EA6B0AF\t0x21B2C\n0x8EA6B0B0\t0x21B6B\n0x8EA6B0B1\t0x21B2A\n0x8EA6B0B2\t0x21B6A\n0x8EA6B0B3\t0x21B6F\n0x8EA6B0B4\t0x21BDB\n0x8EA6B0B5\t0x21BE0\n0x8EA6B0B6\t0x24FD1\n0x8EA6B0B7\t0x21BE3\n0x8EA6B0B8\t0x21BE5\n0x8EA6B0B9\t0x21BE7\n0x8EA6B0BA\t0x21C4D\n0x8EA6B0BB\t0x21C55\n0x8EA6B0BC\t0x21C54\n0x8EA6B0BD\t0x21C53\n0x8EA6B0BE\t0x21C52\n0x8EA6B0BF\t0x21C4E\n0x8EA6B0C0\t0x21C60\n0x8EA6B0C1\t0x221C0\n0x8EA6B0C2\t0x21D0F\n0x8EA6B0C3\t0x21D11\n0x8EA6B0C4\t0x21D13\n0x8EA6B0C5\t0x21DC6\n0x8EA6B0C6\t0x21DB3\n0x8EA6B0C7\t0x21DC7\n0x8EA6B0C8\t0x21DD2\n0x8EA6B0C9\t0x21DB8\n0x8EA6B0CA\t0x21DAC\n0x8EA6B0CB\t0x21DAE\n0x8EA6B0CC\t0x21DCF\n0x8EA6B0CD\t0x21DC5\n0x8EA6B0CE\t0x2F87B\n0x8EA6B0CF\t0x21DCC\n0x8EA6B0D0\t0x21DAB\n0x8EA6B0D1\t0x21DC9\n0x8EA6B0D2\t0x21DB9\n0x8EA6B0D3\t0x21FFB\n0x8EA6B0D4\t0x21FF8\n0x8EA6B0D5\t0x21FF7\n0x8EA6B0D6\t0x21FF9\n0x8EA6B0D7\t0x22020\n0x8EA6B0D8\t0x2203B\n0x8EA6B0D9\t0x22039\n0x8EA6B0DA\t0x2209E\n0x8EA6B0DB\t0x2209A\n0x8EA6B0DC\t0x220AA\n0x8EA6B0DD\t0x220AB\n0x8EA6B0DE\t0x220AF\n0x8EA6B0DF\t0x22096\n0x8EA6B0E0\t0x220A9\n0x8EA6B0E1\t0x220A6\n0x8EA6B0E2\t0x22091\n0x8EA6B0E3\t0x3843\n0x8EA6B0E4\t0x220AE\n0x8EA6B0E5\t0x2209F\n0x8EA6B0E6\t0x220AC\n0x8EA6B0E7\t0x220A0\n0x8EA6B0E8\t0x22192\n0x8EA6B0E9\t0x22191\n0x8EA6B0EA\t0x221BF\n0x8EA6B0EB\t0x22217\n0x8EA6B0EC\t0x2220A\n0x8EA6B0ED\t0x2220C\n0x8EA6B0EE\t0x2234A\n0x8EA6B0EF\t0x22346\n0x8EA6B0F0\t0x22334\n0x8EA6B0F1\t0x22345\n0x8EA6B0F2\t0x22343\n0x8EA6B0F3\t0x22344\n0x8EA6B0F4\t0x2F893\n0x8EA6B0F5\t0x22387\n0x8EA6B0F6\t0x22386\n0x8EA6B0F7\t0x2238A\n0x8EA6B0F8\t0x223DA\n0x8EA6B0F9\t0x223D8\n0x8EA6B0FA\t0x38B4\n0x8EA6B0FB\t0x20518\n0x8EA6B0FC\t0x20134\n0x8EA6B0FD\t0x223D6\n0x8EA6B0FE\t0x223D4\n0x8EA6B1A1\t0x22454\n0x8EA6B1A2\t0x22459\n0x8EA6B1A3\t0x2245A\n0x8EA6B1A4\t0x22457\n0x8EA6B1A5\t0x38E0\n0x8EA6B1A6\t0x224DD\n0x8EA6B1A7\t0x224E9\n0x8EA6B1A8\t0x224E0\n0x8EA6B1A9\t0x22605\n0x8EA6B1AA\t0x22612\n0x8EA6B1AB\t0x22613\n0x8EA6B1AC\t0x22607\n0x8EA6B1AD\t0x22616\n0x8EA6B1AE\t0x22623\n0x8EA6B1AF\t0x22602\n0x8EA6B1B0\t0x2F8A1\n0x8EA6B1B1\t0x2264A\n0x8EA6B1B2\t0x22636\n0x8EA6B1B3\t0x22640\n0x8EA6B1B4\t0x22656\n0x8EA6B1B5\t0x22643\n0x8EA6B1B6\t0x2F8A0\n0x8EA6B1B7\t0x2264B\n0x8EA6B1B8\t0x22646\n0x8EA6B1B9\t0x2263E\n0x8EA6B1BA\t0x22649\n0x8EA6B1BB\t0x229A7\n0x8EA6B1BC\t0x229B6\n0x8EA6B1BD\t0x229A6\n0x8EA6B1BE\t0x229A8\n0x8EA6B1BF\t0x229AC\n0x8EA6B1C0\t0x229A9\n0x8EA6B1C1\t0x229AB\n0x8EA6B1C2\t0x22A38\n0x8EA6B1C3\t0x22A37\n0x8EA6B1C4\t0x22A39\n0x8EA6B1C5\t0x22A41\n0x8EA6B1C6\t0x22A3E\n0x8EA6B1C7\t0x22AC0\n0x8EA6B1C8\t0x22ABB\n0x8EA6B1C9\t0x22ABF\n0x8EA6B1CA\t0x22ABD\n0x8EA6B1CB\t0x22AFE\n0x8EA6B1CC\t0x22B1E\n0x8EA6B1CD\t0x22AEE\n0x8EA6B1CE\t0x22AFC\n0x8EA6B1CF\t0x2F8B7\n0x8EA6B1D0\t0x22AF9\n0x8EA6B1D1\t0x22B06\n0x8EA6B1D2\t0x22AE4\n0x8EA6B1D3\t0x22AE9\n0x8EA6B1D4\t0x22AE5\n0x8EA6B1D5\t0x22B03\n0x8EA6B1D6\t0x22AFD\n0x8EA6B1D7\t0x22B49\n0x8EA6B1D8\t0x22EBE\n0x8EA6B1D9\t0x22F0A\n0x8EA6B1DA\t0x25626\n0x8EA6B1DB\t0x22F18\n0x8EA6B1DC\t0x22F0D\n0x8EA6B1DD\t0x22F0F\n0x8EA6B1DE\t0x22F0E\n0x8EA6B1DF\t0x22F20\n0x8EA6B1E0\t0x23071\n0x8EA6B1E1\t0x23099\n0x8EA6B1E2\t0x230E2\n0x8EA6B1E3\t0x230DF\n0x8EA6B1E4\t0x230DE\n0x8EA6B1E5\t0x23178\n0x8EA6B1E6\t0x23179\n0x8EA6B1E7\t0x3AE4\n0x8EA6B1E8\t0x2317C\n0x8EA6B1E9\t0x2317D\n0x8EA6B1EA\t0x23184\n0x8EA6B1EB\t0x2318B\n0x8EA6B1EC\t0x2318A\n0x8EA6B1ED\t0x2F8D2\n0x8EA6B1EE\t0x23189\n0x8EA6B1EF\t0x2332C\n0x8EA6B1F0\t0x23329\n0x8EA6B1F1\t0x2336C\n0x8EA6B1F2\t0x6804\n0x8EA6B1F3\t0x23409\n0x8EA6B1F4\t0x23408\n0x8EA6B1F5\t0x2340C\n0x8EA6B1F6\t0x2340D\n0x8EA6B1F7\t0x23410\n0x8EA6B1F8\t0x3C26\n0x8EA6B1F9\t0x2389F\n0x8EA6B1FA\t0x23898\n0x8EA6B1FB\t0x238A2\n0x8EA6B1FC\t0x2389A\n0x8EA6B1FD\t0x239D5\n0x8EA6B1FE\t0x239E2\n0x8EA6B2A1\t0x239F0\n0x8EA6B2A2\t0x239EA\n0x8EA6B2A3\t0x239EB\n0x8EA6B2A4\t0x239ED\n0x8EA6B2A5\t0x239E8\n0x8EA6B2A6\t0x239E0\n0x8EA6B2A7\t0x23A85\n0x8EA6B2A8\t0x23A86\n0x8EA6B2A9\t0x23AF0\n0x8EA6B2AA\t0x21E46\n0x8EA6B2AB\t0x23B45\n0x8EA6B2AC\t0x23B38\n0x8EA6B2AD\t0x23B3E\n0x8EA6B2AE\t0x23B42\n0x8EA6B2AF\t0x23B40\n0x8EA6B2B0\t0x23C47\n0x8EA6B2B1\t0x23C5C\n0x8EA6B2B2\t0x23C5E\n0x8EA6B2B3\t0x23CB4\n0x8EA6B2B4\t0x23CC2\n0x8EA6B2B5\t0x23D14\n0x8EA6B2B6\t0x23CE5\n0x8EA6B2B7\t0x23D15\n0x8EA6B2B8\t0x23D11\n0x8EA6B2B9\t0x2F8FF\n0x8EA6B2BA\t0x23CEE\n0x8EA6B2BB\t0x23CE7\n0x8EA6B2BC\t0x23CF5\n0x8EA6B2BD\t0x23CF4\n0x8EA6B2BE\t0x23CE8\n0x8EA6B2BF\t0x23D01\n0x8EA6B2C0\t0x23CEF\n0x8EA6B2C1\t0x23CF1\n0x8EA6B2C2\t0x2F900\n0x8EA6B2C3\t0x241DB\n0x8EA6B2C4\t0x241BF\n0x8EA6B2C5\t0x241DA\n0x8EA6B2C6\t0x241C7\n0x8EA6B2C7\t0x241DD\n0x8EA6B2C8\t0x2F91A\n0x8EA6B2C9\t0x241EB\n0x8EA6B2CA\t0x241E1\n0x8EA6B2CB\t0x241C1\n0x8EA6B2CC\t0x241BD\n0x8EA6B2CD\t0x24507\n0x8EA6B2CE\t0x244FD\n0x8EA6B2CF\t0x24501\n0x8EA6B2D0\t0x2450A\n0x8EA6B2D1\t0x24503\n0x8EA6B2D2\t0x24572\n0x8EA6B2D3\t0x24574\n0x8EA6B2D4\t0x24575\n0x8EA6B2D5\t0x245B2\n0x8EA6B2D6\t0x245B1\n0x8EA6B2D7\t0x245B4\n0x8EA6B2D8\t0x2464C\n0x8EA6B2D9\t0x24642\n0x8EA6B2DA\t0x24640\n0x8EA6B2DB\t0x24649\n0x8EA6B2DC\t0x2463C\n0x8EA6B2DD\t0x2464D\n0x8EA6B2DE\t0x2464A\n0x8EA6B2DF\t0x2463B\n0x8EA6B2E0\t0x24761\n0x8EA6B2E1\t0x24774\n0x8EA6B2E2\t0x2F926\n0x8EA6B2E3\t0x2477F\n0x8EA6B2E4\t0x2477A\n0x8EA6B2E5\t0x24788\n0x8EA6B2E6\t0x2477C\n0x8EA6B2E7\t0x3E6F\n0x8EA6B2E8\t0x24770\n0x8EA6B2E9\t0x2490F\n0x8EA6B2EA\t0x24928\n0x8EA6B2EB\t0x24913\n0x8EA6B2EC\t0x2492A\n0x8EA6B2ED\t0x24AED\n0x8EA6B2EE\t0x24AEF\n0x8EA6B2EF\t0x24B2E\n0x8EA6B2F0\t0x24BC1\n0x8EA6B2F1\t0x24BDD\n0x8EA6B2F2\t0x20B47\n0x8EA6B2F3\t0x24C2D\n0x8EA6B2F4\t0x24C2B\n0x8EA6B2F5\t0x24C35\n0x8EA6B2F6\t0x24C2F\n0x8EA6B2F7\t0x24C31\n0x8EA6B2F8\t0x24C34\n0x8EA6B2F9\t0x2F935\n0x8EA6B2FA\t0x24C30\n0x8EA6B2FB\t0x24D3A\n0x8EA6B2FC\t0x24D39\n0x8EA6B2FD\t0x24D37\n0x8EA6B2FE\t0x24D4B\n0x8EA6B3A1\t0x24D54\n0x8EA6B3A2\t0x24D4D\n0x8EA6B3A3\t0x24D51\n0x8EA6B3A4\t0x24D47\n0x8EA6B3A5\t0x24F27\n0x8EA6B3A6\t0x24F50\n0x8EA6B3A7\t0x24F4D\n0x8EA6B3A8\t0x24F4E\n0x8EA6B3A9\t0x24F54\n0x8EA6B3AA\t0x24FD2\n0x8EA6B3AB\t0x24FCE\n0x8EA6B3AC\t0x2504B\n0x8EA6B3AD\t0x25049\n0x8EA6B3AE\t0x25105\n0x8EA6B3AF\t0x2510F\n0x8EA6B3B0\t0x25119\n0x8EA6B3B1\t0x2F943\n0x8EA6B3B2\t0x25106\n0x8EA6B3B3\t0x2510C\n0x8EA6B3B4\t0x25129\n0x8EA6B3B5\t0x25104\n0x8EA6B3B6\t0x25108\n0x8EA6B3B7\t0x25125\n0x8EA6B3B8\t0x401C\n0x8EA6B3B9\t0x25103\n0x8EA6B3BA\t0x25127\n0x8EA6B3BB\t0x25110\n0x8EA6B3BC\t0x2510A\n0x8EA6B3BD\t0x2F942\n0x8EA6B3BE\t0x26B5D\n0x8EA6B3BF\t0x253AA\n0x8EA6B3C0\t0x253AB\n0x8EA6B3C1\t0x253A9\n0x8EA6B3C2\t0x25441\n0x8EA6B3C3\t0x2543A\n0x8EA6B3C4\t0x2543C\n0x8EA6B3C5\t0x2542B\n0x8EA6B3C6\t0x25449\n0x8EA6B3C7\t0x25615\n0x8EA6B3C8\t0x4100\n0x8EA6B3C9\t0x25616\n0x8EA6B3CA\t0x2F953\n0x8EA6B3CB\t0x25631\n0x8EA6B3CC\t0x23C4A\n0x8EA6B3CD\t0x2573C\n0x8EA6B3CE\t0x2577C\n0x8EA6B3CF\t0x2576D\n0x8EA6B3D0\t0x2576A\n0x8EA6B3D1\t0x25763\n0x8EA6B3D2\t0x2576B\n0x8EA6B3D3\t0x2577B\n0x8EA6B3D4\t0x25764\n0x8EA6B3D5\t0x2577A\n0x8EA6B3D6\t0x25769\n0x8EA6B3D7\t0x2576F\n0x8EA6B3D8\t0x25937\n0x8EA6B3D9\t0x25935\n0x8EA6B3DA\t0x2593C\n0x8EA6B3DB\t0x25936\n0x8EA6B3DC\t0x2593D\n0x8EA6B3DD\t0x2593E\n0x8EA6B3DE\t0x25AE1\n0x8EA6B3DF\t0x25AE0\n0x8EA6B3E0\t0x25E2D\n0x8EA6B3E1\t0x25E2B\n0x8EA6B3E2\t0x25F8D\n0x8EA6B3E3\t0x25F92\n0x8EA6B3E4\t0x42B6\n0x8EA6B3E5\t0x25F8E\n0x8EA6B3E6\t0x2F96B\n0x8EA6B3E7\t0x25F91\n0x8EA6B3E8\t0x25F96\n0x8EA6B3E9\t0x2627B\n0x8EA6B3EA\t0x26278\n0x8EA6B3EB\t0x26281\n0x8EA6B3EC\t0x26296\n0x8EA6B3ED\t0x262A3\n0x8EA6B3EE\t0x26295\n0x8EA6B3EF\t0x26297\n0x8EA6B3F0\t0x26354\n0x8EA6B3F1\t0x26352\n0x8EA6B3F2\t0x263F5\n0x8EA6B3F3\t0x26400\n0x8EA6B3F4\t0x263FB\n0x8EA6B3F5\t0x263F4\n0x8EA6B3F6\t0x263F6\n0x8EA6B3F7\t0x264E8\n0x8EA6B3F8\t0x264EA\n0x8EA6B3F9\t0x2663E\n0x8EA6B3FA\t0x2663D\n0x8EA6B3FB\t0x2663B\n0x8EA6B3FC\t0x26680\n0x8EA6B3FD\t0x43E4\n0x8EA6B3FE\t0x26688\n0x8EA6B4A1\t0x26681\n0x8EA6B4A2\t0x26682\n0x8EA6B4A3\t0x266CE\n0x8EA6B4A4\t0x26683\n0x8EA6B4A5\t0x26677\n0x8EA6B4A6\t0x26679\n0x8EA6B4A7\t0x26673\n0x8EA6B4A8\t0x2666D\n0x8EA6B4A9\t0x26670\n0x8EA6B4AA\t0x2668D\n0x8EA6B4AB\t0x26675\n0x8EA6B4AC\t0x2668C\n0x8EA6B4AD\t0x2666A\n0x8EA6B4AE\t0x26691\n0x8EA6B4AF\t0x26689\n0x8EA6B4B0\t0x2668E\n0x8EA6B4B1\t0x212DC\n0x8EA6B4B2\t0x268FF\n0x8EA6B4B3\t0x26959\n0x8EA6B4B4\t0x269C7\n0x8EA6B4B5\t0x26A12\n0x8EA6B4B6\t0x26A14\n0x8EA6B4B7\t0x26A13\n0x8EA6B4B8\t0x26ACB\n0x8EA6B4B9\t0x26B42\n0x8EA6B4BA\t0x44AD\n0x8EA6B4BB\t0x26B3D\n0x8EA6B4BC\t0x82FF\n0x8EA6B4BD\t0x26B40\n0x8EA6B4BE\t0x26B44\n0x8EA6B4BF\t0x26B62\n0x8EA6B4C0\t0x26B43\n0x8EA6B4C1\t0x26B3F\n0x8EA6B4C2\t0x26B45\n0x8EA6B4C3\t0x26B3C\n0x8EA6B4C4\t0x2F997\n0x8EA6B4C5\t0x26B46\n0x8EA6B4C6\t0x26B47\n0x8EA6B4C7\t0x2F9B3\n0x8EA6B4C8\t0x2719E\n0x8EA6B4C9\t0x2719D\n0x8EA6B4CA\t0x2722C\n0x8EA6B4CB\t0x27229\n0x8EA6B4CC\t0x2722F\n0x8EA6B4CD\t0x2722E\n0x8EA6B4CE\t0x27230\n0x8EA6B4CF\t0x275E1\n0x8EA6B4D0\t0x275E2\n0x8EA6B4D1\t0x2760E\n0x8EA6B4D2\t0x27619\n0x8EA6B4D3\t0x27612\n0x8EA6B4D4\t0x278B4\n0x8EA6B4D5\t0x27BDA\n0x8EA6B4D6\t0x27D26\n0x8EA6B4D7\t0x27E59\n0x8EA6B4D8\t0x27E5A\n0x8EA6B4D9\t0x27E88\n0x8EA6B4DA\t0x27FC0\n0x8EA6B4DB\t0x27FBA\n0x8EA6B4DC\t0x282A0\n0x8EA6B4DD\t0x2F9DD\n0x8EA6B4DE\t0x282A2\n0x8EA6B4DF\t0x28486\n0x8EA6B4E0\t0x8FEC\n0x8EA6B4E1\t0x2849D\n0x8EA6B4E2\t0x28488\n0x8EA6B4E3\t0x2848F\n0x8EA6B4E4\t0x2848E\n0x8EA6B4E5\t0x2849B\n0x8EA6B4E6\t0x286C1\n0x8EA6B4E7\t0x286C3\n0x8EA6B4E8\t0x286C4\n0x8EA6B4E9\t0x28696\n0x8EA6B4EA\t0x286C7\n0x8EA6B4EB\t0x286C6\n0x8EA6B4EC\t0x286BF\n0x8EA6B4ED\t0x48C3\n0x8EA6B4EE\t0x2890F\n0x8EA6B4EF\t0x28E55\n0x8EA6B4F0\t0x28E42\n0x8EA6B4F1\t0x28E46\n0x8EA6B4F2\t0x28E4B\n0x8EA6B4F3\t0x28E43\n0x8EA6B4F4\t0x28E53\n0x8EA6B4F5\t0x28E48\n0x8EA6B4F6\t0x28E49\n0x8EA6B4F7\t0x28E4A\n0x8EA6B4F8\t0x28E4E\n0x8EA6B4F9\t0x24BDE\n0x8EA6B4FA\t0x20691\n0x8EA6B4FB\t0x2944B\n0x8EA6B4FC\t0x29680\n0x8EA6B4FD\t0x29681\n0x8EA6B4FE\t0x29683\n0x8EA6B5A1\t0x2028A\n0x8EA6B5A2\t0x29682\n0x8EA6B5A3\t0x22342\n0x8EA6B5A4\t0x20922\n0x8EA6B5A5\t0x20070\n0x8EA6B5A6\t0x20071\n0x8EA6B5A7\t0x200BC\n0x8EA6B5A8\t0x21D18\n0x8EA6B5A9\t0x200BE\n0x8EA6B5AA\t0x200BA\n0x8EA6B5AB\t0x200F8\n0x8EA6B5AC\t0x20137\n0x8EA6B5AD\t0x20135\n0x8EA6B5AE\t0x20AFC\n0x8EA6B5AF\t0x20156\n0x8EA6B5B0\t0x20159\n0x8EA6B5B1\t0x2015E\n0x8EA6B5B2\t0x2026D\n0x8EA6B5B3\t0x20291\n0x8EA6B5B4\t0x20292\n0x8EA6B5B5\t0x20268\n0x8EA6B5B6\t0x20266\n0x8EA6B5B7\t0x20273\n0x8EA6B5B8\t0x3467\n0x8EA6B5B9\t0x20296\n0x8EA6B5BA\t0x2028B\n0x8EA6B5BB\t0x2028C\n0x8EA6B5BC\t0x20496\n0x8EA6B5BD\t0x204EE\n0x8EA6B5BE\t0x2051C\n0x8EA6B5BF\t0x2051A\n0x8EA6B5C0\t0x20519\n0x8EA6B5C1\t0x2051B\n0x8EA6B5C2\t0x2055D\n0x8EA6B5C3\t0x2055E\n0x8EA6B5C4\t0x2F818\n0x8EA6B5C5\t0x205DC\n0x8EA6B5C6\t0x205E2\n0x8EA6B5C7\t0x20652\n0x8EA6B5C8\t0x20692\n0x8EA6B5C9\t0x20730\n0x8EA6B5CA\t0x20752\n0x8EA6B5CB\t0x20742\n0x8EA6B5CC\t0x20741\n0x8EA6B5CD\t0x20745\n0x8EA6B5CE\t0x20737\n0x8EA6B5CF\t0x20740\n0x8EA6B5D0\t0x2073F\n0x8EA6B5D1\t0x2073D\n0x8EA6B5D2\t0x20738\n0x8EA6B5D3\t0x2073A\n0x8EA6B5D4\t0x20749\n0x8EA6B5D5\t0x2086B\n0x8EA6B5D6\t0x20878\n0x8EA6B5D7\t0x20879\n0x8EA6B5D8\t0x2F826\n0x8EA6B5D9\t0x2086C\n0x8EA6B5DA\t0x208E9\n0x8EA6B5DB\t0x208E6\n0x8EA6B5DC\t0x208E5\n0x8EA6B5DD\t0x208EA\n0x8EA6B5DE\t0x208E7\n0x8EA6B5DF\t0x208E8\n0x8EA6B5E0\t0x2091F\n0x8EA6B5E1\t0x2094B\n0x8EA6B5E2\t0x2094A\n0x8EA6B5E3\t0x20953\n0x8EA6B5E4\t0x20976\n0x8EA6B5E5\t0x209A3\n0x8EA6B5E6\t0x209A4\n0x8EA6B5E7\t0x209F6\n0x8EA6B5E8\t0x209F3\n0x8EA6B5E9\t0x209F9\n0x8EA6B5EA\t0x209F7\n0x8EA6B5EB\t0x209FC\n0x8EA6B5EC\t0x20A1D\n0x8EA6B5ED\t0x20A6D\n0x8EA6B5EE\t0x20A71\n0x8EA6B5EF\t0x20A6C\n0x8EA6B5F0\t0x20A6E\n0x8EA6B5F1\t0x20A70\n0x8EA6B5F2\t0x20A6F\n0x8EA6B5F3\t0x20A67\n0x8EA6B5F4\t0x20A68\n0x8EA6B5F5\t0x20AFA\n0x8EA6B5F6\t0x20AF9\n0x8EA6B5F7\t0x20B4E\n0x8EA6B5F8\t0x53DE\n0x8EA6B5F9\t0x20B4D\n0x8EA6B5FA\t0x20B4F\n0x8EA6B5FB\t0x20B4A\n0x8EA6B5FC\t0x20B4C\n0x8EA6B5FD\t0x3596\n0x8EA6B5FE\t0x2F842\n0x8EA6B6A1\t0x20CEE\n0x8EA6B6A2\t0x20CB2\n0x8EA6B6A3\t0x20CC0\n0x8EA6B6A4\t0x20CC1\n0x8EA6B6A5\t0x20CF4\n0x8EA6B6A6\t0x20CC8\n0x8EA6B6A7\t0x20CC5\n0x8EA6B6A8\t0x20CC6\n0x8EA6B6A9\t0x20CAD\n0x8EA6B6AA\t0x211E2\n0x8EA6B6AB\t0x211EA\n0x8EA6B6AC\t0x211E3\n0x8EA6B6AD\t0x211E1\n0x8EA6B6AE\t0x212F7\n0x8EA6B6AF\t0x21301\n0x8EA6B6B0\t0x21312\n0x8EA6B6B1\t0x212F6\n0x8EA6B6B2\t0x212F1\n0x8EA6B6B3\t0x2131F\n0x8EA6B6B4\t0x212EE\n0x8EA6B6B5\t0x2F852\n0x8EA6B6B6\t0x212F3\n0x8EA6B6B7\t0x21315\n0x8EA6B6B8\t0x21316\n0x8EA6B6B9\t0x21317\n0x8EA6B6BA\t0x212F8\n0x8EA6B6BB\t0x21319\n0x8EA6B6BC\t0x212F2\n0x8EA6B6BD\t0x212F4\n0x8EA6B6BE\t0x212F5\n0x8EA6B6BF\t0x21313\n0x8EA6B6C0\t0x21306\n0x8EA6B6C1\t0x21526\n0x8EA6B6C2\t0x21524\n0x8EA6B6C3\t0x2155A\n0x8EA6B6C4\t0x22EC8\n0x8EA6B6C5\t0x21597\n0x8EA6B6C6\t0x21595\n0x8EA6B6C7\t0x2159A\n0x8EA6B6C8\t0x2161F\n0x8EA6B6C9\t0x20AFB\n0x8EA6B6CA\t0x21629\n0x8EA6B6CB\t0x21620\n0x8EA6B6CC\t0x2F862\n0x8EA6B6CD\t0x2F863\n0x8EA6B6CE\t0x2174C\n0x8EA6B6CF\t0x21730\n0x8EA6B6D0\t0x21738\n0x8EA6B6D1\t0x2173D\n0x8EA6B6D2\t0x21751\n0x8EA6B6D3\t0x2174F\n0x8EA6B6D4\t0x2174A\n0x8EA6B6D5\t0x21734\n0x8EA6B6D6\t0x21736\n0x8EA6B6D7\t0x5A30\n0x8EA6B6D8\t0x2196A\n0x8EA6B6D9\t0x21968\n0x8EA6B6DA\t0x21A1C\n0x8EA6B6DB\t0x21A0E\n0x8EA6B6DC\t0x21A1E\n0x8EA6B6DD\t0x3759\n0x8EA6B6DE\t0x21A09\n0x8EA6B6DF\t0x21A08\n0x8EA6B6E0\t0x21A13\n0x8EA6B6E1\t0x21A01\n0x8EA6B6E2\t0x21A0F\n0x8EA6B6E3\t0x21A14\n0x8EA6B6E4\t0x21A06\n0x8EA6B6E5\t0x21A07\n0x8EA6B6E6\t0x5BB2\n0x8EA6B6E7\t0x2F873\n0x8EA6B6E8\t0x3776\n0x8EA6B6E9\t0x21B79\n0x8EA6B6EA\t0x21BEA\n0x8EA6B6EB\t0x21BED\n0x8EA6B6EC\t0x21BE9\n0x8EA6B6ED\t0x21BEE\n0x8EA6B6EE\t0x21C68\n0x8EA6B6EF\t0x21C64\n0x8EA6B6F0\t0x21C67\n0x8EA6B6F1\t0x21C72\n0x8EA6B6F2\t0x21C62\n0x8EA6B6F3\t0x21C74\n0x8EA6B6F4\t0x21C79\n0x8EA6B6F5\t0x21D19\n0x8EA6B6F6\t0x21D17\n0x8EA6B6F7\t0x21D15\n0x8EA6B6F8\t0x21D16\n0x8EA6B6F9\t0x21DE6\n0x8EA6B6FA\t0x262A4\n0x8EA6B6FB\t0x21DEE\n0x8EA6B6FC\t0x37D2\n0x8EA6B6FD\t0x21DDF\n0x8EA6B6FE\t0x21DE4\n0x8EA6B7A1\t0x21DDA\n0x8EA6B7A2\t0x21DEA\n0x8EA6B7A3\t0x21DED\n0x8EA6B7A4\t0x21DE3\n0x8EA6B7A5\t0x21DE9\n0x8EA6B7A6\t0x21FFD\n0x8EA6B7A7\t0x20657\n0x8EA6B7A8\t0x22021\n0x8EA6B7A9\t0x220C6\n0x8EA6B7AA\t0x220B8\n0x8EA6B7AB\t0x220CB\n0x8EA6B7AC\t0x2F885\n0x8EA6B7AD\t0x220BD\n0x8EA6B7AE\t0x220B5\n0x8EA6B7AF\t0x220BB\n0x8EA6B7B0\t0x220BF\n0x8EA6B7B1\t0x220BE\n0x8EA6B7B2\t0x220B2\n0x8EA6B7B3\t0x220C1\n0x8EA6B7B4\t0x220C2\n0x8EA6B7B5\t0x22199\n0x8EA6B7B6\t0x221C6\n0x8EA6B7B7\t0x2222C\n0x8EA6B7B8\t0x2222D\n0x8EA6B7B9\t0x22225\n0x8EA6B7BA\t0x2221E\n0x8EA6B7BB\t0x2221F\n0x8EA6B7BC\t0x22223\n0x8EA6B7BD\t0x22350\n0x8EA6B7BE\t0x2234E\n0x8EA6B7BF\t0x2234D\n0x8EA6B7C0\t0x22352\n0x8EA6B7C1\t0x223E9\n0x8EA6B7C2\t0x223EC\n0x8EA6B7C3\t0x223E8\n0x8EA6B7C4\t0x22458\n0x8EA6B7C5\t0x2245C\n0x8EA6B7C6\t0x2245B\n0x8EA6B7C7\t0x2248F\n0x8EA6B7C8\t0x23972\n0x8EA6B7C9\t0x224F6\n0x8EA6B7CA\t0x22500\n0x8EA6B7CB\t0x224FC\n0x8EA6B7CC\t0x224F8\n0x8EA6B7CD\t0x224EA\n0x8EA6B7CE\t0x224FE\n0x8EA6B7CF\t0x224F7\n0x8EA6B7D0\t0x224FD\n0x8EA6B7D1\t0x22670\n0x8EA6B7D2\t0x22662\n0x8EA6B7D3\t0x22644\n0x8EA6B7D4\t0x3920\n0x8EA6B7D5\t0x2264D\n0x8EA6B7D6\t0x2264C\n0x8EA6B7D7\t0x2263F\n0x8EA6B7D8\t0x22666\n0x8EA6B7D9\t0x22635\n0x8EA6B7DA\t0x3929\n0x8EA6B7DB\t0x22634\n0x8EA6B7DC\t0x2268D\n0x8EA6B7DD\t0x22684\n0x8EA6B7DE\t0x3938\n0x8EA6B7DF\t0x22686\n0x8EA6B7E0\t0x22689\n0x8EA6B7E1\t0x22687\n0x8EA6B7E2\t0x22683\n0x8EA6B7E3\t0x22675\n0x8EA6B7E4\t0x22679\n0x8EA6B7E5\t0x226AF\n0x8EA6B7E6\t0x226B0\n0x8EA6B7E7\t0x229B7\n0x8EA6B7E8\t0x229BB\n0x8EA6B7E9\t0x229B9\n0x8EA6B7EA\t0x22A46\n0x8EA6B7EB\t0x22A47\n0x8EA6B7EC\t0x22A45\n0x8EA6B7ED\t0x22AEA\n0x8EA6B7EE\t0x22AF6\n0x8EA6B7EF\t0x22B68\n0x8EA6B7F0\t0x22B39\n0x8EA6B7F1\t0x2F8B9\n0x8EA6B7F2\t0x22B3D\n0x8EA6B7F3\t0x22B3B\n0x8EA6B7F4\t0x22B4D\n0x8EA6B7F5\t0x22B30\n0x8EA6B7F6\t0x22B4A\n0x8EA6B7F7\t0x22B3E\n0x8EA6B7F8\t0x22B40\n0x8EA6B7F9\t0x22B4C\n0x8EA6B7FA\t0x22B47\n0x8EA6B7FB\t0x22B38\n0x8EA6B7FC\t0x22B52\n0x8EA6B7FD\t0x22B3A\n0x8EA6B7FE\t0x22B53\n0x8EA6B8A1\t0x22EC4\n0x8EA6B8A2\t0x22EC1\n0x8EA6B8A3\t0x22F1C\n0x8EA6B8A4\t0x22F1D\n0x8EA6B8A5\t0x22F2A\n0x8EA6B8A6\t0x22F1E\n0x8EA6B8A7\t0x22F2F\n0x8EA6B8A8\t0x22F22\n0x8EA6B8A9\t0x22F2E\n0x8EA6B8AA\t0x22F25\n0x8EA6B8AB\t0x3A89\n0x8EA6B8AC\t0x3AB0\n0x8EA6B8AD\t0x2304A\n0x8EA6B8AE\t0x2304B\n0x8EA6B8AF\t0x23076\n0x8EA6B8B0\t0x3ABF\n0x8EA6B8B1\t0x230E8\n0x8EA6B8B2\t0x230EF\n0x8EA6B8B3\t0x230E9\n0x8EA6B8B4\t0x3AC5\n0x8EA6B8B5\t0x230EA\n0x8EA6B8B6\t0x2F8CC\n0x8EA6B8B7\t0x3AEA\n0x8EA6B8B8\t0x2319B\n0x8EA6B8B9\t0x2319E\n0x8EA6B8BA\t0x23193\n0x8EA6B8BB\t0x231A7\n0x8EA6B8BC\t0x2319C\n0x8EA6B8BD\t0x231A0\n0x8EA6B8BE\t0x2319A\n0x8EA6B8BF\t0x231AB\n0x8EA6B8C0\t0x231BE\n0x8EA6B8C1\t0x231A9\n0x8EA6B8C2\t0x2332D\n0x8EA6B8C3\t0x2336E\n0x8EA6B8C4\t0x23444\n0x8EA6B8C5\t0x2343D\n0x8EA6B8C6\t0x2343A\n0x8EA6B8C7\t0x23468\n0x8EA6B8C8\t0x2343C\n0x8EA6B8C9\t0x2346A\n0x8EA6B8CA\t0x2F8E0\n0x8EA6B8CB\t0x23438\n0x8EA6B8CC\t0x23465\n0x8EA6B8CD\t0x23439\n0x8EA6B8CE\t0x2346D\n0x8EA6B8CF\t0x23436\n0x8EA6B8D0\t0x2F8E3\n0x8EA6B8D1\t0x2343E\n0x8EA6B8D2\t0x2347E\n0x8EA6B8D3\t0x23437\n0x8EA6B8D4\t0x23899\n0x8EA6B8D5\t0x238A9\n0x8EA6B8D6\t0x238AD\n0x8EA6B8D7\t0x238A7\n0x8EA6B8D8\t0x238A8\n0x8EA6B8D9\t0x23966\n0x8EA6B8DA\t0x23969\n0x8EA6B8DB\t0x2396D\n0x8EA6B8DC\t0x23967\n0x8EA6B8DD\t0x2396B\n0x8EA6B8DE\t0x2396A\n0x8EA6B8DF\t0x239EE\n0x8EA6B8E0\t0x23A01\n0x8EA6B8E1\t0x23A03\n0x8EA6B8E2\t0x239F4\n0x8EA6B8E3\t0x239FB\n0x8EA6B8E4\t0x3C37\n0x8EA6B8E5\t0x239F6\n0x8EA6B8E6\t0x239FC\n0x8EA6B8E7\t0x23AF4\n0x8EA6B8E8\t0x23B08\n0x8EA6B8E9\t0x23B0A\n0x8EA6B8EA\t0x23B09\n0x8EA6B8EB\t0x23B6D\n0x8EA6B8EC\t0x23B62\n0x8EA6B8ED\t0x23B41\n0x8EA6B8EE\t0x23B5E\n0x8EA6B8EF\t0x23B5C\n0x8EA6B8F0\t0x23CF3\n0x8EA6B8F1\t0x23D26\n0x8EA6B8F2\t0x3CE4\n0x8EA6B8F3\t0x23D39\n0x8EA6B8F4\t0x2F904\n0x8EA6B8F5\t0x23D6C\n0x8EA6B8F6\t0x23D2B\n0x8EA6B8F7\t0x23D2E\n0x8EA6B8F8\t0x23D3B\n0x8EA6B8F9\t0x23D5E\n0x8EA6B8FA\t0x23DFB\n0x8EA6B8FB\t0x23D27\n0x8EA6B8FC\t0x23D24\n0x8EA6B8FD\t0x23D69\n0x8EA6B8FE\t0x23D30\n0x8EA6B9A1\t0x2F905\n0x8EA6B9A2\t0x23D62\n0x8EA6B9A3\t0x23D38\n0x8EA6B9A4\t0x23D35\n0x8EA6B9A5\t0x23D2A\n0x8EA6B9A6\t0x23D2C\n0x8EA6B9A7\t0x23D68\n0x8EA6B9A8\t0x23D31\n0x8EA6B9A9\t0x23D2F\n0x8EA6B9AA\t0x23D2D\n0x8EA6B9AB\t0x23D3A\n0x8EA6B9AC\t0x23D36\n0x8EA6B9AD\t0x2F903\n0x8EA6B9AE\t0x23D21\n0x8EA6B9AF\t0x23D3C\n0x8EA6B9B0\t0x23D20\n0x8EA6B9B1\t0x23D64\n0x8EA6B9B2\t0x23D3E\n0x8EA6B9B3\t0x3CE8\n0x8EA6B9B4\t0x241F7\n0x8EA6B9B5\t0x24212\n0x8EA6B9B6\t0x241F1\n0x8EA6B9B7\t0x241F5\n0x8EA6B9B8\t0x24222\n0x8EA6B9B9\t0x241F2\n0x8EA6B9BA\t0x241DF\n0x8EA6B9BB\t0x24215\n0x8EA6B9BC\t0x24216\n0x8EA6B9BD\t0x2457A\n0x8EA6B9BE\t0x24576\n0x8EA6B9BF\t0x245BE\n0x8EA6B9C0\t0x3E20\n0x8EA6B9C1\t0x245BD\n0x8EA6B9C2\t0x24609\n0x8EA6B9C3\t0x24608\n0x8EA6B9C4\t0x24657\n0x8EA6B9C5\t0x247A3\n0x8EA6B9C6\t0x247BF\n0x8EA6B9C7\t0x247B8\n0x8EA6B9C8\t0x247AF\n0x8EA6B9C9\t0x2479C\n0x8EA6B9CA\t0x247A5\n0x8EA6B9CB\t0x24772\n0x8EA6B9CC\t0x24775\n0x8EA6B9CD\t0x2479D\n0x8EA6B9CE\t0x24799\n0x8EA6B9CF\t0x247B9\n0x8EA6B9D0\t0x2494E\n0x8EA6B9D1\t0x24939\n0x8EA6B9D2\t0x2493B\n0x8EA6B9D3\t0x24935\n0x8EA6B9D4\t0x2493C\n0x8EA6B9D5\t0x24955\n0x8EA6B9D6\t0x24AF0\n0x8EA6B9D7\t0x24AF3\n0x8EA6B9D8\t0x24AF4\n0x8EA6B9D9\t0x24B3B\n0x8EA6B9DA\t0x24B3C\n0x8EA6B9DB\t0x24B3A\n0x8EA6B9DC\t0x24B36\n0x8EA6B9DD\t0x24C07\n0x8EA6B9DE\t0x20CEB\n0x8EA6B9DF\t0x24C55\n0x8EA6B9E0\t0x24C50\n0x8EA6B9E1\t0x24C4F\n0x8EA6B9E2\t0x24C52\n0x8EA6B9E3\t0x24C56\n0x8EA6B9E4\t0x200BD\n0x8EA6B9E5\t0x24C32\n0x8EA6B9E6\t0x24D63\n0x8EA6B9E7\t0x24D6B\n0x8EA6B9E8\t0x24D66\n0x8EA6B9E9\t0x24D57\n0x8EA6B9EA\t0x24D5D\n0x8EA6B9EB\t0x3F86\n0x8EA6B9EC\t0x24D6D\n0x8EA6B9ED\t0x24D61\n0x8EA6B9EE\t0x24D69\n0x8EA6B9EF\t0x24D5A\n0x8EA6B9F0\t0x24D5C\n0x8EA6B9F1\t0x24D62\n0x8EA6B9F2\t0x24F2A\n0x8EA6B9F3\t0x24F29\n0x8EA6B9F4\t0x24F58\n0x8EA6B9F5\t0x24F5A\n0x8EA6B9F6\t0x24FD7\n0x8EA6B9F7\t0x24FDB\n0x8EA6B9F8\t0x24FDC\n0x8EA6B9F9\t0x24FDD\n0x8EA6B9FA\t0x24FD8\n0x8EA6B9FB\t0x25054\n0x8EA6B9FC\t0x2505B\n0x8EA6B9FD\t0x2505C\n0x8EA6B9FE\t0x25053\n0x8EA6BAA1\t0x2504F\n0x8EA6BAA2\t0x25056\n0x8EA6BAA3\t0x25050\n0x8EA6BAA4\t0x2505A\n0x8EA6BAA5\t0x2506B\n0x8EA6BAA6\t0x25136\n0x8EA6BAA7\t0x25153\n0x8EA6BAA8\t0x2513A\n0x8EA6BAA9\t0x2513C\n0x8EA6BAAA\t0x2513E\n0x8EA6BAAB\t0x25149\n0x8EA6BAAC\t0x25140\n0x8EA6BAAD\t0x2F946\n0x8EA6BAAE\t0x2F947\n0x8EA6BAAF\t0x25364\n0x8EA6BAB0\t0x25365\n0x8EA6BAB1\t0x253B5\n0x8EA6BAB2\t0x253B6\n0x8EA6BAB3\t0x253B2\n0x8EA6BAB4\t0x25448\n0x8EA6BAB5\t0x2544A\n0x8EA6BAB6\t0x25472\n0x8EA6BAB7\t0x25469\n0x8EA6BAB8\t0x2545A\n0x8EA6BAB9\t0x2544C\n0x8EA6BABA\t0x2562C\n0x8EA6BABB\t0x25630\n0x8EA6BABC\t0x2564B\n0x8EA6BABD\t0x25649\n0x8EA6BABE\t0x25642\n0x8EA6BABF\t0x25644\n0x8EA6BAC0\t0x2564A\n0x8EA6BAC1\t0x2564F\n0x8EA6BAC2\t0x25792\n0x8EA6BAC3\t0x2F957\n0x8EA6BAC4\t0x25797\n0x8EA6BAC5\t0x25780\n0x8EA6BAC6\t0x25782\n0x8EA6BAC7\t0x25786\n0x8EA6BAC8\t0x25953\n0x8EA6BAC9\t0x2595E\n0x8EA6BACA\t0x25952\n0x8EA6BACB\t0x2595B\n0x8EA6BACC\t0x2594E\n0x8EA6BACD\t0x25A6D\n0x8EA6BACE\t0x25A6E\n0x8EA6BACF\t0x25AFA\n0x8EA6BAD0\t0x25AF6\n0x8EA6BAD1\t0x25AFB\n0x8EA6BAD2\t0x25E33\n0x8EA6BAD3\t0x25E3D\n0x8EA6BAD4\t0x25E37\n0x8EA6BAD5\t0x25E3E\n0x8EA6BAD6\t0x25E35\n0x8EA6BAD7\t0x25F9A\n0x8EA6BAD8\t0x25FAB\n0x8EA6BAD9\t0x25FA6\n0x8EA6BADA\t0x25FB0\n0x8EA6BADB\t0x25F99\n0x8EA6BADC\t0x25FA0\n0x8EA6BADD\t0x25F9E\n0x8EA6BADE\t0x25FA8\n0x8EA6BADF\t0x25FA1\n0x8EA6BAE0\t0x25FAA\n0x8EA6BAE1\t0x25FAD\n0x8EA6BAE2\t0x25FBB\n0x8EA6BAE3\t0x25F9C\n0x8EA6BAE4\t0x25FA5\n0x8EA6BAE5\t0x200B3\n0x8EA6BAE6\t0x26227\n0x8EA6BAE7\t0x2628D\n0x8EA6BAE8\t0x2628E\n0x8EA6BAE9\t0x2628F\n0x8EA6BAEA\t0x26292\n0x8EA6BAEB\t0x4356\n0x8EA6BAEC\t0x26291\n0x8EA6BAED\t0x262AD\n0x8EA6BAEE\t0x26357\n0x8EA6BAEF\t0x26358\n0x8EA6BAF0\t0x2635E\n0x8EA6BAF1\t0x2635D\n0x8EA6BAF2\t0x2635C\n0x8EA6BAF3\t0x2635B\n0x8EA6BAF4\t0x4367\n0x8EA6BAF5\t0x2640A\n0x8EA6BAF6\t0x26403\n0x8EA6BAF7\t0x2640E\n0x8EA6BAF8\t0x264B8\n0x8EA6BAF9\t0x2654D\n0x8EA6BAFA\t0x2653F\n0x8EA6BAFB\t0x26547\n0x8EA6BAFC\t0x2654B\n0x8EA6BAFD\t0x2654A\n0x8EA6BAFE\t0x2653D\n0x8EA6BBA1\t0x8038\n0x8EA6BBA2\t0x26541\n0x8EA6BBA3\t0x2654C\n0x8EA6BBA4\t0x8081\n0x8EA6BBA5\t0x26662\n0x8EA6BBA6\t0x26669\n0x8EA6BBA7\t0x26661\n0x8EA6BBA8\t0x43D1\n0x8EA6BBA9\t0x266AA\n0x8EA6BBAA\t0x266A6\n0x8EA6BBAB\t0x266AC\n0x8EA6BBAC\t0x266BD\n0x8EA6BBAD\t0x266BB\n0x8EA6BBAE\t0x266A4\n0x8EA6BBAF\t0x266BA\n0x8EA6BBB0\t0x2669A\n0x8EA6BBB1\t0x43EB\n0x8EA6BBB2\t0x266A1\n0x8EA6BBB3\t0x266C1\n0x8EA6BBB4\t0x268E0\n0x8EA6BBB5\t0x2690A\n0x8EA6BBB6\t0x26903\n0x8EA6BBB7\t0x26906\n0x8EA6BBB8\t0x26939\n0x8EA6BBB9\t0x2693A\n0x8EA6BBBA\t0x26936\n0x8EA6BBBB\t0x2695B\n0x8EA6BBBC\t0x2695F\n0x8EA6BBBD\t0x2695E\n0x8EA6BBBE\t0x26967\n0x8EA6BBBF\t0x26961\n0x8EA6BBC0\t0x26962\n0x8EA6BBC1\t0x2695D\n0x8EA6BBC2\t0x269CA\n0x8EA6BBC3\t0x269CC\n0x8EA6BBC4\t0x269CE\n0x8EA6BBC5\t0x26A18\n0x8EA6BBC6\t0x26A1D\n0x8EA6BBC7\t0x26A1F\n0x8EA6BBC8\t0x26A20\n0x8EA6BBC9\t0x26A17\n0x8EA6BBCA\t0x26A15\n0x8EA6BBCB\t0x26B1F\n0x8EA6BBCC\t0x26B27\n0x8EA6BBCD\t0x26B26\n0x8EA6BBCE\t0x21E10\n0x8EA6BBCF\t0x26B8B\n0x8EA6BBD0\t0x26BAE\n0x8EA6BBD1\t0x26B8A\n0x8EA6BBD2\t0x2F999\n0x8EA6BBD3\t0x26B92\n0x8EA6BBD4\t0x26B89\n0x8EA6BBD5\t0x26B87\n0x8EA6BBD6\t0x44B6\n0x8EA6BBD7\t0x26B8F\n0x8EA6BBD8\t0x26B84\n0x8EA6BBD9\t0x26B83\n0x8EA6BBDA\t0x26B8C\n0x8EA6BBDB\t0x26B93\n0x8EA6BBDC\t0x26B8D\n0x8EA6BBDD\t0x26B98\n0x8EA6BBDE\t0x26B7D\n0x8EA6BBDF\t0x26B7E\n0x8EA6BBE0\t0x26BD2\n0x8EA6BBE1\t0x26B80\n0x8EA6BBE2\t0x26B99\n0x8EA6BBE3\t0x271AC\n0x8EA6BBE4\t0x27250\n0x8EA6BBE5\t0x27255\n0x8EA6BBE6\t0x27242\n0x8EA6BBE7\t0x2723F\n0x8EA6BBE8\t0x2723C\n0x8EA6BBE9\t0x45A3\n0x8EA6BBEA\t0x2724C\n0x8EA6BBEB\t0x27249\n0x8EA6BBEC\t0x27257\n0x8EA6BBED\t0x27258\n0x8EA6BBEE\t0x2724F\n0x8EA6BBEF\t0x2725C\n0x8EA6BBF0\t0x27247\n0x8EA6BBF1\t0x2F9B7\n0x8EA6BBF2\t0x275AB\n0x8EA6BBF3\t0x4610\n0x8EA6BBF4\t0x275AF\n0x8EA6BBF5\t0x275AD\n0x8EA6BBF6\t0x275E8\n0x8EA6BBF7\t0x275E7\n0x8EA6BBF8\t0x27630\n0x8EA6BBF9\t0x27626\n0x8EA6BBFA\t0x2762F\n0x8EA6BBFB\t0x27628\n0x8EA6BBFC\t0x2762B\n0x8EA6BBFD\t0x2761D\n0x8EA6BBFE\t0x2762D\n0x8EA6BCA1\t0x27620\n0x8EA6BCA2\t0x2762A\n0x8EA6BCA3\t0x2762C\n0x8EA6BCA4\t0x27635\n0x8EA6BCA5\t0x27621\n0x8EA6BCA6\t0x27623\n0x8EA6BCA7\t0x27624\n0x8EA6BCA8\t0x27636\n0x8EA6BCA9\t0x27637\n0x8EA6BCAA\t0x277E9\n0x8EA6BCAB\t0x278BA\n0x8EA6BCAC\t0x278B8\n0x8EA6BCAD\t0x2F9CC\n0x8EA6BCAE\t0x2796D\n0x8EA6BCAF\t0x2796A\n0x8EA6BCB0\t0x27968\n0x8EA6BCB1\t0x27969\n0x8EA6BCB2\t0x2796B\n0x8EA6BCB3\t0x27961\n0x8EA6BCB4\t0x27BDC\n0x8EA6BCB5\t0x27BDB\n0x8EA6BCB6\t0x27C2D\n0x8EA6BCB7\t0x27C2C\n0x8EA6BCB8\t0x27CA2\n0x8EA6BCB9\t0x27D2B\n0x8EA6BCBA\t0x27D32\n0x8EA6BCBB\t0x2F9D7\n0x8EA6BCBC\t0x27E94\n0x8EA6BCBD\t0x27E92\n0x8EA6BCBE\t0x27E90\n0x8EA6BCBF\t0x27FC9\n0x8EA6BCC0\t0x27FC4\n0x8EA6BCC1\t0x27FC1\n0x8EA6BCC2\t0x27FC3\n0x8EA6BCC3\t0x27FCD\n0x8EA6BCC4\t0x28214\n0x8EA6BCC5\t0x282A7\n0x8EA6BCC6\t0x282AF\n0x8EA6BCC7\t0x282AA\n0x8EA6BCC8\t0x2840D\n0x8EA6BCC9\t0x28454\n0x8EA6BCCA\t0x2845B\n0x8EA6BCCB\t0x28461\n0x8EA6BCCC\t0x284AE\n0x8EA6BCCD\t0x284B3\n0x8EA6BCCE\t0x284C0\n0x8EA6BCCF\t0x284C4\n0x8EA6BCD0\t0x284BF\n0x8EA6BCD1\t0x284CB\n0x8EA6BCD2\t0x284AD\n0x8EA6BCD3\t0x284A7\n0x8EA6BCD4\t0x284A4\n0x8EA6BCD5\t0x284BD\n0x8EA6BCD6\t0x284AF\n0x8EA6BCD7\t0x284B2\n0x8EA6BCD8\t0x284A5\n0x8EA6BCD9\t0x286E7\n0x8EA6BCDA\t0x286E0\n0x8EA6BCDB\t0x286CE\n0x8EA6BCDC\t0x286DE\n0x8EA6BCDD\t0x286D5\n0x8EA6BCDE\t0x286DF\n0x8EA6BCDF\t0x286D9\n0x8EA6BCE0\t0x287F2\n0x8EA6BCE1\t0x28923\n0x8EA6BCE2\t0x28940\n0x8EA6BCE3\t0x491B\n0x8EA6BCE4\t0x2893E\n0x8EA6BCE5\t0x4987\n0x8EA6BCE6\t0x28CCF\n0x8EA6BCE7\t0x20B54\n0x8EA6BCE8\t0x28E5B\n0x8EA6BCE9\t0x28E58\n0x8EA6BCEA\t0x28E62\n0x8EA6BCEB\t0x28E5F\n0x8EA6BCEC\t0x28E67\n0x8EA6BCED\t0x28E63\n0x8EA6BCEE\t0x28E5E\n0x8EA6BCEF\t0x28E60\n0x8EA6BCF0\t0x28F85\n0x8EA6BCF1\t0x28F86\n0x8EA6BCF2\t0x28F87\n0x8EA6BCF3\t0x291E8\n0x8EA6BCF4\t0x291E6\n0x8EA6BCF5\t0x29671\n0x8EA6BCF6\t0x29685\n0x8EA6BCF7\t0x2FA02\n0x8EA6BCF8\t0x29686\n0x8EA6BCF9\t0x29810\n0x8EA6BCFA\t0x209F8\n0x8EA6BCFB\t0x200BF\n0x8EA6BCFC\t0x20B61\n0x8EA6BCFD\t0x200FE\n0x8EA6BCFE\t0x200FC\n0x8EA6BDA1\t0x20139\n0x8EA6BDA2\t0x20161\n0x8EA6BDA3\t0x20160\n0x8EA6BDA4\t0x202E2\n0x8EA6BDA5\t0x202EA\n0x8EA6BDA6\t0x202E3\n0x8EA6BDA7\t0x202B4\n0x8EA6BDA8\t0x202AE\n0x8EA6BDA9\t0x202BE\n0x8EA6BDAA\t0x202B8\n0x8EA6BDAB\t0x202A8\n0x8EA6BDAC\t0x202AA\n0x8EA6BDAD\t0x202A9\n0x8EA6BDAE\t0x202B3\n0x8EA6BDAF\t0x202D5\n0x8EA6BDB0\t0x202AD\n0x8EA6BDB1\t0x202B9\n0x8EA6BDB2\t0x202BB\n0x8EA6BDB3\t0x202B1\n0x8EA6BDB4\t0x202C2\n0x8EA6BDB5\t0x2F808\n0x8EA6BDB6\t0x202EB\n0x8EA6BDB7\t0x202BA\n0x8EA6BDB8\t0x202D2\n0x8EA6BDB9\t0x202D4\n0x8EA6BDBA\t0x204F1\n0x8EA6BDBB\t0x2051D\n0x8EA6BDBC\t0x2F812\n0x8EA6BDBD\t0x20562\n0x8EA6BDBE\t0x2058C\n0x8EA6BDBF\t0x205E6\n0x8EA6BDC0\t0x205E7\n0x8EA6BDC1\t0x2065A\n0x8EA6BDC2\t0x20658\n0x8EA6BDC3\t0x20659\n0x8EA6BDC4\t0x20696\n0x8EA6BDC5\t0x20697\n0x8EA6BDC6\t0x20761\n0x8EA6BDC7\t0x20767\n0x8EA6BDC8\t0x20771\n0x8EA6BDC9\t0x20765\n0x8EA6BDCA\t0x2077D\n0x8EA6BDCB\t0x2077E\n0x8EA6BDCC\t0x2087D\n0x8EA6BDCD\t0x20884\n0x8EA6BDCE\t0x2087C\n0x8EA6BDCF\t0x2087E\n0x8EA6BDD0\t0x2087F\n0x8EA6BDD1\t0x20880\n0x8EA6BDD2\t0x208EF\n0x8EA6BDD3\t0x208F4\n0x8EA6BDD4\t0x2091E\n0x8EA6BDD5\t0x2094E\n0x8EA6BDD6\t0x209FB\n0x8EA6BDD7\t0x209FA\n0x8EA6BDD8\t0x209FD\n0x8EA6BDD9\t0x2F831\n0x8EA6BDDA\t0x2F832\n0x8EA6BDDB\t0x20A79\n0x8EA6BDDC\t0x20A7C\n0x8EA6BDDD\t0x20A7D\n0x8EA6BDDE\t0x20A84\n0x8EA6BDDF\t0x20A7B\n0x8EA6BDE0\t0x20A78\n0x8EA6BDE1\t0x3557\n0x8EA6BDE2\t0x20B5E\n0x8EA6BDE3\t0x20B5A\n0x8EA6BDE4\t0x20B5C\n0x8EA6BDE5\t0x20B59\n0x8EA6BDE6\t0x20B55\n0x8EA6BDE7\t0x20B63\n0x8EA6BDE8\t0x20B56\n0x8EA6BDE9\t0x20B5F\n0x8EA6BDEA\t0x20B60\n0x8EA6BDEB\t0x20B5B\n0x8EA6BDEC\t0x20D4A\n0x8EA6BDED\t0x20D65\n0x8EA6BDEE\t0x20DB3\n0x8EA6BDEF\t0x20D2C\n0x8EA6BDF0\t0x20D77\n0x8EA6BDF1\t0x20D3D\n0x8EA6BDF2\t0x20D52\n0x8EA6BDF3\t0x20D61\n0x8EA6BDF4\t0x20D2A\n0x8EA6BDF5\t0x20D3E\n0x8EA6BDF6\t0x20D34\n0x8EA6BDF7\t0x20D29\n0x8EA6BDF8\t0x20DB2\n0x8EA6BDF9\t0x20DAD\n0x8EA6BDFA\t0x20D40\n0x8EA6BDFB\t0x20D53\n0x8EA6BDFC\t0x2F844\n0x8EA6BDFD\t0x20D3F\n0x8EA6BDFE\t0x20D41\n0x8EA6BEA1\t0x20D72\n0x8EA6BEA2\t0x211F6\n0x8EA6BEA3\t0x211F5\n0x8EA6BEA4\t0x211F4\n0x8EA6BEA5\t0x211F2\n0x8EA6BEA6\t0x211F9\n0x8EA6BEA7\t0x21327\n0x8EA6BEA8\t0x21354\n0x8EA6BEA9\t0x21355\n0x8EA6BEAA\t0x2132E\n0x8EA6BEAB\t0x2F854\n0x8EA6BEAC\t0x2F853\n0x8EA6BEAD\t0x2132C\n0x8EA6BEAE\t0x21338\n0x8EA6BEAF\t0x21339\n0x8EA6BEB0\t0x21331\n0x8EA6BEB1\t0x2134F\n0x8EA6BEB2\t0x21373\n0x8EA6BEB3\t0x21330\n0x8EA6BEB4\t0x2132B\n0x8EA6BEB5\t0x21351\n0x8EA6BEB6\t0x2152C\n0x8EA6BEB7\t0x2155B\n0x8EA6BEB8\t0x2155C\n0x8EA6BEB9\t0x21568\n0x8EA6BEBA\t0x2156C\n0x8EA6BEBB\t0x2156B\n0x8EA6BEBC\t0x21569\n0x8EA6BEBD\t0x2159F\n0x8EA6BEBE\t0x21638\n0x8EA6BEBF\t0x2163C\n0x8EA6BEC0\t0x2163A\n0x8EA6BEC1\t0x21635\n0x8EA6BEC2\t0x369D\n0x8EA6BEC3\t0x21639\n0x8EA6BEC4\t0x21636\n0x8EA6BEC5\t0x2163B\n0x8EA6BEC6\t0x21760\n0x8EA6BEC7\t0x21761\n0x8EA6BEC8\t0x21763\n0x8EA6BEC9\t0x21764\n0x8EA6BECA\t0x21794\n0x8EA6BECB\t0x21793\n0x8EA6BECC\t0x2175E\n0x8EA6BECD\t0x21768\n0x8EA6BECE\t0x2176A\n0x8EA6BECF\t0x21765\n0x8EA6BED0\t0x2F866\n0x8EA6BED1\t0x21790\n0x8EA6BED2\t0x2175F\n0x8EA6BED3\t0x21772\n0x8EA6BED4\t0x2F865\n0x8EA6BED5\t0x21A3C\n0x8EA6BED6\t0x21A27\n0x8EA6BED7\t0x21A24\n0x8EA6BED8\t0x21A26\n0x8EA6BED9\t0x21A25\n0x8EA6BEDA\t0x375F\n0x8EA6BEDB\t0x21A28\n0x8EA6BEDC\t0x21A36\n0x8EA6BEDD\t0x21B31\n0x8EA6BEDE\t0x21B30\n0x8EA6BEDF\t0x21B34\n0x8EA6BEE0\t0x21B81\n0x8EA6BEE1\t0x21B7D\n0x8EA6BEE2\t0x21B82\n0x8EA6BEE3\t0x21B80\n0x8EA6BEE4\t0x3779\n0x8EA6BEE5\t0x202D3\n0x8EA6BEE6\t0x21BF2\n0x8EA6BEE7\t0x21C66\n0x8EA6BEE8\t0x21C8C\n0x8EA6BEE9\t0x21C7B\n0x8EA6BEEA\t0x21C83\n0x8EA6BEEB\t0x3798\n0x8EA6BEEC\t0x21C8E\n0x8EA6BEED\t0x21C7A\n0x8EA6BEEE\t0x21C92\n0x8EA6BEEF\t0x21C91\n0x8EA6BEF0\t0x21C82\n0x8EA6BEF1\t0x21D1B\n0x8EA6BEF2\t0x21D1C\n0x8EA6BEF3\t0x21E27\n0x8EA6BEF4\t0x21E21\n0x8EA6BEF5\t0x37DC\n0x8EA6BEF6\t0x5D2B\n0x8EA6BEF7\t0x21E43\n0x8EA6BEF8\t0x37DF\n0x8EA6BEF9\t0x21E18\n0x8EA6BEFA\t0x21E7B\n0x8EA6BEFB\t0x21E1A\n0x8EA6BEFC\t0x21E4B\n0x8EA6BEFD\t0x21E4A\n0x8EA6BEFE\t0x21E4D\n0x8EA6BFA1\t0x21E4F\n0x8EA6BFA2\t0x21E19\n0x8EA6BFA3\t0x21E35\n0x8EA6BFA4\t0x21E13\n0x8EA6BFA5\t0x21E52\n0x8EA6BFA6\t0x21E14\n0x8EA6BFA7\t0x21E1E\n0x8EA6BFA8\t0x21E2C\n0x8EA6BFA9\t0x21E20\n0x8EA6BFAA\t0x21E22\n0x8EA6BFAB\t0x21E12\n0x8EA6BFAC\t0x21E1F\n0x8EA6BFAD\t0x22000\n0x8EA6BFAE\t0x22023\n0x8EA6BFAF\t0x22040\n0x8EA6BFB0\t0x22043\n0x8EA6BFB1\t0x220E4\n0x8EA6BFB2\t0x220DB\n0x8EA6BFB3\t0x220EA\n0x8EA6BFB4\t0x220DD\n0x8EA6BFB5\t0x220CC\n0x8EA6BFB6\t0x220D9\n0x8EA6BFB7\t0x220E8\n0x8EA6BFB8\t0x220F6\n0x8EA6BFB9\t0x220E3\n0x8EA6BFBA\t0x220D3\n0x8EA6BFBB\t0x220DA\n0x8EA6BFBC\t0x220D6\n0x8EA6BFBD\t0x220E7\n0x8EA6BFBE\t0x2223A\n0x8EA6BFBF\t0x2223F\n0x8EA6BFC0\t0x22240\n0x8EA6BFC1\t0x22248\n0x8EA6BFC2\t0x22259\n0x8EA6BFC3\t0x22237\n0x8EA6BFC4\t0x22244\n0x8EA6BFC5\t0x2F88C\n0x8EA6BFC6\t0x2F88B\n0x8EA6BFC7\t0x22255\n0x8EA6BFC8\t0x22239\n0x8EA6BFC9\t0x22354\n0x8EA6BFCA\t0x22355\n0x8EA6BFCB\t0x22356\n0x8EA6BFCC\t0x22357\n0x8EA6BFCD\t0x22358\n0x8EA6BFCE\t0x22359\n0x8EA6BFCF\t0x2238D\n0x8EA6BFD0\t0x223F2\n0x8EA6BFD1\t0x223F8\n0x8EA6BFD2\t0x223F5\n0x8EA6BFD3\t0x223F6\n0x8EA6BFD4\t0x223FC\n0x8EA6BFD5\t0x223FE\n0x8EA6BFD6\t0x223F1\n0x8EA6BFD7\t0x223FD\n0x8EA6BFD8\t0x2245E\n0x8EA6BFD9\t0x22496\n0x8EA6BFDA\t0x22497\n0x8EA6BFDB\t0x2249C\n0x8EA6BFDC\t0x2249B\n0x8EA6BFDD\t0x22495\n0x8EA6BFDE\t0x2F89A\n0x8EA6BFDF\t0x2251A\n0x8EA6BFE0\t0x22509\n0x8EA6BFE1\t0x22504\n0x8EA6BFE2\t0x2250E\n0x8EA6BFE3\t0x2251C\n0x8EA6BFE4\t0x22518\n0x8EA6BFE5\t0x2250D\n0x8EA6BFE6\t0x22510\n0x8EA6BFE7\t0x2250C\n0x8EA6BFE8\t0x22503\n0x8EA6BFE9\t0x2267B\n0x8EA6BFEA\t0x226A6\n0x8EA6BFEB\t0x22677\n0x8EA6BFEC\t0x22688\n0x8EA6BFED\t0x22674\n0x8EA6BFEE\t0x226DA\n0x8EA6BFEF\t0x22676\n0x8EA6BFF0\t0x22678\n0x8EA6BFF1\t0x2268A\n0x8EA6BFF2\t0x2268F\n0x8EA6BFF3\t0x2267D\n0x8EA6BFF4\t0x22690\n0x8EA6BFF5\t0x226ED\n0x8EA6BFF6\t0x226D9\n0x8EA6BFF7\t0x226D0\n0x8EA6BFF8\t0x2271A\n0x8EA6BFF9\t0x226D7\n0x8EA6BFFA\t0x226E2\n0x8EA6BFFB\t0x226E1\n0x8EA6BFFC\t0x226C5\n0x8EA6BFFD\t0x226E0\n0x8EA6BFFE\t0x226CA\n0x8EA6C0A1\t0x22725\n0x8EA6C0A2\t0x226CC\n0x8EA6C0A3\t0x2F8B3\n0x8EA6C0A4\t0x229C6\n0x8EA6C0A5\t0x229C1\n0x8EA6C0A6\t0x22A4D\n0x8EA6C0A7\t0x22B4B\n0x8EA6C0A8\t0x22B64\n0x8EA6C0A9\t0x22B95\n0x8EA6C0AA\t0x22B99\n0x8EA6C0AB\t0x2F8BC\n0x8EA6C0AC\t0x22B94\n0x8EA6C0AD\t0x22BA2\n0x8EA6C0AE\t0x22BAE\n0x8EA6C0AF\t0x22B9E\n0x8EA6C0B0\t0x22BA7\n0x8EA6C0B1\t0x22B86\n0x8EA6C0B2\t0x39FD\n0x8EA6C0B3\t0x22BA4\n0x8EA6C0B4\t0x22B91\n0x8EA6C0B5\t0x22B93\n0x8EA6C0B6\t0x2F8BB\n0x8EA6C0B7\t0x22B88\n0x8EA6C0B8\t0x22ECD\n0x8EA6C0B9\t0x22ECA\n0x8EA6C0BA\t0x22F3F\n0x8EA6C0BB\t0x22F40\n0x8EA6C0BC\t0x22F46\n0x8EA6C0BD\t0x22F41\n0x8EA6C0BE\t0x22F45\n0x8EA6C0BF\t0x22F58\n0x8EA6C0C0\t0x22F3B\n0x8EA6C0C1\t0x22F48\n0x8EA6C0C2\t0x2304E\n0x8EA6C0C3\t0x23052\n0x8EA6C0C4\t0x2304F\n0x8EA6C0C5\t0x2307B\n0x8EA6C0C6\t0x2307A\n0x8EA6C0C7\t0x230A0\n0x8EA6C0C8\t0x2309F\n0x8EA6C0C9\t0x230FB\n0x8EA6C0CA\t0x230F7\n0x8EA6C0CB\t0x231B8\n0x8EA6C0CC\t0x231B9\n0x8EA6C0CD\t0x231BB\n0x8EA6C0CE\t0x231B7\n0x8EA6C0CF\t0x3AF4\n0x8EA6C0D0\t0x231BA\n0x8EA6C0D1\t0x3AEF\n0x8EA6C0D2\t0x231DA\n0x8EA6C0D3\t0x231B5\n0x8EA6C0D4\t0x231BF\n0x8EA6C0D5\t0x231BC\n0x8EA6C0D6\t0x231C0\n0x8EA6C0D7\t0x2F8D3\n0x8EA6C0D8\t0x2F8D9\n0x8EA6C0D9\t0x23375\n0x8EA6C0DA\t0x23379\n0x8EA6C0DB\t0x23376\n0x8EA6C0DC\t0x23435\n0x8EA6C0DD\t0x23440\n0x8EA6C0DE\t0x234C0\n0x8EA6C0DF\t0x23481\n0x8EA6C0E0\t0x234AD\n0x8EA6C0E1\t0x234AF\n0x8EA6C0E2\t0x234AC\n0x8EA6C0E3\t0x2348F\n0x8EA6C0E4\t0x234A8\n0x8EA6C0E5\t0x234AA\n0x8EA6C0E6\t0x234A9\n0x8EA6C0E7\t0x23488\n0x8EA6C0E8\t0x2347F\n0x8EA6C0E9\t0x23480\n0x8EA6C0EA\t0x234BC\n0x8EA6C0EB\t0x238AE\n0x8EA6C0EC\t0x238BB\n0x8EA6C0ED\t0x238BD\n0x8EA6C0EE\t0x3C31\n0x8EA6C0EF\t0x23978\n0x8EA6C0F0\t0x23974\n0x8EA6C0F1\t0x23A0C\n0x8EA6C0F2\t0x23A11\n0x8EA6C0F3\t0x23A08\n0x8EA6C0F4\t0x23A06\n0x8EA6C0F5\t0x23A10\n0x8EA6C0F6\t0x23A8F\n0x8EA6C0F7\t0x23A90\n0x8EA6C0F8\t0x23A8D\n0x8EA6C0F9\t0x23A8E\n0x8EA6C0FA\t0x23A96\n0x8EA6C0FB\t0x23A95\n0x8EA6C0FC\t0x23B0B\n0x8EA6C0FD\t0x23B0C\n0x8EA6C0FE\t0x23B7C\n0x8EA6C1A1\t0x23B73\n0x8EA6C1A2\t0x23B75\n0x8EA6C1A3\t0x23B76\n0x8EA6C1A4\t0x23B7D\n0x8EA6C1A5\t0x23B78\n0x8EA6C1A6\t0x23B71\n0x8EA6C1A7\t0x23C4B\n0x8EA6C1A8\t0x23C4E\n0x8EA6C1A9\t0x23D33\n0x8EA6C1AA\t0x23D32\n0x8EA6C1AB\t0x3D03\n0x8EA6C1AC\t0x23D91\n0x8EA6C1AD\t0x23DE7\n0x8EA6C1AE\t0x23DE9\n0x8EA6C1AF\t0x23DA2\n0x8EA6C1B0\t0x23D94\n0x8EA6C1B1\t0x23D87\n0x8EA6C1B2\t0x23DA3\n0x8EA6C1B3\t0x23DDD\n0x8EA6C1B4\t0x23D7B\n0x8EA6C1B5\t0x23D83\n0x8EA6C1B6\t0x23D81\n0x8EA6C1B7\t0x23DDF\n0x8EA6C1B8\t0x23D7C\n0x8EA6C1B9\t0x23DE4\n0x8EA6C1BA\t0x23DE2\n0x8EA6C1BB\t0x23D93\n0x8EA6C1BC\t0x23D7D\n0x8EA6C1BD\t0x23DBF\n0x8EA6C1BE\t0x23D9B\n0x8EA6C1BF\t0x23D8E\n0x8EA6C1C0\t0x23D9F\n0x8EA6C1C1\t0x3D09\n0x8EA6C1C2\t0x23D8C\n0x8EA6C1C3\t0x23D7F\n0x8EA6C1C4\t0x23D9C\n0x8EA6C1C5\t0x23D84\n0x8EA6C1C6\t0x23D42\n0x8EA6C1C7\t0x23DE6\n0x8EA6C1C8\t0x24251\n0x8EA6C1C9\t0x2424A\n0x8EA6C1CA\t0x24264\n0x8EA6C1CB\t0x24225\n0x8EA6C1CC\t0x2422F\n0x8EA6C1CD\t0x2422E\n0x8EA6C1CE\t0x2422B\n0x8EA6C1CF\t0x24228\n0x8EA6C1D0\t0x24232\n0x8EA6C1D1\t0x2422D\n0x8EA6C1D2\t0x24231\n0x8EA6C1D3\t0x24239\n0x8EA6C1D4\t0x2422C\n0x8EA6C1D5\t0x24261\n0x8EA6C1D6\t0x24511\n0x8EA6C1D7\t0x24510\n0x8EA6C1D8\t0x24512\n0x8EA6C1D9\t0x24553\n0x8EA6C1DA\t0x24555\n0x8EA6C1DB\t0x2457B\n0x8EA6C1DC\t0x24581\n0x8EA6C1DD\t0x2457D\n0x8EA6C1DE\t0x2457C\n0x8EA6C1DF\t0x245C2\n0x8EA6C1E0\t0x245C5\n0x8EA6C1E1\t0x2F922\n0x8EA6C1E2\t0x245C4\n0x8EA6C1E3\t0x2F923\n0x8EA6C1E4\t0x2466B\n0x8EA6C1E5\t0x24668\n0x8EA6C1E6\t0x3E3E\n0x8EA6C1E7\t0x2465C\n0x8EA6C1E8\t0x2465D\n0x8EA6C1E9\t0x2466A\n0x8EA6C1EA\t0x2F924\n0x8EA6C1EB\t0x24C76\n0x8EA6C1EC\t0x24776\n0x8EA6C1ED\t0x3E77\n0x8EA6C1EE\t0x247C4\n0x8EA6C1EF\t0x247CB\n0x8EA6C1F0\t0x247C8\n0x8EA6C1F1\t0x247D4\n0x8EA6C1F2\t0x247D5\n0x8EA6C1F3\t0x247C9\n0x8EA6C1F4\t0x247D7\n0x8EA6C1F5\t0x3E7B\n0x8EA6C1F6\t0x24978\n0x8EA6C1F7\t0x2495A\n0x8EA6C1F8\t0x2495B\n0x8EA6C1F9\t0x2495C\n0x8EA6C1FA\t0x24956\n0x8EA6C1FB\t0x24958\n0x8EA6C1FC\t0x24971\n0x8EA6C1FD\t0x269D4\n0x8EA6C1FE\t0x24B40\n0x8EA6C2A1\t0x2F933\n0x8EA6C2A2\t0x24B3F\n0x8EA6C2A3\t0x24B43\n0x8EA6C2A4\t0x24B41\n0x8EA6C2A5\t0x24BE2\n0x8EA6C2A6\t0x24BE0\n0x8EA6C2A7\t0x24BE3\n0x8EA6C2A8\t0x24C66\n0x8EA6C2A9\t0x24C73\n0x8EA6C2AA\t0x24C6C\n0x8EA6C2AB\t0x24C71\n0x8EA6C2AC\t0x24C6A\n0x8EA6C2AD\t0x24C6D\n0x8EA6C2AE\t0x24C6E\n0x8EA6C2AF\t0x24C6B\n0x8EA6C2B0\t0x24D8C\n0x8EA6C2B1\t0x24D77\n0x8EA6C2B2\t0x2F93A\n0x8EA6C2B3\t0x24D7F\n0x8EA6C2B4\t0x24D89\n0x8EA6C2B5\t0x24D7A\n0x8EA6C2B6\t0x24D85\n0x8EA6C2B7\t0x24D78\n0x8EA6C2B8\t0x24D8A\n0x8EA6C2B9\t0x24D86\n0x8EA6C2BA\t0x24F2C\n0x8EA6C2BB\t0x24F67\n0x8EA6C2BC\t0x24F5B\n0x8EA6C2BD\t0x24FE5\n0x8EA6C2BE\t0x24FE1\n0x8EA6C2BF\t0x25061\n0x8EA6C2C0\t0x25069\n0x8EA6C2C1\t0x2506A\n0x8EA6C2C2\t0x25165\n0x8EA6C2C3\t0x2516D\n0x8EA6C2C4\t0x25163\n0x8EA6C2C5\t0x25186\n0x8EA6C2C6\t0x2515C\n0x8EA6C2C7\t0x25162\n0x8EA6C2C8\t0x2F948\n0x8EA6C2C9\t0x25179\n0x8EA6C2CA\t0x25169\n0x8EA6C2CB\t0x25170\n0x8EA6C2CC\t0x25176\n0x8EA6C2CD\t0x2515D\n0x8EA6C2CE\t0x25187\n0x8EA6C2CF\t0x2516E\n0x8EA6C2D0\t0x25171\n0x8EA6C2D1\t0x2517C\n0x8EA6C2D2\t0x25173\n0x8EA6C2D3\t0x2515B\n0x8EA6C2D4\t0x2516B\n0x8EA6C2D5\t0x253BF\n0x8EA6C2D6\t0x253C1\n0x8EA6C2D7\t0x253BD\n0x8EA6C2D8\t0x253C9\n0x8EA6C2D9\t0x253BC\n0x8EA6C2DA\t0x253C2\n0x8EA6C2DB\t0x253C0\n0x8EA6C2DC\t0x25492\n0x8EA6C2DD\t0x254A9\n0x8EA6C2DE\t0x2548F\n0x8EA6C2DF\t0x25476\n0x8EA6C2E0\t0x2547B\n0x8EA6C2E1\t0x25475\n0x8EA6C2E2\t0x254A4\n0x8EA6C2E3\t0x25664\n0x8EA6C2E4\t0x2573D\n0x8EA6C2E5\t0x257AF\n0x8EA6C2E6\t0x413A\n0x8EA6C2E7\t0x2F958\n0x8EA6C2E8\t0x2579D\n0x8EA6C2E9\t0x25799\n0x8EA6C2EA\t0x257B1\n0x8EA6C2EB\t0x25963\n0x8EA6C2EC\t0x25962\n0x8EA6C2ED\t0x25964\n0x8EA6C2EE\t0x25969\n0x8EA6C2EF\t0x41A0\n0x8EA6C2F0\t0x25A75\n0x8EA6C2F1\t0x25A73\n0x8EA6C2F2\t0x25A71\n0x8EA6C2F3\t0x25A74\n0x8EA6C2F4\t0x25B0C\n0x8EA6C2F5\t0x25B16\n0x8EA6C2F6\t0x41E5\n0x8EA6C2F7\t0x25B11\n0x8EA6C2F8\t0x25B1F\n0x8EA6C2F9\t0x25B1A\n0x8EA6C2FA\t0x25B0D\n0x8EA6C2FB\t0x25B1B\n0x8EA6C2FC\t0x25B13\n0x8EA6C2FD\t0x25E4E\n0x8EA6C2FE\t0x25E55\n0x8EA6C3A1\t0x25E50\n0x8EA6C3A2\t0x427D\n0x8EA6C3A3\t0x25FD2\n0x8EA6C3A4\t0x25FD3\n0x8EA6C3A5\t0x25FD1\n0x8EA6C3A6\t0x25FF1\n0x8EA6C3A7\t0x25FDC\n0x8EA6C3A8\t0x25FC8\n0x8EA6C3A9\t0x25FCC\n0x8EA6C3AA\t0x25FD0\n0x8EA6C3AB\t0x25FCF\n0x8EA6C3AC\t0x25FDF\n0x8EA6C3AD\t0x2622B\n0x8EA6C3AE\t0x2622E\n0x8EA6C3AF\t0x2622D\n0x8EA6C3B0\t0x2629D\n0x8EA6C3B1\t0x2629E\n0x8EA6C3B2\t0x2629F\n0x8EA6C3B3\t0x262A9\n0x8EA6C3B4\t0x262A0\n0x8EA6C3B5\t0x26298\n0x8EA6C3B6\t0x262A1\n0x8EA6C3B7\t0x262AB\n0x8EA6C3B8\t0x262AF\n0x8EA6C3B9\t0x2636E\n0x8EA6C3BA\t0x2635F\n0x8EA6C3BB\t0x2635A\n0x8EA6C3BC\t0x436D\n0x8EA6C3BD\t0x26365\n0x8EA6C3BE\t0x26368\n0x8EA6C3BF\t0x26372\n0x8EA6C3C0\t0x26417\n0x8EA6C3C1\t0x26416\n0x8EA6C3C2\t0x26418\n0x8EA6C3C3\t0x26419\n0x8EA6C3C4\t0x2641A\n0x8EA6C3C5\t0x26422\n0x8EA6C3C6\t0x2641B\n0x8EA6C3C7\t0x2641C\n0x8EA6C3C8\t0x264BE\n0x8EA6C3C9\t0x264EE\n0x8EA6C3CA\t0x2655A\n0x8EA6C3CB\t0x26550\n0x8EA6C3CC\t0x26558\n0x8EA6C3CD\t0x26554\n0x8EA6C3CE\t0x26557\n0x8EA6C3CF\t0x26556\n0x8EA6C3D0\t0x26615\n0x8EA6C3D1\t0x2669B\n0x8EA6C3D2\t0x26693\n0x8EA6C3D3\t0x26692\n0x8EA6C3D4\t0x26672\n0x8EA6C3D5\t0x26698\n0x8EA6C3D6\t0x26699\n0x8EA6C3D7\t0x266DF\n0x8EA6C3D8\t0x43F8\n0x8EA6C3D9\t0x266D5\n0x8EA6C3DA\t0x8158\n0x8EA6C3DB\t0x266D4\n0x8EA6C3DC\t0x266F3\n0x8EA6C3DD\t0x266F4\n0x8EA6C3DE\t0x266E7\n0x8EA6C3DF\t0x266E1\n0x8EA6C3E0\t0x266E6\n0x8EA6C3E1\t0x266EB\n0x8EA6C3E2\t0x266EC\n0x8EA6C3E3\t0x202DB\n0x8EA6C3E4\t0x4450\n0x8EA6C3E5\t0x2690D\n0x8EA6C3E6\t0x2690C\n0x8EA6C3E7\t0x21B2F\n0x8EA6C3E8\t0x26968\n0x8EA6C3E9\t0x26965\n0x8EA6C3EA\t0x2696B\n0x8EA6C3EB\t0x26969\n0x8EA6C3EC\t0x269D1\n0x8EA6C3ED\t0x269D3\n0x8EA6C3EE\t0x26A27\n0x8EA6C3EF\t0x26A28\n0x8EA6C3F0\t0x4468\n0x8EA6C3F1\t0x4467\n0x8EA6C3F2\t0x26A24\n0x8EA6C3F3\t0x26AD7\n0x8EA6C3F4\t0x26BCA\n0x8EA6C3F5\t0x26BC7\n0x8EA6C3F6\t0x2F99E\n0x8EA6C3F7\t0x26BD8\n0x8EA6C3F8\t0x26BE1\n0x8EA6C3F9\t0x26BC6\n0x8EA6C3FA\t0x26BF8\n0x8EA6C3FB\t0x26BC3\n0x8EA6C3FC\t0x26BF4\n0x8EA6C3FD\t0x26C17\n0x8EA6C3FE\t0x26BEA\n0x8EA6C4A1\t0x26BCB\n0x8EA6C4A2\t0x26B86\n0x8EA6C4A3\t0x26BC4\n0x8EA6C4A4\t0x26BD9\n0x8EA6C4A5\t0x26C19\n0x8EA6C4A6\t0x26BC2\n0x8EA6C4A7\t0x26BE2\n0x8EA6C4A8\t0x44CF\n0x8EA6C4A9\t0x26BDE\n0x8EA6C4AA\t0x26BED\n0x8EA6C4AB\t0x2F99C\n0x8EA6C4AC\t0x44CD\n0x8EA6C4AD\t0x26C1D\n0x8EA6C4AE\t0x26BDD\n0x8EA6C4AF\t0x26BDB\n0x8EA6C4B0\t0x26BE8\n0x8EA6C4B1\t0x26BE9\n0x8EA6C4B2\t0x26BBF\n0x8EA6C4B3\t0x26BE0\n0x8EA6C4B4\t0x26BD1\n0x8EA6C4B5\t0x26BDC\n0x8EA6C4B6\t0x26BCE\n0x8EA6C4B7\t0x26C1E\n0x8EA6C4B8\t0x26BCC\n0x8EA6C4B9\t0x26BF2\n0x8EA6C4BA\t0x26BF3\n0x8EA6C4BB\t0x2F99F\n0x8EA6C4BC\t0x2F9A2\n0x8EA6C4BD\t0x2F9A3\n0x8EA6C4BE\t0x2F9A1\n0x8EA6C4BF\t0x271AB\n0x8EA6C4C0\t0x271AA\n0x8EA6C4C1\t0x271A7\n0x8EA6C4C2\t0x271A9\n0x8EA6C4C3\t0x27288\n0x8EA6C4C4\t0x27275\n0x8EA6C4C5\t0x27260\n0x8EA6C4C6\t0x2726C\n0x8EA6C4C7\t0x27273\n0x8EA6C4C8\t0x45AB\n0x8EA6C4C9\t0x2726E\n0x8EA6C4CA\t0x27274\n0x8EA6C4CB\t0x27276\n0x8EA6C4CC\t0x27268\n0x8EA6C4CD\t0x27277\n0x8EA6C4CE\t0x27286\n0x8EA6C4CF\t0x275EA\n0x8EA6C4D0\t0x27651\n0x8EA6C4D1\t0x27650\n0x8EA6C4D2\t0x27658\n0x8EA6C4D3\t0x2764D\n0x8EA6C4D4\t0x2764F\n0x8EA6C4D5\t0x2764E\n0x8EA6C4D6\t0x2765C\n0x8EA6C4D7\t0x27652\n0x8EA6C4D8\t0x27644\n0x8EA6C4D9\t0x2764A\n0x8EA6C4DA\t0x2764B\n0x8EA6C4DB\t0x277EA\n0x8EA6C4DC\t0x27810\n0x8EA6C4DD\t0x27811\n0x8EA6C4DE\t0x278CD\n0x8EA6C4DF\t0x278BF\n0x8EA6C4E0\t0x278C4\n0x8EA6C4E1\t0x278D0\n0x8EA6C4E2\t0x278CE\n0x8EA6C4E3\t0x278C0\n0x8EA6C4E4\t0x278C2\n0x8EA6C4E5\t0x278CF\n0x8EA6C4E6\t0x278C9\n0x8EA6C4E7\t0x278BB\n0x8EA6C4E8\t0x27997\n0x8EA6C4E9\t0x27992\n0x8EA6C4EA\t0x2796F\n0x8EA6C4EB\t0x2797E\n0x8EA6C4EC\t0x2799A\n0x8EA6C4ED\t0x46C1\n0x8EA6C4EE\t0x27986\n0x8EA6C4EF\t0x27973\n0x8EA6C4F0\t0x8A24\n0x8EA6C4F1\t0x27977\n0x8EA6C4F2\t0x2798F\n0x8EA6C4F3\t0x27970\n0x8EA6C4F4\t0x27981\n0x8EA6C4F5\t0x27982\n0x8EA6C4F6\t0x27999\n0x8EA6C4F7\t0x2797D\n0x8EA6C4F8\t0x2797F\n0x8EA6C4F9\t0x2797B\n0x8EA6C4FA\t0x27987\n0x8EA6C4FB\t0x27BB2\n0x8EA6C4FC\t0x27C2F\n0x8EA6C4FD\t0x27C34\n0x8EA6C4FE\t0x27C2E\n0x8EA6C5A1\t0x27C32\n0x8EA6C5A2\t0x4747\n0x8EA6C5A3\t0x27CAA\n0x8EA6C5A4\t0x4757\n0x8EA6C5A5\t0x27CA9\n0x8EA6C5A6\t0x27D38\n0x8EA6C5A7\t0x27D36\n0x8EA6C5A8\t0x27D37\n0x8EA6C5A9\t0x27D47\n0x8EA6C5AA\t0x27D33\n0x8EA6C5AB\t0x27D39\n0x8EA6C5AC\t0x27D35\n0x8EA6C5AD\t0x27D44\n0x8EA6C5AE\t0x27EA5\n0x8EA6C5AF\t0x27EA6\n0x8EA6C5B0\t0x27E9E\n0x8EA6C5B1\t0x27FE3\n0x8EA6C5B2\t0x27FDF\n0x8EA6C5B3\t0x27FD3\n0x8EA6C5B4\t0x27FF1\n0x8EA6C5B5\t0x27FE4\n0x8EA6C5B6\t0x27FE0\n0x8EA6C5B7\t0x27FD6\n0x8EA6C5B8\t0x8DC3\n0x8EA6C5B9\t0x27FE6\n0x8EA6C5BA\t0x27FD8\n0x8EA6C5BB\t0x27FDE\n0x8EA6C5BC\t0x27FDB\n0x8EA6C5BD\t0x27FDC\n0x8EA6C5BE\t0x2821B\n0x8EA6C5BF\t0x2821F\n0x8EA6C5C0\t0x2821D\n0x8EA6C5C1\t0x2821C\n0x8EA6C5C2\t0x2821E\n0x8EA6C5C3\t0x28220\n0x8EA6C5C4\t0x28221\n0x8EA6C5C5\t0x484E\n0x8EA6C5C6\t0x282B6\n0x8EA6C5C7\t0x282BC\n0x8EA6C5C8\t0x282C6\n0x8EA6C5C9\t0x282C7\n0x8EA6C5CA\t0x282BA\n0x8EA6C5CB\t0x282BE\n0x8EA6C5CC\t0x282BD\n0x8EA6C5CD\t0x282B5\n0x8EA6C5CE\t0x282B4\n0x8EA6C5CF\t0x2840F\n0x8EA6C5D0\t0x28462\n0x8EA6C5D1\t0x284EB\n0x8EA6C5D2\t0x284D9\n0x8EA6C5D3\t0x284E4\n0x8EA6C5D4\t0x284D7\n0x8EA6C5D5\t0x284D8\n0x8EA6C5D6\t0x284D6\n0x8EA6C5D7\t0x284CE\n0x8EA6C5D8\t0x284DD\n0x8EA6C5D9\t0x284E7\n0x8EA6C5DA\t0x284D2\n0x8EA6C5DB\t0x284C5\n0x8EA6C5DC\t0x284C9\n0x8EA6C5DD\t0x284DB\n0x8EA6C5DE\t0x28692\n0x8EA6C5DF\t0x2868A\n0x8EA6C5E0\t0x2868B\n0x8EA6C5E1\t0x28689\n0x8EA6C5E2\t0x28708\n0x8EA6C5E3\t0x28703\n0x8EA6C5E4\t0x28706\n0x8EA6C5E5\t0x28705\n0x8EA6C5E6\t0x286F5\n0x8EA6C5E7\t0x2870B\n0x8EA6C5E8\t0x286FB\n0x8EA6C5E9\t0x287FC\n0x8EA6C5EA\t0x28801\n0x8EA6C5EB\t0x28802\n0x8EA6C5EC\t0x287FA\n0x8EA6C5ED\t0x28808\n0x8EA6C5EE\t0x287F7\n0x8EA6C5EF\t0x28800\n0x8EA6C5F0\t0x287FF\n0x8EA6C5F1\t0x28806\n0x8EA6C5F2\t0x287F6\n0x8EA6C5F3\t0x287FB\n0x8EA6C5F4\t0x2880A\n0x8EA6C5F5\t0x28925\n0x8EA6C5F6\t0x28943\n0x8EA6C5F7\t0x28944\n0x8EA6C5F8\t0x28C64\n0x8EA6C5F9\t0x28C62\n0x8EA6C5FA\t0x28C5E\n0x8EA6C5FB\t0x28C5B\n0x8EA6C5FC\t0x28CD6\n0x8EA6C5FD\t0x20072\n0x8EA6C5FE\t0x200C2\n0x8EA6C6A1\t0x28E77\n0x8EA6C6A2\t0x28E82\n0x8EA6C6A3\t0x28E7C\n0x8EA6C6A4\t0x28E7D\n0x8EA6C6A5\t0x28E86\n0x8EA6C6A6\t0x28E81\n0x8EA6C6A7\t0x28E84\n0x8EA6C6A8\t0x28E76\n0x8EA6C6A9\t0x28E83\n0x8EA6C6AA\t0x28E7F\n0x8EA6C6AB\t0x28E7E\n0x8EA6C6AC\t0x28F88\n0x8EA6C6AD\t0x28F8D\n0x8EA6C6AE\t0x28F8B\n0x8EA6C6AF\t0x28F91\n0x8EA6C6B0\t0x28F8F\n0x8EA6C6B1\t0x2907C\n0x8EA6C6B2\t0x29079\n0x8EA6C6B3\t0x2907A\n0x8EA6C6B4\t0x291EA\n0x8EA6C6B5\t0x2944C\n0x8EA6C6B6\t0x29599\n0x8EA6C6B7\t0x202D1\n0x8EA6C6B8\t0x2968B\n0x8EA6C6B9\t0x2968D\n0x8EA6C6BA\t0x2968A\n0x8EA6C6BB\t0x2968E\n0x8EA6C6BC\t0x29811\n0x8EA6C6BD\t0x22256\n0x8EA6C6BE\t0x2FA15\n0x8EA6C6BF\t0x20074\n0x8EA6C6C0\t0x200C3\n0x8EA6C6C1\t0x200C4\n0x8EA6C6C2\t0x2011B\n0x8EA6C6C3\t0x2015F\n0x8EA6C6C4\t0x2016A\n0x8EA6C6C5\t0x20169\n0x8EA6C6C6\t0x2016B\n0x8EA6C6C7\t0x2030C\n0x8EA6C6C8\t0x202F6\n0x8EA6C6C9\t0x202ED\n0x8EA6C6CA\t0x20329\n0x8EA6C6CB\t0x202FE\n0x8EA6C6CC\t0x202F1\n0x8EA6C6CD\t0x20317\n0x8EA6C6CE\t0x202FF\n0x8EA6C6CF\t0x202EE\n0x8EA6C6D0\t0x202FD\n0x8EA6C6D1\t0x2031C\n0x8EA6C6D2\t0x202FC\n0x8EA6C6D3\t0x20300\n0x8EA6C6D4\t0x20320\n0x8EA6C6D5\t0x3477\n0x8EA6C6D6\t0x202F9\n0x8EA6C6D7\t0x20367\n0x8EA6C6D8\t0x20308\n0x8EA6C6D9\t0x2049E\n0x8EA6C6DA\t0x204F3\n0x8EA6C6DB\t0x20525\n0x8EA6C6DC\t0x20527\n0x8EA6C6DD\t0x2051F\n0x8EA6C6DE\t0x20565\n0x8EA6C6DF\t0x20563\n0x8EA6C6E0\t0x20594\n0x8EA6C6E1\t0x20597\n0x8EA6C6E2\t0x205F1\n0x8EA6C6E3\t0x2065F\n0x8EA6C6E4\t0x20662\n0x8EA6C6E5\t0x51F2\n0x8EA6C6E6\t0x20660\n0x8EA6C6E7\t0x2F822\n0x8EA6C6E8\t0x2078C\n0x8EA6C6E9\t0x20782\n0x8EA6C6EA\t0x20790\n0x8EA6C6EB\t0x2078B\n0x8EA6C6EC\t0x2078D\n0x8EA6C6ED\t0x20781\n0x8EA6C6EE\t0x2079D\n0x8EA6C6EF\t0x2088E\n0x8EA6C6F0\t0x2088F\n0x8EA6C6F1\t0x20892\n0x8EA6C6F2\t0x20923\n0x8EA6C6F3\t0x20952\n0x8EA6C6F4\t0x2F82E\n0x8EA6C6F5\t0x20A00\n0x8EA6C6F6\t0x20A01\n0x8EA6C6F7\t0x20A02\n0x8EA6C6F8\t0x20A1F\n0x8EA6C6F9\t0x20A8C\n0x8EA6C6FA\t0x20A89\n0x8EA6C6FB\t0x20A8B\n0x8EA6C6FC\t0x20A88\n0x8EA6C6FD\t0x20A8D\n0x8EA6C6FE\t0x20A8F\n0x8EA6C7A1\t0x26385\n0x8EA6C7A2\t0x20B00\n0x8EA6C7A3\t0x20B05\n0x8EA6C7A4\t0x20B01\n0x8EA6C7A5\t0x20B68\n0x8EA6C7A6\t0x20B6E\n0x8EA6C7A7\t0x20B67\n0x8EA6C7A8\t0x20B75\n0x8EA6C7A9\t0x55B6\n0x8EA6C7AA\t0x2F845\n0x8EA6C7AB\t0x20DD7\n0x8EA6C7AC\t0x2F846\n0x8EA6C7AD\t0x20048\n0x8EA6C7AE\t0x20DD4\n0x8EA6C7AF\t0x20DD8\n0x8EA6C7B0\t0x2F847\n0x8EA6C7B1\t0x2F848\n0x8EA6C7B2\t0x20DBA\n0x8EA6C7B3\t0x2F849\n0x8EA6C7B4\t0x20DDB\n0x8EA6C7B5\t0x20DBF\n0x8EA6C7B6\t0x20E35\n0x8EA6C7B7\t0x20DBC\n0x8EA6C7B8\t0x20DD9\n0x8EA6C7B9\t0x35C4\n0x8EA6C7BA\t0x20DDD\n0x8EA6C7BB\t0x20E00\n0x8EA6C7BC\t0x20DD5\n0x8EA6C7BD\t0x20E30\n0x8EA6C7BE\t0x20DBD\n0x8EA6C7BF\t0x20DDC\n0x8EA6C7C0\t0x211FD\n0x8EA6C7C1\t0x211FE\n0x8EA6C7C2\t0x21207\n0x8EA6C7C3\t0x24517\n0x8EA6C7C4\t0x2136F\n0x8EA6C7C5\t0x21369\n0x8EA6C7C6\t0x21370\n0x8EA6C7C7\t0x21367\n0x8EA6C7C8\t0x213A9\n0x8EA6C7C9\t0x21395\n0x8EA6C7CA\t0x21390\n0x8EA6C7CB\t0x2136C\n0x8EA6C7CC\t0x21397\n0x8EA6C7CD\t0x21371\n0x8EA6C7CE\t0x3652\n0x8EA6C7CF\t0x21374\n0x8EA6C7D0\t0x2136D\n0x8EA6C7D1\t0x2138E\n0x8EA6C7D2\t0x2152F\n0x8EA6C7D3\t0x2A31B\n0x8EA6C7D4\t0x215A9\n0x8EA6C7D5\t0x2164E\n0x8EA6C7D6\t0x2F85F\n0x8EA6C7D7\t0x2165A\n0x8EA6C7D8\t0x21648\n0x8EA6C7D9\t0x21655\n0x8EA6C7DA\t0x2164C\n0x8EA6C7DB\t0x21649\n0x8EA6C7DC\t0x2164F\n0x8EA6C7DD\t0x2164A\n0x8EA6C7DE\t0x217D6\n0x8EA6C7DF\t0x217A0\n0x8EA6C7E0\t0x217A9\n0x8EA6C7E1\t0x2F867\n0x8EA6C7E2\t0x2179D\n0x8EA6C7E3\t0x217D4\n0x8EA6C7E4\t0x217A4\n0x8EA6C7E5\t0x217A8\n0x8EA6C7E6\t0x217A6\n0x8EA6C7E7\t0x217E6\n0x8EA6C7E8\t0x2197D\n0x8EA6C7E9\t0x21977\n0x8EA6C7EA\t0x2197A\n0x8EA6C7EB\t0x21A41\n0x8EA6C7EC\t0x21A49\n0x8EA6C7ED\t0x21A59\n0x8EA6C7EE\t0x21A45\n0x8EA6C7EF\t0x21A48\n0x8EA6C7F0\t0x21A40\n0x8EA6C7F1\t0x21B8E\n0x8EA6C7F2\t0x21B95\n0x8EA6C7F3\t0x21B90\n0x8EA6C7F4\t0x21BF7\n0x8EA6C7F5\t0x21BF8\n0x8EA6C7F6\t0x21BF6\n0x8EA6C7F7\t0x21BFB\n0x8EA6C7F8\t0x21C9E\n0x8EA6C7F9\t0x21C9D\n0x8EA6C7FA\t0x21C99\n0x8EA6C7FB\t0x2F877\n0x8EA6C7FC\t0x21CA3\n0x8EA6C7FD\t0x21CA9\n0x8EA6C7FE\t0x21C98\n0x8EA6C8A1\t0x21CA0\n0x8EA6C8A2\t0x21C96\n0x8EA6C8A3\t0x21C94\n0x8EA6C8A4\t0x21C95\n0x8EA6C8A5\t0x21C9F\n0x8EA6C8A6\t0x21CA1\n0x8EA6C8A7\t0x21D21\n0x8EA6C8A8\t0x21D1D\n0x8EA6C8A9\t0x21D1F\n0x8EA6C8AA\t0x21E6D\n0x8EA6C8AB\t0x2F87C\n0x8EA6C8AC\t0x21E9A\n0x8EA6C8AD\t0x21E92\n0x8EA6C8AE\t0x21E7A\n0x8EA6C8AF\t0x21E7D\n0x8EA6C8B0\t0x21EA1\n0x8EA6C8B1\t0x21E9D\n0x8EA6C8B2\t0x21E99\n0x8EA6C8B3\t0x21E6B\n0x8EA6C8B4\t0x21E6E\n0x8EA6C8B5\t0x2F87D\n0x8EA6C8B6\t0x22045\n0x8EA6C8B7\t0x2F884\n0x8EA6C8B8\t0x220FB\n0x8EA6C8B9\t0x220EB\n0x8EA6C8BA\t0x220F2\n0x8EA6C8BB\t0x220F9\n0x8EA6C8BC\t0x2F886\n0x8EA6C8BD\t0x220F8\n0x8EA6C8BE\t0x220ED\n0x8EA6C8BF\t0x22101\n0x8EA6C8C0\t0x220F7\n0x8EA6C8C1\t0x22106\n0x8EA6C8C2\t0x2219B\n0x8EA6C8C3\t0x221CA\n0x8EA6C8C4\t0x386B\n0x8EA6C8C5\t0x5EC3\n0x8EA6C8C6\t0x2226B\n0x8EA6C8C7\t0x2226C\n0x8EA6C8C8\t0x22274\n0x8EA6C8C9\t0x22267\n0x8EA6C8CA\t0x2225B\n0x8EA6C8CB\t0x22260\n0x8EA6C8CC\t0x22276\n0x8EA6C8CD\t0x22263\n0x8EA6C8CE\t0x22261\n0x8EA6C8CF\t0x22328\n0x8EA6C8D0\t0x2235B\n0x8EA6C8D1\t0x2235E\n0x8EA6C8D2\t0x22360\n0x8EA6C8D3\t0x2235D\n0x8EA6C8D4\t0x2235C\n0x8EA6C8D5\t0x223F4\n0x8EA6C8D6\t0x22400\n0x8EA6C8D7\t0x22408\n0x8EA6C8D8\t0x22407\n0x8EA6C8D9\t0x22401\n0x8EA6C8DA\t0x22405\n0x8EA6C8DB\t0x22464\n0x8EA6C8DC\t0x22463\n0x8EA6C8DD\t0x2249E\n0x8EA6C8DE\t0x224A0\n0x8EA6C8DF\t0x224A1\n0x8EA6C8E0\t0x2249F\n0x8EA6C8E1\t0x22526\n0x8EA6C8E2\t0x2252D\n0x8EA6C8E3\t0x22528\n0x8EA6C8E4\t0x2251D\n0x8EA6C8E5\t0x226EC\n0x8EA6C8E6\t0x226E3\n0x8EA6C8E7\t0x226EB\n0x8EA6C8E8\t0x22716\n0x8EA6C8E9\t0x226C8\n0x8EA6C8EA\t0x2661B\n0x8EA6C8EB\t0x226E9\n0x8EA6C8EC\t0x226E4\n0x8EA6C8ED\t0x22724\n0x8EA6C8EE\t0x226D1\n0x8EA6C8EF\t0x3941\n0x8EA6C8F0\t0x226DD\n0x8EA6C8F1\t0x226C2\n0x8EA6C8F2\t0x226CB\n0x8EA6C8F3\t0x226C7\n0x8EA6C8F4\t0x226E7\n0x8EA6C8F5\t0x3950\n0x8EA6C8F6\t0x226EA\n0x8EA6C8F7\t0x2274B\n0x8EA6C8F8\t0x2F8A5\n0x8EA6C8F9\t0x22760\n0x8EA6C8FA\t0x2277D\n0x8EA6C8FB\t0x2273E\n0x8EA6C8FC\t0x2F8A4\n0x8EA6C8FD\t0x22752\n0x8EA6C8FE\t0x2274E\n0x8EA6C9A1\t0x2273C\n0x8EA6C9A2\t0x22732\n0x8EA6C9A3\t0x22730\n0x8EA6C9A4\t0x22723\n0x8EA6C9A5\t0x229CA\n0x8EA6C9A6\t0x229CB\n0x8EA6C9A7\t0x229C9\n0x8EA6C9A8\t0x229C8\n0x8EA6C9A9\t0x229CD\n0x8EA6C9AA\t0x22B98\n0x8EA6C9AB\t0x22BA0\n0x8EA6C9AC\t0x22B9F\n0x8EA6C9AD\t0x22B9C\n0x8EA6C9AE\t0x22BA3\n0x8EA6C9AF\t0x22B97\n0x8EA6C9B0\t0x2F8BE\n0x8EA6C9B1\t0x22BF1\n0x8EA6C9B2\t0x22C09\n0x8EA6C9B3\t0x22C03\n0x8EA6C9B4\t0x22BEA\n0x8EA6C9B5\t0x22C45\n0x8EA6C9B6\t0x22BED\n0x8EA6C9B7\t0x22C05\n0x8EA6C9B8\t0x22C1A\n0x8EA6C9B9\t0x22C15\n0x8EA6C9BA\t0x22C01\n0x8EA6C9BB\t0x22BEC\n0x8EA6C9BC\t0x22C0E\n0x8EA6C9BD\t0x22C17\n0x8EA6C9BE\t0x22C42\n0x8EA6C9BF\t0x22C12\n0x8EA6C9C0\t0x22C10\n0x8EA6C9C1\t0x22BEF\n0x8EA6C9C2\t0x22BFF\n0x8EA6C9C3\t0x22C00\n0x8EA6C9C4\t0x22C0C\n0x8EA6C9C5\t0x22C0F\n0x8EA6C9C6\t0x22C04\n0x8EA6C9C7\t0x22C08\n0x8EA6C9C8\t0x22C14\n0x8EA6C9C9\t0x22C43\n0x8EA6C9CA\t0x2F8BD\n0x8EA6C9CB\t0x22C1B\n0x8EA6C9CC\t0x22C11\n0x8EA6C9CD\t0x22C13\n0x8EA6C9CE\t0x22ECF\n0x8EA6C9CF\t0x22ECE\n0x8EA6C9D0\t0x22F6F\n0x8EA6C9D1\t0x22F6E\n0x8EA6C9D2\t0x22F7A\n0x8EA6C9D3\t0x22F70\n0x8EA6C9D4\t0x22F64\n0x8EA6C9D5\t0x22F5E\n0x8EA6C9D6\t0x22F6C\n0x8EA6C9D7\t0x2F8C9\n0x8EA6C9D8\t0x22F5B\n0x8EA6C9D9\t0x22F61\n0x8EA6C9DA\t0x22F65\n0x8EA6C9DB\t0x2307F\n0x8EA6C9DC\t0x23080\n0x8EA6C9DD\t0x2307C\n0x8EA6C9DE\t0x230A7\n0x8EA6C9DF\t0x230A6\n0x8EA6C9E0\t0x230A1\n0x8EA6C9E1\t0x3AC0\n0x8EA6C9E2\t0x230A8\n0x8EA6C9E3\t0x230A3\n0x8EA6C9E4\t0x230A2\n0x8EA6C9E5\t0x230AD\n0x8EA6C9E6\t0x230A5\n0x8EA6C9E7\t0x23101\n0x8EA6C9E8\t0x230FF\n0x8EA6C9E9\t0x230FC\n0x8EA6C9EA\t0x23100\n0x8EA6C9EB\t0x23135\n0x8EA6C9EC\t0x231EE\n0x8EA6C9ED\t0x231EF\n0x8EA6C9EE\t0x231F6\n0x8EA6C9EF\t0x231E8\n0x8EA6C9F0\t0x231EA\n0x8EA6C9F1\t0x231E3\n0x8EA6C9F2\t0x2321F\n0x8EA6C9F3\t0x3AFC\n0x8EA6C9F4\t0x231E4\n0x8EA6C9F5\t0x231FA\n0x8EA6C9F6\t0x231F1\n0x8EA6C9F7\t0x231FB\n0x8EA6C9F8\t0x2F8D4\n0x8EA6C9F9\t0x2333D\n0x8EA6C9FA\t0x2333C\n0x8EA6C9FB\t0x3479\n0x8EA6C9FC\t0x23378\n0x8EA6C9FD\t0x23377\n0x8EA6C9FE\t0x440B\n0x8EA6CAA1\t0x234D1\n0x8EA6CAA2\t0x234C7\n0x8EA6CAA3\t0x234DF\n0x8EA6CAA4\t0x234D0\n0x8EA6CAA5\t0x234E0\n0x8EA6CAA6\t0x234D6\n0x8EA6CAA7\t0x234D8\n0x8EA6CAA8\t0x23516\n0x8EA6CAA9\t0x2350E\n0x8EA6CAAA\t0x234D9\n0x8EA6CAAB\t0x2350F\n0x8EA6CAAC\t0x23511\n0x8EA6CAAD\t0x234CD\n0x8EA6CAAE\t0x23489\n0x8EA6CAAF\t0x234CE\n0x8EA6CAB0\t0x23514\n0x8EA6CAB1\t0x234DA\n0x8EA6CAB2\t0x23512\n0x8EA6CAB3\t0x234D3\n0x8EA6CAB4\t0x234C2\n0x8EA6CAB5\t0x234E1\n0x8EA6CAB6\t0x234E9\n0x8EA6CAB7\t0x234EA\n0x8EA6CAB8\t0x234DE\n0x8EA6CAB9\t0x23515\n0x8EA6CABA\t0x238D9\n0x8EA6CABB\t0x238D6\n0x8EA6CABC\t0x238CD\n0x8EA6CABD\t0x238D0\n0x8EA6CABE\t0x238D3\n0x8EA6CABF\t0x2F8F0\n0x8EA6CAC0\t0x23982\n0x8EA6CAC1\t0x23985\n0x8EA6CAC2\t0x2397F\n0x8EA6CAC3\t0x2397D\n0x8EA6CAC4\t0x23981\n0x8EA6CAC5\t0x23983\n0x8EA6CAC6\t0x23984\n0x8EA6CAC7\t0x284A0\n0x8EA6CAC8\t0x23A28\n0x8EA6CAC9\t0x23A0F\n0x8EA6CACA\t0x23A17\n0x8EA6CACB\t0x23A1A\n0x8EA6CACC\t0x23A25\n0x8EA6CACD\t0x2F8F7\n0x8EA6CACE\t0x23A9B\n0x8EA6CACF\t0x23A99\n0x8EA6CAD0\t0x23B92\n0x8EA6CAD1\t0x23B8C\n0x8EA6CAD2\t0x23B95\n0x8EA6CAD3\t0x23B8D\n0x8EA6CAD4\t0x23BA3\n0x8EA6CAD5\t0x23B93\n0x8EA6CAD6\t0x23B91\n0x8EA6CAD7\t0x23DDB\n0x8EA6CAD8\t0x23D99\n0x8EA6CAD9\t0x23D9A\n0x8EA6CADA\t0x23E08\n0x8EA6CADB\t0x23E4C\n0x8EA6CADC\t0x23E0D\n0x8EA6CADD\t0x23E01\n0x8EA6CADE\t0x23E4E\n0x8EA6CADF\t0x23E02\n0x8EA6CAE0\t0x23E4D\n0x8EA6CAE1\t0x23E21\n0x8EA6CAE2\t0x23DFC\n0x8EA6CAE3\t0x2F909\n0x8EA6CAE4\t0x23D8A\n0x8EA6CAE5\t0x2F908\n0x8EA6CAE6\t0x23D95\n0x8EA6CAE7\t0x23E11\n0x8EA6CAE8\t0x23E12\n0x8EA6CAE9\t0x23E46\n0x8EA6CAEA\t0x23E1C\n0x8EA6CAEB\t0x23E49\n0x8EA6CAEC\t0x23E0C\n0x8EA6CAED\t0x3D1E\n0x8EA6CAEE\t0x23E13\n0x8EA6CAEF\t0x23E16\n0x8EA6CAF0\t0x23DFD\n0x8EA6CAF1\t0x23E0F\n0x8EA6CAF2\t0x23E1F\n0x8EA6CAF3\t0x24230\n0x8EA6CAF4\t0x2426E\n0x8EA6CAF5\t0x2426B\n0x8EA6CAF6\t0x2429B\n0x8EA6CAF7\t0x2427B\n0x8EA6CAF8\t0x24263\n0x8EA6CAF9\t0x24297\n0x8EA6CAFA\t0x2426D\n0x8EA6CAFB\t0x2429C\n0x8EA6CAFC\t0x24298\n0x8EA6CAFD\t0x2426F\n0x8EA6CAFE\t0x24267\n0x8EA6CBA1\t0x24269\n0x8EA6CBA2\t0x24515\n0x8EA6CBA3\t0x24563\n0x8EA6CBA4\t0x24586\n0x8EA6CBA5\t0x2458A\n0x8EA6CBA6\t0x24587\n0x8EA6CBA7\t0x24588\n0x8EA6CBA8\t0x24585\n0x8EA6CBA9\t0x24589\n0x8EA6CBAA\t0x245CA\n0x8EA6CBAB\t0x245C7\n0x8EA6CBAC\t0x245CB\n0x8EA6CBAD\t0x245CC\n0x8EA6CBAE\t0x245C9\n0x8EA6CBAF\t0x2460D\n0x8EA6CBB0\t0x24683\n0x8EA6CBB1\t0x24684\n0x8EA6CBB2\t0x24678\n0x8EA6CBB3\t0x24682\n0x8EA6CBB4\t0x24673\n0x8EA6CBB5\t0x24679\n0x8EA6CBB6\t0x2468C\n0x8EA6CBB7\t0x247D0\n0x8EA6CBB8\t0x247CF\n0x8EA6CBB9\t0x247D2\n0x8EA6CBBA\t0x247D9\n0x8EA6CBBB\t0x247CC\n0x8EA6CBBC\t0x247EB\n0x8EA6CBBD\t0x247FD\n0x8EA6CBBE\t0x247EC\n0x8EA6CBBF\t0x247E8\n0x8EA6CBC0\t0x247F8\n0x8EA6CBC1\t0x247FA\n0x8EA6CBC2\t0x2F927\n0x8EA6CBC3\t0x3E85\n0x8EA6CBC4\t0x247E1\n0x8EA6CBC5\t0x247FB\n0x8EA6CBC6\t0x248E7\n0x8EA6CBC7\t0x2F92E\n0x8EA6CBC8\t0x249A5\n0x8EA6CBC9\t0x24991\n0x8EA6CBCA\t0x249A6\n0x8EA6CBCB\t0x2497C\n0x8EA6CBCC\t0x24992\n0x8EA6CBCD\t0x249A2\n0x8EA6CBCE\t0x249A0\n0x8EA6CBCF\t0x24AFC\n0x8EA6CBD0\t0x24AFE\n0x8EA6CBD1\t0x24B57\n0x8EA6CBD2\t0x24B53\n0x8EA6CBD3\t0x24B58\n0x8EA6CBD4\t0x24BE7\n0x8EA6CBD5\t0x24C8E\n0x8EA6CBD6\t0x2F938\n0x8EA6CBD7\t0x24C83\n0x8EA6CBD8\t0x24C8B\n0x8EA6CBD9\t0x24C84\n0x8EA6CBDA\t0x3F97\n0x8EA6CBDB\t0x24DA2\n0x8EA6CBDC\t0x24DB7\n0x8EA6CBDD\t0x24DA9\n0x8EA6CBDE\t0x24DA5\n0x8EA6CBDF\t0x24D9F\n0x8EA6CBE0\t0x24DAA\n0x8EA6CBE1\t0x24D97\n0x8EA6CBE2\t0x24DA1\n0x8EA6CBE3\t0x24D9E\n0x8EA6CBE4\t0x24DAB\n0x8EA6CBE5\t0x24D99\n0x8EA6CBE6\t0x24DA3\n0x8EA6CBE7\t0x24F30\n0x8EA6CBE8\t0x24F32\n0x8EA6CBE9\t0x24F2F\n0x8EA6CBEA\t0x24F70\n0x8EA6CBEB\t0x24F6C\n0x8EA6CBEC\t0x24F6F\n0x8EA6CBED\t0x24FE8\n0x8EA6CBEE\t0x24FEE\n0x8EA6CBEF\t0x24FEA\n0x8EA6CBF0\t0x2506D\n0x8EA6CBF1\t0x25076\n0x8EA6CBF2\t0x25070\n0x8EA6CBF3\t0x25071\n0x8EA6CBF4\t0x2506C\n0x8EA6CBF5\t0x251EB\n0x8EA6CBF6\t0x251B5\n0x8EA6CBF7\t0x25196\n0x8EA6CBF8\t0x25190\n0x8EA6CBF9\t0x2518D\n0x8EA6CBFA\t0x2F949\n0x8EA6CBFB\t0x251A2\n0x8EA6CBFC\t0x251B0\n0x8EA6CBFD\t0x25192\n0x8EA6CBFE\t0x251A0\n0x8EA6CCA1\t0x25193\n0x8EA6CCA2\t0x251C3\n0x8EA6CCA3\t0x2518E\n0x8EA6CCA4\t0x251B6\n0x8EA6CCA5\t0x2519D\n0x8EA6CCA6\t0x25195\n0x8EA6CCA7\t0x251B3\n0x8EA6CCA8\t0x251A4\n0x8EA6CCA9\t0x25370\n0x8EA6CCAA\t0x253D4\n0x8EA6CCAB\t0x4093\n0x8EA6CCAC\t0x253CF\n0x8EA6CCAD\t0x20170\n0x8EA6CCAE\t0x25494\n0x8EA6CCAF\t0x7861\n0x8EA6CCB0\t0x254C0\n0x8EA6CCB1\t0x254B4\n0x8EA6CCB2\t0x254C1\n0x8EA6CCB3\t0x40B2\n0x8EA6CCB4\t0x254BD\n0x8EA6CCB5\t0x254AF\n0x8EA6CCB6\t0x25677\n0x8EA6CCB7\t0x25678\n0x8EA6CCB8\t0x2566B\n0x8EA6CCB9\t0x2566D\n0x8EA6CCBA\t0x2566E\n0x8EA6CCBB\t0x25672\n0x8EA6CCBC\t0x2566F\n0x8EA6CCBD\t0x25671\n0x8EA6CCBE\t0x230AB\n0x8EA6CCBF\t0x2568C\n0x8EA6CCC0\t0x2573F\n0x8EA6CCC1\t0x257B6\n0x8EA6CCC2\t0x257B7\n0x8EA6CCC3\t0x7A06\n0x8EA6CCC4\t0x257BB\n0x8EA6CCC5\t0x257B8\n0x8EA6CCC6\t0x2079C\n0x8EA6CCC7\t0x257B9\n0x8EA6CCC8\t0x7A01\n0x8EA6CCC9\t0x2598B\n0x8EA6CCCA\t0x2597A\n0x8EA6CCCB\t0x25984\n0x8EA6CCCC\t0x25988\n0x8EA6CCCD\t0x25991\n0x8EA6CCCE\t0x25979\n0x8EA6CCCF\t0x2598E\n0x8EA6CCD0\t0x25980\n0x8EA6CCD1\t0x25982\n0x8EA6CCD2\t0x2597C\n0x8EA6CCD3\t0x41A4\n0x8EA6CCD4\t0x25A84\n0x8EA6CCD5\t0x25A7F\n0x8EA6CCD6\t0x41F2\n0x8EA6CCD7\t0x25B3B\n0x8EA6CCD8\t0x25B71\n0x8EA6CCD9\t0x25B3D\n0x8EA6CCDA\t0x25B30\n0x8EA6CCDB\t0x41F1\n0x8EA6CCDC\t0x25B3E\n0x8EA6CCDD\t0x25B38\n0x8EA6CCDE\t0x25E5E\n0x8EA6CCDF\t0x25E64\n0x8EA6CCE0\t0x4281\n0x8EA6CCE1\t0x25E5D\n0x8EA6CCE2\t0x25E6D\n0x8EA6CCE3\t0x25E4F\n0x8EA6CCE4\t0x25E62\n0x8EA6CCE5\t0x25E5F\n0x8EA6CCE6\t0x25FEC\n0x8EA6CCE7\t0x25FF2\n0x8EA6CCE8\t0x25FF4\n0x8EA6CCE9\t0x25FF7\n0x8EA6CCEA\t0x25FF6\n0x8EA6CCEB\t0x26007\n0x8EA6CCEC\t0x25FED\n0x8EA6CCED\t0x25FEA\n0x8EA6CCEE\t0x25FF0\n0x8EA6CCEF\t0x25FF8\n0x8EA6CCF0\t0x25FF3\n0x8EA6CCF1\t0x42DC\n0x8EA6CCF2\t0x2F972\n0x8EA6CCF3\t0x26231\n0x8EA6CCF4\t0x2622F\n0x8EA6CCF5\t0x262B6\n0x8EA6CCF6\t0x262AE\n0x8EA6CCF7\t0x262AA\n0x8EA6CCF8\t0x262BF\n0x8EA6CCF9\t0x262CC\n0x8EA6CCFA\t0x262C7\n0x8EA6CCFB\t0x26C83\n0x8EA6CCFC\t0x26380\n0x8EA6CCFD\t0x2637B\n0x8EA6CCFE\t0x2637F\n0x8EA6CDA1\t0x2637D\n0x8EA6CDA2\t0x26383\n0x8EA6CDA3\t0x2F978\n0x8EA6CDA4\t0x26446\n0x8EA6CDA5\t0x2642D\n0x8EA6CDA6\t0x26425\n0x8EA6CDA7\t0x26426\n0x8EA6CDA8\t0x2642C\n0x8EA6CDA9\t0x26437\n0x8EA6CDAA\t0x26431\n0x8EA6CDAB\t0x26433\n0x8EA6CDAC\t0x26432\n0x8EA6CDAD\t0x26427\n0x8EA6CDAE\t0x2642A\n0x8EA6CDAF\t0x2642E\n0x8EA6CDB0\t0x2642F\n0x8EA6CDB1\t0x264C0\n0x8EA6CDB2\t0x26571\n0x8EA6CDB3\t0x26561\n0x8EA6CDB4\t0x26562\n0x8EA6CDB5\t0x26566\n0x8EA6CDB6\t0x26618\n0x8EA6CDB7\t0x266C5\n0x8EA6CDB8\t0x266C3\n0x8EA6CDB9\t0x266C4\n0x8EA6CDBA\t0x266C2\n0x8EA6CDBB\t0x266AE\n0x8EA6CDBC\t0x26710\n0x8EA6CDBD\t0x26708\n0x8EA6CDBE\t0x2671F\n0x8EA6CDBF\t0x2673A\n0x8EA6CDC0\t0x2673B\n0x8EA6CDC1\t0x26736\n0x8EA6CDC2\t0x2670C\n0x8EA6CDC3\t0x26706\n0x8EA6CDC4\t0x2672A\n0x8EA6CDC5\t0x26757\n0x8EA6CDC6\t0x26750\n0x8EA6CDC7\t0x26720\n0x8EA6CDC8\t0x2F985\n0x8EA6CDC9\t0x2672C\n0x8EA6CDCA\t0x26721\n0x8EA6CDCB\t0x2670B\n0x8EA6CDCC\t0x26719\n0x8EA6CDCD\t0x26735\n0x8EA6CDCE\t0x26718\n0x8EA6CDCF\t0x2670F\n0x8EA6CDD0\t0x26713\n0x8EA6CDD1\t0x26755\n0x8EA6CDD2\t0x26739\n0x8EA6CDD3\t0x2671A\n0x8EA6CDD4\t0x440C\n0x8EA6CDD5\t0x26717\n0x8EA6CDD6\t0x268E4\n0x8EA6CDD7\t0x268E9\n0x8EA6CDD8\t0x2458B\n0x8EA6CDD9\t0x26910\n0x8EA6CDDA\t0x26912\n0x8EA6CDDB\t0x2693F\n0x8EA6CDDC\t0x2696E\n0x8EA6CDDD\t0x24518\n0x8EA6CDDE\t0x2F98C\n0x8EA6CDDF\t0x269D6\n0x8EA6CDE0\t0x269D5\n0x8EA6CDE1\t0x269D7\n0x8EA6CDE2\t0x20B02\n0x8EA6CDE3\t0x446D\n0x8EA6CDE4\t0x26A31\n0x8EA6CDE5\t0x26A30\n0x8EA6CDE6\t0x26A3A\n0x8EA6CDE7\t0x26B85\n0x8EA6CDE8\t0x26B6B\n0x8EA6CDE9\t0x26C48\n0x8EA6CDEA\t0x26C4B\n0x8EA6CDEB\t0x26C37\n0x8EA6CDEC\t0x26C7B\n0x8EA6CDED\t0x26C6C\n0x8EA6CDEE\t0x26C85\n0x8EA6CDEF\t0x26C65\n0x8EA6CDF0\t0x26C36\n0x8EA6CDF1\t0x26C86\n0x8EA6CDF2\t0x26C34\n0x8EA6CDF3\t0x26C68\n0x8EA6CDF4\t0x26C5A\n0x8EA6CDF5\t0x26C58\n0x8EA6CDF6\t0x26C72\n0x8EA6CDF7\t0x26C6A\n0x8EA6CDF8\t0x26BD3\n0x8EA6CDF9\t0x26C3C\n0x8EA6CDFA\t0x26C33\n0x8EA6CDFB\t0x26C3B\n0x8EA6CDFC\t0x26C4D\n0x8EA6CDFD\t0x26C4F\n0x8EA6CDFE\t0x26C7C\n0x8EA6CEA1\t0x26CB0\n0x8EA6CEA2\t0x26C5B\n0x8EA6CEA3\t0x26C55\n0x8EA6CEA4\t0x26C64\n0x8EA6CEA5\t0x26C6B\n0x8EA6CEA6\t0x26C53\n0x8EA6CEA7\t0x44E6\n0x8EA6CEA8\t0x26C57\n0x8EA6CEA9\t0x26C5E\n0x8EA6CEAA\t0x26C6D\n0x8EA6CEAB\t0x26C35\n0x8EA6CEAC\t0x26C69\n0x8EA6CEAD\t0x26C59\n0x8EA6CEAE\t0x26C66\n0x8EA6CEAF\t0x26C50\n0x8EA6CEB0\t0x26C51\n0x8EA6CEB1\t0x26C5C\n0x8EA6CEB2\t0x26D5D\n0x8EA6CEB3\t0x26C87\n0x8EA6CEB4\t0x26C78\n0x8EA6CEB5\t0x26C49\n0x8EA6CEB6\t0x26C4E\n0x8EA6CEB7\t0x26BF1\n0x8EA6CEB8\t0x26C73\n0x8EA6CEB9\t0x26C88\n0x8EA6CEBA\t0x26BCF\n0x8EA6CEBB\t0x2F9A4\n0x8EA6CEBC\t0x271B1\n0x8EA6CEBD\t0x271B3\n0x8EA6CEBE\t0x2729C\n0x8EA6CEBF\t0x272A4\n0x8EA6CEC0\t0x27290\n0x8EA6CEC1\t0x272B8\n0x8EA6CEC2\t0x272A0\n0x8EA6CEC3\t0x2729D\n0x8EA6CEC4\t0x272A8\n0x8EA6CEC5\t0x272A9\n0x8EA6CEC6\t0x2F9B9\n0x8EA6CEC7\t0x272B1\n0x8EA6CEC8\t0x27293\n0x8EA6CEC9\t0x2729B\n0x8EA6CECA\t0x272A2\n0x8EA6CECB\t0x272A1\n0x8EA6CECC\t0x272B0\n0x8EA6CECD\t0x272A7\n0x8EA6CECE\t0x275B3\n0x8EA6CECF\t0x8849\n0x8EA6CED0\t0x275B4\n0x8EA6CED1\t0x275F1\n0x8EA6CED2\t0x275ED\n0x8EA6CED3\t0x275EC\n0x8EA6CED4\t0x27668\n0x8EA6CED5\t0x27675\n0x8EA6CED6\t0x2766A\n0x8EA6CED7\t0x27662\n0x8EA6CED8\t0x27667\n0x8EA6CED9\t0x27660\n0x8EA6CEDA\t0x27677\n0x8EA6CEDB\t0x2765F\n0x8EA6CEDC\t0x27679\n0x8EA6CEDD\t0x27823\n0x8EA6CEDE\t0x27821\n0x8EA6CEDF\t0x2781C\n0x8EA6CEE0\t0x8999\n0x8EA6CEE1\t0x2781F\n0x8EA6CEE2\t0x2781E\n0x8EA6CEE3\t0x278D6\n0x8EA6CEE4\t0x278D3\n0x8EA6CEE5\t0x278D9\n0x8EA6CEE6\t0x278D7\n0x8EA6CEE7\t0x278D4\n0x8EA6CEE8\t0x278DC\n0x8EA6CEE9\t0x278D8\n0x8EA6CEEA\t0x279A3\n0x8EA6CEEB\t0x46D1\n0x8EA6CEEC\t0x279BE\n0x8EA6CEED\t0x279A9\n0x8EA6CEEE\t0x279A1\n0x8EA6CEEF\t0x279A0\n0x8EA6CEF0\t0x279AB\n0x8EA6CEF1\t0x279A2\n0x8EA6CEF2\t0x279BA\n0x8EA6CEF3\t0x279C2\n0x8EA6CEF4\t0x2799C\n0x8EA6CEF5\t0x279BB\n0x8EA6CEF6\t0x279AA\n0x8EA6CEF7\t0x279AC\n0x8EA6CEF8\t0x279A5\n0x8EA6CEF9\t0x279C1\n0x8EA6CEFA\t0x472C\n0x8EA6CEFB\t0x27BE2\n0x8EA6CEFC\t0x27C36\n0x8EA6CEFD\t0x27C3D\n0x8EA6CEFE\t0x27C3A\n0x8EA6CFA1\t0x22461\n0x8EA6CFA2\t0x27C48\n0x8EA6CFA3\t0x27C3C\n0x8EA6CFA4\t0x27CB7\n0x8EA6CFA5\t0x27CAC\n0x8EA6CFA6\t0x27CB3\n0x8EA6CFA7\t0x27CB6\n0x8EA6CFA8\t0x27CB2\n0x8EA6CFA9\t0x476E\n0x8EA6CFAA\t0x27D5D\n0x8EA6CFAB\t0x27D49\n0x8EA6CFAC\t0x27D4E\n0x8EA6CFAD\t0x27D4F\n0x8EA6CFAE\t0x27D4D\n0x8EA6CFAF\t0x27D5C\n0x8EA6CFB0\t0x27E5D\n0x8EA6CFB1\t0x27EBB\n0x8EA6CFB2\t0x27ECE\n0x8EA6CFB3\t0x27EBF\n0x8EA6CFB4\t0x27EBA\n0x8EA6CFB5\t0x27EC3\n0x8EA6CFB6\t0x47E5\n0x8EA6CFB7\t0x28006\n0x8EA6CFB8\t0x27FF8\n0x8EA6CFB9\t0x27FFE\n0x8EA6CFBA\t0x28013\n0x8EA6CFBB\t0x27FF6\n0x8EA6CFBC\t0x47E6\n0x8EA6CFBD\t0x28234\n0x8EA6CFBE\t0x2822D\n0x8EA6CFBF\t0x2822A\n0x8EA6CFC0\t0x28235\n0x8EA6CFC1\t0x2822C\n0x8EA6CFC2\t0x282D4\n0x8EA6CFC3\t0x282DA\n0x8EA6CFC4\t0x282D3\n0x8EA6CFC5\t0x282D2\n0x8EA6CFC6\t0x282CE\n0x8EA6CFC7\t0x282CF\n0x8EA6CFC8\t0x489F\n0x8EA6CFC9\t0x284FD\n0x8EA6CFCA\t0x2850B\n0x8EA6CFCB\t0x284FE\n0x8EA6CFCC\t0x284F8\n0x8EA6CFCD\t0x284F7\n0x8EA6CFCE\t0x28517\n0x8EA6CFCF\t0x284FA\n0x8EA6CFD0\t0x284F9\n0x8EA6CFD1\t0x28500\n0x8EA6CFD2\t0x284F5\n0x8EA6CFD3\t0x284F1\n0x8EA6CFD4\t0x28503\n0x8EA6CFD5\t0x28505\n0x8EA6CFD6\t0x2851C\n0x8EA6CFD7\t0x286AC\n0x8EA6CFD8\t0x2869A\n0x8EA6CFD9\t0x286AD\n0x8EA6CFDA\t0x286A0\n0x8EA6CFDB\t0x2871B\n0x8EA6CFDC\t0x28725\n0x8EA6CFDD\t0x28724\n0x8EA6CFDE\t0x28726\n0x8EA6CFDF\t0x28727\n0x8EA6CFE0\t0x28728\n0x8EA6CFE1\t0x2872A\n0x8EA6CFE2\t0x2871A\n0x8EA6CFE3\t0x2872E\n0x8EA6CFE4\t0x28715\n0x8EA6CFE5\t0x28815\n0x8EA6CFE6\t0x28814\n0x8EA6CFE7\t0x28817\n0x8EA6CFE8\t0x28818\n0x8EA6CFE9\t0x2880F\n0x8EA6CFEA\t0x28813\n0x8EA6CFEB\t0x2880B\n0x8EA6CFEC\t0x28822\n0x8EA6CFED\t0x2137A\n0x8EA6CFEE\t0x28926\n0x8EA6CFEF\t0x921F\n0x8EA6CFF0\t0x28951\n0x8EA6CFF1\t0x2894D\n0x8EA6CFF2\t0x2894E\n0x8EA6CFF3\t0x2894A\n0x8EA6CFF4\t0x2894B\n0x8EA6CFF5\t0x2894C\n0x8EA6CFF6\t0x28950\n0x8EA6CFF7\t0x28962\n0x8EA6CFF8\t0x2894F\n0x8EA6CFF9\t0x28952\n0x8EA6CFFA\t0x28C68\n0x8EA6CFFB\t0x28C69\n0x8EA6CFFC\t0x28CE5\n0x8EA6CFFD\t0x28CF0\n0x8EA6CFFE\t0x28CE1\n0x8EA6D0A1\t0x28CE2\n0x8EA6D0A2\t0x2F9F2\n0x8EA6D0A3\t0x28EA5\n0x8EA6D0A4\t0x28EA9\n0x8EA6D0A5\t0x28EA4\n0x8EA6D0A6\t0x28EAF\n0x8EA6D0A7\t0x28EAC\n0x8EA6D0A8\t0x28EAE\n0x8EA6D0A9\t0x28EAA\n0x8EA6D0AA\t0x28F95\n0x8EA6D0AB\t0x28F99\n0x8EA6D0AC\t0x28F93\n0x8EA6D0AD\t0x28F9D\n0x8EA6D0AE\t0x28F98\n0x8EA6D0AF\t0x28F9C\n0x8EA6D0B0\t0x28F97\n0x8EA6D0B1\t0x4A0D\n0x8EA6D0B2\t0x29089\n0x8EA6D0B3\t0x29087\n0x8EA6D0B4\t0x291D7\n0x8EA6D0B5\t0x291ED\n0x8EA6D0B6\t0x291F1\n0x8EA6D0B7\t0x291F0\n0x8EA6D0B8\t0x29205\n0x8EA6D0B9\t0x29203\n0x8EA6D0BA\t0x29204\n0x8EA6D0BB\t0x2925F\n0x8EA6D0BC\t0x29457\n0x8EA6D0BD\t0x2959C\n0x8EA6D0BE\t0x295A1\n0x8EA6D0BF\t0x2959A\n0x8EA6D0C0\t0x2968F\n0x8EA6D0C1\t0x29693\n0x8EA6D0C2\t0x2969E\n0x8EA6D0C3\t0x296A3\n0x8EA6D0C4\t0x29698\n0x8EA6D0C5\t0x29699\n0x8EA6D0C6\t0x29695\n0x8EA6D0C7\t0x2986E\n0x8EA6D0C8\t0x2986A\n0x8EA6D0C9\t0x29AF4\n0x8EA6D0CA\t0x29AF7\n0x8EA6D0CB\t0x29C79\n0x8EA6D0CC\t0x29F8F\n0x8EA6D0CD\t0x29F91\n0x8EA6D0CE\t0x2A00B\n0x8EA6D0CF\t0x2A502\n0x8EA6D0D0\t0x20084\n0x8EA6D0D1\t0x20104\n0x8EA6D0D2\t0x20180\n0x8EA6D0D3\t0x2032F\n0x8EA6D0D4\t0x2033F\n0x8EA6D0D5\t0x2033B\n0x8EA6D0D6\t0x20362\n0x8EA6D0D7\t0x20344\n0x8EA6D0D8\t0x20333\n0x8EA6D0D9\t0x2035F\n0x8EA6D0DA\t0x2032B\n0x8EA6D0DB\t0x2F809\n0x8EA6D0DC\t0x20339\n0x8EA6D0DD\t0x20336\n0x8EA6D0DE\t0x20348\n0x8EA6D0DF\t0x20335\n0x8EA6D0E0\t0x2036C\n0x8EA6D0E1\t0x20358\n0x8EA6D0E2\t0x2033A\n0x8EA6D0E3\t0x204A8\n0x8EA6D0E4\t0x204F4\n0x8EA6D0E5\t0x20529\n0x8EA6D0E6\t0x2059A\n0x8EA6D0E7\t0x20600\n0x8EA6D0E8\t0x207BB\n0x8EA6D0E9\t0x207BD\n0x8EA6D0EA\t0x207B7\n0x8EA6D0EB\t0x207B2\n0x8EA6D0EC\t0x34F8\n0x8EA6D0ED\t0x207A8\n0x8EA6D0EE\t0x207AB\n0x8EA6D0EF\t0x207A6\n0x8EA6D0F0\t0x207BC\n0x8EA6D0F1\t0x20897\n0x8EA6D0F2\t0x20896\n0x8EA6D0F3\t0x208F8\n0x8EA6D0F4\t0x5313\n0x8EA6D0F5\t0x20951\n0x8EA6D0F6\t0x3533\n0x8EA6D0F7\t0x209B5\n0x8EA6D0F8\t0x209B4\n0x8EA6D0F9\t0x209B6\n0x8EA6D0FA\t0x353C\n0x8EA6D0FB\t0x209B7\n0x8EA6D0FC\t0x20A05\n0x8EA6D0FD\t0x20A23\n0x8EA6D0FE\t0x20A95\n0x8EA6D1A1\t0x20A98\n0x8EA6D1A2\t0x354F\n0x8EA6D1A3\t0x20A94\n0x8EA6D1A4\t0x20A93\n0x8EA6D1A5\t0x20B07\n0x8EA6D1A6\t0x20B73\n0x8EA6D1A7\t0x20B71\n0x8EA6D1A8\t0x20B72\n0x8EA6D1A9\t0x20B78\n0x8EA6D1AA\t0x20E5F\n0x8EA6D1AB\t0x20E6A\n0x8EA6D1AC\t0x20E67\n0x8EA6D1AD\t0x20E6B\n0x8EA6D1AE\t0x20E69\n0x8EA6D1AF\t0x20E8E\n0x8EA6D1B0\t0x20E49\n0x8EA6D1B1\t0x20E80\n0x8EA6D1B2\t0x35DC\n0x8EA6D1B3\t0x20E44\n0x8EA6D1B4\t0x20E8F\n0x8EA6D1B5\t0x20E45\n0x8EA6D1B6\t0x2F84C\n0x8EA6D1B7\t0x20E4F\n0x8EA6D1B8\t0x20E63\n0x8EA6D1B9\t0x20E36\n0x8EA6D1BA\t0x20E48\n0x8EA6D1BB\t0x20E5C\n0x8EA6D1BC\t0x20E93\n0x8EA6D1BD\t0x20E61\n0x8EA6D1BE\t0x20E60\n0x8EA6D1BF\t0x20E4E\n0x8EA6D1C0\t0x20E5E\n0x8EA6D1C1\t0x20E3F\n0x8EA6D1C2\t0x20EA4\n0x8EA6D1C3\t0x55E0\n0x8EA6D1C4\t0x20E68\n0x8EA6D1C5\t0x2120B\n0x8EA6D1C6\t0x21211\n0x8EA6D1C7\t0x2120D\n0x8EA6D1C8\t0x2120E\n0x8EA6D1C9\t0x213C2\n0x8EA6D1CA\t0x2F857\n0x8EA6D1CB\t0x213B0\n0x8EA6D1CC\t0x213C3\n0x8EA6D1CD\t0x213C8\n0x8EA6D1CE\t0x21365\n0x8EA6D1CF\t0x213D7\n0x8EA6D1D0\t0x213BD\n0x8EA6D1D1\t0x213B8\n0x8EA6D1D2\t0x213B6\n0x8EA6D1D3\t0x213C7\n0x8EA6D1D4\t0x213BC\n0x8EA6D1D5\t0x213B1\n0x8EA6D1D6\t0x213AF\n0x8EA6D1D7\t0x2F85B\n0x8EA6D1D8\t0x21535\n0x8EA6D1D9\t0x21530\n0x8EA6D1DA\t0x2155D\n0x8EA6D1DB\t0x20B76\n0x8EA6D1DC\t0x2156F\n0x8EA6D1DD\t0x215B0\n0x8EA6D1DE\t0x2F85E\n0x8EA6D1DF\t0x215B4\n0x8EA6D1E0\t0x2165C\n0x8EA6D1E1\t0x2165D\n0x8EA6D1E2\t0x21808\n0x8EA6D1E3\t0x217EE\n0x8EA6D1E4\t0x2180B\n0x8EA6D1E5\t0x217F2\n0x8EA6D1E6\t0x217FD\n0x8EA6D1E7\t0x217F1\n0x8EA6D1E8\t0x21810\n0x8EA6D1E9\t0x2F868\n0x8EA6D1EA\t0x21814\n0x8EA6D1EB\t0x2198B\n0x8EA6D1EC\t0x2198C\n0x8EA6D1ED\t0x21985\n0x8EA6D1EE\t0x21A7A\n0x8EA6D1EF\t0x21A6C\n0x8EA6D1F0\t0x21A60\n0x8EA6D1F1\t0x21A67\n0x8EA6D1F2\t0x21A66\n0x8EA6D1F3\t0x21A6A\n0x8EA6D1F4\t0x21A5F\n0x8EA6D1F5\t0x21A6D\n0x8EA6D1F6\t0x21A68\n0x8EA6D1F7\t0x21A64\n0x8EA6D1F8\t0x21B3A\n0x8EA6D1F9\t0x21B3B\n0x8EA6D1FA\t0x21B39\n0x8EA6D1FB\t0x21C02\n0x8EA6D1FC\t0x21C04\n0x8EA6D1FD\t0x21C03\n0x8EA6D1FE\t0x21CB4\n0x8EA6D2A1\t0x21CB3\n0x8EA6D2A2\t0x21CBB\n0x8EA6D2A3\t0x21CAC\n0x8EA6D2A4\t0x21CB6\n0x8EA6D2A5\t0x21CB1\n0x8EA6D2A6\t0x21CAF\n0x8EA6D2A7\t0x21CB5\n0x8EA6D2A8\t0x21CBE\n0x8EA6D2A9\t0x21CB2\n0x8EA6D2AA\t0x21D24\n0x8EA6D2AB\t0x21EB6\n0x8EA6D2AC\t0x21EB9\n0x8EA6D2AD\t0x21EAC\n0x8EA6D2AE\t0x21EB0\n0x8EA6D2AF\t0x21ED7\n0x8EA6D2B0\t0x21EBB\n0x8EA6D2B1\t0x21EFE\n0x8EA6D2B2\t0x21ECB\n0x8EA6D2B3\t0x2F87F\n0x8EA6D2B4\t0x37F5\n0x8EA6D2B5\t0x21EB3\n0x8EA6D2B6\t0x21EBE\n0x8EA6D2B7\t0x21ECD\n0x8EA6D2B8\t0x21EBC\n0x8EA6D2B9\t0x21EBA\n0x8EA6D2BA\t0x21EC7\n0x8EA6D2BB\t0x22116\n0x8EA6D2BC\t0x2211B\n0x8EA6D2BD\t0x22117\n0x8EA6D2BE\t0x22115\n0x8EA6D2BF\t0x2219F\n0x8EA6D2C0\t0x2F88E\n0x8EA6D2C1\t0x22282\n0x8EA6D2C2\t0x22283\n0x8EA6D2C3\t0x2228E\n0x8EA6D2C4\t0x2226A\n0x8EA6D2C5\t0x22289\n0x8EA6D2C6\t0x22294\n0x8EA6D2C7\t0x22286\n0x8EA6D2C8\t0x22290\n0x8EA6D2C9\t0x22362\n0x8EA6D2CA\t0x22390\n0x8EA6D2CB\t0x2240C\n0x8EA6D2CC\t0x2240F\n0x8EA6D2CD\t0x38C3\n0x8EA6D2CE\t0x224A5\n0x8EA6D2CF\t0x224A7\n0x8EA6D2D0\t0x224A6\n0x8EA6D2D1\t0x224A4\n0x8EA6D2D2\t0x22535\n0x8EA6D2D3\t0x22538\n0x8EA6D2D4\t0x22536\n0x8EA6D2D5\t0x22543\n0x8EA6D2D6\t0x22547\n0x8EA6D2D7\t0x22537\n0x8EA6D2D8\t0x22743\n0x8EA6D2D9\t0x227A2\n0x8EA6D2DA\t0x22751\n0x8EA6D2DB\t0x22772\n0x8EA6D2DC\t0x2276D\n0x8EA6D2DD\t0x2272F\n0x8EA6D2DE\t0x22754\n0x8EA6D2DF\t0x2276E\n0x8EA6D2E0\t0x22755\n0x8EA6D2E1\t0x22737\n0x8EA6D2E2\t0x2274F\n0x8EA6D2E3\t0x22750\n0x8EA6D2E4\t0x6139\n0x8EA6D2E5\t0x2279E\n0x8EA6D2E6\t0x2F8A8\n0x8EA6D2E7\t0x227B3\n0x8EA6D2E8\t0x227A7\n0x8EA6D2E9\t0x3971\n0x8EA6D2EA\t0x227F9\n0x8EA6D2EB\t0x22791\n0x8EA6D2EC\t0x2F8A7\n0x8EA6D2ED\t0x227B6\n0x8EA6D2EE\t0x227DD\n0x8EA6D2EF\t0x22799\n0x8EA6D2F0\t0x229DF\n0x8EA6D2F1\t0x229D5\n0x8EA6D2F2\t0x247F5\n0x8EA6D2F3\t0x22C28\n0x8EA6D2F4\t0x22C40\n0x8EA6D2F5\t0x22C71\n0x8EA6D2F6\t0x22C98\n0x8EA6D2F7\t0x22C95\n0x8EA6D2F8\t0x22C65\n0x8EA6D2F9\t0x22C78\n0x8EA6D2FA\t0x22C7F\n0x8EA6D2FB\t0x22C60\n0x8EA6D2FC\t0x22C7C\n0x8EA6D2FD\t0x22C96\n0x8EA6D2FE\t0x22C6A\n0x8EA6D3A1\t0x22C79\n0x8EA6D3A2\t0x22C73\n0x8EA6D3A3\t0x22C72\n0x8EA6D3A4\t0x22C7B\n0x8EA6D3A5\t0x22C70\n0x8EA6D3A6\t0x22ED5\n0x8EA6D3A7\t0x22ED7\n0x8EA6D3A8\t0x22F8F\n0x8EA6D3A9\t0x22F89\n0x8EA6D3AA\t0x22F9E\n0x8EA6D3AB\t0x22F87\n0x8EA6D3AC\t0x22FA0\n0x8EA6D3AD\t0x22F8D\n0x8EA6D3AE\t0x22F88\n0x8EA6D3AF\t0x22F7F\n0x8EA6D3B0\t0x22F8C\n0x8EA6D3B1\t0x22F93\n0x8EA6D3B2\t0x23059\n0x8EA6D3B3\t0x295B0\n0x8EA6D3B4\t0x230B1\n0x8EA6D3B5\t0x251F4\n0x8EA6D3B6\t0x230AF\n0x8EA6D3B7\t0x230B2\n0x8EA6D3B8\t0x23108\n0x8EA6D3B9\t0x2310A\n0x8EA6D3BA\t0x23136\n0x8EA6D3BB\t0x23137\n0x8EA6D3BC\t0x2F8CF\n0x8EA6D3BD\t0x3B01\n0x8EA6D3BE\t0x23236\n0x8EA6D3BF\t0x23229\n0x8EA6D3C0\t0x2324A\n0x8EA6D3C1\t0x23226\n0x8EA6D3C2\t0x23228\n0x8EA6D3C3\t0x23224\n0x8EA6D3C4\t0x2322A\n0x8EA6D3C5\t0x23248\n0x8EA6D3C6\t0x23344\n0x8EA6D3C7\t0x23384\n0x8EA6D3C8\t0x2338C\n0x8EA6D3C9\t0x234C4\n0x8EA6D3CA\t0x234DC\n0x8EA6D3CB\t0x23587\n0x8EA6D3CC\t0x23553\n0x8EA6D3CD\t0x2357F\n0x8EA6D3CE\t0x23531\n0x8EA6D3CF\t0x23551\n0x8EA6D3D0\t0x2354B\n0x8EA6D3D1\t0x23552\n0x8EA6D3D2\t0x23580\n0x8EA6D3D3\t0x235A5\n0x8EA6D3D4\t0x23581\n0x8EA6D3D5\t0x23543\n0x8EA6D3D6\t0x23534\n0x8EA6D3D7\t0x23536\n0x8EA6D3D8\t0x23532\n0x8EA6D3D9\t0x23548\n0x8EA6D3DA\t0x23549\n0x8EA6D3DB\t0x2353C\n0x8EA6D3DC\t0x2354D\n0x8EA6D3DD\t0x2354A\n0x8EA6D3DE\t0x2F8E6\n0x8EA6D3DF\t0x2358A\n0x8EA6D3E0\t0x23546\n0x8EA6D3E1\t0x2353E\n0x8EA6D3E2\t0x23583\n0x8EA6D3E3\t0x23550\n0x8EA6D3E4\t0x235B4\n0x8EA6D3E5\t0x238F0\n0x8EA6D3E6\t0x238E4\n0x8EA6D3E7\t0x238E3\n0x8EA6D3E8\t0x238E5\n0x8EA6D3E9\t0x238E6\n0x8EA6D3EA\t0x238E7\n0x8EA6D3EB\t0x238E1\n0x8EA6D3EC\t0x238EF\n0x8EA6D3ED\t0x238E8\n0x8EA6D3EE\t0x238DD\n0x8EA6D3EF\t0x23903\n0x8EA6D3F0\t0x23988\n0x8EA6D3F1\t0x23A26\n0x8EA6D3F2\t0x23A16\n0x8EA6D3F3\t0x23A3B\n0x8EA6D3F4\t0x23A2F\n0x8EA6D3F5\t0x23A39\n0x8EA6D3F6\t0x23A34\n0x8EA6D3F7\t0x2F8F4\n0x8EA6D3F8\t0x23A35\n0x8EA6D3F9\t0x23A31\n0x8EA6D3FA\t0x23A38\n0x8EA6D3FB\t0x20B81\n0x8EA6D3FC\t0x23AAA\n0x8EA6D3FD\t0x23AA3\n0x8EA6D3FE\t0x23AA4\n0x8EA6D4A1\t0x23AA0\n0x8EA6D4A2\t0x23AA1\n0x8EA6D4A3\t0x23AA9\n0x8EA6D4A4\t0x23AA5\n0x8EA6D4A5\t0x23BAF\n0x8EA6D4A6\t0x23BB1\n0x8EA6D4A7\t0x23BAB\n0x8EA6D4A8\t0x23BAE\n0x8EA6D4A9\t0x23BB0\n0x8EA6D4AA\t0x23BB3\n0x8EA6D4AB\t0x23BAC\n0x8EA6D4AC\t0x23BA9\n0x8EA6D4AD\t0x23BB2\n0x8EA6D4AE\t0x23BA8\n0x8EA6D4AF\t0x23BB4\n0x8EA6D4B0\t0x23BC2\n0x8EA6D4B1\t0x23C4F\n0x8EA6D4B2\t0x23C66\n0x8EA6D4B3\t0x23E1E\n0x8EA6D4B4\t0x23E15\n0x8EA6D4B5\t0x23E10\n0x8EA6D4B6\t0x23E7F\n0x8EA6D4B7\t0x23E7E\n0x8EA6D4B8\t0x23E60\n0x8EA6D4B9\t0x23ECC\n0x8EA6D4BA\t0x23EB2\n0x8EA6D4BB\t0x23E62\n0x8EA6D4BC\t0x23E8D\n0x8EA6D4BD\t0x23E8E\n0x8EA6D4BE\t0x23E77\n0x8EA6D4BF\t0x23E7C\n0x8EA6D4C0\t0x23E8F\n0x8EA6D4C1\t0x23E5D\n0x8EA6D4C2\t0x23E6D\n0x8EA6D4C3\t0x23E63\n0x8EA6D4C4\t0x23EAF\n0x8EA6D4C5\t0x23E90\n0x8EA6D4C6\t0x23E7D\n0x8EA6D4C7\t0x23E7A\n0x8EA6D4C8\t0x23E06\n0x8EA6D4C9\t0x2F90B\n0x8EA6D4CA\t0x23E68\n0x8EA6D4CB\t0x23EB4\n0x8EA6D4CC\t0x23E78\n0x8EA6D4CD\t0x23EB1\n0x8EA6D4CE\t0x6ED7\n0x8EA6D4CF\t0x2F90C\n0x8EA6D4D0\t0x3D41\n0x8EA6D4D1\t0x242E8\n0x8EA6D4D2\t0x242E9\n0x8EA6D4D3\t0x242C0\n0x8EA6D4D4\t0x3DD7\n0x8EA6D4D5\t0x242EA\n0x8EA6D4D6\t0x242B7\n0x8EA6D4D7\t0x242BA\n0x8EA6D4D8\t0x242B5\n0x8EA6D4D9\t0x2F91D\n0x8EA6D4DA\t0x242B4\n0x8EA6D4DB\t0x242BC\n0x8EA6D4DC\t0x242C6\n0x8EA6D4DD\t0x242B8\n0x8EA6D4DE\t0x242BD\n0x8EA6D4DF\t0x242C2\n0x8EA6D4E0\t0x2434D\n0x8EA6D4E1\t0x242F0\n0x8EA6D4E2\t0x242C7\n0x8EA6D4E3\t0x242C1\n0x8EA6D4E4\t0x242C3\n0x8EA6D4E5\t0x242F1\n0x8EA6D4E6\t0x242EC\n0x8EA6D4E7\t0x3DE2\n0x8EA6D4E8\t0x2451C\n0x8EA6D4E9\t0x24520\n0x8EA6D4EA\t0x24558\n0x8EA6D4EB\t0x24565\n0x8EA6D4EC\t0x24564\n0x8EA6D4ED\t0x2458C\n0x8EA6D4EE\t0x2458D\n0x8EA6D4EF\t0x245D9\n0x8EA6D4F0\t0x245E0\n0x8EA6D4F1\t0x24610\n0x8EA6D4F2\t0x24694\n0x8EA6D4F3\t0x24692\n0x8EA6D4F4\t0x24696\n0x8EA6D4F5\t0x24695\n0x8EA6D4F6\t0x246BF\n0x8EA6D4F7\t0x246A0\n0x8EA6D4F8\t0x3E45\n0x8EA6D4F9\t0x247F4\n0x8EA6D4FA\t0x247F6\n0x8EA6D4FB\t0x247DC\n0x8EA6D4FC\t0x733D\n0x8EA6D4FD\t0x24816\n0x8EA6D4FE\t0x24815\n0x8EA6D5A1\t0x2481C\n0x8EA6D5A2\t0x2480F\n0x8EA6D5A3\t0x2482C\n0x8EA6D5A4\t0x24814\n0x8EA6D5A5\t0x24825\n0x8EA6D5A6\t0x24817\n0x8EA6D5A7\t0x24812\n0x8EA6D5A8\t0x2481E\n0x8EA6D5A9\t0x24980\n0x8EA6D5AA\t0x249A8\n0x8EA6D5AB\t0x249AF\n0x8EA6D5AC\t0x249D6\n0x8EA6D5AD\t0x249E2\n0x8EA6D5AE\t0x249B4\n0x8EA6D5AF\t0x249B3\n0x8EA6D5B0\t0x249B0\n0x8EA6D5B1\t0x249B2\n0x8EA6D5B2\t0x249A1\n0x8EA6D5B3\t0x24B60\n0x8EA6D5B4\t0x24B66\n0x8EA6D5B5\t0x24B61\n0x8EA6D5B6\t0x24B4E\n0x8EA6D5B7\t0x24B5D\n0x8EA6D5B8\t0x24B63\n0x8EA6D5B9\t0x24BE6\n0x8EA6D5BA\t0x24BEF\n0x8EA6D5BB\t0x24BEC\n0x8EA6D5BC\t0x24C98\n0x8EA6D5BD\t0x24CA7\n0x8EA6D5BE\t0x24C94\n0x8EA6D5BF\t0x24C95\n0x8EA6D5C0\t0x24C91\n0x8EA6D5C1\t0x24C9D\n0x8EA6D5C2\t0x24C99\n0x8EA6D5C3\t0x24C9B\n0x8EA6D5C4\t0x24C9C\n0x8EA6D5C5\t0x24D1D\n0x8EA6D5C6\t0x24D1C\n0x8EA6D5C7\t0x24DD0\n0x8EA6D5C8\t0x24DE0\n0x8EA6D5C9\t0x24DCB\n0x8EA6D5CA\t0x24DDB\n0x8EA6D5CB\t0x24DDA\n0x8EA6D5CC\t0x24DC2\n0x8EA6D5CD\t0x24DD3\n0x8EA6D5CE\t0x24DE5\n0x8EA6D5CF\t0x24F7D\n0x8EA6D5D0\t0x24F7B\n0x8EA6D5D1\t0x24FFF\n0x8EA6D5D2\t0x3FF2\n0x8EA6D5D3\t0x24FF9\n0x8EA6D5D4\t0x25077\n0x8EA6D5D5\t0x2507C\n0x8EA6D5D6\t0x25078\n0x8EA6D5D7\t0x2507B\n0x8EA6D5D8\t0x2507A\n0x8EA6D5D9\t0x251D2\n0x8EA6D5DA\t0x251CB\n0x8EA6D5DB\t0x251C9\n0x8EA6D5DC\t0x251CE\n0x8EA6D5DD\t0x251E4\n0x8EA6D5DE\t0x251CA\n0x8EA6D5DF\t0x251D0\n0x8EA6D5E0\t0x22FA5\n0x8EA6D5E1\t0x4049\n0x8EA6D5E2\t0x251D9\n0x8EA6D5E3\t0x251EE\n0x8EA6D5E4\t0x251DD\n0x8EA6D5E5\t0x25200\n0x8EA6D5E6\t0x251E1\n0x8EA6D5E7\t0x253DE\n0x8EA6D5E8\t0x253E2\n0x8EA6D5E9\t0x253DA\n0x8EA6D5EA\t0x254CE\n0x8EA6D5EB\t0x2F94F\n0x8EA6D5EC\t0x254CF\n0x8EA6D5ED\t0x254DA\n0x8EA6D5EE\t0x254D1\n0x8EA6D5EF\t0x254D4\n0x8EA6D5F0\t0x254ED\n0x8EA6D5F1\t0x254CB\n0x8EA6D5F2\t0x254D5\n0x8EA6D5F3\t0x254F1\n0x8EA6D5F4\t0x2569C\n0x8EA6D5F5\t0x25688\n0x8EA6D5F6\t0x25741\n0x8EA6D5F7\t0x257D0\n0x8EA6D5F8\t0x257F7\n0x8EA6D5F9\t0x257CF\n0x8EA6D5FA\t0x257D1\n0x8EA6D5FB\t0x257DB\n0x8EA6D5FC\t0x257DE\n0x8EA6D5FD\t0x257F8\n0x8EA6D5FE\t0x257DC\n0x8EA6D6A1\t0x257D9\n0x8EA6D6A2\t0x259A0\n0x8EA6D6A3\t0x259B2\n0x8EA6D6A4\t0x259A1\n0x8EA6D6A5\t0x259AA\n0x8EA6D6A6\t0x259A9\n0x8EA6D6A7\t0x41A9\n0x8EA6D6A8\t0x259A6\n0x8EA6D6A9\t0x2599C\n0x8EA6D6AA\t0x259B5\n0x8EA6D6AB\t0x259A7\n0x8EA6D6AC\t0x25A8E\n0x8EA6D6AD\t0x25A90\n0x8EA6D6AE\t0x25A91\n0x8EA6D6AF\t0x25B85\n0x8EA6D6B0\t0x25B5B\n0x8EA6D6B1\t0x25B70\n0x8EA6D6B2\t0x25B64\n0x8EA6D6B3\t0x25B67\n0x8EA6D6B4\t0x25B63\n0x8EA6D6B5\t0x25B77\n0x8EA6D6B6\t0x25B68\n0x8EA6D6B7\t0x25B65\n0x8EA6D6B8\t0x25B6A\n0x8EA6D6B9\t0x25B78\n0x8EA6D6BA\t0x25B66\n0x8EA6D6BB\t0x25E88\n0x8EA6D6BC\t0x25E9E\n0x8EA6D6BD\t0x25E74\n0x8EA6D6BE\t0x25E7A\n0x8EA6D6BF\t0x25E79\n0x8EA6D6C0\t0x25E8B\n0x8EA6D6C1\t0x25E7F\n0x8EA6D6C2\t0x26013\n0x8EA6D6C3\t0x2601E\n0x8EA6D6C4\t0x26017\n0x8EA6D6C5\t0x2601A\n0x8EA6D6C6\t0x26022\n0x8EA6D6C7\t0x26043\n0x8EA6D6C8\t0x26019\n0x8EA6D6C9\t0x2601F\n0x8EA6D6CA\t0x26027\n0x8EA6D6CB\t0x26012\n0x8EA6D6CC\t0x26024\n0x8EA6D6CD\t0x26025\n0x8EA6D6CE\t0x2035E\n0x8EA6D6CF\t0x26235\n0x8EA6D6D0\t0x26234\n0x8EA6D6D1\t0x262D1\n0x8EA6D6D2\t0x262C4\n0x8EA6D6D3\t0x262CA\n0x8EA6D6D4\t0x262C6\n0x8EA6D6D5\t0x262CB\n0x8EA6D6D6\t0x262CD\n0x8EA6D6D7\t0x262E2\n0x8EA6D6D8\t0x26389\n0x8EA6D6D9\t0x2638B\n0x8EA6D6DA\t0x26386\n0x8EA6D6DB\t0x26388\n0x8EA6D6DC\t0x2638D\n0x8EA6D6DD\t0x2643B\n0x8EA6D6DE\t0x2643C\n0x8EA6D6DF\t0x2643D\n0x8EA6D6E0\t0x264F5\n0x8EA6D6E1\t0x26579\n0x8EA6D6E2\t0x26575\n0x8EA6D6E3\t0x26582\n0x8EA6D6E4\t0x2657F\n0x8EA6D6E5\t0x26585\n0x8EA6D6E6\t0x26576\n0x8EA6D6E7\t0x2657C\n0x8EA6D6E8\t0x2657E\n0x8EA6D6E9\t0x2657B\n0x8EA6D6EA\t0x26580\n0x8EA6D6EB\t0x2657A\n0x8EA6D6EC\t0x22548\n0x8EA6D6ED\t0x43CB\n0x8EA6D6EE\t0x2661D\n0x8EA6D6EF\t0x266F6\n0x8EA6D6F0\t0x266F7\n0x8EA6D6F1\t0x266F9\n0x8EA6D6F2\t0x26763\n0x8EA6D6F3\t0x2676C\n0x8EA6D6F4\t0x2676E\n0x8EA6D6F5\t0x26714\n0x8EA6D6F6\t0x440D\n0x8EA6D6F7\t0x26767\n0x8EA6D6F8\t0x2676F\n0x8EA6D6F9\t0x26769\n0x8EA6D6FA\t0x26776\n0x8EA6D6FB\t0x26795\n0x8EA6D6FC\t0x26771\n0x8EA6D6FD\t0x26761\n0x8EA6D6FE\t0x26778\n0x8EA6D7A1\t0x2676B\n0x8EA6D7A2\t0x26785\n0x8EA6D7A3\t0x26784\n0x8EA6D7A4\t0x26914\n0x8EA6D7A5\t0x26976\n0x8EA6D7A6\t0x259B6\n0x8EA6D7A7\t0x26975\n0x8EA6D7A8\t0x26974\n0x8EA6D7A9\t0x269E2\n0x8EA6D7AA\t0x26A3F\n0x8EA6D7AB\t0x26A44\n0x8EA6D7AC\t0x26A3D\n0x8EA6D7AD\t0x26A47\n0x8EA6D7AE\t0x26A48\n0x8EA6D7AF\t0x26ADB\n0x8EA6D7B0\t0x26ADC\n0x8EA6D7B1\t0x26ADD\n0x8EA6D7B2\t0x26BE5\n0x8EA6D7B3\t0x26BE6\n0x8EA6D7B4\t0x26CC2\n0x8EA6D7B5\t0x26D2E\n0x8EA6D7B6\t0x26D1D\n0x8EA6D7B7\t0x26CF8\n0x8EA6D7B8\t0x26CF0\n0x8EA6D7B9\t0x26CF6\n0x8EA6D7BA\t0x26CC5\n0x8EA6D7BB\t0x26CC6\n0x8EA6D7BC\t0x26CFC\n0x8EA6D7BD\t0x26D52\n0x8EA6D7BE\t0x26D2F\n0x8EA6D7BF\t0x26D10\n0x8EA6D7C0\t0x26CF3\n0x8EA6D7C1\t0x26CD2\n0x8EA6D7C2\t0x26CEA\n0x8EA6D7C3\t0x26CDC\n0x8EA6D7C4\t0x26D1B\n0x8EA6D7C5\t0x26CFB\n0x8EA6D7C6\t0x26CC3\n0x8EA6D7C7\t0x26D16\n0x8EA6D7C8\t0x26D07\n0x8EA6D7C9\t0x26CC9\n0x8EA6D7CA\t0x26CD8\n0x8EA6D7CB\t0x26D30\n0x8EA6D7CC\t0x26D13\n0x8EA6D7CD\t0x26D31\n0x8EA6D7CE\t0x26CFA\n0x8EA6D7CF\t0x26CF2\n0x8EA6D7D0\t0x26DE3\n0x8EA6D7D1\t0x26CD5\n0x8EA6D7D2\t0x26D01\n0x8EA6D7D3\t0x26CF1\n0x8EA6D7D4\t0x26D1C\n0x8EA6D7D5\t0x26CD6\n0x8EA6D7D6\t0x26D08\n0x8EA6D7D7\t0x26D0B\n0x8EA6D7D8\t0x26D17\n0x8EA6D7D9\t0x26D20\n0x8EA6D7DA\t0x26CCA\n0x8EA6D7DB\t0x26D32\n0x8EA6D7DC\t0x26D05\n0x8EA6D7DD\t0x26CE4\n0x8EA6D7DE\t0x26CCE\n0x8EA6D7DF\t0x26D33\n0x8EA6D7E0\t0x26D02\n0x8EA6D7E1\t0x26D19\n0x8EA6D7E2\t0x26D1E\n0x8EA6D7E3\t0x26CD3\n0x8EA6D7E4\t0x26CF7\n0x8EA6D7E5\t0x26CE8\n0x8EA6D7E6\t0x26D1F\n0x8EA6D7E7\t0x26CF4\n0x8EA6D7E8\t0x26DD8\n0x8EA6D7E9\t0x271BF\n0x8EA6D7EA\t0x271BE\n0x8EA6D7EB\t0x271BD\n0x8EA6D7EC\t0x272DC\n0x8EA6D7ED\t0x272DD\n0x8EA6D7EE\t0x272AB\n0x8EA6D7EF\t0x272C9\n0x8EA6D7F0\t0x272C8\n0x8EA6D7F1\t0x272DF\n0x8EA6D7F2\t0x272D9\n0x8EA6D7F3\t0x272DB\n0x8EA6D7F4\t0x272CC\n0x8EA6D7F5\t0x272E0\n0x8EA6D7F6\t0x272EF\n0x8EA6D7F7\t0x272F3\n0x8EA6D7F8\t0x272AE\n0x8EA6D7F9\t0x27301\n0x8EA6D7FA\t0x275B7\n0x8EA6D7FB\t0x275B9\n0x8EA6D7FC\t0x275B6\n0x8EA6D7FD\t0x275B8\n0x8EA6D7FE\t0x275F6\n0x8EA6D8A1\t0x275F3\n0x8EA6D8A2\t0x275F5\n0x8EA6D8A3\t0x275F2\n0x8EA6D8A4\t0x27691\n0x8EA6D8A5\t0x2769D\n0x8EA6D8A6\t0x2769B\n0x8EA6D8A7\t0x27692\n0x8EA6D8A8\t0x2768D\n0x8EA6D8A9\t0x2769E\n0x8EA6D8AA\t0x2768C\n0x8EA6D8AB\t0x4631\n0x8EA6D8AC\t0x2F9C7\n0x8EA6D8AD\t0x27695\n0x8EA6D8AE\t0x2F9C6\n0x8EA6D8AF\t0x2768A\n0x8EA6D8B0\t0x2768E\n0x8EA6D8B1\t0x2769C\n0x8EA6D8B2\t0x277EF\n0x8EA6D8B3\t0x2782D\n0x8EA6D8B4\t0x27852\n0x8EA6D8B5\t0x27835\n0x8EA6D8B6\t0x27828\n0x8EA6D8B7\t0x2782E\n0x8EA6D8B8\t0x278E5\n0x8EA6D8B9\t0x279EA\n0x8EA6D8BA\t0x279F1\n0x8EA6D8BB\t0x279EB\n0x8EA6D8BC\t0x279D8\n0x8EA6D8BD\t0x279D0\n0x8EA6D8BE\t0x279F3\n0x8EA6D8BF\t0x279DB\n0x8EA6D8C0\t0x279CE\n0x8EA6D8C1\t0x46D5\n0x8EA6D8C2\t0x279DA\n0x8EA6D8C3\t0x279D7\n0x8EA6D8C4\t0x279E1\n0x8EA6D8C5\t0x279F2\n0x8EA6D8C6\t0x279C8\n0x8EA6D8C7\t0x279D9\n0x8EA6D8C8\t0x279DE\n0x8EA6D8C9\t0x279D1\n0x8EA6D8CA\t0x279E7\n0x8EA6D8CB\t0x279CF\n0x8EA6D8CC\t0x27BB7\n0x8EA6D8CD\t0x27C47\n0x8EA6D8CE\t0x27C42\n0x8EA6D8CF\t0x27C43\n0x8EA6D8D0\t0x2F9D3\n0x8EA6D8D1\t0x27CC3\n0x8EA6D8D2\t0x27CC1\n0x8EA6D8D3\t0x27CC7\n0x8EA6D8D4\t0x27D64\n0x8EA6D8D5\t0x27D6A\n0x8EA6D8D6\t0x27D66\n0x8EA6D8D7\t0x27D50\n0x8EA6D8D8\t0x27D6E\n0x8EA6D8D9\t0x27D65\n0x8EA6D8DA\t0x238EC\n0x8EA6D8DB\t0x27D7F\n0x8EA6D8DC\t0x2F9D5\n0x8EA6D8DD\t0x27D9A\n0x8EA6D8DE\t0x27D69\n0x8EA6D8DF\t0x27D72\n0x8EA6D8E0\t0x27D6F\n0x8EA6D8E1\t0x27D7D\n0x8EA6D8E2\t0x27D70\n0x8EA6D8E3\t0x27E60\n0x8EA6D8E4\t0x27EC2\n0x8EA6D8E5\t0x27EE7\n0x8EA6D8E6\t0x27ED1\n0x8EA6D8E7\t0x27EEB\n0x8EA6D8E8\t0x27ED4\n0x8EA6D8E9\t0x27EDC\n0x8EA6D8EA\t0x27EDB\n0x8EA6D8EB\t0x28037\n0x8EA6D8EC\t0x28025\n0x8EA6D8ED\t0x2801F\n0x8EA6D8EE\t0x2801E\n0x8EA6D8EF\t0x28021\n0x8EA6D8F0\t0x2801B\n0x8EA6D8F1\t0x28017\n0x8EA6D8F2\t0x28022\n0x8EA6D8F3\t0x2802A\n0x8EA6D8F4\t0x2801A\n0x8EA6D8F5\t0x2802D\n0x8EA6D8F6\t0x28023\n0x8EA6D8F7\t0x28026\n0x8EA6D8F8\t0x28036\n0x8EA6D8F9\t0x27FFF\n0x8EA6D8FA\t0x2823A\n0x8EA6D8FB\t0x28240\n0x8EA6D8FC\t0x28242\n0x8EA6D8FD\t0x28238\n0x8EA6D8FE\t0x2823B\n0x8EA6D9A1\t0x2823C\n0x8EA6D9A2\t0x28243\n0x8EA6D9A3\t0x282E8\n0x8EA6D9A4\t0x4856\n0x8EA6D9A5\t0x282F9\n0x8EA6D9A6\t0x282EB\n0x8EA6D9A7\t0x282F1\n0x8EA6D9A8\t0x282E9\n0x8EA6D9A9\t0x282EC\n0x8EA6D9AA\t0x28415\n0x8EA6D9AB\t0x28447\n0x8EA6D9AC\t0x28446\n0x8EA6D9AD\t0x28445\n0x8EA6D9AE\t0x28524\n0x8EA6D9AF\t0x28556\n0x8EA6D9B0\t0x28521\n0x8EA6D9B1\t0x28527\n0x8EA6D9B2\t0x2854D\n0x8EA6D9B3\t0x28531\n0x8EA6D9B4\t0x2851E\n0x8EA6D9B5\t0x2852C\n0x8EA6D9B6\t0x2854F\n0x8EA6D9B7\t0x2852B\n0x8EA6D9B8\t0x28553\n0x8EA6D9B9\t0x28551\n0x8EA6D9BA\t0x28554\n0x8EA6D9BB\t0x28529\n0x8EA6D9BC\t0x28550\n0x8EA6D9BD\t0x2851F\n0x8EA6D9BE\t0x28532\n0x8EA6D9BF\t0x2852A\n0x8EA6D9C0\t0x2851D\n0x8EA6D9C1\t0x28528\n0x8EA6D9C2\t0x2852E\n0x8EA6D9C3\t0x2852D\n0x8EA6D9C4\t0x286BC\n0x8EA6D9C5\t0x286BB\n0x8EA6D9C6\t0x286BD\n0x8EA6D9C7\t0x2F9E4\n0x8EA6D9C8\t0x28747\n0x8EA6D9C9\t0x28741\n0x8EA6D9CA\t0x2F9E5\n0x8EA6D9CB\t0x28749\n0x8EA6D9CC\t0x48F4\n0x8EA6D9CD\t0x2882E\n0x8EA6D9CE\t0x28827\n0x8EA6D9CF\t0x2896A\n0x8EA6D9D0\t0x2897B\n0x8EA6D9D1\t0x28973\n0x8EA6D9D2\t0x28975\n0x8EA6D9D3\t0x28969\n0x8EA6D9D4\t0x28979\n0x8EA6D9D5\t0x28972\n0x8EA6D9D6\t0x28C76\n0x8EA6D9D7\t0x28C77\n0x8EA6D9D8\t0x28C74\n0x8EA6D9D9\t0x28C73\n0x8EA6D9DA\t0x28D02\n0x8EA6D9DB\t0x28CFE\n0x8EA6D9DC\t0x28D01\n0x8EA6D9DD\t0x28CF9\n0x8EA6D9DE\t0x28CF4\n0x8EA6D9DF\t0x28ED3\n0x8EA6D9E0\t0x28ED5\n0x8EA6D9E1\t0x28ED8\n0x8EA6D9E2\t0x28EC3\n0x8EA6D9E3\t0x28ECA\n0x8EA6D9E4\t0x28ED0\n0x8EA6D9E5\t0x28ECB\n0x8EA6D9E6\t0x28ECE\n0x8EA6D9E7\t0x28EC5\n0x8EA6D9E8\t0x28EE6\n0x8EA6D9E9\t0x28EC4\n0x8EA6D9EA\t0x28EC0\n0x8EA6D9EB\t0x28ED4\n0x8EA6D9EC\t0x28EE8\n0x8EA6D9ED\t0x28F76\n0x8EA6D9EE\t0x28FA2\n0x8EA6D9EF\t0x28FAE\n0x8EA6D9F0\t0x28FA8\n0x8EA6D9F1\t0x28FA3\n0x8EA6D9F2\t0x28FA7\n0x8EA6D9F3\t0x28F96\n0x8EA6D9F4\t0x28FA9\n0x8EA6D9F5\t0x28FA5\n0x8EA6D9F6\t0x28FAF\n0x8EA6D9F7\t0x28FA4\n0x8EA6D9F8\t0x28FAB\n0x8EA6D9F9\t0x28FAA\n0x8EA6D9FA\t0x28FA6\n0x8EA6D9FB\t0x28FA0\n0x8EA6D9FC\t0x29098\n0x8EA6D9FD\t0x291DB\n0x8EA6D9FE\t0x291F6\n0x8EA6DAA1\t0x291F5\n0x8EA6DAA2\t0x2920C\n0x8EA6DAA3\t0x2920A\n0x8EA6DAA4\t0x9775\n0x8EA6DAA5\t0x29268\n0x8EA6DAA6\t0x29263\n0x8EA6DAA7\t0x29266\n0x8EA6DAA8\t0x4A58\n0x8EA6DAA9\t0x29264\n0x8EA6DAAA\t0x2926A\n0x8EA6DAAB\t0x29269\n0x8EA6DAAC\t0x29395\n0x8EA6DAAD\t0x29402\n0x8EA6DAAE\t0x2946A\n0x8EA6DAAF\t0x2945E\n0x8EA6DAB0\t0x29468\n0x8EA6DAB1\t0x29469\n0x8EA6DAB2\t0x29465\n0x8EA6DAB3\t0x2F9FE\n0x8EA6DAB4\t0x295A7\n0x8EA6DAB5\t0x295AE\n0x8EA6DAB6\t0x295A8\n0x8EA6DAB7\t0x295B3\n0x8EA6DAB8\t0x2969C\n0x8EA6DAB9\t0x296A9\n0x8EA6DABA\t0x296B6\n0x8EA6DABB\t0x296B3\n0x8EA6DABC\t0x296B2\n0x8EA6DABD\t0x2FA03\n0x8EA6DABE\t0x296B8\n0x8EA6DABF\t0x296C0\n0x8EA6DAC0\t0x296BF\n0x8EA6DAC1\t0x296BA\n0x8EA6DAC2\t0x296A8\n0x8EA6DAC3\t0x2983C\n0x8EA6DAC4\t0x29872\n0x8EA6DAC5\t0x29871\n0x8EA6DAC6\t0x29875\n0x8EA6DAC7\t0x29873\n0x8EA6DAC8\t0x29A17\n0x8EA6DAC9\t0x29A15\n0x8EA6DACA\t0x29A16\n0x8EA6DACB\t0x29A1B\n0x8EA6DACC\t0x29AFA\n0x8EA6DACD\t0x29AF9\n0x8EA6DACE\t0x29C2C\n0x8EA6DACF\t0x29C85\n0x8EA6DAD0\t0x29C82\n0x8EA6DAD1\t0x29C7F\n0x8EA6DAD2\t0x29C7D\n0x8EA6DAD3\t0x29C88\n0x8EA6DAD4\t0x242F3\n0x8EA6DAD5\t0x29D4E\n0x8EA6DAD6\t0x29D50\n0x8EA6DAD7\t0x29F93\n0x8EA6DAD8\t0x29F97\n0x8EA6DAD9\t0x29F98\n0x8EA6DADA\t0x29F9B\n0x8EA6DADB\t0x29F9C\n0x8EA6DADC\t0x29F96\n0x8EA6DADD\t0x2A28B\n0x8EA6DADE\t0x2A2FD\n0x8EA6DADF\t0x2A2FC\n0x8EA6DAE0\t0x2FA17\n0x8EA6DAE1\t0x2398B\n0x8EA6DAE2\t0x20108\n0x8EA6DAE3\t0x20107\n0x8EA6DAE4\t0x20373\n0x8EA6DAE5\t0x203A2\n0x8EA6DAE6\t0x203AF\n0x8EA6DAE7\t0x20382\n0x8EA6DAE8\t0x2037B\n0x8EA6DAE9\t0x20374\n0x8EA6DAEA\t0x203B0\n0x8EA6DAEB\t0x20376\n0x8EA6DAEC\t0x203B9\n0x8EA6DAED\t0x2039E\n0x8EA6DAEE\t0x203B1\n0x8EA6DAEF\t0x203A1\n0x8EA6DAF0\t0x203B2\n0x8EA6DAF1\t0x2036E\n0x8EA6DAF2\t0x2F80B\n0x8EA6DAF3\t0x3487\n0x8EA6DAF4\t0x20378\n0x8EA6DAF5\t0x2037A\n0x8EA6DAF6\t0x20383\n0x8EA6DAF7\t0x2039A\n0x8EA6DAF8\t0x204F8\n0x8EA6DAF9\t0x20531\n0x8EA6DAFA\t0x20569\n0x8EA6DAFB\t0x20568\n0x8EA6DAFC\t0x2059C\n0x8EA6DAFD\t0x20604\n0x8EA6DAFE\t0x20699\n0x8EA6DBA1\t0x207C7\n0x8EA6DBA2\t0x207C6\n0x8EA6DBA3\t0x207DC\n0x8EA6DBA4\t0x207C4\n0x8EA6DBA5\t0x207D8\n0x8EA6DBA6\t0x207D4\n0x8EA6DBA7\t0x207DF\n0x8EA6DBA8\t0x207D1\n0x8EA6DBA9\t0x207D0\n0x8EA6DBAA\t0x207D6\n0x8EA6DBAB\t0x207CF\n0x8EA6DBAC\t0x208AD\n0x8EA6DBAD\t0x208AF\n0x8EA6DBAE\t0x208A7\n0x8EA6DBAF\t0x208FD\n0x8EA6DBB0\t0x2095B\n0x8EA6DBB1\t0x2095A\n0x8EA6DBB2\t0x20A07\n0x8EA6DBB3\t0x20A9D\n0x8EA6DBB4\t0x20A9B\n0x8EA6DBB5\t0x20AAB\n0x8EA6DBB6\t0x20AA4\n0x8EA6DBB7\t0x20A9C\n0x8EA6DBB8\t0x20A9E\n0x8EA6DBB9\t0x20AA5\n0x8EA6DBBA\t0x20AAA\n0x8EA6DBBB\t0x20AA6\n0x8EA6DBBC\t0x20B0E\n0x8EA6DBBD\t0x20B7E\n0x8EA6DBBE\t0x20B7C\n0x8EA6DBBF\t0x20EEE\n0x8EA6DBC0\t0x20ED5\n0x8EA6DBC1\t0x20EE9\n0x8EA6DBC2\t0x20E42\n0x8EA6DBC3\t0x20EE2\n0x8EA6DBC4\t0x20F23\n0x8EA6DBC5\t0x20ED9\n0x8EA6DBC6\t0x20ED4\n0x8EA6DBC7\t0x20EE3\n0x8EA6DBC8\t0x20F15\n0x8EA6DBC9\t0x20EEF\n0x8EA6DBCA\t0x20EF0\n0x8EA6DBCB\t0x20ED6\n0x8EA6DBCC\t0x20EDD\n0x8EA6DBCD\t0x20EF6\n0x8EA6DBCE\t0x20F1C\n0x8EA6DBCF\t0x20ED8\n0x8EA6DBD0\t0x20EDB\n0x8EA6DBD1\t0x20EDA\n0x8EA6DBD2\t0x20EED\n0x8EA6DBD3\t0x21411\n0x8EA6DBD4\t0x21215\n0x8EA6DBD5\t0x21218\n0x8EA6DBD6\t0x2121A\n0x8EA6DBD7\t0x2121F\n0x8EA6DBD8\t0x21216\n0x8EA6DBD9\t0x2F84D\n0x8EA6DBDA\t0x21219\n0x8EA6DBDB\t0x2F84B\n0x8EA6DBDC\t0x213F0\n0x8EA6DBDD\t0x21409\n0x8EA6DBDE\t0x2141B\n0x8EA6DBDF\t0x27BE7\n0x8EA6DBE0\t0x213F6\n0x8EA6DBE1\t0x213F4\n0x8EA6DBE2\t0x213B5\n0x8EA6DBE3\t0x21410\n0x8EA6DBE4\t0x213F2\n0x8EA6DBE5\t0x21415\n0x8EA6DBE6\t0x213F3\n0x8EA6DBE7\t0x213F8\n0x8EA6DBE8\t0x21539\n0x8EA6DBE9\t0x2153B\n0x8EA6DBEA\t0x21536\n0x8EA6DBEB\t0x2140E\n0x8EA6DBEC\t0x21572\n0x8EA6DBED\t0x21574\n0x8EA6DBEE\t0x215B9\n0x8EA6DBEF\t0x215B7\n0x8EA6DBF0\t0x215B8\n0x8EA6DBF1\t0x21672\n0x8EA6DBF2\t0x2166B\n0x8EA6DBF3\t0x2181D\n0x8EA6DBF4\t0x21837\n0x8EA6DBF5\t0x21822\n0x8EA6DBF6\t0x21843\n0x8EA6DBF7\t0x2184D\n0x8EA6DBF8\t0x21838\n0x8EA6DBF9\t0x2185B\n0x8EA6DBFA\t0x21879\n0x8EA6DBFB\t0x2181B\n0x8EA6DBFC\t0x217F3\n0x8EA6DBFD\t0x21991\n0x8EA6DBFE\t0x21A7B\n0x8EA6DCA1\t0x21A94\n0x8EA6DCA2\t0x2F86F\n0x8EA6DCA3\t0x21A96\n0x8EA6DCA4\t0x21A7F\n0x8EA6DCA5\t0x21A8F\n0x8EA6DCA6\t0x21A84\n0x8EA6DCA7\t0x21A7C\n0x8EA6DCA8\t0x21A8E\n0x8EA6DCA9\t0x21A90\n0x8EA6DCAA\t0x21A98\n0x8EA6DCAB\t0x21A83\n0x8EA6DCAC\t0x21A80\n0x8EA6DCAD\t0x21A93\n0x8EA6DCAE\t0x21A82\n0x8EA6DCB0\t0x21B3D\n0x8EA6DCB1\t0x21B41\n0x8EA6DCB2\t0x21BA1\n0x8EA6DCB3\t0x21B9F\n0x8EA6DCB4\t0x21C0A\n0x8EA6DCB5\t0x21C0D\n0x8EA6DCB6\t0x21CC8\n0x8EA6DCB7\t0x21CC9\n0x8EA6DCB8\t0x21CC7\n0x8EA6DCB9\t0x21CCD\n0x8EA6DCBA\t0x21D25\n0x8EA6DCBB\t0x21EB1\n0x8EA6DCBC\t0x21EDC\n0x8EA6DCBD\t0x2F880\n0x8EA6DCBE\t0x21EE5\n0x8EA6DCBF\t0x21EF4\n0x8EA6DCC0\t0x21EBF\n0x8EA6DCC1\t0x21EDB\n0x8EA6DCC2\t0x21EEA\n0x8EA6DCC3\t0x21EF2\n0x8EA6DCC4\t0x37FA\n0x8EA6DCC5\t0x21EF1\n0x8EA6DCC6\t0x21EED\n0x8EA6DCC7\t0x21EE6\n0x8EA6DCC8\t0x22002\n0x8EA6DCC9\t0x2F882\n0x8EA6DCCA\t0x22125\n0x8EA6DCCB\t0x22118\n0x8EA6DCCC\t0x2211F\n0x8EA6DCCD\t0x22120\n0x8EA6DCCE\t0x221CF\n0x8EA6DCCF\t0x2229D\n0x8EA6DCD0\t0x22299\n0x8EA6DCD1\t0x222A8\n0x8EA6DCD2\t0x22368\n0x8EA6DCD3\t0x22366\n0x8EA6DCD4\t0x22367\n0x8EA6DCD5\t0x22391\n0x8EA6DCD6\t0x22413\n0x8EA6DCD7\t0x22415\n0x8EA6DCD8\t0x2241D\n0x8EA6DCD9\t0x22416\n0x8EA6DCDA\t0x22419\n0x8EA6DCDB\t0x2246B\n0x8EA6DCDC\t0x22468\n0x8EA6DCDD\t0x2246A\n0x8EA6DCDE\t0x2246D\n0x8EA6DCDF\t0x22469\n0x8EA6DCE0\t0x224AA\n0x8EA6DCE1\t0x22557\n0x8EA6DCE2\t0x22552\n0x8EA6DCE3\t0x22550\n0x8EA6DCE4\t0x2255F\n0x8EA6DCE5\t0x22567\n0x8EA6DCE6\t0x2254F\n0x8EA6DCE7\t0x38F2\n0x8EA6DCE8\t0x2255B\n0x8EA6DCE9\t0x2255C\n0x8EA6DCEA\t0x2255D\n0x8EA6DCEB\t0x2281F\n0x8EA6DCEC\t0x2279D\n0x8EA6DCED\t0x227B1\n0x8EA6DCEE\t0x227B0\n0x8EA6DCEF\t0x22794\n0x8EA6DCF0\t0x227C3\n0x8EA6DCF1\t0x227AF\n0x8EA6DCF2\t0x227A8\n0x8EA6DCF3\t0x227DC\n0x8EA6DCF4\t0x22798\n0x8EA6DCF5\t0x227C4\n0x8EA6DCF6\t0x227A4\n0x8EA6DCF7\t0x227AB\n0x8EA6DCF8\t0x227AA\n0x8EA6DCF9\t0x227A5\n0x8EA6DCFA\t0x22821\n0x8EA6DCFB\t0x227EB\n0x8EA6DCFC\t0x227E6\n0x8EA6DCFD\t0x227F7\n0x8EA6DCFE\t0x227F8\n0x8EA6DDA1\t0x227FC\n0x8EA6DDA2\t0x227FA\n0x8EA6DDA3\t0x227E0\n0x8EA6DDA4\t0x2F8AA\n0x8EA6DDA5\t0x227F6\n0x8EA6DDA6\t0x2F8A9\n0x8EA6DDA7\t0x227E1\n0x8EA6DDA8\t0x229EC\n0x8EA6DDA9\t0x229E2\n0x8EA6DDAA\t0x229E4\n0x8EA6DDAB\t0x229F9\n0x8EA6DDAC\t0x22C6F\n0x8EA6DDAD\t0x23A4C\n0x8EA6DDAE\t0x22CBB\n0x8EA6DDAF\t0x22CE1\n0x8EA6DDB0\t0x22D00\n0x8EA6DDB1\t0x22CD8\n0x8EA6DDB2\t0x3A2F\n0x8EA6DDB3\t0x22CD6\n0x8EA6DDB4\t0x22CE2\n0x8EA6DDB5\t0x22CC3\n0x8EA6DDB6\t0x22CB3\n0x8EA6DDB7\t0x22CD2\n0x8EA6DDB8\t0x2F8C1\n0x8EA6DDB9\t0x22CCE\n0x8EA6DDBA\t0x22CD0\n0x8EA6DDBB\t0x22CD5\n0x8EA6DDBC\t0x22CB9\n0x8EA6DDBD\t0x22CBA\n0x8EA6DDBE\t0x22CCF\n0x8EA6DDBF\t0x22CBD\n0x8EA6DDC0\t0x22EDB\n0x8EA6DDC1\t0x22FAA\n0x8EA6DDC2\t0x22FAD\n0x8EA6DDC3\t0x22FB8\n0x8EA6DDC4\t0x22FB6\n0x8EA6DDC5\t0x22FB5\n0x8EA6DDC6\t0x22FAF\n0x8EA6DDC7\t0x22FB4\n0x8EA6DDC8\t0x22FB7\n0x8EA6DDC9\t0x22FA8\n0x8EA6DDCA\t0x22FB9\n0x8EA6DDCB\t0x22FBE\n0x8EA6DDCC\t0x23082\n0x8EA6DDCD\t0x230BC\n0x8EA6DDCE\t0x230B8\n0x8EA6DDCF\t0x230B6\n0x8EA6DDD0\t0x230B9\n0x8EA6DDD1\t0x3AC1\n0x8EA6DDD2\t0x23110\n0x8EA6DDD3\t0x23227\n0x8EA6DDD4\t0x23269\n0x8EA6DDD5\t0x23270\n0x8EA6DDD6\t0x23256\n0x8EA6DDD7\t0x2326B\n0x8EA6DDD8\t0x2327A\n0x8EA6DDD9\t0x2326C\n0x8EA6DDDA\t0x2326D\n0x8EA6DDDB\t0x2F8D5\n0x8EA6DDDC\t0x267C1\n0x8EA6DDDD\t0x2338D\n0x8EA6DDDE\t0x23390\n0x8EA6DDDF\t0x235B6\n0x8EA6DDE0\t0x23610\n0x8EA6DDE1\t0x23612\n0x8EA6DDE2\t0x235BA\n0x8EA6DDE3\t0x235BD\n0x8EA6DDE4\t0x23605\n0x8EA6DDE5\t0x235C2\n0x8EA6DDE6\t0x23607\n0x8EA6DDE7\t0x235F5\n0x8EA6DDE8\t0x2F8E9\n0x8EA6DDE9\t0x235AF\n0x8EA6DDEA\t0x235F4\n0x8EA6DDEB\t0x235F7\n0x8EA6DDEC\t0x235F8\n0x8EA6DDED\t0x23611\n0x8EA6DDEE\t0x238F6\n0x8EA6DDEF\t0x238F5\n0x8EA6DDF0\t0x238FB\n0x8EA6DDF1\t0x23901\n0x8EA6DDF2\t0x23900\n0x8EA6DDF3\t0x23902\n0x8EA6DDF4\t0x238FE\n0x8EA6DDF5\t0x238FA\n0x8EA6DDF6\t0x238FD\n0x8EA6DDF7\t0x3C40\n0x8EA6DDF8\t0x23A37\n0x8EA6DDF9\t0x23A49\n0x8EA6DDFA\t0x23A4B\n0x8EA6DDFB\t0x23A46\n0x8EA6DDFC\t0x23A47\n0x8EA6DDFD\t0x23AB3\n0x8EA6DDFE\t0x23AB2\n0x8EA6DEA1\t0x23AB0\n0x8EA6DEA2\t0x23AB7\n0x8EA6DEA3\t0x23B11\n0x8EA6DEA4\t0x23BCC\n0x8EA6DEA5\t0x23BDF\n0x8EA6DEA6\t0x23BD3\n0x8EA6DEA7\t0x23BD5\n0x8EA6DEA8\t0x23BDB\n0x8EA6DEA9\t0x23BC5\n0x8EA6DEAA\t0x23BC8\n0x8EA6DEAB\t0x23BC9\n0x8EA6DEAC\t0x23BE2\n0x8EA6DEAD\t0x23BCA\n0x8EA6DEAE\t0x23BD1\n0x8EA6DEAF\t0x23BD2\n0x8EA6DEB0\t0x23BDD\n0x8EA6DEB1\t0x23E6C\n0x8EA6DEB2\t0x23E73\n0x8EA6DEB3\t0x23F21\n0x8EA6DEB4\t0x23EF0\n0x8EA6DEB5\t0x23F1F\n0x8EA6DEB6\t0x23F3B\n0x8EA6DEB7\t0x23F22\n0x8EA6DEB8\t0x23F23\n0x8EA6DEB9\t0x23EE8\n0x8EA6DEBA\t0x23EDD\n0x8EA6DEBB\t0x3D3F\n0x8EA6DEBC\t0x23F1B\n0x8EA6DEBD\t0x23EED\n0x8EA6DEBE\t0x2F90E\n0x8EA6DEBF\t0x23EF2\n0x8EA6DEC0\t0x3D46\n0x8EA6DEC1\t0x23EDC\n0x8EA6DEC2\t0x23EE9\n0x8EA6DEC3\t0x23F1D\n0x8EA6DEC4\t0x23EDA\n0x8EA6DEC5\t0x23EE6\n0x8EA6DEC6\t0x24313\n0x8EA6DEC7\t0x24315\n0x8EA6DEC8\t0x24316\n0x8EA6DEC9\t0x2433C\n0x8EA6DECA\t0x2430B\n0x8EA6DECB\t0x2431C\n0x8EA6DECC\t0x2433A\n0x8EA6DECD\t0x2433D\n0x8EA6DECE\t0x2439A\n0x8EA6DECF\t0x2431D\n0x8EA6DED0\t0x24309\n0x8EA6DED1\t0x24308\n0x8EA6DED2\t0x2433B\n0x8EA6DED3\t0x24522\n0x8EA6DED4\t0x24526\n0x8EA6DED5\t0x24525\n0x8EA6DED6\t0x24524\n0x8EA6DED7\t0x2039B\n0x8EA6DED8\t0x2458F\n0x8EA6DED9\t0x24590\n0x8EA6DEDA\t0x245E6\n0x8EA6DEDB\t0x245E3\n0x8EA6DEDC\t0x245E5\n0x8EA6DEDD\t0x24611\n0x8EA6DEDE\t0x2F925\n0x8EA6DEDF\t0x246AE\n0x8EA6DEE0\t0x246BE\n0x8EA6DEE1\t0x246B4\n0x8EA6DEE2\t0x246B3\n0x8EA6DEE3\t0x246AF\n0x8EA6DEE4\t0x24691\n0x8EA6DEE5\t0x246C2\n0x8EA6DEE6\t0x246B6\n0x8EA6DEE7\t0x246B2\n0x8EA6DEE8\t0x24857\n0x8EA6DEE9\t0x2483B\n0x8EA6DEEA\t0x24858\n0x8EA6DEEB\t0x24851\n0x8EA6DEEC\t0x24841\n0x8EA6DEED\t0x24839\n0x8EA6DEEE\t0x3E8F\n0x8EA6DEEF\t0x24859\n0x8EA6DEF0\t0x24845\n0x8EA6DEF1\t0x24861\n0x8EA6DEF2\t0x248E8\n0x8EA6DEF3\t0x249FA\n0x8EA6DEF4\t0x249EA\n0x8EA6DEF5\t0x249EF\n0x8EA6DEF6\t0x249F2\n0x8EA6DEF7\t0x249F0\n0x8EA6DEF8\t0x24B08\n0x8EA6DEF9\t0x24B70\n0x8EA6DEFA\t0x24B6A\n0x8EA6DEFB\t0x24B73\n0x8EA6DEFC\t0x24B68\n0x8EA6DEFD\t0x24BC8\n0x8EA6DEFE\t0x24BF2\n0x8EA6DFA1\t0x20B7B\n0x8EA6DFA2\t0x24CAE\n0x8EA6DFA3\t0x24CAB\n0x8EA6DFA4\t0x24CB5\n0x8EA6DFA5\t0x24CAF\n0x8EA6DFA6\t0x24CB2\n0x8EA6DFA7\t0x24CB6\n0x8EA6DFA8\t0x24CB0\n0x8EA6DFA9\t0x24D1E\n0x8EA6DFAA\t0x24E03\n0x8EA6DFAB\t0x24E06\n0x8EA6DFAC\t0x24E1F\n0x8EA6DFAD\t0x3FAC\n0x8EA6DFAE\t0x24E0F\n0x8EA6DFAF\t0x24E02\n0x8EA6DFB0\t0x24E19\n0x8EA6DFB1\t0x24E18\n0x8EA6DFB2\t0x24E22\n0x8EA6DFB3\t0x24E15\n0x8EA6DFB4\t0x24E07\n0x8EA6DFB5\t0x24E0D\n0x8EA6DFB6\t0x24E24\n0x8EA6DFB7\t0x24E0C\n0x8EA6DFB8\t0x24E1E\n0x8EA6DFB9\t0x24F89\n0x8EA6DFBA\t0x24F8A\n0x8EA6DFBB\t0x2500A\n0x8EA6DFBC\t0x2500B\n0x8EA6DFBD\t0x25007\n0x8EA6DFBE\t0x25004\n0x8EA6DFBF\t0x25009\n0x8EA6DFC0\t0x25084\n0x8EA6DFC1\t0x25083\n0x8EA6DFC2\t0x25218\n0x8EA6DFC3\t0x25214\n0x8EA6DFC4\t0x25205\n0x8EA6DFC5\t0x25216\n0x8EA6DFC6\t0x2520E\n0x8EA6DFC7\t0x25211\n0x8EA6DFC8\t0x25208\n0x8EA6DFC9\t0x2520B\n0x8EA6DFCA\t0x25215\n0x8EA6DFCB\t0x25085\n0x8EA6DFCC\t0x25237\n0x8EA6DFCD\t0x2522A\n0x8EA6DFCE\t0x2520D\n0x8EA6DFCF\t0x2520F\n0x8EA6DFD0\t0x2537E\n0x8EA6DFD1\t0x25376\n0x8EA6DFD2\t0x25377\n0x8EA6DFD3\t0x253EC\n0x8EA6DFD4\t0x254FC\n0x8EA6DFD5\t0x25508\n0x8EA6DFD6\t0x254FF\n0x8EA6DFD7\t0x25503\n0x8EA6DFD8\t0x25510\n0x8EA6DFD9\t0x25505\n0x8EA6DFDA\t0x25506\n0x8EA6DFDB\t0x254FA\n0x8EA6DFDC\t0x256C7\n0x8EA6DFDD\t0x256C0\n0x8EA6DFDE\t0x256C3\n0x8EA6DFDF\t0x256A7\n0x8EA6DFE0\t0x256A8\n0x8EA6DFE1\t0x256AB\n0x8EA6DFE2\t0x256C1\n0x8EA6DFE3\t0x256AA\n0x8EA6DFE4\t0x256C8\n0x8EA6DFE5\t0x25743\n0x8EA6DFE6\t0x25802\n0x8EA6DFE7\t0x2580E\n0x8EA6DFE8\t0x25801\n0x8EA6DFE9\t0x257FE\n0x8EA6DFEA\t0x25803\n0x8EA6DFEB\t0x4168\n0x8EA6DFEC\t0x25822\n0x8EA6DFED\t0x25821\n0x8EA6DFEE\t0x25807\n0x8EA6DFEF\t0x25808\n0x8EA6DFF0\t0x2580C\n0x8EA6DFF1\t0x259CA\n0x8EA6DFF2\t0x259BC\n0x8EA6DFF3\t0x259BE\n0x8EA6DFF4\t0x259BD\n0x8EA6DFF5\t0x2F95C\n0x8EA6DFF6\t0x259BB\n0x8EA6DFF7\t0x259B9\n0x8EA6DFF8\t0x41AB\n0x8EA6DFF9\t0x259C5\n0x8EA6DFFA\t0x25A99\n0x8EA6DFFB\t0x25B6B\n0x8EA6DFFC\t0x25B93\n0x8EA6DFFD\t0x25B94\n0x8EA6DFFE\t0x25BA9\n0x8EA6E0A1\t0x25BA0\n0x8EA6E0A2\t0x25BA6\n0x8EA6E0A3\t0x2F961\n0x8EA6E0A4\t0x25BAB\n0x8EA6E0A5\t0x25B9E\n0x8EA6E0A6\t0x25B9B\n0x8EA6E0A7\t0x25B91\n0x8EA6E0A8\t0x25B99\n0x8EA6E0A9\t0x25EB6\n0x8EA6E0AA\t0x25EB8\n0x8EA6E0AB\t0x25E9A\n0x8EA6E0AC\t0x4291\n0x8EA6E0AD\t0x25E98\n0x8EA6E0AE\t0x25E9B\n0x8EA6E0AF\t0x25EB3\n0x8EA6E0B0\t0x25EA2\n0x8EA6E0B1\t0x222AA\n0x8EA6E0B2\t0x25EA0\n0x8EA6E0B3\t0x25E9F\n0x8EA6E0B4\t0x2605B\n0x8EA6E0B5\t0x26070\n0x8EA6E0B6\t0x26054\n0x8EA6E0B7\t0x26071\n0x8EA6E0B8\t0x26065\n0x8EA6E0B9\t0x26051\n0x8EA6E0BA\t0x2609D\n0x8EA6E0BB\t0x26061\n0x8EA6E0BC\t0x2605A\n0x8EA6E0BD\t0x26074\n0x8EA6E0BE\t0x2604C\n0x8EA6E0BF\t0x2604B\n0x8EA6E0C0\t0x2605E\n0x8EA6E0C1\t0x26058\n0x8EA6E0C2\t0x26053\n0x8EA6E0C3\t0x26052\n0x8EA6E0C4\t0x2623B\n0x8EA6E0C5\t0x26239\n0x8EA6E0C6\t0x262D6\n0x8EA6E0C7\t0x262E7\n0x8EA6E0C8\t0x262D7\n0x8EA6E0C9\t0x262D8\n0x8EA6E0CA\t0x262D9\n0x8EA6E0CB\t0x262DA\n0x8EA6E0CC\t0x262DB\n0x8EA6E0CD\t0x262DC\n0x8EA6E0CE\t0x262E0\n0x8EA6E0CF\t0x262E4\n0x8EA6E0D0\t0x262DD\n0x8EA6E0D1\t0x262F5\n0x8EA6E0D2\t0x262F1\n0x8EA6E0D3\t0x26398\n0x8EA6E0D4\t0x2639D\n0x8EA6E0D5\t0x26399\n0x8EA6E0D6\t0x26450\n0x8EA6E0D7\t0x26449\n0x8EA6E0D8\t0x7FE4\n0x8EA6E0D9\t0x26462\n0x8EA6E0DA\t0x264D7\n0x8EA6E0DB\t0x26501\n0x8EA6E0DC\t0x264F7\n0x8EA6E0DD\t0x2F97D\n0x8EA6E0DE\t0x2658C\n0x8EA6E0DF\t0x2659C\n0x8EA6E0E0\t0x8088\n0x8EA6E0E1\t0x2661F\n0x8EA6E0E2\t0x2661E\n0x8EA6E0E3\t0x2673D\n0x8EA6E0E4\t0x2673F\n0x8EA6E0E5\t0x26711\n0x8EA6E0E6\t0x26759\n0x8EA6E0E7\t0x2673E\n0x8EA6E0E8\t0x26758\n0x8EA6E0E9\t0x26800\n0x8EA6E0EA\t0x2679E\n0x8EA6E0EB\t0x267B6\n0x8EA6E0EC\t0x267AA\n0x8EA6E0ED\t0x267AF\n0x8EA6E0EE\t0x267AC\n0x8EA6E0EF\t0x4430\n0x8EA6E0F0\t0x267C0\n0x8EA6E0F1\t0x267A9\n0x8EA6E0F2\t0x20B10\n0x8EA6E0F3\t0x268EE\n0x8EA6E0F4\t0x26977\n0x8EA6E0F5\t0x26979\n0x8EA6E0F6\t0x2697A\n0x8EA6E0F7\t0x2697D\n0x8EA6E0F8\t0x2697F\n0x8EA6E0F9\t0x26983\n0x8EA6E0FA\t0x26978\n0x8EA6E0FB\t0x2697E\n0x8EA6E0FC\t0x269E4\n0x8EA6E0FD\t0x269E6\n0x8EA6E0FE\t0x269E5\n0x8EA6E1A1\t0x445D\n0x8EA6E1A2\t0x26A4E\n0x8EA6E1A3\t0x26A59\n0x8EA6E1A4\t0x4475\n0x8EA6E1A5\t0x2F98E\n0x8EA6E1A6\t0x26A4F\n0x8EA6E1A7\t0x26A4A\n0x8EA6E1A8\t0x26AE3\n0x8EA6E1A9\t0x26ADE\n0x8EA6E1AA\t0x26AE2\n0x8EA6E1AB\t0x26C74\n0x8EA6E1AC\t0x26CAC\n0x8EA6E1AD\t0x26C61\n0x8EA6E1AE\t0x26C62\n0x8EA6E1AF\t0x26C76\n0x8EA6E1B0\t0x26C7A\n0x8EA6E1B1\t0x26C79\n0x8EA6E1B2\t0x26C60\n0x8EA6E1B3\t0x26D64\n0x8EA6E1B4\t0x26E81\n0x8EA6E1B5\t0x26DDF\n0x8EA6E1B6\t0x26D84\n0x8EA6E1B7\t0x26D8A\n0x8EA6E1B8\t0x26D92\n0x8EA6E1B9\t0x26D79\n0x8EA6E1BA\t0x26DDE\n0x8EA6E1BB\t0x26D98\n0x8EA6E1BC\t0x26D6C\n0x8EA6E1BD\t0x26DE1\n0x8EA6E1BE\t0x2F9A5\n0x8EA6E1BF\t0x26D7C\n0x8EA6E1C0\t0x26D72\n0x8EA6E1C1\t0x26D81\n0x8EA6E1C2\t0x26DE0\n0x8EA6E1C3\t0x26D65\n0x8EA6E1C4\t0x44FF\n0x8EA6E1C5\t0x26D6A\n0x8EA6E1C6\t0x26D97\n0x8EA6E1C7\t0x26DAA\n0x8EA6E1C8\t0x26DD3\n0x8EA6E1C9\t0x26DAB\n0x8EA6E1CA\t0x26D6E\n0x8EA6E1CB\t0x26DAC\n0x8EA6E1CC\t0x26D76\n0x8EA6E1CD\t0x26D7B\n0x8EA6E1CE\t0x26DAD\n0x8EA6E1CF\t0x2F9A6\n0x8EA6E1D0\t0x26D94\n0x8EA6E1D1\t0x26DD7\n0x8EA6E1D2\t0x26D70\n0x8EA6E1D3\t0x26DD5\n0x8EA6E1D4\t0x26DF1\n0x8EA6E1D5\t0x26D7A\n0x8EA6E1D6\t0x26D68\n0x8EA6E1D7\t0x26D96\n0x8EA6E1D8\t0x450B\n0x8EA6E1D9\t0x26D73\n0x8EA6E1DA\t0x26DAE\n0x8EA6E1DB\t0x26DDD\n0x8EA6E1DC\t0x26DDA\n0x8EA6E1DD\t0x26DAF\n0x8EA6E1DE\t0x26DB0\n0x8EA6E1DF\t0x26DDB\n0x8EA6E1E0\t0x26D62\n0x8EA6E1E1\t0x26DF8\n0x8EA6E1E2\t0x271C2\n0x8EA6E1E3\t0x271C7\n0x8EA6E1E4\t0x271C8\n0x8EA6E1E5\t0x271C5\n0x8EA6E1E6\t0x271C3\n0x8EA6E1E7\t0x271C6\n0x8EA6E1E8\t0x272DE\n0x8EA6E1E9\t0x45C8\n0x8EA6E1EA\t0x27311\n0x8EA6E1EB\t0x27315\n0x8EA6E1EC\t0x27328\n0x8EA6E1ED\t0x27321\n0x8EA6E1EE\t0x2732D\n0x8EA6E1EF\t0x27351\n0x8EA6E1F0\t0x2732B\n0x8EA6E1F1\t0x27316\n0x8EA6E1F2\t0x27324\n0x8EA6E1F3\t0x27335\n0x8EA6E1F4\t0x2731F\n0x8EA6E1F5\t0x27312\n0x8EA6E1F6\t0x27310\n0x8EA6E1F7\t0x27380\n0x8EA6E1F8\t0x2733B\n0x8EA6E1F9\t0x27329\n0x8EA6E1FA\t0x2732A\n0x8EA6E1FB\t0x2731B\n0x8EA6E1FC\t0x27318\n0x8EA6E1FD\t0x27320\n0x8EA6E1FE\t0x2733F\n0x8EA6E2A1\t0x2731C\n0x8EA6E2A2\t0x27326\n0x8EA6E2A3\t0x2730B\n0x8EA6E2A4\t0x275BE\n0x8EA6E2A5\t0x275C4\n0x8EA6E2A6\t0x275BD\n0x8EA6E2A7\t0x275FA\n0x8EA6E2A8\t0x275FB\n0x8EA6E2A9\t0x276B1\n0x8EA6E2AA\t0x276B2\n0x8EA6E2AB\t0x276B0\n0x8EA6E2AC\t0x276B9\n0x8EA6E2AD\t0x276A6\n0x8EA6E2AE\t0x276BD\n0x8EA6E2AF\t0x276B6\n0x8EA6E2B0\t0x276B8\n0x8EA6E2B1\t0x276B4\n0x8EA6E2B2\t0x276B3\n0x8EA6E2B3\t0x276A7\n0x8EA6E2B4\t0x276AE\n0x8EA6E2B5\t0x276BC\n0x8EA6E2B6\t0x277F2\n0x8EA6E2B7\t0x277F3\n0x8EA6E2B8\t0x277F4\n0x8EA6E2B9\t0x2783B\n0x8EA6E2BA\t0x27840\n0x8EA6E2BB\t0x27846\n0x8EA6E2BC\t0x278F0\n0x8EA6E2BD\t0x278EE\n0x8EA6E2BE\t0x278E8\n0x8EA6E2BF\t0x278F1\n0x8EA6E2C0\t0x278EB\n0x8EA6E2C1\t0x278EF\n0x8EA6E2C2\t0x279FC\n0x8EA6E2C3\t0x27A20\n0x8EA6E2C4\t0x27A09\n0x8EA6E2C5\t0x27A06\n0x8EA6E2C6\t0x27A03\n0x8EA6E2C7\t0x2F9CF\n0x8EA6E2C8\t0x27A19\n0x8EA6E2C9\t0x27A24\n0x8EA6E2CA\t0x27A1B\n0x8EA6E2CB\t0x27A1D\n0x8EA6E2CC\t0x279FD\n0x8EA6E2CD\t0x27A1E\n0x8EA6E2CE\t0x279F4\n0x8EA6E2CF\t0x27A01\n0x8EA6E2D0\t0x27A08\n0x8EA6E2D1\t0x27A05\n0x8EA6E2D2\t0x27A23\n0x8EA6E2D3\t0x279FF\n0x8EA6E2D4\t0x27BEA\n0x8EA6E2D5\t0x27C4D\n0x8EA6E2D6\t0x27C4E\n0x8EA6E2D7\t0x27C56\n0x8EA6E2D8\t0x27C57\n0x8EA6E2D9\t0x27C51\n0x8EA6E2DA\t0x27C55\n0x8EA6E2DB\t0x27C54\n0x8EA6E2DC\t0x27CCB\n0x8EA6E2DD\t0x27CD4\n0x8EA6E2DE\t0x27CD1\n0x8EA6E2DF\t0x27CCF\n0x8EA6E2E0\t0x27CD2\n0x8EA6E2E1\t0x27CCA\n0x8EA6E2E2\t0x27CD6\n0x8EA6E2E3\t0x27D8B\n0x8EA6E2E4\t0x27D88\n0x8EA6E2E5\t0x27D85\n0x8EA6E2E6\t0x27D89\n0x8EA6E2E7\t0x21A9B\n0x8EA6E2E8\t0x27DBB\n0x8EA6E2E9\t0x27D8C\n0x8EA6E2EA\t0x4774\n0x8EA6E2EB\t0x27D99\n0x8EA6E2EC\t0x27D8A\n0x8EA6E2ED\t0x27EEC\n0x8EA6E2EE\t0x27EEF\n0x8EA6E2EF\t0x27EF9\n0x8EA6E2F0\t0x27F09\n0x8EA6E2F1\t0x27EF8\n0x8EA6E2F2\t0x27EF3\n0x8EA6E2F3\t0x27F00\n0x8EA6E2F4\t0x27F1D\n0x8EA6E2F5\t0x47AC\n0x8EA6E2F6\t0x27EFD\n0x8EA6E2F7\t0x28048\n0x8EA6E2F8\t0x2805C\n0x8EA6E2F9\t0x28055\n0x8EA6E2FA\t0x2805E\n0x8EA6E2FB\t0x28049\n0x8EA6E2FC\t0x28063\n0x8EA6E2FD\t0x28060\n0x8EA6E2FE\t0x28053\n0x8EA6E3A1\t0x28062\n0x8EA6E3A2\t0x28040\n0x8EA6E3A3\t0x28249\n0x8EA6E3A4\t0x2824A\n0x8EA6E3A5\t0x2824C\n0x8EA6E3A6\t0x2824D\n0x8EA6E3A7\t0x2830A\n0x8EA6E3A8\t0x28306\n0x8EA6E3A9\t0x2832F\n0x8EA6E3AA\t0x28321\n0x8EA6E3AB\t0x28307\n0x8EA6E3AC\t0x28309\n0x8EA6E3AD\t0x28302\n0x8EA6E3AE\t0x28316\n0x8EA6E3AF\t0x28303\n0x8EA6E3B0\t0x2830B\n0x8EA6E3B1\t0x2830F\n0x8EA6E3B2\t0x28560\n0x8EA6E3B3\t0x28568\n0x8EA6E3B4\t0x2855E\n0x8EA6E3B5\t0x2855D\n0x8EA6E3B6\t0x28563\n0x8EA6E3B7\t0x2855F\n0x8EA6E3B8\t0x28564\n0x8EA6E3B9\t0x28578\n0x8EA6E3BA\t0x28561\n0x8EA6E3BB\t0x28569\n0x8EA6E3BC\t0x28565\n0x8EA6E3BD\t0x286DA\n0x8EA6E3BE\t0x286E6\n0x8EA6E3BF\t0x286DB\n0x8EA6E3C0\t0x286DC\n0x8EA6E3C1\t0x28739\n0x8EA6E3C2\t0x28757\n0x8EA6E3C3\t0x28755\n0x8EA6E3C4\t0x28765\n0x8EA6E3C5\t0x28761\n0x8EA6E3C6\t0x28754\n0x8EA6E3C7\t0x28845\n0x8EA6E3C8\t0x28841\n0x8EA6E3C9\t0x2883E\n0x8EA6E3CA\t0x28837\n0x8EA6E3CB\t0x28912\n0x8EA6E3CC\t0x28913\n0x8EA6E3CD\t0x2892C\n0x8EA6E3CE\t0x28996\n0x8EA6E3CF\t0x2F9E9\n0x8EA6E3D0\t0x2899C\n0x8EA6E3D1\t0x2899D\n0x8EA6E3D2\t0x28985\n0x8EA6E3D3\t0x2F9E8\n0x8EA6E3D4\t0x2899F\n0x8EA6E3D5\t0x289A3\n0x8EA6E3D6\t0x28C82\n0x8EA6E3D7\t0x28C83\n0x8EA6E3D8\t0x2F9EE\n0x8EA6E3D9\t0x28D1D\n0x8EA6E3DA\t0x28D14\n0x8EA6E3DB\t0x28D1F\n0x8EA6E3DC\t0x28D20\n0x8EA6E3DD\t0x28E47\n0x8EA6E3DE\t0x28E80\n0x8EA6E3DF\t0x28EC9\n0x8EA6E3E0\t0x28EF9\n0x8EA6E3E1\t0x28F06\n0x8EA6E3E2\t0x28EF0\n0x8EA6E3E3\t0x28EF8\n0x8EA6E3E4\t0x28EEF\n0x8EA6E3E5\t0x28EFD\n0x8EA6E3E6\t0x28EF1\n0x8EA6E3E7\t0x28EFE\n0x8EA6E3E8\t0x28FB8\n0x8EA6E3E9\t0x28FC0\n0x8EA6E3EA\t0x28FC3\n0x8EA6E3EB\t0x28FB5\n0x8EA6E3EC\t0x28FB6\n0x8EA6E3ED\t0x28FC9\n0x8EA6E3EE\t0x2F9F3\n0x8EA6E3EF\t0x28FBD\n0x8EA6E3F0\t0x28FBA\n0x8EA6E3F1\t0x28FBF\n0x8EA6E3F2\t0x28FB3\n0x8EA6E3F3\t0x28FC6\n0x8EA6E3F4\t0x28FB2\n0x8EA6E3F5\t0x28FBC\n0x8EA6E3F6\t0x28FB7\n0x8EA6E3F7\t0x28FB9\n0x8EA6E3F8\t0x28FC8\n0x8EA6E3F9\t0x290B5\n0x8EA6E3FA\t0x290B3\n0x8EA6E3FB\t0x4A16\n0x8EA6E3FC\t0x290AC\n0x8EA6E3FD\t0x290A9\n0x8EA6E3FE\t0x290AD\n0x8EA6E4A1\t0x29211\n0x8EA6E4A2\t0x2920D\n0x8EA6E4A3\t0x29216\n0x8EA6E4A4\t0x29289\n0x8EA6E4A5\t0x2927C\n0x8EA6E4A6\t0x2928B\n0x8EA6E4A7\t0x2927B\n0x8EA6E4A8\t0x29288\n0x8EA6E4A9\t0x29284\n0x8EA6E4AA\t0x2939D\n0x8EA6E4AB\t0x29398\n0x8EA6E4AC\t0x29488\n0x8EA6E4AD\t0x29486\n0x8EA6E4AE\t0x29482\n0x8EA6E4AF\t0x2948B\n0x8EA6E4B0\t0x2F9FF\n0x8EA6E4B1\t0x29471\n0x8EA6E4B2\t0x29472\n0x8EA6E4B3\t0x29481\n0x8EA6E4B4\t0x2948C\n0x8EA6E4B5\t0x29480\n0x8EA6E4B6\t0x29489\n0x8EA6E4B7\t0x295BB\n0x8EA6E4B8\t0x295C1\n0x8EA6E4B9\t0x295BE\n0x8EA6E4BA\t0x2FA01\n0x8EA6E4BB\t0x295BD\n0x8EA6E4BC\t0x296C1\n0x8EA6E4BD\t0x296B4\n0x8EA6E4BE\t0x296B7\n0x8EA6E4BF\t0x296C8\n0x8EA6E4C0\t0x4B3B\n0x8EA6E4C1\t0x296D3\n0x8EA6E4C2\t0x296D0\n0x8EA6E4C3\t0x296B0\n0x8EA6E4C4\t0x296CA\n0x8EA6E4C5\t0x296CD\n0x8EA6E4C6\t0x29815\n0x8EA6E4C7\t0x29819\n0x8EA6E4C8\t0x29817\n0x8EA6E4C9\t0x2983F\n0x8EA6E4CA\t0x29840\n0x8EA6E4CB\t0x29844\n0x8EA6E4CC\t0x2987C\n0x8EA6E4CD\t0x29878\n0x8EA6E4CE\t0x29879\n0x8EA6E4CF\t0x29888\n0x8EA6E4D0\t0x2FA06\n0x8EA6E4D1\t0x29889\n0x8EA6E4D2\t0x2987D\n0x8EA6E4D3\t0x29A23\n0x8EA6E4D4\t0x29A24\n0x8EA6E4D5\t0x29A26\n0x8EA6E4D6\t0x29A22\n0x8EA6E4D7\t0x29A27\n0x8EA6E4D8\t0x29A1F\n0x8EA6E4D9\t0x29AC9\n0x8EA6E4DA\t0x29AC3\n0x8EA6E4DB\t0x29B0A\n0x8EA6E4DC\t0x29B0B\n0x8EA6E4DD\t0x29B04\n0x8EA6E4DE\t0x4BEF\n0x8EA6E4DF\t0x29B03\n0x8EA6E4E0\t0x29B01\n0x8EA6E4E1\t0x29B09\n0x8EA6E4E2\t0x29C0F\n0x8EA6E4E3\t0x29C2E\n0x8EA6E4E4\t0x29C2D\n0x8EA6E4E5\t0x29C91\n0x8EA6E4E6\t0x29C99\n0x8EA6E4E7\t0x29C9E\n0x8EA6E4E8\t0x29C90\n0x8EA6E4E9\t0x29C94\n0x8EA6E4EA\t0x29C9D\n0x8EA6E4EB\t0x29C98\n0x8EA6E4EC\t0x29C9B\n0x8EA6E4ED\t0x29C9C\n0x8EA6E4EE\t0x29C9A\n0x8EA6E4EF\t0x29D54\n0x8EA6E4F0\t0x29F9D\n0x8EA6E4F1\t0x29F9F\n0x8EA6E4F2\t0x29FA3\n0x8EA6E4F3\t0x29FA4\n0x8EA6E4F4\t0x29FA5\n0x8EA6E4F5\t0x2A302\n0x8EA6E4F6\t0x2A417\n0x8EA6E4F7\t0x2A41B\n0x8EA6E4F8\t0x2A419\n0x8EA6E4F9\t0x2A4D1\n0x8EA6E4FA\t0x21537\n0x8EA7A1A1\t0x20055\n0x8EA7A1A2\t0x20182\n0x8EA7A1A3\t0x20189\n0x8EA7A1A4\t0x20187\n0x8EA7A1A5\t0x203BE\n0x8EA7A1A6\t0x203BD\n0x8EA7A1A7\t0x203CA\n0x8EA7A1A8\t0x203D4\n0x8EA7A1A9\t0x203BC\n0x8EA7A1AA\t0x203C4\n0x8EA7A1AB\t0x203C1\n0x8EA7A1AC\t0x203C2\n0x8EA7A1AD\t0x203D7\n0x8EA7A1AE\t0x20370\n0x8EA7A1AF\t0x203BA\n0x8EA7A1B0\t0x203E3\n0x8EA7A1B1\t0x203BB\n0x8EA7A1B2\t0x204B1\n0x8EA7A1B3\t0x204B6\n0x8EA7A1B4\t0x204B0\n0x8EA7A1B5\t0x2056C\n0x8EA7A1B6\t0x2060D\n0x8EA7A1B7\t0x20607\n0x8EA7A1B8\t0x207F1\n0x8EA7A1B9\t0x207F5\n0x8EA7A1BA\t0x207ED\n0x8EA7A1BB\t0x207EF\n0x8EA7A1BC\t0x207EB\n0x8EA7A1BD\t0x207EC\n0x8EA7A1BE\t0x207EE\n0x8EA7A1BF\t0x20807\n0x8EA7A1C0\t0x209C4\n0x8EA7A1C1\t0x20A08\n0x8EA7A1C2\t0x20AB3\n0x8EA7A1C3\t0x20AAD\n0x8EA7A1C4\t0x20AB0\n0x8EA7A1C5\t0x20B11\n0x8EA7A1C6\t0x2018A\n0x8EA7A1C7\t0x20F83\n0x8EA7A1C8\t0x20F7A\n0x8EA7A1C9\t0x20F82\n0x8EA7A1CA\t0x20F68\n0x8EA7A1CB\t0x20F71\n0x8EA7A1CC\t0x20FB0\n0x8EA7A1CD\t0x20FAF\n0x8EA7A1CE\t0x35F6\n0x8EA7A1CF\t0x20F6C\n0x8EA7A1D0\t0x20F6F\n0x8EA7A1D1\t0x20F62\n0x8EA7A1D2\t0x20F65\n0x8EA7A1D3\t0x20F81\n0x8EA7A1D4\t0x20F7F\n0x8EA7A1D5\t0x20F64\n0x8EA7A1D6\t0x20F73\n0x8EA7A1D7\t0x20F6E\n0x8EA7A1D8\t0x20F67\n0x8EA7A1D9\t0x20F74\n0x8EA7A1DA\t0x20F7D\n0x8EA7A1DB\t0x20F78\n0x8EA7A1DC\t0x20F85\n0x8EA7A1DD\t0x20FAA\n0x8EA7A1DE\t0x20F88\n0x8EA7A1DF\t0x20FA6\n0x8EA7A1E0\t0x2F84E\n0x8EA7A1E1\t0x20F8A\n0x8EA7A1E2\t0x20F84\n0x8EA7A1E3\t0x5655\n0x8EA7A1E4\t0x21224\n0x8EA7A1E5\t0x21222\n0x8EA7A1E6\t0x21223\n0x8EA7A1E7\t0x21432\n0x8EA7A1E8\t0x2145B\n0x8EA7A1E9\t0x2144F\n0x8EA7A1EA\t0x3667\n0x8EA7A1EB\t0x21426\n0x8EA7A1EC\t0x2143E\n0x8EA7A1ED\t0x21442\n0x8EA7A1EE\t0x21447\n0x8EA7A1EF\t0x21422\n0x8EA7A1F0\t0x2069B\n0x8EA7A1F1\t0x2144A\n0x8EA7A1F2\t0x2141F\n0x8EA7A1F3\t0x21449\n0x8EA7A1F4\t0x2142B\n0x8EA7A1F5\t0x21433\n0x8EA7A1F6\t0x2F858\n0x8EA7A1F7\t0x2142A\n0x8EA7A1F8\t0x21428\n0x8EA7A1F9\t0x2153D\n0x8EA7A1FA\t0x2153C\n0x8EA7A1FB\t0x215BF\n0x8EA7A1FC\t0x21679\n0x8EA7A1FD\t0x21680\n0x8EA7A1FE\t0x2167C\n0x8EA7A2A1\t0x2167A\n0x8EA7A2A2\t0x21678\n0x8EA7A2A3\t0x21882\n0x8EA7A2A4\t0x2185C\n0x8EA7A2A5\t0x2185A\n0x8EA7A2A6\t0x2184B\n0x8EA7A2A7\t0x2187C\n0x8EA7A2A8\t0x2187F\n0x8EA7A2A9\t0x2181F\n0x8EA7A2AA\t0x21889\n0x8EA7A2AB\t0x2188B\n0x8EA7A2AC\t0x21857\n0x8EA7A2AD\t0x2187E\n0x8EA7A2AE\t0x2187D\n0x8EA7A2AF\t0x21853\n0x8EA7A2B0\t0x21A9F\n0x8EA7A2B1\t0x21ABC\n0x8EA7A2B2\t0x21AA5\n0x8EA7A2B3\t0x21A86\n0x8EA7A2B4\t0x21ADC\n0x8EA7A2B5\t0x21AA4\n0x8EA7A2B6\t0x21AB6\n0x8EA7A2B7\t0x21AA2\n0x8EA7A2B8\t0x21AB4\n0x8EA7A2B9\t0x21B48\n0x8EA7A2BA\t0x21B46\n0x8EA7A2BB\t0x21BA7\n0x8EA7A2BC\t0x21C14\n0x8EA7A2BD\t0x21C12\n0x8EA7A2BE\t0x21C11\n0x8EA7A2BF\t0x21CE1\n0x8EA7A2C0\t0x21CD0\n0x8EA7A2C1\t0x21D26\n0x8EA7A2C2\t0x21D28\n0x8EA7A2C3\t0x21D29\n0x8EA7A2C4\t0x21F2F\n0x8EA7A2C5\t0x21F0D\n0x8EA7A2C6\t0x21F25\n0x8EA7A2C7\t0x21F14\n0x8EA7A2C8\t0x21F3C\n0x8EA7A2C9\t0x21F0B\n0x8EA7A2CA\t0x21F11\n0x8EA7A2CB\t0x21F30\n0x8EA7A2CC\t0x21F18\n0x8EA7A2CD\t0x21F19\n0x8EA7A2CE\t0x21F36\n0x8EA7A2CF\t0x21F17\n0x8EA7A2D0\t0x21F10\n0x8EA7A2D1\t0x21F15\n0x8EA7A2D2\t0x22003\n0x8EA7A2D3\t0x22029\n0x8EA7A2D4\t0x2204C\n0x8EA7A2D5\t0x2213F\n0x8EA7A2D6\t0x2213E\n0x8EA7A2D7\t0x22134\n0x8EA7A2D8\t0x22142\n0x8EA7A2D9\t0x22135\n0x8EA7A2DA\t0x207F3\n0x8EA7A2DB\t0x221CD\n0x8EA7A2DC\t0x221D1\n0x8EA7A2DD\t0x221D2\n0x8EA7A2DE\t0x222AD\n0x8EA7A2DF\t0x222BA\n0x8EA7A2E0\t0x222C1\n0x8EA7A2E1\t0x222BB\n0x8EA7A2E2\t0x222B4\n0x8EA7A2E3\t0x222BC\n0x8EA7A2E4\t0x2236C\n0x8EA7A2E5\t0x22392\n0x8EA7A2E6\t0x22421\n0x8EA7A2E7\t0x22424\n0x8EA7A2E8\t0x23F19\n0x8EA7A2E9\t0x224AD\n0x8EA7A2EA\t0x224AE\n0x8EA7A2EB\t0x224AB\n0x8EA7A2EC\t0x224AC\n0x8EA7A2ED\t0x22570\n0x8EA7A2EE\t0x22576\n0x8EA7A2EF\t0x22571\n0x8EA7A2F0\t0x22577\n0x8EA7A2F1\t0x617F\n0x8EA7A2F2\t0x227EC\n0x8EA7A2F3\t0x2281C\n0x8EA7A2F4\t0x227FB\n0x8EA7A2F5\t0x227EE\n0x8EA7A2F6\t0x228E2\n0x8EA7A2F7\t0x227FD\n0x8EA7A2F8\t0x2281E\n0x8EA7A2F9\t0x2283B\n0x8EA7A2FA\t0x2284A\n0x8EA7A2FB\t0x2F8AE\n0x8EA7A2FC\t0x3992\n0x8EA7A2FD\t0x2287D\n0x8EA7A2FE\t0x22856\n0x8EA7A3A1\t0x22844\n0x8EA7A3A2\t0x2284B\n0x8EA7A3A3\t0x229FA\n0x8EA7A3A4\t0x229E8\n0x8EA7A3A5\t0x229F8\n0x8EA7A3A6\t0x229FF\n0x8EA7A3A7\t0x229F7\n0x8EA7A3A8\t0x229F6\n0x8EA7A3A9\t0x229FE\n0x8EA7A3AA\t0x22A07\n0x8EA7A3AB\t0x22A5D\n0x8EA7A3AC\t0x22CD4\n0x8EA7A3AD\t0x2F8C3\n0x8EA7A3AE\t0x22CC8\n0x8EA7A3AF\t0x22CC5\n0x8EA7A3B0\t0x2F8C0\n0x8EA7A3B1\t0x22CC9\n0x8EA7A3B2\t0x22D4D\n0x8EA7A3B3\t0x22D20\n0x8EA7A3B4\t0x22D36\n0x8EA7A3B5\t0x22D35\n0x8EA7A3B6\t0x22D88\n0x8EA7A3B7\t0x22D25\n0x8EA7A3B8\t0x22D21\n0x8EA7A3B9\t0x22D26\n0x8EA7A3BA\t0x3A45\n0x8EA7A3BB\t0x22D3F\n0x8EA7A3BC\t0x22D3B\n0x8EA7A3BD\t0x22D24\n0x8EA7A3BE\t0x22D43\n0x8EA7A3BF\t0x22D4E\n0x8EA7A3C0\t0x22D4F\n0x8EA7A3C1\t0x22D44\n0x8EA7A3C2\t0x22D40\n0x8EA7A3C3\t0x22D41\n0x8EA7A3C4\t0x22D39\n0x8EA7A3C5\t0x22D2B\n0x8EA7A3C6\t0x22EDD\n0x8EA7A3C7\t0x22EDE\n0x8EA7A3C8\t0x22FCD\n0x8EA7A3C9\t0x22FCB\n0x8EA7A3CA\t0x22FDB\n0x8EA7A3CB\t0x22FD8\n0x8EA7A3CC\t0x22FD9\n0x8EA7A3CD\t0x22FD2\n0x8EA7A3CE\t0x22FCA\n0x8EA7A3CF\t0x22FD1\n0x8EA7A3D0\t0x22FD4\n0x8EA7A3D1\t0x22FF9\n0x8EA7A3D2\t0x22FD0\n0x8EA7A3D3\t0x2305E\n0x8EA7A3D4\t0x2305D\n0x8EA7A3D5\t0x2308A\n0x8EA7A3D6\t0x23114\n0x8EA7A3D7\t0x23283\n0x8EA7A3D8\t0x23284\n0x8EA7A3D9\t0x2329B\n0x8EA7A3DA\t0x23282\n0x8EA7A3DB\t0x2327D\n0x8EA7A3DC\t0x2327C\n0x8EA7A3DD\t0x23299\n0x8EA7A3DE\t0x2327E\n0x8EA7A3DF\t0x2329A\n0x8EA7A3E0\t0x23295\n0x8EA7A3E1\t0x2327B\n0x8EA7A3E2\t0x23286\n0x8EA7A3E3\t0x23348\n0x8EA7A3E4\t0x23392\n0x8EA7A3E5\t0x235B2\n0x8EA7A3E6\t0x23642\n0x8EA7A3E7\t0x23672\n0x8EA7A3E8\t0x23615\n0x8EA7A3E9\t0x23630\n0x8EA7A3EA\t0x23643\n0x8EA7A3EB\t0x2365B\n0x8EA7A3EC\t0x2361D\n0x8EA7A3ED\t0x23673\n0x8EA7A3EE\t0x2362D\n0x8EA7A3EF\t0x3BC9\n0x8EA7A3F0\t0x23621\n0x8EA7A3F1\t0x2361C\n0x8EA7A3F2\t0x2F8EA\n0x8EA7A3F3\t0x23629\n0x8EA7A3F4\t0x2361E\n0x8EA7A3F5\t0x23633\n0x8EA7A3F6\t0x23910\n0x8EA7A3F7\t0x2390E\n0x8EA7A3F8\t0x2F8F1\n0x8EA7A3F9\t0x2390D\n0x8EA7A3FA\t0x23911\n0x8EA7A3FB\t0x23912\n0x8EA7A3FC\t0x23917\n0x8EA7A3FD\t0x23909\n0x8EA7A3FE\t0x2390F\n0x8EA7A4A1\t0x23998\n0x8EA7A4A2\t0x23994\n0x8EA7A4A3\t0x23996\n0x8EA7A4A4\t0x23999\n0x8EA7A4A5\t0x23995\n0x8EA7A4A6\t0x23997\n0x8EA7A4A7\t0x23A50\n0x8EA7A4A8\t0x23A52\n0x8EA7A4A9\t0x23A4D\n0x8EA7A4AA\t0x23A57\n0x8EA7A4AB\t0x23A53\n0x8EA7A4AC\t0x23A56\n0x8EA7A4AD\t0x23AB8\n0x8EA7A4AE\t0x23B12\n0x8EA7A4AF\t0x23BF1\n0x8EA7A4B0\t0x23BF0\n0x8EA7A4B1\t0x23BEE\n0x8EA7A4B2\t0x23BEF\n0x8EA7A4B3\t0x23BE5\n0x8EA7A4B4\t0x23BEB\n0x8EA7A4B5\t0x23BE7\n0x8EA7A4B6\t0x23BF2\n0x8EA7A4B7\t0x23BE6\n0x8EA7A4B8\t0x23BF7\n0x8EA7A4B9\t0x23C09\n0x8EA7A4BA\t0x23C6B\n0x8EA7A4BB\t0x23C6A\n0x8EA7A4BC\t0x23E79\n0x8EA7A4BD\t0x23ECD\n0x8EA7A4BE\t0x23EEF\n0x8EA7A4BF\t0x23EE4\n0x8EA7A4C0\t0x23EE3\n0x8EA7A4C1\t0x23F6C\n0x8EA7A4C2\t0x23F67\n0x8EA7A4C3\t0x23F62\n0x8EA7A4C4\t0x23F58\n0x8EA7A4C5\t0x23F69\n0x8EA7A4C6\t0x23FAB\n0x8EA7A4C7\t0x23F57\n0x8EA7A4C8\t0x23FAD\n0x8EA7A4C9\t0x23F54\n0x8EA7A4CA\t0x23FAE\n0x8EA7A4CB\t0x23F76\n0x8EA7A4CC\t0x23F49\n0x8EA7A4CD\t0x23F45\n0x8EA7A4CE\t0x23F4F\n0x8EA7A4CF\t0x2F90F\n0x8EA7A4D0\t0x23F50\n0x8EA7A4D1\t0x23F7D\n0x8EA7A4D2\t0x23F44\n0x8EA7A4D3\t0x23F66\n0x8EA7A4D4\t0x23F48\n0x8EA7A4D5\t0x23FA3\n0x8EA7A4D6\t0x23F51\n0x8EA7A4D7\t0x23F53\n0x8EA7A4D8\t0x2F910\n0x8EA7A4D9\t0x23F60\n0x8EA7A4DA\t0x23F47\n0x8EA7A4DB\t0x23F5E\n0x8EA7A4DC\t0x23F85\n0x8EA7A4DD\t0x23FAC\n0x8EA7A4DE\t0x23F6D\n0x8EA7A4DF\t0x23F75\n0x8EA7A4E0\t0x23FA8\n0x8EA7A4E1\t0x3D55\n0x8EA7A4E2\t0x23F43\n0x8EA7A4E3\t0x23F4E\n0x8EA7A4E4\t0x23F5C\n0x8EA7A4E5\t0x23F56\n0x8EA7A4E6\t0x23F6E\n0x8EA7A4E7\t0x23F63\n0x8EA7A4E8\t0x23F6A\n0x8EA7A4E9\t0x24356\n0x8EA7A4EA\t0x24312\n0x8EA7A4EB\t0x2435C\n0x8EA7A4EC\t0x24358\n0x8EA7A4ED\t0x24355\n0x8EA7A4EE\t0x2437E\n0x8EA7A4EF\t0x243A8\n0x8EA7A4F0\t0x24311\n0x8EA7A4F1\t0x24359\n0x8EA7A4F2\t0x2435A\n0x8EA7A4F3\t0x24367\n0x8EA7A4F4\t0x24354\n0x8EA7A4F5\t0x2435B\n0x8EA7A4F6\t0x243F0\n0x8EA7A4F7\t0x24529\n0x8EA7A4F8\t0x2452C\n0x8EA7A4F9\t0x2452A\n0x8EA7A4FA\t0x24527\n0x8EA7A4FB\t0x24567\n0x8EA7A4FC\t0x24568\n0x8EA7A4FD\t0x24593\n0x8EA7A4FE\t0x24595\n0x8EA7A5A1\t0x2459A\n0x8EA7A5A2\t0x245EE\n0x8EA7A5A3\t0x245F1\n0x8EA7A5A4\t0x245ED\n0x8EA7A5A5\t0x245E9\n0x8EA7A5A6\t0x246CB\n0x8EA7A5A7\t0x246DF\n0x8EA7A5A8\t0x246DB\n0x8EA7A5A9\t0x2483C\n0x8EA7A5AA\t0x2484E\n0x8EA7A5AB\t0x2486C\n0x8EA7A5AC\t0x2487B\n0x8EA7A5AD\t0x2487C\n0x8EA7A5AE\t0x24883\n0x8EA7A5AF\t0x2486B\n0x8EA7A5B0\t0x24866\n0x8EA7A5B1\t0x24863\n0x8EA7A5B2\t0x248A0\n0x8EA7A5B3\t0x24885\n0x8EA7A5B4\t0x24868\n0x8EA7A5B5\t0x248A2\n0x8EA7A5B6\t0x249EC\n0x8EA7A5B7\t0x3EE8\n0x8EA7A5B8\t0x249E7\n0x8EA7A5B9\t0x24A10\n0x8EA7A5BA\t0x24A18\n0x8EA7A5BB\t0x24A3A\n0x8EA7A5BC\t0x24A1A\n0x8EA7A5BD\t0x24A38\n0x8EA7A5BE\t0x24A41\n0x8EA7A5BF\t0x24A1B\n0x8EA7A5C0\t0x24A14\n0x8EA7A5C1\t0x24A1C\n0x8EA7A5C2\t0x24A1D\n0x8EA7A5C3\t0x24B12\n0x8EA7A5C4\t0x24B0D\n0x8EA7A5C5\t0x24B07\n0x8EA7A5C6\t0x24B7E\n0x8EA7A5C7\t0x24B7F\n0x8EA7A5C8\t0x20AB9\n0x8EA7A5C9\t0x24B80\n0x8EA7A5CA\t0x24B7A\n0x8EA7A5CB\t0x24BF3\n0x8EA7A5CC\t0x24CB9\n0x8EA7A5CD\t0x24CBB\n0x8EA7A5CE\t0x24CBA\n0x8EA7A5CF\t0x24CBD\n0x8EA7A5D0\t0x24CB7\n0x8EA7A5D1\t0x24CBF\n0x8EA7A5D2\t0x24D21\n0x8EA7A5D3\t0x24E3A\n0x8EA7A5D4\t0x24E3D\n0x8EA7A5D5\t0x24E36\n0x8EA7A5D6\t0x24E49\n0x8EA7A5D7\t0x24E81\n0x8EA7A5D8\t0x3FB6\n0x8EA7A5D9\t0x24E3F\n0x8EA7A5DA\t0x24E4D\n0x8EA7A5DB\t0x24E3E\n0x8EA7A5DC\t0x3FBD\n0x8EA7A5DD\t0x24E30\n0x8EA7A5DE\t0x24E4F\n0x8EA7A5DF\t0x24F37\n0x8EA7A5E0\t0x24F98\n0x8EA7A5E1\t0x24F99\n0x8EA7A5E2\t0x25011\n0x8EA7A5E3\t0x2500D\n0x8EA7A5E4\t0x25088\n0x8EA7A5E5\t0x2508A\n0x8EA7A5E6\t0x2521C\n0x8EA7A5E7\t0x25255\n0x8EA7A5E8\t0x25256\n0x8EA7A5E9\t0x25262\n0x8EA7A5EA\t0x25257\n0x8EA7A5EB\t0x25242\n0x8EA7A5EC\t0x25210\n0x8EA7A5ED\t0x2524D\n0x8EA7A5EE\t0x2525A\n0x8EA7A5EF\t0x25266\n0x8EA7A5F0\t0x25246\n0x8EA7A5F1\t0x2287E\n0x8EA7A5F2\t0x2524F\n0x8EA7A5F3\t0x262F9\n0x8EA7A5F4\t0x25387\n0x8EA7A5F5\t0x25384\n0x8EA7A5F6\t0x253F4\n0x8EA7A5F7\t0x253F5\n0x8EA7A5F8\t0x253F2\n0x8EA7A5F9\t0x253F7\n0x8EA7A5FA\t0x25545\n0x8EA7A5FB\t0x2F950\n0x8EA7A5FC\t0x25549\n0x8EA7A5FD\t0x25535\n0x8EA7A5FE\t0x254FD\n0x8EA7A6A1\t0x25530\n0x8EA7A6A2\t0x25543\n0x8EA7A6A3\t0x25546\n0x8EA7A6A4\t0x40D6\n0x8EA7A6A5\t0x25533\n0x8EA7A6A6\t0x256C6\n0x8EA7A6A7\t0x2F956\n0x8EA7A6A8\t0x256D4\n0x8EA7A6A9\t0x271D8\n0x8EA7A6AA\t0x256E0\n0x8EA7A6AB\t0x20FA7\n0x8EA7A6AC\t0x25744\n0x8EA7A6AD\t0x20398\n0x8EA7A6AE\t0x25854\n0x8EA7A6AF\t0x2583E\n0x8EA7A6B0\t0x25835\n0x8EA7A6B1\t0x2583A\n0x8EA7A6B2\t0x4171\n0x8EA7A6B3\t0x25834\n0x8EA7A6B4\t0x25839\n0x8EA7A6B5\t0x25846\n0x8EA7A6B6\t0x2585A\n0x8EA7A6B7\t0x2585B\n0x8EA7A6B8\t0x2583C\n0x8EA7A6B9\t0x259DC\n0x8EA7A6BA\t0x259D6\n0x8EA7A6BB\t0x259D0\n0x8EA7A6BC\t0x2F95E\n0x8EA7A6BD\t0x25AAC\n0x8EA7A6BE\t0x2F95D\n0x8EA7A6BF\t0x25AA5\n0x8EA7A6C0\t0x25BF4\n0x8EA7A6C1\t0x25C24\n0x8EA7A6C2\t0x25BE0\n0x8EA7A6C3\t0x25BFD\n0x8EA7A6C4\t0x25BF2\n0x8EA7A6C5\t0x25BFC\n0x8EA7A6C6\t0x25C02\n0x8EA7A6C7\t0x25BF1\n0x8EA7A6C8\t0x25BFF\n0x8EA7A6C9\t0x25BD2\n0x8EA7A6CA\t0x25BD8\n0x8EA7A6CB\t0x25BD3\n0x8EA7A6CC\t0x25BF9\n0x8EA7A6CD\t0x2F963\n0x8EA7A6CE\t0x25BED\n0x8EA7A6CF\t0x25BF7\n0x8EA7A6D0\t0x25BF0\n0x8EA7A6D1\t0x25BD7\n0x8EA7A6D2\t0x25C09\n0x8EA7A6D3\t0x25BF5\n0x8EA7A6D4\t0x25EC2\n0x8EA7A6D5\t0x25EC5\n0x8EA7A6D6\t0x25ECF\n0x8EA7A6D7\t0x4298\n0x8EA7A6D8\t0x25EC1\n0x8EA7A6D9\t0x25EC6\n0x8EA7A6DA\t0x25ED4\n0x8EA7A6DB\t0x25ECE\n0x8EA7A6DC\t0x2609B\n0x8EA7A6DD\t0x26099\n0x8EA7A6DE\t0x2608F\n0x8EA7A6DF\t0x260B7\n0x8EA7A6E0\t0x26082\n0x8EA7A6E1\t0x26093\n0x8EA7A6E2\t0x260B4\n0x8EA7A6E3\t0x260C1\n0x8EA7A6E4\t0x26090\n0x8EA7A6E5\t0x2609A\n0x8EA7A6E6\t0x26094\n0x8EA7A6E7\t0x2609C\n0x8EA7A6E8\t0x260B5\n0x8EA7A6E9\t0x2F96F\n0x8EA7A6EA\t0x2F96E\n0x8EA7A6EB\t0x2609F\n0x8EA7A6EC\t0x2608E\n0x8EA7A6ED\t0x2609E\n0x8EA7A6EE\t0x2623C\n0x8EA7A6EF\t0x26247\n0x8EA7A6F0\t0x26241\n0x8EA7A6F1\t0x262EB\n0x8EA7A6F2\t0x262EC\n0x8EA7A6F3\t0x262ED\n0x8EA7A6F4\t0x262EE\n0x8EA7A6F5\t0x262DF\n0x8EA7A6F6\t0x262F2\n0x8EA7A6F7\t0x2630D\n0x8EA7A6F8\t0x2630E\n0x8EA7A6F9\t0x20186\n0x8EA7A6FA\t0x263A9\n0x8EA7A6FB\t0x263A4\n0x8EA7A6FC\t0x263A5\n0x8EA7A6FD\t0x2645F\n0x8EA7A6FE\t0x2645A\n0x8EA7A7A1\t0x26466\n0x8EA7A7A2\t0x26468\n0x8EA7A7A3\t0x2646A\n0x8EA7A7A4\t0x26464\n0x8EA7A7A5\t0x26465\n0x8EA7A7A6\t0x264C1\n0x8EA7A7A7\t0x264D8\n0x8EA7A7A8\t0x2F97B\n0x8EA7A7A9\t0x264D9\n0x8EA7A7AA\t0x26509\n0x8EA7A7AB\t0x265AA\n0x8EA7A7AC\t0x265A3\n0x8EA7A7AD\t0x265B9\n0x8EA7A7AE\t0x259E2\n0x8EA7A7AF\t0x265A5\n0x8EA7A7B0\t0x265AB\n0x8EA7A7B1\t0x26620\n0x8EA7A7B2\t0x26789\n0x8EA7A7B3\t0x2678B\n0x8EA7A7B4\t0x267DB\n0x8EA7A7B5\t0x267E4\n0x8EA7A7B6\t0x267EF\n0x8EA7A7B7\t0x267E2\n0x8EA7A7B8\t0x267E9\n0x8EA7A7B9\t0x267F0\n0x8EA7A7BA\t0x267F3\n0x8EA7A7BB\t0x267DD\n0x8EA7A7BC\t0x2681E\n0x8EA7A7BD\t0x2691D\n0x8EA7A7BE\t0x26946\n0x8EA7A7BF\t0x2697C\n0x8EA7A7C0\t0x26980\n0x8EA7A7C1\t0x26981\n0x8EA7A7C2\t0x26982\n0x8EA7A7C3\t0x26987\n0x8EA7A7C4\t0x26988\n0x8EA7A7C5\t0x2698A\n0x8EA7A7C6\t0x2698C\n0x8EA7A7C7\t0x269E7\n0x8EA7A7C8\t0x269EB\n0x8EA7A7C9\t0x269EA\n0x8EA7A7CA\t0x26A68\n0x8EA7A7CB\t0x26A6B\n0x8EA7A7CC\t0x26A69\n0x8EA7A7CD\t0x26A66\n0x8EA7A7CE\t0x26A6A\n0x8EA7A7CF\t0x26A65\n0x8EA7A7D0\t0x26AE5\n0x8EA7A7D1\t0x26AE4\n0x8EA7A7D2\t0x26AE6\n0x8EA7A7D3\t0x26D18\n0x8EA7A7D4\t0x26E24\n0x8EA7A7D5\t0x26E48\n0x8EA7A7D6\t0x26E2F\n0x8EA7A7D7\t0x26E7E\n0x8EA7A7D8\t0x26D89\n0x8EA7A7D9\t0x26E1E\n0x8EA7A7DA\t0x26E49\n0x8EA7A7DB\t0x26E26\n0x8EA7A7DC\t0x26E09\n0x8EA7A7DD\t0x26E34\n0x8EA7A7DE\t0x26E2D\n0x8EA7A7DF\t0x26E4A\n0x8EA7A7E0\t0x26E15\n0x8EA7A7E1\t0x2F9A9\n0x8EA7A7E2\t0x26E33\n0x8EA7A7E3\t0x26E28\n0x8EA7A7E4\t0x26E27\n0x8EA7A7E5\t0x26E20\n0x8EA7A7E6\t0x26E2B\n0x8EA7A7E7\t0x26E29\n0x8EA7A7E8\t0x26E6A\n0x8EA7A7E9\t0x26E0B\n0x8EA7A7EA\t0x26E0E\n0x8EA7A7EB\t0x26E1C\n0x8EA7A7EC\t0x26DFF\n0x8EA7A7ED\t0x2F9AA\n0x8EA7A7EE\t0x26E35\n0x8EA7A7EF\t0x26E11\n0x8EA7A7F0\t0x26E4B\n0x8EA7A7F1\t0x26E4C\n0x8EA7A7F2\t0x26E1F\n0x8EA7A7F3\t0x26E0F\n0x8EA7A7F4\t0x26E39\n0x8EA7A7F5\t0x26E68\n0x8EA7A7F6\t0x26E1D\n0x8EA7A7F7\t0x26E08\n0x8EA7A7F8\t0x26E0C\n0x8EA7A7F9\t0x26E0D\n0x8EA7A7FA\t0x26E62\n0x8EA7A7FB\t0x26EAF\n0x8EA7A7FC\t0x26E32\n0x8EA7A7FD\t0x26E2C\n0x8EA7A7FE\t0x26E64\n0x8EA7A8A1\t0x26E04\n0x8EA7A8A2\t0x26E16\n0x8EA7A8A3\t0x26E4D\n0x8EA7A8A4\t0x26E07\n0x8EA7A8A5\t0x26EAE\n0x8EA7A8A6\t0x271D4\n0x8EA7A8A7\t0x271D1\n0x8EA7A8A8\t0x271D5\n0x8EA7A8A9\t0x271D0\n0x8EA7A8AA\t0x27371\n0x8EA7A8AB\t0x2735D\n0x8EA7A8AC\t0x2735B\n0x8EA7A8AD\t0x2737A\n0x8EA7A8AE\t0x2F9BD\n0x8EA7A8AF\t0x2737F\n0x8EA7A8B0\t0x27379\n0x8EA7A8B1\t0x27367\n0x8EA7A8B2\t0x2739E\n0x8EA7A8B3\t0x27394\n0x8EA7A8B4\t0x27364\n0x8EA7A8B5\t0x2735E\n0x8EA7A8B6\t0x27381\n0x8EA7A8B7\t0x2735A\n0x8EA7A8B8\t0x27357\n0x8EA7A8B9\t0x2737C\n0x8EA7A8BA\t0x27398\n0x8EA7A8BB\t0x27366\n0x8EA7A8BC\t0x2737E\n0x8EA7A8BD\t0x27382\n0x8EA7A8BE\t0x27368\n0x8EA7A8BF\t0x2735F\n0x8EA7A8C0\t0x27363\n0x8EA7A8C1\t0x27397\n0x8EA7A8C2\t0x45CD\n0x8EA7A8C3\t0x27353\n0x8EA7A8C4\t0x2737B\n0x8EA7A8C5\t0x2737D\n0x8EA7A8C6\t0x27378\n0x8EA7A8C7\t0x27406\n0x8EA7A8C8\t0x275C0\n0x8EA7A8C9\t0x275C2\n0x8EA7A8CA\t0x275C3\n0x8EA7A8CB\t0x276DC\n0x8EA7A8CC\t0x276E6\n0x8EA7A8CD\t0x276EC\n0x8EA7A8CE\t0x276F2\n0x8EA7A8CF\t0x276E8\n0x8EA7A8D0\t0x276EB\n0x8EA7A8D1\t0x276EA\n0x8EA7A8D2\t0x276E5\n0x8EA7A8D3\t0x276E0\n0x8EA7A8D4\t0x276D0\n0x8EA7A8D5\t0x276D8\n0x8EA7A8D6\t0x276D5\n0x8EA7A8D7\t0x276D3\n0x8EA7A8D8\t0x276E4\n0x8EA7A8D9\t0x276F3\n0x8EA7A8DA\t0x276DB\n0x8EA7A8DB\t0x2772F\n0x8EA7A8DC\t0x277F9\n0x8EA7A8DD\t0x2785D\n0x8EA7A8DE\t0x2785B\n0x8EA7A8DF\t0x2784C\n0x8EA7A8E0\t0x27858\n0x8EA7A8E1\t0x27860\n0x8EA7A8E2\t0x27853\n0x8EA7A8E3\t0x27850\n0x8EA7A8E4\t0x27907\n0x8EA7A8E5\t0x27908\n0x8EA7A8E6\t0x278F4\n0x8EA7A8E7\t0x278F6\n0x8EA7A8E8\t0x27904\n0x8EA7A8E9\t0x278FD\n0x8EA7A8EA\t0x27905\n0x8EA7A8EB\t0x27A28\n0x8EA7A8EC\t0x27A56\n0x8EA7A8ED\t0x27A42\n0x8EA7A8EE\t0x27A5C\n0x8EA7A8EF\t0x27A3D\n0x8EA7A8F0\t0x27A2F\n0x8EA7A8F1\t0x27A2B\n0x8EA7A8F2\t0x27A58\n0x8EA7A8F3\t0x27A61\n0x8EA7A8F4\t0x27A2C\n0x8EA7A8F5\t0x27A51\n0x8EA7A8F6\t0x27A50\n0x8EA7A8F7\t0x27A3C\n0x8EA7A8F8\t0x27A36\n0x8EA7A8F9\t0x46F6\n0x8EA7A8FA\t0x27A60\n0x8EA7A8FB\t0x27A5B\n0x8EA7A8FC\t0x27A2E\n0x8EA7A8FD\t0x27A40\n0x8EA7A8FE\t0x27A5F\n0x8EA7A9A1\t0x27A26\n0x8EA7A9A2\t0x27A2D\n0x8EA7A9A3\t0x27A5E\n0x8EA7A9A4\t0x27A3B\n0x8EA7A9A5\t0x27BEF\n0x8EA7A9A6\t0x27BF3\n0x8EA7A9A7\t0x27BEE\n0x8EA7A9A8\t0x27BED\n0x8EA7A9A9\t0x27C5A\n0x8EA7A9AA\t0x27C62\n0x8EA7A9AB\t0x27C5B\n0x8EA7A9AC\t0x27C5F\n0x8EA7A9AD\t0x27C5E\n0x8EA7A9AE\t0x27C64\n0x8EA7A9AF\t0x27CE0\n0x8EA7A9B0\t0x27CE1\n0x8EA7A9B1\t0x27CE5\n0x8EA7A9B2\t0x27DA5\n0x8EA7A9B3\t0x27D9B\n0x8EA7A9B4\t0x27D9F\n0x8EA7A9B5\t0x27D9C\n0x8EA7A9B6\t0x477A\n0x8EA7A9B7\t0x27DAA\n0x8EA7A9B8\t0x27DA4\n0x8EA7A9B9\t0x27DA3\n0x8EA7A9BA\t0x27E67\n0x8EA7A9BB\t0x27F26\n0x8EA7A9BC\t0x27F1A\n0x8EA7A9BD\t0x47B8\n0x8EA7A9BE\t0x27F1C\n0x8EA7A9BF\t0x27F15\n0x8EA7A9C0\t0x27F1B\n0x8EA7A9C1\t0x27F18\n0x8EA7A9C2\t0x27F1E\n0x8EA7A9C3\t0x27F25\n0x8EA7A9C4\t0x2F9DC\n0x8EA7A9C5\t0x2807B\n0x8EA7A9C6\t0x28075\n0x8EA7A9C7\t0x28093\n0x8EA7A9C8\t0x2808F\n0x8EA7A9C9\t0x2807C\n0x8EA7A9CA\t0x2809B\n0x8EA7A9CB\t0x28088\n0x8EA7A9CC\t0x28091\n0x8EA7A9CD\t0x2807E\n0x8EA7A9CE\t0x4801\n0x8EA7A9CF\t0x28086\n0x8EA7A9D0\t0x2825B\n0x8EA7A9D1\t0x28254\n0x8EA7A9D2\t0x28335\n0x8EA7A9D3\t0x28340\n0x8EA7A9D4\t0x28337\n0x8EA7A9D5\t0x28329\n0x8EA7A9D6\t0x28326\n0x8EA7A9D7\t0x28323\n0x8EA7A9D8\t0x28330\n0x8EA7A9D9\t0x28320\n0x8EA7A9DA\t0x28328\n0x8EA7A9DB\t0x28332\n0x8EA7A9DC\t0x2832A\n0x8EA7A9DD\t0x28331\n0x8EA7A9DE\t0x28324\n0x8EA7A9DF\t0x28341\n0x8EA7A9E0\t0x28342\n0x8EA7A9E1\t0x28343\n0x8EA7A9E2\t0x28325\n0x8EA7A9E3\t0x28338\n0x8EA7A9E4\t0x2841C\n0x8EA7A9E5\t0x2841D\n0x8EA7A9E6\t0x2841E\n0x8EA7A9E7\t0x284F6\n0x8EA7A9E8\t0x285A5\n0x8EA7A9E9\t0x28589\n0x8EA7A9EA\t0x2859D\n0x8EA7A9EB\t0x2858A\n0x8EA7A9EC\t0x28587\n0x8EA7A9ED\t0x285AB\n0x8EA7A9EE\t0x28586\n0x8EA7A9EF\t0x2859E\n0x8EA7A9F0\t0x28593\n0x8EA7A9F1\t0x285A1\n0x8EA7A9F2\t0x28588\n0x8EA7A9F3\t0x285A3\n0x8EA7A9F4\t0x2859F\n0x8EA7A9F5\t0x285A0\n0x8EA7A9F6\t0x286FF\n0x8EA7A9F7\t0x28700\n0x8EA7A9F8\t0x28702\n0x8EA7A9F9\t0x286F8\n0x8EA7A9FA\t0x286F7\n0x8EA7A9FB\t0x28701\n0x8EA7A9FC\t0x28787\n0x8EA7A9FD\t0x28789\n0x8EA7A9FE\t0x28776\n0x8EA7AAA1\t0x2876E\n0x8EA7AAA2\t0x28777\n0x8EA7AAA3\t0x28782\n0x8EA7AAA4\t0x28785\n0x8EA7AAA5\t0x28783\n0x8EA7AAA6\t0x28784\n0x8EA7AAA7\t0x28857\n0x8EA7AAA8\t0x2884B\n0x8EA7AAA9\t0x28856\n0x8EA7AAAA\t0x2885D\n0x8EA7AAAB\t0x28860\n0x8EA7AAAC\t0x2884D\n0x8EA7AAAD\t0x28855\n0x8EA7AAAE\t0x28854\n0x8EA7AAAF\t0x28853\n0x8EA7AAB0\t0x28850\n0x8EA7AAB1\t0x28863\n0x8EA7AAB2\t0x28862\n0x8EA7AAB3\t0x28917\n0x8EA7AAB4\t0x28916\n0x8EA7AAB5\t0x2892D\n0x8EA7AAB6\t0x289D9\n0x8EA7AAB7\t0x289BF\n0x8EA7AAB8\t0x492F\n0x8EA7AAB9\t0x289B2\n0x8EA7AABA\t0x289AC\n0x8EA7AABB\t0x289B0\n0x8EA7AABC\t0x289CF\n0x8EA7AABD\t0x289B8\n0x8EA7AABE\t0x4931\n0x8EA7AABF\t0x289D3\n0x8EA7AAC0\t0x289B1\n0x8EA7AAC1\t0x289AF\n0x8EA7AAC2\t0x289CE\n0x8EA7AAC3\t0x289B4\n0x8EA7AAC4\t0x289B7\n0x8EA7AAC5\t0x289D5\n0x8EA7AAC6\t0x499C\n0x8EA7AAC7\t0x28D38\n0x8EA7AAC8\t0x28D28\n0x8EA7AAC9\t0x28D3F\n0x8EA7AACA\t0x28D40\n0x8EA7AACB\t0x28D41\n0x8EA7AACC\t0x28D33\n0x8EA7AACD\t0x28D2B\n0x8EA7AACE\t0x28D2E\n0x8EA7AACF\t0x28F11\n0x8EA7AAD0\t0x28F18\n0x8EA7AAD1\t0x28F17\n0x8EA7AAD2\t0x28F19\n0x8EA7AAD3\t0x28F16\n0x8EA7AAD4\t0x49E6\n0x8EA7AAD5\t0x28F0D\n0x8EA7AAD6\t0x28F26\n0x8EA7AAD7\t0x28F79\n0x8EA7AAD8\t0x28FD8\n0x8EA7AAD9\t0x28FF3\n0x8EA7AADA\t0x28FD7\n0x8EA7AADB\t0x28FCC\n0x8EA7AADC\t0x28FCF\n0x8EA7AADD\t0x28FCB\n0x8EA7AADE\t0x28FD1\n0x8EA7AADF\t0x28FCE\n0x8EA7AAE0\t0x28FD4\n0x8EA7AAE1\t0x28FD5\n0x8EA7AAE2\t0x28FD3\n0x8EA7AAE3\t0x28FD6\n0x8EA7AAE4\t0x28FCD\n0x8EA7AAE5\t0x28FDA\n0x8EA7AAE6\t0x28FD2\n0x8EA7AAE7\t0x28FDE\n0x8EA7AAE8\t0x290CC\n0x8EA7AAE9\t0x290B8\n0x8EA7AAEA\t0x290B7\n0x8EA7AAEB\t0x290C2\n0x8EA7AAEC\t0x290C3\n0x8EA7AAED\t0x291FA\n0x8EA7AAEE\t0x291F9\n0x8EA7AAEF\t0x2921F\n0x8EA7AAF0\t0x2921D\n0x8EA7AAF1\t0x24382\n0x8EA7AAF2\t0x292A6\n0x8EA7AAF3\t0x29290\n0x8EA7AAF4\t0x2929E\n0x8EA7AAF5\t0x29298\n0x8EA7AAF6\t0x29293\n0x8EA7AAF7\t0x29292\n0x8EA7AAF8\t0x292A5\n0x8EA7AAF9\t0x29295\n0x8EA7AAFA\t0x293A9\n0x8EA7AAFB\t0x293A8\n0x8EA7AAFC\t0x293AA\n0x8EA7AAFD\t0x293AB\n0x8EA7AAFE\t0x293AC\n0x8EA7ABA1\t0x2941F\n0x8EA7ABA2\t0x29422\n0x8EA7ABA3\t0x294AA\n0x8EA7ABA4\t0x29496\n0x8EA7ABA5\t0x29491\n0x8EA7ABA6\t0x294AB\n0x8EA7ABA7\t0x294A2\n0x8EA7ABA8\t0x294A4\n0x8EA7ABA9\t0x2949D\n0x8EA7ABAA\t0x29497\n0x8EA7ABAB\t0x2947D\n0x8EA7ABAC\t0x2949F\n0x8EA7ABAD\t0x2949C\n0x8EA7ABAE\t0x29499\n0x8EA7ABAF\t0x294A6\n0x8EA7ABB0\t0x29492\n0x8EA7ABB1\t0x294A7\n0x8EA7ABB2\t0x295C9\n0x8EA7ABB3\t0x295C8\n0x8EA7ABB4\t0x295C7\n0x8EA7ABB5\t0x295CB\n0x8EA7ABB6\t0x29674\n0x8EA7ABB7\t0x296C9\n0x8EA7ABB8\t0x4B38\n0x8EA7ABB9\t0x296D2\n0x8EA7ABBA\t0x296DB\n0x8EA7ABBB\t0x296EB\n0x8EA7ABBC\t0x296E9\n0x8EA7ABBD\t0x296EF\n0x8EA7ABBE\t0x296EE\n0x8EA7ABBF\t0x296F9\n0x8EA7ABC0\t0x296DE\n0x8EA7ABC1\t0x29816\n0x8EA7ABC2\t0x29845\n0x8EA7ABC3\t0x2987F\n0x8EA7ABC4\t0x29898\n0x8EA7ABC5\t0x2989F\n0x8EA7ABC6\t0x29886\n0x8EA7ABC7\t0x29890\n0x8EA7ABC8\t0x2989A\n0x8EA7ABC9\t0x2989D\n0x8EA7ABCA\t0x2988D\n0x8EA7ABCB\t0x2989C\n0x8EA7ABCC\t0x298A0\n0x8EA7ABCD\t0x298A7\n0x8EA7ABCE\t0x2988F\n0x8EA7ABCF\t0x29A41\n0x8EA7ABD0\t0x29A35\n0x8EA7ABD1\t0x29A37\n0x8EA7ABD2\t0x29A30\n0x8EA7ABD3\t0x29A3A\n0x8EA7ABD4\t0x29A36\n0x8EA7ABD5\t0x2FA08\n0x8EA7ABD6\t0x29ACA\n0x8EA7ABD7\t0x29B12\n0x8EA7ABD8\t0x29B15\n0x8EA7ABD9\t0x29B22\n0x8EA7ABDA\t0x29B13\n0x8EA7ABDB\t0x29B18\n0x8EA7ABDC\t0x29B21\n0x8EA7ABDD\t0x29C10\n0x8EA7ABDE\t0x29C20\n0x8EA7ABDF\t0x29C2F\n0x8EA7ABE0\t0x29CA5\n0x8EA7ABE1\t0x29CA3\n0x8EA7ABE2\t0x29CB6\n0x8EA7ABE3\t0x29CAB\n0x8EA7ABE4\t0x29D68\n0x8EA7ABE5\t0x29D67\n0x8EA7ABE6\t0x29D6F\n0x8EA7ABE7\t0x29D77\n0x8EA7ABE8\t0x29D64\n0x8EA7ABE9\t0x29D78\n0x8EA7ABEA\t0x4C3A\n0x8EA7ABEB\t0x29D76\n0x8EA7ABEC\t0x29D6E\n0x8EA7ABED\t0x4CB1\n0x8EA7ABEE\t0x29FD0\n0x8EA7ABEF\t0x29FB3\n0x8EA7ABF0\t0x29FCB\n0x8EA7ABF1\t0x29FD6\n0x8EA7ABF2\t0x29FB1\n0x8EA7ABF3\t0x29FB4\n0x8EA7ABF4\t0x29FD7\n0x8EA7ABF5\t0x29FC6\n0x8EA7ABF6\t0x29FBA\n0x8EA7ABF7\t0x29FD1\n0x8EA7ABF8\t0x29FD2\n0x8EA7ABF9\t0x29FB5\n0x8EA7ABFA\t0x29FC4\n0x8EA7ABFB\t0x29FCC\n0x8EA7ABFC\t0x29FBB\n0x8EA7ABFD\t0x29FB2\n0x8EA7ABFE\t0x2A25B\n0x8EA7ACA1\t0x2A25A\n0x8EA7ACA2\t0x2A259\n0x8EA7ACA3\t0x2A299\n0x8EA7ACA4\t0x2A294\n0x8EA7ACA5\t0x2A296\n0x8EA7ACA6\t0x2A293\n0x8EA7ACA7\t0x2A291\n0x8EA7ACA8\t0x2A28F\n0x8EA7ACA9\t0x2A298\n0x8EA7ACAA\t0x2A30C\n0x8EA7ACAB\t0x2A30A\n0x8EA7ACAC\t0x2A30E\n0x8EA7ACAD\t0x2A312\n0x8EA7ACAE\t0x2A311\n0x8EA7ACAF\t0x2A30B\n0x8EA7ACB0\t0x2A39A\n0x8EA7ACB1\t0x4D47\n0x8EA7ACB2\t0x2A3B4\n0x8EA7ACB3\t0x4D51\n0x8EA7ACB4\t0x2A41C\n0x8EA7ACB5\t0x2A420\n0x8EA7ACB6\t0x2A421\n0x8EA7ACB7\t0x2A4D3\n0x8EA7ACB8\t0x2A4D2\n0x8EA7ACB9\t0x2A538\n0x8EA7ACBB\t0x24CCF\n0x8EA7ACBC\t0x2011D\n0x8EA7ACBD\t0x20192\n0x8EA7ACBE\t0x2018F\n0x8EA7ACBF\t0x2018C\n0x8EA7ACC0\t0x203EA\n0x8EA7ACC1\t0x204B9\n0x8EA7ACC2\t0x2056E\n0x8EA7ACC3\t0x205A0\n0x8EA7ACC4\t0x291DD\n0x8EA7ACC5\t0x20612\n0x8EA7ACC6\t0x20617\n0x8EA7ACC7\t0x2066D\n0x8EA7ACC8\t0x20805\n0x8EA7ACC9\t0x207FB\n0x8EA7ACCA\t0x207FD\n0x8EA7ACCB\t0x20806\n0x8EA7ACCC\t0x20800\n0x8EA7ACCD\t0x207FF\n0x8EA7ACCE\t0x207FE\n0x8EA7ACCF\t0x208B6\n0x8EA7ACD0\t0x20905\n0x8EA7ACD1\t0x20907\n0x8EA7ACD2\t0x20ABC\n0x8EA7ACD3\t0x20ABB\n0x8EA7ACD4\t0x20B8B\n0x8EA7ACD5\t0x20B87\n0x8EA7ACD6\t0x27BFB\n0x8EA7ACD7\t0x20FE7\n0x8EA7ACD8\t0x20FE6\n0x8EA7ACD9\t0x20FE2\n0x8EA7ACDA\t0x285D3\n0x8EA7ACDB\t0x20FD9\n0x8EA7ACDC\t0x20FCA\n0x8EA7ACDD\t0x21012\n0x8EA7ACDE\t0x21010\n0x8EA7ACDF\t0x20FDC\n0x8EA7ACE0\t0x20FD0\n0x8EA7ACE1\t0x20F8B\n0x8EA7ACE2\t0x21013\n0x8EA7ACE3\t0x22A10\n0x8EA7ACE4\t0x20FDA\n0x8EA7ACE5\t0x2F84F\n0x8EA7ACE6\t0x20FFD\n0x8EA7ACE7\t0x20FE5\n0x8EA7ACE8\t0x20FCC\n0x8EA7ACE9\t0x21039\n0x8EA7ACEA\t0x20FC7\n0x8EA7ACEB\t0x20FD8\n0x8EA7ACEC\t0x21460\n0x8EA7ACED\t0x21464\n0x8EA7ACEE\t0x21486\n0x8EA7ACEF\t0x2145E\n0x8EA7ACF0\t0x21466\n0x8EA7ACF1\t0x2145F\n0x8EA7ACF2\t0x21477\n0x8EA7ACF3\t0x21482\n0x8EA7ACF4\t0x21496\n0x8EA7ACF5\t0x2153E\n0x8EA7ACF6\t0x21579\n0x8EA7ACF7\t0x2157A\n0x8EA7ACF8\t0x21688\n0x8EA7ACF9\t0x21689\n0x8EA7ACFA\t0x2168C\n0x8EA7ACFB\t0x243E0\n0x8EA7ACFC\t0x2167B\n0x8EA7ACFD\t0x21686\n0x8EA7ACFE\t0x21894\n0x8EA7ADA1\t0x21897\n0x8EA7ADA2\t0x218B7\n0x8EA7ADA3\t0x218B5\n0x8EA7ADA4\t0x218B8\n0x8EA7ADA5\t0x21893\n0x8EA7ADA6\t0x218B2\n0x8EA7ADA7\t0x218B4\n0x8EA7ADA8\t0x21899\n0x8EA7ADA9\t0x218C3\n0x8EA7ADAA\t0x2189D\n0x8EA7ADAB\t0x2189B\n0x8EA7ADAC\t0x218A3\n0x8EA7ADAD\t0x3747\n0x8EA7ADAE\t0x2199F\n0x8EA7ADAF\t0x2199E\n0x8EA7ADB0\t0x219A3\n0x8EA7ADB1\t0x219A0\n0x8EA7ADB2\t0x219A1\n0x8EA7ADB3\t0x21AC5\n0x8EA7ADB4\t0x21AC6\n0x8EA7ADB5\t0x21ABE\n0x8EA7ADB6\t0x21AC4\n0x8EA7ADB7\t0x21ABF\n0x8EA7ADB8\t0x21B4C\n0x8EA7ADB9\t0x21B4A\n0x8EA7ADBA\t0x21BB1\n0x8EA7ADBB\t0x21C15\n0x8EA7ADBC\t0x21C17\n0x8EA7ADBD\t0x21C10\n0x8EA7ADBE\t0x21C18\n0x8EA7ADBF\t0x21CE0\n0x8EA7ADC0\t0x21CDF\n0x8EA7ADC1\t0x21D27\n0x8EA7ADC2\t0x21F43\n0x8EA7ADC3\t0x21F48\n0x8EA7ADC4\t0x21F1D\n0x8EA7ADC5\t0x21F50\n0x8EA7ADC6\t0x21F58\n0x8EA7ADC7\t0x21F47\n0x8EA7ADC8\t0x21F54\n0x8EA7ADC9\t0x21F53\n0x8EA7ADCA\t0x21F40\n0x8EA7ADCB\t0x21F55\n0x8EA7ADCC\t0x3817\n0x8EA7ADCD\t0x21F5A\n0x8EA7ADCE\t0x22470\n0x8EA7ADCF\t0x2215B\n0x8EA7ADD0\t0x2214D\n0x8EA7ADD1\t0x22156\n0x8EA7ADD2\t0x2214F\n0x8EA7ADD3\t0x2F887\n0x8EA7ADD4\t0x22159\n0x8EA7ADD5\t0x2F888\n0x8EA7ADD6\t0x22154\n0x8EA7ADD7\t0x22153\n0x8EA7ADD8\t0x22150\n0x8EA7ADD9\t0x222B3\n0x8EA7ADDA\t0x2236E\n0x8EA7ADDB\t0x38A3\n0x8EA7ADDC\t0x2236F\n0x8EA7ADDD\t0x22393\n0x8EA7ADDE\t0x22429\n0x8EA7ADDF\t0x22425\n0x8EA7ADE0\t0x22428\n0x8EA7ADE1\t0x2246F\n0x8EA7ADE2\t0x232B8\n0x8EA7ADE3\t0x2F897\n0x8EA7ADE4\t0x224B3\n0x8EA7ADE5\t0x22579\n0x8EA7ADE6\t0x2257E\n0x8EA7ADE7\t0x2257C\n0x8EA7ADE8\t0x22583\n0x8EA7ADE9\t0x2F8AC\n0x8EA7ADEA\t0x22800\n0x8EA7ADEB\t0x22834\n0x8EA7ADEC\t0x22865\n0x8EA7ADED\t0x22836\n0x8EA7ADEE\t0x228A7\n0x8EA7ADEF\t0x22859\n0x8EA7ADF0\t0x22858\n0x8EA7ADF1\t0x22831\n0x8EA7ADF2\t0x22862\n0x8EA7ADF3\t0x22838\n0x8EA7ADF4\t0x22873\n0x8EA7ADF5\t0x2283E\n0x8EA7ADF6\t0x22855\n0x8EA7ADF7\t0x22854\n0x8EA7ADF8\t0x22895\n0x8EA7ADF9\t0x2F8AD\n0x8EA7ADFA\t0x228A5\n0x8EA7ADFB\t0x22894\n0x8EA7ADFC\t0x2289A\n0x8EA7ADFD\t0x2289B\n0x8EA7ADFE\t0x22899\n0x8EA7AEA1\t0x2289F\n0x8EA7AEA2\t0x22853\n0x8EA7AEA3\t0x22A12\n0x8EA7AEA4\t0x22A0A\n0x8EA7AEA5\t0x22A09\n0x8EA7AEA6\t0x22A0C\n0x8EA7AEA7\t0x22A0B\n0x8EA7AEA8\t0x22A0E\n0x8EA7AEA9\t0x22A0D\n0x8EA7AEAA\t0x22A08\n0x8EA7AEAB\t0x22D38\n0x8EA7AEAC\t0x22D3A\n0x8EA7AEAD\t0x22D37\n0x8EA7AEAE\t0x22D3D\n0x8EA7AEAF\t0x22D2D\n0x8EA7AEB0\t0x22D82\n0x8EA7AEB1\t0x22D95\n0x8EA7AEB2\t0x22D87\n0x8EA7AEB3\t0x22D9D\n0x8EA7AEB4\t0x22DB5\n0x8EA7AEB5\t0x22D81\n0x8EA7AEB6\t0x22DC7\n0x8EA7AEB7\t0x22D9B\n0x8EA7AEB8\t0x22D98\n0x8EA7AEB9\t0x22D94\n0x8EA7AEBA\t0x22D86\n0x8EA7AEBB\t0x22D90\n0x8EA7AEBC\t0x22D34\n0x8EA7AEBD\t0x22D8E\n0x8EA7AEBE\t0x22D85\n0x8EA7AEBF\t0x22DA6\n0x8EA7AEC0\t0x22D96\n0x8EA7AEC1\t0x22FEA\n0x8EA7AEC2\t0x22FDF\n0x8EA7AEC3\t0x232BD\n0x8EA7AEC4\t0x22FF7\n0x8EA7AEC5\t0x22FEB\n0x8EA7AEC6\t0x22FE0\n0x8EA7AEC7\t0x22FE8\n0x8EA7AEC8\t0x22FE1\n0x8EA7AEC9\t0x22FE9\n0x8EA7AECA\t0x22FEE\n0x8EA7AECB\t0x22FE5\n0x8EA7AECC\t0x22FEC\n0x8EA7AECD\t0x23063\n0x8EA7AECE\t0x230C6\n0x8EA7AECF\t0x230C2\n0x8EA7AED0\t0x230C1\n0x8EA7AED1\t0x230C0\n0x8EA7AED2\t0x230C3\n0x8EA7AED3\t0x23118\n0x8EA7AED4\t0x232AE\n0x8EA7AED5\t0x232A3\n0x8EA7AED6\t0x232C5\n0x8EA7AED7\t0x232A0\n0x8EA7AED8\t0x232B4\n0x8EA7AED9\t0x232A5\n0x8EA7AEDA\t0x3B1E\n0x8EA7AEDB\t0x232A4\n0x8EA7AEDC\t0x232A8\n0x8EA7AEDD\t0x232A6\n0x8EA7AEDE\t0x236A8\n0x8EA7AEDF\t0x2368D\n0x8EA7AEE0\t0x23682\n0x8EA7AEE1\t0x2369E\n0x8EA7AEE2\t0x23689\n0x8EA7AEE3\t0x23683\n0x8EA7AEE4\t0x23691\n0x8EA7AEE5\t0x236A6\n0x8EA7AEE6\t0x2369A\n0x8EA7AEE7\t0x23690\n0x8EA7AEE8\t0x23685\n0x8EA7AEE9\t0x2367D\n0x8EA7AEEA\t0x2F8EC\n0x8EA7AEEB\t0x2369B\n0x8EA7AEEC\t0x236A5\n0x8EA7AEED\t0x236F0\n0x8EA7AEEE\t0x23696\n0x8EA7AEEF\t0x23688\n0x8EA7AEF0\t0x236D6\n0x8EA7AEF1\t0x236D8\n0x8EA7AEF2\t0x23686\n0x8EA7AEF3\t0x236A4\n0x8EA7AEF4\t0x23697\n0x8EA7AEF5\t0x2391C\n0x8EA7AEF6\t0x23919\n0x8EA7AEF7\t0x2399E\n0x8EA7AEF8\t0x2399F\n0x8EA7AEF9\t0x2399D\n0x8EA7AEFA\t0x2399C\n0x8EA7AEFB\t0x23A5D\n0x8EA7AEFC\t0x23A5E\n0x8EA7AEFD\t0x23A73\n0x8EA7AEFE\t0x23A63\n0x8EA7AFA1\t0x23ABE\n0x8EA7AFA2\t0x23AC1\n0x8EA7AFA3\t0x23ABC\n0x8EA7AFA4\t0x23ABF\n0x8EA7AFA5\t0x23ABB\n0x8EA7AFA6\t0x23ABD\n0x8EA7AFA7\t0x23B13\n0x8EA7AFA8\t0x23B14\n0x8EA7AFA9\t0x23BF8\n0x8EA7AFAA\t0x23BFA\n0x8EA7AFAB\t0x23C06\n0x8EA7AFAC\t0x23BFE\n0x8EA7AFAD\t0x23C51\n0x8EA7AFAE\t0x2400B\n0x8EA7AFAF\t0x23FF1\n0x8EA7AFB0\t0x23FA9\n0x8EA7AFB1\t0x23FD5\n0x8EA7AFB2\t0x23FDC\n0x8EA7AFB3\t0x23FCB\n0x8EA7AFB4\t0x23FF2\n0x8EA7AFB5\t0x2405F\n0x8EA7AFB6\t0x23FDB\n0x8EA7AFB7\t0x23FD6\n0x8EA7AFB8\t0x23FD9\n0x8EA7AFB9\t0x23FD1\n0x8EA7AFBA\t0x23FCF\n0x8EA7AFBB\t0x23FD8\n0x8EA7AFBC\t0x23FE0\n0x8EA7AFBD\t0x23FD4\n0x8EA7AFBE\t0x23FF3\n0x8EA7AFBF\t0x24005\n0x8EA7AFC0\t0x23FCE\n0x8EA7AFC1\t0x23FF4\n0x8EA7AFC2\t0x2F912\n0x8EA7AFC3\t0x23FDA\n0x8EA7AFC4\t0x2400E\n0x8EA7AFC5\t0x24006\n0x8EA7AFC6\t0x23FD7\n0x8EA7AFC7\t0x23FCD\n0x8EA7AFC8\t0x24007\n0x8EA7AFC9\t0x23FE1\n0x8EA7AFCA\t0x24008\n0x8EA7AFCB\t0x243BE\n0x8EA7AFCC\t0x243EF\n0x8EA7AFCD\t0x243D9\n0x8EA7AFCE\t0x243DA\n0x8EA7AFCF\t0x71D7\n0x8EA7AFD0\t0x243A0\n0x8EA7AFD1\t0x243DF\n0x8EA7AFD2\t0x2439E\n0x8EA7AFD3\t0x243BF\n0x8EA7AFD4\t0x243AF\n0x8EA7AFD5\t0x243A7\n0x8EA7AFD6\t0x243AA\n0x8EA7AFD7\t0x243F4\n0x8EA7AFD8\t0x243AE\n0x8EA7AFD9\t0x243B5\n0x8EA7AFDA\t0x243B8\n0x8EA7AFDB\t0x243DB\n0x8EA7AFDC\t0x243C0\n0x8EA7AFDD\t0x243B7\n0x8EA7AFDE\t0x243A2\n0x8EA7AFDF\t0x243DD\n0x8EA7AFE0\t0x243A1\n0x8EA7AFE1\t0x243A5\n0x8EA7AFE2\t0x243B4\n0x8EA7AFE3\t0x243A6\n0x8EA7AFE4\t0x243AB\n0x8EA7AFE5\t0x243AC\n0x8EA7AFE6\t0x2439F\n0x8EA7AFE7\t0x243B1\n0x8EA7AFE8\t0x243FC\n0x8EA7AFE9\t0x2452E\n0x8EA7AFEA\t0x24530\n0x8EA7AFEB\t0x24599\n0x8EA7AFEC\t0x245F8\n0x8EA7AFED\t0x245F6\n0x8EA7AFEE\t0x246F4\n0x8EA7AFEF\t0x246EB\n0x8EA7AFF0\t0x246E1\n0x8EA7AFF1\t0x246E4\n0x8EA7AFF2\t0x24875\n0x8EA7AFF3\t0x24869\n0x8EA7AFF4\t0x3E9A\n0x8EA7AFF5\t0x24899\n0x8EA7AFF6\t0x2489E\n0x8EA7AFF7\t0x24894\n0x8EA7AFF8\t0x24893\n0x8EA7AFF9\t0x24891\n0x8EA7AFFA\t0x24A19\n0x8EA7AFFB\t0x24A17\n0x8EA7AFFC\t0x24A49\n0x8EA7AFFD\t0x24A47\n0x8EA7AFFE\t0x24A48\n0x8EA7B0A1\t0x24A52\n0x8EA7B0A2\t0x24A40\n0x8EA7B0A3\t0x24A63\n0x8EA7B0A4\t0x24A46\n0x8EA7B0A5\t0x24A5F\n0x8EA7B0A6\t0x24B0E\n0x8EA7B0A7\t0x24B85\n0x8EA7B0A8\t0x24B87\n0x8EA7B0A9\t0x24BCB\n0x8EA7B0AA\t0x24BCC\n0x8EA7B0AB\t0x24BC9\n0x8EA7B0AC\t0x24CCB\n0x8EA7B0AD\t0x21CE7\n0x8EA7B0AE\t0x24D20\n0x8EA7B0AF\t0x24E5F\n0x8EA7B0B0\t0x24E60\n0x8EA7B0B1\t0x24E6A\n0x8EA7B0B2\t0x24E76\n0x8EA7B0B3\t0x24E73\n0x8EA7B0B4\t0x24E71\n0x8EA7B0B5\t0x24E66\n0x8EA7B0B6\t0x3FC2\n0x8EA7B0B7\t0x24E6B\n0x8EA7B0B8\t0x24E79\n0x8EA7B0B9\t0x24E7B\n0x8EA7B0BA\t0x24F3C\n0x8EA7B0BB\t0x24F9E\n0x8EA7B0BC\t0x24F9C\n0x8EA7B0BD\t0x2501C\n0x8EA7B0BE\t0x2501E\n0x8EA7B0BF\t0x25021\n0x8EA7B0C0\t0x25096\n0x8EA7B0C1\t0x250A1\n0x8EA7B0C2\t0x250B6\n0x8EA7B0C3\t0x250A0\n0x8EA7B0C4\t0x25094\n0x8EA7B0C5\t0x25097\n0x8EA7B0C6\t0x25281\n0x8EA7B0C7\t0x25286\n0x8EA7B0C8\t0x252C0\n0x8EA7B0C9\t0x2528A\n0x8EA7B0CA\t0x2F94B\n0x8EA7B0CB\t0x25285\n0x8EA7B0CC\t0x25295\n0x8EA7B0CD\t0x25249\n0x8EA7B0CE\t0x25282\n0x8EA7B0CF\t0x25284\n0x8EA7B0D0\t0x22878\n0x8EA7B0D1\t0x25290\n0x8EA7B0D2\t0x252B1\n0x8EA7B0D3\t0x253FE\n0x8EA7B0D4\t0x253FB\n0x8EA7B0D5\t0x25550\n0x8EA7B0D6\t0x25556\n0x8EA7B0D7\t0x2555A\n0x8EA7B0D8\t0x2554C\n0x8EA7B0D9\t0x40DC\n0x8EA7B0DA\t0x25557\n0x8EA7B0DB\t0x256E1\n0x8EA7B0DC\t0x256D9\n0x8EA7B0DD\t0x256DB\n0x8EA7B0DE\t0x256F4\n0x8EA7B0DF\t0x25745\n0x8EA7B0E0\t0x25747\n0x8EA7B0E1\t0x25874\n0x8EA7B0E2\t0x2586B\n0x8EA7B0E3\t0x25868\n0x8EA7B0E4\t0x25869\n0x8EA7B0E5\t0x25879\n0x8EA7B0E6\t0x2F95B\n0x8EA7B0E7\t0x25880\n0x8EA7B0E8\t0x25881\n0x8EA7B0E9\t0x25861\n0x8EA7B0EA\t0x25870\n0x8EA7B0EB\t0x2586F\n0x8EA7B0EC\t0x25873\n0x8EA7B0ED\t0x2585D\n0x8EA7B0EE\t0x259FA\n0x8EA7B0EF\t0x41B3\n0x8EA7B0F0\t0x259F3\n0x8EA7B0F1\t0x25A0A\n0x8EA7B0F2\t0x25A17\n0x8EA7B0F3\t0x2F95F\n0x8EA7B0F4\t0x25AB0\n0x8EA7B0F5\t0x25C3E\n0x8EA7B0F6\t0x25C46\n0x8EA7B0F7\t0x25C4F\n0x8EA7B0F8\t0x25C44\n0x8EA7B0F9\t0x25C69\n0x8EA7B0FA\t0x25C33\n0x8EA7B0FB\t0x25C2F\n0x8EA7B0FC\t0x25C4E\n0x8EA7B0FD\t0x25C3A\n0x8EA7B0FE\t0x25C2B\n0x8EA7B1A1\t0x25CA9\n0x8EA7B1A2\t0x25C50\n0x8EA7B1A3\t0x25C45\n0x8EA7B1A4\t0x25C37\n0x8EA7B1A5\t0x25C25\n0x8EA7B1A6\t0x25C2C\n0x8EA7B1A7\t0x25C3F\n0x8EA7B1A8\t0x25C34\n0x8EA7B1A9\t0x25C29\n0x8EA7B1AA\t0x25C1E\n0x8EA7B1AB\t0x25C3D\n0x8EA7B1AC\t0x25EED\n0x8EA7B1AD\t0x2F966\n0x8EA7B1AE\t0x25EF3\n0x8EA7B1AF\t0x25EEA\n0x8EA7B1B0\t0x25EEB\n0x8EA7B1B1\t0x260CC\n0x8EA7B1B2\t0x260CE\n0x8EA7B1B3\t0x260D0\n0x8EA7B1B4\t0x260E3\n0x8EA7B1B5\t0x260E0\n0x8EA7B1B6\t0x260D1\n0x8EA7B1B7\t0x260DC\n0x8EA7B1B8\t0x260DD\n0x8EA7B1B9\t0x260F0\n0x8EA7B1BA\t0x260DB\n0x8EA7B1BB\t0x260E5\n0x8EA7B1BC\t0x260F1\n0x8EA7B1BD\t0x260C9\n0x8EA7B1BE\t0x260E8\n0x8EA7B1BF\t0x260E7\n0x8EA7B1C0\t0x260C8\n0x8EA7B1C1\t0x260DE\n0x8EA7B1C2\t0x260CD\n0x8EA7B1C3\t0x260C5\n0x8EA7B1C4\t0x260C6\n0x8EA7B1C5\t0x260E4\n0x8EA7B1C6\t0x260C3\n0x8EA7B1C7\t0x262FB\n0x8EA7B1C8\t0x262FC\n0x8EA7B1C9\t0x262FE\n0x8EA7B1CA\t0x26303\n0x8EA7B1CB\t0x26300\n0x8EA7B1CC\t0x262FD\n0x8EA7B1CD\t0x26305\n0x8EA7B1CE\t0x26313\n0x8EA7B1CF\t0x263A7\n0x8EA7B1D0\t0x263B4\n0x8EA7B1D1\t0x26470\n0x8EA7B1D2\t0x26474\n0x8EA7B1D3\t0x26471\n0x8EA7B1D4\t0x26475\n0x8EA7B1D5\t0x2647D\n0x8EA7B1D6\t0x26473\n0x8EA7B1D7\t0x264C4\n0x8EA7B1D8\t0x264C3\n0x8EA7B1D9\t0x264DE\n0x8EA7B1DA\t0x264DD\n0x8EA7B1DB\t0x26511\n0x8EA7B1DC\t0x2650F\n0x8EA7B1DD\t0x26510\n0x8EA7B1DE\t0x265C3\n0x8EA7B1DF\t0x265C2\n0x8EA7B1E0\t0x265CA\n0x8EA7B1E1\t0x265C1\n0x8EA7B1E2\t0x26623\n0x8EA7B1E3\t0x267B1\n0x8EA7B1E4\t0x26824\n0x8EA7B1E5\t0x26811\n0x8EA7B1E6\t0x26825\n0x8EA7B1E7\t0x2680A\n0x8EA7B1E8\t0x2681F\n0x8EA7B1E9\t0x26820\n0x8EA7B1EA\t0x26814\n0x8EA7B1EB\t0x26828\n0x8EA7B1EC\t0x26803\n0x8EA7B1ED\t0x26812\n0x8EA7B1EE\t0x2680B\n0x8EA7B1EF\t0x26817\n0x8EA7B1F0\t0x22A11\n0x8EA7B1F1\t0x26949\n0x8EA7B1F2\t0x26989\n0x8EA7B1F3\t0x26990\n0x8EA7B1F4\t0x2698F\n0x8EA7B1F5\t0x26996\n0x8EA7B1F6\t0x26995\n0x8EA7B1F7\t0x26993\n0x8EA7B1F8\t0x269ED\n0x8EA7B1F9\t0x269F0\n0x8EA7B1FA\t0x243DE\n0x8EA7B1FB\t0x26A85\n0x8EA7B1FC\t0x26A77\n0x8EA7B1FD\t0x26A7A\n0x8EA7B1FE\t0x26A84\n0x8EA7B2A1\t0x26A79\n0x8EA7B2A2\t0x26A7D\n0x8EA7B2A3\t0x26A7B\n0x8EA7B2A4\t0x26AED\n0x8EA7B2A5\t0x26AEC\n0x8EA7B2A6\t0x26DF6\n0x8EA7B2A7\t0x26D9B\n0x8EA7B2A8\t0x26E9D\n0x8EA7B2A9\t0x26F11\n0x8EA7B2AA\t0x26EC4\n0x8EA7B2AB\t0x26EC8\n0x8EA7B2AC\t0x26EDF\n0x8EA7B2AD\t0x26EBF\n0x8EA7B2AE\t0x26EB3\n0x8EA7B2AF\t0x26EBA\n0x8EA7B2B0\t0x26F10\n0x8EA7B2B1\t0x26F06\n0x8EA7B2B2\t0x26E88\n0x8EA7B2B3\t0x26E9A\n0x8EA7B2B4\t0x26EE0\n0x8EA7B2B5\t0x26ECC\n0x8EA7B2B6\t0x26EB5\n0x8EA7B2B7\t0x26EE1\n0x8EA7B2B8\t0x26EBC\n0x8EA7B2B9\t0x26EC6\n0x8EA7B2BA\t0x26F0B\n0x8EA7B2BB\t0x26EA4\n0x8EA7B2BC\t0x26E95\n0x8EA7B2BD\t0x26EA3\n0x8EA7B2BE\t0x26EE2\n0x8EA7B2BF\t0x26ECD\n0x8EA7B2C0\t0x26EE3\n0x8EA7B2C1\t0x26EAB\n0x8EA7B2C2\t0x26ECB\n0x8EA7B2C3\t0x26E8F\n0x8EA7B2C4\t0x2F9AB\n0x8EA7B2C5\t0x26EA9\n0x8EA7B2C6\t0x26F24\n0x8EA7B2C7\t0x26EE4\n0x8EA7B2C8\t0x26F12\n0x8EA7B2C9\t0x26EE5\n0x8EA7B2CA\t0x26F67\n0x8EA7B2CB\t0x26EAA\n0x8EA7B2CC\t0x26EA0\n0x8EA7B2CD\t0x26EE6\n0x8EA7B2CE\t0x26EC1\n0x8EA7B2CF\t0x26EE7\n0x8EA7B2D0\t0x26F0D\n0x8EA7B2D1\t0x26E86\n0x8EA7B2D2\t0x26EB0\n0x8EA7B2D3\t0x26E8B\n0x8EA7B2D4\t0x26EE8\n0x8EA7B2D5\t0x26EC9\n0x8EA7B2D6\t0x26F19\n0x8EA7B2D7\t0x26EC0\n0x8EA7B2D8\t0x26F0C\n0x8EA7B2D9\t0x26EE9\n0x8EA7B2DA\t0x26EEA\n0x8EA7B2DB\t0x271ED\n0x8EA7B2DC\t0x271E3\n0x8EA7B2DD\t0x271E4\n0x8EA7B2DE\t0x271E8\n0x8EA7B2DF\t0x271D2\n0x8EA7B2E0\t0x271E2\n0x8EA7B2E1\t0x8666\n0x8EA7B2E2\t0x273CF\n0x8EA7B2E3\t0x273D1\n0x8EA7B2E4\t0x273C3\n0x8EA7B2E5\t0x273C9\n0x8EA7B2E6\t0x273EA\n0x8EA7B2E7\t0x273B4\n0x8EA7B2E8\t0x273DC\n0x8EA7B2E9\t0x273BD\n0x8EA7B2EA\t0x273E6\n0x8EA7B2EB\t0x273C8\n0x8EA7B2EC\t0x273EC\n0x8EA7B2ED\t0x273B2\n0x8EA7B2EE\t0x273A9\n0x8EA7B2EF\t0x273D3\n0x8EA7B2F0\t0x273C0\n0x8EA7B2F1\t0x273E9\n0x8EA7B2F2\t0x273D5\n0x8EA7B2F3\t0x45D9\n0x8EA7B2F4\t0x273C5\n0x8EA7B2F5\t0x45DD\n0x8EA7B2F6\t0x273CB\n0x8EA7B2F7\t0x273D0\n0x8EA7B2F8\t0x273D2\n0x8EA7B2F9\t0x273E4\n0x8EA7B2FA\t0x273E8\n0x8EA7B2FB\t0x273CD\n0x8EA7B2FC\t0x273B6\n0x8EA7B2FD\t0x273AA\n0x8EA7B2FE\t0x273D4\n0x8EA7B3A1\t0x28449\n0x8EA7B3A2\t0x273C1\n0x8EA7B3A3\t0x273DD\n0x8EA7B3A4\t0x273CE\n0x8EA7B3A5\t0x275C9\n0x8EA7B3A6\t0x275CA\n0x8EA7B3A7\t0x276FD\n0x8EA7B3A8\t0x276D9\n0x8EA7B3A9\t0x276FF\n0x8EA7B3AA\t0x27704\n0x8EA7B3AB\t0x276FA\n0x8EA7B3AC\t0x27706\n0x8EA7B3AD\t0x27715\n0x8EA7B3AE\t0x27711\n0x8EA7B3AF\t0x27707\n0x8EA7B3B0\t0x2770B\n0x8EA7B3B1\t0x277FC\n0x8EA7B3B2\t0x277FD\n0x8EA7B3B3\t0x2786D\n0x8EA7B3B4\t0x27865\n0x8EA7B3B5\t0x27914\n0x8EA7B3B6\t0x27913\n0x8EA7B3B7\t0x2790C\n0x8EA7B3B8\t0x2790B\n0x8EA7B3B9\t0x27918\n0x8EA7B3BA\t0x27922\n0x8EA7B3BB\t0x27A7D\n0x8EA7B3BC\t0x27A6F\n0x8EA7B3BD\t0x27A75\n0x8EA7B3BE\t0x27A7B\n0x8EA7B3BF\t0x27A80\n0x8EA7B3C0\t0x27A7F\n0x8EA7B3C1\t0x27A96\n0x8EA7B3C2\t0x27A6D\n0x8EA7B3C3\t0x27A6B\n0x8EA7B3C4\t0x27A86\n0x8EA7B3C5\t0x27A73\n0x8EA7B3C6\t0x27A62\n0x8EA7B3C7\t0x27A77\n0x8EA7B3C8\t0x27A81\n0x8EA7B3C9\t0x27A69\n0x8EA7B3CA\t0x27A82\n0x8EA7B3CB\t0x27A97\n0x8EA7B3CC\t0x27A84\n0x8EA7B3CD\t0x46FC\n0x8EA7B3CE\t0x27A78\n0x8EA7B3CF\t0x2F9D0\n0x8EA7B3D0\t0x27A7A\n0x8EA7B3D1\t0x27A6A\n0x8EA7B3D2\t0x27A65\n0x8EA7B3D3\t0x27A7E\n0x8EA7B3D4\t0x27A94\n0x8EA7B3D5\t0x27BC2\n0x8EA7B3D6\t0x27BC1\n0x8EA7B3D7\t0x27BF9\n0x8EA7B3D8\t0x27C71\n0x8EA7B3D9\t0x27C6B\n0x8EA7B3DA\t0x27C6D\n0x8EA7B3DB\t0x27C6F\n0x8EA7B3DC\t0x27C6E\n0x8EA7B3DD\t0x27CF2\n0x8EA7B3DE\t0x27CE8\n0x8EA7B3DF\t0x27CEF\n0x8EA7B3E0\t0x27CE9\n0x8EA7B3E1\t0x27CEA\n0x8EA7B3E2\t0x27CED\n0x8EA7B3E3\t0x27CF3\n0x8EA7B3E4\t0x27CE6\n0x8EA7B3E5\t0x27DC9\n0x8EA7B3E6\t0x27DB4\n0x8EA7B3E7\t0x27DB3\n0x8EA7B3E8\t0x27DB9\n0x8EA7B3E9\t0x27DCA\n0x8EA7B3EA\t0x27DB1\n0x8EA7B3EB\t0x27DB6\n0x8EA7B3EC\t0x27DC7\n0x8EA7B3ED\t0x27DC4\n0x8EA7B3EE\t0x27DB7\n0x8EA7B3EF\t0x27E6F\n0x8EA7B3F0\t0x27F33\n0x8EA7B3F1\t0x27F32\n0x8EA7B3F2\t0x27F1F\n0x8EA7B3F3\t0x2F9D9\n0x8EA7B3F4\t0x27F2B\n0x8EA7B3F5\t0x27F30\n0x8EA7B3F6\t0x27F36\n0x8EA7B3F7\t0x27F42\n0x8EA7B3F8\t0x27F41\n0x8EA7B3F9\t0x2F9D8\n0x8EA7B3FA\t0x280A5\n0x8EA7B3FB\t0x280AB\n0x8EA7B3FC\t0x280A9\n0x8EA7B3FD\t0x280B3\n0x8EA7B3FE\t0x280A7\n0x8EA7B4A1\t0x280A0\n0x8EA7B4A2\t0x280D2\n0x8EA7B4A3\t0x280A8\n0x8EA7B4A4\t0x280B6\n0x8EA7B4A5\t0x280AC\n0x8EA7B4A6\t0x280AE\n0x8EA7B4A7\t0x280E6\n0x8EA7B4A8\t0x28265\n0x8EA7B4A9\t0x28347\n0x8EA7B4AA\t0x28363\n0x8EA7B4AB\t0x2834D\n0x8EA7B4AC\t0x2835F\n0x8EA7B4AD\t0x2834B\n0x8EA7B4AE\t0x28360\n0x8EA7B4AF\t0x28349\n0x8EA7B4B0\t0x28353\n0x8EA7B4B1\t0x2F9DF\n0x8EA7B4B2\t0x8F3A\n0x8EA7B4B3\t0x28357\n0x8EA7B4B4\t0x2834E\n0x8EA7B4B5\t0x28352\n0x8EA7B4B6\t0x28354\n0x8EA7B4B7\t0x28420\n0x8EA7B4B8\t0x28422\n0x8EA7B4B9\t0x285C1\n0x8EA7B4BA\t0x285D7\n0x8EA7B4BB\t0x285D5\n0x8EA7B4BC\t0x285C4\n0x8EA7B4BD\t0x285D0\n0x8EA7B4BE\t0x285BB\n0x8EA7B4BF\t0x285E2\n0x8EA7B4C0\t0x285CB\n0x8EA7B4C1\t0x285B8\n0x8EA7B4C2\t0x285BF\n0x8EA7B4C3\t0x285D8\n0x8EA7B4C4\t0x285C0\n0x8EA7B4C5\t0x285BA\n0x8EA7B4C6\t0x285B4\n0x8EA7B4C7\t0x285BC\n0x8EA7B4C8\t0x285D4\n0x8EA7B4C9\t0x285ED\n0x8EA7B4CA\t0x285C2\n0x8EA7B4CB\t0x285D9\n0x8EA7B4CC\t0x285CC\n0x8EA7B4CD\t0x2872F\n0x8EA7B4CE\t0x28723\n0x8EA7B4CF\t0x28796\n0x8EA7B4D0\t0x2878D\n0x8EA7B4D1\t0x2879E\n0x8EA7B4D2\t0x28799\n0x8EA7B4D3\t0x28883\n0x8EA7B4D4\t0x4907\n0x8EA7B4D5\t0x2886A\n0x8EA7B4D6\t0x28869\n0x8EA7B4D7\t0x28875\n0x8EA7B4D8\t0x2886C\n0x8EA7B4D9\t0x28880\n0x8EA7B4DA\t0x2886E\n0x8EA7B4DB\t0x28881\n0x8EA7B4DC\t0x28877\n0x8EA7B4DD\t0x28876\n0x8EA7B4DE\t0x28873\n0x8EA7B4DF\t0x28870\n0x8EA7B4E0\t0x28884\n0x8EA7B4E1\t0x28919\n0x8EA7B4E2\t0x289F2\n0x8EA7B4E3\t0x933D\n0x8EA7B4E4\t0x289EC\n0x8EA7B4E5\t0x289EB\n0x8EA7B4E6\t0x289F6\n0x8EA7B4E7\t0x289EF\n0x8EA7B4E8\t0x289F4\n0x8EA7B4E9\t0x289EE\n0x8EA7B4EA\t0x289F3\n0x8EA7B4EB\t0x289ED\n0x8EA7B4EC\t0x28C9B\n0x8EA7B4ED\t0x28C98\n0x8EA7B4EE\t0x28C94\n0x8EA7B4EF\t0x2147A\n0x8EA7B4F0\t0x28C9A\n0x8EA7B4F1\t0x2F9F0\n0x8EA7B4F2\t0x28D4C\n0x8EA7B4F3\t0x49A8\n0x8EA7B4F4\t0x28D57\n0x8EA7B4F5\t0x28D51\n0x8EA7B4F6\t0x28D62\n0x8EA7B4F7\t0x28D52\n0x8EA7B4F8\t0x28D5C\n0x8EA7B4F9\t0x28D53\n0x8EA7B4FA\t0x2F9EF\n0x8EA7B4FB\t0x28E85\n0x8EA7B4FC\t0x28F2D\n0x8EA7B4FD\t0x28F3E\n0x8EA7B4FE\t0x28F30\n0x8EA7B5A1\t0x28F7D\n0x8EA7B5A2\t0x28FE6\n0x8EA7B5A3\t0x28FF6\n0x8EA7B5A4\t0x28FE4\n0x8EA7B5A5\t0x28FE9\n0x8EA7B5A6\t0x28FEC\n0x8EA7B5A7\t0x28FF2\n0x8EA7B5A8\t0x28FE8\n0x8EA7B5A9\t0x28FE3\n0x8EA7B5AA\t0x28FEB\n0x8EA7B5AB\t0x28FF0\n0x8EA7B5AC\t0x28FEA\n0x8EA7B5AD\t0x28FE7\n0x8EA7B5AE\t0x28FFD\n0x8EA7B5AF\t0x28FE5\n0x8EA7B5B0\t0x28FEE\n0x8EA7B5B1\t0x28FF5\n0x8EA7B5B2\t0x28FF9\n0x8EA7B5B3\t0x28FF1\n0x8EA7B5B4\t0x28FF4\n0x8EA7B5B5\t0x2F9F4\n0x8EA7B5B6\t0x29011\n0x8EA7B5B7\t0x290DE\n0x8EA7B5B8\t0x290D8\n0x8EA7B5B9\t0x290DD\n0x8EA7B5BA\t0x290DB\n0x8EA7B5BB\t0x290D3\n0x8EA7B5BC\t0x290E1\n0x8EA7B5BD\t0x291DE\n0x8EA7B5BE\t0x291FC\n0x8EA7B5BF\t0x29228\n0x8EA7B5C0\t0x292B7\n0x8EA7B5C1\t0x292B8\n0x8EA7B5C2\t0x292C7\n0x8EA7B5C3\t0x292B2\n0x8EA7B5C4\t0x292A9\n0x8EA7B5C5\t0x292B9\n0x8EA7B5C6\t0x292BC\n0x8EA7B5C7\t0x292B3\n0x8EA7B5C8\t0x292D1\n0x8EA7B5C9\t0x293B0\n0x8EA7B5CA\t0x293B1\n0x8EA7B5CB\t0x293B6\n0x8EA7B5CC\t0x29404\n0x8EA7B5CD\t0x2942C\n0x8EA7B5CE\t0x294C1\n0x8EA7B5CF\t0x2949E\n0x8EA7B5D0\t0x294BA\n0x8EA7B5D1\t0x4ACA\n0x8EA7B5D2\t0x294D1\n0x8EA7B5D3\t0x294D3\n0x8EA7B5D4\t0x294D4\n0x8EA7B5D5\t0x294D5\n0x8EA7B5D6\t0x294C5\n0x8EA7B5D7\t0x294B6\n0x8EA7B5D8\t0x294B2\n0x8EA7B5D9\t0x294B5\n0x8EA7B5DA\t0x294C3\n0x8EA7B5DB\t0x294B9\n0x8EA7B5DC\t0x294C6\n0x8EA7B5DD\t0x295D6\n0x8EA7B5DE\t0x295E0\n0x8EA7B5DF\t0x295DB\n0x8EA7B5E0\t0x295D7\n0x8EA7B5E1\t0x295DD\n0x8EA7B5E2\t0x29715\n0x8EA7B5E3\t0x2970C\n0x8EA7B5E4\t0x2970F\n0x8EA7B5E5\t0x2970E\n0x8EA7B5E6\t0x296FE\n0x8EA7B5E7\t0x29704\n0x8EA7B5E8\t0x2970B\n0x8EA7B5E9\t0x29702\n0x8EA7B5EA\t0x296FF\n0x8EA7B5EB\t0x29708\n0x8EA7B5EC\t0x29710\n0x8EA7B5ED\t0x29717\n0x8EA7B5EE\t0x29713\n0x8EA7B5EF\t0x29706\n0x8EA7B5F0\t0x29709\n0x8EA7B5F1\t0x29824\n0x8EA7B5F2\t0x29826\n0x8EA7B5F3\t0x29825\n0x8EA7B5F4\t0x29848\n0x8EA7B5F5\t0x298B5\n0x8EA7B5F6\t0x298D2\n0x8EA7B5F7\t0x298D5\n0x8EA7B5F8\t0x298C4\n0x8EA7B5F9\t0x298AF\n0x8EA7B5FA\t0x298AD\n0x8EA7B5FB\t0x298C1\n0x8EA7B5FC\t0x298C0\n0x8EA7B5FD\t0x298CC\n0x8EA7B5FE\t0x298CD\n0x8EA7B6A1\t0x298C3\n0x8EA7B6A2\t0x298C8\n0x8EA7B6A3\t0x298C5\n0x8EA7B6A4\t0x298BA\n0x8EA7B6A5\t0x298D0\n0x8EA7B6A6\t0x298C2\n0x8EA7B6A7\t0x298CE\n0x8EA7B6A8\t0x4B8D\n0x8EA7B6A9\t0x29A43\n0x8EA7B6AA\t0x29A42\n0x8EA7B6AB\t0x29A40\n0x8EA7B6AC\t0x29A31\n0x8EA7B6AD\t0x29ACF\n0x8EA7B6AE\t0x29ACE\n0x8EA7B6AF\t0x29B30\n0x8EA7B6B0\t0x29B34\n0x8EA7B6B1\t0x29B32\n0x8EA7B6B2\t0x29B43\n0x8EA7B6B3\t0x29B3C\n0x8EA7B6B4\t0x29C11\n0x8EA7B6B5\t0x29C35\n0x8EA7B6B6\t0x29C34\n0x8EA7B6B7\t0x29C37\n0x8EA7B6B8\t0x29C31\n0x8EA7B6B9\t0x29CBF\n0x8EA7B6BA\t0x29CBC\n0x8EA7B6BB\t0x29CC2\n0x8EA7B6BC\t0x29CC9\n0x8EA7B6BD\t0x29D83\n0x8EA7B6BE\t0x29D8B\n0x8EA7B6BF\t0x29DA0\n0x8EA7B6C0\t0x29D8D\n0x8EA7B6C1\t0x29D8C\n0x8EA7B6C2\t0x29D9A\n0x8EA7B6C3\t0x29D8A\n0x8EA7B6C4\t0x29D91\n0x8EA7B6C5\t0x29FF1\n0x8EA7B6C6\t0x2A00F\n0x8EA7B6C7\t0x2A001\n0x8EA7B6C8\t0x2A007\n0x8EA7B6C9\t0x2A00C\n0x8EA7B6CA\t0x4CC0\n0x8EA7B6CB\t0x29FDC\n0x8EA7B6CC\t0x29FEE\n0x8EA7B6CD\t0x29FF7\n0x8EA7B6CE\t0x29FF2\n0x8EA7B6CF\t0x29FF8\n0x8EA7B6D0\t0x29FEB\n0x8EA7B6D1\t0x4CCA\n0x8EA7B6D2\t0x29FE6\n0x8EA7B6D3\t0x29FED\n0x8EA7B6D4\t0x29FE9\n0x8EA7B6D5\t0x2A008\n0x8EA7B6D6\t0x2A000\n0x8EA7B6D7\t0x29FE5\n0x8EA7B6D8\t0x29FFC\n0x8EA7B6D9\t0x2A261\n0x8EA7B6DA\t0x2A25E\n0x8EA7B6DB\t0x2A25F\n0x8EA7B6DC\t0x4D25\n0x8EA7B6DD\t0x2A29B\n0x8EA7B6DE\t0x2A316\n0x8EA7B6DF\t0x2A315\n0x8EA7B6E0\t0x2A320\n0x8EA7B6E1\t0x2A314\n0x8EA7B6E2\t0x2A31A\n0x8EA7B6E3\t0x2A317\n0x8EA7B6E4\t0x2A39C\n0x8EA7B6E5\t0x4D4A\n0x8EA7B6E6\t0x2A3F1\n0x8EA7B6E7\t0x4D53\n0x8EA7B6E8\t0x2A3F0\n0x8EA7B6E9\t0x2A428\n0x8EA7B6EA\t0x2A424\n0x8EA7B6EB\t0x2A42A\n0x8EA7B6EC\t0x2A42B\n0x8EA7B6ED\t0x2A4D5\n0x8EA7B6EE\t0x2A504\n0x8EA7B6EF\t0x2A505\n0x8EA7B6F0\t0x2A591\n0x8EA7B6F1\t0x2A592\n0x8EA7B6F2\t0x2A6A6\n0x8EA7B6F3\t0x20109\n0x8EA7B6F4\t0x20422\n0x8EA7B6F5\t0x2041A\n0x8EA7B6F6\t0x2040E\n0x8EA7B6F7\t0x2041B\n0x8EA7B6F8\t0x20408\n0x8EA7B6F9\t0x250B3\n0x8EA7B6FA\t0x2F81C\n0x8EA7B6FB\t0x2069D\n0x8EA7B6FC\t0x20812\n0x8EA7B6FD\t0x2081E\n0x8EA7B6FE\t0x208BB\n0x8EA7B7A1\t0x208BF\n0x8EA7B7A2\t0x208BC\n0x8EA7B7A3\t0x20908\n0x8EA7B7A4\t0x20909\n0x8EA7B7A5\t0x20963\n0x8EA7B7A6\t0x209C8\n0x8EA7B7A7\t0x23728\n0x8EA7B7A8\t0x20B8E\n0x8EA7B7A9\t0x20B8D\n0x8EA7B7AA\t0x21043\n0x8EA7B7AB\t0x2104D\n0x8EA7B7AC\t0x2106D\n0x8EA7B7AD\t0x21042\n0x8EA7B7AE\t0x21052\n0x8EA7B7AF\t0x21051\n0x8EA7B7B0\t0x21069\n0x8EA7B7B1\t0x21050\n0x8EA7B7B2\t0x21056\n0x8EA7B7B3\t0x2106C\n0x8EA7B7B4\t0x21044\n0x8EA7B7B5\t0x21045\n0x8EA7B7B6\t0x2106B\n0x8EA7B7B7\t0x3605\n0x8EA7B7B8\t0x21068\n0x8EA7B7B9\t0x21057\n0x8EA7B7BA\t0x2122E\n0x8EA7B7BB\t0x21231\n0x8EA7B7BC\t0x2122D\n0x8EA7B7BD\t0x2148B\n0x8EA7B7BE\t0x214B2\n0x8EA7B7BF\t0x2148D\n0x8EA7B7C0\t0x214A3\n0x8EA7B7C1\t0x214A4\n0x8EA7B7C2\t0x21490\n0x8EA7B7C3\t0x21489\n0x8EA7B7C4\t0x2148E\n0x8EA7B7C5\t0x21492\n0x8EA7B7C6\t0x2157B\n0x8EA7B7C7\t0x21690\n0x8EA7B7C8\t0x2168F\n0x8EA7B7C9\t0x218E9\n0x8EA7B7CA\t0x218CD\n0x8EA7B7CB\t0x218C5\n0x8EA7B7CC\t0x218D0\n0x8EA7B7CD\t0x218C9\n0x8EA7B7CE\t0x218D1\n0x8EA7B7CF\t0x218C7\n0x8EA7B7D0\t0x218D2\n0x8EA7B7D1\t0x2185F\n0x8EA7B7D2\t0x218E1\n0x8EA7B7D3\t0x218CC\n0x8EA7B7D4\t0x218C6\n0x8EA7B7D5\t0x218E4\n0x8EA7B7D6\t0x219A9\n0x8EA7B7D7\t0x21AD3\n0x8EA7B7D8\t0x21ADA\n0x8EA7B7D9\t0x21AD2\n0x8EA7B7DA\t0x21ADB\n0x8EA7B7DB\t0x21B4D\n0x8EA7B7DC\t0x21B4E\n0x8EA7B7DD\t0x21C1C\n0x8EA7B7DE\t0x21CE8\n0x8EA7B7DF\t0x21F6C\n0x8EA7B7E0\t0x21F5F\n0x8EA7B7E1\t0x21F66\n0x8EA7B7E2\t0x21F64\n0x8EA7B7E3\t0x21F78\n0x8EA7B7E4\t0x21F65\n0x8EA7B7E5\t0x21F6D\n0x8EA7B7E6\t0x21F61\n0x8EA7B7E7\t0x21F7A\n0x8EA7B7E8\t0x22007\n0x8EA7B7E9\t0x22166\n0x8EA7B7EA\t0x22168\n0x8EA7B7EB\t0x22162\n0x8EA7B7EC\t0x222D3\n0x8EA7B7ED\t0x222D4\n0x8EA7B7EE\t0x222D1\n0x8EA7B7EF\t0x222DC\n0x8EA7B7F0\t0x22373\n0x8EA7B7F1\t0x22372\n0x8EA7B7F2\t0x2242D\n0x8EA7B7F3\t0x2242C\n0x8EA7B7F4\t0x2242F\n0x8EA7B7F5\t0x22472\n0x8EA7B7F6\t0x224B4\n0x8EA7B7F7\t0x22589\n0x8EA7B7F8\t0x228CD\n0x8EA7B7F9\t0x228A6\n0x8EA7B7FA\t0x228A2\n0x8EA7B7FB\t0x228A0\n0x8EA7B7FC\t0x22846\n0x8EA7B7FD\t0x228A1\n0x8EA7B7FE\t0x26857\n0x8EA7B8A1\t0x228A3\n0x8EA7B8A2\t0x228B1\n0x8EA7B8A3\t0x228DB\n0x8EA7B8A4\t0x228F6\n0x8EA7B8A5\t0x228DC\n0x8EA7B8A6\t0x228D6\n0x8EA7B8A7\t0x22A13\n0x8EA7B8A8\t0x22D9C\n0x8EA7B8A9\t0x22D97\n0x8EA7B8AA\t0x22DD8\n0x8EA7B8AB\t0x22DE4\n0x8EA7B8AC\t0x22DD4\n0x8EA7B8AD\t0x22DE5\n0x8EA7B8AE\t0x22DDB\n0x8EA7B8AF\t0x22DD0\n0x8EA7B8B0\t0x22DDA\n0x8EA7B8B1\t0x22DCC\n0x8EA7B8B2\t0x22DDC\n0x8EA7B8B3\t0x22DED\n0x8EA7B8B4\t0x22DD3\n0x8EA7B8B5\t0x22DD1\n0x8EA7B8B6\t0x22DCE\n0x8EA7B8B7\t0x22DD9\n0x8EA7B8B8\t0x22DDD\n0x8EA7B8B9\t0x2F8C6\n0x8EA7B8BA\t0x22EE6\n0x8EA7B8BB\t0x22EE5\n0x8EA7B8BC\t0x22EE9\n0x8EA7B8BD\t0x22FFF\n0x8EA7B8BE\t0x22FFE\n0x8EA7B8BF\t0x2300E\n0x8EA7B8C0\t0x2308C\n0x8EA7B8C1\t0x230CA\n0x8EA7B8C2\t0x230CB\n0x8EA7B8C3\t0x2311A\n0x8EA7B8C4\t0x232D7\n0x8EA7B8C5\t0x232CF\n0x8EA7B8C6\t0x232D0\n0x8EA7B8C7\t0x232C9\n0x8EA7B8C8\t0x232CC\n0x8EA7B8C9\t0x232D3\n0x8EA7B8CA\t0x233A4\n0x8EA7B8CB\t0x233A3\n0x8EA7B8CC\t0x23681\n0x8EA7B8CD\t0x23726\n0x8EA7B8CE\t0x236F3\n0x8EA7B8CF\t0x23727\n0x8EA7B8D0\t0x236F2\n0x8EA7B8D1\t0x236FF\n0x8EA7B8D2\t0x236F5\n0x8EA7B8D3\t0x236FC\n0x8EA7B8D4\t0x2370E\n0x8EA7B8D5\t0x3BF0\n0x8EA7B8D6\t0x236F6\n0x8EA7B8D7\t0x23700\n0x8EA7B8D8\t0x23723\n0x8EA7B8D9\t0x23705\n0x8EA7B8DA\t0x23725\n0x8EA7B8DB\t0x23708\n0x8EA7B8DC\t0x23750\n0x8EA7B8DD\t0x23925\n0x8EA7B8DE\t0x23920\n0x8EA7B8DF\t0x23923\n0x8EA7B8E0\t0x23921\n0x8EA7B8E1\t0x239A1\n0x8EA7B8E2\t0x23A69\n0x8EA7B8E3\t0x23A6C\n0x8EA7B8E4\t0x23A68\n0x8EA7B8E5\t0x23A6B\n0x8EA7B8E6\t0x23ACC\n0x8EA7B8E7\t0x23ACD\n0x8EA7B8E8\t0x23C10\n0x8EA7B8E9\t0x23C0D\n0x8EA7B8EA\t0x23C0A\n0x8EA7B8EB\t0x23C16\n0x8EA7B8EC\t0x23C14\n0x8EA7B8ED\t0x23C52\n0x8EA7B8EE\t0x24028\n0x8EA7B8EF\t0x2402E\n0x8EA7B8F0\t0x2402C\n0x8EA7B8F1\t0x2404D\n0x8EA7B8F2\t0x24049\n0x8EA7B8F3\t0x24031\n0x8EA7B8F4\t0x24030\n0x8EA7B8F5\t0x24033\n0x8EA7B8F6\t0x2402D\n0x8EA7B8F7\t0x24036\n0x8EA7B8F8\t0x2403E\n0x8EA7B8F9\t0x2402F\n0x8EA7B8FA\t0x24027\n0x8EA7B8FB\t0x24034\n0x8EA7B8FC\t0x2404C\n0x8EA7B8FD\t0x243FE\n0x8EA7B8FE\t0x24412\n0x8EA7B9A1\t0x2441F\n0x8EA7B9A2\t0x24417\n0x8EA7B9A3\t0x243F5\n0x8EA7B9A4\t0x24415\n0x8EA7B9A5\t0x243F7\n0x8EA7B9A6\t0x3E02\n0x8EA7B9A7\t0x21F7D\n0x8EA7B9A8\t0x243FA\n0x8EA7B9A9\t0x243F9\n0x8EA7B9AA\t0x2444B\n0x8EA7B9AB\t0x2459C\n0x8EA7B9AC\t0x2459D\n0x8EA7B9AD\t0x3E23\n0x8EA7B9AE\t0x246F0\n0x8EA7B9AF\t0x246F6\n0x8EA7B9B0\t0x246EF\n0x8EA7B9B1\t0x2489D\n0x8EA7B9B2\t0x2489A\n0x8EA7B9B3\t0x248A7\n0x8EA7B9B4\t0x248AF\n0x8EA7B9B5\t0x248AA\n0x8EA7B9B6\t0x24A64\n0x8EA7B9B7\t0x24A86\n0x8EA7B9B8\t0x24A75\n0x8EA7B9B9\t0x24A70\n0x8EA7B9BA\t0x24A84\n0x8EA7B9BB\t0x24A6B\n0x8EA7B9BC\t0x24A85\n0x8EA7B9BD\t0x24A6C\n0x8EA7B9BE\t0x24B17\n0x8EA7B9BF\t0x24B94\n0x8EA7B9C0\t0x24B93\n0x8EA7B9C1\t0x24CD2\n0x8EA7B9C2\t0x24CD7\n0x8EA7B9C3\t0x24CD4\n0x8EA7B9C4\t0x24EA6\n0x8EA7B9C5\t0x24EA7\n0x8EA7B9C6\t0x24E9C\n0x8EA7B9C7\t0x24E8B\n0x8EA7B9C8\t0x24E8D\n0x8EA7B9C9\t0x24E98\n0x8EA7B9CA\t0x24EB9\n0x8EA7B9CB\t0x24E9B\n0x8EA7B9CC\t0x24E9D\n0x8EA7B9CD\t0x24E99\n0x8EA7B9CE\t0x24EA8\n0x8EA7B9CF\t0x24E91\n0x8EA7B9D0\t0x24E87\n0x8EA7B9D1\t0x24E9A\n0x8EA7B9D2\t0x24FA6\n0x8EA7B9D3\t0x2501F\n0x8EA7B9D4\t0x250A7\n0x8EA7B9D5\t0x250B1\n0x8EA7B9D6\t0x250B2\n0x8EA7B9D7\t0x250B7\n0x8EA7B9D8\t0x252D0\n0x8EA7B9D9\t0x252B3\n0x8EA7B9DA\t0x252B5\n0x8EA7B9DB\t0x252C4\n0x8EA7B9DC\t0x252C3\n0x8EA7B9DD\t0x252BC\n0x8EA7B9DE\t0x252B2\n0x8EA7B9DF\t0x252BA\n0x8EA7B9E0\t0x252BB\n0x8EA7B9E1\t0x252C2\n0x8EA7B9E2\t0x252CD\n0x8EA7B9E3\t0x252BE\n0x8EA7B9E4\t0x252B7\n0x8EA7B9E5\t0x2538F\n0x8EA7B9E6\t0x25403\n0x8EA7B9E7\t0x25404\n0x8EA7B9E8\t0x25571\n0x8EA7B9E9\t0x25577\n0x8EA7B9EA\t0x25574\n0x8EA7B9EB\t0x2558B\n0x8EA7B9EC\t0x2557A\n0x8EA7B9ED\t0x2F951\n0x8EA7B9EE\t0x2558C\n0x8EA7B9EF\t0x25573\n0x8EA7B9F0\t0x256FF\n0x8EA7B9F1\t0x256FB\n0x8EA7B9F2\t0x256FD\n0x8EA7B9F3\t0x256F0\n0x8EA7B9F4\t0x256F3\n0x8EA7B9F5\t0x256FC\n0x8EA7B9F6\t0x256F2\n0x8EA7B9F7\t0x25892\n0x8EA7B9F8\t0x2589E\n0x8EA7B9F9\t0x258AE\n0x8EA7B9FA\t0x25896\n0x8EA7B9FB\t0x25A14\n0x8EA7B9FC\t0x25A12\n0x8EA7B9FD\t0x25A13\n0x8EA7B9FE\t0x25A16\n0x8EA7BAA1\t0x25A0F\n0x8EA7BAA2\t0x25AB6\n0x8EA7BAA3\t0x25ABD\n0x8EA7BAA4\t0x25C8C\n0x8EA7BAA5\t0x25CAE\n0x8EA7BAA6\t0x25CAC\n0x8EA7BAA7\t0x25CAB\n0x8EA7BAA8\t0x25C99\n0x8EA7BAA9\t0x25C92\n0x8EA7BAAA\t0x25CBB\n0x8EA7BAAB\t0x25C9E\n0x8EA7BAAC\t0x25C7E\n0x8EA7BAAD\t0x25CAF\n0x8EA7BAAE\t0x25CBC\n0x8EA7BAAF\t0x25C98\n0x8EA7BAB0\t0x25F01\n0x8EA7BAB1\t0x25F09\n0x8EA7BAB2\t0x25F06\n0x8EA7BAB3\t0x2F967\n0x8EA7BAB4\t0x25F07\n0x8EA7BAB5\t0x25F08\n0x8EA7BAB6\t0x260CF\n0x8EA7BAB7\t0x2610E\n0x8EA7BAB8\t0x26132\n0x8EA7BAB9\t0x4315\n0x8EA7BABA\t0x26112\n0x8EA7BABB\t0x26116\n0x8EA7BABC\t0x26117\n0x8EA7BABD\t0x2611B\n0x8EA7BABE\t0x26115\n0x8EA7BABF\t0x26131\n0x8EA7BAC0\t0x26118\n0x8EA7BAC1\t0x2611A\n0x8EA7BAC2\t0x26110\n0x8EA7BAC3\t0x2610A\n0x8EA7BAC4\t0x26109\n0x8EA7BAC5\t0x2624F\n0x8EA7BAC6\t0x2F973\n0x8EA7BAC7\t0x2630F\n0x8EA7BAC8\t0x26310\n0x8EA7BAC9\t0x2F975\n0x8EA7BACA\t0x26328\n0x8EA7BACB\t0x26311\n0x8EA7BACC\t0x26316\n0x8EA7BACD\t0x26317\n0x8EA7BACE\t0x26302\n0x8EA7BACF\t0x263BB\n0x8EA7BAD0\t0x263BA\n0x8EA7BAD1\t0x263C3\n0x8EA7BAD2\t0x263BC\n0x8EA7BAD3\t0x2648A\n0x8EA7BAD4\t0x26484\n0x8EA7BAD5\t0x26486\n0x8EA7BAD6\t0x264E0\n0x8EA7BAD7\t0x26517\n0x8EA7BAD8\t0x26518\n0x8EA7BAD9\t0x2651E\n0x8EA7BADA\t0x26515\n0x8EA7BADB\t0x265D3\n0x8EA7BADC\t0x265DA\n0x8EA7BADD\t0x265D9\n0x8EA7BADE\t0x267E6\n0x8EA7BADF\t0x267F4\n0x8EA7BAE0\t0x267E1\n0x8EA7BAE1\t0x26869\n0x8EA7BAE2\t0x26840\n0x8EA7BAE3\t0x26858\n0x8EA7BAE4\t0x2686C\n0x8EA7BAE5\t0x2684D\n0x8EA7BAE6\t0x26921\n0x8EA7BAE7\t0x26999\n0x8EA7BAE8\t0x269F1\n0x8EA7BAE9\t0x23F68\n0x8EA7BAEA\t0x26A86\n0x8EA7BAEB\t0x26F5B\n0x8EA7BAEC\t0x26F5C\n0x8EA7BAED\t0x26F77\n0x8EA7BAEE\t0x26F2C\n0x8EA7BAEF\t0x2F9AD\n0x8EA7BAF0\t0x26F58\n0x8EA7BAF1\t0x26F64\n0x8EA7BAF2\t0x26F61\n0x8EA7BAF3\t0x26F48\n0x8EA7BAF4\t0x26F97\n0x8EA7BAF5\t0x26F59\n0x8EA7BAF6\t0x26F29\n0x8EA7BAF7\t0x26F62\n0x8EA7BAF8\t0x26F2E\n0x8EA7BAF9\t0x26F68\n0x8EA7BAFA\t0x26F90\n0x8EA7BAFB\t0x26F3A\n0x8EA7BAFC\t0x26F3D\n0x8EA7BAFD\t0x26F5E\n0x8EA7BAFE\t0x26F46\n0x8EA7BBA1\t0x26F69\n0x8EA7BBA2\t0x26F65\n0x8EA7BBA3\t0x26F3E\n0x8EA7BBA4\t0x26F49\n0x8EA7BBA5\t0x26F56\n0x8EA7BBA6\t0x26FE1\n0x8EA7BBA7\t0x26F78\n0x8EA7BBA8\t0x26F79\n0x8EA7BBA9\t0x26F66\n0x8EA7BBAA\t0x26F4A\n0x8EA7BBAB\t0x26F35\n0x8EA7BBAC\t0x26F7A\n0x8EA7BBAD\t0x26F92\n0x8EA7BBAE\t0x26F60\n0x8EA7BBAF\t0x26F36\n0x8EA7BBB0\t0x26F51\n0x8EA7BBB1\t0x26F42\n0x8EA7BBB2\t0x455D\n0x8EA7BBB3\t0x26F3F\n0x8EA7BBB4\t0x26F7B\n0x8EA7BBB5\t0x26F5D\n0x8EA7BBB6\t0x26F94\n0x8EA7BBB7\t0x26F6A\n0x8EA7BBB8\t0x2F9B5\n0x8EA7BBB9\t0x271F2\n0x8EA7BBBA\t0x273BB\n0x8EA7BBBB\t0x2741B\n0x8EA7BBBC\t0x2741A\n0x8EA7BBBD\t0x27433\n0x8EA7BBBE\t0x27417\n0x8EA7BBBF\t0x2740A\n0x8EA7BBC0\t0x27415\n0x8EA7BBC1\t0x27412\n0x8EA7BBC2\t0x27401\n0x8EA7BBC3\t0x2742D\n0x8EA7BBC4\t0x273FD\n0x8EA7BBC5\t0x27423\n0x8EA7BBC6\t0x27405\n0x8EA7BBC7\t0x27411\n0x8EA7BBC8\t0x27400\n0x8EA7BBC9\t0x2741C\n0x8EA7BBCA\t0x27435\n0x8EA7BBCB\t0x2742E\n0x8EA7BBCC\t0x27436\n0x8EA7BBCD\t0x20ABF\n0x8EA7BBCE\t0x2742F\n0x8EA7BBCF\t0x2740C\n0x8EA7BBD0\t0x27409\n0x8EA7BBD1\t0x27431\n0x8EA7BBD2\t0x273FC\n0x8EA7BBD3\t0x2740F\n0x8EA7BBD4\t0x27418\n0x8EA7BBD5\t0x27402\n0x8EA7BBD6\t0x27600\n0x8EA7BBD7\t0x2771F\n0x8EA7BBD8\t0x27737\n0x8EA7BBD9\t0x465A\n0x8EA7BBDA\t0x27738\n0x8EA7BBDB\t0x2772B\n0x8EA7BBDC\t0x2772E\n0x8EA7BBDD\t0x27721\n0x8EA7BBDE\t0x27730\n0x8EA7BBDF\t0x27729\n0x8EA7BBE0\t0x27731\n0x8EA7BBE1\t0x2F9C9\n0x8EA7BBE2\t0x27701\n0x8EA7BBE3\t0x2772C\n0x8EA7BBE4\t0x27722\n0x8EA7BBE5\t0x277FF\n0x8EA7BBE6\t0x27877\n0x8EA7BBE7\t0x27867\n0x8EA7BBE8\t0x2787F\n0x8EA7BBE9\t0x2787D\n0x8EA7BBEA\t0x2787B\n0x8EA7BBEB\t0x2787E\n0x8EA7BBEC\t0x2791E\n0x8EA7BBED\t0x2791C\n0x8EA7BBEE\t0x27921\n0x8EA7BBEF\t0x27926\n0x8EA7BBF0\t0x27927\n0x8EA7BBF1\t0x27929\n0x8EA7BBF2\t0x2792C\n0x8EA7BBF3\t0x2791D\n0x8EA7BBF4\t0x2792B\n0x8EA7BBF5\t0x27ABF\n0x8EA7BBF6\t0x27AA4\n0x8EA7BBF7\t0x27AAA\n0x8EA7BBF8\t0x27AAE\n0x8EA7BBF9\t0x27A9F\n0x8EA7BBFA\t0x27AD0\n0x8EA7BBFB\t0x27AB1\n0x8EA7BBFC\t0x27AAD\n0x8EA7BBFD\t0x27A9B\n0x8EA7BBFE\t0x27AB2\n0x8EA7BCA1\t0x27AA9\n0x8EA7BCA2\t0x27AB3\n0x8EA7BCA3\t0x27AB4\n0x8EA7BCA4\t0x27ABA\n0x8EA7BCA5\t0x27AA5\n0x8EA7BCA6\t0x27AB7\n0x8EA7BCA7\t0x27AAC\n0x8EA7BCA8\t0x27ACB\n0x8EA7BCA9\t0x27ACF\n0x8EA7BCAA\t0x27BC6\n0x8EA7BCAB\t0x27C01\n0x8EA7BCAC\t0x27BFF\n0x8EA7BCAD\t0x27BFD\n0x8EA7BCAE\t0x27C77\n0x8EA7BCAF\t0x27C78\n0x8EA7BCB0\t0x27C76\n0x8EA7BCB1\t0x27CF7\n0x8EA7BCB2\t0x27DCC\n0x8EA7BCB3\t0x4785\n0x8EA7BCB4\t0x27DD4\n0x8EA7BCB5\t0x27DD7\n0x8EA7BCB6\t0x27DD5\n0x8EA7BCB7\t0x27DD6\n0x8EA7BCB8\t0x27DD3\n0x8EA7BCB9\t0x27F5D\n0x8EA7BCBA\t0x27F55\n0x8EA7BCBB\t0x280E0\n0x8EA7BCBC\t0x28148\n0x8EA7BCBD\t0x280EE\n0x8EA7BCBE\t0x280DB\n0x8EA7BCBF\t0x280E7\n0x8EA7BCC0\t0x280D6\n0x8EA7BCC1\t0x280E5\n0x8EA7BCC2\t0x280E1\n0x8EA7BCC3\t0x280DD\n0x8EA7BCC4\t0x280E2\n0x8EA7BCC5\t0x28270\n0x8EA7BCC6\t0x28266\n0x8EA7BCC7\t0x2826F\n0x8EA7BCC8\t0x2826E\n0x8EA7BCC9\t0x28381\n0x8EA7BCCA\t0x28369\n0x8EA7BCCB\t0x2836E\n0x8EA7BCCC\t0x2836D\n0x8EA7BCCD\t0x2836C\n0x8EA7BCCE\t0x28384\n0x8EA7BCCF\t0x28385\n0x8EA7BCD0\t0x28371\n0x8EA7BCD1\t0x28373\n0x8EA7BCD2\t0x2836A\n0x8EA7BCD3\t0x2836F\n0x8EA7BCD4\t0x2837B\n0x8EA7BCD5\t0x2856A\n0x8EA7BCD6\t0x2857C\n0x8EA7BCD7\t0x2857D\n0x8EA7BCD8\t0x28581\n0x8EA7BCD9\t0x285FA\n0x8EA7BCDA\t0x28605\n0x8EA7BCDB\t0x285EB\n0x8EA7BCDC\t0x285FB\n0x8EA7BCDD\t0x285E9\n0x8EA7BCDE\t0x285EF\n0x8EA7BCDF\t0x285FC\n0x8EA7BCE0\t0x285E7\n0x8EA7BCE1\t0x2F9E1\n0x8EA7BCE2\t0x285EE\n0x8EA7BCE3\t0x285FD\n0x8EA7BCE4\t0x28732\n0x8EA7BCE5\t0x287A7\n0x8EA7BCE6\t0x287B5\n0x8EA7BCE7\t0x287B1\n0x8EA7BCE8\t0x287B9\n0x8EA7BCE9\t0x287A8\n0x8EA7BCEA\t0x287B3\n0x8EA7BCEB\t0x2F9E6\n0x8EA7BCEC\t0x2888A\n0x8EA7BCED\t0x28891\n0x8EA7BCEE\t0x2888D\n0x8EA7BCEF\t0x28899\n0x8EA7BCF0\t0x490B\n0x8EA7BCF1\t0x2889A\n0x8EA7BCF2\t0x2889B\n0x8EA7BCF3\t0x28892\n0x8EA7BCF4\t0x2888F\n0x8EA7BCF5\t0x288AB\n0x8EA7BCF6\t0x24CDB\n0x8EA7BCF7\t0x4939\n0x8EA7BCF8\t0x28A75\n0x8EA7BCF9\t0x28A31\n0x8EA7BCFA\t0x28A38\n0x8EA7BCFB\t0x4937\n0x8EA7BCFC\t0x28A35\n0x8EA7BCFD\t0x28A69\n0x8EA7BCFE\t0x28A3B\n0x8EA7BDA1\t0x28A3D\n0x8EA7BDA2\t0x28A6C\n0x8EA7BDA3\t0x28A79\n0x8EA7BDA4\t0x28A3C\n0x8EA7BDA5\t0x28A3E\n0x8EA7BDA6\t0x28C97\n0x8EA7BDA7\t0x28CA5\n0x8EA7BDA8\t0x28CA2\n0x8EA7BDA9\t0x28C9D\n0x8EA7BDAA\t0x28CA1\n0x8EA7BDAB\t0x28D68\n0x8EA7BDAC\t0x28D6F\n0x8EA7BDAD\t0x28D6D\n0x8EA7BDAE\t0x28D72\n0x8EA7BDAF\t0x28D75\n0x8EA7BDB0\t0x28D77\n0x8EA7BDB1\t0x28D79\n0x8EA7BDB2\t0x28EB5\n0x8EA7BDB3\t0x28EEA\n0x8EA7BDB4\t0x28EAB\n0x8EA7BDB5\t0x28F43\n0x8EA7BDB6\t0x28F41\n0x8EA7BDB7\t0x28F42\n0x8EA7BDB8\t0x29009\n0x8EA7BDB9\t0x29008\n0x8EA7BDBA\t0x29006\n0x8EA7BDBB\t0x29001\n0x8EA7BDBC\t0x29003\n0x8EA7BDBD\t0x29000\n0x8EA7BDBE\t0x29004\n0x8EA7BDBF\t0x2900A\n0x8EA7BDC0\t0x2900E\n0x8EA7BDC1\t0x2900D\n0x8EA7BDC2\t0x29007\n0x8EA7BDC3\t0x2900F\n0x8EA7BDC4\t0x29014\n0x8EA7BDC5\t0x29002\n0x8EA7BDC6\t0x29015\n0x8EA7BDC7\t0x2900C\n0x8EA7BDC8\t0x29010\n0x8EA7BDC9\t0x29005\n0x8EA7BDCA\t0x290FD\n0x8EA7BDCB\t0x290FF\n0x8EA7BDCC\t0x29104\n0x8EA7BDCD\t0x29100\n0x8EA7BDCE\t0x29109\n0x8EA7BDCF\t0x2922B\n0x8EA7BDD0\t0x2F9F7\n0x8EA7BDD1\t0x29231\n0x8EA7BDD2\t0x292DB\n0x8EA7BDD3\t0x292C5\n0x8EA7BDD4\t0x292D3\n0x8EA7BDD5\t0x292CE\n0x8EA7BDD6\t0x4A6B\n0x8EA7BDD7\t0x292C9\n0x8EA7BDD8\t0x292BF\n0x8EA7BDD9\t0x292CB\n0x8EA7BDDA\t0x292C0\n0x8EA7BDDB\t0x292D0\n0x8EA7BDDC\t0x292D4\n0x8EA7BDDD\t0x293C1\n0x8EA7BDDE\t0x293B9\n0x8EA7BDDF\t0x293BB\n0x8EA7BDE0\t0x293C3\n0x8EA7BDE1\t0x293C9\n0x8EA7BDE2\t0x29407\n0x8EA7BDE3\t0x2942D\n0x8EA7BDE4\t0x294F8\n0x8EA7BDE5\t0x294E1\n0x8EA7BDE6\t0x294FA\n0x8EA7BDE7\t0x294EF\n0x8EA7BDE8\t0x294FD\n0x8EA7BDE9\t0x4ACD\n0x8EA7BDEA\t0x294EB\n0x8EA7BDEB\t0x294F1\n0x8EA7BDEC\t0x294ED\n0x8EA7BDED\t0x294FE\n0x8EA7BDEE\t0x295F8\n0x8EA7BDEF\t0x29603\n0x8EA7BDF0\t0x295EE\n0x8EA7BDF1\t0x295E8\n0x8EA7BDF2\t0x29601\n0x8EA7BDF3\t0x296EC\n0x8EA7BDF4\t0x29722\n0x8EA7BDF5\t0x29714\n0x8EA7BDF6\t0x29734\n0x8EA7BDF7\t0x2972F\n0x8EA7BDF8\t0x29739\n0x8EA7BDF9\t0x29741\n0x8EA7BDFA\t0x2973C\n0x8EA7BDFB\t0x29749\n0x8EA7BDFC\t0x29758\n0x8EA7BDFD\t0x2973A\n0x8EA7BDFE\t0x29742\n0x8EA7BEA1\t0x2973F\n0x8EA7BEA2\t0x29822\n0x8EA7BEA3\t0x29823\n0x8EA7BEA4\t0x2984A\n0x8EA7BEA5\t0x298DC\n0x8EA7BEA6\t0x298D9\n0x8EA7BEA7\t0x298DB\n0x8EA7BEA8\t0x298E2\n0x8EA7BEA9\t0x2FA07\n0x8EA7BEAA\t0x298DF\n0x8EA7BEAB\t0x298E0\n0x8EA7BEAC\t0x298D7\n0x8EA7BEAD\t0x29A4F\n0x8EA7BEAE\t0x29A46\n0x8EA7BEAF\t0x29A53\n0x8EA7BEB0\t0x29A55\n0x8EA7BEB1\t0x29A4E\n0x8EA7BEB2\t0x29A4A\n0x8EA7BEB3\t0x29A4C\n0x8EA7BEB4\t0x29A63\n0x8EA7BEB5\t0x29B51\n0x8EA7BEB6\t0x29B53\n0x8EA7BEB7\t0x29B58\n0x8EA7BEB8\t0x29B4D\n0x8EA7BEB9\t0x29B5A\n0x8EA7BEBA\t0x29B49\n0x8EA7BEBB\t0x29B5D\n0x8EA7BEBC\t0x29C12\n0x8EA7BEBD\t0x29C3C\n0x8EA7BEBE\t0x29CD1\n0x8EA7BEBF\t0x29CDF\n0x8EA7BEC0\t0x29CD6\n0x8EA7BEC1\t0x29CD8\n0x8EA7BEC2\t0x29CE0\n0x8EA7BEC3\t0x29CD9\n0x8EA7BEC4\t0x29DB1\n0x8EA7BEC5\t0x29DAC\n0x8EA7BEC6\t0x29DAA\n0x8EA7BEC7\t0x29DEE\n0x8EA7BEC8\t0x29DBD\n0x8EA7BEC9\t0x4C4D\n0x8EA7BECA\t0x29DC3\n0x8EA7BECB\t0x29DA8\n0x8EA7BECC\t0x29DAE\n0x8EA7BECD\t0x29DAB\n0x8EA7BECE\t0x2A01D\n0x8EA7BECF\t0x2A027\n0x8EA7BED0\t0x2A038\n0x8EA7BED1\t0x2A012\n0x8EA7BED2\t0x2A048\n0x8EA7BED3\t0x2A02B\n0x8EA7BED4\t0x2A016\n0x8EA7BED5\t0x2A019\n0x8EA7BED6\t0x2A03D\n0x8EA7BED7\t0x2A023\n0x8EA7BED8\t0x2A02A\n0x8EA7BED9\t0x2A264\n0x8EA7BEDA\t0x2A2AD\n0x8EA7BEDB\t0x2A2AC\n0x8EA7BEDC\t0x2FA14\n0x8EA7BEDD\t0x2A2B1\n0x8EA7BEDE\t0x2A2AF\n0x8EA7BEDF\t0x2A32C\n0x8EA7BEE0\t0x2A324\n0x8EA7BEE1\t0x2A325\n0x8EA7BEE2\t0x2A328\n0x8EA7BEE3\t0x2A3F9\n0x8EA7BEE4\t0x2A3F7\n0x8EA7BEE5\t0x2A3FD\n0x8EA7BEE6\t0x2A3FE\n0x8EA7BEE7\t0x2A439\n0x8EA7BEE8\t0x2A433\n0x8EA7BEE9\t0x2A4D7\n0x8EA7BEEA\t0x2A4D8\n0x8EA7BEEB\t0x2A4E4\n0x8EA7BEEC\t0x214A1\n0x8EA7BEED\t0x2A50E\n0x8EA7BEEE\t0x2A53B\n0x8EA7BEEF\t0x2A544\n0x8EA7BEF0\t0x2A542\n0x8EA7BEF1\t0x2A594\n0x8EA7BEF2\t0x2A593\n0x8EA7BEF3\t0x2A5D5\n0x8EA7BEF4\t0x2A6A7\n0x8EA7BEF5\t0x20431\n0x8EA7BEF6\t0x20423\n0x8EA7BEF7\t0x20428\n0x8EA7BEF8\t0x20427\n0x8EA7BEF9\t0x204C6\n0x8EA7BEFA\t0x205A3\n0x8EA7BEFB\t0x20621\n0x8EA7BEFC\t0x2081B\n0x8EA7BEFD\t0x3510\n0x8EA7BEFE\t0x208C1\n0x8EA7BFA1\t0x208C3\n0x8EA7BFA2\t0x2092A\n0x8EA7BFA3\t0x20969\n0x8EA7BFA4\t0x20A27\n0x8EA7BFA5\t0x210B6\n0x8EA7BFA6\t0x210A7\n0x8EA7BFA7\t0x210A4\n0x8EA7BFA8\t0x210A6\n0x8EA7BFA9\t0x21090\n0x8EA7BFAA\t0x2109E\n0x8EA7BFAB\t0x21094\n0x8EA7BFAC\t0x210A8\n0x8EA7BFAD\t0x210A5\n0x8EA7BFAE\t0x210A2\n0x8EA7BFAF\t0x21091\n0x8EA7BFB0\t0x367B\n0x8EA7BFB1\t0x214BC\n0x8EA7BFB2\t0x214BD\n0x8EA7BFB3\t0x214B4\n0x8EA7BFB4\t0x214B0\n0x8EA7BFB5\t0x214E4\n0x8EA7BFB6\t0x21545\n0x8EA7BFB7\t0x2154B\n0x8EA7BFB8\t0x2157E\n0x8EA7BFB9\t0x2157F\n0x8EA7BFBA\t0x2157D\n0x8EA7BFBB\t0x215C3\n0x8EA7BFBC\t0x218FC\n0x8EA7BFBD\t0x218F7\n0x8EA7BFBE\t0x218F0\n0x8EA7BFBF\t0x218ED\n0x8EA7BFC0\t0x218F1\n0x8EA7BFC1\t0x218F8\n0x8EA7BFC2\t0x21AE9\n0x8EA7BFC3\t0x21CEB\n0x8EA7BFC4\t0x381D\n0x8EA7BFC5\t0x21F90\n0x8EA7BFC6\t0x21F8D\n0x8EA7BFC7\t0x21F86\n0x8EA7BFC8\t0x21F91\n0x8EA7BFC9\t0x21F8A\n0x8EA7BFCA\t0x22008\n0x8EA7BFCB\t0x22050\n0x8EA7BFCC\t0x222EA\n0x8EA7BFCD\t0x222E6\n0x8EA7BFCE\t0x222E2\n0x8EA7BFCF\t0x222E7\n0x8EA7BFD0\t0x222ED\n0x8EA7BFD1\t0x222E1\n0x8EA7BFD2\t0x22434\n0x8EA7BFD3\t0x22476\n0x8EA7BFD4\t0x22475\n0x8EA7BFD5\t0x22473\n0x8EA7BFD6\t0x224B5\n0x8EA7BFD7\t0x22590\n0x8EA7BFD8\t0x22592\n0x8EA7BFD9\t0x228E1\n0x8EA7BFDA\t0x228DF\n0x8EA7BFDB\t0x228D5\n0x8EA7BFDC\t0x228F2\n0x8EA7BFDD\t0x228FE\n0x8EA7BFDE\t0x22913\n0x8EA7BFDF\t0x2292E\n0x8EA7BFE0\t0x22A19\n0x8EA7BFE1\t0x22E08\n0x8EA7BFE2\t0x64F5\n0x8EA7BFE3\t0x22E05\n0x8EA7BFE4\t0x22E09\n0x8EA7BFE5\t0x22E06\n0x8EA7BFE6\t0x22E03\n0x8EA7BFE7\t0x22DFD\n0x8EA7BFE8\t0x22DFC\n0x8EA7BFE9\t0x22E02\n0x8EA7BFEA\t0x22E42\n0x8EA7BFEB\t0x2301A\n0x8EA7BFEC\t0x23011\n0x8EA7BFED\t0x23015\n0x8EA7BFEE\t0x23016\n0x8EA7BFEF\t0x230CC\n0x8EA7BFF0\t0x230CF\n0x8EA7BFF1\t0x230D0\n0x8EA7BFF2\t0x23122\n0x8EA7BFF3\t0x2311E\n0x8EA7BFF4\t0x23121\n0x8EA7BFF5\t0x232E5\n0x8EA7BFF6\t0x3B27\n0x8EA7BFF7\t0x23354\n0x8EA7BFF8\t0x232EF\n0x8EA7BFF9\t0x23353\n0x8EA7BFFA\t0x23351\n0x8EA7BFFB\t0x233AD\n0x8EA7BFFC\t0x23767\n0x8EA7BFFD\t0x23768\n0x8EA7BFFE\t0x237A4\n0x8EA7C0A1\t0x23777\n0x8EA7C0A2\t0x23789\n0x8EA7C0A3\t0x23744\n0x8EA7C0A4\t0x2378B\n0x8EA7C0A5\t0x23779\n0x8EA7C0A6\t0x2375B\n0x8EA7C0A7\t0x23743\n0x8EA7C0A8\t0x23757\n0x8EA7C0A9\t0x2374A\n0x8EA7C0AA\t0x2377C\n0x8EA7C0AB\t0x23746\n0x8EA7C0AC\t0x2377B\n0x8EA7C0AD\t0x23756\n0x8EA7C0AE\t0x239A8\n0x8EA7C0AF\t0x23A76\n0x8EA7C0B0\t0x23A72\n0x8EA7C0B1\t0x23AD6\n0x8EA7C0B2\t0x23AD8\n0x8EA7C0B3\t0x23AD1\n0x8EA7C0B4\t0x23C22\n0x8EA7C0B5\t0x23C20\n0x8EA7C0B6\t0x23C23\n0x8EA7C0B7\t0x23C1E\n0x8EA7C0B8\t0x23C6E\n0x8EA7C0B9\t0x240A3\n0x8EA7C0BA\t0x24077\n0x8EA7C0BB\t0x240A6\n0x8EA7C0BC\t0x2406D\n0x8EA7C0BD\t0x240A2\n0x8EA7C0BE\t0x2407C\n0x8EA7C0BF\t0x24084\n0x8EA7C0C0\t0x24068\n0x8EA7C0C1\t0x24074\n0x8EA7C0C2\t0x24086\n0x8EA7C0C3\t0x240A5\n0x8EA7C0C4\t0x2407B\n0x8EA7C0C5\t0x2407A\n0x8EA7C0C6\t0x24069\n0x8EA7C0C7\t0x24072\n0x8EA7C0C8\t0x24076\n0x8EA7C0C9\t0x2444A\n0x8EA7C0CA\t0x24437\n0x8EA7C0CB\t0x2442A\n0x8EA7C0CC\t0x2442D\n0x8EA7C0CD\t0x24446\n0x8EA7C0CE\t0x24428\n0x8EA7C0CF\t0x24426\n0x8EA7C0D0\t0x24442\n0x8EA7C0D1\t0x2442C\n0x8EA7C0D2\t0x24438\n0x8EA7C0D3\t0x2442B\n0x8EA7C0D4\t0x24433\n0x8EA7C0D5\t0x24445\n0x8EA7C0D6\t0x24539\n0x8EA7C0D7\t0x246F9\n0x8EA7C0D8\t0x246FA\n0x8EA7C0D9\t0x248B8\n0x8EA7C0DA\t0x248B7\n0x8EA7C0DB\t0x248BB\n0x8EA7C0DC\t0x248B9\n0x8EA7C0DD\t0x248B4\n0x8EA7C0DE\t0x24A6F\n0x8EA7C0DF\t0x24A87\n0x8EA7C0E0\t0x24A8F\n0x8EA7C0E1\t0x24AA2\n0x8EA7C0E2\t0x24AA3\n0x8EA7C0E3\t0x2F931\n0x8EA7C0E4\t0x24B9B\n0x8EA7C0E5\t0x24B9D\n0x8EA7C0E6\t0x24BCE\n0x8EA7C0E7\t0x3FCF\n0x8EA7C0E8\t0x24EBD\n0x8EA7C0E9\t0x24EBF\n0x8EA7C0EA\t0x24E92\n0x8EA7C0EB\t0x3FCD\n0x8EA7C0EC\t0x24EEF\n0x8EA7C0ED\t0x24EC9\n0x8EA7C0EE\t0x24FA4\n0x8EA7C0EF\t0x24FA8\n0x8EA7C0F0\t0x24FAA\n0x8EA7C0F1\t0x25028\n0x8EA7C0F2\t0x25024\n0x8EA7C0F3\t0x25025\n0x8EA7C0F4\t0x25026\n0x8EA7C0F5\t0x250A9\n0x8EA7C0F6\t0x250BA\n0x8EA7C0F7\t0x250BE\n0x8EA7C0F8\t0x250BC\n0x8EA7C0F9\t0x250C0\n0x8EA7C0FA\t0x252F0\n0x8EA7C0FB\t0x252DF\n0x8EA7C0FC\t0x252E0\n0x8EA7C0FD\t0x252ED\n0x8EA7C0FE\t0x252DB\n0x8EA7C1A1\t0x252FB\n0x8EA7C1A2\t0x252B9\n0x8EA7C1A3\t0x252DA\n0x8EA7C1A4\t0x252EB\n0x8EA7C1A5\t0x252EC\n0x8EA7C1A6\t0x2559A\n0x8EA7C1A7\t0x2559F\n0x8EA7C1A8\t0x2559B\n0x8EA7C1A9\t0x25597\n0x8EA7C1AA\t0x255A1\n0x8EA7C1AB\t0x2570F\n0x8EA7C1AC\t0x25705\n0x8EA7C1AD\t0x25748\n0x8EA7C1AE\t0x4182\n0x8EA7C1AF\t0x258BC\n0x8EA7C1B0\t0x258BA\n0x8EA7C1B1\t0x25ABF\n0x8EA7C1B2\t0x25D01\n0x8EA7C1B3\t0x25CE8\n0x8EA7C1B4\t0x25CEF\n0x8EA7C1B5\t0x25CE4\n0x8EA7C1B6\t0x25CE6\n0x8EA7C1B7\t0x25D02\n0x8EA7C1B8\t0x25CEB\n0x8EA7C1B9\t0x25CE0\n0x8EA7C1BA\t0x25CED\n0x8EA7C1BB\t0x25CD9\n0x8EA7C1BC\t0x2F964\n0x8EA7C1BD\t0x25D14\n0x8EA7C1BE\t0x25CEE\n0x8EA7C1BF\t0x4252\n0x8EA7C1C0\t0x25D13\n0x8EA7C1C1\t0x25CF9\n0x8EA7C1C2\t0x25CF8\n0x8EA7C1C3\t0x25F25\n0x8EA7C1C4\t0x2F969\n0x8EA7C1C5\t0x25F19\n0x8EA7C1C6\t0x25F20\n0x8EA7C1C7\t0x25F43\n0x8EA7C1C8\t0x25F3F\n0x8EA7C1C9\t0x26145\n0x8EA7C1CA\t0x2614C\n0x8EA7C1CB\t0x26149\n0x8EA7C1CC\t0x2614F\n0x8EA7C1CD\t0x26141\n0x8EA7C1CE\t0x2613E\n0x8EA7C1CF\t0x2614D\n0x8EA7C1D0\t0x26152\n0x8EA7C1D1\t0x2614A\n0x8EA7C1D2\t0x2614E\n0x8EA7C1D3\t0x26173\n0x8EA7C1D4\t0x26142\n0x8EA7C1D5\t0x26151\n0x8EA7C1D6\t0x26155\n0x8EA7C1D7\t0x26150\n0x8EA7C1D8\t0x2616C\n0x8EA7C1DA\t0x2616A\n0x8EA7C1DB\t0x26153\n0x8EA7C1DC\t0x26168\n0x8EA7C1DD\t0x26255\n0x8EA7C1DE\t0x26256\n0x8EA7C1DF\t0x2631C\n0x8EA7C1E0\t0x2631D\n0x8EA7C1E1\t0x7F80\n0x8EA7C1E2\t0x2631E\n0x8EA7C1E3\t0x26323\n0x8EA7C1E4\t0x2631F\n0x8EA7C1E5\t0x263E1\n0x8EA7C1E6\t0x263CD\n0x8EA7C1E7\t0x263CB\n0x8EA7C1E8\t0x263CC\n0x8EA7C1E9\t0x263C8\n0x8EA7C1EA\t0x263C9\n0x8EA7C1EB\t0x2649B\n0x8EA7C1EC\t0x26494\n0x8EA7C1ED\t0x26492\n0x8EA7C1EE\t0x26496\n0x8EA7C1EF\t0x26493\n0x8EA7C1F0\t0x26495\n0x8EA7C1F1\t0x2648F\n0x8EA7C1F2\t0x2651D\n0x8EA7C1F3\t0x26522\n0x8EA7C1F4\t0x26521\n0x8EA7C1F5\t0x265E9\n0x8EA7C1F6\t0x265EF\n0x8EA7C1F7\t0x265E0\n0x8EA7C1F8\t0x265E6\n0x8EA7C1F9\t0x265E4\n0x8EA7C1FA\t0x26829\n0x8EA7C1FB\t0x2682C\n0x8EA7C1FC\t0x26876\n0x8EA7C1FD\t0x26883\n0x8EA7C1FE\t0x26878\n0x8EA7C2A1\t0x2683C\n0x8EA7C2A2\t0x24443\n0x8EA7C2A3\t0x2687A\n0x8EA7C2A4\t0x4451\n0x8EA7C2A5\t0x268F2\n0x8EA7C2A6\t0x2699E\n0x8EA7C2A7\t0x2699B\n0x8EA7C2A8\t0x2699A\n0x8EA7C2A9\t0x269F6\n0x8EA7C2AA\t0x269F5\n0x8EA7C2AB\t0x26AA5\n0x8EA7C2AC\t0x26A93\n0x8EA7C2AD\t0x26AA4\n0x8EA7C2AE\t0x26E82\n0x8EA7C2AF\t0x26EC7\n0x8EA7C2B0\t0x26FB7\n0x8EA7C2B1\t0x2701D\n0x8EA7C2B2\t0x26FE2\n0x8EA7C2B3\t0x26FD7\n0x8EA7C2B4\t0x26FE3\n0x8EA7C2B5\t0x26FE4\n0x8EA7C2B6\t0x26FBC\n0x8EA7C2B7\t0x26FD3\n0x8EA7C2B8\t0x455A\n0x8EA7C2B9\t0x26F5A\n0x8EA7C2BA\t0x26FD2\n0x8EA7C2BB\t0x26F2D\n0x8EA7C2BC\t0x2F9AF\n0x8EA7C2BD\t0x26FC4\n0x8EA7C2BE\t0x26FD0\n0x8EA7C2BF\t0x26FE5\n0x8EA7C2C0\t0x27005\n0x8EA7C2C1\t0x27007\n0x8EA7C2C2\t0x26FE6\n0x8EA7C2C3\t0x2701B\n0x8EA7C2C4\t0x26FE7\n0x8EA7C2C5\t0x26FD8\n0x8EA7C2C6\t0x26FBE\n0x8EA7C2C7\t0x27017\n0x8EA7C2C8\t0x26FB4\n0x8EA7C2C9\t0x26FD9\n0x8EA7C2CA\t0x26FE8\n0x8EA7C2CB\t0x26FAD\n0x8EA7C2CC\t0x26FAF\n0x8EA7C2CD\t0x26FC8\n0x8EA7C2CE\t0x26FE9\n0x8EA7C2CF\t0x26FEA\n0x8EA7C2D0\t0x271FE\n0x8EA7C2D1\t0x271FB\n0x8EA7C2D2\t0x27200\n0x8EA7C2D3\t0x27472\n0x8EA7C2D4\t0x27470\n0x8EA7C2D5\t0x27446\n0x8EA7C2D6\t0x27459\n0x8EA7C2D7\t0x2745E\n0x8EA7C2D8\t0x27448\n0x8EA7C2D9\t0x2744F\n0x8EA7C2DA\t0x27471\n0x8EA7C2DB\t0x27460\n0x8EA7C2DC\t0x2745F\n0x8EA7C2DD\t0x2746E\n0x8EA7C2DE\t0x27473\n0x8EA7C2DF\t0x2F9C0\n0x8EA7C2E0\t0x2F9BF\n0x8EA7C2E1\t0x27447\n0x8EA7C2E2\t0x2746D\n0x8EA7C2E3\t0x2746F\n0x8EA7C2E4\t0x27481\n0x8EA7C2E5\t0x2746C\n0x8EA7C2E6\t0x27478\n0x8EA7C2E7\t0x27483\n0x8EA7C2E8\t0x27449\n0x8EA7C2E9\t0x27468\n0x8EA7C2EA\t0x27474\n0x8EA7C2EB\t0x27463\n0x8EA7C2EC\t0x2746A\n0x8EA7C2ED\t0x26885\n0x8EA7C2EE\t0x27465\n0x8EA7C2EF\t0x27462\n0x8EA7C2F0\t0x274C8\n0x8EA7C2F1\t0x275D0\n0x8EA7C2F2\t0x275D4\n0x8EA7C2F3\t0x275D1\n0x8EA7C2F4\t0x27603\n0x8EA7C2F5\t0x27742\n0x8EA7C2F6\t0x27763\n0x8EA7C2F7\t0x27756\n0x8EA7C2F8\t0x2775B\n0x8EA7C2F9\t0x27755\n0x8EA7C2FA\t0x27750\n0x8EA7C2FB\t0x2772D\n0x8EA7C2FC\t0x27744\n0x8EA7C2FD\t0x27748\n0x8EA7C2FE\t0x27745\n0x8EA7C3A1\t0x27782\n0x8EA7C3A2\t0x4665\n0x8EA7C3A3\t0x27762\n0x8EA7C3A4\t0x27885\n0x8EA7C3A5\t0x2788D\n0x8EA7C3A6\t0x27936\n0x8EA7C3A7\t0x2792F\n0x8EA7C3A8\t0x27931\n0x8EA7C3A9\t0x27937\n0x8EA7C3AA\t0x27AA7\n0x8EA7C3AB\t0x27AD9\n0x8EA7C3AC\t0x27AF0\n0x8EA7C3AD\t0x27AF2\n0x8EA7C3AE\t0x27AFD\n0x8EA7C3AF\t0x27AE8\n0x8EA7C3B0\t0x27AEB\n0x8EA7C3B1\t0x27AEE\n0x8EA7C3B2\t0x27AE0\n0x8EA7C3B3\t0x27AE9\n0x8EA7C3B4\t0x27AED\n0x8EA7C3B5\t0x27AD6\n0x8EA7C3B6\t0x27AF8\n0x8EA7C3B7\t0x27AD4\n0x8EA7C3B8\t0x27ADF\n0x8EA7C3B9\t0x27AE7\n0x8EA7C3BA\t0x27AD8\n0x8EA7C3BB\t0x27AE3\n0x8EA7C3BC\t0x27AEF\n0x8EA7C3BD\t0x27B0F\n0x8EA7C3BE\t0x27BCA\n0x8EA7C3BF\t0x21546\n0x8EA7C3C0\t0x27C05\n0x8EA7C3C1\t0x27C0C\n0x8EA7C3C2\t0x27C0D\n0x8EA7C3C3\t0x27C7F\n0x8EA7C3C4\t0x27C80\n0x8EA7C3C5\t0x27C81\n0x8EA7C3C6\t0x27D01\n0x8EA7C3C7\t0x27D03\n0x8EA7C3C8\t0x27DF2\n0x8EA7C3C9\t0x27DE2\n0x8EA7C3CA\t0x27DE3\n0x8EA7C3CB\t0x27DDE\n0x8EA7C3CC\t0x27DE9\n0x8EA7C3CD\t0x27DE8\n0x8EA7C3CE\t0x27DE0\n0x8EA7C3CF\t0x27E01\n0x8EA7C3D0\t0x27DF5\n0x8EA7C3D1\t0x27DE4\n0x8EA7C3D2\t0x8D01\n0x8EA7C3D3\t0x27E77\n0x8EA7C3D4\t0x27F74\n0x8EA7C3D5\t0x27F6F\n0x8EA7C3D6\t0x27F62\n0x8EA7C3D7\t0x27F61\n0x8EA7C3D8\t0x27F6D\n0x8EA7C3D9\t0x27F73\n0x8EA7C3DA\t0x27F6A\n0x8EA7C3DB\t0x27F69\n0x8EA7C3DC\t0x28112\n0x8EA7C3DD\t0x2812D\n0x8EA7C3DE\t0x28114\n0x8EA7C3DF\t0x2810F\n0x8EA7C3E0\t0x28129\n0x8EA7C3E1\t0x28116\n0x8EA7C3E2\t0x28103\n0x8EA7C3E3\t0x28146\n0x8EA7C3E4\t0x2815C\n0x8EA7C3E5\t0x28111\n0x8EA7C3E6\t0x28106\n0x8EA7C3E7\t0x280DC\n0x8EA7C3E8\t0x2812B\n0x8EA7C3E9\t0x2812A\n0x8EA7C3EA\t0x2812C\n0x8EA7C3EB\t0x28127\n0x8EA7C3EC\t0x2827A\n0x8EA7C3ED\t0x2839C\n0x8EA7C3EE\t0x28399\n0x8EA7C3EF\t0x28395\n0x8EA7C3F0\t0x2838B\n0x8EA7C3F1\t0x28398\n0x8EA7C3F2\t0x28396\n0x8EA7C3F3\t0x28432\n0x8EA7C3F4\t0x285A4\n0x8EA7C3F5\t0x285AA\n0x8EA7C3F6\t0x2861B\n0x8EA7C3F7\t0x48AF\n0x8EA7C3F8\t0x2860D\n0x8EA7C3F9\t0x2861C\n0x8EA7C3FA\t0x2860A\n0x8EA7C3FB\t0x28620\n0x8EA7C3FC\t0x28608\n0x8EA7C3FD\t0x2861A\n0x8EA7C3FE\t0x28613\n0x8EA7C4A1\t0x28611\n0x8EA7C4A2\t0x2875D\n0x8EA7C4A3\t0x2875F\n0x8EA7C4A4\t0x2875E\n0x8EA7C4A5\t0x28760\n0x8EA7C4A6\t0x287BB\n0x8EA7C4A7\t0x287BC\n0x8EA7C4A8\t0x287C1\n0x8EA7C4A9\t0x287C0\n0x8EA7C4AA\t0x287C8\n0x8EA7C4AB\t0x287CE\n0x8EA7C4AC\t0x288A7\n0x8EA7C4AD\t0x288B2\n0x8EA7C4AE\t0x288B6\n0x8EA7C4AF\t0x288A5\n0x8EA7C4B0\t0x288BA\n0x8EA7C4B1\t0x288B5\n0x8EA7C4B2\t0x288AD\n0x8EA7C4B3\t0x288A4\n0x8EA7C4B4\t0x288D3\n0x8EA7C4B5\t0x288B0\n0x8EA7C4B6\t0x288B1\n0x8EA7C4B7\t0x2891D\n0x8EA7C4B8\t0x28A8D\n0x8EA7C4B9\t0x4941\n0x8EA7C4BA\t0x28A91\n0x8EA7C4BB\t0x28AB6\n0x8EA7C4BC\t0x28AB7\n0x8EA7C4BD\t0x28ABD\n0x8EA7C4BE\t0x28ABC\n0x8EA7C4BF\t0x28A96\n0x8EA7C4C0\t0x28A94\n0x8EA7C4C1\t0x28AA0\n0x8EA7C4C2\t0x28CA8\n0x8EA7C4C3\t0x28CA6\n0x8EA7C4C4\t0x28D84\n0x8EA7C4C5\t0x28D96\n0x8EA7C4C6\t0x28D88\n0x8EA7C4C7\t0x28D9A\n0x8EA7C4C8\t0x28ED1\n0x8EA7C4C9\t0x28ECF\n0x8EA7C4CA\t0x28F50\n0x8EA7C4CB\t0x28F51\n0x8EA7C4CC\t0x28F4E\n0x8EA7C4CD\t0x28F80\n0x8EA7C4CE\t0x28F81\n0x8EA7C4CF\t0x2901B\n0x8EA7C4D0\t0x29017\n0x8EA7C4D1\t0x29020\n0x8EA7C4D2\t0x29019\n0x8EA7C4D3\t0x2901A\n0x8EA7C4D4\t0x29021\n0x8EA7C4D5\t0x2901E\n0x8EA7C4D6\t0x29018\n0x8EA7C4D7\t0x2901D\n0x8EA7C4D8\t0x4A29\n0x8EA7C4D9\t0x2912D\n0x8EA7C4DA\t0x29124\n0x8EA7C4DB\t0x29127\n0x8EA7C4DC\t0x2912E\n0x8EA7C4DD\t0x29125\n0x8EA7C4DE\t0x2911C\n0x8EA7C4DF\t0x29119\n0x8EA7C4E0\t0x4A2A\n0x8EA7C4E1\t0x29123\n0x8EA7C4E2\t0x2911F\n0x8EA7C4E3\t0x2911A\n0x8EA7C4E4\t0x2912B\n0x8EA7C4E5\t0x2911E\n0x8EA7C4E6\t0x291E0\n0x8EA7C4E7\t0x29233\n0x8EA7C4E8\t0x292E6\n0x8EA7C4E9\t0x292FC\n0x8EA7C4EA\t0x292E5\n0x8EA7C4EB\t0x292F8\n0x8EA7C4EC\t0x292F6\n0x8EA7C4ED\t0x292EA\n0x8EA7C4EE\t0x292F2\n0x8EA7C4EF\t0x292ED\n0x8EA7C4F0\t0x292EB\n0x8EA7C4F1\t0x292F0\n0x8EA7C4F2\t0x292F1\n0x8EA7C4F3\t0x293C6\n0x8EA7C4F4\t0x293C8\n0x8EA7C4F5\t0x293CE\n0x8EA7C4F6\t0x293C5\n0x8EA7C4F7\t0x4A96\n0x8EA7C4F8\t0x293CB\n0x8EA7C4F9\t0x29513\n0x8EA7C4FA\t0x29514\n0x8EA7C4FB\t0x29507\n0x8EA7C4FC\t0x2950C\n0x8EA7C4FD\t0x2961A\n0x8EA7C4FE\t0x4B12\n0x8EA7C5A1\t0x29617\n0x8EA7C5A2\t0x29606\n0x8EA7C5A3\t0x29616\n0x8EA7C5A4\t0x29607\n0x8EA7C5A5\t0x29610\n0x8EA7C5A6\t0x29609\n0x8EA7C5A7\t0x29619\n0x8EA7C5A8\t0x29615\n0x8EA7C5A9\t0x2976E\n0x8EA7C5AA\t0x2973B\n0x8EA7C5AB\t0x2973E\n0x8EA7C5AC\t0x2976C\n0x8EA7C5AD\t0x29765\n0x8EA7C5AE\t0x29764\n0x8EA7C5AF\t0x29759\n0x8EA7C5B0\t0x2977C\n0x8EA7C5B1\t0x29770\n0x8EA7C5B2\t0x29779\n0x8EA7C5B3\t0x2982C\n0x8EA7C5B4\t0x29852\n0x8EA7C5B5\t0x29851\n0x8EA7C5B6\t0x2984C\n0x8EA7C5B7\t0x29900\n0x8EA7C5B8\t0x29910\n0x8EA7C5B9\t0x29913\n0x8EA7C5BA\t0x298FF\n0x8EA7C5BB\t0x298FE\n0x8EA7C5BC\t0x298ED\n0x8EA7C5BD\t0x29A5A\n0x8EA7C5BE\t0x29A58\n0x8EA7C5BF\t0x29A5C\n0x8EA7C5C0\t0x29ADA\n0x8EA7C5C1\t0x29B78\n0x8EA7C5C2\t0x29B5E\n0x8EA7C5C3\t0x29B67\n0x8EA7C5C4\t0x29B64\n0x8EA7C5C5\t0x29C13\n0x8EA7C5C6\t0x29C23\n0x8EA7C5C7\t0x29C41\n0x8EA7C5C8\t0x29C3F\n0x8EA7C5C9\t0x29C40\n0x8EA7C5CA\t0x29CED\n0x8EA7C5CB\t0x29CE3\n0x8EA7C5CC\t0x29CEA\n0x8EA7C5CD\t0x29CF0\n0x8EA7C5CE\t0x29CE6\n0x8EA7C5CF\t0x29CE9\n0x8EA7C5D0\t0x29CF1\n0x8EA7C5D1\t0x29CEE\n0x8EA7C5D2\t0x29DD4\n0x8EA7C5D3\t0x29DD1\n0x8EA7C5D4\t0x29DDC\n0x8EA7C5D5\t0x29DEC\n0x8EA7C5D6\t0x2A069\n0x8EA7C5D7\t0x2A06D\n0x8EA7C5D8\t0x2A057\n0x8EA7C5D9\t0x2A066\n0x8EA7C5DA\t0x2A0F9\n0x8EA7C5DB\t0x2A04A\n0x8EA7C5DC\t0x2A060\n0x8EA7C5DD\t0x2A056\n0x8EA7C5DE\t0x2A059\n0x8EA7C5DF\t0x2A04C\n0x8EA7C5E0\t0x2A06A\n0x8EA7C5E1\t0x2A062\n0x8EA7C5E2\t0x2A063\n0x8EA7C5E3\t0x2A070\n0x8EA7C5E4\t0x2A05F\n0x8EA7C5E5\t0x2FA0D\n0x8EA7C5E6\t0x2A064\n0x8EA7C5E7\t0x2A05D\n0x8EA7C5E8\t0x2A068\n0x8EA7C5E9\t0x2A09F\n0x8EA7C5EA\t0x2A2BA\n0x8EA7C5EB\t0x2A2B8\n0x8EA7C5EC\t0x2A2BC\n0x8EA7C5ED\t0x2A2B9\n0x8EA7C5EE\t0x2A2B4\n0x8EA7C5EF\t0x2A33B\n0x8EA7C5F0\t0x2A32D\n0x8EA7C5F1\t0x2A338\n0x8EA7C5F2\t0x2A32F\n0x8EA7C5F3\t0x2A332\n0x8EA7C5F4\t0x2A441\n0x8EA7C5F5\t0x2A4CB\n0x8EA7C5F6\t0x2A4DE\n0x8EA7C5F7\t0x2A4DD\n0x8EA7C5F8\t0x2A4DA\n0x8EA7C5F9\t0x2A4DC\n0x8EA7C5FA\t0x2A510\n0x8EA7C5FB\t0x2A54F\n0x8EA7C5FC\t0x2A549\n0x8EA7C5FD\t0x2A598\n0x8EA7C5FE\t0x2A596\n0x8EA7C6A1\t0x2A597\n0x8EA7C6A2\t0x2A5C7\n0x8EA7C6A3\t0x2019C\n0x8EA7C6A4\t0x2A5DA\n0x8EA7C6A5\t0x2A5D8\n0x8EA7C6A6\t0x2A6A8\n0x8EA7C6A7\t0x2010A\n0x8EA7C6A8\t0x2019D\n0x8EA7C6A9\t0x204CB\n0x8EA7C6AA\t0x20538\n0x8EA7C6AB\t0x20539\n0x8EA7C6AC\t0x205A6\n0x8EA7C6AD\t0x20823\n0x8EA7C6AE\t0x20822\n0x8EA7C6AF\t0x20821\n0x8EA7C6B0\t0x209CE\n0x8EA7C6B1\t0x20B92\n0x8EA7C6B2\t0x20B91\n0x8EA7C6B3\t0x210EC\n0x8EA7C6B4\t0x210E0\n0x8EA7C6B5\t0x210ED\n0x8EA7C6B6\t0x21108\n0x8EA7C6B7\t0x210E5\n0x8EA7C6B8\t0x210EE\n0x8EA7C6B9\t0x210E4\n0x8EA7C6BA\t0x210EB\n0x8EA7C6BB\t0x210E3\n0x8EA7C6BC\t0x210EA\n0x8EA7C6BD\t0x2110A\n0x8EA7C6BE\t0x2F859\n0x8EA7C6BF\t0x214D1\n0x8EA7C6C0\t0x214E3\n0x8EA7C6C1\t0x214D4\n0x8EA7C6C2\t0x214D0\n0x8EA7C6C3\t0x214D9\n0x8EA7C6C4\t0x367E\n0x8EA7C6C5\t0x58E1\n0x8EA7C6C6\t0x214DA\n0x8EA7C6C7\t0x214D3\n0x8EA7C6C8\t0x2154C\n0x8EA7C6C9\t0x2154D\n0x8EA7C6CA\t0x2157C\n0x8EA7C6CB\t0x21580\n0x8EA7C6CC\t0x215CC\n0x8EA7C6CD\t0x218FF\n0x8EA7C6CE\t0x21908\n0x8EA7C6CF\t0x2A508\n0x8EA7C6D0\t0x21901\n0x8EA7C6D1\t0x2F86B\n0x8EA7C6D2\t0x21900\n0x8EA7C6D3\t0x21AED\n0x8EA7C6D4\t0x21AF3\n0x8EA7C6D5\t0x21AEE\n0x8EA7C6D6\t0x21AF1\n0x8EA7C6D7\t0x21AF0\n0x8EA7C6D8\t0x21ADE\n0x8EA7C6D9\t0x21B51\n0x8EA7C6DA\t0x21F82\n0x8EA7C6DB\t0x21FA9\n0x8EA7C6DC\t0x21F98\n0x8EA7C6DD\t0x21F9D\n0x8EA7C6DE\t0x21F9A\n0x8EA7C6DF\t0x21F9E\n0x8EA7C6E0\t0x21F9F\n0x8EA7C6E1\t0x21FA6\n0x8EA7C6E2\t0x21FA7\n0x8EA7C6E3\t0x22009\n0x8EA7C6E4\t0x2202F\n0x8EA7C6E5\t0x22171\n0x8EA7C6E6\t0x2216D\n0x8EA7C6E7\t0x22172\n0x8EA7C6E8\t0x222EF\n0x8EA7C6E9\t0x222F0\n0x8EA7C6EA\t0x2243B\n0x8EA7C6EB\t0x22439\n0x8EA7C6EC\t0x2243C\n0x8EA7C6ED\t0x22438\n0x8EA7C6EE\t0x24BFD\n0x8EA7C6EF\t0x2243A\n0x8EA7C6F0\t0x22478\n0x8EA7C6F1\t0x22479\n0x8EA7C6F2\t0x22477\n0x8EA7C6F3\t0x22598\n0x8EA7C6F4\t0x2259C\n0x8EA7C6F5\t0x22599\n0x8EA7C6F6\t0x2259A\n0x8EA7C6F7\t0x22911\n0x8EA7C6F8\t0x2290A\n0x8EA7C6F9\t0x228FD\n0x8EA7C6FA\t0x2290F\n0x8EA7C6FB\t0x22919\n0x8EA7C6FC\t0x22903\n0x8EA7C6FD\t0x22915\n0x8EA7C6FE\t0x2290C\n0x8EA7C7A1\t0x22909\n0x8EA7C7A2\t0x22912\n0x8EA7C7A3\t0x22934\n0x8EA7C7A4\t0x2292A\n0x8EA7C7A5\t0x22908\n0x8EA7C7A6\t0x2292D\n0x8EA7C7A7\t0x22928\n0x8EA7C7A8\t0x2F8B1\n0x8EA7C7A9\t0x2292C\n0x8EA7C7AA\t0x22926\n0x8EA7C7AB\t0x22933\n0x8EA7C7AC\t0x39A7\n0x8EA7C7AD\t0x22A1A\n0x8EA7C7AE\t0x22A1E\n0x8EA7C7AF\t0x22E07\n0x8EA7C7B0\t0x22E2C\n0x8EA7C7B1\t0x22E32\n0x8EA7C7B2\t0x22E28\n0x8EA7C7B3\t0x22E31\n0x8EA7C7B4\t0x22E29\n0x8EA7C7B5\t0x22E30\n0x8EA7C7B6\t0x22E2A\n0x8EA7C7B7\t0x22E44\n0x8EA7C7B8\t0x22E2E\n0x8EA7C7B9\t0x230D1\n0x8EA7C7BA\t0x23124\n0x8EA7C7BB\t0x232F7\n0x8EA7C7BC\t0x232F4\n0x8EA7C7BD\t0x232F3\n0x8EA7C7BE\t0x232F8\n0x8EA7C7BF\t0x237B5\n0x8EA7C7C0\t0x23796\n0x8EA7C7C1\t0x23798\n0x8EA7C7C2\t0x23795\n0x8EA7C7C3\t0x23791\n0x8EA7C7C4\t0x237B2\n0x8EA7C7C5\t0x2379E\n0x8EA7C7C6\t0x23759\n0x8EA7C7C7\t0x237A3\n0x8EA7C7C8\t0x2379A\n0x8EA7C7C9\t0x2379B\n0x8EA7C7CA\t0x4320\n0x8EA7C7CB\t0x26183\n0x8EA7C7CC\t0x23ADA\n0x8EA7C7CD\t0x23ADF\n0x8EA7C7CE\t0x23B16\n0x8EA7C7CF\t0x23C1F\n0x8EA7C7D0\t0x23C2D\n0x8EA7C7D1\t0x23C2E\n0x8EA7C7D2\t0x23C2B\n0x8EA7C7D3\t0x240B8\n0x8EA7C7D4\t0x240BB\n0x8EA7C7D5\t0x240BF\n0x8EA7C7D6\t0x240BA\n0x8EA7C7D7\t0x240D5\n0x8EA7C7D8\t0x240E3\n0x8EA7C7D9\t0x240C1\n0x8EA7C7DA\t0x240BE\n0x8EA7C7DB\t0x240BD\n0x8EA7C7DC\t0x240B4\n0x8EA7C7DD\t0x240C2\n0x8EA7C7DE\t0x240A1\n0x8EA7C7DF\t0x24087\n0x8EA7C7E0\t0x240D7\n0x8EA7C7E1\t0x240CA\n0x8EA7C7E2\t0x240B5\n0x8EA7C7E3\t0x240DA\n0x8EA7C7E4\t0x240D9\n0x8EA7C7E5\t0x240B3\n0x8EA7C7E6\t0x240D8\n0x8EA7C7E7\t0x24467\n0x8EA7C7E8\t0x24471\n0x8EA7C7E9\t0x24462\n0x8EA7C7EA\t0x2445C\n0x8EA7C7EB\t0x24468\n0x8EA7C7EC\t0x24452\n0x8EA7C7ED\t0x24456\n0x8EA7C7EE\t0x21109\n0x8EA7C7EF\t0x20442\n0x8EA7C7F0\t0x245A0\n0x8EA7C7F1\t0x24700\n0x8EA7C7F2\t0x246FE\n0x8EA7C7F3\t0x246FF\n0x8EA7C7F4\t0x248CB\n0x8EA7C7F5\t0x2F928\n0x8EA7C7F6\t0x248CA\n0x8EA7C7F7\t0x248A9\n0x8EA7C7F8\t0x248C8\n0x8EA7C7F9\t0x24AB4\n0x8EA7C7FA\t0x24AAC\n0x8EA7C7FB\t0x24AAA\n0x8EA7C7FC\t0x24AA9\n0x8EA7C7FD\t0x24C0E\n0x8EA7C7FE\t0x24CE9\n0x8EA7C8A1\t0x24CED\n0x8EA7C8A2\t0x24CF2\n0x8EA7C8A3\t0x24CEB\n0x8EA7C8A4\t0x24CEE\n0x8EA7C8A5\t0x24EE8\n0x8EA7C8A6\t0x24EDB\n0x8EA7C8A7\t0x24ED7\n0x8EA7C8A8\t0x24EE3\n0x8EA7C8A9\t0x24EE5\n0x8EA7C8AA\t0x24EEE\n0x8EA7C8AB\t0x24ED5\n0x8EA7C8AC\t0x24FB3\n0x8EA7C8AD\t0x2502D\n0x8EA7C8AE\t0x250C1\n0x8EA7C8AF\t0x250C3\n0x8EA7C8B0\t0x2530C\n0x8EA7C8B1\t0x2530E\n0x8EA7C8B2\t0x25307\n0x8EA7C8B3\t0x25317\n0x8EA7C8B4\t0x25309\n0x8EA7C8B5\t0x25316\n0x8EA7C8B6\t0x2539A\n0x8EA7C8B7\t0x2539C\n0x8EA7C8B8\t0x255B4\n0x8EA7C8B9\t0x255B7\n0x8EA7C8BA\t0x255B3\n0x8EA7C8BB\t0x2154E\n0x8EA7C8BC\t0x25713\n0x8EA7C8BD\t0x25714\n0x8EA7C8BE\t0x258E6\n0x8EA7C8BF\t0x258DC\n0x8EA7C8C0\t0x258E8\n0x8EA7C8C1\t0x258E5\n0x8EA7C8C2\t0x25A2E\n0x8EA7C8C3\t0x25A2C\n0x8EA7C8C4\t0x25A2B\n0x8EA7C8C5\t0x25ACD\n0x8EA7C8C6\t0x25D3D\n0x8EA7C8C7\t0x25D32\n0x8EA7C8C8\t0x25D2D\n0x8EA7C8C9\t0x25D45\n0x8EA7C8CA\t0x25D3E\n0x8EA7C8CB\t0x25D50\n0x8EA7C8CC\t0x25D25\n0x8EA7C8CD\t0x25D53\n0x8EA7C8CE\t0x25D23\n0x8EA7C8CF\t0x25F37\n0x8EA7C8D0\t0x25F38\n0x8EA7C8D1\t0x25F47\n0x8EA7C8D2\t0x25F3D\n0x8EA7C8D3\t0x25F3E\n0x8EA7C8D4\t0x25F49\n0x8EA7C8D5\t0x25F4A\n0x8EA7C8D6\t0x25F1D\n0x8EA7C8D7\t0x7CE9\n0x8EA7C8D8\t0x261A5\n0x8EA7C8D9\t0x2618C\n0x8EA7C8DA\t0x2618D\n0x8EA7C8DB\t0x26189\n0x8EA7C8DC\t0x26196\n0x8EA7C8DD\t0x26185\n0x8EA7C8DE\t0x2618F\n0x8EA7C8DF\t0x26177\n0x8EA7C8E0\t0x2618E\n0x8EA7C8E1\t0x26182\n0x8EA7C8E2\t0x2618A\n0x8EA7C8E3\t0x26188\n0x8EA7C8E4\t0x2617B\n0x8EA7C8E5\t0x26197\n0x8EA7C8E6\t0x2617D\n0x8EA7C8E7\t0x26179\n0x8EA7C8E8\t0x26259\n0x8EA7C8E9\t0x26324\n0x8EA7C8EA\t0x2632D\n0x8EA7C8EB\t0x2632E\n0x8EA7C8EC\t0x2632B\n0x8EA7C8ED\t0x2F976\n0x8EA7C8EE\t0x263DA\n0x8EA7C8EF\t0x263D8\n0x8EA7C8F0\t0x263D6\n0x8EA7C8F1\t0x26487\n0x8EA7C8F2\t0x264A0\n0x8EA7C8F3\t0x26528\n0x8EA7C8F4\t0x26525\n0x8EA7C8F5\t0x2651F\n0x8EA7C8F6\t0x265F3\n0x8EA7C8F7\t0x265F7\n0x8EA7C8F8\t0x265F6\n0x8EA7C8F9\t0x2682B\n0x8EA7C8FA\t0x2685B\n0x8EA7C8FB\t0x26848\n0x8EA7C8FC\t0x81CB\n0x8EA7C8FD\t0x2685C\n0x8EA7C8FE\t0x2686D\n0x8EA7C9A1\t0x2689D\n0x8EA7C9A2\t0x26899\n0x8EA7C9A3\t0x2688C\n0x8EA7C9A4\t0x26891\n0x8EA7C9A5\t0x2689B\n0x8EA7C9A6\t0x2689A\n0x8EA7C9A7\t0x2689C\n0x8EA7C9A8\t0x26895\n0x8EA7C9A9\t0x2688D\n0x8EA7C9AA\t0x26896\n0x8EA7C9AB\t0x268A5\n0x8EA7C9AC\t0x2692A\n0x8EA7C9AD\t0x269A1\n0x8EA7C9AE\t0x269A4\n0x8EA7C9AF\t0x269AD\n0x8EA7C9B0\t0x26AA9\n0x8EA7C9B1\t0x26AAE\n0x8EA7C9B2\t0x26AB0\n0x8EA7C9B3\t0x2700D\n0x8EA7C9B4\t0x26F63\n0x8EA7C9B5\t0x26F71\n0x8EA7C9B6\t0x27051\n0x8EA7C9B7\t0x27054\n0x8EA7C9B8\t0x2702A\n0x8EA7C9B9\t0x27044\n0x8EA7C9BA\t0x27055\n0x8EA7C9BB\t0x27099\n0x8EA7C9BC\t0x27039\n0x8EA7C9BD\t0x2703F\n0x8EA7C9BE\t0x2703E\n0x8EA7C9BF\t0x2704F\n0x8EA7C9C0\t0x2704D\n0x8EA7C9C1\t0x27035\n0x8EA7C9C2\t0x27040\n0x8EA7C9C3\t0x27031\n0x8EA7C9C4\t0x26FD5\n0x8EA7C9C5\t0x2702B\n0x8EA7C9C6\t0x27033\n0x8EA7C9C7\t0x27041\n0x8EA7C9C8\t0x27056\n0x8EA7C9C9\t0x2704C\n0x8EA7C9CA\t0x27046\n0x8EA7C9CB\t0x2703C\n0x8EA7C9CC\t0x27045\n0x8EA7C9CD\t0x27043\n0x8EA7C9CE\t0x2703D\n0x8EA7C9CF\t0x27070\n0x8EA7C9D0\t0x27057\n0x8EA7C9D1\t0x27038\n0x8EA7C9D2\t0x27058\n0x8EA7C9D3\t0x4565\n0x8EA7C9D4\t0x27037\n0x8EA7C9D5\t0x27207\n0x8EA7C9D6\t0x27206\n0x8EA7C9D7\t0x27209\n0x8EA7C9D8\t0x274AB\n0x8EA7C9D9\t0x27490\n0x8EA7C9DA\t0x27493\n0x8EA7C9DB\t0x274BC\n0x8EA7C9DC\t0x274A9\n0x8EA7C9DD\t0x2749E\n0x8EA7C9DE\t0x274BF\n0x8EA7C9DF\t0x274AA\n0x8EA7C9E0\t0x27491\n0x8EA7C9E1\t0x274A4\n0x8EA7C9E2\t0x2749A\n0x8EA7C9E3\t0x274A7\n0x8EA7C9E4\t0x274A1\n0x8EA7C9E5\t0x2749C\n0x8EA7C9E6\t0x274A2\n0x8EA7C9E7\t0x2749B\n0x8EA7C9E8\t0x2749F\n0x8EA7C9E9\t0x27494\n0x8EA7C9EA\t0x2748F\n0x8EA7C9EB\t0x272F0\n0x8EA7C9EC\t0x27492\n0x8EA7C9ED\t0x27495\n0x8EA7C9EE\t0x274A5\n0x8EA7C9EF\t0x274A6\n0x8EA7C9F0\t0x27604\n0x8EA7C9F1\t0x2779C\n0x8EA7C9F2\t0x27779\n0x8EA7C9F3\t0x2777A\n0x8EA7C9F4\t0x2777E\n0x8EA7C9F5\t0x2777B\n0x8EA7C9F6\t0x27771\n0x8EA7C9F7\t0x27781\n0x8EA7C9F8\t0x2777F\n0x8EA7C9F9\t0x2777C\n0x8EA7C9FA\t0x2777D\n0x8EA7C9FB\t0x27775\n0x8EA7C9FC\t0x27776\n0x8EA7C9FD\t0x2788E\n0x8EA7C9FE\t0x2788F\n0x8EA7CAA1\t0x2793E\n0x8EA7CAA2\t0x2793F\n0x8EA7CAA3\t0x27940\n0x8EA7CAA4\t0x27941\n0x8EA7CAA5\t0x4704\n0x8EA7CAA6\t0x27B0D\n0x8EA7CAA7\t0x27B17\n0x8EA7CAA8\t0x27B10\n0x8EA7CAA9\t0x27B0E\n0x8EA7CAAA\t0x27AEA\n0x8EA7CAAB\t0x27B1D\n0x8EA7CAAC\t0x27B03\n0x8EA7CAAD\t0x27B22\n0x8EA7CAAE\t0x27B04\n0x8EA7CAAF\t0x27B00\n0x8EA7CAB0\t0x27B20\n0x8EA7CAB1\t0x27B21\n0x8EA7CAB2\t0x27B23\n0x8EA7CAB3\t0x27B13\n0x8EA7CAB4\t0x27B09\n0x8EA7CAB5\t0x27B11\n0x8EA7CAB6\t0x27BCB\n0x8EA7CAB7\t0x27BCE\n0x8EA7CAB8\t0x27BD0\n0x8EA7CAB9\t0x27BCC\n0x8EA7CABA\t0x27BD4\n0x8EA7CABB\t0x214DB\n0x8EA7CABC\t0x27C09\n0x8EA7CABD\t0x27C0B\n0x8EA7CABE\t0x27C85\n0x8EA7CABF\t0x27D06\n0x8EA7CAC0\t0x27D0D\n0x8EA7CAC1\t0x4764\n0x8EA7CAC2\t0x27D14\n0x8EA7CAC3\t0x27D0F\n0x8EA7CAC4\t0x27E09\n0x8EA7CAC5\t0x27E14\n0x8EA7CAC6\t0x27E0B\n0x8EA7CAC7\t0x27DFC\n0x8EA7CAC8\t0x27E04\n0x8EA7CAC9\t0x27E0A\n0x8EA7CACA\t0x27E00\n0x8EA7CACB\t0x27DFD\n0x8EA7CACC\t0x27E07\n0x8EA7CACD\t0x27E06\n0x8EA7CACE\t0x27E11\n0x8EA7CACF\t0x27E79\n0x8EA7CAD0\t0x27E78\n0x8EA7CAD1\t0x27F88\n0x8EA7CAD2\t0x27F80\n0x8EA7CAD3\t0x27F8B\n0x8EA7CAD4\t0x28159\n0x8EA7CAD5\t0x28161\n0x8EA7CAD6\t0x28175\n0x8EA7CAD7\t0x4823\n0x8EA7CAD8\t0x28155\n0x8EA7CAD9\t0x2815B\n0x8EA7CADA\t0x2815F\n0x8EA7CADB\t0x28152\n0x8EA7CADC\t0x28162\n0x8EA7CADD\t0x28172\n0x8EA7CADE\t0x2815D\n0x8EA7CADF\t0x28168\n0x8EA7CAE0\t0x28171\n0x8EA7CAE1\t0x28165\n0x8EA7CAE2\t0x28166\n0x8EA7CAE3\t0x28167\n0x8EA7CAE4\t0x28176\n0x8EA7CAE5\t0x2814C\n0x8EA7CAE6\t0x28160\n0x8EA7CAE7\t0x28174\n0x8EA7CAE8\t0x28150\n0x8EA7CAE9\t0x2828A\n0x8EA7CAEA\t0x28281\n0x8EA7CAEB\t0x28286\n0x8EA7CAEC\t0x2827F\n0x8EA7CAED\t0x28280\n0x8EA7CAEE\t0x283A5\n0x8EA7CAEF\t0x283A7\n0x8EA7CAF0\t0x283A8\n0x8EA7CAF1\t0x283A6\n0x8EA7CAF2\t0x283AF\n0x8EA7CAF3\t0x26195\n0x8EA7CAF4\t0x283B1\n0x8EA7CAF5\t0x28435\n0x8EA7CAF6\t0x28439\n0x8EA7CAF7\t0x285C3\n0x8EA7CAF8\t0x28630\n0x8EA7CAF9\t0x2862A\n0x8EA7CAFA\t0x2862B\n0x8EA7CAFB\t0x2862D\n0x8EA7CAFC\t0x2862E\n0x8EA7CAFD\t0x2862C\n0x8EA7CAFE\t0x28623\n0x8EA7CBA1\t0x28621\n0x8EA7CBA2\t0x28622\n0x8EA7CBA3\t0x2876C\n0x8EA7CBA4\t0x28781\n0x8EA7CBA5\t0x2878F\n0x8EA7CBA6\t0x28780\n0x8EA7CBA7\t0x287D0\n0x8EA7CBA8\t0x287CD\n0x8EA7CBA9\t0x287D5\n0x8EA7CBAA\t0x287D4\n0x8EA7CBAB\t0x288D1\n0x8EA7CBAC\t0x288BE\n0x8EA7CBAD\t0x288CB\n0x8EA7CBAE\t0x288CE\n0x8EA7CBAF\t0x288BD\n0x8EA7CBB0\t0x288D0\n0x8EA7CBB1\t0x28B04\n0x8EA7CBB2\t0x28AD5\n0x8EA7CBB3\t0x28AD0\n0x8EA7CBB4\t0x28AD3\n0x8EA7CBB5\t0x28AFB\n0x8EA7CBB6\t0x28AD8\n0x8EA7CBB7\t0x28AD1\n0x8EA7CBB8\t0x28AFD\n0x8EA7CBB9\t0x28AD9\n0x8EA7CBBA\t0x28AD6\n0x8EA7CBBB\t0x28AE6\n0x8EA7CBBC\t0x28AF9\n0x8EA7CBBD\t0x28DA1\n0x8EA7CBBE\t0x28D9D\n0x8EA7CBBF\t0x28D9E\n0x8EA7CBC0\t0x95D9\n0x8EA7CBC1\t0x28EFF\n0x8EA7CBC2\t0x28F5F\n0x8EA7CBC3\t0x28F57\n0x8EA7CBC4\t0x28F60\n0x8EA7CBC5\t0x28F59\n0x8EA7CBC6\t0x2902C\n0x8EA7CBC7\t0x29025\n0x8EA7CBC8\t0x29027\n0x8EA7CBC9\t0x29030\n0x8EA7CBCA\t0x29024\n0x8EA7CBCB\t0x29026\n0x8EA7CBCC\t0x2902D\n0x8EA7CBCD\t0x2902E\n0x8EA7CBCE\t0x29029\n0x8EA7CBCF\t0x29031\n0x8EA7CBD0\t0x29145\n0x8EA7CBD1\t0x29147\n0x8EA7CBD2\t0x29152\n0x8EA7CBD3\t0x2914A\n0x8EA7CBD4\t0x29150\n0x8EA7CBD5\t0x29146\n0x8EA7CBD6\t0x2914F\n0x8EA7CBD7\t0x2914E\n0x8EA7CBD8\t0x29153\n0x8EA7CBD9\t0x29321\n0x8EA7CBDA\t0x29309\n0x8EA7CBDB\t0x2931A\n0x8EA7CBDC\t0x2931B\n0x8EA7CBDD\t0x25315\n0x8EA7CBDE\t0x29310\n0x8EA7CBDF\t0x2F9F9\n0x8EA7CBE0\t0x29314\n0x8EA7CBE1\t0x2930E\n0x8EA7CBE2\t0x29312\n0x8EA7CBE3\t0x2930B\n0x8EA7CBE4\t0x293CF\n0x8EA7CBE5\t0x293D2\n0x8EA7CBE6\t0x293D0\n0x8EA7CBE7\t0x293D4\n0x8EA7CBE8\t0x293D3\n0x8EA7CBE9\t0x293D1\n0x8EA7CBEA\t0x20B18\n0x8EA7CBEB\t0x2F9FB\n0x8EA7CBEC\t0x29409\n0x8EA7CBED\t0x2951C\n0x8EA7CBEE\t0x29527\n0x8EA7CBEF\t0x29525\n0x8EA7CBF0\t0x2951B\n0x8EA7CBF1\t0x29529\n0x8EA7CBF2\t0x2951F\n0x8EA7CBF3\t0x29530\n0x8EA7CBF4\t0x29524\n0x8EA7CBF5\t0x29528\n0x8EA7CBF6\t0x29519\n0x8EA7CBF7\t0x2952F\n0x8EA7CBF8\t0x29624\n0x8EA7CBF9\t0x29621\n0x8EA7CBFA\t0x29625\n0x8EA7CBFB\t0x29626\n0x8EA7CBFC\t0x29627\n0x8EA7CBFD\t0x29676\n0x8EA7CBFE\t0x29766\n0x8EA7CCA1\t0x29775\n0x8EA7CCA2\t0x29769\n0x8EA7CCA3\t0x2977E\n0x8EA7CCA4\t0x2978F\n0x8EA7CCA5\t0x29774\n0x8EA7CCA6\t0x27210\n0x8EA7CCA7\t0x297AD\n0x8EA7CCA8\t0x2982B\n0x8EA7CCA9\t0x2982A\n0x8EA7CCAA\t0x29858\n0x8EA7CCAB\t0x29922\n0x8EA7CCAC\t0x2991D\n0x8EA7CCAD\t0x2992B\n0x8EA7CCAE\t0x2992C\n0x8EA7CCAF\t0x2992D\n0x8EA7CCB0\t0x29933\n0x8EA7CCB1\t0x2991B\n0x8EA7CCB2\t0x29927\n0x8EA7CCB3\t0x2992A\n0x8EA7CCB4\t0x29928\n0x8EA7CCB5\t0x2993B\n0x8EA7CCB6\t0x29A7E\n0x8EA7CCB7\t0x29A71\n0x8EA7CCB8\t0x29A79\n0x8EA7CCB9\t0x29A78\n0x8EA7CCBA\t0x29A70\n0x8EA7CCBB\t0x29A6D\n0x8EA7CCBC\t0x29A7D\n0x8EA7CCBD\t0x29A75\n0x8EA7CCBE\t0x29A76\n0x8EA7CCBF\t0x29ADE\n0x8EA7CCC0\t0x29B66\n0x8EA7CCC1\t0x29B83\n0x8EA7CCC2\t0x29B87\n0x8EA7CCC3\t0x29B7B\n0x8EA7CCC4\t0x29B89\n0x8EA7CCC5\t0x29B86\n0x8EA7CCC6\t0x29B82\n0x8EA7CCC7\t0x29B7C\n0x8EA7CCC8\t0x29B81\n0x8EA7CCC9\t0x29C43\n0x8EA7CCCA\t0x29C45\n0x8EA7CCCB\t0x29CF7\n0x8EA7CCCC\t0x29CF9\n0x8EA7CCCD\t0x29CFA\n0x8EA7CCCE\t0x29E05\n0x8EA7CCCF\t0x29DFE\n0x8EA7CCD0\t0x29E0F\n0x8EA7CCD1\t0x29DFF\n0x8EA7CCD2\t0x29DFA\n0x8EA7CCD3\t0x29E09\n0x8EA7CCD4\t0x29E20\n0x8EA7CCD5\t0x29E0C\n0x8EA7CCD6\t0x29E3C\n0x8EA7CCD7\t0x29E22\n0x8EA7CCD8\t0x29DF8\n0x8EA7CCD9\t0x29E0A\n0x8EA7CCDA\t0x29E08\n0x8EA7CCDB\t0x29DF7\n0x8EA7CCDC\t0x2A08E\n0x8EA7CCDD\t0x2A077\n0x8EA7CCDE\t0x2A08B\n0x8EA7CCDF\t0x2A0B4\n0x8EA7CCE0\t0x2A08A\n0x8EA7CCE1\t0x2A09A\n0x8EA7CCE2\t0x2A079\n0x8EA7CCE3\t0x2A083\n0x8EA7CCE4\t0x2A07F\n0x8EA7CCE5\t0x2A0A1\n0x8EA7CCE6\t0x2A08F\n0x8EA7CCE7\t0x2A0A3\n0x8EA7CCE8\t0x2A081\n0x8EA7CCE9\t0x2A094\n0x8EA7CCEA\t0x2A07E\n0x8EA7CCEB\t0x2A082\n0x8EA7CCEC\t0x2A090\n0x8EA7CCED\t0x2A0A5\n0x8EA7CCEE\t0x2A0AD\n0x8EA7CCEF\t0x2A09D\n0x8EA7CCF0\t0x2A267\n0x8EA7CCF1\t0x2A269\n0x8EA7CCF2\t0x2A2CB\n0x8EA7CCF3\t0x2A2C8\n0x8EA7CCF4\t0x2A2D1\n0x8EA7CCF5\t0x2A340\n0x8EA7CCF6\t0x2A34B\n0x8EA7CCF7\t0x2A349\n0x8EA7CCF8\t0x2A346\n0x8EA7CCF9\t0x2A33E\n0x8EA7CCFA\t0x2A343\n0x8EA7CCFB\t0x2A33F\n0x8EA7CCFC\t0x2A3A5\n0x8EA7CCFD\t0x2A3A7\n0x8EA7CCFE\t0x2A44E\n0x8EA7CDA1\t0x2A44D\n0x8EA7CDA2\t0x2259B\n0x8EA7CDA3\t0x2A4E5\n0x8EA7CDA4\t0x2A4E1\n0x8EA7CDA5\t0x2A4E2\n0x8EA7CDA6\t0x2A516\n0x8EA7CDA7\t0x2A514\n0x8EA7CDA8\t0x2FA1B\n0x8EA7CDA9\t0x2A559\n0x8EA7CDAA\t0x2A551\n0x8EA7CDAB\t0x2A55F\n0x8EA7CDAC\t0x2A54A\n0x8EA7CDAD\t0x2A557\n0x8EA7CDAE\t0x2A558\n0x8EA7CDAF\t0x2A5CA\n0x8EA7CDB0\t0x2A5DB\n0x8EA7CDB1\t0x2A5DE\n0x8EA7CDB2\t0x2A5E0\n0x8EA7CDB3\t0x2A5E1\n0x8EA7CDB4\t0x2A5DF\n0x8EA7CDB5\t0x2A5E2\n0x8EA7CDB6\t0x2A5E3\n0x8EA7CDB7\t0x2A692\n0x8EA7CDB8\t0x2A6BF\n0x8EA7CDB9\t0x2A6BE\n0x8EA7CDBA\t0x2010B\n0x8EA7CDBB\t0x20452\n0x8EA7CDBC\t0x2044E\n0x8EA7CDBD\t0x34B9\n0x8EA7CDBE\t0x2F813\n0x8EA7CDBF\t0x205A7\n0x8EA7CDC0\t0x20826\n0x8EA7CDC1\t0x20827\n0x8EA7CDC2\t0x208C6\n0x8EA7CDC3\t0x2090B\n0x8EA7CDC4\t0x2096A\n0x8EA7CDC5\t0x20978\n0x8EA7CDC6\t0x2111A\n0x8EA7CDC7\t0x21116\n0x8EA7CDC8\t0x21119\n0x8EA7CDC9\t0x21117\n0x8EA7CDCA\t0x2111B\n0x8EA7CDCB\t0x21118\n0x8EA7CDCC\t0x21120\n0x8EA7CDCD\t0x21237\n0x8EA7CDCE\t0x214EC\n0x8EA7CDCF\t0x21581\n0x8EA7CDD0\t0x2923D\n0x8EA7CDD1\t0x2190F\n0x8EA7CDD2\t0x219AD\n0x8EA7CDD3\t0x21AFB\n0x8EA7CDD4\t0x21B52\n0x8EA7CDD5\t0x21FAF\n0x8EA7CDD6\t0x21FB7\n0x8EA7CDD7\t0x21FB2\n0x8EA7CDD8\t0x22178\n0x8EA7CDD9\t0x221AC\n0x8EA7CDDA\t0x22300\n0x8EA7CDDB\t0x222FE\n0x8EA7CDDC\t0x22302\n0x8EA7CDDD\t0x222FD\n0x8EA7CDDE\t0x22303\n0x8EA7CDDF\t0x22440\n0x8EA7CDE0\t0x22443\n0x8EA7CDE1\t0x22442\n0x8EA7CDE2\t0x224B7\n0x8EA7CDE3\t0x225A2\n0x8EA7CDE4\t0x22900\n0x8EA7CDE5\t0x22935\n0x8EA7CDE6\t0x22941\n0x8EA7CDE7\t0x22905\n0x8EA7CDE8\t0x20453\n0x8EA7CDE9\t0x22950\n0x8EA7CDEA\t0x2294E\n0x8EA7CDEB\t0x22953\n0x8EA7CDEC\t0x22E53\n0x8EA7CDED\t0x22E50\n0x8EA7CDEE\t0x22E57\n0x8EA7CDEF\t0x22E5F\n0x8EA7CDF0\t0x22E55\n0x8EA7CDF1\t0x22EEA\n0x8EA7CDF2\t0x23026\n0x8EA7CDF3\t0x29830\n0x8EA7CDF4\t0x2302A\n0x8EA7CDF5\t0x23028\n0x8EA7CDF6\t0x2302C\n0x8EA7CDF7\t0x2302D\n0x8EA7CDF8\t0x230D4\n0x8EA7CDF9\t0x23307\n0x8EA7CDFA\t0x23358\n0x8EA7CDFB\t0x23359\n0x8EA7CDFC\t0x237C5\n0x8EA7CDFD\t0x237CD\n0x8EA7CDFE\t0x237C7\n0x8EA7CEA1\t0x237E8\n0x8EA7CEA2\t0x3C4B\n0x8EA7CEA3\t0x23932\n0x8EA7CEA4\t0x2A697\n0x8EA7CEA5\t0x23ADE\n0x8EA7CEA6\t0x23C32\n0x8EA7CEA7\t0x20AC8\n0x8EA7CEA8\t0x2F915\n0x8EA7CEA9\t0x240F1\n0x8EA7CEAA\t0x240F0\n0x8EA7CEAB\t0x240EC\n0x8EA7CEAC\t0x24109\n0x8EA7CEAD\t0x240F9\n0x8EA7CEAE\t0x240F5\n0x8EA7CEAF\t0x240FE\n0x8EA7CEB0\t0x24474\n0x8EA7CEB1\t0x24481\n0x8EA7CEB2\t0x2447C\n0x8EA7CEB3\t0x24475\n0x8EA7CEB4\t0x24489\n0x8EA7CEB5\t0x24482\n0x8EA7CEB6\t0x24497\n0x8EA7CEB7\t0x24486\n0x8EA7CEB8\t0x2447D\n0x8EA7CEB9\t0x24493\n0x8EA7CEBA\t0x2449C\n0x8EA7CEBB\t0x24476\n0x8EA7CEBC\t0x24480\n0x8EA7CEBD\t0x24545\n0x8EA7CEBE\t0x206A1\n0x8EA7CEBF\t0x24703\n0x8EA7CEC0\t0x248C9\n0x8EA7CEC1\t0x248CD\n0x8EA7CEC2\t0x248D0\n0x8EA7CEC3\t0x24AAD\n0x8EA7CEC4\t0x24AC5\n0x8EA7CEC5\t0x24BA2\n0x8EA7CEC6\t0x24CEC\n0x8EA7CEC7\t0x24CF6\n0x8EA7CEC8\t0x24CF3\n0x8EA7CEC9\t0x24EF3\n0x8EA7CECA\t0x24EFA\n0x8EA7CECB\t0x24EF9\n0x8EA7CECC\t0x24EF5\n0x8EA7CECD\t0x24EF4\n0x8EA7CECE\t0x24EF8\n0x8EA7CECF\t0x24FB6\n0x8EA7CED0\t0x24FB4\n0x8EA7CED1\t0x25032\n0x8EA7CED2\t0x250CD\n0x8EA7CED3\t0x250C8\n0x8EA7CED4\t0x250CE\n0x8EA7CED5\t0x250CA\n0x8EA7CED6\t0x2532A\n0x8EA7CED7\t0x25321\n0x8EA7CED8\t0x2531D\n0x8EA7CED9\t0x255BD\n0x8EA7CEDA\t0x255BE\n0x8EA7CEDB\t0x255C2\n0x8EA7CEDC\t0x40F1\n0x8EA7CEDD\t0x255C9\n0x8EA7CEDE\t0x2571F\n0x8EA7CEDF\t0x258F1\n0x8EA7CEE0\t0x258ED\n0x8EA7CEE1\t0x258F2\n0x8EA7CEE2\t0x258E0\n0x8EA7CEE3\t0x258F7\n0x8EA7CEE4\t0x25A30\n0x8EA7CEE5\t0x25A37\n0x8EA7CEE6\t0x25A31\n0x8EA7CEE7\t0x25A36\n0x8EA7CEE8\t0x25AC8\n0x8EA7CEE9\t0x25D6D\n0x8EA7CEEA\t0x25D69\n0x8EA7CEEB\t0x25D7D\n0x8EA7CEEC\t0x25D61\n0x8EA7CEED\t0x25D70\n0x8EA7CEEE\t0x25D71\n0x8EA7CEEF\t0x25D73\n0x8EA7CEF0\t0x25D76\n0x8EA7CEF1\t0x25D75\n0x8EA7CEF2\t0x25D78\n0x8EA7CEF3\t0x25D79\n0x8EA7CEF4\t0x25D64\n0x8EA7CEF5\t0x25D6E\n0x8EA7CEF6\t0x25F51\n0x8EA7CEF7\t0x25F4F\n0x8EA7CEF8\t0x25F22\n0x8EA7CEF9\t0x261AF\n0x8EA7CEFA\t0x261AA\n0x8EA7CEFB\t0x261A3\n0x8EA7CEFC\t0x2619D\n0x8EA7CEFD\t0x2619C\n0x8EA7CEFE\t0x261A1\n0x8EA7CFA1\t0x261B6\n0x8EA7CFA2\t0x261AC\n0x8EA7CFA3\t0x261A2\n0x8EA7CFA4\t0x261A7\n0x8EA7CFA5\t0x261B0\n0x8EA7CFA6\t0x261A9\n0x8EA7CFA7\t0x261C3\n0x8EA7CFA8\t0x26331\n0x8EA7CFA9\t0x26332\n0x8EA7CFAA\t0x26333\n0x8EA7CFAB\t0x26334\n0x8EA7CFAC\t0x26337\n0x8EA7CFAD\t0x2633C\n0x8EA7CFAE\t0x263D9\n0x8EA7CFAF\t0x263DD\n0x8EA7CFB0\t0x263DE\n0x8EA7CFB1\t0x263DF\n0x8EA7CFB2\t0x263E0\n0x8EA7CFB3\t0x264A5\n0x8EA7CFB4\t0x264AA\n0x8EA7CFB5\t0x264A2\n0x8EA7CFB6\t0x264A3\n0x8EA7CFB7\t0x26604\n0x8EA7CFB8\t0x26603\n0x8EA7CFB9\t0x265FE\n0x8EA7CFBA\t0x26628\n0x8EA7CFBB\t0x268AF\n0x8EA7CFBC\t0x268AD\n0x8EA7CFBD\t0x268A6\n0x8EA7CFBE\t0x269AC\n0x8EA7CFBF\t0x269A5\n0x8EA7CFC0\t0x269B0\n0x8EA7CFC1\t0x269B1\n0x8EA7CFC2\t0x26A01\n0x8EA7CFC3\t0x26AB2\n0x8EA7CFC4\t0x26AD2\n0x8EA7CFC5\t0x26AF1\n0x8EA7CFC6\t0x26FD1\n0x8EA7CFC7\t0x27047\n0x8EA7CFC8\t0x270C9\n0x8EA7CFC9\t0x270A7\n0x8EA7CFCA\t0x270C8\n0x8EA7CFCB\t0x27095\n0x8EA7CFCC\t0x2708E\n0x8EA7CFCD\t0x27091\n0x8EA7CFCE\t0x2707D\n0x8EA7CFCF\t0x270EE\n0x8EA7CFD0\t0x2708D\n0x8EA7CFD1\t0x2708C\n0x8EA7CFD2\t0x270B0\n0x8EA7CFD3\t0x27096\n0x8EA7CFD4\t0x27042\n0x8EA7CFD5\t0x2707C\n0x8EA7CFD6\t0x270B1\n0x8EA7CFD7\t0x270B2\n0x8EA7CFD8\t0x27084\n0x8EA7CFD9\t0x2709D\n0x8EA7CFDA\t0x270A1\n0x8EA7CFDB\t0x27098\n0x8EA7CFDC\t0x270B3\n0x8EA7CFDD\t0x27022\n0x8EA7CFDE\t0x2707B\n0x8EA7CFDF\t0x2708A\n0x8EA7CFE0\t0x270CE\n0x8EA7CFE1\t0x27080\n0x8EA7CFE2\t0x27097\n0x8EA7CFE3\t0x270B4\n0x8EA7CFE4\t0x270B5\n0x8EA7CFE5\t0x2709A\n0x8EA7CFE6\t0x2709F\n0x8EA7CFE7\t0x27093\n0x8EA7CFE8\t0x27212\n0x8EA7CFE9\t0x2720B\n0x8EA7CFEA\t0x2720E\n0x8EA7CFEB\t0x274A3\n0x8EA7CFEC\t0x274CC\n0x8EA7CFED\t0x274DC\n0x8EA7CFEE\t0x274E1\n0x8EA7CFEF\t0x274DE\n0x8EA7CFF0\t0x274D2\n0x8EA7CFF1\t0x274DB\n0x8EA7CFF2\t0x274D9\n0x8EA7CFF3\t0x274D7\n0x8EA7CFF4\t0x274D4\n0x8EA7CFF5\t0x274C9\n0x8EA7CFF6\t0x274EB\n0x8EA7CFF7\t0x274DA\n0x8EA7CFF8\t0x274D1\n0x8EA7CFF9\t0x27504\n0x8EA7CFFA\t0x274CA\n0x8EA7CFFB\t0x274E2\n0x8EA7CFFC\t0x275D7\n0x8EA7CFFD\t0x2778C\n0x8EA7CFFE\t0x27799\n0x8EA7D0A1\t0x277A2\n0x8EA7D0A2\t0x27796\n0x8EA7D0A3\t0x27794\n0x8EA7D0A4\t0x2779F\n0x8EA7D0A5\t0x4667\n0x8EA7D0A6\t0x2778E\n0x8EA7D0A7\t0x27803\n0x8EA7D0A8\t0x27894\n0x8EA7D0A9\t0x27893\n0x8EA7D0AA\t0x27944\n0x8EA7D0AB\t0x27B2F\n0x8EA7D0AC\t0x27B35\n0x8EA7D0AD\t0x27B2B\n0x8EA7D0AE\t0x27B32\n0x8EA7D0AF\t0x27B2D\n0x8EA7D0B0\t0x27B36\n0x8EA7D0B1\t0x4714\n0x8EA7D0B2\t0x27B31\n0x8EA7D0B3\t0x27B12\n0x8EA7D0B4\t0x27B33\n0x8EA7D0B5\t0x27B1F\n0x8EA7D0B6\t0x27B34\n0x8EA7D0B7\t0x27B40\n0x8EA7D0B8\t0x27B3F\n0x8EA7D0B9\t0x27B41\n0x8EA7D0BA\t0x27BD3\n0x8EA7D0BB\t0x27C89\n0x8EA7D0BC\t0x27D18\n0x8EA7D0BD\t0x27D10\n0x8EA7D0BE\t0x27E1A\n0x8EA7D0BF\t0x27E25\n0x8EA7D0C0\t0x27E1E\n0x8EA7D0C1\t0x27F92\n0x8EA7D0C2\t0x27F95\n0x8EA7D0C3\t0x27F93\n0x8EA7D0C4\t0x28184\n0x8EA7D0C5\t0x2819A\n0x8EA7D0C6\t0x28189\n0x8EA7D0C7\t0x2818D\n0x8EA7D0C8\t0x28188\n0x8EA7D0C9\t0x28191\n0x8EA7D0CA\t0x2819B\n0x8EA7D0CB\t0x2819C\n0x8EA7D0CC\t0x29548\n0x8EA7D0CD\t0x2828E\n0x8EA7D0CE\t0x28292\n0x8EA7D0CF\t0x283C5\n0x8EA7D0D0\t0x283C1\n0x8EA7D0D1\t0x283B8\n0x8EA7D0D2\t0x283BE\n0x8EA7D0D3\t0x283B5\n0x8EA7D0D4\t0x283C7\n0x8EA7D0D5\t0x2843C\n0x8EA7D0D6\t0x4889\n0x8EA7D0D7\t0x285EC\n0x8EA7D0D8\t0x2863F\n0x8EA7D0D9\t0x28639\n0x8EA7D0DA\t0x28637\n0x8EA7D0DB\t0x287A1\n0x8EA7D0DC\t0x28794\n0x8EA7D0DD\t0x287A0\n0x8EA7D0DE\t0x287DE\n0x8EA7D0DF\t0x287DB\n0x8EA7D0E0\t0x287DF\n0x8EA7D0E1\t0x287DC\n0x8EA7D0E2\t0x288D6\n0x8EA7D0E3\t0x288DC\n0x8EA7D0E4\t0x288DD\n0x8EA7D0E5\t0x288E0\n0x8EA7D0E6\t0x288E3\n0x8EA7D0E7\t0x288E1\n0x8EA7D0E8\t0x28B18\n0x8EA7D0E9\t0x28B19\n0x8EA7D0EA\t0x28B53\n0x8EA7D0EB\t0x2F9EC\n0x8EA7D0EC\t0x28B44\n0x8EA7D0ED\t0x28B0E\n0x8EA7D0EE\t0x28B0F\n0x8EA7D0EF\t0x28B47\n0x8EA7D0F0\t0x28B17\n0x8EA7D0F1\t0x28B1D\n0x8EA7D0F2\t0x28B11\n0x8EA7D0F3\t0x28CB4\n0x8EA7D0F4\t0x28CB6\n0x8EA7D0F5\t0x28DB7\n0x8EA7D0F6\t0x28DBE\n0x8EA7D0F7\t0x28DC2\n0x8EA7D0F8\t0x28DB4\n0x8EA7D0F9\t0x28F31\n0x8EA7D0FA\t0x28F15\n0x8EA7D0FB\t0x28F83\n0x8EA7D0FC\t0x2903B\n0x8EA7D0FD\t0x29036\n0x8EA7D0FE\t0x29042\n0x8EA7D1A1\t0x29050\n0x8EA7D1A2\t0x29040\n0x8EA7D1A3\t0x29034\n0x8EA7D1A4\t0x29038\n0x8EA7D1A5\t0x2903D\n0x8EA7D1A6\t0x2903E\n0x8EA7D1A7\t0x29035\n0x8EA7D1A8\t0x2903A\n0x8EA7D1A9\t0x29046\n0x8EA7D1AA\t0x29037\n0x8EA7D1AB\t0x29039\n0x8EA7D1AC\t0x29045\n0x8EA7D1AD\t0x29177\n0x8EA7D1AE\t0x2915D\n0x8EA7D1AF\t0x2916A\n0x8EA7D1B0\t0x29176\n0x8EA7D1B1\t0x2916B\n0x8EA7D1B2\t0x2916C\n0x8EA7D1B3\t0x29165\n0x8EA7D1B4\t0x29164\n0x8EA7D1B5\t0x29171\n0x8EA7D1B6\t0x2915F\n0x8EA7D1B7\t0x29172\n0x8EA7D1B8\t0x291FE\n0x8EA7D1B9\t0x291FF\n0x8EA7D1BA\t0x2923E\n0x8EA7D1BB\t0x2932B\n0x8EA7D1BC\t0x29336\n0x8EA7D1BD\t0x2932D\n0x8EA7D1BE\t0x29339\n0x8EA7D1BF\t0x2933F\n0x8EA7D1C0\t0x2933B\n0x8EA7D1C1\t0x29333\n0x8EA7D1C2\t0x29342\n0x8EA7D1C3\t0x2933A\n0x8EA7D1C4\t0x293D5\n0x8EA7D1C5\t0x293D8\n0x8EA7D1C6\t0x293D9\n0x8EA7D1C7\t0x2940D\n0x8EA7D1C8\t0x2940A\n0x8EA7D1C9\t0x29439\n0x8EA7D1CA\t0x2943A\n0x8EA7D1CB\t0x2953D\n0x8EA7D1CC\t0x29545\n0x8EA7D1CD\t0x2953A\n0x8EA7D1CE\t0x29537\n0x8EA7D1CF\t0x2953E\n0x8EA7D1D0\t0x29542\n0x8EA7D1D1\t0x29787\n0x8EA7D1D2\t0x2978C\n0x8EA7D1D3\t0x29782\n0x8EA7D1D4\t0x2976B\n0x8EA7D1D5\t0x297A0\n0x8EA7D1D6\t0x2979A\n0x8EA7D1D7\t0x29790\n0x8EA7D1D8\t0x2978E\n0x8EA7D1D9\t0x297A1\n0x8EA7D1DA\t0x297BD\n0x8EA7D1DB\t0x297B2\n0x8EA7D1DC\t0x297B5\n0x8EA7D1DD\t0x297B7\n0x8EA7D1DE\t0x297AA\n0x8EA7D1DF\t0x297A2\n0x8EA7D1E0\t0x297A5\n0x8EA7D1E1\t0x297AE\n0x8EA7D1E2\t0x297AB\n0x8EA7D1E3\t0x297BC\n0x8EA7D1E4\t0x29832\n0x8EA7D1E5\t0x2985A\n0x8EA7D1E6\t0x29964\n0x8EA7D1E7\t0x2995C\n0x8EA7D1E8\t0x2994D\n0x8EA7D1E9\t0x2993F\n0x8EA7D1EA\t0x2993E\n0x8EA7D1EB\t0x29952\n0x8EA7D1EC\t0x29958\n0x8EA7D1ED\t0x29957\n0x8EA7D1EE\t0x2995E\n0x8EA7D1EF\t0x29953\n0x8EA7D1F0\t0x29954\n0x8EA7D1F1\t0x29956\n0x8EA7D1F2\t0x28F65\n0x8EA7D1F3\t0x29A84\n0x8EA7D1F4\t0x29A85\n0x8EA7D1F5\t0x29A86\n0x8EA7D1F6\t0x29B97\n0x8EA7D1F7\t0x29BA1\n0x8EA7D1F8\t0x29BA2\n0x8EA7D1F9\t0x4C0B\n0x8EA7D1FA\t0x2FA0A\n0x8EA7D1FB\t0x29BA3\n0x8EA7D1FC\t0x29BA6\n0x8EA7D1FD\t0x4C17\n0x8EA7D1FE\t0x29C15\n0x8EA7D2A1\t0x29C24\n0x8EA7D2A2\t0x29C4A\n0x8EA7D2A3\t0x29C49\n0x8EA7D2A4\t0x29C48\n0x8EA7D2A5\t0x29C4B\n0x8EA7D2A6\t0x29D0E\n0x8EA7D2A7\t0x29962\n0x8EA7D2A8\t0x29D0B\n0x8EA7D2A9\t0x29D0A\n0x8EA7D2AA\t0x29D08\n0x8EA7D2AB\t0x29D06\n0x8EA7D2AC\t0x29E43\n0x8EA7D2AD\t0x29E47\n0x8EA7D2AE\t0x29E3F\n0x8EA7D2AF\t0x29E46\n0x8EA7D2B0\t0x29E50\n0x8EA7D2B1\t0x4C6D\n0x8EA7D2B2\t0x29E4B\n0x8EA7D2B3\t0x4C70\n0x8EA7D2B4\t0x29E52\n0x8EA7D2B5\t0x2A0D7\n0x8EA7D2B6\t0x2A0BF\n0x8EA7D2B7\t0x2A0D8\n0x8EA7D2B8\t0x2A0E0\n0x8EA7D2B9\t0x2A0E7\n0x8EA7D2BA\t0x2A0B8\n0x8EA7D2BB\t0x2A0D5\n0x8EA7D2BC\t0x2A0EF\n0x8EA7D2BD\t0x2A0E6\n0x8EA7D2BE\t0x2A0E4\n0x8EA7D2BF\t0x2A0D4\n0x8EA7D2C0\t0x2A0D6\n0x8EA7D2C1\t0x2A0EA\n0x8EA7D2C2\t0x4CED\n0x8EA7D2C3\t0x2A0BB\n0x8EA7D2C4\t0x2A0E9\n0x8EA7D2C5\t0x2FA10\n0x8EA7D2C6\t0x2A26D\n0x8EA7D2C7\t0x2A270\n0x8EA7D2C8\t0x2A273\n0x8EA7D2C9\t0x2A272\n0x8EA7D2CA\t0x2A2D4\n0x8EA7D2CB\t0x2A2CE\n0x8EA7D2CC\t0x2A2D5\n0x8EA7D2CD\t0x2A35A\n0x8EA7D2CE\t0x2A358\n0x8EA7D2CF\t0x2A352\n0x8EA7D2D0\t0x2A350\n0x8EA7D2D1\t0x2A355\n0x8EA7D2D2\t0x2A34E\n0x8EA7D2D3\t0x2A34D\n0x8EA7D2D4\t0x2A3CB\n0x8EA7D2D5\t0x2A3CC\n0x8EA7D2D6\t0x2A3CD\n0x8EA7D2D7\t0x2A3D1\n0x8EA7D2D8\t0x2A458\n0x8EA7D2D9\t0x2A463\n0x8EA7D2DA\t0x2A45E\n0x8EA7D2DB\t0x2A454\n0x8EA7D2DC\t0x2A45B\n0x8EA7D2DD\t0x2A4E9\n0x8EA7D2DE\t0x2A4E7\n0x8EA7D2DF\t0x2A4E8\n0x8EA7D2E0\t0x2A51D\n0x8EA7D2E1\t0x2A567\n0x8EA7D2E2\t0x2A55A\n0x8EA7D2E3\t0x2A55C\n0x8EA7D2E4\t0x2A55B\n0x8EA7D2E5\t0x2A561\n0x8EA7D2E6\t0x2A5A1\n0x8EA7D2E7\t0x4D8D\n0x8EA7D2E8\t0x2A5A4\n0x8EA7D2E9\t0x2A5E9\n0x8EA7D2EA\t0x2A5EF\n0x8EA7D2EB\t0x2A5E5\n0x8EA7D2EC\t0x2A5F5\n0x8EA7D2ED\t0x2A5EB\n0x8EA7D2EE\t0x2A5ED\n0x8EA7D2EF\t0x2A696\n0x8EA7D2F0\t0x2A695\n0x8EA7D2F1\t0x2A6B3\n0x8EA7D2F2\t0x2A6B5\n0x8EA7D2F3\t0x2A6B1\n0x8EA7D2F4\t0x34A7\n0x8EA7D2F5\t0x2044D\n0x8EA7D2F6\t0x20624\n0x8EA7D2F7\t0x2082B\n0x8EA7D2F8\t0x209CF\n0x8EA7D2F9\t0x20AC9\n0x8EA7D2FA\t0x21136\n0x8EA7D2FB\t0x21131\n0x8EA7D2FC\t0x21154\n0x8EA7D2FD\t0x2113A\n0x8EA7D2FE\t0x21138\n0x8EA7D3A1\t0x21239\n0x8EA7D3A2\t0x21238\n0x8EA7D3A3\t0x214F4\n0x8EA7D3A4\t0x214F3\n0x8EA7D3A5\t0x214F6\n0x8EA7D3A6\t0x214FC\n0x8EA7D3A7\t0x214F5\n0x8EA7D3A8\t0x214F1\n0x8EA7D3A9\t0x2169C\n0x8EA7D3AA\t0x21918\n0x8EA7D3AB\t0x2191A\n0x8EA7D3AC\t0x21AFC\n0x8EA7D3AD\t0x21AFE\n0x8EA7D3AE\t0x21B03\n0x8EA7D3AF\t0x21B53\n0x8EA7D3B0\t0x21D2B\n0x8EA7D3B1\t0x21FC6\n0x8EA7D3B2\t0x21FC1\n0x8EA7D3B3\t0x2217B\n0x8EA7D3B4\t0x22306\n0x8EA7D3B5\t0x22449\n0x8EA7D3B6\t0x224B8\n0x8EA7D3B7\t0x225A3\n0x8EA7D3B8\t0x22952\n0x8EA7D3B9\t0x2294D\n0x8EA7D3BA\t0x2295F\n0x8EA7D3BB\t0x2295E\n0x8EA7D3BC\t0x22961\n0x8EA7D3BD\t0x22A23\n0x8EA7D3BE\t0x22E8C\n0x8EA7D3BF\t0x22E6F\n0x8EA7D3C0\t0x22E75\n0x8EA7D3C1\t0x22E74\n0x8EA7D3C2\t0x22E71\n0x8EA7D3C3\t0x22E70\n0x8EA7D3C4\t0x22E6C\n0x8EA7D3C5\t0x23126\n0x8EA7D3C6\t0x23308\n0x8EA7D3C7\t0x6707\n0x8EA7D3C8\t0x237F0\n0x8EA7D3C9\t0x237EF\n0x8EA7D3CA\t0x237FB\n0x8EA7D3CB\t0x23810\n0x8EA7D3CC\t0x2380C\n0x8EA7D3CD\t0x237F6\n0x8EA7D3CE\t0x237FE\n0x8EA7D3CF\t0x23A7C\n0x8EA7D3D0\t0x23AE1\n0x8EA7D3D1\t0x23C38\n0x8EA7D3D2\t0x23C6F\n0x8EA7D3D3\t0x24118\n0x8EA7D3D4\t0x24115\n0x8EA7D3D5\t0x2411C\n0x8EA7D3D6\t0x24110\n0x8EA7D3D7\t0x24135\n0x8EA7D3D8\t0x2F917\n0x8EA7D3D9\t0x24117\n0x8EA7D3DA\t0x2411D\n0x8EA7D3DB\t0x24126\n0x8EA7D3DC\t0x24128\n0x8EA7D3DD\t0x24129\n0x8EA7D3DE\t0x2412A\n0x8EA7D3DF\t0x2411A\n0x8EA7D3E0\t0x2F916\n0x8EA7D3E1\t0x22307\n0x8EA7D3E2\t0x244AB\n0x8EA7D3E3\t0x244AC\n0x8EA7D3E4\t0x244A1\n0x8EA7D3E5\t0x244AE\n0x8EA7D3E6\t0x244A3\n0x8EA7D3E7\t0x244A7\n0x8EA7D3E8\t0x24548\n0x8EA7D3E9\t0x24604\n0x8EA7D3EA\t0x246FD\n0x8EA7D3EB\t0x3E5A\n0x8EA7D3EC\t0x24708\n0x8EA7D3ED\t0x248D2\n0x8EA7D3EE\t0x24AC6\n0x8EA7D3EF\t0x24ABE\n0x8EA7D3F0\t0x24B1C\n0x8EA7D3F1\t0x24BA6\n0x8EA7D3F2\t0x24BA7\n0x8EA7D3F3\t0x24BAB\n0x8EA7D3F4\t0x24C00\n0x8EA7D3F5\t0x24CFB\n0x8EA7D3F6\t0x24CFC\n0x8EA7D3F7\t0x24CF9\n0x8EA7D3F8\t0x24D01\n0x8EA7D3F9\t0x24F06\n0x8EA7D3FA\t0x24F04\n0x8EA7D3FB\t0x2F93C\n0x8EA7D3FC\t0x25034\n0x8EA7D3FD\t0x25336\n0x8EA7D3FE\t0x25332\n0x8EA7D4A1\t0x25342\n0x8EA7D4A2\t0x2532D\n0x8EA7D4A3\t0x25335\n0x8EA7D4A4\t0x255D8\n0x8EA7D4A5\t0x25723\n0x8EA7D4A6\t0x25720\n0x8EA7D4A7\t0x25901\n0x8EA7D4A8\t0x25900\n0x8EA7D4A9\t0x25903\n0x8EA7D4AA\t0x2A6BC\n0x8EA7D4AB\t0x25A3C\n0x8EA7D4AC\t0x25A41\n0x8EA7D4AD\t0x25A35\n0x8EA7D4AE\t0x25AC9\n0x8EA7D4AF\t0x25D8E\n0x8EA7D4B0\t0x25D9E\n0x8EA7D4B1\t0x25D99\n0x8EA7D4B2\t0x25DB4\n0x8EA7D4B3\t0x25DAA\n0x8EA7D4B4\t0x25D9F\n0x8EA7D4B5\t0x25D96\n0x8EA7D4B6\t0x25D9D\n0x8EA7D4B7\t0x25DC3\n0x8EA7D4B8\t0x25D74\n0x8EA7D4B9\t0x25DAB\n0x8EA7D4BA\t0x42AF\n0x8EA7D4BB\t0x25F63\n0x8EA7D4BC\t0x25F5B\n0x8EA7D4BD\t0x25F5A\n0x8EA7D4BE\t0x261C5\n0x8EA7D4BF\t0x261C4\n0x8EA7D4C0\t0x261CF\n0x8EA7D4C1\t0x261C8\n0x8EA7D4C2\t0x261A4\n0x8EA7D4C3\t0x261BD\n0x8EA7D4C4\t0x261D3\n0x8EA7D4C5\t0x26260\n0x8EA7D4C6\t0x2633B\n0x8EA7D4C7\t0x263E3\n0x8EA7D4C8\t0x263E7\n0x8EA7D4C9\t0x264A8\n0x8EA7D4CA\t0x264AC\n0x8EA7D4CB\t0x264A9\n0x8EA7D4CC\t0x2652A\n0x8EA7D4CD\t0x26608\n0x8EA7D4CE\t0x26609\n0x8EA7D4CF\t0x268B9\n0x8EA7D4D0\t0x26AC1\n0x8EA7D4D1\t0x26AC2\n0x8EA7D4D2\t0x26AB8\n0x8EA7D4D3\t0x270E1\n0x8EA7D4D4\t0x270EB\n0x8EA7D4D5\t0x270E5\n0x8EA7D4D6\t0x270FA\n0x8EA7D4D7\t0x270E4\n0x8EA7D4D8\t0x2710B\n0x8EA7D4D9\t0x270D7\n0x8EA7D4DA\t0x270EF\n0x8EA7D4DB\t0x270E0\n0x8EA7D4DC\t0x270EC\n0x8EA7D4DD\t0x270FB\n0x8EA7D4DE\t0x2F9B0\n0x8EA7D4DF\t0x270D3\n0x8EA7D4E0\t0x270E6\n0x8EA7D4E1\t0x270FC\n0x8EA7D4E2\t0x270E3\n0x8EA7D4E3\t0x270CF\n0x8EA7D4E4\t0x270DA\n0x8EA7D4E5\t0x270DC\n0x8EA7D4E6\t0x270D2\n0x8EA7D4E7\t0x270A4\n0x8EA7D4E8\t0x456B\n0x8EA7D4E9\t0x27217\n0x8EA7D4EA\t0x27216\n0x8EA7D4EB\t0x274F2\n0x8EA7D4EC\t0x274FC\n0x8EA7D4ED\t0x27518\n0x8EA7D4EE\t0x274F6\n0x8EA7D4EF\t0x274FE\n0x8EA7D4F0\t0x274F3\n0x8EA7D4F1\t0x274F7\n0x8EA7D4F2\t0x27501\n0x8EA7D4F3\t0x274F9\n0x8EA7D4F4\t0x27506\n0x8EA7D4F5\t0x274F5\n0x8EA7D4F6\t0x27510\n0x8EA7D4F7\t0x274DF\n0x8EA7D4F8\t0x27503\n0x8EA7D4F9\t0x27508\n0x8EA7D4FA\t0x275D8\n0x8EA7D4FB\t0x27605\n0x8EA7D4FC\t0x27797\n0x8EA7D4FD\t0x277B3\n0x8EA7D4FE\t0x277AE\n0x8EA7D5A1\t0x277AF\n0x8EA7D5A2\t0x277A7\n0x8EA7D5A3\t0x277B1\n0x8EA7D5A4\t0x277A8\n0x8EA7D5A5\t0x277AC\n0x8EA7D5A6\t0x277AB\n0x8EA7D5A7\t0x27804\n0x8EA7D5A8\t0x2789A\n0x8EA7D5A9\t0x2794A\n0x8EA7D5AA\t0x27B42\n0x8EA7D5AB\t0x27B58\n0x8EA7D5AC\t0x27B4B\n0x8EA7D5AD\t0x27B45\n0x8EA7D5AE\t0x27B49\n0x8EA7D5AF\t0x27B4C\n0x8EA7D5B0\t0x27B59\n0x8EA7D5B1\t0x27B56\n0x8EA7D5B2\t0x471B\n0x8EA7D5B3\t0x27B46\n0x8EA7D5B4\t0x27B44\n0x8EA7D5B5\t0x27B5B\n0x8EA7D5B6\t0x27B69\n0x8EA7D5B7\t0x27C8E\n0x8EA7D5B8\t0x27C8F\n0x8EA7D5B9\t0x27D1E\n0x8EA7D5BA\t0x268BC\n0x8EA7D5BB\t0x27E2F\n0x8EA7D5BC\t0x27F9E\n0x8EA7D5BD\t0x27F9D\n0x8EA7D5BE\t0x27F9F\n0x8EA7D5BF\t0x27F9C\n0x8EA7D5C0\t0x281B4\n0x8EA7D5C1\t0x281AE\n0x8EA7D5C2\t0x281AB\n0x8EA7D5C3\t0x281B3\n0x8EA7D5C4\t0x281AF\n0x8EA7D5C5\t0x281C2\n0x8EA7D5C6\t0x28293\n0x8EA7D5C7\t0x28295\n0x8EA7D5C8\t0x28296\n0x8EA7D5C9\t0x28297\n0x8EA7D5CA\t0x283CF\n0x8EA7D5CB\t0x283CE\n0x8EA7D5CC\t0x283CB\n0x8EA7D5CD\t0x2844B\n0x8EA7D5CE\t0x28646\n0x8EA7D5CF\t0x28643\n0x8EA7D5D0\t0x28645\n0x8EA7D5D1\t0x28651\n0x8EA7D5D2\t0x287AE\n0x8EA7D5D3\t0x287AF\n0x8EA7D5D4\t0x287B0\n0x8EA7D5D5\t0x287B8\n0x8EA7D5D6\t0x287E2\n0x8EA7D5D7\t0x287E3\n0x8EA7D5D8\t0x287E6\n0x8EA7D5D9\t0x288ED\n0x8EA7D5DA\t0x288EA\n0x8EA7D5DB\t0x2893A\n0x8EA7D5DC\t0x28B59\n0x8EA7D5DD\t0x28B84\n0x8EA7D5DE\t0x28B5F\n0x8EA7D5DF\t0x28B7C\n0x8EA7D5E0\t0x28B5C\n0x8EA7D5E1\t0x28B58\n0x8EA7D5E2\t0x28B55\n0x8EA7D5E3\t0x28B5D\n0x8EA7D5E4\t0x28B7E\n0x8EA7D5E5\t0x28B80\n0x8EA7D5E6\t0x28B83\n0x8EA7D5E7\t0x28B57\n0x8EA7D5E8\t0x4963\n0x8EA7D5E9\t0x28B5E\n0x8EA7D5EA\t0x28CBA\n0x8EA7D5EB\t0x28DD5\n0x8EA7D5EC\t0x28F58\n0x8EA7D5ED\t0x28F68\n0x8EA7D5EE\t0x28F67\n0x8EA7D5EF\t0x2904A\n0x8EA7D5F0\t0x2904C\n0x8EA7D5F1\t0x29052\n0x8EA7D5F2\t0x29049\n0x8EA7D5F3\t0x2904E\n0x8EA7D5F4\t0x29047\n0x8EA7D5F5\t0x2904D\n0x8EA7D5F6\t0x2904B\n0x8EA7D5F7\t0x2904F\n0x8EA7D5F8\t0x2917E\n0x8EA7D5F9\t0x29187\n0x8EA7D5FA\t0x29183\n0x8EA7D5FB\t0x29189\n0x8EA7D5FC\t0x24ACA\n0x8EA7D5FD\t0x29186\n0x8EA7D5FE\t0x29188\n0x8EA7D6A1\t0x29247\n0x8EA7D6A2\t0x29242\n0x8EA7D6A3\t0x29249\n0x8EA7D6A4\t0x29248\n0x8EA7D6A5\t0x4A80\n0x8EA7D6A6\t0x4A84\n0x8EA7D6A7\t0x4A7F\n0x8EA7D6A8\t0x29344\n0x8EA7D6A9\t0x29351\n0x8EA7D6AA\t0x29346\n0x8EA7D6AB\t0x29347\n0x8EA7D6AC\t0x293E4\n0x8EA7D6AD\t0x2940F\n0x8EA7D6AE\t0x2943F\n0x8EA7D6AF\t0x2954B\n0x8EA7D6B0\t0x29557\n0x8EA7D6B1\t0x29552\n0x8EA7D6B2\t0x4AF1\n0x8EA7D6B3\t0x29551\n0x8EA7D6B4\t0x29558\n0x8EA7D6B5\t0x2955E\n0x8EA7D6B6\t0x29553\n0x8EA7D6B7\t0x2955D\n0x8EA7D6B8\t0x2954D\n0x8EA7D6B9\t0x2963C\n0x8EA7D6BA\t0x2963F\n0x8EA7D6BB\t0x29646\n0x8EA7D6BC\t0x2963E\n0x8EA7D6BD\t0x29644\n0x8EA7D6BE\t0x29645\n0x8EA7D6BF\t0x29641\n0x8EA7D6C0\t0x29638\n0x8EA7D6C1\t0x29642\n0x8EA7D6C2\t0x29643\n0x8EA7D6C3\t0x2967A\n0x8EA7D6C4\t0x297A3\n0x8EA7D6C5\t0x297BA\n0x8EA7D6C6\t0x297C0\n0x8EA7D6C7\t0x297C4\n0x8EA7D6C8\t0x297C6\n0x8EA7D6C9\t0x297CB\n0x8EA7D6CA\t0x29861\n0x8EA7D6CB\t0x2997A\n0x8EA7D6CC\t0x29973\n0x8EA7D6CD\t0x29972\n0x8EA7D6CE\t0x29974\n0x8EA7D6CF\t0x29980\n0x8EA7D6D0\t0x29981\n0x8EA7D6D1\t0x9A47\n0x8EA7D6D2\t0x29A95\n0x8EA7D6D3\t0x29A8F\n0x8EA7D6D4\t0x29A90\n0x8EA7D6D5\t0x29A92\n0x8EA7D6D6\t0x29A94\n0x8EA7D6D7\t0x29A8B\n0x8EA7D6D8\t0x29AE6\n0x8EA7D6D9\t0x29BB2\n0x8EA7D6DA\t0x29BB8\n0x8EA7D6DB\t0x29BBD\n0x8EA7D6DC\t0x29BBE\n0x8EA7D6DD\t0x29BCE\n0x8EA7D6DE\t0x29BBA\n0x8EA7D6DF\t0x29C16\n0x8EA7D6E0\t0x29C26\n0x8EA7D6E1\t0x29C25\n0x8EA7D6E2\t0x29C4C\n0x8EA7D6E3\t0x29C50\n0x8EA7D6E4\t0x29C4E\n0x8EA7D6E5\t0x29C51\n0x8EA7D6E6\t0x29C52\n0x8EA7D6E7\t0x29D14\n0x8EA7D6E8\t0x29D15\n0x8EA7D6E9\t0x29D1B\n0x8EA7D6EA\t0x29E82\n0x8EA7D6EB\t0x29E99\n0x8EA7D6EC\t0x29E9A\n0x8EA7D6ED\t0x29E7D\n0x8EA7D6EE\t0x29E85\n0x8EA7D6EF\t0x29E86\n0x8EA7D6F0\t0x29E9C\n0x8EA7D6F1\t0x29E79\n0x8EA7D6F2\t0x29E7B\n0x8EA7D6F3\t0x29E80\n0x8EA7D6F4\t0x29E83\n0x8EA7D6F5\t0x29E81\n0x8EA7D6F6\t0x2A11E\n0x8EA7D6F7\t0x2A11B\n0x8EA7D6F8\t0x2A12A\n0x8EA7D6F9\t0x2A0FB\n0x8EA7D6FA\t0x2A105\n0x8EA7D6FB\t0x2A120\n0x8EA7D6FC\t0x2A111\n0x8EA7D6FD\t0x2A104\n0x8EA7D6FE\t0x2A0FD\n0x8EA7D7A1\t0x2A103\n0x8EA7D7A2\t0x2A110\n0x8EA7D7A3\t0x2A118\n0x8EA7D7A4\t0x2A10A\n0x8EA7D7A5\t0x2A14E\n0x8EA7D7A6\t0x2A109\n0x8EA7D7A7\t0x2A107\n0x8EA7D7A8\t0x2A11C\n0x8EA7D7A9\t0x4D1C\n0x8EA7D7AA\t0x2A277\n0x8EA7D7AB\t0x2A276\n0x8EA7D7AC\t0x2A2D8\n0x8EA7D7AD\t0x2A2D9\n0x8EA7D7AE\t0x2A361\n0x8EA7D7AF\t0x2A35C\n0x8EA7D7B0\t0x2A35E\n0x8EA7D7B1\t0x2A360\n0x8EA7D7B2\t0x2A3AA\n0x8EA7D7B3\t0x2A3D6\n0x8EA7D7B4\t0x2A3D8\n0x8EA7D7B5\t0x2A409\n0x8EA7D7B6\t0x2A408\n0x8EA7D7B7\t0x2A46B\n0x8EA7D7B8\t0x2A465\n0x8EA7D7B9\t0x2A473\n0x8EA7D7BA\t0x2A474\n0x8EA7D7BB\t0x2A4ED\n0x8EA7D7BC\t0x2A524\n0x8EA7D7BD\t0x2A525\n0x8EA7D7BE\t0x2A56A\n0x8EA7D7BF\t0x2A5A7\n0x8EA7D7C0\t0x2A5A8\n0x8EA7D7C1\t0x2A60B\n0x8EA7D7C2\t0x2A5FA\n0x8EA7D7C3\t0x2A5F9\n0x8EA7D7C4\t0x2A5FF\n0x8EA7D7C5\t0x2A604\n0x8EA7D7C6\t0x2A5F6\n0x8EA7D7C7\t0x2A605\n0x8EA7D7C8\t0x2A699\n0x8EA7D7C9\t0x2A6AB\n0x8EA7D7CA\t0x2A6BD\n0x8EA7D7CB\t0x2A6B8\n0x8EA7D7CC\t0x34A8\n0x8EA7D7CD\t0x20464\n0x8EA7D7CE\t0x2045A\n0x8EA7D7CF\t0x20572\n0x8EA7D7D0\t0x2097A\n0x8EA7D7D1\t0x20B95\n0x8EA7D7D2\t0x2115F\n0x8EA7D7D3\t0x21161\n0x8EA7D7D4\t0x2115E\n0x8EA7D7D5\t0x2115A\n0x8EA7D7D6\t0x2115C\n0x8EA7D7D7\t0x2115D\n0x8EA7D7D8\t0x2116E\n0x8EA7D7D9\t0x21157\n0x8EA7D7DA\t0x21158\n0x8EA7D7DB\t0x21502\n0x8EA7D7DC\t0x2150B\n0x8EA7D7DD\t0x21508\n0x8EA7D7DE\t0x21551\n0x8EA7D7DF\t0x21925\n0x8EA7D7E0\t0x21928\n0x8EA7D7E1\t0x21923\n0x8EA7D7E2\t0x21921\n0x8EA7D7E3\t0x21924\n0x8EA7D7E4\t0x21929\n0x8EA7D7E5\t0x21B06\n0x8EA7D7E6\t0x21B0A\n0x8EA7D7E7\t0x21FCA\n0x8EA7D7E8\t0x21FCC\n0x8EA7D7E9\t0x21FCB\n0x8EA7D7EA\t0x21FCF\n0x8EA7D7EB\t0x2217F\n0x8EA7D7EC\t0x2217C\n0x8EA7D7ED\t0x221D6\n0x8EA7D7EE\t0x22309\n0x8EA7D7EF\t0x2230B\n0x8EA7D7F0\t0x22376\n0x8EA7D7F1\t0x2247D\n0x8EA7D7F2\t0x225A5\n0x8EA7D7F3\t0x2295B\n0x8EA7D7F4\t0x2295C\n0x8EA7D7F5\t0x2295D\n0x8EA7D7F6\t0x22965\n0x8EA7D7F7\t0x22E6D\n0x8EA7D7F8\t0x22E82\n0x8EA7D7F9\t0x22E83\n0x8EA7D7FA\t0x22E87\n0x8EA7D7FB\t0x22E95\n0x8EA7D7FC\t0x22E8A\n0x8EA7D7FD\t0x230D6\n0x8EA7D7FE\t0x23128\n0x8EA7D8A1\t0x2330D\n0x8EA7D8A2\t0x2382E\n0x8EA7D8A3\t0x2F8EE\n0x8EA7D8A4\t0x2382D\n0x8EA7D8A5\t0x23821\n0x8EA7D8A6\t0x23819\n0x8EA7D8A7\t0x2393B\n0x8EA7D8A8\t0x2393C\n0x8EA7D8A9\t0x2393A\n0x8EA7D8AA\t0x23A7E\n0x8EA7D8AB\t0x23C3B\n0x8EA7D8AC\t0x24147\n0x8EA7D8AD\t0x24139\n0x8EA7D8AE\t0x24134\n0x8EA7D8AF\t0x24136\n0x8EA7D8B0\t0x24146\n0x8EA7D8B1\t0x2413B\n0x8EA7D8B2\t0x24141\n0x8EA7D8B3\t0x24145\n0x8EA7D8B4\t0x244C0\n0x8EA7D8B5\t0x244C4\n0x8EA7D8B6\t0x244BA\n0x8EA7D8B7\t0x244BD\n0x8EA7D8B8\t0x244BE\n0x8EA7D8B9\t0x245A3\n0x8EA7D8BA\t0x2470C\n0x8EA7D8BB\t0x248D9\n0x8EA7D8BC\t0x24ACD\n0x8EA7D8BD\t0x24BAE\n0x8EA7D8BE\t0x24CFF\n0x8EA7D8BF\t0x24D24\n0x8EA7D8C0\t0x24FBB\n0x8EA7D8C1\t0x24FBC\n0x8EA7D8C2\t0x25036\n0x8EA7D8C3\t0x250D5\n0x8EA7D8C4\t0x250D3\n0x8EA7D8C5\t0x250D6\n0x8EA7D8C6\t0x2533C\n0x8EA7D8C7\t0x2533F\n0x8EA7D8C8\t0x255DE\n0x8EA7D8C9\t0x255E3\n0x8EA7D8CA\t0x25727\n0x8EA7D8CB\t0x25729\n0x8EA7D8CC\t0x418B\n0x8EA7D8CD\t0x25905\n0x8EA7D8CE\t0x25907\n0x8EA7D8CF\t0x2590C\n0x8EA7D8D0\t0x25AD0\n0x8EA7D8D1\t0x25DBE\n0x8EA7D8D2\t0x25DBC\n0x8EA7D8D3\t0x25DD0\n0x8EA7D8D4\t0x25DC2\n0x8EA7D8D5\t0x25DB5\n0x8EA7D8D6\t0x25DC9\n0x8EA7D8D7\t0x25F66\n0x8EA7D8D8\t0x432B\n0x8EA7D8D9\t0x261D5\n0x8EA7D8DA\t0x261E2\n0x8EA7D8DB\t0x261DC\n0x8EA7D8DC\t0x261E3\n0x8EA7D8DD\t0x261DA\n0x8EA7D8DE\t0x261C2\n0x8EA7D8DF\t0x261E8\n0x8EA7D8E0\t0x263E9\n0x8EA7D8E1\t0x264AF\n0x8EA7D8E2\t0x264AD\n0x8EA7D8E3\t0x264AE\n0x8EA7D8E4\t0x2660B\n0x8EA7D8E5\t0x268C1\n0x8EA7D8E6\t0x269B6\n0x8EA7D8E7\t0x269B9\n0x8EA7D8E8\t0x26AC0\n0x8EA7D8E9\t0x270A5\n0x8EA7D8EA\t0x27128\n0x8EA7D8EB\t0x27122\n0x8EA7D8EC\t0x27129\n0x8EA7D8ED\t0x27118\n0x8EA7D8EE\t0x2711F\n0x8EA7D8EF\t0x2711C\n0x8EA7D8F0\t0x27112\n0x8EA7D8F1\t0x2712A\n0x8EA7D8F2\t0x457A\n0x8EA7D8F3\t0x27121\n0x8EA7D8F4\t0x2712B\n0x8EA7D8F5\t0x27117\n0x8EA7D8F6\t0x270F0\n0x8EA7D8F7\t0x27116\n0x8EA7D8F8\t0x27123\n0x8EA7D8F9\t0x2752B\n0x8EA7D8FA\t0x27526\n0x8EA7D8FB\t0x2753D\n0x8EA7D8FC\t0x27522\n0x8EA7D8FD\t0x2753A\n0x8EA7D8FE\t0x27531\n0x8EA7D9A1\t0x27532\n0x8EA7D9A2\t0x27554\n0x8EA7D9A3\t0x27521\n0x8EA7D9A4\t0x27535\n0x8EA7D9A5\t0x4609\n0x8EA7D9A6\t0x2752E\n0x8EA7D9A7\t0x27530\n0x8EA7D9A8\t0x2752F\n0x8EA7D9A9\t0x27536\n0x8EA7D9AA\t0x275DA\n0x8EA7D9AB\t0x275D9\n0x8EA7D9AC\t0x277BB\n0x8EA7D9AD\t0x277BC\n0x8EA7D9AE\t0x277B7\n0x8EA7D9AF\t0x277C2\n0x8EA7D9B0\t0x277BD\n0x8EA7D9B1\t0x277B2\n0x8EA7D9B2\t0x466D\n0x8EA7D9B3\t0x25344\n0x8EA7D9B4\t0x25DD1\n0x8EA7D9B5\t0x27B52\n0x8EA7D9B6\t0x27B6B\n0x8EA7D9B7\t0x27B67\n0x8EA7D9B8\t0x471F\n0x8EA7D9B9\t0x27B61\n0x8EA7D9BA\t0x27B6C\n0x8EA7D9BB\t0x27B51\n0x8EA7D9BC\t0x27B74\n0x8EA7D9BD\t0x27B77\n0x8EA7D9BE\t0x27B6F\n0x8EA7D9BF\t0x27B6D\n0x8EA7D9C0\t0x27B68\n0x8EA7D9C1\t0x2F9D1\n0x8EA7D9C2\t0x27B84\n0x8EA7D9C3\t0x27C90\n0x8EA7D9C4\t0x27C92\n0x8EA7D9C5\t0x27C93\n0x8EA7D9C6\t0x27D1F\n0x8EA7D9C7\t0x27E31\n0x8EA7D9C8\t0x27E38\n0x8EA7D9C9\t0x27E39\n0x8EA7D9CA\t0x27E37\n0x8EA7D9CB\t0x27FAB\n0x8EA7D9CC\t0x281C3\n0x8EA7D9CD\t0x281C8\n0x8EA7D9CE\t0x281CB\n0x8EA7D9CF\t0x281CF\n0x8EA7D9D0\t0x28298\n0x8EA7D9D1\t0x283D4\n0x8EA7D9D2\t0x283D3\n0x8EA7D9D3\t0x283D8\n0x8EA7D9D4\t0x283D9\n0x8EA7D9D5\t0x283DD\n0x8EA7D9D6\t0x283D1\n0x8EA7D9D7\t0x283D6\n0x8EA7D9D8\t0x2843E\n0x8EA7D9D9\t0x28658\n0x8EA7D9DA\t0x28657\n0x8EA7D9DB\t0x28655\n0x8EA7D9DC\t0x287C4\n0x8EA7D9DD\t0x287E4\n0x8EA7D9DE\t0x288EE\n0x8EA7D9DF\t0x288EF\n0x8EA7D9E0\t0x288F3\n0x8EA7D9E1\t0x288F2\n0x8EA7D9E2\t0x288F0\n0x8EA7D9E3\t0x28BAB\n0x8EA7D9E4\t0x28B9A\n0x8EA7D9E5\t0x28BAF\n0x8EA7D9E6\t0x28B97\n0x8EA7D9E7\t0x496A\n0x8EA7D9E8\t0x496C\n0x8EA7D9E9\t0x28BBF\n0x8EA7D9EA\t0x28B94\n0x8EA7D9EB\t0x28B93\n0x8EA7D9EC\t0x28CBE\n0x8EA7D9ED\t0x28CBB\n0x8EA7D9EE\t0x28CBC\n0x8EA7D9EF\t0x28DD9\n0x8EA7D9F0\t0x28F6C\n0x8EA7D9F1\t0x29053\n0x8EA7D9F2\t0x29054\n0x8EA7D9F3\t0x2905B\n0x8EA7D9F4\t0x29058\n0x8EA7D9F5\t0x29056\n0x8EA7D9F6\t0x29057\n0x8EA7D9F7\t0x2919F\n0x8EA7D9F8\t0x29194\n0x8EA7D9F9\t0x29196\n0x8EA7D9FA\t0x29197\n0x8EA7D9FB\t0x2924A\n0x8EA7D9FC\t0x2924B\n0x8EA7D9FD\t0x29355\n0x8EA7D9FE\t0x2935A\n0x8EA7DAA1\t0x2935E\n0x8EA7DAA2\t0x2935F\n0x8EA7DAA3\t0x29359\n0x8EA7DAA4\t0x2935B\n0x8EA7DAA5\t0x29358\n0x8EA7DAA6\t0x29354\n0x8EA7DAA7\t0x293E8\n0x8EA7DAA8\t0x293EB\n0x8EA7DAA9\t0x293EC\n0x8EA7DAAA\t0x29413\n0x8EA7DAAB\t0x29566\n0x8EA7DAAC\t0x2956B\n0x8EA7DAAD\t0x29562\n0x8EA7DAAE\t0x29569\n0x8EA7DAAF\t0x29563\n0x8EA7DAB0\t0x2955F\n0x8EA7DAB1\t0x2954E\n0x8EA7DAB2\t0x29648\n0x8EA7DAB3\t0x2964A\n0x8EA7DAB4\t0x297E3\n0x8EA7DAB5\t0x297DB\n0x8EA7DAB6\t0x297D8\n0x8EA7DAB7\t0x297D6\n0x8EA7DAB8\t0x29986\n0x8EA7DAB9\t0x29990\n0x8EA7DABA\t0x29991\n0x8EA7DABB\t0x29988\n0x8EA7DABC\t0x29994\n0x8EA7DABD\t0x29983\n0x8EA7DABE\t0x4BB2\n0x8EA7DABF\t0x2999C\n0x8EA7DAC0\t0x2998D\n0x8EA7DAC1\t0x29985\n0x8EA7DAC2\t0x29A98\n0x8EA7DAC3\t0x29A9A\n0x8EA7DAC4\t0x29A9C\n0x8EA7DAC5\t0x29AE7\n0x8EA7DAC6\t0x29BC5\n0x8EA7DAC7\t0x29BD0\n0x8EA7DAC8\t0x29BD1\n0x8EA7DAC9\t0x29C19\n0x8EA7DACA\t0x29C27\n0x8EA7DACB\t0x4C1D\n0x8EA7DACC\t0x29C54\n0x8EA7DACD\t0x29D2D\n0x8EA7DACE\t0x29D22\n0x8EA7DACF\t0x4C2D\n0x8EA7DAD0\t0x29D1F\n0x8EA7DAD1\t0x29EBD\n0x8EA7DAD2\t0x29EAE\n0x8EA7DAD3\t0x29EBB\n0x8EA7DAD4\t0x29EAD\n0x8EA7DAD5\t0x29EBC\n0x8EA7DAD6\t0x29EB9\n0x8EA7DAD7\t0x29EB4\n0x8EA7DAD8\t0x29ECB\n0x8EA7DAD9\t0x29EB7\n0x8EA7DADA\t0x29EB3\n0x8EA7DADB\t0x29EBA\n0x8EA7DADC\t0x29EB6\n0x8EA7DADD\t0x29ECD\n0x8EA7DADE\t0x29EBE\n0x8EA7DADF\t0x29EC9\n0x8EA7DAE0\t0x2FA0B\n0x8EA7DAE1\t0x2A15F\n0x8EA7DAE2\t0x2A13B\n0x8EA7DAE3\t0x2A161\n0x8EA7DAE4\t0x2A15C\n0x8EA7DAE5\t0x2A18A\n0x8EA7DAE6\t0x2A15A\n0x8EA7DAE7\t0x2A14D\n0x8EA7DAE8\t0x2A146\n0x8EA7DAE9\t0x2A144\n0x8EA7DAEA\t0x2A13D\n0x8EA7DAEB\t0x2A140\n0x8EA7DAEC\t0x2A13C\n0x8EA7DAED\t0x2A18C\n0x8EA7DAEE\t0x2A141\n0x8EA7DAEF\t0x2A14C\n0x8EA7DAF0\t0x2A13E\n0x8EA7DAF1\t0x2A14A\n0x8EA7DAF2\t0x2A27C\n0x8EA7DAF3\t0x2A27A\n0x8EA7DAF4\t0x2A365\n0x8EA7DAF5\t0x2A36E\n0x8EA7DAF6\t0x2A369\n0x8EA7DAF7\t0x2A36A\n0x8EA7DAF8\t0x2A36F\n0x8EA7DAF9\t0x2A36C\n0x8EA7DAFA\t0x2A370\n0x8EA7DAFB\t0x2A368\n0x8EA7DAFC\t0x2A36B\n0x8EA7DAFD\t0x4D45\n0x8EA7DAFE\t0x2A3AC\n0x8EA7DBA1\t0x2A3DE\n0x8EA7DBA2\t0x2A3DD\n0x8EA7DBA3\t0x2A3DC\n0x8EA7DBA4\t0x244C5\n0x8EA7DBA5\t0x2A48C\n0x8EA7DBA6\t0x2A483\n0x8EA7DBA7\t0x2A482\n0x8EA7DBA8\t0x2A488\n0x8EA7DBA9\t0x2A485\n0x8EA7DBAA\t0x2A481\n0x8EA7DBAB\t0x2A4F5\n0x8EA7DBAC\t0x2A4EF\n0x8EA7DBAD\t0x2A4F4\n0x8EA7DBAE\t0x2A4F2\n0x8EA7DBAF\t0x2A4F6\n0x8EA7DBB0\t0x2A4F3\n0x8EA7DBB1\t0x2A4F0\n0x8EA7DBB2\t0x2A4F1\n0x8EA7DBB3\t0x2A52B\n0x8EA7DBB4\t0x2A527\n0x8EA7DBB5\t0x2A528\n0x8EA7DBB6\t0x2A56C\n0x8EA7DBB7\t0x2A5AE\n0x8EA7DBB8\t0x2A60E\n0x8EA7DBB9\t0x2A61B\n0x8EA7DBBA\t0x2A616\n0x8EA7DBBB\t0x2A61F\n0x8EA7DBBC\t0x2A622\n0x8EA7DBBD\t0x2A620\n0x8EA7DBBE\t0x2A621\n0x8EA7DBBF\t0x2A614\n0x8EA7DBC0\t0x2A613\n0x8EA7DBC1\t0x2A69D\n0x8EA7DBC2\t0x2A69C\n0x8EA7DBC3\t0x2A69E\n0x8EA7DBC4\t0x2A69F\n0x8EA7DBC5\t0x2046B\n0x8EA7DBC6\t0x208C8\n0x8EA7DBC7\t0x21178\n0x8EA7DBC8\t0x21176\n0x8EA7DBC9\t0x21170\n0x8EA7DBCA\t0x21171\n0x8EA7DBCB\t0x2150A\n0x8EA7DBCC\t0x2192C\n0x8EA7DBCD\t0x22311\n0x8EA7DBCE\t0x2247E\n0x8EA7DBCF\t0x22957\n0x8EA7DBD0\t0x22966\n0x8EA7DBD1\t0x22969\n0x8EA7DBD2\t0x22967\n0x8EA7DBD3\t0x22968\n0x8EA7DBD4\t0x22971\n0x8EA7DBD5\t0x2296F\n0x8EA7DBD6\t0x2A3AE\n0x8EA7DBD7\t0x22E8B\n0x8EA7DBD8\t0x22E96\n0x8EA7DBD9\t0x23035\n0x8EA7DBDA\t0x2303A\n0x8EA7DBDB\t0x2306B\n0x8EA7DBDC\t0x23316\n0x8EA7DBDD\t0x23843\n0x8EA7DBDE\t0x23846\n0x8EA7DBDF\t0x2383F\n0x8EA7DBE0\t0x2383B\n0x8EA7DBE1\t0x2383D\n0x8EA7DBE2\t0x239B1\n0x8EA7DBE3\t0x239B2\n0x8EA7DBE4\t0x23AE4\n0x8EA7DBE5\t0x23C40\n0x8EA7DBE6\t0x2415D\n0x8EA7DBE7\t0x24151\n0x8EA7DBE8\t0x2414D\n0x8EA7DBE9\t0x2414C\n0x8EA7DBEA\t0x2415B\n0x8EA7DBEB\t0x244D4\n0x8EA7DBEC\t0x244D2\n0x8EA7DBED\t0x244CA\n0x8EA7DBEE\t0x244C8\n0x8EA7DBEF\t0x244D0\n0x8EA7DBF0\t0x244C9\n0x8EA7DBF1\t0x24549\n0x8EA7DBF2\t0x245A4\n0x8EA7DBF3\t0x24712\n0x8EA7DBF4\t0x2470F\n0x8EA7DBF5\t0x24711\n0x8EA7DBF6\t0x248DB\n0x8EA7DBF7\t0x248DD\n0x8EA7DBF8\t0x248DC\n0x8EA7DBF9\t0x24AD4\n0x8EA7DBFA\t0x24B21\n0x8EA7DBFB\t0x24BB2\n0x8EA7DBFC\t0x24D04\n0x8EA7DBFD\t0x24D02\n0x8EA7DBFE\t0x24F11\n0x8EA7DCA1\t0x24F16\n0x8EA7DCA2\t0x24F10\n0x8EA7DCA3\t0x24FBE\n0x8EA7DCA4\t0x2721A\n0x8EA7DCA5\t0x2534C\n0x8EA7DCA6\t0x2534A\n0x8EA7DCA7\t0x255F2\n0x8EA7DCA8\t0x255F1\n0x8EA7DCA9\t0x2572A\n0x8EA7DCAA\t0x2572C\n0x8EA7DCAB\t0x2572F\n0x8EA7DCAC\t0x25731\n0x8EA7DCAD\t0x25911\n0x8EA7DCAE\t0x25912\n0x8EA7DCAF\t0x25A4B\n0x8EA7DCB0\t0x25DDB\n0x8EA7DCB1\t0x25DD6\n0x8EA7DCB2\t0x25DDD\n0x8EA7DCB3\t0x25DE2\n0x8EA7DCB4\t0x25DE4\n0x8EA7DCB5\t0x25DE0\n0x8EA7DCB6\t0x25DDF\n0x8EA7DCB7\t0x25DE3\n0x8EA7DCB8\t0x25F6E\n0x8EA7DCB9\t0x25F71\n0x8EA7DCBA\t0x261E9\n0x8EA7DCBB\t0x261EA\n0x8EA7DCBC\t0x26263\n0x8EA7DCBD\t0x263EB\n0x8EA7DCBE\t0x263EA\n0x8EA7DCBF\t0x268BD\n0x8EA7DCC0\t0x268BB\n0x8EA7DCC1\t0x268C6\n0x8EA7DCC2\t0x268CC\n0x8EA7DCC3\t0x268C8\n0x8EA7DCC4\t0x244CF\n0x8EA7DCC5\t0x268C9\n0x8EA7DCC6\t0x268CA\n0x8EA7DCC7\t0x268CF\n0x8EA7DCC8\t0x268D0\n0x8EA7DCC9\t0x269BA\n0x8EA7DCCA\t0x269FB\n0x8EA7DCCB\t0x26A03\n0x8EA7DCCC\t0x26AC4\n0x8EA7DCCD\t0x27149\n0x8EA7DCCE\t0x27153\n0x8EA7DCCF\t0x27136\n0x8EA7DCD0\t0x2714A\n0x8EA7DCD1\t0x27141\n0x8EA7DCD2\t0x2714E\n0x8EA7DCD3\t0x27119\n0x8EA7DCD4\t0x2714D\n0x8EA7DCD5\t0x27145\n0x8EA7DCD6\t0x2714C\n0x8EA7DCD7\t0x27147\n0x8EA7DCD8\t0x27148\n0x8EA7DCD9\t0x2714F\n0x8EA7DCDA\t0x27137\n0x8EA7DCDB\t0x27142\n0x8EA7DCDC\t0x2754A\n0x8EA7DCDD\t0x27546\n0x8EA7DCDE\t0x460A\n0x8EA7DCDF\t0x27549\n0x8EA7DCE0\t0x2754F\n0x8EA7DCE1\t0x27551\n0x8EA7DCE2\t0x2754C\n0x8EA7DCE3\t0x460C\n0x8EA7DCE4\t0x27606\n0x8EA7DCE5\t0x27951\n0x8EA7DCE6\t0x27B7A\n0x8EA7DCE7\t0x27B83\n0x8EA7DCE8\t0x27B7E\n0x8EA7DCE9\t0x27B7F\n0x8EA7DCEA\t0x27B80\n0x8EA7DCEB\t0x24BB5\n0x8EA7DCEC\t0x27C91\n0x8EA7DCED\t0x27C94\n0x8EA7DCEE\t0x27C95\n0x8EA7DCEF\t0x27D21\n0x8EA7DCF0\t0x27D20\n0x8EA7DCF1\t0x27E3D\n0x8EA7DCF2\t0x27E40\n0x8EA7DCF3\t0x27E46\n0x8EA7DCF4\t0x27E84\n0x8EA7DCF5\t0x27FAC\n0x8EA7DCF6\t0x27FAD\n0x8EA7DCF7\t0x482E\n0x8EA7DCF8\t0x281DA\n0x8EA7DCF9\t0x281D9\n0x8EA7DCFA\t0x283E2\n0x8EA7DCFB\t0x283E1\n0x8EA7DCFC\t0x283E3\n0x8EA7DCFD\t0x283E4\n0x8EA7DCFE\t0x283DE\n0x8EA7DDA1\t0x283DF\n0x8EA7DDA2\t0x28641\n0x8EA7DDA3\t0x28659\n0x8EA7DDA4\t0x2865C\n0x8EA7DDA5\t0x2865A\n0x8EA7DDA6\t0x287E8\n0x8EA7DDA7\t0x288F6\n0x8EA7DDA8\t0x288FC\n0x8EA7DDA9\t0x288F7\n0x8EA7DDAA\t0x288FA\n0x8EA7DDAB\t0x288F9\n0x8EA7DDAC\t0x28BC4\n0x8EA7DDAD\t0x28BBE\n0x8EA7DDAE\t0x28BD2\n0x8EA7DDAF\t0x28BBD\n0x8EA7DDB0\t0x28B95\n0x8EA7DDB1\t0x28BD4\n0x8EA7DDB2\t0x28DE4\n0x8EA7DDB3\t0x29061\n0x8EA7DDB4\t0x29062\n0x8EA7DDB5\t0x29063\n0x8EA7DDB6\t0x29064\n0x8EA7DDB7\t0x29060\n0x8EA7DDB8\t0x2905C\n0x8EA7DDB9\t0x2905D\n0x8EA7DDBA\t0x2905E\n0x8EA7DDBB\t0x291A5\n0x8EA7DDBC\t0x291A6\n0x8EA7DDBD\t0x2924C\n0x8EA7DDBE\t0x29368\n0x8EA7DDBF\t0x2936E\n0x8EA7DDC0\t0x29371\n0x8EA7DDC1\t0x2936B\n0x8EA7DDC2\t0x2936F\n0x8EA7DDC3\t0x293EE\n0x8EA7DDC4\t0x293F1\n0x8EA7DDC5\t0x293F0\n0x8EA7DDC6\t0x293EF\n0x8EA7DDC7\t0x29415\n0x8EA7DDC8\t0x29414\n0x8EA7DDC9\t0x28F6E\n0x8EA7DDCA\t0x29447\n0x8EA7DDCB\t0x2957C\n0x8EA7DDCC\t0x2957A\n0x8EA7DDCD\t0x29574\n0x8EA7DDCE\t0x29576\n0x8EA7DDCF\t0x2956E\n0x8EA7DDD0\t0x29578\n0x8EA7DDD1\t0x2956D\n0x8EA7DDD2\t0x2956C\n0x8EA7DDD3\t0x2964E\n0x8EA7DDD4\t0x297D7\n0x8EA7DDD5\t0x297EA\n0x8EA7DDD6\t0x297E5\n0x8EA7DDD7\t0x29864\n0x8EA7DDD8\t0x299B3\n0x8EA7DDD9\t0x299A3\n0x8EA7DDDA\t0x299A5\n0x8EA7DDDB\t0x299A7\n0x8EA7DDDC\t0x299A2\n0x8EA7DDDD\t0x2999F\n0x8EA7DDDE\t0x299A6\n0x8EA7DDDF\t0x2999E\n0x8EA7DDE0\t0x299A8\n0x8EA7DDE1\t0x29AA9\n0x8EA7DDE2\t0x29AA6\n0x8EA7DDE3\t0x29AAA\n0x8EA7DDE4\t0x29AAB\n0x8EA7DDE5\t0x29AA0\n0x8EA7DDE6\t0x29AA1\n0x8EA7DDE7\t0x29AA8\n0x8EA7DDE8\t0x29AE8\n0x8EA7DDE9\t0x29AE9\n0x8EA7DDEA\t0x29AEA\n0x8EA7DDEB\t0x29BE4\n0x8EA7DDEC\t0x29BDF\n0x8EA7DDED\t0x29BE0\n0x8EA7DDEE\t0x29C28\n0x8EA7DDEF\t0x29C5D\n0x8EA7DDF0\t0x29C5B\n0x8EA7DDF1\t0x29C56\n0x8EA7DDF2\t0x29C57\n0x8EA7DDF3\t0x29C5F\n0x8EA7DDF4\t0x29C62\n0x8EA7DDF5\t0x29EE1\n0x8EA7DDF6\t0x29EE3\n0x8EA7DDF7\t0x29EDE\n0x8EA7DDF8\t0x29ED9\n0x8EA7DDF9\t0x29EE8\n0x8EA7DDFA\t0x29EF2\n0x8EA7DDFB\t0x29EF6\n0x8EA7DDFC\t0x29EE6\n0x8EA7DDFD\t0x29EF4\n0x8EA7DDFE\t0x29EF5\n0x8EA7DEA1\t0x29EE5\n0x8EA7DEA2\t0x29EE2\n0x8EA7DEA3\t0x4C8D\n0x8EA7DEA4\t0x2A196\n0x8EA7DEA5\t0x2A1AA\n0x8EA7DEA6\t0x2A197\n0x8EA7DEA7\t0x2A170\n0x8EA7DEA8\t0x2A1A1\n0x8EA7DEA9\t0x2A19D\n0x8EA7DEAA\t0x2A1A9\n0x8EA7DEAB\t0x2A16F\n0x8EA7DEAC\t0x2A17E\n0x8EA7DEAD\t0x2A194\n0x8EA7DEAE\t0x2A19A\n0x8EA7DEAF\t0x2A173\n0x8EA7DEB0\t0x2A187\n0x8EA7DEB1\t0x2A171\n0x8EA7DEB2\t0x2A177\n0x8EA7DEB3\t0x2A188\n0x8EA7DEB4\t0x2A18D\n0x8EA7DEB5\t0x2A185\n0x8EA7DEB6\t0x2A178\n0x8EA7DEB7\t0x2A1AD\n0x8EA7DEB8\t0x2A280\n0x8EA7DEB9\t0x2A281\n0x8EA7DEBA\t0x2A2E5\n0x8EA7DEBB\t0x2A2E7\n0x8EA7DEBC\t0x2A37C\n0x8EA7DEBD\t0x2A3AF\n0x8EA7DEBE\t0x2A3E1\n0x8EA7DEBF\t0x2A496\n0x8EA7DEC0\t0x2A4A3\n0x8EA7DEC1\t0x2A490\n0x8EA7DEC2\t0x2A4F8\n0x8EA7DEC3\t0x2A52E\n0x8EA7DEC4\t0x2A575\n0x8EA7DEC5\t0x2A57E\n0x8EA7DEC6\t0x2A57D\n0x8EA7DEC7\t0x2A57B\n0x8EA7DEC8\t0x2A578\n0x8EA7DEC9\t0x2A5B0\n0x8EA7DECA\t0x2A634\n0x8EA7DECB\t0x2A636\n0x8EA7DECC\t0x2A630\n0x8EA7DECD\t0x2FA1D\n0x8EA7DECE\t0x2A62E\n0x8EA7DECF\t0x2A637\n0x8EA7DED0\t0x20ACE\n0x8EA7DED1\t0x20B97\n0x8EA7DED2\t0x20B98\n0x8EA7DED3\t0x2117C\n0x8EA7DED4\t0x2117E\n0x8EA7DED5\t0x2117D\n0x8EA7DED6\t0x2117F\n0x8EA7DED7\t0x2150F\n0x8EA7DED8\t0x216A4\n0x8EA7DED9\t0x21931\n0x8EA7DEDA\t0x2192E\n0x8EA7DEDB\t0x2192F\n0x8EA7DEDC\t0x21932\n0x8EA7DEDD\t0x21D2C\n0x8EA7DEDE\t0x21FD4\n0x8EA7DEDF\t0x21FDC\n0x8EA7DEE0\t0x21FD8\n0x8EA7DEE1\t0x2200E\n0x8EA7DEE2\t0x22183\n0x8EA7DEE3\t0x22184\n0x8EA7DEE4\t0x22312\n0x8EA7DEE5\t0x22972\n0x8EA7DEE6\t0x2297C\n0x8EA7DEE7\t0x2297E\n0x8EA7DEE8\t0x22EA6\n0x8EA7DEE9\t0x22EA0\n0x8EA7DEEA\t0x22E9E\n0x8EA7DEEB\t0x22EA2\n0x8EA7DEEC\t0x2312A\n0x8EA7DEED\t0x23318\n0x8EA7DEEE\t0x2384D\n0x8EA7DEEF\t0x23858\n0x8EA7DEF0\t0x2385B\n0x8EA7DEF1\t0x25914\n0x8EA7DEF2\t0x2F8F2\n0x8EA7DEF3\t0x23AE6\n0x8EA7DEF4\t0x24164\n0x8EA7DEF5\t0x24168\n0x8EA7DEF6\t0x24160\n0x8EA7DEF7\t0x24162\n0x8EA7DEF8\t0x244D7\n0x8EA7DEF9\t0x2454B\n0x8EA7DEFA\t0x248E0\n0x8EA7DEFB\t0x24B22\n0x8EA7DEFC\t0x24D05\n0x8EA7DEFD\t0x24F19\n0x8EA7DEFE\t0x24F1A\n0x8EA7DFA1\t0x24FC3\n0x8EA7DFA2\t0x250D8\n0x8EA7DFA3\t0x250DC\n0x8EA7DFA4\t0x2534F\n0x8EA7DFA5\t0x255F7\n0x8EA7DFA6\t0x255F4\n0x8EA7DFA7\t0x255F8\n0x8EA7DFA8\t0x25913\n0x8EA7DFA9\t0x25A50\n0x8EA7DFAA\t0x25DF0\n0x8EA7DFAB\t0x25DE9\n0x8EA7DFAC\t0x25DEF\n0x8EA7DFAD\t0x25DED\n0x8EA7DFAE\t0x25DEA\n0x8EA7DFAF\t0x25DF8\n0x8EA7DFB0\t0x25E05\n0x8EA7DFB1\t0x25DF2\n0x8EA7DFB2\t0x25F72\n0x8EA7DFB3\t0x4331\n0x8EA7DFB4\t0x261F9\n0x8EA7DFB5\t0x261F3\n0x8EA7DFB6\t0x261F6\n0x8EA7DFB7\t0x261F2\n0x8EA7DFB8\t0x261F7\n0x8EA7DFB9\t0x26266\n0x8EA7DFBA\t0x26265\n0x8EA7DFBB\t0x26340\n0x8EA7DFBC\t0x2F977\n0x8EA7DFBD\t0x268D1\n0x8EA7DFBE\t0x268D3\n0x8EA7DFBF\t0x26A04\n0x8EA7DFC0\t0x27159\n0x8EA7DFC1\t0x27160\n0x8EA7DFC2\t0x2715B\n0x8EA7DFC3\t0x2715D\n0x8EA7DFC4\t0x2715E\n0x8EA7DFC5\t0x27169\n0x8EA7DFC6\t0x2715C\n0x8EA7DFC7\t0x27161\n0x8EA7DFC8\t0x2716A\n0x8EA7DFC9\t0x2715F\n0x8EA7DFCA\t0x2754E\n0x8EA7DFCB\t0x2755C\n0x8EA7DFCC\t0x27560\n0x8EA7DFCD\t0x27563\n0x8EA7DFCE\t0x275DB\n0x8EA7DFCF\t0x277CA\n0x8EA7DFD0\t0x277C9\n0x8EA7DFD1\t0x277C8\n0x8EA7DFD2\t0x278A5\n0x8EA7DFD3\t0x278A3\n0x8EA7DFD4\t0x27B8E\n0x8EA7DFD5\t0x27B87\n0x8EA7DFD6\t0x27B89\n0x8EA7DFD7\t0x27B85\n0x8EA7DFD8\t0x27B86\n0x8EA7DFD9\t0x27B8F\n0x8EA7DFDA\t0x27B8A\n0x8EA7DFDB\t0x27B90\n0x8EA7DFDC\t0x27C98\n0x8EA7DFDD\t0x27C9B\n0x8EA7DFDE\t0x27E47\n0x8EA7DFDF\t0x27E49\n0x8EA7DFE0\t0x27E48\n0x8EA7DFE1\t0x281E5\n0x8EA7DFE2\t0x281EA\n0x8EA7DFE3\t0x281ED\n0x8EA7DFE4\t0x283F0\n0x8EA7DFE5\t0x283EF\n0x8EA7DFE6\t0x283F2\n0x8EA7DFE7\t0x283EC\n0x8EA7DFE8\t0x28440\n0x8EA7DFE9\t0x28660\n0x8EA7DFEA\t0x2865F\n0x8EA7DFEB\t0x287EB\n0x8EA7DFEC\t0x287EC\n0x8EA7DFED\t0x28900\n0x8EA7DFEE\t0x28901\n0x8EA7DFEF\t0x28BE2\n0x8EA7DFF0\t0x28BDF\n0x8EA7DFF1\t0x28BE0\n0x8EA7DFF2\t0x28BE1\n0x8EA7DFF3\t0x28BE3\n0x8EA7DFF4\t0x28CC3\n0x8EA7DFF5\t0x28DEB\n0x8EA7DFF6\t0x28DEA\n0x8EA7DFF7\t0x28F61\n0x8EA7DFF8\t0x28F71\n0x8EA7DFF9\t0x2906B\n0x8EA7DFFA\t0x29068\n0x8EA7DFFB\t0x29069\n0x8EA7DFFC\t0x29067\n0x8EA7DFFD\t0x291B0\n0x8EA7DFFE\t0x291B1\n0x8EA7E0A1\t0x291B2\n0x8EA7E0A2\t0x29251\n0x8EA7E0A3\t0x29374\n0x8EA7E0A4\t0x2957F\n0x8EA7E0A5\t0x29584\n0x8EA7E0A6\t0x29653\n0x8EA7E0A7\t0x29654\n0x8EA7E0A8\t0x297F0\n0x8EA7E0A9\t0x297F4\n0x8EA7E0AA\t0x297F1\n0x8EA7E0AB\t0x29837\n0x8EA7E0AC\t0x299BF\n0x8EA7E0AD\t0x4BBC\n0x8EA7E0AE\t0x4BBB\n0x8EA7E0AF\t0x299BD\n0x8EA7E0B0\t0x299BE\n0x8EA7E0B1\t0x299B7\n0x8EA7E0B2\t0x299C0\n0x8EA7E0B3\t0x299BA\n0x8EA7E0B4\t0x299B8\n0x8EA7E0B5\t0x299BC\n0x8EA7E0B6\t0x299BB\n0x8EA7E0B7\t0x29AEB\n0x8EA7E0B8\t0x29BE7\n0x8EA7E0B9\t0x29C1D\n0x8EA7E0BA\t0x29C1C\n0x8EA7E0BB\t0x29C63\n0x8EA7E0BC\t0x2244B\n0x8EA7E0BD\t0x29D38\n0x8EA7E0BE\t0x29D36\n0x8EA7E0BF\t0x29D34\n0x8EA7E0C0\t0x29D37\n0x8EA7E0C1\t0x29F06\n0x8EA7E0C2\t0x29F1C\n0x8EA7E0C3\t0x29F02\n0x8EA7E0C4\t0x29F1D\n0x8EA7E0C5\t0x29F1E\n0x8EA7E0C6\t0x29EE0\n0x8EA7E0C7\t0x29F11\n0x8EA7E0C8\t0x29F18\n0x8EA7E0C9\t0x29F21\n0x8EA7E0CA\t0x29F20\n0x8EA7E0CB\t0x29F10\n0x8EA7E0CC\t0x2A1BD\n0x8EA7E0CD\t0x2A1AE\n0x8EA7E0CE\t0x2A1B5\n0x8EA7E0CF\t0x2A1B8\n0x8EA7E0D0\t0x2A1B9\n0x8EA7E0D1\t0x2A1BE\n0x8EA7E0D2\t0x2A1C4\n0x8EA7E0D3\t0x2A1BC\n0x8EA7E0D4\t0x2A1BA\n0x8EA7E0D5\t0x2A283\n0x8EA7E0D6\t0x2A2EA\n0x8EA7E0D7\t0x2A2EC\n0x8EA7E0D8\t0x2A37E\n0x8EA7E0D9\t0x2A37B\n0x8EA7E0DA\t0x2A3E5\n0x8EA7E0DB\t0x2A4A7\n0x8EA7E0DC\t0x2A49E\n0x8EA7E0DD\t0x2A49A\n0x8EA7E0DE\t0x2A52F\n0x8EA7E0DF\t0x2A531\n0x8EA7E0E0\t0x2A583\n0x8EA7E0E1\t0x2A5B5\n0x8EA7E0E2\t0x2A646\n0x8EA7E0E3\t0x2A641\n0x8EA7E0E4\t0x2A643\n0x8EA7E0E5\t0x2A63D\n0x8EA7E0E6\t0x2A642\n0x8EA7E0E7\t0x2A63B\n0x8EA7E0E8\t0x2A647\n0x8EA7E0E9\t0x2096B\n0x8EA7E0EA\t0x209D0\n0x8EA7E0EB\t0x2118E\n0x8EA7E0EC\t0x21B11\n0x8EA7E0ED\t0x2F871\n0x8EA7E0EE\t0x2F889\n0x8EA7E0EF\t0x2244C\n0x8EA7E0F0\t0x2312B\n0x8EA7E0F1\t0x2384F\n0x8EA7E0F2\t0x2385E\n0x8EA7E0F3\t0x23863\n0x8EA7E0F4\t0x2386B\n0x8EA7E0F5\t0x2393F\n0x8EA7E0F6\t0x23AE9\n0x8EA7E0F7\t0x2416D\n0x8EA7E0F8\t0x2416B\n0x8EA7E0F9\t0x2416A\n0x8EA7E0FA\t0x29F2A\n0x8EA7E0FB\t0x244E0\n0x8EA7E0FC\t0x244DD\n0x8EA7E0FD\t0x244E1\n0x8EA7E0FE\t0x244DE\n0x8EA7E1A1\t0x244DC\n0x8EA7E1A2\t0x2454D\n0x8EA7E1A3\t0x24716\n0x8EA7E1A4\t0x248E3\n0x8EA7E1A5\t0x24AE5\n0x8EA7E1A6\t0x24AE4\n0x8EA7E1A7\t0x24F1D\n0x8EA7E1A8\t0x2574B\n0x8EA7E1A9\t0x2A6C1\n0x8EA7E1AA\t0x25A4E\n0x8EA7E1AB\t0x25AD6\n0x8EA7E1AC\t0x25DFD\n0x8EA7E1AD\t0x25E07\n0x8EA7E1AE\t0x25DFE\n0x8EA7E1AF\t0x25E03\n0x8EA7E1B0\t0x25E0B\n0x8EA7E1B1\t0x25DFF\n0x8EA7E1B2\t0x25F7A\n0x8EA7E1B3\t0x25F77\n0x8EA7E1B4\t0x261FB\n0x8EA7E1B5\t0x26343\n0x8EA7E1B6\t0x263ED\n0x8EA7E1B7\t0x269BC\n0x8EA7E1B8\t0x244DF\n0x8EA7E1B9\t0x26A05\n0x8EA7E1BA\t0x26AC6\n0x8EA7E1BB\t0x26AC5\n0x8EA7E1BC\t0x27174\n0x8EA7E1BD\t0x27173\n0x8EA7E1BE\t0x27172\n0x8EA7E1BF\t0x27178\n0x8EA7E1C0\t0x27573\n0x8EA7E1C1\t0x2757A\n0x8EA7E1C2\t0x24F1C\n0x8EA7E1C3\t0x27576\n0x8EA7E1C4\t0x27575\n0x8EA7E1C5\t0x27577\n0x8EA7E1C6\t0x277CF\n0x8EA7E1C7\t0x277CE\n0x8EA7E1C8\t0x277CD\n0x8EA7E1C9\t0x278A8\n0x8EA7E1CA\t0x27B98\n0x8EA7E1CB\t0x27B92\n0x8EA7E1CC\t0x27B94\n0x8EA7E1CD\t0x27C9A\n0x8EA7E1CE\t0x27FB4\n0x8EA7E1CF\t0x281EB\n0x8EA7E1D0\t0x281F4\n0x8EA7E1D1\t0x281F3\n0x8EA7E1D2\t0x281EE\n0x8EA7E1D3\t0x281F2\n0x8EA7E1D4\t0x281F0\n0x8EA7E1D5\t0x28664\n0x8EA7E1D6\t0x28C05\n0x8EA7E1D7\t0x28BFB\n0x8EA7E1D8\t0x28BFC\n0x8EA7E1D9\t0x28DF3\n0x8EA7E1DA\t0x2906C\n0x8EA7E1DB\t0x291BA\n0x8EA7E1DC\t0x29379\n0x8EA7E1DD\t0x2937E\n0x8EA7E1DE\t0x29378\n0x8EA7E1DF\t0x293F4\n0x8EA7E1E0\t0x29416\n0x8EA7E1E1\t0x29657\n0x8EA7E1E2\t0x299C8\n0x8EA7E1E3\t0x299C3\n0x8EA7E1E4\t0x299CE\n0x8EA7E1E5\t0x29AB3\n0x8EA7E1E6\t0x29AED\n0x8EA7E1E7\t0x29AEE\n0x8EA7E1E8\t0x29BF1\n0x8EA7E1E9\t0x29BF8\n0x8EA7E1EA\t0x4C14\n0x8EA7E1EB\t0x29C64\n0x8EA7E1EC\t0x29C65\n0x8EA7E1ED\t0x29F35\n0x8EA7E1EE\t0x29F29\n0x8EA7E1EF\t0x29F2C\n0x8EA7E1F0\t0x29F31\n0x8EA7E1F1\t0x29F2B\n0x8EA7E1F2\t0x29F2E\n0x8EA7E1F3\t0x29F25\n0x8EA7E1F4\t0x2A1DA\n0x8EA7E1F5\t0x2A1E0\n0x8EA7E1F6\t0x2A1D4\n0x8EA7E1F7\t0x2A1E1\n0x8EA7E1F8\t0x2A1DD\n0x8EA7E1F9\t0x2A3E7\n0x8EA7E1FA\t0x2A412\n0x8EA7E1FB\t0x2A4AE\n0x8EA7E1FC\t0x2A4AF\n0x8EA7E1FD\t0x2A586\n0x8EA7E1FE\t0x2A585\n0x8EA7E2A1\t0x2A5D1\n0x8EA7E2A2\t0x2A658\n0x8EA7E2A3\t0x2A63F\n0x8EA7E2A4\t0x2A652\n0x8EA7E2A5\t0x2A64B\n0x8EA7E2A6\t0x2A653\n0x8EA7E2A7\t0x2A650\n0x8EA7E2A8\t0x2A656\n0x8EA7E2A9\t0x2A657\n0x8EA7E2AA\t0x2A6CD\n0x8EA7E2AB\t0x2A6CB\n0x8EA7E2AC\t0x20831\n0x8EA7E2AD\t0x20830\n0x8EA7E2AE\t0x209D1\n0x8EA7E2AF\t0x361C\n0x8EA7E2B0\t0x21192\n0x8EA7E2B1\t0x21190\n0x8EA7E2B2\t0x2118F\n0x8EA7E2B3\t0x21193\n0x8EA7E2B4\t0x21191\n0x8EA7E2B5\t0x3772\n0x8EA7E2B6\t0x22313\n0x8EA7E2B7\t0x2247F\n0x8EA7E2B8\t0x22EAC\n0x8EA7E2B9\t0x24170\n0x8EA7E2BA\t0x244E5\n0x8EA7E2BB\t0x24B23\n0x8EA7E2BC\t0x24B24\n0x8EA7E2BD\t0x24D08\n0x8EA7E2BE\t0x24D07\n0x8EA7E2BF\t0x24F1F\n0x8EA7E2C0\t0x24F20\n0x8EA7E2C1\t0x24F21\n0x8EA7E2C2\t0x250E1\n0x8EA7E2C3\t0x25354\n0x8EA7E2C4\t0x25357\n0x8EA7E2C5\t0x25355\n0x8EA7E2C6\t0x255FA\n0x8EA7E2C7\t0x25738\n0x8EA7E2C8\t0x27186\n0x8EA7E2C9\t0x25737\n0x8EA7E2CA\t0x25A53\n0x8EA7E2CB\t0x25F7E\n0x8EA7E2CC\t0x25F7B\n0x8EA7E2CD\t0x2F971\n0x8EA7E2CE\t0x261FD\n0x8EA7E2CF\t0x261FC\n0x8EA7E2D0\t0x26346\n0x8EA7E2D1\t0x26932\n0x8EA7E2D2\t0x26AC7\n0x8EA7E2D3\t0x27171\n0x8EA7E2D4\t0x27183\n0x8EA7E2D5\t0x2716F\n0x8EA7E2D6\t0x2717E\n0x8EA7E2D7\t0x2717D\n0x8EA7E2D8\t0x27181\n0x8EA7E2D9\t0x2717C\n0x8EA7E2DA\t0x2758A\n0x8EA7E2DB\t0x2757E\n0x8EA7E2DC\t0x27580\n0x8EA7E2DD\t0x2757D\n0x8EA7E2DE\t0x2757F\n0x8EA7E2DF\t0x27582\n0x8EA7E2E0\t0x277D4\n0x8EA7E2E1\t0x277D0\n0x8EA7E2E2\t0x277D2\n0x8EA7E2E3\t0x27955\n0x8EA7E2E4\t0x27B9B\n0x8EA7E2E5\t0x27B9A\n0x8EA7E2E6\t0x27E4E\n0x8EA7E2E7\t0x281F1\n0x8EA7E2E8\t0x283F8\n0x8EA7E2E9\t0x283FD\n0x8EA7E2EA\t0x2865E\n0x8EA7E2EB\t0x28666\n0x8EA7E2EC\t0x28905\n0x8EA7E2ED\t0x28C0A\n0x8EA7E2EE\t0x28C0B\n0x8EA7E2EF\t0x28C0E\n0x8EA7E2F0\t0x28C0D\n0x8EA7E2F1\t0x28C11\n0x8EA7E2F2\t0x28C09\n0x8EA7E2F3\t0x28C10\n0x8EA7E2F4\t0x28C0C\n0x8EA7E2F5\t0x28C12\n0x8EA7E2F6\t0x28CC4\n0x8EA7E2F7\t0x28DF7\n0x8EA7E2F8\t0x28DF8\n0x8EA7E2F9\t0x28F6A\n0x8EA7E2FA\t0x28F6B\n0x8EA7E2FB\t0x291C0\n0x8EA7E2FC\t0x291C2\n0x8EA7E2FD\t0x29385\n0x8EA7E2FE\t0x29380\n0x8EA7E3A1\t0x29384\n0x8EA7E3A2\t0x29381\n0x8EA7E3A3\t0x291C4\n0x8EA7E3A4\t0x2958B\n0x8EA7E3A5\t0x2958D\n0x8EA7E3A6\t0x2958E\n0x8EA7E3A7\t0x29AB7\n0x8EA7E3A8\t0x29AB9\n0x8EA7E3A9\t0x29AEF\n0x8EA7E3AA\t0x29BFB\n0x8EA7E3AB\t0x29BFF\n0x8EA7E3AC\t0x29C67\n0x8EA7E3AD\t0x29C68\n0x8EA7E3AE\t0x29C69\n0x8EA7E3AF\t0x29D3F\n0x8EA7E3B0\t0x29F3C\n0x8EA7E3B1\t0x29F4C\n0x8EA7E3B2\t0x29F3D\n0x8EA7E3B3\t0x29F3E\n0x8EA7E3B4\t0x29F3F\n0x8EA7E3B5\t0x29F3B\n0x8EA7E3B6\t0x2A1FF\n0x8EA7E3B7\t0x4D0E\n0x8EA7E3B8\t0x2A1F6\n0x8EA7E3B9\t0x2A1EE\n0x8EA7E3BA\t0x2A1FC\n0x8EA7E3BB\t0x2A1F8\n0x8EA7E3BC\t0x2A201\n0x8EA7E3BD\t0x2A1FA\n0x8EA7E3BE\t0x2A288\n0x8EA7E3BF\t0x2A380\n0x8EA7E3C0\t0x2A411\n0x8EA7E3C1\t0x2A4FE\n0x8EA7E3C2\t0x2A500\n0x8EA7E3C3\t0x2A535\n0x8EA7E3C4\t0x2503C\n0x8EA7E3C5\t0x2A5BD\n0x8EA7E3C6\t0x2A5BB\n0x8EA7E3C7\t0x2A65C\n0x8EA7E3C8\t0x2A65A\n0x8EA7E3C9\t0x2A6D1\n0x8EA7E3CA\t0x2A6D0\n0x8EA7E3CB\t0x20A0B\n0x8EA7E3CC\t0x23873\n0x8EA7E3CD\t0x21939\n0x8EA7E3CE\t0x21B1A\n0x8EA7E3CF\t0x21FE3\n0x8EA7E3D0\t0x22187\n0x8EA7E3D1\t0x22377\n0x8EA7E3D2\t0x22378\n0x8EA7E3D3\t0x22EB1\n0x8EA7E3D4\t0x2386A\n0x8EA7E3D5\t0x23874\n0x8EA7E3D6\t0x23AEB\n0x8EA7E3D7\t0x2417B\n0x8EA7E3D8\t0x245A5\n0x8EA7E3D9\t0x248E4\n0x8EA7E3DA\t0x24D0B\n0x8EA7E3DB\t0x24D0E\n0x8EA7E3DC\t0x24D0C\n0x8EA7E3DD\t0x25739\n0x8EA7E3DE\t0x25E10\n0x8EA7E3DF\t0x25E11\n0x8EA7E3E0\t0x25E16\n0x8EA7E3E1\t0x25F81\n0x8EA7E3E2\t0x25F80\n0x8EA7E3E3\t0x261FE\n0x8EA7E3E4\t0x26201\n0x8EA7E3E5\t0x26200\n0x8EA7E3E6\t0x26347\n0x8EA7E3E7\t0x263EF\n0x8EA7E3E8\t0x27188\n0x8EA7E3E9\t0x2758B\n0x8EA7E3EA\t0x2758D\n0x8EA7E3EB\t0x27587\n0x8EA7E3EC\t0x27585\n0x8EA7E3ED\t0x2758F\n0x8EA7E3EE\t0x27584\n0x8EA7E3EF\t0x27588\n0x8EA7E3F0\t0x2758E\n0x8EA7E3F1\t0x2758C\n0x8EA7E3F2\t0x277D7\n0x8EA7E3F3\t0x277D6\n0x8EA7E3F4\t0x27B9F\n0x8EA7E3F5\t0x22188\n0x8EA7E3F6\t0x28203\n0x8EA7E3F7\t0x283FE\n0x8EA7E3F8\t0x287EF\n0x8EA7E3F9\t0x28909\n0x8EA7E3FA\t0x28908\n0x8EA7E3FB\t0x28C20\n0x8EA7E3FC\t0x28C24\n0x8EA7E3FD\t0x28C1F\n0x8EA7E3FE\t0x29070\n0x8EA7E4A1\t0x29256\n0x8EA7E4A2\t0x293F7\n0x8EA7E4A3\t0x293F8\n0x8EA7E4A4\t0x293F6\n0x8EA7E4A5\t0x29590\n0x8EA7E4A6\t0x2965E\n0x8EA7E4A7\t0x297F7\n0x8EA7E4A8\t0x299D6\n0x8EA7E4A9\t0x299D5\n0x8EA7E4AA\t0x29ABB\n0x8EA7E4AB\t0x29AF0\n0x8EA7E4AC\t0x29C01\n0x8EA7E4AD\t0x29C6C\n0x8EA7E4AE\t0x29D41\n0x8EA7E4AF\t0x29D42\n0x8EA7E4B0\t0x29F4F\n0x8EA7E4B1\t0x29F53\n0x8EA7E4B2\t0x29F58\n0x8EA7E4B3\t0x2A212\n0x8EA7E4B4\t0x2A204\n0x8EA7E4B5\t0x2A213\n0x8EA7E4B6\t0x2A205\n0x8EA7E4B7\t0x2A20D\n0x8EA7E4B8\t0x2A382\n0x8EA7E4B9\t0x2A381\n0x8EA7E4BA\t0x2A4B5\n0x8EA7E4BB\t0x2A4BA\n0x8EA7E4BC\t0x2A5BE\n0x8EA7E4BD\t0x2A665\n0x8EA7E4BE\t0x2A663\n0x8EA7E4BF\t0x2A66E\n0x8EA7E4C0\t0x2A66A\n0x8EA7E4C1\t0x2A66C\n0x8EA7E4C2\t0x2A6C4\n0x8EA7E4C3\t0x2096C\n0x8EA7E4C4\t0x27BA5\n0x8EA7E4C5\t0x21B12\n0x8EA7E4C6\t0x2244D\n0x8EA7E4C7\t0x2331F\n0x8EA7E4C8\t0x23877\n0x8EA7E4C9\t0x23878\n0x8EA7E4CA\t0x23C44\n0x8EA7E4CB\t0x2417C\n0x8EA7E4CC\t0x244EB\n0x8EA7E4CD\t0x244EA\n0x8EA7E4CE\t0x244EC\n0x8EA7E4CF\t0x245A7\n0x8EA7E4D0\t0x24719\n0x8EA7E4D1\t0x24F23\n0x8EA7E4D2\t0x7674\n0x8EA7E4D3\t0x25601\n0x8EA7E4D4\t0x25E1C\n0x8EA7E4D5\t0x26203\n0x8EA7E4D6\t0x26348\n0x8EA7E4D7\t0x268DA\n0x8EA7E4D8\t0x27191\n0x8EA7E4D9\t0x27192\n0x8EA7E4DA\t0x27596\n0x8EA7E4DB\t0x27597\n0x8EA7E4DC\t0x27591\n0x8EA7E4DD\t0x27593\n0x8EA7E4DE\t0x277D8\n0x8EA7E4DF\t0x277D5\n0x8EA7E4E0\t0x27957\n0x8EA7E4E1\t0x27958\n0x8EA7E4E2\t0x27BA2\n0x8EA7E4E3\t0x28205\n0x8EA7E4E4\t0x283FA\n0x8EA7E4E5\t0x2890C\n0x8EA7E4E6\t0x2890A\n0x8EA7E4E7\t0x28C2E\n0x8EA7E4E8\t0x28C29\n0x8EA7E4E9\t0x28C2F\n0x8EA7E4EA\t0x28CC5\n0x8EA7E4EB\t0x29072\n0x8EA7E4EC\t0x291C8\n0x8EA7E4ED\t0x2925A\n0x8EA7E4EE\t0x29259\n0x8EA7E4EF\t0x29389\n0x8EA7E4F0\t0x29388\n0x8EA7E4F1\t0x299DB\n0x8EA7E4F2\t0x299D9\n0x8EA7E4F3\t0x299DA\n0x8EA7E4F4\t0x29ABC\n0x8EA7E4F5\t0x4BEC\n0x8EA7E4F6\t0x29C06\n0x8EA7E4F7\t0x29C05\n0x8EA7E4F8\t0x29C6F\n0x8EA7E4F9\t0x29C6D\n0x8EA7E4FA\t0x29C70\n0x8EA7E4FB\t0x29F60\n0x8EA7E4FC\t0x29F5E\n0x8EA7E4FD\t0x29F63\n0x8EA7E4FE\t0x29F5A\n0x8EA7E5A1\t0x29F5F\n0x8EA7E5A2\t0x2A219\n0x8EA7E5A3\t0x2A21D\n0x8EA7E5A4\t0x2A21B\n0x8EA7E5A5\t0x2A222\n0x8EA7E5A6\t0x2A21C\n0x8EA7E5A7\t0x2A21E\n0x8EA7E5A8\t0x2A2F7\n0x8EA7E5A9\t0x2A384\n0x8EA7E5AA\t0x2A415\n0x8EA7E5AB\t0x2A4B8\n0x8EA7E5AC\t0x2A4C1\n0x8EA7E5AD\t0x2A501\n0x8EA7E5AE\t0x2A50A\n0x8EA7E5AF\t0x2A5D2\n0x8EA7E5B0\t0x2A675\n0x8EA7E5B1\t0x2A674\n0x8EA7E5B2\t0x2A672\n0x8EA7E5B3\t0x20AD0\n0x8EA7E5B4\t0x21B1B\n0x8EA7E5B5\t0x22010\n0x8EA7E5B6\t0x22379\n0x8EA7E5B7\t0x244ED\n0x8EA7E5B8\t0x24BB9\n0x8EA7E5B9\t0x24F24\n0x8EA7E5BA\t0x24FC5\n0x8EA7E5BB\t0x25603\n0x8EA7E5BC\t0x2634A\n0x8EA7E5BD\t0x268F7\n0x8EA7E5BE\t0x269C1\n0x8EA7E5BF\t0x269C2\n0x8EA7E5C0\t0x27194\n0x8EA7E5C1\t0x27599\n0x8EA7E5C2\t0x2759A\n0x8EA7E5C3\t0x2795A\n0x8EA7E5C4\t0x27BA8\n0x8EA7E5C5\t0x27C25\n0x8EA7E5C6\t0x27C9E\n0x8EA7E5C7\t0x28441\n0x8EA7E5C8\t0x28C32\n0x8EA7E5C9\t0x28C33\n0x8EA7E5CA\t0x291CB\n0x8EA7E5CB\t0x291CA\n0x8EA7E5CC\t0x291CC\n0x8EA7E5CD\t0x29593\n0x8EA7E5CE\t0x299E0\n0x8EA7E5CF\t0x29C71\n0x8EA7E5D0\t0x29F6B\n0x8EA7E5D1\t0x2A22B\n0x8EA7E5D2\t0x2A229\n0x8EA7E5D3\t0x2A21A\n0x8EA7E5D4\t0x2A226\n0x8EA7E5D5\t0x2A227\n0x8EA7E5D6\t0x2A22A\n0x8EA7E5D7\t0x2A2F8\n0x8EA7E5D8\t0x2503D\n0x8EA7E5D9\t0x2A676\n0x8EA7E5DA\t0x21518\n0x8EA7E5DB\t0x2387A\n0x8EA7E5DC\t0x2417F\n0x8EA7E5DD\t0x4279\n0x8EA7E5DE\t0x263F0\n0x8EA7E5DF\t0x2719A\n0x8EA7E5E0\t0x27196\n0x8EA7E5E1\t0x2759E\n0x8EA7E5E2\t0x2759D\n0x8EA7E5E3\t0x275DC\n0x8EA7E5E4\t0x277DA\n0x8EA7E5E5\t0x2820B\n0x8EA7E5E6\t0x28402\n0x8EA7E5E7\t0x28442\n0x8EA7E5E8\t0x28667\n0x8EA7E5E9\t0x2938B\n0x8EA7E5EA\t0x299E2\n0x8EA7E5EB\t0x29F71\n0x8EA7E5EC\t0x2A22F\n0x8EA7E5ED\t0x2A22E\n0x8EA7E5EE\t0x2A4C6\n0x8EA7E5EF\t0x2A58E\n0x8EA7E5F0\t0x2A67B\n0x8EA7E5F1\t0x2A677\n0x8EA7E5F2\t0x2A678\n0x8EA7E5F3\t0x2A67C\n0x8EA7E5F4\t0x2387C\n0x8EA7E5F5\t0x26207\n0x8EA7E5F6\t0x27197\n0x8EA7E5F7\t0x27BD9\n0x8EA7E5F8\t0x2890D\n0x8EA7E5F9\t0x2890E\n0x8EA7E5FA\t0x299E3\n0x8EA7E5FB\t0x299E4\n0x8EA7E5FC\t0x29AF3\n0x8EA7E5FD\t0x29C75\n0x8EA7E5FE\t0x2A237\n0x8EA7E6A1\t0x2A235\n0x8EA7E6A2\t0x2A58F\n0x8EA7E6A3\t0x2A680\n0x8EA7E6A4\t0x2A67F\n0x8EA7E6A5\t0x2A6D4\n0x8EA7E6A6\t0x22EB4\n0x8EA7E6A7\t0x2A3EC\n0x8EA7E6A8\t0x28F75\n0x8EA7E6A9\t0x24D10\n0x8EA7E6AA\t0x26269\n0x8EA7E6AB\t0x275A4\n0x8EA7E6AC\t0x277DB\n0x8EA7E6AD\t0x291D1\n0x8EA7E6AE\t0x2938D\n0x8EA7E6AF\t0x29F76\n0x8EA7E6B0\t0x2A239\n0x8EA7E6B1\t0x2A684\n0x8EA7E6B2\t0x2A682\n0x8EA7E6B3\t0x20AD2\n0x8EA7E6B4\t0x244EE\n0x8EA7E6B5\t0x24D11\n0x8EA7E6B6\t0x25F84\n0x8EA7E6B7\t0x28F74\n0x8EA7E6B8\t0x2938F\n0x8EA7E6B9\t0x2938E\n0x8EA7E6BA\t0x2A23B\n0x8EA7E6BB\t0x208CB\n0x8EA7E6BC\t0x2A688\n0x8EA7E6BD\t0x2A686\n0x8EA7E6BE\t0x2335C\n0x8EA7E6BF\t0x253A4\n0x8EA7E6C0\t0x29075\n0x8EA7E6C1\t0x2A68B\n0x8EA7E6C2\t0x21519\n0x8EA7E6C3\t0x27C9F\n0x8EA7E6C4\t0x299E5\n0x8EA7E6C5\t0x2A240\n0x8EA7E6C6\t0x24D12\n0x8EA7E6C7\t0x2A2FB\n0x8EA7E6C8\t0x2A68C\n0x8EA7E6C9\t0x253A5\n0x8EA7E6CA\t0x29C77\n0x8EA7E6CB\t0x29C78\n0x8EA7E6CC\t0x2A6D6\n0x8EA7E6CD\t0x277DF\n0x8EA7E6CE\t0x291D2\n0x8EA7E6CF\t0x2151A\n0x8EA7E6D0\t0x27BA9\n0x8EA7E6D1\t0x291D3\n0x8EA7E6D2\t0x2A4CA\n0x8EA7E6D3\t0x269C4\n0x8EA7E6D4\t0x278B1\n0x8EA7E6D5\t0x29664\n0x8EAFA1A1\t0x20002\n0x8EAFA1A2\t0x2008C\n0x8EAFA1A3\t0x200D4\n0x8EAFA1A4\t0x201A5\n0x8EAFA1A5\t0x20092\n0x8EAFA1A6\t0x20093\n0x8EAFA1A7\t0x200D8\n0x8EAFA1A8\t0x200D9\n0x8EAFA1A9\t0x201A7\n0x8EAFA1AA\t0x2062B\n0x8EAFA1AB\t0x2062C\n0x8EAFA1AC\t0x2062D\n0x8EAFA1AD\t0x20630\n0x8EAFA1AE\t0x2062E\n0x8EAFA1AF\t0x206AB\n0x8EAFA1B0\t0x5301\n0x8EAFA1B1\t0x2092D\n0x8EAFA1B2\t0x2096D\n0x8EAFA1B3\t0x2F834\n0x8EAFA1B4\t0x20A0F\n0x8EAFA1B6\t0x20B9D\n0x8EAFA1B7\t0x211A2\n0x8EAFA1B8\t0x215D4\n0x8EAFA1B9\t0x21B56\n0x8EAFA1BA\t0x21BC3\n0x8EAFA1BB\t0x22014\n0x8EAFA1BD\t0x2471A\n0x8EAFA1BE\t0x2000F\n0x8EAFA1BF\t0x20010\n0x8EAFA1C0\t0x2009A\n0x8EAFA1C1\t0x2009B\n0x8EAFA1C3\t0x201AC\n0x8EAFA1C4\t0x3436\n0x8EAFA1C5\t0x20097\n0x8EAFA1C6\t0x20546\n0x8EAFA1C7\t0x434F\n0x8EAFA1C8\t0x20576\n0x8EAFA1C9\t0x20577\n0x8EAFA1CA\t0x205AE\n0x8EAFA1CB\t0x2063A\n0x8EAFA1CC\t0x2067D\n0x8EAFA1CD\t0x21BC5\n0x8EAFA1CE\t0x20BA8\n0x8EAFA1D0\t0x53FA\n0x8EAFA1D1\t0x21241\n0x8EAFA1D2\t0x21242\n0x8EAFA1D3\t0x215D8\n0x8EAFA1D4\t0x215D9\n0x8EAFA1D5\t0x216AA\n0x8EAFA1D6\t0x216AB\n0x8EAFA1D7\t0x21942\n0x8EAFA1D8\t0x21941\n0x8EAFA1D9\t0x9F99\n0x8EAFA1DA\t0x21BC6\n0x8EAFA1DC\t0x21D35\n0x8EAFA1DD\t0x21D36\n0x8EAFA1DE\t0x21D37\n0x8EAFA1DF\t0x2F883\n0x8EAFA1E0\t0x2634D\n0x8EAFA1E2\t0x221B5\n0x8EAFA1E3\t0x22317\n0x8EAFA1E4\t0x22482\n0x8EAFA1E5\t0x233B6\n0x8EAFA1E6\t0x6C49\n0x8EAFA1E7\t0x23C72\n0x8EAFA1E8\t0x2455C\n0x8EAFA1E9\t0x245A8\n0x8EAFA1EA\t0x8FB7\n0x8EAFA1EB\t0x215E3\n0x8EAFA1EC\t0x3406\n0x8EAFA1EE\t0x200E6\n0x8EAFA1EF\t0x20144\n0x8EAFA1F0\t0x20145\n0x8EAFA1F1\t0x4F29\n0x8EAFA1F2\t0x343E\n0x8EAFA1F3\t0x201C4\n0x8EAFA1F4\t0x201C5\n0x8EAFA1F5\t0x201C6\n0x8EAFA1F6\t0x201C7\n0x8EAFA1F7\t0x201C8\n0x8EAFA1F8\t0x201C9\n0x8EAFA1F9\t0x201CA\n0x8EAFA1FA\t0x201D4\n0x8EAFA1FB\t0x2057D\n0x8EAFA1FC\t0x26272\n0x8EAFA1FD\t0x205B2\n0x8EAFA1FE\t0x205B4\n0x8EAFA2A1\t0x20682\n0x8EAFA2A2\t0x206C7\n0x8EAFA2A3\t0x206C8\n0x8EAFA2A5\t0x2083C\n0x8EAFA2A6\t0x2083D\n0x8EAFA2A7\t0x2083E\n0x8EAFA2A8\t0x2083F\n0x8EAFA2A9\t0x2F824\n0x8EAFA2AA\t0x208D3\n0x8EAFA2AB\t0x20147\n0x8EAFA2AC\t0x534E\n0x8EAFA2AD\t0x20A3D\n0x8EAFA2AE\t0x20AE2\n0x8EAFA2AF\t0x20BB8\n0x8EAFA2B0\t0x20BB9\n0x8EAFA2B1\t0x20BC2\n0x8EAFA2B2\t0x20BBA\n0x8EAFA2B3\t0x20BC6\n0x8EAFA2B4\t0x20BBB\n0x8EAFA2B5\t0x211AD\n0x8EAFA2B6\t0x2124C\n0x8EAFA2B7\t0x2124D\n0x8EAFA2B9\t0x216B2\n0x8EAFA2BA\t0x216B3\n0x8EAFA2BB\t0x216B4\n0x8EAFA2BC\t0x216B5\n0x8EAFA2BD\t0x219C3\n0x8EAFA2BE\t0x219C4\n0x8EAFA2BF\t0x219C5\n0x8EAFA2C0\t0x219C6\n0x8EAFA2C1\t0x219C7\n0x8EAFA2C3\t0x21BCE\n0x8EAFA2C4\t0x21C30\n0x8EAFA2C5\t0x21D47\n0x8EAFA2C6\t0x21D48\n0x8EAFA2C7\t0x5C81\n0x8EAFA2C8\t0x2205C\n0x8EAFA2CA\t0x2205F\n0x8EAFA2CB\t0x22318\n0x8EAFA2CC\t0x22319\n0x8EAFA2CD\t0x2237E\n0x8EAFA2CE\t0x5F10\n0x8EAFA2CF\t0x225B0\n0x8EAFA2D0\t0x22A75\n0x8EAFA2D1\t0x6268\n0x8EAFA2D2\t0x22A76\n0x8EAFA2D3\t0x23041\n0x8EAFA2D4\t0x23142\n0x8EAFA2D6\t0x233BD\n0x8EAFA2D7\t0x6742\n0x8EAFA2D8\t0x6740\n0x8EAFA2D9\t0x51EA\n0x8EAFA2DA\t0x23B1E\n0x8EAFA2DB\t0x23B1F\n0x8EAFA2DC\t0x23C87\n0x8EAFA2DD\t0x6C62\n0x8EAFA2DE\t0x23C78\n0x8EAFA2DF\t0x24188\n0x8EAFA2E0\t0x24189\n0x8EAFA2E1\t0x2418A\n0x8EAFA2E2\t0x24617\n0x8EAFA2E3\t0x24615\n0x8EAFA2E6\t0x7391\n0x8EAFA2E7\t0x250E5\n0x8EAFA2E8\t0x25609\n0x8EAFA2E9\t0x2573B\n0x8EAFA2EA\t0x2574F\n0x8EAFA2EC\t0x2662E\n0x8EAFA2ED\t0x2662F\n0x8EAFA2EE\t0x26AFF\n0x8EAFA2EF\t0x26AFD\n0x8EAFA2F0\t0x26AFE\n0x8EAFA2F1\t0x8FBB\n0x8EAFA2F2\t0x8FBC\n0x8EAFA2F4\t0x20023\n0x8EAFA2F5\t0x200EA\n0x8EAFA2F6\t0x2012A\n0x8EAFA2F7\t0x20149\n0x8EAFA2F8\t0x2014A\n0x8EAFA2F9\t0x2014B\n0x8EAFA2FA\t0x201DF\n0x8EAFA2FB\t0x201E0\n0x8EAFA2FC\t0x201E1\n0x8EAFA2FD\t0x201E2\n0x8EAFA2FE\t0x205C1\n0x8EAFA3A1\t0x201E3\n0x8EAFA3A2\t0x201E4\n0x8EAFA3A3\t0x201E5\n0x8EAFA3A4\t0x205C0\n0x8EAFA3A5\t0x201E6\n0x8EAFA3A6\t0x201F7\n0x8EAFA3A8\t0x201E7\n0x8EAFA3A9\t0x201E8\n0x8EAFA3AA\t0x201E9\n0x8EAFA3AB\t0x201EA\n0x8EAFA3AC\t0x201EB\n0x8EAFA3AD\t0x2050E\n0x8EAFA3AE\t0x20580\n0x8EAFA3AF\t0x20581\n0x8EAFA3B0\t0x205BA\n0x8EAFA3B1\t0x205BB\n0x8EAFA3B2\t0x205BC\n0x8EAFA3B3\t0x205BD\n0x8EAFA3B4\t0x2063F\n0x8EAFA3B5\t0x20640\n0x8EAFA3B6\t0x20688\n0x8EAFA3B7\t0x2F81F\n0x8EAFA3B8\t0x20846\n0x8EAFA3BA\t0x20847\n0x8EAFA3BB\t0x20848\n0x8EAFA3BC\t0x20936\n0x8EAFA3BD\t0x20972\n0x8EAFA3BE\t0x20996\n0x8EAFA3BF\t0x20A47\n0x8EAFA3C0\t0x20AE7\n0x8EAFA3C1\t0x20B34\n0x8EAFA3C2\t0x20B35\n0x8EAFA3C3\t0x20B36\n0x8EAFA3C4\t0x20B37\n0x8EAFA3C5\t0x20BE3\n0x8EAFA3C6\t0x20BE4\n0x8EAFA3C7\t0x20BE5\n0x8EAFA3C8\t0x20BEB\n0x8EAFA3C9\t0x3575\n0x8EAFA3CA\t0x20BE6\n0x8EAFA3CB\t0x20BE7\n0x8EAFA3CC\t0x20BE8\n0x8EAFA3CF\t0x211B9\n0x8EAFA3D0\t0x56E8\n0x8EAFA3D1\t0x211BA\n0x8EAFA3D2\t0x575B\n0x8EAFA3D3\t0x21263\n0x8EAFA3D4\t0x21264\n0x8EAFA3D6\t0x21265\n0x8EAFA3D8\t0x21266\n0x8EAFA3D9\t0x2127C\n0x8EAFA3DA\t0x21267\n0x8EAFA3DB\t0x2F85A\n0x8EAFA3DC\t0x21559\n0x8EAFA3DD\t0x215E9\n0x8EAFA3DE\t0x215EA\n0x8EAFA3DF\t0x215EB\n0x8EAFA3E0\t0x215EC\n0x8EAFA3E1\t0x215ED\n0x8EAFA3E2\t0x215EE\n0x8EAFA3E3\t0x215EF\n0x8EAFA3E4\t0x216BF\n0x8EAFA3E5\t0x216CB\n0x8EAFA3E6\t0x216C3\n0x8EAFA3E7\t0x216D5\n0x8EAFA3E8\t0x216C4\n0x8EAFA3E9\t0x216C5\n0x8EAFA3EA\t0x216D3\n0x8EAFA3EB\t0x216C6\n0x8EAFA3EC\t0x216C7\n0x8EAFA3ED\t0x216C8\n0x8EAFA3EE\t0x216C9\n0x8EAFA3EF\t0x216CA\n0x8EAFA3F0\t0x2194A\n0x8EAFA3F2\t0x219D1\n0x8EAFA3F3\t0x21B61\n0x8EAFA3F4\t0x21C37\n0x8EAFA3F6\t0x21D64\n0x8EAFA3F7\t0x21D66\n0x8EAFA3F8\t0x5C99\n0x8EAFA3F9\t0x21D67\n0x8EAFA3FA\t0x21D68\n0x8EAFA3FB\t0x21D69\n0x8EAFA3FC\t0x5C97\n0x8EAFA3FD\t0x21D73\n0x8EAFA3FE\t0x21D6A\n0x8EAFA4A1\t0x21D6B\n0x8EAFA4A2\t0x6762\n0x8EAFA4A4\t0x22072\n0x8EAFA4A5\t0x383C\n0x8EAFA4A6\t0x221B9\n0x8EAFA4A7\t0x2231C\n0x8EAFA4A8\t0x22336\n0x8EAFA4A9\t0x223BC\n0x8EAFA4AA\t0x223BE\n0x8EAFA4AB\t0x223BF\n0x8EAFA4AC\t0x223C0\n0x8EAFA4AD\t0x22487\n0x8EAFA4AE\t0x225DC\n0x8EAFA4AF\t0x225DD\n0x8EAFA4B0\t0x225F5\n0x8EAFA4B1\t0x225DE\n0x8EAFA4B2\t0x225DF\n0x8EAFA4B3\t0x2F89E\n0x8EAFA4B4\t0x225E0\n0x8EAFA4B5\t0x225E1\n0x8EAFA4B6\t0x225E2\n0x8EAFA4B7\t0x22A2C\n0x8EAFA4B8\t0x22A2D\n0x8EAFA4B9\t0x62A4\n0x8EAFA4BA\t0x22AA9\n0x8EAFA4BB\t0x22A9C\n0x8EAFA4BC\t0x22A9D\n0x8EAFA4BD\t0x22A9E\n0x8EAFA4BE\t0x22A9F\n0x8EAFA4BF\t0x22AA0\n0x8EAFA4C0\t0x22AA1\n0x8EAFA4C1\t0x22AA2\n0x8EAFA4C3\t0x22AA3\n0x8EAFA4C4\t0x22AA4\n0x8EAFA4C5\t0x22AA7\n0x8EAFA4C6\t0x23042\n0x8EAFA4C7\t0x23093\n0x8EAFA4C8\t0x23151\n0x8EAFA4CA\t0x23152\n0x8EAFA4CB\t0x23144\n0x8EAFA4CC\t0x23153\n0x8EAFA4CD\t0x23322\n0x8EAFA4CE\t0x233C6\n0x8EAFA4CF\t0x233C7\n0x8EAFA4D0\t0x233C9\n0x8EAFA4D1\t0x2F8DD\n0x8EAFA4D2\t0x233CA\n0x8EAFA4D3\t0x6766\n0x8EAFA4D4\t0x233C8\n0x8EAFA4D5\t0x23B24\n0x8EAFA4D6\t0x23B25\n0x8EAFA4D7\t0x23B26\n0x8EAFA4D9\t0x23B27\n0x8EAFA4DA\t0x23B28\n0x8EAFA4DC\t0x23C58\n0x8EAFA4DD\t0x2F8FB\n0x8EAFA4DE\t0x23CA7\n0x8EAFA4DF\t0x23C88\n0x8EAFA4E0\t0x23C89\n0x8EAFA4E1\t0x23CA5\n0x8EAFA4E2\t0x23CA8\n0x8EAFA4E3\t0x23CA9\n0x8EAFA4E4\t0x23CAA\n0x8EAFA4E5\t0x23CAB\n0x8EAFA4E6\t0x23CAC\n0x8EAFA4E7\t0x23CAD\n0x8EAFA4E8\t0x6CA3\n0x8EAFA4E9\t0x23C79\n0x8EAFA4EB\t0x24194\n0x8EAFA4EC\t0x24195\n0x8EAFA4ED\t0x24196\n0x8EAFA4EE\t0x3DA5\n0x8EAFA4F0\t0x24197\n0x8EAFA4F1\t0x707F\n0x8EAFA4F2\t0x24198\n0x8EAFA4F3\t0x2454E\n0x8EAFA4F4\t0x2454F\n0x8EAFA4F5\t0x24619\n0x8EAFA4F7\t0x24741\n0x8EAFA4F8\t0x2F92A\n0x8EAFA4F9\t0x248F7\n0x8EAFA4FA\t0x24C04\n0x8EAFA4FB\t0x24C19\n0x8EAFA4FC\t0x24C17\n0x8EAFA4FD\t0x25040\n0x8EAFA4FE\t0x250EC\n0x8EAFA5A1\t0x2541B\n0x8EAFA5A2\t0x2541C\n0x8EAFA5A3\t0x77F6\n0x8EAFA5A4\t0x2560E\n0x8EAFA5A5\t0x25752\n0x8EAFA5A6\t0x25AD8\n0x8EAFA5A7\t0x25E26\n0x8EAFA5A8\t0x26274\n0x8EAFA5AA\t0x26275\n0x8EAFA5AB\t0x269C6\n0x8EAFA5AC\t0x26B0B\n0x8EAFA5AD\t0x26B0C\n0x8EAFA5AE\t0x26B0D\n0x8EAFA5AF\t0x26B0E\n0x8EAFA5B0\t0x26B0F\n0x8EAFA5B1\t0x26B10\n0x8EAFA5B2\t0x8FC8\n0x8EAFA5B3\t0x28459\n0x8EAFA5B4\t0x2845A\n0x8EAFA5B5\t0x28683\n0x8EAFA5B6\t0x28684\n0x8EAFA5B7\t0x28685\n0x8EAFA5B9\t0x95F5\n0x8EAFA5BA\t0x28E20\n0x8EAFA5BB\t0x28E21\n0x8EAFA5BC\t0x28E22\n0x8EAFA5BD\t0x28E23\n0x8EAFA5BE\t0x28E24\n0x8EAFA5BF\t0x28E29\n0x8EAFA5C0\t0x200F4\n0x8EAFA5C2\t0x2158F\n0x8EAFA5C3\t0x20151\n0x8EAFA5C4\t0x4FAB\n0x8EAFA5C5\t0x20217\n0x8EAFA5C6\t0x20218\n0x8EAFA5C7\t0x2025B\n0x8EAFA5C8\t0x20219\n0x8EAFA5C9\t0x2021A\n0x8EAFA5CA\t0x3453\n0x8EAFA5CB\t0x2021B\n0x8EAFA5CC\t0x2021C\n0x8EAFA5CD\t0x2021D\n0x8EAFA5CE\t0x2021E\n0x8EAFA5CF\t0x2021F\n0x8EAFA5D0\t0x20220\n0x8EAFA5D1\t0x20221\n0x8EAFA5D2\t0x2048B\n0x8EAFA5D3\t0x20488\n0x8EAFA5D4\t0x5C2D\n0x8EAFA5D5\t0x20585\n0x8EAFA5D6\t0x26287\n0x8EAFA5D7\t0x205C7\n0x8EAFA5D8\t0x2064C\n0x8EAFA5D9\t0x2064D\n0x8EAFA5DA\t0x206FC\n0x8EAFA5DB\t0x206FD\n0x8EAFA5DC\t0x206FE\n0x8EAFA5DD\t0x206FF\n0x8EAFA5E0\t0x20856\n0x8EAFA5E1\t0x20857\n0x8EAFA5E2\t0x20858\n0x8EAFA5E3\t0x20859\n0x8EAFA5E4\t0x208DC\n0x8EAFA5E5\t0x208DD\n0x8EAFA5E6\t0x20973\n0x8EAFA5E7\t0x2099D\n0x8EAFA5E8\t0x209A1\n0x8EAFA5E9\t0x2099E\n0x8EAFA5EA\t0x2099F\n0x8EAFA5EB\t0x209A0\n0x8EAFA5EC\t0x209E6\n0x8EAFA5ED\t0x20A51\n0x8EAFA5EE\t0x20A52\n0x8EAFA5EF\t0x20B3D\n0x8EAFA5F0\t0x20C22\n0x8EAFA5F1\t0x549C\n0x8EAFA5F2\t0x20C23\n0x8EAFA5F3\t0x20C24\n0x8EAFA5F4\t0x20C25\n0x8EAFA5F5\t0x20C26\n0x8EAFA5F6\t0x20C27\n0x8EAFA5F7\t0x20C28\n0x8EAFA5F8\t0x20C29\n0x8EAFA5F9\t0x20C2A\n0x8EAFA5FA\t0x20C2B\n0x8EAFA5FC\t0x20C40\n0x8EAFA5FD\t0x20C2C\n0x8EAFA5FE\t0x20C2D\n0x8EAFA6A1\t0x20C2E\n0x8EAFA6A2\t0x20C2F\n0x8EAFA6A3\t0x20C30\n0x8EAFA6A4\t0x211D0\n0x8EAFA6A5\t0x212A8\n0x8EAFA6A6\t0x21294\n0x8EAFA6A7\t0x21295\n0x8EAFA6A8\t0x21296\n0x8EAFA6A9\t0x21297\n0x8EAFA6AA\t0x21298\n0x8EAFA6AB\t0x2129C\n0x8EAFA6AC\t0x2129B\n0x8EAFA6AE\t0x212A1\n0x8EAFA6AF\t0x212A0\n0x8EAFA6B0\t0x21299\n0x8EAFA6B1\t0x2129A\n0x8EAFA6B2\t0x212A7\n0x8EAFA6B3\t0x5788\n0x8EAFA6B4\t0x21564\n0x8EAFA6B6\t0x21600\n0x8EAFA6B7\t0x21601\n0x8EAFA6BA\t0x216E5\n0x8EAFA6BB\t0x216E9\n0x8EAFA6BC\t0x216FB\n0x8EAFA6BD\t0x216FC\n0x8EAFA6BE\t0x216EA\n0x8EAFA6BF\t0x216EB\n0x8EAFA6C0\t0x216EC\n0x8EAFA6C1\t0x216ED\n0x8EAFA6C2\t0x216EE\n0x8EAFA6C3\t0x216EF\n0x8EAFA6C4\t0x216FA\n0x8EAFA6C5\t0x216F0\n0x8EAFA6C6\t0x216F1\n0x8EAFA6C7\t0x216F2\n0x8EAFA6C8\t0x216F3\n0x8EAFA6C9\t0x216F4\n0x8EAFA6CA\t0x21952\n0x8EAFA6CB\t0x21953\n0x8EAFA6CC\t0x21954\n0x8EAFA6CD\t0x21955\n0x8EAFA6CE\t0x21958\n0x8EAFA6CF\t0x21956\n0x8EAFA6D1\t0x219DD\n0x8EAFA6D2\t0x219DE\n0x8EAFA6D3\t0x219E3\n0x8EAFA6D4\t0x219DF\n0x8EAFA6D5\t0x219E0\n0x8EAFA6D6\t0x21B22\n0x8EAFA6D7\t0x21B23\n0x8EAFA6D8\t0x21B68\n0x8EAFA6D9\t0x21BDF\n0x8EAFA6DA\t0x34AC\n0x8EAFA6DB\t0x21C44\n0x8EAFA6DC\t0x21D94\n0x8EAFA6DD\t0x21D95\n0x8EAFA6DE\t0x21D96\n0x8EAFA6DF\t0x21D97\n0x8EAFA6E0\t0x21D98\n0x8EAFA6E1\t0x21D99\n0x8EAFA6E2\t0x2F879\n0x8EAFA6E3\t0x21D9A\n0x8EAFA6E4\t0x21D9B\n0x8EAFA6E5\t0x21D9D\n0x8EAFA6E6\t0x21D9E\n0x8EAFA6E7\t0x21D9F\n0x8EAFA6E8\t0x21DA0\n0x8EAFA6E9\t0x21FF3\n0x8EAFA6EA\t0x21FF2\n0x8EAFA6EB\t0x2201F\n0x8EAFA6EC\t0x22088\n0x8EAFA6ED\t0x2218F\n0x8EAFA6EE\t0x22190\n0x8EAFA6F0\t0x221FD\n0x8EAFA6F1\t0x221FE\n0x8EAFA6F2\t0x221FF\n0x8EAFA6F3\t0x22200\n0x8EAFA6F4\t0x22201\n0x8EAFA6F5\t0x2261A\n0x8EAFA6F7\t0x225E3\n0x8EAFA6F8\t0x225E4\n0x8EAFA6F9\t0x225E5\n0x8EAFA6FA\t0x225E6\n0x8EAFA6FB\t0x225E7\n0x8EAFA6FC\t0x225EB\n0x8EAFA6FD\t0x225E8\n0x8EAFA6FE\t0x225E9\n0x8EAFA7A1\t0x225EA\n0x8EAFA7A2\t0x2261D\n0x8EAFA7A3\t0x229A4\n0x8EAFA7A4\t0x229A3\n0x8EAFA7A5\t0x22AD4\n0x8EAFA7A6\t0x22AC6\n0x8EAFA7A7\t0x22AC7\n0x8EAFA7A8\t0x22AC8\n0x8EAFA7A9\t0x22AC9\n0x8EAFA7AA\t0x22ACA\n0x8EAFA7AB\t0x22ACB\n0x8EAFA7AC\t0x22ACC\n0x8EAFA7AD\t0x22ACD\n0x8EAFA7AE\t0x39DE\n0x8EAFA7AF\t0x22ACE\n0x8EAFA7B0\t0x62C3\n0x8EAFA7B1\t0x22EB8\n0x8EAFA7B2\t0x22EB9\n0x8EAFA7B3\t0x22EBA\n0x8EAFA7B4\t0x2306E\n0x8EAFA7B5\t0x230DB\n0x8EAFA7B6\t0x230DC\n0x8EAFA7B7\t0x23168\n0x8EAFA7B8\t0x23169\n0x8EAFA7B9\t0x2316A\n0x8EAFA7BA\t0x2316B\n0x8EAFA7BB\t0x2316C\n0x8EAFA7BC\t0x2316D\n0x8EAFA7BD\t0x2316E\n0x8EAFA7BE\t0x6619\n0x8EAFA7BF\t0x23324\n0x8EAFA7C0\t0x23325\n0x8EAFA7C2\t0x23400\n0x8EAFA7C3\t0x233E5\n0x8EAFA7C4\t0x233F9\n0x8EAFA7C5\t0x233E7\n0x8EAFA7C6\t0x233E8\n0x8EAFA7C7\t0x233E9\n0x8EAFA7C8\t0x233FE\n0x8EAFA7C9\t0x233EA\n0x8EAFA7CA\t0x233EB\n0x8EAFA7CB\t0x233EC\n0x8EAFA7CC\t0x3B49\n0x8EAFA7CD\t0x233ED\n0x8EAFA7CE\t0x67A1\n0x8EAFA7CF\t0x233EE\n0x8EAFA7D0\t0x67A6\n0x8EAFA7D1\t0x233EF\n0x8EAFA7D3\t0x23417\n0x8EAFA7D4\t0x233F0\n0x8EAFA7D5\t0x233F1\n0x8EAFA7D6\t0x23894\n0x8EAFA7D7\t0x2395B\n0x8EAFA7D8\t0x2395C\n0x8EAFA7D9\t0x2395D\n0x8EAFA7DA\t0x23B2F\n0x8EAFA7DB\t0x3C91\n0x8EAFA7DC\t0x23B30\n0x8EAFA7DD\t0x23B31\n0x8EAFA7DE\t0x23B32\n0x8EAFA7DF\t0x23B33\n0x8EAFA7E0\t0x23CCC\n0x8EAFA7E1\t0x23CCD\n0x8EAFA7E2\t0x23CCE\n0x8EAFA7E3\t0x23CAE\n0x8EAFA7E4\t0x23CAF\n0x8EAFA7E5\t0x23CB0\n0x8EAFA7E6\t0x3CD3\n0x8EAFA7E7\t0x23CCF\n0x8EAFA7E8\t0x23CD0\n0x8EAFA7E9\t0x23CD1\n0x8EAFA7EA\t0x23CD2\n0x8EAFA7EB\t0x23CD3\n0x8EAFA7ED\t0x23CD4\n0x8EAFA7EE\t0x3DA9\n0x8EAFA7EF\t0x241A6\n0x8EAFA7F0\t0x241A7\n0x8EAFA7F1\t0x241A8\n0x8EAFA7F2\t0x241B0\n0x8EAFA7F3\t0x241A9\n0x8EAFA7F4\t0x241AA\n0x8EAFA7F5\t0x241AB\n0x8EAFA7F6\t0x241AC\n0x8EAFA7F7\t0x241AD\n0x8EAFA7F8\t0x244FB\n0x8EAFA7F9\t0x244FC\n0x8EAFA7FB\t0x2462D\n0x8EAFA7FC\t0x2462E\n0x8EAFA7FD\t0x24650\n0x8EAFA7FE\t0x2462F\n0x8EAFA8A1\t0x24630\n0x8EAFA8A2\t0x24765\n0x8EAFA8A3\t0x248E6\n0x8EAFA8A4\t0x2490C\n0x8EAFA8A5\t0x24902\n0x8EAFA8A6\t0x24903\n0x8EAFA8A7\t0x24904\n0x8EAFA8A8\t0x24905\n0x8EAFA8A9\t0x24906\n0x8EAFA8AB\t0x24BC0\n0x8EAFA8AC\t0x24C24\n0x8EAFA8AD\t0x24C25\n0x8EAFA8AE\t0x24D16\n0x8EAFA8AF\t0x24D32\n0x8EAFA8B0\t0x25420\n0x8EAFA8B1\t0x25421\n0x8EAFA8B2\t0x25422\n0x8EAFA8B3\t0x25423\n0x8EAFA8B4\t0x77FE\n0x8EAFA8B5\t0x25425\n0x8EAFA8B6\t0x25619\n0x8EAFA8B7\t0x25624\n0x8EAFA8B8\t0x2561A\n0x8EAFA8B9\t0x2561B\n0x8EAFA8BA\t0x2561C\n0x8EAFA8BB\t0x2561D\n0x8EAFA8BC\t0x2F952\n0x8EAFA8BD\t0x2561E\n0x8EAFA8BE\t0x2575A\n0x8EAFA8BF\t0x2575B\n0x8EAFA8C0\t0x2575C\n0x8EAFA8C1\t0x2575D\n0x8EAFA8C2\t0x2575E\n0x8EAFA8C3\t0x25931\n0x8EAFA8C5\t0x25E29\n0x8EAFA8C7\t0x25F88\n0x8EAFA8C8\t0x25F89\n0x8EAFA8C9\t0x26289\n0x8EAFA8CA\t0x7F57\n0x8EAFA8CB\t0x26356\n0x8EAFA8CC\t0x264D1\n0x8EAFA8CD\t0x264E6\n0x8EAFA8CE\t0x26532\n0x8EAFA8CF\t0x26533\n0x8EAFA8D0\t0x26652\n0x8EAFA8D1\t0x26653\n0x8EAFA8D2\t0x43D5\n0x8EAFA8D3\t0x26654\n0x8EAFA8D4\t0x26655\n0x8EAFA8D7\t0x26B29\n0x8EAFA8D8\t0x26B2A\n0x8EAFA8D9\t0x26B2B\n0x8EAFA8DA\t0x26B2C\n0x8EAFA8DB\t0x26B2D\n0x8EAFA8DC\t0x2F992\n0x8EAFA8DD\t0x26B2E\n0x8EAFA8DE\t0x26B2F\n0x8EAFA8DF\t0x26B30\n0x8EAFA8E0\t0x26B31\n0x8EAFA8E1\t0x26B32\n0x8EAFA8E2\t0x26B33\n0x8EAFA8E3\t0x82C5\n0x8EAFA8E4\t0x26B34\n0x8EAFA8E5\t0x2719B\n0x8EAFA8E6\t0x27223\n0x8EAFA8E7\t0x27224\n0x8EAFA8E9\t0x27225\n0x8EAFA8EA\t0x27227\n0x8EAFA8EB\t0x27616\n0x8EAFA8EC\t0x27CA0\n0x8EAFA8ED\t0x2846F\n0x8EAFA8EE\t0x8FDF\n0x8EAFA8EF\t0x28470\n0x8EAFA8F0\t0x28471\n0x8EAFA8F1\t0x8FDC\n0x8EAFA8F2\t0x488C\n0x8EAFA8F3\t0x28472\n0x8EAFA8F4\t0x28473\n0x8EAFA8F5\t0x28474\n0x8EAFA8F6\t0x2869C\n0x8EAFA8F7\t0x286AA\n0x8EAFA8F8\t0x2869D\n0x8EAFA8F9\t0x2869E\n0x8EAFA8FA\t0x4099\n0x8EAFA8FB\t0x286AB\n0x8EAFA8FC\t0x2869F\n0x8EAFA8FD\t0x28E35\n0x8EAFA8FE\t0x28E38\n0x8EAFA9A1\t0x2A38D\n0x8EAFA9A2\t0x20035\n0x8EAFA9A3\t0x20036\n0x8EAFA9A4\t0x25AEE\n0x8EAFA9A5\t0x200B4\n0x8EAFA9A6\t0x2A6C9\n0x8EAFA9A7\t0x20132\n0x8EAFA9A8\t0x20155\n0x8EAFA9A9\t0x20244\n0x8EAFA9AA\t0x20245\n0x8EAFA9AB\t0x20246\n0x8EAFA9AC\t0x20247\n0x8EAFA9AD\t0x4FE4\n0x8EAFA9AE\t0x20248\n0x8EAFA9AF\t0x20249\n0x8EAFA9B1\t0x2024A\n0x8EAFA9B2\t0x2024B\n0x8EAFA9B3\t0x2024C\n0x8EAFA9B4\t0x2024D\n0x8EAFA9B5\t0x2024E\n0x8EAFA9B6\t0x2024F\n0x8EAFA9B7\t0x20250\n0x8EAFA9B8\t0x20251\n0x8EAFA9B9\t0x26299\n0x8EAFA9BA\t0x205D1\n0x8EAFA9BC\t0x205D2\n0x8EAFA9BD\t0x205D3\n0x8EAFA9BE\t0x205D4\n0x8EAFA9BF\t0x205D5\n0x8EAFA9C0\t0x20721\n0x8EAFA9C1\t0x20722\n0x8EAFA9C2\t0x20723\n0x8EAFA9C3\t0x20868\n0x8EAFA9C4\t0x20869\n0x8EAFA9C5\t0x2086A\n0x8EAFA9C6\t0x208E2\n0x8EAFA9C7\t0x20945\n0x8EAFA9C8\t0x209EC\n0x8EAFA9C9\t0x209ED\n0x8EAFA9CA\t0x209EE\n0x8EAFA9CB\t0x209EF\n0x8EAFA9CD\t0x20A62\n0x8EAFA9CE\t0x20A63\n0x8EAFA9CF\t0x20AF4\n0x8EAFA9D0\t0x2006F\n0x8EAFA9D1\t0x20B44\n0x8EAFA9D2\t0x20B45\n0x8EAFA9D3\t0x20C79\n0x8EAFA9D4\t0x551B\n0x8EAFA9D5\t0x20C7A\n0x8EAFA9D6\t0x20C7B\n0x8EAFA9D7\t0x20C7C\n0x8EAFA9D8\t0x20C7D\n0x8EAFA9D9\t0x20C7E\n0x8EAFA9DA\t0x20C7F\n0x8EAFA9DB\t0x20C80\n0x8EAFA9DC\t0x3588\n0x8EAFA9DE\t0x20C81\n0x8EAFA9DF\t0x20C82\n0x8EAFA9E0\t0x20C83\n0x8EAFA9E1\t0x20C84\n0x8EAFA9E2\t0x20C85\n0x8EAFA9E3\t0x20C86\n0x8EAFA9E4\t0x20C87\n0x8EAFA9E5\t0x20C8F\n0x8EAFA9E6\t0x20C88\n0x8EAFA9E7\t0x20C89\n0x8EAFA9E8\t0x212C5\n0x8EAFA9E9\t0x212C6\n0x8EAFA9EA\t0x57AA\n0x8EAFA9EB\t0x212C7\n0x8EAFA9EC\t0x212C8\n0x8EAFA9ED\t0x212C9\n0x8EAFA9EE\t0x212CA\n0x8EAFA9EF\t0x212CB\n0x8EAFA9F0\t0x212CC\n0x8EAFA9F1\t0x57AB\n0x8EAFA9F2\t0x212CD\n0x8EAFA9F3\t0x212CE\n0x8EAFA9F4\t0x212E3\n0x8EAFA9F5\t0x212CF\n0x8EAFA9F6\t0x212D0\n0x8EAFA9F7\t0x212D1\n0x8EAFA9F8\t0x212D2\n0x8EAFA9F9\t0x212D3\n0x8EAFA9FA\t0x212C4\n0x8EAFA9FB\t0x212D4\n0x8EAFA9FC\t0x212D5\n0x8EAFA9FD\t0x212D6\n0x8EAFA9FE\t0x21520\n0x8EAFAAA1\t0x21521\n0x8EAFAAA2\t0x2161A\n0x8EAFAAA3\t0x21612\n0x8EAFAAA4\t0x21614\n0x8EAFAAA5\t0x21615\n0x8EAFAAA6\t0x21616\n0x8EAFAAA7\t0x21619\n0x8EAFAAA8\t0x21617\n0x8EAFAAA9\t0x21618\n0x8EAFAAAA\t0x36C9\n0x8EAFAAAB\t0x2F861\n0x8EAFAAAD\t0x21712\n0x8EAFAAAE\t0x21713\n0x8EAFAAAF\t0x21714\n0x8EAFAAB0\t0x21715\n0x8EAFAAB1\t0x21716\n0x8EAFAAB2\t0x21717\n0x8EAFAAB3\t0x21718\n0x8EAFAAB4\t0x21719\n0x8EAFAAB5\t0x21961\n0x8EAFAAB6\t0x21962\n0x8EAFAAB7\t0x21963\n0x8EAFAAB8\t0x219F5\n0x8EAFAAB9\t0x5BA9\n0x8EAFAABA\t0x219F6\n0x8EAFAABB\t0x219F7\n0x8EAFAABC\t0x219F8\n0x8EAFAABD\t0x21B29\n0x8EAFAABE\t0x3917\n0x8EAFAABF\t0x21C5D\n0x8EAFAAC0\t0x21C57\n0x8EAFAAC1\t0x21C58\n0x8EAFAAC2\t0x21C59\n0x8EAFAAC3\t0x21C5A\n0x8EAFAAC4\t0x21C5B\n0x8EAFAAC5\t0x21DBB\n0x8EAFAAC6\t0x21DD1\n0x8EAFAAC7\t0x21DBC\n0x8EAFAAC8\t0x21DBD\n0x8EAFAAC9\t0x268DF\n0x8EAFAACA\t0x21DD0\n0x8EAFAACB\t0x21DBE\n0x8EAFAACC\t0x21DBF\n0x8EAFAACD\t0x21DC0\n0x8EAFAACE\t0x21DC1\n0x8EAFAACF\t0x21DC2\n0x8EAFAAD0\t0x21DC3\n0x8EAFAAD1\t0x21DC4\n0x8EAFAAD2\t0x26B6C\n0x8EAFAAD3\t0x220A1\n0x8EAFAAD4\t0x220A2\n0x8EAFAAD5\t0x220A3\n0x8EAFAAD6\t0x22193\n0x8EAFAAD7\t0x2220D\n0x8EAFAAD8\t0x2220F\n0x8EAFAAD9\t0x2220E\n0x8EAFAADA\t0x22210\n0x8EAFAADB\t0x22211\n0x8EAFAADC\t0x22212\n0x8EAFAADD\t0x2F895\n0x8EAFAADE\t0x224E5\n0x8EAFAADF\t0x2262F\n0x8EAFAAE1\t0x22657\n0x8EAFAAE2\t0x22630\n0x8EAFAAE3\t0x22668\n0x8EAFAAE4\t0x2262B\n0x8EAFAAE5\t0x22631\n0x8EAFAAE6\t0x22658\n0x8EAFAAE7\t0x2F8A2\n0x8EAFAAE8\t0x22632\n0x8EAFAAE9\t0x22659\n0x8EAFAAEB\t0x2265A\n0x8EAFAAEC\t0x22633\n0x8EAFAAED\t0x2265B\n0x8EAFAAEE\t0x2265C\n0x8EAFAAEF\t0x2265D\n0x8EAFAAF0\t0x2261E\n0x8EAFAAF1\t0x229AE\n0x8EAFAAF2\t0x229AF\n0x8EAFAAF3\t0x22A3B\n0x8EAFAAF4\t0x22A3C\n0x8EAFAAF5\t0x22A3D\n0x8EAFAAF6\t0x22B07\n0x8EAFAAF7\t0x22B08\n0x8EAFAAF8\t0x22B09\n0x8EAFAAF9\t0x22B0A\n0x8EAFAAFA\t0x22B0B\n0x8EAFAAFB\t0x22B0C\n0x8EAFAAFC\t0x22B0D\n0x8EAFAAFD\t0x22B0E\n0x8EAFAAFE\t0x22B0F\n0x8EAFABA1\t0x22B10\n0x8EAFABA2\t0x22B22\n0x8EAFABA3\t0x22B11\n0x8EAFABA4\t0x22B12\n0x8EAFABA5\t0x22B13\n0x8EAFABA6\t0x22B14\n0x8EAFABA7\t0x22B15\n0x8EAFABA8\t0x22B16\n0x8EAFABA9\t0x22B17\n0x8EAFABAA\t0x22B18\n0x8EAFABAB\t0x2F8B8\n0x8EAFABAD\t0x23046\n0x8EAFABAE\t0x23047\n0x8EAFABAF\t0x23048\n0x8EAFABB0\t0x230E1\n0x8EAFABB1\t0x23181\n0x8EAFABB2\t0x23183\n0x8EAFABB3\t0x20C75\n0x8EAFABB5\t0x23185\n0x8EAFABB6\t0x23186\n0x8EAFABB7\t0x2332A\n0x8EAFABB8\t0x2F8D1\n0x8EAFABB9\t0x2332B\n0x8EAFABBA\t0x2336B\n0x8EAFABBB\t0x23418\n0x8EAFABBC\t0x23419\n0x8EAFABBD\t0x2341A\n0x8EAFABBF\t0x2341B\n0x8EAFABC0\t0x2341C\n0x8EAFABC1\t0x2341D\n0x8EAFABC2\t0x2341E\n0x8EAFABC3\t0x2341F\n0x8EAFABC4\t0x23420\n0x8EAFABC5\t0x23421\n0x8EAFABC6\t0x23422\n0x8EAFABC7\t0x23423\n0x8EAFABC8\t0x6811\n0x8EAFABC9\t0x23424\n0x8EAFABCA\t0x23425\n0x8EAFABCB\t0x23426\n0x8EAFABCC\t0x23427\n0x8EAFABCD\t0x23428\n0x8EAFABCE\t0x23429\n0x8EAFABCF\t0x2342A\n0x8EAFABD0\t0x239EF\n0x8EAFABD1\t0x23B49\n0x8EAFABD2\t0x23B4A\n0x8EAFABD3\t0x23B4B\n0x8EAFABD4\t0x23B4C\n0x8EAFABD5\t0x23B4D\n0x8EAFABD6\t0x23B4E\n0x8EAFABD7\t0x23B4F\n0x8EAFABD8\t0x23B50\n0x8EAFABD9\t0x23B51\n0x8EAFABDA\t0x23B52\n0x8EAFABDB\t0x23B53\n0x8EAFABDC\t0x23B54\n0x8EAFABDD\t0x23B5A\n0x8EAFABDE\t0x23B55\n0x8EAFABDF\t0x23C5F\n0x8EAFABE0\t0x23D02\n0x8EAFABE1\t0x23D03\n0x8EAFABE2\t0x23D04\n0x8EAFABE3\t0x23D05\n0x8EAFABE4\t0x23CD5\n0x8EAFABE5\t0x23D06\n0x8EAFABE6\t0x23D07\n0x8EAFABE7\t0x23CD6\n0x8EAFABE8\t0x23D08\n0x8EAFABE9\t0x23D09\n0x8EAFABEA\t0x23D0A\n0x8EAFABEB\t0x23D0B\n0x8EAFABEC\t0x23CD7\n0x8EAFABED\t0x23D0C\n0x8EAFABEE\t0x23D0D\n0x8EAFABEF\t0x241C8\n0x8EAFABF0\t0x241C9\n0x8EAFABF1\t0x241CA\n0x8EAFABF2\t0x241CB\n0x8EAFABF3\t0x241CC\n0x8EAFABF4\t0x241CD\n0x8EAFABF5\t0x241CE\n0x8EAFABF6\t0x241CF\n0x8EAFABF7\t0x241D0\n0x8EAFABF8\t0x241D1\n0x8EAFABF9\t0x241D2\n0x8EAFABFA\t0x7551\n0x8EAFABFB\t0x241D3\n0x8EAFABFC\t0x241D4\n0x8EAFABFD\t0x241D5\n0x8EAFABFE\t0x241D6\n0x8EAFACA1\t0x241D7\n0x8EAFACA2\t0x241E2\n0x8EAFACA3\t0x241D8\n0x8EAFACA4\t0x24504\n0x8EAFACA5\t0x24505\n0x8EAFACA6\t0x24506\n0x8EAFACA8\t0x24643\n0x8EAFACA9\t0x24644\n0x8EAFACAA\t0x24784\n0x8EAFACAB\t0x2478F\n0x8EAFACAC\t0x24785\n0x8EAFACAD\t0x24786\n0x8EAFACAE\t0x2492F\n0x8EAFACAF\t0x2491A\n0x8EAFACB0\t0x2491B\n0x8EAFACB1\t0x2491C\n0x8EAFACB2\t0x3EBD\n0x8EAFACB3\t0x2491D\n0x8EAFACB4\t0x2491E\n0x8EAFACB5\t0x2491F\n0x8EAFACB6\t0x24920\n0x8EAFACB7\t0x24921\n0x8EAFACB8\t0x24922\n0x8EAFACB9\t0x2F92C\n0x8EAFACBA\t0x24923\n0x8EAFACBB\t0x24924\n0x8EAFACBC\t0x2490E\n0x8EAFACBD\t0x24925\n0x8EAFACBE\t0x2492B\n0x8EAFACBF\t0x2492C\n0x8EAFACC0\t0x2490B\n0x8EAFACC1\t0x24AEE\n0x8EAFACC3\t0x24BC3\n0x8EAFACC4\t0x24BD8\n0x8EAFACC5\t0x24BD9\n0x8EAFACC6\t0x24C38\n0x8EAFACC7\t0x24C39\n0x8EAFACC8\t0x24C3A\n0x8EAFACC9\t0x24C3B\n0x8EAFACCA\t0x7553\n0x8EAFACCB\t0x24C3C\n0x8EAFACCC\t0x24C3D\n0x8EAFACCD\t0x24C3E\n0x8EAFACCE\t0x24C3F\n0x8EAFACCF\t0x24C40\n0x8EAFACD0\t0x24D48\n0x8EAFACD1\t0x24D4C\n0x8EAFACD2\t0x24F28\n0x8EAFACD3\t0x24F51\n0x8EAFACD4\t0x24F52\n0x8EAFACD5\t0x2504C\n0x8EAFACD6\t0x25123\n0x8EAFACD7\t0x2F945\n0x8EAFACD8\t0x25124\n0x8EAFACD9\t0x25431\n0x8EAFACDA\t0x25432\n0x8EAFACDB\t0x25433\n0x8EAFACDC\t0x7818\n0x8EAFACDD\t0x25434\n0x8EAFACDE\t0x25435\n0x8EAFACDF\t0x25436\n0x8EAFACE0\t0x25440\n0x8EAFACE1\t0x25437\n0x8EAFACE3\t0x25438\n0x8EAFACE4\t0x2543D\n0x8EAFACE5\t0x25638\n0x8EAFACE6\t0x25639\n0x8EAFACE7\t0x2563A\n0x8EAFACE8\t0x2563B\n0x8EAFACE9\t0x2563C\n0x8EAFACEA\t0x2564C\n0x8EAFACEB\t0x25773\n0x8EAFACEC\t0x25774\n0x8EAFACED\t0x4133\n0x8EAFACEE\t0x25775\n0x8EAFACEF\t0x25776\n0x8EAFACF0\t0x25779\n0x8EAFACF1\t0x25941\n0x8EAFACF2\t0x25942\n0x8EAFACF3\t0x25943\n0x8EAFACF4\t0x25A5B\n0x8EAFACF6\t0x7AD7\n0x8EAFACF7\t0x238A6\n0x8EAFACF8\t0x25A5C\n0x8EAFACF9\t0x25AE5\n0x8EAFACFA\t0x25AE6\n0x8EAFACFB\t0x25AE7\n0x8EAFACFC\t0x25AE8\n0x8EAFACFD\t0x25AED\n0x8EAFACFE\t0x25E30\n0x8EAFADA1\t0x7C7E\n0x8EAFADA2\t0x25E31\n0x8EAFADA3\t0x25F94\n0x8EAFADA4\t0x26351\n0x8EAFADA5\t0x263FD\n0x8EAFADA6\t0x263FE\n0x8EAFADA7\t0x264E9\n0x8EAFADA9\t0x266B3\n0x8EAFADAA\t0x26684\n0x8EAFADAB\t0x26694\n0x8EAFADAD\t0x2669C\n0x8EAFADAF\t0x26685\n0x8EAFADB0\t0x26900\n0x8EAFADB1\t0x26937\n0x8EAFADB2\t0x26957\n0x8EAFADB3\t0x26B54\n0x8EAFADB4\t0x26B68\n0x8EAFADB5\t0x26B55\n0x8EAFADB6\t0x26B5C\n0x8EAFADB7\t0x26B56\n0x8EAFADB8\t0x26B57\n0x8EAFADB9\t0x26B58\n0x8EAFADBA\t0x26B59\n0x8EAFADBB\t0x26B5A\n0x8EAFADBC\t0x26B5B\n0x8EAFADBD\t0x27234\n0x8EAFADBE\t0x867E\n0x8EAFADBF\t0x27235\n0x8EAFADC1\t0x27239\n0x8EAFADC2\t0x27236\n0x8EAFADC3\t0x27237\n0x8EAFADC4\t0x27238\n0x8EAFADC5\t0x275E5\n0x8EAFADC6\t0x27659\n0x8EAFADC8\t0x2763A\n0x8EAFADC9\t0x2763B\n0x8EAFADCA\t0x27D28\n0x8EAFADCB\t0x27E89\n0x8EAFADCD\t0x27E8A\n0x8EAFADCE\t0x27E8B\n0x8EAFADCF\t0x27E8C\n0x8EAFADD0\t0x27E8D\n0x8EAFADD1\t0x27FBC\n0x8EAFADD2\t0x282A3\n0x8EAFADD3\t0x4844\n0x8EAFADD4\t0x282A4\n0x8EAFADD5\t0x28493\n0x8EAFADD6\t0x28494\n0x8EAFADD7\t0x28495\n0x8EAFADD8\t0x28496\n0x8EAFADD9\t0x28497\n0x8EAFADDA\t0x286B9\n0x8EAFADDB\t0x28E4F\n0x8EAFADDC\t0x28E50\n0x8EAFADDD\t0x28E51\n0x8EAFADDE\t0x29076\n0x8EAFADE0\t0x200FB\n0x8EAFADE1\t0x20083\n0x8EAFADE2\t0x20138\n0x8EAFADE3\t0x2015D\n0x8EAFADE4\t0x20271\n0x8EAFADE6\t0x20277\n0x8EAFADE7\t0x20278\n0x8EAFADE8\t0x2F807\n0x8EAFADE9\t0x202C3\n0x8EAFADEA\t0x20279\n0x8EAFADEB\t0x2027A\n0x8EAFADEC\t0x2027B\n0x8EAFADED\t0x2027C\n0x8EAFADEE\t0x20272\n0x8EAFADEF\t0x2027D\n0x8EAFADF0\t0x202A0\n0x8EAFADF1\t0x2027E\n0x8EAFADF2\t0x2027F\n0x8EAFADF3\t0x20280\n0x8EAFADF4\t0x20281\n0x8EAFADF5\t0x20282\n0x8EAFADF6\t0x20283\n0x8EAFADF7\t0x2029E\n0x8EAFADF8\t0x20284\n0x8EAFADF9\t0x20285\n0x8EAFADFA\t0x20286\n0x8EAFADFB\t0x20287\n0x8EAFADFC\t0x20288\n0x8EAFADFD\t0x20493\n0x8EAFADFE\t0x20494\n0x8EAFAEA1\t0x20495\n0x8EAFAEA2\t0x204EF\n0x8EAFAEA3\t0x204F0\n0x8EAFAEA5\t0x2058D\n0x8EAFAEA6\t0x2058F\n0x8EAFAEA7\t0x20590\n0x8EAFAEA8\t0x20591\n0x8EAFAEA9\t0x20592\n0x8EAFAEAA\t0x205DE\n0x8EAFAEAB\t0x205E1\n0x8EAFAEAC\t0x20653\n0x8EAFAEAD\t0x5266\n0x8EAFAEAE\t0x2074A\n0x8EAFAEAF\t0x2074B\n0x8EAFAEB0\t0x2074C\n0x8EAFAEB1\t0x20751\n0x8EAFAEB2\t0x2074D\n0x8EAFAEB3\t0x20748\n0x8EAFAEB4\t0x20874\n0x8EAFAEB5\t0x20875\n0x8EAFAEB6\t0x20920\n0x8EAFAEB7\t0x20921\n0x8EAFAEB8\t0x209A5\n0x8EAFAEB9\t0x209A6\n0x8EAFAEBA\t0x20A73\n0x8EAFAEBB\t0x20A74\n0x8EAFAEBC\t0x20B50\n0x8EAFAEBD\t0x20B51\n0x8EAFAEBE\t0x20B52\n0x8EAFAEBF\t0x20B53\n0x8EAFAEC0\t0x20CDB\n0x8EAFAEC1\t0x20CDC\n0x8EAFAEC2\t0x5520\n0x8EAFAEC3\t0x20CDD\n0x8EAFAEC4\t0x20CDE\n0x8EAFAEC5\t0x20CFF\n0x8EAFAEC8\t0x20CDF\n0x8EAFAEC9\t0x20CE0\n0x8EAFAECA\t0x5521\n0x8EAFAECB\t0x20CE1\n0x8EAFAECC\t0x20CE2\n0x8EAFAECD\t0x20CE3\n0x8EAFAECE\t0x20CE4\n0x8EAFAECF\t0x20CE5\n0x8EAFAED0\t0x20CE6\n0x8EAFAED1\t0x20CE7\n0x8EAFAED2\t0x20CE8\n0x8EAFAED3\t0x20CE9\n0x8EAFAED4\t0x20CEA\n0x8EAFAED5\t0x21307\n0x8EAFAED6\t0x21308\n0x8EAFAED7\t0x21309\n0x8EAFAED8\t0x2130A\n0x8EAFAED9\t0x2130B\n0x8EAFAEDA\t0x2130C\n0x8EAFAEDB\t0x2130D\n0x8EAFAEDC\t0x57D7\n0x8EAFAEDD\t0x2131A\n0x8EAFAEDE\t0x2130E\n0x8EAFAEDF\t0x2130F\n0x8EAFAEE0\t0x21310\n0x8EAFAEE1\t0x2131C\n0x8EAFAEE2\t0x21527\n0x8EAFAEE3\t0x21566\n0x8EAFAEE4\t0x21598\n0x8EAFAEE5\t0x21599\n0x8EAFAEE6\t0x21633\n0x8EAFAEE7\t0x21624\n0x8EAFAEE8\t0x21625\n0x8EAFAEE9\t0x21626\n0x8EAFAEEB\t0x36E1\n0x8EAFAEEC\t0x2173E\n0x8EAFAEED\t0x2F864\n0x8EAFAEEE\t0x2173F\n0x8EAFAEEF\t0x21757\n0x8EAFAEF0\t0x21740\n0x8EAFAEF1\t0x21741\n0x8EAFAEF2\t0x21758\n0x8EAFAEF3\t0x21742\n0x8EAFAEF4\t0x21743\n0x8EAFAEF5\t0x21744\n0x8EAFAEF6\t0x21745\n0x8EAFAEF7\t0x21746\n0x8EAFAEF8\t0x36E2\n0x8EAFAEF9\t0x21747\n0x8EAFAEFA\t0x2196B\n0x8EAFAEFB\t0x2196C\n0x8EAFAEFC\t0x21A10\n0x8EAFAEFD\t0x21A11\n0x8EAFAEFE\t0x5BBE\n0x8EAFAFA1\t0x21B75\n0x8EAFAFA2\t0x21BEF\n0x8EAFAFA3\t0x21C6A\n0x8EAFAFA4\t0x21C6B\n0x8EAFAFA6\t0x21C6C\n0x8EAFAFA7\t0x21C6D\n0x8EAFAFA8\t0x21C6E\n0x8EAFAFA9\t0x21DEF\n0x8EAFAFAA\t0x21DF0\n0x8EAFAFAB\t0x21DF1\n0x8EAFAFAC\t0x21DF2\n0x8EAFAFAD\t0x21DF3\n0x8EAFAFAE\t0x21DF4\n0x8EAFAFAF\t0x21DF5\n0x8EAFAFB0\t0x21DFF\n0x8EAFAFB1\t0x21DF6\n0x8EAFAFB2\t0x21E02\n0x8EAFAFB3\t0x21DF7\n0x8EAFAFB4\t0x22022\n0x8EAFAFB5\t0x220C4\n0x8EAFAFB6\t0x220C3\n0x8EAFAFB7\t0x22228\n0x8EAFAFB8\t0x387C\n0x8EAFAFB9\t0x22320\n0x8EAFAFBA\t0x22325\n0x8EAFAFBB\t0x22322\n0x8EAFAFBC\t0x22323\n0x8EAFAFBD\t0x223EB\n0x8EAFAFBE\t0x38E3\n0x8EAFAFBF\t0x224F9\n0x8EAFAFC0\t0x224FA\n0x8EAFAFC1\t0x22699\n0x8EAFAFC2\t0x2269A\n0x8EAFAFC3\t0x2269B\n0x8EAFAFC4\t0x22663\n0x8EAFAFC6\t0x2265E\n0x8EAFAFC7\t0x2265F\n0x8EAFAFC8\t0x22660\n0x8EAFAFC9\t0x2269C\n0x8EAFAFCA\t0x22661\n0x8EAFAFCB\t0x2269D\n0x8EAFAFCC\t0x22B54\n0x8EAFAFCD\t0x22B55\n0x8EAFAFCE\t0x22B56\n0x8EAFAFCF\t0x22B57\n0x8EAFAFD0\t0x22B58\n0x8EAFAFD1\t0x22B59\n0x8EAFAFD2\t0x22B5A\n0x8EAFAFD3\t0x22B19\n0x8EAFAFD4\t0x22B6A\n0x8EAFAFD5\t0x22B5B\n0x8EAFAFD6\t0x22B5C\n0x8EAFAFD7\t0x22B5D\n0x8EAFAFD8\t0x22B66\n0x8EAFAFDA\t0x22B5E\n0x8EAFAFDB\t0x22B5F\n0x8EAFAFDC\t0x22B1A\n0x8EAFAFDD\t0x22B60\n0x8EAFAFDE\t0x22B61\n0x8EAFAFE0\t0x22B62\n0x8EAFAFE1\t0x22B1B\n0x8EAFAFE2\t0x22B63\n0x8EAFAFE3\t0x26410\n0x8EAFAFE4\t0x26411\n0x8EAFAFE5\t0x2304C\n0x8EAFAFE6\t0x2309B\n0x8EAFAFE7\t0x230EB\n0x8EAFAFE8\t0x230EC\n0x8EAFAFE9\t0x230ED\n0x8EAFAFEA\t0x230EE\n0x8EAFAFEB\t0x231A3\n0x8EAFAFEC\t0x231A8\n0x8EAFAFED\t0x231A6\n0x8EAFAFEE\t0x3AEC\n0x8EAFAFEF\t0x2332F\n0x8EAFAFF0\t0x23330\n0x8EAFAFF1\t0x23331\n0x8EAFAFF2\t0x23332\n0x8EAFAFF3\t0x23333\n0x8EAFAFF4\t0x2344F\n0x8EAFAFF5\t0x23451\n0x8EAFAFF6\t0x23452\n0x8EAFAFF7\t0x2347D\n0x8EAFAFF8\t0x23453\n0x8EAFAFF9\t0x23454\n0x8EAFAFFA\t0x23455\n0x8EAFAFFB\t0x23456\n0x8EAFAFFC\t0x23457\n0x8EAFAFFD\t0x23458\n0x8EAFAFFE\t0x23459\n0x8EAFB0A1\t0x2345A\n0x8EAFB0A2\t0x2345B\n0x8EAFB0A3\t0x2345C\n0x8EAFB0A4\t0x6857\n0x8EAFB0A5\t0x2345D\n0x8EAFB0A6\t0x2345E\n0x8EAFB0A7\t0x2345F\n0x8EAFB0A8\t0x2346F\n0x8EAFB0A9\t0x23460\n0x8EAFB0AA\t0x23461\n0x8EAFB0AB\t0x23462\n0x8EAFB0AC\t0x23463\n0x8EAFB0AD\t0x23472\n0x8EAFB0AE\t0x23464\n0x8EAFB0B0\t0x2346E\n0x8EAFB0B1\t0x238B5\n0x8EAFB0B2\t0x23B65\n0x8EAFB0B3\t0x23B66\n0x8EAFB0B4\t0x23B67\n0x8EAFB0B5\t0x23B68\n0x8EAFB0B6\t0x23B69\n0x8EAFB0B7\t0x23B6A\n0x8EAFB0B8\t0x23B6B\n0x8EAFB0B9\t0x23B6C\n0x8EAFB0BA\t0x23D0E\n0x8EAFB0BB\t0x23D43\n0x8EAFB0BD\t0x23D0F\n0x8EAFB0BE\t0x23D44\n0x8EAFB0BF\t0x23D45\n0x8EAFB0C0\t0x23D46\n0x8EAFB0C1\t0x23D47\n0x8EAFB0C2\t0x23D48\n0x8EAFB0C3\t0x23D49\n0x8EAFB0C4\t0x23D10\n0x8EAFB0C5\t0x23D4A\n0x8EAFB0C6\t0x23D4B\n0x8EAFB0C7\t0x23D4C\n0x8EAFB0C8\t0x23D4D\n0x8EAFB0C9\t0x3CDF\n0x8EAFB0CA\t0x23D4E\n0x8EAFB0CB\t0x23D4F\n0x8EAFB0CC\t0x23D50\n0x8EAFB0CD\t0x23D51\n0x8EAFB0CE\t0x23D52\n0x8EAFB0CF\t0x23D53\n0x8EAFB0D0\t0x23D54\n0x8EAFB0D1\t0x23D55\n0x8EAFB0D2\t0x23D56\n0x8EAFB0D3\t0x23D57\n0x8EAFB0D4\t0x23D58\n0x8EAFB0D5\t0x23D59\n0x8EAFB0D6\t0x23D5A\n0x8EAFB0D7\t0x23D1D\n0x8EAFB0D8\t0x23D5B\n0x8EAFB0D9\t0x23D5C\n0x8EAFB0DA\t0x23D5D\n0x8EAFB0DB\t0x2F906\n0x8EAFB0DD\t0x241FE\n0x8EAFB0DE\t0x241FF\n0x8EAFB0DF\t0x24200\n0x8EAFB0E0\t0x24201\n0x8EAFB0E1\t0x24202\n0x8EAFB0E2\t0x24203\n0x8EAFB0E3\t0x24204\n0x8EAFB0E4\t0x24205\n0x8EAFB0E5\t0x24206\n0x8EAFB0E6\t0x24207\n0x8EAFB0E7\t0x24218\n0x8EAFB0E8\t0x24208\n0x8EAFB0E9\t0x24209\n0x8EAFB0EA\t0x241F3\n0x8EAFB0EB\t0x2420A\n0x8EAFB0EC\t0x2420B\n0x8EAFB0ED\t0x2421B\n0x8EAFB0EE\t0x2420C\n0x8EAFB0EF\t0x2420D\n0x8EAFB0F0\t0x2420E\n0x8EAFB0F1\t0x2420F\n0x8EAFB0F2\t0x24210\n0x8EAFB0F3\t0x2450F\n0x8EAFB0F4\t0x24561\n0x8EAFB0F5\t0x24579\n0x8EAFB0F6\t0x247C1\n0x8EAFB0F7\t0x247AC\n0x8EAFB0F8\t0x247AD\n0x8EAFB0F9\t0x24943\n0x8EAFB0FA\t0x24944\n0x8EAFB0FB\t0x24945\n0x8EAFB0FC\t0x24946\n0x8EAFB0FD\t0x24947\n0x8EAFB0FE\t0x24948\n0x8EAFB1A1\t0x24949\n0x8EAFB1A2\t0x24964\n0x8EAFB1A3\t0x2494A\n0x8EAFB1A4\t0x2494B\n0x8EAFB1A5\t0x2494C\n0x8EAFB1A6\t0x2494D\n0x8EAFB1A7\t0x3EC7\n0x8EAFB1A8\t0x2F92D\n0x8EAFB1A9\t0x24B39\n0x8EAFB1AA\t0x24C57\n0x8EAFB1AB\t0x24C58\n0x8EAFB1AC\t0x24C59\n0x8EAFB1AD\t0x24C5F\n0x8EAFB1AE\t0x24C5A\n0x8EAFB1AF\t0x24D6A\n0x8EAFB1B0\t0x24F2B\n0x8EAFB1B1\t0x24F5D\n0x8EAFB1B2\t0x24F5E\n0x8EAFB1B3\t0x24F5F\n0x8EAFB1B5\t0x24F60\n0x8EAFB1B6\t0x24F61\n0x8EAFB1B7\t0x25058\n0x8EAFB1B8\t0x25059\n0x8EAFB1B9\t0x2514A\n0x8EAFB1BA\t0x2514B\n0x8EAFB1BB\t0x2514C\n0x8EAFB1BC\t0x2514D\n0x8EAFB1BD\t0x2514E\n0x8EAFB1BE\t0x25457\n0x8EAFB1BF\t0x253B3\n0x8EAFB1C0\t0x253B4\n0x8EAFB1C1\t0x2546E\n0x8EAFB1C2\t0x2545B\n0x8EAFB1C3\t0x2545C\n0x8EAFB1C5\t0x2545D\n0x8EAFB1C6\t0x2545E\n0x8EAFB1C8\t0x2546C\n0x8EAFB1C9\t0x2563D\n0x8EAFB1CA\t0x25654\n0x8EAFB1CB\t0x2563E\n0x8EAFB1CC\t0x25655\n0x8EAFB1CD\t0x25656\n0x8EAFB1CE\t0x2563F\n0x8EAFB1CF\t0x25657\n0x8EAFB1D0\t0x25658\n0x8EAFB1D1\t0x25659\n0x8EAFB1D2\t0x2565A\n0x8EAFB1D3\t0x2565B\n0x8EAFB1D4\t0x2565C\n0x8EAFB1D5\t0x25788\n0x8EAFB1D6\t0x25789\n0x8EAFB1D8\t0x25958\n0x8EAFB1D9\t0x25959\n0x8EAFB1DA\t0x2595A\n0x8EAFB1DC\t0x25A67\n0x8EAFB1DD\t0x25A68\n0x8EAFB1DE\t0x25A69\n0x8EAFB1DF\t0x25A6A\n0x8EAFB1E1\t0x25A6B\n0x8EAFB1E2\t0x25A6C\n0x8EAFB1E3\t0x25AFE\n0x8EAFB1E4\t0x25AFF\n0x8EAFB1E5\t0x25B00\n0x8EAFB1E6\t0x25B01\n0x8EAFB1E7\t0x25B02\n0x8EAFB1E8\t0x25B03\n0x8EAFB1E9\t0x25B04\n0x8EAFB1EA\t0x25B05\n0x8EAFB1EB\t0x25E39\n0x8EAFB1EC\t0x25E3A\n0x8EAFB1ED\t0x25E3B\n0x8EAFB1EE\t0x25E3C\n0x8EAFB1F1\t0x25FB2\n0x8EAFB1F2\t0x25FB3\n0x8EAFB1F3\t0x25FB4\n0x8EAFB1F4\t0x25FB5\n0x8EAFB1F5\t0x25FB6\n0x8EAFB1F6\t0x25FB7\n0x8EAFB1F7\t0x25FB8\n0x8EAFB1F8\t0x7F3C\n0x8EAFB1F9\t0x262A2\n0x8EAFB1FA\t0x26361\n0x8EAFB1FB\t0x26362\n0x8EAFB1FC\t0x26414\n0x8EAFB1FE\t0x264EB\n0x8EAFB2A1\t0x26542\n0x8EAFB2A2\t0x26548\n0x8EAFB2A4\t0x26543\n0x8EAFB2A5\t0x2654E\n0x8EAFB2A6\t0x26544\n0x8EAFB2A7\t0x26545\n0x8EAFB2A8\t0x266B4\n0x8EAFB2A9\t0x266B5\n0x8EAFB2AD\t0x266B6\n0x8EAFB2AF\t0x268E1\n0x8EAFB2B0\t0x26905\n0x8EAFB2B2\t0x8273\n0x8EAFB2B3\t0x26B9A\n0x8EAFB2B5\t0x26B9B\n0x8EAFB2B6\t0x26B9C\n0x8EAFB2B7\t0x26B9D\n0x8EAFB2B8\t0x26B9E\n0x8EAFB2B9\t0x26B9F\n0x8EAFB2BA\t0x2F99A\n0x8EAFB2BB\t0x26BA0\n0x8EAFB2BC\t0x26BA1\n0x8EAFB2BD\t0x26BA2\n0x8EAFB2BE\t0x26BB5\n0x8EAFB2BF\t0x26BA3\n0x8EAFB2C0\t0x26BA4\n0x8EAFB2C2\t0x26BA5\n0x8EAFB2C3\t0x26BA6\n0x8EAFB2C4\t0x26BA7\n0x8EAFB2C5\t0x26BA8\n0x8EAFB2C6\t0x26BAF\n0x8EAFB2C7\t0x26BA9\n0x8EAFB2C8\t0x26BAA\n0x8EAFB2C9\t0x26BAB\n0x8EAFB2CA\t0x26BAC\n0x8EAFB2CB\t0x26BAD\n0x8EAFB2CC\t0x26BB3\n0x8EAFB2CE\t0x271A0\n0x8EAFB2CF\t0x27256\n0x8EAFB2D0\t0x27634\n0x8EAFB2D1\t0x4627\n0x8EAFB2D2\t0x2763C\n0x8EAFB2D3\t0x2780C\n0x8EAFB2D5\t0x27C3E\n0x8EAFB2D6\t0x27CA3\n0x8EAFB2D7\t0x27D30\n0x8EAFB2D8\t0x27D31\n0x8EAFB2D9\t0x27E97\n0x8EAFB2DA\t0x27E98\n0x8EAFB2DB\t0x27E99\n0x8EAFB2DC\t0x27E9A\n0x8EAFB2DD\t0x27E9B\n0x8EAFB2DE\t0x282B2\n0x8EAFB2DF\t0x282AB\n0x8EAFB2E0\t0x282AC\n0x8EAFB2E1\t0x286FC\n0x8EAFB2E2\t0x286E8\n0x8EAFB2E3\t0x286E9\n0x8EAFB2E4\t0x286EA\n0x8EAFB2E5\t0x287F1\n0x8EAFB2E6\t0x2893F\n0x8EAFB2E7\t0x28CCE\n0x8EAFB2E8\t0x28E6D\n0x8EAFB2E9\t0x28E6E\n0x8EAFB2EA\t0x28E6F\n0x8EAFB2EB\t0x28E70\n0x8EAFB2EC\t0x28E71\n0x8EAFB2ED\t0x28E72\n0x8EAFB2EE\t0x28E73\n0x8EAFB2EF\t0x96BE\n0x8EAFB2F0\t0x29078\n0x8EAFB2F1\t0x2983A\n0x8EAFB2F2\t0x20167\n0x8EAFB2F3\t0x66FA\n0x8EAFB2F4\t0x20164\n0x8EAFB2F5\t0x20165\n0x8EAFB2F6\t0x20307\n0x8EAFB2F7\t0x202C4\n0x8EAFB2F8\t0x202C5\n0x8EAFB2F9\t0x202C6\n0x8EAFB2FA\t0x202C7\n0x8EAFB2FB\t0x202C8\n0x8EAFB2FC\t0x202C9\n0x8EAFB2FD\t0x202E5\n0x8EAFB2FE\t0x202CA\n0x8EAFB3A1\t0x202CB\n0x8EAFB3A3\t0x202CC\n0x8EAFB3A4\t0x202CD\n0x8EAFB3A5\t0x202CE\n0x8EAFB3A6\t0x202CF\n0x8EAFB3A7\t0x202D0\n0x8EAFB3A8\t0x20497\n0x8EAFB3A9\t0x2049A\n0x8EAFB3AA\t0x2049B\n0x8EAFB3AB\t0x205EA\n0x8EAFB3AC\t0x205EC\n0x8EAFB3AD\t0x205ED\n0x8EAFB3AE\t0x205F7\n0x8EAFB3AF\t0x205EE\n0x8EAFB3B0\t0x205EF\n0x8EAFB3B1\t0x2065B\n0x8EAFB3B2\t0x2065C\n0x8EAFB3B3\t0x2065D\n0x8EAFB3B4\t0x2076D\n0x8EAFB3B5\t0x2076E\n0x8EAFB3B7\t0x2076F\n0x8EAFB3B8\t0x20881\n0x8EAFB3B9\t0x20882\n0x8EAFB3BA\t0x2094F\n0x8EAFB3BB\t0x209AD\n0x8EAFB3BC\t0x2870A\n0x8EAFB3BD\t0x20A7E\n0x8EAFB3BE\t0x20B69\n0x8EAFB3BF\t0x20D54\n0x8EAFB3C0\t0x20D55\n0x8EAFB3C1\t0x20D56\n0x8EAFB3C2\t0x20D57\n0x8EAFB3C3\t0x35AB\n0x8EAFB3C4\t0x20D58\n0x8EAFB3C5\t0x20D59\n0x8EAFB3C6\t0x20D5A\n0x8EAFB3C7\t0x20D5B\n0x8EAFB3C8\t0x20D5C\n0x8EAFB3C9\t0x20D5D\n0x8EAFB3CC\t0x20D5E\n0x8EAFB3CD\t0x20D5F\n0x8EAFB3CE\t0x2133B\n0x8EAFB3CF\t0x21336\n0x8EAFB3D0\t0x2133C\n0x8EAFB3D1\t0x2133D\n0x8EAFB3D2\t0x2133E\n0x8EAFB3D3\t0x2133F\n0x8EAFB3D4\t0x21340\n0x8EAFB3D5\t0x21341\n0x8EAFB3D6\t0x21342\n0x8EAFB3D7\t0x364B\n0x8EAFB3D8\t0x21343\n0x8EAFB3D9\t0x21344\n0x8EAFB3DA\t0x21345\n0x8EAFB3DB\t0x21337\n0x8EAFB3DE\t0x21346\n0x8EAFB3DF\t0x21347\n0x8EAFB3E0\t0x21348\n0x8EAFB3E1\t0x21349\n0x8EAFB3E2\t0x2152D\n0x8EAFB3E3\t0x215A5\n0x8EAFB3E4\t0x2163D\n0x8EAFB3E5\t0x2163F\n0x8EAFB3E6\t0x2196E\n0x8EAFB3E7\t0x217E7\n0x8EAFB3E8\t0x21775\n0x8EAFB3E9\t0x21776\n0x8EAFB3EA\t0x21777\n0x8EAFB3EB\t0x21778\n0x8EAFB3EC\t0x21779\n0x8EAFB3ED\t0x2177A\n0x8EAFB3EE\t0x2177B\n0x8EAFB3EF\t0x2177C\n0x8EAFB3F0\t0x2178E\n0x8EAFB3F1\t0x2177D\n0x8EAFB3F2\t0x2177E\n0x8EAFB3F3\t0x5A72\n0x8EAFB3F4\t0x2177F\n0x8EAFB3F5\t0x21780\n0x8EAFB3F6\t0x21781\n0x8EAFB3F7\t0x21782\n0x8EAFB3F8\t0x21783\n0x8EAFB3F9\t0x21784\n0x8EAFB3FA\t0x21785\n0x8EAFB3FB\t0x21786\n0x8EAFB3FC\t0x21787\n0x8EAFB3FD\t0x21788\n0x8EAFB3FE\t0x21789\n0x8EAFB4A1\t0x2178A\n0x8EAFB4A2\t0x2178B\n0x8EAFB4A3\t0x2178C\n0x8EAFB4A4\t0x2196F\n0x8EAFB4A5\t0x21970\n0x8EAFB4A6\t0x21971\n0x8EAFB4A7\t0x21972\n0x8EAFB4A8\t0x21A2A\n0x8EAFB4A9\t0x21A2B\n0x8EAFB4AA\t0x21A2C\n0x8EAFB4AB\t0x21A2D\n0x8EAFB4AC\t0x21A2E\n0x8EAFB4AD\t0x21A2F\n0x8EAFB4AE\t0x21A30\n0x8EAFB4AF\t0x21A31\n0x8EAFB4B0\t0x21B83\n0x8EAFB4B1\t0x21C84\n0x8EAFB4B2\t0x21C85\n0x8EAFB4B3\t0x21C93\n0x8EAFB4B5\t0x21C86\n0x8EAFB4B6\t0x21C87\n0x8EAFB4B7\t0x21C88\n0x8EAFB4B8\t0x21C89\n0x8EAFB4B9\t0x21C8A\n0x8EAFB4BA\t0x21C8B\n0x8EAFB4BB\t0x21E36\n0x8EAFB4BC\t0x21E38\n0x8EAFB4BD\t0x21E39\n0x8EAFB4BE\t0x21E3A\n0x8EAFB4BF\t0x37E2\n0x8EAFB4C0\t0x21E3B\n0x8EAFB4C1\t0x21E3C\n0x8EAFB4C2\t0x21E3D\n0x8EAFB4C3\t0x21E3E\n0x8EAFB4C4\t0x21E3F\n0x8EAFB4C6\t0x21E40\n0x8EAFB4C7\t0x21E41\n0x8EAFB4C8\t0x21E42\n0x8EAFB4C9\t0x220DE\n0x8EAFB4CA\t0x220DF\n0x8EAFB4CB\t0x220E0\n0x8EAFB4CC\t0x220E1\n0x8EAFB4CD\t0x2224A\n0x8EAFB4CE\t0x2224B\n0x8EAFB4CF\t0x2224C\n0x8EAFB4D0\t0x2224D\n0x8EAFB4D1\t0x2224E\n0x8EAFB4D2\t0x2224F\n0x8EAFB4D3\t0x22250\n0x8EAFB4D4\t0x22327\n0x8EAFB4D5\t0x223F9\n0x8EAFB4D6\t0x223FA\n0x8EAFB4D7\t0x223FB\n0x8EAFB4D8\t0x22498\n0x8EAFB4D9\t0x22499\n0x8EAFB4DA\t0x2249A\n0x8EAFB4DC\t0x2251E\n0x8EAFB4DD\t0x2269E\n0x8EAFB4DE\t0x226F7\n0x8EAFB4DF\t0x2269F\n0x8EAFB4E0\t0x226A0\n0x8EAFB4E1\t0x226F0\n0x8EAFB4E2\t0x226F8\n0x8EAFB4E3\t0x226F9\n0x8EAFB4E4\t0x226A1\n0x8EAFB4E5\t0x226A2\n0x8EAFB4E6\t0x226A3\n0x8EAFB4E7\t0x226A4\n0x8EAFB4E8\t0x226A5\n0x8EAFB4E9\t0x226FA\n0x8EAFB4EA\t0x226FB\n0x8EAFB4EB\t0x226FC\n0x8EAFB4EC\t0x226FD\n0x8EAFB4ED\t0x226FE\n0x8EAFB4EE\t0x2271F\n0x8EAFB4EF\t0x226FF\n0x8EAFB4F0\t0x22700\n0x8EAFB4F1\t0x2278C\n0x8EAFB4F2\t0x22701\n0x8EAFB4F3\t0x229C2\n0x8EAFB4F4\t0x229C3\n0x8EAFB4F6\t0x229D3\n0x8EAFB4F7\t0x22A4E\n0x8EAFB4F8\t0x22BAF\n0x8EAFB4F9\t0x22BB0\n0x8EAFB4FA\t0x22BB1\n0x8EAFB4FB\t0x22BB2\n0x8EAFB4FC\t0x22BB3\n0x8EAFB4FD\t0x22BC6\n0x8EAFB4FE\t0x22BB4\n0x8EAFB5A2\t0x22BB5\n0x8EAFB5A3\t0x22BB6\n0x8EAFB5A4\t0x22BB7\n0x8EAFB5A5\t0x22BB8\n0x8EAFB5A6\t0x22BB9\n0x8EAFB5A7\t0x22BBA\n0x8EAFB5A8\t0x22BBB\n0x8EAFB5A9\t0x22BBC\n0x8EAFB5AA\t0x22BBD\n0x8EAFB5AB\t0x22BBE\n0x8EAFB5AC\t0x22BBF\n0x8EAFB5AD\t0x22BC1\n0x8EAFB5AE\t0x22BC0\n0x8EAFB5AF\t0x22BC2\n0x8EAFB5B0\t0x22BC3\n0x8EAFB5B1\t0x22F51\n0x8EAFB5B2\t0x22F52\n0x8EAFB5B3\t0x22F53\n0x8EAFB5B4\t0x22F54\n0x8EAFB5B5\t0x22F55\n0x8EAFB5B6\t0x2305A\n0x8EAFB5B7\t0x23050\n0x8EAFB5B8\t0x23051\n0x8EAFB5B9\t0x23078\n0x8EAFB5BA\t0x230F8\n0x8EAFB5BB\t0x230F9\n0x8EAFB5BC\t0x231C6\n0x8EAFB5BD\t0x231CB\n0x8EAFB5BE\t0x231CC\n0x8EAFB5BF\t0x231CD\n0x8EAFB5C0\t0x231CE\n0x8EAFB5C1\t0x231CF\n0x8EAFB5C2\t0x231D0\n0x8EAFB5C3\t0x231D1\n0x8EAFB5C4\t0x231D2\n0x8EAFB5C5\t0x231D3\n0x8EAFB5C6\t0x231D4\n0x8EAFB5C7\t0x231D5\n0x8EAFB5C9\t0x23337\n0x8EAFB5CA\t0x23338\n0x8EAFB5CB\t0x23373\n0x8EAFB5CC\t0x23490\n0x8EAFB5CD\t0x23491\n0x8EAFB5CE\t0x234BF\n0x8EAFB5CF\t0x23492\n0x8EAFB5D0\t0x23493\n0x8EAFB5D1\t0x23494\n0x8EAFB5D2\t0x23495\n0x8EAFB5D3\t0x23496\n0x8EAFB5D4\t0x23497\n0x8EAFB5D5\t0x23498\n0x8EAFB5D6\t0x23499\n0x8EAFB5D7\t0x68BD\n0x8EAFB5D8\t0x2349A\n0x8EAFB5D9\t0x2349B\n0x8EAFB5DA\t0x2349C\n0x8EAFB5DB\t0x2349D\n0x8EAFB5DC\t0x2349E\n0x8EAFB5DD\t0x2349F\n0x8EAFB5DE\t0x234A0\n0x8EAFB5DF\t0x234A1\n0x8EAFB5E0\t0x234A2\n0x8EAFB5E1\t0x234A3\n0x8EAFB5E2\t0x234A4\n0x8EAFB5E3\t0x234A5\n0x8EAFB5E5\t0x234A6\n0x8EAFB5E6\t0x234A7\n0x8EAFB5E7\t0x238BF\n0x8EAFB5E8\t0x238C0\n0x8EAFB5E9\t0x238C1\n0x8EAFB5EA\t0x238C2\n0x8EAFB5EB\t0x238C3\n0x8EAFB5EC\t0x238C4\n0x8EAFB5ED\t0x238C5\n0x8EAFB5EE\t0x238C6\n0x8EAFB5EF\t0x23975\n0x8EAFB5F0\t0x23A43\n0x8EAFB5F1\t0x23A12\n0x8EAFB5F2\t0x23A9F\n0x8EAFB5F3\t0x23A91\n0x8EAFB5F4\t0x2F8F6\n0x8EAFB5F5\t0x23A92\n0x8EAFB5F6\t0x23A93\n0x8EAFB5F7\t0x23A94\n0x8EAFB5F8\t0x23B7E\n0x8EAFB5F9\t0x23B7F\n0x8EAFB5FA\t0x23B80\n0x8EAFB5FB\t0x23B81\n0x8EAFB5FC\t0x23B82\n0x8EAFB5FD\t0x23C4C\n0x8EAFB5FE\t0x23C63\n0x8EAFB6A1\t0x23DC0\n0x8EAFB6A2\t0x23DC1\n0x8EAFB6A3\t0x23DC2\n0x8EAFB6A4\t0x2423A\n0x8EAFB6A5\t0x23DC3\n0x8EAFB6A6\t0x23DC4\n0x8EAFB6A7\t0x23DC5\n0x8EAFB6A8\t0x23DC6\n0x8EAFB6A9\t0x6E15\n0x8EAFB6AA\t0x23DC7\n0x8EAFB6AC\t0x23DC8\n0x8EAFB6AD\t0x23D73\n0x8EAFB6AE\t0x23DC9\n0x8EAFB6AF\t0x23DCA\n0x8EAFB6B0\t0x23DCB\n0x8EAFB6B1\t0x23DCC\n0x8EAFB6B2\t0x23DCD\n0x8EAFB6B3\t0x3D0E\n0x8EAFB6B6\t0x23DCE\n0x8EAFB6B7\t0x23DCF\n0x8EAFB6B8\t0x23DD0\n0x8EAFB6B9\t0x23DD1\n0x8EAFB6BA\t0x23DD2\n0x8EAFB6BB\t0x23DD3\n0x8EAFB6BC\t0x23DD4\n0x8EAFB6BD\t0x23DD5\n0x8EAFB6BE\t0x2423B\n0x8EAFB6BF\t0x2423C\n0x8EAFB6C0\t0x2423D\n0x8EAFB6C1\t0x2423E\n0x8EAFB6C3\t0x2423F\n0x8EAFB6C4\t0x24240\n0x8EAFB6C5\t0x24241\n0x8EAFB6C6\t0x24242\n0x8EAFB6C7\t0x24243\n0x8EAFB6C8\t0x3DC1\n0x8EAFB6C9\t0x24244\n0x8EAFB6CA\t0x24245\n0x8EAFB6CB\t0x24259\n0x8EAFB6CC\t0x24246\n0x8EAFB6CD\t0x24247\n0x8EAFB6CE\t0x24248\n0x8EAFB6D0\t0x24249\n0x8EAFB6D1\t0x24513\n0x8EAFB6D2\t0x24582\n0x8EAFB6D3\t0x24583\n0x8EAFB6D4\t0x24666\n0x8EAFB6D5\t0x24667\n0x8EAFB6D6\t0x24965\n0x8EAFB6D7\t0x7413\n0x8EAFB6D8\t0x24966\n0x8EAFB6D9\t0x3ED9\n0x8EAFB6DA\t0x24975\n0x8EAFB6DB\t0x24974\n0x8EAFB6DC\t0x24967\n0x8EAFB6DD\t0x2496D\n0x8EAFB6DE\t0x24976\n0x8EAFB6DF\t0x24968\n0x8EAFB6E0\t0x24969\n0x8EAFB6E1\t0x2496A\n0x8EAFB6E2\t0x2496B\n0x8EAFB6E3\t0x2494F\n0x8EAFB6E4\t0x2496C\n0x8EAFB6E5\t0x24AF8\n0x8EAFB6E6\t0x24B45\n0x8EAFB6E7\t0x74F8\n0x8EAFB6E8\t0x24B46\n0x8EAFB6E9\t0x24BE4\n0x8EAFB6EA\t0x24C85\n0x8EAFB6EB\t0x24C6F\n0x8EAFB6EC\t0x24C70\n0x8EAFB6ED\t0x24D82\n0x8EAFB6EE\t0x24D83\n0x8EAFB6EF\t0x24D84\n0x8EAFB6F0\t0x24D8B\n0x8EAFB6F1\t0x24F2D\n0x8EAFB6F2\t0x24F68\n0x8EAFB6F3\t0x24F69\n0x8EAFB6F4\t0x24F77\n0x8EAFB6F5\t0x24F64\n0x8EAFB6F6\t0x24F6A\n0x8EAFB6F8\t0x24FF2\n0x8EAFB6F9\t0x24FE2\n0x8EAFB6FA\t0x25063\n0x8EAFB6FB\t0x25064\n0x8EAFB6FC\t0x25065\n0x8EAFB6FD\t0x25066\n0x8EAFB6FE\t0x7B3D\n0x8EAFB7A1\t0x25067\n0x8EAFB7A2\t0x25068\n0x8EAFB7A3\t0x76D8\n0x8EAFB7A5\t0x25172\n0x8EAFB7A6\t0x2517D\n0x8EAFB7A7\t0x25369\n0x8EAFB7A8\t0x25484\n0x8EAFB7A9\t0x25486\n0x8EAFB7AA\t0x25487\n0x8EAFB7AB\t0x25488\n0x8EAFB7AC\t0x2549E\n0x8EAFB7AE\t0x25489\n0x8EAFB7AF\t0x2548A\n0x8EAFB7B0\t0x25496\n0x8EAFB7B1\t0x2548B\n0x8EAFB7B2\t0x2548C\n0x8EAFB7B3\t0x2548D\n0x8EAFB7B4\t0x25679\n0x8EAFB7B5\t0x25683\n0x8EAFB7B6\t0x2567A\n0x8EAFB7B7\t0x2565D\n0x8EAFB7B8\t0x2567B\n0x8EAFB7BA\t0x2579F\n0x8EAFB7BB\t0x4148\n0x8EAFB7BC\t0x257A0\n0x8EAFB7BD\t0x257A1\n0x8EAFB7BE\t0x257A2\n0x8EAFB7BF\t0x79FC\n0x8EAFB7C0\t0x2596A\n0x8EAFB7C1\t0x2596B\n0x8EAFB7C2\t0x2596C\n0x8EAFB7C3\t0x2596D\n0x8EAFB7C4\t0x2596E\n0x8EAFB7C5\t0x25A78\n0x8EAFB7C7\t0x25A79\n0x8EAFB7C8\t0x25A7C\n0x8EAFB7C9\t0x25B21\n0x8EAFB7CA\t0x25B22\n0x8EAFB7CB\t0x25B23\n0x8EAFB7CC\t0x25B24\n0x8EAFB7CD\t0x7B39\n0x8EAFB7CE\t0x25B25\n0x8EAFB7CF\t0x25B26\n0x8EAFB7D0\t0x25E51\n0x8EAFB7D1\t0x25E52\n0x8EAFB7D2\t0x25E56\n0x8EAFB7D4\t0x7D4B\n0x8EAFB7D5\t0x25FE1\n0x8EAFB7D8\t0x25FD6\n0x8EAFB7D9\t0x25FD7\n0x8EAFB7DA\t0x25FD8\n0x8EAFB7DB\t0x25FD9\n0x8EAFB7DC\t0x262B5\n0x8EAFB7DD\t0x2636C\n0x8EAFB7DE\t0x2636F\n0x8EAFB7DF\t0x26370\n0x8EAFB7E0\t0x264BC\n0x8EAFB7E1\t0x264BD\n0x8EAFB7E2\t0x264ED\n0x8EAFB7E3\t0x2655B\n0x8EAFB7E4\t0x2655C\n0x8EAFB7E5\t0x2655D\n0x8EAFB7E6\t0x2655E\n0x8EAFB7E7\t0x26686\n0x8EAFB7E8\t0x26687\n0x8EAFB7E9\t0x266ED\n0x8EAFB7EB\t0x266EE\n0x8EAFB7ED\t0x2690E\n0x8EAFB7EE\t0x2690F\n0x8EAFB7F0\t0x26A2D\n0x8EAFB7F1\t0x26A2A\n0x8EAFB7F2\t0x26A2E\n0x8EAFB7F3\t0x26ACC\n0x8EAFB7F4\t0x26BF9\n0x8EAFB7F5\t0x26BFA\n0x8EAFB7F6\t0x26BFB\n0x8EAFB7F7\t0x26BFC\n0x8EAFB7F8\t0x83B9\n0x8EAFB7F9\t0x26BFD\n0x8EAFB7FA\t0x26C1B\n0x8EAFB7FB\t0x26BFE\n0x8EAFB7FC\t0x26BFF\n0x8EAFB7FD\t0x26C00\n0x8EAFB7FE\t0x26C01\n0x8EAFB8A1\t0x26C02\n0x8EAFB8A2\t0x26C03\n0x8EAFB8A3\t0x26C21\n0x8EAFB8A4\t0x26C04\n0x8EAFB8A5\t0x26C05\n0x8EAFB8A6\t0x26C06\n0x8EAFB8A7\t0x26C07\n0x8EAFB8A8\t0x26C08\n0x8EAFB8A9\t0x26C09\n0x8EAFB8AA\t0x26C0A\n0x8EAFB8AB\t0x26C0B\n0x8EAFB8AC\t0x26C0C\n0x8EAFB8AD\t0x26C0D\n0x8EAFB8AE\t0x26C0E\n0x8EAFB8AF\t0x26C0F\n0x8EAFB8B0\t0x26C10\n0x8EAFB8B1\t0x26C11\n0x8EAFB8B2\t0x26C12\n0x8EAFB8B3\t0x26C13\n0x8EAFB8B4\t0x26C14\n0x8EAFB8B5\t0x26C15\n0x8EAFB8B6\t0x2727B\n0x8EAFB8B7\t0x2727C\n0x8EAFB8B8\t0x2727D\n0x8EAFB8B9\t0x2727E\n0x8EAFB8BA\t0x86CF\n0x8EAFB8BB\t0x2727F\n0x8EAFB8BC\t0x27280\n0x8EAFB8BD\t0x27266\n0x8EAFB8BE\t0x27281\n0x8EAFB8BF\t0x27282\n0x8EAFB8C0\t0x27283\n0x8EAFB8C1\t0x275B2\n0x8EAFB8C3\t0x2767F\n0x8EAFB8C4\t0x27672\n0x8EAFB8C5\t0x2765A\n0x8EAFB8C6\t0x277EB\n0x8EAFB8C7\t0x27815\n0x8EAFB8C9\t0x27816\n0x8EAFB8CA\t0x2F9CA\n0x8EAFB8CB\t0x27817\n0x8EAFB8CD\t0x278C5\n0x8EAFB8CE\t0x278C6\n0x8EAFB8CF\t0x278C7\n0x8EAFB8D0\t0x27988\n0x8EAFB8D1\t0x27989\n0x8EAFB8D3\t0x2798A\n0x8EAFB8D4\t0x2798B\n0x8EAFB8D5\t0x2798C\n0x8EAFB8D6\t0x2798D\n0x8EAFB8D7\t0x27BDF\n0x8EAFB8D9\t0x27D3B\n0x8EAFB8DA\t0x27D3C\n0x8EAFB8DB\t0x27D3D\n0x8EAFB8DC\t0x27D3E\n0x8EAFB8DD\t0x27D3F\n0x8EAFB8DE\t0x27D40\n0x8EAFB8DF\t0x27D41\n0x8EAFB8E0\t0x27D42\n0x8EAFB8E1\t0x27E5C\n0x8EAFB8E2\t0x27EAF\n0x8EAFB8E3\t0x27EA9\n0x8EAFB8E4\t0x27EAA\n0x8EAFB8E5\t0x27EAB\n0x8EAFB8E6\t0x27EAC\n0x8EAFB8E7\t0x27EB5\n0x8EAFB8E8\t0x27EAD\n0x8EAFB8E9\t0x27EAE\n0x8EAFB8EA\t0x27FE2\n0x8EAFB8EB\t0x28224\n0x8EAFB8EC\t0x8EAE\n0x8EAFB8ED\t0x282C4\n0x8EAFB8EF\t0x284EA\n0x8EAFB8F0\t0x284D3\n0x8EAFB8F1\t0x284D4\n0x8EAFB8F2\t0x284D5\n0x8EAFB8F3\t0x28686\n0x8EAFB8F5\t0x28687\n0x8EAFB8F6\t0x286FD\n0x8EAFB8F7\t0x28805\n0x8EAFB8F8\t0x28949\n0x8EAFB8F9\t0x28C5F\n0x8EAFB8FA\t0x28CD3\n0x8EAFB8FB\t0x28CD5\n0x8EAFB8FC\t0x28E8A\n0x8EAFB8FD\t0x28E8B\n0x8EAFB8FE\t0x28E8C\n0x8EAFB9A1\t0x28E8D\n0x8EAFB9A2\t0x28E8E\n0x8EAFB9A3\t0x28E8F\n0x8EAFB9A4\t0x28E90\n0x8EAFB9A5\t0x28E91\n0x8EAFB9A6\t0x28E92\n0x8EAFB9A7\t0x28E93\n0x8EAFB9A8\t0x2907D\n0x8EAFB9A9\t0x2907E\n0x8EAFB9AA\t0x96EB\n0x8EAFB9AD\t0x291EC\n0x8EAFB9AE\t0x2925B\n0x8EAFB9AF\t0x29C87\n0x8EAFB9B0\t0x29C86\n0x8EAFB9B2\t0x20046\n0x8EAFB9B3\t0x20047\n0x8EAFB9B4\t0x20102\n0x8EAFB9B5\t0x2016D\n0x8EAFB9B6\t0x2016E\n0x8EAFB9B7\t0x2016F\n0x8EAFB9B8\t0x2030D\n0x8EAFB9B9\t0x2030E\n0x8EAFB9BA\t0x2030F\n0x8EAFB9BB\t0x20310\n0x8EAFB9BC\t0x20311\n0x8EAFB9BD\t0x20312\n0x8EAFB9BE\t0x20313\n0x8EAFB9BF\t0x20314\n0x8EAFB9C0\t0x2049F\n0x8EAFB9C1\t0x204A0\n0x8EAFB9C2\t0x204A1\n0x8EAFB9C3\t0x204A3\n0x8EAFB9C4\t0x20521\n0x8EAFB9C5\t0x20522\n0x8EAFB9C6\t0x2337C\n0x8EAFB9C7\t0x20595\n0x8EAFB9C8\t0x20596\n0x8EAFB9C9\t0x20661\n0x8EAFB9CA\t0x20667\n0x8EAFB9CB\t0x20791\n0x8EAFB9CC\t0x20792\n0x8EAFB9CD\t0x20793\n0x8EAFB9CE\t0x20794\n0x8EAFB9CF\t0x2088A\n0x8EAFB9D0\t0x2088B\n0x8EAFB9D1\t0x208F7\n0x8EAFB9D2\t0x20924\n0x8EAFB9D3\t0x209B0\n0x8EAFB9D4\t0x209B1\n0x8EAFB9D5\t0x20A8E\n0x8EAFB9D6\t0x20B04\n0x8EAFB9D7\t0x20B6A\n0x8EAFB9D8\t0x20B6B\n0x8EAFB9D9\t0x20B6C\n0x8EAFB9DA\t0x20B6D\n0x8EAFB9DB\t0x20DE8\n0x8EAFB9DC\t0x20E0C\n0x8EAFB9DD\t0x20DE9\n0x8EAFB9DE\t0x20DEA\n0x8EAFB9DF\t0x20E0D\n0x8EAFB9E1\t0x20DEB\n0x8EAFB9E2\t0x20DEC\n0x8EAFB9E3\t0x20DED\n0x8EAFB9E4\t0x20DEE\n0x8EAFB9E5\t0x20DEF\n0x8EAFB9E6\t0x20DF0\n0x8EAFB9E7\t0x20DF1\n0x8EAFB9E8\t0x20DF2\n0x8EAFB9E9\t0x20E16\n0x8EAFB9EA\t0x20DF3\n0x8EAFB9EB\t0x20E04\n0x8EAFB9EC\t0x20E1D\n0x8EAFB9ED\t0x20DF4\n0x8EAFB9EE\t0x20DF5\n0x8EAFB9EF\t0x20DF6\n0x8EAFB9F0\t0x20DF7\n0x8EAFB9F1\t0x55B0\n0x8EAFB9F2\t0x21202\n0x8EAFB9F3\t0x21203\n0x8EAFB9F4\t0x21204\n0x8EAFB9F5\t0x2139A\n0x8EAFB9F6\t0x2137C\n0x8EAFB9F7\t0x213C5\n0x8EAFB9F8\t0x2137D\n0x8EAFB9F9\t0x2137E\n0x8EAFB9FA\t0x2137F\n0x8EAFB9FB\t0x21380\n0x8EAFB9FC\t0x21381\n0x8EAFB9FD\t0x5840\n0x8EAFB9FE\t0x5842\n0x8EAFBAA1\t0x21382\n0x8EAFBAA2\t0x21383\n0x8EAFBAA3\t0x21384\n0x8EAFBAA4\t0x21385\n0x8EAFBAA5\t0x21386\n0x8EAFBAA6\t0x21387\n0x8EAFBAA7\t0x215AE\n0x8EAFBAA8\t0x2164D\n0x8EAFBAA9\t0x217B0\n0x8EAFBAAA\t0x217DC\n0x8EAFBAAB\t0x217B6\n0x8EAFBAAC\t0x217B7\n0x8EAFBAAD\t0x217B8\n0x8EAFBAAE\t0x217B9\n0x8EAFBAAF\t0x217BA\n0x8EAFBAB0\t0x217BB\n0x8EAFBAB1\t0x217DB\n0x8EAFBAB2\t0x217BC\n0x8EAFBAB3\t0x217BD\n0x8EAFBAB4\t0x217BE\n0x8EAFBAB6\t0x217BF\n0x8EAFBAB7\t0x217C0\n0x8EAFBAB8\t0x217C1\n0x8EAFBAB9\t0x217C2\n0x8EAFBABA\t0x217C3\n0x8EAFBABB\t0x217CE\n0x8EAFBABC\t0x3701\n0x8EAFBABD\t0x217D9\n0x8EAFBABE\t0x217C4\n0x8EAFBABF\t0x217C5\n0x8EAFBAC0\t0x217DA\n0x8EAFBAC1\t0x217C6\n0x8EAFBAC2\t0x217C7\n0x8EAFBAC3\t0x217C8\n0x8EAFBAC4\t0x217C9\n0x8EAFBAC5\t0x217CA\n0x8EAFBAC6\t0x2197E\n0x8EAFBAC7\t0x2197B\n0x8EAFBAC8\t0x21A4E\n0x8EAFBAC9\t0x21A4F\n0x8EAFBACA\t0x21A50\n0x8EAFBACB\t0x21A51\n0x8EAFBACC\t0x21A52\n0x8EAFBACD\t0x21A53\n0x8EAFBACE\t0x21A54\n0x8EAFBACF\t0x21A55\n0x8EAFBAD0\t0x21B8F\n0x8EAFBAD1\t0x21BFC\n0x8EAFBAD2\t0x21CA6\n0x8EAFBAD3\t0x21CA7\n0x8EAFBAD4\t0x21CA8\n0x8EAFBAD5\t0x21D23\n0x8EAFBAD6\t0x21E8B\n0x8EAFBAD8\t0x21E8C\n0x8EAFBAD9\t0x21E8D\n0x8EAFBADA\t0x21E8E\n0x8EAFBADB\t0x21E8F\n0x8EAFBADC\t0x21EA4\n0x8EAFBADD\t0x20599\n0x8EAFBADE\t0x22024\n0x8EAFBADF\t0x22046\n0x8EAFBAE0\t0x22047\n0x8EAFBAE1\t0x22048\n0x8EAFBAE2\t0x220FD\n0x8EAFBAE3\t0x220FE\n0x8EAFBAE5\t0x2226E\n0x8EAFBAE6\t0x2227C\n0x8EAFBAE7\t0x2226F\n0x8EAFBAE8\t0x22270\n0x8EAFBAE9\t0x22271\n0x8EAFBAEA\t0x22272\n0x8EAFBAEB\t0x22329\n0x8EAFBAEC\t0x2232A\n0x8EAFBAED\t0x2235F\n0x8EAFBAEE\t0x224A2\n0x8EAFBAEF\t0x22530\n0x8EAFBAF0\t0x2252B\n0x8EAFBAF1\t0x22761\n0x8EAFBAF2\t0x22702\n0x8EAFBAF3\t0x22703\n0x8EAFBAF4\t0x22704\n0x8EAFBAF5\t0x22705\n0x8EAFBAF6\t0x22706\n0x8EAFBAF7\t0x22707\n0x8EAFBAF9\t0x22708\n0x8EAFBAFA\t0x22709\n0x8EAFBAFB\t0x22762\n0x8EAFBAFC\t0x2270A\n0x8EAFBAFD\t0x2270B\n0x8EAFBAFE\t0x2270C\n0x8EAFBBA1\t0x2270D\n0x8EAFBBA2\t0x2270E\n0x8EAFBBA3\t0x22763\n0x8EAFBBA4\t0x22727\n0x8EAFBBA5\t0x2270F\n0x8EAFBBA7\t0x2271B\n0x8EAFBBA8\t0x22764\n0x8EAFBBA9\t0x22710\n0x8EAFBBAA\t0x22711\n0x8EAFBBAB\t0x22781\n0x8EAFBBAC\t0x22712\n0x8EAFBBAD\t0x22765\n0x8EAFBBAE\t0x22713\n0x8EAFBBAF\t0x229CE\n0x8EAFBBB0\t0x22C29\n0x8EAFBBB1\t0x22BC4\n0x8EAFBBB2\t0x22C2A\n0x8EAFBBB4\t0x22C2B\n0x8EAFBBB5\t0x22C2C\n0x8EAFBBB6\t0x22C2D\n0x8EAFBBB7\t0x22C2E\n0x8EAFBBB8\t0x22C2F\n0x8EAFBBB9\t0x22C30\n0x8EAFBBBA\t0x22C31\n0x8EAFBBBB\t0x22C32\n0x8EAFBBBC\t0x22C33\n0x8EAFBBBD\t0x22C34\n0x8EAFBBBF\t0x22C35\n0x8EAFBBC0\t0x22C36\n0x8EAFBBC1\t0x22BE3\n0x8EAFBBC2\t0x22C37\n0x8EAFBBC3\t0x22C38\n0x8EAFBBC4\t0x22C39\n0x8EAFBBC5\t0x22C3A\n0x8EAFBBC6\t0x22C3B\n0x8EAFBBC7\t0x22C4D\n0x8EAFBBC8\t0x22C3C\n0x8EAFBBC9\t0x22C3D\n0x8EAFBBCA\t0x22C3E\n0x8EAFBBCC\t0x22ED0\n0x8EAFBBCD\t0x22ED1\n0x8EAFBBCE\t0x23055\n0x8EAFBBCF\t0x23102\n0x8EAFBBD0\t0x23104\n0x8EAFBBD1\t0x231FC\n0x8EAFBBD2\t0x23207\n0x8EAFBBD3\t0x231FD\n0x8EAFBBD4\t0x231FE\n0x8EAFBBD6\t0x231FF\n0x8EAFBBD7\t0x23200\n0x8EAFBBD8\t0x23208\n0x8EAFBBD9\t0x23201\n0x8EAFBBDA\t0x23202\n0x8EAFBBDB\t0x23235\n0x8EAFBBDC\t0x23203\n0x8EAFBBDD\t0x23204\n0x8EAFBBDF\t0x2333B\n0x8EAFBBE0\t0x23389\n0x8EAFBBE1\t0x23381\n0x8EAFBBE2\t0x23382\n0x8EAFBBE3\t0x26733\n0x8EAFBBE4\t0x234EB\n0x8EAFBBE5\t0x234EC\n0x8EAFBBE7\t0x234ED\n0x8EAFBBE8\t0x234EE\n0x8EAFBBE9\t0x234EF\n0x8EAFBBEB\t0x234F0\n0x8EAFBBEC\t0x234F1\n0x8EAFBBED\t0x234F2\n0x8EAFBBEE\t0x692B\n0x8EAFBBEF\t0x234F3\n0x8EAFBBF0\t0x6916\n0x8EAFBBF1\t0x234F4\n0x8EAFBBF2\t0x234F5\n0x8EAFBBF3\t0x2004B\n0x8EAFBBF4\t0x234F6\n0x8EAFBBF5\t0x234F7\n0x8EAFBBF6\t0x234F8\n0x8EAFBBF7\t0x234F9\n0x8EAFBBF8\t0x234FA\n0x8EAFBBF9\t0x234FB\n0x8EAFBBFA\t0x234FC\n0x8EAFBBFB\t0x234FD\n0x8EAFBBFC\t0x234FE\n0x8EAFBBFD\t0x234FF\n0x8EAFBBFE\t0x23500\n0x8EAFBCA1\t0x691B\n0x8EAFBCA2\t0x23501\n0x8EAFBCA3\t0x23502\n0x8EAFBCA4\t0x23503\n0x8EAFBCA5\t0x23504\n0x8EAFBCA6\t0x23505\n0x8EAFBCA7\t0x23506\n0x8EAFBCA8\t0x23507\n0x8EAFBCA9\t0x6927\n0x8EAFBCAA\t0x23508\n0x8EAFBCAB\t0x23509\n0x8EAFBCAC\t0x2350A\n0x8EAFBCAD\t0x2350B\n0x8EAFBCAE\t0x2350C\n0x8EAFBCAF\t0x2350D\n0x8EAFBCB0\t0x238D7\n0x8EAFBCB1\t0x238D8\n0x8EAFBCB2\t0x23A29\n0x8EAFBCB3\t0x23A9C\n0x8EAFBCB4\t0x23AF8\n0x8EAFBCB5\t0x23B98\n0x8EAFBCB6\t0x23BA4\n0x8EAFBCB7\t0x23B99\n0x8EAFBCB8\t0x23B9A\n0x8EAFBCB9\t0x23B9B\n0x8EAFBCBA\t0x23B97\n0x8EAFBCBB\t0x23B9C\n0x8EAFBCBC\t0x6BF5\n0x8EAFBCBD\t0x23B9D\n0x8EAFBCBF\t0x23B9E\n0x8EAFBCC0\t0x23B9F\n0x8EAFBCC1\t0x23C65\n0x8EAFBCC2\t0x23DD6\n0x8EAFBCC3\t0x3D20\n0x8EAFBCC4\t0x23E32\n0x8EAFBCC5\t0x23E33\n0x8EAFBCC6\t0x23E34\n0x8EAFBCC7\t0x6E82\n0x8EAFBCC8\t0x23E35\n0x8EAFBCC9\t0x23E36\n0x8EAFBCCA\t0x23E37\n0x8EAFBCCB\t0x23DD7\n0x8EAFBCCD\t0x23DD8\n0x8EAFBCCE\t0x23E38\n0x8EAFBCCF\t0x23E39\n0x8EAFBCD0\t0x23E3A\n0x8EAFBCD1\t0x23E3B\n0x8EAFBCD2\t0x23E3C\n0x8EAFBCD3\t0x23E3D\n0x8EAFBCD4\t0x23E3E\n0x8EAFBCD5\t0x23E3F\n0x8EAFBCD6\t0x23E40\n0x8EAFBCD7\t0x23DD9\n0x8EAFBCD8\t0x23E41\n0x8EAFBCD9\t0x23E42\n0x8EAFBCDA\t0x3D21\n0x8EAFBCDB\t0x23E43\n0x8EAFBCDC\t0x23E44\n0x8EAFBCDD\t0x6E7A\n0x8EAFBCDE\t0x2427C\n0x8EAFBCDF\t0x2427D\n0x8EAFBCE0\t0x2427E\n0x8EAFBCE1\t0x2427F\n0x8EAFBCE2\t0x24280\n0x8EAFBCE3\t0x24281\n0x8EAFBCE4\t0x24282\n0x8EAFBCE6\t0x24283\n0x8EAFBCE7\t0x24284\n0x8EAFBCE8\t0x24285\n0x8EAFBCE9\t0x24286\n0x8EAFBCEA\t0x242A5\n0x8EAFBCEB\t0x24287\n0x8EAFBCEC\t0x24288\n0x8EAFBCED\t0x24289\n0x8EAFBCEE\t0x2428A\n0x8EAFBCEF\t0x2428B\n0x8EAFBCF0\t0x2428C\n0x8EAFBCF1\t0x2428D\n0x8EAFBCF2\t0x2428E\n0x8EAFBCF5\t0x2428F\n0x8EAFBCF7\t0x24290\n0x8EAFBCF8\t0x24291\n0x8EAFBCF9\t0x24292\n0x8EAFBCFA\t0x24293\n0x8EAFBCFB\t0x24294\n0x8EAFBCFC\t0x24295\n0x8EAFBCFE\t0x7129\n0x8EAFBDA1\t0x24296\n0x8EAFBDA2\t0x24556\n0x8EAFBDA3\t0x24557\n0x8EAFBDA4\t0x245E1\n0x8EAFBDA5\t0x2460E\n0x8EAFBDA6\t0x2460F\n0x8EAFBDA7\t0x2467A\n0x8EAFBDA8\t0x2467B\n0x8EAFBDA9\t0x2468B\n0x8EAFBDAA\t0x247F2\n0x8EAFBDAB\t0x247F3\n0x8EAFBDAC\t0x24993\n0x8EAFBDAD\t0x24994\n0x8EAFBDAE\t0x24995\n0x8EAFBDAF\t0x24996\n0x8EAFBDB0\t0x24997\n0x8EAFBDB1\t0x249AD\n0x8EAFBDB2\t0x24998\n0x8EAFBDB3\t0x249AB\n0x8EAFBDB4\t0x2497B\n0x8EAFBDB5\t0x24999\n0x8EAFBDB6\t0x2499A\n0x8EAFBDB7\t0x2499B\n0x8EAFBDB8\t0x24985\n0x8EAFBDB9\t0x2499C\n0x8EAFBDBA\t0x2499D\n0x8EAFBDBB\t0x3EDA\n0x8EAFBDBD\t0x249AC\n0x8EAFBDBE\t0x24979\n0x8EAFBDBF\t0x2499E\n0x8EAFBDC0\t0x249A4\n0x8EAFBDC1\t0x24AFD\n0x8EAFBDC2\t0x24BEB\n0x8EAFBDC3\t0x24BEA\n0x8EAFBDC4\t0x24C8F\n0x8EAFBDC5\t0x24C90\n0x8EAFBDC6\t0x24C86\n0x8EAFBDC7\t0x24C87\n0x8EAFBDC8\t0x24C88\n0x8EAFBDC9\t0x24DAC\n0x8EAFBDCA\t0x24DAD\n0x8EAFBDCB\t0x24FEC\n0x8EAFBDCC\t0x25073\n0x8EAFBDCD\t0x25074\n0x8EAFBDCF\t0x251AA\n0x8EAFBDD0\t0x251AB\n0x8EAFBDD1\t0x251AC\n0x8EAFBDD2\t0x253D1\n0x8EAFBDD3\t0x253D7\n0x8EAFBDD4\t0x254B9\n0x8EAFBDD5\t0x254BA\n0x8EAFBDD6\t0x254BB\n0x8EAFBDD7\t0x254BC\n0x8EAFBDD8\t0x2568E\n0x8EAFBDD9\t0x2568F\n0x8EAFBDDA\t0x25690\n0x8EAFBDDB\t0x2567C\n0x8EAFBDDC\t0x25691\n0x8EAFBDDD\t0x25692\n0x8EAFBDDE\t0x25693\n0x8EAFBDDF\t0x25694\n0x8EAFBDE0\t0x2F954\n0x8EAFBDE1\t0x2569A\n0x8EAFBDE2\t0x25695\n0x8EAFBDE3\t0x25696\n0x8EAFBDE4\t0x25697\n0x8EAFBDE5\t0x257BD\n0x8EAFBDE6\t0x257C7\n0x8EAFBDE7\t0x257BE\n0x8EAFBDE9\t0x257BF\n0x8EAFBDEB\t0x25993\n0x8EAFBDEC\t0x21A5E\n0x8EAFBDED\t0x25A86\n0x8EAFBDEE\t0x25A87\n0x8EAFBDEF\t0x25A88\n0x8EAFBDF0\t0x25A89\n0x8EAFBDF1\t0x25B41\n0x8EAFBDF2\t0x25B42\n0x8EAFBDF3\t0x25B43\n0x8EAFBDF4\t0x25B44\n0x8EAFBDF5\t0x25B45\n0x8EAFBDF6\t0x25B46\n0x8EAFBDF7\t0x25B4A\n0x8EAFBDF8\t0x25B47\n0x8EAFBDF9\t0x25B48\n0x8EAFBDFA\t0x25B49\n0x8EAFBDFB\t0x25E6B\n0x8EAFBDFC\t0x25E66\n0x8EAFBDFE\t0x25E67\n0x8EAFBEA1\t0x7CAB\n0x8EAFBEA2\t0x25E68\n0x8EAFBEA3\t0x7CAC\n0x8EAFBEA5\t0x25FFD\n0x8EAFBEA6\t0x25FFE\n0x8EAFBEA7\t0x25FFF\n0x8EAFBEA8\t0x26000\n0x8EAFBEA9\t0x26001\n0x8EAFBEAA\t0x26002\n0x8EAFBEAB\t0x26003\n0x8EAFBEAC\t0x26004\n0x8EAFBEAD\t0x26005\n0x8EAFBEAE\t0x26006\n0x8EAFBEAF\t0x26233\n0x8EAFBEB0\t0x262C2\n0x8EAFBEB1\t0x262D0\n0x8EAFBEB2\t0x2F974\n0x8EAFBEB3\t0x26395\n0x8EAFBEB4\t0x26396\n0x8EAFBEB5\t0x26435\n0x8EAFBEB6\t0x26436\n0x8EAFBEB7\t0x26567\n0x8EAFBEB8\t0x26568\n0x8EAFBEB9\t0x26569\n0x8EAFBEBA\t0x2656A\n0x8EAFBEBB\t0x26572\n0x8EAFBEBC\t0x2656B\n0x8EAFBEBD\t0x2656C\n0x8EAFBEBE\t0x2656D\n0x8EAFBEBF\t0x2656E\n0x8EAFBEC0\t0x2656F\n0x8EAFBEC1\t0x26722\n0x8EAFBEC4\t0x26723\n0x8EAFBEC5\t0x26741\n0x8EAFBEC6\t0x26724\n0x8EAFBEC7\t0x26725\n0x8EAFBEC8\t0x26726\n0x8EAFBEC9\t0x26727\n0x8EAFBECA\t0x26728\n0x8EAFBECB\t0x26729\n0x8EAFBECC\t0x266B7\n0x8EAFBED0\t0x269DA\n0x8EAFBED1\t0x26ACF\n0x8EAFBED2\t0x26ADA\n0x8EAFBED3\t0x26C89\n0x8EAFBED4\t0x26CB7\n0x8EAFBED5\t0x26C8A\n0x8EAFBED6\t0x26C8B\n0x8EAFBED7\t0x26D5E\n0x8EAFBED8\t0x26C8C\n0x8EAFBEDA\t0x26C8D\n0x8EAFBEDB\t0x26C8E\n0x8EAFBEDC\t0x26C8F\n0x8EAFBEDD\t0x26C90\n0x8EAFBEDE\t0x26C91\n0x8EAFBEDF\t0x26C92\n0x8EAFBEE0\t0x26C93\n0x8EAFBEE1\t0x26C94\n0x8EAFBEE2\t0x26CB6\n0x8EAFBEE3\t0x26C95\n0x8EAFBEE4\t0x26C96\n0x8EAFBEE5\t0x26C97\n0x8EAFBEE6\t0x83F7\n0x8EAFBEE8\t0x26C98\n0x8EAFBEE9\t0x26C99\n0x8EAFBEEA\t0x26C9A\n0x8EAFBEEB\t0x44EA\n0x8EAFBEED\t0x26C9B\n0x8EAFBEEE\t0x26CBD\n0x8EAFBEEF\t0x26C9C\n0x8EAFBEF0\t0x26C9D\n0x8EAFBEF1\t0x26C9E\n0x8EAFBEF2\t0x26C9F\n0x8EAFBEF3\t0x26CC0\n0x8EAFBEF4\t0x26CA0\n0x8EAFBEF5\t0x26CA1\n0x8EAFBEF6\t0x26CA2\n0x8EAFBEF7\t0x26CA3\n0x8EAFBEF8\t0x26CA4\n0x8EAFBEF9\t0x26CA5\n0x8EAFBEFA\t0x26CA6\n0x8EAFBEFB\t0x26CA7\n0x8EAFBEFC\t0x26CA8\n0x8EAFBEFD\t0x26CA9\n0x8EAFBEFE\t0x26CAA\n0x8EAFBFA2\t0x271B4\n0x8EAFBFA3\t0x271B5\n0x8EAFBFA4\t0x271B6\n0x8EAFBFA5\t0x272B9\n0x8EAFBFA6\t0x272BA\n0x8EAFBFA7\t0x272BB\n0x8EAFBFA8\t0x27291\n0x8EAFBFA9\t0x272BC\n0x8EAFBFAA\t0x275EE\n0x8EAFBFAB\t0x275EF\n0x8EAFBFAC\t0x27696\n0x8EAFBFAD\t0x27697\n0x8EAFBFAE\t0x27673\n0x8EAFBFAF\t0x27698\n0x8EAFBFB0\t0x27699\n0x8EAFBFB1\t0x277ED\n0x8EAFBFB2\t0x277EE\n0x8EAFBFB3\t0x278DE\n0x8EAFBFB4\t0x279B0\n0x8EAFBFB5\t0x279B1\n0x8EAFBFB6\t0x279B2\n0x8EAFBFB7\t0x279B3\n0x8EAFBFB8\t0x279B4\n0x8EAFBFB9\t0x279B5\n0x8EAFBFBA\t0x279B6\n0x8EAFBFBB\t0x2F9CE\n0x8EAFBFBC\t0x279B7\n0x8EAFBFBD\t0x27BE3\n0x8EAFBFBE\t0x27CB9\n0x8EAFBFBF\t0x27D55\n0x8EAFBFC0\t0x27D7E\n0x8EAFBFC1\t0x27D56\n0x8EAFBFC2\t0x27D57\n0x8EAFBFC3\t0x27D58\n0x8EAFBFC4\t0x27D59\n0x8EAFBFC5\t0x27D5A\n0x8EAFBFC7\t0x27EC4\n0x8EAFBFC8\t0x27EC5\n0x8EAFBFC9\t0x27EC6\n0x8EAFBFCA\t0x27EC7\n0x8EAFBFCB\t0x27EC8\n0x8EAFBFCC\t0x27EC9\n0x8EAFBFCD\t0x27EEE\n0x8EAFBFCE\t0x27ECF\n0x8EAFBFCF\t0x27ECA\n0x8EAFBFD0\t0x27ECB\n0x8EAFBFD1\t0x27ECC\n0x8EAFBFD2\t0x28009\n0x8EAFBFD3\t0x2F9DA\n0x8EAFBFD4\t0x28003\n0x8EAFBFD5\t0x2822F\n0x8EAFBFD6\t0x28230\n0x8EAFBFD7\t0x28231\n0x8EAFBFD8\t0x28232\n0x8EAFBFD9\t0x2850E\n0x8EAFBFDA\t0x2850F\n0x8EAFBFDB\t0x28510\n0x8EAFBFDC\t0x28511\n0x8EAFBFDD\t0x28512\n0x8EAFBFDF\t0x28513\n0x8EAFBFE0\t0x28514\n0x8EAFBFE1\t0x28515\n0x8EAFBFE2\t0x284FF\n0x8EAFBFE3\t0x2871F\n0x8EAFBFE4\t0x28720\n0x8EAFBFE5\t0x28721\n0x8EAFBFE6\t0x2872D\n0x8EAFBFE8\t0x2881B\n0x8EAFBFE9\t0x2881C\n0x8EAFBFEA\t0x2881D\n0x8EAFBFEB\t0x2881E\n0x8EAFBFEC\t0x28953\n0x8EAFBFED\t0x28954\n0x8EAFBFEE\t0x28955\n0x8EAFBFEF\t0x28956\n0x8EAFBFF0\t0x28964\n0x8EAFBFF1\t0x28959\n0x8EAFBFF2\t0x28957\n0x8EAFBFF4\t0x28958\n0x8EAFBFF5\t0x28C6B\n0x8EAFBFF6\t0x4989\n0x8EAFBFF8\t0x28CE7\n0x8EAFBFF9\t0x28CE8\n0x8EAFBFFA\t0x28CE9\n0x8EAFBFFB\t0x28CEA\n0x8EAFBFFC\t0x28CEB\n0x8EAFBFFD\t0x28CEC\n0x8EAFBFFE\t0x9596\n0x8EAFC0A1\t0x28CED\n0x8EAFC0A2\t0x28EB1\n0x8EAFC0A3\t0x28EB4\n0x8EAFC0A5\t0x2908A\n0x8EAFC0A6\t0x2908D\n0x8EAFC0A7\t0x2908C\n0x8EAFC0A8\t0x291F2\n0x8EAFC0A9\t0x291F3\n0x8EAFC0AB\t0x22108\n0x8EAFC0AC\t0x29417\n0x8EAFC0AD\t0x4AB2\n0x8EAFC0AE\t0x2959F\n0x8EAFC0AF\t0x296A0\n0x8EAFC0B1\t0x2986D\n0x8EAFC0B2\t0x2307D\n0x8EAFC0B3\t0x29F90\n0x8EAFC0B4\t0x2A5C4\n0x8EAFC0B5\t0x2004C\n0x8EAFC0B6\t0x20174\n0x8EAFC0B7\t0x20175\n0x8EAFC0B8\t0x20176\n0x8EAFC0B9\t0x20349\n0x8EAFC0BA\t0x2034A\n0x8EAFC0BB\t0x2034B\n0x8EAFC0BC\t0x2034C\n0x8EAFC0BD\t0x2034D\n0x8EAFC0BE\t0x2034E\n0x8EAFC0BF\t0x2034F\n0x8EAFC0C0\t0x20350\n0x8EAFC0C1\t0x20351\n0x8EAFC0C2\t0x20352\n0x8EAFC0C3\t0x20353\n0x8EAFC0C4\t0x20354\n0x8EAFC0C5\t0x20355\n0x8EAFC0C6\t0x20356\n0x8EAFC0C7\t0x204A4\n0x8EAFC0C8\t0x204A9\n0x8EAFC0C9\t0x2052A\n0x8EAFC0CA\t0x2052B\n0x8EAFC0CB\t0x207B3\n0x8EAFC0CC\t0x207C1\n0x8EAFC0CD\t0x20898\n0x8EAFC0CE\t0x208FB\n0x8EAFC0CF\t0x208FC\n0x8EAFC0D0\t0x209BC\n0x8EAFC0D1\t0x20A96\n0x8EAFC0D2\t0x20B0A\n0x8EAFC0D4\t0x20EA2\n0x8EAFC0D6\t0x20E81\n0x8EAFC0D7\t0x20E82\n0x8EAFC0D8\t0x20E83\n0x8EAFC0D9\t0x20E84\n0x8EAFC0DA\t0x20E85\n0x8EAFC0DB\t0x20E86\n0x8EAFC0DC\t0x20E87\n0x8EAFC0DD\t0x20E88\n0x8EAFC0DE\t0x20E89\n0x8EAFC0DF\t0x20E8A\n0x8EAFC0E0\t0x20E8B\n0x8EAFC0E1\t0x20E8C\n0x8EAFC0E2\t0x55F1\n0x8EAFC0E3\t0x20E8D\n0x8EAFC0E4\t0x20ED1\n0x8EAFC0E5\t0x21214\n0x8EAFC0E6\t0x213C9\n0x8EAFC0E7\t0x213CA\n0x8EAFC0E8\t0x213CB\n0x8EAFC0E9\t0x29AFD\n0x8EAFC0EA\t0x213CC\n0x8EAFC0EB\t0x213CD\n0x8EAFC0EC\t0x213CE\n0x8EAFC0ED\t0x213CF\n0x8EAFC0EE\t0x213D0\n0x8EAFC0EF\t0x213D1\n0x8EAFC0F0\t0x213D2\n0x8EAFC0F1\t0x213D3\n0x8EAFC0F2\t0x213D4\n0x8EAFC0F3\t0x213D5\n0x8EAFC0F4\t0x21571\n0x8EAFC0F5\t0x2004D\n0x8EAFC0F6\t0x21662\n0x8EAFC0F7\t0x2180E\n0x8EAFC0F8\t0x217FE\n0x8EAFC0F9\t0x217FF\n0x8EAFC0FA\t0x21800\n0x8EAFC0FC\t0x21801\n0x8EAFC0FD\t0x21802\n0x8EAFC0FE\t0x21803\n0x8EAFC1A1\t0x21815\n0x8EAFC1A2\t0x21804\n0x8EAFC1A3\t0x21805\n0x8EAFC1A5\t0x21987\n0x8EAFC1A6\t0x21989\n0x8EAFC1A7\t0x21A6E\n0x8EAFC1A8\t0x21A6F\n0x8EAFC1A9\t0x21A70\n0x8EAFC1AA\t0x21A71\n0x8EAFC1AB\t0x2F86E\n0x8EAFC1AC\t0x21A72\n0x8EAFC1AD\t0x21A73\n0x8EAFC1AE\t0x21A74\n0x8EAFC1AF\t0x21B9D\n0x8EAFC1B0\t0x21CB8\n0x8EAFC1B1\t0x21CB9\n0x8EAFC1B2\t0x21CBA\n0x8EAFC1B3\t0x21EC2\n0x8EAFC1B4\t0x21EC3\n0x8EAFC1B5\t0x21ED5\n0x8EAFC1B6\t0x21EC4\n0x8EAFC1B7\t0x21EC0\n0x8EAFC1B8\t0x21EC5\n0x8EAFC1B9\t0x21EC6\n0x8EAFC1BA\t0x2228A\n0x8EAFC1BB\t0x2228B\n0x8EAFC1BC\t0x2228C\n0x8EAFC1BD\t0x22364\n0x8EAFC1BE\t0x25B8C\n0x8EAFC1BF\t0x5F41\n0x8EAFC1C0\t0x2240D\n0x8EAFC1C1\t0x224A8\n0x8EAFC1C2\t0x2253B\n0x8EAFC1C3\t0x2253C\n0x8EAFC1C4\t0x2253D\n0x8EAFC1C5\t0x2253E\n0x8EAFC1C6\t0x2253F\n0x8EAFC1C7\t0x22540\n0x8EAFC1C8\t0x22766\n0x8EAFC1C9\t0x227CB\n0x8EAFC1CA\t0x227B7\n0x8EAFC1CB\t0x227B8\n0x8EAFC1CC\t0x227B9\n0x8EAFC1CD\t0x227BA\n0x8EAFC1CE\t0x22767\n0x8EAFC1CF\t0x227BB\n0x8EAFC1D0\t0x22768\n0x8EAFC1D1\t0x22769\n0x8EAFC1D2\t0x2276A\n0x8EAFC1D3\t0x227BC\n0x8EAFC1D5\t0x229DB\n0x8EAFC1D6\t0x22C81\n0x8EAFC1D7\t0x22C82\n0x8EAFC1D8\t0x22C83\n0x8EAFC1D9\t0x22C84\n0x8EAFC1DA\t0x22C85\n0x8EAFC1DB\t0x22C86\n0x8EAFC1DC\t0x22C87\n0x8EAFC1DD\t0x22C88\n0x8EAFC1DE\t0x22C89\n0x8EAFC1DF\t0x2F8BF\n0x8EAFC1E0\t0x22C8A\n0x8EAFC1E1\t0x22C8B\n0x8EAFC1E3\t0x22C8C\n0x8EAFC1E4\t0x22C8D\n0x8EAFC1E5\t0x22C8E\n0x8EAFC1E6\t0x22C8F\n0x8EAFC1E7\t0x22C90\n0x8EAFC1E8\t0x22CA1\n0x8EAFC1E9\t0x22C91\n0x8EAFC1EA\t0x22ED6\n0x8EAFC1EB\t0x22F9F\n0x8EAFC1EC\t0x23058\n0x8EAFC1ED\t0x23085\n0x8EAFC1EE\t0x2310B\n0x8EAFC1EF\t0x2310C\n0x8EAFC1F0\t0x23237\n0x8EAFC1F1\t0x23238\n0x8EAFC1F2\t0x2F8CE\n0x8EAFC1F3\t0x23239\n0x8EAFC1F4\t0x2323A\n0x8EAFC1F5\t0x2323B\n0x8EAFC1F6\t0x2323C\n0x8EAFC1F7\t0x2323D\n0x8EAFC1F8\t0x2323E\n0x8EAFC1F9\t0x23240\n0x8EAFC1FA\t0x23241\n0x8EAFC1FB\t0x23242\n0x8EAFC1FD\t0x23243\n0x8EAFC1FE\t0x2338A\n0x8EAFC2A1\t0x2338B\n0x8EAFC2A2\t0x23590\n0x8EAFC2A3\t0x23559\n0x8EAFC2A4\t0x2355B\n0x8EAFC2A5\t0x2355C\n0x8EAFC2A6\t0x2355D\n0x8EAFC2A7\t0x2355E\n0x8EAFC2A8\t0x698A\n0x8EAFC2A9\t0x2355F\n0x8EAFC2AA\t0x23560\n0x8EAFC2AB\t0x23561\n0x8EAFC2AC\t0x23562\n0x8EAFC2AD\t0x23563\n0x8EAFC2AE\t0x23564\n0x8EAFC2AF\t0x23593\n0x8EAFC2B0\t0x23565\n0x8EAFC2B1\t0x23566\n0x8EAFC2B2\t0x23567\n0x8EAFC2B3\t0x23568\n0x8EAFC2B4\t0x23569\n0x8EAFC2B5\t0x2356A\n0x8EAFC2B6\t0x2356B\n0x8EAFC2B7\t0x23595\n0x8EAFC2B8\t0x2356C\n0x8EAFC2B9\t0x2356D\n0x8EAFC2BA\t0x2356E\n0x8EAFC2BB\t0x2356F\n0x8EAFC2BC\t0x698C\n0x8EAFC2BD\t0x23570\n0x8EAFC2BE\t0x23571\n0x8EAFC2BF\t0x23572\n0x8EAFC2C0\t0x23573\n0x8EAFC2C1\t0x23574\n0x8EAFC2C2\t0x23575\n0x8EAFC2C3\t0x23576\n0x8EAFC2C4\t0x23577\n0x8EAFC2C5\t0x23578\n0x8EAFC2C6\t0x23579\n0x8EAFC2C7\t0x6980\n0x8EAFC2C8\t0x2357A\n0x8EAFC2C9\t0x697F\n0x8EAFC2CA\t0x2357B\n0x8EAFC2CB\t0x235A9\n0x8EAFC2CC\t0x2357C\n0x8EAFC2CD\t0x238F1\n0x8EAFC2CE\t0x238EB\n0x8EAFC2CF\t0x2398A\n0x8EAFC2D0\t0x23A3D\n0x8EAFC2D1\t0x23AA6\n0x8EAFC2D2\t0x23AA7\n0x8EAFC2D3\t0x23BBA\n0x8EAFC2D5\t0x23BBB\n0x8EAFC2D6\t0x23BBC\n0x8EAFC2D7\t0x23BBD\n0x8EAFC2D8\t0x23E91\n0x8EAFC2D9\t0x23E92\n0x8EAFC2DA\t0x23E93\n0x8EAFC2DB\t0x23E94\n0x8EAFC2DC\t0x23E95\n0x8EAFC2DD\t0x23E96\n0x8EAFC2DE\t0x23E97\n0x8EAFC2DF\t0x23DDA\n0x8EAFC2E0\t0x23E98\n0x8EAFC2E1\t0x23E99\n0x8EAFC2E2\t0x23E9A\n0x8EAFC2E5\t0x23E9B\n0x8EAFC2E6\t0x23E9C\n0x8EAFC2E7\t0x23E9D\n0x8EAFC2E8\t0x23E9E\n0x8EAFC2E9\t0x23E9F\n0x8EAFC2EA\t0x23EA0\n0x8EAFC2EB\t0x23EBF\n0x8EAFC2EC\t0x23EA1\n0x8EAFC2ED\t0x23EA2\n0x8EAFC2EE\t0x23EA3\n0x8EAFC2EF\t0x23EA4\n0x8EAFC2F0\t0x23EA5\n0x8EAFC2F1\t0x23EA6\n0x8EAFC2F2\t0x23EA7\n0x8EAFC2F3\t0x23E5B\n0x8EAFC2F4\t0x2F90D\n0x8EAFC2F5\t0x23EA8\n0x8EAFC2F6\t0x242CB\n0x8EAFC2F8\t0x3DDA\n0x8EAFC2F9\t0x242CC\n0x8EAFC2FA\t0x2434F\n0x8EAFC2FB\t0x242CD\n0x8EAFC2FC\t0x242CE\n0x8EAFC2FD\t0x242CF\n0x8EAFC2FE\t0x2434E\n0x8EAFC3A1\t0x242D0\n0x8EAFC3A2\t0x242D1\n0x8EAFC3A3\t0x242D2\n0x8EAFC3A5\t0x242D3\n0x8EAFC3A6\t0x242D4\n0x8EAFC3A7\t0x242D5\n0x8EAFC3A8\t0x242D6\n0x8EAFC3A9\t0x242D7\n0x8EAFC3AA\t0x242D8\n0x8EAFC3AB\t0x242D9\n0x8EAFC3AC\t0x242FA\n0x8EAFC3AD\t0x242DA\n0x8EAFC3AE\t0x242DB\n0x8EAFC3AF\t0x2F91C\n0x8EAFC3B0\t0x242DC\n0x8EAFC3B3\t0x242DD\n0x8EAFC3B4\t0x242DE\n0x8EAFC3B5\t0x242DF\n0x8EAFC3B6\t0x242E0\n0x8EAFC3B7\t0x242E1\n0x8EAFC3B8\t0x242E2\n0x8EAFC3B9\t0x242E3\n0x8EAFC3BA\t0x242E4\n0x8EAFC3BB\t0x242E5\n0x8EAFC3BC\t0x3DDB\n0x8EAFC3BD\t0x242E6\n0x8EAFC3BE\t0x242E7\n0x8EAFC3BF\t0x2458E\n0x8EAFC3C0\t0x24698\n0x8EAFC3C1\t0x24699\n0x8EAFC3C3\t0x2480A\n0x8EAFC3C5\t0x24826\n0x8EAFC3C6\t0x24827\n0x8EAFC3C7\t0x249BD\n0x8EAFC3C8\t0x249DF\n0x8EAFC3C9\t0x3EE2\n0x8EAFC3CA\t0x249BE\n0x8EAFC3CB\t0x249DE\n0x8EAFC3CC\t0x249BF\n0x8EAFC3CD\t0x249C0\n0x8EAFC3CE\t0x249C1\n0x8EAFC3CF\t0x249C2\n0x8EAFC3D0\t0x2499F\n0x8EAFC3D1\t0x249C3\n0x8EAFC3D2\t0x249C4\n0x8EAFC3D3\t0x249C5\n0x8EAFC3D4\t0x249C6\n0x8EAFC3D5\t0x249C7\n0x8EAFC3D6\t0x3EE3\n0x8EAFC3D7\t0x249C8\n0x8EAFC3D8\t0x249C9\n0x8EAFC3D9\t0x249E3\n0x8EAFC3DA\t0x249CA\n0x8EAFC3DB\t0x249CB\n0x8EAFC3DC\t0x249CC\n0x8EAFC3DD\t0x249CD\n0x8EAFC3DE\t0x249CE\n0x8EAFC3DF\t0x249CF\n0x8EAFC3E0\t0x249D0\n0x8EAFC3E1\t0x249D1\n0x8EAFC3E2\t0x249D2\n0x8EAFC3E3\t0x249D3\n0x8EAFC3E4\t0x2F92F\n0x8EAFC3E5\t0x249D4\n0x8EAFC3E6\t0x24B04\n0x8EAFC3E7\t0x24B65\n0x8EAFC3E8\t0x24BEE\n0x8EAFC3E9\t0x24CA0\n0x8EAFC3EA\t0x24CA1\n0x8EAFC3EB\t0x24DDD\n0x8EAFC3EC\t0x24DDE\n0x8EAFC3ED\t0x24F83\n0x8EAFC3EE\t0x24FFA\n0x8EAFC3EF\t0x2507F\n0x8EAFC3F0\t0x25080\n0x8EAFC3F1\t0x251E8\n0x8EAFC3F2\t0x251E9\n0x8EAFC3F3\t0x251EA\n0x8EAFC3F4\t0x235A6\n0x8EAFC3F5\t0x253E1\n0x8EAFC3F7\t0x254DB\n0x8EAFC3F8\t0x254DC\n0x8EAFC3F9\t0x254DD\n0x8EAFC3FA\t0x254DE\n0x8EAFC3FB\t0x254DF\n0x8EAFC3FC\t0x254E0\n0x8EAFC3FD\t0x254E1\n0x8EAFC3FE\t0x254E2\n0x8EAFC4A1\t0x254E3\n0x8EAFC4A2\t0x254E4\n0x8EAFC4A3\t0x254E5\n0x8EAFC4A4\t0x254E6\n0x8EAFC4A5\t0x789C\n0x8EAFC4A6\t0x254E7\n0x8EAFC4A7\t0x256B0\n0x8EAFC4A8\t0x25698\n0x8EAFC4A9\t0x256B1\n0x8EAFC4AA\t0x25699\n0x8EAFC4AB\t0x256B2\n0x8EAFC4AC\t0x256B3\n0x8EAFC4AD\t0x256B4\n0x8EAFC4AE\t0x256B5\n0x8EAFC4AF\t0x256B6\n0x8EAFC4B0\t0x256B7\n0x8EAFC4B1\t0x256B8\n0x8EAFC4B2\t0x256B9\n0x8EAFC4B3\t0x257E2\n0x8EAFC4B4\t0x257E3\n0x8EAFC4B5\t0x257E4\n0x8EAFC4B6\t0x257E5\n0x8EAFC4B7\t0x257E6\n0x8EAFC4B8\t0x257E7\n0x8EAFC4B9\t0x257E8\n0x8EAFC4BA\t0x257E9\n0x8EAFC4BB\t0x259AD\n0x8EAFC4BC\t0x259CF\n0x8EAFC4BD\t0x259AE\n0x8EAFC4BE\t0x259AF\n0x8EAFC4BF\t0x259B0\n0x8EAFC4C0\t0x259B1\n0x8EAFC4C1\t0x25A92\n0x8EAFC4C2\t0x25A93\n0x8EAFC4C3\t0x25A94\n0x8EAFC4C4\t0x25B79\n0x8EAFC4C5\t0x7B7B\n0x8EAFC4C6\t0x25B7A\n0x8EAFC4C7\t0x25B7B\n0x8EAFC4C8\t0x25B7C\n0x8EAFC4C9\t0x25B7D\n0x8EAFC4CA\t0x25B7E\n0x8EAFC4CB\t0x25B7F\n0x8EAFC4CC\t0x25B80\n0x8EAFC4CD\t0x25B81\n0x8EAFC4CE\t0x25B82\n0x8EAFC4CF\t0x25B83\n0x8EAFC4D0\t0x25B84\n0x8EAFC4D1\t0x25E97\n0x8EAFC4D2\t0x25E84\n0x8EAFC4D3\t0x25E85\n0x8EAFC4D4\t0x25E89\n0x8EAFC4D5\t0x25E86\n0x8EAFC4D6\t0x25E87\n0x8EAFC4D7\t0x2602C\n0x8EAFC4D8\t0x2602D\n0x8EAFC4D9\t0x2602E\n0x8EAFC4DA\t0x2602F\n0x8EAFC4DB\t0x26030\n0x8EAFC4DC\t0x26031\n0x8EAFC4DD\t0x26032\n0x8EAFC4DE\t0x26033\n0x8EAFC4DF\t0x26034\n0x8EAFC4E0\t0x26035\n0x8EAFC4E1\t0x26036\n0x8EAFC4E2\t0x26037\n0x8EAFC4E3\t0x262D2\n0x8EAFC4E4\t0x26444\n0x8EAFC4E5\t0x26500\n0x8EAFC4E6\t0x26583\n0x8EAFC4E7\t0x26584\n0x8EAFC4E8\t0x2F986\n0x8EAFC4E9\t0x2677A\n0x8EAFC4EA\t0x2677B\n0x8EAFC4EB\t0x2677C\n0x8EAFC4EC\t0x2677D\n0x8EAFC4ED\t0x2677E\n0x8EAFC4EF\t0x2677F\n0x8EAFC4F0\t0x26787\n0x8EAFC4F1\t0x26780\n0x8EAFC4F2\t0x26A43\n0x8EAFC4F3\t0x26D34\n0x8EAFC4F4\t0x4749\n0x8EAFC4F5\t0x26D35\n0x8EAFC4F6\t0x26D36\n0x8EAFC4F7\t0x26D37\n0x8EAFC4F8\t0x26D38\n0x8EAFC4F9\t0x26D39\n0x8EAFC4FA\t0x26D3A\n0x8EAFC4FB\t0x26D3B\n0x8EAFC4FC\t0x26D3C\n0x8EAFC4FD\t0x26D3D\n0x8EAFC4FE\t0x26D3E\n0x8EAFC5A1\t0x26D3F\n0x8EAFC5A2\t0x26D40\n0x8EAFC5A3\t0x26D41\n0x8EAFC5A4\t0x26D42\n0x8EAFC5A5\t0x26D43\n0x8EAFC5A6\t0x26D44\n0x8EAFC5A7\t0x26D45\n0x8EAFC5A8\t0x26D46\n0x8EAFC5A9\t0x26D47\n0x8EAFC5AA\t0x26D48\n0x8EAFC5AB\t0x26D49\n0x8EAFC5AC\t0x26D4A\n0x8EAFC5AE\t0x26D4B\n0x8EAFC5AF\t0x26D4C\n0x8EAFC5B0\t0x26D4D\n0x8EAFC5B1\t0x26D4E\n0x8EAFC5B2\t0x272E7\n0x8EAFC5B3\t0x272E8\n0x8EAFC5B4\t0x272E9\n0x8EAFC5B5\t0x272EA\n0x8EAFC5B6\t0x272EB\n0x8EAFC5B7\t0x272EC\n0x8EAFC5B8\t0x272ED\n0x8EAFC5B9\t0x272EE\n0x8EAFC5BA\t0x275F7\n0x8EAFC5BB\t0x2769A\n0x8EAFC5BC\t0x276CD\n0x8EAFC5BD\t0x2F9C8\n0x8EAFC5BE\t0x276A3\n0x8EAFC5BF\t0x276CE\n0x8EAFC5C0\t0x27831\n0x8EAFC5C1\t0x27832\n0x8EAFC5C2\t0x27833\n0x8EAFC5C3\t0x279E4\n0x8EAFC5C5\t0x279E5\n0x8EAFC5C6\t0x279E6\n0x8EAFC5C7\t0x27CC8\n0x8EAFC5C8\t0x27D74\n0x8EAFC5C9\t0x27D75\n0x8EAFC5CA\t0x27D76\n0x8EAFC5CB\t0x27D77\n0x8EAFC5CC\t0x27D78\n0x8EAFC5CD\t0x27D79\n0x8EAFC5CE\t0x27D7A\n0x8EAFC5CF\t0x27E61\n0x8EAFC5D0\t0x27EDF\n0x8EAFC5D1\t0x27EE0\n0x8EAFC5D2\t0x27EE1\n0x8EAFC5D3\t0x27EE2\n0x8EAFC5D4\t0x27EE3\n0x8EAFC5D5\t0x27EE4\n0x8EAFC5D6\t0x27EE5\n0x8EAFC5D7\t0x27EE6\n0x8EAFC5D8\t0x47F3\n0x8EAFC5D9\t0x28031\n0x8EAFC5DA\t0x2823D\n0x8EAFC5DB\t0x2823E\n0x8EAFC5DC\t0x2823F\n0x8EAFC5DD\t0x282F4\n0x8EAFC5DE\t0x282F5\n0x8EAFC5DF\t0x282F6\n0x8EAFC5E1\t0x28417\n0x8EAFC5E2\t0x28541\n0x8EAFC5E3\t0x28542\n0x8EAFC5E4\t0x28543\n0x8EAFC5E5\t0x28544\n0x8EAFC5E6\t0x28545\n0x8EAFC5E7\t0x28546\n0x8EAFC5E8\t0x28547\n0x8EAFC5E9\t0x28548\n0x8EAFC5EA\t0x28549\n0x8EAFC5EB\t0x2854A\n0x8EAFC5EC\t0x2854B\n0x8EAFC5ED\t0x90D2\n0x8EAFC5EE\t0x286BA\n0x8EAFC5EF\t0x28744\n0x8EAFC5F0\t0x2892A\n0x8EAFC5F1\t0x2896D\n0x8EAFC5F2\t0x9274\n0x8EAFC5F3\t0x2F9E7\n0x8EAFC5F4\t0x2897E\n0x8EAFC5F5\t0x2896E\n0x8EAFC5F6\t0x2896F\n0x8EAFC5F7\t0x28970\n0x8EAFC5F8\t0x28971\n0x8EAFC5F9\t0x28976\n0x8EAFC5FA\t0x28C79\n0x8EAFC5FB\t0x95A0\n0x8EAFC5FD\t0x28D04\n0x8EAFC5FE\t0x28CF8\n0x8EAFC6A1\t0x28D05\n0x8EAFC6A2\t0x28EDA\n0x8EAFC6A3\t0x28EDB\n0x8EAFC6A4\t0x28EDC\n0x8EAFC6A5\t0x28EDD\n0x8EAFC6A6\t0x28EDE\n0x8EAFC6A7\t0x28EDF\n0x8EAFC6A8\t0x28EE0\n0x8EAFC6A9\t0x28EE1\n0x8EAFC6AA\t0x290C5\n0x8EAFC6AB\t0x2909A\n0x8EAFC6AC\t0x2909B\n0x8EAFC6AD\t0x2909C\n0x8EAFC6AE\t0x291D8\n0x8EAFC6AF\t0x291D9\n0x8EAFC6B0\t0x291DA\n0x8EAFC6B1\t0x2926E\n0x8EAFC6B2\t0x4A57\n0x8EAFC6B3\t0x2946B\n0x8EAFC6B4\t0x27D83\n0x8EAFC6B6\t0x296D6\n0x8EAFC6B7\t0x296BD\n0x8EAFC6B9\t0x2322E\n0x8EAFC6BA\t0x29AFC\n0x8EAFC6BB\t0x29D53\n0x8EAFC6BC\t0x29DB7\n0x8EAFC6BD\t0x2A28C\n0x8EAFC6BE\t0x2A38E\n0x8EAFC6BF\t0x2A2FF\n0x8EAFC6C0\t0x20076\n0x8EAFC6C1\t0x20106\n0x8EAFC6C2\t0x2017E\n0x8EAFC6C3\t0x20384\n0x8EAFC6C4\t0x20385\n0x8EAFC6C5\t0x20386\n0x8EAFC6C6\t0x20387\n0x8EAFC6C7\t0x20388\n0x8EAFC6C8\t0x203A7\n0x8EAFC6C9\t0x20389\n0x8EAFC6CA\t0x2038A\n0x8EAFC6CB\t0x2038B\n0x8EAFC6CC\t0x2038C\n0x8EAFC6CD\t0x2038D\n0x8EAFC6CE\t0x2038E\n0x8EAFC6CF\t0x2038F\n0x8EAFC6D0\t0x203A3\n0x8EAFC6D1\t0x20390\n0x8EAFC6D2\t0x20391\n0x8EAFC6D3\t0x20392\n0x8EAFC6D4\t0x20393\n0x8EAFC6D5\t0x203AC\n0x8EAFC6D6\t0x20394\n0x8EAFC6D7\t0x20395\n0x8EAFC6D8\t0x20396\n0x8EAFC6D9\t0x204AA\n0x8EAFC6DA\t0x204AB\n0x8EAFC6DB\t0x2059E\n0x8EAFC6DC\t0x51A9\n0x8EAFC6DD\t0x20608\n0x8EAFC6DE\t0x20609\n0x8EAFC6DF\t0x20668\n0x8EAFC6E0\t0x20669\n0x8EAFC6E1\t0x2066A\n0x8EAFC6E2\t0x2069A\n0x8EAFC6E3\t0x207D9\n0x8EAFC6E4\t0x207DA\n0x8EAFC6E5\t0x207DB\n0x8EAFC6E6\t0x208A8\n0x8EAFC6E7\t0x20901\n0x8EAFC6E8\t0x20928\n0x8EAFC6E9\t0x20977\n0x8EAFC6EA\t0x209BD\n0x8EAFC6EB\t0x209BE\n0x8EAFC6EC\t0x20F60\n0x8EAFC6ED\t0x20AA0\n0x8EAFC6EE\t0x20AA2\n0x8EAFC6EF\t0x20B0F\n0x8EAFC6F0\t0x20B85\n0x8EAFC6F1\t0x20EFE\n0x8EAFC6F2\t0x20EFF\n0x8EAFC6F3\t0x20F00\n0x8EAFC6F4\t0x20F01\n0x8EAFC6F5\t0x20F16\n0x8EAFC6F6\t0x20F02\n0x8EAFC6F7\t0x20F03\n0x8EAFC6F8\t0x20F04\n0x8EAFC6F9\t0x20F05\n0x8EAFC6FA\t0x20F06\n0x8EAFC6FB\t0x20F07\n0x8EAFC6FC\t0x20F08\n0x8EAFC6FD\t0x20F22\n0x8EAFC6FE\t0x20F09\n0x8EAFC7A1\t0x20F0A\n0x8EAFC7A2\t0x20F0B\n0x8EAFC7A3\t0x20F0C\n0x8EAFC7A4\t0x20F14\n0x8EAFC7A5\t0x20F29\n0x8EAFC7A6\t0x20E6E\n0x8EAFC7A7\t0x20F0D\n0x8EAFC7A8\t0x20F0E\n0x8EAFC7A9\t0x20F0F\n0x8EAFC7AA\t0x20F10\n0x8EAFC7AB\t0x20F11\n0x8EAFC7AC\t0x20F12\n0x8EAFC7AD\t0x20F13\n0x8EAFC7AE\t0x2121B\n0x8EAFC7AF\t0x2121C\n0x8EAFC7B0\t0x2121D\n0x8EAFC7B1\t0x21413\n0x8EAFC7B2\t0x213FF\n0x8EAFC7B3\t0x21400\n0x8EAFC7B4\t0x21401\n0x8EAFC7B5\t0x21402\n0x8EAFC7B6\t0x21403\n0x8EAFC7B7\t0x21404\n0x8EAFC7B8\t0x2140A\n0x8EAFC7B9\t0x21405\n0x8EAFC7BA\t0x21406\n0x8EAFC7BB\t0x21407\n0x8EAFC7BC\t0x21408\n0x8EAFC7BD\t0x2153A\n0x8EAFC7BE\t0x21573\n0x8EAFC7BF\t0x2166F\n0x8EAFC7C0\t0x21670\n0x8EAFC7C1\t0x21671\n0x8EAFC7C2\t0x20052\n0x8EAFC7C4\t0x21A9A\n0x8EAFC7C5\t0x21860\n0x8EAFC7C6\t0x2F869\n0x8EAFC7C7\t0x2182B\n0x8EAFC7C8\t0x21824\n0x8EAFC7C9\t0x2182C\n0x8EAFC7CA\t0x2182D\n0x8EAFC7CB\t0x2182E\n0x8EAFC7CC\t0x2182F\n0x8EAFC7CD\t0x21830\n0x8EAFC7CE\t0x21831\n0x8EAFC7CF\t0x21832\n0x8EAFC7D0\t0x21833\n0x8EAFC7D1\t0x21834\n0x8EAFC7D2\t0x21835\n0x8EAFC7D3\t0x21845\n0x8EAFC7D4\t0x21836\n0x8EAFC7D5\t0x21992\n0x8EAFC7D6\t0x21993\n0x8EAFC7D7\t0x21A88\n0x8EAFC7D8\t0x21A89\n0x8EAFC7D9\t0x21A8A\n0x8EAFC7DA\t0x21A8B\n0x8EAFC7DB\t0x21B3F\n0x8EAFC7DD\t0x21CCA\n0x8EAFC7DE\t0x21EF6\n0x8EAFC7DF\t0x21EF7\n0x8EAFC7E0\t0x21EF8\n0x8EAFC7E1\t0x21EF9\n0x8EAFC7E2\t0x2212B\n0x8EAFC7E4\t0x221A4\n0x8EAFC7E5\t0x221CE\n0x8EAFC7E7\t0x2229E\n0x8EAFC7E8\t0x2229F\n0x8EAFC7E9\t0x222A0\n0x8EAFC7EA\t0x222A1\n0x8EAFC7EB\t0x222A2\n0x8EAFC7EC\t0x222A3\n0x8EAFC7ED\t0x222A4\n0x8EAFC7EE\t0x222A5\n0x8EAFC7EF\t0x222A6\n0x8EAFC7F0\t0x22418\n0x8EAFC7F1\t0x22560\n0x8EAFC7F2\t0x22561\n0x8EAFC7F3\t0x22562\n0x8EAFC7F4\t0x22563\n0x8EAFC7F5\t0x22564\n0x8EAFC7F6\t0x227BD\n0x8EAFC7F7\t0x227BE\n0x8EAFC7F8\t0x2280B\n0x8EAFC7F9\t0x227BF\n0x8EAFC7FA\t0x227C0\n0x8EAFC7FC\t0x2280C\n0x8EAFC7FD\t0x2278D\n0x8EAFC7FE\t0x2280D\n0x8EAFC8A1\t0x2280E\n0x8EAFC8A2\t0x2285E\n0x8EAFC8A3\t0x2280F\n0x8EAFC8A4\t0x22810\n0x8EAFC8A5\t0x227C1\n0x8EAFC8A6\t0x22811\n0x8EAFC8A8\t0x227C2\n0x8EAFC8A9\t0x229EA\n0x8EAFC8AA\t0x229EB\n0x8EAFC8AB\t0x22CE3\n0x8EAFC8AC\t0x22CE4\n0x8EAFC8AD\t0x22CE5\n0x8EAFC8AE\t0x22CE6\n0x8EAFC8AF\t0x22CE7\n0x8EAFC8B0\t0x22C92\n0x8EAFC8B1\t0x22D4A\n0x8EAFC8B3\t0x22CE8\n0x8EAFC8B4\t0x22CE9\n0x8EAFC8B5\t0x22CEA\n0x8EAFC8B6\t0x22D01\n0x8EAFC8B7\t0x22CEB\n0x8EAFC8B8\t0x22CEC\n0x8EAFC8B9\t0x22CEF\n0x8EAFC8BA\t0x22CED\n0x8EAFC8BB\t0x22CEE\n0x8EAFC8BC\t0x22CF0\n0x8EAFC8BD\t0x22CF1\n0x8EAFC8BE\t0x22CF2\n0x8EAFC8BF\t0x22CF3\n0x8EAFC8C0\t0x22CF4\n0x8EAFC8C1\t0x22CF5\n0x8EAFC8C2\t0x22CF6\n0x8EAFC8C3\t0x22CF7\n0x8EAFC8C4\t0x22CF8\n0x8EAFC8C5\t0x22CF9\n0x8EAFC8C6\t0x22CFE\n0x8EAFC8C7\t0x22CFA\n0x8EAFC8C8\t0x22CFB\n0x8EAFC8C9\t0x22CFC\n0x8EAFC8CA\t0x23263\n0x8EAFC8CB\t0x23264\n0x8EAFC8CC\t0x23265\n0x8EAFC8CD\t0x23266\n0x8EAFC8CE\t0x23267\n0x8EAFC8CF\t0x23268\n0x8EAFC8D0\t0x2360B\n0x8EAFC8D1\t0x2360D\n0x8EAFC8D2\t0x3BBC\n0x8EAFC8D3\t0x2360E\n0x8EAFC8D4\t0x2360F\n0x8EAFC8D5\t0x3BA4\n0x8EAFC8D6\t0x23614\n0x8EAFC8D7\t0x235D4\n0x8EAFC8D8\t0x235D5\n0x8EAFC8D9\t0x235D6\n0x8EAFC8DA\t0x235D7\n0x8EAFC8DB\t0x235D8\n0x8EAFC8DC\t0x235D9\n0x8EAFC8DD\t0x235DA\n0x8EAFC8DE\t0x235DB\n0x8EAFC8DF\t0x235DC\n0x8EAFC8E0\t0x235DD\n0x8EAFC8E1\t0x235DE\n0x8EAFC8E2\t0x235DF\n0x8EAFC8E3\t0x235E0\n0x8EAFC8E4\t0x235E1\n0x8EAFC8E5\t0x235E2\n0x8EAFC8E6\t0x235E3\n0x8EAFC8E7\t0x235E4\n0x8EAFC8E8\t0x235E5\n0x8EAFC8E9\t0x235E6\n0x8EAFC8EA\t0x235E7\n0x8EAFC8EB\t0x235E8\n0x8EAFC8EC\t0x235E9\n0x8EAFC8ED\t0x235EA\n0x8EAFC8EE\t0x235EB\n0x8EAFC8EF\t0x235EC\n0x8EAFC8F0\t0x236EC\n0x8EAFC8F1\t0x235ED\n0x8EAFC8F2\t0x235EE\n0x8EAFC8F3\t0x235EF\n0x8EAFC8F4\t0x23600\n0x8EAFC8F5\t0x235F0\n0x8EAFC8F6\t0x23904\n0x8EAFC8F8\t0x23905\n0x8EAFC8F9\t0x2F8F3\n0x8EAFC8FA\t0x23AB5\n0x8EAFC8FB\t0x2F8F9\n0x8EAFC8FC\t0x23BD6\n0x8EAFC8FD\t0x23BD7\n0x8EAFC8FE\t0x23BD8\n0x8EAFC9A1\t0x23BD9\n0x8EAFC9A2\t0x23EA9\n0x8EAFC9A3\t0x23F00\n0x8EAFC9A4\t0x23F01\n0x8EAFC9A5\t0x23F02\n0x8EAFC9A6\t0x23F03\n0x8EAFC9A7\t0x23F04\n0x8EAFC9A8\t0x23F05\n0x8EAFC9A9\t0x23F06\n0x8EAFC9AA\t0x23F3F\n0x8EAFC9AB\t0x23F07\n0x8EAFC9AC\t0x23F08\n0x8EAFC9AD\t0x23F09\n0x8EAFC9AE\t0x23F0A\n0x8EAFC9AF\t0x23EB6\n0x8EAFC9B0\t0x23F0B\n0x8EAFC9B1\t0x23F0C\n0x8EAFC9B4\t0x23F0D\n0x8EAFC9B6\t0x23F0E\n0x8EAFC9B7\t0x23F0F\n0x8EAFC9B8\t0x23F10\n0x8EAFC9B9\t0x23F11\n0x8EAFC9BA\t0x23F12\n0x8EAFC9BB\t0x23F35\n0x8EAFC9BC\t0x23F13\n0x8EAFC9BD\t0x23F14\n0x8EAFC9BE\t0x23EAA\n0x8EAFC9C0\t0x23FC1\n0x8EAFC9C1\t0x23F15\n0x8EAFC9C2\t0x23F16\n0x8EAFC9C3\t0x23F17\n0x8EAFC9C4\t0x2431E\n0x8EAFC9C5\t0x2431F\n0x8EAFC9C6\t0x24320\n0x8EAFC9C7\t0x24321\n0x8EAFC9C9\t0x24322\n0x8EAFC9CA\t0x24323\n0x8EAFC9CB\t0x7195\n0x8EAFC9CC\t0x24324\n0x8EAFC9CD\t0x24325\n0x8EAFC9CE\t0x24326\n0x8EAFC9CF\t0x24327\n0x8EAFC9D0\t0x24328\n0x8EAFC9D1\t0x24329\n0x8EAFC9D2\t0x2432A\n0x8EAFC9D3\t0x2432B\n0x8EAFC9D4\t0x24307\n0x8EAFC9D5\t0x2432C\n0x8EAFC9D6\t0x2432D\n0x8EAFC9D7\t0x2432E\n0x8EAFC9D8\t0x3DE8\n0x8EAFC9DA\t0x2432F\n0x8EAFC9DB\t0x24330\n0x8EAFC9DC\t0x24348\n0x8EAFC9DD\t0x24331\n0x8EAFC9DE\t0x24332\n0x8EAFC9DF\t0x7198\n0x8EAFC9E0\t0x24333\n0x8EAFC9E2\t0x24334\n0x8EAFC9E3\t0x24335\n0x8EAFC9E4\t0x24336\n0x8EAFC9E5\t0x24559\n0x8EAFC9E6\t0x24591\n0x8EAFC9E7\t0x245E7\n0x8EAFC9E8\t0x246B8\n0x8EAFC9E9\t0x246B9\n0x8EAFC9EA\t0x246BA\n0x8EAFC9EB\t0x246BB\n0x8EAFC9EC\t0x246C8\n0x8EAFC9ED\t0x2484D\n0x8EAFC9EE\t0x24889\n0x8EAFC9EF\t0x24850\n0x8EAFC9F0\t0x24828\n0x8EAFC9F1\t0x249FB\n0x8EAFC9F2\t0x249FC\n0x8EAFC9F3\t0x249FD\n0x8EAFC9F4\t0x249FE\n0x8EAFC9F5\t0x249FF\n0x8EAFC9F6\t0x7478\n0x8EAFC9F7\t0x24A00\n0x8EAFC9F8\t0x24A01\n0x8EAFC9F9\t0x24A02\n0x8EAFC9FA\t0x249E4\n0x8EAFC9FB\t0x249E5\n0x8EAFC9FC\t0x24A03\n0x8EAFC9FD\t0x24A04\n0x8EAFC9FE\t0x24A05\n0x8EAFCAA1\t0x24A06\n0x8EAFCAA2\t0x24A07\n0x8EAFCAA3\t0x24A13\n0x8EAFCAA4\t0x24A08\n0x8EAFCAA5\t0x24A09\n0x8EAFCAA6\t0x249E6\n0x8EAFCAA7\t0x24A0A\n0x8EAFCAA8\t0x24A0B\n0x8EAFCAA9\t0x24A0C\n0x8EAFCAAA\t0x24B0B\n0x8EAFCAAB\t0x24BF4\n0x8EAFCAAC\t0x24C0A\n0x8EAFCAAD\t0x24CB1\n0x8EAFCAAE\t0x24E1D\n0x8EAFCAAF\t0x2F93B\n0x8EAFCAB0\t0x24F8B\n0x8EAFCAB1\t0x24F8C\n0x8EAFCAB2\t0x24F8F\n0x8EAFCAB3\t0x24F8D\n0x8EAFCAB4\t0x24F8E\n0x8EAFCAB5\t0x25006\n0x8EAFCAB6\t0x25086\n0x8EAFCAB7\t0x25222\n0x8EAFCAB8\t0x25223\n0x8EAFCAB9\t0x25224\n0x8EAFCABA\t0x25225\n0x8EAFCABB\t0x25226\n0x8EAFCABC\t0x25227\n0x8EAFCABD\t0x25228\n0x8EAFCABE\t0x253F1\n0x8EAFCABF\t0x78B9\n0x8EAFCAC0\t0x25523\n0x8EAFCAC1\t0x25512\n0x8EAFCAC3\t0x25513\n0x8EAFCAC4\t0x25514\n0x8EAFCAC5\t0x25515\n0x8EAFCAC6\t0x25516\n0x8EAFCAC7\t0x25517\n0x8EAFCAC8\t0x25518\n0x8EAFCAC9\t0x25519\n0x8EAFCACA\t0x2554B\n0x8EAFCACB\t0x2551A\n0x8EAFCACC\t0x2551B\n0x8EAFCACD\t0x2551C\n0x8EAFCACF\t0x2551D\n0x8EAFCAD0\t0x2551E\n0x8EAFCAD1\t0x2551F\n0x8EAFCAD2\t0x25520\n0x8EAFCAD3\t0x256CA\n0x8EAFCAD4\t0x222AC\n0x8EAFCAD5\t0x256CB\n0x8EAFCAD6\t0x256CC\n0x8EAFCAD7\t0x256CD\n0x8EAFCAD8\t0x256CE\n0x8EAFCADA\t0x256CF\n0x8EAFCADB\t0x25810\n0x8EAFCADC\t0x25811\n0x8EAFCADD\t0x25812\n0x8EAFCADE\t0x25813\n0x8EAFCADF\t0x25814\n0x8EAFCAE0\t0x2580F\n0x8EAFCAE1\t0x25815\n0x8EAFCAE2\t0x25816\n0x8EAFCAE3\t0x25817\n0x8EAFCAE4\t0x7A33\n0x8EAFCAE5\t0x25818\n0x8EAFCAE6\t0x259C6\n0x8EAFCAE7\t0x25A9F\n0x8EAFCAE8\t0x25AA0\n0x8EAFCAE9\t0x25AA4\n0x8EAFCAEA\t0x25AA1\n0x8EAFCAEB\t0x25BB5\n0x8EAFCAEC\t0x25BB6\n0x8EAFCAED\t0x25BB7\n0x8EAFCAEE\t0x25BB8\n0x8EAFCAEF\t0x25BB9\n0x8EAFCAF0\t0x25BBA\n0x8EAFCAF1\t0x25BD0\n0x8EAFCAF2\t0x25BC6\n0x8EAFCAF3\t0x25BBB\n0x8EAFCAF4\t0x25BBC\n0x8EAFCAF5\t0x25BBD\n0x8EAFCAF6\t0x25BBE\n0x8EAFCAF7\t0x25BBF\n0x8EAFCAF8\t0x25BC0\n0x8EAFCAF9\t0x25BC1\n0x8EAFCAFA\t0x25BC2\n0x8EAFCAFB\t0x2F960\n0x8EAFCAFC\t0x25EA7\n0x8EAFCAFD\t0x25EA8\n0x8EAFCAFE\t0x25EA9\n0x8EAFCBA1\t0x25EAA\n0x8EAFCBA2\t0x25EAB\n0x8EAFCBA3\t0x25EAC\n0x8EAFCBA4\t0x25EBC\n0x8EAFCBA5\t0x25EAD\n0x8EAFCBA6\t0x25EAE\n0x8EAFCBA7\t0x7CC0\n0x8EAFCBA8\t0x25EAF\n0x8EAFCBA9\t0x25EB0\n0x8EAFCBAA\t0x25EB1\n0x8EAFCBAB\t0x7CC1\n0x8EAFCBAC\t0x25EB4\n0x8EAFCBAD\t0x25EB2\n0x8EAFCBAE\t0x26066\n0x8EAFCBAF\t0x26067\n0x8EAFCBB0\t0x26068\n0x8EAFCBB1\t0x26069\n0x8EAFCBB2\t0x2606A\n0x8EAFCBB3\t0x2606B\n0x8EAFCBB4\t0x2606C\n0x8EAFCBB5\t0x2606D\n0x8EAFCBB6\t0x2606E\n0x8EAFCBB7\t0x2606F\n0x8EAFCBB9\t0x2623E\n0x8EAFCBBA\t0x2623F\n0x8EAFCBBB\t0x26240\n0x8EAFCBBC\t0x262E8\n0x8EAFCBBD\t0x26452\n0x8EAFCBBE\t0x26453\n0x8EAFCBBF\t0x26454\n0x8EAFCBC0\t0x26455\n0x8EAFCBC1\t0x26591\n0x8EAFCBC2\t0x26592\n0x8EAFCBC3\t0x26593\n0x8EAFCBC4\t0x26594\n0x8EAFCBC5\t0x26595\n0x8EAFCBC6\t0x26596\n0x8EAFCBC7\t0x26597\n0x8EAFCBC8\t0x26598\n0x8EAFCBCA\t0x26599\n0x8EAFCBCB\t0x2659A\n0x8EAFCBCC\t0x2659B\n0x8EAFCBCD\t0x267B7\n0x8EAFCBCE\t0x267B8\n0x8EAFCBCF\t0x267B9\n0x8EAFCBD1\t0x267BA\n0x8EAFCBD2\t0x267BB\n0x8EAFCBD3\t0x267BD\n0x8EAFCBD5\t0x267BC\n0x8EAFCBD6\t0x2F988\n0x8EAFCBD7\t0x2F987\n0x8EAFCBD8\t0x268EB\n0x8EAFCBD9\t0x268EC\n0x8EAFCBDA\t0x26916\n0x8EAFCBDB\t0x26944\n0x8EAFCBDC\t0x269E3\n0x8EAFCBDD\t0x26A58\n0x8EAFCBDE\t0x26A53\n0x8EAFCBDF\t0x26A54\n0x8EAFCBE0\t0x26AE0\n0x8EAFCBE1\t0x26DB1\n0x8EAFCBE2\t0x26DB2\n0x8EAFCBE3\t0x26DB3\n0x8EAFCBE4\t0x26DEA\n0x8EAFCBE6\t0x26DB4\n0x8EAFCBE7\t0x26DF0\n0x8EAFCBE8\t0x26DB5\n0x8EAFCBE9\t0x26DB6\n0x8EAFCBEA\t0x26DB7\n0x8EAFCBEB\t0x26DB8\n0x8EAFCBEC\t0x26DB9\n0x8EAFCBED\t0x26DBA\n0x8EAFCBEE\t0x26DBB\n0x8EAFCBEF\t0x26DBC\n0x8EAFCBF0\t0x26DBD\n0x8EAFCBF1\t0x26DBE\n0x8EAFCBF2\t0x26DBF\n0x8EAFCBF3\t0x26DC0\n0x8EAFCBF4\t0x26DC1\n0x8EAFCBF5\t0x26DC2\n0x8EAFCBF6\t0x26DC3\n0x8EAFCBF8\t0x26DC4\n0x8EAFCBF9\t0x26DC5\n0x8EAFCBFA\t0x26DC6\n0x8EAFCBFB\t0x26DFC\n0x8EAFCBFC\t0x26DC7\n0x8EAFCBFD\t0x26DC8\n0x8EAFCBFE\t0x26DC9\n0x8EAFCCA1\t0x26DCA\n0x8EAFCCA2\t0x26DCB\n0x8EAFCCA3\t0x26DCC\n0x8EAFCCA4\t0x26E84\n0x8EAFCCA5\t0x26DCD\n0x8EAFCCA6\t0x26DCE\n0x8EAFCCA7\t0x26DCF\n0x8EAFCCA8\t0x26DD0\n0x8EAFCCA9\t0x26DD1\n0x8EAFCCAA\t0x26DD2\n0x8EAFCCAB\t0x271CA\n0x8EAFCCAC\t0x271CB\n0x8EAFCCAD\t0x27336\n0x8EAFCCAE\t0x27337\n0x8EAFCCAF\t0x2739F\n0x8EAFCCB0\t0x27338\n0x8EAFCCB1\t0x27339\n0x8EAFCCB2\t0x2733A\n0x8EAFCCB3\t0x8744\n0x8EAFCCB4\t0x276BE\n0x8EAFCCB5\t0x276F0\n0x8EAFCCB6\t0x276BF\n0x8EAFCCB7\t0x276C0\n0x8EAFCCB8\t0x277F7\n0x8EAFCCB9\t0x277F8\n0x8EAFCCBA\t0x277FA\n0x8EAFCCBB\t0x27843\n0x8EAFCCBC\t0x27844\n0x8EAFCCBD\t0x27A0F\n0x8EAFCCBE\t0x27A10\n0x8EAFCCBF\t0x27A11\n0x8EAFCCC0\t0x27A12\n0x8EAFCCC1\t0x8AAD\n0x8EAFCCC2\t0x27A13\n0x8EAFCCC3\t0x27A14\n0x8EAFCCC4\t0x27A15\n0x8EAFCCC5\t0x27A16\n0x8EAFCCC8\t0x27CD3\n0x8EAFCCC9\t0x27CD7\n0x8EAFCCCB\t0x27DB0\n0x8EAFCCCC\t0x27D98\n0x8EAFCCCD\t0x27D90\n0x8EAFCCCE\t0x27D91\n0x8EAFCCCF\t0x27D92\n0x8EAFCCD0\t0x27D97\n0x8EAFCCD1\t0x27D93\n0x8EAFCCD2\t0x27E64\n0x8EAFCCD3\t0x27F01\n0x8EAFCCD4\t0x27F02\n0x8EAFCCD5\t0x27F03\n0x8EAFCCD6\t0x27F04\n0x8EAFCCD7\t0x27F05\n0x8EAFCCD8\t0x27F06\n0x8EAFCCD9\t0x27F07\n0x8EAFCCDA\t0x2805A\n0x8EAFCCDB\t0x2805B\n0x8EAFCCDC\t0x2824E\n0x8EAFCCDD\t0x2824F\n0x8EAFCCDE\t0x28250\n0x8EAFCCDF\t0x28319\n0x8EAFCCE0\t0x2831A\n0x8EAFCCE1\t0x2831B\n0x8EAFCCE3\t0x2831C\n0x8EAFCCE5\t0x28419\n0x8EAFCCE6\t0x2841A\n0x8EAFCCE7\t0x4886\n0x8EAFCCE8\t0x2898A\n0x8EAFCCE9\t0x2856E\n0x8EAFCCEA\t0x2856F\n0x8EAFCCEB\t0x9064\n0x8EAFCCEC\t0x28570\n0x8EAFCCED\t0x28571\n0x8EAFCCEE\t0x28572\n0x8EAFCCEF\t0x28573\n0x8EAFCCF0\t0x28574\n0x8EAFCCF1\t0x28575\n0x8EAFCCF2\t0x28576\n0x8EAFCCF3\t0x2883A\n0x8EAFCCF4\t0x2883B\n0x8EAFCCF5\t0x2883C\n0x8EAFCCF6\t0x2885A\n0x8EAFCCF7\t0x2883D\n0x8EAFCCF8\t0x28842\n0x8EAFCCF9\t0x2898B\n0x8EAFCCFA\t0x289A0\n0x8EAFCCFB\t0x2898C\n0x8EAFCCFC\t0x2898D\n0x8EAFCCFD\t0x2898E\n0x8EAFCCFE\t0x289AB\n0x8EAFCDA1\t0x2898F\n0x8EAFCDA2\t0x9277\n0x8EAFCDA3\t0x28990\n0x8EAFCDA4\t0x28991\n0x8EAFCDA5\t0x28992\n0x8EAFCDA6\t0x289AA\n0x8EAFCDA7\t0x92AF\n0x8EAFCDA8\t0x28993\n0x8EAFCDA9\t0x28994\n0x8EAFCDAA\t0x2899E\n0x8EAFCDAB\t0x289A8\n0x8EAFCDAE\t0x28F00\n0x8EAFCDAF\t0x28F01\n0x8EAFCDB0\t0x28F02\n0x8EAFCDB1\t0x28F03\n0x8EAFCDB2\t0x28F04\n0x8EAFCDB3\t0x28F05\n0x8EAFCDB4\t0x28FC4\n0x8EAFCDB5\t0x28FC5\n0x8EAFCDB7\t0x290AE\n0x8EAFCDB8\t0x290B2\n0x8EAFCDBB\t0x291F7\n0x8EAFCDBC\t0x29213\n0x8EAFCDBD\t0x2939E\n0x8EAFCDBE\t0x29485\n0x8EAFCDBF\t0x25380\n0x8EAFCDC0\t0x294C8\n0x8EAFCDC1\t0x29841\n0x8EAFCDC2\t0x29881\n0x8EAFCDC3\t0x29882\n0x8EAFCDC4\t0x29883\n0x8EAFCDC5\t0x29884\n0x8EAFCDC6\t0x29AC4\n0x8EAFCDC7\t0x29AC5\n0x8EAFCDC8\t0x29AC6\n0x8EAFCDC9\t0x29C95\n0x8EAFCDCA\t0x29C96\n0x8EAFCDCB\t0x29C97\n0x8EAFCDCC\t0x29D58\n0x8EAFCDCD\t0x29D59\n0x8EAFCDCF\t0x29FA9\n0x8EAFCDD0\t0x29FAA\n0x8EAFCDD1\t0x29FAB\n0x8EAFCDD2\t0x2A28E\n0x8EAFCDD3\t0x2A303\n0x8EAFCDD4\t0x2A3B3\n0x8EAFCDD5\t0x20B82\n0x8EAFCDD6\t0x20053\n0x8EAFCDD7\t0x20183\n0x8EAFCDD8\t0x20184\n0x8EAFCDD9\t0x20185\n0x8EAFCDDA\t0x203CC\n0x8EAFCDDB\t0x203CD\n0x8EAFCDDC\t0x203CE\n0x8EAFCDDD\t0x203CF\n0x8EAFCDDE\t0x203D0\n0x8EAFCDE0\t0x203D1\n0x8EAFCDE1\t0x203D2\n0x8EAFCDE2\t0x203DA\n0x8EAFCDE3\t0x204B3\n0x8EAFCDE4\t0x204B4\n0x8EAFCDE6\t0x20613\n0x8EAFCDE7\t0x2060E\n0x8EAFCDE8\t0x2066B\n0x8EAFCDE9\t0x20903\n0x8EAFCDEA\t0x20961\n0x8EAFCDEB\t0x209C1\n0x8EAFCDEC\t0x209C2\n0x8EAFCDED\t0x20AB5\n0x8EAFCDEE\t0x20140\n0x8EAFCDEF\t0x20F98\n0x8EAFCDF0\t0x20F99\n0x8EAFCDF1\t0x20F9A\n0x8EAFCDF2\t0x20F9B\n0x8EAFCDF3\t0x20F9C\n0x8EAFCDF4\t0x20F9D\n0x8EAFCDF5\t0x20F9E\n0x8EAFCDF6\t0x20F9F\n0x8EAFCDF7\t0x20FEE\n0x8EAFCDF8\t0x20FA0\n0x8EAFCDF9\t0x20FA1\n0x8EAFCDFA\t0x20F86\n0x8EAFCDFB\t0x21225\n0x8EAFCDFC\t0x21434\n0x8EAFCDFD\t0x21435\n0x8EAFCDFE\t0x21451\n0x8EAFCEA1\t0x2142D\n0x8EAFCEA2\t0x24362\n0x8EAFCEA3\t0x21454\n0x8EAFCEA4\t0x21452\n0x8EAFCEA5\t0x366D\n0x8EAFCEA6\t0x21436\n0x8EAFCEA7\t0x21437\n0x8EAFCEA8\t0x21438\n0x8EAFCEA9\t0x21439\n0x8EAFCEAA\t0x2143A\n0x8EAFCEAB\t0x2143B\n0x8EAFCEAC\t0x21468\n0x8EAFCEAD\t0x2143C\n0x8EAFCEAE\t0x366E\n0x8EAFCEAF\t0x21577\n0x8EAFCEB0\t0x23296\n0x8EAFCEB1\t0x2167E\n0x8EAFCEB2\t0x2167F\n0x8EAFCEB3\t0x21869\n0x8EAFCEB4\t0x2186A\n0x8EAFCEB5\t0x2186B\n0x8EAFCEB6\t0x2186C\n0x8EAFCEB7\t0x2186D\n0x8EAFCEB8\t0x2186E\n0x8EAFCEB9\t0x2186F\n0x8EAFCEBA\t0x2185D\n0x8EAFCEBB\t0x21870\n0x8EAFCEBC\t0x21885\n0x8EAFCEBD\t0x21871\n0x8EAFCEBE\t0x21872\n0x8EAFCEBF\t0x21873\n0x8EAFCEC0\t0x21874\n0x8EAFCEC1\t0x21875\n0x8EAFCEC2\t0x21876\n0x8EAFCEC3\t0x21884\n0x8EAFCEC4\t0x21877\n0x8EAFCEC5\t0x21883\n0x8EAFCEC6\t0x2199A\n0x8EAFCEC7\t0x21AA7\n0x8EAFCEC8\t0x21AA8\n0x8EAFCEC9\t0x21AA9\n0x8EAFCECA\t0x21AAA\n0x8EAFCECB\t0x21AAB\n0x8EAFCECC\t0x21AAC\n0x8EAFCECD\t0x21AB7\n0x8EAFCECE\t0x21AAD\n0x8EAFCECF\t0x21AAE\n0x8EAFCED1\t0x21B45\n0x8EAFCED2\t0x21CD3\n0x8EAFCED3\t0x21CD4\n0x8EAFCED4\t0x21CD5\n0x8EAFCED5\t0x21CD6\n0x8EAFCED6\t0x21CD7\n0x8EAFCED7\t0x21F26\n0x8EAFCED8\t0x21F27\n0x8EAFCED9\t0x21F28\n0x8EAFCEDB\t0x21F29\n0x8EAFCEDC\t0x21F2A\n0x8EAFCEDD\t0x22005\n0x8EAFCEDE\t0x5E64\n0x8EAFCEDF\t0x221D0\n0x8EAFCEE0\t0x222B7\n0x8EAFCEE2\t0x222B8\n0x8EAFCEE3\t0x222B9\n0x8EAFCEE4\t0x22422\n0x8EAFCEE5\t0x22423\n0x8EAFCEE6\t0x22573\n0x8EAFCEE7\t0x22574\n0x8EAFCEE8\t0x2288F\n0x8EAFCEE9\t0x22812\n0x8EAFCEEA\t0x22813\n0x8EAFCEEB\t0x22814\n0x8EAFCEEC\t0x22815\n0x8EAFCEED\t0x22816\n0x8EAFCEEE\t0x22817\n0x8EAFCEEF\t0x22818\n0x8EAFCEF0\t0x22861\n0x8EAFCEF1\t0x22866\n0x8EAFCEF2\t0x22867\n0x8EAFCEF3\t0x22819\n0x8EAFCEF4\t0x22868\n0x8EAFCEF5\t0x2281A\n0x8EAFCEF6\t0x22869\n0x8EAFCEF7\t0x22A04\n0x8EAFCEF8\t0x22A05\n0x8EAFCEFA\t0x22A06\n0x8EAFCEFB\t0x229FD\n0x8EAFCEFC\t0x22D50\n0x8EAFCEFD\t0x22D51\n0x8EAFCEFE\t0x22D52\n0x8EAFCFA1\t0x22D53\n0x8EAFCFA2\t0x22D54\n0x8EAFCFA3\t0x22D55\n0x8EAFCFA4\t0x22D63\n0x8EAFCFA5\t0x2F8C4\n0x8EAFCFA6\t0x22D56\n0x8EAFCFA7\t0x22D57\n0x8EAFCFA8\t0x22D58\n0x8EAFCFA9\t0x22D59\n0x8EAFCFAA\t0x22D5A\n0x8EAFCFAB\t0x22D5B\n0x8EAFCFAD\t0x22D5C\n0x8EAFCFAE\t0x22D5D\n0x8EAFCFAF\t0x22D5E\n0x8EAFCFB0\t0x22D5F\n0x8EAFCFB1\t0x22FD7\n0x8EAFCFB3\t0x23060\n0x8EAFCFB4\t0x23061\n0x8EAFCFB5\t0x23117\n0x8EAFCFB6\t0x23139\n0x8EAFCFB7\t0x2328F\n0x8EAFCFB8\t0x232C8\n0x8EAFCFB9\t0x23290\n0x8EAFCFBA\t0x23291\n0x8EAFCFBB\t0x23398\n0x8EAFCFBC\t0x23399\n0x8EAFCFBD\t0x23644\n0x8EAFCFBE\t0x23645\n0x8EAFCFBF\t0x23646\n0x8EAFCFC0\t0x23659\n0x8EAFCFC1\t0x236EE\n0x8EAFCFC2\t0x6A2B\n0x8EAFCFC3\t0x23647\n0x8EAFCFC4\t0x23648\n0x8EAFCFC6\t0x23649\n0x8EAFCFC7\t0x2364A\n0x8EAFCFC8\t0x2364B\n0x8EAFCFC9\t0x2364C\n0x8EAFCFCA\t0x2364D\n0x8EAFCFCB\t0x2364E\n0x8EAFCFCC\t0x2364F\n0x8EAFCFCD\t0x23650\n0x8EAFCFCE\t0x23651\n0x8EAFCFCF\t0x23652\n0x8EAFCFD0\t0x23653\n0x8EAFCFD1\t0x23654\n0x8EAFCFD2\t0x23655\n0x8EAFCFD3\t0x23656\n0x8EAFCFD4\t0x23915\n0x8EAFCFD5\t0x2399A\n0x8EAFCFD6\t0x23A58\n0x8EAFCFD7\t0x23AFC\n0x8EAFCFD8\t0x23AFD\n0x8EAFCFD9\t0x23F86\n0x8EAFCFDA\t0x23F87\n0x8EAFCFDB\t0x23F88\n0x8EAFCFDC\t0x23F89\n0x8EAFCFDD\t0x23F8A\n0x8EAFCFDE\t0x23F8B\n0x8EAFCFDF\t0x23F8C\n0x8EAFCFE1\t0x2401F\n0x8EAFCFE2\t0x23F8D\n0x8EAFCFE3\t0x23F8E\n0x8EAFCFE4\t0x23F8F\n0x8EAFCFE5\t0x23F90\n0x8EAFCFE6\t0x23F91\n0x8EAFCFE7\t0x23F92\n0x8EAFCFE8\t0x23F93\n0x8EAFCFE9\t0x2F911\n0x8EAFCFEA\t0x23F94\n0x8EAFCFEB\t0x23F95\n0x8EAFCFEC\t0x23ECA\n0x8EAFCFED\t0x23F18\n0x8EAFCFEF\t0x23F96\n0x8EAFCFF0\t0x23F97\n0x8EAFCFF1\t0x23F98\n0x8EAFCFF2\t0x23F99\n0x8EAFCFF3\t0x23F9A\n0x8EAFCFF4\t0x23F9B\n0x8EAFCFF5\t0x23F9C\n0x8EAFCFF6\t0x23F9D\n0x8EAFCFF7\t0x23F9E\n0x8EAFCFF8\t0x23F9F\n0x8EAFCFF9\t0x6F46\n0x8EAFCFFB\t0x23FA0\n0x8EAFCFFC\t0x23FA1\n0x8EAFCFFD\t0x6F9A\n0x8EAFCFFE\t0x23FB7\n0x8EAFD0A2\t0x24396\n0x8EAFD0A3\t0x24368\n0x8EAFD0A4\t0x24369\n0x8EAFD0A5\t0x2438C\n0x8EAFD0A6\t0x2436A\n0x8EAFD0A7\t0x2436B\n0x8EAFD0A8\t0x2436C\n0x8EAFD0A9\t0x2436D\n0x8EAFD0AA\t0x2436E\n0x8EAFD0AB\t0x2436F\n0x8EAFD0AC\t0x2437F\n0x8EAFD0AD\t0x24384\n0x8EAFD0AE\t0x24370\n0x8EAFD0AF\t0x24371\n0x8EAFD0B0\t0x24385\n0x8EAFD0B1\t0x24372\n0x8EAFD0B2\t0x24373\n0x8EAFD0B3\t0x24374\n0x8EAFD0B4\t0x24375\n0x8EAFD0B5\t0x24376\n0x8EAFD0B7\t0x24377\n0x8EAFD0B8\t0x24378\n0x8EAFD0B9\t0x24379\n0x8EAFD0BA\t0x2437A\n0x8EAFD0BB\t0x2437B\n0x8EAFD0BC\t0x2437C\n0x8EAFD0BD\t0x2F91E\n0x8EAFD0BE\t0x24594\n0x8EAFD0BF\t0x246D5\n0x8EAFD0C0\t0x24829\n0x8EAFD0C1\t0x24A2B\n0x8EAFD0C2\t0x24A2C\n0x8EAFD0C3\t0x24A2D\n0x8EAFD0C4\t0x24A2E\n0x8EAFD0C5\t0x24A2F\n0x8EAFD0C6\t0x24A30\n0x8EAFD0C7\t0x24A3E\n0x8EAFD0C8\t0x24A31\n0x8EAFD0C9\t0x24A32\n0x8EAFD0CA\t0x24A33\n0x8EAFD0CB\t0x24A34\n0x8EAFD0CC\t0x24A35\n0x8EAFD0CD\t0x24B11\n0x8EAFD0CE\t0x3F53\n0x8EAFD0CF\t0x24CC0\n0x8EAFD0D0\t0x24E42\n0x8EAFD0D1\t0x24E43\n0x8EAFD0D2\t0x24E44\n0x8EAFD0D3\t0x24E45\n0x8EAFD0D4\t0x24E46\n0x8EAFD0D5\t0x2508C\n0x8EAFD0D6\t0x2508D\n0x8EAFD0D7\t0x2508E\n0x8EAFD0D8\t0x2508F\n0x8EAFD0D9\t0x25090\n0x8EAFD0DA\t0x25091\n0x8EAFD0DB\t0x25263\n0x8EAFD0DC\t0x25264\n0x8EAFD0DD\t0x25265\n0x8EAFD0DF\t0x2F94A\n0x8EAFD0E1\t0x253F6\n0x8EAFD0E2\t0x25536\n0x8EAFD0E3\t0x25537\n0x8EAFD0E4\t0x2552C\n0x8EAFD0E5\t0x25538\n0x8EAFD0E6\t0x25539\n0x8EAFD0E8\t0x2553A\n0x8EAFD0E9\t0x256E3\n0x8EAFD0EA\t0x256E2\n0x8EAFD0EB\t0x256F5\n0x8EAFD0EC\t0x25847\n0x8EAFD0EE\t0x25848\n0x8EAFD0EF\t0x25849\n0x8EAFD0F0\t0x2584A\n0x8EAFD0F1\t0x2584B\n0x8EAFD0F2\t0x2584C\n0x8EAFD0F3\t0x25AA8\n0x8EAFD0F4\t0x25AA9\n0x8EAFD0F5\t0x25AAA\n0x8EAFD0F7\t0x25C0B\n0x8EAFD0F8\t0x25C06\n0x8EAFD0F9\t0x25C73\n0x8EAFD0FA\t0x25C0C\n0x8EAFD0FB\t0x25C0D\n0x8EAFD0FC\t0x25C0E\n0x8EAFD0FD\t0x25C0F\n0x8EAFD0FE\t0x25C10\n0x8EAFD1A2\t0x25C11\n0x8EAFD1A3\t0x2F962\n0x8EAFD1A4\t0x25C12\n0x8EAFD1A5\t0x25C14\n0x8EAFD1A6\t0x25C15\n0x8EAFD1A7\t0x25C16\n0x8EAFD1A9\t0x25C13\n0x8EAFD1AA\t0x25C17\n0x8EAFD1AB\t0x25ED9\n0x8EAFD1AC\t0x25EDA\n0x8EAFD1AD\t0x25EDB\n0x8EAFD1AF\t0x25EDC\n0x8EAFD1B0\t0x260A6\n0x8EAFD1B1\t0x260A7\n0x8EAFD1B2\t0x260A8\n0x8EAFD1B3\t0x260A9\n0x8EAFD1B4\t0x260AA\n0x8EAFD1B5\t0x260AB\n0x8EAFD1B7\t0x2F96D\n0x8EAFD1B8\t0x260AC\n0x8EAFD1B9\t0x260AD\n0x8EAFD1BA\t0x260AE\n0x8EAFD1BD\t0x260AF\n0x8EAFD1BE\t0x260B0\n0x8EAFD1BF\t0x260B1\n0x8EAFD1C0\t0x26244\n0x8EAFD1C1\t0x26245\n0x8EAFD1C2\t0x262F7\n0x8EAFD1C3\t0x262F8\n0x8EAFD1C4\t0x2646B\n0x8EAFD1C5\t0x2646C\n0x8EAFD1C6\t0x26461\n0x8EAFD1C7\t0x26512\n0x8EAFD1C8\t0x265AF\n0x8EAFD1C9\t0x265B0\n0x8EAFD1CA\t0x265B1\n0x8EAFD1CB\t0x265B2\n0x8EAFD1CC\t0x265B3\n0x8EAFD1CD\t0x265B4\n0x8EAFD1CE\t0x265B5\n0x8EAFD1CF\t0x265B6\n0x8EAFD1D0\t0x26622\n0x8EAFD1D1\t0x267EA\n0x8EAFD1D2\t0x267EB\n0x8EAFD1D3\t0x267EC\n0x8EAFD1D4\t0x267ED\n0x8EAFD1D5\t0x443D\n0x8EAFD1D6\t0x268ED\n0x8EAFD1D7\t0x2691B\n0x8EAFD1D8\t0x26947\n0x8EAFD1D9\t0x269E8\n0x8EAFD1DA\t0x26AD0\n0x8EAFD1DB\t0x26AE7\n0x8EAFD1DC\t0x26AE8\n0x8EAFD1DD\t0x26AE9\n0x8EAFD1DE\t0x26E4E\n0x8EAFD1DF\t0x26E4F\n0x8EAFD1E0\t0x26E50\n0x8EAFD1E1\t0x26E72\n0x8EAFD1E2\t0x26E51\n0x8EAFD1E3\t0x26E52\n0x8EAFD1E4\t0x2F9A7\n0x8EAFD1E5\t0x4526\n0x8EAFD1E6\t0x26E53\n0x8EAFD1E7\t0x26E54\n0x8EAFD1E8\t0x26E55\n0x8EAFD1E9\t0x26E56\n0x8EAFD1EA\t0x26E57\n0x8EAFD1EB\t0x26E77\n0x8EAFD1EC\t0x26E58\n0x8EAFD1ED\t0x26E59\n0x8EAFD1EE\t0x26E5A\n0x8EAFD1EF\t0x26E5B\n0x8EAFD1F0\t0x26E5C\n0x8EAFD1F1\t0x26E6E\n0x8EAFD1F2\t0x26E5D\n0x8EAFD1F3\t0x4527\n0x8EAFD1F5\t0x26E5E\n0x8EAFD1F6\t0x4528\n0x8EAFD1F7\t0x26E5F\n0x8EAFD1F9\t0x271D7\n0x8EAFD1FA\t0x27389\n0x8EAFD1FB\t0x2738A\n0x8EAFD1FD\t0x2F9BE\n0x8EAFD1FE\t0x2738B\n0x8EAFD2A1\t0x2738C\n0x8EAFD2A2\t0x2738D\n0x8EAFD2A3\t0x2738E\n0x8EAFD2A4\t0x2F9BC\n0x8EAFD2A5\t0x2738F\n0x8EAFD2A7\t0x2739A\n0x8EAFD2A8\t0x27390\n0x8EAFD2A9\t0x27391\n0x8EAFD2AA\t0x27392\n0x8EAFD2AB\t0x27393\n0x8EAFD2AC\t0x27712\n0x8EAFD2AD\t0x276F1\n0x8EAFD2AF\t0x277FE\n0x8EAFD2B0\t0x277FB\n0x8EAFD2B1\t0x27857\n0x8EAFD2B2\t0x27A49\n0x8EAFD2B3\t0x27A4A\n0x8EAFD2B4\t0x27A4B\n0x8EAFD2B5\t0x27A4C\n0x8EAFD2B7\t0x27A4D\n0x8EAFD2B8\t0x27A59\n0x8EAFD2B9\t0x27A4E\n0x8EAFD2BA\t0x27A4F\n0x8EAFD2BB\t0x27BF4\n0x8EAFD2BC\t0x27C65\n0x8EAFD2BD\t0x27DA6\n0x8EAFD2BE\t0x27DA7\n0x8EAFD2BF\t0x27DA8\n0x8EAFD2C0\t0x27F22\n0x8EAFD2C1\t0x27F23\n0x8EAFD2C2\t0x2808B\n0x8EAFD2C3\t0x2808C\n0x8EAFD2C4\t0x2808D\n0x8EAFD2C5\t0x2808E\n0x8EAFD2C6\t0x28258\n0x8EAFD2C8\t0x28259\n0x8EAFD2C9\t0x2833B\n0x8EAFD2CA\t0x2833C\n0x8EAFD2CB\t0x2833D\n0x8EAFD2CC\t0x2833E\n0x8EAFD2CD\t0x28448\n0x8EAFD2CE\t0x28594\n0x8EAFD2CF\t0x28595\n0x8EAFD2D0\t0x28596\n0x8EAFD2D1\t0x28597\n0x8EAFD2D2\t0x28598\n0x8EAFD2D3\t0x2877D\n0x8EAFD2D4\t0x286FE\n0x8EAFD2D5\t0x2877E\n0x8EAFD2D6\t0x2877F\n0x8EAFD2D8\t0x2885B\n0x8EAFD2D9\t0x2885C\n0x8EAFD2DA\t0x289E4\n0x8EAFD2DB\t0x289C1\n0x8EAFD2DC\t0x289FD\n0x8EAFD2DD\t0x289C2\n0x8EAFD2DE\t0x289D6\n0x8EAFD2DF\t0x289C3\n0x8EAFD2E0\t0x289C4\n0x8EAFD2E2\t0x289DC\n0x8EAFD2E3\t0x289C5\n0x8EAFD2E4\t0x289C6\n0x8EAFD2E5\t0x289C7\n0x8EAFD2E6\t0x289E1\n0x8EAFD2E7\t0x289C8\n0x8EAFD2E8\t0x289C9\n0x8EAFD2E9\t0x289CA\n0x8EAFD2EA\t0x289CB\n0x8EAFD2EB\t0x92F2\n0x8EAFD2EC\t0x289CC\n0x8EAFD2ED\t0x289CD\n0x8EAFD2EE\t0x28D35\n0x8EAFD2EF\t0x28D36\n0x8EAFD2F0\t0x28D47\n0x8EAFD2F1\t0x28D37\n0x8EAFD2F2\t0x28F1B\n0x8EAFD2F3\t0x28F1C\n0x8EAFD2F4\t0x28F1D\n0x8EAFD2F5\t0x28F1E\n0x8EAFD2F6\t0x28F1F\n0x8EAFD2F7\t0x28F20\n0x8EAFD2F8\t0x28F7B\n0x8EAFD2F9\t0x28F7A\n0x8EAFD2FA\t0x28FFE\n0x8EAFD2FB\t0x290C6\n0x8EAFD2FC\t0x290C7\n0x8EAFD2FD\t0x290C8\n0x8EAFD2FE\t0x290C9\n0x8EAFD3A1\t0x290CA\n0x8EAFD3A3\t0x294A0\n0x8EAFD3A4\t0x294A1\n0x8EAFD3A5\t0x295CC\n0x8EAFD3A6\t0x295CD\n0x8EAFD3A7\t0x296F1\n0x8EAFD3A8\t0x296D7\n0x8EAFD3A9\t0x29842\n0x8EAFD3AA\t0x29846\n0x8EAFD3AB\t0x298A3\n0x8EAFD3AC\t0x298A5\n0x8EAFD3AD\t0x298A6\n0x8EAFD3AE\t0x29ACB\n0x8EAFD3AF\t0x29ACC\n0x8EAFD3B0\t0x29B26\n0x8EAFD3B1\t0x29B27\n0x8EAFD3B2\t0x29B28\n0x8EAFD3B3\t0x29B29\n0x8EAFD3B4\t0x29CAE\n0x8EAFD3B5\t0x29CAF\n0x8EAFD3B6\t0x29CB0\n0x8EAFD3B7\t0x29D73\n0x8EAFD3B9\t0x29D7C\n0x8EAFD3BA\t0x29D74\n0x8EAFD3BC\t0x29F80\n0x8EAFD3BD\t0x29D75\n0x8EAFD3BE\t0x9B79\n0x8EAFD3C0\t0x29FCF\n0x8EAFD3C2\t0x2A38F\n0x8EAFD3C3\t0x20670\n0x8EAFD3C4\t0x20085\n0x8EAFD3C5\t0x20397\n0x8EAFD3C6\t0x203F6\n0x8EAFD3C7\t0x203F7\n0x8EAFD3C8\t0x203F8\n0x8EAFD3C9\t0x203FA\n0x8EAFD3CA\t0x203FB\n0x8EAFD3CB\t0x204BA\n0x8EAFD3CC\t0x204BB\n0x8EAFD3CD\t0x204BC\n0x8EAFD3CE\t0x204BD\n0x8EAFD3CF\t0x20534\n0x8EAFD3D0\t0x20535\n0x8EAFD3D1\t0x205A2\n0x8EAFD3D2\t0x20614\n0x8EAFD3D3\t0x20611\n0x8EAFD3D4\t0x2066E\n0x8EAFD3D5\t0x2066F\n0x8EAFD3D6\t0x20808\n0x8EAFD3D7\t0x208B8\n0x8EAFD3D8\t0x20A09\n0x8EAFD3D9\t0x20ABD\n0x8EAFD3DA\t0x20ABE\n0x8EAFD3DB\t0x20B88\n0x8EAFD3DC\t0x20FFE\n0x8EAFD3DD\t0x567A\n0x8EAFD3DE\t0x20FFF\n0x8EAFD3DF\t0x21000\n0x8EAFD3E0\t0x21001\n0x8EAFD3E1\t0x21002\n0x8EAFD3E2\t0x21003\n0x8EAFD3E3\t0x21004\n0x8EAFD3E4\t0x21005\n0x8EAFD3E5\t0x21006\n0x8EAFD3E7\t0x21007\n0x8EAFD3E8\t0x21008\n0x8EAFD3E9\t0x21009\n0x8EAFD3EA\t0x2100A\n0x8EAFD3EB\t0x2100B\n0x8EAFD3EC\t0x2100C\n0x8EAFD3ED\t0x2100D\n0x8EAFD3EE\t0x2100E\n0x8EAFD3EF\t0x2100F\n0x8EAFD3F3\t0x2122C\n0x8EAFD3F4\t0x2146B\n0x8EAFD3F6\t0x2146C\n0x8EAFD3F7\t0x21487\n0x8EAFD3F8\t0x2146D\n0x8EAFD3F9\t0x21578\n0x8EAFD3FA\t0x2168B\n0x8EAFD3FB\t0x218A4\n0x8EAFD3FC\t0x218A5\n0x8EAFD3FD\t0x218A6\n0x8EAFD3FE\t0x218A7\n0x8EAFD4A1\t0x218BE\n0x8EAFD4A2\t0x218A8\n0x8EAFD4A3\t0x218A9\n0x8EAFD4A4\t0x218AA\n0x8EAFD4A5\t0x2188D\n0x8EAFD4A6\t0x218AB\n0x8EAFD4A7\t0x218AC\n0x8EAFD4A8\t0x218BF\n0x8EAFD4AA\t0x372C\n0x8EAFD4AB\t0x218AD\n0x8EAFD4AC\t0x218AE\n0x8EAFD4AD\t0x219A4\n0x8EAFD4AE\t0x219A5\n0x8EAFD4AF\t0x21AC7\n0x8EAFD4B0\t0x21AC8\n0x8EAFD4B1\t0x21AC9\n0x8EAFD4B2\t0x27DBC\n0x8EAFD4B3\t0x21ACA\n0x8EAFD4B4\t0x21ACB\n0x8EAFD4B5\t0x21ACC\n0x8EAFD4B6\t0x21ACD\n0x8EAFD4B7\t0x21ACE\n0x8EAFD4B8\t0x21C19\n0x8EAFD4B9\t0x21CE6\n0x8EAFD4BA\t0x21F4C\n0x8EAFD4BB\t0x21F4D\n0x8EAFD4BC\t0x21F4E\n0x8EAFD4BD\t0x22006\n0x8EAFD4BF\t0x222CD\n0x8EAFD4C0\t0x222CE\n0x8EAFD4C1\t0x222CF\n0x8EAFD4C2\t0x222D0\n0x8EAFD4C3\t0x5F5C\n0x8EAFD4C4\t0x22581\n0x8EAFD4C5\t0x22582\n0x8EAFD4C6\t0x20533\n0x8EAFD4C7\t0x2286A\n0x8EAFD4C8\t0x2286B\n0x8EAFD4C9\t0x228B2\n0x8EAFD4CA\t0x2286C\n0x8EAFD4CB\t0x2286D\n0x8EAFD4CC\t0x228CC\n0x8EAFD4CD\t0x228AE\n0x8EAFD4CE\t0x228B3\n0x8EAFD4CF\t0x22891\n0x8EAFD4D1\t0x2286E\n0x8EAFD4D2\t0x228B4\n0x8EAFD4D3\t0x2286F\n0x8EAFD4D4\t0x22DC9\n0x8EAFD4D5\t0x22DA7\n0x8EAFD4D6\t0x22DA8\n0x8EAFD4D7\t0x22DA9\n0x8EAFD4D8\t0x22DAA\n0x8EAFD4D9\t0x22DAB\n0x8EAFD4DA\t0x22DAC\n0x8EAFD4DB\t0x22DAD\n0x8EAFD4DC\t0x22DAE\n0x8EAFD4DD\t0x22DAF\n0x8EAFD4DE\t0x22DB0\n0x8EAFD4DF\t0x22D60\n0x8EAFD4E0\t0x22DB1\n0x8EAFD4E1\t0x22EE1\n0x8EAFD4E2\t0x22FE3\n0x8EAFD4E3\t0x22FF6\n0x8EAFD4E4\t0x65D9\n0x8EAFD4E5\t0x232AF\n0x8EAFD4E6\t0x232B0\n0x8EAFD4E7\t0x232B1\n0x8EAFD4E8\t0x232BA\n0x8EAFD4E9\t0x232B2\n0x8EAFD4EA\t0x232B3\n0x8EAFD4EB\t0x2334C\n0x8EAFD4ED\t0x233A0\n0x8EAFD4EE\t0x233A1\n0x8EAFD4EF\t0x236B0\n0x8EAFD4F0\t0x236B1\n0x8EAFD4F1\t0x236B2\n0x8EAFD4F2\t0x236B3\n0x8EAFD4F3\t0x236B4\n0x8EAFD4F4\t0x2F8EB\n0x8EAFD4F5\t0x236B5\n0x8EAFD4F6\t0x236B6\n0x8EAFD4F7\t0x236B7\n0x8EAFD4F8\t0x236B8\n0x8EAFD4F9\t0x236B9\n0x8EAFD4FA\t0x236BA\n0x8EAFD4FB\t0x6A72\n0x8EAFD4FC\t0x236BB\n0x8EAFD4FD\t0x236BC\n0x8EAFD4FE\t0x236BD\n0x8EAFD5A1\t0x236BE\n0x8EAFD5A2\t0x236BF\n0x8EAFD5A3\t0x236DF\n0x8EAFD5A4\t0x236C0\n0x8EAFD5A5\t0x236C1\n0x8EAFD5A6\t0x236C2\n0x8EAFD5A7\t0x236C3\n0x8EAFD5A8\t0x236C4\n0x8EAFD5A9\t0x6A78\n0x8EAFD5AB\t0x236C5\n0x8EAFD5AC\t0x236C6\n0x8EAFD5AD\t0x236C7\n0x8EAFD5AE\t0x236C8\n0x8EAFD5AF\t0x236C9\n0x8EAFD5B0\t0x236CA\n0x8EAFD5B1\t0x2373C\n0x8EAFD5B2\t0x236CB\n0x8EAFD5B3\t0x236CC\n0x8EAFD5B4\t0x236CD\n0x8EAFD5B5\t0x236CE\n0x8EAFD5B6\t0x236CF\n0x8EAFD5B7\t0x236D0\n0x8EAFD5B8\t0x236D1\n0x8EAFD5B9\t0x6B5A\n0x8EAFD5BA\t0x2391D\n0x8EAFD5BB\t0x2391E\n0x8EAFD5BC\t0x23A64\n0x8EAFD5BD\t0x23A65\n0x8EAFD5BE\t0x23AC5\n0x8EAFD5BF\t0x23AC6\n0x8EAFD5C0\t0x23AC7\n0x8EAFD5C1\t0x23AFF\n0x8EAFD5C2\t0x23BFF\n0x8EAFD5C3\t0x23C00\n0x8EAFD5C4\t0x23C01\n0x8EAFD5C5\t0x23C02\n0x8EAFD5C6\t0x23FF5\n0x8EAFD5C7\t0x2405C\n0x8EAFD5C8\t0x23FF6\n0x8EAFD5C9\t0x23FF7\n0x8EAFD5CA\t0x23FB0\n0x8EAFD5CB\t0x23FF8\n0x8EAFD5CC\t0x23FF9\n0x8EAFD5CD\t0x2405D\n0x8EAFD5CE\t0x24050\n0x8EAFD5CF\t0x23FFA\n0x8EAFD5D0\t0x23FFB\n0x8EAFD5D1\t0x23FA2\n0x8EAFD5D2\t0x23FFC\n0x8EAFD5D3\t0x23FFD\n0x8EAFD5D4\t0x23FFE\n0x8EAFD5D5\t0x23FFF\n0x8EAFD5D6\t0x2F913\n0x8EAFD5D7\t0x24000\n0x8EAFD5D8\t0x2F91F\n0x8EAFD5D9\t0x243C1\n0x8EAFD5DA\t0x243C2\n0x8EAFD5DB\t0x243C3\n0x8EAFD5DC\t0x243C4\n0x8EAFD5DD\t0x243C5\n0x8EAFD5DE\t0x243C6\n0x8EAFD5DF\t0x243C7\n0x8EAFD5E0\t0x243C8\n0x8EAFD5E1\t0x243C9\n0x8EAFD5E2\t0x243CA\n0x8EAFD5E3\t0x243CB\n0x8EAFD5E4\t0x290EF\n0x8EAFD5E5\t0x243D7\n0x8EAFD5E6\t0x243CC\n0x8EAFD5E7\t0x243CD\n0x8EAFD5E8\t0x243CE\n0x8EAFD5E9\t0x24422\n0x8EAFD5EA\t0x243CF\n0x8EAFD5EB\t0x243D0\n0x8EAFD5ED\t0x243D1\n0x8EAFD5EE\t0x243D2\n0x8EAFD5EF\t0x243E9\n0x8EAFD5F0\t0x243D3\n0x8EAFD5F1\t0x243D4\n0x8EAFD5F2\t0x243D5\n0x8EAFD5F3\t0x24538\n0x8EAFD5F4\t0x2103B\n0x8EAFD5F5\t0x2487D\n0x8EAFD5F6\t0x2056F\n0x8EAFD5F7\t0x248A1\n0x8EAFD5F8\t0x24A53\n0x8EAFD5F9\t0x24A54\n0x8EAFD5FA\t0x3EFB\n0x8EAFD5FB\t0x24A55\n0x8EAFD5FC\t0x24A3C\n0x8EAFD5FD\t0x24A56\n0x8EAFD6A1\t0x24A66\n0x8EAFD6A2\t0x3EFC\n0x8EAFD6A3\t0x24A57\n0x8EAFD6A4\t0x24A58\n0x8EAFD6A5\t0x24A59\n0x8EAFD6A6\t0x24A5A\n0x8EAFD6A7\t0x24A5B\n0x8EAFD6A8\t0x24A67\n0x8EAFD6A9\t0x24A5C\n0x8EAFD6AC\t0x24A6A\n0x8EAFD6AD\t0x24A5D\n0x8EAFD6AE\t0x24A3D\n0x8EAFD6AF\t0x24A5E\n0x8EAFD6B0\t0x24A65\n0x8EAFD6B1\t0x24CE1\n0x8EAFD6B2\t0x24CCD\n0x8EAFD6B3\t0x2A011\n0x8EAFD6B4\t0x24E6F\n0x8EAFD6B5\t0x24E70\n0x8EAFD6B6\t0x2501A\n0x8EAFD6B7\t0x2509A\n0x8EAFD6B8\t0x2509B\n0x8EAFD6B9\t0x2509C\n0x8EAFD6BA\t0x2509E\n0x8EAFD6BB\t0x2509F\n0x8EAFD6BC\t0x2F93F\n0x8EAFD6BD\t0x2528E\n0x8EAFD6BF\t0x253FD\n0x8EAFD6C1\t0x2555E\n0x8EAFD6C2\t0x2555F\n0x8EAFD6C3\t0x25560\n0x8EAFD6C4\t0x25565\n0x8EAFD6C5\t0x25567\n0x8EAFD6C6\t0x25568\n0x8EAFD6C7\t0x25569\n0x8EAFD6C9\t0x2556A\n0x8EAFD6CA\t0x2558F\n0x8EAFD6CB\t0x2556B\n0x8EAFD6CC\t0x2556C\n0x8EAFD6CD\t0x2556D\n0x8EAFD6CE\t0x256F7\n0x8EAFD6CF\t0x256F8\n0x8EAFD6D0\t0x256F9\n0x8EAFD6D1\t0x256E4\n0x8EAFD6D2\t0x256FA\n0x8EAFD6D3\t0x258B1\n0x8EAFD6D4\t0x25875\n0x8EAFD6D5\t0x25876\n0x8EAFD6D6\t0x259FF\n0x8EAFD6D7\t0x25A00\n0x8EAFD6D8\t0x25A01\n0x8EAFD6D9\t0x25A02\n0x8EAFD6DA\t0x25A03\n0x8EAFD6DB\t0x25AAE\n0x8EAFD6DC\t0x25AAD\n0x8EAFD6DD\t0x25C51\n0x8EAFD6DE\t0x25C52\n0x8EAFD6E0\t0x25C53\n0x8EAFD6E1\t0x25C54\n0x8EAFD6E2\t0x25C55\n0x8EAFD6E3\t0x25C56\n0x8EAFD6E4\t0x25C57\n0x8EAFD6E5\t0x25C58\n0x8EAFD6E6\t0x25C59\n0x8EAFD6E7\t0x25C5A\n0x8EAFD6E8\t0x25C5B\n0x8EAFD6E9\t0x25C5C\n0x8EAFD6EA\t0x25C5D\n0x8EAFD6EB\t0x25C5E\n0x8EAFD6EC\t0x25C5F\n0x8EAFD6ED\t0x25C60\n0x8EAFD6EE\t0x25C61\n0x8EAFD6EF\t0x25C62\n0x8EAFD6F0\t0x25C63\n0x8EAFD6F1\t0x25C64\n0x8EAFD6F2\t0x25C4C\n0x8EAFD6F3\t0x25C66\n0x8EAFD6F4\t0x25EF1\n0x8EAFD6F5\t0x25EF2\n0x8EAFD6F6\t0x260F2\n0x8EAFD6F7\t0x260F3\n0x8EAFD6F8\t0x260F4\n0x8EAFD6F9\t0x260F5\n0x8EAFD6FA\t0x260F6\n0x8EAFD6FB\t0x260F7\n0x8EAFD6FC\t0x260F8\n0x8EAFD6FD\t0x260F9\n0x8EAFD6FE\t0x260FA\n0x8EAFD7A1\t0x2624C\n0x8EAFD7A2\t0x2624B\n0x8EAFD7A3\t0x2631B\n0x8EAFD7A4\t0x263CE\n0x8EAFD7A5\t0x263B3\n0x8EAFD7A6\t0x2647F\n0x8EAFD7A7\t0x2F979\n0x8EAFD7A8\t0x2F97C\n0x8EAFD7A9\t0x2651A\n0x8EAFD7AA\t0x265C4\n0x8EAFD7AB\t0x265C5\n0x8EAFD7AC\t0x265C6\n0x8EAFD7AD\t0x265C7\n0x8EAFD7AE\t0x265C8\n0x8EAFD7AF\t0x265C9\n0x8EAFD7B1\t0x26819\n0x8EAFD7B2\t0x2681C\n0x8EAFD7B3\t0x2681A\n0x8EAFD7B4\t0x2694C\n0x8EAFD7B5\t0x2698E\n0x8EAFD7B6\t0x26A7E\n0x8EAFD7B7\t0x26EEB\n0x8EAFD7B8\t0x26EEC\n0x8EAFD7B9\t0x26EED\n0x8EAFD7BA\t0x26EEE\n0x8EAFD7BB\t0x26EEF\n0x8EAFD7BC\t0x26EF0\n0x8EAFD7BD\t0x26EF1\n0x8EAFD7BE\t0x26ED8\n0x8EAFD7BF\t0x26ED9\n0x8EAFD7C0\t0x26EDA\n0x8EAFD7C1\t0x26EDB\n0x8EAFD7C2\t0x26EF2\n0x8EAFD7C3\t0x26EF3\n0x8EAFD7C4\t0x26EF4\n0x8EAFD7C5\t0x26F07\n0x8EAFD7C7\t0x2F9AC\n0x8EAFD7C9\t0x26EF5\n0x8EAFD7CA\t0x26F15\n0x8EAFD7CC\t0x26EF6\n0x8EAFD7CD\t0x26EF7\n0x8EAFD7CE\t0x26EF8\n0x8EAFD7CF\t0x26EF9\n0x8EAFD7D0\t0x26EFA\n0x8EAFD7D1\t0x26EFB\n0x8EAFD7D2\t0x26EFC\n0x8EAFD7D3\t0x26EFD\n0x8EAFD7D4\t0x26EFE\n0x8EAFD7D5\t0x26FA7\n0x8EAFD7D6\t0x26EFF\n0x8EAFD7D7\t0x26F00\n0x8EAFD7D8\t0x26F01\n0x8EAFD7D9\t0x26F02\n0x8EAFD7DA\t0x26F03\n0x8EAFD7DB\t0x26F04\n0x8EAFD7DC\t0x26F05\n0x8EAFD7DD\t0x271E9\n0x8EAFD7DE\t0x271EA\n0x8EAFD7DF\t0x271EB\n0x8EAFD7E0\t0x273DE\n0x8EAFD7E1\t0x273DF\n0x8EAFD7E3\t0x273E0\n0x8EAFD7E4\t0x273E1\n0x8EAFD7E5\t0x273E2\n0x8EAFD7E6\t0x273E3\n0x8EAFD7E7\t0x2773E\n0x8EAFD7E8\t0x2773F\n0x8EAFD7E9\t0x27740\n0x8EAFD7EA\t0x27741\n0x8EAFD7EB\t0x27871\n0x8EAFD7EC\t0x27872\n0x8EAFD7ED\t0x27873\n0x8EAFD7EE\t0x27A88\n0x8EAFD7EF\t0x27A89\n0x8EAFD7F0\t0x27A8A\n0x8EAFD7F1\t0x27A8B\n0x8EAFD7F2\t0x27A8C\n0x8EAFD7F3\t0x27A8D\n0x8EAFD7F4\t0x27A8E\n0x8EAFD7F5\t0x27A8F\n0x8EAFD7F6\t0x27A90\n0x8EAFD7F7\t0x27A91\n0x8EAFD7F8\t0x27A92\n0x8EAFD7FA\t0x27CF1\n0x8EAFD7FB\t0x27DBE\n0x8EAFD7FC\t0x27DBF\n0x8EAFD7FD\t0x27DC0\n0x8EAFD7FE\t0x27DC1\n0x8EAFD8A1\t0x27DC2\n0x8EAFD8A2\t0x27DC3\n0x8EAFD8A3\t0x27E6E\n0x8EAFD8A4\t0x27F37\n0x8EAFD8A5\t0x27F57\n0x8EAFD8A6\t0x27F38\n0x8EAFD8A7\t0x27F39\n0x8EAFD8A8\t0x27F3A\n0x8EAFD8A9\t0x27F3B\n0x8EAFD8AA\t0x27F3C\n0x8EAFD8AB\t0x27F3D\n0x8EAFD8AC\t0x27F3E\n0x8EAFD8AD\t0x27F27\n0x8EAFD8AE\t0x27F3F\n0x8EAFD8B1\t0x280C0\n0x8EAFD8B2\t0x280C1\n0x8EAFD8B3\t0x8EBE\n0x8EAFD8B4\t0x28267\n0x8EAFD8B6\t0x28268\n0x8EAFD8B7\t0x28358\n0x8EAFD8B8\t0x28365\n0x8EAFD8B9\t0x28359\n0x8EAFD8BA\t0x2835A\n0x8EAFD8BB\t0x28424\n0x8EAFD8BC\t0x285CD\n0x8EAFD8BD\t0x285CE\n0x8EAFD8BE\t0x285CF\n0x8EAFD8BF\t0x285D2\n0x8EAFD8C0\t0x2879F\n0x8EAFD8C1\t0x28722\n0x8EAFD8C2\t0x2887D\n0x8EAFD8C3\t0x2887E\n0x8EAFD8C4\t0x289FF\n0x8EAFD8C5\t0x28A25\n0x8EAFD8C6\t0x28A00\n0x8EAFD8C7\t0x28A01\n0x8EAFD8C8\t0x933B\n0x8EAFD8C9\t0x28A02\n0x8EAFD8CA\t0x28A03\n0x8EAFD8CB\t0x28A04\n0x8EAFD8CC\t0xFA28\n0x8EAFD8CD\t0x28A05\n0x8EAFD8CE\t0x28A06\n0x8EAFD8CF\t0x28A07\n0x8EAFD8D0\t0x28A16\n0x8EAFD8D1\t0x28A08\n0x8EAFD8D2\t0x28A17\n0x8EAFD8D3\t0x28A09\n0x8EAFD8D4\t0x28A0A\n0x8EAFD8D5\t0x9340\n0x8EAFD8D6\t0x28A0B\n0x8EAFD8D7\t0x28A0C\n0x8EAFD8D8\t0x28A29\n0x8EAFD8D9\t0x933A\n0x8EAFD8DA\t0x28A0D\n0x8EAFD8DC\t0x28A0E\n0x8EAFD8DD\t0x28A10\n0x8EAFD8DE\t0x28A11\n0x8EAFD8DF\t0x28A1D\n0x8EAFD8E0\t0x28A12\n0x8EAFD8E1\t0x28A13\n0x8EAFD8E3\t0x28A14\n0x8EAFD8E4\t0x28A15\n0x8EAFD8E5\t0x28C8D\n0x8EAFD8E6\t0x28D54\n0x8EAFD8E7\t0x28D55\n0x8EAFD8E8\t0x28D56\n0x8EAFD8E9\t0x28F33\n0x8EAFD8EA\t0x28F34\n0x8EAFD8EB\t0x28F35\n0x8EAFD8EC\t0x28F36\n0x8EAFD8ED\t0x28FFA\n0x8EAFD8EE\t0x290E3\n0x8EAFD8EF\t0x290E6\n0x8EAFD8F0\t0x290ED\n0x8EAFD8F1\t0x290E7\n0x8EAFD8F2\t0x290E8\n0x8EAFD8F3\t0x290E9\n0x8EAFD8F4\t0x290EA\n0x8EAFD8F5\t0x290EB\n0x8EAFD8F6\t0x29227\n0x8EAFD8F7\t0x29220\n0x8EAFD8F8\t0x2F9F8\n0x8EAFD8F9\t0x2942A\n0x8EAFD8FA\t0x294C9\n0x8EAFD8FC\t0x294CA\n0x8EAFD8FD\t0x294CB\n0x8EAFD8FE\t0x294D9\n0x8EAFD9A1\t0x294CC\n0x8EAFD9A2\t0x294CD\n0x8EAFD9A3\t0x294CE\n0x8EAFD9A5\t0x295E1\n0x8EAFD9A6\t0x2971B\n0x8EAFD9A7\t0x2971C\n0x8EAFD9A8\t0x2971D\n0x8EAFD9A9\t0x2971E\n0x8EAFD9AA\t0x29847\n0x8EAFD9AB\t0x298D1\n0x8EAFD9AC\t0x298C9\n0x8EAFD9AD\t0x29AD0\n0x8EAFD9AE\t0x29AD1\n0x8EAFD9AF\t0x29B3F\n0x8EAFD9B0\t0x29B40\n0x8EAFD9B1\t0x29B41\n0x8EAFD9B2\t0x2FA09\n0x8EAFD9B3\t0x29B42\n0x8EAFD9B4\t0x29CC4\n0x8EAFD9B5\t0x29D9B\n0x8EAFD9B6\t0x29D92\n0x8EAFD9B7\t0x29D93\n0x8EAFD9B8\t0x9B96\n0x8EAFD9B9\t0x29D94\n0x8EAFD9BA\t0x29D95\n0x8EAFD9BD\t0x29FF3\n0x8EAFD9BE\t0x29FF4\n0x8EAFD9BF\t0x29FF5\n0x8EAFD9C0\t0x29FF6\n0x8EAFD9C1\t0x2A260\n0x8EAFD9C2\t0x2A29E\n0x8EAFD9C3\t0x2A2A0\n0x8EAFD9C4\t0x2A2A1\n0x8EAFD9C5\t0x2A31C\n0x8EAFD9C6\t0x2A39F\n0x8EAFD9C7\t0x20056\n0x8EAFD9C8\t0x20412\n0x8EAFD9C9\t0x2041F\n0x8EAFD9CA\t0x20415\n0x8EAFD9CB\t0x20416\n0x8EAFD9CC\t0x20417\n0x8EAFD9CD\t0x2F80C\n0x8EAFD9CE\t0x20418\n0x8EAFD9CF\t0x204C2\n0x8EAFD9D0\t0x204C3\n0x8EAFD9D1\t0x204C4\n0x8EAFD9D2\t0x205A1\n0x8EAFD9D3\t0x2061B\n0x8EAFD9D4\t0x2061C\n0x8EAFD9D5\t0x20671\n0x8EAFD9D6\t0x20813\n0x8EAFD9D7\t0x20B17\n0x8EAFD9D8\t0x20B8F\n0x8EAFD9D9\t0x2105F\n0x8EAFD9DA\t0x21060\n0x8EAFD9DB\t0x210AC\n0x8EAFD9DE\t0x21061\n0x8EAFD9DF\t0x21062\n0x8EAFD9E0\t0x21063\n0x8EAFD9E1\t0x21064\n0x8EAFD9E2\t0x21065\n0x8EAFD9E4\t0x21499\n0x8EAFD9E5\t0x2149A\n0x8EAFD9E6\t0x2149B\n0x8EAFD9E7\t0x2149C\n0x8EAFD9E8\t0x2149D\n0x8EAFD9E9\t0x2149E\n0x8EAFD9EA\t0x2149F\n0x8EAFD9EB\t0x214A0\n0x8EAFD9EC\t0x218DA\n0x8EAFD9ED\t0x218DB\n0x8EAFD9EE\t0x218DC\n0x8EAFD9EF\t0x218DD\n0x8EAFD9F0\t0x218DE\n0x8EAFD9F1\t0x218DF\n0x8EAFD9F2\t0x21AD5\n0x8EAFD9F3\t0x21AD6\n0x8EAFD9F4\t0x21AD7\n0x8EAFD9F5\t0x21AD8\n0x8EAFD9F6\t0x21AE0\n0x8EAFD9F7\t0x21BB4\n0x8EAFD9F9\t0x21F6E\n0x8EAFD9FA\t0x21F6F\n0x8EAFD9FB\t0x21F70\n0x8EAFD9FC\t0x22163\n0x8EAFD9FE\t0x222D5\n0x8EAFDAA1\t0x222D6\n0x8EAFDAA2\t0x222D7\n0x8EAFDAA3\t0x222D8\n0x8EAFDAA4\t0x22430\n0x8EAFDAA5\t0x228B5\n0x8EAFDAA6\t0x228B6\n0x8EAFDAA7\t0x228C1\n0x8EAFDAA8\t0x228F7\n0x8EAFDAA9\t0x39A0\n0x8EAFDAAA\t0x228CB\n0x8EAFDAAB\t0x228E8\n0x8EAFDAAD\t0x228E9\n0x8EAFDAAE\t0x228B7\n0x8EAFDAAF\t0x22A15\n0x8EAFDAB0\t0x22DE6\n0x8EAFDAB1\t0x22DE7\n0x8EAFDAB2\t0x22DE8\n0x8EAFDAB3\t0x22DE9\n0x8EAFDAB4\t0x22DEA\n0x8EAFDAB5\t0x22DEB\n0x8EAFDAB6\t0x2F8CA\n0x8EAFDAB7\t0x2300B\n0x8EAFDAB8\t0x2300C\n0x8EAFDAB9\t0x23064\n0x8EAFDABA\t0x232D4\n0x8EAFDABB\t0x232D5\n0x8EAFDABC\t0x232D6\n0x8EAFDABD\t0x232D8\n0x8EAFDABE\t0x233A5\n0x8EAFDABF\t0x2005B\n0x8EAFDAC0\t0x2370F\n0x8EAFDAC1\t0x23710\n0x8EAFDAC3\t0x23711\n0x8EAFDAC4\t0x23712\n0x8EAFDAC5\t0x23713\n0x8EAFDAC6\t0x23714\n0x8EAFDAC7\t0x23715\n0x8EAFDAC8\t0x23716\n0x8EAFDAC9\t0x23717\n0x8EAFDACA\t0x23718\n0x8EAFDACB\t0x23719\n0x8EAFDACC\t0x2371A\n0x8EAFDACD\t0x2372F\n0x8EAFDACE\t0x2371B\n0x8EAFDACF\t0x2371C\n0x8EAFDAD0\t0x2373F\n0x8EAFDAD1\t0x2371D\n0x8EAFDAD2\t0x2371E\n0x8EAFDAD3\t0x2372C\n0x8EAFDAD4\t0x2371F\n0x8EAFDAD5\t0x23924\n0x8EAFDAD6\t0x239A4\n0x8EAFDAD7\t0x239A5\n0x8EAFDAD8\t0x26251\n0x8EAFDAD9\t0x23AFE\n0x8EAFDADA\t0x23C11\n0x8EAFDADB\t0x23C12\n0x8EAFDADC\t0x23C13\n0x8EAFDADD\t0x23C54\n0x8EAFDADE\t0x2405E\n0x8EAFDADF\t0x24021\n0x8EAFDAE0\t0x2403F\n0x8EAFDAE1\t0x24040\n0x8EAFDAE2\t0x24041\n0x8EAFDAE3\t0x24042\n0x8EAFDAE4\t0x24043\n0x8EAFDAE5\t0x24044\n0x8EAFDAE6\t0x24020\n0x8EAFDAE7\t0x24045\n0x8EAFDAE9\t0x24046\n0x8EAFDAEA\t0x240B0\n0x8EAFDAEB\t0x24047\n0x8EAFDAEC\t0x24057\n0x8EAFDAED\t0x24001\n0x8EAFDAEE\t0x240B1\n0x8EAFDAEF\t0x2405A\n0x8EAFDAF0\t0x24048\n0x8EAFDAF1\t0x24404\n0x8EAFDAF2\t0x24405\n0x8EAFDAF3\t0x71F5\n0x8EAFDAF4\t0x2444F\n0x8EAFDAF5\t0x24450\n0x8EAFDAF6\t0x24406\n0x8EAFDAF7\t0x24407\n0x8EAFDAF8\t0x24408\n0x8EAFDAF9\t0x24409\n0x8EAFDAFA\t0x2440A\n0x8EAFDAFB\t0x2440B\n0x8EAFDAFC\t0x2440C\n0x8EAFDAFD\t0x2440D\n0x8EAFDAFE\t0x2440E\n0x8EAFDBA1\t0x2440F\n0x8EAFDBA2\t0x24410\n0x8EAFDBA3\t0x24411\n0x8EAFDBA4\t0x24533\n0x8EAFDBA5\t0x24534\n0x8EAFDBA6\t0x24535\n0x8EAFDBA7\t0x245FC\n0x8EAFDBA8\t0x245FD\n0x8EAFDBA9\t0x248B0\n0x8EAFDBAA\t0x248B1\n0x8EAFDBAB\t0x248B2\n0x8EAFDBAC\t0x248B3\n0x8EAFDBAD\t0x3F01\n0x8EAFDBAE\t0x24A7B\n0x8EAFDBAF\t0x24A7C\n0x8EAFDBB0\t0x24A7D\n0x8EAFDBB1\t0x24A7E\n0x8EAFDBB2\t0x24A7F\n0x8EAFDBB3\t0x24A80\n0x8EAFDBB4\t0x24A81\n0x8EAFDBB5\t0x24A82\n0x8EAFDBB6\t0x24BF9\n0x8EAFDBB7\t0x24CDA\n0x8EAFDBB8\t0x24EA1\n0x8EAFDBBB\t0x250AD\n0x8EAFDBBC\t0x250AE\n0x8EAFDBBE\t0x252C8\n0x8EAFDBBF\t0x252C9\n0x8EAFDBC0\t0x252CA\n0x8EAFDBC1\t0x25582\n0x8EAFDBC2\t0x25583\n0x8EAFDBC3\t0x25584\n0x8EAFDBC4\t0x25585\n0x8EAFDBC5\t0x25586\n0x8EAFDBC6\t0x25587\n0x8EAFDBC7\t0x25588\n0x8EAFDBC8\t0x25589\n0x8EAFDBC9\t0x2558A\n0x8EAFDBCB\t0x25707\n0x8EAFDBCC\t0x25708\n0x8EAFDBCD\t0x25701\n0x8EAFDBCE\t0x25709\n0x8EAFDBCF\t0x25702\n0x8EAFDBD0\t0x2570A\n0x8EAFDBD1\t0x2570B\n0x8EAFDBD2\t0x2570C\n0x8EAFDBD3\t0x258A7\n0x8EAFDBD4\t0x25898\n0x8EAFDBD5\t0x25899\n0x8EAFDBD6\t0x2589A\n0x8EAFDBD7\t0x2589B\n0x8EAFDBD8\t0x2589C\n0x8EAFDBD9\t0x7A50\n0x8EAFDBDA\t0x2589D\n0x8EAFDBDB\t0x25A1A\n0x8EAFDBDC\t0x25AB2\n0x8EAFDBDD\t0x25CB0\n0x8EAFDBDE\t0x25CB1\n0x8EAFDBDF\t0x7C14\n0x8EAFDBE0\t0x25CB2\n0x8EAFDBE1\t0x25CB3\n0x8EAFDBE2\t0x25CB4\n0x8EAFDBE3\t0x25CB5\n0x8EAFDBE4\t0x25CB6\n0x8EAFDBE5\t0x25CC0\n0x8EAFDBE6\t0x25CB7\n0x8EAFDBE7\t0x25CB8\n0x8EAFDBE8\t0x25CB9\n0x8EAFDBE9\t0x25CBA\n0x8EAFDBEA\t0x25D1D\n0x8EAFDBEB\t0x25F0C\n0x8EAFDBEC\t0x25F0D\n0x8EAFDBED\t0x25F0E\n0x8EAFDBEE\t0x25F35\n0x8EAFDBEF\t0x25F0F\n0x8EAFDBF0\t0x25F10\n0x8EAFDBF1\t0x25F11\n0x8EAFDBF2\t0x25F12\n0x8EAFDBF3\t0x26122\n0x8EAFDBF4\t0x26123\n0x8EAFDBF5\t0x26124\n0x8EAFDBF7\t0x26125\n0x8EAFDBF8\t0x26126\n0x8EAFDBF9\t0x26127\n0x8EAFDBFA\t0x26128\n0x8EAFDBFB\t0x26129\n0x8EAFDBFC\t0x2612A\n0x8EAFDBFD\t0x2612B\n0x8EAFDBFE\t0x2612C\n0x8EAFDCA1\t0x2612D\n0x8EAFDCA2\t0x2612E\n0x8EAFDCA3\t0x26252\n0x8EAFDCA4\t0x26253\n0x8EAFDCA5\t0x26319\n0x8EAFDCA6\t0x263BF\n0x8EAFDCA7\t0x2648B\n0x8EAFDCA8\t0x2648C\n0x8EAFDCA9\t0x26523\n0x8EAFDCAA\t0x26524\n0x8EAFDCAB\t0x265F1\n0x8EAFDCAC\t0x265D8\n0x8EAFDCAD\t0x2F97F\n0x8EAFDCAE\t0x2684E\n0x8EAFDCAF\t0x2684F\n0x8EAFDCB0\t0x26855\n0x8EAFDCB1\t0x26850\n0x8EAFDCB2\t0x26851\n0x8EAFDCB3\t0x26852\n0x8EAFDCB4\t0x26853\n0x8EAFDCB5\t0x26802\n0x8EAFDCB6\t0x26854\n0x8EAFDCB7\t0x268F1\n0x8EAFDCB8\t0x26924\n0x8EAFDCB9\t0x26AD1\n0x8EAFDCBA\t0x26F7C\n0x8EAFDCBB\t0x26F7D\n0x8EAFDCBC\t0x26F7E\n0x8EAFDCBD\t0x26F7F\n0x8EAFDCBE\t0x26F80\n0x8EAFDCBF\t0x26F9F\n0x8EAFDCC0\t0x26F81\n0x8EAFDCC1\t0x26F82\n0x8EAFDCC2\t0x26F83\n0x8EAFDCC3\t0x26F84\n0x8EAFDCC4\t0x26F85\n0x8EAFDCC5\t0x26F86\n0x8EAFDCC6\t0x26F87\n0x8EAFDCC7\t0x26F88\n0x8EAFDCC8\t0x26F9B\n0x8EAFDCC9\t0x26F89\n0x8EAFDCCA\t0x26F8A\n0x8EAFDCCB\t0x26F8B\n0x8EAFDCCC\t0x26F8C\n0x8EAFDCCE\t0x26FA1\n0x8EAFDCCF\t0x26F8D\n0x8EAFDCD0\t0x26F8E\n0x8EAFDCD1\t0x271F3\n0x8EAFDCD2\t0x271F4\n0x8EAFDCD3\t0x271F5\n0x8EAFDCD4\t0x27424\n0x8EAFDCD5\t0x27425\n0x8EAFDCD6\t0x27426\n0x8EAFDCD7\t0x27427\n0x8EAFDCD8\t0x27428\n0x8EAFDCD9\t0x27429\n0x8EAFDCDA\t0x2742A\n0x8EAFDCDC\t0x2742B\n0x8EAFDCDD\t0x275CD\n0x8EAFDCDE\t0x27601\n0x8EAFDCDF\t0x2258D\n0x8EAFDCE0\t0x27770\n0x8EAFDCE1\t0x27880\n0x8EAFDCE2\t0x27881\n0x8EAFDCE3\t0x27AC0\n0x8EAFDCE4\t0x27AC1\n0x8EAFDCE5\t0x27AC2\n0x8EAFDCE6\t0x27AC3\n0x8EAFDCE7\t0x27AC4\n0x8EAFDCE8\t0x27AC5\n0x8EAFDCE9\t0x27AC6\n0x8EAFDCEA\t0x27AC7\n0x8EAFDCEB\t0x27AC8\n0x8EAFDCEC\t0x27CFE\n0x8EAFDCEE\t0x27DD9\n0x8EAFDCEF\t0x27DDC\n0x8EAFDCF0\t0x27DDA\n0x8EAFDCF1\t0x27E75\n0x8EAFDCF2\t0x27F58\n0x8EAFDCF3\t0x27F59\n0x8EAFDCF4\t0x27F5A\n0x8EAFDCF5\t0x27F5B\n0x8EAFDCF6\t0x27F5C\n0x8EAFDCF7\t0x280EC\n0x8EAFDCF8\t0x481A\n0x8EAFDCF9\t0x280F3\n0x8EAFDCFA\t0x28272\n0x8EAFDCFB\t0x28273\n0x8EAFDCFC\t0x28382\n0x8EAFDCFD\t0x28383\n0x8EAFDCFE\t0x2842A\n0x8EAFDDA1\t0x2842B\n0x8EAFDDA2\t0x2842C\n0x8EAFDDA3\t0x2842D\n0x8EAFDDA4\t0x285F6\n0x8EAFDDA5\t0x28600\n0x8EAFDDA6\t0x285F7\n0x8EAFDDA7\t0x285F8\n0x8EAFDDA8\t0x285F9\n0x8EAFDDAA\t0x28894\n0x8EAFDDAB\t0x28895\n0x8EAFDDAC\t0x28896\n0x8EAFDDAD\t0x2891B\n0x8EAFDDAE\t0x28A86\n0x8EAFDDAF\t0x28A4C\n0x8EAFDDB0\t0x28A4D\n0x8EAFDDB1\t0x28A83\n0x8EAFDDB3\t0x28A82\n0x8EAFDDB4\t0x28A4E\n0x8EAFDDB5\t0x28A4F\n0x8EAFDDB6\t0x28A50\n0x8EAFDDB7\t0x28A51\n0x8EAFDDB8\t0x28A81\n0x8EAFDDB9\t0x9387\n0x8EAFDDBA\t0x28A52\n0x8EAFDDBB\t0x28A53\n0x8EAFDDBC\t0x28A54\n0x8EAFDDBD\t0x28A55\n0x8EAFDDBF\t0x28A56\n0x8EAFDDC0\t0x28A57\n0x8EAFDDC1\t0x9385\n0x8EAFDDC2\t0x28A58\n0x8EAFDDC3\t0x28A5B\n0x8EAFDDC4\t0x28A5C\n0x8EAFDDC5\t0x28A5D\n0x8EAFDDC6\t0x28A5E\n0x8EAFDDC7\t0x28A5F\n0x8EAFDDC8\t0x28A60\n0x8EAFDDC9\t0x28A61\n0x8EAFDDCA\t0x28A7C\n0x8EAFDDCB\t0x28A62\n0x8EAFDDCC\t0x493C\n0x8EAFDDCE\t0x28A63\n0x8EAFDDCF\t0x28A64\n0x8EAFDDD0\t0x28D73\n0x8EAFDDD1\t0x28F45\n0x8EAFDDD2\t0x28F46\n0x8EAFDDD3\t0x28F47\n0x8EAFDDD4\t0x28F4C\n0x8EAFDDD5\t0x29012\n0x8EAFDDD7\t0x29013\n0x8EAFDDD8\t0x29139\n0x8EAFDDD9\t0x29103\n0x8EAFDDDA\t0x2910D\n0x8EAFDDDB\t0x29230\n0x8EAFDDDC\t0x292D5\n0x8EAFDDDD\t0x293C0\n0x8EAFDDDE\t0x294F2\n0x8EAFDDDF\t0x294F3\n0x8EAFDDE0\t0x294F4\n0x8EAFDDE1\t0x294F5\n0x8EAFDDE2\t0x294F6\n0x8EAFDDE3\t0x294F7\n0x8EAFDDE4\t0x295FA\n0x8EAFDDE5\t0x295FB\n0x8EAFDDE6\t0x29745\n0x8EAFDDE7\t0x29746\n0x8EAFDDE8\t0x29849\n0x8EAFDDE9\t0x298E7\n0x8EAFDDEA\t0x298E8\n0x8EAFDDEB\t0x29AD8\n0x8EAFDDEC\t0x29AD9\n0x8EAFDDED\t0x29B55\n0x8EAFDDEE\t0x29B56\n0x8EAFDDEF\t0x29B57\n0x8EAFDDF0\t0x29CDA\n0x8EAFDDF1\t0x29CDB\n0x8EAFDDF2\t0x29CDC\n0x8EAFDDF3\t0x29DB8\n0x8EAFDDF4\t0x29DB9\n0x8EAFDDF5\t0x29DBA\n0x8EAFDDF6\t0x9BB1\n0x8EAFDDF7\t0x29DBB\n0x8EAFDDF8\t0x29F89\n0x8EAFDDF9\t0x29DBC\n0x8EAFDDFA\t0x2A030\n0x8EAFDDFB\t0x2A031\n0x8EAFDDFC\t0x2A032\n0x8EAFDDFD\t0x2A033\n0x8EAFDEA1\t0x2A034\n0x8EAFDEA2\t0x2A035\n0x8EAFDEA3\t0x2A036\n0x8EAFDEA4\t0x9D47\n0x8EAFDEA5\t0x2A037\n0x8EAFDEA6\t0x2A2B2\n0x8EAFDEA7\t0x2A390\n0x8EAFDEA8\t0x2A326\n0x8EAFDEA9\t0x2A3A2\n0x8EAFDEAA\t0x2A438\n0x8EAFDEAC\t0x2042E\n0x8EAFDEAE\t0x2042F\n0x8EAFDEAF\t0x20430\n0x8EAFDEB0\t0x2042A\n0x8EAFDEB1\t0x2042B\n0x8EAFDEB2\t0x204C9\n0x8EAFDEB3\t0x20537\n0x8EAFDEB4\t0x20620\n0x8EAFDEB5\t0x20672\n0x8EAFDEB6\t0x2081F\n0x8EAFDEB7\t0x20965\n0x8EAFDEB8\t0x209CA\n0x8EAFDEB9\t0x20AC0\n0x8EAFDEBA\t0x20AC1\n0x8EAFDEBB\t0x20AC2\n0x8EAFDEBC\t0x210B7\n0x8EAFDEBD\t0x210B8\n0x8EAFDEBE\t0x210B9\n0x8EAFDEBF\t0x210BA\n0x8EAFDEC0\t0x210BB\n0x8EAFDEC3\t0x210BC\n0x8EAFDEC4\t0x210BD\n0x8EAFDEC5\t0x210BE\n0x8EAFDEC6\t0x210F2\n0x8EAFDEC7\t0x214B5\n0x8EAFDEC8\t0x214B7\n0x8EAFDEC9\t0x214B8\n0x8EAFDECA\t0x210DF\n0x8EAFDECB\t0x214B9\n0x8EAFDECC\t0x214D5\n0x8EAFDECD\t0x214BA\n0x8EAFDECE\t0x214BB\n0x8EAFDECF\t0x2154A\n0x8EAFDED0\t0x218F2\n0x8EAFDED1\t0x218F3\n0x8EAFDED2\t0x218F4\n0x8EAFDED3\t0x218FA\n0x8EAFDED4\t0x218F5\n0x8EAFDED5\t0x21902\n0x8EAFDED6\t0x21AE2\n0x8EAFDED7\t0x21AE3\n0x8EAFDED8\t0x21F8E\n0x8EAFDED9\t0x21F8B\n0x8EAFDEDA\t0x222E4\n0x8EAFDEDB\t0x222EB\n0x8EAFDEDC\t0x222E5\n0x8EAFDEDD\t0x22435\n0x8EAFDEDE\t0x22593\n0x8EAFDEDF\t0x228EA\n0x8EAFDEE0\t0x228EB\n0x8EAFDEE2\t0x228EC\n0x8EAFDEE3\t0x228ED\n0x8EAFDEE4\t0x22917\n0x8EAFDEE5\t0x228EE\n0x8EAFDEE6\t0x228EF\n0x8EAFDEE7\t0x228F0\n0x8EAFDEE8\t0x22E0E\n0x8EAFDEE9\t0x22E0F\n0x8EAFDEEA\t0x22E10\n0x8EAFDEEB\t0x22E19\n0x8EAFDEEC\t0x22E18\n0x8EAFDEED\t0x22E11\n0x8EAFDEEE\t0x22E12\n0x8EAFDEEF\t0x22E13\n0x8EAFDEF0\t0x2F8C7\n0x8EAFDEF1\t0x22E14\n0x8EAFDEF2\t0x22E15\n0x8EAFDEF3\t0x3A6B\n0x8EAFDEF4\t0x22E16\n0x8EAFDEF5\t0x23065\n0x8EAFDEF6\t0x232EA\n0x8EAFDEF7\t0x232EB\n0x8EAFDEF8\t0x232EC\n0x8EAFDEF9\t0x232ED\n0x8EAFDEFB\t0x232EE\n0x8EAFDEFC\t0x233AC\n0x8EAFDEFD\t0x237C2\n0x8EAFDEFE\t0x23769\n0x8EAFDFA1\t0x23781\n0x8EAFDFA2\t0x2376A\n0x8EAFDFA3\t0x2376B\n0x8EAFDFA4\t0x2376C\n0x8EAFDFA5\t0x2376D\n0x8EAFDFA6\t0x2376E\n0x8EAFDFA7\t0x2376F\n0x8EAFDFA8\t0x23770\n0x8EAFDFA9\t0x3BF4\n0x8EAFDFAA\t0x23771\n0x8EAFDFAB\t0x23772\n0x8EAFDFAC\t0x23773\n0x8EAFDFAD\t0x2378C\n0x8EAFDFAE\t0x23774\n0x8EAFDFAF\t0x23775\n0x8EAFDFB0\t0x23776\n0x8EAFDFB1\t0x23C24\n0x8EAFDFB2\t0x23C2A\n0x8EAFDFB3\t0x2408E\n0x8EAFDFB4\t0x240AF\n0x8EAFDFB5\t0x2408F\n0x8EAFDFB6\t0x24090\n0x8EAFDFB7\t0x24091\n0x8EAFDFB9\t0x24092\n0x8EAFDFBA\t0x24093\n0x8EAFDFBB\t0x24094\n0x8EAFDFBC\t0x24095\n0x8EAFDFBD\t0x24096\n0x8EAFDFBE\t0x24097\n0x8EAFDFBF\t0x24098\n0x8EAFDFC0\t0x24099\n0x8EAFDFC1\t0x2409A\n0x8EAFDFC2\t0x2409B\n0x8EAFDFC3\t0x2409C\n0x8EAFDFC4\t0x24439\n0x8EAFDFC5\t0x2443B\n0x8EAFDFC6\t0x2443A\n0x8EAFDFC7\t0x2443C\n0x8EAFDFC8\t0x2443D\n0x8EAFDFC9\t0x2443E\n0x8EAFDFCA\t0x2443F\n0x8EAFDFCB\t0x24470\n0x8EAFDFCC\t0x24440\n0x8EAFDFCD\t0x24441\n0x8EAFDFCE\t0x248C0\n0x8EAFDFCF\t0x248C1\n0x8EAFDFD0\t0x24AA4\n0x8EAFDFD1\t0x24A97\n0x8EAFDFD2\t0x24AA5\n0x8EAFDFD3\t0x24A98\n0x8EAFDFD4\t0x24A99\n0x8EAFDFD5\t0x24A9A\n0x8EAFDFD7\t0x24A9B\n0x8EAFDFD8\t0x24AA6\n0x8EAFDFD9\t0x24A9C\n0x8EAFDFDA\t0x24A9D\n0x8EAFDFDB\t0x24A9E\n0x8EAFDFDC\t0x24A9F\n0x8EAFDFDD\t0x28ACE\n0x8EAFDFDE\t0x24AC8\n0x8EAFDFDF\t0x24AA0\n0x8EAFDFE0\t0x24B19\n0x8EAFDFE1\t0x24C0D\n0x8EAFDFE2\t0x250BF\n0x8EAFDFE3\t0x252E9\n0x8EAFDFE4\t0x252EA\n0x8EAFDFE5\t0x255A2\n0x8EAFDFE6\t0x255A3\n0x8EAFDFE7\t0x255A4\n0x8EAFDFE8\t0x255A5\n0x8EAFDFE9\t0x255A6\n0x8EAFDFEA\t0x25715\n0x8EAFDFEB\t0x25717\n0x8EAFDFEC\t0x258BF\n0x8EAFDFED\t0x258C0\n0x8EAFDFEE\t0x258C1\n0x8EAFDFEF\t0x258C2\n0x8EAFDFF0\t0x258C3\n0x8EAFDFF1\t0x258C4\n0x8EAFDFF2\t0x258C5\n0x8EAFDFF3\t0x2190D\n0x8EAFDFF4\t0x25A23\n0x8EAFDFF5\t0x25ABE\n0x8EAFDFF6\t0x25D03\n0x8EAFDFF7\t0x25D04\n0x8EAFDFF8\t0x25D05\n0x8EAFDFF9\t0x25D06\n0x8EAFDFFA\t0x25D07\n0x8EAFDFFB\t0x25D08\n0x8EAFDFFC\t0x25D09\n0x8EAFDFFD\t0x25D0A\n0x8EAFDFFE\t0x25D0B\n0x8EAFE0A1\t0x25D0C\n0x8EAFE0A2\t0x25D20\n0x8EAFE0A3\t0x25D0D\n0x8EAFE0A4\t0x25D0E\n0x8EAFE0A5\t0x25D0F\n0x8EAFE0A7\t0x25F26\n0x8EAFE0A8\t0x25F27\n0x8EAFE0A9\t0x25F28\n0x8EAFE0AA\t0x2615D\n0x8EAFE0AB\t0x2615E\n0x8EAFE0AC\t0x2615F\n0x8EAFE0AD\t0x26160\n0x8EAFE0AE\t0x26161\n0x8EAFE0AF\t0x26162\n0x8EAFE0B0\t0x26163\n0x8EAFE0B1\t0x26164\n0x8EAFE0B2\t0x26165\n0x8EAFE0B3\t0x26257\n0x8EAFE0B4\t0x263CF\n0x8EAFE0B5\t0x263D0\n0x8EAFE0B6\t0x26499\n0x8EAFE0B7\t0x2649A\n0x8EAFE0B8\t0x265EA\n0x8EAFE0B9\t0x265EB\n0x8EAFE0BA\t0x265EC\n0x8EAFE0BB\t0x2687E\n0x8EAFE0BC\t0x2687F\n0x8EAFE0BD\t0x26880\n0x8EAFE0C0\t0x26881\n0x8EAFE0C1\t0x26882\n0x8EAFE0C2\t0x268F3\n0x8EAFE0C3\t0x26925\n0x8EAFE0C4\t0x2699F\n0x8EAFE0C5\t0x269A0\n0x8EAFE0C6\t0x269F3\n0x8EAFE0C7\t0x26A00\n0x8EAFE0C8\t0x26FEB\n0x8EAFE0C9\t0x26FEC\n0x8EAFE0CA\t0x26FED\n0x8EAFE0CB\t0x26FEE\n0x8EAFE0CC\t0x26FEF\n0x8EAFE0CE\t0x455C\n0x8EAFE0CF\t0x26FF0\n0x8EAFE0D0\t0x26FF1\n0x8EAFE0D1\t0x26FF2\n0x8EAFE0D2\t0x26FF3\n0x8EAFE0D3\t0x26FF4\n0x8EAFE0D4\t0x26FF5\n0x8EAFE0D5\t0x26FF9\n0x8EAFE0D6\t0x26FFA\n0x8EAFE0D7\t0x26FFB\n0x8EAFE0D8\t0x26FFC\n0x8EAFE0D9\t0x26FFD\n0x8EAFE0DA\t0x26FFE\n0x8EAFE0DB\t0x26FFF\n0x8EAFE0DC\t0x27000\n0x8EAFE0DD\t0x2F9AE\n0x8EAFE0DE\t0x27001\n0x8EAFE0DF\t0x27002\n0x8EAFE0E0\t0x27203\n0x8EAFE0E1\t0x27486\n0x8EAFE0E2\t0x27479\n0x8EAFE0E4\t0x2747A\n0x8EAFE0E5\t0x2747B\n0x8EAFE0E6\t0x2747C\n0x8EAFE0E7\t0x27484\n0x8EAFE0E8\t0x2747D\n0x8EAFE0E9\t0x2747E\n0x8EAFE0EA\t0x2747F\n0x8EAFE0EB\t0x27786\n0x8EAFE0EC\t0x27787\n0x8EAFE0ED\t0x27800\n0x8EAFE0EE\t0x27801\n0x8EAFE0EF\t0x27888\n0x8EAFE0F0\t0x27889\n0x8EAFE0F1\t0x2788A\n0x8EAFE0F2\t0x27AF5\n0x8EAFE0F4\t0x27B25\n0x8EAFE0F5\t0x27AF6\n0x8EAFE0F6\t0x27DEB\n0x8EAFE0F7\t0x27DEC\n0x8EAFE0F8\t0x27DED\n0x8EAFE0F9\t0x27DEE\n0x8EAFE0FA\t0x4787\n0x8EAFE0FB\t0x27DEF\n0x8EAFE0FC\t0x27DF0\n0x8EAFE0FD\t0x27F6C\n0x8EAFE0FE\t0x28121\n0x8EAFE1A1\t0x28122\n0x8EAFE1A2\t0x28123\n0x8EAFE1A3\t0x28124\n0x8EAFE1A4\t0x28125\n0x8EAFE1A5\t0x28126\n0x8EAFE1A6\t0x2827B\n0x8EAFE1A7\t0x2827C\n0x8EAFE1A8\t0x28391\n0x8EAFE1A9\t0x28392\n0x8EAFE1AA\t0x28393\n0x8EAFE1AB\t0x2860E\n0x8EAFE1AC\t0x2860F\n0x8EAFE1AD\t0x28610\n0x8EAFE1AE\t0x288B3\n0x8EAFE1AF\t0x28936\n0x8EAFE1B0\t0x28AC6\n0x8EAFE1B1\t0x28AA1\n0x8EAFE1B2\t0x28AA2\n0x8EAFE1B3\t0x93B9\n0x8EAFE1B4\t0x28AA3\n0x8EAFE1B5\t0x28ACC\n0x8EAFE1B6\t0x28AA4\n0x8EAFE1B7\t0x28AA5\n0x8EAFE1B8\t0x28AA6\n0x8EAFE1B9\t0x28ACB\n0x8EAFE1BA\t0x28AA7\n0x8EAFE1BC\t0x28AA8\n0x8EAFE1BD\t0x28AA9\n0x8EAFE1BE\t0x28AAA\n0x8EAFE1C0\t0x28AAB\n0x8EAFE1C1\t0x28AAC\n0x8EAFE1C2\t0x28AAD\n0x8EAFE1C3\t0x93BF\n0x8EAFE1C4\t0x28AAE\n0x8EAFE1C5\t0x28AAF\n0x8EAFE1C6\t0x28AB0\n0x8EAFE1C7\t0x28D8C\n0x8EAFE1C8\t0x28D8D\n0x8EAFE1C9\t0x28D8E\n0x8EAFE1CA\t0x2F9F1\n0x8EAFE1CB\t0x28D92\n0x8EAFE1CC\t0x28D8F\n0x8EAFE1CD\t0x28F52\n0x8EAFE1CE\t0x28F53\n0x8EAFE1CF\t0x28F54\n0x8EAFE1D0\t0x28F55\n0x8EAFE1D1\t0x29129\n0x8EAFE1D3\t0x292F3\n0x8EAFE1D4\t0x292F4\n0x8EAFE1D5\t0x2950D\n0x8EAFE1D6\t0x2950E\n0x8EAFE1D7\t0x2950F\n0x8EAFE1D8\t0x29510\n0x8EAFE1D9\t0x29614\n0x8EAFE1DA\t0x29771\n0x8EAFE1DB\t0x29772\n0x8EAFE1DC\t0x2990F\n0x8EAFE1DD\t0x29904\n0x8EAFE1DE\t0x29906\n0x8EAFE1E0\t0x29907\n0x8EAFE1E1\t0x29ADC\n0x8EAFE1E2\t0x29ADD\n0x8EAFE1E3\t0x29B6D\n0x8EAFE1E4\t0x29B79\n0x8EAFE1E5\t0x29B6E\n0x8EAFE1E7\t0x29CEC\n0x8EAFE1E8\t0x29DDD\n0x8EAFE1E9\t0x29DDE\n0x8EAFE1EA\t0x29DDF\n0x8EAFE1EB\t0x29DE0\n0x8EAFE1EC\t0x29DE1\n0x8EAFE1ED\t0x29DE2\n0x8EAFE1EE\t0x29DE3\n0x8EAFE1EF\t0x29DE4\n0x8EAFE1F0\t0x29E3A\n0x8EAFE1F1\t0x29DE5\n0x8EAFE1F2\t0x9BCF\n0x8EAFE1F3\t0x29DE6\n0x8EAFE1F4\t0x2A06B\n0x8EAFE1F5\t0x2A06C\n0x8EAFE1F6\t0x2444E\n0x8EAFE1F7\t0x9D64\n0x8EAFE1F8\t0x2A2BD\n0x8EAFE1F9\t0x2A2BE\n0x8EAFE1FA\t0x2A2BF\n0x8EAFE1FB\t0x2A334\n0x8EAFE1FC\t0x9EBF\n0x8EAFE1FD\t0x2A512\n0x8EAFE1FE\t0x20440\n0x8EAFE2A1\t0x20441\n0x8EAFE2A2\t0x21102\n0x8EAFE2A3\t0x21103\n0x8EAFE2A4\t0x21104\n0x8EAFE2A5\t0x21105\n0x8EAFE2A6\t0x21106\n0x8EAFE2A7\t0x214D7\n0x8EAFE2A8\t0x214CC\n0x8EAFE2A9\t0x21698\n0x8EAFE2AA\t0x21906\n0x8EAFE2AB\t0x21907\n0x8EAFE2AC\t0x219AF\n0x8EAFE2AD\t0x219B0\n0x8EAFE2AE\t0x21AEA\n0x8EAFE2AF\t0x21AF2\n0x8EAFE2B0\t0x21FA2\n0x8EAFE2B1\t0x21FA3\n0x8EAFE2B2\t0x21FA4\n0x8EAFE2B3\t0x22176\n0x8EAFE2B4\t0x222F5\n0x8EAFE2B5\t0x222F6\n0x8EAFE2B6\t0x222F7\n0x8EAFE2B8\t0x2293B\n0x8EAFE2B9\t0x22925\n0x8EAFE2BA\t0x2293A\n0x8EAFE2BB\t0x2293C\n0x8EAFE2BC\t0x2293D\n0x8EAFE2BD\t0x2293E\n0x8EAFE2BE\t0x22E37\n0x8EAFE2BF\t0x22E38\n0x8EAFE2C0\t0x22E39\n0x8EAFE2C1\t0x22E3A\n0x8EAFE2C2\t0x22E3B\n0x8EAFE2C3\t0x22E3C\n0x8EAFE2C4\t0x22E3D\n0x8EAFE2C5\t0x22E3E\n0x8EAFE2C6\t0x22E3F\n0x8EAFE2C7\t0x22E4B\n0x8EAFE2C9\t0x22E40\n0x8EAFE2CA\t0x23022\n0x8EAFE2CB\t0x23067\n0x8EAFE2CC\t0x230D3\n0x8EAFE2CD\t0x232FA\n0x8EAFE2CF\t0x237BC\n0x8EAFE2D2\t0x237A5\n0x8EAFE2D3\t0x3C07\n0x8EAFE2D4\t0x237B6\n0x8EAFE2D6\t0x237A6\n0x8EAFE2D7\t0x237BB\n0x8EAFE2D8\t0x237A7\n0x8EAFE2D9\t0x237A8\n0x8EAFE2DA\t0x237A9\n0x8EAFE2DB\t0x237AA\n0x8EAFE2DC\t0x237AB\n0x8EAFE2DD\t0x237AC\n0x8EAFE2DE\t0x237BF\n0x8EAFE2DF\t0x237AD\n0x8EAFE2E0\t0x237AE\n0x8EAFE2E1\t0x237AF\n0x8EAFE2E2\t0x2392E\n0x8EAFE2E3\t0x23B00\n0x8EAFE2E4\t0x2409D\n0x8EAFE2E5\t0x2409E\n0x8EAFE2E6\t0x240CB\n0x8EAFE2E7\t0x240CC\n0x8EAFE2E8\t0x240CD\n0x8EAFE2E9\t0x240CE\n0x8EAFE2EA\t0x240CF\n0x8EAFE2EC\t0x2409F\n0x8EAFE2ED\t0x240D0\n0x8EAFE2EE\t0x240D1\n0x8EAFE2EF\t0x240D2\n0x8EAFE2F0\t0x240D3\n0x8EAFE2F1\t0x240D4\n0x8EAFE2F4\t0x2445D\n0x8EAFE2F5\t0x2445E\n0x8EAFE2F6\t0x2445F\n0x8EAFE2F7\t0x24460\n0x8EAFE2F8\t0x3F05\n0x8EAFE2F9\t0x24ABA\n0x8EAFE2FA\t0x24ABC\n0x8EAFE2FB\t0x3F06\n0x8EAFE2FC\t0x24AB5\n0x8EAFE2FD\t0x24ABD\n0x8EAFE2FE\t0x24AB6\n0x8EAFE3A1\t0x24AB7\n0x8EAFE3A2\t0x24AB8\n0x8EAFE3A3\t0x24AA8\n0x8EAFE3A4\t0x2F932\n0x8EAFE3A5\t0x24BFE\n0x8EAFE3A6\t0x24BFC\n0x8EAFE3A7\t0x24EE1\n0x8EAFE3A8\t0x250C4\n0x8EAFE3A9\t0x250C5\n0x8EAFE3AA\t0x25314\n0x8EAFE3AB\t0x255AE\n0x8EAFE3AC\t0x255AF\n0x8EAFE3AD\t0x255B0\n0x8EAFE3AE\t0x255B1\n0x8EAFE3AF\t0x255B9\n0x8EAFE3B0\t0x258E7\n0x8EAFE3B1\t0x25D46\n0x8EAFE3B3\t0x25D47\n0x8EAFE3B4\t0x25D48\n0x8EAFE3B5\t0x25D49\n0x8EAFE3B6\t0x25D1E\n0x8EAFE3B7\t0x25D1F\n0x8EAFE3B8\t0x25D4A\n0x8EAFE3B9\t0x25D4B\n0x8EAFE3BA\t0x25D4C\n0x8EAFE3BB\t0x25D4D\n0x8EAFE3BC\t0x25D4E\n0x8EAFE3BE\t0x25F46\n0x8EAFE3BF\t0x25F4B\n0x8EAFE3C0\t0x26190\n0x8EAFE3C1\t0x26191\n0x8EAFE3C3\t0x26192\n0x8EAFE3C4\t0x26193\n0x8EAFE3C5\t0x26194\n0x8EAFE3C6\t0x2625B\n0x8EAFE3C7\t0x265F2\n0x8EAFE3C8\t0x265F8\n0x8EAFE3C9\t0x265F9\n0x8EAFE3CA\t0x26894\n0x8EAFE3CB\t0x268A4\n0x8EAFE3CC\t0x26897\n0x8EAFE3CD\t0x26898\n0x8EAFE3CE\t0x26929\n0x8EAFE3CF\t0x269AE\n0x8EAFE3D0\t0x26AAF\n0x8EAFE3D1\t0x27059\n0x8EAFE3D2\t0x2705A\n0x8EAFE3D4\t0x2705B\n0x8EAFE3D5\t0x2705C\n0x8EAFE3D6\t0x2705D\n0x8EAFE3D7\t0x2705E\n0x8EAFE3D8\t0x2705F\n0x8EAFE3D9\t0x27060\n0x8EAFE3DA\t0x27061\n0x8EAFE3DB\t0x26FAA\n0x8EAFE3DC\t0x27062\n0x8EAFE3DD\t0x27063\n0x8EAFE3DE\t0x27064\n0x8EAFE3DF\t0x27065\n0x8EAFE3E0\t0x27066\n0x8EAFE3E1\t0x27067\n0x8EAFE3E2\t0x27068\n0x8EAFE3E3\t0x27069\n0x8EAFE3E4\t0x2706A\n0x8EAFE3E5\t0x2706B\n0x8EAFE3E6\t0x2706C\n0x8EAFE3E7\t0x2706D\n0x8EAFE3E8\t0x2706E\n0x8EAFE3E9\t0x2706F\n0x8EAFE3EB\t0x274B2\n0x8EAFE3EC\t0x274B3\n0x8EAFE3ED\t0x274B4\n0x8EAFE3EE\t0x45F9\n0x8EAFE3EF\t0x274B5\n0x8EAFE3F0\t0x274B6\n0x8EAFE3F1\t0x274B7\n0x8EAFE3F2\t0x274B8\n0x8EAFE3F3\t0x274B9\n0x8EAFE3F4\t0x274BA\n0x8EAFE3F5\t0x274BB\n0x8EAFE3F6\t0x27788\n0x8EAFE3F7\t0x89B8\n0x8EAFE3F8\t0x27B19\n0x8EAFE3F9\t0x27B1A\n0x8EAFE3FA\t0x27B1B\n0x8EAFE3FB\t0x27C16\n0x8EAFE3FC\t0x27E0C\n0x8EAFE3FD\t0x27E0D\n0x8EAFE3FE\t0x27E0E\n0x8EAFE4A1\t0x27E0F\n0x8EAFE4A3\t0x27F83\n0x8EAFE4A4\t0x27F84\n0x8EAFE4A5\t0x27F85\n0x8EAFE4A6\t0x28283\n0x8EAFE4A7\t0x28284\n0x8EAFE4A8\t0x283B0\n0x8EAFE4AA\t0x28626\n0x8EAFE4AB\t0x28627\n0x8EAFE4AC\t0x28636\n0x8EAFE4AD\t0x28628\n0x8EAFE4AE\t0x28629\n0x8EAFE4B1\t0x28AE7\n0x8EAFE4B2\t0x28AE8\n0x8EAFE4B3\t0x28AE9\n0x8EAFE4B4\t0x4953\n0x8EAFE4B5\t0x28AEA\n0x8EAFE4B6\t0x28AEB\n0x8EAFE4B8\t0x28AEC\n0x8EAFE4B9\t0x28AED\n0x8EAFE4BA\t0x28AEE\n0x8EAFE4BB\t0x28AEF\n0x8EAFE4BC\t0x28AF0\n0x8EAFE4BD\t0x28AF1\n0x8EAFE4BE\t0x28B0C\n0x8EAFE4BF\t0x28AF2\n0x8EAFE4C0\t0x28AF3\n0x8EAFE4C1\t0x28AF4\n0x8EAFE4C2\t0x28AF5\n0x8EAFE4C3\t0x28AF6\n0x8EAFE4C4\t0x28AF7\n0x8EAFE4C5\t0x28AF8\n0x8EAFE4C6\t0x28DA3\n0x8EAFE4C7\t0x28DA4\n0x8EAFE4C8\t0x28DA5\n0x8EAFE4C9\t0x28DA6\n0x8EAFE4CA\t0x28DA7\n0x8EAFE4CC\t0x28F5C\n0x8EAFE4CE\t0x2914B\n0x8EAFE4CF\t0x291E1\n0x8EAFE4D0\t0x29315\n0x8EAFE4D2\t0x29316\n0x8EAFE4D3\t0x29317\n0x8EAFE4D4\t0x2952C\n0x8EAFE4D5\t0x2952D\n0x8EAFE4D6\t0x29622\n0x8EAFE4D7\t0x29623\n0x8EAFE4D8\t0x29796\n0x8EAFE4D9\t0x29797\n0x8EAFE4DB\t0x2992E\n0x8EAFE4DC\t0x29930\n0x8EAFE4DD\t0x29931\n0x8EAFE4DF\t0x29ADF\n0x8EAFE4E0\t0x29B8B\n0x8EAFE4E1\t0x29B8C\n0x8EAFE4E3\t0x29B8D\n0x8EAFE4E4\t0x29CFC\n0x8EAFE4E5\t0x29CFD\n0x8EAFE4E6\t0x29CFE\n0x8EAFE4E7\t0x29CFF\n0x8EAFE4E8\t0x29E17\n0x8EAFE4E9\t0x29E2D\n0x8EAFE4EA\t0x29E18\n0x8EAFE4EB\t0x9BF3\n0x8EAFE4EC\t0x29E19\n0x8EAFE4EE\t0x29E12\n0x8EAFE4EF\t0x29E1A\n0x8EAFE4F0\t0x29E1B\n0x8EAFE4F1\t0x29E1C\n0x8EAFE4F2\t0x4C69\n0x8EAFE4F4\t0x2A097\n0x8EAFE4F5\t0x4CE5\n0x8EAFE4F6\t0x2A098\n0x8EAFE4F7\t0x2A099\n0x8EAFE4F9\t0x2A3C4\n0x8EAFE4FA\t0x2044F\n0x8EAFE4FB\t0x204CD\n0x8EAFE4FC\t0x20AC7\n0x8EAFE4FD\t0x2111C\n0x8EAFE4FE\t0x2111D\n0x8EAFE5A1\t0x2111E\n0x8EAFE5A2\t0x214E7\n0x8EAFE5A3\t0x214E9\n0x8EAFE5A4\t0x214EA\n0x8EAFE5A5\t0x214EB\n0x8EAFE5A6\t0x21915\n0x8EAFE5A7\t0x21CF1\n0x8EAFE5A8\t0x21CF2\n0x8EAFE5A9\t0x21FB6\n0x8EAFE5AA\t0x225A0\n0x8EAFE5AB\t0x2294A\n0x8EAFE5AC\t0x22A20\n0x8EAFE5AD\t0x22E60\n0x8EAFE5AE\t0x22E61\n0x8EAFE5AF\t0x22E41\n0x8EAFE5B0\t0x22E62\n0x8EAFE5B1\t0x23303\n0x8EAFE5B2\t0x23304\n0x8EAFE5B3\t0x237D9\n0x8EAFE5B4\t0x237DA\n0x8EAFE5B5\t0x237DB\n0x8EAFE5B6\t0x237DC\n0x8EAFE5B7\t0x237DD\n0x8EAFE5B9\t0x237DE\n0x8EAFE5BA\t0x237DF\n0x8EAFE5BB\t0x237E0\n0x8EAFE5BC\t0x237E1\n0x8EAFE5BD\t0x237E2\n0x8EAFE5BE\t0x3C12\n0x8EAFE5BF\t0x237E3\n0x8EAFE5C1\t0x23C31\n0x8EAFE5C2\t0x24105\n0x8EAFE5C3\t0x24106\n0x8EAFE5C4\t0x24107\n0x8EAFE5C5\t0x24472\n0x8EAFE5C6\t0x2448A\n0x8EAFE5C7\t0x2448B\n0x8EAFE5C8\t0x24488\n0x8EAFE5CA\t0x2448C\n0x8EAFE5CB\t0x2448D\n0x8EAFE5CC\t0x2448E\n0x8EAFE5CD\t0x2448F\n0x8EAFE5CE\t0x24490\n0x8EAFE5CF\t0x24542\n0x8EAFE5D0\t0x24543\n0x8EAFE5D2\t0x24AC1\n0x8EAFE5D3\t0x24AC2\n0x8EAFE5D4\t0x24AC3\n0x8EAFE5D5\t0x24AC4\n0x8EAFE5D6\t0x250CB\n0x8EAFE5D7\t0x25322\n0x8EAFE5DA\t0x255C3\n0x8EAFE5DB\t0x255C4\n0x8EAFE5DC\t0x255C5\n0x8EAFE5DD\t0x255C6\n0x8EAFE5DE\t0x2571E\n0x8EAFE5DF\t0x25725\n0x8EAFE5E0\t0x258F3\n0x8EAFE5E1\t0x258F4\n0x8EAFE5E3\t0x258F5\n0x8EAFE5E4\t0x25A38\n0x8EAFE5E5\t0x25A48\n0x8EAFE5E6\t0x25ACA\n0x8EAFE5E7\t0x7C4F\n0x8EAFE5E8\t0x25D7A\n0x8EAFE5E9\t0x25D7B\n0x8EAFE5EA\t0x25F55\n0x8EAFE5EB\t0x25F56\n0x8EAFE5EC\t0x261B1\n0x8EAFE5ED\t0x261B2\n0x8EAFE5EE\t0x261B3\n0x8EAFE5F0\t0x261B4\n0x8EAFE5F1\t0x261B5\n0x8EAFE5F2\t0x264A4\n0x8EAFE5F3\t0x26600\n0x8EAFE5F4\t0x26601\n0x8EAFE5F5\t0x26602\n0x8EAFE5F6\t0x268AC\n0x8EAFE5F8\t0x269B3\n0x8EAFE5F9\t0x270B6\n0x8EAFE5FA\t0x270B7\n0x8EAFE5FB\t0x270B8\n0x8EAFE5FC\t0x270B9\n0x8EAFE5FD\t0x270BA\n0x8EAFE5FE\t0x270BB\n0x8EAFE6A1\t0x270BC\n0x8EAFE6A2\t0x270BD\n0x8EAFE6A3\t0x270BE\n0x8EAFE6A4\t0x270BF\n0x8EAFE6A5\t0x270C0\n0x8EAFE6A6\t0x270C1\n0x8EAFE6A7\t0x270C2\n0x8EAFE6A8\t0x270C3\n0x8EAFE6A9\t0x270C4\n0x8EAFE6AA\t0x270C5\n0x8EAFE6AB\t0x270C6\n0x8EAFE6AC\t0x270C7\n0x8EAFE6AD\t0x274E3\n0x8EAFE6AE\t0x274E4\n0x8EAFE6AF\t0x274E5\n0x8EAFE6B0\t0x274E6\n0x8EAFE6B1\t0x274E7\n0x8EAFE6B3\t0x277B5\n0x8EAFE6B4\t0x277A1\n0x8EAFE6B5\t0x27895\n0x8EAFE6B6\t0x27B3B\n0x8EAFE6B7\t0x27B3C\n0x8EAFE6B8\t0x27B3D\n0x8EAFE6B9\t0x27B3E\n0x8EAFE6BA\t0x27C14\n0x8EAFE6BB\t0x27E20\n0x8EAFE6BC\t0x27E21\n0x8EAFE6BD\t0x27E22\n0x8EAFE6BE\t0x27E23\n0x8EAFE6BF\t0x27E24\n0x8EAFE6C0\t0x27F96\n0x8EAFE6C1\t0x27F97\n0x8EAFE6C2\t0x27F98\n0x8EAFE6C3\t0x28194\n0x8EAFE6C4\t0x28195\n0x8EAFE6C5\t0x28196\n0x8EAFE6C6\t0x28197\n0x8EAFE6C7\t0x28198\n0x8EAFE6C8\t0x2828F\n0x8EAFE6C9\t0x28290\n0x8EAFE6CA\t0x283BC\n0x8EAFE6CB\t0x2843B\n0x8EAFE6CC\t0x2863D\n0x8EAFE6CE\t0x288DF\n0x8EAFE6CF\t0x2891E\n0x8EAFE6D0\t0x28B23\n0x8EAFE6D1\t0x28B24\n0x8EAFE6D2\t0x28B49\n0x8EAFE6D3\t0x28B25\n0x8EAFE6D4\t0x28B26\n0x8EAFE6D5\t0x28B27\n0x8EAFE6D6\t0x28B28\n0x8EAFE6D7\t0x9425\n0x8EAFE6D8\t0x28B29\n0x8EAFE6D9\t0x28B2A\n0x8EAFE6DA\t0x28B2E\n0x8EAFE6DB\t0x28B2F\n0x8EAFE6DC\t0x28B4E\n0x8EAFE6DD\t0x28B30\n0x8EAFE6DE\t0x2F9EB\n0x8EAFE6DF\t0x28B31\n0x8EAFE6E0\t0x28B32\n0x8EAFE6E1\t0x28B33\n0x8EAFE6E2\t0x28B34\n0x8EAFE6E3\t0x28B35\n0x8EAFE6E4\t0x28B36\n0x8EAFE6E6\t0x28B37\n0x8EAFE6E7\t0x28B50\n0x8EAFE6E8\t0x28B38\n0x8EAFE6EA\t0x28B39\n0x8EAFE6EB\t0x28B3A\n0x8EAFE6EC\t0x28B3B\n0x8EAFE6ED\t0x28B3C\n0x8EAFE6EE\t0x28B3D\n0x8EAFE6EF\t0x28B3E\n0x8EAFE6F0\t0x28DB8\n0x8EAFE6F1\t0x28DB9\n0x8EAFE6F2\t0x28F62\n0x8EAFE6F3\t0x28F63\n0x8EAFE6F4\t0x29041\n0x8EAFE6F5\t0x2916D\n0x8EAFE6F7\t0x29352\n0x8EAFE6F8\t0x29337\n0x8EAFE6F9\t0x293DB\n0x8EAFE6FA\t0x2953F\n0x8EAFE6FB\t0x29634\n0x8EAFE6FC\t0x2985B\n0x8EAFE6FD\t0x29946\n0x8EAFE6FE\t0x2995A\n0x8EAFE7A1\t0x2995B\n0x8EAFE7A2\t0x29AE1\n0x8EAFE7A3\t0x29AE2\n0x8EAFE7A4\t0x29AE3\n0x8EAFE7A5\t0x29AE4\n0x8EAFE7A6\t0x29BA7\n0x8EAFE7A7\t0x29BA8\n0x8EAFE7A8\t0x29BA9\n0x8EAFE7A9\t0x29D0F\n0x8EAFE7AA\t0x29D2B\n0x8EAFE7AB\t0x29E56\n0x8EAFE7AC\t0x29E57\n0x8EAFE7AD\t0x29E58\n0x8EAFE7AE\t0x29E5E\n0x8EAFE7AF\t0x29E59\n0x8EAFE7B0\t0x29E5A\n0x8EAFE7B1\t0x29E5B\n0x8EAFE7B2\t0x29E5C\n0x8EAFE7B4\t0x29E68\n0x8EAFE7B6\t0x2A12C\n0x8EAFE7B7\t0x2A0E2\n0x8EAFE7B8\t0x2A0F3\n0x8EAFE7B9\t0x2A2D2\n0x8EAFE7BA\t0x2A356\n0x8EAFE7BB\t0x2A3CE\n0x8EAFE7BC\t0x2A461\n0x8EAFE7BD\t0x2A69B\n0x8EAFE7BE\t0x2A6B4\n0x8EAFE7BF\t0x2045C\n0x8EAFE7C0\t0x2F810\n0x8EAFE7C1\t0x204D2\n0x8EAFE7C2\t0x20571\n0x8EAFE7C3\t0x20673\n0x8EAFE7C4\t0x2082C\n0x8EAFE7C5\t0x20B94\n0x8EAFE7C7\t0x2113F\n0x8EAFE7C8\t0x21140\n0x8EAFE7C9\t0x214F9\n0x8EAFE7CA\t0x214FA\n0x8EAFE7CB\t0x214FD\n0x8EAFE7CC\t0x214FB\n0x8EAFE7CD\t0x2191C\n0x8EAFE7CE\t0x2191D\n0x8EAFE7CF\t0x21AFF\n0x8EAFE7D0\t0x21B00\n0x8EAFE7D1\t0x21CF7\n0x8EAFE7D2\t0x24CFE\n0x8EAFE7D4\t0x224B6\n0x8EAFE7D5\t0x22954\n0x8EAFE7D6\t0x22E77\n0x8EAFE7D7\t0x22E79\n0x8EAFE7D8\t0x22E7A\n0x8EAFE7D9\t0x22E7B\n0x8EAFE7DA\t0x23069\n0x8EAFE7DB\t0x23802\n0x8EAFE7DC\t0x23803\n0x8EAFE7DD\t0x23804\n0x8EAFE7DE\t0x23805\n0x8EAFE7DF\t0x23806\n0x8EAFE7E0\t0x23807\n0x8EAFE7E1\t0x23808\n0x8EAFE7E2\t0x23809\n0x8EAFE7E3\t0x2380A\n0x8EAFE7E4\t0x2380B\n0x8EAFE7E5\t0x23835\n0x8EAFE7E7\t0x23C39\n0x8EAFE7E8\t0x2411E\n0x8EAFE7E9\t0x2411F\n0x8EAFE7EA\t0x24120\n0x8EAFE7EB\t0x24121\n0x8EAFE7ED\t0x24122\n0x8EAFE7EE\t0x24123\n0x8EAFE7EF\t0x24124\n0x8EAFE7F0\t0x2412C\n0x8EAFE7F1\t0x244B3\n0x8EAFE7F2\t0x244B5\n0x8EAFE7F3\t0x244B6\n0x8EAFE7F4\t0x244B7\n0x8EAFE7F5\t0x244B8\n0x8EAFE7F6\t0x24AD0\n0x8EAFE7F7\t0x24CFA\n0x8EAFE7F8\t0x24F07\n0x8EAFE7F9\t0x24FBD\n0x8EAFE7FA\t0x250D7\n0x8EAFE7FB\t0x250D2\n0x8EAFE7FC\t0x255DB\n0x8EAFE7FD\t0x255D6\n0x8EAFE7FE\t0x2045D\n0x8EAFE8A1\t0x25A43\n0x8EAFE8A2\t0x25ACF\n0x8EAFE8A3\t0x25DA3\n0x8EAFE8A4\t0x25DA4\n0x8EAFE8A5\t0x25DA5\n0x8EAFE8A6\t0x25DA6\n0x8EAFE8A7\t0x25DA7\n0x8EAFE8A8\t0x25DA8\n0x8EAFE8A9\t0x25DA9\n0x8EAFE8AA\t0x25F5D\n0x8EAFE8AB\t0x25F5E\n0x8EAFE8AC\t0x261C9\n0x8EAFE8AD\t0x261CA\n0x8EAFE8AE\t0x261CB\n0x8EAFE8AF\t0x261CC\n0x8EAFE8B0\t0x26606\n0x8EAFE8B1\t0x26607\n0x8EAFE8B3\t0x268C5\n0x8EAFE8B4\t0x268F5\n0x8EAFE8B5\t0x269B4\n0x8EAFE8B6\t0x269B8\n0x8EAFE8B7\t0x269B5\n0x8EAFE8B8\t0x270FD\n0x8EAFE8B9\t0x4577\n0x8EAFE8BA\t0x270FE\n0x8EAFE8BB\t0x270FF\n0x8EAFE8BC\t0x27100\n0x8EAFE8BD\t0x27101\n0x8EAFE8BE\t0x27102\n0x8EAFE8BF\t0x27103\n0x8EAFE8C0\t0x27109\n0x8EAFE8C1\t0x27104\n0x8EAFE8C2\t0x27105\n0x8EAFE8C3\t0x27106\n0x8EAFE8C4\t0x27107\n0x8EAFE8C5\t0x27511\n0x8EAFE8C6\t0x27512\n0x8EAFE8C7\t0x27513\n0x8EAFE8C8\t0x27514\n0x8EAFE8C9\t0x27515\n0x8EAFE8CA\t0x8977\n0x8EAFE8CB\t0x27898\n0x8EAFE8CC\t0x27899\n0x8EAFE8CD\t0x27E3C\n0x8EAFE8CE\t0x27E2D\n0x8EAFE8CF\t0x27E2E\n0x8EAFE8D1\t0x281BB\n0x8EAFE8D2\t0x281BC\n0x8EAFE8D3\t0x4878\n0x8EAFE8D4\t0x2843D\n0x8EAFE8D5\t0x28647\n0x8EAFE8D6\t0x28648\n0x8EAFE8D7\t0x28649\n0x8EAFE8D8\t0x2864A\n0x8EAFE8D9\t0x287E1\n0x8EAFE8DA\t0x287E7\n0x8EAFE8DB\t0x288EB\n0x8EAFE8DC\t0x28920\n0x8EAFE8DD\t0x28938\n0x8EAFE8DE\t0x28B62\n0x8EAFE8DF\t0x28B67\n0x8EAFE8E0\t0x28B68\n0x8EAFE8E1\t0x28B69\n0x8EAFE8E2\t0x28B6A\n0x8EAFE8E3\t0x28B6B\n0x8EAFE8E4\t0x28B6D\n0x8EAFE8E5\t0x28B6E\n0x8EAFE8E6\t0x28B6F\n0x8EAFE8E7\t0x28B70\n0x8EAFE8E8\t0x28B71\n0x8EAFE8E9\t0x28B72\n0x8EAFE8EA\t0x28B8F\n0x8EAFE8EB\t0x28B73\n0x8EAFE8EC\t0x28B74\n0x8EAFE8ED\t0x28B75\n0x8EAFE8EE\t0x28B76\n0x8EAFE8EF\t0x28B77\n0x8EAFE8F0\t0x28DC9\n0x8EAFE8F1\t0x28DCA\n0x8EAFE8F2\t0x95E6\n0x8EAFE8F3\t0x28DCB\n0x8EAFE8F4\t0x28DCC\n0x8EAFE8F5\t0x28DCD\n0x8EAFE8F6\t0x29051\n0x8EAFE8F9\t0x29245\n0x8EAFE8FA\t0x29559\n0x8EAFE8FB\t0x2955A\n0x8EAFE8FC\t0x2955B\n0x8EAFE8FD\t0x29640\n0x8EAFE8FE\t0x297CF\n0x8EAFE9A1\t0x2985E\n0x8EAFE9A2\t0x2997B\n0x8EAFE9A3\t0x29A93\n0x8EAFE9A4\t0x29BBC\n0x8EAFE9A5\t0x29D16\n0x8EAFE9A6\t0x29D30\n0x8EAFE9A8\t0x29E8D\n0x8EAFE9A9\t0x29E8E\n0x8EAFE9AA\t0x9C2F\n0x8EAFE9AB\t0x29E8F\n0x8EAFE9AC\t0x29E90\n0x8EAFE9AD\t0x29E91\n0x8EAFE9AE\t0x29E92\n0x8EAFE9AF\t0x29E93\n0x8EAFE9B0\t0x29E94\n0x8EAFE9B1\t0x29E95\n0x8EAFE9B2\t0x29E96\n0x8EAFE9B3\t0x2A123\n0x8EAFE9B4\t0x2A114\n0x8EAFE9B5\t0x2A2DB\n0x8EAFE9B6\t0x2A40A\n0x8EAFE9B7\t0x2A5CE\n0x8EAFE9B8\t0x20466\n0x8EAFE9B9\t0x20468\n0x8EAFE9BA\t0x20467\n0x8EAFE9BB\t0x204D3\n0x8EAFE9BC\t0x21163\n0x8EAFE9BD\t0x21504\n0x8EAFE9BE\t0x2169E\n0x8EAFE9BF\t0x21926\n0x8EAFE9C0\t0x2192A\n0x8EAFE9C1\t0x2296C\n0x8EAFE9C2\t0x22964\n0x8EAFE9C3\t0x22E8F\n0x8EAFE9C4\t0x22E90\n0x8EAFE9C5\t0x23034\n0x8EAFE9C6\t0x2330E\n0x8EAFE9C7\t0x23825\n0x8EAFE9C8\t0x23826\n0x8EAFE9C9\t0x23827\n0x8EAFE9CB\t0x23828\n0x8EAFE9CC\t0x6B0C\n0x8EAFE9CE\t0x23829\n0x8EAFE9CF\t0x2382A\n0x8EAFE9D0\t0x2382B\n0x8EAFE9D1\t0x2382C\n0x8EAFE9D2\t0x23C3E\n0x8EAFE9D3\t0x24142\n0x8EAFE9D4\t0x24143\n0x8EAFE9D5\t0x24133\n0x8EAFE9D6\t0x244C1\n0x8EAFE9D7\t0x244C2\n0x8EAFE9D8\t0x244C3\n0x8EAFE9D9\t0x24AD6\n0x8EAFE9DA\t0x24AD7\n0x8EAFE9DB\t0x255E1\n0x8EAFE9DC\t0x255E2\n0x8EAFE9DD\t0x2572B\n0x8EAFE9DE\t0x25AD1\n0x8EAFE9DF\t0x25DCC\n0x8EAFE9E0\t0x25DCD\n0x8EAFE9E1\t0x25DCE\n0x8EAFE9E2\t0x25DCF\n0x8EAFE9E3\t0x261DE\n0x8EAFE9E4\t0x261DF\n0x8EAFE9E5\t0x261E0\n0x8EAFE9E6\t0x261E1\n0x8EAFE9E7\t0x268F6\n0x8EAFE9E8\t0x2712C\n0x8EAFE9EA\t0x27154\n0x8EAFE9EB\t0x2712D\n0x8EAFE9EC\t0x2712E\n0x8EAFE9ED\t0x27541\n0x8EAFE9EE\t0x27542\n0x8EAFE9EF\t0x277C7\n0x8EAFE9F0\t0x278A0\n0x8EAFE9F1\t0x278A1\n0x8EAFE9F2\t0x27B70\n0x8EAFE9F3\t0x27B71\n0x8EAFE9F4\t0x27B72\n0x8EAFE9F6\t0x27E34\n0x8EAFE9F7\t0x27E35\n0x8EAFE9F8\t0x27E36\n0x8EAFE9F9\t0x27FA6\n0x8EAFE9FA\t0x281CC\n0x8EAFE9FC\t0x28299\n0x8EAFE9FD\t0x288F4\n0x8EAFE9FE\t0x28B9B\n0x8EAFEAA1\t0x28B9E\n0x8EAFEAA2\t0x28B9F\n0x8EAFEAA3\t0x28BA0\n0x8EAFEAA4\t0x28BA1\n0x8EAFEAA5\t0x28BA2\n0x8EAFEAA6\t0x28BA3\n0x8EAFEAA7\t0x28BA4\n0x8EAFEAA8\t0x28BA5\n0x8EAFEAA9\t0x28BA6\n0x8EAFEAAA\t0x28BA7\n0x8EAFEAAB\t0x28BA8\n0x8EAFEAAC\t0x28DDB\n0x8EAFEAAD\t0x28DDC\n0x8EAFEAAE\t0x28DDD\n0x8EAFEAAF\t0x28DD7\n0x8EAFEAB0\t0x28DDE\n0x8EAFEAB1\t0x28DDF\n0x8EAFEAB2\t0x29059\n0x8EAFEAB3\t0x29446\n0x8EAFEAB4\t0x29565\n0x8EAFEAB5\t0x29649\n0x8EAFEAB7\t0x297DD\n0x8EAFEAB8\t0x29995\n0x8EAFEAB9\t0x29996\n0x8EAFEABA\t0x29997\n0x8EAFEABB\t0x29BD4\n0x8EAFEABC\t0x29BD6\n0x8EAFEABD\t0x29D26\n0x8EAFEABE\t0x9C47\n0x8EAFEABF\t0x4C88\n0x8EAFEAC0\t0x29EC8\n0x8EAFEAC1\t0x29EC5\n0x8EAFEAC2\t0x29EC6\n0x8EAFEAC3\t0x29EC7\n0x8EAFEAC4\t0x2A151\n0x8EAFEAC5\t0x2A152\n0x8EAFEAC6\t0x2A153\n0x8EAFEAC7\t0x2A154\n0x8EAFEAC8\t0x2A155\n0x8EAFEAC9\t0x2A2DE\n0x8EAFEACB\t0x2046D\n0x8EAFEACC\t0x204D5\n0x8EAFEACD\t0x21172\n0x8EAFEACE\t0x221AE\n0x8EAFEACF\t0x2230F\n0x8EAFEAD0\t0x2296B\n0x8EAFEAD1\t0x2296D\n0x8EAFEAD2\t0x2296E\n0x8EAFEAD3\t0x22978\n0x8EAFEAD4\t0x22E98\n0x8EAFEAD5\t0x22E99\n0x8EAFEAD6\t0x22E9A\n0x8EAFEAD7\t0x23844\n0x8EAFEAD8\t0x2385C\n0x8EAFEAD9\t0x23845\n0x8EAFEADA\t0x23B01\n0x8EAFEADB\t0x24158\n0x8EAFEADC\t0x24159\n0x8EAFEADD\t0x2415A\n0x8EAFEADF\t0x244D9\n0x8EAFEAE0\t0x244D6\n0x8EAFEAE1\t0x24ADA\n0x8EAFEAE2\t0x24ADF\n0x8EAFEAE3\t0x24ADB\n0x8EAFEAE4\t0x24D03\n0x8EAFEAE5\t0x255EF\n0x8EAFEAE6\t0x7936\n0x8EAFEAE7\t0x25733\n0x8EAFEAE8\t0x25AD2\n0x8EAFEAE9\t0x25DE1\n0x8EAFEAEA\t0x25F6F\n0x8EAFEAEB\t0x26264\n0x8EAFEAEC\t0x2660E\n0x8EAFEAED\t0x27150\n0x8EAFEAEE\t0x27151\n0x8EAFEAEF\t0x27152\n0x8EAFEAF0\t0x27556\n0x8EAFEAF1\t0x27557\n0x8EAFEAF2\t0x27558\n0x8EAFEAF4\t0x27B81\n0x8EAFEAF5\t0x27B82\n0x8EAFEAF6\t0x27C1D\n0x8EAFEAF7\t0x27C1E\n0x8EAFEAF8\t0x27E43\n0x8EAFEAF9\t0x27FAA\n0x8EAFEAFA\t0x288FD\n0x8EAFEAFC\t0x28BC6\n0x8EAFEAFD\t0x28BC7\n0x8EAFEAFE\t0x28BD9\n0x8EAFEBA1\t0x28BD7\n0x8EAFEBA3\t0x28BC8\n0x8EAFEBA4\t0x28BC9\n0x8EAFEBA5\t0x28BCA\n0x8EAFEBA6\t0x28BCB\n0x8EAFEBA7\t0x28BDA\n0x8EAFEBA9\t0x28BCC\n0x8EAFEBAA\t0x28BCD\n0x8EAFEBAB\t0x28BCE\n0x8EAFEBAC\t0x28BCF\n0x8EAFEBAD\t0x28BD0\n0x8EAFEBAE\t0x28BD1\n0x8EAFEBAF\t0x28BBC\n0x8EAFEBB0\t0x28DE1\n0x8EAFEBB1\t0x28DE2\n0x8EAFEBB2\t0x28DE3\n0x8EAFEBB3\t0x291A9\n0x8EAFEBB4\t0x2924E\n0x8EAFEBB5\t0x29577\n0x8EAFEBB8\t0x299AC\n0x8EAFEBB9\t0x299AD\n0x8EAFEBBA\t0x29AB6\n0x8EAFEBBB\t0x29BE5\n0x8EAFEBBC\t0x29EF8\n0x8EAFEBBD\t0x29EEA\n0x8EAFEBBE\t0x29F8D\n0x8EAFEBBF\t0x29EEB\n0x8EAFEBC0\t0x2A195\n0x8EAFEBC1\t0x2046E\n0x8EAFEBC2\t0x204D8\n0x8EAFEBC3\t0x21183\n0x8EAFEBC4\t0x216A3\n0x8EAFEBC5\t0x21930\n0x8EAFEBC6\t0x21B0F\n0x8EAFEBC7\t0x22979\n0x8EAFEBC8\t0x2297A\n0x8EAFEBC9\t0x22EA7\n0x8EAFEBCA\t0x22EA8\n0x8EAFEBCB\t0x22EA9\n0x8EAFEBCC\t0x22EAA\n0x8EAFEBCD\t0x23319\n0x8EAFEBCE\t0x23850\n0x8EAFEBCF\t0x23851\n0x8EAFEBD0\t0x23852\n0x8EAFEBD1\t0x6B15\n0x8EAFEBD2\t0x23868\n0x8EAFEBD3\t0x23853\n0x8EAFEBD4\t0x23854\n0x8EAFEBD5\t0x248E2\n0x8EAFEBD6\t0x24ADC\n0x8EAFEBD7\t0x25915\n0x8EAFEBD8\t0x25916\n0x8EAFEBD9\t0x25A4F\n0x8EAFEBDA\t0x25DF5\n0x8EAFEBDB\t0x25DF6\n0x8EAFEBDC\t0x25DF7\n0x8EAFEBDD\t0x261F4\n0x8EAFEBDE\t0x264CC\n0x8EAFEBDF\t0x2660F\n0x8EAFEBE0\t0x27166\n0x8EAFEBE1\t0x27167\n0x8EAFEBE3\t0x27168\n0x8EAFEBE4\t0x278A4\n0x8EAFEBE5\t0x27B8B\n0x8EAFEBE6\t0x27B8C\n0x8EAFEBE7\t0x281FA\n0x8EAFEBE8\t0x28BE6\n0x8EAFEBE9\t0x28BED\n0x8EAFEBEA\t0x28BEE\n0x8EAFEBEB\t0x28BEF\n0x8EAFEBEC\t0x28BF0\n0x8EAFEBED\t0x28BFE\n0x8EAFEBEE\t0x28DE7\n0x8EAFEBEF\t0x28DE8\n0x8EAFEBF0\t0x291B3\n0x8EAFEBF1\t0x291E4\n0x8EAFEBF2\t0x29583\n0x8EAFEBF3\t0x29AEC\n0x8EAFEBF5\t0x29F16\n0x8EAFEBF8\t0x29F17\n0x8EAFEBF9\t0x2A1C3\n0x8EAFEBFA\t0x2A1AC\n0x8EAFEBFB\t0x2A2ED\n0x8EAFEBFE\t0x2A5B4\n0x8EAFECA2\t0x2118A\n0x8EAFECA3\t0x2118B\n0x8EAFECA4\t0x21934\n0x8EAFECA5\t0x21B14\n0x8EAFECA6\t0x21FDF\n0x8EAFECA7\t0x224BB\n0x8EAFECA8\t0x2297F\n0x8EAFECA9\t0x22981\n0x8EAFECAA\t0x22EAD\n0x8EAFECAB\t0x22EAE\n0x8EAFECAC\t0x23862\n0x8EAFECAD\t0x2386E\n0x8EAFECAF\t0x2416E\n0x8EAFECB1\t0x24717\n0x8EAFECB2\t0x24AE6\n0x8EAFECB3\t0x24C10\n0x8EAFECB4\t0x25919\n0x8EAFECB6\t0x26610\n0x8EAFECB7\t0x26AF2\n0x8EAFECB8\t0x27176\n0x8EAFECB9\t0x27177\n0x8EAFECBA\t0x27B95\n0x8EAFECBB\t0x27B96\n0x8EAFECBC\t0x28C00\n0x8EAFECBD\t0x28C01\n0x8EAFECBE\t0x28C31\n0x8EAFECBF\t0x2F9ED\n0x8EAFECC0\t0x28C1C\n0x8EAFECC1\t0x2906D\n0x8EAFECC2\t0x29BF4\n0x8EAFECC3\t0x29BF5\n0x8EAFECC4\t0x29D3D\n0x8EAFECC5\t0x29F32\n0x8EAFECC6\t0x29F33\n0x8EAFECC7\t0x2A2F4\n0x8EAFECC9\t0x20473\n0x8EAFECCA\t0x21937\n0x8EAFECCC\t0x23871\n0x8EAFECCD\t0x25E0F\n0x8EAFECCF\t0x25E0E\n0x8EAFECD0\t0x26611\n0x8EAFECD1\t0x27185\n0x8EAFECD2\t0x28C14\n0x8EAFECD3\t0x28C15\n0x8EAFECD4\t0x28C16\n0x8EAFECD5\t0x28C17\n0x8EAFECD6\t0x28C18\n0x8EAFECD7\t0x28C19\n0x8EAFECD8\t0x28C1A\n0x8EAFECD9\t0x291C3\n0x8EAFECDA\t0x29F42\n0x8EAFECDB\t0x29F43\n0x8EAFECDC\t0x29F44\n0x8EAFECDD\t0x29F48\n0x8EAFECDE\t0x2A1FB\n0x8EAFECDF\t0x216A5\n0x8EAFECE0\t0x219B8\n0x8EAFECE1\t0x22EB2\n0x8EAFECE2\t0x2303D\n0x8EAFECE3\t0x23872\n0x8EAFECE4\t0x244E7\n0x8EAFECE5\t0x244E8\n0x8EAFECE6\t0x25359\n0x8EAFECE7\t0x2573A\n0x8EAFECE8\t0x25E14\n0x8EAFECE9\t0x261FF\n0x8EAFECEA\t0x269C0\n0x8EAFECEB\t0x2718D\n0x8EAFECEC\t0x4584\n0x8EAFECED\t0x2718E\n0x8EAFECEF\t0x28C22\n0x8EAFECF2\t0x29C04\n0x8EAFECF3\t0x29C29\n0x8EAFECF4\t0x29F51\n0x8EAFECF5\t0x29F66\n0x8EAFECF6\t0x2A20E\n0x8EAFECF7\t0x2FA13\n0x8EAFECF9\t0x2119B\n0x8EAFECFA\t0x2119C\n0x8EAFECFB\t0x22316\n0x8EAFECFC\t0x22986\n0x8EAFECFD\t0x22987\n0x8EAFEDA1\t0x28C2C\n0x8EAFEDA2\t0x28C30\n0x8EAFEDA3\t0x28C28\n0x8EAFEDA4\t0x2965F\n0x8EAFEDA6\t0x2417E\n0x8EAFEDA7\t0x25E19\n0x8EAFEDA8\t0x2820A\n0x8EAFEDA9\t0x28C36\n0x8EAFEDAA\t0x28DFC\n0x8EAFEDAB\t0x29F6D\n0x8EAFEDAC\t0x29F6E\n0x8EAFEDAD\t0x2A6C6\n0x8EAFEDAE\t0x53B5\n0x8EAFEDAF\t0x2387B\n0x8EAFEDB0\t0x26206\n0x8EAFEDB1\t0x2759F\n0x8EAFEDB2\t0x2A232\n0x8EAFEDB3\t0x2820D\n0x8EAFEDB4\t0x2298B\n0x8EAFEDB5\t0x28C3B\n0x8EAFEDB7\t0x2A23D\n0x8EAFEDB8\t0x28C3C\n0x8EAFEDB9\t0x28C3D\n0xA1A1\t0x3000\n0xA1A2\t0xFF0C\n0xA1A3\t0x3001\n0xA1A4\t0x3002\n0xA1A5\t0xFF0E\n0xA1A6\t0x30FB\n0xA1A7\t0xFF1B\n0xA1A8\t0xFF1A\n0xA1A9\t0xFF1F\n0xA1AA\t0xFF01\n0xA1AB\t0xFE30\n0xA1AC\t0x2026\n0xA1AD\t0x2025\n0xA1AE\t0xFE50\n0xA1AF\t0xFE51\n0xA1B0\t0xFE52\n0xA1B1\t0x00B7\n0xA1B2\t0xFE54\n0xA1B3\t0xFE55\n0xA1B4\t0xFE56\n0xA1B5\t0xFE57\n0xA1B6\t0xFE31\n0xA1B7\t0x2014\n0xA1B8\t0xFE32\n0xA1B9\t0x2013\n0xA1BE\t0xFF08\n0xA1BF\t0xFF09\n0xA1C0\t0xFE35\n0xA1C1\t0xFE36\n0xA1C2\t0xFF5B\n0xA1C3\t0xFF5D\n0xA1C4\t0xFE37\n0xA1C5\t0xFE38\n0xA1C6\t0x3014\n0xA1C7\t0x3015\n0xA1C8\t0xFE39\n0xA1C9\t0xFE3A\n0xA1CA\t0x3010\n0xA1CB\t0x3011\n0xA1CC\t0xFE3B\n0xA1CD\t0xFE3C\n0xA1CE\t0x300A\n0xA1CF\t0x300B\n0xA1D0\t0xFE3D\n0xA1D1\t0xFE3E\n0xA1D2\t0x3008\n0xA1D3\t0x3009\n0xA1D4\t0xFE3F\n0xA1D5\t0xFE40\n0xA1D6\t0x300C\n0xA1D7\t0x300D\n0xA1D8\t0xFE41\n0xA1D9\t0xFE42\n0xA1DA\t0x300E\n0xA1DB\t0x300F\n0xA1DC\t0xFE43\n0xA1DD\t0xFE44\n0xA1DE\t0xFE59\n0xA1DF\t0xFE5A\n0xA1E0\t0xFE5B\n0xA1E1\t0xFE5C\n0xA1E2\t0xFE5D\n0xA1E3\t0xFE5E\n0xA1E4\t0x2018\n0xA1E5\t0x2019\n0xA1E6\t0x201C\n0xA1E7\t0x201D\n0xA1E8\t0x301D\n0xA1E9\t0x301E\n0xA1EA\t0x2032\n0xA1EB\t0x2035\n0xA1EC\t0xFF03\n0xA1ED\t0xFF06\n0xA1EE\t0xFF0A\n0xA1EF\t0x203B\n0xA1F0\t0x00A7\n0xA1F1\t0x3003\n0xA1F2\t0x25CB\n0xA1F3\t0x25CF\n0xA1F4\t0x25B3\n0xA1F5\t0x25B2\n0xA1F6\t0x25CE\n0xA1F7\t0x2606\n0xA1F8\t0x2605\n0xA1F9\t0x25C7\n0xA1FA\t0x25C6\n0xA1FB\t0x25A1\n0xA1FC\t0x25A0\n0xA1FD\t0x25BD\n0xA1FE\t0x25BC\n0xA2A1\t0x32A3\n0xA2A2\t0x2105\n0xA2A3\t0x203E\n0xA2A5\t0xFF3F\n0xA2A7\t0xFE49\n0xA2A8\t0xFE4A\n0xA2A9\t0xFE4D\n0xA2AA\t0xFE4E\n0xA2AB\t0xFE4B\n0xA2AC\t0xFE4C\n0xA2AD\t0xFE5F\n0xA2AE\t0xFE60\n0xA2AF\t0xFE61\n0xA2B0\t0xFF0B\n0xA2B1\t0xFF0D\n0xA2B2\t0x00D7\n0xA2B3\t0x00F7\n0xA2B4\t0x00B1\n0xA2B5\t0x221A\n0xA2B6\t0xFF1C\n0xA2B7\t0xFF1E\n0xA2B8\t0xFF1D\n0xA2B9\t0x2266\n0xA2BA\t0x2267\n0xA2BB\t0x2260\n0xA2BC\t0x221E\n0xA2BD\t0x2252\n0xA2BE\t0x2261\n0xA2BF\t0xFE62\n0xA2C0\t0xFE63\n0xA2C1\t0xFE64\n0xA2C2\t0xFE66\n0xA2C3\t0xFE65\n0xA2C4\t0x223C\n0xA2C5\t0x2229\n0xA2C6\t0x222A\n0xA2C7\t0x22A5\n0xA2C8\t0x2220\n0xA2C9\t0x221F\n0xA2CA\t0x22BF\n0xA2CB\t0x33D2\n0xA2CC\t0x33D1\n0xA2CD\t0x222B\n0xA2CE\t0x222E\n0xA2CF\t0x2235\n0xA2D0\t0x2234\n0xA2D1\t0x2640\n0xA2D2\t0x2642\n0xA2D3\t0x2641\n0xA2D4\t0x2609\n0xA2D5\t0x2191\n0xA2D6\t0x2193\n0xA2D7\t0x2192\n0xA2D8\t0x2190\n0xA2D9\t0x2196\n0xA2DA\t0x2197\n0xA2DB\t0x2199\n0xA2DC\t0x2198\n0xA2DD\t0x2016\n0xA2DE\t0xFF5C\n0xA2DF\t0xFF0F\n0xA2E0\t0xFF3C\n0xA2E1\t0x2215\n0xA2E2\t0xFE68\n0xA2E3\t0xFF04\n0xA2E4\t0xFFE5\n0xA2E5\t0x3012\n0xA2E6\t0xFFE0\n0xA2E7\t0xFFE1\n0xA2E8\t0xFF05\n0xA2E9\t0xFF20\n0xA2EA\t0x2103\n0xA2EB\t0x2109\n0xA2EC\t0xFE69\n0xA2ED\t0xFE6A\n0xA2EE\t0xFE6B\n0xA2EF\t0x33D5\n0xA2F0\t0x339C\n0xA2F1\t0x339D\n0xA2F2\t0x339E\n0xA2F3\t0x33CE\n0xA2F4\t0x33A1\n0xA2F5\t0x338E\n0xA2F6\t0x338F\n0xA2F7\t0x33C4\n0xA2F8\t0x00B0\n0xA2F9\t0x5159\n0xA2FA\t0x515B\n0xA2FB\t0x515E\n0xA2FC\t0x515D\n0xA2FD\t0x5161\n0xA2FE\t0x5163\n0xA3A1\t0x55E7\n0xA3A2\t0x74E9\n0xA3A3\t0x7CCE\n0xA3A4\t0x2581\n0xA3A5\t0x2582\n0xA3A6\t0x2583\n0xA3A7\t0x2584\n0xA3A8\t0x2585\n0xA3A9\t0x2586\n0xA3AA\t0x2587\n0xA3AB\t0x2588\n0xA3AC\t0x258F\n0xA3AD\t0x258E\n0xA3AE\t0x258D\n0xA3AF\t0x258C\n0xA3B0\t0x258B\n0xA3B1\t0x258A\n0xA3B2\t0x2589\n0xA3B3\t0x253C\n0xA3B4\t0x2534\n0xA3B5\t0x252C\n0xA3B6\t0x2524\n0xA3B7\t0x251C\n0xA3B8\t0x2594\n0xA3B9\t0x2500\n0xA3BA\t0x2502\n0xA3BB\t0x2595\n0xA3BC\t0x250C\n0xA3BD\t0x2510\n0xA3BE\t0x2514\n0xA3BF\t0x2518\n0xA3C0\t0x256D\n0xA3C1\t0x256E\n0xA3C2\t0x2570\n0xA3C3\t0x256F\n0xA3C4\t0x2550\n0xA3C5\t0x255E\n0xA3C6\t0x256A\n0xA3C7\t0x2561\n0xA3C8\t0x25E2\n0xA3C9\t0x25E3\n0xA3CA\t0x25E5\n0xA3CB\t0x25E4\n0xA3CC\t0x2571\n0xA3CD\t0x2572\n0xA3CE\t0x2573\n0xA4A1\t0xFF10\n0xA4A2\t0xFF11\n0xA4A3\t0xFF12\n0xA4A4\t0xFF13\n0xA4A5\t0xFF14\n0xA4A6\t0xFF15\n0xA4A7\t0xFF16\n0xA4A8\t0xFF17\n0xA4A9\t0xFF18\n0xA4AA\t0xFF19\n0xA4AB\t0x2160\n0xA4AC\t0x2161\n0xA4AD\t0x2162\n0xA4AE\t0x2163\n0xA4AF\t0x2164\n0xA4B0\t0x2165\n0xA4B1\t0x2166\n0xA4B2\t0x2167\n0xA4B3\t0x2168\n0xA4B4\t0x2169\n0xA4B5\t0x3021\n0xA4B6\t0x3022\n0xA4B7\t0x3023\n0xA4B8\t0x3024\n0xA4B9\t0x3025\n0xA4BA\t0x3026\n0xA4BB\t0x3027\n0xA4BC\t0x3028\n0xA4BD\t0x3029\n0xA4BF\t0x5344\n0xA4C1\t0xFF21\n0xA4C2\t0xFF22\n0xA4C3\t0xFF23\n0xA4C4\t0xFF24\n0xA4C5\t0xFF25\n0xA4C6\t0xFF26\n0xA4C7\t0xFF27\n0xA4C8\t0xFF28\n0xA4C9\t0xFF29\n0xA4CA\t0xFF2A\n0xA4CB\t0xFF2B\n0xA4CC\t0xFF2C\n0xA4CD\t0xFF2D\n0xA4CE\t0xFF2E\n0xA4CF\t0xFF2F\n0xA4D0\t0xFF30\n0xA4D1\t0xFF31\n0xA4D2\t0xFF32\n0xA4D3\t0xFF33\n0xA4D4\t0xFF34\n0xA4D5\t0xFF35\n0xA4D6\t0xFF36\n0xA4D7\t0xFF37\n0xA4D8\t0xFF38\n0xA4D9\t0xFF39\n0xA4DA\t0xFF3A\n0xA4DB\t0xFF41\n0xA4DC\t0xFF42\n0xA4DD\t0xFF43\n0xA4DE\t0xFF44\n0xA4DF\t0xFF45\n0xA4E0\t0xFF46\n0xA4E1\t0xFF47\n0xA4E2\t0xFF48\n0xA4E3\t0xFF49\n0xA4E4\t0xFF4A\n0xA4E5\t0xFF4B\n0xA4E6\t0xFF4C\n0xA4E7\t0xFF4D\n0xA4E8\t0xFF4E\n0xA4E9\t0xFF4F\n0xA4EA\t0xFF50\n0xA4EB\t0xFF51\n0xA4EC\t0xFF52\n0xA4ED\t0xFF53\n0xA4EE\t0xFF54\n0xA4EF\t0xFF55\n0xA4F0\t0xFF56\n0xA4F1\t0xFF57\n0xA4F2\t0xFF58\n0xA4F3\t0xFF59\n0xA4F4\t0xFF5A\n0xA4F5\t0x0391\n0xA4F6\t0x0392\n0xA4F7\t0x0393\n0xA4F8\t0x0394\n0xA4F9\t0x0395\n0xA4FA\t0x0396\n0xA4FB\t0x0397\n0xA4FC\t0x0398\n0xA4FD\t0x0399\n0xA4FE\t0x039A\n0xA5A1\t0x039B\n0xA5A2\t0x039C\n0xA5A3\t0x039D\n0xA5A4\t0x039E\n0xA5A5\t0x039F\n0xA5A6\t0x03A0\n0xA5A7\t0x03A1\n0xA5A8\t0x03A3\n0xA5A9\t0x03A4\n0xA5AA\t0x03A5\n0xA5AB\t0x03A6\n0xA5AC\t0x03A7\n0xA5AD\t0x03A8\n0xA5AE\t0x03A9\n0xA5AF\t0x03B1\n0xA5B0\t0x03B2\n0xA5B1\t0x03B3\n0xA5B2\t0x03B4\n0xA5B3\t0x03B5\n0xA5B4\t0x03B6\n0xA5B5\t0x03B7\n0xA5B6\t0x03B8\n0xA5B7\t0x03B9\n0xA5B8\t0x03BA\n0xA5B9\t0x03BB\n0xA5BA\t0x03BC\n0xA5BB\t0x03BD\n0xA5BC\t0x03BE\n0xA5BD\t0x03BF\n0xA5BE\t0x03C0\n0xA5BF\t0x03C1\n0xA5C0\t0x03C3\n0xA5C1\t0x03C4\n0xA5C2\t0x03C5\n0xA5C3\t0x03C6\n0xA5C4\t0x03C7\n0xA5C5\t0x03C8\n0xA5C6\t0x03C9\n0xA5C7\t0x3105\n0xA5C8\t0x3106\n0xA5C9\t0x3107\n0xA5CA\t0x3108\n0xA5CB\t0x3109\n0xA5CC\t0x310A\n0xA5CD\t0x310B\n0xA5CE\t0x310C\n0xA5CF\t0x310D\n0xA5D0\t0x310E\n0xA5D1\t0x310F\n0xA5D2\t0x3110\n0xA5D3\t0x3111\n0xA5D4\t0x3112\n0xA5D5\t0x3113\n0xA5D6\t0x3114\n0xA5D7\t0x3115\n0xA5D8\t0x3116\n0xA5D9\t0x3117\n0xA5DA\t0x3118\n0xA5DB\t0x3119\n0xA5DC\t0x311A\n0xA5DD\t0x311B\n0xA5DE\t0x311C\n0xA5DF\t0x311D\n0xA5E0\t0x311E\n0xA5E1\t0x311F\n0xA5E2\t0x3120\n0xA5E3\t0x3121\n0xA5E4\t0x3122\n0xA5E5\t0x3123\n0xA5E6\t0x3124\n0xA5E7\t0x3125\n0xA5E8\t0x3126\n0xA5E9\t0x3127\n0xA5EA\t0x3128\n0xA5EB\t0x3129\n0xA5EC\t0x02D9\n0xA5ED\t0x02C9\n0xA5EE\t0x02CA\n0xA5EF\t0x02C7\n0xA5F0\t0x02CB\n0xA6A1\t0x2460\n0xA6A2\t0x2461\n0xA6A3\t0x2462\n0xA6A4\t0x2463\n0xA6A5\t0x2464\n0xA6A6\t0x2465\n0xA6A7\t0x2466\n0xA6A8\t0x2467\n0xA6A9\t0x2468\n0xA6AA\t0x2469\n0xA6AB\t0x2474\n0xA6AC\t0x2475\n0xA6AD\t0x2476\n0xA6AE\t0x2477\n0xA6AF\t0x2478\n0xA6B0\t0x2479\n0xA6B1\t0x247A\n0xA6B2\t0x247B\n0xA6B3\t0x247C\n0xA6B4\t0x247D\n0xA6B5\t0x2170\n0xA6B6\t0x2171\n0xA6B7\t0x2172\n0xA6B8\t0x2173\n0xA6B9\t0x2174\n0xA6BA\t0x2175\n0xA6BB\t0x2176\n0xA6BC\t0x2177\n0xA6BD\t0x2178\n0xA6BE\t0x2179\n0xA7A8\t0x4EA0\n0xA7AF\t0x51AB\n0xA7B4\t0x52F9\n0xC2A1\t0x2400\n0xC2A2\t0x2401\n0xC2A3\t0x2402\n0xC2A4\t0x2403\n0xC2A5\t0x2404\n0xC2A6\t0x2405\n0xC2A7\t0x2406\n0xC2A8\t0x2407\n0xC2A9\t0x2408\n0xC2AA\t0x2409\n0xC2AB\t0x240A\n0xC2AC\t0x240B\n0xC2AD\t0x240C\n0xC2AE\t0x240D\n0xC2AF\t0x240E\n0xC2B0\t0x240F\n0xC2B1\t0x2410\n0xC2B2\t0x2411\n0xC2B3\t0x2412\n0xC2B4\t0x2413\n0xC2B5\t0x2414\n0xC2B6\t0x2415\n0xC2B7\t0x2416\n0xC2B8\t0x2417\n0xC2B9\t0x2418\n0xC2BA\t0x2419\n0xC2BB\t0x241A\n0xC2BC\t0x241B\n0xC2BD\t0x241C\n0xC2BE\t0x241D\n0xC2BF\t0x241E\n0xC2C0\t0x241F\n0xC2C1\t0x2421\n0xC2C2\t0x20AC\n0xC4A1\t0x4E00\n0xC4A2\t0x4E59\n0xC4A3\t0x4E01\n0xC4A4\t0x4E03\n0xC4A5\t0x4E43\n0xC4A6\t0x4E5D\n0xC4A7\t0x4E86\n0xC4A8\t0x4E8C\n0xC4A9\t0x4EBA\n0xC4AA\t0x513F\n0xC4AB\t0x5165\n0xC4AC\t0x516B\n0xC4AD\t0x51E0\n0xC4AE\t0x5200\n0xC4AF\t0x5201\n0xC4B0\t0x529B\n0xC4B1\t0x5315\n0xC4B2\t0x5341\n0xC4B3\t0x535C\n0xC4B4\t0x53C8\n0xC4B5\t0x4E09\n0xC4B6\t0x4E0B\n0xC4B7\t0x4E08\n0xC4B8\t0x4E0A\n0xC4B9\t0x4E2B\n0xC4BA\t0x4E38\n0xC4BB\t0x51E1\n0xC4BC\t0x4E45\n0xC4BD\t0x4E48\n0xC4BE\t0x4E5F\n0xC4BF\t0x4E5E\n0xC4C0\t0x4E8E\n0xC4C1\t0x4EA1\n0xC4C2\t0x5140\n0xC4C3\t0x5203\n0xC4C4\t0x52FA\n0xC4C5\t0x5343\n0xC4C6\t0x53C9\n0xC4C7\t0x53E3\n0xC4C8\t0x571F\n0xC4C9\t0x58EB\n0xC4CA\t0x5915\n0xC4CB\t0x5927\n0xC4CC\t0x5973\n0xC4CD\t0x5B50\n0xC4CE\t0x5B51\n0xC4CF\t0x5B53\n0xC4D0\t0x5BF8\n0xC4D1\t0x5C0F\n0xC4D2\t0x5C22\n0xC4D3\t0x5C38\n0xC4D4\t0x5C71\n0xC4D5\t0x5DDD\n0xC4D6\t0x5DE5\n0xC4D7\t0x5DF1\n0xC4D8\t0x5DF2\n0xC4D9\t0x5DF3\n0xC4DA\t0x5DFE\n0xC4DB\t0x5E72\n0xC4DC\t0x5EFE\n0xC4DD\t0x5F0B\n0xC4DE\t0x5F13\n0xC4DF\t0x624D\n0xC4E0\t0x4E11\n0xC4E1\t0x4E10\n0xC4E2\t0x4E0D\n0xC4E3\t0x4E2D\n0xC4E4\t0x4E30\n0xC4E5\t0x4E39\n0xC4E6\t0x4E4B\n0xC4E7\t0x5C39\n0xC4E8\t0x4E88\n0xC4E9\t0x4E91\n0xC4EA\t0x4E95\n0xC4EB\t0x4E92\n0xC4EC\t0x4E94\n0xC4ED\t0x4EA2\n0xC4EE\t0x4EC1\n0xC4EF\t0x4EC0\n0xC4F0\t0x4EC3\n0xC4F1\t0x4EC6\n0xC4F2\t0x4EC7\n0xC4F3\t0x4ECD\n0xC4F4\t0x4ECA\n0xC4F5\t0x4ECB\n0xC4F6\t0x4EC4\n0xC4F7\t0x5143\n0xC4F8\t0x5141\n0xC4F9\t0x5167\n0xC4FA\t0x516D\n0xC4FB\t0x516E\n0xC4FC\t0x516C\n0xC4FD\t0x5197\n0xC4FE\t0x51F6\n0xC5A1\t0x5206\n0xC5A2\t0x5207\n0xC5A3\t0x5208\n0xC5A4\t0x52FB\n0xC5A5\t0x52FE\n0xC5A6\t0x52FF\n0xC5A7\t0x5316\n0xC5A8\t0x5339\n0xC5A9\t0x5348\n0xC5AA\t0x5347\n0xC5AB\t0x5345\n0xC5AC\t0x535E\n0xC5AD\t0x5384\n0xC5AE\t0x53CB\n0xC5AF\t0x53CA\n0xC5B0\t0x53CD\n0xC5B1\t0x58EC\n0xC5B2\t0x5929\n0xC5B3\t0x592B\n0xC5B4\t0x592A\n0xC5B5\t0x592D\n0xC5B6\t0x5B54\n0xC5B7\t0x5C11\n0xC5B8\t0x5C24\n0xC5B9\t0x5C3A\n0xC5BA\t0x5C6F\n0xC5BB\t0x5DF4\n0xC5BC\t0x5E7B\n0xC5BD\t0x5EFF\n0xC5BE\t0x5F14\n0xC5BF\t0x5F15\n0xC5C0\t0x5FC3\n0xC5C1\t0x6208\n0xC5C2\t0x6236\n0xC5C3\t0x624B\n0xC5C4\t0x624E\n0xC5C5\t0x652F\n0xC5C6\t0x6587\n0xC5C7\t0x6597\n0xC5C8\t0x65A4\n0xC5C9\t0x65B9\n0xC5CA\t0x65E5\n0xC5CB\t0x66F0\n0xC5CC\t0x6708\n0xC5CD\t0x6728\n0xC5CE\t0x6B20\n0xC5CF\t0x6B62\n0xC5D0\t0x6B79\n0xC5D1\t0x6BCB\n0xC5D2\t0x6BD4\n0xC5D3\t0x6BDB\n0xC5D4\t0x6C0F\n0xC5D5\t0x6C34\n0xC5D6\t0x706B\n0xC5D7\t0x722A\n0xC5D8\t0x7236\n0xC5D9\t0x723B\n0xC5DA\t0x7247\n0xC5DB\t0x7259\n0xC5DC\t0x725B\n0xC5DD\t0x72AC\n0xC5DE\t0x738B\n0xC5DF\t0x4E19\n0xC5E0\t0x4E16\n0xC5E1\t0x4E15\n0xC5E2\t0x4E14\n0xC5E3\t0x4E18\n0xC5E4\t0x4E3B\n0xC5E5\t0x4E4D\n0xC5E6\t0x4E4F\n0xC5E7\t0x4E4E\n0xC5E8\t0x4EE5\n0xC5E9\t0x4ED8\n0xC5EA\t0x4ED4\n0xC5EB\t0x4ED5\n0xC5EC\t0x4ED6\n0xC5ED\t0x4ED7\n0xC5EE\t0x4EE3\n0xC5EF\t0x4EE4\n0xC5F0\t0x4ED9\n0xC5F1\t0x4EDE\n0xC5F2\t0x5145\n0xC5F3\t0x5144\n0xC5F4\t0x5189\n0xC5F5\t0x518A\n0xC5F6\t0x51AC\n0xC5F7\t0x51F9\n0xC5F8\t0x51FA\n0xC5F9\t0x51F8\n0xC5FA\t0x520A\n0xC5FB\t0x52A0\n0xC5FC\t0x529F\n0xC5FD\t0x5305\n0xC5FE\t0x5306\n0xC6A1\t0x5317\n0xC6A2\t0x531D\n0xC6A3\t0x4EDF\n0xC6A4\t0x534A\n0xC6A5\t0x5349\n0xC6A6\t0x5361\n0xC6A7\t0x5360\n0xC6A8\t0x536F\n0xC6A9\t0x536E\n0xC6AA\t0x53BB\n0xC6AB\t0x53EF\n0xC6AC\t0x53E4\n0xC6AD\t0x53F3\n0xC6AE\t0x53EC\n0xC6AF\t0x53EE\n0xC6B0\t0x53E9\n0xC6B1\t0x53E8\n0xC6B2\t0x53FC\n0xC6B3\t0x53F8\n0xC6B4\t0x53F5\n0xC6B5\t0x53EB\n0xC6B6\t0x53E6\n0xC6B7\t0x53EA\n0xC6B8\t0x53F2\n0xC6B9\t0x53F1\n0xC6BA\t0x53F0\n0xC6BB\t0x53E5\n0xC6BC\t0x53ED\n0xC6BD\t0x53FB\n0xC6BE\t0x56DB\n0xC6BF\t0x56DA\n0xC6C0\t0x5916\n0xC6C1\t0x592E\n0xC6C2\t0x5931\n0xC6C3\t0x5974\n0xC6C4\t0x5976\n0xC6C5\t0x5B55\n0xC6C6\t0x5B83\n0xC6C7\t0x5C3C\n0xC6C8\t0x5DE8\n0xC6C9\t0x5DE7\n0xC6CA\t0x5DE6\n0xC6CB\t0x5E02\n0xC6CC\t0x5E03\n0xC6CD\t0x5E73\n0xC6CE\t0x5E7C\n0xC6CF\t0x5F01\n0xC6D0\t0x5F18\n0xC6D1\t0x5F17\n0xC6D2\t0x5FC5\n0xC6D3\t0x620A\n0xC6D4\t0x6253\n0xC6D5\t0x6254\n0xC6D6\t0x6252\n0xC6D7\t0x6251\n0xC6D8\t0x65A5\n0xC6D9\t0x65E6\n0xC6DA\t0x672E\n0xC6DB\t0x672C\n0xC6DC\t0x672A\n0xC6DD\t0x672B\n0xC6DE\t0x672D\n0xC6DF\t0x6B63\n0xC6E0\t0x6BCD\n0xC6E1\t0x6C11\n0xC6E2\t0x6C10\n0xC6E3\t0x6C38\n0xC6E4\t0x6C41\n0xC6E5\t0x6C40\n0xC6E6\t0x6C3E\n0xC6E7\t0x72AF\n0xC6E8\t0x7384\n0xC6E9\t0x7389\n0xC6EA\t0x74DC\n0xC6EB\t0x74E6\n0xC6EC\t0x7518\n0xC6ED\t0x751F\n0xC6EE\t0x7528\n0xC6EF\t0x7529\n0xC6F0\t0x7530\n0xC6F1\t0x7531\n0xC6F2\t0x7532\n0xC6F3\t0x7533\n0xC6F4\t0x758B\n0xC6F5\t0x767D\n0xC6F6\t0x76AE\n0xC6F7\t0x76BF\n0xC6F8\t0x76EE\n0xC6F9\t0x77DB\n0xC6FA\t0x77E2\n0xC6FB\t0x77F3\n0xC6FC\t0x793A\n0xC6FD\t0x79BE\n0xC6FE\t0x7A74\n0xC7A1\t0x7ACB\n0xC7A2\t0x4E1E\n0xC7A3\t0x4E1F\n0xC7A4\t0x4E52\n0xC7A5\t0x4E53\n0xC7A6\t0x4E69\n0xC7A7\t0x4E99\n0xC7A8\t0x4EA4\n0xC7A9\t0x4EA6\n0xC7AA\t0x4EA5\n0xC7AB\t0x4EFF\n0xC7AC\t0x4F09\n0xC7AD\t0x4F19\n0xC7AE\t0x4F0A\n0xC7AF\t0x4F15\n0xC7B0\t0x4F0D\n0xC7B1\t0x4F10\n0xC7B2\t0x4F11\n0xC7B3\t0x4F0F\n0xC7B4\t0x4EF2\n0xC7B5\t0x4EF6\n0xC7B6\t0x4EFB\n0xC7B7\t0x4EF0\n0xC7B8\t0x4EF3\n0xC7B9\t0x4EFD\n0xC7BA\t0x4F01\n0xC7BB\t0x4F0B\n0xC7BC\t0x5149\n0xC7BD\t0x5147\n0xC7BE\t0x5146\n0xC7BF\t0x5148\n0xC7C0\t0x5168\n0xC7C1\t0x5171\n0xC7C2\t0x518D\n0xC7C3\t0x51B0\n0xC7C4\t0x5217\n0xC7C5\t0x5211\n0xC7C6\t0x5212\n0xC7C7\t0x520E\n0xC7C8\t0x5216\n0xC7C9\t0x52A3\n0xC7CA\t0x5308\n0xC7CB\t0x5321\n0xC7CC\t0x5320\n0xC7CD\t0x5370\n0xC7CE\t0x5371\n0xC7CF\t0x5409\n0xC7D0\t0x540F\n0xC7D1\t0x540C\n0xC7D2\t0x540A\n0xC7D3\t0x5410\n0xC7D4\t0x5401\n0xC7D5\t0x540B\n0xC7D6\t0x5404\n0xC7D7\t0x5411\n0xC7D8\t0x540D\n0xC7D9\t0x5408\n0xC7DA\t0x5403\n0xC7DB\t0x540E\n0xC7DC\t0x5406\n0xC7DD\t0x5412\n0xC7DE\t0x56E0\n0xC7DF\t0x56DE\n0xC7E0\t0x56DD\n0xC7E1\t0x5733\n0xC7E2\t0x5730\n0xC7E3\t0x5728\n0xC7E4\t0x572D\n0xC7E5\t0x572C\n0xC7E6\t0x572F\n0xC7E7\t0x5729\n0xC7E8\t0x5919\n0xC7E9\t0x591A\n0xC7EA\t0x5937\n0xC7EB\t0x5938\n0xC7EC\t0x5984\n0xC7ED\t0x5978\n0xC7EE\t0x5983\n0xC7EF\t0x597D\n0xC7F0\t0x5979\n0xC7F1\t0x5982\n0xC7F2\t0x5981\n0xC7F3\t0x5B57\n0xC7F4\t0x5B58\n0xC7F5\t0x5B87\n0xC7F6\t0x5B88\n0xC7F7\t0x5B85\n0xC7F8\t0x5B89\n0xC7F9\t0x5BFA\n0xC7FA\t0x5C16\n0xC7FB\t0x5C79\n0xC7FC\t0x5DDE\n0xC7FD\t0x5E06\n0xC7FE\t0x5E76\n0xC8A1\t0x5E74\n0xC8A2\t0x5F0F\n0xC8A3\t0x5F1B\n0xC8A4\t0x5FD9\n0xC8A5\t0x5FD6\n0xC8A6\t0x620E\n0xC8A7\t0x620C\n0xC8A8\t0x620D\n0xC8A9\t0x6210\n0xC8AA\t0x6263\n0xC8AB\t0x625B\n0xC8AC\t0x6258\n0xC8AD\t0x6536\n0xC8AE\t0x65E9\n0xC8AF\t0x65E8\n0xC8B0\t0x65EC\n0xC8B1\t0x65ED\n0xC8B2\t0x66F2\n0xC8B3\t0x66F3\n0xC8B4\t0x6709\n0xC8B5\t0x673D\n0xC8B6\t0x6734\n0xC8B7\t0x6731\n0xC8B8\t0x6735\n0xC8B9\t0x6B21\n0xC8BA\t0x6B64\n0xC8BB\t0x6B7B\n0xC8BC\t0x6C16\n0xC8BD\t0x6C5D\n0xC8BE\t0x6C57\n0xC8BF\t0x6C59\n0xC8C0\t0x6C5F\n0xC8C1\t0x6C60\n0xC8C2\t0x6C50\n0xC8C3\t0x6C55\n0xC8C4\t0x6C61\n0xC8C5\t0x6C5B\n0xC8C6\t0x6C4D\n0xC8C7\t0x6C4E\n0xC8C8\t0x7070\n0xC8C9\t0x725F\n0xC8CA\t0x725D\n0xC8CB\t0x767E\n0xC8CC\t0x7AF9\n0xC8CD\t0x7C73\n0xC8CE\t0x7CF8\n0xC8CF\t0x7F36\n0xC8D0\t0x7F8A\n0xC8D1\t0x7FBD\n0xC8D2\t0x8001\n0xC8D3\t0x8003\n0xC8D4\t0x800C\n0xC8D5\t0x8012\n0xC8D6\t0x8033\n0xC8D7\t0x807F\n0xC8D8\t0x8089\n0xC8D9\t0x808B\n0xC8DA\t0x808C\n0xC8DB\t0x81E3\n0xC8DC\t0x81EA\n0xC8DD\t0x81F3\n0xC8DE\t0x81FC\n0xC8DF\t0x820C\n0xC8E0\t0x821B\n0xC8E1\t0x821F\n0xC8E2\t0x826E\n0xC8E3\t0x8272\n0xC8E4\t0x827E\n0xC8E5\t0x866B\n0xC8E6\t0x8840\n0xC8E7\t0x884C\n0xC8E8\t0x8863\n0xC8E9\t0x897F\n0xC8EA\t0x9621\n0xC8EB\t0x4E32\n0xC8EC\t0x4EA8\n0xC8ED\t0x4F4D\n0xC8EE\t0x4F4F\n0xC8EF\t0x4F47\n0xC8F0\t0x4F57\n0xC8F1\t0x4F5E\n0xC8F2\t0x4F34\n0xC8F3\t0x4F5B\n0xC8F4\t0x4F55\n0xC8F5\t0x4F30\n0xC8F6\t0x4F50\n0xC8F7\t0x4F51\n0xC8F8\t0x4F3D\n0xC8F9\t0x4F3A\n0xC8FA\t0x4F38\n0xC8FB\t0x4F43\n0xC8FC\t0x4F54\n0xC8FD\t0x4F3C\n0xC8FE\t0x4F46\n0xC9A1\t0x4F63\n0xC9A2\t0x4F5C\n0xC9A3\t0x4F60\n0xC9A4\t0x4F2F\n0xC9A5\t0x4F4E\n0xC9A6\t0x4F36\n0xC9A7\t0x4F59\n0xC9A8\t0x4F5D\n0xC9A9\t0x4F48\n0xC9AA\t0x4F5A\n0xC9AB\t0x514C\n0xC9AC\t0x514B\n0xC9AD\t0x514D\n0xC9AE\t0x5175\n0xC9AF\t0x51B6\n0xC9B0\t0x51B7\n0xC9B1\t0x5225\n0xC9B2\t0x5224\n0xC9B3\t0x5229\n0xC9B4\t0x522A\n0xC9B5\t0x5228\n0xC9B6\t0x52AB\n0xC9B7\t0x52A9\n0xC9B8\t0x52AA\n0xC9B9\t0x52AC\n0xC9BA\t0x5323\n0xC9BB\t0x5373\n0xC9BC\t0x5375\n0xC9BD\t0x541D\n0xC9BE\t0x542D\n0xC9BF\t0x541E\n0xC9C0\t0x543E\n0xC9C1\t0x5426\n0xC9C2\t0x544E\n0xC9C3\t0x5427\n0xC9C4\t0x5446\n0xC9C5\t0x5443\n0xC9C6\t0x5433\n0xC9C7\t0x5448\n0xC9C8\t0x5442\n0xC9C9\t0x541B\n0xC9CA\t0x5429\n0xC9CB\t0x544A\n0xC9CC\t0x5439\n0xC9CD\t0x543B\n0xC9CE\t0x5438\n0xC9CF\t0x542E\n0xC9D0\t0x5435\n0xC9D1\t0x5436\n0xC9D2\t0x5420\n0xC9D3\t0x543C\n0xC9D4\t0x5440\n0xC9D5\t0x5431\n0xC9D6\t0x542B\n0xC9D7\t0x541F\n0xC9D8\t0x542C\n0xC9D9\t0x56EA\n0xC9DA\t0x56F0\n0xC9DB\t0x56E4\n0xC9DC\t0x56EB\n0xC9DD\t0x574A\n0xC9DE\t0x5751\n0xC9DF\t0x5740\n0xC9E0\t0x574D\n0xC9E1\t0x5747\n0xC9E2\t0x574E\n0xC9E3\t0x573E\n0xC9E4\t0x5750\n0xC9E5\t0x574F\n0xC9E6\t0x573B\n0xC9E7\t0x58EF\n0xC9E8\t0x593E\n0xC9E9\t0x599D\n0xC9EA\t0x5992\n0xC9EB\t0x59A8\n0xC9EC\t0x599E\n0xC9ED\t0x59A3\n0xC9EE\t0x5999\n0xC9EF\t0x5996\n0xC9F0\t0x598D\n0xC9F1\t0x59A4\n0xC9F2\t0x5993\n0xC9F3\t0x598A\n0xC9F4\t0x59A5\n0xC9F5\t0x5B5D\n0xC9F6\t0x5B5C\n0xC9F7\t0x5B5A\n0xC9F8\t0x5B5B\n0xC9F9\t0x5B8C\n0xC9FA\t0x5B8B\n0xC9FB\t0x5B8F\n0xC9FC\t0x5C2C\n0xC9FD\t0x5C40\n0xC9FE\t0x5C41\n0xCAA1\t0x5C3F\n0xCAA2\t0x5C3E\n0xCAA3\t0x5C90\n0xCAA4\t0x5C91\n0xCAA5\t0x5C94\n0xCAA6\t0x5C8C\n0xCAA7\t0x5DEB\n0xCAA8\t0x5E0C\n0xCAA9\t0x5E8F\n0xCAAA\t0x5E87\n0xCAAB\t0x5E8A\n0xCAAC\t0x5EF7\n0xCAAD\t0x5F04\n0xCAAE\t0x5F1F\n0xCAAF\t0x5F64\n0xCAB0\t0x5F62\n0xCAB1\t0x5F77\n0xCAB2\t0x5F79\n0xCAB3\t0x5FD8\n0xCAB4\t0x5FCC\n0xCAB5\t0x5FD7\n0xCAB6\t0x5FCD\n0xCAB7\t0x5FF1\n0xCAB8\t0x5FEB\n0xCAB9\t0x5FF8\n0xCABA\t0x5FEA\n0xCABB\t0x6212\n0xCABC\t0x6211\n0xCABD\t0x6284\n0xCABE\t0x6297\n0xCABF\t0x6296\n0xCAC0\t0x6280\n0xCAC1\t0x6276\n0xCAC2\t0x6289\n0xCAC3\t0x626D\n0xCAC4\t0x628A\n0xCAC5\t0x627C\n0xCAC6\t0x627E\n0xCAC7\t0x6279\n0xCAC8\t0x6273\n0xCAC9\t0x6292\n0xCACA\t0x626F\n0xCACB\t0x6298\n0xCACC\t0x626E\n0xCACD\t0x6295\n0xCACE\t0x6293\n0xCACF\t0x6291\n0xCAD0\t0x6286\n0xCAD1\t0x6539\n0xCAD2\t0x653B\n0xCAD3\t0x6538\n0xCAD4\t0x65F1\n0xCAD5\t0x66F4\n0xCAD6\t0x675F\n0xCAD7\t0x674E\n0xCAD8\t0x674F\n0xCAD9\t0x6750\n0xCADA\t0x6751\n0xCADB\t0x675C\n0xCADC\t0x6756\n0xCADD\t0x675E\n0xCADE\t0x6749\n0xCADF\t0x6746\n0xCAE0\t0x6760\n0xCAE1\t0x6753\n0xCAE2\t0x6757\n0xCAE3\t0x6B65\n0xCAE4\t0x6BCF\n0xCAE5\t0x6C42\n0xCAE6\t0x6C5E\n0xCAE7\t0x6C99\n0xCAE8\t0x6C81\n0xCAE9\t0x6C88\n0xCAEA\t0x6C89\n0xCAEB\t0x6C85\n0xCAEC\t0x6C9B\n0xCAED\t0x6C6A\n0xCAEE\t0x6C7A\n0xCAEF\t0x6C90\n0xCAF0\t0x6C70\n0xCAF1\t0x6C8C\n0xCAF2\t0x6C68\n0xCAF3\t0x6C96\n0xCAF4\t0x6C92\n0xCAF5\t0x6C7D\n0xCAF6\t0x6C83\n0xCAF7\t0x6C72\n0xCAF8\t0x6C7E\n0xCAF9\t0x6C74\n0xCAFA\t0x6C86\n0xCAFB\t0x6C76\n0xCAFC\t0x6C8D\n0xCAFD\t0x6C94\n0xCAFE\t0x6C98\n0xCBA1\t0x6C82\n0xCBA2\t0x7076\n0xCBA3\t0x707C\n0xCBA4\t0x707D\n0xCBA5\t0x7078\n0xCBA6\t0x7262\n0xCBA7\t0x7261\n0xCBA8\t0x7260\n0xCBA9\t0x72C4\n0xCBAA\t0x72C2\n0xCBAB\t0x7396\n0xCBAC\t0x752C\n0xCBAD\t0x752B\n0xCBAE\t0x7537\n0xCBAF\t0x7538\n0xCBB0\t0x7682\n0xCBB1\t0x76EF\n0xCBB2\t0x77E3\n0xCBB3\t0x79C1\n0xCBB4\t0x79C0\n0xCBB5\t0x79BF\n0xCBB6\t0x7A76\n0xCBB7\t0x7CFB\n0xCBB8\t0x7F55\n0xCBB9\t0x8096\n0xCBBA\t0x8093\n0xCBBB\t0x809D\n0xCBBC\t0x8098\n0xCBBD\t0x809B\n0xCBBE\t0x809A\n0xCBBF\t0x80B2\n0xCBC0\t0x826F\n0xCBC1\t0x8292\n0xCBC2\t0x828B\n0xCBC3\t0x828D\n0xCBC4\t0x898B\n0xCBC5\t0x89D2\n0xCBC6\t0x8A00\n0xCBC7\t0x8C37\n0xCBC8\t0x8C46\n0xCBC9\t0x8C55\n0xCBCA\t0x8C9D\n0xCBCB\t0x8D64\n0xCBCC\t0x8D70\n0xCBCD\t0x8DB3\n0xCBCE\t0x8EAB\n0xCBCF\t0x8ECA\n0xCBD0\t0x8F9B\n0xCBD1\t0x8FB0\n0xCBD2\t0x8FC2\n0xCBD3\t0x8FC6\n0xCBD4\t0x8FC5\n0xCBD5\t0x8FC4\n0xCBD6\t0x5DE1\n0xCBD7\t0x9091\n0xCBD8\t0x90A2\n0xCBD9\t0x90AA\n0xCBDA\t0x90A6\n0xCBDB\t0x90A3\n0xCBDC\t0x9149\n0xCBDD\t0x91C6\n0xCBDE\t0x91CC\n0xCBDF\t0x9632\n0xCBE0\t0x962E\n0xCBE1\t0x9631\n0xCBE2\t0x962A\n0xCBE3\t0x962C\n0xCBE4\t0x4E26\n0xCBE5\t0x4E56\n0xCBE6\t0x4E73\n0xCBE7\t0x4E8B\n0xCBE8\t0x4E9B\n0xCBE9\t0x4E9E\n0xCBEA\t0x4EAB\n0xCBEB\t0x4EAC\n0xCBEC\t0x4F6F\n0xCBED\t0x4F9D\n0xCBEE\t0x4F8D\n0xCBEF\t0x4F73\n0xCBF0\t0x4F7F\n0xCBF1\t0x4F6C\n0xCBF2\t0x4F9B\n0xCBF3\t0x4F8B\n0xCBF4\t0x4F86\n0xCBF5\t0x4F83\n0xCBF6\t0x4F70\n0xCBF7\t0x4F75\n0xCBF8\t0x4F88\n0xCBF9\t0x4F69\n0xCBFA\t0x4F7B\n0xCBFB\t0x4F96\n0xCBFC\t0x4F7E\n0xCBFD\t0x4F8F\n0xCBFE\t0x4F91\n0xCCA1\t0x4F7A\n0xCCA2\t0x5154\n0xCCA3\t0x5152\n0xCCA4\t0x5155\n0xCCA5\t0x5169\n0xCCA6\t0x5177\n0xCCA7\t0x5176\n0xCCA8\t0x5178\n0xCCA9\t0x51BD\n0xCCAA\t0x51FD\n0xCCAB\t0x523B\n0xCCAC\t0x5238\n0xCCAD\t0x5237\n0xCCAE\t0x523A\n0xCCAF\t0x5230\n0xCCB0\t0x522E\n0xCCB1\t0x5236\n0xCCB2\t0x5241\n0xCCB3\t0x52BE\n0xCCB4\t0x52BB\n0xCCB5\t0x5352\n0xCCB6\t0x5354\n0xCCB7\t0x5353\n0xCCB8\t0x5351\n0xCCB9\t0x5366\n0xCCBA\t0x5377\n0xCCBB\t0x5378\n0xCCBC\t0x5379\n0xCCBD\t0x53D6\n0xCCBE\t0x53D4\n0xCCBF\t0x53D7\n0xCCC0\t0x5473\n0xCCC1\t0x5475\n0xCCC2\t0x5496\n0xCCC3\t0x5478\n0xCCC4\t0x5495\n0xCCC5\t0x5480\n0xCCC6\t0x547B\n0xCCC7\t0x5477\n0xCCC8\t0x5484\n0xCCC9\t0x5492\n0xCCCA\t0x5486\n0xCCCB\t0x547C\n0xCCCC\t0x5490\n0xCCCD\t0x5471\n0xCCCE\t0x5476\n0xCCCF\t0x548C\n0xCCD0\t0x549A\n0xCCD1\t0x5462\n0xCCD2\t0x5468\n0xCCD3\t0x548B\n0xCCD4\t0x547D\n0xCCD5\t0x548E\n0xCCD6\t0x56FA\n0xCCD7\t0x5783\n0xCCD8\t0x5777\n0xCCD9\t0x576A\n0xCCDA\t0x5769\n0xCCDB\t0x5761\n0xCCDC\t0x5766\n0xCCDD\t0x5764\n0xCCDE\t0x577C\n0xCCDF\t0x591C\n0xCCE0\t0x5949\n0xCCE1\t0x5947\n0xCCE2\t0x5948\n0xCCE3\t0x5944\n0xCCE4\t0x5954\n0xCCE5\t0x59BE\n0xCCE6\t0x59BB\n0xCCE7\t0x59D4\n0xCCE8\t0x59B9\n0xCCE9\t0x59AE\n0xCCEA\t0x59D1\n0xCCEB\t0x59C6\n0xCCEC\t0x59D0\n0xCCED\t0x59CD\n0xCCEE\t0x59CB\n0xCCEF\t0x59D3\n0xCCF0\t0x59CA\n0xCCF1\t0x59AF\n0xCCF2\t0x59B3\n0xCCF3\t0x59D2\n0xCCF4\t0x59C5\n0xCCF5\t0x5B5F\n0xCCF6\t0x5B64\n0xCCF7\t0x5B63\n0xCCF8\t0x5B97\n0xCCF9\t0x5B9A\n0xCCFA\t0x5B98\n0xCCFB\t0x5B9C\n0xCCFC\t0x5B99\n0xCCFD\t0x5B9B\n0xCCFE\t0x5C1A\n0xCDA1\t0x5C48\n0xCDA2\t0x5C45\n0xCDA3\t0x5C46\n0xCDA4\t0x5CB7\n0xCDA5\t0x5CA1\n0xCDA6\t0x5CB8\n0xCDA7\t0x5CA9\n0xCDA8\t0x5CAB\n0xCDA9\t0x5CB1\n0xCDAA\t0x5CB3\n0xCDAB\t0x5E18\n0xCDAC\t0x5E1A\n0xCDAD\t0x5E16\n0xCDAE\t0x5E15\n0xCDAF\t0x5E1B\n0xCDB0\t0x5E11\n0xCDB1\t0x5E78\n0xCDB2\t0x5E9A\n0xCDB3\t0x5E97\n0xCDB4\t0x5E9C\n0xCDB5\t0x5E95\n0xCDB6\t0x5E96\n0xCDB7\t0x5EF6\n0xCDB8\t0x5F26\n0xCDB9\t0x5F27\n0xCDBA\t0x5F29\n0xCDBB\t0x5F80\n0xCDBC\t0x5F81\n0xCDBD\t0x5F7F\n0xCDBE\t0x5F7C\n0xCDBF\t0x5FDD\n0xCDC0\t0x5FE0\n0xCDC1\t0x5FFD\n0xCDC2\t0x5FF5\n0xCDC3\t0x5FFF\n0xCDC4\t0x600F\n0xCDC5\t0x6014\n0xCDC6\t0x602F\n0xCDC7\t0x6035\n0xCDC8\t0x6016\n0xCDC9\t0x602A\n0xCDCA\t0x6015\n0xCDCB\t0x6021\n0xCDCC\t0x6027\n0xCDCD\t0x6029\n0xCDCE\t0x602B\n0xCDCF\t0x601B\n0xCDD0\t0x6216\n0xCDD1\t0x6215\n0xCDD2\t0x623F\n0xCDD3\t0x623E\n0xCDD4\t0x6240\n0xCDD5\t0x627F\n0xCDD6\t0x62C9\n0xCDD7\t0x62CC\n0xCDD8\t0x62C4\n0xCDD9\t0x62BF\n0xCDDA\t0x62C2\n0xCDDB\t0x62B9\n0xCDDC\t0x62D2\n0xCDDD\t0x62DB\n0xCDDE\t0x62AB\n0xCDDF\t0x62D3\n0xCDE0\t0x62D4\n0xCDE1\t0x62CB\n0xCDE2\t0x62C8\n0xCDE3\t0x62A8\n0xCDE4\t0x62BD\n0xCDE5\t0x62BC\n0xCDE6\t0x62D0\n0xCDE7\t0x62D9\n0xCDE8\t0x62C7\n0xCDE9\t0x62CD\n0xCDEA\t0x62B5\n0xCDEB\t0x62DA\n0xCDEC\t0x62B1\n0xCDED\t0x62D8\n0xCDEE\t0x62D6\n0xCDEF\t0x62D7\n0xCDF0\t0x62C6\n0xCDF1\t0x62AC\n0xCDF2\t0x62CE\n0xCDF3\t0x653E\n0xCDF4\t0x65A7\n0xCDF5\t0x65BC\n0xCDF6\t0x65FA\n0xCDF7\t0x6614\n0xCDF8\t0x6613\n0xCDF9\t0x660C\n0xCDFA\t0x6606\n0xCDFB\t0x6602\n0xCDFC\t0x660E\n0xCDFD\t0x6600\n0xCDFE\t0x660F\n0xCEA1\t0x6615\n0xCEA2\t0x660A\n0xCEA3\t0x6607\n0xCEA4\t0x670D\n0xCEA5\t0x670B\n0xCEA6\t0x676D\n0xCEA7\t0x678B\n0xCEA8\t0x6795\n0xCEA9\t0x6771\n0xCEAA\t0x679C\n0xCEAB\t0x6773\n0xCEAC\t0x6777\n0xCEAD\t0x6787\n0xCEAE\t0x679D\n0xCEAF\t0x6797\n0xCEB0\t0x676F\n0xCEB1\t0x6770\n0xCEB2\t0x677F\n0xCEB3\t0x6789\n0xCEB4\t0x677E\n0xCEB5\t0x6790\n0xCEB6\t0x6775\n0xCEB7\t0x679A\n0xCEB8\t0x6793\n0xCEB9\t0x677C\n0xCEBA\t0x676A\n0xCEBB\t0x6772\n0xCEBC\t0x6B23\n0xCEBD\t0x6B66\n0xCEBE\t0x6B67\n0xCEBF\t0x6B7F\n0xCEC0\t0x6C13\n0xCEC1\t0x6C1B\n0xCEC2\t0x6CE3\n0xCEC3\t0x6CE8\n0xCEC4\t0x6CF3\n0xCEC5\t0x6CB1\n0xCEC6\t0x6CCC\n0xCEC7\t0x6CE5\n0xCEC8\t0x6CB3\n0xCEC9\t0x6CBD\n0xCECA\t0x6CBE\n0xCECB\t0x6CBC\n0xCECC\t0x6CE2\n0xCECD\t0x6CAB\n0xCECE\t0x6CD5\n0xCECF\t0x6CD3\n0xCED0\t0x6CB8\n0xCED1\t0x6CC4\n0xCED2\t0x6CB9\n0xCED3\t0x6CC1\n0xCED4\t0x6CAE\n0xCED5\t0x6CD7\n0xCED6\t0x6CC5\n0xCED7\t0x6CF1\n0xCED8\t0x6CBF\n0xCED9\t0x6CBB\n0xCEDA\t0x6CE1\n0xCEDB\t0x6CDB\n0xCEDC\t0x6CCA\n0xCEDD\t0x6CAC\n0xCEDE\t0x6CEF\n0xCEDF\t0x6CDC\n0xCEE0\t0x6CD6\n0xCEE1\t0x6CE0\n0xCEE2\t0x7095\n0xCEE3\t0x708E\n0xCEE4\t0x7092\n0xCEE5\t0x708A\n0xCEE6\t0x7099\n0xCEE7\t0x722C\n0xCEE8\t0x722D\n0xCEE9\t0x7238\n0xCEEA\t0x7248\n0xCEEB\t0x7267\n0xCEEC\t0x7269\n0xCEED\t0x72C0\n0xCEEE\t0x72CE\n0xCEEF\t0x72D9\n0xCEF0\t0x72D7\n0xCEF1\t0x72D0\n0xCEF2\t0x73A9\n0xCEF3\t0x73A8\n0xCEF4\t0x739F\n0xCEF5\t0x73AB\n0xCEF6\t0x73A5\n0xCEF7\t0x753D\n0xCEF8\t0x759D\n0xCEF9\t0x7599\n0xCEFA\t0x759A\n0xCEFB\t0x7684\n0xCEFC\t0x76C2\n0xCEFD\t0x76F2\n0xCEFE\t0x76F4\n0xCFA1\t0x77E5\n0xCFA2\t0x77FD\n0xCFA3\t0x793E\n0xCFA4\t0x7940\n0xCFA5\t0x7941\n0xCFA6\t0x79C9\n0xCFA7\t0x79C8\n0xCFA8\t0x7A7A\n0xCFA9\t0x7A79\n0xCFAA\t0x7AFA\n0xCFAB\t0x7CFE\n0xCFAC\t0x7F54\n0xCFAD\t0x7F8C\n0xCFAE\t0x7F8B\n0xCFAF\t0x8005\n0xCFB0\t0x80BA\n0xCFB1\t0x80A5\n0xCFB2\t0x80A2\n0xCFB3\t0x80B1\n0xCFB4\t0x80A1\n0xCFB5\t0x80AB\n0xCFB6\t0x80A9\n0xCFB7\t0x80B4\n0xCFB8\t0x80AA\n0xCFB9\t0x80AF\n0xCFBA\t0x81E5\n0xCFBB\t0x81FE\n0xCFBC\t0x820D\n0xCFBD\t0x82B3\n0xCFBE\t0x829D\n0xCFBF\t0x8299\n0xCFC0\t0x82AD\n0xCFC1\t0x82BD\n0xCFC2\t0x829F\n0xCFC3\t0x82B9\n0xCFC4\t0x82B1\n0xCFC5\t0x82AC\n0xCFC6\t0x82A5\n0xCFC7\t0x82AF\n0xCFC8\t0x82B8\n0xCFC9\t0x82A3\n0xCFCA\t0x82B0\n0xCFCB\t0x82BE\n0xCFCC\t0x82B7\n0xCFCD\t0x864E\n0xCFCE\t0x8671\n0xCFCF\t0x521D\n0xCFD0\t0x8868\n0xCFD1\t0x8ECB\n0xCFD2\t0x8FCE\n0xCFD3\t0x8FD4\n0xCFD4\t0x8FD1\n0xCFD5\t0x90B5\n0xCFD6\t0x90B8\n0xCFD7\t0x90B1\n0xCFD8\t0x90B6\n0xCFD9\t0x91C7\n0xCFDA\t0x91D1\n0xCFDB\t0x9577\n0xCFDC\t0x9580\n0xCFDD\t0x961C\n0xCFDE\t0x9640\n0xCFDF\t0x963F\n0xCFE0\t0x963B\n0xCFE1\t0x9644\n0xCFE2\t0x9642\n0xCFE3\t0x96B9\n0xCFE4\t0x96E8\n0xCFE5\t0x9752\n0xCFE6\t0x975E\n0xCFE7\t0x4E9F\n0xCFE8\t0x4EAD\n0xCFE9\t0x4EAE\n0xCFEA\t0x4FE1\n0xCFEB\t0x4FB5\n0xCFEC\t0x4FAF\n0xCFED\t0x4FBF\n0xCFEE\t0x4FE0\n0xCFEF\t0x4FD1\n0xCFF0\t0x4FCF\n0xCFF1\t0x4FDD\n0xCFF2\t0x4FC3\n0xCFF3\t0x4FB6\n0xCFF4\t0x4FD8\n0xCFF5\t0x4FDF\n0xCFF6\t0x4FCA\n0xCFF7\t0x4FD7\n0xCFF8\t0x4FAE\n0xCFF9\t0x4FD0\n0xCFFA\t0x4FC4\n0xCFFB\t0x4FC2\n0xCFFC\t0x4FDA\n0xCFFD\t0x4FCE\n0xCFFE\t0x4FDE\n0xD0A1\t0x4FB7\n0xD0A2\t0x5157\n0xD0A3\t0x5192\n0xD0A4\t0x5191\n0xD0A5\t0x51A0\n0xD0A6\t0x524E\n0xD0A7\t0x5243\n0xD0A8\t0x524A\n0xD0A9\t0x524D\n0xD0AA\t0x524C\n0xD0AB\t0x524B\n0xD0AC\t0x5247\n0xD0AD\t0x52C7\n0xD0AE\t0x52C9\n0xD0AF\t0x52C3\n0xD0B0\t0x52C1\n0xD0B1\t0x530D\n0xD0B2\t0x5357\n0xD0B3\t0x537B\n0xD0B4\t0x539A\n0xD0B5\t0x53DB\n0xD0B6\t0x54AC\n0xD0B7\t0x54C0\n0xD0B8\t0x54A8\n0xD0B9\t0x54CE\n0xD0BA\t0x54C9\n0xD0BB\t0x54B8\n0xD0BC\t0x54A6\n0xD0BD\t0x54B3\n0xD0BE\t0x54C7\n0xD0BF\t0x54C2\n0xD0C0\t0x54BD\n0xD0C1\t0x54AA\n0xD0C2\t0x54C1\n0xD0C3\t0x54C4\n0xD0C4\t0x54C8\n0xD0C5\t0x54AF\n0xD0C6\t0x54AB\n0xD0C7\t0x54B1\n0xD0C8\t0x54BB\n0xD0C9\t0x54A9\n0xD0CA\t0x54A7\n0xD0CB\t0x54BF\n0xD0CC\t0x56FF\n0xD0CD\t0x5782\n0xD0CE\t0x578B\n0xD0CF\t0x57A0\n0xD0D0\t0x57A3\n0xD0D1\t0x57A2\n0xD0D2\t0x57CE\n0xD0D3\t0x57AE\n0xD0D4\t0x5793\n0xD0D5\t0x5955\n0xD0D6\t0x5951\n0xD0D7\t0x594F\n0xD0D8\t0x594E\n0xD0D9\t0x5950\n0xD0DA\t0x59DC\n0xD0DB\t0x59D8\n0xD0DC\t0x59FF\n0xD0DD\t0x59E3\n0xD0DE\t0x59E8\n0xD0DF\t0x5A03\n0xD0E0\t0x59E5\n0xD0E1\t0x59EA\n0xD0E2\t0x59DA\n0xD0E3\t0x59E6\n0xD0E4\t0x5A01\n0xD0E5\t0x59FB\n0xD0E6\t0x5B69\n0xD0E7\t0x5BA3\n0xD0E8\t0x5BA6\n0xD0E9\t0x5BA4\n0xD0EA\t0x5BA2\n0xD0EB\t0x5BA5\n0xD0EC\t0x5C01\n0xD0ED\t0x5C4E\n0xD0EE\t0x5C4F\n0xD0EF\t0x5C4D\n0xD0F0\t0x5C4B\n0xD0F1\t0x5CD9\n0xD0F2\t0x5CD2\n0xD0F3\t0x5DF7\n0xD0F4\t0x5E1D\n0xD0F5\t0x5E25\n0xD0F6\t0x5E1F\n0xD0F7\t0x5E7D\n0xD0F8\t0x5EA0\n0xD0F9\t0x5EA6\n0xD0FA\t0x5EFA\n0xD0FB\t0x5F08\n0xD0FC\t0x5F2D\n0xD0FD\t0x5F65\n0xD0FE\t0x5F88\n0xD1A1\t0x5F85\n0xD1A2\t0x5F8A\n0xD1A3\t0x5F8B\n0xD1A4\t0x5F87\n0xD1A5\t0x5F8C\n0xD1A6\t0x5F89\n0xD1A7\t0x6012\n0xD1A8\t0x601D\n0xD1A9\t0x6020\n0xD1AA\t0x6025\n0xD1AB\t0x600E\n0xD1AC\t0x6028\n0xD1AD\t0x604D\n0xD1AE\t0x6070\n0xD1AF\t0x6068\n0xD1B0\t0x6062\n0xD1B1\t0x6046\n0xD1B2\t0x6043\n0xD1B3\t0x606C\n0xD1B4\t0x606B\n0xD1B5\t0x606A\n0xD1B6\t0x6064\n0xD1B7\t0x6241\n0xD1B8\t0x62DC\n0xD1B9\t0x6316\n0xD1BA\t0x6309\n0xD1BB\t0x62FC\n0xD1BC\t0x62ED\n0xD1BD\t0x6301\n0xD1BE\t0x62EE\n0xD1BF\t0x62FD\n0xD1C0\t0x6307\n0xD1C1\t0x62F1\n0xD1C2\t0x62F7\n0xD1C3\t0x62EF\n0xD1C4\t0x62EC\n0xD1C5\t0x62FE\n0xD1C6\t0x62F4\n0xD1C7\t0x6311\n0xD1C8\t0x6302\n0xD1C9\t0x653F\n0xD1CA\t0x6545\n0xD1CB\t0x65AB\n0xD1CC\t0x65BD\n0xD1CD\t0x65E2\n0xD1CE\t0x6625\n0xD1CF\t0x662D\n0xD1D0\t0x6620\n0xD1D1\t0x6627\n0xD1D2\t0x662F\n0xD1D3\t0x661F\n0xD1D4\t0x6628\n0xD1D5\t0x6631\n0xD1D6\t0x6624\n0xD1D7\t0x66F7\n0xD1D8\t0x67FF\n0xD1D9\t0x67D3\n0xD1DA\t0x67F1\n0xD1DB\t0x67D4\n0xD1DC\t0x67D0\n0xD1DD\t0x67EC\n0xD1DE\t0x67B6\n0xD1DF\t0x67AF\n0xD1E0\t0x67F5\n0xD1E1\t0x67E9\n0xD1E2\t0x67EF\n0xD1E3\t0x67C4\n0xD1E4\t0x67D1\n0xD1E5\t0x67B4\n0xD1E6\t0x67DA\n0xD1E7\t0x67E5\n0xD1E8\t0x67B8\n0xD1E9\t0x67CF\n0xD1EA\t0x67DE\n0xD1EB\t0x67F3\n0xD1EC\t0x67B0\n0xD1ED\t0x67D9\n0xD1EE\t0x67E2\n0xD1EF\t0x67DD\n0xD1F0\t0x67D2\n0xD1F1\t0x6B6A\n0xD1F2\t0x6B83\n0xD1F3\t0x6B86\n0xD1F4\t0x6BB5\n0xD1F5\t0x6BD2\n0xD1F6\t0x6BD7\n0xD1F7\t0x6C1F\n0xD1F8\t0x6CC9\n0xD1F9\t0x6D0B\n0xD1FA\t0x6D32\n0xD1FB\t0x6D2A\n0xD1FC\t0x6D41\n0xD1FD\t0x6D25\n0xD1FE\t0x6D0C\n0xD2A1\t0x6D31\n0xD2A2\t0x6D1E\n0xD2A3\t0x6D17\n0xD2A4\t0x6D3B\n0xD2A5\t0x6D3D\n0xD2A6\t0x6D3E\n0xD2A7\t0x6D36\n0xD2A8\t0x6D1B\n0xD2A9\t0x6CF5\n0xD2AA\t0x6D39\n0xD2AB\t0x6D27\n0xD2AC\t0x6D38\n0xD2AD\t0x6D29\n0xD2AE\t0x6D2E\n0xD2AF\t0x6D35\n0xD2B0\t0x6D0E\n0xD2B1\t0x6D2B\n0xD2B2\t0x70AB\n0xD2B3\t0x70BA\n0xD2B4\t0x70B3\n0xD2B5\t0x70AC\n0xD2B6\t0x70AF\n0xD2B7\t0x70AD\n0xD2B8\t0x70B8\n0xD2B9\t0x70AE\n0xD2BA\t0x70A4\n0xD2BB\t0x7230\n0xD2BC\t0x7272\n0xD2BD\t0x726F\n0xD2BE\t0x7274\n0xD2BF\t0x72E9\n0xD2C0\t0x72E0\n0xD2C1\t0x72E1\n0xD2C2\t0x73B7\n0xD2C3\t0x73CA\n0xD2C4\t0x73BB\n0xD2C5\t0x73B2\n0xD2C6\t0x73CD\n0xD2C7\t0x73C0\n0xD2C8\t0x73B3\n0xD2C9\t0x751A\n0xD2CA\t0x752D\n0xD2CB\t0x754F\n0xD2CC\t0x754C\n0xD2CD\t0x754E\n0xD2CE\t0x754B\n0xD2CF\t0x75AB\n0xD2D0\t0x75A4\n0xD2D1\t0x75A5\n0xD2D2\t0x75A2\n0xD2D3\t0x75A3\n0xD2D4\t0x7678\n0xD2D5\t0x7686\n0xD2D6\t0x7687\n0xD2D7\t0x7688\n0xD2D8\t0x76C8\n0xD2D9\t0x76C6\n0xD2DA\t0x76C3\n0xD2DB\t0x76C5\n0xD2DC\t0x7701\n0xD2DD\t0x76F9\n0xD2DE\t0x76F8\n0xD2DF\t0x7709\n0xD2E0\t0x770B\n0xD2E1\t0x76FE\n0xD2E2\t0x76FC\n0xD2E3\t0x7707\n0xD2E4\t0x77DC\n0xD2E5\t0x7802\n0xD2E6\t0x7814\n0xD2E7\t0x780C\n0xD2E8\t0x780D\n0xD2E9\t0x7946\n0xD2EA\t0x7949\n0xD2EB\t0x7948\n0xD2EC\t0x7947\n0xD2ED\t0x79B9\n0xD2EE\t0x79BA\n0xD2EF\t0x79D1\n0xD2F0\t0x79D2\n0xD2F1\t0x79CB\n0xD2F2\t0x7A7F\n0xD2F3\t0x7A81\n0xD2F4\t0x7AFF\n0xD2F5\t0x7AFD\n0xD2F6\t0x7C7D\n0xD2F7\t0x7D02\n0xD2F8\t0x7D05\n0xD2F9\t0x7D00\n0xD2FA\t0x7D09\n0xD2FB\t0x7D07\n0xD2FC\t0x7D04\n0xD2FD\t0x7D06\n0xD2FE\t0x7F38\n0xD3A1\t0x7F8E\n0xD3A2\t0x7FBF\n0xD3A3\t0x8010\n0xD3A4\t0x800D\n0xD3A5\t0x8011\n0xD3A6\t0x8036\n0xD3A7\t0x80D6\n0xD3A8\t0x80E5\n0xD3A9\t0x80DA\n0xD3AA\t0x80C3\n0xD3AB\t0x80C4\n0xD3AC\t0x80CC\n0xD3AD\t0x80E1\n0xD3AE\t0x80DB\n0xD3AF\t0x80CE\n0xD3B0\t0x80DE\n0xD3B1\t0x80E4\n0xD3B2\t0x80DD\n0xD3B3\t0x81F4\n0xD3B4\t0x8222\n0xD3B5\t0x82E7\n0xD3B6\t0x8303\n0xD3B7\t0x8305\n0xD3B8\t0x82E3\n0xD3B9\t0x82DB\n0xD3BA\t0x82E6\n0xD3BB\t0x8304\n0xD3BC\t0x82E5\n0xD3BD\t0x8302\n0xD3BE\t0x8309\n0xD3BF\t0x82D2\n0xD3C0\t0x82D7\n0xD3C1\t0x82F1\n0xD3C2\t0x8301\n0xD3C3\t0x82DC\n0xD3C4\t0x82D4\n0xD3C5\t0x82D1\n0xD3C6\t0x82DE\n0xD3C7\t0x82D3\n0xD3C8\t0x82DF\n0xD3C9\t0x82EF\n0xD3CA\t0x8306\n0xD3CB\t0x8650\n0xD3CC\t0x8679\n0xD3CD\t0x867B\n0xD3CE\t0x867A\n0xD3CF\t0x884D\n0xD3D0\t0x886B\n0xD3D1\t0x8981\n0xD3D2\t0x89D4\n0xD3D3\t0x8A08\n0xD3D4\t0x8A02\n0xD3D5\t0x8A03\n0xD3D6\t0x8C9E\n0xD3D7\t0x8CA0\n0xD3D8\t0x8D74\n0xD3D9\t0x8D73\n0xD3DA\t0x8DB4\n0xD3DB\t0x8ECD\n0xD3DC\t0x8ECC\n0xD3DD\t0x8FF0\n0xD3DE\t0x8FE6\n0xD3DF\t0x8FE2\n0xD3E0\t0x8FEA\n0xD3E1\t0x8FE5\n0xD3E2\t0x8FED\n0xD3E3\t0x8FEB\n0xD3E4\t0x8FE4\n0xD3E5\t0x8FE8\n0xD3E6\t0x90CA\n0xD3E7\t0x90CE\n0xD3E8\t0x90C1\n0xD3E9\t0x90C3\n0xD3EA\t0x914B\n0xD3EB\t0x914A\n0xD3EC\t0x91CD\n0xD3ED\t0x9582\n0xD3EE\t0x9650\n0xD3EF\t0x964B\n0xD3F0\t0x964C\n0xD3F1\t0x964D\n0xD3F2\t0x9762\n0xD3F3\t0x9769\n0xD3F4\t0x97CB\n0xD3F5\t0x97ED\n0xD3F6\t0x97F3\n0xD3F7\t0x9801\n0xD3F8\t0x98A8\n0xD3F9\t0x98DB\n0xD3FA\t0x98DF\n0xD3FB\t0x9996\n0xD3FC\t0x9999\n0xD3FD\t0x4E58\n0xD3FE\t0x4EB3\n0xD4A1\t0x500C\n0xD4A2\t0x500D\n0xD4A3\t0x5023\n0xD4A4\t0x4FEF\n0xD4A5\t0x5026\n0xD4A6\t0x5025\n0xD4A7\t0x4FF8\n0xD4A8\t0x5029\n0xD4A9\t0x5016\n0xD4AA\t0x5006\n0xD4AB\t0x503C\n0xD4AC\t0x501F\n0xD4AD\t0x501A\n0xD4AE\t0x5012\n0xD4AF\t0x5011\n0xD4B0\t0x4FFA\n0xD4B1\t0x5000\n0xD4B2\t0x5014\n0xD4B3\t0x5028\n0xD4B4\t0x4FF1\n0xD4B5\t0x5021\n0xD4B6\t0x500B\n0xD4B7\t0x5019\n0xD4B8\t0x5018\n0xD4B9\t0x4FF3\n0xD4BA\t0x4FEE\n0xD4BB\t0x502D\n0xD4BC\t0x502A\n0xD4BD\t0x4FFE\n0xD4BE\t0x502B\n0xD4BF\t0x5009\n0xD4C0\t0x517C\n0xD4C1\t0x51A4\n0xD4C2\t0x51A5\n0xD4C3\t0x51A2\n0xD4C4\t0x51CD\n0xD4C5\t0x51CC\n0xD4C6\t0x51C6\n0xD4C7\t0x51CB\n0xD4C8\t0x5256\n0xD4C9\t0x525C\n0xD4CA\t0x5254\n0xD4CB\t0x525B\n0xD4CC\t0x525D\n0xD4CD\t0x532A\n0xD4CE\t0x537F\n0xD4CF\t0x539F\n0xD4D0\t0x539D\n0xD4D1\t0x53DF\n0xD4D2\t0x54E8\n0xD4D3\t0x5510\n0xD4D4\t0x5501\n0xD4D5\t0x5537\n0xD4D6\t0x54FC\n0xD4D7\t0x54E5\n0xD4D8\t0x54F2\n0xD4D9\t0x5506\n0xD4DA\t0x54FA\n0xD4DB\t0x5514\n0xD4DC\t0x54E9\n0xD4DD\t0x54ED\n0xD4DE\t0x54E1\n0xD4DF\t0x5509\n0xD4E0\t0x54EE\n0xD4E1\t0x54EA\n0xD4E2\t0x54E6\n0xD4E3\t0x5527\n0xD4E4\t0x5507\n0xD4E5\t0x54FD\n0xD4E6\t0x550F\n0xD4E7\t0x5703\n0xD4E8\t0x5704\n0xD4E9\t0x57C2\n0xD4EA\t0x57D4\n0xD4EB\t0x57CB\n0xD4EC\t0x57C3\n0xD4ED\t0x5809\n0xD4EE\t0x590F\n0xD4EF\t0x5957\n0xD4F0\t0x5958\n0xD4F1\t0x595A\n0xD4F2\t0x5A11\n0xD4F3\t0x5A18\n0xD4F4\t0x5A1C\n0xD4F5\t0x5A1F\n0xD4F6\t0x5A1B\n0xD4F7\t0x5A13\n0xD4F8\t0x59EC\n0xD4F9\t0x5A20\n0xD4FA\t0x5A23\n0xD4FB\t0x5A29\n0xD4FC\t0x5A25\n0xD4FD\t0x5A0C\n0xD4FE\t0x5A09\n0xD5A1\t0x5B6B\n0xD5A2\t0x5C58\n0xD5A3\t0x5BB0\n0xD5A4\t0x5BB3\n0xD5A5\t0x5BB6\n0xD5A6\t0x5BB4\n0xD5A7\t0x5BAE\n0xD5A8\t0x5BB5\n0xD5A9\t0x5BB9\n0xD5AA\t0x5BB8\n0xD5AB\t0x5C04\n0xD5AC\t0x5C51\n0xD5AD\t0x5C55\n0xD5AE\t0x5C50\n0xD5AF\t0x5CED\n0xD5B0\t0x5CFD\n0xD5B1\t0x5CFB\n0xD5B2\t0x5CEA\n0xD5B3\t0x5CE8\n0xD5B4\t0x5CF0\n0xD5B5\t0x5CF6\n0xD5B6\t0x5D01\n0xD5B7\t0x5CF4\n0xD5B8\t0x5DEE\n0xD5B9\t0x5E2D\n0xD5BA\t0x5E2B\n0xD5BB\t0x5EAB\n0xD5BC\t0x5EAD\n0xD5BD\t0x5EA7\n0xD5BE\t0x5F31\n0xD5BF\t0x5F92\n0xD5C0\t0x5F91\n0xD5C1\t0x5F90\n0xD5C2\t0x6059\n0xD5C3\t0x6063\n0xD5C4\t0x6065\n0xD5C5\t0x6050\n0xD5C6\t0x6055\n0xD5C7\t0x606D\n0xD5C8\t0x6069\n0xD5C9\t0x606F\n0xD5CA\t0x6084\n0xD5CB\t0x609F\n0xD5CC\t0x609A\n0xD5CD\t0x608D\n0xD5CE\t0x6094\n0xD5CF\t0x608C\n0xD5D0\t0x6085\n0xD5D1\t0x6096\n0xD5D2\t0x6247\n0xD5D3\t0x62F3\n0xD5D4\t0x6308\n0xD5D5\t0x62FF\n0xD5D6\t0x634E\n0xD5D7\t0x633E\n0xD5D8\t0x632F\n0xD5D9\t0x6355\n0xD5DA\t0x6342\n0xD5DB\t0x6346\n0xD5DC\t0x634F\n0xD5DD\t0x6349\n0xD5DE\t0x633A\n0xD5DF\t0x6350\n0xD5E0\t0x633D\n0xD5E1\t0x632A\n0xD5E2\t0x632B\n0xD5E3\t0x6328\n0xD5E4\t0x634D\n0xD5E5\t0x634C\n0xD5E6\t0x6548\n0xD5E7\t0x6549\n0xD5E8\t0x6599\n0xD5E9\t0x65C1\n0xD5EA\t0x65C5\n0xD5EB\t0x6642\n0xD5EC\t0x6649\n0xD5ED\t0x664F\n0xD5EE\t0x6643\n0xD5EF\t0x6652\n0xD5F0\t0x664C\n0xD5F1\t0x6645\n0xD5F2\t0x6641\n0xD5F3\t0x66F8\n0xD5F4\t0x6714\n0xD5F5\t0x6715\n0xD5F6\t0x6717\n0xD5F7\t0x6821\n0xD5F8\t0x6838\n0xD5F9\t0x6848\n0xD5FA\t0x6846\n0xD5FB\t0x6853\n0xD5FC\t0x6839\n0xD5FD\t0x6842\n0xD5FE\t0x6854\n0xD6A1\t0x6829\n0xD6A2\t0x68B3\n0xD6A3\t0x6817\n0xD6A4\t0x684C\n0xD6A5\t0x6851\n0xD6A6\t0x683D\n0xD6A7\t0x67F4\n0xD6A8\t0x6850\n0xD6A9\t0x6840\n0xD6AA\t0x683C\n0xD6AB\t0x6843\n0xD6AC\t0x682A\n0xD6AD\t0x6845\n0xD6AE\t0x6813\n0xD6AF\t0x6818\n0xD6B0\t0x6841\n0xD6B1\t0x6B8A\n0xD6B2\t0x6B89\n0xD6B3\t0x6BB7\n0xD6B4\t0x6C23\n0xD6B5\t0x6C27\n0xD6B6\t0x6C28\n0xD6B7\t0x6C26\n0xD6B8\t0x6C24\n0xD6B9\t0x6CF0\n0xD6BA\t0x6D6A\n0xD6BB\t0x6D95\n0xD6BC\t0x6D88\n0xD6BD\t0x6D87\n0xD6BE\t0x6D66\n0xD6BF\t0x6D78\n0xD6C0\t0x6D77\n0xD6C1\t0x6D59\n0xD6C2\t0x6D93\n0xD6C3\t0x6D6C\n0xD6C4\t0x6D89\n0xD6C5\t0x6D6E\n0xD6C6\t0x6D5A\n0xD6C7\t0x6D74\n0xD6C8\t0x6D69\n0xD6C9\t0x6D8C\n0xD6CA\t0x6D8A\n0xD6CB\t0x6D79\n0xD6CC\t0x6D85\n0xD6CD\t0x6D65\n0xD6CE\t0x6D94\n0xD6CF\t0x70CA\n0xD6D0\t0x70D8\n0xD6D1\t0x70E4\n0xD6D2\t0x70D9\n0xD6D3\t0x70C8\n0xD6D4\t0x70CF\n0xD6D5\t0x7239\n0xD6D6\t0x7279\n0xD6D7\t0x72FC\n0xD6D8\t0x72F9\n0xD6D9\t0x72FD\n0xD6DA\t0x72F8\n0xD6DB\t0x72F7\n0xD6DC\t0x7386\n0xD6DD\t0x73ED\n0xD6DE\t0x7409\n0xD6DF\t0x73EE\n0xD6E0\t0x73E0\n0xD6E1\t0x73EA\n0xD6E2\t0x73DE\n0xD6E3\t0x7554\n0xD6E4\t0x755D\n0xD6E5\t0x755C\n0xD6E6\t0x755A\n0xD6E7\t0x7559\n0xD6E8\t0x75BE\n0xD6E9\t0x75C5\n0xD6EA\t0x75C7\n0xD6EB\t0x75B2\n0xD6EC\t0x75B3\n0xD6ED\t0x75BD\n0xD6EE\t0x75BC\n0xD6EF\t0x75B9\n0xD6F0\t0x75C2\n0xD6F1\t0x75B8\n0xD6F2\t0x768B\n0xD6F3\t0x76B0\n0xD6F4\t0x76CA\n0xD6F5\t0x76CD\n0xD6F6\t0x76CE\n0xD6F7\t0x7729\n0xD6F8\t0x771F\n0xD6F9\t0x7720\n0xD6FA\t0x7728\n0xD6FB\t0x77E9\n0xD6FC\t0x7830\n0xD6FD\t0x7827\n0xD6FE\t0x7838\n0xD7A1\t0x781D\n0xD7A2\t0x7834\n0xD7A3\t0x7837\n0xD7A4\t0x7825\n0xD7A5\t0x782D\n0xD7A6\t0x7820\n0xD7A7\t0x781F\n0xD7A8\t0x7832\n0xD7A9\t0x7955\n0xD7AA\t0x7950\n0xD7AB\t0x7960\n0xD7AC\t0x795F\n0xD7AD\t0x7956\n0xD7AE\t0x795E\n0xD7AF\t0x795D\n0xD7B0\t0x7957\n0xD7B1\t0x795A\n0xD7B2\t0x79E4\n0xD7B3\t0x79E3\n0xD7B4\t0x79E7\n0xD7B5\t0x79DF\n0xD7B6\t0x79E6\n0xD7B7\t0x79E9\n0xD7B8\t0x79D8\n0xD7B9\t0x7A84\n0xD7BA\t0x7A88\n0xD7BB\t0x7AD9\n0xD7BC\t0x7B06\n0xD7BD\t0x7B11\n0xD7BE\t0x7C89\n0xD7BF\t0x7D21\n0xD7C0\t0x7D17\n0xD7C1\t0x7D0B\n0xD7C2\t0x7D0A\n0xD7C3\t0x7D20\n0xD7C4\t0x7D22\n0xD7C5\t0x7D14\n0xD7C6\t0x7D10\n0xD7C7\t0x7D15\n0xD7C8\t0x7D1A\n0xD7C9\t0x7D1C\n0xD7CA\t0x7D0D\n0xD7CB\t0x7D19\n0xD7CC\t0x7D1B\n0xD7CD\t0x7F3A\n0xD7CE\t0x7F5F\n0xD7CF\t0x7F94\n0xD7D0\t0x7FC5\n0xD7D1\t0x7FC1\n0xD7D2\t0x8006\n0xD7D3\t0x8004\n0xD7D4\t0x8018\n0xD7D5\t0x8015\n0xD7D6\t0x8019\n0xD7D7\t0x8017\n0xD7D8\t0x803D\n0xD7D9\t0x803F\n0xD7DA\t0x80F1\n0xD7DB\t0x8102\n0xD7DC\t0x80F0\n0xD7DD\t0x8105\n0xD7DE\t0x80ED\n0xD7DF\t0x80F4\n0xD7E0\t0x8106\n0xD7E1\t0x80F8\n0xD7E2\t0x80F3\n0xD7E3\t0x8108\n0xD7E4\t0x80FD\n0xD7E5\t0x810A\n0xD7E6\t0x80FC\n0xD7E7\t0x80EF\n0xD7E8\t0x81ED\n0xD7E9\t0x81EC\n0xD7EA\t0x8200\n0xD7EB\t0x8210\n0xD7EC\t0x822A\n0xD7ED\t0x822B\n0xD7EE\t0x8228\n0xD7EF\t0x822C\n0xD7F0\t0x82BB\n0xD7F1\t0x832B\n0xD7F2\t0x8352\n0xD7F3\t0x8354\n0xD7F4\t0x834A\n0xD7F5\t0x8338\n0xD7F6\t0x8350\n0xD7F7\t0x8349\n0xD7F8\t0x8335\n0xD7F9\t0x8334\n0xD7FA\t0x834F\n0xD7FB\t0x8332\n0xD7FC\t0x8339\n0xD7FD\t0x8336\n0xD7FE\t0x8317\n0xD8A1\t0x8340\n0xD8A2\t0x8331\n0xD8A3\t0x8328\n0xD8A4\t0x8343\n0xD8A5\t0x8654\n0xD8A6\t0x868A\n0xD8A7\t0x86AA\n0xD8A8\t0x8693\n0xD8A9\t0x86A4\n0xD8AA\t0x86A9\n0xD8AB\t0x868C\n0xD8AC\t0x86A3\n0xD8AD\t0x869C\n0xD8AE\t0x8870\n0xD8AF\t0x8877\n0xD8B0\t0x8881\n0xD8B1\t0x8882\n0xD8B2\t0x887D\n0xD8B3\t0x8879\n0xD8B4\t0x8A18\n0xD8B5\t0x8A10\n0xD8B6\t0x8A0E\n0xD8B7\t0x8A0C\n0xD8B8\t0x8A15\n0xD8B9\t0x8A0A\n0xD8BA\t0x8A17\n0xD8BB\t0x8A13\n0xD8BC\t0x8A16\n0xD8BD\t0x8A0F\n0xD8BE\t0x8A11\n0xD8BF\t0x8C48\n0xD8C0\t0x8C7A\n0xD8C1\t0x8C79\n0xD8C2\t0x8CA1\n0xD8C3\t0x8CA2\n0xD8C4\t0x8D77\n0xD8C5\t0x8EAC\n0xD8C6\t0x8ED2\n0xD8C7\t0x8ED4\n0xD8C8\t0x8ECF\n0xD8C9\t0x8FB1\n0xD8CA\t0x9001\n0xD8CB\t0x9006\n0xD8CC\t0x8FF7\n0xD8CD\t0x9000\n0xD8CE\t0x8FFA\n0xD8CF\t0x8FF4\n0xD8D0\t0x9003\n0xD8D1\t0x8FFD\n0xD8D2\t0x9005\n0xD8D3\t0x8FF8\n0xD8D4\t0x9095\n0xD8D5\t0x90E1\n0xD8D6\t0x90DD\n0xD8D7\t0x90E2\n0xD8D8\t0x9152\n0xD8D9\t0x914D\n0xD8DA\t0x914C\n0xD8DB\t0x91D8\n0xD8DC\t0x91DD\n0xD8DD\t0x91D7\n0xD8DE\t0x91DC\n0xD8DF\t0x91D9\n0xD8E0\t0x9583\n0xD8E1\t0x9662\n0xD8E2\t0x9663\n0xD8E3\t0x9661\n0xD8E4\t0x965B\n0xD8E5\t0x965D\n0xD8E6\t0x9664\n0xD8E7\t0x9658\n0xD8E8\t0x965E\n0xD8E9\t0x96BB\n0xD8EA\t0x98E2\n0xD8EB\t0x99AC\n0xD8EC\t0x9AA8\n0xD8ED\t0x9AD8\n0xD8EE\t0x9B25\n0xD8EF\t0x9B32\n0xD8F0\t0x9B3C\n0xD8F1\t0x4E7E\n0xD8F2\t0x507A\n0xD8F3\t0x507D\n0xD8F4\t0x505C\n0xD8F5\t0x5047\n0xD8F6\t0x5043\n0xD8F7\t0x504C\n0xD8F8\t0x505A\n0xD8F9\t0x5049\n0xD8FA\t0x5065\n0xD8FB\t0x5076\n0xD8FC\t0x504E\n0xD8FD\t0x5055\n0xD8FE\t0x5075\n0xD9A1\t0x5074\n0xD9A2\t0x5077\n0xD9A3\t0x504F\n0xD9A4\t0x500F\n0xD9A5\t0x506F\n0xD9A6\t0x506D\n0xD9A7\t0x515C\n0xD9A8\t0x5195\n0xD9A9\t0x51F0\n0xD9AA\t0x526A\n0xD9AB\t0x526F\n0xD9AC\t0x52D2\n0xD9AD\t0x52D9\n0xD9AE\t0x52D8\n0xD9AF\t0x52D5\n0xD9B0\t0x5310\n0xD9B1\t0x530F\n0xD9B2\t0x5319\n0xD9B3\t0x533F\n0xD9B4\t0x5340\n0xD9B5\t0x533E\n0xD9B6\t0x53C3\n0xD9B7\t0x66FC\n0xD9B8\t0x5546\n0xD9B9\t0x556A\n0xD9BA\t0x5566\n0xD9BB\t0x5544\n0xD9BC\t0x555E\n0xD9BD\t0x5561\n0xD9BE\t0x5543\n0xD9BF\t0x554A\n0xD9C0\t0x5531\n0xD9C1\t0x5556\n0xD9C2\t0x554F\n0xD9C3\t0x5555\n0xD9C4\t0x552F\n0xD9C5\t0x5564\n0xD9C6\t0x5538\n0xD9C7\t0x552E\n0xD9C8\t0x555C\n0xD9C9\t0x552C\n0xD9CA\t0x5563\n0xD9CB\t0x5533\n0xD9CC\t0x5541\n0xD9CD\t0x5557\n0xD9CE\t0x5708\n0xD9CF\t0x570B\n0xD9D0\t0x5709\n0xD9D1\t0x57DF\n0xD9D2\t0x5805\n0xD9D3\t0x580A\n0xD9D4\t0x5806\n0xD9D5\t0x57E0\n0xD9D6\t0x57E4\n0xD9D7\t0x57FA\n0xD9D8\t0x5802\n0xD9D9\t0x5835\n0xD9DA\t0x57F7\n0xD9DB\t0x57F9\n0xD9DC\t0x5920\n0xD9DD\t0x5962\n0xD9DE\t0x5A36\n0xD9DF\t0x5A41\n0xD9E0\t0x5A49\n0xD9E1\t0x5A66\n0xD9E2\t0x5A6A\n0xD9E3\t0x5A40\n0xD9E4\t0x5A3C\n0xD9E5\t0x5A62\n0xD9E6\t0x5A5A\n0xD9E7\t0x5A46\n0xD9E8\t0x5A4A\n0xD9E9\t0x5B70\n0xD9EA\t0x5BC7\n0xD9EB\t0x5BC5\n0xD9EC\t0x5BC4\n0xD9ED\t0x5BC2\n0xD9EE\t0x5BBF\n0xD9EF\t0x5BC6\n0xD9F0\t0x5C09\n0xD9F1\t0x5C08\n0xD9F2\t0x5C07\n0xD9F3\t0x5C60\n0xD9F4\t0x5C5C\n0xD9F5\t0x5C5D\n0xD9F6\t0x5D07\n0xD9F7\t0x5D06\n0xD9F8\t0x5D0E\n0xD9F9\t0x5D1B\n0xD9FA\t0x5D16\n0xD9FB\t0x5D22\n0xD9FC\t0x5D11\n0xD9FD\t0x5D29\n0xD9FE\t0x5D14\n0xDAA1\t0x5D19\n0xDAA2\t0x5D24\n0xDAA3\t0x5D27\n0xDAA4\t0x5D17\n0xDAA5\t0x5DE2\n0xDAA6\t0x5E38\n0xDAA7\t0x5E36\n0xDAA8\t0x5E33\n0xDAA9\t0x5E37\n0xDAAA\t0x5EB7\n0xDAAB\t0x5EB8\n0xDAAC\t0x5EB6\n0xDAAD\t0x5EB5\n0xDAAE\t0x5EBE\n0xDAAF\t0x5F35\n0xDAB0\t0x5F37\n0xDAB1\t0x5F57\n0xDAB2\t0x5F6C\n0xDAB3\t0x5F69\n0xDAB4\t0x5F6B\n0xDAB5\t0x5F97\n0xDAB6\t0x5F99\n0xDAB7\t0x5F9E\n0xDAB8\t0x5F98\n0xDAB9\t0x5FA1\n0xDABA\t0x5FA0\n0xDABB\t0x5F9C\n0xDABC\t0x607F\n0xDABD\t0x60A3\n0xDABE\t0x6089\n0xDABF\t0x60A0\n0xDAC0\t0x60A8\n0xDAC1\t0x60CB\n0xDAC2\t0x60B4\n0xDAC3\t0x60E6\n0xDAC4\t0x60BD\n0xDAC5\t0x60C5\n0xDAC6\t0x60BB\n0xDAC7\t0x60B5\n0xDAC8\t0x60DC\n0xDAC9\t0x60BC\n0xDACA\t0x60D8\n0xDACB\t0x60D5\n0xDACC\t0x60C6\n0xDACD\t0x60DF\n0xDACE\t0x60B8\n0xDACF\t0x60DA\n0xDAD0\t0x60C7\n0xDAD1\t0x621A\n0xDAD2\t0x621B\n0xDAD3\t0x6248\n0xDAD4\t0x63A0\n0xDAD5\t0x63A7\n0xDAD6\t0x6372\n0xDAD7\t0x6396\n0xDAD8\t0x63A2\n0xDAD9\t0x63A5\n0xDADA\t0x6377\n0xDADB\t0x6367\n0xDADC\t0x6398\n0xDADD\t0x63AA\n0xDADE\t0x6371\n0xDADF\t0x63A9\n0xDAE0\t0x6389\n0xDAE1\t0x6383\n0xDAE2\t0x639B\n0xDAE3\t0x636B\n0xDAE4\t0x63A8\n0xDAE5\t0x6384\n0xDAE6\t0x6388\n0xDAE7\t0x6399\n0xDAE8\t0x63A1\n0xDAE9\t0x63AC\n0xDAEA\t0x6392\n0xDAEB\t0x638F\n0xDAEC\t0x6380\n0xDAED\t0x637B\n0xDAEE\t0x6369\n0xDAEF\t0x6368\n0xDAF0\t0x637A\n0xDAF1\t0x655D\n0xDAF2\t0x6556\n0xDAF3\t0x6551\n0xDAF4\t0x6559\n0xDAF5\t0x6557\n0xDAF6\t0x555F\n0xDAF7\t0x654F\n0xDAF8\t0x6558\n0xDAF9\t0x6555\n0xDAFA\t0x6554\n0xDAFB\t0x659C\n0xDAFC\t0x659B\n0xDAFD\t0x65AC\n0xDAFE\t0x65CF\n0xDBA1\t0x65CB\n0xDBA2\t0x65CC\n0xDBA3\t0x65CE\n0xDBA4\t0x665D\n0xDBA5\t0x665A\n0xDBA6\t0x6664\n0xDBA7\t0x6668\n0xDBA8\t0x6666\n0xDBA9\t0x665E\n0xDBAA\t0x66F9\n0xDBAB\t0x52D7\n0xDBAC\t0x671B\n0xDBAD\t0x6881\n0xDBAE\t0x68AF\n0xDBAF\t0x68A2\n0xDBB0\t0x6893\n0xDBB1\t0x68B5\n0xDBB2\t0x687F\n0xDBB3\t0x6876\n0xDBB4\t0x68B1\n0xDBB5\t0x68A7\n0xDBB6\t0x6897\n0xDBB7\t0x68B0\n0xDBB8\t0x6883\n0xDBB9\t0x68C4\n0xDBBA\t0x68AD\n0xDBBB\t0x6886\n0xDBBC\t0x6885\n0xDBBD\t0x6894\n0xDBBE\t0x689D\n0xDBBF\t0x68A8\n0xDBC0\t0x689F\n0xDBC1\t0x68A1\n0xDBC2\t0x6882\n0xDBC3\t0x6B32\n0xDBC4\t0x6BBA\n0xDBC5\t0x6BEB\n0xDBC6\t0x6BEC\n0xDBC7\t0x6C2B\n0xDBC8\t0x6D8E\n0xDBC9\t0x6DBC\n0xDBCA\t0x6DF3\n0xDBCB\t0x6DD9\n0xDBCC\t0x6DB2\n0xDBCD\t0x6DE1\n0xDBCE\t0x6DCC\n0xDBCF\t0x6DE4\n0xDBD0\t0x6DFB\n0xDBD1\t0x6DFA\n0xDBD2\t0x6E05\n0xDBD3\t0x6DC7\n0xDBD4\t0x6DCB\n0xDBD5\t0x6DAF\n0xDBD6\t0x6DD1\n0xDBD7\t0x6DAE\n0xDBD8\t0x6DDE\n0xDBD9\t0x6DF9\n0xDBDA\t0x6DB8\n0xDBDB\t0x6DF7\n0xDBDC\t0x6DF5\n0xDBDD\t0x6DC5\n0xDBDE\t0x6DD2\n0xDBDF\t0x6E1A\n0xDBE0\t0x6DB5\n0xDBE1\t0x6DDA\n0xDBE2\t0x6DEB\n0xDBE3\t0x6DD8\n0xDBE4\t0x6DEA\n0xDBE5\t0x6DF1\n0xDBE6\t0x6DEE\n0xDBE7\t0x6DE8\n0xDBE8\t0x6DC6\n0xDBE9\t0x6DC4\n0xDBEA\t0x6DAA\n0xDBEB\t0x6DEC\n0xDBEC\t0x6DBF\n0xDBED\t0x6DE6\n0xDBEE\t0x70F9\n0xDBEF\t0x7109\n0xDBF0\t0x710A\n0xDBF1\t0x70FD\n0xDBF2\t0x70EF\n0xDBF3\t0x723D\n0xDBF4\t0x727D\n0xDBF5\t0x7281\n0xDBF6\t0x731C\n0xDBF7\t0x731B\n0xDBF8\t0x7316\n0xDBF9\t0x7313\n0xDBFA\t0x7319\n0xDBFB\t0x7387\n0xDBFC\t0x7405\n0xDBFD\t0x740A\n0xDBFE\t0x7403\n0xDCA1\t0x7406\n0xDCA2\t0x73FE\n0xDCA3\t0x740D\n0xDCA4\t0x74E0\n0xDCA5\t0x74F6\n0xDCA6\t0x74F7\n0xDCA7\t0x751C\n0xDCA8\t0x7522\n0xDCA9\t0x7565\n0xDCAA\t0x7566\n0xDCAB\t0x7562\n0xDCAC\t0x7570\n0xDCAD\t0x758F\n0xDCAE\t0x75D4\n0xDCAF\t0x75D5\n0xDCB0\t0x75B5\n0xDCB1\t0x75CA\n0xDCB2\t0x75CD\n0xDCB3\t0x768E\n0xDCB4\t0x76D4\n0xDCB5\t0x76D2\n0xDCB6\t0x76DB\n0xDCB7\t0x7737\n0xDCB8\t0x773E\n0xDCB9\t0x773C\n0xDCBA\t0x7736\n0xDCBB\t0x7738\n0xDCBC\t0x773A\n0xDCBD\t0x786B\n0xDCBE\t0x7843\n0xDCBF\t0x784E\n0xDCC0\t0x7965\n0xDCC1\t0x7968\n0xDCC2\t0x796D\n0xDCC3\t0x79FB\n0xDCC4\t0x7A92\n0xDCC5\t0x7A95\n0xDCC6\t0x7B20\n0xDCC7\t0x7B28\n0xDCC8\t0x7B1B\n0xDCC9\t0x7B2C\n0xDCCA\t0x7B26\n0xDCCB\t0x7B19\n0xDCCC\t0x7B1E\n0xDCCD\t0x7B2E\n0xDCCE\t0x7C92\n0xDCCF\t0x7C97\n0xDCD0\t0x7C95\n0xDCD1\t0x7D46\n0xDCD2\t0x7D43\n0xDCD3\t0x7D71\n0xDCD4\t0x7D2E\n0xDCD5\t0x7D39\n0xDCD6\t0x7D3C\n0xDCD7\t0x7D40\n0xDCD8\t0x7D30\n0xDCD9\t0x7D33\n0xDCDA\t0x7D44\n0xDCDB\t0x7D2F\n0xDCDC\t0x7D42\n0xDCDD\t0x7D32\n0xDCDE\t0x7D31\n0xDCDF\t0x7F3D\n0xDCE0\t0x7F9E\n0xDCE1\t0x7F9A\n0xDCE2\t0x7FCC\n0xDCE3\t0x7FCE\n0xDCE4\t0x7FD2\n0xDCE5\t0x801C\n0xDCE6\t0x804A\n0xDCE7\t0x8046\n0xDCE8\t0x812F\n0xDCE9\t0x8116\n0xDCEA\t0x8123\n0xDCEB\t0x812B\n0xDCEC\t0x8129\n0xDCED\t0x8130\n0xDCEE\t0x8124\n0xDCEF\t0x8202\n0xDCF0\t0x8235\n0xDCF1\t0x8237\n0xDCF2\t0x8236\n0xDCF3\t0x8239\n0xDCF4\t0x838E\n0xDCF5\t0x839E\n0xDCF6\t0x8398\n0xDCF7\t0x8378\n0xDCF8\t0x83A2\n0xDCF9\t0x8396\n0xDCFA\t0x83BD\n0xDCFB\t0x83AB\n0xDCFC\t0x8392\n0xDCFD\t0x838A\n0xDCFE\t0x8393\n0xDDA1\t0x8389\n0xDDA2\t0x83A0\n0xDDA3\t0x8377\n0xDDA4\t0x837B\n0xDDA5\t0x837C\n0xDDA6\t0x8386\n0xDDA7\t0x83A7\n0xDDA8\t0x8655\n0xDDA9\t0x5F6A\n0xDDAA\t0x86C7\n0xDDAB\t0x86C0\n0xDDAC\t0x86B6\n0xDDAD\t0x86C4\n0xDDAE\t0x86B5\n0xDDAF\t0x86C6\n0xDDB0\t0x86CB\n0xDDB1\t0x86B1\n0xDDB2\t0x86AF\n0xDDB3\t0x86C9\n0xDDB4\t0x8853\n0xDDB5\t0x889E\n0xDDB6\t0x8888\n0xDDB7\t0x88AB\n0xDDB8\t0x8892\n0xDDB9\t0x8896\n0xDDBA\t0x888D\n0xDDBB\t0x888B\n0xDDBC\t0x8993\n0xDDBD\t0x898F\n0xDDBE\t0x8A2A\n0xDDBF\t0x8A1D\n0xDDC0\t0x8A23\n0xDDC1\t0x8A25\n0xDDC2\t0x8A31\n0xDDC3\t0x8A2D\n0xDDC4\t0x8A1F\n0xDDC5\t0x8A1B\n0xDDC6\t0x8A22\n0xDDC7\t0x8C49\n0xDDC8\t0x8C5A\n0xDDC9\t0x8CA9\n0xDDCA\t0x8CAC\n0xDDCB\t0x8CAB\n0xDDCC\t0x8CA8\n0xDDCD\t0x8CAA\n0xDDCE\t0x8CA7\n0xDDCF\t0x8D67\n0xDDD0\t0x8D66\n0xDDD1\t0x8DBE\n0xDDD2\t0x8DBA\n0xDDD3\t0x8EDB\n0xDDD4\t0x8EDF\n0xDDD5\t0x9019\n0xDDD6\t0x900D\n0xDDD7\t0x901A\n0xDDD8\t0x9017\n0xDDD9\t0x9023\n0xDDDA\t0x901F\n0xDDDB\t0x901D\n0xDDDC\t0x9010\n0xDDDD\t0x9015\n0xDDDE\t0x901E\n0xDDDF\t0x9020\n0xDDE0\t0x900F\n0xDDE1\t0x9022\n0xDDE2\t0x9016\n0xDDE3\t0x901B\n0xDDE4\t0x9014\n0xDDE5\t0x90E8\n0xDDE6\t0x90ED\n0xDDE7\t0x90FD\n0xDDE8\t0x9157\n0xDDE9\t0x91CE\n0xDDEA\t0x91F5\n0xDDEB\t0x91E6\n0xDDEC\t0x91E3\n0xDDED\t0x91E7\n0xDDEE\t0x91ED\n0xDDEF\t0x91E9\n0xDDF0\t0x9589\n0xDDF1\t0x966A\n0xDDF2\t0x9675\n0xDDF3\t0x9673\n0xDDF4\t0x9678\n0xDDF5\t0x9670\n0xDDF6\t0x9674\n0xDDF7\t0x9676\n0xDDF8\t0x9677\n0xDDF9\t0x966C\n0xDDFA\t0x96C0\n0xDDFB\t0x96EA\n0xDDFC\t0x96E9\n0xDDFD\t0x7AE0\n0xDDFE\t0x7ADF\n0xDEA1\t0x9802\n0xDEA2\t0x9803\n0xDEA3\t0x9B5A\n0xDEA4\t0x9CE5\n0xDEA5\t0x9E75\n0xDEA6\t0x9E7F\n0xDEA7\t0x9EA5\n0xDEA8\t0x9EBB\n0xDEA9\t0x50A2\n0xDEAA\t0x508D\n0xDEAB\t0x5085\n0xDEAC\t0x5099\n0xDEAD\t0x5091\n0xDEAE\t0x5080\n0xDEAF\t0x5096\n0xDEB0\t0x5098\n0xDEB1\t0x509A\n0xDEB2\t0x6700\n0xDEB3\t0x51F1\n0xDEB4\t0x5272\n0xDEB5\t0x5274\n0xDEB6\t0x5275\n0xDEB7\t0x5269\n0xDEB8\t0x52DE\n0xDEB9\t0x52DD\n0xDEBA\t0x52DB\n0xDEBB\t0x535A\n0xDEBC\t0x53A5\n0xDEBD\t0x557B\n0xDEBE\t0x5580\n0xDEBF\t0x55A7\n0xDEC0\t0x557C\n0xDEC1\t0x558A\n0xDEC2\t0x559D\n0xDEC3\t0x5598\n0xDEC4\t0x5582\n0xDEC5\t0x559C\n0xDEC6\t0x55AA\n0xDEC7\t0x5594\n0xDEC8\t0x5587\n0xDEC9\t0x558B\n0xDECA\t0x5583\n0xDECB\t0x55B3\n0xDECC\t0x55AE\n0xDECD\t0x559F\n0xDECE\t0x553E\n0xDECF\t0x55B2\n0xDED0\t0x559A\n0xDED1\t0x55BB\n0xDED2\t0x55AC\n0xDED3\t0x55B1\n0xDED4\t0x557E\n0xDED5\t0x5589\n0xDED6\t0x55AB\n0xDED7\t0x5599\n0xDED8\t0x570D\n0xDED9\t0x582F\n0xDEDA\t0x582A\n0xDEDB\t0x5834\n0xDEDC\t0x5824\n0xDEDD\t0x5830\n0xDEDE\t0x5831\n0xDEDF\t0x5821\n0xDEE0\t0x581D\n0xDEE1\t0x5820\n0xDEE2\t0x58F9\n0xDEE3\t0x58FA\n0xDEE4\t0x5960\n0xDEE5\t0x5A77\n0xDEE6\t0x5A9A\n0xDEE7\t0x5A7F\n0xDEE8\t0x5A92\n0xDEE9\t0x5A9B\n0xDEEA\t0x5AA7\n0xDEEB\t0x5B73\n0xDEEC\t0x5B71\n0xDEED\t0x5BD2\n0xDEEE\t0x5BCC\n0xDEEF\t0x5BD3\n0xDEF0\t0x5BD0\n0xDEF1\t0x5C0A\n0xDEF2\t0x5C0B\n0xDEF3\t0x5C31\n0xDEF4\t0x5D4C\n0xDEF5\t0x5D50\n0xDEF6\t0x5D34\n0xDEF7\t0x5D47\n0xDEF8\t0x5DFD\n0xDEF9\t0x5E45\n0xDEFA\t0x5E3D\n0xDEFB\t0x5E40\n0xDEFC\t0x5E43\n0xDEFD\t0x5E7E\n0xDEFE\t0x5ECA\n0xDFA1\t0x5EC1\n0xDFA2\t0x5EC2\n0xDFA3\t0x5EC4\n0xDFA4\t0x5F3C\n0xDFA5\t0x5F6D\n0xDFA6\t0x5FA9\n0xDFA7\t0x5FAA\n0xDFA8\t0x5FA8\n0xDFA9\t0x60D1\n0xDFAA\t0x60E1\n0xDFAB\t0x60B2\n0xDFAC\t0x60B6\n0xDFAD\t0x60E0\n0xDFAE\t0x611C\n0xDFAF\t0x6123\n0xDFB0\t0x60FA\n0xDFB1\t0x6115\n0xDFB2\t0x60F0\n0xDFB3\t0x60FB\n0xDFB4\t0x60F4\n0xDFB5\t0x6168\n0xDFB6\t0x60F1\n0xDFB7\t0x610E\n0xDFB8\t0x60F6\n0xDFB9\t0x6109\n0xDFBA\t0x6100\n0xDFBB\t0x6112\n0xDFBC\t0x621F\n0xDFBD\t0x6249\n0xDFBE\t0x63A3\n0xDFBF\t0x638C\n0xDFC0\t0x63CF\n0xDFC1\t0x63C0\n0xDFC2\t0x63E9\n0xDFC3\t0x63C9\n0xDFC4\t0x63C6\n0xDFC5\t0x63CD\n0xDFC6\t0x63D2\n0xDFC7\t0x63E3\n0xDFC8\t0x63D0\n0xDFC9\t0x63E1\n0xDFCA\t0x63D6\n0xDFCB\t0x63ED\n0xDFCC\t0x63EE\n0xDFCD\t0x6376\n0xDFCE\t0x63F4\n0xDFCF\t0x63EA\n0xDFD0\t0x63DB\n0xDFD1\t0x6452\n0xDFD2\t0x63DA\n0xDFD3\t0x63F9\n0xDFD4\t0x655E\n0xDFD5\t0x6566\n0xDFD6\t0x6562\n0xDFD7\t0x6563\n0xDFD8\t0x6591\n0xDFD9\t0x6590\n0xDFDA\t0x65AF\n0xDFDB\t0x666E\n0xDFDC\t0x6670\n0xDFDD\t0x6674\n0xDFDE\t0x6676\n0xDFDF\t0x666F\n0xDFE0\t0x6691\n0xDFE1\t0x667A\n0xDFE2\t0x667E\n0xDFE3\t0x6677\n0xDFE4\t0x66FE\n0xDFE5\t0x66FF\n0xDFE6\t0x671F\n0xDFE7\t0x671D\n0xDFE8\t0x68FA\n0xDFE9\t0x68D5\n0xDFEA\t0x68E0\n0xDFEB\t0x68D8\n0xDFEC\t0x68D7\n0xDFED\t0x6905\n0xDFEE\t0x68DF\n0xDFEF\t0x68F5\n0xDFF0\t0x68EE\n0xDFF1\t0x68E7\n0xDFF2\t0x68F9\n0xDFF3\t0x68D2\n0xDFF4\t0x68F2\n0xDFF5\t0x68E3\n0xDFF6\t0x68CB\n0xDFF7\t0x68CD\n0xDFF8\t0x690D\n0xDFF9\t0x6912\n0xDFFA\t0x690E\n0xDFFB\t0x68C9\n0xDFFC\t0x68DA\n0xDFFD\t0x696E\n0xDFFE\t0x68FB\n0xE0A1\t0x6B3E\n0xE0A2\t0x6B3A\n0xE0A3\t0x6B3D\n0xE0A4\t0x6B98\n0xE0A5\t0x6B96\n0xE0A6\t0x6BBC\n0xE0A7\t0x6BEF\n0xE0A8\t0x6C2E\n0xE0A9\t0x6C2F\n0xE0AA\t0x6C2C\n0xE0AB\t0x6E2F\n0xE0AC\t0x6E38\n0xE0AD\t0x6E54\n0xE0AE\t0x6E21\n0xE0AF\t0x6E32\n0xE0B0\t0x6E67\n0xE0B1\t0x6E4A\n0xE0B2\t0x6E20\n0xE0B3\t0x6E25\n0xE0B4\t0x6E23\n0xE0B5\t0x6E1B\n0xE0B6\t0x6E5B\n0xE0B7\t0x6E58\n0xE0B8\t0x6E24\n0xE0B9\t0x6E56\n0xE0BA\t0x6E6E\n0xE0BB\t0x6E2D\n0xE0BC\t0x6E26\n0xE0BD\t0x6E6F\n0xE0BE\t0x6E34\n0xE0BF\t0x6E4D\n0xE0C0\t0x6E3A\n0xE0C1\t0x6E2C\n0xE0C2\t0x6E43\n0xE0C3\t0x6E1D\n0xE0C4\t0x6E3E\n0xE0C5\t0x6ECB\n0xE0C6\t0x6E89\n0xE0C7\t0x6E19\n0xE0C8\t0x6E4E\n0xE0C9\t0x6E63\n0xE0CA\t0x6E44\n0xE0CB\t0x6E72\n0xE0CC\t0x6E69\n0xE0CD\t0x6E5F\n0xE0CE\t0x7119\n0xE0CF\t0x711A\n0xE0D0\t0x7126\n0xE0D1\t0x7130\n0xE0D2\t0x7121\n0xE0D3\t0x7136\n0xE0D4\t0x716E\n0xE0D5\t0x711C\n0xE0D6\t0x724C\n0xE0D7\t0x7284\n0xE0D8\t0x7280\n0xE0D9\t0x7336\n0xE0DA\t0x7325\n0xE0DB\t0x7334\n0xE0DC\t0x7329\n0xE0DD\t0x743A\n0xE0DE\t0x742A\n0xE0DF\t0x7433\n0xE0E0\t0x7422\n0xE0E1\t0x7425\n0xE0E2\t0x7435\n0xE0E3\t0x7436\n0xE0E4\t0x7434\n0xE0E5\t0x742F\n0xE0E6\t0x741B\n0xE0E7\t0x7426\n0xE0E8\t0x7428\n0xE0E9\t0x7525\n0xE0EA\t0x7526\n0xE0EB\t0x756B\n0xE0EC\t0x756A\n0xE0ED\t0x75E2\n0xE0EE\t0x75DB\n0xE0EF\t0x75E3\n0xE0F0\t0x75D9\n0xE0F1\t0x75D8\n0xE0F2\t0x75DE\n0xE0F3\t0x75E0\n0xE0F4\t0x767B\n0xE0F5\t0x767C\n0xE0F6\t0x7696\n0xE0F7\t0x7693\n0xE0F8\t0x76B4\n0xE0F9\t0x76DC\n0xE0FA\t0x774F\n0xE0FB\t0x77ED\n0xE0FC\t0x785D\n0xE0FD\t0x786C\n0xE0FE\t0x786F\n0xE1A1\t0x7A0D\n0xE1A2\t0x7A08\n0xE1A3\t0x7A0B\n0xE1A4\t0x7A05\n0xE1A5\t0x7A00\n0xE1A6\t0x7A98\n0xE1A7\t0x7A97\n0xE1A8\t0x7A96\n0xE1A9\t0x7AE5\n0xE1AA\t0x7AE3\n0xE1AB\t0x7B49\n0xE1AC\t0x7B56\n0xE1AD\t0x7B46\n0xE1AE\t0x7B50\n0xE1AF\t0x7B52\n0xE1B0\t0x7B54\n0xE1B1\t0x7B4D\n0xE1B2\t0x7B4B\n0xE1B3\t0x7B4F\n0xE1B4\t0x7B51\n0xE1B5\t0x7C9F\n0xE1B6\t0x7CA5\n0xE1B7\t0x7D5E\n0xE1B8\t0x7D50\n0xE1B9\t0x7D68\n0xE1BA\t0x7D55\n0xE1BB\t0x7D2B\n0xE1BC\t0x7D6E\n0xE1BD\t0x7D72\n0xE1BE\t0x7D61\n0xE1BF\t0x7D66\n0xE1C0\t0x7D62\n0xE1C1\t0x7D70\n0xE1C2\t0x7D73\n0xE1C3\t0x5584\n0xE1C4\t0x7FD4\n0xE1C5\t0x7FD5\n0xE1C6\t0x800B\n0xE1C7\t0x8052\n0xE1C8\t0x8085\n0xE1C9\t0x8155\n0xE1CA\t0x8154\n0xE1CB\t0x814B\n0xE1CC\t0x8151\n0xE1CD\t0x814E\n0xE1CE\t0x8139\n0xE1CF\t0x8146\n0xE1D0\t0x813E\n0xE1D1\t0x814C\n0xE1D2\t0x8153\n0xE1D3\t0x8174\n0xE1D4\t0x8212\n0xE1D5\t0x821C\n0xE1D6\t0x83E9\n0xE1D7\t0x8403\n0xE1D8\t0x83F8\n0xE1D9\t0x840D\n0xE1DA\t0x83E0\n0xE1DB\t0x83C5\n0xE1DC\t0x840B\n0xE1DD\t0x83C1\n0xE1DE\t0x83EF\n0xE1DF\t0x83F1\n0xE1E0\t0x83F4\n0xE1E1\t0x8457\n0xE1E2\t0x840A\n0xE1E3\t0x83F0\n0xE1E4\t0x840C\n0xE1E5\t0x83CC\n0xE1E6\t0x83FD\n0xE1E7\t0x83F2\n0xE1E8\t0x83CA\n0xE1E9\t0x8438\n0xE1EA\t0x840E\n0xE1EB\t0x8404\n0xE1EC\t0x83DC\n0xE1ED\t0x8407\n0xE1EE\t0x83D4\n0xE1EF\t0x83DF\n0xE1F0\t0x865B\n0xE1F1\t0x86DF\n0xE1F2\t0x86D9\n0xE1F3\t0x86ED\n0xE1F4\t0x86D4\n0xE1F5\t0x86DB\n0xE1F6\t0x86E4\n0xE1F7\t0x86D0\n0xE1F8\t0x86DE\n0xE1F9\t0x8857\n0xE1FA\t0x88C1\n0xE1FB\t0x88C2\n0xE1FC\t0x88B1\n0xE1FD\t0x8983\n0xE1FE\t0x8996\n0xE2A1\t0x8A3B\n0xE2A2\t0x8A60\n0xE2A3\t0x8A55\n0xE2A4\t0x8A5E\n0xE2A5\t0x8A3C\n0xE2A6\t0x8A41\n0xE2A7\t0x8A54\n0xE2A8\t0x8A5B\n0xE2A9\t0x8A50\n0xE2AA\t0x8A46\n0xE2AB\t0x8A34\n0xE2AC\t0x8A3A\n0xE2AD\t0x8A36\n0xE2AE\t0x8A56\n0xE2AF\t0x8C61\n0xE2B0\t0x8C82\n0xE2B1\t0x8CAF\n0xE2B2\t0x8CBC\n0xE2B3\t0x8CB3\n0xE2B4\t0x8CBD\n0xE2B5\t0x8CC1\n0xE2B6\t0x8CBB\n0xE2B7\t0x8CC0\n0xE2B8\t0x8CB4\n0xE2B9\t0x8CB7\n0xE2BA\t0x8CB6\n0xE2BB\t0x8CBF\n0xE2BC\t0x8CB8\n0xE2BD\t0x8D8A\n0xE2BE\t0x8D85\n0xE2BF\t0x8D81\n0xE2C0\t0x8DCE\n0xE2C1\t0x8DDD\n0xE2C2\t0x8DCB\n0xE2C3\t0x8DDA\n0xE2C4\t0x8DD1\n0xE2C5\t0x8DCC\n0xE2C6\t0x8DDB\n0xE2C7\t0x8DC6\n0xE2C8\t0x8EFB\n0xE2C9\t0x8EF8\n0xE2CA\t0x8EFC\n0xE2CB\t0x8F9C\n0xE2CC\t0x902E\n0xE2CD\t0x9035\n0xE2CE\t0x9031\n0xE2CF\t0x9038\n0xE2D0\t0x9032\n0xE2D1\t0x9036\n0xE2D2\t0x9102\n0xE2D3\t0x90F5\n0xE2D4\t0x9109\n0xE2D5\t0x90FE\n0xE2D6\t0x9163\n0xE2D7\t0x9165\n0xE2D8\t0x91CF\n0xE2D9\t0x9214\n0xE2DA\t0x9215\n0xE2DB\t0x9223\n0xE2DC\t0x9209\n0xE2DD\t0x921E\n0xE2DE\t0x920D\n0xE2DF\t0x9210\n0xE2E0\t0x9207\n0xE2E1\t0x9211\n0xE2E2\t0x9594\n0xE2E3\t0x958F\n0xE2E4\t0x958B\n0xE2E5\t0x9591\n0xE2E6\t0x9593\n0xE2E7\t0x9592\n0xE2E8\t0x958E\n0xE2E9\t0x968A\n0xE2EA\t0x968E\n0xE2EB\t0x968B\n0xE2EC\t0x967D\n0xE2ED\t0x9685\n0xE2EE\t0x9686\n0xE2EF\t0x968D\n0xE2F0\t0x9672\n0xE2F1\t0x9684\n0xE2F2\t0x96C1\n0xE2F3\t0x96C5\n0xE2F4\t0x96C4\n0xE2F5\t0x96C6\n0xE2F6\t0x96C7\n0xE2F7\t0x96EF\n0xE2F8\t0x96F2\n0xE2F9\t0x97CC\n0xE2FA\t0x9805\n0xE2FB\t0x9806\n0xE2FC\t0x9808\n0xE2FD\t0x98E7\n0xE2FE\t0x98EA\n0xE3A1\t0x98EF\n0xE3A2\t0x98E9\n0xE3A3\t0x98F2\n0xE3A4\t0x98ED\n0xE3A5\t0x99AE\n0xE3A6\t0x99AD\n0xE3A7\t0x9EC3\n0xE3A8\t0x9ECD\n0xE3A9\t0x9ED1\n0xE3AA\t0x4E82\n0xE3AB\t0x50AD\n0xE3AC\t0x50B5\n0xE3AD\t0x50B2\n0xE3AE\t0x50B3\n0xE3AF\t0x50C5\n0xE3B0\t0x50BE\n0xE3B1\t0x50AC\n0xE3B2\t0x50B7\n0xE3B3\t0x50BB\n0xE3B4\t0x50AF\n0xE3B5\t0x50C7\n0xE3B6\t0x527F\n0xE3B7\t0x5277\n0xE3B8\t0x527D\n0xE3B9\t0x52DF\n0xE3BA\t0x52E6\n0xE3BB\t0x52E4\n0xE3BC\t0x52E2\n0xE3BD\t0x52E3\n0xE3BE\t0x532F\n0xE3BF\t0x55DF\n0xE3C0\t0x55E8\n0xE3C1\t0x55D3\n0xE3C2\t0x55E6\n0xE3C3\t0x55CE\n0xE3C4\t0x55DC\n0xE3C5\t0x55C7\n0xE3C6\t0x55D1\n0xE3C7\t0x55E3\n0xE3C8\t0x55E4\n0xE3C9\t0x55EF\n0xE3CA\t0x55DA\n0xE3CB\t0x55E1\n0xE3CC\t0x55C5\n0xE3CD\t0x55C6\n0xE3CE\t0x55E5\n0xE3CF\t0x55C9\n0xE3D0\t0x5712\n0xE3D1\t0x5713\n0xE3D2\t0x585E\n0xE3D3\t0x5851\n0xE3D4\t0x5858\n0xE3D5\t0x5857\n0xE3D6\t0x585A\n0xE3D7\t0x5854\n0xE3D8\t0x586B\n0xE3D9\t0x584C\n0xE3DA\t0x586D\n0xE3DB\t0x584A\n0xE3DC\t0x5862\n0xE3DD\t0x5852\n0xE3DE\t0x584B\n0xE3DF\t0x5967\n0xE3E0\t0x5AC1\n0xE3E1\t0x5AC9\n0xE3E2\t0x5ACC\n0xE3E3\t0x5ABE\n0xE3E4\t0x5ABD\n0xE3E5\t0x5ABC\n0xE3E6\t0x5AB3\n0xE3E7\t0x5AC2\n0xE3E8\t0x5AB2\n0xE3E9\t0x5D69\n0xE3EA\t0x5D6F\n0xE3EB\t0x5E4C\n0xE3EC\t0x5E79\n0xE3ED\t0x5EC9\n0xE3EE\t0x5EC8\n0xE3EF\t0x5F12\n0xE3F0\t0x5F59\n0xE3F1\t0x5FAC\n0xE3F2\t0x5FAE\n0xE3F3\t0x611A\n0xE3F4\t0x610F\n0xE3F5\t0x6148\n0xE3F6\t0x611F\n0xE3F7\t0x60F3\n0xE3F8\t0x611B\n0xE3F9\t0x60F9\n0xE3FA\t0x6101\n0xE3FB\t0x6108\n0xE3FC\t0x614E\n0xE3FD\t0x614C\n0xE3FE\t0x6144\n0xE4A1\t0x614D\n0xE4A2\t0x613E\n0xE4A3\t0x6134\n0xE4A4\t0x6127\n0xE4A5\t0x610D\n0xE4A6\t0x6106\n0xE4A7\t0x6137\n0xE4A8\t0x6221\n0xE4A9\t0x6222\n0xE4AA\t0x6413\n0xE4AB\t0x643E\n0xE4AC\t0x641E\n0xE4AD\t0x642A\n0xE4AE\t0x642D\n0xE4AF\t0x643D\n0xE4B0\t0x642C\n0xE4B1\t0x640F\n0xE4B2\t0x641C\n0xE4B3\t0x6414\n0xE4B4\t0x640D\n0xE4B5\t0x6436\n0xE4B6\t0x6416\n0xE4B7\t0x6417\n0xE4B8\t0x6406\n0xE4B9\t0x656C\n0xE4BA\t0x659F\n0xE4BB\t0x65B0\n0xE4BC\t0x6697\n0xE4BD\t0x6689\n0xE4BE\t0x6687\n0xE4BF\t0x6688\n0xE4C0\t0x6696\n0xE4C1\t0x6684\n0xE4C2\t0x6698\n0xE4C3\t0x668D\n0xE4C4\t0x6703\n0xE4C5\t0x6994\n0xE4C6\t0x696D\n0xE4C7\t0x695A\n0xE4C8\t0x6977\n0xE4C9\t0x6960\n0xE4CA\t0x6954\n0xE4CB\t0x6975\n0xE4CC\t0x6930\n0xE4CD\t0x6982\n0xE4CE\t0x694A\n0xE4CF\t0x6968\n0xE4D0\t0x696B\n0xE4D1\t0x695E\n0xE4D2\t0x6953\n0xE4D3\t0x6979\n0xE4D4\t0x6986\n0xE4D5\t0x695D\n0xE4D6\t0x6963\n0xE4D7\t0x695B\n0xE4D8\t0x6B47\n0xE4D9\t0x6B72\n0xE4DA\t0x6BC0\n0xE4DB\t0x6BBF\n0xE4DC\t0x6BD3\n0xE4DD\t0x6BFD\n0xE4DE\t0x6EA2\n0xE4DF\t0x6EAF\n0xE4E0\t0x6ED3\n0xE4E1\t0x6EB6\n0xE4E2\t0x6EC2\n0xE4E3\t0x6E90\n0xE4E4\t0x6E9D\n0xE4E5\t0x6EC7\n0xE4E6\t0x6EC5\n0xE4E7\t0x6EA5\n0xE4E8\t0x6E98\n0xE4E9\t0x6EBC\n0xE4EA\t0x6EBA\n0xE4EB\t0x6EAB\n0xE4EC\t0x6ED1\n0xE4ED\t0x6E96\n0xE4EE\t0x6E9C\n0xE4EF\t0x6EC4\n0xE4F0\t0x6ED4\n0xE4F1\t0x6EAA\n0xE4F2\t0x6EA7\n0xE4F3\t0x6EB4\n0xE4F4\t0x714E\n0xE4F5\t0x7159\n0xE4F6\t0x7169\n0xE4F7\t0x7164\n0xE4F8\t0x7149\n0xE4F9\t0x7167\n0xE4FA\t0x715C\n0xE4FB\t0x716C\n0xE4FC\t0x7166\n0xE4FD\t0x714C\n0xE4FE\t0x7165\n0xE5A1\t0x715E\n0xE5A2\t0x7146\n0xE5A3\t0x7168\n0xE5A4\t0x7156\n0xE5A5\t0x723A\n0xE5A6\t0x7252\n0xE5A7\t0x7337\n0xE5A8\t0x7345\n0xE5A9\t0x733F\n0xE5AA\t0x733E\n0xE5AB\t0x746F\n0xE5AC\t0x745A\n0xE5AD\t0x7455\n0xE5AE\t0x745F\n0xE5AF\t0x745E\n0xE5B0\t0x7441\n0xE5B1\t0x743F\n0xE5B2\t0x7459\n0xE5B3\t0x745B\n0xE5B4\t0x745C\n0xE5B5\t0x7576\n0xE5B6\t0x7578\n0xE5B7\t0x7600\n0xE5B8\t0x75F0\n0xE5B9\t0x7601\n0xE5BA\t0x75F2\n0xE5BB\t0x75F1\n0xE5BC\t0x75FA\n0xE5BD\t0x75FF\n0xE5BE\t0x75F4\n0xE5BF\t0x75F3\n0xE5C0\t0x76DE\n0xE5C1\t0x76DF\n0xE5C2\t0x775B\n0xE5C3\t0x776B\n0xE5C4\t0x7766\n0xE5C5\t0x775E\n0xE5C6\t0x7763\n0xE5C7\t0x7779\n0xE5C8\t0x776A\n0xE5C9\t0x776C\n0xE5CA\t0x775C\n0xE5CB\t0x7765\n0xE5CC\t0x7768\n0xE5CD\t0x7762\n0xE5CE\t0x77EE\n0xE5CF\t0x788E\n0xE5D0\t0x78B0\n0xE5D1\t0x7897\n0xE5D2\t0x7898\n0xE5D3\t0x788C\n0xE5D4\t0x7889\n0xE5D5\t0x787C\n0xE5D6\t0x7891\n0xE5D7\t0x7893\n0xE5D8\t0x787F\n0xE5D9\t0x797A\n0xE5DA\t0x797F\n0xE5DB\t0x7981\n0xE5DC\t0x842C\n0xE5DD\t0x79BD\n0xE5DE\t0x7A1C\n0xE5DF\t0x7A1A\n0xE5E0\t0x7A20\n0xE5E1\t0x7A14\n0xE5E2\t0x7A1F\n0xE5E3\t0x7A1E\n0xE5E4\t0x7A9F\n0xE5E5\t0x7AA0\n0xE5E6\t0x7B77\n0xE5E7\t0x7BC0\n0xE5E8\t0x7B60\n0xE5E9\t0x7B6E\n0xE5EA\t0x7B67\n0xE5EB\t0x7CB1\n0xE5EC\t0x7CB3\n0xE5ED\t0x7CB5\n0xE5EE\t0x7D93\n0xE5EF\t0x7D79\n0xE5F0\t0x7D91\n0xE5F1\t0x7D81\n0xE5F2\t0x7D8F\n0xE5F3\t0x7D5B\n0xE5F4\t0x7F6E\n0xE5F5\t0x7F69\n0xE5F6\t0x7F6A\n0xE5F7\t0x7F72\n0xE5F8\t0x7FA9\n0xE5F9\t0x7FA8\n0xE5FA\t0x7FA4\n0xE5FB\t0x8056\n0xE5FC\t0x8058\n0xE5FD\t0x8086\n0xE5FE\t0x8084\n0xE6A1\t0x8171\n0xE6A2\t0x8170\n0xE6A3\t0x8178\n0xE6A4\t0x8165\n0xE6A5\t0x816E\n0xE6A6\t0x8173\n0xE6A7\t0x816B\n0xE6A8\t0x8179\n0xE6A9\t0x817A\n0xE6AA\t0x8166\n0xE6AB\t0x8205\n0xE6AC\t0x8247\n0xE6AD\t0x8482\n0xE6AE\t0x8477\n0xE6AF\t0x843D\n0xE6B0\t0x8431\n0xE6B1\t0x8475\n0xE6B2\t0x8466\n0xE6B3\t0x846B\n0xE6B4\t0x8449\n0xE6B5\t0x846C\n0xE6B6\t0x845B\n0xE6B7\t0x843C\n0xE6B8\t0x8435\n0xE6B9\t0x8461\n0xE6BA\t0x8463\n0xE6BB\t0x8469\n0xE6BC\t0x846D\n0xE6BD\t0x8446\n0xE6BE\t0x865E\n0xE6BF\t0x865C\n0xE6C0\t0x865F\n0xE6C1\t0x86F9\n0xE6C2\t0x8713\n0xE6C3\t0x8708\n0xE6C4\t0x8707\n0xE6C5\t0x8700\n0xE6C6\t0x86FE\n0xE6C7\t0x86FB\n0xE6C8\t0x8702\n0xE6C9\t0x8703\n0xE6CA\t0x8706\n0xE6CB\t0x870A\n0xE6CC\t0x8859\n0xE6CD\t0x88DF\n0xE6CE\t0x88D4\n0xE6CF\t0x88D9\n0xE6D0\t0x88DC\n0xE6D1\t0x88D8\n0xE6D2\t0x88DD\n0xE6D3\t0x88E1\n0xE6D4\t0x88CA\n0xE6D5\t0x88D5\n0xE6D6\t0x88D2\n0xE6D7\t0x899C\n0xE6D8\t0x89E3\n0xE6D9\t0x8A6B\n0xE6DA\t0x8A72\n0xE6DB\t0x8A73\n0xE6DC\t0x8A66\n0xE6DD\t0x8A69\n0xE6DE\t0x8A70\n0xE6DF\t0x8A87\n0xE6E0\t0x8A7C\n0xE6E1\t0x8A63\n0xE6E2\t0x8AA0\n0xE6E3\t0x8A71\n0xE6E4\t0x8A85\n0xE6E5\t0x8A6D\n0xE6E6\t0x8A62\n0xE6E7\t0x8A6E\n0xE6E8\t0x8A6C\n0xE6E9\t0x8A79\n0xE6EA\t0x8A7B\n0xE6EB\t0x8A3E\n0xE6EC\t0x8A68\n0xE6ED\t0x8C62\n0xE6EE\t0x8C8A\n0xE6EF\t0x8C89\n0xE6F0\t0x8CCA\n0xE6F1\t0x8CC7\n0xE6F2\t0x8CC8\n0xE6F3\t0x8CC4\n0xE6F4\t0x8CB2\n0xE6F5\t0x8CC3\n0xE6F6\t0x8CC2\n0xE6F7\t0x8CC5\n0xE6F8\t0x8DE1\n0xE6F9\t0x8DDF\n0xE6FA\t0x8DE8\n0xE6FB\t0x8DEF\n0xE6FC\t0x8DF3\n0xE6FD\t0x8DFA\n0xE6FE\t0x8DEA\n0xE7A1\t0x8DE4\n0xE7A2\t0x8DE6\n0xE7A3\t0x8EB2\n0xE7A4\t0x8F03\n0xE7A5\t0x8F09\n0xE7A6\t0x8EFE\n0xE7A7\t0x8F0A\n0xE7A8\t0x8F9F\n0xE7A9\t0x8FB2\n0xE7AA\t0x904B\n0xE7AB\t0x904A\n0xE7AC\t0x9053\n0xE7AD\t0x9042\n0xE7AE\t0x9054\n0xE7AF\t0x903C\n0xE7B0\t0x9055\n0xE7B1\t0x9050\n0xE7B2\t0x9047\n0xE7B3\t0x904F\n0xE7B4\t0x904E\n0xE7B5\t0x904D\n0xE7B6\t0x9051\n0xE7B7\t0x903E\n0xE7B8\t0x9041\n0xE7B9\t0x9112\n0xE7BA\t0x9117\n0xE7BB\t0x916C\n0xE7BC\t0x916A\n0xE7BD\t0x9169\n0xE7BE\t0x91C9\n0xE7BF\t0x9237\n0xE7C0\t0x9257\n0xE7C1\t0x9238\n0xE7C2\t0x923D\n0xE7C3\t0x9240\n0xE7C4\t0x923E\n0xE7C5\t0x925B\n0xE7C6\t0x924B\n0xE7C7\t0x9264\n0xE7C8\t0x9251\n0xE7C9\t0x9234\n0xE7CA\t0x9249\n0xE7CB\t0x924D\n0xE7CC\t0x9245\n0xE7CD\t0x9239\n0xE7CE\t0x923F\n0xE7CF\t0x925A\n0xE7D0\t0x9598\n0xE7D1\t0x9698\n0xE7D2\t0x9694\n0xE7D3\t0x9695\n0xE7D4\t0x96CD\n0xE7D5\t0x96CB\n0xE7D6\t0x96C9\n0xE7D7\t0x96CA\n0xE7D8\t0x96F7\n0xE7D9\t0x96FB\n0xE7DA\t0x96F9\n0xE7DB\t0x96F6\n0xE7DC\t0x9756\n0xE7DD\t0x9774\n0xE7DE\t0x9776\n0xE7DF\t0x9810\n0xE7E0\t0x9811\n0xE7E1\t0x9813\n0xE7E2\t0x980A\n0xE7E3\t0x9812\n0xE7E4\t0x980C\n0xE7E5\t0x98FC\n0xE7E6\t0x98F4\n0xE7E7\t0x98FD\n0xE7E8\t0x98FE\n0xE7E9\t0x99B3\n0xE7EA\t0x99B1\n0xE7EB\t0x99B4\n0xE7EC\t0x9AE1\n0xE7ED\t0x9CE9\n0xE7EE\t0x9E82\n0xE7EF\t0x9F0E\n0xE7F0\t0x9F13\n0xE7F1\t0x9F20\n0xE7F2\t0x50E7\n0xE7F3\t0x50EE\n0xE7F4\t0x50E5\n0xE7F5\t0x50D6\n0xE7F6\t0x50ED\n0xE7F7\t0x50DA\n0xE7F8\t0x50D5\n0xE7F9\t0x50CF\n0xE7FA\t0x50D1\n0xE7FB\t0x50F1\n0xE7FC\t0x50CE\n0xE7FD\t0x50E9\n0xE7FE\t0x5162\n0xE8A1\t0x51F3\n0xE8A2\t0x5283\n0xE8A3\t0x5282\n0xE8A4\t0x5331\n0xE8A5\t0x53AD\n0xE8A6\t0x55FE\n0xE8A7\t0x5600\n0xE8A8\t0x561B\n0xE8A9\t0x5617\n0xE8AA\t0x55FD\n0xE8AB\t0x5614\n0xE8AC\t0x5606\n0xE8AD\t0x5609\n0xE8AE\t0x560D\n0xE8AF\t0x560E\n0xE8B0\t0x55F7\n0xE8B1\t0x5616\n0xE8B2\t0x561F\n0xE8B3\t0x5608\n0xE8B4\t0x5610\n0xE8B5\t0x55F6\n0xE8B6\t0x5718\n0xE8B7\t0x5716\n0xE8B8\t0x5875\n0xE8B9\t0x587E\n0xE8BA\t0x5883\n0xE8BB\t0x5893\n0xE8BC\t0x588A\n0xE8BD\t0x5879\n0xE8BE\t0x5885\n0xE8BF\t0x587D\n0xE8C0\t0x58FD\n0xE8C1\t0x5925\n0xE8C2\t0x5922\n0xE8C3\t0x5924\n0xE8C4\t0x596A\n0xE8C5\t0x5969\n0xE8C6\t0x5AE1\n0xE8C7\t0x5AE6\n0xE8C8\t0x5AE9\n0xE8C9\t0x5AD7\n0xE8CA\t0x5AD6\n0xE8CB\t0x5AD8\n0xE8CC\t0x5AE3\n0xE8CD\t0x5B75\n0xE8CE\t0x5BDE\n0xE8CF\t0x5BE7\n0xE8D0\t0x5BE1\n0xE8D1\t0x5BE5\n0xE8D2\t0x5BE6\n0xE8D3\t0x5BE8\n0xE8D4\t0x5BE2\n0xE8D5\t0x5BE4\n0xE8D6\t0x5BDF\n0xE8D7\t0x5C0D\n0xE8D8\t0x5C62\n0xE8D9\t0x5D84\n0xE8DA\t0x5D87\n0xE8DB\t0x5E5B\n0xE8DC\t0x5E63\n0xE8DD\t0x5E55\n0xE8DE\t0x5E57\n0xE8DF\t0x5E54\n0xE8E0\t0x5ED3\n0xE8E1\t0x5ED6\n0xE8E2\t0x5F0A\n0xE8E3\t0x5F46\n0xE8E4\t0x5F70\n0xE8E5\t0x5FB9\n0xE8E6\t0x6147\n0xE8E7\t0x613F\n0xE8E8\t0x614B\n0xE8E9\t0x6177\n0xE8EA\t0x6162\n0xE8EB\t0x6163\n0xE8EC\t0x615F\n0xE8ED\t0x615A\n0xE8EE\t0x6158\n0xE8EF\t0x6175\n0xE8F0\t0x622A\n0xE8F1\t0x6487\n0xE8F2\t0x6458\n0xE8F3\t0x6454\n0xE8F4\t0x64A4\n0xE8F5\t0x6478\n0xE8F6\t0x645F\n0xE8F7\t0x647A\n0xE8F8\t0x6451\n0xE8F9\t0x6467\n0xE8FA\t0x6434\n0xE8FB\t0x646D\n0xE8FC\t0x647B\n0xE8FD\t0x6572\n0xE8FE\t0x65A1\n0xE9A1\t0x65D7\n0xE9A2\t0x65D6\n0xE9A3\t0x66A2\n0xE9A4\t0x66A8\n0xE9A5\t0x669D\n0xE9A6\t0x699C\n0xE9A7\t0x69A8\n0xE9A8\t0x6995\n0xE9A9\t0x69C1\n0xE9AA\t0x69AE\n0xE9AB\t0x69D3\n0xE9AC\t0x69CB\n0xE9AD\t0x699B\n0xE9AE\t0x69B7\n0xE9AF\t0x69BB\n0xE9B0\t0x69AB\n0xE9B1\t0x69B4\n0xE9B2\t0x69D0\n0xE9B3\t0x69CD\n0xE9B4\t0x69AD\n0xE9B5\t0x69CC\n0xE9B6\t0x69A6\n0xE9B7\t0x69C3\n0xE9B8\t0x69A3\n0xE9B9\t0x6B49\n0xE9BA\t0x6B4C\n0xE9BB\t0x6C33\n0xE9BC\t0x6F33\n0xE9BD\t0x6F14\n0xE9BE\t0x6EFE\n0xE9BF\t0x6F13\n0xE9C0\t0x6EF4\n0xE9C1\t0x6F29\n0xE9C2\t0x6F3E\n0xE9C3\t0x6F20\n0xE9C4\t0x6F2C\n0xE9C5\t0x6F0F\n0xE9C6\t0x6F02\n0xE9C7\t0x6F22\n0xE9C8\t0x6EFF\n0xE9C9\t0x6EEF\n0xE9CA\t0x6F06\n0xE9CB\t0x6F31\n0xE9CC\t0x6F38\n0xE9CD\t0x6F32\n0xE9CE\t0x6F23\n0xE9CF\t0x6F15\n0xE9D0\t0x6F2B\n0xE9D1\t0x6F2F\n0xE9D2\t0x6F88\n0xE9D3\t0x6F2A\n0xE9D4\t0x6EEC\n0xE9D5\t0x6F01\n0xE9D6\t0x6EF2\n0xE9D7\t0x6ECC\n0xE9D8\t0x6EF7\n0xE9D9\t0x7194\n0xE9DA\t0x7199\n0xE9DB\t0x717D\n0xE9DC\t0x718A\n0xE9DD\t0x7184\n0xE9DE\t0x7192\n0xE9DF\t0x723E\n0xE9E0\t0x7292\n0xE9E1\t0x7296\n0xE9E2\t0x7344\n0xE9E3\t0x7350\n0xE9E4\t0x7464\n0xE9E5\t0x7463\n0xE9E6\t0x746A\n0xE9E7\t0x7470\n0xE9E8\t0x746D\n0xE9E9\t0x7504\n0xE9EA\t0x7591\n0xE9EB\t0x7627\n0xE9EC\t0x760D\n0xE9ED\t0x760B\n0xE9EE\t0x7609\n0xE9EF\t0x7613\n0xE9F0\t0x76E1\n0xE9F1\t0x76E3\n0xE9F2\t0x7784\n0xE9F3\t0x777D\n0xE9F4\t0x777F\n0xE9F5\t0x7761\n0xE9F6\t0x78C1\n0xE9F7\t0x789F\n0xE9F8\t0x78A7\n0xE9F9\t0x78B3\n0xE9FA\t0x78A9\n0xE9FB\t0x78A3\n0xE9FC\t0x798E\n0xE9FD\t0x798F\n0xE9FE\t0x798D\n0xEAA1\t0x7A2E\n0xEAA2\t0x7A31\n0xEAA3\t0x7AAA\n0xEAA4\t0x7AA9\n0xEAA5\t0x7AED\n0xEAA6\t0x7AEF\n0xEAA7\t0x7BA1\n0xEAA8\t0x7B95\n0xEAA9\t0x7B8B\n0xEAAA\t0x7B75\n0xEAAB\t0x7B97\n0xEAAC\t0x7B9D\n0xEAAD\t0x7B94\n0xEAAE\t0x7B8F\n0xEAAF\t0x7BB8\n0xEAB0\t0x7B87\n0xEAB1\t0x7B84\n0xEAB2\t0x7CB9\n0xEAB3\t0x7CBD\n0xEAB4\t0x7CBE\n0xEAB5\t0x7DBB\n0xEAB6\t0x7DB0\n0xEAB7\t0x7D9C\n0xEAB8\t0x7DBD\n0xEAB9\t0x7DBE\n0xEABA\t0x7DA0\n0xEABB\t0x7DCA\n0xEABC\t0x7DB4\n0xEABD\t0x7DB2\n0xEABE\t0x7DB1\n0xEABF\t0x7DBA\n0xEAC0\t0x7DA2\n0xEAC1\t0x7DBF\n0xEAC2\t0x7DB5\n0xEAC3\t0x7DB8\n0xEAC4\t0x7DAD\n0xEAC5\t0x7DD2\n0xEAC6\t0x7DC7\n0xEAC7\t0x7DAC\n0xEAC8\t0x7F70\n0xEAC9\t0x7FE0\n0xEACA\t0x7FE1\n0xEACB\t0x7FDF\n0xEACC\t0x805E\n0xEACD\t0x805A\n0xEACE\t0x8087\n0xEACF\t0x8150\n0xEAD0\t0x8180\n0xEAD1\t0x818F\n0xEAD2\t0x8188\n0xEAD3\t0x818A\n0xEAD4\t0x817F\n0xEAD5\t0x8182\n0xEAD6\t0x81E7\n0xEAD7\t0x81FA\n0xEAD8\t0x8207\n0xEAD9\t0x8214\n0xEADA\t0x821E\n0xEADB\t0x824B\n0xEADC\t0x84C9\n0xEADD\t0x84BF\n0xEADE\t0x84C6\n0xEADF\t0x84C4\n0xEAE0\t0x8499\n0xEAE1\t0x849E\n0xEAE2\t0x84B2\n0xEAE3\t0x849C\n0xEAE4\t0x84CB\n0xEAE5\t0x84B8\n0xEAE6\t0x84C0\n0xEAE7\t0x84D3\n0xEAE8\t0x8490\n0xEAE9\t0x84BC\n0xEAEA\t0x84D1\n0xEAEB\t0x84CA\n0xEAEC\t0x873F\n0xEAED\t0x871C\n0xEAEE\t0x873B\n0xEAEF\t0x8722\n0xEAF0\t0x8725\n0xEAF1\t0x8734\n0xEAF2\t0x8718\n0xEAF3\t0x8755\n0xEAF4\t0x8737\n0xEAF5\t0x8729\n0xEAF6\t0x88F3\n0xEAF7\t0x8902\n0xEAF8\t0x88F4\n0xEAF9\t0x88F9\n0xEAFA\t0x88F8\n0xEAFB\t0x88FD\n0xEAFC\t0x88E8\n0xEAFD\t0x891A\n0xEAFE\t0x88EF\n0xEBA1\t0x8AA6\n0xEBA2\t0x8A8C\n0xEBA3\t0x8A9E\n0xEBA4\t0x8AA3\n0xEBA5\t0x8A8D\n0xEBA6\t0x8AA1\n0xEBA7\t0x8A93\n0xEBA8\t0x8AA4\n0xEBA9\t0x8AAA\n0xEBAA\t0x8AA5\n0xEBAB\t0x8AA8\n0xEBAC\t0x8A98\n0xEBAD\t0x8A91\n0xEBAE\t0x8A9A\n0xEBAF\t0x8AA7\n0xEBB0\t0x8C6A\n0xEBB1\t0x8C8D\n0xEBB2\t0x8C8C\n0xEBB3\t0x8CD3\n0xEBB4\t0x8CD1\n0xEBB5\t0x8CD2\n0xEBB6\t0x8D6B\n0xEBB7\t0x8D99\n0xEBB8\t0x8D95\n0xEBB9\t0x8DFC\n0xEBBA\t0x8F14\n0xEBBB\t0x8F12\n0xEBBC\t0x8F15\n0xEBBD\t0x8F13\n0xEBBE\t0x8FA3\n0xEBBF\t0x9060\n0xEBC0\t0x9058\n0xEBC1\t0x905C\n0xEBC2\t0x9063\n0xEBC3\t0x9059\n0xEBC4\t0x905E\n0xEBC5\t0x9062\n0xEBC6\t0x905D\n0xEBC7\t0x905B\n0xEBC8\t0x9119\n0xEBC9\t0x9118\n0xEBCA\t0x911E\n0xEBCB\t0x9175\n0xEBCC\t0x9178\n0xEBCD\t0x9177\n0xEBCE\t0x9174\n0xEBCF\t0x9278\n0xEBD0\t0x92AC\n0xEBD1\t0x9280\n0xEBD2\t0x9285\n0xEBD3\t0x9298\n0xEBD4\t0x9296\n0xEBD5\t0x927B\n0xEBD6\t0x9293\n0xEBD7\t0x929C\n0xEBD8\t0x92A8\n0xEBD9\t0x927C\n0xEBDA\t0x9291\n0xEBDB\t0x95A1\n0xEBDC\t0x95A8\n0xEBDD\t0x95A9\n0xEBDE\t0x95A3\n0xEBDF\t0x95A5\n0xEBE0\t0x95A4\n0xEBE1\t0x9699\n0xEBE2\t0x969C\n0xEBE3\t0x969B\n0xEBE4\t0x96CC\n0xEBE5\t0x96D2\n0xEBE6\t0x9700\n0xEBE7\t0x977C\n0xEBE8\t0x9785\n0xEBE9\t0x97F6\n0xEBEA\t0x9817\n0xEBEB\t0x9818\n0xEBEC\t0x98AF\n0xEBED\t0x98B1\n0xEBEE\t0x9903\n0xEBEF\t0x9905\n0xEBF0\t0x990C\n0xEBF1\t0x9909\n0xEBF2\t0x99C1\n0xEBF3\t0x9AAF\n0xEBF4\t0x9AB0\n0xEBF5\t0x9AE6\n0xEBF6\t0x9B41\n0xEBF7\t0x9B42\n0xEBF8\t0x9CF4\n0xEBF9\t0x9CF6\n0xEBFA\t0x9CF3\n0xEBFB\t0x9EBC\n0xEBFC\t0x9F3B\n0xEBFD\t0x9F4A\n0xEBFE\t0x5104\n0xECA1\t0x5100\n0xECA2\t0x50FB\n0xECA3\t0x50F5\n0xECA4\t0x50F9\n0xECA5\t0x5102\n0xECA6\t0x5108\n0xECA7\t0x5109\n0xECA8\t0x5105\n0xECA9\t0x51DC\n0xECAA\t0x5287\n0xECAB\t0x5288\n0xECAC\t0x5289\n0xECAD\t0x528D\n0xECAE\t0x528A\n0xECAF\t0x52F0\n0xECB0\t0x53B2\n0xECB1\t0x562E\n0xECB2\t0x563B\n0xECB3\t0x5639\n0xECB4\t0x5632\n0xECB5\t0x563F\n0xECB6\t0x5634\n0xECB7\t0x5629\n0xECB8\t0x5653\n0xECB9\t0x564E\n0xECBA\t0x5657\n0xECBB\t0x5674\n0xECBC\t0x5636\n0xECBD\t0x562F\n0xECBE\t0x5630\n0xECBF\t0x5880\n0xECC0\t0x589F\n0xECC1\t0x589E\n0xECC2\t0x58B3\n0xECC3\t0x589C\n0xECC4\t0x58AE\n0xECC5\t0x58A9\n0xECC6\t0x58A6\n0xECC7\t0x596D\n0xECC8\t0x5B09\n0xECC9\t0x5AFB\n0xECCA\t0x5B0B\n0xECCB\t0x5AF5\n0xECCC\t0x5B0C\n0xECCD\t0x5B08\n0xECCE\t0x5BEE\n0xECCF\t0x5BEC\n0xECD0\t0x5BE9\n0xECD1\t0x5BEB\n0xECD2\t0x5C64\n0xECD3\t0x5C65\n0xECD4\t0x5D9D\n0xECD5\t0x5D94\n0xECD6\t0x5E62\n0xECD7\t0x5E5F\n0xECD8\t0x5E61\n0xECD9\t0x5EE2\n0xECDA\t0x5EDA\n0xECDB\t0x5EDF\n0xECDC\t0x5EDD\n0xECDD\t0x5EE3\n0xECDE\t0x5EE0\n0xECDF\t0x5F48\n0xECE0\t0x5F71\n0xECE1\t0x5FB7\n0xECE2\t0x5FB5\n0xECE3\t0x6176\n0xECE4\t0x6167\n0xECE5\t0x616E\n0xECE6\t0x615D\n0xECE7\t0x6155\n0xECE8\t0x6182\n0xECE9\t0x617C\n0xECEA\t0x6170\n0xECEB\t0x616B\n0xECEC\t0x617E\n0xECED\t0x61A7\n0xECEE\t0x6190\n0xECEF\t0x61AB\n0xECF0\t0x618E\n0xECF1\t0x61AC\n0xECF2\t0x619A\n0xECF3\t0x61A4\n0xECF4\t0x6194\n0xECF5\t0x61AE\n0xECF6\t0x622E\n0xECF7\t0x6469\n0xECF8\t0x646F\n0xECF9\t0x6479\n0xECFA\t0x649E\n0xECFB\t0x64B2\n0xECFC\t0x6488\n0xECFD\t0x6490\n0xECFE\t0x64B0\n0xEDA1\t0x64A5\n0xEDA2\t0x6493\n0xEDA3\t0x6495\n0xEDA4\t0x64A9\n0xEDA5\t0x6492\n0xEDA6\t0x64AE\n0xEDA7\t0x64AD\n0xEDA8\t0x64AB\n0xEDA9\t0x649A\n0xEDAA\t0x64AC\n0xEDAB\t0x6499\n0xEDAC\t0x64A2\n0xEDAD\t0x64B3\n0xEDAE\t0x6575\n0xEDAF\t0x6577\n0xEDB0\t0x6578\n0xEDB1\t0x66AE\n0xEDB2\t0x66AB\n0xEDB3\t0x66B4\n0xEDB4\t0x66B1\n0xEDB5\t0x6A23\n0xEDB6\t0x6A1F\n0xEDB7\t0x69E8\n0xEDB8\t0x6A01\n0xEDB9\t0x6A1E\n0xEDBA\t0x6A19\n0xEDBB\t0x69FD\n0xEDBC\t0x6A21\n0xEDBD\t0x6A13\n0xEDBE\t0x6A0A\n0xEDBF\t0x69F3\n0xEDC0\t0x6A02\n0xEDC1\t0x6A05\n0xEDC2\t0x69ED\n0xEDC3\t0x6A11\n0xEDC4\t0x6B50\n0xEDC5\t0x6B4E\n0xEDC6\t0x6BA4\n0xEDC7\t0x6BC5\n0xEDC8\t0x6BC6\n0xEDC9\t0x6F3F\n0xEDCA\t0x6F7C\n0xEDCB\t0x6F84\n0xEDCC\t0x6F51\n0xEDCD\t0x6F66\n0xEDCE\t0x6F54\n0xEDCF\t0x6F86\n0xEDD0\t0x6F6D\n0xEDD1\t0x6F5B\n0xEDD2\t0x6F78\n0xEDD3\t0x6F6E\n0xEDD4\t0x6F8E\n0xEDD5\t0x6F7A\n0xEDD6\t0x6F70\n0xEDD7\t0x6F64\n0xEDD8\t0x6F97\n0xEDD9\t0x6F58\n0xEDDA\t0x6ED5\n0xEDDB\t0x6F6F\n0xEDDC\t0x6F60\n0xEDDD\t0x6F5F\n0xEDDE\t0x719F\n0xEDDF\t0x71AC\n0xEDE0\t0x71B1\n0xEDE1\t0x71A8\n0xEDE2\t0x7256\n0xEDE3\t0x729B\n0xEDE4\t0x734E\n0xEDE5\t0x7357\n0xEDE6\t0x7469\n0xEDE7\t0x748B\n0xEDE8\t0x7483\n0xEDE9\t0x747E\n0xEDEA\t0x7480\n0xEDEB\t0x757F\n0xEDEC\t0x7620\n0xEDED\t0x7629\n0xEDEE\t0x761F\n0xEDEF\t0x7624\n0xEDF0\t0x7626\n0xEDF1\t0x7621\n0xEDF2\t0x7622\n0xEDF3\t0x769A\n0xEDF4\t0x76BA\n0xEDF5\t0x76E4\n0xEDF6\t0x778E\n0xEDF7\t0x7787\n0xEDF8\t0x778C\n0xEDF9\t0x7791\n0xEDFA\t0x778B\n0xEDFB\t0x78CB\n0xEDFC\t0x78C5\n0xEDFD\t0x78BA\n0xEDFE\t0x78CA\n0xEEA1\t0x78BE\n0xEEA2\t0x78D5\n0xEEA3\t0x78BC\n0xEEA4\t0x78D0\n0xEEA5\t0x7A3F\n0xEEA6\t0x7A3C\n0xEEA7\t0x7A40\n0xEEA8\t0x7A3D\n0xEEA9\t0x7A37\n0xEEAA\t0x7A3B\n0xEEAB\t0x7AAF\n0xEEAC\t0x7AAE\n0xEEAD\t0x7BAD\n0xEEAE\t0x7BB1\n0xEEAF\t0x7BC4\n0xEEB0\t0x7BB4\n0xEEB1\t0x7BC6\n0xEEB2\t0x7BC7\n0xEEB3\t0x7BC1\n0xEEB4\t0x7BA0\n0xEEB5\t0x7BCC\n0xEEB6\t0x7CCA\n0xEEB7\t0x7DE0\n0xEEB8\t0x7DF4\n0xEEB9\t0x7DEF\n0xEEBA\t0x7DFB\n0xEEBB\t0x7DD8\n0xEEBC\t0x7DEC\n0xEEBD\t0x7DDD\n0xEEBE\t0x7DE8\n0xEEBF\t0x7DE3\n0xEEC0\t0x7DDA\n0xEEC1\t0x7DDE\n0xEEC2\t0x7DE9\n0xEEC3\t0x7D9E\n0xEEC4\t0x7DD9\n0xEEC5\t0x7DF2\n0xEEC6\t0x7DF9\n0xEEC7\t0x7F75\n0xEEC8\t0x7F77\n0xEEC9\t0x7FAF\n0xEECA\t0x7FE9\n0xEECB\t0x8026\n0xEECC\t0x819B\n0xEECD\t0x819C\n0xEECE\t0x819D\n0xEECF\t0x81A0\n0xEED0\t0x819A\n0xEED1\t0x8198\n0xEED2\t0x8517\n0xEED3\t0x853D\n0xEED4\t0x851A\n0xEED5\t0x84EE\n0xEED6\t0x852C\n0xEED7\t0x852D\n0xEED8\t0x8513\n0xEED9\t0x8511\n0xEEDA\t0x8523\n0xEEDB\t0x8521\n0xEEDC\t0x8514\n0xEEDD\t0x84EC\n0xEEDE\t0x8525\n0xEEDF\t0x84FF\n0xEEE0\t0x8506\n0xEEE1\t0x8782\n0xEEE2\t0x8774\n0xEEE3\t0x8776\n0xEEE4\t0x8760\n0xEEE5\t0x8766\n0xEEE6\t0x8778\n0xEEE7\t0x8768\n0xEEE8\t0x8759\n0xEEE9\t0x8757\n0xEEEA\t0x874C\n0xEEEB\t0x8753\n0xEEEC\t0x885B\n0xEEED\t0x885D\n0xEEEE\t0x8910\n0xEEEF\t0x8907\n0xEEF0\t0x8912\n0xEEF1\t0x8913\n0xEEF2\t0x8915\n0xEEF3\t0x890A\n0xEEF4\t0x8ABC\n0xEEF5\t0x8AD2\n0xEEF6\t0x8AC7\n0xEEF7\t0x8AC4\n0xEEF8\t0x8A95\n0xEEF9\t0x8ACB\n0xEEFA\t0x8AF8\n0xEEFB\t0x8AB2\n0xEEFC\t0x8AC9\n0xEEFD\t0x8AC2\n0xEEFE\t0x8ABF\n0xEFA1\t0x8AB0\n0xEFA2\t0x8AD6\n0xEFA3\t0x8ACD\n0xEFA4\t0x8AB6\n0xEFA5\t0x8AB9\n0xEFA6\t0x8ADB\n0xEFA7\t0x8C4C\n0xEFA8\t0x8C4E\n0xEFA9\t0x8C6C\n0xEFAA\t0x8CE0\n0xEFAB\t0x8CDE\n0xEFAC\t0x8CE6\n0xEFAD\t0x8CE4\n0xEFAE\t0x8CEC\n0xEFAF\t0x8CED\n0xEFB0\t0x8CE2\n0xEFB1\t0x8CE3\n0xEFB2\t0x8CDC\n0xEFB3\t0x8CEA\n0xEFB4\t0x8CE1\n0xEFB5\t0x8D6D\n0xEFB6\t0x8D9F\n0xEFB7\t0x8DA3\n0xEFB8\t0x8E2B\n0xEFB9\t0x8E10\n0xEFBA\t0x8E1D\n0xEFBB\t0x8E22\n0xEFBC\t0x8E0F\n0xEFBD\t0x8E29\n0xEFBE\t0x8E1F\n0xEFBF\t0x8E21\n0xEFC0\t0x8E1E\n0xEFC1\t0x8EBA\n0xEFC2\t0x8F1D\n0xEFC3\t0x8F1B\n0xEFC4\t0x8F1F\n0xEFC5\t0x8F29\n0xEFC6\t0x8F26\n0xEFC7\t0x8F2A\n0xEFC8\t0x8F1C\n0xEFC9\t0x8F1E\n0xEFCA\t0x8F25\n0xEFCB\t0x9069\n0xEFCC\t0x906E\n0xEFCD\t0x9068\n0xEFCE\t0x906D\n0xEFCF\t0x9077\n0xEFD0\t0x9130\n0xEFD1\t0x912D\n0xEFD2\t0x9127\n0xEFD3\t0x9131\n0xEFD4\t0x9187\n0xEFD5\t0x9189\n0xEFD6\t0x918B\n0xEFD7\t0x9183\n0xEFD8\t0x92C5\n0xEFD9\t0x92BB\n0xEFDA\t0x92B7\n0xEFDB\t0x92EA\n0xEFDC\t0x92E4\n0xEFDD\t0x92C1\n0xEFDE\t0x92B3\n0xEFDF\t0x92BC\n0xEFE0\t0x92D2\n0xEFE1\t0x92C7\n0xEFE2\t0x92F0\n0xEFE3\t0x92B2\n0xEFE4\t0x95AD\n0xEFE5\t0x95B1\n0xEFE6\t0x9704\n0xEFE7\t0x9706\n0xEFE8\t0x9707\n0xEFE9\t0x9709\n0xEFEA\t0x9760\n0xEFEB\t0x978D\n0xEFEC\t0x978B\n0xEFED\t0x978F\n0xEFEE\t0x9821\n0xEFEF\t0x982B\n0xEFF0\t0x981C\n0xEFF1\t0x98B3\n0xEFF2\t0x990A\n0xEFF3\t0x9913\n0xEFF4\t0x9912\n0xEFF5\t0x9918\n0xEFF6\t0x99DD\n0xEFF7\t0x99D0\n0xEFF8\t0x99DF\n0xEFF9\t0x99DB\n0xEFFA\t0x99D1\n0xEFFB\t0x99D5\n0xEFFC\t0x99D2\n0xEFFD\t0x99D9\n0xEFFE\t0x9AB7\n0xF0A1\t0x9AEE\n0xF0A2\t0x9AEF\n0xF0A3\t0x9B27\n0xF0A4\t0x9B45\n0xF0A5\t0x9B44\n0xF0A6\t0x9B77\n0xF0A7\t0x9B6F\n0xF0A8\t0x9D06\n0xF0A9\t0x9D09\n0xF0AA\t0x9D03\n0xF0AB\t0x9EA9\n0xF0AC\t0x9EBE\n0xF0AD\t0x9ECE\n0xF0AE\t0x58A8\n0xF0AF\t0x9F52\n0xF0B0\t0x5112\n0xF0B1\t0x5118\n0xF0B2\t0x5114\n0xF0B3\t0x5110\n0xF0B4\t0x5115\n0xF0B5\t0x5180\n0xF0B6\t0x51AA\n0xF0B7\t0x51DD\n0xF0B8\t0x5291\n0xF0B9\t0x5293\n0xF0BA\t0x52F3\n0xF0BB\t0x5659\n0xF0BC\t0x566B\n0xF0BD\t0x5679\n0xF0BE\t0x5669\n0xF0BF\t0x5664\n0xF0C0\t0x5678\n0xF0C1\t0x566A\n0xF0C2\t0x5668\n0xF0C3\t0x5665\n0xF0C4\t0x5671\n0xF0C5\t0x566F\n0xF0C6\t0x566C\n0xF0C7\t0x5662\n0xF0C8\t0x5676\n0xF0C9\t0x58C1\n0xF0CA\t0x58BE\n0xF0CB\t0x58C7\n0xF0CC\t0x58C5\n0xF0CD\t0x596E\n0xF0CE\t0x5B1D\n0xF0CF\t0x5B34\n0xF0D0\t0x5B78\n0xF0D1\t0x5BF0\n0xF0D2\t0x5C0E\n0xF0D3\t0x5F4A\n0xF0D4\t0x61B2\n0xF0D5\t0x6191\n0xF0D6\t0x61A9\n0xF0D7\t0x618A\n0xF0D8\t0x61CD\n0xF0D9\t0x61B6\n0xF0DA\t0x61BE\n0xF0DB\t0x61CA\n0xF0DC\t0x61C8\n0xF0DD\t0x6230\n0xF0DE\t0x64C5\n0xF0DF\t0x64C1\n0xF0E0\t0x64CB\n0xF0E1\t0x64BB\n0xF0E2\t0x64BC\n0xF0E3\t0x64DA\n0xF0E4\t0x64C4\n0xF0E5\t0x64C7\n0xF0E6\t0x64C2\n0xF0E7\t0x64CD\n0xF0E8\t0x64BF\n0xF0E9\t0x64D2\n0xF0EA\t0x64D4\n0xF0EB\t0x64BE\n0xF0EC\t0x6574\n0xF0ED\t0x66C6\n0xF0EE\t0x66C9\n0xF0EF\t0x66B9\n0xF0F0\t0x66C4\n0xF0F1\t0x66C7\n0xF0F2\t0x66B8\n0xF0F3\t0x6A3D\n0xF0F4\t0x6A38\n0xF0F5\t0x6A3A\n0xF0F6\t0x6A59\n0xF0F7\t0x6A6B\n0xF0F8\t0x6A58\n0xF0F9\t0x6A39\n0xF0FA\t0x6A44\n0xF0FB\t0x6A62\n0xF0FC\t0x6A61\n0xF0FD\t0x6A4B\n0xF0FE\t0x6A47\n0xF1A1\t0x6A35\n0xF1A2\t0x6A5F\n0xF1A3\t0x6A48\n0xF1A4\t0x6B59\n0xF1A5\t0x6B77\n0xF1A6\t0x6C05\n0xF1A7\t0x6FC2\n0xF1A8\t0x6FB1\n0xF1A9\t0x6FA1\n0xF1AA\t0x6FC3\n0xF1AB\t0x6FA4\n0xF1AC\t0x6FC1\n0xF1AD\t0x6FA7\n0xF1AE\t0x6FB3\n0xF1AF\t0x6FC0\n0xF1B0\t0x6FB9\n0xF1B1\t0x6FB6\n0xF1B2\t0x6FA6\n0xF1B3\t0x6FA0\n0xF1B4\t0x6FB4\n0xF1B5\t0x71BE\n0xF1B6\t0x71C9\n0xF1B7\t0x71D0\n0xF1B8\t0x71D2\n0xF1B9\t0x71C8\n0xF1BA\t0x71D5\n0xF1BB\t0x71B9\n0xF1BC\t0x71CE\n0xF1BD\t0x71D9\n0xF1BE\t0x71DC\n0xF1BF\t0x71C3\n0xF1C0\t0x71C4\n0xF1C1\t0x7368\n0xF1C2\t0x749C\n0xF1C3\t0x74A3\n0xF1C4\t0x7498\n0xF1C5\t0x749F\n0xF1C6\t0x749E\n0xF1C7\t0x74E2\n0xF1C8\t0x750C\n0xF1C9\t0x750D\n0xF1CA\t0x7634\n0xF1CB\t0x7638\n0xF1CC\t0x763A\n0xF1CD\t0x76E7\n0xF1CE\t0x76E5\n0xF1CF\t0x77A0\n0xF1D0\t0x779E\n0xF1D1\t0x779F\n0xF1D2\t0x77A5\n0xF1D3\t0x78E8\n0xF1D4\t0x78DA\n0xF1D5\t0x78EC\n0xF1D6\t0x78E7\n0xF1D7\t0x79A6\n0xF1D8\t0x7A4D\n0xF1D9\t0x7A4E\n0xF1DA\t0x7A46\n0xF1DB\t0x7A4C\n0xF1DC\t0x7A4B\n0xF1DD\t0x7ABA\n0xF1DE\t0x7BD9\n0xF1DF\t0x7C11\n0xF1E0\t0x7BC9\n0xF1E1\t0x7BE4\n0xF1E2\t0x7BDB\n0xF1E3\t0x7BE1\n0xF1E4\t0x7BE9\n0xF1E5\t0x7BE6\n0xF1E6\t0x7CD5\n0xF1E7\t0x7CD6\n0xF1E8\t0x7E0A\n0xF1E9\t0x7E11\n0xF1EA\t0x7E08\n0xF1EB\t0x7E1B\n0xF1EC\t0x7E23\n0xF1ED\t0x7E1E\n0xF1EE\t0x7E1D\n0xF1EF\t0x7E09\n0xF1F0\t0x7E10\n0xF1F1\t0x7F79\n0xF1F2\t0x7FB2\n0xF1F3\t0x7FF0\n0xF1F4\t0x7FF1\n0xF1F5\t0x7FEE\n0xF1F6\t0x8028\n0xF1F7\t0x81B3\n0xF1F8\t0x81A9\n0xF1F9\t0x81A8\n0xF1FA\t0x81FB\n0xF1FB\t0x8208\n0xF1FC\t0x8258\n0xF1FD\t0x8259\n0xF1FE\t0x854A\n0xF2A1\t0x8559\n0xF2A2\t0x8548\n0xF2A3\t0x8568\n0xF2A4\t0x8569\n0xF2A5\t0x8543\n0xF2A6\t0x8549\n0xF2A7\t0x856D\n0xF2A8\t0x856A\n0xF2A9\t0x855E\n0xF2AA\t0x8783\n0xF2AB\t0x879F\n0xF2AC\t0x879E\n0xF2AD\t0x87A2\n0xF2AE\t0x878D\n0xF2AF\t0x8861\n0xF2B0\t0x892A\n0xF2B1\t0x8932\n0xF2B2\t0x8925\n0xF2B3\t0x892B\n0xF2B4\t0x8921\n0xF2B5\t0x89AA\n0xF2B6\t0x89A6\n0xF2B7\t0x8AE6\n0xF2B8\t0x8AFA\n0xF2B9\t0x8AEB\n0xF2BA\t0x8AF1\n0xF2BB\t0x8B00\n0xF2BC\t0x8ADC\n0xF2BD\t0x8AE7\n0xF2BE\t0x8AEE\n0xF2BF\t0x8AFE\n0xF2C0\t0x8B01\n0xF2C1\t0x8B02\n0xF2C2\t0x8AF7\n0xF2C3\t0x8AED\n0xF2C4\t0x8AF3\n0xF2C5\t0x8AF6\n0xF2C6\t0x8AFC\n0xF2C7\t0x8C6B\n0xF2C8\t0x8C6D\n0xF2C9\t0x8C93\n0xF2CA\t0x8CF4\n0xF2CB\t0x8E44\n0xF2CC\t0x8E31\n0xF2CD\t0x8E34\n0xF2CE\t0x8E42\n0xF2CF\t0x8E39\n0xF2D0\t0x8E35\n0xF2D1\t0x8F3B\n0xF2D2\t0x8F2F\n0xF2D3\t0x8F38\n0xF2D4\t0x8F33\n0xF2D5\t0x8FA8\n0xF2D6\t0x8FA6\n0xF2D7\t0x9075\n0xF2D8\t0x9074\n0xF2D9\t0x9078\n0xF2DA\t0x9072\n0xF2DB\t0x907C\n0xF2DC\t0x907A\n0xF2DD\t0x9134\n0xF2DE\t0x9192\n0xF2DF\t0x9320\n0xF2E0\t0x9336\n0xF2E1\t0x92F8\n0xF2E2\t0x9333\n0xF2E3\t0x932F\n0xF2E4\t0x9322\n0xF2E5\t0x92FC\n0xF2E6\t0x932B\n0xF2E7\t0x9304\n0xF2E8\t0x931A\n0xF2E9\t0x9310\n0xF2EA\t0x9326\n0xF2EB\t0x9321\n0xF2EC\t0x9315\n0xF2ED\t0x932E\n0xF2EE\t0x9319\n0xF2EF\t0x95BB\n0xF2F0\t0x96A7\n0xF2F1\t0x96A8\n0xF2F2\t0x96AA\n0xF2F3\t0x96D5\n0xF2F4\t0x970E\n0xF2F5\t0x9711\n0xF2F6\t0x9716\n0xF2F7\t0x970D\n0xF2F8\t0x9713\n0xF2F9\t0x970F\n0xF2FA\t0x975B\n0xF2FB\t0x975C\n0xF2FC\t0x9766\n0xF2FD\t0x9798\n0xF2FE\t0x9830\n0xF3A1\t0x9838\n0xF3A2\t0x983B\n0xF3A3\t0x9837\n0xF3A4\t0x982D\n0xF3A5\t0x9839\n0xF3A6\t0x9824\n0xF3A7\t0x9910\n0xF3A8\t0x9928\n0xF3A9\t0x991E\n0xF3AA\t0x991B\n0xF3AB\t0x9921\n0xF3AC\t0x991A\n0xF3AD\t0x99ED\n0xF3AE\t0x99E2\n0xF3AF\t0x99F1\n0xF3B0\t0x9AB8\n0xF3B1\t0x9ABC\n0xF3B2\t0x9AFB\n0xF3B3\t0x9AED\n0xF3B4\t0x9B28\n0xF3B5\t0x9B91\n0xF3B6\t0x9D15\n0xF3B7\t0x9D23\n0xF3B8\t0x9D26\n0xF3B9\t0x9D28\n0xF3BA\t0x9D12\n0xF3BB\t0x9D1B\n0xF3BC\t0x9ED8\n0xF3BD\t0x9ED4\n0xF3BE\t0x9F8D\n0xF3BF\t0x9F9C\n0xF3C0\t0x512A\n0xF3C1\t0x511F\n0xF3C2\t0x5121\n0xF3C3\t0x5132\n0xF3C4\t0x52F5\n0xF3C5\t0x568E\n0xF3C6\t0x5680\n0xF3C7\t0x5690\n0xF3C8\t0x5685\n0xF3C9\t0x5687\n0xF3CA\t0x568F\n0xF3CB\t0x58D5\n0xF3CC\t0x58D3\n0xF3CD\t0x58D1\n0xF3CE\t0x58CE\n0xF3CF\t0x5B30\n0xF3D0\t0x5B2A\n0xF3D1\t0x5B24\n0xF3D2\t0x5B7A\n0xF3D3\t0x5C37\n0xF3D4\t0x5C68\n0xF3D5\t0x5DBC\n0xF3D6\t0x5DBA\n0xF3D7\t0x5DBD\n0xF3D8\t0x5DB8\n0xF3D9\t0x5E6B\n0xF3DA\t0x5F4C\n0xF3DB\t0x5FBD\n0xF3DC\t0x61C9\n0xF3DD\t0x61C2\n0xF3DE\t0x61C7\n0xF3DF\t0x61E6\n0xF3E0\t0x61CB\n0xF3E1\t0x6232\n0xF3E2\t0x6234\n0xF3E3\t0x64CE\n0xF3E4\t0x64CA\n0xF3E5\t0x64D8\n0xF3E6\t0x64E0\n0xF3E7\t0x64F0\n0xF3E8\t0x64E6\n0xF3E9\t0x64EC\n0xF3EA\t0x64F1\n0xF3EB\t0x64E2\n0xF3EC\t0x64ED\n0xF3ED\t0x6582\n0xF3EE\t0x6583\n0xF3EF\t0x66D9\n0xF3F0\t0x66D6\n0xF3F1\t0x6A80\n0xF3F2\t0x6A94\n0xF3F3\t0x6A84\n0xF3F4\t0x6AA2\n0xF3F5\t0x6A9C\n0xF3F6\t0x6ADB\n0xF3F7\t0x6AA3\n0xF3F8\t0x6A7E\n0xF3F9\t0x6A97\n0xF3FA\t0x6A90\n0xF3FB\t0x6AA0\n0xF3FC\t0x6B5C\n0xF3FD\t0x6BAE\n0xF3FE\t0x6BDA\n0xF4A1\t0x6C08\n0xF4A2\t0x6FD8\n0xF4A3\t0x6FF1\n0xF4A4\t0x6FDF\n0xF4A5\t0x6FE0\n0xF4A6\t0x6FDB\n0xF4A7\t0x6FE4\n0xF4A8\t0x6FEB\n0xF4A9\t0x6FEF\n0xF4AA\t0x6F80\n0xF4AB\t0x6FEC\n0xF4AC\t0x6FE1\n0xF4AD\t0x6FE9\n0xF4AE\t0x6FD5\n0xF4AF\t0x6FEE\n0xF4B0\t0x6FF0\n0xF4B1\t0x71E7\n0xF4B2\t0x71DF\n0xF4B3\t0x71EE\n0xF4B4\t0x71E6\n0xF4B5\t0x71E5\n0xF4B6\t0x71ED\n0xF4B7\t0x71EC\n0xF4B8\t0x71F4\n0xF4B9\t0x71E0\n0xF4BA\t0x7235\n0xF4BB\t0x7246\n0xF4BC\t0x7370\n0xF4BD\t0x7372\n0xF4BE\t0x74A9\n0xF4BF\t0x74B0\n0xF4C0\t0x74A6\n0xF4C1\t0x74A8\n0xF4C2\t0x7646\n0xF4C3\t0x7642\n0xF4C4\t0x764C\n0xF4C5\t0x76EA\n0xF4C6\t0x77B3\n0xF4C7\t0x77AA\n0xF4C8\t0x77B0\n0xF4C9\t0x77AC\n0xF4CA\t0x77A7\n0xF4CB\t0x77AD\n0xF4CC\t0x77EF\n0xF4CD\t0x78F7\n0xF4CE\t0x78FA\n0xF4CF\t0x78F4\n0xF4D0\t0x78EF\n0xF4D1\t0x7901\n0xF4D2\t0x79A7\n0xF4D3\t0x79AA\n0xF4D4\t0x7A57\n0xF4D5\t0x7ABF\n0xF4D6\t0x7C07\n0xF4D7\t0x7C0D\n0xF4D8\t0x7BFE\n0xF4D9\t0x7BF7\n0xF4DA\t0x7C0C\n0xF4DB\t0x7BE0\n0xF4DC\t0x7CE0\n0xF4DD\t0x7CDC\n0xF4DE\t0x7CDE\n0xF4DF\t0x7CE2\n0xF4E0\t0x7CDF\n0xF4E1\t0x7CD9\n0xF4E2\t0x7CDD\n0xF4E3\t0x7E2E\n0xF4E4\t0x7E3E\n0xF4E5\t0x7E46\n0xF4E6\t0x7E37\n0xF4E7\t0x7E32\n0xF4E8\t0x7E43\n0xF4E9\t0x7E2B\n0xF4EA\t0x7E3D\n0xF4EB\t0x7E31\n0xF4EC\t0x7E45\n0xF4ED\t0x7E41\n0xF4EE\t0x7E34\n0xF4EF\t0x7E39\n0xF4F0\t0x7E48\n0xF4F1\t0x7E35\n0xF4F2\t0x7E3F\n0xF4F3\t0x7E2F\n0xF4F4\t0x7F44\n0xF4F5\t0x7FF3\n0xF4F6\t0x7FFC\n0xF4F7\t0x8071\n0xF4F8\t0x8072\n0xF4F9\t0x8070\n0xF4FA\t0x806F\n0xF4FB\t0x8073\n0xF4FC\t0x81C6\n0xF4FD\t0x81C3\n0xF4FE\t0x81BA\n0xF5A1\t0x81C2\n0xF5A2\t0x81C0\n0xF5A3\t0x81BF\n0xF5A4\t0x81BD\n0xF5A5\t0x81C9\n0xF5A6\t0x81BE\n0xF5A7\t0x81E8\n0xF5A8\t0x8209\n0xF5A9\t0x8271\n0xF5AA\t0x85AA\n0xF5AB\t0x8584\n0xF5AC\t0x857E\n0xF5AD\t0x859C\n0xF5AE\t0x8591\n0xF5AF\t0x8594\n0xF5B0\t0x85AF\n0xF5B1\t0x859B\n0xF5B2\t0x8587\n0xF5B3\t0x85A8\n0xF5B4\t0x858A\n0xF5B5\t0x85A6\n0xF5B6\t0x8667\n0xF5B7\t0x87C0\n0xF5B8\t0x87D1\n0xF5B9\t0x87B3\n0xF5BA\t0x87D2\n0xF5BB\t0x87C6\n0xF5BC\t0x87AB\n0xF5BD\t0x87BB\n0xF5BE\t0x87BA\n0xF5BF\t0x87C8\n0xF5C0\t0x87CB\n0xF5C1\t0x893B\n0xF5C2\t0x8936\n0xF5C3\t0x8944\n0xF5C4\t0x8938\n0xF5C5\t0x893D\n0xF5C6\t0x89AC\n0xF5C7\t0x8B0E\n0xF5C8\t0x8B17\n0xF5C9\t0x8B19\n0xF5CA\t0x8B1B\n0xF5CB\t0x8B0A\n0xF5CC\t0x8B20\n0xF5CD\t0x8B1D\n0xF5CE\t0x8B04\n0xF5CF\t0x8B10\n0xF5D0\t0x8C41\n0xF5D1\t0x8C3F\n0xF5D2\t0x8C73\n0xF5D3\t0x8CFA\n0xF5D4\t0x8CFD\n0xF5D5\t0x8CFC\n0xF5D6\t0x8CF8\n0xF5D7\t0x8CFB\n0xF5D8\t0x8DA8\n0xF5D9\t0x8E49\n0xF5DA\t0x8E4B\n0xF5DB\t0x8E48\n0xF5DC\t0x8E4A\n0xF5DD\t0x8F44\n0xF5DE\t0x8F3E\n0xF5DF\t0x8F42\n0xF5E0\t0x8F45\n0xF5E1\t0x8F3F\n0xF5E2\t0x907F\n0xF5E3\t0x907D\n0xF5E4\t0x9084\n0xF5E5\t0x9081\n0xF5E6\t0x9082\n0xF5E7\t0x9080\n0xF5E8\t0x9139\n0xF5E9\t0x91A3\n0xF5EA\t0x919E\n0xF5EB\t0x919C\n0xF5EC\t0x934D\n0xF5ED\t0x9382\n0xF5EE\t0x9328\n0xF5EF\t0x9375\n0xF5F0\t0x934A\n0xF5F1\t0x9365\n0xF5F2\t0x934B\n0xF5F3\t0x9318\n0xF5F4\t0x937E\n0xF5F5\t0x936C\n0xF5F6\t0x935B\n0xF5F7\t0x9370\n0xF5F8\t0x935A\n0xF5F9\t0x9354\n0xF5FA\t0x95CA\n0xF5FB\t0x95CB\n0xF5FC\t0x95CC\n0xF5FD\t0x95C8\n0xF5FE\t0x95C6\n0xF6A1\t0x96B1\n0xF6A2\t0x96B8\n0xF6A3\t0x96D6\n0xF6A4\t0x971C\n0xF6A5\t0x971E\n0xF6A6\t0x97A0\n0xF6A7\t0x97D3\n0xF6A8\t0x9846\n0xF6A9\t0x98B6\n0xF6AA\t0x9935\n0xF6AB\t0x9A01\n0xF6AC\t0x99FF\n0xF6AD\t0x9BAE\n0xF6AE\t0x9BAB\n0xF6AF\t0x9BAA\n0xF6B0\t0x9BAD\n0xF6B1\t0x9D3B\n0xF6B2\t0x9D3F\n0xF6B3\t0x9E8B\n0xF6B4\t0x9ECF\n0xF6B5\t0x9EDE\n0xF6B6\t0x9EDC\n0xF6B7\t0x9EDD\n0xF6B8\t0x9EDB\n0xF6B9\t0x9F3E\n0xF6BA\t0x9F4B\n0xF6BB\t0x53E2\n0xF6BC\t0x5695\n0xF6BD\t0x56AE\n0xF6BE\t0x58D9\n0xF6BF\t0x58D8\n0xF6C0\t0x5B38\n0xF6C1\t0x5F5E\n0xF6C2\t0x61E3\n0xF6C3\t0x6233\n0xF6C4\t0x64F4\n0xF6C5\t0x64F2\n0xF6C6\t0x64FE\n0xF6C7\t0x6506\n0xF6C8\t0x64FA\n0xF6C9\t0x64FB\n0xF6CA\t0x64F7\n0xF6CB\t0x65B7\n0xF6CC\t0x66DC\n0xF6CD\t0x6726\n0xF6CE\t0x6AB3\n0xF6CF\t0x6AAC\n0xF6D0\t0x6AC3\n0xF6D1\t0x6ABB\n0xF6D2\t0x6AB8\n0xF6D3\t0x6AC2\n0xF6D4\t0x6AAE\n0xF6D5\t0x6AAF\n0xF6D6\t0x6B5F\n0xF6D7\t0x6B78\n0xF6D8\t0x6BAF\n0xF6D9\t0x7009\n0xF6DA\t0x700B\n0xF6DB\t0x6FFE\n0xF6DC\t0x7006\n0xF6DD\t0x6FFA\n0xF6DE\t0x7011\n0xF6DF\t0x700F\n0xF6E0\t0x71FB\n0xF6E1\t0x71FC\n0xF6E2\t0x71FE\n0xF6E3\t0x71F8\n0xF6E4\t0x7377\n0xF6E5\t0x7375\n0xF6E6\t0x74A7\n0xF6E7\t0x74BF\n0xF6E8\t0x7515\n0xF6E9\t0x7656\n0xF6EA\t0x7658\n0xF6EB\t0x7652\n0xF6EC\t0x77BD\n0xF6ED\t0x77BF\n0xF6EE\t0x77BB\n0xF6EF\t0x77BC\n0xF6F0\t0x790E\n0xF6F1\t0x79AE\n0xF6F2\t0x7A61\n0xF6F3\t0x7A62\n0xF6F4\t0x7A60\n0xF6F5\t0x7AC4\n0xF6F6\t0x7AC5\n0xF6F7\t0x7C2B\n0xF6F8\t0x7C27\n0xF6F9\t0x7C2A\n0xF6FA\t0x7C1E\n0xF6FB\t0x7C23\n0xF6FC\t0x7C21\n0xF6FD\t0x7CE7\n0xF6FE\t0x7E54\n0xF7A1\t0x7E55\n0xF7A2\t0x7E5E\n0xF7A3\t0x7E5A\n0xF7A4\t0x7E61\n0xF7A5\t0x7E52\n0xF7A6\t0x7E59\n0xF7A7\t0x7F48\n0xF7A8\t0x7FF9\n0xF7A9\t0x7FFB\n0xF7AA\t0x8077\n0xF7AB\t0x8076\n0xF7AC\t0x81CD\n0xF7AD\t0x81CF\n0xF7AE\t0x820A\n0xF7AF\t0x85CF\n0xF7B0\t0x85A9\n0xF7B1\t0x85CD\n0xF7B2\t0x85D0\n0xF7B3\t0x85C9\n0xF7B4\t0x85B0\n0xF7B5\t0x85BA\n0xF7B6\t0x85B9\n0xF7B7\t0x87EF\n0xF7B8\t0x87EC\n0xF7B9\t0x87F2\n0xF7BA\t0x87E0\n0xF7BB\t0x8986\n0xF7BC\t0x89B2\n0xF7BD\t0x89F4\n0xF7BE\t0x8B28\n0xF7BF\t0x8B39\n0xF7C0\t0x8B2C\n0xF7C1\t0x8B2B\n0xF7C2\t0x8C50\n0xF7C3\t0x8D05\n0xF7C4\t0x8E59\n0xF7C5\t0x8E63\n0xF7C6\t0x8E66\n0xF7C7\t0x8E64\n0xF7C8\t0x8E5F\n0xF7C9\t0x8E55\n0xF7CA\t0x8EC0\n0xF7CB\t0x8F49\n0xF7CC\t0x8F4D\n0xF7CD\t0x9087\n0xF7CE\t0x9083\n0xF7CF\t0x9088\n0xF7D0\t0x91AB\n0xF7D1\t0x91AC\n0xF7D2\t0x91D0\n0xF7D3\t0x9394\n0xF7D4\t0x938A\n0xF7D5\t0x9396\n0xF7D6\t0x93A2\n0xF7D7\t0x93B3\n0xF7D8\t0x93AE\n0xF7D9\t0x93AC\n0xF7DA\t0x93B0\n0xF7DB\t0x9398\n0xF7DC\t0x939A\n0xF7DD\t0x9397\n0xF7DE\t0x95D4\n0xF7DF\t0x95D6\n0xF7E0\t0x95D0\n0xF7E1\t0x95D5\n0xF7E2\t0x96E2\n0xF7E3\t0x96DC\n0xF7E4\t0x96D9\n0xF7E5\t0x96DB\n0xF7E6\t0x96DE\n0xF7E7\t0x9724\n0xF7E8\t0x97A3\n0xF7E9\t0x97A6\n0xF7EA\t0x97AD\n0xF7EB\t0x97F9\n0xF7EC\t0x984D\n0xF7ED\t0x984F\n0xF7EE\t0x984C\n0xF7EF\t0x984E\n0xF7F0\t0x9853\n0xF7F1\t0x98BA\n0xF7F2\t0x993E\n0xF7F3\t0x993F\n0xF7F4\t0x993D\n0xF7F5\t0x992E\n0xF7F6\t0x99A5\n0xF7F7\t0x9A0E\n0xF7F8\t0x9AC1\n0xF7F9\t0x9B03\n0xF7FA\t0x9B06\n0xF7FB\t0x9B4F\n0xF7FC\t0x9B4E\n0xF7FD\t0x9B4D\n0xF7FE\t0x9BCA\n0xF8A1\t0x9BC9\n0xF8A2\t0x9BFD\n0xF8A3\t0x9BC8\n0xF8A4\t0x9BC0\n0xF8A5\t0x9D51\n0xF8A6\t0x9D5D\n0xF8A7\t0x9D60\n0xF8A8\t0x9EE0\n0xF8A9\t0x9F15\n0xF8AA\t0x9F2C\n0xF8AB\t0x5133\n0xF8AC\t0x56A5\n0xF8AD\t0x56A8\n0xF8AE\t0x58DE\n0xF8AF\t0x58DF\n0xF8B0\t0x58E2\n0xF8B1\t0x5BF5\n0xF8B2\t0x9F90\n0xF8B3\t0x5EEC\n0xF8B4\t0x61F2\n0xF8B5\t0x61F7\n0xF8B6\t0x61F6\n0xF8B7\t0x61F5\n0xF8B8\t0x6500\n0xF8B9\t0x650F\n0xF8BA\t0x66E0\n0xF8BB\t0x66DD\n0xF8BC\t0x6AE5\n0xF8BD\t0x6ADD\n0xF8BE\t0x6ADA\n0xF8BF\t0x6AD3\n0xF8C0\t0x701B\n0xF8C1\t0x701F\n0xF8C2\t0x7028\n0xF8C3\t0x701A\n0xF8C4\t0x701D\n0xF8C5\t0x7015\n0xF8C6\t0x7018\n0xF8C7\t0x7206\n0xF8C8\t0x720D\n0xF8C9\t0x7258\n0xF8CA\t0x72A2\n0xF8CB\t0x7378\n0xF8CC\t0x737A\n0xF8CD\t0x74BD\n0xF8CE\t0x74CA\n0xF8CF\t0x74E3\n0xF8D0\t0x7587\n0xF8D1\t0x7586\n0xF8D2\t0x765F\n0xF8D3\t0x7661\n0xF8D4\t0x77C7\n0xF8D5\t0x7919\n0xF8D6\t0x79B1\n0xF8D7\t0x7A6B\n0xF8D8\t0x7A69\n0xF8D9\t0x7C3E\n0xF8DA\t0x7C3F\n0xF8DB\t0x7C38\n0xF8DC\t0x7C3D\n0xF8DD\t0x7C37\n0xF8DE\t0x7C40\n0xF8DF\t0x7E6B\n0xF8E0\t0x7E6D\n0xF8E1\t0x7E79\n0xF8E2\t0x7E69\n0xF8E3\t0x7E6A\n0xF8E4\t0x7E73\n0xF8E5\t0x7F85\n0xF8E6\t0x7FB6\n0xF8E7\t0x7FB9\n0xF8E8\t0x7FB8\n0xF8E9\t0x81D8\n0xF8EA\t0x85E9\n0xF8EB\t0x85DD\n0xF8EC\t0x85EA\n0xF8ED\t0x85D5\n0xF8EE\t0x85E4\n0xF8EF\t0x85E5\n0xF8F0\t0x85F7\n0xF8F1\t0x87FB\n0xF8F2\t0x8805\n0xF8F3\t0x880D\n0xF8F4\t0x87F9\n0xF8F5\t0x87FE\n0xF8F6\t0x8960\n0xF8F7\t0x895F\n0xF8F8\t0x8956\n0xF8F9\t0x895E\n0xF8FA\t0x8B41\n0xF8FB\t0x8B5C\n0xF8FC\t0x8B58\n0xF8FD\t0x8B49\n0xF8FE\t0x8B5A\n0xF9A1\t0x8B4E\n0xF9A2\t0x8B4F\n0xF9A3\t0x8B46\n0xF9A4\t0x8B59\n0xF9A5\t0x8D08\n0xF9A6\t0x8D0A\n0xF9A7\t0x8E7C\n0xF9A8\t0x8E72\n0xF9A9\t0x8E87\n0xF9AA\t0x8E76\n0xF9AB\t0x8E6C\n0xF9AC\t0x8E7A\n0xF9AD\t0x8E74\n0xF9AE\t0x8F54\n0xF9AF\t0x8F4E\n0xF9B0\t0x8FAD\n0xF9B1\t0x908A\n0xF9B2\t0x908B\n0xF9B3\t0x91B1\n0xF9B4\t0x91AE\n0xF9B5\t0x93E1\n0xF9B6\t0x93D1\n0xF9B7\t0x93DF\n0xF9B8\t0x93C3\n0xF9B9\t0x93C8\n0xF9BA\t0x93DC\n0xF9BB\t0x93DD\n0xF9BC\t0x93D6\n0xF9BD\t0x93E2\n0xF9BE\t0x93CD\n0xF9BF\t0x93D8\n0xF9C0\t0x93E4\n0xF9C1\t0x93D7\n0xF9C2\t0x93E8\n0xF9C3\t0x95DC\n0xF9C4\t0x96B4\n0xF9C5\t0x96E3\n0xF9C6\t0x972A\n0xF9C7\t0x9727\n0xF9C8\t0x9761\n0xF9C9\t0x97DC\n0xF9CA\t0x97FB\n0xF9CB\t0x985E\n0xF9CC\t0x9858\n0xF9CD\t0x985B\n0xF9CE\t0x98BC\n0xF9CF\t0x9945\n0xF9D0\t0x9949\n0xF9D1\t0x9A16\n0xF9D2\t0x9A19\n0xF9D3\t0x9B0D\n0xF9D4\t0x9BE8\n0xF9D5\t0x9BE7\n0xF9D6\t0x9BD6\n0xF9D7\t0x9BDB\n0xF9D8\t0x9D89\n0xF9D9\t0x9D61\n0xF9DA\t0x9D72\n0xF9DB\t0x9D6A\n0xF9DC\t0x9D6C\n0xF9DD\t0x9E92\n0xF9DE\t0x9E97\n0xF9DF\t0x9E93\n0xF9E0\t0x9EB4\n0xF9E1\t0x52F8\n0xF9E2\t0x56B7\n0xF9E3\t0x56B6\n0xF9E4\t0x56B4\n0xF9E5\t0x56BC\n0xF9E6\t0x58E4\n0xF9E7\t0x5B40\n0xF9E8\t0x5B43\n0xF9E9\t0x5B7D\n0xF9EA\t0x5BF6\n0xF9EB\t0x5DC9\n0xF9EC\t0x61F8\n0xF9ED\t0x61FA\n0xF9EE\t0x6518\n0xF9EF\t0x6514\n0xF9F0\t0x6519\n0xF9F1\t0x66E6\n0xF9F2\t0x6727\n0xF9F3\t0x6AEC\n0xF9F4\t0x703E\n0xF9F5\t0x7030\n0xF9F6\t0x7032\n0xF9F7\t0x7210\n0xF9F8\t0x737B\n0xF9F9\t0x74CF\n0xF9FA\t0x7662\n0xF9FB\t0x7665\n0xF9FC\t0x7926\n0xF9FD\t0x792A\n0xF9FE\t0x792C\n0xFAA1\t0x792B\n0xFAA2\t0x7AC7\n0xFAA3\t0x7AF6\n0xFAA4\t0x7C4C\n0xFAA5\t0x7C43\n0xFAA6\t0x7C4D\n0xFAA7\t0x7CEF\n0xFAA8\t0x7CF0\n0xFAA9\t0x8FAE\n0xFAAA\t0x7E7D\n0xFAAB\t0x7E7C\n0xFAAC\t0x7E82\n0xFAAD\t0x7F4C\n0xFAAE\t0x8000\n0xFAAF\t0x81DA\n0xFAB0\t0x8266\n0xFAB1\t0x85FB\n0xFAB2\t0x85F9\n0xFAB3\t0x8611\n0xFAB4\t0x85FA\n0xFAB5\t0x8606\n0xFAB6\t0x860B\n0xFAB7\t0x8607\n0xFAB8\t0x860A\n0xFAB9\t0x8814\n0xFABA\t0x8815\n0xFABB\t0x8964\n0xFABC\t0x89BA\n0xFABD\t0x89F8\n0xFABE\t0x8B70\n0xFABF\t0x8B6C\n0xFAC0\t0x8B66\n0xFAC1\t0x8B6F\n0xFAC2\t0x8B5F\n0xFAC3\t0x8B6B\n0xFAC4\t0x8D0F\n0xFAC5\t0x8D0D\n0xFAC6\t0x8E89\n0xFAC7\t0x8E81\n0xFAC8\t0x8E85\n0xFAC9\t0x8E82\n0xFACA\t0x91B4\n0xFACB\t0x91CB\n0xFACC\t0x9418\n0xFACD\t0x9403\n0xFACE\t0x93FD\n0xFACF\t0x95E1\n0xFAD0\t0x9730\n0xFAD1\t0x98C4\n0xFAD2\t0x9952\n0xFAD3\t0x9951\n0xFAD4\t0x99A8\n0xFAD5\t0x9A2B\n0xFAD6\t0x9A30\n0xFAD7\t0x9A37\n0xFAD8\t0x9A35\n0xFAD9\t0x9C13\n0xFADA\t0x9C0D\n0xFADB\t0x9E79\n0xFADC\t0x9EB5\n0xFADD\t0x9EE8\n0xFADE\t0x9F2F\n0xFADF\t0x9F5F\n0xFAE0\t0x9F63\n0xFAE1\t0x9F61\n0xFAE2\t0x5137\n0xFAE3\t0x5138\n0xFAE4\t0x56C1\n0xFAE5\t0x56C0\n0xFAE6\t0x56C2\n0xFAE7\t0x5914\n0xFAE8\t0x5C6C\n0xFAE9\t0x5DCD\n0xFAEA\t0x61FC\n0xFAEB\t0x61FE\n0xFAEC\t0x651D\n0xFAED\t0x651C\n0xFAEE\t0x6595\n0xFAEF\t0x66E9\n0xFAF0\t0x6AFB\n0xFAF1\t0x6B04\n0xFAF2\t0x6AFA\n0xFAF3\t0x6BB2\n0xFAF4\t0x704C\n0xFAF5\t0x721B\n0xFAF6\t0x72A7\n0xFAF7\t0x74D6\n0xFAF8\t0x74D4\n0xFAF9\t0x7669\n0xFAFA\t0x77D3\n0xFAFB\t0x7C50\n0xFAFC\t0x7E8F\n0xFAFD\t0x7E8C\n0xFAFE\t0x7FBC\n0xFBA1\t0x8617\n0xFBA2\t0x862D\n0xFBA3\t0x861A\n0xFBA4\t0x8823\n0xFBA5\t0x8822\n0xFBA6\t0x8821\n0xFBA7\t0x881F\n0xFBA8\t0x896A\n0xFBA9\t0x896C\n0xFBAA\t0x89BD\n0xFBAB\t0x8B74\n0xFBAC\t0x8B77\n0xFBAD\t0x8B7D\n0xFBAE\t0x8D13\n0xFBAF\t0x8E8A\n0xFBB0\t0x8E8D\n0xFBB1\t0x8E8B\n0xFBB2\t0x8F5F\n0xFBB3\t0x8FAF\n0xFBB4\t0x91BA\n0xFBB5\t0x942E\n0xFBB6\t0x9433\n0xFBB7\t0x9435\n0xFBB8\t0x943A\n0xFBB9\t0x9438\n0xFBBA\t0x9432\n0xFBBB\t0x942B\n0xFBBC\t0x95E2\n0xFBBD\t0x9738\n0xFBBE\t0x9739\n0xFBBF\t0x9732\n0xFBC0\t0x97FF\n0xFBC1\t0x9867\n0xFBC2\t0x9865\n0xFBC3\t0x9957\n0xFBC4\t0x9A45\n0xFBC5\t0x9A43\n0xFBC6\t0x9A40\n0xFBC7\t0x9A3E\n0xFBC8\t0x9ACF\n0xFBC9\t0x9B54\n0xFBCA\t0x9B51\n0xFBCB\t0x9C2D\n0xFBCC\t0x9C25\n0xFBCD\t0x9DAF\n0xFBCE\t0x9DB4\n0xFBCF\t0x9DC2\n0xFBD0\t0x9DB8\n0xFBD1\t0x9E9D\n0xFBD2\t0x9EEF\n0xFBD3\t0x9F19\n0xFBD4\t0x9F5C\n0xFBD5\t0x9F66\n0xFBD6\t0x9F67\n0xFBD7\t0x513C\n0xFBD8\t0x513B\n0xFBD9\t0x56C8\n0xFBDA\t0x56CA\n0xFBDB\t0x56C9\n0xFBDC\t0x5B7F\n0xFBDD\t0x5DD4\n0xFBDE\t0x5DD2\n0xFBDF\t0x5F4E\n0xFBE0\t0x61FF\n0xFBE1\t0x6524\n0xFBE2\t0x6B0A\n0xFBE3\t0x6B61\n0xFBE4\t0x7051\n0xFBE5\t0x7058\n0xFBE6\t0x7380\n0xFBE7\t0x74E4\n0xFBE8\t0x758A\n0xFBE9\t0x766E\n0xFBEA\t0x766C\n0xFBEB\t0x79B3\n0xFBEC\t0x7C60\n0xFBED\t0x7C5F\n0xFBEE\t0x807E\n0xFBEF\t0x807D\n0xFBF0\t0x81DF\n0xFBF1\t0x8972\n0xFBF2\t0x896F\n0xFBF3\t0x89FC\n0xFBF4\t0x8B80\n0xFBF5\t0x8D16\n0xFBF6\t0x8D17\n0xFBF7\t0x8E91\n0xFBF8\t0x8E93\n0xFBF9\t0x8F61\n0xFBFA\t0x9148\n0xFBFB\t0x9444\n0xFBFC\t0x9451\n0xFBFD\t0x9452\n0xFBFE\t0x973D\n0xFCA1\t0x973E\n0xFCA2\t0x97C3\n0xFCA3\t0x97C1\n0xFCA4\t0x986B\n0xFCA5\t0x9955\n0xFCA6\t0x9A55\n0xFCA7\t0x9A4D\n0xFCA8\t0x9AD2\n0xFCA9\t0x9B1A\n0xFCAA\t0x9C49\n0xFCAB\t0x9C31\n0xFCAC\t0x9C3E\n0xFCAD\t0x9C3B\n0xFCAE\t0x9DD3\n0xFCAF\t0x9DD7\n0xFCB0\t0x9F34\n0xFCB1\t0x9F6C\n0xFCB2\t0x9F6A\n0xFCB3\t0x9F94\n0xFCB4\t0x56CC\n0xFCB5\t0x5DD6\n0xFCB6\t0x6200\n0xFCB7\t0x6523\n0xFCB8\t0x652B\n0xFCB9\t0x652A\n0xFCBA\t0x66EC\n0xFCBB\t0x6B10\n0xFCBC\t0x74DA\n0xFCBD\t0x7ACA\n0xFCBE\t0x7C64\n0xFCBF\t0x7C63\n0xFCC0\t0x7C65\n0xFCC1\t0x7E93\n0xFCC2\t0x7E96\n0xFCC3\t0x7E94\n0xFCC4\t0x81E2\n0xFCC5\t0x8638\n0xFCC6\t0x863F\n0xFCC7\t0x8831\n0xFCC8\t0x8B8A\n0xFCC9\t0x9090\n0xFCCA\t0x908F\n0xFCCB\t0x9463\n0xFCCC\t0x9460\n0xFCCD\t0x9464\n0xFCCE\t0x9768\n0xFCCF\t0x986F\n0xFCD0\t0x995C\n0xFCD1\t0x9A5A\n0xFCD2\t0x9A5B\n0xFCD3\t0x9A57\n0xFCD4\t0x9AD3\n0xFCD5\t0x9AD4\n0xFCD6\t0x9AD1\n0xFCD7\t0x9C54\n0xFCD8\t0x9C57\n0xFCD9\t0x9C56\n0xFCDA\t0x9DE5\n0xFCDB\t0x9E9F\n0xFCDC\t0x9EF4\n0xFCDD\t0x56D1\n0xFCDE\t0x58E9\n0xFCDF\t0x652C\n0xFCE0\t0x705E\n0xFCE1\t0x7671\n0xFCE2\t0x7672\n0xFCE3\t0x77D7\n0xFCE4\t0x7F50\n0xFCE5\t0x7F88\n0xFCE6\t0x8836\n0xFCE7\t0x8839\n0xFCE8\t0x8862\n0xFCE9\t0x8B93\n0xFCEA\t0x8B92\n0xFCEB\t0x8B96\n0xFCEC\t0x8277\n0xFCED\t0x8D1B\n0xFCEE\t0x91C0\n0xFCEF\t0x946A\n0xFCF0\t0x9742\n0xFCF1\t0x9748\n0xFCF2\t0x9744\n0xFCF3\t0x97C6\n0xFCF4\t0x9870\n0xFCF5\t0x9A5F\n0xFCF6\t0x9B22\n0xFCF7\t0x9B58\n0xFCF8\t0x9C5F\n0xFCF9\t0x9DF9\n0xFCFA\t0x9DFA\n0xFCFB\t0x9E7C\n0xFCFC\t0x9E7D\n0xFCFD\t0x9F07\n0xFCFE\t0x9F77\n0xFDA1\t0x9F72\n0xFDA2\t0x5EF3\n0xFDA3\t0x6B16\n0xFDA4\t0x7063\n0xFDA5\t0x7C6C\n0xFDA6\t0x7C6E\n0xFDA7\t0x883B\n0xFDA8\t0x89C0\n0xFDA9\t0x8EA1\n0xFDAA\t0x91C1\n0xFDAB\t0x9472\n0xFDAC\t0x9470\n0xFDAD\t0x9871\n0xFDAE\t0x995E\n0xFDAF\t0x9AD6\n0xFDB0\t0x9B23\n0xFDB1\t0x9ECC\n0xFDB2\t0x7064\n0xFDB3\t0x77DA\n0xFDB4\t0x8B9A\n0xFDB5\t0x9477\n0xFDB6\t0x97C9\n0xFDB7\t0x9A62\n0xFDB8\t0x9A65\n0xFDB9\t0x7E9C\n0xFDBA\t0x8B9C\n0xFDBB\t0x8EAA\n0xFDBC\t0x91C5\n0xFDBD\t0x947D\n0xFDBE\t0x947E\n0xFDBF\t0x947C\n0xFDC0\t0x9C77\n0xFDC1\t0x9C78\n0xFDC2\t0x9EF7\n0xFDC3\t0x8C54\n0xFDC4\t0x947F\n0xFDC5\t0x9E1A\n0xFDC6\t0x7228\n0xFDC7\t0x9A6A\n0xFDC8\t0x9B31\n0xFDC9\t0x9E1B\n0xFDCA\t0x9E1E\n0xFDCB\t0x7C72\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/GB18030-BMP.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x81308130\t0x0080\n0x81308131\t0x0081\n0x81308132\t0x0082\n0x81308133\t0x0083\n0x81308134\t0x0084\n0x81308135\t0x0085\n0x81308136\t0x0086\n0x81308137\t0x0087\n0x81308138\t0x0088\n0x81308139\t0x0089\n0x81308230\t0x008A\n0x81308231\t0x008B\n0x81308232\t0x008C\n0x81308233\t0x008D\n0x81308234\t0x008E\n0x81308235\t0x008F\n0x81308236\t0x0090\n0x81308237\t0x0091\n0x81308238\t0x0092\n0x81308239\t0x0093\n0x81308330\t0x0094\n0x81308331\t0x0095\n0x81308332\t0x0096\n0x81308333\t0x0097\n0x81308334\t0x0098\n0x81308335\t0x0099\n0x81308336\t0x009A\n0x81308337\t0x009B\n0x81308338\t0x009C\n0x81308339\t0x009D\n0x81308430\t0x009E\n0x81308431\t0x009F\n0x81308432\t0x00A0\n0x81308433\t0x00A1\n0x81308434\t0x00A2\n0x81308435\t0x00A3\n0x81308436\t0x00A5\n0x81308437\t0x00A6\n0x81308438\t0x00A9\n0x81308439\t0x00AA\n0x81308530\t0x00AB\n0x81308531\t0x00AC\n0x81308532\t0x00AD\n0x81308533\t0x00AE\n0x81308534\t0x00AF\n0x81308535\t0x00B2\n0x81308536\t0x00B3\n0x81308537\t0x00B4\n0x81308538\t0x00B5\n0x81308539\t0x00B6\n0x81308630\t0x00B8\n0x81308631\t0x00B9\n0x81308632\t0x00BA\n0x81308633\t0x00BB\n0x81308634\t0x00BC\n0x81308635\t0x00BD\n0x81308636\t0x00BE\n0x81308637\t0x00BF\n0x81308638\t0x00C0\n0x81308639\t0x00C1\n0x81308730\t0x00C2\n0x81308731\t0x00C3\n0x81308732\t0x00C4\n0x81308733\t0x00C5\n0x81308734\t0x00C6\n0x81308735\t0x00C7\n0x81308736\t0x00C8\n0x81308737\t0x00C9\n0x81308738\t0x00CA\n0x81308739\t0x00CB\n0x81308830\t0x00CC\n0x81308831\t0x00CD\n0x81308832\t0x00CE\n0x81308833\t0x00CF\n0x81308834\t0x00D0\n0x81308835\t0x00D1\n0x81308836\t0x00D2\n0x81308837\t0x00D3\n0x81308838\t0x00D4\n0x81308839\t0x00D5\n0x81308930\t0x00D6\n0x81308931\t0x00D8\n0x81308932\t0x00D9\n0x81308933\t0x00DA\n0x81308934\t0x00DB\n0x81308935\t0x00DC\n0x81308936\t0x00DD\n0x81308937\t0x00DE\n0x81308938\t0x00DF\n0x81308939\t0x00E2\n0x81308A30\t0x00E3\n0x81308A31\t0x00E4\n0x81308A32\t0x00E5\n0x81308A33\t0x00E6\n0x81308A34\t0x00E7\n0x81308A35\t0x00EB\n0x81308A36\t0x00EE\n0x81308A37\t0x00EF\n0x81308A38\t0x00F0\n0x81308A39\t0x00F1\n0x81308B30\t0x00F4\n0x81308B31\t0x00F5\n0x81308B32\t0x00F6\n0x81308B33\t0x00F8\n0x81308B34\t0x00FB\n0x81308B35\t0x00FD\n0x81308B36\t0x00FE\n0x81308B37\t0x00FF\n0x81308B38\t0x0100\n0x81308B39\t0x0102\n0x81308C30\t0x0103\n0x81308C31\t0x0104\n0x81308C32\t0x0105\n0x81308C33\t0x0106\n0x81308C34\t0x0107\n0x81308C35\t0x0108\n0x81308C36\t0x0109\n0x81308C37\t0x010A\n0x81308C38\t0x010B\n0x81308C39\t0x010C\n0x81308D30\t0x010D\n0x81308D31\t0x010E\n0x81308D32\t0x010F\n0x81308D33\t0x0110\n0x81308D34\t0x0111\n0x81308D35\t0x0112\n0x81308D36\t0x0114\n0x81308D37\t0x0115\n0x81308D38\t0x0116\n0x81308D39\t0x0117\n0x81308E30\t0x0118\n0x81308E31\t0x0119\n0x81308E32\t0x011A\n0x81308E33\t0x011C\n0x81308E34\t0x011D\n0x81308E35\t0x011E\n0x81308E36\t0x011F\n0x81308E37\t0x0120\n0x81308E38\t0x0121\n0x81308E39\t0x0122\n0x81308F30\t0x0123\n0x81308F31\t0x0124\n0x81308F32\t0x0125\n0x81308F33\t0x0126\n0x81308F34\t0x0127\n0x81308F35\t0x0128\n0x81308F36\t0x0129\n0x81308F37\t0x012A\n0x81308F38\t0x012C\n0x81308F39\t0x012D\n0x81309030\t0x012E\n0x81309031\t0x012F\n0x81309032\t0x0130\n0x81309033\t0x0131\n0x81309034\t0x0132\n0x81309035\t0x0133\n0x81309036\t0x0134\n0x81309037\t0x0135\n0x81309038\t0x0136\n0x81309039\t0x0137\n0x81309130\t0x0138\n0x81309131\t0x0139\n0x81309132\t0x013A\n0x81309133\t0x013B\n0x81309134\t0x013C\n0x81309135\t0x013D\n0x81309136\t0x013E\n0x81309137\t0x013F\n0x81309138\t0x0140\n0x81309139\t0x0141\n0x81309230\t0x0142\n0x81309231\t0x0143\n0x81309232\t0x0145\n0x81309233\t0x0146\n0x81309234\t0x0147\n0x81309235\t0x0149\n0x81309236\t0x014A\n0x81309237\t0x014B\n0x81309238\t0x014C\n0x81309239\t0x014E\n0x81309330\t0x014F\n0x81309331\t0x0150\n0x81309332\t0x0151\n0x81309333\t0x0152\n0x81309334\t0x0153\n0x81309335\t0x0154\n0x81309336\t0x0155\n0x81309337\t0x0156\n0x81309338\t0x0157\n0x81309339\t0x0158\n0x81309430\t0x0159\n0x81309431\t0x015A\n0x81309432\t0x015B\n0x81309433\t0x015C\n0x81309434\t0x015D\n0x81309435\t0x015E\n0x81309436\t0x015F\n0x81309437\t0x0160\n0x81309438\t0x0161\n0x81309439\t0x0162\n0x81309530\t0x0163\n0x81309531\t0x0164\n0x81309532\t0x0165\n0x81309533\t0x0166\n0x81309534\t0x0167\n0x81309535\t0x0168\n0x81309536\t0x0169\n0x81309537\t0x016A\n0x81309538\t0x016C\n0x81309539\t0x016D\n0x81309630\t0x016E\n0x81309631\t0x016F\n0x81309632\t0x0170\n0x81309633\t0x0171\n0x81309634\t0x0172\n0x81309635\t0x0173\n0x81309636\t0x0174\n0x81309637\t0x0175\n0x81309638\t0x0176\n0x81309639\t0x0177\n0x81309730\t0x0178\n0x81309731\t0x0179\n0x81309732\t0x017A\n0x81309733\t0x017B\n0x81309734\t0x017C\n0x81309735\t0x017D\n0x81309736\t0x017E\n0x81309737\t0x017F\n0x81309738\t0x0180\n0x81309739\t0x0181\n0x81309830\t0x0182\n0x81309831\t0x0183\n0x81309832\t0x0184\n0x81309833\t0x0185\n0x81309834\t0x0186\n0x81309835\t0x0187\n0x81309836\t0x0188\n0x81309837\t0x0189\n0x81309838\t0x018A\n0x81309839\t0x018B\n0x81309930\t0x018C\n0x81309931\t0x018D\n0x81309932\t0x018E\n0x81309933\t0x018F\n0x81309934\t0x0190\n0x81309935\t0x0191\n0x81309936\t0x0192\n0x81309937\t0x0193\n0x81309938\t0x0194\n0x81309939\t0x0195\n0x81309A30\t0x0196\n0x81309A31\t0x0197\n0x81309A32\t0x0198\n0x81309A33\t0x0199\n0x81309A34\t0x019A\n0x81309A35\t0x019B\n0x81309A36\t0x019C\n0x81309A37\t0x019D\n0x81309A38\t0x019E\n0x81309A39\t0x019F\n0x81309B30\t0x01A0\n0x81309B31\t0x01A1\n0x81309B32\t0x01A2\n0x81309B33\t0x01A3\n0x81309B34\t0x01A4\n0x81309B35\t0x01A5\n0x81309B36\t0x01A6\n0x81309B37\t0x01A7\n0x81309B38\t0x01A8\n0x81309B39\t0x01A9\n0x81309C30\t0x01AA\n0x81309C31\t0x01AB\n0x81309C32\t0x01AC\n0x81309C33\t0x01AD\n0x81309C34\t0x01AE\n0x81309C35\t0x01AF\n0x81309C36\t0x01B0\n0x81309C37\t0x01B1\n0x81309C38\t0x01B2\n0x81309C39\t0x01B3\n0x81309D30\t0x01B4\n0x81309D31\t0x01B5\n0x81309D32\t0x01B6\n0x81309D33\t0x01B7\n0x81309D34\t0x01B8\n0x81309D35\t0x01B9\n0x81309D36\t0x01BA\n0x81309D37\t0x01BB\n0x81309D38\t0x01BC\n0x81309D39\t0x01BD\n0x81309E30\t0x01BE\n0x81309E31\t0x01BF\n0x81309E32\t0x01C0\n0x81309E33\t0x01C1\n0x81309E34\t0x01C2\n0x81309E35\t0x01C3\n0x81309E36\t0x01C4\n0x81309E37\t0x01C5\n0x81309E38\t0x01C6\n0x81309E39\t0x01C7\n0x81309F30\t0x01C8\n0x81309F31\t0x01C9\n0x81309F32\t0x01CA\n0x81309F33\t0x01CB\n0x81309F34\t0x01CC\n0x81309F35\t0x01CD\n0x81309F36\t0x01CF\n0x81309F37\t0x01D1\n0x81309F38\t0x01D3\n0x81309F39\t0x01D5\n0x8130A030\t0x01D7\n0x8130A031\t0x01D9\n0x8130A032\t0x01DB\n0x8130A033\t0x01DD\n0x8130A034\t0x01DE\n0x8130A035\t0x01DF\n0x8130A036\t0x01E0\n0x8130A037\t0x01E1\n0x8130A038\t0x01E2\n0x8130A039\t0x01E3\n0x8130A130\t0x01E4\n0x8130A131\t0x01E5\n0x8130A132\t0x01E6\n0x8130A133\t0x01E7\n0x8130A134\t0x01E8\n0x8130A135\t0x01E9\n0x8130A136\t0x01EA\n0x8130A137\t0x01EB\n0x8130A138\t0x01EC\n0x8130A139\t0x01ED\n0x8130A230\t0x01EE\n0x8130A231\t0x01EF\n0x8130A232\t0x01F0\n0x8130A233\t0x01F1\n0x8130A234\t0x01F2\n0x8130A235\t0x01F3\n0x8130A236\t0x01F4\n0x8130A237\t0x01F5\n0x8130A238\t0x01F6\n0x8130A239\t0x01F7\n0x8130A330\t0x01F8\n0x8130A331\t0x01FA\n0x8130A332\t0x01FB\n0x8130A333\t0x01FC\n0x8130A334\t0x01FD\n0x8130A335\t0x01FE\n0x8130A336\t0x01FF\n0x8130A337\t0x0200\n0x8130A338\t0x0201\n0x8130A339\t0x0202\n0x8130A430\t0x0203\n0x8130A431\t0x0204\n0x8130A432\t0x0205\n0x8130A433\t0x0206\n0x8130A434\t0x0207\n0x8130A435\t0x0208\n0x8130A436\t0x0209\n0x8130A437\t0x020A\n0x8130A438\t0x020B\n0x8130A439\t0x020C\n0x8130A530\t0x020D\n0x8130A531\t0x020E\n0x8130A532\t0x020F\n0x8130A533\t0x0210\n0x8130A534\t0x0211\n0x8130A535\t0x0212\n0x8130A536\t0x0213\n0x8130A537\t0x0214\n0x8130A538\t0x0215\n0x8130A539\t0x0216\n0x8130A630\t0x0217\n0x8130A631\t0x0218\n0x8130A632\t0x0219\n0x8130A633\t0x021A\n0x8130A634\t0x021B\n0x8130A635\t0x021C\n0x8130A636\t0x021D\n0x8130A637\t0x021E\n0x8130A638\t0x021F\n0x8130A639\t0x0220\n0x8130A730\t0x0221\n0x8130A731\t0x0222\n0x8130A732\t0x0223\n0x8130A733\t0x0224\n0x8130A734\t0x0225\n0x8130A735\t0x0226\n0x8130A736\t0x0227\n0x8130A737\t0x0228\n0x8130A738\t0x0229\n0x8130A739\t0x022A\n0x8130A830\t0x022B\n0x8130A831\t0x022C\n0x8130A832\t0x022D\n0x8130A833\t0x022E\n0x8130A834\t0x022F\n0x8130A835\t0x0230\n0x8130A836\t0x0231\n0x8130A837\t0x0232\n0x8130A838\t0x0233\n0x8130A839\t0x0234\n0x8130A930\t0x0235\n0x8130A931\t0x0236\n0x8130A932\t0x0237\n0x8130A933\t0x0238\n0x8130A934\t0x0239\n0x8130A935\t0x023A\n0x8130A936\t0x023B\n0x8130A937\t0x023C\n0x8130A938\t0x023D\n0x8130A939\t0x023E\n0x8130AA30\t0x023F\n0x8130AA31\t0x0240\n0x8130AA32\t0x0241\n0x8130AA33\t0x0242\n0x8130AA34\t0x0243\n0x8130AA35\t0x0244\n0x8130AA36\t0x0245\n0x8130AA37\t0x0246\n0x8130AA38\t0x0247\n0x8130AA39\t0x0248\n0x8130AB30\t0x0249\n0x8130AB31\t0x024A\n0x8130AB32\t0x024B\n0x8130AB33\t0x024C\n0x8130AB34\t0x024D\n0x8130AB35\t0x024E\n0x8130AB36\t0x024F\n0x8130AB37\t0x0250\n0x8130AB38\t0x0252\n0x8130AB39\t0x0253\n0x8130AC30\t0x0254\n0x8130AC31\t0x0255\n0x8130AC32\t0x0256\n0x8130AC33\t0x0257\n0x8130AC34\t0x0258\n0x8130AC35\t0x0259\n0x8130AC36\t0x025A\n0x8130AC37\t0x025B\n0x8130AC38\t0x025C\n0x8130AC39\t0x025D\n0x8130AD30\t0x025E\n0x8130AD31\t0x025F\n0x8130AD32\t0x0260\n0x8130AD33\t0x0262\n0x8130AD34\t0x0263\n0x8130AD35\t0x0264\n0x8130AD36\t0x0265\n0x8130AD37\t0x0266\n0x8130AD38\t0x0267\n0x8130AD39\t0x0268\n0x8130AE30\t0x0269\n0x8130AE31\t0x026A\n0x8130AE32\t0x026B\n0x8130AE33\t0x026C\n0x8130AE34\t0x026D\n0x8130AE35\t0x026E\n0x8130AE36\t0x026F\n0x8130AE37\t0x0270\n0x8130AE38\t0x0271\n0x8130AE39\t0x0272\n0x8130AF30\t0x0273\n0x8130AF31\t0x0274\n0x8130AF32\t0x0275\n0x8130AF33\t0x0276\n0x8130AF34\t0x0277\n0x8130AF35\t0x0278\n0x8130AF36\t0x0279\n0x8130AF37\t0x027A\n0x8130AF38\t0x027B\n0x8130AF39\t0x027C\n0x8130B030\t0x027D\n0x8130B031\t0x027E\n0x8130B032\t0x027F\n0x8130B033\t0x0280\n0x8130B034\t0x0281\n0x8130B035\t0x0282\n0x8130B036\t0x0283\n0x8130B037\t0x0284\n0x8130B038\t0x0285\n0x8130B039\t0x0286\n0x8130B130\t0x0287\n0x8130B131\t0x0288\n0x8130B132\t0x0289\n0x8130B133\t0x028A\n0x8130B134\t0x028B\n0x8130B135\t0x028C\n0x8130B136\t0x028D\n0x8130B137\t0x028E\n0x8130B138\t0x028F\n0x8130B139\t0x0290\n0x8130B230\t0x0291\n0x8130B231\t0x0292\n0x8130B232\t0x0293\n0x8130B233\t0x0294\n0x8130B234\t0x0295\n0x8130B235\t0x0296\n0x8130B236\t0x0297\n0x8130B237\t0x0298\n0x8130B238\t0x0299\n0x8130B239\t0x029A\n0x8130B330\t0x029B\n0x8130B331\t0x029C\n0x8130B332\t0x029D\n0x8130B333\t0x029E\n0x8130B334\t0x029F\n0x8130B335\t0x02A0\n0x8130B336\t0x02A1\n0x8130B337\t0x02A2\n0x8130B338\t0x02A3\n0x8130B339\t0x02A4\n0x8130B430\t0x02A5\n0x8130B431\t0x02A6\n0x8130B432\t0x02A7\n0x8130B433\t0x02A8\n0x8130B434\t0x02A9\n0x8130B435\t0x02AA\n0x8130B436\t0x02AB\n0x8130B437\t0x02AC\n0x8130B438\t0x02AD\n0x8130B439\t0x02AE\n0x8130B530\t0x02AF\n0x8130B531\t0x02B0\n0x8130B532\t0x02B1\n0x8130B533\t0x02B2\n0x8130B534\t0x02B3\n0x8130B535\t0x02B4\n0x8130B536\t0x02B5\n0x8130B537\t0x02B6\n0x8130B538\t0x02B7\n0x8130B539\t0x02B8\n0x8130B630\t0x02B9\n0x8130B631\t0x02BA\n0x8130B632\t0x02BB\n0x8130B633\t0x02BC\n0x8130B634\t0x02BD\n0x8130B635\t0x02BE\n0x8130B636\t0x02BF\n0x8130B637\t0x02C0\n0x8130B638\t0x02C1\n0x8130B639\t0x02C2\n0x8130B730\t0x02C3\n0x8130B731\t0x02C4\n0x8130B732\t0x02C5\n0x8130B733\t0x02C6\n0x8130B734\t0x02C8\n0x8130B735\t0x02CC\n0x8130B736\t0x02CD\n0x8130B737\t0x02CE\n0x8130B738\t0x02CF\n0x8130B739\t0x02D0\n0x8130B830\t0x02D1\n0x8130B831\t0x02D2\n0x8130B832\t0x02D3\n0x8130B833\t0x02D4\n0x8130B834\t0x02D5\n0x8130B835\t0x02D6\n0x8130B836\t0x02D7\n0x8130B837\t0x02D8\n0x8130B838\t0x02DA\n0x8130B839\t0x02DB\n0x8130B930\t0x02DC\n0x8130B931\t0x02DD\n0x8130B932\t0x02DE\n0x8130B933\t0x02DF\n0x8130B934\t0x02E0\n0x8130B935\t0x02E1\n0x8130B936\t0x02E2\n0x8130B937\t0x02E3\n0x8130B938\t0x02E4\n0x8130B939\t0x02E5\n0x8130BA30\t0x02E6\n0x8130BA31\t0x02E7\n0x8130BA32\t0x02E8\n0x8130BA33\t0x02E9\n0x8130BA34\t0x02EA\n0x8130BA35\t0x02EB\n0x8130BA36\t0x02EC\n0x8130BA37\t0x02ED\n0x8130BA38\t0x02EE\n0x8130BA39\t0x02EF\n0x8130BB30\t0x02F0\n0x8130BB31\t0x02F1\n0x8130BB32\t0x02F2\n0x8130BB33\t0x02F3\n0x8130BB34\t0x02F4\n0x8130BB35\t0x02F5\n0x8130BB36\t0x02F6\n0x8130BB37\t0x02F7\n0x8130BB38\t0x02F8\n0x8130BB39\t0x02F9\n0x8130BC30\t0x02FA\n0x8130BC31\t0x02FB\n0x8130BC32\t0x02FC\n0x8130BC33\t0x02FD\n0x8130BC34\t0x02FE\n0x8130BC35\t0x02FF\n0x8130BC36\t0x0300\n0x8130BC37\t0x0301\n0x8130BC38\t0x0302\n0x8130BC39\t0x0303\n0x8130BD30\t0x0304\n0x8130BD31\t0x0305\n0x8130BD32\t0x0306\n0x8130BD33\t0x0307\n0x8130BD34\t0x0308\n0x8130BD35\t0x0309\n0x8130BD36\t0x030A\n0x8130BD37\t0x030B\n0x8130BD38\t0x030C\n0x8130BD39\t0x030D\n0x8130BE30\t0x030E\n0x8130BE31\t0x030F\n0x8130BE32\t0x0310\n0x8130BE33\t0x0311\n0x8130BE34\t0x0312\n0x8130BE35\t0x0313\n0x8130BE36\t0x0314\n0x8130BE37\t0x0315\n0x8130BE38\t0x0316\n0x8130BE39\t0x0317\n0x8130BF30\t0x0318\n0x8130BF31\t0x0319\n0x8130BF32\t0x031A\n0x8130BF33\t0x031B\n0x8130BF34\t0x031C\n0x8130BF35\t0x031D\n0x8130BF36\t0x031E\n0x8130BF37\t0x031F\n0x8130BF38\t0x0320\n0x8130BF39\t0x0321\n0x8130C030\t0x0322\n0x8130C031\t0x0323\n0x8130C032\t0x0324\n0x8130C033\t0x0325\n0x8130C034\t0x0326\n0x8130C035\t0x0327\n0x8130C036\t0x0328\n0x8130C037\t0x0329\n0x8130C038\t0x032A\n0x8130C039\t0x032B\n0x8130C130\t0x032C\n0x8130C131\t0x032D\n0x8130C132\t0x032E\n0x8130C133\t0x032F\n0x8130C134\t0x0330\n0x8130C135\t0x0331\n0x8130C136\t0x0332\n0x8130C137\t0x0333\n0x8130C138\t0x0334\n0x8130C139\t0x0335\n0x8130C230\t0x0336\n0x8130C231\t0x0337\n0x8130C232\t0x0338\n0x8130C233\t0x0339\n0x8130C234\t0x033A\n0x8130C235\t0x033B\n0x8130C236\t0x033C\n0x8130C237\t0x033D\n0x8130C238\t0x033E\n0x8130C239\t0x033F\n0x8130C330\t0x0340\n0x8130C331\t0x0341\n0x8130C332\t0x0342\n0x8130C333\t0x0343\n0x8130C334\t0x0344\n0x8130C335\t0x0345\n0x8130C336\t0x0346\n0x8130C337\t0x0347\n0x8130C338\t0x0348\n0x8130C339\t0x0349\n0x8130C430\t0x034A\n0x8130C431\t0x034B\n0x8130C432\t0x034C\n0x8130C433\t0x034D\n0x8130C434\t0x034E\n0x8130C435\t0x034F\n0x8130C436\t0x0350\n0x8130C437\t0x0351\n0x8130C438\t0x0352\n0x8130C439\t0x0353\n0x8130C530\t0x0354\n0x8130C531\t0x0355\n0x8130C532\t0x0356\n0x8130C533\t0x0357\n0x8130C534\t0x0358\n0x8130C535\t0x0359\n0x8130C536\t0x035A\n0x8130C537\t0x035B\n0x8130C538\t0x035C\n0x8130C539\t0x035D\n0x8130C630\t0x035E\n0x8130C631\t0x035F\n0x8130C632\t0x0360\n0x8130C633\t0x0361\n0x8130C634\t0x0362\n0x8130C635\t0x0363\n0x8130C636\t0x0364\n0x8130C637\t0x0365\n0x8130C638\t0x0366\n0x8130C639\t0x0367\n0x8130C730\t0x0368\n0x8130C731\t0x0369\n0x8130C732\t0x036A\n0x8130C733\t0x036B\n0x8130C734\t0x036C\n0x8130C735\t0x036D\n0x8130C736\t0x036E\n0x8130C737\t0x036F\n0x8130C738\t0x0370\n0x8130C739\t0x0371\n0x8130C830\t0x0372\n0x8130C831\t0x0373\n0x8130C832\t0x0374\n0x8130C833\t0x0375\n0x8130C834\t0x0376\n0x8130C835\t0x0377\n0x8130C836\t0x0378\n0x8130C837\t0x0379\n0x8130C838\t0x037A\n0x8130C839\t0x037B\n0x8130C930\t0x037C\n0x8130C931\t0x037D\n0x8130C932\t0x037E\n0x8130C933\t0x037F\n0x8130C934\t0x0380\n0x8130C935\t0x0381\n0x8130C936\t0x0382\n0x8130C937\t0x0383\n0x8130C938\t0x0384\n0x8130C939\t0x0385\n0x8130CA30\t0x0386\n0x8130CA31\t0x0387\n0x8130CA32\t0x0388\n0x8130CA33\t0x0389\n0x8130CA34\t0x038A\n0x8130CA35\t0x038B\n0x8130CA36\t0x038C\n0x8130CA37\t0x038D\n0x8130CA38\t0x038E\n0x8130CA39\t0x038F\n0x8130CB30\t0x0390\n0x8130CB31\t0x03A2\n0x8130CB32\t0x03AA\n0x8130CB33\t0x03AB\n0x8130CB34\t0x03AC\n0x8130CB35\t0x03AD\n0x8130CB36\t0x03AE\n0x8130CB37\t0x03AF\n0x8130CB38\t0x03B0\n0x8130CB39\t0x03C2\n0x8130CC30\t0x03CA\n0x8130CC31\t0x03CB\n0x8130CC32\t0x03CC\n0x8130CC33\t0x03CD\n0x8130CC34\t0x03CE\n0x8130CC35\t0x03CF\n0x8130CC36\t0x03D0\n0x8130CC37\t0x03D1\n0x8130CC38\t0x03D2\n0x8130CC39\t0x03D3\n0x8130CD30\t0x03D4\n0x8130CD31\t0x03D5\n0x8130CD32\t0x03D6\n0x8130CD33\t0x03D7\n0x8130CD34\t0x03D8\n0x8130CD35\t0x03D9\n0x8130CD36\t0x03DA\n0x8130CD37\t0x03DB\n0x8130CD38\t0x03DC\n0x8130CD39\t0x03DD\n0x8130CE30\t0x03DE\n0x8130CE31\t0x03DF\n0x8130CE32\t0x03E0\n0x8130CE33\t0x03E1\n0x8130CE34\t0x03E2\n0x8130CE35\t0x03E3\n0x8130CE36\t0x03E4\n0x8130CE37\t0x03E5\n0x8130CE38\t0x03E6\n0x8130CE39\t0x03E7\n0x8130CF30\t0x03E8\n0x8130CF31\t0x03E9\n0x8130CF32\t0x03EA\n0x8130CF33\t0x03EB\n0x8130CF34\t0x03EC\n0x8130CF35\t0x03ED\n0x8130CF36\t0x03EE\n0x8130CF37\t0x03EF\n0x8130CF38\t0x03F0\n0x8130CF39\t0x03F1\n0x8130D030\t0x03F2\n0x8130D031\t0x03F3\n0x8130D032\t0x03F4\n0x8130D033\t0x03F5\n0x8130D034\t0x03F6\n0x8130D035\t0x03F7\n0x8130D036\t0x03F8\n0x8130D037\t0x03F9\n0x8130D038\t0x03FA\n0x8130D039\t0x03FB\n0x8130D130\t0x03FC\n0x8130D131\t0x03FD\n0x8130D132\t0x03FE\n0x8130D133\t0x03FF\n0x8130D134\t0x0400\n0x8130D135\t0x0402\n0x8130D136\t0x0403\n0x8130D137\t0x0404\n0x8130D138\t0x0405\n0x8130D139\t0x0406\n0x8130D230\t0x0407\n0x8130D231\t0x0408\n0x8130D232\t0x0409\n0x8130D233\t0x040A\n0x8130D234\t0x040B\n0x8130D235\t0x040C\n0x8130D236\t0x040D\n0x8130D237\t0x040E\n0x8130D238\t0x040F\n0x8130D239\t0x0450\n0x8130D330\t0x0452\n0x8130D331\t0x0453\n0x8130D332\t0x0454\n0x8130D333\t0x0455\n0x8130D334\t0x0456\n0x8130D335\t0x0457\n0x8130D336\t0x0458\n0x8130D337\t0x0459\n0x8130D338\t0x045A\n0x8130D339\t0x045B\n0x8130D430\t0x045C\n0x8130D431\t0x045D\n0x8130D432\t0x045E\n0x8130D433\t0x045F\n0x8130D434\t0x0460\n0x8130D435\t0x0461\n0x8130D436\t0x0462\n0x8130D437\t0x0463\n0x8130D438\t0x0464\n0x8130D439\t0x0465\n0x8130D530\t0x0466\n0x8130D531\t0x0467\n0x8130D532\t0x0468\n0x8130D533\t0x0469\n0x8130D534\t0x046A\n0x8130D535\t0x046B\n0x8130D536\t0x046C\n0x8130D537\t0x046D\n0x8130D538\t0x046E\n0x8130D539\t0x046F\n0x8130D630\t0x0470\n0x8130D631\t0x0471\n0x8130D632\t0x0472\n0x8130D633\t0x0473\n0x8130D634\t0x0474\n0x8130D635\t0x0475\n0x8130D636\t0x0476\n0x8130D637\t0x0477\n0x8130D638\t0x0478\n0x8130D639\t0x0479\n0x8130D730\t0x047A\n0x8130D731\t0x047B\n0x8130D732\t0x047C\n0x8130D733\t0x047D\n0x8130D734\t0x047E\n0x8130D735\t0x047F\n0x8130D736\t0x0480\n0x8130D737\t0x0481\n0x8130D738\t0x0482\n0x8130D739\t0x0483\n0x8130D830\t0x0484\n0x8130D831\t0x0485\n0x8130D832\t0x0486\n0x8130D833\t0x0487\n0x8130D834\t0x0488\n0x8130D835\t0x0489\n0x8130D836\t0x048A\n0x8130D837\t0x048B\n0x8130D838\t0x048C\n0x8130D839\t0x048D\n0x8130D930\t0x048E\n0x8130D931\t0x048F\n0x8130D932\t0x0490\n0x8130D933\t0x0491\n0x8130D934\t0x0492\n0x8130D935\t0x0493\n0x8130D936\t0x0494\n0x8130D937\t0x0495\n0x8130D938\t0x0496\n0x8130D939\t0x0497\n0x8130DA30\t0x0498\n0x8130DA31\t0x0499\n0x8130DA32\t0x049A\n0x8130DA33\t0x049B\n0x8130DA34\t0x049C\n0x8130DA35\t0x049D\n0x8130DA36\t0x049E\n0x8130DA37\t0x049F\n0x8130DA38\t0x04A0\n0x8130DA39\t0x04A1\n0x8130DB30\t0x04A2\n0x8130DB31\t0x04A3\n0x8130DB32\t0x04A4\n0x8130DB33\t0x04A5\n0x8130DB34\t0x04A6\n0x8130DB35\t0x04A7\n0x8130DB36\t0x04A8\n0x8130DB37\t0x04A9\n0x8130DB38\t0x04AA\n0x8130DB39\t0x04AB\n0x8130DC30\t0x04AC\n0x8130DC31\t0x04AD\n0x8130DC32\t0x04AE\n0x8130DC33\t0x04AF\n0x8130DC34\t0x04B0\n0x8130DC35\t0x04B1\n0x8130DC36\t0x04B2\n0x8130DC37\t0x04B3\n0x8130DC38\t0x04B4\n0x8130DC39\t0x04B5\n0x8130DD30\t0x04B6\n0x8130DD31\t0x04B7\n0x8130DD32\t0x04B8\n0x8130DD33\t0x04B9\n0x8130DD34\t0x04BA\n0x8130DD35\t0x04BB\n0x8130DD36\t0x04BC\n0x8130DD37\t0x04BD\n0x8130DD38\t0x04BE\n0x8130DD39\t0x04BF\n0x8130DE30\t0x04C0\n0x8130DE31\t0x04C1\n0x8130DE32\t0x04C2\n0x8130DE33\t0x04C3\n0x8130DE34\t0x04C4\n0x8130DE35\t0x04C5\n0x8130DE36\t0x04C6\n0x8130DE37\t0x04C7\n0x8130DE38\t0x04C8\n0x8130DE39\t0x04C9\n0x8130DF30\t0x04CA\n0x8130DF31\t0x04CB\n0x8130DF32\t0x04CC\n0x8130DF33\t0x04CD\n0x8130DF34\t0x04CE\n0x8130DF35\t0x04CF\n0x8130DF36\t0x04D0\n0x8130DF37\t0x04D1\n0x8130DF38\t0x04D2\n0x8130DF39\t0x04D3\n0x8130E030\t0x04D4\n0x8130E031\t0x04D5\n0x8130E032\t0x04D6\n0x8130E033\t0x04D7\n0x8130E034\t0x04D8\n0x8130E035\t0x04D9\n0x8130E036\t0x04DA\n0x8130E037\t0x04DB\n0x8130E038\t0x04DC\n0x8130E039\t0x04DD\n0x8130E130\t0x04DE\n0x8130E131\t0x04DF\n0x8130E132\t0x04E0\n0x8130E133\t0x04E1\n0x8130E134\t0x04E2\n0x8130E135\t0x04E3\n0x8130E136\t0x04E4\n0x8130E137\t0x04E5\n0x8130E138\t0x04E6\n0x8130E139\t0x04E7\n0x8130E230\t0x04E8\n0x8130E231\t0x04E9\n0x8130E232\t0x04EA\n0x8130E233\t0x04EB\n0x8130E234\t0x04EC\n0x8130E235\t0x04ED\n0x8130E236\t0x04EE\n0x8130E237\t0x04EF\n0x8130E238\t0x04F0\n0x8130E239\t0x04F1\n0x8130E330\t0x04F2\n0x8130E331\t0x04F3\n0x8130E332\t0x04F4\n0x8130E333\t0x04F5\n0x8130E334\t0x04F6\n0x8130E335\t0x04F7\n0x8130E336\t0x04F8\n0x8130E337\t0x04F9\n0x8130E338\t0x04FA\n0x8130E339\t0x04FB\n0x8130E430\t0x04FC\n0x8130E431\t0x04FD\n0x8130E432\t0x04FE\n0x8130E433\t0x04FF\n0x8130E434\t0x0500\n0x8130E435\t0x0501\n0x8130E436\t0x0502\n0x8130E437\t0x0503\n0x8130E438\t0x0504\n0x8130E439\t0x0505\n0x8130E530\t0x0506\n0x8130E531\t0x0507\n0x8130E532\t0x0508\n0x8130E533\t0x0509\n0x8130E534\t0x050A\n0x8130E535\t0x050B\n0x8130E536\t0x050C\n0x8130E537\t0x050D\n0x8130E538\t0x050E\n0x8130E539\t0x050F\n0x8130E630\t0x0510\n0x8130E631\t0x0511\n0x8130E632\t0x0512\n0x8130E633\t0x0513\n0x8130E634\t0x0514\n0x8130E635\t0x0515\n0x8130E636\t0x0516\n0x8130E637\t0x0517\n0x8130E638\t0x0518\n0x8130E639\t0x0519\n0x8130E730\t0x051A\n0x8130E731\t0x051B\n0x8130E732\t0x051C\n0x8130E733\t0x051D\n0x8130E734\t0x051E\n0x8130E735\t0x051F\n0x8130E736\t0x0520\n0x8130E737\t0x0521\n0x8130E738\t0x0522\n0x8130E739\t0x0523\n0x8130E830\t0x0524\n0x8130E831\t0x0525\n0x8130E832\t0x0526\n0x8130E833\t0x0527\n0x8130E834\t0x0528\n0x8130E835\t0x0529\n0x8130E836\t0x052A\n0x8130E837\t0x052B\n0x8130E838\t0x052C\n0x8130E839\t0x052D\n0x8130E930\t0x052E\n0x8130E931\t0x052F\n0x8130E932\t0x0530\n0x8130E933\t0x0531\n0x8130E934\t0x0532\n0x8130E935\t0x0533\n0x8130E936\t0x0534\n0x8130E937\t0x0535\n0x8130E938\t0x0536\n0x8130E939\t0x0537\n0x8130EA30\t0x0538\n0x8130EA31\t0x0539\n0x8130EA32\t0x053A\n0x8130EA33\t0x053B\n0x8130EA34\t0x053C\n0x8130EA35\t0x053D\n0x8130EA36\t0x053E\n0x8130EA37\t0x053F\n0x8130EA38\t0x0540\n0x8130EA39\t0x0541\n0x8130EB30\t0x0542\n0x8130EB31\t0x0543\n0x8130EB32\t0x0544\n0x8130EB33\t0x0545\n0x8130EB34\t0x0546\n0x8130EB35\t0x0547\n0x8130EB36\t0x0548\n0x8130EB37\t0x0549\n0x8130EB38\t0x054A\n0x8130EB39\t0x054B\n0x8130EC30\t0x054C\n0x8130EC31\t0x054D\n0x8130EC32\t0x054E\n0x8130EC33\t0x054F\n0x8130EC34\t0x0550\n0x8130EC35\t0x0551\n0x8130EC36\t0x0552\n0x8130EC37\t0x0553\n0x8130EC38\t0x0554\n0x8130EC39\t0x0555\n0x8130ED30\t0x0556\n0x8130ED31\t0x0557\n0x8130ED32\t0x0558\n0x8130ED33\t0x0559\n0x8130ED34\t0x055A\n0x8130ED35\t0x055B\n0x8130ED36\t0x055C\n0x8130ED37\t0x055D\n0x8130ED38\t0x055E\n0x8130ED39\t0x055F\n0x8130EE30\t0x0560\n0x8130EE31\t0x0561\n0x8130EE32\t0x0562\n0x8130EE33\t0x0563\n0x8130EE34\t0x0564\n0x8130EE35\t0x0565\n0x8130EE36\t0x0566\n0x8130EE37\t0x0567\n0x8130EE38\t0x0568\n0x8130EE39\t0x0569\n0x8130EF30\t0x056A\n0x8130EF31\t0x056B\n0x8130EF32\t0x056C\n0x8130EF33\t0x056D\n0x8130EF34\t0x056E\n0x8130EF35\t0x056F\n0x8130EF36\t0x0570\n0x8130EF37\t0x0571\n0x8130EF38\t0x0572\n0x8130EF39\t0x0573\n0x8130F030\t0x0574\n0x8130F031\t0x0575\n0x8130F032\t0x0576\n0x8130F033\t0x0577\n0x8130F034\t0x0578\n0x8130F035\t0x0579\n0x8130F036\t0x057A\n0x8130F037\t0x057B\n0x8130F038\t0x057C\n0x8130F039\t0x057D\n0x8130F130\t0x057E\n0x8130F131\t0x057F\n0x8130F132\t0x0580\n0x8130F133\t0x0581\n0x8130F134\t0x0582\n0x8130F135\t0x0583\n0x8130F136\t0x0584\n0x8130F137\t0x0585\n0x8130F138\t0x0586\n0x8130F139\t0x0587\n0x8130F230\t0x0588\n0x8130F231\t0x0589\n0x8130F232\t0x058A\n0x8130F233\t0x058B\n0x8130F234\t0x058C\n0x8130F235\t0x058D\n0x8130F236\t0x058E\n0x8130F237\t0x058F\n0x8130F238\t0x0590\n0x8130F239\t0x0591\n0x8130F330\t0x0592\n0x8130F331\t0x0593\n0x8130F332\t0x0594\n0x8130F333\t0x0595\n0x8130F334\t0x0596\n0x8130F335\t0x0597\n0x8130F336\t0x0598\n0x8130F337\t0x0599\n0x8130F338\t0x059A\n0x8130F339\t0x059B\n0x8130F430\t0x059C\n0x8130F431\t0x059D\n0x8130F432\t0x059E\n0x8130F433\t0x059F\n0x8130F434\t0x05A0\n0x8130F435\t0x05A1\n0x8130F436\t0x05A2\n0x8130F437\t0x05A3\n0x8130F438\t0x05A4\n0x8130F439\t0x05A5\n0x8130F530\t0x05A6\n0x8130F531\t0x05A7\n0x8130F532\t0x05A8\n0x8130F533\t0x05A9\n0x8130F534\t0x05AA\n0x8130F535\t0x05AB\n0x8130F536\t0x05AC\n0x8130F537\t0x05AD\n0x8130F538\t0x05AE\n0x8130F539\t0x05AF\n0x8130F630\t0x05B0\n0x8130F631\t0x05B1\n0x8130F632\t0x05B2\n0x8130F633\t0x05B3\n0x8130F634\t0x05B4\n0x8130F635\t0x05B5\n0x8130F636\t0x05B6\n0x8130F637\t0x05B7\n0x8130F638\t0x05B8\n0x8130F639\t0x05B9\n0x8130F730\t0x05BA\n0x8130F731\t0x05BB\n0x8130F732\t0x05BC\n0x8130F733\t0x05BD\n0x8130F734\t0x05BE\n0x8130F735\t0x05BF\n0x8130F736\t0x05C0\n0x8130F737\t0x05C1\n0x8130F738\t0x05C2\n0x8130F739\t0x05C3\n0x8130F830\t0x05C4\n0x8130F831\t0x05C5\n0x8130F832\t0x05C6\n0x8130F833\t0x05C7\n0x8130F834\t0x05C8\n0x8130F835\t0x05C9\n0x8130F836\t0x05CA\n0x8130F837\t0x05CB\n0x8130F838\t0x05CC\n0x8130F839\t0x05CD\n0x8130F930\t0x05CE\n0x8130F931\t0x05CF\n0x8130F932\t0x05D0\n0x8130F933\t0x05D1\n0x8130F934\t0x05D2\n0x8130F935\t0x05D3\n0x8130F936\t0x05D4\n0x8130F937\t0x05D5\n0x8130F938\t0x05D6\n0x8130F939\t0x05D7\n0x8130FA30\t0x05D8\n0x8130FA31\t0x05D9\n0x8130FA32\t0x05DA\n0x8130FA33\t0x05DB\n0x8130FA34\t0x05DC\n0x8130FA35\t0x05DD\n0x8130FA36\t0x05DE\n0x8130FA37\t0x05DF\n0x8130FA38\t0x05E0\n0x8130FA39\t0x05E1\n0x8130FB30\t0x05E2\n0x8130FB31\t0x05E3\n0x8130FB32\t0x05E4\n0x8130FB33\t0x05E5\n0x8130FB34\t0x05E6\n0x8130FB35\t0x05E7\n0x8130FB36\t0x05E8\n0x8130FB37\t0x05E9\n0x8130FB38\t0x05EA\n0x8130FB39\t0x05EB\n0x8130FC30\t0x05EC\n0x8130FC31\t0x05ED\n0x8130FC32\t0x05EE\n0x8130FC33\t0x05EF\n0x8130FC34\t0x05F0\n0x8130FC35\t0x05F1\n0x8130FC36\t0x05F2\n0x8130FC37\t0x05F3\n0x8130FC38\t0x05F4\n0x8130FC39\t0x05F5\n0x8130FD30\t0x05F6\n0x8130FD31\t0x05F7\n0x8130FD32\t0x05F8\n0x8130FD33\t0x05F9\n0x8130FD34\t0x05FA\n0x8130FD35\t0x05FB\n0x8130FD36\t0x05FC\n0x8130FD37\t0x05FD\n0x8130FD38\t0x05FE\n0x8130FD39\t0x05FF\n0x8130FE30\t0x0600\n0x8130FE31\t0x0601\n0x8130FE32\t0x0602\n0x8130FE33\t0x0603\n0x8130FE34\t0x0604\n0x8130FE35\t0x0605\n0x8130FE36\t0x0606\n0x8130FE37\t0x0607\n0x8130FE38\t0x0608\n0x8130FE39\t0x0609\n0x81318130\t0x060A\n0x81318131\t0x060B\n0x81318132\t0x060C\n0x81318133\t0x060D\n0x81318134\t0x060E\n0x81318135\t0x060F\n0x81318136\t0x0610\n0x81318137\t0x0611\n0x81318138\t0x0612\n0x81318139\t0x0613\n0x81318230\t0x0614\n0x81318231\t0x0615\n0x81318232\t0x0616\n0x81318233\t0x0617\n0x81318234\t0x0618\n0x81318235\t0x0619\n0x81318236\t0x061A\n0x81318237\t0x061B\n0x81318238\t0x061C\n0x81318239\t0x061D\n0x81318330\t0x061E\n0x81318331\t0x061F\n0x81318332\t0x0620\n0x81318333\t0x0621\n0x81318334\t0x0622\n0x81318335\t0x0623\n0x81318336\t0x0624\n0x81318337\t0x0625\n0x81318338\t0x0626\n0x81318339\t0x0627\n0x81318430\t0x0628\n0x81318431\t0x0629\n0x81318432\t0x062A\n0x81318433\t0x062B\n0x81318434\t0x062C\n0x81318435\t0x062D\n0x81318436\t0x062E\n0x81318437\t0x062F\n0x81318438\t0x0630\n0x81318439\t0x0631\n0x81318530\t0x0632\n0x81318531\t0x0633\n0x81318532\t0x0634\n0x81318533\t0x0635\n0x81318534\t0x0636\n0x81318535\t0x0637\n0x81318536\t0x0638\n0x81318537\t0x0639\n0x81318538\t0x063A\n0x81318539\t0x063B\n0x81318630\t0x063C\n0x81318631\t0x063D\n0x81318632\t0x063E\n0x81318633\t0x063F\n0x81318634\t0x0640\n0x81318635\t0x0641\n0x81318636\t0x0642\n0x81318637\t0x0643\n0x81318638\t0x0644\n0x81318639\t0x0645\n0x81318730\t0x0646\n0x81318731\t0x0647\n0x81318732\t0x0648\n0x81318733\t0x0649\n0x81318734\t0x064A\n0x81318735\t0x064B\n0x81318736\t0x064C\n0x81318737\t0x064D\n0x81318738\t0x064E\n0x81318739\t0x064F\n0x81318830\t0x0650\n0x81318831\t0x0651\n0x81318832\t0x0652\n0x81318833\t0x0653\n0x81318834\t0x0654\n0x81318835\t0x0655\n0x81318836\t0x0656\n0x81318837\t0x0657\n0x81318838\t0x0658\n0x81318839\t0x0659\n0x81318930\t0x065A\n0x81318931\t0x065B\n0x81318932\t0x065C\n0x81318933\t0x065D\n0x81318934\t0x065E\n0x81318935\t0x065F\n0x81318936\t0x0660\n0x81318937\t0x0661\n0x81318938\t0x0662\n0x81318939\t0x0663\n0x81318A30\t0x0664\n0x81318A31\t0x0665\n0x81318A32\t0x0666\n0x81318A33\t0x0667\n0x81318A34\t0x0668\n0x81318A35\t0x0669\n0x81318A36\t0x066A\n0x81318A37\t0x066B\n0x81318A38\t0x066C\n0x81318A39\t0x066D\n0x81318B30\t0x066E\n0x81318B31\t0x066F\n0x81318B32\t0x0670\n0x81318B33\t0x0671\n0x81318B34\t0x0672\n0x81318B35\t0x0673\n0x81318B36\t0x0674\n0x81318B37\t0x0675\n0x81318B38\t0x0676\n0x81318B39\t0x0677\n0x81318C30\t0x0678\n0x81318C31\t0x0679\n0x81318C32\t0x067A\n0x81318C33\t0x067B\n0x81318C34\t0x067C\n0x81318C35\t0x067D\n0x81318C36\t0x067E\n0x81318C37\t0x067F\n0x81318C38\t0x0680\n0x81318C39\t0x0681\n0x81318D30\t0x0682\n0x81318D31\t0x0683\n0x81318D32\t0x0684\n0x81318D33\t0x0685\n0x81318D34\t0x0686\n0x81318D35\t0x0687\n0x81318D36\t0x0688\n0x81318D37\t0x0689\n0x81318D38\t0x068A\n0x81318D39\t0x068B\n0x81318E30\t0x068C\n0x81318E31\t0x068D\n0x81318E32\t0x068E\n0x81318E33\t0x068F\n0x81318E34\t0x0690\n0x81318E35\t0x0691\n0x81318E36\t0x0692\n0x81318E37\t0x0693\n0x81318E38\t0x0694\n0x81318E39\t0x0695\n0x81318F30\t0x0696\n0x81318F31\t0x0697\n0x81318F32\t0x0698\n0x81318F33\t0x0699\n0x81318F34\t0x069A\n0x81318F35\t0x069B\n0x81318F36\t0x069C\n0x81318F37\t0x069D\n0x81318F38\t0x069E\n0x81318F39\t0x069F\n0x81319030\t0x06A0\n0x81319031\t0x06A1\n0x81319032\t0x06A2\n0x81319033\t0x06A3\n0x81319034\t0x06A4\n0x81319035\t0x06A5\n0x81319036\t0x06A6\n0x81319037\t0x06A7\n0x81319038\t0x06A8\n0x81319039\t0x06A9\n0x81319130\t0x06AA\n0x81319131\t0x06AB\n0x81319132\t0x06AC\n0x81319133\t0x06AD\n0x81319134\t0x06AE\n0x81319135\t0x06AF\n0x81319136\t0x06B0\n0x81319137\t0x06B1\n0x81319138\t0x06B2\n0x81319139\t0x06B3\n0x81319230\t0x06B4\n0x81319231\t0x06B5\n0x81319232\t0x06B6\n0x81319233\t0x06B7\n0x81319234\t0x06B8\n0x81319235\t0x06B9\n0x81319236\t0x06BA\n0x81319237\t0x06BB\n0x81319238\t0x06BC\n0x81319239\t0x06BD\n0x81319330\t0x06BE\n0x81319331\t0x06BF\n0x81319332\t0x06C0\n0x81319333\t0x06C1\n0x81319334\t0x06C2\n0x81319335\t0x06C3\n0x81319336\t0x06C4\n0x81319337\t0x06C5\n0x81319338\t0x06C6\n0x81319339\t0x06C7\n0x81319430\t0x06C8\n0x81319431\t0x06C9\n0x81319432\t0x06CA\n0x81319433\t0x06CB\n0x81319434\t0x06CC\n0x81319435\t0x06CD\n0x81319436\t0x06CE\n0x81319437\t0x06CF\n0x81319438\t0x06D0\n0x81319439\t0x06D1\n0x81319530\t0x06D2\n0x81319531\t0x06D3\n0x81319532\t0x06D4\n0x81319533\t0x06D5\n0x81319534\t0x06D6\n0x81319535\t0x06D7\n0x81319536\t0x06D8\n0x81319537\t0x06D9\n0x81319538\t0x06DA\n0x81319539\t0x06DB\n0x81319630\t0x06DC\n0x81319631\t0x06DD\n0x81319632\t0x06DE\n0x81319633\t0x06DF\n0x81319634\t0x06E0\n0x81319635\t0x06E1\n0x81319636\t0x06E2\n0x81319637\t0x06E3\n0x81319638\t0x06E4\n0x81319639\t0x06E5\n0x81319730\t0x06E6\n0x81319731\t0x06E7\n0x81319732\t0x06E8\n0x81319733\t0x06E9\n0x81319734\t0x06EA\n0x81319735\t0x06EB\n0x81319736\t0x06EC\n0x81319737\t0x06ED\n0x81319738\t0x06EE\n0x81319739\t0x06EF\n0x81319830\t0x06F0\n0x81319831\t0x06F1\n0x81319832\t0x06F2\n0x81319833\t0x06F3\n0x81319834\t0x06F4\n0x81319835\t0x06F5\n0x81319836\t0x06F6\n0x81319837\t0x06F7\n0x81319838\t0x06F8\n0x81319839\t0x06F9\n0x81319930\t0x06FA\n0x81319931\t0x06FB\n0x81319932\t0x06FC\n0x81319933\t0x06FD\n0x81319934\t0x06FE\n0x81319935\t0x06FF\n0x81319936\t0x0700\n0x81319937\t0x0701\n0x81319938\t0x0702\n0x81319939\t0x0703\n0x81319A30\t0x0704\n0x81319A31\t0x0705\n0x81319A32\t0x0706\n0x81319A33\t0x0707\n0x81319A34\t0x0708\n0x81319A35\t0x0709\n0x81319A36\t0x070A\n0x81319A37\t0x070B\n0x81319A38\t0x070C\n0x81319A39\t0x070D\n0x81319B30\t0x070E\n0x81319B31\t0x070F\n0x81319B32\t0x0710\n0x81319B33\t0x0711\n0x81319B34\t0x0712\n0x81319B35\t0x0713\n0x81319B36\t0x0714\n0x81319B37\t0x0715\n0x81319B38\t0x0716\n0x81319B39\t0x0717\n0x81319C30\t0x0718\n0x81319C31\t0x0719\n0x81319C32\t0x071A\n0x81319C33\t0x071B\n0x81319C34\t0x071C\n0x81319C35\t0x071D\n0x81319C36\t0x071E\n0x81319C37\t0x071F\n0x81319C38\t0x0720\n0x81319C39\t0x0721\n0x81319D30\t0x0722\n0x81319D31\t0x0723\n0x81319D32\t0x0724\n0x81319D33\t0x0725\n0x81319D34\t0x0726\n0x81319D35\t0x0727\n0x81319D36\t0x0728\n0x81319D37\t0x0729\n0x81319D38\t0x072A\n0x81319D39\t0x072B\n0x81319E30\t0x072C\n0x81319E31\t0x072D\n0x81319E32\t0x072E\n0x81319E33\t0x072F\n0x81319E34\t0x0730\n0x81319E35\t0x0731\n0x81319E36\t0x0732\n0x81319E37\t0x0733\n0x81319E38\t0x0734\n0x81319E39\t0x0735\n0x81319F30\t0x0736\n0x81319F31\t0x0737\n0x81319F32\t0x0738\n0x81319F33\t0x0739\n0x81319F34\t0x073A\n0x81319F35\t0x073B\n0x81319F36\t0x073C\n0x81319F37\t0x073D\n0x81319F38\t0x073E\n0x81319F39\t0x073F\n0x8131A030\t0x0740\n0x8131A031\t0x0741\n0x8131A032\t0x0742\n0x8131A033\t0x0743\n0x8131A034\t0x0744\n0x8131A035\t0x0745\n0x8131A036\t0x0746\n0x8131A037\t0x0747\n0x8131A038\t0x0748\n0x8131A039\t0x0749\n0x8131A130\t0x074A\n0x8131A131\t0x074B\n0x8131A132\t0x074C\n0x8131A133\t0x074D\n0x8131A134\t0x074E\n0x8131A135\t0x074F\n0x8131A136\t0x0750\n0x8131A137\t0x0751\n0x8131A138\t0x0752\n0x8131A139\t0x0753\n0x8131A230\t0x0754\n0x8131A231\t0x0755\n0x8131A232\t0x0756\n0x8131A233\t0x0757\n0x8131A234\t0x0758\n0x8131A235\t0x0759\n0x8131A236\t0x075A\n0x8131A237\t0x075B\n0x8131A238\t0x075C\n0x8131A239\t0x075D\n0x8131A330\t0x075E\n0x8131A331\t0x075F\n0x8131A332\t0x0760\n0x8131A333\t0x0761\n0x8131A334\t0x0762\n0x8131A335\t0x0763\n0x8131A336\t0x0764\n0x8131A337\t0x0765\n0x8131A338\t0x0766\n0x8131A339\t0x0767\n0x8131A430\t0x0768\n0x8131A431\t0x0769\n0x8131A432\t0x076A\n0x8131A433\t0x076B\n0x8131A434\t0x076C\n0x8131A435\t0x076D\n0x8131A436\t0x076E\n0x8131A437\t0x076F\n0x8131A438\t0x0770\n0x8131A439\t0x0771\n0x8131A530\t0x0772\n0x8131A531\t0x0773\n0x8131A532\t0x0774\n0x8131A533\t0x0775\n0x8131A534\t0x0776\n0x8131A535\t0x0777\n0x8131A536\t0x0778\n0x8131A537\t0x0779\n0x8131A538\t0x077A\n0x8131A539\t0x077B\n0x8131A630\t0x077C\n0x8131A631\t0x077D\n0x8131A632\t0x077E\n0x8131A633\t0x077F\n0x8131A634\t0x0780\n0x8131A635\t0x0781\n0x8131A636\t0x0782\n0x8131A637\t0x0783\n0x8131A638\t0x0784\n0x8131A639\t0x0785\n0x8131A730\t0x0786\n0x8131A731\t0x0787\n0x8131A732\t0x0788\n0x8131A733\t0x0789\n0x8131A734\t0x078A\n0x8131A735\t0x078B\n0x8131A736\t0x078C\n0x8131A737\t0x078D\n0x8131A738\t0x078E\n0x8131A739\t0x078F\n0x8131A830\t0x0790\n0x8131A831\t0x0791\n0x8131A832\t0x0792\n0x8131A833\t0x0793\n0x8131A834\t0x0794\n0x8131A835\t0x0795\n0x8131A836\t0x0796\n0x8131A837\t0x0797\n0x8131A838\t0x0798\n0x8131A839\t0x0799\n0x8131A930\t0x079A\n0x8131A931\t0x079B\n0x8131A932\t0x079C\n0x8131A933\t0x079D\n0x8131A934\t0x079E\n0x8131A935\t0x079F\n0x8131A936\t0x07A0\n0x8131A937\t0x07A1\n0x8131A938\t0x07A2\n0x8131A939\t0x07A3\n0x8131AA30\t0x07A4\n0x8131AA31\t0x07A5\n0x8131AA32\t0x07A6\n0x8131AA33\t0x07A7\n0x8131AA34\t0x07A8\n0x8131AA35\t0x07A9\n0x8131AA36\t0x07AA\n0x8131AA37\t0x07AB\n0x8131AA38\t0x07AC\n0x8131AA39\t0x07AD\n0x8131AB30\t0x07AE\n0x8131AB31\t0x07AF\n0x8131AB32\t0x07B0\n0x8131AB33\t0x07B1\n0x8131AB34\t0x07B2\n0x8131AB35\t0x07B3\n0x8131AB36\t0x07B4\n0x8131AB37\t0x07B5\n0x8131AB38\t0x07B6\n0x8131AB39\t0x07B7\n0x8131AC30\t0x07B8\n0x8131AC31\t0x07B9\n0x8131AC32\t0x07BA\n0x8131AC33\t0x07BB\n0x8131AC34\t0x07BC\n0x8131AC35\t0x07BD\n0x8131AC36\t0x07BE\n0x8131AC37\t0x07BF\n0x8131AC38\t0x07C0\n0x8131AC39\t0x07C1\n0x8131AD30\t0x07C2\n0x8131AD31\t0x07C3\n0x8131AD32\t0x07C4\n0x8131AD33\t0x07C5\n0x8131AD34\t0x07C6\n0x8131AD35\t0x07C7\n0x8131AD36\t0x07C8\n0x8131AD37\t0x07C9\n0x8131AD38\t0x07CA\n0x8131AD39\t0x07CB\n0x8131AE30\t0x07CC\n0x8131AE31\t0x07CD\n0x8131AE32\t0x07CE\n0x8131AE33\t0x07CF\n0x8131AE34\t0x07D0\n0x8131AE35\t0x07D1\n0x8131AE36\t0x07D2\n0x8131AE37\t0x07D3\n0x8131AE38\t0x07D4\n0x8131AE39\t0x07D5\n0x8131AF30\t0x07D6\n0x8131AF31\t0x07D7\n0x8131AF32\t0x07D8\n0x8131AF33\t0x07D9\n0x8131AF34\t0x07DA\n0x8131AF35\t0x07DB\n0x8131AF36\t0x07DC\n0x8131AF37\t0x07DD\n0x8131AF38\t0x07DE\n0x8131AF39\t0x07DF\n0x8131B030\t0x07E0\n0x8131B031\t0x07E1\n0x8131B032\t0x07E2\n0x8131B033\t0x07E3\n0x8131B034\t0x07E4\n0x8131B035\t0x07E5\n0x8131B036\t0x07E6\n0x8131B037\t0x07E7\n0x8131B038\t0x07E8\n0x8131B039\t0x07E9\n0x8131B130\t0x07EA\n0x8131B131\t0x07EB\n0x8131B132\t0x07EC\n0x8131B133\t0x07ED\n0x8131B134\t0x07EE\n0x8131B135\t0x07EF\n0x8131B136\t0x07F0\n0x8131B137\t0x07F1\n0x8131B138\t0x07F2\n0x8131B139\t0x07F3\n0x8131B230\t0x07F4\n0x8131B231\t0x07F5\n0x8131B232\t0x07F6\n0x8131B233\t0x07F7\n0x8131B234\t0x07F8\n0x8131B235\t0x07F9\n0x8131B236\t0x07FA\n0x8131B237\t0x07FB\n0x8131B238\t0x07FC\n0x8131B239\t0x07FD\n0x8131B330\t0x07FE\n0x8131B331\t0x07FF\n0x8131B332\t0x0800\n0x8131B333\t0x0801\n0x8131B334\t0x0802\n0x8131B335\t0x0803\n0x8131B336\t0x0804\n0x8131B337\t0x0805\n0x8131B338\t0x0806\n0x8131B339\t0x0807\n0x8131B430\t0x0808\n0x8131B431\t0x0809\n0x8131B432\t0x080A\n0x8131B433\t0x080B\n0x8131B434\t0x080C\n0x8131B435\t0x080D\n0x8131B436\t0x080E\n0x8131B437\t0x080F\n0x8131B438\t0x0810\n0x8131B439\t0x0811\n0x8131B530\t0x0812\n0x8131B531\t0x0813\n0x8131B532\t0x0814\n0x8131B533\t0x0815\n0x8131B534\t0x0816\n0x8131B535\t0x0817\n0x8131B536\t0x0818\n0x8131B537\t0x0819\n0x8131B538\t0x081A\n0x8131B539\t0x081B\n0x8131B630\t0x081C\n0x8131B631\t0x081D\n0x8131B632\t0x081E\n0x8131B633\t0x081F\n0x8131B634\t0x0820\n0x8131B635\t0x0821\n0x8131B636\t0x0822\n0x8131B637\t0x0823\n0x8131B638\t0x0824\n0x8131B639\t0x0825\n0x8131B730\t0x0826\n0x8131B731\t0x0827\n0x8131B732\t0x0828\n0x8131B733\t0x0829\n0x8131B734\t0x082A\n0x8131B735\t0x082B\n0x8131B736\t0x082C\n0x8131B737\t0x082D\n0x8131B738\t0x082E\n0x8131B739\t0x082F\n0x8131B830\t0x0830\n0x8131B831\t0x0831\n0x8131B832\t0x0832\n0x8131B833\t0x0833\n0x8131B834\t0x0834\n0x8131B835\t0x0835\n0x8131B836\t0x0836\n0x8131B837\t0x0837\n0x8131B838\t0x0838\n0x8131B839\t0x0839\n0x8131B930\t0x083A\n0x8131B931\t0x083B\n0x8131B932\t0x083C\n0x8131B933\t0x083D\n0x8131B934\t0x083E\n0x8131B935\t0x083F\n0x8131B936\t0x0840\n0x8131B937\t0x0841\n0x8131B938\t0x0842\n0x8131B939\t0x0843\n0x8131BA30\t0x0844\n0x8131BA31\t0x0845\n0x8131BA32\t0x0846\n0x8131BA33\t0x0847\n0x8131BA34\t0x0848\n0x8131BA35\t0x0849\n0x8131BA36\t0x084A\n0x8131BA37\t0x084B\n0x8131BA38\t0x084C\n0x8131BA39\t0x084D\n0x8131BB30\t0x084E\n0x8131BB31\t0x084F\n0x8131BB32\t0x0850\n0x8131BB33\t0x0851\n0x8131BB34\t0x0852\n0x8131BB35\t0x0853\n0x8131BB36\t0x0854\n0x8131BB37\t0x0855\n0x8131BB38\t0x0856\n0x8131BB39\t0x0857\n0x8131BC30\t0x0858\n0x8131BC31\t0x0859\n0x8131BC32\t0x085A\n0x8131BC33\t0x085B\n0x8131BC34\t0x085C\n0x8131BC35\t0x085D\n0x8131BC36\t0x085E\n0x8131BC37\t0x085F\n0x8131BC38\t0x0860\n0x8131BC39\t0x0861\n0x8131BD30\t0x0862\n0x8131BD31\t0x0863\n0x8131BD32\t0x0864\n0x8131BD33\t0x0865\n0x8131BD34\t0x0866\n0x8131BD35\t0x0867\n0x8131BD36\t0x0868\n0x8131BD37\t0x0869\n0x8131BD38\t0x086A\n0x8131BD39\t0x086B\n0x8131BE30\t0x086C\n0x8131BE31\t0x086D\n0x8131BE32\t0x086E\n0x8131BE33\t0x086F\n0x8131BE34\t0x0870\n0x8131BE35\t0x0871\n0x8131BE36\t0x0872\n0x8131BE37\t0x0873\n0x8131BE38\t0x0874\n0x8131BE39\t0x0875\n0x8131BF30\t0x0876\n0x8131BF31\t0x0877\n0x8131BF32\t0x0878\n0x8131BF33\t0x0879\n0x8131BF34\t0x087A\n0x8131BF35\t0x087B\n0x8131BF36\t0x087C\n0x8131BF37\t0x087D\n0x8131BF38\t0x087E\n0x8131BF39\t0x087F\n0x8131C030\t0x0880\n0x8131C031\t0x0881\n0x8131C032\t0x0882\n0x8131C033\t0x0883\n0x8131C034\t0x0884\n0x8131C035\t0x0885\n0x8131C036\t0x0886\n0x8131C037\t0x0887\n0x8131C038\t0x0888\n0x8131C039\t0x0889\n0x8131C130\t0x088A\n0x8131C131\t0x088B\n0x8131C132\t0x088C\n0x8131C133\t0x088D\n0x8131C134\t0x088E\n0x8131C135\t0x088F\n0x8131C136\t0x0890\n0x8131C137\t0x0891\n0x8131C138\t0x0892\n0x8131C139\t0x0893\n0x8131C230\t0x0894\n0x8131C231\t0x0895\n0x8131C232\t0x0896\n0x8131C233\t0x0897\n0x8131C234\t0x0898\n0x8131C235\t0x0899\n0x8131C236\t0x089A\n0x8131C237\t0x089B\n0x8131C238\t0x089C\n0x8131C239\t0x089D\n0x8131C330\t0x089E\n0x8131C331\t0x089F\n0x8131C332\t0x08A0\n0x8131C333\t0x08A1\n0x8131C334\t0x08A2\n0x8131C335\t0x08A3\n0x8131C336\t0x08A4\n0x8131C337\t0x08A5\n0x8131C338\t0x08A6\n0x8131C339\t0x08A7\n0x8131C430\t0x08A8\n0x8131C431\t0x08A9\n0x8131C432\t0x08AA\n0x8131C433\t0x08AB\n0x8131C434\t0x08AC\n0x8131C435\t0x08AD\n0x8131C436\t0x08AE\n0x8131C437\t0x08AF\n0x8131C438\t0x08B0\n0x8131C439\t0x08B1\n0x8131C530\t0x08B2\n0x8131C531\t0x08B3\n0x8131C532\t0x08B4\n0x8131C533\t0x08B5\n0x8131C534\t0x08B6\n0x8131C535\t0x08B7\n0x8131C536\t0x08B8\n0x8131C537\t0x08B9\n0x8131C538\t0x08BA\n0x8131C539\t0x08BB\n0x8131C630\t0x08BC\n0x8131C631\t0x08BD\n0x8131C632\t0x08BE\n0x8131C633\t0x08BF\n0x8131C634\t0x08C0\n0x8131C635\t0x08C1\n0x8131C636\t0x08C2\n0x8131C637\t0x08C3\n0x8131C638\t0x08C4\n0x8131C639\t0x08C5\n0x8131C730\t0x08C6\n0x8131C731\t0x08C7\n0x8131C732\t0x08C8\n0x8131C733\t0x08C9\n0x8131C734\t0x08CA\n0x8131C735\t0x08CB\n0x8131C736\t0x08CC\n0x8131C737\t0x08CD\n0x8131C738\t0x08CE\n0x8131C739\t0x08CF\n0x8131C830\t0x08D0\n0x8131C831\t0x08D1\n0x8131C832\t0x08D2\n0x8131C833\t0x08D3\n0x8131C834\t0x08D4\n0x8131C835\t0x08D5\n0x8131C836\t0x08D6\n0x8131C837\t0x08D7\n0x8131C838\t0x08D8\n0x8131C839\t0x08D9\n0x8131C930\t0x08DA\n0x8131C931\t0x08DB\n0x8131C932\t0x08DC\n0x8131C933\t0x08DD\n0x8131C934\t0x08DE\n0x8131C935\t0x08DF\n0x8131C936\t0x08E0\n0x8131C937\t0x08E1\n0x8131C938\t0x08E2\n0x8131C939\t0x08E3\n0x8131CA30\t0x08E4\n0x8131CA31\t0x08E5\n0x8131CA32\t0x08E6\n0x8131CA33\t0x08E7\n0x8131CA34\t0x08E8\n0x8131CA35\t0x08E9\n0x8131CA36\t0x08EA\n0x8131CA37\t0x08EB\n0x8131CA38\t0x08EC\n0x8131CA39\t0x08ED\n0x8131CB30\t0x08EE\n0x8131CB31\t0x08EF\n0x8131CB32\t0x08F0\n0x8131CB33\t0x08F1\n0x8131CB34\t0x08F2\n0x8131CB35\t0x08F3\n0x8131CB36\t0x08F4\n0x8131CB37\t0x08F5\n0x8131CB38\t0x08F6\n0x8131CB39\t0x08F7\n0x8131CC30\t0x08F8\n0x8131CC31\t0x08F9\n0x8131CC32\t0x08FA\n0x8131CC33\t0x08FB\n0x8131CC34\t0x08FC\n0x8131CC35\t0x08FD\n0x8131CC36\t0x08FE\n0x8131CC37\t0x08FF\n0x8131CC38\t0x0900\n0x8131CC39\t0x0901\n0x8131CD30\t0x0902\n0x8131CD31\t0x0903\n0x8131CD32\t0x0904\n0x8131CD33\t0x0905\n0x8131CD34\t0x0906\n0x8131CD35\t0x0907\n0x8131CD36\t0x0908\n0x8131CD37\t0x0909\n0x8131CD38\t0x090A\n0x8131CD39\t0x090B\n0x8131CE30\t0x090C\n0x8131CE31\t0x090D\n0x8131CE32\t0x090E\n0x8131CE33\t0x090F\n0x8131CE34\t0x0910\n0x8131CE35\t0x0911\n0x8131CE36\t0x0912\n0x8131CE37\t0x0913\n0x8131CE38\t0x0914\n0x8131CE39\t0x0915\n0x8131CF30\t0x0916\n0x8131CF31\t0x0917\n0x8131CF32\t0x0918\n0x8131CF33\t0x0919\n0x8131CF34\t0x091A\n0x8131CF35\t0x091B\n0x8131CF36\t0x091C\n0x8131CF37\t0x091D\n0x8131CF38\t0x091E\n0x8131CF39\t0x091F\n0x8131D030\t0x0920\n0x8131D031\t0x0921\n0x8131D032\t0x0922\n0x8131D033\t0x0923\n0x8131D034\t0x0924\n0x8131D035\t0x0925\n0x8131D036\t0x0926\n0x8131D037\t0x0927\n0x8131D038\t0x0928\n0x8131D039\t0x0929\n0x8131D130\t0x092A\n0x8131D131\t0x092B\n0x8131D132\t0x092C\n0x8131D133\t0x092D\n0x8131D134\t0x092E\n0x8131D135\t0x092F\n0x8131D136\t0x0930\n0x8131D137\t0x0931\n0x8131D138\t0x0932\n0x8131D139\t0x0933\n0x8131D230\t0x0934\n0x8131D231\t0x0935\n0x8131D232\t0x0936\n0x8131D233\t0x0937\n0x8131D234\t0x0938\n0x8131D235\t0x0939\n0x8131D236\t0x093A\n0x8131D237\t0x093B\n0x8131D238\t0x093C\n0x8131D239\t0x093D\n0x8131D330\t0x093E\n0x8131D331\t0x093F\n0x8131D332\t0x0940\n0x8131D333\t0x0941\n0x8131D334\t0x0942\n0x8131D335\t0x0943\n0x8131D336\t0x0944\n0x8131D337\t0x0945\n0x8131D338\t0x0946\n0x8131D339\t0x0947\n0x8131D430\t0x0948\n0x8131D431\t0x0949\n0x8131D432\t0x094A\n0x8131D433\t0x094B\n0x8131D434\t0x094C\n0x8131D435\t0x094D\n0x8131D436\t0x094E\n0x8131D437\t0x094F\n0x8131D438\t0x0950\n0x8131D439\t0x0951\n0x8131D530\t0x0952\n0x8131D531\t0x0953\n0x8131D532\t0x0954\n0x8131D533\t0x0955\n0x8131D534\t0x0956\n0x8131D535\t0x0957\n0x8131D536\t0x0958\n0x8131D537\t0x0959\n0x8131D538\t0x095A\n0x8131D539\t0x095B\n0x8131D630\t0x095C\n0x8131D631\t0x095D\n0x8131D632\t0x095E\n0x8131D633\t0x095F\n0x8131D634\t0x0960\n0x8131D635\t0x0961\n0x8131D636\t0x0962\n0x8131D637\t0x0963\n0x8131D638\t0x0964\n0x8131D639\t0x0965\n0x8131D730\t0x0966\n0x8131D731\t0x0967\n0x8131D732\t0x0968\n0x8131D733\t0x0969\n0x8131D734\t0x096A\n0x8131D735\t0x096B\n0x8131D736\t0x096C\n0x8131D737\t0x096D\n0x8131D738\t0x096E\n0x8131D739\t0x096F\n0x8131D830\t0x0970\n0x8131D831\t0x0971\n0x8131D832\t0x0972\n0x8131D833\t0x0973\n0x8131D834\t0x0974\n0x8131D835\t0x0975\n0x8131D836\t0x0976\n0x8131D837\t0x0977\n0x8131D838\t0x0978\n0x8131D839\t0x0979\n0x8131D930\t0x097A\n0x8131D931\t0x097B\n0x8131D932\t0x097C\n0x8131D933\t0x097D\n0x8131D934\t0x097E\n0x8131D935\t0x097F\n0x8131D936\t0x0980\n0x8131D937\t0x0981\n0x8131D938\t0x0982\n0x8131D939\t0x0983\n0x8131DA30\t0x0984\n0x8131DA31\t0x0985\n0x8131DA32\t0x0986\n0x8131DA33\t0x0987\n0x8131DA34\t0x0988\n0x8131DA35\t0x0989\n0x8131DA36\t0x098A\n0x8131DA37\t0x098B\n0x8131DA38\t0x098C\n0x8131DA39\t0x098D\n0x8131DB30\t0x098E\n0x8131DB31\t0x098F\n0x8131DB32\t0x0990\n0x8131DB33\t0x0991\n0x8131DB34\t0x0992\n0x8131DB35\t0x0993\n0x8131DB36\t0x0994\n0x8131DB37\t0x0995\n0x8131DB38\t0x0996\n0x8131DB39\t0x0997\n0x8131DC30\t0x0998\n0x8131DC31\t0x0999\n0x8131DC32\t0x099A\n0x8131DC33\t0x099B\n0x8131DC34\t0x099C\n0x8131DC35\t0x099D\n0x8131DC36\t0x099E\n0x8131DC37\t0x099F\n0x8131DC38\t0x09A0\n0x8131DC39\t0x09A1\n0x8131DD30\t0x09A2\n0x8131DD31\t0x09A3\n0x8131DD32\t0x09A4\n0x8131DD33\t0x09A5\n0x8131DD34\t0x09A6\n0x8131DD35\t0x09A7\n0x8131DD36\t0x09A8\n0x8131DD37\t0x09A9\n0x8131DD38\t0x09AA\n0x8131DD39\t0x09AB\n0x8131DE30\t0x09AC\n0x8131DE31\t0x09AD\n0x8131DE32\t0x09AE\n0x8131DE33\t0x09AF\n0x8131DE34\t0x09B0\n0x8131DE35\t0x09B1\n0x8131DE36\t0x09B2\n0x8131DE37\t0x09B3\n0x8131DE38\t0x09B4\n0x8131DE39\t0x09B5\n0x8131DF30\t0x09B6\n0x8131DF31\t0x09B7\n0x8131DF32\t0x09B8\n0x8131DF33\t0x09B9\n0x8131DF34\t0x09BA\n0x8131DF35\t0x09BB\n0x8131DF36\t0x09BC\n0x8131DF37\t0x09BD\n0x8131DF38\t0x09BE\n0x8131DF39\t0x09BF\n0x8131E030\t0x09C0\n0x8131E031\t0x09C1\n0x8131E032\t0x09C2\n0x8131E033\t0x09C3\n0x8131E034\t0x09C4\n0x8131E035\t0x09C5\n0x8131E036\t0x09C6\n0x8131E037\t0x09C7\n0x8131E038\t0x09C8\n0x8131E039\t0x09C9\n0x8131E130\t0x09CA\n0x8131E131\t0x09CB\n0x8131E132\t0x09CC\n0x8131E133\t0x09CD\n0x8131E134\t0x09CE\n0x8131E135\t0x09CF\n0x8131E136\t0x09D0\n0x8131E137\t0x09D1\n0x8131E138\t0x09D2\n0x8131E139\t0x09D3\n0x8131E230\t0x09D4\n0x8131E231\t0x09D5\n0x8131E232\t0x09D6\n0x8131E233\t0x09D7\n0x8131E234\t0x09D8\n0x8131E235\t0x09D9\n0x8131E236\t0x09DA\n0x8131E237\t0x09DB\n0x8131E238\t0x09DC\n0x8131E239\t0x09DD\n0x8131E330\t0x09DE\n0x8131E331\t0x09DF\n0x8131E332\t0x09E0\n0x8131E333\t0x09E1\n0x8131E334\t0x09E2\n0x8131E335\t0x09E3\n0x8131E336\t0x09E4\n0x8131E337\t0x09E5\n0x8131E338\t0x09E6\n0x8131E339\t0x09E7\n0x8131E430\t0x09E8\n0x8131E431\t0x09E9\n0x8131E432\t0x09EA\n0x8131E433\t0x09EB\n0x8131E434\t0x09EC\n0x8131E435\t0x09ED\n0x8131E436\t0x09EE\n0x8131E437\t0x09EF\n0x8131E438\t0x09F0\n0x8131E439\t0x09F1\n0x8131E530\t0x09F2\n0x8131E531\t0x09F3\n0x8131E532\t0x09F4\n0x8131E533\t0x09F5\n0x8131E534\t0x09F6\n0x8131E535\t0x09F7\n0x8131E536\t0x09F8\n0x8131E537\t0x09F9\n0x8131E538\t0x09FA\n0x8131E539\t0x09FB\n0x8131E630\t0x09FC\n0x8131E631\t0x09FD\n0x8131E632\t0x09FE\n0x8131E633\t0x09FF\n0x8131E634\t0x0A00\n0x8131E635\t0x0A01\n0x8131E636\t0x0A02\n0x8131E637\t0x0A03\n0x8131E638\t0x0A04\n0x8131E639\t0x0A05\n0x8131E730\t0x0A06\n0x8131E731\t0x0A07\n0x8131E732\t0x0A08\n0x8131E733\t0x0A09\n0x8131E734\t0x0A0A\n0x8131E735\t0x0A0B\n0x8131E736\t0x0A0C\n0x8131E737\t0x0A0D\n0x8131E738\t0x0A0E\n0x8131E739\t0x0A0F\n0x8131E830\t0x0A10\n0x8131E831\t0x0A11\n0x8131E832\t0x0A12\n0x8131E833\t0x0A13\n0x8131E834\t0x0A14\n0x8131E835\t0x0A15\n0x8131E836\t0x0A16\n0x8131E837\t0x0A17\n0x8131E838\t0x0A18\n0x8131E839\t0x0A19\n0x8131E930\t0x0A1A\n0x8131E931\t0x0A1B\n0x8131E932\t0x0A1C\n0x8131E933\t0x0A1D\n0x8131E934\t0x0A1E\n0x8131E935\t0x0A1F\n0x8131E936\t0x0A20\n0x8131E937\t0x0A21\n0x8131E938\t0x0A22\n0x8131E939\t0x0A23\n0x8131EA30\t0x0A24\n0x8131EA31\t0x0A25\n0x8131EA32\t0x0A26\n0x8131EA33\t0x0A27\n0x8131EA34\t0x0A28\n0x8131EA35\t0x0A29\n0x8131EA36\t0x0A2A\n0x8131EA37\t0x0A2B\n0x8131EA38\t0x0A2C\n0x8131EA39\t0x0A2D\n0x8131EB30\t0x0A2E\n0x8131EB31\t0x0A2F\n0x8131EB32\t0x0A30\n0x8131EB33\t0x0A31\n0x8131EB34\t0x0A32\n0x8131EB35\t0x0A33\n0x8131EB36\t0x0A34\n0x8131EB37\t0x0A35\n0x8131EB38\t0x0A36\n0x8131EB39\t0x0A37\n0x8131EC30\t0x0A38\n0x8131EC31\t0x0A39\n0x8131EC32\t0x0A3A\n0x8131EC33\t0x0A3B\n0x8131EC34\t0x0A3C\n0x8131EC35\t0x0A3D\n0x8131EC36\t0x0A3E\n0x8131EC37\t0x0A3F\n0x8131EC38\t0x0A40\n0x8131EC39\t0x0A41\n0x8131ED30\t0x0A42\n0x8131ED31\t0x0A43\n0x8131ED32\t0x0A44\n0x8131ED33\t0x0A45\n0x8131ED34\t0x0A46\n0x8131ED35\t0x0A47\n0x8131ED36\t0x0A48\n0x8131ED37\t0x0A49\n0x8131ED38\t0x0A4A\n0x8131ED39\t0x0A4B\n0x8131EE30\t0x0A4C\n0x8131EE31\t0x0A4D\n0x8131EE32\t0x0A4E\n0x8131EE33\t0x0A4F\n0x8131EE34\t0x0A50\n0x8131EE35\t0x0A51\n0x8131EE36\t0x0A52\n0x8131EE37\t0x0A53\n0x8131EE38\t0x0A54\n0x8131EE39\t0x0A55\n0x8131EF30\t0x0A56\n0x8131EF31\t0x0A57\n0x8131EF32\t0x0A58\n0x8131EF33\t0x0A59\n0x8131EF34\t0x0A5A\n0x8131EF35\t0x0A5B\n0x8131EF36\t0x0A5C\n0x8131EF37\t0x0A5D\n0x8131EF38\t0x0A5E\n0x8131EF39\t0x0A5F\n0x8131F030\t0x0A60\n0x8131F031\t0x0A61\n0x8131F032\t0x0A62\n0x8131F033\t0x0A63\n0x8131F034\t0x0A64\n0x8131F035\t0x0A65\n0x8131F036\t0x0A66\n0x8131F037\t0x0A67\n0x8131F038\t0x0A68\n0x8131F039\t0x0A69\n0x8131F130\t0x0A6A\n0x8131F131\t0x0A6B\n0x8131F132\t0x0A6C\n0x8131F133\t0x0A6D\n0x8131F134\t0x0A6E\n0x8131F135\t0x0A6F\n0x8131F136\t0x0A70\n0x8131F137\t0x0A71\n0x8131F138\t0x0A72\n0x8131F139\t0x0A73\n0x8131F230\t0x0A74\n0x8131F231\t0x0A75\n0x8131F232\t0x0A76\n0x8131F233\t0x0A77\n0x8131F234\t0x0A78\n0x8131F235\t0x0A79\n0x8131F236\t0x0A7A\n0x8131F237\t0x0A7B\n0x8131F238\t0x0A7C\n0x8131F239\t0x0A7D\n0x8131F330\t0x0A7E\n0x8131F331\t0x0A7F\n0x8131F332\t0x0A80\n0x8131F333\t0x0A81\n0x8131F334\t0x0A82\n0x8131F335\t0x0A83\n0x8131F336\t0x0A84\n0x8131F337\t0x0A85\n0x8131F338\t0x0A86\n0x8131F339\t0x0A87\n0x8131F430\t0x0A88\n0x8131F431\t0x0A89\n0x8131F432\t0x0A8A\n0x8131F433\t0x0A8B\n0x8131F434\t0x0A8C\n0x8131F435\t0x0A8D\n0x8131F436\t0x0A8E\n0x8131F437\t0x0A8F\n0x8131F438\t0x0A90\n0x8131F439\t0x0A91\n0x8131F530\t0x0A92\n0x8131F531\t0x0A93\n0x8131F532\t0x0A94\n0x8131F533\t0x0A95\n0x8131F534\t0x0A96\n0x8131F535\t0x0A97\n0x8131F536\t0x0A98\n0x8131F537\t0x0A99\n0x8131F538\t0x0A9A\n0x8131F539\t0x0A9B\n0x8131F630\t0x0A9C\n0x8131F631\t0x0A9D\n0x8131F632\t0x0A9E\n0x8131F633\t0x0A9F\n0x8131F634\t0x0AA0\n0x8131F635\t0x0AA1\n0x8131F636\t0x0AA2\n0x8131F637\t0x0AA3\n0x8131F638\t0x0AA4\n0x8131F639\t0x0AA5\n0x8131F730\t0x0AA6\n0x8131F731\t0x0AA7\n0x8131F732\t0x0AA8\n0x8131F733\t0x0AA9\n0x8131F734\t0x0AAA\n0x8131F735\t0x0AAB\n0x8131F736\t0x0AAC\n0x8131F737\t0x0AAD\n0x8131F738\t0x0AAE\n0x8131F739\t0x0AAF\n0x8131F830\t0x0AB0\n0x8131F831\t0x0AB1\n0x8131F832\t0x0AB2\n0x8131F833\t0x0AB3\n0x8131F834\t0x0AB4\n0x8131F835\t0x0AB5\n0x8131F836\t0x0AB6\n0x8131F837\t0x0AB7\n0x8131F838\t0x0AB8\n0x8131F839\t0x0AB9\n0x8131F930\t0x0ABA\n0x8131F931\t0x0ABB\n0x8131F932\t0x0ABC\n0x8131F933\t0x0ABD\n0x8131F934\t0x0ABE\n0x8131F935\t0x0ABF\n0x8131F936\t0x0AC0\n0x8131F937\t0x0AC1\n0x8131F938\t0x0AC2\n0x8131F939\t0x0AC3\n0x8131FA30\t0x0AC4\n0x8131FA31\t0x0AC5\n0x8131FA32\t0x0AC6\n0x8131FA33\t0x0AC7\n0x8131FA34\t0x0AC8\n0x8131FA35\t0x0AC9\n0x8131FA36\t0x0ACA\n0x8131FA37\t0x0ACB\n0x8131FA38\t0x0ACC\n0x8131FA39\t0x0ACD\n0x8131FB30\t0x0ACE\n0x8131FB31\t0x0ACF\n0x8131FB32\t0x0AD0\n0x8131FB33\t0x0AD1\n0x8131FB34\t0x0AD2\n0x8131FB35\t0x0AD3\n0x8131FB36\t0x0AD4\n0x8131FB37\t0x0AD5\n0x8131FB38\t0x0AD6\n0x8131FB39\t0x0AD7\n0x8131FC30\t0x0AD8\n0x8131FC31\t0x0AD9\n0x8131FC32\t0x0ADA\n0x8131FC33\t0x0ADB\n0x8131FC34\t0x0ADC\n0x8131FC35\t0x0ADD\n0x8131FC36\t0x0ADE\n0x8131FC37\t0x0ADF\n0x8131FC38\t0x0AE0\n0x8131FC39\t0x0AE1\n0x8131FD30\t0x0AE2\n0x8131FD31\t0x0AE3\n0x8131FD32\t0x0AE4\n0x8131FD33\t0x0AE5\n0x8131FD34\t0x0AE6\n0x8131FD35\t0x0AE7\n0x8131FD36\t0x0AE8\n0x8131FD37\t0x0AE9\n0x8131FD38\t0x0AEA\n0x8131FD39\t0x0AEB\n0x8131FE30\t0x0AEC\n0x8131FE31\t0x0AED\n0x8131FE32\t0x0AEE\n0x8131FE33\t0x0AEF\n0x8131FE34\t0x0AF0\n0x8131FE35\t0x0AF1\n0x8131FE36\t0x0AF2\n0x8131FE37\t0x0AF3\n0x8131FE38\t0x0AF4\n0x8131FE39\t0x0AF5\n0x81328130\t0x0AF6\n0x81328131\t0x0AF7\n0x81328132\t0x0AF8\n0x81328133\t0x0AF9\n0x81328134\t0x0AFA\n0x81328135\t0x0AFB\n0x81328136\t0x0AFC\n0x81328137\t0x0AFD\n0x81328138\t0x0AFE\n0x81328139\t0x0AFF\n0x81328230\t0x0B00\n0x81328231\t0x0B01\n0x81328232\t0x0B02\n0x81328233\t0x0B03\n0x81328234\t0x0B04\n0x81328235\t0x0B05\n0x81328236\t0x0B06\n0x81328237\t0x0B07\n0x81328238\t0x0B08\n0x81328239\t0x0B09\n0x81328330\t0x0B0A\n0x81328331\t0x0B0B\n0x81328332\t0x0B0C\n0x81328333\t0x0B0D\n0x81328334\t0x0B0E\n0x81328335\t0x0B0F\n0x81328336\t0x0B10\n0x81328337\t0x0B11\n0x81328338\t0x0B12\n0x81328339\t0x0B13\n0x81328430\t0x0B14\n0x81328431\t0x0B15\n0x81328432\t0x0B16\n0x81328433\t0x0B17\n0x81328434\t0x0B18\n0x81328435\t0x0B19\n0x81328436\t0x0B1A\n0x81328437\t0x0B1B\n0x81328438\t0x0B1C\n0x81328439\t0x0B1D\n0x81328530\t0x0B1E\n0x81328531\t0x0B1F\n0x81328532\t0x0B20\n0x81328533\t0x0B21\n0x81328534\t0x0B22\n0x81328535\t0x0B23\n0x81328536\t0x0B24\n0x81328537\t0x0B25\n0x81328538\t0x0B26\n0x81328539\t0x0B27\n0x81328630\t0x0B28\n0x81328631\t0x0B29\n0x81328632\t0x0B2A\n0x81328633\t0x0B2B\n0x81328634\t0x0B2C\n0x81328635\t0x0B2D\n0x81328636\t0x0B2E\n0x81328637\t0x0B2F\n0x81328638\t0x0B30\n0x81328639\t0x0B31\n0x81328730\t0x0B32\n0x81328731\t0x0B33\n0x81328732\t0x0B34\n0x81328733\t0x0B35\n0x81328734\t0x0B36\n0x81328735\t0x0B37\n0x81328736\t0x0B38\n0x81328737\t0x0B39\n0x81328738\t0x0B3A\n0x81328739\t0x0B3B\n0x81328830\t0x0B3C\n0x81328831\t0x0B3D\n0x81328832\t0x0B3E\n0x81328833\t0x0B3F\n0x81328834\t0x0B40\n0x81328835\t0x0B41\n0x81328836\t0x0B42\n0x81328837\t0x0B43\n0x81328838\t0x0B44\n0x81328839\t0x0B45\n0x81328930\t0x0B46\n0x81328931\t0x0B47\n0x81328932\t0x0B48\n0x81328933\t0x0B49\n0x81328934\t0x0B4A\n0x81328935\t0x0B4B\n0x81328936\t0x0B4C\n0x81328937\t0x0B4D\n0x81328938\t0x0B4E\n0x81328939\t0x0B4F\n0x81328A30\t0x0B50\n0x81328A31\t0x0B51\n0x81328A32\t0x0B52\n0x81328A33\t0x0B53\n0x81328A34\t0x0B54\n0x81328A35\t0x0B55\n0x81328A36\t0x0B56\n0x81328A37\t0x0B57\n0x81328A38\t0x0B58\n0x81328A39\t0x0B59\n0x81328B30\t0x0B5A\n0x81328B31\t0x0B5B\n0x81328B32\t0x0B5C\n0x81328B33\t0x0B5D\n0x81328B34\t0x0B5E\n0x81328B35\t0x0B5F\n0x81328B36\t0x0B60\n0x81328B37\t0x0B61\n0x81328B38\t0x0B62\n0x81328B39\t0x0B63\n0x81328C30\t0x0B64\n0x81328C31\t0x0B65\n0x81328C32\t0x0B66\n0x81328C33\t0x0B67\n0x81328C34\t0x0B68\n0x81328C35\t0x0B69\n0x81328C36\t0x0B6A\n0x81328C37\t0x0B6B\n0x81328C38\t0x0B6C\n0x81328C39\t0x0B6D\n0x81328D30\t0x0B6E\n0x81328D31\t0x0B6F\n0x81328D32\t0x0B70\n0x81328D33\t0x0B71\n0x81328D34\t0x0B72\n0x81328D35\t0x0B73\n0x81328D36\t0x0B74\n0x81328D37\t0x0B75\n0x81328D38\t0x0B76\n0x81328D39\t0x0B77\n0x81328E30\t0x0B78\n0x81328E31\t0x0B79\n0x81328E32\t0x0B7A\n0x81328E33\t0x0B7B\n0x81328E34\t0x0B7C\n0x81328E35\t0x0B7D\n0x81328E36\t0x0B7E\n0x81328E37\t0x0B7F\n0x81328E38\t0x0B80\n0x81328E39\t0x0B81\n0x81328F30\t0x0B82\n0x81328F31\t0x0B83\n0x81328F32\t0x0B84\n0x81328F33\t0x0B85\n0x81328F34\t0x0B86\n0x81328F35\t0x0B87\n0x81328F36\t0x0B88\n0x81328F37\t0x0B89\n0x81328F38\t0x0B8A\n0x81328F39\t0x0B8B\n0x81329030\t0x0B8C\n0x81329031\t0x0B8D\n0x81329032\t0x0B8E\n0x81329033\t0x0B8F\n0x81329034\t0x0B90\n0x81329035\t0x0B91\n0x81329036\t0x0B92\n0x81329037\t0x0B93\n0x81329038\t0x0B94\n0x81329039\t0x0B95\n0x81329130\t0x0B96\n0x81329131\t0x0B97\n0x81329132\t0x0B98\n0x81329133\t0x0B99\n0x81329134\t0x0B9A\n0x81329135\t0x0B9B\n0x81329136\t0x0B9C\n0x81329137\t0x0B9D\n0x81329138\t0x0B9E\n0x81329139\t0x0B9F\n0x81329230\t0x0BA0\n0x81329231\t0x0BA1\n0x81329232\t0x0BA2\n0x81329233\t0x0BA3\n0x81329234\t0x0BA4\n0x81329235\t0x0BA5\n0x81329236\t0x0BA6\n0x81329237\t0x0BA7\n0x81329238\t0x0BA8\n0x81329239\t0x0BA9\n0x81329330\t0x0BAA\n0x81329331\t0x0BAB\n0x81329332\t0x0BAC\n0x81329333\t0x0BAD\n0x81329334\t0x0BAE\n0x81329335\t0x0BAF\n0x81329336\t0x0BB0\n0x81329337\t0x0BB1\n0x81329338\t0x0BB2\n0x81329339\t0x0BB3\n0x81329430\t0x0BB4\n0x81329431\t0x0BB5\n0x81329432\t0x0BB6\n0x81329433\t0x0BB7\n0x81329434\t0x0BB8\n0x81329435\t0x0BB9\n0x81329436\t0x0BBA\n0x81329437\t0x0BBB\n0x81329438\t0x0BBC\n0x81329439\t0x0BBD\n0x81329530\t0x0BBE\n0x81329531\t0x0BBF\n0x81329532\t0x0BC0\n0x81329533\t0x0BC1\n0x81329534\t0x0BC2\n0x81329535\t0x0BC3\n0x81329536\t0x0BC4\n0x81329537\t0x0BC5\n0x81329538\t0x0BC6\n0x81329539\t0x0BC7\n0x81329630\t0x0BC8\n0x81329631\t0x0BC9\n0x81329632\t0x0BCA\n0x81329633\t0x0BCB\n0x81329634\t0x0BCC\n0x81329635\t0x0BCD\n0x81329636\t0x0BCE\n0x81329637\t0x0BCF\n0x81329638\t0x0BD0\n0x81329639\t0x0BD1\n0x81329730\t0x0BD2\n0x81329731\t0x0BD3\n0x81329732\t0x0BD4\n0x81329733\t0x0BD5\n0x81329734\t0x0BD6\n0x81329735\t0x0BD7\n0x81329736\t0x0BD8\n0x81329737\t0x0BD9\n0x81329738\t0x0BDA\n0x81329739\t0x0BDB\n0x81329830\t0x0BDC\n0x81329831\t0x0BDD\n0x81329832\t0x0BDE\n0x81329833\t0x0BDF\n0x81329834\t0x0BE0\n0x81329835\t0x0BE1\n0x81329836\t0x0BE2\n0x81329837\t0x0BE3\n0x81329838\t0x0BE4\n0x81329839\t0x0BE5\n0x81329930\t0x0BE6\n0x81329931\t0x0BE7\n0x81329932\t0x0BE8\n0x81329933\t0x0BE9\n0x81329934\t0x0BEA\n0x81329935\t0x0BEB\n0x81329936\t0x0BEC\n0x81329937\t0x0BED\n0x81329938\t0x0BEE\n0x81329939\t0x0BEF\n0x81329A30\t0x0BF0\n0x81329A31\t0x0BF1\n0x81329A32\t0x0BF2\n0x81329A33\t0x0BF3\n0x81329A34\t0x0BF4\n0x81329A35\t0x0BF5\n0x81329A36\t0x0BF6\n0x81329A37\t0x0BF7\n0x81329A38\t0x0BF8\n0x81329A39\t0x0BF9\n0x81329B30\t0x0BFA\n0x81329B31\t0x0BFB\n0x81329B32\t0x0BFC\n0x81329B33\t0x0BFD\n0x81329B34\t0x0BFE\n0x81329B35\t0x0BFF\n0x81329B36\t0x0C00\n0x81329B37\t0x0C01\n0x81329B38\t0x0C02\n0x81329B39\t0x0C03\n0x81329C30\t0x0C04\n0x81329C31\t0x0C05\n0x81329C32\t0x0C06\n0x81329C33\t0x0C07\n0x81329C34\t0x0C08\n0x81329C35\t0x0C09\n0x81329C36\t0x0C0A\n0x81329C37\t0x0C0B\n0x81329C38\t0x0C0C\n0x81329C39\t0x0C0D\n0x81329D30\t0x0C0E\n0x81329D31\t0x0C0F\n0x81329D32\t0x0C10\n0x81329D33\t0x0C11\n0x81329D34\t0x0C12\n0x81329D35\t0x0C13\n0x81329D36\t0x0C14\n0x81329D37\t0x0C15\n0x81329D38\t0x0C16\n0x81329D39\t0x0C17\n0x81329E30\t0x0C18\n0x81329E31\t0x0C19\n0x81329E32\t0x0C1A\n0x81329E33\t0x0C1B\n0x81329E34\t0x0C1C\n0x81329E35\t0x0C1D\n0x81329E36\t0x0C1E\n0x81329E37\t0x0C1F\n0x81329E38\t0x0C20\n0x81329E39\t0x0C21\n0x81329F30\t0x0C22\n0x81329F31\t0x0C23\n0x81329F32\t0x0C24\n0x81329F33\t0x0C25\n0x81329F34\t0x0C26\n0x81329F35\t0x0C27\n0x81329F36\t0x0C28\n0x81329F37\t0x0C29\n0x81329F38\t0x0C2A\n0x81329F39\t0x0C2B\n0x8132A030\t0x0C2C\n0x8132A031\t0x0C2D\n0x8132A032\t0x0C2E\n0x8132A033\t0x0C2F\n0x8132A034\t0x0C30\n0x8132A035\t0x0C31\n0x8132A036\t0x0C32\n0x8132A037\t0x0C33\n0x8132A038\t0x0C34\n0x8132A039\t0x0C35\n0x8132A130\t0x0C36\n0x8132A131\t0x0C37\n0x8132A132\t0x0C38\n0x8132A133\t0x0C39\n0x8132A134\t0x0C3A\n0x8132A135\t0x0C3B\n0x8132A136\t0x0C3C\n0x8132A137\t0x0C3D\n0x8132A138\t0x0C3E\n0x8132A139\t0x0C3F\n0x8132A230\t0x0C40\n0x8132A231\t0x0C41\n0x8132A232\t0x0C42\n0x8132A233\t0x0C43\n0x8132A234\t0x0C44\n0x8132A235\t0x0C45\n0x8132A236\t0x0C46\n0x8132A237\t0x0C47\n0x8132A238\t0x0C48\n0x8132A239\t0x0C49\n0x8132A330\t0x0C4A\n0x8132A331\t0x0C4B\n0x8132A332\t0x0C4C\n0x8132A333\t0x0C4D\n0x8132A334\t0x0C4E\n0x8132A335\t0x0C4F\n0x8132A336\t0x0C50\n0x8132A337\t0x0C51\n0x8132A338\t0x0C52\n0x8132A339\t0x0C53\n0x8132A430\t0x0C54\n0x8132A431\t0x0C55\n0x8132A432\t0x0C56\n0x8132A433\t0x0C57\n0x8132A434\t0x0C58\n0x8132A435\t0x0C59\n0x8132A436\t0x0C5A\n0x8132A437\t0x0C5B\n0x8132A438\t0x0C5C\n0x8132A439\t0x0C5D\n0x8132A530\t0x0C5E\n0x8132A531\t0x0C5F\n0x8132A532\t0x0C60\n0x8132A533\t0x0C61\n0x8132A534\t0x0C62\n0x8132A535\t0x0C63\n0x8132A536\t0x0C64\n0x8132A537\t0x0C65\n0x8132A538\t0x0C66\n0x8132A539\t0x0C67\n0x8132A630\t0x0C68\n0x8132A631\t0x0C69\n0x8132A632\t0x0C6A\n0x8132A633\t0x0C6B\n0x8132A634\t0x0C6C\n0x8132A635\t0x0C6D\n0x8132A636\t0x0C6E\n0x8132A637\t0x0C6F\n0x8132A638\t0x0C70\n0x8132A639\t0x0C71\n0x8132A730\t0x0C72\n0x8132A731\t0x0C73\n0x8132A732\t0x0C74\n0x8132A733\t0x0C75\n0x8132A734\t0x0C76\n0x8132A735\t0x0C77\n0x8132A736\t0x0C78\n0x8132A737\t0x0C79\n0x8132A738\t0x0C7A\n0x8132A739\t0x0C7B\n0x8132A830\t0x0C7C\n0x8132A831\t0x0C7D\n0x8132A832\t0x0C7E\n0x8132A833\t0x0C7F\n0x8132A834\t0x0C80\n0x8132A835\t0x0C81\n0x8132A836\t0x0C82\n0x8132A837\t0x0C83\n0x8132A838\t0x0C84\n0x8132A839\t0x0C85\n0x8132A930\t0x0C86\n0x8132A931\t0x0C87\n0x8132A932\t0x0C88\n0x8132A933\t0x0C89\n0x8132A934\t0x0C8A\n0x8132A935\t0x0C8B\n0x8132A936\t0x0C8C\n0x8132A937\t0x0C8D\n0x8132A938\t0x0C8E\n0x8132A939\t0x0C8F\n0x8132AA30\t0x0C90\n0x8132AA31\t0x0C91\n0x8132AA32\t0x0C92\n0x8132AA33\t0x0C93\n0x8132AA34\t0x0C94\n0x8132AA35\t0x0C95\n0x8132AA36\t0x0C96\n0x8132AA37\t0x0C97\n0x8132AA38\t0x0C98\n0x8132AA39\t0x0C99\n0x8132AB30\t0x0C9A\n0x8132AB31\t0x0C9B\n0x8132AB32\t0x0C9C\n0x8132AB33\t0x0C9D\n0x8132AB34\t0x0C9E\n0x8132AB35\t0x0C9F\n0x8132AB36\t0x0CA0\n0x8132AB37\t0x0CA1\n0x8132AB38\t0x0CA2\n0x8132AB39\t0x0CA3\n0x8132AC30\t0x0CA4\n0x8132AC31\t0x0CA5\n0x8132AC32\t0x0CA6\n0x8132AC33\t0x0CA7\n0x8132AC34\t0x0CA8\n0x8132AC35\t0x0CA9\n0x8132AC36\t0x0CAA\n0x8132AC37\t0x0CAB\n0x8132AC38\t0x0CAC\n0x8132AC39\t0x0CAD\n0x8132AD30\t0x0CAE\n0x8132AD31\t0x0CAF\n0x8132AD32\t0x0CB0\n0x8132AD33\t0x0CB1\n0x8132AD34\t0x0CB2\n0x8132AD35\t0x0CB3\n0x8132AD36\t0x0CB4\n0x8132AD37\t0x0CB5\n0x8132AD38\t0x0CB6\n0x8132AD39\t0x0CB7\n0x8132AE30\t0x0CB8\n0x8132AE31\t0x0CB9\n0x8132AE32\t0x0CBA\n0x8132AE33\t0x0CBB\n0x8132AE34\t0x0CBC\n0x8132AE35\t0x0CBD\n0x8132AE36\t0x0CBE\n0x8132AE37\t0x0CBF\n0x8132AE38\t0x0CC0\n0x8132AE39\t0x0CC1\n0x8132AF30\t0x0CC2\n0x8132AF31\t0x0CC3\n0x8132AF32\t0x0CC4\n0x8132AF33\t0x0CC5\n0x8132AF34\t0x0CC6\n0x8132AF35\t0x0CC7\n0x8132AF36\t0x0CC8\n0x8132AF37\t0x0CC9\n0x8132AF38\t0x0CCA\n0x8132AF39\t0x0CCB\n0x8132B030\t0x0CCC\n0x8132B031\t0x0CCD\n0x8132B032\t0x0CCE\n0x8132B033\t0x0CCF\n0x8132B034\t0x0CD0\n0x8132B035\t0x0CD1\n0x8132B036\t0x0CD2\n0x8132B037\t0x0CD3\n0x8132B038\t0x0CD4\n0x8132B039\t0x0CD5\n0x8132B130\t0x0CD6\n0x8132B131\t0x0CD7\n0x8132B132\t0x0CD8\n0x8132B133\t0x0CD9\n0x8132B134\t0x0CDA\n0x8132B135\t0x0CDB\n0x8132B136\t0x0CDC\n0x8132B137\t0x0CDD\n0x8132B138\t0x0CDE\n0x8132B139\t0x0CDF\n0x8132B230\t0x0CE0\n0x8132B231\t0x0CE1\n0x8132B232\t0x0CE2\n0x8132B233\t0x0CE3\n0x8132B234\t0x0CE4\n0x8132B235\t0x0CE5\n0x8132B236\t0x0CE6\n0x8132B237\t0x0CE7\n0x8132B238\t0x0CE8\n0x8132B239\t0x0CE9\n0x8132B330\t0x0CEA\n0x8132B331\t0x0CEB\n0x8132B332\t0x0CEC\n0x8132B333\t0x0CED\n0x8132B334\t0x0CEE\n0x8132B335\t0x0CEF\n0x8132B336\t0x0CF0\n0x8132B337\t0x0CF1\n0x8132B338\t0x0CF2\n0x8132B339\t0x0CF3\n0x8132B430\t0x0CF4\n0x8132B431\t0x0CF5\n0x8132B432\t0x0CF6\n0x8132B433\t0x0CF7\n0x8132B434\t0x0CF8\n0x8132B435\t0x0CF9\n0x8132B436\t0x0CFA\n0x8132B437\t0x0CFB\n0x8132B438\t0x0CFC\n0x8132B439\t0x0CFD\n0x8132B530\t0x0CFE\n0x8132B531\t0x0CFF\n0x8132B532\t0x0D00\n0x8132B533\t0x0D01\n0x8132B534\t0x0D02\n0x8132B535\t0x0D03\n0x8132B536\t0x0D04\n0x8132B537\t0x0D05\n0x8132B538\t0x0D06\n0x8132B539\t0x0D07\n0x8132B630\t0x0D08\n0x8132B631\t0x0D09\n0x8132B632\t0x0D0A\n0x8132B633\t0x0D0B\n0x8132B634\t0x0D0C\n0x8132B635\t0x0D0D\n0x8132B636\t0x0D0E\n0x8132B637\t0x0D0F\n0x8132B638\t0x0D10\n0x8132B639\t0x0D11\n0x8132B730\t0x0D12\n0x8132B731\t0x0D13\n0x8132B732\t0x0D14\n0x8132B733\t0x0D15\n0x8132B734\t0x0D16\n0x8132B735\t0x0D17\n0x8132B736\t0x0D18\n0x8132B737\t0x0D19\n0x8132B738\t0x0D1A\n0x8132B739\t0x0D1B\n0x8132B830\t0x0D1C\n0x8132B831\t0x0D1D\n0x8132B832\t0x0D1E\n0x8132B833\t0x0D1F\n0x8132B834\t0x0D20\n0x8132B835\t0x0D21\n0x8132B836\t0x0D22\n0x8132B837\t0x0D23\n0x8132B838\t0x0D24\n0x8132B839\t0x0D25\n0x8132B930\t0x0D26\n0x8132B931\t0x0D27\n0x8132B932\t0x0D28\n0x8132B933\t0x0D29\n0x8132B934\t0x0D2A\n0x8132B935\t0x0D2B\n0x8132B936\t0x0D2C\n0x8132B937\t0x0D2D\n0x8132B938\t0x0D2E\n0x8132B939\t0x0D2F\n0x8132BA30\t0x0D30\n0x8132BA31\t0x0D31\n0x8132BA32\t0x0D32\n0x8132BA33\t0x0D33\n0x8132BA34\t0x0D34\n0x8132BA35\t0x0D35\n0x8132BA36\t0x0D36\n0x8132BA37\t0x0D37\n0x8132BA38\t0x0D38\n0x8132BA39\t0x0D39\n0x8132BB30\t0x0D3A\n0x8132BB31\t0x0D3B\n0x8132BB32\t0x0D3C\n0x8132BB33\t0x0D3D\n0x8132BB34\t0x0D3E\n0x8132BB35\t0x0D3F\n0x8132BB36\t0x0D40\n0x8132BB37\t0x0D41\n0x8132BB38\t0x0D42\n0x8132BB39\t0x0D43\n0x8132BC30\t0x0D44\n0x8132BC31\t0x0D45\n0x8132BC32\t0x0D46\n0x8132BC33\t0x0D47\n0x8132BC34\t0x0D48\n0x8132BC35\t0x0D49\n0x8132BC36\t0x0D4A\n0x8132BC37\t0x0D4B\n0x8132BC38\t0x0D4C\n0x8132BC39\t0x0D4D\n0x8132BD30\t0x0D4E\n0x8132BD31\t0x0D4F\n0x8132BD32\t0x0D50\n0x8132BD33\t0x0D51\n0x8132BD34\t0x0D52\n0x8132BD35\t0x0D53\n0x8132BD36\t0x0D54\n0x8132BD37\t0x0D55\n0x8132BD38\t0x0D56\n0x8132BD39\t0x0D57\n0x8132BE30\t0x0D58\n0x8132BE31\t0x0D59\n0x8132BE32\t0x0D5A\n0x8132BE33\t0x0D5B\n0x8132BE34\t0x0D5C\n0x8132BE35\t0x0D5D\n0x8132BE36\t0x0D5E\n0x8132BE37\t0x0D5F\n0x8132BE38\t0x0D60\n0x8132BE39\t0x0D61\n0x8132BF30\t0x0D62\n0x8132BF31\t0x0D63\n0x8132BF32\t0x0D64\n0x8132BF33\t0x0D65\n0x8132BF34\t0x0D66\n0x8132BF35\t0x0D67\n0x8132BF36\t0x0D68\n0x8132BF37\t0x0D69\n0x8132BF38\t0x0D6A\n0x8132BF39\t0x0D6B\n0x8132C030\t0x0D6C\n0x8132C031\t0x0D6D\n0x8132C032\t0x0D6E\n0x8132C033\t0x0D6F\n0x8132C034\t0x0D70\n0x8132C035\t0x0D71\n0x8132C036\t0x0D72\n0x8132C037\t0x0D73\n0x8132C038\t0x0D74\n0x8132C039\t0x0D75\n0x8132C130\t0x0D76\n0x8132C131\t0x0D77\n0x8132C132\t0x0D78\n0x8132C133\t0x0D79\n0x8132C134\t0x0D7A\n0x8132C135\t0x0D7B\n0x8132C136\t0x0D7C\n0x8132C137\t0x0D7D\n0x8132C138\t0x0D7E\n0x8132C139\t0x0D7F\n0x8132C230\t0x0D80\n0x8132C231\t0x0D81\n0x8132C232\t0x0D82\n0x8132C233\t0x0D83\n0x8132C234\t0x0D84\n0x8132C235\t0x0D85\n0x8132C236\t0x0D86\n0x8132C237\t0x0D87\n0x8132C238\t0x0D88\n0x8132C239\t0x0D89\n0x8132C330\t0x0D8A\n0x8132C331\t0x0D8B\n0x8132C332\t0x0D8C\n0x8132C333\t0x0D8D\n0x8132C334\t0x0D8E\n0x8132C335\t0x0D8F\n0x8132C336\t0x0D90\n0x8132C337\t0x0D91\n0x8132C338\t0x0D92\n0x8132C339\t0x0D93\n0x8132C430\t0x0D94\n0x8132C431\t0x0D95\n0x8132C432\t0x0D96\n0x8132C433\t0x0D97\n0x8132C434\t0x0D98\n0x8132C435\t0x0D99\n0x8132C436\t0x0D9A\n0x8132C437\t0x0D9B\n0x8132C438\t0x0D9C\n0x8132C439\t0x0D9D\n0x8132C530\t0x0D9E\n0x8132C531\t0x0D9F\n0x8132C532\t0x0DA0\n0x8132C533\t0x0DA1\n0x8132C534\t0x0DA2\n0x8132C535\t0x0DA3\n0x8132C536\t0x0DA4\n0x8132C537\t0x0DA5\n0x8132C538\t0x0DA6\n0x8132C539\t0x0DA7\n0x8132C630\t0x0DA8\n0x8132C631\t0x0DA9\n0x8132C632\t0x0DAA\n0x8132C633\t0x0DAB\n0x8132C634\t0x0DAC\n0x8132C635\t0x0DAD\n0x8132C636\t0x0DAE\n0x8132C637\t0x0DAF\n0x8132C638\t0x0DB0\n0x8132C639\t0x0DB1\n0x8132C730\t0x0DB2\n0x8132C731\t0x0DB3\n0x8132C732\t0x0DB4\n0x8132C733\t0x0DB5\n0x8132C734\t0x0DB6\n0x8132C735\t0x0DB7\n0x8132C736\t0x0DB8\n0x8132C737\t0x0DB9\n0x8132C738\t0x0DBA\n0x8132C739\t0x0DBB\n0x8132C830\t0x0DBC\n0x8132C831\t0x0DBD\n0x8132C832\t0x0DBE\n0x8132C833\t0x0DBF\n0x8132C834\t0x0DC0\n0x8132C835\t0x0DC1\n0x8132C836\t0x0DC2\n0x8132C837\t0x0DC3\n0x8132C838\t0x0DC4\n0x8132C839\t0x0DC5\n0x8132C930\t0x0DC6\n0x8132C931\t0x0DC7\n0x8132C932\t0x0DC8\n0x8132C933\t0x0DC9\n0x8132C934\t0x0DCA\n0x8132C935\t0x0DCB\n0x8132C936\t0x0DCC\n0x8132C937\t0x0DCD\n0x8132C938\t0x0DCE\n0x8132C939\t0x0DCF\n0x8132CA30\t0x0DD0\n0x8132CA31\t0x0DD1\n0x8132CA32\t0x0DD2\n0x8132CA33\t0x0DD3\n0x8132CA34\t0x0DD4\n0x8132CA35\t0x0DD5\n0x8132CA36\t0x0DD6\n0x8132CA37\t0x0DD7\n0x8132CA38\t0x0DD8\n0x8132CA39\t0x0DD9\n0x8132CB30\t0x0DDA\n0x8132CB31\t0x0DDB\n0x8132CB32\t0x0DDC\n0x8132CB33\t0x0DDD\n0x8132CB34\t0x0DDE\n0x8132CB35\t0x0DDF\n0x8132CB36\t0x0DE0\n0x8132CB37\t0x0DE1\n0x8132CB38\t0x0DE2\n0x8132CB39\t0x0DE3\n0x8132CC30\t0x0DE4\n0x8132CC31\t0x0DE5\n0x8132CC32\t0x0DE6\n0x8132CC33\t0x0DE7\n0x8132CC34\t0x0DE8\n0x8132CC35\t0x0DE9\n0x8132CC36\t0x0DEA\n0x8132CC37\t0x0DEB\n0x8132CC38\t0x0DEC\n0x8132CC39\t0x0DED\n0x8132CD30\t0x0DEE\n0x8132CD31\t0x0DEF\n0x8132CD32\t0x0DF0\n0x8132CD33\t0x0DF1\n0x8132CD34\t0x0DF2\n0x8132CD35\t0x0DF3\n0x8132CD36\t0x0DF4\n0x8132CD37\t0x0DF5\n0x8132CD38\t0x0DF6\n0x8132CD39\t0x0DF7\n0x8132CE30\t0x0DF8\n0x8132CE31\t0x0DF9\n0x8132CE32\t0x0DFA\n0x8132CE33\t0x0DFB\n0x8132CE34\t0x0DFC\n0x8132CE35\t0x0DFD\n0x8132CE36\t0x0DFE\n0x8132CE37\t0x0DFF\n0x8132CE38\t0x0E00\n0x8132CE39\t0x0E01\n0x8132CF30\t0x0E02\n0x8132CF31\t0x0E03\n0x8132CF32\t0x0E04\n0x8132CF33\t0x0E05\n0x8132CF34\t0x0E06\n0x8132CF35\t0x0E07\n0x8132CF36\t0x0E08\n0x8132CF37\t0x0E09\n0x8132CF38\t0x0E0A\n0x8132CF39\t0x0E0B\n0x8132D030\t0x0E0C\n0x8132D031\t0x0E0D\n0x8132D032\t0x0E0E\n0x8132D033\t0x0E0F\n0x8132D034\t0x0E10\n0x8132D035\t0x0E11\n0x8132D036\t0x0E12\n0x8132D037\t0x0E13\n0x8132D038\t0x0E14\n0x8132D039\t0x0E15\n0x8132D130\t0x0E16\n0x8132D131\t0x0E17\n0x8132D132\t0x0E18\n0x8132D133\t0x0E19\n0x8132D134\t0x0E1A\n0x8132D135\t0x0E1B\n0x8132D136\t0x0E1C\n0x8132D137\t0x0E1D\n0x8132D138\t0x0E1E\n0x8132D139\t0x0E1F\n0x8132D230\t0x0E20\n0x8132D231\t0x0E21\n0x8132D232\t0x0E22\n0x8132D233\t0x0E23\n0x8132D234\t0x0E24\n0x8132D235\t0x0E25\n0x8132D236\t0x0E26\n0x8132D237\t0x0E27\n0x8132D238\t0x0E28\n0x8132D239\t0x0E29\n0x8132D330\t0x0E2A\n0x8132D331\t0x0E2B\n0x8132D332\t0x0E2C\n0x8132D333\t0x0E2D\n0x8132D334\t0x0E2E\n0x8132D335\t0x0E2F\n0x8132D336\t0x0E30\n0x8132D337\t0x0E31\n0x8132D338\t0x0E32\n0x8132D339\t0x0E33\n0x8132D430\t0x0E34\n0x8132D431\t0x0E35\n0x8132D432\t0x0E36\n0x8132D433\t0x0E37\n0x8132D434\t0x0E38\n0x8132D435\t0x0E39\n0x8132D436\t0x0E3A\n0x8132D437\t0x0E3B\n0x8132D438\t0x0E3C\n0x8132D439\t0x0E3D\n0x8132D530\t0x0E3E\n0x8132D531\t0x0E3F\n0x8132D532\t0x0E40\n0x8132D533\t0x0E41\n0x8132D534\t0x0E42\n0x8132D535\t0x0E43\n0x8132D536\t0x0E44\n0x8132D537\t0x0E45\n0x8132D538\t0x0E46\n0x8132D539\t0x0E47\n0x8132D630\t0x0E48\n0x8132D631\t0x0E49\n0x8132D632\t0x0E4A\n0x8132D633\t0x0E4B\n0x8132D634\t0x0E4C\n0x8132D635\t0x0E4D\n0x8132D636\t0x0E4E\n0x8132D637\t0x0E4F\n0x8132D638\t0x0E50\n0x8132D639\t0x0E51\n0x8132D730\t0x0E52\n0x8132D731\t0x0E53\n0x8132D732\t0x0E54\n0x8132D733\t0x0E55\n0x8132D734\t0x0E56\n0x8132D735\t0x0E57\n0x8132D736\t0x0E58\n0x8132D737\t0x0E59\n0x8132D738\t0x0E5A\n0x8132D739\t0x0E5B\n0x8132D830\t0x0E5C\n0x8132D831\t0x0E5D\n0x8132D832\t0x0E5E\n0x8132D833\t0x0E5F\n0x8132D834\t0x0E60\n0x8132D835\t0x0E61\n0x8132D836\t0x0E62\n0x8132D837\t0x0E63\n0x8132D838\t0x0E64\n0x8132D839\t0x0E65\n0x8132D930\t0x0E66\n0x8132D931\t0x0E67\n0x8132D932\t0x0E68\n0x8132D933\t0x0E69\n0x8132D934\t0x0E6A\n0x8132D935\t0x0E6B\n0x8132D936\t0x0E6C\n0x8132D937\t0x0E6D\n0x8132D938\t0x0E6E\n0x8132D939\t0x0E6F\n0x8132DA30\t0x0E70\n0x8132DA31\t0x0E71\n0x8132DA32\t0x0E72\n0x8132DA33\t0x0E73\n0x8132DA34\t0x0E74\n0x8132DA35\t0x0E75\n0x8132DA36\t0x0E76\n0x8132DA37\t0x0E77\n0x8132DA38\t0x0E78\n0x8132DA39\t0x0E79\n0x8132DB30\t0x0E7A\n0x8132DB31\t0x0E7B\n0x8132DB32\t0x0E7C\n0x8132DB33\t0x0E7D\n0x8132DB34\t0x0E7E\n0x8132DB35\t0x0E7F\n0x8132DB36\t0x0E80\n0x8132DB37\t0x0E81\n0x8132DB38\t0x0E82\n0x8132DB39\t0x0E83\n0x8132DC30\t0x0E84\n0x8132DC31\t0x0E85\n0x8132DC32\t0x0E86\n0x8132DC33\t0x0E87\n0x8132DC34\t0x0E88\n0x8132DC35\t0x0E89\n0x8132DC36\t0x0E8A\n0x8132DC37\t0x0E8B\n0x8132DC38\t0x0E8C\n0x8132DC39\t0x0E8D\n0x8132DD30\t0x0E8E\n0x8132DD31\t0x0E8F\n0x8132DD32\t0x0E90\n0x8132DD33\t0x0E91\n0x8132DD34\t0x0E92\n0x8132DD35\t0x0E93\n0x8132DD36\t0x0E94\n0x8132DD37\t0x0E95\n0x8132DD38\t0x0E96\n0x8132DD39\t0x0E97\n0x8132DE30\t0x0E98\n0x8132DE31\t0x0E99\n0x8132DE32\t0x0E9A\n0x8132DE33\t0x0E9B\n0x8132DE34\t0x0E9C\n0x8132DE35\t0x0E9D\n0x8132DE36\t0x0E9E\n0x8132DE37\t0x0E9F\n0x8132DE38\t0x0EA0\n0x8132DE39\t0x0EA1\n0x8132DF30\t0x0EA2\n0x8132DF31\t0x0EA3\n0x8132DF32\t0x0EA4\n0x8132DF33\t0x0EA5\n0x8132DF34\t0x0EA6\n0x8132DF35\t0x0EA7\n0x8132DF36\t0x0EA8\n0x8132DF37\t0x0EA9\n0x8132DF38\t0x0EAA\n0x8132DF39\t0x0EAB\n0x8132E030\t0x0EAC\n0x8132E031\t0x0EAD\n0x8132E032\t0x0EAE\n0x8132E033\t0x0EAF\n0x8132E034\t0x0EB0\n0x8132E035\t0x0EB1\n0x8132E036\t0x0EB2\n0x8132E037\t0x0EB3\n0x8132E038\t0x0EB4\n0x8132E039\t0x0EB5\n0x8132E130\t0x0EB6\n0x8132E131\t0x0EB7\n0x8132E132\t0x0EB8\n0x8132E133\t0x0EB9\n0x8132E134\t0x0EBA\n0x8132E135\t0x0EBB\n0x8132E136\t0x0EBC\n0x8132E137\t0x0EBD\n0x8132E138\t0x0EBE\n0x8132E139\t0x0EBF\n0x8132E230\t0x0EC0\n0x8132E231\t0x0EC1\n0x8132E232\t0x0EC2\n0x8132E233\t0x0EC3\n0x8132E234\t0x0EC4\n0x8132E235\t0x0EC5\n0x8132E236\t0x0EC6\n0x8132E237\t0x0EC7\n0x8132E238\t0x0EC8\n0x8132E239\t0x0EC9\n0x8132E330\t0x0ECA\n0x8132E331\t0x0ECB\n0x8132E332\t0x0ECC\n0x8132E333\t0x0ECD\n0x8132E334\t0x0ECE\n0x8132E335\t0x0ECF\n0x8132E336\t0x0ED0\n0x8132E337\t0x0ED1\n0x8132E338\t0x0ED2\n0x8132E339\t0x0ED3\n0x8132E430\t0x0ED4\n0x8132E431\t0x0ED5\n0x8132E432\t0x0ED6\n0x8132E433\t0x0ED7\n0x8132E434\t0x0ED8\n0x8132E435\t0x0ED9\n0x8132E436\t0x0EDA\n0x8132E437\t0x0EDB\n0x8132E438\t0x0EDC\n0x8132E439\t0x0EDD\n0x8132E530\t0x0EDE\n0x8132E531\t0x0EDF\n0x8132E532\t0x0EE0\n0x8132E533\t0x0EE1\n0x8132E534\t0x0EE2\n0x8132E535\t0x0EE3\n0x8132E536\t0x0EE4\n0x8132E537\t0x0EE5\n0x8132E538\t0x0EE6\n0x8132E539\t0x0EE7\n0x8132E630\t0x0EE8\n0x8132E631\t0x0EE9\n0x8132E632\t0x0EEA\n0x8132E633\t0x0EEB\n0x8132E634\t0x0EEC\n0x8132E635\t0x0EED\n0x8132E636\t0x0EEE\n0x8132E637\t0x0EEF\n0x8132E638\t0x0EF0\n0x8132E639\t0x0EF1\n0x8132E730\t0x0EF2\n0x8132E731\t0x0EF3\n0x8132E732\t0x0EF4\n0x8132E733\t0x0EF5\n0x8132E734\t0x0EF6\n0x8132E735\t0x0EF7\n0x8132E736\t0x0EF8\n0x8132E737\t0x0EF9\n0x8132E738\t0x0EFA\n0x8132E739\t0x0EFB\n0x8132E830\t0x0EFC\n0x8132E831\t0x0EFD\n0x8132E832\t0x0EFE\n0x8132E833\t0x0EFF\n0x8132E834\t0x0F00\n0x8132E835\t0x0F01\n0x8132E836\t0x0F02\n0x8132E837\t0x0F03\n0x8132E838\t0x0F04\n0x8132E839\t0x0F05\n0x8132E930\t0x0F06\n0x8132E931\t0x0F07\n0x8132E932\t0x0F08\n0x8132E933\t0x0F09\n0x8132E934\t0x0F0A\n0x8132E935\t0x0F0B\n0x8132E936\t0x0F0C\n0x8132E937\t0x0F0D\n0x8132E938\t0x0F0E\n0x8132E939\t0x0F0F\n0x8132EA30\t0x0F10\n0x8132EA31\t0x0F11\n0x8132EA32\t0x0F12\n0x8132EA33\t0x0F13\n0x8132EA34\t0x0F14\n0x8132EA35\t0x0F15\n0x8132EA36\t0x0F16\n0x8132EA37\t0x0F17\n0x8132EA38\t0x0F18\n0x8132EA39\t0x0F19\n0x8132EB30\t0x0F1A\n0x8132EB31\t0x0F1B\n0x8132EB32\t0x0F1C\n0x8132EB33\t0x0F1D\n0x8132EB34\t0x0F1E\n0x8132EB35\t0x0F1F\n0x8132EB36\t0x0F20\n0x8132EB37\t0x0F21\n0x8132EB38\t0x0F22\n0x8132EB39\t0x0F23\n0x8132EC30\t0x0F24\n0x8132EC31\t0x0F25\n0x8132EC32\t0x0F26\n0x8132EC33\t0x0F27\n0x8132EC34\t0x0F28\n0x8132EC35\t0x0F29\n0x8132EC36\t0x0F2A\n0x8132EC37\t0x0F2B\n0x8132EC38\t0x0F2C\n0x8132EC39\t0x0F2D\n0x8132ED30\t0x0F2E\n0x8132ED31\t0x0F2F\n0x8132ED32\t0x0F30\n0x8132ED33\t0x0F31\n0x8132ED34\t0x0F32\n0x8132ED35\t0x0F33\n0x8132ED36\t0x0F34\n0x8132ED37\t0x0F35\n0x8132ED38\t0x0F36\n0x8132ED39\t0x0F37\n0x8132EE30\t0x0F38\n0x8132EE31\t0x0F39\n0x8132EE32\t0x0F3A\n0x8132EE33\t0x0F3B\n0x8132EE34\t0x0F3C\n0x8132EE35\t0x0F3D\n0x8132EE36\t0x0F3E\n0x8132EE37\t0x0F3F\n0x8132EE38\t0x0F40\n0x8132EE39\t0x0F41\n0x8132EF30\t0x0F42\n0x8132EF31\t0x0F43\n0x8132EF32\t0x0F44\n0x8132EF33\t0x0F45\n0x8132EF34\t0x0F46\n0x8132EF35\t0x0F47\n0x8132EF36\t0x0F48\n0x8132EF37\t0x0F49\n0x8132EF38\t0x0F4A\n0x8132EF39\t0x0F4B\n0x8132F030\t0x0F4C\n0x8132F031\t0x0F4D\n0x8132F032\t0x0F4E\n0x8132F033\t0x0F4F\n0x8132F034\t0x0F50\n0x8132F035\t0x0F51\n0x8132F036\t0x0F52\n0x8132F037\t0x0F53\n0x8132F038\t0x0F54\n0x8132F039\t0x0F55\n0x8132F130\t0x0F56\n0x8132F131\t0x0F57\n0x8132F132\t0x0F58\n0x8132F133\t0x0F59\n0x8132F134\t0x0F5A\n0x8132F135\t0x0F5B\n0x8132F136\t0x0F5C\n0x8132F137\t0x0F5D\n0x8132F138\t0x0F5E\n0x8132F139\t0x0F5F\n0x8132F230\t0x0F60\n0x8132F231\t0x0F61\n0x8132F232\t0x0F62\n0x8132F233\t0x0F63\n0x8132F234\t0x0F64\n0x8132F235\t0x0F65\n0x8132F236\t0x0F66\n0x8132F237\t0x0F67\n0x8132F238\t0x0F68\n0x8132F239\t0x0F69\n0x8132F330\t0x0F6A\n0x8132F331\t0x0F6B\n0x8132F332\t0x0F6C\n0x8132F333\t0x0F6D\n0x8132F334\t0x0F6E\n0x8132F335\t0x0F6F\n0x8132F336\t0x0F70\n0x8132F337\t0x0F71\n0x8132F338\t0x0F72\n0x8132F339\t0x0F73\n0x8132F430\t0x0F74\n0x8132F431\t0x0F75\n0x8132F432\t0x0F76\n0x8132F433\t0x0F77\n0x8132F434\t0x0F78\n0x8132F435\t0x0F79\n0x8132F436\t0x0F7A\n0x8132F437\t0x0F7B\n0x8132F438\t0x0F7C\n0x8132F439\t0x0F7D\n0x8132F530\t0x0F7E\n0x8132F531\t0x0F7F\n0x8132F532\t0x0F80\n0x8132F533\t0x0F81\n0x8132F534\t0x0F82\n0x8132F535\t0x0F83\n0x8132F536\t0x0F84\n0x8132F537\t0x0F85\n0x8132F538\t0x0F86\n0x8132F539\t0x0F87\n0x8132F630\t0x0F88\n0x8132F631\t0x0F89\n0x8132F632\t0x0F8A\n0x8132F633\t0x0F8B\n0x8132F634\t0x0F8C\n0x8132F635\t0x0F8D\n0x8132F636\t0x0F8E\n0x8132F637\t0x0F8F\n0x8132F638\t0x0F90\n0x8132F639\t0x0F91\n0x8132F730\t0x0F92\n0x8132F731\t0x0F93\n0x8132F732\t0x0F94\n0x8132F733\t0x0F95\n0x8132F734\t0x0F96\n0x8132F735\t0x0F97\n0x8132F736\t0x0F98\n0x8132F737\t0x0F99\n0x8132F738\t0x0F9A\n0x8132F739\t0x0F9B\n0x8132F830\t0x0F9C\n0x8132F831\t0x0F9D\n0x8132F832\t0x0F9E\n0x8132F833\t0x0F9F\n0x8132F834\t0x0FA0\n0x8132F835\t0x0FA1\n0x8132F836\t0x0FA2\n0x8132F837\t0x0FA3\n0x8132F838\t0x0FA4\n0x8132F839\t0x0FA5\n0x8132F930\t0x0FA6\n0x8132F931\t0x0FA7\n0x8132F932\t0x0FA8\n0x8132F933\t0x0FA9\n0x8132F934\t0x0FAA\n0x8132F935\t0x0FAB\n0x8132F936\t0x0FAC\n0x8132F937\t0x0FAD\n0x8132F938\t0x0FAE\n0x8132F939\t0x0FAF\n0x8132FA30\t0x0FB0\n0x8132FA31\t0x0FB1\n0x8132FA32\t0x0FB2\n0x8132FA33\t0x0FB3\n0x8132FA34\t0x0FB4\n0x8132FA35\t0x0FB5\n0x8132FA36\t0x0FB6\n0x8132FA37\t0x0FB7\n0x8132FA38\t0x0FB8\n0x8132FA39\t0x0FB9\n0x8132FB30\t0x0FBA\n0x8132FB31\t0x0FBB\n0x8132FB32\t0x0FBC\n0x8132FB33\t0x0FBD\n0x8132FB34\t0x0FBE\n0x8132FB35\t0x0FBF\n0x8132FB36\t0x0FC0\n0x8132FB37\t0x0FC1\n0x8132FB38\t0x0FC2\n0x8132FB39\t0x0FC3\n0x8132FC30\t0x0FC4\n0x8132FC31\t0x0FC5\n0x8132FC32\t0x0FC6\n0x8132FC33\t0x0FC7\n0x8132FC34\t0x0FC8\n0x8132FC35\t0x0FC9\n0x8132FC36\t0x0FCA\n0x8132FC37\t0x0FCB\n0x8132FC38\t0x0FCC\n0x8132FC39\t0x0FCD\n0x8132FD30\t0x0FCE\n0x8132FD31\t0x0FCF\n0x8132FD32\t0x0FD0\n0x8132FD33\t0x0FD1\n0x8132FD34\t0x0FD2\n0x8132FD35\t0x0FD3\n0x8132FD36\t0x0FD4\n0x8132FD37\t0x0FD5\n0x8132FD38\t0x0FD6\n0x8132FD39\t0x0FD7\n0x8132FE30\t0x0FD8\n0x8132FE31\t0x0FD9\n0x8132FE32\t0x0FDA\n0x8132FE33\t0x0FDB\n0x8132FE34\t0x0FDC\n0x8132FE35\t0x0FDD\n0x8132FE36\t0x0FDE\n0x8132FE37\t0x0FDF\n0x8132FE38\t0x0FE0\n0x8132FE39\t0x0FE1\n0x81338130\t0x0FE2\n0x81338131\t0x0FE3\n0x81338132\t0x0FE4\n0x81338133\t0x0FE5\n0x81338134\t0x0FE6\n0x81338135\t0x0FE7\n0x81338136\t0x0FE8\n0x81338137\t0x0FE9\n0x81338138\t0x0FEA\n0x81338139\t0x0FEB\n0x81338230\t0x0FEC\n0x81338231\t0x0FED\n0x81338232\t0x0FEE\n0x81338233\t0x0FEF\n0x81338234\t0x0FF0\n0x81338235\t0x0FF1\n0x81338236\t0x0FF2\n0x81338237\t0x0FF3\n0x81338238\t0x0FF4\n0x81338239\t0x0FF5\n0x81338330\t0x0FF6\n0x81338331\t0x0FF7\n0x81338332\t0x0FF8\n0x81338333\t0x0FF9\n0x81338334\t0x0FFA\n0x81338335\t0x0FFB\n0x81338336\t0x0FFC\n0x81338337\t0x0FFD\n0x81338338\t0x0FFE\n0x81338339\t0x0FFF\n0x81338430\t0x1000\n0x81338431\t0x1001\n0x81338432\t0x1002\n0x81338433\t0x1003\n0x81338434\t0x1004\n0x81338435\t0x1005\n0x81338436\t0x1006\n0x81338437\t0x1007\n0x81338438\t0x1008\n0x81338439\t0x1009\n0x81338530\t0x100A\n0x81338531\t0x100B\n0x81338532\t0x100C\n0x81338533\t0x100D\n0x81338534\t0x100E\n0x81338535\t0x100F\n0x81338536\t0x1010\n0x81338537\t0x1011\n0x81338538\t0x1012\n0x81338539\t0x1013\n0x81338630\t0x1014\n0x81338631\t0x1015\n0x81338632\t0x1016\n0x81338633\t0x1017\n0x81338634\t0x1018\n0x81338635\t0x1019\n0x81338636\t0x101A\n0x81338637\t0x101B\n0x81338638\t0x101C\n0x81338639\t0x101D\n0x81338730\t0x101E\n0x81338731\t0x101F\n0x81338732\t0x1020\n0x81338733\t0x1021\n0x81338734\t0x1022\n0x81338735\t0x1023\n0x81338736\t0x1024\n0x81338737\t0x1025\n0x81338738\t0x1026\n0x81338739\t0x1027\n0x81338830\t0x1028\n0x81338831\t0x1029\n0x81338832\t0x102A\n0x81338833\t0x102B\n0x81338834\t0x102C\n0x81338835\t0x102D\n0x81338836\t0x102E\n0x81338837\t0x102F\n0x81338838\t0x1030\n0x81338839\t0x1031\n0x81338930\t0x1032\n0x81338931\t0x1033\n0x81338932\t0x1034\n0x81338933\t0x1035\n0x81338934\t0x1036\n0x81338935\t0x1037\n0x81338936\t0x1038\n0x81338937\t0x1039\n0x81338938\t0x103A\n0x81338939\t0x103B\n0x81338A30\t0x103C\n0x81338A31\t0x103D\n0x81338A32\t0x103E\n0x81338A33\t0x103F\n0x81338A34\t0x1040\n0x81338A35\t0x1041\n0x81338A36\t0x1042\n0x81338A37\t0x1043\n0x81338A38\t0x1044\n0x81338A39\t0x1045\n0x81338B30\t0x1046\n0x81338B31\t0x1047\n0x81338B32\t0x1048\n0x81338B33\t0x1049\n0x81338B34\t0x104A\n0x81338B35\t0x104B\n0x81338B36\t0x104C\n0x81338B37\t0x104D\n0x81338B38\t0x104E\n0x81338B39\t0x104F\n0x81338C30\t0x1050\n0x81338C31\t0x1051\n0x81338C32\t0x1052\n0x81338C33\t0x1053\n0x81338C34\t0x1054\n0x81338C35\t0x1055\n0x81338C36\t0x1056\n0x81338C37\t0x1057\n0x81338C38\t0x1058\n0x81338C39\t0x1059\n0x81338D30\t0x105A\n0x81338D31\t0x105B\n0x81338D32\t0x105C\n0x81338D33\t0x105D\n0x81338D34\t0x105E\n0x81338D35\t0x105F\n0x81338D36\t0x1060\n0x81338D37\t0x1061\n0x81338D38\t0x1062\n0x81338D39\t0x1063\n0x81338E30\t0x1064\n0x81338E31\t0x1065\n0x81338E32\t0x1066\n0x81338E33\t0x1067\n0x81338E34\t0x1068\n0x81338E35\t0x1069\n0x81338E36\t0x106A\n0x81338E37\t0x106B\n0x81338E38\t0x106C\n0x81338E39\t0x106D\n0x81338F30\t0x106E\n0x81338F31\t0x106F\n0x81338F32\t0x1070\n0x81338F33\t0x1071\n0x81338F34\t0x1072\n0x81338F35\t0x1073\n0x81338F36\t0x1074\n0x81338F37\t0x1075\n0x81338F38\t0x1076\n0x81338F39\t0x1077\n0x81339030\t0x1078\n0x81339031\t0x1079\n0x81339032\t0x107A\n0x81339033\t0x107B\n0x81339034\t0x107C\n0x81339035\t0x107D\n0x81339036\t0x107E\n0x81339037\t0x107F\n0x81339038\t0x1080\n0x81339039\t0x1081\n0x81339130\t0x1082\n0x81339131\t0x1083\n0x81339132\t0x1084\n0x81339133\t0x1085\n0x81339134\t0x1086\n0x81339135\t0x1087\n0x81339136\t0x1088\n0x81339137\t0x1089\n0x81339138\t0x108A\n0x81339139\t0x108B\n0x81339230\t0x108C\n0x81339231\t0x108D\n0x81339232\t0x108E\n0x81339233\t0x108F\n0x81339234\t0x1090\n0x81339235\t0x1091\n0x81339236\t0x1092\n0x81339237\t0x1093\n0x81339238\t0x1094\n0x81339239\t0x1095\n0x81339330\t0x1096\n0x81339331\t0x1097\n0x81339332\t0x1098\n0x81339333\t0x1099\n0x81339334\t0x109A\n0x81339335\t0x109B\n0x81339336\t0x109C\n0x81339337\t0x109D\n0x81339338\t0x109E\n0x81339339\t0x109F\n0x81339430\t0x10A0\n0x81339431\t0x10A1\n0x81339432\t0x10A2\n0x81339433\t0x10A3\n0x81339434\t0x10A4\n0x81339435\t0x10A5\n0x81339436\t0x10A6\n0x81339437\t0x10A7\n0x81339438\t0x10A8\n0x81339439\t0x10A9\n0x81339530\t0x10AA\n0x81339531\t0x10AB\n0x81339532\t0x10AC\n0x81339533\t0x10AD\n0x81339534\t0x10AE\n0x81339535\t0x10AF\n0x81339536\t0x10B0\n0x81339537\t0x10B1\n0x81339538\t0x10B2\n0x81339539\t0x10B3\n0x81339630\t0x10B4\n0x81339631\t0x10B5\n0x81339632\t0x10B6\n0x81339633\t0x10B7\n0x81339634\t0x10B8\n0x81339635\t0x10B9\n0x81339636\t0x10BA\n0x81339637\t0x10BB\n0x81339638\t0x10BC\n0x81339639\t0x10BD\n0x81339730\t0x10BE\n0x81339731\t0x10BF\n0x81339732\t0x10C0\n0x81339733\t0x10C1\n0x81339734\t0x10C2\n0x81339735\t0x10C3\n0x81339736\t0x10C4\n0x81339737\t0x10C5\n0x81339738\t0x10C6\n0x81339739\t0x10C7\n0x81339830\t0x10C8\n0x81339831\t0x10C9\n0x81339832\t0x10CA\n0x81339833\t0x10CB\n0x81339834\t0x10CC\n0x81339835\t0x10CD\n0x81339836\t0x10CE\n0x81339837\t0x10CF\n0x81339838\t0x10D0\n0x81339839\t0x10D1\n0x81339930\t0x10D2\n0x81339931\t0x10D3\n0x81339932\t0x10D4\n0x81339933\t0x10D5\n0x81339934\t0x10D6\n0x81339935\t0x10D7\n0x81339936\t0x10D8\n0x81339937\t0x10D9\n0x81339938\t0x10DA\n0x81339939\t0x10DB\n0x81339A30\t0x10DC\n0x81339A31\t0x10DD\n0x81339A32\t0x10DE\n0x81339A33\t0x10DF\n0x81339A34\t0x10E0\n0x81339A35\t0x10E1\n0x81339A36\t0x10E2\n0x81339A37\t0x10E3\n0x81339A38\t0x10E4\n0x81339A39\t0x10E5\n0x81339B30\t0x10E6\n0x81339B31\t0x10E7\n0x81339B32\t0x10E8\n0x81339B33\t0x10E9\n0x81339B34\t0x10EA\n0x81339B35\t0x10EB\n0x81339B36\t0x10EC\n0x81339B37\t0x10ED\n0x81339B38\t0x10EE\n0x81339B39\t0x10EF\n0x81339C30\t0x10F0\n0x81339C31\t0x10F1\n0x81339C32\t0x10F2\n0x81339C33\t0x10F3\n0x81339C34\t0x10F4\n0x81339C35\t0x10F5\n0x81339C36\t0x10F6\n0x81339C37\t0x10F7\n0x81339C38\t0x10F8\n0x81339C39\t0x10F9\n0x81339D30\t0x10FA\n0x81339D31\t0x10FB\n0x81339D32\t0x10FC\n0x81339D33\t0x10FD\n0x81339D34\t0x10FE\n0x81339D35\t0x10FF\n0x81339D36\t0x1100\n0x81339D37\t0x1101\n0x81339D38\t0x1102\n0x81339D39\t0x1103\n0x81339E30\t0x1104\n0x81339E31\t0x1105\n0x81339E32\t0x1106\n0x81339E33\t0x1107\n0x81339E34\t0x1108\n0x81339E35\t0x1109\n0x81339E36\t0x110A\n0x81339E37\t0x110B\n0x81339E38\t0x110C\n0x81339E39\t0x110D\n0x81339F30\t0x110E\n0x81339F31\t0x110F\n0x81339F32\t0x1110\n0x81339F33\t0x1111\n0x81339F34\t0x1112\n0x81339F35\t0x1113\n0x81339F36\t0x1114\n0x81339F37\t0x1115\n0x81339F38\t0x1116\n0x81339F39\t0x1117\n0x8133A030\t0x1118\n0x8133A031\t0x1119\n0x8133A032\t0x111A\n0x8133A033\t0x111B\n0x8133A034\t0x111C\n0x8133A035\t0x111D\n0x8133A036\t0x111E\n0x8133A037\t0x111F\n0x8133A038\t0x1120\n0x8133A039\t0x1121\n0x8133A130\t0x1122\n0x8133A131\t0x1123\n0x8133A132\t0x1124\n0x8133A133\t0x1125\n0x8133A134\t0x1126\n0x8133A135\t0x1127\n0x8133A136\t0x1128\n0x8133A137\t0x1129\n0x8133A138\t0x112A\n0x8133A139\t0x112B\n0x8133A230\t0x112C\n0x8133A231\t0x112D\n0x8133A232\t0x112E\n0x8133A233\t0x112F\n0x8133A234\t0x1130\n0x8133A235\t0x1131\n0x8133A236\t0x1132\n0x8133A237\t0x1133\n0x8133A238\t0x1134\n0x8133A239\t0x1135\n0x8133A330\t0x1136\n0x8133A331\t0x1137\n0x8133A332\t0x1138\n0x8133A333\t0x1139\n0x8133A334\t0x113A\n0x8133A335\t0x113B\n0x8133A336\t0x113C\n0x8133A337\t0x113D\n0x8133A338\t0x113E\n0x8133A339\t0x113F\n0x8133A430\t0x1140\n0x8133A431\t0x1141\n0x8133A432\t0x1142\n0x8133A433\t0x1143\n0x8133A434\t0x1144\n0x8133A435\t0x1145\n0x8133A436\t0x1146\n0x8133A437\t0x1147\n0x8133A438\t0x1148\n0x8133A439\t0x1149\n0x8133A530\t0x114A\n0x8133A531\t0x114B\n0x8133A532\t0x114C\n0x8133A533\t0x114D\n0x8133A534\t0x114E\n0x8133A535\t0x114F\n0x8133A536\t0x1150\n0x8133A537\t0x1151\n0x8133A538\t0x1152\n0x8133A539\t0x1153\n0x8133A630\t0x1154\n0x8133A631\t0x1155\n0x8133A632\t0x1156\n0x8133A633\t0x1157\n0x8133A634\t0x1158\n0x8133A635\t0x1159\n0x8133A636\t0x115A\n0x8133A637\t0x115B\n0x8133A638\t0x115C\n0x8133A639\t0x115D\n0x8133A730\t0x115E\n0x8133A731\t0x115F\n0x8133A732\t0x1160\n0x8133A733\t0x1161\n0x8133A734\t0x1162\n0x8133A735\t0x1163\n0x8133A736\t0x1164\n0x8133A737\t0x1165\n0x8133A738\t0x1166\n0x8133A739\t0x1167\n0x8133A830\t0x1168\n0x8133A831\t0x1169\n0x8133A832\t0x116A\n0x8133A833\t0x116B\n0x8133A834\t0x116C\n0x8133A835\t0x116D\n0x8133A836\t0x116E\n0x8133A837\t0x116F\n0x8133A838\t0x1170\n0x8133A839\t0x1171\n0x8133A930\t0x1172\n0x8133A931\t0x1173\n0x8133A932\t0x1174\n0x8133A933\t0x1175\n0x8133A934\t0x1176\n0x8133A935\t0x1177\n0x8133A936\t0x1178\n0x8133A937\t0x1179\n0x8133A938\t0x117A\n0x8133A939\t0x117B\n0x8133AA30\t0x117C\n0x8133AA31\t0x117D\n0x8133AA32\t0x117E\n0x8133AA33\t0x117F\n0x8133AA34\t0x1180\n0x8133AA35\t0x1181\n0x8133AA36\t0x1182\n0x8133AA37\t0x1183\n0x8133AA38\t0x1184\n0x8133AA39\t0x1185\n0x8133AB30\t0x1186\n0x8133AB31\t0x1187\n0x8133AB32\t0x1188\n0x8133AB33\t0x1189\n0x8133AB34\t0x118A\n0x8133AB35\t0x118B\n0x8133AB36\t0x118C\n0x8133AB37\t0x118D\n0x8133AB38\t0x118E\n0x8133AB39\t0x118F\n0x8133AC30\t0x1190\n0x8133AC31\t0x1191\n0x8133AC32\t0x1192\n0x8133AC33\t0x1193\n0x8133AC34\t0x1194\n0x8133AC35\t0x1195\n0x8133AC36\t0x1196\n0x8133AC37\t0x1197\n0x8133AC38\t0x1198\n0x8133AC39\t0x1199\n0x8133AD30\t0x119A\n0x8133AD31\t0x119B\n0x8133AD32\t0x119C\n0x8133AD33\t0x119D\n0x8133AD34\t0x119E\n0x8133AD35\t0x119F\n0x8133AD36\t0x11A0\n0x8133AD37\t0x11A1\n0x8133AD38\t0x11A2\n0x8133AD39\t0x11A3\n0x8133AE30\t0x11A4\n0x8133AE31\t0x11A5\n0x8133AE32\t0x11A6\n0x8133AE33\t0x11A7\n0x8133AE34\t0x11A8\n0x8133AE35\t0x11A9\n0x8133AE36\t0x11AA\n0x8133AE37\t0x11AB\n0x8133AE38\t0x11AC\n0x8133AE39\t0x11AD\n0x8133AF30\t0x11AE\n0x8133AF31\t0x11AF\n0x8133AF32\t0x11B0\n0x8133AF33\t0x11B1\n0x8133AF34\t0x11B2\n0x8133AF35\t0x11B3\n0x8133AF36\t0x11B4\n0x8133AF37\t0x11B5\n0x8133AF38\t0x11B6\n0x8133AF39\t0x11B7\n0x8133B030\t0x11B8\n0x8133B031\t0x11B9\n0x8133B032\t0x11BA\n0x8133B033\t0x11BB\n0x8133B034\t0x11BC\n0x8133B035\t0x11BD\n0x8133B036\t0x11BE\n0x8133B037\t0x11BF\n0x8133B038\t0x11C0\n0x8133B039\t0x11C1\n0x8133B130\t0x11C2\n0x8133B131\t0x11C3\n0x8133B132\t0x11C4\n0x8133B133\t0x11C5\n0x8133B134\t0x11C6\n0x8133B135\t0x11C7\n0x8133B136\t0x11C8\n0x8133B137\t0x11C9\n0x8133B138\t0x11CA\n0x8133B139\t0x11CB\n0x8133B230\t0x11CC\n0x8133B231\t0x11CD\n0x8133B232\t0x11CE\n0x8133B233\t0x11CF\n0x8133B234\t0x11D0\n0x8133B235\t0x11D1\n0x8133B236\t0x11D2\n0x8133B237\t0x11D3\n0x8133B238\t0x11D4\n0x8133B239\t0x11D5\n0x8133B330\t0x11D6\n0x8133B331\t0x11D7\n0x8133B332\t0x11D8\n0x8133B333\t0x11D9\n0x8133B334\t0x11DA\n0x8133B335\t0x11DB\n0x8133B336\t0x11DC\n0x8133B337\t0x11DD\n0x8133B338\t0x11DE\n0x8133B339\t0x11DF\n0x8133B430\t0x11E0\n0x8133B431\t0x11E1\n0x8133B432\t0x11E2\n0x8133B433\t0x11E3\n0x8133B434\t0x11E4\n0x8133B435\t0x11E5\n0x8133B436\t0x11E6\n0x8133B437\t0x11E7\n0x8133B438\t0x11E8\n0x8133B439\t0x11E9\n0x8133B530\t0x11EA\n0x8133B531\t0x11EB\n0x8133B532\t0x11EC\n0x8133B533\t0x11ED\n0x8133B534\t0x11EE\n0x8133B535\t0x11EF\n0x8133B536\t0x11F0\n0x8133B537\t0x11F1\n0x8133B538\t0x11F2\n0x8133B539\t0x11F3\n0x8133B630\t0x11F4\n0x8133B631\t0x11F5\n0x8133B632\t0x11F6\n0x8133B633\t0x11F7\n0x8133B634\t0x11F8\n0x8133B635\t0x11F9\n0x8133B636\t0x11FA\n0x8133B637\t0x11FB\n0x8133B638\t0x11FC\n0x8133B639\t0x11FD\n0x8133B730\t0x11FE\n0x8133B731\t0x11FF\n0x8133B732\t0x1200\n0x8133B733\t0x1201\n0x8133B734\t0x1202\n0x8133B735\t0x1203\n0x8133B736\t0x1204\n0x8133B737\t0x1205\n0x8133B738\t0x1206\n0x8133B739\t0x1207\n0x8133B830\t0x1208\n0x8133B831\t0x1209\n0x8133B832\t0x120A\n0x8133B833\t0x120B\n0x8133B834\t0x120C\n0x8133B835\t0x120D\n0x8133B836\t0x120E\n0x8133B837\t0x120F\n0x8133B838\t0x1210\n0x8133B839\t0x1211\n0x8133B930\t0x1212\n0x8133B931\t0x1213\n0x8133B932\t0x1214\n0x8133B933\t0x1215\n0x8133B934\t0x1216\n0x8133B935\t0x1217\n0x8133B936\t0x1218\n0x8133B937\t0x1219\n0x8133B938\t0x121A\n0x8133B939\t0x121B\n0x8133BA30\t0x121C\n0x8133BA31\t0x121D\n0x8133BA32\t0x121E\n0x8133BA33\t0x121F\n0x8133BA34\t0x1220\n0x8133BA35\t0x1221\n0x8133BA36\t0x1222\n0x8133BA37\t0x1223\n0x8133BA38\t0x1224\n0x8133BA39\t0x1225\n0x8133BB30\t0x1226\n0x8133BB31\t0x1227\n0x8133BB32\t0x1228\n0x8133BB33\t0x1229\n0x8133BB34\t0x122A\n0x8133BB35\t0x122B\n0x8133BB36\t0x122C\n0x8133BB37\t0x122D\n0x8133BB38\t0x122E\n0x8133BB39\t0x122F\n0x8133BC30\t0x1230\n0x8133BC31\t0x1231\n0x8133BC32\t0x1232\n0x8133BC33\t0x1233\n0x8133BC34\t0x1234\n0x8133BC35\t0x1235\n0x8133BC36\t0x1236\n0x8133BC37\t0x1237\n0x8133BC38\t0x1238\n0x8133BC39\t0x1239\n0x8133BD30\t0x123A\n0x8133BD31\t0x123B\n0x8133BD32\t0x123C\n0x8133BD33\t0x123D\n0x8133BD34\t0x123E\n0x8133BD35\t0x123F\n0x8133BD36\t0x1240\n0x8133BD37\t0x1241\n0x8133BD38\t0x1242\n0x8133BD39\t0x1243\n0x8133BE30\t0x1244\n0x8133BE31\t0x1245\n0x8133BE32\t0x1246\n0x8133BE33\t0x1247\n0x8133BE34\t0x1248\n0x8133BE35\t0x1249\n0x8133BE36\t0x124A\n0x8133BE37\t0x124B\n0x8133BE38\t0x124C\n0x8133BE39\t0x124D\n0x8133BF30\t0x124E\n0x8133BF31\t0x124F\n0x8133BF32\t0x1250\n0x8133BF33\t0x1251\n0x8133BF34\t0x1252\n0x8133BF35\t0x1253\n0x8133BF36\t0x1254\n0x8133BF37\t0x1255\n0x8133BF38\t0x1256\n0x8133BF39\t0x1257\n0x8133C030\t0x1258\n0x8133C031\t0x1259\n0x8133C032\t0x125A\n0x8133C033\t0x125B\n0x8133C034\t0x125C\n0x8133C035\t0x125D\n0x8133C036\t0x125E\n0x8133C037\t0x125F\n0x8133C038\t0x1260\n0x8133C039\t0x1261\n0x8133C130\t0x1262\n0x8133C131\t0x1263\n0x8133C132\t0x1264\n0x8133C133\t0x1265\n0x8133C134\t0x1266\n0x8133C135\t0x1267\n0x8133C136\t0x1268\n0x8133C137\t0x1269\n0x8133C138\t0x126A\n0x8133C139\t0x126B\n0x8133C230\t0x126C\n0x8133C231\t0x126D\n0x8133C232\t0x126E\n0x8133C233\t0x126F\n0x8133C234\t0x1270\n0x8133C235\t0x1271\n0x8133C236\t0x1272\n0x8133C237\t0x1273\n0x8133C238\t0x1274\n0x8133C239\t0x1275\n0x8133C330\t0x1276\n0x8133C331\t0x1277\n0x8133C332\t0x1278\n0x8133C333\t0x1279\n0x8133C334\t0x127A\n0x8133C335\t0x127B\n0x8133C336\t0x127C\n0x8133C337\t0x127D\n0x8133C338\t0x127E\n0x8133C339\t0x127F\n0x8133C430\t0x1280\n0x8133C431\t0x1281\n0x8133C432\t0x1282\n0x8133C433\t0x1283\n0x8133C434\t0x1284\n0x8133C435\t0x1285\n0x8133C436\t0x1286\n0x8133C437\t0x1287\n0x8133C438\t0x1288\n0x8133C439\t0x1289\n0x8133C530\t0x128A\n0x8133C531\t0x128B\n0x8133C532\t0x128C\n0x8133C533\t0x128D\n0x8133C534\t0x128E\n0x8133C535\t0x128F\n0x8133C536\t0x1290\n0x8133C537\t0x1291\n0x8133C538\t0x1292\n0x8133C539\t0x1293\n0x8133C630\t0x1294\n0x8133C631\t0x1295\n0x8133C632\t0x1296\n0x8133C633\t0x1297\n0x8133C634\t0x1298\n0x8133C635\t0x1299\n0x8133C636\t0x129A\n0x8133C637\t0x129B\n0x8133C638\t0x129C\n0x8133C639\t0x129D\n0x8133C730\t0x129E\n0x8133C731\t0x129F\n0x8133C732\t0x12A0\n0x8133C733\t0x12A1\n0x8133C734\t0x12A2\n0x8133C735\t0x12A3\n0x8133C736\t0x12A4\n0x8133C737\t0x12A5\n0x8133C738\t0x12A6\n0x8133C739\t0x12A7\n0x8133C830\t0x12A8\n0x8133C831\t0x12A9\n0x8133C832\t0x12AA\n0x8133C833\t0x12AB\n0x8133C834\t0x12AC\n0x8133C835\t0x12AD\n0x8133C836\t0x12AE\n0x8133C837\t0x12AF\n0x8133C838\t0x12B0\n0x8133C839\t0x12B1\n0x8133C930\t0x12B2\n0x8133C931\t0x12B3\n0x8133C932\t0x12B4\n0x8133C933\t0x12B5\n0x8133C934\t0x12B6\n0x8133C935\t0x12B7\n0x8133C936\t0x12B8\n0x8133C937\t0x12B9\n0x8133C938\t0x12BA\n0x8133C939\t0x12BB\n0x8133CA30\t0x12BC\n0x8133CA31\t0x12BD\n0x8133CA32\t0x12BE\n0x8133CA33\t0x12BF\n0x8133CA34\t0x12C0\n0x8133CA35\t0x12C1\n0x8133CA36\t0x12C2\n0x8133CA37\t0x12C3\n0x8133CA38\t0x12C4\n0x8133CA39\t0x12C5\n0x8133CB30\t0x12C6\n0x8133CB31\t0x12C7\n0x8133CB32\t0x12C8\n0x8133CB33\t0x12C9\n0x8133CB34\t0x12CA\n0x8133CB35\t0x12CB\n0x8133CB36\t0x12CC\n0x8133CB37\t0x12CD\n0x8133CB38\t0x12CE\n0x8133CB39\t0x12CF\n0x8133CC30\t0x12D0\n0x8133CC31\t0x12D1\n0x8133CC32\t0x12D2\n0x8133CC33\t0x12D3\n0x8133CC34\t0x12D4\n0x8133CC35\t0x12D5\n0x8133CC36\t0x12D6\n0x8133CC37\t0x12D7\n0x8133CC38\t0x12D8\n0x8133CC39\t0x12D9\n0x8133CD30\t0x12DA\n0x8133CD31\t0x12DB\n0x8133CD32\t0x12DC\n0x8133CD33\t0x12DD\n0x8133CD34\t0x12DE\n0x8133CD35\t0x12DF\n0x8133CD36\t0x12E0\n0x8133CD37\t0x12E1\n0x8133CD38\t0x12E2\n0x8133CD39\t0x12E3\n0x8133CE30\t0x12E4\n0x8133CE31\t0x12E5\n0x8133CE32\t0x12E6\n0x8133CE33\t0x12E7\n0x8133CE34\t0x12E8\n0x8133CE35\t0x12E9\n0x8133CE36\t0x12EA\n0x8133CE37\t0x12EB\n0x8133CE38\t0x12EC\n0x8133CE39\t0x12ED\n0x8133CF30\t0x12EE\n0x8133CF31\t0x12EF\n0x8133CF32\t0x12F0\n0x8133CF33\t0x12F1\n0x8133CF34\t0x12F2\n0x8133CF35\t0x12F3\n0x8133CF36\t0x12F4\n0x8133CF37\t0x12F5\n0x8133CF38\t0x12F6\n0x8133CF39\t0x12F7\n0x8133D030\t0x12F8\n0x8133D031\t0x12F9\n0x8133D032\t0x12FA\n0x8133D033\t0x12FB\n0x8133D034\t0x12FC\n0x8133D035\t0x12FD\n0x8133D036\t0x12FE\n0x8133D037\t0x12FF\n0x8133D038\t0x1300\n0x8133D039\t0x1301\n0x8133D130\t0x1302\n0x8133D131\t0x1303\n0x8133D132\t0x1304\n0x8133D133\t0x1305\n0x8133D134\t0x1306\n0x8133D135\t0x1307\n0x8133D136\t0x1308\n0x8133D137\t0x1309\n0x8133D138\t0x130A\n0x8133D139\t0x130B\n0x8133D230\t0x130C\n0x8133D231\t0x130D\n0x8133D232\t0x130E\n0x8133D233\t0x130F\n0x8133D234\t0x1310\n0x8133D235\t0x1311\n0x8133D236\t0x1312\n0x8133D237\t0x1313\n0x8133D238\t0x1314\n0x8133D239\t0x1315\n0x8133D330\t0x1316\n0x8133D331\t0x1317\n0x8133D332\t0x1318\n0x8133D333\t0x1319\n0x8133D334\t0x131A\n0x8133D335\t0x131B\n0x8133D336\t0x131C\n0x8133D337\t0x131D\n0x8133D338\t0x131E\n0x8133D339\t0x131F\n0x8133D430\t0x1320\n0x8133D431\t0x1321\n0x8133D432\t0x1322\n0x8133D433\t0x1323\n0x8133D434\t0x1324\n0x8133D435\t0x1325\n0x8133D436\t0x1326\n0x8133D437\t0x1327\n0x8133D438\t0x1328\n0x8133D439\t0x1329\n0x8133D530\t0x132A\n0x8133D531\t0x132B\n0x8133D532\t0x132C\n0x8133D533\t0x132D\n0x8133D534\t0x132E\n0x8133D535\t0x132F\n0x8133D536\t0x1330\n0x8133D537\t0x1331\n0x8133D538\t0x1332\n0x8133D539\t0x1333\n0x8133D630\t0x1334\n0x8133D631\t0x1335\n0x8133D632\t0x1336\n0x8133D633\t0x1337\n0x8133D634\t0x1338\n0x8133D635\t0x1339\n0x8133D636\t0x133A\n0x8133D637\t0x133B\n0x8133D638\t0x133C\n0x8133D639\t0x133D\n0x8133D730\t0x133E\n0x8133D731\t0x133F\n0x8133D732\t0x1340\n0x8133D733\t0x1341\n0x8133D734\t0x1342\n0x8133D735\t0x1343\n0x8133D736\t0x1344\n0x8133D737\t0x1345\n0x8133D738\t0x1346\n0x8133D739\t0x1347\n0x8133D830\t0x1348\n0x8133D831\t0x1349\n0x8133D832\t0x134A\n0x8133D833\t0x134B\n0x8133D834\t0x134C\n0x8133D835\t0x134D\n0x8133D836\t0x134E\n0x8133D837\t0x134F\n0x8133D838\t0x1350\n0x8133D839\t0x1351\n0x8133D930\t0x1352\n0x8133D931\t0x1353\n0x8133D932\t0x1354\n0x8133D933\t0x1355\n0x8133D934\t0x1356\n0x8133D935\t0x1357\n0x8133D936\t0x1358\n0x8133D937\t0x1359\n0x8133D938\t0x135A\n0x8133D939\t0x135B\n0x8133DA30\t0x135C\n0x8133DA31\t0x135D\n0x8133DA32\t0x135E\n0x8133DA33\t0x135F\n0x8133DA34\t0x1360\n0x8133DA35\t0x1361\n0x8133DA36\t0x1362\n0x8133DA37\t0x1363\n0x8133DA38\t0x1364\n0x8133DA39\t0x1365\n0x8133DB30\t0x1366\n0x8133DB31\t0x1367\n0x8133DB32\t0x1368\n0x8133DB33\t0x1369\n0x8133DB34\t0x136A\n0x8133DB35\t0x136B\n0x8133DB36\t0x136C\n0x8133DB37\t0x136D\n0x8133DB38\t0x136E\n0x8133DB39\t0x136F\n0x8133DC30\t0x1370\n0x8133DC31\t0x1371\n0x8133DC32\t0x1372\n0x8133DC33\t0x1373\n0x8133DC34\t0x1374\n0x8133DC35\t0x1375\n0x8133DC36\t0x1376\n0x8133DC37\t0x1377\n0x8133DC38\t0x1378\n0x8133DC39\t0x1379\n0x8133DD30\t0x137A\n0x8133DD31\t0x137B\n0x8133DD32\t0x137C\n0x8133DD33\t0x137D\n0x8133DD34\t0x137E\n0x8133DD35\t0x137F\n0x8133DD36\t0x1380\n0x8133DD37\t0x1381\n0x8133DD38\t0x1382\n0x8133DD39\t0x1383\n0x8133DE30\t0x1384\n0x8133DE31\t0x1385\n0x8133DE32\t0x1386\n0x8133DE33\t0x1387\n0x8133DE34\t0x1388\n0x8133DE35\t0x1389\n0x8133DE36\t0x138A\n0x8133DE37\t0x138B\n0x8133DE38\t0x138C\n0x8133DE39\t0x138D\n0x8133DF30\t0x138E\n0x8133DF31\t0x138F\n0x8133DF32\t0x1390\n0x8133DF33\t0x1391\n0x8133DF34\t0x1392\n0x8133DF35\t0x1393\n0x8133DF36\t0x1394\n0x8133DF37\t0x1395\n0x8133DF38\t0x1396\n0x8133DF39\t0x1397\n0x8133E030\t0x1398\n0x8133E031\t0x1399\n0x8133E032\t0x139A\n0x8133E033\t0x139B\n0x8133E034\t0x139C\n0x8133E035\t0x139D\n0x8133E036\t0x139E\n0x8133E037\t0x139F\n0x8133E038\t0x13A0\n0x8133E039\t0x13A1\n0x8133E130\t0x13A2\n0x8133E131\t0x13A3\n0x8133E132\t0x13A4\n0x8133E133\t0x13A5\n0x8133E134\t0x13A6\n0x8133E135\t0x13A7\n0x8133E136\t0x13A8\n0x8133E137\t0x13A9\n0x8133E138\t0x13AA\n0x8133E139\t0x13AB\n0x8133E230\t0x13AC\n0x8133E231\t0x13AD\n0x8133E232\t0x13AE\n0x8133E233\t0x13AF\n0x8133E234\t0x13B0\n0x8133E235\t0x13B1\n0x8133E236\t0x13B2\n0x8133E237\t0x13B3\n0x8133E238\t0x13B4\n0x8133E239\t0x13B5\n0x8133E330\t0x13B6\n0x8133E331\t0x13B7\n0x8133E332\t0x13B8\n0x8133E333\t0x13B9\n0x8133E334\t0x13BA\n0x8133E335\t0x13BB\n0x8133E336\t0x13BC\n0x8133E337\t0x13BD\n0x8133E338\t0x13BE\n0x8133E339\t0x13BF\n0x8133E430\t0x13C0\n0x8133E431\t0x13C1\n0x8133E432\t0x13C2\n0x8133E433\t0x13C3\n0x8133E434\t0x13C4\n0x8133E435\t0x13C5\n0x8133E436\t0x13C6\n0x8133E437\t0x13C7\n0x8133E438\t0x13C8\n0x8133E439\t0x13C9\n0x8133E530\t0x13CA\n0x8133E531\t0x13CB\n0x8133E532\t0x13CC\n0x8133E533\t0x13CD\n0x8133E534\t0x13CE\n0x8133E535\t0x13CF\n0x8133E536\t0x13D0\n0x8133E537\t0x13D1\n0x8133E538\t0x13D2\n0x8133E539\t0x13D3\n0x8133E630\t0x13D4\n0x8133E631\t0x13D5\n0x8133E632\t0x13D6\n0x8133E633\t0x13D7\n0x8133E634\t0x13D8\n0x8133E635\t0x13D9\n0x8133E636\t0x13DA\n0x8133E637\t0x13DB\n0x8133E638\t0x13DC\n0x8133E639\t0x13DD\n0x8133E730\t0x13DE\n0x8133E731\t0x13DF\n0x8133E732\t0x13E0\n0x8133E733\t0x13E1\n0x8133E734\t0x13E2\n0x8133E735\t0x13E3\n0x8133E736\t0x13E4\n0x8133E737\t0x13E5\n0x8133E738\t0x13E6\n0x8133E739\t0x13E7\n0x8133E830\t0x13E8\n0x8133E831\t0x13E9\n0x8133E832\t0x13EA\n0x8133E833\t0x13EB\n0x8133E834\t0x13EC\n0x8133E835\t0x13ED\n0x8133E836\t0x13EE\n0x8133E837\t0x13EF\n0x8133E838\t0x13F0\n0x8133E839\t0x13F1\n0x8133E930\t0x13F2\n0x8133E931\t0x13F3\n0x8133E932\t0x13F4\n0x8133E933\t0x13F5\n0x8133E934\t0x13F6\n0x8133E935\t0x13F7\n0x8133E936\t0x13F8\n0x8133E937\t0x13F9\n0x8133E938\t0x13FA\n0x8133E939\t0x13FB\n0x8133EA30\t0x13FC\n0x8133EA31\t0x13FD\n0x8133EA32\t0x13FE\n0x8133EA33\t0x13FF\n0x8133EA34\t0x1400\n0x8133EA35\t0x1401\n0x8133EA36\t0x1402\n0x8133EA37\t0x1403\n0x8133EA38\t0x1404\n0x8133EA39\t0x1405\n0x8133EB30\t0x1406\n0x8133EB31\t0x1407\n0x8133EB32\t0x1408\n0x8133EB33\t0x1409\n0x8133EB34\t0x140A\n0x8133EB35\t0x140B\n0x8133EB36\t0x140C\n0x8133EB37\t0x140D\n0x8133EB38\t0x140E\n0x8133EB39\t0x140F\n0x8133EC30\t0x1410\n0x8133EC31\t0x1411\n0x8133EC32\t0x1412\n0x8133EC33\t0x1413\n0x8133EC34\t0x1414\n0x8133EC35\t0x1415\n0x8133EC36\t0x1416\n0x8133EC37\t0x1417\n0x8133EC38\t0x1418\n0x8133EC39\t0x1419\n0x8133ED30\t0x141A\n0x8133ED31\t0x141B\n0x8133ED32\t0x141C\n0x8133ED33\t0x141D\n0x8133ED34\t0x141E\n0x8133ED35\t0x141F\n0x8133ED36\t0x1420\n0x8133ED37\t0x1421\n0x8133ED38\t0x1422\n0x8133ED39\t0x1423\n0x8133EE30\t0x1424\n0x8133EE31\t0x1425\n0x8133EE32\t0x1426\n0x8133EE33\t0x1427\n0x8133EE34\t0x1428\n0x8133EE35\t0x1429\n0x8133EE36\t0x142A\n0x8133EE37\t0x142B\n0x8133EE38\t0x142C\n0x8133EE39\t0x142D\n0x8133EF30\t0x142E\n0x8133EF31\t0x142F\n0x8133EF32\t0x1430\n0x8133EF33\t0x1431\n0x8133EF34\t0x1432\n0x8133EF35\t0x1433\n0x8133EF36\t0x1434\n0x8133EF37\t0x1435\n0x8133EF38\t0x1436\n0x8133EF39\t0x1437\n0x8133F030\t0x1438\n0x8133F031\t0x1439\n0x8133F032\t0x143A\n0x8133F033\t0x143B\n0x8133F034\t0x143C\n0x8133F035\t0x143D\n0x8133F036\t0x143E\n0x8133F037\t0x143F\n0x8133F038\t0x1440\n0x8133F039\t0x1441\n0x8133F130\t0x1442\n0x8133F131\t0x1443\n0x8133F132\t0x1444\n0x8133F133\t0x1445\n0x8133F134\t0x1446\n0x8133F135\t0x1447\n0x8133F136\t0x1448\n0x8133F137\t0x1449\n0x8133F138\t0x144A\n0x8133F139\t0x144B\n0x8133F230\t0x144C\n0x8133F231\t0x144D\n0x8133F232\t0x144E\n0x8133F233\t0x144F\n0x8133F234\t0x1450\n0x8133F235\t0x1451\n0x8133F236\t0x1452\n0x8133F237\t0x1453\n0x8133F238\t0x1454\n0x8133F239\t0x1455\n0x8133F330\t0x1456\n0x8133F331\t0x1457\n0x8133F332\t0x1458\n0x8133F333\t0x1459\n0x8133F334\t0x145A\n0x8133F335\t0x145B\n0x8133F336\t0x145C\n0x8133F337\t0x145D\n0x8133F338\t0x145E\n0x8133F339\t0x145F\n0x8133F430\t0x1460\n0x8133F431\t0x1461\n0x8133F432\t0x1462\n0x8133F433\t0x1463\n0x8133F434\t0x1464\n0x8133F435\t0x1465\n0x8133F436\t0x1466\n0x8133F437\t0x1467\n0x8133F438\t0x1468\n0x8133F439\t0x1469\n0x8133F530\t0x146A\n0x8133F531\t0x146B\n0x8133F532\t0x146C\n0x8133F533\t0x146D\n0x8133F534\t0x146E\n0x8133F535\t0x146F\n0x8133F536\t0x1470\n0x8133F537\t0x1471\n0x8133F538\t0x1472\n0x8133F539\t0x1473\n0x8133F630\t0x1474\n0x8133F631\t0x1475\n0x8133F632\t0x1476\n0x8133F633\t0x1477\n0x8133F634\t0x1478\n0x8133F635\t0x1479\n0x8133F636\t0x147A\n0x8133F637\t0x147B\n0x8133F638\t0x147C\n0x8133F639\t0x147D\n0x8133F730\t0x147E\n0x8133F731\t0x147F\n0x8133F732\t0x1480\n0x8133F733\t0x1481\n0x8133F734\t0x1482\n0x8133F735\t0x1483\n0x8133F736\t0x1484\n0x8133F737\t0x1485\n0x8133F738\t0x1486\n0x8133F739\t0x1487\n0x8133F830\t0x1488\n0x8133F831\t0x1489\n0x8133F832\t0x148A\n0x8133F833\t0x148B\n0x8133F834\t0x148C\n0x8133F835\t0x148D\n0x8133F836\t0x148E\n0x8133F837\t0x148F\n0x8133F838\t0x1490\n0x8133F839\t0x1491\n0x8133F930\t0x1492\n0x8133F931\t0x1493\n0x8133F932\t0x1494\n0x8133F933\t0x1495\n0x8133F934\t0x1496\n0x8133F935\t0x1497\n0x8133F936\t0x1498\n0x8133F937\t0x1499\n0x8133F938\t0x149A\n0x8133F939\t0x149B\n0x8133FA30\t0x149C\n0x8133FA31\t0x149D\n0x8133FA32\t0x149E\n0x8133FA33\t0x149F\n0x8133FA34\t0x14A0\n0x8133FA35\t0x14A1\n0x8133FA36\t0x14A2\n0x8133FA37\t0x14A3\n0x8133FA38\t0x14A4\n0x8133FA39\t0x14A5\n0x8133FB30\t0x14A6\n0x8133FB31\t0x14A7\n0x8133FB32\t0x14A8\n0x8133FB33\t0x14A9\n0x8133FB34\t0x14AA\n0x8133FB35\t0x14AB\n0x8133FB36\t0x14AC\n0x8133FB37\t0x14AD\n0x8133FB38\t0x14AE\n0x8133FB39\t0x14AF\n0x8133FC30\t0x14B0\n0x8133FC31\t0x14B1\n0x8133FC32\t0x14B2\n0x8133FC33\t0x14B3\n0x8133FC34\t0x14B4\n0x8133FC35\t0x14B5\n0x8133FC36\t0x14B6\n0x8133FC37\t0x14B7\n0x8133FC38\t0x14B8\n0x8133FC39\t0x14B9\n0x8133FD30\t0x14BA\n0x8133FD31\t0x14BB\n0x8133FD32\t0x14BC\n0x8133FD33\t0x14BD\n0x8133FD34\t0x14BE\n0x8133FD35\t0x14BF\n0x8133FD36\t0x14C0\n0x8133FD37\t0x14C1\n0x8133FD38\t0x14C2\n0x8133FD39\t0x14C3\n0x8133FE30\t0x14C4\n0x8133FE31\t0x14C5\n0x8133FE32\t0x14C6\n0x8133FE33\t0x14C7\n0x8133FE34\t0x14C8\n0x8133FE35\t0x14C9\n0x8133FE36\t0x14CA\n0x8133FE37\t0x14CB\n0x8133FE38\t0x14CC\n0x8133FE39\t0x14CD\n0x81348130\t0x14CE\n0x81348131\t0x14CF\n0x81348132\t0x14D0\n0x81348133\t0x14D1\n0x81348134\t0x14D2\n0x81348135\t0x14D3\n0x81348136\t0x14D4\n0x81348137\t0x14D5\n0x81348138\t0x14D6\n0x81348139\t0x14D7\n0x81348230\t0x14D8\n0x81348231\t0x14D9\n0x81348232\t0x14DA\n0x81348233\t0x14DB\n0x81348234\t0x14DC\n0x81348235\t0x14DD\n0x81348236\t0x14DE\n0x81348237\t0x14DF\n0x81348238\t0x14E0\n0x81348239\t0x14E1\n0x81348330\t0x14E2\n0x81348331\t0x14E3\n0x81348332\t0x14E4\n0x81348333\t0x14E5\n0x81348334\t0x14E6\n0x81348335\t0x14E7\n0x81348336\t0x14E8\n0x81348337\t0x14E9\n0x81348338\t0x14EA\n0x81348339\t0x14EB\n0x81348430\t0x14EC\n0x81348431\t0x14ED\n0x81348432\t0x14EE\n0x81348433\t0x14EF\n0x81348434\t0x14F0\n0x81348435\t0x14F1\n0x81348436\t0x14F2\n0x81348437\t0x14F3\n0x81348438\t0x14F4\n0x81348439\t0x14F5\n0x81348530\t0x14F6\n0x81348531\t0x14F7\n0x81348532\t0x14F8\n0x81348533\t0x14F9\n0x81348534\t0x14FA\n0x81348535\t0x14FB\n0x81348536\t0x14FC\n0x81348537\t0x14FD\n0x81348538\t0x14FE\n0x81348539\t0x14FF\n0x81348630\t0x1500\n0x81348631\t0x1501\n0x81348632\t0x1502\n0x81348633\t0x1503\n0x81348634\t0x1504\n0x81348635\t0x1505\n0x81348636\t0x1506\n0x81348637\t0x1507\n0x81348638\t0x1508\n0x81348639\t0x1509\n0x81348730\t0x150A\n0x81348731\t0x150B\n0x81348732\t0x150C\n0x81348733\t0x150D\n0x81348734\t0x150E\n0x81348735\t0x150F\n0x81348736\t0x1510\n0x81348737\t0x1511\n0x81348738\t0x1512\n0x81348739\t0x1513\n0x81348830\t0x1514\n0x81348831\t0x1515\n0x81348832\t0x1516\n0x81348833\t0x1517\n0x81348834\t0x1518\n0x81348835\t0x1519\n0x81348836\t0x151A\n0x81348837\t0x151B\n0x81348838\t0x151C\n0x81348839\t0x151D\n0x81348930\t0x151E\n0x81348931\t0x151F\n0x81348932\t0x1520\n0x81348933\t0x1521\n0x81348934\t0x1522\n0x81348935\t0x1523\n0x81348936\t0x1524\n0x81348937\t0x1525\n0x81348938\t0x1526\n0x81348939\t0x1527\n0x81348A30\t0x1528\n0x81348A31\t0x1529\n0x81348A32\t0x152A\n0x81348A33\t0x152B\n0x81348A34\t0x152C\n0x81348A35\t0x152D\n0x81348A36\t0x152E\n0x81348A37\t0x152F\n0x81348A38\t0x1530\n0x81348A39\t0x1531\n0x81348B30\t0x1532\n0x81348B31\t0x1533\n0x81348B32\t0x1534\n0x81348B33\t0x1535\n0x81348B34\t0x1536\n0x81348B35\t0x1537\n0x81348B36\t0x1538\n0x81348B37\t0x1539\n0x81348B38\t0x153A\n0x81348B39\t0x153B\n0x81348C30\t0x153C\n0x81348C31\t0x153D\n0x81348C32\t0x153E\n0x81348C33\t0x153F\n0x81348C34\t0x1540\n0x81348C35\t0x1541\n0x81348C36\t0x1542\n0x81348C37\t0x1543\n0x81348C38\t0x1544\n0x81348C39\t0x1545\n0x81348D30\t0x1546\n0x81348D31\t0x1547\n0x81348D32\t0x1548\n0x81348D33\t0x1549\n0x81348D34\t0x154A\n0x81348D35\t0x154B\n0x81348D36\t0x154C\n0x81348D37\t0x154D\n0x81348D38\t0x154E\n0x81348D39\t0x154F\n0x81348E30\t0x1550\n0x81348E31\t0x1551\n0x81348E32\t0x1552\n0x81348E33\t0x1553\n0x81348E34\t0x1554\n0x81348E35\t0x1555\n0x81348E36\t0x1556\n0x81348E37\t0x1557\n0x81348E38\t0x1558\n0x81348E39\t0x1559\n0x81348F30\t0x155A\n0x81348F31\t0x155B\n0x81348F32\t0x155C\n0x81348F33\t0x155D\n0x81348F34\t0x155E\n0x81348F35\t0x155F\n0x81348F36\t0x1560\n0x81348F37\t0x1561\n0x81348F38\t0x1562\n0x81348F39\t0x1563\n0x81349030\t0x1564\n0x81349031\t0x1565\n0x81349032\t0x1566\n0x81349033\t0x1567\n0x81349034\t0x1568\n0x81349035\t0x1569\n0x81349036\t0x156A\n0x81349037\t0x156B\n0x81349038\t0x156C\n0x81349039\t0x156D\n0x81349130\t0x156E\n0x81349131\t0x156F\n0x81349132\t0x1570\n0x81349133\t0x1571\n0x81349134\t0x1572\n0x81349135\t0x1573\n0x81349136\t0x1574\n0x81349137\t0x1575\n0x81349138\t0x1576\n0x81349139\t0x1577\n0x81349230\t0x1578\n0x81349231\t0x1579\n0x81349232\t0x157A\n0x81349233\t0x157B\n0x81349234\t0x157C\n0x81349235\t0x157D\n0x81349236\t0x157E\n0x81349237\t0x157F\n0x81349238\t0x1580\n0x81349239\t0x1581\n0x81349330\t0x1582\n0x81349331\t0x1583\n0x81349332\t0x1584\n0x81349333\t0x1585\n0x81349334\t0x1586\n0x81349335\t0x1587\n0x81349336\t0x1588\n0x81349337\t0x1589\n0x81349338\t0x158A\n0x81349339\t0x158B\n0x81349430\t0x158C\n0x81349431\t0x158D\n0x81349432\t0x158E\n0x81349433\t0x158F\n0x81349434\t0x1590\n0x81349435\t0x1591\n0x81349436\t0x1592\n0x81349437\t0x1593\n0x81349438\t0x1594\n0x81349439\t0x1595\n0x81349530\t0x1596\n0x81349531\t0x1597\n0x81349532\t0x1598\n0x81349533\t0x1599\n0x81349534\t0x159A\n0x81349535\t0x159B\n0x81349536\t0x159C\n0x81349537\t0x159D\n0x81349538\t0x159E\n0x81349539\t0x159F\n0x81349630\t0x15A0\n0x81349631\t0x15A1\n0x81349632\t0x15A2\n0x81349633\t0x15A3\n0x81349634\t0x15A4\n0x81349635\t0x15A5\n0x81349636\t0x15A6\n0x81349637\t0x15A7\n0x81349638\t0x15A8\n0x81349639\t0x15A9\n0x81349730\t0x15AA\n0x81349731\t0x15AB\n0x81349732\t0x15AC\n0x81349733\t0x15AD\n0x81349734\t0x15AE\n0x81349735\t0x15AF\n0x81349736\t0x15B0\n0x81349737\t0x15B1\n0x81349738\t0x15B2\n0x81349739\t0x15B3\n0x81349830\t0x15B4\n0x81349831\t0x15B5\n0x81349832\t0x15B6\n0x81349833\t0x15B7\n0x81349834\t0x15B8\n0x81349835\t0x15B9\n0x81349836\t0x15BA\n0x81349837\t0x15BB\n0x81349838\t0x15BC\n0x81349839\t0x15BD\n0x81349930\t0x15BE\n0x81349931\t0x15BF\n0x81349932\t0x15C0\n0x81349933\t0x15C1\n0x81349934\t0x15C2\n0x81349935\t0x15C3\n0x81349936\t0x15C4\n0x81349937\t0x15C5\n0x81349938\t0x15C6\n0x81349939\t0x15C7\n0x81349A30\t0x15C8\n0x81349A31\t0x15C9\n0x81349A32\t0x15CA\n0x81349A33\t0x15CB\n0x81349A34\t0x15CC\n0x81349A35\t0x15CD\n0x81349A36\t0x15CE\n0x81349A37\t0x15CF\n0x81349A38\t0x15D0\n0x81349A39\t0x15D1\n0x81349B30\t0x15D2\n0x81349B31\t0x15D3\n0x81349B32\t0x15D4\n0x81349B33\t0x15D5\n0x81349B34\t0x15D6\n0x81349B35\t0x15D7\n0x81349B36\t0x15D8\n0x81349B37\t0x15D9\n0x81349B38\t0x15DA\n0x81349B39\t0x15DB\n0x81349C30\t0x15DC\n0x81349C31\t0x15DD\n0x81349C32\t0x15DE\n0x81349C33\t0x15DF\n0x81349C34\t0x15E0\n0x81349C35\t0x15E1\n0x81349C36\t0x15E2\n0x81349C37\t0x15E3\n0x81349C38\t0x15E4\n0x81349C39\t0x15E5\n0x81349D30\t0x15E6\n0x81349D31\t0x15E7\n0x81349D32\t0x15E8\n0x81349D33\t0x15E9\n0x81349D34\t0x15EA\n0x81349D35\t0x15EB\n0x81349D36\t0x15EC\n0x81349D37\t0x15ED\n0x81349D38\t0x15EE\n0x81349D39\t0x15EF\n0x81349E30\t0x15F0\n0x81349E31\t0x15F1\n0x81349E32\t0x15F2\n0x81349E33\t0x15F3\n0x81349E34\t0x15F4\n0x81349E35\t0x15F5\n0x81349E36\t0x15F6\n0x81349E37\t0x15F7\n0x81349E38\t0x15F8\n0x81349E39\t0x15F9\n0x81349F30\t0x15FA\n0x81349F31\t0x15FB\n0x81349F32\t0x15FC\n0x81349F33\t0x15FD\n0x81349F34\t0x15FE\n0x81349F35\t0x15FF\n0x81349F36\t0x1600\n0x81349F37\t0x1601\n0x81349F38\t0x1602\n0x81349F39\t0x1603\n0x8134A030\t0x1604\n0x8134A031\t0x1605\n0x8134A032\t0x1606\n0x8134A033\t0x1607\n0x8134A034\t0x1608\n0x8134A035\t0x1609\n0x8134A036\t0x160A\n0x8134A037\t0x160B\n0x8134A038\t0x160C\n0x8134A039\t0x160D\n0x8134A130\t0x160E\n0x8134A131\t0x160F\n0x8134A132\t0x1610\n0x8134A133\t0x1611\n0x8134A134\t0x1612\n0x8134A135\t0x1613\n0x8134A136\t0x1614\n0x8134A137\t0x1615\n0x8134A138\t0x1616\n0x8134A139\t0x1617\n0x8134A230\t0x1618\n0x8134A231\t0x1619\n0x8134A232\t0x161A\n0x8134A233\t0x161B\n0x8134A234\t0x161C\n0x8134A235\t0x161D\n0x8134A236\t0x161E\n0x8134A237\t0x161F\n0x8134A238\t0x1620\n0x8134A239\t0x1621\n0x8134A330\t0x1622\n0x8134A331\t0x1623\n0x8134A332\t0x1624\n0x8134A333\t0x1625\n0x8134A334\t0x1626\n0x8134A335\t0x1627\n0x8134A336\t0x1628\n0x8134A337\t0x1629\n0x8134A338\t0x162A\n0x8134A339\t0x162B\n0x8134A430\t0x162C\n0x8134A431\t0x162D\n0x8134A432\t0x162E\n0x8134A433\t0x162F\n0x8134A434\t0x1630\n0x8134A435\t0x1631\n0x8134A436\t0x1632\n0x8134A437\t0x1633\n0x8134A438\t0x1634\n0x8134A439\t0x1635\n0x8134A530\t0x1636\n0x8134A531\t0x1637\n0x8134A532\t0x1638\n0x8134A533\t0x1639\n0x8134A534\t0x163A\n0x8134A535\t0x163B\n0x8134A536\t0x163C\n0x8134A537\t0x163D\n0x8134A538\t0x163E\n0x8134A539\t0x163F\n0x8134A630\t0x1640\n0x8134A631\t0x1641\n0x8134A632\t0x1642\n0x8134A633\t0x1643\n0x8134A634\t0x1644\n0x8134A635\t0x1645\n0x8134A636\t0x1646\n0x8134A637\t0x1647\n0x8134A638\t0x1648\n0x8134A639\t0x1649\n0x8134A730\t0x164A\n0x8134A731\t0x164B\n0x8134A732\t0x164C\n0x8134A733\t0x164D\n0x8134A734\t0x164E\n0x8134A735\t0x164F\n0x8134A736\t0x1650\n0x8134A737\t0x1651\n0x8134A738\t0x1652\n0x8134A739\t0x1653\n0x8134A830\t0x1654\n0x8134A831\t0x1655\n0x8134A832\t0x1656\n0x8134A833\t0x1657\n0x8134A834\t0x1658\n0x8134A835\t0x1659\n0x8134A836\t0x165A\n0x8134A837\t0x165B\n0x8134A838\t0x165C\n0x8134A839\t0x165D\n0x8134A930\t0x165E\n0x8134A931\t0x165F\n0x8134A932\t0x1660\n0x8134A933\t0x1661\n0x8134A934\t0x1662\n0x8134A935\t0x1663\n0x8134A936\t0x1664\n0x8134A937\t0x1665\n0x8134A938\t0x1666\n0x8134A939\t0x1667\n0x8134AA30\t0x1668\n0x8134AA31\t0x1669\n0x8134AA32\t0x166A\n0x8134AA33\t0x166B\n0x8134AA34\t0x166C\n0x8134AA35\t0x166D\n0x8134AA36\t0x166E\n0x8134AA37\t0x166F\n0x8134AA38\t0x1670\n0x8134AA39\t0x1671\n0x8134AB30\t0x1672\n0x8134AB31\t0x1673\n0x8134AB32\t0x1674\n0x8134AB33\t0x1675\n0x8134AB34\t0x1676\n0x8134AB35\t0x1677\n0x8134AB36\t0x1678\n0x8134AB37\t0x1679\n0x8134AB38\t0x167A\n0x8134AB39\t0x167B\n0x8134AC30\t0x167C\n0x8134AC31\t0x167D\n0x8134AC32\t0x167E\n0x8134AC33\t0x167F\n0x8134AC34\t0x1680\n0x8134AC35\t0x1681\n0x8134AC36\t0x1682\n0x8134AC37\t0x1683\n0x8134AC38\t0x1684\n0x8134AC39\t0x1685\n0x8134AD30\t0x1686\n0x8134AD31\t0x1687\n0x8134AD32\t0x1688\n0x8134AD33\t0x1689\n0x8134AD34\t0x168A\n0x8134AD35\t0x168B\n0x8134AD36\t0x168C\n0x8134AD37\t0x168D\n0x8134AD38\t0x168E\n0x8134AD39\t0x168F\n0x8134AE30\t0x1690\n0x8134AE31\t0x1691\n0x8134AE32\t0x1692\n0x8134AE33\t0x1693\n0x8134AE34\t0x1694\n0x8134AE35\t0x1695\n0x8134AE36\t0x1696\n0x8134AE37\t0x1697\n0x8134AE38\t0x1698\n0x8134AE39\t0x1699\n0x8134AF30\t0x169A\n0x8134AF31\t0x169B\n0x8134AF32\t0x169C\n0x8134AF33\t0x169D\n0x8134AF34\t0x169E\n0x8134AF35\t0x169F\n0x8134AF36\t0x16A0\n0x8134AF37\t0x16A1\n0x8134AF38\t0x16A2\n0x8134AF39\t0x16A3\n0x8134B030\t0x16A4\n0x8134B031\t0x16A5\n0x8134B032\t0x16A6\n0x8134B033\t0x16A7\n0x8134B034\t0x16A8\n0x8134B035\t0x16A9\n0x8134B036\t0x16AA\n0x8134B037\t0x16AB\n0x8134B038\t0x16AC\n0x8134B039\t0x16AD\n0x8134B130\t0x16AE\n0x8134B131\t0x16AF\n0x8134B132\t0x16B0\n0x8134B133\t0x16B1\n0x8134B134\t0x16B2\n0x8134B135\t0x16B3\n0x8134B136\t0x16B4\n0x8134B137\t0x16B5\n0x8134B138\t0x16B6\n0x8134B139\t0x16B7\n0x8134B230\t0x16B8\n0x8134B231\t0x16B9\n0x8134B232\t0x16BA\n0x8134B233\t0x16BB\n0x8134B234\t0x16BC\n0x8134B235\t0x16BD\n0x8134B236\t0x16BE\n0x8134B237\t0x16BF\n0x8134B238\t0x16C0\n0x8134B239\t0x16C1\n0x8134B330\t0x16C2\n0x8134B331\t0x16C3\n0x8134B332\t0x16C4\n0x8134B333\t0x16C5\n0x8134B334\t0x16C6\n0x8134B335\t0x16C7\n0x8134B336\t0x16C8\n0x8134B337\t0x16C9\n0x8134B338\t0x16CA\n0x8134B339\t0x16CB\n0x8134B430\t0x16CC\n0x8134B431\t0x16CD\n0x8134B432\t0x16CE\n0x8134B433\t0x16CF\n0x8134B434\t0x16D0\n0x8134B435\t0x16D1\n0x8134B436\t0x16D2\n0x8134B437\t0x16D3\n0x8134B438\t0x16D4\n0x8134B439\t0x16D5\n0x8134B530\t0x16D6\n0x8134B531\t0x16D7\n0x8134B532\t0x16D8\n0x8134B533\t0x16D9\n0x8134B534\t0x16DA\n0x8134B535\t0x16DB\n0x8134B536\t0x16DC\n0x8134B537\t0x16DD\n0x8134B538\t0x16DE\n0x8134B539\t0x16DF\n0x8134B630\t0x16E0\n0x8134B631\t0x16E1\n0x8134B632\t0x16E2\n0x8134B633\t0x16E3\n0x8134B634\t0x16E4\n0x8134B635\t0x16E5\n0x8134B636\t0x16E6\n0x8134B637\t0x16E7\n0x8134B638\t0x16E8\n0x8134B639\t0x16E9\n0x8134B730\t0x16EA\n0x8134B731\t0x16EB\n0x8134B732\t0x16EC\n0x8134B733\t0x16ED\n0x8134B734\t0x16EE\n0x8134B735\t0x16EF\n0x8134B736\t0x16F0\n0x8134B737\t0x16F1\n0x8134B738\t0x16F2\n0x8134B739\t0x16F3\n0x8134B830\t0x16F4\n0x8134B831\t0x16F5\n0x8134B832\t0x16F6\n0x8134B833\t0x16F7\n0x8134B834\t0x16F8\n0x8134B835\t0x16F9\n0x8134B836\t0x16FA\n0x8134B837\t0x16FB\n0x8134B838\t0x16FC\n0x8134B839\t0x16FD\n0x8134B930\t0x16FE\n0x8134B931\t0x16FF\n0x8134B932\t0x1700\n0x8134B933\t0x1701\n0x8134B934\t0x1702\n0x8134B935\t0x1703\n0x8134B936\t0x1704\n0x8134B937\t0x1705\n0x8134B938\t0x1706\n0x8134B939\t0x1707\n0x8134BA30\t0x1708\n0x8134BA31\t0x1709\n0x8134BA32\t0x170A\n0x8134BA33\t0x170B\n0x8134BA34\t0x170C\n0x8134BA35\t0x170D\n0x8134BA36\t0x170E\n0x8134BA37\t0x170F\n0x8134BA38\t0x1710\n0x8134BA39\t0x1711\n0x8134BB30\t0x1712\n0x8134BB31\t0x1713\n0x8134BB32\t0x1714\n0x8134BB33\t0x1715\n0x8134BB34\t0x1716\n0x8134BB35\t0x1717\n0x8134BB36\t0x1718\n0x8134BB37\t0x1719\n0x8134BB38\t0x171A\n0x8134BB39\t0x171B\n0x8134BC30\t0x171C\n0x8134BC31\t0x171D\n0x8134BC32\t0x171E\n0x8134BC33\t0x171F\n0x8134BC34\t0x1720\n0x8134BC35\t0x1721\n0x8134BC36\t0x1722\n0x8134BC37\t0x1723\n0x8134BC38\t0x1724\n0x8134BC39\t0x1725\n0x8134BD30\t0x1726\n0x8134BD31\t0x1727\n0x8134BD32\t0x1728\n0x8134BD33\t0x1729\n0x8134BD34\t0x172A\n0x8134BD35\t0x172B\n0x8134BD36\t0x172C\n0x8134BD37\t0x172D\n0x8134BD38\t0x172E\n0x8134BD39\t0x172F\n0x8134BE30\t0x1730\n0x8134BE31\t0x1731\n0x8134BE32\t0x1732\n0x8134BE33\t0x1733\n0x8134BE34\t0x1734\n0x8134BE35\t0x1735\n0x8134BE36\t0x1736\n0x8134BE37\t0x1737\n0x8134BE38\t0x1738\n0x8134BE39\t0x1739\n0x8134BF30\t0x173A\n0x8134BF31\t0x173B\n0x8134BF32\t0x173C\n0x8134BF33\t0x173D\n0x8134BF34\t0x173E\n0x8134BF35\t0x173F\n0x8134BF36\t0x1740\n0x8134BF37\t0x1741\n0x8134BF38\t0x1742\n0x8134BF39\t0x1743\n0x8134C030\t0x1744\n0x8134C031\t0x1745\n0x8134C032\t0x1746\n0x8134C033\t0x1747\n0x8134C034\t0x1748\n0x8134C035\t0x1749\n0x8134C036\t0x174A\n0x8134C037\t0x174B\n0x8134C038\t0x174C\n0x8134C039\t0x174D\n0x8134C130\t0x174E\n0x8134C131\t0x174F\n0x8134C132\t0x1750\n0x8134C133\t0x1751\n0x8134C134\t0x1752\n0x8134C135\t0x1753\n0x8134C136\t0x1754\n0x8134C137\t0x1755\n0x8134C138\t0x1756\n0x8134C139\t0x1757\n0x8134C230\t0x1758\n0x8134C231\t0x1759\n0x8134C232\t0x175A\n0x8134C233\t0x175B\n0x8134C234\t0x175C\n0x8134C235\t0x175D\n0x8134C236\t0x175E\n0x8134C237\t0x175F\n0x8134C238\t0x1760\n0x8134C239\t0x1761\n0x8134C330\t0x1762\n0x8134C331\t0x1763\n0x8134C332\t0x1764\n0x8134C333\t0x1765\n0x8134C334\t0x1766\n0x8134C335\t0x1767\n0x8134C336\t0x1768\n0x8134C337\t0x1769\n0x8134C338\t0x176A\n0x8134C339\t0x176B\n0x8134C430\t0x176C\n0x8134C431\t0x176D\n0x8134C432\t0x176E\n0x8134C433\t0x176F\n0x8134C434\t0x1770\n0x8134C435\t0x1771\n0x8134C436\t0x1772\n0x8134C437\t0x1773\n0x8134C438\t0x1774\n0x8134C439\t0x1775\n0x8134C530\t0x1776\n0x8134C531\t0x1777\n0x8134C532\t0x1778\n0x8134C533\t0x1779\n0x8134C534\t0x177A\n0x8134C535\t0x177B\n0x8134C536\t0x177C\n0x8134C537\t0x177D\n0x8134C538\t0x177E\n0x8134C539\t0x177F\n0x8134C630\t0x1780\n0x8134C631\t0x1781\n0x8134C632\t0x1782\n0x8134C633\t0x1783\n0x8134C634\t0x1784\n0x8134C635\t0x1785\n0x8134C636\t0x1786\n0x8134C637\t0x1787\n0x8134C638\t0x1788\n0x8134C639\t0x1789\n0x8134C730\t0x178A\n0x8134C731\t0x178B\n0x8134C732\t0x178C\n0x8134C733\t0x178D\n0x8134C734\t0x178E\n0x8134C735\t0x178F\n0x8134C736\t0x1790\n0x8134C737\t0x1791\n0x8134C738\t0x1792\n0x8134C739\t0x1793\n0x8134C830\t0x1794\n0x8134C831\t0x1795\n0x8134C832\t0x1796\n0x8134C833\t0x1797\n0x8134C834\t0x1798\n0x8134C835\t0x1799\n0x8134C836\t0x179A\n0x8134C837\t0x179B\n0x8134C838\t0x179C\n0x8134C839\t0x179D\n0x8134C930\t0x179E\n0x8134C931\t0x179F\n0x8134C932\t0x17A0\n0x8134C933\t0x17A1\n0x8134C934\t0x17A2\n0x8134C935\t0x17A3\n0x8134C936\t0x17A4\n0x8134C937\t0x17A5\n0x8134C938\t0x17A6\n0x8134C939\t0x17A7\n0x8134CA30\t0x17A8\n0x8134CA31\t0x17A9\n0x8134CA32\t0x17AA\n0x8134CA33\t0x17AB\n0x8134CA34\t0x17AC\n0x8134CA35\t0x17AD\n0x8134CA36\t0x17AE\n0x8134CA37\t0x17AF\n0x8134CA38\t0x17B0\n0x8134CA39\t0x17B1\n0x8134CB30\t0x17B2\n0x8134CB31\t0x17B3\n0x8134CB32\t0x17B4\n0x8134CB33\t0x17B5\n0x8134CB34\t0x17B6\n0x8134CB35\t0x17B7\n0x8134CB36\t0x17B8\n0x8134CB37\t0x17B9\n0x8134CB38\t0x17BA\n0x8134CB39\t0x17BB\n0x8134CC30\t0x17BC\n0x8134CC31\t0x17BD\n0x8134CC32\t0x17BE\n0x8134CC33\t0x17BF\n0x8134CC34\t0x17C0\n0x8134CC35\t0x17C1\n0x8134CC36\t0x17C2\n0x8134CC37\t0x17C3\n0x8134CC38\t0x17C4\n0x8134CC39\t0x17C5\n0x8134CD30\t0x17C6\n0x8134CD31\t0x17C7\n0x8134CD32\t0x17C8\n0x8134CD33\t0x17C9\n0x8134CD34\t0x17CA\n0x8134CD35\t0x17CB\n0x8134CD36\t0x17CC\n0x8134CD37\t0x17CD\n0x8134CD38\t0x17CE\n0x8134CD39\t0x17CF\n0x8134CE30\t0x17D0\n0x8134CE31\t0x17D1\n0x8134CE32\t0x17D2\n0x8134CE33\t0x17D3\n0x8134CE34\t0x17D4\n0x8134CE35\t0x17D5\n0x8134CE36\t0x17D6\n0x8134CE37\t0x17D7\n0x8134CE38\t0x17D8\n0x8134CE39\t0x17D9\n0x8134CF30\t0x17DA\n0x8134CF31\t0x17DB\n0x8134CF32\t0x17DC\n0x8134CF33\t0x17DD\n0x8134CF34\t0x17DE\n0x8134CF35\t0x17DF\n0x8134CF36\t0x17E0\n0x8134CF37\t0x17E1\n0x8134CF38\t0x17E2\n0x8134CF39\t0x17E3\n0x8134D030\t0x17E4\n0x8134D031\t0x17E5\n0x8134D032\t0x17E6\n0x8134D033\t0x17E7\n0x8134D034\t0x17E8\n0x8134D035\t0x17E9\n0x8134D036\t0x17EA\n0x8134D037\t0x17EB\n0x8134D038\t0x17EC\n0x8134D039\t0x17ED\n0x8134D130\t0x17EE\n0x8134D131\t0x17EF\n0x8134D132\t0x17F0\n0x8134D133\t0x17F1\n0x8134D134\t0x17F2\n0x8134D135\t0x17F3\n0x8134D136\t0x17F4\n0x8134D137\t0x17F5\n0x8134D138\t0x17F6\n0x8134D139\t0x17F7\n0x8134D230\t0x17F8\n0x8134D231\t0x17F9\n0x8134D232\t0x17FA\n0x8134D233\t0x17FB\n0x8134D234\t0x17FC\n0x8134D235\t0x17FD\n0x8134D236\t0x17FE\n0x8134D237\t0x17FF\n0x8134D238\t0x1800\n0x8134D239\t0x1801\n0x8134D330\t0x1802\n0x8134D331\t0x1803\n0x8134D332\t0x1804\n0x8134D333\t0x1805\n0x8134D334\t0x1806\n0x8134D335\t0x1807\n0x8134D336\t0x1808\n0x8134D337\t0x1809\n0x8134D338\t0x180A\n0x8134D339\t0x180B\n0x8134D430\t0x180C\n0x8134D431\t0x180D\n0x8134D432\t0x180E\n0x8134D433\t0x180F\n0x8134D434\t0x1810\n0x8134D435\t0x1811\n0x8134D436\t0x1812\n0x8134D437\t0x1813\n0x8134D438\t0x1814\n0x8134D439\t0x1815\n0x8134D530\t0x1816\n0x8134D531\t0x1817\n0x8134D532\t0x1818\n0x8134D533\t0x1819\n0x8134D534\t0x181A\n0x8134D535\t0x181B\n0x8134D536\t0x181C\n0x8134D537\t0x181D\n0x8134D538\t0x181E\n0x8134D539\t0x181F\n0x8134D630\t0x1820\n0x8134D631\t0x1821\n0x8134D632\t0x1822\n0x8134D633\t0x1823\n0x8134D634\t0x1824\n0x8134D635\t0x1825\n0x8134D636\t0x1826\n0x8134D637\t0x1827\n0x8134D638\t0x1828\n0x8134D639\t0x1829\n0x8134D730\t0x182A\n0x8134D731\t0x182B\n0x8134D732\t0x182C\n0x8134D733\t0x182D\n0x8134D734\t0x182E\n0x8134D735\t0x182F\n0x8134D736\t0x1830\n0x8134D737\t0x1831\n0x8134D738\t0x1832\n0x8134D739\t0x1833\n0x8134D830\t0x1834\n0x8134D831\t0x1835\n0x8134D832\t0x1836\n0x8134D833\t0x1837\n0x8134D834\t0x1838\n0x8134D835\t0x1839\n0x8134D836\t0x183A\n0x8134D837\t0x183B\n0x8134D838\t0x183C\n0x8134D839\t0x183D\n0x8134D930\t0x183E\n0x8134D931\t0x183F\n0x8134D932\t0x1840\n0x8134D933\t0x1841\n0x8134D934\t0x1842\n0x8134D935\t0x1843\n0x8134D936\t0x1844\n0x8134D937\t0x1845\n0x8134D938\t0x1846\n0x8134D939\t0x1847\n0x8134DA30\t0x1848\n0x8134DA31\t0x1849\n0x8134DA32\t0x184A\n0x8134DA33\t0x184B\n0x8134DA34\t0x184C\n0x8134DA35\t0x184D\n0x8134DA36\t0x184E\n0x8134DA37\t0x184F\n0x8134DA38\t0x1850\n0x8134DA39\t0x1851\n0x8134DB30\t0x1852\n0x8134DB31\t0x1853\n0x8134DB32\t0x1854\n0x8134DB33\t0x1855\n0x8134DB34\t0x1856\n0x8134DB35\t0x1857\n0x8134DB36\t0x1858\n0x8134DB37\t0x1859\n0x8134DB38\t0x185A\n0x8134DB39\t0x185B\n0x8134DC30\t0x185C\n0x8134DC31\t0x185D\n0x8134DC32\t0x185E\n0x8134DC33\t0x185F\n0x8134DC34\t0x1860\n0x8134DC35\t0x1861\n0x8134DC36\t0x1862\n0x8134DC37\t0x1863\n0x8134DC38\t0x1864\n0x8134DC39\t0x1865\n0x8134DD30\t0x1866\n0x8134DD31\t0x1867\n0x8134DD32\t0x1868\n0x8134DD33\t0x1869\n0x8134DD34\t0x186A\n0x8134DD35\t0x186B\n0x8134DD36\t0x186C\n0x8134DD37\t0x186D\n0x8134DD38\t0x186E\n0x8134DD39\t0x186F\n0x8134DE30\t0x1870\n0x8134DE31\t0x1871\n0x8134DE32\t0x1872\n0x8134DE33\t0x1873\n0x8134DE34\t0x1874\n0x8134DE35\t0x1875\n0x8134DE36\t0x1876\n0x8134DE37\t0x1877\n0x8134DE38\t0x1878\n0x8134DE39\t0x1879\n0x8134DF30\t0x187A\n0x8134DF31\t0x187B\n0x8134DF32\t0x187C\n0x8134DF33\t0x187D\n0x8134DF34\t0x187E\n0x8134DF35\t0x187F\n0x8134DF36\t0x1880\n0x8134DF37\t0x1881\n0x8134DF38\t0x1882\n0x8134DF39\t0x1883\n0x8134E030\t0x1884\n0x8134E031\t0x1885\n0x8134E032\t0x1886\n0x8134E033\t0x1887\n0x8134E034\t0x1888\n0x8134E035\t0x1889\n0x8134E036\t0x188A\n0x8134E037\t0x188B\n0x8134E038\t0x188C\n0x8134E039\t0x188D\n0x8134E130\t0x188E\n0x8134E131\t0x188F\n0x8134E132\t0x1890\n0x8134E133\t0x1891\n0x8134E134\t0x1892\n0x8134E135\t0x1893\n0x8134E136\t0x1894\n0x8134E137\t0x1895\n0x8134E138\t0x1896\n0x8134E139\t0x1897\n0x8134E230\t0x1898\n0x8134E231\t0x1899\n0x8134E232\t0x189A\n0x8134E233\t0x189B\n0x8134E234\t0x189C\n0x8134E235\t0x189D\n0x8134E236\t0x189E\n0x8134E237\t0x189F\n0x8134E238\t0x18A0\n0x8134E239\t0x18A1\n0x8134E330\t0x18A2\n0x8134E331\t0x18A3\n0x8134E332\t0x18A4\n0x8134E333\t0x18A5\n0x8134E334\t0x18A6\n0x8134E335\t0x18A7\n0x8134E336\t0x18A8\n0x8134E337\t0x18A9\n0x8134E338\t0x18AA\n0x8134E339\t0x18AB\n0x8134E430\t0x18AC\n0x8134E431\t0x18AD\n0x8134E432\t0x18AE\n0x8134E433\t0x18AF\n0x8134E434\t0x18B0\n0x8134E435\t0x18B1\n0x8134E436\t0x18B2\n0x8134E437\t0x18B3\n0x8134E438\t0x18B4\n0x8134E439\t0x18B5\n0x8134E530\t0x18B6\n0x8134E531\t0x18B7\n0x8134E532\t0x18B8\n0x8134E533\t0x18B9\n0x8134E534\t0x18BA\n0x8134E535\t0x18BB\n0x8134E536\t0x18BC\n0x8134E537\t0x18BD\n0x8134E538\t0x18BE\n0x8134E539\t0x18BF\n0x8134E630\t0x18C0\n0x8134E631\t0x18C1\n0x8134E632\t0x18C2\n0x8134E633\t0x18C3\n0x8134E634\t0x18C4\n0x8134E635\t0x18C5\n0x8134E636\t0x18C6\n0x8134E637\t0x18C7\n0x8134E638\t0x18C8\n0x8134E639\t0x18C9\n0x8134E730\t0x18CA\n0x8134E731\t0x18CB\n0x8134E732\t0x18CC\n0x8134E733\t0x18CD\n0x8134E734\t0x18CE\n0x8134E735\t0x18CF\n0x8134E736\t0x18D0\n0x8134E737\t0x18D1\n0x8134E738\t0x18D2\n0x8134E739\t0x18D3\n0x8134E830\t0x18D4\n0x8134E831\t0x18D5\n0x8134E832\t0x18D6\n0x8134E833\t0x18D7\n0x8134E834\t0x18D8\n0x8134E835\t0x18D9\n0x8134E836\t0x18DA\n0x8134E837\t0x18DB\n0x8134E838\t0x18DC\n0x8134E839\t0x18DD\n0x8134E930\t0x18DE\n0x8134E931\t0x18DF\n0x8134E932\t0x18E0\n0x8134E933\t0x18E1\n0x8134E934\t0x18E2\n0x8134E935\t0x18E3\n0x8134E936\t0x18E4\n0x8134E937\t0x18E5\n0x8134E938\t0x18E6\n0x8134E939\t0x18E7\n0x8134EA30\t0x18E8\n0x8134EA31\t0x18E9\n0x8134EA32\t0x18EA\n0x8134EA33\t0x18EB\n0x8134EA34\t0x18EC\n0x8134EA35\t0x18ED\n0x8134EA36\t0x18EE\n0x8134EA37\t0x18EF\n0x8134EA38\t0x18F0\n0x8134EA39\t0x18F1\n0x8134EB30\t0x18F2\n0x8134EB31\t0x18F3\n0x8134EB32\t0x18F4\n0x8134EB33\t0x18F5\n0x8134EB34\t0x18F6\n0x8134EB35\t0x18F7\n0x8134EB36\t0x18F8\n0x8134EB37\t0x18F9\n0x8134EB38\t0x18FA\n0x8134EB39\t0x18FB\n0x8134EC30\t0x18FC\n0x8134EC31\t0x18FD\n0x8134EC32\t0x18FE\n0x8134EC33\t0x18FF\n0x8134EC34\t0x1900\n0x8134EC35\t0x1901\n0x8134EC36\t0x1902\n0x8134EC37\t0x1903\n0x8134EC38\t0x1904\n0x8134EC39\t0x1905\n0x8134ED30\t0x1906\n0x8134ED31\t0x1907\n0x8134ED32\t0x1908\n0x8134ED33\t0x1909\n0x8134ED34\t0x190A\n0x8134ED35\t0x190B\n0x8134ED36\t0x190C\n0x8134ED37\t0x190D\n0x8134ED38\t0x190E\n0x8134ED39\t0x190F\n0x8134EE30\t0x1910\n0x8134EE31\t0x1911\n0x8134EE32\t0x1912\n0x8134EE33\t0x1913\n0x8134EE34\t0x1914\n0x8134EE35\t0x1915\n0x8134EE36\t0x1916\n0x8134EE37\t0x1917\n0x8134EE38\t0x1918\n0x8134EE39\t0x1919\n0x8134EF30\t0x191A\n0x8134EF31\t0x191B\n0x8134EF32\t0x191C\n0x8134EF33\t0x191D\n0x8134EF34\t0x191E\n0x8134EF35\t0x191F\n0x8134EF36\t0x1920\n0x8134EF37\t0x1921\n0x8134EF38\t0x1922\n0x8134EF39\t0x1923\n0x8134F030\t0x1924\n0x8134F031\t0x1925\n0x8134F032\t0x1926\n0x8134F033\t0x1927\n0x8134F034\t0x1928\n0x8134F035\t0x1929\n0x8134F036\t0x192A\n0x8134F037\t0x192B\n0x8134F038\t0x192C\n0x8134F039\t0x192D\n0x8134F130\t0x192E\n0x8134F131\t0x192F\n0x8134F132\t0x1930\n0x8134F133\t0x1931\n0x8134F134\t0x1932\n0x8134F135\t0x1933\n0x8134F136\t0x1934\n0x8134F137\t0x1935\n0x8134F138\t0x1936\n0x8134F139\t0x1937\n0x8134F230\t0x1938\n0x8134F231\t0x1939\n0x8134F232\t0x193A\n0x8134F233\t0x193B\n0x8134F234\t0x193C\n0x8134F235\t0x193D\n0x8134F236\t0x193E\n0x8134F237\t0x193F\n0x8134F238\t0x1940\n0x8134F239\t0x1941\n0x8134F330\t0x1942\n0x8134F331\t0x1943\n0x8134F332\t0x1944\n0x8134F333\t0x1945\n0x8134F334\t0x1946\n0x8134F335\t0x1947\n0x8134F336\t0x1948\n0x8134F337\t0x1949\n0x8134F338\t0x194A\n0x8134F339\t0x194B\n0x8134F430\t0x194C\n0x8134F431\t0x194D\n0x8134F432\t0x194E\n0x8134F433\t0x194F\n0x8134F434\t0x1950\n0x8134F435\t0x1951\n0x8134F436\t0x1952\n0x8134F437\t0x1953\n0x8134F438\t0x1954\n0x8134F439\t0x1955\n0x8134F530\t0x1956\n0x8134F531\t0x1957\n0x8134F532\t0x1958\n0x8134F533\t0x1959\n0x8134F534\t0x195A\n0x8134F535\t0x195B\n0x8134F536\t0x195C\n0x8134F537\t0x195D\n0x8134F538\t0x195E\n0x8134F539\t0x195F\n0x8134F630\t0x1960\n0x8134F631\t0x1961\n0x8134F632\t0x1962\n0x8134F633\t0x1963\n0x8134F634\t0x1964\n0x8134F635\t0x1965\n0x8134F636\t0x1966\n0x8134F637\t0x1967\n0x8134F638\t0x1968\n0x8134F639\t0x1969\n0x8134F730\t0x196A\n0x8134F731\t0x196B\n0x8134F732\t0x196C\n0x8134F733\t0x196D\n0x8134F734\t0x196E\n0x8134F735\t0x196F\n0x8134F736\t0x1970\n0x8134F737\t0x1971\n0x8134F738\t0x1972\n0x8134F739\t0x1973\n0x8134F830\t0x1974\n0x8134F831\t0x1975\n0x8134F832\t0x1976\n0x8134F833\t0x1977\n0x8134F834\t0x1978\n0x8134F835\t0x1979\n0x8134F836\t0x197A\n0x8134F837\t0x197B\n0x8134F838\t0x197C\n0x8134F839\t0x197D\n0x8134F930\t0x197E\n0x8134F931\t0x197F\n0x8134F932\t0x1980\n0x8134F933\t0x1981\n0x8134F934\t0x1982\n0x8134F935\t0x1983\n0x8134F936\t0x1984\n0x8134F937\t0x1985\n0x8134F938\t0x1986\n0x8134F939\t0x1987\n0x8134FA30\t0x1988\n0x8134FA31\t0x1989\n0x8134FA32\t0x198A\n0x8134FA33\t0x198B\n0x8134FA34\t0x198C\n0x8134FA35\t0x198D\n0x8134FA36\t0x198E\n0x8134FA37\t0x198F\n0x8134FA38\t0x1990\n0x8134FA39\t0x1991\n0x8134FB30\t0x1992\n0x8134FB31\t0x1993\n0x8134FB32\t0x1994\n0x8134FB33\t0x1995\n0x8134FB34\t0x1996\n0x8134FB35\t0x1997\n0x8134FB36\t0x1998\n0x8134FB37\t0x1999\n0x8134FB38\t0x199A\n0x8134FB39\t0x199B\n0x8134FC30\t0x199C\n0x8134FC31\t0x199D\n0x8134FC32\t0x199E\n0x8134FC33\t0x199F\n0x8134FC34\t0x19A0\n0x8134FC35\t0x19A1\n0x8134FC36\t0x19A2\n0x8134FC37\t0x19A3\n0x8134FC38\t0x19A4\n0x8134FC39\t0x19A5\n0x8134FD30\t0x19A6\n0x8134FD31\t0x19A7\n0x8134FD32\t0x19A8\n0x8134FD33\t0x19A9\n0x8134FD34\t0x19AA\n0x8134FD35\t0x19AB\n0x8134FD36\t0x19AC\n0x8134FD37\t0x19AD\n0x8134FD38\t0x19AE\n0x8134FD39\t0x19AF\n0x8134FE30\t0x19B0\n0x8134FE31\t0x19B1\n0x8134FE32\t0x19B2\n0x8134FE33\t0x19B3\n0x8134FE34\t0x19B4\n0x8134FE35\t0x19B5\n0x8134FE36\t0x19B6\n0x8134FE37\t0x19B7\n0x8134FE38\t0x19B8\n0x8134FE39\t0x19B9\n0x81358130\t0x19BA\n0x81358131\t0x19BB\n0x81358132\t0x19BC\n0x81358133\t0x19BD\n0x81358134\t0x19BE\n0x81358135\t0x19BF\n0x81358136\t0x19C0\n0x81358137\t0x19C1\n0x81358138\t0x19C2\n0x81358139\t0x19C3\n0x81358230\t0x19C4\n0x81358231\t0x19C5\n0x81358232\t0x19C6\n0x81358233\t0x19C7\n0x81358234\t0x19C8\n0x81358235\t0x19C9\n0x81358236\t0x19CA\n0x81358237\t0x19CB\n0x81358238\t0x19CC\n0x81358239\t0x19CD\n0x81358330\t0x19CE\n0x81358331\t0x19CF\n0x81358332\t0x19D0\n0x81358333\t0x19D1\n0x81358334\t0x19D2\n0x81358335\t0x19D3\n0x81358336\t0x19D4\n0x81358337\t0x19D5\n0x81358338\t0x19D6\n0x81358339\t0x19D7\n0x81358430\t0x19D8\n0x81358431\t0x19D9\n0x81358432\t0x19DA\n0x81358433\t0x19DB\n0x81358434\t0x19DC\n0x81358435\t0x19DD\n0x81358436\t0x19DE\n0x81358437\t0x19DF\n0x81358438\t0x19E0\n0x81358439\t0x19E1\n0x81358530\t0x19E2\n0x81358531\t0x19E3\n0x81358532\t0x19E4\n0x81358533\t0x19E5\n0x81358534\t0x19E6\n0x81358535\t0x19E7\n0x81358536\t0x19E8\n0x81358537\t0x19E9\n0x81358538\t0x19EA\n0x81358539\t0x19EB\n0x81358630\t0x19EC\n0x81358631\t0x19ED\n0x81358632\t0x19EE\n0x81358633\t0x19EF\n0x81358634\t0x19F0\n0x81358635\t0x19F1\n0x81358636\t0x19F2\n0x81358637\t0x19F3\n0x81358638\t0x19F4\n0x81358639\t0x19F5\n0x81358730\t0x19F6\n0x81358731\t0x19F7\n0x81358732\t0x19F8\n0x81358733\t0x19F9\n0x81358734\t0x19FA\n0x81358735\t0x19FB\n0x81358736\t0x19FC\n0x81358737\t0x19FD\n0x81358738\t0x19FE\n0x81358739\t0x19FF\n0x81358830\t0x1A00\n0x81358831\t0x1A01\n0x81358832\t0x1A02\n0x81358833\t0x1A03\n0x81358834\t0x1A04\n0x81358835\t0x1A05\n0x81358836\t0x1A06\n0x81358837\t0x1A07\n0x81358838\t0x1A08\n0x81358839\t0x1A09\n0x81358930\t0x1A0A\n0x81358931\t0x1A0B\n0x81358932\t0x1A0C\n0x81358933\t0x1A0D\n0x81358934\t0x1A0E\n0x81358935\t0x1A0F\n0x81358936\t0x1A10\n0x81358937\t0x1A11\n0x81358938\t0x1A12\n0x81358939\t0x1A13\n0x81358A30\t0x1A14\n0x81358A31\t0x1A15\n0x81358A32\t0x1A16\n0x81358A33\t0x1A17\n0x81358A34\t0x1A18\n0x81358A35\t0x1A19\n0x81358A36\t0x1A1A\n0x81358A37\t0x1A1B\n0x81358A38\t0x1A1C\n0x81358A39\t0x1A1D\n0x81358B30\t0x1A1E\n0x81358B31\t0x1A1F\n0x81358B32\t0x1A20\n0x81358B33\t0x1A21\n0x81358B34\t0x1A22\n0x81358B35\t0x1A23\n0x81358B36\t0x1A24\n0x81358B37\t0x1A25\n0x81358B38\t0x1A26\n0x81358B39\t0x1A27\n0x81358C30\t0x1A28\n0x81358C31\t0x1A29\n0x81358C32\t0x1A2A\n0x81358C33\t0x1A2B\n0x81358C34\t0x1A2C\n0x81358C35\t0x1A2D\n0x81358C36\t0x1A2E\n0x81358C37\t0x1A2F\n0x81358C38\t0x1A30\n0x81358C39\t0x1A31\n0x81358D30\t0x1A32\n0x81358D31\t0x1A33\n0x81358D32\t0x1A34\n0x81358D33\t0x1A35\n0x81358D34\t0x1A36\n0x81358D35\t0x1A37\n0x81358D36\t0x1A38\n0x81358D37\t0x1A39\n0x81358D38\t0x1A3A\n0x81358D39\t0x1A3B\n0x81358E30\t0x1A3C\n0x81358E31\t0x1A3D\n0x81358E32\t0x1A3E\n0x81358E33\t0x1A3F\n0x81358E34\t0x1A40\n0x81358E35\t0x1A41\n0x81358E36\t0x1A42\n0x81358E37\t0x1A43\n0x81358E38\t0x1A44\n0x81358E39\t0x1A45\n0x81358F30\t0x1A46\n0x81358F31\t0x1A47\n0x81358F32\t0x1A48\n0x81358F33\t0x1A49\n0x81358F34\t0x1A4A\n0x81358F35\t0x1A4B\n0x81358F36\t0x1A4C\n0x81358F37\t0x1A4D\n0x81358F38\t0x1A4E\n0x81358F39\t0x1A4F\n0x81359030\t0x1A50\n0x81359031\t0x1A51\n0x81359032\t0x1A52\n0x81359033\t0x1A53\n0x81359034\t0x1A54\n0x81359035\t0x1A55\n0x81359036\t0x1A56\n0x81359037\t0x1A57\n0x81359038\t0x1A58\n0x81359039\t0x1A59\n0x81359130\t0x1A5A\n0x81359131\t0x1A5B\n0x81359132\t0x1A5C\n0x81359133\t0x1A5D\n0x81359134\t0x1A5E\n0x81359135\t0x1A5F\n0x81359136\t0x1A60\n0x81359137\t0x1A61\n0x81359138\t0x1A62\n0x81359139\t0x1A63\n0x81359230\t0x1A64\n0x81359231\t0x1A65\n0x81359232\t0x1A66\n0x81359233\t0x1A67\n0x81359234\t0x1A68\n0x81359235\t0x1A69\n0x81359236\t0x1A6A\n0x81359237\t0x1A6B\n0x81359238\t0x1A6C\n0x81359239\t0x1A6D\n0x81359330\t0x1A6E\n0x81359331\t0x1A6F\n0x81359332\t0x1A70\n0x81359333\t0x1A71\n0x81359334\t0x1A72\n0x81359335\t0x1A73\n0x81359336\t0x1A74\n0x81359337\t0x1A75\n0x81359338\t0x1A76\n0x81359339\t0x1A77\n0x81359430\t0x1A78\n0x81359431\t0x1A79\n0x81359432\t0x1A7A\n0x81359433\t0x1A7B\n0x81359434\t0x1A7C\n0x81359435\t0x1A7D\n0x81359436\t0x1A7E\n0x81359437\t0x1A7F\n0x81359438\t0x1A80\n0x81359439\t0x1A81\n0x81359530\t0x1A82\n0x81359531\t0x1A83\n0x81359532\t0x1A84\n0x81359533\t0x1A85\n0x81359534\t0x1A86\n0x81359535\t0x1A87\n0x81359536\t0x1A88\n0x81359537\t0x1A89\n0x81359538\t0x1A8A\n0x81359539\t0x1A8B\n0x81359630\t0x1A8C\n0x81359631\t0x1A8D\n0x81359632\t0x1A8E\n0x81359633\t0x1A8F\n0x81359634\t0x1A90\n0x81359635\t0x1A91\n0x81359636\t0x1A92\n0x81359637\t0x1A93\n0x81359638\t0x1A94\n0x81359639\t0x1A95\n0x81359730\t0x1A96\n0x81359731\t0x1A97\n0x81359732\t0x1A98\n0x81359733\t0x1A99\n0x81359734\t0x1A9A\n0x81359735\t0x1A9B\n0x81359736\t0x1A9C\n0x81359737\t0x1A9D\n0x81359738\t0x1A9E\n0x81359739\t0x1A9F\n0x81359830\t0x1AA0\n0x81359831\t0x1AA1\n0x81359832\t0x1AA2\n0x81359833\t0x1AA3\n0x81359834\t0x1AA4\n0x81359835\t0x1AA5\n0x81359836\t0x1AA6\n0x81359837\t0x1AA7\n0x81359838\t0x1AA8\n0x81359839\t0x1AA9\n0x81359930\t0x1AAA\n0x81359931\t0x1AAB\n0x81359932\t0x1AAC\n0x81359933\t0x1AAD\n0x81359934\t0x1AAE\n0x81359935\t0x1AAF\n0x81359936\t0x1AB0\n0x81359937\t0x1AB1\n0x81359938\t0x1AB2\n0x81359939\t0x1AB3\n0x81359A30\t0x1AB4\n0x81359A31\t0x1AB5\n0x81359A32\t0x1AB6\n0x81359A33\t0x1AB7\n0x81359A34\t0x1AB8\n0x81359A35\t0x1AB9\n0x81359A36\t0x1ABA\n0x81359A37\t0x1ABB\n0x81359A38\t0x1ABC\n0x81359A39\t0x1ABD\n0x81359B30\t0x1ABE\n0x81359B31\t0x1ABF\n0x81359B32\t0x1AC0\n0x81359B33\t0x1AC1\n0x81359B34\t0x1AC2\n0x81359B35\t0x1AC3\n0x81359B36\t0x1AC4\n0x81359B37\t0x1AC5\n0x81359B38\t0x1AC6\n0x81359B39\t0x1AC7\n0x81359C30\t0x1AC8\n0x81359C31\t0x1AC9\n0x81359C32\t0x1ACA\n0x81359C33\t0x1ACB\n0x81359C34\t0x1ACC\n0x81359C35\t0x1ACD\n0x81359C36\t0x1ACE\n0x81359C37\t0x1ACF\n0x81359C38\t0x1AD0\n0x81359C39\t0x1AD1\n0x81359D30\t0x1AD2\n0x81359D31\t0x1AD3\n0x81359D32\t0x1AD4\n0x81359D33\t0x1AD5\n0x81359D34\t0x1AD6\n0x81359D35\t0x1AD7\n0x81359D36\t0x1AD8\n0x81359D37\t0x1AD9\n0x81359D38\t0x1ADA\n0x81359D39\t0x1ADB\n0x81359E30\t0x1ADC\n0x81359E31\t0x1ADD\n0x81359E32\t0x1ADE\n0x81359E33\t0x1ADF\n0x81359E34\t0x1AE0\n0x81359E35\t0x1AE1\n0x81359E36\t0x1AE2\n0x81359E37\t0x1AE3\n0x81359E38\t0x1AE4\n0x81359E39\t0x1AE5\n0x81359F30\t0x1AE6\n0x81359F31\t0x1AE7\n0x81359F32\t0x1AE8\n0x81359F33\t0x1AE9\n0x81359F34\t0x1AEA\n0x81359F35\t0x1AEB\n0x81359F36\t0x1AEC\n0x81359F37\t0x1AED\n0x81359F38\t0x1AEE\n0x81359F39\t0x1AEF\n0x8135A030\t0x1AF0\n0x8135A031\t0x1AF1\n0x8135A032\t0x1AF2\n0x8135A033\t0x1AF3\n0x8135A034\t0x1AF4\n0x8135A035\t0x1AF5\n0x8135A036\t0x1AF6\n0x8135A037\t0x1AF7\n0x8135A038\t0x1AF8\n0x8135A039\t0x1AF9\n0x8135A130\t0x1AFA\n0x8135A131\t0x1AFB\n0x8135A132\t0x1AFC\n0x8135A133\t0x1AFD\n0x8135A134\t0x1AFE\n0x8135A135\t0x1AFF\n0x8135A136\t0x1B00\n0x8135A137\t0x1B01\n0x8135A138\t0x1B02\n0x8135A139\t0x1B03\n0x8135A230\t0x1B04\n0x8135A231\t0x1B05\n0x8135A232\t0x1B06\n0x8135A233\t0x1B07\n0x8135A234\t0x1B08\n0x8135A235\t0x1B09\n0x8135A236\t0x1B0A\n0x8135A237\t0x1B0B\n0x8135A238\t0x1B0C\n0x8135A239\t0x1B0D\n0x8135A330\t0x1B0E\n0x8135A331\t0x1B0F\n0x8135A332\t0x1B10\n0x8135A333\t0x1B11\n0x8135A334\t0x1B12\n0x8135A335\t0x1B13\n0x8135A336\t0x1B14\n0x8135A337\t0x1B15\n0x8135A338\t0x1B16\n0x8135A339\t0x1B17\n0x8135A430\t0x1B18\n0x8135A431\t0x1B19\n0x8135A432\t0x1B1A\n0x8135A433\t0x1B1B\n0x8135A434\t0x1B1C\n0x8135A435\t0x1B1D\n0x8135A436\t0x1B1E\n0x8135A437\t0x1B1F\n0x8135A438\t0x1B20\n0x8135A439\t0x1B21\n0x8135A530\t0x1B22\n0x8135A531\t0x1B23\n0x8135A532\t0x1B24\n0x8135A533\t0x1B25\n0x8135A534\t0x1B26\n0x8135A535\t0x1B27\n0x8135A536\t0x1B28\n0x8135A537\t0x1B29\n0x8135A538\t0x1B2A\n0x8135A539\t0x1B2B\n0x8135A630\t0x1B2C\n0x8135A631\t0x1B2D\n0x8135A632\t0x1B2E\n0x8135A633\t0x1B2F\n0x8135A634\t0x1B30\n0x8135A635\t0x1B31\n0x8135A636\t0x1B32\n0x8135A637\t0x1B33\n0x8135A638\t0x1B34\n0x8135A639\t0x1B35\n0x8135A730\t0x1B36\n0x8135A731\t0x1B37\n0x8135A732\t0x1B38\n0x8135A733\t0x1B39\n0x8135A734\t0x1B3A\n0x8135A735\t0x1B3B\n0x8135A736\t0x1B3C\n0x8135A737\t0x1B3D\n0x8135A738\t0x1B3E\n0x8135A739\t0x1B3F\n0x8135A830\t0x1B40\n0x8135A831\t0x1B41\n0x8135A832\t0x1B42\n0x8135A833\t0x1B43\n0x8135A834\t0x1B44\n0x8135A835\t0x1B45\n0x8135A836\t0x1B46\n0x8135A837\t0x1B47\n0x8135A838\t0x1B48\n0x8135A839\t0x1B49\n0x8135A930\t0x1B4A\n0x8135A931\t0x1B4B\n0x8135A932\t0x1B4C\n0x8135A933\t0x1B4D\n0x8135A934\t0x1B4E\n0x8135A935\t0x1B4F\n0x8135A936\t0x1B50\n0x8135A937\t0x1B51\n0x8135A938\t0x1B52\n0x8135A939\t0x1B53\n0x8135AA30\t0x1B54\n0x8135AA31\t0x1B55\n0x8135AA32\t0x1B56\n0x8135AA33\t0x1B57\n0x8135AA34\t0x1B58\n0x8135AA35\t0x1B59\n0x8135AA36\t0x1B5A\n0x8135AA37\t0x1B5B\n0x8135AA38\t0x1B5C\n0x8135AA39\t0x1B5D\n0x8135AB30\t0x1B5E\n0x8135AB31\t0x1B5F\n0x8135AB32\t0x1B60\n0x8135AB33\t0x1B61\n0x8135AB34\t0x1B62\n0x8135AB35\t0x1B63\n0x8135AB36\t0x1B64\n0x8135AB37\t0x1B65\n0x8135AB38\t0x1B66\n0x8135AB39\t0x1B67\n0x8135AC30\t0x1B68\n0x8135AC31\t0x1B69\n0x8135AC32\t0x1B6A\n0x8135AC33\t0x1B6B\n0x8135AC34\t0x1B6C\n0x8135AC35\t0x1B6D\n0x8135AC36\t0x1B6E\n0x8135AC37\t0x1B6F\n0x8135AC38\t0x1B70\n0x8135AC39\t0x1B71\n0x8135AD30\t0x1B72\n0x8135AD31\t0x1B73\n0x8135AD32\t0x1B74\n0x8135AD33\t0x1B75\n0x8135AD34\t0x1B76\n0x8135AD35\t0x1B77\n0x8135AD36\t0x1B78\n0x8135AD37\t0x1B79\n0x8135AD38\t0x1B7A\n0x8135AD39\t0x1B7B\n0x8135AE30\t0x1B7C\n0x8135AE31\t0x1B7D\n0x8135AE32\t0x1B7E\n0x8135AE33\t0x1B7F\n0x8135AE34\t0x1B80\n0x8135AE35\t0x1B81\n0x8135AE36\t0x1B82\n0x8135AE37\t0x1B83\n0x8135AE38\t0x1B84\n0x8135AE39\t0x1B85\n0x8135AF30\t0x1B86\n0x8135AF31\t0x1B87\n0x8135AF32\t0x1B88\n0x8135AF33\t0x1B89\n0x8135AF34\t0x1B8A\n0x8135AF35\t0x1B8B\n0x8135AF36\t0x1B8C\n0x8135AF37\t0x1B8D\n0x8135AF38\t0x1B8E\n0x8135AF39\t0x1B8F\n0x8135B030\t0x1B90\n0x8135B031\t0x1B91\n0x8135B032\t0x1B92\n0x8135B033\t0x1B93\n0x8135B034\t0x1B94\n0x8135B035\t0x1B95\n0x8135B036\t0x1B96\n0x8135B037\t0x1B97\n0x8135B038\t0x1B98\n0x8135B039\t0x1B99\n0x8135B130\t0x1B9A\n0x8135B131\t0x1B9B\n0x8135B132\t0x1B9C\n0x8135B133\t0x1B9D\n0x8135B134\t0x1B9E\n0x8135B135\t0x1B9F\n0x8135B136\t0x1BA0\n0x8135B137\t0x1BA1\n0x8135B138\t0x1BA2\n0x8135B139\t0x1BA3\n0x8135B230\t0x1BA4\n0x8135B231\t0x1BA5\n0x8135B232\t0x1BA6\n0x8135B233\t0x1BA7\n0x8135B234\t0x1BA8\n0x8135B235\t0x1BA9\n0x8135B236\t0x1BAA\n0x8135B237\t0x1BAB\n0x8135B238\t0x1BAC\n0x8135B239\t0x1BAD\n0x8135B330\t0x1BAE\n0x8135B331\t0x1BAF\n0x8135B332\t0x1BB0\n0x8135B333\t0x1BB1\n0x8135B334\t0x1BB2\n0x8135B335\t0x1BB3\n0x8135B336\t0x1BB4\n0x8135B337\t0x1BB5\n0x8135B338\t0x1BB6\n0x8135B339\t0x1BB7\n0x8135B430\t0x1BB8\n0x8135B431\t0x1BB9\n0x8135B432\t0x1BBA\n0x8135B433\t0x1BBB\n0x8135B434\t0x1BBC\n0x8135B435\t0x1BBD\n0x8135B436\t0x1BBE\n0x8135B437\t0x1BBF\n0x8135B438\t0x1BC0\n0x8135B439\t0x1BC1\n0x8135B530\t0x1BC2\n0x8135B531\t0x1BC3\n0x8135B532\t0x1BC4\n0x8135B533\t0x1BC5\n0x8135B534\t0x1BC6\n0x8135B535\t0x1BC7\n0x8135B536\t0x1BC8\n0x8135B537\t0x1BC9\n0x8135B538\t0x1BCA\n0x8135B539\t0x1BCB\n0x8135B630\t0x1BCC\n0x8135B631\t0x1BCD\n0x8135B632\t0x1BCE\n0x8135B633\t0x1BCF\n0x8135B634\t0x1BD0\n0x8135B635\t0x1BD1\n0x8135B636\t0x1BD2\n0x8135B637\t0x1BD3\n0x8135B638\t0x1BD4\n0x8135B639\t0x1BD5\n0x8135B730\t0x1BD6\n0x8135B731\t0x1BD7\n0x8135B732\t0x1BD8\n0x8135B733\t0x1BD9\n0x8135B734\t0x1BDA\n0x8135B735\t0x1BDB\n0x8135B736\t0x1BDC\n0x8135B737\t0x1BDD\n0x8135B738\t0x1BDE\n0x8135B739\t0x1BDF\n0x8135B830\t0x1BE0\n0x8135B831\t0x1BE1\n0x8135B832\t0x1BE2\n0x8135B833\t0x1BE3\n0x8135B834\t0x1BE4\n0x8135B835\t0x1BE5\n0x8135B836\t0x1BE6\n0x8135B837\t0x1BE7\n0x8135B838\t0x1BE8\n0x8135B839\t0x1BE9\n0x8135B930\t0x1BEA\n0x8135B931\t0x1BEB\n0x8135B932\t0x1BEC\n0x8135B933\t0x1BED\n0x8135B934\t0x1BEE\n0x8135B935\t0x1BEF\n0x8135B936\t0x1BF0\n0x8135B937\t0x1BF1\n0x8135B938\t0x1BF2\n0x8135B939\t0x1BF3\n0x8135BA30\t0x1BF4\n0x8135BA31\t0x1BF5\n0x8135BA32\t0x1BF6\n0x8135BA33\t0x1BF7\n0x8135BA34\t0x1BF8\n0x8135BA35\t0x1BF9\n0x8135BA36\t0x1BFA\n0x8135BA37\t0x1BFB\n0x8135BA38\t0x1BFC\n0x8135BA39\t0x1BFD\n0x8135BB30\t0x1BFE\n0x8135BB31\t0x1BFF\n0x8135BB32\t0x1C00\n0x8135BB33\t0x1C01\n0x8135BB34\t0x1C02\n0x8135BB35\t0x1C03\n0x8135BB36\t0x1C04\n0x8135BB37\t0x1C05\n0x8135BB38\t0x1C06\n0x8135BB39\t0x1C07\n0x8135BC30\t0x1C08\n0x8135BC31\t0x1C09\n0x8135BC32\t0x1C0A\n0x8135BC33\t0x1C0B\n0x8135BC34\t0x1C0C\n0x8135BC35\t0x1C0D\n0x8135BC36\t0x1C0E\n0x8135BC37\t0x1C0F\n0x8135BC38\t0x1C10\n0x8135BC39\t0x1C11\n0x8135BD30\t0x1C12\n0x8135BD31\t0x1C13\n0x8135BD32\t0x1C14\n0x8135BD33\t0x1C15\n0x8135BD34\t0x1C16\n0x8135BD35\t0x1C17\n0x8135BD36\t0x1C18\n0x8135BD37\t0x1C19\n0x8135BD38\t0x1C1A\n0x8135BD39\t0x1C1B\n0x8135BE30\t0x1C1C\n0x8135BE31\t0x1C1D\n0x8135BE32\t0x1C1E\n0x8135BE33\t0x1C1F\n0x8135BE34\t0x1C20\n0x8135BE35\t0x1C21\n0x8135BE36\t0x1C22\n0x8135BE37\t0x1C23\n0x8135BE38\t0x1C24\n0x8135BE39\t0x1C25\n0x8135BF30\t0x1C26\n0x8135BF31\t0x1C27\n0x8135BF32\t0x1C28\n0x8135BF33\t0x1C29\n0x8135BF34\t0x1C2A\n0x8135BF35\t0x1C2B\n0x8135BF36\t0x1C2C\n0x8135BF37\t0x1C2D\n0x8135BF38\t0x1C2E\n0x8135BF39\t0x1C2F\n0x8135C030\t0x1C30\n0x8135C031\t0x1C31\n0x8135C032\t0x1C32\n0x8135C033\t0x1C33\n0x8135C034\t0x1C34\n0x8135C035\t0x1C35\n0x8135C036\t0x1C36\n0x8135C037\t0x1C37\n0x8135C038\t0x1C38\n0x8135C039\t0x1C39\n0x8135C130\t0x1C3A\n0x8135C131\t0x1C3B\n0x8135C132\t0x1C3C\n0x8135C133\t0x1C3D\n0x8135C134\t0x1C3E\n0x8135C135\t0x1C3F\n0x8135C136\t0x1C40\n0x8135C137\t0x1C41\n0x8135C138\t0x1C42\n0x8135C139\t0x1C43\n0x8135C230\t0x1C44\n0x8135C231\t0x1C45\n0x8135C232\t0x1C46\n0x8135C233\t0x1C47\n0x8135C234\t0x1C48\n0x8135C235\t0x1C49\n0x8135C236\t0x1C4A\n0x8135C237\t0x1C4B\n0x8135C238\t0x1C4C\n0x8135C239\t0x1C4D\n0x8135C330\t0x1C4E\n0x8135C331\t0x1C4F\n0x8135C332\t0x1C50\n0x8135C333\t0x1C51\n0x8135C334\t0x1C52\n0x8135C335\t0x1C53\n0x8135C336\t0x1C54\n0x8135C337\t0x1C55\n0x8135C338\t0x1C56\n0x8135C339\t0x1C57\n0x8135C430\t0x1C58\n0x8135C431\t0x1C59\n0x8135C432\t0x1C5A\n0x8135C433\t0x1C5B\n0x8135C434\t0x1C5C\n0x8135C435\t0x1C5D\n0x8135C436\t0x1C5E\n0x8135C437\t0x1C5F\n0x8135C438\t0x1C60\n0x8135C439\t0x1C61\n0x8135C530\t0x1C62\n0x8135C531\t0x1C63\n0x8135C532\t0x1C64\n0x8135C533\t0x1C65\n0x8135C534\t0x1C66\n0x8135C535\t0x1C67\n0x8135C536\t0x1C68\n0x8135C537\t0x1C69\n0x8135C538\t0x1C6A\n0x8135C539\t0x1C6B\n0x8135C630\t0x1C6C\n0x8135C631\t0x1C6D\n0x8135C632\t0x1C6E\n0x8135C633\t0x1C6F\n0x8135C634\t0x1C70\n0x8135C635\t0x1C71\n0x8135C636\t0x1C72\n0x8135C637\t0x1C73\n0x8135C638\t0x1C74\n0x8135C639\t0x1C75\n0x8135C730\t0x1C76\n0x8135C731\t0x1C77\n0x8135C732\t0x1C78\n0x8135C733\t0x1C79\n0x8135C734\t0x1C7A\n0x8135C735\t0x1C7B\n0x8135C736\t0x1C7C\n0x8135C737\t0x1C7D\n0x8135C738\t0x1C7E\n0x8135C739\t0x1C7F\n0x8135C830\t0x1C80\n0x8135C831\t0x1C81\n0x8135C832\t0x1C82\n0x8135C833\t0x1C83\n0x8135C834\t0x1C84\n0x8135C835\t0x1C85\n0x8135C836\t0x1C86\n0x8135C837\t0x1C87\n0x8135C838\t0x1C88\n0x8135C839\t0x1C89\n0x8135C930\t0x1C8A\n0x8135C931\t0x1C8B\n0x8135C932\t0x1C8C\n0x8135C933\t0x1C8D\n0x8135C934\t0x1C8E\n0x8135C935\t0x1C8F\n0x8135C936\t0x1C90\n0x8135C937\t0x1C91\n0x8135C938\t0x1C92\n0x8135C939\t0x1C93\n0x8135CA30\t0x1C94\n0x8135CA31\t0x1C95\n0x8135CA32\t0x1C96\n0x8135CA33\t0x1C97\n0x8135CA34\t0x1C98\n0x8135CA35\t0x1C99\n0x8135CA36\t0x1C9A\n0x8135CA37\t0x1C9B\n0x8135CA38\t0x1C9C\n0x8135CA39\t0x1C9D\n0x8135CB30\t0x1C9E\n0x8135CB31\t0x1C9F\n0x8135CB32\t0x1CA0\n0x8135CB33\t0x1CA1\n0x8135CB34\t0x1CA2\n0x8135CB35\t0x1CA3\n0x8135CB36\t0x1CA4\n0x8135CB37\t0x1CA5\n0x8135CB38\t0x1CA6\n0x8135CB39\t0x1CA7\n0x8135CC30\t0x1CA8\n0x8135CC31\t0x1CA9\n0x8135CC32\t0x1CAA\n0x8135CC33\t0x1CAB\n0x8135CC34\t0x1CAC\n0x8135CC35\t0x1CAD\n0x8135CC36\t0x1CAE\n0x8135CC37\t0x1CAF\n0x8135CC38\t0x1CB0\n0x8135CC39\t0x1CB1\n0x8135CD30\t0x1CB2\n0x8135CD31\t0x1CB3\n0x8135CD32\t0x1CB4\n0x8135CD33\t0x1CB5\n0x8135CD34\t0x1CB6\n0x8135CD35\t0x1CB7\n0x8135CD36\t0x1CB8\n0x8135CD37\t0x1CB9\n0x8135CD38\t0x1CBA\n0x8135CD39\t0x1CBB\n0x8135CE30\t0x1CBC\n0x8135CE31\t0x1CBD\n0x8135CE32\t0x1CBE\n0x8135CE33\t0x1CBF\n0x8135CE34\t0x1CC0\n0x8135CE35\t0x1CC1\n0x8135CE36\t0x1CC2\n0x8135CE37\t0x1CC3\n0x8135CE38\t0x1CC4\n0x8135CE39\t0x1CC5\n0x8135CF30\t0x1CC6\n0x8135CF31\t0x1CC7\n0x8135CF32\t0x1CC8\n0x8135CF33\t0x1CC9\n0x8135CF34\t0x1CCA\n0x8135CF35\t0x1CCB\n0x8135CF36\t0x1CCC\n0x8135CF37\t0x1CCD\n0x8135CF38\t0x1CCE\n0x8135CF39\t0x1CCF\n0x8135D030\t0x1CD0\n0x8135D031\t0x1CD1\n0x8135D032\t0x1CD2\n0x8135D033\t0x1CD3\n0x8135D034\t0x1CD4\n0x8135D035\t0x1CD5\n0x8135D036\t0x1CD6\n0x8135D037\t0x1CD7\n0x8135D038\t0x1CD8\n0x8135D039\t0x1CD9\n0x8135D130\t0x1CDA\n0x8135D131\t0x1CDB\n0x8135D132\t0x1CDC\n0x8135D133\t0x1CDD\n0x8135D134\t0x1CDE\n0x8135D135\t0x1CDF\n0x8135D136\t0x1CE0\n0x8135D137\t0x1CE1\n0x8135D138\t0x1CE2\n0x8135D139\t0x1CE3\n0x8135D230\t0x1CE4\n0x8135D231\t0x1CE5\n0x8135D232\t0x1CE6\n0x8135D233\t0x1CE7\n0x8135D234\t0x1CE8\n0x8135D235\t0x1CE9\n0x8135D236\t0x1CEA\n0x8135D237\t0x1CEB\n0x8135D238\t0x1CEC\n0x8135D239\t0x1CED\n0x8135D330\t0x1CEE\n0x8135D331\t0x1CEF\n0x8135D332\t0x1CF0\n0x8135D333\t0x1CF1\n0x8135D334\t0x1CF2\n0x8135D335\t0x1CF3\n0x8135D336\t0x1CF4\n0x8135D337\t0x1CF5\n0x8135D338\t0x1CF6\n0x8135D339\t0x1CF7\n0x8135D430\t0x1CF8\n0x8135D431\t0x1CF9\n0x8135D432\t0x1CFA\n0x8135D433\t0x1CFB\n0x8135D434\t0x1CFC\n0x8135D435\t0x1CFD\n0x8135D436\t0x1CFE\n0x8135D437\t0x1CFF\n0x8135D438\t0x1D00\n0x8135D439\t0x1D01\n0x8135D530\t0x1D02\n0x8135D531\t0x1D03\n0x8135D532\t0x1D04\n0x8135D533\t0x1D05\n0x8135D534\t0x1D06\n0x8135D535\t0x1D07\n0x8135D536\t0x1D08\n0x8135D537\t0x1D09\n0x8135D538\t0x1D0A\n0x8135D539\t0x1D0B\n0x8135D630\t0x1D0C\n0x8135D631\t0x1D0D\n0x8135D632\t0x1D0E\n0x8135D633\t0x1D0F\n0x8135D634\t0x1D10\n0x8135D635\t0x1D11\n0x8135D636\t0x1D12\n0x8135D637\t0x1D13\n0x8135D638\t0x1D14\n0x8135D639\t0x1D15\n0x8135D730\t0x1D16\n0x8135D731\t0x1D17\n0x8135D732\t0x1D18\n0x8135D733\t0x1D19\n0x8135D734\t0x1D1A\n0x8135D735\t0x1D1B\n0x8135D736\t0x1D1C\n0x8135D737\t0x1D1D\n0x8135D738\t0x1D1E\n0x8135D739\t0x1D1F\n0x8135D830\t0x1D20\n0x8135D831\t0x1D21\n0x8135D832\t0x1D22\n0x8135D833\t0x1D23\n0x8135D834\t0x1D24\n0x8135D835\t0x1D25\n0x8135D836\t0x1D26\n0x8135D837\t0x1D27\n0x8135D838\t0x1D28\n0x8135D839\t0x1D29\n0x8135D930\t0x1D2A\n0x8135D931\t0x1D2B\n0x8135D932\t0x1D2C\n0x8135D933\t0x1D2D\n0x8135D934\t0x1D2E\n0x8135D935\t0x1D2F\n0x8135D936\t0x1D30\n0x8135D937\t0x1D31\n0x8135D938\t0x1D32\n0x8135D939\t0x1D33\n0x8135DA30\t0x1D34\n0x8135DA31\t0x1D35\n0x8135DA32\t0x1D36\n0x8135DA33\t0x1D37\n0x8135DA34\t0x1D38\n0x8135DA35\t0x1D39\n0x8135DA36\t0x1D3A\n0x8135DA37\t0x1D3B\n0x8135DA38\t0x1D3C\n0x8135DA39\t0x1D3D\n0x8135DB30\t0x1D3E\n0x8135DB31\t0x1D3F\n0x8135DB32\t0x1D40\n0x8135DB33\t0x1D41\n0x8135DB34\t0x1D42\n0x8135DB35\t0x1D43\n0x8135DB36\t0x1D44\n0x8135DB37\t0x1D45\n0x8135DB38\t0x1D46\n0x8135DB39\t0x1D47\n0x8135DC30\t0x1D48\n0x8135DC31\t0x1D49\n0x8135DC32\t0x1D4A\n0x8135DC33\t0x1D4B\n0x8135DC34\t0x1D4C\n0x8135DC35\t0x1D4D\n0x8135DC36\t0x1D4E\n0x8135DC37\t0x1D4F\n0x8135DC38\t0x1D50\n0x8135DC39\t0x1D51\n0x8135DD30\t0x1D52\n0x8135DD31\t0x1D53\n0x8135DD32\t0x1D54\n0x8135DD33\t0x1D55\n0x8135DD34\t0x1D56\n0x8135DD35\t0x1D57\n0x8135DD36\t0x1D58\n0x8135DD37\t0x1D59\n0x8135DD38\t0x1D5A\n0x8135DD39\t0x1D5B\n0x8135DE30\t0x1D5C\n0x8135DE31\t0x1D5D\n0x8135DE32\t0x1D5E\n0x8135DE33\t0x1D5F\n0x8135DE34\t0x1D60\n0x8135DE35\t0x1D61\n0x8135DE36\t0x1D62\n0x8135DE37\t0x1D63\n0x8135DE38\t0x1D64\n0x8135DE39\t0x1D65\n0x8135DF30\t0x1D66\n0x8135DF31\t0x1D67\n0x8135DF32\t0x1D68\n0x8135DF33\t0x1D69\n0x8135DF34\t0x1D6A\n0x8135DF35\t0x1D6B\n0x8135DF36\t0x1D6C\n0x8135DF37\t0x1D6D\n0x8135DF38\t0x1D6E\n0x8135DF39\t0x1D6F\n0x8135E030\t0x1D70\n0x8135E031\t0x1D71\n0x8135E032\t0x1D72\n0x8135E033\t0x1D73\n0x8135E034\t0x1D74\n0x8135E035\t0x1D75\n0x8135E036\t0x1D76\n0x8135E037\t0x1D77\n0x8135E038\t0x1D78\n0x8135E039\t0x1D79\n0x8135E130\t0x1D7A\n0x8135E131\t0x1D7B\n0x8135E132\t0x1D7C\n0x8135E133\t0x1D7D\n0x8135E134\t0x1D7E\n0x8135E135\t0x1D7F\n0x8135E136\t0x1D80\n0x8135E137\t0x1D81\n0x8135E138\t0x1D82\n0x8135E139\t0x1D83\n0x8135E230\t0x1D84\n0x8135E231\t0x1D85\n0x8135E232\t0x1D86\n0x8135E233\t0x1D87\n0x8135E234\t0x1D88\n0x8135E235\t0x1D89\n0x8135E236\t0x1D8A\n0x8135E237\t0x1D8B\n0x8135E238\t0x1D8C\n0x8135E239\t0x1D8D\n0x8135E330\t0x1D8E\n0x8135E331\t0x1D8F\n0x8135E332\t0x1D90\n0x8135E333\t0x1D91\n0x8135E334\t0x1D92\n0x8135E335\t0x1D93\n0x8135E336\t0x1D94\n0x8135E337\t0x1D95\n0x8135E338\t0x1D96\n0x8135E339\t0x1D97\n0x8135E430\t0x1D98\n0x8135E431\t0x1D99\n0x8135E432\t0x1D9A\n0x8135E433\t0x1D9B\n0x8135E434\t0x1D9C\n0x8135E435\t0x1D9D\n0x8135E436\t0x1D9E\n0x8135E437\t0x1D9F\n0x8135E438\t0x1DA0\n0x8135E439\t0x1DA1\n0x8135E530\t0x1DA2\n0x8135E531\t0x1DA3\n0x8135E532\t0x1DA4\n0x8135E533\t0x1DA5\n0x8135E534\t0x1DA6\n0x8135E535\t0x1DA7\n0x8135E536\t0x1DA8\n0x8135E537\t0x1DA9\n0x8135E538\t0x1DAA\n0x8135E539\t0x1DAB\n0x8135E630\t0x1DAC\n0x8135E631\t0x1DAD\n0x8135E632\t0x1DAE\n0x8135E633\t0x1DAF\n0x8135E634\t0x1DB0\n0x8135E635\t0x1DB1\n0x8135E636\t0x1DB2\n0x8135E637\t0x1DB3\n0x8135E638\t0x1DB4\n0x8135E639\t0x1DB5\n0x8135E730\t0x1DB6\n0x8135E731\t0x1DB7\n0x8135E732\t0x1DB8\n0x8135E733\t0x1DB9\n0x8135E734\t0x1DBA\n0x8135E735\t0x1DBB\n0x8135E736\t0x1DBC\n0x8135E737\t0x1DBD\n0x8135E738\t0x1DBE\n0x8135E739\t0x1DBF\n0x8135E830\t0x1DC0\n0x8135E831\t0x1DC1\n0x8135E832\t0x1DC2\n0x8135E833\t0x1DC3\n0x8135E834\t0x1DC4\n0x8135E835\t0x1DC5\n0x8135E836\t0x1DC6\n0x8135E837\t0x1DC7\n0x8135E838\t0x1DC8\n0x8135E839\t0x1DC9\n0x8135E930\t0x1DCA\n0x8135E931\t0x1DCB\n0x8135E932\t0x1DCC\n0x8135E933\t0x1DCD\n0x8135E934\t0x1DCE\n0x8135E935\t0x1DCF\n0x8135E936\t0x1DD0\n0x8135E937\t0x1DD1\n0x8135E938\t0x1DD2\n0x8135E939\t0x1DD3\n0x8135EA30\t0x1DD4\n0x8135EA31\t0x1DD5\n0x8135EA32\t0x1DD6\n0x8135EA33\t0x1DD7\n0x8135EA34\t0x1DD8\n0x8135EA35\t0x1DD9\n0x8135EA36\t0x1DDA\n0x8135EA37\t0x1DDB\n0x8135EA38\t0x1DDC\n0x8135EA39\t0x1DDD\n0x8135EB30\t0x1DDE\n0x8135EB31\t0x1DDF\n0x8135EB32\t0x1DE0\n0x8135EB33\t0x1DE1\n0x8135EB34\t0x1DE2\n0x8135EB35\t0x1DE3\n0x8135EB36\t0x1DE4\n0x8135EB37\t0x1DE5\n0x8135EB38\t0x1DE6\n0x8135EB39\t0x1DE7\n0x8135EC30\t0x1DE8\n0x8135EC31\t0x1DE9\n0x8135EC32\t0x1DEA\n0x8135EC33\t0x1DEB\n0x8135EC34\t0x1DEC\n0x8135EC35\t0x1DED\n0x8135EC36\t0x1DEE\n0x8135EC37\t0x1DEF\n0x8135EC38\t0x1DF0\n0x8135EC39\t0x1DF1\n0x8135ED30\t0x1DF2\n0x8135ED31\t0x1DF3\n0x8135ED32\t0x1DF4\n0x8135ED33\t0x1DF5\n0x8135ED34\t0x1DF6\n0x8135ED35\t0x1DF7\n0x8135ED36\t0x1DF8\n0x8135ED37\t0x1DF9\n0x8135ED38\t0x1DFA\n0x8135ED39\t0x1DFB\n0x8135EE30\t0x1DFC\n0x8135EE31\t0x1DFD\n0x8135EE32\t0x1DFE\n0x8135EE33\t0x1DFF\n0x8135EE34\t0x1E00\n0x8135EE35\t0x1E01\n0x8135EE36\t0x1E02\n0x8135EE37\t0x1E03\n0x8135EE38\t0x1E04\n0x8135EE39\t0x1E05\n0x8135EF30\t0x1E06\n0x8135EF31\t0x1E07\n0x8135EF32\t0x1E08\n0x8135EF33\t0x1E09\n0x8135EF34\t0x1E0A\n0x8135EF35\t0x1E0B\n0x8135EF36\t0x1E0C\n0x8135EF37\t0x1E0D\n0x8135EF38\t0x1E0E\n0x8135EF39\t0x1E0F\n0x8135F030\t0x1E10\n0x8135F031\t0x1E11\n0x8135F032\t0x1E12\n0x8135F033\t0x1E13\n0x8135F034\t0x1E14\n0x8135F035\t0x1E15\n0x8135F036\t0x1E16\n0x8135F037\t0x1E17\n0x8135F038\t0x1E18\n0x8135F039\t0x1E19\n0x8135F130\t0x1E1A\n0x8135F131\t0x1E1B\n0x8135F132\t0x1E1C\n0x8135F133\t0x1E1D\n0x8135F134\t0x1E1E\n0x8135F135\t0x1E1F\n0x8135F136\t0x1E20\n0x8135F137\t0x1E21\n0x8135F138\t0x1E22\n0x8135F139\t0x1E23\n0x8135F230\t0x1E24\n0x8135F231\t0x1E25\n0x8135F232\t0x1E26\n0x8135F233\t0x1E27\n0x8135F234\t0x1E28\n0x8135F235\t0x1E29\n0x8135F236\t0x1E2A\n0x8135F237\t0x1E2B\n0x8135F238\t0x1E2C\n0x8135F239\t0x1E2D\n0x8135F330\t0x1E2E\n0x8135F331\t0x1E2F\n0x8135F332\t0x1E30\n0x8135F333\t0x1E31\n0x8135F334\t0x1E32\n0x8135F335\t0x1E33\n0x8135F336\t0x1E34\n0x8135F337\t0x1E35\n0x8135F338\t0x1E36\n0x8135F339\t0x1E37\n0x8135F430\t0x1E38\n0x8135F431\t0x1E39\n0x8135F432\t0x1E3A\n0x8135F433\t0x1E3B\n0x8135F434\t0x1E3C\n0x8135F435\t0x1E3D\n0x8135F436\t0x1E3E\n0x8135F437\t0xE7C7\n0x8135F438\t0x1E40\n0x8135F439\t0x1E41\n0x8135F530\t0x1E42\n0x8135F531\t0x1E43\n0x8135F532\t0x1E44\n0x8135F533\t0x1E45\n0x8135F534\t0x1E46\n0x8135F535\t0x1E47\n0x8135F536\t0x1E48\n0x8135F537\t0x1E49\n0x8135F538\t0x1E4A\n0x8135F539\t0x1E4B\n0x8135F630\t0x1E4C\n0x8135F631\t0x1E4D\n0x8135F632\t0x1E4E\n0x8135F633\t0x1E4F\n0x8135F634\t0x1E50\n0x8135F635\t0x1E51\n0x8135F636\t0x1E52\n0x8135F637\t0x1E53\n0x8135F638\t0x1E54\n0x8135F639\t0x1E55\n0x8135F730\t0x1E56\n0x8135F731\t0x1E57\n0x8135F732\t0x1E58\n0x8135F733\t0x1E59\n0x8135F734\t0x1E5A\n0x8135F735\t0x1E5B\n0x8135F736\t0x1E5C\n0x8135F737\t0x1E5D\n0x8135F738\t0x1E5E\n0x8135F739\t0x1E5F\n0x8135F830\t0x1E60\n0x8135F831\t0x1E61\n0x8135F832\t0x1E62\n0x8135F833\t0x1E63\n0x8135F834\t0x1E64\n0x8135F835\t0x1E65\n0x8135F836\t0x1E66\n0x8135F837\t0x1E67\n0x8135F838\t0x1E68\n0x8135F839\t0x1E69\n0x8135F930\t0x1E6A\n0x8135F931\t0x1E6B\n0x8135F932\t0x1E6C\n0x8135F933\t0x1E6D\n0x8135F934\t0x1E6E\n0x8135F935\t0x1E6F\n0x8135F936\t0x1E70\n0x8135F937\t0x1E71\n0x8135F938\t0x1E72\n0x8135F939\t0x1E73\n0x8135FA30\t0x1E74\n0x8135FA31\t0x1E75\n0x8135FA32\t0x1E76\n0x8135FA33\t0x1E77\n0x8135FA34\t0x1E78\n0x8135FA35\t0x1E79\n0x8135FA36\t0x1E7A\n0x8135FA37\t0x1E7B\n0x8135FA38\t0x1E7C\n0x8135FA39\t0x1E7D\n0x8135FB30\t0x1E7E\n0x8135FB31\t0x1E7F\n0x8135FB32\t0x1E80\n0x8135FB33\t0x1E81\n0x8135FB34\t0x1E82\n0x8135FB35\t0x1E83\n0x8135FB36\t0x1E84\n0x8135FB37\t0x1E85\n0x8135FB38\t0x1E86\n0x8135FB39\t0x1E87\n0x8135FC30\t0x1E88\n0x8135FC31\t0x1E89\n0x8135FC32\t0x1E8A\n0x8135FC33\t0x1E8B\n0x8135FC34\t0x1E8C\n0x8135FC35\t0x1E8D\n0x8135FC36\t0x1E8E\n0x8135FC37\t0x1E8F\n0x8135FC38\t0x1E90\n0x8135FC39\t0x1E91\n0x8135FD30\t0x1E92\n0x8135FD31\t0x1E93\n0x8135FD32\t0x1E94\n0x8135FD33\t0x1E95\n0x8135FD34\t0x1E96\n0x8135FD35\t0x1E97\n0x8135FD36\t0x1E98\n0x8135FD37\t0x1E99\n0x8135FD38\t0x1E9A\n0x8135FD39\t0x1E9B\n0x8135FE30\t0x1E9C\n0x8135FE31\t0x1E9D\n0x8135FE32\t0x1E9E\n0x8135FE33\t0x1E9F\n0x8135FE34\t0x1EA0\n0x8135FE35\t0x1EA1\n0x8135FE36\t0x1EA2\n0x8135FE37\t0x1EA3\n0x8135FE38\t0x1EA4\n0x8135FE39\t0x1EA5\n0x81368130\t0x1EA6\n0x81368131\t0x1EA7\n0x81368132\t0x1EA8\n0x81368133\t0x1EA9\n0x81368134\t0x1EAA\n0x81368135\t0x1EAB\n0x81368136\t0x1EAC\n0x81368137\t0x1EAD\n0x81368138\t0x1EAE\n0x81368139\t0x1EAF\n0x81368230\t0x1EB0\n0x81368231\t0x1EB1\n0x81368232\t0x1EB2\n0x81368233\t0x1EB3\n0x81368234\t0x1EB4\n0x81368235\t0x1EB5\n0x81368236\t0x1EB6\n0x81368237\t0x1EB7\n0x81368238\t0x1EB8\n0x81368239\t0x1EB9\n0x81368330\t0x1EBA\n0x81368331\t0x1EBB\n0x81368332\t0x1EBC\n0x81368333\t0x1EBD\n0x81368334\t0x1EBE\n0x81368335\t0x1EBF\n0x81368336\t0x1EC0\n0x81368337\t0x1EC1\n0x81368338\t0x1EC2\n0x81368339\t0x1EC3\n0x81368430\t0x1EC4\n0x81368431\t0x1EC5\n0x81368432\t0x1EC6\n0x81368433\t0x1EC7\n0x81368434\t0x1EC8\n0x81368435\t0x1EC9\n0x81368436\t0x1ECA\n0x81368437\t0x1ECB\n0x81368438\t0x1ECC\n0x81368439\t0x1ECD\n0x81368530\t0x1ECE\n0x81368531\t0x1ECF\n0x81368532\t0x1ED0\n0x81368533\t0x1ED1\n0x81368534\t0x1ED2\n0x81368535\t0x1ED3\n0x81368536\t0x1ED4\n0x81368537\t0x1ED5\n0x81368538\t0x1ED6\n0x81368539\t0x1ED7\n0x81368630\t0x1ED8\n0x81368631\t0x1ED9\n0x81368632\t0x1EDA\n0x81368633\t0x1EDB\n0x81368634\t0x1EDC\n0x81368635\t0x1EDD\n0x81368636\t0x1EDE\n0x81368637\t0x1EDF\n0x81368638\t0x1EE0\n0x81368639\t0x1EE1\n0x81368730\t0x1EE2\n0x81368731\t0x1EE3\n0x81368732\t0x1EE4\n0x81368733\t0x1EE5\n0x81368734\t0x1EE6\n0x81368735\t0x1EE7\n0x81368736\t0x1EE8\n0x81368737\t0x1EE9\n0x81368738\t0x1EEA\n0x81368739\t0x1EEB\n0x81368830\t0x1EEC\n0x81368831\t0x1EED\n0x81368832\t0x1EEE\n0x81368833\t0x1EEF\n0x81368834\t0x1EF0\n0x81368835\t0x1EF1\n0x81368836\t0x1EF2\n0x81368837\t0x1EF3\n0x81368838\t0x1EF4\n0x81368839\t0x1EF5\n0x81368930\t0x1EF6\n0x81368931\t0x1EF7\n0x81368932\t0x1EF8\n0x81368933\t0x1EF9\n0x81368934\t0x1EFA\n0x81368935\t0x1EFB\n0x81368936\t0x1EFC\n0x81368937\t0x1EFD\n0x81368938\t0x1EFE\n0x81368939\t0x1EFF\n0x81368A30\t0x1F00\n0x81368A31\t0x1F01\n0x81368A32\t0x1F02\n0x81368A33\t0x1F03\n0x81368A34\t0x1F04\n0x81368A35\t0x1F05\n0x81368A36\t0x1F06\n0x81368A37\t0x1F07\n0x81368A38\t0x1F08\n0x81368A39\t0x1F09\n0x81368B30\t0x1F0A\n0x81368B31\t0x1F0B\n0x81368B32\t0x1F0C\n0x81368B33\t0x1F0D\n0x81368B34\t0x1F0E\n0x81368B35\t0x1F0F\n0x81368B36\t0x1F10\n0x81368B37\t0x1F11\n0x81368B38\t0x1F12\n0x81368B39\t0x1F13\n0x81368C30\t0x1F14\n0x81368C31\t0x1F15\n0x81368C32\t0x1F16\n0x81368C33\t0x1F17\n0x81368C34\t0x1F18\n0x81368C35\t0x1F19\n0x81368C36\t0x1F1A\n0x81368C37\t0x1F1B\n0x81368C38\t0x1F1C\n0x81368C39\t0x1F1D\n0x81368D30\t0x1F1E\n0x81368D31\t0x1F1F\n0x81368D32\t0x1F20\n0x81368D33\t0x1F21\n0x81368D34\t0x1F22\n0x81368D35\t0x1F23\n0x81368D36\t0x1F24\n0x81368D37\t0x1F25\n0x81368D38\t0x1F26\n0x81368D39\t0x1F27\n0x81368E30\t0x1F28\n0x81368E31\t0x1F29\n0x81368E32\t0x1F2A\n0x81368E33\t0x1F2B\n0x81368E34\t0x1F2C\n0x81368E35\t0x1F2D\n0x81368E36\t0x1F2E\n0x81368E37\t0x1F2F\n0x81368E38\t0x1F30\n0x81368E39\t0x1F31\n0x81368F30\t0x1F32\n0x81368F31\t0x1F33\n0x81368F32\t0x1F34\n0x81368F33\t0x1F35\n0x81368F34\t0x1F36\n0x81368F35\t0x1F37\n0x81368F36\t0x1F38\n0x81368F37\t0x1F39\n0x81368F38\t0x1F3A\n0x81368F39\t0x1F3B\n0x81369030\t0x1F3C\n0x81369031\t0x1F3D\n0x81369032\t0x1F3E\n0x81369033\t0x1F3F\n0x81369034\t0x1F40\n0x81369035\t0x1F41\n0x81369036\t0x1F42\n0x81369037\t0x1F43\n0x81369038\t0x1F44\n0x81369039\t0x1F45\n0x81369130\t0x1F46\n0x81369131\t0x1F47\n0x81369132\t0x1F48\n0x81369133\t0x1F49\n0x81369134\t0x1F4A\n0x81369135\t0x1F4B\n0x81369136\t0x1F4C\n0x81369137\t0x1F4D\n0x81369138\t0x1F4E\n0x81369139\t0x1F4F\n0x81369230\t0x1F50\n0x81369231\t0x1F51\n0x81369232\t0x1F52\n0x81369233\t0x1F53\n0x81369234\t0x1F54\n0x81369235\t0x1F55\n0x81369236\t0x1F56\n0x81369237\t0x1F57\n0x81369238\t0x1F58\n0x81369239\t0x1F59\n0x81369330\t0x1F5A\n0x81369331\t0x1F5B\n0x81369332\t0x1F5C\n0x81369333\t0x1F5D\n0x81369334\t0x1F5E\n0x81369335\t0x1F5F\n0x81369336\t0x1F60\n0x81369337\t0x1F61\n0x81369338\t0x1F62\n0x81369339\t0x1F63\n0x81369430\t0x1F64\n0x81369431\t0x1F65\n0x81369432\t0x1F66\n0x81369433\t0x1F67\n0x81369434\t0x1F68\n0x81369435\t0x1F69\n0x81369436\t0x1F6A\n0x81369437\t0x1F6B\n0x81369438\t0x1F6C\n0x81369439\t0x1F6D\n0x81369530\t0x1F6E\n0x81369531\t0x1F6F\n0x81369532\t0x1F70\n0x81369533\t0x1F71\n0x81369534\t0x1F72\n0x81369535\t0x1F73\n0x81369536\t0x1F74\n0x81369537\t0x1F75\n0x81369538\t0x1F76\n0x81369539\t0x1F77\n0x81369630\t0x1F78\n0x81369631\t0x1F79\n0x81369632\t0x1F7A\n0x81369633\t0x1F7B\n0x81369634\t0x1F7C\n0x81369635\t0x1F7D\n0x81369636\t0x1F7E\n0x81369637\t0x1F7F\n0x81369638\t0x1F80\n0x81369639\t0x1F81\n0x81369730\t0x1F82\n0x81369731\t0x1F83\n0x81369732\t0x1F84\n0x81369733\t0x1F85\n0x81369734\t0x1F86\n0x81369735\t0x1F87\n0x81369736\t0x1F88\n0x81369737\t0x1F89\n0x81369738\t0x1F8A\n0x81369739\t0x1F8B\n0x81369830\t0x1F8C\n0x81369831\t0x1F8D\n0x81369832\t0x1F8E\n0x81369833\t0x1F8F\n0x81369834\t0x1F90\n0x81369835\t0x1F91\n0x81369836\t0x1F92\n0x81369837\t0x1F93\n0x81369838\t0x1F94\n0x81369839\t0x1F95\n0x81369930\t0x1F96\n0x81369931\t0x1F97\n0x81369932\t0x1F98\n0x81369933\t0x1F99\n0x81369934\t0x1F9A\n0x81369935\t0x1F9B\n0x81369936\t0x1F9C\n0x81369937\t0x1F9D\n0x81369938\t0x1F9E\n0x81369939\t0x1F9F\n0x81369A30\t0x1FA0\n0x81369A31\t0x1FA1\n0x81369A32\t0x1FA2\n0x81369A33\t0x1FA3\n0x81369A34\t0x1FA4\n0x81369A35\t0x1FA5\n0x81369A36\t0x1FA6\n0x81369A37\t0x1FA7\n0x81369A38\t0x1FA8\n0x81369A39\t0x1FA9\n0x81369B30\t0x1FAA\n0x81369B31\t0x1FAB\n0x81369B32\t0x1FAC\n0x81369B33\t0x1FAD\n0x81369B34\t0x1FAE\n0x81369B35\t0x1FAF\n0x81369B36\t0x1FB0\n0x81369B37\t0x1FB1\n0x81369B38\t0x1FB2\n0x81369B39\t0x1FB3\n0x81369C30\t0x1FB4\n0x81369C31\t0x1FB5\n0x81369C32\t0x1FB6\n0x81369C33\t0x1FB7\n0x81369C34\t0x1FB8\n0x81369C35\t0x1FB9\n0x81369C36\t0x1FBA\n0x81369C37\t0x1FBB\n0x81369C38\t0x1FBC\n0x81369C39\t0x1FBD\n0x81369D30\t0x1FBE\n0x81369D31\t0x1FBF\n0x81369D32\t0x1FC0\n0x81369D33\t0x1FC1\n0x81369D34\t0x1FC2\n0x81369D35\t0x1FC3\n0x81369D36\t0x1FC4\n0x81369D37\t0x1FC5\n0x81369D38\t0x1FC6\n0x81369D39\t0x1FC7\n0x81369E30\t0x1FC8\n0x81369E31\t0x1FC9\n0x81369E32\t0x1FCA\n0x81369E33\t0x1FCB\n0x81369E34\t0x1FCC\n0x81369E35\t0x1FCD\n0x81369E36\t0x1FCE\n0x81369E37\t0x1FCF\n0x81369E38\t0x1FD0\n0x81369E39\t0x1FD1\n0x81369F30\t0x1FD2\n0x81369F31\t0x1FD3\n0x81369F32\t0x1FD4\n0x81369F33\t0x1FD5\n0x81369F34\t0x1FD6\n0x81369F35\t0x1FD7\n0x81369F36\t0x1FD8\n0x81369F37\t0x1FD9\n0x81369F38\t0x1FDA\n0x81369F39\t0x1FDB\n0x8136A030\t0x1FDC\n0x8136A031\t0x1FDD\n0x8136A032\t0x1FDE\n0x8136A033\t0x1FDF\n0x8136A034\t0x1FE0\n0x8136A035\t0x1FE1\n0x8136A036\t0x1FE2\n0x8136A037\t0x1FE3\n0x8136A038\t0x1FE4\n0x8136A039\t0x1FE5\n0x8136A130\t0x1FE6\n0x8136A131\t0x1FE7\n0x8136A132\t0x1FE8\n0x8136A133\t0x1FE9\n0x8136A134\t0x1FEA\n0x8136A135\t0x1FEB\n0x8136A136\t0x1FEC\n0x8136A137\t0x1FED\n0x8136A138\t0x1FEE\n0x8136A139\t0x1FEF\n0x8136A230\t0x1FF0\n0x8136A231\t0x1FF1\n0x8136A232\t0x1FF2\n0x8136A233\t0x1FF3\n0x8136A234\t0x1FF4\n0x8136A235\t0x1FF5\n0x8136A236\t0x1FF6\n0x8136A237\t0x1FF7\n0x8136A238\t0x1FF8\n0x8136A239\t0x1FF9\n0x8136A330\t0x1FFA\n0x8136A331\t0x1FFB\n0x8136A332\t0x1FFC\n0x8136A333\t0x1FFD\n0x8136A334\t0x1FFE\n0x8136A335\t0x1FFF\n0x8136A336\t0x2000\n0x8136A337\t0x2001\n0x8136A338\t0x2002\n0x8136A339\t0x2003\n0x8136A430\t0x2004\n0x8136A431\t0x2005\n0x8136A432\t0x2006\n0x8136A433\t0x2007\n0x8136A434\t0x2008\n0x8136A435\t0x2009\n0x8136A436\t0x200A\n0x8136A437\t0x200B\n0x8136A438\t0x200C\n0x8136A439\t0x200D\n0x8136A530\t0x200E\n0x8136A531\t0x200F\n0x8136A532\t0x2011\n0x8136A533\t0x2012\n0x8136A534\t0x2017\n0x8136A535\t0x201A\n0x8136A536\t0x201B\n0x8136A537\t0x201E\n0x8136A538\t0x201F\n0x8136A539\t0x2020\n0x8136A630\t0x2021\n0x8136A631\t0x2022\n0x8136A632\t0x2023\n0x8136A633\t0x2024\n0x8136A634\t0x2027\n0x8136A635\t0x2028\n0x8136A636\t0x2029\n0x8136A637\t0x202A\n0x8136A638\t0x202B\n0x8136A639\t0x202C\n0x8136A730\t0x202D\n0x8136A731\t0x202E\n0x8136A732\t0x202F\n0x8136A733\t0x2031\n0x8136A734\t0x2034\n0x8136A735\t0x2036\n0x8136A736\t0x2037\n0x8136A737\t0x2038\n0x8136A738\t0x2039\n0x8136A739\t0x203A\n0x8136A830\t0x203C\n0x8136A831\t0x203D\n0x8136A832\t0x203E\n0x8136A833\t0x203F\n0x8136A834\t0x2040\n0x8136A835\t0x2041\n0x8136A836\t0x2042\n0x8136A837\t0x2043\n0x8136A838\t0x2044\n0x8136A839\t0x2045\n0x8136A930\t0x2046\n0x8136A931\t0x2047\n0x8136A932\t0x2048\n0x8136A933\t0x2049\n0x8136A934\t0x204A\n0x8136A935\t0x204B\n0x8136A936\t0x204C\n0x8136A937\t0x204D\n0x8136A938\t0x204E\n0x8136A939\t0x204F\n0x8136AA30\t0x2050\n0x8136AA31\t0x2051\n0x8136AA32\t0x2052\n0x8136AA33\t0x2053\n0x8136AA34\t0x2054\n0x8136AA35\t0x2055\n0x8136AA36\t0x2056\n0x8136AA37\t0x2057\n0x8136AA38\t0x2058\n0x8136AA39\t0x2059\n0x8136AB30\t0x205A\n0x8136AB31\t0x205B\n0x8136AB32\t0x205C\n0x8136AB33\t0x205D\n0x8136AB34\t0x205E\n0x8136AB35\t0x205F\n0x8136AB36\t0x2060\n0x8136AB37\t0x2061\n0x8136AB38\t0x2062\n0x8136AB39\t0x2063\n0x8136AC30\t0x2064\n0x8136AC31\t0x2065\n0x8136AC32\t0x2066\n0x8136AC33\t0x2067\n0x8136AC34\t0x2068\n0x8136AC35\t0x2069\n0x8136AC36\t0x206A\n0x8136AC37\t0x206B\n0x8136AC38\t0x206C\n0x8136AC39\t0x206D\n0x8136AD30\t0x206E\n0x8136AD31\t0x206F\n0x8136AD32\t0x2070\n0x8136AD33\t0x2071\n0x8136AD34\t0x2072\n0x8136AD35\t0x2073\n0x8136AD36\t0x2074\n0x8136AD37\t0x2075\n0x8136AD38\t0x2076\n0x8136AD39\t0x2077\n0x8136AE30\t0x2078\n0x8136AE31\t0x2079\n0x8136AE32\t0x207A\n0x8136AE33\t0x207B\n0x8136AE34\t0x207C\n0x8136AE35\t0x207D\n0x8136AE36\t0x207E\n0x8136AE37\t0x207F\n0x8136AE38\t0x2080\n0x8136AE39\t0x2081\n0x8136AF30\t0x2082\n0x8136AF31\t0x2083\n0x8136AF32\t0x2084\n0x8136AF33\t0x2085\n0x8136AF34\t0x2086\n0x8136AF35\t0x2087\n0x8136AF36\t0x2088\n0x8136AF37\t0x2089\n0x8136AF38\t0x208A\n0x8136AF39\t0x208B\n0x8136B030\t0x208C\n0x8136B031\t0x208D\n0x8136B032\t0x208E\n0x8136B033\t0x208F\n0x8136B034\t0x2090\n0x8136B035\t0x2091\n0x8136B036\t0x2092\n0x8136B037\t0x2093\n0x8136B038\t0x2094\n0x8136B039\t0x2095\n0x8136B130\t0x2096\n0x8136B131\t0x2097\n0x8136B132\t0x2098\n0x8136B133\t0x2099\n0x8136B134\t0x209A\n0x8136B135\t0x209B\n0x8136B136\t0x209C\n0x8136B137\t0x209D\n0x8136B138\t0x209E\n0x8136B139\t0x209F\n0x8136B230\t0x20A0\n0x8136B231\t0x20A1\n0x8136B232\t0x20A2\n0x8136B233\t0x20A3\n0x8136B234\t0x20A4\n0x8136B235\t0x20A5\n0x8136B236\t0x20A6\n0x8136B237\t0x20A7\n0x8136B238\t0x20A8\n0x8136B239\t0x20A9\n0x8136B330\t0x20AA\n0x8136B331\t0x20AB\n0x8136B332\t0x20AD\n0x8136B333\t0x20AE\n0x8136B334\t0x20AF\n0x8136B335\t0x20B0\n0x8136B336\t0x20B1\n0x8136B337\t0x20B2\n0x8136B338\t0x20B3\n0x8136B339\t0x20B4\n0x8136B430\t0x20B5\n0x8136B431\t0x20B6\n0x8136B432\t0x20B7\n0x8136B433\t0x20B8\n0x8136B434\t0x20B9\n0x8136B435\t0x20BA\n0x8136B436\t0x20BB\n0x8136B437\t0x20BC\n0x8136B438\t0x20BD\n0x8136B439\t0x20BE\n0x8136B530\t0x20BF\n0x8136B531\t0x20C0\n0x8136B532\t0x20C1\n0x8136B533\t0x20C2\n0x8136B534\t0x20C3\n0x8136B535\t0x20C4\n0x8136B536\t0x20C5\n0x8136B537\t0x20C6\n0x8136B538\t0x20C7\n0x8136B539\t0x20C8\n0x8136B630\t0x20C9\n0x8136B631\t0x20CA\n0x8136B632\t0x20CB\n0x8136B633\t0x20CC\n0x8136B634\t0x20CD\n0x8136B635\t0x20CE\n0x8136B636\t0x20CF\n0x8136B637\t0x20D0\n0x8136B638\t0x20D1\n0x8136B639\t0x20D2\n0x8136B730\t0x20D3\n0x8136B731\t0x20D4\n0x8136B732\t0x20D5\n0x8136B733\t0x20D6\n0x8136B734\t0x20D7\n0x8136B735\t0x20D8\n0x8136B736\t0x20D9\n0x8136B737\t0x20DA\n0x8136B738\t0x20DB\n0x8136B739\t0x20DC\n0x8136B830\t0x20DD\n0x8136B831\t0x20DE\n0x8136B832\t0x20DF\n0x8136B833\t0x20E0\n0x8136B834\t0x20E1\n0x8136B835\t0x20E2\n0x8136B836\t0x20E3\n0x8136B837\t0x20E4\n0x8136B838\t0x20E5\n0x8136B839\t0x20E6\n0x8136B930\t0x20E7\n0x8136B931\t0x20E8\n0x8136B932\t0x20E9\n0x8136B933\t0x20EA\n0x8136B934\t0x20EB\n0x8136B935\t0x20EC\n0x8136B936\t0x20ED\n0x8136B937\t0x20EE\n0x8136B938\t0x20EF\n0x8136B939\t0x20F0\n0x8136BA30\t0x20F1\n0x8136BA31\t0x20F2\n0x8136BA32\t0x20F3\n0x8136BA33\t0x20F4\n0x8136BA34\t0x20F5\n0x8136BA35\t0x20F6\n0x8136BA36\t0x20F7\n0x8136BA37\t0x20F8\n0x8136BA38\t0x20F9\n0x8136BA39\t0x20FA\n0x8136BB30\t0x20FB\n0x8136BB31\t0x20FC\n0x8136BB32\t0x20FD\n0x8136BB33\t0x20FE\n0x8136BB34\t0x20FF\n0x8136BB35\t0x2100\n0x8136BB36\t0x2101\n0x8136BB37\t0x2102\n0x8136BB38\t0x2104\n0x8136BB39\t0x2106\n0x8136BC30\t0x2107\n0x8136BC31\t0x2108\n0x8136BC32\t0x210A\n0x8136BC33\t0x210B\n0x8136BC34\t0x210C\n0x8136BC35\t0x210D\n0x8136BC36\t0x210E\n0x8136BC37\t0x210F\n0x8136BC38\t0x2110\n0x8136BC39\t0x2111\n0x8136BD30\t0x2112\n0x8136BD31\t0x2113\n0x8136BD32\t0x2114\n0x8136BD33\t0x2115\n0x8136BD34\t0x2117\n0x8136BD35\t0x2118\n0x8136BD36\t0x2119\n0x8136BD37\t0x211A\n0x8136BD38\t0x211B\n0x8136BD39\t0x211C\n0x8136BE30\t0x211D\n0x8136BE31\t0x211E\n0x8136BE32\t0x211F\n0x8136BE33\t0x2120\n0x8136BE34\t0x2122\n0x8136BE35\t0x2123\n0x8136BE36\t0x2124\n0x8136BE37\t0x2125\n0x8136BE38\t0x2126\n0x8136BE39\t0x2127\n0x8136BF30\t0x2128\n0x8136BF31\t0x2129\n0x8136BF32\t0x212A\n0x8136BF33\t0x212B\n0x8136BF34\t0x212C\n0x8136BF35\t0x212D\n0x8136BF36\t0x212E\n0x8136BF37\t0x212F\n0x8136BF38\t0x2130\n0x8136BF39\t0x2131\n0x8136C030\t0x2132\n0x8136C031\t0x2133\n0x8136C032\t0x2134\n0x8136C033\t0x2135\n0x8136C034\t0x2136\n0x8136C035\t0x2137\n0x8136C036\t0x2138\n0x8136C037\t0x2139\n0x8136C038\t0x213A\n0x8136C039\t0x213B\n0x8136C130\t0x213C\n0x8136C131\t0x213D\n0x8136C132\t0x213E\n0x8136C133\t0x213F\n0x8136C134\t0x2140\n0x8136C135\t0x2141\n0x8136C136\t0x2142\n0x8136C137\t0x2143\n0x8136C138\t0x2144\n0x8136C139\t0x2145\n0x8136C230\t0x2146\n0x8136C231\t0x2147\n0x8136C232\t0x2148\n0x8136C233\t0x2149\n0x8136C234\t0x214A\n0x8136C235\t0x214B\n0x8136C236\t0x214C\n0x8136C237\t0x214D\n0x8136C238\t0x214E\n0x8136C239\t0x214F\n0x8136C330\t0x2150\n0x8136C331\t0x2151\n0x8136C332\t0x2152\n0x8136C333\t0x2153\n0x8136C334\t0x2154\n0x8136C335\t0x2155\n0x8136C336\t0x2156\n0x8136C337\t0x2157\n0x8136C338\t0x2158\n0x8136C339\t0x2159\n0x8136C430\t0x215A\n0x8136C431\t0x215B\n0x8136C432\t0x215C\n0x8136C433\t0x215D\n0x8136C434\t0x215E\n0x8136C435\t0x215F\n0x8136C436\t0x216C\n0x8136C437\t0x216D\n0x8136C438\t0x216E\n0x8136C439\t0x216F\n0x8136C530\t0x217A\n0x8136C531\t0x217B\n0x8136C532\t0x217C\n0x8136C533\t0x217D\n0x8136C534\t0x217E\n0x8136C535\t0x217F\n0x8136C536\t0x2180\n0x8136C537\t0x2181\n0x8136C538\t0x2182\n0x8136C539\t0x2183\n0x8136C630\t0x2184\n0x8136C631\t0x2185\n0x8136C632\t0x2186\n0x8136C633\t0x2187\n0x8136C634\t0x2188\n0x8136C635\t0x2189\n0x8136C636\t0x218A\n0x8136C637\t0x218B\n0x8136C638\t0x218C\n0x8136C639\t0x218D\n0x8136C730\t0x218E\n0x8136C731\t0x218F\n0x8136C732\t0x2194\n0x8136C733\t0x2195\n0x8136C734\t0x219A\n0x8136C735\t0x219B\n0x8136C736\t0x219C\n0x8136C737\t0x219D\n0x8136C738\t0x219E\n0x8136C739\t0x219F\n0x8136C830\t0x21A0\n0x8136C831\t0x21A1\n0x8136C832\t0x21A2\n0x8136C833\t0x21A3\n0x8136C834\t0x21A4\n0x8136C835\t0x21A5\n0x8136C836\t0x21A6\n0x8136C837\t0x21A7\n0x8136C838\t0x21A8\n0x8136C839\t0x21A9\n0x8136C930\t0x21AA\n0x8136C931\t0x21AB\n0x8136C932\t0x21AC\n0x8136C933\t0x21AD\n0x8136C934\t0x21AE\n0x8136C935\t0x21AF\n0x8136C936\t0x21B0\n0x8136C937\t0x21B1\n0x8136C938\t0x21B2\n0x8136C939\t0x21B3\n0x8136CA30\t0x21B4\n0x8136CA31\t0x21B5\n0x8136CA32\t0x21B6\n0x8136CA33\t0x21B7\n0x8136CA34\t0x21B8\n0x8136CA35\t0x21B9\n0x8136CA36\t0x21BA\n0x8136CA37\t0x21BB\n0x8136CA38\t0x21BC\n0x8136CA39\t0x21BD\n0x8136CB30\t0x21BE\n0x8136CB31\t0x21BF\n0x8136CB32\t0x21C0\n0x8136CB33\t0x21C1\n0x8136CB34\t0x21C2\n0x8136CB35\t0x21C3\n0x8136CB36\t0x21C4\n0x8136CB37\t0x21C5\n0x8136CB38\t0x21C6\n0x8136CB39\t0x21C7\n0x8136CC30\t0x21C8\n0x8136CC31\t0x21C9\n0x8136CC32\t0x21CA\n0x8136CC33\t0x21CB\n0x8136CC34\t0x21CC\n0x8136CC35\t0x21CD\n0x8136CC36\t0x21CE\n0x8136CC37\t0x21CF\n0x8136CC38\t0x21D0\n0x8136CC39\t0x21D1\n0x8136CD30\t0x21D2\n0x8136CD31\t0x21D3\n0x8136CD32\t0x21D4\n0x8136CD33\t0x21D5\n0x8136CD34\t0x21D6\n0x8136CD35\t0x21D7\n0x8136CD36\t0x21D8\n0x8136CD37\t0x21D9\n0x8136CD38\t0x21DA\n0x8136CD39\t0x21DB\n0x8136CE30\t0x21DC\n0x8136CE31\t0x21DD\n0x8136CE32\t0x21DE\n0x8136CE33\t0x21DF\n0x8136CE34\t0x21E0\n0x8136CE35\t0x21E1\n0x8136CE36\t0x21E2\n0x8136CE37\t0x21E3\n0x8136CE38\t0x21E4\n0x8136CE39\t0x21E5\n0x8136CF30\t0x21E6\n0x8136CF31\t0x21E7\n0x8136CF32\t0x21E8\n0x8136CF33\t0x21E9\n0x8136CF34\t0x21EA\n0x8136CF35\t0x21EB\n0x8136CF36\t0x21EC\n0x8136CF37\t0x21ED\n0x8136CF38\t0x21EE\n0x8136CF39\t0x21EF\n0x8136D030\t0x21F0\n0x8136D031\t0x21F1\n0x8136D032\t0x21F2\n0x8136D033\t0x21F3\n0x8136D034\t0x21F4\n0x8136D035\t0x21F5\n0x8136D036\t0x21F6\n0x8136D037\t0x21F7\n0x8136D038\t0x21F8\n0x8136D039\t0x21F9\n0x8136D130\t0x21FA\n0x8136D131\t0x21FB\n0x8136D132\t0x21FC\n0x8136D133\t0x21FD\n0x8136D134\t0x21FE\n0x8136D135\t0x21FF\n0x8136D136\t0x2200\n0x8136D137\t0x2201\n0x8136D138\t0x2202\n0x8136D139\t0x2203\n0x8136D230\t0x2204\n0x8136D231\t0x2205\n0x8136D232\t0x2206\n0x8136D233\t0x2207\n0x8136D234\t0x2209\n0x8136D235\t0x220A\n0x8136D236\t0x220B\n0x8136D237\t0x220C\n0x8136D238\t0x220D\n0x8136D239\t0x220E\n0x8136D330\t0x2210\n0x8136D331\t0x2212\n0x8136D332\t0x2213\n0x8136D333\t0x2214\n0x8136D334\t0x2216\n0x8136D335\t0x2217\n0x8136D336\t0x2218\n0x8136D337\t0x2219\n0x8136D338\t0x221B\n0x8136D339\t0x221C\n0x8136D430\t0x2221\n0x8136D431\t0x2222\n0x8136D432\t0x2224\n0x8136D433\t0x2226\n0x8136D434\t0x222C\n0x8136D435\t0x222D\n0x8136D436\t0x222F\n0x8136D437\t0x2230\n0x8136D438\t0x2231\n0x8136D439\t0x2232\n0x8136D530\t0x2233\n0x8136D531\t0x2238\n0x8136D532\t0x2239\n0x8136D533\t0x223A\n0x8136D534\t0x223B\n0x8136D535\t0x223C\n0x8136D536\t0x223E\n0x8136D537\t0x223F\n0x8136D538\t0x2240\n0x8136D539\t0x2241\n0x8136D630\t0x2242\n0x8136D631\t0x2243\n0x8136D632\t0x2244\n0x8136D633\t0x2245\n0x8136D634\t0x2246\n0x8136D635\t0x2247\n0x8136D636\t0x2249\n0x8136D637\t0x224A\n0x8136D638\t0x224B\n0x8136D639\t0x224D\n0x8136D730\t0x224E\n0x8136D731\t0x224F\n0x8136D732\t0x2250\n0x8136D733\t0x2251\n0x8136D734\t0x2253\n0x8136D735\t0x2254\n0x8136D736\t0x2255\n0x8136D737\t0x2256\n0x8136D738\t0x2257\n0x8136D739\t0x2258\n0x8136D830\t0x2259\n0x8136D831\t0x225A\n0x8136D832\t0x225B\n0x8136D833\t0x225C\n0x8136D834\t0x225D\n0x8136D835\t0x225E\n0x8136D836\t0x225F\n0x8136D837\t0x2262\n0x8136D838\t0x2263\n0x8136D839\t0x2268\n0x8136D930\t0x2269\n0x8136D931\t0x226A\n0x8136D932\t0x226B\n0x8136D933\t0x226C\n0x8136D934\t0x226D\n0x8136D935\t0x2270\n0x8136D936\t0x2271\n0x8136D937\t0x2272\n0x8136D938\t0x2273\n0x8136D939\t0x2274\n0x8136DA30\t0x2275\n0x8136DA31\t0x2276\n0x8136DA32\t0x2277\n0x8136DA33\t0x2278\n0x8136DA34\t0x2279\n0x8136DA35\t0x227A\n0x8136DA36\t0x227B\n0x8136DA37\t0x227C\n0x8136DA38\t0x227D\n0x8136DA39\t0x227E\n0x8136DB30\t0x227F\n0x8136DB31\t0x2280\n0x8136DB32\t0x2281\n0x8136DB33\t0x2282\n0x8136DB34\t0x2283\n0x8136DB35\t0x2284\n0x8136DB36\t0x2285\n0x8136DB37\t0x2286\n0x8136DB38\t0x2287\n0x8136DB39\t0x2288\n0x8136DC30\t0x2289\n0x8136DC31\t0x228A\n0x8136DC32\t0x228B\n0x8136DC33\t0x228C\n0x8136DC34\t0x228D\n0x8136DC35\t0x228E\n0x8136DC36\t0x228F\n0x8136DC37\t0x2290\n0x8136DC38\t0x2291\n0x8136DC39\t0x2292\n0x8136DD30\t0x2293\n0x8136DD31\t0x2294\n0x8136DD32\t0x2296\n0x8136DD33\t0x2297\n0x8136DD34\t0x2298\n0x8136DD35\t0x229A\n0x8136DD36\t0x229B\n0x8136DD37\t0x229C\n0x8136DD38\t0x229D\n0x8136DD39\t0x229E\n0x8136DE30\t0x229F\n0x8136DE31\t0x22A0\n0x8136DE32\t0x22A1\n0x8136DE33\t0x22A2\n0x8136DE34\t0x22A3\n0x8136DE35\t0x22A4\n0x8136DE36\t0x22A6\n0x8136DE37\t0x22A7\n0x8136DE38\t0x22A8\n0x8136DE39\t0x22A9\n0x8136DF30\t0x22AA\n0x8136DF31\t0x22AB\n0x8136DF32\t0x22AC\n0x8136DF33\t0x22AD\n0x8136DF34\t0x22AE\n0x8136DF35\t0x22AF\n0x8136DF36\t0x22B0\n0x8136DF37\t0x22B1\n0x8136DF38\t0x22B2\n0x8136DF39\t0x22B3\n0x8136E030\t0x22B4\n0x8136E031\t0x22B5\n0x8136E032\t0x22B6\n0x8136E033\t0x22B7\n0x8136E034\t0x22B8\n0x8136E035\t0x22B9\n0x8136E036\t0x22BA\n0x8136E037\t0x22BB\n0x8136E038\t0x22BC\n0x8136E039\t0x22BD\n0x8136E130\t0x22BE\n0x8136E131\t0x22C0\n0x8136E132\t0x22C1\n0x8136E133\t0x22C2\n0x8136E134\t0x22C3\n0x8136E135\t0x22C4\n0x8136E136\t0x22C5\n0x8136E137\t0x22C6\n0x8136E138\t0x22C7\n0x8136E139\t0x22C8\n0x8136E230\t0x22C9\n0x8136E231\t0x22CA\n0x8136E232\t0x22CB\n0x8136E233\t0x22CC\n0x8136E234\t0x22CD\n0x8136E235\t0x22CE\n0x8136E236\t0x22CF\n0x8136E237\t0x22D0\n0x8136E238\t0x22D1\n0x8136E239\t0x22D2\n0x8136E330\t0x22D3\n0x8136E331\t0x22D4\n0x8136E332\t0x22D5\n0x8136E333\t0x22D6\n0x8136E334\t0x22D7\n0x8136E335\t0x22D8\n0x8136E336\t0x22D9\n0x8136E337\t0x22DA\n0x8136E338\t0x22DB\n0x8136E339\t0x22DC\n0x8136E430\t0x22DD\n0x8136E431\t0x22DE\n0x8136E432\t0x22DF\n0x8136E433\t0x22E0\n0x8136E434\t0x22E1\n0x8136E435\t0x22E2\n0x8136E436\t0x22E3\n0x8136E437\t0x22E4\n0x8136E438\t0x22E5\n0x8136E439\t0x22E6\n0x8136E530\t0x22E7\n0x8136E531\t0x22E8\n0x8136E532\t0x22E9\n0x8136E533\t0x22EA\n0x8136E534\t0x22EB\n0x8136E535\t0x22EC\n0x8136E536\t0x22ED\n0x8136E537\t0x22EE\n0x8136E538\t0x22EF\n0x8136E539\t0x22F0\n0x8136E630\t0x22F1\n0x8136E631\t0x22F2\n0x8136E632\t0x22F3\n0x8136E633\t0x22F4\n0x8136E634\t0x22F5\n0x8136E635\t0x22F6\n0x8136E636\t0x22F7\n0x8136E637\t0x22F8\n0x8136E638\t0x22F9\n0x8136E639\t0x22FA\n0x8136E730\t0x22FB\n0x8136E731\t0x22FC\n0x8136E732\t0x22FD\n0x8136E733\t0x22FE\n0x8136E734\t0x22FF\n0x8136E735\t0x2300\n0x8136E736\t0x2301\n0x8136E737\t0x2302\n0x8136E738\t0x2303\n0x8136E739\t0x2304\n0x8136E830\t0x2305\n0x8136E831\t0x2306\n0x8136E832\t0x2307\n0x8136E833\t0x2308\n0x8136E834\t0x2309\n0x8136E835\t0x230A\n0x8136E836\t0x230B\n0x8136E837\t0x230C\n0x8136E838\t0x230D\n0x8136E839\t0x230E\n0x8136E930\t0x230F\n0x8136E931\t0x2310\n0x8136E932\t0x2311\n0x8136E933\t0x2313\n0x8136E934\t0x2314\n0x8136E935\t0x2315\n0x8136E936\t0x2316\n0x8136E937\t0x2317\n0x8136E938\t0x2318\n0x8136E939\t0x2319\n0x8136EA30\t0x231A\n0x8136EA31\t0x231B\n0x8136EA32\t0x231C\n0x8136EA33\t0x231D\n0x8136EA34\t0x231E\n0x8136EA35\t0x231F\n0x8136EA36\t0x2320\n0x8136EA37\t0x2321\n0x8136EA38\t0x2322\n0x8136EA39\t0x2323\n0x8136EB30\t0x2324\n0x8136EB31\t0x2325\n0x8136EB32\t0x2326\n0x8136EB33\t0x2327\n0x8136EB34\t0x2328\n0x8136EB35\t0x2329\n0x8136EB36\t0x232A\n0x8136EB37\t0x232B\n0x8136EB38\t0x232C\n0x8136EB39\t0x232D\n0x8136EC30\t0x232E\n0x8136EC31\t0x232F\n0x8136EC32\t0x2330\n0x8136EC33\t0x2331\n0x8136EC34\t0x2332\n0x8136EC35\t0x2333\n0x8136EC36\t0x2334\n0x8136EC37\t0x2335\n0x8136EC38\t0x2336\n0x8136EC39\t0x2337\n0x8136ED30\t0x2338\n0x8136ED31\t0x2339\n0x8136ED32\t0x233A\n0x8136ED33\t0x233B\n0x8136ED34\t0x233C\n0x8136ED35\t0x233D\n0x8136ED36\t0x233E\n0x8136ED37\t0x233F\n0x8136ED38\t0x2340\n0x8136ED39\t0x2341\n0x8136EE30\t0x2342\n0x8136EE31\t0x2343\n0x8136EE32\t0x2344\n0x8136EE33\t0x2345\n0x8136EE34\t0x2346\n0x8136EE35\t0x2347\n0x8136EE36\t0x2348\n0x8136EE37\t0x2349\n0x8136EE38\t0x234A\n0x8136EE39\t0x234B\n0x8136EF30\t0x234C\n0x8136EF31\t0x234D\n0x8136EF32\t0x234E\n0x8136EF33\t0x234F\n0x8136EF34\t0x2350\n0x8136EF35\t0x2351\n0x8136EF36\t0x2352\n0x8136EF37\t0x2353\n0x8136EF38\t0x2354\n0x8136EF39\t0x2355\n0x8136F030\t0x2356\n0x8136F031\t0x2357\n0x8136F032\t0x2358\n0x8136F033\t0x2359\n0x8136F034\t0x235A\n0x8136F035\t0x235B\n0x8136F036\t0x235C\n0x8136F037\t0x235D\n0x8136F038\t0x235E\n0x8136F039\t0x235F\n0x8136F130\t0x2360\n0x8136F131\t0x2361\n0x8136F132\t0x2362\n0x8136F133\t0x2363\n0x8136F134\t0x2364\n0x8136F135\t0x2365\n0x8136F136\t0x2366\n0x8136F137\t0x2367\n0x8136F138\t0x2368\n0x8136F139\t0x2369\n0x8136F230\t0x236A\n0x8136F231\t0x236B\n0x8136F232\t0x236C\n0x8136F233\t0x236D\n0x8136F234\t0x236E\n0x8136F235\t0x236F\n0x8136F236\t0x2370\n0x8136F237\t0x2371\n0x8136F238\t0x2372\n0x8136F239\t0x2373\n0x8136F330\t0x2374\n0x8136F331\t0x2375\n0x8136F332\t0x2376\n0x8136F333\t0x2377\n0x8136F334\t0x2378\n0x8136F335\t0x2379\n0x8136F336\t0x237A\n0x8136F337\t0x237B\n0x8136F338\t0x237C\n0x8136F339\t0x237D\n0x8136F430\t0x237E\n0x8136F431\t0x237F\n0x8136F432\t0x2380\n0x8136F433\t0x2381\n0x8136F434\t0x2382\n0x8136F435\t0x2383\n0x8136F436\t0x2384\n0x8136F437\t0x2385\n0x8136F438\t0x2386\n0x8136F439\t0x2387\n0x8136F530\t0x2388\n0x8136F531\t0x2389\n0x8136F532\t0x238A\n0x8136F533\t0x238B\n0x8136F534\t0x238C\n0x8136F535\t0x238D\n0x8136F536\t0x238E\n0x8136F537\t0x238F\n0x8136F538\t0x2390\n0x8136F539\t0x2391\n0x8136F630\t0x2392\n0x8136F631\t0x2393\n0x8136F632\t0x2394\n0x8136F633\t0x2395\n0x8136F634\t0x2396\n0x8136F635\t0x2397\n0x8136F636\t0x2398\n0x8136F637\t0x2399\n0x8136F638\t0x239A\n0x8136F639\t0x239B\n0x8136F730\t0x239C\n0x8136F731\t0x239D\n0x8136F732\t0x239E\n0x8136F733\t0x239F\n0x8136F734\t0x23A0\n0x8136F735\t0x23A1\n0x8136F736\t0x23A2\n0x8136F737\t0x23A3\n0x8136F738\t0x23A4\n0x8136F739\t0x23A5\n0x8136F830\t0x23A6\n0x8136F831\t0x23A7\n0x8136F832\t0x23A8\n0x8136F833\t0x23A9\n0x8136F834\t0x23AA\n0x8136F835\t0x23AB\n0x8136F836\t0x23AC\n0x8136F837\t0x23AD\n0x8136F838\t0x23AE\n0x8136F839\t0x23AF\n0x8136F930\t0x23B0\n0x8136F931\t0x23B1\n0x8136F932\t0x23B2\n0x8136F933\t0x23B3\n0x8136F934\t0x23B4\n0x8136F935\t0x23B5\n0x8136F936\t0x23B6\n0x8136F937\t0x23B7\n0x8136F938\t0x23B8\n0x8136F939\t0x23B9\n0x8136FA30\t0x23BA\n0x8136FA31\t0x23BB\n0x8136FA32\t0x23BC\n0x8136FA33\t0x23BD\n0x8136FA34\t0x23BE\n0x8136FA35\t0x23BF\n0x8136FA36\t0x23C0\n0x8136FA37\t0x23C1\n0x8136FA38\t0x23C2\n0x8136FA39\t0x23C3\n0x8136FB30\t0x23C4\n0x8136FB31\t0x23C5\n0x8136FB32\t0x23C6\n0x8136FB33\t0x23C7\n0x8136FB34\t0x23C8\n0x8136FB35\t0x23C9\n0x8136FB36\t0x23CA\n0x8136FB37\t0x23CB\n0x8136FB38\t0x23CC\n0x8136FB39\t0x23CD\n0x8136FC30\t0x23CE\n0x8136FC31\t0x23CF\n0x8136FC32\t0x23D0\n0x8136FC33\t0x23D1\n0x8136FC34\t0x23D2\n0x8136FC35\t0x23D3\n0x8136FC36\t0x23D4\n0x8136FC37\t0x23D5\n0x8136FC38\t0x23D6\n0x8136FC39\t0x23D7\n0x8136FD30\t0x23D8\n0x8136FD31\t0x23D9\n0x8136FD32\t0x23DA\n0x8136FD33\t0x23DB\n0x8136FD34\t0x23DC\n0x8136FD35\t0x23DD\n0x8136FD36\t0x23DE\n0x8136FD37\t0x23DF\n0x8136FD38\t0x23E0\n0x8136FD39\t0x23E1\n0x8136FE30\t0x23E2\n0x8136FE31\t0x23E3\n0x8136FE32\t0x23E4\n0x8136FE33\t0x23E5\n0x8136FE34\t0x23E6\n0x8136FE35\t0x23E7\n0x8136FE36\t0x23E8\n0x8136FE37\t0x23E9\n0x8136FE38\t0x23EA\n0x8136FE39\t0x23EB\n0x81378130\t0x23EC\n0x81378131\t0x23ED\n0x81378132\t0x23EE\n0x81378133\t0x23EF\n0x81378134\t0x23F0\n0x81378135\t0x23F1\n0x81378136\t0x23F2\n0x81378137\t0x23F3\n0x81378138\t0x23F4\n0x81378139\t0x23F5\n0x81378230\t0x23F6\n0x81378231\t0x23F7\n0x81378232\t0x23F8\n0x81378233\t0x23F9\n0x81378234\t0x23FA\n0x81378235\t0x23FB\n0x81378236\t0x23FC\n0x81378237\t0x23FD\n0x81378238\t0x23FE\n0x81378239\t0x23FF\n0x81378330\t0x2400\n0x81378331\t0x2401\n0x81378332\t0x2402\n0x81378333\t0x2403\n0x81378334\t0x2404\n0x81378335\t0x2405\n0x81378336\t0x2406\n0x81378337\t0x2407\n0x81378338\t0x2408\n0x81378339\t0x2409\n0x81378430\t0x240A\n0x81378431\t0x240B\n0x81378432\t0x240C\n0x81378433\t0x240D\n0x81378434\t0x240E\n0x81378435\t0x240F\n0x81378436\t0x2410\n0x81378437\t0x2411\n0x81378438\t0x2412\n0x81378439\t0x2413\n0x81378530\t0x2414\n0x81378531\t0x2415\n0x81378532\t0x2416\n0x81378533\t0x2417\n0x81378534\t0x2418\n0x81378535\t0x2419\n0x81378536\t0x241A\n0x81378537\t0x241B\n0x81378538\t0x241C\n0x81378539\t0x241D\n0x81378630\t0x241E\n0x81378631\t0x241F\n0x81378632\t0x2420\n0x81378633\t0x2421\n0x81378634\t0x2422\n0x81378635\t0x2423\n0x81378636\t0x2424\n0x81378637\t0x2425\n0x81378638\t0x2426\n0x81378639\t0x2427\n0x81378730\t0x2428\n0x81378731\t0x2429\n0x81378732\t0x242A\n0x81378733\t0x242B\n0x81378734\t0x242C\n0x81378735\t0x242D\n0x81378736\t0x242E\n0x81378737\t0x242F\n0x81378738\t0x2430\n0x81378739\t0x2431\n0x81378830\t0x2432\n0x81378831\t0x2433\n0x81378832\t0x2434\n0x81378833\t0x2435\n0x81378834\t0x2436\n0x81378835\t0x2437\n0x81378836\t0x2438\n0x81378837\t0x2439\n0x81378838\t0x243A\n0x81378839\t0x243B\n0x81378930\t0x243C\n0x81378931\t0x243D\n0x81378932\t0x243E\n0x81378933\t0x243F\n0x81378934\t0x2440\n0x81378935\t0x2441\n0x81378936\t0x2442\n0x81378937\t0x2443\n0x81378938\t0x2444\n0x81378939\t0x2445\n0x81378A30\t0x2446\n0x81378A31\t0x2447\n0x81378A32\t0x2448\n0x81378A33\t0x2449\n0x81378A34\t0x244A\n0x81378A35\t0x244B\n0x81378A36\t0x244C\n0x81378A37\t0x244D\n0x81378A38\t0x244E\n0x81378A39\t0x244F\n0x81378B30\t0x2450\n0x81378B31\t0x2451\n0x81378B32\t0x2452\n0x81378B33\t0x2453\n0x81378B34\t0x2454\n0x81378B35\t0x2455\n0x81378B36\t0x2456\n0x81378B37\t0x2457\n0x81378B38\t0x2458\n0x81378B39\t0x2459\n0x81378C30\t0x245A\n0x81378C31\t0x245B\n0x81378C32\t0x245C\n0x81378C33\t0x245D\n0x81378C34\t0x245E\n0x81378C35\t0x245F\n0x81378C36\t0x246A\n0x81378C37\t0x246B\n0x81378C38\t0x246C\n0x81378C39\t0x246D\n0x81378D30\t0x246E\n0x81378D31\t0x246F\n0x81378D32\t0x2470\n0x81378D33\t0x2471\n0x81378D34\t0x2472\n0x81378D35\t0x2473\n0x81378D36\t0x249C\n0x81378D37\t0x249D\n0x81378D38\t0x249E\n0x81378D39\t0x249F\n0x81378E30\t0x24A0\n0x81378E31\t0x24A1\n0x81378E32\t0x24A2\n0x81378E33\t0x24A3\n0x81378E34\t0x24A4\n0x81378E35\t0x24A5\n0x81378E36\t0x24A6\n0x81378E37\t0x24A7\n0x81378E38\t0x24A8\n0x81378E39\t0x24A9\n0x81378F30\t0x24AA\n0x81378F31\t0x24AB\n0x81378F32\t0x24AC\n0x81378F33\t0x24AD\n0x81378F34\t0x24AE\n0x81378F35\t0x24AF\n0x81378F36\t0x24B0\n0x81378F37\t0x24B1\n0x81378F38\t0x24B2\n0x81378F39\t0x24B3\n0x81379030\t0x24B4\n0x81379031\t0x24B5\n0x81379032\t0x24B6\n0x81379033\t0x24B7\n0x81379034\t0x24B8\n0x81379035\t0x24B9\n0x81379036\t0x24BA\n0x81379037\t0x24BB\n0x81379038\t0x24BC\n0x81379039\t0x24BD\n0x81379130\t0x24BE\n0x81379131\t0x24BF\n0x81379132\t0x24C0\n0x81379133\t0x24C1\n0x81379134\t0x24C2\n0x81379135\t0x24C3\n0x81379136\t0x24C4\n0x81379137\t0x24C5\n0x81379138\t0x24C6\n0x81379139\t0x24C7\n0x81379230\t0x24C8\n0x81379231\t0x24C9\n0x81379232\t0x24CA\n0x81379233\t0x24CB\n0x81379234\t0x24CC\n0x81379235\t0x24CD\n0x81379236\t0x24CE\n0x81379237\t0x24CF\n0x81379238\t0x24D0\n0x81379239\t0x24D1\n0x81379330\t0x24D2\n0x81379331\t0x24D3\n0x81379332\t0x24D4\n0x81379333\t0x24D5\n0x81379334\t0x24D6\n0x81379335\t0x24D7\n0x81379336\t0x24D8\n0x81379337\t0x24D9\n0x81379338\t0x24DA\n0x81379339\t0x24DB\n0x81379430\t0x24DC\n0x81379431\t0x24DD\n0x81379432\t0x24DE\n0x81379433\t0x24DF\n0x81379434\t0x24E0\n0x81379435\t0x24E1\n0x81379436\t0x24E2\n0x81379437\t0x24E3\n0x81379438\t0x24E4\n0x81379439\t0x24E5\n0x81379530\t0x24E6\n0x81379531\t0x24E7\n0x81379532\t0x24E8\n0x81379533\t0x24E9\n0x81379534\t0x24EA\n0x81379535\t0x24EB\n0x81379536\t0x24EC\n0x81379537\t0x24ED\n0x81379538\t0x24EE\n0x81379539\t0x24EF\n0x81379630\t0x24F0\n0x81379631\t0x24F1\n0x81379632\t0x24F2\n0x81379633\t0x24F3\n0x81379634\t0x24F4\n0x81379635\t0x24F5\n0x81379636\t0x24F6\n0x81379637\t0x24F7\n0x81379638\t0x24F8\n0x81379639\t0x24F9\n0x81379730\t0x24FA\n0x81379731\t0x24FB\n0x81379732\t0x24FC\n0x81379733\t0x24FD\n0x81379734\t0x24FE\n0x81379735\t0x24FF\n0x81379736\t0x254C\n0x81379737\t0x254D\n0x81379738\t0x254E\n0x81379739\t0x254F\n0x81379830\t0x2574\n0x81379831\t0x2575\n0x81379832\t0x2576\n0x81379833\t0x2577\n0x81379834\t0x2578\n0x81379835\t0x2579\n0x81379836\t0x257A\n0x81379837\t0x257B\n0x81379838\t0x257C\n0x81379839\t0x257D\n0x81379930\t0x257E\n0x81379931\t0x257F\n0x81379932\t0x2580\n0x81379933\t0x2590\n0x81379934\t0x2591\n0x81379935\t0x2592\n0x81379936\t0x2596\n0x81379937\t0x2597\n0x81379938\t0x2598\n0x81379939\t0x2599\n0x81379A30\t0x259A\n0x81379A31\t0x259B\n0x81379A32\t0x259C\n0x81379A33\t0x259D\n0x81379A34\t0x259E\n0x81379A35\t0x259F\n0x81379A36\t0x25A2\n0x81379A37\t0x25A3\n0x81379A38\t0x25A4\n0x81379A39\t0x25A5\n0x81379B30\t0x25A6\n0x81379B31\t0x25A7\n0x81379B32\t0x25A8\n0x81379B33\t0x25A9\n0x81379B34\t0x25AA\n0x81379B35\t0x25AB\n0x81379B36\t0x25AC\n0x81379B37\t0x25AD\n0x81379B38\t0x25AE\n0x81379B39\t0x25AF\n0x81379C30\t0x25B0\n0x81379C31\t0x25B1\n0x81379C32\t0x25B4\n0x81379C33\t0x25B5\n0x81379C34\t0x25B6\n0x81379C35\t0x25B7\n0x81379C36\t0x25B8\n0x81379C37\t0x25B9\n0x81379C38\t0x25BA\n0x81379C39\t0x25BB\n0x81379D30\t0x25BE\n0x81379D31\t0x25BF\n0x81379D32\t0x25C0\n0x81379D33\t0x25C1\n0x81379D34\t0x25C2\n0x81379D35\t0x25C3\n0x81379D36\t0x25C4\n0x81379D37\t0x25C5\n0x81379D38\t0x25C8\n0x81379D39\t0x25C9\n0x81379E30\t0x25CA\n0x81379E31\t0x25CC\n0x81379E32\t0x25CD\n0x81379E33\t0x25D0\n0x81379E34\t0x25D1\n0x81379E35\t0x25D2\n0x81379E36\t0x25D3\n0x81379E37\t0x25D4\n0x81379E38\t0x25D5\n0x81379E39\t0x25D6\n0x81379F30\t0x25D7\n0x81379F31\t0x25D8\n0x81379F32\t0x25D9\n0x81379F33\t0x25DA\n0x81379F34\t0x25DB\n0x81379F35\t0x25DC\n0x81379F36\t0x25DD\n0x81379F37\t0x25DE\n0x81379F38\t0x25DF\n0x81379F39\t0x25E0\n0x8137A030\t0x25E1\n0x8137A031\t0x25E6\n0x8137A032\t0x25E7\n0x8137A033\t0x25E8\n0x8137A034\t0x25E9\n0x8137A035\t0x25EA\n0x8137A036\t0x25EB\n0x8137A037\t0x25EC\n0x8137A038\t0x25ED\n0x8137A039\t0x25EE\n0x8137A130\t0x25EF\n0x8137A131\t0x25F0\n0x8137A132\t0x25F1\n0x8137A133\t0x25F2\n0x8137A134\t0x25F3\n0x8137A135\t0x25F4\n0x8137A136\t0x25F5\n0x8137A137\t0x25F6\n0x8137A138\t0x25F7\n0x8137A139\t0x25F8\n0x8137A230\t0x25F9\n0x8137A231\t0x25FA\n0x8137A232\t0x25FB\n0x8137A233\t0x25FC\n0x8137A234\t0x25FD\n0x8137A235\t0x25FE\n0x8137A236\t0x25FF\n0x8137A237\t0x2600\n0x8137A238\t0x2601\n0x8137A239\t0x2602\n0x8137A330\t0x2603\n0x8137A331\t0x2604\n0x8137A332\t0x2607\n0x8137A333\t0x2608\n0x8137A334\t0x260A\n0x8137A335\t0x260B\n0x8137A336\t0x260C\n0x8137A337\t0x260D\n0x8137A338\t0x260E\n0x8137A339\t0x260F\n0x8137A430\t0x2610\n0x8137A431\t0x2611\n0x8137A432\t0x2612\n0x8137A433\t0x2613\n0x8137A434\t0x2614\n0x8137A435\t0x2615\n0x8137A436\t0x2616\n0x8137A437\t0x2617\n0x8137A438\t0x2618\n0x8137A439\t0x2619\n0x8137A530\t0x261A\n0x8137A531\t0x261B\n0x8137A532\t0x261C\n0x8137A533\t0x261D\n0x8137A534\t0x261E\n0x8137A535\t0x261F\n0x8137A536\t0x2620\n0x8137A537\t0x2621\n0x8137A538\t0x2622\n0x8137A539\t0x2623\n0x8137A630\t0x2624\n0x8137A631\t0x2625\n0x8137A632\t0x2626\n0x8137A633\t0x2627\n0x8137A634\t0x2628\n0x8137A635\t0x2629\n0x8137A636\t0x262A\n0x8137A637\t0x262B\n0x8137A638\t0x262C\n0x8137A639\t0x262D\n0x8137A730\t0x262E\n0x8137A731\t0x262F\n0x8137A732\t0x2630\n0x8137A733\t0x2631\n0x8137A734\t0x2632\n0x8137A735\t0x2633\n0x8137A736\t0x2634\n0x8137A737\t0x2635\n0x8137A738\t0x2636\n0x8137A739\t0x2637\n0x8137A830\t0x2638\n0x8137A831\t0x2639\n0x8137A832\t0x263A\n0x8137A833\t0x263B\n0x8137A834\t0x263C\n0x8137A835\t0x263D\n0x8137A836\t0x263E\n0x8137A837\t0x263F\n0x8137A838\t0x2641\n0x8137A839\t0x2643\n0x8137A930\t0x2644\n0x8137A931\t0x2645\n0x8137A932\t0x2646\n0x8137A933\t0x2647\n0x8137A934\t0x2648\n0x8137A935\t0x2649\n0x8137A936\t0x264A\n0x8137A937\t0x264B\n0x8137A938\t0x264C\n0x8137A939\t0x264D\n0x8137AA30\t0x264E\n0x8137AA31\t0x264F\n0x8137AA32\t0x2650\n0x8137AA33\t0x2651\n0x8137AA34\t0x2652\n0x8137AA35\t0x2653\n0x8137AA36\t0x2654\n0x8137AA37\t0x2655\n0x8137AA38\t0x2656\n0x8137AA39\t0x2657\n0x8137AB30\t0x2658\n0x8137AB31\t0x2659\n0x8137AB32\t0x265A\n0x8137AB33\t0x265B\n0x8137AB34\t0x265C\n0x8137AB35\t0x265D\n0x8137AB36\t0x265E\n0x8137AB37\t0x265F\n0x8137AB38\t0x2660\n0x8137AB39\t0x2661\n0x8137AC30\t0x2662\n0x8137AC31\t0x2663\n0x8137AC32\t0x2664\n0x8137AC33\t0x2665\n0x8137AC34\t0x2666\n0x8137AC35\t0x2667\n0x8137AC36\t0x2668\n0x8137AC37\t0x2669\n0x8137AC38\t0x266A\n0x8137AC39\t0x266B\n0x8137AD30\t0x266C\n0x8137AD31\t0x266D\n0x8137AD32\t0x266E\n0x8137AD33\t0x266F\n0x8137AD34\t0x2670\n0x8137AD35\t0x2671\n0x8137AD36\t0x2672\n0x8137AD37\t0x2673\n0x8137AD38\t0x2674\n0x8137AD39\t0x2675\n0x8137AE30\t0x2676\n0x8137AE31\t0x2677\n0x8137AE32\t0x2678\n0x8137AE33\t0x2679\n0x8137AE34\t0x267A\n0x8137AE35\t0x267B\n0x8137AE36\t0x267C\n0x8137AE37\t0x267D\n0x8137AE38\t0x267E\n0x8137AE39\t0x267F\n0x8137AF30\t0x2680\n0x8137AF31\t0x2681\n0x8137AF32\t0x2682\n0x8137AF33\t0x2683\n0x8137AF34\t0x2684\n0x8137AF35\t0x2685\n0x8137AF36\t0x2686\n0x8137AF37\t0x2687\n0x8137AF38\t0x2688\n0x8137AF39\t0x2689\n0x8137B030\t0x268A\n0x8137B031\t0x268B\n0x8137B032\t0x268C\n0x8137B033\t0x268D\n0x8137B034\t0x268E\n0x8137B035\t0x268F\n0x8137B036\t0x2690\n0x8137B037\t0x2691\n0x8137B038\t0x2692\n0x8137B039\t0x2693\n0x8137B130\t0x2694\n0x8137B131\t0x2695\n0x8137B132\t0x2696\n0x8137B133\t0x2697\n0x8137B134\t0x2698\n0x8137B135\t0x2699\n0x8137B136\t0x269A\n0x8137B137\t0x269B\n0x8137B138\t0x269C\n0x8137B139\t0x269D\n0x8137B230\t0x269E\n0x8137B231\t0x269F\n0x8137B232\t0x26A0\n0x8137B233\t0x26A1\n0x8137B234\t0x26A2\n0x8137B235\t0x26A3\n0x8137B236\t0x26A4\n0x8137B237\t0x26A5\n0x8137B238\t0x26A6\n0x8137B239\t0x26A7\n0x8137B330\t0x26A8\n0x8137B331\t0x26A9\n0x8137B332\t0x26AA\n0x8137B333\t0x26AB\n0x8137B334\t0x26AC\n0x8137B335\t0x26AD\n0x8137B336\t0x26AE\n0x8137B337\t0x26AF\n0x8137B338\t0x26B0\n0x8137B339\t0x26B1\n0x8137B430\t0x26B2\n0x8137B431\t0x26B3\n0x8137B432\t0x26B4\n0x8137B433\t0x26B5\n0x8137B434\t0x26B6\n0x8137B435\t0x26B7\n0x8137B436\t0x26B8\n0x8137B437\t0x26B9\n0x8137B438\t0x26BA\n0x8137B439\t0x26BB\n0x8137B530\t0x26BC\n0x8137B531\t0x26BD\n0x8137B532\t0x26BE\n0x8137B533\t0x26BF\n0x8137B534\t0x26C0\n0x8137B535\t0x26C1\n0x8137B536\t0x26C2\n0x8137B537\t0x26C3\n0x8137B538\t0x26C4\n0x8137B539\t0x26C5\n0x8137B630\t0x26C6\n0x8137B631\t0x26C7\n0x8137B632\t0x26C8\n0x8137B633\t0x26C9\n0x8137B634\t0x26CA\n0x8137B635\t0x26CB\n0x8137B636\t0x26CC\n0x8137B637\t0x26CD\n0x8137B638\t0x26CE\n0x8137B639\t0x26CF\n0x8137B730\t0x26D0\n0x8137B731\t0x26D1\n0x8137B732\t0x26D2\n0x8137B733\t0x26D3\n0x8137B734\t0x26D4\n0x8137B735\t0x26D5\n0x8137B736\t0x26D6\n0x8137B737\t0x26D7\n0x8137B738\t0x26D8\n0x8137B739\t0x26D9\n0x8137B830\t0x26DA\n0x8137B831\t0x26DB\n0x8137B832\t0x26DC\n0x8137B833\t0x26DD\n0x8137B834\t0x26DE\n0x8137B835\t0x26DF\n0x8137B836\t0x26E0\n0x8137B837\t0x26E1\n0x8137B838\t0x26E2\n0x8137B839\t0x26E3\n0x8137B930\t0x26E4\n0x8137B931\t0x26E5\n0x8137B932\t0x26E6\n0x8137B933\t0x26E7\n0x8137B934\t0x26E8\n0x8137B935\t0x26E9\n0x8137B936\t0x26EA\n0x8137B937\t0x26EB\n0x8137B938\t0x26EC\n0x8137B939\t0x26ED\n0x8137BA30\t0x26EE\n0x8137BA31\t0x26EF\n0x8137BA32\t0x26F0\n0x8137BA33\t0x26F1\n0x8137BA34\t0x26F2\n0x8137BA35\t0x26F3\n0x8137BA36\t0x26F4\n0x8137BA37\t0x26F5\n0x8137BA38\t0x26F6\n0x8137BA39\t0x26F7\n0x8137BB30\t0x26F8\n0x8137BB31\t0x26F9\n0x8137BB32\t0x26FA\n0x8137BB33\t0x26FB\n0x8137BB34\t0x26FC\n0x8137BB35\t0x26FD\n0x8137BB36\t0x26FE\n0x8137BB37\t0x26FF\n0x8137BB38\t0x2700\n0x8137BB39\t0x2701\n0x8137BC30\t0x2702\n0x8137BC31\t0x2703\n0x8137BC32\t0x2704\n0x8137BC33\t0x2705\n0x8137BC34\t0x2706\n0x8137BC35\t0x2707\n0x8137BC36\t0x2708\n0x8137BC37\t0x2709\n0x8137BC38\t0x270A\n0x8137BC39\t0x270B\n0x8137BD30\t0x270C\n0x8137BD31\t0x270D\n0x8137BD32\t0x270E\n0x8137BD33\t0x270F\n0x8137BD34\t0x2710\n0x8137BD35\t0x2711\n0x8137BD36\t0x2712\n0x8137BD37\t0x2713\n0x8137BD38\t0x2714\n0x8137BD39\t0x2715\n0x8137BE30\t0x2716\n0x8137BE31\t0x2717\n0x8137BE32\t0x2718\n0x8137BE33\t0x2719\n0x8137BE34\t0x271A\n0x8137BE35\t0x271B\n0x8137BE36\t0x271C\n0x8137BE37\t0x271D\n0x8137BE38\t0x271E\n0x8137BE39\t0x271F\n0x8137BF30\t0x2720\n0x8137BF31\t0x2721\n0x8137BF32\t0x2722\n0x8137BF33\t0x2723\n0x8137BF34\t0x2724\n0x8137BF35\t0x2725\n0x8137BF36\t0x2726\n0x8137BF37\t0x2727\n0x8137BF38\t0x2728\n0x8137BF39\t0x2729\n0x8137C030\t0x272A\n0x8137C031\t0x272B\n0x8137C032\t0x272C\n0x8137C033\t0x272D\n0x8137C034\t0x272E\n0x8137C035\t0x272F\n0x8137C036\t0x2730\n0x8137C037\t0x2731\n0x8137C038\t0x2732\n0x8137C039\t0x2733\n0x8137C130\t0x2734\n0x8137C131\t0x2735\n0x8137C132\t0x2736\n0x8137C133\t0x2737\n0x8137C134\t0x2738\n0x8137C135\t0x2739\n0x8137C136\t0x273A\n0x8137C137\t0x273B\n0x8137C138\t0x273C\n0x8137C139\t0x273D\n0x8137C230\t0x273E\n0x8137C231\t0x273F\n0x8137C232\t0x2740\n0x8137C233\t0x2741\n0x8137C234\t0x2742\n0x8137C235\t0x2743\n0x8137C236\t0x2744\n0x8137C237\t0x2745\n0x8137C238\t0x2746\n0x8137C239\t0x2747\n0x8137C330\t0x2748\n0x8137C331\t0x2749\n0x8137C332\t0x274A\n0x8137C333\t0x274B\n0x8137C334\t0x274C\n0x8137C335\t0x274D\n0x8137C336\t0x274E\n0x8137C337\t0x274F\n0x8137C338\t0x2750\n0x8137C339\t0x2751\n0x8137C430\t0x2752\n0x8137C431\t0x2753\n0x8137C432\t0x2754\n0x8137C433\t0x2755\n0x8137C434\t0x2756\n0x8137C435\t0x2757\n0x8137C436\t0x2758\n0x8137C437\t0x2759\n0x8137C438\t0x275A\n0x8137C439\t0x275B\n0x8137C530\t0x275C\n0x8137C531\t0x275D\n0x8137C532\t0x275E\n0x8137C533\t0x275F\n0x8137C534\t0x2760\n0x8137C535\t0x2761\n0x8137C536\t0x2762\n0x8137C537\t0x2763\n0x8137C538\t0x2764\n0x8137C539\t0x2765\n0x8137C630\t0x2766\n0x8137C631\t0x2767\n0x8137C632\t0x2768\n0x8137C633\t0x2769\n0x8137C634\t0x276A\n0x8137C635\t0x276B\n0x8137C636\t0x276C\n0x8137C637\t0x276D\n0x8137C638\t0x276E\n0x8137C639\t0x276F\n0x8137C730\t0x2770\n0x8137C731\t0x2771\n0x8137C732\t0x2772\n0x8137C733\t0x2773\n0x8137C734\t0x2774\n0x8137C735\t0x2775\n0x8137C736\t0x2776\n0x8137C737\t0x2777\n0x8137C738\t0x2778\n0x8137C739\t0x2779\n0x8137C830\t0x277A\n0x8137C831\t0x277B\n0x8137C832\t0x277C\n0x8137C833\t0x277D\n0x8137C834\t0x277E\n0x8137C835\t0x277F\n0x8137C836\t0x2780\n0x8137C837\t0x2781\n0x8137C838\t0x2782\n0x8137C839\t0x2783\n0x8137C930\t0x2784\n0x8137C931\t0x2785\n0x8137C932\t0x2786\n0x8137C933\t0x2787\n0x8137C934\t0x2788\n0x8137C935\t0x2789\n0x8137C936\t0x278A\n0x8137C937\t0x278B\n0x8137C938\t0x278C\n0x8137C939\t0x278D\n0x8137CA30\t0x278E\n0x8137CA31\t0x278F\n0x8137CA32\t0x2790\n0x8137CA33\t0x2791\n0x8137CA34\t0x2792\n0x8137CA35\t0x2793\n0x8137CA36\t0x2794\n0x8137CA37\t0x2795\n0x8137CA38\t0x2796\n0x8137CA39\t0x2797\n0x8137CB30\t0x2798\n0x8137CB31\t0x2799\n0x8137CB32\t0x279A\n0x8137CB33\t0x279B\n0x8137CB34\t0x279C\n0x8137CB35\t0x279D\n0x8137CB36\t0x279E\n0x8137CB37\t0x279F\n0x8137CB38\t0x27A0\n0x8137CB39\t0x27A1\n0x8137CC30\t0x27A2\n0x8137CC31\t0x27A3\n0x8137CC32\t0x27A4\n0x8137CC33\t0x27A5\n0x8137CC34\t0x27A6\n0x8137CC35\t0x27A7\n0x8137CC36\t0x27A8\n0x8137CC37\t0x27A9\n0x8137CC38\t0x27AA\n0x8137CC39\t0x27AB\n0x8137CD30\t0x27AC\n0x8137CD31\t0x27AD\n0x8137CD32\t0x27AE\n0x8137CD33\t0x27AF\n0x8137CD34\t0x27B0\n0x8137CD35\t0x27B1\n0x8137CD36\t0x27B2\n0x8137CD37\t0x27B3\n0x8137CD38\t0x27B4\n0x8137CD39\t0x27B5\n0x8137CE30\t0x27B6\n0x8137CE31\t0x27B7\n0x8137CE32\t0x27B8\n0x8137CE33\t0x27B9\n0x8137CE34\t0x27BA\n0x8137CE35\t0x27BB\n0x8137CE36\t0x27BC\n0x8137CE37\t0x27BD\n0x8137CE38\t0x27BE\n0x8137CE39\t0x27BF\n0x8137CF30\t0x27C0\n0x8137CF31\t0x27C1\n0x8137CF32\t0x27C2\n0x8137CF33\t0x27C3\n0x8137CF34\t0x27C4\n0x8137CF35\t0x27C5\n0x8137CF36\t0x27C6\n0x8137CF37\t0x27C7\n0x8137CF38\t0x27C8\n0x8137CF39\t0x27C9\n0x8137D030\t0x27CA\n0x8137D031\t0x27CB\n0x8137D032\t0x27CC\n0x8137D033\t0x27CD\n0x8137D034\t0x27CE\n0x8137D035\t0x27CF\n0x8137D036\t0x27D0\n0x8137D037\t0x27D1\n0x8137D038\t0x27D2\n0x8137D039\t0x27D3\n0x8137D130\t0x27D4\n0x8137D131\t0x27D5\n0x8137D132\t0x27D6\n0x8137D133\t0x27D7\n0x8137D134\t0x27D8\n0x8137D135\t0x27D9\n0x8137D136\t0x27DA\n0x8137D137\t0x27DB\n0x8137D138\t0x27DC\n0x8137D139\t0x27DD\n0x8137D230\t0x27DE\n0x8137D231\t0x27DF\n0x8137D232\t0x27E0\n0x8137D233\t0x27E1\n0x8137D234\t0x27E2\n0x8137D235\t0x27E3\n0x8137D236\t0x27E4\n0x8137D237\t0x27E5\n0x8137D238\t0x27E6\n0x8137D239\t0x27E7\n0x8137D330\t0x27E8\n0x8137D331\t0x27E9\n0x8137D332\t0x27EA\n0x8137D333\t0x27EB\n0x8137D334\t0x27EC\n0x8137D335\t0x27ED\n0x8137D336\t0x27EE\n0x8137D337\t0x27EF\n0x8137D338\t0x27F0\n0x8137D339\t0x27F1\n0x8137D430\t0x27F2\n0x8137D431\t0x27F3\n0x8137D432\t0x27F4\n0x8137D433\t0x27F5\n0x8137D434\t0x27F6\n0x8137D435\t0x27F7\n0x8137D436\t0x27F8\n0x8137D437\t0x27F9\n0x8137D438\t0x27FA\n0x8137D439\t0x27FB\n0x8137D530\t0x27FC\n0x8137D531\t0x27FD\n0x8137D532\t0x27FE\n0x8137D533\t0x27FF\n0x8137D534\t0x2800\n0x8137D535\t0x2801\n0x8137D536\t0x2802\n0x8137D537\t0x2803\n0x8137D538\t0x2804\n0x8137D539\t0x2805\n0x8137D630\t0x2806\n0x8137D631\t0x2807\n0x8137D632\t0x2808\n0x8137D633\t0x2809\n0x8137D634\t0x280A\n0x8137D635\t0x280B\n0x8137D636\t0x280C\n0x8137D637\t0x280D\n0x8137D638\t0x280E\n0x8137D639\t0x280F\n0x8137D730\t0x2810\n0x8137D731\t0x2811\n0x8137D732\t0x2812\n0x8137D733\t0x2813\n0x8137D734\t0x2814\n0x8137D735\t0x2815\n0x8137D736\t0x2816\n0x8137D737\t0x2817\n0x8137D738\t0x2818\n0x8137D739\t0x2819\n0x8137D830\t0x281A\n0x8137D831\t0x281B\n0x8137D832\t0x281C\n0x8137D833\t0x281D\n0x8137D834\t0x281E\n0x8137D835\t0x281F\n0x8137D836\t0x2820\n0x8137D837\t0x2821\n0x8137D838\t0x2822\n0x8137D839\t0x2823\n0x8137D930\t0x2824\n0x8137D931\t0x2825\n0x8137D932\t0x2826\n0x8137D933\t0x2827\n0x8137D934\t0x2828\n0x8137D935\t0x2829\n0x8137D936\t0x282A\n0x8137D937\t0x282B\n0x8137D938\t0x282C\n0x8137D939\t0x282D\n0x8137DA30\t0x282E\n0x8137DA31\t0x282F\n0x8137DA32\t0x2830\n0x8137DA33\t0x2831\n0x8137DA34\t0x2832\n0x8137DA35\t0x2833\n0x8137DA36\t0x2834\n0x8137DA37\t0x2835\n0x8137DA38\t0x2836\n0x8137DA39\t0x2837\n0x8137DB30\t0x2838\n0x8137DB31\t0x2839\n0x8137DB32\t0x283A\n0x8137DB33\t0x283B\n0x8137DB34\t0x283C\n0x8137DB35\t0x283D\n0x8137DB36\t0x283E\n0x8137DB37\t0x283F\n0x8137DB38\t0x2840\n0x8137DB39\t0x2841\n0x8137DC30\t0x2842\n0x8137DC31\t0x2843\n0x8137DC32\t0x2844\n0x8137DC33\t0x2845\n0x8137DC34\t0x2846\n0x8137DC35\t0x2847\n0x8137DC36\t0x2848\n0x8137DC37\t0x2849\n0x8137DC38\t0x284A\n0x8137DC39\t0x284B\n0x8137DD30\t0x284C\n0x8137DD31\t0x284D\n0x8137DD32\t0x284E\n0x8137DD33\t0x284F\n0x8137DD34\t0x2850\n0x8137DD35\t0x2851\n0x8137DD36\t0x2852\n0x8137DD37\t0x2853\n0x8137DD38\t0x2854\n0x8137DD39\t0x2855\n0x8137DE30\t0x2856\n0x8137DE31\t0x2857\n0x8137DE32\t0x2858\n0x8137DE33\t0x2859\n0x8137DE34\t0x285A\n0x8137DE35\t0x285B\n0x8137DE36\t0x285C\n0x8137DE37\t0x285D\n0x8137DE38\t0x285E\n0x8137DE39\t0x285F\n0x8137DF30\t0x2860\n0x8137DF31\t0x2861\n0x8137DF32\t0x2862\n0x8137DF33\t0x2863\n0x8137DF34\t0x2864\n0x8137DF35\t0x2865\n0x8137DF36\t0x2866\n0x8137DF37\t0x2867\n0x8137DF38\t0x2868\n0x8137DF39\t0x2869\n0x8137E030\t0x286A\n0x8137E031\t0x286B\n0x8137E032\t0x286C\n0x8137E033\t0x286D\n0x8137E034\t0x286E\n0x8137E035\t0x286F\n0x8137E036\t0x2870\n0x8137E037\t0x2871\n0x8137E038\t0x2872\n0x8137E039\t0x2873\n0x8137E130\t0x2874\n0x8137E131\t0x2875\n0x8137E132\t0x2876\n0x8137E133\t0x2877\n0x8137E134\t0x2878\n0x8137E135\t0x2879\n0x8137E136\t0x287A\n0x8137E137\t0x287B\n0x8137E138\t0x287C\n0x8137E139\t0x287D\n0x8137E230\t0x287E\n0x8137E231\t0x287F\n0x8137E232\t0x2880\n0x8137E233\t0x2881\n0x8137E234\t0x2882\n0x8137E235\t0x2883\n0x8137E236\t0x2884\n0x8137E237\t0x2885\n0x8137E238\t0x2886\n0x8137E239\t0x2887\n0x8137E330\t0x2888\n0x8137E331\t0x2889\n0x8137E332\t0x288A\n0x8137E333\t0x288B\n0x8137E334\t0x288C\n0x8137E335\t0x288D\n0x8137E336\t0x288E\n0x8137E337\t0x288F\n0x8137E338\t0x2890\n0x8137E339\t0x2891\n0x8137E430\t0x2892\n0x8137E431\t0x2893\n0x8137E432\t0x2894\n0x8137E433\t0x2895\n0x8137E434\t0x2896\n0x8137E435\t0x2897\n0x8137E436\t0x2898\n0x8137E437\t0x2899\n0x8137E438\t0x289A\n0x8137E439\t0x289B\n0x8137E530\t0x289C\n0x8137E531\t0x289D\n0x8137E532\t0x289E\n0x8137E533\t0x289F\n0x8137E534\t0x28A0\n0x8137E535\t0x28A1\n0x8137E536\t0x28A2\n0x8137E537\t0x28A3\n0x8137E538\t0x28A4\n0x8137E539\t0x28A5\n0x8137E630\t0x28A6\n0x8137E631\t0x28A7\n0x8137E632\t0x28A8\n0x8137E633\t0x28A9\n0x8137E634\t0x28AA\n0x8137E635\t0x28AB\n0x8137E636\t0x28AC\n0x8137E637\t0x28AD\n0x8137E638\t0x28AE\n0x8137E639\t0x28AF\n0x8137E730\t0x28B0\n0x8137E731\t0x28B1\n0x8137E732\t0x28B2\n0x8137E733\t0x28B3\n0x8137E734\t0x28B4\n0x8137E735\t0x28B5\n0x8137E736\t0x28B6\n0x8137E737\t0x28B7\n0x8137E738\t0x28B8\n0x8137E739\t0x28B9\n0x8137E830\t0x28BA\n0x8137E831\t0x28BB\n0x8137E832\t0x28BC\n0x8137E833\t0x28BD\n0x8137E834\t0x28BE\n0x8137E835\t0x28BF\n0x8137E836\t0x28C0\n0x8137E837\t0x28C1\n0x8137E838\t0x28C2\n0x8137E839\t0x28C3\n0x8137E930\t0x28C4\n0x8137E931\t0x28C5\n0x8137E932\t0x28C6\n0x8137E933\t0x28C7\n0x8137E934\t0x28C8\n0x8137E935\t0x28C9\n0x8137E936\t0x28CA\n0x8137E937\t0x28CB\n0x8137E938\t0x28CC\n0x8137E939\t0x28CD\n0x8137EA30\t0x28CE\n0x8137EA31\t0x28CF\n0x8137EA32\t0x28D0\n0x8137EA33\t0x28D1\n0x8137EA34\t0x28D2\n0x8137EA35\t0x28D3\n0x8137EA36\t0x28D4\n0x8137EA37\t0x28D5\n0x8137EA38\t0x28D6\n0x8137EA39\t0x28D7\n0x8137EB30\t0x28D8\n0x8137EB31\t0x28D9\n0x8137EB32\t0x28DA\n0x8137EB33\t0x28DB\n0x8137EB34\t0x28DC\n0x8137EB35\t0x28DD\n0x8137EB36\t0x28DE\n0x8137EB37\t0x28DF\n0x8137EB38\t0x28E0\n0x8137EB39\t0x28E1\n0x8137EC30\t0x28E2\n0x8137EC31\t0x28E3\n0x8137EC32\t0x28E4\n0x8137EC33\t0x28E5\n0x8137EC34\t0x28E6\n0x8137EC35\t0x28E7\n0x8137EC36\t0x28E8\n0x8137EC37\t0x28E9\n0x8137EC38\t0x28EA\n0x8137EC39\t0x28EB\n0x8137ED30\t0x28EC\n0x8137ED31\t0x28ED\n0x8137ED32\t0x28EE\n0x8137ED33\t0x28EF\n0x8137ED34\t0x28F0\n0x8137ED35\t0x28F1\n0x8137ED36\t0x28F2\n0x8137ED37\t0x28F3\n0x8137ED38\t0x28F4\n0x8137ED39\t0x28F5\n0x8137EE30\t0x28F6\n0x8137EE31\t0x28F7\n0x8137EE32\t0x28F8\n0x8137EE33\t0x28F9\n0x8137EE34\t0x28FA\n0x8137EE35\t0x28FB\n0x8137EE36\t0x28FC\n0x8137EE37\t0x28FD\n0x8137EE38\t0x28FE\n0x8137EE39\t0x28FF\n0x8137EF30\t0x2900\n0x8137EF31\t0x2901\n0x8137EF32\t0x2902\n0x8137EF33\t0x2903\n0x8137EF34\t0x2904\n0x8137EF35\t0x2905\n0x8137EF36\t0x2906\n0x8137EF37\t0x2907\n0x8137EF38\t0x2908\n0x8137EF39\t0x2909\n0x8137F030\t0x290A\n0x8137F031\t0x290B\n0x8137F032\t0x290C\n0x8137F033\t0x290D\n0x8137F034\t0x290E\n0x8137F035\t0x290F\n0x8137F036\t0x2910\n0x8137F037\t0x2911\n0x8137F038\t0x2912\n0x8137F039\t0x2913\n0x8137F130\t0x2914\n0x8137F131\t0x2915\n0x8137F132\t0x2916\n0x8137F133\t0x2917\n0x8137F134\t0x2918\n0x8137F135\t0x2919\n0x8137F136\t0x291A\n0x8137F137\t0x291B\n0x8137F138\t0x291C\n0x8137F139\t0x291D\n0x8137F230\t0x291E\n0x8137F231\t0x291F\n0x8137F232\t0x2920\n0x8137F233\t0x2921\n0x8137F234\t0x2922\n0x8137F235\t0x2923\n0x8137F236\t0x2924\n0x8137F237\t0x2925\n0x8137F238\t0x2926\n0x8137F239\t0x2927\n0x8137F330\t0x2928\n0x8137F331\t0x2929\n0x8137F332\t0x292A\n0x8137F333\t0x292B\n0x8137F334\t0x292C\n0x8137F335\t0x292D\n0x8137F336\t0x292E\n0x8137F337\t0x292F\n0x8137F338\t0x2930\n0x8137F339\t0x2931\n0x8137F430\t0x2932\n0x8137F431\t0x2933\n0x8137F432\t0x2934\n0x8137F433\t0x2935\n0x8137F434\t0x2936\n0x8137F435\t0x2937\n0x8137F436\t0x2938\n0x8137F437\t0x2939\n0x8137F438\t0x293A\n0x8137F439\t0x293B\n0x8137F530\t0x293C\n0x8137F531\t0x293D\n0x8137F532\t0x293E\n0x8137F533\t0x293F\n0x8137F534\t0x2940\n0x8137F535\t0x2941\n0x8137F536\t0x2942\n0x8137F537\t0x2943\n0x8137F538\t0x2944\n0x8137F539\t0x2945\n0x8137F630\t0x2946\n0x8137F631\t0x2947\n0x8137F632\t0x2948\n0x8137F633\t0x2949\n0x8137F634\t0x294A\n0x8137F635\t0x294B\n0x8137F636\t0x294C\n0x8137F637\t0x294D\n0x8137F638\t0x294E\n0x8137F639\t0x294F\n0x8137F730\t0x2950\n0x8137F731\t0x2951\n0x8137F732\t0x2952\n0x8137F733\t0x2953\n0x8137F734\t0x2954\n0x8137F735\t0x2955\n0x8137F736\t0x2956\n0x8137F737\t0x2957\n0x8137F738\t0x2958\n0x8137F739\t0x2959\n0x8137F830\t0x295A\n0x8137F831\t0x295B\n0x8137F832\t0x295C\n0x8137F833\t0x295D\n0x8137F834\t0x295E\n0x8137F835\t0x295F\n0x8137F836\t0x2960\n0x8137F837\t0x2961\n0x8137F838\t0x2962\n0x8137F839\t0x2963\n0x8137F930\t0x2964\n0x8137F931\t0x2965\n0x8137F932\t0x2966\n0x8137F933\t0x2967\n0x8137F934\t0x2968\n0x8137F935\t0x2969\n0x8137F936\t0x296A\n0x8137F937\t0x296B\n0x8137F938\t0x296C\n0x8137F939\t0x296D\n0x8137FA30\t0x296E\n0x8137FA31\t0x296F\n0x8137FA32\t0x2970\n0x8137FA33\t0x2971\n0x8137FA34\t0x2972\n0x8137FA35\t0x2973\n0x8137FA36\t0x2974\n0x8137FA37\t0x2975\n0x8137FA38\t0x2976\n0x8137FA39\t0x2977\n0x8137FB30\t0x2978\n0x8137FB31\t0x2979\n0x8137FB32\t0x297A\n0x8137FB33\t0x297B\n0x8137FB34\t0x297C\n0x8137FB35\t0x297D\n0x8137FB36\t0x297E\n0x8137FB37\t0x297F\n0x8137FB38\t0x2980\n0x8137FB39\t0x2981\n0x8137FC30\t0x2982\n0x8137FC31\t0x2983\n0x8137FC32\t0x2984\n0x8137FC33\t0x2985\n0x8137FC34\t0x2986\n0x8137FC35\t0x2987\n0x8137FC36\t0x2988\n0x8137FC37\t0x2989\n0x8137FC38\t0x298A\n0x8137FC39\t0x298B\n0x8137FD30\t0x298C\n0x8137FD31\t0x298D\n0x8137FD32\t0x298E\n0x8137FD33\t0x298F\n0x8137FD34\t0x2990\n0x8137FD35\t0x2991\n0x8137FD36\t0x2992\n0x8137FD37\t0x2993\n0x8137FD38\t0x2994\n0x8137FD39\t0x2995\n0x8137FE30\t0x2996\n0x8137FE31\t0x2997\n0x8137FE32\t0x2998\n0x8137FE33\t0x2999\n0x8137FE34\t0x299A\n0x8137FE35\t0x299B\n0x8137FE36\t0x299C\n0x8137FE37\t0x299D\n0x8137FE38\t0x299E\n0x8137FE39\t0x299F\n0x81388130\t0x29A0\n0x81388131\t0x29A1\n0x81388132\t0x29A2\n0x81388133\t0x29A3\n0x81388134\t0x29A4\n0x81388135\t0x29A5\n0x81388136\t0x29A6\n0x81388137\t0x29A7\n0x81388138\t0x29A8\n0x81388139\t0x29A9\n0x81388230\t0x29AA\n0x81388231\t0x29AB\n0x81388232\t0x29AC\n0x81388233\t0x29AD\n0x81388234\t0x29AE\n0x81388235\t0x29AF\n0x81388236\t0x29B0\n0x81388237\t0x29B1\n0x81388238\t0x29B2\n0x81388239\t0x29B3\n0x81388330\t0x29B4\n0x81388331\t0x29B5\n0x81388332\t0x29B6\n0x81388333\t0x29B7\n0x81388334\t0x29B8\n0x81388335\t0x29B9\n0x81388336\t0x29BA\n0x81388337\t0x29BB\n0x81388338\t0x29BC\n0x81388339\t0x29BD\n0x81388430\t0x29BE\n0x81388431\t0x29BF\n0x81388432\t0x29C0\n0x81388433\t0x29C1\n0x81388434\t0x29C2\n0x81388435\t0x29C3\n0x81388436\t0x29C4\n0x81388437\t0x29C5\n0x81388438\t0x29C6\n0x81388439\t0x29C7\n0x81388530\t0x29C8\n0x81388531\t0x29C9\n0x81388532\t0x29CA\n0x81388533\t0x29CB\n0x81388534\t0x29CC\n0x81388535\t0x29CD\n0x81388536\t0x29CE\n0x81388537\t0x29CF\n0x81388538\t0x29D0\n0x81388539\t0x29D1\n0x81388630\t0x29D2\n0x81388631\t0x29D3\n0x81388632\t0x29D4\n0x81388633\t0x29D5\n0x81388634\t0x29D6\n0x81388635\t0x29D7\n0x81388636\t0x29D8\n0x81388637\t0x29D9\n0x81388638\t0x29DA\n0x81388639\t0x29DB\n0x81388730\t0x29DC\n0x81388731\t0x29DD\n0x81388732\t0x29DE\n0x81388733\t0x29DF\n0x81388734\t0x29E0\n0x81388735\t0x29E1\n0x81388736\t0x29E2\n0x81388737\t0x29E3\n0x81388738\t0x29E4\n0x81388739\t0x29E5\n0x81388830\t0x29E6\n0x81388831\t0x29E7\n0x81388832\t0x29E8\n0x81388833\t0x29E9\n0x81388834\t0x29EA\n0x81388835\t0x29EB\n0x81388836\t0x29EC\n0x81388837\t0x29ED\n0x81388838\t0x29EE\n0x81388839\t0x29EF\n0x81388930\t0x29F0\n0x81388931\t0x29F1\n0x81388932\t0x29F2\n0x81388933\t0x29F3\n0x81388934\t0x29F4\n0x81388935\t0x29F5\n0x81388936\t0x29F6\n0x81388937\t0x29F7\n0x81388938\t0x29F8\n0x81388939\t0x29F9\n0x81388A30\t0x29FA\n0x81388A31\t0x29FB\n0x81388A32\t0x29FC\n0x81388A33\t0x29FD\n0x81388A34\t0x29FE\n0x81388A35\t0x29FF\n0x81388A36\t0x2A00\n0x81388A37\t0x2A01\n0x81388A38\t0x2A02\n0x81388A39\t0x2A03\n0x81388B30\t0x2A04\n0x81388B31\t0x2A05\n0x81388B32\t0x2A06\n0x81388B33\t0x2A07\n0x81388B34\t0x2A08\n0x81388B35\t0x2A09\n0x81388B36\t0x2A0A\n0x81388B37\t0x2A0B\n0x81388B38\t0x2A0C\n0x81388B39\t0x2A0D\n0x81388C30\t0x2A0E\n0x81388C31\t0x2A0F\n0x81388C32\t0x2A10\n0x81388C33\t0x2A11\n0x81388C34\t0x2A12\n0x81388C35\t0x2A13\n0x81388C36\t0x2A14\n0x81388C37\t0x2A15\n0x81388C38\t0x2A16\n0x81388C39\t0x2A17\n0x81388D30\t0x2A18\n0x81388D31\t0x2A19\n0x81388D32\t0x2A1A\n0x81388D33\t0x2A1B\n0x81388D34\t0x2A1C\n0x81388D35\t0x2A1D\n0x81388D36\t0x2A1E\n0x81388D37\t0x2A1F\n0x81388D38\t0x2A20\n0x81388D39\t0x2A21\n0x81388E30\t0x2A22\n0x81388E31\t0x2A23\n0x81388E32\t0x2A24\n0x81388E33\t0x2A25\n0x81388E34\t0x2A26\n0x81388E35\t0x2A27\n0x81388E36\t0x2A28\n0x81388E37\t0x2A29\n0x81388E38\t0x2A2A\n0x81388E39\t0x2A2B\n0x81388F30\t0x2A2C\n0x81388F31\t0x2A2D\n0x81388F32\t0x2A2E\n0x81388F33\t0x2A2F\n0x81388F34\t0x2A30\n0x81388F35\t0x2A31\n0x81388F36\t0x2A32\n0x81388F37\t0x2A33\n0x81388F38\t0x2A34\n0x81388F39\t0x2A35\n0x81389030\t0x2A36\n0x81389031\t0x2A37\n0x81389032\t0x2A38\n0x81389033\t0x2A39\n0x81389034\t0x2A3A\n0x81389035\t0x2A3B\n0x81389036\t0x2A3C\n0x81389037\t0x2A3D\n0x81389038\t0x2A3E\n0x81389039\t0x2A3F\n0x81389130\t0x2A40\n0x81389131\t0x2A41\n0x81389132\t0x2A42\n0x81389133\t0x2A43\n0x81389134\t0x2A44\n0x81389135\t0x2A45\n0x81389136\t0x2A46\n0x81389137\t0x2A47\n0x81389138\t0x2A48\n0x81389139\t0x2A49\n0x81389230\t0x2A4A\n0x81389231\t0x2A4B\n0x81389232\t0x2A4C\n0x81389233\t0x2A4D\n0x81389234\t0x2A4E\n0x81389235\t0x2A4F\n0x81389236\t0x2A50\n0x81389237\t0x2A51\n0x81389238\t0x2A52\n0x81389239\t0x2A53\n0x81389330\t0x2A54\n0x81389331\t0x2A55\n0x81389332\t0x2A56\n0x81389333\t0x2A57\n0x81389334\t0x2A58\n0x81389335\t0x2A59\n0x81389336\t0x2A5A\n0x81389337\t0x2A5B\n0x81389338\t0x2A5C\n0x81389339\t0x2A5D\n0x81389430\t0x2A5E\n0x81389431\t0x2A5F\n0x81389432\t0x2A60\n0x81389433\t0x2A61\n0x81389434\t0x2A62\n0x81389435\t0x2A63\n0x81389436\t0x2A64\n0x81389437\t0x2A65\n0x81389438\t0x2A66\n0x81389439\t0x2A67\n0x81389530\t0x2A68\n0x81389531\t0x2A69\n0x81389532\t0x2A6A\n0x81389533\t0x2A6B\n0x81389534\t0x2A6C\n0x81389535\t0x2A6D\n0x81389536\t0x2A6E\n0x81389537\t0x2A6F\n0x81389538\t0x2A70\n0x81389539\t0x2A71\n0x81389630\t0x2A72\n0x81389631\t0x2A73\n0x81389632\t0x2A74\n0x81389633\t0x2A75\n0x81389634\t0x2A76\n0x81389635\t0x2A77\n0x81389636\t0x2A78\n0x81389637\t0x2A79\n0x81389638\t0x2A7A\n0x81389639\t0x2A7B\n0x81389730\t0x2A7C\n0x81389731\t0x2A7D\n0x81389732\t0x2A7E\n0x81389733\t0x2A7F\n0x81389734\t0x2A80\n0x81389735\t0x2A81\n0x81389736\t0x2A82\n0x81389737\t0x2A83\n0x81389738\t0x2A84\n0x81389739\t0x2A85\n0x81389830\t0x2A86\n0x81389831\t0x2A87\n0x81389832\t0x2A88\n0x81389833\t0x2A89\n0x81389834\t0x2A8A\n0x81389835\t0x2A8B\n0x81389836\t0x2A8C\n0x81389837\t0x2A8D\n0x81389838\t0x2A8E\n0x81389839\t0x2A8F\n0x81389930\t0x2A90\n0x81389931\t0x2A91\n0x81389932\t0x2A92\n0x81389933\t0x2A93\n0x81389934\t0x2A94\n0x81389935\t0x2A95\n0x81389936\t0x2A96\n0x81389937\t0x2A97\n0x81389938\t0x2A98\n0x81389939\t0x2A99\n0x81389A30\t0x2A9A\n0x81389A31\t0x2A9B\n0x81389A32\t0x2A9C\n0x81389A33\t0x2A9D\n0x81389A34\t0x2A9E\n0x81389A35\t0x2A9F\n0x81389A36\t0x2AA0\n0x81389A37\t0x2AA1\n0x81389A38\t0x2AA2\n0x81389A39\t0x2AA3\n0x81389B30\t0x2AA4\n0x81389B31\t0x2AA5\n0x81389B32\t0x2AA6\n0x81389B33\t0x2AA7\n0x81389B34\t0x2AA8\n0x81389B35\t0x2AA9\n0x81389B36\t0x2AAA\n0x81389B37\t0x2AAB\n0x81389B38\t0x2AAC\n0x81389B39\t0x2AAD\n0x81389C30\t0x2AAE\n0x81389C31\t0x2AAF\n0x81389C32\t0x2AB0\n0x81389C33\t0x2AB1\n0x81389C34\t0x2AB2\n0x81389C35\t0x2AB3\n0x81389C36\t0x2AB4\n0x81389C37\t0x2AB5\n0x81389C38\t0x2AB6\n0x81389C39\t0x2AB7\n0x81389D30\t0x2AB8\n0x81389D31\t0x2AB9\n0x81389D32\t0x2ABA\n0x81389D33\t0x2ABB\n0x81389D34\t0x2ABC\n0x81389D35\t0x2ABD\n0x81389D36\t0x2ABE\n0x81389D37\t0x2ABF\n0x81389D38\t0x2AC0\n0x81389D39\t0x2AC1\n0x81389E30\t0x2AC2\n0x81389E31\t0x2AC3\n0x81389E32\t0x2AC4\n0x81389E33\t0x2AC5\n0x81389E34\t0x2AC6\n0x81389E35\t0x2AC7\n0x81389E36\t0x2AC8\n0x81389E37\t0x2AC9\n0x81389E38\t0x2ACA\n0x81389E39\t0x2ACB\n0x81389F30\t0x2ACC\n0x81389F31\t0x2ACD\n0x81389F32\t0x2ACE\n0x81389F33\t0x2ACF\n0x81389F34\t0x2AD0\n0x81389F35\t0x2AD1\n0x81389F36\t0x2AD2\n0x81389F37\t0x2AD3\n0x81389F38\t0x2AD4\n0x81389F39\t0x2AD5\n0x8138A030\t0x2AD6\n0x8138A031\t0x2AD7\n0x8138A032\t0x2AD8\n0x8138A033\t0x2AD9\n0x8138A034\t0x2ADA\n0x8138A035\t0x2ADB\n0x8138A036\t0x2ADC\n0x8138A037\t0x2ADD\n0x8138A038\t0x2ADE\n0x8138A039\t0x2ADF\n0x8138A130\t0x2AE0\n0x8138A131\t0x2AE1\n0x8138A132\t0x2AE2\n0x8138A133\t0x2AE3\n0x8138A134\t0x2AE4\n0x8138A135\t0x2AE5\n0x8138A136\t0x2AE6\n0x8138A137\t0x2AE7\n0x8138A138\t0x2AE8\n0x8138A139\t0x2AE9\n0x8138A230\t0x2AEA\n0x8138A231\t0x2AEB\n0x8138A232\t0x2AEC\n0x8138A233\t0x2AED\n0x8138A234\t0x2AEE\n0x8138A235\t0x2AEF\n0x8138A236\t0x2AF0\n0x8138A237\t0x2AF1\n0x8138A238\t0x2AF2\n0x8138A239\t0x2AF3\n0x8138A330\t0x2AF4\n0x8138A331\t0x2AF5\n0x8138A332\t0x2AF6\n0x8138A333\t0x2AF7\n0x8138A334\t0x2AF8\n0x8138A335\t0x2AF9\n0x8138A336\t0x2AFA\n0x8138A337\t0x2AFB\n0x8138A338\t0x2AFC\n0x8138A339\t0x2AFD\n0x8138A430\t0x2AFE\n0x8138A431\t0x2AFF\n0x8138A432\t0x2B00\n0x8138A433\t0x2B01\n0x8138A434\t0x2B02\n0x8138A435\t0x2B03\n0x8138A436\t0x2B04\n0x8138A437\t0x2B05\n0x8138A438\t0x2B06\n0x8138A439\t0x2B07\n0x8138A530\t0x2B08\n0x8138A531\t0x2B09\n0x8138A532\t0x2B0A\n0x8138A533\t0x2B0B\n0x8138A534\t0x2B0C\n0x8138A535\t0x2B0D\n0x8138A536\t0x2B0E\n0x8138A537\t0x2B0F\n0x8138A538\t0x2B10\n0x8138A539\t0x2B11\n0x8138A630\t0x2B12\n0x8138A631\t0x2B13\n0x8138A632\t0x2B14\n0x8138A633\t0x2B15\n0x8138A634\t0x2B16\n0x8138A635\t0x2B17\n0x8138A636\t0x2B18\n0x8138A637\t0x2B19\n0x8138A638\t0x2B1A\n0x8138A639\t0x2B1B\n0x8138A730\t0x2B1C\n0x8138A731\t0x2B1D\n0x8138A732\t0x2B1E\n0x8138A733\t0x2B1F\n0x8138A734\t0x2B20\n0x8138A735\t0x2B21\n0x8138A736\t0x2B22\n0x8138A737\t0x2B23\n0x8138A738\t0x2B24\n0x8138A739\t0x2B25\n0x8138A830\t0x2B26\n0x8138A831\t0x2B27\n0x8138A832\t0x2B28\n0x8138A833\t0x2B29\n0x8138A834\t0x2B2A\n0x8138A835\t0x2B2B\n0x8138A836\t0x2B2C\n0x8138A837\t0x2B2D\n0x8138A838\t0x2B2E\n0x8138A839\t0x2B2F\n0x8138A930\t0x2B30\n0x8138A931\t0x2B31\n0x8138A932\t0x2B32\n0x8138A933\t0x2B33\n0x8138A934\t0x2B34\n0x8138A935\t0x2B35\n0x8138A936\t0x2B36\n0x8138A937\t0x2B37\n0x8138A938\t0x2B38\n0x8138A939\t0x2B39\n0x8138AA30\t0x2B3A\n0x8138AA31\t0x2B3B\n0x8138AA32\t0x2B3C\n0x8138AA33\t0x2B3D\n0x8138AA34\t0x2B3E\n0x8138AA35\t0x2B3F\n0x8138AA36\t0x2B40\n0x8138AA37\t0x2B41\n0x8138AA38\t0x2B42\n0x8138AA39\t0x2B43\n0x8138AB30\t0x2B44\n0x8138AB31\t0x2B45\n0x8138AB32\t0x2B46\n0x8138AB33\t0x2B47\n0x8138AB34\t0x2B48\n0x8138AB35\t0x2B49\n0x8138AB36\t0x2B4A\n0x8138AB37\t0x2B4B\n0x8138AB38\t0x2B4C\n0x8138AB39\t0x2B4D\n0x8138AC30\t0x2B4E\n0x8138AC31\t0x2B4F\n0x8138AC32\t0x2B50\n0x8138AC33\t0x2B51\n0x8138AC34\t0x2B52\n0x8138AC35\t0x2B53\n0x8138AC36\t0x2B54\n0x8138AC37\t0x2B55\n0x8138AC38\t0x2B56\n0x8138AC39\t0x2B57\n0x8138AD30\t0x2B58\n0x8138AD31\t0x2B59\n0x8138AD32\t0x2B5A\n0x8138AD33\t0x2B5B\n0x8138AD34\t0x2B5C\n0x8138AD35\t0x2B5D\n0x8138AD36\t0x2B5E\n0x8138AD37\t0x2B5F\n0x8138AD38\t0x2B60\n0x8138AD39\t0x2B61\n0x8138AE30\t0x2B62\n0x8138AE31\t0x2B63\n0x8138AE32\t0x2B64\n0x8138AE33\t0x2B65\n0x8138AE34\t0x2B66\n0x8138AE35\t0x2B67\n0x8138AE36\t0x2B68\n0x8138AE37\t0x2B69\n0x8138AE38\t0x2B6A\n0x8138AE39\t0x2B6B\n0x8138AF30\t0x2B6C\n0x8138AF31\t0x2B6D\n0x8138AF32\t0x2B6E\n0x8138AF33\t0x2B6F\n0x8138AF34\t0x2B70\n0x8138AF35\t0x2B71\n0x8138AF36\t0x2B72\n0x8138AF37\t0x2B73\n0x8138AF38\t0x2B74\n0x8138AF39\t0x2B75\n0x8138B030\t0x2B76\n0x8138B031\t0x2B77\n0x8138B032\t0x2B78\n0x8138B033\t0x2B79\n0x8138B034\t0x2B7A\n0x8138B035\t0x2B7B\n0x8138B036\t0x2B7C\n0x8138B037\t0x2B7D\n0x8138B038\t0x2B7E\n0x8138B039\t0x2B7F\n0x8138B130\t0x2B80\n0x8138B131\t0x2B81\n0x8138B132\t0x2B82\n0x8138B133\t0x2B83\n0x8138B134\t0x2B84\n0x8138B135\t0x2B85\n0x8138B136\t0x2B86\n0x8138B137\t0x2B87\n0x8138B138\t0x2B88\n0x8138B139\t0x2B89\n0x8138B230\t0x2B8A\n0x8138B231\t0x2B8B\n0x8138B232\t0x2B8C\n0x8138B233\t0x2B8D\n0x8138B234\t0x2B8E\n0x8138B235\t0x2B8F\n0x8138B236\t0x2B90\n0x8138B237\t0x2B91\n0x8138B238\t0x2B92\n0x8138B239\t0x2B93\n0x8138B330\t0x2B94\n0x8138B331\t0x2B95\n0x8138B332\t0x2B96\n0x8138B333\t0x2B97\n0x8138B334\t0x2B98\n0x8138B335\t0x2B99\n0x8138B336\t0x2B9A\n0x8138B337\t0x2B9B\n0x8138B338\t0x2B9C\n0x8138B339\t0x2B9D\n0x8138B430\t0x2B9E\n0x8138B431\t0x2B9F\n0x8138B432\t0x2BA0\n0x8138B433\t0x2BA1\n0x8138B434\t0x2BA2\n0x8138B435\t0x2BA3\n0x8138B436\t0x2BA4\n0x8138B437\t0x2BA5\n0x8138B438\t0x2BA6\n0x8138B439\t0x2BA7\n0x8138B530\t0x2BA8\n0x8138B531\t0x2BA9\n0x8138B532\t0x2BAA\n0x8138B533\t0x2BAB\n0x8138B534\t0x2BAC\n0x8138B535\t0x2BAD\n0x8138B536\t0x2BAE\n0x8138B537\t0x2BAF\n0x8138B538\t0x2BB0\n0x8138B539\t0x2BB1\n0x8138B630\t0x2BB2\n0x8138B631\t0x2BB3\n0x8138B632\t0x2BB4\n0x8138B633\t0x2BB5\n0x8138B634\t0x2BB6\n0x8138B635\t0x2BB7\n0x8138B636\t0x2BB8\n0x8138B637\t0x2BB9\n0x8138B638\t0x2BBA\n0x8138B639\t0x2BBB\n0x8138B730\t0x2BBC\n0x8138B731\t0x2BBD\n0x8138B732\t0x2BBE\n0x8138B733\t0x2BBF\n0x8138B734\t0x2BC0\n0x8138B735\t0x2BC1\n0x8138B736\t0x2BC2\n0x8138B737\t0x2BC3\n0x8138B738\t0x2BC4\n0x8138B739\t0x2BC5\n0x8138B830\t0x2BC6\n0x8138B831\t0x2BC7\n0x8138B832\t0x2BC8\n0x8138B833\t0x2BC9\n0x8138B834\t0x2BCA\n0x8138B835\t0x2BCB\n0x8138B836\t0x2BCC\n0x8138B837\t0x2BCD\n0x8138B838\t0x2BCE\n0x8138B839\t0x2BCF\n0x8138B930\t0x2BD0\n0x8138B931\t0x2BD1\n0x8138B932\t0x2BD2\n0x8138B933\t0x2BD3\n0x8138B934\t0x2BD4\n0x8138B935\t0x2BD5\n0x8138B936\t0x2BD6\n0x8138B937\t0x2BD7\n0x8138B938\t0x2BD8\n0x8138B939\t0x2BD9\n0x8138BA30\t0x2BDA\n0x8138BA31\t0x2BDB\n0x8138BA32\t0x2BDC\n0x8138BA33\t0x2BDD\n0x8138BA34\t0x2BDE\n0x8138BA35\t0x2BDF\n0x8138BA36\t0x2BE0\n0x8138BA37\t0x2BE1\n0x8138BA38\t0x2BE2\n0x8138BA39\t0x2BE3\n0x8138BB30\t0x2BE4\n0x8138BB31\t0x2BE5\n0x8138BB32\t0x2BE6\n0x8138BB33\t0x2BE7\n0x8138BB34\t0x2BE8\n0x8138BB35\t0x2BE9\n0x8138BB36\t0x2BEA\n0x8138BB37\t0x2BEB\n0x8138BB38\t0x2BEC\n0x8138BB39\t0x2BED\n0x8138BC30\t0x2BEE\n0x8138BC31\t0x2BEF\n0x8138BC32\t0x2BF0\n0x8138BC33\t0x2BF1\n0x8138BC34\t0x2BF2\n0x8138BC35\t0x2BF3\n0x8138BC36\t0x2BF4\n0x8138BC37\t0x2BF5\n0x8138BC38\t0x2BF6\n0x8138BC39\t0x2BF7\n0x8138BD30\t0x2BF8\n0x8138BD31\t0x2BF9\n0x8138BD32\t0x2BFA\n0x8138BD33\t0x2BFB\n0x8138BD34\t0x2BFC\n0x8138BD35\t0x2BFD\n0x8138BD36\t0x2BFE\n0x8138BD37\t0x2BFF\n0x8138BD38\t0x2C00\n0x8138BD39\t0x2C01\n0x8138BE30\t0x2C02\n0x8138BE31\t0x2C03\n0x8138BE32\t0x2C04\n0x8138BE33\t0x2C05\n0x8138BE34\t0x2C06\n0x8138BE35\t0x2C07\n0x8138BE36\t0x2C08\n0x8138BE37\t0x2C09\n0x8138BE38\t0x2C0A\n0x8138BE39\t0x2C0B\n0x8138BF30\t0x2C0C\n0x8138BF31\t0x2C0D\n0x8138BF32\t0x2C0E\n0x8138BF33\t0x2C0F\n0x8138BF34\t0x2C10\n0x8138BF35\t0x2C11\n0x8138BF36\t0x2C12\n0x8138BF37\t0x2C13\n0x8138BF38\t0x2C14\n0x8138BF39\t0x2C15\n0x8138C030\t0x2C16\n0x8138C031\t0x2C17\n0x8138C032\t0x2C18\n0x8138C033\t0x2C19\n0x8138C034\t0x2C1A\n0x8138C035\t0x2C1B\n0x8138C036\t0x2C1C\n0x8138C037\t0x2C1D\n0x8138C038\t0x2C1E\n0x8138C039\t0x2C1F\n0x8138C130\t0x2C20\n0x8138C131\t0x2C21\n0x8138C132\t0x2C22\n0x8138C133\t0x2C23\n0x8138C134\t0x2C24\n0x8138C135\t0x2C25\n0x8138C136\t0x2C26\n0x8138C137\t0x2C27\n0x8138C138\t0x2C28\n0x8138C139\t0x2C29\n0x8138C230\t0x2C2A\n0x8138C231\t0x2C2B\n0x8138C232\t0x2C2C\n0x8138C233\t0x2C2D\n0x8138C234\t0x2C2E\n0x8138C235\t0x2C2F\n0x8138C236\t0x2C30\n0x8138C237\t0x2C31\n0x8138C238\t0x2C32\n0x8138C239\t0x2C33\n0x8138C330\t0x2C34\n0x8138C331\t0x2C35\n0x8138C332\t0x2C36\n0x8138C333\t0x2C37\n0x8138C334\t0x2C38\n0x8138C335\t0x2C39\n0x8138C336\t0x2C3A\n0x8138C337\t0x2C3B\n0x8138C338\t0x2C3C\n0x8138C339\t0x2C3D\n0x8138C430\t0x2C3E\n0x8138C431\t0x2C3F\n0x8138C432\t0x2C40\n0x8138C433\t0x2C41\n0x8138C434\t0x2C42\n0x8138C435\t0x2C43\n0x8138C436\t0x2C44\n0x8138C437\t0x2C45\n0x8138C438\t0x2C46\n0x8138C439\t0x2C47\n0x8138C530\t0x2C48\n0x8138C531\t0x2C49\n0x8138C532\t0x2C4A\n0x8138C533\t0x2C4B\n0x8138C534\t0x2C4C\n0x8138C535\t0x2C4D\n0x8138C536\t0x2C4E\n0x8138C537\t0x2C4F\n0x8138C538\t0x2C50\n0x8138C539\t0x2C51\n0x8138C630\t0x2C52\n0x8138C631\t0x2C53\n0x8138C632\t0x2C54\n0x8138C633\t0x2C55\n0x8138C634\t0x2C56\n0x8138C635\t0x2C57\n0x8138C636\t0x2C58\n0x8138C637\t0x2C59\n0x8138C638\t0x2C5A\n0x8138C639\t0x2C5B\n0x8138C730\t0x2C5C\n0x8138C731\t0x2C5D\n0x8138C732\t0x2C5E\n0x8138C733\t0x2C5F\n0x8138C734\t0x2C60\n0x8138C735\t0x2C61\n0x8138C736\t0x2C62\n0x8138C737\t0x2C63\n0x8138C738\t0x2C64\n0x8138C739\t0x2C65\n0x8138C830\t0x2C66\n0x8138C831\t0x2C67\n0x8138C832\t0x2C68\n0x8138C833\t0x2C69\n0x8138C834\t0x2C6A\n0x8138C835\t0x2C6B\n0x8138C836\t0x2C6C\n0x8138C837\t0x2C6D\n0x8138C838\t0x2C6E\n0x8138C839\t0x2C6F\n0x8138C930\t0x2C70\n0x8138C931\t0x2C71\n0x8138C932\t0x2C72\n0x8138C933\t0x2C73\n0x8138C934\t0x2C74\n0x8138C935\t0x2C75\n0x8138C936\t0x2C76\n0x8138C937\t0x2C77\n0x8138C938\t0x2C78\n0x8138C939\t0x2C79\n0x8138CA30\t0x2C7A\n0x8138CA31\t0x2C7B\n0x8138CA32\t0x2C7C\n0x8138CA33\t0x2C7D\n0x8138CA34\t0x2C7E\n0x8138CA35\t0x2C7F\n0x8138CA36\t0x2C80\n0x8138CA37\t0x2C81\n0x8138CA38\t0x2C82\n0x8138CA39\t0x2C83\n0x8138CB30\t0x2C84\n0x8138CB31\t0x2C85\n0x8138CB32\t0x2C86\n0x8138CB33\t0x2C87\n0x8138CB34\t0x2C88\n0x8138CB35\t0x2C89\n0x8138CB36\t0x2C8A\n0x8138CB37\t0x2C8B\n0x8138CB38\t0x2C8C\n0x8138CB39\t0x2C8D\n0x8138CC30\t0x2C8E\n0x8138CC31\t0x2C8F\n0x8138CC32\t0x2C90\n0x8138CC33\t0x2C91\n0x8138CC34\t0x2C92\n0x8138CC35\t0x2C93\n0x8138CC36\t0x2C94\n0x8138CC37\t0x2C95\n0x8138CC38\t0x2C96\n0x8138CC39\t0x2C97\n0x8138CD30\t0x2C98\n0x8138CD31\t0x2C99\n0x8138CD32\t0x2C9A\n0x8138CD33\t0x2C9B\n0x8138CD34\t0x2C9C\n0x8138CD35\t0x2C9D\n0x8138CD36\t0x2C9E\n0x8138CD37\t0x2C9F\n0x8138CD38\t0x2CA0\n0x8138CD39\t0x2CA1\n0x8138CE30\t0x2CA2\n0x8138CE31\t0x2CA3\n0x8138CE32\t0x2CA4\n0x8138CE33\t0x2CA5\n0x8138CE34\t0x2CA6\n0x8138CE35\t0x2CA7\n0x8138CE36\t0x2CA8\n0x8138CE37\t0x2CA9\n0x8138CE38\t0x2CAA\n0x8138CE39\t0x2CAB\n0x8138CF30\t0x2CAC\n0x8138CF31\t0x2CAD\n0x8138CF32\t0x2CAE\n0x8138CF33\t0x2CAF\n0x8138CF34\t0x2CB0\n0x8138CF35\t0x2CB1\n0x8138CF36\t0x2CB2\n0x8138CF37\t0x2CB3\n0x8138CF38\t0x2CB4\n0x8138CF39\t0x2CB5\n0x8138D030\t0x2CB6\n0x8138D031\t0x2CB7\n0x8138D032\t0x2CB8\n0x8138D033\t0x2CB9\n0x8138D034\t0x2CBA\n0x8138D035\t0x2CBB\n0x8138D036\t0x2CBC\n0x8138D037\t0x2CBD\n0x8138D038\t0x2CBE\n0x8138D039\t0x2CBF\n0x8138D130\t0x2CC0\n0x8138D131\t0x2CC1\n0x8138D132\t0x2CC2\n0x8138D133\t0x2CC3\n0x8138D134\t0x2CC4\n0x8138D135\t0x2CC5\n0x8138D136\t0x2CC6\n0x8138D137\t0x2CC7\n0x8138D138\t0x2CC8\n0x8138D139\t0x2CC9\n0x8138D230\t0x2CCA\n0x8138D231\t0x2CCB\n0x8138D232\t0x2CCC\n0x8138D233\t0x2CCD\n0x8138D234\t0x2CCE\n0x8138D235\t0x2CCF\n0x8138D236\t0x2CD0\n0x8138D237\t0x2CD1\n0x8138D238\t0x2CD2\n0x8138D239\t0x2CD3\n0x8138D330\t0x2CD4\n0x8138D331\t0x2CD5\n0x8138D332\t0x2CD6\n0x8138D333\t0x2CD7\n0x8138D334\t0x2CD8\n0x8138D335\t0x2CD9\n0x8138D336\t0x2CDA\n0x8138D337\t0x2CDB\n0x8138D338\t0x2CDC\n0x8138D339\t0x2CDD\n0x8138D430\t0x2CDE\n0x8138D431\t0x2CDF\n0x8138D432\t0x2CE0\n0x8138D433\t0x2CE1\n0x8138D434\t0x2CE2\n0x8138D435\t0x2CE3\n0x8138D436\t0x2CE4\n0x8138D437\t0x2CE5\n0x8138D438\t0x2CE6\n0x8138D439\t0x2CE7\n0x8138D530\t0x2CE8\n0x8138D531\t0x2CE9\n0x8138D532\t0x2CEA\n0x8138D533\t0x2CEB\n0x8138D534\t0x2CEC\n0x8138D535\t0x2CED\n0x8138D536\t0x2CEE\n0x8138D537\t0x2CEF\n0x8138D538\t0x2CF0\n0x8138D539\t0x2CF1\n0x8138D630\t0x2CF2\n0x8138D631\t0x2CF3\n0x8138D632\t0x2CF4\n0x8138D633\t0x2CF5\n0x8138D634\t0x2CF6\n0x8138D635\t0x2CF7\n0x8138D636\t0x2CF8\n0x8138D637\t0x2CF9\n0x8138D638\t0x2CFA\n0x8138D639\t0x2CFB\n0x8138D730\t0x2CFC\n0x8138D731\t0x2CFD\n0x8138D732\t0x2CFE\n0x8138D733\t0x2CFF\n0x8138D734\t0x2D00\n0x8138D735\t0x2D01\n0x8138D736\t0x2D02\n0x8138D737\t0x2D03\n0x8138D738\t0x2D04\n0x8138D739\t0x2D05\n0x8138D830\t0x2D06\n0x8138D831\t0x2D07\n0x8138D832\t0x2D08\n0x8138D833\t0x2D09\n0x8138D834\t0x2D0A\n0x8138D835\t0x2D0B\n0x8138D836\t0x2D0C\n0x8138D837\t0x2D0D\n0x8138D838\t0x2D0E\n0x8138D839\t0x2D0F\n0x8138D930\t0x2D10\n0x8138D931\t0x2D11\n0x8138D932\t0x2D12\n0x8138D933\t0x2D13\n0x8138D934\t0x2D14\n0x8138D935\t0x2D15\n0x8138D936\t0x2D16\n0x8138D937\t0x2D17\n0x8138D938\t0x2D18\n0x8138D939\t0x2D19\n0x8138DA30\t0x2D1A\n0x8138DA31\t0x2D1B\n0x8138DA32\t0x2D1C\n0x8138DA33\t0x2D1D\n0x8138DA34\t0x2D1E\n0x8138DA35\t0x2D1F\n0x8138DA36\t0x2D20\n0x8138DA37\t0x2D21\n0x8138DA38\t0x2D22\n0x8138DA39\t0x2D23\n0x8138DB30\t0x2D24\n0x8138DB31\t0x2D25\n0x8138DB32\t0x2D26\n0x8138DB33\t0x2D27\n0x8138DB34\t0x2D28\n0x8138DB35\t0x2D29\n0x8138DB36\t0x2D2A\n0x8138DB37\t0x2D2B\n0x8138DB38\t0x2D2C\n0x8138DB39\t0x2D2D\n0x8138DC30\t0x2D2E\n0x8138DC31\t0x2D2F\n0x8138DC32\t0x2D30\n0x8138DC33\t0x2D31\n0x8138DC34\t0x2D32\n0x8138DC35\t0x2D33\n0x8138DC36\t0x2D34\n0x8138DC37\t0x2D35\n0x8138DC38\t0x2D36\n0x8138DC39\t0x2D37\n0x8138DD30\t0x2D38\n0x8138DD31\t0x2D39\n0x8138DD32\t0x2D3A\n0x8138DD33\t0x2D3B\n0x8138DD34\t0x2D3C\n0x8138DD35\t0x2D3D\n0x8138DD36\t0x2D3E\n0x8138DD37\t0x2D3F\n0x8138DD38\t0x2D40\n0x8138DD39\t0x2D41\n0x8138DE30\t0x2D42\n0x8138DE31\t0x2D43\n0x8138DE32\t0x2D44\n0x8138DE33\t0x2D45\n0x8138DE34\t0x2D46\n0x8138DE35\t0x2D47\n0x8138DE36\t0x2D48\n0x8138DE37\t0x2D49\n0x8138DE38\t0x2D4A\n0x8138DE39\t0x2D4B\n0x8138DF30\t0x2D4C\n0x8138DF31\t0x2D4D\n0x8138DF32\t0x2D4E\n0x8138DF33\t0x2D4F\n0x8138DF34\t0x2D50\n0x8138DF35\t0x2D51\n0x8138DF36\t0x2D52\n0x8138DF37\t0x2D53\n0x8138DF38\t0x2D54\n0x8138DF39\t0x2D55\n0x8138E030\t0x2D56\n0x8138E031\t0x2D57\n0x8138E032\t0x2D58\n0x8138E033\t0x2D59\n0x8138E034\t0x2D5A\n0x8138E035\t0x2D5B\n0x8138E036\t0x2D5C\n0x8138E037\t0x2D5D\n0x8138E038\t0x2D5E\n0x8138E039\t0x2D5F\n0x8138E130\t0x2D60\n0x8138E131\t0x2D61\n0x8138E132\t0x2D62\n0x8138E133\t0x2D63\n0x8138E134\t0x2D64\n0x8138E135\t0x2D65\n0x8138E136\t0x2D66\n0x8138E137\t0x2D67\n0x8138E138\t0x2D68\n0x8138E139\t0x2D69\n0x8138E230\t0x2D6A\n0x8138E231\t0x2D6B\n0x8138E232\t0x2D6C\n0x8138E233\t0x2D6D\n0x8138E234\t0x2D6E\n0x8138E235\t0x2D6F\n0x8138E236\t0x2D70\n0x8138E237\t0x2D71\n0x8138E238\t0x2D72\n0x8138E239\t0x2D73\n0x8138E330\t0x2D74\n0x8138E331\t0x2D75\n0x8138E332\t0x2D76\n0x8138E333\t0x2D77\n0x8138E334\t0x2D78\n0x8138E335\t0x2D79\n0x8138E336\t0x2D7A\n0x8138E337\t0x2D7B\n0x8138E338\t0x2D7C\n0x8138E339\t0x2D7D\n0x8138E430\t0x2D7E\n0x8138E431\t0x2D7F\n0x8138E432\t0x2D80\n0x8138E433\t0x2D81\n0x8138E434\t0x2D82\n0x8138E435\t0x2D83\n0x8138E436\t0x2D84\n0x8138E437\t0x2D85\n0x8138E438\t0x2D86\n0x8138E439\t0x2D87\n0x8138E530\t0x2D88\n0x8138E531\t0x2D89\n0x8138E532\t0x2D8A\n0x8138E533\t0x2D8B\n0x8138E534\t0x2D8C\n0x8138E535\t0x2D8D\n0x8138E536\t0x2D8E\n0x8138E537\t0x2D8F\n0x8138E538\t0x2D90\n0x8138E539\t0x2D91\n0x8138E630\t0x2D92\n0x8138E631\t0x2D93\n0x8138E632\t0x2D94\n0x8138E633\t0x2D95\n0x8138E634\t0x2D96\n0x8138E635\t0x2D97\n0x8138E636\t0x2D98\n0x8138E637\t0x2D99\n0x8138E638\t0x2D9A\n0x8138E639\t0x2D9B\n0x8138E730\t0x2D9C\n0x8138E731\t0x2D9D\n0x8138E732\t0x2D9E\n0x8138E733\t0x2D9F\n0x8138E734\t0x2DA0\n0x8138E735\t0x2DA1\n0x8138E736\t0x2DA2\n0x8138E737\t0x2DA3\n0x8138E738\t0x2DA4\n0x8138E739\t0x2DA5\n0x8138E830\t0x2DA6\n0x8138E831\t0x2DA7\n0x8138E832\t0x2DA8\n0x8138E833\t0x2DA9\n0x8138E834\t0x2DAA\n0x8138E835\t0x2DAB\n0x8138E836\t0x2DAC\n0x8138E837\t0x2DAD\n0x8138E838\t0x2DAE\n0x8138E839\t0x2DAF\n0x8138E930\t0x2DB0\n0x8138E931\t0x2DB1\n0x8138E932\t0x2DB2\n0x8138E933\t0x2DB3\n0x8138E934\t0x2DB4\n0x8138E935\t0x2DB5\n0x8138E936\t0x2DB6\n0x8138E937\t0x2DB7\n0x8138E938\t0x2DB8\n0x8138E939\t0x2DB9\n0x8138EA30\t0x2DBA\n0x8138EA31\t0x2DBB\n0x8138EA32\t0x2DBC\n0x8138EA33\t0x2DBD\n0x8138EA34\t0x2DBE\n0x8138EA35\t0x2DBF\n0x8138EA36\t0x2DC0\n0x8138EA37\t0x2DC1\n0x8138EA38\t0x2DC2\n0x8138EA39\t0x2DC3\n0x8138EB30\t0x2DC4\n0x8138EB31\t0x2DC5\n0x8138EB32\t0x2DC6\n0x8138EB33\t0x2DC7\n0x8138EB34\t0x2DC8\n0x8138EB35\t0x2DC9\n0x8138EB36\t0x2DCA\n0x8138EB37\t0x2DCB\n0x8138EB38\t0x2DCC\n0x8138EB39\t0x2DCD\n0x8138EC30\t0x2DCE\n0x8138EC31\t0x2DCF\n0x8138EC32\t0x2DD0\n0x8138EC33\t0x2DD1\n0x8138EC34\t0x2DD2\n0x8138EC35\t0x2DD3\n0x8138EC36\t0x2DD4\n0x8138EC37\t0x2DD5\n0x8138EC38\t0x2DD6\n0x8138EC39\t0x2DD7\n0x8138ED30\t0x2DD8\n0x8138ED31\t0x2DD9\n0x8138ED32\t0x2DDA\n0x8138ED33\t0x2DDB\n0x8138ED34\t0x2DDC\n0x8138ED35\t0x2DDD\n0x8138ED36\t0x2DDE\n0x8138ED37\t0x2DDF\n0x8138ED38\t0x2DE0\n0x8138ED39\t0x2DE1\n0x8138EE30\t0x2DE2\n0x8138EE31\t0x2DE3\n0x8138EE32\t0x2DE4\n0x8138EE33\t0x2DE5\n0x8138EE34\t0x2DE6\n0x8138EE35\t0x2DE7\n0x8138EE36\t0x2DE8\n0x8138EE37\t0x2DE9\n0x8138EE38\t0x2DEA\n0x8138EE39\t0x2DEB\n0x8138EF30\t0x2DEC\n0x8138EF31\t0x2DED\n0x8138EF32\t0x2DEE\n0x8138EF33\t0x2DEF\n0x8138EF34\t0x2DF0\n0x8138EF35\t0x2DF1\n0x8138EF36\t0x2DF2\n0x8138EF37\t0x2DF3\n0x8138EF38\t0x2DF4\n0x8138EF39\t0x2DF5\n0x8138F030\t0x2DF6\n0x8138F031\t0x2DF7\n0x8138F032\t0x2DF8\n0x8138F033\t0x2DF9\n0x8138F034\t0x2DFA\n0x8138F035\t0x2DFB\n0x8138F036\t0x2DFC\n0x8138F037\t0x2DFD\n0x8138F038\t0x2DFE\n0x8138F039\t0x2DFF\n0x8138F130\t0x2E00\n0x8138F131\t0x2E01\n0x8138F132\t0x2E02\n0x8138F133\t0x2E03\n0x8138F134\t0x2E04\n0x8138F135\t0x2E05\n0x8138F136\t0x2E06\n0x8138F137\t0x2E07\n0x8138F138\t0x2E08\n0x8138F139\t0x2E09\n0x8138F230\t0x2E0A\n0x8138F231\t0x2E0B\n0x8138F232\t0x2E0C\n0x8138F233\t0x2E0D\n0x8138F234\t0x2E0E\n0x8138F235\t0x2E0F\n0x8138F236\t0x2E10\n0x8138F237\t0x2E11\n0x8138F238\t0x2E12\n0x8138F239\t0x2E13\n0x8138F330\t0x2E14\n0x8138F331\t0x2E15\n0x8138F332\t0x2E16\n0x8138F333\t0x2E17\n0x8138F334\t0x2E18\n0x8138F335\t0x2E19\n0x8138F336\t0x2E1A\n0x8138F337\t0x2E1B\n0x8138F338\t0x2E1C\n0x8138F339\t0x2E1D\n0x8138F430\t0x2E1E\n0x8138F431\t0x2E1F\n0x8138F432\t0x2E20\n0x8138F433\t0x2E21\n0x8138F434\t0x2E22\n0x8138F435\t0x2E23\n0x8138F436\t0x2E24\n0x8138F437\t0x2E25\n0x8138F438\t0x2E26\n0x8138F439\t0x2E27\n0x8138F530\t0x2E28\n0x8138F531\t0x2E29\n0x8138F532\t0x2E2A\n0x8138F533\t0x2E2B\n0x8138F534\t0x2E2C\n0x8138F535\t0x2E2D\n0x8138F536\t0x2E2E\n0x8138F537\t0x2E2F\n0x8138F538\t0x2E30\n0x8138F539\t0x2E31\n0x8138F630\t0x2E32\n0x8138F631\t0x2E33\n0x8138F632\t0x2E34\n0x8138F633\t0x2E35\n0x8138F634\t0x2E36\n0x8138F635\t0x2E37\n0x8138F636\t0x2E38\n0x8138F637\t0x2E39\n0x8138F638\t0x2E3A\n0x8138F639\t0x2E3B\n0x8138F730\t0x2E3C\n0x8138F731\t0x2E3D\n0x8138F732\t0x2E3E\n0x8138F733\t0x2E3F\n0x8138F734\t0x2E40\n0x8138F735\t0x2E41\n0x8138F736\t0x2E42\n0x8138F737\t0x2E43\n0x8138F738\t0x2E44\n0x8138F739\t0x2E45\n0x8138F830\t0x2E46\n0x8138F831\t0x2E47\n0x8138F832\t0x2E48\n0x8138F833\t0x2E49\n0x8138F834\t0x2E4A\n0x8138F835\t0x2E4B\n0x8138F836\t0x2E4C\n0x8138F837\t0x2E4D\n0x8138F838\t0x2E4E\n0x8138F839\t0x2E4F\n0x8138F930\t0x2E50\n0x8138F931\t0x2E51\n0x8138F932\t0x2E52\n0x8138F933\t0x2E53\n0x8138F934\t0x2E54\n0x8138F935\t0x2E55\n0x8138F936\t0x2E56\n0x8138F937\t0x2E57\n0x8138F938\t0x2E58\n0x8138F939\t0x2E59\n0x8138FA30\t0x2E5A\n0x8138FA31\t0x2E5B\n0x8138FA32\t0x2E5C\n0x8138FA33\t0x2E5D\n0x8138FA34\t0x2E5E\n0x8138FA35\t0x2E5F\n0x8138FA36\t0x2E60\n0x8138FA37\t0x2E61\n0x8138FA38\t0x2E62\n0x8138FA39\t0x2E63\n0x8138FB30\t0x2E64\n0x8138FB31\t0x2E65\n0x8138FB32\t0x2E66\n0x8138FB33\t0x2E67\n0x8138FB34\t0x2E68\n0x8138FB35\t0x2E69\n0x8138FB36\t0x2E6A\n0x8138FB37\t0x2E6B\n0x8138FB38\t0x2E6C\n0x8138FB39\t0x2E6D\n0x8138FC30\t0x2E6E\n0x8138FC31\t0x2E6F\n0x8138FC32\t0x2E70\n0x8138FC33\t0x2E71\n0x8138FC34\t0x2E72\n0x8138FC35\t0x2E73\n0x8138FC36\t0x2E74\n0x8138FC37\t0x2E75\n0x8138FC38\t0x2E76\n0x8138FC39\t0x2E77\n0x8138FD30\t0x2E78\n0x8138FD31\t0x2E79\n0x8138FD32\t0x2E7A\n0x8138FD33\t0x2E7B\n0x8138FD34\t0x2E7C\n0x8138FD35\t0x2E7D\n0x8138FD36\t0x2E7E\n0x8138FD37\t0x2E7F\n0x8138FD38\t0x2E80\n0x8138FD39\t0x2E82\n0x8138FE30\t0x2E83\n0x8138FE31\t0x2E85\n0x8138FE32\t0x2E86\n0x8138FE33\t0x2E87\n0x8138FE34\t0x2E89\n0x8138FE35\t0x2E8A\n0x8138FE36\t0x2E8D\n0x8138FE37\t0x2E8E\n0x8138FE38\t0x2E8F\n0x8138FE39\t0x2E90\n0x81398130\t0x2E91\n0x81398131\t0x2E92\n0x81398132\t0x2E93\n0x81398133\t0x2E94\n0x81398134\t0x2E95\n0x81398135\t0x2E96\n0x81398136\t0x2E98\n0x81398137\t0x2E99\n0x81398138\t0x2E9A\n0x81398139\t0x2E9B\n0x81398230\t0x2E9C\n0x81398231\t0x2E9D\n0x81398232\t0x2E9E\n0x81398233\t0x2E9F\n0x81398234\t0x2EA0\n0x81398235\t0x2EA1\n0x81398236\t0x2EA2\n0x81398237\t0x2EA3\n0x81398238\t0x2EA4\n0x81398239\t0x2EA5\n0x81398330\t0x2EA6\n0x81398331\t0x2EA8\n0x81398332\t0x2EA9\n0x81398333\t0x2EAB\n0x81398334\t0x2EAC\n0x81398335\t0x2EAD\n0x81398336\t0x2EAF\n0x81398337\t0x2EB0\n0x81398338\t0x2EB1\n0x81398339\t0x2EB2\n0x81398430\t0x2EB4\n0x81398431\t0x2EB5\n0x81398432\t0x2EB8\n0x81398433\t0x2EB9\n0x81398434\t0x2EBA\n0x81398435\t0x2EBC\n0x81398436\t0x2EBD\n0x81398437\t0x2EBE\n0x81398438\t0x2EBF\n0x81398439\t0x2EC0\n0x81398530\t0x2EC1\n0x81398531\t0x2EC2\n0x81398532\t0x2EC3\n0x81398533\t0x2EC4\n0x81398534\t0x2EC5\n0x81398535\t0x2EC6\n0x81398536\t0x2EC7\n0x81398537\t0x2EC8\n0x81398538\t0x2EC9\n0x81398539\t0x2ECB\n0x81398630\t0x2ECC\n0x81398631\t0x2ECD\n0x81398632\t0x2ECE\n0x81398633\t0x2ECF\n0x81398634\t0x2ED0\n0x81398635\t0x2ED1\n0x81398636\t0x2ED2\n0x81398637\t0x2ED3\n0x81398638\t0x2ED4\n0x81398639\t0x2ED5\n0x81398730\t0x2ED6\n0x81398731\t0x2ED7\n0x81398732\t0x2ED8\n0x81398733\t0x2ED9\n0x81398734\t0x2EDA\n0x81398735\t0x2EDB\n0x81398736\t0x2EDC\n0x81398737\t0x2EDD\n0x81398738\t0x2EDE\n0x81398739\t0x2EDF\n0x81398830\t0x2EE0\n0x81398831\t0x2EE1\n0x81398832\t0x2EE2\n0x81398833\t0x2EE3\n0x81398834\t0x2EE4\n0x81398835\t0x2EE5\n0x81398836\t0x2EE6\n0x81398837\t0x2EE7\n0x81398838\t0x2EE8\n0x81398839\t0x2EE9\n0x81398930\t0x2EEA\n0x81398931\t0x2EEB\n0x81398932\t0x2EEC\n0x81398933\t0x2EED\n0x81398934\t0x2EEE\n0x81398935\t0x2EEF\n0x81398936\t0x2EF0\n0x81398937\t0x2EF1\n0x81398938\t0x2EF2\n0x81398939\t0x2EF3\n0x81398A30\t0x2EF4\n0x81398A31\t0x2EF5\n0x81398A32\t0x2EF6\n0x81398A33\t0x2EF7\n0x81398A34\t0x2EF8\n0x81398A35\t0x2EF9\n0x81398A36\t0x2EFA\n0x81398A37\t0x2EFB\n0x81398A38\t0x2EFC\n0x81398A39\t0x2EFD\n0x81398B30\t0x2EFE\n0x81398B31\t0x2EFF\n0x81398B32\t0x2F00\n0x81398B33\t0x2F01\n0x81398B34\t0x2F02\n0x81398B35\t0x2F03\n0x81398B36\t0x2F04\n0x81398B37\t0x2F05\n0x81398B38\t0x2F06\n0x81398B39\t0x2F07\n0x81398C30\t0x2F08\n0x81398C31\t0x2F09\n0x81398C32\t0x2F0A\n0x81398C33\t0x2F0B\n0x81398C34\t0x2F0C\n0x81398C35\t0x2F0D\n0x81398C36\t0x2F0E\n0x81398C37\t0x2F0F\n0x81398C38\t0x2F10\n0x81398C39\t0x2F11\n0x81398D30\t0x2F12\n0x81398D31\t0x2F13\n0x81398D32\t0x2F14\n0x81398D33\t0x2F15\n0x81398D34\t0x2F16\n0x81398D35\t0x2F17\n0x81398D36\t0x2F18\n0x81398D37\t0x2F19\n0x81398D38\t0x2F1A\n0x81398D39\t0x2F1B\n0x81398E30\t0x2F1C\n0x81398E31\t0x2F1D\n0x81398E32\t0x2F1E\n0x81398E33\t0x2F1F\n0x81398E34\t0x2F20\n0x81398E35\t0x2F21\n0x81398E36\t0x2F22\n0x81398E37\t0x2F23\n0x81398E38\t0x2F24\n0x81398E39\t0x2F25\n0x81398F30\t0x2F26\n0x81398F31\t0x2F27\n0x81398F32\t0x2F28\n0x81398F33\t0x2F29\n0x81398F34\t0x2F2A\n0x81398F35\t0x2F2B\n0x81398F36\t0x2F2C\n0x81398F37\t0x2F2D\n0x81398F38\t0x2F2E\n0x81398F39\t0x2F2F\n0x81399030\t0x2F30\n0x81399031\t0x2F31\n0x81399032\t0x2F32\n0x81399033\t0x2F33\n0x81399034\t0x2F34\n0x81399035\t0x2F35\n0x81399036\t0x2F36\n0x81399037\t0x2F37\n0x81399038\t0x2F38\n0x81399039\t0x2F39\n0x81399130\t0x2F3A\n0x81399131\t0x2F3B\n0x81399132\t0x2F3C\n0x81399133\t0x2F3D\n0x81399134\t0x2F3E\n0x81399135\t0x2F3F\n0x81399136\t0x2F40\n0x81399137\t0x2F41\n0x81399138\t0x2F42\n0x81399139\t0x2F43\n0x81399230\t0x2F44\n0x81399231\t0x2F45\n0x81399232\t0x2F46\n0x81399233\t0x2F47\n0x81399234\t0x2F48\n0x81399235\t0x2F49\n0x81399236\t0x2F4A\n0x81399237\t0x2F4B\n0x81399238\t0x2F4C\n0x81399239\t0x2F4D\n0x81399330\t0x2F4E\n0x81399331\t0x2F4F\n0x81399332\t0x2F50\n0x81399333\t0x2F51\n0x81399334\t0x2F52\n0x81399335\t0x2F53\n0x81399336\t0x2F54\n0x81399337\t0x2F55\n0x81399338\t0x2F56\n0x81399339\t0x2F57\n0x81399430\t0x2F58\n0x81399431\t0x2F59\n0x81399432\t0x2F5A\n0x81399433\t0x2F5B\n0x81399434\t0x2F5C\n0x81399435\t0x2F5D\n0x81399436\t0x2F5E\n0x81399437\t0x2F5F\n0x81399438\t0x2F60\n0x81399439\t0x2F61\n0x81399530\t0x2F62\n0x81399531\t0x2F63\n0x81399532\t0x2F64\n0x81399533\t0x2F65\n0x81399534\t0x2F66\n0x81399535\t0x2F67\n0x81399536\t0x2F68\n0x81399537\t0x2F69\n0x81399538\t0x2F6A\n0x81399539\t0x2F6B\n0x81399630\t0x2F6C\n0x81399631\t0x2F6D\n0x81399632\t0x2F6E\n0x81399633\t0x2F6F\n0x81399634\t0x2F70\n0x81399635\t0x2F71\n0x81399636\t0x2F72\n0x81399637\t0x2F73\n0x81399638\t0x2F74\n0x81399639\t0x2F75\n0x81399730\t0x2F76\n0x81399731\t0x2F77\n0x81399732\t0x2F78\n0x81399733\t0x2F79\n0x81399734\t0x2F7A\n0x81399735\t0x2F7B\n0x81399736\t0x2F7C\n0x81399737\t0x2F7D\n0x81399738\t0x2F7E\n0x81399739\t0x2F7F\n0x81399830\t0x2F80\n0x81399831\t0x2F81\n0x81399832\t0x2F82\n0x81399833\t0x2F83\n0x81399834\t0x2F84\n0x81399835\t0x2F85\n0x81399836\t0x2F86\n0x81399837\t0x2F87\n0x81399838\t0x2F88\n0x81399839\t0x2F89\n0x81399930\t0x2F8A\n0x81399931\t0x2F8B\n0x81399932\t0x2F8C\n0x81399933\t0x2F8D\n0x81399934\t0x2F8E\n0x81399935\t0x2F8F\n0x81399936\t0x2F90\n0x81399937\t0x2F91\n0x81399938\t0x2F92\n0x81399939\t0x2F93\n0x81399A30\t0x2F94\n0x81399A31\t0x2F95\n0x81399A32\t0x2F96\n0x81399A33\t0x2F97\n0x81399A34\t0x2F98\n0x81399A35\t0x2F99\n0x81399A36\t0x2F9A\n0x81399A37\t0x2F9B\n0x81399A38\t0x2F9C\n0x81399A39\t0x2F9D\n0x81399B30\t0x2F9E\n0x81399B31\t0x2F9F\n0x81399B32\t0x2FA0\n0x81399B33\t0x2FA1\n0x81399B34\t0x2FA2\n0x81399B35\t0x2FA3\n0x81399B36\t0x2FA4\n0x81399B37\t0x2FA5\n0x81399B38\t0x2FA6\n0x81399B39\t0x2FA7\n0x81399C30\t0x2FA8\n0x81399C31\t0x2FA9\n0x81399C32\t0x2FAA\n0x81399C33\t0x2FAB\n0x81399C34\t0x2FAC\n0x81399C35\t0x2FAD\n0x81399C36\t0x2FAE\n0x81399C37\t0x2FAF\n0x81399C38\t0x2FB0\n0x81399C39\t0x2FB1\n0x81399D30\t0x2FB2\n0x81399D31\t0x2FB3\n0x81399D32\t0x2FB4\n0x81399D33\t0x2FB5\n0x81399D34\t0x2FB6\n0x81399D35\t0x2FB7\n0x81399D36\t0x2FB8\n0x81399D37\t0x2FB9\n0x81399D38\t0x2FBA\n0x81399D39\t0x2FBB\n0x81399E30\t0x2FBC\n0x81399E31\t0x2FBD\n0x81399E32\t0x2FBE\n0x81399E33\t0x2FBF\n0x81399E34\t0x2FC0\n0x81399E35\t0x2FC1\n0x81399E36\t0x2FC2\n0x81399E37\t0x2FC3\n0x81399E38\t0x2FC4\n0x81399E39\t0x2FC5\n0x81399F30\t0x2FC6\n0x81399F31\t0x2FC7\n0x81399F32\t0x2FC8\n0x81399F33\t0x2FC9\n0x81399F34\t0x2FCA\n0x81399F35\t0x2FCB\n0x81399F36\t0x2FCC\n0x81399F37\t0x2FCD\n0x81399F38\t0x2FCE\n0x81399F39\t0x2FCF\n0x8139A030\t0x2FD0\n0x8139A031\t0x2FD1\n0x8139A032\t0x2FD2\n0x8139A033\t0x2FD3\n0x8139A034\t0x2FD4\n0x8139A035\t0x2FD5\n0x8139A036\t0x2FD6\n0x8139A037\t0x2FD7\n0x8139A038\t0x2FD8\n0x8139A039\t0x2FD9\n0x8139A130\t0x2FDA\n0x8139A131\t0x2FDB\n0x8139A132\t0x2FDC\n0x8139A133\t0x2FDD\n0x8139A134\t0x2FDE\n0x8139A135\t0x2FDF\n0x8139A136\t0x2FE0\n0x8139A137\t0x2FE1\n0x8139A138\t0x2FE2\n0x8139A139\t0x2FE3\n0x8139A230\t0x2FE4\n0x8139A231\t0x2FE5\n0x8139A232\t0x2FE6\n0x8139A233\t0x2FE7\n0x8139A234\t0x2FE8\n0x8139A235\t0x2FE9\n0x8139A236\t0x2FEA\n0x8139A237\t0x2FEB\n0x8139A238\t0x2FEC\n0x8139A239\t0x2FED\n0x8139A330\t0x2FEE\n0x8139A331\t0x2FEF\n0x8139A332\t0x2FFC\n0x8139A333\t0x2FFD\n0x8139A334\t0x2FFE\n0x8139A335\t0x2FFF\n0x8139A336\t0x3004\n0x8139A337\t0x3018\n0x8139A338\t0x3019\n0x8139A339\t0x301A\n0x8139A430\t0x301B\n0x8139A431\t0x301C\n0x8139A432\t0x301F\n0x8139A433\t0x3020\n0x8139A434\t0x302A\n0x8139A435\t0x302B\n0x8139A436\t0x302C\n0x8139A437\t0x302D\n0x8139A438\t0x302E\n0x8139A439\t0x302F\n0x8139A530\t0x3030\n0x8139A531\t0x3031\n0x8139A532\t0x3032\n0x8139A533\t0x3033\n0x8139A534\t0x3034\n0x8139A535\t0x3035\n0x8139A536\t0x3036\n0x8139A537\t0x3037\n0x8139A538\t0x3038\n0x8139A539\t0x3039\n0x8139A630\t0x303A\n0x8139A631\t0x303B\n0x8139A632\t0x303C\n0x8139A633\t0x303D\n0x8139A634\t0x303F\n0x8139A635\t0x3040\n0x8139A636\t0x3094\n0x8139A637\t0x3095\n0x8139A638\t0x3096\n0x8139A639\t0x3097\n0x8139A730\t0x3098\n0x8139A731\t0x3099\n0x8139A732\t0x309A\n0x8139A733\t0x309F\n0x8139A734\t0x30A0\n0x8139A735\t0x30F7\n0x8139A736\t0x30F8\n0x8139A737\t0x30F9\n0x8139A738\t0x30FA\n0x8139A739\t0x30FB\n0x8139A830\t0x30FF\n0x8139A831\t0x3100\n0x8139A832\t0x3101\n0x8139A833\t0x3102\n0x8139A834\t0x3103\n0x8139A835\t0x3104\n0x8139A836\t0x312A\n0x8139A837\t0x312B\n0x8139A838\t0x312C\n0x8139A839\t0x312D\n0x8139A930\t0x312E\n0x8139A931\t0x312F\n0x8139A932\t0x3130\n0x8139A933\t0x3131\n0x8139A934\t0x3132\n0x8139A935\t0x3133\n0x8139A936\t0x3134\n0x8139A937\t0x3135\n0x8139A938\t0x3136\n0x8139A939\t0x3137\n0x8139AA30\t0x3138\n0x8139AA31\t0x3139\n0x8139AA32\t0x313A\n0x8139AA33\t0x313B\n0x8139AA34\t0x313C\n0x8139AA35\t0x313D\n0x8139AA36\t0x313E\n0x8139AA37\t0x313F\n0x8139AA38\t0x3140\n0x8139AA39\t0x3141\n0x8139AB30\t0x3142\n0x8139AB31\t0x3143\n0x8139AB32\t0x3144\n0x8139AB33\t0x3145\n0x8139AB34\t0x3146\n0x8139AB35\t0x3147\n0x8139AB36\t0x3148\n0x8139AB37\t0x3149\n0x8139AB38\t0x314A\n0x8139AB39\t0x314B\n0x8139AC30\t0x314C\n0x8139AC31\t0x314D\n0x8139AC32\t0x314E\n0x8139AC33\t0x314F\n0x8139AC34\t0x3150\n0x8139AC35\t0x3151\n0x8139AC36\t0x3152\n0x8139AC37\t0x3153\n0x8139AC38\t0x3154\n0x8139AC39\t0x3155\n0x8139AD30\t0x3156\n0x8139AD31\t0x3157\n0x8139AD32\t0x3158\n0x8139AD33\t0x3159\n0x8139AD34\t0x315A\n0x8139AD35\t0x315B\n0x8139AD36\t0x315C\n0x8139AD37\t0x315D\n0x8139AD38\t0x315E\n0x8139AD39\t0x315F\n0x8139AE30\t0x3160\n0x8139AE31\t0x3161\n0x8139AE32\t0x3162\n0x8139AE33\t0x3163\n0x8139AE34\t0x3164\n0x8139AE35\t0x3165\n0x8139AE36\t0x3166\n0x8139AE37\t0x3167\n0x8139AE38\t0x3168\n0x8139AE39\t0x3169\n0x8139AF30\t0x316A\n0x8139AF31\t0x316B\n0x8139AF32\t0x316C\n0x8139AF33\t0x316D\n0x8139AF34\t0x316E\n0x8139AF35\t0x316F\n0x8139AF36\t0x3170\n0x8139AF37\t0x3171\n0x8139AF38\t0x3172\n0x8139AF39\t0x3173\n0x8139B030\t0x3174\n0x8139B031\t0x3175\n0x8139B032\t0x3176\n0x8139B033\t0x3177\n0x8139B034\t0x3178\n0x8139B035\t0x3179\n0x8139B036\t0x317A\n0x8139B037\t0x317B\n0x8139B038\t0x317C\n0x8139B039\t0x317D\n0x8139B130\t0x317E\n0x8139B131\t0x317F\n0x8139B132\t0x3180\n0x8139B133\t0x3181\n0x8139B134\t0x3182\n0x8139B135\t0x3183\n0x8139B136\t0x3184\n0x8139B137\t0x3185\n0x8139B138\t0x3186\n0x8139B139\t0x3187\n0x8139B230\t0x3188\n0x8139B231\t0x3189\n0x8139B232\t0x318A\n0x8139B233\t0x318B\n0x8139B234\t0x318C\n0x8139B235\t0x318D\n0x8139B236\t0x318E\n0x8139B237\t0x318F\n0x8139B238\t0x3190\n0x8139B239\t0x3191\n0x8139B330\t0x3192\n0x8139B331\t0x3193\n0x8139B332\t0x3194\n0x8139B333\t0x3195\n0x8139B334\t0x3196\n0x8139B335\t0x3197\n0x8139B336\t0x3198\n0x8139B337\t0x3199\n0x8139B338\t0x319A\n0x8139B339\t0x319B\n0x8139B430\t0x319C\n0x8139B431\t0x319D\n0x8139B432\t0x319E\n0x8139B433\t0x319F\n0x8139B434\t0x31A0\n0x8139B435\t0x31A1\n0x8139B436\t0x31A2\n0x8139B437\t0x31A3\n0x8139B438\t0x31A4\n0x8139B439\t0x31A5\n0x8139B530\t0x31A6\n0x8139B531\t0x31A7\n0x8139B532\t0x31A8\n0x8139B533\t0x31A9\n0x8139B534\t0x31AA\n0x8139B535\t0x31AB\n0x8139B536\t0x31AC\n0x8139B537\t0x31AD\n0x8139B538\t0x31AE\n0x8139B539\t0x31AF\n0x8139B630\t0x31B0\n0x8139B631\t0x31B1\n0x8139B632\t0x31B2\n0x8139B633\t0x31B3\n0x8139B634\t0x31B4\n0x8139B635\t0x31B5\n0x8139B636\t0x31B6\n0x8139B637\t0x31B7\n0x8139B638\t0x31B8\n0x8139B639\t0x31B9\n0x8139B730\t0x31BA\n0x8139B731\t0x31BB\n0x8139B732\t0x31BC\n0x8139B733\t0x31BD\n0x8139B734\t0x31BE\n0x8139B735\t0x31BF\n0x8139B736\t0x31C0\n0x8139B737\t0x31C1\n0x8139B738\t0x31C2\n0x8139B739\t0x31C3\n0x8139B830\t0x31C4\n0x8139B831\t0x31C5\n0x8139B832\t0x31C6\n0x8139B833\t0x31C7\n0x8139B834\t0x31C8\n0x8139B835\t0x31C9\n0x8139B836\t0x31CA\n0x8139B837\t0x31CB\n0x8139B838\t0x31CC\n0x8139B839\t0x31CD\n0x8139B930\t0x31CE\n0x8139B931\t0x31CF\n0x8139B932\t0x31D0\n0x8139B933\t0x31D1\n0x8139B934\t0x31D2\n0x8139B935\t0x31D3\n0x8139B936\t0x31D4\n0x8139B937\t0x31D5\n0x8139B938\t0x31D6\n0x8139B939\t0x31D7\n0x8139BA30\t0x31D8\n0x8139BA31\t0x31D9\n0x8139BA32\t0x31DA\n0x8139BA33\t0x31DB\n0x8139BA34\t0x31DC\n0x8139BA35\t0x31DD\n0x8139BA36\t0x31DE\n0x8139BA37\t0x31DF\n0x8139BA38\t0x31E0\n0x8139BA39\t0x31E1\n0x8139BB30\t0x31E2\n0x8139BB31\t0x31E3\n0x8139BB32\t0x31E4\n0x8139BB33\t0x31E5\n0x8139BB34\t0x31E6\n0x8139BB35\t0x31E7\n0x8139BB36\t0x31E8\n0x8139BB37\t0x31E9\n0x8139BB38\t0x31EA\n0x8139BB39\t0x31EB\n0x8139BC30\t0x31EC\n0x8139BC31\t0x31ED\n0x8139BC32\t0x31EE\n0x8139BC33\t0x31EF\n0x8139BC34\t0x31F0\n0x8139BC35\t0x31F1\n0x8139BC36\t0x31F2\n0x8139BC37\t0x31F3\n0x8139BC38\t0x31F4\n0x8139BC39\t0x31F5\n0x8139BD30\t0x31F6\n0x8139BD31\t0x31F7\n0x8139BD32\t0x31F8\n0x8139BD33\t0x31F9\n0x8139BD34\t0x31FA\n0x8139BD35\t0x31FB\n0x8139BD36\t0x31FC\n0x8139BD37\t0x31FD\n0x8139BD38\t0x31FE\n0x8139BD39\t0x31FF\n0x8139BE30\t0x3200\n0x8139BE31\t0x3201\n0x8139BE32\t0x3202\n0x8139BE33\t0x3203\n0x8139BE34\t0x3204\n0x8139BE35\t0x3205\n0x8139BE36\t0x3206\n0x8139BE37\t0x3207\n0x8139BE38\t0x3208\n0x8139BE39\t0x3209\n0x8139BF30\t0x320A\n0x8139BF31\t0x320B\n0x8139BF32\t0x320C\n0x8139BF33\t0x320D\n0x8139BF34\t0x320E\n0x8139BF35\t0x320F\n0x8139BF36\t0x3210\n0x8139BF37\t0x3211\n0x8139BF38\t0x3212\n0x8139BF39\t0x3213\n0x8139C030\t0x3214\n0x8139C031\t0x3215\n0x8139C032\t0x3216\n0x8139C033\t0x3217\n0x8139C034\t0x3218\n0x8139C035\t0x3219\n0x8139C036\t0x321A\n0x8139C037\t0x321B\n0x8139C038\t0x321C\n0x8139C039\t0x321D\n0x8139C130\t0x321E\n0x8139C131\t0x321F\n0x8139C132\t0x322A\n0x8139C133\t0x322B\n0x8139C134\t0x322C\n0x8139C135\t0x322D\n0x8139C136\t0x322E\n0x8139C137\t0x322F\n0x8139C138\t0x3230\n0x8139C139\t0x3232\n0x8139C230\t0x3233\n0x8139C231\t0x3234\n0x8139C232\t0x3235\n0x8139C233\t0x3236\n0x8139C234\t0x3237\n0x8139C235\t0x3238\n0x8139C236\t0x3239\n0x8139C237\t0x323A\n0x8139C238\t0x323B\n0x8139C239\t0x323C\n0x8139C330\t0x323D\n0x8139C331\t0x323E\n0x8139C332\t0x323F\n0x8139C333\t0x3240\n0x8139C334\t0x3241\n0x8139C335\t0x3242\n0x8139C336\t0x3243\n0x8139C337\t0x3244\n0x8139C338\t0x3245\n0x8139C339\t0x3246\n0x8139C430\t0x3247\n0x8139C431\t0x3248\n0x8139C432\t0x3249\n0x8139C433\t0x324A\n0x8139C434\t0x324B\n0x8139C435\t0x324C\n0x8139C436\t0x324D\n0x8139C437\t0x324E\n0x8139C438\t0x324F\n0x8139C439\t0x3250\n0x8139C530\t0x3251\n0x8139C531\t0x3252\n0x8139C532\t0x3253\n0x8139C533\t0x3254\n0x8139C534\t0x3255\n0x8139C535\t0x3256\n0x8139C536\t0x3257\n0x8139C537\t0x3258\n0x8139C538\t0x3259\n0x8139C539\t0x325A\n0x8139C630\t0x325B\n0x8139C631\t0x325C\n0x8139C632\t0x325D\n0x8139C633\t0x325E\n0x8139C634\t0x325F\n0x8139C635\t0x3260\n0x8139C636\t0x3261\n0x8139C637\t0x3262\n0x8139C638\t0x3263\n0x8139C639\t0x3264\n0x8139C730\t0x3265\n0x8139C731\t0x3266\n0x8139C732\t0x3267\n0x8139C733\t0x3268\n0x8139C734\t0x3269\n0x8139C735\t0x326A\n0x8139C736\t0x326B\n0x8139C737\t0x326C\n0x8139C738\t0x326D\n0x8139C739\t0x326E\n0x8139C830\t0x326F\n0x8139C831\t0x3270\n0x8139C832\t0x3271\n0x8139C833\t0x3272\n0x8139C834\t0x3273\n0x8139C835\t0x3274\n0x8139C836\t0x3275\n0x8139C837\t0x3276\n0x8139C838\t0x3277\n0x8139C839\t0x3278\n0x8139C930\t0x3279\n0x8139C931\t0x327A\n0x8139C932\t0x327B\n0x8139C933\t0x327C\n0x8139C934\t0x327D\n0x8139C935\t0x327E\n0x8139C936\t0x327F\n0x8139C937\t0x3280\n0x8139C938\t0x3281\n0x8139C939\t0x3282\n0x8139CA30\t0x3283\n0x8139CA31\t0x3284\n0x8139CA32\t0x3285\n0x8139CA33\t0x3286\n0x8139CA34\t0x3287\n0x8139CA35\t0x3288\n0x8139CA36\t0x3289\n0x8139CA37\t0x328A\n0x8139CA38\t0x328B\n0x8139CA39\t0x328C\n0x8139CB30\t0x328D\n0x8139CB31\t0x328E\n0x8139CB32\t0x328F\n0x8139CB33\t0x3290\n0x8139CB34\t0x3291\n0x8139CB35\t0x3292\n0x8139CB36\t0x3293\n0x8139CB37\t0x3294\n0x8139CB38\t0x3295\n0x8139CB39\t0x3296\n0x8139CC30\t0x3297\n0x8139CC31\t0x3298\n0x8139CC32\t0x3299\n0x8139CC33\t0x329A\n0x8139CC34\t0x329B\n0x8139CC35\t0x329C\n0x8139CC36\t0x329D\n0x8139CC37\t0x329E\n0x8139CC38\t0x329F\n0x8139CC39\t0x32A0\n0x8139CD30\t0x32A1\n0x8139CD31\t0x32A2\n0x8139CD32\t0x32A4\n0x8139CD33\t0x32A5\n0x8139CD34\t0x32A6\n0x8139CD35\t0x32A7\n0x8139CD36\t0x32A8\n0x8139CD37\t0x32A9\n0x8139CD38\t0x32AA\n0x8139CD39\t0x32AB\n0x8139CE30\t0x32AC\n0x8139CE31\t0x32AD\n0x8139CE32\t0x32AE\n0x8139CE33\t0x32AF\n0x8139CE34\t0x32B0\n0x8139CE35\t0x32B1\n0x8139CE36\t0x32B2\n0x8139CE37\t0x32B3\n0x8139CE38\t0x32B4\n0x8139CE39\t0x32B5\n0x8139CF30\t0x32B6\n0x8139CF31\t0x32B7\n0x8139CF32\t0x32B8\n0x8139CF33\t0x32B9\n0x8139CF34\t0x32BA\n0x8139CF35\t0x32BB\n0x8139CF36\t0x32BC\n0x8139CF37\t0x32BD\n0x8139CF38\t0x32BE\n0x8139CF39\t0x32BF\n0x8139D030\t0x32C0\n0x8139D031\t0x32C1\n0x8139D032\t0x32C2\n0x8139D033\t0x32C3\n0x8139D034\t0x32C4\n0x8139D035\t0x32C5\n0x8139D036\t0x32C6\n0x8139D037\t0x32C7\n0x8139D038\t0x32C8\n0x8139D039\t0x32C9\n0x8139D130\t0x32CA\n0x8139D131\t0x32CB\n0x8139D132\t0x32CC\n0x8139D133\t0x32CD\n0x8139D134\t0x32CE\n0x8139D135\t0x32CF\n0x8139D136\t0x32D0\n0x8139D137\t0x32D1\n0x8139D138\t0x32D2\n0x8139D139\t0x32D3\n0x8139D230\t0x32D4\n0x8139D231\t0x32D5\n0x8139D232\t0x32D6\n0x8139D233\t0x32D7\n0x8139D234\t0x32D8\n0x8139D235\t0x32D9\n0x8139D236\t0x32DA\n0x8139D237\t0x32DB\n0x8139D238\t0x32DC\n0x8139D239\t0x32DD\n0x8139D330\t0x32DE\n0x8139D331\t0x32DF\n0x8139D332\t0x32E0\n0x8139D333\t0x32E1\n0x8139D334\t0x32E2\n0x8139D335\t0x32E3\n0x8139D336\t0x32E4\n0x8139D337\t0x32E5\n0x8139D338\t0x32E6\n0x8139D339\t0x32E7\n0x8139D430\t0x32E8\n0x8139D431\t0x32E9\n0x8139D432\t0x32EA\n0x8139D433\t0x32EB\n0x8139D434\t0x32EC\n0x8139D435\t0x32ED\n0x8139D436\t0x32EE\n0x8139D437\t0x32EF\n0x8139D438\t0x32F0\n0x8139D439\t0x32F1\n0x8139D530\t0x32F2\n0x8139D531\t0x32F3\n0x8139D532\t0x32F4\n0x8139D533\t0x32F5\n0x8139D534\t0x32F6\n0x8139D535\t0x32F7\n0x8139D536\t0x32F8\n0x8139D537\t0x32F9\n0x8139D538\t0x32FA\n0x8139D539\t0x32FB\n0x8139D630\t0x32FC\n0x8139D631\t0x32FD\n0x8139D632\t0x32FE\n0x8139D633\t0x32FF\n0x8139D634\t0x3300\n0x8139D635\t0x3301\n0x8139D636\t0x3302\n0x8139D637\t0x3303\n0x8139D638\t0x3304\n0x8139D639\t0x3305\n0x8139D730\t0x3306\n0x8139D731\t0x3307\n0x8139D732\t0x3308\n0x8139D733\t0x3309\n0x8139D734\t0x330A\n0x8139D735\t0x330B\n0x8139D736\t0x330C\n0x8139D737\t0x330D\n0x8139D738\t0x330E\n0x8139D739\t0x330F\n0x8139D830\t0x3310\n0x8139D831\t0x3311\n0x8139D832\t0x3312\n0x8139D833\t0x3313\n0x8139D834\t0x3314\n0x8139D835\t0x3315\n0x8139D836\t0x3316\n0x8139D837\t0x3317\n0x8139D838\t0x3318\n0x8139D839\t0x3319\n0x8139D930\t0x331A\n0x8139D931\t0x331B\n0x8139D932\t0x331C\n0x8139D933\t0x331D\n0x8139D934\t0x331E\n0x8139D935\t0x331F\n0x8139D936\t0x3320\n0x8139D937\t0x3321\n0x8139D938\t0x3322\n0x8139D939\t0x3323\n0x8139DA30\t0x3324\n0x8139DA31\t0x3325\n0x8139DA32\t0x3326\n0x8139DA33\t0x3327\n0x8139DA34\t0x3328\n0x8139DA35\t0x3329\n0x8139DA36\t0x332A\n0x8139DA37\t0x332B\n0x8139DA38\t0x332C\n0x8139DA39\t0x332D\n0x8139DB30\t0x332E\n0x8139DB31\t0x332F\n0x8139DB32\t0x3330\n0x8139DB33\t0x3331\n0x8139DB34\t0x3332\n0x8139DB35\t0x3333\n0x8139DB36\t0x3334\n0x8139DB37\t0x3335\n0x8139DB38\t0x3336\n0x8139DB39\t0x3337\n0x8139DC30\t0x3338\n0x8139DC31\t0x3339\n0x8139DC32\t0x333A\n0x8139DC33\t0x333B\n0x8139DC34\t0x333C\n0x8139DC35\t0x333D\n0x8139DC36\t0x333E\n0x8139DC37\t0x333F\n0x8139DC38\t0x3340\n0x8139DC39\t0x3341\n0x8139DD30\t0x3342\n0x8139DD31\t0x3343\n0x8139DD32\t0x3344\n0x8139DD33\t0x3345\n0x8139DD34\t0x3346\n0x8139DD35\t0x3347\n0x8139DD36\t0x3348\n0x8139DD37\t0x3349\n0x8139DD38\t0x334A\n0x8139DD39\t0x334B\n0x8139DE30\t0x334C\n0x8139DE31\t0x334D\n0x8139DE32\t0x334E\n0x8139DE33\t0x334F\n0x8139DE34\t0x3350\n0x8139DE35\t0x3351\n0x8139DE36\t0x3352\n0x8139DE37\t0x3353\n0x8139DE38\t0x3354\n0x8139DE39\t0x3355\n0x8139DF30\t0x3356\n0x8139DF31\t0x3357\n0x8139DF32\t0x3358\n0x8139DF33\t0x3359\n0x8139DF34\t0x335A\n0x8139DF35\t0x335B\n0x8139DF36\t0x335C\n0x8139DF37\t0x335D\n0x8139DF38\t0x335E\n0x8139DF39\t0x335F\n0x8139E030\t0x3360\n0x8139E031\t0x3361\n0x8139E032\t0x3362\n0x8139E033\t0x3363\n0x8139E034\t0x3364\n0x8139E035\t0x3365\n0x8139E036\t0x3366\n0x8139E037\t0x3367\n0x8139E038\t0x3368\n0x8139E039\t0x3369\n0x8139E130\t0x336A\n0x8139E131\t0x336B\n0x8139E132\t0x336C\n0x8139E133\t0x336D\n0x8139E134\t0x336E\n0x8139E135\t0x336F\n0x8139E136\t0x3370\n0x8139E137\t0x3371\n0x8139E138\t0x3372\n0x8139E139\t0x3373\n0x8139E230\t0x3374\n0x8139E231\t0x3375\n0x8139E232\t0x3376\n0x8139E233\t0x3377\n0x8139E234\t0x3378\n0x8139E235\t0x3379\n0x8139E236\t0x337A\n0x8139E237\t0x337B\n0x8139E238\t0x337C\n0x8139E239\t0x337D\n0x8139E330\t0x337E\n0x8139E331\t0x337F\n0x8139E332\t0x3380\n0x8139E333\t0x3381\n0x8139E334\t0x3382\n0x8139E335\t0x3383\n0x8139E336\t0x3384\n0x8139E337\t0x3385\n0x8139E338\t0x3386\n0x8139E339\t0x3387\n0x8139E430\t0x3388\n0x8139E431\t0x3389\n0x8139E432\t0x338A\n0x8139E433\t0x338B\n0x8139E434\t0x338C\n0x8139E435\t0x338D\n0x8139E436\t0x3390\n0x8139E437\t0x3391\n0x8139E438\t0x3392\n0x8139E439\t0x3393\n0x8139E530\t0x3394\n0x8139E531\t0x3395\n0x8139E532\t0x3396\n0x8139E533\t0x3397\n0x8139E534\t0x3398\n0x8139E535\t0x3399\n0x8139E536\t0x339A\n0x8139E537\t0x339B\n0x8139E538\t0x339F\n0x8139E539\t0x33A0\n0x8139E630\t0x33A2\n0x8139E631\t0x33A3\n0x8139E632\t0x33A4\n0x8139E633\t0x33A5\n0x8139E634\t0x33A6\n0x8139E635\t0x33A7\n0x8139E636\t0x33A8\n0x8139E637\t0x33A9\n0x8139E638\t0x33AA\n0x8139E639\t0x33AB\n0x8139E730\t0x33AC\n0x8139E731\t0x33AD\n0x8139E732\t0x33AE\n0x8139E733\t0x33AF\n0x8139E734\t0x33B0\n0x8139E735\t0x33B1\n0x8139E736\t0x33B2\n0x8139E737\t0x33B3\n0x8139E738\t0x33B4\n0x8139E739\t0x33B5\n0x8139E830\t0x33B6\n0x8139E831\t0x33B7\n0x8139E832\t0x33B8\n0x8139E833\t0x33B9\n0x8139E834\t0x33BA\n0x8139E835\t0x33BB\n0x8139E836\t0x33BC\n0x8139E837\t0x33BD\n0x8139E838\t0x33BE\n0x8139E839\t0x33BF\n0x8139E930\t0x33C0\n0x8139E931\t0x33C1\n0x8139E932\t0x33C2\n0x8139E933\t0x33C3\n0x8139E934\t0x33C5\n0x8139E935\t0x33C6\n0x8139E936\t0x33C7\n0x8139E937\t0x33C8\n0x8139E938\t0x33C9\n0x8139E939\t0x33CA\n0x8139EA30\t0x33CB\n0x8139EA31\t0x33CC\n0x8139EA32\t0x33CD\n0x8139EA33\t0x33CF\n0x8139EA34\t0x33D0\n0x8139EA35\t0x33D3\n0x8139EA36\t0x33D4\n0x8139EA37\t0x33D6\n0x8139EA38\t0x33D7\n0x8139EA39\t0x33D8\n0x8139EB30\t0x33D9\n0x8139EB31\t0x33DA\n0x8139EB32\t0x33DB\n0x8139EB33\t0x33DC\n0x8139EB34\t0x33DD\n0x8139EB35\t0x33DE\n0x8139EB36\t0x33DF\n0x8139EB37\t0x33E0\n0x8139EB38\t0x33E1\n0x8139EB39\t0x33E2\n0x8139EC30\t0x33E3\n0x8139EC31\t0x33E4\n0x8139EC32\t0x33E5\n0x8139EC33\t0x33E6\n0x8139EC34\t0x33E7\n0x8139EC35\t0x33E8\n0x8139EC36\t0x33E9\n0x8139EC37\t0x33EA\n0x8139EC38\t0x33EB\n0x8139EC39\t0x33EC\n0x8139ED30\t0x33ED\n0x8139ED31\t0x33EE\n0x8139ED32\t0x33EF\n0x8139ED33\t0x33F0\n0x8139ED34\t0x33F1\n0x8139ED35\t0x33F2\n0x8139ED36\t0x33F3\n0x8139ED37\t0x33F4\n0x8139ED38\t0x33F5\n0x8139ED39\t0x33F6\n0x8139EE30\t0x33F7\n0x8139EE31\t0x33F8\n0x8139EE32\t0x33F9\n0x8139EE33\t0x33FA\n0x8139EE34\t0x33FB\n0x8139EE35\t0x33FC\n0x8139EE36\t0x33FD\n0x8139EE37\t0x33FE\n0x8139EE38\t0x33FF\n0x8139EE39\t0x3400\n0x8139EF30\t0x3401\n0x8139EF31\t0x3402\n0x8139EF32\t0x3403\n0x8139EF33\t0x3404\n0x8139EF34\t0x3405\n0x8139EF35\t0x3406\n0x8139EF36\t0x3407\n0x8139EF37\t0x3408\n0x8139EF38\t0x3409\n0x8139EF39\t0x340A\n0x8139F030\t0x340B\n0x8139F031\t0x340C\n0x8139F032\t0x340D\n0x8139F033\t0x340E\n0x8139F034\t0x340F\n0x8139F035\t0x3410\n0x8139F036\t0x3411\n0x8139F037\t0x3412\n0x8139F038\t0x3413\n0x8139F039\t0x3414\n0x8139F130\t0x3415\n0x8139F131\t0x3416\n0x8139F132\t0x3417\n0x8139F133\t0x3418\n0x8139F134\t0x3419\n0x8139F135\t0x341A\n0x8139F136\t0x341B\n0x8139F137\t0x341C\n0x8139F138\t0x341D\n0x8139F139\t0x341E\n0x8139F230\t0x341F\n0x8139F231\t0x3420\n0x8139F232\t0x3421\n0x8139F233\t0x3422\n0x8139F234\t0x3423\n0x8139F235\t0x3424\n0x8139F236\t0x3425\n0x8139F237\t0x3426\n0x8139F238\t0x3427\n0x8139F239\t0x3428\n0x8139F330\t0x3429\n0x8139F331\t0x342A\n0x8139F332\t0x342B\n0x8139F333\t0x342C\n0x8139F334\t0x342D\n0x8139F335\t0x342E\n0x8139F336\t0x342F\n0x8139F337\t0x3430\n0x8139F338\t0x3431\n0x8139F339\t0x3432\n0x8139F430\t0x3433\n0x8139F431\t0x3434\n0x8139F432\t0x3435\n0x8139F433\t0x3436\n0x8139F434\t0x3437\n0x8139F435\t0x3438\n0x8139F436\t0x3439\n0x8139F437\t0x343A\n0x8139F438\t0x343B\n0x8139F439\t0x343C\n0x8139F530\t0x343D\n0x8139F531\t0x343E\n0x8139F532\t0x343F\n0x8139F533\t0x3440\n0x8139F534\t0x3441\n0x8139F535\t0x3442\n0x8139F536\t0x3443\n0x8139F537\t0x3444\n0x8139F538\t0x3445\n0x8139F539\t0x3446\n0x8139F630\t0x3448\n0x8139F631\t0x3449\n0x8139F632\t0x344A\n0x8139F633\t0x344B\n0x8139F634\t0x344C\n0x8139F635\t0x344D\n0x8139F636\t0x344E\n0x8139F637\t0x344F\n0x8139F638\t0x3450\n0x8139F639\t0x3451\n0x8139F730\t0x3452\n0x8139F731\t0x3453\n0x8139F732\t0x3454\n0x8139F733\t0x3455\n0x8139F734\t0x3456\n0x8139F735\t0x3457\n0x8139F736\t0x3458\n0x8139F737\t0x3459\n0x8139F738\t0x345A\n0x8139F739\t0x345B\n0x8139F830\t0x345C\n0x8139F831\t0x345D\n0x8139F832\t0x345E\n0x8139F833\t0x345F\n0x8139F834\t0x3460\n0x8139F835\t0x3461\n0x8139F836\t0x3462\n0x8139F837\t0x3463\n0x8139F838\t0x3464\n0x8139F839\t0x3465\n0x8139F930\t0x3466\n0x8139F931\t0x3467\n0x8139F932\t0x3468\n0x8139F933\t0x3469\n0x8139F934\t0x346A\n0x8139F935\t0x346B\n0x8139F936\t0x346C\n0x8139F937\t0x346D\n0x8139F938\t0x346E\n0x8139F939\t0x346F\n0x8139FA30\t0x3470\n0x8139FA31\t0x3471\n0x8139FA32\t0x3472\n0x8139FA33\t0x3474\n0x8139FA34\t0x3475\n0x8139FA35\t0x3476\n0x8139FA36\t0x3477\n0x8139FA37\t0x3478\n0x8139FA38\t0x3479\n0x8139FA39\t0x347A\n0x8139FB30\t0x347B\n0x8139FB31\t0x347C\n0x8139FB32\t0x347D\n0x8139FB33\t0x347E\n0x8139FB34\t0x347F\n0x8139FB35\t0x3480\n0x8139FB36\t0x3481\n0x8139FB37\t0x3482\n0x8139FB38\t0x3483\n0x8139FB39\t0x3484\n0x8139FC30\t0x3485\n0x8139FC31\t0x3486\n0x8139FC32\t0x3487\n0x8139FC33\t0x3488\n0x8139FC34\t0x3489\n0x8139FC35\t0x348A\n0x8139FC36\t0x348B\n0x8139FC37\t0x348C\n0x8139FC38\t0x348D\n0x8139FC39\t0x348E\n0x8139FD30\t0x348F\n0x8139FD31\t0x3490\n0x8139FD32\t0x3491\n0x8139FD33\t0x3492\n0x8139FD34\t0x3493\n0x8139FD35\t0x3494\n0x8139FD36\t0x3495\n0x8139FD37\t0x3496\n0x8139FD38\t0x3497\n0x8139FD39\t0x3498\n0x8139FE30\t0x3499\n0x8139FE31\t0x349A\n0x8139FE32\t0x349B\n0x8139FE33\t0x349C\n0x8139FE34\t0x349D\n0x8139FE35\t0x349E\n0x8139FE36\t0x349F\n0x8139FE37\t0x34A0\n0x8139FE38\t0x34A1\n0x8139FE39\t0x34A2\n0x8140\t0x4E02\n0x8141\t0x4E04\n0x8142\t0x4E05\n0x8143\t0x4E06\n0x8144\t0x4E0F\n0x8145\t0x4E12\n0x8146\t0x4E17\n0x8147\t0x4E1F\n0x8148\t0x4E20\n0x8149\t0x4E21\n0x814A\t0x4E23\n0x814B\t0x4E26\n0x814C\t0x4E29\n0x814D\t0x4E2E\n0x814E\t0x4E2F\n0x814F\t0x4E31\n0x8150\t0x4E33\n0x8151\t0x4E35\n0x8152\t0x4E37\n0x8153\t0x4E3C\n0x8154\t0x4E40\n0x8155\t0x4E41\n0x8156\t0x4E42\n0x8157\t0x4E44\n0x8158\t0x4E46\n0x8159\t0x4E4A\n0x815A\t0x4E51\n0x815B\t0x4E55\n0x815C\t0x4E57\n0x815D\t0x4E5A\n0x815E\t0x4E5B\n0x815F\t0x4E62\n0x8160\t0x4E63\n0x8161\t0x4E64\n0x8162\t0x4E65\n0x8163\t0x4E67\n0x8164\t0x4E68\n0x8165\t0x4E6A\n0x8166\t0x4E6B\n0x8167\t0x4E6C\n0x8168\t0x4E6D\n0x8169\t0x4E6E\n0x816A\t0x4E6F\n0x816B\t0x4E72\n0x816C\t0x4E74\n0x816D\t0x4E75\n0x816E\t0x4E76\n0x816F\t0x4E77\n0x8170\t0x4E78\n0x8171\t0x4E79\n0x8172\t0x4E7A\n0x8173\t0x4E7B\n0x8174\t0x4E7C\n0x8175\t0x4E7D\n0x8176\t0x4E7F\n0x8177\t0x4E80\n0x8178\t0x4E81\n0x8179\t0x4E82\n0x817A\t0x4E83\n0x817B\t0x4E84\n0x817C\t0x4E85\n0x817D\t0x4E87\n0x817E\t0x4E8A\n0x8180\t0x4E90\n0x8181\t0x4E96\n0x8182\t0x4E97\n0x8183\t0x4E99\n0x8184\t0x4E9C\n0x8185\t0x4E9D\n0x8186\t0x4E9E\n0x8187\t0x4EA3\n0x8188\t0x4EAA\n0x8189\t0x4EAF\n0x818A\t0x4EB0\n0x818B\t0x4EB1\n0x818C\t0x4EB4\n0x818D\t0x4EB6\n0x818E\t0x4EB7\n0x818F\t0x4EB8\n0x8190\t0x4EB9\n0x8191\t0x4EBC\n0x8192\t0x4EBD\n0x8193\t0x4EBE\n0x8194\t0x4EC8\n0x8195\t0x4ECC\n0x8196\t0x4ECF\n0x8197\t0x4ED0\n0x8198\t0x4ED2\n0x8199\t0x4EDA\n0x819A\t0x4EDB\n0x819B\t0x4EDC\n0x819C\t0x4EE0\n0x819D\t0x4EE2\n0x819E\t0x4EE6\n0x819F\t0x4EE7\n0x81A0\t0x4EE9\n0x81A1\t0x4EED\n0x81A2\t0x4EEE\n0x81A3\t0x4EEF\n0x81A4\t0x4EF1\n0x81A5\t0x4EF4\n0x81A6\t0x4EF8\n0x81A7\t0x4EF9\n0x81A8\t0x4EFA\n0x81A9\t0x4EFC\n0x81AA\t0x4EFE\n0x81AB\t0x4F00\n0x81AC\t0x4F02\n0x81AD\t0x4F03\n0x81AE\t0x4F04\n0x81AF\t0x4F05\n0x81B0\t0x4F06\n0x81B1\t0x4F07\n0x81B2\t0x4F08\n0x81B3\t0x4F0B\n0x81B4\t0x4F0C\n0x81B5\t0x4F12\n0x81B6\t0x4F13\n0x81B7\t0x4F14\n0x81B8\t0x4F15\n0x81B9\t0x4F16\n0x81BA\t0x4F1C\n0x81BB\t0x4F1D\n0x81BC\t0x4F21\n0x81BD\t0x4F23\n0x81BE\t0x4F28\n0x81BF\t0x4F29\n0x81C0\t0x4F2C\n0x81C1\t0x4F2D\n0x81C2\t0x4F2E\n0x81C3\t0x4F31\n0x81C4\t0x4F33\n0x81C5\t0x4F35\n0x81C6\t0x4F37\n0x81C7\t0x4F39\n0x81C8\t0x4F3B\n0x81C9\t0x4F3E\n0x81CA\t0x4F3F\n0x81CB\t0x4F40\n0x81CC\t0x4F41\n0x81CD\t0x4F42\n0x81CE\t0x4F44\n0x81CF\t0x4F45\n0x81D0\t0x4F47\n0x81D1\t0x4F48\n0x81D2\t0x4F49\n0x81D3\t0x4F4A\n0x81D4\t0x4F4B\n0x81D5\t0x4F4C\n0x81D6\t0x4F52\n0x81D7\t0x4F54\n0x81D8\t0x4F56\n0x81D9\t0x4F61\n0x81DA\t0x4F62\n0x81DB\t0x4F66\n0x81DC\t0x4F68\n0x81DD\t0x4F6A\n0x81DE\t0x4F6B\n0x81DF\t0x4F6D\n0x81E0\t0x4F6E\n0x81E1\t0x4F71\n0x81E2\t0x4F72\n0x81E3\t0x4F75\n0x81E4\t0x4F77\n0x81E5\t0x4F78\n0x81E6\t0x4F79\n0x81E7\t0x4F7A\n0x81E8\t0x4F7D\n0x81E9\t0x4F80\n0x81EA\t0x4F81\n0x81EB\t0x4F82\n0x81EC\t0x4F85\n0x81ED\t0x4F86\n0x81EE\t0x4F87\n0x81EF\t0x4F8A\n0x81F0\t0x4F8C\n0x81F1\t0x4F8E\n0x81F2\t0x4F90\n0x81F3\t0x4F92\n0x81F4\t0x4F93\n0x81F5\t0x4F95\n0x81F6\t0x4F96\n0x81F7\t0x4F98\n0x81F8\t0x4F99\n0x81F9\t0x4F9A\n0x81FA\t0x4F9C\n0x81FB\t0x4F9E\n0x81FC\t0x4F9F\n0x81FD\t0x4FA1\n0x81FE\t0x4FA2\n0x82308130\t0x34A3\n0x82308131\t0x34A4\n0x82308132\t0x34A5\n0x82308133\t0x34A6\n0x82308134\t0x34A7\n0x82308135\t0x34A8\n0x82308136\t0x34A9\n0x82308137\t0x34AA\n0x82308138\t0x34AB\n0x82308139\t0x34AC\n0x82308230\t0x34AD\n0x82308231\t0x34AE\n0x82308232\t0x34AF\n0x82308233\t0x34B0\n0x82308234\t0x34B1\n0x82308235\t0x34B2\n0x82308236\t0x34B3\n0x82308237\t0x34B4\n0x82308238\t0x34B5\n0x82308239\t0x34B6\n0x82308330\t0x34B7\n0x82308331\t0x34B8\n0x82308332\t0x34B9\n0x82308333\t0x34BA\n0x82308334\t0x34BB\n0x82308335\t0x34BC\n0x82308336\t0x34BD\n0x82308337\t0x34BE\n0x82308338\t0x34BF\n0x82308339\t0x34C0\n0x82308430\t0x34C1\n0x82308431\t0x34C2\n0x82308432\t0x34C3\n0x82308433\t0x34C4\n0x82308434\t0x34C5\n0x82308435\t0x34C6\n0x82308436\t0x34C7\n0x82308437\t0x34C8\n0x82308438\t0x34C9\n0x82308439\t0x34CA\n0x82308530\t0x34CB\n0x82308531\t0x34CC\n0x82308532\t0x34CD\n0x82308533\t0x34CE\n0x82308534\t0x34CF\n0x82308535\t0x34D0\n0x82308536\t0x34D1\n0x82308537\t0x34D2\n0x82308538\t0x34D3\n0x82308539\t0x34D4\n0x82308630\t0x34D5\n0x82308631\t0x34D6\n0x82308632\t0x34D7\n0x82308633\t0x34D8\n0x82308634\t0x34D9\n0x82308635\t0x34DA\n0x82308636\t0x34DB\n0x82308637\t0x34DC\n0x82308638\t0x34DD\n0x82308639\t0x34DE\n0x82308730\t0x34DF\n0x82308731\t0x34E0\n0x82308732\t0x34E1\n0x82308733\t0x34E2\n0x82308734\t0x34E3\n0x82308735\t0x34E4\n0x82308736\t0x34E5\n0x82308737\t0x34E6\n0x82308738\t0x34E7\n0x82308739\t0x34E8\n0x82308830\t0x34E9\n0x82308831\t0x34EA\n0x82308832\t0x34EB\n0x82308833\t0x34EC\n0x82308834\t0x34ED\n0x82308835\t0x34EE\n0x82308836\t0x34EF\n0x82308837\t0x34F0\n0x82308838\t0x34F1\n0x82308839\t0x34F2\n0x82308930\t0x34F3\n0x82308931\t0x34F4\n0x82308932\t0x34F5\n0x82308933\t0x34F6\n0x82308934\t0x34F7\n0x82308935\t0x34F8\n0x82308936\t0x34F9\n0x82308937\t0x34FA\n0x82308938\t0x34FB\n0x82308939\t0x34FC\n0x82308A30\t0x34FD\n0x82308A31\t0x34FE\n0x82308A32\t0x34FF\n0x82308A33\t0x3500\n0x82308A34\t0x3501\n0x82308A35\t0x3502\n0x82308A36\t0x3503\n0x82308A37\t0x3504\n0x82308A38\t0x3505\n0x82308A39\t0x3506\n0x82308B30\t0x3507\n0x82308B31\t0x3508\n0x82308B32\t0x3509\n0x82308B33\t0x350A\n0x82308B34\t0x350B\n0x82308B35\t0x350C\n0x82308B36\t0x350D\n0x82308B37\t0x350E\n0x82308B38\t0x350F\n0x82308B39\t0x3510\n0x82308C30\t0x3511\n0x82308C31\t0x3512\n0x82308C32\t0x3513\n0x82308C33\t0x3514\n0x82308C34\t0x3515\n0x82308C35\t0x3516\n0x82308C36\t0x3517\n0x82308C37\t0x3518\n0x82308C38\t0x3519\n0x82308C39\t0x351A\n0x82308D30\t0x351B\n0x82308D31\t0x351C\n0x82308D32\t0x351D\n0x82308D33\t0x351E\n0x82308D34\t0x351F\n0x82308D35\t0x3520\n0x82308D36\t0x3521\n0x82308D37\t0x3522\n0x82308D38\t0x3523\n0x82308D39\t0x3524\n0x82308E30\t0x3525\n0x82308E31\t0x3526\n0x82308E32\t0x3527\n0x82308E33\t0x3528\n0x82308E34\t0x3529\n0x82308E35\t0x352A\n0x82308E36\t0x352B\n0x82308E37\t0x352C\n0x82308E38\t0x352D\n0x82308E39\t0x352E\n0x82308F30\t0x352F\n0x82308F31\t0x3530\n0x82308F32\t0x3531\n0x82308F33\t0x3532\n0x82308F34\t0x3533\n0x82308F35\t0x3534\n0x82308F36\t0x3535\n0x82308F37\t0x3536\n0x82308F38\t0x3537\n0x82308F39\t0x3538\n0x82309030\t0x3539\n0x82309031\t0x353A\n0x82309032\t0x353B\n0x82309033\t0x353C\n0x82309034\t0x353D\n0x82309035\t0x353E\n0x82309036\t0x353F\n0x82309037\t0x3540\n0x82309038\t0x3541\n0x82309039\t0x3542\n0x82309130\t0x3543\n0x82309131\t0x3544\n0x82309132\t0x3545\n0x82309133\t0x3546\n0x82309134\t0x3547\n0x82309135\t0x3548\n0x82309136\t0x3549\n0x82309137\t0x354A\n0x82309138\t0x354B\n0x82309139\t0x354C\n0x82309230\t0x354D\n0x82309231\t0x354E\n0x82309232\t0x354F\n0x82309233\t0x3550\n0x82309234\t0x3551\n0x82309235\t0x3552\n0x82309236\t0x3553\n0x82309237\t0x3554\n0x82309238\t0x3555\n0x82309239\t0x3556\n0x82309330\t0x3557\n0x82309331\t0x3558\n0x82309332\t0x3559\n0x82309333\t0x355A\n0x82309334\t0x355B\n0x82309335\t0x355C\n0x82309336\t0x355D\n0x82309337\t0x355E\n0x82309338\t0x355F\n0x82309339\t0x3560\n0x82309430\t0x3561\n0x82309431\t0x3562\n0x82309432\t0x3563\n0x82309433\t0x3564\n0x82309434\t0x3565\n0x82309435\t0x3566\n0x82309436\t0x3567\n0x82309437\t0x3568\n0x82309438\t0x3569\n0x82309439\t0x356A\n0x82309530\t0x356B\n0x82309531\t0x356C\n0x82309532\t0x356D\n0x82309533\t0x356E\n0x82309534\t0x356F\n0x82309535\t0x3570\n0x82309536\t0x3571\n0x82309537\t0x3572\n0x82309538\t0x3573\n0x82309539\t0x3574\n0x82309630\t0x3575\n0x82309631\t0x3576\n0x82309632\t0x3577\n0x82309633\t0x3578\n0x82309634\t0x3579\n0x82309635\t0x357A\n0x82309636\t0x357B\n0x82309637\t0x357C\n0x82309638\t0x357D\n0x82309639\t0x357E\n0x82309730\t0x357F\n0x82309731\t0x3580\n0x82309732\t0x3581\n0x82309733\t0x3582\n0x82309734\t0x3583\n0x82309735\t0x3584\n0x82309736\t0x3585\n0x82309737\t0x3586\n0x82309738\t0x3587\n0x82309739\t0x3588\n0x82309830\t0x3589\n0x82309831\t0x358A\n0x82309832\t0x358B\n0x82309833\t0x358C\n0x82309834\t0x358D\n0x82309835\t0x358E\n0x82309836\t0x358F\n0x82309837\t0x3590\n0x82309838\t0x3591\n0x82309839\t0x3592\n0x82309930\t0x3593\n0x82309931\t0x3594\n0x82309932\t0x3595\n0x82309933\t0x3596\n0x82309934\t0x3597\n0x82309935\t0x3598\n0x82309936\t0x3599\n0x82309937\t0x359A\n0x82309938\t0x359B\n0x82309939\t0x359C\n0x82309A30\t0x359D\n0x82309A31\t0x359F\n0x82309A32\t0x35A0\n0x82309A33\t0x35A1\n0x82309A34\t0x35A2\n0x82309A35\t0x35A3\n0x82309A36\t0x35A4\n0x82309A37\t0x35A5\n0x82309A38\t0x35A6\n0x82309A39\t0x35A7\n0x82309B30\t0x35A8\n0x82309B31\t0x35A9\n0x82309B32\t0x35AA\n0x82309B33\t0x35AB\n0x82309B34\t0x35AC\n0x82309B35\t0x35AD\n0x82309B36\t0x35AE\n0x82309B37\t0x35AF\n0x82309B38\t0x35B0\n0x82309B39\t0x35B1\n0x82309C30\t0x35B2\n0x82309C31\t0x35B3\n0x82309C32\t0x35B4\n0x82309C33\t0x35B5\n0x82309C34\t0x35B6\n0x82309C35\t0x35B7\n0x82309C36\t0x35B8\n0x82309C37\t0x35B9\n0x82309C38\t0x35BA\n0x82309C39\t0x35BB\n0x82309D30\t0x35BC\n0x82309D31\t0x35BD\n0x82309D32\t0x35BE\n0x82309D33\t0x35BF\n0x82309D34\t0x35C0\n0x82309D35\t0x35C1\n0x82309D36\t0x35C2\n0x82309D37\t0x35C3\n0x82309D38\t0x35C4\n0x82309D39\t0x35C5\n0x82309E30\t0x35C6\n0x82309E31\t0x35C7\n0x82309E32\t0x35C8\n0x82309E33\t0x35C9\n0x82309E34\t0x35CA\n0x82309E35\t0x35CB\n0x82309E36\t0x35CC\n0x82309E37\t0x35CD\n0x82309E38\t0x35CE\n0x82309E39\t0x35CF\n0x82309F30\t0x35D0\n0x82309F31\t0x35D1\n0x82309F32\t0x35D2\n0x82309F33\t0x35D3\n0x82309F34\t0x35D4\n0x82309F35\t0x35D5\n0x82309F36\t0x35D6\n0x82309F37\t0x35D7\n0x82309F38\t0x35D8\n0x82309F39\t0x35D9\n0x8230A030\t0x35DA\n0x8230A031\t0x35DB\n0x8230A032\t0x35DC\n0x8230A033\t0x35DD\n0x8230A034\t0x35DE\n0x8230A035\t0x35DF\n0x8230A036\t0x35E0\n0x8230A037\t0x35E1\n0x8230A038\t0x35E2\n0x8230A039\t0x35E3\n0x8230A130\t0x35E4\n0x8230A131\t0x35E5\n0x8230A132\t0x35E6\n0x8230A133\t0x35E7\n0x8230A134\t0x35E8\n0x8230A135\t0x35E9\n0x8230A136\t0x35EA\n0x8230A137\t0x35EB\n0x8230A138\t0x35EC\n0x8230A139\t0x35ED\n0x8230A230\t0x35EE\n0x8230A231\t0x35EF\n0x8230A232\t0x35F0\n0x8230A233\t0x35F1\n0x8230A234\t0x35F2\n0x8230A235\t0x35F3\n0x8230A236\t0x35F4\n0x8230A237\t0x35F5\n0x8230A238\t0x35F6\n0x8230A239\t0x35F7\n0x8230A330\t0x35F8\n0x8230A331\t0x35F9\n0x8230A332\t0x35FA\n0x8230A333\t0x35FB\n0x8230A334\t0x35FC\n0x8230A335\t0x35FD\n0x8230A336\t0x35FE\n0x8230A337\t0x35FF\n0x8230A338\t0x3600\n0x8230A339\t0x3601\n0x8230A430\t0x3602\n0x8230A431\t0x3603\n0x8230A432\t0x3604\n0x8230A433\t0x3605\n0x8230A434\t0x3606\n0x8230A435\t0x3607\n0x8230A436\t0x3608\n0x8230A437\t0x3609\n0x8230A438\t0x360A\n0x8230A439\t0x360B\n0x8230A530\t0x360C\n0x8230A531\t0x360D\n0x8230A532\t0x360F\n0x8230A533\t0x3610\n0x8230A534\t0x3611\n0x8230A535\t0x3612\n0x8230A536\t0x3613\n0x8230A537\t0x3614\n0x8230A538\t0x3615\n0x8230A539\t0x3616\n0x8230A630\t0x3617\n0x8230A631\t0x3618\n0x8230A632\t0x3619\n0x8230A633\t0x361B\n0x8230A634\t0x361C\n0x8230A635\t0x361D\n0x8230A636\t0x361E\n0x8230A637\t0x361F\n0x8230A638\t0x3620\n0x8230A639\t0x3621\n0x8230A730\t0x3622\n0x8230A731\t0x3623\n0x8230A732\t0x3624\n0x8230A733\t0x3625\n0x8230A734\t0x3626\n0x8230A735\t0x3627\n0x8230A736\t0x3628\n0x8230A737\t0x3629\n0x8230A738\t0x362A\n0x8230A739\t0x362B\n0x8230A830\t0x362C\n0x8230A831\t0x362D\n0x8230A832\t0x362E\n0x8230A833\t0x362F\n0x8230A834\t0x3630\n0x8230A835\t0x3631\n0x8230A836\t0x3632\n0x8230A837\t0x3633\n0x8230A838\t0x3634\n0x8230A839\t0x3635\n0x8230A930\t0x3636\n0x8230A931\t0x3637\n0x8230A932\t0x3638\n0x8230A933\t0x3639\n0x8230A934\t0x363A\n0x8230A935\t0x363B\n0x8230A936\t0x363C\n0x8230A937\t0x363D\n0x8230A938\t0x363E\n0x8230A939\t0x363F\n0x8230AA30\t0x3640\n0x8230AA31\t0x3641\n0x8230AA32\t0x3642\n0x8230AA33\t0x3643\n0x8230AA34\t0x3644\n0x8230AA35\t0x3645\n0x8230AA36\t0x3646\n0x8230AA37\t0x3647\n0x8230AA38\t0x3648\n0x8230AA39\t0x3649\n0x8230AB30\t0x364A\n0x8230AB31\t0x364B\n0x8230AB32\t0x364C\n0x8230AB33\t0x364D\n0x8230AB34\t0x364E\n0x8230AB35\t0x364F\n0x8230AB36\t0x3650\n0x8230AB37\t0x3651\n0x8230AB38\t0x3652\n0x8230AB39\t0x3653\n0x8230AC30\t0x3654\n0x8230AC31\t0x3655\n0x8230AC32\t0x3656\n0x8230AC33\t0x3657\n0x8230AC34\t0x3658\n0x8230AC35\t0x3659\n0x8230AC36\t0x365A\n0x8230AC37\t0x365B\n0x8230AC38\t0x365C\n0x8230AC39\t0x365D\n0x8230AD30\t0x365E\n0x8230AD31\t0x365F\n0x8230AD32\t0x3660\n0x8230AD33\t0x3661\n0x8230AD34\t0x3662\n0x8230AD35\t0x3663\n0x8230AD36\t0x3664\n0x8230AD37\t0x3665\n0x8230AD38\t0x3666\n0x8230AD39\t0x3667\n0x8230AE30\t0x3668\n0x8230AE31\t0x3669\n0x8230AE32\t0x366A\n0x8230AE33\t0x366B\n0x8230AE34\t0x366C\n0x8230AE35\t0x366D\n0x8230AE36\t0x366E\n0x8230AE37\t0x366F\n0x8230AE38\t0x3670\n0x8230AE39\t0x3671\n0x8230AF30\t0x3672\n0x8230AF31\t0x3673\n0x8230AF32\t0x3674\n0x8230AF33\t0x3675\n0x8230AF34\t0x3676\n0x8230AF35\t0x3677\n0x8230AF36\t0x3678\n0x8230AF37\t0x3679\n0x8230AF38\t0x367A\n0x8230AF39\t0x367B\n0x8230B030\t0x367C\n0x8230B031\t0x367D\n0x8230B032\t0x367E\n0x8230B033\t0x367F\n0x8230B034\t0x3680\n0x8230B035\t0x3681\n0x8230B036\t0x3682\n0x8230B037\t0x3683\n0x8230B038\t0x3684\n0x8230B039\t0x3685\n0x8230B130\t0x3686\n0x8230B131\t0x3687\n0x8230B132\t0x3688\n0x8230B133\t0x3689\n0x8230B134\t0x368A\n0x8230B135\t0x368B\n0x8230B136\t0x368C\n0x8230B137\t0x368D\n0x8230B138\t0x368E\n0x8230B139\t0x368F\n0x8230B230\t0x3690\n0x8230B231\t0x3691\n0x8230B232\t0x3692\n0x8230B233\t0x3693\n0x8230B234\t0x3694\n0x8230B235\t0x3695\n0x8230B236\t0x3696\n0x8230B237\t0x3697\n0x8230B238\t0x3698\n0x8230B239\t0x3699\n0x8230B330\t0x369A\n0x8230B331\t0x369B\n0x8230B332\t0x369C\n0x8230B333\t0x369D\n0x8230B334\t0x369E\n0x8230B335\t0x369F\n0x8230B336\t0x36A0\n0x8230B337\t0x36A1\n0x8230B338\t0x36A2\n0x8230B339\t0x36A3\n0x8230B430\t0x36A4\n0x8230B431\t0x36A5\n0x8230B432\t0x36A6\n0x8230B433\t0x36A7\n0x8230B434\t0x36A8\n0x8230B435\t0x36A9\n0x8230B436\t0x36AA\n0x8230B437\t0x36AB\n0x8230B438\t0x36AC\n0x8230B439\t0x36AD\n0x8230B530\t0x36AE\n0x8230B531\t0x36AF\n0x8230B532\t0x36B0\n0x8230B533\t0x36B1\n0x8230B534\t0x36B2\n0x8230B535\t0x36B3\n0x8230B536\t0x36B4\n0x8230B537\t0x36B5\n0x8230B538\t0x36B6\n0x8230B539\t0x36B7\n0x8230B630\t0x36B8\n0x8230B631\t0x36B9\n0x8230B632\t0x36BA\n0x8230B633\t0x36BB\n0x8230B634\t0x36BC\n0x8230B635\t0x36BD\n0x8230B636\t0x36BE\n0x8230B637\t0x36BF\n0x8230B638\t0x36C0\n0x8230B639\t0x36C1\n0x8230B730\t0x36C2\n0x8230B731\t0x36C3\n0x8230B732\t0x36C4\n0x8230B733\t0x36C5\n0x8230B734\t0x36C6\n0x8230B735\t0x36C7\n0x8230B736\t0x36C8\n0x8230B737\t0x36C9\n0x8230B738\t0x36CA\n0x8230B739\t0x36CB\n0x8230B830\t0x36CC\n0x8230B831\t0x36CD\n0x8230B832\t0x36CE\n0x8230B833\t0x36CF\n0x8230B834\t0x36D0\n0x8230B835\t0x36D1\n0x8230B836\t0x36D2\n0x8230B837\t0x36D3\n0x8230B838\t0x36D4\n0x8230B839\t0x36D5\n0x8230B930\t0x36D6\n0x8230B931\t0x36D7\n0x8230B932\t0x36D8\n0x8230B933\t0x36D9\n0x8230B934\t0x36DA\n0x8230B935\t0x36DB\n0x8230B936\t0x36DC\n0x8230B937\t0x36DD\n0x8230B938\t0x36DE\n0x8230B939\t0x36DF\n0x8230BA30\t0x36E0\n0x8230BA31\t0x36E1\n0x8230BA32\t0x36E2\n0x8230BA33\t0x36E3\n0x8230BA34\t0x36E4\n0x8230BA35\t0x36E5\n0x8230BA36\t0x36E6\n0x8230BA37\t0x36E7\n0x8230BA38\t0x36E8\n0x8230BA39\t0x36E9\n0x8230BB30\t0x36EA\n0x8230BB31\t0x36EB\n0x8230BB32\t0x36EC\n0x8230BB33\t0x36ED\n0x8230BB34\t0x36EE\n0x8230BB35\t0x36EF\n0x8230BB36\t0x36F0\n0x8230BB37\t0x36F1\n0x8230BB38\t0x36F2\n0x8230BB39\t0x36F3\n0x8230BC30\t0x36F4\n0x8230BC31\t0x36F5\n0x8230BC32\t0x36F6\n0x8230BC33\t0x36F7\n0x8230BC34\t0x36F8\n0x8230BC35\t0x36F9\n0x8230BC36\t0x36FA\n0x8230BC37\t0x36FB\n0x8230BC38\t0x36FC\n0x8230BC39\t0x36FD\n0x8230BD30\t0x36FE\n0x8230BD31\t0x36FF\n0x8230BD32\t0x3700\n0x8230BD33\t0x3701\n0x8230BD34\t0x3702\n0x8230BD35\t0x3703\n0x8230BD36\t0x3704\n0x8230BD37\t0x3705\n0x8230BD38\t0x3706\n0x8230BD39\t0x3707\n0x8230BE30\t0x3708\n0x8230BE31\t0x3709\n0x8230BE32\t0x370A\n0x8230BE33\t0x370B\n0x8230BE34\t0x370C\n0x8230BE35\t0x370D\n0x8230BE36\t0x370E\n0x8230BE37\t0x370F\n0x8230BE38\t0x3710\n0x8230BE39\t0x3711\n0x8230BF30\t0x3712\n0x8230BF31\t0x3713\n0x8230BF32\t0x3714\n0x8230BF33\t0x3715\n0x8230BF34\t0x3716\n0x8230BF35\t0x3717\n0x8230BF36\t0x3718\n0x8230BF37\t0x3719\n0x8230BF38\t0x371A\n0x8230BF39\t0x371B\n0x8230C030\t0x371C\n0x8230C031\t0x371D\n0x8230C032\t0x371E\n0x8230C033\t0x371F\n0x8230C034\t0x3720\n0x8230C035\t0x3721\n0x8230C036\t0x3722\n0x8230C037\t0x3723\n0x8230C038\t0x3724\n0x8230C039\t0x3725\n0x8230C130\t0x3726\n0x8230C131\t0x3727\n0x8230C132\t0x3728\n0x8230C133\t0x3729\n0x8230C134\t0x372A\n0x8230C135\t0x372B\n0x8230C136\t0x372C\n0x8230C137\t0x372D\n0x8230C138\t0x372E\n0x8230C139\t0x372F\n0x8230C230\t0x3730\n0x8230C231\t0x3731\n0x8230C232\t0x3732\n0x8230C233\t0x3733\n0x8230C234\t0x3734\n0x8230C235\t0x3735\n0x8230C236\t0x3736\n0x8230C237\t0x3737\n0x8230C238\t0x3738\n0x8230C239\t0x3739\n0x8230C330\t0x373A\n0x8230C331\t0x373B\n0x8230C332\t0x373C\n0x8230C333\t0x373D\n0x8230C334\t0x373E\n0x8230C335\t0x373F\n0x8230C336\t0x3740\n0x8230C337\t0x3741\n0x8230C338\t0x3742\n0x8230C339\t0x3743\n0x8230C430\t0x3744\n0x8230C431\t0x3745\n0x8230C432\t0x3746\n0x8230C433\t0x3747\n0x8230C434\t0x3748\n0x8230C435\t0x3749\n0x8230C436\t0x374A\n0x8230C437\t0x374B\n0x8230C438\t0x374C\n0x8230C439\t0x374D\n0x8230C530\t0x374E\n0x8230C531\t0x374F\n0x8230C532\t0x3750\n0x8230C533\t0x3751\n0x8230C534\t0x3752\n0x8230C535\t0x3753\n0x8230C536\t0x3754\n0x8230C537\t0x3755\n0x8230C538\t0x3756\n0x8230C539\t0x3757\n0x8230C630\t0x3758\n0x8230C631\t0x3759\n0x8230C632\t0x375A\n0x8230C633\t0x375B\n0x8230C634\t0x375C\n0x8230C635\t0x375D\n0x8230C636\t0x375E\n0x8230C637\t0x375F\n0x8230C638\t0x3760\n0x8230C639\t0x3761\n0x8230C730\t0x3762\n0x8230C731\t0x3763\n0x8230C732\t0x3764\n0x8230C733\t0x3765\n0x8230C734\t0x3766\n0x8230C735\t0x3767\n0x8230C736\t0x3768\n0x8230C737\t0x3769\n0x8230C738\t0x376A\n0x8230C739\t0x376B\n0x8230C830\t0x376C\n0x8230C831\t0x376D\n0x8230C832\t0x376E\n0x8230C833\t0x376F\n0x8230C834\t0x3770\n0x8230C835\t0x3771\n0x8230C836\t0x3772\n0x8230C837\t0x3773\n0x8230C838\t0x3774\n0x8230C839\t0x3775\n0x8230C930\t0x3776\n0x8230C931\t0x3777\n0x8230C932\t0x3778\n0x8230C933\t0x3779\n0x8230C934\t0x377A\n0x8230C935\t0x377B\n0x8230C936\t0x377C\n0x8230C937\t0x377D\n0x8230C938\t0x377E\n0x8230C939\t0x377F\n0x8230CA30\t0x3780\n0x8230CA31\t0x3781\n0x8230CA32\t0x3782\n0x8230CA33\t0x3783\n0x8230CA34\t0x3784\n0x8230CA35\t0x3785\n0x8230CA36\t0x3786\n0x8230CA37\t0x3787\n0x8230CA38\t0x3788\n0x8230CA39\t0x3789\n0x8230CB30\t0x378A\n0x8230CB31\t0x378B\n0x8230CB32\t0x378C\n0x8230CB33\t0x378D\n0x8230CB34\t0x378E\n0x8230CB35\t0x378F\n0x8230CB36\t0x3790\n0x8230CB37\t0x3791\n0x8230CB38\t0x3792\n0x8230CB39\t0x3793\n0x8230CC30\t0x3794\n0x8230CC31\t0x3795\n0x8230CC32\t0x3796\n0x8230CC33\t0x3797\n0x8230CC34\t0x3798\n0x8230CC35\t0x3799\n0x8230CC36\t0x379A\n0x8230CC37\t0x379B\n0x8230CC38\t0x379C\n0x8230CC39\t0x379D\n0x8230CD30\t0x379E\n0x8230CD31\t0x379F\n0x8230CD32\t0x37A0\n0x8230CD33\t0x37A1\n0x8230CD34\t0x37A2\n0x8230CD35\t0x37A3\n0x8230CD36\t0x37A4\n0x8230CD37\t0x37A5\n0x8230CD38\t0x37A6\n0x8230CD39\t0x37A7\n0x8230CE30\t0x37A8\n0x8230CE31\t0x37A9\n0x8230CE32\t0x37AA\n0x8230CE33\t0x37AB\n0x8230CE34\t0x37AC\n0x8230CE35\t0x37AD\n0x8230CE36\t0x37AE\n0x8230CE37\t0x37AF\n0x8230CE38\t0x37B0\n0x8230CE39\t0x37B1\n0x8230CF30\t0x37B2\n0x8230CF31\t0x37B3\n0x8230CF32\t0x37B4\n0x8230CF33\t0x37B5\n0x8230CF34\t0x37B6\n0x8230CF35\t0x37B7\n0x8230CF36\t0x37B8\n0x8230CF37\t0x37B9\n0x8230CF38\t0x37BA\n0x8230CF39\t0x37BB\n0x8230D030\t0x37BC\n0x8230D031\t0x37BD\n0x8230D032\t0x37BE\n0x8230D033\t0x37BF\n0x8230D034\t0x37C0\n0x8230D035\t0x37C1\n0x8230D036\t0x37C2\n0x8230D037\t0x37C3\n0x8230D038\t0x37C4\n0x8230D039\t0x37C5\n0x8230D130\t0x37C6\n0x8230D131\t0x37C7\n0x8230D132\t0x37C8\n0x8230D133\t0x37C9\n0x8230D134\t0x37CA\n0x8230D135\t0x37CB\n0x8230D136\t0x37CC\n0x8230D137\t0x37CD\n0x8230D138\t0x37CE\n0x8230D139\t0x37CF\n0x8230D230\t0x37D0\n0x8230D231\t0x37D1\n0x8230D232\t0x37D2\n0x8230D233\t0x37D3\n0x8230D234\t0x37D4\n0x8230D235\t0x37D5\n0x8230D236\t0x37D6\n0x8230D237\t0x37D7\n0x8230D238\t0x37D8\n0x8230D239\t0x37D9\n0x8230D330\t0x37DA\n0x8230D331\t0x37DB\n0x8230D332\t0x37DC\n0x8230D333\t0x37DD\n0x8230D334\t0x37DE\n0x8230D335\t0x37DF\n0x8230D336\t0x37E0\n0x8230D337\t0x37E1\n0x8230D338\t0x37E2\n0x8230D339\t0x37E3\n0x8230D430\t0x37E4\n0x8230D431\t0x37E5\n0x8230D432\t0x37E6\n0x8230D433\t0x37E7\n0x8230D434\t0x37E8\n0x8230D435\t0x37E9\n0x8230D436\t0x37EA\n0x8230D437\t0x37EB\n0x8230D438\t0x37EC\n0x8230D439\t0x37ED\n0x8230D530\t0x37EE\n0x8230D531\t0x37EF\n0x8230D532\t0x37F0\n0x8230D533\t0x37F1\n0x8230D534\t0x37F2\n0x8230D535\t0x37F3\n0x8230D536\t0x37F4\n0x8230D537\t0x37F5\n0x8230D538\t0x37F6\n0x8230D539\t0x37F7\n0x8230D630\t0x37F8\n0x8230D631\t0x37F9\n0x8230D632\t0x37FA\n0x8230D633\t0x37FB\n0x8230D634\t0x37FC\n0x8230D635\t0x37FD\n0x8230D636\t0x37FE\n0x8230D637\t0x37FF\n0x8230D638\t0x3800\n0x8230D639\t0x3801\n0x8230D730\t0x3802\n0x8230D731\t0x3803\n0x8230D732\t0x3804\n0x8230D733\t0x3805\n0x8230D734\t0x3806\n0x8230D735\t0x3807\n0x8230D736\t0x3808\n0x8230D737\t0x3809\n0x8230D738\t0x380A\n0x8230D739\t0x380B\n0x8230D830\t0x380C\n0x8230D831\t0x380D\n0x8230D832\t0x380E\n0x8230D833\t0x380F\n0x8230D834\t0x3810\n0x8230D835\t0x3811\n0x8230D836\t0x3812\n0x8230D837\t0x3813\n0x8230D838\t0x3814\n0x8230D839\t0x3815\n0x8230D930\t0x3816\n0x8230D931\t0x3817\n0x8230D932\t0x3818\n0x8230D933\t0x3819\n0x8230D934\t0x381A\n0x8230D935\t0x381B\n0x8230D936\t0x381C\n0x8230D937\t0x381D\n0x8230D938\t0x381E\n0x8230D939\t0x381F\n0x8230DA30\t0x3820\n0x8230DA31\t0x3821\n0x8230DA32\t0x3822\n0x8230DA33\t0x3823\n0x8230DA34\t0x3824\n0x8230DA35\t0x3825\n0x8230DA36\t0x3826\n0x8230DA37\t0x3827\n0x8230DA38\t0x3828\n0x8230DA39\t0x3829\n0x8230DB30\t0x382A\n0x8230DB31\t0x382B\n0x8230DB32\t0x382C\n0x8230DB33\t0x382D\n0x8230DB34\t0x382E\n0x8230DB35\t0x382F\n0x8230DB36\t0x3830\n0x8230DB37\t0x3831\n0x8230DB38\t0x3832\n0x8230DB39\t0x3833\n0x8230DC30\t0x3834\n0x8230DC31\t0x3835\n0x8230DC32\t0x3836\n0x8230DC33\t0x3837\n0x8230DC34\t0x3838\n0x8230DC35\t0x3839\n0x8230DC36\t0x383A\n0x8230DC37\t0x383B\n0x8230DC38\t0x383C\n0x8230DC39\t0x383D\n0x8230DD30\t0x383E\n0x8230DD31\t0x383F\n0x8230DD32\t0x3840\n0x8230DD33\t0x3841\n0x8230DD34\t0x3842\n0x8230DD35\t0x3843\n0x8230DD36\t0x3844\n0x8230DD37\t0x3845\n0x8230DD38\t0x3846\n0x8230DD39\t0x3847\n0x8230DE30\t0x3848\n0x8230DE31\t0x3849\n0x8230DE32\t0x384A\n0x8230DE33\t0x384B\n0x8230DE34\t0x384C\n0x8230DE35\t0x384D\n0x8230DE36\t0x384E\n0x8230DE37\t0x384F\n0x8230DE38\t0x3850\n0x8230DE39\t0x3851\n0x8230DF30\t0x3852\n0x8230DF31\t0x3853\n0x8230DF32\t0x3854\n0x8230DF33\t0x3855\n0x8230DF34\t0x3856\n0x8230DF35\t0x3857\n0x8230DF36\t0x3858\n0x8230DF37\t0x3859\n0x8230DF38\t0x385A\n0x8230DF39\t0x385B\n0x8230E030\t0x385C\n0x8230E031\t0x385D\n0x8230E032\t0x385E\n0x8230E033\t0x385F\n0x8230E034\t0x3860\n0x8230E035\t0x3861\n0x8230E036\t0x3862\n0x8230E037\t0x3863\n0x8230E038\t0x3864\n0x8230E039\t0x3865\n0x8230E130\t0x3866\n0x8230E131\t0x3867\n0x8230E132\t0x3868\n0x8230E133\t0x3869\n0x8230E134\t0x386A\n0x8230E135\t0x386B\n0x8230E136\t0x386C\n0x8230E137\t0x386D\n0x8230E138\t0x386E\n0x8230E139\t0x386F\n0x8230E230\t0x3870\n0x8230E231\t0x3871\n0x8230E232\t0x3872\n0x8230E233\t0x3873\n0x8230E234\t0x3874\n0x8230E235\t0x3875\n0x8230E236\t0x3876\n0x8230E237\t0x3877\n0x8230E238\t0x3878\n0x8230E239\t0x3879\n0x8230E330\t0x387A\n0x8230E331\t0x387B\n0x8230E332\t0x387C\n0x8230E333\t0x387D\n0x8230E334\t0x387E\n0x8230E335\t0x387F\n0x8230E336\t0x3880\n0x8230E337\t0x3881\n0x8230E338\t0x3882\n0x8230E339\t0x3883\n0x8230E430\t0x3884\n0x8230E431\t0x3885\n0x8230E432\t0x3886\n0x8230E433\t0x3887\n0x8230E434\t0x3888\n0x8230E435\t0x3889\n0x8230E436\t0x388A\n0x8230E437\t0x388B\n0x8230E438\t0x388C\n0x8230E439\t0x388D\n0x8230E530\t0x388E\n0x8230E531\t0x388F\n0x8230E532\t0x3890\n0x8230E533\t0x3891\n0x8230E534\t0x3892\n0x8230E535\t0x3893\n0x8230E536\t0x3894\n0x8230E537\t0x3895\n0x8230E538\t0x3896\n0x8230E539\t0x3897\n0x8230E630\t0x3898\n0x8230E631\t0x3899\n0x8230E632\t0x389A\n0x8230E633\t0x389B\n0x8230E634\t0x389C\n0x8230E635\t0x389D\n0x8230E636\t0x389E\n0x8230E637\t0x389F\n0x8230E638\t0x38A0\n0x8230E639\t0x38A1\n0x8230E730\t0x38A2\n0x8230E731\t0x38A3\n0x8230E732\t0x38A4\n0x8230E733\t0x38A5\n0x8230E734\t0x38A6\n0x8230E735\t0x38A7\n0x8230E736\t0x38A8\n0x8230E737\t0x38A9\n0x8230E738\t0x38AA\n0x8230E739\t0x38AB\n0x8230E830\t0x38AC\n0x8230E831\t0x38AD\n0x8230E832\t0x38AE\n0x8230E833\t0x38AF\n0x8230E834\t0x38B0\n0x8230E835\t0x38B1\n0x8230E836\t0x38B2\n0x8230E837\t0x38B3\n0x8230E838\t0x38B4\n0x8230E839\t0x38B5\n0x8230E930\t0x38B6\n0x8230E931\t0x38B7\n0x8230E932\t0x38B8\n0x8230E933\t0x38B9\n0x8230E934\t0x38BA\n0x8230E935\t0x38BB\n0x8230E936\t0x38BC\n0x8230E937\t0x38BD\n0x8230E938\t0x38BE\n0x8230E939\t0x38BF\n0x8230EA30\t0x38C0\n0x8230EA31\t0x38C1\n0x8230EA32\t0x38C2\n0x8230EA33\t0x38C3\n0x8230EA34\t0x38C4\n0x8230EA35\t0x38C5\n0x8230EA36\t0x38C6\n0x8230EA37\t0x38C7\n0x8230EA38\t0x38C8\n0x8230EA39\t0x38C9\n0x8230EB30\t0x38CA\n0x8230EB31\t0x38CB\n0x8230EB32\t0x38CC\n0x8230EB33\t0x38CD\n0x8230EB34\t0x38CE\n0x8230EB35\t0x38CF\n0x8230EB36\t0x38D0\n0x8230EB37\t0x38D1\n0x8230EB38\t0x38D2\n0x8230EB39\t0x38D3\n0x8230EC30\t0x38D4\n0x8230EC31\t0x38D5\n0x8230EC32\t0x38D6\n0x8230EC33\t0x38D7\n0x8230EC34\t0x38D8\n0x8230EC35\t0x38D9\n0x8230EC36\t0x38DA\n0x8230EC37\t0x38DB\n0x8230EC38\t0x38DC\n0x8230EC39\t0x38DD\n0x8230ED30\t0x38DE\n0x8230ED31\t0x38DF\n0x8230ED32\t0x38E0\n0x8230ED33\t0x38E1\n0x8230ED34\t0x38E2\n0x8230ED35\t0x38E3\n0x8230ED36\t0x38E4\n0x8230ED37\t0x38E5\n0x8230ED38\t0x38E6\n0x8230ED39\t0x38E7\n0x8230EE30\t0x38E8\n0x8230EE31\t0x38E9\n0x8230EE32\t0x38EA\n0x8230EE33\t0x38EB\n0x8230EE34\t0x38EC\n0x8230EE35\t0x38ED\n0x8230EE36\t0x38EE\n0x8230EE37\t0x38EF\n0x8230EE38\t0x38F0\n0x8230EE39\t0x38F1\n0x8230EF30\t0x38F2\n0x8230EF31\t0x38F3\n0x8230EF32\t0x38F4\n0x8230EF33\t0x38F5\n0x8230EF34\t0x38F6\n0x8230EF35\t0x38F7\n0x8230EF36\t0x38F8\n0x8230EF37\t0x38F9\n0x8230EF38\t0x38FA\n0x8230EF39\t0x38FB\n0x8230F030\t0x38FC\n0x8230F031\t0x38FD\n0x8230F032\t0x38FE\n0x8230F033\t0x38FF\n0x8230F034\t0x3900\n0x8230F035\t0x3901\n0x8230F036\t0x3902\n0x8230F037\t0x3903\n0x8230F038\t0x3904\n0x8230F039\t0x3905\n0x8230F130\t0x3906\n0x8230F131\t0x3907\n0x8230F132\t0x3908\n0x8230F133\t0x3909\n0x8230F134\t0x390A\n0x8230F135\t0x390B\n0x8230F136\t0x390C\n0x8230F137\t0x390D\n0x8230F138\t0x390E\n0x8230F139\t0x390F\n0x8230F230\t0x3910\n0x8230F231\t0x3911\n0x8230F232\t0x3912\n0x8230F233\t0x3913\n0x8230F234\t0x3914\n0x8230F235\t0x3915\n0x8230F236\t0x3916\n0x8230F237\t0x3917\n0x8230F238\t0x3919\n0x8230F239\t0x391A\n0x8230F330\t0x391B\n0x8230F331\t0x391C\n0x8230F332\t0x391D\n0x8230F333\t0x391E\n0x8230F334\t0x391F\n0x8230F335\t0x3920\n0x8230F336\t0x3921\n0x8230F337\t0x3922\n0x8230F338\t0x3923\n0x8230F339\t0x3924\n0x8230F430\t0x3925\n0x8230F431\t0x3926\n0x8230F432\t0x3927\n0x8230F433\t0x3928\n0x8230F434\t0x3929\n0x8230F435\t0x392A\n0x8230F436\t0x392B\n0x8230F437\t0x392C\n0x8230F438\t0x392D\n0x8230F439\t0x392E\n0x8230F530\t0x392F\n0x8230F531\t0x3930\n0x8230F532\t0x3931\n0x8230F533\t0x3932\n0x8230F534\t0x3933\n0x8230F535\t0x3934\n0x8230F536\t0x3935\n0x8230F537\t0x3936\n0x8230F538\t0x3937\n0x8230F539\t0x3938\n0x8230F630\t0x3939\n0x8230F631\t0x393A\n0x8230F632\t0x393B\n0x8230F633\t0x393C\n0x8230F634\t0x393D\n0x8230F635\t0x393E\n0x8230F636\t0x393F\n0x8230F637\t0x3940\n0x8230F638\t0x3941\n0x8230F639\t0x3942\n0x8230F730\t0x3943\n0x8230F731\t0x3944\n0x8230F732\t0x3945\n0x8230F733\t0x3946\n0x8230F734\t0x3947\n0x8230F735\t0x3948\n0x8230F736\t0x3949\n0x8230F737\t0x394A\n0x8230F738\t0x394B\n0x8230F739\t0x394C\n0x8230F830\t0x394D\n0x8230F831\t0x394E\n0x8230F832\t0x394F\n0x8230F833\t0x3950\n0x8230F834\t0x3951\n0x8230F835\t0x3952\n0x8230F836\t0x3953\n0x8230F837\t0x3954\n0x8230F838\t0x3955\n0x8230F839\t0x3956\n0x8230F930\t0x3957\n0x8230F931\t0x3958\n0x8230F932\t0x3959\n0x8230F933\t0x395A\n0x8230F934\t0x395B\n0x8230F935\t0x395C\n0x8230F936\t0x395D\n0x8230F937\t0x395E\n0x8230F938\t0x395F\n0x8230F939\t0x3960\n0x8230FA30\t0x3961\n0x8230FA31\t0x3962\n0x8230FA32\t0x3963\n0x8230FA33\t0x3964\n0x8230FA34\t0x3965\n0x8230FA35\t0x3966\n0x8230FA36\t0x3967\n0x8230FA37\t0x3968\n0x8230FA38\t0x3969\n0x8230FA39\t0x396A\n0x8230FB30\t0x396B\n0x8230FB31\t0x396C\n0x8230FB32\t0x396D\n0x8230FB33\t0x396F\n0x8230FB34\t0x3970\n0x8230FB35\t0x3971\n0x8230FB36\t0x3972\n0x8230FB37\t0x3973\n0x8230FB38\t0x3974\n0x8230FB39\t0x3975\n0x8230FC30\t0x3976\n0x8230FC31\t0x3977\n0x8230FC32\t0x3978\n0x8230FC33\t0x3979\n0x8230FC34\t0x397A\n0x8230FC35\t0x397B\n0x8230FC36\t0x397C\n0x8230FC37\t0x397D\n0x8230FC38\t0x397E\n0x8230FC39\t0x397F\n0x8230FD30\t0x3980\n0x8230FD31\t0x3981\n0x8230FD32\t0x3982\n0x8230FD33\t0x3983\n0x8230FD34\t0x3984\n0x8230FD35\t0x3985\n0x8230FD36\t0x3986\n0x8230FD37\t0x3987\n0x8230FD38\t0x3988\n0x8230FD39\t0x3989\n0x8230FE30\t0x398A\n0x8230FE31\t0x398B\n0x8230FE32\t0x398C\n0x8230FE33\t0x398D\n0x8230FE34\t0x398E\n0x8230FE35\t0x398F\n0x8230FE36\t0x3990\n0x8230FE37\t0x3991\n0x8230FE38\t0x3992\n0x8230FE39\t0x3993\n0x82318130\t0x3994\n0x82318131\t0x3995\n0x82318132\t0x3996\n0x82318133\t0x3997\n0x82318134\t0x3998\n0x82318135\t0x3999\n0x82318136\t0x399A\n0x82318137\t0x399B\n0x82318138\t0x399C\n0x82318139\t0x399D\n0x82318230\t0x399E\n0x82318231\t0x399F\n0x82318232\t0x39A0\n0x82318233\t0x39A1\n0x82318234\t0x39A2\n0x82318235\t0x39A3\n0x82318236\t0x39A4\n0x82318237\t0x39A5\n0x82318238\t0x39A6\n0x82318239\t0x39A7\n0x82318330\t0x39A8\n0x82318331\t0x39A9\n0x82318332\t0x39AA\n0x82318333\t0x39AB\n0x82318334\t0x39AC\n0x82318335\t0x39AD\n0x82318336\t0x39AE\n0x82318337\t0x39AF\n0x82318338\t0x39B0\n0x82318339\t0x39B1\n0x82318430\t0x39B2\n0x82318431\t0x39B3\n0x82318432\t0x39B4\n0x82318433\t0x39B5\n0x82318434\t0x39B6\n0x82318435\t0x39B7\n0x82318436\t0x39B8\n0x82318437\t0x39B9\n0x82318438\t0x39BA\n0x82318439\t0x39BB\n0x82318530\t0x39BC\n0x82318531\t0x39BD\n0x82318532\t0x39BE\n0x82318533\t0x39BF\n0x82318534\t0x39C0\n0x82318535\t0x39C1\n0x82318536\t0x39C2\n0x82318537\t0x39C3\n0x82318538\t0x39C4\n0x82318539\t0x39C5\n0x82318630\t0x39C6\n0x82318631\t0x39C7\n0x82318632\t0x39C8\n0x82318633\t0x39C9\n0x82318634\t0x39CA\n0x82318635\t0x39CB\n0x82318636\t0x39CC\n0x82318637\t0x39CD\n0x82318638\t0x39CE\n0x82318639\t0x39D1\n0x82318730\t0x39D2\n0x82318731\t0x39D3\n0x82318732\t0x39D4\n0x82318733\t0x39D5\n0x82318734\t0x39D6\n0x82318735\t0x39D7\n0x82318736\t0x39D8\n0x82318737\t0x39D9\n0x82318738\t0x39DA\n0x82318739\t0x39DB\n0x82318830\t0x39DC\n0x82318831\t0x39DD\n0x82318832\t0x39DE\n0x82318833\t0x39E0\n0x82318834\t0x39E1\n0x82318835\t0x39E2\n0x82318836\t0x39E3\n0x82318837\t0x39E4\n0x82318838\t0x39E5\n0x82318839\t0x39E6\n0x82318930\t0x39E7\n0x82318931\t0x39E8\n0x82318932\t0x39E9\n0x82318933\t0x39EA\n0x82318934\t0x39EB\n0x82318935\t0x39EC\n0x82318936\t0x39ED\n0x82318937\t0x39EE\n0x82318938\t0x39EF\n0x82318939\t0x39F0\n0x82318A30\t0x39F1\n0x82318A31\t0x39F2\n0x82318A32\t0x39F3\n0x82318A33\t0x39F4\n0x82318A34\t0x39F5\n0x82318A35\t0x39F6\n0x82318A36\t0x39F7\n0x82318A37\t0x39F8\n0x82318A38\t0x39F9\n0x82318A39\t0x39FA\n0x82318B30\t0x39FB\n0x82318B31\t0x39FC\n0x82318B32\t0x39FD\n0x82318B33\t0x39FE\n0x82318B34\t0x39FF\n0x82318B35\t0x3A00\n0x82318B36\t0x3A01\n0x82318B37\t0x3A02\n0x82318B38\t0x3A03\n0x82318B39\t0x3A04\n0x82318C30\t0x3A05\n0x82318C31\t0x3A06\n0x82318C32\t0x3A07\n0x82318C33\t0x3A08\n0x82318C34\t0x3A09\n0x82318C35\t0x3A0A\n0x82318C36\t0x3A0B\n0x82318C37\t0x3A0C\n0x82318C38\t0x3A0D\n0x82318C39\t0x3A0E\n0x82318D30\t0x3A0F\n0x82318D31\t0x3A10\n0x82318D32\t0x3A11\n0x82318D33\t0x3A12\n0x82318D34\t0x3A13\n0x82318D35\t0x3A14\n0x82318D36\t0x3A15\n0x82318D37\t0x3A16\n0x82318D38\t0x3A17\n0x82318D39\t0x3A18\n0x82318E30\t0x3A19\n0x82318E31\t0x3A1A\n0x82318E32\t0x3A1B\n0x82318E33\t0x3A1C\n0x82318E34\t0x3A1D\n0x82318E35\t0x3A1E\n0x82318E36\t0x3A1F\n0x82318E37\t0x3A20\n0x82318E38\t0x3A21\n0x82318E39\t0x3A22\n0x82318F30\t0x3A23\n0x82318F31\t0x3A24\n0x82318F32\t0x3A25\n0x82318F33\t0x3A26\n0x82318F34\t0x3A27\n0x82318F35\t0x3A28\n0x82318F36\t0x3A29\n0x82318F37\t0x3A2A\n0x82318F38\t0x3A2B\n0x82318F39\t0x3A2C\n0x82319030\t0x3A2D\n0x82319031\t0x3A2E\n0x82319032\t0x3A2F\n0x82319033\t0x3A30\n0x82319034\t0x3A31\n0x82319035\t0x3A32\n0x82319036\t0x3A33\n0x82319037\t0x3A34\n0x82319038\t0x3A35\n0x82319039\t0x3A36\n0x82319130\t0x3A37\n0x82319131\t0x3A38\n0x82319132\t0x3A39\n0x82319133\t0x3A3A\n0x82319134\t0x3A3B\n0x82319135\t0x3A3C\n0x82319136\t0x3A3D\n0x82319137\t0x3A3E\n0x82319138\t0x3A3F\n0x82319139\t0x3A40\n0x82319230\t0x3A41\n0x82319231\t0x3A42\n0x82319232\t0x3A43\n0x82319233\t0x3A44\n0x82319234\t0x3A45\n0x82319235\t0x3A46\n0x82319236\t0x3A47\n0x82319237\t0x3A48\n0x82319238\t0x3A49\n0x82319239\t0x3A4A\n0x82319330\t0x3A4B\n0x82319331\t0x3A4C\n0x82319332\t0x3A4D\n0x82319333\t0x3A4E\n0x82319334\t0x3A4F\n0x82319335\t0x3A50\n0x82319336\t0x3A51\n0x82319337\t0x3A52\n0x82319338\t0x3A53\n0x82319339\t0x3A54\n0x82319430\t0x3A55\n0x82319431\t0x3A56\n0x82319432\t0x3A57\n0x82319433\t0x3A58\n0x82319434\t0x3A59\n0x82319435\t0x3A5A\n0x82319436\t0x3A5B\n0x82319437\t0x3A5C\n0x82319438\t0x3A5D\n0x82319439\t0x3A5E\n0x82319530\t0x3A5F\n0x82319531\t0x3A60\n0x82319532\t0x3A61\n0x82319533\t0x3A62\n0x82319534\t0x3A63\n0x82319535\t0x3A64\n0x82319536\t0x3A65\n0x82319537\t0x3A66\n0x82319538\t0x3A67\n0x82319539\t0x3A68\n0x82319630\t0x3A69\n0x82319631\t0x3A6A\n0x82319632\t0x3A6B\n0x82319633\t0x3A6C\n0x82319634\t0x3A6D\n0x82319635\t0x3A6E\n0x82319636\t0x3A6F\n0x82319637\t0x3A70\n0x82319638\t0x3A71\n0x82319639\t0x3A72\n0x82319730\t0x3A74\n0x82319731\t0x3A75\n0x82319732\t0x3A76\n0x82319733\t0x3A77\n0x82319734\t0x3A78\n0x82319735\t0x3A79\n0x82319736\t0x3A7A\n0x82319737\t0x3A7B\n0x82319738\t0x3A7C\n0x82319739\t0x3A7D\n0x82319830\t0x3A7E\n0x82319831\t0x3A7F\n0x82319832\t0x3A80\n0x82319833\t0x3A81\n0x82319834\t0x3A82\n0x82319835\t0x3A83\n0x82319836\t0x3A84\n0x82319837\t0x3A85\n0x82319838\t0x3A86\n0x82319839\t0x3A87\n0x82319930\t0x3A88\n0x82319931\t0x3A89\n0x82319932\t0x3A8A\n0x82319933\t0x3A8B\n0x82319934\t0x3A8C\n0x82319935\t0x3A8D\n0x82319936\t0x3A8E\n0x82319937\t0x3A8F\n0x82319938\t0x3A90\n0x82319939\t0x3A91\n0x82319A30\t0x3A92\n0x82319A31\t0x3A93\n0x82319A32\t0x3A94\n0x82319A33\t0x3A95\n0x82319A34\t0x3A96\n0x82319A35\t0x3A97\n0x82319A36\t0x3A98\n0x82319A37\t0x3A99\n0x82319A38\t0x3A9A\n0x82319A39\t0x3A9B\n0x82319B30\t0x3A9C\n0x82319B31\t0x3A9D\n0x82319B32\t0x3A9E\n0x82319B33\t0x3A9F\n0x82319B34\t0x3AA0\n0x82319B35\t0x3AA1\n0x82319B36\t0x3AA2\n0x82319B37\t0x3AA3\n0x82319B38\t0x3AA4\n0x82319B39\t0x3AA5\n0x82319C30\t0x3AA6\n0x82319C31\t0x3AA7\n0x82319C32\t0x3AA8\n0x82319C33\t0x3AA9\n0x82319C34\t0x3AAA\n0x82319C35\t0x3AAB\n0x82319C36\t0x3AAC\n0x82319C37\t0x3AAD\n0x82319C38\t0x3AAE\n0x82319C39\t0x3AAF\n0x82319D30\t0x3AB0\n0x82319D31\t0x3AB1\n0x82319D32\t0x3AB2\n0x82319D33\t0x3AB3\n0x82319D34\t0x3AB4\n0x82319D35\t0x3AB5\n0x82319D36\t0x3AB6\n0x82319D37\t0x3AB7\n0x82319D38\t0x3AB8\n0x82319D39\t0x3AB9\n0x82319E30\t0x3ABA\n0x82319E31\t0x3ABB\n0x82319E32\t0x3ABC\n0x82319E33\t0x3ABD\n0x82319E34\t0x3ABE\n0x82319E35\t0x3ABF\n0x82319E36\t0x3AC0\n0x82319E37\t0x3AC1\n0x82319E38\t0x3AC2\n0x82319E39\t0x3AC3\n0x82319F30\t0x3AC4\n0x82319F31\t0x3AC5\n0x82319F32\t0x3AC6\n0x82319F33\t0x3AC7\n0x82319F34\t0x3AC8\n0x82319F35\t0x3AC9\n0x82319F36\t0x3ACA\n0x82319F37\t0x3ACB\n0x82319F38\t0x3ACC\n0x82319F39\t0x3ACD\n0x8231A030\t0x3ACE\n0x8231A031\t0x3ACF\n0x8231A032\t0x3AD0\n0x8231A033\t0x3AD1\n0x8231A034\t0x3AD2\n0x8231A035\t0x3AD3\n0x8231A036\t0x3AD4\n0x8231A037\t0x3AD5\n0x8231A038\t0x3AD6\n0x8231A039\t0x3AD7\n0x8231A130\t0x3AD8\n0x8231A131\t0x3AD9\n0x8231A132\t0x3ADA\n0x8231A133\t0x3ADB\n0x8231A134\t0x3ADC\n0x8231A135\t0x3ADD\n0x8231A136\t0x3ADE\n0x8231A137\t0x3ADF\n0x8231A138\t0x3AE0\n0x8231A139\t0x3AE1\n0x8231A230\t0x3AE2\n0x8231A231\t0x3AE3\n0x8231A232\t0x3AE4\n0x8231A233\t0x3AE5\n0x8231A234\t0x3AE6\n0x8231A235\t0x3AE7\n0x8231A236\t0x3AE8\n0x8231A237\t0x3AE9\n0x8231A238\t0x3AEA\n0x8231A239\t0x3AEB\n0x8231A330\t0x3AEC\n0x8231A331\t0x3AED\n0x8231A332\t0x3AEE\n0x8231A333\t0x3AEF\n0x8231A334\t0x3AF0\n0x8231A335\t0x3AF1\n0x8231A336\t0x3AF2\n0x8231A337\t0x3AF3\n0x8231A338\t0x3AF4\n0x8231A339\t0x3AF5\n0x8231A430\t0x3AF6\n0x8231A431\t0x3AF7\n0x8231A432\t0x3AF8\n0x8231A433\t0x3AF9\n0x8231A434\t0x3AFA\n0x8231A435\t0x3AFB\n0x8231A436\t0x3AFC\n0x8231A437\t0x3AFD\n0x8231A438\t0x3AFE\n0x8231A439\t0x3AFF\n0x8231A530\t0x3B00\n0x8231A531\t0x3B01\n0x8231A532\t0x3B02\n0x8231A533\t0x3B03\n0x8231A534\t0x3B04\n0x8231A535\t0x3B05\n0x8231A536\t0x3B06\n0x8231A537\t0x3B07\n0x8231A538\t0x3B08\n0x8231A539\t0x3B09\n0x8231A630\t0x3B0A\n0x8231A631\t0x3B0B\n0x8231A632\t0x3B0C\n0x8231A633\t0x3B0D\n0x8231A634\t0x3B0E\n0x8231A635\t0x3B0F\n0x8231A636\t0x3B10\n0x8231A637\t0x3B11\n0x8231A638\t0x3B12\n0x8231A639\t0x3B13\n0x8231A730\t0x3B14\n0x8231A731\t0x3B15\n0x8231A732\t0x3B16\n0x8231A733\t0x3B17\n0x8231A734\t0x3B18\n0x8231A735\t0x3B19\n0x8231A736\t0x3B1A\n0x8231A737\t0x3B1B\n0x8231A738\t0x3B1C\n0x8231A739\t0x3B1D\n0x8231A830\t0x3B1E\n0x8231A831\t0x3B1F\n0x8231A832\t0x3B20\n0x8231A833\t0x3B21\n0x8231A834\t0x3B22\n0x8231A835\t0x3B23\n0x8231A836\t0x3B24\n0x8231A837\t0x3B25\n0x8231A838\t0x3B26\n0x8231A839\t0x3B27\n0x8231A930\t0x3B28\n0x8231A931\t0x3B29\n0x8231A932\t0x3B2A\n0x8231A933\t0x3B2B\n0x8231A934\t0x3B2C\n0x8231A935\t0x3B2D\n0x8231A936\t0x3B2E\n0x8231A937\t0x3B2F\n0x8231A938\t0x3B30\n0x8231A939\t0x3B31\n0x8231AA30\t0x3B32\n0x8231AA31\t0x3B33\n0x8231AA32\t0x3B34\n0x8231AA33\t0x3B35\n0x8231AA34\t0x3B36\n0x8231AA35\t0x3B37\n0x8231AA36\t0x3B38\n0x8231AA37\t0x3B39\n0x8231AA38\t0x3B3A\n0x8231AA39\t0x3B3B\n0x8231AB30\t0x3B3C\n0x8231AB31\t0x3B3D\n0x8231AB32\t0x3B3E\n0x8231AB33\t0x3B3F\n0x8231AB34\t0x3B40\n0x8231AB35\t0x3B41\n0x8231AB36\t0x3B42\n0x8231AB37\t0x3B43\n0x8231AB38\t0x3B44\n0x8231AB39\t0x3B45\n0x8231AC30\t0x3B46\n0x8231AC31\t0x3B47\n0x8231AC32\t0x3B48\n0x8231AC33\t0x3B49\n0x8231AC34\t0x3B4A\n0x8231AC35\t0x3B4B\n0x8231AC36\t0x3B4C\n0x8231AC37\t0x3B4D\n0x8231AC38\t0x3B4F\n0x8231AC39\t0x3B50\n0x8231AD30\t0x3B51\n0x8231AD31\t0x3B52\n0x8231AD32\t0x3B53\n0x8231AD33\t0x3B54\n0x8231AD34\t0x3B55\n0x8231AD35\t0x3B56\n0x8231AD36\t0x3B57\n0x8231AD37\t0x3B58\n0x8231AD38\t0x3B59\n0x8231AD39\t0x3B5A\n0x8231AE30\t0x3B5B\n0x8231AE31\t0x3B5C\n0x8231AE32\t0x3B5D\n0x8231AE33\t0x3B5E\n0x8231AE34\t0x3B5F\n0x8231AE35\t0x3B60\n0x8231AE36\t0x3B61\n0x8231AE37\t0x3B62\n0x8231AE38\t0x3B63\n0x8231AE39\t0x3B64\n0x8231AF30\t0x3B65\n0x8231AF31\t0x3B66\n0x8231AF32\t0x3B67\n0x8231AF33\t0x3B68\n0x8231AF34\t0x3B69\n0x8231AF35\t0x3B6A\n0x8231AF36\t0x3B6B\n0x8231AF37\t0x3B6C\n0x8231AF38\t0x3B6D\n0x8231AF39\t0x3B6E\n0x8231B030\t0x3B6F\n0x8231B031\t0x3B70\n0x8231B032\t0x3B71\n0x8231B033\t0x3B72\n0x8231B034\t0x3B73\n0x8231B035\t0x3B74\n0x8231B036\t0x3B75\n0x8231B037\t0x3B76\n0x8231B038\t0x3B77\n0x8231B039\t0x3B78\n0x8231B130\t0x3B79\n0x8231B131\t0x3B7A\n0x8231B132\t0x3B7B\n0x8231B133\t0x3B7C\n0x8231B134\t0x3B7D\n0x8231B135\t0x3B7E\n0x8231B136\t0x3B7F\n0x8231B137\t0x3B80\n0x8231B138\t0x3B81\n0x8231B139\t0x3B82\n0x8231B230\t0x3B83\n0x8231B231\t0x3B84\n0x8231B232\t0x3B85\n0x8231B233\t0x3B86\n0x8231B234\t0x3B87\n0x8231B235\t0x3B88\n0x8231B236\t0x3B89\n0x8231B237\t0x3B8A\n0x8231B238\t0x3B8B\n0x8231B239\t0x3B8C\n0x8231B330\t0x3B8D\n0x8231B331\t0x3B8E\n0x8231B332\t0x3B8F\n0x8231B333\t0x3B90\n0x8231B334\t0x3B91\n0x8231B335\t0x3B92\n0x8231B336\t0x3B93\n0x8231B337\t0x3B94\n0x8231B338\t0x3B95\n0x8231B339\t0x3B96\n0x8231B430\t0x3B97\n0x8231B431\t0x3B98\n0x8231B432\t0x3B99\n0x8231B433\t0x3B9A\n0x8231B434\t0x3B9B\n0x8231B435\t0x3B9C\n0x8231B436\t0x3B9D\n0x8231B437\t0x3B9E\n0x8231B438\t0x3B9F\n0x8231B439\t0x3BA0\n0x8231B530\t0x3BA1\n0x8231B531\t0x3BA2\n0x8231B532\t0x3BA3\n0x8231B533\t0x3BA4\n0x8231B534\t0x3BA5\n0x8231B535\t0x3BA6\n0x8231B536\t0x3BA7\n0x8231B537\t0x3BA8\n0x8231B538\t0x3BA9\n0x8231B539\t0x3BAA\n0x8231B630\t0x3BAB\n0x8231B631\t0x3BAC\n0x8231B632\t0x3BAD\n0x8231B633\t0x3BAE\n0x8231B634\t0x3BAF\n0x8231B635\t0x3BB0\n0x8231B636\t0x3BB1\n0x8231B637\t0x3BB2\n0x8231B638\t0x3BB3\n0x8231B639\t0x3BB4\n0x8231B730\t0x3BB5\n0x8231B731\t0x3BB6\n0x8231B732\t0x3BB7\n0x8231B733\t0x3BB8\n0x8231B734\t0x3BB9\n0x8231B735\t0x3BBA\n0x8231B736\t0x3BBB\n0x8231B737\t0x3BBC\n0x8231B738\t0x3BBD\n0x8231B739\t0x3BBE\n0x8231B830\t0x3BBF\n0x8231B831\t0x3BC0\n0x8231B832\t0x3BC1\n0x8231B833\t0x3BC2\n0x8231B834\t0x3BC3\n0x8231B835\t0x3BC4\n0x8231B836\t0x3BC5\n0x8231B837\t0x3BC6\n0x8231B838\t0x3BC7\n0x8231B839\t0x3BC8\n0x8231B930\t0x3BC9\n0x8231B931\t0x3BCA\n0x8231B932\t0x3BCB\n0x8231B933\t0x3BCC\n0x8231B934\t0x3BCD\n0x8231B935\t0x3BCE\n0x8231B936\t0x3BCF\n0x8231B937\t0x3BD0\n0x8231B938\t0x3BD1\n0x8231B939\t0x3BD2\n0x8231BA30\t0x3BD3\n0x8231BA31\t0x3BD4\n0x8231BA32\t0x3BD5\n0x8231BA33\t0x3BD6\n0x8231BA34\t0x3BD7\n0x8231BA35\t0x3BD8\n0x8231BA36\t0x3BD9\n0x8231BA37\t0x3BDA\n0x8231BA38\t0x3BDB\n0x8231BA39\t0x3BDC\n0x8231BB30\t0x3BDD\n0x8231BB31\t0x3BDE\n0x8231BB32\t0x3BDF\n0x8231BB33\t0x3BE0\n0x8231BB34\t0x3BE1\n0x8231BB35\t0x3BE2\n0x8231BB36\t0x3BE3\n0x8231BB37\t0x3BE4\n0x8231BB38\t0x3BE5\n0x8231BB39\t0x3BE6\n0x8231BC30\t0x3BE7\n0x8231BC31\t0x3BE8\n0x8231BC32\t0x3BE9\n0x8231BC33\t0x3BEA\n0x8231BC34\t0x3BEB\n0x8231BC35\t0x3BEC\n0x8231BC36\t0x3BED\n0x8231BC37\t0x3BEE\n0x8231BC38\t0x3BEF\n0x8231BC39\t0x3BF0\n0x8231BD30\t0x3BF1\n0x8231BD31\t0x3BF2\n0x8231BD32\t0x3BF3\n0x8231BD33\t0x3BF4\n0x8231BD34\t0x3BF5\n0x8231BD35\t0x3BF6\n0x8231BD36\t0x3BF7\n0x8231BD37\t0x3BF8\n0x8231BD38\t0x3BF9\n0x8231BD39\t0x3BFA\n0x8231BE30\t0x3BFB\n0x8231BE31\t0x3BFC\n0x8231BE32\t0x3BFD\n0x8231BE33\t0x3BFE\n0x8231BE34\t0x3BFF\n0x8231BE35\t0x3C00\n0x8231BE36\t0x3C01\n0x8231BE37\t0x3C02\n0x8231BE38\t0x3C03\n0x8231BE39\t0x3C04\n0x8231BF30\t0x3C05\n0x8231BF31\t0x3C06\n0x8231BF32\t0x3C07\n0x8231BF33\t0x3C08\n0x8231BF34\t0x3C09\n0x8231BF35\t0x3C0A\n0x8231BF36\t0x3C0B\n0x8231BF37\t0x3C0C\n0x8231BF38\t0x3C0D\n0x8231BF39\t0x3C0E\n0x8231C030\t0x3C0F\n0x8231C031\t0x3C10\n0x8231C032\t0x3C11\n0x8231C033\t0x3C12\n0x8231C034\t0x3C13\n0x8231C035\t0x3C14\n0x8231C036\t0x3C15\n0x8231C037\t0x3C16\n0x8231C038\t0x3C17\n0x8231C039\t0x3C18\n0x8231C130\t0x3C19\n0x8231C131\t0x3C1A\n0x8231C132\t0x3C1B\n0x8231C133\t0x3C1C\n0x8231C134\t0x3C1D\n0x8231C135\t0x3C1E\n0x8231C136\t0x3C1F\n0x8231C137\t0x3C20\n0x8231C138\t0x3C21\n0x8231C139\t0x3C22\n0x8231C230\t0x3C23\n0x8231C231\t0x3C24\n0x8231C232\t0x3C25\n0x8231C233\t0x3C26\n0x8231C234\t0x3C27\n0x8231C235\t0x3C28\n0x8231C236\t0x3C29\n0x8231C237\t0x3C2A\n0x8231C238\t0x3C2B\n0x8231C239\t0x3C2C\n0x8231C330\t0x3C2D\n0x8231C331\t0x3C2E\n0x8231C332\t0x3C2F\n0x8231C333\t0x3C30\n0x8231C334\t0x3C31\n0x8231C335\t0x3C32\n0x8231C336\t0x3C33\n0x8231C337\t0x3C34\n0x8231C338\t0x3C35\n0x8231C339\t0x3C36\n0x8231C430\t0x3C37\n0x8231C431\t0x3C38\n0x8231C432\t0x3C39\n0x8231C433\t0x3C3A\n0x8231C434\t0x3C3B\n0x8231C435\t0x3C3C\n0x8231C436\t0x3C3D\n0x8231C437\t0x3C3E\n0x8231C438\t0x3C3F\n0x8231C439\t0x3C40\n0x8231C530\t0x3C41\n0x8231C531\t0x3C42\n0x8231C532\t0x3C43\n0x8231C533\t0x3C44\n0x8231C534\t0x3C45\n0x8231C535\t0x3C46\n0x8231C536\t0x3C47\n0x8231C537\t0x3C48\n0x8231C538\t0x3C49\n0x8231C539\t0x3C4A\n0x8231C630\t0x3C4B\n0x8231C631\t0x3C4C\n0x8231C632\t0x3C4D\n0x8231C633\t0x3C4E\n0x8231C634\t0x3C4F\n0x8231C635\t0x3C50\n0x8231C636\t0x3C51\n0x8231C637\t0x3C52\n0x8231C638\t0x3C53\n0x8231C639\t0x3C54\n0x8231C730\t0x3C55\n0x8231C731\t0x3C56\n0x8231C732\t0x3C57\n0x8231C733\t0x3C58\n0x8231C734\t0x3C59\n0x8231C735\t0x3C5A\n0x8231C736\t0x3C5B\n0x8231C737\t0x3C5C\n0x8231C738\t0x3C5D\n0x8231C739\t0x3C5E\n0x8231C830\t0x3C5F\n0x8231C831\t0x3C60\n0x8231C832\t0x3C61\n0x8231C833\t0x3C62\n0x8231C834\t0x3C63\n0x8231C835\t0x3C64\n0x8231C836\t0x3C65\n0x8231C837\t0x3C66\n0x8231C838\t0x3C67\n0x8231C839\t0x3C68\n0x8231C930\t0x3C69\n0x8231C931\t0x3C6A\n0x8231C932\t0x3C6B\n0x8231C933\t0x3C6C\n0x8231C934\t0x3C6D\n0x8231C935\t0x3C6F\n0x8231C936\t0x3C70\n0x8231C937\t0x3C71\n0x8231C938\t0x3C72\n0x8231C939\t0x3C73\n0x8231CA30\t0x3C74\n0x8231CA31\t0x3C75\n0x8231CA32\t0x3C76\n0x8231CA33\t0x3C77\n0x8231CA34\t0x3C78\n0x8231CA35\t0x3C79\n0x8231CA36\t0x3C7A\n0x8231CA37\t0x3C7B\n0x8231CA38\t0x3C7C\n0x8231CA39\t0x3C7D\n0x8231CB30\t0x3C7E\n0x8231CB31\t0x3C7F\n0x8231CB32\t0x3C80\n0x8231CB33\t0x3C81\n0x8231CB34\t0x3C82\n0x8231CB35\t0x3C83\n0x8231CB36\t0x3C84\n0x8231CB37\t0x3C85\n0x8231CB38\t0x3C86\n0x8231CB39\t0x3C87\n0x8231CC30\t0x3C88\n0x8231CC31\t0x3C89\n0x8231CC32\t0x3C8A\n0x8231CC33\t0x3C8B\n0x8231CC34\t0x3C8C\n0x8231CC35\t0x3C8D\n0x8231CC36\t0x3C8E\n0x8231CC37\t0x3C8F\n0x8231CC38\t0x3C90\n0x8231CC39\t0x3C91\n0x8231CD30\t0x3C92\n0x8231CD31\t0x3C93\n0x8231CD32\t0x3C94\n0x8231CD33\t0x3C95\n0x8231CD34\t0x3C96\n0x8231CD35\t0x3C97\n0x8231CD36\t0x3C98\n0x8231CD37\t0x3C99\n0x8231CD38\t0x3C9A\n0x8231CD39\t0x3C9B\n0x8231CE30\t0x3C9C\n0x8231CE31\t0x3C9D\n0x8231CE32\t0x3C9E\n0x8231CE33\t0x3C9F\n0x8231CE34\t0x3CA0\n0x8231CE35\t0x3CA1\n0x8231CE36\t0x3CA2\n0x8231CE37\t0x3CA3\n0x8231CE38\t0x3CA4\n0x8231CE39\t0x3CA5\n0x8231CF30\t0x3CA6\n0x8231CF31\t0x3CA7\n0x8231CF32\t0x3CA8\n0x8231CF33\t0x3CA9\n0x8231CF34\t0x3CAA\n0x8231CF35\t0x3CAB\n0x8231CF36\t0x3CAC\n0x8231CF37\t0x3CAD\n0x8231CF38\t0x3CAE\n0x8231CF39\t0x3CAF\n0x8231D030\t0x3CB0\n0x8231D031\t0x3CB1\n0x8231D032\t0x3CB2\n0x8231D033\t0x3CB3\n0x8231D034\t0x3CB4\n0x8231D035\t0x3CB5\n0x8231D036\t0x3CB6\n0x8231D037\t0x3CB7\n0x8231D038\t0x3CB8\n0x8231D039\t0x3CB9\n0x8231D130\t0x3CBA\n0x8231D131\t0x3CBB\n0x8231D132\t0x3CBC\n0x8231D133\t0x3CBD\n0x8231D134\t0x3CBE\n0x8231D135\t0x3CBF\n0x8231D136\t0x3CC0\n0x8231D137\t0x3CC1\n0x8231D138\t0x3CC2\n0x8231D139\t0x3CC3\n0x8231D230\t0x3CC4\n0x8231D231\t0x3CC5\n0x8231D232\t0x3CC6\n0x8231D233\t0x3CC7\n0x8231D234\t0x3CC8\n0x8231D235\t0x3CC9\n0x8231D236\t0x3CCA\n0x8231D237\t0x3CCB\n0x8231D238\t0x3CCC\n0x8231D239\t0x3CCD\n0x8231D330\t0x3CCE\n0x8231D331\t0x3CCF\n0x8231D332\t0x3CD0\n0x8231D333\t0x3CD1\n0x8231D334\t0x3CD2\n0x8231D335\t0x3CD3\n0x8231D336\t0x3CD4\n0x8231D337\t0x3CD5\n0x8231D338\t0x3CD6\n0x8231D339\t0x3CD7\n0x8231D430\t0x3CD8\n0x8231D431\t0x3CD9\n0x8231D432\t0x3CDA\n0x8231D433\t0x3CDB\n0x8231D434\t0x3CDC\n0x8231D435\t0x3CDD\n0x8231D436\t0x3CDE\n0x8231D437\t0x3CDF\n0x8231D438\t0x3CE1\n0x8231D439\t0x3CE2\n0x8231D530\t0x3CE3\n0x8231D531\t0x3CE4\n0x8231D532\t0x3CE5\n0x8231D533\t0x3CE6\n0x8231D534\t0x3CE7\n0x8231D535\t0x3CE8\n0x8231D536\t0x3CE9\n0x8231D537\t0x3CEA\n0x8231D538\t0x3CEB\n0x8231D539\t0x3CEC\n0x8231D630\t0x3CED\n0x8231D631\t0x3CEE\n0x8231D632\t0x3CEF\n0x8231D633\t0x3CF0\n0x8231D634\t0x3CF1\n0x8231D635\t0x3CF2\n0x8231D636\t0x3CF3\n0x8231D637\t0x3CF4\n0x8231D638\t0x3CF5\n0x8231D639\t0x3CF6\n0x8231D730\t0x3CF7\n0x8231D731\t0x3CF8\n0x8231D732\t0x3CF9\n0x8231D733\t0x3CFA\n0x8231D734\t0x3CFB\n0x8231D735\t0x3CFC\n0x8231D736\t0x3CFD\n0x8231D737\t0x3CFE\n0x8231D738\t0x3CFF\n0x8231D739\t0x3D00\n0x8231D830\t0x3D01\n0x8231D831\t0x3D02\n0x8231D832\t0x3D03\n0x8231D833\t0x3D04\n0x8231D834\t0x3D05\n0x8231D835\t0x3D06\n0x8231D836\t0x3D07\n0x8231D837\t0x3D08\n0x8231D838\t0x3D09\n0x8231D839\t0x3D0A\n0x8231D930\t0x3D0B\n0x8231D931\t0x3D0C\n0x8231D932\t0x3D0D\n0x8231D933\t0x3D0E\n0x8231D934\t0x3D0F\n0x8231D935\t0x3D10\n0x8231D936\t0x3D11\n0x8231D937\t0x3D12\n0x8231D938\t0x3D13\n0x8231D939\t0x3D14\n0x8231DA30\t0x3D15\n0x8231DA31\t0x3D16\n0x8231DA32\t0x3D17\n0x8231DA33\t0x3D18\n0x8231DA34\t0x3D19\n0x8231DA35\t0x3D1A\n0x8231DA36\t0x3D1B\n0x8231DA37\t0x3D1C\n0x8231DA38\t0x3D1D\n0x8231DA39\t0x3D1E\n0x8231DB30\t0x3D1F\n0x8231DB31\t0x3D20\n0x8231DB32\t0x3D21\n0x8231DB33\t0x3D22\n0x8231DB34\t0x3D23\n0x8231DB35\t0x3D24\n0x8231DB36\t0x3D25\n0x8231DB37\t0x3D26\n0x8231DB38\t0x3D27\n0x8231DB39\t0x3D28\n0x8231DC30\t0x3D29\n0x8231DC31\t0x3D2A\n0x8231DC32\t0x3D2B\n0x8231DC33\t0x3D2C\n0x8231DC34\t0x3D2D\n0x8231DC35\t0x3D2E\n0x8231DC36\t0x3D2F\n0x8231DC37\t0x3D30\n0x8231DC38\t0x3D31\n0x8231DC39\t0x3D32\n0x8231DD30\t0x3D33\n0x8231DD31\t0x3D34\n0x8231DD32\t0x3D35\n0x8231DD33\t0x3D36\n0x8231DD34\t0x3D37\n0x8231DD35\t0x3D38\n0x8231DD36\t0x3D39\n0x8231DD37\t0x3D3A\n0x8231DD38\t0x3D3B\n0x8231DD39\t0x3D3C\n0x8231DE30\t0x3D3D\n0x8231DE31\t0x3D3E\n0x8231DE32\t0x3D3F\n0x8231DE33\t0x3D40\n0x8231DE34\t0x3D41\n0x8231DE35\t0x3D42\n0x8231DE36\t0x3D43\n0x8231DE37\t0x3D44\n0x8231DE38\t0x3D45\n0x8231DE39\t0x3D46\n0x8231DF30\t0x3D47\n0x8231DF31\t0x3D48\n0x8231DF32\t0x3D49\n0x8231DF33\t0x3D4A\n0x8231DF34\t0x3D4B\n0x8231DF35\t0x3D4C\n0x8231DF36\t0x3D4D\n0x8231DF37\t0x3D4E\n0x8231DF38\t0x3D4F\n0x8231DF39\t0x3D50\n0x8231E030\t0x3D51\n0x8231E031\t0x3D52\n0x8231E032\t0x3D53\n0x8231E033\t0x3D54\n0x8231E034\t0x3D55\n0x8231E035\t0x3D56\n0x8231E036\t0x3D57\n0x8231E037\t0x3D58\n0x8231E038\t0x3D59\n0x8231E039\t0x3D5A\n0x8231E130\t0x3D5B\n0x8231E131\t0x3D5C\n0x8231E132\t0x3D5D\n0x8231E133\t0x3D5E\n0x8231E134\t0x3D5F\n0x8231E135\t0x3D60\n0x8231E136\t0x3D61\n0x8231E137\t0x3D62\n0x8231E138\t0x3D63\n0x8231E139\t0x3D64\n0x8231E230\t0x3D65\n0x8231E231\t0x3D66\n0x8231E232\t0x3D67\n0x8231E233\t0x3D68\n0x8231E234\t0x3D69\n0x8231E235\t0x3D6A\n0x8231E236\t0x3D6B\n0x8231E237\t0x3D6C\n0x8231E238\t0x3D6D\n0x8231E239\t0x3D6E\n0x8231E330\t0x3D6F\n0x8231E331\t0x3D70\n0x8231E332\t0x3D71\n0x8231E333\t0x3D72\n0x8231E334\t0x3D73\n0x8231E335\t0x3D74\n0x8231E336\t0x3D75\n0x8231E337\t0x3D76\n0x8231E338\t0x3D77\n0x8231E339\t0x3D78\n0x8231E430\t0x3D79\n0x8231E431\t0x3D7A\n0x8231E432\t0x3D7B\n0x8231E433\t0x3D7C\n0x8231E434\t0x3D7D\n0x8231E435\t0x3D7E\n0x8231E436\t0x3D7F\n0x8231E437\t0x3D80\n0x8231E438\t0x3D81\n0x8231E439\t0x3D82\n0x8231E530\t0x3D83\n0x8231E531\t0x3D84\n0x8231E532\t0x3D85\n0x8231E533\t0x3D86\n0x8231E534\t0x3D87\n0x8231E535\t0x3D88\n0x8231E536\t0x3D89\n0x8231E537\t0x3D8A\n0x8231E538\t0x3D8B\n0x8231E539\t0x3D8C\n0x8231E630\t0x3D8D\n0x8231E631\t0x3D8E\n0x8231E632\t0x3D8F\n0x8231E633\t0x3D90\n0x8231E634\t0x3D91\n0x8231E635\t0x3D92\n0x8231E636\t0x3D93\n0x8231E637\t0x3D94\n0x8231E638\t0x3D95\n0x8231E639\t0x3D96\n0x8231E730\t0x3D97\n0x8231E731\t0x3D98\n0x8231E732\t0x3D99\n0x8231E733\t0x3D9A\n0x8231E734\t0x3D9B\n0x8231E735\t0x3D9C\n0x8231E736\t0x3D9D\n0x8231E737\t0x3D9E\n0x8231E738\t0x3D9F\n0x8231E739\t0x3DA0\n0x8231E830\t0x3DA1\n0x8231E831\t0x3DA2\n0x8231E832\t0x3DA3\n0x8231E833\t0x3DA4\n0x8231E834\t0x3DA5\n0x8231E835\t0x3DA6\n0x8231E836\t0x3DA7\n0x8231E837\t0x3DA8\n0x8231E838\t0x3DA9\n0x8231E839\t0x3DAA\n0x8231E930\t0x3DAB\n0x8231E931\t0x3DAC\n0x8231E932\t0x3DAD\n0x8231E933\t0x3DAE\n0x8231E934\t0x3DAF\n0x8231E935\t0x3DB0\n0x8231E936\t0x3DB1\n0x8231E937\t0x3DB2\n0x8231E938\t0x3DB3\n0x8231E939\t0x3DB4\n0x8231EA30\t0x3DB5\n0x8231EA31\t0x3DB6\n0x8231EA32\t0x3DB7\n0x8231EA33\t0x3DB8\n0x8231EA34\t0x3DB9\n0x8231EA35\t0x3DBA\n0x8231EA36\t0x3DBB\n0x8231EA37\t0x3DBC\n0x8231EA38\t0x3DBD\n0x8231EA39\t0x3DBE\n0x8231EB30\t0x3DBF\n0x8231EB31\t0x3DC0\n0x8231EB32\t0x3DC1\n0x8231EB33\t0x3DC2\n0x8231EB34\t0x3DC3\n0x8231EB35\t0x3DC4\n0x8231EB36\t0x3DC5\n0x8231EB37\t0x3DC6\n0x8231EB38\t0x3DC7\n0x8231EB39\t0x3DC8\n0x8231EC30\t0x3DC9\n0x8231EC31\t0x3DCA\n0x8231EC32\t0x3DCB\n0x8231EC33\t0x3DCC\n0x8231EC34\t0x3DCD\n0x8231EC35\t0x3DCE\n0x8231EC36\t0x3DCF\n0x8231EC37\t0x3DD0\n0x8231EC38\t0x3DD1\n0x8231EC39\t0x3DD2\n0x8231ED30\t0x3DD3\n0x8231ED31\t0x3DD4\n0x8231ED32\t0x3DD5\n0x8231ED33\t0x3DD6\n0x8231ED34\t0x3DD7\n0x8231ED35\t0x3DD8\n0x8231ED36\t0x3DD9\n0x8231ED37\t0x3DDA\n0x8231ED38\t0x3DDB\n0x8231ED39\t0x3DDC\n0x8231EE30\t0x3DDD\n0x8231EE31\t0x3DDE\n0x8231EE32\t0x3DDF\n0x8231EE33\t0x3DE0\n0x8231EE34\t0x3DE1\n0x8231EE35\t0x3DE2\n0x8231EE36\t0x3DE3\n0x8231EE37\t0x3DE4\n0x8231EE38\t0x3DE5\n0x8231EE39\t0x3DE6\n0x8231EF30\t0x3DE7\n0x8231EF31\t0x3DE8\n0x8231EF32\t0x3DE9\n0x8231EF33\t0x3DEA\n0x8231EF34\t0x3DEB\n0x8231EF35\t0x3DEC\n0x8231EF36\t0x3DED\n0x8231EF37\t0x3DEE\n0x8231EF38\t0x3DEF\n0x8231EF39\t0x3DF0\n0x8231F030\t0x3DF1\n0x8231F031\t0x3DF2\n0x8231F032\t0x3DF3\n0x8231F033\t0x3DF4\n0x8231F034\t0x3DF5\n0x8231F035\t0x3DF6\n0x8231F036\t0x3DF7\n0x8231F037\t0x3DF8\n0x8231F038\t0x3DF9\n0x8231F039\t0x3DFA\n0x8231F130\t0x3DFB\n0x8231F131\t0x3DFC\n0x8231F132\t0x3DFD\n0x8231F133\t0x3DFE\n0x8231F134\t0x3DFF\n0x8231F135\t0x3E00\n0x8231F136\t0x3E01\n0x8231F137\t0x3E02\n0x8231F138\t0x3E03\n0x8231F139\t0x3E04\n0x8231F230\t0x3E05\n0x8231F231\t0x3E06\n0x8231F232\t0x3E07\n0x8231F233\t0x3E08\n0x8231F234\t0x3E09\n0x8231F235\t0x3E0A\n0x8231F236\t0x3E0B\n0x8231F237\t0x3E0C\n0x8231F238\t0x3E0D\n0x8231F239\t0x3E0E\n0x8231F330\t0x3E0F\n0x8231F331\t0x3E10\n0x8231F332\t0x3E11\n0x8231F333\t0x3E12\n0x8231F334\t0x3E13\n0x8231F335\t0x3E14\n0x8231F336\t0x3E15\n0x8231F337\t0x3E16\n0x8231F338\t0x3E17\n0x8231F339\t0x3E18\n0x8231F430\t0x3E19\n0x8231F431\t0x3E1A\n0x8231F432\t0x3E1B\n0x8231F433\t0x3E1C\n0x8231F434\t0x3E1D\n0x8231F435\t0x3E1E\n0x8231F436\t0x3E1F\n0x8231F437\t0x3E20\n0x8231F438\t0x3E21\n0x8231F439\t0x3E22\n0x8231F530\t0x3E23\n0x8231F531\t0x3E24\n0x8231F532\t0x3E25\n0x8231F533\t0x3E26\n0x8231F534\t0x3E27\n0x8231F535\t0x3E28\n0x8231F536\t0x3E29\n0x8231F537\t0x3E2A\n0x8231F538\t0x3E2B\n0x8231F539\t0x3E2C\n0x8231F630\t0x3E2D\n0x8231F631\t0x3E2E\n0x8231F632\t0x3E2F\n0x8231F633\t0x3E30\n0x8231F634\t0x3E31\n0x8231F635\t0x3E32\n0x8231F636\t0x3E33\n0x8231F637\t0x3E34\n0x8231F638\t0x3E35\n0x8231F639\t0x3E36\n0x8231F730\t0x3E37\n0x8231F731\t0x3E38\n0x8231F732\t0x3E39\n0x8231F733\t0x3E3A\n0x8231F734\t0x3E3B\n0x8231F735\t0x3E3C\n0x8231F736\t0x3E3D\n0x8231F737\t0x3E3E\n0x8231F738\t0x3E3F\n0x8231F739\t0x3E40\n0x8231F830\t0x3E41\n0x8231F831\t0x3E42\n0x8231F832\t0x3E43\n0x8231F833\t0x3E44\n0x8231F834\t0x3E45\n0x8231F835\t0x3E46\n0x8231F836\t0x3E47\n0x8231F837\t0x3E48\n0x8231F838\t0x3E49\n0x8231F839\t0x3E4A\n0x8231F930\t0x3E4B\n0x8231F931\t0x3E4C\n0x8231F932\t0x3E4D\n0x8231F933\t0x3E4E\n0x8231F934\t0x3E4F\n0x8231F935\t0x3E50\n0x8231F936\t0x3E51\n0x8231F937\t0x3E52\n0x8231F938\t0x3E53\n0x8231F939\t0x3E54\n0x8231FA30\t0x3E55\n0x8231FA31\t0x3E56\n0x8231FA32\t0x3E57\n0x8231FA33\t0x3E58\n0x8231FA34\t0x3E59\n0x8231FA35\t0x3E5A\n0x8231FA36\t0x3E5B\n0x8231FA37\t0x3E5C\n0x8231FA38\t0x3E5D\n0x8231FA39\t0x3E5E\n0x8231FB30\t0x3E5F\n0x8231FB31\t0x3E60\n0x8231FB32\t0x3E61\n0x8231FB33\t0x3E62\n0x8231FB34\t0x3E63\n0x8231FB35\t0x3E64\n0x8231FB36\t0x3E65\n0x8231FB37\t0x3E66\n0x8231FB38\t0x3E67\n0x8231FB39\t0x3E68\n0x8231FC30\t0x3E69\n0x8231FC31\t0x3E6A\n0x8231FC32\t0x3E6B\n0x8231FC33\t0x3E6C\n0x8231FC34\t0x3E6D\n0x8231FC35\t0x3E6E\n0x8231FC36\t0x3E6F\n0x8231FC37\t0x3E70\n0x8231FC38\t0x3E71\n0x8231FC39\t0x3E72\n0x8231FD30\t0x3E73\n0x8231FD31\t0x3E74\n0x8231FD32\t0x3E75\n0x8231FD33\t0x3E76\n0x8231FD34\t0x3E77\n0x8231FD35\t0x3E78\n0x8231FD36\t0x3E79\n0x8231FD37\t0x3E7A\n0x8231FD38\t0x3E7B\n0x8231FD39\t0x3E7C\n0x8231FE30\t0x3E7D\n0x8231FE31\t0x3E7E\n0x8231FE32\t0x3E7F\n0x8231FE33\t0x3E80\n0x8231FE34\t0x3E81\n0x8231FE35\t0x3E82\n0x8231FE36\t0x3E83\n0x8231FE37\t0x3E84\n0x8231FE38\t0x3E85\n0x8231FE39\t0x3E86\n0x82328130\t0x3E87\n0x82328131\t0x3E88\n0x82328132\t0x3E89\n0x82328133\t0x3E8A\n0x82328134\t0x3E8B\n0x82328135\t0x3E8C\n0x82328136\t0x3E8D\n0x82328137\t0x3E8E\n0x82328138\t0x3E8F\n0x82328139\t0x3E90\n0x82328230\t0x3E91\n0x82328231\t0x3E92\n0x82328232\t0x3E93\n0x82328233\t0x3E94\n0x82328234\t0x3E95\n0x82328235\t0x3E96\n0x82328236\t0x3E97\n0x82328237\t0x3E98\n0x82328238\t0x3E99\n0x82328239\t0x3E9A\n0x82328330\t0x3E9B\n0x82328331\t0x3E9C\n0x82328332\t0x3E9D\n0x82328333\t0x3E9E\n0x82328334\t0x3E9F\n0x82328335\t0x3EA0\n0x82328336\t0x3EA1\n0x82328337\t0x3EA2\n0x82328338\t0x3EA3\n0x82328339\t0x3EA4\n0x82328430\t0x3EA5\n0x82328431\t0x3EA6\n0x82328432\t0x3EA7\n0x82328433\t0x3EA8\n0x82328434\t0x3EA9\n0x82328435\t0x3EAA\n0x82328436\t0x3EAB\n0x82328437\t0x3EAC\n0x82328438\t0x3EAD\n0x82328439\t0x3EAE\n0x82328530\t0x3EAF\n0x82328531\t0x3EB0\n0x82328532\t0x3EB1\n0x82328533\t0x3EB2\n0x82328534\t0x3EB3\n0x82328535\t0x3EB4\n0x82328536\t0x3EB5\n0x82328537\t0x3EB6\n0x82328538\t0x3EB7\n0x82328539\t0x3EB8\n0x82328630\t0x3EB9\n0x82328631\t0x3EBA\n0x82328632\t0x3EBB\n0x82328633\t0x3EBC\n0x82328634\t0x3EBD\n0x82328635\t0x3EBE\n0x82328636\t0x3EBF\n0x82328637\t0x3EC0\n0x82328638\t0x3EC1\n0x82328639\t0x3EC2\n0x82328730\t0x3EC3\n0x82328731\t0x3EC4\n0x82328732\t0x3EC5\n0x82328733\t0x3EC6\n0x82328734\t0x3EC7\n0x82328735\t0x3EC8\n0x82328736\t0x3EC9\n0x82328737\t0x3ECA\n0x82328738\t0x3ECB\n0x82328739\t0x3ECC\n0x82328830\t0x3ECD\n0x82328831\t0x3ECE\n0x82328832\t0x3ECF\n0x82328833\t0x3ED0\n0x82328834\t0x3ED1\n0x82328835\t0x3ED2\n0x82328836\t0x3ED3\n0x82328837\t0x3ED4\n0x82328838\t0x3ED5\n0x82328839\t0x3ED6\n0x82328930\t0x3ED7\n0x82328931\t0x3ED8\n0x82328932\t0x3ED9\n0x82328933\t0x3EDA\n0x82328934\t0x3EDB\n0x82328935\t0x3EDC\n0x82328936\t0x3EDD\n0x82328937\t0x3EDE\n0x82328938\t0x3EDF\n0x82328939\t0x3EE0\n0x82328A30\t0x3EE1\n0x82328A31\t0x3EE2\n0x82328A32\t0x3EE3\n0x82328A33\t0x3EE4\n0x82328A34\t0x3EE5\n0x82328A35\t0x3EE6\n0x82328A36\t0x3EE7\n0x82328A37\t0x3EE8\n0x82328A38\t0x3EE9\n0x82328A39\t0x3EEA\n0x82328B30\t0x3EEB\n0x82328B31\t0x3EEC\n0x82328B32\t0x3EED\n0x82328B33\t0x3EEE\n0x82328B34\t0x3EEF\n0x82328B35\t0x3EF0\n0x82328B36\t0x3EF1\n0x82328B37\t0x3EF2\n0x82328B38\t0x3EF3\n0x82328B39\t0x3EF4\n0x82328C30\t0x3EF5\n0x82328C31\t0x3EF6\n0x82328C32\t0x3EF7\n0x82328C33\t0x3EF8\n0x82328C34\t0x3EF9\n0x82328C35\t0x3EFA\n0x82328C36\t0x3EFB\n0x82328C37\t0x3EFC\n0x82328C38\t0x3EFD\n0x82328C39\t0x3EFE\n0x82328D30\t0x3EFF\n0x82328D31\t0x3F00\n0x82328D32\t0x3F01\n0x82328D33\t0x3F02\n0x82328D34\t0x3F03\n0x82328D35\t0x3F04\n0x82328D36\t0x3F05\n0x82328D37\t0x3F06\n0x82328D38\t0x3F07\n0x82328D39\t0x3F08\n0x82328E30\t0x3F09\n0x82328E31\t0x3F0A\n0x82328E32\t0x3F0B\n0x82328E33\t0x3F0C\n0x82328E34\t0x3F0D\n0x82328E35\t0x3F0E\n0x82328E36\t0x3F0F\n0x82328E37\t0x3F10\n0x82328E38\t0x3F11\n0x82328E39\t0x3F12\n0x82328F30\t0x3F13\n0x82328F31\t0x3F14\n0x82328F32\t0x3F15\n0x82328F33\t0x3F16\n0x82328F34\t0x3F17\n0x82328F35\t0x3F18\n0x82328F36\t0x3F19\n0x82328F37\t0x3F1A\n0x82328F38\t0x3F1B\n0x82328F39\t0x3F1C\n0x82329030\t0x3F1D\n0x82329031\t0x3F1E\n0x82329032\t0x3F1F\n0x82329033\t0x3F20\n0x82329034\t0x3F21\n0x82329035\t0x3F22\n0x82329036\t0x3F23\n0x82329037\t0x3F24\n0x82329038\t0x3F25\n0x82329039\t0x3F26\n0x82329130\t0x3F27\n0x82329131\t0x3F28\n0x82329132\t0x3F29\n0x82329133\t0x3F2A\n0x82329134\t0x3F2B\n0x82329135\t0x3F2C\n0x82329136\t0x3F2D\n0x82329137\t0x3F2E\n0x82329138\t0x3F2F\n0x82329139\t0x3F30\n0x82329230\t0x3F31\n0x82329231\t0x3F32\n0x82329232\t0x3F33\n0x82329233\t0x3F34\n0x82329234\t0x3F35\n0x82329235\t0x3F36\n0x82329236\t0x3F37\n0x82329237\t0x3F38\n0x82329238\t0x3F39\n0x82329239\t0x3F3A\n0x82329330\t0x3F3B\n0x82329331\t0x3F3C\n0x82329332\t0x3F3D\n0x82329333\t0x3F3E\n0x82329334\t0x3F3F\n0x82329335\t0x3F40\n0x82329336\t0x3F41\n0x82329337\t0x3F42\n0x82329338\t0x3F43\n0x82329339\t0x3F44\n0x82329430\t0x3F45\n0x82329431\t0x3F46\n0x82329432\t0x3F47\n0x82329433\t0x3F48\n0x82329434\t0x3F49\n0x82329435\t0x3F4A\n0x82329436\t0x3F4B\n0x82329437\t0x3F4C\n0x82329438\t0x3F4D\n0x82329439\t0x3F4E\n0x82329530\t0x3F4F\n0x82329531\t0x3F50\n0x82329532\t0x3F51\n0x82329533\t0x3F52\n0x82329534\t0x3F53\n0x82329535\t0x3F54\n0x82329536\t0x3F55\n0x82329537\t0x3F56\n0x82329538\t0x3F57\n0x82329539\t0x3F58\n0x82329630\t0x3F59\n0x82329631\t0x3F5A\n0x82329632\t0x3F5B\n0x82329633\t0x3F5C\n0x82329634\t0x3F5D\n0x82329635\t0x3F5E\n0x82329636\t0x3F5F\n0x82329637\t0x3F60\n0x82329638\t0x3F61\n0x82329639\t0x3F62\n0x82329730\t0x3F63\n0x82329731\t0x3F64\n0x82329732\t0x3F65\n0x82329733\t0x3F66\n0x82329734\t0x3F67\n0x82329735\t0x3F68\n0x82329736\t0x3F69\n0x82329737\t0x3F6A\n0x82329738\t0x3F6B\n0x82329739\t0x3F6C\n0x82329830\t0x3F6D\n0x82329831\t0x3F6E\n0x82329832\t0x3F6F\n0x82329833\t0x3F70\n0x82329834\t0x3F71\n0x82329835\t0x3F72\n0x82329836\t0x3F73\n0x82329837\t0x3F74\n0x82329838\t0x3F75\n0x82329839\t0x3F76\n0x82329930\t0x3F77\n0x82329931\t0x3F78\n0x82329932\t0x3F79\n0x82329933\t0x3F7A\n0x82329934\t0x3F7B\n0x82329935\t0x3F7C\n0x82329936\t0x3F7D\n0x82329937\t0x3F7E\n0x82329938\t0x3F7F\n0x82329939\t0x3F80\n0x82329A30\t0x3F81\n0x82329A31\t0x3F82\n0x82329A32\t0x3F83\n0x82329A33\t0x3F84\n0x82329A34\t0x3F85\n0x82329A35\t0x3F86\n0x82329A36\t0x3F87\n0x82329A37\t0x3F88\n0x82329A38\t0x3F89\n0x82329A39\t0x3F8A\n0x82329B30\t0x3F8B\n0x82329B31\t0x3F8C\n0x82329B32\t0x3F8D\n0x82329B33\t0x3F8E\n0x82329B34\t0x3F8F\n0x82329B35\t0x3F90\n0x82329B36\t0x3F91\n0x82329B37\t0x3F92\n0x82329B38\t0x3F93\n0x82329B39\t0x3F94\n0x82329C30\t0x3F95\n0x82329C31\t0x3F96\n0x82329C32\t0x3F97\n0x82329C33\t0x3F98\n0x82329C34\t0x3F99\n0x82329C35\t0x3F9A\n0x82329C36\t0x3F9B\n0x82329C37\t0x3F9C\n0x82329C38\t0x3F9D\n0x82329C39\t0x3F9E\n0x82329D30\t0x3F9F\n0x82329D31\t0x3FA0\n0x82329D32\t0x3FA1\n0x82329D33\t0x3FA2\n0x82329D34\t0x3FA3\n0x82329D35\t0x3FA4\n0x82329D36\t0x3FA5\n0x82329D37\t0x3FA6\n0x82329D38\t0x3FA7\n0x82329D39\t0x3FA8\n0x82329E30\t0x3FA9\n0x82329E31\t0x3FAA\n0x82329E32\t0x3FAB\n0x82329E33\t0x3FAC\n0x82329E34\t0x3FAD\n0x82329E35\t0x3FAE\n0x82329E36\t0x3FAF\n0x82329E37\t0x3FB0\n0x82329E38\t0x3FB1\n0x82329E39\t0x3FB2\n0x82329F30\t0x3FB3\n0x82329F31\t0x3FB4\n0x82329F32\t0x3FB5\n0x82329F33\t0x3FB6\n0x82329F34\t0x3FB7\n0x82329F35\t0x3FB8\n0x82329F36\t0x3FB9\n0x82329F37\t0x3FBA\n0x82329F38\t0x3FBB\n0x82329F39\t0x3FBC\n0x8232A030\t0x3FBD\n0x8232A031\t0x3FBE\n0x8232A032\t0x3FBF\n0x8232A033\t0x3FC0\n0x8232A034\t0x3FC1\n0x8232A035\t0x3FC2\n0x8232A036\t0x3FC3\n0x8232A037\t0x3FC4\n0x8232A038\t0x3FC5\n0x8232A039\t0x3FC6\n0x8232A130\t0x3FC7\n0x8232A131\t0x3FC8\n0x8232A132\t0x3FC9\n0x8232A133\t0x3FCA\n0x8232A134\t0x3FCB\n0x8232A135\t0x3FCC\n0x8232A136\t0x3FCD\n0x8232A137\t0x3FCE\n0x8232A138\t0x3FCF\n0x8232A139\t0x3FD0\n0x8232A230\t0x3FD1\n0x8232A231\t0x3FD2\n0x8232A232\t0x3FD3\n0x8232A233\t0x3FD4\n0x8232A234\t0x3FD5\n0x8232A235\t0x3FD6\n0x8232A236\t0x3FD7\n0x8232A237\t0x3FD8\n0x8232A238\t0x3FD9\n0x8232A239\t0x3FDA\n0x8232A330\t0x3FDB\n0x8232A331\t0x3FDC\n0x8232A332\t0x3FDD\n0x8232A333\t0x3FDE\n0x8232A334\t0x3FDF\n0x8232A335\t0x3FE0\n0x8232A336\t0x3FE1\n0x8232A337\t0x3FE2\n0x8232A338\t0x3FE3\n0x8232A339\t0x3FE4\n0x8232A430\t0x3FE5\n0x8232A431\t0x3FE6\n0x8232A432\t0x3FE7\n0x8232A433\t0x3FE8\n0x8232A434\t0x3FE9\n0x8232A435\t0x3FEA\n0x8232A436\t0x3FEB\n0x8232A437\t0x3FEC\n0x8232A438\t0x3FED\n0x8232A439\t0x3FEE\n0x8232A530\t0x3FEF\n0x8232A531\t0x3FF0\n0x8232A532\t0x3FF1\n0x8232A533\t0x3FF2\n0x8232A534\t0x3FF3\n0x8232A535\t0x3FF4\n0x8232A536\t0x3FF5\n0x8232A537\t0x3FF6\n0x8232A538\t0x3FF7\n0x8232A539\t0x3FF8\n0x8232A630\t0x3FF9\n0x8232A631\t0x3FFA\n0x8232A632\t0x3FFB\n0x8232A633\t0x3FFC\n0x8232A634\t0x3FFD\n0x8232A635\t0x3FFE\n0x8232A636\t0x3FFF\n0x8232A637\t0x4000\n0x8232A638\t0x4001\n0x8232A639\t0x4002\n0x8232A730\t0x4003\n0x8232A731\t0x4004\n0x8232A732\t0x4005\n0x8232A733\t0x4006\n0x8232A734\t0x4007\n0x8232A735\t0x4008\n0x8232A736\t0x4009\n0x8232A737\t0x400A\n0x8232A738\t0x400B\n0x8232A739\t0x400C\n0x8232A830\t0x400D\n0x8232A831\t0x400E\n0x8232A832\t0x400F\n0x8232A833\t0x4010\n0x8232A834\t0x4011\n0x8232A835\t0x4012\n0x8232A836\t0x4013\n0x8232A837\t0x4014\n0x8232A838\t0x4015\n0x8232A839\t0x4016\n0x8232A930\t0x4017\n0x8232A931\t0x4018\n0x8232A932\t0x4019\n0x8232A933\t0x401A\n0x8232A934\t0x401B\n0x8232A935\t0x401C\n0x8232A936\t0x401D\n0x8232A937\t0x401E\n0x8232A938\t0x401F\n0x8232A939\t0x4020\n0x8232AA30\t0x4021\n0x8232AA31\t0x4022\n0x8232AA32\t0x4023\n0x8232AA33\t0x4024\n0x8232AA34\t0x4025\n0x8232AA35\t0x4026\n0x8232AA36\t0x4027\n0x8232AA37\t0x4028\n0x8232AA38\t0x4029\n0x8232AA39\t0x402A\n0x8232AB30\t0x402B\n0x8232AB31\t0x402C\n0x8232AB32\t0x402D\n0x8232AB33\t0x402E\n0x8232AB34\t0x402F\n0x8232AB35\t0x4030\n0x8232AB36\t0x4031\n0x8232AB37\t0x4032\n0x8232AB38\t0x4033\n0x8232AB39\t0x4034\n0x8232AC30\t0x4035\n0x8232AC31\t0x4036\n0x8232AC32\t0x4037\n0x8232AC33\t0x4038\n0x8232AC34\t0x4039\n0x8232AC35\t0x403A\n0x8232AC36\t0x403B\n0x8232AC37\t0x403C\n0x8232AC38\t0x403D\n0x8232AC39\t0x403E\n0x8232AD30\t0x403F\n0x8232AD31\t0x4040\n0x8232AD32\t0x4041\n0x8232AD33\t0x4042\n0x8232AD34\t0x4043\n0x8232AD35\t0x4044\n0x8232AD36\t0x4045\n0x8232AD37\t0x4046\n0x8232AD38\t0x4047\n0x8232AD39\t0x4048\n0x8232AE30\t0x4049\n0x8232AE31\t0x404A\n0x8232AE32\t0x404B\n0x8232AE33\t0x404C\n0x8232AE34\t0x404D\n0x8232AE35\t0x404E\n0x8232AE36\t0x404F\n0x8232AE37\t0x4050\n0x8232AE38\t0x4051\n0x8232AE39\t0x4052\n0x8232AF30\t0x4053\n0x8232AF31\t0x4054\n0x8232AF32\t0x4055\n0x8232AF33\t0x4057\n0x8232AF34\t0x4058\n0x8232AF35\t0x4059\n0x8232AF36\t0x405A\n0x8232AF37\t0x405B\n0x8232AF38\t0x405C\n0x8232AF39\t0x405D\n0x8232B030\t0x405E\n0x8232B031\t0x405F\n0x8232B032\t0x4060\n0x8232B033\t0x4061\n0x8232B034\t0x4062\n0x8232B035\t0x4063\n0x8232B036\t0x4064\n0x8232B037\t0x4065\n0x8232B038\t0x4066\n0x8232B039\t0x4067\n0x8232B130\t0x4068\n0x8232B131\t0x4069\n0x8232B132\t0x406A\n0x8232B133\t0x406B\n0x8232B134\t0x406C\n0x8232B135\t0x406D\n0x8232B136\t0x406E\n0x8232B137\t0x406F\n0x8232B138\t0x4070\n0x8232B139\t0x4071\n0x8232B230\t0x4072\n0x8232B231\t0x4073\n0x8232B232\t0x4074\n0x8232B233\t0x4075\n0x8232B234\t0x4076\n0x8232B235\t0x4077\n0x8232B236\t0x4078\n0x8232B237\t0x4079\n0x8232B238\t0x407A\n0x8232B239\t0x407B\n0x8232B330\t0x407C\n0x8232B331\t0x407D\n0x8232B332\t0x407E\n0x8232B333\t0x407F\n0x8232B334\t0x4080\n0x8232B335\t0x4081\n0x8232B336\t0x4082\n0x8232B337\t0x4083\n0x8232B338\t0x4084\n0x8232B339\t0x4085\n0x8232B430\t0x4086\n0x8232B431\t0x4087\n0x8232B432\t0x4088\n0x8232B433\t0x4089\n0x8232B434\t0x408A\n0x8232B435\t0x408B\n0x8232B436\t0x408C\n0x8232B437\t0x408D\n0x8232B438\t0x408E\n0x8232B439\t0x408F\n0x8232B530\t0x4090\n0x8232B531\t0x4091\n0x8232B532\t0x4092\n0x8232B533\t0x4093\n0x8232B534\t0x4094\n0x8232B535\t0x4095\n0x8232B536\t0x4096\n0x8232B537\t0x4097\n0x8232B538\t0x4098\n0x8232B539\t0x4099\n0x8232B630\t0x409A\n0x8232B631\t0x409B\n0x8232B632\t0x409C\n0x8232B633\t0x409D\n0x8232B634\t0x409E\n0x8232B635\t0x409F\n0x8232B636\t0x40A0\n0x8232B637\t0x40A1\n0x8232B638\t0x40A2\n0x8232B639\t0x40A3\n0x8232B730\t0x40A4\n0x8232B731\t0x40A5\n0x8232B732\t0x40A6\n0x8232B733\t0x40A7\n0x8232B734\t0x40A8\n0x8232B735\t0x40A9\n0x8232B736\t0x40AA\n0x8232B737\t0x40AB\n0x8232B738\t0x40AC\n0x8232B739\t0x40AD\n0x8232B830\t0x40AE\n0x8232B831\t0x40AF\n0x8232B832\t0x40B0\n0x8232B833\t0x40B1\n0x8232B834\t0x40B2\n0x8232B835\t0x40B3\n0x8232B836\t0x40B4\n0x8232B837\t0x40B5\n0x8232B838\t0x40B6\n0x8232B839\t0x40B7\n0x8232B930\t0x40B8\n0x8232B931\t0x40B9\n0x8232B932\t0x40BA\n0x8232B933\t0x40BB\n0x8232B934\t0x40BC\n0x8232B935\t0x40BD\n0x8232B936\t0x40BE\n0x8232B937\t0x40BF\n0x8232B938\t0x40C0\n0x8232B939\t0x40C1\n0x8232BA30\t0x40C2\n0x8232BA31\t0x40C3\n0x8232BA32\t0x40C4\n0x8232BA33\t0x40C5\n0x8232BA34\t0x40C6\n0x8232BA35\t0x40C7\n0x8232BA36\t0x40C8\n0x8232BA37\t0x40C9\n0x8232BA38\t0x40CA\n0x8232BA39\t0x40CB\n0x8232BB30\t0x40CC\n0x8232BB31\t0x40CD\n0x8232BB32\t0x40CE\n0x8232BB33\t0x40CF\n0x8232BB34\t0x40D0\n0x8232BB35\t0x40D1\n0x8232BB36\t0x40D2\n0x8232BB37\t0x40D3\n0x8232BB38\t0x40D4\n0x8232BB39\t0x40D5\n0x8232BC30\t0x40D6\n0x8232BC31\t0x40D7\n0x8232BC32\t0x40D8\n0x8232BC33\t0x40D9\n0x8232BC34\t0x40DA\n0x8232BC35\t0x40DB\n0x8232BC36\t0x40DC\n0x8232BC37\t0x40DD\n0x8232BC38\t0x40DE\n0x8232BC39\t0x40DF\n0x8232BD30\t0x40E0\n0x8232BD31\t0x40E1\n0x8232BD32\t0x40E2\n0x8232BD33\t0x40E3\n0x8232BD34\t0x40E4\n0x8232BD35\t0x40E5\n0x8232BD36\t0x40E6\n0x8232BD37\t0x40E7\n0x8232BD38\t0x40E8\n0x8232BD39\t0x40E9\n0x8232BE30\t0x40EA\n0x8232BE31\t0x40EB\n0x8232BE32\t0x40EC\n0x8232BE33\t0x40ED\n0x8232BE34\t0x40EE\n0x8232BE35\t0x40EF\n0x8232BE36\t0x40F0\n0x8232BE37\t0x40F1\n0x8232BE38\t0x40F2\n0x8232BE39\t0x40F3\n0x8232BF30\t0x40F4\n0x8232BF31\t0x40F5\n0x8232BF32\t0x40F6\n0x8232BF33\t0x40F7\n0x8232BF34\t0x40F8\n0x8232BF35\t0x40F9\n0x8232BF36\t0x40FA\n0x8232BF37\t0x40FB\n0x8232BF38\t0x40FC\n0x8232BF39\t0x40FD\n0x8232C030\t0x40FE\n0x8232C031\t0x40FF\n0x8232C032\t0x4100\n0x8232C033\t0x4101\n0x8232C034\t0x4102\n0x8232C035\t0x4103\n0x8232C036\t0x4104\n0x8232C037\t0x4105\n0x8232C038\t0x4106\n0x8232C039\t0x4107\n0x8232C130\t0x4108\n0x8232C131\t0x4109\n0x8232C132\t0x410A\n0x8232C133\t0x410B\n0x8232C134\t0x410C\n0x8232C135\t0x410D\n0x8232C136\t0x410E\n0x8232C137\t0x410F\n0x8232C138\t0x4110\n0x8232C139\t0x4111\n0x8232C230\t0x4112\n0x8232C231\t0x4113\n0x8232C232\t0x4114\n0x8232C233\t0x4115\n0x8232C234\t0x4116\n0x8232C235\t0x4117\n0x8232C236\t0x4118\n0x8232C237\t0x4119\n0x8232C238\t0x411A\n0x8232C239\t0x411B\n0x8232C330\t0x411C\n0x8232C331\t0x411D\n0x8232C332\t0x411E\n0x8232C333\t0x411F\n0x8232C334\t0x4120\n0x8232C335\t0x4121\n0x8232C336\t0x4122\n0x8232C337\t0x4123\n0x8232C338\t0x4124\n0x8232C339\t0x4125\n0x8232C430\t0x4126\n0x8232C431\t0x4127\n0x8232C432\t0x4128\n0x8232C433\t0x4129\n0x8232C434\t0x412A\n0x8232C435\t0x412B\n0x8232C436\t0x412C\n0x8232C437\t0x412D\n0x8232C438\t0x412E\n0x8232C439\t0x412F\n0x8232C530\t0x4130\n0x8232C531\t0x4131\n0x8232C532\t0x4132\n0x8232C533\t0x4133\n0x8232C534\t0x4134\n0x8232C535\t0x4135\n0x8232C536\t0x4136\n0x8232C537\t0x4137\n0x8232C538\t0x4138\n0x8232C539\t0x4139\n0x8232C630\t0x413A\n0x8232C631\t0x413B\n0x8232C632\t0x413C\n0x8232C633\t0x413D\n0x8232C634\t0x413E\n0x8232C635\t0x413F\n0x8232C636\t0x4140\n0x8232C637\t0x4141\n0x8232C638\t0x4142\n0x8232C639\t0x4143\n0x8232C730\t0x4144\n0x8232C731\t0x4145\n0x8232C732\t0x4146\n0x8232C733\t0x4147\n0x8232C734\t0x4148\n0x8232C735\t0x4149\n0x8232C736\t0x414A\n0x8232C737\t0x414B\n0x8232C738\t0x414C\n0x8232C739\t0x414D\n0x8232C830\t0x414E\n0x8232C831\t0x414F\n0x8232C832\t0x4150\n0x8232C833\t0x4151\n0x8232C834\t0x4152\n0x8232C835\t0x4153\n0x8232C836\t0x4154\n0x8232C837\t0x4155\n0x8232C838\t0x4156\n0x8232C839\t0x4157\n0x8232C930\t0x4158\n0x8232C931\t0x4159\n0x8232C932\t0x415A\n0x8232C933\t0x415B\n0x8232C934\t0x415C\n0x8232C935\t0x415D\n0x8232C936\t0x415E\n0x8232C937\t0x4160\n0x8232C938\t0x4161\n0x8232C939\t0x4162\n0x8232CA30\t0x4163\n0x8232CA31\t0x4164\n0x8232CA32\t0x4165\n0x8232CA33\t0x4166\n0x8232CA34\t0x4167\n0x8232CA35\t0x4168\n0x8232CA36\t0x4169\n0x8232CA37\t0x416A\n0x8232CA38\t0x416B\n0x8232CA39\t0x416C\n0x8232CB30\t0x416D\n0x8232CB31\t0x416E\n0x8232CB32\t0x416F\n0x8232CB33\t0x4170\n0x8232CB34\t0x4171\n0x8232CB35\t0x4172\n0x8232CB36\t0x4173\n0x8232CB37\t0x4174\n0x8232CB38\t0x4175\n0x8232CB39\t0x4176\n0x8232CC30\t0x4177\n0x8232CC31\t0x4178\n0x8232CC32\t0x4179\n0x8232CC33\t0x417A\n0x8232CC34\t0x417B\n0x8232CC35\t0x417C\n0x8232CC36\t0x417D\n0x8232CC37\t0x417E\n0x8232CC38\t0x417F\n0x8232CC39\t0x4180\n0x8232CD30\t0x4181\n0x8232CD31\t0x4182\n0x8232CD32\t0x4183\n0x8232CD33\t0x4184\n0x8232CD34\t0x4185\n0x8232CD35\t0x4186\n0x8232CD36\t0x4187\n0x8232CD37\t0x4188\n0x8232CD38\t0x4189\n0x8232CD39\t0x418A\n0x8232CE30\t0x418B\n0x8232CE31\t0x418C\n0x8232CE32\t0x418D\n0x8232CE33\t0x418E\n0x8232CE34\t0x418F\n0x8232CE35\t0x4190\n0x8232CE36\t0x4191\n0x8232CE37\t0x4192\n0x8232CE38\t0x4193\n0x8232CE39\t0x4194\n0x8232CF30\t0x4195\n0x8232CF31\t0x4196\n0x8232CF32\t0x4197\n0x8232CF33\t0x4198\n0x8232CF34\t0x4199\n0x8232CF35\t0x419A\n0x8232CF36\t0x419B\n0x8232CF37\t0x419C\n0x8232CF38\t0x419D\n0x8232CF39\t0x419E\n0x8232D030\t0x419F\n0x8232D031\t0x41A0\n0x8232D032\t0x41A1\n0x8232D033\t0x41A2\n0x8232D034\t0x41A3\n0x8232D035\t0x41A4\n0x8232D036\t0x41A5\n0x8232D037\t0x41A6\n0x8232D038\t0x41A7\n0x8232D039\t0x41A8\n0x8232D130\t0x41A9\n0x8232D131\t0x41AA\n0x8232D132\t0x41AB\n0x8232D133\t0x41AC\n0x8232D134\t0x41AD\n0x8232D135\t0x41AE\n0x8232D136\t0x41AF\n0x8232D137\t0x41B0\n0x8232D138\t0x41B1\n0x8232D139\t0x41B2\n0x8232D230\t0x41B3\n0x8232D231\t0x41B4\n0x8232D232\t0x41B5\n0x8232D233\t0x41B6\n0x8232D234\t0x41B7\n0x8232D235\t0x41B8\n0x8232D236\t0x41B9\n0x8232D237\t0x41BA\n0x8232D238\t0x41BB\n0x8232D239\t0x41BC\n0x8232D330\t0x41BD\n0x8232D331\t0x41BE\n0x8232D332\t0x41BF\n0x8232D333\t0x41C0\n0x8232D334\t0x41C1\n0x8232D335\t0x41C2\n0x8232D336\t0x41C3\n0x8232D337\t0x41C4\n0x8232D338\t0x41C5\n0x8232D339\t0x41C6\n0x8232D430\t0x41C7\n0x8232D431\t0x41C8\n0x8232D432\t0x41C9\n0x8232D433\t0x41CA\n0x8232D434\t0x41CB\n0x8232D435\t0x41CC\n0x8232D436\t0x41CD\n0x8232D437\t0x41CE\n0x8232D438\t0x41CF\n0x8232D439\t0x41D0\n0x8232D530\t0x41D1\n0x8232D531\t0x41D2\n0x8232D532\t0x41D3\n0x8232D533\t0x41D4\n0x8232D534\t0x41D5\n0x8232D535\t0x41D6\n0x8232D536\t0x41D7\n0x8232D537\t0x41D8\n0x8232D538\t0x41D9\n0x8232D539\t0x41DA\n0x8232D630\t0x41DB\n0x8232D631\t0x41DC\n0x8232D632\t0x41DD\n0x8232D633\t0x41DE\n0x8232D634\t0x41DF\n0x8232D635\t0x41E0\n0x8232D636\t0x41E1\n0x8232D637\t0x41E2\n0x8232D638\t0x41E3\n0x8232D639\t0x41E4\n0x8232D730\t0x41E5\n0x8232D731\t0x41E6\n0x8232D732\t0x41E7\n0x8232D733\t0x41E8\n0x8232D734\t0x41E9\n0x8232D735\t0x41EA\n0x8232D736\t0x41EB\n0x8232D737\t0x41EC\n0x8232D738\t0x41ED\n0x8232D739\t0x41EE\n0x8232D830\t0x41EF\n0x8232D831\t0x41F0\n0x8232D832\t0x41F1\n0x8232D833\t0x41F2\n0x8232D834\t0x41F3\n0x8232D835\t0x41F4\n0x8232D836\t0x41F5\n0x8232D837\t0x41F6\n0x8232D838\t0x41F7\n0x8232D839\t0x41F8\n0x8232D930\t0x41F9\n0x8232D931\t0x41FA\n0x8232D932\t0x41FB\n0x8232D933\t0x41FC\n0x8232D934\t0x41FD\n0x8232D935\t0x41FE\n0x8232D936\t0x41FF\n0x8232D937\t0x4200\n0x8232D938\t0x4201\n0x8232D939\t0x4202\n0x8232DA30\t0x4203\n0x8232DA31\t0x4204\n0x8232DA32\t0x4205\n0x8232DA33\t0x4206\n0x8232DA34\t0x4207\n0x8232DA35\t0x4208\n0x8232DA36\t0x4209\n0x8232DA37\t0x420A\n0x8232DA38\t0x420B\n0x8232DA39\t0x420C\n0x8232DB30\t0x420D\n0x8232DB31\t0x420E\n0x8232DB32\t0x420F\n0x8232DB33\t0x4210\n0x8232DB34\t0x4211\n0x8232DB35\t0x4212\n0x8232DB36\t0x4213\n0x8232DB37\t0x4214\n0x8232DB38\t0x4215\n0x8232DB39\t0x4216\n0x8232DC30\t0x4217\n0x8232DC31\t0x4218\n0x8232DC32\t0x4219\n0x8232DC33\t0x421A\n0x8232DC34\t0x421B\n0x8232DC35\t0x421C\n0x8232DC36\t0x421D\n0x8232DC37\t0x421E\n0x8232DC38\t0x421F\n0x8232DC39\t0x4220\n0x8232DD30\t0x4221\n0x8232DD31\t0x4222\n0x8232DD32\t0x4223\n0x8232DD33\t0x4224\n0x8232DD34\t0x4225\n0x8232DD35\t0x4226\n0x8232DD36\t0x4227\n0x8232DD37\t0x4228\n0x8232DD38\t0x4229\n0x8232DD39\t0x422A\n0x8232DE30\t0x422B\n0x8232DE31\t0x422C\n0x8232DE32\t0x422D\n0x8232DE33\t0x422E\n0x8232DE34\t0x422F\n0x8232DE35\t0x4230\n0x8232DE36\t0x4231\n0x8232DE37\t0x4232\n0x8232DE38\t0x4233\n0x8232DE39\t0x4234\n0x8232DF30\t0x4235\n0x8232DF31\t0x4236\n0x8232DF32\t0x4237\n0x8232DF33\t0x4238\n0x8232DF34\t0x4239\n0x8232DF35\t0x423A\n0x8232DF36\t0x423B\n0x8232DF37\t0x423C\n0x8232DF38\t0x423D\n0x8232DF39\t0x423E\n0x8232E030\t0x423F\n0x8232E031\t0x4240\n0x8232E032\t0x4241\n0x8232E033\t0x4242\n0x8232E034\t0x4243\n0x8232E035\t0x4244\n0x8232E036\t0x4245\n0x8232E037\t0x4246\n0x8232E038\t0x4247\n0x8232E039\t0x4248\n0x8232E130\t0x4249\n0x8232E131\t0x424A\n0x8232E132\t0x424B\n0x8232E133\t0x424C\n0x8232E134\t0x424D\n0x8232E135\t0x424E\n0x8232E136\t0x424F\n0x8232E137\t0x4250\n0x8232E138\t0x4251\n0x8232E139\t0x4252\n0x8232E230\t0x4253\n0x8232E231\t0x4254\n0x8232E232\t0x4255\n0x8232E233\t0x4256\n0x8232E234\t0x4257\n0x8232E235\t0x4258\n0x8232E236\t0x4259\n0x8232E237\t0x425A\n0x8232E238\t0x425B\n0x8232E239\t0x425C\n0x8232E330\t0x425D\n0x8232E331\t0x425E\n0x8232E332\t0x425F\n0x8232E333\t0x4260\n0x8232E334\t0x4261\n0x8232E335\t0x4262\n0x8232E336\t0x4263\n0x8232E337\t0x4264\n0x8232E338\t0x4265\n0x8232E339\t0x4266\n0x8232E430\t0x4267\n0x8232E431\t0x4268\n0x8232E432\t0x4269\n0x8232E433\t0x426A\n0x8232E434\t0x426B\n0x8232E435\t0x426C\n0x8232E436\t0x426D\n0x8232E437\t0x426E\n0x8232E438\t0x426F\n0x8232E439\t0x4270\n0x8232E530\t0x4271\n0x8232E531\t0x4272\n0x8232E532\t0x4273\n0x8232E533\t0x4274\n0x8232E534\t0x4275\n0x8232E535\t0x4276\n0x8232E536\t0x4277\n0x8232E537\t0x4278\n0x8232E538\t0x4279\n0x8232E539\t0x427A\n0x8232E630\t0x427B\n0x8232E631\t0x427C\n0x8232E632\t0x427D\n0x8232E633\t0x427E\n0x8232E634\t0x427F\n0x8232E635\t0x4280\n0x8232E636\t0x4281\n0x8232E637\t0x4282\n0x8232E638\t0x4283\n0x8232E639\t0x4284\n0x8232E730\t0x4285\n0x8232E731\t0x4286\n0x8232E732\t0x4287\n0x8232E733\t0x4288\n0x8232E734\t0x4289\n0x8232E735\t0x428A\n0x8232E736\t0x428B\n0x8232E737\t0x428C\n0x8232E738\t0x428D\n0x8232E739\t0x428E\n0x8232E830\t0x428F\n0x8232E831\t0x4290\n0x8232E832\t0x4291\n0x8232E833\t0x4292\n0x8232E834\t0x4293\n0x8232E835\t0x4294\n0x8232E836\t0x4295\n0x8232E837\t0x4296\n0x8232E838\t0x4297\n0x8232E839\t0x4298\n0x8232E930\t0x4299\n0x8232E931\t0x429A\n0x8232E932\t0x429B\n0x8232E933\t0x429C\n0x8232E934\t0x429D\n0x8232E935\t0x429E\n0x8232E936\t0x429F\n0x8232E937\t0x42A0\n0x8232E938\t0x42A1\n0x8232E939\t0x42A2\n0x8232EA30\t0x42A3\n0x8232EA31\t0x42A4\n0x8232EA32\t0x42A5\n0x8232EA33\t0x42A6\n0x8232EA34\t0x42A7\n0x8232EA35\t0x42A8\n0x8232EA36\t0x42A9\n0x8232EA37\t0x42AA\n0x8232EA38\t0x42AB\n0x8232EA39\t0x42AC\n0x8232EB30\t0x42AD\n0x8232EB31\t0x42AE\n0x8232EB32\t0x42AF\n0x8232EB33\t0x42B0\n0x8232EB34\t0x42B1\n0x8232EB35\t0x42B2\n0x8232EB36\t0x42B3\n0x8232EB37\t0x42B4\n0x8232EB38\t0x42B5\n0x8232EB39\t0x42B6\n0x8232EC30\t0x42B7\n0x8232EC31\t0x42B8\n0x8232EC32\t0x42B9\n0x8232EC33\t0x42BA\n0x8232EC34\t0x42BB\n0x8232EC35\t0x42BC\n0x8232EC36\t0x42BD\n0x8232EC37\t0x42BE\n0x8232EC38\t0x42BF\n0x8232EC39\t0x42C0\n0x8232ED30\t0x42C1\n0x8232ED31\t0x42C2\n0x8232ED32\t0x42C3\n0x8232ED33\t0x42C4\n0x8232ED34\t0x42C5\n0x8232ED35\t0x42C6\n0x8232ED36\t0x42C7\n0x8232ED37\t0x42C8\n0x8232ED38\t0x42C9\n0x8232ED39\t0x42CA\n0x8232EE30\t0x42CB\n0x8232EE31\t0x42CC\n0x8232EE32\t0x42CD\n0x8232EE33\t0x42CE\n0x8232EE34\t0x42CF\n0x8232EE35\t0x42D0\n0x8232EE36\t0x42D1\n0x8232EE37\t0x42D2\n0x8232EE38\t0x42D3\n0x8232EE39\t0x42D4\n0x8232EF30\t0x42D5\n0x8232EF31\t0x42D6\n0x8232EF32\t0x42D7\n0x8232EF33\t0x42D8\n0x8232EF34\t0x42D9\n0x8232EF35\t0x42DA\n0x8232EF36\t0x42DB\n0x8232EF37\t0x42DC\n0x8232EF38\t0x42DD\n0x8232EF39\t0x42DE\n0x8232F030\t0x42DF\n0x8232F031\t0x42E0\n0x8232F032\t0x42E1\n0x8232F033\t0x42E2\n0x8232F034\t0x42E3\n0x8232F035\t0x42E4\n0x8232F036\t0x42E5\n0x8232F037\t0x42E6\n0x8232F038\t0x42E7\n0x8232F039\t0x42E8\n0x8232F130\t0x42E9\n0x8232F131\t0x42EA\n0x8232F132\t0x42EB\n0x8232F133\t0x42EC\n0x8232F134\t0x42ED\n0x8232F135\t0x42EE\n0x8232F136\t0x42EF\n0x8232F137\t0x42F0\n0x8232F138\t0x42F1\n0x8232F139\t0x42F2\n0x8232F230\t0x42F3\n0x8232F231\t0x42F4\n0x8232F232\t0x42F5\n0x8232F233\t0x42F6\n0x8232F234\t0x42F7\n0x8232F235\t0x42F8\n0x8232F236\t0x42F9\n0x8232F237\t0x42FA\n0x8232F238\t0x42FB\n0x8232F239\t0x42FC\n0x8232F330\t0x42FD\n0x8232F331\t0x42FE\n0x8232F332\t0x42FF\n0x8232F333\t0x4300\n0x8232F334\t0x4301\n0x8232F335\t0x4302\n0x8232F336\t0x4303\n0x8232F337\t0x4304\n0x8232F338\t0x4305\n0x8232F339\t0x4306\n0x8232F430\t0x4307\n0x8232F431\t0x4308\n0x8232F432\t0x4309\n0x8232F433\t0x430A\n0x8232F434\t0x430B\n0x8232F435\t0x430C\n0x8232F436\t0x430D\n0x8232F437\t0x430E\n0x8232F438\t0x430F\n0x8232F439\t0x4310\n0x8232F530\t0x4311\n0x8232F531\t0x4312\n0x8232F532\t0x4313\n0x8232F533\t0x4314\n0x8232F534\t0x4315\n0x8232F535\t0x4316\n0x8232F536\t0x4317\n0x8232F537\t0x4318\n0x8232F538\t0x4319\n0x8232F539\t0x431A\n0x8232F630\t0x431B\n0x8232F631\t0x431C\n0x8232F632\t0x431D\n0x8232F633\t0x431E\n0x8232F634\t0x431F\n0x8232F635\t0x4320\n0x8232F636\t0x4321\n0x8232F637\t0x4322\n0x8232F638\t0x4323\n0x8232F639\t0x4324\n0x8232F730\t0x4325\n0x8232F731\t0x4326\n0x8232F732\t0x4327\n0x8232F733\t0x4328\n0x8232F734\t0x4329\n0x8232F735\t0x432A\n0x8232F736\t0x432B\n0x8232F737\t0x432C\n0x8232F738\t0x432D\n0x8232F739\t0x432E\n0x8232F830\t0x432F\n0x8232F831\t0x4330\n0x8232F832\t0x4331\n0x8232F833\t0x4332\n0x8232F834\t0x4333\n0x8232F835\t0x4334\n0x8232F836\t0x4335\n0x8232F837\t0x4336\n0x8232F838\t0x4338\n0x8232F839\t0x4339\n0x8232F930\t0x433A\n0x8232F931\t0x433B\n0x8232F932\t0x433C\n0x8232F933\t0x433D\n0x8232F934\t0x433E\n0x8232F935\t0x433F\n0x8232F936\t0x4340\n0x8232F937\t0x4341\n0x8232F938\t0x4342\n0x8232F939\t0x4343\n0x8232FA30\t0x4344\n0x8232FA31\t0x4345\n0x8232FA32\t0x4346\n0x8232FA33\t0x4347\n0x8232FA34\t0x4348\n0x8232FA35\t0x4349\n0x8232FA36\t0x434A\n0x8232FA37\t0x434B\n0x8232FA38\t0x434C\n0x8232FA39\t0x434D\n0x8232FB30\t0x434E\n0x8232FB31\t0x434F\n0x8232FB32\t0x4350\n0x8232FB33\t0x4351\n0x8232FB34\t0x4352\n0x8232FB35\t0x4353\n0x8232FB36\t0x4354\n0x8232FB37\t0x4355\n0x8232FB38\t0x4356\n0x8232FB39\t0x4357\n0x8232FC30\t0x4358\n0x8232FC31\t0x4359\n0x8232FC32\t0x435A\n0x8232FC33\t0x435B\n0x8232FC34\t0x435C\n0x8232FC35\t0x435D\n0x8232FC36\t0x435E\n0x8232FC37\t0x435F\n0x8232FC38\t0x4360\n0x8232FC39\t0x4361\n0x8232FD30\t0x4362\n0x8232FD31\t0x4363\n0x8232FD32\t0x4364\n0x8232FD33\t0x4365\n0x8232FD34\t0x4366\n0x8232FD35\t0x4367\n0x8232FD36\t0x4368\n0x8232FD37\t0x4369\n0x8232FD38\t0x436A\n0x8232FD39\t0x436B\n0x8232FE30\t0x436C\n0x8232FE31\t0x436D\n0x8232FE32\t0x436E\n0x8232FE33\t0x436F\n0x8232FE34\t0x4370\n0x8232FE35\t0x4371\n0x8232FE36\t0x4372\n0x8232FE37\t0x4373\n0x8232FE38\t0x4374\n0x8232FE39\t0x4375\n0x82338130\t0x4376\n0x82338131\t0x4377\n0x82338132\t0x4378\n0x82338133\t0x4379\n0x82338134\t0x437A\n0x82338135\t0x437B\n0x82338136\t0x437C\n0x82338137\t0x437D\n0x82338138\t0x437E\n0x82338139\t0x437F\n0x82338230\t0x4380\n0x82338231\t0x4381\n0x82338232\t0x4382\n0x82338233\t0x4383\n0x82338234\t0x4384\n0x82338235\t0x4385\n0x82338236\t0x4386\n0x82338237\t0x4387\n0x82338238\t0x4388\n0x82338239\t0x4389\n0x82338330\t0x438A\n0x82338331\t0x438B\n0x82338332\t0x438C\n0x82338333\t0x438D\n0x82338334\t0x438E\n0x82338335\t0x438F\n0x82338336\t0x4390\n0x82338337\t0x4391\n0x82338338\t0x4392\n0x82338339\t0x4393\n0x82338430\t0x4394\n0x82338431\t0x4395\n0x82338432\t0x4396\n0x82338433\t0x4397\n0x82338434\t0x4398\n0x82338435\t0x4399\n0x82338436\t0x439A\n0x82338437\t0x439B\n0x82338438\t0x439C\n0x82338439\t0x439D\n0x82338530\t0x439E\n0x82338531\t0x439F\n0x82338532\t0x43A0\n0x82338533\t0x43A1\n0x82338534\t0x43A2\n0x82338535\t0x43A3\n0x82338536\t0x43A4\n0x82338537\t0x43A5\n0x82338538\t0x43A6\n0x82338539\t0x43A7\n0x82338630\t0x43A8\n0x82338631\t0x43A9\n0x82338632\t0x43AA\n0x82338633\t0x43AB\n0x82338634\t0x43AD\n0x82338635\t0x43AE\n0x82338636\t0x43AF\n0x82338637\t0x43B0\n0x82338638\t0x43B2\n0x82338639\t0x43B3\n0x82338730\t0x43B4\n0x82338731\t0x43B5\n0x82338732\t0x43B6\n0x82338733\t0x43B7\n0x82338734\t0x43B8\n0x82338735\t0x43B9\n0x82338736\t0x43BA\n0x82338737\t0x43BB\n0x82338738\t0x43BC\n0x82338739\t0x43BD\n0x82338830\t0x43BE\n0x82338831\t0x43BF\n0x82338832\t0x43C0\n0x82338833\t0x43C1\n0x82338834\t0x43C2\n0x82338835\t0x43C3\n0x82338836\t0x43C4\n0x82338837\t0x43C5\n0x82338838\t0x43C6\n0x82338839\t0x43C7\n0x82338930\t0x43C8\n0x82338931\t0x43C9\n0x82338932\t0x43CA\n0x82338933\t0x43CB\n0x82338934\t0x43CC\n0x82338935\t0x43CD\n0x82338936\t0x43CE\n0x82338937\t0x43CF\n0x82338938\t0x43D0\n0x82338939\t0x43D1\n0x82338A30\t0x43D2\n0x82338A31\t0x43D3\n0x82338A32\t0x43D4\n0x82338A33\t0x43D5\n0x82338A34\t0x43D6\n0x82338A35\t0x43D7\n0x82338A36\t0x43D8\n0x82338A37\t0x43D9\n0x82338A38\t0x43DA\n0x82338A39\t0x43DB\n0x82338B30\t0x43DC\n0x82338B31\t0x43DE\n0x82338B32\t0x43DF\n0x82338B33\t0x43E0\n0x82338B34\t0x43E1\n0x82338B35\t0x43E2\n0x82338B36\t0x43E3\n0x82338B37\t0x43E4\n0x82338B38\t0x43E5\n0x82338B39\t0x43E6\n0x82338C30\t0x43E7\n0x82338C31\t0x43E8\n0x82338C32\t0x43E9\n0x82338C33\t0x43EA\n0x82338C34\t0x43EB\n0x82338C35\t0x43EC\n0x82338C36\t0x43ED\n0x82338C37\t0x43EE\n0x82338C38\t0x43EF\n0x82338C39\t0x43F0\n0x82338D30\t0x43F1\n0x82338D31\t0x43F2\n0x82338D32\t0x43F3\n0x82338D33\t0x43F4\n0x82338D34\t0x43F5\n0x82338D35\t0x43F6\n0x82338D36\t0x43F7\n0x82338D37\t0x43F8\n0x82338D38\t0x43F9\n0x82338D39\t0x43FA\n0x82338E30\t0x43FB\n0x82338E31\t0x43FC\n0x82338E32\t0x43FD\n0x82338E33\t0x43FE\n0x82338E34\t0x43FF\n0x82338E35\t0x4400\n0x82338E36\t0x4401\n0x82338E37\t0x4402\n0x82338E38\t0x4403\n0x82338E39\t0x4404\n0x82338F30\t0x4405\n0x82338F31\t0x4406\n0x82338F32\t0x4407\n0x82338F33\t0x4408\n0x82338F34\t0x4409\n0x82338F35\t0x440A\n0x82338F36\t0x440B\n0x82338F37\t0x440C\n0x82338F38\t0x440D\n0x82338F39\t0x440E\n0x82339030\t0x440F\n0x82339031\t0x4410\n0x82339032\t0x4411\n0x82339033\t0x4412\n0x82339034\t0x4413\n0x82339035\t0x4414\n0x82339036\t0x4415\n0x82339037\t0x4416\n0x82339038\t0x4417\n0x82339039\t0x4418\n0x82339130\t0x4419\n0x82339131\t0x441A\n0x82339132\t0x441B\n0x82339133\t0x441C\n0x82339134\t0x441D\n0x82339135\t0x441E\n0x82339136\t0x441F\n0x82339137\t0x4420\n0x82339138\t0x4421\n0x82339139\t0x4422\n0x82339230\t0x4423\n0x82339231\t0x4424\n0x82339232\t0x4425\n0x82339233\t0x4426\n0x82339234\t0x4427\n0x82339235\t0x4428\n0x82339236\t0x4429\n0x82339237\t0x442A\n0x82339238\t0x442B\n0x82339239\t0x442C\n0x82339330\t0x442D\n0x82339331\t0x442E\n0x82339332\t0x442F\n0x82339333\t0x4430\n0x82339334\t0x4431\n0x82339335\t0x4432\n0x82339336\t0x4433\n0x82339337\t0x4434\n0x82339338\t0x4435\n0x82339339\t0x4436\n0x82339430\t0x4437\n0x82339431\t0x4438\n0x82339432\t0x4439\n0x82339433\t0x443A\n0x82339434\t0x443B\n0x82339435\t0x443C\n0x82339436\t0x443D\n0x82339437\t0x443E\n0x82339438\t0x443F\n0x82339439\t0x4440\n0x82339530\t0x4441\n0x82339531\t0x4442\n0x82339532\t0x4443\n0x82339533\t0x4444\n0x82339534\t0x4445\n0x82339535\t0x4446\n0x82339536\t0x4447\n0x82339537\t0x4448\n0x82339538\t0x4449\n0x82339539\t0x444A\n0x82339630\t0x444B\n0x82339631\t0x444C\n0x82339632\t0x444D\n0x82339633\t0x444E\n0x82339634\t0x444F\n0x82339635\t0x4450\n0x82339636\t0x4451\n0x82339637\t0x4452\n0x82339638\t0x4453\n0x82339639\t0x4454\n0x82339730\t0x4455\n0x82339731\t0x4456\n0x82339732\t0x4457\n0x82339733\t0x4458\n0x82339734\t0x4459\n0x82339735\t0x445A\n0x82339736\t0x445B\n0x82339737\t0x445C\n0x82339738\t0x445D\n0x82339739\t0x445E\n0x82339830\t0x445F\n0x82339831\t0x4460\n0x82339832\t0x4461\n0x82339833\t0x4462\n0x82339834\t0x4463\n0x82339835\t0x4464\n0x82339836\t0x4465\n0x82339837\t0x4466\n0x82339838\t0x4467\n0x82339839\t0x4468\n0x82339930\t0x4469\n0x82339931\t0x446A\n0x82339932\t0x446B\n0x82339933\t0x446C\n0x82339934\t0x446D\n0x82339935\t0x446E\n0x82339936\t0x446F\n0x82339937\t0x4470\n0x82339938\t0x4471\n0x82339939\t0x4472\n0x82339A30\t0x4473\n0x82339A31\t0x4474\n0x82339A32\t0x4475\n0x82339A33\t0x4476\n0x82339A34\t0x4477\n0x82339A35\t0x4478\n0x82339A36\t0x4479\n0x82339A37\t0x447A\n0x82339A38\t0x447B\n0x82339A39\t0x447C\n0x82339B30\t0x447D\n0x82339B31\t0x447E\n0x82339B32\t0x447F\n0x82339B33\t0x4480\n0x82339B34\t0x4481\n0x82339B35\t0x4482\n0x82339B36\t0x4483\n0x82339B37\t0x4484\n0x82339B38\t0x4485\n0x82339B39\t0x4486\n0x82339C30\t0x4487\n0x82339C31\t0x4488\n0x82339C32\t0x4489\n0x82339C33\t0x448A\n0x82339C34\t0x448B\n0x82339C35\t0x448C\n0x82339C36\t0x448D\n0x82339C37\t0x448E\n0x82339C38\t0x448F\n0x82339C39\t0x4490\n0x82339D30\t0x4491\n0x82339D31\t0x4492\n0x82339D32\t0x4493\n0x82339D33\t0x4494\n0x82339D34\t0x4495\n0x82339D35\t0x4496\n0x82339D36\t0x4497\n0x82339D37\t0x4498\n0x82339D38\t0x4499\n0x82339D39\t0x449A\n0x82339E30\t0x449B\n0x82339E31\t0x449C\n0x82339E32\t0x449D\n0x82339E33\t0x449E\n0x82339E34\t0x449F\n0x82339E35\t0x44A0\n0x82339E36\t0x44A1\n0x82339E37\t0x44A2\n0x82339E38\t0x44A3\n0x82339E39\t0x44A4\n0x82339F30\t0x44A5\n0x82339F31\t0x44A6\n0x82339F32\t0x44A7\n0x82339F33\t0x44A8\n0x82339F34\t0x44A9\n0x82339F35\t0x44AA\n0x82339F36\t0x44AB\n0x82339F37\t0x44AC\n0x82339F38\t0x44AD\n0x82339F39\t0x44AE\n0x8233A030\t0x44AF\n0x8233A031\t0x44B0\n0x8233A032\t0x44B1\n0x8233A033\t0x44B2\n0x8233A034\t0x44B3\n0x8233A035\t0x44B4\n0x8233A036\t0x44B5\n0x8233A037\t0x44B6\n0x8233A038\t0x44B7\n0x8233A039\t0x44B8\n0x8233A130\t0x44B9\n0x8233A131\t0x44BA\n0x8233A132\t0x44BB\n0x8233A133\t0x44BC\n0x8233A134\t0x44BD\n0x8233A135\t0x44BE\n0x8233A136\t0x44BF\n0x8233A137\t0x44C0\n0x8233A138\t0x44C1\n0x8233A139\t0x44C2\n0x8233A230\t0x44C3\n0x8233A231\t0x44C4\n0x8233A232\t0x44C5\n0x8233A233\t0x44C6\n0x8233A234\t0x44C7\n0x8233A235\t0x44C8\n0x8233A236\t0x44C9\n0x8233A237\t0x44CA\n0x8233A238\t0x44CB\n0x8233A239\t0x44CC\n0x8233A330\t0x44CD\n0x8233A331\t0x44CE\n0x8233A332\t0x44CF\n0x8233A333\t0x44D0\n0x8233A334\t0x44D1\n0x8233A335\t0x44D2\n0x8233A336\t0x44D3\n0x8233A337\t0x44D4\n0x8233A338\t0x44D5\n0x8233A339\t0x44D7\n0x8233A430\t0x44D8\n0x8233A431\t0x44D9\n0x8233A432\t0x44DA\n0x8233A433\t0x44DB\n0x8233A434\t0x44DC\n0x8233A435\t0x44DD\n0x8233A436\t0x44DE\n0x8233A437\t0x44DF\n0x8233A438\t0x44E0\n0x8233A439\t0x44E1\n0x8233A530\t0x44E2\n0x8233A531\t0x44E3\n0x8233A532\t0x44E4\n0x8233A533\t0x44E5\n0x8233A534\t0x44E6\n0x8233A535\t0x44E7\n0x8233A536\t0x44E8\n0x8233A537\t0x44E9\n0x8233A538\t0x44EA\n0x8233A539\t0x44EB\n0x8233A630\t0x44EC\n0x8233A631\t0x44ED\n0x8233A632\t0x44EE\n0x8233A633\t0x44EF\n0x8233A634\t0x44F0\n0x8233A635\t0x44F1\n0x8233A636\t0x44F2\n0x8233A637\t0x44F3\n0x8233A638\t0x44F4\n0x8233A639\t0x44F5\n0x8233A730\t0x44F6\n0x8233A731\t0x44F7\n0x8233A732\t0x44F8\n0x8233A733\t0x44F9\n0x8233A734\t0x44FA\n0x8233A735\t0x44FB\n0x8233A736\t0x44FC\n0x8233A737\t0x44FD\n0x8233A738\t0x44FE\n0x8233A739\t0x44FF\n0x8233A830\t0x4500\n0x8233A831\t0x4501\n0x8233A832\t0x4502\n0x8233A833\t0x4503\n0x8233A834\t0x4504\n0x8233A835\t0x4505\n0x8233A836\t0x4506\n0x8233A837\t0x4507\n0x8233A838\t0x4508\n0x8233A839\t0x4509\n0x8233A930\t0x450A\n0x8233A931\t0x450B\n0x8233A932\t0x450C\n0x8233A933\t0x450D\n0x8233A934\t0x450E\n0x8233A935\t0x450F\n0x8233A936\t0x4510\n0x8233A937\t0x4511\n0x8233A938\t0x4512\n0x8233A939\t0x4513\n0x8233AA30\t0x4514\n0x8233AA31\t0x4515\n0x8233AA32\t0x4516\n0x8233AA33\t0x4517\n0x8233AA34\t0x4518\n0x8233AA35\t0x4519\n0x8233AA36\t0x451A\n0x8233AA37\t0x451B\n0x8233AA38\t0x451C\n0x8233AA39\t0x451D\n0x8233AB30\t0x451E\n0x8233AB31\t0x451F\n0x8233AB32\t0x4520\n0x8233AB33\t0x4521\n0x8233AB34\t0x4522\n0x8233AB35\t0x4523\n0x8233AB36\t0x4524\n0x8233AB37\t0x4525\n0x8233AB38\t0x4526\n0x8233AB39\t0x4527\n0x8233AC30\t0x4528\n0x8233AC31\t0x4529\n0x8233AC32\t0x452A\n0x8233AC33\t0x452B\n0x8233AC34\t0x452C\n0x8233AC35\t0x452D\n0x8233AC36\t0x452E\n0x8233AC37\t0x452F\n0x8233AC38\t0x4530\n0x8233AC39\t0x4531\n0x8233AD30\t0x4532\n0x8233AD31\t0x4533\n0x8233AD32\t0x4534\n0x8233AD33\t0x4535\n0x8233AD34\t0x4536\n0x8233AD35\t0x4537\n0x8233AD36\t0x4538\n0x8233AD37\t0x4539\n0x8233AD38\t0x453A\n0x8233AD39\t0x453B\n0x8233AE30\t0x453C\n0x8233AE31\t0x453D\n0x8233AE32\t0x453E\n0x8233AE33\t0x453F\n0x8233AE34\t0x4540\n0x8233AE35\t0x4541\n0x8233AE36\t0x4542\n0x8233AE37\t0x4543\n0x8233AE38\t0x4544\n0x8233AE39\t0x4545\n0x8233AF30\t0x4546\n0x8233AF31\t0x4547\n0x8233AF32\t0x4548\n0x8233AF33\t0x4549\n0x8233AF34\t0x454A\n0x8233AF35\t0x454B\n0x8233AF36\t0x454C\n0x8233AF37\t0x454D\n0x8233AF38\t0x454E\n0x8233AF39\t0x454F\n0x8233B030\t0x4550\n0x8233B031\t0x4551\n0x8233B032\t0x4552\n0x8233B033\t0x4553\n0x8233B034\t0x4554\n0x8233B035\t0x4555\n0x8233B036\t0x4556\n0x8233B037\t0x4557\n0x8233B038\t0x4558\n0x8233B039\t0x4559\n0x8233B130\t0x455A\n0x8233B131\t0x455B\n0x8233B132\t0x455C\n0x8233B133\t0x455D\n0x8233B134\t0x455E\n0x8233B135\t0x455F\n0x8233B136\t0x4560\n0x8233B137\t0x4561\n0x8233B138\t0x4562\n0x8233B139\t0x4563\n0x8233B230\t0x4564\n0x8233B231\t0x4565\n0x8233B232\t0x4566\n0x8233B233\t0x4567\n0x8233B234\t0x4568\n0x8233B235\t0x4569\n0x8233B236\t0x456A\n0x8233B237\t0x456B\n0x8233B238\t0x456C\n0x8233B239\t0x456D\n0x8233B330\t0x456E\n0x8233B331\t0x456F\n0x8233B332\t0x4570\n0x8233B333\t0x4571\n0x8233B334\t0x4572\n0x8233B335\t0x4573\n0x8233B336\t0x4574\n0x8233B337\t0x4575\n0x8233B338\t0x4576\n0x8233B339\t0x4577\n0x8233B430\t0x4578\n0x8233B431\t0x4579\n0x8233B432\t0x457A\n0x8233B433\t0x457B\n0x8233B434\t0x457C\n0x8233B435\t0x457D\n0x8233B436\t0x457E\n0x8233B437\t0x457F\n0x8233B438\t0x4580\n0x8233B439\t0x4581\n0x8233B530\t0x4582\n0x8233B531\t0x4583\n0x8233B532\t0x4584\n0x8233B533\t0x4585\n0x8233B534\t0x4586\n0x8233B535\t0x4587\n0x8233B536\t0x4588\n0x8233B537\t0x4589\n0x8233B538\t0x458A\n0x8233B539\t0x458B\n0x8233B630\t0x458C\n0x8233B631\t0x458D\n0x8233B632\t0x458E\n0x8233B633\t0x458F\n0x8233B634\t0x4590\n0x8233B635\t0x4591\n0x8233B636\t0x4592\n0x8233B637\t0x4593\n0x8233B638\t0x4594\n0x8233B639\t0x4595\n0x8233B730\t0x4596\n0x8233B731\t0x4597\n0x8233B732\t0x4598\n0x8233B733\t0x4599\n0x8233B734\t0x459A\n0x8233B735\t0x459B\n0x8233B736\t0x459C\n0x8233B737\t0x459D\n0x8233B738\t0x459E\n0x8233B739\t0x459F\n0x8233B830\t0x45A0\n0x8233B831\t0x45A1\n0x8233B832\t0x45A2\n0x8233B833\t0x45A3\n0x8233B834\t0x45A4\n0x8233B835\t0x45A5\n0x8233B836\t0x45A6\n0x8233B837\t0x45A7\n0x8233B838\t0x45A8\n0x8233B839\t0x45A9\n0x8233B930\t0x45AA\n0x8233B931\t0x45AB\n0x8233B932\t0x45AC\n0x8233B933\t0x45AD\n0x8233B934\t0x45AE\n0x8233B935\t0x45AF\n0x8233B936\t0x45B0\n0x8233B937\t0x45B1\n0x8233B938\t0x45B2\n0x8233B939\t0x45B3\n0x8233BA30\t0x45B4\n0x8233BA31\t0x45B5\n0x8233BA32\t0x45B6\n0x8233BA33\t0x45B7\n0x8233BA34\t0x45B8\n0x8233BA35\t0x45B9\n0x8233BA36\t0x45BA\n0x8233BA37\t0x45BB\n0x8233BA38\t0x45BC\n0x8233BA39\t0x45BD\n0x8233BB30\t0x45BE\n0x8233BB31\t0x45BF\n0x8233BB32\t0x45C0\n0x8233BB33\t0x45C1\n0x8233BB34\t0x45C2\n0x8233BB35\t0x45C3\n0x8233BB36\t0x45C4\n0x8233BB37\t0x45C5\n0x8233BB38\t0x45C6\n0x8233BB39\t0x45C7\n0x8233BC30\t0x45C8\n0x8233BC31\t0x45C9\n0x8233BC32\t0x45CA\n0x8233BC33\t0x45CB\n0x8233BC34\t0x45CC\n0x8233BC35\t0x45CD\n0x8233BC36\t0x45CE\n0x8233BC37\t0x45CF\n0x8233BC38\t0x45D0\n0x8233BC39\t0x45D1\n0x8233BD30\t0x45D2\n0x8233BD31\t0x45D3\n0x8233BD32\t0x45D4\n0x8233BD33\t0x45D5\n0x8233BD34\t0x45D6\n0x8233BD35\t0x45D7\n0x8233BD36\t0x45D8\n0x8233BD37\t0x45D9\n0x8233BD38\t0x45DA\n0x8233BD39\t0x45DB\n0x8233BE30\t0x45DC\n0x8233BE31\t0x45DD\n0x8233BE32\t0x45DE\n0x8233BE33\t0x45DF\n0x8233BE34\t0x45E0\n0x8233BE35\t0x45E1\n0x8233BE36\t0x45E2\n0x8233BE37\t0x45E3\n0x8233BE38\t0x45E4\n0x8233BE39\t0x45E5\n0x8233BF30\t0x45E6\n0x8233BF31\t0x45E7\n0x8233BF32\t0x45E8\n0x8233BF33\t0x45E9\n0x8233BF34\t0x45EA\n0x8233BF35\t0x45EB\n0x8233BF36\t0x45EC\n0x8233BF37\t0x45ED\n0x8233BF38\t0x45EE\n0x8233BF39\t0x45EF\n0x8233C030\t0x45F0\n0x8233C031\t0x45F1\n0x8233C032\t0x45F2\n0x8233C033\t0x45F3\n0x8233C034\t0x45F4\n0x8233C035\t0x45F5\n0x8233C036\t0x45F6\n0x8233C037\t0x45F7\n0x8233C038\t0x45F8\n0x8233C039\t0x45F9\n0x8233C130\t0x45FA\n0x8233C131\t0x45FB\n0x8233C132\t0x45FC\n0x8233C133\t0x45FD\n0x8233C134\t0x45FE\n0x8233C135\t0x45FF\n0x8233C136\t0x4600\n0x8233C137\t0x4601\n0x8233C138\t0x4602\n0x8233C139\t0x4603\n0x8233C230\t0x4604\n0x8233C231\t0x4605\n0x8233C232\t0x4606\n0x8233C233\t0x4607\n0x8233C234\t0x4608\n0x8233C235\t0x4609\n0x8233C236\t0x460A\n0x8233C237\t0x460B\n0x8233C238\t0x460C\n0x8233C239\t0x460D\n0x8233C330\t0x460E\n0x8233C331\t0x460F\n0x8233C332\t0x4610\n0x8233C333\t0x4611\n0x8233C334\t0x4612\n0x8233C335\t0x4613\n0x8233C336\t0x4614\n0x8233C337\t0x4615\n0x8233C338\t0x4616\n0x8233C339\t0x4617\n0x8233C430\t0x4618\n0x8233C431\t0x4619\n0x8233C432\t0x461A\n0x8233C433\t0x461B\n0x8233C434\t0x461C\n0x8233C435\t0x461D\n0x8233C436\t0x461E\n0x8233C437\t0x461F\n0x8233C438\t0x4620\n0x8233C439\t0x4621\n0x8233C530\t0x4622\n0x8233C531\t0x4623\n0x8233C532\t0x4624\n0x8233C533\t0x4625\n0x8233C534\t0x4626\n0x8233C535\t0x4627\n0x8233C536\t0x4628\n0x8233C537\t0x4629\n0x8233C538\t0x462A\n0x8233C539\t0x462B\n0x8233C630\t0x462C\n0x8233C631\t0x462D\n0x8233C632\t0x462E\n0x8233C633\t0x462F\n0x8233C634\t0x4630\n0x8233C635\t0x4631\n0x8233C636\t0x4632\n0x8233C637\t0x4633\n0x8233C638\t0x4634\n0x8233C639\t0x4635\n0x8233C730\t0x4636\n0x8233C731\t0x4637\n0x8233C732\t0x4638\n0x8233C733\t0x4639\n0x8233C734\t0x463A\n0x8233C735\t0x463B\n0x8233C736\t0x463C\n0x8233C737\t0x463D\n0x8233C738\t0x463E\n0x8233C739\t0x463F\n0x8233C830\t0x4640\n0x8233C831\t0x4641\n0x8233C832\t0x4642\n0x8233C833\t0x4643\n0x8233C834\t0x4644\n0x8233C835\t0x4645\n0x8233C836\t0x4646\n0x8233C837\t0x4647\n0x8233C838\t0x4648\n0x8233C839\t0x4649\n0x8233C930\t0x464A\n0x8233C931\t0x464B\n0x8233C932\t0x464D\n0x8233C933\t0x464E\n0x8233C934\t0x464F\n0x8233C935\t0x4650\n0x8233C936\t0x4651\n0x8233C937\t0x4652\n0x8233C938\t0x4653\n0x8233C939\t0x4654\n0x8233CA30\t0x4655\n0x8233CA31\t0x4656\n0x8233CA32\t0x4657\n0x8233CA33\t0x4658\n0x8233CA34\t0x4659\n0x8233CA35\t0x465A\n0x8233CA36\t0x465B\n0x8233CA37\t0x465C\n0x8233CA38\t0x465D\n0x8233CA39\t0x465E\n0x8233CB30\t0x465F\n0x8233CB31\t0x4660\n0x8233CB32\t0x4662\n0x8233CB33\t0x4663\n0x8233CB34\t0x4664\n0x8233CB35\t0x4665\n0x8233CB36\t0x4666\n0x8233CB37\t0x4667\n0x8233CB38\t0x4668\n0x8233CB39\t0x4669\n0x8233CC30\t0x466A\n0x8233CC31\t0x466B\n0x8233CC32\t0x466C\n0x8233CC33\t0x466D\n0x8233CC34\t0x466E\n0x8233CC35\t0x466F\n0x8233CC36\t0x4670\n0x8233CC37\t0x4671\n0x8233CC38\t0x4672\n0x8233CC39\t0x4673\n0x8233CD30\t0x4674\n0x8233CD31\t0x4675\n0x8233CD32\t0x4676\n0x8233CD33\t0x4677\n0x8233CD34\t0x4678\n0x8233CD35\t0x4679\n0x8233CD36\t0x467A\n0x8233CD37\t0x467B\n0x8233CD38\t0x467C\n0x8233CD39\t0x467D\n0x8233CE30\t0x467E\n0x8233CE31\t0x467F\n0x8233CE32\t0x4680\n0x8233CE33\t0x4681\n0x8233CE34\t0x4682\n0x8233CE35\t0x4683\n0x8233CE36\t0x4684\n0x8233CE37\t0x4685\n0x8233CE38\t0x4686\n0x8233CE39\t0x4687\n0x8233CF30\t0x4688\n0x8233CF31\t0x4689\n0x8233CF32\t0x468A\n0x8233CF33\t0x468B\n0x8233CF34\t0x468C\n0x8233CF35\t0x468D\n0x8233CF36\t0x468E\n0x8233CF37\t0x468F\n0x8233CF38\t0x4690\n0x8233CF39\t0x4691\n0x8233D030\t0x4692\n0x8233D031\t0x4693\n0x8233D032\t0x4694\n0x8233D033\t0x4695\n0x8233D034\t0x4696\n0x8233D035\t0x4697\n0x8233D036\t0x4698\n0x8233D037\t0x4699\n0x8233D038\t0x469A\n0x8233D039\t0x469B\n0x8233D130\t0x469C\n0x8233D131\t0x469D\n0x8233D132\t0x469E\n0x8233D133\t0x469F\n0x8233D134\t0x46A0\n0x8233D135\t0x46A1\n0x8233D136\t0x46A2\n0x8233D137\t0x46A3\n0x8233D138\t0x46A4\n0x8233D139\t0x46A5\n0x8233D230\t0x46A6\n0x8233D231\t0x46A7\n0x8233D232\t0x46A8\n0x8233D233\t0x46A9\n0x8233D234\t0x46AA\n0x8233D235\t0x46AB\n0x8233D236\t0x46AC\n0x8233D237\t0x46AD\n0x8233D238\t0x46AE\n0x8233D239\t0x46AF\n0x8233D330\t0x46B0\n0x8233D331\t0x46B1\n0x8233D332\t0x46B2\n0x8233D333\t0x46B3\n0x8233D334\t0x46B4\n0x8233D335\t0x46B5\n0x8233D336\t0x46B6\n0x8233D337\t0x46B7\n0x8233D338\t0x46B8\n0x8233D339\t0x46B9\n0x8233D430\t0x46BA\n0x8233D431\t0x46BB\n0x8233D432\t0x46BC\n0x8233D433\t0x46BD\n0x8233D434\t0x46BE\n0x8233D435\t0x46BF\n0x8233D436\t0x46C0\n0x8233D437\t0x46C1\n0x8233D438\t0x46C2\n0x8233D439\t0x46C3\n0x8233D530\t0x46C4\n0x8233D531\t0x46C5\n0x8233D532\t0x46C6\n0x8233D533\t0x46C7\n0x8233D534\t0x46C8\n0x8233D535\t0x46C9\n0x8233D536\t0x46CA\n0x8233D537\t0x46CB\n0x8233D538\t0x46CC\n0x8233D539\t0x46CD\n0x8233D630\t0x46CE\n0x8233D631\t0x46CF\n0x8233D632\t0x46D0\n0x8233D633\t0x46D1\n0x8233D634\t0x46D2\n0x8233D635\t0x46D3\n0x8233D636\t0x46D4\n0x8233D637\t0x46D5\n0x8233D638\t0x46D6\n0x8233D639\t0x46D7\n0x8233D730\t0x46D8\n0x8233D731\t0x46D9\n0x8233D732\t0x46DA\n0x8233D733\t0x46DB\n0x8233D734\t0x46DC\n0x8233D735\t0x46DD\n0x8233D736\t0x46DE\n0x8233D737\t0x46DF\n0x8233D738\t0x46E0\n0x8233D739\t0x46E1\n0x8233D830\t0x46E2\n0x8233D831\t0x46E3\n0x8233D832\t0x46E4\n0x8233D833\t0x46E5\n0x8233D834\t0x46E6\n0x8233D835\t0x46E7\n0x8233D836\t0x46E8\n0x8233D837\t0x46E9\n0x8233D838\t0x46EA\n0x8233D839\t0x46EB\n0x8233D930\t0x46EC\n0x8233D931\t0x46ED\n0x8233D932\t0x46EE\n0x8233D933\t0x46EF\n0x8233D934\t0x46F0\n0x8233D935\t0x46F1\n0x8233D936\t0x46F2\n0x8233D937\t0x46F3\n0x8233D938\t0x46F4\n0x8233D939\t0x46F5\n0x8233DA30\t0x46F6\n0x8233DA31\t0x46F7\n0x8233DA32\t0x46F8\n0x8233DA33\t0x46F9\n0x8233DA34\t0x46FA\n0x8233DA35\t0x46FB\n0x8233DA36\t0x46FC\n0x8233DA37\t0x46FD\n0x8233DA38\t0x46FE\n0x8233DA39\t0x46FF\n0x8233DB30\t0x4700\n0x8233DB31\t0x4701\n0x8233DB32\t0x4702\n0x8233DB33\t0x4703\n0x8233DB34\t0x4704\n0x8233DB35\t0x4705\n0x8233DB36\t0x4706\n0x8233DB37\t0x4707\n0x8233DB38\t0x4708\n0x8233DB39\t0x4709\n0x8233DC30\t0x470A\n0x8233DC31\t0x470B\n0x8233DC32\t0x470C\n0x8233DC33\t0x470D\n0x8233DC34\t0x470E\n0x8233DC35\t0x470F\n0x8233DC36\t0x4710\n0x8233DC37\t0x4711\n0x8233DC38\t0x4712\n0x8233DC39\t0x4713\n0x8233DD30\t0x4714\n0x8233DD31\t0x4715\n0x8233DD32\t0x4716\n0x8233DD33\t0x4717\n0x8233DD34\t0x4718\n0x8233DD35\t0x4719\n0x8233DD36\t0x471A\n0x8233DD37\t0x471B\n0x8233DD38\t0x471C\n0x8233DD39\t0x471D\n0x8233DE30\t0x471E\n0x8233DE31\t0x471F\n0x8233DE32\t0x4720\n0x8233DE33\t0x4721\n0x8233DE34\t0x4722\n0x8233DE35\t0x4724\n0x8233DE36\t0x4725\n0x8233DE37\t0x4726\n0x8233DE38\t0x4727\n0x8233DE39\t0x4728\n0x8233DF30\t0x472A\n0x8233DF31\t0x472B\n0x8233DF32\t0x472C\n0x8233DF33\t0x472D\n0x8233DF34\t0x472E\n0x8233DF35\t0x472F\n0x8233DF36\t0x4730\n0x8233DF37\t0x4731\n0x8233DF38\t0x4732\n0x8233DF39\t0x4733\n0x8233E030\t0x4734\n0x8233E031\t0x4735\n0x8233E032\t0x4736\n0x8233E033\t0x4737\n0x8233E034\t0x4738\n0x8233E035\t0x4739\n0x8233E036\t0x473A\n0x8233E037\t0x473B\n0x8233E038\t0x473C\n0x8233E039\t0x473D\n0x8233E130\t0x473E\n0x8233E131\t0x473F\n0x8233E132\t0x4740\n0x8233E133\t0x4741\n0x8233E134\t0x4742\n0x8233E135\t0x4743\n0x8233E136\t0x4744\n0x8233E137\t0x4745\n0x8233E138\t0x4746\n0x8233E139\t0x4747\n0x8233E230\t0x4748\n0x8233E231\t0x4749\n0x8233E232\t0x474A\n0x8233E233\t0x474B\n0x8233E234\t0x474C\n0x8233E235\t0x474D\n0x8233E236\t0x474E\n0x8233E237\t0x474F\n0x8233E238\t0x4750\n0x8233E239\t0x4751\n0x8233E330\t0x4752\n0x8233E331\t0x4753\n0x8233E332\t0x4754\n0x8233E333\t0x4755\n0x8233E334\t0x4756\n0x8233E335\t0x4757\n0x8233E336\t0x4758\n0x8233E337\t0x4759\n0x8233E338\t0x475A\n0x8233E339\t0x475B\n0x8233E430\t0x475C\n0x8233E431\t0x475D\n0x8233E432\t0x475E\n0x8233E433\t0x475F\n0x8233E434\t0x4760\n0x8233E435\t0x4761\n0x8233E436\t0x4762\n0x8233E437\t0x4763\n0x8233E438\t0x4764\n0x8233E439\t0x4765\n0x8233E530\t0x4766\n0x8233E531\t0x4767\n0x8233E532\t0x4768\n0x8233E533\t0x4769\n0x8233E534\t0x476A\n0x8233E535\t0x476B\n0x8233E536\t0x476C\n0x8233E537\t0x476D\n0x8233E538\t0x476E\n0x8233E539\t0x476F\n0x8233E630\t0x4770\n0x8233E631\t0x4771\n0x8233E632\t0x4772\n0x8233E633\t0x4773\n0x8233E634\t0x4774\n0x8233E635\t0x4775\n0x8233E636\t0x4776\n0x8233E637\t0x4777\n0x8233E638\t0x4778\n0x8233E639\t0x4779\n0x8233E730\t0x477A\n0x8233E731\t0x477B\n0x8233E732\t0x477D\n0x8233E733\t0x477E\n0x8233E734\t0x477F\n0x8233E735\t0x4780\n0x8233E736\t0x4781\n0x8233E737\t0x4782\n0x8233E738\t0x4783\n0x8233E739\t0x4784\n0x8233E830\t0x4785\n0x8233E831\t0x4786\n0x8233E832\t0x4787\n0x8233E833\t0x4788\n0x8233E834\t0x4789\n0x8233E835\t0x478A\n0x8233E836\t0x478B\n0x8233E837\t0x478C\n0x8233E838\t0x478E\n0x8233E839\t0x478F\n0x8233E930\t0x4790\n0x8233E931\t0x4791\n0x8233E932\t0x4792\n0x8233E933\t0x4793\n0x8233E934\t0x4794\n0x8233E935\t0x4795\n0x8233E936\t0x4796\n0x8233E937\t0x4797\n0x8233E938\t0x4798\n0x8233E939\t0x4799\n0x8233EA30\t0x479A\n0x8233EA31\t0x479B\n0x8233EA32\t0x479C\n0x8233EA33\t0x479D\n0x8233EA34\t0x479E\n0x8233EA35\t0x479F\n0x8233EA36\t0x47A0\n0x8233EA37\t0x47A1\n0x8233EA38\t0x47A2\n0x8233EA39\t0x47A3\n0x8233EB30\t0x47A4\n0x8233EB31\t0x47A5\n0x8233EB32\t0x47A6\n0x8233EB33\t0x47A7\n0x8233EB34\t0x47A8\n0x8233EB35\t0x47A9\n0x8233EB36\t0x47AA\n0x8233EB37\t0x47AB\n0x8233EB38\t0x47AC\n0x8233EB39\t0x47AD\n0x8233EC30\t0x47AE\n0x8233EC31\t0x47AF\n0x8233EC32\t0x47B0\n0x8233EC33\t0x47B1\n0x8233EC34\t0x47B2\n0x8233EC35\t0x47B3\n0x8233EC36\t0x47B4\n0x8233EC37\t0x47B5\n0x8233EC38\t0x47B6\n0x8233EC39\t0x47B7\n0x8233ED30\t0x47B8\n0x8233ED31\t0x47B9\n0x8233ED32\t0x47BA\n0x8233ED33\t0x47BB\n0x8233ED34\t0x47BC\n0x8233ED35\t0x47BD\n0x8233ED36\t0x47BE\n0x8233ED37\t0x47BF\n0x8233ED38\t0x47C0\n0x8233ED39\t0x47C1\n0x8233EE30\t0x47C2\n0x8233EE31\t0x47C3\n0x8233EE32\t0x47C4\n0x8233EE33\t0x47C5\n0x8233EE34\t0x47C6\n0x8233EE35\t0x47C7\n0x8233EE36\t0x47C8\n0x8233EE37\t0x47C9\n0x8233EE38\t0x47CA\n0x8233EE39\t0x47CB\n0x8233EF30\t0x47CC\n0x8233EF31\t0x47CD\n0x8233EF32\t0x47CE\n0x8233EF33\t0x47CF\n0x8233EF34\t0x47D0\n0x8233EF35\t0x47D1\n0x8233EF36\t0x47D2\n0x8233EF37\t0x47D3\n0x8233EF38\t0x47D4\n0x8233EF39\t0x47D5\n0x8233F030\t0x47D6\n0x8233F031\t0x47D7\n0x8233F032\t0x47D8\n0x8233F033\t0x47D9\n0x8233F034\t0x47DA\n0x8233F035\t0x47DB\n0x8233F036\t0x47DC\n0x8233F037\t0x47DD\n0x8233F038\t0x47DE\n0x8233F039\t0x47DF\n0x8233F130\t0x47E0\n0x8233F131\t0x47E1\n0x8233F132\t0x47E2\n0x8233F133\t0x47E3\n0x8233F134\t0x47E4\n0x8233F135\t0x47E5\n0x8233F136\t0x47E6\n0x8233F137\t0x47E7\n0x8233F138\t0x47E8\n0x8233F139\t0x47E9\n0x8233F230\t0x47EA\n0x8233F231\t0x47EB\n0x8233F232\t0x47EC\n0x8233F233\t0x47ED\n0x8233F234\t0x47EE\n0x8233F235\t0x47EF\n0x8233F236\t0x47F0\n0x8233F237\t0x47F1\n0x8233F238\t0x47F2\n0x8233F239\t0x47F3\n0x8233F330\t0x47F4\n0x8233F331\t0x47F5\n0x8233F332\t0x47F6\n0x8233F333\t0x47F7\n0x8233F334\t0x47F8\n0x8233F335\t0x47F9\n0x8233F336\t0x47FA\n0x8233F337\t0x47FB\n0x8233F338\t0x47FC\n0x8233F339\t0x47FD\n0x8233F430\t0x47FE\n0x8233F431\t0x47FF\n0x8233F432\t0x4800\n0x8233F433\t0x4801\n0x8233F434\t0x4802\n0x8233F435\t0x4803\n0x8233F436\t0x4804\n0x8233F437\t0x4805\n0x8233F438\t0x4806\n0x8233F439\t0x4807\n0x8233F530\t0x4808\n0x8233F531\t0x4809\n0x8233F532\t0x480A\n0x8233F533\t0x480B\n0x8233F534\t0x480C\n0x8233F535\t0x480D\n0x8233F536\t0x480E\n0x8233F537\t0x480F\n0x8233F538\t0x4810\n0x8233F539\t0x4811\n0x8233F630\t0x4812\n0x8233F631\t0x4813\n0x8233F632\t0x4814\n0x8233F633\t0x4815\n0x8233F634\t0x4816\n0x8233F635\t0x4817\n0x8233F636\t0x4818\n0x8233F637\t0x4819\n0x8233F638\t0x481A\n0x8233F639\t0x481B\n0x8233F730\t0x481C\n0x8233F731\t0x481D\n0x8233F732\t0x481E\n0x8233F733\t0x481F\n0x8233F734\t0x4820\n0x8233F735\t0x4821\n0x8233F736\t0x4822\n0x8233F737\t0x4823\n0x8233F738\t0x4824\n0x8233F739\t0x4825\n0x8233F830\t0x4826\n0x8233F831\t0x4827\n0x8233F832\t0x4828\n0x8233F833\t0x4829\n0x8233F834\t0x482A\n0x8233F835\t0x482B\n0x8233F836\t0x482C\n0x8233F837\t0x482D\n0x8233F838\t0x482E\n0x8233F839\t0x482F\n0x8233F930\t0x4830\n0x8233F931\t0x4831\n0x8233F932\t0x4832\n0x8233F933\t0x4833\n0x8233F934\t0x4834\n0x8233F935\t0x4835\n0x8233F936\t0x4836\n0x8233F937\t0x4837\n0x8233F938\t0x4838\n0x8233F939\t0x4839\n0x8233FA30\t0x483A\n0x8233FA31\t0x483B\n0x8233FA32\t0x483C\n0x8233FA33\t0x483D\n0x8233FA34\t0x483E\n0x8233FA35\t0x483F\n0x8233FA36\t0x4840\n0x8233FA37\t0x4841\n0x8233FA38\t0x4842\n0x8233FA39\t0x4843\n0x8233FB30\t0x4844\n0x8233FB31\t0x4845\n0x8233FB32\t0x4846\n0x8233FB33\t0x4847\n0x8233FB34\t0x4848\n0x8233FB35\t0x4849\n0x8233FB36\t0x484A\n0x8233FB37\t0x484B\n0x8233FB38\t0x484C\n0x8233FB39\t0x484D\n0x8233FC30\t0x484E\n0x8233FC31\t0x484F\n0x8233FC32\t0x4850\n0x8233FC33\t0x4851\n0x8233FC34\t0x4852\n0x8233FC35\t0x4853\n0x8233FC36\t0x4854\n0x8233FC37\t0x4855\n0x8233FC38\t0x4856\n0x8233FC39\t0x4857\n0x8233FD30\t0x4858\n0x8233FD31\t0x4859\n0x8233FD32\t0x485A\n0x8233FD33\t0x485B\n0x8233FD34\t0x485C\n0x8233FD35\t0x485D\n0x8233FD36\t0x485E\n0x8233FD37\t0x485F\n0x8233FD38\t0x4860\n0x8233FD39\t0x4861\n0x8233FE30\t0x4862\n0x8233FE31\t0x4863\n0x8233FE32\t0x4864\n0x8233FE33\t0x4865\n0x8233FE34\t0x4866\n0x8233FE35\t0x4867\n0x8233FE36\t0x4868\n0x8233FE37\t0x4869\n0x8233FE38\t0x486A\n0x8233FE39\t0x486B\n0x82348130\t0x486C\n0x82348131\t0x486D\n0x82348132\t0x486E\n0x82348133\t0x486F\n0x82348134\t0x4870\n0x82348135\t0x4871\n0x82348136\t0x4872\n0x82348137\t0x4873\n0x82348138\t0x4874\n0x82348139\t0x4875\n0x82348230\t0x4876\n0x82348231\t0x4877\n0x82348232\t0x4878\n0x82348233\t0x4879\n0x82348234\t0x487A\n0x82348235\t0x487B\n0x82348236\t0x487C\n0x82348237\t0x487D\n0x82348238\t0x487E\n0x82348239\t0x487F\n0x82348330\t0x4880\n0x82348331\t0x4881\n0x82348332\t0x4882\n0x82348333\t0x4883\n0x82348334\t0x4884\n0x82348335\t0x4885\n0x82348336\t0x4886\n0x82348337\t0x4887\n0x82348338\t0x4888\n0x82348339\t0x4889\n0x82348430\t0x488A\n0x82348431\t0x488B\n0x82348432\t0x488C\n0x82348433\t0x488D\n0x82348434\t0x488E\n0x82348435\t0x488F\n0x82348436\t0x4890\n0x82348437\t0x4891\n0x82348438\t0x4892\n0x82348439\t0x4893\n0x82348530\t0x4894\n0x82348531\t0x4895\n0x82348532\t0x4896\n0x82348533\t0x4897\n0x82348534\t0x4898\n0x82348535\t0x4899\n0x82348536\t0x489A\n0x82348537\t0x489B\n0x82348538\t0x489C\n0x82348539\t0x489D\n0x82348630\t0x489E\n0x82348631\t0x489F\n0x82348632\t0x48A0\n0x82348633\t0x48A1\n0x82348634\t0x48A2\n0x82348635\t0x48A3\n0x82348636\t0x48A4\n0x82348637\t0x48A5\n0x82348638\t0x48A6\n0x82348639\t0x48A7\n0x82348730\t0x48A8\n0x82348731\t0x48A9\n0x82348732\t0x48AA\n0x82348733\t0x48AB\n0x82348734\t0x48AC\n0x82348735\t0x48AD\n0x82348736\t0x48AE\n0x82348737\t0x48AF\n0x82348738\t0x48B0\n0x82348739\t0x48B1\n0x82348830\t0x48B2\n0x82348831\t0x48B3\n0x82348832\t0x48B4\n0x82348833\t0x48B5\n0x82348834\t0x48B6\n0x82348835\t0x48B7\n0x82348836\t0x48B8\n0x82348837\t0x48B9\n0x82348838\t0x48BA\n0x82348839\t0x48BB\n0x82348930\t0x48BC\n0x82348931\t0x48BD\n0x82348932\t0x48BE\n0x82348933\t0x48BF\n0x82348934\t0x48C0\n0x82348935\t0x48C1\n0x82348936\t0x48C2\n0x82348937\t0x48C3\n0x82348938\t0x48C4\n0x82348939\t0x48C5\n0x82348A30\t0x48C6\n0x82348A31\t0x48C7\n0x82348A32\t0x48C8\n0x82348A33\t0x48C9\n0x82348A34\t0x48CA\n0x82348A35\t0x48CB\n0x82348A36\t0x48CC\n0x82348A37\t0x48CD\n0x82348A38\t0x48CE\n0x82348A39\t0x48CF\n0x82348B30\t0x48D0\n0x82348B31\t0x48D1\n0x82348B32\t0x48D2\n0x82348B33\t0x48D3\n0x82348B34\t0x48D4\n0x82348B35\t0x48D5\n0x82348B36\t0x48D6\n0x82348B37\t0x48D7\n0x82348B38\t0x48D8\n0x82348B39\t0x48D9\n0x82348C30\t0x48DA\n0x82348C31\t0x48DB\n0x82348C32\t0x48DC\n0x82348C33\t0x48DD\n0x82348C34\t0x48DE\n0x82348C35\t0x48DF\n0x82348C36\t0x48E0\n0x82348C37\t0x48E1\n0x82348C38\t0x48E2\n0x82348C39\t0x48E3\n0x82348D30\t0x48E4\n0x82348D31\t0x48E5\n0x82348D32\t0x48E6\n0x82348D33\t0x48E7\n0x82348D34\t0x48E8\n0x82348D35\t0x48E9\n0x82348D36\t0x48EA\n0x82348D37\t0x48EB\n0x82348D38\t0x48EC\n0x82348D39\t0x48ED\n0x82348E30\t0x48EE\n0x82348E31\t0x48EF\n0x82348E32\t0x48F0\n0x82348E33\t0x48F1\n0x82348E34\t0x48F2\n0x82348E35\t0x48F3\n0x82348E36\t0x48F4\n0x82348E37\t0x48F5\n0x82348E38\t0x48F6\n0x82348E39\t0x48F7\n0x82348F30\t0x48F8\n0x82348F31\t0x48F9\n0x82348F32\t0x48FA\n0x82348F33\t0x48FB\n0x82348F34\t0x48FC\n0x82348F35\t0x48FD\n0x82348F36\t0x48FE\n0x82348F37\t0x48FF\n0x82348F38\t0x4900\n0x82348F39\t0x4901\n0x82349030\t0x4902\n0x82349031\t0x4903\n0x82349032\t0x4904\n0x82349033\t0x4905\n0x82349034\t0x4906\n0x82349035\t0x4907\n0x82349036\t0x4908\n0x82349037\t0x4909\n0x82349038\t0x490A\n0x82349039\t0x490B\n0x82349130\t0x490C\n0x82349131\t0x490D\n0x82349132\t0x490E\n0x82349133\t0x490F\n0x82349134\t0x4910\n0x82349135\t0x4911\n0x82349136\t0x4912\n0x82349137\t0x4913\n0x82349138\t0x4914\n0x82349139\t0x4915\n0x82349230\t0x4916\n0x82349231\t0x4917\n0x82349232\t0x4918\n0x82349233\t0x4919\n0x82349234\t0x491A\n0x82349235\t0x491B\n0x82349236\t0x491C\n0x82349237\t0x491D\n0x82349238\t0x491E\n0x82349239\t0x491F\n0x82349330\t0x4920\n0x82349331\t0x4921\n0x82349332\t0x4922\n0x82349333\t0x4923\n0x82349334\t0x4924\n0x82349335\t0x4925\n0x82349336\t0x4926\n0x82349337\t0x4927\n0x82349338\t0x4928\n0x82349339\t0x4929\n0x82349430\t0x492A\n0x82349431\t0x492B\n0x82349432\t0x492C\n0x82349433\t0x492D\n0x82349434\t0x492E\n0x82349435\t0x492F\n0x82349436\t0x4930\n0x82349437\t0x4931\n0x82349438\t0x4932\n0x82349439\t0x4933\n0x82349530\t0x4934\n0x82349531\t0x4935\n0x82349532\t0x4936\n0x82349533\t0x4937\n0x82349534\t0x4938\n0x82349535\t0x4939\n0x82349536\t0x493A\n0x82349537\t0x493B\n0x82349538\t0x493C\n0x82349539\t0x493D\n0x82349630\t0x493E\n0x82349631\t0x493F\n0x82349632\t0x4940\n0x82349633\t0x4941\n0x82349634\t0x4942\n0x82349635\t0x4943\n0x82349636\t0x4944\n0x82349637\t0x4945\n0x82349638\t0x4946\n0x82349639\t0x4948\n0x82349730\t0x4949\n0x82349731\t0x494A\n0x82349732\t0x494B\n0x82349733\t0x494C\n0x82349734\t0x494D\n0x82349735\t0x494E\n0x82349736\t0x494F\n0x82349737\t0x4950\n0x82349738\t0x4951\n0x82349739\t0x4952\n0x82349830\t0x4953\n0x82349831\t0x4954\n0x82349832\t0x4955\n0x82349833\t0x4956\n0x82349834\t0x4957\n0x82349835\t0x4958\n0x82349836\t0x4959\n0x82349837\t0x495A\n0x82349838\t0x495B\n0x82349839\t0x495C\n0x82349930\t0x495D\n0x82349931\t0x495E\n0x82349932\t0x495F\n0x82349933\t0x4960\n0x82349934\t0x4961\n0x82349935\t0x4962\n0x82349936\t0x4963\n0x82349937\t0x4964\n0x82349938\t0x4965\n0x82349939\t0x4966\n0x82349A30\t0x4967\n0x82349A31\t0x4968\n0x82349A32\t0x4969\n0x82349A33\t0x496A\n0x82349A34\t0x496B\n0x82349A35\t0x496C\n0x82349A36\t0x496D\n0x82349A37\t0x496E\n0x82349A38\t0x496F\n0x82349A39\t0x4970\n0x82349B30\t0x4971\n0x82349B31\t0x4972\n0x82349B32\t0x4973\n0x82349B33\t0x4974\n0x82349B34\t0x4975\n0x82349B35\t0x4976\n0x82349B36\t0x4977\n0x82349B37\t0x4978\n0x82349B38\t0x4979\n0x82349B39\t0x497B\n0x82349C30\t0x497C\n0x82349C31\t0x497E\n0x82349C32\t0x497F\n0x82349C33\t0x4980\n0x82349C34\t0x4981\n0x82349C35\t0x4984\n0x82349C36\t0x4987\n0x82349C37\t0x4988\n0x82349C38\t0x4989\n0x82349C39\t0x498A\n0x82349D30\t0x498B\n0x82349D31\t0x498C\n0x82349D32\t0x498D\n0x82349D33\t0x498E\n0x82349D34\t0x498F\n0x82349D35\t0x4990\n0x82349D36\t0x4991\n0x82349D37\t0x4992\n0x82349D38\t0x4993\n0x82349D39\t0x4994\n0x82349E30\t0x4995\n0x82349E31\t0x4996\n0x82349E32\t0x4997\n0x82349E33\t0x4998\n0x82349E34\t0x4999\n0x82349E35\t0x499A\n0x82349E36\t0x499C\n0x82349E37\t0x499D\n0x82349E38\t0x499E\n0x82349E39\t0x49A0\n0x82349F30\t0x49A1\n0x82349F31\t0x49A2\n0x82349F32\t0x49A3\n0x82349F33\t0x49A4\n0x82349F34\t0x49A5\n0x82349F35\t0x49A6\n0x82349F36\t0x49A7\n0x82349F37\t0x49A8\n0x82349F38\t0x49A9\n0x82349F39\t0x49AA\n0x8234A030\t0x49AB\n0x8234A031\t0x49AC\n0x8234A032\t0x49AD\n0x8234A033\t0x49AE\n0x8234A034\t0x49AF\n0x8234A035\t0x49B0\n0x8234A036\t0x49B1\n0x8234A037\t0x49B2\n0x8234A038\t0x49B3\n0x8234A039\t0x49B4\n0x8234A130\t0x49B5\n0x8234A131\t0x49B8\n0x8234A132\t0x49B9\n0x8234A133\t0x49BA\n0x8234A134\t0x49BB\n0x8234A135\t0x49BC\n0x8234A136\t0x49BD\n0x8234A137\t0x49BE\n0x8234A138\t0x49BF\n0x8234A139\t0x49C0\n0x8234A230\t0x49C1\n0x8234A231\t0x49C2\n0x8234A232\t0x49C3\n0x8234A233\t0x49C4\n0x8234A234\t0x49C5\n0x8234A235\t0x49C6\n0x8234A236\t0x49C7\n0x8234A237\t0x49C8\n0x8234A238\t0x49C9\n0x8234A239\t0x49CA\n0x8234A330\t0x49CB\n0x8234A331\t0x49CC\n0x8234A332\t0x49CD\n0x8234A333\t0x49CE\n0x8234A334\t0x49CF\n0x8234A335\t0x49D0\n0x8234A336\t0x49D1\n0x8234A337\t0x49D2\n0x8234A338\t0x49D3\n0x8234A339\t0x49D4\n0x8234A430\t0x49D5\n0x8234A431\t0x49D6\n0x8234A432\t0x49D7\n0x8234A433\t0x49D8\n0x8234A434\t0x49D9\n0x8234A435\t0x49DA\n0x8234A436\t0x49DB\n0x8234A437\t0x49DC\n0x8234A438\t0x49DD\n0x8234A439\t0x49DE\n0x8234A530\t0x49DF\n0x8234A531\t0x49E0\n0x8234A532\t0x49E1\n0x8234A533\t0x49E2\n0x8234A534\t0x49E3\n0x8234A535\t0x49E4\n0x8234A536\t0x49E5\n0x8234A537\t0x49E6\n0x8234A538\t0x49E7\n0x8234A539\t0x49E8\n0x8234A630\t0x49E9\n0x8234A631\t0x49EA\n0x8234A632\t0x49EB\n0x8234A633\t0x49EC\n0x8234A634\t0x49ED\n0x8234A635\t0x49EE\n0x8234A636\t0x49EF\n0x8234A637\t0x49F0\n0x8234A638\t0x49F1\n0x8234A639\t0x49F2\n0x8234A730\t0x49F3\n0x8234A731\t0x49F4\n0x8234A732\t0x49F5\n0x8234A733\t0x49F6\n0x8234A734\t0x49F7\n0x8234A735\t0x49F8\n0x8234A736\t0x49F9\n0x8234A737\t0x49FA\n0x8234A738\t0x49FB\n0x8234A739\t0x49FC\n0x8234A830\t0x49FD\n0x8234A831\t0x49FE\n0x8234A832\t0x49FF\n0x8234A833\t0x4A00\n0x8234A834\t0x4A01\n0x8234A835\t0x4A02\n0x8234A836\t0x4A03\n0x8234A837\t0x4A04\n0x8234A838\t0x4A05\n0x8234A839\t0x4A06\n0x8234A930\t0x4A07\n0x8234A931\t0x4A08\n0x8234A932\t0x4A09\n0x8234A933\t0x4A0A\n0x8234A934\t0x4A0B\n0x8234A935\t0x4A0C\n0x8234A936\t0x4A0D\n0x8234A937\t0x4A0E\n0x8234A938\t0x4A0F\n0x8234A939\t0x4A10\n0x8234AA30\t0x4A11\n0x8234AA31\t0x4A12\n0x8234AA32\t0x4A13\n0x8234AA33\t0x4A14\n0x8234AA34\t0x4A15\n0x8234AA35\t0x4A16\n0x8234AA36\t0x4A17\n0x8234AA37\t0x4A18\n0x8234AA38\t0x4A19\n0x8234AA39\t0x4A1A\n0x8234AB30\t0x4A1B\n0x8234AB31\t0x4A1C\n0x8234AB32\t0x4A1D\n0x8234AB33\t0x4A1E\n0x8234AB34\t0x4A1F\n0x8234AB35\t0x4A20\n0x8234AB36\t0x4A21\n0x8234AB37\t0x4A22\n0x8234AB38\t0x4A23\n0x8234AB39\t0x4A24\n0x8234AC30\t0x4A25\n0x8234AC31\t0x4A26\n0x8234AC32\t0x4A27\n0x8234AC33\t0x4A28\n0x8234AC34\t0x4A29\n0x8234AC35\t0x4A2A\n0x8234AC36\t0x4A2B\n0x8234AC37\t0x4A2C\n0x8234AC38\t0x4A2D\n0x8234AC39\t0x4A2E\n0x8234AD30\t0x4A2F\n0x8234AD31\t0x4A30\n0x8234AD32\t0x4A31\n0x8234AD33\t0x4A32\n0x8234AD34\t0x4A33\n0x8234AD35\t0x4A34\n0x8234AD36\t0x4A35\n0x8234AD37\t0x4A36\n0x8234AD38\t0x4A37\n0x8234AD39\t0x4A38\n0x8234AE30\t0x4A39\n0x8234AE31\t0x4A3A\n0x8234AE32\t0x4A3B\n0x8234AE33\t0x4A3C\n0x8234AE34\t0x4A3D\n0x8234AE35\t0x4A3E\n0x8234AE36\t0x4A3F\n0x8234AE37\t0x4A40\n0x8234AE38\t0x4A41\n0x8234AE39\t0x4A42\n0x8234AF30\t0x4A43\n0x8234AF31\t0x4A44\n0x8234AF32\t0x4A45\n0x8234AF33\t0x4A46\n0x8234AF34\t0x4A47\n0x8234AF35\t0x4A48\n0x8234AF36\t0x4A49\n0x8234AF37\t0x4A4A\n0x8234AF38\t0x4A4B\n0x8234AF39\t0x4A4C\n0x8234B030\t0x4A4D\n0x8234B031\t0x4A4E\n0x8234B032\t0x4A4F\n0x8234B033\t0x4A50\n0x8234B034\t0x4A51\n0x8234B035\t0x4A52\n0x8234B036\t0x4A53\n0x8234B037\t0x4A54\n0x8234B038\t0x4A55\n0x8234B039\t0x4A56\n0x8234B130\t0x4A57\n0x8234B131\t0x4A58\n0x8234B132\t0x4A59\n0x8234B133\t0x4A5A\n0x8234B134\t0x4A5B\n0x8234B135\t0x4A5C\n0x8234B136\t0x4A5D\n0x8234B137\t0x4A5E\n0x8234B138\t0x4A5F\n0x8234B139\t0x4A60\n0x8234B230\t0x4A61\n0x8234B231\t0x4A62\n0x8234B232\t0x4A63\n0x8234B233\t0x4A64\n0x8234B234\t0x4A65\n0x8234B235\t0x4A66\n0x8234B236\t0x4A67\n0x8234B237\t0x4A68\n0x8234B238\t0x4A69\n0x8234B239\t0x4A6A\n0x8234B330\t0x4A6B\n0x8234B331\t0x4A6C\n0x8234B332\t0x4A6D\n0x8234B333\t0x4A6E\n0x8234B334\t0x4A6F\n0x8234B335\t0x4A70\n0x8234B336\t0x4A71\n0x8234B337\t0x4A72\n0x8234B338\t0x4A73\n0x8234B339\t0x4A74\n0x8234B430\t0x4A75\n0x8234B431\t0x4A76\n0x8234B432\t0x4A77\n0x8234B433\t0x4A78\n0x8234B434\t0x4A79\n0x8234B435\t0x4A7A\n0x8234B436\t0x4A7B\n0x8234B437\t0x4A7C\n0x8234B438\t0x4A7D\n0x8234B439\t0x4A7E\n0x8234B530\t0x4A7F\n0x8234B531\t0x4A80\n0x8234B532\t0x4A81\n0x8234B533\t0x4A82\n0x8234B534\t0x4A83\n0x8234B535\t0x4A84\n0x8234B536\t0x4A85\n0x8234B537\t0x4A86\n0x8234B538\t0x4A87\n0x8234B539\t0x4A88\n0x8234B630\t0x4A89\n0x8234B631\t0x4A8A\n0x8234B632\t0x4A8B\n0x8234B633\t0x4A8C\n0x8234B634\t0x4A8D\n0x8234B635\t0x4A8E\n0x8234B636\t0x4A8F\n0x8234B637\t0x4A90\n0x8234B638\t0x4A91\n0x8234B639\t0x4A92\n0x8234B730\t0x4A93\n0x8234B731\t0x4A94\n0x8234B732\t0x4A95\n0x8234B733\t0x4A96\n0x8234B734\t0x4A97\n0x8234B735\t0x4A98\n0x8234B736\t0x4A99\n0x8234B737\t0x4A9A\n0x8234B738\t0x4A9B\n0x8234B739\t0x4A9C\n0x8234B830\t0x4A9D\n0x8234B831\t0x4A9E\n0x8234B832\t0x4A9F\n0x8234B833\t0x4AA0\n0x8234B834\t0x4AA1\n0x8234B835\t0x4AA2\n0x8234B836\t0x4AA3\n0x8234B837\t0x4AA4\n0x8234B838\t0x4AA5\n0x8234B839\t0x4AA6\n0x8234B930\t0x4AA7\n0x8234B931\t0x4AA8\n0x8234B932\t0x4AA9\n0x8234B933\t0x4AAA\n0x8234B934\t0x4AAB\n0x8234B935\t0x4AAC\n0x8234B936\t0x4AAD\n0x8234B937\t0x4AAE\n0x8234B938\t0x4AAF\n0x8234B939\t0x4AB0\n0x8234BA30\t0x4AB1\n0x8234BA31\t0x4AB2\n0x8234BA32\t0x4AB3\n0x8234BA33\t0x4AB4\n0x8234BA34\t0x4AB5\n0x8234BA35\t0x4AB6\n0x8234BA36\t0x4AB7\n0x8234BA37\t0x4AB8\n0x8234BA38\t0x4AB9\n0x8234BA39\t0x4ABA\n0x8234BB30\t0x4ABB\n0x8234BB31\t0x4ABC\n0x8234BB32\t0x4ABD\n0x8234BB33\t0x4ABE\n0x8234BB34\t0x4ABF\n0x8234BB35\t0x4AC0\n0x8234BB36\t0x4AC1\n0x8234BB37\t0x4AC2\n0x8234BB38\t0x4AC3\n0x8234BB39\t0x4AC4\n0x8234BC30\t0x4AC5\n0x8234BC31\t0x4AC6\n0x8234BC32\t0x4AC7\n0x8234BC33\t0x4AC8\n0x8234BC34\t0x4AC9\n0x8234BC35\t0x4ACA\n0x8234BC36\t0x4ACB\n0x8234BC37\t0x4ACC\n0x8234BC38\t0x4ACD\n0x8234BC39\t0x4ACE\n0x8234BD30\t0x4ACF\n0x8234BD31\t0x4AD0\n0x8234BD32\t0x4AD1\n0x8234BD33\t0x4AD2\n0x8234BD34\t0x4AD3\n0x8234BD35\t0x4AD4\n0x8234BD36\t0x4AD5\n0x8234BD37\t0x4AD6\n0x8234BD38\t0x4AD7\n0x8234BD39\t0x4AD8\n0x8234BE30\t0x4AD9\n0x8234BE31\t0x4ADA\n0x8234BE32\t0x4ADB\n0x8234BE33\t0x4ADC\n0x8234BE34\t0x4ADD\n0x8234BE35\t0x4ADE\n0x8234BE36\t0x4ADF\n0x8234BE37\t0x4AE0\n0x8234BE38\t0x4AE1\n0x8234BE39\t0x4AE2\n0x8234BF30\t0x4AE3\n0x8234BF31\t0x4AE4\n0x8234BF32\t0x4AE5\n0x8234BF33\t0x4AE6\n0x8234BF34\t0x4AE7\n0x8234BF35\t0x4AE8\n0x8234BF36\t0x4AE9\n0x8234BF37\t0x4AEA\n0x8234BF38\t0x4AEB\n0x8234BF39\t0x4AEC\n0x8234C030\t0x4AED\n0x8234C031\t0x4AEE\n0x8234C032\t0x4AEF\n0x8234C033\t0x4AF0\n0x8234C034\t0x4AF1\n0x8234C035\t0x4AF2\n0x8234C036\t0x4AF3\n0x8234C037\t0x4AF4\n0x8234C038\t0x4AF5\n0x8234C039\t0x4AF6\n0x8234C130\t0x4AF7\n0x8234C131\t0x4AF8\n0x8234C132\t0x4AF9\n0x8234C133\t0x4AFA\n0x8234C134\t0x4AFB\n0x8234C135\t0x4AFC\n0x8234C136\t0x4AFD\n0x8234C137\t0x4AFE\n0x8234C138\t0x4AFF\n0x8234C139\t0x4B00\n0x8234C230\t0x4B01\n0x8234C231\t0x4B02\n0x8234C232\t0x4B03\n0x8234C233\t0x4B04\n0x8234C234\t0x4B05\n0x8234C235\t0x4B06\n0x8234C236\t0x4B07\n0x8234C237\t0x4B08\n0x8234C238\t0x4B09\n0x8234C239\t0x4B0A\n0x8234C330\t0x4B0B\n0x8234C331\t0x4B0C\n0x8234C332\t0x4B0D\n0x8234C333\t0x4B0E\n0x8234C334\t0x4B0F\n0x8234C335\t0x4B10\n0x8234C336\t0x4B11\n0x8234C337\t0x4B12\n0x8234C338\t0x4B13\n0x8234C339\t0x4B14\n0x8234C430\t0x4B15\n0x8234C431\t0x4B16\n0x8234C432\t0x4B17\n0x8234C433\t0x4B18\n0x8234C434\t0x4B19\n0x8234C435\t0x4B1A\n0x8234C436\t0x4B1B\n0x8234C437\t0x4B1C\n0x8234C438\t0x4B1D\n0x8234C439\t0x4B1E\n0x8234C530\t0x4B1F\n0x8234C531\t0x4B20\n0x8234C532\t0x4B21\n0x8234C533\t0x4B22\n0x8234C534\t0x4B23\n0x8234C535\t0x4B24\n0x8234C536\t0x4B25\n0x8234C537\t0x4B26\n0x8234C538\t0x4B27\n0x8234C539\t0x4B28\n0x8234C630\t0x4B29\n0x8234C631\t0x4B2A\n0x8234C632\t0x4B2B\n0x8234C633\t0x4B2C\n0x8234C634\t0x4B2D\n0x8234C635\t0x4B2E\n0x8234C636\t0x4B2F\n0x8234C637\t0x4B30\n0x8234C638\t0x4B31\n0x8234C639\t0x4B32\n0x8234C730\t0x4B33\n0x8234C731\t0x4B34\n0x8234C732\t0x4B35\n0x8234C733\t0x4B36\n0x8234C734\t0x4B37\n0x8234C735\t0x4B38\n0x8234C736\t0x4B39\n0x8234C737\t0x4B3A\n0x8234C738\t0x4B3B\n0x8234C739\t0x4B3C\n0x8234C830\t0x4B3D\n0x8234C831\t0x4B3E\n0x8234C832\t0x4B3F\n0x8234C833\t0x4B40\n0x8234C834\t0x4B41\n0x8234C835\t0x4B42\n0x8234C836\t0x4B43\n0x8234C837\t0x4B44\n0x8234C838\t0x4B45\n0x8234C839\t0x4B46\n0x8234C930\t0x4B47\n0x8234C931\t0x4B48\n0x8234C932\t0x4B49\n0x8234C933\t0x4B4A\n0x8234C934\t0x4B4B\n0x8234C935\t0x4B4C\n0x8234C936\t0x4B4D\n0x8234C937\t0x4B4E\n0x8234C938\t0x4B4F\n0x8234C939\t0x4B50\n0x8234CA30\t0x4B51\n0x8234CA31\t0x4B52\n0x8234CA32\t0x4B53\n0x8234CA33\t0x4B54\n0x8234CA34\t0x4B55\n0x8234CA35\t0x4B56\n0x8234CA36\t0x4B57\n0x8234CA37\t0x4B58\n0x8234CA38\t0x4B59\n0x8234CA39\t0x4B5A\n0x8234CB30\t0x4B5B\n0x8234CB31\t0x4B5C\n0x8234CB32\t0x4B5D\n0x8234CB33\t0x4B5E\n0x8234CB34\t0x4B5F\n0x8234CB35\t0x4B60\n0x8234CB36\t0x4B61\n0x8234CB37\t0x4B62\n0x8234CB38\t0x4B63\n0x8234CB39\t0x4B64\n0x8234CC30\t0x4B65\n0x8234CC31\t0x4B66\n0x8234CC32\t0x4B67\n0x8234CC33\t0x4B68\n0x8234CC34\t0x4B69\n0x8234CC35\t0x4B6A\n0x8234CC36\t0x4B6B\n0x8234CC37\t0x4B6C\n0x8234CC38\t0x4B6D\n0x8234CC39\t0x4B6E\n0x8234CD30\t0x4B6F\n0x8234CD31\t0x4B70\n0x8234CD32\t0x4B71\n0x8234CD33\t0x4B72\n0x8234CD34\t0x4B73\n0x8234CD35\t0x4B74\n0x8234CD36\t0x4B75\n0x8234CD37\t0x4B76\n0x8234CD38\t0x4B77\n0x8234CD39\t0x4B78\n0x8234CE30\t0x4B79\n0x8234CE31\t0x4B7A\n0x8234CE32\t0x4B7B\n0x8234CE33\t0x4B7C\n0x8234CE34\t0x4B7D\n0x8234CE35\t0x4B7E\n0x8234CE36\t0x4B7F\n0x8234CE37\t0x4B80\n0x8234CE38\t0x4B81\n0x8234CE39\t0x4B82\n0x8234CF30\t0x4B83\n0x8234CF31\t0x4B84\n0x8234CF32\t0x4B85\n0x8234CF33\t0x4B86\n0x8234CF34\t0x4B87\n0x8234CF35\t0x4B88\n0x8234CF36\t0x4B89\n0x8234CF37\t0x4B8A\n0x8234CF38\t0x4B8B\n0x8234CF39\t0x4B8C\n0x8234D030\t0x4B8D\n0x8234D031\t0x4B8E\n0x8234D032\t0x4B8F\n0x8234D033\t0x4B90\n0x8234D034\t0x4B91\n0x8234D035\t0x4B92\n0x8234D036\t0x4B93\n0x8234D037\t0x4B94\n0x8234D038\t0x4B95\n0x8234D039\t0x4B96\n0x8234D130\t0x4B97\n0x8234D131\t0x4B98\n0x8234D132\t0x4B99\n0x8234D133\t0x4B9A\n0x8234D134\t0x4B9B\n0x8234D135\t0x4B9C\n0x8234D136\t0x4B9D\n0x8234D137\t0x4B9E\n0x8234D138\t0x4B9F\n0x8234D139\t0x4BA0\n0x8234D230\t0x4BA1\n0x8234D231\t0x4BA2\n0x8234D232\t0x4BA3\n0x8234D233\t0x4BA4\n0x8234D234\t0x4BA5\n0x8234D235\t0x4BA6\n0x8234D236\t0x4BA7\n0x8234D237\t0x4BA8\n0x8234D238\t0x4BA9\n0x8234D239\t0x4BAA\n0x8234D330\t0x4BAB\n0x8234D331\t0x4BAC\n0x8234D332\t0x4BAD\n0x8234D333\t0x4BAE\n0x8234D334\t0x4BAF\n0x8234D335\t0x4BB0\n0x8234D336\t0x4BB1\n0x8234D337\t0x4BB2\n0x8234D338\t0x4BB3\n0x8234D339\t0x4BB4\n0x8234D430\t0x4BB5\n0x8234D431\t0x4BB6\n0x8234D432\t0x4BB7\n0x8234D433\t0x4BB8\n0x8234D434\t0x4BB9\n0x8234D435\t0x4BBA\n0x8234D436\t0x4BBB\n0x8234D437\t0x4BBC\n0x8234D438\t0x4BBD\n0x8234D439\t0x4BBE\n0x8234D530\t0x4BBF\n0x8234D531\t0x4BC0\n0x8234D532\t0x4BC1\n0x8234D533\t0x4BC2\n0x8234D534\t0x4BC3\n0x8234D535\t0x4BC4\n0x8234D536\t0x4BC5\n0x8234D537\t0x4BC6\n0x8234D538\t0x4BC7\n0x8234D539\t0x4BC8\n0x8234D630\t0x4BC9\n0x8234D631\t0x4BCA\n0x8234D632\t0x4BCB\n0x8234D633\t0x4BCC\n0x8234D634\t0x4BCD\n0x8234D635\t0x4BCE\n0x8234D636\t0x4BCF\n0x8234D637\t0x4BD0\n0x8234D638\t0x4BD1\n0x8234D639\t0x4BD2\n0x8234D730\t0x4BD3\n0x8234D731\t0x4BD4\n0x8234D732\t0x4BD5\n0x8234D733\t0x4BD6\n0x8234D734\t0x4BD7\n0x8234D735\t0x4BD8\n0x8234D736\t0x4BD9\n0x8234D737\t0x4BDA\n0x8234D738\t0x4BDB\n0x8234D739\t0x4BDC\n0x8234D830\t0x4BDD\n0x8234D831\t0x4BDE\n0x8234D832\t0x4BDF\n0x8234D833\t0x4BE0\n0x8234D834\t0x4BE1\n0x8234D835\t0x4BE2\n0x8234D836\t0x4BE3\n0x8234D837\t0x4BE4\n0x8234D838\t0x4BE5\n0x8234D839\t0x4BE6\n0x8234D930\t0x4BE7\n0x8234D931\t0x4BE8\n0x8234D932\t0x4BE9\n0x8234D933\t0x4BEA\n0x8234D934\t0x4BEB\n0x8234D935\t0x4BEC\n0x8234D936\t0x4BED\n0x8234D937\t0x4BEE\n0x8234D938\t0x4BEF\n0x8234D939\t0x4BF0\n0x8234DA30\t0x4BF1\n0x8234DA31\t0x4BF2\n0x8234DA32\t0x4BF3\n0x8234DA33\t0x4BF4\n0x8234DA34\t0x4BF5\n0x8234DA35\t0x4BF6\n0x8234DA36\t0x4BF7\n0x8234DA37\t0x4BF8\n0x8234DA38\t0x4BF9\n0x8234DA39\t0x4BFA\n0x8234DB30\t0x4BFB\n0x8234DB31\t0x4BFC\n0x8234DB32\t0x4BFD\n0x8234DB33\t0x4BFE\n0x8234DB34\t0x4BFF\n0x8234DB35\t0x4C00\n0x8234DB36\t0x4C01\n0x8234DB37\t0x4C02\n0x8234DB38\t0x4C03\n0x8234DB39\t0x4C04\n0x8234DC30\t0x4C05\n0x8234DC31\t0x4C06\n0x8234DC32\t0x4C07\n0x8234DC33\t0x4C08\n0x8234DC34\t0x4C09\n0x8234DC35\t0x4C0A\n0x8234DC36\t0x4C0B\n0x8234DC37\t0x4C0C\n0x8234DC38\t0x4C0D\n0x8234DC39\t0x4C0E\n0x8234DD30\t0x4C0F\n0x8234DD31\t0x4C10\n0x8234DD32\t0x4C11\n0x8234DD33\t0x4C12\n0x8234DD34\t0x4C13\n0x8234DD35\t0x4C14\n0x8234DD36\t0x4C15\n0x8234DD37\t0x4C16\n0x8234DD38\t0x4C17\n0x8234DD39\t0x4C18\n0x8234DE30\t0x4C19\n0x8234DE31\t0x4C1A\n0x8234DE32\t0x4C1B\n0x8234DE33\t0x4C1C\n0x8234DE34\t0x4C1D\n0x8234DE35\t0x4C1E\n0x8234DE36\t0x4C1F\n0x8234DE37\t0x4C20\n0x8234DE38\t0x4C21\n0x8234DE39\t0x4C22\n0x8234DF30\t0x4C23\n0x8234DF31\t0x4C24\n0x8234DF32\t0x4C25\n0x8234DF33\t0x4C26\n0x8234DF34\t0x4C27\n0x8234DF35\t0x4C28\n0x8234DF36\t0x4C29\n0x8234DF37\t0x4C2A\n0x8234DF38\t0x4C2B\n0x8234DF39\t0x4C2C\n0x8234E030\t0x4C2D\n0x8234E031\t0x4C2E\n0x8234E032\t0x4C2F\n0x8234E033\t0x4C30\n0x8234E034\t0x4C31\n0x8234E035\t0x4C32\n0x8234E036\t0x4C33\n0x8234E037\t0x4C34\n0x8234E038\t0x4C35\n0x8234E039\t0x4C36\n0x8234E130\t0x4C37\n0x8234E131\t0x4C38\n0x8234E132\t0x4C39\n0x8234E133\t0x4C3A\n0x8234E134\t0x4C3B\n0x8234E135\t0x4C3C\n0x8234E136\t0x4C3D\n0x8234E137\t0x4C3E\n0x8234E138\t0x4C3F\n0x8234E139\t0x4C40\n0x8234E230\t0x4C41\n0x8234E231\t0x4C42\n0x8234E232\t0x4C43\n0x8234E233\t0x4C44\n0x8234E234\t0x4C45\n0x8234E235\t0x4C46\n0x8234E236\t0x4C47\n0x8234E237\t0x4C48\n0x8234E238\t0x4C49\n0x8234E239\t0x4C4A\n0x8234E330\t0x4C4B\n0x8234E331\t0x4C4C\n0x8234E332\t0x4C4D\n0x8234E333\t0x4C4E\n0x8234E334\t0x4C4F\n0x8234E335\t0x4C50\n0x8234E336\t0x4C51\n0x8234E337\t0x4C52\n0x8234E338\t0x4C53\n0x8234E339\t0x4C54\n0x8234E430\t0x4C55\n0x8234E431\t0x4C56\n0x8234E432\t0x4C57\n0x8234E433\t0x4C58\n0x8234E434\t0x4C59\n0x8234E435\t0x4C5A\n0x8234E436\t0x4C5B\n0x8234E437\t0x4C5C\n0x8234E438\t0x4C5D\n0x8234E439\t0x4C5E\n0x8234E530\t0x4C5F\n0x8234E531\t0x4C60\n0x8234E532\t0x4C61\n0x8234E533\t0x4C62\n0x8234E534\t0x4C63\n0x8234E535\t0x4C64\n0x8234E536\t0x4C65\n0x8234E537\t0x4C66\n0x8234E538\t0x4C67\n0x8234E539\t0x4C68\n0x8234E630\t0x4C69\n0x8234E631\t0x4C6A\n0x8234E632\t0x4C6B\n0x8234E633\t0x4C6C\n0x8234E634\t0x4C6D\n0x8234E635\t0x4C6E\n0x8234E636\t0x4C6F\n0x8234E637\t0x4C70\n0x8234E638\t0x4C71\n0x8234E639\t0x4C72\n0x8234E730\t0x4C73\n0x8234E731\t0x4C74\n0x8234E732\t0x4C75\n0x8234E733\t0x4C76\n0x8234E734\t0x4C78\n0x8234E735\t0x4C79\n0x8234E736\t0x4C7A\n0x8234E737\t0x4C7B\n0x8234E738\t0x4C7C\n0x8234E739\t0x4C7D\n0x8234E830\t0x4C7E\n0x8234E831\t0x4C7F\n0x8234E832\t0x4C80\n0x8234E833\t0x4C81\n0x8234E834\t0x4C82\n0x8234E835\t0x4C83\n0x8234E836\t0x4C84\n0x8234E837\t0x4C85\n0x8234E838\t0x4C86\n0x8234E839\t0x4C87\n0x8234E930\t0x4C88\n0x8234E931\t0x4C89\n0x8234E932\t0x4C8A\n0x8234E933\t0x4C8B\n0x8234E934\t0x4C8C\n0x8234E935\t0x4C8D\n0x8234E936\t0x4C8E\n0x8234E937\t0x4C8F\n0x8234E938\t0x4C90\n0x8234E939\t0x4C91\n0x8234EA30\t0x4C92\n0x8234EA31\t0x4C93\n0x8234EA32\t0x4C94\n0x8234EA33\t0x4C95\n0x8234EA34\t0x4C96\n0x8234EA35\t0x4C97\n0x8234EA36\t0x4C98\n0x8234EA37\t0x4C99\n0x8234EA38\t0x4C9A\n0x8234EA39\t0x4C9B\n0x8234EB30\t0x4C9C\n0x8234EB31\t0x4C9D\n0x8234EB32\t0x4C9E\n0x8234EB33\t0x4CA4\n0x8234EB34\t0x4CA5\n0x8234EB35\t0x4CA6\n0x8234EB36\t0x4CA7\n0x8234EB37\t0x4CA8\n0x8234EB38\t0x4CA9\n0x8234EB39\t0x4CAA\n0x8234EC30\t0x4CAB\n0x8234EC31\t0x4CAC\n0x8234EC32\t0x4CAD\n0x8234EC33\t0x4CAE\n0x8234EC34\t0x4CAF\n0x8234EC35\t0x4CB0\n0x8234EC36\t0x4CB1\n0x8234EC37\t0x4CB2\n0x8234EC38\t0x4CB3\n0x8234EC39\t0x4CB4\n0x8234ED30\t0x4CB5\n0x8234ED31\t0x4CB6\n0x8234ED32\t0x4CB7\n0x8234ED33\t0x4CB8\n0x8234ED34\t0x4CB9\n0x8234ED35\t0x4CBA\n0x8234ED36\t0x4CBB\n0x8234ED37\t0x4CBC\n0x8234ED38\t0x4CBD\n0x8234ED39\t0x4CBE\n0x8234EE30\t0x4CBF\n0x8234EE31\t0x4CC0\n0x8234EE32\t0x4CC1\n0x8234EE33\t0x4CC2\n0x8234EE34\t0x4CC3\n0x8234EE35\t0x4CC4\n0x8234EE36\t0x4CC5\n0x8234EE37\t0x4CC6\n0x8234EE38\t0x4CC7\n0x8234EE39\t0x4CC8\n0x8234EF30\t0x4CC9\n0x8234EF31\t0x4CCA\n0x8234EF32\t0x4CCB\n0x8234EF33\t0x4CCC\n0x8234EF34\t0x4CCD\n0x8234EF35\t0x4CCE\n0x8234EF36\t0x4CCF\n0x8234EF37\t0x4CD0\n0x8234EF38\t0x4CD1\n0x8234EF39\t0x4CD2\n0x8234F030\t0x4CD3\n0x8234F031\t0x4CD4\n0x8234F032\t0x4CD5\n0x8234F033\t0x4CD6\n0x8234F034\t0x4CD7\n0x8234F035\t0x4CD8\n0x8234F036\t0x4CD9\n0x8234F037\t0x4CDA\n0x8234F038\t0x4CDB\n0x8234F039\t0x4CDC\n0x8234F130\t0x4CDD\n0x8234F131\t0x4CDE\n0x8234F132\t0x4CDF\n0x8234F133\t0x4CE0\n0x8234F134\t0x4CE1\n0x8234F135\t0x4CE2\n0x8234F136\t0x4CE3\n0x8234F137\t0x4CE4\n0x8234F138\t0x4CE5\n0x8234F139\t0x4CE6\n0x8234F230\t0x4CE7\n0x8234F231\t0x4CE8\n0x8234F232\t0x4CE9\n0x8234F233\t0x4CEA\n0x8234F234\t0x4CEB\n0x8234F235\t0x4CEC\n0x8234F236\t0x4CED\n0x8234F237\t0x4CEE\n0x8234F238\t0x4CEF\n0x8234F239\t0x4CF0\n0x8234F330\t0x4CF1\n0x8234F331\t0x4CF2\n0x8234F332\t0x4CF3\n0x8234F333\t0x4CF4\n0x8234F334\t0x4CF5\n0x8234F335\t0x4CF6\n0x8234F336\t0x4CF7\n0x8234F337\t0x4CF8\n0x8234F338\t0x4CF9\n0x8234F339\t0x4CFA\n0x8234F430\t0x4CFB\n0x8234F431\t0x4CFC\n0x8234F432\t0x4CFD\n0x8234F433\t0x4CFE\n0x8234F434\t0x4CFF\n0x8234F435\t0x4D00\n0x8234F436\t0x4D01\n0x8234F437\t0x4D02\n0x8234F438\t0x4D03\n0x8234F439\t0x4D04\n0x8234F530\t0x4D05\n0x8234F531\t0x4D06\n0x8234F532\t0x4D07\n0x8234F533\t0x4D08\n0x8234F534\t0x4D09\n0x8234F535\t0x4D0A\n0x8234F536\t0x4D0B\n0x8234F537\t0x4D0C\n0x8234F538\t0x4D0D\n0x8234F539\t0x4D0E\n0x8234F630\t0x4D0F\n0x8234F631\t0x4D10\n0x8234F632\t0x4D11\n0x8234F633\t0x4D12\n0x8234F634\t0x4D1A\n0x8234F635\t0x4D1B\n0x8234F636\t0x4D1C\n0x8234F637\t0x4D1D\n0x8234F638\t0x4D1E\n0x8234F639\t0x4D1F\n0x8234F730\t0x4D20\n0x8234F731\t0x4D21\n0x8234F732\t0x4D22\n0x8234F733\t0x4D23\n0x8234F734\t0x4D24\n0x8234F735\t0x4D25\n0x8234F736\t0x4D26\n0x8234F737\t0x4D27\n0x8234F738\t0x4D28\n0x8234F739\t0x4D29\n0x8234F830\t0x4D2A\n0x8234F831\t0x4D2B\n0x8234F832\t0x4D2C\n0x8234F833\t0x4D2D\n0x8234F834\t0x4D2E\n0x8234F835\t0x4D2F\n0x8234F836\t0x4D30\n0x8234F837\t0x4D31\n0x8234F838\t0x4D32\n0x8234F839\t0x4D33\n0x8234F930\t0x4D34\n0x8234F931\t0x4D35\n0x8234F932\t0x4D36\n0x8234F933\t0x4D37\n0x8234F934\t0x4D38\n0x8234F935\t0x4D39\n0x8234F936\t0x4D3A\n0x8234F937\t0x4D3B\n0x8234F938\t0x4D3C\n0x8234F939\t0x4D3D\n0x8234FA30\t0x4D3E\n0x8234FA31\t0x4D3F\n0x8234FA32\t0x4D40\n0x8234FA33\t0x4D41\n0x8234FA34\t0x4D42\n0x8234FA35\t0x4D43\n0x8234FA36\t0x4D44\n0x8234FA37\t0x4D45\n0x8234FA38\t0x4D46\n0x8234FA39\t0x4D47\n0x8234FB30\t0x4D48\n0x8234FB31\t0x4D49\n0x8234FB32\t0x4D4A\n0x8234FB33\t0x4D4B\n0x8234FB34\t0x4D4C\n0x8234FB35\t0x4D4D\n0x8234FB36\t0x4D4E\n0x8234FB37\t0x4D4F\n0x8234FB38\t0x4D50\n0x8234FB39\t0x4D51\n0x8234FC30\t0x4D52\n0x8234FC31\t0x4D53\n0x8234FC32\t0x4D54\n0x8234FC33\t0x4D55\n0x8234FC34\t0x4D56\n0x8234FC35\t0x4D57\n0x8234FC36\t0x4D58\n0x8234FC37\t0x4D59\n0x8234FC38\t0x4D5A\n0x8234FC39\t0x4D5B\n0x8234FD30\t0x4D5C\n0x8234FD31\t0x4D5D\n0x8234FD32\t0x4D5E\n0x8234FD33\t0x4D5F\n0x8234FD34\t0x4D60\n0x8234FD35\t0x4D61\n0x8234FD36\t0x4D62\n0x8234FD37\t0x4D63\n0x8234FD38\t0x4D64\n0x8234FD39\t0x4D65\n0x8234FE30\t0x4D66\n0x8234FE31\t0x4D67\n0x8234FE32\t0x4D68\n0x8234FE33\t0x4D69\n0x8234FE34\t0x4D6A\n0x8234FE35\t0x4D6B\n0x8234FE36\t0x4D6C\n0x8234FE37\t0x4D6D\n0x8234FE38\t0x4D6E\n0x8234FE39\t0x4D6F\n0x82358130\t0x4D70\n0x82358131\t0x4D71\n0x82358132\t0x4D72\n0x82358133\t0x4D73\n0x82358134\t0x4D74\n0x82358135\t0x4D75\n0x82358136\t0x4D76\n0x82358137\t0x4D77\n0x82358138\t0x4D78\n0x82358139\t0x4D79\n0x82358230\t0x4D7A\n0x82358231\t0x4D7B\n0x82358232\t0x4D7C\n0x82358233\t0x4D7D\n0x82358234\t0x4D7E\n0x82358235\t0x4D7F\n0x82358236\t0x4D80\n0x82358237\t0x4D81\n0x82358238\t0x4D82\n0x82358239\t0x4D83\n0x82358330\t0x4D84\n0x82358331\t0x4D85\n0x82358332\t0x4D86\n0x82358333\t0x4D87\n0x82358334\t0x4D88\n0x82358335\t0x4D89\n0x82358336\t0x4D8A\n0x82358337\t0x4D8B\n0x82358338\t0x4D8C\n0x82358339\t0x4D8D\n0x82358430\t0x4D8E\n0x82358431\t0x4D8F\n0x82358432\t0x4D90\n0x82358433\t0x4D91\n0x82358434\t0x4D92\n0x82358435\t0x4D93\n0x82358436\t0x4D94\n0x82358437\t0x4D95\n0x82358438\t0x4D96\n0x82358439\t0x4D97\n0x82358530\t0x4D98\n0x82358531\t0x4D99\n0x82358532\t0x4D9A\n0x82358533\t0x4D9B\n0x82358534\t0x4D9C\n0x82358535\t0x4D9D\n0x82358536\t0x4D9E\n0x82358537\t0x4D9F\n0x82358538\t0x4DA0\n0x82358539\t0x4DA1\n0x82358630\t0x4DA2\n0x82358631\t0x4DA3\n0x82358632\t0x4DA4\n0x82358633\t0x4DA5\n0x82358634\t0x4DA6\n0x82358635\t0x4DA7\n0x82358636\t0x4DA8\n0x82358637\t0x4DA9\n0x82358638\t0x4DAA\n0x82358639\t0x4DAB\n0x82358730\t0x4DAC\n0x82358731\t0x4DAD\n0x82358732\t0x4DAF\n0x82358733\t0x4DB0\n0x82358734\t0x4DB1\n0x82358735\t0x4DB2\n0x82358736\t0x4DB3\n0x82358737\t0x4DB4\n0x82358738\t0x4DB5\n0x82358739\t0x4DB6\n0x82358830\t0x4DB7\n0x82358831\t0x4DB8\n0x82358832\t0x4DB9\n0x82358833\t0x4DBA\n0x82358834\t0x4DBB\n0x82358835\t0x4DBC\n0x82358836\t0x4DBD\n0x82358837\t0x4DBE\n0x82358838\t0x4DBF\n0x82358839\t0x4DC0\n0x82358930\t0x4DC1\n0x82358931\t0x4DC2\n0x82358932\t0x4DC3\n0x82358933\t0x4DC4\n0x82358934\t0x4DC5\n0x82358935\t0x4DC6\n0x82358936\t0x4DC7\n0x82358937\t0x4DC8\n0x82358938\t0x4DC9\n0x82358939\t0x4DCA\n0x82358A30\t0x4DCB\n0x82358A31\t0x4DCC\n0x82358A32\t0x4DCD\n0x82358A33\t0x4DCE\n0x82358A34\t0x4DCF\n0x82358A35\t0x4DD0\n0x82358A36\t0x4DD1\n0x82358A37\t0x4DD2\n0x82358A38\t0x4DD3\n0x82358A39\t0x4DD4\n0x82358B30\t0x4DD5\n0x82358B31\t0x4DD6\n0x82358B32\t0x4DD7\n0x82358B33\t0x4DD8\n0x82358B34\t0x4DD9\n0x82358B35\t0x4DDA\n0x82358B36\t0x4DDB\n0x82358B37\t0x4DDC\n0x82358B38\t0x4DDD\n0x82358B39\t0x4DDE\n0x82358C30\t0x4DDF\n0x82358C31\t0x4DE0\n0x82358C32\t0x4DE1\n0x82358C33\t0x4DE2\n0x82358C34\t0x4DE3\n0x82358C35\t0x4DE4\n0x82358C36\t0x4DE5\n0x82358C37\t0x4DE6\n0x82358C38\t0x4DE7\n0x82358C39\t0x4DE8\n0x82358D30\t0x4DE9\n0x82358D31\t0x4DEA\n0x82358D32\t0x4DEB\n0x82358D33\t0x4DEC\n0x82358D34\t0x4DED\n0x82358D35\t0x4DEE\n0x82358D36\t0x4DEF\n0x82358D37\t0x4DF0\n0x82358D38\t0x4DF1\n0x82358D39\t0x4DF2\n0x82358E30\t0x4DF3\n0x82358E31\t0x4DF4\n0x82358E32\t0x4DF5\n0x82358E33\t0x4DF6\n0x82358E34\t0x4DF7\n0x82358E35\t0x4DF8\n0x82358E36\t0x4DF9\n0x82358E37\t0x4DFA\n0x82358E38\t0x4DFB\n0x82358E39\t0x4DFC\n0x82358F30\t0x4DFD\n0x82358F31\t0x4DFE\n0x82358F32\t0x4DFF\n0x82358F33\t0x9FA6\n0x82358F34\t0x9FA7\n0x82358F35\t0x9FA8\n0x82358F36\t0x9FA9\n0x82358F37\t0x9FAA\n0x82358F38\t0x9FAB\n0x82358F39\t0x9FAC\n0x82359030\t0x9FAD\n0x82359031\t0x9FAE\n0x82359032\t0x9FAF\n0x82359033\t0x9FB0\n0x82359034\t0x9FB1\n0x82359035\t0x9FB2\n0x82359036\t0x9FB3\n0x82359037\t0x9FB4\n0x82359038\t0x9FB5\n0x82359039\t0x9FB6\n0x82359130\t0x9FB7\n0x82359131\t0x9FB8\n0x82359132\t0x9FB9\n0x82359133\t0x9FBA\n0x82359134\t0x9FBB\n0x82359135\t0x9FBC\n0x82359136\t0x9FBD\n0x82359137\t0x9FBE\n0x82359138\t0x9FBF\n0x82359139\t0x9FC0\n0x82359230\t0x9FC1\n0x82359231\t0x9FC2\n0x82359232\t0x9FC3\n0x82359233\t0x9FC4\n0x82359234\t0x9FC5\n0x82359235\t0x9FC6\n0x82359236\t0x9FC7\n0x82359237\t0x9FC8\n0x82359238\t0x9FC9\n0x82359239\t0x9FCA\n0x82359330\t0x9FCB\n0x82359331\t0x9FCC\n0x82359332\t0x9FCD\n0x82359333\t0x9FCE\n0x82359334\t0x9FCF\n0x82359335\t0x9FD0\n0x82359336\t0x9FD1\n0x82359337\t0x9FD2\n0x82359338\t0x9FD3\n0x82359339\t0x9FD4\n0x82359430\t0x9FD5\n0x82359431\t0x9FD6\n0x82359432\t0x9FD7\n0x82359433\t0x9FD8\n0x82359434\t0x9FD9\n0x82359435\t0x9FDA\n0x82359436\t0x9FDB\n0x82359437\t0x9FDC\n0x82359438\t0x9FDD\n0x82359439\t0x9FDE\n0x82359530\t0x9FDF\n0x82359531\t0x9FE0\n0x82359532\t0x9FE1\n0x82359533\t0x9FE2\n0x82359534\t0x9FE3\n0x82359535\t0x9FE4\n0x82359536\t0x9FE5\n0x82359537\t0x9FE6\n0x82359538\t0x9FE7\n0x82359539\t0x9FE8\n0x82359630\t0x9FE9\n0x82359631\t0x9FEA\n0x82359632\t0x9FEB\n0x82359633\t0x9FEC\n0x82359634\t0x9FED\n0x82359635\t0x9FEE\n0x82359636\t0x9FEF\n0x82359637\t0x9FF0\n0x82359638\t0x9FF1\n0x82359639\t0x9FF2\n0x82359730\t0x9FF3\n0x82359731\t0x9FF4\n0x82359732\t0x9FF5\n0x82359733\t0x9FF6\n0x82359734\t0x9FF7\n0x82359735\t0x9FF8\n0x82359736\t0x9FF9\n0x82359737\t0x9FFA\n0x82359738\t0x9FFB\n0x82359739\t0x9FFC\n0x82359830\t0x9FFD\n0x82359831\t0x9FFE\n0x82359832\t0x9FFF\n0x82359833\t0xA000\n0x82359834\t0xA001\n0x82359835\t0xA002\n0x82359836\t0xA003\n0x82359837\t0xA004\n0x82359838\t0xA005\n0x82359839\t0xA006\n0x82359930\t0xA007\n0x82359931\t0xA008\n0x82359932\t0xA009\n0x82359933\t0xA00A\n0x82359934\t0xA00B\n0x82359935\t0xA00C\n0x82359936\t0xA00D\n0x82359937\t0xA00E\n0x82359938\t0xA00F\n0x82359939\t0xA010\n0x82359A30\t0xA011\n0x82359A31\t0xA012\n0x82359A32\t0xA013\n0x82359A33\t0xA014\n0x82359A34\t0xA015\n0x82359A35\t0xA016\n0x82359A36\t0xA017\n0x82359A37\t0xA018\n0x82359A38\t0xA019\n0x82359A39\t0xA01A\n0x82359B30\t0xA01B\n0x82359B31\t0xA01C\n0x82359B32\t0xA01D\n0x82359B33\t0xA01E\n0x82359B34\t0xA01F\n0x82359B35\t0xA020\n0x82359B36\t0xA021\n0x82359B37\t0xA022\n0x82359B38\t0xA023\n0x82359B39\t0xA024\n0x82359C30\t0xA025\n0x82359C31\t0xA026\n0x82359C32\t0xA027\n0x82359C33\t0xA028\n0x82359C34\t0xA029\n0x82359C35\t0xA02A\n0x82359C36\t0xA02B\n0x82359C37\t0xA02C\n0x82359C38\t0xA02D\n0x82359C39\t0xA02E\n0x82359D30\t0xA02F\n0x82359D31\t0xA030\n0x82359D32\t0xA031\n0x82359D33\t0xA032\n0x82359D34\t0xA033\n0x82359D35\t0xA034\n0x82359D36\t0xA035\n0x82359D37\t0xA036\n0x82359D38\t0xA037\n0x82359D39\t0xA038\n0x82359E30\t0xA039\n0x82359E31\t0xA03A\n0x82359E32\t0xA03B\n0x82359E33\t0xA03C\n0x82359E34\t0xA03D\n0x82359E35\t0xA03E\n0x82359E36\t0xA03F\n0x82359E37\t0xA040\n0x82359E38\t0xA041\n0x82359E39\t0xA042\n0x82359F30\t0xA043\n0x82359F31\t0xA044\n0x82359F32\t0xA045\n0x82359F33\t0xA046\n0x82359F34\t0xA047\n0x82359F35\t0xA048\n0x82359F36\t0xA049\n0x82359F37\t0xA04A\n0x82359F38\t0xA04B\n0x82359F39\t0xA04C\n0x8235A030\t0xA04D\n0x8235A031\t0xA04E\n0x8235A032\t0xA04F\n0x8235A033\t0xA050\n0x8235A034\t0xA051\n0x8235A035\t0xA052\n0x8235A036\t0xA053\n0x8235A037\t0xA054\n0x8235A038\t0xA055\n0x8235A039\t0xA056\n0x8235A130\t0xA057\n0x8235A131\t0xA058\n0x8235A132\t0xA059\n0x8235A133\t0xA05A\n0x8235A134\t0xA05B\n0x8235A135\t0xA05C\n0x8235A136\t0xA05D\n0x8235A137\t0xA05E\n0x8235A138\t0xA05F\n0x8235A139\t0xA060\n0x8235A230\t0xA061\n0x8235A231\t0xA062\n0x8235A232\t0xA063\n0x8235A233\t0xA064\n0x8235A234\t0xA065\n0x8235A235\t0xA066\n0x8235A236\t0xA067\n0x8235A237\t0xA068\n0x8235A238\t0xA069\n0x8235A239\t0xA06A\n0x8235A330\t0xA06B\n0x8235A331\t0xA06C\n0x8235A332\t0xA06D\n0x8235A333\t0xA06E\n0x8235A334\t0xA06F\n0x8235A335\t0xA070\n0x8235A336\t0xA071\n0x8235A337\t0xA072\n0x8235A338\t0xA073\n0x8235A339\t0xA074\n0x8235A430\t0xA075\n0x8235A431\t0xA076\n0x8235A432\t0xA077\n0x8235A433\t0xA078\n0x8235A434\t0xA079\n0x8235A435\t0xA07A\n0x8235A436\t0xA07B\n0x8235A437\t0xA07C\n0x8235A438\t0xA07D\n0x8235A439\t0xA07E\n0x8235A530\t0xA07F\n0x8235A531\t0xA080\n0x8235A532\t0xA081\n0x8235A533\t0xA082\n0x8235A534\t0xA083\n0x8235A535\t0xA084\n0x8235A536\t0xA085\n0x8235A537\t0xA086\n0x8235A538\t0xA087\n0x8235A539\t0xA088\n0x8235A630\t0xA089\n0x8235A631\t0xA08A\n0x8235A632\t0xA08B\n0x8235A633\t0xA08C\n0x8235A634\t0xA08D\n0x8235A635\t0xA08E\n0x8235A636\t0xA08F\n0x8235A637\t0xA090\n0x8235A638\t0xA091\n0x8235A639\t0xA092\n0x8235A730\t0xA093\n0x8235A731\t0xA094\n0x8235A732\t0xA095\n0x8235A733\t0xA096\n0x8235A734\t0xA097\n0x8235A735\t0xA098\n0x8235A736\t0xA099\n0x8235A737\t0xA09A\n0x8235A738\t0xA09B\n0x8235A739\t0xA09C\n0x8235A830\t0xA09D\n0x8235A831\t0xA09E\n0x8235A832\t0xA09F\n0x8235A833\t0xA0A0\n0x8235A834\t0xA0A1\n0x8235A835\t0xA0A2\n0x8235A836\t0xA0A3\n0x8235A837\t0xA0A4\n0x8235A838\t0xA0A5\n0x8235A839\t0xA0A6\n0x8235A930\t0xA0A7\n0x8235A931\t0xA0A8\n0x8235A932\t0xA0A9\n0x8235A933\t0xA0AA\n0x8235A934\t0xA0AB\n0x8235A935\t0xA0AC\n0x8235A936\t0xA0AD\n0x8235A937\t0xA0AE\n0x8235A938\t0xA0AF\n0x8235A939\t0xA0B0\n0x8235AA30\t0xA0B1\n0x8235AA31\t0xA0B2\n0x8235AA32\t0xA0B3\n0x8235AA33\t0xA0B4\n0x8235AA34\t0xA0B5\n0x8235AA35\t0xA0B6\n0x8235AA36\t0xA0B7\n0x8235AA37\t0xA0B8\n0x8235AA38\t0xA0B9\n0x8235AA39\t0xA0BA\n0x8235AB30\t0xA0BB\n0x8235AB31\t0xA0BC\n0x8235AB32\t0xA0BD\n0x8235AB33\t0xA0BE\n0x8235AB34\t0xA0BF\n0x8235AB35\t0xA0C0\n0x8235AB36\t0xA0C1\n0x8235AB37\t0xA0C2\n0x8235AB38\t0xA0C3\n0x8235AB39\t0xA0C4\n0x8235AC30\t0xA0C5\n0x8235AC31\t0xA0C6\n0x8235AC32\t0xA0C7\n0x8235AC33\t0xA0C8\n0x8235AC34\t0xA0C9\n0x8235AC35\t0xA0CA\n0x8235AC36\t0xA0CB\n0x8235AC37\t0xA0CC\n0x8235AC38\t0xA0CD\n0x8235AC39\t0xA0CE\n0x8235AD30\t0xA0CF\n0x8235AD31\t0xA0D0\n0x8235AD32\t0xA0D1\n0x8235AD33\t0xA0D2\n0x8235AD34\t0xA0D3\n0x8235AD35\t0xA0D4\n0x8235AD36\t0xA0D5\n0x8235AD37\t0xA0D6\n0x8235AD38\t0xA0D7\n0x8235AD39\t0xA0D8\n0x8235AE30\t0xA0D9\n0x8235AE31\t0xA0DA\n0x8235AE32\t0xA0DB\n0x8235AE33\t0xA0DC\n0x8235AE34\t0xA0DD\n0x8235AE35\t0xA0DE\n0x8235AE36\t0xA0DF\n0x8235AE37\t0xA0E0\n0x8235AE38\t0xA0E1\n0x8235AE39\t0xA0E2\n0x8235AF30\t0xA0E3\n0x8235AF31\t0xA0E4\n0x8235AF32\t0xA0E5\n0x8235AF33\t0xA0E6\n0x8235AF34\t0xA0E7\n0x8235AF35\t0xA0E8\n0x8235AF36\t0xA0E9\n0x8235AF37\t0xA0EA\n0x8235AF38\t0xA0EB\n0x8235AF39\t0xA0EC\n0x8235B030\t0xA0ED\n0x8235B031\t0xA0EE\n0x8235B032\t0xA0EF\n0x8235B033\t0xA0F0\n0x8235B034\t0xA0F1\n0x8235B035\t0xA0F2\n0x8235B036\t0xA0F3\n0x8235B037\t0xA0F4\n0x8235B038\t0xA0F5\n0x8235B039\t0xA0F6\n0x8235B130\t0xA0F7\n0x8235B131\t0xA0F8\n0x8235B132\t0xA0F9\n0x8235B133\t0xA0FA\n0x8235B134\t0xA0FB\n0x8235B135\t0xA0FC\n0x8235B136\t0xA0FD\n0x8235B137\t0xA0FE\n0x8235B138\t0xA0FF\n0x8235B139\t0xA100\n0x8235B230\t0xA101\n0x8235B231\t0xA102\n0x8235B232\t0xA103\n0x8235B233\t0xA104\n0x8235B234\t0xA105\n0x8235B235\t0xA106\n0x8235B236\t0xA107\n0x8235B237\t0xA108\n0x8235B238\t0xA109\n0x8235B239\t0xA10A\n0x8235B330\t0xA10B\n0x8235B331\t0xA10C\n0x8235B332\t0xA10D\n0x8235B333\t0xA10E\n0x8235B334\t0xA10F\n0x8235B335\t0xA110\n0x8235B336\t0xA111\n0x8235B337\t0xA112\n0x8235B338\t0xA113\n0x8235B339\t0xA114\n0x8235B430\t0xA115\n0x8235B431\t0xA116\n0x8235B432\t0xA117\n0x8235B433\t0xA118\n0x8235B434\t0xA119\n0x8235B435\t0xA11A\n0x8235B436\t0xA11B\n0x8235B437\t0xA11C\n0x8235B438\t0xA11D\n0x8235B439\t0xA11E\n0x8235B530\t0xA11F\n0x8235B531\t0xA120\n0x8235B532\t0xA121\n0x8235B533\t0xA122\n0x8235B534\t0xA123\n0x8235B535\t0xA124\n0x8235B536\t0xA125\n0x8235B537\t0xA126\n0x8235B538\t0xA127\n0x8235B539\t0xA128\n0x8235B630\t0xA129\n0x8235B631\t0xA12A\n0x8235B632\t0xA12B\n0x8235B633\t0xA12C\n0x8235B634\t0xA12D\n0x8235B635\t0xA12E\n0x8235B636\t0xA12F\n0x8235B637\t0xA130\n0x8235B638\t0xA131\n0x8235B639\t0xA132\n0x8235B730\t0xA133\n0x8235B731\t0xA134\n0x8235B732\t0xA135\n0x8235B733\t0xA136\n0x8235B734\t0xA137\n0x8235B735\t0xA138\n0x8235B736\t0xA139\n0x8235B737\t0xA13A\n0x8235B738\t0xA13B\n0x8235B739\t0xA13C\n0x8235B830\t0xA13D\n0x8235B831\t0xA13E\n0x8235B832\t0xA13F\n0x8235B833\t0xA140\n0x8235B834\t0xA141\n0x8235B835\t0xA142\n0x8235B836\t0xA143\n0x8235B837\t0xA144\n0x8235B838\t0xA145\n0x8235B839\t0xA146\n0x8235B930\t0xA147\n0x8235B931\t0xA148\n0x8235B932\t0xA149\n0x8235B933\t0xA14A\n0x8235B934\t0xA14B\n0x8235B935\t0xA14C\n0x8235B936\t0xA14D\n0x8235B937\t0xA14E\n0x8235B938\t0xA14F\n0x8235B939\t0xA150\n0x8235BA30\t0xA151\n0x8235BA31\t0xA152\n0x8235BA32\t0xA153\n0x8235BA33\t0xA154\n0x8235BA34\t0xA155\n0x8235BA35\t0xA156\n0x8235BA36\t0xA157\n0x8235BA37\t0xA158\n0x8235BA38\t0xA159\n0x8235BA39\t0xA15A\n0x8235BB30\t0xA15B\n0x8235BB31\t0xA15C\n0x8235BB32\t0xA15D\n0x8235BB33\t0xA15E\n0x8235BB34\t0xA15F\n0x8235BB35\t0xA160\n0x8235BB36\t0xA161\n0x8235BB37\t0xA162\n0x8235BB38\t0xA163\n0x8235BB39\t0xA164\n0x8235BC30\t0xA165\n0x8235BC31\t0xA166\n0x8235BC32\t0xA167\n0x8235BC33\t0xA168\n0x8235BC34\t0xA169\n0x8235BC35\t0xA16A\n0x8235BC36\t0xA16B\n0x8235BC37\t0xA16C\n0x8235BC38\t0xA16D\n0x8235BC39\t0xA16E\n0x8235BD30\t0xA16F\n0x8235BD31\t0xA170\n0x8235BD32\t0xA171\n0x8235BD33\t0xA172\n0x8235BD34\t0xA173\n0x8235BD35\t0xA174\n0x8235BD36\t0xA175\n0x8235BD37\t0xA176\n0x8235BD38\t0xA177\n0x8235BD39\t0xA178\n0x8235BE30\t0xA179\n0x8235BE31\t0xA17A\n0x8235BE32\t0xA17B\n0x8235BE33\t0xA17C\n0x8235BE34\t0xA17D\n0x8235BE35\t0xA17E\n0x8235BE36\t0xA17F\n0x8235BE37\t0xA180\n0x8235BE38\t0xA181\n0x8235BE39\t0xA182\n0x8235BF30\t0xA183\n0x8235BF31\t0xA184\n0x8235BF32\t0xA185\n0x8235BF33\t0xA186\n0x8235BF34\t0xA187\n0x8235BF35\t0xA188\n0x8235BF36\t0xA189\n0x8235BF37\t0xA18A\n0x8235BF38\t0xA18B\n0x8235BF39\t0xA18C\n0x8235C030\t0xA18D\n0x8235C031\t0xA18E\n0x8235C032\t0xA18F\n0x8235C033\t0xA190\n0x8235C034\t0xA191\n0x8235C035\t0xA192\n0x8235C036\t0xA193\n0x8235C037\t0xA194\n0x8235C038\t0xA195\n0x8235C039\t0xA196\n0x8235C130\t0xA197\n0x8235C131\t0xA198\n0x8235C132\t0xA199\n0x8235C133\t0xA19A\n0x8235C134\t0xA19B\n0x8235C135\t0xA19C\n0x8235C136\t0xA19D\n0x8235C137\t0xA19E\n0x8235C138\t0xA19F\n0x8235C139\t0xA1A0\n0x8235C230\t0xA1A1\n0x8235C231\t0xA1A2\n0x8235C232\t0xA1A3\n0x8235C233\t0xA1A4\n0x8235C234\t0xA1A5\n0x8235C235\t0xA1A6\n0x8235C236\t0xA1A7\n0x8235C237\t0xA1A8\n0x8235C238\t0xA1A9\n0x8235C239\t0xA1AA\n0x8235C330\t0xA1AB\n0x8235C331\t0xA1AC\n0x8235C332\t0xA1AD\n0x8235C333\t0xA1AE\n0x8235C334\t0xA1AF\n0x8235C335\t0xA1B0\n0x8235C336\t0xA1B1\n0x8235C337\t0xA1B2\n0x8235C338\t0xA1B3\n0x8235C339\t0xA1B4\n0x8235C430\t0xA1B5\n0x8235C431\t0xA1B6\n0x8235C432\t0xA1B7\n0x8235C433\t0xA1B8\n0x8235C434\t0xA1B9\n0x8235C435\t0xA1BA\n0x8235C436\t0xA1BB\n0x8235C437\t0xA1BC\n0x8235C438\t0xA1BD\n0x8235C439\t0xA1BE\n0x8235C530\t0xA1BF\n0x8235C531\t0xA1C0\n0x8235C532\t0xA1C1\n0x8235C533\t0xA1C2\n0x8235C534\t0xA1C3\n0x8235C535\t0xA1C4\n0x8235C536\t0xA1C5\n0x8235C537\t0xA1C6\n0x8235C538\t0xA1C7\n0x8235C539\t0xA1C8\n0x8235C630\t0xA1C9\n0x8235C631\t0xA1CA\n0x8235C632\t0xA1CB\n0x8235C633\t0xA1CC\n0x8235C634\t0xA1CD\n0x8235C635\t0xA1CE\n0x8235C636\t0xA1CF\n0x8235C637\t0xA1D0\n0x8235C638\t0xA1D1\n0x8235C639\t0xA1D2\n0x8235C730\t0xA1D3\n0x8235C731\t0xA1D4\n0x8235C732\t0xA1D5\n0x8235C733\t0xA1D6\n0x8235C734\t0xA1D7\n0x8235C735\t0xA1D8\n0x8235C736\t0xA1D9\n0x8235C737\t0xA1DA\n0x8235C738\t0xA1DB\n0x8235C739\t0xA1DC\n0x8235C830\t0xA1DD\n0x8235C831\t0xA1DE\n0x8235C832\t0xA1DF\n0x8235C833\t0xA1E0\n0x8235C834\t0xA1E1\n0x8235C835\t0xA1E2\n0x8235C836\t0xA1E3\n0x8235C837\t0xA1E4\n0x8235C838\t0xA1E5\n0x8235C839\t0xA1E6\n0x8235C930\t0xA1E7\n0x8235C931\t0xA1E8\n0x8235C932\t0xA1E9\n0x8235C933\t0xA1EA\n0x8235C934\t0xA1EB\n0x8235C935\t0xA1EC\n0x8235C936\t0xA1ED\n0x8235C937\t0xA1EE\n0x8235C938\t0xA1EF\n0x8235C939\t0xA1F0\n0x8235CA30\t0xA1F1\n0x8235CA31\t0xA1F2\n0x8235CA32\t0xA1F3\n0x8235CA33\t0xA1F4\n0x8235CA34\t0xA1F5\n0x8235CA35\t0xA1F6\n0x8235CA36\t0xA1F7\n0x8235CA37\t0xA1F8\n0x8235CA38\t0xA1F9\n0x8235CA39\t0xA1FA\n0x8235CB30\t0xA1FB\n0x8235CB31\t0xA1FC\n0x8235CB32\t0xA1FD\n0x8235CB33\t0xA1FE\n0x8235CB34\t0xA1FF\n0x8235CB35\t0xA200\n0x8235CB36\t0xA201\n0x8235CB37\t0xA202\n0x8235CB38\t0xA203\n0x8235CB39\t0xA204\n0x8235CC30\t0xA205\n0x8235CC31\t0xA206\n0x8235CC32\t0xA207\n0x8235CC33\t0xA208\n0x8235CC34\t0xA209\n0x8235CC35\t0xA20A\n0x8235CC36\t0xA20B\n0x8235CC37\t0xA20C\n0x8235CC38\t0xA20D\n0x8235CC39\t0xA20E\n0x8235CD30\t0xA20F\n0x8235CD31\t0xA210\n0x8235CD32\t0xA211\n0x8235CD33\t0xA212\n0x8235CD34\t0xA213\n0x8235CD35\t0xA214\n0x8235CD36\t0xA215\n0x8235CD37\t0xA216\n0x8235CD38\t0xA217\n0x8235CD39\t0xA218\n0x8235CE30\t0xA219\n0x8235CE31\t0xA21A\n0x8235CE32\t0xA21B\n0x8235CE33\t0xA21C\n0x8235CE34\t0xA21D\n0x8235CE35\t0xA21E\n0x8235CE36\t0xA21F\n0x8235CE37\t0xA220\n0x8235CE38\t0xA221\n0x8235CE39\t0xA222\n0x8235CF30\t0xA223\n0x8235CF31\t0xA224\n0x8235CF32\t0xA225\n0x8235CF33\t0xA226\n0x8235CF34\t0xA227\n0x8235CF35\t0xA228\n0x8235CF36\t0xA229\n0x8235CF37\t0xA22A\n0x8235CF38\t0xA22B\n0x8235CF39\t0xA22C\n0x8235D030\t0xA22D\n0x8235D031\t0xA22E\n0x8235D032\t0xA22F\n0x8235D033\t0xA230\n0x8235D034\t0xA231\n0x8235D035\t0xA232\n0x8235D036\t0xA233\n0x8235D037\t0xA234\n0x8235D038\t0xA235\n0x8235D039\t0xA236\n0x8235D130\t0xA237\n0x8235D131\t0xA238\n0x8235D132\t0xA239\n0x8235D133\t0xA23A\n0x8235D134\t0xA23B\n0x8235D135\t0xA23C\n0x8235D136\t0xA23D\n0x8235D137\t0xA23E\n0x8235D138\t0xA23F\n0x8235D139\t0xA240\n0x8235D230\t0xA241\n0x8235D231\t0xA242\n0x8235D232\t0xA243\n0x8235D233\t0xA244\n0x8235D234\t0xA245\n0x8235D235\t0xA246\n0x8235D236\t0xA247\n0x8235D237\t0xA248\n0x8235D238\t0xA249\n0x8235D239\t0xA24A\n0x8235D330\t0xA24B\n0x8235D331\t0xA24C\n0x8235D332\t0xA24D\n0x8235D333\t0xA24E\n0x8235D334\t0xA24F\n0x8235D335\t0xA250\n0x8235D336\t0xA251\n0x8235D337\t0xA252\n0x8235D338\t0xA253\n0x8235D339\t0xA254\n0x8235D430\t0xA255\n0x8235D431\t0xA256\n0x8235D432\t0xA257\n0x8235D433\t0xA258\n0x8235D434\t0xA259\n0x8235D435\t0xA25A\n0x8235D436\t0xA25B\n0x8235D437\t0xA25C\n0x8235D438\t0xA25D\n0x8235D439\t0xA25E\n0x8235D530\t0xA25F\n0x8235D531\t0xA260\n0x8235D532\t0xA261\n0x8235D533\t0xA262\n0x8235D534\t0xA263\n0x8235D535\t0xA264\n0x8235D536\t0xA265\n0x8235D537\t0xA266\n0x8235D538\t0xA267\n0x8235D539\t0xA268\n0x8235D630\t0xA269\n0x8235D631\t0xA26A\n0x8235D632\t0xA26B\n0x8235D633\t0xA26C\n0x8235D634\t0xA26D\n0x8235D635\t0xA26E\n0x8235D636\t0xA26F\n0x8235D637\t0xA270\n0x8235D638\t0xA271\n0x8235D639\t0xA272\n0x8235D730\t0xA273\n0x8235D731\t0xA274\n0x8235D732\t0xA275\n0x8235D733\t0xA276\n0x8235D734\t0xA277\n0x8235D735\t0xA278\n0x8235D736\t0xA279\n0x8235D737\t0xA27A\n0x8235D738\t0xA27B\n0x8235D739\t0xA27C\n0x8235D830\t0xA27D\n0x8235D831\t0xA27E\n0x8235D832\t0xA27F\n0x8235D833\t0xA280\n0x8235D834\t0xA281\n0x8235D835\t0xA282\n0x8235D836\t0xA283\n0x8235D837\t0xA284\n0x8235D838\t0xA285\n0x8235D839\t0xA286\n0x8235D930\t0xA287\n0x8235D931\t0xA288\n0x8235D932\t0xA289\n0x8235D933\t0xA28A\n0x8235D934\t0xA28B\n0x8235D935\t0xA28C\n0x8235D936\t0xA28D\n0x8235D937\t0xA28E\n0x8235D938\t0xA28F\n0x8235D939\t0xA290\n0x8235DA30\t0xA291\n0x8235DA31\t0xA292\n0x8235DA32\t0xA293\n0x8235DA33\t0xA294\n0x8235DA34\t0xA295\n0x8235DA35\t0xA296\n0x8235DA36\t0xA297\n0x8235DA37\t0xA298\n0x8235DA38\t0xA299\n0x8235DA39\t0xA29A\n0x8235DB30\t0xA29B\n0x8235DB31\t0xA29C\n0x8235DB32\t0xA29D\n0x8235DB33\t0xA29E\n0x8235DB34\t0xA29F\n0x8235DB35\t0xA2A0\n0x8235DB36\t0xA2A1\n0x8235DB37\t0xA2A2\n0x8235DB38\t0xA2A3\n0x8235DB39\t0xA2A4\n0x8235DC30\t0xA2A5\n0x8235DC31\t0xA2A6\n0x8235DC32\t0xA2A7\n0x8235DC33\t0xA2A8\n0x8235DC34\t0xA2A9\n0x8235DC35\t0xA2AA\n0x8235DC36\t0xA2AB\n0x8235DC37\t0xA2AC\n0x8235DC38\t0xA2AD\n0x8235DC39\t0xA2AE\n0x8235DD30\t0xA2AF\n0x8235DD31\t0xA2B0\n0x8235DD32\t0xA2B1\n0x8235DD33\t0xA2B2\n0x8235DD34\t0xA2B3\n0x8235DD35\t0xA2B4\n0x8235DD36\t0xA2B5\n0x8235DD37\t0xA2B6\n0x8235DD38\t0xA2B7\n0x8235DD39\t0xA2B8\n0x8235DE30\t0xA2B9\n0x8235DE31\t0xA2BA\n0x8235DE32\t0xA2BB\n0x8235DE33\t0xA2BC\n0x8235DE34\t0xA2BD\n0x8235DE35\t0xA2BE\n0x8235DE36\t0xA2BF\n0x8235DE37\t0xA2C0\n0x8235DE38\t0xA2C1\n0x8235DE39\t0xA2C2\n0x8235DF30\t0xA2C3\n0x8235DF31\t0xA2C4\n0x8235DF32\t0xA2C5\n0x8235DF33\t0xA2C6\n0x8235DF34\t0xA2C7\n0x8235DF35\t0xA2C8\n0x8235DF36\t0xA2C9\n0x8235DF37\t0xA2CA\n0x8235DF38\t0xA2CB\n0x8235DF39\t0xA2CC\n0x8235E030\t0xA2CD\n0x8235E031\t0xA2CE\n0x8235E032\t0xA2CF\n0x8235E033\t0xA2D0\n0x8235E034\t0xA2D1\n0x8235E035\t0xA2D2\n0x8235E036\t0xA2D3\n0x8235E037\t0xA2D4\n0x8235E038\t0xA2D5\n0x8235E039\t0xA2D6\n0x8235E130\t0xA2D7\n0x8235E131\t0xA2D8\n0x8235E132\t0xA2D9\n0x8235E133\t0xA2DA\n0x8235E134\t0xA2DB\n0x8235E135\t0xA2DC\n0x8235E136\t0xA2DD\n0x8235E137\t0xA2DE\n0x8235E138\t0xA2DF\n0x8235E139\t0xA2E0\n0x8235E230\t0xA2E1\n0x8235E231\t0xA2E2\n0x8235E232\t0xA2E3\n0x8235E233\t0xA2E4\n0x8235E234\t0xA2E5\n0x8235E235\t0xA2E6\n0x8235E236\t0xA2E7\n0x8235E237\t0xA2E8\n0x8235E238\t0xA2E9\n0x8235E239\t0xA2EA\n0x8235E330\t0xA2EB\n0x8235E331\t0xA2EC\n0x8235E332\t0xA2ED\n0x8235E333\t0xA2EE\n0x8235E334\t0xA2EF\n0x8235E335\t0xA2F0\n0x8235E336\t0xA2F1\n0x8235E337\t0xA2F2\n0x8235E338\t0xA2F3\n0x8235E339\t0xA2F4\n0x8235E430\t0xA2F5\n0x8235E431\t0xA2F6\n0x8235E432\t0xA2F7\n0x8235E433\t0xA2F8\n0x8235E434\t0xA2F9\n0x8235E435\t0xA2FA\n0x8235E436\t0xA2FB\n0x8235E437\t0xA2FC\n0x8235E438\t0xA2FD\n0x8235E439\t0xA2FE\n0x8235E530\t0xA2FF\n0x8235E531\t0xA300\n0x8235E532\t0xA301\n0x8235E533\t0xA302\n0x8235E534\t0xA303\n0x8235E535\t0xA304\n0x8235E536\t0xA305\n0x8235E537\t0xA306\n0x8235E538\t0xA307\n0x8235E539\t0xA308\n0x8235E630\t0xA309\n0x8235E631\t0xA30A\n0x8235E632\t0xA30B\n0x8235E633\t0xA30C\n0x8235E634\t0xA30D\n0x8235E635\t0xA30E\n0x8235E636\t0xA30F\n0x8235E637\t0xA310\n0x8235E638\t0xA311\n0x8235E639\t0xA312\n0x8235E730\t0xA313\n0x8235E731\t0xA314\n0x8235E732\t0xA315\n0x8235E733\t0xA316\n0x8235E734\t0xA317\n0x8235E735\t0xA318\n0x8235E736\t0xA319\n0x8235E737\t0xA31A\n0x8235E738\t0xA31B\n0x8235E739\t0xA31C\n0x8235E830\t0xA31D\n0x8235E831\t0xA31E\n0x8235E832\t0xA31F\n0x8235E833\t0xA320\n0x8235E834\t0xA321\n0x8235E835\t0xA322\n0x8235E836\t0xA323\n0x8235E837\t0xA324\n0x8235E838\t0xA325\n0x8235E839\t0xA326\n0x8235E930\t0xA327\n0x8235E931\t0xA328\n0x8235E932\t0xA329\n0x8235E933\t0xA32A\n0x8235E934\t0xA32B\n0x8235E935\t0xA32C\n0x8235E936\t0xA32D\n0x8235E937\t0xA32E\n0x8235E938\t0xA32F\n0x8235E939\t0xA330\n0x8235EA30\t0xA331\n0x8235EA31\t0xA332\n0x8235EA32\t0xA333\n0x8235EA33\t0xA334\n0x8235EA34\t0xA335\n0x8235EA35\t0xA336\n0x8235EA36\t0xA337\n0x8235EA37\t0xA338\n0x8235EA38\t0xA339\n0x8235EA39\t0xA33A\n0x8235EB30\t0xA33B\n0x8235EB31\t0xA33C\n0x8235EB32\t0xA33D\n0x8235EB33\t0xA33E\n0x8235EB34\t0xA33F\n0x8235EB35\t0xA340\n0x8235EB36\t0xA341\n0x8235EB37\t0xA342\n0x8235EB38\t0xA343\n0x8235EB39\t0xA344\n0x8235EC30\t0xA345\n0x8235EC31\t0xA346\n0x8235EC32\t0xA347\n0x8235EC33\t0xA348\n0x8235EC34\t0xA349\n0x8235EC35\t0xA34A\n0x8235EC36\t0xA34B\n0x8235EC37\t0xA34C\n0x8235EC38\t0xA34D\n0x8235EC39\t0xA34E\n0x8235ED30\t0xA34F\n0x8235ED31\t0xA350\n0x8235ED32\t0xA351\n0x8235ED33\t0xA352\n0x8235ED34\t0xA353\n0x8235ED35\t0xA354\n0x8235ED36\t0xA355\n0x8235ED37\t0xA356\n0x8235ED38\t0xA357\n0x8235ED39\t0xA358\n0x8235EE30\t0xA359\n0x8235EE31\t0xA35A\n0x8235EE32\t0xA35B\n0x8235EE33\t0xA35C\n0x8235EE34\t0xA35D\n0x8235EE35\t0xA35E\n0x8235EE36\t0xA35F\n0x8235EE37\t0xA360\n0x8235EE38\t0xA361\n0x8235EE39\t0xA362\n0x8235EF30\t0xA363\n0x8235EF31\t0xA364\n0x8235EF32\t0xA365\n0x8235EF33\t0xA366\n0x8235EF34\t0xA367\n0x8235EF35\t0xA368\n0x8235EF36\t0xA369\n0x8235EF37\t0xA36A\n0x8235EF38\t0xA36B\n0x8235EF39\t0xA36C\n0x8235F030\t0xA36D\n0x8235F031\t0xA36E\n0x8235F032\t0xA36F\n0x8235F033\t0xA370\n0x8235F034\t0xA371\n0x8235F035\t0xA372\n0x8235F036\t0xA373\n0x8235F037\t0xA374\n0x8235F038\t0xA375\n0x8235F039\t0xA376\n0x8235F130\t0xA377\n0x8235F131\t0xA378\n0x8235F132\t0xA379\n0x8235F133\t0xA37A\n0x8235F134\t0xA37B\n0x8235F135\t0xA37C\n0x8235F136\t0xA37D\n0x8235F137\t0xA37E\n0x8235F138\t0xA37F\n0x8235F139\t0xA380\n0x8235F230\t0xA381\n0x8235F231\t0xA382\n0x8235F232\t0xA383\n0x8235F233\t0xA384\n0x8235F234\t0xA385\n0x8235F235\t0xA386\n0x8235F236\t0xA387\n0x8235F237\t0xA388\n0x8235F238\t0xA389\n0x8235F239\t0xA38A\n0x8235F330\t0xA38B\n0x8235F331\t0xA38C\n0x8235F332\t0xA38D\n0x8235F333\t0xA38E\n0x8235F334\t0xA38F\n0x8235F335\t0xA390\n0x8235F336\t0xA391\n0x8235F337\t0xA392\n0x8235F338\t0xA393\n0x8235F339\t0xA394\n0x8235F430\t0xA395\n0x8235F431\t0xA396\n0x8235F432\t0xA397\n0x8235F433\t0xA398\n0x8235F434\t0xA399\n0x8235F435\t0xA39A\n0x8235F436\t0xA39B\n0x8235F437\t0xA39C\n0x8235F438\t0xA39D\n0x8235F439\t0xA39E\n0x8235F530\t0xA39F\n0x8235F531\t0xA3A0\n0x8235F532\t0xA3A1\n0x8235F533\t0xA3A2\n0x8235F534\t0xA3A3\n0x8235F535\t0xA3A4\n0x8235F536\t0xA3A5\n0x8235F537\t0xA3A6\n0x8235F538\t0xA3A7\n0x8235F539\t0xA3A8\n0x8235F630\t0xA3A9\n0x8235F631\t0xA3AA\n0x8235F632\t0xA3AB\n0x8235F633\t0xA3AC\n0x8235F634\t0xA3AD\n0x8235F635\t0xA3AE\n0x8235F636\t0xA3AF\n0x8235F637\t0xA3B0\n0x8235F638\t0xA3B1\n0x8235F639\t0xA3B2\n0x8235F730\t0xA3B3\n0x8235F731\t0xA3B4\n0x8235F732\t0xA3B5\n0x8235F733\t0xA3B6\n0x8235F734\t0xA3B7\n0x8235F735\t0xA3B8\n0x8235F736\t0xA3B9\n0x8235F737\t0xA3BA\n0x8235F738\t0xA3BB\n0x8235F739\t0xA3BC\n0x8235F830\t0xA3BD\n0x8235F831\t0xA3BE\n0x8235F832\t0xA3BF\n0x8235F833\t0xA3C0\n0x8235F834\t0xA3C1\n0x8235F835\t0xA3C2\n0x8235F836\t0xA3C3\n0x8235F837\t0xA3C4\n0x8235F838\t0xA3C5\n0x8235F839\t0xA3C6\n0x8235F930\t0xA3C7\n0x8235F931\t0xA3C8\n0x8235F932\t0xA3C9\n0x8235F933\t0xA3CA\n0x8235F934\t0xA3CB\n0x8235F935\t0xA3CC\n0x8235F936\t0xA3CD\n0x8235F937\t0xA3CE\n0x8235F938\t0xA3CF\n0x8235F939\t0xA3D0\n0x8235FA30\t0xA3D1\n0x8235FA31\t0xA3D2\n0x8235FA32\t0xA3D3\n0x8235FA33\t0xA3D4\n0x8235FA34\t0xA3D5\n0x8235FA35\t0xA3D6\n0x8235FA36\t0xA3D7\n0x8235FA37\t0xA3D8\n0x8235FA38\t0xA3D9\n0x8235FA39\t0xA3DA\n0x8235FB30\t0xA3DB\n0x8235FB31\t0xA3DC\n0x8235FB32\t0xA3DD\n0x8235FB33\t0xA3DE\n0x8235FB34\t0xA3DF\n0x8235FB35\t0xA3E0\n0x8235FB36\t0xA3E1\n0x8235FB37\t0xA3E2\n0x8235FB38\t0xA3E3\n0x8235FB39\t0xA3E4\n0x8235FC30\t0xA3E5\n0x8235FC31\t0xA3E6\n0x8235FC32\t0xA3E7\n0x8235FC33\t0xA3E8\n0x8235FC34\t0xA3E9\n0x8235FC35\t0xA3EA\n0x8235FC36\t0xA3EB\n0x8235FC37\t0xA3EC\n0x8235FC38\t0xA3ED\n0x8235FC39\t0xA3EE\n0x8235FD30\t0xA3EF\n0x8235FD31\t0xA3F0\n0x8235FD32\t0xA3F1\n0x8235FD33\t0xA3F2\n0x8235FD34\t0xA3F3\n0x8235FD35\t0xA3F4\n0x8235FD36\t0xA3F5\n0x8235FD37\t0xA3F6\n0x8235FD38\t0xA3F7\n0x8235FD39\t0xA3F8\n0x8235FE30\t0xA3F9\n0x8235FE31\t0xA3FA\n0x8235FE32\t0xA3FB\n0x8235FE33\t0xA3FC\n0x8235FE34\t0xA3FD\n0x8235FE35\t0xA3FE\n0x8235FE36\t0xA3FF\n0x8235FE37\t0xA400\n0x8235FE38\t0xA401\n0x8235FE39\t0xA402\n0x82368130\t0xA403\n0x82368131\t0xA404\n0x82368132\t0xA405\n0x82368133\t0xA406\n0x82368134\t0xA407\n0x82368135\t0xA408\n0x82368136\t0xA409\n0x82368137\t0xA40A\n0x82368138\t0xA40B\n0x82368139\t0xA40C\n0x82368230\t0xA40D\n0x82368231\t0xA40E\n0x82368232\t0xA40F\n0x82368233\t0xA410\n0x82368234\t0xA411\n0x82368235\t0xA412\n0x82368236\t0xA413\n0x82368237\t0xA414\n0x82368238\t0xA415\n0x82368239\t0xA416\n0x82368330\t0xA417\n0x82368331\t0xA418\n0x82368332\t0xA419\n0x82368333\t0xA41A\n0x82368334\t0xA41B\n0x82368335\t0xA41C\n0x82368336\t0xA41D\n0x82368337\t0xA41E\n0x82368338\t0xA41F\n0x82368339\t0xA420\n0x82368430\t0xA421\n0x82368431\t0xA422\n0x82368432\t0xA423\n0x82368433\t0xA424\n0x82368434\t0xA425\n0x82368435\t0xA426\n0x82368436\t0xA427\n0x82368437\t0xA428\n0x82368438\t0xA429\n0x82368439\t0xA42A\n0x82368530\t0xA42B\n0x82368531\t0xA42C\n0x82368532\t0xA42D\n0x82368533\t0xA42E\n0x82368534\t0xA42F\n0x82368535\t0xA430\n0x82368536\t0xA431\n0x82368537\t0xA432\n0x82368538\t0xA433\n0x82368539\t0xA434\n0x82368630\t0xA435\n0x82368631\t0xA436\n0x82368632\t0xA437\n0x82368633\t0xA438\n0x82368634\t0xA439\n0x82368635\t0xA43A\n0x82368636\t0xA43B\n0x82368637\t0xA43C\n0x82368638\t0xA43D\n0x82368639\t0xA43E\n0x82368730\t0xA43F\n0x82368731\t0xA440\n0x82368732\t0xA441\n0x82368733\t0xA442\n0x82368734\t0xA443\n0x82368735\t0xA444\n0x82368736\t0xA445\n0x82368737\t0xA446\n0x82368738\t0xA447\n0x82368739\t0xA448\n0x82368830\t0xA449\n0x82368831\t0xA44A\n0x82368832\t0xA44B\n0x82368833\t0xA44C\n0x82368834\t0xA44D\n0x82368835\t0xA44E\n0x82368836\t0xA44F\n0x82368837\t0xA450\n0x82368838\t0xA451\n0x82368839\t0xA452\n0x82368930\t0xA453\n0x82368931\t0xA454\n0x82368932\t0xA455\n0x82368933\t0xA456\n0x82368934\t0xA457\n0x82368935\t0xA458\n0x82368936\t0xA459\n0x82368937\t0xA45A\n0x82368938\t0xA45B\n0x82368939\t0xA45C\n0x82368A30\t0xA45D\n0x82368A31\t0xA45E\n0x82368A32\t0xA45F\n0x82368A33\t0xA460\n0x82368A34\t0xA461\n0x82368A35\t0xA462\n0x82368A36\t0xA463\n0x82368A37\t0xA464\n0x82368A38\t0xA465\n0x82368A39\t0xA466\n0x82368B30\t0xA467\n0x82368B31\t0xA468\n0x82368B32\t0xA469\n0x82368B33\t0xA46A\n0x82368B34\t0xA46B\n0x82368B35\t0xA46C\n0x82368B36\t0xA46D\n0x82368B37\t0xA46E\n0x82368B38\t0xA46F\n0x82368B39\t0xA470\n0x82368C30\t0xA471\n0x82368C31\t0xA472\n0x82368C32\t0xA473\n0x82368C33\t0xA474\n0x82368C34\t0xA475\n0x82368C35\t0xA476\n0x82368C36\t0xA477\n0x82368C37\t0xA478\n0x82368C38\t0xA479\n0x82368C39\t0xA47A\n0x82368D30\t0xA47B\n0x82368D31\t0xA47C\n0x82368D32\t0xA47D\n0x82368D33\t0xA47E\n0x82368D34\t0xA47F\n0x82368D35\t0xA480\n0x82368D36\t0xA481\n0x82368D37\t0xA482\n0x82368D38\t0xA483\n0x82368D39\t0xA484\n0x82368E30\t0xA485\n0x82368E31\t0xA486\n0x82368E32\t0xA487\n0x82368E33\t0xA488\n0x82368E34\t0xA489\n0x82368E35\t0xA48A\n0x82368E36\t0xA48B\n0x82368E37\t0xA48C\n0x82368E38\t0xA48D\n0x82368E39\t0xA48E\n0x82368F30\t0xA48F\n0x82368F31\t0xA490\n0x82368F32\t0xA491\n0x82368F33\t0xA492\n0x82368F34\t0xA493\n0x82368F35\t0xA494\n0x82368F36\t0xA495\n0x82368F37\t0xA496\n0x82368F38\t0xA497\n0x82368F39\t0xA498\n0x82369030\t0xA499\n0x82369031\t0xA49A\n0x82369032\t0xA49B\n0x82369033\t0xA49C\n0x82369034\t0xA49D\n0x82369035\t0xA49E\n0x82369036\t0xA49F\n0x82369037\t0xA4A0\n0x82369038\t0xA4A1\n0x82369039\t0xA4A2\n0x82369130\t0xA4A3\n0x82369131\t0xA4A4\n0x82369132\t0xA4A5\n0x82369133\t0xA4A6\n0x82369134\t0xA4A7\n0x82369135\t0xA4A8\n0x82369136\t0xA4A9\n0x82369137\t0xA4AA\n0x82369138\t0xA4AB\n0x82369139\t0xA4AC\n0x82369230\t0xA4AD\n0x82369231\t0xA4AE\n0x82369232\t0xA4AF\n0x82369233\t0xA4B0\n0x82369234\t0xA4B1\n0x82369235\t0xA4B2\n0x82369236\t0xA4B3\n0x82369237\t0xA4B4\n0x82369238\t0xA4B5\n0x82369239\t0xA4B6\n0x82369330\t0xA4B7\n0x82369331\t0xA4B8\n0x82369332\t0xA4B9\n0x82369333\t0xA4BA\n0x82369334\t0xA4BB\n0x82369335\t0xA4BC\n0x82369336\t0xA4BD\n0x82369337\t0xA4BE\n0x82369338\t0xA4BF\n0x82369339\t0xA4C0\n0x82369430\t0xA4C1\n0x82369431\t0xA4C2\n0x82369432\t0xA4C3\n0x82369433\t0xA4C4\n0x82369434\t0xA4C5\n0x82369435\t0xA4C6\n0x82369436\t0xA4C7\n0x82369437\t0xA4C8\n0x82369438\t0xA4C9\n0x82369439\t0xA4CA\n0x82369530\t0xA4CB\n0x82369531\t0xA4CC\n0x82369532\t0xA4CD\n0x82369533\t0xA4CE\n0x82369534\t0xA4CF\n0x82369535\t0xA4D0\n0x82369536\t0xA4D1\n0x82369537\t0xA4D2\n0x82369538\t0xA4D3\n0x82369539\t0xA4D4\n0x82369630\t0xA4D5\n0x82369631\t0xA4D6\n0x82369632\t0xA4D7\n0x82369633\t0xA4D8\n0x82369634\t0xA4D9\n0x82369635\t0xA4DA\n0x82369636\t0xA4DB\n0x82369637\t0xA4DC\n0x82369638\t0xA4DD\n0x82369639\t0xA4DE\n0x82369730\t0xA4DF\n0x82369731\t0xA4E0\n0x82369732\t0xA4E1\n0x82369733\t0xA4E2\n0x82369734\t0xA4E3\n0x82369735\t0xA4E4\n0x82369736\t0xA4E5\n0x82369737\t0xA4E6\n0x82369738\t0xA4E7\n0x82369739\t0xA4E8\n0x82369830\t0xA4E9\n0x82369831\t0xA4EA\n0x82369832\t0xA4EB\n0x82369833\t0xA4EC\n0x82369834\t0xA4ED\n0x82369835\t0xA4EE\n0x82369836\t0xA4EF\n0x82369837\t0xA4F0\n0x82369838\t0xA4F1\n0x82369839\t0xA4F2\n0x82369930\t0xA4F3\n0x82369931\t0xA4F4\n0x82369932\t0xA4F5\n0x82369933\t0xA4F6\n0x82369934\t0xA4F7\n0x82369935\t0xA4F8\n0x82369936\t0xA4F9\n0x82369937\t0xA4FA\n0x82369938\t0xA4FB\n0x82369939\t0xA4FC\n0x82369A30\t0xA4FD\n0x82369A31\t0xA4FE\n0x82369A32\t0xA4FF\n0x82369A33\t0xA500\n0x82369A34\t0xA501\n0x82369A35\t0xA502\n0x82369A36\t0xA503\n0x82369A37\t0xA504\n0x82369A38\t0xA505\n0x82369A39\t0xA506\n0x82369B30\t0xA507\n0x82369B31\t0xA508\n0x82369B32\t0xA509\n0x82369B33\t0xA50A\n0x82369B34\t0xA50B\n0x82369B35\t0xA50C\n0x82369B36\t0xA50D\n0x82369B37\t0xA50E\n0x82369B38\t0xA50F\n0x82369B39\t0xA510\n0x82369C30\t0xA511\n0x82369C31\t0xA512\n0x82369C32\t0xA513\n0x82369C33\t0xA514\n0x82369C34\t0xA515\n0x82369C35\t0xA516\n0x82369C36\t0xA517\n0x82369C37\t0xA518\n0x82369C38\t0xA519\n0x82369C39\t0xA51A\n0x82369D30\t0xA51B\n0x82369D31\t0xA51C\n0x82369D32\t0xA51D\n0x82369D33\t0xA51E\n0x82369D34\t0xA51F\n0x82369D35\t0xA520\n0x82369D36\t0xA521\n0x82369D37\t0xA522\n0x82369D38\t0xA523\n0x82369D39\t0xA524\n0x82369E30\t0xA525\n0x82369E31\t0xA526\n0x82369E32\t0xA527\n0x82369E33\t0xA528\n0x82369E34\t0xA529\n0x82369E35\t0xA52A\n0x82369E36\t0xA52B\n0x82369E37\t0xA52C\n0x82369E38\t0xA52D\n0x82369E39\t0xA52E\n0x82369F30\t0xA52F\n0x82369F31\t0xA530\n0x82369F32\t0xA531\n0x82369F33\t0xA532\n0x82369F34\t0xA533\n0x82369F35\t0xA534\n0x82369F36\t0xA535\n0x82369F37\t0xA536\n0x82369F38\t0xA537\n0x82369F39\t0xA538\n0x8236A030\t0xA539\n0x8236A031\t0xA53A\n0x8236A032\t0xA53B\n0x8236A033\t0xA53C\n0x8236A034\t0xA53D\n0x8236A035\t0xA53E\n0x8236A036\t0xA53F\n0x8236A037\t0xA540\n0x8236A038\t0xA541\n0x8236A039\t0xA542\n0x8236A130\t0xA543\n0x8236A131\t0xA544\n0x8236A132\t0xA545\n0x8236A133\t0xA546\n0x8236A134\t0xA547\n0x8236A135\t0xA548\n0x8236A136\t0xA549\n0x8236A137\t0xA54A\n0x8236A138\t0xA54B\n0x8236A139\t0xA54C\n0x8236A230\t0xA54D\n0x8236A231\t0xA54E\n0x8236A232\t0xA54F\n0x8236A233\t0xA550\n0x8236A234\t0xA551\n0x8236A235\t0xA552\n0x8236A236\t0xA553\n0x8236A237\t0xA554\n0x8236A238\t0xA555\n0x8236A239\t0xA556\n0x8236A330\t0xA557\n0x8236A331\t0xA558\n0x8236A332\t0xA559\n0x8236A333\t0xA55A\n0x8236A334\t0xA55B\n0x8236A335\t0xA55C\n0x8236A336\t0xA55D\n0x8236A337\t0xA55E\n0x8236A338\t0xA55F\n0x8236A339\t0xA560\n0x8236A430\t0xA561\n0x8236A431\t0xA562\n0x8236A432\t0xA563\n0x8236A433\t0xA564\n0x8236A434\t0xA565\n0x8236A435\t0xA566\n0x8236A436\t0xA567\n0x8236A437\t0xA568\n0x8236A438\t0xA569\n0x8236A439\t0xA56A\n0x8236A530\t0xA56B\n0x8236A531\t0xA56C\n0x8236A532\t0xA56D\n0x8236A533\t0xA56E\n0x8236A534\t0xA56F\n0x8236A535\t0xA570\n0x8236A536\t0xA571\n0x8236A537\t0xA572\n0x8236A538\t0xA573\n0x8236A539\t0xA574\n0x8236A630\t0xA575\n0x8236A631\t0xA576\n0x8236A632\t0xA577\n0x8236A633\t0xA578\n0x8236A634\t0xA579\n0x8236A635\t0xA57A\n0x8236A636\t0xA57B\n0x8236A637\t0xA57C\n0x8236A638\t0xA57D\n0x8236A639\t0xA57E\n0x8236A730\t0xA57F\n0x8236A731\t0xA580\n0x8236A732\t0xA581\n0x8236A733\t0xA582\n0x8236A734\t0xA583\n0x8236A735\t0xA584\n0x8236A736\t0xA585\n0x8236A737\t0xA586\n0x8236A738\t0xA587\n0x8236A739\t0xA588\n0x8236A830\t0xA589\n0x8236A831\t0xA58A\n0x8236A832\t0xA58B\n0x8236A833\t0xA58C\n0x8236A834\t0xA58D\n0x8236A835\t0xA58E\n0x8236A836\t0xA58F\n0x8236A837\t0xA590\n0x8236A838\t0xA591\n0x8236A839\t0xA592\n0x8236A930\t0xA593\n0x8236A931\t0xA594\n0x8236A932\t0xA595\n0x8236A933\t0xA596\n0x8236A934\t0xA597\n0x8236A935\t0xA598\n0x8236A936\t0xA599\n0x8236A937\t0xA59A\n0x8236A938\t0xA59B\n0x8236A939\t0xA59C\n0x8236AA30\t0xA59D\n0x8236AA31\t0xA59E\n0x8236AA32\t0xA59F\n0x8236AA33\t0xA5A0\n0x8236AA34\t0xA5A1\n0x8236AA35\t0xA5A2\n0x8236AA36\t0xA5A3\n0x8236AA37\t0xA5A4\n0x8236AA38\t0xA5A5\n0x8236AA39\t0xA5A6\n0x8236AB30\t0xA5A7\n0x8236AB31\t0xA5A8\n0x8236AB32\t0xA5A9\n0x8236AB33\t0xA5AA\n0x8236AB34\t0xA5AB\n0x8236AB35\t0xA5AC\n0x8236AB36\t0xA5AD\n0x8236AB37\t0xA5AE\n0x8236AB38\t0xA5AF\n0x8236AB39\t0xA5B0\n0x8236AC30\t0xA5B1\n0x8236AC31\t0xA5B2\n0x8236AC32\t0xA5B3\n0x8236AC33\t0xA5B4\n0x8236AC34\t0xA5B5\n0x8236AC35\t0xA5B6\n0x8236AC36\t0xA5B7\n0x8236AC37\t0xA5B8\n0x8236AC38\t0xA5B9\n0x8236AC39\t0xA5BA\n0x8236AD30\t0xA5BB\n0x8236AD31\t0xA5BC\n0x8236AD32\t0xA5BD\n0x8236AD33\t0xA5BE\n0x8236AD34\t0xA5BF\n0x8236AD35\t0xA5C0\n0x8236AD36\t0xA5C1\n0x8236AD37\t0xA5C2\n0x8236AD38\t0xA5C3\n0x8236AD39\t0xA5C4\n0x8236AE30\t0xA5C5\n0x8236AE31\t0xA5C6\n0x8236AE32\t0xA5C7\n0x8236AE33\t0xA5C8\n0x8236AE34\t0xA5C9\n0x8236AE35\t0xA5CA\n0x8236AE36\t0xA5CB\n0x8236AE37\t0xA5CC\n0x8236AE38\t0xA5CD\n0x8236AE39\t0xA5CE\n0x8236AF30\t0xA5CF\n0x8236AF31\t0xA5D0\n0x8236AF32\t0xA5D1\n0x8236AF33\t0xA5D2\n0x8236AF34\t0xA5D3\n0x8236AF35\t0xA5D4\n0x8236AF36\t0xA5D5\n0x8236AF37\t0xA5D6\n0x8236AF38\t0xA5D7\n0x8236AF39\t0xA5D8\n0x8236B030\t0xA5D9\n0x8236B031\t0xA5DA\n0x8236B032\t0xA5DB\n0x8236B033\t0xA5DC\n0x8236B034\t0xA5DD\n0x8236B035\t0xA5DE\n0x8236B036\t0xA5DF\n0x8236B037\t0xA5E0\n0x8236B038\t0xA5E1\n0x8236B039\t0xA5E2\n0x8236B130\t0xA5E3\n0x8236B131\t0xA5E4\n0x8236B132\t0xA5E5\n0x8236B133\t0xA5E6\n0x8236B134\t0xA5E7\n0x8236B135\t0xA5E8\n0x8236B136\t0xA5E9\n0x8236B137\t0xA5EA\n0x8236B138\t0xA5EB\n0x8236B139\t0xA5EC\n0x8236B230\t0xA5ED\n0x8236B231\t0xA5EE\n0x8236B232\t0xA5EF\n0x8236B233\t0xA5F0\n0x8236B234\t0xA5F1\n0x8236B235\t0xA5F2\n0x8236B236\t0xA5F3\n0x8236B237\t0xA5F4\n0x8236B238\t0xA5F5\n0x8236B239\t0xA5F6\n0x8236B330\t0xA5F7\n0x8236B331\t0xA5F8\n0x8236B332\t0xA5F9\n0x8236B333\t0xA5FA\n0x8236B334\t0xA5FB\n0x8236B335\t0xA5FC\n0x8236B336\t0xA5FD\n0x8236B337\t0xA5FE\n0x8236B338\t0xA5FF\n0x8236B339\t0xA600\n0x8236B430\t0xA601\n0x8236B431\t0xA602\n0x8236B432\t0xA603\n0x8236B433\t0xA604\n0x8236B434\t0xA605\n0x8236B435\t0xA606\n0x8236B436\t0xA607\n0x8236B437\t0xA608\n0x8236B438\t0xA609\n0x8236B439\t0xA60A\n0x8236B530\t0xA60B\n0x8236B531\t0xA60C\n0x8236B532\t0xA60D\n0x8236B533\t0xA60E\n0x8236B534\t0xA60F\n0x8236B535\t0xA610\n0x8236B536\t0xA611\n0x8236B537\t0xA612\n0x8236B538\t0xA613\n0x8236B539\t0xA614\n0x8236B630\t0xA615\n0x8236B631\t0xA616\n0x8236B632\t0xA617\n0x8236B633\t0xA618\n0x8236B634\t0xA619\n0x8236B635\t0xA61A\n0x8236B636\t0xA61B\n0x8236B637\t0xA61C\n0x8236B638\t0xA61D\n0x8236B639\t0xA61E\n0x8236B730\t0xA61F\n0x8236B731\t0xA620\n0x8236B732\t0xA621\n0x8236B733\t0xA622\n0x8236B734\t0xA623\n0x8236B735\t0xA624\n0x8236B736\t0xA625\n0x8236B737\t0xA626\n0x8236B738\t0xA627\n0x8236B739\t0xA628\n0x8236B830\t0xA629\n0x8236B831\t0xA62A\n0x8236B832\t0xA62B\n0x8236B833\t0xA62C\n0x8236B834\t0xA62D\n0x8236B835\t0xA62E\n0x8236B836\t0xA62F\n0x8236B837\t0xA630\n0x8236B838\t0xA631\n0x8236B839\t0xA632\n0x8236B930\t0xA633\n0x8236B931\t0xA634\n0x8236B932\t0xA635\n0x8236B933\t0xA636\n0x8236B934\t0xA637\n0x8236B935\t0xA638\n0x8236B936\t0xA639\n0x8236B937\t0xA63A\n0x8236B938\t0xA63B\n0x8236B939\t0xA63C\n0x8236BA30\t0xA63D\n0x8236BA31\t0xA63E\n0x8236BA32\t0xA63F\n0x8236BA33\t0xA640\n0x8236BA34\t0xA641\n0x8236BA35\t0xA642\n0x8236BA36\t0xA643\n0x8236BA37\t0xA644\n0x8236BA38\t0xA645\n0x8236BA39\t0xA646\n0x8236BB30\t0xA647\n0x8236BB31\t0xA648\n0x8236BB32\t0xA649\n0x8236BB33\t0xA64A\n0x8236BB34\t0xA64B\n0x8236BB35\t0xA64C\n0x8236BB36\t0xA64D\n0x8236BB37\t0xA64E\n0x8236BB38\t0xA64F\n0x8236BB39\t0xA650\n0x8236BC30\t0xA651\n0x8236BC31\t0xA652\n0x8236BC32\t0xA653\n0x8236BC33\t0xA654\n0x8236BC34\t0xA655\n0x8236BC35\t0xA656\n0x8236BC36\t0xA657\n0x8236BC37\t0xA658\n0x8236BC38\t0xA659\n0x8236BC39\t0xA65A\n0x8236BD30\t0xA65B\n0x8236BD31\t0xA65C\n0x8236BD32\t0xA65D\n0x8236BD33\t0xA65E\n0x8236BD34\t0xA65F\n0x8236BD35\t0xA660\n0x8236BD36\t0xA661\n0x8236BD37\t0xA662\n0x8236BD38\t0xA663\n0x8236BD39\t0xA664\n0x8236BE30\t0xA665\n0x8236BE31\t0xA666\n0x8236BE32\t0xA667\n0x8236BE33\t0xA668\n0x8236BE34\t0xA669\n0x8236BE35\t0xA66A\n0x8236BE36\t0xA66B\n0x8236BE37\t0xA66C\n0x8236BE38\t0xA66D\n0x8236BE39\t0xA66E\n0x8236BF30\t0xA66F\n0x8236BF31\t0xA670\n0x8236BF32\t0xA671\n0x8236BF33\t0xA672\n0x8236BF34\t0xA673\n0x8236BF35\t0xA674\n0x8236BF36\t0xA675\n0x8236BF37\t0xA676\n0x8236BF38\t0xA677\n0x8236BF39\t0xA678\n0x8236C030\t0xA679\n0x8236C031\t0xA67A\n0x8236C032\t0xA67B\n0x8236C033\t0xA67C\n0x8236C034\t0xA67D\n0x8236C035\t0xA67E\n0x8236C036\t0xA67F\n0x8236C037\t0xA680\n0x8236C038\t0xA681\n0x8236C039\t0xA682\n0x8236C130\t0xA683\n0x8236C131\t0xA684\n0x8236C132\t0xA685\n0x8236C133\t0xA686\n0x8236C134\t0xA687\n0x8236C135\t0xA688\n0x8236C136\t0xA689\n0x8236C137\t0xA68A\n0x8236C138\t0xA68B\n0x8236C139\t0xA68C\n0x8236C230\t0xA68D\n0x8236C231\t0xA68E\n0x8236C232\t0xA68F\n0x8236C233\t0xA690\n0x8236C234\t0xA691\n0x8236C235\t0xA692\n0x8236C236\t0xA693\n0x8236C237\t0xA694\n0x8236C238\t0xA695\n0x8236C239\t0xA696\n0x8236C330\t0xA697\n0x8236C331\t0xA698\n0x8236C332\t0xA699\n0x8236C333\t0xA69A\n0x8236C334\t0xA69B\n0x8236C335\t0xA69C\n0x8236C336\t0xA69D\n0x8236C337\t0xA69E\n0x8236C338\t0xA69F\n0x8236C339\t0xA6A0\n0x8236C430\t0xA6A1\n0x8236C431\t0xA6A2\n0x8236C432\t0xA6A3\n0x8236C433\t0xA6A4\n0x8236C434\t0xA6A5\n0x8236C435\t0xA6A6\n0x8236C436\t0xA6A7\n0x8236C437\t0xA6A8\n0x8236C438\t0xA6A9\n0x8236C439\t0xA6AA\n0x8236C530\t0xA6AB\n0x8236C531\t0xA6AC\n0x8236C532\t0xA6AD\n0x8236C533\t0xA6AE\n0x8236C534\t0xA6AF\n0x8236C535\t0xA6B0\n0x8236C536\t0xA6B1\n0x8236C537\t0xA6B2\n0x8236C538\t0xA6B3\n0x8236C539\t0xA6B4\n0x8236C630\t0xA6B5\n0x8236C631\t0xA6B6\n0x8236C632\t0xA6B7\n0x8236C633\t0xA6B8\n0x8236C634\t0xA6B9\n0x8236C635\t0xA6BA\n0x8236C636\t0xA6BB\n0x8236C637\t0xA6BC\n0x8236C638\t0xA6BD\n0x8236C639\t0xA6BE\n0x8236C730\t0xA6BF\n0x8236C731\t0xA6C0\n0x8236C732\t0xA6C1\n0x8236C733\t0xA6C2\n0x8236C734\t0xA6C3\n0x8236C735\t0xA6C4\n0x8236C736\t0xA6C5\n0x8236C737\t0xA6C6\n0x8236C738\t0xA6C7\n0x8236C739\t0xA6C8\n0x8236C830\t0xA6C9\n0x8236C831\t0xA6CA\n0x8236C832\t0xA6CB\n0x8236C833\t0xA6CC\n0x8236C834\t0xA6CD\n0x8236C835\t0xA6CE\n0x8236C836\t0xA6CF\n0x8236C837\t0xA6D0\n0x8236C838\t0xA6D1\n0x8236C839\t0xA6D2\n0x8236C930\t0xA6D3\n0x8236C931\t0xA6D4\n0x8236C932\t0xA6D5\n0x8236C933\t0xA6D6\n0x8236C934\t0xA6D7\n0x8236C935\t0xA6D8\n0x8236C936\t0xA6D9\n0x8236C937\t0xA6DA\n0x8236C938\t0xA6DB\n0x8236C939\t0xA6DC\n0x8236CA30\t0xA6DD\n0x8236CA31\t0xA6DE\n0x8236CA32\t0xA6DF\n0x8236CA33\t0xA6E0\n0x8236CA34\t0xA6E1\n0x8236CA35\t0xA6E2\n0x8236CA36\t0xA6E3\n0x8236CA37\t0xA6E4\n0x8236CA38\t0xA6E5\n0x8236CA39\t0xA6E6\n0x8236CB30\t0xA6E7\n0x8236CB31\t0xA6E8\n0x8236CB32\t0xA6E9\n0x8236CB33\t0xA6EA\n0x8236CB34\t0xA6EB\n0x8236CB35\t0xA6EC\n0x8236CB36\t0xA6ED\n0x8236CB37\t0xA6EE\n0x8236CB38\t0xA6EF\n0x8236CB39\t0xA6F0\n0x8236CC30\t0xA6F1\n0x8236CC31\t0xA6F2\n0x8236CC32\t0xA6F3\n0x8236CC33\t0xA6F4\n0x8236CC34\t0xA6F5\n0x8236CC35\t0xA6F6\n0x8236CC36\t0xA6F7\n0x8236CC37\t0xA6F8\n0x8236CC38\t0xA6F9\n0x8236CC39\t0xA6FA\n0x8236CD30\t0xA6FB\n0x8236CD31\t0xA6FC\n0x8236CD32\t0xA6FD\n0x8236CD33\t0xA6FE\n0x8236CD34\t0xA6FF\n0x8236CD35\t0xA700\n0x8236CD36\t0xA701\n0x8236CD37\t0xA702\n0x8236CD38\t0xA703\n0x8236CD39\t0xA704\n0x8236CE30\t0xA705\n0x8236CE31\t0xA706\n0x8236CE32\t0xA707\n0x8236CE33\t0xA708\n0x8236CE34\t0xA709\n0x8236CE35\t0xA70A\n0x8236CE36\t0xA70B\n0x8236CE37\t0xA70C\n0x8236CE38\t0xA70D\n0x8236CE39\t0xA70E\n0x8236CF30\t0xA70F\n0x8236CF31\t0xA710\n0x8236CF32\t0xA711\n0x8236CF33\t0xA712\n0x8236CF34\t0xA713\n0x8236CF35\t0xA714\n0x8236CF36\t0xA715\n0x8236CF37\t0xA716\n0x8236CF38\t0xA717\n0x8236CF39\t0xA718\n0x8236D030\t0xA719\n0x8236D031\t0xA71A\n0x8236D032\t0xA71B\n0x8236D033\t0xA71C\n0x8236D034\t0xA71D\n0x8236D035\t0xA71E\n0x8236D036\t0xA71F\n0x8236D037\t0xA720\n0x8236D038\t0xA721\n0x8236D039\t0xA722\n0x8236D130\t0xA723\n0x8236D131\t0xA724\n0x8236D132\t0xA725\n0x8236D133\t0xA726\n0x8236D134\t0xA727\n0x8236D135\t0xA728\n0x8236D136\t0xA729\n0x8236D137\t0xA72A\n0x8236D138\t0xA72B\n0x8236D139\t0xA72C\n0x8236D230\t0xA72D\n0x8236D231\t0xA72E\n0x8236D232\t0xA72F\n0x8236D233\t0xA730\n0x8236D234\t0xA731\n0x8236D235\t0xA732\n0x8236D236\t0xA733\n0x8236D237\t0xA734\n0x8236D238\t0xA735\n0x8236D239\t0xA736\n0x8236D330\t0xA737\n0x8236D331\t0xA738\n0x8236D332\t0xA739\n0x8236D333\t0xA73A\n0x8236D334\t0xA73B\n0x8236D335\t0xA73C\n0x8236D336\t0xA73D\n0x8236D337\t0xA73E\n0x8236D338\t0xA73F\n0x8236D339\t0xA740\n0x8236D430\t0xA741\n0x8236D431\t0xA742\n0x8236D432\t0xA743\n0x8236D433\t0xA744\n0x8236D434\t0xA745\n0x8236D435\t0xA746\n0x8236D436\t0xA747\n0x8236D437\t0xA748\n0x8236D438\t0xA749\n0x8236D439\t0xA74A\n0x8236D530\t0xA74B\n0x8236D531\t0xA74C\n0x8236D532\t0xA74D\n0x8236D533\t0xA74E\n0x8236D534\t0xA74F\n0x8236D535\t0xA750\n0x8236D536\t0xA751\n0x8236D537\t0xA752\n0x8236D538\t0xA753\n0x8236D539\t0xA754\n0x8236D630\t0xA755\n0x8236D631\t0xA756\n0x8236D632\t0xA757\n0x8236D633\t0xA758\n0x8236D634\t0xA759\n0x8236D635\t0xA75A\n0x8236D636\t0xA75B\n0x8236D637\t0xA75C\n0x8236D638\t0xA75D\n0x8236D639\t0xA75E\n0x8236D730\t0xA75F\n0x8236D731\t0xA760\n0x8236D732\t0xA761\n0x8236D733\t0xA762\n0x8236D734\t0xA763\n0x8236D735\t0xA764\n0x8236D736\t0xA765\n0x8236D737\t0xA766\n0x8236D738\t0xA767\n0x8236D739\t0xA768\n0x8236D830\t0xA769\n0x8236D831\t0xA76A\n0x8236D832\t0xA76B\n0x8236D833\t0xA76C\n0x8236D834\t0xA76D\n0x8236D835\t0xA76E\n0x8236D836\t0xA76F\n0x8236D837\t0xA770\n0x8236D838\t0xA771\n0x8236D839\t0xA772\n0x8236D930\t0xA773\n0x8236D931\t0xA774\n0x8236D932\t0xA775\n0x8236D933\t0xA776\n0x8236D934\t0xA777\n0x8236D935\t0xA778\n0x8236D936\t0xA779\n0x8236D937\t0xA77A\n0x8236D938\t0xA77B\n0x8236D939\t0xA77C\n0x8236DA30\t0xA77D\n0x8236DA31\t0xA77E\n0x8236DA32\t0xA77F\n0x8236DA33\t0xA780\n0x8236DA34\t0xA781\n0x8236DA35\t0xA782\n0x8236DA36\t0xA783\n0x8236DA37\t0xA784\n0x8236DA38\t0xA785\n0x8236DA39\t0xA786\n0x8236DB30\t0xA787\n0x8236DB31\t0xA788\n0x8236DB32\t0xA789\n0x8236DB33\t0xA78A\n0x8236DB34\t0xA78B\n0x8236DB35\t0xA78C\n0x8236DB36\t0xA78D\n0x8236DB37\t0xA78E\n0x8236DB38\t0xA78F\n0x8236DB39\t0xA790\n0x8236DC30\t0xA791\n0x8236DC31\t0xA792\n0x8236DC32\t0xA793\n0x8236DC33\t0xA794\n0x8236DC34\t0xA795\n0x8236DC35\t0xA796\n0x8236DC36\t0xA797\n0x8236DC37\t0xA798\n0x8236DC38\t0xA799\n0x8236DC39\t0xA79A\n0x8236DD30\t0xA79B\n0x8236DD31\t0xA79C\n0x8236DD32\t0xA79D\n0x8236DD33\t0xA79E\n0x8236DD34\t0xA79F\n0x8236DD35\t0xA7A0\n0x8236DD36\t0xA7A1\n0x8236DD37\t0xA7A2\n0x8236DD38\t0xA7A3\n0x8236DD39\t0xA7A4\n0x8236DE30\t0xA7A5\n0x8236DE31\t0xA7A6\n0x8236DE32\t0xA7A7\n0x8236DE33\t0xA7A8\n0x8236DE34\t0xA7A9\n0x8236DE35\t0xA7AA\n0x8236DE36\t0xA7AB\n0x8236DE37\t0xA7AC\n0x8236DE38\t0xA7AD\n0x8236DE39\t0xA7AE\n0x8236DF30\t0xA7AF\n0x8236DF31\t0xA7B0\n0x8236DF32\t0xA7B1\n0x8236DF33\t0xA7B2\n0x8236DF34\t0xA7B3\n0x8236DF35\t0xA7B4\n0x8236DF36\t0xA7B5\n0x8236DF37\t0xA7B6\n0x8236DF38\t0xA7B7\n0x8236DF39\t0xA7B8\n0x8236E030\t0xA7B9\n0x8236E031\t0xA7BA\n0x8236E032\t0xA7BB\n0x8236E033\t0xA7BC\n0x8236E034\t0xA7BD\n0x8236E035\t0xA7BE\n0x8236E036\t0xA7BF\n0x8236E037\t0xA7C0\n0x8236E038\t0xA7C1\n0x8236E039\t0xA7C2\n0x8236E130\t0xA7C3\n0x8236E131\t0xA7C4\n0x8236E132\t0xA7C5\n0x8236E133\t0xA7C6\n0x8236E134\t0xA7C7\n0x8236E135\t0xA7C8\n0x8236E136\t0xA7C9\n0x8236E137\t0xA7CA\n0x8236E138\t0xA7CB\n0x8236E139\t0xA7CC\n0x8236E230\t0xA7CD\n0x8236E231\t0xA7CE\n0x8236E232\t0xA7CF\n0x8236E233\t0xA7D0\n0x8236E234\t0xA7D1\n0x8236E235\t0xA7D2\n0x8236E236\t0xA7D3\n0x8236E237\t0xA7D4\n0x8236E238\t0xA7D5\n0x8236E239\t0xA7D6\n0x8236E330\t0xA7D7\n0x8236E331\t0xA7D8\n0x8236E332\t0xA7D9\n0x8236E333\t0xA7DA\n0x8236E334\t0xA7DB\n0x8236E335\t0xA7DC\n0x8236E336\t0xA7DD\n0x8236E337\t0xA7DE\n0x8236E338\t0xA7DF\n0x8236E339\t0xA7E0\n0x8236E430\t0xA7E1\n0x8236E431\t0xA7E2\n0x8236E432\t0xA7E3\n0x8236E433\t0xA7E4\n0x8236E434\t0xA7E5\n0x8236E435\t0xA7E6\n0x8236E436\t0xA7E7\n0x8236E437\t0xA7E8\n0x8236E438\t0xA7E9\n0x8236E439\t0xA7EA\n0x8236E530\t0xA7EB\n0x8236E531\t0xA7EC\n0x8236E532\t0xA7ED\n0x8236E533\t0xA7EE\n0x8236E534\t0xA7EF\n0x8236E535\t0xA7F0\n0x8236E536\t0xA7F1\n0x8236E537\t0xA7F2\n0x8236E538\t0xA7F3\n0x8236E539\t0xA7F4\n0x8236E630\t0xA7F5\n0x8236E631\t0xA7F6\n0x8236E632\t0xA7F7\n0x8236E633\t0xA7F8\n0x8236E634\t0xA7F9\n0x8236E635\t0xA7FA\n0x8236E636\t0xA7FB\n0x8236E637\t0xA7FC\n0x8236E638\t0xA7FD\n0x8236E639\t0xA7FE\n0x8236E730\t0xA7FF\n0x8236E731\t0xA800\n0x8236E732\t0xA801\n0x8236E733\t0xA802\n0x8236E734\t0xA803\n0x8236E735\t0xA804\n0x8236E736\t0xA805\n0x8236E737\t0xA806\n0x8236E738\t0xA807\n0x8236E739\t0xA808\n0x8236E830\t0xA809\n0x8236E831\t0xA80A\n0x8236E832\t0xA80B\n0x8236E833\t0xA80C\n0x8236E834\t0xA80D\n0x8236E835\t0xA80E\n0x8236E836\t0xA80F\n0x8236E837\t0xA810\n0x8236E838\t0xA811\n0x8236E839\t0xA812\n0x8236E930\t0xA813\n0x8236E931\t0xA814\n0x8236E932\t0xA815\n0x8236E933\t0xA816\n0x8236E934\t0xA817\n0x8236E935\t0xA818\n0x8236E936\t0xA819\n0x8236E937\t0xA81A\n0x8236E938\t0xA81B\n0x8236E939\t0xA81C\n0x8236EA30\t0xA81D\n0x8236EA31\t0xA81E\n0x8236EA32\t0xA81F\n0x8236EA33\t0xA820\n0x8236EA34\t0xA821\n0x8236EA35\t0xA822\n0x8236EA36\t0xA823\n0x8236EA37\t0xA824\n0x8236EA38\t0xA825\n0x8236EA39\t0xA826\n0x8236EB30\t0xA827\n0x8236EB31\t0xA828\n0x8236EB32\t0xA829\n0x8236EB33\t0xA82A\n0x8236EB34\t0xA82B\n0x8236EB35\t0xA82C\n0x8236EB36\t0xA82D\n0x8236EB37\t0xA82E\n0x8236EB38\t0xA82F\n0x8236EB39\t0xA830\n0x8236EC30\t0xA831\n0x8236EC31\t0xA832\n0x8236EC32\t0xA833\n0x8236EC33\t0xA834\n0x8236EC34\t0xA835\n0x8236EC35\t0xA836\n0x8236EC36\t0xA837\n0x8236EC37\t0xA838\n0x8236EC38\t0xA839\n0x8236EC39\t0xA83A\n0x8236ED30\t0xA83B\n0x8236ED31\t0xA83C\n0x8236ED32\t0xA83D\n0x8236ED33\t0xA83E\n0x8236ED34\t0xA83F\n0x8236ED35\t0xA840\n0x8236ED36\t0xA841\n0x8236ED37\t0xA842\n0x8236ED38\t0xA843\n0x8236ED39\t0xA844\n0x8236EE30\t0xA845\n0x8236EE31\t0xA846\n0x8236EE32\t0xA847\n0x8236EE33\t0xA848\n0x8236EE34\t0xA849\n0x8236EE35\t0xA84A\n0x8236EE36\t0xA84B\n0x8236EE37\t0xA84C\n0x8236EE38\t0xA84D\n0x8236EE39\t0xA84E\n0x8236EF30\t0xA84F\n0x8236EF31\t0xA850\n0x8236EF32\t0xA851\n0x8236EF33\t0xA852\n0x8236EF34\t0xA853\n0x8236EF35\t0xA854\n0x8236EF36\t0xA855\n0x8236EF37\t0xA856\n0x8236EF38\t0xA857\n0x8236EF39\t0xA858\n0x8236F030\t0xA859\n0x8236F031\t0xA85A\n0x8236F032\t0xA85B\n0x8236F033\t0xA85C\n0x8236F034\t0xA85D\n0x8236F035\t0xA85E\n0x8236F036\t0xA85F\n0x8236F037\t0xA860\n0x8236F038\t0xA861\n0x8236F039\t0xA862\n0x8236F130\t0xA863\n0x8236F131\t0xA864\n0x8236F132\t0xA865\n0x8236F133\t0xA866\n0x8236F134\t0xA867\n0x8236F135\t0xA868\n0x8236F136\t0xA869\n0x8236F137\t0xA86A\n0x8236F138\t0xA86B\n0x8236F139\t0xA86C\n0x8236F230\t0xA86D\n0x8236F231\t0xA86E\n0x8236F232\t0xA86F\n0x8236F233\t0xA870\n0x8236F234\t0xA871\n0x8236F235\t0xA872\n0x8236F236\t0xA873\n0x8236F237\t0xA874\n0x8236F238\t0xA875\n0x8236F239\t0xA876\n0x8236F330\t0xA877\n0x8236F331\t0xA878\n0x8236F332\t0xA879\n0x8236F333\t0xA87A\n0x8236F334\t0xA87B\n0x8236F335\t0xA87C\n0x8236F336\t0xA87D\n0x8236F337\t0xA87E\n0x8236F338\t0xA87F\n0x8236F339\t0xA880\n0x8236F430\t0xA881\n0x8236F431\t0xA882\n0x8236F432\t0xA883\n0x8236F433\t0xA884\n0x8236F434\t0xA885\n0x8236F435\t0xA886\n0x8236F436\t0xA887\n0x8236F437\t0xA888\n0x8236F438\t0xA889\n0x8236F439\t0xA88A\n0x8236F530\t0xA88B\n0x8236F531\t0xA88C\n0x8236F532\t0xA88D\n0x8236F533\t0xA88E\n0x8236F534\t0xA88F\n0x8236F535\t0xA890\n0x8236F536\t0xA891\n0x8236F537\t0xA892\n0x8236F538\t0xA893\n0x8236F539\t0xA894\n0x8236F630\t0xA895\n0x8236F631\t0xA896\n0x8236F632\t0xA897\n0x8236F633\t0xA898\n0x8236F634\t0xA899\n0x8236F635\t0xA89A\n0x8236F636\t0xA89B\n0x8236F637\t0xA89C\n0x8236F638\t0xA89D\n0x8236F639\t0xA89E\n0x8236F730\t0xA89F\n0x8236F731\t0xA8A0\n0x8236F732\t0xA8A1\n0x8236F733\t0xA8A2\n0x8236F734\t0xA8A3\n0x8236F735\t0xA8A4\n0x8236F736\t0xA8A5\n0x8236F737\t0xA8A6\n0x8236F738\t0xA8A7\n0x8236F739\t0xA8A8\n0x8236F830\t0xA8A9\n0x8236F831\t0xA8AA\n0x8236F832\t0xA8AB\n0x8236F833\t0xA8AC\n0x8236F834\t0xA8AD\n0x8236F835\t0xA8AE\n0x8236F836\t0xA8AF\n0x8236F837\t0xA8B0\n0x8236F838\t0xA8B1\n0x8236F839\t0xA8B2\n0x8236F930\t0xA8B3\n0x8236F931\t0xA8B4\n0x8236F932\t0xA8B5\n0x8236F933\t0xA8B6\n0x8236F934\t0xA8B7\n0x8236F935\t0xA8B8\n0x8236F936\t0xA8B9\n0x8236F937\t0xA8BA\n0x8236F938\t0xA8BB\n0x8236F939\t0xA8BC\n0x8236FA30\t0xA8BD\n0x8236FA31\t0xA8BE\n0x8236FA32\t0xA8BF\n0x8236FA33\t0xA8C0\n0x8236FA34\t0xA8C1\n0x8236FA35\t0xA8C2\n0x8236FA36\t0xA8C3\n0x8236FA37\t0xA8C4\n0x8236FA38\t0xA8C5\n0x8236FA39\t0xA8C6\n0x8236FB30\t0xA8C7\n0x8236FB31\t0xA8C8\n0x8236FB32\t0xA8C9\n0x8236FB33\t0xA8CA\n0x8236FB34\t0xA8CB\n0x8236FB35\t0xA8CC\n0x8236FB36\t0xA8CD\n0x8236FB37\t0xA8CE\n0x8236FB38\t0xA8CF\n0x8236FB39\t0xA8D0\n0x8236FC30\t0xA8D1\n0x8236FC31\t0xA8D2\n0x8236FC32\t0xA8D3\n0x8236FC33\t0xA8D4\n0x8236FC34\t0xA8D5\n0x8236FC35\t0xA8D6\n0x8236FC36\t0xA8D7\n0x8236FC37\t0xA8D8\n0x8236FC38\t0xA8D9\n0x8236FC39\t0xA8DA\n0x8236FD30\t0xA8DB\n0x8236FD31\t0xA8DC\n0x8236FD32\t0xA8DD\n0x8236FD33\t0xA8DE\n0x8236FD34\t0xA8DF\n0x8236FD35\t0xA8E0\n0x8236FD36\t0xA8E1\n0x8236FD37\t0xA8E2\n0x8236FD38\t0xA8E3\n0x8236FD39\t0xA8E4\n0x8236FE30\t0xA8E5\n0x8236FE31\t0xA8E6\n0x8236FE32\t0xA8E7\n0x8236FE33\t0xA8E8\n0x8236FE34\t0xA8E9\n0x8236FE35\t0xA8EA\n0x8236FE36\t0xA8EB\n0x8236FE37\t0xA8EC\n0x8236FE38\t0xA8ED\n0x8236FE39\t0xA8EE\n0x82378130\t0xA8EF\n0x82378131\t0xA8F0\n0x82378132\t0xA8F1\n0x82378133\t0xA8F2\n0x82378134\t0xA8F3\n0x82378135\t0xA8F4\n0x82378136\t0xA8F5\n0x82378137\t0xA8F6\n0x82378138\t0xA8F7\n0x82378139\t0xA8F8\n0x82378230\t0xA8F9\n0x82378231\t0xA8FA\n0x82378232\t0xA8FB\n0x82378233\t0xA8FC\n0x82378234\t0xA8FD\n0x82378235\t0xA8FE\n0x82378236\t0xA8FF\n0x82378237\t0xA900\n0x82378238\t0xA901\n0x82378239\t0xA902\n0x82378330\t0xA903\n0x82378331\t0xA904\n0x82378332\t0xA905\n0x82378333\t0xA906\n0x82378334\t0xA907\n0x82378335\t0xA908\n0x82378336\t0xA909\n0x82378337\t0xA90A\n0x82378338\t0xA90B\n0x82378339\t0xA90C\n0x82378430\t0xA90D\n0x82378431\t0xA90E\n0x82378432\t0xA90F\n0x82378433\t0xA910\n0x82378434\t0xA911\n0x82378435\t0xA912\n0x82378436\t0xA913\n0x82378437\t0xA914\n0x82378438\t0xA915\n0x82378439\t0xA916\n0x82378530\t0xA917\n0x82378531\t0xA918\n0x82378532\t0xA919\n0x82378533\t0xA91A\n0x82378534\t0xA91B\n0x82378535\t0xA91C\n0x82378536\t0xA91D\n0x82378537\t0xA91E\n0x82378538\t0xA91F\n0x82378539\t0xA920\n0x82378630\t0xA921\n0x82378631\t0xA922\n0x82378632\t0xA923\n0x82378633\t0xA924\n0x82378634\t0xA925\n0x82378635\t0xA926\n0x82378636\t0xA927\n0x82378637\t0xA928\n0x82378638\t0xA929\n0x82378639\t0xA92A\n0x82378730\t0xA92B\n0x82378731\t0xA92C\n0x82378732\t0xA92D\n0x82378733\t0xA92E\n0x82378734\t0xA92F\n0x82378735\t0xA930\n0x82378736\t0xA931\n0x82378737\t0xA932\n0x82378738\t0xA933\n0x82378739\t0xA934\n0x82378830\t0xA935\n0x82378831\t0xA936\n0x82378832\t0xA937\n0x82378833\t0xA938\n0x82378834\t0xA939\n0x82378835\t0xA93A\n0x82378836\t0xA93B\n0x82378837\t0xA93C\n0x82378838\t0xA93D\n0x82378839\t0xA93E\n0x82378930\t0xA93F\n0x82378931\t0xA940\n0x82378932\t0xA941\n0x82378933\t0xA942\n0x82378934\t0xA943\n0x82378935\t0xA944\n0x82378936\t0xA945\n0x82378937\t0xA946\n0x82378938\t0xA947\n0x82378939\t0xA948\n0x82378A30\t0xA949\n0x82378A31\t0xA94A\n0x82378A32\t0xA94B\n0x82378A33\t0xA94C\n0x82378A34\t0xA94D\n0x82378A35\t0xA94E\n0x82378A36\t0xA94F\n0x82378A37\t0xA950\n0x82378A38\t0xA951\n0x82378A39\t0xA952\n0x82378B30\t0xA953\n0x82378B31\t0xA954\n0x82378B32\t0xA955\n0x82378B33\t0xA956\n0x82378B34\t0xA957\n0x82378B35\t0xA958\n0x82378B36\t0xA959\n0x82378B37\t0xA95A\n0x82378B38\t0xA95B\n0x82378B39\t0xA95C\n0x82378C30\t0xA95D\n0x82378C31\t0xA95E\n0x82378C32\t0xA95F\n0x82378C33\t0xA960\n0x82378C34\t0xA961\n0x82378C35\t0xA962\n0x82378C36\t0xA963\n0x82378C37\t0xA964\n0x82378C38\t0xA965\n0x82378C39\t0xA966\n0x82378D30\t0xA967\n0x82378D31\t0xA968\n0x82378D32\t0xA969\n0x82378D33\t0xA96A\n0x82378D34\t0xA96B\n0x82378D35\t0xA96C\n0x82378D36\t0xA96D\n0x82378D37\t0xA96E\n0x82378D38\t0xA96F\n0x82378D39\t0xA970\n0x82378E30\t0xA971\n0x82378E31\t0xA972\n0x82378E32\t0xA973\n0x82378E33\t0xA974\n0x82378E34\t0xA975\n0x82378E35\t0xA976\n0x82378E36\t0xA977\n0x82378E37\t0xA978\n0x82378E38\t0xA979\n0x82378E39\t0xA97A\n0x82378F30\t0xA97B\n0x82378F31\t0xA97C\n0x82378F32\t0xA97D\n0x82378F33\t0xA97E\n0x82378F34\t0xA97F\n0x82378F35\t0xA980\n0x82378F36\t0xA981\n0x82378F37\t0xA982\n0x82378F38\t0xA983\n0x82378F39\t0xA984\n0x82379030\t0xA985\n0x82379031\t0xA986\n0x82379032\t0xA987\n0x82379033\t0xA988\n0x82379034\t0xA989\n0x82379035\t0xA98A\n0x82379036\t0xA98B\n0x82379037\t0xA98C\n0x82379038\t0xA98D\n0x82379039\t0xA98E\n0x82379130\t0xA98F\n0x82379131\t0xA990\n0x82379132\t0xA991\n0x82379133\t0xA992\n0x82379134\t0xA993\n0x82379135\t0xA994\n0x82379136\t0xA995\n0x82379137\t0xA996\n0x82379138\t0xA997\n0x82379139\t0xA998\n0x82379230\t0xA999\n0x82379231\t0xA99A\n0x82379232\t0xA99B\n0x82379233\t0xA99C\n0x82379234\t0xA99D\n0x82379235\t0xA99E\n0x82379236\t0xA99F\n0x82379237\t0xA9A0\n0x82379238\t0xA9A1\n0x82379239\t0xA9A2\n0x82379330\t0xA9A3\n0x82379331\t0xA9A4\n0x82379332\t0xA9A5\n0x82379333\t0xA9A6\n0x82379334\t0xA9A7\n0x82379335\t0xA9A8\n0x82379336\t0xA9A9\n0x82379337\t0xA9AA\n0x82379338\t0xA9AB\n0x82379339\t0xA9AC\n0x82379430\t0xA9AD\n0x82379431\t0xA9AE\n0x82379432\t0xA9AF\n0x82379433\t0xA9B0\n0x82379434\t0xA9B1\n0x82379435\t0xA9B2\n0x82379436\t0xA9B3\n0x82379437\t0xA9B4\n0x82379438\t0xA9B5\n0x82379439\t0xA9B6\n0x82379530\t0xA9B7\n0x82379531\t0xA9B8\n0x82379532\t0xA9B9\n0x82379533\t0xA9BA\n0x82379534\t0xA9BB\n0x82379535\t0xA9BC\n0x82379536\t0xA9BD\n0x82379537\t0xA9BE\n0x82379538\t0xA9BF\n0x82379539\t0xA9C0\n0x82379630\t0xA9C1\n0x82379631\t0xA9C2\n0x82379632\t0xA9C3\n0x82379633\t0xA9C4\n0x82379634\t0xA9C5\n0x82379635\t0xA9C6\n0x82379636\t0xA9C7\n0x82379637\t0xA9C8\n0x82379638\t0xA9C9\n0x82379639\t0xA9CA\n0x82379730\t0xA9CB\n0x82379731\t0xA9CC\n0x82379732\t0xA9CD\n0x82379733\t0xA9CE\n0x82379734\t0xA9CF\n0x82379735\t0xA9D0\n0x82379736\t0xA9D1\n0x82379737\t0xA9D2\n0x82379738\t0xA9D3\n0x82379739\t0xA9D4\n0x82379830\t0xA9D5\n0x82379831\t0xA9D6\n0x82379832\t0xA9D7\n0x82379833\t0xA9D8\n0x82379834\t0xA9D9\n0x82379835\t0xA9DA\n0x82379836\t0xA9DB\n0x82379837\t0xA9DC\n0x82379838\t0xA9DD\n0x82379839\t0xA9DE\n0x82379930\t0xA9DF\n0x82379931\t0xA9E0\n0x82379932\t0xA9E1\n0x82379933\t0xA9E2\n0x82379934\t0xA9E3\n0x82379935\t0xA9E4\n0x82379936\t0xA9E5\n0x82379937\t0xA9E6\n0x82379938\t0xA9E7\n0x82379939\t0xA9E8\n0x82379A30\t0xA9E9\n0x82379A31\t0xA9EA\n0x82379A32\t0xA9EB\n0x82379A33\t0xA9EC\n0x82379A34\t0xA9ED\n0x82379A35\t0xA9EE\n0x82379A36\t0xA9EF\n0x82379A37\t0xA9F0\n0x82379A38\t0xA9F1\n0x82379A39\t0xA9F2\n0x82379B30\t0xA9F3\n0x82379B31\t0xA9F4\n0x82379B32\t0xA9F5\n0x82379B33\t0xA9F6\n0x82379B34\t0xA9F7\n0x82379B35\t0xA9F8\n0x82379B36\t0xA9F9\n0x82379B37\t0xA9FA\n0x82379B38\t0xA9FB\n0x82379B39\t0xA9FC\n0x82379C30\t0xA9FD\n0x82379C31\t0xA9FE\n0x82379C32\t0xA9FF\n0x82379C33\t0xAA00\n0x82379C34\t0xAA01\n0x82379C35\t0xAA02\n0x82379C36\t0xAA03\n0x82379C37\t0xAA04\n0x82379C38\t0xAA05\n0x82379C39\t0xAA06\n0x82379D30\t0xAA07\n0x82379D31\t0xAA08\n0x82379D32\t0xAA09\n0x82379D33\t0xAA0A\n0x82379D34\t0xAA0B\n0x82379D35\t0xAA0C\n0x82379D36\t0xAA0D\n0x82379D37\t0xAA0E\n0x82379D38\t0xAA0F\n0x82379D39\t0xAA10\n0x82379E30\t0xAA11\n0x82379E31\t0xAA12\n0x82379E32\t0xAA13\n0x82379E33\t0xAA14\n0x82379E34\t0xAA15\n0x82379E35\t0xAA16\n0x82379E36\t0xAA17\n0x82379E37\t0xAA18\n0x82379E38\t0xAA19\n0x82379E39\t0xAA1A\n0x82379F30\t0xAA1B\n0x82379F31\t0xAA1C\n0x82379F32\t0xAA1D\n0x82379F33\t0xAA1E\n0x82379F34\t0xAA1F\n0x82379F35\t0xAA20\n0x82379F36\t0xAA21\n0x82379F37\t0xAA22\n0x82379F38\t0xAA23\n0x82379F39\t0xAA24\n0x8237A030\t0xAA25\n0x8237A031\t0xAA26\n0x8237A032\t0xAA27\n0x8237A033\t0xAA28\n0x8237A034\t0xAA29\n0x8237A035\t0xAA2A\n0x8237A036\t0xAA2B\n0x8237A037\t0xAA2C\n0x8237A038\t0xAA2D\n0x8237A039\t0xAA2E\n0x8237A130\t0xAA2F\n0x8237A131\t0xAA30\n0x8237A132\t0xAA31\n0x8237A133\t0xAA32\n0x8237A134\t0xAA33\n0x8237A135\t0xAA34\n0x8237A136\t0xAA35\n0x8237A137\t0xAA36\n0x8237A138\t0xAA37\n0x8237A139\t0xAA38\n0x8237A230\t0xAA39\n0x8237A231\t0xAA3A\n0x8237A232\t0xAA3B\n0x8237A233\t0xAA3C\n0x8237A234\t0xAA3D\n0x8237A235\t0xAA3E\n0x8237A236\t0xAA3F\n0x8237A237\t0xAA40\n0x8237A238\t0xAA41\n0x8237A239\t0xAA42\n0x8237A330\t0xAA43\n0x8237A331\t0xAA44\n0x8237A332\t0xAA45\n0x8237A333\t0xAA46\n0x8237A334\t0xAA47\n0x8237A335\t0xAA48\n0x8237A336\t0xAA49\n0x8237A337\t0xAA4A\n0x8237A338\t0xAA4B\n0x8237A339\t0xAA4C\n0x8237A430\t0xAA4D\n0x8237A431\t0xAA4E\n0x8237A432\t0xAA4F\n0x8237A433\t0xAA50\n0x8237A434\t0xAA51\n0x8237A435\t0xAA52\n0x8237A436\t0xAA53\n0x8237A437\t0xAA54\n0x8237A438\t0xAA55\n0x8237A439\t0xAA56\n0x8237A530\t0xAA57\n0x8237A531\t0xAA58\n0x8237A532\t0xAA59\n0x8237A533\t0xAA5A\n0x8237A534\t0xAA5B\n0x8237A535\t0xAA5C\n0x8237A536\t0xAA5D\n0x8237A537\t0xAA5E\n0x8237A538\t0xAA5F\n0x8237A539\t0xAA60\n0x8237A630\t0xAA61\n0x8237A631\t0xAA62\n0x8237A632\t0xAA63\n0x8237A633\t0xAA64\n0x8237A634\t0xAA65\n0x8237A635\t0xAA66\n0x8237A636\t0xAA67\n0x8237A637\t0xAA68\n0x8237A638\t0xAA69\n0x8237A639\t0xAA6A\n0x8237A730\t0xAA6B\n0x8237A731\t0xAA6C\n0x8237A732\t0xAA6D\n0x8237A733\t0xAA6E\n0x8237A734\t0xAA6F\n0x8237A735\t0xAA70\n0x8237A736\t0xAA71\n0x8237A737\t0xAA72\n0x8237A738\t0xAA73\n0x8237A739\t0xAA74\n0x8237A830\t0xAA75\n0x8237A831\t0xAA76\n0x8237A832\t0xAA77\n0x8237A833\t0xAA78\n0x8237A834\t0xAA79\n0x8237A835\t0xAA7A\n0x8237A836\t0xAA7B\n0x8237A837\t0xAA7C\n0x8237A838\t0xAA7D\n0x8237A839\t0xAA7E\n0x8237A930\t0xAA7F\n0x8237A931\t0xAA80\n0x8237A932\t0xAA81\n0x8237A933\t0xAA82\n0x8237A934\t0xAA83\n0x8237A935\t0xAA84\n0x8237A936\t0xAA85\n0x8237A937\t0xAA86\n0x8237A938\t0xAA87\n0x8237A939\t0xAA88\n0x8237AA30\t0xAA89\n0x8237AA31\t0xAA8A\n0x8237AA32\t0xAA8B\n0x8237AA33\t0xAA8C\n0x8237AA34\t0xAA8D\n0x8237AA35\t0xAA8E\n0x8237AA36\t0xAA8F\n0x8237AA37\t0xAA90\n0x8237AA38\t0xAA91\n0x8237AA39\t0xAA92\n0x8237AB30\t0xAA93\n0x8237AB31\t0xAA94\n0x8237AB32\t0xAA95\n0x8237AB33\t0xAA96\n0x8237AB34\t0xAA97\n0x8237AB35\t0xAA98\n0x8237AB36\t0xAA99\n0x8237AB37\t0xAA9A\n0x8237AB38\t0xAA9B\n0x8237AB39\t0xAA9C\n0x8237AC30\t0xAA9D\n0x8237AC31\t0xAA9E\n0x8237AC32\t0xAA9F\n0x8237AC33\t0xAAA0\n0x8237AC34\t0xAAA1\n0x8237AC35\t0xAAA2\n0x8237AC36\t0xAAA3\n0x8237AC37\t0xAAA4\n0x8237AC38\t0xAAA5\n0x8237AC39\t0xAAA6\n0x8237AD30\t0xAAA7\n0x8237AD31\t0xAAA8\n0x8237AD32\t0xAAA9\n0x8237AD33\t0xAAAA\n0x8237AD34\t0xAAAB\n0x8237AD35\t0xAAAC\n0x8237AD36\t0xAAAD\n0x8237AD37\t0xAAAE\n0x8237AD38\t0xAAAF\n0x8237AD39\t0xAAB0\n0x8237AE30\t0xAAB1\n0x8237AE31\t0xAAB2\n0x8237AE32\t0xAAB3\n0x8237AE33\t0xAAB4\n0x8237AE34\t0xAAB5\n0x8237AE35\t0xAAB6\n0x8237AE36\t0xAAB7\n0x8237AE37\t0xAAB8\n0x8237AE38\t0xAAB9\n0x8237AE39\t0xAABA\n0x8237AF30\t0xAABB\n0x8237AF31\t0xAABC\n0x8237AF32\t0xAABD\n0x8237AF33\t0xAABE\n0x8237AF34\t0xAABF\n0x8237AF35\t0xAAC0\n0x8237AF36\t0xAAC1\n0x8237AF37\t0xAAC2\n0x8237AF38\t0xAAC3\n0x8237AF39\t0xAAC4\n0x8237B030\t0xAAC5\n0x8237B031\t0xAAC6\n0x8237B032\t0xAAC7\n0x8237B033\t0xAAC8\n0x8237B034\t0xAAC9\n0x8237B035\t0xAACA\n0x8237B036\t0xAACB\n0x8237B037\t0xAACC\n0x8237B038\t0xAACD\n0x8237B039\t0xAACE\n0x8237B130\t0xAACF\n0x8237B131\t0xAAD0\n0x8237B132\t0xAAD1\n0x8237B133\t0xAAD2\n0x8237B134\t0xAAD3\n0x8237B135\t0xAAD4\n0x8237B136\t0xAAD5\n0x8237B137\t0xAAD6\n0x8237B138\t0xAAD7\n0x8237B139\t0xAAD8\n0x8237B230\t0xAAD9\n0x8237B231\t0xAADA\n0x8237B232\t0xAADB\n0x8237B233\t0xAADC\n0x8237B234\t0xAADD\n0x8237B235\t0xAADE\n0x8237B236\t0xAADF\n0x8237B237\t0xAAE0\n0x8237B238\t0xAAE1\n0x8237B239\t0xAAE2\n0x8237B330\t0xAAE3\n0x8237B331\t0xAAE4\n0x8237B332\t0xAAE5\n0x8237B333\t0xAAE6\n0x8237B334\t0xAAE7\n0x8237B335\t0xAAE8\n0x8237B336\t0xAAE9\n0x8237B337\t0xAAEA\n0x8237B338\t0xAAEB\n0x8237B339\t0xAAEC\n0x8237B430\t0xAAED\n0x8237B431\t0xAAEE\n0x8237B432\t0xAAEF\n0x8237B433\t0xAAF0\n0x8237B434\t0xAAF1\n0x8237B435\t0xAAF2\n0x8237B436\t0xAAF3\n0x8237B437\t0xAAF4\n0x8237B438\t0xAAF5\n0x8237B439\t0xAAF6\n0x8237B530\t0xAAF7\n0x8237B531\t0xAAF8\n0x8237B532\t0xAAF9\n0x8237B533\t0xAAFA\n0x8237B534\t0xAAFB\n0x8237B535\t0xAAFC\n0x8237B536\t0xAAFD\n0x8237B537\t0xAAFE\n0x8237B538\t0xAAFF\n0x8237B539\t0xAB00\n0x8237B630\t0xAB01\n0x8237B631\t0xAB02\n0x8237B632\t0xAB03\n0x8237B633\t0xAB04\n0x8237B634\t0xAB05\n0x8237B635\t0xAB06\n0x8237B636\t0xAB07\n0x8237B637\t0xAB08\n0x8237B638\t0xAB09\n0x8237B639\t0xAB0A\n0x8237B730\t0xAB0B\n0x8237B731\t0xAB0C\n0x8237B732\t0xAB0D\n0x8237B733\t0xAB0E\n0x8237B734\t0xAB0F\n0x8237B735\t0xAB10\n0x8237B736\t0xAB11\n0x8237B737\t0xAB12\n0x8237B738\t0xAB13\n0x8237B739\t0xAB14\n0x8237B830\t0xAB15\n0x8237B831\t0xAB16\n0x8237B832\t0xAB17\n0x8237B833\t0xAB18\n0x8237B834\t0xAB19\n0x8237B835\t0xAB1A\n0x8237B836\t0xAB1B\n0x8237B837\t0xAB1C\n0x8237B838\t0xAB1D\n0x8237B839\t0xAB1E\n0x8237B930\t0xAB1F\n0x8237B931\t0xAB20\n0x8237B932\t0xAB21\n0x8237B933\t0xAB22\n0x8237B934\t0xAB23\n0x8237B935\t0xAB24\n0x8237B936\t0xAB25\n0x8237B937\t0xAB26\n0x8237B938\t0xAB27\n0x8237B939\t0xAB28\n0x8237BA30\t0xAB29\n0x8237BA31\t0xAB2A\n0x8237BA32\t0xAB2B\n0x8237BA33\t0xAB2C\n0x8237BA34\t0xAB2D\n0x8237BA35\t0xAB2E\n0x8237BA36\t0xAB2F\n0x8237BA37\t0xAB30\n0x8237BA38\t0xAB31\n0x8237BA39\t0xAB32\n0x8237BB30\t0xAB33\n0x8237BB31\t0xAB34\n0x8237BB32\t0xAB35\n0x8237BB33\t0xAB36\n0x8237BB34\t0xAB37\n0x8237BB35\t0xAB38\n0x8237BB36\t0xAB39\n0x8237BB37\t0xAB3A\n0x8237BB38\t0xAB3B\n0x8237BB39\t0xAB3C\n0x8237BC30\t0xAB3D\n0x8237BC31\t0xAB3E\n0x8237BC32\t0xAB3F\n0x8237BC33\t0xAB40\n0x8237BC34\t0xAB41\n0x8237BC35\t0xAB42\n0x8237BC36\t0xAB43\n0x8237BC37\t0xAB44\n0x8237BC38\t0xAB45\n0x8237BC39\t0xAB46\n0x8237BD30\t0xAB47\n0x8237BD31\t0xAB48\n0x8237BD32\t0xAB49\n0x8237BD33\t0xAB4A\n0x8237BD34\t0xAB4B\n0x8237BD35\t0xAB4C\n0x8237BD36\t0xAB4D\n0x8237BD37\t0xAB4E\n0x8237BD38\t0xAB4F\n0x8237BD39\t0xAB50\n0x8237BE30\t0xAB51\n0x8237BE31\t0xAB52\n0x8237BE32\t0xAB53\n0x8237BE33\t0xAB54\n0x8237BE34\t0xAB55\n0x8237BE35\t0xAB56\n0x8237BE36\t0xAB57\n0x8237BE37\t0xAB58\n0x8237BE38\t0xAB59\n0x8237BE39\t0xAB5A\n0x8237BF30\t0xAB5B\n0x8237BF31\t0xAB5C\n0x8237BF32\t0xAB5D\n0x8237BF33\t0xAB5E\n0x8237BF34\t0xAB5F\n0x8237BF35\t0xAB60\n0x8237BF36\t0xAB61\n0x8237BF37\t0xAB62\n0x8237BF38\t0xAB63\n0x8237BF39\t0xAB64\n0x8237C030\t0xAB65\n0x8237C031\t0xAB66\n0x8237C032\t0xAB67\n0x8237C033\t0xAB68\n0x8237C034\t0xAB69\n0x8237C035\t0xAB6A\n0x8237C036\t0xAB6B\n0x8237C037\t0xAB6C\n0x8237C038\t0xAB6D\n0x8237C039\t0xAB6E\n0x8237C130\t0xAB6F\n0x8237C131\t0xAB70\n0x8237C132\t0xAB71\n0x8237C133\t0xAB72\n0x8237C134\t0xAB73\n0x8237C135\t0xAB74\n0x8237C136\t0xAB75\n0x8237C137\t0xAB76\n0x8237C138\t0xAB77\n0x8237C139\t0xAB78\n0x8237C230\t0xAB79\n0x8237C231\t0xAB7A\n0x8237C232\t0xAB7B\n0x8237C233\t0xAB7C\n0x8237C234\t0xAB7D\n0x8237C235\t0xAB7E\n0x8237C236\t0xAB7F\n0x8237C237\t0xAB80\n0x8237C238\t0xAB81\n0x8237C239\t0xAB82\n0x8237C330\t0xAB83\n0x8237C331\t0xAB84\n0x8237C332\t0xAB85\n0x8237C333\t0xAB86\n0x8237C334\t0xAB87\n0x8237C335\t0xAB88\n0x8237C336\t0xAB89\n0x8237C337\t0xAB8A\n0x8237C338\t0xAB8B\n0x8237C339\t0xAB8C\n0x8237C430\t0xAB8D\n0x8237C431\t0xAB8E\n0x8237C432\t0xAB8F\n0x8237C433\t0xAB90\n0x8237C434\t0xAB91\n0x8237C435\t0xAB92\n0x8237C436\t0xAB93\n0x8237C437\t0xAB94\n0x8237C438\t0xAB95\n0x8237C439\t0xAB96\n0x8237C530\t0xAB97\n0x8237C531\t0xAB98\n0x8237C532\t0xAB99\n0x8237C533\t0xAB9A\n0x8237C534\t0xAB9B\n0x8237C535\t0xAB9C\n0x8237C536\t0xAB9D\n0x8237C537\t0xAB9E\n0x8237C538\t0xAB9F\n0x8237C539\t0xABA0\n0x8237C630\t0xABA1\n0x8237C631\t0xABA2\n0x8237C632\t0xABA3\n0x8237C633\t0xABA4\n0x8237C634\t0xABA5\n0x8237C635\t0xABA6\n0x8237C636\t0xABA7\n0x8237C637\t0xABA8\n0x8237C638\t0xABA9\n0x8237C639\t0xABAA\n0x8237C730\t0xABAB\n0x8237C731\t0xABAC\n0x8237C732\t0xABAD\n0x8237C733\t0xABAE\n0x8237C734\t0xABAF\n0x8237C735\t0xABB0\n0x8237C736\t0xABB1\n0x8237C737\t0xABB2\n0x8237C738\t0xABB3\n0x8237C739\t0xABB4\n0x8237C830\t0xABB5\n0x8237C831\t0xABB6\n0x8237C832\t0xABB7\n0x8237C833\t0xABB8\n0x8237C834\t0xABB9\n0x8237C835\t0xABBA\n0x8237C836\t0xABBB\n0x8237C837\t0xABBC\n0x8237C838\t0xABBD\n0x8237C839\t0xABBE\n0x8237C930\t0xABBF\n0x8237C931\t0xABC0\n0x8237C932\t0xABC1\n0x8237C933\t0xABC2\n0x8237C934\t0xABC3\n0x8237C935\t0xABC4\n0x8237C936\t0xABC5\n0x8237C937\t0xABC6\n0x8237C938\t0xABC7\n0x8237C939\t0xABC8\n0x8237CA30\t0xABC9\n0x8237CA31\t0xABCA\n0x8237CA32\t0xABCB\n0x8237CA33\t0xABCC\n0x8237CA34\t0xABCD\n0x8237CA35\t0xABCE\n0x8237CA36\t0xABCF\n0x8237CA37\t0xABD0\n0x8237CA38\t0xABD1\n0x8237CA39\t0xABD2\n0x8237CB30\t0xABD3\n0x8237CB31\t0xABD4\n0x8237CB32\t0xABD5\n0x8237CB33\t0xABD6\n0x8237CB34\t0xABD7\n0x8237CB35\t0xABD8\n0x8237CB36\t0xABD9\n0x8237CB37\t0xABDA\n0x8237CB38\t0xABDB\n0x8237CB39\t0xABDC\n0x8237CC30\t0xABDD\n0x8237CC31\t0xABDE\n0x8237CC32\t0xABDF\n0x8237CC33\t0xABE0\n0x8237CC34\t0xABE1\n0x8237CC35\t0xABE2\n0x8237CC36\t0xABE3\n0x8237CC37\t0xABE4\n0x8237CC38\t0xABE5\n0x8237CC39\t0xABE6\n0x8237CD30\t0xABE7\n0x8237CD31\t0xABE8\n0x8237CD32\t0xABE9\n0x8237CD33\t0xABEA\n0x8237CD34\t0xABEB\n0x8237CD35\t0xABEC\n0x8237CD36\t0xABED\n0x8237CD37\t0xABEE\n0x8237CD38\t0xABEF\n0x8237CD39\t0xABF0\n0x8237CE30\t0xABF1\n0x8237CE31\t0xABF2\n0x8237CE32\t0xABF3\n0x8237CE33\t0xABF4\n0x8237CE34\t0xABF5\n0x8237CE35\t0xABF6\n0x8237CE36\t0xABF7\n0x8237CE37\t0xABF8\n0x8237CE38\t0xABF9\n0x8237CE39\t0xABFA\n0x8237CF30\t0xABFB\n0x8237CF31\t0xABFC\n0x8237CF32\t0xABFD\n0x8237CF33\t0xABFE\n0x8237CF34\t0xABFF\n0x8237CF35\t0xAC00\n0x8237CF36\t0xAC01\n0x8237CF37\t0xAC02\n0x8237CF38\t0xAC03\n0x8237CF39\t0xAC04\n0x8237D030\t0xAC05\n0x8237D031\t0xAC06\n0x8237D032\t0xAC07\n0x8237D033\t0xAC08\n0x8237D034\t0xAC09\n0x8237D035\t0xAC0A\n0x8237D036\t0xAC0B\n0x8237D037\t0xAC0C\n0x8237D038\t0xAC0D\n0x8237D039\t0xAC0E\n0x8237D130\t0xAC0F\n0x8237D131\t0xAC10\n0x8237D132\t0xAC11\n0x8237D133\t0xAC12\n0x8237D134\t0xAC13\n0x8237D135\t0xAC14\n0x8237D136\t0xAC15\n0x8237D137\t0xAC16\n0x8237D138\t0xAC17\n0x8237D139\t0xAC18\n0x8237D230\t0xAC19\n0x8237D231\t0xAC1A\n0x8237D232\t0xAC1B\n0x8237D233\t0xAC1C\n0x8237D234\t0xAC1D\n0x8237D235\t0xAC1E\n0x8237D236\t0xAC1F\n0x8237D237\t0xAC20\n0x8237D238\t0xAC21\n0x8237D239\t0xAC22\n0x8237D330\t0xAC23\n0x8237D331\t0xAC24\n0x8237D332\t0xAC25\n0x8237D333\t0xAC26\n0x8237D334\t0xAC27\n0x8237D335\t0xAC28\n0x8237D336\t0xAC29\n0x8237D337\t0xAC2A\n0x8237D338\t0xAC2B\n0x8237D339\t0xAC2C\n0x8237D430\t0xAC2D\n0x8237D431\t0xAC2E\n0x8237D432\t0xAC2F\n0x8237D433\t0xAC30\n0x8237D434\t0xAC31\n0x8237D435\t0xAC32\n0x8237D436\t0xAC33\n0x8237D437\t0xAC34\n0x8237D438\t0xAC35\n0x8237D439\t0xAC36\n0x8237D530\t0xAC37\n0x8237D531\t0xAC38\n0x8237D532\t0xAC39\n0x8237D533\t0xAC3A\n0x8237D534\t0xAC3B\n0x8237D535\t0xAC3C\n0x8237D536\t0xAC3D\n0x8237D537\t0xAC3E\n0x8237D538\t0xAC3F\n0x8237D539\t0xAC40\n0x8237D630\t0xAC41\n0x8237D631\t0xAC42\n0x8237D632\t0xAC43\n0x8237D633\t0xAC44\n0x8237D634\t0xAC45\n0x8237D635\t0xAC46\n0x8237D636\t0xAC47\n0x8237D637\t0xAC48\n0x8237D638\t0xAC49\n0x8237D639\t0xAC4A\n0x8237D730\t0xAC4B\n0x8237D731\t0xAC4C\n0x8237D732\t0xAC4D\n0x8237D733\t0xAC4E\n0x8237D734\t0xAC4F\n0x8237D735\t0xAC50\n0x8237D736\t0xAC51\n0x8237D737\t0xAC52\n0x8237D738\t0xAC53\n0x8237D739\t0xAC54\n0x8237D830\t0xAC55\n0x8237D831\t0xAC56\n0x8237D832\t0xAC57\n0x8237D833\t0xAC58\n0x8237D834\t0xAC59\n0x8237D835\t0xAC5A\n0x8237D836\t0xAC5B\n0x8237D837\t0xAC5C\n0x8237D838\t0xAC5D\n0x8237D839\t0xAC5E\n0x8237D930\t0xAC5F\n0x8237D931\t0xAC60\n0x8237D932\t0xAC61\n0x8237D933\t0xAC62\n0x8237D934\t0xAC63\n0x8237D935\t0xAC64\n0x8237D936\t0xAC65\n0x8237D937\t0xAC66\n0x8237D938\t0xAC67\n0x8237D939\t0xAC68\n0x8237DA30\t0xAC69\n0x8237DA31\t0xAC6A\n0x8237DA32\t0xAC6B\n0x8237DA33\t0xAC6C\n0x8237DA34\t0xAC6D\n0x8237DA35\t0xAC6E\n0x8237DA36\t0xAC6F\n0x8237DA37\t0xAC70\n0x8237DA38\t0xAC71\n0x8237DA39\t0xAC72\n0x8237DB30\t0xAC73\n0x8237DB31\t0xAC74\n0x8237DB32\t0xAC75\n0x8237DB33\t0xAC76\n0x8237DB34\t0xAC77\n0x8237DB35\t0xAC78\n0x8237DB36\t0xAC79\n0x8237DB37\t0xAC7A\n0x8237DB38\t0xAC7B\n0x8237DB39\t0xAC7C\n0x8237DC30\t0xAC7D\n0x8237DC31\t0xAC7E\n0x8237DC32\t0xAC7F\n0x8237DC33\t0xAC80\n0x8237DC34\t0xAC81\n0x8237DC35\t0xAC82\n0x8237DC36\t0xAC83\n0x8237DC37\t0xAC84\n0x8237DC38\t0xAC85\n0x8237DC39\t0xAC86\n0x8237DD30\t0xAC87\n0x8237DD31\t0xAC88\n0x8237DD32\t0xAC89\n0x8237DD33\t0xAC8A\n0x8237DD34\t0xAC8B\n0x8237DD35\t0xAC8C\n0x8237DD36\t0xAC8D\n0x8237DD37\t0xAC8E\n0x8237DD38\t0xAC8F\n0x8237DD39\t0xAC90\n0x8237DE30\t0xAC91\n0x8237DE31\t0xAC92\n0x8237DE32\t0xAC93\n0x8237DE33\t0xAC94\n0x8237DE34\t0xAC95\n0x8237DE35\t0xAC96\n0x8237DE36\t0xAC97\n0x8237DE37\t0xAC98\n0x8237DE38\t0xAC99\n0x8237DE39\t0xAC9A\n0x8237DF30\t0xAC9B\n0x8237DF31\t0xAC9C\n0x8237DF32\t0xAC9D\n0x8237DF33\t0xAC9E\n0x8237DF34\t0xAC9F\n0x8237DF35\t0xACA0\n0x8237DF36\t0xACA1\n0x8237DF37\t0xACA2\n0x8237DF38\t0xACA3\n0x8237DF39\t0xACA4\n0x8237E030\t0xACA5\n0x8237E031\t0xACA6\n0x8237E032\t0xACA7\n0x8237E033\t0xACA8\n0x8237E034\t0xACA9\n0x8237E035\t0xACAA\n0x8237E036\t0xACAB\n0x8237E037\t0xACAC\n0x8237E038\t0xACAD\n0x8237E039\t0xACAE\n0x8237E130\t0xACAF\n0x8237E131\t0xACB0\n0x8237E132\t0xACB1\n0x8237E133\t0xACB2\n0x8237E134\t0xACB3\n0x8237E135\t0xACB4\n0x8237E136\t0xACB5\n0x8237E137\t0xACB6\n0x8237E138\t0xACB7\n0x8237E139\t0xACB8\n0x8237E230\t0xACB9\n0x8237E231\t0xACBA\n0x8237E232\t0xACBB\n0x8237E233\t0xACBC\n0x8237E234\t0xACBD\n0x8237E235\t0xACBE\n0x8237E236\t0xACBF\n0x8237E237\t0xACC0\n0x8237E238\t0xACC1\n0x8237E239\t0xACC2\n0x8237E330\t0xACC3\n0x8237E331\t0xACC4\n0x8237E332\t0xACC5\n0x8237E333\t0xACC6\n0x8237E334\t0xACC7\n0x8237E335\t0xACC8\n0x8237E336\t0xACC9\n0x8237E337\t0xACCA\n0x8237E338\t0xACCB\n0x8237E339\t0xACCC\n0x8237E430\t0xACCD\n0x8237E431\t0xACCE\n0x8237E432\t0xACCF\n0x8237E433\t0xACD0\n0x8237E434\t0xACD1\n0x8237E435\t0xACD2\n0x8237E436\t0xACD3\n0x8237E437\t0xACD4\n0x8237E438\t0xACD5\n0x8237E439\t0xACD6\n0x8237E530\t0xACD7\n0x8237E531\t0xACD8\n0x8237E532\t0xACD9\n0x8237E533\t0xACDA\n0x8237E534\t0xACDB\n0x8237E535\t0xACDC\n0x8237E536\t0xACDD\n0x8237E537\t0xACDE\n0x8237E538\t0xACDF\n0x8237E539\t0xACE0\n0x8237E630\t0xACE1\n0x8237E631\t0xACE2\n0x8237E632\t0xACE3\n0x8237E633\t0xACE4\n0x8237E634\t0xACE5\n0x8237E635\t0xACE6\n0x8237E636\t0xACE7\n0x8237E637\t0xACE8\n0x8237E638\t0xACE9\n0x8237E639\t0xACEA\n0x8237E730\t0xACEB\n0x8237E731\t0xACEC\n0x8237E732\t0xACED\n0x8237E733\t0xACEE\n0x8237E734\t0xACEF\n0x8237E735\t0xACF0\n0x8237E736\t0xACF1\n0x8237E737\t0xACF2\n0x8237E738\t0xACF3\n0x8237E739\t0xACF4\n0x8237E830\t0xACF5\n0x8237E831\t0xACF6\n0x8237E832\t0xACF7\n0x8237E833\t0xACF8\n0x8237E834\t0xACF9\n0x8237E835\t0xACFA\n0x8237E836\t0xACFB\n0x8237E837\t0xACFC\n0x8237E838\t0xACFD\n0x8237E839\t0xACFE\n0x8237E930\t0xACFF\n0x8237E931\t0xAD00\n0x8237E932\t0xAD01\n0x8237E933\t0xAD02\n0x8237E934\t0xAD03\n0x8237E935\t0xAD04\n0x8237E936\t0xAD05\n0x8237E937\t0xAD06\n0x8237E938\t0xAD07\n0x8237E939\t0xAD08\n0x8237EA30\t0xAD09\n0x8237EA31\t0xAD0A\n0x8237EA32\t0xAD0B\n0x8237EA33\t0xAD0C\n0x8237EA34\t0xAD0D\n0x8237EA35\t0xAD0E\n0x8237EA36\t0xAD0F\n0x8237EA37\t0xAD10\n0x8237EA38\t0xAD11\n0x8237EA39\t0xAD12\n0x8237EB30\t0xAD13\n0x8237EB31\t0xAD14\n0x8237EB32\t0xAD15\n0x8237EB33\t0xAD16\n0x8237EB34\t0xAD17\n0x8237EB35\t0xAD18\n0x8237EB36\t0xAD19\n0x8237EB37\t0xAD1A\n0x8237EB38\t0xAD1B\n0x8237EB39\t0xAD1C\n0x8237EC30\t0xAD1D\n0x8237EC31\t0xAD1E\n0x8237EC32\t0xAD1F\n0x8237EC33\t0xAD20\n0x8237EC34\t0xAD21\n0x8237EC35\t0xAD22\n0x8237EC36\t0xAD23\n0x8237EC37\t0xAD24\n0x8237EC38\t0xAD25\n0x8237EC39\t0xAD26\n0x8237ED30\t0xAD27\n0x8237ED31\t0xAD28\n0x8237ED32\t0xAD29\n0x8237ED33\t0xAD2A\n0x8237ED34\t0xAD2B\n0x8237ED35\t0xAD2C\n0x8237ED36\t0xAD2D\n0x8237ED37\t0xAD2E\n0x8237ED38\t0xAD2F\n0x8237ED39\t0xAD30\n0x8237EE30\t0xAD31\n0x8237EE31\t0xAD32\n0x8237EE32\t0xAD33\n0x8237EE33\t0xAD34\n0x8237EE34\t0xAD35\n0x8237EE35\t0xAD36\n0x8237EE36\t0xAD37\n0x8237EE37\t0xAD38\n0x8237EE38\t0xAD39\n0x8237EE39\t0xAD3A\n0x8237EF30\t0xAD3B\n0x8237EF31\t0xAD3C\n0x8237EF32\t0xAD3D\n0x8237EF33\t0xAD3E\n0x8237EF34\t0xAD3F\n0x8237EF35\t0xAD40\n0x8237EF36\t0xAD41\n0x8237EF37\t0xAD42\n0x8237EF38\t0xAD43\n0x8237EF39\t0xAD44\n0x8237F030\t0xAD45\n0x8237F031\t0xAD46\n0x8237F032\t0xAD47\n0x8237F033\t0xAD48\n0x8237F034\t0xAD49\n0x8237F035\t0xAD4A\n0x8237F036\t0xAD4B\n0x8237F037\t0xAD4C\n0x8237F038\t0xAD4D\n0x8237F039\t0xAD4E\n0x8237F130\t0xAD4F\n0x8237F131\t0xAD50\n0x8237F132\t0xAD51\n0x8237F133\t0xAD52\n0x8237F134\t0xAD53\n0x8237F135\t0xAD54\n0x8237F136\t0xAD55\n0x8237F137\t0xAD56\n0x8237F138\t0xAD57\n0x8237F139\t0xAD58\n0x8237F230\t0xAD59\n0x8237F231\t0xAD5A\n0x8237F232\t0xAD5B\n0x8237F233\t0xAD5C\n0x8237F234\t0xAD5D\n0x8237F235\t0xAD5E\n0x8237F236\t0xAD5F\n0x8237F237\t0xAD60\n0x8237F238\t0xAD61\n0x8237F239\t0xAD62\n0x8237F330\t0xAD63\n0x8237F331\t0xAD64\n0x8237F332\t0xAD65\n0x8237F333\t0xAD66\n0x8237F334\t0xAD67\n0x8237F335\t0xAD68\n0x8237F336\t0xAD69\n0x8237F337\t0xAD6A\n0x8237F338\t0xAD6B\n0x8237F339\t0xAD6C\n0x8237F430\t0xAD6D\n0x8237F431\t0xAD6E\n0x8237F432\t0xAD6F\n0x8237F433\t0xAD70\n0x8237F434\t0xAD71\n0x8237F435\t0xAD72\n0x8237F436\t0xAD73\n0x8237F437\t0xAD74\n0x8237F438\t0xAD75\n0x8237F439\t0xAD76\n0x8237F530\t0xAD77\n0x8237F531\t0xAD78\n0x8237F532\t0xAD79\n0x8237F533\t0xAD7A\n0x8237F534\t0xAD7B\n0x8237F535\t0xAD7C\n0x8237F536\t0xAD7D\n0x8237F537\t0xAD7E\n0x8237F538\t0xAD7F\n0x8237F539\t0xAD80\n0x8237F630\t0xAD81\n0x8237F631\t0xAD82\n0x8237F632\t0xAD83\n0x8237F633\t0xAD84\n0x8237F634\t0xAD85\n0x8237F635\t0xAD86\n0x8237F636\t0xAD87\n0x8237F637\t0xAD88\n0x8237F638\t0xAD89\n0x8237F639\t0xAD8A\n0x8237F730\t0xAD8B\n0x8237F731\t0xAD8C\n0x8237F732\t0xAD8D\n0x8237F733\t0xAD8E\n0x8237F734\t0xAD8F\n0x8237F735\t0xAD90\n0x8237F736\t0xAD91\n0x8237F737\t0xAD92\n0x8237F738\t0xAD93\n0x8237F739\t0xAD94\n0x8237F830\t0xAD95\n0x8237F831\t0xAD96\n0x8237F832\t0xAD97\n0x8237F833\t0xAD98\n0x8237F834\t0xAD99\n0x8237F835\t0xAD9A\n0x8237F836\t0xAD9B\n0x8237F837\t0xAD9C\n0x8237F838\t0xAD9D\n0x8237F839\t0xAD9E\n0x8237F930\t0xAD9F\n0x8237F931\t0xADA0\n0x8237F932\t0xADA1\n0x8237F933\t0xADA2\n0x8237F934\t0xADA3\n0x8237F935\t0xADA4\n0x8237F936\t0xADA5\n0x8237F937\t0xADA6\n0x8237F938\t0xADA7\n0x8237F939\t0xADA8\n0x8237FA30\t0xADA9\n0x8237FA31\t0xADAA\n0x8237FA32\t0xADAB\n0x8237FA33\t0xADAC\n0x8237FA34\t0xADAD\n0x8237FA35\t0xADAE\n0x8237FA36\t0xADAF\n0x8237FA37\t0xADB0\n0x8237FA38\t0xADB1\n0x8237FA39\t0xADB2\n0x8237FB30\t0xADB3\n0x8237FB31\t0xADB4\n0x8237FB32\t0xADB5\n0x8237FB33\t0xADB6\n0x8237FB34\t0xADB7\n0x8237FB35\t0xADB8\n0x8237FB36\t0xADB9\n0x8237FB37\t0xADBA\n0x8237FB38\t0xADBB\n0x8237FB39\t0xADBC\n0x8237FC30\t0xADBD\n0x8237FC31\t0xADBE\n0x8237FC32\t0xADBF\n0x8237FC33\t0xADC0\n0x8237FC34\t0xADC1\n0x8237FC35\t0xADC2\n0x8237FC36\t0xADC3\n0x8237FC37\t0xADC4\n0x8237FC38\t0xADC5\n0x8237FC39\t0xADC6\n0x8237FD30\t0xADC7\n0x8237FD31\t0xADC8\n0x8237FD32\t0xADC9\n0x8237FD33\t0xADCA\n0x8237FD34\t0xADCB\n0x8237FD35\t0xADCC\n0x8237FD36\t0xADCD\n0x8237FD37\t0xADCE\n0x8237FD38\t0xADCF\n0x8237FD39\t0xADD0\n0x8237FE30\t0xADD1\n0x8237FE31\t0xADD2\n0x8237FE32\t0xADD3\n0x8237FE33\t0xADD4\n0x8237FE34\t0xADD5\n0x8237FE35\t0xADD6\n0x8237FE36\t0xADD7\n0x8237FE37\t0xADD8\n0x8237FE38\t0xADD9\n0x8237FE39\t0xADDA\n0x82388130\t0xADDB\n0x82388131\t0xADDC\n0x82388132\t0xADDD\n0x82388133\t0xADDE\n0x82388134\t0xADDF\n0x82388135\t0xADE0\n0x82388136\t0xADE1\n0x82388137\t0xADE2\n0x82388138\t0xADE3\n0x82388139\t0xADE4\n0x82388230\t0xADE5\n0x82388231\t0xADE6\n0x82388232\t0xADE7\n0x82388233\t0xADE8\n0x82388234\t0xADE9\n0x82388235\t0xADEA\n0x82388236\t0xADEB\n0x82388237\t0xADEC\n0x82388238\t0xADED\n0x82388239\t0xADEE\n0x82388330\t0xADEF\n0x82388331\t0xADF0\n0x82388332\t0xADF1\n0x82388333\t0xADF2\n0x82388334\t0xADF3\n0x82388335\t0xADF4\n0x82388336\t0xADF5\n0x82388337\t0xADF6\n0x82388338\t0xADF7\n0x82388339\t0xADF8\n0x82388430\t0xADF9\n0x82388431\t0xADFA\n0x82388432\t0xADFB\n0x82388433\t0xADFC\n0x82388434\t0xADFD\n0x82388435\t0xADFE\n0x82388436\t0xADFF\n0x82388437\t0xAE00\n0x82388438\t0xAE01\n0x82388439\t0xAE02\n0x82388530\t0xAE03\n0x82388531\t0xAE04\n0x82388532\t0xAE05\n0x82388533\t0xAE06\n0x82388534\t0xAE07\n0x82388535\t0xAE08\n0x82388536\t0xAE09\n0x82388537\t0xAE0A\n0x82388538\t0xAE0B\n0x82388539\t0xAE0C\n0x82388630\t0xAE0D\n0x82388631\t0xAE0E\n0x82388632\t0xAE0F\n0x82388633\t0xAE10\n0x82388634\t0xAE11\n0x82388635\t0xAE12\n0x82388636\t0xAE13\n0x82388637\t0xAE14\n0x82388638\t0xAE15\n0x82388639\t0xAE16\n0x82388730\t0xAE17\n0x82388731\t0xAE18\n0x82388732\t0xAE19\n0x82388733\t0xAE1A\n0x82388734\t0xAE1B\n0x82388735\t0xAE1C\n0x82388736\t0xAE1D\n0x82388737\t0xAE1E\n0x82388738\t0xAE1F\n0x82388739\t0xAE20\n0x82388830\t0xAE21\n0x82388831\t0xAE22\n0x82388832\t0xAE23\n0x82388833\t0xAE24\n0x82388834\t0xAE25\n0x82388835\t0xAE26\n0x82388836\t0xAE27\n0x82388837\t0xAE28\n0x82388838\t0xAE29\n0x82388839\t0xAE2A\n0x82388930\t0xAE2B\n0x82388931\t0xAE2C\n0x82388932\t0xAE2D\n0x82388933\t0xAE2E\n0x82388934\t0xAE2F\n0x82388935\t0xAE30\n0x82388936\t0xAE31\n0x82388937\t0xAE32\n0x82388938\t0xAE33\n0x82388939\t0xAE34\n0x82388A30\t0xAE35\n0x82388A31\t0xAE36\n0x82388A32\t0xAE37\n0x82388A33\t0xAE38\n0x82388A34\t0xAE39\n0x82388A35\t0xAE3A\n0x82388A36\t0xAE3B\n0x82388A37\t0xAE3C\n0x82388A38\t0xAE3D\n0x82388A39\t0xAE3E\n0x82388B30\t0xAE3F\n0x82388B31\t0xAE40\n0x82388B32\t0xAE41\n0x82388B33\t0xAE42\n0x82388B34\t0xAE43\n0x82388B35\t0xAE44\n0x82388B36\t0xAE45\n0x82388B37\t0xAE46\n0x82388B38\t0xAE47\n0x82388B39\t0xAE48\n0x82388C30\t0xAE49\n0x82388C31\t0xAE4A\n0x82388C32\t0xAE4B\n0x82388C33\t0xAE4C\n0x82388C34\t0xAE4D\n0x82388C35\t0xAE4E\n0x82388C36\t0xAE4F\n0x82388C37\t0xAE50\n0x82388C38\t0xAE51\n0x82388C39\t0xAE52\n0x82388D30\t0xAE53\n0x82388D31\t0xAE54\n0x82388D32\t0xAE55\n0x82388D33\t0xAE56\n0x82388D34\t0xAE57\n0x82388D35\t0xAE58\n0x82388D36\t0xAE59\n0x82388D37\t0xAE5A\n0x82388D38\t0xAE5B\n0x82388D39\t0xAE5C\n0x82388E30\t0xAE5D\n0x82388E31\t0xAE5E\n0x82388E32\t0xAE5F\n0x82388E33\t0xAE60\n0x82388E34\t0xAE61\n0x82388E35\t0xAE62\n0x82388E36\t0xAE63\n0x82388E37\t0xAE64\n0x82388E38\t0xAE65\n0x82388E39\t0xAE66\n0x82388F30\t0xAE67\n0x82388F31\t0xAE68\n0x82388F32\t0xAE69\n0x82388F33\t0xAE6A\n0x82388F34\t0xAE6B\n0x82388F35\t0xAE6C\n0x82388F36\t0xAE6D\n0x82388F37\t0xAE6E\n0x82388F38\t0xAE6F\n0x82388F39\t0xAE70\n0x82389030\t0xAE71\n0x82389031\t0xAE72\n0x82389032\t0xAE73\n0x82389033\t0xAE74\n0x82389034\t0xAE75\n0x82389035\t0xAE76\n0x82389036\t0xAE77\n0x82389037\t0xAE78\n0x82389038\t0xAE79\n0x82389039\t0xAE7A\n0x82389130\t0xAE7B\n0x82389131\t0xAE7C\n0x82389132\t0xAE7D\n0x82389133\t0xAE7E\n0x82389134\t0xAE7F\n0x82389135\t0xAE80\n0x82389136\t0xAE81\n0x82389137\t0xAE82\n0x82389138\t0xAE83\n0x82389139\t0xAE84\n0x82389230\t0xAE85\n0x82389231\t0xAE86\n0x82389232\t0xAE87\n0x82389233\t0xAE88\n0x82389234\t0xAE89\n0x82389235\t0xAE8A\n0x82389236\t0xAE8B\n0x82389237\t0xAE8C\n0x82389238\t0xAE8D\n0x82389239\t0xAE8E\n0x82389330\t0xAE8F\n0x82389331\t0xAE90\n0x82389332\t0xAE91\n0x82389333\t0xAE92\n0x82389334\t0xAE93\n0x82389335\t0xAE94\n0x82389336\t0xAE95\n0x82389337\t0xAE96\n0x82389338\t0xAE97\n0x82389339\t0xAE98\n0x82389430\t0xAE99\n0x82389431\t0xAE9A\n0x82389432\t0xAE9B\n0x82389433\t0xAE9C\n0x82389434\t0xAE9D\n0x82389435\t0xAE9E\n0x82389436\t0xAE9F\n0x82389437\t0xAEA0\n0x82389438\t0xAEA1\n0x82389439\t0xAEA2\n0x82389530\t0xAEA3\n0x82389531\t0xAEA4\n0x82389532\t0xAEA5\n0x82389533\t0xAEA6\n0x82389534\t0xAEA7\n0x82389535\t0xAEA8\n0x82389536\t0xAEA9\n0x82389537\t0xAEAA\n0x82389538\t0xAEAB\n0x82389539\t0xAEAC\n0x82389630\t0xAEAD\n0x82389631\t0xAEAE\n0x82389632\t0xAEAF\n0x82389633\t0xAEB0\n0x82389634\t0xAEB1\n0x82389635\t0xAEB2\n0x82389636\t0xAEB3\n0x82389637\t0xAEB4\n0x82389638\t0xAEB5\n0x82389639\t0xAEB6\n0x82389730\t0xAEB7\n0x82389731\t0xAEB8\n0x82389732\t0xAEB9\n0x82389733\t0xAEBA\n0x82389734\t0xAEBB\n0x82389735\t0xAEBC\n0x82389736\t0xAEBD\n0x82389737\t0xAEBE\n0x82389738\t0xAEBF\n0x82389739\t0xAEC0\n0x82389830\t0xAEC1\n0x82389831\t0xAEC2\n0x82389832\t0xAEC3\n0x82389833\t0xAEC4\n0x82389834\t0xAEC5\n0x82389835\t0xAEC6\n0x82389836\t0xAEC7\n0x82389837\t0xAEC8\n0x82389838\t0xAEC9\n0x82389839\t0xAECA\n0x82389930\t0xAECB\n0x82389931\t0xAECC\n0x82389932\t0xAECD\n0x82389933\t0xAECE\n0x82389934\t0xAECF\n0x82389935\t0xAED0\n0x82389936\t0xAED1\n0x82389937\t0xAED2\n0x82389938\t0xAED3\n0x82389939\t0xAED4\n0x82389A30\t0xAED5\n0x82389A31\t0xAED6\n0x82389A32\t0xAED7\n0x82389A33\t0xAED8\n0x82389A34\t0xAED9\n0x82389A35\t0xAEDA\n0x82389A36\t0xAEDB\n0x82389A37\t0xAEDC\n0x82389A38\t0xAEDD\n0x82389A39\t0xAEDE\n0x82389B30\t0xAEDF\n0x82389B31\t0xAEE0\n0x82389B32\t0xAEE1\n0x82389B33\t0xAEE2\n0x82389B34\t0xAEE3\n0x82389B35\t0xAEE4\n0x82389B36\t0xAEE5\n0x82389B37\t0xAEE6\n0x82389B38\t0xAEE7\n0x82389B39\t0xAEE8\n0x82389C30\t0xAEE9\n0x82389C31\t0xAEEA\n0x82389C32\t0xAEEB\n0x82389C33\t0xAEEC\n0x82389C34\t0xAEED\n0x82389C35\t0xAEEE\n0x82389C36\t0xAEEF\n0x82389C37\t0xAEF0\n0x82389C38\t0xAEF1\n0x82389C39\t0xAEF2\n0x82389D30\t0xAEF3\n0x82389D31\t0xAEF4\n0x82389D32\t0xAEF5\n0x82389D33\t0xAEF6\n0x82389D34\t0xAEF7\n0x82389D35\t0xAEF8\n0x82389D36\t0xAEF9\n0x82389D37\t0xAEFA\n0x82389D38\t0xAEFB\n0x82389D39\t0xAEFC\n0x82389E30\t0xAEFD\n0x82389E31\t0xAEFE\n0x82389E32\t0xAEFF\n0x82389E33\t0xAF00\n0x82389E34\t0xAF01\n0x82389E35\t0xAF02\n0x82389E36\t0xAF03\n0x82389E37\t0xAF04\n0x82389E38\t0xAF05\n0x82389E39\t0xAF06\n0x82389F30\t0xAF07\n0x82389F31\t0xAF08\n0x82389F32\t0xAF09\n0x82389F33\t0xAF0A\n0x82389F34\t0xAF0B\n0x82389F35\t0xAF0C\n0x82389F36\t0xAF0D\n0x82389F37\t0xAF0E\n0x82389F38\t0xAF0F\n0x82389F39\t0xAF10\n0x8238A030\t0xAF11\n0x8238A031\t0xAF12\n0x8238A032\t0xAF13\n0x8238A033\t0xAF14\n0x8238A034\t0xAF15\n0x8238A035\t0xAF16\n0x8238A036\t0xAF17\n0x8238A037\t0xAF18\n0x8238A038\t0xAF19\n0x8238A039\t0xAF1A\n0x8238A130\t0xAF1B\n0x8238A131\t0xAF1C\n0x8238A132\t0xAF1D\n0x8238A133\t0xAF1E\n0x8238A134\t0xAF1F\n0x8238A135\t0xAF20\n0x8238A136\t0xAF21\n0x8238A137\t0xAF22\n0x8238A138\t0xAF23\n0x8238A139\t0xAF24\n0x8238A230\t0xAF25\n0x8238A231\t0xAF26\n0x8238A232\t0xAF27\n0x8238A233\t0xAF28\n0x8238A234\t0xAF29\n0x8238A235\t0xAF2A\n0x8238A236\t0xAF2B\n0x8238A237\t0xAF2C\n0x8238A238\t0xAF2D\n0x8238A239\t0xAF2E\n0x8238A330\t0xAF2F\n0x8238A331\t0xAF30\n0x8238A332\t0xAF31\n0x8238A333\t0xAF32\n0x8238A334\t0xAF33\n0x8238A335\t0xAF34\n0x8238A336\t0xAF35\n0x8238A337\t0xAF36\n0x8238A338\t0xAF37\n0x8238A339\t0xAF38\n0x8238A430\t0xAF39\n0x8238A431\t0xAF3A\n0x8238A432\t0xAF3B\n0x8238A433\t0xAF3C\n0x8238A434\t0xAF3D\n0x8238A435\t0xAF3E\n0x8238A436\t0xAF3F\n0x8238A437\t0xAF40\n0x8238A438\t0xAF41\n0x8238A439\t0xAF42\n0x8238A530\t0xAF43\n0x8238A531\t0xAF44\n0x8238A532\t0xAF45\n0x8238A533\t0xAF46\n0x8238A534\t0xAF47\n0x8238A535\t0xAF48\n0x8238A536\t0xAF49\n0x8238A537\t0xAF4A\n0x8238A538\t0xAF4B\n0x8238A539\t0xAF4C\n0x8238A630\t0xAF4D\n0x8238A631\t0xAF4E\n0x8238A632\t0xAF4F\n0x8238A633\t0xAF50\n0x8238A634\t0xAF51\n0x8238A635\t0xAF52\n0x8238A636\t0xAF53\n0x8238A637\t0xAF54\n0x8238A638\t0xAF55\n0x8238A639\t0xAF56\n0x8238A730\t0xAF57\n0x8238A731\t0xAF58\n0x8238A732\t0xAF59\n0x8238A733\t0xAF5A\n0x8238A734\t0xAF5B\n0x8238A735\t0xAF5C\n0x8238A736\t0xAF5D\n0x8238A737\t0xAF5E\n0x8238A738\t0xAF5F\n0x8238A739\t0xAF60\n0x8238A830\t0xAF61\n0x8238A831\t0xAF62\n0x8238A832\t0xAF63\n0x8238A833\t0xAF64\n0x8238A834\t0xAF65\n0x8238A835\t0xAF66\n0x8238A836\t0xAF67\n0x8238A837\t0xAF68\n0x8238A838\t0xAF69\n0x8238A839\t0xAF6A\n0x8238A930\t0xAF6B\n0x8238A931\t0xAF6C\n0x8238A932\t0xAF6D\n0x8238A933\t0xAF6E\n0x8238A934\t0xAF6F\n0x8238A935\t0xAF70\n0x8238A936\t0xAF71\n0x8238A937\t0xAF72\n0x8238A938\t0xAF73\n0x8238A939\t0xAF74\n0x8238AA30\t0xAF75\n0x8238AA31\t0xAF76\n0x8238AA32\t0xAF77\n0x8238AA33\t0xAF78\n0x8238AA34\t0xAF79\n0x8238AA35\t0xAF7A\n0x8238AA36\t0xAF7B\n0x8238AA37\t0xAF7C\n0x8238AA38\t0xAF7D\n0x8238AA39\t0xAF7E\n0x8238AB30\t0xAF7F\n0x8238AB31\t0xAF80\n0x8238AB32\t0xAF81\n0x8238AB33\t0xAF82\n0x8238AB34\t0xAF83\n0x8238AB35\t0xAF84\n0x8238AB36\t0xAF85\n0x8238AB37\t0xAF86\n0x8238AB38\t0xAF87\n0x8238AB39\t0xAF88\n0x8238AC30\t0xAF89\n0x8238AC31\t0xAF8A\n0x8238AC32\t0xAF8B\n0x8238AC33\t0xAF8C\n0x8238AC34\t0xAF8D\n0x8238AC35\t0xAF8E\n0x8238AC36\t0xAF8F\n0x8238AC37\t0xAF90\n0x8238AC38\t0xAF91\n0x8238AC39\t0xAF92\n0x8238AD30\t0xAF93\n0x8238AD31\t0xAF94\n0x8238AD32\t0xAF95\n0x8238AD33\t0xAF96\n0x8238AD34\t0xAF97\n0x8238AD35\t0xAF98\n0x8238AD36\t0xAF99\n0x8238AD37\t0xAF9A\n0x8238AD38\t0xAF9B\n0x8238AD39\t0xAF9C\n0x8238AE30\t0xAF9D\n0x8238AE31\t0xAF9E\n0x8238AE32\t0xAF9F\n0x8238AE33\t0xAFA0\n0x8238AE34\t0xAFA1\n0x8238AE35\t0xAFA2\n0x8238AE36\t0xAFA3\n0x8238AE37\t0xAFA4\n0x8238AE38\t0xAFA5\n0x8238AE39\t0xAFA6\n0x8238AF30\t0xAFA7\n0x8238AF31\t0xAFA8\n0x8238AF32\t0xAFA9\n0x8238AF33\t0xAFAA\n0x8238AF34\t0xAFAB\n0x8238AF35\t0xAFAC\n0x8238AF36\t0xAFAD\n0x8238AF37\t0xAFAE\n0x8238AF38\t0xAFAF\n0x8238AF39\t0xAFB0\n0x8238B030\t0xAFB1\n0x8238B031\t0xAFB2\n0x8238B032\t0xAFB3\n0x8238B033\t0xAFB4\n0x8238B034\t0xAFB5\n0x8238B035\t0xAFB6\n0x8238B036\t0xAFB7\n0x8238B037\t0xAFB8\n0x8238B038\t0xAFB9\n0x8238B039\t0xAFBA\n0x8238B130\t0xAFBB\n0x8238B131\t0xAFBC\n0x8238B132\t0xAFBD\n0x8238B133\t0xAFBE\n0x8238B134\t0xAFBF\n0x8238B135\t0xAFC0\n0x8238B136\t0xAFC1\n0x8238B137\t0xAFC2\n0x8238B138\t0xAFC3\n0x8238B139\t0xAFC4\n0x8238B230\t0xAFC5\n0x8238B231\t0xAFC6\n0x8238B232\t0xAFC7\n0x8238B233\t0xAFC8\n0x8238B234\t0xAFC9\n0x8238B235\t0xAFCA\n0x8238B236\t0xAFCB\n0x8238B237\t0xAFCC\n0x8238B238\t0xAFCD\n0x8238B239\t0xAFCE\n0x8238B330\t0xAFCF\n0x8238B331\t0xAFD0\n0x8238B332\t0xAFD1\n0x8238B333\t0xAFD2\n0x8238B334\t0xAFD3\n0x8238B335\t0xAFD4\n0x8238B336\t0xAFD5\n0x8238B337\t0xAFD6\n0x8238B338\t0xAFD7\n0x8238B339\t0xAFD8\n0x8238B430\t0xAFD9\n0x8238B431\t0xAFDA\n0x8238B432\t0xAFDB\n0x8238B433\t0xAFDC\n0x8238B434\t0xAFDD\n0x8238B435\t0xAFDE\n0x8238B436\t0xAFDF\n0x8238B437\t0xAFE0\n0x8238B438\t0xAFE1\n0x8238B439\t0xAFE2\n0x8238B530\t0xAFE3\n0x8238B531\t0xAFE4\n0x8238B532\t0xAFE5\n0x8238B533\t0xAFE6\n0x8238B534\t0xAFE7\n0x8238B535\t0xAFE8\n0x8238B536\t0xAFE9\n0x8238B537\t0xAFEA\n0x8238B538\t0xAFEB\n0x8238B539\t0xAFEC\n0x8238B630\t0xAFED\n0x8238B631\t0xAFEE\n0x8238B632\t0xAFEF\n0x8238B633\t0xAFF0\n0x8238B634\t0xAFF1\n0x8238B635\t0xAFF2\n0x8238B636\t0xAFF3\n0x8238B637\t0xAFF4\n0x8238B638\t0xAFF5\n0x8238B639\t0xAFF6\n0x8238B730\t0xAFF7\n0x8238B731\t0xAFF8\n0x8238B732\t0xAFF9\n0x8238B733\t0xAFFA\n0x8238B734\t0xAFFB\n0x8238B735\t0xAFFC\n0x8238B736\t0xAFFD\n0x8238B737\t0xAFFE\n0x8238B738\t0xAFFF\n0x8238B739\t0xB000\n0x8238B830\t0xB001\n0x8238B831\t0xB002\n0x8238B832\t0xB003\n0x8238B833\t0xB004\n0x8238B834\t0xB005\n0x8238B835\t0xB006\n0x8238B836\t0xB007\n0x8238B837\t0xB008\n0x8238B838\t0xB009\n0x8238B839\t0xB00A\n0x8238B930\t0xB00B\n0x8238B931\t0xB00C\n0x8238B932\t0xB00D\n0x8238B933\t0xB00E\n0x8238B934\t0xB00F\n0x8238B935\t0xB010\n0x8238B936\t0xB011\n0x8238B937\t0xB012\n0x8238B938\t0xB013\n0x8238B939\t0xB014\n0x8238BA30\t0xB015\n0x8238BA31\t0xB016\n0x8238BA32\t0xB017\n0x8238BA33\t0xB018\n0x8238BA34\t0xB019\n0x8238BA35\t0xB01A\n0x8238BA36\t0xB01B\n0x8238BA37\t0xB01C\n0x8238BA38\t0xB01D\n0x8238BA39\t0xB01E\n0x8238BB30\t0xB01F\n0x8238BB31\t0xB020\n0x8238BB32\t0xB021\n0x8238BB33\t0xB022\n0x8238BB34\t0xB023\n0x8238BB35\t0xB024\n0x8238BB36\t0xB025\n0x8238BB37\t0xB026\n0x8238BB38\t0xB027\n0x8238BB39\t0xB028\n0x8238BC30\t0xB029\n0x8238BC31\t0xB02A\n0x8238BC32\t0xB02B\n0x8238BC33\t0xB02C\n0x8238BC34\t0xB02D\n0x8238BC35\t0xB02E\n0x8238BC36\t0xB02F\n0x8238BC37\t0xB030\n0x8238BC38\t0xB031\n0x8238BC39\t0xB032\n0x8238BD30\t0xB033\n0x8238BD31\t0xB034\n0x8238BD32\t0xB035\n0x8238BD33\t0xB036\n0x8238BD34\t0xB037\n0x8238BD35\t0xB038\n0x8238BD36\t0xB039\n0x8238BD37\t0xB03A\n0x8238BD38\t0xB03B\n0x8238BD39\t0xB03C\n0x8238BE30\t0xB03D\n0x8238BE31\t0xB03E\n0x8238BE32\t0xB03F\n0x8238BE33\t0xB040\n0x8238BE34\t0xB041\n0x8238BE35\t0xB042\n0x8238BE36\t0xB043\n0x8238BE37\t0xB044\n0x8238BE38\t0xB045\n0x8238BE39\t0xB046\n0x8238BF30\t0xB047\n0x8238BF31\t0xB048\n0x8238BF32\t0xB049\n0x8238BF33\t0xB04A\n0x8238BF34\t0xB04B\n0x8238BF35\t0xB04C\n0x8238BF36\t0xB04D\n0x8238BF37\t0xB04E\n0x8238BF38\t0xB04F\n0x8238BF39\t0xB050\n0x8238C030\t0xB051\n0x8238C031\t0xB052\n0x8238C032\t0xB053\n0x8238C033\t0xB054\n0x8238C034\t0xB055\n0x8238C035\t0xB056\n0x8238C036\t0xB057\n0x8238C037\t0xB058\n0x8238C038\t0xB059\n0x8238C039\t0xB05A\n0x8238C130\t0xB05B\n0x8238C131\t0xB05C\n0x8238C132\t0xB05D\n0x8238C133\t0xB05E\n0x8238C134\t0xB05F\n0x8238C135\t0xB060\n0x8238C136\t0xB061\n0x8238C137\t0xB062\n0x8238C138\t0xB063\n0x8238C139\t0xB064\n0x8238C230\t0xB065\n0x8238C231\t0xB066\n0x8238C232\t0xB067\n0x8238C233\t0xB068\n0x8238C234\t0xB069\n0x8238C235\t0xB06A\n0x8238C236\t0xB06B\n0x8238C237\t0xB06C\n0x8238C238\t0xB06D\n0x8238C239\t0xB06E\n0x8238C330\t0xB06F\n0x8238C331\t0xB070\n0x8238C332\t0xB071\n0x8238C333\t0xB072\n0x8238C334\t0xB073\n0x8238C335\t0xB074\n0x8238C336\t0xB075\n0x8238C337\t0xB076\n0x8238C338\t0xB077\n0x8238C339\t0xB078\n0x8238C430\t0xB079\n0x8238C431\t0xB07A\n0x8238C432\t0xB07B\n0x8238C433\t0xB07C\n0x8238C434\t0xB07D\n0x8238C435\t0xB07E\n0x8238C436\t0xB07F\n0x8238C437\t0xB080\n0x8238C438\t0xB081\n0x8238C439\t0xB082\n0x8238C530\t0xB083\n0x8238C531\t0xB084\n0x8238C532\t0xB085\n0x8238C533\t0xB086\n0x8238C534\t0xB087\n0x8238C535\t0xB088\n0x8238C536\t0xB089\n0x8238C537\t0xB08A\n0x8238C538\t0xB08B\n0x8238C539\t0xB08C\n0x8238C630\t0xB08D\n0x8238C631\t0xB08E\n0x8238C632\t0xB08F\n0x8238C633\t0xB090\n0x8238C634\t0xB091\n0x8238C635\t0xB092\n0x8238C636\t0xB093\n0x8238C637\t0xB094\n0x8238C638\t0xB095\n0x8238C639\t0xB096\n0x8238C730\t0xB097\n0x8238C731\t0xB098\n0x8238C732\t0xB099\n0x8238C733\t0xB09A\n0x8238C734\t0xB09B\n0x8238C735\t0xB09C\n0x8238C736\t0xB09D\n0x8238C737\t0xB09E\n0x8238C738\t0xB09F\n0x8238C739\t0xB0A0\n0x8238C830\t0xB0A1\n0x8238C831\t0xB0A2\n0x8238C832\t0xB0A3\n0x8238C833\t0xB0A4\n0x8238C834\t0xB0A5\n0x8238C835\t0xB0A6\n0x8238C836\t0xB0A7\n0x8238C837\t0xB0A8\n0x8238C838\t0xB0A9\n0x8238C839\t0xB0AA\n0x8238C930\t0xB0AB\n0x8238C931\t0xB0AC\n0x8238C932\t0xB0AD\n0x8238C933\t0xB0AE\n0x8238C934\t0xB0AF\n0x8238C935\t0xB0B0\n0x8238C936\t0xB0B1\n0x8238C937\t0xB0B2\n0x8238C938\t0xB0B3\n0x8238C939\t0xB0B4\n0x8238CA30\t0xB0B5\n0x8238CA31\t0xB0B6\n0x8238CA32\t0xB0B7\n0x8238CA33\t0xB0B8\n0x8238CA34\t0xB0B9\n0x8238CA35\t0xB0BA\n0x8238CA36\t0xB0BB\n0x8238CA37\t0xB0BC\n0x8238CA38\t0xB0BD\n0x8238CA39\t0xB0BE\n0x8238CB30\t0xB0BF\n0x8238CB31\t0xB0C0\n0x8238CB32\t0xB0C1\n0x8238CB33\t0xB0C2\n0x8238CB34\t0xB0C3\n0x8238CB35\t0xB0C4\n0x8238CB36\t0xB0C5\n0x8238CB37\t0xB0C6\n0x8238CB38\t0xB0C7\n0x8238CB39\t0xB0C8\n0x8238CC30\t0xB0C9\n0x8238CC31\t0xB0CA\n0x8238CC32\t0xB0CB\n0x8238CC33\t0xB0CC\n0x8238CC34\t0xB0CD\n0x8238CC35\t0xB0CE\n0x8238CC36\t0xB0CF\n0x8238CC37\t0xB0D0\n0x8238CC38\t0xB0D1\n0x8238CC39\t0xB0D2\n0x8238CD30\t0xB0D3\n0x8238CD31\t0xB0D4\n0x8238CD32\t0xB0D5\n0x8238CD33\t0xB0D6\n0x8238CD34\t0xB0D7\n0x8238CD35\t0xB0D8\n0x8238CD36\t0xB0D9\n0x8238CD37\t0xB0DA\n0x8238CD38\t0xB0DB\n0x8238CD39\t0xB0DC\n0x8238CE30\t0xB0DD\n0x8238CE31\t0xB0DE\n0x8238CE32\t0xB0DF\n0x8238CE33\t0xB0E0\n0x8238CE34\t0xB0E1\n0x8238CE35\t0xB0E2\n0x8238CE36\t0xB0E3\n0x8238CE37\t0xB0E4\n0x8238CE38\t0xB0E5\n0x8238CE39\t0xB0E6\n0x8238CF30\t0xB0E7\n0x8238CF31\t0xB0E8\n0x8238CF32\t0xB0E9\n0x8238CF33\t0xB0EA\n0x8238CF34\t0xB0EB\n0x8238CF35\t0xB0EC\n0x8238CF36\t0xB0ED\n0x8238CF37\t0xB0EE\n0x8238CF38\t0xB0EF\n0x8238CF39\t0xB0F0\n0x8238D030\t0xB0F1\n0x8238D031\t0xB0F2\n0x8238D032\t0xB0F3\n0x8238D033\t0xB0F4\n0x8238D034\t0xB0F5\n0x8238D035\t0xB0F6\n0x8238D036\t0xB0F7\n0x8238D037\t0xB0F8\n0x8238D038\t0xB0F9\n0x8238D039\t0xB0FA\n0x8238D130\t0xB0FB\n0x8238D131\t0xB0FC\n0x8238D132\t0xB0FD\n0x8238D133\t0xB0FE\n0x8238D134\t0xB0FF\n0x8238D135\t0xB100\n0x8238D136\t0xB101\n0x8238D137\t0xB102\n0x8238D138\t0xB103\n0x8238D139\t0xB104\n0x8238D230\t0xB105\n0x8238D231\t0xB106\n0x8238D232\t0xB107\n0x8238D233\t0xB108\n0x8238D234\t0xB109\n0x8238D235\t0xB10A\n0x8238D236\t0xB10B\n0x8238D237\t0xB10C\n0x8238D238\t0xB10D\n0x8238D239\t0xB10E\n0x8238D330\t0xB10F\n0x8238D331\t0xB110\n0x8238D332\t0xB111\n0x8238D333\t0xB112\n0x8238D334\t0xB113\n0x8238D335\t0xB114\n0x8238D336\t0xB115\n0x8238D337\t0xB116\n0x8238D338\t0xB117\n0x8238D339\t0xB118\n0x8238D430\t0xB119\n0x8238D431\t0xB11A\n0x8238D432\t0xB11B\n0x8238D433\t0xB11C\n0x8238D434\t0xB11D\n0x8238D435\t0xB11E\n0x8238D436\t0xB11F\n0x8238D437\t0xB120\n0x8238D438\t0xB121\n0x8238D439\t0xB122\n0x8238D530\t0xB123\n0x8238D531\t0xB124\n0x8238D532\t0xB125\n0x8238D533\t0xB126\n0x8238D534\t0xB127\n0x8238D535\t0xB128\n0x8238D536\t0xB129\n0x8238D537\t0xB12A\n0x8238D538\t0xB12B\n0x8238D539\t0xB12C\n0x8238D630\t0xB12D\n0x8238D631\t0xB12E\n0x8238D632\t0xB12F\n0x8238D633\t0xB130\n0x8238D634\t0xB131\n0x8238D635\t0xB132\n0x8238D636\t0xB133\n0x8238D637\t0xB134\n0x8238D638\t0xB135\n0x8238D639\t0xB136\n0x8238D730\t0xB137\n0x8238D731\t0xB138\n0x8238D732\t0xB139\n0x8238D733\t0xB13A\n0x8238D734\t0xB13B\n0x8238D735\t0xB13C\n0x8238D736\t0xB13D\n0x8238D737\t0xB13E\n0x8238D738\t0xB13F\n0x8238D739\t0xB140\n0x8238D830\t0xB141\n0x8238D831\t0xB142\n0x8238D832\t0xB143\n0x8238D833\t0xB144\n0x8238D834\t0xB145\n0x8238D835\t0xB146\n0x8238D836\t0xB147\n0x8238D837\t0xB148\n0x8238D838\t0xB149\n0x8238D839\t0xB14A\n0x8238D930\t0xB14B\n0x8238D931\t0xB14C\n0x8238D932\t0xB14D\n0x8238D933\t0xB14E\n0x8238D934\t0xB14F\n0x8238D935\t0xB150\n0x8238D936\t0xB151\n0x8238D937\t0xB152\n0x8238D938\t0xB153\n0x8238D939\t0xB154\n0x8238DA30\t0xB155\n0x8238DA31\t0xB156\n0x8238DA32\t0xB157\n0x8238DA33\t0xB158\n0x8238DA34\t0xB159\n0x8238DA35\t0xB15A\n0x8238DA36\t0xB15B\n0x8238DA37\t0xB15C\n0x8238DA38\t0xB15D\n0x8238DA39\t0xB15E\n0x8238DB30\t0xB15F\n0x8238DB31\t0xB160\n0x8238DB32\t0xB161\n0x8238DB33\t0xB162\n0x8238DB34\t0xB163\n0x8238DB35\t0xB164\n0x8238DB36\t0xB165\n0x8238DB37\t0xB166\n0x8238DB38\t0xB167\n0x8238DB39\t0xB168\n0x8238DC30\t0xB169\n0x8238DC31\t0xB16A\n0x8238DC32\t0xB16B\n0x8238DC33\t0xB16C\n0x8238DC34\t0xB16D\n0x8238DC35\t0xB16E\n0x8238DC36\t0xB16F\n0x8238DC37\t0xB170\n0x8238DC38\t0xB171\n0x8238DC39\t0xB172\n0x8238DD30\t0xB173\n0x8238DD31\t0xB174\n0x8238DD32\t0xB175\n0x8238DD33\t0xB176\n0x8238DD34\t0xB177\n0x8238DD35\t0xB178\n0x8238DD36\t0xB179\n0x8238DD37\t0xB17A\n0x8238DD38\t0xB17B\n0x8238DD39\t0xB17C\n0x8238DE30\t0xB17D\n0x8238DE31\t0xB17E\n0x8238DE32\t0xB17F\n0x8238DE33\t0xB180\n0x8238DE34\t0xB181\n0x8238DE35\t0xB182\n0x8238DE36\t0xB183\n0x8238DE37\t0xB184\n0x8238DE38\t0xB185\n0x8238DE39\t0xB186\n0x8238DF30\t0xB187\n0x8238DF31\t0xB188\n0x8238DF32\t0xB189\n0x8238DF33\t0xB18A\n0x8238DF34\t0xB18B\n0x8238DF35\t0xB18C\n0x8238DF36\t0xB18D\n0x8238DF37\t0xB18E\n0x8238DF38\t0xB18F\n0x8238DF39\t0xB190\n0x8238E030\t0xB191\n0x8238E031\t0xB192\n0x8238E032\t0xB193\n0x8238E033\t0xB194\n0x8238E034\t0xB195\n0x8238E035\t0xB196\n0x8238E036\t0xB197\n0x8238E037\t0xB198\n0x8238E038\t0xB199\n0x8238E039\t0xB19A\n0x8238E130\t0xB19B\n0x8238E131\t0xB19C\n0x8238E132\t0xB19D\n0x8238E133\t0xB19E\n0x8238E134\t0xB19F\n0x8238E135\t0xB1A0\n0x8238E136\t0xB1A1\n0x8238E137\t0xB1A2\n0x8238E138\t0xB1A3\n0x8238E139\t0xB1A4\n0x8238E230\t0xB1A5\n0x8238E231\t0xB1A6\n0x8238E232\t0xB1A7\n0x8238E233\t0xB1A8\n0x8238E234\t0xB1A9\n0x8238E235\t0xB1AA\n0x8238E236\t0xB1AB\n0x8238E237\t0xB1AC\n0x8238E238\t0xB1AD\n0x8238E239\t0xB1AE\n0x8238E330\t0xB1AF\n0x8238E331\t0xB1B0\n0x8238E332\t0xB1B1\n0x8238E333\t0xB1B2\n0x8238E334\t0xB1B3\n0x8238E335\t0xB1B4\n0x8238E336\t0xB1B5\n0x8238E337\t0xB1B6\n0x8238E338\t0xB1B7\n0x8238E339\t0xB1B8\n0x8238E430\t0xB1B9\n0x8238E431\t0xB1BA\n0x8238E432\t0xB1BB\n0x8238E433\t0xB1BC\n0x8238E434\t0xB1BD\n0x8238E435\t0xB1BE\n0x8238E436\t0xB1BF\n0x8238E437\t0xB1C0\n0x8238E438\t0xB1C1\n0x8238E439\t0xB1C2\n0x8238E530\t0xB1C3\n0x8238E531\t0xB1C4\n0x8238E532\t0xB1C5\n0x8238E533\t0xB1C6\n0x8238E534\t0xB1C7\n0x8238E535\t0xB1C8\n0x8238E536\t0xB1C9\n0x8238E537\t0xB1CA\n0x8238E538\t0xB1CB\n0x8238E539\t0xB1CC\n0x8238E630\t0xB1CD\n0x8238E631\t0xB1CE\n0x8238E632\t0xB1CF\n0x8238E633\t0xB1D0\n0x8238E634\t0xB1D1\n0x8238E635\t0xB1D2\n0x8238E636\t0xB1D3\n0x8238E637\t0xB1D4\n0x8238E638\t0xB1D5\n0x8238E639\t0xB1D6\n0x8238E730\t0xB1D7\n0x8238E731\t0xB1D8\n0x8238E732\t0xB1D9\n0x8238E733\t0xB1DA\n0x8238E734\t0xB1DB\n0x8238E735\t0xB1DC\n0x8238E736\t0xB1DD\n0x8238E737\t0xB1DE\n0x8238E738\t0xB1DF\n0x8238E739\t0xB1E0\n0x8238E830\t0xB1E1\n0x8238E831\t0xB1E2\n0x8238E832\t0xB1E3\n0x8238E833\t0xB1E4\n0x8238E834\t0xB1E5\n0x8238E835\t0xB1E6\n0x8238E836\t0xB1E7\n0x8238E837\t0xB1E8\n0x8238E838\t0xB1E9\n0x8238E839\t0xB1EA\n0x8238E930\t0xB1EB\n0x8238E931\t0xB1EC\n0x8238E932\t0xB1ED\n0x8238E933\t0xB1EE\n0x8238E934\t0xB1EF\n0x8238E935\t0xB1F0\n0x8238E936\t0xB1F1\n0x8238E937\t0xB1F2\n0x8238E938\t0xB1F3\n0x8238E939\t0xB1F4\n0x8238EA30\t0xB1F5\n0x8238EA31\t0xB1F6\n0x8238EA32\t0xB1F7\n0x8238EA33\t0xB1F8\n0x8238EA34\t0xB1F9\n0x8238EA35\t0xB1FA\n0x8238EA36\t0xB1FB\n0x8238EA37\t0xB1FC\n0x8238EA38\t0xB1FD\n0x8238EA39\t0xB1FE\n0x8238EB30\t0xB1FF\n0x8238EB31\t0xB200\n0x8238EB32\t0xB201\n0x8238EB33\t0xB202\n0x8238EB34\t0xB203\n0x8238EB35\t0xB204\n0x8238EB36\t0xB205\n0x8238EB37\t0xB206\n0x8238EB38\t0xB207\n0x8238EB39\t0xB208\n0x8238EC30\t0xB209\n0x8238EC31\t0xB20A\n0x8238EC32\t0xB20B\n0x8238EC33\t0xB20C\n0x8238EC34\t0xB20D\n0x8238EC35\t0xB20E\n0x8238EC36\t0xB20F\n0x8238EC37\t0xB210\n0x8238EC38\t0xB211\n0x8238EC39\t0xB212\n0x8238ED30\t0xB213\n0x8238ED31\t0xB214\n0x8238ED32\t0xB215\n0x8238ED33\t0xB216\n0x8238ED34\t0xB217\n0x8238ED35\t0xB218\n0x8238ED36\t0xB219\n0x8238ED37\t0xB21A\n0x8238ED38\t0xB21B\n0x8238ED39\t0xB21C\n0x8238EE30\t0xB21D\n0x8238EE31\t0xB21E\n0x8238EE32\t0xB21F\n0x8238EE33\t0xB220\n0x8238EE34\t0xB221\n0x8238EE35\t0xB222\n0x8238EE36\t0xB223\n0x8238EE37\t0xB224\n0x8238EE38\t0xB225\n0x8238EE39\t0xB226\n0x8238EF30\t0xB227\n0x8238EF31\t0xB228\n0x8238EF32\t0xB229\n0x8238EF33\t0xB22A\n0x8238EF34\t0xB22B\n0x8238EF35\t0xB22C\n0x8238EF36\t0xB22D\n0x8238EF37\t0xB22E\n0x8238EF38\t0xB22F\n0x8238EF39\t0xB230\n0x8238F030\t0xB231\n0x8238F031\t0xB232\n0x8238F032\t0xB233\n0x8238F033\t0xB234\n0x8238F034\t0xB235\n0x8238F035\t0xB236\n0x8238F036\t0xB237\n0x8238F037\t0xB238\n0x8238F038\t0xB239\n0x8238F039\t0xB23A\n0x8238F130\t0xB23B\n0x8238F131\t0xB23C\n0x8238F132\t0xB23D\n0x8238F133\t0xB23E\n0x8238F134\t0xB23F\n0x8238F135\t0xB240\n0x8238F136\t0xB241\n0x8238F137\t0xB242\n0x8238F138\t0xB243\n0x8238F139\t0xB244\n0x8238F230\t0xB245\n0x8238F231\t0xB246\n0x8238F232\t0xB247\n0x8238F233\t0xB248\n0x8238F234\t0xB249\n0x8238F235\t0xB24A\n0x8238F236\t0xB24B\n0x8238F237\t0xB24C\n0x8238F238\t0xB24D\n0x8238F239\t0xB24E\n0x8238F330\t0xB24F\n0x8238F331\t0xB250\n0x8238F332\t0xB251\n0x8238F333\t0xB252\n0x8238F334\t0xB253\n0x8238F335\t0xB254\n0x8238F336\t0xB255\n0x8238F337\t0xB256\n0x8238F338\t0xB257\n0x8238F339\t0xB258\n0x8238F430\t0xB259\n0x8238F431\t0xB25A\n0x8238F432\t0xB25B\n0x8238F433\t0xB25C\n0x8238F434\t0xB25D\n0x8238F435\t0xB25E\n0x8238F436\t0xB25F\n0x8238F437\t0xB260\n0x8238F438\t0xB261\n0x8238F439\t0xB262\n0x8238F530\t0xB263\n0x8238F531\t0xB264\n0x8238F532\t0xB265\n0x8238F533\t0xB266\n0x8238F534\t0xB267\n0x8238F535\t0xB268\n0x8238F536\t0xB269\n0x8238F537\t0xB26A\n0x8238F538\t0xB26B\n0x8238F539\t0xB26C\n0x8238F630\t0xB26D\n0x8238F631\t0xB26E\n0x8238F632\t0xB26F\n0x8238F633\t0xB270\n0x8238F634\t0xB271\n0x8238F635\t0xB272\n0x8238F636\t0xB273\n0x8238F637\t0xB274\n0x8238F638\t0xB275\n0x8238F639\t0xB276\n0x8238F730\t0xB277\n0x8238F731\t0xB278\n0x8238F732\t0xB279\n0x8238F733\t0xB27A\n0x8238F734\t0xB27B\n0x8238F735\t0xB27C\n0x8238F736\t0xB27D\n0x8238F737\t0xB27E\n0x8238F738\t0xB27F\n0x8238F739\t0xB280\n0x8238F830\t0xB281\n0x8238F831\t0xB282\n0x8238F832\t0xB283\n0x8238F833\t0xB284\n0x8238F834\t0xB285\n0x8238F835\t0xB286\n0x8238F836\t0xB287\n0x8238F837\t0xB288\n0x8238F838\t0xB289\n0x8238F839\t0xB28A\n0x8238F930\t0xB28B\n0x8238F931\t0xB28C\n0x8238F932\t0xB28D\n0x8238F933\t0xB28E\n0x8238F934\t0xB28F\n0x8238F935\t0xB290\n0x8238F936\t0xB291\n0x8238F937\t0xB292\n0x8238F938\t0xB293\n0x8238F939\t0xB294\n0x8238FA30\t0xB295\n0x8238FA31\t0xB296\n0x8238FA32\t0xB297\n0x8238FA33\t0xB298\n0x8238FA34\t0xB299\n0x8238FA35\t0xB29A\n0x8238FA36\t0xB29B\n0x8238FA37\t0xB29C\n0x8238FA38\t0xB29D\n0x8238FA39\t0xB29E\n0x8238FB30\t0xB29F\n0x8238FB31\t0xB2A0\n0x8238FB32\t0xB2A1\n0x8238FB33\t0xB2A2\n0x8238FB34\t0xB2A3\n0x8238FB35\t0xB2A4\n0x8238FB36\t0xB2A5\n0x8238FB37\t0xB2A6\n0x8238FB38\t0xB2A7\n0x8238FB39\t0xB2A8\n0x8238FC30\t0xB2A9\n0x8238FC31\t0xB2AA\n0x8238FC32\t0xB2AB\n0x8238FC33\t0xB2AC\n0x8238FC34\t0xB2AD\n0x8238FC35\t0xB2AE\n0x8238FC36\t0xB2AF\n0x8238FC37\t0xB2B0\n0x8238FC38\t0xB2B1\n0x8238FC39\t0xB2B2\n0x8238FD30\t0xB2B3\n0x8238FD31\t0xB2B4\n0x8238FD32\t0xB2B5\n0x8238FD33\t0xB2B6\n0x8238FD34\t0xB2B7\n0x8238FD35\t0xB2B8\n0x8238FD36\t0xB2B9\n0x8238FD37\t0xB2BA\n0x8238FD38\t0xB2BB\n0x8238FD39\t0xB2BC\n0x8238FE30\t0xB2BD\n0x8238FE31\t0xB2BE\n0x8238FE32\t0xB2BF\n0x8238FE33\t0xB2C0\n0x8238FE34\t0xB2C1\n0x8238FE35\t0xB2C2\n0x8238FE36\t0xB2C3\n0x8238FE37\t0xB2C4\n0x8238FE38\t0xB2C5\n0x8238FE39\t0xB2C6\n0x82398130\t0xB2C7\n0x82398131\t0xB2C8\n0x82398132\t0xB2C9\n0x82398133\t0xB2CA\n0x82398134\t0xB2CB\n0x82398135\t0xB2CC\n0x82398136\t0xB2CD\n0x82398137\t0xB2CE\n0x82398138\t0xB2CF\n0x82398139\t0xB2D0\n0x82398230\t0xB2D1\n0x82398231\t0xB2D2\n0x82398232\t0xB2D3\n0x82398233\t0xB2D4\n0x82398234\t0xB2D5\n0x82398235\t0xB2D6\n0x82398236\t0xB2D7\n0x82398237\t0xB2D8\n0x82398238\t0xB2D9\n0x82398239\t0xB2DA\n0x82398330\t0xB2DB\n0x82398331\t0xB2DC\n0x82398332\t0xB2DD\n0x82398333\t0xB2DE\n0x82398334\t0xB2DF\n0x82398335\t0xB2E0\n0x82398336\t0xB2E1\n0x82398337\t0xB2E2\n0x82398338\t0xB2E3\n0x82398339\t0xB2E4\n0x82398430\t0xB2E5\n0x82398431\t0xB2E6\n0x82398432\t0xB2E7\n0x82398433\t0xB2E8\n0x82398434\t0xB2E9\n0x82398435\t0xB2EA\n0x82398436\t0xB2EB\n0x82398437\t0xB2EC\n0x82398438\t0xB2ED\n0x82398439\t0xB2EE\n0x82398530\t0xB2EF\n0x82398531\t0xB2F0\n0x82398532\t0xB2F1\n0x82398533\t0xB2F2\n0x82398534\t0xB2F3\n0x82398535\t0xB2F4\n0x82398536\t0xB2F5\n0x82398537\t0xB2F6\n0x82398538\t0xB2F7\n0x82398539\t0xB2F8\n0x82398630\t0xB2F9\n0x82398631\t0xB2FA\n0x82398632\t0xB2FB\n0x82398633\t0xB2FC\n0x82398634\t0xB2FD\n0x82398635\t0xB2FE\n0x82398636\t0xB2FF\n0x82398637\t0xB300\n0x82398638\t0xB301\n0x82398639\t0xB302\n0x82398730\t0xB303\n0x82398731\t0xB304\n0x82398732\t0xB305\n0x82398733\t0xB306\n0x82398734\t0xB307\n0x82398735\t0xB308\n0x82398736\t0xB309\n0x82398737\t0xB30A\n0x82398738\t0xB30B\n0x82398739\t0xB30C\n0x82398830\t0xB30D\n0x82398831\t0xB30E\n0x82398832\t0xB30F\n0x82398833\t0xB310\n0x82398834\t0xB311\n0x82398835\t0xB312\n0x82398836\t0xB313\n0x82398837\t0xB314\n0x82398838\t0xB315\n0x82398839\t0xB316\n0x82398930\t0xB317\n0x82398931\t0xB318\n0x82398932\t0xB319\n0x82398933\t0xB31A\n0x82398934\t0xB31B\n0x82398935\t0xB31C\n0x82398936\t0xB31D\n0x82398937\t0xB31E\n0x82398938\t0xB31F\n0x82398939\t0xB320\n0x82398A30\t0xB321\n0x82398A31\t0xB322\n0x82398A32\t0xB323\n0x82398A33\t0xB324\n0x82398A34\t0xB325\n0x82398A35\t0xB326\n0x82398A36\t0xB327\n0x82398A37\t0xB328\n0x82398A38\t0xB329\n0x82398A39\t0xB32A\n0x82398B30\t0xB32B\n0x82398B31\t0xB32C\n0x82398B32\t0xB32D\n0x82398B33\t0xB32E\n0x82398B34\t0xB32F\n0x82398B35\t0xB330\n0x82398B36\t0xB331\n0x82398B37\t0xB332\n0x82398B38\t0xB333\n0x82398B39\t0xB334\n0x82398C30\t0xB335\n0x82398C31\t0xB336\n0x82398C32\t0xB337\n0x82398C33\t0xB338\n0x82398C34\t0xB339\n0x82398C35\t0xB33A\n0x82398C36\t0xB33B\n0x82398C37\t0xB33C\n0x82398C38\t0xB33D\n0x82398C39\t0xB33E\n0x82398D30\t0xB33F\n0x82398D31\t0xB340\n0x82398D32\t0xB341\n0x82398D33\t0xB342\n0x82398D34\t0xB343\n0x82398D35\t0xB344\n0x82398D36\t0xB345\n0x82398D37\t0xB346\n0x82398D38\t0xB347\n0x82398D39\t0xB348\n0x82398E30\t0xB349\n0x82398E31\t0xB34A\n0x82398E32\t0xB34B\n0x82398E33\t0xB34C\n0x82398E34\t0xB34D\n0x82398E35\t0xB34E\n0x82398E36\t0xB34F\n0x82398E37\t0xB350\n0x82398E38\t0xB351\n0x82398E39\t0xB352\n0x82398F30\t0xB353\n0x82398F31\t0xB354\n0x82398F32\t0xB355\n0x82398F33\t0xB356\n0x82398F34\t0xB357\n0x82398F35\t0xB358\n0x82398F36\t0xB359\n0x82398F37\t0xB35A\n0x82398F38\t0xB35B\n0x82398F39\t0xB35C\n0x82399030\t0xB35D\n0x82399031\t0xB35E\n0x82399032\t0xB35F\n0x82399033\t0xB360\n0x82399034\t0xB361\n0x82399035\t0xB362\n0x82399036\t0xB363\n0x82399037\t0xB364\n0x82399038\t0xB365\n0x82399039\t0xB366\n0x82399130\t0xB367\n0x82399131\t0xB368\n0x82399132\t0xB369\n0x82399133\t0xB36A\n0x82399134\t0xB36B\n0x82399135\t0xB36C\n0x82399136\t0xB36D\n0x82399137\t0xB36E\n0x82399138\t0xB36F\n0x82399139\t0xB370\n0x82399230\t0xB371\n0x82399231\t0xB372\n0x82399232\t0xB373\n0x82399233\t0xB374\n0x82399234\t0xB375\n0x82399235\t0xB376\n0x82399236\t0xB377\n0x82399237\t0xB378\n0x82399238\t0xB379\n0x82399239\t0xB37A\n0x82399330\t0xB37B\n0x82399331\t0xB37C\n0x82399332\t0xB37D\n0x82399333\t0xB37E\n0x82399334\t0xB37F\n0x82399335\t0xB380\n0x82399336\t0xB381\n0x82399337\t0xB382\n0x82399338\t0xB383\n0x82399339\t0xB384\n0x82399430\t0xB385\n0x82399431\t0xB386\n0x82399432\t0xB387\n0x82399433\t0xB388\n0x82399434\t0xB389\n0x82399435\t0xB38A\n0x82399436\t0xB38B\n0x82399437\t0xB38C\n0x82399438\t0xB38D\n0x82399439\t0xB38E\n0x82399530\t0xB38F\n0x82399531\t0xB390\n0x82399532\t0xB391\n0x82399533\t0xB392\n0x82399534\t0xB393\n0x82399535\t0xB394\n0x82399536\t0xB395\n0x82399537\t0xB396\n0x82399538\t0xB397\n0x82399539\t0xB398\n0x82399630\t0xB399\n0x82399631\t0xB39A\n0x82399632\t0xB39B\n0x82399633\t0xB39C\n0x82399634\t0xB39D\n0x82399635\t0xB39E\n0x82399636\t0xB39F\n0x82399637\t0xB3A0\n0x82399638\t0xB3A1\n0x82399639\t0xB3A2\n0x82399730\t0xB3A3\n0x82399731\t0xB3A4\n0x82399732\t0xB3A5\n0x82399733\t0xB3A6\n0x82399734\t0xB3A7\n0x82399735\t0xB3A8\n0x82399736\t0xB3A9\n0x82399737\t0xB3AA\n0x82399738\t0xB3AB\n0x82399739\t0xB3AC\n0x82399830\t0xB3AD\n0x82399831\t0xB3AE\n0x82399832\t0xB3AF\n0x82399833\t0xB3B0\n0x82399834\t0xB3B1\n0x82399835\t0xB3B2\n0x82399836\t0xB3B3\n0x82399837\t0xB3B4\n0x82399838\t0xB3B5\n0x82399839\t0xB3B6\n0x82399930\t0xB3B7\n0x82399931\t0xB3B8\n0x82399932\t0xB3B9\n0x82399933\t0xB3BA\n0x82399934\t0xB3BB\n0x82399935\t0xB3BC\n0x82399936\t0xB3BD\n0x82399937\t0xB3BE\n0x82399938\t0xB3BF\n0x82399939\t0xB3C0\n0x82399A30\t0xB3C1\n0x82399A31\t0xB3C2\n0x82399A32\t0xB3C3\n0x82399A33\t0xB3C4\n0x82399A34\t0xB3C5\n0x82399A35\t0xB3C6\n0x82399A36\t0xB3C7\n0x82399A37\t0xB3C8\n0x82399A38\t0xB3C9\n0x82399A39\t0xB3CA\n0x82399B30\t0xB3CB\n0x82399B31\t0xB3CC\n0x82399B32\t0xB3CD\n0x82399B33\t0xB3CE\n0x82399B34\t0xB3CF\n0x82399B35\t0xB3D0\n0x82399B36\t0xB3D1\n0x82399B37\t0xB3D2\n0x82399B38\t0xB3D3\n0x82399B39\t0xB3D4\n0x82399C30\t0xB3D5\n0x82399C31\t0xB3D6\n0x82399C32\t0xB3D7\n0x82399C33\t0xB3D8\n0x82399C34\t0xB3D9\n0x82399C35\t0xB3DA\n0x82399C36\t0xB3DB\n0x82399C37\t0xB3DC\n0x82399C38\t0xB3DD\n0x82399C39\t0xB3DE\n0x82399D30\t0xB3DF\n0x82399D31\t0xB3E0\n0x82399D32\t0xB3E1\n0x82399D33\t0xB3E2\n0x82399D34\t0xB3E3\n0x82399D35\t0xB3E4\n0x82399D36\t0xB3E5\n0x82399D37\t0xB3E6\n0x82399D38\t0xB3E7\n0x82399D39\t0xB3E8\n0x82399E30\t0xB3E9\n0x82399E31\t0xB3EA\n0x82399E32\t0xB3EB\n0x82399E33\t0xB3EC\n0x82399E34\t0xB3ED\n0x82399E35\t0xB3EE\n0x82399E36\t0xB3EF\n0x82399E37\t0xB3F0\n0x82399E38\t0xB3F1\n0x82399E39\t0xB3F2\n0x82399F30\t0xB3F3\n0x82399F31\t0xB3F4\n0x82399F32\t0xB3F5\n0x82399F33\t0xB3F6\n0x82399F34\t0xB3F7\n0x82399F35\t0xB3F8\n0x82399F36\t0xB3F9\n0x82399F37\t0xB3FA\n0x82399F38\t0xB3FB\n0x82399F39\t0xB3FC\n0x8239A030\t0xB3FD\n0x8239A031\t0xB3FE\n0x8239A032\t0xB3FF\n0x8239A033\t0xB400\n0x8239A034\t0xB401\n0x8239A035\t0xB402\n0x8239A036\t0xB403\n0x8239A037\t0xB404\n0x8239A038\t0xB405\n0x8239A039\t0xB406\n0x8239A130\t0xB407\n0x8239A131\t0xB408\n0x8239A132\t0xB409\n0x8239A133\t0xB40A\n0x8239A134\t0xB40B\n0x8239A135\t0xB40C\n0x8239A136\t0xB40D\n0x8239A137\t0xB40E\n0x8239A138\t0xB40F\n0x8239A139\t0xB410\n0x8239A230\t0xB411\n0x8239A231\t0xB412\n0x8239A232\t0xB413\n0x8239A233\t0xB414\n0x8239A234\t0xB415\n0x8239A235\t0xB416\n0x8239A236\t0xB417\n0x8239A237\t0xB418\n0x8239A238\t0xB419\n0x8239A239\t0xB41A\n0x8239A330\t0xB41B\n0x8239A331\t0xB41C\n0x8239A332\t0xB41D\n0x8239A333\t0xB41E\n0x8239A334\t0xB41F\n0x8239A335\t0xB420\n0x8239A336\t0xB421\n0x8239A337\t0xB422\n0x8239A338\t0xB423\n0x8239A339\t0xB424\n0x8239A430\t0xB425\n0x8239A431\t0xB426\n0x8239A432\t0xB427\n0x8239A433\t0xB428\n0x8239A434\t0xB429\n0x8239A435\t0xB42A\n0x8239A436\t0xB42B\n0x8239A437\t0xB42C\n0x8239A438\t0xB42D\n0x8239A439\t0xB42E\n0x8239A530\t0xB42F\n0x8239A531\t0xB430\n0x8239A532\t0xB431\n0x8239A533\t0xB432\n0x8239A534\t0xB433\n0x8239A535\t0xB434\n0x8239A536\t0xB435\n0x8239A537\t0xB436\n0x8239A538\t0xB437\n0x8239A539\t0xB438\n0x8239A630\t0xB439\n0x8239A631\t0xB43A\n0x8239A632\t0xB43B\n0x8239A633\t0xB43C\n0x8239A634\t0xB43D\n0x8239A635\t0xB43E\n0x8239A636\t0xB43F\n0x8239A637\t0xB440\n0x8239A638\t0xB441\n0x8239A639\t0xB442\n0x8239A730\t0xB443\n0x8239A731\t0xB444\n0x8239A732\t0xB445\n0x8239A733\t0xB446\n0x8239A734\t0xB447\n0x8239A735\t0xB448\n0x8239A736\t0xB449\n0x8239A737\t0xB44A\n0x8239A738\t0xB44B\n0x8239A739\t0xB44C\n0x8239A830\t0xB44D\n0x8239A831\t0xB44E\n0x8239A832\t0xB44F\n0x8239A833\t0xB450\n0x8239A834\t0xB451\n0x8239A835\t0xB452\n0x8239A836\t0xB453\n0x8239A837\t0xB454\n0x8239A838\t0xB455\n0x8239A839\t0xB456\n0x8239A930\t0xB457\n0x8239A931\t0xB458\n0x8239A932\t0xB459\n0x8239A933\t0xB45A\n0x8239A934\t0xB45B\n0x8239A935\t0xB45C\n0x8239A936\t0xB45D\n0x8239A937\t0xB45E\n0x8239A938\t0xB45F\n0x8239A939\t0xB460\n0x8239AA30\t0xB461\n0x8239AA31\t0xB462\n0x8239AA32\t0xB463\n0x8239AA33\t0xB464\n0x8239AA34\t0xB465\n0x8239AA35\t0xB466\n0x8239AA36\t0xB467\n0x8239AA37\t0xB468\n0x8239AA38\t0xB469\n0x8239AA39\t0xB46A\n0x8239AB30\t0xB46B\n0x8239AB31\t0xB46C\n0x8239AB32\t0xB46D\n0x8239AB33\t0xB46E\n0x8239AB34\t0xB46F\n0x8239AB35\t0xB470\n0x8239AB36\t0xB471\n0x8239AB37\t0xB472\n0x8239AB38\t0xB473\n0x8239AB39\t0xB474\n0x8239AC30\t0xB475\n0x8239AC31\t0xB476\n0x8239AC32\t0xB477\n0x8239AC33\t0xB478\n0x8239AC34\t0xB479\n0x8239AC35\t0xB47A\n0x8239AC36\t0xB47B\n0x8239AC37\t0xB47C\n0x8239AC38\t0xB47D\n0x8239AC39\t0xB47E\n0x8239AD30\t0xB47F\n0x8239AD31\t0xB480\n0x8239AD32\t0xB481\n0x8239AD33\t0xB482\n0x8239AD34\t0xB483\n0x8239AD35\t0xB484\n0x8239AD36\t0xB485\n0x8239AD37\t0xB486\n0x8239AD38\t0xB487\n0x8239AD39\t0xB488\n0x8239AE30\t0xB489\n0x8239AE31\t0xB48A\n0x8239AE32\t0xB48B\n0x8239AE33\t0xB48C\n0x8239AE34\t0xB48D\n0x8239AE35\t0xB48E\n0x8239AE36\t0xB48F\n0x8239AE37\t0xB490\n0x8239AE38\t0xB491\n0x8239AE39\t0xB492\n0x8239AF30\t0xB493\n0x8239AF31\t0xB494\n0x8239AF32\t0xB495\n0x8239AF33\t0xB496\n0x8239AF34\t0xB497\n0x8239AF35\t0xB498\n0x8239AF36\t0xB499\n0x8239AF37\t0xB49A\n0x8239AF38\t0xB49B\n0x8239AF39\t0xB49C\n0x8239B030\t0xB49D\n0x8239B031\t0xB49E\n0x8239B032\t0xB49F\n0x8239B033\t0xB4A0\n0x8239B034\t0xB4A1\n0x8239B035\t0xB4A2\n0x8239B036\t0xB4A3\n0x8239B037\t0xB4A4\n0x8239B038\t0xB4A5\n0x8239B039\t0xB4A6\n0x8239B130\t0xB4A7\n0x8239B131\t0xB4A8\n0x8239B132\t0xB4A9\n0x8239B133\t0xB4AA\n0x8239B134\t0xB4AB\n0x8239B135\t0xB4AC\n0x8239B136\t0xB4AD\n0x8239B137\t0xB4AE\n0x8239B138\t0xB4AF\n0x8239B139\t0xB4B0\n0x8239B230\t0xB4B1\n0x8239B231\t0xB4B2\n0x8239B232\t0xB4B3\n0x8239B233\t0xB4B4\n0x8239B234\t0xB4B5\n0x8239B235\t0xB4B6\n0x8239B236\t0xB4B7\n0x8239B237\t0xB4B8\n0x8239B238\t0xB4B9\n0x8239B239\t0xB4BA\n0x8239B330\t0xB4BB\n0x8239B331\t0xB4BC\n0x8239B332\t0xB4BD\n0x8239B333\t0xB4BE\n0x8239B334\t0xB4BF\n0x8239B335\t0xB4C0\n0x8239B336\t0xB4C1\n0x8239B337\t0xB4C2\n0x8239B338\t0xB4C3\n0x8239B339\t0xB4C4\n0x8239B430\t0xB4C5\n0x8239B431\t0xB4C6\n0x8239B432\t0xB4C7\n0x8239B433\t0xB4C8\n0x8239B434\t0xB4C9\n0x8239B435\t0xB4CA\n0x8239B436\t0xB4CB\n0x8239B437\t0xB4CC\n0x8239B438\t0xB4CD\n0x8239B439\t0xB4CE\n0x8239B530\t0xB4CF\n0x8239B531\t0xB4D0\n0x8239B532\t0xB4D1\n0x8239B533\t0xB4D2\n0x8239B534\t0xB4D3\n0x8239B535\t0xB4D4\n0x8239B536\t0xB4D5\n0x8239B537\t0xB4D6\n0x8239B538\t0xB4D7\n0x8239B539\t0xB4D8\n0x8239B630\t0xB4D9\n0x8239B631\t0xB4DA\n0x8239B632\t0xB4DB\n0x8239B633\t0xB4DC\n0x8239B634\t0xB4DD\n0x8239B635\t0xB4DE\n0x8239B636\t0xB4DF\n0x8239B637\t0xB4E0\n0x8239B638\t0xB4E1\n0x8239B639\t0xB4E2\n0x8239B730\t0xB4E3\n0x8239B731\t0xB4E4\n0x8239B732\t0xB4E5\n0x8239B733\t0xB4E6\n0x8239B734\t0xB4E7\n0x8239B735\t0xB4E8\n0x8239B736\t0xB4E9\n0x8239B737\t0xB4EA\n0x8239B738\t0xB4EB\n0x8239B739\t0xB4EC\n0x8239B830\t0xB4ED\n0x8239B831\t0xB4EE\n0x8239B832\t0xB4EF\n0x8239B833\t0xB4F0\n0x8239B834\t0xB4F1\n0x8239B835\t0xB4F2\n0x8239B836\t0xB4F3\n0x8239B837\t0xB4F4\n0x8239B838\t0xB4F5\n0x8239B839\t0xB4F6\n0x8239B930\t0xB4F7\n0x8239B931\t0xB4F8\n0x8239B932\t0xB4F9\n0x8239B933\t0xB4FA\n0x8239B934\t0xB4FB\n0x8239B935\t0xB4FC\n0x8239B936\t0xB4FD\n0x8239B937\t0xB4FE\n0x8239B938\t0xB4FF\n0x8239B939\t0xB500\n0x8239BA30\t0xB501\n0x8239BA31\t0xB502\n0x8239BA32\t0xB503\n0x8239BA33\t0xB504\n0x8239BA34\t0xB505\n0x8239BA35\t0xB506\n0x8239BA36\t0xB507\n0x8239BA37\t0xB508\n0x8239BA38\t0xB509\n0x8239BA39\t0xB50A\n0x8239BB30\t0xB50B\n0x8239BB31\t0xB50C\n0x8239BB32\t0xB50D\n0x8239BB33\t0xB50E\n0x8239BB34\t0xB50F\n0x8239BB35\t0xB510\n0x8239BB36\t0xB511\n0x8239BB37\t0xB512\n0x8239BB38\t0xB513\n0x8239BB39\t0xB514\n0x8239BC30\t0xB515\n0x8239BC31\t0xB516\n0x8239BC32\t0xB517\n0x8239BC33\t0xB518\n0x8239BC34\t0xB519\n0x8239BC35\t0xB51A\n0x8239BC36\t0xB51B\n0x8239BC37\t0xB51C\n0x8239BC38\t0xB51D\n0x8239BC39\t0xB51E\n0x8239BD30\t0xB51F\n0x8239BD31\t0xB520\n0x8239BD32\t0xB521\n0x8239BD33\t0xB522\n0x8239BD34\t0xB523\n0x8239BD35\t0xB524\n0x8239BD36\t0xB525\n0x8239BD37\t0xB526\n0x8239BD38\t0xB527\n0x8239BD39\t0xB528\n0x8239BE30\t0xB529\n0x8239BE31\t0xB52A\n0x8239BE32\t0xB52B\n0x8239BE33\t0xB52C\n0x8239BE34\t0xB52D\n0x8239BE35\t0xB52E\n0x8239BE36\t0xB52F\n0x8239BE37\t0xB530\n0x8239BE38\t0xB531\n0x8239BE39\t0xB532\n0x8239BF30\t0xB533\n0x8239BF31\t0xB534\n0x8239BF32\t0xB535\n0x8239BF33\t0xB536\n0x8239BF34\t0xB537\n0x8239BF35\t0xB538\n0x8239BF36\t0xB539\n0x8239BF37\t0xB53A\n0x8239BF38\t0xB53B\n0x8239BF39\t0xB53C\n0x8239C030\t0xB53D\n0x8239C031\t0xB53E\n0x8239C032\t0xB53F\n0x8239C033\t0xB540\n0x8239C034\t0xB541\n0x8239C035\t0xB542\n0x8239C036\t0xB543\n0x8239C037\t0xB544\n0x8239C038\t0xB545\n0x8239C039\t0xB546\n0x8239C130\t0xB547\n0x8239C131\t0xB548\n0x8239C132\t0xB549\n0x8239C133\t0xB54A\n0x8239C134\t0xB54B\n0x8239C135\t0xB54C\n0x8239C136\t0xB54D\n0x8239C137\t0xB54E\n0x8239C138\t0xB54F\n0x8239C139\t0xB550\n0x8239C230\t0xB551\n0x8239C231\t0xB552\n0x8239C232\t0xB553\n0x8239C233\t0xB554\n0x8239C234\t0xB555\n0x8239C235\t0xB556\n0x8239C236\t0xB557\n0x8239C237\t0xB558\n0x8239C238\t0xB559\n0x8239C239\t0xB55A\n0x8239C330\t0xB55B\n0x8239C331\t0xB55C\n0x8239C332\t0xB55D\n0x8239C333\t0xB55E\n0x8239C334\t0xB55F\n0x8239C335\t0xB560\n0x8239C336\t0xB561\n0x8239C337\t0xB562\n0x8239C338\t0xB563\n0x8239C339\t0xB564\n0x8239C430\t0xB565\n0x8239C431\t0xB566\n0x8239C432\t0xB567\n0x8239C433\t0xB568\n0x8239C434\t0xB569\n0x8239C435\t0xB56A\n0x8239C436\t0xB56B\n0x8239C437\t0xB56C\n0x8239C438\t0xB56D\n0x8239C439\t0xB56E\n0x8239C530\t0xB56F\n0x8239C531\t0xB570\n0x8239C532\t0xB571\n0x8239C533\t0xB572\n0x8239C534\t0xB573\n0x8239C535\t0xB574\n0x8239C536\t0xB575\n0x8239C537\t0xB576\n0x8239C538\t0xB577\n0x8239C539\t0xB578\n0x8239C630\t0xB579\n0x8239C631\t0xB57A\n0x8239C632\t0xB57B\n0x8239C633\t0xB57C\n0x8239C634\t0xB57D\n0x8239C635\t0xB57E\n0x8239C636\t0xB57F\n0x8239C637\t0xB580\n0x8239C638\t0xB581\n0x8239C639\t0xB582\n0x8239C730\t0xB583\n0x8239C731\t0xB584\n0x8239C732\t0xB585\n0x8239C733\t0xB586\n0x8239C734\t0xB587\n0x8239C735\t0xB588\n0x8239C736\t0xB589\n0x8239C737\t0xB58A\n0x8239C738\t0xB58B\n0x8239C739\t0xB58C\n0x8239C830\t0xB58D\n0x8239C831\t0xB58E\n0x8239C832\t0xB58F\n0x8239C833\t0xB590\n0x8239C834\t0xB591\n0x8239C835\t0xB592\n0x8239C836\t0xB593\n0x8239C837\t0xB594\n0x8239C838\t0xB595\n0x8239C839\t0xB596\n0x8239C930\t0xB597\n0x8239C931\t0xB598\n0x8239C932\t0xB599\n0x8239C933\t0xB59A\n0x8239C934\t0xB59B\n0x8239C935\t0xB59C\n0x8239C936\t0xB59D\n0x8239C937\t0xB59E\n0x8239C938\t0xB59F\n0x8239C939\t0xB5A0\n0x8239CA30\t0xB5A1\n0x8239CA31\t0xB5A2\n0x8239CA32\t0xB5A3\n0x8239CA33\t0xB5A4\n0x8239CA34\t0xB5A5\n0x8239CA35\t0xB5A6\n0x8239CA36\t0xB5A7\n0x8239CA37\t0xB5A8\n0x8239CA38\t0xB5A9\n0x8239CA39\t0xB5AA\n0x8239CB30\t0xB5AB\n0x8239CB31\t0xB5AC\n0x8239CB32\t0xB5AD\n0x8239CB33\t0xB5AE\n0x8239CB34\t0xB5AF\n0x8239CB35\t0xB5B0\n0x8239CB36\t0xB5B1\n0x8239CB37\t0xB5B2\n0x8239CB38\t0xB5B3\n0x8239CB39\t0xB5B4\n0x8239CC30\t0xB5B5\n0x8239CC31\t0xB5B6\n0x8239CC32\t0xB5B7\n0x8239CC33\t0xB5B8\n0x8239CC34\t0xB5B9\n0x8239CC35\t0xB5BA\n0x8239CC36\t0xB5BB\n0x8239CC37\t0xB5BC\n0x8239CC38\t0xB5BD\n0x8239CC39\t0xB5BE\n0x8239CD30\t0xB5BF\n0x8239CD31\t0xB5C0\n0x8239CD32\t0xB5C1\n0x8239CD33\t0xB5C2\n0x8239CD34\t0xB5C3\n0x8239CD35\t0xB5C4\n0x8239CD36\t0xB5C5\n0x8239CD37\t0xB5C6\n0x8239CD38\t0xB5C7\n0x8239CD39\t0xB5C8\n0x8239CE30\t0xB5C9\n0x8239CE31\t0xB5CA\n0x8239CE32\t0xB5CB\n0x8239CE33\t0xB5CC\n0x8239CE34\t0xB5CD\n0x8239CE35\t0xB5CE\n0x8239CE36\t0xB5CF\n0x8239CE37\t0xB5D0\n0x8239CE38\t0xB5D1\n0x8239CE39\t0xB5D2\n0x8239CF30\t0xB5D3\n0x8239CF31\t0xB5D4\n0x8239CF32\t0xB5D5\n0x8239CF33\t0xB5D6\n0x8239CF34\t0xB5D7\n0x8239CF35\t0xB5D8\n0x8239CF36\t0xB5D9\n0x8239CF37\t0xB5DA\n0x8239CF38\t0xB5DB\n0x8239CF39\t0xB5DC\n0x8239D030\t0xB5DD\n0x8239D031\t0xB5DE\n0x8239D032\t0xB5DF\n0x8239D033\t0xB5E0\n0x8239D034\t0xB5E1\n0x8239D035\t0xB5E2\n0x8239D036\t0xB5E3\n0x8239D037\t0xB5E4\n0x8239D038\t0xB5E5\n0x8239D039\t0xB5E6\n0x8239D130\t0xB5E7\n0x8239D131\t0xB5E8\n0x8239D132\t0xB5E9\n0x8239D133\t0xB5EA\n0x8239D134\t0xB5EB\n0x8239D135\t0xB5EC\n0x8239D136\t0xB5ED\n0x8239D137\t0xB5EE\n0x8239D138\t0xB5EF\n0x8239D139\t0xB5F0\n0x8239D230\t0xB5F1\n0x8239D231\t0xB5F2\n0x8239D232\t0xB5F3\n0x8239D233\t0xB5F4\n0x8239D234\t0xB5F5\n0x8239D235\t0xB5F6\n0x8239D236\t0xB5F7\n0x8239D237\t0xB5F8\n0x8239D238\t0xB5F9\n0x8239D239\t0xB5FA\n0x8239D330\t0xB5FB\n0x8239D331\t0xB5FC\n0x8239D332\t0xB5FD\n0x8239D333\t0xB5FE\n0x8239D334\t0xB5FF\n0x8239D335\t0xB600\n0x8239D336\t0xB601\n0x8239D337\t0xB602\n0x8239D338\t0xB603\n0x8239D339\t0xB604\n0x8239D430\t0xB605\n0x8239D431\t0xB606\n0x8239D432\t0xB607\n0x8239D433\t0xB608\n0x8239D434\t0xB609\n0x8239D435\t0xB60A\n0x8239D436\t0xB60B\n0x8239D437\t0xB60C\n0x8239D438\t0xB60D\n0x8239D439\t0xB60E\n0x8239D530\t0xB60F\n0x8239D531\t0xB610\n0x8239D532\t0xB611\n0x8239D533\t0xB612\n0x8239D534\t0xB613\n0x8239D535\t0xB614\n0x8239D536\t0xB615\n0x8239D537\t0xB616\n0x8239D538\t0xB617\n0x8239D539\t0xB618\n0x8239D630\t0xB619\n0x8239D631\t0xB61A\n0x8239D632\t0xB61B\n0x8239D633\t0xB61C\n0x8239D634\t0xB61D\n0x8239D635\t0xB61E\n0x8239D636\t0xB61F\n0x8239D637\t0xB620\n0x8239D638\t0xB621\n0x8239D639\t0xB622\n0x8239D730\t0xB623\n0x8239D731\t0xB624\n0x8239D732\t0xB625\n0x8239D733\t0xB626\n0x8239D734\t0xB627\n0x8239D735\t0xB628\n0x8239D736\t0xB629\n0x8239D737\t0xB62A\n0x8239D738\t0xB62B\n0x8239D739\t0xB62C\n0x8239D830\t0xB62D\n0x8239D831\t0xB62E\n0x8239D832\t0xB62F\n0x8239D833\t0xB630\n0x8239D834\t0xB631\n0x8239D835\t0xB632\n0x8239D836\t0xB633\n0x8239D837\t0xB634\n0x8239D838\t0xB635\n0x8239D839\t0xB636\n0x8239D930\t0xB637\n0x8239D931\t0xB638\n0x8239D932\t0xB639\n0x8239D933\t0xB63A\n0x8239D934\t0xB63B\n0x8239D935\t0xB63C\n0x8239D936\t0xB63D\n0x8239D937\t0xB63E\n0x8239D938\t0xB63F\n0x8239D939\t0xB640\n0x8239DA30\t0xB641\n0x8239DA31\t0xB642\n0x8239DA32\t0xB643\n0x8239DA33\t0xB644\n0x8239DA34\t0xB645\n0x8239DA35\t0xB646\n0x8239DA36\t0xB647\n0x8239DA37\t0xB648\n0x8239DA38\t0xB649\n0x8239DA39\t0xB64A\n0x8239DB30\t0xB64B\n0x8239DB31\t0xB64C\n0x8239DB32\t0xB64D\n0x8239DB33\t0xB64E\n0x8239DB34\t0xB64F\n0x8239DB35\t0xB650\n0x8239DB36\t0xB651\n0x8239DB37\t0xB652\n0x8239DB38\t0xB653\n0x8239DB39\t0xB654\n0x8239DC30\t0xB655\n0x8239DC31\t0xB656\n0x8239DC32\t0xB657\n0x8239DC33\t0xB658\n0x8239DC34\t0xB659\n0x8239DC35\t0xB65A\n0x8239DC36\t0xB65B\n0x8239DC37\t0xB65C\n0x8239DC38\t0xB65D\n0x8239DC39\t0xB65E\n0x8239DD30\t0xB65F\n0x8239DD31\t0xB660\n0x8239DD32\t0xB661\n0x8239DD33\t0xB662\n0x8239DD34\t0xB663\n0x8239DD35\t0xB664\n0x8239DD36\t0xB665\n0x8239DD37\t0xB666\n0x8239DD38\t0xB667\n0x8239DD39\t0xB668\n0x8239DE30\t0xB669\n0x8239DE31\t0xB66A\n0x8239DE32\t0xB66B\n0x8239DE33\t0xB66C\n0x8239DE34\t0xB66D\n0x8239DE35\t0xB66E\n0x8239DE36\t0xB66F\n0x8239DE37\t0xB670\n0x8239DE38\t0xB671\n0x8239DE39\t0xB672\n0x8239DF30\t0xB673\n0x8239DF31\t0xB674\n0x8239DF32\t0xB675\n0x8239DF33\t0xB676\n0x8239DF34\t0xB677\n0x8239DF35\t0xB678\n0x8239DF36\t0xB679\n0x8239DF37\t0xB67A\n0x8239DF38\t0xB67B\n0x8239DF39\t0xB67C\n0x8239E030\t0xB67D\n0x8239E031\t0xB67E\n0x8239E032\t0xB67F\n0x8239E033\t0xB680\n0x8239E034\t0xB681\n0x8239E035\t0xB682\n0x8239E036\t0xB683\n0x8239E037\t0xB684\n0x8239E038\t0xB685\n0x8239E039\t0xB686\n0x8239E130\t0xB687\n0x8239E131\t0xB688\n0x8239E132\t0xB689\n0x8239E133\t0xB68A\n0x8239E134\t0xB68B\n0x8239E135\t0xB68C\n0x8239E136\t0xB68D\n0x8239E137\t0xB68E\n0x8239E138\t0xB68F\n0x8239E139\t0xB690\n0x8239E230\t0xB691\n0x8239E231\t0xB692\n0x8239E232\t0xB693\n0x8239E233\t0xB694\n0x8239E234\t0xB695\n0x8239E235\t0xB696\n0x8239E236\t0xB697\n0x8239E237\t0xB698\n0x8239E238\t0xB699\n0x8239E239\t0xB69A\n0x8239E330\t0xB69B\n0x8239E331\t0xB69C\n0x8239E332\t0xB69D\n0x8239E333\t0xB69E\n0x8239E334\t0xB69F\n0x8239E335\t0xB6A0\n0x8239E336\t0xB6A1\n0x8239E337\t0xB6A2\n0x8239E338\t0xB6A3\n0x8239E339\t0xB6A4\n0x8239E430\t0xB6A5\n0x8239E431\t0xB6A6\n0x8239E432\t0xB6A7\n0x8239E433\t0xB6A8\n0x8239E434\t0xB6A9\n0x8239E435\t0xB6AA\n0x8239E436\t0xB6AB\n0x8239E437\t0xB6AC\n0x8239E438\t0xB6AD\n0x8239E439\t0xB6AE\n0x8239E530\t0xB6AF\n0x8239E531\t0xB6B0\n0x8239E532\t0xB6B1\n0x8239E533\t0xB6B2\n0x8239E534\t0xB6B3\n0x8239E535\t0xB6B4\n0x8239E536\t0xB6B5\n0x8239E537\t0xB6B6\n0x8239E538\t0xB6B7\n0x8239E539\t0xB6B8\n0x8239E630\t0xB6B9\n0x8239E631\t0xB6BA\n0x8239E632\t0xB6BB\n0x8239E633\t0xB6BC\n0x8239E634\t0xB6BD\n0x8239E635\t0xB6BE\n0x8239E636\t0xB6BF\n0x8239E637\t0xB6C0\n0x8239E638\t0xB6C1\n0x8239E639\t0xB6C2\n0x8239E730\t0xB6C3\n0x8239E731\t0xB6C4\n0x8239E732\t0xB6C5\n0x8239E733\t0xB6C6\n0x8239E734\t0xB6C7\n0x8239E735\t0xB6C8\n0x8239E736\t0xB6C9\n0x8239E737\t0xB6CA\n0x8239E738\t0xB6CB\n0x8239E739\t0xB6CC\n0x8239E830\t0xB6CD\n0x8239E831\t0xB6CE\n0x8239E832\t0xB6CF\n0x8239E833\t0xB6D0\n0x8239E834\t0xB6D1\n0x8239E835\t0xB6D2\n0x8239E836\t0xB6D3\n0x8239E837\t0xB6D4\n0x8239E838\t0xB6D5\n0x8239E839\t0xB6D6\n0x8239E930\t0xB6D7\n0x8239E931\t0xB6D8\n0x8239E932\t0xB6D9\n0x8239E933\t0xB6DA\n0x8239E934\t0xB6DB\n0x8239E935\t0xB6DC\n0x8239E936\t0xB6DD\n0x8239E937\t0xB6DE\n0x8239E938\t0xB6DF\n0x8239E939\t0xB6E0\n0x8239EA30\t0xB6E1\n0x8239EA31\t0xB6E2\n0x8239EA32\t0xB6E3\n0x8239EA33\t0xB6E4\n0x8239EA34\t0xB6E5\n0x8239EA35\t0xB6E6\n0x8239EA36\t0xB6E7\n0x8239EA37\t0xB6E8\n0x8239EA38\t0xB6E9\n0x8239EA39\t0xB6EA\n0x8239EB30\t0xB6EB\n0x8239EB31\t0xB6EC\n0x8239EB32\t0xB6ED\n0x8239EB33\t0xB6EE\n0x8239EB34\t0xB6EF\n0x8239EB35\t0xB6F0\n0x8239EB36\t0xB6F1\n0x8239EB37\t0xB6F2\n0x8239EB38\t0xB6F3\n0x8239EB39\t0xB6F4\n0x8239EC30\t0xB6F5\n0x8239EC31\t0xB6F6\n0x8239EC32\t0xB6F7\n0x8239EC33\t0xB6F8\n0x8239EC34\t0xB6F9\n0x8239EC35\t0xB6FA\n0x8239EC36\t0xB6FB\n0x8239EC37\t0xB6FC\n0x8239EC38\t0xB6FD\n0x8239EC39\t0xB6FE\n0x8239ED30\t0xB6FF\n0x8239ED31\t0xB700\n0x8239ED32\t0xB701\n0x8239ED33\t0xB702\n0x8239ED34\t0xB703\n0x8239ED35\t0xB704\n0x8239ED36\t0xB705\n0x8239ED37\t0xB706\n0x8239ED38\t0xB707\n0x8239ED39\t0xB708\n0x8239EE30\t0xB709\n0x8239EE31\t0xB70A\n0x8239EE32\t0xB70B\n0x8239EE33\t0xB70C\n0x8239EE34\t0xB70D\n0x8239EE35\t0xB70E\n0x8239EE36\t0xB70F\n0x8239EE37\t0xB710\n0x8239EE38\t0xB711\n0x8239EE39\t0xB712\n0x8239EF30\t0xB713\n0x8239EF31\t0xB714\n0x8239EF32\t0xB715\n0x8239EF33\t0xB716\n0x8239EF34\t0xB717\n0x8239EF35\t0xB718\n0x8239EF36\t0xB719\n0x8239EF37\t0xB71A\n0x8239EF38\t0xB71B\n0x8239EF39\t0xB71C\n0x8239F030\t0xB71D\n0x8239F031\t0xB71E\n0x8239F032\t0xB71F\n0x8239F033\t0xB720\n0x8239F034\t0xB721\n0x8239F035\t0xB722\n0x8239F036\t0xB723\n0x8239F037\t0xB724\n0x8239F038\t0xB725\n0x8239F039\t0xB726\n0x8239F130\t0xB727\n0x8239F131\t0xB728\n0x8239F132\t0xB729\n0x8239F133\t0xB72A\n0x8239F134\t0xB72B\n0x8239F135\t0xB72C\n0x8239F136\t0xB72D\n0x8239F137\t0xB72E\n0x8239F138\t0xB72F\n0x8239F139\t0xB730\n0x8239F230\t0xB731\n0x8239F231\t0xB732\n0x8239F232\t0xB733\n0x8239F233\t0xB734\n0x8239F234\t0xB735\n0x8239F235\t0xB736\n0x8239F236\t0xB737\n0x8239F237\t0xB738\n0x8239F238\t0xB739\n0x8239F239\t0xB73A\n0x8239F330\t0xB73B\n0x8239F331\t0xB73C\n0x8239F332\t0xB73D\n0x8239F333\t0xB73E\n0x8239F334\t0xB73F\n0x8239F335\t0xB740\n0x8239F336\t0xB741\n0x8239F337\t0xB742\n0x8239F338\t0xB743\n0x8239F339\t0xB744\n0x8239F430\t0xB745\n0x8239F431\t0xB746\n0x8239F432\t0xB747\n0x8239F433\t0xB748\n0x8239F434\t0xB749\n0x8239F435\t0xB74A\n0x8239F436\t0xB74B\n0x8239F437\t0xB74C\n0x8239F438\t0xB74D\n0x8239F439\t0xB74E\n0x8239F530\t0xB74F\n0x8239F531\t0xB750\n0x8239F532\t0xB751\n0x8239F533\t0xB752\n0x8239F534\t0xB753\n0x8239F535\t0xB754\n0x8239F536\t0xB755\n0x8239F537\t0xB756\n0x8239F538\t0xB757\n0x8239F539\t0xB758\n0x8239F630\t0xB759\n0x8239F631\t0xB75A\n0x8239F632\t0xB75B\n0x8239F633\t0xB75C\n0x8239F634\t0xB75D\n0x8239F635\t0xB75E\n0x8239F636\t0xB75F\n0x8239F637\t0xB760\n0x8239F638\t0xB761\n0x8239F639\t0xB762\n0x8239F730\t0xB763\n0x8239F731\t0xB764\n0x8239F732\t0xB765\n0x8239F733\t0xB766\n0x8239F734\t0xB767\n0x8239F735\t0xB768\n0x8239F736\t0xB769\n0x8239F737\t0xB76A\n0x8239F738\t0xB76B\n0x8239F739\t0xB76C\n0x8239F830\t0xB76D\n0x8239F831\t0xB76E\n0x8239F832\t0xB76F\n0x8239F833\t0xB770\n0x8239F834\t0xB771\n0x8239F835\t0xB772\n0x8239F836\t0xB773\n0x8239F837\t0xB774\n0x8239F838\t0xB775\n0x8239F839\t0xB776\n0x8239F930\t0xB777\n0x8239F931\t0xB778\n0x8239F932\t0xB779\n0x8239F933\t0xB77A\n0x8239F934\t0xB77B\n0x8239F935\t0xB77C\n0x8239F936\t0xB77D\n0x8239F937\t0xB77E\n0x8239F938\t0xB77F\n0x8239F939\t0xB780\n0x8239FA30\t0xB781\n0x8239FA31\t0xB782\n0x8239FA32\t0xB783\n0x8239FA33\t0xB784\n0x8239FA34\t0xB785\n0x8239FA35\t0xB786\n0x8239FA36\t0xB787\n0x8239FA37\t0xB788\n0x8239FA38\t0xB789\n0x8239FA39\t0xB78A\n0x8239FB30\t0xB78B\n0x8239FB31\t0xB78C\n0x8239FB32\t0xB78D\n0x8239FB33\t0xB78E\n0x8239FB34\t0xB78F\n0x8239FB35\t0xB790\n0x8239FB36\t0xB791\n0x8239FB37\t0xB792\n0x8239FB38\t0xB793\n0x8239FB39\t0xB794\n0x8239FC30\t0xB795\n0x8239FC31\t0xB796\n0x8239FC32\t0xB797\n0x8239FC33\t0xB798\n0x8239FC34\t0xB799\n0x8239FC35\t0xB79A\n0x8239FC36\t0xB79B\n0x8239FC37\t0xB79C\n0x8239FC38\t0xB79D\n0x8239FC39\t0xB79E\n0x8239FD30\t0xB79F\n0x8239FD31\t0xB7A0\n0x8239FD32\t0xB7A1\n0x8239FD33\t0xB7A2\n0x8239FD34\t0xB7A3\n0x8239FD35\t0xB7A4\n0x8239FD36\t0xB7A5\n0x8239FD37\t0xB7A6\n0x8239FD38\t0xB7A7\n0x8239FD39\t0xB7A8\n0x8239FE30\t0xB7A9\n0x8239FE31\t0xB7AA\n0x8239FE32\t0xB7AB\n0x8239FE33\t0xB7AC\n0x8239FE34\t0xB7AD\n0x8239FE35\t0xB7AE\n0x8239FE36\t0xB7AF\n0x8239FE37\t0xB7B0\n0x8239FE38\t0xB7B1\n0x8239FE39\t0xB7B2\n0x8240\t0x4FA4\n0x8241\t0x4FAB\n0x8242\t0x4FAD\n0x8243\t0x4FB0\n0x8244\t0x4FB1\n0x8245\t0x4FB2\n0x8246\t0x4FB3\n0x8247\t0x4FB4\n0x8248\t0x4FB6\n0x8249\t0x4FB7\n0x824A\t0x4FB8\n0x824B\t0x4FB9\n0x824C\t0x4FBA\n0x824D\t0x4FBB\n0x824E\t0x4FBC\n0x824F\t0x4FBD\n0x8250\t0x4FBE\n0x8251\t0x4FC0\n0x8252\t0x4FC1\n0x8253\t0x4FC2\n0x8254\t0x4FC6\n0x8255\t0x4FC7\n0x8256\t0x4FC8\n0x8257\t0x4FC9\n0x8258\t0x4FCB\n0x8259\t0x4FCC\n0x825A\t0x4FCD\n0x825B\t0x4FD2\n0x825C\t0x4FD3\n0x825D\t0x4FD4\n0x825E\t0x4FD5\n0x825F\t0x4FD6\n0x8260\t0x4FD9\n0x8261\t0x4FDB\n0x8262\t0x4FE0\n0x8263\t0x4FE2\n0x8264\t0x4FE4\n0x8265\t0x4FE5\n0x8266\t0x4FE7\n0x8267\t0x4FEB\n0x8268\t0x4FEC\n0x8269\t0x4FF0\n0x826A\t0x4FF2\n0x826B\t0x4FF4\n0x826C\t0x4FF5\n0x826D\t0x4FF6\n0x826E\t0x4FF7\n0x826F\t0x4FF9\n0x8270\t0x4FFB\n0x8271\t0x4FFC\n0x8272\t0x4FFD\n0x8273\t0x4FFF\n0x8274\t0x5000\n0x8275\t0x5001\n0x8276\t0x5002\n0x8277\t0x5003\n0x8278\t0x5004\n0x8279\t0x5005\n0x827A\t0x5006\n0x827B\t0x5007\n0x827C\t0x5008\n0x827D\t0x5009\n0x827E\t0x500A\n0x8280\t0x500B\n0x8281\t0x500E\n0x8282\t0x5010\n0x8283\t0x5011\n0x8284\t0x5013\n0x8285\t0x5015\n0x8286\t0x5016\n0x8287\t0x5017\n0x8288\t0x501B\n0x8289\t0x501D\n0x828A\t0x501E\n0x828B\t0x5020\n0x828C\t0x5022\n0x828D\t0x5023\n0x828E\t0x5024\n0x828F\t0x5027\n0x8290\t0x502B\n0x8291\t0x502F\n0x8292\t0x5030\n0x8293\t0x5031\n0x8294\t0x5032\n0x8295\t0x5033\n0x8296\t0x5034\n0x8297\t0x5035\n0x8298\t0x5036\n0x8299\t0x5037\n0x829A\t0x5038\n0x829B\t0x5039\n0x829C\t0x503B\n0x829D\t0x503D\n0x829E\t0x503F\n0x829F\t0x5040\n0x82A0\t0x5041\n0x82A1\t0x5042\n0x82A2\t0x5044\n0x82A3\t0x5045\n0x82A4\t0x5046\n0x82A5\t0x5049\n0x82A6\t0x504A\n0x82A7\t0x504B\n0x82A8\t0x504D\n0x82A9\t0x5050\n0x82AA\t0x5051\n0x82AB\t0x5052\n0x82AC\t0x5053\n0x82AD\t0x5054\n0x82AE\t0x5056\n0x82AF\t0x5057\n0x82B0\t0x5058\n0x82B1\t0x5059\n0x82B2\t0x505B\n0x82B3\t0x505D\n0x82B4\t0x505E\n0x82B5\t0x505F\n0x82B6\t0x5060\n0x82B7\t0x5061\n0x82B8\t0x5062\n0x82B9\t0x5063\n0x82BA\t0x5064\n0x82BB\t0x5066\n0x82BC\t0x5067\n0x82BD\t0x5068\n0x82BE\t0x5069\n0x82BF\t0x506A\n0x82C0\t0x506B\n0x82C1\t0x506D\n0x82C2\t0x506E\n0x82C3\t0x506F\n0x82C4\t0x5070\n0x82C5\t0x5071\n0x82C6\t0x5072\n0x82C7\t0x5073\n0x82C8\t0x5074\n0x82C9\t0x5075\n0x82CA\t0x5078\n0x82CB\t0x5079\n0x82CC\t0x507A\n0x82CD\t0x507C\n0x82CE\t0x507D\n0x82CF\t0x5081\n0x82D0\t0x5082\n0x82D1\t0x5083\n0x82D2\t0x5084\n0x82D3\t0x5086\n0x82D4\t0x5087\n0x82D5\t0x5089\n0x82D6\t0x508A\n0x82D7\t0x508B\n0x82D8\t0x508C\n0x82D9\t0x508E\n0x82DA\t0x508F\n0x82DB\t0x5090\n0x82DC\t0x5091\n0x82DD\t0x5092\n0x82DE\t0x5093\n0x82DF\t0x5094\n0x82E0\t0x5095\n0x82E1\t0x5096\n0x82E2\t0x5097\n0x82E3\t0x5098\n0x82E4\t0x5099\n0x82E5\t0x509A\n0x82E6\t0x509B\n0x82E7\t0x509C\n0x82E8\t0x509D\n0x82E9\t0x509E\n0x82EA\t0x509F\n0x82EB\t0x50A0\n0x82EC\t0x50A1\n0x82ED\t0x50A2\n0x82EE\t0x50A4\n0x82EF\t0x50A6\n0x82F0\t0x50AA\n0x82F1\t0x50AB\n0x82F2\t0x50AD\n0x82F3\t0x50AE\n0x82F4\t0x50AF\n0x82F5\t0x50B0\n0x82F6\t0x50B1\n0x82F7\t0x50B3\n0x82F8\t0x50B4\n0x82F9\t0x50B5\n0x82FA\t0x50B6\n0x82FB\t0x50B7\n0x82FC\t0x50B8\n0x82FD\t0x50B9\n0x82FE\t0x50BC\n0x83308130\t0xB7B3\n0x83308131\t0xB7B4\n0x83308132\t0xB7B5\n0x83308133\t0xB7B6\n0x83308134\t0xB7B7\n0x83308135\t0xB7B8\n0x83308136\t0xB7B9\n0x83308137\t0xB7BA\n0x83308138\t0xB7BB\n0x83308139\t0xB7BC\n0x83308230\t0xB7BD\n0x83308231\t0xB7BE\n0x83308232\t0xB7BF\n0x83308233\t0xB7C0\n0x83308234\t0xB7C1\n0x83308235\t0xB7C2\n0x83308236\t0xB7C3\n0x83308237\t0xB7C4\n0x83308238\t0xB7C5\n0x83308239\t0xB7C6\n0x83308330\t0xB7C7\n0x83308331\t0xB7C8\n0x83308332\t0xB7C9\n0x83308333\t0xB7CA\n0x83308334\t0xB7CB\n0x83308335\t0xB7CC\n0x83308336\t0xB7CD\n0x83308337\t0xB7CE\n0x83308338\t0xB7CF\n0x83308339\t0xB7D0\n0x83308430\t0xB7D1\n0x83308431\t0xB7D2\n0x83308432\t0xB7D3\n0x83308433\t0xB7D4\n0x83308434\t0xB7D5\n0x83308435\t0xB7D6\n0x83308436\t0xB7D7\n0x83308437\t0xB7D8\n0x83308438\t0xB7D9\n0x83308439\t0xB7DA\n0x83308530\t0xB7DB\n0x83308531\t0xB7DC\n0x83308532\t0xB7DD\n0x83308533\t0xB7DE\n0x83308534\t0xB7DF\n0x83308535\t0xB7E0\n0x83308536\t0xB7E1\n0x83308537\t0xB7E2\n0x83308538\t0xB7E3\n0x83308539\t0xB7E4\n0x83308630\t0xB7E5\n0x83308631\t0xB7E6\n0x83308632\t0xB7E7\n0x83308633\t0xB7E8\n0x83308634\t0xB7E9\n0x83308635\t0xB7EA\n0x83308636\t0xB7EB\n0x83308637\t0xB7EC\n0x83308638\t0xB7ED\n0x83308639\t0xB7EE\n0x83308730\t0xB7EF\n0x83308731\t0xB7F0\n0x83308732\t0xB7F1\n0x83308733\t0xB7F2\n0x83308734\t0xB7F3\n0x83308735\t0xB7F4\n0x83308736\t0xB7F5\n0x83308737\t0xB7F6\n0x83308738\t0xB7F7\n0x83308739\t0xB7F8\n0x83308830\t0xB7F9\n0x83308831\t0xB7FA\n0x83308832\t0xB7FB\n0x83308833\t0xB7FC\n0x83308834\t0xB7FD\n0x83308835\t0xB7FE\n0x83308836\t0xB7FF\n0x83308837\t0xB800\n0x83308838\t0xB801\n0x83308839\t0xB802\n0x83308930\t0xB803\n0x83308931\t0xB804\n0x83308932\t0xB805\n0x83308933\t0xB806\n0x83308934\t0xB807\n0x83308935\t0xB808\n0x83308936\t0xB809\n0x83308937\t0xB80A\n0x83308938\t0xB80B\n0x83308939\t0xB80C\n0x83308A30\t0xB80D\n0x83308A31\t0xB80E\n0x83308A32\t0xB80F\n0x83308A33\t0xB810\n0x83308A34\t0xB811\n0x83308A35\t0xB812\n0x83308A36\t0xB813\n0x83308A37\t0xB814\n0x83308A38\t0xB815\n0x83308A39\t0xB816\n0x83308B30\t0xB817\n0x83308B31\t0xB818\n0x83308B32\t0xB819\n0x83308B33\t0xB81A\n0x83308B34\t0xB81B\n0x83308B35\t0xB81C\n0x83308B36\t0xB81D\n0x83308B37\t0xB81E\n0x83308B38\t0xB81F\n0x83308B39\t0xB820\n0x83308C30\t0xB821\n0x83308C31\t0xB822\n0x83308C32\t0xB823\n0x83308C33\t0xB824\n0x83308C34\t0xB825\n0x83308C35\t0xB826\n0x83308C36\t0xB827\n0x83308C37\t0xB828\n0x83308C38\t0xB829\n0x83308C39\t0xB82A\n0x83308D30\t0xB82B\n0x83308D31\t0xB82C\n0x83308D32\t0xB82D\n0x83308D33\t0xB82E\n0x83308D34\t0xB82F\n0x83308D35\t0xB830\n0x83308D36\t0xB831\n0x83308D37\t0xB832\n0x83308D38\t0xB833\n0x83308D39\t0xB834\n0x83308E30\t0xB835\n0x83308E31\t0xB836\n0x83308E32\t0xB837\n0x83308E33\t0xB838\n0x83308E34\t0xB839\n0x83308E35\t0xB83A\n0x83308E36\t0xB83B\n0x83308E37\t0xB83C\n0x83308E38\t0xB83D\n0x83308E39\t0xB83E\n0x83308F30\t0xB83F\n0x83308F31\t0xB840\n0x83308F32\t0xB841\n0x83308F33\t0xB842\n0x83308F34\t0xB843\n0x83308F35\t0xB844\n0x83308F36\t0xB845\n0x83308F37\t0xB846\n0x83308F38\t0xB847\n0x83308F39\t0xB848\n0x83309030\t0xB849\n0x83309031\t0xB84A\n0x83309032\t0xB84B\n0x83309033\t0xB84C\n0x83309034\t0xB84D\n0x83309035\t0xB84E\n0x83309036\t0xB84F\n0x83309037\t0xB850\n0x83309038\t0xB851\n0x83309039\t0xB852\n0x83309130\t0xB853\n0x83309131\t0xB854\n0x83309132\t0xB855\n0x83309133\t0xB856\n0x83309134\t0xB857\n0x83309135\t0xB858\n0x83309136\t0xB859\n0x83309137\t0xB85A\n0x83309138\t0xB85B\n0x83309139\t0xB85C\n0x83309230\t0xB85D\n0x83309231\t0xB85E\n0x83309232\t0xB85F\n0x83309233\t0xB860\n0x83309234\t0xB861\n0x83309235\t0xB862\n0x83309236\t0xB863\n0x83309237\t0xB864\n0x83309238\t0xB865\n0x83309239\t0xB866\n0x83309330\t0xB867\n0x83309331\t0xB868\n0x83309332\t0xB869\n0x83309333\t0xB86A\n0x83309334\t0xB86B\n0x83309335\t0xB86C\n0x83309336\t0xB86D\n0x83309337\t0xB86E\n0x83309338\t0xB86F\n0x83309339\t0xB870\n0x83309430\t0xB871\n0x83309431\t0xB872\n0x83309432\t0xB873\n0x83309433\t0xB874\n0x83309434\t0xB875\n0x83309435\t0xB876\n0x83309436\t0xB877\n0x83309437\t0xB878\n0x83309438\t0xB879\n0x83309439\t0xB87A\n0x83309530\t0xB87B\n0x83309531\t0xB87C\n0x83309532\t0xB87D\n0x83309533\t0xB87E\n0x83309534\t0xB87F\n0x83309535\t0xB880\n0x83309536\t0xB881\n0x83309537\t0xB882\n0x83309538\t0xB883\n0x83309539\t0xB884\n0x83309630\t0xB885\n0x83309631\t0xB886\n0x83309632\t0xB887\n0x83309633\t0xB888\n0x83309634\t0xB889\n0x83309635\t0xB88A\n0x83309636\t0xB88B\n0x83309637\t0xB88C\n0x83309638\t0xB88D\n0x83309639\t0xB88E\n0x83309730\t0xB88F\n0x83309731\t0xB890\n0x83309732\t0xB891\n0x83309733\t0xB892\n0x83309734\t0xB893\n0x83309735\t0xB894\n0x83309736\t0xB895\n0x83309737\t0xB896\n0x83309738\t0xB897\n0x83309739\t0xB898\n0x83309830\t0xB899\n0x83309831\t0xB89A\n0x83309832\t0xB89B\n0x83309833\t0xB89C\n0x83309834\t0xB89D\n0x83309835\t0xB89E\n0x83309836\t0xB89F\n0x83309837\t0xB8A0\n0x83309838\t0xB8A1\n0x83309839\t0xB8A2\n0x83309930\t0xB8A3\n0x83309931\t0xB8A4\n0x83309932\t0xB8A5\n0x83309933\t0xB8A6\n0x83309934\t0xB8A7\n0x83309935\t0xB8A8\n0x83309936\t0xB8A9\n0x83309937\t0xB8AA\n0x83309938\t0xB8AB\n0x83309939\t0xB8AC\n0x83309A30\t0xB8AD\n0x83309A31\t0xB8AE\n0x83309A32\t0xB8AF\n0x83309A33\t0xB8B0\n0x83309A34\t0xB8B1\n0x83309A35\t0xB8B2\n0x83309A36\t0xB8B3\n0x83309A37\t0xB8B4\n0x83309A38\t0xB8B5\n0x83309A39\t0xB8B6\n0x83309B30\t0xB8B7\n0x83309B31\t0xB8B8\n0x83309B32\t0xB8B9\n0x83309B33\t0xB8BA\n0x83309B34\t0xB8BB\n0x83309B35\t0xB8BC\n0x83309B36\t0xB8BD\n0x83309B37\t0xB8BE\n0x83309B38\t0xB8BF\n0x83309B39\t0xB8C0\n0x83309C30\t0xB8C1\n0x83309C31\t0xB8C2\n0x83309C32\t0xB8C3\n0x83309C33\t0xB8C4\n0x83309C34\t0xB8C5\n0x83309C35\t0xB8C6\n0x83309C36\t0xB8C7\n0x83309C37\t0xB8C8\n0x83309C38\t0xB8C9\n0x83309C39\t0xB8CA\n0x83309D30\t0xB8CB\n0x83309D31\t0xB8CC\n0x83309D32\t0xB8CD\n0x83309D33\t0xB8CE\n0x83309D34\t0xB8CF\n0x83309D35\t0xB8D0\n0x83309D36\t0xB8D1\n0x83309D37\t0xB8D2\n0x83309D38\t0xB8D3\n0x83309D39\t0xB8D4\n0x83309E30\t0xB8D5\n0x83309E31\t0xB8D6\n0x83309E32\t0xB8D7\n0x83309E33\t0xB8D8\n0x83309E34\t0xB8D9\n0x83309E35\t0xB8DA\n0x83309E36\t0xB8DB\n0x83309E37\t0xB8DC\n0x83309E38\t0xB8DD\n0x83309E39\t0xB8DE\n0x83309F30\t0xB8DF\n0x83309F31\t0xB8E0\n0x83309F32\t0xB8E1\n0x83309F33\t0xB8E2\n0x83309F34\t0xB8E3\n0x83309F35\t0xB8E4\n0x83309F36\t0xB8E5\n0x83309F37\t0xB8E6\n0x83309F38\t0xB8E7\n0x83309F39\t0xB8E8\n0x8330A030\t0xB8E9\n0x8330A031\t0xB8EA\n0x8330A032\t0xB8EB\n0x8330A033\t0xB8EC\n0x8330A034\t0xB8ED\n0x8330A035\t0xB8EE\n0x8330A036\t0xB8EF\n0x8330A037\t0xB8F0\n0x8330A038\t0xB8F1\n0x8330A039\t0xB8F2\n0x8330A130\t0xB8F3\n0x8330A131\t0xB8F4\n0x8330A132\t0xB8F5\n0x8330A133\t0xB8F6\n0x8330A134\t0xB8F7\n0x8330A135\t0xB8F8\n0x8330A136\t0xB8F9\n0x8330A137\t0xB8FA\n0x8330A138\t0xB8FB\n0x8330A139\t0xB8FC\n0x8330A230\t0xB8FD\n0x8330A231\t0xB8FE\n0x8330A232\t0xB8FF\n0x8330A233\t0xB900\n0x8330A234\t0xB901\n0x8330A235\t0xB902\n0x8330A236\t0xB903\n0x8330A237\t0xB904\n0x8330A238\t0xB905\n0x8330A239\t0xB906\n0x8330A330\t0xB907\n0x8330A331\t0xB908\n0x8330A332\t0xB909\n0x8330A333\t0xB90A\n0x8330A334\t0xB90B\n0x8330A335\t0xB90C\n0x8330A336\t0xB90D\n0x8330A337\t0xB90E\n0x8330A338\t0xB90F\n0x8330A339\t0xB910\n0x8330A430\t0xB911\n0x8330A431\t0xB912\n0x8330A432\t0xB913\n0x8330A433\t0xB914\n0x8330A434\t0xB915\n0x8330A435\t0xB916\n0x8330A436\t0xB917\n0x8330A437\t0xB918\n0x8330A438\t0xB919\n0x8330A439\t0xB91A\n0x8330A530\t0xB91B\n0x8330A531\t0xB91C\n0x8330A532\t0xB91D\n0x8330A533\t0xB91E\n0x8330A534\t0xB91F\n0x8330A535\t0xB920\n0x8330A536\t0xB921\n0x8330A537\t0xB922\n0x8330A538\t0xB923\n0x8330A539\t0xB924\n0x8330A630\t0xB925\n0x8330A631\t0xB926\n0x8330A632\t0xB927\n0x8330A633\t0xB928\n0x8330A634\t0xB929\n0x8330A635\t0xB92A\n0x8330A636\t0xB92B\n0x8330A637\t0xB92C\n0x8330A638\t0xB92D\n0x8330A639\t0xB92E\n0x8330A730\t0xB92F\n0x8330A731\t0xB930\n0x8330A732\t0xB931\n0x8330A733\t0xB932\n0x8330A734\t0xB933\n0x8330A735\t0xB934\n0x8330A736\t0xB935\n0x8330A737\t0xB936\n0x8330A738\t0xB937\n0x8330A739\t0xB938\n0x8330A830\t0xB939\n0x8330A831\t0xB93A\n0x8330A832\t0xB93B\n0x8330A833\t0xB93C\n0x8330A834\t0xB93D\n0x8330A835\t0xB93E\n0x8330A836\t0xB93F\n0x8330A837\t0xB940\n0x8330A838\t0xB941\n0x8330A839\t0xB942\n0x8330A930\t0xB943\n0x8330A931\t0xB944\n0x8330A932\t0xB945\n0x8330A933\t0xB946\n0x8330A934\t0xB947\n0x8330A935\t0xB948\n0x8330A936\t0xB949\n0x8330A937\t0xB94A\n0x8330A938\t0xB94B\n0x8330A939\t0xB94C\n0x8330AA30\t0xB94D\n0x8330AA31\t0xB94E\n0x8330AA32\t0xB94F\n0x8330AA33\t0xB950\n0x8330AA34\t0xB951\n0x8330AA35\t0xB952\n0x8330AA36\t0xB953\n0x8330AA37\t0xB954\n0x8330AA38\t0xB955\n0x8330AA39\t0xB956\n0x8330AB30\t0xB957\n0x8330AB31\t0xB958\n0x8330AB32\t0xB959\n0x8330AB33\t0xB95A\n0x8330AB34\t0xB95B\n0x8330AB35\t0xB95C\n0x8330AB36\t0xB95D\n0x8330AB37\t0xB95E\n0x8330AB38\t0xB95F\n0x8330AB39\t0xB960\n0x8330AC30\t0xB961\n0x8330AC31\t0xB962\n0x8330AC32\t0xB963\n0x8330AC33\t0xB964\n0x8330AC34\t0xB965\n0x8330AC35\t0xB966\n0x8330AC36\t0xB967\n0x8330AC37\t0xB968\n0x8330AC38\t0xB969\n0x8330AC39\t0xB96A\n0x8330AD30\t0xB96B\n0x8330AD31\t0xB96C\n0x8330AD32\t0xB96D\n0x8330AD33\t0xB96E\n0x8330AD34\t0xB96F\n0x8330AD35\t0xB970\n0x8330AD36\t0xB971\n0x8330AD37\t0xB972\n0x8330AD38\t0xB973\n0x8330AD39\t0xB974\n0x8330AE30\t0xB975\n0x8330AE31\t0xB976\n0x8330AE32\t0xB977\n0x8330AE33\t0xB978\n0x8330AE34\t0xB979\n0x8330AE35\t0xB97A\n0x8330AE36\t0xB97B\n0x8330AE37\t0xB97C\n0x8330AE38\t0xB97D\n0x8330AE39\t0xB97E\n0x8330AF30\t0xB97F\n0x8330AF31\t0xB980\n0x8330AF32\t0xB981\n0x8330AF33\t0xB982\n0x8330AF34\t0xB983\n0x8330AF35\t0xB984\n0x8330AF36\t0xB985\n0x8330AF37\t0xB986\n0x8330AF38\t0xB987\n0x8330AF39\t0xB988\n0x8330B030\t0xB989\n0x8330B031\t0xB98A\n0x8330B032\t0xB98B\n0x8330B033\t0xB98C\n0x8330B034\t0xB98D\n0x8330B035\t0xB98E\n0x8330B036\t0xB98F\n0x8330B037\t0xB990\n0x8330B038\t0xB991\n0x8330B039\t0xB992\n0x8330B130\t0xB993\n0x8330B131\t0xB994\n0x8330B132\t0xB995\n0x8330B133\t0xB996\n0x8330B134\t0xB997\n0x8330B135\t0xB998\n0x8330B136\t0xB999\n0x8330B137\t0xB99A\n0x8330B138\t0xB99B\n0x8330B139\t0xB99C\n0x8330B230\t0xB99D\n0x8330B231\t0xB99E\n0x8330B232\t0xB99F\n0x8330B233\t0xB9A0\n0x8330B234\t0xB9A1\n0x8330B235\t0xB9A2\n0x8330B236\t0xB9A3\n0x8330B237\t0xB9A4\n0x8330B238\t0xB9A5\n0x8330B239\t0xB9A6\n0x8330B330\t0xB9A7\n0x8330B331\t0xB9A8\n0x8330B332\t0xB9A9\n0x8330B333\t0xB9AA\n0x8330B334\t0xB9AB\n0x8330B335\t0xB9AC\n0x8330B336\t0xB9AD\n0x8330B337\t0xB9AE\n0x8330B338\t0xB9AF\n0x8330B339\t0xB9B0\n0x8330B430\t0xB9B1\n0x8330B431\t0xB9B2\n0x8330B432\t0xB9B3\n0x8330B433\t0xB9B4\n0x8330B434\t0xB9B5\n0x8330B435\t0xB9B6\n0x8330B436\t0xB9B7\n0x8330B437\t0xB9B8\n0x8330B438\t0xB9B9\n0x8330B439\t0xB9BA\n0x8330B530\t0xB9BB\n0x8330B531\t0xB9BC\n0x8330B532\t0xB9BD\n0x8330B533\t0xB9BE\n0x8330B534\t0xB9BF\n0x8330B535\t0xB9C0\n0x8330B536\t0xB9C1\n0x8330B537\t0xB9C2\n0x8330B538\t0xB9C3\n0x8330B539\t0xB9C4\n0x8330B630\t0xB9C5\n0x8330B631\t0xB9C6\n0x8330B632\t0xB9C7\n0x8330B633\t0xB9C8\n0x8330B634\t0xB9C9\n0x8330B635\t0xB9CA\n0x8330B636\t0xB9CB\n0x8330B637\t0xB9CC\n0x8330B638\t0xB9CD\n0x8330B639\t0xB9CE\n0x8330B730\t0xB9CF\n0x8330B731\t0xB9D0\n0x8330B732\t0xB9D1\n0x8330B733\t0xB9D2\n0x8330B734\t0xB9D3\n0x8330B735\t0xB9D4\n0x8330B736\t0xB9D5\n0x8330B737\t0xB9D6\n0x8330B738\t0xB9D7\n0x8330B739\t0xB9D8\n0x8330B830\t0xB9D9\n0x8330B831\t0xB9DA\n0x8330B832\t0xB9DB\n0x8330B833\t0xB9DC\n0x8330B834\t0xB9DD\n0x8330B835\t0xB9DE\n0x8330B836\t0xB9DF\n0x8330B837\t0xB9E0\n0x8330B838\t0xB9E1\n0x8330B839\t0xB9E2\n0x8330B930\t0xB9E3\n0x8330B931\t0xB9E4\n0x8330B932\t0xB9E5\n0x8330B933\t0xB9E6\n0x8330B934\t0xB9E7\n0x8330B935\t0xB9E8\n0x8330B936\t0xB9E9\n0x8330B937\t0xB9EA\n0x8330B938\t0xB9EB\n0x8330B939\t0xB9EC\n0x8330BA30\t0xB9ED\n0x8330BA31\t0xB9EE\n0x8330BA32\t0xB9EF\n0x8330BA33\t0xB9F0\n0x8330BA34\t0xB9F1\n0x8330BA35\t0xB9F2\n0x8330BA36\t0xB9F3\n0x8330BA37\t0xB9F4\n0x8330BA38\t0xB9F5\n0x8330BA39\t0xB9F6\n0x8330BB30\t0xB9F7\n0x8330BB31\t0xB9F8\n0x8330BB32\t0xB9F9\n0x8330BB33\t0xB9FA\n0x8330BB34\t0xB9FB\n0x8330BB35\t0xB9FC\n0x8330BB36\t0xB9FD\n0x8330BB37\t0xB9FE\n0x8330BB38\t0xB9FF\n0x8330BB39\t0xBA00\n0x8330BC30\t0xBA01\n0x8330BC31\t0xBA02\n0x8330BC32\t0xBA03\n0x8330BC33\t0xBA04\n0x8330BC34\t0xBA05\n0x8330BC35\t0xBA06\n0x8330BC36\t0xBA07\n0x8330BC37\t0xBA08\n0x8330BC38\t0xBA09\n0x8330BC39\t0xBA0A\n0x8330BD30\t0xBA0B\n0x8330BD31\t0xBA0C\n0x8330BD32\t0xBA0D\n0x8330BD33\t0xBA0E\n0x8330BD34\t0xBA0F\n0x8330BD35\t0xBA10\n0x8330BD36\t0xBA11\n0x8330BD37\t0xBA12\n0x8330BD38\t0xBA13\n0x8330BD39\t0xBA14\n0x8330BE30\t0xBA15\n0x8330BE31\t0xBA16\n0x8330BE32\t0xBA17\n0x8330BE33\t0xBA18\n0x8330BE34\t0xBA19\n0x8330BE35\t0xBA1A\n0x8330BE36\t0xBA1B\n0x8330BE37\t0xBA1C\n0x8330BE38\t0xBA1D\n0x8330BE39\t0xBA1E\n0x8330BF30\t0xBA1F\n0x8330BF31\t0xBA20\n0x8330BF32\t0xBA21\n0x8330BF33\t0xBA22\n0x8330BF34\t0xBA23\n0x8330BF35\t0xBA24\n0x8330BF36\t0xBA25\n0x8330BF37\t0xBA26\n0x8330BF38\t0xBA27\n0x8330BF39\t0xBA28\n0x8330C030\t0xBA29\n0x8330C031\t0xBA2A\n0x8330C032\t0xBA2B\n0x8330C033\t0xBA2C\n0x8330C034\t0xBA2D\n0x8330C035\t0xBA2E\n0x8330C036\t0xBA2F\n0x8330C037\t0xBA30\n0x8330C038\t0xBA31\n0x8330C039\t0xBA32\n0x8330C130\t0xBA33\n0x8330C131\t0xBA34\n0x8330C132\t0xBA35\n0x8330C133\t0xBA36\n0x8330C134\t0xBA37\n0x8330C135\t0xBA38\n0x8330C136\t0xBA39\n0x8330C137\t0xBA3A\n0x8330C138\t0xBA3B\n0x8330C139\t0xBA3C\n0x8330C230\t0xBA3D\n0x8330C231\t0xBA3E\n0x8330C232\t0xBA3F\n0x8330C233\t0xBA40\n0x8330C234\t0xBA41\n0x8330C235\t0xBA42\n0x8330C236\t0xBA43\n0x8330C237\t0xBA44\n0x8330C238\t0xBA45\n0x8330C239\t0xBA46\n0x8330C330\t0xBA47\n0x8330C331\t0xBA48\n0x8330C332\t0xBA49\n0x8330C333\t0xBA4A\n0x8330C334\t0xBA4B\n0x8330C335\t0xBA4C\n0x8330C336\t0xBA4D\n0x8330C337\t0xBA4E\n0x8330C338\t0xBA4F\n0x8330C339\t0xBA50\n0x8330C430\t0xBA51\n0x8330C431\t0xBA52\n0x8330C432\t0xBA53\n0x8330C433\t0xBA54\n0x8330C434\t0xBA55\n0x8330C435\t0xBA56\n0x8330C436\t0xBA57\n0x8330C437\t0xBA58\n0x8330C438\t0xBA59\n0x8330C439\t0xBA5A\n0x8330C530\t0xBA5B\n0x8330C531\t0xBA5C\n0x8330C532\t0xBA5D\n0x8330C533\t0xBA5E\n0x8330C534\t0xBA5F\n0x8330C535\t0xBA60\n0x8330C536\t0xBA61\n0x8330C537\t0xBA62\n0x8330C538\t0xBA63\n0x8330C539\t0xBA64\n0x8330C630\t0xBA65\n0x8330C631\t0xBA66\n0x8330C632\t0xBA67\n0x8330C633\t0xBA68\n0x8330C634\t0xBA69\n0x8330C635\t0xBA6A\n0x8330C636\t0xBA6B\n0x8330C637\t0xBA6C\n0x8330C638\t0xBA6D\n0x8330C639\t0xBA6E\n0x8330C730\t0xBA6F\n0x8330C731\t0xBA70\n0x8330C732\t0xBA71\n0x8330C733\t0xBA72\n0x8330C734\t0xBA73\n0x8330C735\t0xBA74\n0x8330C736\t0xBA75\n0x8330C737\t0xBA76\n0x8330C738\t0xBA77\n0x8330C739\t0xBA78\n0x8330C830\t0xBA79\n0x8330C831\t0xBA7A\n0x8330C832\t0xBA7B\n0x8330C833\t0xBA7C\n0x8330C834\t0xBA7D\n0x8330C835\t0xBA7E\n0x8330C836\t0xBA7F\n0x8330C837\t0xBA80\n0x8330C838\t0xBA81\n0x8330C839\t0xBA82\n0x8330C930\t0xBA83\n0x8330C931\t0xBA84\n0x8330C932\t0xBA85\n0x8330C933\t0xBA86\n0x8330C934\t0xBA87\n0x8330C935\t0xBA88\n0x8330C936\t0xBA89\n0x8330C937\t0xBA8A\n0x8330C938\t0xBA8B\n0x8330C939\t0xBA8C\n0x8330CA30\t0xBA8D\n0x8330CA31\t0xBA8E\n0x8330CA32\t0xBA8F\n0x8330CA33\t0xBA90\n0x8330CA34\t0xBA91\n0x8330CA35\t0xBA92\n0x8330CA36\t0xBA93\n0x8330CA37\t0xBA94\n0x8330CA38\t0xBA95\n0x8330CA39\t0xBA96\n0x8330CB30\t0xBA97\n0x8330CB31\t0xBA98\n0x8330CB32\t0xBA99\n0x8330CB33\t0xBA9A\n0x8330CB34\t0xBA9B\n0x8330CB35\t0xBA9C\n0x8330CB36\t0xBA9D\n0x8330CB37\t0xBA9E\n0x8330CB38\t0xBA9F\n0x8330CB39\t0xBAA0\n0x8330CC30\t0xBAA1\n0x8330CC31\t0xBAA2\n0x8330CC32\t0xBAA3\n0x8330CC33\t0xBAA4\n0x8330CC34\t0xBAA5\n0x8330CC35\t0xBAA6\n0x8330CC36\t0xBAA7\n0x8330CC37\t0xBAA8\n0x8330CC38\t0xBAA9\n0x8330CC39\t0xBAAA\n0x8330CD30\t0xBAAB\n0x8330CD31\t0xBAAC\n0x8330CD32\t0xBAAD\n0x8330CD33\t0xBAAE\n0x8330CD34\t0xBAAF\n0x8330CD35\t0xBAB0\n0x8330CD36\t0xBAB1\n0x8330CD37\t0xBAB2\n0x8330CD38\t0xBAB3\n0x8330CD39\t0xBAB4\n0x8330CE30\t0xBAB5\n0x8330CE31\t0xBAB6\n0x8330CE32\t0xBAB7\n0x8330CE33\t0xBAB8\n0x8330CE34\t0xBAB9\n0x8330CE35\t0xBABA\n0x8330CE36\t0xBABB\n0x8330CE37\t0xBABC\n0x8330CE38\t0xBABD\n0x8330CE39\t0xBABE\n0x8330CF30\t0xBABF\n0x8330CF31\t0xBAC0\n0x8330CF32\t0xBAC1\n0x8330CF33\t0xBAC2\n0x8330CF34\t0xBAC3\n0x8330CF35\t0xBAC4\n0x8330CF36\t0xBAC5\n0x8330CF37\t0xBAC6\n0x8330CF38\t0xBAC7\n0x8330CF39\t0xBAC8\n0x8330D030\t0xBAC9\n0x8330D031\t0xBACA\n0x8330D032\t0xBACB\n0x8330D033\t0xBACC\n0x8330D034\t0xBACD\n0x8330D035\t0xBACE\n0x8330D036\t0xBACF\n0x8330D037\t0xBAD0\n0x8330D038\t0xBAD1\n0x8330D039\t0xBAD2\n0x8330D130\t0xBAD3\n0x8330D131\t0xBAD4\n0x8330D132\t0xBAD5\n0x8330D133\t0xBAD6\n0x8330D134\t0xBAD7\n0x8330D135\t0xBAD8\n0x8330D136\t0xBAD9\n0x8330D137\t0xBADA\n0x8330D138\t0xBADB\n0x8330D139\t0xBADC\n0x8330D230\t0xBADD\n0x8330D231\t0xBADE\n0x8330D232\t0xBADF\n0x8330D233\t0xBAE0\n0x8330D234\t0xBAE1\n0x8330D235\t0xBAE2\n0x8330D236\t0xBAE3\n0x8330D237\t0xBAE4\n0x8330D238\t0xBAE5\n0x8330D239\t0xBAE6\n0x8330D330\t0xBAE7\n0x8330D331\t0xBAE8\n0x8330D332\t0xBAE9\n0x8330D333\t0xBAEA\n0x8330D334\t0xBAEB\n0x8330D335\t0xBAEC\n0x8330D336\t0xBAED\n0x8330D337\t0xBAEE\n0x8330D338\t0xBAEF\n0x8330D339\t0xBAF0\n0x8330D430\t0xBAF1\n0x8330D431\t0xBAF2\n0x8330D432\t0xBAF3\n0x8330D433\t0xBAF4\n0x8330D434\t0xBAF5\n0x8330D435\t0xBAF6\n0x8330D436\t0xBAF7\n0x8330D437\t0xBAF8\n0x8330D438\t0xBAF9\n0x8330D439\t0xBAFA\n0x8330D530\t0xBAFB\n0x8330D531\t0xBAFC\n0x8330D532\t0xBAFD\n0x8330D533\t0xBAFE\n0x8330D534\t0xBAFF\n0x8330D535\t0xBB00\n0x8330D536\t0xBB01\n0x8330D537\t0xBB02\n0x8330D538\t0xBB03\n0x8330D539\t0xBB04\n0x8330D630\t0xBB05\n0x8330D631\t0xBB06\n0x8330D632\t0xBB07\n0x8330D633\t0xBB08\n0x8330D634\t0xBB09\n0x8330D635\t0xBB0A\n0x8330D636\t0xBB0B\n0x8330D637\t0xBB0C\n0x8330D638\t0xBB0D\n0x8330D639\t0xBB0E\n0x8330D730\t0xBB0F\n0x8330D731\t0xBB10\n0x8330D732\t0xBB11\n0x8330D733\t0xBB12\n0x8330D734\t0xBB13\n0x8330D735\t0xBB14\n0x8330D736\t0xBB15\n0x8330D737\t0xBB16\n0x8330D738\t0xBB17\n0x8330D739\t0xBB18\n0x8330D830\t0xBB19\n0x8330D831\t0xBB1A\n0x8330D832\t0xBB1B\n0x8330D833\t0xBB1C\n0x8330D834\t0xBB1D\n0x8330D835\t0xBB1E\n0x8330D836\t0xBB1F\n0x8330D837\t0xBB20\n0x8330D838\t0xBB21\n0x8330D839\t0xBB22\n0x8330D930\t0xBB23\n0x8330D931\t0xBB24\n0x8330D932\t0xBB25\n0x8330D933\t0xBB26\n0x8330D934\t0xBB27\n0x8330D935\t0xBB28\n0x8330D936\t0xBB29\n0x8330D937\t0xBB2A\n0x8330D938\t0xBB2B\n0x8330D939\t0xBB2C\n0x8330DA30\t0xBB2D\n0x8330DA31\t0xBB2E\n0x8330DA32\t0xBB2F\n0x8330DA33\t0xBB30\n0x8330DA34\t0xBB31\n0x8330DA35\t0xBB32\n0x8330DA36\t0xBB33\n0x8330DA37\t0xBB34\n0x8330DA38\t0xBB35\n0x8330DA39\t0xBB36\n0x8330DB30\t0xBB37\n0x8330DB31\t0xBB38\n0x8330DB32\t0xBB39\n0x8330DB33\t0xBB3A\n0x8330DB34\t0xBB3B\n0x8330DB35\t0xBB3C\n0x8330DB36\t0xBB3D\n0x8330DB37\t0xBB3E\n0x8330DB38\t0xBB3F\n0x8330DB39\t0xBB40\n0x8330DC30\t0xBB41\n0x8330DC31\t0xBB42\n0x8330DC32\t0xBB43\n0x8330DC33\t0xBB44\n0x8330DC34\t0xBB45\n0x8330DC35\t0xBB46\n0x8330DC36\t0xBB47\n0x8330DC37\t0xBB48\n0x8330DC38\t0xBB49\n0x8330DC39\t0xBB4A\n0x8330DD30\t0xBB4B\n0x8330DD31\t0xBB4C\n0x8330DD32\t0xBB4D\n0x8330DD33\t0xBB4E\n0x8330DD34\t0xBB4F\n0x8330DD35\t0xBB50\n0x8330DD36\t0xBB51\n0x8330DD37\t0xBB52\n0x8330DD38\t0xBB53\n0x8330DD39\t0xBB54\n0x8330DE30\t0xBB55\n0x8330DE31\t0xBB56\n0x8330DE32\t0xBB57\n0x8330DE33\t0xBB58\n0x8330DE34\t0xBB59\n0x8330DE35\t0xBB5A\n0x8330DE36\t0xBB5B\n0x8330DE37\t0xBB5C\n0x8330DE38\t0xBB5D\n0x8330DE39\t0xBB5E\n0x8330DF30\t0xBB5F\n0x8330DF31\t0xBB60\n0x8330DF32\t0xBB61\n0x8330DF33\t0xBB62\n0x8330DF34\t0xBB63\n0x8330DF35\t0xBB64\n0x8330DF36\t0xBB65\n0x8330DF37\t0xBB66\n0x8330DF38\t0xBB67\n0x8330DF39\t0xBB68\n0x8330E030\t0xBB69\n0x8330E031\t0xBB6A\n0x8330E032\t0xBB6B\n0x8330E033\t0xBB6C\n0x8330E034\t0xBB6D\n0x8330E035\t0xBB6E\n0x8330E036\t0xBB6F\n0x8330E037\t0xBB70\n0x8330E038\t0xBB71\n0x8330E039\t0xBB72\n0x8330E130\t0xBB73\n0x8330E131\t0xBB74\n0x8330E132\t0xBB75\n0x8330E133\t0xBB76\n0x8330E134\t0xBB77\n0x8330E135\t0xBB78\n0x8330E136\t0xBB79\n0x8330E137\t0xBB7A\n0x8330E138\t0xBB7B\n0x8330E139\t0xBB7C\n0x8330E230\t0xBB7D\n0x8330E231\t0xBB7E\n0x8330E232\t0xBB7F\n0x8330E233\t0xBB80\n0x8330E234\t0xBB81\n0x8330E235\t0xBB82\n0x8330E236\t0xBB83\n0x8330E237\t0xBB84\n0x8330E238\t0xBB85\n0x8330E239\t0xBB86\n0x8330E330\t0xBB87\n0x8330E331\t0xBB88\n0x8330E332\t0xBB89\n0x8330E333\t0xBB8A\n0x8330E334\t0xBB8B\n0x8330E335\t0xBB8C\n0x8330E336\t0xBB8D\n0x8330E337\t0xBB8E\n0x8330E338\t0xBB8F\n0x8330E339\t0xBB90\n0x8330E430\t0xBB91\n0x8330E431\t0xBB92\n0x8330E432\t0xBB93\n0x8330E433\t0xBB94\n0x8330E434\t0xBB95\n0x8330E435\t0xBB96\n0x8330E436\t0xBB97\n0x8330E437\t0xBB98\n0x8330E438\t0xBB99\n0x8330E439\t0xBB9A\n0x8330E530\t0xBB9B\n0x8330E531\t0xBB9C\n0x8330E532\t0xBB9D\n0x8330E533\t0xBB9E\n0x8330E534\t0xBB9F\n0x8330E535\t0xBBA0\n0x8330E536\t0xBBA1\n0x8330E537\t0xBBA2\n0x8330E538\t0xBBA3\n0x8330E539\t0xBBA4\n0x8330E630\t0xBBA5\n0x8330E631\t0xBBA6\n0x8330E632\t0xBBA7\n0x8330E633\t0xBBA8\n0x8330E634\t0xBBA9\n0x8330E635\t0xBBAA\n0x8330E636\t0xBBAB\n0x8330E637\t0xBBAC\n0x8330E638\t0xBBAD\n0x8330E639\t0xBBAE\n0x8330E730\t0xBBAF\n0x8330E731\t0xBBB0\n0x8330E732\t0xBBB1\n0x8330E733\t0xBBB2\n0x8330E734\t0xBBB3\n0x8330E735\t0xBBB4\n0x8330E736\t0xBBB5\n0x8330E737\t0xBBB6\n0x8330E738\t0xBBB7\n0x8330E739\t0xBBB8\n0x8330E830\t0xBBB9\n0x8330E831\t0xBBBA\n0x8330E832\t0xBBBB\n0x8330E833\t0xBBBC\n0x8330E834\t0xBBBD\n0x8330E835\t0xBBBE\n0x8330E836\t0xBBBF\n0x8330E837\t0xBBC0\n0x8330E838\t0xBBC1\n0x8330E839\t0xBBC2\n0x8330E930\t0xBBC3\n0x8330E931\t0xBBC4\n0x8330E932\t0xBBC5\n0x8330E933\t0xBBC6\n0x8330E934\t0xBBC7\n0x8330E935\t0xBBC8\n0x8330E936\t0xBBC9\n0x8330E937\t0xBBCA\n0x8330E938\t0xBBCB\n0x8330E939\t0xBBCC\n0x8330EA30\t0xBBCD\n0x8330EA31\t0xBBCE\n0x8330EA32\t0xBBCF\n0x8330EA33\t0xBBD0\n0x8330EA34\t0xBBD1\n0x8330EA35\t0xBBD2\n0x8330EA36\t0xBBD3\n0x8330EA37\t0xBBD4\n0x8330EA38\t0xBBD5\n0x8330EA39\t0xBBD6\n0x8330EB30\t0xBBD7\n0x8330EB31\t0xBBD8\n0x8330EB32\t0xBBD9\n0x8330EB33\t0xBBDA\n0x8330EB34\t0xBBDB\n0x8330EB35\t0xBBDC\n0x8330EB36\t0xBBDD\n0x8330EB37\t0xBBDE\n0x8330EB38\t0xBBDF\n0x8330EB39\t0xBBE0\n0x8330EC30\t0xBBE1\n0x8330EC31\t0xBBE2\n0x8330EC32\t0xBBE3\n0x8330EC33\t0xBBE4\n0x8330EC34\t0xBBE5\n0x8330EC35\t0xBBE6\n0x8330EC36\t0xBBE7\n0x8330EC37\t0xBBE8\n0x8330EC38\t0xBBE9\n0x8330EC39\t0xBBEA\n0x8330ED30\t0xBBEB\n0x8330ED31\t0xBBEC\n0x8330ED32\t0xBBED\n0x8330ED33\t0xBBEE\n0x8330ED34\t0xBBEF\n0x8330ED35\t0xBBF0\n0x8330ED36\t0xBBF1\n0x8330ED37\t0xBBF2\n0x8330ED38\t0xBBF3\n0x8330ED39\t0xBBF4\n0x8330EE30\t0xBBF5\n0x8330EE31\t0xBBF6\n0x8330EE32\t0xBBF7\n0x8330EE33\t0xBBF8\n0x8330EE34\t0xBBF9\n0x8330EE35\t0xBBFA\n0x8330EE36\t0xBBFB\n0x8330EE37\t0xBBFC\n0x8330EE38\t0xBBFD\n0x8330EE39\t0xBBFE\n0x8330EF30\t0xBBFF\n0x8330EF31\t0xBC00\n0x8330EF32\t0xBC01\n0x8330EF33\t0xBC02\n0x8330EF34\t0xBC03\n0x8330EF35\t0xBC04\n0x8330EF36\t0xBC05\n0x8330EF37\t0xBC06\n0x8330EF38\t0xBC07\n0x8330EF39\t0xBC08\n0x8330F030\t0xBC09\n0x8330F031\t0xBC0A\n0x8330F032\t0xBC0B\n0x8330F033\t0xBC0C\n0x8330F034\t0xBC0D\n0x8330F035\t0xBC0E\n0x8330F036\t0xBC0F\n0x8330F037\t0xBC10\n0x8330F038\t0xBC11\n0x8330F039\t0xBC12\n0x8330F130\t0xBC13\n0x8330F131\t0xBC14\n0x8330F132\t0xBC15\n0x8330F133\t0xBC16\n0x8330F134\t0xBC17\n0x8330F135\t0xBC18\n0x8330F136\t0xBC19\n0x8330F137\t0xBC1A\n0x8330F138\t0xBC1B\n0x8330F139\t0xBC1C\n0x8330F230\t0xBC1D\n0x8330F231\t0xBC1E\n0x8330F232\t0xBC1F\n0x8330F233\t0xBC20\n0x8330F234\t0xBC21\n0x8330F235\t0xBC22\n0x8330F236\t0xBC23\n0x8330F237\t0xBC24\n0x8330F238\t0xBC25\n0x8330F239\t0xBC26\n0x8330F330\t0xBC27\n0x8330F331\t0xBC28\n0x8330F332\t0xBC29\n0x8330F333\t0xBC2A\n0x8330F334\t0xBC2B\n0x8330F335\t0xBC2C\n0x8330F336\t0xBC2D\n0x8330F337\t0xBC2E\n0x8330F338\t0xBC2F\n0x8330F339\t0xBC30\n0x8330F430\t0xBC31\n0x8330F431\t0xBC32\n0x8330F432\t0xBC33\n0x8330F433\t0xBC34\n0x8330F434\t0xBC35\n0x8330F435\t0xBC36\n0x8330F436\t0xBC37\n0x8330F437\t0xBC38\n0x8330F438\t0xBC39\n0x8330F439\t0xBC3A\n0x8330F530\t0xBC3B\n0x8330F531\t0xBC3C\n0x8330F532\t0xBC3D\n0x8330F533\t0xBC3E\n0x8330F534\t0xBC3F\n0x8330F535\t0xBC40\n0x8330F536\t0xBC41\n0x8330F537\t0xBC42\n0x8330F538\t0xBC43\n0x8330F539\t0xBC44\n0x8330F630\t0xBC45\n0x8330F631\t0xBC46\n0x8330F632\t0xBC47\n0x8330F633\t0xBC48\n0x8330F634\t0xBC49\n0x8330F635\t0xBC4A\n0x8330F636\t0xBC4B\n0x8330F637\t0xBC4C\n0x8330F638\t0xBC4D\n0x8330F639\t0xBC4E\n0x8330F730\t0xBC4F\n0x8330F731\t0xBC50\n0x8330F732\t0xBC51\n0x8330F733\t0xBC52\n0x8330F734\t0xBC53\n0x8330F735\t0xBC54\n0x8330F736\t0xBC55\n0x8330F737\t0xBC56\n0x8330F738\t0xBC57\n0x8330F739\t0xBC58\n0x8330F830\t0xBC59\n0x8330F831\t0xBC5A\n0x8330F832\t0xBC5B\n0x8330F833\t0xBC5C\n0x8330F834\t0xBC5D\n0x8330F835\t0xBC5E\n0x8330F836\t0xBC5F\n0x8330F837\t0xBC60\n0x8330F838\t0xBC61\n0x8330F839\t0xBC62\n0x8330F930\t0xBC63\n0x8330F931\t0xBC64\n0x8330F932\t0xBC65\n0x8330F933\t0xBC66\n0x8330F934\t0xBC67\n0x8330F935\t0xBC68\n0x8330F936\t0xBC69\n0x8330F937\t0xBC6A\n0x8330F938\t0xBC6B\n0x8330F939\t0xBC6C\n0x8330FA30\t0xBC6D\n0x8330FA31\t0xBC6E\n0x8330FA32\t0xBC6F\n0x8330FA33\t0xBC70\n0x8330FA34\t0xBC71\n0x8330FA35\t0xBC72\n0x8330FA36\t0xBC73\n0x8330FA37\t0xBC74\n0x8330FA38\t0xBC75\n0x8330FA39\t0xBC76\n0x8330FB30\t0xBC77\n0x8330FB31\t0xBC78\n0x8330FB32\t0xBC79\n0x8330FB33\t0xBC7A\n0x8330FB34\t0xBC7B\n0x8330FB35\t0xBC7C\n0x8330FB36\t0xBC7D\n0x8330FB37\t0xBC7E\n0x8330FB38\t0xBC7F\n0x8330FB39\t0xBC80\n0x8330FC30\t0xBC81\n0x8330FC31\t0xBC82\n0x8330FC32\t0xBC83\n0x8330FC33\t0xBC84\n0x8330FC34\t0xBC85\n0x8330FC35\t0xBC86\n0x8330FC36\t0xBC87\n0x8330FC37\t0xBC88\n0x8330FC38\t0xBC89\n0x8330FC39\t0xBC8A\n0x8330FD30\t0xBC8B\n0x8330FD31\t0xBC8C\n0x8330FD32\t0xBC8D\n0x8330FD33\t0xBC8E\n0x8330FD34\t0xBC8F\n0x8330FD35\t0xBC90\n0x8330FD36\t0xBC91\n0x8330FD37\t0xBC92\n0x8330FD38\t0xBC93\n0x8330FD39\t0xBC94\n0x8330FE30\t0xBC95\n0x8330FE31\t0xBC96\n0x8330FE32\t0xBC97\n0x8330FE33\t0xBC98\n0x8330FE34\t0xBC99\n0x8330FE35\t0xBC9A\n0x8330FE36\t0xBC9B\n0x8330FE37\t0xBC9C\n0x8330FE38\t0xBC9D\n0x8330FE39\t0xBC9E\n0x83318130\t0xBC9F\n0x83318131\t0xBCA0\n0x83318132\t0xBCA1\n0x83318133\t0xBCA2\n0x83318134\t0xBCA3\n0x83318135\t0xBCA4\n0x83318136\t0xBCA5\n0x83318137\t0xBCA6\n0x83318138\t0xBCA7\n0x83318139\t0xBCA8\n0x83318230\t0xBCA9\n0x83318231\t0xBCAA\n0x83318232\t0xBCAB\n0x83318233\t0xBCAC\n0x83318234\t0xBCAD\n0x83318235\t0xBCAE\n0x83318236\t0xBCAF\n0x83318237\t0xBCB0\n0x83318238\t0xBCB1\n0x83318239\t0xBCB2\n0x83318330\t0xBCB3\n0x83318331\t0xBCB4\n0x83318332\t0xBCB5\n0x83318333\t0xBCB6\n0x83318334\t0xBCB7\n0x83318335\t0xBCB8\n0x83318336\t0xBCB9\n0x83318337\t0xBCBA\n0x83318338\t0xBCBB\n0x83318339\t0xBCBC\n0x83318430\t0xBCBD\n0x83318431\t0xBCBE\n0x83318432\t0xBCBF\n0x83318433\t0xBCC0\n0x83318434\t0xBCC1\n0x83318435\t0xBCC2\n0x83318436\t0xBCC3\n0x83318437\t0xBCC4\n0x83318438\t0xBCC5\n0x83318439\t0xBCC6\n0x83318530\t0xBCC7\n0x83318531\t0xBCC8\n0x83318532\t0xBCC9\n0x83318533\t0xBCCA\n0x83318534\t0xBCCB\n0x83318535\t0xBCCC\n0x83318536\t0xBCCD\n0x83318537\t0xBCCE\n0x83318538\t0xBCCF\n0x83318539\t0xBCD0\n0x83318630\t0xBCD1\n0x83318631\t0xBCD2\n0x83318632\t0xBCD3\n0x83318633\t0xBCD4\n0x83318634\t0xBCD5\n0x83318635\t0xBCD6\n0x83318636\t0xBCD7\n0x83318637\t0xBCD8\n0x83318638\t0xBCD9\n0x83318639\t0xBCDA\n0x83318730\t0xBCDB\n0x83318731\t0xBCDC\n0x83318732\t0xBCDD\n0x83318733\t0xBCDE\n0x83318734\t0xBCDF\n0x83318735\t0xBCE0\n0x83318736\t0xBCE1\n0x83318737\t0xBCE2\n0x83318738\t0xBCE3\n0x83318739\t0xBCE4\n0x83318830\t0xBCE5\n0x83318831\t0xBCE6\n0x83318832\t0xBCE7\n0x83318833\t0xBCE8\n0x83318834\t0xBCE9\n0x83318835\t0xBCEA\n0x83318836\t0xBCEB\n0x83318837\t0xBCEC\n0x83318838\t0xBCED\n0x83318839\t0xBCEE\n0x83318930\t0xBCEF\n0x83318931\t0xBCF0\n0x83318932\t0xBCF1\n0x83318933\t0xBCF2\n0x83318934\t0xBCF3\n0x83318935\t0xBCF4\n0x83318936\t0xBCF5\n0x83318937\t0xBCF6\n0x83318938\t0xBCF7\n0x83318939\t0xBCF8\n0x83318A30\t0xBCF9\n0x83318A31\t0xBCFA\n0x83318A32\t0xBCFB\n0x83318A33\t0xBCFC\n0x83318A34\t0xBCFD\n0x83318A35\t0xBCFE\n0x83318A36\t0xBCFF\n0x83318A37\t0xBD00\n0x83318A38\t0xBD01\n0x83318A39\t0xBD02\n0x83318B30\t0xBD03\n0x83318B31\t0xBD04\n0x83318B32\t0xBD05\n0x83318B33\t0xBD06\n0x83318B34\t0xBD07\n0x83318B35\t0xBD08\n0x83318B36\t0xBD09\n0x83318B37\t0xBD0A\n0x83318B38\t0xBD0B\n0x83318B39\t0xBD0C\n0x83318C30\t0xBD0D\n0x83318C31\t0xBD0E\n0x83318C32\t0xBD0F\n0x83318C33\t0xBD10\n0x83318C34\t0xBD11\n0x83318C35\t0xBD12\n0x83318C36\t0xBD13\n0x83318C37\t0xBD14\n0x83318C38\t0xBD15\n0x83318C39\t0xBD16\n0x83318D30\t0xBD17\n0x83318D31\t0xBD18\n0x83318D32\t0xBD19\n0x83318D33\t0xBD1A\n0x83318D34\t0xBD1B\n0x83318D35\t0xBD1C\n0x83318D36\t0xBD1D\n0x83318D37\t0xBD1E\n0x83318D38\t0xBD1F\n0x83318D39\t0xBD20\n0x83318E30\t0xBD21\n0x83318E31\t0xBD22\n0x83318E32\t0xBD23\n0x83318E33\t0xBD24\n0x83318E34\t0xBD25\n0x83318E35\t0xBD26\n0x83318E36\t0xBD27\n0x83318E37\t0xBD28\n0x83318E38\t0xBD29\n0x83318E39\t0xBD2A\n0x83318F30\t0xBD2B\n0x83318F31\t0xBD2C\n0x83318F32\t0xBD2D\n0x83318F33\t0xBD2E\n0x83318F34\t0xBD2F\n0x83318F35\t0xBD30\n0x83318F36\t0xBD31\n0x83318F37\t0xBD32\n0x83318F38\t0xBD33\n0x83318F39\t0xBD34\n0x83319030\t0xBD35\n0x83319031\t0xBD36\n0x83319032\t0xBD37\n0x83319033\t0xBD38\n0x83319034\t0xBD39\n0x83319035\t0xBD3A\n0x83319036\t0xBD3B\n0x83319037\t0xBD3C\n0x83319038\t0xBD3D\n0x83319039\t0xBD3E\n0x83319130\t0xBD3F\n0x83319131\t0xBD40\n0x83319132\t0xBD41\n0x83319133\t0xBD42\n0x83319134\t0xBD43\n0x83319135\t0xBD44\n0x83319136\t0xBD45\n0x83319137\t0xBD46\n0x83319138\t0xBD47\n0x83319139\t0xBD48\n0x83319230\t0xBD49\n0x83319231\t0xBD4A\n0x83319232\t0xBD4B\n0x83319233\t0xBD4C\n0x83319234\t0xBD4D\n0x83319235\t0xBD4E\n0x83319236\t0xBD4F\n0x83319237\t0xBD50\n0x83319238\t0xBD51\n0x83319239\t0xBD52\n0x83319330\t0xBD53\n0x83319331\t0xBD54\n0x83319332\t0xBD55\n0x83319333\t0xBD56\n0x83319334\t0xBD57\n0x83319335\t0xBD58\n0x83319336\t0xBD59\n0x83319337\t0xBD5A\n0x83319338\t0xBD5B\n0x83319339\t0xBD5C\n0x83319430\t0xBD5D\n0x83319431\t0xBD5E\n0x83319432\t0xBD5F\n0x83319433\t0xBD60\n0x83319434\t0xBD61\n0x83319435\t0xBD62\n0x83319436\t0xBD63\n0x83319437\t0xBD64\n0x83319438\t0xBD65\n0x83319439\t0xBD66\n0x83319530\t0xBD67\n0x83319531\t0xBD68\n0x83319532\t0xBD69\n0x83319533\t0xBD6A\n0x83319534\t0xBD6B\n0x83319535\t0xBD6C\n0x83319536\t0xBD6D\n0x83319537\t0xBD6E\n0x83319538\t0xBD6F\n0x83319539\t0xBD70\n0x83319630\t0xBD71\n0x83319631\t0xBD72\n0x83319632\t0xBD73\n0x83319633\t0xBD74\n0x83319634\t0xBD75\n0x83319635\t0xBD76\n0x83319636\t0xBD77\n0x83319637\t0xBD78\n0x83319638\t0xBD79\n0x83319639\t0xBD7A\n0x83319730\t0xBD7B\n0x83319731\t0xBD7C\n0x83319732\t0xBD7D\n0x83319733\t0xBD7E\n0x83319734\t0xBD7F\n0x83319735\t0xBD80\n0x83319736\t0xBD81\n0x83319737\t0xBD82\n0x83319738\t0xBD83\n0x83319739\t0xBD84\n0x83319830\t0xBD85\n0x83319831\t0xBD86\n0x83319832\t0xBD87\n0x83319833\t0xBD88\n0x83319834\t0xBD89\n0x83319835\t0xBD8A\n0x83319836\t0xBD8B\n0x83319837\t0xBD8C\n0x83319838\t0xBD8D\n0x83319839\t0xBD8E\n0x83319930\t0xBD8F\n0x83319931\t0xBD90\n0x83319932\t0xBD91\n0x83319933\t0xBD92\n0x83319934\t0xBD93\n0x83319935\t0xBD94\n0x83319936\t0xBD95\n0x83319937\t0xBD96\n0x83319938\t0xBD97\n0x83319939\t0xBD98\n0x83319A30\t0xBD99\n0x83319A31\t0xBD9A\n0x83319A32\t0xBD9B\n0x83319A33\t0xBD9C\n0x83319A34\t0xBD9D\n0x83319A35\t0xBD9E\n0x83319A36\t0xBD9F\n0x83319A37\t0xBDA0\n0x83319A38\t0xBDA1\n0x83319A39\t0xBDA2\n0x83319B30\t0xBDA3\n0x83319B31\t0xBDA4\n0x83319B32\t0xBDA5\n0x83319B33\t0xBDA6\n0x83319B34\t0xBDA7\n0x83319B35\t0xBDA8\n0x83319B36\t0xBDA9\n0x83319B37\t0xBDAA\n0x83319B38\t0xBDAB\n0x83319B39\t0xBDAC\n0x83319C30\t0xBDAD\n0x83319C31\t0xBDAE\n0x83319C32\t0xBDAF\n0x83319C33\t0xBDB0\n0x83319C34\t0xBDB1\n0x83319C35\t0xBDB2\n0x83319C36\t0xBDB3\n0x83319C37\t0xBDB4\n0x83319C38\t0xBDB5\n0x83319C39\t0xBDB6\n0x83319D30\t0xBDB7\n0x83319D31\t0xBDB8\n0x83319D32\t0xBDB9\n0x83319D33\t0xBDBA\n0x83319D34\t0xBDBB\n0x83319D35\t0xBDBC\n0x83319D36\t0xBDBD\n0x83319D37\t0xBDBE\n0x83319D38\t0xBDBF\n0x83319D39\t0xBDC0\n0x83319E30\t0xBDC1\n0x83319E31\t0xBDC2\n0x83319E32\t0xBDC3\n0x83319E33\t0xBDC4\n0x83319E34\t0xBDC5\n0x83319E35\t0xBDC6\n0x83319E36\t0xBDC7\n0x83319E37\t0xBDC8\n0x83319E38\t0xBDC9\n0x83319E39\t0xBDCA\n0x83319F30\t0xBDCB\n0x83319F31\t0xBDCC\n0x83319F32\t0xBDCD\n0x83319F33\t0xBDCE\n0x83319F34\t0xBDCF\n0x83319F35\t0xBDD0\n0x83319F36\t0xBDD1\n0x83319F37\t0xBDD2\n0x83319F38\t0xBDD3\n0x83319F39\t0xBDD4\n0x8331A030\t0xBDD5\n0x8331A031\t0xBDD6\n0x8331A032\t0xBDD7\n0x8331A033\t0xBDD8\n0x8331A034\t0xBDD9\n0x8331A035\t0xBDDA\n0x8331A036\t0xBDDB\n0x8331A037\t0xBDDC\n0x8331A038\t0xBDDD\n0x8331A039\t0xBDDE\n0x8331A130\t0xBDDF\n0x8331A131\t0xBDE0\n0x8331A132\t0xBDE1\n0x8331A133\t0xBDE2\n0x8331A134\t0xBDE3\n0x8331A135\t0xBDE4\n0x8331A136\t0xBDE5\n0x8331A137\t0xBDE6\n0x8331A138\t0xBDE7\n0x8331A139\t0xBDE8\n0x8331A230\t0xBDE9\n0x8331A231\t0xBDEA\n0x8331A232\t0xBDEB\n0x8331A233\t0xBDEC\n0x8331A234\t0xBDED\n0x8331A235\t0xBDEE\n0x8331A236\t0xBDEF\n0x8331A237\t0xBDF0\n0x8331A238\t0xBDF1\n0x8331A239\t0xBDF2\n0x8331A330\t0xBDF3\n0x8331A331\t0xBDF4\n0x8331A332\t0xBDF5\n0x8331A333\t0xBDF6\n0x8331A334\t0xBDF7\n0x8331A335\t0xBDF8\n0x8331A336\t0xBDF9\n0x8331A337\t0xBDFA\n0x8331A338\t0xBDFB\n0x8331A339\t0xBDFC\n0x8331A430\t0xBDFD\n0x8331A431\t0xBDFE\n0x8331A432\t0xBDFF\n0x8331A433\t0xBE00\n0x8331A434\t0xBE01\n0x8331A435\t0xBE02\n0x8331A436\t0xBE03\n0x8331A437\t0xBE04\n0x8331A438\t0xBE05\n0x8331A439\t0xBE06\n0x8331A530\t0xBE07\n0x8331A531\t0xBE08\n0x8331A532\t0xBE09\n0x8331A533\t0xBE0A\n0x8331A534\t0xBE0B\n0x8331A535\t0xBE0C\n0x8331A536\t0xBE0D\n0x8331A537\t0xBE0E\n0x8331A538\t0xBE0F\n0x8331A539\t0xBE10\n0x8331A630\t0xBE11\n0x8331A631\t0xBE12\n0x8331A632\t0xBE13\n0x8331A633\t0xBE14\n0x8331A634\t0xBE15\n0x8331A635\t0xBE16\n0x8331A636\t0xBE17\n0x8331A637\t0xBE18\n0x8331A638\t0xBE19\n0x8331A639\t0xBE1A\n0x8331A730\t0xBE1B\n0x8331A731\t0xBE1C\n0x8331A732\t0xBE1D\n0x8331A733\t0xBE1E\n0x8331A734\t0xBE1F\n0x8331A735\t0xBE20\n0x8331A736\t0xBE21\n0x8331A737\t0xBE22\n0x8331A738\t0xBE23\n0x8331A739\t0xBE24\n0x8331A830\t0xBE25\n0x8331A831\t0xBE26\n0x8331A832\t0xBE27\n0x8331A833\t0xBE28\n0x8331A834\t0xBE29\n0x8331A835\t0xBE2A\n0x8331A836\t0xBE2B\n0x8331A837\t0xBE2C\n0x8331A838\t0xBE2D\n0x8331A839\t0xBE2E\n0x8331A930\t0xBE2F\n0x8331A931\t0xBE30\n0x8331A932\t0xBE31\n0x8331A933\t0xBE32\n0x8331A934\t0xBE33\n0x8331A935\t0xBE34\n0x8331A936\t0xBE35\n0x8331A937\t0xBE36\n0x8331A938\t0xBE37\n0x8331A939\t0xBE38\n0x8331AA30\t0xBE39\n0x8331AA31\t0xBE3A\n0x8331AA32\t0xBE3B\n0x8331AA33\t0xBE3C\n0x8331AA34\t0xBE3D\n0x8331AA35\t0xBE3E\n0x8331AA36\t0xBE3F\n0x8331AA37\t0xBE40\n0x8331AA38\t0xBE41\n0x8331AA39\t0xBE42\n0x8331AB30\t0xBE43\n0x8331AB31\t0xBE44\n0x8331AB32\t0xBE45\n0x8331AB33\t0xBE46\n0x8331AB34\t0xBE47\n0x8331AB35\t0xBE48\n0x8331AB36\t0xBE49\n0x8331AB37\t0xBE4A\n0x8331AB38\t0xBE4B\n0x8331AB39\t0xBE4C\n0x8331AC30\t0xBE4D\n0x8331AC31\t0xBE4E\n0x8331AC32\t0xBE4F\n0x8331AC33\t0xBE50\n0x8331AC34\t0xBE51\n0x8331AC35\t0xBE52\n0x8331AC36\t0xBE53\n0x8331AC37\t0xBE54\n0x8331AC38\t0xBE55\n0x8331AC39\t0xBE56\n0x8331AD30\t0xBE57\n0x8331AD31\t0xBE58\n0x8331AD32\t0xBE59\n0x8331AD33\t0xBE5A\n0x8331AD34\t0xBE5B\n0x8331AD35\t0xBE5C\n0x8331AD36\t0xBE5D\n0x8331AD37\t0xBE5E\n0x8331AD38\t0xBE5F\n0x8331AD39\t0xBE60\n0x8331AE30\t0xBE61\n0x8331AE31\t0xBE62\n0x8331AE32\t0xBE63\n0x8331AE33\t0xBE64\n0x8331AE34\t0xBE65\n0x8331AE35\t0xBE66\n0x8331AE36\t0xBE67\n0x8331AE37\t0xBE68\n0x8331AE38\t0xBE69\n0x8331AE39\t0xBE6A\n0x8331AF30\t0xBE6B\n0x8331AF31\t0xBE6C\n0x8331AF32\t0xBE6D\n0x8331AF33\t0xBE6E\n0x8331AF34\t0xBE6F\n0x8331AF35\t0xBE70\n0x8331AF36\t0xBE71\n0x8331AF37\t0xBE72\n0x8331AF38\t0xBE73\n0x8331AF39\t0xBE74\n0x8331B030\t0xBE75\n0x8331B031\t0xBE76\n0x8331B032\t0xBE77\n0x8331B033\t0xBE78\n0x8331B034\t0xBE79\n0x8331B035\t0xBE7A\n0x8331B036\t0xBE7B\n0x8331B037\t0xBE7C\n0x8331B038\t0xBE7D\n0x8331B039\t0xBE7E\n0x8331B130\t0xBE7F\n0x8331B131\t0xBE80\n0x8331B132\t0xBE81\n0x8331B133\t0xBE82\n0x8331B134\t0xBE83\n0x8331B135\t0xBE84\n0x8331B136\t0xBE85\n0x8331B137\t0xBE86\n0x8331B138\t0xBE87\n0x8331B139\t0xBE88\n0x8331B230\t0xBE89\n0x8331B231\t0xBE8A\n0x8331B232\t0xBE8B\n0x8331B233\t0xBE8C\n0x8331B234\t0xBE8D\n0x8331B235\t0xBE8E\n0x8331B236\t0xBE8F\n0x8331B237\t0xBE90\n0x8331B238\t0xBE91\n0x8331B239\t0xBE92\n0x8331B330\t0xBE93\n0x8331B331\t0xBE94\n0x8331B332\t0xBE95\n0x8331B333\t0xBE96\n0x8331B334\t0xBE97\n0x8331B335\t0xBE98\n0x8331B336\t0xBE99\n0x8331B337\t0xBE9A\n0x8331B338\t0xBE9B\n0x8331B339\t0xBE9C\n0x8331B430\t0xBE9D\n0x8331B431\t0xBE9E\n0x8331B432\t0xBE9F\n0x8331B433\t0xBEA0\n0x8331B434\t0xBEA1\n0x8331B435\t0xBEA2\n0x8331B436\t0xBEA3\n0x8331B437\t0xBEA4\n0x8331B438\t0xBEA5\n0x8331B439\t0xBEA6\n0x8331B530\t0xBEA7\n0x8331B531\t0xBEA8\n0x8331B532\t0xBEA9\n0x8331B533\t0xBEAA\n0x8331B534\t0xBEAB\n0x8331B535\t0xBEAC\n0x8331B536\t0xBEAD\n0x8331B537\t0xBEAE\n0x8331B538\t0xBEAF\n0x8331B539\t0xBEB0\n0x8331B630\t0xBEB1\n0x8331B631\t0xBEB2\n0x8331B632\t0xBEB3\n0x8331B633\t0xBEB4\n0x8331B634\t0xBEB5\n0x8331B635\t0xBEB6\n0x8331B636\t0xBEB7\n0x8331B637\t0xBEB8\n0x8331B638\t0xBEB9\n0x8331B639\t0xBEBA\n0x8331B730\t0xBEBB\n0x8331B731\t0xBEBC\n0x8331B732\t0xBEBD\n0x8331B733\t0xBEBE\n0x8331B734\t0xBEBF\n0x8331B735\t0xBEC0\n0x8331B736\t0xBEC1\n0x8331B737\t0xBEC2\n0x8331B738\t0xBEC3\n0x8331B739\t0xBEC4\n0x8331B830\t0xBEC5\n0x8331B831\t0xBEC6\n0x8331B832\t0xBEC7\n0x8331B833\t0xBEC8\n0x8331B834\t0xBEC9\n0x8331B835\t0xBECA\n0x8331B836\t0xBECB\n0x8331B837\t0xBECC\n0x8331B838\t0xBECD\n0x8331B839\t0xBECE\n0x8331B930\t0xBECF\n0x8331B931\t0xBED0\n0x8331B932\t0xBED1\n0x8331B933\t0xBED2\n0x8331B934\t0xBED3\n0x8331B935\t0xBED4\n0x8331B936\t0xBED5\n0x8331B937\t0xBED6\n0x8331B938\t0xBED7\n0x8331B939\t0xBED8\n0x8331BA30\t0xBED9\n0x8331BA31\t0xBEDA\n0x8331BA32\t0xBEDB\n0x8331BA33\t0xBEDC\n0x8331BA34\t0xBEDD\n0x8331BA35\t0xBEDE\n0x8331BA36\t0xBEDF\n0x8331BA37\t0xBEE0\n0x8331BA38\t0xBEE1\n0x8331BA39\t0xBEE2\n0x8331BB30\t0xBEE3\n0x8331BB31\t0xBEE4\n0x8331BB32\t0xBEE5\n0x8331BB33\t0xBEE6\n0x8331BB34\t0xBEE7\n0x8331BB35\t0xBEE8\n0x8331BB36\t0xBEE9\n0x8331BB37\t0xBEEA\n0x8331BB38\t0xBEEB\n0x8331BB39\t0xBEEC\n0x8331BC30\t0xBEED\n0x8331BC31\t0xBEEE\n0x8331BC32\t0xBEEF\n0x8331BC33\t0xBEF0\n0x8331BC34\t0xBEF1\n0x8331BC35\t0xBEF2\n0x8331BC36\t0xBEF3\n0x8331BC37\t0xBEF4\n0x8331BC38\t0xBEF5\n0x8331BC39\t0xBEF6\n0x8331BD30\t0xBEF7\n0x8331BD31\t0xBEF8\n0x8331BD32\t0xBEF9\n0x8331BD33\t0xBEFA\n0x8331BD34\t0xBEFB\n0x8331BD35\t0xBEFC\n0x8331BD36\t0xBEFD\n0x8331BD37\t0xBEFE\n0x8331BD38\t0xBEFF\n0x8331BD39\t0xBF00\n0x8331BE30\t0xBF01\n0x8331BE31\t0xBF02\n0x8331BE32\t0xBF03\n0x8331BE33\t0xBF04\n0x8331BE34\t0xBF05\n0x8331BE35\t0xBF06\n0x8331BE36\t0xBF07\n0x8331BE37\t0xBF08\n0x8331BE38\t0xBF09\n0x8331BE39\t0xBF0A\n0x8331BF30\t0xBF0B\n0x8331BF31\t0xBF0C\n0x8331BF32\t0xBF0D\n0x8331BF33\t0xBF0E\n0x8331BF34\t0xBF0F\n0x8331BF35\t0xBF10\n0x8331BF36\t0xBF11\n0x8331BF37\t0xBF12\n0x8331BF38\t0xBF13\n0x8331BF39\t0xBF14\n0x8331C030\t0xBF15\n0x8331C031\t0xBF16\n0x8331C032\t0xBF17\n0x8331C033\t0xBF18\n0x8331C034\t0xBF19\n0x8331C035\t0xBF1A\n0x8331C036\t0xBF1B\n0x8331C037\t0xBF1C\n0x8331C038\t0xBF1D\n0x8331C039\t0xBF1E\n0x8331C130\t0xBF1F\n0x8331C131\t0xBF20\n0x8331C132\t0xBF21\n0x8331C133\t0xBF22\n0x8331C134\t0xBF23\n0x8331C135\t0xBF24\n0x8331C136\t0xBF25\n0x8331C137\t0xBF26\n0x8331C138\t0xBF27\n0x8331C139\t0xBF28\n0x8331C230\t0xBF29\n0x8331C231\t0xBF2A\n0x8331C232\t0xBF2B\n0x8331C233\t0xBF2C\n0x8331C234\t0xBF2D\n0x8331C235\t0xBF2E\n0x8331C236\t0xBF2F\n0x8331C237\t0xBF30\n0x8331C238\t0xBF31\n0x8331C239\t0xBF32\n0x8331C330\t0xBF33\n0x8331C331\t0xBF34\n0x8331C332\t0xBF35\n0x8331C333\t0xBF36\n0x8331C334\t0xBF37\n0x8331C335\t0xBF38\n0x8331C336\t0xBF39\n0x8331C337\t0xBF3A\n0x8331C338\t0xBF3B\n0x8331C339\t0xBF3C\n0x8331C430\t0xBF3D\n0x8331C431\t0xBF3E\n0x8331C432\t0xBF3F\n0x8331C433\t0xBF40\n0x8331C434\t0xBF41\n0x8331C435\t0xBF42\n0x8331C436\t0xBF43\n0x8331C437\t0xBF44\n0x8331C438\t0xBF45\n0x8331C439\t0xBF46\n0x8331C530\t0xBF47\n0x8331C531\t0xBF48\n0x8331C532\t0xBF49\n0x8331C533\t0xBF4A\n0x8331C534\t0xBF4B\n0x8331C535\t0xBF4C\n0x8331C536\t0xBF4D\n0x8331C537\t0xBF4E\n0x8331C538\t0xBF4F\n0x8331C539\t0xBF50\n0x8331C630\t0xBF51\n0x8331C631\t0xBF52\n0x8331C632\t0xBF53\n0x8331C633\t0xBF54\n0x8331C634\t0xBF55\n0x8331C635\t0xBF56\n0x8331C636\t0xBF57\n0x8331C637\t0xBF58\n0x8331C638\t0xBF59\n0x8331C639\t0xBF5A\n0x8331C730\t0xBF5B\n0x8331C731\t0xBF5C\n0x8331C732\t0xBF5D\n0x8331C733\t0xBF5E\n0x8331C734\t0xBF5F\n0x8331C735\t0xBF60\n0x8331C736\t0xBF61\n0x8331C737\t0xBF62\n0x8331C738\t0xBF63\n0x8331C739\t0xBF64\n0x8331C830\t0xBF65\n0x8331C831\t0xBF66\n0x8331C832\t0xBF67\n0x8331C833\t0xBF68\n0x8331C834\t0xBF69\n0x8331C835\t0xBF6A\n0x8331C836\t0xBF6B\n0x8331C837\t0xBF6C\n0x8331C838\t0xBF6D\n0x8331C839\t0xBF6E\n0x8331C930\t0xBF6F\n0x8331C931\t0xBF70\n0x8331C932\t0xBF71\n0x8331C933\t0xBF72\n0x8331C934\t0xBF73\n0x8331C935\t0xBF74\n0x8331C936\t0xBF75\n0x8331C937\t0xBF76\n0x8331C938\t0xBF77\n0x8331C939\t0xBF78\n0x8331CA30\t0xBF79\n0x8331CA31\t0xBF7A\n0x8331CA32\t0xBF7B\n0x8331CA33\t0xBF7C\n0x8331CA34\t0xBF7D\n0x8331CA35\t0xBF7E\n0x8331CA36\t0xBF7F\n0x8331CA37\t0xBF80\n0x8331CA38\t0xBF81\n0x8331CA39\t0xBF82\n0x8331CB30\t0xBF83\n0x8331CB31\t0xBF84\n0x8331CB32\t0xBF85\n0x8331CB33\t0xBF86\n0x8331CB34\t0xBF87\n0x8331CB35\t0xBF88\n0x8331CB36\t0xBF89\n0x8331CB37\t0xBF8A\n0x8331CB38\t0xBF8B\n0x8331CB39\t0xBF8C\n0x8331CC30\t0xBF8D\n0x8331CC31\t0xBF8E\n0x8331CC32\t0xBF8F\n0x8331CC33\t0xBF90\n0x8331CC34\t0xBF91\n0x8331CC35\t0xBF92\n0x8331CC36\t0xBF93\n0x8331CC37\t0xBF94\n0x8331CC38\t0xBF95\n0x8331CC39\t0xBF96\n0x8331CD30\t0xBF97\n0x8331CD31\t0xBF98\n0x8331CD32\t0xBF99\n0x8331CD33\t0xBF9A\n0x8331CD34\t0xBF9B\n0x8331CD35\t0xBF9C\n0x8331CD36\t0xBF9D\n0x8331CD37\t0xBF9E\n0x8331CD38\t0xBF9F\n0x8331CD39\t0xBFA0\n0x8331CE30\t0xBFA1\n0x8331CE31\t0xBFA2\n0x8331CE32\t0xBFA3\n0x8331CE33\t0xBFA4\n0x8331CE34\t0xBFA5\n0x8331CE35\t0xBFA6\n0x8331CE36\t0xBFA7\n0x8331CE37\t0xBFA8\n0x8331CE38\t0xBFA9\n0x8331CE39\t0xBFAA\n0x8331CF30\t0xBFAB\n0x8331CF31\t0xBFAC\n0x8331CF32\t0xBFAD\n0x8331CF33\t0xBFAE\n0x8331CF34\t0xBFAF\n0x8331CF35\t0xBFB0\n0x8331CF36\t0xBFB1\n0x8331CF37\t0xBFB2\n0x8331CF38\t0xBFB3\n0x8331CF39\t0xBFB4\n0x8331D030\t0xBFB5\n0x8331D031\t0xBFB6\n0x8331D032\t0xBFB7\n0x8331D033\t0xBFB8\n0x8331D034\t0xBFB9\n0x8331D035\t0xBFBA\n0x8331D036\t0xBFBB\n0x8331D037\t0xBFBC\n0x8331D038\t0xBFBD\n0x8331D039\t0xBFBE\n0x8331D130\t0xBFBF\n0x8331D131\t0xBFC0\n0x8331D132\t0xBFC1\n0x8331D133\t0xBFC2\n0x8331D134\t0xBFC3\n0x8331D135\t0xBFC4\n0x8331D136\t0xBFC5\n0x8331D137\t0xBFC6\n0x8331D138\t0xBFC7\n0x8331D139\t0xBFC8\n0x8331D230\t0xBFC9\n0x8331D231\t0xBFCA\n0x8331D232\t0xBFCB\n0x8331D233\t0xBFCC\n0x8331D234\t0xBFCD\n0x8331D235\t0xBFCE\n0x8331D236\t0xBFCF\n0x8331D237\t0xBFD0\n0x8331D238\t0xBFD1\n0x8331D239\t0xBFD2\n0x8331D330\t0xBFD3\n0x8331D331\t0xBFD4\n0x8331D332\t0xBFD5\n0x8331D333\t0xBFD6\n0x8331D334\t0xBFD7\n0x8331D335\t0xBFD8\n0x8331D336\t0xBFD9\n0x8331D337\t0xBFDA\n0x8331D338\t0xBFDB\n0x8331D339\t0xBFDC\n0x8331D430\t0xBFDD\n0x8331D431\t0xBFDE\n0x8331D432\t0xBFDF\n0x8331D433\t0xBFE0\n0x8331D434\t0xBFE1\n0x8331D435\t0xBFE2\n0x8331D436\t0xBFE3\n0x8331D437\t0xBFE4\n0x8331D438\t0xBFE5\n0x8331D439\t0xBFE6\n0x8331D530\t0xBFE7\n0x8331D531\t0xBFE8\n0x8331D532\t0xBFE9\n0x8331D533\t0xBFEA\n0x8331D534\t0xBFEB\n0x8331D535\t0xBFEC\n0x8331D536\t0xBFED\n0x8331D537\t0xBFEE\n0x8331D538\t0xBFEF\n0x8331D539\t0xBFF0\n0x8331D630\t0xBFF1\n0x8331D631\t0xBFF2\n0x8331D632\t0xBFF3\n0x8331D633\t0xBFF4\n0x8331D634\t0xBFF5\n0x8331D635\t0xBFF6\n0x8331D636\t0xBFF7\n0x8331D637\t0xBFF8\n0x8331D638\t0xBFF9\n0x8331D639\t0xBFFA\n0x8331D730\t0xBFFB\n0x8331D731\t0xBFFC\n0x8331D732\t0xBFFD\n0x8331D733\t0xBFFE\n0x8331D734\t0xBFFF\n0x8331D735\t0xC000\n0x8331D736\t0xC001\n0x8331D737\t0xC002\n0x8331D738\t0xC003\n0x8331D739\t0xC004\n0x8331D830\t0xC005\n0x8331D831\t0xC006\n0x8331D832\t0xC007\n0x8331D833\t0xC008\n0x8331D834\t0xC009\n0x8331D835\t0xC00A\n0x8331D836\t0xC00B\n0x8331D837\t0xC00C\n0x8331D838\t0xC00D\n0x8331D839\t0xC00E\n0x8331D930\t0xC00F\n0x8331D931\t0xC010\n0x8331D932\t0xC011\n0x8331D933\t0xC012\n0x8331D934\t0xC013\n0x8331D935\t0xC014\n0x8331D936\t0xC015\n0x8331D937\t0xC016\n0x8331D938\t0xC017\n0x8331D939\t0xC018\n0x8331DA30\t0xC019\n0x8331DA31\t0xC01A\n0x8331DA32\t0xC01B\n0x8331DA33\t0xC01C\n0x8331DA34\t0xC01D\n0x8331DA35\t0xC01E\n0x8331DA36\t0xC01F\n0x8331DA37\t0xC020\n0x8331DA38\t0xC021\n0x8331DA39\t0xC022\n0x8331DB30\t0xC023\n0x8331DB31\t0xC024\n0x8331DB32\t0xC025\n0x8331DB33\t0xC026\n0x8331DB34\t0xC027\n0x8331DB35\t0xC028\n0x8331DB36\t0xC029\n0x8331DB37\t0xC02A\n0x8331DB38\t0xC02B\n0x8331DB39\t0xC02C\n0x8331DC30\t0xC02D\n0x8331DC31\t0xC02E\n0x8331DC32\t0xC02F\n0x8331DC33\t0xC030\n0x8331DC34\t0xC031\n0x8331DC35\t0xC032\n0x8331DC36\t0xC033\n0x8331DC37\t0xC034\n0x8331DC38\t0xC035\n0x8331DC39\t0xC036\n0x8331DD30\t0xC037\n0x8331DD31\t0xC038\n0x8331DD32\t0xC039\n0x8331DD33\t0xC03A\n0x8331DD34\t0xC03B\n0x8331DD35\t0xC03C\n0x8331DD36\t0xC03D\n0x8331DD37\t0xC03E\n0x8331DD38\t0xC03F\n0x8331DD39\t0xC040\n0x8331DE30\t0xC041\n0x8331DE31\t0xC042\n0x8331DE32\t0xC043\n0x8331DE33\t0xC044\n0x8331DE34\t0xC045\n0x8331DE35\t0xC046\n0x8331DE36\t0xC047\n0x8331DE37\t0xC048\n0x8331DE38\t0xC049\n0x8331DE39\t0xC04A\n0x8331DF30\t0xC04B\n0x8331DF31\t0xC04C\n0x8331DF32\t0xC04D\n0x8331DF33\t0xC04E\n0x8331DF34\t0xC04F\n0x8331DF35\t0xC050\n0x8331DF36\t0xC051\n0x8331DF37\t0xC052\n0x8331DF38\t0xC053\n0x8331DF39\t0xC054\n0x8331E030\t0xC055\n0x8331E031\t0xC056\n0x8331E032\t0xC057\n0x8331E033\t0xC058\n0x8331E034\t0xC059\n0x8331E035\t0xC05A\n0x8331E036\t0xC05B\n0x8331E037\t0xC05C\n0x8331E038\t0xC05D\n0x8331E039\t0xC05E\n0x8331E130\t0xC05F\n0x8331E131\t0xC060\n0x8331E132\t0xC061\n0x8331E133\t0xC062\n0x8331E134\t0xC063\n0x8331E135\t0xC064\n0x8331E136\t0xC065\n0x8331E137\t0xC066\n0x8331E138\t0xC067\n0x8331E139\t0xC068\n0x8331E230\t0xC069\n0x8331E231\t0xC06A\n0x8331E232\t0xC06B\n0x8331E233\t0xC06C\n0x8331E234\t0xC06D\n0x8331E235\t0xC06E\n0x8331E236\t0xC06F\n0x8331E237\t0xC070\n0x8331E238\t0xC071\n0x8331E239\t0xC072\n0x8331E330\t0xC073\n0x8331E331\t0xC074\n0x8331E332\t0xC075\n0x8331E333\t0xC076\n0x8331E334\t0xC077\n0x8331E335\t0xC078\n0x8331E336\t0xC079\n0x8331E337\t0xC07A\n0x8331E338\t0xC07B\n0x8331E339\t0xC07C\n0x8331E430\t0xC07D\n0x8331E431\t0xC07E\n0x8331E432\t0xC07F\n0x8331E433\t0xC080\n0x8331E434\t0xC081\n0x8331E435\t0xC082\n0x8331E436\t0xC083\n0x8331E437\t0xC084\n0x8331E438\t0xC085\n0x8331E439\t0xC086\n0x8331E530\t0xC087\n0x8331E531\t0xC088\n0x8331E532\t0xC089\n0x8331E533\t0xC08A\n0x8331E534\t0xC08B\n0x8331E535\t0xC08C\n0x8331E536\t0xC08D\n0x8331E537\t0xC08E\n0x8331E538\t0xC08F\n0x8331E539\t0xC090\n0x8331E630\t0xC091\n0x8331E631\t0xC092\n0x8331E632\t0xC093\n0x8331E633\t0xC094\n0x8331E634\t0xC095\n0x8331E635\t0xC096\n0x8331E636\t0xC097\n0x8331E637\t0xC098\n0x8331E638\t0xC099\n0x8331E639\t0xC09A\n0x8331E730\t0xC09B\n0x8331E731\t0xC09C\n0x8331E732\t0xC09D\n0x8331E733\t0xC09E\n0x8331E734\t0xC09F\n0x8331E735\t0xC0A0\n0x8331E736\t0xC0A1\n0x8331E737\t0xC0A2\n0x8331E738\t0xC0A3\n0x8331E739\t0xC0A4\n0x8331E830\t0xC0A5\n0x8331E831\t0xC0A6\n0x8331E832\t0xC0A7\n0x8331E833\t0xC0A8\n0x8331E834\t0xC0A9\n0x8331E835\t0xC0AA\n0x8331E836\t0xC0AB\n0x8331E837\t0xC0AC\n0x8331E838\t0xC0AD\n0x8331E839\t0xC0AE\n0x8331E930\t0xC0AF\n0x8331E931\t0xC0B0\n0x8331E932\t0xC0B1\n0x8331E933\t0xC0B2\n0x8331E934\t0xC0B3\n0x8331E935\t0xC0B4\n0x8331E936\t0xC0B5\n0x8331E937\t0xC0B6\n0x8331E938\t0xC0B7\n0x8331E939\t0xC0B8\n0x8331EA30\t0xC0B9\n0x8331EA31\t0xC0BA\n0x8331EA32\t0xC0BB\n0x8331EA33\t0xC0BC\n0x8331EA34\t0xC0BD\n0x8331EA35\t0xC0BE\n0x8331EA36\t0xC0BF\n0x8331EA37\t0xC0C0\n0x8331EA38\t0xC0C1\n0x8331EA39\t0xC0C2\n0x8331EB30\t0xC0C3\n0x8331EB31\t0xC0C4\n0x8331EB32\t0xC0C5\n0x8331EB33\t0xC0C6\n0x8331EB34\t0xC0C7\n0x8331EB35\t0xC0C8\n0x8331EB36\t0xC0C9\n0x8331EB37\t0xC0CA\n0x8331EB38\t0xC0CB\n0x8331EB39\t0xC0CC\n0x8331EC30\t0xC0CD\n0x8331EC31\t0xC0CE\n0x8331EC32\t0xC0CF\n0x8331EC33\t0xC0D0\n0x8331EC34\t0xC0D1\n0x8331EC35\t0xC0D2\n0x8331EC36\t0xC0D3\n0x8331EC37\t0xC0D4\n0x8331EC38\t0xC0D5\n0x8331EC39\t0xC0D6\n0x8331ED30\t0xC0D7\n0x8331ED31\t0xC0D8\n0x8331ED32\t0xC0D9\n0x8331ED33\t0xC0DA\n0x8331ED34\t0xC0DB\n0x8331ED35\t0xC0DC\n0x8331ED36\t0xC0DD\n0x8331ED37\t0xC0DE\n0x8331ED38\t0xC0DF\n0x8331ED39\t0xC0E0\n0x8331EE30\t0xC0E1\n0x8331EE31\t0xC0E2\n0x8331EE32\t0xC0E3\n0x8331EE33\t0xC0E4\n0x8331EE34\t0xC0E5\n0x8331EE35\t0xC0E6\n0x8331EE36\t0xC0E7\n0x8331EE37\t0xC0E8\n0x8331EE38\t0xC0E9\n0x8331EE39\t0xC0EA\n0x8331EF30\t0xC0EB\n0x8331EF31\t0xC0EC\n0x8331EF32\t0xC0ED\n0x8331EF33\t0xC0EE\n0x8331EF34\t0xC0EF\n0x8331EF35\t0xC0F0\n0x8331EF36\t0xC0F1\n0x8331EF37\t0xC0F2\n0x8331EF38\t0xC0F3\n0x8331EF39\t0xC0F4\n0x8331F030\t0xC0F5\n0x8331F031\t0xC0F6\n0x8331F032\t0xC0F7\n0x8331F033\t0xC0F8\n0x8331F034\t0xC0F9\n0x8331F035\t0xC0FA\n0x8331F036\t0xC0FB\n0x8331F037\t0xC0FC\n0x8331F038\t0xC0FD\n0x8331F039\t0xC0FE\n0x8331F130\t0xC0FF\n0x8331F131\t0xC100\n0x8331F132\t0xC101\n0x8331F133\t0xC102\n0x8331F134\t0xC103\n0x8331F135\t0xC104\n0x8331F136\t0xC105\n0x8331F137\t0xC106\n0x8331F138\t0xC107\n0x8331F139\t0xC108\n0x8331F230\t0xC109\n0x8331F231\t0xC10A\n0x8331F232\t0xC10B\n0x8331F233\t0xC10C\n0x8331F234\t0xC10D\n0x8331F235\t0xC10E\n0x8331F236\t0xC10F\n0x8331F237\t0xC110\n0x8331F238\t0xC111\n0x8331F239\t0xC112\n0x8331F330\t0xC113\n0x8331F331\t0xC114\n0x8331F332\t0xC115\n0x8331F333\t0xC116\n0x8331F334\t0xC117\n0x8331F335\t0xC118\n0x8331F336\t0xC119\n0x8331F337\t0xC11A\n0x8331F338\t0xC11B\n0x8331F339\t0xC11C\n0x8331F430\t0xC11D\n0x8331F431\t0xC11E\n0x8331F432\t0xC11F\n0x8331F433\t0xC120\n0x8331F434\t0xC121\n0x8331F435\t0xC122\n0x8331F436\t0xC123\n0x8331F437\t0xC124\n0x8331F438\t0xC125\n0x8331F439\t0xC126\n0x8331F530\t0xC127\n0x8331F531\t0xC128\n0x8331F532\t0xC129\n0x8331F533\t0xC12A\n0x8331F534\t0xC12B\n0x8331F535\t0xC12C\n0x8331F536\t0xC12D\n0x8331F537\t0xC12E\n0x8331F538\t0xC12F\n0x8331F539\t0xC130\n0x8331F630\t0xC131\n0x8331F631\t0xC132\n0x8331F632\t0xC133\n0x8331F633\t0xC134\n0x8331F634\t0xC135\n0x8331F635\t0xC136\n0x8331F636\t0xC137\n0x8331F637\t0xC138\n0x8331F638\t0xC139\n0x8331F639\t0xC13A\n0x8331F730\t0xC13B\n0x8331F731\t0xC13C\n0x8331F732\t0xC13D\n0x8331F733\t0xC13E\n0x8331F734\t0xC13F\n0x8331F735\t0xC140\n0x8331F736\t0xC141\n0x8331F737\t0xC142\n0x8331F738\t0xC143\n0x8331F739\t0xC144\n0x8331F830\t0xC145\n0x8331F831\t0xC146\n0x8331F832\t0xC147\n0x8331F833\t0xC148\n0x8331F834\t0xC149\n0x8331F835\t0xC14A\n0x8331F836\t0xC14B\n0x8331F837\t0xC14C\n0x8331F838\t0xC14D\n0x8331F839\t0xC14E\n0x8331F930\t0xC14F\n0x8331F931\t0xC150\n0x8331F932\t0xC151\n0x8331F933\t0xC152\n0x8331F934\t0xC153\n0x8331F935\t0xC154\n0x8331F936\t0xC155\n0x8331F937\t0xC156\n0x8331F938\t0xC157\n0x8331F939\t0xC158\n0x8331FA30\t0xC159\n0x8331FA31\t0xC15A\n0x8331FA32\t0xC15B\n0x8331FA33\t0xC15C\n0x8331FA34\t0xC15D\n0x8331FA35\t0xC15E\n0x8331FA36\t0xC15F\n0x8331FA37\t0xC160\n0x8331FA38\t0xC161\n0x8331FA39\t0xC162\n0x8331FB30\t0xC163\n0x8331FB31\t0xC164\n0x8331FB32\t0xC165\n0x8331FB33\t0xC166\n0x8331FB34\t0xC167\n0x8331FB35\t0xC168\n0x8331FB36\t0xC169\n0x8331FB37\t0xC16A\n0x8331FB38\t0xC16B\n0x8331FB39\t0xC16C\n0x8331FC30\t0xC16D\n0x8331FC31\t0xC16E\n0x8331FC32\t0xC16F\n0x8331FC33\t0xC170\n0x8331FC34\t0xC171\n0x8331FC35\t0xC172\n0x8331FC36\t0xC173\n0x8331FC37\t0xC174\n0x8331FC38\t0xC175\n0x8331FC39\t0xC176\n0x8331FD30\t0xC177\n0x8331FD31\t0xC178\n0x8331FD32\t0xC179\n0x8331FD33\t0xC17A\n0x8331FD34\t0xC17B\n0x8331FD35\t0xC17C\n0x8331FD36\t0xC17D\n0x8331FD37\t0xC17E\n0x8331FD38\t0xC17F\n0x8331FD39\t0xC180\n0x8331FE30\t0xC181\n0x8331FE31\t0xC182\n0x8331FE32\t0xC183\n0x8331FE33\t0xC184\n0x8331FE34\t0xC185\n0x8331FE35\t0xC186\n0x8331FE36\t0xC187\n0x8331FE37\t0xC188\n0x8331FE38\t0xC189\n0x8331FE39\t0xC18A\n0x83328130\t0xC18B\n0x83328131\t0xC18C\n0x83328132\t0xC18D\n0x83328133\t0xC18E\n0x83328134\t0xC18F\n0x83328135\t0xC190\n0x83328136\t0xC191\n0x83328137\t0xC192\n0x83328138\t0xC193\n0x83328139\t0xC194\n0x83328230\t0xC195\n0x83328231\t0xC196\n0x83328232\t0xC197\n0x83328233\t0xC198\n0x83328234\t0xC199\n0x83328235\t0xC19A\n0x83328236\t0xC19B\n0x83328237\t0xC19C\n0x83328238\t0xC19D\n0x83328239\t0xC19E\n0x83328330\t0xC19F\n0x83328331\t0xC1A0\n0x83328332\t0xC1A1\n0x83328333\t0xC1A2\n0x83328334\t0xC1A3\n0x83328335\t0xC1A4\n0x83328336\t0xC1A5\n0x83328337\t0xC1A6\n0x83328338\t0xC1A7\n0x83328339\t0xC1A8\n0x83328430\t0xC1A9\n0x83328431\t0xC1AA\n0x83328432\t0xC1AB\n0x83328433\t0xC1AC\n0x83328434\t0xC1AD\n0x83328435\t0xC1AE\n0x83328436\t0xC1AF\n0x83328437\t0xC1B0\n0x83328438\t0xC1B1\n0x83328439\t0xC1B2\n0x83328530\t0xC1B3\n0x83328531\t0xC1B4\n0x83328532\t0xC1B5\n0x83328533\t0xC1B6\n0x83328534\t0xC1B7\n0x83328535\t0xC1B8\n0x83328536\t0xC1B9\n0x83328537\t0xC1BA\n0x83328538\t0xC1BB\n0x83328539\t0xC1BC\n0x83328630\t0xC1BD\n0x83328631\t0xC1BE\n0x83328632\t0xC1BF\n0x83328633\t0xC1C0\n0x83328634\t0xC1C1\n0x83328635\t0xC1C2\n0x83328636\t0xC1C3\n0x83328637\t0xC1C4\n0x83328638\t0xC1C5\n0x83328639\t0xC1C6\n0x83328730\t0xC1C7\n0x83328731\t0xC1C8\n0x83328732\t0xC1C9\n0x83328733\t0xC1CA\n0x83328734\t0xC1CB\n0x83328735\t0xC1CC\n0x83328736\t0xC1CD\n0x83328737\t0xC1CE\n0x83328738\t0xC1CF\n0x83328739\t0xC1D0\n0x83328830\t0xC1D1\n0x83328831\t0xC1D2\n0x83328832\t0xC1D3\n0x83328833\t0xC1D4\n0x83328834\t0xC1D5\n0x83328835\t0xC1D6\n0x83328836\t0xC1D7\n0x83328837\t0xC1D8\n0x83328838\t0xC1D9\n0x83328839\t0xC1DA\n0x83328930\t0xC1DB\n0x83328931\t0xC1DC\n0x83328932\t0xC1DD\n0x83328933\t0xC1DE\n0x83328934\t0xC1DF\n0x83328935\t0xC1E0\n0x83328936\t0xC1E1\n0x83328937\t0xC1E2\n0x83328938\t0xC1E3\n0x83328939\t0xC1E4\n0x83328A30\t0xC1E5\n0x83328A31\t0xC1E6\n0x83328A32\t0xC1E7\n0x83328A33\t0xC1E8\n0x83328A34\t0xC1E9\n0x83328A35\t0xC1EA\n0x83328A36\t0xC1EB\n0x83328A37\t0xC1EC\n0x83328A38\t0xC1ED\n0x83328A39\t0xC1EE\n0x83328B30\t0xC1EF\n0x83328B31\t0xC1F0\n0x83328B32\t0xC1F1\n0x83328B33\t0xC1F2\n0x83328B34\t0xC1F3\n0x83328B35\t0xC1F4\n0x83328B36\t0xC1F5\n0x83328B37\t0xC1F6\n0x83328B38\t0xC1F7\n0x83328B39\t0xC1F8\n0x83328C30\t0xC1F9\n0x83328C31\t0xC1FA\n0x83328C32\t0xC1FB\n0x83328C33\t0xC1FC\n0x83328C34\t0xC1FD\n0x83328C35\t0xC1FE\n0x83328C36\t0xC1FF\n0x83328C37\t0xC200\n0x83328C38\t0xC201\n0x83328C39\t0xC202\n0x83328D30\t0xC203\n0x83328D31\t0xC204\n0x83328D32\t0xC205\n0x83328D33\t0xC206\n0x83328D34\t0xC207\n0x83328D35\t0xC208\n0x83328D36\t0xC209\n0x83328D37\t0xC20A\n0x83328D38\t0xC20B\n0x83328D39\t0xC20C\n0x83328E30\t0xC20D\n0x83328E31\t0xC20E\n0x83328E32\t0xC20F\n0x83328E33\t0xC210\n0x83328E34\t0xC211\n0x83328E35\t0xC212\n0x83328E36\t0xC213\n0x83328E37\t0xC214\n0x83328E38\t0xC215\n0x83328E39\t0xC216\n0x83328F30\t0xC217\n0x83328F31\t0xC218\n0x83328F32\t0xC219\n0x83328F33\t0xC21A\n0x83328F34\t0xC21B\n0x83328F35\t0xC21C\n0x83328F36\t0xC21D\n0x83328F37\t0xC21E\n0x83328F38\t0xC21F\n0x83328F39\t0xC220\n0x83329030\t0xC221\n0x83329031\t0xC222\n0x83329032\t0xC223\n0x83329033\t0xC224\n0x83329034\t0xC225\n0x83329035\t0xC226\n0x83329036\t0xC227\n0x83329037\t0xC228\n0x83329038\t0xC229\n0x83329039\t0xC22A\n0x83329130\t0xC22B\n0x83329131\t0xC22C\n0x83329132\t0xC22D\n0x83329133\t0xC22E\n0x83329134\t0xC22F\n0x83329135\t0xC230\n0x83329136\t0xC231\n0x83329137\t0xC232\n0x83329138\t0xC233\n0x83329139\t0xC234\n0x83329230\t0xC235\n0x83329231\t0xC236\n0x83329232\t0xC237\n0x83329233\t0xC238\n0x83329234\t0xC239\n0x83329235\t0xC23A\n0x83329236\t0xC23B\n0x83329237\t0xC23C\n0x83329238\t0xC23D\n0x83329239\t0xC23E\n0x83329330\t0xC23F\n0x83329331\t0xC240\n0x83329332\t0xC241\n0x83329333\t0xC242\n0x83329334\t0xC243\n0x83329335\t0xC244\n0x83329336\t0xC245\n0x83329337\t0xC246\n0x83329338\t0xC247\n0x83329339\t0xC248\n0x83329430\t0xC249\n0x83329431\t0xC24A\n0x83329432\t0xC24B\n0x83329433\t0xC24C\n0x83329434\t0xC24D\n0x83329435\t0xC24E\n0x83329436\t0xC24F\n0x83329437\t0xC250\n0x83329438\t0xC251\n0x83329439\t0xC252\n0x83329530\t0xC253\n0x83329531\t0xC254\n0x83329532\t0xC255\n0x83329533\t0xC256\n0x83329534\t0xC257\n0x83329535\t0xC258\n0x83329536\t0xC259\n0x83329537\t0xC25A\n0x83329538\t0xC25B\n0x83329539\t0xC25C\n0x83329630\t0xC25D\n0x83329631\t0xC25E\n0x83329632\t0xC25F\n0x83329633\t0xC260\n0x83329634\t0xC261\n0x83329635\t0xC262\n0x83329636\t0xC263\n0x83329637\t0xC264\n0x83329638\t0xC265\n0x83329639\t0xC266\n0x83329730\t0xC267\n0x83329731\t0xC268\n0x83329732\t0xC269\n0x83329733\t0xC26A\n0x83329734\t0xC26B\n0x83329735\t0xC26C\n0x83329736\t0xC26D\n0x83329737\t0xC26E\n0x83329738\t0xC26F\n0x83329739\t0xC270\n0x83329830\t0xC271\n0x83329831\t0xC272\n0x83329832\t0xC273\n0x83329833\t0xC274\n0x83329834\t0xC275\n0x83329835\t0xC276\n0x83329836\t0xC277\n0x83329837\t0xC278\n0x83329838\t0xC279\n0x83329839\t0xC27A\n0x83329930\t0xC27B\n0x83329931\t0xC27C\n0x83329932\t0xC27D\n0x83329933\t0xC27E\n0x83329934\t0xC27F\n0x83329935\t0xC280\n0x83329936\t0xC281\n0x83329937\t0xC282\n0x83329938\t0xC283\n0x83329939\t0xC284\n0x83329A30\t0xC285\n0x83329A31\t0xC286\n0x83329A32\t0xC287\n0x83329A33\t0xC288\n0x83329A34\t0xC289\n0x83329A35\t0xC28A\n0x83329A36\t0xC28B\n0x83329A37\t0xC28C\n0x83329A38\t0xC28D\n0x83329A39\t0xC28E\n0x83329B30\t0xC28F\n0x83329B31\t0xC290\n0x83329B32\t0xC291\n0x83329B33\t0xC292\n0x83329B34\t0xC293\n0x83329B35\t0xC294\n0x83329B36\t0xC295\n0x83329B37\t0xC296\n0x83329B38\t0xC297\n0x83329B39\t0xC298\n0x83329C30\t0xC299\n0x83329C31\t0xC29A\n0x83329C32\t0xC29B\n0x83329C33\t0xC29C\n0x83329C34\t0xC29D\n0x83329C35\t0xC29E\n0x83329C36\t0xC29F\n0x83329C37\t0xC2A0\n0x83329C38\t0xC2A1\n0x83329C39\t0xC2A2\n0x83329D30\t0xC2A3\n0x83329D31\t0xC2A4\n0x83329D32\t0xC2A5\n0x83329D33\t0xC2A6\n0x83329D34\t0xC2A7\n0x83329D35\t0xC2A8\n0x83329D36\t0xC2A9\n0x83329D37\t0xC2AA\n0x83329D38\t0xC2AB\n0x83329D39\t0xC2AC\n0x83329E30\t0xC2AD\n0x83329E31\t0xC2AE\n0x83329E32\t0xC2AF\n0x83329E33\t0xC2B0\n0x83329E34\t0xC2B1\n0x83329E35\t0xC2B2\n0x83329E36\t0xC2B3\n0x83329E37\t0xC2B4\n0x83329E38\t0xC2B5\n0x83329E39\t0xC2B6\n0x83329F30\t0xC2B7\n0x83329F31\t0xC2B8\n0x83329F32\t0xC2B9\n0x83329F33\t0xC2BA\n0x83329F34\t0xC2BB\n0x83329F35\t0xC2BC\n0x83329F36\t0xC2BD\n0x83329F37\t0xC2BE\n0x83329F38\t0xC2BF\n0x83329F39\t0xC2C0\n0x8332A030\t0xC2C1\n0x8332A031\t0xC2C2\n0x8332A032\t0xC2C3\n0x8332A033\t0xC2C4\n0x8332A034\t0xC2C5\n0x8332A035\t0xC2C6\n0x8332A036\t0xC2C7\n0x8332A037\t0xC2C8\n0x8332A038\t0xC2C9\n0x8332A039\t0xC2CA\n0x8332A130\t0xC2CB\n0x8332A131\t0xC2CC\n0x8332A132\t0xC2CD\n0x8332A133\t0xC2CE\n0x8332A134\t0xC2CF\n0x8332A135\t0xC2D0\n0x8332A136\t0xC2D1\n0x8332A137\t0xC2D2\n0x8332A138\t0xC2D3\n0x8332A139\t0xC2D4\n0x8332A230\t0xC2D5\n0x8332A231\t0xC2D6\n0x8332A232\t0xC2D7\n0x8332A233\t0xC2D8\n0x8332A234\t0xC2D9\n0x8332A235\t0xC2DA\n0x8332A236\t0xC2DB\n0x8332A237\t0xC2DC\n0x8332A238\t0xC2DD\n0x8332A239\t0xC2DE\n0x8332A330\t0xC2DF\n0x8332A331\t0xC2E0\n0x8332A332\t0xC2E1\n0x8332A333\t0xC2E2\n0x8332A334\t0xC2E3\n0x8332A335\t0xC2E4\n0x8332A336\t0xC2E5\n0x8332A337\t0xC2E6\n0x8332A338\t0xC2E7\n0x8332A339\t0xC2E8\n0x8332A430\t0xC2E9\n0x8332A431\t0xC2EA\n0x8332A432\t0xC2EB\n0x8332A433\t0xC2EC\n0x8332A434\t0xC2ED\n0x8332A435\t0xC2EE\n0x8332A436\t0xC2EF\n0x8332A437\t0xC2F0\n0x8332A438\t0xC2F1\n0x8332A439\t0xC2F2\n0x8332A530\t0xC2F3\n0x8332A531\t0xC2F4\n0x8332A532\t0xC2F5\n0x8332A533\t0xC2F6\n0x8332A534\t0xC2F7\n0x8332A535\t0xC2F8\n0x8332A536\t0xC2F9\n0x8332A537\t0xC2FA\n0x8332A538\t0xC2FB\n0x8332A539\t0xC2FC\n0x8332A630\t0xC2FD\n0x8332A631\t0xC2FE\n0x8332A632\t0xC2FF\n0x8332A633\t0xC300\n0x8332A634\t0xC301\n0x8332A635\t0xC302\n0x8332A636\t0xC303\n0x8332A637\t0xC304\n0x8332A638\t0xC305\n0x8332A639\t0xC306\n0x8332A730\t0xC307\n0x8332A731\t0xC308\n0x8332A732\t0xC309\n0x8332A733\t0xC30A\n0x8332A734\t0xC30B\n0x8332A735\t0xC30C\n0x8332A736\t0xC30D\n0x8332A737\t0xC30E\n0x8332A738\t0xC30F\n0x8332A739\t0xC310\n0x8332A830\t0xC311\n0x8332A831\t0xC312\n0x8332A832\t0xC313\n0x8332A833\t0xC314\n0x8332A834\t0xC315\n0x8332A835\t0xC316\n0x8332A836\t0xC317\n0x8332A837\t0xC318\n0x8332A838\t0xC319\n0x8332A839\t0xC31A\n0x8332A930\t0xC31B\n0x8332A931\t0xC31C\n0x8332A932\t0xC31D\n0x8332A933\t0xC31E\n0x8332A934\t0xC31F\n0x8332A935\t0xC320\n0x8332A936\t0xC321\n0x8332A937\t0xC322\n0x8332A938\t0xC323\n0x8332A939\t0xC324\n0x8332AA30\t0xC325\n0x8332AA31\t0xC326\n0x8332AA32\t0xC327\n0x8332AA33\t0xC328\n0x8332AA34\t0xC329\n0x8332AA35\t0xC32A\n0x8332AA36\t0xC32B\n0x8332AA37\t0xC32C\n0x8332AA38\t0xC32D\n0x8332AA39\t0xC32E\n0x8332AB30\t0xC32F\n0x8332AB31\t0xC330\n0x8332AB32\t0xC331\n0x8332AB33\t0xC332\n0x8332AB34\t0xC333\n0x8332AB35\t0xC334\n0x8332AB36\t0xC335\n0x8332AB37\t0xC336\n0x8332AB38\t0xC337\n0x8332AB39\t0xC338\n0x8332AC30\t0xC339\n0x8332AC31\t0xC33A\n0x8332AC32\t0xC33B\n0x8332AC33\t0xC33C\n0x8332AC34\t0xC33D\n0x8332AC35\t0xC33E\n0x8332AC36\t0xC33F\n0x8332AC37\t0xC340\n0x8332AC38\t0xC341\n0x8332AC39\t0xC342\n0x8332AD30\t0xC343\n0x8332AD31\t0xC344\n0x8332AD32\t0xC345\n0x8332AD33\t0xC346\n0x8332AD34\t0xC347\n0x8332AD35\t0xC348\n0x8332AD36\t0xC349\n0x8332AD37\t0xC34A\n0x8332AD38\t0xC34B\n0x8332AD39\t0xC34C\n0x8332AE30\t0xC34D\n0x8332AE31\t0xC34E\n0x8332AE32\t0xC34F\n0x8332AE33\t0xC350\n0x8332AE34\t0xC351\n0x8332AE35\t0xC352\n0x8332AE36\t0xC353\n0x8332AE37\t0xC354\n0x8332AE38\t0xC355\n0x8332AE39\t0xC356\n0x8332AF30\t0xC357\n0x8332AF31\t0xC358\n0x8332AF32\t0xC359\n0x8332AF33\t0xC35A\n0x8332AF34\t0xC35B\n0x8332AF35\t0xC35C\n0x8332AF36\t0xC35D\n0x8332AF37\t0xC35E\n0x8332AF38\t0xC35F\n0x8332AF39\t0xC360\n0x8332B030\t0xC361\n0x8332B031\t0xC362\n0x8332B032\t0xC363\n0x8332B033\t0xC364\n0x8332B034\t0xC365\n0x8332B035\t0xC366\n0x8332B036\t0xC367\n0x8332B037\t0xC368\n0x8332B038\t0xC369\n0x8332B039\t0xC36A\n0x8332B130\t0xC36B\n0x8332B131\t0xC36C\n0x8332B132\t0xC36D\n0x8332B133\t0xC36E\n0x8332B134\t0xC36F\n0x8332B135\t0xC370\n0x8332B136\t0xC371\n0x8332B137\t0xC372\n0x8332B138\t0xC373\n0x8332B139\t0xC374\n0x8332B230\t0xC375\n0x8332B231\t0xC376\n0x8332B232\t0xC377\n0x8332B233\t0xC378\n0x8332B234\t0xC379\n0x8332B235\t0xC37A\n0x8332B236\t0xC37B\n0x8332B237\t0xC37C\n0x8332B238\t0xC37D\n0x8332B239\t0xC37E\n0x8332B330\t0xC37F\n0x8332B331\t0xC380\n0x8332B332\t0xC381\n0x8332B333\t0xC382\n0x8332B334\t0xC383\n0x8332B335\t0xC384\n0x8332B336\t0xC385\n0x8332B337\t0xC386\n0x8332B338\t0xC387\n0x8332B339\t0xC388\n0x8332B430\t0xC389\n0x8332B431\t0xC38A\n0x8332B432\t0xC38B\n0x8332B433\t0xC38C\n0x8332B434\t0xC38D\n0x8332B435\t0xC38E\n0x8332B436\t0xC38F\n0x8332B437\t0xC390\n0x8332B438\t0xC391\n0x8332B439\t0xC392\n0x8332B530\t0xC393\n0x8332B531\t0xC394\n0x8332B532\t0xC395\n0x8332B533\t0xC396\n0x8332B534\t0xC397\n0x8332B535\t0xC398\n0x8332B536\t0xC399\n0x8332B537\t0xC39A\n0x8332B538\t0xC39B\n0x8332B539\t0xC39C\n0x8332B630\t0xC39D\n0x8332B631\t0xC39E\n0x8332B632\t0xC39F\n0x8332B633\t0xC3A0\n0x8332B634\t0xC3A1\n0x8332B635\t0xC3A2\n0x8332B636\t0xC3A3\n0x8332B637\t0xC3A4\n0x8332B638\t0xC3A5\n0x8332B639\t0xC3A6\n0x8332B730\t0xC3A7\n0x8332B731\t0xC3A8\n0x8332B732\t0xC3A9\n0x8332B733\t0xC3AA\n0x8332B734\t0xC3AB\n0x8332B735\t0xC3AC\n0x8332B736\t0xC3AD\n0x8332B737\t0xC3AE\n0x8332B738\t0xC3AF\n0x8332B739\t0xC3B0\n0x8332B830\t0xC3B1\n0x8332B831\t0xC3B2\n0x8332B832\t0xC3B3\n0x8332B833\t0xC3B4\n0x8332B834\t0xC3B5\n0x8332B835\t0xC3B6\n0x8332B836\t0xC3B7\n0x8332B837\t0xC3B8\n0x8332B838\t0xC3B9\n0x8332B839\t0xC3BA\n0x8332B930\t0xC3BB\n0x8332B931\t0xC3BC\n0x8332B932\t0xC3BD\n0x8332B933\t0xC3BE\n0x8332B934\t0xC3BF\n0x8332B935\t0xC3C0\n0x8332B936\t0xC3C1\n0x8332B937\t0xC3C2\n0x8332B938\t0xC3C3\n0x8332B939\t0xC3C4\n0x8332BA30\t0xC3C5\n0x8332BA31\t0xC3C6\n0x8332BA32\t0xC3C7\n0x8332BA33\t0xC3C8\n0x8332BA34\t0xC3C9\n0x8332BA35\t0xC3CA\n0x8332BA36\t0xC3CB\n0x8332BA37\t0xC3CC\n0x8332BA38\t0xC3CD\n0x8332BA39\t0xC3CE\n0x8332BB30\t0xC3CF\n0x8332BB31\t0xC3D0\n0x8332BB32\t0xC3D1\n0x8332BB33\t0xC3D2\n0x8332BB34\t0xC3D3\n0x8332BB35\t0xC3D4\n0x8332BB36\t0xC3D5\n0x8332BB37\t0xC3D6\n0x8332BB38\t0xC3D7\n0x8332BB39\t0xC3D8\n0x8332BC30\t0xC3D9\n0x8332BC31\t0xC3DA\n0x8332BC32\t0xC3DB\n0x8332BC33\t0xC3DC\n0x8332BC34\t0xC3DD\n0x8332BC35\t0xC3DE\n0x8332BC36\t0xC3DF\n0x8332BC37\t0xC3E0\n0x8332BC38\t0xC3E1\n0x8332BC39\t0xC3E2\n0x8332BD30\t0xC3E3\n0x8332BD31\t0xC3E4\n0x8332BD32\t0xC3E5\n0x8332BD33\t0xC3E6\n0x8332BD34\t0xC3E7\n0x8332BD35\t0xC3E8\n0x8332BD36\t0xC3E9\n0x8332BD37\t0xC3EA\n0x8332BD38\t0xC3EB\n0x8332BD39\t0xC3EC\n0x8332BE30\t0xC3ED\n0x8332BE31\t0xC3EE\n0x8332BE32\t0xC3EF\n0x8332BE33\t0xC3F0\n0x8332BE34\t0xC3F1\n0x8332BE35\t0xC3F2\n0x8332BE36\t0xC3F3\n0x8332BE37\t0xC3F4\n0x8332BE38\t0xC3F5\n0x8332BE39\t0xC3F6\n0x8332BF30\t0xC3F7\n0x8332BF31\t0xC3F8\n0x8332BF32\t0xC3F9\n0x8332BF33\t0xC3FA\n0x8332BF34\t0xC3FB\n0x8332BF35\t0xC3FC\n0x8332BF36\t0xC3FD\n0x8332BF37\t0xC3FE\n0x8332BF38\t0xC3FF\n0x8332BF39\t0xC400\n0x8332C030\t0xC401\n0x8332C031\t0xC402\n0x8332C032\t0xC403\n0x8332C033\t0xC404\n0x8332C034\t0xC405\n0x8332C035\t0xC406\n0x8332C036\t0xC407\n0x8332C037\t0xC408\n0x8332C038\t0xC409\n0x8332C039\t0xC40A\n0x8332C130\t0xC40B\n0x8332C131\t0xC40C\n0x8332C132\t0xC40D\n0x8332C133\t0xC40E\n0x8332C134\t0xC40F\n0x8332C135\t0xC410\n0x8332C136\t0xC411\n0x8332C137\t0xC412\n0x8332C138\t0xC413\n0x8332C139\t0xC414\n0x8332C230\t0xC415\n0x8332C231\t0xC416\n0x8332C232\t0xC417\n0x8332C233\t0xC418\n0x8332C234\t0xC419\n0x8332C235\t0xC41A\n0x8332C236\t0xC41B\n0x8332C237\t0xC41C\n0x8332C238\t0xC41D\n0x8332C239\t0xC41E\n0x8332C330\t0xC41F\n0x8332C331\t0xC420\n0x8332C332\t0xC421\n0x8332C333\t0xC422\n0x8332C334\t0xC423\n0x8332C335\t0xC424\n0x8332C336\t0xC425\n0x8332C337\t0xC426\n0x8332C338\t0xC427\n0x8332C339\t0xC428\n0x8332C430\t0xC429\n0x8332C431\t0xC42A\n0x8332C432\t0xC42B\n0x8332C433\t0xC42C\n0x8332C434\t0xC42D\n0x8332C435\t0xC42E\n0x8332C436\t0xC42F\n0x8332C437\t0xC430\n0x8332C438\t0xC431\n0x8332C439\t0xC432\n0x8332C530\t0xC433\n0x8332C531\t0xC434\n0x8332C532\t0xC435\n0x8332C533\t0xC436\n0x8332C534\t0xC437\n0x8332C535\t0xC438\n0x8332C536\t0xC439\n0x8332C537\t0xC43A\n0x8332C538\t0xC43B\n0x8332C539\t0xC43C\n0x8332C630\t0xC43D\n0x8332C631\t0xC43E\n0x8332C632\t0xC43F\n0x8332C633\t0xC440\n0x8332C634\t0xC441\n0x8332C635\t0xC442\n0x8332C636\t0xC443\n0x8332C637\t0xC444\n0x8332C638\t0xC445\n0x8332C639\t0xC446\n0x8332C730\t0xC447\n0x8332C731\t0xC448\n0x8332C732\t0xC449\n0x8332C733\t0xC44A\n0x8332C734\t0xC44B\n0x8332C735\t0xC44C\n0x8332C736\t0xC44D\n0x8332C737\t0xC44E\n0x8332C738\t0xC44F\n0x8332C739\t0xC450\n0x8332C830\t0xC451\n0x8332C831\t0xC452\n0x8332C832\t0xC453\n0x8332C833\t0xC454\n0x8332C834\t0xC455\n0x8332C835\t0xC456\n0x8332C836\t0xC457\n0x8332C837\t0xC458\n0x8332C838\t0xC459\n0x8332C839\t0xC45A\n0x8332C930\t0xC45B\n0x8332C931\t0xC45C\n0x8332C932\t0xC45D\n0x8332C933\t0xC45E\n0x8332C934\t0xC45F\n0x8332C935\t0xC460\n0x8332C936\t0xC461\n0x8332C937\t0xC462\n0x8332C938\t0xC463\n0x8332C939\t0xC464\n0x8332CA30\t0xC465\n0x8332CA31\t0xC466\n0x8332CA32\t0xC467\n0x8332CA33\t0xC468\n0x8332CA34\t0xC469\n0x8332CA35\t0xC46A\n0x8332CA36\t0xC46B\n0x8332CA37\t0xC46C\n0x8332CA38\t0xC46D\n0x8332CA39\t0xC46E\n0x8332CB30\t0xC46F\n0x8332CB31\t0xC470\n0x8332CB32\t0xC471\n0x8332CB33\t0xC472\n0x8332CB34\t0xC473\n0x8332CB35\t0xC474\n0x8332CB36\t0xC475\n0x8332CB37\t0xC476\n0x8332CB38\t0xC477\n0x8332CB39\t0xC478\n0x8332CC30\t0xC479\n0x8332CC31\t0xC47A\n0x8332CC32\t0xC47B\n0x8332CC33\t0xC47C\n0x8332CC34\t0xC47D\n0x8332CC35\t0xC47E\n0x8332CC36\t0xC47F\n0x8332CC37\t0xC480\n0x8332CC38\t0xC481\n0x8332CC39\t0xC482\n0x8332CD30\t0xC483\n0x8332CD31\t0xC484\n0x8332CD32\t0xC485\n0x8332CD33\t0xC486\n0x8332CD34\t0xC487\n0x8332CD35\t0xC488\n0x8332CD36\t0xC489\n0x8332CD37\t0xC48A\n0x8332CD38\t0xC48B\n0x8332CD39\t0xC48C\n0x8332CE30\t0xC48D\n0x8332CE31\t0xC48E\n0x8332CE32\t0xC48F\n0x8332CE33\t0xC490\n0x8332CE34\t0xC491\n0x8332CE35\t0xC492\n0x8332CE36\t0xC493\n0x8332CE37\t0xC494\n0x8332CE38\t0xC495\n0x8332CE39\t0xC496\n0x8332CF30\t0xC497\n0x8332CF31\t0xC498\n0x8332CF32\t0xC499\n0x8332CF33\t0xC49A\n0x8332CF34\t0xC49B\n0x8332CF35\t0xC49C\n0x8332CF36\t0xC49D\n0x8332CF37\t0xC49E\n0x8332CF38\t0xC49F\n0x8332CF39\t0xC4A0\n0x8332D030\t0xC4A1\n0x8332D031\t0xC4A2\n0x8332D032\t0xC4A3\n0x8332D033\t0xC4A4\n0x8332D034\t0xC4A5\n0x8332D035\t0xC4A6\n0x8332D036\t0xC4A7\n0x8332D037\t0xC4A8\n0x8332D038\t0xC4A9\n0x8332D039\t0xC4AA\n0x8332D130\t0xC4AB\n0x8332D131\t0xC4AC\n0x8332D132\t0xC4AD\n0x8332D133\t0xC4AE\n0x8332D134\t0xC4AF\n0x8332D135\t0xC4B0\n0x8332D136\t0xC4B1\n0x8332D137\t0xC4B2\n0x8332D138\t0xC4B3\n0x8332D139\t0xC4B4\n0x8332D230\t0xC4B5\n0x8332D231\t0xC4B6\n0x8332D232\t0xC4B7\n0x8332D233\t0xC4B8\n0x8332D234\t0xC4B9\n0x8332D235\t0xC4BA\n0x8332D236\t0xC4BB\n0x8332D237\t0xC4BC\n0x8332D238\t0xC4BD\n0x8332D239\t0xC4BE\n0x8332D330\t0xC4BF\n0x8332D331\t0xC4C0\n0x8332D332\t0xC4C1\n0x8332D333\t0xC4C2\n0x8332D334\t0xC4C3\n0x8332D335\t0xC4C4\n0x8332D336\t0xC4C5\n0x8332D337\t0xC4C6\n0x8332D338\t0xC4C7\n0x8332D339\t0xC4C8\n0x8332D430\t0xC4C9\n0x8332D431\t0xC4CA\n0x8332D432\t0xC4CB\n0x8332D433\t0xC4CC\n0x8332D434\t0xC4CD\n0x8332D435\t0xC4CE\n0x8332D436\t0xC4CF\n0x8332D437\t0xC4D0\n0x8332D438\t0xC4D1\n0x8332D439\t0xC4D2\n0x8332D530\t0xC4D3\n0x8332D531\t0xC4D4\n0x8332D532\t0xC4D5\n0x8332D533\t0xC4D6\n0x8332D534\t0xC4D7\n0x8332D535\t0xC4D8\n0x8332D536\t0xC4D9\n0x8332D537\t0xC4DA\n0x8332D538\t0xC4DB\n0x8332D539\t0xC4DC\n0x8332D630\t0xC4DD\n0x8332D631\t0xC4DE\n0x8332D632\t0xC4DF\n0x8332D633\t0xC4E0\n0x8332D634\t0xC4E1\n0x8332D635\t0xC4E2\n0x8332D636\t0xC4E3\n0x8332D637\t0xC4E4\n0x8332D638\t0xC4E5\n0x8332D639\t0xC4E6\n0x8332D730\t0xC4E7\n0x8332D731\t0xC4E8\n0x8332D732\t0xC4E9\n0x8332D733\t0xC4EA\n0x8332D734\t0xC4EB\n0x8332D735\t0xC4EC\n0x8332D736\t0xC4ED\n0x8332D737\t0xC4EE\n0x8332D738\t0xC4EF\n0x8332D739\t0xC4F0\n0x8332D830\t0xC4F1\n0x8332D831\t0xC4F2\n0x8332D832\t0xC4F3\n0x8332D833\t0xC4F4\n0x8332D834\t0xC4F5\n0x8332D835\t0xC4F6\n0x8332D836\t0xC4F7\n0x8332D837\t0xC4F8\n0x8332D838\t0xC4F9\n0x8332D839\t0xC4FA\n0x8332D930\t0xC4FB\n0x8332D931\t0xC4FC\n0x8332D932\t0xC4FD\n0x8332D933\t0xC4FE\n0x8332D934\t0xC4FF\n0x8332D935\t0xC500\n0x8332D936\t0xC501\n0x8332D937\t0xC502\n0x8332D938\t0xC503\n0x8332D939\t0xC504\n0x8332DA30\t0xC505\n0x8332DA31\t0xC506\n0x8332DA32\t0xC507\n0x8332DA33\t0xC508\n0x8332DA34\t0xC509\n0x8332DA35\t0xC50A\n0x8332DA36\t0xC50B\n0x8332DA37\t0xC50C\n0x8332DA38\t0xC50D\n0x8332DA39\t0xC50E\n0x8332DB30\t0xC50F\n0x8332DB31\t0xC510\n0x8332DB32\t0xC511\n0x8332DB33\t0xC512\n0x8332DB34\t0xC513\n0x8332DB35\t0xC514\n0x8332DB36\t0xC515\n0x8332DB37\t0xC516\n0x8332DB38\t0xC517\n0x8332DB39\t0xC518\n0x8332DC30\t0xC519\n0x8332DC31\t0xC51A\n0x8332DC32\t0xC51B\n0x8332DC33\t0xC51C\n0x8332DC34\t0xC51D\n0x8332DC35\t0xC51E\n0x8332DC36\t0xC51F\n0x8332DC37\t0xC520\n0x8332DC38\t0xC521\n0x8332DC39\t0xC522\n0x8332DD30\t0xC523\n0x8332DD31\t0xC524\n0x8332DD32\t0xC525\n0x8332DD33\t0xC526\n0x8332DD34\t0xC527\n0x8332DD35\t0xC528\n0x8332DD36\t0xC529\n0x8332DD37\t0xC52A\n0x8332DD38\t0xC52B\n0x8332DD39\t0xC52C\n0x8332DE30\t0xC52D\n0x8332DE31\t0xC52E\n0x8332DE32\t0xC52F\n0x8332DE33\t0xC530\n0x8332DE34\t0xC531\n0x8332DE35\t0xC532\n0x8332DE36\t0xC533\n0x8332DE37\t0xC534\n0x8332DE38\t0xC535\n0x8332DE39\t0xC536\n0x8332DF30\t0xC537\n0x8332DF31\t0xC538\n0x8332DF32\t0xC539\n0x8332DF33\t0xC53A\n0x8332DF34\t0xC53B\n0x8332DF35\t0xC53C\n0x8332DF36\t0xC53D\n0x8332DF37\t0xC53E\n0x8332DF38\t0xC53F\n0x8332DF39\t0xC540\n0x8332E030\t0xC541\n0x8332E031\t0xC542\n0x8332E032\t0xC543\n0x8332E033\t0xC544\n0x8332E034\t0xC545\n0x8332E035\t0xC546\n0x8332E036\t0xC547\n0x8332E037\t0xC548\n0x8332E038\t0xC549\n0x8332E039\t0xC54A\n0x8332E130\t0xC54B\n0x8332E131\t0xC54C\n0x8332E132\t0xC54D\n0x8332E133\t0xC54E\n0x8332E134\t0xC54F\n0x8332E135\t0xC550\n0x8332E136\t0xC551\n0x8332E137\t0xC552\n0x8332E138\t0xC553\n0x8332E139\t0xC554\n0x8332E230\t0xC555\n0x8332E231\t0xC556\n0x8332E232\t0xC557\n0x8332E233\t0xC558\n0x8332E234\t0xC559\n0x8332E235\t0xC55A\n0x8332E236\t0xC55B\n0x8332E237\t0xC55C\n0x8332E238\t0xC55D\n0x8332E239\t0xC55E\n0x8332E330\t0xC55F\n0x8332E331\t0xC560\n0x8332E332\t0xC561\n0x8332E333\t0xC562\n0x8332E334\t0xC563\n0x8332E335\t0xC564\n0x8332E336\t0xC565\n0x8332E337\t0xC566\n0x8332E338\t0xC567\n0x8332E339\t0xC568\n0x8332E430\t0xC569\n0x8332E431\t0xC56A\n0x8332E432\t0xC56B\n0x8332E433\t0xC56C\n0x8332E434\t0xC56D\n0x8332E435\t0xC56E\n0x8332E436\t0xC56F\n0x8332E437\t0xC570\n0x8332E438\t0xC571\n0x8332E439\t0xC572\n0x8332E530\t0xC573\n0x8332E531\t0xC574\n0x8332E532\t0xC575\n0x8332E533\t0xC576\n0x8332E534\t0xC577\n0x8332E535\t0xC578\n0x8332E536\t0xC579\n0x8332E537\t0xC57A\n0x8332E538\t0xC57B\n0x8332E539\t0xC57C\n0x8332E630\t0xC57D\n0x8332E631\t0xC57E\n0x8332E632\t0xC57F\n0x8332E633\t0xC580\n0x8332E634\t0xC581\n0x8332E635\t0xC582\n0x8332E636\t0xC583\n0x8332E637\t0xC584\n0x8332E638\t0xC585\n0x8332E639\t0xC586\n0x8332E730\t0xC587\n0x8332E731\t0xC588\n0x8332E732\t0xC589\n0x8332E733\t0xC58A\n0x8332E734\t0xC58B\n0x8332E735\t0xC58C\n0x8332E736\t0xC58D\n0x8332E737\t0xC58E\n0x8332E738\t0xC58F\n0x8332E739\t0xC590\n0x8332E830\t0xC591\n0x8332E831\t0xC592\n0x8332E832\t0xC593\n0x8332E833\t0xC594\n0x8332E834\t0xC595\n0x8332E835\t0xC596\n0x8332E836\t0xC597\n0x8332E837\t0xC598\n0x8332E838\t0xC599\n0x8332E839\t0xC59A\n0x8332E930\t0xC59B\n0x8332E931\t0xC59C\n0x8332E932\t0xC59D\n0x8332E933\t0xC59E\n0x8332E934\t0xC59F\n0x8332E935\t0xC5A0\n0x8332E936\t0xC5A1\n0x8332E937\t0xC5A2\n0x8332E938\t0xC5A3\n0x8332E939\t0xC5A4\n0x8332EA30\t0xC5A5\n0x8332EA31\t0xC5A6\n0x8332EA32\t0xC5A7\n0x8332EA33\t0xC5A8\n0x8332EA34\t0xC5A9\n0x8332EA35\t0xC5AA\n0x8332EA36\t0xC5AB\n0x8332EA37\t0xC5AC\n0x8332EA38\t0xC5AD\n0x8332EA39\t0xC5AE\n0x8332EB30\t0xC5AF\n0x8332EB31\t0xC5B0\n0x8332EB32\t0xC5B1\n0x8332EB33\t0xC5B2\n0x8332EB34\t0xC5B3\n0x8332EB35\t0xC5B4\n0x8332EB36\t0xC5B5\n0x8332EB37\t0xC5B6\n0x8332EB38\t0xC5B7\n0x8332EB39\t0xC5B8\n0x8332EC30\t0xC5B9\n0x8332EC31\t0xC5BA\n0x8332EC32\t0xC5BB\n0x8332EC33\t0xC5BC\n0x8332EC34\t0xC5BD\n0x8332EC35\t0xC5BE\n0x8332EC36\t0xC5BF\n0x8332EC37\t0xC5C0\n0x8332EC38\t0xC5C1\n0x8332EC39\t0xC5C2\n0x8332ED30\t0xC5C3\n0x8332ED31\t0xC5C4\n0x8332ED32\t0xC5C5\n0x8332ED33\t0xC5C6\n0x8332ED34\t0xC5C7\n0x8332ED35\t0xC5C8\n0x8332ED36\t0xC5C9\n0x8332ED37\t0xC5CA\n0x8332ED38\t0xC5CB\n0x8332ED39\t0xC5CC\n0x8332EE30\t0xC5CD\n0x8332EE31\t0xC5CE\n0x8332EE32\t0xC5CF\n0x8332EE33\t0xC5D0\n0x8332EE34\t0xC5D1\n0x8332EE35\t0xC5D2\n0x8332EE36\t0xC5D3\n0x8332EE37\t0xC5D4\n0x8332EE38\t0xC5D5\n0x8332EE39\t0xC5D6\n0x8332EF30\t0xC5D7\n0x8332EF31\t0xC5D8\n0x8332EF32\t0xC5D9\n0x8332EF33\t0xC5DA\n0x8332EF34\t0xC5DB\n0x8332EF35\t0xC5DC\n0x8332EF36\t0xC5DD\n0x8332EF37\t0xC5DE\n0x8332EF38\t0xC5DF\n0x8332EF39\t0xC5E0\n0x8332F030\t0xC5E1\n0x8332F031\t0xC5E2\n0x8332F032\t0xC5E3\n0x8332F033\t0xC5E4\n0x8332F034\t0xC5E5\n0x8332F035\t0xC5E6\n0x8332F036\t0xC5E7\n0x8332F037\t0xC5E8\n0x8332F038\t0xC5E9\n0x8332F039\t0xC5EA\n0x8332F130\t0xC5EB\n0x8332F131\t0xC5EC\n0x8332F132\t0xC5ED\n0x8332F133\t0xC5EE\n0x8332F134\t0xC5EF\n0x8332F135\t0xC5F0\n0x8332F136\t0xC5F1\n0x8332F137\t0xC5F2\n0x8332F138\t0xC5F3\n0x8332F139\t0xC5F4\n0x8332F230\t0xC5F5\n0x8332F231\t0xC5F6\n0x8332F232\t0xC5F7\n0x8332F233\t0xC5F8\n0x8332F234\t0xC5F9\n0x8332F235\t0xC5FA\n0x8332F236\t0xC5FB\n0x8332F237\t0xC5FC\n0x8332F238\t0xC5FD\n0x8332F239\t0xC5FE\n0x8332F330\t0xC5FF\n0x8332F331\t0xC600\n0x8332F332\t0xC601\n0x8332F333\t0xC602\n0x8332F334\t0xC603\n0x8332F335\t0xC604\n0x8332F336\t0xC605\n0x8332F337\t0xC606\n0x8332F338\t0xC607\n0x8332F339\t0xC608\n0x8332F430\t0xC609\n0x8332F431\t0xC60A\n0x8332F432\t0xC60B\n0x8332F433\t0xC60C\n0x8332F434\t0xC60D\n0x8332F435\t0xC60E\n0x8332F436\t0xC60F\n0x8332F437\t0xC610\n0x8332F438\t0xC611\n0x8332F439\t0xC612\n0x8332F530\t0xC613\n0x8332F531\t0xC614\n0x8332F532\t0xC615\n0x8332F533\t0xC616\n0x8332F534\t0xC617\n0x8332F535\t0xC618\n0x8332F536\t0xC619\n0x8332F537\t0xC61A\n0x8332F538\t0xC61B\n0x8332F539\t0xC61C\n0x8332F630\t0xC61D\n0x8332F631\t0xC61E\n0x8332F632\t0xC61F\n0x8332F633\t0xC620\n0x8332F634\t0xC621\n0x8332F635\t0xC622\n0x8332F636\t0xC623\n0x8332F637\t0xC624\n0x8332F638\t0xC625\n0x8332F639\t0xC626\n0x8332F730\t0xC627\n0x8332F731\t0xC628\n0x8332F732\t0xC629\n0x8332F733\t0xC62A\n0x8332F734\t0xC62B\n0x8332F735\t0xC62C\n0x8332F736\t0xC62D\n0x8332F737\t0xC62E\n0x8332F738\t0xC62F\n0x8332F739\t0xC630\n0x8332F830\t0xC631\n0x8332F831\t0xC632\n0x8332F832\t0xC633\n0x8332F833\t0xC634\n0x8332F834\t0xC635\n0x8332F835\t0xC636\n0x8332F836\t0xC637\n0x8332F837\t0xC638\n0x8332F838\t0xC639\n0x8332F839\t0xC63A\n0x8332F930\t0xC63B\n0x8332F931\t0xC63C\n0x8332F932\t0xC63D\n0x8332F933\t0xC63E\n0x8332F934\t0xC63F\n0x8332F935\t0xC640\n0x8332F936\t0xC641\n0x8332F937\t0xC642\n0x8332F938\t0xC643\n0x8332F939\t0xC644\n0x8332FA30\t0xC645\n0x8332FA31\t0xC646\n0x8332FA32\t0xC647\n0x8332FA33\t0xC648\n0x8332FA34\t0xC649\n0x8332FA35\t0xC64A\n0x8332FA36\t0xC64B\n0x8332FA37\t0xC64C\n0x8332FA38\t0xC64D\n0x8332FA39\t0xC64E\n0x8332FB30\t0xC64F\n0x8332FB31\t0xC650\n0x8332FB32\t0xC651\n0x8332FB33\t0xC652\n0x8332FB34\t0xC653\n0x8332FB35\t0xC654\n0x8332FB36\t0xC655\n0x8332FB37\t0xC656\n0x8332FB38\t0xC657\n0x8332FB39\t0xC658\n0x8332FC30\t0xC659\n0x8332FC31\t0xC65A\n0x8332FC32\t0xC65B\n0x8332FC33\t0xC65C\n0x8332FC34\t0xC65D\n0x8332FC35\t0xC65E\n0x8332FC36\t0xC65F\n0x8332FC37\t0xC660\n0x8332FC38\t0xC661\n0x8332FC39\t0xC662\n0x8332FD30\t0xC663\n0x8332FD31\t0xC664\n0x8332FD32\t0xC665\n0x8332FD33\t0xC666\n0x8332FD34\t0xC667\n0x8332FD35\t0xC668\n0x8332FD36\t0xC669\n0x8332FD37\t0xC66A\n0x8332FD38\t0xC66B\n0x8332FD39\t0xC66C\n0x8332FE30\t0xC66D\n0x8332FE31\t0xC66E\n0x8332FE32\t0xC66F\n0x8332FE33\t0xC670\n0x8332FE34\t0xC671\n0x8332FE35\t0xC672\n0x8332FE36\t0xC673\n0x8332FE37\t0xC674\n0x8332FE38\t0xC675\n0x8332FE39\t0xC676\n0x83338130\t0xC677\n0x83338131\t0xC678\n0x83338132\t0xC679\n0x83338133\t0xC67A\n0x83338134\t0xC67B\n0x83338135\t0xC67C\n0x83338136\t0xC67D\n0x83338137\t0xC67E\n0x83338138\t0xC67F\n0x83338139\t0xC680\n0x83338230\t0xC681\n0x83338231\t0xC682\n0x83338232\t0xC683\n0x83338233\t0xC684\n0x83338234\t0xC685\n0x83338235\t0xC686\n0x83338236\t0xC687\n0x83338237\t0xC688\n0x83338238\t0xC689\n0x83338239\t0xC68A\n0x83338330\t0xC68B\n0x83338331\t0xC68C\n0x83338332\t0xC68D\n0x83338333\t0xC68E\n0x83338334\t0xC68F\n0x83338335\t0xC690\n0x83338336\t0xC691\n0x83338337\t0xC692\n0x83338338\t0xC693\n0x83338339\t0xC694\n0x83338430\t0xC695\n0x83338431\t0xC696\n0x83338432\t0xC697\n0x83338433\t0xC698\n0x83338434\t0xC699\n0x83338435\t0xC69A\n0x83338436\t0xC69B\n0x83338437\t0xC69C\n0x83338438\t0xC69D\n0x83338439\t0xC69E\n0x83338530\t0xC69F\n0x83338531\t0xC6A0\n0x83338532\t0xC6A1\n0x83338533\t0xC6A2\n0x83338534\t0xC6A3\n0x83338535\t0xC6A4\n0x83338536\t0xC6A5\n0x83338537\t0xC6A6\n0x83338538\t0xC6A7\n0x83338539\t0xC6A8\n0x83338630\t0xC6A9\n0x83338631\t0xC6AA\n0x83338632\t0xC6AB\n0x83338633\t0xC6AC\n0x83338634\t0xC6AD\n0x83338635\t0xC6AE\n0x83338636\t0xC6AF\n0x83338637\t0xC6B0\n0x83338638\t0xC6B1\n0x83338639\t0xC6B2\n0x83338730\t0xC6B3\n0x83338731\t0xC6B4\n0x83338732\t0xC6B5\n0x83338733\t0xC6B6\n0x83338734\t0xC6B7\n0x83338735\t0xC6B8\n0x83338736\t0xC6B9\n0x83338737\t0xC6BA\n0x83338738\t0xC6BB\n0x83338739\t0xC6BC\n0x83338830\t0xC6BD\n0x83338831\t0xC6BE\n0x83338832\t0xC6BF\n0x83338833\t0xC6C0\n0x83338834\t0xC6C1\n0x83338835\t0xC6C2\n0x83338836\t0xC6C3\n0x83338837\t0xC6C4\n0x83338838\t0xC6C5\n0x83338839\t0xC6C6\n0x83338930\t0xC6C7\n0x83338931\t0xC6C8\n0x83338932\t0xC6C9\n0x83338933\t0xC6CA\n0x83338934\t0xC6CB\n0x83338935\t0xC6CC\n0x83338936\t0xC6CD\n0x83338937\t0xC6CE\n0x83338938\t0xC6CF\n0x83338939\t0xC6D0\n0x83338A30\t0xC6D1\n0x83338A31\t0xC6D2\n0x83338A32\t0xC6D3\n0x83338A33\t0xC6D4\n0x83338A34\t0xC6D5\n0x83338A35\t0xC6D6\n0x83338A36\t0xC6D7\n0x83338A37\t0xC6D8\n0x83338A38\t0xC6D9\n0x83338A39\t0xC6DA\n0x83338B30\t0xC6DB\n0x83338B31\t0xC6DC\n0x83338B32\t0xC6DD\n0x83338B33\t0xC6DE\n0x83338B34\t0xC6DF\n0x83338B35\t0xC6E0\n0x83338B36\t0xC6E1\n0x83338B37\t0xC6E2\n0x83338B38\t0xC6E3\n0x83338B39\t0xC6E4\n0x83338C30\t0xC6E5\n0x83338C31\t0xC6E6\n0x83338C32\t0xC6E7\n0x83338C33\t0xC6E8\n0x83338C34\t0xC6E9\n0x83338C35\t0xC6EA\n0x83338C36\t0xC6EB\n0x83338C37\t0xC6EC\n0x83338C38\t0xC6ED\n0x83338C39\t0xC6EE\n0x83338D30\t0xC6EF\n0x83338D31\t0xC6F0\n0x83338D32\t0xC6F1\n0x83338D33\t0xC6F2\n0x83338D34\t0xC6F3\n0x83338D35\t0xC6F4\n0x83338D36\t0xC6F5\n0x83338D37\t0xC6F6\n0x83338D38\t0xC6F7\n0x83338D39\t0xC6F8\n0x83338E30\t0xC6F9\n0x83338E31\t0xC6FA\n0x83338E32\t0xC6FB\n0x83338E33\t0xC6FC\n0x83338E34\t0xC6FD\n0x83338E35\t0xC6FE\n0x83338E36\t0xC6FF\n0x83338E37\t0xC700\n0x83338E38\t0xC701\n0x83338E39\t0xC702\n0x83338F30\t0xC703\n0x83338F31\t0xC704\n0x83338F32\t0xC705\n0x83338F33\t0xC706\n0x83338F34\t0xC707\n0x83338F35\t0xC708\n0x83338F36\t0xC709\n0x83338F37\t0xC70A\n0x83338F38\t0xC70B\n0x83338F39\t0xC70C\n0x83339030\t0xC70D\n0x83339031\t0xC70E\n0x83339032\t0xC70F\n0x83339033\t0xC710\n0x83339034\t0xC711\n0x83339035\t0xC712\n0x83339036\t0xC713\n0x83339037\t0xC714\n0x83339038\t0xC715\n0x83339039\t0xC716\n0x83339130\t0xC717\n0x83339131\t0xC718\n0x83339132\t0xC719\n0x83339133\t0xC71A\n0x83339134\t0xC71B\n0x83339135\t0xC71C\n0x83339136\t0xC71D\n0x83339137\t0xC71E\n0x83339138\t0xC71F\n0x83339139\t0xC720\n0x83339230\t0xC721\n0x83339231\t0xC722\n0x83339232\t0xC723\n0x83339233\t0xC724\n0x83339234\t0xC725\n0x83339235\t0xC726\n0x83339236\t0xC727\n0x83339237\t0xC728\n0x83339238\t0xC729\n0x83339239\t0xC72A\n0x83339330\t0xC72B\n0x83339331\t0xC72C\n0x83339332\t0xC72D\n0x83339333\t0xC72E\n0x83339334\t0xC72F\n0x83339335\t0xC730\n0x83339336\t0xC731\n0x83339337\t0xC732\n0x83339338\t0xC733\n0x83339339\t0xC734\n0x83339430\t0xC735\n0x83339431\t0xC736\n0x83339432\t0xC737\n0x83339433\t0xC738\n0x83339434\t0xC739\n0x83339435\t0xC73A\n0x83339436\t0xC73B\n0x83339437\t0xC73C\n0x83339438\t0xC73D\n0x83339439\t0xC73E\n0x83339530\t0xC73F\n0x83339531\t0xC740\n0x83339532\t0xC741\n0x83339533\t0xC742\n0x83339534\t0xC743\n0x83339535\t0xC744\n0x83339536\t0xC745\n0x83339537\t0xC746\n0x83339538\t0xC747\n0x83339539\t0xC748\n0x83339630\t0xC749\n0x83339631\t0xC74A\n0x83339632\t0xC74B\n0x83339633\t0xC74C\n0x83339634\t0xC74D\n0x83339635\t0xC74E\n0x83339636\t0xC74F\n0x83339637\t0xC750\n0x83339638\t0xC751\n0x83339639\t0xC752\n0x83339730\t0xC753\n0x83339731\t0xC754\n0x83339732\t0xC755\n0x83339733\t0xC756\n0x83339734\t0xC757\n0x83339735\t0xC758\n0x83339736\t0xC759\n0x83339737\t0xC75A\n0x83339738\t0xC75B\n0x83339739\t0xC75C\n0x83339830\t0xC75D\n0x83339831\t0xC75E\n0x83339832\t0xC75F\n0x83339833\t0xC760\n0x83339834\t0xC761\n0x83339835\t0xC762\n0x83339836\t0xC763\n0x83339837\t0xC764\n0x83339838\t0xC765\n0x83339839\t0xC766\n0x83339930\t0xC767\n0x83339931\t0xC768\n0x83339932\t0xC769\n0x83339933\t0xC76A\n0x83339934\t0xC76B\n0x83339935\t0xC76C\n0x83339936\t0xC76D\n0x83339937\t0xC76E\n0x83339938\t0xC76F\n0x83339939\t0xC770\n0x83339A30\t0xC771\n0x83339A31\t0xC772\n0x83339A32\t0xC773\n0x83339A33\t0xC774\n0x83339A34\t0xC775\n0x83339A35\t0xC776\n0x83339A36\t0xC777\n0x83339A37\t0xC778\n0x83339A38\t0xC779\n0x83339A39\t0xC77A\n0x83339B30\t0xC77B\n0x83339B31\t0xC77C\n0x83339B32\t0xC77D\n0x83339B33\t0xC77E\n0x83339B34\t0xC77F\n0x83339B35\t0xC780\n0x83339B36\t0xC781\n0x83339B37\t0xC782\n0x83339B38\t0xC783\n0x83339B39\t0xC784\n0x83339C30\t0xC785\n0x83339C31\t0xC786\n0x83339C32\t0xC787\n0x83339C33\t0xC788\n0x83339C34\t0xC789\n0x83339C35\t0xC78A\n0x83339C36\t0xC78B\n0x83339C37\t0xC78C\n0x83339C38\t0xC78D\n0x83339C39\t0xC78E\n0x83339D30\t0xC78F\n0x83339D31\t0xC790\n0x83339D32\t0xC791\n0x83339D33\t0xC792\n0x83339D34\t0xC793\n0x83339D35\t0xC794\n0x83339D36\t0xC795\n0x83339D37\t0xC796\n0x83339D38\t0xC797\n0x83339D39\t0xC798\n0x83339E30\t0xC799\n0x83339E31\t0xC79A\n0x83339E32\t0xC79B\n0x83339E33\t0xC79C\n0x83339E34\t0xC79D\n0x83339E35\t0xC79E\n0x83339E36\t0xC79F\n0x83339E37\t0xC7A0\n0x83339E38\t0xC7A1\n0x83339E39\t0xC7A2\n0x83339F30\t0xC7A3\n0x83339F31\t0xC7A4\n0x83339F32\t0xC7A5\n0x83339F33\t0xC7A6\n0x83339F34\t0xC7A7\n0x83339F35\t0xC7A8\n0x83339F36\t0xC7A9\n0x83339F37\t0xC7AA\n0x83339F38\t0xC7AB\n0x83339F39\t0xC7AC\n0x8333A030\t0xC7AD\n0x8333A031\t0xC7AE\n0x8333A032\t0xC7AF\n0x8333A033\t0xC7B0\n0x8333A034\t0xC7B1\n0x8333A035\t0xC7B2\n0x8333A036\t0xC7B3\n0x8333A037\t0xC7B4\n0x8333A038\t0xC7B5\n0x8333A039\t0xC7B6\n0x8333A130\t0xC7B7\n0x8333A131\t0xC7B8\n0x8333A132\t0xC7B9\n0x8333A133\t0xC7BA\n0x8333A134\t0xC7BB\n0x8333A135\t0xC7BC\n0x8333A136\t0xC7BD\n0x8333A137\t0xC7BE\n0x8333A138\t0xC7BF\n0x8333A139\t0xC7C0\n0x8333A230\t0xC7C1\n0x8333A231\t0xC7C2\n0x8333A232\t0xC7C3\n0x8333A233\t0xC7C4\n0x8333A234\t0xC7C5\n0x8333A235\t0xC7C6\n0x8333A236\t0xC7C7\n0x8333A237\t0xC7C8\n0x8333A238\t0xC7C9\n0x8333A239\t0xC7CA\n0x8333A330\t0xC7CB\n0x8333A331\t0xC7CC\n0x8333A332\t0xC7CD\n0x8333A333\t0xC7CE\n0x8333A334\t0xC7CF\n0x8333A335\t0xC7D0\n0x8333A336\t0xC7D1\n0x8333A337\t0xC7D2\n0x8333A338\t0xC7D3\n0x8333A339\t0xC7D4\n0x8333A430\t0xC7D5\n0x8333A431\t0xC7D6\n0x8333A432\t0xC7D7\n0x8333A433\t0xC7D8\n0x8333A434\t0xC7D9\n0x8333A435\t0xC7DA\n0x8333A436\t0xC7DB\n0x8333A437\t0xC7DC\n0x8333A438\t0xC7DD\n0x8333A439\t0xC7DE\n0x8333A530\t0xC7DF\n0x8333A531\t0xC7E0\n0x8333A532\t0xC7E1\n0x8333A533\t0xC7E2\n0x8333A534\t0xC7E3\n0x8333A535\t0xC7E4\n0x8333A536\t0xC7E5\n0x8333A537\t0xC7E6\n0x8333A538\t0xC7E7\n0x8333A539\t0xC7E8\n0x8333A630\t0xC7E9\n0x8333A631\t0xC7EA\n0x8333A632\t0xC7EB\n0x8333A633\t0xC7EC\n0x8333A634\t0xC7ED\n0x8333A635\t0xC7EE\n0x8333A636\t0xC7EF\n0x8333A637\t0xC7F0\n0x8333A638\t0xC7F1\n0x8333A639\t0xC7F2\n0x8333A730\t0xC7F3\n0x8333A731\t0xC7F4\n0x8333A732\t0xC7F5\n0x8333A733\t0xC7F6\n0x8333A734\t0xC7F7\n0x8333A735\t0xC7F8\n0x8333A736\t0xC7F9\n0x8333A737\t0xC7FA\n0x8333A738\t0xC7FB\n0x8333A739\t0xC7FC\n0x8333A830\t0xC7FD\n0x8333A831\t0xC7FE\n0x8333A832\t0xC7FF\n0x8333A833\t0xC800\n0x8333A834\t0xC801\n0x8333A835\t0xC802\n0x8333A836\t0xC803\n0x8333A837\t0xC804\n0x8333A838\t0xC805\n0x8333A839\t0xC806\n0x8333A930\t0xC807\n0x8333A931\t0xC808\n0x8333A932\t0xC809\n0x8333A933\t0xC80A\n0x8333A934\t0xC80B\n0x8333A935\t0xC80C\n0x8333A936\t0xC80D\n0x8333A937\t0xC80E\n0x8333A938\t0xC80F\n0x8333A939\t0xC810\n0x8333AA30\t0xC811\n0x8333AA31\t0xC812\n0x8333AA32\t0xC813\n0x8333AA33\t0xC814\n0x8333AA34\t0xC815\n0x8333AA35\t0xC816\n0x8333AA36\t0xC817\n0x8333AA37\t0xC818\n0x8333AA38\t0xC819\n0x8333AA39\t0xC81A\n0x8333AB30\t0xC81B\n0x8333AB31\t0xC81C\n0x8333AB32\t0xC81D\n0x8333AB33\t0xC81E\n0x8333AB34\t0xC81F\n0x8333AB35\t0xC820\n0x8333AB36\t0xC821\n0x8333AB37\t0xC822\n0x8333AB38\t0xC823\n0x8333AB39\t0xC824\n0x8333AC30\t0xC825\n0x8333AC31\t0xC826\n0x8333AC32\t0xC827\n0x8333AC33\t0xC828\n0x8333AC34\t0xC829\n0x8333AC35\t0xC82A\n0x8333AC36\t0xC82B\n0x8333AC37\t0xC82C\n0x8333AC38\t0xC82D\n0x8333AC39\t0xC82E\n0x8333AD30\t0xC82F\n0x8333AD31\t0xC830\n0x8333AD32\t0xC831\n0x8333AD33\t0xC832\n0x8333AD34\t0xC833\n0x8333AD35\t0xC834\n0x8333AD36\t0xC835\n0x8333AD37\t0xC836\n0x8333AD38\t0xC837\n0x8333AD39\t0xC838\n0x8333AE30\t0xC839\n0x8333AE31\t0xC83A\n0x8333AE32\t0xC83B\n0x8333AE33\t0xC83C\n0x8333AE34\t0xC83D\n0x8333AE35\t0xC83E\n0x8333AE36\t0xC83F\n0x8333AE37\t0xC840\n0x8333AE38\t0xC841\n0x8333AE39\t0xC842\n0x8333AF30\t0xC843\n0x8333AF31\t0xC844\n0x8333AF32\t0xC845\n0x8333AF33\t0xC846\n0x8333AF34\t0xC847\n0x8333AF35\t0xC848\n0x8333AF36\t0xC849\n0x8333AF37\t0xC84A\n0x8333AF38\t0xC84B\n0x8333AF39\t0xC84C\n0x8333B030\t0xC84D\n0x8333B031\t0xC84E\n0x8333B032\t0xC84F\n0x8333B033\t0xC850\n0x8333B034\t0xC851\n0x8333B035\t0xC852\n0x8333B036\t0xC853\n0x8333B037\t0xC854\n0x8333B038\t0xC855\n0x8333B039\t0xC856\n0x8333B130\t0xC857\n0x8333B131\t0xC858\n0x8333B132\t0xC859\n0x8333B133\t0xC85A\n0x8333B134\t0xC85B\n0x8333B135\t0xC85C\n0x8333B136\t0xC85D\n0x8333B137\t0xC85E\n0x8333B138\t0xC85F\n0x8333B139\t0xC860\n0x8333B230\t0xC861\n0x8333B231\t0xC862\n0x8333B232\t0xC863\n0x8333B233\t0xC864\n0x8333B234\t0xC865\n0x8333B235\t0xC866\n0x8333B236\t0xC867\n0x8333B237\t0xC868\n0x8333B238\t0xC869\n0x8333B239\t0xC86A\n0x8333B330\t0xC86B\n0x8333B331\t0xC86C\n0x8333B332\t0xC86D\n0x8333B333\t0xC86E\n0x8333B334\t0xC86F\n0x8333B335\t0xC870\n0x8333B336\t0xC871\n0x8333B337\t0xC872\n0x8333B338\t0xC873\n0x8333B339\t0xC874\n0x8333B430\t0xC875\n0x8333B431\t0xC876\n0x8333B432\t0xC877\n0x8333B433\t0xC878\n0x8333B434\t0xC879\n0x8333B435\t0xC87A\n0x8333B436\t0xC87B\n0x8333B437\t0xC87C\n0x8333B438\t0xC87D\n0x8333B439\t0xC87E\n0x8333B530\t0xC87F\n0x8333B531\t0xC880\n0x8333B532\t0xC881\n0x8333B533\t0xC882\n0x8333B534\t0xC883\n0x8333B535\t0xC884\n0x8333B536\t0xC885\n0x8333B537\t0xC886\n0x8333B538\t0xC887\n0x8333B539\t0xC888\n0x8333B630\t0xC889\n0x8333B631\t0xC88A\n0x8333B632\t0xC88B\n0x8333B633\t0xC88C\n0x8333B634\t0xC88D\n0x8333B635\t0xC88E\n0x8333B636\t0xC88F\n0x8333B637\t0xC890\n0x8333B638\t0xC891\n0x8333B639\t0xC892\n0x8333B730\t0xC893\n0x8333B731\t0xC894\n0x8333B732\t0xC895\n0x8333B733\t0xC896\n0x8333B734\t0xC897\n0x8333B735\t0xC898\n0x8333B736\t0xC899\n0x8333B737\t0xC89A\n0x8333B738\t0xC89B\n0x8333B739\t0xC89C\n0x8333B830\t0xC89D\n0x8333B831\t0xC89E\n0x8333B832\t0xC89F\n0x8333B833\t0xC8A0\n0x8333B834\t0xC8A1\n0x8333B835\t0xC8A2\n0x8333B836\t0xC8A3\n0x8333B837\t0xC8A4\n0x8333B838\t0xC8A5\n0x8333B839\t0xC8A6\n0x8333B930\t0xC8A7\n0x8333B931\t0xC8A8\n0x8333B932\t0xC8A9\n0x8333B933\t0xC8AA\n0x8333B934\t0xC8AB\n0x8333B935\t0xC8AC\n0x8333B936\t0xC8AD\n0x8333B937\t0xC8AE\n0x8333B938\t0xC8AF\n0x8333B939\t0xC8B0\n0x8333BA30\t0xC8B1\n0x8333BA31\t0xC8B2\n0x8333BA32\t0xC8B3\n0x8333BA33\t0xC8B4\n0x8333BA34\t0xC8B5\n0x8333BA35\t0xC8B6\n0x8333BA36\t0xC8B7\n0x8333BA37\t0xC8B8\n0x8333BA38\t0xC8B9\n0x8333BA39\t0xC8BA\n0x8333BB30\t0xC8BB\n0x8333BB31\t0xC8BC\n0x8333BB32\t0xC8BD\n0x8333BB33\t0xC8BE\n0x8333BB34\t0xC8BF\n0x8333BB35\t0xC8C0\n0x8333BB36\t0xC8C1\n0x8333BB37\t0xC8C2\n0x8333BB38\t0xC8C3\n0x8333BB39\t0xC8C4\n0x8333BC30\t0xC8C5\n0x8333BC31\t0xC8C6\n0x8333BC32\t0xC8C7\n0x8333BC33\t0xC8C8\n0x8333BC34\t0xC8C9\n0x8333BC35\t0xC8CA\n0x8333BC36\t0xC8CB\n0x8333BC37\t0xC8CC\n0x8333BC38\t0xC8CD\n0x8333BC39\t0xC8CE\n0x8333BD30\t0xC8CF\n0x8333BD31\t0xC8D0\n0x8333BD32\t0xC8D1\n0x8333BD33\t0xC8D2\n0x8333BD34\t0xC8D3\n0x8333BD35\t0xC8D4\n0x8333BD36\t0xC8D5\n0x8333BD37\t0xC8D6\n0x8333BD38\t0xC8D7\n0x8333BD39\t0xC8D8\n0x8333BE30\t0xC8D9\n0x8333BE31\t0xC8DA\n0x8333BE32\t0xC8DB\n0x8333BE33\t0xC8DC\n0x8333BE34\t0xC8DD\n0x8333BE35\t0xC8DE\n0x8333BE36\t0xC8DF\n0x8333BE37\t0xC8E0\n0x8333BE38\t0xC8E1\n0x8333BE39\t0xC8E2\n0x8333BF30\t0xC8E3\n0x8333BF31\t0xC8E4\n0x8333BF32\t0xC8E5\n0x8333BF33\t0xC8E6\n0x8333BF34\t0xC8E7\n0x8333BF35\t0xC8E8\n0x8333BF36\t0xC8E9\n0x8333BF37\t0xC8EA\n0x8333BF38\t0xC8EB\n0x8333BF39\t0xC8EC\n0x8333C030\t0xC8ED\n0x8333C031\t0xC8EE\n0x8333C032\t0xC8EF\n0x8333C033\t0xC8F0\n0x8333C034\t0xC8F1\n0x8333C035\t0xC8F2\n0x8333C036\t0xC8F3\n0x8333C037\t0xC8F4\n0x8333C038\t0xC8F5\n0x8333C039\t0xC8F6\n0x8333C130\t0xC8F7\n0x8333C131\t0xC8F8\n0x8333C132\t0xC8F9\n0x8333C133\t0xC8FA\n0x8333C134\t0xC8FB\n0x8333C135\t0xC8FC\n0x8333C136\t0xC8FD\n0x8333C137\t0xC8FE\n0x8333C138\t0xC8FF\n0x8333C139\t0xC900\n0x8333C230\t0xC901\n0x8333C231\t0xC902\n0x8333C232\t0xC903\n0x8333C233\t0xC904\n0x8333C234\t0xC905\n0x8333C235\t0xC906\n0x8333C236\t0xC907\n0x8333C237\t0xC908\n0x8333C238\t0xC909\n0x8333C239\t0xC90A\n0x8333C330\t0xC90B\n0x8333C331\t0xC90C\n0x8333C332\t0xC90D\n0x8333C333\t0xC90E\n0x8333C334\t0xC90F\n0x8333C335\t0xC910\n0x8333C336\t0xC911\n0x8333C337\t0xC912\n0x8333C338\t0xC913\n0x8333C339\t0xC914\n0x8333C430\t0xC915\n0x8333C431\t0xC916\n0x8333C432\t0xC917\n0x8333C433\t0xC918\n0x8333C434\t0xC919\n0x8333C435\t0xC91A\n0x8333C436\t0xC91B\n0x8333C437\t0xC91C\n0x8333C438\t0xC91D\n0x8333C439\t0xC91E\n0x8333C530\t0xC91F\n0x8333C531\t0xC920\n0x8333C532\t0xC921\n0x8333C533\t0xC922\n0x8333C534\t0xC923\n0x8333C535\t0xC924\n0x8333C536\t0xC925\n0x8333C537\t0xC926\n0x8333C538\t0xC927\n0x8333C539\t0xC928\n0x8333C630\t0xC929\n0x8333C631\t0xC92A\n0x8333C632\t0xC92B\n0x8333C633\t0xC92C\n0x8333C634\t0xC92D\n0x8333C635\t0xC92E\n0x8333C636\t0xC92F\n0x8333C637\t0xC930\n0x8333C638\t0xC931\n0x8333C639\t0xC932\n0x8333C730\t0xC933\n0x8333C731\t0xC934\n0x8333C732\t0xC935\n0x8333C733\t0xC936\n0x8333C734\t0xC937\n0x8333C735\t0xC938\n0x8333C736\t0xC939\n0x8333C737\t0xC93A\n0x8333C738\t0xC93B\n0x8333C739\t0xC93C\n0x8333C830\t0xC93D\n0x8333C831\t0xC93E\n0x8333C832\t0xC93F\n0x8333C833\t0xC940\n0x8333C834\t0xC941\n0x8333C835\t0xC942\n0x8333C836\t0xC943\n0x8333C837\t0xC944\n0x8333C838\t0xC945\n0x8333C839\t0xC946\n0x8333C930\t0xC947\n0x8333C931\t0xC948\n0x8333C932\t0xC949\n0x8333C933\t0xC94A\n0x8333C934\t0xC94B\n0x8333C935\t0xC94C\n0x8333C936\t0xC94D\n0x8333C937\t0xC94E\n0x8333C938\t0xC94F\n0x8333C939\t0xC950\n0x8333CA30\t0xC951\n0x8333CA31\t0xC952\n0x8333CA32\t0xC953\n0x8333CA33\t0xC954\n0x8333CA34\t0xC955\n0x8333CA35\t0xC956\n0x8333CA36\t0xC957\n0x8333CA37\t0xC958\n0x8333CA38\t0xC959\n0x8333CA39\t0xC95A\n0x8333CB30\t0xC95B\n0x8333CB31\t0xC95C\n0x8333CB32\t0xC95D\n0x8333CB33\t0xC95E\n0x8333CB34\t0xC95F\n0x8333CB35\t0xC960\n0x8333CB36\t0xC961\n0x8333CB37\t0xC962\n0x8333CB38\t0xC963\n0x8333CB39\t0xC964\n0x8333CC30\t0xC965\n0x8333CC31\t0xC966\n0x8333CC32\t0xC967\n0x8333CC33\t0xC968\n0x8333CC34\t0xC969\n0x8333CC35\t0xC96A\n0x8333CC36\t0xC96B\n0x8333CC37\t0xC96C\n0x8333CC38\t0xC96D\n0x8333CC39\t0xC96E\n0x8333CD30\t0xC96F\n0x8333CD31\t0xC970\n0x8333CD32\t0xC971\n0x8333CD33\t0xC972\n0x8333CD34\t0xC973\n0x8333CD35\t0xC974\n0x8333CD36\t0xC975\n0x8333CD37\t0xC976\n0x8333CD38\t0xC977\n0x8333CD39\t0xC978\n0x8333CE30\t0xC979\n0x8333CE31\t0xC97A\n0x8333CE32\t0xC97B\n0x8333CE33\t0xC97C\n0x8333CE34\t0xC97D\n0x8333CE35\t0xC97E\n0x8333CE36\t0xC97F\n0x8333CE37\t0xC980\n0x8333CE38\t0xC981\n0x8333CE39\t0xC982\n0x8333CF30\t0xC983\n0x8333CF31\t0xC984\n0x8333CF32\t0xC985\n0x8333CF33\t0xC986\n0x8333CF34\t0xC987\n0x8333CF35\t0xC988\n0x8333CF36\t0xC989\n0x8333CF37\t0xC98A\n0x8333CF38\t0xC98B\n0x8333CF39\t0xC98C\n0x8333D030\t0xC98D\n0x8333D031\t0xC98E\n0x8333D032\t0xC98F\n0x8333D033\t0xC990\n0x8333D034\t0xC991\n0x8333D035\t0xC992\n0x8333D036\t0xC993\n0x8333D037\t0xC994\n0x8333D038\t0xC995\n0x8333D039\t0xC996\n0x8333D130\t0xC997\n0x8333D131\t0xC998\n0x8333D132\t0xC999\n0x8333D133\t0xC99A\n0x8333D134\t0xC99B\n0x8333D135\t0xC99C\n0x8333D136\t0xC99D\n0x8333D137\t0xC99E\n0x8333D138\t0xC99F\n0x8333D139\t0xC9A0\n0x8333D230\t0xC9A1\n0x8333D231\t0xC9A2\n0x8333D232\t0xC9A3\n0x8333D233\t0xC9A4\n0x8333D234\t0xC9A5\n0x8333D235\t0xC9A6\n0x8333D236\t0xC9A7\n0x8333D237\t0xC9A8\n0x8333D238\t0xC9A9\n0x8333D239\t0xC9AA\n0x8333D330\t0xC9AB\n0x8333D331\t0xC9AC\n0x8333D332\t0xC9AD\n0x8333D333\t0xC9AE\n0x8333D334\t0xC9AF\n0x8333D335\t0xC9B0\n0x8333D336\t0xC9B1\n0x8333D337\t0xC9B2\n0x8333D338\t0xC9B3\n0x8333D339\t0xC9B4\n0x8333D430\t0xC9B5\n0x8333D431\t0xC9B6\n0x8333D432\t0xC9B7\n0x8333D433\t0xC9B8\n0x8333D434\t0xC9B9\n0x8333D435\t0xC9BA\n0x8333D436\t0xC9BB\n0x8333D437\t0xC9BC\n0x8333D438\t0xC9BD\n0x8333D439\t0xC9BE\n0x8333D530\t0xC9BF\n0x8333D531\t0xC9C0\n0x8333D532\t0xC9C1\n0x8333D533\t0xC9C2\n0x8333D534\t0xC9C3\n0x8333D535\t0xC9C4\n0x8333D536\t0xC9C5\n0x8333D537\t0xC9C6\n0x8333D538\t0xC9C7\n0x8333D539\t0xC9C8\n0x8333D630\t0xC9C9\n0x8333D631\t0xC9CA\n0x8333D632\t0xC9CB\n0x8333D633\t0xC9CC\n0x8333D634\t0xC9CD\n0x8333D635\t0xC9CE\n0x8333D636\t0xC9CF\n0x8333D637\t0xC9D0\n0x8333D638\t0xC9D1\n0x8333D639\t0xC9D2\n0x8333D730\t0xC9D3\n0x8333D731\t0xC9D4\n0x8333D732\t0xC9D5\n0x8333D733\t0xC9D6\n0x8333D734\t0xC9D7\n0x8333D735\t0xC9D8\n0x8333D736\t0xC9D9\n0x8333D737\t0xC9DA\n0x8333D738\t0xC9DB\n0x8333D739\t0xC9DC\n0x8333D830\t0xC9DD\n0x8333D831\t0xC9DE\n0x8333D832\t0xC9DF\n0x8333D833\t0xC9E0\n0x8333D834\t0xC9E1\n0x8333D835\t0xC9E2\n0x8333D836\t0xC9E3\n0x8333D837\t0xC9E4\n0x8333D838\t0xC9E5\n0x8333D839\t0xC9E6\n0x8333D930\t0xC9E7\n0x8333D931\t0xC9E8\n0x8333D932\t0xC9E9\n0x8333D933\t0xC9EA\n0x8333D934\t0xC9EB\n0x8333D935\t0xC9EC\n0x8333D936\t0xC9ED\n0x8333D937\t0xC9EE\n0x8333D938\t0xC9EF\n0x8333D939\t0xC9F0\n0x8333DA30\t0xC9F1\n0x8333DA31\t0xC9F2\n0x8333DA32\t0xC9F3\n0x8333DA33\t0xC9F4\n0x8333DA34\t0xC9F5\n0x8333DA35\t0xC9F6\n0x8333DA36\t0xC9F7\n0x8333DA37\t0xC9F8\n0x8333DA38\t0xC9F9\n0x8333DA39\t0xC9FA\n0x8333DB30\t0xC9FB\n0x8333DB31\t0xC9FC\n0x8333DB32\t0xC9FD\n0x8333DB33\t0xC9FE\n0x8333DB34\t0xC9FF\n0x8333DB35\t0xCA00\n0x8333DB36\t0xCA01\n0x8333DB37\t0xCA02\n0x8333DB38\t0xCA03\n0x8333DB39\t0xCA04\n0x8333DC30\t0xCA05\n0x8333DC31\t0xCA06\n0x8333DC32\t0xCA07\n0x8333DC33\t0xCA08\n0x8333DC34\t0xCA09\n0x8333DC35\t0xCA0A\n0x8333DC36\t0xCA0B\n0x8333DC37\t0xCA0C\n0x8333DC38\t0xCA0D\n0x8333DC39\t0xCA0E\n0x8333DD30\t0xCA0F\n0x8333DD31\t0xCA10\n0x8333DD32\t0xCA11\n0x8333DD33\t0xCA12\n0x8333DD34\t0xCA13\n0x8333DD35\t0xCA14\n0x8333DD36\t0xCA15\n0x8333DD37\t0xCA16\n0x8333DD38\t0xCA17\n0x8333DD39\t0xCA18\n0x8333DE30\t0xCA19\n0x8333DE31\t0xCA1A\n0x8333DE32\t0xCA1B\n0x8333DE33\t0xCA1C\n0x8333DE34\t0xCA1D\n0x8333DE35\t0xCA1E\n0x8333DE36\t0xCA1F\n0x8333DE37\t0xCA20\n0x8333DE38\t0xCA21\n0x8333DE39\t0xCA22\n0x8333DF30\t0xCA23\n0x8333DF31\t0xCA24\n0x8333DF32\t0xCA25\n0x8333DF33\t0xCA26\n0x8333DF34\t0xCA27\n0x8333DF35\t0xCA28\n0x8333DF36\t0xCA29\n0x8333DF37\t0xCA2A\n0x8333DF38\t0xCA2B\n0x8333DF39\t0xCA2C\n0x8333E030\t0xCA2D\n0x8333E031\t0xCA2E\n0x8333E032\t0xCA2F\n0x8333E033\t0xCA30\n0x8333E034\t0xCA31\n0x8333E035\t0xCA32\n0x8333E036\t0xCA33\n0x8333E037\t0xCA34\n0x8333E038\t0xCA35\n0x8333E039\t0xCA36\n0x8333E130\t0xCA37\n0x8333E131\t0xCA38\n0x8333E132\t0xCA39\n0x8333E133\t0xCA3A\n0x8333E134\t0xCA3B\n0x8333E135\t0xCA3C\n0x8333E136\t0xCA3D\n0x8333E137\t0xCA3E\n0x8333E138\t0xCA3F\n0x8333E139\t0xCA40\n0x8333E230\t0xCA41\n0x8333E231\t0xCA42\n0x8333E232\t0xCA43\n0x8333E233\t0xCA44\n0x8333E234\t0xCA45\n0x8333E235\t0xCA46\n0x8333E236\t0xCA47\n0x8333E237\t0xCA48\n0x8333E238\t0xCA49\n0x8333E239\t0xCA4A\n0x8333E330\t0xCA4B\n0x8333E331\t0xCA4C\n0x8333E332\t0xCA4D\n0x8333E333\t0xCA4E\n0x8333E334\t0xCA4F\n0x8333E335\t0xCA50\n0x8333E336\t0xCA51\n0x8333E337\t0xCA52\n0x8333E338\t0xCA53\n0x8333E339\t0xCA54\n0x8333E430\t0xCA55\n0x8333E431\t0xCA56\n0x8333E432\t0xCA57\n0x8333E433\t0xCA58\n0x8333E434\t0xCA59\n0x8333E435\t0xCA5A\n0x8333E436\t0xCA5B\n0x8333E437\t0xCA5C\n0x8333E438\t0xCA5D\n0x8333E439\t0xCA5E\n0x8333E530\t0xCA5F\n0x8333E531\t0xCA60\n0x8333E532\t0xCA61\n0x8333E533\t0xCA62\n0x8333E534\t0xCA63\n0x8333E535\t0xCA64\n0x8333E536\t0xCA65\n0x8333E537\t0xCA66\n0x8333E538\t0xCA67\n0x8333E539\t0xCA68\n0x8333E630\t0xCA69\n0x8333E631\t0xCA6A\n0x8333E632\t0xCA6B\n0x8333E633\t0xCA6C\n0x8333E634\t0xCA6D\n0x8333E635\t0xCA6E\n0x8333E636\t0xCA6F\n0x8333E637\t0xCA70\n0x8333E638\t0xCA71\n0x8333E639\t0xCA72\n0x8333E730\t0xCA73\n0x8333E731\t0xCA74\n0x8333E732\t0xCA75\n0x8333E733\t0xCA76\n0x8333E734\t0xCA77\n0x8333E735\t0xCA78\n0x8333E736\t0xCA79\n0x8333E737\t0xCA7A\n0x8333E738\t0xCA7B\n0x8333E739\t0xCA7C\n0x8333E830\t0xCA7D\n0x8333E831\t0xCA7E\n0x8333E832\t0xCA7F\n0x8333E833\t0xCA80\n0x8333E834\t0xCA81\n0x8333E835\t0xCA82\n0x8333E836\t0xCA83\n0x8333E837\t0xCA84\n0x8333E838\t0xCA85\n0x8333E839\t0xCA86\n0x8333E930\t0xCA87\n0x8333E931\t0xCA88\n0x8333E932\t0xCA89\n0x8333E933\t0xCA8A\n0x8333E934\t0xCA8B\n0x8333E935\t0xCA8C\n0x8333E936\t0xCA8D\n0x8333E937\t0xCA8E\n0x8333E938\t0xCA8F\n0x8333E939\t0xCA90\n0x8333EA30\t0xCA91\n0x8333EA31\t0xCA92\n0x8333EA32\t0xCA93\n0x8333EA33\t0xCA94\n0x8333EA34\t0xCA95\n0x8333EA35\t0xCA96\n0x8333EA36\t0xCA97\n0x8333EA37\t0xCA98\n0x8333EA38\t0xCA99\n0x8333EA39\t0xCA9A\n0x8333EB30\t0xCA9B\n0x8333EB31\t0xCA9C\n0x8333EB32\t0xCA9D\n0x8333EB33\t0xCA9E\n0x8333EB34\t0xCA9F\n0x8333EB35\t0xCAA0\n0x8333EB36\t0xCAA1\n0x8333EB37\t0xCAA2\n0x8333EB38\t0xCAA3\n0x8333EB39\t0xCAA4\n0x8333EC30\t0xCAA5\n0x8333EC31\t0xCAA6\n0x8333EC32\t0xCAA7\n0x8333EC33\t0xCAA8\n0x8333EC34\t0xCAA9\n0x8333EC35\t0xCAAA\n0x8333EC36\t0xCAAB\n0x8333EC37\t0xCAAC\n0x8333EC38\t0xCAAD\n0x8333EC39\t0xCAAE\n0x8333ED30\t0xCAAF\n0x8333ED31\t0xCAB0\n0x8333ED32\t0xCAB1\n0x8333ED33\t0xCAB2\n0x8333ED34\t0xCAB3\n0x8333ED35\t0xCAB4\n0x8333ED36\t0xCAB5\n0x8333ED37\t0xCAB6\n0x8333ED38\t0xCAB7\n0x8333ED39\t0xCAB8\n0x8333EE30\t0xCAB9\n0x8333EE31\t0xCABA\n0x8333EE32\t0xCABB\n0x8333EE33\t0xCABC\n0x8333EE34\t0xCABD\n0x8333EE35\t0xCABE\n0x8333EE36\t0xCABF\n0x8333EE37\t0xCAC0\n0x8333EE38\t0xCAC1\n0x8333EE39\t0xCAC2\n0x8333EF30\t0xCAC3\n0x8333EF31\t0xCAC4\n0x8333EF32\t0xCAC5\n0x8333EF33\t0xCAC6\n0x8333EF34\t0xCAC7\n0x8333EF35\t0xCAC8\n0x8333EF36\t0xCAC9\n0x8333EF37\t0xCACA\n0x8333EF38\t0xCACB\n0x8333EF39\t0xCACC\n0x8333F030\t0xCACD\n0x8333F031\t0xCACE\n0x8333F032\t0xCACF\n0x8333F033\t0xCAD0\n0x8333F034\t0xCAD1\n0x8333F035\t0xCAD2\n0x8333F036\t0xCAD3\n0x8333F037\t0xCAD4\n0x8333F038\t0xCAD5\n0x8333F039\t0xCAD6\n0x8333F130\t0xCAD7\n0x8333F131\t0xCAD8\n0x8333F132\t0xCAD9\n0x8333F133\t0xCADA\n0x8333F134\t0xCADB\n0x8333F135\t0xCADC\n0x8333F136\t0xCADD\n0x8333F137\t0xCADE\n0x8333F138\t0xCADF\n0x8333F139\t0xCAE0\n0x8333F230\t0xCAE1\n0x8333F231\t0xCAE2\n0x8333F232\t0xCAE3\n0x8333F233\t0xCAE4\n0x8333F234\t0xCAE5\n0x8333F235\t0xCAE6\n0x8333F236\t0xCAE7\n0x8333F237\t0xCAE8\n0x8333F238\t0xCAE9\n0x8333F239\t0xCAEA\n0x8333F330\t0xCAEB\n0x8333F331\t0xCAEC\n0x8333F332\t0xCAED\n0x8333F333\t0xCAEE\n0x8333F334\t0xCAEF\n0x8333F335\t0xCAF0\n0x8333F336\t0xCAF1\n0x8333F337\t0xCAF2\n0x8333F338\t0xCAF3\n0x8333F339\t0xCAF4\n0x8333F430\t0xCAF5\n0x8333F431\t0xCAF6\n0x8333F432\t0xCAF7\n0x8333F433\t0xCAF8\n0x8333F434\t0xCAF9\n0x8333F435\t0xCAFA\n0x8333F436\t0xCAFB\n0x8333F437\t0xCAFC\n0x8333F438\t0xCAFD\n0x8333F439\t0xCAFE\n0x8333F530\t0xCAFF\n0x8333F531\t0xCB00\n0x8333F532\t0xCB01\n0x8333F533\t0xCB02\n0x8333F534\t0xCB03\n0x8333F535\t0xCB04\n0x8333F536\t0xCB05\n0x8333F537\t0xCB06\n0x8333F538\t0xCB07\n0x8333F539\t0xCB08\n0x8333F630\t0xCB09\n0x8333F631\t0xCB0A\n0x8333F632\t0xCB0B\n0x8333F633\t0xCB0C\n0x8333F634\t0xCB0D\n0x8333F635\t0xCB0E\n0x8333F636\t0xCB0F\n0x8333F637\t0xCB10\n0x8333F638\t0xCB11\n0x8333F639\t0xCB12\n0x8333F730\t0xCB13\n0x8333F731\t0xCB14\n0x8333F732\t0xCB15\n0x8333F733\t0xCB16\n0x8333F734\t0xCB17\n0x8333F735\t0xCB18\n0x8333F736\t0xCB19\n0x8333F737\t0xCB1A\n0x8333F738\t0xCB1B\n0x8333F739\t0xCB1C\n0x8333F830\t0xCB1D\n0x8333F831\t0xCB1E\n0x8333F832\t0xCB1F\n0x8333F833\t0xCB20\n0x8333F834\t0xCB21\n0x8333F835\t0xCB22\n0x8333F836\t0xCB23\n0x8333F837\t0xCB24\n0x8333F838\t0xCB25\n0x8333F839\t0xCB26\n0x8333F930\t0xCB27\n0x8333F931\t0xCB28\n0x8333F932\t0xCB29\n0x8333F933\t0xCB2A\n0x8333F934\t0xCB2B\n0x8333F935\t0xCB2C\n0x8333F936\t0xCB2D\n0x8333F937\t0xCB2E\n0x8333F938\t0xCB2F\n0x8333F939\t0xCB30\n0x8333FA30\t0xCB31\n0x8333FA31\t0xCB32\n0x8333FA32\t0xCB33\n0x8333FA33\t0xCB34\n0x8333FA34\t0xCB35\n0x8333FA35\t0xCB36\n0x8333FA36\t0xCB37\n0x8333FA37\t0xCB38\n0x8333FA38\t0xCB39\n0x8333FA39\t0xCB3A\n0x8333FB30\t0xCB3B\n0x8333FB31\t0xCB3C\n0x8333FB32\t0xCB3D\n0x8333FB33\t0xCB3E\n0x8333FB34\t0xCB3F\n0x8333FB35\t0xCB40\n0x8333FB36\t0xCB41\n0x8333FB37\t0xCB42\n0x8333FB38\t0xCB43\n0x8333FB39\t0xCB44\n0x8333FC30\t0xCB45\n0x8333FC31\t0xCB46\n0x8333FC32\t0xCB47\n0x8333FC33\t0xCB48\n0x8333FC34\t0xCB49\n0x8333FC35\t0xCB4A\n0x8333FC36\t0xCB4B\n0x8333FC37\t0xCB4C\n0x8333FC38\t0xCB4D\n0x8333FC39\t0xCB4E\n0x8333FD30\t0xCB4F\n0x8333FD31\t0xCB50\n0x8333FD32\t0xCB51\n0x8333FD33\t0xCB52\n0x8333FD34\t0xCB53\n0x8333FD35\t0xCB54\n0x8333FD36\t0xCB55\n0x8333FD37\t0xCB56\n0x8333FD38\t0xCB57\n0x8333FD39\t0xCB58\n0x8333FE30\t0xCB59\n0x8333FE31\t0xCB5A\n0x8333FE32\t0xCB5B\n0x8333FE33\t0xCB5C\n0x8333FE34\t0xCB5D\n0x8333FE35\t0xCB5E\n0x8333FE36\t0xCB5F\n0x8333FE37\t0xCB60\n0x8333FE38\t0xCB61\n0x8333FE39\t0xCB62\n0x83348130\t0xCB63\n0x83348131\t0xCB64\n0x83348132\t0xCB65\n0x83348133\t0xCB66\n0x83348134\t0xCB67\n0x83348135\t0xCB68\n0x83348136\t0xCB69\n0x83348137\t0xCB6A\n0x83348138\t0xCB6B\n0x83348139\t0xCB6C\n0x83348230\t0xCB6D\n0x83348231\t0xCB6E\n0x83348232\t0xCB6F\n0x83348233\t0xCB70\n0x83348234\t0xCB71\n0x83348235\t0xCB72\n0x83348236\t0xCB73\n0x83348237\t0xCB74\n0x83348238\t0xCB75\n0x83348239\t0xCB76\n0x83348330\t0xCB77\n0x83348331\t0xCB78\n0x83348332\t0xCB79\n0x83348333\t0xCB7A\n0x83348334\t0xCB7B\n0x83348335\t0xCB7C\n0x83348336\t0xCB7D\n0x83348337\t0xCB7E\n0x83348338\t0xCB7F\n0x83348339\t0xCB80\n0x83348430\t0xCB81\n0x83348431\t0xCB82\n0x83348432\t0xCB83\n0x83348433\t0xCB84\n0x83348434\t0xCB85\n0x83348435\t0xCB86\n0x83348436\t0xCB87\n0x83348437\t0xCB88\n0x83348438\t0xCB89\n0x83348439\t0xCB8A\n0x83348530\t0xCB8B\n0x83348531\t0xCB8C\n0x83348532\t0xCB8D\n0x83348533\t0xCB8E\n0x83348534\t0xCB8F\n0x83348535\t0xCB90\n0x83348536\t0xCB91\n0x83348537\t0xCB92\n0x83348538\t0xCB93\n0x83348539\t0xCB94\n0x83348630\t0xCB95\n0x83348631\t0xCB96\n0x83348632\t0xCB97\n0x83348633\t0xCB98\n0x83348634\t0xCB99\n0x83348635\t0xCB9A\n0x83348636\t0xCB9B\n0x83348637\t0xCB9C\n0x83348638\t0xCB9D\n0x83348639\t0xCB9E\n0x83348730\t0xCB9F\n0x83348731\t0xCBA0\n0x83348732\t0xCBA1\n0x83348733\t0xCBA2\n0x83348734\t0xCBA3\n0x83348735\t0xCBA4\n0x83348736\t0xCBA5\n0x83348737\t0xCBA6\n0x83348738\t0xCBA7\n0x83348739\t0xCBA8\n0x83348830\t0xCBA9\n0x83348831\t0xCBAA\n0x83348832\t0xCBAB\n0x83348833\t0xCBAC\n0x83348834\t0xCBAD\n0x83348835\t0xCBAE\n0x83348836\t0xCBAF\n0x83348837\t0xCBB0\n0x83348838\t0xCBB1\n0x83348839\t0xCBB2\n0x83348930\t0xCBB3\n0x83348931\t0xCBB4\n0x83348932\t0xCBB5\n0x83348933\t0xCBB6\n0x83348934\t0xCBB7\n0x83348935\t0xCBB8\n0x83348936\t0xCBB9\n0x83348937\t0xCBBA\n0x83348938\t0xCBBB\n0x83348939\t0xCBBC\n0x83348A30\t0xCBBD\n0x83348A31\t0xCBBE\n0x83348A32\t0xCBBF\n0x83348A33\t0xCBC0\n0x83348A34\t0xCBC1\n0x83348A35\t0xCBC2\n0x83348A36\t0xCBC3\n0x83348A37\t0xCBC4\n0x83348A38\t0xCBC5\n0x83348A39\t0xCBC6\n0x83348B30\t0xCBC7\n0x83348B31\t0xCBC8\n0x83348B32\t0xCBC9\n0x83348B33\t0xCBCA\n0x83348B34\t0xCBCB\n0x83348B35\t0xCBCC\n0x83348B36\t0xCBCD\n0x83348B37\t0xCBCE\n0x83348B38\t0xCBCF\n0x83348B39\t0xCBD0\n0x83348C30\t0xCBD1\n0x83348C31\t0xCBD2\n0x83348C32\t0xCBD3\n0x83348C33\t0xCBD4\n0x83348C34\t0xCBD5\n0x83348C35\t0xCBD6\n0x83348C36\t0xCBD7\n0x83348C37\t0xCBD8\n0x83348C38\t0xCBD9\n0x83348C39\t0xCBDA\n0x83348D30\t0xCBDB\n0x83348D31\t0xCBDC\n0x83348D32\t0xCBDD\n0x83348D33\t0xCBDE\n0x83348D34\t0xCBDF\n0x83348D35\t0xCBE0\n0x83348D36\t0xCBE1\n0x83348D37\t0xCBE2\n0x83348D38\t0xCBE3\n0x83348D39\t0xCBE4\n0x83348E30\t0xCBE5\n0x83348E31\t0xCBE6\n0x83348E32\t0xCBE7\n0x83348E33\t0xCBE8\n0x83348E34\t0xCBE9\n0x83348E35\t0xCBEA\n0x83348E36\t0xCBEB\n0x83348E37\t0xCBEC\n0x83348E38\t0xCBED\n0x83348E39\t0xCBEE\n0x83348F30\t0xCBEF\n0x83348F31\t0xCBF0\n0x83348F32\t0xCBF1\n0x83348F33\t0xCBF2\n0x83348F34\t0xCBF3\n0x83348F35\t0xCBF4\n0x83348F36\t0xCBF5\n0x83348F37\t0xCBF6\n0x83348F38\t0xCBF7\n0x83348F39\t0xCBF8\n0x83349030\t0xCBF9\n0x83349031\t0xCBFA\n0x83349032\t0xCBFB\n0x83349033\t0xCBFC\n0x83349034\t0xCBFD\n0x83349035\t0xCBFE\n0x83349036\t0xCBFF\n0x83349037\t0xCC00\n0x83349038\t0xCC01\n0x83349039\t0xCC02\n0x83349130\t0xCC03\n0x83349131\t0xCC04\n0x83349132\t0xCC05\n0x83349133\t0xCC06\n0x83349134\t0xCC07\n0x83349135\t0xCC08\n0x83349136\t0xCC09\n0x83349137\t0xCC0A\n0x83349138\t0xCC0B\n0x83349139\t0xCC0C\n0x83349230\t0xCC0D\n0x83349231\t0xCC0E\n0x83349232\t0xCC0F\n0x83349233\t0xCC10\n0x83349234\t0xCC11\n0x83349235\t0xCC12\n0x83349236\t0xCC13\n0x83349237\t0xCC14\n0x83349238\t0xCC15\n0x83349239\t0xCC16\n0x83349330\t0xCC17\n0x83349331\t0xCC18\n0x83349332\t0xCC19\n0x83349333\t0xCC1A\n0x83349334\t0xCC1B\n0x83349335\t0xCC1C\n0x83349336\t0xCC1D\n0x83349337\t0xCC1E\n0x83349338\t0xCC1F\n0x83349339\t0xCC20\n0x83349430\t0xCC21\n0x83349431\t0xCC22\n0x83349432\t0xCC23\n0x83349433\t0xCC24\n0x83349434\t0xCC25\n0x83349435\t0xCC26\n0x83349436\t0xCC27\n0x83349437\t0xCC28\n0x83349438\t0xCC29\n0x83349439\t0xCC2A\n0x83349530\t0xCC2B\n0x83349531\t0xCC2C\n0x83349532\t0xCC2D\n0x83349533\t0xCC2E\n0x83349534\t0xCC2F\n0x83349535\t0xCC30\n0x83349536\t0xCC31\n0x83349537\t0xCC32\n0x83349538\t0xCC33\n0x83349539\t0xCC34\n0x83349630\t0xCC35\n0x83349631\t0xCC36\n0x83349632\t0xCC37\n0x83349633\t0xCC38\n0x83349634\t0xCC39\n0x83349635\t0xCC3A\n0x83349636\t0xCC3B\n0x83349637\t0xCC3C\n0x83349638\t0xCC3D\n0x83349639\t0xCC3E\n0x83349730\t0xCC3F\n0x83349731\t0xCC40\n0x83349732\t0xCC41\n0x83349733\t0xCC42\n0x83349734\t0xCC43\n0x83349735\t0xCC44\n0x83349736\t0xCC45\n0x83349737\t0xCC46\n0x83349738\t0xCC47\n0x83349739\t0xCC48\n0x83349830\t0xCC49\n0x83349831\t0xCC4A\n0x83349832\t0xCC4B\n0x83349833\t0xCC4C\n0x83349834\t0xCC4D\n0x83349835\t0xCC4E\n0x83349836\t0xCC4F\n0x83349837\t0xCC50\n0x83349838\t0xCC51\n0x83349839\t0xCC52\n0x83349930\t0xCC53\n0x83349931\t0xCC54\n0x83349932\t0xCC55\n0x83349933\t0xCC56\n0x83349934\t0xCC57\n0x83349935\t0xCC58\n0x83349936\t0xCC59\n0x83349937\t0xCC5A\n0x83349938\t0xCC5B\n0x83349939\t0xCC5C\n0x83349A30\t0xCC5D\n0x83349A31\t0xCC5E\n0x83349A32\t0xCC5F\n0x83349A33\t0xCC60\n0x83349A34\t0xCC61\n0x83349A35\t0xCC62\n0x83349A36\t0xCC63\n0x83349A37\t0xCC64\n0x83349A38\t0xCC65\n0x83349A39\t0xCC66\n0x83349B30\t0xCC67\n0x83349B31\t0xCC68\n0x83349B32\t0xCC69\n0x83349B33\t0xCC6A\n0x83349B34\t0xCC6B\n0x83349B35\t0xCC6C\n0x83349B36\t0xCC6D\n0x83349B37\t0xCC6E\n0x83349B38\t0xCC6F\n0x83349B39\t0xCC70\n0x83349C30\t0xCC71\n0x83349C31\t0xCC72\n0x83349C32\t0xCC73\n0x83349C33\t0xCC74\n0x83349C34\t0xCC75\n0x83349C35\t0xCC76\n0x83349C36\t0xCC77\n0x83349C37\t0xCC78\n0x83349C38\t0xCC79\n0x83349C39\t0xCC7A\n0x83349D30\t0xCC7B\n0x83349D31\t0xCC7C\n0x83349D32\t0xCC7D\n0x83349D33\t0xCC7E\n0x83349D34\t0xCC7F\n0x83349D35\t0xCC80\n0x83349D36\t0xCC81\n0x83349D37\t0xCC82\n0x83349D38\t0xCC83\n0x83349D39\t0xCC84\n0x83349E30\t0xCC85\n0x83349E31\t0xCC86\n0x83349E32\t0xCC87\n0x83349E33\t0xCC88\n0x83349E34\t0xCC89\n0x83349E35\t0xCC8A\n0x83349E36\t0xCC8B\n0x83349E37\t0xCC8C\n0x83349E38\t0xCC8D\n0x83349E39\t0xCC8E\n0x83349F30\t0xCC8F\n0x83349F31\t0xCC90\n0x83349F32\t0xCC91\n0x83349F33\t0xCC92\n0x83349F34\t0xCC93\n0x83349F35\t0xCC94\n0x83349F36\t0xCC95\n0x83349F37\t0xCC96\n0x83349F38\t0xCC97\n0x83349F39\t0xCC98\n0x8334A030\t0xCC99\n0x8334A031\t0xCC9A\n0x8334A032\t0xCC9B\n0x8334A033\t0xCC9C\n0x8334A034\t0xCC9D\n0x8334A035\t0xCC9E\n0x8334A036\t0xCC9F\n0x8334A037\t0xCCA0\n0x8334A038\t0xCCA1\n0x8334A039\t0xCCA2\n0x8334A130\t0xCCA3\n0x8334A131\t0xCCA4\n0x8334A132\t0xCCA5\n0x8334A133\t0xCCA6\n0x8334A134\t0xCCA7\n0x8334A135\t0xCCA8\n0x8334A136\t0xCCA9\n0x8334A137\t0xCCAA\n0x8334A138\t0xCCAB\n0x8334A139\t0xCCAC\n0x8334A230\t0xCCAD\n0x8334A231\t0xCCAE\n0x8334A232\t0xCCAF\n0x8334A233\t0xCCB0\n0x8334A234\t0xCCB1\n0x8334A235\t0xCCB2\n0x8334A236\t0xCCB3\n0x8334A237\t0xCCB4\n0x8334A238\t0xCCB5\n0x8334A239\t0xCCB6\n0x8334A330\t0xCCB7\n0x8334A331\t0xCCB8\n0x8334A332\t0xCCB9\n0x8334A333\t0xCCBA\n0x8334A334\t0xCCBB\n0x8334A335\t0xCCBC\n0x8334A336\t0xCCBD\n0x8334A337\t0xCCBE\n0x8334A338\t0xCCBF\n0x8334A339\t0xCCC0\n0x8334A430\t0xCCC1\n0x8334A431\t0xCCC2\n0x8334A432\t0xCCC3\n0x8334A433\t0xCCC4\n0x8334A434\t0xCCC5\n0x8334A435\t0xCCC6\n0x8334A436\t0xCCC7\n0x8334A437\t0xCCC8\n0x8334A438\t0xCCC9\n0x8334A439\t0xCCCA\n0x8334A530\t0xCCCB\n0x8334A531\t0xCCCC\n0x8334A532\t0xCCCD\n0x8334A533\t0xCCCE\n0x8334A534\t0xCCCF\n0x8334A535\t0xCCD0\n0x8334A536\t0xCCD1\n0x8334A537\t0xCCD2\n0x8334A538\t0xCCD3\n0x8334A539\t0xCCD4\n0x8334A630\t0xCCD5\n0x8334A631\t0xCCD6\n0x8334A632\t0xCCD7\n0x8334A633\t0xCCD8\n0x8334A634\t0xCCD9\n0x8334A635\t0xCCDA\n0x8334A636\t0xCCDB\n0x8334A637\t0xCCDC\n0x8334A638\t0xCCDD\n0x8334A639\t0xCCDE\n0x8334A730\t0xCCDF\n0x8334A731\t0xCCE0\n0x8334A732\t0xCCE1\n0x8334A733\t0xCCE2\n0x8334A734\t0xCCE3\n0x8334A735\t0xCCE4\n0x8334A736\t0xCCE5\n0x8334A737\t0xCCE6\n0x8334A738\t0xCCE7\n0x8334A739\t0xCCE8\n0x8334A830\t0xCCE9\n0x8334A831\t0xCCEA\n0x8334A832\t0xCCEB\n0x8334A833\t0xCCEC\n0x8334A834\t0xCCED\n0x8334A835\t0xCCEE\n0x8334A836\t0xCCEF\n0x8334A837\t0xCCF0\n0x8334A838\t0xCCF1\n0x8334A839\t0xCCF2\n0x8334A930\t0xCCF3\n0x8334A931\t0xCCF4\n0x8334A932\t0xCCF5\n0x8334A933\t0xCCF6\n0x8334A934\t0xCCF7\n0x8334A935\t0xCCF8\n0x8334A936\t0xCCF9\n0x8334A937\t0xCCFA\n0x8334A938\t0xCCFB\n0x8334A939\t0xCCFC\n0x8334AA30\t0xCCFD\n0x8334AA31\t0xCCFE\n0x8334AA32\t0xCCFF\n0x8334AA33\t0xCD00\n0x8334AA34\t0xCD01\n0x8334AA35\t0xCD02\n0x8334AA36\t0xCD03\n0x8334AA37\t0xCD04\n0x8334AA38\t0xCD05\n0x8334AA39\t0xCD06\n0x8334AB30\t0xCD07\n0x8334AB31\t0xCD08\n0x8334AB32\t0xCD09\n0x8334AB33\t0xCD0A\n0x8334AB34\t0xCD0B\n0x8334AB35\t0xCD0C\n0x8334AB36\t0xCD0D\n0x8334AB37\t0xCD0E\n0x8334AB38\t0xCD0F\n0x8334AB39\t0xCD10\n0x8334AC30\t0xCD11\n0x8334AC31\t0xCD12\n0x8334AC32\t0xCD13\n0x8334AC33\t0xCD14\n0x8334AC34\t0xCD15\n0x8334AC35\t0xCD16\n0x8334AC36\t0xCD17\n0x8334AC37\t0xCD18\n0x8334AC38\t0xCD19\n0x8334AC39\t0xCD1A\n0x8334AD30\t0xCD1B\n0x8334AD31\t0xCD1C\n0x8334AD32\t0xCD1D\n0x8334AD33\t0xCD1E\n0x8334AD34\t0xCD1F\n0x8334AD35\t0xCD20\n0x8334AD36\t0xCD21\n0x8334AD37\t0xCD22\n0x8334AD38\t0xCD23\n0x8334AD39\t0xCD24\n0x8334AE30\t0xCD25\n0x8334AE31\t0xCD26\n0x8334AE32\t0xCD27\n0x8334AE33\t0xCD28\n0x8334AE34\t0xCD29\n0x8334AE35\t0xCD2A\n0x8334AE36\t0xCD2B\n0x8334AE37\t0xCD2C\n0x8334AE38\t0xCD2D\n0x8334AE39\t0xCD2E\n0x8334AF30\t0xCD2F\n0x8334AF31\t0xCD30\n0x8334AF32\t0xCD31\n0x8334AF33\t0xCD32\n0x8334AF34\t0xCD33\n0x8334AF35\t0xCD34\n0x8334AF36\t0xCD35\n0x8334AF37\t0xCD36\n0x8334AF38\t0xCD37\n0x8334AF39\t0xCD38\n0x8334B030\t0xCD39\n0x8334B031\t0xCD3A\n0x8334B032\t0xCD3B\n0x8334B033\t0xCD3C\n0x8334B034\t0xCD3D\n0x8334B035\t0xCD3E\n0x8334B036\t0xCD3F\n0x8334B037\t0xCD40\n0x8334B038\t0xCD41\n0x8334B039\t0xCD42\n0x8334B130\t0xCD43\n0x8334B131\t0xCD44\n0x8334B132\t0xCD45\n0x8334B133\t0xCD46\n0x8334B134\t0xCD47\n0x8334B135\t0xCD48\n0x8334B136\t0xCD49\n0x8334B137\t0xCD4A\n0x8334B138\t0xCD4B\n0x8334B139\t0xCD4C\n0x8334B230\t0xCD4D\n0x8334B231\t0xCD4E\n0x8334B232\t0xCD4F\n0x8334B233\t0xCD50\n0x8334B234\t0xCD51\n0x8334B235\t0xCD52\n0x8334B236\t0xCD53\n0x8334B237\t0xCD54\n0x8334B238\t0xCD55\n0x8334B239\t0xCD56\n0x8334B330\t0xCD57\n0x8334B331\t0xCD58\n0x8334B332\t0xCD59\n0x8334B333\t0xCD5A\n0x8334B334\t0xCD5B\n0x8334B335\t0xCD5C\n0x8334B336\t0xCD5D\n0x8334B337\t0xCD5E\n0x8334B338\t0xCD5F\n0x8334B339\t0xCD60\n0x8334B430\t0xCD61\n0x8334B431\t0xCD62\n0x8334B432\t0xCD63\n0x8334B433\t0xCD64\n0x8334B434\t0xCD65\n0x8334B435\t0xCD66\n0x8334B436\t0xCD67\n0x8334B437\t0xCD68\n0x8334B438\t0xCD69\n0x8334B439\t0xCD6A\n0x8334B530\t0xCD6B\n0x8334B531\t0xCD6C\n0x8334B532\t0xCD6D\n0x8334B533\t0xCD6E\n0x8334B534\t0xCD6F\n0x8334B535\t0xCD70\n0x8334B536\t0xCD71\n0x8334B537\t0xCD72\n0x8334B538\t0xCD73\n0x8334B539\t0xCD74\n0x8334B630\t0xCD75\n0x8334B631\t0xCD76\n0x8334B632\t0xCD77\n0x8334B633\t0xCD78\n0x8334B634\t0xCD79\n0x8334B635\t0xCD7A\n0x8334B636\t0xCD7B\n0x8334B637\t0xCD7C\n0x8334B638\t0xCD7D\n0x8334B639\t0xCD7E\n0x8334B730\t0xCD7F\n0x8334B731\t0xCD80\n0x8334B732\t0xCD81\n0x8334B733\t0xCD82\n0x8334B734\t0xCD83\n0x8334B735\t0xCD84\n0x8334B736\t0xCD85\n0x8334B737\t0xCD86\n0x8334B738\t0xCD87\n0x8334B739\t0xCD88\n0x8334B830\t0xCD89\n0x8334B831\t0xCD8A\n0x8334B832\t0xCD8B\n0x8334B833\t0xCD8C\n0x8334B834\t0xCD8D\n0x8334B835\t0xCD8E\n0x8334B836\t0xCD8F\n0x8334B837\t0xCD90\n0x8334B838\t0xCD91\n0x8334B839\t0xCD92\n0x8334B930\t0xCD93\n0x8334B931\t0xCD94\n0x8334B932\t0xCD95\n0x8334B933\t0xCD96\n0x8334B934\t0xCD97\n0x8334B935\t0xCD98\n0x8334B936\t0xCD99\n0x8334B937\t0xCD9A\n0x8334B938\t0xCD9B\n0x8334B939\t0xCD9C\n0x8334BA30\t0xCD9D\n0x8334BA31\t0xCD9E\n0x8334BA32\t0xCD9F\n0x8334BA33\t0xCDA0\n0x8334BA34\t0xCDA1\n0x8334BA35\t0xCDA2\n0x8334BA36\t0xCDA3\n0x8334BA37\t0xCDA4\n0x8334BA38\t0xCDA5\n0x8334BA39\t0xCDA6\n0x8334BB30\t0xCDA7\n0x8334BB31\t0xCDA8\n0x8334BB32\t0xCDA9\n0x8334BB33\t0xCDAA\n0x8334BB34\t0xCDAB\n0x8334BB35\t0xCDAC\n0x8334BB36\t0xCDAD\n0x8334BB37\t0xCDAE\n0x8334BB38\t0xCDAF\n0x8334BB39\t0xCDB0\n0x8334BC30\t0xCDB1\n0x8334BC31\t0xCDB2\n0x8334BC32\t0xCDB3\n0x8334BC33\t0xCDB4\n0x8334BC34\t0xCDB5\n0x8334BC35\t0xCDB6\n0x8334BC36\t0xCDB7\n0x8334BC37\t0xCDB8\n0x8334BC38\t0xCDB9\n0x8334BC39\t0xCDBA\n0x8334BD30\t0xCDBB\n0x8334BD31\t0xCDBC\n0x8334BD32\t0xCDBD\n0x8334BD33\t0xCDBE\n0x8334BD34\t0xCDBF\n0x8334BD35\t0xCDC0\n0x8334BD36\t0xCDC1\n0x8334BD37\t0xCDC2\n0x8334BD38\t0xCDC3\n0x8334BD39\t0xCDC4\n0x8334BE30\t0xCDC5\n0x8334BE31\t0xCDC6\n0x8334BE32\t0xCDC7\n0x8334BE33\t0xCDC8\n0x8334BE34\t0xCDC9\n0x8334BE35\t0xCDCA\n0x8334BE36\t0xCDCB\n0x8334BE37\t0xCDCC\n0x8334BE38\t0xCDCD\n0x8334BE39\t0xCDCE\n0x8334BF30\t0xCDCF\n0x8334BF31\t0xCDD0\n0x8334BF32\t0xCDD1\n0x8334BF33\t0xCDD2\n0x8334BF34\t0xCDD3\n0x8334BF35\t0xCDD4\n0x8334BF36\t0xCDD5\n0x8334BF37\t0xCDD6\n0x8334BF38\t0xCDD7\n0x8334BF39\t0xCDD8\n0x8334C030\t0xCDD9\n0x8334C031\t0xCDDA\n0x8334C032\t0xCDDB\n0x8334C033\t0xCDDC\n0x8334C034\t0xCDDD\n0x8334C035\t0xCDDE\n0x8334C036\t0xCDDF\n0x8334C037\t0xCDE0\n0x8334C038\t0xCDE1\n0x8334C039\t0xCDE2\n0x8334C130\t0xCDE3\n0x8334C131\t0xCDE4\n0x8334C132\t0xCDE5\n0x8334C133\t0xCDE6\n0x8334C134\t0xCDE7\n0x8334C135\t0xCDE8\n0x8334C136\t0xCDE9\n0x8334C137\t0xCDEA\n0x8334C138\t0xCDEB\n0x8334C139\t0xCDEC\n0x8334C230\t0xCDED\n0x8334C231\t0xCDEE\n0x8334C232\t0xCDEF\n0x8334C233\t0xCDF0\n0x8334C234\t0xCDF1\n0x8334C235\t0xCDF2\n0x8334C236\t0xCDF3\n0x8334C237\t0xCDF4\n0x8334C238\t0xCDF5\n0x8334C239\t0xCDF6\n0x8334C330\t0xCDF7\n0x8334C331\t0xCDF8\n0x8334C332\t0xCDF9\n0x8334C333\t0xCDFA\n0x8334C334\t0xCDFB\n0x8334C335\t0xCDFC\n0x8334C336\t0xCDFD\n0x8334C337\t0xCDFE\n0x8334C338\t0xCDFF\n0x8334C339\t0xCE00\n0x8334C430\t0xCE01\n0x8334C431\t0xCE02\n0x8334C432\t0xCE03\n0x8334C433\t0xCE04\n0x8334C434\t0xCE05\n0x8334C435\t0xCE06\n0x8334C436\t0xCE07\n0x8334C437\t0xCE08\n0x8334C438\t0xCE09\n0x8334C439\t0xCE0A\n0x8334C530\t0xCE0B\n0x8334C531\t0xCE0C\n0x8334C532\t0xCE0D\n0x8334C533\t0xCE0E\n0x8334C534\t0xCE0F\n0x8334C535\t0xCE10\n0x8334C536\t0xCE11\n0x8334C537\t0xCE12\n0x8334C538\t0xCE13\n0x8334C539\t0xCE14\n0x8334C630\t0xCE15\n0x8334C631\t0xCE16\n0x8334C632\t0xCE17\n0x8334C633\t0xCE18\n0x8334C634\t0xCE19\n0x8334C635\t0xCE1A\n0x8334C636\t0xCE1B\n0x8334C637\t0xCE1C\n0x8334C638\t0xCE1D\n0x8334C639\t0xCE1E\n0x8334C730\t0xCE1F\n0x8334C731\t0xCE20\n0x8334C732\t0xCE21\n0x8334C733\t0xCE22\n0x8334C734\t0xCE23\n0x8334C735\t0xCE24\n0x8334C736\t0xCE25\n0x8334C737\t0xCE26\n0x8334C738\t0xCE27\n0x8334C739\t0xCE28\n0x8334C830\t0xCE29\n0x8334C831\t0xCE2A\n0x8334C832\t0xCE2B\n0x8334C833\t0xCE2C\n0x8334C834\t0xCE2D\n0x8334C835\t0xCE2E\n0x8334C836\t0xCE2F\n0x8334C837\t0xCE30\n0x8334C838\t0xCE31\n0x8334C839\t0xCE32\n0x8334C930\t0xCE33\n0x8334C931\t0xCE34\n0x8334C932\t0xCE35\n0x8334C933\t0xCE36\n0x8334C934\t0xCE37\n0x8334C935\t0xCE38\n0x8334C936\t0xCE39\n0x8334C937\t0xCE3A\n0x8334C938\t0xCE3B\n0x8334C939\t0xCE3C\n0x8334CA30\t0xCE3D\n0x8334CA31\t0xCE3E\n0x8334CA32\t0xCE3F\n0x8334CA33\t0xCE40\n0x8334CA34\t0xCE41\n0x8334CA35\t0xCE42\n0x8334CA36\t0xCE43\n0x8334CA37\t0xCE44\n0x8334CA38\t0xCE45\n0x8334CA39\t0xCE46\n0x8334CB30\t0xCE47\n0x8334CB31\t0xCE48\n0x8334CB32\t0xCE49\n0x8334CB33\t0xCE4A\n0x8334CB34\t0xCE4B\n0x8334CB35\t0xCE4C\n0x8334CB36\t0xCE4D\n0x8334CB37\t0xCE4E\n0x8334CB38\t0xCE4F\n0x8334CB39\t0xCE50\n0x8334CC30\t0xCE51\n0x8334CC31\t0xCE52\n0x8334CC32\t0xCE53\n0x8334CC33\t0xCE54\n0x8334CC34\t0xCE55\n0x8334CC35\t0xCE56\n0x8334CC36\t0xCE57\n0x8334CC37\t0xCE58\n0x8334CC38\t0xCE59\n0x8334CC39\t0xCE5A\n0x8334CD30\t0xCE5B\n0x8334CD31\t0xCE5C\n0x8334CD32\t0xCE5D\n0x8334CD33\t0xCE5E\n0x8334CD34\t0xCE5F\n0x8334CD35\t0xCE60\n0x8334CD36\t0xCE61\n0x8334CD37\t0xCE62\n0x8334CD38\t0xCE63\n0x8334CD39\t0xCE64\n0x8334CE30\t0xCE65\n0x8334CE31\t0xCE66\n0x8334CE32\t0xCE67\n0x8334CE33\t0xCE68\n0x8334CE34\t0xCE69\n0x8334CE35\t0xCE6A\n0x8334CE36\t0xCE6B\n0x8334CE37\t0xCE6C\n0x8334CE38\t0xCE6D\n0x8334CE39\t0xCE6E\n0x8334CF30\t0xCE6F\n0x8334CF31\t0xCE70\n0x8334CF32\t0xCE71\n0x8334CF33\t0xCE72\n0x8334CF34\t0xCE73\n0x8334CF35\t0xCE74\n0x8334CF36\t0xCE75\n0x8334CF37\t0xCE76\n0x8334CF38\t0xCE77\n0x8334CF39\t0xCE78\n0x8334D030\t0xCE79\n0x8334D031\t0xCE7A\n0x8334D032\t0xCE7B\n0x8334D033\t0xCE7C\n0x8334D034\t0xCE7D\n0x8334D035\t0xCE7E\n0x8334D036\t0xCE7F\n0x8334D037\t0xCE80\n0x8334D038\t0xCE81\n0x8334D039\t0xCE82\n0x8334D130\t0xCE83\n0x8334D131\t0xCE84\n0x8334D132\t0xCE85\n0x8334D133\t0xCE86\n0x8334D134\t0xCE87\n0x8334D135\t0xCE88\n0x8334D136\t0xCE89\n0x8334D137\t0xCE8A\n0x8334D138\t0xCE8B\n0x8334D139\t0xCE8C\n0x8334D230\t0xCE8D\n0x8334D231\t0xCE8E\n0x8334D232\t0xCE8F\n0x8334D233\t0xCE90\n0x8334D234\t0xCE91\n0x8334D235\t0xCE92\n0x8334D236\t0xCE93\n0x8334D237\t0xCE94\n0x8334D238\t0xCE95\n0x8334D239\t0xCE96\n0x8334D330\t0xCE97\n0x8334D331\t0xCE98\n0x8334D332\t0xCE99\n0x8334D333\t0xCE9A\n0x8334D334\t0xCE9B\n0x8334D335\t0xCE9C\n0x8334D336\t0xCE9D\n0x8334D337\t0xCE9E\n0x8334D338\t0xCE9F\n0x8334D339\t0xCEA0\n0x8334D430\t0xCEA1\n0x8334D431\t0xCEA2\n0x8334D432\t0xCEA3\n0x8334D433\t0xCEA4\n0x8334D434\t0xCEA5\n0x8334D435\t0xCEA6\n0x8334D436\t0xCEA7\n0x8334D437\t0xCEA8\n0x8334D438\t0xCEA9\n0x8334D439\t0xCEAA\n0x8334D530\t0xCEAB\n0x8334D531\t0xCEAC\n0x8334D532\t0xCEAD\n0x8334D533\t0xCEAE\n0x8334D534\t0xCEAF\n0x8334D535\t0xCEB0\n0x8334D536\t0xCEB1\n0x8334D537\t0xCEB2\n0x8334D538\t0xCEB3\n0x8334D539\t0xCEB4\n0x8334D630\t0xCEB5\n0x8334D631\t0xCEB6\n0x8334D632\t0xCEB7\n0x8334D633\t0xCEB8\n0x8334D634\t0xCEB9\n0x8334D635\t0xCEBA\n0x8334D636\t0xCEBB\n0x8334D637\t0xCEBC\n0x8334D638\t0xCEBD\n0x8334D639\t0xCEBE\n0x8334D730\t0xCEBF\n0x8334D731\t0xCEC0\n0x8334D732\t0xCEC1\n0x8334D733\t0xCEC2\n0x8334D734\t0xCEC3\n0x8334D735\t0xCEC4\n0x8334D736\t0xCEC5\n0x8334D737\t0xCEC6\n0x8334D738\t0xCEC7\n0x8334D739\t0xCEC8\n0x8334D830\t0xCEC9\n0x8334D831\t0xCECA\n0x8334D832\t0xCECB\n0x8334D833\t0xCECC\n0x8334D834\t0xCECD\n0x8334D835\t0xCECE\n0x8334D836\t0xCECF\n0x8334D837\t0xCED0\n0x8334D838\t0xCED1\n0x8334D839\t0xCED2\n0x8334D930\t0xCED3\n0x8334D931\t0xCED4\n0x8334D932\t0xCED5\n0x8334D933\t0xCED6\n0x8334D934\t0xCED7\n0x8334D935\t0xCED8\n0x8334D936\t0xCED9\n0x8334D937\t0xCEDA\n0x8334D938\t0xCEDB\n0x8334D939\t0xCEDC\n0x8334DA30\t0xCEDD\n0x8334DA31\t0xCEDE\n0x8334DA32\t0xCEDF\n0x8334DA33\t0xCEE0\n0x8334DA34\t0xCEE1\n0x8334DA35\t0xCEE2\n0x8334DA36\t0xCEE3\n0x8334DA37\t0xCEE4\n0x8334DA38\t0xCEE5\n0x8334DA39\t0xCEE6\n0x8334DB30\t0xCEE7\n0x8334DB31\t0xCEE8\n0x8334DB32\t0xCEE9\n0x8334DB33\t0xCEEA\n0x8334DB34\t0xCEEB\n0x8334DB35\t0xCEEC\n0x8334DB36\t0xCEED\n0x8334DB37\t0xCEEE\n0x8334DB38\t0xCEEF\n0x8334DB39\t0xCEF0\n0x8334DC30\t0xCEF1\n0x8334DC31\t0xCEF2\n0x8334DC32\t0xCEF3\n0x8334DC33\t0xCEF4\n0x8334DC34\t0xCEF5\n0x8334DC35\t0xCEF6\n0x8334DC36\t0xCEF7\n0x8334DC37\t0xCEF8\n0x8334DC38\t0xCEF9\n0x8334DC39\t0xCEFA\n0x8334DD30\t0xCEFB\n0x8334DD31\t0xCEFC\n0x8334DD32\t0xCEFD\n0x8334DD33\t0xCEFE\n0x8334DD34\t0xCEFF\n0x8334DD35\t0xCF00\n0x8334DD36\t0xCF01\n0x8334DD37\t0xCF02\n0x8334DD38\t0xCF03\n0x8334DD39\t0xCF04\n0x8334DE30\t0xCF05\n0x8334DE31\t0xCF06\n0x8334DE32\t0xCF07\n0x8334DE33\t0xCF08\n0x8334DE34\t0xCF09\n0x8334DE35\t0xCF0A\n0x8334DE36\t0xCF0B\n0x8334DE37\t0xCF0C\n0x8334DE38\t0xCF0D\n0x8334DE39\t0xCF0E\n0x8334DF30\t0xCF0F\n0x8334DF31\t0xCF10\n0x8334DF32\t0xCF11\n0x8334DF33\t0xCF12\n0x8334DF34\t0xCF13\n0x8334DF35\t0xCF14\n0x8334DF36\t0xCF15\n0x8334DF37\t0xCF16\n0x8334DF38\t0xCF17\n0x8334DF39\t0xCF18\n0x8334E030\t0xCF19\n0x8334E031\t0xCF1A\n0x8334E032\t0xCF1B\n0x8334E033\t0xCF1C\n0x8334E034\t0xCF1D\n0x8334E035\t0xCF1E\n0x8334E036\t0xCF1F\n0x8334E037\t0xCF20\n0x8334E038\t0xCF21\n0x8334E039\t0xCF22\n0x8334E130\t0xCF23\n0x8334E131\t0xCF24\n0x8334E132\t0xCF25\n0x8334E133\t0xCF26\n0x8334E134\t0xCF27\n0x8334E135\t0xCF28\n0x8334E136\t0xCF29\n0x8334E137\t0xCF2A\n0x8334E138\t0xCF2B\n0x8334E139\t0xCF2C\n0x8334E230\t0xCF2D\n0x8334E231\t0xCF2E\n0x8334E232\t0xCF2F\n0x8334E233\t0xCF30\n0x8334E234\t0xCF31\n0x8334E235\t0xCF32\n0x8334E236\t0xCF33\n0x8334E237\t0xCF34\n0x8334E238\t0xCF35\n0x8334E239\t0xCF36\n0x8334E330\t0xCF37\n0x8334E331\t0xCF38\n0x8334E332\t0xCF39\n0x8334E333\t0xCF3A\n0x8334E334\t0xCF3B\n0x8334E335\t0xCF3C\n0x8334E336\t0xCF3D\n0x8334E337\t0xCF3E\n0x8334E338\t0xCF3F\n0x8334E339\t0xCF40\n0x8334E430\t0xCF41\n0x8334E431\t0xCF42\n0x8334E432\t0xCF43\n0x8334E433\t0xCF44\n0x8334E434\t0xCF45\n0x8334E435\t0xCF46\n0x8334E436\t0xCF47\n0x8334E437\t0xCF48\n0x8334E438\t0xCF49\n0x8334E439\t0xCF4A\n0x8334E530\t0xCF4B\n0x8334E531\t0xCF4C\n0x8334E532\t0xCF4D\n0x8334E533\t0xCF4E\n0x8334E534\t0xCF4F\n0x8334E535\t0xCF50\n0x8334E536\t0xCF51\n0x8334E537\t0xCF52\n0x8334E538\t0xCF53\n0x8334E539\t0xCF54\n0x8334E630\t0xCF55\n0x8334E631\t0xCF56\n0x8334E632\t0xCF57\n0x8334E633\t0xCF58\n0x8334E634\t0xCF59\n0x8334E635\t0xCF5A\n0x8334E636\t0xCF5B\n0x8334E637\t0xCF5C\n0x8334E638\t0xCF5D\n0x8334E639\t0xCF5E\n0x8334E730\t0xCF5F\n0x8334E731\t0xCF60\n0x8334E732\t0xCF61\n0x8334E733\t0xCF62\n0x8334E734\t0xCF63\n0x8334E735\t0xCF64\n0x8334E736\t0xCF65\n0x8334E737\t0xCF66\n0x8334E738\t0xCF67\n0x8334E739\t0xCF68\n0x8334E830\t0xCF69\n0x8334E831\t0xCF6A\n0x8334E832\t0xCF6B\n0x8334E833\t0xCF6C\n0x8334E834\t0xCF6D\n0x8334E835\t0xCF6E\n0x8334E836\t0xCF6F\n0x8334E837\t0xCF70\n0x8334E838\t0xCF71\n0x8334E839\t0xCF72\n0x8334E930\t0xCF73\n0x8334E931\t0xCF74\n0x8334E932\t0xCF75\n0x8334E933\t0xCF76\n0x8334E934\t0xCF77\n0x8334E935\t0xCF78\n0x8334E936\t0xCF79\n0x8334E937\t0xCF7A\n0x8334E938\t0xCF7B\n0x8334E939\t0xCF7C\n0x8334EA30\t0xCF7D\n0x8334EA31\t0xCF7E\n0x8334EA32\t0xCF7F\n0x8334EA33\t0xCF80\n0x8334EA34\t0xCF81\n0x8334EA35\t0xCF82\n0x8334EA36\t0xCF83\n0x8334EA37\t0xCF84\n0x8334EA38\t0xCF85\n0x8334EA39\t0xCF86\n0x8334EB30\t0xCF87\n0x8334EB31\t0xCF88\n0x8334EB32\t0xCF89\n0x8334EB33\t0xCF8A\n0x8334EB34\t0xCF8B\n0x8334EB35\t0xCF8C\n0x8334EB36\t0xCF8D\n0x8334EB37\t0xCF8E\n0x8334EB38\t0xCF8F\n0x8334EB39\t0xCF90\n0x8334EC30\t0xCF91\n0x8334EC31\t0xCF92\n0x8334EC32\t0xCF93\n0x8334EC33\t0xCF94\n0x8334EC34\t0xCF95\n0x8334EC35\t0xCF96\n0x8334EC36\t0xCF97\n0x8334EC37\t0xCF98\n0x8334EC38\t0xCF99\n0x8334EC39\t0xCF9A\n0x8334ED30\t0xCF9B\n0x8334ED31\t0xCF9C\n0x8334ED32\t0xCF9D\n0x8334ED33\t0xCF9E\n0x8334ED34\t0xCF9F\n0x8334ED35\t0xCFA0\n0x8334ED36\t0xCFA1\n0x8334ED37\t0xCFA2\n0x8334ED38\t0xCFA3\n0x8334ED39\t0xCFA4\n0x8334EE30\t0xCFA5\n0x8334EE31\t0xCFA6\n0x8334EE32\t0xCFA7\n0x8334EE33\t0xCFA8\n0x8334EE34\t0xCFA9\n0x8334EE35\t0xCFAA\n0x8334EE36\t0xCFAB\n0x8334EE37\t0xCFAC\n0x8334EE38\t0xCFAD\n0x8334EE39\t0xCFAE\n0x8334EF30\t0xCFAF\n0x8334EF31\t0xCFB0\n0x8334EF32\t0xCFB1\n0x8334EF33\t0xCFB2\n0x8334EF34\t0xCFB3\n0x8334EF35\t0xCFB4\n0x8334EF36\t0xCFB5\n0x8334EF37\t0xCFB6\n0x8334EF38\t0xCFB7\n0x8334EF39\t0xCFB8\n0x8334F030\t0xCFB9\n0x8334F031\t0xCFBA\n0x8334F032\t0xCFBB\n0x8334F033\t0xCFBC\n0x8334F034\t0xCFBD\n0x8334F035\t0xCFBE\n0x8334F036\t0xCFBF\n0x8334F037\t0xCFC0\n0x8334F038\t0xCFC1\n0x8334F039\t0xCFC2\n0x8334F130\t0xCFC3\n0x8334F131\t0xCFC4\n0x8334F132\t0xCFC5\n0x8334F133\t0xCFC6\n0x8334F134\t0xCFC7\n0x8334F135\t0xCFC8\n0x8334F136\t0xCFC9\n0x8334F137\t0xCFCA\n0x8334F138\t0xCFCB\n0x8334F139\t0xCFCC\n0x8334F230\t0xCFCD\n0x8334F231\t0xCFCE\n0x8334F232\t0xCFCF\n0x8334F233\t0xCFD0\n0x8334F234\t0xCFD1\n0x8334F235\t0xCFD2\n0x8334F236\t0xCFD3\n0x8334F237\t0xCFD4\n0x8334F238\t0xCFD5\n0x8334F239\t0xCFD6\n0x8334F330\t0xCFD7\n0x8334F331\t0xCFD8\n0x8334F332\t0xCFD9\n0x8334F333\t0xCFDA\n0x8334F334\t0xCFDB\n0x8334F335\t0xCFDC\n0x8334F336\t0xCFDD\n0x8334F337\t0xCFDE\n0x8334F338\t0xCFDF\n0x8334F339\t0xCFE0\n0x8334F430\t0xCFE1\n0x8334F431\t0xCFE2\n0x8334F432\t0xCFE3\n0x8334F433\t0xCFE4\n0x8334F434\t0xCFE5\n0x8334F435\t0xCFE6\n0x8334F436\t0xCFE7\n0x8334F437\t0xCFE8\n0x8334F438\t0xCFE9\n0x8334F439\t0xCFEA\n0x8334F530\t0xCFEB\n0x8334F531\t0xCFEC\n0x8334F532\t0xCFED\n0x8334F533\t0xCFEE\n0x8334F534\t0xCFEF\n0x8334F535\t0xCFF0\n0x8334F536\t0xCFF1\n0x8334F537\t0xCFF2\n0x8334F538\t0xCFF3\n0x8334F539\t0xCFF4\n0x8334F630\t0xCFF5\n0x8334F631\t0xCFF6\n0x8334F632\t0xCFF7\n0x8334F633\t0xCFF8\n0x8334F634\t0xCFF9\n0x8334F635\t0xCFFA\n0x8334F636\t0xCFFB\n0x8334F637\t0xCFFC\n0x8334F638\t0xCFFD\n0x8334F639\t0xCFFE\n0x8334F730\t0xCFFF\n0x8334F731\t0xD000\n0x8334F732\t0xD001\n0x8334F733\t0xD002\n0x8334F734\t0xD003\n0x8334F735\t0xD004\n0x8334F736\t0xD005\n0x8334F737\t0xD006\n0x8334F738\t0xD007\n0x8334F739\t0xD008\n0x8334F830\t0xD009\n0x8334F831\t0xD00A\n0x8334F832\t0xD00B\n0x8334F833\t0xD00C\n0x8334F834\t0xD00D\n0x8334F835\t0xD00E\n0x8334F836\t0xD00F\n0x8334F837\t0xD010\n0x8334F838\t0xD011\n0x8334F839\t0xD012\n0x8334F930\t0xD013\n0x8334F931\t0xD014\n0x8334F932\t0xD015\n0x8334F933\t0xD016\n0x8334F934\t0xD017\n0x8334F935\t0xD018\n0x8334F936\t0xD019\n0x8334F937\t0xD01A\n0x8334F938\t0xD01B\n0x8334F939\t0xD01C\n0x8334FA30\t0xD01D\n0x8334FA31\t0xD01E\n0x8334FA32\t0xD01F\n0x8334FA33\t0xD020\n0x8334FA34\t0xD021\n0x8334FA35\t0xD022\n0x8334FA36\t0xD023\n0x8334FA37\t0xD024\n0x8334FA38\t0xD025\n0x8334FA39\t0xD026\n0x8334FB30\t0xD027\n0x8334FB31\t0xD028\n0x8334FB32\t0xD029\n0x8334FB33\t0xD02A\n0x8334FB34\t0xD02B\n0x8334FB35\t0xD02C\n0x8334FB36\t0xD02D\n0x8334FB37\t0xD02E\n0x8334FB38\t0xD02F\n0x8334FB39\t0xD030\n0x8334FC30\t0xD031\n0x8334FC31\t0xD032\n0x8334FC32\t0xD033\n0x8334FC33\t0xD034\n0x8334FC34\t0xD035\n0x8334FC35\t0xD036\n0x8334FC36\t0xD037\n0x8334FC37\t0xD038\n0x8334FC38\t0xD039\n0x8334FC39\t0xD03A\n0x8334FD30\t0xD03B\n0x8334FD31\t0xD03C\n0x8334FD32\t0xD03D\n0x8334FD33\t0xD03E\n0x8334FD34\t0xD03F\n0x8334FD35\t0xD040\n0x8334FD36\t0xD041\n0x8334FD37\t0xD042\n0x8334FD38\t0xD043\n0x8334FD39\t0xD044\n0x8334FE30\t0xD045\n0x8334FE31\t0xD046\n0x8334FE32\t0xD047\n0x8334FE33\t0xD048\n0x8334FE34\t0xD049\n0x8334FE35\t0xD04A\n0x8334FE36\t0xD04B\n0x8334FE37\t0xD04C\n0x8334FE38\t0xD04D\n0x8334FE39\t0xD04E\n0x83358130\t0xD04F\n0x83358131\t0xD050\n0x83358132\t0xD051\n0x83358133\t0xD052\n0x83358134\t0xD053\n0x83358135\t0xD054\n0x83358136\t0xD055\n0x83358137\t0xD056\n0x83358138\t0xD057\n0x83358139\t0xD058\n0x83358230\t0xD059\n0x83358231\t0xD05A\n0x83358232\t0xD05B\n0x83358233\t0xD05C\n0x83358234\t0xD05D\n0x83358235\t0xD05E\n0x83358236\t0xD05F\n0x83358237\t0xD060\n0x83358238\t0xD061\n0x83358239\t0xD062\n0x83358330\t0xD063\n0x83358331\t0xD064\n0x83358332\t0xD065\n0x83358333\t0xD066\n0x83358334\t0xD067\n0x83358335\t0xD068\n0x83358336\t0xD069\n0x83358337\t0xD06A\n0x83358338\t0xD06B\n0x83358339\t0xD06C\n0x83358430\t0xD06D\n0x83358431\t0xD06E\n0x83358432\t0xD06F\n0x83358433\t0xD070\n0x83358434\t0xD071\n0x83358435\t0xD072\n0x83358436\t0xD073\n0x83358437\t0xD074\n0x83358438\t0xD075\n0x83358439\t0xD076\n0x83358530\t0xD077\n0x83358531\t0xD078\n0x83358532\t0xD079\n0x83358533\t0xD07A\n0x83358534\t0xD07B\n0x83358535\t0xD07C\n0x83358536\t0xD07D\n0x83358537\t0xD07E\n0x83358538\t0xD07F\n0x83358539\t0xD080\n0x83358630\t0xD081\n0x83358631\t0xD082\n0x83358632\t0xD083\n0x83358633\t0xD084\n0x83358634\t0xD085\n0x83358635\t0xD086\n0x83358636\t0xD087\n0x83358637\t0xD088\n0x83358638\t0xD089\n0x83358639\t0xD08A\n0x83358730\t0xD08B\n0x83358731\t0xD08C\n0x83358732\t0xD08D\n0x83358733\t0xD08E\n0x83358734\t0xD08F\n0x83358735\t0xD090\n0x83358736\t0xD091\n0x83358737\t0xD092\n0x83358738\t0xD093\n0x83358739\t0xD094\n0x83358830\t0xD095\n0x83358831\t0xD096\n0x83358832\t0xD097\n0x83358833\t0xD098\n0x83358834\t0xD099\n0x83358835\t0xD09A\n0x83358836\t0xD09B\n0x83358837\t0xD09C\n0x83358838\t0xD09D\n0x83358839\t0xD09E\n0x83358930\t0xD09F\n0x83358931\t0xD0A0\n0x83358932\t0xD0A1\n0x83358933\t0xD0A2\n0x83358934\t0xD0A3\n0x83358935\t0xD0A4\n0x83358936\t0xD0A5\n0x83358937\t0xD0A6\n0x83358938\t0xD0A7\n0x83358939\t0xD0A8\n0x83358A30\t0xD0A9\n0x83358A31\t0xD0AA\n0x83358A32\t0xD0AB\n0x83358A33\t0xD0AC\n0x83358A34\t0xD0AD\n0x83358A35\t0xD0AE\n0x83358A36\t0xD0AF\n0x83358A37\t0xD0B0\n0x83358A38\t0xD0B1\n0x83358A39\t0xD0B2\n0x83358B30\t0xD0B3\n0x83358B31\t0xD0B4\n0x83358B32\t0xD0B5\n0x83358B33\t0xD0B6\n0x83358B34\t0xD0B7\n0x83358B35\t0xD0B8\n0x83358B36\t0xD0B9\n0x83358B37\t0xD0BA\n0x83358B38\t0xD0BB\n0x83358B39\t0xD0BC\n0x83358C30\t0xD0BD\n0x83358C31\t0xD0BE\n0x83358C32\t0xD0BF\n0x83358C33\t0xD0C0\n0x83358C34\t0xD0C1\n0x83358C35\t0xD0C2\n0x83358C36\t0xD0C3\n0x83358C37\t0xD0C4\n0x83358C38\t0xD0C5\n0x83358C39\t0xD0C6\n0x83358D30\t0xD0C7\n0x83358D31\t0xD0C8\n0x83358D32\t0xD0C9\n0x83358D33\t0xD0CA\n0x83358D34\t0xD0CB\n0x83358D35\t0xD0CC\n0x83358D36\t0xD0CD\n0x83358D37\t0xD0CE\n0x83358D38\t0xD0CF\n0x83358D39\t0xD0D0\n0x83358E30\t0xD0D1\n0x83358E31\t0xD0D2\n0x83358E32\t0xD0D3\n0x83358E33\t0xD0D4\n0x83358E34\t0xD0D5\n0x83358E35\t0xD0D6\n0x83358E36\t0xD0D7\n0x83358E37\t0xD0D8\n0x83358E38\t0xD0D9\n0x83358E39\t0xD0DA\n0x83358F30\t0xD0DB\n0x83358F31\t0xD0DC\n0x83358F32\t0xD0DD\n0x83358F33\t0xD0DE\n0x83358F34\t0xD0DF\n0x83358F35\t0xD0E0\n0x83358F36\t0xD0E1\n0x83358F37\t0xD0E2\n0x83358F38\t0xD0E3\n0x83358F39\t0xD0E4\n0x83359030\t0xD0E5\n0x83359031\t0xD0E6\n0x83359032\t0xD0E7\n0x83359033\t0xD0E8\n0x83359034\t0xD0E9\n0x83359035\t0xD0EA\n0x83359036\t0xD0EB\n0x83359037\t0xD0EC\n0x83359038\t0xD0ED\n0x83359039\t0xD0EE\n0x83359130\t0xD0EF\n0x83359131\t0xD0F0\n0x83359132\t0xD0F1\n0x83359133\t0xD0F2\n0x83359134\t0xD0F3\n0x83359135\t0xD0F4\n0x83359136\t0xD0F5\n0x83359137\t0xD0F6\n0x83359138\t0xD0F7\n0x83359139\t0xD0F8\n0x83359230\t0xD0F9\n0x83359231\t0xD0FA\n0x83359232\t0xD0FB\n0x83359233\t0xD0FC\n0x83359234\t0xD0FD\n0x83359235\t0xD0FE\n0x83359236\t0xD0FF\n0x83359237\t0xD100\n0x83359238\t0xD101\n0x83359239\t0xD102\n0x83359330\t0xD103\n0x83359331\t0xD104\n0x83359332\t0xD105\n0x83359333\t0xD106\n0x83359334\t0xD107\n0x83359335\t0xD108\n0x83359336\t0xD109\n0x83359337\t0xD10A\n0x83359338\t0xD10B\n0x83359339\t0xD10C\n0x83359430\t0xD10D\n0x83359431\t0xD10E\n0x83359432\t0xD10F\n0x83359433\t0xD110\n0x83359434\t0xD111\n0x83359435\t0xD112\n0x83359436\t0xD113\n0x83359437\t0xD114\n0x83359438\t0xD115\n0x83359439\t0xD116\n0x83359530\t0xD117\n0x83359531\t0xD118\n0x83359532\t0xD119\n0x83359533\t0xD11A\n0x83359534\t0xD11B\n0x83359535\t0xD11C\n0x83359536\t0xD11D\n0x83359537\t0xD11E\n0x83359538\t0xD11F\n0x83359539\t0xD120\n0x83359630\t0xD121\n0x83359631\t0xD122\n0x83359632\t0xD123\n0x83359633\t0xD124\n0x83359634\t0xD125\n0x83359635\t0xD126\n0x83359636\t0xD127\n0x83359637\t0xD128\n0x83359638\t0xD129\n0x83359639\t0xD12A\n0x83359730\t0xD12B\n0x83359731\t0xD12C\n0x83359732\t0xD12D\n0x83359733\t0xD12E\n0x83359734\t0xD12F\n0x83359735\t0xD130\n0x83359736\t0xD131\n0x83359737\t0xD132\n0x83359738\t0xD133\n0x83359739\t0xD134\n0x83359830\t0xD135\n0x83359831\t0xD136\n0x83359832\t0xD137\n0x83359833\t0xD138\n0x83359834\t0xD139\n0x83359835\t0xD13A\n0x83359836\t0xD13B\n0x83359837\t0xD13C\n0x83359838\t0xD13D\n0x83359839\t0xD13E\n0x83359930\t0xD13F\n0x83359931\t0xD140\n0x83359932\t0xD141\n0x83359933\t0xD142\n0x83359934\t0xD143\n0x83359935\t0xD144\n0x83359936\t0xD145\n0x83359937\t0xD146\n0x83359938\t0xD147\n0x83359939\t0xD148\n0x83359A30\t0xD149\n0x83359A31\t0xD14A\n0x83359A32\t0xD14B\n0x83359A33\t0xD14C\n0x83359A34\t0xD14D\n0x83359A35\t0xD14E\n0x83359A36\t0xD14F\n0x83359A37\t0xD150\n0x83359A38\t0xD151\n0x83359A39\t0xD152\n0x83359B30\t0xD153\n0x83359B31\t0xD154\n0x83359B32\t0xD155\n0x83359B33\t0xD156\n0x83359B34\t0xD157\n0x83359B35\t0xD158\n0x83359B36\t0xD159\n0x83359B37\t0xD15A\n0x83359B38\t0xD15B\n0x83359B39\t0xD15C\n0x83359C30\t0xD15D\n0x83359C31\t0xD15E\n0x83359C32\t0xD15F\n0x83359C33\t0xD160\n0x83359C34\t0xD161\n0x83359C35\t0xD162\n0x83359C36\t0xD163\n0x83359C37\t0xD164\n0x83359C38\t0xD165\n0x83359C39\t0xD166\n0x83359D30\t0xD167\n0x83359D31\t0xD168\n0x83359D32\t0xD169\n0x83359D33\t0xD16A\n0x83359D34\t0xD16B\n0x83359D35\t0xD16C\n0x83359D36\t0xD16D\n0x83359D37\t0xD16E\n0x83359D38\t0xD16F\n0x83359D39\t0xD170\n0x83359E30\t0xD171\n0x83359E31\t0xD172\n0x83359E32\t0xD173\n0x83359E33\t0xD174\n0x83359E34\t0xD175\n0x83359E35\t0xD176\n0x83359E36\t0xD177\n0x83359E37\t0xD178\n0x83359E38\t0xD179\n0x83359E39\t0xD17A\n0x83359F30\t0xD17B\n0x83359F31\t0xD17C\n0x83359F32\t0xD17D\n0x83359F33\t0xD17E\n0x83359F34\t0xD17F\n0x83359F35\t0xD180\n0x83359F36\t0xD181\n0x83359F37\t0xD182\n0x83359F38\t0xD183\n0x83359F39\t0xD184\n0x8335A030\t0xD185\n0x8335A031\t0xD186\n0x8335A032\t0xD187\n0x8335A033\t0xD188\n0x8335A034\t0xD189\n0x8335A035\t0xD18A\n0x8335A036\t0xD18B\n0x8335A037\t0xD18C\n0x8335A038\t0xD18D\n0x8335A039\t0xD18E\n0x8335A130\t0xD18F\n0x8335A131\t0xD190\n0x8335A132\t0xD191\n0x8335A133\t0xD192\n0x8335A134\t0xD193\n0x8335A135\t0xD194\n0x8335A136\t0xD195\n0x8335A137\t0xD196\n0x8335A138\t0xD197\n0x8335A139\t0xD198\n0x8335A230\t0xD199\n0x8335A231\t0xD19A\n0x8335A232\t0xD19B\n0x8335A233\t0xD19C\n0x8335A234\t0xD19D\n0x8335A235\t0xD19E\n0x8335A236\t0xD19F\n0x8335A237\t0xD1A0\n0x8335A238\t0xD1A1\n0x8335A239\t0xD1A2\n0x8335A330\t0xD1A3\n0x8335A331\t0xD1A4\n0x8335A332\t0xD1A5\n0x8335A333\t0xD1A6\n0x8335A334\t0xD1A7\n0x8335A335\t0xD1A8\n0x8335A336\t0xD1A9\n0x8335A337\t0xD1AA\n0x8335A338\t0xD1AB\n0x8335A339\t0xD1AC\n0x8335A430\t0xD1AD\n0x8335A431\t0xD1AE\n0x8335A432\t0xD1AF\n0x8335A433\t0xD1B0\n0x8335A434\t0xD1B1\n0x8335A435\t0xD1B2\n0x8335A436\t0xD1B3\n0x8335A437\t0xD1B4\n0x8335A438\t0xD1B5\n0x8335A439\t0xD1B6\n0x8335A530\t0xD1B7\n0x8335A531\t0xD1B8\n0x8335A532\t0xD1B9\n0x8335A533\t0xD1BA\n0x8335A534\t0xD1BB\n0x8335A535\t0xD1BC\n0x8335A536\t0xD1BD\n0x8335A537\t0xD1BE\n0x8335A538\t0xD1BF\n0x8335A539\t0xD1C0\n0x8335A630\t0xD1C1\n0x8335A631\t0xD1C2\n0x8335A632\t0xD1C3\n0x8335A633\t0xD1C4\n0x8335A634\t0xD1C5\n0x8335A635\t0xD1C6\n0x8335A636\t0xD1C7\n0x8335A637\t0xD1C8\n0x8335A638\t0xD1C9\n0x8335A639\t0xD1CA\n0x8335A730\t0xD1CB\n0x8335A731\t0xD1CC\n0x8335A732\t0xD1CD\n0x8335A733\t0xD1CE\n0x8335A734\t0xD1CF\n0x8335A735\t0xD1D0\n0x8335A736\t0xD1D1\n0x8335A737\t0xD1D2\n0x8335A738\t0xD1D3\n0x8335A739\t0xD1D4\n0x8335A830\t0xD1D5\n0x8335A831\t0xD1D6\n0x8335A832\t0xD1D7\n0x8335A833\t0xD1D8\n0x8335A834\t0xD1D9\n0x8335A835\t0xD1DA\n0x8335A836\t0xD1DB\n0x8335A837\t0xD1DC\n0x8335A838\t0xD1DD\n0x8335A839\t0xD1DE\n0x8335A930\t0xD1DF\n0x8335A931\t0xD1E0\n0x8335A932\t0xD1E1\n0x8335A933\t0xD1E2\n0x8335A934\t0xD1E3\n0x8335A935\t0xD1E4\n0x8335A936\t0xD1E5\n0x8335A937\t0xD1E6\n0x8335A938\t0xD1E7\n0x8335A939\t0xD1E8\n0x8335AA30\t0xD1E9\n0x8335AA31\t0xD1EA\n0x8335AA32\t0xD1EB\n0x8335AA33\t0xD1EC\n0x8335AA34\t0xD1ED\n0x8335AA35\t0xD1EE\n0x8335AA36\t0xD1EF\n0x8335AA37\t0xD1F0\n0x8335AA38\t0xD1F1\n0x8335AA39\t0xD1F2\n0x8335AB30\t0xD1F3\n0x8335AB31\t0xD1F4\n0x8335AB32\t0xD1F5\n0x8335AB33\t0xD1F6\n0x8335AB34\t0xD1F7\n0x8335AB35\t0xD1F8\n0x8335AB36\t0xD1F9\n0x8335AB37\t0xD1FA\n0x8335AB38\t0xD1FB\n0x8335AB39\t0xD1FC\n0x8335AC30\t0xD1FD\n0x8335AC31\t0xD1FE\n0x8335AC32\t0xD1FF\n0x8335AC33\t0xD200\n0x8335AC34\t0xD201\n0x8335AC35\t0xD202\n0x8335AC36\t0xD203\n0x8335AC37\t0xD204\n0x8335AC38\t0xD205\n0x8335AC39\t0xD206\n0x8335AD30\t0xD207\n0x8335AD31\t0xD208\n0x8335AD32\t0xD209\n0x8335AD33\t0xD20A\n0x8335AD34\t0xD20B\n0x8335AD35\t0xD20C\n0x8335AD36\t0xD20D\n0x8335AD37\t0xD20E\n0x8335AD38\t0xD20F\n0x8335AD39\t0xD210\n0x8335AE30\t0xD211\n0x8335AE31\t0xD212\n0x8335AE32\t0xD213\n0x8335AE33\t0xD214\n0x8335AE34\t0xD215\n0x8335AE35\t0xD216\n0x8335AE36\t0xD217\n0x8335AE37\t0xD218\n0x8335AE38\t0xD219\n0x8335AE39\t0xD21A\n0x8335AF30\t0xD21B\n0x8335AF31\t0xD21C\n0x8335AF32\t0xD21D\n0x8335AF33\t0xD21E\n0x8335AF34\t0xD21F\n0x8335AF35\t0xD220\n0x8335AF36\t0xD221\n0x8335AF37\t0xD222\n0x8335AF38\t0xD223\n0x8335AF39\t0xD224\n0x8335B030\t0xD225\n0x8335B031\t0xD226\n0x8335B032\t0xD227\n0x8335B033\t0xD228\n0x8335B034\t0xD229\n0x8335B035\t0xD22A\n0x8335B036\t0xD22B\n0x8335B037\t0xD22C\n0x8335B038\t0xD22D\n0x8335B039\t0xD22E\n0x8335B130\t0xD22F\n0x8335B131\t0xD230\n0x8335B132\t0xD231\n0x8335B133\t0xD232\n0x8335B134\t0xD233\n0x8335B135\t0xD234\n0x8335B136\t0xD235\n0x8335B137\t0xD236\n0x8335B138\t0xD237\n0x8335B139\t0xD238\n0x8335B230\t0xD239\n0x8335B231\t0xD23A\n0x8335B232\t0xD23B\n0x8335B233\t0xD23C\n0x8335B234\t0xD23D\n0x8335B235\t0xD23E\n0x8335B236\t0xD23F\n0x8335B237\t0xD240\n0x8335B238\t0xD241\n0x8335B239\t0xD242\n0x8335B330\t0xD243\n0x8335B331\t0xD244\n0x8335B332\t0xD245\n0x8335B333\t0xD246\n0x8335B334\t0xD247\n0x8335B335\t0xD248\n0x8335B336\t0xD249\n0x8335B337\t0xD24A\n0x8335B338\t0xD24B\n0x8335B339\t0xD24C\n0x8335B430\t0xD24D\n0x8335B431\t0xD24E\n0x8335B432\t0xD24F\n0x8335B433\t0xD250\n0x8335B434\t0xD251\n0x8335B435\t0xD252\n0x8335B436\t0xD253\n0x8335B437\t0xD254\n0x8335B438\t0xD255\n0x8335B439\t0xD256\n0x8335B530\t0xD257\n0x8335B531\t0xD258\n0x8335B532\t0xD259\n0x8335B533\t0xD25A\n0x8335B534\t0xD25B\n0x8335B535\t0xD25C\n0x8335B536\t0xD25D\n0x8335B537\t0xD25E\n0x8335B538\t0xD25F\n0x8335B539\t0xD260\n0x8335B630\t0xD261\n0x8335B631\t0xD262\n0x8335B632\t0xD263\n0x8335B633\t0xD264\n0x8335B634\t0xD265\n0x8335B635\t0xD266\n0x8335B636\t0xD267\n0x8335B637\t0xD268\n0x8335B638\t0xD269\n0x8335B639\t0xD26A\n0x8335B730\t0xD26B\n0x8335B731\t0xD26C\n0x8335B732\t0xD26D\n0x8335B733\t0xD26E\n0x8335B734\t0xD26F\n0x8335B735\t0xD270\n0x8335B736\t0xD271\n0x8335B737\t0xD272\n0x8335B738\t0xD273\n0x8335B739\t0xD274\n0x8335B830\t0xD275\n0x8335B831\t0xD276\n0x8335B832\t0xD277\n0x8335B833\t0xD278\n0x8335B834\t0xD279\n0x8335B835\t0xD27A\n0x8335B836\t0xD27B\n0x8335B837\t0xD27C\n0x8335B838\t0xD27D\n0x8335B839\t0xD27E\n0x8335B930\t0xD27F\n0x8335B931\t0xD280\n0x8335B932\t0xD281\n0x8335B933\t0xD282\n0x8335B934\t0xD283\n0x8335B935\t0xD284\n0x8335B936\t0xD285\n0x8335B937\t0xD286\n0x8335B938\t0xD287\n0x8335B939\t0xD288\n0x8335BA30\t0xD289\n0x8335BA31\t0xD28A\n0x8335BA32\t0xD28B\n0x8335BA33\t0xD28C\n0x8335BA34\t0xD28D\n0x8335BA35\t0xD28E\n0x8335BA36\t0xD28F\n0x8335BA37\t0xD290\n0x8335BA38\t0xD291\n0x8335BA39\t0xD292\n0x8335BB30\t0xD293\n0x8335BB31\t0xD294\n0x8335BB32\t0xD295\n0x8335BB33\t0xD296\n0x8335BB34\t0xD297\n0x8335BB35\t0xD298\n0x8335BB36\t0xD299\n0x8335BB37\t0xD29A\n0x8335BB38\t0xD29B\n0x8335BB39\t0xD29C\n0x8335BC30\t0xD29D\n0x8335BC31\t0xD29E\n0x8335BC32\t0xD29F\n0x8335BC33\t0xD2A0\n0x8335BC34\t0xD2A1\n0x8335BC35\t0xD2A2\n0x8335BC36\t0xD2A3\n0x8335BC37\t0xD2A4\n0x8335BC38\t0xD2A5\n0x8335BC39\t0xD2A6\n0x8335BD30\t0xD2A7\n0x8335BD31\t0xD2A8\n0x8335BD32\t0xD2A9\n0x8335BD33\t0xD2AA\n0x8335BD34\t0xD2AB\n0x8335BD35\t0xD2AC\n0x8335BD36\t0xD2AD\n0x8335BD37\t0xD2AE\n0x8335BD38\t0xD2AF\n0x8335BD39\t0xD2B0\n0x8335BE30\t0xD2B1\n0x8335BE31\t0xD2B2\n0x8335BE32\t0xD2B3\n0x8335BE33\t0xD2B4\n0x8335BE34\t0xD2B5\n0x8335BE35\t0xD2B6\n0x8335BE36\t0xD2B7\n0x8335BE37\t0xD2B8\n0x8335BE38\t0xD2B9\n0x8335BE39\t0xD2BA\n0x8335BF30\t0xD2BB\n0x8335BF31\t0xD2BC\n0x8335BF32\t0xD2BD\n0x8335BF33\t0xD2BE\n0x8335BF34\t0xD2BF\n0x8335BF35\t0xD2C0\n0x8335BF36\t0xD2C1\n0x8335BF37\t0xD2C2\n0x8335BF38\t0xD2C3\n0x8335BF39\t0xD2C4\n0x8335C030\t0xD2C5\n0x8335C031\t0xD2C6\n0x8335C032\t0xD2C7\n0x8335C033\t0xD2C8\n0x8335C034\t0xD2C9\n0x8335C035\t0xD2CA\n0x8335C036\t0xD2CB\n0x8335C037\t0xD2CC\n0x8335C038\t0xD2CD\n0x8335C039\t0xD2CE\n0x8335C130\t0xD2CF\n0x8335C131\t0xD2D0\n0x8335C132\t0xD2D1\n0x8335C133\t0xD2D2\n0x8335C134\t0xD2D3\n0x8335C135\t0xD2D4\n0x8335C136\t0xD2D5\n0x8335C137\t0xD2D6\n0x8335C138\t0xD2D7\n0x8335C139\t0xD2D8\n0x8335C230\t0xD2D9\n0x8335C231\t0xD2DA\n0x8335C232\t0xD2DB\n0x8335C233\t0xD2DC\n0x8335C234\t0xD2DD\n0x8335C235\t0xD2DE\n0x8335C236\t0xD2DF\n0x8335C237\t0xD2E0\n0x8335C238\t0xD2E1\n0x8335C239\t0xD2E2\n0x8335C330\t0xD2E3\n0x8335C331\t0xD2E4\n0x8335C332\t0xD2E5\n0x8335C333\t0xD2E6\n0x8335C334\t0xD2E7\n0x8335C335\t0xD2E8\n0x8335C336\t0xD2E9\n0x8335C337\t0xD2EA\n0x8335C338\t0xD2EB\n0x8335C339\t0xD2EC\n0x8335C430\t0xD2ED\n0x8335C431\t0xD2EE\n0x8335C432\t0xD2EF\n0x8335C433\t0xD2F0\n0x8335C434\t0xD2F1\n0x8335C435\t0xD2F2\n0x8335C436\t0xD2F3\n0x8335C437\t0xD2F4\n0x8335C438\t0xD2F5\n0x8335C439\t0xD2F6\n0x8335C530\t0xD2F7\n0x8335C531\t0xD2F8\n0x8335C532\t0xD2F9\n0x8335C533\t0xD2FA\n0x8335C534\t0xD2FB\n0x8335C535\t0xD2FC\n0x8335C536\t0xD2FD\n0x8335C537\t0xD2FE\n0x8335C538\t0xD2FF\n0x8335C539\t0xD300\n0x8335C630\t0xD301\n0x8335C631\t0xD302\n0x8335C632\t0xD303\n0x8335C633\t0xD304\n0x8335C634\t0xD305\n0x8335C635\t0xD306\n0x8335C636\t0xD307\n0x8335C637\t0xD308\n0x8335C638\t0xD309\n0x8335C639\t0xD30A\n0x8335C730\t0xD30B\n0x8335C731\t0xD30C\n0x8335C732\t0xD30D\n0x8335C733\t0xD30E\n0x8335C734\t0xD30F\n0x8335C735\t0xD310\n0x8335C736\t0xD311\n0x8335C737\t0xD312\n0x8335C738\t0xD313\n0x8335C739\t0xD314\n0x8335C830\t0xD315\n0x8335C831\t0xD316\n0x8335C832\t0xD317\n0x8335C833\t0xD318\n0x8335C834\t0xD319\n0x8335C835\t0xD31A\n0x8335C836\t0xD31B\n0x8335C837\t0xD31C\n0x8335C838\t0xD31D\n0x8335C839\t0xD31E\n0x8335C930\t0xD31F\n0x8335C931\t0xD320\n0x8335C932\t0xD321\n0x8335C933\t0xD322\n0x8335C934\t0xD323\n0x8335C935\t0xD324\n0x8335C936\t0xD325\n0x8335C937\t0xD326\n0x8335C938\t0xD327\n0x8335C939\t0xD328\n0x8335CA30\t0xD329\n0x8335CA31\t0xD32A\n0x8335CA32\t0xD32B\n0x8335CA33\t0xD32C\n0x8335CA34\t0xD32D\n0x8335CA35\t0xD32E\n0x8335CA36\t0xD32F\n0x8335CA37\t0xD330\n0x8335CA38\t0xD331\n0x8335CA39\t0xD332\n0x8335CB30\t0xD333\n0x8335CB31\t0xD334\n0x8335CB32\t0xD335\n0x8335CB33\t0xD336\n0x8335CB34\t0xD337\n0x8335CB35\t0xD338\n0x8335CB36\t0xD339\n0x8335CB37\t0xD33A\n0x8335CB38\t0xD33B\n0x8335CB39\t0xD33C\n0x8335CC30\t0xD33D\n0x8335CC31\t0xD33E\n0x8335CC32\t0xD33F\n0x8335CC33\t0xD340\n0x8335CC34\t0xD341\n0x8335CC35\t0xD342\n0x8335CC36\t0xD343\n0x8335CC37\t0xD344\n0x8335CC38\t0xD345\n0x8335CC39\t0xD346\n0x8335CD30\t0xD347\n0x8335CD31\t0xD348\n0x8335CD32\t0xD349\n0x8335CD33\t0xD34A\n0x8335CD34\t0xD34B\n0x8335CD35\t0xD34C\n0x8335CD36\t0xD34D\n0x8335CD37\t0xD34E\n0x8335CD38\t0xD34F\n0x8335CD39\t0xD350\n0x8335CE30\t0xD351\n0x8335CE31\t0xD352\n0x8335CE32\t0xD353\n0x8335CE33\t0xD354\n0x8335CE34\t0xD355\n0x8335CE35\t0xD356\n0x8335CE36\t0xD357\n0x8335CE37\t0xD358\n0x8335CE38\t0xD359\n0x8335CE39\t0xD35A\n0x8335CF30\t0xD35B\n0x8335CF31\t0xD35C\n0x8335CF32\t0xD35D\n0x8335CF33\t0xD35E\n0x8335CF34\t0xD35F\n0x8335CF35\t0xD360\n0x8335CF36\t0xD361\n0x8335CF37\t0xD362\n0x8335CF38\t0xD363\n0x8335CF39\t0xD364\n0x8335D030\t0xD365\n0x8335D031\t0xD366\n0x8335D032\t0xD367\n0x8335D033\t0xD368\n0x8335D034\t0xD369\n0x8335D035\t0xD36A\n0x8335D036\t0xD36B\n0x8335D037\t0xD36C\n0x8335D038\t0xD36D\n0x8335D039\t0xD36E\n0x8335D130\t0xD36F\n0x8335D131\t0xD370\n0x8335D132\t0xD371\n0x8335D133\t0xD372\n0x8335D134\t0xD373\n0x8335D135\t0xD374\n0x8335D136\t0xD375\n0x8335D137\t0xD376\n0x8335D138\t0xD377\n0x8335D139\t0xD378\n0x8335D230\t0xD379\n0x8335D231\t0xD37A\n0x8335D232\t0xD37B\n0x8335D233\t0xD37C\n0x8335D234\t0xD37D\n0x8335D235\t0xD37E\n0x8335D236\t0xD37F\n0x8335D237\t0xD380\n0x8335D238\t0xD381\n0x8335D239\t0xD382\n0x8335D330\t0xD383\n0x8335D331\t0xD384\n0x8335D332\t0xD385\n0x8335D333\t0xD386\n0x8335D334\t0xD387\n0x8335D335\t0xD388\n0x8335D336\t0xD389\n0x8335D337\t0xD38A\n0x8335D338\t0xD38B\n0x8335D339\t0xD38C\n0x8335D430\t0xD38D\n0x8335D431\t0xD38E\n0x8335D432\t0xD38F\n0x8335D433\t0xD390\n0x8335D434\t0xD391\n0x8335D435\t0xD392\n0x8335D436\t0xD393\n0x8335D437\t0xD394\n0x8335D438\t0xD395\n0x8335D439\t0xD396\n0x8335D530\t0xD397\n0x8335D531\t0xD398\n0x8335D532\t0xD399\n0x8335D533\t0xD39A\n0x8335D534\t0xD39B\n0x8335D535\t0xD39C\n0x8335D536\t0xD39D\n0x8335D537\t0xD39E\n0x8335D538\t0xD39F\n0x8335D539\t0xD3A0\n0x8335D630\t0xD3A1\n0x8335D631\t0xD3A2\n0x8335D632\t0xD3A3\n0x8335D633\t0xD3A4\n0x8335D634\t0xD3A5\n0x8335D635\t0xD3A6\n0x8335D636\t0xD3A7\n0x8335D637\t0xD3A8\n0x8335D638\t0xD3A9\n0x8335D639\t0xD3AA\n0x8335D730\t0xD3AB\n0x8335D731\t0xD3AC\n0x8335D732\t0xD3AD\n0x8335D733\t0xD3AE\n0x8335D734\t0xD3AF\n0x8335D735\t0xD3B0\n0x8335D736\t0xD3B1\n0x8335D737\t0xD3B2\n0x8335D738\t0xD3B3\n0x8335D739\t0xD3B4\n0x8335D830\t0xD3B5\n0x8335D831\t0xD3B6\n0x8335D832\t0xD3B7\n0x8335D833\t0xD3B8\n0x8335D834\t0xD3B9\n0x8335D835\t0xD3BA\n0x8335D836\t0xD3BB\n0x8335D837\t0xD3BC\n0x8335D838\t0xD3BD\n0x8335D839\t0xD3BE\n0x8335D930\t0xD3BF\n0x8335D931\t0xD3C0\n0x8335D932\t0xD3C1\n0x8335D933\t0xD3C2\n0x8335D934\t0xD3C3\n0x8335D935\t0xD3C4\n0x8335D936\t0xD3C5\n0x8335D937\t0xD3C6\n0x8335D938\t0xD3C7\n0x8335D939\t0xD3C8\n0x8335DA30\t0xD3C9\n0x8335DA31\t0xD3CA\n0x8335DA32\t0xD3CB\n0x8335DA33\t0xD3CC\n0x8335DA34\t0xD3CD\n0x8335DA35\t0xD3CE\n0x8335DA36\t0xD3CF\n0x8335DA37\t0xD3D0\n0x8335DA38\t0xD3D1\n0x8335DA39\t0xD3D2\n0x8335DB30\t0xD3D3\n0x8335DB31\t0xD3D4\n0x8335DB32\t0xD3D5\n0x8335DB33\t0xD3D6\n0x8335DB34\t0xD3D7\n0x8335DB35\t0xD3D8\n0x8335DB36\t0xD3D9\n0x8335DB37\t0xD3DA\n0x8335DB38\t0xD3DB\n0x8335DB39\t0xD3DC\n0x8335DC30\t0xD3DD\n0x8335DC31\t0xD3DE\n0x8335DC32\t0xD3DF\n0x8335DC33\t0xD3E0\n0x8335DC34\t0xD3E1\n0x8335DC35\t0xD3E2\n0x8335DC36\t0xD3E3\n0x8335DC37\t0xD3E4\n0x8335DC38\t0xD3E5\n0x8335DC39\t0xD3E6\n0x8335DD30\t0xD3E7\n0x8335DD31\t0xD3E8\n0x8335DD32\t0xD3E9\n0x8335DD33\t0xD3EA\n0x8335DD34\t0xD3EB\n0x8335DD35\t0xD3EC\n0x8335DD36\t0xD3ED\n0x8335DD37\t0xD3EE\n0x8335DD38\t0xD3EF\n0x8335DD39\t0xD3F0\n0x8335DE30\t0xD3F1\n0x8335DE31\t0xD3F2\n0x8335DE32\t0xD3F3\n0x8335DE33\t0xD3F4\n0x8335DE34\t0xD3F5\n0x8335DE35\t0xD3F6\n0x8335DE36\t0xD3F7\n0x8335DE37\t0xD3F8\n0x8335DE38\t0xD3F9\n0x8335DE39\t0xD3FA\n0x8335DF30\t0xD3FB\n0x8335DF31\t0xD3FC\n0x8335DF32\t0xD3FD\n0x8335DF33\t0xD3FE\n0x8335DF34\t0xD3FF\n0x8335DF35\t0xD400\n0x8335DF36\t0xD401\n0x8335DF37\t0xD402\n0x8335DF38\t0xD403\n0x8335DF39\t0xD404\n0x8335E030\t0xD405\n0x8335E031\t0xD406\n0x8335E032\t0xD407\n0x8335E033\t0xD408\n0x8335E034\t0xD409\n0x8335E035\t0xD40A\n0x8335E036\t0xD40B\n0x8335E037\t0xD40C\n0x8335E038\t0xD40D\n0x8335E039\t0xD40E\n0x8335E130\t0xD40F\n0x8335E131\t0xD410\n0x8335E132\t0xD411\n0x8335E133\t0xD412\n0x8335E134\t0xD413\n0x8335E135\t0xD414\n0x8335E136\t0xD415\n0x8335E137\t0xD416\n0x8335E138\t0xD417\n0x8335E139\t0xD418\n0x8335E230\t0xD419\n0x8335E231\t0xD41A\n0x8335E232\t0xD41B\n0x8335E233\t0xD41C\n0x8335E234\t0xD41D\n0x8335E235\t0xD41E\n0x8335E236\t0xD41F\n0x8335E237\t0xD420\n0x8335E238\t0xD421\n0x8335E239\t0xD422\n0x8335E330\t0xD423\n0x8335E331\t0xD424\n0x8335E332\t0xD425\n0x8335E333\t0xD426\n0x8335E334\t0xD427\n0x8335E335\t0xD428\n0x8335E336\t0xD429\n0x8335E337\t0xD42A\n0x8335E338\t0xD42B\n0x8335E339\t0xD42C\n0x8335E430\t0xD42D\n0x8335E431\t0xD42E\n0x8335E432\t0xD42F\n0x8335E433\t0xD430\n0x8335E434\t0xD431\n0x8335E435\t0xD432\n0x8335E436\t0xD433\n0x8335E437\t0xD434\n0x8335E438\t0xD435\n0x8335E439\t0xD436\n0x8335E530\t0xD437\n0x8335E531\t0xD438\n0x8335E532\t0xD439\n0x8335E533\t0xD43A\n0x8335E534\t0xD43B\n0x8335E535\t0xD43C\n0x8335E536\t0xD43D\n0x8335E537\t0xD43E\n0x8335E538\t0xD43F\n0x8335E539\t0xD440\n0x8335E630\t0xD441\n0x8335E631\t0xD442\n0x8335E632\t0xD443\n0x8335E633\t0xD444\n0x8335E634\t0xD445\n0x8335E635\t0xD446\n0x8335E636\t0xD447\n0x8335E637\t0xD448\n0x8335E638\t0xD449\n0x8335E639\t0xD44A\n0x8335E730\t0xD44B\n0x8335E731\t0xD44C\n0x8335E732\t0xD44D\n0x8335E733\t0xD44E\n0x8335E734\t0xD44F\n0x8335E735\t0xD450\n0x8335E736\t0xD451\n0x8335E737\t0xD452\n0x8335E738\t0xD453\n0x8335E739\t0xD454\n0x8335E830\t0xD455\n0x8335E831\t0xD456\n0x8335E832\t0xD457\n0x8335E833\t0xD458\n0x8335E834\t0xD459\n0x8335E835\t0xD45A\n0x8335E836\t0xD45B\n0x8335E837\t0xD45C\n0x8335E838\t0xD45D\n0x8335E839\t0xD45E\n0x8335E930\t0xD45F\n0x8335E931\t0xD460\n0x8335E932\t0xD461\n0x8335E933\t0xD462\n0x8335E934\t0xD463\n0x8335E935\t0xD464\n0x8335E936\t0xD465\n0x8335E937\t0xD466\n0x8335E938\t0xD467\n0x8335E939\t0xD468\n0x8335EA30\t0xD469\n0x8335EA31\t0xD46A\n0x8335EA32\t0xD46B\n0x8335EA33\t0xD46C\n0x8335EA34\t0xD46D\n0x8335EA35\t0xD46E\n0x8335EA36\t0xD46F\n0x8335EA37\t0xD470\n0x8335EA38\t0xD471\n0x8335EA39\t0xD472\n0x8335EB30\t0xD473\n0x8335EB31\t0xD474\n0x8335EB32\t0xD475\n0x8335EB33\t0xD476\n0x8335EB34\t0xD477\n0x8335EB35\t0xD478\n0x8335EB36\t0xD479\n0x8335EB37\t0xD47A\n0x8335EB38\t0xD47B\n0x8335EB39\t0xD47C\n0x8335EC30\t0xD47D\n0x8335EC31\t0xD47E\n0x8335EC32\t0xD47F\n0x8335EC33\t0xD480\n0x8335EC34\t0xD481\n0x8335EC35\t0xD482\n0x8335EC36\t0xD483\n0x8335EC37\t0xD484\n0x8335EC38\t0xD485\n0x8335EC39\t0xD486\n0x8335ED30\t0xD487\n0x8335ED31\t0xD488\n0x8335ED32\t0xD489\n0x8335ED33\t0xD48A\n0x8335ED34\t0xD48B\n0x8335ED35\t0xD48C\n0x8335ED36\t0xD48D\n0x8335ED37\t0xD48E\n0x8335ED38\t0xD48F\n0x8335ED39\t0xD490\n0x8335EE30\t0xD491\n0x8335EE31\t0xD492\n0x8335EE32\t0xD493\n0x8335EE33\t0xD494\n0x8335EE34\t0xD495\n0x8335EE35\t0xD496\n0x8335EE36\t0xD497\n0x8335EE37\t0xD498\n0x8335EE38\t0xD499\n0x8335EE39\t0xD49A\n0x8335EF30\t0xD49B\n0x8335EF31\t0xD49C\n0x8335EF32\t0xD49D\n0x8335EF33\t0xD49E\n0x8335EF34\t0xD49F\n0x8335EF35\t0xD4A0\n0x8335EF36\t0xD4A1\n0x8335EF37\t0xD4A2\n0x8335EF38\t0xD4A3\n0x8335EF39\t0xD4A4\n0x8335F030\t0xD4A5\n0x8335F031\t0xD4A6\n0x8335F032\t0xD4A7\n0x8335F033\t0xD4A8\n0x8335F034\t0xD4A9\n0x8335F035\t0xD4AA\n0x8335F036\t0xD4AB\n0x8335F037\t0xD4AC\n0x8335F038\t0xD4AD\n0x8335F039\t0xD4AE\n0x8335F130\t0xD4AF\n0x8335F131\t0xD4B0\n0x8335F132\t0xD4B1\n0x8335F133\t0xD4B2\n0x8335F134\t0xD4B3\n0x8335F135\t0xD4B4\n0x8335F136\t0xD4B5\n0x8335F137\t0xD4B6\n0x8335F138\t0xD4B7\n0x8335F139\t0xD4B8\n0x8335F230\t0xD4B9\n0x8335F231\t0xD4BA\n0x8335F232\t0xD4BB\n0x8335F233\t0xD4BC\n0x8335F234\t0xD4BD\n0x8335F235\t0xD4BE\n0x8335F236\t0xD4BF\n0x8335F237\t0xD4C0\n0x8335F238\t0xD4C1\n0x8335F239\t0xD4C2\n0x8335F330\t0xD4C3\n0x8335F331\t0xD4C4\n0x8335F332\t0xD4C5\n0x8335F333\t0xD4C6\n0x8335F334\t0xD4C7\n0x8335F335\t0xD4C8\n0x8335F336\t0xD4C9\n0x8335F337\t0xD4CA\n0x8335F338\t0xD4CB\n0x8335F339\t0xD4CC\n0x8335F430\t0xD4CD\n0x8335F431\t0xD4CE\n0x8335F432\t0xD4CF\n0x8335F433\t0xD4D0\n0x8335F434\t0xD4D1\n0x8335F435\t0xD4D2\n0x8335F436\t0xD4D3\n0x8335F437\t0xD4D4\n0x8335F438\t0xD4D5\n0x8335F439\t0xD4D6\n0x8335F530\t0xD4D7\n0x8335F531\t0xD4D8\n0x8335F532\t0xD4D9\n0x8335F533\t0xD4DA\n0x8335F534\t0xD4DB\n0x8335F535\t0xD4DC\n0x8335F536\t0xD4DD\n0x8335F537\t0xD4DE\n0x8335F538\t0xD4DF\n0x8335F539\t0xD4E0\n0x8335F630\t0xD4E1\n0x8335F631\t0xD4E2\n0x8335F632\t0xD4E3\n0x8335F633\t0xD4E4\n0x8335F634\t0xD4E5\n0x8335F635\t0xD4E6\n0x8335F636\t0xD4E7\n0x8335F637\t0xD4E8\n0x8335F638\t0xD4E9\n0x8335F639\t0xD4EA\n0x8335F730\t0xD4EB\n0x8335F731\t0xD4EC\n0x8335F732\t0xD4ED\n0x8335F733\t0xD4EE\n0x8335F734\t0xD4EF\n0x8335F735\t0xD4F0\n0x8335F736\t0xD4F1\n0x8335F737\t0xD4F2\n0x8335F738\t0xD4F3\n0x8335F739\t0xD4F4\n0x8335F830\t0xD4F5\n0x8335F831\t0xD4F6\n0x8335F832\t0xD4F7\n0x8335F833\t0xD4F8\n0x8335F834\t0xD4F9\n0x8335F835\t0xD4FA\n0x8335F836\t0xD4FB\n0x8335F837\t0xD4FC\n0x8335F838\t0xD4FD\n0x8335F839\t0xD4FE\n0x8335F930\t0xD4FF\n0x8335F931\t0xD500\n0x8335F932\t0xD501\n0x8335F933\t0xD502\n0x8335F934\t0xD503\n0x8335F935\t0xD504\n0x8335F936\t0xD505\n0x8335F937\t0xD506\n0x8335F938\t0xD507\n0x8335F939\t0xD508\n0x8335FA30\t0xD509\n0x8335FA31\t0xD50A\n0x8335FA32\t0xD50B\n0x8335FA33\t0xD50C\n0x8335FA34\t0xD50D\n0x8335FA35\t0xD50E\n0x8335FA36\t0xD50F\n0x8335FA37\t0xD510\n0x8335FA38\t0xD511\n0x8335FA39\t0xD512\n0x8335FB30\t0xD513\n0x8335FB31\t0xD514\n0x8335FB32\t0xD515\n0x8335FB33\t0xD516\n0x8335FB34\t0xD517\n0x8335FB35\t0xD518\n0x8335FB36\t0xD519\n0x8335FB37\t0xD51A\n0x8335FB38\t0xD51B\n0x8335FB39\t0xD51C\n0x8335FC30\t0xD51D\n0x8335FC31\t0xD51E\n0x8335FC32\t0xD51F\n0x8335FC33\t0xD520\n0x8335FC34\t0xD521\n0x8335FC35\t0xD522\n0x8335FC36\t0xD523\n0x8335FC37\t0xD524\n0x8335FC38\t0xD525\n0x8335FC39\t0xD526\n0x8335FD30\t0xD527\n0x8335FD31\t0xD528\n0x8335FD32\t0xD529\n0x8335FD33\t0xD52A\n0x8335FD34\t0xD52B\n0x8335FD35\t0xD52C\n0x8335FD36\t0xD52D\n0x8335FD37\t0xD52E\n0x8335FD38\t0xD52F\n0x8335FD39\t0xD530\n0x8335FE30\t0xD531\n0x8335FE31\t0xD532\n0x8335FE32\t0xD533\n0x8335FE33\t0xD534\n0x8335FE34\t0xD535\n0x8335FE35\t0xD536\n0x8335FE36\t0xD537\n0x8335FE37\t0xD538\n0x8335FE38\t0xD539\n0x8335FE39\t0xD53A\n0x83368130\t0xD53B\n0x83368131\t0xD53C\n0x83368132\t0xD53D\n0x83368133\t0xD53E\n0x83368134\t0xD53F\n0x83368135\t0xD540\n0x83368136\t0xD541\n0x83368137\t0xD542\n0x83368138\t0xD543\n0x83368139\t0xD544\n0x83368230\t0xD545\n0x83368231\t0xD546\n0x83368232\t0xD547\n0x83368233\t0xD548\n0x83368234\t0xD549\n0x83368235\t0xD54A\n0x83368236\t0xD54B\n0x83368237\t0xD54C\n0x83368238\t0xD54D\n0x83368239\t0xD54E\n0x83368330\t0xD54F\n0x83368331\t0xD550\n0x83368332\t0xD551\n0x83368333\t0xD552\n0x83368334\t0xD553\n0x83368335\t0xD554\n0x83368336\t0xD555\n0x83368337\t0xD556\n0x83368338\t0xD557\n0x83368339\t0xD558\n0x83368430\t0xD559\n0x83368431\t0xD55A\n0x83368432\t0xD55B\n0x83368433\t0xD55C\n0x83368434\t0xD55D\n0x83368435\t0xD55E\n0x83368436\t0xD55F\n0x83368437\t0xD560\n0x83368438\t0xD561\n0x83368439\t0xD562\n0x83368530\t0xD563\n0x83368531\t0xD564\n0x83368532\t0xD565\n0x83368533\t0xD566\n0x83368534\t0xD567\n0x83368535\t0xD568\n0x83368536\t0xD569\n0x83368537\t0xD56A\n0x83368538\t0xD56B\n0x83368539\t0xD56C\n0x83368630\t0xD56D\n0x83368631\t0xD56E\n0x83368632\t0xD56F\n0x83368633\t0xD570\n0x83368634\t0xD571\n0x83368635\t0xD572\n0x83368636\t0xD573\n0x83368637\t0xD574\n0x83368638\t0xD575\n0x83368639\t0xD576\n0x83368730\t0xD577\n0x83368731\t0xD578\n0x83368732\t0xD579\n0x83368733\t0xD57A\n0x83368734\t0xD57B\n0x83368735\t0xD57C\n0x83368736\t0xD57D\n0x83368737\t0xD57E\n0x83368738\t0xD57F\n0x83368739\t0xD580\n0x83368830\t0xD581\n0x83368831\t0xD582\n0x83368832\t0xD583\n0x83368833\t0xD584\n0x83368834\t0xD585\n0x83368835\t0xD586\n0x83368836\t0xD587\n0x83368837\t0xD588\n0x83368838\t0xD589\n0x83368839\t0xD58A\n0x83368930\t0xD58B\n0x83368931\t0xD58C\n0x83368932\t0xD58D\n0x83368933\t0xD58E\n0x83368934\t0xD58F\n0x83368935\t0xD590\n0x83368936\t0xD591\n0x83368937\t0xD592\n0x83368938\t0xD593\n0x83368939\t0xD594\n0x83368A30\t0xD595\n0x83368A31\t0xD596\n0x83368A32\t0xD597\n0x83368A33\t0xD598\n0x83368A34\t0xD599\n0x83368A35\t0xD59A\n0x83368A36\t0xD59B\n0x83368A37\t0xD59C\n0x83368A38\t0xD59D\n0x83368A39\t0xD59E\n0x83368B30\t0xD59F\n0x83368B31\t0xD5A0\n0x83368B32\t0xD5A1\n0x83368B33\t0xD5A2\n0x83368B34\t0xD5A3\n0x83368B35\t0xD5A4\n0x83368B36\t0xD5A5\n0x83368B37\t0xD5A6\n0x83368B38\t0xD5A7\n0x83368B39\t0xD5A8\n0x83368C30\t0xD5A9\n0x83368C31\t0xD5AA\n0x83368C32\t0xD5AB\n0x83368C33\t0xD5AC\n0x83368C34\t0xD5AD\n0x83368C35\t0xD5AE\n0x83368C36\t0xD5AF\n0x83368C37\t0xD5B0\n0x83368C38\t0xD5B1\n0x83368C39\t0xD5B2\n0x83368D30\t0xD5B3\n0x83368D31\t0xD5B4\n0x83368D32\t0xD5B5\n0x83368D33\t0xD5B6\n0x83368D34\t0xD5B7\n0x83368D35\t0xD5B8\n0x83368D36\t0xD5B9\n0x83368D37\t0xD5BA\n0x83368D38\t0xD5BB\n0x83368D39\t0xD5BC\n0x83368E30\t0xD5BD\n0x83368E31\t0xD5BE\n0x83368E32\t0xD5BF\n0x83368E33\t0xD5C0\n0x83368E34\t0xD5C1\n0x83368E35\t0xD5C2\n0x83368E36\t0xD5C3\n0x83368E37\t0xD5C4\n0x83368E38\t0xD5C5\n0x83368E39\t0xD5C6\n0x83368F30\t0xD5C7\n0x83368F31\t0xD5C8\n0x83368F32\t0xD5C9\n0x83368F33\t0xD5CA\n0x83368F34\t0xD5CB\n0x83368F35\t0xD5CC\n0x83368F36\t0xD5CD\n0x83368F37\t0xD5CE\n0x83368F38\t0xD5CF\n0x83368F39\t0xD5D0\n0x83369030\t0xD5D1\n0x83369031\t0xD5D2\n0x83369032\t0xD5D3\n0x83369033\t0xD5D4\n0x83369034\t0xD5D5\n0x83369035\t0xD5D6\n0x83369036\t0xD5D7\n0x83369037\t0xD5D8\n0x83369038\t0xD5D9\n0x83369039\t0xD5DA\n0x83369130\t0xD5DB\n0x83369131\t0xD5DC\n0x83369132\t0xD5DD\n0x83369133\t0xD5DE\n0x83369134\t0xD5DF\n0x83369135\t0xD5E0\n0x83369136\t0xD5E1\n0x83369137\t0xD5E2\n0x83369138\t0xD5E3\n0x83369139\t0xD5E4\n0x83369230\t0xD5E5\n0x83369231\t0xD5E6\n0x83369232\t0xD5E7\n0x83369233\t0xD5E8\n0x83369234\t0xD5E9\n0x83369235\t0xD5EA\n0x83369236\t0xD5EB\n0x83369237\t0xD5EC\n0x83369238\t0xD5ED\n0x83369239\t0xD5EE\n0x83369330\t0xD5EF\n0x83369331\t0xD5F0\n0x83369332\t0xD5F1\n0x83369333\t0xD5F2\n0x83369334\t0xD5F3\n0x83369335\t0xD5F4\n0x83369336\t0xD5F5\n0x83369337\t0xD5F6\n0x83369338\t0xD5F7\n0x83369339\t0xD5F8\n0x83369430\t0xD5F9\n0x83369431\t0xD5FA\n0x83369432\t0xD5FB\n0x83369433\t0xD5FC\n0x83369434\t0xD5FD\n0x83369435\t0xD5FE\n0x83369436\t0xD5FF\n0x83369437\t0xD600\n0x83369438\t0xD601\n0x83369439\t0xD602\n0x83369530\t0xD603\n0x83369531\t0xD604\n0x83369532\t0xD605\n0x83369533\t0xD606\n0x83369534\t0xD607\n0x83369535\t0xD608\n0x83369536\t0xD609\n0x83369537\t0xD60A\n0x83369538\t0xD60B\n0x83369539\t0xD60C\n0x83369630\t0xD60D\n0x83369631\t0xD60E\n0x83369632\t0xD60F\n0x83369633\t0xD610\n0x83369634\t0xD611\n0x83369635\t0xD612\n0x83369636\t0xD613\n0x83369637\t0xD614\n0x83369638\t0xD615\n0x83369639\t0xD616\n0x83369730\t0xD617\n0x83369731\t0xD618\n0x83369732\t0xD619\n0x83369733\t0xD61A\n0x83369734\t0xD61B\n0x83369735\t0xD61C\n0x83369736\t0xD61D\n0x83369737\t0xD61E\n0x83369738\t0xD61F\n0x83369739\t0xD620\n0x83369830\t0xD621\n0x83369831\t0xD622\n0x83369832\t0xD623\n0x83369833\t0xD624\n0x83369834\t0xD625\n0x83369835\t0xD626\n0x83369836\t0xD627\n0x83369837\t0xD628\n0x83369838\t0xD629\n0x83369839\t0xD62A\n0x83369930\t0xD62B\n0x83369931\t0xD62C\n0x83369932\t0xD62D\n0x83369933\t0xD62E\n0x83369934\t0xD62F\n0x83369935\t0xD630\n0x83369936\t0xD631\n0x83369937\t0xD632\n0x83369938\t0xD633\n0x83369939\t0xD634\n0x83369A30\t0xD635\n0x83369A31\t0xD636\n0x83369A32\t0xD637\n0x83369A33\t0xD638\n0x83369A34\t0xD639\n0x83369A35\t0xD63A\n0x83369A36\t0xD63B\n0x83369A37\t0xD63C\n0x83369A38\t0xD63D\n0x83369A39\t0xD63E\n0x83369B30\t0xD63F\n0x83369B31\t0xD640\n0x83369B32\t0xD641\n0x83369B33\t0xD642\n0x83369B34\t0xD643\n0x83369B35\t0xD644\n0x83369B36\t0xD645\n0x83369B37\t0xD646\n0x83369B38\t0xD647\n0x83369B39\t0xD648\n0x83369C30\t0xD649\n0x83369C31\t0xD64A\n0x83369C32\t0xD64B\n0x83369C33\t0xD64C\n0x83369C34\t0xD64D\n0x83369C35\t0xD64E\n0x83369C36\t0xD64F\n0x83369C37\t0xD650\n0x83369C38\t0xD651\n0x83369C39\t0xD652\n0x83369D30\t0xD653\n0x83369D31\t0xD654\n0x83369D32\t0xD655\n0x83369D33\t0xD656\n0x83369D34\t0xD657\n0x83369D35\t0xD658\n0x83369D36\t0xD659\n0x83369D37\t0xD65A\n0x83369D38\t0xD65B\n0x83369D39\t0xD65C\n0x83369E30\t0xD65D\n0x83369E31\t0xD65E\n0x83369E32\t0xD65F\n0x83369E33\t0xD660\n0x83369E34\t0xD661\n0x83369E35\t0xD662\n0x83369E36\t0xD663\n0x83369E37\t0xD664\n0x83369E38\t0xD665\n0x83369E39\t0xD666\n0x83369F30\t0xD667\n0x83369F31\t0xD668\n0x83369F32\t0xD669\n0x83369F33\t0xD66A\n0x83369F34\t0xD66B\n0x83369F35\t0xD66C\n0x83369F36\t0xD66D\n0x83369F37\t0xD66E\n0x83369F38\t0xD66F\n0x83369F39\t0xD670\n0x8336A030\t0xD671\n0x8336A031\t0xD672\n0x8336A032\t0xD673\n0x8336A033\t0xD674\n0x8336A034\t0xD675\n0x8336A035\t0xD676\n0x8336A036\t0xD677\n0x8336A037\t0xD678\n0x8336A038\t0xD679\n0x8336A039\t0xD67A\n0x8336A130\t0xD67B\n0x8336A131\t0xD67C\n0x8336A132\t0xD67D\n0x8336A133\t0xD67E\n0x8336A134\t0xD67F\n0x8336A135\t0xD680\n0x8336A136\t0xD681\n0x8336A137\t0xD682\n0x8336A138\t0xD683\n0x8336A139\t0xD684\n0x8336A230\t0xD685\n0x8336A231\t0xD686\n0x8336A232\t0xD687\n0x8336A233\t0xD688\n0x8336A234\t0xD689\n0x8336A235\t0xD68A\n0x8336A236\t0xD68B\n0x8336A237\t0xD68C\n0x8336A238\t0xD68D\n0x8336A239\t0xD68E\n0x8336A330\t0xD68F\n0x8336A331\t0xD690\n0x8336A332\t0xD691\n0x8336A333\t0xD692\n0x8336A334\t0xD693\n0x8336A335\t0xD694\n0x8336A336\t0xD695\n0x8336A337\t0xD696\n0x8336A338\t0xD697\n0x8336A339\t0xD698\n0x8336A430\t0xD699\n0x8336A431\t0xD69A\n0x8336A432\t0xD69B\n0x8336A433\t0xD69C\n0x8336A434\t0xD69D\n0x8336A435\t0xD69E\n0x8336A436\t0xD69F\n0x8336A437\t0xD6A0\n0x8336A438\t0xD6A1\n0x8336A439\t0xD6A2\n0x8336A530\t0xD6A3\n0x8336A531\t0xD6A4\n0x8336A532\t0xD6A5\n0x8336A533\t0xD6A6\n0x8336A534\t0xD6A7\n0x8336A535\t0xD6A8\n0x8336A536\t0xD6A9\n0x8336A537\t0xD6AA\n0x8336A538\t0xD6AB\n0x8336A539\t0xD6AC\n0x8336A630\t0xD6AD\n0x8336A631\t0xD6AE\n0x8336A632\t0xD6AF\n0x8336A633\t0xD6B0\n0x8336A634\t0xD6B1\n0x8336A635\t0xD6B2\n0x8336A636\t0xD6B3\n0x8336A637\t0xD6B4\n0x8336A638\t0xD6B5\n0x8336A639\t0xD6B6\n0x8336A730\t0xD6B7\n0x8336A731\t0xD6B8\n0x8336A732\t0xD6B9\n0x8336A733\t0xD6BA\n0x8336A734\t0xD6BB\n0x8336A735\t0xD6BC\n0x8336A736\t0xD6BD\n0x8336A737\t0xD6BE\n0x8336A738\t0xD6BF\n0x8336A739\t0xD6C0\n0x8336A830\t0xD6C1\n0x8336A831\t0xD6C2\n0x8336A832\t0xD6C3\n0x8336A833\t0xD6C4\n0x8336A834\t0xD6C5\n0x8336A835\t0xD6C6\n0x8336A836\t0xD6C7\n0x8336A837\t0xD6C8\n0x8336A838\t0xD6C9\n0x8336A839\t0xD6CA\n0x8336A930\t0xD6CB\n0x8336A931\t0xD6CC\n0x8336A932\t0xD6CD\n0x8336A933\t0xD6CE\n0x8336A934\t0xD6CF\n0x8336A935\t0xD6D0\n0x8336A936\t0xD6D1\n0x8336A937\t0xD6D2\n0x8336A938\t0xD6D3\n0x8336A939\t0xD6D4\n0x8336AA30\t0xD6D5\n0x8336AA31\t0xD6D6\n0x8336AA32\t0xD6D7\n0x8336AA33\t0xD6D8\n0x8336AA34\t0xD6D9\n0x8336AA35\t0xD6DA\n0x8336AA36\t0xD6DB\n0x8336AA37\t0xD6DC\n0x8336AA38\t0xD6DD\n0x8336AA39\t0xD6DE\n0x8336AB30\t0xD6DF\n0x8336AB31\t0xD6E0\n0x8336AB32\t0xD6E1\n0x8336AB33\t0xD6E2\n0x8336AB34\t0xD6E3\n0x8336AB35\t0xD6E4\n0x8336AB36\t0xD6E5\n0x8336AB37\t0xD6E6\n0x8336AB38\t0xD6E7\n0x8336AB39\t0xD6E8\n0x8336AC30\t0xD6E9\n0x8336AC31\t0xD6EA\n0x8336AC32\t0xD6EB\n0x8336AC33\t0xD6EC\n0x8336AC34\t0xD6ED\n0x8336AC35\t0xD6EE\n0x8336AC36\t0xD6EF\n0x8336AC37\t0xD6F0\n0x8336AC38\t0xD6F1\n0x8336AC39\t0xD6F2\n0x8336AD30\t0xD6F3\n0x8336AD31\t0xD6F4\n0x8336AD32\t0xD6F5\n0x8336AD33\t0xD6F6\n0x8336AD34\t0xD6F7\n0x8336AD35\t0xD6F8\n0x8336AD36\t0xD6F9\n0x8336AD37\t0xD6FA\n0x8336AD38\t0xD6FB\n0x8336AD39\t0xD6FC\n0x8336AE30\t0xD6FD\n0x8336AE31\t0xD6FE\n0x8336AE32\t0xD6FF\n0x8336AE33\t0xD700\n0x8336AE34\t0xD701\n0x8336AE35\t0xD702\n0x8336AE36\t0xD703\n0x8336AE37\t0xD704\n0x8336AE38\t0xD705\n0x8336AE39\t0xD706\n0x8336AF30\t0xD707\n0x8336AF31\t0xD708\n0x8336AF32\t0xD709\n0x8336AF33\t0xD70A\n0x8336AF34\t0xD70B\n0x8336AF35\t0xD70C\n0x8336AF36\t0xD70D\n0x8336AF37\t0xD70E\n0x8336AF38\t0xD70F\n0x8336AF39\t0xD710\n0x8336B030\t0xD711\n0x8336B031\t0xD712\n0x8336B032\t0xD713\n0x8336B033\t0xD714\n0x8336B034\t0xD715\n0x8336B035\t0xD716\n0x8336B036\t0xD717\n0x8336B037\t0xD718\n0x8336B038\t0xD719\n0x8336B039\t0xD71A\n0x8336B130\t0xD71B\n0x8336B131\t0xD71C\n0x8336B132\t0xD71D\n0x8336B133\t0xD71E\n0x8336B134\t0xD71F\n0x8336B135\t0xD720\n0x8336B136\t0xD721\n0x8336B137\t0xD722\n0x8336B138\t0xD723\n0x8336B139\t0xD724\n0x8336B230\t0xD725\n0x8336B231\t0xD726\n0x8336B232\t0xD727\n0x8336B233\t0xD728\n0x8336B234\t0xD729\n0x8336B235\t0xD72A\n0x8336B236\t0xD72B\n0x8336B237\t0xD72C\n0x8336B238\t0xD72D\n0x8336B239\t0xD72E\n0x8336B330\t0xD72F\n0x8336B331\t0xD730\n0x8336B332\t0xD731\n0x8336B333\t0xD732\n0x8336B334\t0xD733\n0x8336B335\t0xD734\n0x8336B336\t0xD735\n0x8336B337\t0xD736\n0x8336B338\t0xD737\n0x8336B339\t0xD738\n0x8336B430\t0xD739\n0x8336B431\t0xD73A\n0x8336B432\t0xD73B\n0x8336B433\t0xD73C\n0x8336B434\t0xD73D\n0x8336B435\t0xD73E\n0x8336B436\t0xD73F\n0x8336B437\t0xD740\n0x8336B438\t0xD741\n0x8336B439\t0xD742\n0x8336B530\t0xD743\n0x8336B531\t0xD744\n0x8336B532\t0xD745\n0x8336B533\t0xD746\n0x8336B534\t0xD747\n0x8336B535\t0xD748\n0x8336B536\t0xD749\n0x8336B537\t0xD74A\n0x8336B538\t0xD74B\n0x8336B539\t0xD74C\n0x8336B630\t0xD74D\n0x8336B631\t0xD74E\n0x8336B632\t0xD74F\n0x8336B633\t0xD750\n0x8336B634\t0xD751\n0x8336B635\t0xD752\n0x8336B636\t0xD753\n0x8336B637\t0xD754\n0x8336B638\t0xD755\n0x8336B639\t0xD756\n0x8336B730\t0xD757\n0x8336B731\t0xD758\n0x8336B732\t0xD759\n0x8336B733\t0xD75A\n0x8336B734\t0xD75B\n0x8336B735\t0xD75C\n0x8336B736\t0xD75D\n0x8336B737\t0xD75E\n0x8336B738\t0xD75F\n0x8336B739\t0xD760\n0x8336B830\t0xD761\n0x8336B831\t0xD762\n0x8336B832\t0xD763\n0x8336B833\t0xD764\n0x8336B834\t0xD765\n0x8336B835\t0xD766\n0x8336B836\t0xD767\n0x8336B837\t0xD768\n0x8336B838\t0xD769\n0x8336B839\t0xD76A\n0x8336B930\t0xD76B\n0x8336B931\t0xD76C\n0x8336B932\t0xD76D\n0x8336B933\t0xD76E\n0x8336B934\t0xD76F\n0x8336B935\t0xD770\n0x8336B936\t0xD771\n0x8336B937\t0xD772\n0x8336B938\t0xD773\n0x8336B939\t0xD774\n0x8336BA30\t0xD775\n0x8336BA31\t0xD776\n0x8336BA32\t0xD777\n0x8336BA33\t0xD778\n0x8336BA34\t0xD779\n0x8336BA35\t0xD77A\n0x8336BA36\t0xD77B\n0x8336BA37\t0xD77C\n0x8336BA38\t0xD77D\n0x8336BA39\t0xD77E\n0x8336BB30\t0xD77F\n0x8336BB31\t0xD780\n0x8336BB32\t0xD781\n0x8336BB33\t0xD782\n0x8336BB34\t0xD783\n0x8336BB35\t0xD784\n0x8336BB36\t0xD785\n0x8336BB37\t0xD786\n0x8336BB38\t0xD787\n0x8336BB39\t0xD788\n0x8336BC30\t0xD789\n0x8336BC31\t0xD78A\n0x8336BC32\t0xD78B\n0x8336BC33\t0xD78C\n0x8336BC34\t0xD78D\n0x8336BC35\t0xD78E\n0x8336BC36\t0xD78F\n0x8336BC37\t0xD790\n0x8336BC38\t0xD791\n0x8336BC39\t0xD792\n0x8336BD30\t0xD793\n0x8336BD31\t0xD794\n0x8336BD32\t0xD795\n0x8336BD33\t0xD796\n0x8336BD34\t0xD797\n0x8336BD35\t0xD798\n0x8336BD36\t0xD799\n0x8336BD37\t0xD79A\n0x8336BD38\t0xD79B\n0x8336BD39\t0xD79C\n0x8336BE30\t0xD79D\n0x8336BE31\t0xD79E\n0x8336BE32\t0xD79F\n0x8336BE33\t0xD7A0\n0x8336BE34\t0xD7A1\n0x8336BE35\t0xD7A2\n0x8336BE36\t0xD7A3\n0x8336BE37\t0xD7A4\n0x8336BE38\t0xD7A5\n0x8336BE39\t0xD7A6\n0x8336BF30\t0xD7A7\n0x8336BF31\t0xD7A8\n0x8336BF32\t0xD7A9\n0x8336BF33\t0xD7AA\n0x8336BF34\t0xD7AB\n0x8336BF35\t0xD7AC\n0x8336BF36\t0xD7AD\n0x8336BF37\t0xD7AE\n0x8336BF38\t0xD7AF\n0x8336BF39\t0xD7B0\n0x8336C030\t0xD7B1\n0x8336C031\t0xD7B2\n0x8336C032\t0xD7B3\n0x8336C033\t0xD7B4\n0x8336C034\t0xD7B5\n0x8336C035\t0xD7B6\n0x8336C036\t0xD7B7\n0x8336C037\t0xD7B8\n0x8336C038\t0xD7B9\n0x8336C039\t0xD7BA\n0x8336C130\t0xD7BB\n0x8336C131\t0xD7BC\n0x8336C132\t0xD7BD\n0x8336C133\t0xD7BE\n0x8336C134\t0xD7BF\n0x8336C135\t0xD7C0\n0x8336C136\t0xD7C1\n0x8336C137\t0xD7C2\n0x8336C138\t0xD7C3\n0x8336C139\t0xD7C4\n0x8336C230\t0xD7C5\n0x8336C231\t0xD7C6\n0x8336C232\t0xD7C7\n0x8336C233\t0xD7C8\n0x8336C234\t0xD7C9\n0x8336C235\t0xD7CA\n0x8336C236\t0xD7CB\n0x8336C237\t0xD7CC\n0x8336C238\t0xD7CD\n0x8336C239\t0xD7CE\n0x8336C330\t0xD7CF\n0x8336C331\t0xD7D0\n0x8336C332\t0xD7D1\n0x8336C333\t0xD7D2\n0x8336C334\t0xD7D3\n0x8336C335\t0xD7D4\n0x8336C336\t0xD7D5\n0x8336C337\t0xD7D6\n0x8336C338\t0xD7D7\n0x8336C339\t0xD7D8\n0x8336C430\t0xD7D9\n0x8336C431\t0xD7DA\n0x8336C432\t0xD7DB\n0x8336C433\t0xD7DC\n0x8336C434\t0xD7DD\n0x8336C435\t0xD7DE\n0x8336C436\t0xD7DF\n0x8336C437\t0xD7E0\n0x8336C438\t0xD7E1\n0x8336C439\t0xD7E2\n0x8336C530\t0xD7E3\n0x8336C531\t0xD7E4\n0x8336C532\t0xD7E5\n0x8336C533\t0xD7E6\n0x8336C534\t0xD7E7\n0x8336C535\t0xD7E8\n0x8336C536\t0xD7E9\n0x8336C537\t0xD7EA\n0x8336C538\t0xD7EB\n0x8336C539\t0xD7EC\n0x8336C630\t0xD7ED\n0x8336C631\t0xD7EE\n0x8336C632\t0xD7EF\n0x8336C633\t0xD7F0\n0x8336C634\t0xD7F1\n0x8336C635\t0xD7F2\n0x8336C636\t0xD7F3\n0x8336C637\t0xD7F4\n0x8336C638\t0xD7F5\n0x8336C639\t0xD7F6\n0x8336C730\t0xD7F7\n0x8336C731\t0xD7F8\n0x8336C732\t0xD7F9\n0x8336C733\t0xD7FA\n0x8336C734\t0xD7FB\n0x8336C735\t0xD7FC\n0x8336C736\t0xD7FD\n0x8336C737\t0xD7FE\n0x8336C738\t0xD7FF\n0x8336C739\t0xE76C\n0x8336C830\t0xE7C8\n0x8336C831\t0xE7E7\n0x8336C832\t0xE7E8\n0x8336C833\t0xE7E9\n0x8336C834\t0xE7EA\n0x8336C835\t0xE7EB\n0x8336C836\t0xE7EC\n0x8336C837\t0xE7ED\n0x8336C838\t0xE7EE\n0x8336C839\t0xE7EF\n0x8336C930\t0xE7F0\n0x8336C931\t0xE7F1\n0x8336C932\t0xE7F2\n0x8336C933\t0xE7F3\n0x8336C934\t0xE815\n0x8336C935\t0xE819\n0x8336C936\t0xE81A\n0x8336C937\t0xE81B\n0x8336C938\t0xE81C\n0x8336C939\t0xE81D\n0x8336CA30\t0xE81F\n0x8336CA31\t0xE820\n0x8336CA32\t0xE821\n0x8336CA33\t0xE822\n0x8336CA34\t0xE823\n0x8336CA35\t0xE824\n0x8336CA36\t0xE825\n0x8336CA37\t0xE827\n0x8336CA38\t0xE828\n0x8336CA39\t0xE829\n0x8336CB30\t0xE82A\n0x8336CB31\t0xE82D\n0x8336CB32\t0xE82E\n0x8336CB33\t0xE82F\n0x8336CB34\t0xE830\n0x8336CB35\t0xE833\n0x8336CB36\t0xE834\n0x8336CB37\t0xE835\n0x8336CB38\t0xE836\n0x8336CB39\t0xE837\n0x8336CC30\t0xE838\n0x8336CC31\t0xE839\n0x8336CC32\t0xE83A\n0x8336CC33\t0xE83C\n0x8336CC34\t0xE83D\n0x8336CC35\t0xE83E\n0x8336CC36\t0xE83F\n0x8336CC37\t0xE840\n0x8336CC38\t0xE841\n0x8336CC39\t0xE842\n0x8336CD30\t0xE844\n0x8336CD31\t0xE845\n0x8336CD32\t0xE846\n0x8336CD33\t0xE847\n0x8336CD34\t0xE848\n0x8336CD35\t0xE849\n0x8336CD36\t0xE84A\n0x8336CD37\t0xE84B\n0x8336CD38\t0xE84C\n0x8336CD39\t0xE84D\n0x8336CE30\t0xE84E\n0x8336CE31\t0xE84F\n0x8336CE32\t0xE850\n0x8336CE33\t0xE851\n0x8336CE34\t0xE852\n0x8336CE35\t0xE853\n0x8336CE36\t0xE856\n0x8336CE37\t0xE857\n0x8336CE38\t0xE858\n0x8336CE39\t0xE859\n0x8336CF30\t0xE85A\n0x8336CF31\t0xE85B\n0x8336CF32\t0xE85C\n0x8336CF33\t0xE85D\n0x8336CF34\t0xE85E\n0x8336CF35\t0xE85F\n0x8336CF36\t0xE860\n0x8336CF37\t0xE861\n0x8336CF38\t0xE862\n0x8336CF39\t0xE863\n0x8336D030\t0xE865\n0x8336D031\t0xE866\n0x8336D032\t0xE867\n0x8336D033\t0xE868\n0x8336D034\t0xE869\n0x8336D035\t0xE86A\n0x8336D036\t0xE86B\n0x8336D037\t0xE86C\n0x8336D038\t0xE86D\n0x8336D039\t0xE86E\n0x8336D130\t0xE86F\n0x8336D131\t0xE870\n0x8336D132\t0xE871\n0x8336D133\t0xE872\n0x8336D134\t0xE873\n0x8336D135\t0xE874\n0x8336D136\t0xE875\n0x8336D137\t0xE876\n0x8336D138\t0xE877\n0x8336D139\t0xE878\n0x8336D230\t0xE879\n0x8336D231\t0xE87A\n0x8336D232\t0xE87B\n0x8336D233\t0xE87C\n0x8336D234\t0xE87D\n0x8336D235\t0xE87E\n0x8336D236\t0xE87F\n0x8336D237\t0xE880\n0x8336D238\t0xE881\n0x8336D239\t0xE882\n0x8336D330\t0xE883\n0x8336D331\t0xE884\n0x8336D332\t0xE885\n0x8336D333\t0xE886\n0x8336D334\t0xE887\n0x8336D335\t0xE888\n0x8336D336\t0xE889\n0x8336D337\t0xE88A\n0x8336D338\t0xE88B\n0x8336D339\t0xE88C\n0x8336D430\t0xE88D\n0x8336D431\t0xE88E\n0x8336D432\t0xE88F\n0x8336D433\t0xE890\n0x8336D434\t0xE891\n0x8336D435\t0xE892\n0x8336D436\t0xE893\n0x8336D437\t0xE894\n0x8336D438\t0xE895\n0x8336D439\t0xE896\n0x8336D530\t0xE897\n0x8336D531\t0xE898\n0x8336D532\t0xE899\n0x8336D533\t0xE89A\n0x8336D534\t0xE89B\n0x8336D535\t0xE89C\n0x8336D536\t0xE89D\n0x8336D537\t0xE89E\n0x8336D538\t0xE89F\n0x8336D539\t0xE8A0\n0x8336D630\t0xE8A1\n0x8336D631\t0xE8A2\n0x8336D632\t0xE8A3\n0x8336D633\t0xE8A4\n0x8336D634\t0xE8A5\n0x8336D635\t0xE8A6\n0x8336D636\t0xE8A7\n0x8336D637\t0xE8A8\n0x8336D638\t0xE8A9\n0x8336D639\t0xE8AA\n0x8336D730\t0xE8AB\n0x8336D731\t0xE8AC\n0x8336D732\t0xE8AD\n0x8336D733\t0xE8AE\n0x8336D734\t0xE8AF\n0x8336D735\t0xE8B0\n0x8336D736\t0xE8B1\n0x8336D737\t0xE8B2\n0x8336D738\t0xE8B3\n0x8336D739\t0xE8B4\n0x8336D830\t0xE8B5\n0x8336D831\t0xE8B6\n0x8336D832\t0xE8B7\n0x8336D833\t0xE8B8\n0x8336D834\t0xE8B9\n0x8336D835\t0xE8BA\n0x8336D836\t0xE8BB\n0x8336D837\t0xE8BC\n0x8336D838\t0xE8BD\n0x8336D839\t0xE8BE\n0x8336D930\t0xE8BF\n0x8336D931\t0xE8C0\n0x8336D932\t0xE8C1\n0x8336D933\t0xE8C2\n0x8336D934\t0xE8C3\n0x8336D935\t0xE8C4\n0x8336D936\t0xE8C5\n0x8336D937\t0xE8C6\n0x8336D938\t0xE8C7\n0x8336D939\t0xE8C8\n0x8336DA30\t0xE8C9\n0x8336DA31\t0xE8CA\n0x8336DA32\t0xE8CB\n0x8336DA33\t0xE8CC\n0x8336DA34\t0xE8CD\n0x8336DA35\t0xE8CE\n0x8336DA36\t0xE8CF\n0x8336DA37\t0xE8D0\n0x8336DA38\t0xE8D1\n0x8336DA39\t0xE8D2\n0x8336DB30\t0xE8D3\n0x8336DB31\t0xE8D4\n0x8336DB32\t0xE8D5\n0x8336DB33\t0xE8D6\n0x8336DB34\t0xE8D7\n0x8336DB35\t0xE8D8\n0x8336DB36\t0xE8D9\n0x8336DB37\t0xE8DA\n0x8336DB38\t0xE8DB\n0x8336DB39\t0xE8DC\n0x8336DC30\t0xE8DD\n0x8336DC31\t0xE8DE\n0x8336DC32\t0xE8DF\n0x8336DC33\t0xE8E0\n0x8336DC34\t0xE8E1\n0x8336DC35\t0xE8E2\n0x8336DC36\t0xE8E3\n0x8336DC37\t0xE8E4\n0x8336DC38\t0xE8E5\n0x8336DC39\t0xE8E6\n0x8336DD30\t0xE8E7\n0x8336DD31\t0xE8E8\n0x8336DD32\t0xE8E9\n0x8336DD33\t0xE8EA\n0x8336DD34\t0xE8EB\n0x8336DD35\t0xE8EC\n0x8336DD36\t0xE8ED\n0x8336DD37\t0xE8EE\n0x8336DD38\t0xE8EF\n0x8336DD39\t0xE8F0\n0x8336DE30\t0xE8F1\n0x8336DE31\t0xE8F2\n0x8336DE32\t0xE8F3\n0x8336DE33\t0xE8F4\n0x8336DE34\t0xE8F5\n0x8336DE35\t0xE8F6\n0x8336DE36\t0xE8F7\n0x8336DE37\t0xE8F8\n0x8336DE38\t0xE8F9\n0x8336DE39\t0xE8FA\n0x8336DF30\t0xE8FB\n0x8336DF31\t0xE8FC\n0x8336DF32\t0xE8FD\n0x8336DF33\t0xE8FE\n0x8336DF34\t0xE8FF\n0x8336DF35\t0xE900\n0x8336DF36\t0xE901\n0x8336DF37\t0xE902\n0x8336DF38\t0xE903\n0x8336DF39\t0xE904\n0x8336E030\t0xE905\n0x8336E031\t0xE906\n0x8336E032\t0xE907\n0x8336E033\t0xE908\n0x8336E034\t0xE909\n0x8336E035\t0xE90A\n0x8336E036\t0xE90B\n0x8336E037\t0xE90C\n0x8336E038\t0xE90D\n0x8336E039\t0xE90E\n0x8336E130\t0xE90F\n0x8336E131\t0xE910\n0x8336E132\t0xE911\n0x8336E133\t0xE912\n0x8336E134\t0xE913\n0x8336E135\t0xE914\n0x8336E136\t0xE915\n0x8336E137\t0xE916\n0x8336E138\t0xE917\n0x8336E139\t0xE918\n0x8336E230\t0xE919\n0x8336E231\t0xE91A\n0x8336E232\t0xE91B\n0x8336E233\t0xE91C\n0x8336E234\t0xE91D\n0x8336E235\t0xE91E\n0x8336E236\t0xE91F\n0x8336E237\t0xE920\n0x8336E238\t0xE921\n0x8336E239\t0xE922\n0x8336E330\t0xE923\n0x8336E331\t0xE924\n0x8336E332\t0xE925\n0x8336E333\t0xE926\n0x8336E334\t0xE927\n0x8336E335\t0xE928\n0x8336E336\t0xE929\n0x8336E337\t0xE92A\n0x8336E338\t0xE92B\n0x8336E339\t0xE92C\n0x8336E430\t0xE92D\n0x8336E431\t0xE92E\n0x8336E432\t0xE92F\n0x8336E433\t0xE930\n0x8336E434\t0xE931\n0x8336E435\t0xE932\n0x8336E436\t0xE933\n0x8336E437\t0xE934\n0x8336E438\t0xE935\n0x8336E439\t0xE936\n0x8336E530\t0xE937\n0x8336E531\t0xE938\n0x8336E532\t0xE939\n0x8336E533\t0xE93A\n0x8336E534\t0xE93B\n0x8336E535\t0xE93C\n0x8336E536\t0xE93D\n0x8336E537\t0xE93E\n0x8336E538\t0xE93F\n0x8336E539\t0xE940\n0x8336E630\t0xE941\n0x8336E631\t0xE942\n0x8336E632\t0xE943\n0x8336E633\t0xE944\n0x8336E634\t0xE945\n0x8336E635\t0xE946\n0x8336E636\t0xE947\n0x8336E637\t0xE948\n0x8336E638\t0xE949\n0x8336E639\t0xE94A\n0x8336E730\t0xE94B\n0x8336E731\t0xE94C\n0x8336E732\t0xE94D\n0x8336E733\t0xE94E\n0x8336E734\t0xE94F\n0x8336E735\t0xE950\n0x8336E736\t0xE951\n0x8336E737\t0xE952\n0x8336E738\t0xE953\n0x8336E739\t0xE954\n0x8336E830\t0xE955\n0x8336E831\t0xE956\n0x8336E832\t0xE957\n0x8336E833\t0xE958\n0x8336E834\t0xE959\n0x8336E835\t0xE95A\n0x8336E836\t0xE95B\n0x8336E837\t0xE95C\n0x8336E838\t0xE95D\n0x8336E839\t0xE95E\n0x8336E930\t0xE95F\n0x8336E931\t0xE960\n0x8336E932\t0xE961\n0x8336E933\t0xE962\n0x8336E934\t0xE963\n0x8336E935\t0xE964\n0x8336E936\t0xE965\n0x8336E937\t0xE966\n0x8336E938\t0xE967\n0x8336E939\t0xE968\n0x8336EA30\t0xE969\n0x8336EA31\t0xE96A\n0x8336EA32\t0xE96B\n0x8336EA33\t0xE96C\n0x8336EA34\t0xE96D\n0x8336EA35\t0xE96E\n0x8336EA36\t0xE96F\n0x8336EA37\t0xE970\n0x8336EA38\t0xE971\n0x8336EA39\t0xE972\n0x8336EB30\t0xE973\n0x8336EB31\t0xE974\n0x8336EB32\t0xE975\n0x8336EB33\t0xE976\n0x8336EB34\t0xE977\n0x8336EB35\t0xE978\n0x8336EB36\t0xE979\n0x8336EB37\t0xE97A\n0x8336EB38\t0xE97B\n0x8336EB39\t0xE97C\n0x8336EC30\t0xE97D\n0x8336EC31\t0xE97E\n0x8336EC32\t0xE97F\n0x8336EC33\t0xE980\n0x8336EC34\t0xE981\n0x8336EC35\t0xE982\n0x8336EC36\t0xE983\n0x8336EC37\t0xE984\n0x8336EC38\t0xE985\n0x8336EC39\t0xE986\n0x8336ED30\t0xE987\n0x8336ED31\t0xE988\n0x8336ED32\t0xE989\n0x8336ED33\t0xE98A\n0x8336ED34\t0xE98B\n0x8336ED35\t0xE98C\n0x8336ED36\t0xE98D\n0x8336ED37\t0xE98E\n0x8336ED38\t0xE98F\n0x8336ED39\t0xE990\n0x8336EE30\t0xE991\n0x8336EE31\t0xE992\n0x8336EE32\t0xE993\n0x8336EE33\t0xE994\n0x8336EE34\t0xE995\n0x8336EE35\t0xE996\n0x8336EE36\t0xE997\n0x8336EE37\t0xE998\n0x8336EE38\t0xE999\n0x8336EE39\t0xE99A\n0x8336EF30\t0xE99B\n0x8336EF31\t0xE99C\n0x8336EF32\t0xE99D\n0x8336EF33\t0xE99E\n0x8336EF34\t0xE99F\n0x8336EF35\t0xE9A0\n0x8336EF36\t0xE9A1\n0x8336EF37\t0xE9A2\n0x8336EF38\t0xE9A3\n0x8336EF39\t0xE9A4\n0x8336F030\t0xE9A5\n0x8336F031\t0xE9A6\n0x8336F032\t0xE9A7\n0x8336F033\t0xE9A8\n0x8336F034\t0xE9A9\n0x8336F035\t0xE9AA\n0x8336F036\t0xE9AB\n0x8336F037\t0xE9AC\n0x8336F038\t0xE9AD\n0x8336F039\t0xE9AE\n0x8336F130\t0xE9AF\n0x8336F131\t0xE9B0\n0x8336F132\t0xE9B1\n0x8336F133\t0xE9B2\n0x8336F134\t0xE9B3\n0x8336F135\t0xE9B4\n0x8336F136\t0xE9B5\n0x8336F137\t0xE9B6\n0x8336F138\t0xE9B7\n0x8336F139\t0xE9B8\n0x8336F230\t0xE9B9\n0x8336F231\t0xE9BA\n0x8336F232\t0xE9BB\n0x8336F233\t0xE9BC\n0x8336F234\t0xE9BD\n0x8336F235\t0xE9BE\n0x8336F236\t0xE9BF\n0x8336F237\t0xE9C0\n0x8336F238\t0xE9C1\n0x8336F239\t0xE9C2\n0x8336F330\t0xE9C3\n0x8336F331\t0xE9C4\n0x8336F332\t0xE9C5\n0x8336F333\t0xE9C6\n0x8336F334\t0xE9C7\n0x8336F335\t0xE9C8\n0x8336F336\t0xE9C9\n0x8336F337\t0xE9CA\n0x8336F338\t0xE9CB\n0x8336F339\t0xE9CC\n0x8336F430\t0xE9CD\n0x8336F431\t0xE9CE\n0x8336F432\t0xE9CF\n0x8336F433\t0xE9D0\n0x8336F434\t0xE9D1\n0x8336F435\t0xE9D2\n0x8336F436\t0xE9D3\n0x8336F437\t0xE9D4\n0x8336F438\t0xE9D5\n0x8336F439\t0xE9D6\n0x8336F530\t0xE9D7\n0x8336F531\t0xE9D8\n0x8336F532\t0xE9D9\n0x8336F533\t0xE9DA\n0x8336F534\t0xE9DB\n0x8336F535\t0xE9DC\n0x8336F536\t0xE9DD\n0x8336F537\t0xE9DE\n0x8336F538\t0xE9DF\n0x8336F539\t0xE9E0\n0x8336F630\t0xE9E1\n0x8336F631\t0xE9E2\n0x8336F632\t0xE9E3\n0x8336F633\t0xE9E4\n0x8336F634\t0xE9E5\n0x8336F635\t0xE9E6\n0x8336F636\t0xE9E7\n0x8336F637\t0xE9E8\n0x8336F638\t0xE9E9\n0x8336F639\t0xE9EA\n0x8336F730\t0xE9EB\n0x8336F731\t0xE9EC\n0x8336F732\t0xE9ED\n0x8336F733\t0xE9EE\n0x8336F734\t0xE9EF\n0x8336F735\t0xE9F0\n0x8336F736\t0xE9F1\n0x8336F737\t0xE9F2\n0x8336F738\t0xE9F3\n0x8336F739\t0xE9F4\n0x8336F830\t0xE9F5\n0x8336F831\t0xE9F6\n0x8336F832\t0xE9F7\n0x8336F833\t0xE9F8\n0x8336F834\t0xE9F9\n0x8336F835\t0xE9FA\n0x8336F836\t0xE9FB\n0x8336F837\t0xE9FC\n0x8336F838\t0xE9FD\n0x8336F839\t0xE9FE\n0x8336F930\t0xE9FF\n0x8336F931\t0xEA00\n0x8336F932\t0xEA01\n0x8336F933\t0xEA02\n0x8336F934\t0xEA03\n0x8336F935\t0xEA04\n0x8336F936\t0xEA05\n0x8336F937\t0xEA06\n0x8336F938\t0xEA07\n0x8336F939\t0xEA08\n0x8336FA30\t0xEA09\n0x8336FA31\t0xEA0A\n0x8336FA32\t0xEA0B\n0x8336FA33\t0xEA0C\n0x8336FA34\t0xEA0D\n0x8336FA35\t0xEA0E\n0x8336FA36\t0xEA0F\n0x8336FA37\t0xEA10\n0x8336FA38\t0xEA11\n0x8336FA39\t0xEA12\n0x8336FB30\t0xEA13\n0x8336FB31\t0xEA14\n0x8336FB32\t0xEA15\n0x8336FB33\t0xEA16\n0x8336FB34\t0xEA17\n0x8336FB35\t0xEA18\n0x8336FB36\t0xEA19\n0x8336FB37\t0xEA1A\n0x8336FB38\t0xEA1B\n0x8336FB39\t0xEA1C\n0x8336FC30\t0xEA1D\n0x8336FC31\t0xEA1E\n0x8336FC32\t0xEA1F\n0x8336FC33\t0xEA20\n0x8336FC34\t0xEA21\n0x8336FC35\t0xEA22\n0x8336FC36\t0xEA23\n0x8336FC37\t0xEA24\n0x8336FC38\t0xEA25\n0x8336FC39\t0xEA26\n0x8336FD30\t0xEA27\n0x8336FD31\t0xEA28\n0x8336FD32\t0xEA29\n0x8336FD33\t0xEA2A\n0x8336FD34\t0xEA2B\n0x8336FD35\t0xEA2C\n0x8336FD36\t0xEA2D\n0x8336FD37\t0xEA2E\n0x8336FD38\t0xEA2F\n0x8336FD39\t0xEA30\n0x8336FE30\t0xEA31\n0x8336FE31\t0xEA32\n0x8336FE32\t0xEA33\n0x8336FE33\t0xEA34\n0x8336FE34\t0xEA35\n0x8336FE35\t0xEA36\n0x8336FE36\t0xEA37\n0x8336FE37\t0xEA38\n0x8336FE38\t0xEA39\n0x8336FE39\t0xEA3A\n0x83378130\t0xEA3B\n0x83378131\t0xEA3C\n0x83378132\t0xEA3D\n0x83378133\t0xEA3E\n0x83378134\t0xEA3F\n0x83378135\t0xEA40\n0x83378136\t0xEA41\n0x83378137\t0xEA42\n0x83378138\t0xEA43\n0x83378139\t0xEA44\n0x83378230\t0xEA45\n0x83378231\t0xEA46\n0x83378232\t0xEA47\n0x83378233\t0xEA48\n0x83378234\t0xEA49\n0x83378235\t0xEA4A\n0x83378236\t0xEA4B\n0x83378237\t0xEA4C\n0x83378238\t0xEA4D\n0x83378239\t0xEA4E\n0x83378330\t0xEA4F\n0x83378331\t0xEA50\n0x83378332\t0xEA51\n0x83378333\t0xEA52\n0x83378334\t0xEA53\n0x83378335\t0xEA54\n0x83378336\t0xEA55\n0x83378337\t0xEA56\n0x83378338\t0xEA57\n0x83378339\t0xEA58\n0x83378430\t0xEA59\n0x83378431\t0xEA5A\n0x83378432\t0xEA5B\n0x83378433\t0xEA5C\n0x83378434\t0xEA5D\n0x83378435\t0xEA5E\n0x83378436\t0xEA5F\n0x83378437\t0xEA60\n0x83378438\t0xEA61\n0x83378439\t0xEA62\n0x83378530\t0xEA63\n0x83378531\t0xEA64\n0x83378532\t0xEA65\n0x83378533\t0xEA66\n0x83378534\t0xEA67\n0x83378535\t0xEA68\n0x83378536\t0xEA69\n0x83378537\t0xEA6A\n0x83378538\t0xEA6B\n0x83378539\t0xEA6C\n0x83378630\t0xEA6D\n0x83378631\t0xEA6E\n0x83378632\t0xEA6F\n0x83378633\t0xEA70\n0x83378634\t0xEA71\n0x83378635\t0xEA72\n0x83378636\t0xEA73\n0x83378637\t0xEA74\n0x83378638\t0xEA75\n0x83378639\t0xEA76\n0x83378730\t0xEA77\n0x83378731\t0xEA78\n0x83378732\t0xEA79\n0x83378733\t0xEA7A\n0x83378734\t0xEA7B\n0x83378735\t0xEA7C\n0x83378736\t0xEA7D\n0x83378737\t0xEA7E\n0x83378738\t0xEA7F\n0x83378739\t0xEA80\n0x83378830\t0xEA81\n0x83378831\t0xEA82\n0x83378832\t0xEA83\n0x83378833\t0xEA84\n0x83378834\t0xEA85\n0x83378835\t0xEA86\n0x83378836\t0xEA87\n0x83378837\t0xEA88\n0x83378838\t0xEA89\n0x83378839\t0xEA8A\n0x83378930\t0xEA8B\n0x83378931\t0xEA8C\n0x83378932\t0xEA8D\n0x83378933\t0xEA8E\n0x83378934\t0xEA8F\n0x83378935\t0xEA90\n0x83378936\t0xEA91\n0x83378937\t0xEA92\n0x83378938\t0xEA93\n0x83378939\t0xEA94\n0x83378A30\t0xEA95\n0x83378A31\t0xEA96\n0x83378A32\t0xEA97\n0x83378A33\t0xEA98\n0x83378A34\t0xEA99\n0x83378A35\t0xEA9A\n0x83378A36\t0xEA9B\n0x83378A37\t0xEA9C\n0x83378A38\t0xEA9D\n0x83378A39\t0xEA9E\n0x83378B30\t0xEA9F\n0x83378B31\t0xEAA0\n0x83378B32\t0xEAA1\n0x83378B33\t0xEAA2\n0x83378B34\t0xEAA3\n0x83378B35\t0xEAA4\n0x83378B36\t0xEAA5\n0x83378B37\t0xEAA6\n0x83378B38\t0xEAA7\n0x83378B39\t0xEAA8\n0x83378C30\t0xEAA9\n0x83378C31\t0xEAAA\n0x83378C32\t0xEAAB\n0x83378C33\t0xEAAC\n0x83378C34\t0xEAAD\n0x83378C35\t0xEAAE\n0x83378C36\t0xEAAF\n0x83378C37\t0xEAB0\n0x83378C38\t0xEAB1\n0x83378C39\t0xEAB2\n0x83378D30\t0xEAB3\n0x83378D31\t0xEAB4\n0x83378D32\t0xEAB5\n0x83378D33\t0xEAB6\n0x83378D34\t0xEAB7\n0x83378D35\t0xEAB8\n0x83378D36\t0xEAB9\n0x83378D37\t0xEABA\n0x83378D38\t0xEABB\n0x83378D39\t0xEABC\n0x83378E30\t0xEABD\n0x83378E31\t0xEABE\n0x83378E32\t0xEABF\n0x83378E33\t0xEAC0\n0x83378E34\t0xEAC1\n0x83378E35\t0xEAC2\n0x83378E36\t0xEAC3\n0x83378E37\t0xEAC4\n0x83378E38\t0xEAC5\n0x83378E39\t0xEAC6\n0x83378F30\t0xEAC7\n0x83378F31\t0xEAC8\n0x83378F32\t0xEAC9\n0x83378F33\t0xEACA\n0x83378F34\t0xEACB\n0x83378F35\t0xEACC\n0x83378F36\t0xEACD\n0x83378F37\t0xEACE\n0x83378F38\t0xEACF\n0x83378F39\t0xEAD0\n0x83379030\t0xEAD1\n0x83379031\t0xEAD2\n0x83379032\t0xEAD3\n0x83379033\t0xEAD4\n0x83379034\t0xEAD5\n0x83379035\t0xEAD6\n0x83379036\t0xEAD7\n0x83379037\t0xEAD8\n0x83379038\t0xEAD9\n0x83379039\t0xEADA\n0x83379130\t0xEADB\n0x83379131\t0xEADC\n0x83379132\t0xEADD\n0x83379133\t0xEADE\n0x83379134\t0xEADF\n0x83379135\t0xEAE0\n0x83379136\t0xEAE1\n0x83379137\t0xEAE2\n0x83379138\t0xEAE3\n0x83379139\t0xEAE4\n0x83379230\t0xEAE5\n0x83379231\t0xEAE6\n0x83379232\t0xEAE7\n0x83379233\t0xEAE8\n0x83379234\t0xEAE9\n0x83379235\t0xEAEA\n0x83379236\t0xEAEB\n0x83379237\t0xEAEC\n0x83379238\t0xEAED\n0x83379239\t0xEAEE\n0x83379330\t0xEAEF\n0x83379331\t0xEAF0\n0x83379332\t0xEAF1\n0x83379333\t0xEAF2\n0x83379334\t0xEAF3\n0x83379335\t0xEAF4\n0x83379336\t0xEAF5\n0x83379337\t0xEAF6\n0x83379338\t0xEAF7\n0x83379339\t0xEAF8\n0x83379430\t0xEAF9\n0x83379431\t0xEAFA\n0x83379432\t0xEAFB\n0x83379433\t0xEAFC\n0x83379434\t0xEAFD\n0x83379435\t0xEAFE\n0x83379436\t0xEAFF\n0x83379437\t0xEB00\n0x83379438\t0xEB01\n0x83379439\t0xEB02\n0x83379530\t0xEB03\n0x83379531\t0xEB04\n0x83379532\t0xEB05\n0x83379533\t0xEB06\n0x83379534\t0xEB07\n0x83379535\t0xEB08\n0x83379536\t0xEB09\n0x83379537\t0xEB0A\n0x83379538\t0xEB0B\n0x83379539\t0xEB0C\n0x83379630\t0xEB0D\n0x83379631\t0xEB0E\n0x83379632\t0xEB0F\n0x83379633\t0xEB10\n0x83379634\t0xEB11\n0x83379635\t0xEB12\n0x83379636\t0xEB13\n0x83379637\t0xEB14\n0x83379638\t0xEB15\n0x83379639\t0xEB16\n0x83379730\t0xEB17\n0x83379731\t0xEB18\n0x83379732\t0xEB19\n0x83379733\t0xEB1A\n0x83379734\t0xEB1B\n0x83379735\t0xEB1C\n0x83379736\t0xEB1D\n0x83379737\t0xEB1E\n0x83379738\t0xEB1F\n0x83379739\t0xEB20\n0x83379830\t0xEB21\n0x83379831\t0xEB22\n0x83379832\t0xEB23\n0x83379833\t0xEB24\n0x83379834\t0xEB25\n0x83379835\t0xEB26\n0x83379836\t0xEB27\n0x83379837\t0xEB28\n0x83379838\t0xEB29\n0x83379839\t0xEB2A\n0x83379930\t0xEB2B\n0x83379931\t0xEB2C\n0x83379932\t0xEB2D\n0x83379933\t0xEB2E\n0x83379934\t0xEB2F\n0x83379935\t0xEB30\n0x83379936\t0xEB31\n0x83379937\t0xEB32\n0x83379938\t0xEB33\n0x83379939\t0xEB34\n0x83379A30\t0xEB35\n0x83379A31\t0xEB36\n0x83379A32\t0xEB37\n0x83379A33\t0xEB38\n0x83379A34\t0xEB39\n0x83379A35\t0xEB3A\n0x83379A36\t0xEB3B\n0x83379A37\t0xEB3C\n0x83379A38\t0xEB3D\n0x83379A39\t0xEB3E\n0x83379B30\t0xEB3F\n0x83379B31\t0xEB40\n0x83379B32\t0xEB41\n0x83379B33\t0xEB42\n0x83379B34\t0xEB43\n0x83379B35\t0xEB44\n0x83379B36\t0xEB45\n0x83379B37\t0xEB46\n0x83379B38\t0xEB47\n0x83379B39\t0xEB48\n0x83379C30\t0xEB49\n0x83379C31\t0xEB4A\n0x83379C32\t0xEB4B\n0x83379C33\t0xEB4C\n0x83379C34\t0xEB4D\n0x83379C35\t0xEB4E\n0x83379C36\t0xEB4F\n0x83379C37\t0xEB50\n0x83379C38\t0xEB51\n0x83379C39\t0xEB52\n0x83379D30\t0xEB53\n0x83379D31\t0xEB54\n0x83379D32\t0xEB55\n0x83379D33\t0xEB56\n0x83379D34\t0xEB57\n0x83379D35\t0xEB58\n0x83379D36\t0xEB59\n0x83379D37\t0xEB5A\n0x83379D38\t0xEB5B\n0x83379D39\t0xEB5C\n0x83379E30\t0xEB5D\n0x83379E31\t0xEB5E\n0x83379E32\t0xEB5F\n0x83379E33\t0xEB60\n0x83379E34\t0xEB61\n0x83379E35\t0xEB62\n0x83379E36\t0xEB63\n0x83379E37\t0xEB64\n0x83379E38\t0xEB65\n0x83379E39\t0xEB66\n0x83379F30\t0xEB67\n0x83379F31\t0xEB68\n0x83379F32\t0xEB69\n0x83379F33\t0xEB6A\n0x83379F34\t0xEB6B\n0x83379F35\t0xEB6C\n0x83379F36\t0xEB6D\n0x83379F37\t0xEB6E\n0x83379F38\t0xEB6F\n0x83379F39\t0xEB70\n0x8337A030\t0xEB71\n0x8337A031\t0xEB72\n0x8337A032\t0xEB73\n0x8337A033\t0xEB74\n0x8337A034\t0xEB75\n0x8337A035\t0xEB76\n0x8337A036\t0xEB77\n0x8337A037\t0xEB78\n0x8337A038\t0xEB79\n0x8337A039\t0xEB7A\n0x8337A130\t0xEB7B\n0x8337A131\t0xEB7C\n0x8337A132\t0xEB7D\n0x8337A133\t0xEB7E\n0x8337A134\t0xEB7F\n0x8337A135\t0xEB80\n0x8337A136\t0xEB81\n0x8337A137\t0xEB82\n0x8337A138\t0xEB83\n0x8337A139\t0xEB84\n0x8337A230\t0xEB85\n0x8337A231\t0xEB86\n0x8337A232\t0xEB87\n0x8337A233\t0xEB88\n0x8337A234\t0xEB89\n0x8337A235\t0xEB8A\n0x8337A236\t0xEB8B\n0x8337A237\t0xEB8C\n0x8337A238\t0xEB8D\n0x8337A239\t0xEB8E\n0x8337A330\t0xEB8F\n0x8337A331\t0xEB90\n0x8337A332\t0xEB91\n0x8337A333\t0xEB92\n0x8337A334\t0xEB93\n0x8337A335\t0xEB94\n0x8337A336\t0xEB95\n0x8337A337\t0xEB96\n0x8337A338\t0xEB97\n0x8337A339\t0xEB98\n0x8337A430\t0xEB99\n0x8337A431\t0xEB9A\n0x8337A432\t0xEB9B\n0x8337A433\t0xEB9C\n0x8337A434\t0xEB9D\n0x8337A435\t0xEB9E\n0x8337A436\t0xEB9F\n0x8337A437\t0xEBA0\n0x8337A438\t0xEBA1\n0x8337A439\t0xEBA2\n0x8337A530\t0xEBA3\n0x8337A531\t0xEBA4\n0x8337A532\t0xEBA5\n0x8337A533\t0xEBA6\n0x8337A534\t0xEBA7\n0x8337A535\t0xEBA8\n0x8337A536\t0xEBA9\n0x8337A537\t0xEBAA\n0x8337A538\t0xEBAB\n0x8337A539\t0xEBAC\n0x8337A630\t0xEBAD\n0x8337A631\t0xEBAE\n0x8337A632\t0xEBAF\n0x8337A633\t0xEBB0\n0x8337A634\t0xEBB1\n0x8337A635\t0xEBB2\n0x8337A636\t0xEBB3\n0x8337A637\t0xEBB4\n0x8337A638\t0xEBB5\n0x8337A639\t0xEBB6\n0x8337A730\t0xEBB7\n0x8337A731\t0xEBB8\n0x8337A732\t0xEBB9\n0x8337A733\t0xEBBA\n0x8337A734\t0xEBBB\n0x8337A735\t0xEBBC\n0x8337A736\t0xEBBD\n0x8337A737\t0xEBBE\n0x8337A738\t0xEBBF\n0x8337A739\t0xEBC0\n0x8337A830\t0xEBC1\n0x8337A831\t0xEBC2\n0x8337A832\t0xEBC3\n0x8337A833\t0xEBC4\n0x8337A834\t0xEBC5\n0x8337A835\t0xEBC6\n0x8337A836\t0xEBC7\n0x8337A837\t0xEBC8\n0x8337A838\t0xEBC9\n0x8337A839\t0xEBCA\n0x8337A930\t0xEBCB\n0x8337A931\t0xEBCC\n0x8337A932\t0xEBCD\n0x8337A933\t0xEBCE\n0x8337A934\t0xEBCF\n0x8337A935\t0xEBD0\n0x8337A936\t0xEBD1\n0x8337A937\t0xEBD2\n0x8337A938\t0xEBD3\n0x8337A939\t0xEBD4\n0x8337AA30\t0xEBD5\n0x8337AA31\t0xEBD6\n0x8337AA32\t0xEBD7\n0x8337AA33\t0xEBD8\n0x8337AA34\t0xEBD9\n0x8337AA35\t0xEBDA\n0x8337AA36\t0xEBDB\n0x8337AA37\t0xEBDC\n0x8337AA38\t0xEBDD\n0x8337AA39\t0xEBDE\n0x8337AB30\t0xEBDF\n0x8337AB31\t0xEBE0\n0x8337AB32\t0xEBE1\n0x8337AB33\t0xEBE2\n0x8337AB34\t0xEBE3\n0x8337AB35\t0xEBE4\n0x8337AB36\t0xEBE5\n0x8337AB37\t0xEBE6\n0x8337AB38\t0xEBE7\n0x8337AB39\t0xEBE8\n0x8337AC30\t0xEBE9\n0x8337AC31\t0xEBEA\n0x8337AC32\t0xEBEB\n0x8337AC33\t0xEBEC\n0x8337AC34\t0xEBED\n0x8337AC35\t0xEBEE\n0x8337AC36\t0xEBEF\n0x8337AC37\t0xEBF0\n0x8337AC38\t0xEBF1\n0x8337AC39\t0xEBF2\n0x8337AD30\t0xEBF3\n0x8337AD31\t0xEBF4\n0x8337AD32\t0xEBF5\n0x8337AD33\t0xEBF6\n0x8337AD34\t0xEBF7\n0x8337AD35\t0xEBF8\n0x8337AD36\t0xEBF9\n0x8337AD37\t0xEBFA\n0x8337AD38\t0xEBFB\n0x8337AD39\t0xEBFC\n0x8337AE30\t0xEBFD\n0x8337AE31\t0xEBFE\n0x8337AE32\t0xEBFF\n0x8337AE33\t0xEC00\n0x8337AE34\t0xEC01\n0x8337AE35\t0xEC02\n0x8337AE36\t0xEC03\n0x8337AE37\t0xEC04\n0x8337AE38\t0xEC05\n0x8337AE39\t0xEC06\n0x8337AF30\t0xEC07\n0x8337AF31\t0xEC08\n0x8337AF32\t0xEC09\n0x8337AF33\t0xEC0A\n0x8337AF34\t0xEC0B\n0x8337AF35\t0xEC0C\n0x8337AF36\t0xEC0D\n0x8337AF37\t0xEC0E\n0x8337AF38\t0xEC0F\n0x8337AF39\t0xEC10\n0x8337B030\t0xEC11\n0x8337B031\t0xEC12\n0x8337B032\t0xEC13\n0x8337B033\t0xEC14\n0x8337B034\t0xEC15\n0x8337B035\t0xEC16\n0x8337B036\t0xEC17\n0x8337B037\t0xEC18\n0x8337B038\t0xEC19\n0x8337B039\t0xEC1A\n0x8337B130\t0xEC1B\n0x8337B131\t0xEC1C\n0x8337B132\t0xEC1D\n0x8337B133\t0xEC1E\n0x8337B134\t0xEC1F\n0x8337B135\t0xEC20\n0x8337B136\t0xEC21\n0x8337B137\t0xEC22\n0x8337B138\t0xEC23\n0x8337B139\t0xEC24\n0x8337B230\t0xEC25\n0x8337B231\t0xEC26\n0x8337B232\t0xEC27\n0x8337B233\t0xEC28\n0x8337B234\t0xEC29\n0x8337B235\t0xEC2A\n0x8337B236\t0xEC2B\n0x8337B237\t0xEC2C\n0x8337B238\t0xEC2D\n0x8337B239\t0xEC2E\n0x8337B330\t0xEC2F\n0x8337B331\t0xEC30\n0x8337B332\t0xEC31\n0x8337B333\t0xEC32\n0x8337B334\t0xEC33\n0x8337B335\t0xEC34\n0x8337B336\t0xEC35\n0x8337B337\t0xEC36\n0x8337B338\t0xEC37\n0x8337B339\t0xEC38\n0x8337B430\t0xEC39\n0x8337B431\t0xEC3A\n0x8337B432\t0xEC3B\n0x8337B433\t0xEC3C\n0x8337B434\t0xEC3D\n0x8337B435\t0xEC3E\n0x8337B436\t0xEC3F\n0x8337B437\t0xEC40\n0x8337B438\t0xEC41\n0x8337B439\t0xEC42\n0x8337B530\t0xEC43\n0x8337B531\t0xEC44\n0x8337B532\t0xEC45\n0x8337B533\t0xEC46\n0x8337B534\t0xEC47\n0x8337B535\t0xEC48\n0x8337B536\t0xEC49\n0x8337B537\t0xEC4A\n0x8337B538\t0xEC4B\n0x8337B539\t0xEC4C\n0x8337B630\t0xEC4D\n0x8337B631\t0xEC4E\n0x8337B632\t0xEC4F\n0x8337B633\t0xEC50\n0x8337B634\t0xEC51\n0x8337B635\t0xEC52\n0x8337B636\t0xEC53\n0x8337B637\t0xEC54\n0x8337B638\t0xEC55\n0x8337B639\t0xEC56\n0x8337B730\t0xEC57\n0x8337B731\t0xEC58\n0x8337B732\t0xEC59\n0x8337B733\t0xEC5A\n0x8337B734\t0xEC5B\n0x8337B735\t0xEC5C\n0x8337B736\t0xEC5D\n0x8337B737\t0xEC5E\n0x8337B738\t0xEC5F\n0x8337B739\t0xEC60\n0x8337B830\t0xEC61\n0x8337B831\t0xEC62\n0x8337B832\t0xEC63\n0x8337B833\t0xEC64\n0x8337B834\t0xEC65\n0x8337B835\t0xEC66\n0x8337B836\t0xEC67\n0x8337B837\t0xEC68\n0x8337B838\t0xEC69\n0x8337B839\t0xEC6A\n0x8337B930\t0xEC6B\n0x8337B931\t0xEC6C\n0x8337B932\t0xEC6D\n0x8337B933\t0xEC6E\n0x8337B934\t0xEC6F\n0x8337B935\t0xEC70\n0x8337B936\t0xEC71\n0x8337B937\t0xEC72\n0x8337B938\t0xEC73\n0x8337B939\t0xEC74\n0x8337BA30\t0xEC75\n0x8337BA31\t0xEC76\n0x8337BA32\t0xEC77\n0x8337BA33\t0xEC78\n0x8337BA34\t0xEC79\n0x8337BA35\t0xEC7A\n0x8337BA36\t0xEC7B\n0x8337BA37\t0xEC7C\n0x8337BA38\t0xEC7D\n0x8337BA39\t0xEC7E\n0x8337BB30\t0xEC7F\n0x8337BB31\t0xEC80\n0x8337BB32\t0xEC81\n0x8337BB33\t0xEC82\n0x8337BB34\t0xEC83\n0x8337BB35\t0xEC84\n0x8337BB36\t0xEC85\n0x8337BB37\t0xEC86\n0x8337BB38\t0xEC87\n0x8337BB39\t0xEC88\n0x8337BC30\t0xEC89\n0x8337BC31\t0xEC8A\n0x8337BC32\t0xEC8B\n0x8337BC33\t0xEC8C\n0x8337BC34\t0xEC8D\n0x8337BC35\t0xEC8E\n0x8337BC36\t0xEC8F\n0x8337BC37\t0xEC90\n0x8337BC38\t0xEC91\n0x8337BC39\t0xEC92\n0x8337BD30\t0xEC93\n0x8337BD31\t0xEC94\n0x8337BD32\t0xEC95\n0x8337BD33\t0xEC96\n0x8337BD34\t0xEC97\n0x8337BD35\t0xEC98\n0x8337BD36\t0xEC99\n0x8337BD37\t0xEC9A\n0x8337BD38\t0xEC9B\n0x8337BD39\t0xEC9C\n0x8337BE30\t0xEC9D\n0x8337BE31\t0xEC9E\n0x8337BE32\t0xEC9F\n0x8337BE33\t0xECA0\n0x8337BE34\t0xECA1\n0x8337BE35\t0xECA2\n0x8337BE36\t0xECA3\n0x8337BE37\t0xECA4\n0x8337BE38\t0xECA5\n0x8337BE39\t0xECA6\n0x8337BF30\t0xECA7\n0x8337BF31\t0xECA8\n0x8337BF32\t0xECA9\n0x8337BF33\t0xECAA\n0x8337BF34\t0xECAB\n0x8337BF35\t0xECAC\n0x8337BF36\t0xECAD\n0x8337BF37\t0xECAE\n0x8337BF38\t0xECAF\n0x8337BF39\t0xECB0\n0x8337C030\t0xECB1\n0x8337C031\t0xECB2\n0x8337C032\t0xECB3\n0x8337C033\t0xECB4\n0x8337C034\t0xECB5\n0x8337C035\t0xECB6\n0x8337C036\t0xECB7\n0x8337C037\t0xECB8\n0x8337C038\t0xECB9\n0x8337C039\t0xECBA\n0x8337C130\t0xECBB\n0x8337C131\t0xECBC\n0x8337C132\t0xECBD\n0x8337C133\t0xECBE\n0x8337C134\t0xECBF\n0x8337C135\t0xECC0\n0x8337C136\t0xECC1\n0x8337C137\t0xECC2\n0x8337C138\t0xECC3\n0x8337C139\t0xECC4\n0x8337C230\t0xECC5\n0x8337C231\t0xECC6\n0x8337C232\t0xECC7\n0x8337C233\t0xECC8\n0x8337C234\t0xECC9\n0x8337C235\t0xECCA\n0x8337C236\t0xECCB\n0x8337C237\t0xECCC\n0x8337C238\t0xECCD\n0x8337C239\t0xECCE\n0x8337C330\t0xECCF\n0x8337C331\t0xECD0\n0x8337C332\t0xECD1\n0x8337C333\t0xECD2\n0x8337C334\t0xECD3\n0x8337C335\t0xECD4\n0x8337C336\t0xECD5\n0x8337C337\t0xECD6\n0x8337C338\t0xECD7\n0x8337C339\t0xECD8\n0x8337C430\t0xECD9\n0x8337C431\t0xECDA\n0x8337C432\t0xECDB\n0x8337C433\t0xECDC\n0x8337C434\t0xECDD\n0x8337C435\t0xECDE\n0x8337C436\t0xECDF\n0x8337C437\t0xECE0\n0x8337C438\t0xECE1\n0x8337C439\t0xECE2\n0x8337C530\t0xECE3\n0x8337C531\t0xECE4\n0x8337C532\t0xECE5\n0x8337C533\t0xECE6\n0x8337C534\t0xECE7\n0x8337C535\t0xECE8\n0x8337C536\t0xECE9\n0x8337C537\t0xECEA\n0x8337C538\t0xECEB\n0x8337C539\t0xECEC\n0x8337C630\t0xECED\n0x8337C631\t0xECEE\n0x8337C632\t0xECEF\n0x8337C633\t0xECF0\n0x8337C634\t0xECF1\n0x8337C635\t0xECF2\n0x8337C636\t0xECF3\n0x8337C637\t0xECF4\n0x8337C638\t0xECF5\n0x8337C639\t0xECF6\n0x8337C730\t0xECF7\n0x8337C731\t0xECF8\n0x8337C732\t0xECF9\n0x8337C733\t0xECFA\n0x8337C734\t0xECFB\n0x8337C735\t0xECFC\n0x8337C736\t0xECFD\n0x8337C737\t0xECFE\n0x8337C738\t0xECFF\n0x8337C739\t0xED00\n0x8337C830\t0xED01\n0x8337C831\t0xED02\n0x8337C832\t0xED03\n0x8337C833\t0xED04\n0x8337C834\t0xED05\n0x8337C835\t0xED06\n0x8337C836\t0xED07\n0x8337C837\t0xED08\n0x8337C838\t0xED09\n0x8337C839\t0xED0A\n0x8337C930\t0xED0B\n0x8337C931\t0xED0C\n0x8337C932\t0xED0D\n0x8337C933\t0xED0E\n0x8337C934\t0xED0F\n0x8337C935\t0xED10\n0x8337C936\t0xED11\n0x8337C937\t0xED12\n0x8337C938\t0xED13\n0x8337C939\t0xED14\n0x8337CA30\t0xED15\n0x8337CA31\t0xED16\n0x8337CA32\t0xED17\n0x8337CA33\t0xED18\n0x8337CA34\t0xED19\n0x8337CA35\t0xED1A\n0x8337CA36\t0xED1B\n0x8337CA37\t0xED1C\n0x8337CA38\t0xED1D\n0x8337CA39\t0xED1E\n0x8337CB30\t0xED1F\n0x8337CB31\t0xED20\n0x8337CB32\t0xED21\n0x8337CB33\t0xED22\n0x8337CB34\t0xED23\n0x8337CB35\t0xED24\n0x8337CB36\t0xED25\n0x8337CB37\t0xED26\n0x8337CB38\t0xED27\n0x8337CB39\t0xED28\n0x8337CC30\t0xED29\n0x8337CC31\t0xED2A\n0x8337CC32\t0xED2B\n0x8337CC33\t0xED2C\n0x8337CC34\t0xED2D\n0x8337CC35\t0xED2E\n0x8337CC36\t0xED2F\n0x8337CC37\t0xED30\n0x8337CC38\t0xED31\n0x8337CC39\t0xED32\n0x8337CD30\t0xED33\n0x8337CD31\t0xED34\n0x8337CD32\t0xED35\n0x8337CD33\t0xED36\n0x8337CD34\t0xED37\n0x8337CD35\t0xED38\n0x8337CD36\t0xED39\n0x8337CD37\t0xED3A\n0x8337CD38\t0xED3B\n0x8337CD39\t0xED3C\n0x8337CE30\t0xED3D\n0x8337CE31\t0xED3E\n0x8337CE32\t0xED3F\n0x8337CE33\t0xED40\n0x8337CE34\t0xED41\n0x8337CE35\t0xED42\n0x8337CE36\t0xED43\n0x8337CE37\t0xED44\n0x8337CE38\t0xED45\n0x8337CE39\t0xED46\n0x8337CF30\t0xED47\n0x8337CF31\t0xED48\n0x8337CF32\t0xED49\n0x8337CF33\t0xED4A\n0x8337CF34\t0xED4B\n0x8337CF35\t0xED4C\n0x8337CF36\t0xED4D\n0x8337CF37\t0xED4E\n0x8337CF38\t0xED4F\n0x8337CF39\t0xED50\n0x8337D030\t0xED51\n0x8337D031\t0xED52\n0x8337D032\t0xED53\n0x8337D033\t0xED54\n0x8337D034\t0xED55\n0x8337D035\t0xED56\n0x8337D036\t0xED57\n0x8337D037\t0xED58\n0x8337D038\t0xED59\n0x8337D039\t0xED5A\n0x8337D130\t0xED5B\n0x8337D131\t0xED5C\n0x8337D132\t0xED5D\n0x8337D133\t0xED5E\n0x8337D134\t0xED5F\n0x8337D135\t0xED60\n0x8337D136\t0xED61\n0x8337D137\t0xED62\n0x8337D138\t0xED63\n0x8337D139\t0xED64\n0x8337D230\t0xED65\n0x8337D231\t0xED66\n0x8337D232\t0xED67\n0x8337D233\t0xED68\n0x8337D234\t0xED69\n0x8337D235\t0xED6A\n0x8337D236\t0xED6B\n0x8337D237\t0xED6C\n0x8337D238\t0xED6D\n0x8337D239\t0xED6E\n0x8337D330\t0xED6F\n0x8337D331\t0xED70\n0x8337D332\t0xED71\n0x8337D333\t0xED72\n0x8337D334\t0xED73\n0x8337D335\t0xED74\n0x8337D336\t0xED75\n0x8337D337\t0xED76\n0x8337D338\t0xED77\n0x8337D339\t0xED78\n0x8337D430\t0xED79\n0x8337D431\t0xED7A\n0x8337D432\t0xED7B\n0x8337D433\t0xED7C\n0x8337D434\t0xED7D\n0x8337D435\t0xED7E\n0x8337D436\t0xED7F\n0x8337D437\t0xED80\n0x8337D438\t0xED81\n0x8337D439\t0xED82\n0x8337D530\t0xED83\n0x8337D531\t0xED84\n0x8337D532\t0xED85\n0x8337D533\t0xED86\n0x8337D534\t0xED87\n0x8337D535\t0xED88\n0x8337D536\t0xED89\n0x8337D537\t0xED8A\n0x8337D538\t0xED8B\n0x8337D539\t0xED8C\n0x8337D630\t0xED8D\n0x8337D631\t0xED8E\n0x8337D632\t0xED8F\n0x8337D633\t0xED90\n0x8337D634\t0xED91\n0x8337D635\t0xED92\n0x8337D636\t0xED93\n0x8337D637\t0xED94\n0x8337D638\t0xED95\n0x8337D639\t0xED96\n0x8337D730\t0xED97\n0x8337D731\t0xED98\n0x8337D732\t0xED99\n0x8337D733\t0xED9A\n0x8337D734\t0xED9B\n0x8337D735\t0xED9C\n0x8337D736\t0xED9D\n0x8337D737\t0xED9E\n0x8337D738\t0xED9F\n0x8337D739\t0xEDA0\n0x8337D830\t0xEDA1\n0x8337D831\t0xEDA2\n0x8337D832\t0xEDA3\n0x8337D833\t0xEDA4\n0x8337D834\t0xEDA5\n0x8337D835\t0xEDA6\n0x8337D836\t0xEDA7\n0x8337D837\t0xEDA8\n0x8337D838\t0xEDA9\n0x8337D839\t0xEDAA\n0x8337D930\t0xEDAB\n0x8337D931\t0xEDAC\n0x8337D932\t0xEDAD\n0x8337D933\t0xEDAE\n0x8337D934\t0xEDAF\n0x8337D935\t0xEDB0\n0x8337D936\t0xEDB1\n0x8337D937\t0xEDB2\n0x8337D938\t0xEDB3\n0x8337D939\t0xEDB4\n0x8337DA30\t0xEDB5\n0x8337DA31\t0xEDB6\n0x8337DA32\t0xEDB7\n0x8337DA33\t0xEDB8\n0x8337DA34\t0xEDB9\n0x8337DA35\t0xEDBA\n0x8337DA36\t0xEDBB\n0x8337DA37\t0xEDBC\n0x8337DA38\t0xEDBD\n0x8337DA39\t0xEDBE\n0x8337DB30\t0xEDBF\n0x8337DB31\t0xEDC0\n0x8337DB32\t0xEDC1\n0x8337DB33\t0xEDC2\n0x8337DB34\t0xEDC3\n0x8337DB35\t0xEDC4\n0x8337DB36\t0xEDC5\n0x8337DB37\t0xEDC6\n0x8337DB38\t0xEDC7\n0x8337DB39\t0xEDC8\n0x8337DC30\t0xEDC9\n0x8337DC31\t0xEDCA\n0x8337DC32\t0xEDCB\n0x8337DC33\t0xEDCC\n0x8337DC34\t0xEDCD\n0x8337DC35\t0xEDCE\n0x8337DC36\t0xEDCF\n0x8337DC37\t0xEDD0\n0x8337DC38\t0xEDD1\n0x8337DC39\t0xEDD2\n0x8337DD30\t0xEDD3\n0x8337DD31\t0xEDD4\n0x8337DD32\t0xEDD5\n0x8337DD33\t0xEDD6\n0x8337DD34\t0xEDD7\n0x8337DD35\t0xEDD8\n0x8337DD36\t0xEDD9\n0x8337DD37\t0xEDDA\n0x8337DD38\t0xEDDB\n0x8337DD39\t0xEDDC\n0x8337DE30\t0xEDDD\n0x8337DE31\t0xEDDE\n0x8337DE32\t0xEDDF\n0x8337DE33\t0xEDE0\n0x8337DE34\t0xEDE1\n0x8337DE35\t0xEDE2\n0x8337DE36\t0xEDE3\n0x8337DE37\t0xEDE4\n0x8337DE38\t0xEDE5\n0x8337DE39\t0xEDE6\n0x8337DF30\t0xEDE7\n0x8337DF31\t0xEDE8\n0x8337DF32\t0xEDE9\n0x8337DF33\t0xEDEA\n0x8337DF34\t0xEDEB\n0x8337DF35\t0xEDEC\n0x8337DF36\t0xEDED\n0x8337DF37\t0xEDEE\n0x8337DF38\t0xEDEF\n0x8337DF39\t0xEDF0\n0x8337E030\t0xEDF1\n0x8337E031\t0xEDF2\n0x8337E032\t0xEDF3\n0x8337E033\t0xEDF4\n0x8337E034\t0xEDF5\n0x8337E035\t0xEDF6\n0x8337E036\t0xEDF7\n0x8337E037\t0xEDF8\n0x8337E038\t0xEDF9\n0x8337E039\t0xEDFA\n0x8337E130\t0xEDFB\n0x8337E131\t0xEDFC\n0x8337E132\t0xEDFD\n0x8337E133\t0xEDFE\n0x8337E134\t0xEDFF\n0x8337E135\t0xEE00\n0x8337E136\t0xEE01\n0x8337E137\t0xEE02\n0x8337E138\t0xEE03\n0x8337E139\t0xEE04\n0x8337E230\t0xEE05\n0x8337E231\t0xEE06\n0x8337E232\t0xEE07\n0x8337E233\t0xEE08\n0x8337E234\t0xEE09\n0x8337E235\t0xEE0A\n0x8337E236\t0xEE0B\n0x8337E237\t0xEE0C\n0x8337E238\t0xEE0D\n0x8337E239\t0xEE0E\n0x8337E330\t0xEE0F\n0x8337E331\t0xEE10\n0x8337E332\t0xEE11\n0x8337E333\t0xEE12\n0x8337E334\t0xEE13\n0x8337E335\t0xEE14\n0x8337E336\t0xEE15\n0x8337E337\t0xEE16\n0x8337E338\t0xEE17\n0x8337E339\t0xEE18\n0x8337E430\t0xEE19\n0x8337E431\t0xEE1A\n0x8337E432\t0xEE1B\n0x8337E433\t0xEE1C\n0x8337E434\t0xEE1D\n0x8337E435\t0xEE1E\n0x8337E436\t0xEE1F\n0x8337E437\t0xEE20\n0x8337E438\t0xEE21\n0x8337E439\t0xEE22\n0x8337E530\t0xEE23\n0x8337E531\t0xEE24\n0x8337E532\t0xEE25\n0x8337E533\t0xEE26\n0x8337E534\t0xEE27\n0x8337E535\t0xEE28\n0x8337E536\t0xEE29\n0x8337E537\t0xEE2A\n0x8337E538\t0xEE2B\n0x8337E539\t0xEE2C\n0x8337E630\t0xEE2D\n0x8337E631\t0xEE2E\n0x8337E632\t0xEE2F\n0x8337E633\t0xEE30\n0x8337E634\t0xEE31\n0x8337E635\t0xEE32\n0x8337E636\t0xEE33\n0x8337E637\t0xEE34\n0x8337E638\t0xEE35\n0x8337E639\t0xEE36\n0x8337E730\t0xEE37\n0x8337E731\t0xEE38\n0x8337E732\t0xEE39\n0x8337E733\t0xEE3A\n0x8337E734\t0xEE3B\n0x8337E735\t0xEE3C\n0x8337E736\t0xEE3D\n0x8337E737\t0xEE3E\n0x8337E738\t0xEE3F\n0x8337E739\t0xEE40\n0x8337E830\t0xEE41\n0x8337E831\t0xEE42\n0x8337E832\t0xEE43\n0x8337E833\t0xEE44\n0x8337E834\t0xEE45\n0x8337E835\t0xEE46\n0x8337E836\t0xEE47\n0x8337E837\t0xEE48\n0x8337E838\t0xEE49\n0x8337E839\t0xEE4A\n0x8337E930\t0xEE4B\n0x8337E931\t0xEE4C\n0x8337E932\t0xEE4D\n0x8337E933\t0xEE4E\n0x8337E934\t0xEE4F\n0x8337E935\t0xEE50\n0x8337E936\t0xEE51\n0x8337E937\t0xEE52\n0x8337E938\t0xEE53\n0x8337E939\t0xEE54\n0x8337EA30\t0xEE55\n0x8337EA31\t0xEE56\n0x8337EA32\t0xEE57\n0x8337EA33\t0xEE58\n0x8337EA34\t0xEE59\n0x8337EA35\t0xEE5A\n0x8337EA36\t0xEE5B\n0x8337EA37\t0xEE5C\n0x8337EA38\t0xEE5D\n0x8337EA39\t0xEE5E\n0x8337EB30\t0xEE5F\n0x8337EB31\t0xEE60\n0x8337EB32\t0xEE61\n0x8337EB33\t0xEE62\n0x8337EB34\t0xEE63\n0x8337EB35\t0xEE64\n0x8337EB36\t0xEE65\n0x8337EB37\t0xEE66\n0x8337EB38\t0xEE67\n0x8337EB39\t0xEE68\n0x8337EC30\t0xEE69\n0x8337EC31\t0xEE6A\n0x8337EC32\t0xEE6B\n0x8337EC33\t0xEE6C\n0x8337EC34\t0xEE6D\n0x8337EC35\t0xEE6E\n0x8337EC36\t0xEE6F\n0x8337EC37\t0xEE70\n0x8337EC38\t0xEE71\n0x8337EC39\t0xEE72\n0x8337ED30\t0xEE73\n0x8337ED31\t0xEE74\n0x8337ED32\t0xEE75\n0x8337ED33\t0xEE76\n0x8337ED34\t0xEE77\n0x8337ED35\t0xEE78\n0x8337ED36\t0xEE79\n0x8337ED37\t0xEE7A\n0x8337ED38\t0xEE7B\n0x8337ED39\t0xEE7C\n0x8337EE30\t0xEE7D\n0x8337EE31\t0xEE7E\n0x8337EE32\t0xEE7F\n0x8337EE33\t0xEE80\n0x8337EE34\t0xEE81\n0x8337EE35\t0xEE82\n0x8337EE36\t0xEE83\n0x8337EE37\t0xEE84\n0x8337EE38\t0xEE85\n0x8337EE39\t0xEE86\n0x8337EF30\t0xEE87\n0x8337EF31\t0xEE88\n0x8337EF32\t0xEE89\n0x8337EF33\t0xEE8A\n0x8337EF34\t0xEE8B\n0x8337EF35\t0xEE8C\n0x8337EF36\t0xEE8D\n0x8337EF37\t0xEE8E\n0x8337EF38\t0xEE8F\n0x8337EF39\t0xEE90\n0x8337F030\t0xEE91\n0x8337F031\t0xEE92\n0x8337F032\t0xEE93\n0x8337F033\t0xEE94\n0x8337F034\t0xEE95\n0x8337F035\t0xEE96\n0x8337F036\t0xEE97\n0x8337F037\t0xEE98\n0x8337F038\t0xEE99\n0x8337F039\t0xEE9A\n0x8337F130\t0xEE9B\n0x8337F131\t0xEE9C\n0x8337F132\t0xEE9D\n0x8337F133\t0xEE9E\n0x8337F134\t0xEE9F\n0x8337F135\t0xEEA0\n0x8337F136\t0xEEA1\n0x8337F137\t0xEEA2\n0x8337F138\t0xEEA3\n0x8337F139\t0xEEA4\n0x8337F230\t0xEEA5\n0x8337F231\t0xEEA6\n0x8337F232\t0xEEA7\n0x8337F233\t0xEEA8\n0x8337F234\t0xEEA9\n0x8337F235\t0xEEAA\n0x8337F236\t0xEEAB\n0x8337F237\t0xEEAC\n0x8337F238\t0xEEAD\n0x8337F239\t0xEEAE\n0x8337F330\t0xEEAF\n0x8337F331\t0xEEB0\n0x8337F332\t0xEEB1\n0x8337F333\t0xEEB2\n0x8337F334\t0xEEB3\n0x8337F335\t0xEEB4\n0x8337F336\t0xEEB5\n0x8337F337\t0xEEB6\n0x8337F338\t0xEEB7\n0x8337F339\t0xEEB8\n0x8337F430\t0xEEB9\n0x8337F431\t0xEEBA\n0x8337F432\t0xEEBB\n0x8337F433\t0xEEBC\n0x8337F434\t0xEEBD\n0x8337F435\t0xEEBE\n0x8337F436\t0xEEBF\n0x8337F437\t0xEEC0\n0x8337F438\t0xEEC1\n0x8337F439\t0xEEC2\n0x8337F530\t0xEEC3\n0x8337F531\t0xEEC4\n0x8337F532\t0xEEC5\n0x8337F533\t0xEEC6\n0x8337F534\t0xEEC7\n0x8337F535\t0xEEC8\n0x8337F536\t0xEEC9\n0x8337F537\t0xEECA\n0x8337F538\t0xEECB\n0x8337F539\t0xEECC\n0x8337F630\t0xEECD\n0x8337F631\t0xEECE\n0x8337F632\t0xEECF\n0x8337F633\t0xEED0\n0x8337F634\t0xEED1\n0x8337F635\t0xEED2\n0x8337F636\t0xEED3\n0x8337F637\t0xEED4\n0x8337F638\t0xEED5\n0x8337F639\t0xEED6\n0x8337F730\t0xEED7\n0x8337F731\t0xEED8\n0x8337F732\t0xEED9\n0x8337F733\t0xEEDA\n0x8337F734\t0xEEDB\n0x8337F735\t0xEEDC\n0x8337F736\t0xEEDD\n0x8337F737\t0xEEDE\n0x8337F738\t0xEEDF\n0x8337F739\t0xEEE0\n0x8337F830\t0xEEE1\n0x8337F831\t0xEEE2\n0x8337F832\t0xEEE3\n0x8337F833\t0xEEE4\n0x8337F834\t0xEEE5\n0x8337F835\t0xEEE6\n0x8337F836\t0xEEE7\n0x8337F837\t0xEEE8\n0x8337F838\t0xEEE9\n0x8337F839\t0xEEEA\n0x8337F930\t0xEEEB\n0x8337F931\t0xEEEC\n0x8337F932\t0xEEED\n0x8337F933\t0xEEEE\n0x8337F934\t0xEEEF\n0x8337F935\t0xEEF0\n0x8337F936\t0xEEF1\n0x8337F937\t0xEEF2\n0x8337F938\t0xEEF3\n0x8337F939\t0xEEF4\n0x8337FA30\t0xEEF5\n0x8337FA31\t0xEEF6\n0x8337FA32\t0xEEF7\n0x8337FA33\t0xEEF8\n0x8337FA34\t0xEEF9\n0x8337FA35\t0xEEFA\n0x8337FA36\t0xEEFB\n0x8337FA37\t0xEEFC\n0x8337FA38\t0xEEFD\n0x8337FA39\t0xEEFE\n0x8337FB30\t0xEEFF\n0x8337FB31\t0xEF00\n0x8337FB32\t0xEF01\n0x8337FB33\t0xEF02\n0x8337FB34\t0xEF03\n0x8337FB35\t0xEF04\n0x8337FB36\t0xEF05\n0x8337FB37\t0xEF06\n0x8337FB38\t0xEF07\n0x8337FB39\t0xEF08\n0x8337FC30\t0xEF09\n0x8337FC31\t0xEF0A\n0x8337FC32\t0xEF0B\n0x8337FC33\t0xEF0C\n0x8337FC34\t0xEF0D\n0x8337FC35\t0xEF0E\n0x8337FC36\t0xEF0F\n0x8337FC37\t0xEF10\n0x8337FC38\t0xEF11\n0x8337FC39\t0xEF12\n0x8337FD30\t0xEF13\n0x8337FD31\t0xEF14\n0x8337FD32\t0xEF15\n0x8337FD33\t0xEF16\n0x8337FD34\t0xEF17\n0x8337FD35\t0xEF18\n0x8337FD36\t0xEF19\n0x8337FD37\t0xEF1A\n0x8337FD38\t0xEF1B\n0x8337FD39\t0xEF1C\n0x8337FE30\t0xEF1D\n0x8337FE31\t0xEF1E\n0x8337FE32\t0xEF1F\n0x8337FE33\t0xEF20\n0x8337FE34\t0xEF21\n0x8337FE35\t0xEF22\n0x8337FE36\t0xEF23\n0x8337FE37\t0xEF24\n0x8337FE38\t0xEF25\n0x8337FE39\t0xEF26\n0x83388130\t0xEF27\n0x83388131\t0xEF28\n0x83388132\t0xEF29\n0x83388133\t0xEF2A\n0x83388134\t0xEF2B\n0x83388135\t0xEF2C\n0x83388136\t0xEF2D\n0x83388137\t0xEF2E\n0x83388138\t0xEF2F\n0x83388139\t0xEF30\n0x83388230\t0xEF31\n0x83388231\t0xEF32\n0x83388232\t0xEF33\n0x83388233\t0xEF34\n0x83388234\t0xEF35\n0x83388235\t0xEF36\n0x83388236\t0xEF37\n0x83388237\t0xEF38\n0x83388238\t0xEF39\n0x83388239\t0xEF3A\n0x83388330\t0xEF3B\n0x83388331\t0xEF3C\n0x83388332\t0xEF3D\n0x83388333\t0xEF3E\n0x83388334\t0xEF3F\n0x83388335\t0xEF40\n0x83388336\t0xEF41\n0x83388337\t0xEF42\n0x83388338\t0xEF43\n0x83388339\t0xEF44\n0x83388430\t0xEF45\n0x83388431\t0xEF46\n0x83388432\t0xEF47\n0x83388433\t0xEF48\n0x83388434\t0xEF49\n0x83388435\t0xEF4A\n0x83388436\t0xEF4B\n0x83388437\t0xEF4C\n0x83388438\t0xEF4D\n0x83388439\t0xEF4E\n0x83388530\t0xEF4F\n0x83388531\t0xEF50\n0x83388532\t0xEF51\n0x83388533\t0xEF52\n0x83388534\t0xEF53\n0x83388535\t0xEF54\n0x83388536\t0xEF55\n0x83388537\t0xEF56\n0x83388538\t0xEF57\n0x83388539\t0xEF58\n0x83388630\t0xEF59\n0x83388631\t0xEF5A\n0x83388632\t0xEF5B\n0x83388633\t0xEF5C\n0x83388634\t0xEF5D\n0x83388635\t0xEF5E\n0x83388636\t0xEF5F\n0x83388637\t0xEF60\n0x83388638\t0xEF61\n0x83388639\t0xEF62\n0x83388730\t0xEF63\n0x83388731\t0xEF64\n0x83388732\t0xEF65\n0x83388733\t0xEF66\n0x83388734\t0xEF67\n0x83388735\t0xEF68\n0x83388736\t0xEF69\n0x83388737\t0xEF6A\n0x83388738\t0xEF6B\n0x83388739\t0xEF6C\n0x83388830\t0xEF6D\n0x83388831\t0xEF6E\n0x83388832\t0xEF6F\n0x83388833\t0xEF70\n0x83388834\t0xEF71\n0x83388835\t0xEF72\n0x83388836\t0xEF73\n0x83388837\t0xEF74\n0x83388838\t0xEF75\n0x83388839\t0xEF76\n0x83388930\t0xEF77\n0x83388931\t0xEF78\n0x83388932\t0xEF79\n0x83388933\t0xEF7A\n0x83388934\t0xEF7B\n0x83388935\t0xEF7C\n0x83388936\t0xEF7D\n0x83388937\t0xEF7E\n0x83388938\t0xEF7F\n0x83388939\t0xEF80\n0x83388A30\t0xEF81\n0x83388A31\t0xEF82\n0x83388A32\t0xEF83\n0x83388A33\t0xEF84\n0x83388A34\t0xEF85\n0x83388A35\t0xEF86\n0x83388A36\t0xEF87\n0x83388A37\t0xEF88\n0x83388A38\t0xEF89\n0x83388A39\t0xEF8A\n0x83388B30\t0xEF8B\n0x83388B31\t0xEF8C\n0x83388B32\t0xEF8D\n0x83388B33\t0xEF8E\n0x83388B34\t0xEF8F\n0x83388B35\t0xEF90\n0x83388B36\t0xEF91\n0x83388B37\t0xEF92\n0x83388B38\t0xEF93\n0x83388B39\t0xEF94\n0x83388C30\t0xEF95\n0x83388C31\t0xEF96\n0x83388C32\t0xEF97\n0x83388C33\t0xEF98\n0x83388C34\t0xEF99\n0x83388C35\t0xEF9A\n0x83388C36\t0xEF9B\n0x83388C37\t0xEF9C\n0x83388C38\t0xEF9D\n0x83388C39\t0xEF9E\n0x83388D30\t0xEF9F\n0x83388D31\t0xEFA0\n0x83388D32\t0xEFA1\n0x83388D33\t0xEFA2\n0x83388D34\t0xEFA3\n0x83388D35\t0xEFA4\n0x83388D36\t0xEFA5\n0x83388D37\t0xEFA6\n0x83388D38\t0xEFA7\n0x83388D39\t0xEFA8\n0x83388E30\t0xEFA9\n0x83388E31\t0xEFAA\n0x83388E32\t0xEFAB\n0x83388E33\t0xEFAC\n0x83388E34\t0xEFAD\n0x83388E35\t0xEFAE\n0x83388E36\t0xEFAF\n0x83388E37\t0xEFB0\n0x83388E38\t0xEFB1\n0x83388E39\t0xEFB2\n0x83388F30\t0xEFB3\n0x83388F31\t0xEFB4\n0x83388F32\t0xEFB5\n0x83388F33\t0xEFB6\n0x83388F34\t0xEFB7\n0x83388F35\t0xEFB8\n0x83388F36\t0xEFB9\n0x83388F37\t0xEFBA\n0x83388F38\t0xEFBB\n0x83388F39\t0xEFBC\n0x83389030\t0xEFBD\n0x83389031\t0xEFBE\n0x83389032\t0xEFBF\n0x83389033\t0xEFC0\n0x83389034\t0xEFC1\n0x83389035\t0xEFC2\n0x83389036\t0xEFC3\n0x83389037\t0xEFC4\n0x83389038\t0xEFC5\n0x83389039\t0xEFC6\n0x83389130\t0xEFC7\n0x83389131\t0xEFC8\n0x83389132\t0xEFC9\n0x83389133\t0xEFCA\n0x83389134\t0xEFCB\n0x83389135\t0xEFCC\n0x83389136\t0xEFCD\n0x83389137\t0xEFCE\n0x83389138\t0xEFCF\n0x83389139\t0xEFD0\n0x83389230\t0xEFD1\n0x83389231\t0xEFD2\n0x83389232\t0xEFD3\n0x83389233\t0xEFD4\n0x83389234\t0xEFD5\n0x83389235\t0xEFD6\n0x83389236\t0xEFD7\n0x83389237\t0xEFD8\n0x83389238\t0xEFD9\n0x83389239\t0xEFDA\n0x83389330\t0xEFDB\n0x83389331\t0xEFDC\n0x83389332\t0xEFDD\n0x83389333\t0xEFDE\n0x83389334\t0xEFDF\n0x83389335\t0xEFE0\n0x83389336\t0xEFE1\n0x83389337\t0xEFE2\n0x83389338\t0xEFE3\n0x83389339\t0xEFE4\n0x83389430\t0xEFE5\n0x83389431\t0xEFE6\n0x83389432\t0xEFE7\n0x83389433\t0xEFE8\n0x83389434\t0xEFE9\n0x83389435\t0xEFEA\n0x83389436\t0xEFEB\n0x83389437\t0xEFEC\n0x83389438\t0xEFED\n0x83389439\t0xEFEE\n0x83389530\t0xEFEF\n0x83389531\t0xEFF0\n0x83389532\t0xEFF1\n0x83389533\t0xEFF2\n0x83389534\t0xEFF3\n0x83389535\t0xEFF4\n0x83389536\t0xEFF5\n0x83389537\t0xEFF6\n0x83389538\t0xEFF7\n0x83389539\t0xEFF8\n0x83389630\t0xEFF9\n0x83389631\t0xEFFA\n0x83389632\t0xEFFB\n0x83389633\t0xEFFC\n0x83389634\t0xEFFD\n0x83389635\t0xEFFE\n0x83389636\t0xEFFF\n0x83389637\t0xF000\n0x83389638\t0xF001\n0x83389639\t0xF002\n0x83389730\t0xF003\n0x83389731\t0xF004\n0x83389732\t0xF005\n0x83389733\t0xF006\n0x83389734\t0xF007\n0x83389735\t0xF008\n0x83389736\t0xF009\n0x83389737\t0xF00A\n0x83389738\t0xF00B\n0x83389739\t0xF00C\n0x83389830\t0xF00D\n0x83389831\t0xF00E\n0x83389832\t0xF00F\n0x83389833\t0xF010\n0x83389834\t0xF011\n0x83389835\t0xF012\n0x83389836\t0xF013\n0x83389837\t0xF014\n0x83389838\t0xF015\n0x83389839\t0xF016\n0x83389930\t0xF017\n0x83389931\t0xF018\n0x83389932\t0xF019\n0x83389933\t0xF01A\n0x83389934\t0xF01B\n0x83389935\t0xF01C\n0x83389936\t0xF01D\n0x83389937\t0xF01E\n0x83389938\t0xF01F\n0x83389939\t0xF020\n0x83389A30\t0xF021\n0x83389A31\t0xF022\n0x83389A32\t0xF023\n0x83389A33\t0xF024\n0x83389A34\t0xF025\n0x83389A35\t0xF026\n0x83389A36\t0xF027\n0x83389A37\t0xF028\n0x83389A38\t0xF029\n0x83389A39\t0xF02A\n0x83389B30\t0xF02B\n0x83389B31\t0xF02C\n0x83389B32\t0xF02D\n0x83389B33\t0xF02E\n0x83389B34\t0xF02F\n0x83389B35\t0xF030\n0x83389B36\t0xF031\n0x83389B37\t0xF032\n0x83389B38\t0xF033\n0x83389B39\t0xF034\n0x83389C30\t0xF035\n0x83389C31\t0xF036\n0x83389C32\t0xF037\n0x83389C33\t0xF038\n0x83389C34\t0xF039\n0x83389C35\t0xF03A\n0x83389C36\t0xF03B\n0x83389C37\t0xF03C\n0x83389C38\t0xF03D\n0x83389C39\t0xF03E\n0x83389D30\t0xF03F\n0x83389D31\t0xF040\n0x83389D32\t0xF041\n0x83389D33\t0xF042\n0x83389D34\t0xF043\n0x83389D35\t0xF044\n0x83389D36\t0xF045\n0x83389D37\t0xF046\n0x83389D38\t0xF047\n0x83389D39\t0xF048\n0x83389E30\t0xF049\n0x83389E31\t0xF04A\n0x83389E32\t0xF04B\n0x83389E33\t0xF04C\n0x83389E34\t0xF04D\n0x83389E35\t0xF04E\n0x83389E36\t0xF04F\n0x83389E37\t0xF050\n0x83389E38\t0xF051\n0x83389E39\t0xF052\n0x83389F30\t0xF053\n0x83389F31\t0xF054\n0x83389F32\t0xF055\n0x83389F33\t0xF056\n0x83389F34\t0xF057\n0x83389F35\t0xF058\n0x83389F36\t0xF059\n0x83389F37\t0xF05A\n0x83389F38\t0xF05B\n0x83389F39\t0xF05C\n0x8338A030\t0xF05D\n0x8338A031\t0xF05E\n0x8338A032\t0xF05F\n0x8338A033\t0xF060\n0x8338A034\t0xF061\n0x8338A035\t0xF062\n0x8338A036\t0xF063\n0x8338A037\t0xF064\n0x8338A038\t0xF065\n0x8338A039\t0xF066\n0x8338A130\t0xF067\n0x8338A131\t0xF068\n0x8338A132\t0xF069\n0x8338A133\t0xF06A\n0x8338A134\t0xF06B\n0x8338A135\t0xF06C\n0x8338A136\t0xF06D\n0x8338A137\t0xF06E\n0x8338A138\t0xF06F\n0x8338A139\t0xF070\n0x8338A230\t0xF071\n0x8338A231\t0xF072\n0x8338A232\t0xF073\n0x8338A233\t0xF074\n0x8338A234\t0xF075\n0x8338A235\t0xF076\n0x8338A236\t0xF077\n0x8338A237\t0xF078\n0x8338A238\t0xF079\n0x8338A239\t0xF07A\n0x8338A330\t0xF07B\n0x8338A331\t0xF07C\n0x8338A332\t0xF07D\n0x8338A333\t0xF07E\n0x8338A334\t0xF07F\n0x8338A335\t0xF080\n0x8338A336\t0xF081\n0x8338A337\t0xF082\n0x8338A338\t0xF083\n0x8338A339\t0xF084\n0x8338A430\t0xF085\n0x8338A431\t0xF086\n0x8338A432\t0xF087\n0x8338A433\t0xF088\n0x8338A434\t0xF089\n0x8338A435\t0xF08A\n0x8338A436\t0xF08B\n0x8338A437\t0xF08C\n0x8338A438\t0xF08D\n0x8338A439\t0xF08E\n0x8338A530\t0xF08F\n0x8338A531\t0xF090\n0x8338A532\t0xF091\n0x8338A533\t0xF092\n0x8338A534\t0xF093\n0x8338A535\t0xF094\n0x8338A536\t0xF095\n0x8338A537\t0xF096\n0x8338A538\t0xF097\n0x8338A539\t0xF098\n0x8338A630\t0xF099\n0x8338A631\t0xF09A\n0x8338A632\t0xF09B\n0x8338A633\t0xF09C\n0x8338A634\t0xF09D\n0x8338A635\t0xF09E\n0x8338A636\t0xF09F\n0x8338A637\t0xF0A0\n0x8338A638\t0xF0A1\n0x8338A639\t0xF0A2\n0x8338A730\t0xF0A3\n0x8338A731\t0xF0A4\n0x8338A732\t0xF0A5\n0x8338A733\t0xF0A6\n0x8338A734\t0xF0A7\n0x8338A735\t0xF0A8\n0x8338A736\t0xF0A9\n0x8338A737\t0xF0AA\n0x8338A738\t0xF0AB\n0x8338A739\t0xF0AC\n0x8338A830\t0xF0AD\n0x8338A831\t0xF0AE\n0x8338A832\t0xF0AF\n0x8338A833\t0xF0B0\n0x8338A834\t0xF0B1\n0x8338A835\t0xF0B2\n0x8338A836\t0xF0B3\n0x8338A837\t0xF0B4\n0x8338A838\t0xF0B5\n0x8338A839\t0xF0B6\n0x8338A930\t0xF0B7\n0x8338A931\t0xF0B8\n0x8338A932\t0xF0B9\n0x8338A933\t0xF0BA\n0x8338A934\t0xF0BB\n0x8338A935\t0xF0BC\n0x8338A936\t0xF0BD\n0x8338A937\t0xF0BE\n0x8338A938\t0xF0BF\n0x8338A939\t0xF0C0\n0x8338AA30\t0xF0C1\n0x8338AA31\t0xF0C2\n0x8338AA32\t0xF0C3\n0x8338AA33\t0xF0C4\n0x8338AA34\t0xF0C5\n0x8338AA35\t0xF0C6\n0x8338AA36\t0xF0C7\n0x8338AA37\t0xF0C8\n0x8338AA38\t0xF0C9\n0x8338AA39\t0xF0CA\n0x8338AB30\t0xF0CB\n0x8338AB31\t0xF0CC\n0x8338AB32\t0xF0CD\n0x8338AB33\t0xF0CE\n0x8338AB34\t0xF0CF\n0x8338AB35\t0xF0D0\n0x8338AB36\t0xF0D1\n0x8338AB37\t0xF0D2\n0x8338AB38\t0xF0D3\n0x8338AB39\t0xF0D4\n0x8338AC30\t0xF0D5\n0x8338AC31\t0xF0D6\n0x8338AC32\t0xF0D7\n0x8338AC33\t0xF0D8\n0x8338AC34\t0xF0D9\n0x8338AC35\t0xF0DA\n0x8338AC36\t0xF0DB\n0x8338AC37\t0xF0DC\n0x8338AC38\t0xF0DD\n0x8338AC39\t0xF0DE\n0x8338AD30\t0xF0DF\n0x8338AD31\t0xF0E0\n0x8338AD32\t0xF0E1\n0x8338AD33\t0xF0E2\n0x8338AD34\t0xF0E3\n0x8338AD35\t0xF0E4\n0x8338AD36\t0xF0E5\n0x8338AD37\t0xF0E6\n0x8338AD38\t0xF0E7\n0x8338AD39\t0xF0E8\n0x8338AE30\t0xF0E9\n0x8338AE31\t0xF0EA\n0x8338AE32\t0xF0EB\n0x8338AE33\t0xF0EC\n0x8338AE34\t0xF0ED\n0x8338AE35\t0xF0EE\n0x8338AE36\t0xF0EF\n0x8338AE37\t0xF0F0\n0x8338AE38\t0xF0F1\n0x8338AE39\t0xF0F2\n0x8338AF30\t0xF0F3\n0x8338AF31\t0xF0F4\n0x8338AF32\t0xF0F5\n0x8338AF33\t0xF0F6\n0x8338AF34\t0xF0F7\n0x8338AF35\t0xF0F8\n0x8338AF36\t0xF0F9\n0x8338AF37\t0xF0FA\n0x8338AF38\t0xF0FB\n0x8338AF39\t0xF0FC\n0x8338B030\t0xF0FD\n0x8338B031\t0xF0FE\n0x8338B032\t0xF0FF\n0x8338B033\t0xF100\n0x8338B034\t0xF101\n0x8338B035\t0xF102\n0x8338B036\t0xF103\n0x8338B037\t0xF104\n0x8338B038\t0xF105\n0x8338B039\t0xF106\n0x8338B130\t0xF107\n0x8338B131\t0xF108\n0x8338B132\t0xF109\n0x8338B133\t0xF10A\n0x8338B134\t0xF10B\n0x8338B135\t0xF10C\n0x8338B136\t0xF10D\n0x8338B137\t0xF10E\n0x8338B138\t0xF10F\n0x8338B139\t0xF110\n0x8338B230\t0xF111\n0x8338B231\t0xF112\n0x8338B232\t0xF113\n0x8338B233\t0xF114\n0x8338B234\t0xF115\n0x8338B235\t0xF116\n0x8338B236\t0xF117\n0x8338B237\t0xF118\n0x8338B238\t0xF119\n0x8338B239\t0xF11A\n0x8338B330\t0xF11B\n0x8338B331\t0xF11C\n0x8338B332\t0xF11D\n0x8338B333\t0xF11E\n0x8338B334\t0xF11F\n0x8338B335\t0xF120\n0x8338B336\t0xF121\n0x8338B337\t0xF122\n0x8338B338\t0xF123\n0x8338B339\t0xF124\n0x8338B430\t0xF125\n0x8338B431\t0xF126\n0x8338B432\t0xF127\n0x8338B433\t0xF128\n0x8338B434\t0xF129\n0x8338B435\t0xF12A\n0x8338B436\t0xF12B\n0x8338B437\t0xF12C\n0x8338B438\t0xF12D\n0x8338B439\t0xF12E\n0x8338B530\t0xF12F\n0x8338B531\t0xF130\n0x8338B532\t0xF131\n0x8338B533\t0xF132\n0x8338B534\t0xF133\n0x8338B535\t0xF134\n0x8338B536\t0xF135\n0x8338B537\t0xF136\n0x8338B538\t0xF137\n0x8338B539\t0xF138\n0x8338B630\t0xF139\n0x8338B631\t0xF13A\n0x8338B632\t0xF13B\n0x8338B633\t0xF13C\n0x8338B634\t0xF13D\n0x8338B635\t0xF13E\n0x8338B636\t0xF13F\n0x8338B637\t0xF140\n0x8338B638\t0xF141\n0x8338B639\t0xF142\n0x8338B730\t0xF143\n0x8338B731\t0xF144\n0x8338B732\t0xF145\n0x8338B733\t0xF146\n0x8338B734\t0xF147\n0x8338B735\t0xF148\n0x8338B736\t0xF149\n0x8338B737\t0xF14A\n0x8338B738\t0xF14B\n0x8338B739\t0xF14C\n0x8338B830\t0xF14D\n0x8338B831\t0xF14E\n0x8338B832\t0xF14F\n0x8338B833\t0xF150\n0x8338B834\t0xF151\n0x8338B835\t0xF152\n0x8338B836\t0xF153\n0x8338B837\t0xF154\n0x8338B838\t0xF155\n0x8338B839\t0xF156\n0x8338B930\t0xF157\n0x8338B931\t0xF158\n0x8338B932\t0xF159\n0x8338B933\t0xF15A\n0x8338B934\t0xF15B\n0x8338B935\t0xF15C\n0x8338B936\t0xF15D\n0x8338B937\t0xF15E\n0x8338B938\t0xF15F\n0x8338B939\t0xF160\n0x8338BA30\t0xF161\n0x8338BA31\t0xF162\n0x8338BA32\t0xF163\n0x8338BA33\t0xF164\n0x8338BA34\t0xF165\n0x8338BA35\t0xF166\n0x8338BA36\t0xF167\n0x8338BA37\t0xF168\n0x8338BA38\t0xF169\n0x8338BA39\t0xF16A\n0x8338BB30\t0xF16B\n0x8338BB31\t0xF16C\n0x8338BB32\t0xF16D\n0x8338BB33\t0xF16E\n0x8338BB34\t0xF16F\n0x8338BB35\t0xF170\n0x8338BB36\t0xF171\n0x8338BB37\t0xF172\n0x8338BB38\t0xF173\n0x8338BB39\t0xF174\n0x8338BC30\t0xF175\n0x8338BC31\t0xF176\n0x8338BC32\t0xF177\n0x8338BC33\t0xF178\n0x8338BC34\t0xF179\n0x8338BC35\t0xF17A\n0x8338BC36\t0xF17B\n0x8338BC37\t0xF17C\n0x8338BC38\t0xF17D\n0x8338BC39\t0xF17E\n0x8338BD30\t0xF17F\n0x8338BD31\t0xF180\n0x8338BD32\t0xF181\n0x8338BD33\t0xF182\n0x8338BD34\t0xF183\n0x8338BD35\t0xF184\n0x8338BD36\t0xF185\n0x8338BD37\t0xF186\n0x8338BD38\t0xF187\n0x8338BD39\t0xF188\n0x8338BE30\t0xF189\n0x8338BE31\t0xF18A\n0x8338BE32\t0xF18B\n0x8338BE33\t0xF18C\n0x8338BE34\t0xF18D\n0x8338BE35\t0xF18E\n0x8338BE36\t0xF18F\n0x8338BE37\t0xF190\n0x8338BE38\t0xF191\n0x8338BE39\t0xF192\n0x8338BF30\t0xF193\n0x8338BF31\t0xF194\n0x8338BF32\t0xF195\n0x8338BF33\t0xF196\n0x8338BF34\t0xF197\n0x8338BF35\t0xF198\n0x8338BF36\t0xF199\n0x8338BF37\t0xF19A\n0x8338BF38\t0xF19B\n0x8338BF39\t0xF19C\n0x8338C030\t0xF19D\n0x8338C031\t0xF19E\n0x8338C032\t0xF19F\n0x8338C033\t0xF1A0\n0x8338C034\t0xF1A1\n0x8338C035\t0xF1A2\n0x8338C036\t0xF1A3\n0x8338C037\t0xF1A4\n0x8338C038\t0xF1A5\n0x8338C039\t0xF1A6\n0x8338C130\t0xF1A7\n0x8338C131\t0xF1A8\n0x8338C132\t0xF1A9\n0x8338C133\t0xF1AA\n0x8338C134\t0xF1AB\n0x8338C135\t0xF1AC\n0x8338C136\t0xF1AD\n0x8338C137\t0xF1AE\n0x8338C138\t0xF1AF\n0x8338C139\t0xF1B0\n0x8338C230\t0xF1B1\n0x8338C231\t0xF1B2\n0x8338C232\t0xF1B3\n0x8338C233\t0xF1B4\n0x8338C234\t0xF1B5\n0x8338C235\t0xF1B6\n0x8338C236\t0xF1B7\n0x8338C237\t0xF1B8\n0x8338C238\t0xF1B9\n0x8338C239\t0xF1BA\n0x8338C330\t0xF1BB\n0x8338C331\t0xF1BC\n0x8338C332\t0xF1BD\n0x8338C333\t0xF1BE\n0x8338C334\t0xF1BF\n0x8338C335\t0xF1C0\n0x8338C336\t0xF1C1\n0x8338C337\t0xF1C2\n0x8338C338\t0xF1C3\n0x8338C339\t0xF1C4\n0x8338C430\t0xF1C5\n0x8338C431\t0xF1C6\n0x8338C432\t0xF1C7\n0x8338C433\t0xF1C8\n0x8338C434\t0xF1C9\n0x8338C435\t0xF1CA\n0x8338C436\t0xF1CB\n0x8338C437\t0xF1CC\n0x8338C438\t0xF1CD\n0x8338C439\t0xF1CE\n0x8338C530\t0xF1CF\n0x8338C531\t0xF1D0\n0x8338C532\t0xF1D1\n0x8338C533\t0xF1D2\n0x8338C534\t0xF1D3\n0x8338C535\t0xF1D4\n0x8338C536\t0xF1D5\n0x8338C537\t0xF1D6\n0x8338C538\t0xF1D7\n0x8338C539\t0xF1D8\n0x8338C630\t0xF1D9\n0x8338C631\t0xF1DA\n0x8338C632\t0xF1DB\n0x8338C633\t0xF1DC\n0x8338C634\t0xF1DD\n0x8338C635\t0xF1DE\n0x8338C636\t0xF1DF\n0x8338C637\t0xF1E0\n0x8338C638\t0xF1E1\n0x8338C639\t0xF1E2\n0x8338C730\t0xF1E3\n0x8338C731\t0xF1E4\n0x8338C732\t0xF1E5\n0x8338C733\t0xF1E6\n0x8338C734\t0xF1E7\n0x8338C735\t0xF1E8\n0x8338C736\t0xF1E9\n0x8338C737\t0xF1EA\n0x8338C738\t0xF1EB\n0x8338C739\t0xF1EC\n0x8338C830\t0xF1ED\n0x8338C831\t0xF1EE\n0x8338C832\t0xF1EF\n0x8338C833\t0xF1F0\n0x8338C834\t0xF1F1\n0x8338C835\t0xF1F2\n0x8338C836\t0xF1F3\n0x8338C837\t0xF1F4\n0x8338C838\t0xF1F5\n0x8338C839\t0xF1F6\n0x8338C930\t0xF1F7\n0x8338C931\t0xF1F8\n0x8338C932\t0xF1F9\n0x8338C933\t0xF1FA\n0x8338C934\t0xF1FB\n0x8338C935\t0xF1FC\n0x8338C936\t0xF1FD\n0x8338C937\t0xF1FE\n0x8338C938\t0xF1FF\n0x8338C939\t0xF200\n0x8338CA30\t0xF201\n0x8338CA31\t0xF202\n0x8338CA32\t0xF203\n0x8338CA33\t0xF204\n0x8338CA34\t0xF205\n0x8338CA35\t0xF206\n0x8338CA36\t0xF207\n0x8338CA37\t0xF208\n0x8338CA38\t0xF209\n0x8338CA39\t0xF20A\n0x8338CB30\t0xF20B\n0x8338CB31\t0xF20C\n0x8338CB32\t0xF20D\n0x8338CB33\t0xF20E\n0x8338CB34\t0xF20F\n0x8338CB35\t0xF210\n0x8338CB36\t0xF211\n0x8338CB37\t0xF212\n0x8338CB38\t0xF213\n0x8338CB39\t0xF214\n0x8338CC30\t0xF215\n0x8338CC31\t0xF216\n0x8338CC32\t0xF217\n0x8338CC33\t0xF218\n0x8338CC34\t0xF219\n0x8338CC35\t0xF21A\n0x8338CC36\t0xF21B\n0x8338CC37\t0xF21C\n0x8338CC38\t0xF21D\n0x8338CC39\t0xF21E\n0x8338CD30\t0xF21F\n0x8338CD31\t0xF220\n0x8338CD32\t0xF221\n0x8338CD33\t0xF222\n0x8338CD34\t0xF223\n0x8338CD35\t0xF224\n0x8338CD36\t0xF225\n0x8338CD37\t0xF226\n0x8338CD38\t0xF227\n0x8338CD39\t0xF228\n0x8338CE30\t0xF229\n0x8338CE31\t0xF22A\n0x8338CE32\t0xF22B\n0x8338CE33\t0xF22C\n0x8338CE34\t0xF22D\n0x8338CE35\t0xF22E\n0x8338CE36\t0xF22F\n0x8338CE37\t0xF230\n0x8338CE38\t0xF231\n0x8338CE39\t0xF232\n0x8338CF30\t0xF233\n0x8338CF31\t0xF234\n0x8338CF32\t0xF235\n0x8338CF33\t0xF236\n0x8338CF34\t0xF237\n0x8338CF35\t0xF238\n0x8338CF36\t0xF239\n0x8338CF37\t0xF23A\n0x8338CF38\t0xF23B\n0x8338CF39\t0xF23C\n0x8338D030\t0xF23D\n0x8338D031\t0xF23E\n0x8338D032\t0xF23F\n0x8338D033\t0xF240\n0x8338D034\t0xF241\n0x8338D035\t0xF242\n0x8338D036\t0xF243\n0x8338D037\t0xF244\n0x8338D038\t0xF245\n0x8338D039\t0xF246\n0x8338D130\t0xF247\n0x8338D131\t0xF248\n0x8338D132\t0xF249\n0x8338D133\t0xF24A\n0x8338D134\t0xF24B\n0x8338D135\t0xF24C\n0x8338D136\t0xF24D\n0x8338D137\t0xF24E\n0x8338D138\t0xF24F\n0x8338D139\t0xF250\n0x8338D230\t0xF251\n0x8338D231\t0xF252\n0x8338D232\t0xF253\n0x8338D233\t0xF254\n0x8338D234\t0xF255\n0x8338D235\t0xF256\n0x8338D236\t0xF257\n0x8338D237\t0xF258\n0x8338D238\t0xF259\n0x8338D239\t0xF25A\n0x8338D330\t0xF25B\n0x8338D331\t0xF25C\n0x8338D332\t0xF25D\n0x8338D333\t0xF25E\n0x8338D334\t0xF25F\n0x8338D335\t0xF260\n0x8338D336\t0xF261\n0x8338D337\t0xF262\n0x8338D338\t0xF263\n0x8338D339\t0xF264\n0x8338D430\t0xF265\n0x8338D431\t0xF266\n0x8338D432\t0xF267\n0x8338D433\t0xF268\n0x8338D434\t0xF269\n0x8338D435\t0xF26A\n0x8338D436\t0xF26B\n0x8338D437\t0xF26C\n0x8338D438\t0xF26D\n0x8338D439\t0xF26E\n0x8338D530\t0xF26F\n0x8338D531\t0xF270\n0x8338D532\t0xF271\n0x8338D533\t0xF272\n0x8338D534\t0xF273\n0x8338D535\t0xF274\n0x8338D536\t0xF275\n0x8338D537\t0xF276\n0x8338D538\t0xF277\n0x8338D539\t0xF278\n0x8338D630\t0xF279\n0x8338D631\t0xF27A\n0x8338D632\t0xF27B\n0x8338D633\t0xF27C\n0x8338D634\t0xF27D\n0x8338D635\t0xF27E\n0x8338D636\t0xF27F\n0x8338D637\t0xF280\n0x8338D638\t0xF281\n0x8338D639\t0xF282\n0x8338D730\t0xF283\n0x8338D731\t0xF284\n0x8338D732\t0xF285\n0x8338D733\t0xF286\n0x8338D734\t0xF287\n0x8338D735\t0xF288\n0x8338D736\t0xF289\n0x8338D737\t0xF28A\n0x8338D738\t0xF28B\n0x8338D739\t0xF28C\n0x8338D830\t0xF28D\n0x8338D831\t0xF28E\n0x8338D832\t0xF28F\n0x8338D833\t0xF290\n0x8338D834\t0xF291\n0x8338D835\t0xF292\n0x8338D836\t0xF293\n0x8338D837\t0xF294\n0x8338D838\t0xF295\n0x8338D839\t0xF296\n0x8338D930\t0xF297\n0x8338D931\t0xF298\n0x8338D932\t0xF299\n0x8338D933\t0xF29A\n0x8338D934\t0xF29B\n0x8338D935\t0xF29C\n0x8338D936\t0xF29D\n0x8338D937\t0xF29E\n0x8338D938\t0xF29F\n0x8338D939\t0xF2A0\n0x8338DA30\t0xF2A1\n0x8338DA31\t0xF2A2\n0x8338DA32\t0xF2A3\n0x8338DA33\t0xF2A4\n0x8338DA34\t0xF2A5\n0x8338DA35\t0xF2A6\n0x8338DA36\t0xF2A7\n0x8338DA37\t0xF2A8\n0x8338DA38\t0xF2A9\n0x8338DA39\t0xF2AA\n0x8338DB30\t0xF2AB\n0x8338DB31\t0xF2AC\n0x8338DB32\t0xF2AD\n0x8338DB33\t0xF2AE\n0x8338DB34\t0xF2AF\n0x8338DB35\t0xF2B0\n0x8338DB36\t0xF2B1\n0x8338DB37\t0xF2B2\n0x8338DB38\t0xF2B3\n0x8338DB39\t0xF2B4\n0x8338DC30\t0xF2B5\n0x8338DC31\t0xF2B6\n0x8338DC32\t0xF2B7\n0x8338DC33\t0xF2B8\n0x8338DC34\t0xF2B9\n0x8338DC35\t0xF2BA\n0x8338DC36\t0xF2BB\n0x8338DC37\t0xF2BC\n0x8338DC38\t0xF2BD\n0x8338DC39\t0xF2BE\n0x8338DD30\t0xF2BF\n0x8338DD31\t0xF2C0\n0x8338DD32\t0xF2C1\n0x8338DD33\t0xF2C2\n0x8338DD34\t0xF2C3\n0x8338DD35\t0xF2C4\n0x8338DD36\t0xF2C5\n0x8338DD37\t0xF2C6\n0x8338DD38\t0xF2C7\n0x8338DD39\t0xF2C8\n0x8338DE30\t0xF2C9\n0x8338DE31\t0xF2CA\n0x8338DE32\t0xF2CB\n0x8338DE33\t0xF2CC\n0x8338DE34\t0xF2CD\n0x8338DE35\t0xF2CE\n0x8338DE36\t0xF2CF\n0x8338DE37\t0xF2D0\n0x8338DE38\t0xF2D1\n0x8338DE39\t0xF2D2\n0x8338DF30\t0xF2D3\n0x8338DF31\t0xF2D4\n0x8338DF32\t0xF2D5\n0x8338DF33\t0xF2D6\n0x8338DF34\t0xF2D7\n0x8338DF35\t0xF2D8\n0x8338DF36\t0xF2D9\n0x8338DF37\t0xF2DA\n0x8338DF38\t0xF2DB\n0x8338DF39\t0xF2DC\n0x8338E030\t0xF2DD\n0x8338E031\t0xF2DE\n0x8338E032\t0xF2DF\n0x8338E033\t0xF2E0\n0x8338E034\t0xF2E1\n0x8338E035\t0xF2E2\n0x8338E036\t0xF2E3\n0x8338E037\t0xF2E4\n0x8338E038\t0xF2E5\n0x8338E039\t0xF2E6\n0x8338E130\t0xF2E7\n0x8338E131\t0xF2E8\n0x8338E132\t0xF2E9\n0x8338E133\t0xF2EA\n0x8338E134\t0xF2EB\n0x8338E135\t0xF2EC\n0x8338E136\t0xF2ED\n0x8338E137\t0xF2EE\n0x8338E138\t0xF2EF\n0x8338E139\t0xF2F0\n0x8338E230\t0xF2F1\n0x8338E231\t0xF2F2\n0x8338E232\t0xF2F3\n0x8338E233\t0xF2F4\n0x8338E234\t0xF2F5\n0x8338E235\t0xF2F6\n0x8338E236\t0xF2F7\n0x8338E237\t0xF2F8\n0x8338E238\t0xF2F9\n0x8338E239\t0xF2FA\n0x8338E330\t0xF2FB\n0x8338E331\t0xF2FC\n0x8338E332\t0xF2FD\n0x8338E333\t0xF2FE\n0x8338E334\t0xF2FF\n0x8338E335\t0xF300\n0x8338E336\t0xF301\n0x8338E337\t0xF302\n0x8338E338\t0xF303\n0x8338E339\t0xF304\n0x8338E430\t0xF305\n0x8338E431\t0xF306\n0x8338E432\t0xF307\n0x8338E433\t0xF308\n0x8338E434\t0xF309\n0x8338E435\t0xF30A\n0x8338E436\t0xF30B\n0x8338E437\t0xF30C\n0x8338E438\t0xF30D\n0x8338E439\t0xF30E\n0x8338E530\t0xF30F\n0x8338E531\t0xF310\n0x8338E532\t0xF311\n0x8338E533\t0xF312\n0x8338E534\t0xF313\n0x8338E535\t0xF314\n0x8338E536\t0xF315\n0x8338E537\t0xF316\n0x8338E538\t0xF317\n0x8338E539\t0xF318\n0x8338E630\t0xF319\n0x8338E631\t0xF31A\n0x8338E632\t0xF31B\n0x8338E633\t0xF31C\n0x8338E634\t0xF31D\n0x8338E635\t0xF31E\n0x8338E636\t0xF31F\n0x8338E637\t0xF320\n0x8338E638\t0xF321\n0x8338E639\t0xF322\n0x8338E730\t0xF323\n0x8338E731\t0xF324\n0x8338E732\t0xF325\n0x8338E733\t0xF326\n0x8338E734\t0xF327\n0x8338E735\t0xF328\n0x8338E736\t0xF329\n0x8338E737\t0xF32A\n0x8338E738\t0xF32B\n0x8338E739\t0xF32C\n0x8338E830\t0xF32D\n0x8338E831\t0xF32E\n0x8338E832\t0xF32F\n0x8338E833\t0xF330\n0x8338E834\t0xF331\n0x8338E835\t0xF332\n0x8338E836\t0xF333\n0x8338E837\t0xF334\n0x8338E838\t0xF335\n0x8338E839\t0xF336\n0x8338E930\t0xF337\n0x8338E931\t0xF338\n0x8338E932\t0xF339\n0x8338E933\t0xF33A\n0x8338E934\t0xF33B\n0x8338E935\t0xF33C\n0x8338E936\t0xF33D\n0x8338E937\t0xF33E\n0x8338E938\t0xF33F\n0x8338E939\t0xF340\n0x8338EA30\t0xF341\n0x8338EA31\t0xF342\n0x8338EA32\t0xF343\n0x8338EA33\t0xF344\n0x8338EA34\t0xF345\n0x8338EA35\t0xF346\n0x8338EA36\t0xF347\n0x8338EA37\t0xF348\n0x8338EA38\t0xF349\n0x8338EA39\t0xF34A\n0x8338EB30\t0xF34B\n0x8338EB31\t0xF34C\n0x8338EB32\t0xF34D\n0x8338EB33\t0xF34E\n0x8338EB34\t0xF34F\n0x8338EB35\t0xF350\n0x8338EB36\t0xF351\n0x8338EB37\t0xF352\n0x8338EB38\t0xF353\n0x8338EB39\t0xF354\n0x8338EC30\t0xF355\n0x8338EC31\t0xF356\n0x8338EC32\t0xF357\n0x8338EC33\t0xF358\n0x8338EC34\t0xF359\n0x8338EC35\t0xF35A\n0x8338EC36\t0xF35B\n0x8338EC37\t0xF35C\n0x8338EC38\t0xF35D\n0x8338EC39\t0xF35E\n0x8338ED30\t0xF35F\n0x8338ED31\t0xF360\n0x8338ED32\t0xF361\n0x8338ED33\t0xF362\n0x8338ED34\t0xF363\n0x8338ED35\t0xF364\n0x8338ED36\t0xF365\n0x8338ED37\t0xF366\n0x8338ED38\t0xF367\n0x8338ED39\t0xF368\n0x8338EE30\t0xF369\n0x8338EE31\t0xF36A\n0x8338EE32\t0xF36B\n0x8338EE33\t0xF36C\n0x8338EE34\t0xF36D\n0x8338EE35\t0xF36E\n0x8338EE36\t0xF36F\n0x8338EE37\t0xF370\n0x8338EE38\t0xF371\n0x8338EE39\t0xF372\n0x8338EF30\t0xF373\n0x8338EF31\t0xF374\n0x8338EF32\t0xF375\n0x8338EF33\t0xF376\n0x8338EF34\t0xF377\n0x8338EF35\t0xF378\n0x8338EF36\t0xF379\n0x8338EF37\t0xF37A\n0x8338EF38\t0xF37B\n0x8338EF39\t0xF37C\n0x8338F030\t0xF37D\n0x8338F031\t0xF37E\n0x8338F032\t0xF37F\n0x8338F033\t0xF380\n0x8338F034\t0xF381\n0x8338F035\t0xF382\n0x8338F036\t0xF383\n0x8338F037\t0xF384\n0x8338F038\t0xF385\n0x8338F039\t0xF386\n0x8338F130\t0xF387\n0x8338F131\t0xF388\n0x8338F132\t0xF389\n0x8338F133\t0xF38A\n0x8338F134\t0xF38B\n0x8338F135\t0xF38C\n0x8338F136\t0xF38D\n0x8338F137\t0xF38E\n0x8338F138\t0xF38F\n0x8338F139\t0xF390\n0x8338F230\t0xF391\n0x8338F231\t0xF392\n0x8338F232\t0xF393\n0x8338F233\t0xF394\n0x8338F234\t0xF395\n0x8338F235\t0xF396\n0x8338F236\t0xF397\n0x8338F237\t0xF398\n0x8338F238\t0xF399\n0x8338F239\t0xF39A\n0x8338F330\t0xF39B\n0x8338F331\t0xF39C\n0x8338F332\t0xF39D\n0x8338F333\t0xF39E\n0x8338F334\t0xF39F\n0x8338F335\t0xF3A0\n0x8338F336\t0xF3A1\n0x8338F337\t0xF3A2\n0x8338F338\t0xF3A3\n0x8338F339\t0xF3A4\n0x8338F430\t0xF3A5\n0x8338F431\t0xF3A6\n0x8338F432\t0xF3A7\n0x8338F433\t0xF3A8\n0x8338F434\t0xF3A9\n0x8338F435\t0xF3AA\n0x8338F436\t0xF3AB\n0x8338F437\t0xF3AC\n0x8338F438\t0xF3AD\n0x8338F439\t0xF3AE\n0x8338F530\t0xF3AF\n0x8338F531\t0xF3B0\n0x8338F532\t0xF3B1\n0x8338F533\t0xF3B2\n0x8338F534\t0xF3B3\n0x8338F535\t0xF3B4\n0x8338F536\t0xF3B5\n0x8338F537\t0xF3B6\n0x8338F538\t0xF3B7\n0x8338F539\t0xF3B8\n0x8338F630\t0xF3B9\n0x8338F631\t0xF3BA\n0x8338F632\t0xF3BB\n0x8338F633\t0xF3BC\n0x8338F634\t0xF3BD\n0x8338F635\t0xF3BE\n0x8338F636\t0xF3BF\n0x8338F637\t0xF3C0\n0x8338F638\t0xF3C1\n0x8338F639\t0xF3C2\n0x8338F730\t0xF3C3\n0x8338F731\t0xF3C4\n0x8338F732\t0xF3C5\n0x8338F733\t0xF3C6\n0x8338F734\t0xF3C7\n0x8338F735\t0xF3C8\n0x8338F736\t0xF3C9\n0x8338F737\t0xF3CA\n0x8338F738\t0xF3CB\n0x8338F739\t0xF3CC\n0x8338F830\t0xF3CD\n0x8338F831\t0xF3CE\n0x8338F832\t0xF3CF\n0x8338F833\t0xF3D0\n0x8338F834\t0xF3D1\n0x8338F835\t0xF3D2\n0x8338F836\t0xF3D3\n0x8338F837\t0xF3D4\n0x8338F838\t0xF3D5\n0x8338F839\t0xF3D6\n0x8338F930\t0xF3D7\n0x8338F931\t0xF3D8\n0x8338F932\t0xF3D9\n0x8338F933\t0xF3DA\n0x8338F934\t0xF3DB\n0x8338F935\t0xF3DC\n0x8338F936\t0xF3DD\n0x8338F937\t0xF3DE\n0x8338F938\t0xF3DF\n0x8338F939\t0xF3E0\n0x8338FA30\t0xF3E1\n0x8338FA31\t0xF3E2\n0x8338FA32\t0xF3E3\n0x8338FA33\t0xF3E4\n0x8338FA34\t0xF3E5\n0x8338FA35\t0xF3E6\n0x8338FA36\t0xF3E7\n0x8338FA37\t0xF3E8\n0x8338FA38\t0xF3E9\n0x8338FA39\t0xF3EA\n0x8338FB30\t0xF3EB\n0x8338FB31\t0xF3EC\n0x8338FB32\t0xF3ED\n0x8338FB33\t0xF3EE\n0x8338FB34\t0xF3EF\n0x8338FB35\t0xF3F0\n0x8338FB36\t0xF3F1\n0x8338FB37\t0xF3F2\n0x8338FB38\t0xF3F3\n0x8338FB39\t0xF3F4\n0x8338FC30\t0xF3F5\n0x8338FC31\t0xF3F6\n0x8338FC32\t0xF3F7\n0x8338FC33\t0xF3F8\n0x8338FC34\t0xF3F9\n0x8338FC35\t0xF3FA\n0x8338FC36\t0xF3FB\n0x8338FC37\t0xF3FC\n0x8338FC38\t0xF3FD\n0x8338FC39\t0xF3FE\n0x8338FD30\t0xF3FF\n0x8338FD31\t0xF400\n0x8338FD32\t0xF401\n0x8338FD33\t0xF402\n0x8338FD34\t0xF403\n0x8338FD35\t0xF404\n0x8338FD36\t0xF405\n0x8338FD37\t0xF406\n0x8338FD38\t0xF407\n0x8338FD39\t0xF408\n0x8338FE30\t0xF409\n0x8338FE31\t0xF40A\n0x8338FE32\t0xF40B\n0x8338FE33\t0xF40C\n0x8338FE34\t0xF40D\n0x8338FE35\t0xF40E\n0x8338FE36\t0xF40F\n0x8338FE37\t0xF410\n0x8338FE38\t0xF411\n0x8338FE39\t0xF412\n0x83398130\t0xF413\n0x83398131\t0xF414\n0x83398132\t0xF415\n0x83398133\t0xF416\n0x83398134\t0xF417\n0x83398135\t0xF418\n0x83398136\t0xF419\n0x83398137\t0xF41A\n0x83398138\t0xF41B\n0x83398139\t0xF41C\n0x83398230\t0xF41D\n0x83398231\t0xF41E\n0x83398232\t0xF41F\n0x83398233\t0xF420\n0x83398234\t0xF421\n0x83398235\t0xF422\n0x83398236\t0xF423\n0x83398237\t0xF424\n0x83398238\t0xF425\n0x83398239\t0xF426\n0x83398330\t0xF427\n0x83398331\t0xF428\n0x83398332\t0xF429\n0x83398333\t0xF42A\n0x83398334\t0xF42B\n0x83398335\t0xF42C\n0x83398336\t0xF42D\n0x83398337\t0xF42E\n0x83398338\t0xF42F\n0x83398339\t0xF430\n0x83398430\t0xF431\n0x83398431\t0xF432\n0x83398432\t0xF433\n0x83398433\t0xF434\n0x83398434\t0xF435\n0x83398435\t0xF436\n0x83398436\t0xF437\n0x83398437\t0xF438\n0x83398438\t0xF439\n0x83398439\t0xF43A\n0x83398530\t0xF43B\n0x83398531\t0xF43C\n0x83398532\t0xF43D\n0x83398533\t0xF43E\n0x83398534\t0xF43F\n0x83398535\t0xF440\n0x83398536\t0xF441\n0x83398537\t0xF442\n0x83398538\t0xF443\n0x83398539\t0xF444\n0x83398630\t0xF445\n0x83398631\t0xF446\n0x83398632\t0xF447\n0x83398633\t0xF448\n0x83398634\t0xF449\n0x83398635\t0xF44A\n0x83398636\t0xF44B\n0x83398637\t0xF44C\n0x83398638\t0xF44D\n0x83398639\t0xF44E\n0x83398730\t0xF44F\n0x83398731\t0xF450\n0x83398732\t0xF451\n0x83398733\t0xF452\n0x83398734\t0xF453\n0x83398735\t0xF454\n0x83398736\t0xF455\n0x83398737\t0xF456\n0x83398738\t0xF457\n0x83398739\t0xF458\n0x83398830\t0xF459\n0x83398831\t0xF45A\n0x83398832\t0xF45B\n0x83398833\t0xF45C\n0x83398834\t0xF45D\n0x83398835\t0xF45E\n0x83398836\t0xF45F\n0x83398837\t0xF460\n0x83398838\t0xF461\n0x83398839\t0xF462\n0x83398930\t0xF463\n0x83398931\t0xF464\n0x83398932\t0xF465\n0x83398933\t0xF466\n0x83398934\t0xF467\n0x83398935\t0xF468\n0x83398936\t0xF469\n0x83398937\t0xF46A\n0x83398938\t0xF46B\n0x83398939\t0xF46C\n0x83398A30\t0xF46D\n0x83398A31\t0xF46E\n0x83398A32\t0xF46F\n0x83398A33\t0xF470\n0x83398A34\t0xF471\n0x83398A35\t0xF472\n0x83398A36\t0xF473\n0x83398A37\t0xF474\n0x83398A38\t0xF475\n0x83398A39\t0xF476\n0x83398B30\t0xF477\n0x83398B31\t0xF478\n0x83398B32\t0xF479\n0x83398B33\t0xF47A\n0x83398B34\t0xF47B\n0x83398B35\t0xF47C\n0x83398B36\t0xF47D\n0x83398B37\t0xF47E\n0x83398B38\t0xF47F\n0x83398B39\t0xF480\n0x83398C30\t0xF481\n0x83398C31\t0xF482\n0x83398C32\t0xF483\n0x83398C33\t0xF484\n0x83398C34\t0xF485\n0x83398C35\t0xF486\n0x83398C36\t0xF487\n0x83398C37\t0xF488\n0x83398C38\t0xF489\n0x83398C39\t0xF48A\n0x83398D30\t0xF48B\n0x83398D31\t0xF48C\n0x83398D32\t0xF48D\n0x83398D33\t0xF48E\n0x83398D34\t0xF48F\n0x83398D35\t0xF490\n0x83398D36\t0xF491\n0x83398D37\t0xF492\n0x83398D38\t0xF493\n0x83398D39\t0xF494\n0x83398E30\t0xF495\n0x83398E31\t0xF496\n0x83398E32\t0xF497\n0x83398E33\t0xF498\n0x83398E34\t0xF499\n0x83398E35\t0xF49A\n0x83398E36\t0xF49B\n0x83398E37\t0xF49C\n0x83398E38\t0xF49D\n0x83398E39\t0xF49E\n0x83398F30\t0xF49F\n0x83398F31\t0xF4A0\n0x83398F32\t0xF4A1\n0x83398F33\t0xF4A2\n0x83398F34\t0xF4A3\n0x83398F35\t0xF4A4\n0x83398F36\t0xF4A5\n0x83398F37\t0xF4A6\n0x83398F38\t0xF4A7\n0x83398F39\t0xF4A8\n0x83399030\t0xF4A9\n0x83399031\t0xF4AA\n0x83399032\t0xF4AB\n0x83399033\t0xF4AC\n0x83399034\t0xF4AD\n0x83399035\t0xF4AE\n0x83399036\t0xF4AF\n0x83399037\t0xF4B0\n0x83399038\t0xF4B1\n0x83399039\t0xF4B2\n0x83399130\t0xF4B3\n0x83399131\t0xF4B4\n0x83399132\t0xF4B5\n0x83399133\t0xF4B6\n0x83399134\t0xF4B7\n0x83399135\t0xF4B8\n0x83399136\t0xF4B9\n0x83399137\t0xF4BA\n0x83399138\t0xF4BB\n0x83399139\t0xF4BC\n0x83399230\t0xF4BD\n0x83399231\t0xF4BE\n0x83399232\t0xF4BF\n0x83399233\t0xF4C0\n0x83399234\t0xF4C1\n0x83399235\t0xF4C2\n0x83399236\t0xF4C3\n0x83399237\t0xF4C4\n0x83399238\t0xF4C5\n0x83399239\t0xF4C6\n0x83399330\t0xF4C7\n0x83399331\t0xF4C8\n0x83399332\t0xF4C9\n0x83399333\t0xF4CA\n0x83399334\t0xF4CB\n0x83399335\t0xF4CC\n0x83399336\t0xF4CD\n0x83399337\t0xF4CE\n0x83399338\t0xF4CF\n0x83399339\t0xF4D0\n0x83399430\t0xF4D1\n0x83399431\t0xF4D2\n0x83399432\t0xF4D3\n0x83399433\t0xF4D4\n0x83399434\t0xF4D5\n0x83399435\t0xF4D6\n0x83399436\t0xF4D7\n0x83399437\t0xF4D8\n0x83399438\t0xF4D9\n0x83399439\t0xF4DA\n0x83399530\t0xF4DB\n0x83399531\t0xF4DC\n0x83399532\t0xF4DD\n0x83399533\t0xF4DE\n0x83399534\t0xF4DF\n0x83399535\t0xF4E0\n0x83399536\t0xF4E1\n0x83399537\t0xF4E2\n0x83399538\t0xF4E3\n0x83399539\t0xF4E4\n0x83399630\t0xF4E5\n0x83399631\t0xF4E6\n0x83399632\t0xF4E7\n0x83399633\t0xF4E8\n0x83399634\t0xF4E9\n0x83399635\t0xF4EA\n0x83399636\t0xF4EB\n0x83399637\t0xF4EC\n0x83399638\t0xF4ED\n0x83399639\t0xF4EE\n0x83399730\t0xF4EF\n0x83399731\t0xF4F0\n0x83399732\t0xF4F1\n0x83399733\t0xF4F2\n0x83399734\t0xF4F3\n0x83399735\t0xF4F4\n0x83399736\t0xF4F5\n0x83399737\t0xF4F6\n0x83399738\t0xF4F7\n0x83399739\t0xF4F8\n0x83399830\t0xF4F9\n0x83399831\t0xF4FA\n0x83399832\t0xF4FB\n0x83399833\t0xF4FC\n0x83399834\t0xF4FD\n0x83399835\t0xF4FE\n0x83399836\t0xF4FF\n0x83399837\t0xF500\n0x83399838\t0xF501\n0x83399839\t0xF502\n0x83399930\t0xF503\n0x83399931\t0xF504\n0x83399932\t0xF505\n0x83399933\t0xF506\n0x83399934\t0xF507\n0x83399935\t0xF508\n0x83399936\t0xF509\n0x83399937\t0xF50A\n0x83399938\t0xF50B\n0x83399939\t0xF50C\n0x83399A30\t0xF50D\n0x83399A31\t0xF50E\n0x83399A32\t0xF50F\n0x83399A33\t0xF510\n0x83399A34\t0xF511\n0x83399A35\t0xF512\n0x83399A36\t0xF513\n0x83399A37\t0xF514\n0x83399A38\t0xF515\n0x83399A39\t0xF516\n0x83399B30\t0xF517\n0x83399B31\t0xF518\n0x83399B32\t0xF519\n0x83399B33\t0xF51A\n0x83399B34\t0xF51B\n0x83399B35\t0xF51C\n0x83399B36\t0xF51D\n0x83399B37\t0xF51E\n0x83399B38\t0xF51F\n0x83399B39\t0xF520\n0x83399C30\t0xF521\n0x83399C31\t0xF522\n0x83399C32\t0xF523\n0x83399C33\t0xF524\n0x83399C34\t0xF525\n0x83399C35\t0xF526\n0x83399C36\t0xF527\n0x83399C37\t0xF528\n0x83399C38\t0xF529\n0x83399C39\t0xF52A\n0x83399D30\t0xF52B\n0x83399D31\t0xF52C\n0x83399D32\t0xF52D\n0x83399D33\t0xF52E\n0x83399D34\t0xF52F\n0x83399D35\t0xF530\n0x83399D36\t0xF531\n0x83399D37\t0xF532\n0x83399D38\t0xF533\n0x83399D39\t0xF534\n0x83399E30\t0xF535\n0x83399E31\t0xF536\n0x83399E32\t0xF537\n0x83399E33\t0xF538\n0x83399E34\t0xF539\n0x83399E35\t0xF53A\n0x83399E36\t0xF53B\n0x83399E37\t0xF53C\n0x83399E38\t0xF53D\n0x83399E39\t0xF53E\n0x83399F30\t0xF53F\n0x83399F31\t0xF540\n0x83399F32\t0xF541\n0x83399F33\t0xF542\n0x83399F34\t0xF543\n0x83399F35\t0xF544\n0x83399F36\t0xF545\n0x83399F37\t0xF546\n0x83399F38\t0xF547\n0x83399F39\t0xF548\n0x8339A030\t0xF549\n0x8339A031\t0xF54A\n0x8339A032\t0xF54B\n0x8339A033\t0xF54C\n0x8339A034\t0xF54D\n0x8339A035\t0xF54E\n0x8339A036\t0xF54F\n0x8339A037\t0xF550\n0x8339A038\t0xF551\n0x8339A039\t0xF552\n0x8339A130\t0xF553\n0x8339A131\t0xF554\n0x8339A132\t0xF555\n0x8339A133\t0xF556\n0x8339A134\t0xF557\n0x8339A135\t0xF558\n0x8339A136\t0xF559\n0x8339A137\t0xF55A\n0x8339A138\t0xF55B\n0x8339A139\t0xF55C\n0x8339A230\t0xF55D\n0x8339A231\t0xF55E\n0x8339A232\t0xF55F\n0x8339A233\t0xF560\n0x8339A234\t0xF561\n0x8339A235\t0xF562\n0x8339A236\t0xF563\n0x8339A237\t0xF564\n0x8339A238\t0xF565\n0x8339A239\t0xF566\n0x8339A330\t0xF567\n0x8339A331\t0xF568\n0x8339A332\t0xF569\n0x8339A333\t0xF56A\n0x8339A334\t0xF56B\n0x8339A335\t0xF56C\n0x8339A336\t0xF56D\n0x8339A337\t0xF56E\n0x8339A338\t0xF56F\n0x8339A339\t0xF570\n0x8339A430\t0xF571\n0x8339A431\t0xF572\n0x8339A432\t0xF573\n0x8339A433\t0xF574\n0x8339A434\t0xF575\n0x8339A435\t0xF576\n0x8339A436\t0xF577\n0x8339A437\t0xF578\n0x8339A438\t0xF579\n0x8339A439\t0xF57A\n0x8339A530\t0xF57B\n0x8339A531\t0xF57C\n0x8339A532\t0xF57D\n0x8339A533\t0xF57E\n0x8339A534\t0xF57F\n0x8339A535\t0xF580\n0x8339A536\t0xF581\n0x8339A537\t0xF582\n0x8339A538\t0xF583\n0x8339A539\t0xF584\n0x8339A630\t0xF585\n0x8339A631\t0xF586\n0x8339A632\t0xF587\n0x8339A633\t0xF588\n0x8339A634\t0xF589\n0x8339A635\t0xF58A\n0x8339A636\t0xF58B\n0x8339A637\t0xF58C\n0x8339A638\t0xF58D\n0x8339A639\t0xF58E\n0x8339A730\t0xF58F\n0x8339A731\t0xF590\n0x8339A732\t0xF591\n0x8339A733\t0xF592\n0x8339A734\t0xF593\n0x8339A735\t0xF594\n0x8339A736\t0xF595\n0x8339A737\t0xF596\n0x8339A738\t0xF597\n0x8339A739\t0xF598\n0x8339A830\t0xF599\n0x8339A831\t0xF59A\n0x8339A832\t0xF59B\n0x8339A833\t0xF59C\n0x8339A834\t0xF59D\n0x8339A835\t0xF59E\n0x8339A836\t0xF59F\n0x8339A837\t0xF5A0\n0x8339A838\t0xF5A1\n0x8339A839\t0xF5A2\n0x8339A930\t0xF5A3\n0x8339A931\t0xF5A4\n0x8339A932\t0xF5A5\n0x8339A933\t0xF5A6\n0x8339A934\t0xF5A7\n0x8339A935\t0xF5A8\n0x8339A936\t0xF5A9\n0x8339A937\t0xF5AA\n0x8339A938\t0xF5AB\n0x8339A939\t0xF5AC\n0x8339AA30\t0xF5AD\n0x8339AA31\t0xF5AE\n0x8339AA32\t0xF5AF\n0x8339AA33\t0xF5B0\n0x8339AA34\t0xF5B1\n0x8339AA35\t0xF5B2\n0x8339AA36\t0xF5B3\n0x8339AA37\t0xF5B4\n0x8339AA38\t0xF5B5\n0x8339AA39\t0xF5B6\n0x8339AB30\t0xF5B7\n0x8339AB31\t0xF5B8\n0x8339AB32\t0xF5B9\n0x8339AB33\t0xF5BA\n0x8339AB34\t0xF5BB\n0x8339AB35\t0xF5BC\n0x8339AB36\t0xF5BD\n0x8339AB37\t0xF5BE\n0x8339AB38\t0xF5BF\n0x8339AB39\t0xF5C0\n0x8339AC30\t0xF5C1\n0x8339AC31\t0xF5C2\n0x8339AC32\t0xF5C3\n0x8339AC33\t0xF5C4\n0x8339AC34\t0xF5C5\n0x8339AC35\t0xF5C6\n0x8339AC36\t0xF5C7\n0x8339AC37\t0xF5C8\n0x8339AC38\t0xF5C9\n0x8339AC39\t0xF5CA\n0x8339AD30\t0xF5CB\n0x8339AD31\t0xF5CC\n0x8339AD32\t0xF5CD\n0x8339AD33\t0xF5CE\n0x8339AD34\t0xF5CF\n0x8339AD35\t0xF5D0\n0x8339AD36\t0xF5D1\n0x8339AD37\t0xF5D2\n0x8339AD38\t0xF5D3\n0x8339AD39\t0xF5D4\n0x8339AE30\t0xF5D5\n0x8339AE31\t0xF5D6\n0x8339AE32\t0xF5D7\n0x8339AE33\t0xF5D8\n0x8339AE34\t0xF5D9\n0x8339AE35\t0xF5DA\n0x8339AE36\t0xF5DB\n0x8339AE37\t0xF5DC\n0x8339AE38\t0xF5DD\n0x8339AE39\t0xF5DE\n0x8339AF30\t0xF5DF\n0x8339AF31\t0xF5E0\n0x8339AF32\t0xF5E1\n0x8339AF33\t0xF5E2\n0x8339AF34\t0xF5E3\n0x8339AF35\t0xF5E4\n0x8339AF36\t0xF5E5\n0x8339AF37\t0xF5E6\n0x8339AF38\t0xF5E7\n0x8339AF39\t0xF5E8\n0x8339B030\t0xF5E9\n0x8339B031\t0xF5EA\n0x8339B032\t0xF5EB\n0x8339B033\t0xF5EC\n0x8339B034\t0xF5ED\n0x8339B035\t0xF5EE\n0x8339B036\t0xF5EF\n0x8339B037\t0xF5F0\n0x8339B038\t0xF5F1\n0x8339B039\t0xF5F2\n0x8339B130\t0xF5F3\n0x8339B131\t0xF5F4\n0x8339B132\t0xF5F5\n0x8339B133\t0xF5F6\n0x8339B134\t0xF5F7\n0x8339B135\t0xF5F8\n0x8339B136\t0xF5F9\n0x8339B137\t0xF5FA\n0x8339B138\t0xF5FB\n0x8339B139\t0xF5FC\n0x8339B230\t0xF5FD\n0x8339B231\t0xF5FE\n0x8339B232\t0xF5FF\n0x8339B233\t0xF600\n0x8339B234\t0xF601\n0x8339B235\t0xF602\n0x8339B236\t0xF603\n0x8339B237\t0xF604\n0x8339B238\t0xF605\n0x8339B239\t0xF606\n0x8339B330\t0xF607\n0x8339B331\t0xF608\n0x8339B332\t0xF609\n0x8339B333\t0xF60A\n0x8339B334\t0xF60B\n0x8339B335\t0xF60C\n0x8339B336\t0xF60D\n0x8339B337\t0xF60E\n0x8339B338\t0xF60F\n0x8339B339\t0xF610\n0x8339B430\t0xF611\n0x8339B431\t0xF612\n0x8339B432\t0xF613\n0x8339B433\t0xF614\n0x8339B434\t0xF615\n0x8339B435\t0xF616\n0x8339B436\t0xF617\n0x8339B437\t0xF618\n0x8339B438\t0xF619\n0x8339B439\t0xF61A\n0x8339B530\t0xF61B\n0x8339B531\t0xF61C\n0x8339B532\t0xF61D\n0x8339B533\t0xF61E\n0x8339B534\t0xF61F\n0x8339B535\t0xF620\n0x8339B536\t0xF621\n0x8339B537\t0xF622\n0x8339B538\t0xF623\n0x8339B539\t0xF624\n0x8339B630\t0xF625\n0x8339B631\t0xF626\n0x8339B632\t0xF627\n0x8339B633\t0xF628\n0x8339B634\t0xF629\n0x8339B635\t0xF62A\n0x8339B636\t0xF62B\n0x8339B637\t0xF62C\n0x8339B638\t0xF62D\n0x8339B639\t0xF62E\n0x8339B730\t0xF62F\n0x8339B731\t0xF630\n0x8339B732\t0xF631\n0x8339B733\t0xF632\n0x8339B734\t0xF633\n0x8339B735\t0xF634\n0x8339B736\t0xF635\n0x8339B737\t0xF636\n0x8339B738\t0xF637\n0x8339B739\t0xF638\n0x8339B830\t0xF639\n0x8339B831\t0xF63A\n0x8339B832\t0xF63B\n0x8339B833\t0xF63C\n0x8339B834\t0xF63D\n0x8339B835\t0xF63E\n0x8339B836\t0xF63F\n0x8339B837\t0xF640\n0x8339B838\t0xF641\n0x8339B839\t0xF642\n0x8339B930\t0xF643\n0x8339B931\t0xF644\n0x8339B932\t0xF645\n0x8339B933\t0xF646\n0x8339B934\t0xF647\n0x8339B935\t0xF648\n0x8339B936\t0xF649\n0x8339B937\t0xF64A\n0x8339B938\t0xF64B\n0x8339B939\t0xF64C\n0x8339BA30\t0xF64D\n0x8339BA31\t0xF64E\n0x8339BA32\t0xF64F\n0x8339BA33\t0xF650\n0x8339BA34\t0xF651\n0x8339BA35\t0xF652\n0x8339BA36\t0xF653\n0x8339BA37\t0xF654\n0x8339BA38\t0xF655\n0x8339BA39\t0xF656\n0x8339BB30\t0xF657\n0x8339BB31\t0xF658\n0x8339BB32\t0xF659\n0x8339BB33\t0xF65A\n0x8339BB34\t0xF65B\n0x8339BB35\t0xF65C\n0x8339BB36\t0xF65D\n0x8339BB37\t0xF65E\n0x8339BB38\t0xF65F\n0x8339BB39\t0xF660\n0x8339BC30\t0xF661\n0x8339BC31\t0xF662\n0x8339BC32\t0xF663\n0x8339BC33\t0xF664\n0x8339BC34\t0xF665\n0x8339BC35\t0xF666\n0x8339BC36\t0xF667\n0x8339BC37\t0xF668\n0x8339BC38\t0xF669\n0x8339BC39\t0xF66A\n0x8339BD30\t0xF66B\n0x8339BD31\t0xF66C\n0x8339BD32\t0xF66D\n0x8339BD33\t0xF66E\n0x8339BD34\t0xF66F\n0x8339BD35\t0xF670\n0x8339BD36\t0xF671\n0x8339BD37\t0xF672\n0x8339BD38\t0xF673\n0x8339BD39\t0xF674\n0x8339BE30\t0xF675\n0x8339BE31\t0xF676\n0x8339BE32\t0xF677\n0x8339BE33\t0xF678\n0x8339BE34\t0xF679\n0x8339BE35\t0xF67A\n0x8339BE36\t0xF67B\n0x8339BE37\t0xF67C\n0x8339BE38\t0xF67D\n0x8339BE39\t0xF67E\n0x8339BF30\t0xF67F\n0x8339BF31\t0xF680\n0x8339BF32\t0xF681\n0x8339BF33\t0xF682\n0x8339BF34\t0xF683\n0x8339BF35\t0xF684\n0x8339BF36\t0xF685\n0x8339BF37\t0xF686\n0x8339BF38\t0xF687\n0x8339BF39\t0xF688\n0x8339C030\t0xF689\n0x8339C031\t0xF68A\n0x8339C032\t0xF68B\n0x8339C033\t0xF68C\n0x8339C034\t0xF68D\n0x8339C035\t0xF68E\n0x8339C036\t0xF68F\n0x8339C037\t0xF690\n0x8339C038\t0xF691\n0x8339C039\t0xF692\n0x8339C130\t0xF693\n0x8339C131\t0xF694\n0x8339C132\t0xF695\n0x8339C133\t0xF696\n0x8339C134\t0xF697\n0x8339C135\t0xF698\n0x8339C136\t0xF699\n0x8339C137\t0xF69A\n0x8339C138\t0xF69B\n0x8339C139\t0xF69C\n0x8339C230\t0xF69D\n0x8339C231\t0xF69E\n0x8339C232\t0xF69F\n0x8339C233\t0xF6A0\n0x8339C234\t0xF6A1\n0x8339C235\t0xF6A2\n0x8339C236\t0xF6A3\n0x8339C237\t0xF6A4\n0x8339C238\t0xF6A5\n0x8339C239\t0xF6A6\n0x8339C330\t0xF6A7\n0x8339C331\t0xF6A8\n0x8339C332\t0xF6A9\n0x8339C333\t0xF6AA\n0x8339C334\t0xF6AB\n0x8339C335\t0xF6AC\n0x8339C336\t0xF6AD\n0x8339C337\t0xF6AE\n0x8339C338\t0xF6AF\n0x8339C339\t0xF6B0\n0x8339C430\t0xF6B1\n0x8339C431\t0xF6B2\n0x8339C432\t0xF6B3\n0x8339C433\t0xF6B4\n0x8339C434\t0xF6B5\n0x8339C435\t0xF6B6\n0x8339C436\t0xF6B7\n0x8339C437\t0xF6B8\n0x8339C438\t0xF6B9\n0x8339C439\t0xF6BA\n0x8339C530\t0xF6BB\n0x8339C531\t0xF6BC\n0x8339C532\t0xF6BD\n0x8339C533\t0xF6BE\n0x8339C534\t0xF6BF\n0x8339C535\t0xF6C0\n0x8339C536\t0xF6C1\n0x8339C537\t0xF6C2\n0x8339C538\t0xF6C3\n0x8339C539\t0xF6C4\n0x8339C630\t0xF6C5\n0x8339C631\t0xF6C6\n0x8339C632\t0xF6C7\n0x8339C633\t0xF6C8\n0x8339C634\t0xF6C9\n0x8339C635\t0xF6CA\n0x8339C636\t0xF6CB\n0x8339C637\t0xF6CC\n0x8339C638\t0xF6CD\n0x8339C639\t0xF6CE\n0x8339C730\t0xF6CF\n0x8339C731\t0xF6D0\n0x8339C732\t0xF6D1\n0x8339C733\t0xF6D2\n0x8339C734\t0xF6D3\n0x8339C735\t0xF6D4\n0x8339C736\t0xF6D5\n0x8339C737\t0xF6D6\n0x8339C738\t0xF6D7\n0x8339C739\t0xF6D8\n0x8339C830\t0xF6D9\n0x8339C831\t0xF6DA\n0x8339C832\t0xF6DB\n0x8339C833\t0xF6DC\n0x8339C834\t0xF6DD\n0x8339C835\t0xF6DE\n0x8339C836\t0xF6DF\n0x8339C837\t0xF6E0\n0x8339C838\t0xF6E1\n0x8339C839\t0xF6E2\n0x8339C930\t0xF6E3\n0x8339C931\t0xF6E4\n0x8339C932\t0xF6E5\n0x8339C933\t0xF6E6\n0x8339C934\t0xF6E7\n0x8339C935\t0xF6E8\n0x8339C936\t0xF6E9\n0x8339C937\t0xF6EA\n0x8339C938\t0xF6EB\n0x8339C939\t0xF6EC\n0x8339CA30\t0xF6ED\n0x8339CA31\t0xF6EE\n0x8339CA32\t0xF6EF\n0x8339CA33\t0xF6F0\n0x8339CA34\t0xF6F1\n0x8339CA35\t0xF6F2\n0x8339CA36\t0xF6F3\n0x8339CA37\t0xF6F4\n0x8339CA38\t0xF6F5\n0x8339CA39\t0xF6F6\n0x8339CB30\t0xF6F7\n0x8339CB31\t0xF6F8\n0x8339CB32\t0xF6F9\n0x8339CB33\t0xF6FA\n0x8339CB34\t0xF6FB\n0x8339CB35\t0xF6FC\n0x8339CB36\t0xF6FD\n0x8339CB37\t0xF6FE\n0x8339CB38\t0xF6FF\n0x8339CB39\t0xF700\n0x8339CC30\t0xF701\n0x8339CC31\t0xF702\n0x8339CC32\t0xF703\n0x8339CC33\t0xF704\n0x8339CC34\t0xF705\n0x8339CC35\t0xF706\n0x8339CC36\t0xF707\n0x8339CC37\t0xF708\n0x8339CC38\t0xF709\n0x8339CC39\t0xF70A\n0x8339CD30\t0xF70B\n0x8339CD31\t0xF70C\n0x8339CD32\t0xF70D\n0x8339CD33\t0xF70E\n0x8339CD34\t0xF70F\n0x8339CD35\t0xF710\n0x8339CD36\t0xF711\n0x8339CD37\t0xF712\n0x8339CD38\t0xF713\n0x8339CD39\t0xF714\n0x8339CE30\t0xF715\n0x8339CE31\t0xF716\n0x8339CE32\t0xF717\n0x8339CE33\t0xF718\n0x8339CE34\t0xF719\n0x8339CE35\t0xF71A\n0x8339CE36\t0xF71B\n0x8339CE37\t0xF71C\n0x8339CE38\t0xF71D\n0x8339CE39\t0xF71E\n0x8339CF30\t0xF71F\n0x8339CF31\t0xF720\n0x8339CF32\t0xF721\n0x8339CF33\t0xF722\n0x8339CF34\t0xF723\n0x8339CF35\t0xF724\n0x8339CF36\t0xF725\n0x8339CF37\t0xF726\n0x8339CF38\t0xF727\n0x8339CF39\t0xF728\n0x8339D030\t0xF729\n0x8339D031\t0xF72A\n0x8339D032\t0xF72B\n0x8339D033\t0xF72C\n0x8339D034\t0xF72D\n0x8339D035\t0xF72E\n0x8339D036\t0xF72F\n0x8339D037\t0xF730\n0x8339D038\t0xF731\n0x8339D039\t0xF732\n0x8339D130\t0xF733\n0x8339D131\t0xF734\n0x8339D132\t0xF735\n0x8339D133\t0xF736\n0x8339D134\t0xF737\n0x8339D135\t0xF738\n0x8339D136\t0xF739\n0x8339D137\t0xF73A\n0x8339D138\t0xF73B\n0x8339D139\t0xF73C\n0x8339D230\t0xF73D\n0x8339D231\t0xF73E\n0x8339D232\t0xF73F\n0x8339D233\t0xF740\n0x8339D234\t0xF741\n0x8339D235\t0xF742\n0x8339D236\t0xF743\n0x8339D237\t0xF744\n0x8339D238\t0xF745\n0x8339D239\t0xF746\n0x8339D330\t0xF747\n0x8339D331\t0xF748\n0x8339D332\t0xF749\n0x8339D333\t0xF74A\n0x8339D334\t0xF74B\n0x8339D335\t0xF74C\n0x8339D336\t0xF74D\n0x8339D337\t0xF74E\n0x8339D338\t0xF74F\n0x8339D339\t0xF750\n0x8339D430\t0xF751\n0x8339D431\t0xF752\n0x8339D432\t0xF753\n0x8339D433\t0xF754\n0x8339D434\t0xF755\n0x8339D435\t0xF756\n0x8339D436\t0xF757\n0x8339D437\t0xF758\n0x8339D438\t0xF759\n0x8339D439\t0xF75A\n0x8339D530\t0xF75B\n0x8339D531\t0xF75C\n0x8339D532\t0xF75D\n0x8339D533\t0xF75E\n0x8339D534\t0xF75F\n0x8339D535\t0xF760\n0x8339D536\t0xF761\n0x8339D537\t0xF762\n0x8339D538\t0xF763\n0x8339D539\t0xF764\n0x8339D630\t0xF765\n0x8339D631\t0xF766\n0x8339D632\t0xF767\n0x8339D633\t0xF768\n0x8339D634\t0xF769\n0x8339D635\t0xF76A\n0x8339D636\t0xF76B\n0x8339D637\t0xF76C\n0x8339D638\t0xF76D\n0x8339D639\t0xF76E\n0x8339D730\t0xF76F\n0x8339D731\t0xF770\n0x8339D732\t0xF771\n0x8339D733\t0xF772\n0x8339D734\t0xF773\n0x8339D735\t0xF774\n0x8339D736\t0xF775\n0x8339D737\t0xF776\n0x8339D738\t0xF777\n0x8339D739\t0xF778\n0x8339D830\t0xF779\n0x8339D831\t0xF77A\n0x8339D832\t0xF77B\n0x8339D833\t0xF77C\n0x8339D834\t0xF77D\n0x8339D835\t0xF77E\n0x8339D836\t0xF77F\n0x8339D837\t0xF780\n0x8339D838\t0xF781\n0x8339D839\t0xF782\n0x8339D930\t0xF783\n0x8339D931\t0xF784\n0x8339D932\t0xF785\n0x8339D933\t0xF786\n0x8339D934\t0xF787\n0x8339D935\t0xF788\n0x8339D936\t0xF789\n0x8339D937\t0xF78A\n0x8339D938\t0xF78B\n0x8339D939\t0xF78C\n0x8339DA30\t0xF78D\n0x8339DA31\t0xF78E\n0x8339DA32\t0xF78F\n0x8339DA33\t0xF790\n0x8339DA34\t0xF791\n0x8339DA35\t0xF792\n0x8339DA36\t0xF793\n0x8339DA37\t0xF794\n0x8339DA38\t0xF795\n0x8339DA39\t0xF796\n0x8339DB30\t0xF797\n0x8339DB31\t0xF798\n0x8339DB32\t0xF799\n0x8339DB33\t0xF79A\n0x8339DB34\t0xF79B\n0x8339DB35\t0xF79C\n0x8339DB36\t0xF79D\n0x8339DB37\t0xF79E\n0x8339DB38\t0xF79F\n0x8339DB39\t0xF7A0\n0x8339DC30\t0xF7A1\n0x8339DC31\t0xF7A2\n0x8339DC32\t0xF7A3\n0x8339DC33\t0xF7A4\n0x8339DC34\t0xF7A5\n0x8339DC35\t0xF7A6\n0x8339DC36\t0xF7A7\n0x8339DC37\t0xF7A8\n0x8339DC38\t0xF7A9\n0x8339DC39\t0xF7AA\n0x8339DD30\t0xF7AB\n0x8339DD31\t0xF7AC\n0x8339DD32\t0xF7AD\n0x8339DD33\t0xF7AE\n0x8339DD34\t0xF7AF\n0x8339DD35\t0xF7B0\n0x8339DD36\t0xF7B1\n0x8339DD37\t0xF7B2\n0x8339DD38\t0xF7B3\n0x8339DD39\t0xF7B4\n0x8339DE30\t0xF7B5\n0x8339DE31\t0xF7B6\n0x8339DE32\t0xF7B7\n0x8339DE33\t0xF7B8\n0x8339DE34\t0xF7B9\n0x8339DE35\t0xF7BA\n0x8339DE36\t0xF7BB\n0x8339DE37\t0xF7BC\n0x8339DE38\t0xF7BD\n0x8339DE39\t0xF7BE\n0x8339DF30\t0xF7BF\n0x8339DF31\t0xF7C0\n0x8339DF32\t0xF7C1\n0x8339DF33\t0xF7C2\n0x8339DF34\t0xF7C3\n0x8339DF35\t0xF7C4\n0x8339DF36\t0xF7C5\n0x8339DF37\t0xF7C6\n0x8339DF38\t0xF7C7\n0x8339DF39\t0xF7C8\n0x8339E030\t0xF7C9\n0x8339E031\t0xF7CA\n0x8339E032\t0xF7CB\n0x8339E033\t0xF7CC\n0x8339E034\t0xF7CD\n0x8339E035\t0xF7CE\n0x8339E036\t0xF7CF\n0x8339E037\t0xF7D0\n0x8339E038\t0xF7D1\n0x8339E039\t0xF7D2\n0x8339E130\t0xF7D3\n0x8339E131\t0xF7D4\n0x8339E132\t0xF7D5\n0x8339E133\t0xF7D6\n0x8339E134\t0xF7D7\n0x8339E135\t0xF7D8\n0x8339E136\t0xF7D9\n0x8339E137\t0xF7DA\n0x8339E138\t0xF7DB\n0x8339E139\t0xF7DC\n0x8339E230\t0xF7DD\n0x8339E231\t0xF7DE\n0x8339E232\t0xF7DF\n0x8339E233\t0xF7E0\n0x8339E234\t0xF7E1\n0x8339E235\t0xF7E2\n0x8339E236\t0xF7E3\n0x8339E237\t0xF7E4\n0x8339E238\t0xF7E5\n0x8339E239\t0xF7E6\n0x8339E330\t0xF7E7\n0x8339E331\t0xF7E8\n0x8339E332\t0xF7E9\n0x8339E333\t0xF7EA\n0x8339E334\t0xF7EB\n0x8339E335\t0xF7EC\n0x8339E336\t0xF7ED\n0x8339E337\t0xF7EE\n0x8339E338\t0xF7EF\n0x8339E339\t0xF7F0\n0x8339E430\t0xF7F1\n0x8339E431\t0xF7F2\n0x8339E432\t0xF7F3\n0x8339E433\t0xF7F4\n0x8339E434\t0xF7F5\n0x8339E435\t0xF7F6\n0x8339E436\t0xF7F7\n0x8339E437\t0xF7F8\n0x8339E438\t0xF7F9\n0x8339E439\t0xF7FA\n0x8339E530\t0xF7FB\n0x8339E531\t0xF7FC\n0x8339E532\t0xF7FD\n0x8339E533\t0xF7FE\n0x8339E534\t0xF7FF\n0x8339E535\t0xF800\n0x8339E536\t0xF801\n0x8339E537\t0xF802\n0x8339E538\t0xF803\n0x8339E539\t0xF804\n0x8339E630\t0xF805\n0x8339E631\t0xF806\n0x8339E632\t0xF807\n0x8339E633\t0xF808\n0x8339E634\t0xF809\n0x8339E635\t0xF80A\n0x8339E636\t0xF80B\n0x8339E637\t0xF80C\n0x8339E638\t0xF80D\n0x8339E639\t0xF80E\n0x8339E730\t0xF80F\n0x8339E731\t0xF810\n0x8339E732\t0xF811\n0x8339E733\t0xF812\n0x8339E734\t0xF813\n0x8339E735\t0xF814\n0x8339E736\t0xF815\n0x8339E737\t0xF816\n0x8339E738\t0xF817\n0x8339E739\t0xF818\n0x8339E830\t0xF819\n0x8339E831\t0xF81A\n0x8339E832\t0xF81B\n0x8339E833\t0xF81C\n0x8339E834\t0xF81D\n0x8339E835\t0xF81E\n0x8339E836\t0xF81F\n0x8339E837\t0xF820\n0x8339E838\t0xF821\n0x8339E839\t0xF822\n0x8339E930\t0xF823\n0x8339E931\t0xF824\n0x8339E932\t0xF825\n0x8339E933\t0xF826\n0x8339E934\t0xF827\n0x8339E935\t0xF828\n0x8339E936\t0xF829\n0x8339E937\t0xF82A\n0x8339E938\t0xF82B\n0x8339E939\t0xF82C\n0x8339EA30\t0xF82D\n0x8339EA31\t0xF82E\n0x8339EA32\t0xF82F\n0x8339EA33\t0xF830\n0x8339EA34\t0xF831\n0x8339EA35\t0xF832\n0x8339EA36\t0xF833\n0x8339EA37\t0xF834\n0x8339EA38\t0xF835\n0x8339EA39\t0xF836\n0x8339EB30\t0xF837\n0x8339EB31\t0xF838\n0x8339EB32\t0xF839\n0x8339EB33\t0xF83A\n0x8339EB34\t0xF83B\n0x8339EB35\t0xF83C\n0x8339EB36\t0xF83D\n0x8339EB37\t0xF83E\n0x8339EB38\t0xF83F\n0x8339EB39\t0xF840\n0x8339EC30\t0xF841\n0x8339EC31\t0xF842\n0x8339EC32\t0xF843\n0x8339EC33\t0xF844\n0x8339EC34\t0xF845\n0x8339EC35\t0xF846\n0x8339EC36\t0xF847\n0x8339EC37\t0xF848\n0x8339EC38\t0xF849\n0x8339EC39\t0xF84A\n0x8339ED30\t0xF84B\n0x8339ED31\t0xF84C\n0x8339ED32\t0xF84D\n0x8339ED33\t0xF84E\n0x8339ED34\t0xF84F\n0x8339ED35\t0xF850\n0x8339ED36\t0xF851\n0x8339ED37\t0xF852\n0x8339ED38\t0xF853\n0x8339ED39\t0xF854\n0x8339EE30\t0xF855\n0x8339EE31\t0xF856\n0x8339EE32\t0xF857\n0x8339EE33\t0xF858\n0x8339EE34\t0xF859\n0x8339EE35\t0xF85A\n0x8339EE36\t0xF85B\n0x8339EE37\t0xF85C\n0x8339EE38\t0xF85D\n0x8339EE39\t0xF85E\n0x8339EF30\t0xF85F\n0x8339EF31\t0xF860\n0x8339EF32\t0xF861\n0x8339EF33\t0xF862\n0x8339EF34\t0xF863\n0x8339EF35\t0xF864\n0x8339EF36\t0xF865\n0x8339EF37\t0xF866\n0x8339EF38\t0xF867\n0x8339EF39\t0xF868\n0x8339F030\t0xF869\n0x8339F031\t0xF86A\n0x8339F032\t0xF86B\n0x8339F033\t0xF86C\n0x8339F034\t0xF86D\n0x8339F035\t0xF86E\n0x8339F036\t0xF86F\n0x8339F037\t0xF870\n0x8339F038\t0xF871\n0x8339F039\t0xF872\n0x8339F130\t0xF873\n0x8339F131\t0xF874\n0x8339F132\t0xF875\n0x8339F133\t0xF876\n0x8339F134\t0xF877\n0x8339F135\t0xF878\n0x8339F136\t0xF879\n0x8339F137\t0xF87A\n0x8339F138\t0xF87B\n0x8339F139\t0xF87C\n0x8339F230\t0xF87D\n0x8339F231\t0xF87E\n0x8339F232\t0xF87F\n0x8339F233\t0xF880\n0x8339F234\t0xF881\n0x8339F235\t0xF882\n0x8339F236\t0xF883\n0x8339F237\t0xF884\n0x8339F238\t0xF885\n0x8339F239\t0xF886\n0x8339F330\t0xF887\n0x8339F331\t0xF888\n0x8339F332\t0xF889\n0x8339F333\t0xF88A\n0x8339F334\t0xF88B\n0x8339F335\t0xF88C\n0x8339F336\t0xF88D\n0x8339F337\t0xF88E\n0x8339F338\t0xF88F\n0x8339F339\t0xF890\n0x8339F430\t0xF891\n0x8339F431\t0xF892\n0x8339F432\t0xF893\n0x8339F433\t0xF894\n0x8339F434\t0xF895\n0x8339F435\t0xF896\n0x8339F436\t0xF897\n0x8339F437\t0xF898\n0x8339F438\t0xF899\n0x8339F439\t0xF89A\n0x8339F530\t0xF89B\n0x8339F531\t0xF89C\n0x8339F532\t0xF89D\n0x8339F533\t0xF89E\n0x8339F534\t0xF89F\n0x8339F535\t0xF8A0\n0x8339F536\t0xF8A1\n0x8339F537\t0xF8A2\n0x8339F538\t0xF8A3\n0x8339F539\t0xF8A4\n0x8339F630\t0xF8A5\n0x8339F631\t0xF8A6\n0x8339F632\t0xF8A7\n0x8339F633\t0xF8A8\n0x8339F634\t0xF8A9\n0x8339F635\t0xF8AA\n0x8339F636\t0xF8AB\n0x8339F637\t0xF8AC\n0x8339F638\t0xF8AD\n0x8339F639\t0xF8AE\n0x8339F730\t0xF8AF\n0x8339F731\t0xF8B0\n0x8339F732\t0xF8B1\n0x8339F733\t0xF8B2\n0x8339F734\t0xF8B3\n0x8339F735\t0xF8B4\n0x8339F736\t0xF8B5\n0x8339F737\t0xF8B6\n0x8339F738\t0xF8B7\n0x8339F739\t0xF8B8\n0x8339F830\t0xF8B9\n0x8339F831\t0xF8BA\n0x8339F832\t0xF8BB\n0x8339F833\t0xF8BC\n0x8339F834\t0xF8BD\n0x8339F835\t0xF8BE\n0x8339F836\t0xF8BF\n0x8339F837\t0xF8C0\n0x8339F838\t0xF8C1\n0x8339F839\t0xF8C2\n0x8339F930\t0xF8C3\n0x8339F931\t0xF8C4\n0x8339F932\t0xF8C5\n0x8339F933\t0xF8C6\n0x8339F934\t0xF8C7\n0x8339F935\t0xF8C8\n0x8339F936\t0xF8C9\n0x8339F937\t0xF8CA\n0x8339F938\t0xF8CB\n0x8339F939\t0xF8CC\n0x8339FA30\t0xF8CD\n0x8339FA31\t0xF8CE\n0x8339FA32\t0xF8CF\n0x8339FA33\t0xF8D0\n0x8339FA34\t0xF8D1\n0x8339FA35\t0xF8D2\n0x8339FA36\t0xF8D3\n0x8339FA37\t0xF8D4\n0x8339FA38\t0xF8D5\n0x8339FA39\t0xF8D6\n0x8339FB30\t0xF8D7\n0x8339FB31\t0xF8D8\n0x8339FB32\t0xF8D9\n0x8339FB33\t0xF8DA\n0x8339FB34\t0xF8DB\n0x8339FB35\t0xF8DC\n0x8339FB36\t0xF8DD\n0x8339FB37\t0xF8DE\n0x8339FB38\t0xF8DF\n0x8339FB39\t0xF8E0\n0x8339FC30\t0xF8E1\n0x8339FC31\t0xF8E2\n0x8339FC32\t0xF8E3\n0x8339FC33\t0xF8E4\n0x8339FC34\t0xF8E5\n0x8339FC35\t0xF8E6\n0x8339FC36\t0xF8E7\n0x8339FC37\t0xF8E8\n0x8339FC38\t0xF8E9\n0x8339FC39\t0xF8EA\n0x8339FD30\t0xF8EB\n0x8339FD31\t0xF8EC\n0x8339FD32\t0xF8ED\n0x8339FD33\t0xF8EE\n0x8339FD34\t0xF8EF\n0x8339FD35\t0xF8F0\n0x8339FD36\t0xF8F1\n0x8339FD37\t0xF8F2\n0x8339FD38\t0xF8F3\n0x8339FD39\t0xF8F4\n0x8339FE30\t0xF8F5\n0x8339FE31\t0xF8F6\n0x8339FE32\t0xF8F7\n0x8339FE33\t0xF8F8\n0x8339FE34\t0xF8F9\n0x8339FE35\t0xF8FA\n0x8339FE36\t0xF8FB\n0x8339FE37\t0xF8FC\n0x8339FE38\t0xF8FD\n0x8339FE39\t0xF8FE\n0x8340\t0x50BD\n0x8341\t0x50BE\n0x8342\t0x50BF\n0x8343\t0x50C0\n0x8344\t0x50C1\n0x8345\t0x50C2\n0x8346\t0x50C3\n0x8347\t0x50C4\n0x8348\t0x50C5\n0x8349\t0x50C6\n0x834A\t0x50C7\n0x834B\t0x50C8\n0x834C\t0x50C9\n0x834D\t0x50CA\n0x834E\t0x50CB\n0x834F\t0x50CC\n0x8350\t0x50CD\n0x8351\t0x50CE\n0x8352\t0x50D0\n0x8353\t0x50D1\n0x8354\t0x50D2\n0x8355\t0x50D3\n0x8356\t0x50D4\n0x8357\t0x50D5\n0x8358\t0x50D7\n0x8359\t0x50D8\n0x835A\t0x50D9\n0x835B\t0x50DB\n0x835C\t0x50DC\n0x835D\t0x50DD\n0x835E\t0x50DE\n0x835F\t0x50DF\n0x8360\t0x50E0\n0x8361\t0x50E1\n0x8362\t0x50E2\n0x8363\t0x50E3\n0x8364\t0x50E4\n0x8365\t0x50E5\n0x8366\t0x50E8\n0x8367\t0x50E9\n0x8368\t0x50EA\n0x8369\t0x50EB\n0x836A\t0x50EF\n0x836B\t0x50F0\n0x836C\t0x50F1\n0x836D\t0x50F2\n0x836E\t0x50F4\n0x836F\t0x50F6\n0x8370\t0x50F7\n0x8371\t0x50F8\n0x8372\t0x50F9\n0x8373\t0x50FA\n0x8374\t0x50FC\n0x8375\t0x50FD\n0x8376\t0x50FE\n0x8377\t0x50FF\n0x8378\t0x5100\n0x8379\t0x5101\n0x837A\t0x5102\n0x837B\t0x5103\n0x837C\t0x5104\n0x837D\t0x5105\n0x837E\t0x5108\n0x8380\t0x5109\n0x8381\t0x510A\n0x8382\t0x510C\n0x8383\t0x510D\n0x8384\t0x510E\n0x8385\t0x510F\n0x8386\t0x5110\n0x8387\t0x5111\n0x8388\t0x5113\n0x8389\t0x5114\n0x838A\t0x5115\n0x838B\t0x5116\n0x838C\t0x5117\n0x838D\t0x5118\n0x838E\t0x5119\n0x838F\t0x511A\n0x8390\t0x511B\n0x8391\t0x511C\n0x8392\t0x511D\n0x8393\t0x511E\n0x8394\t0x511F\n0x8395\t0x5120\n0x8396\t0x5122\n0x8397\t0x5123\n0x8398\t0x5124\n0x8399\t0x5125\n0x839A\t0x5126\n0x839B\t0x5127\n0x839C\t0x5128\n0x839D\t0x5129\n0x839E\t0x512A\n0x839F\t0x512B\n0x83A0\t0x512C\n0x83A1\t0x512D\n0x83A2\t0x512E\n0x83A3\t0x512F\n0x83A4\t0x5130\n0x83A5\t0x5131\n0x83A6\t0x5132\n0x83A7\t0x5133\n0x83A8\t0x5134\n0x83A9\t0x5135\n0x83AA\t0x5136\n0x83AB\t0x5137\n0x83AC\t0x5138\n0x83AD\t0x5139\n0x83AE\t0x513A\n0x83AF\t0x513B\n0x83B0\t0x513C\n0x83B1\t0x513D\n0x83B2\t0x513E\n0x83B3\t0x5142\n0x83B4\t0x5147\n0x83B5\t0x514A\n0x83B6\t0x514C\n0x83B7\t0x514E\n0x83B8\t0x514F\n0x83B9\t0x5150\n0x83BA\t0x5152\n0x83BB\t0x5153\n0x83BC\t0x5157\n0x83BD\t0x5158\n0x83BE\t0x5159\n0x83BF\t0x515B\n0x83C0\t0x515D\n0x83C1\t0x515E\n0x83C2\t0x515F\n0x83C3\t0x5160\n0x83C4\t0x5161\n0x83C5\t0x5163\n0x83C6\t0x5164\n0x83C7\t0x5166\n0x83C8\t0x5167\n0x83C9\t0x5169\n0x83CA\t0x516A\n0x83CB\t0x516F\n0x83CC\t0x5172\n0x83CD\t0x517A\n0x83CE\t0x517E\n0x83CF\t0x517F\n0x83D0\t0x5183\n0x83D1\t0x5184\n0x83D2\t0x5186\n0x83D3\t0x5187\n0x83D4\t0x518A\n0x83D5\t0x518B\n0x83D6\t0x518E\n0x83D7\t0x518F\n0x83D8\t0x5190\n0x83D9\t0x5191\n0x83DA\t0x5193\n0x83DB\t0x5194\n0x83DC\t0x5198\n0x83DD\t0x519A\n0x83DE\t0x519D\n0x83DF\t0x519E\n0x83E0\t0x519F\n0x83E1\t0x51A1\n0x83E2\t0x51A3\n0x83E3\t0x51A6\n0x83E4\t0x51A7\n0x83E5\t0x51A8\n0x83E6\t0x51A9\n0x83E7\t0x51AA\n0x83E8\t0x51AD\n0x83E9\t0x51AE\n0x83EA\t0x51B4\n0x83EB\t0x51B8\n0x83EC\t0x51B9\n0x83ED\t0x51BA\n0x83EE\t0x51BE\n0x83EF\t0x51BF\n0x83F0\t0x51C1\n0x83F1\t0x51C2\n0x83F2\t0x51C3\n0x83F3\t0x51C5\n0x83F4\t0x51C8\n0x83F5\t0x51CA\n0x83F6\t0x51CD\n0x83F7\t0x51CE\n0x83F8\t0x51D0\n0x83F9\t0x51D2\n0x83FA\t0x51D3\n0x83FB\t0x51D4\n0x83FC\t0x51D5\n0x83FD\t0x51D6\n0x83FE\t0x51D7\n0x84308130\t0xF8FF\n0x84308131\t0xF900\n0x84308132\t0xF901\n0x84308133\t0xF902\n0x84308134\t0xF903\n0x84308135\t0xF904\n0x84308136\t0xF905\n0x84308137\t0xF906\n0x84308138\t0xF907\n0x84308139\t0xF908\n0x84308230\t0xF909\n0x84308231\t0xF90A\n0x84308232\t0xF90B\n0x84308233\t0xF90C\n0x84308234\t0xF90D\n0x84308235\t0xF90E\n0x84308236\t0xF90F\n0x84308237\t0xF910\n0x84308238\t0xF911\n0x84308239\t0xF912\n0x84308330\t0xF913\n0x84308331\t0xF914\n0x84308332\t0xF915\n0x84308333\t0xF916\n0x84308334\t0xF917\n0x84308335\t0xF918\n0x84308336\t0xF919\n0x84308337\t0xF91A\n0x84308338\t0xF91B\n0x84308339\t0xF91C\n0x84308430\t0xF91D\n0x84308431\t0xF91E\n0x84308432\t0xF91F\n0x84308433\t0xF920\n0x84308434\t0xF921\n0x84308435\t0xF922\n0x84308436\t0xF923\n0x84308437\t0xF924\n0x84308438\t0xF925\n0x84308439\t0xF926\n0x84308530\t0xF927\n0x84308531\t0xF928\n0x84308532\t0xF929\n0x84308533\t0xF92A\n0x84308534\t0xF92B\n0x84308535\t0xF92D\n0x84308536\t0xF92E\n0x84308537\t0xF92F\n0x84308538\t0xF930\n0x84308539\t0xF931\n0x84308630\t0xF932\n0x84308631\t0xF933\n0x84308632\t0xF934\n0x84308633\t0xF935\n0x84308634\t0xF936\n0x84308635\t0xF937\n0x84308636\t0xF938\n0x84308637\t0xF939\n0x84308638\t0xF93A\n0x84308639\t0xF93B\n0x84308730\t0xF93C\n0x84308731\t0xF93D\n0x84308732\t0xF93E\n0x84308733\t0xF93F\n0x84308734\t0xF940\n0x84308735\t0xF941\n0x84308736\t0xF942\n0x84308737\t0xF943\n0x84308738\t0xF944\n0x84308739\t0xF945\n0x84308830\t0xF946\n0x84308831\t0xF947\n0x84308832\t0xF948\n0x84308833\t0xF949\n0x84308834\t0xF94A\n0x84308835\t0xF94B\n0x84308836\t0xF94C\n0x84308837\t0xF94D\n0x84308838\t0xF94E\n0x84308839\t0xF94F\n0x84308930\t0xF950\n0x84308931\t0xF951\n0x84308932\t0xF952\n0x84308933\t0xF953\n0x84308934\t0xF954\n0x84308935\t0xF955\n0x84308936\t0xF956\n0x84308937\t0xF957\n0x84308938\t0xF958\n0x84308939\t0xF959\n0x84308A30\t0xF95A\n0x84308A31\t0xF95B\n0x84308A32\t0xF95C\n0x84308A33\t0xF95D\n0x84308A34\t0xF95E\n0x84308A35\t0xF95F\n0x84308A36\t0xF960\n0x84308A37\t0xF961\n0x84308A38\t0xF962\n0x84308A39\t0xF963\n0x84308B30\t0xF964\n0x84308B31\t0xF965\n0x84308B32\t0xF966\n0x84308B33\t0xF967\n0x84308B34\t0xF968\n0x84308B35\t0xF969\n0x84308B36\t0xF96A\n0x84308B37\t0xF96B\n0x84308B38\t0xF96C\n0x84308B39\t0xF96D\n0x84308C30\t0xF96E\n0x84308C31\t0xF96F\n0x84308C32\t0xF970\n0x84308C33\t0xF971\n0x84308C34\t0xF972\n0x84308C35\t0xF973\n0x84308C36\t0xF974\n0x84308C37\t0xF975\n0x84308C38\t0xF976\n0x84308C39\t0xF977\n0x84308D30\t0xF978\n0x84308D31\t0xF97A\n0x84308D32\t0xF97B\n0x84308D33\t0xF97C\n0x84308D34\t0xF97D\n0x84308D35\t0xF97E\n0x84308D36\t0xF97F\n0x84308D37\t0xF980\n0x84308D38\t0xF981\n0x84308D39\t0xF982\n0x84308E30\t0xF983\n0x84308E31\t0xF984\n0x84308E32\t0xF985\n0x84308E33\t0xF986\n0x84308E34\t0xF987\n0x84308E35\t0xF988\n0x84308E36\t0xF989\n0x84308E37\t0xF98A\n0x84308E38\t0xF98B\n0x84308E39\t0xF98C\n0x84308F30\t0xF98D\n0x84308F31\t0xF98E\n0x84308F32\t0xF98F\n0x84308F33\t0xF990\n0x84308F34\t0xF991\n0x84308F35\t0xF992\n0x84308F36\t0xF993\n0x84308F37\t0xF994\n0x84308F38\t0xF996\n0x84308F39\t0xF997\n0x84309030\t0xF998\n0x84309031\t0xF999\n0x84309032\t0xF99A\n0x84309033\t0xF99B\n0x84309034\t0xF99C\n0x84309035\t0xF99D\n0x84309036\t0xF99E\n0x84309037\t0xF99F\n0x84309038\t0xF9A0\n0x84309039\t0xF9A1\n0x84309130\t0xF9A2\n0x84309131\t0xF9A3\n0x84309132\t0xF9A4\n0x84309133\t0xF9A5\n0x84309134\t0xF9A6\n0x84309135\t0xF9A7\n0x84309136\t0xF9A8\n0x84309137\t0xF9A9\n0x84309138\t0xF9AA\n0x84309139\t0xF9AB\n0x84309230\t0xF9AC\n0x84309231\t0xF9AD\n0x84309232\t0xF9AE\n0x84309233\t0xF9AF\n0x84309234\t0xF9B0\n0x84309235\t0xF9B1\n0x84309236\t0xF9B2\n0x84309237\t0xF9B3\n0x84309238\t0xF9B4\n0x84309239\t0xF9B5\n0x84309330\t0xF9B6\n0x84309331\t0xF9B7\n0x84309332\t0xF9B8\n0x84309333\t0xF9B9\n0x84309334\t0xF9BA\n0x84309335\t0xF9BB\n0x84309336\t0xF9BC\n0x84309337\t0xF9BD\n0x84309338\t0xF9BE\n0x84309339\t0xF9BF\n0x84309430\t0xF9C0\n0x84309431\t0xF9C1\n0x84309432\t0xF9C2\n0x84309433\t0xF9C3\n0x84309434\t0xF9C4\n0x84309435\t0xF9C5\n0x84309436\t0xF9C6\n0x84309437\t0xF9C7\n0x84309438\t0xF9C8\n0x84309439\t0xF9C9\n0x84309530\t0xF9CA\n0x84309531\t0xF9CB\n0x84309532\t0xF9CC\n0x84309533\t0xF9CD\n0x84309534\t0xF9CE\n0x84309535\t0xF9CF\n0x84309536\t0xF9D0\n0x84309537\t0xF9D1\n0x84309538\t0xF9D2\n0x84309539\t0xF9D3\n0x84309630\t0xF9D4\n0x84309631\t0xF9D5\n0x84309632\t0xF9D6\n0x84309633\t0xF9D7\n0x84309634\t0xF9D8\n0x84309635\t0xF9D9\n0x84309636\t0xF9DA\n0x84309637\t0xF9DB\n0x84309638\t0xF9DC\n0x84309639\t0xF9DD\n0x84309730\t0xF9DE\n0x84309731\t0xF9DF\n0x84309732\t0xF9E0\n0x84309733\t0xF9E1\n0x84309734\t0xF9E2\n0x84309735\t0xF9E3\n0x84309736\t0xF9E4\n0x84309737\t0xF9E5\n0x84309738\t0xF9E6\n0x84309739\t0xF9E8\n0x84309830\t0xF9E9\n0x84309831\t0xF9EA\n0x84309832\t0xF9EB\n0x84309833\t0xF9EC\n0x84309834\t0xF9ED\n0x84309835\t0xF9EE\n0x84309836\t0xF9EF\n0x84309837\t0xF9F0\n0x84309838\t0xF9F2\n0x84309839\t0xF9F3\n0x84309930\t0xF9F4\n0x84309931\t0xF9F5\n0x84309932\t0xF9F6\n0x84309933\t0xF9F7\n0x84309934\t0xF9F8\n0x84309935\t0xF9F9\n0x84309936\t0xF9FA\n0x84309937\t0xF9FB\n0x84309938\t0xF9FC\n0x84309939\t0xF9FD\n0x84309A30\t0xF9FE\n0x84309A31\t0xF9FF\n0x84309A32\t0xFA00\n0x84309A33\t0xFA01\n0x84309A34\t0xFA02\n0x84309A35\t0xFA03\n0x84309A36\t0xFA04\n0x84309A37\t0xFA05\n0x84309A38\t0xFA06\n0x84309A39\t0xFA07\n0x84309B30\t0xFA08\n0x84309B31\t0xFA09\n0x84309B32\t0xFA0A\n0x84309B33\t0xFA0B\n0x84309B34\t0xFA10\n0x84309B35\t0xFA12\n0x84309B36\t0xFA15\n0x84309B37\t0xFA16\n0x84309B38\t0xFA17\n0x84309B39\t0xFA19\n0x84309C30\t0xFA1A\n0x84309C31\t0xFA1B\n0x84309C32\t0xFA1C\n0x84309C33\t0xFA1D\n0x84309C34\t0xFA1E\n0x84309C35\t0xFA22\n0x84309C36\t0xFA25\n0x84309C37\t0xFA26\n0x84309C38\t0xFA2A\n0x84309C39\t0xFA2B\n0x84309D30\t0xFA2C\n0x84309D31\t0xFA2D\n0x84309D32\t0xFA2E\n0x84309D33\t0xFA2F\n0x84309D34\t0xFA30\n0x84309D35\t0xFA31\n0x84309D36\t0xFA32\n0x84309D37\t0xFA33\n0x84309D38\t0xFA34\n0x84309D39\t0xFA35\n0x84309E30\t0xFA36\n0x84309E31\t0xFA37\n0x84309E32\t0xFA38\n0x84309E33\t0xFA39\n0x84309E34\t0xFA3A\n0x84309E35\t0xFA3B\n0x84309E36\t0xFA3C\n0x84309E37\t0xFA3D\n0x84309E38\t0xFA3E\n0x84309E39\t0xFA3F\n0x84309F30\t0xFA40\n0x84309F31\t0xFA41\n0x84309F32\t0xFA42\n0x84309F33\t0xFA43\n0x84309F34\t0xFA44\n0x84309F35\t0xFA45\n0x84309F36\t0xFA46\n0x84309F37\t0xFA47\n0x84309F38\t0xFA48\n0x84309F39\t0xFA49\n0x8430A030\t0xFA4A\n0x8430A031\t0xFA4B\n0x8430A032\t0xFA4C\n0x8430A033\t0xFA4D\n0x8430A034\t0xFA4E\n0x8430A035\t0xFA4F\n0x8430A036\t0xFA50\n0x8430A037\t0xFA51\n0x8430A038\t0xFA52\n0x8430A039\t0xFA53\n0x8430A130\t0xFA54\n0x8430A131\t0xFA55\n0x8430A132\t0xFA56\n0x8430A133\t0xFA57\n0x8430A134\t0xFA58\n0x8430A135\t0xFA59\n0x8430A136\t0xFA5A\n0x8430A137\t0xFA5B\n0x8430A138\t0xFA5C\n0x8430A139\t0xFA5D\n0x8430A230\t0xFA5E\n0x8430A231\t0xFA5F\n0x8430A232\t0xFA60\n0x8430A233\t0xFA61\n0x8430A234\t0xFA62\n0x8430A235\t0xFA63\n0x8430A236\t0xFA64\n0x8430A237\t0xFA65\n0x8430A238\t0xFA66\n0x8430A239\t0xFA67\n0x8430A330\t0xFA68\n0x8430A331\t0xFA69\n0x8430A332\t0xFA6A\n0x8430A333\t0xFA6B\n0x8430A334\t0xFA6C\n0x8430A335\t0xFA6D\n0x8430A336\t0xFA6E\n0x8430A337\t0xFA6F\n0x8430A338\t0xFA70\n0x8430A339\t0xFA71\n0x8430A430\t0xFA72\n0x8430A431\t0xFA73\n0x8430A432\t0xFA74\n0x8430A433\t0xFA75\n0x8430A434\t0xFA76\n0x8430A435\t0xFA77\n0x8430A436\t0xFA78\n0x8430A437\t0xFA79\n0x8430A438\t0xFA7A\n0x8430A439\t0xFA7B\n0x8430A530\t0xFA7C\n0x8430A531\t0xFA7D\n0x8430A532\t0xFA7E\n0x8430A533\t0xFA7F\n0x8430A534\t0xFA80\n0x8430A535\t0xFA81\n0x8430A536\t0xFA82\n0x8430A537\t0xFA83\n0x8430A538\t0xFA84\n0x8430A539\t0xFA85\n0x8430A630\t0xFA86\n0x8430A631\t0xFA87\n0x8430A632\t0xFA88\n0x8430A633\t0xFA89\n0x8430A634\t0xFA8A\n0x8430A635\t0xFA8B\n0x8430A636\t0xFA8C\n0x8430A637\t0xFA8D\n0x8430A638\t0xFA8E\n0x8430A639\t0xFA8F\n0x8430A730\t0xFA90\n0x8430A731\t0xFA91\n0x8430A732\t0xFA92\n0x8430A733\t0xFA93\n0x8430A734\t0xFA94\n0x8430A735\t0xFA95\n0x8430A736\t0xFA96\n0x8430A737\t0xFA97\n0x8430A738\t0xFA98\n0x8430A739\t0xFA99\n0x8430A830\t0xFA9A\n0x8430A831\t0xFA9B\n0x8430A832\t0xFA9C\n0x8430A833\t0xFA9D\n0x8430A834\t0xFA9E\n0x8430A835\t0xFA9F\n0x8430A836\t0xFAA0\n0x8430A837\t0xFAA1\n0x8430A838\t0xFAA2\n0x8430A839\t0xFAA3\n0x8430A930\t0xFAA4\n0x8430A931\t0xFAA5\n0x8430A932\t0xFAA6\n0x8430A933\t0xFAA7\n0x8430A934\t0xFAA8\n0x8430A935\t0xFAA9\n0x8430A936\t0xFAAA\n0x8430A937\t0xFAAB\n0x8430A938\t0xFAAC\n0x8430A939\t0xFAAD\n0x8430AA30\t0xFAAE\n0x8430AA31\t0xFAAF\n0x8430AA32\t0xFAB0\n0x8430AA33\t0xFAB1\n0x8430AA34\t0xFAB2\n0x8430AA35\t0xFAB3\n0x8430AA36\t0xFAB4\n0x8430AA37\t0xFAB5\n0x8430AA38\t0xFAB6\n0x8430AA39\t0xFAB7\n0x8430AB30\t0xFAB8\n0x8430AB31\t0xFAB9\n0x8430AB32\t0xFABA\n0x8430AB33\t0xFABB\n0x8430AB34\t0xFABC\n0x8430AB35\t0xFABD\n0x8430AB36\t0xFABE\n0x8430AB37\t0xFABF\n0x8430AB38\t0xFAC0\n0x8430AB39\t0xFAC1\n0x8430AC30\t0xFAC2\n0x8430AC31\t0xFAC3\n0x8430AC32\t0xFAC4\n0x8430AC33\t0xFAC5\n0x8430AC34\t0xFAC6\n0x8430AC35\t0xFAC7\n0x8430AC36\t0xFAC8\n0x8430AC37\t0xFAC9\n0x8430AC38\t0xFACA\n0x8430AC39\t0xFACB\n0x8430AD30\t0xFACC\n0x8430AD31\t0xFACD\n0x8430AD32\t0xFACE\n0x8430AD33\t0xFACF\n0x8430AD34\t0xFAD0\n0x8430AD35\t0xFAD1\n0x8430AD36\t0xFAD2\n0x8430AD37\t0xFAD3\n0x8430AD38\t0xFAD4\n0x8430AD39\t0xFAD5\n0x8430AE30\t0xFAD6\n0x8430AE31\t0xFAD7\n0x8430AE32\t0xFAD8\n0x8430AE33\t0xFAD9\n0x8430AE34\t0xFADA\n0x8430AE35\t0xFADB\n0x8430AE36\t0xFADC\n0x8430AE37\t0xFADD\n0x8430AE38\t0xFADE\n0x8430AE39\t0xFADF\n0x8430AF30\t0xFAE0\n0x8430AF31\t0xFAE1\n0x8430AF32\t0xFAE2\n0x8430AF33\t0xFAE3\n0x8430AF34\t0xFAE4\n0x8430AF35\t0xFAE5\n0x8430AF36\t0xFAE6\n0x8430AF37\t0xFAE7\n0x8430AF38\t0xFAE8\n0x8430AF39\t0xFAE9\n0x8430B030\t0xFAEA\n0x8430B031\t0xFAEB\n0x8430B032\t0xFAEC\n0x8430B033\t0xFAED\n0x8430B034\t0xFAEE\n0x8430B035\t0xFAEF\n0x8430B036\t0xFAF0\n0x8430B037\t0xFAF1\n0x8430B038\t0xFAF2\n0x8430B039\t0xFAF3\n0x8430B130\t0xFAF4\n0x8430B131\t0xFAF5\n0x8430B132\t0xFAF6\n0x8430B133\t0xFAF7\n0x8430B134\t0xFAF8\n0x8430B135\t0xFAF9\n0x8430B136\t0xFAFA\n0x8430B137\t0xFAFB\n0x8430B138\t0xFAFC\n0x8430B139\t0xFAFD\n0x8430B230\t0xFAFE\n0x8430B231\t0xFAFF\n0x8430B232\t0xFB00\n0x8430B233\t0xFB01\n0x8430B234\t0xFB02\n0x8430B235\t0xFB03\n0x8430B236\t0xFB04\n0x8430B237\t0xFB05\n0x8430B238\t0xFB06\n0x8430B239\t0xFB07\n0x8430B330\t0xFB08\n0x8430B331\t0xFB09\n0x8430B332\t0xFB0A\n0x8430B333\t0xFB0B\n0x8430B334\t0xFB0C\n0x8430B335\t0xFB0D\n0x8430B336\t0xFB0E\n0x8430B337\t0xFB0F\n0x8430B338\t0xFB10\n0x8430B339\t0xFB11\n0x8430B430\t0xFB12\n0x8430B431\t0xFB13\n0x8430B432\t0xFB14\n0x8430B433\t0xFB15\n0x8430B434\t0xFB16\n0x8430B435\t0xFB17\n0x8430B436\t0xFB18\n0x8430B437\t0xFB19\n0x8430B438\t0xFB1A\n0x8430B439\t0xFB1B\n0x8430B530\t0xFB1C\n0x8430B531\t0xFB1D\n0x8430B532\t0xFB1E\n0x8430B533\t0xFB1F\n0x8430B534\t0xFB20\n0x8430B535\t0xFB21\n0x8430B536\t0xFB22\n0x8430B537\t0xFB23\n0x8430B538\t0xFB24\n0x8430B539\t0xFB25\n0x8430B630\t0xFB26\n0x8430B631\t0xFB27\n0x8430B632\t0xFB28\n0x8430B633\t0xFB29\n0x8430B634\t0xFB2A\n0x8430B635\t0xFB2B\n0x8430B636\t0xFB2C\n0x8430B637\t0xFB2D\n0x8430B638\t0xFB2E\n0x8430B639\t0xFB2F\n0x8430B730\t0xFB30\n0x8430B731\t0xFB31\n0x8430B732\t0xFB32\n0x8430B733\t0xFB33\n0x8430B734\t0xFB34\n0x8430B735\t0xFB35\n0x8430B736\t0xFB36\n0x8430B737\t0xFB37\n0x8430B738\t0xFB38\n0x8430B739\t0xFB39\n0x8430B830\t0xFB3A\n0x8430B831\t0xFB3B\n0x8430B832\t0xFB3C\n0x8430B833\t0xFB3D\n0x8430B834\t0xFB3E\n0x8430B835\t0xFB3F\n0x8430B836\t0xFB40\n0x8430B837\t0xFB41\n0x8430B838\t0xFB42\n0x8430B839\t0xFB43\n0x8430B930\t0xFB44\n0x8430B931\t0xFB45\n0x8430B932\t0xFB46\n0x8430B933\t0xFB47\n0x8430B934\t0xFB48\n0x8430B935\t0xFB49\n0x8430B936\t0xFB4A\n0x8430B937\t0xFB4B\n0x8430B938\t0xFB4C\n0x8430B939\t0xFB4D\n0x8430BA30\t0xFB4E\n0x8430BA31\t0xFB4F\n0x8430BA32\t0xFB50\n0x8430BA33\t0xFB51\n0x8430BA34\t0xFB52\n0x8430BA35\t0xFB53\n0x8430BA36\t0xFB54\n0x8430BA37\t0xFB55\n0x8430BA38\t0xFB56\n0x8430BA39\t0xFB57\n0x8430BB30\t0xFB58\n0x8430BB31\t0xFB59\n0x8430BB32\t0xFB5A\n0x8430BB33\t0xFB5B\n0x8430BB34\t0xFB5C\n0x8430BB35\t0xFB5D\n0x8430BB36\t0xFB5E\n0x8430BB37\t0xFB5F\n0x8430BB38\t0xFB60\n0x8430BB39\t0xFB61\n0x8430BC30\t0xFB62\n0x8430BC31\t0xFB63\n0x8430BC32\t0xFB64\n0x8430BC33\t0xFB65\n0x8430BC34\t0xFB66\n0x8430BC35\t0xFB67\n0x8430BC36\t0xFB68\n0x8430BC37\t0xFB69\n0x8430BC38\t0xFB6A\n0x8430BC39\t0xFB6B\n0x8430BD30\t0xFB6C\n0x8430BD31\t0xFB6D\n0x8430BD32\t0xFB6E\n0x8430BD33\t0xFB6F\n0x8430BD34\t0xFB70\n0x8430BD35\t0xFB71\n0x8430BD36\t0xFB72\n0x8430BD37\t0xFB73\n0x8430BD38\t0xFB74\n0x8430BD39\t0xFB75\n0x8430BE30\t0xFB76\n0x8430BE31\t0xFB77\n0x8430BE32\t0xFB78\n0x8430BE33\t0xFB79\n0x8430BE34\t0xFB7A\n0x8430BE35\t0xFB7B\n0x8430BE36\t0xFB7C\n0x8430BE37\t0xFB7D\n0x8430BE38\t0xFB7E\n0x8430BE39\t0xFB7F\n0x8430BF30\t0xFB80\n0x8430BF31\t0xFB81\n0x8430BF32\t0xFB82\n0x8430BF33\t0xFB83\n0x8430BF34\t0xFB84\n0x8430BF35\t0xFB85\n0x8430BF36\t0xFB86\n0x8430BF37\t0xFB87\n0x8430BF38\t0xFB88\n0x8430BF39\t0xFB89\n0x8430C030\t0xFB8A\n0x8430C031\t0xFB8B\n0x8430C032\t0xFB8C\n0x8430C033\t0xFB8D\n0x8430C034\t0xFB8E\n0x8430C035\t0xFB8F\n0x8430C036\t0xFB90\n0x8430C037\t0xFB91\n0x8430C038\t0xFB92\n0x8430C039\t0xFB93\n0x8430C130\t0xFB94\n0x8430C131\t0xFB95\n0x8430C132\t0xFB96\n0x8430C133\t0xFB97\n0x8430C134\t0xFB98\n0x8430C135\t0xFB99\n0x8430C136\t0xFB9A\n0x8430C137\t0xFB9B\n0x8430C138\t0xFB9C\n0x8430C139\t0xFB9D\n0x8430C230\t0xFB9E\n0x8430C231\t0xFB9F\n0x8430C232\t0xFBA0\n0x8430C233\t0xFBA1\n0x8430C234\t0xFBA2\n0x8430C235\t0xFBA3\n0x8430C236\t0xFBA4\n0x8430C237\t0xFBA5\n0x8430C238\t0xFBA6\n0x8430C239\t0xFBA7\n0x8430C330\t0xFBA8\n0x8430C331\t0xFBA9\n0x8430C332\t0xFBAA\n0x8430C333\t0xFBAB\n0x8430C334\t0xFBAC\n0x8430C335\t0xFBAD\n0x8430C336\t0xFBAE\n0x8430C337\t0xFBAF\n0x8430C338\t0xFBB0\n0x8430C339\t0xFBB1\n0x8430C430\t0xFBB2\n0x8430C431\t0xFBB3\n0x8430C432\t0xFBB4\n0x8430C433\t0xFBB5\n0x8430C434\t0xFBB6\n0x8430C435\t0xFBB7\n0x8430C436\t0xFBB8\n0x8430C437\t0xFBB9\n0x8430C438\t0xFBBA\n0x8430C439\t0xFBBB\n0x8430C530\t0xFBBC\n0x8430C531\t0xFBBD\n0x8430C532\t0xFBBE\n0x8430C533\t0xFBBF\n0x8430C534\t0xFBC0\n0x8430C535\t0xFBC1\n0x8430C536\t0xFBC2\n0x8430C537\t0xFBC3\n0x8430C538\t0xFBC4\n0x8430C539\t0xFBC5\n0x8430C630\t0xFBC6\n0x8430C631\t0xFBC7\n0x8430C632\t0xFBC8\n0x8430C633\t0xFBC9\n0x8430C634\t0xFBCA\n0x8430C635\t0xFBCB\n0x8430C636\t0xFBCC\n0x8430C637\t0xFBCD\n0x8430C638\t0xFBCE\n0x8430C639\t0xFBCF\n0x8430C730\t0xFBD0\n0x8430C731\t0xFBD1\n0x8430C732\t0xFBD2\n0x8430C733\t0xFBD3\n0x8430C734\t0xFBD4\n0x8430C735\t0xFBD5\n0x8430C736\t0xFBD6\n0x8430C737\t0xFBD7\n0x8430C738\t0xFBD8\n0x8430C739\t0xFBD9\n0x8430C830\t0xFBDA\n0x8430C831\t0xFBDB\n0x8430C832\t0xFBDC\n0x8430C833\t0xFBDD\n0x8430C834\t0xFBDE\n0x8430C835\t0xFBDF\n0x8430C836\t0xFBE0\n0x8430C837\t0xFBE1\n0x8430C838\t0xFBE2\n0x8430C839\t0xFBE3\n0x8430C930\t0xFBE4\n0x8430C931\t0xFBE5\n0x8430C932\t0xFBE6\n0x8430C933\t0xFBE7\n0x8430C934\t0xFBE8\n0x8430C935\t0xFBE9\n0x8430C936\t0xFBEA\n0x8430C937\t0xFBEB\n0x8430C938\t0xFBEC\n0x8430C939\t0xFBED\n0x8430CA30\t0xFBEE\n0x8430CA31\t0xFBEF\n0x8430CA32\t0xFBF0\n0x8430CA33\t0xFBF1\n0x8430CA34\t0xFBF2\n0x8430CA35\t0xFBF3\n0x8430CA36\t0xFBF4\n0x8430CA37\t0xFBF5\n0x8430CA38\t0xFBF6\n0x8430CA39\t0xFBF7\n0x8430CB30\t0xFBF8\n0x8430CB31\t0xFBF9\n0x8430CB32\t0xFBFA\n0x8430CB33\t0xFBFB\n0x8430CB34\t0xFBFC\n0x8430CB35\t0xFBFD\n0x8430CB36\t0xFBFE\n0x8430CB37\t0xFBFF\n0x8430CB38\t0xFC00\n0x8430CB39\t0xFC01\n0x8430CC30\t0xFC02\n0x8430CC31\t0xFC03\n0x8430CC32\t0xFC04\n0x8430CC33\t0xFC05\n0x8430CC34\t0xFC06\n0x8430CC35\t0xFC07\n0x8430CC36\t0xFC08\n0x8430CC37\t0xFC09\n0x8430CC38\t0xFC0A\n0x8430CC39\t0xFC0B\n0x8430CD30\t0xFC0C\n0x8430CD31\t0xFC0D\n0x8430CD32\t0xFC0E\n0x8430CD33\t0xFC0F\n0x8430CD34\t0xFC10\n0x8430CD35\t0xFC11\n0x8430CD36\t0xFC12\n0x8430CD37\t0xFC13\n0x8430CD38\t0xFC14\n0x8430CD39\t0xFC15\n0x8430CE30\t0xFC16\n0x8430CE31\t0xFC17\n0x8430CE32\t0xFC18\n0x8430CE33\t0xFC19\n0x8430CE34\t0xFC1A\n0x8430CE35\t0xFC1B\n0x8430CE36\t0xFC1C\n0x8430CE37\t0xFC1D\n0x8430CE38\t0xFC1E\n0x8430CE39\t0xFC1F\n0x8430CF30\t0xFC20\n0x8430CF31\t0xFC21\n0x8430CF32\t0xFC22\n0x8430CF33\t0xFC23\n0x8430CF34\t0xFC24\n0x8430CF35\t0xFC25\n0x8430CF36\t0xFC26\n0x8430CF37\t0xFC27\n0x8430CF38\t0xFC28\n0x8430CF39\t0xFC29\n0x8430D030\t0xFC2A\n0x8430D031\t0xFC2B\n0x8430D032\t0xFC2C\n0x8430D033\t0xFC2D\n0x8430D034\t0xFC2E\n0x8430D035\t0xFC2F\n0x8430D036\t0xFC30\n0x8430D037\t0xFC31\n0x8430D038\t0xFC32\n0x8430D039\t0xFC33\n0x8430D130\t0xFC34\n0x8430D131\t0xFC35\n0x8430D132\t0xFC36\n0x8430D133\t0xFC37\n0x8430D134\t0xFC38\n0x8430D135\t0xFC39\n0x8430D136\t0xFC3A\n0x8430D137\t0xFC3B\n0x8430D138\t0xFC3C\n0x8430D139\t0xFC3D\n0x8430D230\t0xFC3E\n0x8430D231\t0xFC3F\n0x8430D232\t0xFC40\n0x8430D233\t0xFC41\n0x8430D234\t0xFC42\n0x8430D235\t0xFC43\n0x8430D236\t0xFC44\n0x8430D237\t0xFC45\n0x8430D238\t0xFC46\n0x8430D239\t0xFC47\n0x8430D330\t0xFC48\n0x8430D331\t0xFC49\n0x8430D332\t0xFC4A\n0x8430D333\t0xFC4B\n0x8430D334\t0xFC4C\n0x8430D335\t0xFC4D\n0x8430D336\t0xFC4E\n0x8430D337\t0xFC4F\n0x8430D338\t0xFC50\n0x8430D339\t0xFC51\n0x8430D430\t0xFC52\n0x8430D431\t0xFC53\n0x8430D432\t0xFC54\n0x8430D433\t0xFC55\n0x8430D434\t0xFC56\n0x8430D435\t0xFC57\n0x8430D436\t0xFC58\n0x8430D437\t0xFC59\n0x8430D438\t0xFC5A\n0x8430D439\t0xFC5B\n0x8430D530\t0xFC5C\n0x8430D531\t0xFC5D\n0x8430D532\t0xFC5E\n0x8430D533\t0xFC5F\n0x8430D534\t0xFC60\n0x8430D535\t0xFC61\n0x8430D536\t0xFC62\n0x8430D537\t0xFC63\n0x8430D538\t0xFC64\n0x8430D539\t0xFC65\n0x8430D630\t0xFC66\n0x8430D631\t0xFC67\n0x8430D632\t0xFC68\n0x8430D633\t0xFC69\n0x8430D634\t0xFC6A\n0x8430D635\t0xFC6B\n0x8430D636\t0xFC6C\n0x8430D637\t0xFC6D\n0x8430D638\t0xFC6E\n0x8430D639\t0xFC6F\n0x8430D730\t0xFC70\n0x8430D731\t0xFC71\n0x8430D732\t0xFC72\n0x8430D733\t0xFC73\n0x8430D734\t0xFC74\n0x8430D735\t0xFC75\n0x8430D736\t0xFC76\n0x8430D737\t0xFC77\n0x8430D738\t0xFC78\n0x8430D739\t0xFC79\n0x8430D830\t0xFC7A\n0x8430D831\t0xFC7B\n0x8430D832\t0xFC7C\n0x8430D833\t0xFC7D\n0x8430D834\t0xFC7E\n0x8430D835\t0xFC7F\n0x8430D836\t0xFC80\n0x8430D837\t0xFC81\n0x8430D838\t0xFC82\n0x8430D839\t0xFC83\n0x8430D930\t0xFC84\n0x8430D931\t0xFC85\n0x8430D932\t0xFC86\n0x8430D933\t0xFC87\n0x8430D934\t0xFC88\n0x8430D935\t0xFC89\n0x8430D936\t0xFC8A\n0x8430D937\t0xFC8B\n0x8430D938\t0xFC8C\n0x8430D939\t0xFC8D\n0x8430DA30\t0xFC8E\n0x8430DA31\t0xFC8F\n0x8430DA32\t0xFC90\n0x8430DA33\t0xFC91\n0x8430DA34\t0xFC92\n0x8430DA35\t0xFC93\n0x8430DA36\t0xFC94\n0x8430DA37\t0xFC95\n0x8430DA38\t0xFC96\n0x8430DA39\t0xFC97\n0x8430DB30\t0xFC98\n0x8430DB31\t0xFC99\n0x8430DB32\t0xFC9A\n0x8430DB33\t0xFC9B\n0x8430DB34\t0xFC9C\n0x8430DB35\t0xFC9D\n0x8430DB36\t0xFC9E\n0x8430DB37\t0xFC9F\n0x8430DB38\t0xFCA0\n0x8430DB39\t0xFCA1\n0x8430DC30\t0xFCA2\n0x8430DC31\t0xFCA3\n0x8430DC32\t0xFCA4\n0x8430DC33\t0xFCA5\n0x8430DC34\t0xFCA6\n0x8430DC35\t0xFCA7\n0x8430DC36\t0xFCA8\n0x8430DC37\t0xFCA9\n0x8430DC38\t0xFCAA\n0x8430DC39\t0xFCAB\n0x8430DD30\t0xFCAC\n0x8430DD31\t0xFCAD\n0x8430DD32\t0xFCAE\n0x8430DD33\t0xFCAF\n0x8430DD34\t0xFCB0\n0x8430DD35\t0xFCB1\n0x8430DD36\t0xFCB2\n0x8430DD37\t0xFCB3\n0x8430DD38\t0xFCB4\n0x8430DD39\t0xFCB5\n0x8430DE30\t0xFCB6\n0x8430DE31\t0xFCB7\n0x8430DE32\t0xFCB8\n0x8430DE33\t0xFCB9\n0x8430DE34\t0xFCBA\n0x8430DE35\t0xFCBB\n0x8430DE36\t0xFCBC\n0x8430DE37\t0xFCBD\n0x8430DE38\t0xFCBE\n0x8430DE39\t0xFCBF\n0x8430DF30\t0xFCC0\n0x8430DF31\t0xFCC1\n0x8430DF32\t0xFCC2\n0x8430DF33\t0xFCC3\n0x8430DF34\t0xFCC4\n0x8430DF35\t0xFCC5\n0x8430DF36\t0xFCC6\n0x8430DF37\t0xFCC7\n0x8430DF38\t0xFCC8\n0x8430DF39\t0xFCC9\n0x8430E030\t0xFCCA\n0x8430E031\t0xFCCB\n0x8430E032\t0xFCCC\n0x8430E033\t0xFCCD\n0x8430E034\t0xFCCE\n0x8430E035\t0xFCCF\n0x8430E036\t0xFCD0\n0x8430E037\t0xFCD1\n0x8430E038\t0xFCD2\n0x8430E039\t0xFCD3\n0x8430E130\t0xFCD4\n0x8430E131\t0xFCD5\n0x8430E132\t0xFCD6\n0x8430E133\t0xFCD7\n0x8430E134\t0xFCD8\n0x8430E135\t0xFCD9\n0x8430E136\t0xFCDA\n0x8430E137\t0xFCDB\n0x8430E138\t0xFCDC\n0x8430E139\t0xFCDD\n0x8430E230\t0xFCDE\n0x8430E231\t0xFCDF\n0x8430E232\t0xFCE0\n0x8430E233\t0xFCE1\n0x8430E234\t0xFCE2\n0x8430E235\t0xFCE3\n0x8430E236\t0xFCE4\n0x8430E237\t0xFCE5\n0x8430E238\t0xFCE6\n0x8430E239\t0xFCE7\n0x8430E330\t0xFCE8\n0x8430E331\t0xFCE9\n0x8430E332\t0xFCEA\n0x8430E333\t0xFCEB\n0x8430E334\t0xFCEC\n0x8430E335\t0xFCED\n0x8430E336\t0xFCEE\n0x8430E337\t0xFCEF\n0x8430E338\t0xFCF0\n0x8430E339\t0xFCF1\n0x8430E430\t0xFCF2\n0x8430E431\t0xFCF3\n0x8430E432\t0xFCF4\n0x8430E433\t0xFCF5\n0x8430E434\t0xFCF6\n0x8430E435\t0xFCF7\n0x8430E436\t0xFCF8\n0x8430E437\t0xFCF9\n0x8430E438\t0xFCFA\n0x8430E439\t0xFCFB\n0x8430E530\t0xFCFC\n0x8430E531\t0xFCFD\n0x8430E532\t0xFCFE\n0x8430E533\t0xFCFF\n0x8430E534\t0xFD00\n0x8430E535\t0xFD01\n0x8430E536\t0xFD02\n0x8430E537\t0xFD03\n0x8430E538\t0xFD04\n0x8430E539\t0xFD05\n0x8430E630\t0xFD06\n0x8430E631\t0xFD07\n0x8430E632\t0xFD08\n0x8430E633\t0xFD09\n0x8430E634\t0xFD0A\n0x8430E635\t0xFD0B\n0x8430E636\t0xFD0C\n0x8430E637\t0xFD0D\n0x8430E638\t0xFD0E\n0x8430E639\t0xFD0F\n0x8430E730\t0xFD10\n0x8430E731\t0xFD11\n0x8430E732\t0xFD12\n0x8430E733\t0xFD13\n0x8430E734\t0xFD14\n0x8430E735\t0xFD15\n0x8430E736\t0xFD16\n0x8430E737\t0xFD17\n0x8430E738\t0xFD18\n0x8430E739\t0xFD19\n0x8430E830\t0xFD1A\n0x8430E831\t0xFD1B\n0x8430E832\t0xFD1C\n0x8430E833\t0xFD1D\n0x8430E834\t0xFD1E\n0x8430E835\t0xFD1F\n0x8430E836\t0xFD20\n0x8430E837\t0xFD21\n0x8430E838\t0xFD22\n0x8430E839\t0xFD23\n0x8430E930\t0xFD24\n0x8430E931\t0xFD25\n0x8430E932\t0xFD26\n0x8430E933\t0xFD27\n0x8430E934\t0xFD28\n0x8430E935\t0xFD29\n0x8430E936\t0xFD2A\n0x8430E937\t0xFD2B\n0x8430E938\t0xFD2C\n0x8430E939\t0xFD2D\n0x8430EA30\t0xFD2E\n0x8430EA31\t0xFD2F\n0x8430EA32\t0xFD30\n0x8430EA33\t0xFD31\n0x8430EA34\t0xFD32\n0x8430EA35\t0xFD33\n0x8430EA36\t0xFD34\n0x8430EA37\t0xFD35\n0x8430EA38\t0xFD36\n0x8430EA39\t0xFD37\n0x8430EB30\t0xFD38\n0x8430EB31\t0xFD39\n0x8430EB32\t0xFD3A\n0x8430EB33\t0xFD3B\n0x8430EB34\t0xFD3C\n0x8430EB35\t0xFD3D\n0x8430EB36\t0xFD3E\n0x8430EB37\t0xFD3F\n0x8430EB38\t0xFD40\n0x8430EB39\t0xFD41\n0x8430EC30\t0xFD42\n0x8430EC31\t0xFD43\n0x8430EC32\t0xFD44\n0x8430EC33\t0xFD45\n0x8430EC34\t0xFD46\n0x8430EC35\t0xFD47\n0x8430EC36\t0xFD48\n0x8430EC37\t0xFD49\n0x8430EC38\t0xFD4A\n0x8430EC39\t0xFD4B\n0x8430ED30\t0xFD4C\n0x8430ED31\t0xFD4D\n0x8430ED32\t0xFD4E\n0x8430ED33\t0xFD4F\n0x8430ED34\t0xFD50\n0x8430ED35\t0xFD51\n0x8430ED36\t0xFD52\n0x8430ED37\t0xFD53\n0x8430ED38\t0xFD54\n0x8430ED39\t0xFD55\n0x8430EE30\t0xFD56\n0x8430EE31\t0xFD57\n0x8430EE32\t0xFD58\n0x8430EE33\t0xFD59\n0x8430EE34\t0xFD5A\n0x8430EE35\t0xFD5B\n0x8430EE36\t0xFD5C\n0x8430EE37\t0xFD5D\n0x8430EE38\t0xFD5E\n0x8430EE39\t0xFD5F\n0x8430EF30\t0xFD60\n0x8430EF31\t0xFD61\n0x8430EF32\t0xFD62\n0x8430EF33\t0xFD63\n0x8430EF34\t0xFD64\n0x8430EF35\t0xFD65\n0x8430EF36\t0xFD66\n0x8430EF37\t0xFD67\n0x8430EF38\t0xFD68\n0x8430EF39\t0xFD69\n0x8430F030\t0xFD6A\n0x8430F031\t0xFD6B\n0x8430F032\t0xFD6C\n0x8430F033\t0xFD6D\n0x8430F034\t0xFD6E\n0x8430F035\t0xFD6F\n0x8430F036\t0xFD70\n0x8430F037\t0xFD71\n0x8430F038\t0xFD72\n0x8430F039\t0xFD73\n0x8430F130\t0xFD74\n0x8430F131\t0xFD75\n0x8430F132\t0xFD76\n0x8430F133\t0xFD77\n0x8430F134\t0xFD78\n0x8430F135\t0xFD79\n0x8430F136\t0xFD7A\n0x8430F137\t0xFD7B\n0x8430F138\t0xFD7C\n0x8430F139\t0xFD7D\n0x8430F230\t0xFD7E\n0x8430F231\t0xFD7F\n0x8430F232\t0xFD80\n0x8430F233\t0xFD81\n0x8430F234\t0xFD82\n0x8430F235\t0xFD83\n0x8430F236\t0xFD84\n0x8430F237\t0xFD85\n0x8430F238\t0xFD86\n0x8430F239\t0xFD87\n0x8430F330\t0xFD88\n0x8430F331\t0xFD89\n0x8430F332\t0xFD8A\n0x8430F333\t0xFD8B\n0x8430F334\t0xFD8C\n0x8430F335\t0xFD8D\n0x8430F336\t0xFD8E\n0x8430F337\t0xFD8F\n0x8430F338\t0xFD90\n0x8430F339\t0xFD91\n0x8430F430\t0xFD92\n0x8430F431\t0xFD93\n0x8430F432\t0xFD94\n0x8430F433\t0xFD95\n0x8430F434\t0xFD96\n0x8430F435\t0xFD97\n0x8430F436\t0xFD98\n0x8430F437\t0xFD99\n0x8430F438\t0xFD9A\n0x8430F439\t0xFD9B\n0x8430F530\t0xFD9C\n0x8430F531\t0xFD9D\n0x8430F532\t0xFD9E\n0x8430F533\t0xFD9F\n0x8430F534\t0xFDA0\n0x8430F535\t0xFDA1\n0x8430F536\t0xFDA2\n0x8430F537\t0xFDA3\n0x8430F538\t0xFDA4\n0x8430F539\t0xFDA5\n0x8430F630\t0xFDA6\n0x8430F631\t0xFDA7\n0x8430F632\t0xFDA8\n0x8430F633\t0xFDA9\n0x8430F634\t0xFDAA\n0x8430F635\t0xFDAB\n0x8430F636\t0xFDAC\n0x8430F637\t0xFDAD\n0x8430F638\t0xFDAE\n0x8430F639\t0xFDAF\n0x8430F730\t0xFDB0\n0x8430F731\t0xFDB1\n0x8430F732\t0xFDB2\n0x8430F733\t0xFDB3\n0x8430F734\t0xFDB4\n0x8430F735\t0xFDB5\n0x8430F736\t0xFDB6\n0x8430F737\t0xFDB7\n0x8430F738\t0xFDB8\n0x8430F739\t0xFDB9\n0x8430F830\t0xFDBA\n0x8430F831\t0xFDBB\n0x8430F832\t0xFDBC\n0x8430F833\t0xFDBD\n0x8430F834\t0xFDBE\n0x8430F835\t0xFDBF\n0x8430F836\t0xFDC0\n0x8430F837\t0xFDC1\n0x8430F838\t0xFDC2\n0x8430F839\t0xFDC3\n0x8430F930\t0xFDC4\n0x8430F931\t0xFDC5\n0x8430F932\t0xFDC6\n0x8430F933\t0xFDC7\n0x8430F934\t0xFDC8\n0x8430F935\t0xFDC9\n0x8430F936\t0xFDCA\n0x8430F937\t0xFDCB\n0x8430F938\t0xFDCC\n0x8430F939\t0xFDCD\n0x8430FA30\t0xFDCE\n0x8430FA31\t0xFDCF\n0x8430FA32\t0xFDD0\n0x8430FA33\t0xFDD1\n0x8430FA34\t0xFDD2\n0x8430FA35\t0xFDD3\n0x8430FA36\t0xFDD4\n0x8430FA37\t0xFDD5\n0x8430FA38\t0xFDD6\n0x8430FA39\t0xFDD7\n0x8430FB30\t0xFDD8\n0x8430FB31\t0xFDD9\n0x8430FB32\t0xFDDA\n0x8430FB33\t0xFDDB\n0x8430FB34\t0xFDDC\n0x8430FB35\t0xFDDD\n0x8430FB36\t0xFDDE\n0x8430FB37\t0xFDDF\n0x8430FB38\t0xFDE0\n0x8430FB39\t0xFDE1\n0x8430FC30\t0xFDE2\n0x8430FC31\t0xFDE3\n0x8430FC32\t0xFDE4\n0x8430FC33\t0xFDE5\n0x8430FC34\t0xFDE6\n0x8430FC35\t0xFDE7\n0x8430FC36\t0xFDE8\n0x8430FC37\t0xFDE9\n0x8430FC38\t0xFDEA\n0x8430FC39\t0xFDEB\n0x8430FD30\t0xFDEC\n0x8430FD31\t0xFDED\n0x8430FD32\t0xFDEE\n0x8430FD33\t0xFDEF\n0x8430FD34\t0xFDF0\n0x8430FD35\t0xFDF1\n0x8430FD36\t0xFDF2\n0x8430FD37\t0xFDF3\n0x8430FD38\t0xFDF4\n0x8430FD39\t0xFDF5\n0x8430FE30\t0xFDF6\n0x8430FE31\t0xFDF7\n0x8430FE32\t0xFDF8\n0x8430FE33\t0xFDF9\n0x8430FE34\t0xFDFA\n0x8430FE35\t0xFDFB\n0x8430FE36\t0xFDFC\n0x8430FE37\t0xFDFD\n0x8430FE38\t0xFDFE\n0x8430FE39\t0xFDFF\n0x84318130\t0xFE00\n0x84318131\t0xFE01\n0x84318132\t0xFE02\n0x84318133\t0xFE03\n0x84318134\t0xFE04\n0x84318135\t0xFE05\n0x84318136\t0xFE06\n0x84318137\t0xFE07\n0x84318138\t0xFE08\n0x84318139\t0xFE09\n0x84318230\t0xFE0A\n0x84318231\t0xFE0B\n0x84318232\t0xFE0C\n0x84318233\t0xFE0D\n0x84318234\t0xFE0E\n0x84318235\t0xFE0F\n0x84318236\t0xFE10\n0x84318237\t0xFE11\n0x84318238\t0xFE12\n0x84318239\t0xFE13\n0x84318330\t0xFE14\n0x84318331\t0xFE15\n0x84318332\t0xFE16\n0x84318333\t0xFE17\n0x84318334\t0xFE18\n0x84318335\t0xFE19\n0x84318336\t0xFE1A\n0x84318337\t0xFE1B\n0x84318338\t0xFE1C\n0x84318339\t0xFE1D\n0x84318430\t0xFE1E\n0x84318431\t0xFE1F\n0x84318432\t0xFE20\n0x84318433\t0xFE21\n0x84318434\t0xFE22\n0x84318435\t0xFE23\n0x84318436\t0xFE24\n0x84318437\t0xFE25\n0x84318438\t0xFE26\n0x84318439\t0xFE27\n0x84318530\t0xFE28\n0x84318531\t0xFE29\n0x84318532\t0xFE2A\n0x84318533\t0xFE2B\n0x84318534\t0xFE2C\n0x84318535\t0xFE2D\n0x84318536\t0xFE2E\n0x84318537\t0xFE2F\n0x84318538\t0xFE32\n0x84318539\t0xFE45\n0x84318630\t0xFE46\n0x84318631\t0xFE47\n0x84318632\t0xFE48\n0x84318633\t0xFE53\n0x84318634\t0xFE58\n0x84318635\t0xFE67\n0x84318636\t0xFE6C\n0x84318637\t0xFE6D\n0x84318638\t0xFE6E\n0x84318639\t0xFE6F\n0x84318730\t0xFE70\n0x84318731\t0xFE71\n0x84318732\t0xFE72\n0x84318733\t0xFE73\n0x84318734\t0xFE74\n0x84318735\t0xFE75\n0x84318736\t0xFE76\n0x84318737\t0xFE77\n0x84318738\t0xFE78\n0x84318739\t0xFE79\n0x84318830\t0xFE7A\n0x84318831\t0xFE7B\n0x84318832\t0xFE7C\n0x84318833\t0xFE7D\n0x84318834\t0xFE7E\n0x84318835\t0xFE7F\n0x84318836\t0xFE80\n0x84318837\t0xFE81\n0x84318838\t0xFE82\n0x84318839\t0xFE83\n0x84318930\t0xFE84\n0x84318931\t0xFE85\n0x84318932\t0xFE86\n0x84318933\t0xFE87\n0x84318934\t0xFE88\n0x84318935\t0xFE89\n0x84318936\t0xFE8A\n0x84318937\t0xFE8B\n0x84318938\t0xFE8C\n0x84318939\t0xFE8D\n0x84318A30\t0xFE8E\n0x84318A31\t0xFE8F\n0x84318A32\t0xFE90\n0x84318A33\t0xFE91\n0x84318A34\t0xFE92\n0x84318A35\t0xFE93\n0x84318A36\t0xFE94\n0x84318A37\t0xFE95\n0x84318A38\t0xFE96\n0x84318A39\t0xFE97\n0x84318B30\t0xFE98\n0x84318B31\t0xFE99\n0x84318B32\t0xFE9A\n0x84318B33\t0xFE9B\n0x84318B34\t0xFE9C\n0x84318B35\t0xFE9D\n0x84318B36\t0xFE9E\n0x84318B37\t0xFE9F\n0x84318B38\t0xFEA0\n0x84318B39\t0xFEA1\n0x84318C30\t0xFEA2\n0x84318C31\t0xFEA3\n0x84318C32\t0xFEA4\n0x84318C33\t0xFEA5\n0x84318C34\t0xFEA6\n0x84318C35\t0xFEA7\n0x84318C36\t0xFEA8\n0x84318C37\t0xFEA9\n0x84318C38\t0xFEAA\n0x84318C39\t0xFEAB\n0x84318D30\t0xFEAC\n0x84318D31\t0xFEAD\n0x84318D32\t0xFEAE\n0x84318D33\t0xFEAF\n0x84318D34\t0xFEB0\n0x84318D35\t0xFEB1\n0x84318D36\t0xFEB2\n0x84318D37\t0xFEB3\n0x84318D38\t0xFEB4\n0x84318D39\t0xFEB5\n0x84318E30\t0xFEB6\n0x84318E31\t0xFEB7\n0x84318E32\t0xFEB8\n0x84318E33\t0xFEB9\n0x84318E34\t0xFEBA\n0x84318E35\t0xFEBB\n0x84318E36\t0xFEBC\n0x84318E37\t0xFEBD\n0x84318E38\t0xFEBE\n0x84318E39\t0xFEBF\n0x84318F30\t0xFEC0\n0x84318F31\t0xFEC1\n0x84318F32\t0xFEC2\n0x84318F33\t0xFEC3\n0x84318F34\t0xFEC4\n0x84318F35\t0xFEC5\n0x84318F36\t0xFEC6\n0x84318F37\t0xFEC7\n0x84318F38\t0xFEC8\n0x84318F39\t0xFEC9\n0x84319030\t0xFECA\n0x84319031\t0xFECB\n0x84319032\t0xFECC\n0x84319033\t0xFECD\n0x84319034\t0xFECE\n0x84319035\t0xFECF\n0x84319036\t0xFED0\n0x84319037\t0xFED1\n0x84319038\t0xFED2\n0x84319039\t0xFED3\n0x84319130\t0xFED4\n0x84319131\t0xFED5\n0x84319132\t0xFED6\n0x84319133\t0xFED7\n0x84319134\t0xFED8\n0x84319135\t0xFED9\n0x84319136\t0xFEDA\n0x84319137\t0xFEDB\n0x84319138\t0xFEDC\n0x84319139\t0xFEDD\n0x84319230\t0xFEDE\n0x84319231\t0xFEDF\n0x84319232\t0xFEE0\n0x84319233\t0xFEE1\n0x84319234\t0xFEE2\n0x84319235\t0xFEE3\n0x84319236\t0xFEE4\n0x84319237\t0xFEE5\n0x84319238\t0xFEE6\n0x84319239\t0xFEE7\n0x84319330\t0xFEE8\n0x84319331\t0xFEE9\n0x84319332\t0xFEEA\n0x84319333\t0xFEEB\n0x84319334\t0xFEEC\n0x84319335\t0xFEED\n0x84319336\t0xFEEE\n0x84319337\t0xFEEF\n0x84319338\t0xFEF0\n0x84319339\t0xFEF1\n0x84319430\t0xFEF2\n0x84319431\t0xFEF3\n0x84319432\t0xFEF4\n0x84319433\t0xFEF5\n0x84319434\t0xFEF6\n0x84319435\t0xFEF7\n0x84319436\t0xFEF8\n0x84319437\t0xFEF9\n0x84319438\t0xFEFA\n0x84319439\t0xFEFB\n0x84319530\t0xFEFC\n0x84319531\t0xFEFD\n0x84319532\t0xFEFE\n0x84319533\t0xFEFF\n0x84319534\t0xFF00\n0x84319535\t0xFF5F\n0x84319536\t0xFF60\n0x84319537\t0xFF61\n0x84319538\t0xFF62\n0x84319539\t0xFF63\n0x84319630\t0xFF64\n0x84319631\t0xFF65\n0x84319632\t0xFF66\n0x84319633\t0xFF67\n0x84319634\t0xFF68\n0x84319635\t0xFF69\n0x84319636\t0xFF6A\n0x84319637\t0xFF6B\n0x84319638\t0xFF6C\n0x84319639\t0xFF6D\n0x84319730\t0xFF6E\n0x84319731\t0xFF6F\n0x84319732\t0xFF70\n0x84319733\t0xFF71\n0x84319734\t0xFF72\n0x84319735\t0xFF73\n0x84319736\t0xFF74\n0x84319737\t0xFF75\n0x84319738\t0xFF76\n0x84319739\t0xFF77\n0x84319830\t0xFF78\n0x84319831\t0xFF79\n0x84319832\t0xFF7A\n0x84319833\t0xFF7B\n0x84319834\t0xFF7C\n0x84319835\t0xFF7D\n0x84319836\t0xFF7E\n0x84319837\t0xFF7F\n0x84319838\t0xFF80\n0x84319839\t0xFF81\n0x84319930\t0xFF82\n0x84319931\t0xFF83\n0x84319932\t0xFF84\n0x84319933\t0xFF85\n0x84319934\t0xFF86\n0x84319935\t0xFF87\n0x84319936\t0xFF88\n0x84319937\t0xFF89\n0x84319938\t0xFF8A\n0x84319939\t0xFF8B\n0x84319A30\t0xFF8C\n0x84319A31\t0xFF8D\n0x84319A32\t0xFF8E\n0x84319A33\t0xFF8F\n0x84319A34\t0xFF90\n0x84319A35\t0xFF91\n0x84319A36\t0xFF92\n0x84319A37\t0xFF93\n0x84319A38\t0xFF94\n0x84319A39\t0xFF95\n0x84319B30\t0xFF96\n0x84319B31\t0xFF97\n0x84319B32\t0xFF98\n0x84319B33\t0xFF99\n0x84319B34\t0xFF9A\n0x84319B35\t0xFF9B\n0x84319B36\t0xFF9C\n0x84319B37\t0xFF9D\n0x84319B38\t0xFF9E\n0x84319B39\t0xFF9F\n0x84319C30\t0xFFA0\n0x84319C31\t0xFFA1\n0x84319C32\t0xFFA2\n0x84319C33\t0xFFA3\n0x84319C34\t0xFFA4\n0x84319C35\t0xFFA5\n0x84319C36\t0xFFA6\n0x84319C37\t0xFFA7\n0x84319C38\t0xFFA8\n0x84319C39\t0xFFA9\n0x84319D30\t0xFFAA\n0x84319D31\t0xFFAB\n0x84319D32\t0xFFAC\n0x84319D33\t0xFFAD\n0x84319D34\t0xFFAE\n0x84319D35\t0xFFAF\n0x84319D36\t0xFFB0\n0x84319D37\t0xFFB1\n0x84319D38\t0xFFB2\n0x84319D39\t0xFFB3\n0x84319E30\t0xFFB4\n0x84319E31\t0xFFB5\n0x84319E32\t0xFFB6\n0x84319E33\t0xFFB7\n0x84319E34\t0xFFB8\n0x84319E35\t0xFFB9\n0x84319E36\t0xFFBA\n0x84319E37\t0xFFBB\n0x84319E38\t0xFFBC\n0x84319E39\t0xFFBD\n0x84319F30\t0xFFBE\n0x84319F31\t0xFFBF\n0x84319F32\t0xFFC0\n0x84319F33\t0xFFC1\n0x84319F34\t0xFFC2\n0x84319F35\t0xFFC3\n0x84319F36\t0xFFC4\n0x84319F37\t0xFFC5\n0x84319F38\t0xFFC6\n0x84319F39\t0xFFC7\n0x8431A030\t0xFFC8\n0x8431A031\t0xFFC9\n0x8431A032\t0xFFCA\n0x8431A033\t0xFFCB\n0x8431A034\t0xFFCC\n0x8431A035\t0xFFCD\n0x8431A036\t0xFFCE\n0x8431A037\t0xFFCF\n0x8431A038\t0xFFD0\n0x8431A039\t0xFFD1\n0x8431A130\t0xFFD2\n0x8431A131\t0xFFD3\n0x8431A132\t0xFFD4\n0x8431A133\t0xFFD5\n0x8431A134\t0xFFD6\n0x8431A135\t0xFFD7\n0x8431A136\t0xFFD8\n0x8431A137\t0xFFD9\n0x8431A138\t0xFFDA\n0x8431A139\t0xFFDB\n0x8431A230\t0xFFDC\n0x8431A231\t0xFFDD\n0x8431A232\t0xFFDE\n0x8431A233\t0xFFDF\n0x8431A234\t0xFFE6\n0x8431A235\t0xFFE7\n0x8431A236\t0xFFE8\n0x8431A237\t0xFFE9\n0x8431A238\t0xFFEA\n0x8431A239\t0xFFEB\n0x8431A330\t0xFFEC\n0x8431A331\t0xFFED\n0x8431A332\t0xFFEE\n0x8431A333\t0xFFEF\n0x8431A334\t0xFFF0\n0x8431A335\t0xFFF1\n0x8431A336\t0xFFF2\n0x8431A337\t0xFFF3\n0x8431A338\t0xFFF4\n0x8431A339\t0xFFF5\n0x8431A430\t0xFFF6\n0x8431A431\t0xFFF7\n0x8431A432\t0xFFF8\n0x8431A433\t0xFFF9\n0x8431A434\t0xFFFA\n0x8431A435\t0xFFFB\n0x8431A436\t0xFFFC\n0x8431A437\t0xFFFD\n0x8431A438\t0xFFFE\n0x8431A439\t0xFFFF\n0x8440\t0x51D8\n0x8441\t0x51D9\n0x8442\t0x51DA\n0x8443\t0x51DC\n0x8444\t0x51DE\n0x8445\t0x51DF\n0x8446\t0x51E2\n0x8447\t0x51E3\n0x8448\t0x51E5\n0x8449\t0x51E6\n0x844A\t0x51E7\n0x844B\t0x51E8\n0x844C\t0x51E9\n0x844D\t0x51EA\n0x844E\t0x51EC\n0x844F\t0x51EE\n0x8450\t0x51F1\n0x8451\t0x51F2\n0x8452\t0x51F4\n0x8453\t0x51F7\n0x8454\t0x51FE\n0x8455\t0x5204\n0x8456\t0x5205\n0x8457\t0x5209\n0x8458\t0x520B\n0x8459\t0x520C\n0x845A\t0x520F\n0x845B\t0x5210\n0x845C\t0x5213\n0x845D\t0x5214\n0x845E\t0x5215\n0x845F\t0x521C\n0x8460\t0x521E\n0x8461\t0x521F\n0x8462\t0x5221\n0x8463\t0x5222\n0x8464\t0x5223\n0x8465\t0x5225\n0x8466\t0x5226\n0x8467\t0x5227\n0x8468\t0x522A\n0x8469\t0x522C\n0x846A\t0x522F\n0x846B\t0x5231\n0x846C\t0x5232\n0x846D\t0x5234\n0x846E\t0x5235\n0x846F\t0x523C\n0x8470\t0x523E\n0x8471\t0x5244\n0x8472\t0x5245\n0x8473\t0x5246\n0x8474\t0x5247\n0x8475\t0x5248\n0x8476\t0x5249\n0x8477\t0x524B\n0x8478\t0x524E\n0x8479\t0x524F\n0x847A\t0x5252\n0x847B\t0x5253\n0x847C\t0x5255\n0x847D\t0x5257\n0x847E\t0x5258\n0x8480\t0x5259\n0x8481\t0x525A\n0x8482\t0x525B\n0x8483\t0x525D\n0x8484\t0x525F\n0x8485\t0x5260\n0x8486\t0x5262\n0x8487\t0x5263\n0x8488\t0x5264\n0x8489\t0x5266\n0x848A\t0x5268\n0x848B\t0x526B\n0x848C\t0x526C\n0x848D\t0x526D\n0x848E\t0x526E\n0x848F\t0x5270\n0x8490\t0x5271\n0x8491\t0x5273\n0x8492\t0x5274\n0x8493\t0x5275\n0x8494\t0x5276\n0x8495\t0x5277\n0x8496\t0x5278\n0x8497\t0x5279\n0x8498\t0x527A\n0x8499\t0x527B\n0x849A\t0x527C\n0x849B\t0x527E\n0x849C\t0x5280\n0x849D\t0x5283\n0x849E\t0x5284\n0x849F\t0x5285\n0x84A0\t0x5286\n0x84A1\t0x5287\n0x84A2\t0x5289\n0x84A3\t0x528A\n0x84A4\t0x528B\n0x84A5\t0x528C\n0x84A6\t0x528D\n0x84A7\t0x528E\n0x84A8\t0x528F\n0x84A9\t0x5291\n0x84AA\t0x5292\n0x84AB\t0x5294\n0x84AC\t0x5295\n0x84AD\t0x5296\n0x84AE\t0x5297\n0x84AF\t0x5298\n0x84B0\t0x5299\n0x84B1\t0x529A\n0x84B2\t0x529C\n0x84B3\t0x52A4\n0x84B4\t0x52A5\n0x84B5\t0x52A6\n0x84B6\t0x52A7\n0x84B7\t0x52AE\n0x84B8\t0x52AF\n0x84B9\t0x52B0\n0x84BA\t0x52B4\n0x84BB\t0x52B5\n0x84BC\t0x52B6\n0x84BD\t0x52B7\n0x84BE\t0x52B8\n0x84BF\t0x52B9\n0x84C0\t0x52BA\n0x84C1\t0x52BB\n0x84C2\t0x52BC\n0x84C3\t0x52BD\n0x84C4\t0x52C0\n0x84C5\t0x52C1\n0x84C6\t0x52C2\n0x84C7\t0x52C4\n0x84C8\t0x52C5\n0x84C9\t0x52C6\n0x84CA\t0x52C8\n0x84CB\t0x52CA\n0x84CC\t0x52CC\n0x84CD\t0x52CD\n0x84CE\t0x52CE\n0x84CF\t0x52CF\n0x84D0\t0x52D1\n0x84D1\t0x52D3\n0x84D2\t0x52D4\n0x84D3\t0x52D5\n0x84D4\t0x52D7\n0x84D5\t0x52D9\n0x84D6\t0x52DA\n0x84D7\t0x52DB\n0x84D8\t0x52DC\n0x84D9\t0x52DD\n0x84DA\t0x52DE\n0x84DB\t0x52E0\n0x84DC\t0x52E1\n0x84DD\t0x52E2\n0x84DE\t0x52E3\n0x84DF\t0x52E5\n0x84E0\t0x52E6\n0x84E1\t0x52E7\n0x84E2\t0x52E8\n0x84E3\t0x52E9\n0x84E4\t0x52EA\n0x84E5\t0x52EB\n0x84E6\t0x52EC\n0x84E7\t0x52ED\n0x84E8\t0x52EE\n0x84E9\t0x52EF\n0x84EA\t0x52F1\n0x84EB\t0x52F2\n0x84EC\t0x52F3\n0x84ED\t0x52F4\n0x84EE\t0x52F5\n0x84EF\t0x52F6\n0x84F0\t0x52F7\n0x84F1\t0x52F8\n0x84F2\t0x52FB\n0x84F3\t0x52FC\n0x84F4\t0x52FD\n0x84F5\t0x5301\n0x84F6\t0x5302\n0x84F7\t0x5303\n0x84F8\t0x5304\n0x84F9\t0x5307\n0x84FA\t0x5309\n0x84FB\t0x530A\n0x84FC\t0x530B\n0x84FD\t0x530C\n0x84FE\t0x530E\n0x8540\t0x5311\n0x8541\t0x5312\n0x8542\t0x5313\n0x8543\t0x5314\n0x8544\t0x5318\n0x8545\t0x531B\n0x8546\t0x531C\n0x8547\t0x531E\n0x8548\t0x531F\n0x8549\t0x5322\n0x854A\t0x5324\n0x854B\t0x5325\n0x854C\t0x5327\n0x854D\t0x5328\n0x854E\t0x5329\n0x854F\t0x532B\n0x8550\t0x532C\n0x8551\t0x532D\n0x8552\t0x532F\n0x8553\t0x5330\n0x8554\t0x5331\n0x8555\t0x5332\n0x8556\t0x5333\n0x8557\t0x5334\n0x8558\t0x5335\n0x8559\t0x5336\n0x855A\t0x5337\n0x855B\t0x5338\n0x855C\t0x533C\n0x855D\t0x533D\n0x855E\t0x5340\n0x855F\t0x5342\n0x8560\t0x5344\n0x8561\t0x5346\n0x8562\t0x534B\n0x8563\t0x534C\n0x8564\t0x534D\n0x8565\t0x5350\n0x8566\t0x5354\n0x8567\t0x5358\n0x8568\t0x5359\n0x8569\t0x535B\n0x856A\t0x535D\n0x856B\t0x5365\n0x856C\t0x5368\n0x856D\t0x536A\n0x856E\t0x536C\n0x856F\t0x536D\n0x8570\t0x5372\n0x8571\t0x5376\n0x8572\t0x5379\n0x8573\t0x537B\n0x8574\t0x537C\n0x8575\t0x537D\n0x8576\t0x537E\n0x8577\t0x5380\n0x8578\t0x5381\n0x8579\t0x5383\n0x857A\t0x5387\n0x857B\t0x5388\n0x857C\t0x538A\n0x857D\t0x538E\n0x857E\t0x538F\n0x8580\t0x5390\n0x8581\t0x5391\n0x8582\t0x5392\n0x8583\t0x5393\n0x8584\t0x5394\n0x8585\t0x5396\n0x8586\t0x5397\n0x8587\t0x5399\n0x8588\t0x539B\n0x8589\t0x539C\n0x858A\t0x539E\n0x858B\t0x53A0\n0x858C\t0x53A1\n0x858D\t0x53A4\n0x858E\t0x53A7\n0x858F\t0x53AA\n0x8590\t0x53AB\n0x8591\t0x53AC\n0x8592\t0x53AD\n0x8593\t0x53AF\n0x8594\t0x53B0\n0x8595\t0x53B1\n0x8596\t0x53B2\n0x8597\t0x53B3\n0x8598\t0x53B4\n0x8599\t0x53B5\n0x859A\t0x53B7\n0x859B\t0x53B8\n0x859C\t0x53B9\n0x859D\t0x53BA\n0x859E\t0x53BC\n0x859F\t0x53BD\n0x85A0\t0x53BE\n0x85A1\t0x53C0\n0x85A2\t0x53C3\n0x85A3\t0x53C4\n0x85A4\t0x53C5\n0x85A5\t0x53C6\n0x85A6\t0x53C7\n0x85A7\t0x53CE\n0x85A8\t0x53CF\n0x85A9\t0x53D0\n0x85AA\t0x53D2\n0x85AB\t0x53D3\n0x85AC\t0x53D5\n0x85AD\t0x53DA\n0x85AE\t0x53DC\n0x85AF\t0x53DD\n0x85B0\t0x53DE\n0x85B1\t0x53E1\n0x85B2\t0x53E2\n0x85B3\t0x53E7\n0x85B4\t0x53F4\n0x85B5\t0x53FA\n0x85B6\t0x53FE\n0x85B7\t0x53FF\n0x85B8\t0x5400\n0x85B9\t0x5402\n0x85BA\t0x5405\n0x85BB\t0x5407\n0x85BC\t0x540B\n0x85BD\t0x5414\n0x85BE\t0x5418\n0x85BF\t0x5419\n0x85C0\t0x541A\n0x85C1\t0x541C\n0x85C2\t0x5422\n0x85C3\t0x5424\n0x85C4\t0x5425\n0x85C5\t0x542A\n0x85C6\t0x5430\n0x85C7\t0x5433\n0x85C8\t0x5436\n0x85C9\t0x5437\n0x85CA\t0x543A\n0x85CB\t0x543D\n0x85CC\t0x543F\n0x85CD\t0x5441\n0x85CE\t0x5442\n0x85CF\t0x5444\n0x85D0\t0x5445\n0x85D1\t0x5447\n0x85D2\t0x5449\n0x85D3\t0x544C\n0x85D4\t0x544D\n0x85D5\t0x544E\n0x85D6\t0x544F\n0x85D7\t0x5451\n0x85D8\t0x545A\n0x85D9\t0x545D\n0x85DA\t0x545E\n0x85DB\t0x545F\n0x85DC\t0x5460\n0x85DD\t0x5461\n0x85DE\t0x5463\n0x85DF\t0x5465\n0x85E0\t0x5467\n0x85E1\t0x5469\n0x85E2\t0x546A\n0x85E3\t0x546B\n0x85E4\t0x546C\n0x85E5\t0x546D\n0x85E6\t0x546E\n0x85E7\t0x546F\n0x85E8\t0x5470\n0x85E9\t0x5474\n0x85EA\t0x5479\n0x85EB\t0x547A\n0x85EC\t0x547E\n0x85ED\t0x547F\n0x85EE\t0x5481\n0x85EF\t0x5483\n0x85F0\t0x5485\n0x85F1\t0x5487\n0x85F2\t0x5488\n0x85F3\t0x5489\n0x85F4\t0x548A\n0x85F5\t0x548D\n0x85F6\t0x5491\n0x85F7\t0x5493\n0x85F8\t0x5497\n0x85F9\t0x5498\n0x85FA\t0x549C\n0x85FB\t0x549E\n0x85FC\t0x549F\n0x85FD\t0x54A0\n0x85FE\t0x54A1\n0x8640\t0x54A2\n0x8641\t0x54A5\n0x8642\t0x54AE\n0x8643\t0x54B0\n0x8644\t0x54B2\n0x8645\t0x54B5\n0x8646\t0x54B6\n0x8647\t0x54B7\n0x8648\t0x54B9\n0x8649\t0x54BA\n0x864A\t0x54BC\n0x864B\t0x54BE\n0x864C\t0x54C3\n0x864D\t0x54C5\n0x864E\t0x54CA\n0x864F\t0x54CB\n0x8650\t0x54D6\n0x8651\t0x54D8\n0x8652\t0x54DB\n0x8653\t0x54E0\n0x8654\t0x54E1\n0x8655\t0x54E2\n0x8656\t0x54E3\n0x8657\t0x54E4\n0x8658\t0x54EB\n0x8659\t0x54EC\n0x865A\t0x54EF\n0x865B\t0x54F0\n0x865C\t0x54F1\n0x865D\t0x54F4\n0x865E\t0x54F5\n0x865F\t0x54F6\n0x8660\t0x54F7\n0x8661\t0x54F8\n0x8662\t0x54F9\n0x8663\t0x54FB\n0x8664\t0x54FE\n0x8665\t0x5500\n0x8666\t0x5502\n0x8667\t0x5503\n0x8668\t0x5504\n0x8669\t0x5505\n0x866A\t0x5508\n0x866B\t0x550A\n0x866C\t0x550B\n0x866D\t0x550C\n0x866E\t0x550D\n0x866F\t0x550E\n0x8670\t0x5512\n0x8671\t0x5513\n0x8672\t0x5515\n0x8673\t0x5516\n0x8674\t0x5517\n0x8675\t0x5518\n0x8676\t0x5519\n0x8677\t0x551A\n0x8678\t0x551C\n0x8679\t0x551D\n0x867A\t0x551E\n0x867B\t0x551F\n0x867C\t0x5521\n0x867D\t0x5525\n0x867E\t0x5526\n0x8680\t0x5528\n0x8681\t0x5529\n0x8682\t0x552B\n0x8683\t0x552D\n0x8684\t0x5532\n0x8685\t0x5534\n0x8686\t0x5535\n0x8687\t0x5536\n0x8688\t0x5538\n0x8689\t0x5539\n0x868A\t0x553A\n0x868B\t0x553B\n0x868C\t0x553D\n0x868D\t0x5540\n0x868E\t0x5542\n0x868F\t0x5545\n0x8690\t0x5547\n0x8691\t0x5548\n0x8692\t0x554B\n0x8693\t0x554C\n0x8694\t0x554D\n0x8695\t0x554E\n0x8696\t0x554F\n0x8697\t0x5551\n0x8698\t0x5552\n0x8699\t0x5553\n0x869A\t0x5554\n0x869B\t0x5557\n0x869C\t0x5558\n0x869D\t0x5559\n0x869E\t0x555A\n0x869F\t0x555B\n0x86A0\t0x555D\n0x86A1\t0x555E\n0x86A2\t0x555F\n0x86A3\t0x5560\n0x86A4\t0x5562\n0x86A5\t0x5563\n0x86A6\t0x5568\n0x86A7\t0x5569\n0x86A8\t0x556B\n0x86A9\t0x556F\n0x86AA\t0x5570\n0x86AB\t0x5571\n0x86AC\t0x5572\n0x86AD\t0x5573\n0x86AE\t0x5574\n0x86AF\t0x5579\n0x86B0\t0x557A\n0x86B1\t0x557D\n0x86B2\t0x557F\n0x86B3\t0x5585\n0x86B4\t0x5586\n0x86B5\t0x558C\n0x86B6\t0x558D\n0x86B7\t0x558E\n0x86B8\t0x5590\n0x86B9\t0x5592\n0x86BA\t0x5593\n0x86BB\t0x5595\n0x86BC\t0x5596\n0x86BD\t0x5597\n0x86BE\t0x559A\n0x86BF\t0x559B\n0x86C0\t0x559E\n0x86C1\t0x55A0\n0x86C2\t0x55A1\n0x86C3\t0x55A2\n0x86C4\t0x55A3\n0x86C5\t0x55A4\n0x86C6\t0x55A5\n0x86C7\t0x55A6\n0x86C8\t0x55A8\n0x86C9\t0x55A9\n0x86CA\t0x55AA\n0x86CB\t0x55AB\n0x86CC\t0x55AC\n0x86CD\t0x55AD\n0x86CE\t0x55AE\n0x86CF\t0x55AF\n0x86D0\t0x55B0\n0x86D1\t0x55B2\n0x86D2\t0x55B4\n0x86D3\t0x55B6\n0x86D4\t0x55B8\n0x86D5\t0x55BA\n0x86D6\t0x55BC\n0x86D7\t0x55BF\n0x86D8\t0x55C0\n0x86D9\t0x55C1\n0x86DA\t0x55C2\n0x86DB\t0x55C3\n0x86DC\t0x55C6\n0x86DD\t0x55C7\n0x86DE\t0x55C8\n0x86DF\t0x55CA\n0x86E0\t0x55CB\n0x86E1\t0x55CE\n0x86E2\t0x55CF\n0x86E3\t0x55D0\n0x86E4\t0x55D5\n0x86E5\t0x55D7\n0x86E6\t0x55D8\n0x86E7\t0x55D9\n0x86E8\t0x55DA\n0x86E9\t0x55DB\n0x86EA\t0x55DE\n0x86EB\t0x55E0\n0x86EC\t0x55E2\n0x86ED\t0x55E7\n0x86EE\t0x55E9\n0x86EF\t0x55ED\n0x86F0\t0x55EE\n0x86F1\t0x55F0\n0x86F2\t0x55F1\n0x86F3\t0x55F4\n0x86F4\t0x55F6\n0x86F5\t0x55F8\n0x86F6\t0x55F9\n0x86F7\t0x55FA\n0x86F8\t0x55FB\n0x86F9\t0x55FC\n0x86FA\t0x55FF\n0x86FB\t0x5602\n0x86FC\t0x5603\n0x86FD\t0x5604\n0x86FE\t0x5605\n0x8740\t0x5606\n0x8741\t0x5607\n0x8742\t0x560A\n0x8743\t0x560B\n0x8744\t0x560D\n0x8745\t0x5610\n0x8746\t0x5611\n0x8747\t0x5612\n0x8748\t0x5613\n0x8749\t0x5614\n0x874A\t0x5615\n0x874B\t0x5616\n0x874C\t0x5617\n0x874D\t0x5619\n0x874E\t0x561A\n0x874F\t0x561C\n0x8750\t0x561D\n0x8751\t0x5620\n0x8752\t0x5621\n0x8753\t0x5622\n0x8754\t0x5625\n0x8755\t0x5626\n0x8756\t0x5628\n0x8757\t0x5629\n0x8758\t0x562A\n0x8759\t0x562B\n0x875A\t0x562E\n0x875B\t0x562F\n0x875C\t0x5630\n0x875D\t0x5633\n0x875E\t0x5635\n0x875F\t0x5637\n0x8760\t0x5638\n0x8761\t0x563A\n0x8762\t0x563C\n0x8763\t0x563D\n0x8764\t0x563E\n0x8765\t0x5640\n0x8766\t0x5641\n0x8767\t0x5642\n0x8768\t0x5643\n0x8769\t0x5644\n0x876A\t0x5645\n0x876B\t0x5646\n0x876C\t0x5647\n0x876D\t0x5648\n0x876E\t0x5649\n0x876F\t0x564A\n0x8770\t0x564B\n0x8771\t0x564F\n0x8772\t0x5650\n0x8773\t0x5651\n0x8774\t0x5652\n0x8775\t0x5653\n0x8776\t0x5655\n0x8777\t0x5656\n0x8778\t0x565A\n0x8779\t0x565B\n0x877A\t0x565D\n0x877B\t0x565E\n0x877C\t0x565F\n0x877D\t0x5660\n0x877E\t0x5661\n0x8780\t0x5663\n0x8781\t0x5665\n0x8782\t0x5666\n0x8783\t0x5667\n0x8784\t0x566D\n0x8785\t0x566E\n0x8786\t0x566F\n0x8787\t0x5670\n0x8788\t0x5672\n0x8789\t0x5673\n0x878A\t0x5674\n0x878B\t0x5675\n0x878C\t0x5677\n0x878D\t0x5678\n0x878E\t0x5679\n0x878F\t0x567A\n0x8790\t0x567D\n0x8791\t0x567E\n0x8792\t0x567F\n0x8793\t0x5680\n0x8794\t0x5681\n0x8795\t0x5682\n0x8796\t0x5683\n0x8797\t0x5684\n0x8798\t0x5687\n0x8799\t0x5688\n0x879A\t0x5689\n0x879B\t0x568A\n0x879C\t0x568B\n0x879D\t0x568C\n0x879E\t0x568D\n0x879F\t0x5690\n0x87A0\t0x5691\n0x87A1\t0x5692\n0x87A2\t0x5694\n0x87A3\t0x5695\n0x87A4\t0x5696\n0x87A5\t0x5697\n0x87A6\t0x5698\n0x87A7\t0x5699\n0x87A8\t0x569A\n0x87A9\t0x569B\n0x87AA\t0x569C\n0x87AB\t0x569D\n0x87AC\t0x569E\n0x87AD\t0x569F\n0x87AE\t0x56A0\n0x87AF\t0x56A1\n0x87B0\t0x56A2\n0x87B1\t0x56A4\n0x87B2\t0x56A5\n0x87B3\t0x56A6\n0x87B4\t0x56A7\n0x87B5\t0x56A8\n0x87B6\t0x56A9\n0x87B7\t0x56AA\n0x87B8\t0x56AB\n0x87B9\t0x56AC\n0x87BA\t0x56AD\n0x87BB\t0x56AE\n0x87BC\t0x56B0\n0x87BD\t0x56B1\n0x87BE\t0x56B2\n0x87BF\t0x56B3\n0x87C0\t0x56B4\n0x87C1\t0x56B5\n0x87C2\t0x56B6\n0x87C3\t0x56B8\n0x87C4\t0x56B9\n0x87C5\t0x56BA\n0x87C6\t0x56BB\n0x87C7\t0x56BD\n0x87C8\t0x56BE\n0x87C9\t0x56BF\n0x87CA\t0x56C0\n0x87CB\t0x56C1\n0x87CC\t0x56C2\n0x87CD\t0x56C3\n0x87CE\t0x56C4\n0x87CF\t0x56C5\n0x87D0\t0x56C6\n0x87D1\t0x56C7\n0x87D2\t0x56C8\n0x87D3\t0x56C9\n0x87D4\t0x56CB\n0x87D5\t0x56CC\n0x87D6\t0x56CD\n0x87D7\t0x56CE\n0x87D8\t0x56CF\n0x87D9\t0x56D0\n0x87DA\t0x56D1\n0x87DB\t0x56D2\n0x87DC\t0x56D3\n0x87DD\t0x56D5\n0x87DE\t0x56D6\n0x87DF\t0x56D8\n0x87E0\t0x56D9\n0x87E1\t0x56DC\n0x87E2\t0x56E3\n0x87E3\t0x56E5\n0x87E4\t0x56E6\n0x87E5\t0x56E7\n0x87E6\t0x56E8\n0x87E7\t0x56E9\n0x87E8\t0x56EA\n0x87E9\t0x56EC\n0x87EA\t0x56EE\n0x87EB\t0x56EF\n0x87EC\t0x56F2\n0x87ED\t0x56F3\n0x87EE\t0x56F6\n0x87EF\t0x56F7\n0x87F0\t0x56F8\n0x87F1\t0x56FB\n0x87F2\t0x56FC\n0x87F3\t0x5700\n0x87F4\t0x5701\n0x87F5\t0x5702\n0x87F6\t0x5705\n0x87F7\t0x5707\n0x87F8\t0x570B\n0x87F9\t0x570C\n0x87FA\t0x570D\n0x87FB\t0x570E\n0x87FC\t0x570F\n0x87FD\t0x5710\n0x87FE\t0x5711\n0x8840\t0x5712\n0x8841\t0x5713\n0x8842\t0x5714\n0x8843\t0x5715\n0x8844\t0x5716\n0x8845\t0x5717\n0x8846\t0x5718\n0x8847\t0x5719\n0x8848\t0x571A\n0x8849\t0x571B\n0x884A\t0x571D\n0x884B\t0x571E\n0x884C\t0x5720\n0x884D\t0x5721\n0x884E\t0x5722\n0x884F\t0x5724\n0x8850\t0x5725\n0x8851\t0x5726\n0x8852\t0x5727\n0x8853\t0x572B\n0x8854\t0x5731\n0x8855\t0x5732\n0x8856\t0x5734\n0x8857\t0x5735\n0x8858\t0x5736\n0x8859\t0x5737\n0x885A\t0x5738\n0x885B\t0x573C\n0x885C\t0x573D\n0x885D\t0x573F\n0x885E\t0x5741\n0x885F\t0x5743\n0x8860\t0x5744\n0x8861\t0x5745\n0x8862\t0x5746\n0x8863\t0x5748\n0x8864\t0x5749\n0x8865\t0x574B\n0x8866\t0x5752\n0x8867\t0x5753\n0x8868\t0x5754\n0x8869\t0x5755\n0x886A\t0x5756\n0x886B\t0x5758\n0x886C\t0x5759\n0x886D\t0x5762\n0x886E\t0x5763\n0x886F\t0x5765\n0x8870\t0x5767\n0x8871\t0x576C\n0x8872\t0x576E\n0x8873\t0x5770\n0x8874\t0x5771\n0x8875\t0x5772\n0x8876\t0x5774\n0x8877\t0x5775\n0x8878\t0x5778\n0x8879\t0x5779\n0x887A\t0x577A\n0x887B\t0x577D\n0x887C\t0x577E\n0x887D\t0x577F\n0x887E\t0x5780\n0x8880\t0x5781\n0x8881\t0x5787\n0x8882\t0x5788\n0x8883\t0x5789\n0x8884\t0x578A\n0x8885\t0x578D\n0x8886\t0x578E\n0x8887\t0x578F\n0x8888\t0x5790\n0x8889\t0x5791\n0x888A\t0x5794\n0x888B\t0x5795\n0x888C\t0x5796\n0x888D\t0x5797\n0x888E\t0x5798\n0x888F\t0x5799\n0x8890\t0x579A\n0x8891\t0x579C\n0x8892\t0x579D\n0x8893\t0x579E\n0x8894\t0x579F\n0x8895\t0x57A5\n0x8896\t0x57A8\n0x8897\t0x57AA\n0x8898\t0x57AC\n0x8899\t0x57AF\n0x889A\t0x57B0\n0x889B\t0x57B1\n0x889C\t0x57B3\n0x889D\t0x57B5\n0x889E\t0x57B6\n0x889F\t0x57B7\n0x88A0\t0x57B9\n0x88A1\t0x57BA\n0x88A2\t0x57BB\n0x88A3\t0x57BC\n0x88A4\t0x57BD\n0x88A5\t0x57BE\n0x88A6\t0x57BF\n0x88A7\t0x57C0\n0x88A8\t0x57C1\n0x88A9\t0x57C4\n0x88AA\t0x57C5\n0x88AB\t0x57C6\n0x88AC\t0x57C7\n0x88AD\t0x57C8\n0x88AE\t0x57C9\n0x88AF\t0x57CA\n0x88B0\t0x57CC\n0x88B1\t0x57CD\n0x88B2\t0x57D0\n0x88B3\t0x57D1\n0x88B4\t0x57D3\n0x88B5\t0x57D6\n0x88B6\t0x57D7\n0x88B7\t0x57DB\n0x88B8\t0x57DC\n0x88B9\t0x57DE\n0x88BA\t0x57E1\n0x88BB\t0x57E2\n0x88BC\t0x57E3\n0x88BD\t0x57E5\n0x88BE\t0x57E6\n0x88BF\t0x57E7\n0x88C0\t0x57E8\n0x88C1\t0x57E9\n0x88C2\t0x57EA\n0x88C3\t0x57EB\n0x88C4\t0x57EC\n0x88C5\t0x57EE\n0x88C6\t0x57F0\n0x88C7\t0x57F1\n0x88C8\t0x57F2\n0x88C9\t0x57F3\n0x88CA\t0x57F5\n0x88CB\t0x57F6\n0x88CC\t0x57F7\n0x88CD\t0x57FB\n0x88CE\t0x57FC\n0x88CF\t0x57FE\n0x88D0\t0x57FF\n0x88D1\t0x5801\n0x88D2\t0x5803\n0x88D3\t0x5804\n0x88D4\t0x5805\n0x88D5\t0x5808\n0x88D6\t0x5809\n0x88D7\t0x580A\n0x88D8\t0x580C\n0x88D9\t0x580E\n0x88DA\t0x580F\n0x88DB\t0x5810\n0x88DC\t0x5812\n0x88DD\t0x5813\n0x88DE\t0x5814\n0x88DF\t0x5816\n0x88E0\t0x5817\n0x88E1\t0x5818\n0x88E2\t0x581A\n0x88E3\t0x581B\n0x88E4\t0x581C\n0x88E5\t0x581D\n0x88E6\t0x581F\n0x88E7\t0x5822\n0x88E8\t0x5823\n0x88E9\t0x5825\n0x88EA\t0x5826\n0x88EB\t0x5827\n0x88EC\t0x5828\n0x88ED\t0x5829\n0x88EE\t0x582B\n0x88EF\t0x582C\n0x88F0\t0x582D\n0x88F1\t0x582E\n0x88F2\t0x582F\n0x88F3\t0x5831\n0x88F4\t0x5832\n0x88F5\t0x5833\n0x88F6\t0x5834\n0x88F7\t0x5836\n0x88F8\t0x5837\n0x88F9\t0x5838\n0x88FA\t0x5839\n0x88FB\t0x583A\n0x88FC\t0x583B\n0x88FD\t0x583C\n0x88FE\t0x583D\n0x8940\t0x583E\n0x8941\t0x583F\n0x8942\t0x5840\n0x8943\t0x5841\n0x8944\t0x5842\n0x8945\t0x5843\n0x8946\t0x5845\n0x8947\t0x5846\n0x8948\t0x5847\n0x8949\t0x5848\n0x894A\t0x5849\n0x894B\t0x584A\n0x894C\t0x584B\n0x894D\t0x584E\n0x894E\t0x584F\n0x894F\t0x5850\n0x8950\t0x5852\n0x8951\t0x5853\n0x8952\t0x5855\n0x8953\t0x5856\n0x8954\t0x5857\n0x8955\t0x5859\n0x8956\t0x585A\n0x8957\t0x585B\n0x8958\t0x585C\n0x8959\t0x585D\n0x895A\t0x585F\n0x895B\t0x5860\n0x895C\t0x5861\n0x895D\t0x5862\n0x895E\t0x5863\n0x895F\t0x5864\n0x8960\t0x5866\n0x8961\t0x5867\n0x8962\t0x5868\n0x8963\t0x5869\n0x8964\t0x586A\n0x8965\t0x586D\n0x8966\t0x586E\n0x8967\t0x586F\n0x8968\t0x5870\n0x8969\t0x5871\n0x896A\t0x5872\n0x896B\t0x5873\n0x896C\t0x5874\n0x896D\t0x5875\n0x896E\t0x5876\n0x896F\t0x5877\n0x8970\t0x5878\n0x8971\t0x5879\n0x8972\t0x587A\n0x8973\t0x587B\n0x8974\t0x587C\n0x8975\t0x587D\n0x8976\t0x587F\n0x8977\t0x5882\n0x8978\t0x5884\n0x8979\t0x5886\n0x897A\t0x5887\n0x897B\t0x5888\n0x897C\t0x588A\n0x897D\t0x588B\n0x897E\t0x588C\n0x8980\t0x588D\n0x8981\t0x588E\n0x8982\t0x588F\n0x8983\t0x5890\n0x8984\t0x5891\n0x8985\t0x5894\n0x8986\t0x5895\n0x8987\t0x5896\n0x8988\t0x5897\n0x8989\t0x5898\n0x898A\t0x589B\n0x898B\t0x589C\n0x898C\t0x589D\n0x898D\t0x58A0\n0x898E\t0x58A1\n0x898F\t0x58A2\n0x8990\t0x58A3\n0x8991\t0x58A4\n0x8992\t0x58A5\n0x8993\t0x58A6\n0x8994\t0x58A7\n0x8995\t0x58AA\n0x8996\t0x58AB\n0x8997\t0x58AC\n0x8998\t0x58AD\n0x8999\t0x58AE\n0x899A\t0x58AF\n0x899B\t0x58B0\n0x899C\t0x58B1\n0x899D\t0x58B2\n0x899E\t0x58B3\n0x899F\t0x58B4\n0x89A0\t0x58B5\n0x89A1\t0x58B6\n0x89A2\t0x58B7\n0x89A3\t0x58B8\n0x89A4\t0x58B9\n0x89A5\t0x58BA\n0x89A6\t0x58BB\n0x89A7\t0x58BD\n0x89A8\t0x58BE\n0x89A9\t0x58BF\n0x89AA\t0x58C0\n0x89AB\t0x58C2\n0x89AC\t0x58C3\n0x89AD\t0x58C4\n0x89AE\t0x58C6\n0x89AF\t0x58C7\n0x89B0\t0x58C8\n0x89B1\t0x58C9\n0x89B2\t0x58CA\n0x89B3\t0x58CB\n0x89B4\t0x58CC\n0x89B5\t0x58CD\n0x89B6\t0x58CE\n0x89B7\t0x58CF\n0x89B8\t0x58D0\n0x89B9\t0x58D2\n0x89BA\t0x58D3\n0x89BB\t0x58D4\n0x89BC\t0x58D6\n0x89BD\t0x58D7\n0x89BE\t0x58D8\n0x89BF\t0x58D9\n0x89C0\t0x58DA\n0x89C1\t0x58DB\n0x89C2\t0x58DC\n0x89C3\t0x58DD\n0x89C4\t0x58DE\n0x89C5\t0x58DF\n0x89C6\t0x58E0\n0x89C7\t0x58E1\n0x89C8\t0x58E2\n0x89C9\t0x58E3\n0x89CA\t0x58E5\n0x89CB\t0x58E6\n0x89CC\t0x58E7\n0x89CD\t0x58E8\n0x89CE\t0x58E9\n0x89CF\t0x58EA\n0x89D0\t0x58ED\n0x89D1\t0x58EF\n0x89D2\t0x58F1\n0x89D3\t0x58F2\n0x89D4\t0x58F4\n0x89D5\t0x58F5\n0x89D6\t0x58F7\n0x89D7\t0x58F8\n0x89D8\t0x58FA\n0x89D9\t0x58FB\n0x89DA\t0x58FC\n0x89DB\t0x58FD\n0x89DC\t0x58FE\n0x89DD\t0x58FF\n0x89DE\t0x5900\n0x89DF\t0x5901\n0x89E0\t0x5903\n0x89E1\t0x5905\n0x89E2\t0x5906\n0x89E3\t0x5908\n0x89E4\t0x5909\n0x89E5\t0x590A\n0x89E6\t0x590B\n0x89E7\t0x590C\n0x89E8\t0x590E\n0x89E9\t0x5910\n0x89EA\t0x5911\n0x89EB\t0x5912\n0x89EC\t0x5913\n0x89ED\t0x5917\n0x89EE\t0x5918\n0x89EF\t0x591B\n0x89F0\t0x591D\n0x89F1\t0x591E\n0x89F2\t0x5920\n0x89F3\t0x5921\n0x89F4\t0x5922\n0x89F5\t0x5923\n0x89F6\t0x5926\n0x89F7\t0x5928\n0x89F8\t0x592C\n0x89F9\t0x5930\n0x89FA\t0x5932\n0x89FB\t0x5933\n0x89FC\t0x5935\n0x89FD\t0x5936\n0x89FE\t0x593B\n0x8A40\t0x593D\n0x8A41\t0x593E\n0x8A42\t0x593F\n0x8A43\t0x5940\n0x8A44\t0x5943\n0x8A45\t0x5945\n0x8A46\t0x5946\n0x8A47\t0x594A\n0x8A48\t0x594C\n0x8A49\t0x594D\n0x8A4A\t0x5950\n0x8A4B\t0x5952\n0x8A4C\t0x5953\n0x8A4D\t0x5959\n0x8A4E\t0x595B\n0x8A4F\t0x595C\n0x8A50\t0x595D\n0x8A51\t0x595E\n0x8A52\t0x595F\n0x8A53\t0x5961\n0x8A54\t0x5963\n0x8A55\t0x5964\n0x8A56\t0x5966\n0x8A57\t0x5967\n0x8A58\t0x5968\n0x8A59\t0x5969\n0x8A5A\t0x596A\n0x8A5B\t0x596B\n0x8A5C\t0x596C\n0x8A5D\t0x596D\n0x8A5E\t0x596E\n0x8A5F\t0x596F\n0x8A60\t0x5970\n0x8A61\t0x5971\n0x8A62\t0x5972\n0x8A63\t0x5975\n0x8A64\t0x5977\n0x8A65\t0x597A\n0x8A66\t0x597B\n0x8A67\t0x597C\n0x8A68\t0x597E\n0x8A69\t0x597F\n0x8A6A\t0x5980\n0x8A6B\t0x5985\n0x8A6C\t0x5989\n0x8A6D\t0x598B\n0x8A6E\t0x598C\n0x8A6F\t0x598E\n0x8A70\t0x598F\n0x8A71\t0x5990\n0x8A72\t0x5991\n0x8A73\t0x5994\n0x8A74\t0x5995\n0x8A75\t0x5998\n0x8A76\t0x599A\n0x8A77\t0x599B\n0x8A78\t0x599C\n0x8A79\t0x599D\n0x8A7A\t0x599F\n0x8A7B\t0x59A0\n0x8A7C\t0x59A1\n0x8A7D\t0x59A2\n0x8A7E\t0x59A6\n0x8A80\t0x59A7\n0x8A81\t0x59AC\n0x8A82\t0x59AD\n0x8A83\t0x59B0\n0x8A84\t0x59B1\n0x8A85\t0x59B3\n0x8A86\t0x59B4\n0x8A87\t0x59B5\n0x8A88\t0x59B6\n0x8A89\t0x59B7\n0x8A8A\t0x59B8\n0x8A8B\t0x59BA\n0x8A8C\t0x59BC\n0x8A8D\t0x59BD\n0x8A8E\t0x59BF\n0x8A8F\t0x59C0\n0x8A90\t0x59C1\n0x8A91\t0x59C2\n0x8A92\t0x59C3\n0x8A93\t0x59C4\n0x8A94\t0x59C5\n0x8A95\t0x59C7\n0x8A96\t0x59C8\n0x8A97\t0x59C9\n0x8A98\t0x59CC\n0x8A99\t0x59CD\n0x8A9A\t0x59CE\n0x8A9B\t0x59CF\n0x8A9C\t0x59D5\n0x8A9D\t0x59D6\n0x8A9E\t0x59D9\n0x8A9F\t0x59DB\n0x8AA0\t0x59DE\n0x8AA1\t0x59DF\n0x8AA2\t0x59E0\n0x8AA3\t0x59E1\n0x8AA4\t0x59E2\n0x8AA5\t0x59E4\n0x8AA6\t0x59E6\n0x8AA7\t0x59E7\n0x8AA8\t0x59E9\n0x8AA9\t0x59EA\n0x8AAA\t0x59EB\n0x8AAB\t0x59ED\n0x8AAC\t0x59EE\n0x8AAD\t0x59EF\n0x8AAE\t0x59F0\n0x8AAF\t0x59F1\n0x8AB0\t0x59F2\n0x8AB1\t0x59F3\n0x8AB2\t0x59F4\n0x8AB3\t0x59F5\n0x8AB4\t0x59F6\n0x8AB5\t0x59F7\n0x8AB6\t0x59F8\n0x8AB7\t0x59FA\n0x8AB8\t0x59FC\n0x8AB9\t0x59FD\n0x8ABA\t0x59FE\n0x8ABB\t0x5A00\n0x8ABC\t0x5A02\n0x8ABD\t0x5A0A\n0x8ABE\t0x5A0B\n0x8ABF\t0x5A0D\n0x8AC0\t0x5A0E\n0x8AC1\t0x5A0F\n0x8AC2\t0x5A10\n0x8AC3\t0x5A12\n0x8AC4\t0x5A14\n0x8AC5\t0x5A15\n0x8AC6\t0x5A16\n0x8AC7\t0x5A17\n0x8AC8\t0x5A19\n0x8AC9\t0x5A1A\n0x8ACA\t0x5A1B\n0x8ACB\t0x5A1D\n0x8ACC\t0x5A1E\n0x8ACD\t0x5A21\n0x8ACE\t0x5A22\n0x8ACF\t0x5A24\n0x8AD0\t0x5A26\n0x8AD1\t0x5A27\n0x8AD2\t0x5A28\n0x8AD3\t0x5A2A\n0x8AD4\t0x5A2B\n0x8AD5\t0x5A2C\n0x8AD6\t0x5A2D\n0x8AD7\t0x5A2E\n0x8AD8\t0x5A2F\n0x8AD9\t0x5A30\n0x8ADA\t0x5A33\n0x8ADB\t0x5A35\n0x8ADC\t0x5A37\n0x8ADD\t0x5A38\n0x8ADE\t0x5A39\n0x8ADF\t0x5A3A\n0x8AE0\t0x5A3B\n0x8AE1\t0x5A3D\n0x8AE2\t0x5A3E\n0x8AE3\t0x5A3F\n0x8AE4\t0x5A41\n0x8AE5\t0x5A42\n0x8AE6\t0x5A43\n0x8AE7\t0x5A44\n0x8AE8\t0x5A45\n0x8AE9\t0x5A47\n0x8AEA\t0x5A48\n0x8AEB\t0x5A4B\n0x8AEC\t0x5A4C\n0x8AED\t0x5A4D\n0x8AEE\t0x5A4E\n0x8AEF\t0x5A4F\n0x8AF0\t0x5A50\n0x8AF1\t0x5A51\n0x8AF2\t0x5A52\n0x8AF3\t0x5A53\n0x8AF4\t0x5A54\n0x8AF5\t0x5A56\n0x8AF6\t0x5A57\n0x8AF7\t0x5A58\n0x8AF8\t0x5A59\n0x8AF9\t0x5A5B\n0x8AFA\t0x5A5C\n0x8AFB\t0x5A5D\n0x8AFC\t0x5A5E\n0x8AFD\t0x5A5F\n0x8AFE\t0x5A60\n0x8B40\t0x5A61\n0x8B41\t0x5A63\n0x8B42\t0x5A64\n0x8B43\t0x5A65\n0x8B44\t0x5A66\n0x8B45\t0x5A68\n0x8B46\t0x5A69\n0x8B47\t0x5A6B\n0x8B48\t0x5A6C\n0x8B49\t0x5A6D\n0x8B4A\t0x5A6E\n0x8B4B\t0x5A6F\n0x8B4C\t0x5A70\n0x8B4D\t0x5A71\n0x8B4E\t0x5A72\n0x8B4F\t0x5A73\n0x8B50\t0x5A78\n0x8B51\t0x5A79\n0x8B52\t0x5A7B\n0x8B53\t0x5A7C\n0x8B54\t0x5A7D\n0x8B55\t0x5A7E\n0x8B56\t0x5A80\n0x8B57\t0x5A81\n0x8B58\t0x5A82\n0x8B59\t0x5A83\n0x8B5A\t0x5A84\n0x8B5B\t0x5A85\n0x8B5C\t0x5A86\n0x8B5D\t0x5A87\n0x8B5E\t0x5A88\n0x8B5F\t0x5A89\n0x8B60\t0x5A8A\n0x8B61\t0x5A8B\n0x8B62\t0x5A8C\n0x8B63\t0x5A8D\n0x8B64\t0x5A8E\n0x8B65\t0x5A8F\n0x8B66\t0x5A90\n0x8B67\t0x5A91\n0x8B68\t0x5A93\n0x8B69\t0x5A94\n0x8B6A\t0x5A95\n0x8B6B\t0x5A96\n0x8B6C\t0x5A97\n0x8B6D\t0x5A98\n0x8B6E\t0x5A99\n0x8B6F\t0x5A9C\n0x8B70\t0x5A9D\n0x8B71\t0x5A9E\n0x8B72\t0x5A9F\n0x8B73\t0x5AA0\n0x8B74\t0x5AA1\n0x8B75\t0x5AA2\n0x8B76\t0x5AA3\n0x8B77\t0x5AA4\n0x8B78\t0x5AA5\n0x8B79\t0x5AA6\n0x8B7A\t0x5AA7\n0x8B7B\t0x5AA8\n0x8B7C\t0x5AA9\n0x8B7D\t0x5AAB\n0x8B7E\t0x5AAC\n0x8B80\t0x5AAD\n0x8B81\t0x5AAE\n0x8B82\t0x5AAF\n0x8B83\t0x5AB0\n0x8B84\t0x5AB1\n0x8B85\t0x5AB4\n0x8B86\t0x5AB6\n0x8B87\t0x5AB7\n0x8B88\t0x5AB9\n0x8B89\t0x5ABA\n0x8B8A\t0x5ABB\n0x8B8B\t0x5ABC\n0x8B8C\t0x5ABD\n0x8B8D\t0x5ABF\n0x8B8E\t0x5AC0\n0x8B8F\t0x5AC3\n0x8B90\t0x5AC4\n0x8B91\t0x5AC5\n0x8B92\t0x5AC6\n0x8B93\t0x5AC7\n0x8B94\t0x5AC8\n0x8B95\t0x5ACA\n0x8B96\t0x5ACB\n0x8B97\t0x5ACD\n0x8B98\t0x5ACE\n0x8B99\t0x5ACF\n0x8B9A\t0x5AD0\n0x8B9B\t0x5AD1\n0x8B9C\t0x5AD3\n0x8B9D\t0x5AD5\n0x8B9E\t0x5AD7\n0x8B9F\t0x5AD9\n0x8BA0\t0x5ADA\n0x8BA1\t0x5ADB\n0x8BA2\t0x5ADD\n0x8BA3\t0x5ADE\n0x8BA4\t0x5ADF\n0x8BA5\t0x5AE2\n0x8BA6\t0x5AE4\n0x8BA7\t0x5AE5\n0x8BA8\t0x5AE7\n0x8BA9\t0x5AE8\n0x8BAA\t0x5AEA\n0x8BAB\t0x5AEC\n0x8BAC\t0x5AED\n0x8BAD\t0x5AEE\n0x8BAE\t0x5AEF\n0x8BAF\t0x5AF0\n0x8BB0\t0x5AF2\n0x8BB1\t0x5AF3\n0x8BB2\t0x5AF4\n0x8BB3\t0x5AF5\n0x8BB4\t0x5AF6\n0x8BB5\t0x5AF7\n0x8BB6\t0x5AF8\n0x8BB7\t0x5AF9\n0x8BB8\t0x5AFA\n0x8BB9\t0x5AFB\n0x8BBA\t0x5AFC\n0x8BBB\t0x5AFD\n0x8BBC\t0x5AFE\n0x8BBD\t0x5AFF\n0x8BBE\t0x5B00\n0x8BBF\t0x5B01\n0x8BC0\t0x5B02\n0x8BC1\t0x5B03\n0x8BC2\t0x5B04\n0x8BC3\t0x5B05\n0x8BC4\t0x5B06\n0x8BC5\t0x5B07\n0x8BC6\t0x5B08\n0x8BC7\t0x5B0A\n0x8BC8\t0x5B0B\n0x8BC9\t0x5B0C\n0x8BCA\t0x5B0D\n0x8BCB\t0x5B0E\n0x8BCC\t0x5B0F\n0x8BCD\t0x5B10\n0x8BCE\t0x5B11\n0x8BCF\t0x5B12\n0x8BD0\t0x5B13\n0x8BD1\t0x5B14\n0x8BD2\t0x5B15\n0x8BD3\t0x5B18\n0x8BD4\t0x5B19\n0x8BD5\t0x5B1A\n0x8BD6\t0x5B1B\n0x8BD7\t0x5B1C\n0x8BD8\t0x5B1D\n0x8BD9\t0x5B1E\n0x8BDA\t0x5B1F\n0x8BDB\t0x5B20\n0x8BDC\t0x5B21\n0x8BDD\t0x5B22\n0x8BDE\t0x5B23\n0x8BDF\t0x5B24\n0x8BE0\t0x5B25\n0x8BE1\t0x5B26\n0x8BE2\t0x5B27\n0x8BE3\t0x5B28\n0x8BE4\t0x5B29\n0x8BE5\t0x5B2A\n0x8BE6\t0x5B2B\n0x8BE7\t0x5B2C\n0x8BE8\t0x5B2D\n0x8BE9\t0x5B2E\n0x8BEA\t0x5B2F\n0x8BEB\t0x5B30\n0x8BEC\t0x5B31\n0x8BED\t0x5B33\n0x8BEE\t0x5B35\n0x8BEF\t0x5B36\n0x8BF0\t0x5B38\n0x8BF1\t0x5B39\n0x8BF2\t0x5B3A\n0x8BF3\t0x5B3B\n0x8BF4\t0x5B3C\n0x8BF5\t0x5B3D\n0x8BF6\t0x5B3E\n0x8BF7\t0x5B3F\n0x8BF8\t0x5B41\n0x8BF9\t0x5B42\n0x8BFA\t0x5B43\n0x8BFB\t0x5B44\n0x8BFC\t0x5B45\n0x8BFD\t0x5B46\n0x8BFE\t0x5B47\n0x8C40\t0x5B48\n0x8C41\t0x5B49\n0x8C42\t0x5B4A\n0x8C43\t0x5B4B\n0x8C44\t0x5B4C\n0x8C45\t0x5B4D\n0x8C46\t0x5B4E\n0x8C47\t0x5B4F\n0x8C48\t0x5B52\n0x8C49\t0x5B56\n0x8C4A\t0x5B5E\n0x8C4B\t0x5B60\n0x8C4C\t0x5B61\n0x8C4D\t0x5B67\n0x8C4E\t0x5B68\n0x8C4F\t0x5B6B\n0x8C50\t0x5B6D\n0x8C51\t0x5B6E\n0x8C52\t0x5B6F\n0x8C53\t0x5B72\n0x8C54\t0x5B74\n0x8C55\t0x5B76\n0x8C56\t0x5B77\n0x8C57\t0x5B78\n0x8C58\t0x5B79\n0x8C59\t0x5B7B\n0x8C5A\t0x5B7C\n0x8C5B\t0x5B7E\n0x8C5C\t0x5B7F\n0x8C5D\t0x5B82\n0x8C5E\t0x5B86\n0x8C5F\t0x5B8A\n0x8C60\t0x5B8D\n0x8C61\t0x5B8E\n0x8C62\t0x5B90\n0x8C63\t0x5B91\n0x8C64\t0x5B92\n0x8C65\t0x5B94\n0x8C66\t0x5B96\n0x8C67\t0x5B9F\n0x8C68\t0x5BA7\n0x8C69\t0x5BA8\n0x8C6A\t0x5BA9\n0x8C6B\t0x5BAC\n0x8C6C\t0x5BAD\n0x8C6D\t0x5BAE\n0x8C6E\t0x5BAF\n0x8C6F\t0x5BB1\n0x8C70\t0x5BB2\n0x8C71\t0x5BB7\n0x8C72\t0x5BBA\n0x8C73\t0x5BBB\n0x8C74\t0x5BBC\n0x8C75\t0x5BC0\n0x8C76\t0x5BC1\n0x8C77\t0x5BC3\n0x8C78\t0x5BC8\n0x8C79\t0x5BC9\n0x8C7A\t0x5BCA\n0x8C7B\t0x5BCB\n0x8C7C\t0x5BCD\n0x8C7D\t0x5BCE\n0x8C7E\t0x5BCF\n0x8C80\t0x5BD1\n0x8C81\t0x5BD4\n0x8C82\t0x5BD5\n0x8C83\t0x5BD6\n0x8C84\t0x5BD7\n0x8C85\t0x5BD8\n0x8C86\t0x5BD9\n0x8C87\t0x5BDA\n0x8C88\t0x5BDB\n0x8C89\t0x5BDC\n0x8C8A\t0x5BE0\n0x8C8B\t0x5BE2\n0x8C8C\t0x5BE3\n0x8C8D\t0x5BE6\n0x8C8E\t0x5BE7\n0x8C8F\t0x5BE9\n0x8C90\t0x5BEA\n0x8C91\t0x5BEB\n0x8C92\t0x5BEC\n0x8C93\t0x5BED\n0x8C94\t0x5BEF\n0x8C95\t0x5BF1\n0x8C96\t0x5BF2\n0x8C97\t0x5BF3\n0x8C98\t0x5BF4\n0x8C99\t0x5BF5\n0x8C9A\t0x5BF6\n0x8C9B\t0x5BF7\n0x8C9C\t0x5BFD\n0x8C9D\t0x5BFE\n0x8C9E\t0x5C00\n0x8C9F\t0x5C02\n0x8CA0\t0x5C03\n0x8CA1\t0x5C05\n0x8CA2\t0x5C07\n0x8CA3\t0x5C08\n0x8CA4\t0x5C0B\n0x8CA5\t0x5C0C\n0x8CA6\t0x5C0D\n0x8CA7\t0x5C0E\n0x8CA8\t0x5C10\n0x8CA9\t0x5C12\n0x8CAA\t0x5C13\n0x8CAB\t0x5C17\n0x8CAC\t0x5C19\n0x8CAD\t0x5C1B\n0x8CAE\t0x5C1E\n0x8CAF\t0x5C1F\n0x8CB0\t0x5C20\n0x8CB1\t0x5C21\n0x8CB2\t0x5C23\n0x8CB3\t0x5C26\n0x8CB4\t0x5C28\n0x8CB5\t0x5C29\n0x8CB6\t0x5C2A\n0x8CB7\t0x5C2B\n0x8CB8\t0x5C2D\n0x8CB9\t0x5C2E\n0x8CBA\t0x5C2F\n0x8CBB\t0x5C30\n0x8CBC\t0x5C32\n0x8CBD\t0x5C33\n0x8CBE\t0x5C35\n0x8CBF\t0x5C36\n0x8CC0\t0x5C37\n0x8CC1\t0x5C43\n0x8CC2\t0x5C44\n0x8CC3\t0x5C46\n0x8CC4\t0x5C47\n0x8CC5\t0x5C4C\n0x8CC6\t0x5C4D\n0x8CC7\t0x5C52\n0x8CC8\t0x5C53\n0x8CC9\t0x5C54\n0x8CCA\t0x5C56\n0x8CCB\t0x5C57\n0x8CCC\t0x5C58\n0x8CCD\t0x5C5A\n0x8CCE\t0x5C5B\n0x8CCF\t0x5C5C\n0x8CD0\t0x5C5D\n0x8CD1\t0x5C5F\n0x8CD2\t0x5C62\n0x8CD3\t0x5C64\n0x8CD4\t0x5C67\n0x8CD5\t0x5C68\n0x8CD6\t0x5C69\n0x8CD7\t0x5C6A\n0x8CD8\t0x5C6B\n0x8CD9\t0x5C6C\n0x8CDA\t0x5C6D\n0x8CDB\t0x5C70\n0x8CDC\t0x5C72\n0x8CDD\t0x5C73\n0x8CDE\t0x5C74\n0x8CDF\t0x5C75\n0x8CE0\t0x5C76\n0x8CE1\t0x5C77\n0x8CE2\t0x5C78\n0x8CE3\t0x5C7B\n0x8CE4\t0x5C7C\n0x8CE5\t0x5C7D\n0x8CE6\t0x5C7E\n0x8CE7\t0x5C80\n0x8CE8\t0x5C83\n0x8CE9\t0x5C84\n0x8CEA\t0x5C85\n0x8CEB\t0x5C86\n0x8CEC\t0x5C87\n0x8CED\t0x5C89\n0x8CEE\t0x5C8A\n0x8CEF\t0x5C8B\n0x8CF0\t0x5C8E\n0x8CF1\t0x5C8F\n0x8CF2\t0x5C92\n0x8CF3\t0x5C93\n0x8CF4\t0x5C95\n0x8CF5\t0x5C9D\n0x8CF6\t0x5C9E\n0x8CF7\t0x5C9F\n0x8CF8\t0x5CA0\n0x8CF9\t0x5CA1\n0x8CFA\t0x5CA4\n0x8CFB\t0x5CA5\n0x8CFC\t0x5CA6\n0x8CFD\t0x5CA7\n0x8CFE\t0x5CA8\n0x8D40\t0x5CAA\n0x8D41\t0x5CAE\n0x8D42\t0x5CAF\n0x8D43\t0x5CB0\n0x8D44\t0x5CB2\n0x8D45\t0x5CB4\n0x8D46\t0x5CB6\n0x8D47\t0x5CB9\n0x8D48\t0x5CBA\n0x8D49\t0x5CBB\n0x8D4A\t0x5CBC\n0x8D4B\t0x5CBE\n0x8D4C\t0x5CC0\n0x8D4D\t0x5CC2\n0x8D4E\t0x5CC3\n0x8D4F\t0x5CC5\n0x8D50\t0x5CC6\n0x8D51\t0x5CC7\n0x8D52\t0x5CC8\n0x8D53\t0x5CC9\n0x8D54\t0x5CCA\n0x8D55\t0x5CCC\n0x8D56\t0x5CCD\n0x8D57\t0x5CCE\n0x8D58\t0x5CCF\n0x8D59\t0x5CD0\n0x8D5A\t0x5CD1\n0x8D5B\t0x5CD3\n0x8D5C\t0x5CD4\n0x8D5D\t0x5CD5\n0x8D5E\t0x5CD6\n0x8D5F\t0x5CD7\n0x8D60\t0x5CD8\n0x8D61\t0x5CDA\n0x8D62\t0x5CDB\n0x8D63\t0x5CDC\n0x8D64\t0x5CDD\n0x8D65\t0x5CDE\n0x8D66\t0x5CDF\n0x8D67\t0x5CE0\n0x8D68\t0x5CE2\n0x8D69\t0x5CE3\n0x8D6A\t0x5CE7\n0x8D6B\t0x5CE9\n0x8D6C\t0x5CEB\n0x8D6D\t0x5CEC\n0x8D6E\t0x5CEE\n0x8D6F\t0x5CEF\n0x8D70\t0x5CF1\n0x8D71\t0x5CF2\n0x8D72\t0x5CF3\n0x8D73\t0x5CF4\n0x8D74\t0x5CF5\n0x8D75\t0x5CF6\n0x8D76\t0x5CF7\n0x8D77\t0x5CF8\n0x8D78\t0x5CF9\n0x8D79\t0x5CFA\n0x8D7A\t0x5CFC\n0x8D7B\t0x5CFD\n0x8D7C\t0x5CFE\n0x8D7D\t0x5CFF\n0x8D7E\t0x5D00\n0x8D80\t0x5D01\n0x8D81\t0x5D04\n0x8D82\t0x5D05\n0x8D83\t0x5D08\n0x8D84\t0x5D09\n0x8D85\t0x5D0A\n0x8D86\t0x5D0B\n0x8D87\t0x5D0C\n0x8D88\t0x5D0D\n0x8D89\t0x5D0F\n0x8D8A\t0x5D10\n0x8D8B\t0x5D11\n0x8D8C\t0x5D12\n0x8D8D\t0x5D13\n0x8D8E\t0x5D15\n0x8D8F\t0x5D17\n0x8D90\t0x5D18\n0x8D91\t0x5D19\n0x8D92\t0x5D1A\n0x8D93\t0x5D1C\n0x8D94\t0x5D1D\n0x8D95\t0x5D1F\n0x8D96\t0x5D20\n0x8D97\t0x5D21\n0x8D98\t0x5D22\n0x8D99\t0x5D23\n0x8D9A\t0x5D25\n0x8D9B\t0x5D28\n0x8D9C\t0x5D2A\n0x8D9D\t0x5D2B\n0x8D9E\t0x5D2C\n0x8D9F\t0x5D2F\n0x8DA0\t0x5D30\n0x8DA1\t0x5D31\n0x8DA2\t0x5D32\n0x8DA3\t0x5D33\n0x8DA4\t0x5D35\n0x8DA5\t0x5D36\n0x8DA6\t0x5D37\n0x8DA7\t0x5D38\n0x8DA8\t0x5D39\n0x8DA9\t0x5D3A\n0x8DAA\t0x5D3B\n0x8DAB\t0x5D3C\n0x8DAC\t0x5D3F\n0x8DAD\t0x5D40\n0x8DAE\t0x5D41\n0x8DAF\t0x5D42\n0x8DB0\t0x5D43\n0x8DB1\t0x5D44\n0x8DB2\t0x5D45\n0x8DB3\t0x5D46\n0x8DB4\t0x5D48\n0x8DB5\t0x5D49\n0x8DB6\t0x5D4D\n0x8DB7\t0x5D4E\n0x8DB8\t0x5D4F\n0x8DB9\t0x5D50\n0x8DBA\t0x5D51\n0x8DBB\t0x5D52\n0x8DBC\t0x5D53\n0x8DBD\t0x5D54\n0x8DBE\t0x5D55\n0x8DBF\t0x5D56\n0x8DC0\t0x5D57\n0x8DC1\t0x5D59\n0x8DC2\t0x5D5A\n0x8DC3\t0x5D5C\n0x8DC4\t0x5D5E\n0x8DC5\t0x5D5F\n0x8DC6\t0x5D60\n0x8DC7\t0x5D61\n0x8DC8\t0x5D62\n0x8DC9\t0x5D63\n0x8DCA\t0x5D64\n0x8DCB\t0x5D65\n0x8DCC\t0x5D66\n0x8DCD\t0x5D67\n0x8DCE\t0x5D68\n0x8DCF\t0x5D6A\n0x8DD0\t0x5D6D\n0x8DD1\t0x5D6E\n0x8DD2\t0x5D70\n0x8DD3\t0x5D71\n0x8DD4\t0x5D72\n0x8DD5\t0x5D73\n0x8DD6\t0x5D75\n0x8DD7\t0x5D76\n0x8DD8\t0x5D77\n0x8DD9\t0x5D78\n0x8DDA\t0x5D79\n0x8DDB\t0x5D7A\n0x8DDC\t0x5D7B\n0x8DDD\t0x5D7C\n0x8DDE\t0x5D7D\n0x8DDF\t0x5D7E\n0x8DE0\t0x5D7F\n0x8DE1\t0x5D80\n0x8DE2\t0x5D81\n0x8DE3\t0x5D83\n0x8DE4\t0x5D84\n0x8DE5\t0x5D85\n0x8DE6\t0x5D86\n0x8DE7\t0x5D87\n0x8DE8\t0x5D88\n0x8DE9\t0x5D89\n0x8DEA\t0x5D8A\n0x8DEB\t0x5D8B\n0x8DEC\t0x5D8C\n0x8DED\t0x5D8D\n0x8DEE\t0x5D8E\n0x8DEF\t0x5D8F\n0x8DF0\t0x5D90\n0x8DF1\t0x5D91\n0x8DF2\t0x5D92\n0x8DF3\t0x5D93\n0x8DF4\t0x5D94\n0x8DF5\t0x5D95\n0x8DF6\t0x5D96\n0x8DF7\t0x5D97\n0x8DF8\t0x5D98\n0x8DF9\t0x5D9A\n0x8DFA\t0x5D9B\n0x8DFB\t0x5D9C\n0x8DFC\t0x5D9E\n0x8DFD\t0x5D9F\n0x8DFE\t0x5DA0\n0x8E40\t0x5DA1\n0x8E41\t0x5DA2\n0x8E42\t0x5DA3\n0x8E43\t0x5DA4\n0x8E44\t0x5DA5\n0x8E45\t0x5DA6\n0x8E46\t0x5DA7\n0x8E47\t0x5DA8\n0x8E48\t0x5DA9\n0x8E49\t0x5DAA\n0x8E4A\t0x5DAB\n0x8E4B\t0x5DAC\n0x8E4C\t0x5DAD\n0x8E4D\t0x5DAE\n0x8E4E\t0x5DAF\n0x8E4F\t0x5DB0\n0x8E50\t0x5DB1\n0x8E51\t0x5DB2\n0x8E52\t0x5DB3\n0x8E53\t0x5DB4\n0x8E54\t0x5DB5\n0x8E55\t0x5DB6\n0x8E56\t0x5DB8\n0x8E57\t0x5DB9\n0x8E58\t0x5DBA\n0x8E59\t0x5DBB\n0x8E5A\t0x5DBC\n0x8E5B\t0x5DBD\n0x8E5C\t0x5DBE\n0x8E5D\t0x5DBF\n0x8E5E\t0x5DC0\n0x8E5F\t0x5DC1\n0x8E60\t0x5DC2\n0x8E61\t0x5DC3\n0x8E62\t0x5DC4\n0x8E63\t0x5DC6\n0x8E64\t0x5DC7\n0x8E65\t0x5DC8\n0x8E66\t0x5DC9\n0x8E67\t0x5DCA\n0x8E68\t0x5DCB\n0x8E69\t0x5DCC\n0x8E6A\t0x5DCE\n0x8E6B\t0x5DCF\n0x8E6C\t0x5DD0\n0x8E6D\t0x5DD1\n0x8E6E\t0x5DD2\n0x8E6F\t0x5DD3\n0x8E70\t0x5DD4\n0x8E71\t0x5DD5\n0x8E72\t0x5DD6\n0x8E73\t0x5DD7\n0x8E74\t0x5DD8\n0x8E75\t0x5DD9\n0x8E76\t0x5DDA\n0x8E77\t0x5DDC\n0x8E78\t0x5DDF\n0x8E79\t0x5DE0\n0x8E7A\t0x5DE3\n0x8E7B\t0x5DE4\n0x8E7C\t0x5DEA\n0x8E7D\t0x5DEC\n0x8E7E\t0x5DED\n0x8E80\t0x5DF0\n0x8E81\t0x5DF5\n0x8E82\t0x5DF6\n0x8E83\t0x5DF8\n0x8E84\t0x5DF9\n0x8E85\t0x5DFA\n0x8E86\t0x5DFB\n0x8E87\t0x5DFC\n0x8E88\t0x5DFF\n0x8E89\t0x5E00\n0x8E8A\t0x5E04\n0x8E8B\t0x5E07\n0x8E8C\t0x5E09\n0x8E8D\t0x5E0A\n0x8E8E\t0x5E0B\n0x8E8F\t0x5E0D\n0x8E90\t0x5E0E\n0x8E91\t0x5E12\n0x8E92\t0x5E13\n0x8E93\t0x5E17\n0x8E94\t0x5E1E\n0x8E95\t0x5E1F\n0x8E96\t0x5E20\n0x8E97\t0x5E21\n0x8E98\t0x5E22\n0x8E99\t0x5E23\n0x8E9A\t0x5E24\n0x8E9B\t0x5E25\n0x8E9C\t0x5E28\n0x8E9D\t0x5E29\n0x8E9E\t0x5E2A\n0x8E9F\t0x5E2B\n0x8EA0\t0x5E2C\n0x8EA1\t0x5E2F\n0x8EA2\t0x5E30\n0x8EA3\t0x5E32\n0x8EA4\t0x5E33\n0x8EA5\t0x5E34\n0x8EA6\t0x5E35\n0x8EA7\t0x5E36\n0x8EA8\t0x5E39\n0x8EA9\t0x5E3A\n0x8EAA\t0x5E3E\n0x8EAB\t0x5E3F\n0x8EAC\t0x5E40\n0x8EAD\t0x5E41\n0x8EAE\t0x5E43\n0x8EAF\t0x5E46\n0x8EB0\t0x5E47\n0x8EB1\t0x5E48\n0x8EB2\t0x5E49\n0x8EB3\t0x5E4A\n0x8EB4\t0x5E4B\n0x8EB5\t0x5E4D\n0x8EB6\t0x5E4E\n0x8EB7\t0x5E4F\n0x8EB8\t0x5E50\n0x8EB9\t0x5E51\n0x8EBA\t0x5E52\n0x8EBB\t0x5E53\n0x8EBC\t0x5E56\n0x8EBD\t0x5E57\n0x8EBE\t0x5E58\n0x8EBF\t0x5E59\n0x8EC0\t0x5E5A\n0x8EC1\t0x5E5C\n0x8EC2\t0x5E5D\n0x8EC3\t0x5E5F\n0x8EC4\t0x5E60\n0x8EC5\t0x5E63\n0x8EC6\t0x5E64\n0x8EC7\t0x5E65\n0x8EC8\t0x5E66\n0x8EC9\t0x5E67\n0x8ECA\t0x5E68\n0x8ECB\t0x5E69\n0x8ECC\t0x5E6A\n0x8ECD\t0x5E6B\n0x8ECE\t0x5E6C\n0x8ECF\t0x5E6D\n0x8ED0\t0x5E6E\n0x8ED1\t0x5E6F\n0x8ED2\t0x5E70\n0x8ED3\t0x5E71\n0x8ED4\t0x5E75\n0x8ED5\t0x5E77\n0x8ED6\t0x5E79\n0x8ED7\t0x5E7E\n0x8ED8\t0x5E81\n0x8ED9\t0x5E82\n0x8EDA\t0x5E83\n0x8EDB\t0x5E85\n0x8EDC\t0x5E88\n0x8EDD\t0x5E89\n0x8EDE\t0x5E8C\n0x8EDF\t0x5E8D\n0x8EE0\t0x5E8E\n0x8EE1\t0x5E92\n0x8EE2\t0x5E98\n0x8EE3\t0x5E9B\n0x8EE4\t0x5E9D\n0x8EE5\t0x5EA1\n0x8EE6\t0x5EA2\n0x8EE7\t0x5EA3\n0x8EE8\t0x5EA4\n0x8EE9\t0x5EA8\n0x8EEA\t0x5EA9\n0x8EEB\t0x5EAA\n0x8EEC\t0x5EAB\n0x8EED\t0x5EAC\n0x8EEE\t0x5EAE\n0x8EEF\t0x5EAF\n0x8EF0\t0x5EB0\n0x8EF1\t0x5EB1\n0x8EF2\t0x5EB2\n0x8EF3\t0x5EB4\n0x8EF4\t0x5EBA\n0x8EF5\t0x5EBB\n0x8EF6\t0x5EBC\n0x8EF7\t0x5EBD\n0x8EF8\t0x5EBF\n0x8EF9\t0x5EC0\n0x8EFA\t0x5EC1\n0x8EFB\t0x5EC2\n0x8EFC\t0x5EC3\n0x8EFD\t0x5EC4\n0x8EFE\t0x5EC5\n0x8F40\t0x5EC6\n0x8F41\t0x5EC7\n0x8F42\t0x5EC8\n0x8F43\t0x5ECB\n0x8F44\t0x5ECC\n0x8F45\t0x5ECD\n0x8F46\t0x5ECE\n0x8F47\t0x5ECF\n0x8F48\t0x5ED0\n0x8F49\t0x5ED4\n0x8F4A\t0x5ED5\n0x8F4B\t0x5ED7\n0x8F4C\t0x5ED8\n0x8F4D\t0x5ED9\n0x8F4E\t0x5EDA\n0x8F4F\t0x5EDC\n0x8F50\t0x5EDD\n0x8F51\t0x5EDE\n0x8F52\t0x5EDF\n0x8F53\t0x5EE0\n0x8F54\t0x5EE1\n0x8F55\t0x5EE2\n0x8F56\t0x5EE3\n0x8F57\t0x5EE4\n0x8F58\t0x5EE5\n0x8F59\t0x5EE6\n0x8F5A\t0x5EE7\n0x8F5B\t0x5EE9\n0x8F5C\t0x5EEB\n0x8F5D\t0x5EEC\n0x8F5E\t0x5EED\n0x8F5F\t0x5EEE\n0x8F60\t0x5EEF\n0x8F61\t0x5EF0\n0x8F62\t0x5EF1\n0x8F63\t0x5EF2\n0x8F64\t0x5EF3\n0x8F65\t0x5EF5\n0x8F66\t0x5EF8\n0x8F67\t0x5EF9\n0x8F68\t0x5EFB\n0x8F69\t0x5EFC\n0x8F6A\t0x5EFD\n0x8F6B\t0x5F05\n0x8F6C\t0x5F06\n0x8F6D\t0x5F07\n0x8F6E\t0x5F09\n0x8F6F\t0x5F0C\n0x8F70\t0x5F0D\n0x8F71\t0x5F0E\n0x8F72\t0x5F10\n0x8F73\t0x5F12\n0x8F74\t0x5F14\n0x8F75\t0x5F16\n0x8F76\t0x5F19\n0x8F77\t0x5F1A\n0x8F78\t0x5F1C\n0x8F79\t0x5F1D\n0x8F7A\t0x5F1E\n0x8F7B\t0x5F21\n0x8F7C\t0x5F22\n0x8F7D\t0x5F23\n0x8F7E\t0x5F24\n0x8F80\t0x5F28\n0x8F81\t0x5F2B\n0x8F82\t0x5F2C\n0x8F83\t0x5F2E\n0x8F84\t0x5F30\n0x8F85\t0x5F32\n0x8F86\t0x5F33\n0x8F87\t0x5F34\n0x8F88\t0x5F35\n0x8F89\t0x5F36\n0x8F8A\t0x5F37\n0x8F8B\t0x5F38\n0x8F8C\t0x5F3B\n0x8F8D\t0x5F3D\n0x8F8E\t0x5F3E\n0x8F8F\t0x5F3F\n0x8F90\t0x5F41\n0x8F91\t0x5F42\n0x8F92\t0x5F43\n0x8F93\t0x5F44\n0x8F94\t0x5F45\n0x8F95\t0x5F46\n0x8F96\t0x5F47\n0x8F97\t0x5F48\n0x8F98\t0x5F49\n0x8F99\t0x5F4A\n0x8F9A\t0x5F4B\n0x8F9B\t0x5F4C\n0x8F9C\t0x5F4D\n0x8F9D\t0x5F4E\n0x8F9E\t0x5F4F\n0x8F9F\t0x5F51\n0x8FA0\t0x5F54\n0x8FA1\t0x5F59\n0x8FA2\t0x5F5A\n0x8FA3\t0x5F5B\n0x8FA4\t0x5F5C\n0x8FA5\t0x5F5E\n0x8FA6\t0x5F5F\n0x8FA7\t0x5F60\n0x8FA8\t0x5F63\n0x8FA9\t0x5F65\n0x8FAA\t0x5F67\n0x8FAB\t0x5F68\n0x8FAC\t0x5F6B\n0x8FAD\t0x5F6E\n0x8FAE\t0x5F6F\n0x8FAF\t0x5F72\n0x8FB0\t0x5F74\n0x8FB1\t0x5F75\n0x8FB2\t0x5F76\n0x8FB3\t0x5F78\n0x8FB4\t0x5F7A\n0x8FB5\t0x5F7D\n0x8FB6\t0x5F7E\n0x8FB7\t0x5F7F\n0x8FB8\t0x5F83\n0x8FB9\t0x5F86\n0x8FBA\t0x5F8D\n0x8FBB\t0x5F8E\n0x8FBC\t0x5F8F\n0x8FBD\t0x5F91\n0x8FBE\t0x5F93\n0x8FBF\t0x5F94\n0x8FC0\t0x5F96\n0x8FC1\t0x5F9A\n0x8FC2\t0x5F9B\n0x8FC3\t0x5F9D\n0x8FC4\t0x5F9E\n0x8FC5\t0x5F9F\n0x8FC6\t0x5FA0\n0x8FC7\t0x5FA2\n0x8FC8\t0x5FA3\n0x8FC9\t0x5FA4\n0x8FCA\t0x5FA5\n0x8FCB\t0x5FA6\n0x8FCC\t0x5FA7\n0x8FCD\t0x5FA9\n0x8FCE\t0x5FAB\n0x8FCF\t0x5FAC\n0x8FD0\t0x5FAF\n0x8FD1\t0x5FB0\n0x8FD2\t0x5FB1\n0x8FD3\t0x5FB2\n0x8FD4\t0x5FB3\n0x8FD5\t0x5FB4\n0x8FD6\t0x5FB6\n0x8FD7\t0x5FB8\n0x8FD8\t0x5FB9\n0x8FD9\t0x5FBA\n0x8FDA\t0x5FBB\n0x8FDB\t0x5FBE\n0x8FDC\t0x5FBF\n0x8FDD\t0x5FC0\n0x8FDE\t0x5FC1\n0x8FDF\t0x5FC2\n0x8FE0\t0x5FC7\n0x8FE1\t0x5FC8\n0x8FE2\t0x5FCA\n0x8FE3\t0x5FCB\n0x8FE4\t0x5FCE\n0x8FE5\t0x5FD3\n0x8FE6\t0x5FD4\n0x8FE7\t0x5FD5\n0x8FE8\t0x5FDA\n0x8FE9\t0x5FDB\n0x8FEA\t0x5FDC\n0x8FEB\t0x5FDE\n0x8FEC\t0x5FDF\n0x8FED\t0x5FE2\n0x8FEE\t0x5FE3\n0x8FEF\t0x5FE5\n0x8FF0\t0x5FE6\n0x8FF1\t0x5FE8\n0x8FF2\t0x5FE9\n0x8FF3\t0x5FEC\n0x8FF4\t0x5FEF\n0x8FF5\t0x5FF0\n0x8FF6\t0x5FF2\n0x8FF7\t0x5FF3\n0x8FF8\t0x5FF4\n0x8FF9\t0x5FF6\n0x8FFA\t0x5FF7\n0x8FFB\t0x5FF9\n0x8FFC\t0x5FFA\n0x8FFD\t0x5FFC\n0x8FFE\t0x6007\n0x9040\t0x6008\n0x9041\t0x6009\n0x9042\t0x600B\n0x9043\t0x600C\n0x9044\t0x6010\n0x9045\t0x6011\n0x9046\t0x6013\n0x9047\t0x6017\n0x9048\t0x6018\n0x9049\t0x601A\n0x904A\t0x601E\n0x904B\t0x601F\n0x904C\t0x6022\n0x904D\t0x6023\n0x904E\t0x6024\n0x904F\t0x602C\n0x9050\t0x602D\n0x9051\t0x602E\n0x9052\t0x6030\n0x9053\t0x6031\n0x9054\t0x6032\n0x9055\t0x6033\n0x9056\t0x6034\n0x9057\t0x6036\n0x9058\t0x6037\n0x9059\t0x6038\n0x905A\t0x6039\n0x905B\t0x603A\n0x905C\t0x603D\n0x905D\t0x603E\n0x905E\t0x6040\n0x905F\t0x6044\n0x9060\t0x6045\n0x9061\t0x6046\n0x9062\t0x6047\n0x9063\t0x6048\n0x9064\t0x6049\n0x9065\t0x604A\n0x9066\t0x604C\n0x9067\t0x604E\n0x9068\t0x604F\n0x9069\t0x6051\n0x906A\t0x6053\n0x906B\t0x6054\n0x906C\t0x6056\n0x906D\t0x6057\n0x906E\t0x6058\n0x906F\t0x605B\n0x9070\t0x605C\n0x9071\t0x605E\n0x9072\t0x605F\n0x9073\t0x6060\n0x9074\t0x6061\n0x9075\t0x6065\n0x9076\t0x6066\n0x9077\t0x606E\n0x9078\t0x6071\n0x9079\t0x6072\n0x907A\t0x6074\n0x907B\t0x6075\n0x907C\t0x6077\n0x907D\t0x607E\n0x907E\t0x6080\n0x9080\t0x6081\n0x9081\t0x6082\n0x9082\t0x6085\n0x9083\t0x6086\n0x9084\t0x6087\n0x9085\t0x6088\n0x9086\t0x608A\n0x9087\t0x608B\n0x9088\t0x608E\n0x9089\t0x608F\n0x908A\t0x6090\n0x908B\t0x6091\n0x908C\t0x6093\n0x908D\t0x6095\n0x908E\t0x6097\n0x908F\t0x6098\n0x9090\t0x6099\n0x9091\t0x609C\n0x9092\t0x609E\n0x9093\t0x60A1\n0x9094\t0x60A2\n0x9095\t0x60A4\n0x9096\t0x60A5\n0x9097\t0x60A7\n0x9098\t0x60A9\n0x9099\t0x60AA\n0x909A\t0x60AE\n0x909B\t0x60B0\n0x909C\t0x60B3\n0x909D\t0x60B5\n0x909E\t0x60B6\n0x909F\t0x60B7\n0x90A0\t0x60B9\n0x90A1\t0x60BA\n0x90A2\t0x60BD\n0x90A3\t0x60BE\n0x90A4\t0x60BF\n0x90A5\t0x60C0\n0x90A6\t0x60C1\n0x90A7\t0x60C2\n0x90A8\t0x60C3\n0x90A9\t0x60C4\n0x90AA\t0x60C7\n0x90AB\t0x60C8\n0x90AC\t0x60C9\n0x90AD\t0x60CC\n0x90AE\t0x60CD\n0x90AF\t0x60CE\n0x90B0\t0x60CF\n0x90B1\t0x60D0\n0x90B2\t0x60D2\n0x90B3\t0x60D3\n0x90B4\t0x60D4\n0x90B5\t0x60D6\n0x90B6\t0x60D7\n0x90B7\t0x60D9\n0x90B8\t0x60DB\n0x90B9\t0x60DE\n0x90BA\t0x60E1\n0x90BB\t0x60E2\n0x90BC\t0x60E3\n0x90BD\t0x60E4\n0x90BE\t0x60E5\n0x90BF\t0x60EA\n0x90C0\t0x60F1\n0x90C1\t0x60F2\n0x90C2\t0x60F5\n0x90C3\t0x60F7\n0x90C4\t0x60F8\n0x90C5\t0x60FB\n0x90C6\t0x60FC\n0x90C7\t0x60FD\n0x90C8\t0x60FE\n0x90C9\t0x60FF\n0x90CA\t0x6102\n0x90CB\t0x6103\n0x90CC\t0x6104\n0x90CD\t0x6105\n0x90CE\t0x6107\n0x90CF\t0x610A\n0x90D0\t0x610B\n0x90D1\t0x610C\n0x90D2\t0x6110\n0x90D3\t0x6111\n0x90D4\t0x6112\n0x90D5\t0x6113\n0x90D6\t0x6114\n0x90D7\t0x6116\n0x90D8\t0x6117\n0x90D9\t0x6118\n0x90DA\t0x6119\n0x90DB\t0x611B\n0x90DC\t0x611C\n0x90DD\t0x611D\n0x90DE\t0x611E\n0x90DF\t0x6121\n0x90E0\t0x6122\n0x90E1\t0x6125\n0x90E2\t0x6128\n0x90E3\t0x6129\n0x90E4\t0x612A\n0x90E5\t0x612C\n0x90E6\t0x612D\n0x90E7\t0x612E\n0x90E8\t0x612F\n0x90E9\t0x6130\n0x90EA\t0x6131\n0x90EB\t0x6132\n0x90EC\t0x6133\n0x90ED\t0x6134\n0x90EE\t0x6135\n0x90EF\t0x6136\n0x90F0\t0x6137\n0x90F1\t0x6138\n0x90F2\t0x6139\n0x90F3\t0x613A\n0x90F4\t0x613B\n0x90F5\t0x613C\n0x90F6\t0x613D\n0x90F7\t0x613E\n0x90F8\t0x6140\n0x90F9\t0x6141\n0x90FA\t0x6142\n0x90FB\t0x6143\n0x90FC\t0x6144\n0x90FD\t0x6145\n0x90FE\t0x6146\n0x9140\t0x6147\n0x9141\t0x6149\n0x9142\t0x614B\n0x9143\t0x614D\n0x9144\t0x614F\n0x9145\t0x6150\n0x9146\t0x6152\n0x9147\t0x6153\n0x9148\t0x6154\n0x9149\t0x6156\n0x914A\t0x6157\n0x914B\t0x6158\n0x914C\t0x6159\n0x914D\t0x615A\n0x914E\t0x615B\n0x914F\t0x615C\n0x9150\t0x615E\n0x9151\t0x615F\n0x9152\t0x6160\n0x9153\t0x6161\n0x9154\t0x6163\n0x9155\t0x6164\n0x9156\t0x6165\n0x9157\t0x6166\n0x9158\t0x6169\n0x9159\t0x616A\n0x915A\t0x616B\n0x915B\t0x616C\n0x915C\t0x616D\n0x915D\t0x616E\n0x915E\t0x616F\n0x915F\t0x6171\n0x9160\t0x6172\n0x9161\t0x6173\n0x9162\t0x6174\n0x9163\t0x6176\n0x9164\t0x6178\n0x9165\t0x6179\n0x9166\t0x617A\n0x9167\t0x617B\n0x9168\t0x617C\n0x9169\t0x617D\n0x916A\t0x617E\n0x916B\t0x617F\n0x916C\t0x6180\n0x916D\t0x6181\n0x916E\t0x6182\n0x916F\t0x6183\n0x9170\t0x6184\n0x9171\t0x6185\n0x9172\t0x6186\n0x9173\t0x6187\n0x9174\t0x6188\n0x9175\t0x6189\n0x9176\t0x618A\n0x9177\t0x618C\n0x9178\t0x618D\n0x9179\t0x618F\n0x917A\t0x6190\n0x917B\t0x6191\n0x917C\t0x6192\n0x917D\t0x6193\n0x917E\t0x6195\n0x9180\t0x6196\n0x9181\t0x6197\n0x9182\t0x6198\n0x9183\t0x6199\n0x9184\t0x619A\n0x9185\t0x619B\n0x9186\t0x619C\n0x9187\t0x619E\n0x9188\t0x619F\n0x9189\t0x61A0\n0x918A\t0x61A1\n0x918B\t0x61A2\n0x918C\t0x61A3\n0x918D\t0x61A4\n0x918E\t0x61A5\n0x918F\t0x61A6\n0x9190\t0x61AA\n0x9191\t0x61AB\n0x9192\t0x61AD\n0x9193\t0x61AE\n0x9194\t0x61AF\n0x9195\t0x61B0\n0x9196\t0x61B1\n0x9197\t0x61B2\n0x9198\t0x61B3\n0x9199\t0x61B4\n0x919A\t0x61B5\n0x919B\t0x61B6\n0x919C\t0x61B8\n0x919D\t0x61B9\n0x919E\t0x61BA\n0x919F\t0x61BB\n0x91A0\t0x61BC\n0x91A1\t0x61BD\n0x91A2\t0x61BF\n0x91A3\t0x61C0\n0x91A4\t0x61C1\n0x91A5\t0x61C3\n0x91A6\t0x61C4\n0x91A7\t0x61C5\n0x91A8\t0x61C6\n0x91A9\t0x61C7\n0x91AA\t0x61C9\n0x91AB\t0x61CC\n0x91AC\t0x61CD\n0x91AD\t0x61CE\n0x91AE\t0x61CF\n0x91AF\t0x61D0\n0x91B0\t0x61D3\n0x91B1\t0x61D5\n0x91B2\t0x61D6\n0x91B3\t0x61D7\n0x91B4\t0x61D8\n0x91B5\t0x61D9\n0x91B6\t0x61DA\n0x91B7\t0x61DB\n0x91B8\t0x61DC\n0x91B9\t0x61DD\n0x91BA\t0x61DE\n0x91BB\t0x61DF\n0x91BC\t0x61E0\n0x91BD\t0x61E1\n0x91BE\t0x61E2\n0x91BF\t0x61E3\n0x91C0\t0x61E4\n0x91C1\t0x61E5\n0x91C2\t0x61E7\n0x91C3\t0x61E8\n0x91C4\t0x61E9\n0x91C5\t0x61EA\n0x91C6\t0x61EB\n0x91C7\t0x61EC\n0x91C8\t0x61ED\n0x91C9\t0x61EE\n0x91CA\t0x61EF\n0x91CB\t0x61F0\n0x91CC\t0x61F1\n0x91CD\t0x61F2\n0x91CE\t0x61F3\n0x91CF\t0x61F4\n0x91D0\t0x61F6\n0x91D1\t0x61F7\n0x91D2\t0x61F8\n0x91D3\t0x61F9\n0x91D4\t0x61FA\n0x91D5\t0x61FB\n0x91D6\t0x61FC\n0x91D7\t0x61FD\n0x91D8\t0x61FE\n0x91D9\t0x6200\n0x91DA\t0x6201\n0x91DB\t0x6202\n0x91DC\t0x6203\n0x91DD\t0x6204\n0x91DE\t0x6205\n0x91DF\t0x6207\n0x91E0\t0x6209\n0x91E1\t0x6213\n0x91E2\t0x6214\n0x91E3\t0x6219\n0x91E4\t0x621C\n0x91E5\t0x621D\n0x91E6\t0x621E\n0x91E7\t0x6220\n0x91E8\t0x6223\n0x91E9\t0x6226\n0x91EA\t0x6227\n0x91EB\t0x6228\n0x91EC\t0x6229\n0x91ED\t0x622B\n0x91EE\t0x622D\n0x91EF\t0x622F\n0x91F0\t0x6230\n0x91F1\t0x6231\n0x91F2\t0x6232\n0x91F3\t0x6235\n0x91F4\t0x6236\n0x91F5\t0x6238\n0x91F6\t0x6239\n0x91F7\t0x623A\n0x91F8\t0x623B\n0x91F9\t0x623C\n0x91FA\t0x6242\n0x91FB\t0x6244\n0x91FC\t0x6245\n0x91FD\t0x6246\n0x91FE\t0x624A\n0x9240\t0x624F\n0x9241\t0x6250\n0x9242\t0x6255\n0x9243\t0x6256\n0x9244\t0x6257\n0x9245\t0x6259\n0x9246\t0x625A\n0x9247\t0x625C\n0x9248\t0x625D\n0x9249\t0x625E\n0x924A\t0x625F\n0x924B\t0x6260\n0x924C\t0x6261\n0x924D\t0x6262\n0x924E\t0x6264\n0x924F\t0x6265\n0x9250\t0x6268\n0x9251\t0x6271\n0x9252\t0x6272\n0x9253\t0x6274\n0x9254\t0x6275\n0x9255\t0x6277\n0x9256\t0x6278\n0x9257\t0x627A\n0x9258\t0x627B\n0x9259\t0x627D\n0x925A\t0x6281\n0x925B\t0x6282\n0x925C\t0x6283\n0x925D\t0x6285\n0x925E\t0x6286\n0x925F\t0x6287\n0x9260\t0x6288\n0x9261\t0x628B\n0x9262\t0x628C\n0x9263\t0x628D\n0x9264\t0x628E\n0x9265\t0x628F\n0x9266\t0x6290\n0x9267\t0x6294\n0x9268\t0x6299\n0x9269\t0x629C\n0x926A\t0x629D\n0x926B\t0x629E\n0x926C\t0x62A3\n0x926D\t0x62A6\n0x926E\t0x62A7\n0x926F\t0x62A9\n0x9270\t0x62AA\n0x9271\t0x62AD\n0x9272\t0x62AE\n0x9273\t0x62AF\n0x9274\t0x62B0\n0x9275\t0x62B2\n0x9276\t0x62B3\n0x9277\t0x62B4\n0x9278\t0x62B6\n0x9279\t0x62B7\n0x927A\t0x62B8\n0x927B\t0x62BA\n0x927C\t0x62BE\n0x927D\t0x62C0\n0x927E\t0x62C1\n0x9280\t0x62C3\n0x9281\t0x62CB\n0x9282\t0x62CF\n0x9283\t0x62D1\n0x9284\t0x62D5\n0x9285\t0x62DD\n0x9286\t0x62DE\n0x9287\t0x62E0\n0x9288\t0x62E1\n0x9289\t0x62E4\n0x928A\t0x62EA\n0x928B\t0x62EB\n0x928C\t0x62F0\n0x928D\t0x62F2\n0x928E\t0x62F5\n0x928F\t0x62F8\n0x9290\t0x62F9\n0x9291\t0x62FA\n0x9292\t0x62FB\n0x9293\t0x6300\n0x9294\t0x6303\n0x9295\t0x6304\n0x9296\t0x6305\n0x9297\t0x6306\n0x9298\t0x630A\n0x9299\t0x630B\n0x929A\t0x630C\n0x929B\t0x630D\n0x929C\t0x630F\n0x929D\t0x6310\n0x929E\t0x6312\n0x929F\t0x6313\n0x92A0\t0x6314\n0x92A1\t0x6315\n0x92A2\t0x6317\n0x92A3\t0x6318\n0x92A4\t0x6319\n0x92A5\t0x631C\n0x92A6\t0x6326\n0x92A7\t0x6327\n0x92A8\t0x6329\n0x92A9\t0x632C\n0x92AA\t0x632D\n0x92AB\t0x632E\n0x92AC\t0x6330\n0x92AD\t0x6331\n0x92AE\t0x6333\n0x92AF\t0x6334\n0x92B0\t0x6335\n0x92B1\t0x6336\n0x92B2\t0x6337\n0x92B3\t0x6338\n0x92B4\t0x633B\n0x92B5\t0x633C\n0x92B6\t0x633E\n0x92B7\t0x633F\n0x92B8\t0x6340\n0x92B9\t0x6341\n0x92BA\t0x6344\n0x92BB\t0x6347\n0x92BC\t0x6348\n0x92BD\t0x634A\n0x92BE\t0x6351\n0x92BF\t0x6352\n0x92C0\t0x6353\n0x92C1\t0x6354\n0x92C2\t0x6356\n0x92C3\t0x6357\n0x92C4\t0x6358\n0x92C5\t0x6359\n0x92C6\t0x635A\n0x92C7\t0x635B\n0x92C8\t0x635C\n0x92C9\t0x635D\n0x92CA\t0x6360\n0x92CB\t0x6364\n0x92CC\t0x6365\n0x92CD\t0x6366\n0x92CE\t0x6368\n0x92CF\t0x636A\n0x92D0\t0x636B\n0x92D1\t0x636C\n0x92D2\t0x636F\n0x92D3\t0x6370\n0x92D4\t0x6372\n0x92D5\t0x6373\n0x92D6\t0x6374\n0x92D7\t0x6375\n0x92D8\t0x6378\n0x92D9\t0x6379\n0x92DA\t0x637C\n0x92DB\t0x637D\n0x92DC\t0x637E\n0x92DD\t0x637F\n0x92DE\t0x6381\n0x92DF\t0x6383\n0x92E0\t0x6384\n0x92E1\t0x6385\n0x92E2\t0x6386\n0x92E3\t0x638B\n0x92E4\t0x638D\n0x92E5\t0x6391\n0x92E6\t0x6393\n0x92E7\t0x6394\n0x92E8\t0x6395\n0x92E9\t0x6397\n0x92EA\t0x6399\n0x92EB\t0x639A\n0x92EC\t0x639B\n0x92ED\t0x639C\n0x92EE\t0x639D\n0x92EF\t0x639E\n0x92F0\t0x639F\n0x92F1\t0x63A1\n0x92F2\t0x63A4\n0x92F3\t0x63A6\n0x92F4\t0x63AB\n0x92F5\t0x63AF\n0x92F6\t0x63B1\n0x92F7\t0x63B2\n0x92F8\t0x63B5\n0x92F9\t0x63B6\n0x92FA\t0x63B9\n0x92FB\t0x63BB\n0x92FC\t0x63BD\n0x92FD\t0x63BF\n0x92FE\t0x63C0\n0x9340\t0x63C1\n0x9341\t0x63C2\n0x9342\t0x63C3\n0x9343\t0x63C5\n0x9344\t0x63C7\n0x9345\t0x63C8\n0x9346\t0x63CA\n0x9347\t0x63CB\n0x9348\t0x63CC\n0x9349\t0x63D1\n0x934A\t0x63D3\n0x934B\t0x63D4\n0x934C\t0x63D5\n0x934D\t0x63D7\n0x934E\t0x63D8\n0x934F\t0x63D9\n0x9350\t0x63DA\n0x9351\t0x63DB\n0x9352\t0x63DC\n0x9353\t0x63DD\n0x9354\t0x63DF\n0x9355\t0x63E2\n0x9356\t0x63E4\n0x9357\t0x63E5\n0x9358\t0x63E6\n0x9359\t0x63E7\n0x935A\t0x63E8\n0x935B\t0x63EB\n0x935C\t0x63EC\n0x935D\t0x63EE\n0x935E\t0x63EF\n0x935F\t0x63F0\n0x9360\t0x63F1\n0x9361\t0x63F3\n0x9362\t0x63F5\n0x9363\t0x63F7\n0x9364\t0x63F9\n0x9365\t0x63FA\n0x9366\t0x63FB\n0x9367\t0x63FC\n0x9368\t0x63FE\n0x9369\t0x6403\n0x936A\t0x6404\n0x936B\t0x6406\n0x936C\t0x6407\n0x936D\t0x6408\n0x936E\t0x6409\n0x936F\t0x640A\n0x9370\t0x640D\n0x9371\t0x640E\n0x9372\t0x6411\n0x9373\t0x6412\n0x9374\t0x6415\n0x9375\t0x6416\n0x9376\t0x6417\n0x9377\t0x6418\n0x9378\t0x6419\n0x9379\t0x641A\n0x937A\t0x641D\n0x937B\t0x641F\n0x937C\t0x6422\n0x937D\t0x6423\n0x937E\t0x6424\n0x9380\t0x6425\n0x9381\t0x6427\n0x9382\t0x6428\n0x9383\t0x6429\n0x9384\t0x642B\n0x9385\t0x642E\n0x9386\t0x642F\n0x9387\t0x6430\n0x9388\t0x6431\n0x9389\t0x6432\n0x938A\t0x6433\n0x938B\t0x6435\n0x938C\t0x6436\n0x938D\t0x6437\n0x938E\t0x6438\n0x938F\t0x6439\n0x9390\t0x643B\n0x9391\t0x643C\n0x9392\t0x643E\n0x9393\t0x6440\n0x9394\t0x6442\n0x9395\t0x6443\n0x9396\t0x6449\n0x9397\t0x644B\n0x9398\t0x644C\n0x9399\t0x644D\n0x939A\t0x644E\n0x939B\t0x644F\n0x939C\t0x6450\n0x939D\t0x6451\n0x939E\t0x6453\n0x939F\t0x6455\n0x93A0\t0x6456\n0x93A1\t0x6457\n0x93A2\t0x6459\n0x93A3\t0x645A\n0x93A4\t0x645B\n0x93A5\t0x645C\n0x93A6\t0x645D\n0x93A7\t0x645F\n0x93A8\t0x6460\n0x93A9\t0x6461\n0x93AA\t0x6462\n0x93AB\t0x6463\n0x93AC\t0x6464\n0x93AD\t0x6465\n0x93AE\t0x6466\n0x93AF\t0x6468\n0x93B0\t0x646A\n0x93B1\t0x646B\n0x93B2\t0x646C\n0x93B3\t0x646E\n0x93B4\t0x646F\n0x93B5\t0x6470\n0x93B6\t0x6471\n0x93B7\t0x6472\n0x93B8\t0x6473\n0x93B9\t0x6474\n0x93BA\t0x6475\n0x93BB\t0x6476\n0x93BC\t0x6477\n0x93BD\t0x647B\n0x93BE\t0x647C\n0x93BF\t0x647D\n0x93C0\t0x647E\n0x93C1\t0x647F\n0x93C2\t0x6480\n0x93C3\t0x6481\n0x93C4\t0x6483\n0x93C5\t0x6486\n0x93C6\t0x6488\n0x93C7\t0x6489\n0x93C8\t0x648A\n0x93C9\t0x648B\n0x93CA\t0x648C\n0x93CB\t0x648D\n0x93CC\t0x648E\n0x93CD\t0x648F\n0x93CE\t0x6490\n0x93CF\t0x6493\n0x93D0\t0x6494\n0x93D1\t0x6497\n0x93D2\t0x6498\n0x93D3\t0x649A\n0x93D4\t0x649B\n0x93D5\t0x649C\n0x93D6\t0x649D\n0x93D7\t0x649F\n0x93D8\t0x64A0\n0x93D9\t0x64A1\n0x93DA\t0x64A2\n0x93DB\t0x64A3\n0x93DC\t0x64A5\n0x93DD\t0x64A6\n0x93DE\t0x64A7\n0x93DF\t0x64A8\n0x93E0\t0x64AA\n0x93E1\t0x64AB\n0x93E2\t0x64AF\n0x93E3\t0x64B1\n0x93E4\t0x64B2\n0x93E5\t0x64B3\n0x93E6\t0x64B4\n0x93E7\t0x64B6\n0x93E8\t0x64B9\n0x93E9\t0x64BB\n0x93EA\t0x64BD\n0x93EB\t0x64BE\n0x93EC\t0x64BF\n0x93ED\t0x64C1\n0x93EE\t0x64C3\n0x93EF\t0x64C4\n0x93F0\t0x64C6\n0x93F1\t0x64C7\n0x93F2\t0x64C8\n0x93F3\t0x64C9\n0x93F4\t0x64CA\n0x93F5\t0x64CB\n0x93F6\t0x64CC\n0x93F7\t0x64CF\n0x93F8\t0x64D1\n0x93F9\t0x64D3\n0x93FA\t0x64D4\n0x93FB\t0x64D5\n0x93FC\t0x64D6\n0x93FD\t0x64D9\n0x93FE\t0x64DA\n0x9440\t0x64DB\n0x9441\t0x64DC\n0x9442\t0x64DD\n0x9443\t0x64DF\n0x9444\t0x64E0\n0x9445\t0x64E1\n0x9446\t0x64E3\n0x9447\t0x64E5\n0x9448\t0x64E7\n0x9449\t0x64E8\n0x944A\t0x64E9\n0x944B\t0x64EA\n0x944C\t0x64EB\n0x944D\t0x64EC\n0x944E\t0x64ED\n0x944F\t0x64EE\n0x9450\t0x64EF\n0x9451\t0x64F0\n0x9452\t0x64F1\n0x9453\t0x64F2\n0x9454\t0x64F3\n0x9455\t0x64F4\n0x9456\t0x64F5\n0x9457\t0x64F6\n0x9458\t0x64F7\n0x9459\t0x64F8\n0x945A\t0x64F9\n0x945B\t0x64FA\n0x945C\t0x64FB\n0x945D\t0x64FC\n0x945E\t0x64FD\n0x945F\t0x64FE\n0x9460\t0x64FF\n0x9461\t0x6501\n0x9462\t0x6502\n0x9463\t0x6503\n0x9464\t0x6504\n0x9465\t0x6505\n0x9466\t0x6506\n0x9467\t0x6507\n0x9468\t0x6508\n0x9469\t0x650A\n0x946A\t0x650B\n0x946B\t0x650C\n0x946C\t0x650D\n0x946D\t0x650E\n0x946E\t0x650F\n0x946F\t0x6510\n0x9470\t0x6511\n0x9471\t0x6513\n0x9472\t0x6514\n0x9473\t0x6515\n0x9474\t0x6516\n0x9475\t0x6517\n0x9476\t0x6519\n0x9477\t0x651A\n0x9478\t0x651B\n0x9479\t0x651C\n0x947A\t0x651D\n0x947B\t0x651E\n0x947C\t0x651F\n0x947D\t0x6520\n0x947E\t0x6521\n0x9480\t0x6522\n0x9481\t0x6523\n0x9482\t0x6524\n0x9483\t0x6526\n0x9484\t0x6527\n0x9485\t0x6528\n0x9486\t0x6529\n0x9487\t0x652A\n0x9488\t0x652C\n0x9489\t0x652D\n0x948A\t0x6530\n0x948B\t0x6531\n0x948C\t0x6532\n0x948D\t0x6533\n0x948E\t0x6537\n0x948F\t0x653A\n0x9490\t0x653C\n0x9491\t0x653D\n0x9492\t0x6540\n0x9493\t0x6541\n0x9494\t0x6542\n0x9495\t0x6543\n0x9496\t0x6544\n0x9497\t0x6546\n0x9498\t0x6547\n0x9499\t0x654A\n0x949A\t0x654B\n0x949B\t0x654D\n0x949C\t0x654E\n0x949D\t0x6550\n0x949E\t0x6552\n0x949F\t0x6553\n0x94A0\t0x6554\n0x94A1\t0x6557\n0x94A2\t0x6558\n0x94A3\t0x655A\n0x94A4\t0x655C\n0x94A5\t0x655F\n0x94A6\t0x6560\n0x94A7\t0x6561\n0x94A8\t0x6564\n0x94A9\t0x6565\n0x94AA\t0x6567\n0x94AB\t0x6568\n0x94AC\t0x6569\n0x94AD\t0x656A\n0x94AE\t0x656D\n0x94AF\t0x656E\n0x94B0\t0x656F\n0x94B1\t0x6571\n0x94B2\t0x6573\n0x94B3\t0x6575\n0x94B4\t0x6576\n0x94B5\t0x6578\n0x94B6\t0x6579\n0x94B7\t0x657A\n0x94B8\t0x657B\n0x94B9\t0x657C\n0x94BA\t0x657D\n0x94BB\t0x657E\n0x94BC\t0x657F\n0x94BD\t0x6580\n0x94BE\t0x6581\n0x94BF\t0x6582\n0x94C0\t0x6583\n0x94C1\t0x6584\n0x94C2\t0x6585\n0x94C3\t0x6586\n0x94C4\t0x6588\n0x94C5\t0x6589\n0x94C6\t0x658A\n0x94C7\t0x658D\n0x94C8\t0x658E\n0x94C9\t0x658F\n0x94CA\t0x6592\n0x94CB\t0x6594\n0x94CC\t0x6595\n0x94CD\t0x6596\n0x94CE\t0x6598\n0x94CF\t0x659A\n0x94D0\t0x659D\n0x94D1\t0x659E\n0x94D2\t0x65A0\n0x94D3\t0x65A2\n0x94D4\t0x65A3\n0x94D5\t0x65A6\n0x94D6\t0x65A8\n0x94D7\t0x65AA\n0x94D8\t0x65AC\n0x94D9\t0x65AE\n0x94DA\t0x65B1\n0x94DB\t0x65B2\n0x94DC\t0x65B3\n0x94DD\t0x65B4\n0x94DE\t0x65B5\n0x94DF\t0x65B6\n0x94E0\t0x65B7\n0x94E1\t0x65B8\n0x94E2\t0x65BA\n0x94E3\t0x65BB\n0x94E4\t0x65BE\n0x94E5\t0x65BF\n0x94E6\t0x65C0\n0x94E7\t0x65C2\n0x94E8\t0x65C7\n0x94E9\t0x65C8\n0x94EA\t0x65C9\n0x94EB\t0x65CA\n0x94EC\t0x65CD\n0x94ED\t0x65D0\n0x94EE\t0x65D1\n0x94EF\t0x65D3\n0x94F0\t0x65D4\n0x94F1\t0x65D5\n0x94F2\t0x65D8\n0x94F3\t0x65D9\n0x94F4\t0x65DA\n0x94F5\t0x65DB\n0x94F6\t0x65DC\n0x94F7\t0x65DD\n0x94F8\t0x65DE\n0x94F9\t0x65DF\n0x94FA\t0x65E1\n0x94FB\t0x65E3\n0x94FC\t0x65E4\n0x94FD\t0x65EA\n0x94FE\t0x65EB\n0x9540\t0x65F2\n0x9541\t0x65F3\n0x9542\t0x65F4\n0x9543\t0x65F5\n0x9544\t0x65F8\n0x9545\t0x65F9\n0x9546\t0x65FB\n0x9547\t0x65FC\n0x9548\t0x65FD\n0x9549\t0x65FE\n0x954A\t0x65FF\n0x954B\t0x6601\n0x954C\t0x6604\n0x954D\t0x6605\n0x954E\t0x6607\n0x954F\t0x6608\n0x9550\t0x6609\n0x9551\t0x660B\n0x9552\t0x660D\n0x9553\t0x6610\n0x9554\t0x6611\n0x9555\t0x6612\n0x9556\t0x6616\n0x9557\t0x6617\n0x9558\t0x6618\n0x9559\t0x661A\n0x955A\t0x661B\n0x955B\t0x661C\n0x955C\t0x661E\n0x955D\t0x6621\n0x955E\t0x6622\n0x955F\t0x6623\n0x9560\t0x6624\n0x9561\t0x6626\n0x9562\t0x6629\n0x9563\t0x662A\n0x9564\t0x662B\n0x9565\t0x662C\n0x9566\t0x662E\n0x9567\t0x6630\n0x9568\t0x6632\n0x9569\t0x6633\n0x956A\t0x6637\n0x956B\t0x6638\n0x956C\t0x6639\n0x956D\t0x663A\n0x956E\t0x663B\n0x956F\t0x663D\n0x9570\t0x663F\n0x9571\t0x6640\n0x9572\t0x6642\n0x9573\t0x6644\n0x9574\t0x6645\n0x9575\t0x6646\n0x9576\t0x6647\n0x9577\t0x6648\n0x9578\t0x6649\n0x9579\t0x664A\n0x957A\t0x664D\n0x957B\t0x664E\n0x957C\t0x6650\n0x957D\t0x6651\n0x957E\t0x6658\n0x9580\t0x6659\n0x9581\t0x665B\n0x9582\t0x665C\n0x9583\t0x665D\n0x9584\t0x665E\n0x9585\t0x6660\n0x9586\t0x6662\n0x9587\t0x6663\n0x9588\t0x6665\n0x9589\t0x6667\n0x958A\t0x6669\n0x958B\t0x666A\n0x958C\t0x666B\n0x958D\t0x666C\n0x958E\t0x666D\n0x958F\t0x6671\n0x9590\t0x6672\n0x9591\t0x6673\n0x9592\t0x6675\n0x9593\t0x6678\n0x9594\t0x6679\n0x9595\t0x667B\n0x9596\t0x667C\n0x9597\t0x667D\n0x9598\t0x667F\n0x9599\t0x6680\n0x959A\t0x6681\n0x959B\t0x6683\n0x959C\t0x6685\n0x959D\t0x6686\n0x959E\t0x6688\n0x959F\t0x6689\n0x95A0\t0x668A\n0x95A1\t0x668B\n0x95A2\t0x668D\n0x95A3\t0x668E\n0x95A4\t0x668F\n0x95A5\t0x6690\n0x95A6\t0x6692\n0x95A7\t0x6693\n0x95A8\t0x6694\n0x95A9\t0x6695\n0x95AA\t0x6698\n0x95AB\t0x6699\n0x95AC\t0x669A\n0x95AD\t0x669B\n0x95AE\t0x669C\n0x95AF\t0x669E\n0x95B0\t0x669F\n0x95B1\t0x66A0\n0x95B2\t0x66A1\n0x95B3\t0x66A2\n0x95B4\t0x66A3\n0x95B5\t0x66A4\n0x95B6\t0x66A5\n0x95B7\t0x66A6\n0x95B8\t0x66A9\n0x95B9\t0x66AA\n0x95BA\t0x66AB\n0x95BB\t0x66AC\n0x95BC\t0x66AD\n0x95BD\t0x66AF\n0x95BE\t0x66B0\n0x95BF\t0x66B1\n0x95C0\t0x66B2\n0x95C1\t0x66B3\n0x95C2\t0x66B5\n0x95C3\t0x66B6\n0x95C4\t0x66B7\n0x95C5\t0x66B8\n0x95C6\t0x66BA\n0x95C7\t0x66BB\n0x95C8\t0x66BC\n0x95C9\t0x66BD\n0x95CA\t0x66BF\n0x95CB\t0x66C0\n0x95CC\t0x66C1\n0x95CD\t0x66C2\n0x95CE\t0x66C3\n0x95CF\t0x66C4\n0x95D0\t0x66C5\n0x95D1\t0x66C6\n0x95D2\t0x66C7\n0x95D3\t0x66C8\n0x95D4\t0x66C9\n0x95D5\t0x66CA\n0x95D6\t0x66CB\n0x95D7\t0x66CC\n0x95D8\t0x66CD\n0x95D9\t0x66CE\n0x95DA\t0x66CF\n0x95DB\t0x66D0\n0x95DC\t0x66D1\n0x95DD\t0x66D2\n0x95DE\t0x66D3\n0x95DF\t0x66D4\n0x95E0\t0x66D5\n0x95E1\t0x66D6\n0x95E2\t0x66D7\n0x95E3\t0x66D8\n0x95E4\t0x66DA\n0x95E5\t0x66DE\n0x95E6\t0x66DF\n0x95E7\t0x66E0\n0x95E8\t0x66E1\n0x95E9\t0x66E2\n0x95EA\t0x66E3\n0x95EB\t0x66E4\n0x95EC\t0x66E5\n0x95ED\t0x66E7\n0x95EE\t0x66E8\n0x95EF\t0x66EA\n0x95F0\t0x66EB\n0x95F1\t0x66EC\n0x95F2\t0x66ED\n0x95F3\t0x66EE\n0x95F4\t0x66EF\n0x95F5\t0x66F1\n0x95F6\t0x66F5\n0x95F7\t0x66F6\n0x95F8\t0x66F8\n0x95F9\t0x66FA\n0x95FA\t0x66FB\n0x95FB\t0x66FD\n0x95FC\t0x6701\n0x95FD\t0x6702\n0x95FE\t0x6703\n0x9640\t0x6704\n0x9641\t0x6705\n0x9642\t0x6706\n0x9643\t0x6707\n0x9644\t0x670C\n0x9645\t0x670E\n0x9646\t0x670F\n0x9647\t0x6711\n0x9648\t0x6712\n0x9649\t0x6713\n0x964A\t0x6716\n0x964B\t0x6718\n0x964C\t0x6719\n0x964D\t0x671A\n0x964E\t0x671C\n0x964F\t0x671E\n0x9650\t0x6720\n0x9651\t0x6721\n0x9652\t0x6722\n0x9653\t0x6723\n0x9654\t0x6724\n0x9655\t0x6725\n0x9656\t0x6727\n0x9657\t0x6729\n0x9658\t0x672E\n0x9659\t0x6730\n0x965A\t0x6732\n0x965B\t0x6733\n0x965C\t0x6736\n0x965D\t0x6737\n0x965E\t0x6738\n0x965F\t0x6739\n0x9660\t0x673B\n0x9661\t0x673C\n0x9662\t0x673E\n0x9663\t0x673F\n0x9664\t0x6741\n0x9665\t0x6744\n0x9666\t0x6745\n0x9667\t0x6747\n0x9668\t0x674A\n0x9669\t0x674B\n0x966A\t0x674D\n0x966B\t0x6752\n0x966C\t0x6754\n0x966D\t0x6755\n0x966E\t0x6757\n0x966F\t0x6758\n0x9670\t0x6759\n0x9671\t0x675A\n0x9672\t0x675B\n0x9673\t0x675D\n0x9674\t0x6762\n0x9675\t0x6763\n0x9676\t0x6764\n0x9677\t0x6766\n0x9678\t0x6767\n0x9679\t0x676B\n0x967A\t0x676C\n0x967B\t0x676E\n0x967C\t0x6771\n0x967D\t0x6774\n0x967E\t0x6776\n0x9680\t0x6778\n0x9681\t0x6779\n0x9682\t0x677A\n0x9683\t0x677B\n0x9684\t0x677D\n0x9685\t0x6780\n0x9686\t0x6782\n0x9687\t0x6783\n0x9688\t0x6785\n0x9689\t0x6786\n0x968A\t0x6788\n0x968B\t0x678A\n0x968C\t0x678C\n0x968D\t0x678D\n0x968E\t0x678E\n0x968F\t0x678F\n0x9690\t0x6791\n0x9691\t0x6792\n0x9692\t0x6793\n0x9693\t0x6794\n0x9694\t0x6796\n0x9695\t0x6799\n0x9696\t0x679B\n0x9697\t0x679F\n0x9698\t0x67A0\n0x9699\t0x67A1\n0x969A\t0x67A4\n0x969B\t0x67A6\n0x969C\t0x67A9\n0x969D\t0x67AC\n0x969E\t0x67AE\n0x969F\t0x67B1\n0x96A0\t0x67B2\n0x96A1\t0x67B4\n0x96A2\t0x67B9\n0x96A3\t0x67BA\n0x96A4\t0x67BB\n0x96A5\t0x67BC\n0x96A6\t0x67BD\n0x96A7\t0x67BE\n0x96A8\t0x67BF\n0x96A9\t0x67C0\n0x96AA\t0x67C2\n0x96AB\t0x67C5\n0x96AC\t0x67C6\n0x96AD\t0x67C7\n0x96AE\t0x67C8\n0x96AF\t0x67C9\n0x96B0\t0x67CA\n0x96B1\t0x67CB\n0x96B2\t0x67CC\n0x96B3\t0x67CD\n0x96B4\t0x67CE\n0x96B5\t0x67D5\n0x96B6\t0x67D6\n0x96B7\t0x67D7\n0x96B8\t0x67DB\n0x96B9\t0x67DF\n0x96BA\t0x67E1\n0x96BB\t0x67E3\n0x96BC\t0x67E4\n0x96BD\t0x67E6\n0x96BE\t0x67E7\n0x96BF\t0x67E8\n0x96C0\t0x67EA\n0x96C1\t0x67EB\n0x96C2\t0x67ED\n0x96C3\t0x67EE\n0x96C4\t0x67F2\n0x96C5\t0x67F5\n0x96C6\t0x67F6\n0x96C7\t0x67F7\n0x96C8\t0x67F8\n0x96C9\t0x67F9\n0x96CA\t0x67FA\n0x96CB\t0x67FB\n0x96CC\t0x67FC\n0x96CD\t0x67FE\n0x96CE\t0x6801\n0x96CF\t0x6802\n0x96D0\t0x6803\n0x96D1\t0x6804\n0x96D2\t0x6806\n0x96D3\t0x680D\n0x96D4\t0x6810\n0x96D5\t0x6812\n0x96D6\t0x6814\n0x96D7\t0x6815\n0x96D8\t0x6818\n0x96D9\t0x6819\n0x96DA\t0x681A\n0x96DB\t0x681B\n0x96DC\t0x681C\n0x96DD\t0x681E\n0x96DE\t0x681F\n0x96DF\t0x6820\n0x96E0\t0x6822\n0x96E1\t0x6823\n0x96E2\t0x6824\n0x96E3\t0x6825\n0x96E4\t0x6826\n0x96E5\t0x6827\n0x96E6\t0x6828\n0x96E7\t0x682B\n0x96E8\t0x682C\n0x96E9\t0x682D\n0x96EA\t0x682E\n0x96EB\t0x682F\n0x96EC\t0x6830\n0x96ED\t0x6831\n0x96EE\t0x6834\n0x96EF\t0x6835\n0x96F0\t0x6836\n0x96F1\t0x683A\n0x96F2\t0x683B\n0x96F3\t0x683F\n0x96F4\t0x6847\n0x96F5\t0x684B\n0x96F6\t0x684D\n0x96F7\t0x684F\n0x96F8\t0x6852\n0x96F9\t0x6856\n0x96FA\t0x6857\n0x96FB\t0x6858\n0x96FC\t0x6859\n0x96FD\t0x685A\n0x96FE\t0x685B\n0x9740\t0x685C\n0x9741\t0x685D\n0x9742\t0x685E\n0x9743\t0x685F\n0x9744\t0x686A\n0x9745\t0x686C\n0x9746\t0x686D\n0x9747\t0x686E\n0x9748\t0x686F\n0x9749\t0x6870\n0x974A\t0x6871\n0x974B\t0x6872\n0x974C\t0x6873\n0x974D\t0x6875\n0x974E\t0x6878\n0x974F\t0x6879\n0x9750\t0x687A\n0x9751\t0x687B\n0x9752\t0x687C\n0x9753\t0x687D\n0x9754\t0x687E\n0x9755\t0x687F\n0x9756\t0x6880\n0x9757\t0x6882\n0x9758\t0x6884\n0x9759\t0x6887\n0x975A\t0x6888\n0x975B\t0x6889\n0x975C\t0x688A\n0x975D\t0x688B\n0x975E\t0x688C\n0x975F\t0x688D\n0x9760\t0x688E\n0x9761\t0x6890\n0x9762\t0x6891\n0x9763\t0x6892\n0x9764\t0x6894\n0x9765\t0x6895\n0x9766\t0x6896\n0x9767\t0x6898\n0x9768\t0x6899\n0x9769\t0x689A\n0x976A\t0x689B\n0x976B\t0x689C\n0x976C\t0x689D\n0x976D\t0x689E\n0x976E\t0x689F\n0x976F\t0x68A0\n0x9770\t0x68A1\n0x9771\t0x68A3\n0x9772\t0x68A4\n0x9773\t0x68A5\n0x9774\t0x68A9\n0x9775\t0x68AA\n0x9776\t0x68AB\n0x9777\t0x68AC\n0x9778\t0x68AE\n0x9779\t0x68B1\n0x977A\t0x68B2\n0x977B\t0x68B4\n0x977C\t0x68B6\n0x977D\t0x68B7\n0x977E\t0x68B8\n0x9780\t0x68B9\n0x9781\t0x68BA\n0x9782\t0x68BB\n0x9783\t0x68BC\n0x9784\t0x68BD\n0x9785\t0x68BE\n0x9786\t0x68BF\n0x9787\t0x68C1\n0x9788\t0x68C3\n0x9789\t0x68C4\n0x978A\t0x68C5\n0x978B\t0x68C6\n0x978C\t0x68C7\n0x978D\t0x68C8\n0x978E\t0x68CA\n0x978F\t0x68CC\n0x9790\t0x68CE\n0x9791\t0x68CF\n0x9792\t0x68D0\n0x9793\t0x68D1\n0x9794\t0x68D3\n0x9795\t0x68D4\n0x9796\t0x68D6\n0x9797\t0x68D7\n0x9798\t0x68D9\n0x9799\t0x68DB\n0x979A\t0x68DC\n0x979B\t0x68DD\n0x979C\t0x68DE\n0x979D\t0x68DF\n0x979E\t0x68E1\n0x979F\t0x68E2\n0x97A0\t0x68E4\n0x97A1\t0x68E5\n0x97A2\t0x68E6\n0x97A3\t0x68E7\n0x97A4\t0x68E8\n0x97A5\t0x68E9\n0x97A6\t0x68EA\n0x97A7\t0x68EB\n0x97A8\t0x68EC\n0x97A9\t0x68ED\n0x97AA\t0x68EF\n0x97AB\t0x68F2\n0x97AC\t0x68F3\n0x97AD\t0x68F4\n0x97AE\t0x68F6\n0x97AF\t0x68F7\n0x97B0\t0x68F8\n0x97B1\t0x68FB\n0x97B2\t0x68FD\n0x97B3\t0x68FE\n0x97B4\t0x68FF\n0x97B5\t0x6900\n0x97B6\t0x6902\n0x97B7\t0x6903\n0x97B8\t0x6904\n0x97B9\t0x6906\n0x97BA\t0x6907\n0x97BB\t0x6908\n0x97BC\t0x6909\n0x97BD\t0x690A\n0x97BE\t0x690C\n0x97BF\t0x690F\n0x97C0\t0x6911\n0x97C1\t0x6913\n0x97C2\t0x6914\n0x97C3\t0x6915\n0x97C4\t0x6916\n0x97C5\t0x6917\n0x97C6\t0x6918\n0x97C7\t0x6919\n0x97C8\t0x691A\n0x97C9\t0x691B\n0x97CA\t0x691C\n0x97CB\t0x691D\n0x97CC\t0x691E\n0x97CD\t0x6921\n0x97CE\t0x6922\n0x97CF\t0x6923\n0x97D0\t0x6925\n0x97D1\t0x6926\n0x97D2\t0x6927\n0x97D3\t0x6928\n0x97D4\t0x6929\n0x97D5\t0x692A\n0x97D6\t0x692B\n0x97D7\t0x692C\n0x97D8\t0x692E\n0x97D9\t0x692F\n0x97DA\t0x6931\n0x97DB\t0x6932\n0x97DC\t0x6933\n0x97DD\t0x6935\n0x97DE\t0x6936\n0x97DF\t0x6937\n0x97E0\t0x6938\n0x97E1\t0x693A\n0x97E2\t0x693B\n0x97E3\t0x693C\n0x97E4\t0x693E\n0x97E5\t0x6940\n0x97E6\t0x6941\n0x97E7\t0x6943\n0x97E8\t0x6944\n0x97E9\t0x6945\n0x97EA\t0x6946\n0x97EB\t0x6947\n0x97EC\t0x6948\n0x97ED\t0x6949\n0x97EE\t0x694A\n0x97EF\t0x694B\n0x97F0\t0x694C\n0x97F1\t0x694D\n0x97F2\t0x694E\n0x97F3\t0x694F\n0x97F4\t0x6950\n0x97F5\t0x6951\n0x97F6\t0x6952\n0x97F7\t0x6953\n0x97F8\t0x6955\n0x97F9\t0x6956\n0x97FA\t0x6958\n0x97FB\t0x6959\n0x97FC\t0x695B\n0x97FD\t0x695C\n0x97FE\t0x695F\n0x9840\t0x6961\n0x9841\t0x6962\n0x9842\t0x6964\n0x9843\t0x6965\n0x9844\t0x6967\n0x9845\t0x6968\n0x9846\t0x6969\n0x9847\t0x696A\n0x9848\t0x696C\n0x9849\t0x696D\n0x984A\t0x696F\n0x984B\t0x6970\n0x984C\t0x6972\n0x984D\t0x6973\n0x984E\t0x6974\n0x984F\t0x6975\n0x9850\t0x6976\n0x9851\t0x697A\n0x9852\t0x697B\n0x9853\t0x697D\n0x9854\t0x697E\n0x9855\t0x697F\n0x9856\t0x6981\n0x9857\t0x6983\n0x9858\t0x6985\n0x9859\t0x698A\n0x985A\t0x698B\n0x985B\t0x698C\n0x985C\t0x698E\n0x985D\t0x698F\n0x985E\t0x6990\n0x985F\t0x6991\n0x9860\t0x6992\n0x9861\t0x6993\n0x9862\t0x6996\n0x9863\t0x6997\n0x9864\t0x6999\n0x9865\t0x699A\n0x9866\t0x699D\n0x9867\t0x699E\n0x9868\t0x699F\n0x9869\t0x69A0\n0x986A\t0x69A1\n0x986B\t0x69A2\n0x986C\t0x69A3\n0x986D\t0x69A4\n0x986E\t0x69A5\n0x986F\t0x69A6\n0x9870\t0x69A9\n0x9871\t0x69AA\n0x9872\t0x69AC\n0x9873\t0x69AE\n0x9874\t0x69AF\n0x9875\t0x69B0\n0x9876\t0x69B2\n0x9877\t0x69B3\n0x9878\t0x69B5\n0x9879\t0x69B6\n0x987A\t0x69B8\n0x987B\t0x69B9\n0x987C\t0x69BA\n0x987D\t0x69BC\n0x987E\t0x69BD\n0x9880\t0x69BE\n0x9881\t0x69BF\n0x9882\t0x69C0\n0x9883\t0x69C2\n0x9884\t0x69C3\n0x9885\t0x69C4\n0x9886\t0x69C5\n0x9887\t0x69C6\n0x9888\t0x69C7\n0x9889\t0x69C8\n0x988A\t0x69C9\n0x988B\t0x69CB\n0x988C\t0x69CD\n0x988D\t0x69CF\n0x988E\t0x69D1\n0x988F\t0x69D2\n0x9890\t0x69D3\n0x9891\t0x69D5\n0x9892\t0x69D6\n0x9893\t0x69D7\n0x9894\t0x69D8\n0x9895\t0x69D9\n0x9896\t0x69DA\n0x9897\t0x69DC\n0x9898\t0x69DD\n0x9899\t0x69DE\n0x989A\t0x69E1\n0x989B\t0x69E2\n0x989C\t0x69E3\n0x989D\t0x69E4\n0x989E\t0x69E5\n0x989F\t0x69E6\n0x98A0\t0x69E7\n0x98A1\t0x69E8\n0x98A2\t0x69E9\n0x98A3\t0x69EA\n0x98A4\t0x69EB\n0x98A5\t0x69EC\n0x98A6\t0x69EE\n0x98A7\t0x69EF\n0x98A8\t0x69F0\n0x98A9\t0x69F1\n0x98AA\t0x69F3\n0x98AB\t0x69F4\n0x98AC\t0x69F5\n0x98AD\t0x69F6\n0x98AE\t0x69F7\n0x98AF\t0x69F8\n0x98B0\t0x69F9\n0x98B1\t0x69FA\n0x98B2\t0x69FB\n0x98B3\t0x69FC\n0x98B4\t0x69FE\n0x98B5\t0x6A00\n0x98B6\t0x6A01\n0x98B7\t0x6A02\n0x98B8\t0x6A03\n0x98B9\t0x6A04\n0x98BA\t0x6A05\n0x98BB\t0x6A06\n0x98BC\t0x6A07\n0x98BD\t0x6A08\n0x98BE\t0x6A09\n0x98BF\t0x6A0B\n0x98C0\t0x6A0C\n0x98C1\t0x6A0D\n0x98C2\t0x6A0E\n0x98C3\t0x6A0F\n0x98C4\t0x6A10\n0x98C5\t0x6A11\n0x98C6\t0x6A12\n0x98C7\t0x6A13\n0x98C8\t0x6A14\n0x98C9\t0x6A15\n0x98CA\t0x6A16\n0x98CB\t0x6A19\n0x98CC\t0x6A1A\n0x98CD\t0x6A1B\n0x98CE\t0x6A1C\n0x98CF\t0x6A1D\n0x98D0\t0x6A1E\n0x98D1\t0x6A20\n0x98D2\t0x6A22\n0x98D3\t0x6A23\n0x98D4\t0x6A24\n0x98D5\t0x6A25\n0x98D6\t0x6A26\n0x98D7\t0x6A27\n0x98D8\t0x6A29\n0x98D9\t0x6A2B\n0x98DA\t0x6A2C\n0x98DB\t0x6A2D\n0x98DC\t0x6A2E\n0x98DD\t0x6A30\n0x98DE\t0x6A32\n0x98DF\t0x6A33\n0x98E0\t0x6A34\n0x98E1\t0x6A36\n0x98E2\t0x6A37\n0x98E3\t0x6A38\n0x98E4\t0x6A39\n0x98E5\t0x6A3A\n0x98E6\t0x6A3B\n0x98E7\t0x6A3C\n0x98E8\t0x6A3F\n0x98E9\t0x6A40\n0x98EA\t0x6A41\n0x98EB\t0x6A42\n0x98EC\t0x6A43\n0x98ED\t0x6A45\n0x98EE\t0x6A46\n0x98EF\t0x6A48\n0x98F0\t0x6A49\n0x98F1\t0x6A4A\n0x98F2\t0x6A4B\n0x98F3\t0x6A4C\n0x98F4\t0x6A4D\n0x98F5\t0x6A4E\n0x98F6\t0x6A4F\n0x98F7\t0x6A51\n0x98F8\t0x6A52\n0x98F9\t0x6A53\n0x98FA\t0x6A54\n0x98FB\t0x6A55\n0x98FC\t0x6A56\n0x98FD\t0x6A57\n0x98FE\t0x6A5A\n0x9940\t0x6A5C\n0x9941\t0x6A5D\n0x9942\t0x6A5E\n0x9943\t0x6A5F\n0x9944\t0x6A60\n0x9945\t0x6A62\n0x9946\t0x6A63\n0x9947\t0x6A64\n0x9948\t0x6A66\n0x9949\t0x6A67\n0x994A\t0x6A68\n0x994B\t0x6A69\n0x994C\t0x6A6A\n0x994D\t0x6A6B\n0x994E\t0x6A6C\n0x994F\t0x6A6D\n0x9950\t0x6A6E\n0x9951\t0x6A6F\n0x9952\t0x6A70\n0x9953\t0x6A72\n0x9954\t0x6A73\n0x9955\t0x6A74\n0x9956\t0x6A75\n0x9957\t0x6A76\n0x9958\t0x6A77\n0x9959\t0x6A78\n0x995A\t0x6A7A\n0x995B\t0x6A7B\n0x995C\t0x6A7D\n0x995D\t0x6A7E\n0x995E\t0x6A7F\n0x995F\t0x6A81\n0x9960\t0x6A82\n0x9961\t0x6A83\n0x9962\t0x6A85\n0x9963\t0x6A86\n0x9964\t0x6A87\n0x9965\t0x6A88\n0x9966\t0x6A89\n0x9967\t0x6A8A\n0x9968\t0x6A8B\n0x9969\t0x6A8C\n0x996A\t0x6A8D\n0x996B\t0x6A8F\n0x996C\t0x6A92\n0x996D\t0x6A93\n0x996E\t0x6A94\n0x996F\t0x6A95\n0x9970\t0x6A96\n0x9971\t0x6A98\n0x9972\t0x6A99\n0x9973\t0x6A9A\n0x9974\t0x6A9B\n0x9975\t0x6A9C\n0x9976\t0x6A9D\n0x9977\t0x6A9E\n0x9978\t0x6A9F\n0x9979\t0x6AA1\n0x997A\t0x6AA2\n0x997B\t0x6AA3\n0x997C\t0x6AA4\n0x997D\t0x6AA5\n0x997E\t0x6AA6\n0x9980\t0x6AA7\n0x9981\t0x6AA8\n0x9982\t0x6AAA\n0x9983\t0x6AAD\n0x9984\t0x6AAE\n0x9985\t0x6AAF\n0x9986\t0x6AB0\n0x9987\t0x6AB1\n0x9988\t0x6AB2\n0x9989\t0x6AB3\n0x998A\t0x6AB4\n0x998B\t0x6AB5\n0x998C\t0x6AB6\n0x998D\t0x6AB7\n0x998E\t0x6AB8\n0x998F\t0x6AB9\n0x9990\t0x6ABA\n0x9991\t0x6ABB\n0x9992\t0x6ABC\n0x9993\t0x6ABD\n0x9994\t0x6ABE\n0x9995\t0x6ABF\n0x9996\t0x6AC0\n0x9997\t0x6AC1\n0x9998\t0x6AC2\n0x9999\t0x6AC3\n0x999A\t0x6AC4\n0x999B\t0x6AC5\n0x999C\t0x6AC6\n0x999D\t0x6AC7\n0x999E\t0x6AC8\n0x999F\t0x6AC9\n0x99A0\t0x6ACA\n0x99A1\t0x6ACB\n0x99A2\t0x6ACC\n0x99A3\t0x6ACD\n0x99A4\t0x6ACE\n0x99A5\t0x6ACF\n0x99A6\t0x6AD0\n0x99A7\t0x6AD1\n0x99A8\t0x6AD2\n0x99A9\t0x6AD3\n0x99AA\t0x6AD4\n0x99AB\t0x6AD5\n0x99AC\t0x6AD6\n0x99AD\t0x6AD7\n0x99AE\t0x6AD8\n0x99AF\t0x6AD9\n0x99B0\t0x6ADA\n0x99B1\t0x6ADB\n0x99B2\t0x6ADC\n0x99B3\t0x6ADD\n0x99B4\t0x6ADE\n0x99B5\t0x6ADF\n0x99B6\t0x6AE0\n0x99B7\t0x6AE1\n0x99B8\t0x6AE2\n0x99B9\t0x6AE3\n0x99BA\t0x6AE4\n0x99BB\t0x6AE5\n0x99BC\t0x6AE6\n0x99BD\t0x6AE7\n0x99BE\t0x6AE8\n0x99BF\t0x6AE9\n0x99C0\t0x6AEA\n0x99C1\t0x6AEB\n0x99C2\t0x6AEC\n0x99C3\t0x6AED\n0x99C4\t0x6AEE\n0x99C5\t0x6AEF\n0x99C6\t0x6AF0\n0x99C7\t0x6AF1\n0x99C8\t0x6AF2\n0x99C9\t0x6AF3\n0x99CA\t0x6AF4\n0x99CB\t0x6AF5\n0x99CC\t0x6AF6\n0x99CD\t0x6AF7\n0x99CE\t0x6AF8\n0x99CF\t0x6AF9\n0x99D0\t0x6AFA\n0x99D1\t0x6AFB\n0x99D2\t0x6AFC\n0x99D3\t0x6AFD\n0x99D4\t0x6AFE\n0x99D5\t0x6AFF\n0x99D6\t0x6B00\n0x99D7\t0x6B01\n0x99D8\t0x6B02\n0x99D9\t0x6B03\n0x99DA\t0x6B04\n0x99DB\t0x6B05\n0x99DC\t0x6B06\n0x99DD\t0x6B07\n0x99DE\t0x6B08\n0x99DF\t0x6B09\n0x99E0\t0x6B0A\n0x99E1\t0x6B0B\n0x99E2\t0x6B0C\n0x99E3\t0x6B0D\n0x99E4\t0x6B0E\n0x99E5\t0x6B0F\n0x99E6\t0x6B10\n0x99E7\t0x6B11\n0x99E8\t0x6B12\n0x99E9\t0x6B13\n0x99EA\t0x6B14\n0x99EB\t0x6B15\n0x99EC\t0x6B16\n0x99ED\t0x6B17\n0x99EE\t0x6B18\n0x99EF\t0x6B19\n0x99F0\t0x6B1A\n0x99F1\t0x6B1B\n0x99F2\t0x6B1C\n0x99F3\t0x6B1D\n0x99F4\t0x6B1E\n0x99F5\t0x6B1F\n0x99F6\t0x6B25\n0x99F7\t0x6B26\n0x99F8\t0x6B28\n0x99F9\t0x6B29\n0x99FA\t0x6B2A\n0x99FB\t0x6B2B\n0x99FC\t0x6B2C\n0x99FD\t0x6B2D\n0x99FE\t0x6B2E\n0x9A40\t0x6B2F\n0x9A41\t0x6B30\n0x9A42\t0x6B31\n0x9A43\t0x6B33\n0x9A44\t0x6B34\n0x9A45\t0x6B35\n0x9A46\t0x6B36\n0x9A47\t0x6B38\n0x9A48\t0x6B3B\n0x9A49\t0x6B3C\n0x9A4A\t0x6B3D\n0x9A4B\t0x6B3F\n0x9A4C\t0x6B40\n0x9A4D\t0x6B41\n0x9A4E\t0x6B42\n0x9A4F\t0x6B44\n0x9A50\t0x6B45\n0x9A51\t0x6B48\n0x9A52\t0x6B4A\n0x9A53\t0x6B4B\n0x9A54\t0x6B4D\n0x9A55\t0x6B4E\n0x9A56\t0x6B4F\n0x9A57\t0x6B50\n0x9A58\t0x6B51\n0x9A59\t0x6B52\n0x9A5A\t0x6B53\n0x9A5B\t0x6B54\n0x9A5C\t0x6B55\n0x9A5D\t0x6B56\n0x9A5E\t0x6B57\n0x9A5F\t0x6B58\n0x9A60\t0x6B5A\n0x9A61\t0x6B5B\n0x9A62\t0x6B5C\n0x9A63\t0x6B5D\n0x9A64\t0x6B5E\n0x9A65\t0x6B5F\n0x9A66\t0x6B60\n0x9A67\t0x6B61\n0x9A68\t0x6B68\n0x9A69\t0x6B69\n0x9A6A\t0x6B6B\n0x9A6B\t0x6B6C\n0x9A6C\t0x6B6D\n0x9A6D\t0x6B6E\n0x9A6E\t0x6B6F\n0x9A6F\t0x6B70\n0x9A70\t0x6B71\n0x9A71\t0x6B72\n0x9A72\t0x6B73\n0x9A73\t0x6B74\n0x9A74\t0x6B75\n0x9A75\t0x6B76\n0x9A76\t0x6B77\n0x9A77\t0x6B78\n0x9A78\t0x6B7A\n0x9A79\t0x6B7D\n0x9A7A\t0x6B7E\n0x9A7B\t0x6B7F\n0x9A7C\t0x6B80\n0x9A7D\t0x6B85\n0x9A7E\t0x6B88\n0x9A80\t0x6B8C\n0x9A81\t0x6B8E\n0x9A82\t0x6B8F\n0x9A83\t0x6B90\n0x9A84\t0x6B91\n0x9A85\t0x6B94\n0x9A86\t0x6B95\n0x9A87\t0x6B97\n0x9A88\t0x6B98\n0x9A89\t0x6B99\n0x9A8A\t0x6B9C\n0x9A8B\t0x6B9D\n0x9A8C\t0x6B9E\n0x9A8D\t0x6B9F\n0x9A8E\t0x6BA0\n0x9A8F\t0x6BA2\n0x9A90\t0x6BA3\n0x9A91\t0x6BA4\n0x9A92\t0x6BA5\n0x9A93\t0x6BA6\n0x9A94\t0x6BA7\n0x9A95\t0x6BA8\n0x9A96\t0x6BA9\n0x9A97\t0x6BAB\n0x9A98\t0x6BAC\n0x9A99\t0x6BAD\n0x9A9A\t0x6BAE\n0x9A9B\t0x6BAF\n0x9A9C\t0x6BB0\n0x9A9D\t0x6BB1\n0x9A9E\t0x6BB2\n0x9A9F\t0x6BB6\n0x9AA0\t0x6BB8\n0x9AA1\t0x6BB9\n0x9AA2\t0x6BBA\n0x9AA3\t0x6BBB\n0x9AA4\t0x6BBC\n0x9AA5\t0x6BBD\n0x9AA6\t0x6BBE\n0x9AA7\t0x6BC0\n0x9AA8\t0x6BC3\n0x9AA9\t0x6BC4\n0x9AAA\t0x6BC6\n0x9AAB\t0x6BC7\n0x9AAC\t0x6BC8\n0x9AAD\t0x6BC9\n0x9AAE\t0x6BCA\n0x9AAF\t0x6BCC\n0x9AB0\t0x6BCE\n0x9AB1\t0x6BD0\n0x9AB2\t0x6BD1\n0x9AB3\t0x6BD8\n0x9AB4\t0x6BDA\n0x9AB5\t0x6BDC\n0x9AB6\t0x6BDD\n0x9AB7\t0x6BDE\n0x9AB8\t0x6BDF\n0x9AB9\t0x6BE0\n0x9ABA\t0x6BE2\n0x9ABB\t0x6BE3\n0x9ABC\t0x6BE4\n0x9ABD\t0x6BE5\n0x9ABE\t0x6BE6\n0x9ABF\t0x6BE7\n0x9AC0\t0x6BE8\n0x9AC1\t0x6BE9\n0x9AC2\t0x6BEC\n0x9AC3\t0x6BED\n0x9AC4\t0x6BEE\n0x9AC5\t0x6BF0\n0x9AC6\t0x6BF1\n0x9AC7\t0x6BF2\n0x9AC8\t0x6BF4\n0x9AC9\t0x6BF6\n0x9ACA\t0x6BF7\n0x9ACB\t0x6BF8\n0x9ACC\t0x6BFA\n0x9ACD\t0x6BFB\n0x9ACE\t0x6BFC\n0x9ACF\t0x6BFE\n0x9AD0\t0x6BFF\n0x9AD1\t0x6C00\n0x9AD2\t0x6C01\n0x9AD3\t0x6C02\n0x9AD4\t0x6C03\n0x9AD5\t0x6C04\n0x9AD6\t0x6C08\n0x9AD7\t0x6C09\n0x9AD8\t0x6C0A\n0x9AD9\t0x6C0B\n0x9ADA\t0x6C0C\n0x9ADB\t0x6C0E\n0x9ADC\t0x6C12\n0x9ADD\t0x6C17\n0x9ADE\t0x6C1C\n0x9ADF\t0x6C1D\n0x9AE0\t0x6C1E\n0x9AE1\t0x6C20\n0x9AE2\t0x6C23\n0x9AE3\t0x6C25\n0x9AE4\t0x6C2B\n0x9AE5\t0x6C2C\n0x9AE6\t0x6C2D\n0x9AE7\t0x6C31\n0x9AE8\t0x6C33\n0x9AE9\t0x6C36\n0x9AEA\t0x6C37\n0x9AEB\t0x6C39\n0x9AEC\t0x6C3A\n0x9AED\t0x6C3B\n0x9AEE\t0x6C3C\n0x9AEF\t0x6C3E\n0x9AF0\t0x6C3F\n0x9AF1\t0x6C43\n0x9AF2\t0x6C44\n0x9AF3\t0x6C45\n0x9AF4\t0x6C48\n0x9AF5\t0x6C4B\n0x9AF6\t0x6C4C\n0x9AF7\t0x6C4D\n0x9AF8\t0x6C4E\n0x9AF9\t0x6C4F\n0x9AFA\t0x6C51\n0x9AFB\t0x6C52\n0x9AFC\t0x6C53\n0x9AFD\t0x6C56\n0x9AFE\t0x6C58\n0x9B40\t0x6C59\n0x9B41\t0x6C5A\n0x9B42\t0x6C62\n0x9B43\t0x6C63\n0x9B44\t0x6C65\n0x9B45\t0x6C66\n0x9B46\t0x6C67\n0x9B47\t0x6C6B\n0x9B48\t0x6C6C\n0x9B49\t0x6C6D\n0x9B4A\t0x6C6E\n0x9B4B\t0x6C6F\n0x9B4C\t0x6C71\n0x9B4D\t0x6C73\n0x9B4E\t0x6C75\n0x9B4F\t0x6C77\n0x9B50\t0x6C78\n0x9B51\t0x6C7A\n0x9B52\t0x6C7B\n0x9B53\t0x6C7C\n0x9B54\t0x6C7F\n0x9B55\t0x6C80\n0x9B56\t0x6C84\n0x9B57\t0x6C87\n0x9B58\t0x6C8A\n0x9B59\t0x6C8B\n0x9B5A\t0x6C8D\n0x9B5B\t0x6C8E\n0x9B5C\t0x6C91\n0x9B5D\t0x6C92\n0x9B5E\t0x6C95\n0x9B5F\t0x6C96\n0x9B60\t0x6C97\n0x9B61\t0x6C98\n0x9B62\t0x6C9A\n0x9B63\t0x6C9C\n0x9B64\t0x6C9D\n0x9B65\t0x6C9E\n0x9B66\t0x6CA0\n0x9B67\t0x6CA2\n0x9B68\t0x6CA8\n0x9B69\t0x6CAC\n0x9B6A\t0x6CAF\n0x9B6B\t0x6CB0\n0x9B6C\t0x6CB4\n0x9B6D\t0x6CB5\n0x9B6E\t0x6CB6\n0x9B6F\t0x6CB7\n0x9B70\t0x6CBA\n0x9B71\t0x6CC0\n0x9B72\t0x6CC1\n0x9B73\t0x6CC2\n0x9B74\t0x6CC3\n0x9B75\t0x6CC6\n0x9B76\t0x6CC7\n0x9B77\t0x6CC8\n0x9B78\t0x6CCB\n0x9B79\t0x6CCD\n0x9B7A\t0x6CCE\n0x9B7B\t0x6CCF\n0x9B7C\t0x6CD1\n0x9B7D\t0x6CD2\n0x9B7E\t0x6CD8\n0x9B80\t0x6CD9\n0x9B81\t0x6CDA\n0x9B82\t0x6CDC\n0x9B83\t0x6CDD\n0x9B84\t0x6CDF\n0x9B85\t0x6CE4\n0x9B86\t0x6CE6\n0x9B87\t0x6CE7\n0x9B88\t0x6CE9\n0x9B89\t0x6CEC\n0x9B8A\t0x6CED\n0x9B8B\t0x6CF2\n0x9B8C\t0x6CF4\n0x9B8D\t0x6CF9\n0x9B8E\t0x6CFF\n0x9B8F\t0x6D00\n0x9B90\t0x6D02\n0x9B91\t0x6D03\n0x9B92\t0x6D05\n0x9B93\t0x6D06\n0x9B94\t0x6D08\n0x9B95\t0x6D09\n0x9B96\t0x6D0A\n0x9B97\t0x6D0D\n0x9B98\t0x6D0F\n0x9B99\t0x6D10\n0x9B9A\t0x6D11\n0x9B9B\t0x6D13\n0x9B9C\t0x6D14\n0x9B9D\t0x6D15\n0x9B9E\t0x6D16\n0x9B9F\t0x6D18\n0x9BA0\t0x6D1C\n0x9BA1\t0x6D1D\n0x9BA2\t0x6D1F\n0x9BA3\t0x6D20\n0x9BA4\t0x6D21\n0x9BA5\t0x6D22\n0x9BA6\t0x6D23\n0x9BA7\t0x6D24\n0x9BA8\t0x6D26\n0x9BA9\t0x6D28\n0x9BAA\t0x6D29\n0x9BAB\t0x6D2C\n0x9BAC\t0x6D2D\n0x9BAD\t0x6D2F\n0x9BAE\t0x6D30\n0x9BAF\t0x6D34\n0x9BB0\t0x6D36\n0x9BB1\t0x6D37\n0x9BB2\t0x6D38\n0x9BB3\t0x6D3A\n0x9BB4\t0x6D3F\n0x9BB5\t0x6D40\n0x9BB6\t0x6D42\n0x9BB7\t0x6D44\n0x9BB8\t0x6D49\n0x9BB9\t0x6D4C\n0x9BBA\t0x6D50\n0x9BBB\t0x6D55\n0x9BBC\t0x6D56\n0x9BBD\t0x6D57\n0x9BBE\t0x6D58\n0x9BBF\t0x6D5B\n0x9BC0\t0x6D5D\n0x9BC1\t0x6D5F\n0x9BC2\t0x6D61\n0x9BC3\t0x6D62\n0x9BC4\t0x6D64\n0x9BC5\t0x6D65\n0x9BC6\t0x6D67\n0x9BC7\t0x6D68\n0x9BC8\t0x6D6B\n0x9BC9\t0x6D6C\n0x9BCA\t0x6D6D\n0x9BCB\t0x6D70\n0x9BCC\t0x6D71\n0x9BCD\t0x6D72\n0x9BCE\t0x6D73\n0x9BCF\t0x6D75\n0x9BD0\t0x6D76\n0x9BD1\t0x6D79\n0x9BD2\t0x6D7A\n0x9BD3\t0x6D7B\n0x9BD4\t0x6D7D\n0x9BD5\t0x6D7E\n0x9BD6\t0x6D7F\n0x9BD7\t0x6D80\n0x9BD8\t0x6D81\n0x9BD9\t0x6D83\n0x9BDA\t0x6D84\n0x9BDB\t0x6D86\n0x9BDC\t0x6D87\n0x9BDD\t0x6D8A\n0x9BDE\t0x6D8B\n0x9BDF\t0x6D8D\n0x9BE0\t0x6D8F\n0x9BE1\t0x6D90\n0x9BE2\t0x6D92\n0x9BE3\t0x6D96\n0x9BE4\t0x6D97\n0x9BE5\t0x6D98\n0x9BE6\t0x6D99\n0x9BE7\t0x6D9A\n0x9BE8\t0x6D9C\n0x9BE9\t0x6DA2\n0x9BEA\t0x6DA5\n0x9BEB\t0x6DAC\n0x9BEC\t0x6DAD\n0x9BED\t0x6DB0\n0x9BEE\t0x6DB1\n0x9BEF\t0x6DB3\n0x9BF0\t0x6DB4\n0x9BF1\t0x6DB6\n0x9BF2\t0x6DB7\n0x9BF3\t0x6DB9\n0x9BF4\t0x6DBA\n0x9BF5\t0x6DBB\n0x9BF6\t0x6DBC\n0x9BF7\t0x6DBD\n0x9BF8\t0x6DBE\n0x9BF9\t0x6DC1\n0x9BFA\t0x6DC2\n0x9BFB\t0x6DC3\n0x9BFC\t0x6DC8\n0x9BFD\t0x6DC9\n0x9BFE\t0x6DCA\n0x9C40\t0x6DCD\n0x9C41\t0x6DCE\n0x9C42\t0x6DCF\n0x9C43\t0x6DD0\n0x9C44\t0x6DD2\n0x9C45\t0x6DD3\n0x9C46\t0x6DD4\n0x9C47\t0x6DD5\n0x9C48\t0x6DD7\n0x9C49\t0x6DDA\n0x9C4A\t0x6DDB\n0x9C4B\t0x6DDC\n0x9C4C\t0x6DDF\n0x9C4D\t0x6DE2\n0x9C4E\t0x6DE3\n0x9C4F\t0x6DE5\n0x9C50\t0x6DE7\n0x9C51\t0x6DE8\n0x9C52\t0x6DE9\n0x9C53\t0x6DEA\n0x9C54\t0x6DED\n0x9C55\t0x6DEF\n0x9C56\t0x6DF0\n0x9C57\t0x6DF2\n0x9C58\t0x6DF4\n0x9C59\t0x6DF5\n0x9C5A\t0x6DF6\n0x9C5B\t0x6DF8\n0x9C5C\t0x6DFA\n0x9C5D\t0x6DFD\n0x9C5E\t0x6DFE\n0x9C5F\t0x6DFF\n0x9C60\t0x6E00\n0x9C61\t0x6E01\n0x9C62\t0x6E02\n0x9C63\t0x6E03\n0x9C64\t0x6E04\n0x9C65\t0x6E06\n0x9C66\t0x6E07\n0x9C67\t0x6E08\n0x9C68\t0x6E09\n0x9C69\t0x6E0B\n0x9C6A\t0x6E0F\n0x9C6B\t0x6E12\n0x9C6C\t0x6E13\n0x9C6D\t0x6E15\n0x9C6E\t0x6E18\n0x9C6F\t0x6E19\n0x9C70\t0x6E1B\n0x9C71\t0x6E1C\n0x9C72\t0x6E1E\n0x9C73\t0x6E1F\n0x9C74\t0x6E22\n0x9C75\t0x6E26\n0x9C76\t0x6E27\n0x9C77\t0x6E28\n0x9C78\t0x6E2A\n0x9C79\t0x6E2C\n0x9C7A\t0x6E2E\n0x9C7B\t0x6E30\n0x9C7C\t0x6E31\n0x9C7D\t0x6E33\n0x9C7E\t0x6E35\n0x9C80\t0x6E36\n0x9C81\t0x6E37\n0x9C82\t0x6E39\n0x9C83\t0x6E3B\n0x9C84\t0x6E3C\n0x9C85\t0x6E3D\n0x9C86\t0x6E3E\n0x9C87\t0x6E3F\n0x9C88\t0x6E40\n0x9C89\t0x6E41\n0x9C8A\t0x6E42\n0x9C8B\t0x6E45\n0x9C8C\t0x6E46\n0x9C8D\t0x6E47\n0x9C8E\t0x6E48\n0x9C8F\t0x6E49\n0x9C90\t0x6E4A\n0x9C91\t0x6E4B\n0x9C92\t0x6E4C\n0x9C93\t0x6E4F\n0x9C94\t0x6E50\n0x9C95\t0x6E51\n0x9C96\t0x6E52\n0x9C97\t0x6E55\n0x9C98\t0x6E57\n0x9C99\t0x6E59\n0x9C9A\t0x6E5A\n0x9C9B\t0x6E5C\n0x9C9C\t0x6E5D\n0x9C9D\t0x6E5E\n0x9C9E\t0x6E60\n0x9C9F\t0x6E61\n0x9CA0\t0x6E62\n0x9CA1\t0x6E63\n0x9CA2\t0x6E64\n0x9CA3\t0x6E65\n0x9CA4\t0x6E66\n0x9CA5\t0x6E67\n0x9CA6\t0x6E68\n0x9CA7\t0x6E69\n0x9CA8\t0x6E6A\n0x9CA9\t0x6E6C\n0x9CAA\t0x6E6D\n0x9CAB\t0x6E6F\n0x9CAC\t0x6E70\n0x9CAD\t0x6E71\n0x9CAE\t0x6E72\n0x9CAF\t0x6E73\n0x9CB0\t0x6E74\n0x9CB1\t0x6E75\n0x9CB2\t0x6E76\n0x9CB3\t0x6E77\n0x9CB4\t0x6E78\n0x9CB5\t0x6E79\n0x9CB6\t0x6E7A\n0x9CB7\t0x6E7B\n0x9CB8\t0x6E7C\n0x9CB9\t0x6E7D\n0x9CBA\t0x6E80\n0x9CBB\t0x6E81\n0x9CBC\t0x6E82\n0x9CBD\t0x6E84\n0x9CBE\t0x6E87\n0x9CBF\t0x6E88\n0x9CC0\t0x6E8A\n0x9CC1\t0x6E8B\n0x9CC2\t0x6E8C\n0x9CC3\t0x6E8D\n0x9CC4\t0x6E8E\n0x9CC5\t0x6E91\n0x9CC6\t0x6E92\n0x9CC7\t0x6E93\n0x9CC8\t0x6E94\n0x9CC9\t0x6E95\n0x9CCA\t0x6E96\n0x9CCB\t0x6E97\n0x9CCC\t0x6E99\n0x9CCD\t0x6E9A\n0x9CCE\t0x6E9B\n0x9CCF\t0x6E9D\n0x9CD0\t0x6E9E\n0x9CD1\t0x6EA0\n0x9CD2\t0x6EA1\n0x9CD3\t0x6EA3\n0x9CD4\t0x6EA4\n0x9CD5\t0x6EA6\n0x9CD6\t0x6EA8\n0x9CD7\t0x6EA9\n0x9CD8\t0x6EAB\n0x9CD9\t0x6EAC\n0x9CDA\t0x6EAD\n0x9CDB\t0x6EAE\n0x9CDC\t0x6EB0\n0x9CDD\t0x6EB3\n0x9CDE\t0x6EB5\n0x9CDF\t0x6EB8\n0x9CE0\t0x6EB9\n0x9CE1\t0x6EBC\n0x9CE2\t0x6EBE\n0x9CE3\t0x6EBF\n0x9CE4\t0x6EC0\n0x9CE5\t0x6EC3\n0x9CE6\t0x6EC4\n0x9CE7\t0x6EC5\n0x9CE8\t0x6EC6\n0x9CE9\t0x6EC8\n0x9CEA\t0x6EC9\n0x9CEB\t0x6ECA\n0x9CEC\t0x6ECC\n0x9CED\t0x6ECD\n0x9CEE\t0x6ECE\n0x9CEF\t0x6ED0\n0x9CF0\t0x6ED2\n0x9CF1\t0x6ED6\n0x9CF2\t0x6ED8\n0x9CF3\t0x6ED9\n0x9CF4\t0x6EDB\n0x9CF5\t0x6EDC\n0x9CF6\t0x6EDD\n0x9CF7\t0x6EE3\n0x9CF8\t0x6EE7\n0x9CF9\t0x6EEA\n0x9CFA\t0x6EEB\n0x9CFB\t0x6EEC\n0x9CFC\t0x6EED\n0x9CFD\t0x6EEE\n0x9CFE\t0x6EEF\n0x9D40\t0x6EF0\n0x9D41\t0x6EF1\n0x9D42\t0x6EF2\n0x9D43\t0x6EF3\n0x9D44\t0x6EF5\n0x9D45\t0x6EF6\n0x9D46\t0x6EF7\n0x9D47\t0x6EF8\n0x9D48\t0x6EFA\n0x9D49\t0x6EFB\n0x9D4A\t0x6EFC\n0x9D4B\t0x6EFD\n0x9D4C\t0x6EFE\n0x9D4D\t0x6EFF\n0x9D4E\t0x6F00\n0x9D4F\t0x6F01\n0x9D50\t0x6F03\n0x9D51\t0x6F04\n0x9D52\t0x6F05\n0x9D53\t0x6F07\n0x9D54\t0x6F08\n0x9D55\t0x6F0A\n0x9D56\t0x6F0B\n0x9D57\t0x6F0C\n0x9D58\t0x6F0D\n0x9D59\t0x6F0E\n0x9D5A\t0x6F10\n0x9D5B\t0x6F11\n0x9D5C\t0x6F12\n0x9D5D\t0x6F16\n0x9D5E\t0x6F17\n0x9D5F\t0x6F18\n0x9D60\t0x6F19\n0x9D61\t0x6F1A\n0x9D62\t0x6F1B\n0x9D63\t0x6F1C\n0x9D64\t0x6F1D\n0x9D65\t0x6F1E\n0x9D66\t0x6F1F\n0x9D67\t0x6F21\n0x9D68\t0x6F22\n0x9D69\t0x6F23\n0x9D6A\t0x6F25\n0x9D6B\t0x6F26\n0x9D6C\t0x6F27\n0x9D6D\t0x6F28\n0x9D6E\t0x6F2C\n0x9D6F\t0x6F2E\n0x9D70\t0x6F30\n0x9D71\t0x6F32\n0x9D72\t0x6F34\n0x9D73\t0x6F35\n0x9D74\t0x6F37\n0x9D75\t0x6F38\n0x9D76\t0x6F39\n0x9D77\t0x6F3A\n0x9D78\t0x6F3B\n0x9D79\t0x6F3C\n0x9D7A\t0x6F3D\n0x9D7B\t0x6F3F\n0x9D7C\t0x6F40\n0x9D7D\t0x6F41\n0x9D7E\t0x6F42\n0x9D80\t0x6F43\n0x9D81\t0x6F44\n0x9D82\t0x6F45\n0x9D83\t0x6F48\n0x9D84\t0x6F49\n0x9D85\t0x6F4A\n0x9D86\t0x6F4C\n0x9D87\t0x6F4E\n0x9D88\t0x6F4F\n0x9D89\t0x6F50\n0x9D8A\t0x6F51\n0x9D8B\t0x6F52\n0x9D8C\t0x6F53\n0x9D8D\t0x6F54\n0x9D8E\t0x6F55\n0x9D8F\t0x6F56\n0x9D90\t0x6F57\n0x9D91\t0x6F59\n0x9D92\t0x6F5A\n0x9D93\t0x6F5B\n0x9D94\t0x6F5D\n0x9D95\t0x6F5F\n0x9D96\t0x6F60\n0x9D97\t0x6F61\n0x9D98\t0x6F63\n0x9D99\t0x6F64\n0x9D9A\t0x6F65\n0x9D9B\t0x6F67\n0x9D9C\t0x6F68\n0x9D9D\t0x6F69\n0x9D9E\t0x6F6A\n0x9D9F\t0x6F6B\n0x9DA0\t0x6F6C\n0x9DA1\t0x6F6F\n0x9DA2\t0x6F70\n0x9DA3\t0x6F71\n0x9DA4\t0x6F73\n0x9DA5\t0x6F75\n0x9DA6\t0x6F76\n0x9DA7\t0x6F77\n0x9DA8\t0x6F79\n0x9DA9\t0x6F7B\n0x9DAA\t0x6F7D\n0x9DAB\t0x6F7E\n0x9DAC\t0x6F7F\n0x9DAD\t0x6F80\n0x9DAE\t0x6F81\n0x9DAF\t0x6F82\n0x9DB0\t0x6F83\n0x9DB1\t0x6F85\n0x9DB2\t0x6F86\n0x9DB3\t0x6F87\n0x9DB4\t0x6F8A\n0x9DB5\t0x6F8B\n0x9DB6\t0x6F8F\n0x9DB7\t0x6F90\n0x9DB8\t0x6F91\n0x9DB9\t0x6F92\n0x9DBA\t0x6F93\n0x9DBB\t0x6F94\n0x9DBC\t0x6F95\n0x9DBD\t0x6F96\n0x9DBE\t0x6F97\n0x9DBF\t0x6F98\n0x9DC0\t0x6F99\n0x9DC1\t0x6F9A\n0x9DC2\t0x6F9B\n0x9DC3\t0x6F9D\n0x9DC4\t0x6F9E\n0x9DC5\t0x6F9F\n0x9DC6\t0x6FA0\n0x9DC7\t0x6FA2\n0x9DC8\t0x6FA3\n0x9DC9\t0x6FA4\n0x9DCA\t0x6FA5\n0x9DCB\t0x6FA6\n0x9DCC\t0x6FA8\n0x9DCD\t0x6FA9\n0x9DCE\t0x6FAA\n0x9DCF\t0x6FAB\n0x9DD0\t0x6FAC\n0x9DD1\t0x6FAD\n0x9DD2\t0x6FAE\n0x9DD3\t0x6FAF\n0x9DD4\t0x6FB0\n0x9DD5\t0x6FB1\n0x9DD6\t0x6FB2\n0x9DD7\t0x6FB4\n0x9DD8\t0x6FB5\n0x9DD9\t0x6FB7\n0x9DDA\t0x6FB8\n0x9DDB\t0x6FBA\n0x9DDC\t0x6FBB\n0x9DDD\t0x6FBC\n0x9DDE\t0x6FBD\n0x9DDF\t0x6FBE\n0x9DE0\t0x6FBF\n0x9DE1\t0x6FC1\n0x9DE2\t0x6FC3\n0x9DE3\t0x6FC4\n0x9DE4\t0x6FC5\n0x9DE5\t0x6FC6\n0x9DE6\t0x6FC7\n0x9DE7\t0x6FC8\n0x9DE8\t0x6FCA\n0x9DE9\t0x6FCB\n0x9DEA\t0x6FCC\n0x9DEB\t0x6FCD\n0x9DEC\t0x6FCE\n0x9DED\t0x6FCF\n0x9DEE\t0x6FD0\n0x9DEF\t0x6FD3\n0x9DF0\t0x6FD4\n0x9DF1\t0x6FD5\n0x9DF2\t0x6FD6\n0x9DF3\t0x6FD7\n0x9DF4\t0x6FD8\n0x9DF5\t0x6FD9\n0x9DF6\t0x6FDA\n0x9DF7\t0x6FDB\n0x9DF8\t0x6FDC\n0x9DF9\t0x6FDD\n0x9DFA\t0x6FDF\n0x9DFB\t0x6FE2\n0x9DFC\t0x6FE3\n0x9DFD\t0x6FE4\n0x9DFE\t0x6FE5\n0x9E40\t0x6FE6\n0x9E41\t0x6FE7\n0x9E42\t0x6FE8\n0x9E43\t0x6FE9\n0x9E44\t0x6FEA\n0x9E45\t0x6FEB\n0x9E46\t0x6FEC\n0x9E47\t0x6FED\n0x9E48\t0x6FF0\n0x9E49\t0x6FF1\n0x9E4A\t0x6FF2\n0x9E4B\t0x6FF3\n0x9E4C\t0x6FF4\n0x9E4D\t0x6FF5\n0x9E4E\t0x6FF6\n0x9E4F\t0x6FF7\n0x9E50\t0x6FF8\n0x9E51\t0x6FF9\n0x9E52\t0x6FFA\n0x9E53\t0x6FFB\n0x9E54\t0x6FFC\n0x9E55\t0x6FFD\n0x9E56\t0x6FFE\n0x9E57\t0x6FFF\n0x9E58\t0x7000\n0x9E59\t0x7001\n0x9E5A\t0x7002\n0x9E5B\t0x7003\n0x9E5C\t0x7004\n0x9E5D\t0x7005\n0x9E5E\t0x7006\n0x9E5F\t0x7007\n0x9E60\t0x7008\n0x9E61\t0x7009\n0x9E62\t0x700A\n0x9E63\t0x700B\n0x9E64\t0x700C\n0x9E65\t0x700D\n0x9E66\t0x700E\n0x9E67\t0x700F\n0x9E68\t0x7010\n0x9E69\t0x7012\n0x9E6A\t0x7013\n0x9E6B\t0x7014\n0x9E6C\t0x7015\n0x9E6D\t0x7016\n0x9E6E\t0x7017\n0x9E6F\t0x7018\n0x9E70\t0x7019\n0x9E71\t0x701C\n0x9E72\t0x701D\n0x9E73\t0x701E\n0x9E74\t0x701F\n0x9E75\t0x7020\n0x9E76\t0x7021\n0x9E77\t0x7022\n0x9E78\t0x7024\n0x9E79\t0x7025\n0x9E7A\t0x7026\n0x9E7B\t0x7027\n0x9E7C\t0x7028\n0x9E7D\t0x7029\n0x9E7E\t0x702A\n0x9E80\t0x702B\n0x9E81\t0x702C\n0x9E82\t0x702D\n0x9E83\t0x702E\n0x9E84\t0x702F\n0x9E85\t0x7030\n0x9E86\t0x7031\n0x9E87\t0x7032\n0x9E88\t0x7033\n0x9E89\t0x7034\n0x9E8A\t0x7036\n0x9E8B\t0x7037\n0x9E8C\t0x7038\n0x9E8D\t0x703A\n0x9E8E\t0x703B\n0x9E8F\t0x703C\n0x9E90\t0x703D\n0x9E91\t0x703E\n0x9E92\t0x703F\n0x9E93\t0x7040\n0x9E94\t0x7041\n0x9E95\t0x7042\n0x9E96\t0x7043\n0x9E97\t0x7044\n0x9E98\t0x7045\n0x9E99\t0x7046\n0x9E9A\t0x7047\n0x9E9B\t0x7048\n0x9E9C\t0x7049\n0x9E9D\t0x704A\n0x9E9E\t0x704B\n0x9E9F\t0x704D\n0x9EA0\t0x704E\n0x9EA1\t0x7050\n0x9EA2\t0x7051\n0x9EA3\t0x7052\n0x9EA4\t0x7053\n0x9EA5\t0x7054\n0x9EA6\t0x7055\n0x9EA7\t0x7056\n0x9EA8\t0x7057\n0x9EA9\t0x7058\n0x9EAA\t0x7059\n0x9EAB\t0x705A\n0x9EAC\t0x705B\n0x9EAD\t0x705C\n0x9EAE\t0x705D\n0x9EAF\t0x705F\n0x9EB0\t0x7060\n0x9EB1\t0x7061\n0x9EB2\t0x7062\n0x9EB3\t0x7063\n0x9EB4\t0x7064\n0x9EB5\t0x7065\n0x9EB6\t0x7066\n0x9EB7\t0x7067\n0x9EB8\t0x7068\n0x9EB9\t0x7069\n0x9EBA\t0x706A\n0x9EBB\t0x706E\n0x9EBC\t0x7071\n0x9EBD\t0x7072\n0x9EBE\t0x7073\n0x9EBF\t0x7074\n0x9EC0\t0x7077\n0x9EC1\t0x7079\n0x9EC2\t0x707A\n0x9EC3\t0x707B\n0x9EC4\t0x707D\n0x9EC5\t0x7081\n0x9EC6\t0x7082\n0x9EC7\t0x7083\n0x9EC8\t0x7084\n0x9EC9\t0x7086\n0x9ECA\t0x7087\n0x9ECB\t0x7088\n0x9ECC\t0x708B\n0x9ECD\t0x708C\n0x9ECE\t0x708D\n0x9ECF\t0x708F\n0x9ED0\t0x7090\n0x9ED1\t0x7091\n0x9ED2\t0x7093\n0x9ED3\t0x7097\n0x9ED4\t0x7098\n0x9ED5\t0x709A\n0x9ED6\t0x709B\n0x9ED7\t0x709E\n0x9ED8\t0x709F\n0x9ED9\t0x70A0\n0x9EDA\t0x70A1\n0x9EDB\t0x70A2\n0x9EDC\t0x70A3\n0x9EDD\t0x70A4\n0x9EDE\t0x70A5\n0x9EDF\t0x70A6\n0x9EE0\t0x70A7\n0x9EE1\t0x70A8\n0x9EE2\t0x70A9\n0x9EE3\t0x70AA\n0x9EE4\t0x70B0\n0x9EE5\t0x70B2\n0x9EE6\t0x70B4\n0x9EE7\t0x70B5\n0x9EE8\t0x70B6\n0x9EE9\t0x70BA\n0x9EEA\t0x70BE\n0x9EEB\t0x70BF\n0x9EEC\t0x70C4\n0x9EED\t0x70C5\n0x9EEE\t0x70C6\n0x9EEF\t0x70C7\n0x9EF0\t0x70C9\n0x9EF1\t0x70CB\n0x9EF2\t0x70CC\n0x9EF3\t0x70CD\n0x9EF4\t0x70CE\n0x9EF5\t0x70CF\n0x9EF6\t0x70D0\n0x9EF7\t0x70D1\n0x9EF8\t0x70D2\n0x9EF9\t0x70D3\n0x9EFA\t0x70D4\n0x9EFB\t0x70D5\n0x9EFC\t0x70D6\n0x9EFD\t0x70D7\n0x9EFE\t0x70DA\n0x9F40\t0x70DC\n0x9F41\t0x70DD\n0x9F42\t0x70DE\n0x9F43\t0x70E0\n0x9F44\t0x70E1\n0x9F45\t0x70E2\n0x9F46\t0x70E3\n0x9F47\t0x70E5\n0x9F48\t0x70EA\n0x9F49\t0x70EE\n0x9F4A\t0x70F0\n0x9F4B\t0x70F1\n0x9F4C\t0x70F2\n0x9F4D\t0x70F3\n0x9F4E\t0x70F4\n0x9F4F\t0x70F5\n0x9F50\t0x70F6\n0x9F51\t0x70F8\n0x9F52\t0x70FA\n0x9F53\t0x70FB\n0x9F54\t0x70FC\n0x9F55\t0x70FE\n0x9F56\t0x70FF\n0x9F57\t0x7100\n0x9F58\t0x7101\n0x9F59\t0x7102\n0x9F5A\t0x7103\n0x9F5B\t0x7104\n0x9F5C\t0x7105\n0x9F5D\t0x7106\n0x9F5E\t0x7107\n0x9F5F\t0x7108\n0x9F60\t0x710B\n0x9F61\t0x710C\n0x9F62\t0x710D\n0x9F63\t0x710E\n0x9F64\t0x710F\n0x9F65\t0x7111\n0x9F66\t0x7112\n0x9F67\t0x7114\n0x9F68\t0x7117\n0x9F69\t0x711B\n0x9F6A\t0x711C\n0x9F6B\t0x711D\n0x9F6C\t0x711E\n0x9F6D\t0x711F\n0x9F6E\t0x7120\n0x9F6F\t0x7121\n0x9F70\t0x7122\n0x9F71\t0x7123\n0x9F72\t0x7124\n0x9F73\t0x7125\n0x9F74\t0x7127\n0x9F75\t0x7128\n0x9F76\t0x7129\n0x9F77\t0x712A\n0x9F78\t0x712B\n0x9F79\t0x712C\n0x9F7A\t0x712D\n0x9F7B\t0x712E\n0x9F7C\t0x7132\n0x9F7D\t0x7133\n0x9F7E\t0x7134\n0x9F80\t0x7135\n0x9F81\t0x7137\n0x9F82\t0x7138\n0x9F83\t0x7139\n0x9F84\t0x713A\n0x9F85\t0x713B\n0x9F86\t0x713C\n0x9F87\t0x713D\n0x9F88\t0x713E\n0x9F89\t0x713F\n0x9F8A\t0x7140\n0x9F8B\t0x7141\n0x9F8C\t0x7142\n0x9F8D\t0x7143\n0x9F8E\t0x7144\n0x9F8F\t0x7146\n0x9F90\t0x7147\n0x9F91\t0x7148\n0x9F92\t0x7149\n0x9F93\t0x714B\n0x9F94\t0x714D\n0x9F95\t0x714F\n0x9F96\t0x7150\n0x9F97\t0x7151\n0x9F98\t0x7152\n0x9F99\t0x7153\n0x9F9A\t0x7154\n0x9F9B\t0x7155\n0x9F9C\t0x7156\n0x9F9D\t0x7157\n0x9F9E\t0x7158\n0x9F9F\t0x7159\n0x9FA0\t0x715A\n0x9FA1\t0x715B\n0x9FA2\t0x715D\n0x9FA3\t0x715F\n0x9FA4\t0x7160\n0x9FA5\t0x7161\n0x9FA6\t0x7162\n0x9FA7\t0x7163\n0x9FA8\t0x7165\n0x9FA9\t0x7169\n0x9FAA\t0x716A\n0x9FAB\t0x716B\n0x9FAC\t0x716C\n0x9FAD\t0x716D\n0x9FAE\t0x716F\n0x9FAF\t0x7170\n0x9FB0\t0x7171\n0x9FB1\t0x7174\n0x9FB2\t0x7175\n0x9FB3\t0x7176\n0x9FB4\t0x7177\n0x9FB5\t0x7179\n0x9FB6\t0x717B\n0x9FB7\t0x717C\n0x9FB8\t0x717E\n0x9FB9\t0x717F\n0x9FBA\t0x7180\n0x9FBB\t0x7181\n0x9FBC\t0x7182\n0x9FBD\t0x7183\n0x9FBE\t0x7185\n0x9FBF\t0x7186\n0x9FC0\t0x7187\n0x9FC1\t0x7188\n0x9FC2\t0x7189\n0x9FC3\t0x718B\n0x9FC4\t0x718C\n0x9FC5\t0x718D\n0x9FC6\t0x718E\n0x9FC7\t0x7190\n0x9FC8\t0x7191\n0x9FC9\t0x7192\n0x9FCA\t0x7193\n0x9FCB\t0x7195\n0x9FCC\t0x7196\n0x9FCD\t0x7197\n0x9FCE\t0x719A\n0x9FCF\t0x719B\n0x9FD0\t0x719C\n0x9FD1\t0x719D\n0x9FD2\t0x719E\n0x9FD3\t0x71A1\n0x9FD4\t0x71A2\n0x9FD5\t0x71A3\n0x9FD6\t0x71A4\n0x9FD7\t0x71A5\n0x9FD8\t0x71A6\n0x9FD9\t0x71A7\n0x9FDA\t0x71A9\n0x9FDB\t0x71AA\n0x9FDC\t0x71AB\n0x9FDD\t0x71AD\n0x9FDE\t0x71AE\n0x9FDF\t0x71AF\n0x9FE0\t0x71B0\n0x9FE1\t0x71B1\n0x9FE2\t0x71B2\n0x9FE3\t0x71B4\n0x9FE4\t0x71B6\n0x9FE5\t0x71B7\n0x9FE6\t0x71B8\n0x9FE7\t0x71BA\n0x9FE8\t0x71BB\n0x9FE9\t0x71BC\n0x9FEA\t0x71BD\n0x9FEB\t0x71BE\n0x9FEC\t0x71BF\n0x9FED\t0x71C0\n0x9FEE\t0x71C1\n0x9FEF\t0x71C2\n0x9FF0\t0x71C4\n0x9FF1\t0x71C5\n0x9FF2\t0x71C6\n0x9FF3\t0x71C7\n0x9FF4\t0x71C8\n0x9FF5\t0x71C9\n0x9FF6\t0x71CA\n0x9FF7\t0x71CB\n0x9FF8\t0x71CC\n0x9FF9\t0x71CD\n0x9FFA\t0x71CF\n0x9FFB\t0x71D0\n0x9FFC\t0x71D1\n0x9FFD\t0x71D2\n0x9FFE\t0x71D3\n0xA040\t0x71D6\n0xA041\t0x71D7\n0xA042\t0x71D8\n0xA043\t0x71D9\n0xA044\t0x71DA\n0xA045\t0x71DB\n0xA046\t0x71DC\n0xA047\t0x71DD\n0xA048\t0x71DE\n0xA049\t0x71DF\n0xA04A\t0x71E1\n0xA04B\t0x71E2\n0xA04C\t0x71E3\n0xA04D\t0x71E4\n0xA04E\t0x71E6\n0xA04F\t0x71E8\n0xA050\t0x71E9\n0xA051\t0x71EA\n0xA052\t0x71EB\n0xA053\t0x71EC\n0xA054\t0x71ED\n0xA055\t0x71EF\n0xA056\t0x71F0\n0xA057\t0x71F1\n0xA058\t0x71F2\n0xA059\t0x71F3\n0xA05A\t0x71F4\n0xA05B\t0x71F5\n0xA05C\t0x71F6\n0xA05D\t0x71F7\n0xA05E\t0x71F8\n0xA05F\t0x71FA\n0xA060\t0x71FB\n0xA061\t0x71FC\n0xA062\t0x71FD\n0xA063\t0x71FE\n0xA064\t0x71FF\n0xA065\t0x7200\n0xA066\t0x7201\n0xA067\t0x7202\n0xA068\t0x7203\n0xA069\t0x7204\n0xA06A\t0x7205\n0xA06B\t0x7207\n0xA06C\t0x7208\n0xA06D\t0x7209\n0xA06E\t0x720A\n0xA06F\t0x720B\n0xA070\t0x720C\n0xA071\t0x720D\n0xA072\t0x720E\n0xA073\t0x720F\n0xA074\t0x7210\n0xA075\t0x7211\n0xA076\t0x7212\n0xA077\t0x7213\n0xA078\t0x7214\n0xA079\t0x7215\n0xA07A\t0x7216\n0xA07B\t0x7217\n0xA07C\t0x7218\n0xA07D\t0x7219\n0xA07E\t0x721A\n0xA080\t0x721B\n0xA081\t0x721C\n0xA082\t0x721E\n0xA083\t0x721F\n0xA084\t0x7220\n0xA085\t0x7221\n0xA086\t0x7222\n0xA087\t0x7223\n0xA088\t0x7224\n0xA089\t0x7225\n0xA08A\t0x7226\n0xA08B\t0x7227\n0xA08C\t0x7229\n0xA08D\t0x722B\n0xA08E\t0x722D\n0xA08F\t0x722E\n0xA090\t0x722F\n0xA091\t0x7232\n0xA092\t0x7233\n0xA093\t0x7234\n0xA094\t0x723A\n0xA095\t0x723C\n0xA096\t0x723E\n0xA097\t0x7240\n0xA098\t0x7241\n0xA099\t0x7242\n0xA09A\t0x7243\n0xA09B\t0x7244\n0xA09C\t0x7245\n0xA09D\t0x7246\n0xA09E\t0x7249\n0xA09F\t0x724A\n0xA0A0\t0x724B\n0xA0A1\t0x724E\n0xA0A2\t0x724F\n0xA0A3\t0x7250\n0xA0A4\t0x7251\n0xA0A5\t0x7253\n0xA0A6\t0x7254\n0xA0A7\t0x7255\n0xA0A8\t0x7257\n0xA0A9\t0x7258\n0xA0AA\t0x725A\n0xA0AB\t0x725C\n0xA0AC\t0x725E\n0xA0AD\t0x7260\n0xA0AE\t0x7263\n0xA0AF\t0x7264\n0xA0B0\t0x7265\n0xA0B1\t0x7268\n0xA0B2\t0x726A\n0xA0B3\t0x726B\n0xA0B4\t0x726C\n0xA0B5\t0x726D\n0xA0B6\t0x7270\n0xA0B7\t0x7271\n0xA0B8\t0x7273\n0xA0B9\t0x7274\n0xA0BA\t0x7276\n0xA0BB\t0x7277\n0xA0BC\t0x7278\n0xA0BD\t0x727B\n0xA0BE\t0x727C\n0xA0BF\t0x727D\n0xA0C0\t0x7282\n0xA0C1\t0x7283\n0xA0C2\t0x7285\n0xA0C3\t0x7286\n0xA0C4\t0x7287\n0xA0C5\t0x7288\n0xA0C6\t0x7289\n0xA0C7\t0x728C\n0xA0C8\t0x728E\n0xA0C9\t0x7290\n0xA0CA\t0x7291\n0xA0CB\t0x7293\n0xA0CC\t0x7294\n0xA0CD\t0x7295\n0xA0CE\t0x7296\n0xA0CF\t0x7297\n0xA0D0\t0x7298\n0xA0D1\t0x7299\n0xA0D2\t0x729A\n0xA0D3\t0x729B\n0xA0D4\t0x729C\n0xA0D5\t0x729D\n0xA0D6\t0x729E\n0xA0D7\t0x72A0\n0xA0D8\t0x72A1\n0xA0D9\t0x72A2\n0xA0DA\t0x72A3\n0xA0DB\t0x72A4\n0xA0DC\t0x72A5\n0xA0DD\t0x72A6\n0xA0DE\t0x72A7\n0xA0DF\t0x72A8\n0xA0E0\t0x72A9\n0xA0E1\t0x72AA\n0xA0E2\t0x72AB\n0xA0E3\t0x72AE\n0xA0E4\t0x72B1\n0xA0E5\t0x72B2\n0xA0E6\t0x72B3\n0xA0E7\t0x72B5\n0xA0E8\t0x72BA\n0xA0E9\t0x72BB\n0xA0EA\t0x72BC\n0xA0EB\t0x72BD\n0xA0EC\t0x72BE\n0xA0ED\t0x72BF\n0xA0EE\t0x72C0\n0xA0EF\t0x72C5\n0xA0F0\t0x72C6\n0xA0F1\t0x72C7\n0xA0F2\t0x72C9\n0xA0F3\t0x72CA\n0xA0F4\t0x72CB\n0xA0F5\t0x72CC\n0xA0F6\t0x72CF\n0xA0F7\t0x72D1\n0xA0F8\t0x72D3\n0xA0F9\t0x72D4\n0xA0FA\t0x72D5\n0xA0FB\t0x72D6\n0xA0FC\t0x72D8\n0xA0FD\t0x72DA\n0xA0FE\t0x72DB\n0xA140\t0xE4C6\n0xA141\t0xE4C7\n0xA142\t0xE4C8\n0xA143\t0xE4C9\n0xA144\t0xE4CA\n0xA145\t0xE4CB\n0xA146\t0xE4CC\n0xA147\t0xE4CD\n0xA148\t0xE4CE\n0xA149\t0xE4CF\n0xA14A\t0xE4D0\n0xA14B\t0xE4D1\n0xA14C\t0xE4D2\n0xA14D\t0xE4D3\n0xA14E\t0xE4D4\n0xA14F\t0xE4D5\n0xA150\t0xE4D6\n0xA151\t0xE4D7\n0xA152\t0xE4D8\n0xA153\t0xE4D9\n0xA154\t0xE4DA\n0xA155\t0xE4DB\n0xA156\t0xE4DC\n0xA157\t0xE4DD\n0xA158\t0xE4DE\n0xA159\t0xE4DF\n0xA15A\t0xE4E0\n0xA15B\t0xE4E1\n0xA15C\t0xE4E2\n0xA15D\t0xE4E3\n0xA15E\t0xE4E4\n0xA15F\t0xE4E5\n0xA160\t0xE4E6\n0xA161\t0xE4E7\n0xA162\t0xE4E8\n0xA163\t0xE4E9\n0xA164\t0xE4EA\n0xA165\t0xE4EB\n0xA166\t0xE4EC\n0xA167\t0xE4ED\n0xA168\t0xE4EE\n0xA169\t0xE4EF\n0xA16A\t0xE4F0\n0xA16B\t0xE4F1\n0xA16C\t0xE4F2\n0xA16D\t0xE4F3\n0xA16E\t0xE4F4\n0xA16F\t0xE4F5\n0xA170\t0xE4F6\n0xA171\t0xE4F7\n0xA172\t0xE4F8\n0xA173\t0xE4F9\n0xA174\t0xE4FA\n0xA175\t0xE4FB\n0xA176\t0xE4FC\n0xA177\t0xE4FD\n0xA178\t0xE4FE\n0xA179\t0xE4FF\n0xA17A\t0xE500\n0xA17B\t0xE501\n0xA17C\t0xE502\n0xA17D\t0xE503\n0xA17E\t0xE504\n0xA180\t0xE505\n0xA181\t0xE506\n0xA182\t0xE507\n0xA183\t0xE508\n0xA184\t0xE509\n0xA185\t0xE50A\n0xA186\t0xE50B\n0xA187\t0xE50C\n0xA188\t0xE50D\n0xA189\t0xE50E\n0xA18A\t0xE50F\n0xA18B\t0xE510\n0xA18C\t0xE511\n0xA18D\t0xE512\n0xA18E\t0xE513\n0xA18F\t0xE514\n0xA190\t0xE515\n0xA191\t0xE516\n0xA192\t0xE517\n0xA193\t0xE518\n0xA194\t0xE519\n0xA195\t0xE51A\n0xA196\t0xE51B\n0xA197\t0xE51C\n0xA198\t0xE51D\n0xA199\t0xE51E\n0xA19A\t0xE51F\n0xA19B\t0xE520\n0xA19C\t0xE521\n0xA19D\t0xE522\n0xA19E\t0xE523\n0xA19F\t0xE524\n0xA1A0\t0xE525\n0xA1A1\t0x3000\n0xA1A2\t0x3001\n0xA1A3\t0x3002\n0xA1A4\t0x00B7\n0xA1A5\t0x02C9\n0xA1A6\t0x02C7\n0xA1A7\t0x00A8\n0xA1A8\t0x3003\n0xA1A9\t0x3005\n0xA1AA\t0x2014\n0xA1AB\t0xFF5E\n0xA1AC\t0x2016\n0xA1AD\t0x2026\n0xA1AE\t0x2018\n0xA1AF\t0x2019\n0xA1B0\t0x201C\n0xA1B1\t0x201D\n0xA1B2\t0x3014\n0xA1B3\t0x3015\n0xA1B4\t0x3008\n0xA1B5\t0x3009\n0xA1B6\t0x300A\n0xA1B7\t0x300B\n0xA1B8\t0x300C\n0xA1B9\t0x300D\n0xA1BA\t0x300E\n0xA1BB\t0x300F\n0xA1BC\t0x3016\n0xA1BD\t0x3017\n0xA1BE\t0x3010\n0xA1BF\t0x3011\n0xA1C0\t0x00B1\n0xA1C1\t0x00D7\n0xA1C2\t0x00F7\n0xA1C3\t0x2236\n0xA1C4\t0x2227\n0xA1C5\t0x2228\n0xA1C6\t0x2211\n0xA1C7\t0x220F\n0xA1C8\t0x222A\n0xA1C9\t0x2229\n0xA1CA\t0x2208\n0xA1CB\t0x2237\n0xA1CC\t0x221A\n0xA1CD\t0x22A5\n0xA1CE\t0x2225\n0xA1CF\t0x2220\n0xA1D0\t0x2312\n0xA1D1\t0x2299\n0xA1D2\t0x222B\n0xA1D3\t0x222E\n0xA1D4\t0x2261\n0xA1D5\t0x224C\n0xA1D6\t0x2248\n0xA1D7\t0x223D\n0xA1D8\t0x221D\n0xA1D9\t0x2260\n0xA1DA\t0x226E\n0xA1DB\t0x226F\n0xA1DC\t0x2264\n0xA1DD\t0x2265\n0xA1DE\t0x221E\n0xA1DF\t0x2235\n0xA1E0\t0x2234\n0xA1E1\t0x2642\n0xA1E2\t0x2640\n0xA1E3\t0x00B0\n0xA1E4\t0x2032\n0xA1E5\t0x2033\n0xA1E6\t0x2103\n0xA1E7\t0xFF04\n0xA1E8\t0x00A4\n0xA1E9\t0xFFE0\n0xA1EA\t0xFFE1\n0xA1EB\t0x2030\n0xA1EC\t0x00A7\n0xA1ED\t0x2116\n0xA1EE\t0x2606\n0xA1EF\t0x2605\n0xA1F0\t0x25CB\n0xA1F1\t0x25CF\n0xA1F2\t0x25CE\n0xA1F3\t0x25C7\n0xA1F4\t0x25C6\n0xA1F5\t0x25A1\n0xA1F6\t0x25A0\n0xA1F7\t0x25B3\n0xA1F8\t0x25B2\n0xA1F9\t0x203B\n0xA1FA\t0x2192\n0xA1FB\t0x2190\n0xA1FC\t0x2191\n0xA1FD\t0x2193\n0xA1FE\t0x3013\n0xA240\t0xE526\n0xA241\t0xE527\n0xA242\t0xE528\n0xA243\t0xE529\n0xA244\t0xE52A\n0xA245\t0xE52B\n0xA246\t0xE52C\n0xA247\t0xE52D\n0xA248\t0xE52E\n0xA249\t0xE52F\n0xA24A\t0xE530\n0xA24B\t0xE531\n0xA24C\t0xE532\n0xA24D\t0xE533\n0xA24E\t0xE534\n0xA24F\t0xE535\n0xA250\t0xE536\n0xA251\t0xE537\n0xA252\t0xE538\n0xA253\t0xE539\n0xA254\t0xE53A\n0xA255\t0xE53B\n0xA256\t0xE53C\n0xA257\t0xE53D\n0xA258\t0xE53E\n0xA259\t0xE53F\n0xA25A\t0xE540\n0xA25B\t0xE541\n0xA25C\t0xE542\n0xA25D\t0xE543\n0xA25E\t0xE544\n0xA25F\t0xE545\n0xA260\t0xE546\n0xA261\t0xE547\n0xA262\t0xE548\n0xA263\t0xE549\n0xA264\t0xE54A\n0xA265\t0xE54B\n0xA266\t0xE54C\n0xA267\t0xE54D\n0xA268\t0xE54E\n0xA269\t0xE54F\n0xA26A\t0xE550\n0xA26B\t0xE551\n0xA26C\t0xE552\n0xA26D\t0xE553\n0xA26E\t0xE554\n0xA26F\t0xE555\n0xA270\t0xE556\n0xA271\t0xE557\n0xA272\t0xE558\n0xA273\t0xE559\n0xA274\t0xE55A\n0xA275\t0xE55B\n0xA276\t0xE55C\n0xA277\t0xE55D\n0xA278\t0xE55E\n0xA279\t0xE55F\n0xA27A\t0xE560\n0xA27B\t0xE561\n0xA27C\t0xE562\n0xA27D\t0xE563\n0xA27E\t0xE564\n0xA280\t0xE565\n0xA281\t0xE566\n0xA282\t0xE567\n0xA283\t0xE568\n0xA284\t0xE569\n0xA285\t0xE56A\n0xA286\t0xE56B\n0xA287\t0xE56C\n0xA288\t0xE56D\n0xA289\t0xE56E\n0xA28A\t0xE56F\n0xA28B\t0xE570\n0xA28C\t0xE571\n0xA28D\t0xE572\n0xA28E\t0xE573\n0xA28F\t0xE574\n0xA290\t0xE575\n0xA291\t0xE576\n0xA292\t0xE577\n0xA293\t0xE578\n0xA294\t0xE579\n0xA295\t0xE57A\n0xA296\t0xE57B\n0xA297\t0xE57C\n0xA298\t0xE57D\n0xA299\t0xE57E\n0xA29A\t0xE57F\n0xA29B\t0xE580\n0xA29C\t0xE581\n0xA29D\t0xE582\n0xA29E\t0xE583\n0xA29F\t0xE584\n0xA2A0\t0xE585\n0xA2A1\t0x2170\n0xA2A2\t0x2171\n0xA2A3\t0x2172\n0xA2A4\t0x2173\n0xA2A5\t0x2174\n0xA2A6\t0x2175\n0xA2A7\t0x2176\n0xA2A8\t0x2177\n0xA2A9\t0x2178\n0xA2AA\t0x2179\n0xA2AB\t0xE766\n0xA2AC\t0xE767\n0xA2AD\t0xE768\n0xA2AE\t0xE769\n0xA2AF\t0xE76A\n0xA2B0\t0xE76B\n0xA2B1\t0x2488\n0xA2B2\t0x2489\n0xA2B3\t0x248A\n0xA2B4\t0x248B\n0xA2B5\t0x248C\n0xA2B6\t0x248D\n0xA2B7\t0x248E\n0xA2B8\t0x248F\n0xA2B9\t0x2490\n0xA2BA\t0x2491\n0xA2BB\t0x2492\n0xA2BC\t0x2493\n0xA2BD\t0x2494\n0xA2BE\t0x2495\n0xA2BF\t0x2496\n0xA2C0\t0x2497\n0xA2C1\t0x2498\n0xA2C2\t0x2499\n0xA2C3\t0x249A\n0xA2C4\t0x249B\n0xA2C5\t0x2474\n0xA2C6\t0x2475\n0xA2C7\t0x2476\n0xA2C8\t0x2477\n0xA2C9\t0x2478\n0xA2CA\t0x2479\n0xA2CB\t0x247A\n0xA2CC\t0x247B\n0xA2CD\t0x247C\n0xA2CE\t0x247D\n0xA2CF\t0x247E\n0xA2D0\t0x247F\n0xA2D1\t0x2480\n0xA2D2\t0x2481\n0xA2D3\t0x2482\n0xA2D4\t0x2483\n0xA2D5\t0x2484\n0xA2D6\t0x2485\n0xA2D7\t0x2486\n0xA2D8\t0x2487\n0xA2D9\t0x2460\n0xA2DA\t0x2461\n0xA2DB\t0x2462\n0xA2DC\t0x2463\n0xA2DD\t0x2464\n0xA2DE\t0x2465\n0xA2DF\t0x2466\n0xA2E0\t0x2467\n0xA2E1\t0x2468\n0xA2E2\t0x2469\n0xA2E3\t0x20AC\n0xA2E4\t0xE76D\n0xA2E5\t0x3220\n0xA2E6\t0x3221\n0xA2E7\t0x3222\n0xA2E8\t0x3223\n0xA2E9\t0x3224\n0xA2EA\t0x3225\n0xA2EB\t0x3226\n0xA2EC\t0x3227\n0xA2ED\t0x3228\n0xA2EE\t0x3229\n0xA2EF\t0xE76E\n0xA2F0\t0xE76F\n0xA2F1\t0x2160\n0xA2F2\t0x2161\n0xA2F3\t0x2162\n0xA2F4\t0x2163\n0xA2F5\t0x2164\n0xA2F6\t0x2165\n0xA2F7\t0x2166\n0xA2F8\t0x2167\n0xA2F9\t0x2168\n0xA2FA\t0x2169\n0xA2FB\t0x216A\n0xA2FC\t0x216B\n0xA2FD\t0xE770\n0xA2FE\t0xE771\n0xA340\t0xE586\n0xA341\t0xE587\n0xA342\t0xE588\n0xA343\t0xE589\n0xA344\t0xE58A\n0xA345\t0xE58B\n0xA346\t0xE58C\n0xA347\t0xE58D\n0xA348\t0xE58E\n0xA349\t0xE58F\n0xA34A\t0xE590\n0xA34B\t0xE591\n0xA34C\t0xE592\n0xA34D\t0xE593\n0xA34E\t0xE594\n0xA34F\t0xE595\n0xA350\t0xE596\n0xA351\t0xE597\n0xA352\t0xE598\n0xA353\t0xE599\n0xA354\t0xE59A\n0xA355\t0xE59B\n0xA356\t0xE59C\n0xA357\t0xE59D\n0xA358\t0xE59E\n0xA359\t0xE59F\n0xA35A\t0xE5A0\n0xA35B\t0xE5A1\n0xA35C\t0xE5A2\n0xA35D\t0xE5A3\n0xA35E\t0xE5A4\n0xA35F\t0xE5A5\n0xA360\t0xE5A6\n0xA361\t0xE5A7\n0xA362\t0xE5A8\n0xA363\t0xE5A9\n0xA364\t0xE5AA\n0xA365\t0xE5AB\n0xA366\t0xE5AC\n0xA367\t0xE5AD\n0xA368\t0xE5AE\n0xA369\t0xE5AF\n0xA36A\t0xE5B0\n0xA36B\t0xE5B1\n0xA36C\t0xE5B2\n0xA36D\t0xE5B3\n0xA36E\t0xE5B4\n0xA36F\t0xE5B5\n0xA370\t0xE5B6\n0xA371\t0xE5B7\n0xA372\t0xE5B8\n0xA373\t0xE5B9\n0xA374\t0xE5BA\n0xA375\t0xE5BB\n0xA376\t0xE5BC\n0xA377\t0xE5BD\n0xA378\t0xE5BE\n0xA379\t0xE5BF\n0xA37A\t0xE5C0\n0xA37B\t0xE5C1\n0xA37C\t0xE5C2\n0xA37D\t0xE5C3\n0xA37E\t0xE5C4\n0xA380\t0xE5C5\n0xA381\t0xE5C6\n0xA382\t0xE5C7\n0xA383\t0xE5C8\n0xA384\t0xE5C9\n0xA385\t0xE5CA\n0xA386\t0xE5CB\n0xA387\t0xE5CC\n0xA388\t0xE5CD\n0xA389\t0xE5CE\n0xA38A\t0xE5CF\n0xA38B\t0xE5D0\n0xA38C\t0xE5D1\n0xA38D\t0xE5D2\n0xA38E\t0xE5D3\n0xA38F\t0xE5D4\n0xA390\t0xE5D5\n0xA391\t0xE5D6\n0xA392\t0xE5D7\n0xA393\t0xE5D8\n0xA394\t0xE5D9\n0xA395\t0xE5DA\n0xA396\t0xE5DB\n0xA397\t0xE5DC\n0xA398\t0xE5DD\n0xA399\t0xE5DE\n0xA39A\t0xE5DF\n0xA39B\t0xE5E0\n0xA39C\t0xE5E1\n0xA39D\t0xE5E2\n0xA39E\t0xE5E3\n0xA39F\t0xE5E4\n0xA3A0\t0xE5E5\n0xA3A1\t0xFF01\n0xA3A2\t0xFF02\n0xA3A3\t0xFF03\n0xA3A4\t0xFFE5\n0xA3A5\t0xFF05\n0xA3A6\t0xFF06\n0xA3A7\t0xFF07\n0xA3A8\t0xFF08\n0xA3A9\t0xFF09\n0xA3AA\t0xFF0A\n0xA3AB\t0xFF0B\n0xA3AC\t0xFF0C\n0xA3AD\t0xFF0D\n0xA3AE\t0xFF0E\n0xA3AF\t0xFF0F\n0xA3B0\t0xFF10\n0xA3B1\t0xFF11\n0xA3B2\t0xFF12\n0xA3B3\t0xFF13\n0xA3B4\t0xFF14\n0xA3B5\t0xFF15\n0xA3B6\t0xFF16\n0xA3B7\t0xFF17\n0xA3B8\t0xFF18\n0xA3B9\t0xFF19\n0xA3BA\t0xFF1A\n0xA3BB\t0xFF1B\n0xA3BC\t0xFF1C\n0xA3BD\t0xFF1D\n0xA3BE\t0xFF1E\n0xA3BF\t0xFF1F\n0xA3C0\t0xFF20\n0xA3C1\t0xFF21\n0xA3C2\t0xFF22\n0xA3C3\t0xFF23\n0xA3C4\t0xFF24\n0xA3C5\t0xFF25\n0xA3C6\t0xFF26\n0xA3C7\t0xFF27\n0xA3C8\t0xFF28\n0xA3C9\t0xFF29\n0xA3CA\t0xFF2A\n0xA3CB\t0xFF2B\n0xA3CC\t0xFF2C\n0xA3CD\t0xFF2D\n0xA3CE\t0xFF2E\n0xA3CF\t0xFF2F\n0xA3D0\t0xFF30\n0xA3D1\t0xFF31\n0xA3D2\t0xFF32\n0xA3D3\t0xFF33\n0xA3D4\t0xFF34\n0xA3D5\t0xFF35\n0xA3D6\t0xFF36\n0xA3D7\t0xFF37\n0xA3D8\t0xFF38\n0xA3D9\t0xFF39\n0xA3DA\t0xFF3A\n0xA3DB\t0xFF3B\n0xA3DC\t0xFF3C\n0xA3DD\t0xFF3D\n0xA3DE\t0xFF3E\n0xA3DF\t0xFF3F\n0xA3E0\t0xFF40\n0xA3E1\t0xFF41\n0xA3E2\t0xFF42\n0xA3E3\t0xFF43\n0xA3E4\t0xFF44\n0xA3E5\t0xFF45\n0xA3E6\t0xFF46\n0xA3E7\t0xFF47\n0xA3E8\t0xFF48\n0xA3E9\t0xFF49\n0xA3EA\t0xFF4A\n0xA3EB\t0xFF4B\n0xA3EC\t0xFF4C\n0xA3ED\t0xFF4D\n0xA3EE\t0xFF4E\n0xA3EF\t0xFF4F\n0xA3F0\t0xFF50\n0xA3F1\t0xFF51\n0xA3F2\t0xFF52\n0xA3F3\t0xFF53\n0xA3F4\t0xFF54\n0xA3F5\t0xFF55\n0xA3F6\t0xFF56\n0xA3F7\t0xFF57\n0xA3F8\t0xFF58\n0xA3F9\t0xFF59\n0xA3FA\t0xFF5A\n0xA3FB\t0xFF5B\n0xA3FC\t0xFF5C\n0xA3FD\t0xFF5D\n0xA3FE\t0xFFE3\n0xA440\t0xE5E6\n0xA441\t0xE5E7\n0xA442\t0xE5E8\n0xA443\t0xE5E9\n0xA444\t0xE5EA\n0xA445\t0xE5EB\n0xA446\t0xE5EC\n0xA447\t0xE5ED\n0xA448\t0xE5EE\n0xA449\t0xE5EF\n0xA44A\t0xE5F0\n0xA44B\t0xE5F1\n0xA44C\t0xE5F2\n0xA44D\t0xE5F3\n0xA44E\t0xE5F4\n0xA44F\t0xE5F5\n0xA450\t0xE5F6\n0xA451\t0xE5F7\n0xA452\t0xE5F8\n0xA453\t0xE5F9\n0xA454\t0xE5FA\n0xA455\t0xE5FB\n0xA456\t0xE5FC\n0xA457\t0xE5FD\n0xA458\t0xE5FE\n0xA459\t0xE5FF\n0xA45A\t0xE600\n0xA45B\t0xE601\n0xA45C\t0xE602\n0xA45D\t0xE603\n0xA45E\t0xE604\n0xA45F\t0xE605\n0xA460\t0xE606\n0xA461\t0xE607\n0xA462\t0xE608\n0xA463\t0xE609\n0xA464\t0xE60A\n0xA465\t0xE60B\n0xA466\t0xE60C\n0xA467\t0xE60D\n0xA468\t0xE60E\n0xA469\t0xE60F\n0xA46A\t0xE610\n0xA46B\t0xE611\n0xA46C\t0xE612\n0xA46D\t0xE613\n0xA46E\t0xE614\n0xA46F\t0xE615\n0xA470\t0xE616\n0xA471\t0xE617\n0xA472\t0xE618\n0xA473\t0xE619\n0xA474\t0xE61A\n0xA475\t0xE61B\n0xA476\t0xE61C\n0xA477\t0xE61D\n0xA478\t0xE61E\n0xA479\t0xE61F\n0xA47A\t0xE620\n0xA47B\t0xE621\n0xA47C\t0xE622\n0xA47D\t0xE623\n0xA47E\t0xE624\n0xA480\t0xE625\n0xA481\t0xE626\n0xA482\t0xE627\n0xA483\t0xE628\n0xA484\t0xE629\n0xA485\t0xE62A\n0xA486\t0xE62B\n0xA487\t0xE62C\n0xA488\t0xE62D\n0xA489\t0xE62E\n0xA48A\t0xE62F\n0xA48B\t0xE630\n0xA48C\t0xE631\n0xA48D\t0xE632\n0xA48E\t0xE633\n0xA48F\t0xE634\n0xA490\t0xE635\n0xA491\t0xE636\n0xA492\t0xE637\n0xA493\t0xE638\n0xA494\t0xE639\n0xA495\t0xE63A\n0xA496\t0xE63B\n0xA497\t0xE63C\n0xA498\t0xE63D\n0xA499\t0xE63E\n0xA49A\t0xE63F\n0xA49B\t0xE640\n0xA49C\t0xE641\n0xA49D\t0xE642\n0xA49E\t0xE643\n0xA49F\t0xE644\n0xA4A0\t0xE645\n0xA4A1\t0x3041\n0xA4A2\t0x3042\n0xA4A3\t0x3043\n0xA4A4\t0x3044\n0xA4A5\t0x3045\n0xA4A6\t0x3046\n0xA4A7\t0x3047\n0xA4A8\t0x3048\n0xA4A9\t0x3049\n0xA4AA\t0x304A\n0xA4AB\t0x304B\n0xA4AC\t0x304C\n0xA4AD\t0x304D\n0xA4AE\t0x304E\n0xA4AF\t0x304F\n0xA4B0\t0x3050\n0xA4B1\t0x3051\n0xA4B2\t0x3052\n0xA4B3\t0x3053\n0xA4B4\t0x3054\n0xA4B5\t0x3055\n0xA4B6\t0x3056\n0xA4B7\t0x3057\n0xA4B8\t0x3058\n0xA4B9\t0x3059\n0xA4BA\t0x305A\n0xA4BB\t0x305B\n0xA4BC\t0x305C\n0xA4BD\t0x305D\n0xA4BE\t0x305E\n0xA4BF\t0x305F\n0xA4C0\t0x3060\n0xA4C1\t0x3061\n0xA4C2\t0x3062\n0xA4C3\t0x3063\n0xA4C4\t0x3064\n0xA4C5\t0x3065\n0xA4C6\t0x3066\n0xA4C7\t0x3067\n0xA4C8\t0x3068\n0xA4C9\t0x3069\n0xA4CA\t0x306A\n0xA4CB\t0x306B\n0xA4CC\t0x306C\n0xA4CD\t0x306D\n0xA4CE\t0x306E\n0xA4CF\t0x306F\n0xA4D0\t0x3070\n0xA4D1\t0x3071\n0xA4D2\t0x3072\n0xA4D3\t0x3073\n0xA4D4\t0x3074\n0xA4D5\t0x3075\n0xA4D6\t0x3076\n0xA4D7\t0x3077\n0xA4D8\t0x3078\n0xA4D9\t0x3079\n0xA4DA\t0x307A\n0xA4DB\t0x307B\n0xA4DC\t0x307C\n0xA4DD\t0x307D\n0xA4DE\t0x307E\n0xA4DF\t0x307F\n0xA4E0\t0x3080\n0xA4E1\t0x3081\n0xA4E2\t0x3082\n0xA4E3\t0x3083\n0xA4E4\t0x3084\n0xA4E5\t0x3085\n0xA4E6\t0x3086\n0xA4E7\t0x3087\n0xA4E8\t0x3088\n0xA4E9\t0x3089\n0xA4EA\t0x308A\n0xA4EB\t0x308B\n0xA4EC\t0x308C\n0xA4ED\t0x308D\n0xA4EE\t0x308E\n0xA4EF\t0x308F\n0xA4F0\t0x3090\n0xA4F1\t0x3091\n0xA4F2\t0x3092\n0xA4F3\t0x3093\n0xA4F4\t0xE772\n0xA4F5\t0xE773\n0xA4F6\t0xE774\n0xA4F7\t0xE775\n0xA4F8\t0xE776\n0xA4F9\t0xE777\n0xA4FA\t0xE778\n0xA4FB\t0xE779\n0xA4FC\t0xE77A\n0xA4FD\t0xE77B\n0xA4FE\t0xE77C\n0xA540\t0xE646\n0xA541\t0xE647\n0xA542\t0xE648\n0xA543\t0xE649\n0xA544\t0xE64A\n0xA545\t0xE64B\n0xA546\t0xE64C\n0xA547\t0xE64D\n0xA548\t0xE64E\n0xA549\t0xE64F\n0xA54A\t0xE650\n0xA54B\t0xE651\n0xA54C\t0xE652\n0xA54D\t0xE653\n0xA54E\t0xE654\n0xA54F\t0xE655\n0xA550\t0xE656\n0xA551\t0xE657\n0xA552\t0xE658\n0xA553\t0xE659\n0xA554\t0xE65A\n0xA555\t0xE65B\n0xA556\t0xE65C\n0xA557\t0xE65D\n0xA558\t0xE65E\n0xA559\t0xE65F\n0xA55A\t0xE660\n0xA55B\t0xE661\n0xA55C\t0xE662\n0xA55D\t0xE663\n0xA55E\t0xE664\n0xA55F\t0xE665\n0xA560\t0xE666\n0xA561\t0xE667\n0xA562\t0xE668\n0xA563\t0xE669\n0xA564\t0xE66A\n0xA565\t0xE66B\n0xA566\t0xE66C\n0xA567\t0xE66D\n0xA568\t0xE66E\n0xA569\t0xE66F\n0xA56A\t0xE670\n0xA56B\t0xE671\n0xA56C\t0xE672\n0xA56D\t0xE673\n0xA56E\t0xE674\n0xA56F\t0xE675\n0xA570\t0xE676\n0xA571\t0xE677\n0xA572\t0xE678\n0xA573\t0xE679\n0xA574\t0xE67A\n0xA575\t0xE67B\n0xA576\t0xE67C\n0xA577\t0xE67D\n0xA578\t0xE67E\n0xA579\t0xE67F\n0xA57A\t0xE680\n0xA57B\t0xE681\n0xA57C\t0xE682\n0xA57D\t0xE683\n0xA57E\t0xE684\n0xA580\t0xE685\n0xA581\t0xE686\n0xA582\t0xE687\n0xA583\t0xE688\n0xA584\t0xE689\n0xA585\t0xE68A\n0xA586\t0xE68B\n0xA587\t0xE68C\n0xA588\t0xE68D\n0xA589\t0xE68E\n0xA58A\t0xE68F\n0xA58B\t0xE690\n0xA58C\t0xE691\n0xA58D\t0xE692\n0xA58E\t0xE693\n0xA58F\t0xE694\n0xA590\t0xE695\n0xA591\t0xE696\n0xA592\t0xE697\n0xA593\t0xE698\n0xA594\t0xE699\n0xA595\t0xE69A\n0xA596\t0xE69B\n0xA597\t0xE69C\n0xA598\t0xE69D\n0xA599\t0xE69E\n0xA59A\t0xE69F\n0xA59B\t0xE6A0\n0xA59C\t0xE6A1\n0xA59D\t0xE6A2\n0xA59E\t0xE6A3\n0xA59F\t0xE6A4\n0xA5A0\t0xE6A5\n0xA5A1\t0x30A1\n0xA5A2\t0x30A2\n0xA5A3\t0x30A3\n0xA5A4\t0x30A4\n0xA5A5\t0x30A5\n0xA5A6\t0x30A6\n0xA5A7\t0x30A7\n0xA5A8\t0x30A8\n0xA5A9\t0x30A9\n0xA5AA\t0x30AA\n0xA5AB\t0x30AB\n0xA5AC\t0x30AC\n0xA5AD\t0x30AD\n0xA5AE\t0x30AE\n0xA5AF\t0x30AF\n0xA5B0\t0x30B0\n0xA5B1\t0x30B1\n0xA5B2\t0x30B2\n0xA5B3\t0x30B3\n0xA5B4\t0x30B4\n0xA5B5\t0x30B5\n0xA5B6\t0x30B6\n0xA5B7\t0x30B7\n0xA5B8\t0x30B8\n0xA5B9\t0x30B9\n0xA5BA\t0x30BA\n0xA5BB\t0x30BB\n0xA5BC\t0x30BC\n0xA5BD\t0x30BD\n0xA5BE\t0x30BE\n0xA5BF\t0x30BF\n0xA5C0\t0x30C0\n0xA5C1\t0x30C1\n0xA5C2\t0x30C2\n0xA5C3\t0x30C3\n0xA5C4\t0x30C4\n0xA5C5\t0x30C5\n0xA5C6\t0x30C6\n0xA5C7\t0x30C7\n0xA5C8\t0x30C8\n0xA5C9\t0x30C9\n0xA5CA\t0x30CA\n0xA5CB\t0x30CB\n0xA5CC\t0x30CC\n0xA5CD\t0x30CD\n0xA5CE\t0x30CE\n0xA5CF\t0x30CF\n0xA5D0\t0x30D0\n0xA5D1\t0x30D1\n0xA5D2\t0x30D2\n0xA5D3\t0x30D3\n0xA5D4\t0x30D4\n0xA5D5\t0x30D5\n0xA5D6\t0x30D6\n0xA5D7\t0x30D7\n0xA5D8\t0x30D8\n0xA5D9\t0x30D9\n0xA5DA\t0x30DA\n0xA5DB\t0x30DB\n0xA5DC\t0x30DC\n0xA5DD\t0x30DD\n0xA5DE\t0x30DE\n0xA5DF\t0x30DF\n0xA5E0\t0x30E0\n0xA5E1\t0x30E1\n0xA5E2\t0x30E2\n0xA5E3\t0x30E3\n0xA5E4\t0x30E4\n0xA5E5\t0x30E5\n0xA5E6\t0x30E6\n0xA5E7\t0x30E7\n0xA5E8\t0x30E8\n0xA5E9\t0x30E9\n0xA5EA\t0x30EA\n0xA5EB\t0x30EB\n0xA5EC\t0x30EC\n0xA5ED\t0x30ED\n0xA5EE\t0x30EE\n0xA5EF\t0x30EF\n0xA5F0\t0x30F0\n0xA5F1\t0x30F1\n0xA5F2\t0x30F2\n0xA5F3\t0x30F3\n0xA5F4\t0x30F4\n0xA5F5\t0x30F5\n0xA5F6\t0x30F6\n0xA5F7\t0xE77D\n0xA5F8\t0xE77E\n0xA5F9\t0xE77F\n0xA5FA\t0xE780\n0xA5FB\t0xE781\n0xA5FC\t0xE782\n0xA5FD\t0xE783\n0xA5FE\t0xE784\n0xA640\t0xE6A6\n0xA641\t0xE6A7\n0xA642\t0xE6A8\n0xA643\t0xE6A9\n0xA644\t0xE6AA\n0xA645\t0xE6AB\n0xA646\t0xE6AC\n0xA647\t0xE6AD\n0xA648\t0xE6AE\n0xA649\t0xE6AF\n0xA64A\t0xE6B0\n0xA64B\t0xE6B1\n0xA64C\t0xE6B2\n0xA64D\t0xE6B3\n0xA64E\t0xE6B4\n0xA64F\t0xE6B5\n0xA650\t0xE6B6\n0xA651\t0xE6B7\n0xA652\t0xE6B8\n0xA653\t0xE6B9\n0xA654\t0xE6BA\n0xA655\t0xE6BB\n0xA656\t0xE6BC\n0xA657\t0xE6BD\n0xA658\t0xE6BE\n0xA659\t0xE6BF\n0xA65A\t0xE6C0\n0xA65B\t0xE6C1\n0xA65C\t0xE6C2\n0xA65D\t0xE6C3\n0xA65E\t0xE6C4\n0xA65F\t0xE6C5\n0xA660\t0xE6C6\n0xA661\t0xE6C7\n0xA662\t0xE6C8\n0xA663\t0xE6C9\n0xA664\t0xE6CA\n0xA665\t0xE6CB\n0xA666\t0xE6CC\n0xA667\t0xE6CD\n0xA668\t0xE6CE\n0xA669\t0xE6CF\n0xA66A\t0xE6D0\n0xA66B\t0xE6D1\n0xA66C\t0xE6D2\n0xA66D\t0xE6D3\n0xA66E\t0xE6D4\n0xA66F\t0xE6D5\n0xA670\t0xE6D6\n0xA671\t0xE6D7\n0xA672\t0xE6D8\n0xA673\t0xE6D9\n0xA674\t0xE6DA\n0xA675\t0xE6DB\n0xA676\t0xE6DC\n0xA677\t0xE6DD\n0xA678\t0xE6DE\n0xA679\t0xE6DF\n0xA67A\t0xE6E0\n0xA67B\t0xE6E1\n0xA67C\t0xE6E2\n0xA67D\t0xE6E3\n0xA67E\t0xE6E4\n0xA680\t0xE6E5\n0xA681\t0xE6E6\n0xA682\t0xE6E7\n0xA683\t0xE6E8\n0xA684\t0xE6E9\n0xA685\t0xE6EA\n0xA686\t0xE6EB\n0xA687\t0xE6EC\n0xA688\t0xE6ED\n0xA689\t0xE6EE\n0xA68A\t0xE6EF\n0xA68B\t0xE6F0\n0xA68C\t0xE6F1\n0xA68D\t0xE6F2\n0xA68E\t0xE6F3\n0xA68F\t0xE6F4\n0xA690\t0xE6F5\n0xA691\t0xE6F6\n0xA692\t0xE6F7\n0xA693\t0xE6F8\n0xA694\t0xE6F9\n0xA695\t0xE6FA\n0xA696\t0xE6FB\n0xA697\t0xE6FC\n0xA698\t0xE6FD\n0xA699\t0xE6FE\n0xA69A\t0xE6FF\n0xA69B\t0xE700\n0xA69C\t0xE701\n0xA69D\t0xE702\n0xA69E\t0xE703\n0xA69F\t0xE704\n0xA6A0\t0xE705\n0xA6A1\t0x0391\n0xA6A2\t0x0392\n0xA6A3\t0x0393\n0xA6A4\t0x0394\n0xA6A5\t0x0395\n0xA6A6\t0x0396\n0xA6A7\t0x0397\n0xA6A8\t0x0398\n0xA6A9\t0x0399\n0xA6AA\t0x039A\n0xA6AB\t0x039B\n0xA6AC\t0x039C\n0xA6AD\t0x039D\n0xA6AE\t0x039E\n0xA6AF\t0x039F\n0xA6B0\t0x03A0\n0xA6B1\t0x03A1\n0xA6B2\t0x03A3\n0xA6B3\t0x03A4\n0xA6B4\t0x03A5\n0xA6B5\t0x03A6\n0xA6B6\t0x03A7\n0xA6B7\t0x03A8\n0xA6B8\t0x03A9\n0xA6B9\t0xE785\n0xA6BA\t0xE786\n0xA6BB\t0xE787\n0xA6BC\t0xE788\n0xA6BD\t0xE789\n0xA6BE\t0xE78A\n0xA6BF\t0xE78B\n0xA6C0\t0xE78C\n0xA6C1\t0x03B1\n0xA6C2\t0x03B2\n0xA6C3\t0x03B3\n0xA6C4\t0x03B4\n0xA6C5\t0x03B5\n0xA6C6\t0x03B6\n0xA6C7\t0x03B7\n0xA6C8\t0x03B8\n0xA6C9\t0x03B9\n0xA6CA\t0x03BA\n0xA6CB\t0x03BB\n0xA6CC\t0x03BC\n0xA6CD\t0x03BD\n0xA6CE\t0x03BE\n0xA6CF\t0x03BF\n0xA6D0\t0x03C0\n0xA6D1\t0x03C1\n0xA6D2\t0x03C3\n0xA6D3\t0x03C4\n0xA6D4\t0x03C5\n0xA6D5\t0x03C6\n0xA6D6\t0x03C7\n0xA6D7\t0x03C8\n0xA6D8\t0x03C9\n0xA6D9\t0xFE10\n0xA6DA\t0xFE12\n0xA6DB\t0xFE11\n0xA6DC\t0xFE13\n0xA6DD\t0xFE14\n0xA6DE\t0xFE15\n0xA6DF\t0xFE16\n0xA6E0\t0xFE35\n0xA6E1\t0xFE36\n0xA6E2\t0xFE39\n0xA6E3\t0xFE3A\n0xA6E4\t0xFE3F\n0xA6E5\t0xFE40\n0xA6E6\t0xFE3D\n0xA6E7\t0xFE3E\n0xA6E8\t0xFE41\n0xA6E9\t0xFE42\n0xA6EA\t0xFE43\n0xA6EB\t0xFE44\n0xA6EC\t0xFE17\n0xA6ED\t0xFE18\n0xA6EE\t0xFE3B\n0xA6EF\t0xFE3C\n0xA6F0\t0xFE37\n0xA6F1\t0xFE38\n0xA6F2\t0xFE31\n0xA6F3\t0xFE19\n0xA6F4\t0xFE33\n0xA6F5\t0xFE34\n0xA6F6\t0xE797\n0xA6F7\t0xE798\n0xA6F8\t0xE799\n0xA6F9\t0xE79A\n0xA6FA\t0xE79B\n0xA6FB\t0xE79C\n0xA6FC\t0xE79D\n0xA6FD\t0xE79E\n0xA6FE\t0xE79F\n0xA740\t0xE706\n0xA741\t0xE707\n0xA742\t0xE708\n0xA743\t0xE709\n0xA744\t0xE70A\n0xA745\t0xE70B\n0xA746\t0xE70C\n0xA747\t0xE70D\n0xA748\t0xE70E\n0xA749\t0xE70F\n0xA74A\t0xE710\n0xA74B\t0xE711\n0xA74C\t0xE712\n0xA74D\t0xE713\n0xA74E\t0xE714\n0xA74F\t0xE715\n0xA750\t0xE716\n0xA751\t0xE717\n0xA752\t0xE718\n0xA753\t0xE719\n0xA754\t0xE71A\n0xA755\t0xE71B\n0xA756\t0xE71C\n0xA757\t0xE71D\n0xA758\t0xE71E\n0xA759\t0xE71F\n0xA75A\t0xE720\n0xA75B\t0xE721\n0xA75C\t0xE722\n0xA75D\t0xE723\n0xA75E\t0xE724\n0xA75F\t0xE725\n0xA760\t0xE726\n0xA761\t0xE727\n0xA762\t0xE728\n0xA763\t0xE729\n0xA764\t0xE72A\n0xA765\t0xE72B\n0xA766\t0xE72C\n0xA767\t0xE72D\n0xA768\t0xE72E\n0xA769\t0xE72F\n0xA76A\t0xE730\n0xA76B\t0xE731\n0xA76C\t0xE732\n0xA76D\t0xE733\n0xA76E\t0xE734\n0xA76F\t0xE735\n0xA770\t0xE736\n0xA771\t0xE737\n0xA772\t0xE738\n0xA773\t0xE739\n0xA774\t0xE73A\n0xA775\t0xE73B\n0xA776\t0xE73C\n0xA777\t0xE73D\n0xA778\t0xE73E\n0xA779\t0xE73F\n0xA77A\t0xE740\n0xA77B\t0xE741\n0xA77C\t0xE742\n0xA77D\t0xE743\n0xA77E\t0xE744\n0xA780\t0xE745\n0xA781\t0xE746\n0xA782\t0xE747\n0xA783\t0xE748\n0xA784\t0xE749\n0xA785\t0xE74A\n0xA786\t0xE74B\n0xA787\t0xE74C\n0xA788\t0xE74D\n0xA789\t0xE74E\n0xA78A\t0xE74F\n0xA78B\t0xE750\n0xA78C\t0xE751\n0xA78D\t0xE752\n0xA78E\t0xE753\n0xA78F\t0xE754\n0xA790\t0xE755\n0xA791\t0xE756\n0xA792\t0xE757\n0xA793\t0xE758\n0xA794\t0xE759\n0xA795\t0xE75A\n0xA796\t0xE75B\n0xA797\t0xE75C\n0xA798\t0xE75D\n0xA799\t0xE75E\n0xA79A\t0xE75F\n0xA79B\t0xE760\n0xA79C\t0xE761\n0xA79D\t0xE762\n0xA79E\t0xE763\n0xA79F\t0xE764\n0xA7A0\t0xE765\n0xA7A1\t0x0410\n0xA7A2\t0x0411\n0xA7A3\t0x0412\n0xA7A4\t0x0413\n0xA7A5\t0x0414\n0xA7A6\t0x0415\n0xA7A7\t0x0401\n0xA7A8\t0x0416\n0xA7A9\t0x0417\n0xA7AA\t0x0418\n0xA7AB\t0x0419\n0xA7AC\t0x041A\n0xA7AD\t0x041B\n0xA7AE\t0x041C\n0xA7AF\t0x041D\n0xA7B0\t0x041E\n0xA7B1\t0x041F\n0xA7B2\t0x0420\n0xA7B3\t0x0421\n0xA7B4\t0x0422\n0xA7B5\t0x0423\n0xA7B6\t0x0424\n0xA7B7\t0x0425\n0xA7B8\t0x0426\n0xA7B9\t0x0427\n0xA7BA\t0x0428\n0xA7BB\t0x0429\n0xA7BC\t0x042A\n0xA7BD\t0x042B\n0xA7BE\t0x042C\n0xA7BF\t0x042D\n0xA7C0\t0x042E\n0xA7C1\t0x042F\n0xA7C2\t0xE7A0\n0xA7C3\t0xE7A1\n0xA7C4\t0xE7A2\n0xA7C5\t0xE7A3\n0xA7C6\t0xE7A4\n0xA7C7\t0xE7A5\n0xA7C8\t0xE7A6\n0xA7C9\t0xE7A7\n0xA7CA\t0xE7A8\n0xA7CB\t0xE7A9\n0xA7CC\t0xE7AA\n0xA7CD\t0xE7AB\n0xA7CE\t0xE7AC\n0xA7CF\t0xE7AD\n0xA7D0\t0xE7AE\n0xA7D1\t0x0430\n0xA7D2\t0x0431\n0xA7D3\t0x0432\n0xA7D4\t0x0433\n0xA7D5\t0x0434\n0xA7D6\t0x0435\n0xA7D7\t0x0451\n0xA7D8\t0x0436\n0xA7D9\t0x0437\n0xA7DA\t0x0438\n0xA7DB\t0x0439\n0xA7DC\t0x043A\n0xA7DD\t0x043B\n0xA7DE\t0x043C\n0xA7DF\t0x043D\n0xA7E0\t0x043E\n0xA7E1\t0x043F\n0xA7E2\t0x0440\n0xA7E3\t0x0441\n0xA7E4\t0x0442\n0xA7E5\t0x0443\n0xA7E6\t0x0444\n0xA7E7\t0x0445\n0xA7E8\t0x0446\n0xA7E9\t0x0447\n0xA7EA\t0x0448\n0xA7EB\t0x0449\n0xA7EC\t0x044A\n0xA7ED\t0x044B\n0xA7EE\t0x044C\n0xA7EF\t0x044D\n0xA7F0\t0x044E\n0xA7F1\t0x044F\n0xA7F2\t0xE7AF\n0xA7F3\t0xE7B0\n0xA7F4\t0xE7B1\n0xA7F5\t0xE7B2\n0xA7F6\t0xE7B3\n0xA7F7\t0xE7B4\n0xA7F8\t0xE7B5\n0xA7F9\t0xE7B6\n0xA7FA\t0xE7B7\n0xA7FB\t0xE7B8\n0xA7FC\t0xE7B9\n0xA7FD\t0xE7BA\n0xA7FE\t0xE7BB\n0xA840\t0x02CA\n0xA841\t0x02CB\n0xA842\t0x02D9\n0xA843\t0x2013\n0xA844\t0x2015\n0xA845\t0x2025\n0xA846\t0x2035\n0xA847\t0x2105\n0xA848\t0x2109\n0xA849\t0x2196\n0xA84A\t0x2197\n0xA84B\t0x2198\n0xA84C\t0x2199\n0xA84D\t0x2215\n0xA84E\t0x221F\n0xA84F\t0x2223\n0xA850\t0x2252\n0xA851\t0x2266\n0xA852\t0x2267\n0xA853\t0x22BF\n0xA854\t0x2550\n0xA855\t0x2551\n0xA856\t0x2552\n0xA857\t0x2553\n0xA858\t0x2554\n0xA859\t0x2555\n0xA85A\t0x2556\n0xA85B\t0x2557\n0xA85C\t0x2558\n0xA85D\t0x2559\n0xA85E\t0x255A\n0xA85F\t0x255B\n0xA860\t0x255C\n0xA861\t0x255D\n0xA862\t0x255E\n0xA863\t0x255F\n0xA864\t0x2560\n0xA865\t0x2561\n0xA866\t0x2562\n0xA867\t0x2563\n0xA868\t0x2564\n0xA869\t0x2565\n0xA86A\t0x2566\n0xA86B\t0x2567\n0xA86C\t0x2568\n0xA86D\t0x2569\n0xA86E\t0x256A\n0xA86F\t0x256B\n0xA870\t0x256C\n0xA871\t0x256D\n0xA872\t0x256E\n0xA873\t0x256F\n0xA874\t0x2570\n0xA875\t0x2571\n0xA876\t0x2572\n0xA877\t0x2573\n0xA878\t0x2581\n0xA879\t0x2582\n0xA87A\t0x2583\n0xA87B\t0x2584\n0xA87C\t0x2585\n0xA87D\t0x2586\n0xA87E\t0x2587\n0xA880\t0x2588\n0xA881\t0x2589\n0xA882\t0x258A\n0xA883\t0x258B\n0xA884\t0x258C\n0xA885\t0x258D\n0xA886\t0x258E\n0xA887\t0x258F\n0xA888\t0x2593\n0xA889\t0x2594\n0xA88A\t0x2595\n0xA88B\t0x25BC\n0xA88C\t0x25BD\n0xA88D\t0x25E2\n0xA88E\t0x25E3\n0xA88F\t0x25E4\n0xA890\t0x25E5\n0xA891\t0x2609\n0xA892\t0x2295\n0xA893\t0x3012\n0xA894\t0x301D\n0xA895\t0x301E\n0xA896\t0xE7BC\n0xA897\t0xE7BD\n0xA898\t0xE7BE\n0xA899\t0xE7BF\n0xA89A\t0xE7C0\n0xA89B\t0xE7C1\n0xA89C\t0xE7C2\n0xA89D\t0xE7C3\n0xA89E\t0xE7C4\n0xA89F\t0xE7C5\n0xA8A0\t0xE7C6\n0xA8A1\t0x0101\n0xA8A2\t0x00E1\n0xA8A3\t0x01CE\n0xA8A4\t0x00E0\n0xA8A5\t0x0113\n0xA8A6\t0x00E9\n0xA8A7\t0x011B\n0xA8A8\t0x00E8\n0xA8A9\t0x012B\n0xA8AA\t0x00ED\n0xA8AB\t0x01D0\n0xA8AC\t0x00EC\n0xA8AD\t0x014D\n0xA8AE\t0x00F3\n0xA8AF\t0x01D2\n0xA8B0\t0x00F2\n0xA8B1\t0x016B\n0xA8B2\t0x00FA\n0xA8B3\t0x01D4\n0xA8B4\t0x00F9\n0xA8B5\t0x01D6\n0xA8B6\t0x01D8\n0xA8B7\t0x01DA\n0xA8B8\t0x01DC\n0xA8B9\t0x00FC\n0xA8BA\t0x00EA\n0xA8BB\t0x0251\n0xA8BC\t0x1E3F\n0xA8BD\t0x0144\n0xA8BE\t0x0148\n0xA8BF\t0x01F9\n0xA8C0\t0x0261\n0xA8C1\t0xE7C9\n0xA8C2\t0xE7CA\n0xA8C3\t0xE7CB\n0xA8C4\t0xE7CC\n0xA8C5\t0x3105\n0xA8C6\t0x3106\n0xA8C7\t0x3107\n0xA8C8\t0x3108\n0xA8C9\t0x3109\n0xA8CA\t0x310A\n0xA8CB\t0x310B\n0xA8CC\t0x310C\n0xA8CD\t0x310D\n0xA8CE\t0x310E\n0xA8CF\t0x310F\n0xA8D0\t0x3110\n0xA8D1\t0x3111\n0xA8D2\t0x3112\n0xA8D3\t0x3113\n0xA8D4\t0x3114\n0xA8D5\t0x3115\n0xA8D6\t0x3116\n0xA8D7\t0x3117\n0xA8D8\t0x3118\n0xA8D9\t0x3119\n0xA8DA\t0x311A\n0xA8DB\t0x311B\n0xA8DC\t0x311C\n0xA8DD\t0x311D\n0xA8DE\t0x311E\n0xA8DF\t0x311F\n0xA8E0\t0x3120\n0xA8E1\t0x3121\n0xA8E2\t0x3122\n0xA8E3\t0x3123\n0xA8E4\t0x3124\n0xA8E5\t0x3125\n0xA8E6\t0x3126\n0xA8E7\t0x3127\n0xA8E8\t0x3128\n0xA8E9\t0x3129\n0xA8EA\t0xE7CD\n0xA8EB\t0xE7CE\n0xA8EC\t0xE7CF\n0xA8ED\t0xE7D0\n0xA8EE\t0xE7D1\n0xA8EF\t0xE7D2\n0xA8F0\t0xE7D3\n0xA8F1\t0xE7D4\n0xA8F2\t0xE7D5\n0xA8F3\t0xE7D6\n0xA8F4\t0xE7D7\n0xA8F5\t0xE7D8\n0xA8F6\t0xE7D9\n0xA8F7\t0xE7DA\n0xA8F8\t0xE7DB\n0xA8F9\t0xE7DC\n0xA8FA\t0xE7DD\n0xA8FB\t0xE7DE\n0xA8FC\t0xE7DF\n0xA8FD\t0xE7E0\n0xA8FE\t0xE7E1\n0xA940\t0x3021\n0xA941\t0x3022\n0xA942\t0x3023\n0xA943\t0x3024\n0xA944\t0x3025\n0xA945\t0x3026\n0xA946\t0x3027\n0xA947\t0x3028\n0xA948\t0x3029\n0xA949\t0x32A3\n0xA94A\t0x338E\n0xA94B\t0x338F\n0xA94C\t0x339C\n0xA94D\t0x339D\n0xA94E\t0x339E\n0xA94F\t0x33A1\n0xA950\t0x33C4\n0xA951\t0x33CE\n0xA952\t0x33D1\n0xA953\t0x33D2\n0xA954\t0x33D5\n0xA955\t0xFE30\n0xA956\t0xFFE2\n0xA957\t0xFFE4\n0xA958\t0xE7E2\n0xA959\t0x2121\n0xA95A\t0x3231\n0xA95B\t0xE7E3\n0xA95C\t0x2010\n0xA95D\t0xE7E4\n0xA95E\t0xE7E5\n0xA95F\t0xE7E6\n0xA960\t0x30FC\n0xA961\t0x309B\n0xA962\t0x309C\n0xA963\t0x30FD\n0xA964\t0x30FE\n0xA965\t0x3006\n0xA966\t0x309D\n0xA967\t0x309E\n0xA968\t0xFE49\n0xA969\t0xFE4A\n0xA96A\t0xFE4B\n0xA96B\t0xFE4C\n0xA96C\t0xFE4D\n0xA96D\t0xFE4E\n0xA96E\t0xFE4F\n0xA96F\t0xFE50\n0xA970\t0xFE51\n0xA971\t0xFE52\n0xA972\t0xFE54\n0xA973\t0xFE55\n0xA974\t0xFE56\n0xA975\t0xFE57\n0xA976\t0xFE59\n0xA977\t0xFE5A\n0xA978\t0xFE5B\n0xA979\t0xFE5C\n0xA97A\t0xFE5D\n0xA97B\t0xFE5E\n0xA97C\t0xFE5F\n0xA97D\t0xFE60\n0xA97E\t0xFE61\n0xA980\t0xFE62\n0xA981\t0xFE63\n0xA982\t0xFE64\n0xA983\t0xFE65\n0xA984\t0xFE66\n0xA985\t0xFE68\n0xA986\t0xFE69\n0xA987\t0xFE6A\n0xA988\t0xFE6B\n0xA989\t0x303E\n0xA98A\t0x2FF0\n0xA98B\t0x2FF1\n0xA98C\t0x2FF2\n0xA98D\t0x2FF3\n0xA98E\t0x2FF4\n0xA98F\t0x2FF5\n0xA990\t0x2FF6\n0xA991\t0x2FF7\n0xA992\t0x2FF8\n0xA993\t0x2FF9\n0xA994\t0x2FFA\n0xA995\t0x2FFB\n0xA996\t0x3007\n0xA997\t0xE7F4\n0xA998\t0xE7F5\n0xA999\t0xE7F6\n0xA99A\t0xE7F7\n0xA99B\t0xE7F8\n0xA99C\t0xE7F9\n0xA99D\t0xE7FA\n0xA99E\t0xE7FB\n0xA99F\t0xE7FC\n0xA9A0\t0xE7FD\n0xA9A1\t0xE7FE\n0xA9A2\t0xE7FF\n0xA9A3\t0xE800\n0xA9A4\t0x2500\n0xA9A5\t0x2501\n0xA9A6\t0x2502\n0xA9A7\t0x2503\n0xA9A8\t0x2504\n0xA9A9\t0x2505\n0xA9AA\t0x2506\n0xA9AB\t0x2507\n0xA9AC\t0x2508\n0xA9AD\t0x2509\n0xA9AE\t0x250A\n0xA9AF\t0x250B\n0xA9B0\t0x250C\n0xA9B1\t0x250D\n0xA9B2\t0x250E\n0xA9B3\t0x250F\n0xA9B4\t0x2510\n0xA9B5\t0x2511\n0xA9B6\t0x2512\n0xA9B7\t0x2513\n0xA9B8\t0x2514\n0xA9B9\t0x2515\n0xA9BA\t0x2516\n0xA9BB\t0x2517\n0xA9BC\t0x2518\n0xA9BD\t0x2519\n0xA9BE\t0x251A\n0xA9BF\t0x251B\n0xA9C0\t0x251C\n0xA9C1\t0x251D\n0xA9C2\t0x251E\n0xA9C3\t0x251F\n0xA9C4\t0x2520\n0xA9C5\t0x2521\n0xA9C6\t0x2522\n0xA9C7\t0x2523\n0xA9C8\t0x2524\n0xA9C9\t0x2525\n0xA9CA\t0x2526\n0xA9CB\t0x2527\n0xA9CC\t0x2528\n0xA9CD\t0x2529\n0xA9CE\t0x252A\n0xA9CF\t0x252B\n0xA9D0\t0x252C\n0xA9D1\t0x252D\n0xA9D2\t0x252E\n0xA9D3\t0x252F\n0xA9D4\t0x2530\n0xA9D5\t0x2531\n0xA9D6\t0x2532\n0xA9D7\t0x2533\n0xA9D8\t0x2534\n0xA9D9\t0x2535\n0xA9DA\t0x2536\n0xA9DB\t0x2537\n0xA9DC\t0x2538\n0xA9DD\t0x2539\n0xA9DE\t0x253A\n0xA9DF\t0x253B\n0xA9E0\t0x253C\n0xA9E1\t0x253D\n0xA9E2\t0x253E\n0xA9E3\t0x253F\n0xA9E4\t0x2540\n0xA9E5\t0x2541\n0xA9E6\t0x2542\n0xA9E7\t0x2543\n0xA9E8\t0x2544\n0xA9E9\t0x2545\n0xA9EA\t0x2546\n0xA9EB\t0x2547\n0xA9EC\t0x2548\n0xA9ED\t0x2549\n0xA9EE\t0x254A\n0xA9EF\t0x254B\n0xA9F0\t0xE801\n0xA9F1\t0xE802\n0xA9F2\t0xE803\n0xA9F3\t0xE804\n0xA9F4\t0xE805\n0xA9F5\t0xE806\n0xA9F6\t0xE807\n0xA9F7\t0xE808\n0xA9F8\t0xE809\n0xA9F9\t0xE80A\n0xA9FA\t0xE80B\n0xA9FB\t0xE80C\n0xA9FC\t0xE80D\n0xA9FD\t0xE80E\n0xA9FE\t0xE80F\n0xAA40\t0x72DC\n0xAA41\t0x72DD\n0xAA42\t0x72DF\n0xAA43\t0x72E2\n0xAA44\t0x72E3\n0xAA45\t0x72E4\n0xAA46\t0x72E5\n0xAA47\t0x72E6\n0xAA48\t0x72E7\n0xAA49\t0x72EA\n0xAA4A\t0x72EB\n0xAA4B\t0x72F5\n0xAA4C\t0x72F6\n0xAA4D\t0x72F9\n0xAA4E\t0x72FD\n0xAA4F\t0x72FE\n0xAA50\t0x72FF\n0xAA51\t0x7300\n0xAA52\t0x7302\n0xAA53\t0x7304\n0xAA54\t0x7305\n0xAA55\t0x7306\n0xAA56\t0x7307\n0xAA57\t0x7308\n0xAA58\t0x7309\n0xAA59\t0x730B\n0xAA5A\t0x730C\n0xAA5B\t0x730D\n0xAA5C\t0x730F\n0xAA5D\t0x7310\n0xAA5E\t0x7311\n0xAA5F\t0x7312\n0xAA60\t0x7314\n0xAA61\t0x7318\n0xAA62\t0x7319\n0xAA63\t0x731A\n0xAA64\t0x731F\n0xAA65\t0x7320\n0xAA66\t0x7323\n0xAA67\t0x7324\n0xAA68\t0x7326\n0xAA69\t0x7327\n0xAA6A\t0x7328\n0xAA6B\t0x732D\n0xAA6C\t0x732F\n0xAA6D\t0x7330\n0xAA6E\t0x7332\n0xAA6F\t0x7333\n0xAA70\t0x7335\n0xAA71\t0x7336\n0xAA72\t0x733A\n0xAA73\t0x733B\n0xAA74\t0x733C\n0xAA75\t0x733D\n0xAA76\t0x7340\n0xAA77\t0x7341\n0xAA78\t0x7342\n0xAA79\t0x7343\n0xAA7A\t0x7344\n0xAA7B\t0x7345\n0xAA7C\t0x7346\n0xAA7D\t0x7347\n0xAA7E\t0x7348\n0xAA80\t0x7349\n0xAA81\t0x734A\n0xAA82\t0x734B\n0xAA83\t0x734C\n0xAA84\t0x734E\n0xAA85\t0x734F\n0xAA86\t0x7351\n0xAA87\t0x7353\n0xAA88\t0x7354\n0xAA89\t0x7355\n0xAA8A\t0x7356\n0xAA8B\t0x7358\n0xAA8C\t0x7359\n0xAA8D\t0x735A\n0xAA8E\t0x735B\n0xAA8F\t0x735C\n0xAA90\t0x735D\n0xAA91\t0x735E\n0xAA92\t0x735F\n0xAA93\t0x7361\n0xAA94\t0x7362\n0xAA95\t0x7363\n0xAA96\t0x7364\n0xAA97\t0x7365\n0xAA98\t0x7366\n0xAA99\t0x7367\n0xAA9A\t0x7368\n0xAA9B\t0x7369\n0xAA9C\t0x736A\n0xAA9D\t0x736B\n0xAA9E\t0x736E\n0xAA9F\t0x7370\n0xAAA0\t0x7371\n0xAAA1\t0xE000\n0xAAA2\t0xE001\n0xAAA3\t0xE002\n0xAAA4\t0xE003\n0xAAA5\t0xE004\n0xAAA6\t0xE005\n0xAAA7\t0xE006\n0xAAA8\t0xE007\n0xAAA9\t0xE008\n0xAAAA\t0xE009\n0xAAAB\t0xE00A\n0xAAAC\t0xE00B\n0xAAAD\t0xE00C\n0xAAAE\t0xE00D\n0xAAAF\t0xE00E\n0xAAB0\t0xE00F\n0xAAB1\t0xE010\n0xAAB2\t0xE011\n0xAAB3\t0xE012\n0xAAB4\t0xE013\n0xAAB5\t0xE014\n0xAAB6\t0xE015\n0xAAB7\t0xE016\n0xAAB8\t0xE017\n0xAAB9\t0xE018\n0xAABA\t0xE019\n0xAABB\t0xE01A\n0xAABC\t0xE01B\n0xAABD\t0xE01C\n0xAABE\t0xE01D\n0xAABF\t0xE01E\n0xAAC0\t0xE01F\n0xAAC1\t0xE020\n0xAAC2\t0xE021\n0xAAC3\t0xE022\n0xAAC4\t0xE023\n0xAAC5\t0xE024\n0xAAC6\t0xE025\n0xAAC7\t0xE026\n0xAAC8\t0xE027\n0xAAC9\t0xE028\n0xAACA\t0xE029\n0xAACB\t0xE02A\n0xAACC\t0xE02B\n0xAACD\t0xE02C\n0xAACE\t0xE02D\n0xAACF\t0xE02E\n0xAAD0\t0xE02F\n0xAAD1\t0xE030\n0xAAD2\t0xE031\n0xAAD3\t0xE032\n0xAAD4\t0xE033\n0xAAD5\t0xE034\n0xAAD6\t0xE035\n0xAAD7\t0xE036\n0xAAD8\t0xE037\n0xAAD9\t0xE038\n0xAADA\t0xE039\n0xAADB\t0xE03A\n0xAADC\t0xE03B\n0xAADD\t0xE03C\n0xAADE\t0xE03D\n0xAADF\t0xE03E\n0xAAE0\t0xE03F\n0xAAE1\t0xE040\n0xAAE2\t0xE041\n0xAAE3\t0xE042\n0xAAE4\t0xE043\n0xAAE5\t0xE044\n0xAAE6\t0xE045\n0xAAE7\t0xE046\n0xAAE8\t0xE047\n0xAAE9\t0xE048\n0xAAEA\t0xE049\n0xAAEB\t0xE04A\n0xAAEC\t0xE04B\n0xAAED\t0xE04C\n0xAAEE\t0xE04D\n0xAAEF\t0xE04E\n0xAAF0\t0xE04F\n0xAAF1\t0xE050\n0xAAF2\t0xE051\n0xAAF3\t0xE052\n0xAAF4\t0xE053\n0xAAF5\t0xE054\n0xAAF6\t0xE055\n0xAAF7\t0xE056\n0xAAF8\t0xE057\n0xAAF9\t0xE058\n0xAAFA\t0xE059\n0xAAFB\t0xE05A\n0xAAFC\t0xE05B\n0xAAFD\t0xE05C\n0xAAFE\t0xE05D\n0xAB40\t0x7372\n0xAB41\t0x7373\n0xAB42\t0x7374\n0xAB43\t0x7375\n0xAB44\t0x7376\n0xAB45\t0x7377\n0xAB46\t0x7378\n0xAB47\t0x7379\n0xAB48\t0x737A\n0xAB49\t0x737B\n0xAB4A\t0x737C\n0xAB4B\t0x737D\n0xAB4C\t0x737F\n0xAB4D\t0x7380\n0xAB4E\t0x7381\n0xAB4F\t0x7382\n0xAB50\t0x7383\n0xAB51\t0x7385\n0xAB52\t0x7386\n0xAB53\t0x7388\n0xAB54\t0x738A\n0xAB55\t0x738C\n0xAB56\t0x738D\n0xAB57\t0x738F\n0xAB58\t0x7390\n0xAB59\t0x7392\n0xAB5A\t0x7393\n0xAB5B\t0x7394\n0xAB5C\t0x7395\n0xAB5D\t0x7397\n0xAB5E\t0x7398\n0xAB5F\t0x7399\n0xAB60\t0x739A\n0xAB61\t0x739C\n0xAB62\t0x739D\n0xAB63\t0x739E\n0xAB64\t0x73A0\n0xAB65\t0x73A1\n0xAB66\t0x73A3\n0xAB67\t0x73A4\n0xAB68\t0x73A5\n0xAB69\t0x73A6\n0xAB6A\t0x73A7\n0xAB6B\t0x73A8\n0xAB6C\t0x73AA\n0xAB6D\t0x73AC\n0xAB6E\t0x73AD\n0xAB6F\t0x73B1\n0xAB70\t0x73B4\n0xAB71\t0x73B5\n0xAB72\t0x73B6\n0xAB73\t0x73B8\n0xAB74\t0x73B9\n0xAB75\t0x73BC\n0xAB76\t0x73BD\n0xAB77\t0x73BE\n0xAB78\t0x73BF\n0xAB79\t0x73C1\n0xAB7A\t0x73C3\n0xAB7B\t0x73C4\n0xAB7C\t0x73C5\n0xAB7D\t0x73C6\n0xAB7E\t0x73C7\n0xAB80\t0x73CB\n0xAB81\t0x73CC\n0xAB82\t0x73CE\n0xAB83\t0x73D2\n0xAB84\t0x73D3\n0xAB85\t0x73D4\n0xAB86\t0x73D5\n0xAB87\t0x73D6\n0xAB88\t0x73D7\n0xAB89\t0x73D8\n0xAB8A\t0x73DA\n0xAB8B\t0x73DB\n0xAB8C\t0x73DC\n0xAB8D\t0x73DD\n0xAB8E\t0x73DF\n0xAB8F\t0x73E1\n0xAB90\t0x73E2\n0xAB91\t0x73E3\n0xAB92\t0x73E4\n0xAB93\t0x73E6\n0xAB94\t0x73E8\n0xAB95\t0x73EA\n0xAB96\t0x73EB\n0xAB97\t0x73EC\n0xAB98\t0x73EE\n0xAB99\t0x73EF\n0xAB9A\t0x73F0\n0xAB9B\t0x73F1\n0xAB9C\t0x73F3\n0xAB9D\t0x73F4\n0xAB9E\t0x73F5\n0xAB9F\t0x73F6\n0xABA0\t0x73F7\n0xABA1\t0xE05E\n0xABA2\t0xE05F\n0xABA3\t0xE060\n0xABA4\t0xE061\n0xABA5\t0xE062\n0xABA6\t0xE063\n0xABA7\t0xE064\n0xABA8\t0xE065\n0xABA9\t0xE066\n0xABAA\t0xE067\n0xABAB\t0xE068\n0xABAC\t0xE069\n0xABAD\t0xE06A\n0xABAE\t0xE06B\n0xABAF\t0xE06C\n0xABB0\t0xE06D\n0xABB1\t0xE06E\n0xABB2\t0xE06F\n0xABB3\t0xE070\n0xABB4\t0xE071\n0xABB5\t0xE072\n0xABB6\t0xE073\n0xABB7\t0xE074\n0xABB8\t0xE075\n0xABB9\t0xE076\n0xABBA\t0xE077\n0xABBB\t0xE078\n0xABBC\t0xE079\n0xABBD\t0xE07A\n0xABBE\t0xE07B\n0xABBF\t0xE07C\n0xABC0\t0xE07D\n0xABC1\t0xE07E\n0xABC2\t0xE07F\n0xABC3\t0xE080\n0xABC4\t0xE081\n0xABC5\t0xE082\n0xABC6\t0xE083\n0xABC7\t0xE084\n0xABC8\t0xE085\n0xABC9\t0xE086\n0xABCA\t0xE087\n0xABCB\t0xE088\n0xABCC\t0xE089\n0xABCD\t0xE08A\n0xABCE\t0xE08B\n0xABCF\t0xE08C\n0xABD0\t0xE08D\n0xABD1\t0xE08E\n0xABD2\t0xE08F\n0xABD3\t0xE090\n0xABD4\t0xE091\n0xABD5\t0xE092\n0xABD6\t0xE093\n0xABD7\t0xE094\n0xABD8\t0xE095\n0xABD9\t0xE096\n0xABDA\t0xE097\n0xABDB\t0xE098\n0xABDC\t0xE099\n0xABDD\t0xE09A\n0xABDE\t0xE09B\n0xABDF\t0xE09C\n0xABE0\t0xE09D\n0xABE1\t0xE09E\n0xABE2\t0xE09F\n0xABE3\t0xE0A0\n0xABE4\t0xE0A1\n0xABE5\t0xE0A2\n0xABE6\t0xE0A3\n0xABE7\t0xE0A4\n0xABE8\t0xE0A5\n0xABE9\t0xE0A6\n0xABEA\t0xE0A7\n0xABEB\t0xE0A8\n0xABEC\t0xE0A9\n0xABED\t0xE0AA\n0xABEE\t0xE0AB\n0xABEF\t0xE0AC\n0xABF0\t0xE0AD\n0xABF1\t0xE0AE\n0xABF2\t0xE0AF\n0xABF3\t0xE0B0\n0xABF4\t0xE0B1\n0xABF5\t0xE0B2\n0xABF6\t0xE0B3\n0xABF7\t0xE0B4\n0xABF8\t0xE0B5\n0xABF9\t0xE0B6\n0xABFA\t0xE0B7\n0xABFB\t0xE0B8\n0xABFC\t0xE0B9\n0xABFD\t0xE0BA\n0xABFE\t0xE0BB\n0xAC40\t0x73F8\n0xAC41\t0x73F9\n0xAC42\t0x73FA\n0xAC43\t0x73FB\n0xAC44\t0x73FC\n0xAC45\t0x73FD\n0xAC46\t0x73FE\n0xAC47\t0x73FF\n0xAC48\t0x7400\n0xAC49\t0x7401\n0xAC4A\t0x7402\n0xAC4B\t0x7404\n0xAC4C\t0x7407\n0xAC4D\t0x7408\n0xAC4E\t0x740B\n0xAC4F\t0x740C\n0xAC50\t0x740D\n0xAC51\t0x740E\n0xAC52\t0x7411\n0xAC53\t0x7412\n0xAC54\t0x7413\n0xAC55\t0x7414\n0xAC56\t0x7415\n0xAC57\t0x7416\n0xAC58\t0x7417\n0xAC59\t0x7418\n0xAC5A\t0x7419\n0xAC5B\t0x741C\n0xAC5C\t0x741D\n0xAC5D\t0x741E\n0xAC5E\t0x741F\n0xAC5F\t0x7420\n0xAC60\t0x7421\n0xAC61\t0x7423\n0xAC62\t0x7424\n0xAC63\t0x7427\n0xAC64\t0x7429\n0xAC65\t0x742B\n0xAC66\t0x742D\n0xAC67\t0x742F\n0xAC68\t0x7431\n0xAC69\t0x7432\n0xAC6A\t0x7437\n0xAC6B\t0x7438\n0xAC6C\t0x7439\n0xAC6D\t0x743A\n0xAC6E\t0x743B\n0xAC6F\t0x743D\n0xAC70\t0x743E\n0xAC71\t0x743F\n0xAC72\t0x7440\n0xAC73\t0x7442\n0xAC74\t0x7443\n0xAC75\t0x7444\n0xAC76\t0x7445\n0xAC77\t0x7446\n0xAC78\t0x7447\n0xAC79\t0x7448\n0xAC7A\t0x7449\n0xAC7B\t0x744A\n0xAC7C\t0x744B\n0xAC7D\t0x744C\n0xAC7E\t0x744D\n0xAC80\t0x744E\n0xAC81\t0x744F\n0xAC82\t0x7450\n0xAC83\t0x7451\n0xAC84\t0x7452\n0xAC85\t0x7453\n0xAC86\t0x7454\n0xAC87\t0x7456\n0xAC88\t0x7458\n0xAC89\t0x745D\n0xAC8A\t0x7460\n0xAC8B\t0x7461\n0xAC8C\t0x7462\n0xAC8D\t0x7463\n0xAC8E\t0x7464\n0xAC8F\t0x7465\n0xAC90\t0x7466\n0xAC91\t0x7467\n0xAC92\t0x7468\n0xAC93\t0x7469\n0xAC94\t0x746A\n0xAC95\t0x746B\n0xAC96\t0x746C\n0xAC97\t0x746E\n0xAC98\t0x746F\n0xAC99\t0x7471\n0xAC9A\t0x7472\n0xAC9B\t0x7473\n0xAC9C\t0x7474\n0xAC9D\t0x7475\n0xAC9E\t0x7478\n0xAC9F\t0x7479\n0xACA0\t0x747A\n0xACA1\t0xE0BC\n0xACA2\t0xE0BD\n0xACA3\t0xE0BE\n0xACA4\t0xE0BF\n0xACA5\t0xE0C0\n0xACA6\t0xE0C1\n0xACA7\t0xE0C2\n0xACA8\t0xE0C3\n0xACA9\t0xE0C4\n0xACAA\t0xE0C5\n0xACAB\t0xE0C6\n0xACAC\t0xE0C7\n0xACAD\t0xE0C8\n0xACAE\t0xE0C9\n0xACAF\t0xE0CA\n0xACB0\t0xE0CB\n0xACB1\t0xE0CC\n0xACB2\t0xE0CD\n0xACB3\t0xE0CE\n0xACB4\t0xE0CF\n0xACB5\t0xE0D0\n0xACB6\t0xE0D1\n0xACB7\t0xE0D2\n0xACB8\t0xE0D3\n0xACB9\t0xE0D4\n0xACBA\t0xE0D5\n0xACBB\t0xE0D6\n0xACBC\t0xE0D7\n0xACBD\t0xE0D8\n0xACBE\t0xE0D9\n0xACBF\t0xE0DA\n0xACC0\t0xE0DB\n0xACC1\t0xE0DC\n0xACC2\t0xE0DD\n0xACC3\t0xE0DE\n0xACC4\t0xE0DF\n0xACC5\t0xE0E0\n0xACC6\t0xE0E1\n0xACC7\t0xE0E2\n0xACC8\t0xE0E3\n0xACC9\t0xE0E4\n0xACCA\t0xE0E5\n0xACCB\t0xE0E6\n0xACCC\t0xE0E7\n0xACCD\t0xE0E8\n0xACCE\t0xE0E9\n0xACCF\t0xE0EA\n0xACD0\t0xE0EB\n0xACD1\t0xE0EC\n0xACD2\t0xE0ED\n0xACD3\t0xE0EE\n0xACD4\t0xE0EF\n0xACD5\t0xE0F0\n0xACD6\t0xE0F1\n0xACD7\t0xE0F2\n0xACD8\t0xE0F3\n0xACD9\t0xE0F4\n0xACDA\t0xE0F5\n0xACDB\t0xE0F6\n0xACDC\t0xE0F7\n0xACDD\t0xE0F8\n0xACDE\t0xE0F9\n0xACDF\t0xE0FA\n0xACE0\t0xE0FB\n0xACE1\t0xE0FC\n0xACE2\t0xE0FD\n0xACE3\t0xE0FE\n0xACE4\t0xE0FF\n0xACE5\t0xE100\n0xACE6\t0xE101\n0xACE7\t0xE102\n0xACE8\t0xE103\n0xACE9\t0xE104\n0xACEA\t0xE105\n0xACEB\t0xE106\n0xACEC\t0xE107\n0xACED\t0xE108\n0xACEE\t0xE109\n0xACEF\t0xE10A\n0xACF0\t0xE10B\n0xACF1\t0xE10C\n0xACF2\t0xE10D\n0xACF3\t0xE10E\n0xACF4\t0xE10F\n0xACF5\t0xE110\n0xACF6\t0xE111\n0xACF7\t0xE112\n0xACF8\t0xE113\n0xACF9\t0xE114\n0xACFA\t0xE115\n0xACFB\t0xE116\n0xACFC\t0xE117\n0xACFD\t0xE118\n0xACFE\t0xE119\n0xAD40\t0x747B\n0xAD41\t0x747C\n0xAD42\t0x747D\n0xAD43\t0x747F\n0xAD44\t0x7482\n0xAD45\t0x7484\n0xAD46\t0x7485\n0xAD47\t0x7486\n0xAD48\t0x7488\n0xAD49\t0x7489\n0xAD4A\t0x748A\n0xAD4B\t0x748C\n0xAD4C\t0x748D\n0xAD4D\t0x748F\n0xAD4E\t0x7491\n0xAD4F\t0x7492\n0xAD50\t0x7493\n0xAD51\t0x7494\n0xAD52\t0x7495\n0xAD53\t0x7496\n0xAD54\t0x7497\n0xAD55\t0x7498\n0xAD56\t0x7499\n0xAD57\t0x749A\n0xAD58\t0x749B\n0xAD59\t0x749D\n0xAD5A\t0x749F\n0xAD5B\t0x74A0\n0xAD5C\t0x74A1\n0xAD5D\t0x74A2\n0xAD5E\t0x74A3\n0xAD5F\t0x74A4\n0xAD60\t0x74A5\n0xAD61\t0x74A6\n0xAD62\t0x74AA\n0xAD63\t0x74AB\n0xAD64\t0x74AC\n0xAD65\t0x74AD\n0xAD66\t0x74AE\n0xAD67\t0x74AF\n0xAD68\t0x74B0\n0xAD69\t0x74B1\n0xAD6A\t0x74B2\n0xAD6B\t0x74B3\n0xAD6C\t0x74B4\n0xAD6D\t0x74B5\n0xAD6E\t0x74B6\n0xAD6F\t0x74B7\n0xAD70\t0x74B8\n0xAD71\t0x74B9\n0xAD72\t0x74BB\n0xAD73\t0x74BC\n0xAD74\t0x74BD\n0xAD75\t0x74BE\n0xAD76\t0x74BF\n0xAD77\t0x74C0\n0xAD78\t0x74C1\n0xAD79\t0x74C2\n0xAD7A\t0x74C3\n0xAD7B\t0x74C4\n0xAD7C\t0x74C5\n0xAD7D\t0x74C6\n0xAD7E\t0x74C7\n0xAD80\t0x74C8\n0xAD81\t0x74C9\n0xAD82\t0x74CA\n0xAD83\t0x74CB\n0xAD84\t0x74CC\n0xAD85\t0x74CD\n0xAD86\t0x74CE\n0xAD87\t0x74CF\n0xAD88\t0x74D0\n0xAD89\t0x74D1\n0xAD8A\t0x74D3\n0xAD8B\t0x74D4\n0xAD8C\t0x74D5\n0xAD8D\t0x74D6\n0xAD8E\t0x74D7\n0xAD8F\t0x74D8\n0xAD90\t0x74D9\n0xAD91\t0x74DA\n0xAD92\t0x74DB\n0xAD93\t0x74DD\n0xAD94\t0x74DF\n0xAD95\t0x74E1\n0xAD96\t0x74E5\n0xAD97\t0x74E7\n0xAD98\t0x74E8\n0xAD99\t0x74E9\n0xAD9A\t0x74EA\n0xAD9B\t0x74EB\n0xAD9C\t0x74EC\n0xAD9D\t0x74ED\n0xAD9E\t0x74F0\n0xAD9F\t0x74F1\n0xADA0\t0x74F2\n0xADA1\t0xE11A\n0xADA2\t0xE11B\n0xADA3\t0xE11C\n0xADA4\t0xE11D\n0xADA5\t0xE11E\n0xADA6\t0xE11F\n0xADA7\t0xE120\n0xADA8\t0xE121\n0xADA9\t0xE122\n0xADAA\t0xE123\n0xADAB\t0xE124\n0xADAC\t0xE125\n0xADAD\t0xE126\n0xADAE\t0xE127\n0xADAF\t0xE128\n0xADB0\t0xE129\n0xADB1\t0xE12A\n0xADB2\t0xE12B\n0xADB3\t0xE12C\n0xADB4\t0xE12D\n0xADB5\t0xE12E\n0xADB6\t0xE12F\n0xADB7\t0xE130\n0xADB8\t0xE131\n0xADB9\t0xE132\n0xADBA\t0xE133\n0xADBB\t0xE134\n0xADBC\t0xE135\n0xADBD\t0xE136\n0xADBE\t0xE137\n0xADBF\t0xE138\n0xADC0\t0xE139\n0xADC1\t0xE13A\n0xADC2\t0xE13B\n0xADC3\t0xE13C\n0xADC4\t0xE13D\n0xADC5\t0xE13E\n0xADC6\t0xE13F\n0xADC7\t0xE140\n0xADC8\t0xE141\n0xADC9\t0xE142\n0xADCA\t0xE143\n0xADCB\t0xE144\n0xADCC\t0xE145\n0xADCD\t0xE146\n0xADCE\t0xE147\n0xADCF\t0xE148\n0xADD0\t0xE149\n0xADD1\t0xE14A\n0xADD2\t0xE14B\n0xADD3\t0xE14C\n0xADD4\t0xE14D\n0xADD5\t0xE14E\n0xADD6\t0xE14F\n0xADD7\t0xE150\n0xADD8\t0xE151\n0xADD9\t0xE152\n0xADDA\t0xE153\n0xADDB\t0xE154\n0xADDC\t0xE155\n0xADDD\t0xE156\n0xADDE\t0xE157\n0xADDF\t0xE158\n0xADE0\t0xE159\n0xADE1\t0xE15A\n0xADE2\t0xE15B\n0xADE3\t0xE15C\n0xADE4\t0xE15D\n0xADE5\t0xE15E\n0xADE6\t0xE15F\n0xADE7\t0xE160\n0xADE8\t0xE161\n0xADE9\t0xE162\n0xADEA\t0xE163\n0xADEB\t0xE164\n0xADEC\t0xE165\n0xADED\t0xE166\n0xADEE\t0xE167\n0xADEF\t0xE168\n0xADF0\t0xE169\n0xADF1\t0xE16A\n0xADF2\t0xE16B\n0xADF3\t0xE16C\n0xADF4\t0xE16D\n0xADF5\t0xE16E\n0xADF6\t0xE16F\n0xADF7\t0xE170\n0xADF8\t0xE171\n0xADF9\t0xE172\n0xADFA\t0xE173\n0xADFB\t0xE174\n0xADFC\t0xE175\n0xADFD\t0xE176\n0xADFE\t0xE177\n0xAE40\t0x74F3\n0xAE41\t0x74F5\n0xAE42\t0x74F8\n0xAE43\t0x74F9\n0xAE44\t0x74FA\n0xAE45\t0x74FB\n0xAE46\t0x74FC\n0xAE47\t0x74FD\n0xAE48\t0x74FE\n0xAE49\t0x7500\n0xAE4A\t0x7501\n0xAE4B\t0x7502\n0xAE4C\t0x7503\n0xAE4D\t0x7505\n0xAE4E\t0x7506\n0xAE4F\t0x7507\n0xAE50\t0x7508\n0xAE51\t0x7509\n0xAE52\t0x750A\n0xAE53\t0x750B\n0xAE54\t0x750C\n0xAE55\t0x750E\n0xAE56\t0x7510\n0xAE57\t0x7512\n0xAE58\t0x7514\n0xAE59\t0x7515\n0xAE5A\t0x7516\n0xAE5B\t0x7517\n0xAE5C\t0x751B\n0xAE5D\t0x751D\n0xAE5E\t0x751E\n0xAE5F\t0x7520\n0xAE60\t0x7521\n0xAE61\t0x7522\n0xAE62\t0x7523\n0xAE63\t0x7524\n0xAE64\t0x7526\n0xAE65\t0x7527\n0xAE66\t0x752A\n0xAE67\t0x752E\n0xAE68\t0x7534\n0xAE69\t0x7536\n0xAE6A\t0x7539\n0xAE6B\t0x753C\n0xAE6C\t0x753D\n0xAE6D\t0x753F\n0xAE6E\t0x7541\n0xAE6F\t0x7542\n0xAE70\t0x7543\n0xAE71\t0x7544\n0xAE72\t0x7546\n0xAE73\t0x7547\n0xAE74\t0x7549\n0xAE75\t0x754A\n0xAE76\t0x754D\n0xAE77\t0x7550\n0xAE78\t0x7551\n0xAE79\t0x7552\n0xAE7A\t0x7553\n0xAE7B\t0x7555\n0xAE7C\t0x7556\n0xAE7D\t0x7557\n0xAE7E\t0x7558\n0xAE80\t0x755D\n0xAE81\t0x755E\n0xAE82\t0x755F\n0xAE83\t0x7560\n0xAE84\t0x7561\n0xAE85\t0x7562\n0xAE86\t0x7563\n0xAE87\t0x7564\n0xAE88\t0x7567\n0xAE89\t0x7568\n0xAE8A\t0x7569\n0xAE8B\t0x756B\n0xAE8C\t0x756C\n0xAE8D\t0x756D\n0xAE8E\t0x756E\n0xAE8F\t0x756F\n0xAE90\t0x7570\n0xAE91\t0x7571\n0xAE92\t0x7573\n0xAE93\t0x7575\n0xAE94\t0x7576\n0xAE95\t0x7577\n0xAE96\t0x757A\n0xAE97\t0x757B\n0xAE98\t0x757C\n0xAE99\t0x757D\n0xAE9A\t0x757E\n0xAE9B\t0x7580\n0xAE9C\t0x7581\n0xAE9D\t0x7582\n0xAE9E\t0x7584\n0xAE9F\t0x7585\n0xAEA0\t0x7587\n0xAEA1\t0xE178\n0xAEA2\t0xE179\n0xAEA3\t0xE17A\n0xAEA4\t0xE17B\n0xAEA5\t0xE17C\n0xAEA6\t0xE17D\n0xAEA7\t0xE17E\n0xAEA8\t0xE17F\n0xAEA9\t0xE180\n0xAEAA\t0xE181\n0xAEAB\t0xE182\n0xAEAC\t0xE183\n0xAEAD\t0xE184\n0xAEAE\t0xE185\n0xAEAF\t0xE186\n0xAEB0\t0xE187\n0xAEB1\t0xE188\n0xAEB2\t0xE189\n0xAEB3\t0xE18A\n0xAEB4\t0xE18B\n0xAEB5\t0xE18C\n0xAEB6\t0xE18D\n0xAEB7\t0xE18E\n0xAEB8\t0xE18F\n0xAEB9\t0xE190\n0xAEBA\t0xE191\n0xAEBB\t0xE192\n0xAEBC\t0xE193\n0xAEBD\t0xE194\n0xAEBE\t0xE195\n0xAEBF\t0xE196\n0xAEC0\t0xE197\n0xAEC1\t0xE198\n0xAEC2\t0xE199\n0xAEC3\t0xE19A\n0xAEC4\t0xE19B\n0xAEC5\t0xE19C\n0xAEC6\t0xE19D\n0xAEC7\t0xE19E\n0xAEC8\t0xE19F\n0xAEC9\t0xE1A0\n0xAECA\t0xE1A1\n0xAECB\t0xE1A2\n0xAECC\t0xE1A3\n0xAECD\t0xE1A4\n0xAECE\t0xE1A5\n0xAECF\t0xE1A6\n0xAED0\t0xE1A7\n0xAED1\t0xE1A8\n0xAED2\t0xE1A9\n0xAED3\t0xE1AA\n0xAED4\t0xE1AB\n0xAED5\t0xE1AC\n0xAED6\t0xE1AD\n0xAED7\t0xE1AE\n0xAED8\t0xE1AF\n0xAED9\t0xE1B0\n0xAEDA\t0xE1B1\n0xAEDB\t0xE1B2\n0xAEDC\t0xE1B3\n0xAEDD\t0xE1B4\n0xAEDE\t0xE1B5\n0xAEDF\t0xE1B6\n0xAEE0\t0xE1B7\n0xAEE1\t0xE1B8\n0xAEE2\t0xE1B9\n0xAEE3\t0xE1BA\n0xAEE4\t0xE1BB\n0xAEE5\t0xE1BC\n0xAEE6\t0xE1BD\n0xAEE7\t0xE1BE\n0xAEE8\t0xE1BF\n0xAEE9\t0xE1C0\n0xAEEA\t0xE1C1\n0xAEEB\t0xE1C2\n0xAEEC\t0xE1C3\n0xAEED\t0xE1C4\n0xAEEE\t0xE1C5\n0xAEEF\t0xE1C6\n0xAEF0\t0xE1C7\n0xAEF1\t0xE1C8\n0xAEF2\t0xE1C9\n0xAEF3\t0xE1CA\n0xAEF4\t0xE1CB\n0xAEF5\t0xE1CC\n0xAEF6\t0xE1CD\n0xAEF7\t0xE1CE\n0xAEF8\t0xE1CF\n0xAEF9\t0xE1D0\n0xAEFA\t0xE1D1\n0xAEFB\t0xE1D2\n0xAEFC\t0xE1D3\n0xAEFD\t0xE1D4\n0xAEFE\t0xE1D5\n0xAF40\t0x7588\n0xAF41\t0x7589\n0xAF42\t0x758A\n0xAF43\t0x758C\n0xAF44\t0x758D\n0xAF45\t0x758E\n0xAF46\t0x7590\n0xAF47\t0x7593\n0xAF48\t0x7595\n0xAF49\t0x7598\n0xAF4A\t0x759B\n0xAF4B\t0x759C\n0xAF4C\t0x759E\n0xAF4D\t0x75A2\n0xAF4E\t0x75A6\n0xAF4F\t0x75A7\n0xAF50\t0x75A8\n0xAF51\t0x75A9\n0xAF52\t0x75AA\n0xAF53\t0x75AD\n0xAF54\t0x75B6\n0xAF55\t0x75B7\n0xAF56\t0x75BA\n0xAF57\t0x75BB\n0xAF58\t0x75BF\n0xAF59\t0x75C0\n0xAF5A\t0x75C1\n0xAF5B\t0x75C6\n0xAF5C\t0x75CB\n0xAF5D\t0x75CC\n0xAF5E\t0x75CE\n0xAF5F\t0x75CF\n0xAF60\t0x75D0\n0xAF61\t0x75D1\n0xAF62\t0x75D3\n0xAF63\t0x75D7\n0xAF64\t0x75D9\n0xAF65\t0x75DA\n0xAF66\t0x75DC\n0xAF67\t0x75DD\n0xAF68\t0x75DF\n0xAF69\t0x75E0\n0xAF6A\t0x75E1\n0xAF6B\t0x75E5\n0xAF6C\t0x75E9\n0xAF6D\t0x75EC\n0xAF6E\t0x75ED\n0xAF6F\t0x75EE\n0xAF70\t0x75EF\n0xAF71\t0x75F2\n0xAF72\t0x75F3\n0xAF73\t0x75F5\n0xAF74\t0x75F6\n0xAF75\t0x75F7\n0xAF76\t0x75F8\n0xAF77\t0x75FA\n0xAF78\t0x75FB\n0xAF79\t0x75FD\n0xAF7A\t0x75FE\n0xAF7B\t0x7602\n0xAF7C\t0x7604\n0xAF7D\t0x7606\n0xAF7E\t0x7607\n0xAF80\t0x7608\n0xAF81\t0x7609\n0xAF82\t0x760B\n0xAF83\t0x760D\n0xAF84\t0x760E\n0xAF85\t0x760F\n0xAF86\t0x7611\n0xAF87\t0x7612\n0xAF88\t0x7613\n0xAF89\t0x7614\n0xAF8A\t0x7616\n0xAF8B\t0x761A\n0xAF8C\t0x761C\n0xAF8D\t0x761D\n0xAF8E\t0x761E\n0xAF8F\t0x7621\n0xAF90\t0x7623\n0xAF91\t0x7627\n0xAF92\t0x7628\n0xAF93\t0x762C\n0xAF94\t0x762E\n0xAF95\t0x762F\n0xAF96\t0x7631\n0xAF97\t0x7632\n0xAF98\t0x7636\n0xAF99\t0x7637\n0xAF9A\t0x7639\n0xAF9B\t0x763A\n0xAF9C\t0x763B\n0xAF9D\t0x763D\n0xAF9E\t0x7641\n0xAF9F\t0x7642\n0xAFA0\t0x7644\n0xAFA1\t0xE1D6\n0xAFA2\t0xE1D7\n0xAFA3\t0xE1D8\n0xAFA4\t0xE1D9\n0xAFA5\t0xE1DA\n0xAFA6\t0xE1DB\n0xAFA7\t0xE1DC\n0xAFA8\t0xE1DD\n0xAFA9\t0xE1DE\n0xAFAA\t0xE1DF\n0xAFAB\t0xE1E0\n0xAFAC\t0xE1E1\n0xAFAD\t0xE1E2\n0xAFAE\t0xE1E3\n0xAFAF\t0xE1E4\n0xAFB0\t0xE1E5\n0xAFB1\t0xE1E6\n0xAFB2\t0xE1E7\n0xAFB3\t0xE1E8\n0xAFB4\t0xE1E9\n0xAFB5\t0xE1EA\n0xAFB6\t0xE1EB\n0xAFB7\t0xE1EC\n0xAFB8\t0xE1ED\n0xAFB9\t0xE1EE\n0xAFBA\t0xE1EF\n0xAFBB\t0xE1F0\n0xAFBC\t0xE1F1\n0xAFBD\t0xE1F2\n0xAFBE\t0xE1F3\n0xAFBF\t0xE1F4\n0xAFC0\t0xE1F5\n0xAFC1\t0xE1F6\n0xAFC2\t0xE1F7\n0xAFC3\t0xE1F8\n0xAFC4\t0xE1F9\n0xAFC5\t0xE1FA\n0xAFC6\t0xE1FB\n0xAFC7\t0xE1FC\n0xAFC8\t0xE1FD\n0xAFC9\t0xE1FE\n0xAFCA\t0xE1FF\n0xAFCB\t0xE200\n0xAFCC\t0xE201\n0xAFCD\t0xE202\n0xAFCE\t0xE203\n0xAFCF\t0xE204\n0xAFD0\t0xE205\n0xAFD1\t0xE206\n0xAFD2\t0xE207\n0xAFD3\t0xE208\n0xAFD4\t0xE209\n0xAFD5\t0xE20A\n0xAFD6\t0xE20B\n0xAFD7\t0xE20C\n0xAFD8\t0xE20D\n0xAFD9\t0xE20E\n0xAFDA\t0xE20F\n0xAFDB\t0xE210\n0xAFDC\t0xE211\n0xAFDD\t0xE212\n0xAFDE\t0xE213\n0xAFDF\t0xE214\n0xAFE0\t0xE215\n0xAFE1\t0xE216\n0xAFE2\t0xE217\n0xAFE3\t0xE218\n0xAFE4\t0xE219\n0xAFE5\t0xE21A\n0xAFE6\t0xE21B\n0xAFE7\t0xE21C\n0xAFE8\t0xE21D\n0xAFE9\t0xE21E\n0xAFEA\t0xE21F\n0xAFEB\t0xE220\n0xAFEC\t0xE221\n0xAFED\t0xE222\n0xAFEE\t0xE223\n0xAFEF\t0xE224\n0xAFF0\t0xE225\n0xAFF1\t0xE226\n0xAFF2\t0xE227\n0xAFF3\t0xE228\n0xAFF4\t0xE229\n0xAFF5\t0xE22A\n0xAFF6\t0xE22B\n0xAFF7\t0xE22C\n0xAFF8\t0xE22D\n0xAFF9\t0xE22E\n0xAFFA\t0xE22F\n0xAFFB\t0xE230\n0xAFFC\t0xE231\n0xAFFD\t0xE232\n0xAFFE\t0xE233\n0xB040\t0x7645\n0xB041\t0x7646\n0xB042\t0x7647\n0xB043\t0x7648\n0xB044\t0x7649\n0xB045\t0x764A\n0xB046\t0x764B\n0xB047\t0x764E\n0xB048\t0x764F\n0xB049\t0x7650\n0xB04A\t0x7651\n0xB04B\t0x7652\n0xB04C\t0x7653\n0xB04D\t0x7655\n0xB04E\t0x7657\n0xB04F\t0x7658\n0xB050\t0x7659\n0xB051\t0x765A\n0xB052\t0x765B\n0xB053\t0x765D\n0xB054\t0x765F\n0xB055\t0x7660\n0xB056\t0x7661\n0xB057\t0x7662\n0xB058\t0x7664\n0xB059\t0x7665\n0xB05A\t0x7666\n0xB05B\t0x7667\n0xB05C\t0x7668\n0xB05D\t0x7669\n0xB05E\t0x766A\n0xB05F\t0x766C\n0xB060\t0x766D\n0xB061\t0x766E\n0xB062\t0x7670\n0xB063\t0x7671\n0xB064\t0x7672\n0xB065\t0x7673\n0xB066\t0x7674\n0xB067\t0x7675\n0xB068\t0x7676\n0xB069\t0x7677\n0xB06A\t0x7679\n0xB06B\t0x767A\n0xB06C\t0x767C\n0xB06D\t0x767F\n0xB06E\t0x7680\n0xB06F\t0x7681\n0xB070\t0x7683\n0xB071\t0x7685\n0xB072\t0x7689\n0xB073\t0x768A\n0xB074\t0x768C\n0xB075\t0x768D\n0xB076\t0x768F\n0xB077\t0x7690\n0xB078\t0x7692\n0xB079\t0x7694\n0xB07A\t0x7695\n0xB07B\t0x7697\n0xB07C\t0x7698\n0xB07D\t0x769A\n0xB07E\t0x769B\n0xB080\t0x769C\n0xB081\t0x769D\n0xB082\t0x769E\n0xB083\t0x769F\n0xB084\t0x76A0\n0xB085\t0x76A1\n0xB086\t0x76A2\n0xB087\t0x76A3\n0xB088\t0x76A5\n0xB089\t0x76A6\n0xB08A\t0x76A7\n0xB08B\t0x76A8\n0xB08C\t0x76A9\n0xB08D\t0x76AA\n0xB08E\t0x76AB\n0xB08F\t0x76AC\n0xB090\t0x76AD\n0xB091\t0x76AF\n0xB092\t0x76B0\n0xB093\t0x76B3\n0xB094\t0x76B5\n0xB095\t0x76B6\n0xB096\t0x76B7\n0xB097\t0x76B8\n0xB098\t0x76B9\n0xB099\t0x76BA\n0xB09A\t0x76BB\n0xB09B\t0x76BC\n0xB09C\t0x76BD\n0xB09D\t0x76BE\n0xB09E\t0x76C0\n0xB09F\t0x76C1\n0xB0A0\t0x76C3\n0xB0A1\t0x554A\n0xB0A2\t0x963F\n0xB0A3\t0x57C3\n0xB0A4\t0x6328\n0xB0A5\t0x54CE\n0xB0A6\t0x5509\n0xB0A7\t0x54C0\n0xB0A8\t0x7691\n0xB0A9\t0x764C\n0xB0AA\t0x853C\n0xB0AB\t0x77EE\n0xB0AC\t0x827E\n0xB0AD\t0x788D\n0xB0AE\t0x7231\n0xB0AF\t0x9698\n0xB0B0\t0x978D\n0xB0B1\t0x6C28\n0xB0B2\t0x5B89\n0xB0B3\t0x4FFA\n0xB0B4\t0x6309\n0xB0B5\t0x6697\n0xB0B6\t0x5CB8\n0xB0B7\t0x80FA\n0xB0B8\t0x6848\n0xB0B9\t0x80AE\n0xB0BA\t0x6602\n0xB0BB\t0x76CE\n0xB0BC\t0x51F9\n0xB0BD\t0x6556\n0xB0BE\t0x71AC\n0xB0BF\t0x7FF1\n0xB0C0\t0x8884\n0xB0C1\t0x50B2\n0xB0C2\t0x5965\n0xB0C3\t0x61CA\n0xB0C4\t0x6FB3\n0xB0C5\t0x82AD\n0xB0C6\t0x634C\n0xB0C7\t0x6252\n0xB0C8\t0x53ED\n0xB0C9\t0x5427\n0xB0CA\t0x7B06\n0xB0CB\t0x516B\n0xB0CC\t0x75A4\n0xB0CD\t0x5DF4\n0xB0CE\t0x62D4\n0xB0CF\t0x8DCB\n0xB0D0\t0x9776\n0xB0D1\t0x628A\n0xB0D2\t0x8019\n0xB0D3\t0x575D\n0xB0D4\t0x9738\n0xB0D5\t0x7F62\n0xB0D6\t0x7238\n0xB0D7\t0x767D\n0xB0D8\t0x67CF\n0xB0D9\t0x767E\n0xB0DA\t0x6446\n0xB0DB\t0x4F70\n0xB0DC\t0x8D25\n0xB0DD\t0x62DC\n0xB0DE\t0x7A17\n0xB0DF\t0x6591\n0xB0E0\t0x73ED\n0xB0E1\t0x642C\n0xB0E2\t0x6273\n0xB0E3\t0x822C\n0xB0E4\t0x9881\n0xB0E5\t0x677F\n0xB0E6\t0x7248\n0xB0E7\t0x626E\n0xB0E8\t0x62CC\n0xB0E9\t0x4F34\n0xB0EA\t0x74E3\n0xB0EB\t0x534A\n0xB0EC\t0x529E\n0xB0ED\t0x7ECA\n0xB0EE\t0x90A6\n0xB0EF\t0x5E2E\n0xB0F0\t0x6886\n0xB0F1\t0x699C\n0xB0F2\t0x8180\n0xB0F3\t0x7ED1\n0xB0F4\t0x68D2\n0xB0F5\t0x78C5\n0xB0F6\t0x868C\n0xB0F7\t0x9551\n0xB0F8\t0x508D\n0xB0F9\t0x8C24\n0xB0FA\t0x82DE\n0xB0FB\t0x80DE\n0xB0FC\t0x5305\n0xB0FD\t0x8912\n0xB0FE\t0x5265\n0xB140\t0x76C4\n0xB141\t0x76C7\n0xB142\t0x76C9\n0xB143\t0x76CB\n0xB144\t0x76CC\n0xB145\t0x76D3\n0xB146\t0x76D5\n0xB147\t0x76D9\n0xB148\t0x76DA\n0xB149\t0x76DC\n0xB14A\t0x76DD\n0xB14B\t0x76DE\n0xB14C\t0x76E0\n0xB14D\t0x76E1\n0xB14E\t0x76E2\n0xB14F\t0x76E3\n0xB150\t0x76E4\n0xB151\t0x76E6\n0xB152\t0x76E7\n0xB153\t0x76E8\n0xB154\t0x76E9\n0xB155\t0x76EA\n0xB156\t0x76EB\n0xB157\t0x76EC\n0xB158\t0x76ED\n0xB159\t0x76F0\n0xB15A\t0x76F3\n0xB15B\t0x76F5\n0xB15C\t0x76F6\n0xB15D\t0x76F7\n0xB15E\t0x76FA\n0xB15F\t0x76FB\n0xB160\t0x76FD\n0xB161\t0x76FF\n0xB162\t0x7700\n0xB163\t0x7702\n0xB164\t0x7703\n0xB165\t0x7705\n0xB166\t0x7706\n0xB167\t0x770A\n0xB168\t0x770C\n0xB169\t0x770E\n0xB16A\t0x770F\n0xB16B\t0x7710\n0xB16C\t0x7711\n0xB16D\t0x7712\n0xB16E\t0x7713\n0xB16F\t0x7714\n0xB170\t0x7715\n0xB171\t0x7716\n0xB172\t0x7717\n0xB173\t0x7718\n0xB174\t0x771B\n0xB175\t0x771C\n0xB176\t0x771D\n0xB177\t0x771E\n0xB178\t0x7721\n0xB179\t0x7723\n0xB17A\t0x7724\n0xB17B\t0x7725\n0xB17C\t0x7727\n0xB17D\t0x772A\n0xB17E\t0x772B\n0xB180\t0x772C\n0xB181\t0x772E\n0xB182\t0x7730\n0xB183\t0x7731\n0xB184\t0x7732\n0xB185\t0x7733\n0xB186\t0x7734\n0xB187\t0x7739\n0xB188\t0x773B\n0xB189\t0x773D\n0xB18A\t0x773E\n0xB18B\t0x773F\n0xB18C\t0x7742\n0xB18D\t0x7744\n0xB18E\t0x7745\n0xB18F\t0x7746\n0xB190\t0x7748\n0xB191\t0x7749\n0xB192\t0x774A\n0xB193\t0x774B\n0xB194\t0x774C\n0xB195\t0x774D\n0xB196\t0x774E\n0xB197\t0x774F\n0xB198\t0x7752\n0xB199\t0x7753\n0xB19A\t0x7754\n0xB19B\t0x7755\n0xB19C\t0x7756\n0xB19D\t0x7757\n0xB19E\t0x7758\n0xB19F\t0x7759\n0xB1A0\t0x775C\n0xB1A1\t0x8584\n0xB1A2\t0x96F9\n0xB1A3\t0x4FDD\n0xB1A4\t0x5821\n0xB1A5\t0x9971\n0xB1A6\t0x5B9D\n0xB1A7\t0x62B1\n0xB1A8\t0x62A5\n0xB1A9\t0x66B4\n0xB1AA\t0x8C79\n0xB1AB\t0x9C8D\n0xB1AC\t0x7206\n0xB1AD\t0x676F\n0xB1AE\t0x7891\n0xB1AF\t0x60B2\n0xB1B0\t0x5351\n0xB1B1\t0x5317\n0xB1B2\t0x8F88\n0xB1B3\t0x80CC\n0xB1B4\t0x8D1D\n0xB1B5\t0x94A1\n0xB1B6\t0x500D\n0xB1B7\t0x72C8\n0xB1B8\t0x5907\n0xB1B9\t0x60EB\n0xB1BA\t0x7119\n0xB1BB\t0x88AB\n0xB1BC\t0x5954\n0xB1BD\t0x82EF\n0xB1BE\t0x672C\n0xB1BF\t0x7B28\n0xB1C0\t0x5D29\n0xB1C1\t0x7EF7\n0xB1C2\t0x752D\n0xB1C3\t0x6CF5\n0xB1C4\t0x8E66\n0xB1C5\t0x8FF8\n0xB1C6\t0x903C\n0xB1C7\t0x9F3B\n0xB1C8\t0x6BD4\n0xB1C9\t0x9119\n0xB1CA\t0x7B14\n0xB1CB\t0x5F7C\n0xB1CC\t0x78A7\n0xB1CD\t0x84D6\n0xB1CE\t0x853D\n0xB1CF\t0x6BD5\n0xB1D0\t0x6BD9\n0xB1D1\t0x6BD6\n0xB1D2\t0x5E01\n0xB1D3\t0x5E87\n0xB1D4\t0x75F9\n0xB1D5\t0x95ED\n0xB1D6\t0x655D\n0xB1D7\t0x5F0A\n0xB1D8\t0x5FC5\n0xB1D9\t0x8F9F\n0xB1DA\t0x58C1\n0xB1DB\t0x81C2\n0xB1DC\t0x907F\n0xB1DD\t0x965B\n0xB1DE\t0x97AD\n0xB1DF\t0x8FB9\n0xB1E0\t0x7F16\n0xB1E1\t0x8D2C\n0xB1E2\t0x6241\n0xB1E3\t0x4FBF\n0xB1E4\t0x53D8\n0xB1E5\t0x535E\n0xB1E6\t0x8FA8\n0xB1E7\t0x8FA9\n0xB1E8\t0x8FAB\n0xB1E9\t0x904D\n0xB1EA\t0x6807\n0xB1EB\t0x5F6A\n0xB1EC\t0x8198\n0xB1ED\t0x8868\n0xB1EE\t0x9CD6\n0xB1EF\t0x618B\n0xB1F0\t0x522B\n0xB1F1\t0x762A\n0xB1F2\t0x5F6C\n0xB1F3\t0x658C\n0xB1F4\t0x6FD2\n0xB1F5\t0x6EE8\n0xB1F6\t0x5BBE\n0xB1F7\t0x6448\n0xB1F8\t0x5175\n0xB1F9\t0x51B0\n0xB1FA\t0x67C4\n0xB1FB\t0x4E19\n0xB1FC\t0x79C9\n0xB1FD\t0x997C\n0xB1FE\t0x70B3\n0xB240\t0x775D\n0xB241\t0x775E\n0xB242\t0x775F\n0xB243\t0x7760\n0xB244\t0x7764\n0xB245\t0x7767\n0xB246\t0x7769\n0xB247\t0x776A\n0xB248\t0x776D\n0xB249\t0x776E\n0xB24A\t0x776F\n0xB24B\t0x7770\n0xB24C\t0x7771\n0xB24D\t0x7772\n0xB24E\t0x7773\n0xB24F\t0x7774\n0xB250\t0x7775\n0xB251\t0x7776\n0xB252\t0x7777\n0xB253\t0x7778\n0xB254\t0x777A\n0xB255\t0x777B\n0xB256\t0x777C\n0xB257\t0x7781\n0xB258\t0x7782\n0xB259\t0x7783\n0xB25A\t0x7786\n0xB25B\t0x7787\n0xB25C\t0x7788\n0xB25D\t0x7789\n0xB25E\t0x778A\n0xB25F\t0x778B\n0xB260\t0x778F\n0xB261\t0x7790\n0xB262\t0x7793\n0xB263\t0x7794\n0xB264\t0x7795\n0xB265\t0x7796\n0xB266\t0x7797\n0xB267\t0x7798\n0xB268\t0x7799\n0xB269\t0x779A\n0xB26A\t0x779B\n0xB26B\t0x779C\n0xB26C\t0x779D\n0xB26D\t0x779E\n0xB26E\t0x77A1\n0xB26F\t0x77A3\n0xB270\t0x77A4\n0xB271\t0x77A6\n0xB272\t0x77A8\n0xB273\t0x77AB\n0xB274\t0x77AD\n0xB275\t0x77AE\n0xB276\t0x77AF\n0xB277\t0x77B1\n0xB278\t0x77B2\n0xB279\t0x77B4\n0xB27A\t0x77B6\n0xB27B\t0x77B7\n0xB27C\t0x77B8\n0xB27D\t0x77B9\n0xB27E\t0x77BA\n0xB280\t0x77BC\n0xB281\t0x77BE\n0xB282\t0x77C0\n0xB283\t0x77C1\n0xB284\t0x77C2\n0xB285\t0x77C3\n0xB286\t0x77C4\n0xB287\t0x77C5\n0xB288\t0x77C6\n0xB289\t0x77C7\n0xB28A\t0x77C8\n0xB28B\t0x77C9\n0xB28C\t0x77CA\n0xB28D\t0x77CB\n0xB28E\t0x77CC\n0xB28F\t0x77CE\n0xB290\t0x77CF\n0xB291\t0x77D0\n0xB292\t0x77D1\n0xB293\t0x77D2\n0xB294\t0x77D3\n0xB295\t0x77D4\n0xB296\t0x77D5\n0xB297\t0x77D6\n0xB298\t0x77D8\n0xB299\t0x77D9\n0xB29A\t0x77DA\n0xB29B\t0x77DD\n0xB29C\t0x77DE\n0xB29D\t0x77DF\n0xB29E\t0x77E0\n0xB29F\t0x77E1\n0xB2A0\t0x77E4\n0xB2A1\t0x75C5\n0xB2A2\t0x5E76\n0xB2A3\t0x73BB\n0xB2A4\t0x83E0\n0xB2A5\t0x64AD\n0xB2A6\t0x62E8\n0xB2A7\t0x94B5\n0xB2A8\t0x6CE2\n0xB2A9\t0x535A\n0xB2AA\t0x52C3\n0xB2AB\t0x640F\n0xB2AC\t0x94C2\n0xB2AD\t0x7B94\n0xB2AE\t0x4F2F\n0xB2AF\t0x5E1B\n0xB2B0\t0x8236\n0xB2B1\t0x8116\n0xB2B2\t0x818A\n0xB2B3\t0x6E24\n0xB2B4\t0x6CCA\n0xB2B5\t0x9A73\n0xB2B6\t0x6355\n0xB2B7\t0x535C\n0xB2B8\t0x54FA\n0xB2B9\t0x8865\n0xB2BA\t0x57E0\n0xB2BB\t0x4E0D\n0xB2BC\t0x5E03\n0xB2BD\t0x6B65\n0xB2BE\t0x7C3F\n0xB2BF\t0x90E8\n0xB2C0\t0x6016\n0xB2C1\t0x64E6\n0xB2C2\t0x731C\n0xB2C3\t0x88C1\n0xB2C4\t0x6750\n0xB2C5\t0x624D\n0xB2C6\t0x8D22\n0xB2C7\t0x776C\n0xB2C8\t0x8E29\n0xB2C9\t0x91C7\n0xB2CA\t0x5F69\n0xB2CB\t0x83DC\n0xB2CC\t0x8521\n0xB2CD\t0x9910\n0xB2CE\t0x53C2\n0xB2CF\t0x8695\n0xB2D0\t0x6B8B\n0xB2D1\t0x60ED\n0xB2D2\t0x60E8\n0xB2D3\t0x707F\n0xB2D4\t0x82CD\n0xB2D5\t0x8231\n0xB2D6\t0x4ED3\n0xB2D7\t0x6CA7\n0xB2D8\t0x85CF\n0xB2D9\t0x64CD\n0xB2DA\t0x7CD9\n0xB2DB\t0x69FD\n0xB2DC\t0x66F9\n0xB2DD\t0x8349\n0xB2DE\t0x5395\n0xB2DF\t0x7B56\n0xB2E0\t0x4FA7\n0xB2E1\t0x518C\n0xB2E2\t0x6D4B\n0xB2E3\t0x5C42\n0xB2E4\t0x8E6D\n0xB2E5\t0x63D2\n0xB2E6\t0x53C9\n0xB2E7\t0x832C\n0xB2E8\t0x8336\n0xB2E9\t0x67E5\n0xB2EA\t0x78B4\n0xB2EB\t0x643D\n0xB2EC\t0x5BDF\n0xB2ED\t0x5C94\n0xB2EE\t0x5DEE\n0xB2EF\t0x8BE7\n0xB2F0\t0x62C6\n0xB2F1\t0x67F4\n0xB2F2\t0x8C7A\n0xB2F3\t0x6400\n0xB2F4\t0x63BA\n0xB2F5\t0x8749\n0xB2F6\t0x998B\n0xB2F7\t0x8C17\n0xB2F8\t0x7F20\n0xB2F9\t0x94F2\n0xB2FA\t0x4EA7\n0xB2FB\t0x9610\n0xB2FC\t0x98A4\n0xB2FD\t0x660C\n0xB2FE\t0x7316\n0xB340\t0x77E6\n0xB341\t0x77E8\n0xB342\t0x77EA\n0xB343\t0x77EF\n0xB344\t0x77F0\n0xB345\t0x77F1\n0xB346\t0x77F2\n0xB347\t0x77F4\n0xB348\t0x77F5\n0xB349\t0x77F7\n0xB34A\t0x77F9\n0xB34B\t0x77FA\n0xB34C\t0x77FB\n0xB34D\t0x77FC\n0xB34E\t0x7803\n0xB34F\t0x7804\n0xB350\t0x7805\n0xB351\t0x7806\n0xB352\t0x7807\n0xB353\t0x7808\n0xB354\t0x780A\n0xB355\t0x780B\n0xB356\t0x780E\n0xB357\t0x780F\n0xB358\t0x7810\n0xB359\t0x7813\n0xB35A\t0x7815\n0xB35B\t0x7819\n0xB35C\t0x781B\n0xB35D\t0x781E\n0xB35E\t0x7820\n0xB35F\t0x7821\n0xB360\t0x7822\n0xB361\t0x7824\n0xB362\t0x7828\n0xB363\t0x782A\n0xB364\t0x782B\n0xB365\t0x782E\n0xB366\t0x782F\n0xB367\t0x7831\n0xB368\t0x7832\n0xB369\t0x7833\n0xB36A\t0x7835\n0xB36B\t0x7836\n0xB36C\t0x783D\n0xB36D\t0x783F\n0xB36E\t0x7841\n0xB36F\t0x7842\n0xB370\t0x7843\n0xB371\t0x7844\n0xB372\t0x7846\n0xB373\t0x7848\n0xB374\t0x7849\n0xB375\t0x784A\n0xB376\t0x784B\n0xB377\t0x784D\n0xB378\t0x784F\n0xB379\t0x7851\n0xB37A\t0x7853\n0xB37B\t0x7854\n0xB37C\t0x7858\n0xB37D\t0x7859\n0xB37E\t0x785A\n0xB380\t0x785B\n0xB381\t0x785C\n0xB382\t0x785E\n0xB383\t0x785F\n0xB384\t0x7860\n0xB385\t0x7861\n0xB386\t0x7862\n0xB387\t0x7863\n0xB388\t0x7864\n0xB389\t0x7865\n0xB38A\t0x7866\n0xB38B\t0x7867\n0xB38C\t0x7868\n0xB38D\t0x7869\n0xB38E\t0x786F\n0xB38F\t0x7870\n0xB390\t0x7871\n0xB391\t0x7872\n0xB392\t0x7873\n0xB393\t0x7874\n0xB394\t0x7875\n0xB395\t0x7876\n0xB396\t0x7878\n0xB397\t0x7879\n0xB398\t0x787A\n0xB399\t0x787B\n0xB39A\t0x787D\n0xB39B\t0x787E\n0xB39C\t0x787F\n0xB39D\t0x7880\n0xB39E\t0x7881\n0xB39F\t0x7882\n0xB3A0\t0x7883\n0xB3A1\t0x573A\n0xB3A2\t0x5C1D\n0xB3A3\t0x5E38\n0xB3A4\t0x957F\n0xB3A5\t0x507F\n0xB3A6\t0x80A0\n0xB3A7\t0x5382\n0xB3A8\t0x655E\n0xB3A9\t0x7545\n0xB3AA\t0x5531\n0xB3AB\t0x5021\n0xB3AC\t0x8D85\n0xB3AD\t0x6284\n0xB3AE\t0x949E\n0xB3AF\t0x671D\n0xB3B0\t0x5632\n0xB3B1\t0x6F6E\n0xB3B2\t0x5DE2\n0xB3B3\t0x5435\n0xB3B4\t0x7092\n0xB3B5\t0x8F66\n0xB3B6\t0x626F\n0xB3B7\t0x64A4\n0xB3B8\t0x63A3\n0xB3B9\t0x5F7B\n0xB3BA\t0x6F88\n0xB3BB\t0x90F4\n0xB3BC\t0x81E3\n0xB3BD\t0x8FB0\n0xB3BE\t0x5C18\n0xB3BF\t0x6668\n0xB3C0\t0x5FF1\n0xB3C1\t0x6C89\n0xB3C2\t0x9648\n0xB3C3\t0x8D81\n0xB3C4\t0x886C\n0xB3C5\t0x6491\n0xB3C6\t0x79F0\n0xB3C7\t0x57CE\n0xB3C8\t0x6A59\n0xB3C9\t0x6210\n0xB3CA\t0x5448\n0xB3CB\t0x4E58\n0xB3CC\t0x7A0B\n0xB3CD\t0x60E9\n0xB3CE\t0x6F84\n0xB3CF\t0x8BDA\n0xB3D0\t0x627F\n0xB3D1\t0x901E\n0xB3D2\t0x9A8B\n0xB3D3\t0x79E4\n0xB3D4\t0x5403\n0xB3D5\t0x75F4\n0xB3D6\t0x6301\n0xB3D7\t0x5319\n0xB3D8\t0x6C60\n0xB3D9\t0x8FDF\n0xB3DA\t0x5F1B\n0xB3DB\t0x9A70\n0xB3DC\t0x803B\n0xB3DD\t0x9F7F\n0xB3DE\t0x4F88\n0xB3DF\t0x5C3A\n0xB3E0\t0x8D64\n0xB3E1\t0x7FC5\n0xB3E2\t0x65A5\n0xB3E3\t0x70BD\n0xB3E4\t0x5145\n0xB3E5\t0x51B2\n0xB3E6\t0x866B\n0xB3E7\t0x5D07\n0xB3E8\t0x5BA0\n0xB3E9\t0x62BD\n0xB3EA\t0x916C\n0xB3EB\t0x7574\n0xB3EC\t0x8E0C\n0xB3ED\t0x7A20\n0xB3EE\t0x6101\n0xB3EF\t0x7B79\n0xB3F0\t0x4EC7\n0xB3F1\t0x7EF8\n0xB3F2\t0x7785\n0xB3F3\t0x4E11\n0xB3F4\t0x81ED\n0xB3F5\t0x521D\n0xB3F6\t0x51FA\n0xB3F7\t0x6A71\n0xB3F8\t0x53A8\n0xB3F9\t0x8E87\n0xB3FA\t0x9504\n0xB3FB\t0x96CF\n0xB3FC\t0x6EC1\n0xB3FD\t0x9664\n0xB3FE\t0x695A\n0xB440\t0x7884\n0xB441\t0x7885\n0xB442\t0x7886\n0xB443\t0x7888\n0xB444\t0x788A\n0xB445\t0x788B\n0xB446\t0x788F\n0xB447\t0x7890\n0xB448\t0x7892\n0xB449\t0x7894\n0xB44A\t0x7895\n0xB44B\t0x7896\n0xB44C\t0x7899\n0xB44D\t0x789D\n0xB44E\t0x789E\n0xB44F\t0x78A0\n0xB450\t0x78A2\n0xB451\t0x78A4\n0xB452\t0x78A6\n0xB453\t0x78A8\n0xB454\t0x78A9\n0xB455\t0x78AA\n0xB456\t0x78AB\n0xB457\t0x78AC\n0xB458\t0x78AD\n0xB459\t0x78AE\n0xB45A\t0x78AF\n0xB45B\t0x78B5\n0xB45C\t0x78B6\n0xB45D\t0x78B7\n0xB45E\t0x78B8\n0xB45F\t0x78BA\n0xB460\t0x78BB\n0xB461\t0x78BC\n0xB462\t0x78BD\n0xB463\t0x78BF\n0xB464\t0x78C0\n0xB465\t0x78C2\n0xB466\t0x78C3\n0xB467\t0x78C4\n0xB468\t0x78C6\n0xB469\t0x78C7\n0xB46A\t0x78C8\n0xB46B\t0x78CC\n0xB46C\t0x78CD\n0xB46D\t0x78CE\n0xB46E\t0x78CF\n0xB46F\t0x78D1\n0xB470\t0x78D2\n0xB471\t0x78D3\n0xB472\t0x78D6\n0xB473\t0x78D7\n0xB474\t0x78D8\n0xB475\t0x78DA\n0xB476\t0x78DB\n0xB477\t0x78DC\n0xB478\t0x78DD\n0xB479\t0x78DE\n0xB47A\t0x78DF\n0xB47B\t0x78E0\n0xB47C\t0x78E1\n0xB47D\t0x78E2\n0xB47E\t0x78E3\n0xB480\t0x78E4\n0xB481\t0x78E5\n0xB482\t0x78E6\n0xB483\t0x78E7\n0xB484\t0x78E9\n0xB485\t0x78EA\n0xB486\t0x78EB\n0xB487\t0x78ED\n0xB488\t0x78EE\n0xB489\t0x78EF\n0xB48A\t0x78F0\n0xB48B\t0x78F1\n0xB48C\t0x78F3\n0xB48D\t0x78F5\n0xB48E\t0x78F6\n0xB48F\t0x78F8\n0xB490\t0x78F9\n0xB491\t0x78FB\n0xB492\t0x78FC\n0xB493\t0x78FD\n0xB494\t0x78FE\n0xB495\t0x78FF\n0xB496\t0x7900\n0xB497\t0x7902\n0xB498\t0x7903\n0xB499\t0x7904\n0xB49A\t0x7906\n0xB49B\t0x7907\n0xB49C\t0x7908\n0xB49D\t0x7909\n0xB49E\t0x790A\n0xB49F\t0x790B\n0xB4A0\t0x790C\n0xB4A1\t0x7840\n0xB4A2\t0x50A8\n0xB4A3\t0x77D7\n0xB4A4\t0x6410\n0xB4A5\t0x89E6\n0xB4A6\t0x5904\n0xB4A7\t0x63E3\n0xB4A8\t0x5DDD\n0xB4A9\t0x7A7F\n0xB4AA\t0x693D\n0xB4AB\t0x4F20\n0xB4AC\t0x8239\n0xB4AD\t0x5598\n0xB4AE\t0x4E32\n0xB4AF\t0x75AE\n0xB4B0\t0x7A97\n0xB4B1\t0x5E62\n0xB4B2\t0x5E8A\n0xB4B3\t0x95EF\n0xB4B4\t0x521B\n0xB4B5\t0x5439\n0xB4B6\t0x708A\n0xB4B7\t0x6376\n0xB4B8\t0x9524\n0xB4B9\t0x5782\n0xB4BA\t0x6625\n0xB4BB\t0x693F\n0xB4BC\t0x9187\n0xB4BD\t0x5507\n0xB4BE\t0x6DF3\n0xB4BF\t0x7EAF\n0xB4C0\t0x8822\n0xB4C1\t0x6233\n0xB4C2\t0x7EF0\n0xB4C3\t0x75B5\n0xB4C4\t0x8328\n0xB4C5\t0x78C1\n0xB4C6\t0x96CC\n0xB4C7\t0x8F9E\n0xB4C8\t0x6148\n0xB4C9\t0x74F7\n0xB4CA\t0x8BCD\n0xB4CB\t0x6B64\n0xB4CC\t0x523A\n0xB4CD\t0x8D50\n0xB4CE\t0x6B21\n0xB4CF\t0x806A\n0xB4D0\t0x8471\n0xB4D1\t0x56F1\n0xB4D2\t0x5306\n0xB4D3\t0x4ECE\n0xB4D4\t0x4E1B\n0xB4D5\t0x51D1\n0xB4D6\t0x7C97\n0xB4D7\t0x918B\n0xB4D8\t0x7C07\n0xB4D9\t0x4FC3\n0xB4DA\t0x8E7F\n0xB4DB\t0x7BE1\n0xB4DC\t0x7A9C\n0xB4DD\t0x6467\n0xB4DE\t0x5D14\n0xB4DF\t0x50AC\n0xB4E0\t0x8106\n0xB4E1\t0x7601\n0xB4E2\t0x7CB9\n0xB4E3\t0x6DEC\n0xB4E4\t0x7FE0\n0xB4E5\t0x6751\n0xB4E6\t0x5B58\n0xB4E7\t0x5BF8\n0xB4E8\t0x78CB\n0xB4E9\t0x64AE\n0xB4EA\t0x6413\n0xB4EB\t0x63AA\n0xB4EC\t0x632B\n0xB4ED\t0x9519\n0xB4EE\t0x642D\n0xB4EF\t0x8FBE\n0xB4F0\t0x7B54\n0xB4F1\t0x7629\n0xB4F2\t0x6253\n0xB4F3\t0x5927\n0xB4F4\t0x5446\n0xB4F5\t0x6B79\n0xB4F6\t0x50A3\n0xB4F7\t0x6234\n0xB4F8\t0x5E26\n0xB4F9\t0x6B86\n0xB4FA\t0x4EE3\n0xB4FB\t0x8D37\n0xB4FC\t0x888B\n0xB4FD\t0x5F85\n0xB4FE\t0x902E\n0xB540\t0x790D\n0xB541\t0x790E\n0xB542\t0x790F\n0xB543\t0x7910\n0xB544\t0x7911\n0xB545\t0x7912\n0xB546\t0x7914\n0xB547\t0x7915\n0xB548\t0x7916\n0xB549\t0x7917\n0xB54A\t0x7918\n0xB54B\t0x7919\n0xB54C\t0x791A\n0xB54D\t0x791B\n0xB54E\t0x791C\n0xB54F\t0x791D\n0xB550\t0x791F\n0xB551\t0x7920\n0xB552\t0x7921\n0xB553\t0x7922\n0xB554\t0x7923\n0xB555\t0x7925\n0xB556\t0x7926\n0xB557\t0x7927\n0xB558\t0x7928\n0xB559\t0x7929\n0xB55A\t0x792A\n0xB55B\t0x792B\n0xB55C\t0x792C\n0xB55D\t0x792D\n0xB55E\t0x792E\n0xB55F\t0x792F\n0xB560\t0x7930\n0xB561\t0x7931\n0xB562\t0x7932\n0xB563\t0x7933\n0xB564\t0x7935\n0xB565\t0x7936\n0xB566\t0x7937\n0xB567\t0x7938\n0xB568\t0x7939\n0xB569\t0x793D\n0xB56A\t0x793F\n0xB56B\t0x7942\n0xB56C\t0x7943\n0xB56D\t0x7944\n0xB56E\t0x7945\n0xB56F\t0x7947\n0xB570\t0x794A\n0xB571\t0x794B\n0xB572\t0x794C\n0xB573\t0x794D\n0xB574\t0x794E\n0xB575\t0x794F\n0xB576\t0x7950\n0xB577\t0x7951\n0xB578\t0x7952\n0xB579\t0x7954\n0xB57A\t0x7955\n0xB57B\t0x7958\n0xB57C\t0x7959\n0xB57D\t0x7961\n0xB57E\t0x7963\n0xB580\t0x7964\n0xB581\t0x7966\n0xB582\t0x7969\n0xB583\t0x796A\n0xB584\t0x796B\n0xB585\t0x796C\n0xB586\t0x796E\n0xB587\t0x7970\n0xB588\t0x7971\n0xB589\t0x7972\n0xB58A\t0x7973\n0xB58B\t0x7974\n0xB58C\t0x7975\n0xB58D\t0x7976\n0xB58E\t0x7979\n0xB58F\t0x797B\n0xB590\t0x797C\n0xB591\t0x797D\n0xB592\t0x797E\n0xB593\t0x797F\n0xB594\t0x7982\n0xB595\t0x7983\n0xB596\t0x7986\n0xB597\t0x7987\n0xB598\t0x7988\n0xB599\t0x7989\n0xB59A\t0x798B\n0xB59B\t0x798C\n0xB59C\t0x798D\n0xB59D\t0x798E\n0xB59E\t0x7990\n0xB59F\t0x7991\n0xB5A0\t0x7992\n0xB5A1\t0x6020\n0xB5A2\t0x803D\n0xB5A3\t0x62C5\n0xB5A4\t0x4E39\n0xB5A5\t0x5355\n0xB5A6\t0x90F8\n0xB5A7\t0x63B8\n0xB5A8\t0x80C6\n0xB5A9\t0x65E6\n0xB5AA\t0x6C2E\n0xB5AB\t0x4F46\n0xB5AC\t0x60EE\n0xB5AD\t0x6DE1\n0xB5AE\t0x8BDE\n0xB5AF\t0x5F39\n0xB5B0\t0x86CB\n0xB5B1\t0x5F53\n0xB5B2\t0x6321\n0xB5B3\t0x515A\n0xB5B4\t0x8361\n0xB5B5\t0x6863\n0xB5B6\t0x5200\n0xB5B7\t0x6363\n0xB5B8\t0x8E48\n0xB5B9\t0x5012\n0xB5BA\t0x5C9B\n0xB5BB\t0x7977\n0xB5BC\t0x5BFC\n0xB5BD\t0x5230\n0xB5BE\t0x7A3B\n0xB5BF\t0x60BC\n0xB5C0\t0x9053\n0xB5C1\t0x76D7\n0xB5C2\t0x5FB7\n0xB5C3\t0x5F97\n0xB5C4\t0x7684\n0xB5C5\t0x8E6C\n0xB5C6\t0x706F\n0xB5C7\t0x767B\n0xB5C8\t0x7B49\n0xB5C9\t0x77AA\n0xB5CA\t0x51F3\n0xB5CB\t0x9093\n0xB5CC\t0x5824\n0xB5CD\t0x4F4E\n0xB5CE\t0x6EF4\n0xB5CF\t0x8FEA\n0xB5D0\t0x654C\n0xB5D1\t0x7B1B\n0xB5D2\t0x72C4\n0xB5D3\t0x6DA4\n0xB5D4\t0x7FDF\n0xB5D5\t0x5AE1\n0xB5D6\t0x62B5\n0xB5D7\t0x5E95\n0xB5D8\t0x5730\n0xB5D9\t0x8482\n0xB5DA\t0x7B2C\n0xB5DB\t0x5E1D\n0xB5DC\t0x5F1F\n0xB5DD\t0x9012\n0xB5DE\t0x7F14\n0xB5DF\t0x98A0\n0xB5E0\t0x6382\n0xB5E1\t0x6EC7\n0xB5E2\t0x7898\n0xB5E3\t0x70B9\n0xB5E4\t0x5178\n0xB5E5\t0x975B\n0xB5E6\t0x57AB\n0xB5E7\t0x7535\n0xB5E8\t0x4F43\n0xB5E9\t0x7538\n0xB5EA\t0x5E97\n0xB5EB\t0x60E6\n0xB5EC\t0x5960\n0xB5ED\t0x6DC0\n0xB5EE\t0x6BBF\n0xB5EF\t0x7889\n0xB5F0\t0x53FC\n0xB5F1\t0x96D5\n0xB5F2\t0x51CB\n0xB5F3\t0x5201\n0xB5F4\t0x6389\n0xB5F5\t0x540A\n0xB5F6\t0x9493\n0xB5F7\t0x8C03\n0xB5F8\t0x8DCC\n0xB5F9\t0x7239\n0xB5FA\t0x789F\n0xB5FB\t0x8776\n0xB5FC\t0x8FED\n0xB5FD\t0x8C0D\n0xB5FE\t0x53E0\n0xB640\t0x7993\n0xB641\t0x7994\n0xB642\t0x7995\n0xB643\t0x7996\n0xB644\t0x7997\n0xB645\t0x7998\n0xB646\t0x7999\n0xB647\t0x799B\n0xB648\t0x799C\n0xB649\t0x799D\n0xB64A\t0x799E\n0xB64B\t0x799F\n0xB64C\t0x79A0\n0xB64D\t0x79A1\n0xB64E\t0x79A2\n0xB64F\t0x79A3\n0xB650\t0x79A4\n0xB651\t0x79A5\n0xB652\t0x79A6\n0xB653\t0x79A8\n0xB654\t0x79A9\n0xB655\t0x79AA\n0xB656\t0x79AB\n0xB657\t0x79AC\n0xB658\t0x79AD\n0xB659\t0x79AE\n0xB65A\t0x79AF\n0xB65B\t0x79B0\n0xB65C\t0x79B1\n0xB65D\t0x79B2\n0xB65E\t0x79B4\n0xB65F\t0x79B5\n0xB660\t0x79B6\n0xB661\t0x79B7\n0xB662\t0x79B8\n0xB663\t0x79BC\n0xB664\t0x79BF\n0xB665\t0x79C2\n0xB666\t0x79C4\n0xB667\t0x79C5\n0xB668\t0x79C7\n0xB669\t0x79C8\n0xB66A\t0x79CA\n0xB66B\t0x79CC\n0xB66C\t0x79CE\n0xB66D\t0x79CF\n0xB66E\t0x79D0\n0xB66F\t0x79D3\n0xB670\t0x79D4\n0xB671\t0x79D6\n0xB672\t0x79D7\n0xB673\t0x79D9\n0xB674\t0x79DA\n0xB675\t0x79DB\n0xB676\t0x79DC\n0xB677\t0x79DD\n0xB678\t0x79DE\n0xB679\t0x79E0\n0xB67A\t0x79E1\n0xB67B\t0x79E2\n0xB67C\t0x79E5\n0xB67D\t0x79E8\n0xB67E\t0x79EA\n0xB680\t0x79EC\n0xB681\t0x79EE\n0xB682\t0x79F1\n0xB683\t0x79F2\n0xB684\t0x79F3\n0xB685\t0x79F4\n0xB686\t0x79F5\n0xB687\t0x79F6\n0xB688\t0x79F7\n0xB689\t0x79F9\n0xB68A\t0x79FA\n0xB68B\t0x79FC\n0xB68C\t0x79FE\n0xB68D\t0x79FF\n0xB68E\t0x7A01\n0xB68F\t0x7A04\n0xB690\t0x7A05\n0xB691\t0x7A07\n0xB692\t0x7A08\n0xB693\t0x7A09\n0xB694\t0x7A0A\n0xB695\t0x7A0C\n0xB696\t0x7A0F\n0xB697\t0x7A10\n0xB698\t0x7A11\n0xB699\t0x7A12\n0xB69A\t0x7A13\n0xB69B\t0x7A15\n0xB69C\t0x7A16\n0xB69D\t0x7A18\n0xB69E\t0x7A19\n0xB69F\t0x7A1B\n0xB6A0\t0x7A1C\n0xB6A1\t0x4E01\n0xB6A2\t0x76EF\n0xB6A3\t0x53EE\n0xB6A4\t0x9489\n0xB6A5\t0x9876\n0xB6A6\t0x9F0E\n0xB6A7\t0x952D\n0xB6A8\t0x5B9A\n0xB6A9\t0x8BA2\n0xB6AA\t0x4E22\n0xB6AB\t0x4E1C\n0xB6AC\t0x51AC\n0xB6AD\t0x8463\n0xB6AE\t0x61C2\n0xB6AF\t0x52A8\n0xB6B0\t0x680B\n0xB6B1\t0x4F97\n0xB6B2\t0x606B\n0xB6B3\t0x51BB\n0xB6B4\t0x6D1E\n0xB6B5\t0x515C\n0xB6B6\t0x6296\n0xB6B7\t0x6597\n0xB6B8\t0x9661\n0xB6B9\t0x8C46\n0xB6BA\t0x9017\n0xB6BB\t0x75D8\n0xB6BC\t0x90FD\n0xB6BD\t0x7763\n0xB6BE\t0x6BD2\n0xB6BF\t0x728A\n0xB6C0\t0x72EC\n0xB6C1\t0x8BFB\n0xB6C2\t0x5835\n0xB6C3\t0x7779\n0xB6C4\t0x8D4C\n0xB6C5\t0x675C\n0xB6C6\t0x9540\n0xB6C7\t0x809A\n0xB6C8\t0x5EA6\n0xB6C9\t0x6E21\n0xB6CA\t0x5992\n0xB6CB\t0x7AEF\n0xB6CC\t0x77ED\n0xB6CD\t0x953B\n0xB6CE\t0x6BB5\n0xB6CF\t0x65AD\n0xB6D0\t0x7F0E\n0xB6D1\t0x5806\n0xB6D2\t0x5151\n0xB6D3\t0x961F\n0xB6D4\t0x5BF9\n0xB6D5\t0x58A9\n0xB6D6\t0x5428\n0xB6D7\t0x8E72\n0xB6D8\t0x6566\n0xB6D9\t0x987F\n0xB6DA\t0x56E4\n0xB6DB\t0x949D\n0xB6DC\t0x76FE\n0xB6DD\t0x9041\n0xB6DE\t0x6387\n0xB6DF\t0x54C6\n0xB6E0\t0x591A\n0xB6E1\t0x593A\n0xB6E2\t0x579B\n0xB6E3\t0x8EB2\n0xB6E4\t0x6735\n0xB6E5\t0x8DFA\n0xB6E6\t0x8235\n0xB6E7\t0x5241\n0xB6E8\t0x60F0\n0xB6E9\t0x5815\n0xB6EA\t0x86FE\n0xB6EB\t0x5CE8\n0xB6EC\t0x9E45\n0xB6ED\t0x4FC4\n0xB6EE\t0x989D\n0xB6EF\t0x8BB9\n0xB6F0\t0x5A25\n0xB6F1\t0x6076\n0xB6F2\t0x5384\n0xB6F3\t0x627C\n0xB6F4\t0x904F\n0xB6F5\t0x9102\n0xB6F6\t0x997F\n0xB6F7\t0x6069\n0xB6F8\t0x800C\n0xB6F9\t0x513F\n0xB6FA\t0x8033\n0xB6FB\t0x5C14\n0xB6FC\t0x9975\n0xB6FD\t0x6D31\n0xB6FE\t0x4E8C\n0xB740\t0x7A1D\n0xB741\t0x7A1F\n0xB742\t0x7A21\n0xB743\t0x7A22\n0xB744\t0x7A24\n0xB745\t0x7A25\n0xB746\t0x7A26\n0xB747\t0x7A27\n0xB748\t0x7A28\n0xB749\t0x7A29\n0xB74A\t0x7A2A\n0xB74B\t0x7A2B\n0xB74C\t0x7A2C\n0xB74D\t0x7A2D\n0xB74E\t0x7A2E\n0xB74F\t0x7A2F\n0xB750\t0x7A30\n0xB751\t0x7A31\n0xB752\t0x7A32\n0xB753\t0x7A34\n0xB754\t0x7A35\n0xB755\t0x7A36\n0xB756\t0x7A38\n0xB757\t0x7A3A\n0xB758\t0x7A3E\n0xB759\t0x7A40\n0xB75A\t0x7A41\n0xB75B\t0x7A42\n0xB75C\t0x7A43\n0xB75D\t0x7A44\n0xB75E\t0x7A45\n0xB75F\t0x7A47\n0xB760\t0x7A48\n0xB761\t0x7A49\n0xB762\t0x7A4A\n0xB763\t0x7A4B\n0xB764\t0x7A4C\n0xB765\t0x7A4D\n0xB766\t0x7A4E\n0xB767\t0x7A4F\n0xB768\t0x7A50\n0xB769\t0x7A52\n0xB76A\t0x7A53\n0xB76B\t0x7A54\n0xB76C\t0x7A55\n0xB76D\t0x7A56\n0xB76E\t0x7A58\n0xB76F\t0x7A59\n0xB770\t0x7A5A\n0xB771\t0x7A5B\n0xB772\t0x7A5C\n0xB773\t0x7A5D\n0xB774\t0x7A5E\n0xB775\t0x7A5F\n0xB776\t0x7A60\n0xB777\t0x7A61\n0xB778\t0x7A62\n0xB779\t0x7A63\n0xB77A\t0x7A64\n0xB77B\t0x7A65\n0xB77C\t0x7A66\n0xB77D\t0x7A67\n0xB77E\t0x7A68\n0xB780\t0x7A69\n0xB781\t0x7A6A\n0xB782\t0x7A6B\n0xB783\t0x7A6C\n0xB784\t0x7A6D\n0xB785\t0x7A6E\n0xB786\t0x7A6F\n0xB787\t0x7A71\n0xB788\t0x7A72\n0xB789\t0x7A73\n0xB78A\t0x7A75\n0xB78B\t0x7A7B\n0xB78C\t0x7A7C\n0xB78D\t0x7A7D\n0xB78E\t0x7A7E\n0xB78F\t0x7A82\n0xB790\t0x7A85\n0xB791\t0x7A87\n0xB792\t0x7A89\n0xB793\t0x7A8A\n0xB794\t0x7A8B\n0xB795\t0x7A8C\n0xB796\t0x7A8E\n0xB797\t0x7A8F\n0xB798\t0x7A90\n0xB799\t0x7A93\n0xB79A\t0x7A94\n0xB79B\t0x7A99\n0xB79C\t0x7A9A\n0xB79D\t0x7A9B\n0xB79E\t0x7A9E\n0xB79F\t0x7AA1\n0xB7A0\t0x7AA2\n0xB7A1\t0x8D30\n0xB7A2\t0x53D1\n0xB7A3\t0x7F5A\n0xB7A4\t0x7B4F\n0xB7A5\t0x4F10\n0xB7A6\t0x4E4F\n0xB7A7\t0x9600\n0xB7A8\t0x6CD5\n0xB7A9\t0x73D0\n0xB7AA\t0x85E9\n0xB7AB\t0x5E06\n0xB7AC\t0x756A\n0xB7AD\t0x7FFB\n0xB7AE\t0x6A0A\n0xB7AF\t0x77FE\n0xB7B0\t0x9492\n0xB7B1\t0x7E41\n0xB7B2\t0x51E1\n0xB7B3\t0x70E6\n0xB7B4\t0x53CD\n0xB7B5\t0x8FD4\n0xB7B6\t0x8303\n0xB7B7\t0x8D29\n0xB7B8\t0x72AF\n0xB7B9\t0x996D\n0xB7BA\t0x6CDB\n0xB7BB\t0x574A\n0xB7BC\t0x82B3\n0xB7BD\t0x65B9\n0xB7BE\t0x80AA\n0xB7BF\t0x623F\n0xB7C0\t0x9632\n0xB7C1\t0x59A8\n0xB7C2\t0x4EFF\n0xB7C3\t0x8BBF\n0xB7C4\t0x7EBA\n0xB7C5\t0x653E\n0xB7C6\t0x83F2\n0xB7C7\t0x975E\n0xB7C8\t0x5561\n0xB7C9\t0x98DE\n0xB7CA\t0x80A5\n0xB7CB\t0x532A\n0xB7CC\t0x8BFD\n0xB7CD\t0x5420\n0xB7CE\t0x80BA\n0xB7CF\t0x5E9F\n0xB7D0\t0x6CB8\n0xB7D1\t0x8D39\n0xB7D2\t0x82AC\n0xB7D3\t0x915A\n0xB7D4\t0x5429\n0xB7D5\t0x6C1B\n0xB7D6\t0x5206\n0xB7D7\t0x7EB7\n0xB7D8\t0x575F\n0xB7D9\t0x711A\n0xB7DA\t0x6C7E\n0xB7DB\t0x7C89\n0xB7DC\t0x594B\n0xB7DD\t0x4EFD\n0xB7DE\t0x5FFF\n0xB7DF\t0x6124\n0xB7E0\t0x7CAA\n0xB7E1\t0x4E30\n0xB7E2\t0x5C01\n0xB7E3\t0x67AB\n0xB7E4\t0x8702\n0xB7E5\t0x5CF0\n0xB7E6\t0x950B\n0xB7E7\t0x98CE\n0xB7E8\t0x75AF\n0xB7E9\t0x70FD\n0xB7EA\t0x9022\n0xB7EB\t0x51AF\n0xB7EC\t0x7F1D\n0xB7ED\t0x8BBD\n0xB7EE\t0x5949\n0xB7EF\t0x51E4\n0xB7F0\t0x4F5B\n0xB7F1\t0x5426\n0xB7F2\t0x592B\n0xB7F3\t0x6577\n0xB7F4\t0x80A4\n0xB7F5\t0x5B75\n0xB7F6\t0x6276\n0xB7F7\t0x62C2\n0xB7F8\t0x8F90\n0xB7F9\t0x5E45\n0xB7FA\t0x6C1F\n0xB7FB\t0x7B26\n0xB7FC\t0x4F0F\n0xB7FD\t0x4FD8\n0xB7FE\t0x670D\n0xB840\t0x7AA3\n0xB841\t0x7AA4\n0xB842\t0x7AA7\n0xB843\t0x7AA9\n0xB844\t0x7AAA\n0xB845\t0x7AAB\n0xB846\t0x7AAE\n0xB847\t0x7AAF\n0xB848\t0x7AB0\n0xB849\t0x7AB1\n0xB84A\t0x7AB2\n0xB84B\t0x7AB4\n0xB84C\t0x7AB5\n0xB84D\t0x7AB6\n0xB84E\t0x7AB7\n0xB84F\t0x7AB8\n0xB850\t0x7AB9\n0xB851\t0x7ABA\n0xB852\t0x7ABB\n0xB853\t0x7ABC\n0xB854\t0x7ABD\n0xB855\t0x7ABE\n0xB856\t0x7AC0\n0xB857\t0x7AC1\n0xB858\t0x7AC2\n0xB859\t0x7AC3\n0xB85A\t0x7AC4\n0xB85B\t0x7AC5\n0xB85C\t0x7AC6\n0xB85D\t0x7AC7\n0xB85E\t0x7AC8\n0xB85F\t0x7AC9\n0xB860\t0x7ACA\n0xB861\t0x7ACC\n0xB862\t0x7ACD\n0xB863\t0x7ACE\n0xB864\t0x7ACF\n0xB865\t0x7AD0\n0xB866\t0x7AD1\n0xB867\t0x7AD2\n0xB868\t0x7AD3\n0xB869\t0x7AD4\n0xB86A\t0x7AD5\n0xB86B\t0x7AD7\n0xB86C\t0x7AD8\n0xB86D\t0x7ADA\n0xB86E\t0x7ADB\n0xB86F\t0x7ADC\n0xB870\t0x7ADD\n0xB871\t0x7AE1\n0xB872\t0x7AE2\n0xB873\t0x7AE4\n0xB874\t0x7AE7\n0xB875\t0x7AE8\n0xB876\t0x7AE9\n0xB877\t0x7AEA\n0xB878\t0x7AEB\n0xB879\t0x7AEC\n0xB87A\t0x7AEE\n0xB87B\t0x7AF0\n0xB87C\t0x7AF1\n0xB87D\t0x7AF2\n0xB87E\t0x7AF3\n0xB880\t0x7AF4\n0xB881\t0x7AF5\n0xB882\t0x7AF6\n0xB883\t0x7AF7\n0xB884\t0x7AF8\n0xB885\t0x7AFB\n0xB886\t0x7AFC\n0xB887\t0x7AFE\n0xB888\t0x7B00\n0xB889\t0x7B01\n0xB88A\t0x7B02\n0xB88B\t0x7B05\n0xB88C\t0x7B07\n0xB88D\t0x7B09\n0xB88E\t0x7B0C\n0xB88F\t0x7B0D\n0xB890\t0x7B0E\n0xB891\t0x7B10\n0xB892\t0x7B12\n0xB893\t0x7B13\n0xB894\t0x7B16\n0xB895\t0x7B17\n0xB896\t0x7B18\n0xB897\t0x7B1A\n0xB898\t0x7B1C\n0xB899\t0x7B1D\n0xB89A\t0x7B1F\n0xB89B\t0x7B21\n0xB89C\t0x7B22\n0xB89D\t0x7B23\n0xB89E\t0x7B27\n0xB89F\t0x7B29\n0xB8A0\t0x7B2D\n0xB8A1\t0x6D6E\n0xB8A2\t0x6DAA\n0xB8A3\t0x798F\n0xB8A4\t0x88B1\n0xB8A5\t0x5F17\n0xB8A6\t0x752B\n0xB8A7\t0x629A\n0xB8A8\t0x8F85\n0xB8A9\t0x4FEF\n0xB8AA\t0x91DC\n0xB8AB\t0x65A7\n0xB8AC\t0x812F\n0xB8AD\t0x8151\n0xB8AE\t0x5E9C\n0xB8AF\t0x8150\n0xB8B0\t0x8D74\n0xB8B1\t0x526F\n0xB8B2\t0x8986\n0xB8B3\t0x8D4B\n0xB8B4\t0x590D\n0xB8B5\t0x5085\n0xB8B6\t0x4ED8\n0xB8B7\t0x961C\n0xB8B8\t0x7236\n0xB8B9\t0x8179\n0xB8BA\t0x8D1F\n0xB8BB\t0x5BCC\n0xB8BC\t0x8BA3\n0xB8BD\t0x9644\n0xB8BE\t0x5987\n0xB8BF\t0x7F1A\n0xB8C0\t0x5490\n0xB8C1\t0x5676\n0xB8C2\t0x560E\n0xB8C3\t0x8BE5\n0xB8C4\t0x6539\n0xB8C5\t0x6982\n0xB8C6\t0x9499\n0xB8C7\t0x76D6\n0xB8C8\t0x6E89\n0xB8C9\t0x5E72\n0xB8CA\t0x7518\n0xB8CB\t0x6746\n0xB8CC\t0x67D1\n0xB8CD\t0x7AFF\n0xB8CE\t0x809D\n0xB8CF\t0x8D76\n0xB8D0\t0x611F\n0xB8D1\t0x79C6\n0xB8D2\t0x6562\n0xB8D3\t0x8D63\n0xB8D4\t0x5188\n0xB8D5\t0x521A\n0xB8D6\t0x94A2\n0xB8D7\t0x7F38\n0xB8D8\t0x809B\n0xB8D9\t0x7EB2\n0xB8DA\t0x5C97\n0xB8DB\t0x6E2F\n0xB8DC\t0x6760\n0xB8DD\t0x7BD9\n0xB8DE\t0x768B\n0xB8DF\t0x9AD8\n0xB8E0\t0x818F\n0xB8E1\t0x7F94\n0xB8E2\t0x7CD5\n0xB8E3\t0x641E\n0xB8E4\t0x9550\n0xB8E5\t0x7A3F\n0xB8E6\t0x544A\n0xB8E7\t0x54E5\n0xB8E8\t0x6B4C\n0xB8E9\t0x6401\n0xB8EA\t0x6208\n0xB8EB\t0x9E3D\n0xB8EC\t0x80F3\n0xB8ED\t0x7599\n0xB8EE\t0x5272\n0xB8EF\t0x9769\n0xB8F0\t0x845B\n0xB8F1\t0x683C\n0xB8F2\t0x86E4\n0xB8F3\t0x9601\n0xB8F4\t0x9694\n0xB8F5\t0x94EC\n0xB8F6\t0x4E2A\n0xB8F7\t0x5404\n0xB8F8\t0x7ED9\n0xB8F9\t0x6839\n0xB8FA\t0x8DDF\n0xB8FB\t0x8015\n0xB8FC\t0x66F4\n0xB8FD\t0x5E9A\n0xB8FE\t0x7FB9\n0xB940\t0x7B2F\n0xB941\t0x7B30\n0xB942\t0x7B32\n0xB943\t0x7B34\n0xB944\t0x7B35\n0xB945\t0x7B36\n0xB946\t0x7B37\n0xB947\t0x7B39\n0xB948\t0x7B3B\n0xB949\t0x7B3D\n0xB94A\t0x7B3F\n0xB94B\t0x7B40\n0xB94C\t0x7B41\n0xB94D\t0x7B42\n0xB94E\t0x7B43\n0xB94F\t0x7B44\n0xB950\t0x7B46\n0xB951\t0x7B48\n0xB952\t0x7B4A\n0xB953\t0x7B4D\n0xB954\t0x7B4E\n0xB955\t0x7B53\n0xB956\t0x7B55\n0xB957\t0x7B57\n0xB958\t0x7B59\n0xB959\t0x7B5C\n0xB95A\t0x7B5E\n0xB95B\t0x7B5F\n0xB95C\t0x7B61\n0xB95D\t0x7B63\n0xB95E\t0x7B64\n0xB95F\t0x7B65\n0xB960\t0x7B66\n0xB961\t0x7B67\n0xB962\t0x7B68\n0xB963\t0x7B69\n0xB964\t0x7B6A\n0xB965\t0x7B6B\n0xB966\t0x7B6C\n0xB967\t0x7B6D\n0xB968\t0x7B6F\n0xB969\t0x7B70\n0xB96A\t0x7B73\n0xB96B\t0x7B74\n0xB96C\t0x7B76\n0xB96D\t0x7B78\n0xB96E\t0x7B7A\n0xB96F\t0x7B7C\n0xB970\t0x7B7D\n0xB971\t0x7B7F\n0xB972\t0x7B81\n0xB973\t0x7B82\n0xB974\t0x7B83\n0xB975\t0x7B84\n0xB976\t0x7B86\n0xB977\t0x7B87\n0xB978\t0x7B88\n0xB979\t0x7B89\n0xB97A\t0x7B8A\n0xB97B\t0x7B8B\n0xB97C\t0x7B8C\n0xB97D\t0x7B8E\n0xB97E\t0x7B8F\n0xB980\t0x7B91\n0xB981\t0x7B92\n0xB982\t0x7B93\n0xB983\t0x7B96\n0xB984\t0x7B98\n0xB985\t0x7B99\n0xB986\t0x7B9A\n0xB987\t0x7B9B\n0xB988\t0x7B9E\n0xB989\t0x7B9F\n0xB98A\t0x7BA0\n0xB98B\t0x7BA3\n0xB98C\t0x7BA4\n0xB98D\t0x7BA5\n0xB98E\t0x7BAE\n0xB98F\t0x7BAF\n0xB990\t0x7BB0\n0xB991\t0x7BB2\n0xB992\t0x7BB3\n0xB993\t0x7BB5\n0xB994\t0x7BB6\n0xB995\t0x7BB7\n0xB996\t0x7BB9\n0xB997\t0x7BBA\n0xB998\t0x7BBB\n0xB999\t0x7BBC\n0xB99A\t0x7BBD\n0xB99B\t0x7BBE\n0xB99C\t0x7BBF\n0xB99D\t0x7BC0\n0xB99E\t0x7BC2\n0xB99F\t0x7BC3\n0xB9A0\t0x7BC4\n0xB9A1\t0x57C2\n0xB9A2\t0x803F\n0xB9A3\t0x6897\n0xB9A4\t0x5DE5\n0xB9A5\t0x653B\n0xB9A6\t0x529F\n0xB9A7\t0x606D\n0xB9A8\t0x9F9A\n0xB9A9\t0x4F9B\n0xB9AA\t0x8EAC\n0xB9AB\t0x516C\n0xB9AC\t0x5BAB\n0xB9AD\t0x5F13\n0xB9AE\t0x5DE9\n0xB9AF\t0x6C5E\n0xB9B0\t0x62F1\n0xB9B1\t0x8D21\n0xB9B2\t0x5171\n0xB9B3\t0x94A9\n0xB9B4\t0x52FE\n0xB9B5\t0x6C9F\n0xB9B6\t0x82DF\n0xB9B7\t0x72D7\n0xB9B8\t0x57A2\n0xB9B9\t0x6784\n0xB9BA\t0x8D2D\n0xB9BB\t0x591F\n0xB9BC\t0x8F9C\n0xB9BD\t0x83C7\n0xB9BE\t0x5495\n0xB9BF\t0x7B8D\n0xB9C0\t0x4F30\n0xB9C1\t0x6CBD\n0xB9C2\t0x5B64\n0xB9C3\t0x59D1\n0xB9C4\t0x9F13\n0xB9C5\t0x53E4\n0xB9C6\t0x86CA\n0xB9C7\t0x9AA8\n0xB9C8\t0x8C37\n0xB9C9\t0x80A1\n0xB9CA\t0x6545\n0xB9CB\t0x987E\n0xB9CC\t0x56FA\n0xB9CD\t0x96C7\n0xB9CE\t0x522E\n0xB9CF\t0x74DC\n0xB9D0\t0x5250\n0xB9D1\t0x5BE1\n0xB9D2\t0x6302\n0xB9D3\t0x8902\n0xB9D4\t0x4E56\n0xB9D5\t0x62D0\n0xB9D6\t0x602A\n0xB9D7\t0x68FA\n0xB9D8\t0x5173\n0xB9D9\t0x5B98\n0xB9DA\t0x51A0\n0xB9DB\t0x89C2\n0xB9DC\t0x7BA1\n0xB9DD\t0x9986\n0xB9DE\t0x7F50\n0xB9DF\t0x60EF\n0xB9E0\t0x704C\n0xB9E1\t0x8D2F\n0xB9E2\t0x5149\n0xB9E3\t0x5E7F\n0xB9E4\t0x901B\n0xB9E5\t0x7470\n0xB9E6\t0x89C4\n0xB9E7\t0x572D\n0xB9E8\t0x7845\n0xB9E9\t0x5F52\n0xB9EA\t0x9F9F\n0xB9EB\t0x95FA\n0xB9EC\t0x8F68\n0xB9ED\t0x9B3C\n0xB9EE\t0x8BE1\n0xB9EF\t0x7678\n0xB9F0\t0x6842\n0xB9F1\t0x67DC\n0xB9F2\t0x8DEA\n0xB9F3\t0x8D35\n0xB9F4\t0x523D\n0xB9F5\t0x8F8A\n0xB9F6\t0x6EDA\n0xB9F7\t0x68CD\n0xB9F8\t0x9505\n0xB9F9\t0x90ED\n0xB9FA\t0x56FD\n0xB9FB\t0x679C\n0xB9FC\t0x88F9\n0xB9FD\t0x8FC7\n0xB9FE\t0x54C8\n0xBA40\t0x7BC5\n0xBA41\t0x7BC8\n0xBA42\t0x7BC9\n0xBA43\t0x7BCA\n0xBA44\t0x7BCB\n0xBA45\t0x7BCD\n0xBA46\t0x7BCE\n0xBA47\t0x7BCF\n0xBA48\t0x7BD0\n0xBA49\t0x7BD2\n0xBA4A\t0x7BD4\n0xBA4B\t0x7BD5\n0xBA4C\t0x7BD6\n0xBA4D\t0x7BD7\n0xBA4E\t0x7BD8\n0xBA4F\t0x7BDB\n0xBA50\t0x7BDC\n0xBA51\t0x7BDE\n0xBA52\t0x7BDF\n0xBA53\t0x7BE0\n0xBA54\t0x7BE2\n0xBA55\t0x7BE3\n0xBA56\t0x7BE4\n0xBA57\t0x7BE7\n0xBA58\t0x7BE8\n0xBA59\t0x7BE9\n0xBA5A\t0x7BEB\n0xBA5B\t0x7BEC\n0xBA5C\t0x7BED\n0xBA5D\t0x7BEF\n0xBA5E\t0x7BF0\n0xBA5F\t0x7BF2\n0xBA60\t0x7BF3\n0xBA61\t0x7BF4\n0xBA62\t0x7BF5\n0xBA63\t0x7BF6\n0xBA64\t0x7BF8\n0xBA65\t0x7BF9\n0xBA66\t0x7BFA\n0xBA67\t0x7BFB\n0xBA68\t0x7BFD\n0xBA69\t0x7BFF\n0xBA6A\t0x7C00\n0xBA6B\t0x7C01\n0xBA6C\t0x7C02\n0xBA6D\t0x7C03\n0xBA6E\t0x7C04\n0xBA6F\t0x7C05\n0xBA70\t0x7C06\n0xBA71\t0x7C08\n0xBA72\t0x7C09\n0xBA73\t0x7C0A\n0xBA74\t0x7C0D\n0xBA75\t0x7C0E\n0xBA76\t0x7C10\n0xBA77\t0x7C11\n0xBA78\t0x7C12\n0xBA79\t0x7C13\n0xBA7A\t0x7C14\n0xBA7B\t0x7C15\n0xBA7C\t0x7C17\n0xBA7D\t0x7C18\n0xBA7E\t0x7C19\n0xBA80\t0x7C1A\n0xBA81\t0x7C1B\n0xBA82\t0x7C1C\n0xBA83\t0x7C1D\n0xBA84\t0x7C1E\n0xBA85\t0x7C20\n0xBA86\t0x7C21\n0xBA87\t0x7C22\n0xBA88\t0x7C23\n0xBA89\t0x7C24\n0xBA8A\t0x7C25\n0xBA8B\t0x7C28\n0xBA8C\t0x7C29\n0xBA8D\t0x7C2B\n0xBA8E\t0x7C2C\n0xBA8F\t0x7C2D\n0xBA90\t0x7C2E\n0xBA91\t0x7C2F\n0xBA92\t0x7C30\n0xBA93\t0x7C31\n0xBA94\t0x7C32\n0xBA95\t0x7C33\n0xBA96\t0x7C34\n0xBA97\t0x7C35\n0xBA98\t0x7C36\n0xBA99\t0x7C37\n0xBA9A\t0x7C39\n0xBA9B\t0x7C3A\n0xBA9C\t0x7C3B\n0xBA9D\t0x7C3C\n0xBA9E\t0x7C3D\n0xBA9F\t0x7C3E\n0xBAA0\t0x7C42\n0xBAA1\t0x9AB8\n0xBAA2\t0x5B69\n0xBAA3\t0x6D77\n0xBAA4\t0x6C26\n0xBAA5\t0x4EA5\n0xBAA6\t0x5BB3\n0xBAA7\t0x9A87\n0xBAA8\t0x9163\n0xBAA9\t0x61A8\n0xBAAA\t0x90AF\n0xBAAB\t0x97E9\n0xBAAC\t0x542B\n0xBAAD\t0x6DB5\n0xBAAE\t0x5BD2\n0xBAAF\t0x51FD\n0xBAB0\t0x558A\n0xBAB1\t0x7F55\n0xBAB2\t0x7FF0\n0xBAB3\t0x64BC\n0xBAB4\t0x634D\n0xBAB5\t0x65F1\n0xBAB6\t0x61BE\n0xBAB7\t0x608D\n0xBAB8\t0x710A\n0xBAB9\t0x6C57\n0xBABA\t0x6C49\n0xBABB\t0x592F\n0xBABC\t0x676D\n0xBABD\t0x822A\n0xBABE\t0x58D5\n0xBABF\t0x568E\n0xBAC0\t0x8C6A\n0xBAC1\t0x6BEB\n0xBAC2\t0x90DD\n0xBAC3\t0x597D\n0xBAC4\t0x8017\n0xBAC5\t0x53F7\n0xBAC6\t0x6D69\n0xBAC7\t0x5475\n0xBAC8\t0x559D\n0xBAC9\t0x8377\n0xBACA\t0x83CF\n0xBACB\t0x6838\n0xBACC\t0x79BE\n0xBACD\t0x548C\n0xBACE\t0x4F55\n0xBACF\t0x5408\n0xBAD0\t0x76D2\n0xBAD1\t0x8C89\n0xBAD2\t0x9602\n0xBAD3\t0x6CB3\n0xBAD4\t0x6DB8\n0xBAD5\t0x8D6B\n0xBAD6\t0x8910\n0xBAD7\t0x9E64\n0xBAD8\t0x8D3A\n0xBAD9\t0x563F\n0xBADA\t0x9ED1\n0xBADB\t0x75D5\n0xBADC\t0x5F88\n0xBADD\t0x72E0\n0xBADE\t0x6068\n0xBADF\t0x54FC\n0xBAE0\t0x4EA8\n0xBAE1\t0x6A2A\n0xBAE2\t0x8861\n0xBAE3\t0x6052\n0xBAE4\t0x8F70\n0xBAE5\t0x54C4\n0xBAE6\t0x70D8\n0xBAE7\t0x8679\n0xBAE8\t0x9E3F\n0xBAE9\t0x6D2A\n0xBAEA\t0x5B8F\n0xBAEB\t0x5F18\n0xBAEC\t0x7EA2\n0xBAED\t0x5589\n0xBAEE\t0x4FAF\n0xBAEF\t0x7334\n0xBAF0\t0x543C\n0xBAF1\t0x539A\n0xBAF2\t0x5019\n0xBAF3\t0x540E\n0xBAF4\t0x547C\n0xBAF5\t0x4E4E\n0xBAF6\t0x5FFD\n0xBAF7\t0x745A\n0xBAF8\t0x58F6\n0xBAF9\t0x846B\n0xBAFA\t0x80E1\n0xBAFB\t0x8774\n0xBAFC\t0x72D0\n0xBAFD\t0x7CCA\n0xBAFE\t0x6E56\n0xBB40\t0x7C43\n0xBB41\t0x7C44\n0xBB42\t0x7C45\n0xBB43\t0x7C46\n0xBB44\t0x7C47\n0xBB45\t0x7C48\n0xBB46\t0x7C49\n0xBB47\t0x7C4A\n0xBB48\t0x7C4B\n0xBB49\t0x7C4C\n0xBB4A\t0x7C4E\n0xBB4B\t0x7C4F\n0xBB4C\t0x7C50\n0xBB4D\t0x7C51\n0xBB4E\t0x7C52\n0xBB4F\t0x7C53\n0xBB50\t0x7C54\n0xBB51\t0x7C55\n0xBB52\t0x7C56\n0xBB53\t0x7C57\n0xBB54\t0x7C58\n0xBB55\t0x7C59\n0xBB56\t0x7C5A\n0xBB57\t0x7C5B\n0xBB58\t0x7C5C\n0xBB59\t0x7C5D\n0xBB5A\t0x7C5E\n0xBB5B\t0x7C5F\n0xBB5C\t0x7C60\n0xBB5D\t0x7C61\n0xBB5E\t0x7C62\n0xBB5F\t0x7C63\n0xBB60\t0x7C64\n0xBB61\t0x7C65\n0xBB62\t0x7C66\n0xBB63\t0x7C67\n0xBB64\t0x7C68\n0xBB65\t0x7C69\n0xBB66\t0x7C6A\n0xBB67\t0x7C6B\n0xBB68\t0x7C6C\n0xBB69\t0x7C6D\n0xBB6A\t0x7C6E\n0xBB6B\t0x7C6F\n0xBB6C\t0x7C70\n0xBB6D\t0x7C71\n0xBB6E\t0x7C72\n0xBB6F\t0x7C75\n0xBB70\t0x7C76\n0xBB71\t0x7C77\n0xBB72\t0x7C78\n0xBB73\t0x7C79\n0xBB74\t0x7C7A\n0xBB75\t0x7C7E\n0xBB76\t0x7C7F\n0xBB77\t0x7C80\n0xBB78\t0x7C81\n0xBB79\t0x7C82\n0xBB7A\t0x7C83\n0xBB7B\t0x7C84\n0xBB7C\t0x7C85\n0xBB7D\t0x7C86\n0xBB7E\t0x7C87\n0xBB80\t0x7C88\n0xBB81\t0x7C8A\n0xBB82\t0x7C8B\n0xBB83\t0x7C8C\n0xBB84\t0x7C8D\n0xBB85\t0x7C8E\n0xBB86\t0x7C8F\n0xBB87\t0x7C90\n0xBB88\t0x7C93\n0xBB89\t0x7C94\n0xBB8A\t0x7C96\n0xBB8B\t0x7C99\n0xBB8C\t0x7C9A\n0xBB8D\t0x7C9B\n0xBB8E\t0x7CA0\n0xBB8F\t0x7CA1\n0xBB90\t0x7CA3\n0xBB91\t0x7CA6\n0xBB92\t0x7CA7\n0xBB93\t0x7CA8\n0xBB94\t0x7CA9\n0xBB95\t0x7CAB\n0xBB96\t0x7CAC\n0xBB97\t0x7CAD\n0xBB98\t0x7CAF\n0xBB99\t0x7CB0\n0xBB9A\t0x7CB4\n0xBB9B\t0x7CB5\n0xBB9C\t0x7CB6\n0xBB9D\t0x7CB7\n0xBB9E\t0x7CB8\n0xBB9F\t0x7CBA\n0xBBA0\t0x7CBB\n0xBBA1\t0x5F27\n0xBBA2\t0x864E\n0xBBA3\t0x552C\n0xBBA4\t0x62A4\n0xBBA5\t0x4E92\n0xBBA6\t0x6CAA\n0xBBA7\t0x6237\n0xBBA8\t0x82B1\n0xBBA9\t0x54D7\n0xBBAA\t0x534E\n0xBBAB\t0x733E\n0xBBAC\t0x6ED1\n0xBBAD\t0x753B\n0xBBAE\t0x5212\n0xBBAF\t0x5316\n0xBBB0\t0x8BDD\n0xBBB1\t0x69D0\n0xBBB2\t0x5F8A\n0xBBB3\t0x6000\n0xBBB4\t0x6DEE\n0xBBB5\t0x574F\n0xBBB6\t0x6B22\n0xBBB7\t0x73AF\n0xBBB8\t0x6853\n0xBBB9\t0x8FD8\n0xBBBA\t0x7F13\n0xBBBB\t0x6362\n0xBBBC\t0x60A3\n0xBBBD\t0x5524\n0xBBBE\t0x75EA\n0xBBBF\t0x8C62\n0xBBC0\t0x7115\n0xBBC1\t0x6DA3\n0xBBC2\t0x5BA6\n0xBBC3\t0x5E7B\n0xBBC4\t0x8352\n0xBBC5\t0x614C\n0xBBC6\t0x9EC4\n0xBBC7\t0x78FA\n0xBBC8\t0x8757\n0xBBC9\t0x7C27\n0xBBCA\t0x7687\n0xBBCB\t0x51F0\n0xBBCC\t0x60F6\n0xBBCD\t0x714C\n0xBBCE\t0x6643\n0xBBCF\t0x5E4C\n0xBBD0\t0x604D\n0xBBD1\t0x8C0E\n0xBBD2\t0x7070\n0xBBD3\t0x6325\n0xBBD4\t0x8F89\n0xBBD5\t0x5FBD\n0xBBD6\t0x6062\n0xBBD7\t0x86D4\n0xBBD8\t0x56DE\n0xBBD9\t0x6BC1\n0xBBDA\t0x6094\n0xBBDB\t0x6167\n0xBBDC\t0x5349\n0xBBDD\t0x60E0\n0xBBDE\t0x6666\n0xBBDF\t0x8D3F\n0xBBE0\t0x79FD\n0xBBE1\t0x4F1A\n0xBBE2\t0x70E9\n0xBBE3\t0x6C47\n0xBBE4\t0x8BB3\n0xBBE5\t0x8BF2\n0xBBE6\t0x7ED8\n0xBBE7\t0x8364\n0xBBE8\t0x660F\n0xBBE9\t0x5A5A\n0xBBEA\t0x9B42\n0xBBEB\t0x6D51\n0xBBEC\t0x6DF7\n0xBBED\t0x8C41\n0xBBEE\t0x6D3B\n0xBBEF\t0x4F19\n0xBBF0\t0x706B\n0xBBF1\t0x83B7\n0xBBF2\t0x6216\n0xBBF3\t0x60D1\n0xBBF4\t0x970D\n0xBBF5\t0x8D27\n0xBBF6\t0x7978\n0xBBF7\t0x51FB\n0xBBF8\t0x573E\n0xBBF9\t0x57FA\n0xBBFA\t0x673A\n0xBBFB\t0x7578\n0xBBFC\t0x7A3D\n0xBBFD\t0x79EF\n0xBBFE\t0x7B95\n0xBC40\t0x7CBF\n0xBC41\t0x7CC0\n0xBC42\t0x7CC2\n0xBC43\t0x7CC3\n0xBC44\t0x7CC4\n0xBC45\t0x7CC6\n0xBC46\t0x7CC9\n0xBC47\t0x7CCB\n0xBC48\t0x7CCE\n0xBC49\t0x7CCF\n0xBC4A\t0x7CD0\n0xBC4B\t0x7CD1\n0xBC4C\t0x7CD2\n0xBC4D\t0x7CD3\n0xBC4E\t0x7CD4\n0xBC4F\t0x7CD8\n0xBC50\t0x7CDA\n0xBC51\t0x7CDB\n0xBC52\t0x7CDD\n0xBC53\t0x7CDE\n0xBC54\t0x7CE1\n0xBC55\t0x7CE2\n0xBC56\t0x7CE3\n0xBC57\t0x7CE4\n0xBC58\t0x7CE5\n0xBC59\t0x7CE6\n0xBC5A\t0x7CE7\n0xBC5B\t0x7CE9\n0xBC5C\t0x7CEA\n0xBC5D\t0x7CEB\n0xBC5E\t0x7CEC\n0xBC5F\t0x7CED\n0xBC60\t0x7CEE\n0xBC61\t0x7CF0\n0xBC62\t0x7CF1\n0xBC63\t0x7CF2\n0xBC64\t0x7CF3\n0xBC65\t0x7CF4\n0xBC66\t0x7CF5\n0xBC67\t0x7CF6\n0xBC68\t0x7CF7\n0xBC69\t0x7CF9\n0xBC6A\t0x7CFA\n0xBC6B\t0x7CFC\n0xBC6C\t0x7CFD\n0xBC6D\t0x7CFE\n0xBC6E\t0x7CFF\n0xBC6F\t0x7D00\n0xBC70\t0x7D01\n0xBC71\t0x7D02\n0xBC72\t0x7D03\n0xBC73\t0x7D04\n0xBC74\t0x7D05\n0xBC75\t0x7D06\n0xBC76\t0x7D07\n0xBC77\t0x7D08\n0xBC78\t0x7D09\n0xBC79\t0x7D0B\n0xBC7A\t0x7D0C\n0xBC7B\t0x7D0D\n0xBC7C\t0x7D0E\n0xBC7D\t0x7D0F\n0xBC7E\t0x7D10\n0xBC80\t0x7D11\n0xBC81\t0x7D12\n0xBC82\t0x7D13\n0xBC83\t0x7D14\n0xBC84\t0x7D15\n0xBC85\t0x7D16\n0xBC86\t0x7D17\n0xBC87\t0x7D18\n0xBC88\t0x7D19\n0xBC89\t0x7D1A\n0xBC8A\t0x7D1B\n0xBC8B\t0x7D1C\n0xBC8C\t0x7D1D\n0xBC8D\t0x7D1E\n0xBC8E\t0x7D1F\n0xBC8F\t0x7D21\n0xBC90\t0x7D23\n0xBC91\t0x7D24\n0xBC92\t0x7D25\n0xBC93\t0x7D26\n0xBC94\t0x7D28\n0xBC95\t0x7D29\n0xBC96\t0x7D2A\n0xBC97\t0x7D2C\n0xBC98\t0x7D2D\n0xBC99\t0x7D2E\n0xBC9A\t0x7D30\n0xBC9B\t0x7D31\n0xBC9C\t0x7D32\n0xBC9D\t0x7D33\n0xBC9E\t0x7D34\n0xBC9F\t0x7D35\n0xBCA0\t0x7D36\n0xBCA1\t0x808C\n0xBCA2\t0x9965\n0xBCA3\t0x8FF9\n0xBCA4\t0x6FC0\n0xBCA5\t0x8BA5\n0xBCA6\t0x9E21\n0xBCA7\t0x59EC\n0xBCA8\t0x7EE9\n0xBCA9\t0x7F09\n0xBCAA\t0x5409\n0xBCAB\t0x6781\n0xBCAC\t0x68D8\n0xBCAD\t0x8F91\n0xBCAE\t0x7C4D\n0xBCAF\t0x96C6\n0xBCB0\t0x53CA\n0xBCB1\t0x6025\n0xBCB2\t0x75BE\n0xBCB3\t0x6C72\n0xBCB4\t0x5373\n0xBCB5\t0x5AC9\n0xBCB6\t0x7EA7\n0xBCB7\t0x6324\n0xBCB8\t0x51E0\n0xBCB9\t0x810A\n0xBCBA\t0x5DF1\n0xBCBB\t0x84DF\n0xBCBC\t0x6280\n0xBCBD\t0x5180\n0xBCBE\t0x5B63\n0xBCBF\t0x4F0E\n0xBCC0\t0x796D\n0xBCC1\t0x5242\n0xBCC2\t0x60B8\n0xBCC3\t0x6D4E\n0xBCC4\t0x5BC4\n0xBCC5\t0x5BC2\n0xBCC6\t0x8BA1\n0xBCC7\t0x8BB0\n0xBCC8\t0x65E2\n0xBCC9\t0x5FCC\n0xBCCA\t0x9645\n0xBCCB\t0x5993\n0xBCCC\t0x7EE7\n0xBCCD\t0x7EAA\n0xBCCE\t0x5609\n0xBCCF\t0x67B7\n0xBCD0\t0x5939\n0xBCD1\t0x4F73\n0xBCD2\t0x5BB6\n0xBCD3\t0x52A0\n0xBCD4\t0x835A\n0xBCD5\t0x988A\n0xBCD6\t0x8D3E\n0xBCD7\t0x7532\n0xBCD8\t0x94BE\n0xBCD9\t0x5047\n0xBCDA\t0x7A3C\n0xBCDB\t0x4EF7\n0xBCDC\t0x67B6\n0xBCDD\t0x9A7E\n0xBCDE\t0x5AC1\n0xBCDF\t0x6B7C\n0xBCE0\t0x76D1\n0xBCE1\t0x575A\n0xBCE2\t0x5C16\n0xBCE3\t0x7B3A\n0xBCE4\t0x95F4\n0xBCE5\t0x714E\n0xBCE6\t0x517C\n0xBCE7\t0x80A9\n0xBCE8\t0x8270\n0xBCE9\t0x5978\n0xBCEA\t0x7F04\n0xBCEB\t0x8327\n0xBCEC\t0x68C0\n0xBCED\t0x67EC\n0xBCEE\t0x78B1\n0xBCEF\t0x7877\n0xBCF0\t0x62E3\n0xBCF1\t0x6361\n0xBCF2\t0x7B80\n0xBCF3\t0x4FED\n0xBCF4\t0x526A\n0xBCF5\t0x51CF\n0xBCF6\t0x8350\n0xBCF7\t0x69DB\n0xBCF8\t0x9274\n0xBCF9\t0x8DF5\n0xBCFA\t0x8D31\n0xBCFB\t0x89C1\n0xBCFC\t0x952E\n0xBCFD\t0x7BAD\n0xBCFE\t0x4EF6\n0xBD40\t0x7D37\n0xBD41\t0x7D38\n0xBD42\t0x7D39\n0xBD43\t0x7D3A\n0xBD44\t0x7D3B\n0xBD45\t0x7D3C\n0xBD46\t0x7D3D\n0xBD47\t0x7D3E\n0xBD48\t0x7D3F\n0xBD49\t0x7D40\n0xBD4A\t0x7D41\n0xBD4B\t0x7D42\n0xBD4C\t0x7D43\n0xBD4D\t0x7D44\n0xBD4E\t0x7D45\n0xBD4F\t0x7D46\n0xBD50\t0x7D47\n0xBD51\t0x7D48\n0xBD52\t0x7D49\n0xBD53\t0x7D4A\n0xBD54\t0x7D4B\n0xBD55\t0x7D4C\n0xBD56\t0x7D4D\n0xBD57\t0x7D4E\n0xBD58\t0x7D4F\n0xBD59\t0x7D50\n0xBD5A\t0x7D51\n0xBD5B\t0x7D52\n0xBD5C\t0x7D53\n0xBD5D\t0x7D54\n0xBD5E\t0x7D55\n0xBD5F\t0x7D56\n0xBD60\t0x7D57\n0xBD61\t0x7D58\n0xBD62\t0x7D59\n0xBD63\t0x7D5A\n0xBD64\t0x7D5B\n0xBD65\t0x7D5C\n0xBD66\t0x7D5D\n0xBD67\t0x7D5E\n0xBD68\t0x7D5F\n0xBD69\t0x7D60\n0xBD6A\t0x7D61\n0xBD6B\t0x7D62\n0xBD6C\t0x7D63\n0xBD6D\t0x7D64\n0xBD6E\t0x7D65\n0xBD6F\t0x7D66\n0xBD70\t0x7D67\n0xBD71\t0x7D68\n0xBD72\t0x7D69\n0xBD73\t0x7D6A\n0xBD74\t0x7D6B\n0xBD75\t0x7D6C\n0xBD76\t0x7D6D\n0xBD77\t0x7D6F\n0xBD78\t0x7D70\n0xBD79\t0x7D71\n0xBD7A\t0x7D72\n0xBD7B\t0x7D73\n0xBD7C\t0x7D74\n0xBD7D\t0x7D75\n0xBD7E\t0x7D76\n0xBD80\t0x7D78\n0xBD81\t0x7D79\n0xBD82\t0x7D7A\n0xBD83\t0x7D7B\n0xBD84\t0x7D7C\n0xBD85\t0x7D7D\n0xBD86\t0x7D7E\n0xBD87\t0x7D7F\n0xBD88\t0x7D80\n0xBD89\t0x7D81\n0xBD8A\t0x7D82\n0xBD8B\t0x7D83\n0xBD8C\t0x7D84\n0xBD8D\t0x7D85\n0xBD8E\t0x7D86\n0xBD8F\t0x7D87\n0xBD90\t0x7D88\n0xBD91\t0x7D89\n0xBD92\t0x7D8A\n0xBD93\t0x7D8B\n0xBD94\t0x7D8C\n0xBD95\t0x7D8D\n0xBD96\t0x7D8E\n0xBD97\t0x7D8F\n0xBD98\t0x7D90\n0xBD99\t0x7D91\n0xBD9A\t0x7D92\n0xBD9B\t0x7D93\n0xBD9C\t0x7D94\n0xBD9D\t0x7D95\n0xBD9E\t0x7D96\n0xBD9F\t0x7D97\n0xBDA0\t0x7D98\n0xBDA1\t0x5065\n0xBDA2\t0x8230\n0xBDA3\t0x5251\n0xBDA4\t0x996F\n0xBDA5\t0x6E10\n0xBDA6\t0x6E85\n0xBDA7\t0x6DA7\n0xBDA8\t0x5EFA\n0xBDA9\t0x50F5\n0xBDAA\t0x59DC\n0xBDAB\t0x5C06\n0xBDAC\t0x6D46\n0xBDAD\t0x6C5F\n0xBDAE\t0x7586\n0xBDAF\t0x848B\n0xBDB0\t0x6868\n0xBDB1\t0x5956\n0xBDB2\t0x8BB2\n0xBDB3\t0x5320\n0xBDB4\t0x9171\n0xBDB5\t0x964D\n0xBDB6\t0x8549\n0xBDB7\t0x6912\n0xBDB8\t0x7901\n0xBDB9\t0x7126\n0xBDBA\t0x80F6\n0xBDBB\t0x4EA4\n0xBDBC\t0x90CA\n0xBDBD\t0x6D47\n0xBDBE\t0x9A84\n0xBDBF\t0x5A07\n0xBDC0\t0x56BC\n0xBDC1\t0x6405\n0xBDC2\t0x94F0\n0xBDC3\t0x77EB\n0xBDC4\t0x4FA5\n0xBDC5\t0x811A\n0xBDC6\t0x72E1\n0xBDC7\t0x89D2\n0xBDC8\t0x997A\n0xBDC9\t0x7F34\n0xBDCA\t0x7EDE\n0xBDCB\t0x527F\n0xBDCC\t0x6559\n0xBDCD\t0x9175\n0xBDCE\t0x8F7F\n0xBDCF\t0x8F83\n0xBDD0\t0x53EB\n0xBDD1\t0x7A96\n0xBDD2\t0x63ED\n0xBDD3\t0x63A5\n0xBDD4\t0x7686\n0xBDD5\t0x79F8\n0xBDD6\t0x8857\n0xBDD7\t0x9636\n0xBDD8\t0x622A\n0xBDD9\t0x52AB\n0xBDDA\t0x8282\n0xBDDB\t0x6854\n0xBDDC\t0x6770\n0xBDDD\t0x6377\n0xBDDE\t0x776B\n0xBDDF\t0x7AED\n0xBDE0\t0x6D01\n0xBDE1\t0x7ED3\n0xBDE2\t0x89E3\n0xBDE3\t0x59D0\n0xBDE4\t0x6212\n0xBDE5\t0x85C9\n0xBDE6\t0x82A5\n0xBDE7\t0x754C\n0xBDE8\t0x501F\n0xBDE9\t0x4ECB\n0xBDEA\t0x75A5\n0xBDEB\t0x8BEB\n0xBDEC\t0x5C4A\n0xBDED\t0x5DFE\n0xBDEE\t0x7B4B\n0xBDEF\t0x65A4\n0xBDF0\t0x91D1\n0xBDF1\t0x4ECA\n0xBDF2\t0x6D25\n0xBDF3\t0x895F\n0xBDF4\t0x7D27\n0xBDF5\t0x9526\n0xBDF6\t0x4EC5\n0xBDF7\t0x8C28\n0xBDF8\t0x8FDB\n0xBDF9\t0x9773\n0xBDFA\t0x664B\n0xBDFB\t0x7981\n0xBDFC\t0x8FD1\n0xBDFD\t0x70EC\n0xBDFE\t0x6D78\n0xBE40\t0x7D99\n0xBE41\t0x7D9A\n0xBE42\t0x7D9B\n0xBE43\t0x7D9C\n0xBE44\t0x7D9D\n0xBE45\t0x7D9E\n0xBE46\t0x7D9F\n0xBE47\t0x7DA0\n0xBE48\t0x7DA1\n0xBE49\t0x7DA2\n0xBE4A\t0x7DA3\n0xBE4B\t0x7DA4\n0xBE4C\t0x7DA5\n0xBE4D\t0x7DA7\n0xBE4E\t0x7DA8\n0xBE4F\t0x7DA9\n0xBE50\t0x7DAA\n0xBE51\t0x7DAB\n0xBE52\t0x7DAC\n0xBE53\t0x7DAD\n0xBE54\t0x7DAF\n0xBE55\t0x7DB0\n0xBE56\t0x7DB1\n0xBE57\t0x7DB2\n0xBE58\t0x7DB3\n0xBE59\t0x7DB4\n0xBE5A\t0x7DB5\n0xBE5B\t0x7DB6\n0xBE5C\t0x7DB7\n0xBE5D\t0x7DB8\n0xBE5E\t0x7DB9\n0xBE5F\t0x7DBA\n0xBE60\t0x7DBB\n0xBE61\t0x7DBC\n0xBE62\t0x7DBD\n0xBE63\t0x7DBE\n0xBE64\t0x7DBF\n0xBE65\t0x7DC0\n0xBE66\t0x7DC1\n0xBE67\t0x7DC2\n0xBE68\t0x7DC3\n0xBE69\t0x7DC4\n0xBE6A\t0x7DC5\n0xBE6B\t0x7DC6\n0xBE6C\t0x7DC7\n0xBE6D\t0x7DC8\n0xBE6E\t0x7DC9\n0xBE6F\t0x7DCA\n0xBE70\t0x7DCB\n0xBE71\t0x7DCC\n0xBE72\t0x7DCD\n0xBE73\t0x7DCE\n0xBE74\t0x7DCF\n0xBE75\t0x7DD0\n0xBE76\t0x7DD1\n0xBE77\t0x7DD2\n0xBE78\t0x7DD3\n0xBE79\t0x7DD4\n0xBE7A\t0x7DD5\n0xBE7B\t0x7DD6\n0xBE7C\t0x7DD7\n0xBE7D\t0x7DD8\n0xBE7E\t0x7DD9\n0xBE80\t0x7DDA\n0xBE81\t0x7DDB\n0xBE82\t0x7DDC\n0xBE83\t0x7DDD\n0xBE84\t0x7DDE\n0xBE85\t0x7DDF\n0xBE86\t0x7DE0\n0xBE87\t0x7DE1\n0xBE88\t0x7DE2\n0xBE89\t0x7DE3\n0xBE8A\t0x7DE4\n0xBE8B\t0x7DE5\n0xBE8C\t0x7DE6\n0xBE8D\t0x7DE7\n0xBE8E\t0x7DE8\n0xBE8F\t0x7DE9\n0xBE90\t0x7DEA\n0xBE91\t0x7DEB\n0xBE92\t0x7DEC\n0xBE93\t0x7DED\n0xBE94\t0x7DEE\n0xBE95\t0x7DEF\n0xBE96\t0x7DF0\n0xBE97\t0x7DF1\n0xBE98\t0x7DF2\n0xBE99\t0x7DF3\n0xBE9A\t0x7DF4\n0xBE9B\t0x7DF5\n0xBE9C\t0x7DF6\n0xBE9D\t0x7DF7\n0xBE9E\t0x7DF8\n0xBE9F\t0x7DF9\n0xBEA0\t0x7DFA\n0xBEA1\t0x5C3D\n0xBEA2\t0x52B2\n0xBEA3\t0x8346\n0xBEA4\t0x5162\n0xBEA5\t0x830E\n0xBEA6\t0x775B\n0xBEA7\t0x6676\n0xBEA8\t0x9CB8\n0xBEA9\t0x4EAC\n0xBEAA\t0x60CA\n0xBEAB\t0x7CBE\n0xBEAC\t0x7CB3\n0xBEAD\t0x7ECF\n0xBEAE\t0x4E95\n0xBEAF\t0x8B66\n0xBEB0\t0x666F\n0xBEB1\t0x9888\n0xBEB2\t0x9759\n0xBEB3\t0x5883\n0xBEB4\t0x656C\n0xBEB5\t0x955C\n0xBEB6\t0x5F84\n0xBEB7\t0x75C9\n0xBEB8\t0x9756\n0xBEB9\t0x7ADF\n0xBEBA\t0x7ADE\n0xBEBB\t0x51C0\n0xBEBC\t0x70AF\n0xBEBD\t0x7A98\n0xBEBE\t0x63EA\n0xBEBF\t0x7A76\n0xBEC0\t0x7EA0\n0xBEC1\t0x7396\n0xBEC2\t0x97ED\n0xBEC3\t0x4E45\n0xBEC4\t0x7078\n0xBEC5\t0x4E5D\n0xBEC6\t0x9152\n0xBEC7\t0x53A9\n0xBEC8\t0x6551\n0xBEC9\t0x65E7\n0xBECA\t0x81FC\n0xBECB\t0x8205\n0xBECC\t0x548E\n0xBECD\t0x5C31\n0xBECE\t0x759A\n0xBECF\t0x97A0\n0xBED0\t0x62D8\n0xBED1\t0x72D9\n0xBED2\t0x75BD\n0xBED3\t0x5C45\n0xBED4\t0x9A79\n0xBED5\t0x83CA\n0xBED6\t0x5C40\n0xBED7\t0x5480\n0xBED8\t0x77E9\n0xBED9\t0x4E3E\n0xBEDA\t0x6CAE\n0xBEDB\t0x805A\n0xBEDC\t0x62D2\n0xBEDD\t0x636E\n0xBEDE\t0x5DE8\n0xBEDF\t0x5177\n0xBEE0\t0x8DDD\n0xBEE1\t0x8E1E\n0xBEE2\t0x952F\n0xBEE3\t0x4FF1\n0xBEE4\t0x53E5\n0xBEE5\t0x60E7\n0xBEE6\t0x70AC\n0xBEE7\t0x5267\n0xBEE8\t0x6350\n0xBEE9\t0x9E43\n0xBEEA\t0x5A1F\n0xBEEB\t0x5026\n0xBEEC\t0x7737\n0xBEED\t0x5377\n0xBEEE\t0x7EE2\n0xBEEF\t0x6485\n0xBEF0\t0x652B\n0xBEF1\t0x6289\n0xBEF2\t0x6398\n0xBEF3\t0x5014\n0xBEF4\t0x7235\n0xBEF5\t0x89C9\n0xBEF6\t0x51B3\n0xBEF7\t0x8BC0\n0xBEF8\t0x7EDD\n0xBEF9\t0x5747\n0xBEFA\t0x83CC\n0xBEFB\t0x94A7\n0xBEFC\t0x519B\n0xBEFD\t0x541B\n0xBEFE\t0x5CFB\n0xBF40\t0x7DFB\n0xBF41\t0x7DFC\n0xBF42\t0x7DFD\n0xBF43\t0x7DFE\n0xBF44\t0x7DFF\n0xBF45\t0x7E00\n0xBF46\t0x7E01\n0xBF47\t0x7E02\n0xBF48\t0x7E03\n0xBF49\t0x7E04\n0xBF4A\t0x7E05\n0xBF4B\t0x7E06\n0xBF4C\t0x7E07\n0xBF4D\t0x7E08\n0xBF4E\t0x7E09\n0xBF4F\t0x7E0A\n0xBF50\t0x7E0B\n0xBF51\t0x7E0C\n0xBF52\t0x7E0D\n0xBF53\t0x7E0E\n0xBF54\t0x7E0F\n0xBF55\t0x7E10\n0xBF56\t0x7E11\n0xBF57\t0x7E12\n0xBF58\t0x7E13\n0xBF59\t0x7E14\n0xBF5A\t0x7E15\n0xBF5B\t0x7E16\n0xBF5C\t0x7E17\n0xBF5D\t0x7E18\n0xBF5E\t0x7E19\n0xBF5F\t0x7E1A\n0xBF60\t0x7E1B\n0xBF61\t0x7E1C\n0xBF62\t0x7E1D\n0xBF63\t0x7E1E\n0xBF64\t0x7E1F\n0xBF65\t0x7E20\n0xBF66\t0x7E21\n0xBF67\t0x7E22\n0xBF68\t0x7E23\n0xBF69\t0x7E24\n0xBF6A\t0x7E25\n0xBF6B\t0x7E26\n0xBF6C\t0x7E27\n0xBF6D\t0x7E28\n0xBF6E\t0x7E29\n0xBF6F\t0x7E2A\n0xBF70\t0x7E2B\n0xBF71\t0x7E2C\n0xBF72\t0x7E2D\n0xBF73\t0x7E2E\n0xBF74\t0x7E2F\n0xBF75\t0x7E30\n0xBF76\t0x7E31\n0xBF77\t0x7E32\n0xBF78\t0x7E33\n0xBF79\t0x7E34\n0xBF7A\t0x7E35\n0xBF7B\t0x7E36\n0xBF7C\t0x7E37\n0xBF7D\t0x7E38\n0xBF7E\t0x7E39\n0xBF80\t0x7E3A\n0xBF81\t0x7E3C\n0xBF82\t0x7E3D\n0xBF83\t0x7E3E\n0xBF84\t0x7E3F\n0xBF85\t0x7E40\n0xBF86\t0x7E42\n0xBF87\t0x7E43\n0xBF88\t0x7E44\n0xBF89\t0x7E45\n0xBF8A\t0x7E46\n0xBF8B\t0x7E48\n0xBF8C\t0x7E49\n0xBF8D\t0x7E4A\n0xBF8E\t0x7E4B\n0xBF8F\t0x7E4C\n0xBF90\t0x7E4D\n0xBF91\t0x7E4E\n0xBF92\t0x7E4F\n0xBF93\t0x7E50\n0xBF94\t0x7E51\n0xBF95\t0x7E52\n0xBF96\t0x7E53\n0xBF97\t0x7E54\n0xBF98\t0x7E55\n0xBF99\t0x7E56\n0xBF9A\t0x7E57\n0xBF9B\t0x7E58\n0xBF9C\t0x7E59\n0xBF9D\t0x7E5A\n0xBF9E\t0x7E5B\n0xBF9F\t0x7E5C\n0xBFA0\t0x7E5D\n0xBFA1\t0x4FCA\n0xBFA2\t0x7AE3\n0xBFA3\t0x6D5A\n0xBFA4\t0x90E1\n0xBFA5\t0x9A8F\n0xBFA6\t0x5580\n0xBFA7\t0x5496\n0xBFA8\t0x5361\n0xBFA9\t0x54AF\n0xBFAA\t0x5F00\n0xBFAB\t0x63E9\n0xBFAC\t0x6977\n0xBFAD\t0x51EF\n0xBFAE\t0x6168\n0xBFAF\t0x520A\n0xBFB0\t0x582A\n0xBFB1\t0x52D8\n0xBFB2\t0x574E\n0xBFB3\t0x780D\n0xBFB4\t0x770B\n0xBFB5\t0x5EB7\n0xBFB6\t0x6177\n0xBFB7\t0x7CE0\n0xBFB8\t0x625B\n0xBFB9\t0x6297\n0xBFBA\t0x4EA2\n0xBFBB\t0x7095\n0xBFBC\t0x8003\n0xBFBD\t0x62F7\n0xBFBE\t0x70E4\n0xBFBF\t0x9760\n0xBFC0\t0x5777\n0xBFC1\t0x82DB\n0xBFC2\t0x67EF\n0xBFC3\t0x68F5\n0xBFC4\t0x78D5\n0xBFC5\t0x9897\n0xBFC6\t0x79D1\n0xBFC7\t0x58F3\n0xBFC8\t0x54B3\n0xBFC9\t0x53EF\n0xBFCA\t0x6E34\n0xBFCB\t0x514B\n0xBFCC\t0x523B\n0xBFCD\t0x5BA2\n0xBFCE\t0x8BFE\n0xBFCF\t0x80AF\n0xBFD0\t0x5543\n0xBFD1\t0x57A6\n0xBFD2\t0x6073\n0xBFD3\t0x5751\n0xBFD4\t0x542D\n0xBFD5\t0x7A7A\n0xBFD6\t0x6050\n0xBFD7\t0x5B54\n0xBFD8\t0x63A7\n0xBFD9\t0x62A0\n0xBFDA\t0x53E3\n0xBFDB\t0x6263\n0xBFDC\t0x5BC7\n0xBFDD\t0x67AF\n0xBFDE\t0x54ED\n0xBFDF\t0x7A9F\n0xBFE0\t0x82E6\n0xBFE1\t0x9177\n0xBFE2\t0x5E93\n0xBFE3\t0x88E4\n0xBFE4\t0x5938\n0xBFE5\t0x57AE\n0xBFE6\t0x630E\n0xBFE7\t0x8DE8\n0xBFE8\t0x80EF\n0xBFE9\t0x5757\n0xBFEA\t0x7B77\n0xBFEB\t0x4FA9\n0xBFEC\t0x5FEB\n0xBFED\t0x5BBD\n0xBFEE\t0x6B3E\n0xBFEF\t0x5321\n0xBFF0\t0x7B50\n0xBFF1\t0x72C2\n0xBFF2\t0x6846\n0xBFF3\t0x77FF\n0xBFF4\t0x7736\n0xBFF5\t0x65F7\n0xBFF6\t0x51B5\n0xBFF7\t0x4E8F\n0xBFF8\t0x76D4\n0xBFF9\t0x5CBF\n0xBFFA\t0x7AA5\n0xBFFB\t0x8475\n0xBFFC\t0x594E\n0xBFFD\t0x9B41\n0xBFFE\t0x5080\n0xC040\t0x7E5E\n0xC041\t0x7E5F\n0xC042\t0x7E60\n0xC043\t0x7E61\n0xC044\t0x7E62\n0xC045\t0x7E63\n0xC046\t0x7E64\n0xC047\t0x7E65\n0xC048\t0x7E66\n0xC049\t0x7E67\n0xC04A\t0x7E68\n0xC04B\t0x7E69\n0xC04C\t0x7E6A\n0xC04D\t0x7E6B\n0xC04E\t0x7E6C\n0xC04F\t0x7E6D\n0xC050\t0x7E6E\n0xC051\t0x7E6F\n0xC052\t0x7E70\n0xC053\t0x7E71\n0xC054\t0x7E72\n0xC055\t0x7E73\n0xC056\t0x7E74\n0xC057\t0x7E75\n0xC058\t0x7E76\n0xC059\t0x7E77\n0xC05A\t0x7E78\n0xC05B\t0x7E79\n0xC05C\t0x7E7A\n0xC05D\t0x7E7B\n0xC05E\t0x7E7C\n0xC05F\t0x7E7D\n0xC060\t0x7E7E\n0xC061\t0x7E7F\n0xC062\t0x7E80\n0xC063\t0x7E81\n0xC064\t0x7E83\n0xC065\t0x7E84\n0xC066\t0x7E85\n0xC067\t0x7E86\n0xC068\t0x7E87\n0xC069\t0x7E88\n0xC06A\t0x7E89\n0xC06B\t0x7E8A\n0xC06C\t0x7E8B\n0xC06D\t0x7E8C\n0xC06E\t0x7E8D\n0xC06F\t0x7E8E\n0xC070\t0x7E8F\n0xC071\t0x7E90\n0xC072\t0x7E91\n0xC073\t0x7E92\n0xC074\t0x7E93\n0xC075\t0x7E94\n0xC076\t0x7E95\n0xC077\t0x7E96\n0xC078\t0x7E97\n0xC079\t0x7E98\n0xC07A\t0x7E99\n0xC07B\t0x7E9A\n0xC07C\t0x7E9C\n0xC07D\t0x7E9D\n0xC07E\t0x7E9E\n0xC080\t0x7EAE\n0xC081\t0x7EB4\n0xC082\t0x7EBB\n0xC083\t0x7EBC\n0xC084\t0x7ED6\n0xC085\t0x7EE4\n0xC086\t0x7EEC\n0xC087\t0x7EF9\n0xC088\t0x7F0A\n0xC089\t0x7F10\n0xC08A\t0x7F1E\n0xC08B\t0x7F37\n0xC08C\t0x7F39\n0xC08D\t0x7F3B\n0xC08E\t0x7F3C\n0xC08F\t0x7F3D\n0xC090\t0x7F3E\n0xC091\t0x7F3F\n0xC092\t0x7F40\n0xC093\t0x7F41\n0xC094\t0x7F43\n0xC095\t0x7F46\n0xC096\t0x7F47\n0xC097\t0x7F48\n0xC098\t0x7F49\n0xC099\t0x7F4A\n0xC09A\t0x7F4B\n0xC09B\t0x7F4C\n0xC09C\t0x7F4D\n0xC09D\t0x7F4E\n0xC09E\t0x7F4F\n0xC09F\t0x7F52\n0xC0A0\t0x7F53\n0xC0A1\t0x9988\n0xC0A2\t0x6127\n0xC0A3\t0x6E83\n0xC0A4\t0x5764\n0xC0A5\t0x6606\n0xC0A6\t0x6346\n0xC0A7\t0x56F0\n0xC0A8\t0x62EC\n0xC0A9\t0x6269\n0xC0AA\t0x5ED3\n0xC0AB\t0x9614\n0xC0AC\t0x5783\n0xC0AD\t0x62C9\n0xC0AE\t0x5587\n0xC0AF\t0x8721\n0xC0B0\t0x814A\n0xC0B1\t0x8FA3\n0xC0B2\t0x5566\n0xC0B3\t0x83B1\n0xC0B4\t0x6765\n0xC0B5\t0x8D56\n0xC0B6\t0x84DD\n0xC0B7\t0x5A6A\n0xC0B8\t0x680F\n0xC0B9\t0x62E6\n0xC0BA\t0x7BEE\n0xC0BB\t0x9611\n0xC0BC\t0x5170\n0xC0BD\t0x6F9C\n0xC0BE\t0x8C30\n0xC0BF\t0x63FD\n0xC0C0\t0x89C8\n0xC0C1\t0x61D2\n0xC0C2\t0x7F06\n0xC0C3\t0x70C2\n0xC0C4\t0x6EE5\n0xC0C5\t0x7405\n0xC0C6\t0x6994\n0xC0C7\t0x72FC\n0xC0C8\t0x5ECA\n0xC0C9\t0x90CE\n0xC0CA\t0x6717\n0xC0CB\t0x6D6A\n0xC0CC\t0x635E\n0xC0CD\t0x52B3\n0xC0CE\t0x7262\n0xC0CF\t0x8001\n0xC0D0\t0x4F6C\n0xC0D1\t0x59E5\n0xC0D2\t0x916A\n0xC0D3\t0x70D9\n0xC0D4\t0x6D9D\n0xC0D5\t0x52D2\n0xC0D6\t0x4E50\n0xC0D7\t0x96F7\n0xC0D8\t0x956D\n0xC0D9\t0x857E\n0xC0DA\t0x78CA\n0xC0DB\t0x7D2F\n0xC0DC\t0x5121\n0xC0DD\t0x5792\n0xC0DE\t0x64C2\n0xC0DF\t0x808B\n0xC0E0\t0x7C7B\n0xC0E1\t0x6CEA\n0xC0E2\t0x68F1\n0xC0E3\t0x695E\n0xC0E4\t0x51B7\n0xC0E5\t0x5398\n0xC0E6\t0x68A8\n0xC0E7\t0x7281\n0xC0E8\t0x9ECE\n0xC0E9\t0x7BF1\n0xC0EA\t0x72F8\n0xC0EB\t0x79BB\n0xC0EC\t0x6F13\n0xC0ED\t0x7406\n0xC0EE\t0x674E\n0xC0EF\t0x91CC\n0xC0F0\t0x9CA4\n0xC0F1\t0x793C\n0xC0F2\t0x8389\n0xC0F3\t0x8354\n0xC0F4\t0x540F\n0xC0F5\t0x6817\n0xC0F6\t0x4E3D\n0xC0F7\t0x5389\n0xC0F8\t0x52B1\n0xC0F9\t0x783E\n0xC0FA\t0x5386\n0xC0FB\t0x5229\n0xC0FC\t0x5088\n0xC0FD\t0x4F8B\n0xC0FE\t0x4FD0\n0xC140\t0x7F56\n0xC141\t0x7F59\n0xC142\t0x7F5B\n0xC143\t0x7F5C\n0xC144\t0x7F5D\n0xC145\t0x7F5E\n0xC146\t0x7F60\n0xC147\t0x7F63\n0xC148\t0x7F64\n0xC149\t0x7F65\n0xC14A\t0x7F66\n0xC14B\t0x7F67\n0xC14C\t0x7F6B\n0xC14D\t0x7F6C\n0xC14E\t0x7F6D\n0xC14F\t0x7F6F\n0xC150\t0x7F70\n0xC151\t0x7F73\n0xC152\t0x7F75\n0xC153\t0x7F76\n0xC154\t0x7F77\n0xC155\t0x7F78\n0xC156\t0x7F7A\n0xC157\t0x7F7B\n0xC158\t0x7F7C\n0xC159\t0x7F7D\n0xC15A\t0x7F7F\n0xC15B\t0x7F80\n0xC15C\t0x7F82\n0xC15D\t0x7F83\n0xC15E\t0x7F84\n0xC15F\t0x7F85\n0xC160\t0x7F86\n0xC161\t0x7F87\n0xC162\t0x7F88\n0xC163\t0x7F89\n0xC164\t0x7F8B\n0xC165\t0x7F8D\n0xC166\t0x7F8F\n0xC167\t0x7F90\n0xC168\t0x7F91\n0xC169\t0x7F92\n0xC16A\t0x7F93\n0xC16B\t0x7F95\n0xC16C\t0x7F96\n0xC16D\t0x7F97\n0xC16E\t0x7F98\n0xC16F\t0x7F99\n0xC170\t0x7F9B\n0xC171\t0x7F9C\n0xC172\t0x7FA0\n0xC173\t0x7FA2\n0xC174\t0x7FA3\n0xC175\t0x7FA5\n0xC176\t0x7FA6\n0xC177\t0x7FA8\n0xC178\t0x7FA9\n0xC179\t0x7FAA\n0xC17A\t0x7FAB\n0xC17B\t0x7FAC\n0xC17C\t0x7FAD\n0xC17D\t0x7FAE\n0xC17E\t0x7FB1\n0xC180\t0x7FB3\n0xC181\t0x7FB4\n0xC182\t0x7FB5\n0xC183\t0x7FB6\n0xC184\t0x7FB7\n0xC185\t0x7FBA\n0xC186\t0x7FBB\n0xC187\t0x7FBE\n0xC188\t0x7FC0\n0xC189\t0x7FC2\n0xC18A\t0x7FC3\n0xC18B\t0x7FC4\n0xC18C\t0x7FC6\n0xC18D\t0x7FC7\n0xC18E\t0x7FC8\n0xC18F\t0x7FC9\n0xC190\t0x7FCB\n0xC191\t0x7FCD\n0xC192\t0x7FCF\n0xC193\t0x7FD0\n0xC194\t0x7FD1\n0xC195\t0x7FD2\n0xC196\t0x7FD3\n0xC197\t0x7FD6\n0xC198\t0x7FD7\n0xC199\t0x7FD9\n0xC19A\t0x7FDA\n0xC19B\t0x7FDB\n0xC19C\t0x7FDC\n0xC19D\t0x7FDD\n0xC19E\t0x7FDE\n0xC19F\t0x7FE2\n0xC1A0\t0x7FE3\n0xC1A1\t0x75E2\n0xC1A2\t0x7ACB\n0xC1A3\t0x7C92\n0xC1A4\t0x6CA5\n0xC1A5\t0x96B6\n0xC1A6\t0x529B\n0xC1A7\t0x7483\n0xC1A8\t0x54E9\n0xC1A9\t0x4FE9\n0xC1AA\t0x8054\n0xC1AB\t0x83B2\n0xC1AC\t0x8FDE\n0xC1AD\t0x9570\n0xC1AE\t0x5EC9\n0xC1AF\t0x601C\n0xC1B0\t0x6D9F\n0xC1B1\t0x5E18\n0xC1B2\t0x655B\n0xC1B3\t0x8138\n0xC1B4\t0x94FE\n0xC1B5\t0x604B\n0xC1B6\t0x70BC\n0xC1B7\t0x7EC3\n0xC1B8\t0x7CAE\n0xC1B9\t0x51C9\n0xC1BA\t0x6881\n0xC1BB\t0x7CB1\n0xC1BC\t0x826F\n0xC1BD\t0x4E24\n0xC1BE\t0x8F86\n0xC1BF\t0x91CF\n0xC1C0\t0x667E\n0xC1C1\t0x4EAE\n0xC1C2\t0x8C05\n0xC1C3\t0x64A9\n0xC1C4\t0x804A\n0xC1C5\t0x50DA\n0xC1C6\t0x7597\n0xC1C7\t0x71CE\n0xC1C8\t0x5BE5\n0xC1C9\t0x8FBD\n0xC1CA\t0x6F66\n0xC1CB\t0x4E86\n0xC1CC\t0x6482\n0xC1CD\t0x9563\n0xC1CE\t0x5ED6\n0xC1CF\t0x6599\n0xC1D0\t0x5217\n0xC1D1\t0x88C2\n0xC1D2\t0x70C8\n0xC1D3\t0x52A3\n0xC1D4\t0x730E\n0xC1D5\t0x7433\n0xC1D6\t0x6797\n0xC1D7\t0x78F7\n0xC1D8\t0x9716\n0xC1D9\t0x4E34\n0xC1DA\t0x90BB\n0xC1DB\t0x9CDE\n0xC1DC\t0x6DCB\n0xC1DD\t0x51DB\n0xC1DE\t0x8D41\n0xC1DF\t0x541D\n0xC1E0\t0x62CE\n0xC1E1\t0x73B2\n0xC1E2\t0x83F1\n0xC1E3\t0x96F6\n0xC1E4\t0x9F84\n0xC1E5\t0x94C3\n0xC1E6\t0x4F36\n0xC1E7\t0x7F9A\n0xC1E8\t0x51CC\n0xC1E9\t0x7075\n0xC1EA\t0x9675\n0xC1EB\t0x5CAD\n0xC1EC\t0x9886\n0xC1ED\t0x53E6\n0xC1EE\t0x4EE4\n0xC1EF\t0x6E9C\n0xC1F0\t0x7409\n0xC1F1\t0x69B4\n0xC1F2\t0x786B\n0xC1F3\t0x998F\n0xC1F4\t0x7559\n0xC1F5\t0x5218\n0xC1F6\t0x7624\n0xC1F7\t0x6D41\n0xC1F8\t0x67F3\n0xC1F9\t0x516D\n0xC1FA\t0x9F99\n0xC1FB\t0x804B\n0xC1FC\t0x5499\n0xC1FD\t0x7B3C\n0xC1FE\t0x7ABF\n0xC240\t0x7FE4\n0xC241\t0x7FE7\n0xC242\t0x7FE8\n0xC243\t0x7FEA\n0xC244\t0x7FEB\n0xC245\t0x7FEC\n0xC246\t0x7FED\n0xC247\t0x7FEF\n0xC248\t0x7FF2\n0xC249\t0x7FF4\n0xC24A\t0x7FF5\n0xC24B\t0x7FF6\n0xC24C\t0x7FF7\n0xC24D\t0x7FF8\n0xC24E\t0x7FF9\n0xC24F\t0x7FFA\n0xC250\t0x7FFD\n0xC251\t0x7FFE\n0xC252\t0x7FFF\n0xC253\t0x8002\n0xC254\t0x8007\n0xC255\t0x8008\n0xC256\t0x8009\n0xC257\t0x800A\n0xC258\t0x800E\n0xC259\t0x800F\n0xC25A\t0x8011\n0xC25B\t0x8013\n0xC25C\t0x801A\n0xC25D\t0x801B\n0xC25E\t0x801D\n0xC25F\t0x801E\n0xC260\t0x801F\n0xC261\t0x8021\n0xC262\t0x8023\n0xC263\t0x8024\n0xC264\t0x802B\n0xC265\t0x802C\n0xC266\t0x802D\n0xC267\t0x802E\n0xC268\t0x802F\n0xC269\t0x8030\n0xC26A\t0x8032\n0xC26B\t0x8034\n0xC26C\t0x8039\n0xC26D\t0x803A\n0xC26E\t0x803C\n0xC26F\t0x803E\n0xC270\t0x8040\n0xC271\t0x8041\n0xC272\t0x8044\n0xC273\t0x8045\n0xC274\t0x8047\n0xC275\t0x8048\n0xC276\t0x8049\n0xC277\t0x804E\n0xC278\t0x804F\n0xC279\t0x8050\n0xC27A\t0x8051\n0xC27B\t0x8053\n0xC27C\t0x8055\n0xC27D\t0x8056\n0xC27E\t0x8057\n0xC280\t0x8059\n0xC281\t0x805B\n0xC282\t0x805C\n0xC283\t0x805D\n0xC284\t0x805E\n0xC285\t0x805F\n0xC286\t0x8060\n0xC287\t0x8061\n0xC288\t0x8062\n0xC289\t0x8063\n0xC28A\t0x8064\n0xC28B\t0x8065\n0xC28C\t0x8066\n0xC28D\t0x8067\n0xC28E\t0x8068\n0xC28F\t0x806B\n0xC290\t0x806C\n0xC291\t0x806D\n0xC292\t0x806E\n0xC293\t0x806F\n0xC294\t0x8070\n0xC295\t0x8072\n0xC296\t0x8073\n0xC297\t0x8074\n0xC298\t0x8075\n0xC299\t0x8076\n0xC29A\t0x8077\n0xC29B\t0x8078\n0xC29C\t0x8079\n0xC29D\t0x807A\n0xC29E\t0x807B\n0xC29F\t0x807C\n0xC2A0\t0x807D\n0xC2A1\t0x9686\n0xC2A2\t0x5784\n0xC2A3\t0x62E2\n0xC2A4\t0x9647\n0xC2A5\t0x697C\n0xC2A6\t0x5A04\n0xC2A7\t0x6402\n0xC2A8\t0x7BD3\n0xC2A9\t0x6F0F\n0xC2AA\t0x964B\n0xC2AB\t0x82A6\n0xC2AC\t0x5362\n0xC2AD\t0x9885\n0xC2AE\t0x5E90\n0xC2AF\t0x7089\n0xC2B0\t0x63B3\n0xC2B1\t0x5364\n0xC2B2\t0x864F\n0xC2B3\t0x9C81\n0xC2B4\t0x9E93\n0xC2B5\t0x788C\n0xC2B6\t0x9732\n0xC2B7\t0x8DEF\n0xC2B8\t0x8D42\n0xC2B9\t0x9E7F\n0xC2BA\t0x6F5E\n0xC2BB\t0x7984\n0xC2BC\t0x5F55\n0xC2BD\t0x9646\n0xC2BE\t0x622E\n0xC2BF\t0x9A74\n0xC2C0\t0x5415\n0xC2C1\t0x94DD\n0xC2C2\t0x4FA3\n0xC2C3\t0x65C5\n0xC2C4\t0x5C65\n0xC2C5\t0x5C61\n0xC2C6\t0x7F15\n0xC2C7\t0x8651\n0xC2C8\t0x6C2F\n0xC2C9\t0x5F8B\n0xC2CA\t0x7387\n0xC2CB\t0x6EE4\n0xC2CC\t0x7EFF\n0xC2CD\t0x5CE6\n0xC2CE\t0x631B\n0xC2CF\t0x5B6A\n0xC2D0\t0x6EE6\n0xC2D1\t0x5375\n0xC2D2\t0x4E71\n0xC2D3\t0x63A0\n0xC2D4\t0x7565\n0xC2D5\t0x62A1\n0xC2D6\t0x8F6E\n0xC2D7\t0x4F26\n0xC2D8\t0x4ED1\n0xC2D9\t0x6CA6\n0xC2DA\t0x7EB6\n0xC2DB\t0x8BBA\n0xC2DC\t0x841D\n0xC2DD\t0x87BA\n0xC2DE\t0x7F57\n0xC2DF\t0x903B\n0xC2E0\t0x9523\n0xC2E1\t0x7BA9\n0xC2E2\t0x9AA1\n0xC2E3\t0x88F8\n0xC2E4\t0x843D\n0xC2E5\t0x6D1B\n0xC2E6\t0x9A86\n0xC2E7\t0x7EDC\n0xC2E8\t0x5988\n0xC2E9\t0x9EBB\n0xC2EA\t0x739B\n0xC2EB\t0x7801\n0xC2EC\t0x8682\n0xC2ED\t0x9A6C\n0xC2EE\t0x9A82\n0xC2EF\t0x561B\n0xC2F0\t0x5417\n0xC2F1\t0x57CB\n0xC2F2\t0x4E70\n0xC2F3\t0x9EA6\n0xC2F4\t0x5356\n0xC2F5\t0x8FC8\n0xC2F6\t0x8109\n0xC2F7\t0x7792\n0xC2F8\t0x9992\n0xC2F9\t0x86EE\n0xC2FA\t0x6EE1\n0xC2FB\t0x8513\n0xC2FC\t0x66FC\n0xC2FD\t0x6162\n0xC2FE\t0x6F2B\n0xC340\t0x807E\n0xC341\t0x8081\n0xC342\t0x8082\n0xC343\t0x8085\n0xC344\t0x8088\n0xC345\t0x808A\n0xC346\t0x808D\n0xC347\t0x808E\n0xC348\t0x808F\n0xC349\t0x8090\n0xC34A\t0x8091\n0xC34B\t0x8092\n0xC34C\t0x8094\n0xC34D\t0x8095\n0xC34E\t0x8097\n0xC34F\t0x8099\n0xC350\t0x809E\n0xC351\t0x80A3\n0xC352\t0x80A6\n0xC353\t0x80A7\n0xC354\t0x80A8\n0xC355\t0x80AC\n0xC356\t0x80B0\n0xC357\t0x80B3\n0xC358\t0x80B5\n0xC359\t0x80B6\n0xC35A\t0x80B8\n0xC35B\t0x80B9\n0xC35C\t0x80BB\n0xC35D\t0x80C5\n0xC35E\t0x80C7\n0xC35F\t0x80C8\n0xC360\t0x80C9\n0xC361\t0x80CA\n0xC362\t0x80CB\n0xC363\t0x80CF\n0xC364\t0x80D0\n0xC365\t0x80D1\n0xC366\t0x80D2\n0xC367\t0x80D3\n0xC368\t0x80D4\n0xC369\t0x80D5\n0xC36A\t0x80D8\n0xC36B\t0x80DF\n0xC36C\t0x80E0\n0xC36D\t0x80E2\n0xC36E\t0x80E3\n0xC36F\t0x80E6\n0xC370\t0x80EE\n0xC371\t0x80F5\n0xC372\t0x80F7\n0xC373\t0x80F9\n0xC374\t0x80FB\n0xC375\t0x80FE\n0xC376\t0x80FF\n0xC377\t0x8100\n0xC378\t0x8101\n0xC379\t0x8103\n0xC37A\t0x8104\n0xC37B\t0x8105\n0xC37C\t0x8107\n0xC37D\t0x8108\n0xC37E\t0x810B\n0xC380\t0x810C\n0xC381\t0x8115\n0xC382\t0x8117\n0xC383\t0x8119\n0xC384\t0x811B\n0xC385\t0x811C\n0xC386\t0x811D\n0xC387\t0x811F\n0xC388\t0x8120\n0xC389\t0x8121\n0xC38A\t0x8122\n0xC38B\t0x8123\n0xC38C\t0x8124\n0xC38D\t0x8125\n0xC38E\t0x8126\n0xC38F\t0x8127\n0xC390\t0x8128\n0xC391\t0x8129\n0xC392\t0x812A\n0xC393\t0x812B\n0xC394\t0x812D\n0xC395\t0x812E\n0xC396\t0x8130\n0xC397\t0x8133\n0xC398\t0x8134\n0xC399\t0x8135\n0xC39A\t0x8137\n0xC39B\t0x8139\n0xC39C\t0x813A\n0xC39D\t0x813B\n0xC39E\t0x813C\n0xC39F\t0x813D\n0xC3A0\t0x813F\n0xC3A1\t0x8C29\n0xC3A2\t0x8292\n0xC3A3\t0x832B\n0xC3A4\t0x76F2\n0xC3A5\t0x6C13\n0xC3A6\t0x5FD9\n0xC3A7\t0x83BD\n0xC3A8\t0x732B\n0xC3A9\t0x8305\n0xC3AA\t0x951A\n0xC3AB\t0x6BDB\n0xC3AC\t0x77DB\n0xC3AD\t0x94C6\n0xC3AE\t0x536F\n0xC3AF\t0x8302\n0xC3B0\t0x5192\n0xC3B1\t0x5E3D\n0xC3B2\t0x8C8C\n0xC3B3\t0x8D38\n0xC3B4\t0x4E48\n0xC3B5\t0x73AB\n0xC3B6\t0x679A\n0xC3B7\t0x6885\n0xC3B8\t0x9176\n0xC3B9\t0x9709\n0xC3BA\t0x7164\n0xC3BB\t0x6CA1\n0xC3BC\t0x7709\n0xC3BD\t0x5A92\n0xC3BE\t0x9541\n0xC3BF\t0x6BCF\n0xC3C0\t0x7F8E\n0xC3C1\t0x6627\n0xC3C2\t0x5BD0\n0xC3C3\t0x59B9\n0xC3C4\t0x5A9A\n0xC3C5\t0x95E8\n0xC3C6\t0x95F7\n0xC3C7\t0x4EEC\n0xC3C8\t0x840C\n0xC3C9\t0x8499\n0xC3CA\t0x6AAC\n0xC3CB\t0x76DF\n0xC3CC\t0x9530\n0xC3CD\t0x731B\n0xC3CE\t0x68A6\n0xC3CF\t0x5B5F\n0xC3D0\t0x772F\n0xC3D1\t0x919A\n0xC3D2\t0x9761\n0xC3D3\t0x7CDC\n0xC3D4\t0x8FF7\n0xC3D5\t0x8C1C\n0xC3D6\t0x5F25\n0xC3D7\t0x7C73\n0xC3D8\t0x79D8\n0xC3D9\t0x89C5\n0xC3DA\t0x6CCC\n0xC3DB\t0x871C\n0xC3DC\t0x5BC6\n0xC3DD\t0x5E42\n0xC3DE\t0x68C9\n0xC3DF\t0x7720\n0xC3E0\t0x7EF5\n0xC3E1\t0x5195\n0xC3E2\t0x514D\n0xC3E3\t0x52C9\n0xC3E4\t0x5A29\n0xC3E5\t0x7F05\n0xC3E6\t0x9762\n0xC3E7\t0x82D7\n0xC3E8\t0x63CF\n0xC3E9\t0x7784\n0xC3EA\t0x85D0\n0xC3EB\t0x79D2\n0xC3EC\t0x6E3A\n0xC3ED\t0x5E99\n0xC3EE\t0x5999\n0xC3EF\t0x8511\n0xC3F0\t0x706D\n0xC3F1\t0x6C11\n0xC3F2\t0x62BF\n0xC3F3\t0x76BF\n0xC3F4\t0x654F\n0xC3F5\t0x60AF\n0xC3F6\t0x95FD\n0xC3F7\t0x660E\n0xC3F8\t0x879F\n0xC3F9\t0x9E23\n0xC3FA\t0x94ED\n0xC3FB\t0x540D\n0xC3FC\t0x547D\n0xC3FD\t0x8C2C\n0xC3FE\t0x6478\n0xC440\t0x8140\n0xC441\t0x8141\n0xC442\t0x8142\n0xC443\t0x8143\n0xC444\t0x8144\n0xC445\t0x8145\n0xC446\t0x8147\n0xC447\t0x8149\n0xC448\t0x814D\n0xC449\t0x814E\n0xC44A\t0x814F\n0xC44B\t0x8152\n0xC44C\t0x8156\n0xC44D\t0x8157\n0xC44E\t0x8158\n0xC44F\t0x815B\n0xC450\t0x815C\n0xC451\t0x815D\n0xC452\t0x815E\n0xC453\t0x815F\n0xC454\t0x8161\n0xC455\t0x8162\n0xC456\t0x8163\n0xC457\t0x8164\n0xC458\t0x8166\n0xC459\t0x8168\n0xC45A\t0x816A\n0xC45B\t0x816B\n0xC45C\t0x816C\n0xC45D\t0x816F\n0xC45E\t0x8172\n0xC45F\t0x8173\n0xC460\t0x8175\n0xC461\t0x8176\n0xC462\t0x8177\n0xC463\t0x8178\n0xC464\t0x8181\n0xC465\t0x8183\n0xC466\t0x8184\n0xC467\t0x8185\n0xC468\t0x8186\n0xC469\t0x8187\n0xC46A\t0x8189\n0xC46B\t0x818B\n0xC46C\t0x818C\n0xC46D\t0x818D\n0xC46E\t0x818E\n0xC46F\t0x8190\n0xC470\t0x8192\n0xC471\t0x8193\n0xC472\t0x8194\n0xC473\t0x8195\n0xC474\t0x8196\n0xC475\t0x8197\n0xC476\t0x8199\n0xC477\t0x819A\n0xC478\t0x819E\n0xC479\t0x819F\n0xC47A\t0x81A0\n0xC47B\t0x81A1\n0xC47C\t0x81A2\n0xC47D\t0x81A4\n0xC47E\t0x81A5\n0xC480\t0x81A7\n0xC481\t0x81A9\n0xC482\t0x81AB\n0xC483\t0x81AC\n0xC484\t0x81AD\n0xC485\t0x81AE\n0xC486\t0x81AF\n0xC487\t0x81B0\n0xC488\t0x81B1\n0xC489\t0x81B2\n0xC48A\t0x81B4\n0xC48B\t0x81B5\n0xC48C\t0x81B6\n0xC48D\t0x81B7\n0xC48E\t0x81B8\n0xC48F\t0x81B9\n0xC490\t0x81BC\n0xC491\t0x81BD\n0xC492\t0x81BE\n0xC493\t0x81BF\n0xC494\t0x81C4\n0xC495\t0x81C5\n0xC496\t0x81C7\n0xC497\t0x81C8\n0xC498\t0x81C9\n0xC499\t0x81CB\n0xC49A\t0x81CD\n0xC49B\t0x81CE\n0xC49C\t0x81CF\n0xC49D\t0x81D0\n0xC49E\t0x81D1\n0xC49F\t0x81D2\n0xC4A0\t0x81D3\n0xC4A1\t0x6479\n0xC4A2\t0x8611\n0xC4A3\t0x6A21\n0xC4A4\t0x819C\n0xC4A5\t0x78E8\n0xC4A6\t0x6469\n0xC4A7\t0x9B54\n0xC4A8\t0x62B9\n0xC4A9\t0x672B\n0xC4AA\t0x83AB\n0xC4AB\t0x58A8\n0xC4AC\t0x9ED8\n0xC4AD\t0x6CAB\n0xC4AE\t0x6F20\n0xC4AF\t0x5BDE\n0xC4B0\t0x964C\n0xC4B1\t0x8C0B\n0xC4B2\t0x725F\n0xC4B3\t0x67D0\n0xC4B4\t0x62C7\n0xC4B5\t0x7261\n0xC4B6\t0x4EA9\n0xC4B7\t0x59C6\n0xC4B8\t0x6BCD\n0xC4B9\t0x5893\n0xC4BA\t0x66AE\n0xC4BB\t0x5E55\n0xC4BC\t0x52DF\n0xC4BD\t0x6155\n0xC4BE\t0x6728\n0xC4BF\t0x76EE\n0xC4C0\t0x7766\n0xC4C1\t0x7267\n0xC4C2\t0x7A46\n0xC4C3\t0x62FF\n0xC4C4\t0x54EA\n0xC4C5\t0x5450\n0xC4C6\t0x94A0\n0xC4C7\t0x90A3\n0xC4C8\t0x5A1C\n0xC4C9\t0x7EB3\n0xC4CA\t0x6C16\n0xC4CB\t0x4E43\n0xC4CC\t0x5976\n0xC4CD\t0x8010\n0xC4CE\t0x5948\n0xC4CF\t0x5357\n0xC4D0\t0x7537\n0xC4D1\t0x96BE\n0xC4D2\t0x56CA\n0xC4D3\t0x6320\n0xC4D4\t0x8111\n0xC4D5\t0x607C\n0xC4D6\t0x95F9\n0xC4D7\t0x6DD6\n0xC4D8\t0x5462\n0xC4D9\t0x9981\n0xC4DA\t0x5185\n0xC4DB\t0x5AE9\n0xC4DC\t0x80FD\n0xC4DD\t0x59AE\n0xC4DE\t0x9713\n0xC4DF\t0x502A\n0xC4E0\t0x6CE5\n0xC4E1\t0x5C3C\n0xC4E2\t0x62DF\n0xC4E3\t0x4F60\n0xC4E4\t0x533F\n0xC4E5\t0x817B\n0xC4E6\t0x9006\n0xC4E7\t0x6EBA\n0xC4E8\t0x852B\n0xC4E9\t0x62C8\n0xC4EA\t0x5E74\n0xC4EB\t0x78BE\n0xC4EC\t0x64B5\n0xC4ED\t0x637B\n0xC4EE\t0x5FF5\n0xC4EF\t0x5A18\n0xC4F0\t0x917F\n0xC4F1\t0x9E1F\n0xC4F2\t0x5C3F\n0xC4F3\t0x634F\n0xC4F4\t0x8042\n0xC4F5\t0x5B7D\n0xC4F6\t0x556E\n0xC4F7\t0x954A\n0xC4F8\t0x954D\n0xC4F9\t0x6D85\n0xC4FA\t0x60A8\n0xC4FB\t0x67E0\n0xC4FC\t0x72DE\n0xC4FD\t0x51DD\n0xC4FE\t0x5B81\n0xC540\t0x81D4\n0xC541\t0x81D5\n0xC542\t0x81D6\n0xC543\t0x81D7\n0xC544\t0x81D8\n0xC545\t0x81D9\n0xC546\t0x81DA\n0xC547\t0x81DB\n0xC548\t0x81DC\n0xC549\t0x81DD\n0xC54A\t0x81DE\n0xC54B\t0x81DF\n0xC54C\t0x81E0\n0xC54D\t0x81E1\n0xC54E\t0x81E2\n0xC54F\t0x81E4\n0xC550\t0x81E5\n0xC551\t0x81E6\n0xC552\t0x81E8\n0xC553\t0x81E9\n0xC554\t0x81EB\n0xC555\t0x81EE\n0xC556\t0x81EF\n0xC557\t0x81F0\n0xC558\t0x81F1\n0xC559\t0x81F2\n0xC55A\t0x81F5\n0xC55B\t0x81F6\n0xC55C\t0x81F7\n0xC55D\t0x81F8\n0xC55E\t0x81F9\n0xC55F\t0x81FA\n0xC560\t0x81FD\n0xC561\t0x81FF\n0xC562\t0x8203\n0xC563\t0x8207\n0xC564\t0x8208\n0xC565\t0x8209\n0xC566\t0x820A\n0xC567\t0x820B\n0xC568\t0x820E\n0xC569\t0x820F\n0xC56A\t0x8211\n0xC56B\t0x8213\n0xC56C\t0x8215\n0xC56D\t0x8216\n0xC56E\t0x8217\n0xC56F\t0x8218\n0xC570\t0x8219\n0xC571\t0x821A\n0xC572\t0x821D\n0xC573\t0x8220\n0xC574\t0x8224\n0xC575\t0x8225\n0xC576\t0x8226\n0xC577\t0x8227\n0xC578\t0x8229\n0xC579\t0x822E\n0xC57A\t0x8232\n0xC57B\t0x823A\n0xC57C\t0x823C\n0xC57D\t0x823D\n0xC57E\t0x823F\n0xC580\t0x8240\n0xC581\t0x8241\n0xC582\t0x8242\n0xC583\t0x8243\n0xC584\t0x8245\n0xC585\t0x8246\n0xC586\t0x8248\n0xC587\t0x824A\n0xC588\t0x824C\n0xC589\t0x824D\n0xC58A\t0x824E\n0xC58B\t0x8250\n0xC58C\t0x8251\n0xC58D\t0x8252\n0xC58E\t0x8253\n0xC58F\t0x8254\n0xC590\t0x8255\n0xC591\t0x8256\n0xC592\t0x8257\n0xC593\t0x8259\n0xC594\t0x825B\n0xC595\t0x825C\n0xC596\t0x825D\n0xC597\t0x825E\n0xC598\t0x8260\n0xC599\t0x8261\n0xC59A\t0x8262\n0xC59B\t0x8263\n0xC59C\t0x8264\n0xC59D\t0x8265\n0xC59E\t0x8266\n0xC59F\t0x8267\n0xC5A0\t0x8269\n0xC5A1\t0x62E7\n0xC5A2\t0x6CDE\n0xC5A3\t0x725B\n0xC5A4\t0x626D\n0xC5A5\t0x94AE\n0xC5A6\t0x7EBD\n0xC5A7\t0x8113\n0xC5A8\t0x6D53\n0xC5A9\t0x519C\n0xC5AA\t0x5F04\n0xC5AB\t0x5974\n0xC5AC\t0x52AA\n0xC5AD\t0x6012\n0xC5AE\t0x5973\n0xC5AF\t0x6696\n0xC5B0\t0x8650\n0xC5B1\t0x759F\n0xC5B2\t0x632A\n0xC5B3\t0x61E6\n0xC5B4\t0x7CEF\n0xC5B5\t0x8BFA\n0xC5B6\t0x54E6\n0xC5B7\t0x6B27\n0xC5B8\t0x9E25\n0xC5B9\t0x6BB4\n0xC5BA\t0x85D5\n0xC5BB\t0x5455\n0xC5BC\t0x5076\n0xC5BD\t0x6CA4\n0xC5BE\t0x556A\n0xC5BF\t0x8DB4\n0xC5C0\t0x722C\n0xC5C1\t0x5E15\n0xC5C2\t0x6015\n0xC5C3\t0x7436\n0xC5C4\t0x62CD\n0xC5C5\t0x6392\n0xC5C6\t0x724C\n0xC5C7\t0x5F98\n0xC5C8\t0x6E43\n0xC5C9\t0x6D3E\n0xC5CA\t0x6500\n0xC5CB\t0x6F58\n0xC5CC\t0x76D8\n0xC5CD\t0x78D0\n0xC5CE\t0x76FC\n0xC5CF\t0x7554\n0xC5D0\t0x5224\n0xC5D1\t0x53DB\n0xC5D2\t0x4E53\n0xC5D3\t0x5E9E\n0xC5D4\t0x65C1\n0xC5D5\t0x802A\n0xC5D6\t0x80D6\n0xC5D7\t0x629B\n0xC5D8\t0x5486\n0xC5D9\t0x5228\n0xC5DA\t0x70AE\n0xC5DB\t0x888D\n0xC5DC\t0x8DD1\n0xC5DD\t0x6CE1\n0xC5DE\t0x5478\n0xC5DF\t0x80DA\n0xC5E0\t0x57F9\n0xC5E1\t0x88F4\n0xC5E2\t0x8D54\n0xC5E3\t0x966A\n0xC5E4\t0x914D\n0xC5E5\t0x4F69\n0xC5E6\t0x6C9B\n0xC5E7\t0x55B7\n0xC5E8\t0x76C6\n0xC5E9\t0x7830\n0xC5EA\t0x62A8\n0xC5EB\t0x70F9\n0xC5EC\t0x6F8E\n0xC5ED\t0x5F6D\n0xC5EE\t0x84EC\n0xC5EF\t0x68DA\n0xC5F0\t0x787C\n0xC5F1\t0x7BF7\n0xC5F2\t0x81A8\n0xC5F3\t0x670B\n0xC5F4\t0x9E4F\n0xC5F5\t0x6367\n0xC5F6\t0x78B0\n0xC5F7\t0x576F\n0xC5F8\t0x7812\n0xC5F9\t0x9739\n0xC5FA\t0x6279\n0xC5FB\t0x62AB\n0xC5FC\t0x5288\n0xC5FD\t0x7435\n0xC5FE\t0x6BD7\n0xC640\t0x826A\n0xC641\t0x826B\n0xC642\t0x826C\n0xC643\t0x826D\n0xC644\t0x8271\n0xC645\t0x8275\n0xC646\t0x8276\n0xC647\t0x8277\n0xC648\t0x8278\n0xC649\t0x827B\n0xC64A\t0x827C\n0xC64B\t0x8280\n0xC64C\t0x8281\n0xC64D\t0x8283\n0xC64E\t0x8285\n0xC64F\t0x8286\n0xC650\t0x8287\n0xC651\t0x8289\n0xC652\t0x828C\n0xC653\t0x8290\n0xC654\t0x8293\n0xC655\t0x8294\n0xC656\t0x8295\n0xC657\t0x8296\n0xC658\t0x829A\n0xC659\t0x829B\n0xC65A\t0x829E\n0xC65B\t0x82A0\n0xC65C\t0x82A2\n0xC65D\t0x82A3\n0xC65E\t0x82A7\n0xC65F\t0x82B2\n0xC660\t0x82B5\n0xC661\t0x82B6\n0xC662\t0x82BA\n0xC663\t0x82BB\n0xC664\t0x82BC\n0xC665\t0x82BF\n0xC666\t0x82C0\n0xC667\t0x82C2\n0xC668\t0x82C3\n0xC669\t0x82C5\n0xC66A\t0x82C6\n0xC66B\t0x82C9\n0xC66C\t0x82D0\n0xC66D\t0x82D6\n0xC66E\t0x82D9\n0xC66F\t0x82DA\n0xC670\t0x82DD\n0xC671\t0x82E2\n0xC672\t0x82E7\n0xC673\t0x82E8\n0xC674\t0x82E9\n0xC675\t0x82EA\n0xC676\t0x82EC\n0xC677\t0x82ED\n0xC678\t0x82EE\n0xC679\t0x82F0\n0xC67A\t0x82F2\n0xC67B\t0x82F3\n0xC67C\t0x82F5\n0xC67D\t0x82F6\n0xC67E\t0x82F8\n0xC680\t0x82FA\n0xC681\t0x82FC\n0xC682\t0x82FD\n0xC683\t0x82FE\n0xC684\t0x82FF\n0xC685\t0x8300\n0xC686\t0x830A\n0xC687\t0x830B\n0xC688\t0x830D\n0xC689\t0x8310\n0xC68A\t0x8312\n0xC68B\t0x8313\n0xC68C\t0x8316\n0xC68D\t0x8318\n0xC68E\t0x8319\n0xC68F\t0x831D\n0xC690\t0x831E\n0xC691\t0x831F\n0xC692\t0x8320\n0xC693\t0x8321\n0xC694\t0x8322\n0xC695\t0x8323\n0xC696\t0x8324\n0xC697\t0x8325\n0xC698\t0x8326\n0xC699\t0x8329\n0xC69A\t0x832A\n0xC69B\t0x832E\n0xC69C\t0x8330\n0xC69D\t0x8332\n0xC69E\t0x8337\n0xC69F\t0x833B\n0xC6A0\t0x833D\n0xC6A1\t0x5564\n0xC6A2\t0x813E\n0xC6A3\t0x75B2\n0xC6A4\t0x76AE\n0xC6A5\t0x5339\n0xC6A6\t0x75DE\n0xC6A7\t0x50FB\n0xC6A8\t0x5C41\n0xC6A9\t0x8B6C\n0xC6AA\t0x7BC7\n0xC6AB\t0x504F\n0xC6AC\t0x7247\n0xC6AD\t0x9A97\n0xC6AE\t0x98D8\n0xC6AF\t0x6F02\n0xC6B0\t0x74E2\n0xC6B1\t0x7968\n0xC6B2\t0x6487\n0xC6B3\t0x77A5\n0xC6B4\t0x62FC\n0xC6B5\t0x9891\n0xC6B6\t0x8D2B\n0xC6B7\t0x54C1\n0xC6B8\t0x8058\n0xC6B9\t0x4E52\n0xC6BA\t0x576A\n0xC6BB\t0x82F9\n0xC6BC\t0x840D\n0xC6BD\t0x5E73\n0xC6BE\t0x51ED\n0xC6BF\t0x74F6\n0xC6C0\t0x8BC4\n0xC6C1\t0x5C4F\n0xC6C2\t0x5761\n0xC6C3\t0x6CFC\n0xC6C4\t0x9887\n0xC6C5\t0x5A46\n0xC6C6\t0x7834\n0xC6C7\t0x9B44\n0xC6C8\t0x8FEB\n0xC6C9\t0x7C95\n0xC6CA\t0x5256\n0xC6CB\t0x6251\n0xC6CC\t0x94FA\n0xC6CD\t0x4EC6\n0xC6CE\t0x8386\n0xC6CF\t0x8461\n0xC6D0\t0x83E9\n0xC6D1\t0x84B2\n0xC6D2\t0x57D4\n0xC6D3\t0x6734\n0xC6D4\t0x5703\n0xC6D5\t0x666E\n0xC6D6\t0x6D66\n0xC6D7\t0x8C31\n0xC6D8\t0x66DD\n0xC6D9\t0x7011\n0xC6DA\t0x671F\n0xC6DB\t0x6B3A\n0xC6DC\t0x6816\n0xC6DD\t0x621A\n0xC6DE\t0x59BB\n0xC6DF\t0x4E03\n0xC6E0\t0x51C4\n0xC6E1\t0x6F06\n0xC6E2\t0x67D2\n0xC6E3\t0x6C8F\n0xC6E4\t0x5176\n0xC6E5\t0x68CB\n0xC6E6\t0x5947\n0xC6E7\t0x6B67\n0xC6E8\t0x7566\n0xC6E9\t0x5D0E\n0xC6EA\t0x8110\n0xC6EB\t0x9F50\n0xC6EC\t0x65D7\n0xC6ED\t0x7948\n0xC6EE\t0x7941\n0xC6EF\t0x9A91\n0xC6F0\t0x8D77\n0xC6F1\t0x5C82\n0xC6F2\t0x4E5E\n0xC6F3\t0x4F01\n0xC6F4\t0x542F\n0xC6F5\t0x5951\n0xC6F6\t0x780C\n0xC6F7\t0x5668\n0xC6F8\t0x6C14\n0xC6F9\t0x8FC4\n0xC6FA\t0x5F03\n0xC6FB\t0x6C7D\n0xC6FC\t0x6CE3\n0xC6FD\t0x8BAB\n0xC6FE\t0x6390\n0xC740\t0x833E\n0xC741\t0x833F\n0xC742\t0x8341\n0xC743\t0x8342\n0xC744\t0x8344\n0xC745\t0x8345\n0xC746\t0x8348\n0xC747\t0x834A\n0xC748\t0x834B\n0xC749\t0x834C\n0xC74A\t0x834D\n0xC74B\t0x834E\n0xC74C\t0x8353\n0xC74D\t0x8355\n0xC74E\t0x8356\n0xC74F\t0x8357\n0xC750\t0x8358\n0xC751\t0x8359\n0xC752\t0x835D\n0xC753\t0x8362\n0xC754\t0x8370\n0xC755\t0x8371\n0xC756\t0x8372\n0xC757\t0x8373\n0xC758\t0x8374\n0xC759\t0x8375\n0xC75A\t0x8376\n0xC75B\t0x8379\n0xC75C\t0x837A\n0xC75D\t0x837E\n0xC75E\t0x837F\n0xC75F\t0x8380\n0xC760\t0x8381\n0xC761\t0x8382\n0xC762\t0x8383\n0xC763\t0x8384\n0xC764\t0x8387\n0xC765\t0x8388\n0xC766\t0x838A\n0xC767\t0x838B\n0xC768\t0x838C\n0xC769\t0x838D\n0xC76A\t0x838F\n0xC76B\t0x8390\n0xC76C\t0x8391\n0xC76D\t0x8394\n0xC76E\t0x8395\n0xC76F\t0x8396\n0xC770\t0x8397\n0xC771\t0x8399\n0xC772\t0x839A\n0xC773\t0x839D\n0xC774\t0x839F\n0xC775\t0x83A1\n0xC776\t0x83A2\n0xC777\t0x83A3\n0xC778\t0x83A4\n0xC779\t0x83A5\n0xC77A\t0x83A6\n0xC77B\t0x83A7\n0xC77C\t0x83AC\n0xC77D\t0x83AD\n0xC77E\t0x83AE\n0xC780\t0x83AF\n0xC781\t0x83B5\n0xC782\t0x83BB\n0xC783\t0x83BE\n0xC784\t0x83BF\n0xC785\t0x83C2\n0xC786\t0x83C3\n0xC787\t0x83C4\n0xC788\t0x83C6\n0xC789\t0x83C8\n0xC78A\t0x83C9\n0xC78B\t0x83CB\n0xC78C\t0x83CD\n0xC78D\t0x83CE\n0xC78E\t0x83D0\n0xC78F\t0x83D1\n0xC790\t0x83D2\n0xC791\t0x83D3\n0xC792\t0x83D5\n0xC793\t0x83D7\n0xC794\t0x83D9\n0xC795\t0x83DA\n0xC796\t0x83DB\n0xC797\t0x83DE\n0xC798\t0x83E2\n0xC799\t0x83E3\n0xC79A\t0x83E4\n0xC79B\t0x83E6\n0xC79C\t0x83E7\n0xC79D\t0x83E8\n0xC79E\t0x83EB\n0xC79F\t0x83EC\n0xC7A0\t0x83ED\n0xC7A1\t0x6070\n0xC7A2\t0x6D3D\n0xC7A3\t0x7275\n0xC7A4\t0x6266\n0xC7A5\t0x948E\n0xC7A6\t0x94C5\n0xC7A7\t0x5343\n0xC7A8\t0x8FC1\n0xC7A9\t0x7B7E\n0xC7AA\t0x4EDF\n0xC7AB\t0x8C26\n0xC7AC\t0x4E7E\n0xC7AD\t0x9ED4\n0xC7AE\t0x94B1\n0xC7AF\t0x94B3\n0xC7B0\t0x524D\n0xC7B1\t0x6F5C\n0xC7B2\t0x9063\n0xC7B3\t0x6D45\n0xC7B4\t0x8C34\n0xC7B5\t0x5811\n0xC7B6\t0x5D4C\n0xC7B7\t0x6B20\n0xC7B8\t0x6B49\n0xC7B9\t0x67AA\n0xC7BA\t0x545B\n0xC7BB\t0x8154\n0xC7BC\t0x7F8C\n0xC7BD\t0x5899\n0xC7BE\t0x8537\n0xC7BF\t0x5F3A\n0xC7C0\t0x62A2\n0xC7C1\t0x6A47\n0xC7C2\t0x9539\n0xC7C3\t0x6572\n0xC7C4\t0x6084\n0xC7C5\t0x6865\n0xC7C6\t0x77A7\n0xC7C7\t0x4E54\n0xC7C8\t0x4FA8\n0xC7C9\t0x5DE7\n0xC7CA\t0x9798\n0xC7CB\t0x64AC\n0xC7CC\t0x7FD8\n0xC7CD\t0x5CED\n0xC7CE\t0x4FCF\n0xC7CF\t0x7A8D\n0xC7D0\t0x5207\n0xC7D1\t0x8304\n0xC7D2\t0x4E14\n0xC7D3\t0x602F\n0xC7D4\t0x7A83\n0xC7D5\t0x94A6\n0xC7D6\t0x4FB5\n0xC7D7\t0x4EB2\n0xC7D8\t0x79E6\n0xC7D9\t0x7434\n0xC7DA\t0x52E4\n0xC7DB\t0x82B9\n0xC7DC\t0x64D2\n0xC7DD\t0x79BD\n0xC7DE\t0x5BDD\n0xC7DF\t0x6C81\n0xC7E0\t0x9752\n0xC7E1\t0x8F7B\n0xC7E2\t0x6C22\n0xC7E3\t0x503E\n0xC7E4\t0x537F\n0xC7E5\t0x6E05\n0xC7E6\t0x64CE\n0xC7E7\t0x6674\n0xC7E8\t0x6C30\n0xC7E9\t0x60C5\n0xC7EA\t0x9877\n0xC7EB\t0x8BF7\n0xC7EC\t0x5E86\n0xC7ED\t0x743C\n0xC7EE\t0x7A77\n0xC7EF\t0x79CB\n0xC7F0\t0x4E18\n0xC7F1\t0x90B1\n0xC7F2\t0x7403\n0xC7F3\t0x6C42\n0xC7F4\t0x56DA\n0xC7F5\t0x914B\n0xC7F6\t0x6CC5\n0xC7F7\t0x8D8B\n0xC7F8\t0x533A\n0xC7F9\t0x86C6\n0xC7FA\t0x66F2\n0xC7FB\t0x8EAF\n0xC7FC\t0x5C48\n0xC7FD\t0x9A71\n0xC7FE\t0x6E20\n0xC840\t0x83EE\n0xC841\t0x83EF\n0xC842\t0x83F3\n0xC843\t0x83F4\n0xC844\t0x83F5\n0xC845\t0x83F6\n0xC846\t0x83F7\n0xC847\t0x83FA\n0xC848\t0x83FB\n0xC849\t0x83FC\n0xC84A\t0x83FE\n0xC84B\t0x83FF\n0xC84C\t0x8400\n0xC84D\t0x8402\n0xC84E\t0x8405\n0xC84F\t0x8407\n0xC850\t0x8408\n0xC851\t0x8409\n0xC852\t0x840A\n0xC853\t0x8410\n0xC854\t0x8412\n0xC855\t0x8413\n0xC856\t0x8414\n0xC857\t0x8415\n0xC858\t0x8416\n0xC859\t0x8417\n0xC85A\t0x8419\n0xC85B\t0x841A\n0xC85C\t0x841B\n0xC85D\t0x841E\n0xC85E\t0x841F\n0xC85F\t0x8420\n0xC860\t0x8421\n0xC861\t0x8422\n0xC862\t0x8423\n0xC863\t0x8429\n0xC864\t0x842A\n0xC865\t0x842B\n0xC866\t0x842C\n0xC867\t0x842D\n0xC868\t0x842E\n0xC869\t0x842F\n0xC86A\t0x8430\n0xC86B\t0x8432\n0xC86C\t0x8433\n0xC86D\t0x8434\n0xC86E\t0x8435\n0xC86F\t0x8436\n0xC870\t0x8437\n0xC871\t0x8439\n0xC872\t0x843A\n0xC873\t0x843B\n0xC874\t0x843E\n0xC875\t0x843F\n0xC876\t0x8440\n0xC877\t0x8441\n0xC878\t0x8442\n0xC879\t0x8443\n0xC87A\t0x8444\n0xC87B\t0x8445\n0xC87C\t0x8447\n0xC87D\t0x8448\n0xC87E\t0x8449\n0xC880\t0x844A\n0xC881\t0x844B\n0xC882\t0x844C\n0xC883\t0x844D\n0xC884\t0x844E\n0xC885\t0x844F\n0xC886\t0x8450\n0xC887\t0x8452\n0xC888\t0x8453\n0xC889\t0x8454\n0xC88A\t0x8455\n0xC88B\t0x8456\n0xC88C\t0x8458\n0xC88D\t0x845D\n0xC88E\t0x845E\n0xC88F\t0x845F\n0xC890\t0x8460\n0xC891\t0x8462\n0xC892\t0x8464\n0xC893\t0x8465\n0xC894\t0x8466\n0xC895\t0x8467\n0xC896\t0x8468\n0xC897\t0x846A\n0xC898\t0x846E\n0xC899\t0x846F\n0xC89A\t0x8470\n0xC89B\t0x8472\n0xC89C\t0x8474\n0xC89D\t0x8477\n0xC89E\t0x8479\n0xC89F\t0x847B\n0xC8A0\t0x847C\n0xC8A1\t0x53D6\n0xC8A2\t0x5A36\n0xC8A3\t0x9F8B\n0xC8A4\t0x8DA3\n0xC8A5\t0x53BB\n0xC8A6\t0x5708\n0xC8A7\t0x98A7\n0xC8A8\t0x6743\n0xC8A9\t0x919B\n0xC8AA\t0x6CC9\n0xC8AB\t0x5168\n0xC8AC\t0x75CA\n0xC8AD\t0x62F3\n0xC8AE\t0x72AC\n0xC8AF\t0x5238\n0xC8B0\t0x529D\n0xC8B1\t0x7F3A\n0xC8B2\t0x7094\n0xC8B3\t0x7638\n0xC8B4\t0x5374\n0xC8B5\t0x9E4A\n0xC8B6\t0x69B7\n0xC8B7\t0x786E\n0xC8B8\t0x96C0\n0xC8B9\t0x88D9\n0xC8BA\t0x7FA4\n0xC8BB\t0x7136\n0xC8BC\t0x71C3\n0xC8BD\t0x5189\n0xC8BE\t0x67D3\n0xC8BF\t0x74E4\n0xC8C0\t0x58E4\n0xC8C1\t0x6518\n0xC8C2\t0x56B7\n0xC8C3\t0x8BA9\n0xC8C4\t0x9976\n0xC8C5\t0x6270\n0xC8C6\t0x7ED5\n0xC8C7\t0x60F9\n0xC8C8\t0x70ED\n0xC8C9\t0x58EC\n0xC8CA\t0x4EC1\n0xC8CB\t0x4EBA\n0xC8CC\t0x5FCD\n0xC8CD\t0x97E7\n0xC8CE\t0x4EFB\n0xC8CF\t0x8BA4\n0xC8D0\t0x5203\n0xC8D1\t0x598A\n0xC8D2\t0x7EAB\n0xC8D3\t0x6254\n0xC8D4\t0x4ECD\n0xC8D5\t0x65E5\n0xC8D6\t0x620E\n0xC8D7\t0x8338\n0xC8D8\t0x84C9\n0xC8D9\t0x8363\n0xC8DA\t0x878D\n0xC8DB\t0x7194\n0xC8DC\t0x6EB6\n0xC8DD\t0x5BB9\n0xC8DE\t0x7ED2\n0xC8DF\t0x5197\n0xC8E0\t0x63C9\n0xC8E1\t0x67D4\n0xC8E2\t0x8089\n0xC8E3\t0x8339\n0xC8E4\t0x8815\n0xC8E5\t0x5112\n0xC8E6\t0x5B7A\n0xC8E7\t0x5982\n0xC8E8\t0x8FB1\n0xC8E9\t0x4E73\n0xC8EA\t0x6C5D\n0xC8EB\t0x5165\n0xC8EC\t0x8925\n0xC8ED\t0x8F6F\n0xC8EE\t0x962E\n0xC8EF\t0x854A\n0xC8F0\t0x745E\n0xC8F1\t0x9510\n0xC8F2\t0x95F0\n0xC8F3\t0x6DA6\n0xC8F4\t0x82E5\n0xC8F5\t0x5F31\n0xC8F6\t0x6492\n0xC8F7\t0x6D12\n0xC8F8\t0x8428\n0xC8F9\t0x816E\n0xC8FA\t0x9CC3\n0xC8FB\t0x585E\n0xC8FC\t0x8D5B\n0xC8FD\t0x4E09\n0xC8FE\t0x53C1\n0xC940\t0x847D\n0xC941\t0x847E\n0xC942\t0x847F\n0xC943\t0x8480\n0xC944\t0x8481\n0xC945\t0x8483\n0xC946\t0x8484\n0xC947\t0x8485\n0xC948\t0x8486\n0xC949\t0x848A\n0xC94A\t0x848D\n0xC94B\t0x848F\n0xC94C\t0x8490\n0xC94D\t0x8491\n0xC94E\t0x8492\n0xC94F\t0x8493\n0xC950\t0x8494\n0xC951\t0x8495\n0xC952\t0x8496\n0xC953\t0x8498\n0xC954\t0x849A\n0xC955\t0x849B\n0xC956\t0x849D\n0xC957\t0x849E\n0xC958\t0x849F\n0xC959\t0x84A0\n0xC95A\t0x84A2\n0xC95B\t0x84A3\n0xC95C\t0x84A4\n0xC95D\t0x84A5\n0xC95E\t0x84A6\n0xC95F\t0x84A7\n0xC960\t0x84A8\n0xC961\t0x84A9\n0xC962\t0x84AA\n0xC963\t0x84AB\n0xC964\t0x84AC\n0xC965\t0x84AD\n0xC966\t0x84AE\n0xC967\t0x84B0\n0xC968\t0x84B1\n0xC969\t0x84B3\n0xC96A\t0x84B5\n0xC96B\t0x84B6\n0xC96C\t0x84B7\n0xC96D\t0x84BB\n0xC96E\t0x84BC\n0xC96F\t0x84BE\n0xC970\t0x84C0\n0xC971\t0x84C2\n0xC972\t0x84C3\n0xC973\t0x84C5\n0xC974\t0x84C6\n0xC975\t0x84C7\n0xC976\t0x84C8\n0xC977\t0x84CB\n0xC978\t0x84CC\n0xC979\t0x84CE\n0xC97A\t0x84CF\n0xC97B\t0x84D2\n0xC97C\t0x84D4\n0xC97D\t0x84D5\n0xC97E\t0x84D7\n0xC980\t0x84D8\n0xC981\t0x84D9\n0xC982\t0x84DA\n0xC983\t0x84DB\n0xC984\t0x84DC\n0xC985\t0x84DE\n0xC986\t0x84E1\n0xC987\t0x84E2\n0xC988\t0x84E4\n0xC989\t0x84E7\n0xC98A\t0x84E8\n0xC98B\t0x84E9\n0xC98C\t0x84EA\n0xC98D\t0x84EB\n0xC98E\t0x84ED\n0xC98F\t0x84EE\n0xC990\t0x84EF\n0xC991\t0x84F1\n0xC992\t0x84F2\n0xC993\t0x84F3\n0xC994\t0x84F4\n0xC995\t0x84F5\n0xC996\t0x84F6\n0xC997\t0x84F7\n0xC998\t0x84F8\n0xC999\t0x84F9\n0xC99A\t0x84FA\n0xC99B\t0x84FB\n0xC99C\t0x84FD\n0xC99D\t0x84FE\n0xC99E\t0x8500\n0xC99F\t0x8501\n0xC9A0\t0x8502\n0xC9A1\t0x4F1E\n0xC9A2\t0x6563\n0xC9A3\t0x6851\n0xC9A4\t0x55D3\n0xC9A5\t0x4E27\n0xC9A6\t0x6414\n0xC9A7\t0x9A9A\n0xC9A8\t0x626B\n0xC9A9\t0x5AC2\n0xC9AA\t0x745F\n0xC9AB\t0x8272\n0xC9AC\t0x6DA9\n0xC9AD\t0x68EE\n0xC9AE\t0x50E7\n0xC9AF\t0x838E\n0xC9B0\t0x7802\n0xC9B1\t0x6740\n0xC9B2\t0x5239\n0xC9B3\t0x6C99\n0xC9B4\t0x7EB1\n0xC9B5\t0x50BB\n0xC9B6\t0x5565\n0xC9B7\t0x715E\n0xC9B8\t0x7B5B\n0xC9B9\t0x6652\n0xC9BA\t0x73CA\n0xC9BB\t0x82EB\n0xC9BC\t0x6749\n0xC9BD\t0x5C71\n0xC9BE\t0x5220\n0xC9BF\t0x717D\n0xC9C0\t0x886B\n0xC9C1\t0x95EA\n0xC9C2\t0x9655\n0xC9C3\t0x64C5\n0xC9C4\t0x8D61\n0xC9C5\t0x81B3\n0xC9C6\t0x5584\n0xC9C7\t0x6C55\n0xC9C8\t0x6247\n0xC9C9\t0x7F2E\n0xC9CA\t0x5892\n0xC9CB\t0x4F24\n0xC9CC\t0x5546\n0xC9CD\t0x8D4F\n0xC9CE\t0x664C\n0xC9CF\t0x4E0A\n0xC9D0\t0x5C1A\n0xC9D1\t0x88F3\n0xC9D2\t0x68A2\n0xC9D3\t0x634E\n0xC9D4\t0x7A0D\n0xC9D5\t0x70E7\n0xC9D6\t0x828D\n0xC9D7\t0x52FA\n0xC9D8\t0x97F6\n0xC9D9\t0x5C11\n0xC9DA\t0x54E8\n0xC9DB\t0x90B5\n0xC9DC\t0x7ECD\n0xC9DD\t0x5962\n0xC9DE\t0x8D4A\n0xC9DF\t0x86C7\n0xC9E0\t0x820C\n0xC9E1\t0x820D\n0xC9E2\t0x8D66\n0xC9E3\t0x6444\n0xC9E4\t0x5C04\n0xC9E5\t0x6151\n0xC9E6\t0x6D89\n0xC9E7\t0x793E\n0xC9E8\t0x8BBE\n0xC9E9\t0x7837\n0xC9EA\t0x7533\n0xC9EB\t0x547B\n0xC9EC\t0x4F38\n0xC9ED\t0x8EAB\n0xC9EE\t0x6DF1\n0xC9EF\t0x5A20\n0xC9F0\t0x7EC5\n0xC9F1\t0x795E\n0xC9F2\t0x6C88\n0xC9F3\t0x5BA1\n0xC9F4\t0x5A76\n0xC9F5\t0x751A\n0xC9F6\t0x80BE\n0xC9F7\t0x614E\n0xC9F8\t0x6E17\n0xC9F9\t0x58F0\n0xC9FA\t0x751F\n0xC9FB\t0x7525\n0xC9FC\t0x7272\n0xC9FD\t0x5347\n0xC9FE\t0x7EF3\n0xCA40\t0x8503\n0xCA41\t0x8504\n0xCA42\t0x8505\n0xCA43\t0x8506\n0xCA44\t0x8507\n0xCA45\t0x8508\n0xCA46\t0x8509\n0xCA47\t0x850A\n0xCA48\t0x850B\n0xCA49\t0x850D\n0xCA4A\t0x850E\n0xCA4B\t0x850F\n0xCA4C\t0x8510\n0xCA4D\t0x8512\n0xCA4E\t0x8514\n0xCA4F\t0x8515\n0xCA50\t0x8516\n0xCA51\t0x8518\n0xCA52\t0x8519\n0xCA53\t0x851B\n0xCA54\t0x851C\n0xCA55\t0x851D\n0xCA56\t0x851E\n0xCA57\t0x8520\n0xCA58\t0x8522\n0xCA59\t0x8523\n0xCA5A\t0x8524\n0xCA5B\t0x8525\n0xCA5C\t0x8526\n0xCA5D\t0x8527\n0xCA5E\t0x8528\n0xCA5F\t0x8529\n0xCA60\t0x852A\n0xCA61\t0x852D\n0xCA62\t0x852E\n0xCA63\t0x852F\n0xCA64\t0x8530\n0xCA65\t0x8531\n0xCA66\t0x8532\n0xCA67\t0x8533\n0xCA68\t0x8534\n0xCA69\t0x8535\n0xCA6A\t0x8536\n0xCA6B\t0x853E\n0xCA6C\t0x853F\n0xCA6D\t0x8540\n0xCA6E\t0x8541\n0xCA6F\t0x8542\n0xCA70\t0x8544\n0xCA71\t0x8545\n0xCA72\t0x8546\n0xCA73\t0x8547\n0xCA74\t0x854B\n0xCA75\t0x854C\n0xCA76\t0x854D\n0xCA77\t0x854E\n0xCA78\t0x854F\n0xCA79\t0x8550\n0xCA7A\t0x8551\n0xCA7B\t0x8552\n0xCA7C\t0x8553\n0xCA7D\t0x8554\n0xCA7E\t0x8555\n0xCA80\t0x8557\n0xCA81\t0x8558\n0xCA82\t0x855A\n0xCA83\t0x855B\n0xCA84\t0x855C\n0xCA85\t0x855D\n0xCA86\t0x855F\n0xCA87\t0x8560\n0xCA88\t0x8561\n0xCA89\t0x8562\n0xCA8A\t0x8563\n0xCA8B\t0x8565\n0xCA8C\t0x8566\n0xCA8D\t0x8567\n0xCA8E\t0x8569\n0xCA8F\t0x856A\n0xCA90\t0x856B\n0xCA91\t0x856C\n0xCA92\t0x856D\n0xCA93\t0x856E\n0xCA94\t0x856F\n0xCA95\t0x8570\n0xCA96\t0x8571\n0xCA97\t0x8573\n0xCA98\t0x8575\n0xCA99\t0x8576\n0xCA9A\t0x8577\n0xCA9B\t0x8578\n0xCA9C\t0x857C\n0xCA9D\t0x857D\n0xCA9E\t0x857F\n0xCA9F\t0x8580\n0xCAA0\t0x8581\n0xCAA1\t0x7701\n0xCAA2\t0x76DB\n0xCAA3\t0x5269\n0xCAA4\t0x80DC\n0xCAA5\t0x5723\n0xCAA6\t0x5E08\n0xCAA7\t0x5931\n0xCAA8\t0x72EE\n0xCAA9\t0x65BD\n0xCAAA\t0x6E7F\n0xCAAB\t0x8BD7\n0xCAAC\t0x5C38\n0xCAAD\t0x8671\n0xCAAE\t0x5341\n0xCAAF\t0x77F3\n0xCAB0\t0x62FE\n0xCAB1\t0x65F6\n0xCAB2\t0x4EC0\n0xCAB3\t0x98DF\n0xCAB4\t0x8680\n0xCAB5\t0x5B9E\n0xCAB6\t0x8BC6\n0xCAB7\t0x53F2\n0xCAB8\t0x77E2\n0xCAB9\t0x4F7F\n0xCABA\t0x5C4E\n0xCABB\t0x9A76\n0xCABC\t0x59CB\n0xCABD\t0x5F0F\n0xCABE\t0x793A\n0xCABF\t0x58EB\n0xCAC0\t0x4E16\n0xCAC1\t0x67FF\n0xCAC2\t0x4E8B\n0xCAC3\t0x62ED\n0xCAC4\t0x8A93\n0xCAC5\t0x901D\n0xCAC6\t0x52BF\n0xCAC7\t0x662F\n0xCAC8\t0x55DC\n0xCAC9\t0x566C\n0xCACA\t0x9002\n0xCACB\t0x4ED5\n0xCACC\t0x4F8D\n0xCACD\t0x91CA\n0xCACE\t0x9970\n0xCACF\t0x6C0F\n0xCAD0\t0x5E02\n0xCAD1\t0x6043\n0xCAD2\t0x5BA4\n0xCAD3\t0x89C6\n0xCAD4\t0x8BD5\n0xCAD5\t0x6536\n0xCAD6\t0x624B\n0xCAD7\t0x9996\n0xCAD8\t0x5B88\n0xCAD9\t0x5BFF\n0xCADA\t0x6388\n0xCADB\t0x552E\n0xCADC\t0x53D7\n0xCADD\t0x7626\n0xCADE\t0x517D\n0xCADF\t0x852C\n0xCAE0\t0x67A2\n0xCAE1\t0x68B3\n0xCAE2\t0x6B8A\n0xCAE3\t0x6292\n0xCAE4\t0x8F93\n0xCAE5\t0x53D4\n0xCAE6\t0x8212\n0xCAE7\t0x6DD1\n0xCAE8\t0x758F\n0xCAE9\t0x4E66\n0xCAEA\t0x8D4E\n0xCAEB\t0x5B70\n0xCAEC\t0x719F\n0xCAED\t0x85AF\n0xCAEE\t0x6691\n0xCAEF\t0x66D9\n0xCAF0\t0x7F72\n0xCAF1\t0x8700\n0xCAF2\t0x9ECD\n0xCAF3\t0x9F20\n0xCAF4\t0x5C5E\n0xCAF5\t0x672F\n0xCAF6\t0x8FF0\n0xCAF7\t0x6811\n0xCAF8\t0x675F\n0xCAF9\t0x620D\n0xCAFA\t0x7AD6\n0xCAFB\t0x5885\n0xCAFC\t0x5EB6\n0xCAFD\t0x6570\n0xCAFE\t0x6F31\n0xCB40\t0x8582\n0xCB41\t0x8583\n0xCB42\t0x8586\n0xCB43\t0x8588\n0xCB44\t0x8589\n0xCB45\t0x858A\n0xCB46\t0x858B\n0xCB47\t0x858C\n0xCB48\t0x858D\n0xCB49\t0x858E\n0xCB4A\t0x8590\n0xCB4B\t0x8591\n0xCB4C\t0x8592\n0xCB4D\t0x8593\n0xCB4E\t0x8594\n0xCB4F\t0x8595\n0xCB50\t0x8596\n0xCB51\t0x8597\n0xCB52\t0x8598\n0xCB53\t0x8599\n0xCB54\t0x859A\n0xCB55\t0x859D\n0xCB56\t0x859E\n0xCB57\t0x859F\n0xCB58\t0x85A0\n0xCB59\t0x85A1\n0xCB5A\t0x85A2\n0xCB5B\t0x85A3\n0xCB5C\t0x85A5\n0xCB5D\t0x85A6\n0xCB5E\t0x85A7\n0xCB5F\t0x85A9\n0xCB60\t0x85AB\n0xCB61\t0x85AC\n0xCB62\t0x85AD\n0xCB63\t0x85B1\n0xCB64\t0x85B2\n0xCB65\t0x85B3\n0xCB66\t0x85B4\n0xCB67\t0x85B5\n0xCB68\t0x85B6\n0xCB69\t0x85B8\n0xCB6A\t0x85BA\n0xCB6B\t0x85BB\n0xCB6C\t0x85BC\n0xCB6D\t0x85BD\n0xCB6E\t0x85BE\n0xCB6F\t0x85BF\n0xCB70\t0x85C0\n0xCB71\t0x85C2\n0xCB72\t0x85C3\n0xCB73\t0x85C4\n0xCB74\t0x85C5\n0xCB75\t0x85C6\n0xCB76\t0x85C7\n0xCB77\t0x85C8\n0xCB78\t0x85CA\n0xCB79\t0x85CB\n0xCB7A\t0x85CC\n0xCB7B\t0x85CD\n0xCB7C\t0x85CE\n0xCB7D\t0x85D1\n0xCB7E\t0x85D2\n0xCB80\t0x85D4\n0xCB81\t0x85D6\n0xCB82\t0x85D7\n0xCB83\t0x85D8\n0xCB84\t0x85D9\n0xCB85\t0x85DA\n0xCB86\t0x85DB\n0xCB87\t0x85DD\n0xCB88\t0x85DE\n0xCB89\t0x85DF\n0xCB8A\t0x85E0\n0xCB8B\t0x85E1\n0xCB8C\t0x85E2\n0xCB8D\t0x85E3\n0xCB8E\t0x85E5\n0xCB8F\t0x85E6\n0xCB90\t0x85E7\n0xCB91\t0x85E8\n0xCB92\t0x85EA\n0xCB93\t0x85EB\n0xCB94\t0x85EC\n0xCB95\t0x85ED\n0xCB96\t0x85EE\n0xCB97\t0x85EF\n0xCB98\t0x85F0\n0xCB99\t0x85F1\n0xCB9A\t0x85F2\n0xCB9B\t0x85F3\n0xCB9C\t0x85F4\n0xCB9D\t0x85F5\n0xCB9E\t0x85F6\n0xCB9F\t0x85F7\n0xCBA0\t0x85F8\n0xCBA1\t0x6055\n0xCBA2\t0x5237\n0xCBA3\t0x800D\n0xCBA4\t0x6454\n0xCBA5\t0x8870\n0xCBA6\t0x7529\n0xCBA7\t0x5E05\n0xCBA8\t0x6813\n0xCBA9\t0x62F4\n0xCBAA\t0x971C\n0xCBAB\t0x53CC\n0xCBAC\t0x723D\n0xCBAD\t0x8C01\n0xCBAE\t0x6C34\n0xCBAF\t0x7761\n0xCBB0\t0x7A0E\n0xCBB1\t0x542E\n0xCBB2\t0x77AC\n0xCBB3\t0x987A\n0xCBB4\t0x821C\n0xCBB5\t0x8BF4\n0xCBB6\t0x7855\n0xCBB7\t0x6714\n0xCBB8\t0x70C1\n0xCBB9\t0x65AF\n0xCBBA\t0x6495\n0xCBBB\t0x5636\n0xCBBC\t0x601D\n0xCBBD\t0x79C1\n0xCBBE\t0x53F8\n0xCBBF\t0x4E1D\n0xCBC0\t0x6B7B\n0xCBC1\t0x8086\n0xCBC2\t0x5BFA\n0xCBC3\t0x55E3\n0xCBC4\t0x56DB\n0xCBC5\t0x4F3A\n0xCBC6\t0x4F3C\n0xCBC7\t0x9972\n0xCBC8\t0x5DF3\n0xCBC9\t0x677E\n0xCBCA\t0x8038\n0xCBCB\t0x6002\n0xCBCC\t0x9882\n0xCBCD\t0x9001\n0xCBCE\t0x5B8B\n0xCBCF\t0x8BBC\n0xCBD0\t0x8BF5\n0xCBD1\t0x641C\n0xCBD2\t0x8258\n0xCBD3\t0x64DE\n0xCBD4\t0x55FD\n0xCBD5\t0x82CF\n0xCBD6\t0x9165\n0xCBD7\t0x4FD7\n0xCBD8\t0x7D20\n0xCBD9\t0x901F\n0xCBDA\t0x7C9F\n0xCBDB\t0x50F3\n0xCBDC\t0x5851\n0xCBDD\t0x6EAF\n0xCBDE\t0x5BBF\n0xCBDF\t0x8BC9\n0xCBE0\t0x8083\n0xCBE1\t0x9178\n0xCBE2\t0x849C\n0xCBE3\t0x7B97\n0xCBE4\t0x867D\n0xCBE5\t0x968B\n0xCBE6\t0x968F\n0xCBE7\t0x7EE5\n0xCBE8\t0x9AD3\n0xCBE9\t0x788E\n0xCBEA\t0x5C81\n0xCBEB\t0x7A57\n0xCBEC\t0x9042\n0xCBED\t0x96A7\n0xCBEE\t0x795F\n0xCBEF\t0x5B59\n0xCBF0\t0x635F\n0xCBF1\t0x7B0B\n0xCBF2\t0x84D1\n0xCBF3\t0x68AD\n0xCBF4\t0x5506\n0xCBF5\t0x7F29\n0xCBF6\t0x7410\n0xCBF7\t0x7D22\n0xCBF8\t0x9501\n0xCBF9\t0x6240\n0xCBFA\t0x584C\n0xCBFB\t0x4ED6\n0xCBFC\t0x5B83\n0xCBFD\t0x5979\n0xCBFE\t0x5854\n0xCC40\t0x85F9\n0xCC41\t0x85FA\n0xCC42\t0x85FC\n0xCC43\t0x85FD\n0xCC44\t0x85FE\n0xCC45\t0x8600\n0xCC46\t0x8601\n0xCC47\t0x8602\n0xCC48\t0x8603\n0xCC49\t0x8604\n0xCC4A\t0x8606\n0xCC4B\t0x8607\n0xCC4C\t0x8608\n0xCC4D\t0x8609\n0xCC4E\t0x860A\n0xCC4F\t0x860B\n0xCC50\t0x860C\n0xCC51\t0x860D\n0xCC52\t0x860E\n0xCC53\t0x860F\n0xCC54\t0x8610\n0xCC55\t0x8612\n0xCC56\t0x8613\n0xCC57\t0x8614\n0xCC58\t0x8615\n0xCC59\t0x8617\n0xCC5A\t0x8618\n0xCC5B\t0x8619\n0xCC5C\t0x861A\n0xCC5D\t0x861B\n0xCC5E\t0x861C\n0xCC5F\t0x861D\n0xCC60\t0x861E\n0xCC61\t0x861F\n0xCC62\t0x8620\n0xCC63\t0x8621\n0xCC64\t0x8622\n0xCC65\t0x8623\n0xCC66\t0x8624\n0xCC67\t0x8625\n0xCC68\t0x8626\n0xCC69\t0x8628\n0xCC6A\t0x862A\n0xCC6B\t0x862B\n0xCC6C\t0x862C\n0xCC6D\t0x862D\n0xCC6E\t0x862E\n0xCC6F\t0x862F\n0xCC70\t0x8630\n0xCC71\t0x8631\n0xCC72\t0x8632\n0xCC73\t0x8633\n0xCC74\t0x8634\n0xCC75\t0x8635\n0xCC76\t0x8636\n0xCC77\t0x8637\n0xCC78\t0x8639\n0xCC79\t0x863A\n0xCC7A\t0x863B\n0xCC7B\t0x863D\n0xCC7C\t0x863E\n0xCC7D\t0x863F\n0xCC7E\t0x8640\n0xCC80\t0x8641\n0xCC81\t0x8642\n0xCC82\t0x8643\n0xCC83\t0x8644\n0xCC84\t0x8645\n0xCC85\t0x8646\n0xCC86\t0x8647\n0xCC87\t0x8648\n0xCC88\t0x8649\n0xCC89\t0x864A\n0xCC8A\t0x864B\n0xCC8B\t0x864C\n0xCC8C\t0x8652\n0xCC8D\t0x8653\n0xCC8E\t0x8655\n0xCC8F\t0x8656\n0xCC90\t0x8657\n0xCC91\t0x8658\n0xCC92\t0x8659\n0xCC93\t0x865B\n0xCC94\t0x865C\n0xCC95\t0x865D\n0xCC96\t0x865F\n0xCC97\t0x8660\n0xCC98\t0x8661\n0xCC99\t0x8663\n0xCC9A\t0x8664\n0xCC9B\t0x8665\n0xCC9C\t0x8666\n0xCC9D\t0x8667\n0xCC9E\t0x8668\n0xCC9F\t0x8669\n0xCCA0\t0x866A\n0xCCA1\t0x736D\n0xCCA2\t0x631E\n0xCCA3\t0x8E4B\n0xCCA4\t0x8E0F\n0xCCA5\t0x80CE\n0xCCA6\t0x82D4\n0xCCA7\t0x62AC\n0xCCA8\t0x53F0\n0xCCA9\t0x6CF0\n0xCCAA\t0x915E\n0xCCAB\t0x592A\n0xCCAC\t0x6001\n0xCCAD\t0x6C70\n0xCCAE\t0x574D\n0xCCAF\t0x644A\n0xCCB0\t0x8D2A\n0xCCB1\t0x762B\n0xCCB2\t0x6EE9\n0xCCB3\t0x575B\n0xCCB4\t0x6A80\n0xCCB5\t0x75F0\n0xCCB6\t0x6F6D\n0xCCB7\t0x8C2D\n0xCCB8\t0x8C08\n0xCCB9\t0x5766\n0xCCBA\t0x6BEF\n0xCCBB\t0x8892\n0xCCBC\t0x78B3\n0xCCBD\t0x63A2\n0xCCBE\t0x53F9\n0xCCBF\t0x70AD\n0xCCC0\t0x6C64\n0xCCC1\t0x5858\n0xCCC2\t0x642A\n0xCCC3\t0x5802\n0xCCC4\t0x68E0\n0xCCC5\t0x819B\n0xCCC6\t0x5510\n0xCCC7\t0x7CD6\n0xCCC8\t0x5018\n0xCCC9\t0x8EBA\n0xCCCA\t0x6DCC\n0xCCCB\t0x8D9F\n0xCCCC\t0x70EB\n0xCCCD\t0x638F\n0xCCCE\t0x6D9B\n0xCCCF\t0x6ED4\n0xCCD0\t0x7EE6\n0xCCD1\t0x8404\n0xCCD2\t0x6843\n0xCCD3\t0x9003\n0xCCD4\t0x6DD8\n0xCCD5\t0x9676\n0xCCD6\t0x8BA8\n0xCCD7\t0x5957\n0xCCD8\t0x7279\n0xCCD9\t0x85E4\n0xCCDA\t0x817E\n0xCCDB\t0x75BC\n0xCCDC\t0x8A8A\n0xCCDD\t0x68AF\n0xCCDE\t0x5254\n0xCCDF\t0x8E22\n0xCCE0\t0x9511\n0xCCE1\t0x63D0\n0xCCE2\t0x9898\n0xCCE3\t0x8E44\n0xCCE4\t0x557C\n0xCCE5\t0x4F53\n0xCCE6\t0x66FF\n0xCCE7\t0x568F\n0xCCE8\t0x60D5\n0xCCE9\t0x6D95\n0xCCEA\t0x5243\n0xCCEB\t0x5C49\n0xCCEC\t0x5929\n0xCCED\t0x6DFB\n0xCCEE\t0x586B\n0xCCEF\t0x7530\n0xCCF0\t0x751C\n0xCCF1\t0x606C\n0xCCF2\t0x8214\n0xCCF3\t0x8146\n0xCCF4\t0x6311\n0xCCF5\t0x6761\n0xCCF6\t0x8FE2\n0xCCF7\t0x773A\n0xCCF8\t0x8DF3\n0xCCF9\t0x8D34\n0xCCFA\t0x94C1\n0xCCFB\t0x5E16\n0xCCFC\t0x5385\n0xCCFD\t0x542C\n0xCCFE\t0x70C3\n0xCD40\t0x866D\n0xCD41\t0x866F\n0xCD42\t0x8670\n0xCD43\t0x8672\n0xCD44\t0x8673\n0xCD45\t0x8674\n0xCD46\t0x8675\n0xCD47\t0x8676\n0xCD48\t0x8677\n0xCD49\t0x8678\n0xCD4A\t0x8683\n0xCD4B\t0x8684\n0xCD4C\t0x8685\n0xCD4D\t0x8686\n0xCD4E\t0x8687\n0xCD4F\t0x8688\n0xCD50\t0x8689\n0xCD51\t0x868E\n0xCD52\t0x868F\n0xCD53\t0x8690\n0xCD54\t0x8691\n0xCD55\t0x8692\n0xCD56\t0x8694\n0xCD57\t0x8696\n0xCD58\t0x8697\n0xCD59\t0x8698\n0xCD5A\t0x8699\n0xCD5B\t0x869A\n0xCD5C\t0x869B\n0xCD5D\t0x869E\n0xCD5E\t0x869F\n0xCD5F\t0x86A0\n0xCD60\t0x86A1\n0xCD61\t0x86A2\n0xCD62\t0x86A5\n0xCD63\t0x86A6\n0xCD64\t0x86AB\n0xCD65\t0x86AD\n0xCD66\t0x86AE\n0xCD67\t0x86B2\n0xCD68\t0x86B3\n0xCD69\t0x86B7\n0xCD6A\t0x86B8\n0xCD6B\t0x86B9\n0xCD6C\t0x86BB\n0xCD6D\t0x86BC\n0xCD6E\t0x86BD\n0xCD6F\t0x86BE\n0xCD70\t0x86BF\n0xCD71\t0x86C1\n0xCD72\t0x86C2\n0xCD73\t0x86C3\n0xCD74\t0x86C5\n0xCD75\t0x86C8\n0xCD76\t0x86CC\n0xCD77\t0x86CD\n0xCD78\t0x86D2\n0xCD79\t0x86D3\n0xCD7A\t0x86D5\n0xCD7B\t0x86D6\n0xCD7C\t0x86D7\n0xCD7D\t0x86DA\n0xCD7E\t0x86DC\n0xCD80\t0x86DD\n0xCD81\t0x86E0\n0xCD82\t0x86E1\n0xCD83\t0x86E2\n0xCD84\t0x86E3\n0xCD85\t0x86E5\n0xCD86\t0x86E6\n0xCD87\t0x86E7\n0xCD88\t0x86E8\n0xCD89\t0x86EA\n0xCD8A\t0x86EB\n0xCD8B\t0x86EC\n0xCD8C\t0x86EF\n0xCD8D\t0x86F5\n0xCD8E\t0x86F6\n0xCD8F\t0x86F7\n0xCD90\t0x86FA\n0xCD91\t0x86FB\n0xCD92\t0x86FC\n0xCD93\t0x86FD\n0xCD94\t0x86FF\n0xCD95\t0x8701\n0xCD96\t0x8704\n0xCD97\t0x8705\n0xCD98\t0x8706\n0xCD99\t0x870B\n0xCD9A\t0x870C\n0xCD9B\t0x870E\n0xCD9C\t0x870F\n0xCD9D\t0x8710\n0xCD9E\t0x8711\n0xCD9F\t0x8714\n0xCDA0\t0x8716\n0xCDA1\t0x6C40\n0xCDA2\t0x5EF7\n0xCDA3\t0x505C\n0xCDA4\t0x4EAD\n0xCDA5\t0x5EAD\n0xCDA6\t0x633A\n0xCDA7\t0x8247\n0xCDA8\t0x901A\n0xCDA9\t0x6850\n0xCDAA\t0x916E\n0xCDAB\t0x77B3\n0xCDAC\t0x540C\n0xCDAD\t0x94DC\n0xCDAE\t0x5F64\n0xCDAF\t0x7AE5\n0xCDB0\t0x6876\n0xCDB1\t0x6345\n0xCDB2\t0x7B52\n0xCDB3\t0x7EDF\n0xCDB4\t0x75DB\n0xCDB5\t0x5077\n0xCDB6\t0x6295\n0xCDB7\t0x5934\n0xCDB8\t0x900F\n0xCDB9\t0x51F8\n0xCDBA\t0x79C3\n0xCDBB\t0x7A81\n0xCDBC\t0x56FE\n0xCDBD\t0x5F92\n0xCDBE\t0x9014\n0xCDBF\t0x6D82\n0xCDC0\t0x5C60\n0xCDC1\t0x571F\n0xCDC2\t0x5410\n0xCDC3\t0x5154\n0xCDC4\t0x6E4D\n0xCDC5\t0x56E2\n0xCDC6\t0x63A8\n0xCDC7\t0x9893\n0xCDC8\t0x817F\n0xCDC9\t0x8715\n0xCDCA\t0x892A\n0xCDCB\t0x9000\n0xCDCC\t0x541E\n0xCDCD\t0x5C6F\n0xCDCE\t0x81C0\n0xCDCF\t0x62D6\n0xCDD0\t0x6258\n0xCDD1\t0x8131\n0xCDD2\t0x9E35\n0xCDD3\t0x9640\n0xCDD4\t0x9A6E\n0xCDD5\t0x9A7C\n0xCDD6\t0x692D\n0xCDD7\t0x59A5\n0xCDD8\t0x62D3\n0xCDD9\t0x553E\n0xCDDA\t0x6316\n0xCDDB\t0x54C7\n0xCDDC\t0x86D9\n0xCDDD\t0x6D3C\n0xCDDE\t0x5A03\n0xCDDF\t0x74E6\n0xCDE0\t0x889C\n0xCDE1\t0x6B6A\n0xCDE2\t0x5916\n0xCDE3\t0x8C4C\n0xCDE4\t0x5F2F\n0xCDE5\t0x6E7E\n0xCDE6\t0x73A9\n0xCDE7\t0x987D\n0xCDE8\t0x4E38\n0xCDE9\t0x70F7\n0xCDEA\t0x5B8C\n0xCDEB\t0x7897\n0xCDEC\t0x633D\n0xCDED\t0x665A\n0xCDEE\t0x7696\n0xCDEF\t0x60CB\n0xCDF0\t0x5B9B\n0xCDF1\t0x5A49\n0xCDF2\t0x4E07\n0xCDF3\t0x8155\n0xCDF4\t0x6C6A\n0xCDF5\t0x738B\n0xCDF6\t0x4EA1\n0xCDF7\t0x6789\n0xCDF8\t0x7F51\n0xCDF9\t0x5F80\n0xCDFA\t0x65FA\n0xCDFB\t0x671B\n0xCDFC\t0x5FD8\n0xCDFD\t0x5984\n0xCDFE\t0x5A01\n0xCE40\t0x8719\n0xCE41\t0x871B\n0xCE42\t0x871D\n0xCE43\t0x871F\n0xCE44\t0x8720\n0xCE45\t0x8724\n0xCE46\t0x8726\n0xCE47\t0x8727\n0xCE48\t0x8728\n0xCE49\t0x872A\n0xCE4A\t0x872B\n0xCE4B\t0x872C\n0xCE4C\t0x872D\n0xCE4D\t0x872F\n0xCE4E\t0x8730\n0xCE4F\t0x8732\n0xCE50\t0x8733\n0xCE51\t0x8735\n0xCE52\t0x8736\n0xCE53\t0x8738\n0xCE54\t0x8739\n0xCE55\t0x873A\n0xCE56\t0x873C\n0xCE57\t0x873D\n0xCE58\t0x8740\n0xCE59\t0x8741\n0xCE5A\t0x8742\n0xCE5B\t0x8743\n0xCE5C\t0x8744\n0xCE5D\t0x8745\n0xCE5E\t0x8746\n0xCE5F\t0x874A\n0xCE60\t0x874B\n0xCE61\t0x874D\n0xCE62\t0x874F\n0xCE63\t0x8750\n0xCE64\t0x8751\n0xCE65\t0x8752\n0xCE66\t0x8754\n0xCE67\t0x8755\n0xCE68\t0x8756\n0xCE69\t0x8758\n0xCE6A\t0x875A\n0xCE6B\t0x875B\n0xCE6C\t0x875C\n0xCE6D\t0x875D\n0xCE6E\t0x875E\n0xCE6F\t0x875F\n0xCE70\t0x8761\n0xCE71\t0x8762\n0xCE72\t0x8766\n0xCE73\t0x8767\n0xCE74\t0x8768\n0xCE75\t0x8769\n0xCE76\t0x876A\n0xCE77\t0x876B\n0xCE78\t0x876C\n0xCE79\t0x876D\n0xCE7A\t0x876F\n0xCE7B\t0x8771\n0xCE7C\t0x8772\n0xCE7D\t0x8773\n0xCE7E\t0x8775\n0xCE80\t0x8777\n0xCE81\t0x8778\n0xCE82\t0x8779\n0xCE83\t0x877A\n0xCE84\t0x877F\n0xCE85\t0x8780\n0xCE86\t0x8781\n0xCE87\t0x8784\n0xCE88\t0x8786\n0xCE89\t0x8787\n0xCE8A\t0x8789\n0xCE8B\t0x878A\n0xCE8C\t0x878C\n0xCE8D\t0x878E\n0xCE8E\t0x878F\n0xCE8F\t0x8790\n0xCE90\t0x8791\n0xCE91\t0x8792\n0xCE92\t0x8794\n0xCE93\t0x8795\n0xCE94\t0x8796\n0xCE95\t0x8798\n0xCE96\t0x8799\n0xCE97\t0x879A\n0xCE98\t0x879B\n0xCE99\t0x879C\n0xCE9A\t0x879D\n0xCE9B\t0x879E\n0xCE9C\t0x87A0\n0xCE9D\t0x87A1\n0xCE9E\t0x87A2\n0xCE9F\t0x87A3\n0xCEA0\t0x87A4\n0xCEA1\t0x5DCD\n0xCEA2\t0x5FAE\n0xCEA3\t0x5371\n0xCEA4\t0x97E6\n0xCEA5\t0x8FDD\n0xCEA6\t0x6845\n0xCEA7\t0x56F4\n0xCEA8\t0x552F\n0xCEA9\t0x60DF\n0xCEAA\t0x4E3A\n0xCEAB\t0x6F4D\n0xCEAC\t0x7EF4\n0xCEAD\t0x82C7\n0xCEAE\t0x840E\n0xCEAF\t0x59D4\n0xCEB0\t0x4F1F\n0xCEB1\t0x4F2A\n0xCEB2\t0x5C3E\n0xCEB3\t0x7EAC\n0xCEB4\t0x672A\n0xCEB5\t0x851A\n0xCEB6\t0x5473\n0xCEB7\t0x754F\n0xCEB8\t0x80C3\n0xCEB9\t0x5582\n0xCEBA\t0x9B4F\n0xCEBB\t0x4F4D\n0xCEBC\t0x6E2D\n0xCEBD\t0x8C13\n0xCEBE\t0x5C09\n0xCEBF\t0x6170\n0xCEC0\t0x536B\n0xCEC1\t0x761F\n0xCEC2\t0x6E29\n0xCEC3\t0x868A\n0xCEC4\t0x6587\n0xCEC5\t0x95FB\n0xCEC6\t0x7EB9\n0xCEC7\t0x543B\n0xCEC8\t0x7A33\n0xCEC9\t0x7D0A\n0xCECA\t0x95EE\n0xCECB\t0x55E1\n0xCECC\t0x7FC1\n0xCECD\t0x74EE\n0xCECE\t0x631D\n0xCECF\t0x8717\n0xCED0\t0x6DA1\n0xCED1\t0x7A9D\n0xCED2\t0x6211\n0xCED3\t0x65A1\n0xCED4\t0x5367\n0xCED5\t0x63E1\n0xCED6\t0x6C83\n0xCED7\t0x5DEB\n0xCED8\t0x545C\n0xCED9\t0x94A8\n0xCEDA\t0x4E4C\n0xCEDB\t0x6C61\n0xCEDC\t0x8BEC\n0xCEDD\t0x5C4B\n0xCEDE\t0x65E0\n0xCEDF\t0x829C\n0xCEE0\t0x68A7\n0xCEE1\t0x543E\n0xCEE2\t0x5434\n0xCEE3\t0x6BCB\n0xCEE4\t0x6B66\n0xCEE5\t0x4E94\n0xCEE6\t0x6342\n0xCEE7\t0x5348\n0xCEE8\t0x821E\n0xCEE9\t0x4F0D\n0xCEEA\t0x4FAE\n0xCEEB\t0x575E\n0xCEEC\t0x620A\n0xCEED\t0x96FE\n0xCEEE\t0x6664\n0xCEEF\t0x7269\n0xCEF0\t0x52FF\n0xCEF1\t0x52A1\n0xCEF2\t0x609F\n0xCEF3\t0x8BEF\n0xCEF4\t0x6614\n0xCEF5\t0x7199\n0xCEF6\t0x6790\n0xCEF7\t0x897F\n0xCEF8\t0x7852\n0xCEF9\t0x77FD\n0xCEFA\t0x6670\n0xCEFB\t0x563B\n0xCEFC\t0x5438\n0xCEFD\t0x9521\n0xCEFE\t0x727A\n0xCF40\t0x87A5\n0xCF41\t0x87A6\n0xCF42\t0x87A7\n0xCF43\t0x87A9\n0xCF44\t0x87AA\n0xCF45\t0x87AE\n0xCF46\t0x87B0\n0xCF47\t0x87B1\n0xCF48\t0x87B2\n0xCF49\t0x87B4\n0xCF4A\t0x87B6\n0xCF4B\t0x87B7\n0xCF4C\t0x87B8\n0xCF4D\t0x87B9\n0xCF4E\t0x87BB\n0xCF4F\t0x87BC\n0xCF50\t0x87BE\n0xCF51\t0x87BF\n0xCF52\t0x87C1\n0xCF53\t0x87C2\n0xCF54\t0x87C3\n0xCF55\t0x87C4\n0xCF56\t0x87C5\n0xCF57\t0x87C7\n0xCF58\t0x87C8\n0xCF59\t0x87C9\n0xCF5A\t0x87CC\n0xCF5B\t0x87CD\n0xCF5C\t0x87CE\n0xCF5D\t0x87CF\n0xCF5E\t0x87D0\n0xCF5F\t0x87D4\n0xCF60\t0x87D5\n0xCF61\t0x87D6\n0xCF62\t0x87D7\n0xCF63\t0x87D8\n0xCF64\t0x87D9\n0xCF65\t0x87DA\n0xCF66\t0x87DC\n0xCF67\t0x87DD\n0xCF68\t0x87DE\n0xCF69\t0x87DF\n0xCF6A\t0x87E1\n0xCF6B\t0x87E2\n0xCF6C\t0x87E3\n0xCF6D\t0x87E4\n0xCF6E\t0x87E6\n0xCF6F\t0x87E7\n0xCF70\t0x87E8\n0xCF71\t0x87E9\n0xCF72\t0x87EB\n0xCF73\t0x87EC\n0xCF74\t0x87ED\n0xCF75\t0x87EF\n0xCF76\t0x87F0\n0xCF77\t0x87F1\n0xCF78\t0x87F2\n0xCF79\t0x87F3\n0xCF7A\t0x87F4\n0xCF7B\t0x87F5\n0xCF7C\t0x87F6\n0xCF7D\t0x87F7\n0xCF7E\t0x87F8\n0xCF80\t0x87FA\n0xCF81\t0x87FB\n0xCF82\t0x87FC\n0xCF83\t0x87FD\n0xCF84\t0x87FF\n0xCF85\t0x8800\n0xCF86\t0x8801\n0xCF87\t0x8802\n0xCF88\t0x8804\n0xCF89\t0x8805\n0xCF8A\t0x8806\n0xCF8B\t0x8807\n0xCF8C\t0x8808\n0xCF8D\t0x8809\n0xCF8E\t0x880B\n0xCF8F\t0x880C\n0xCF90\t0x880D\n0xCF91\t0x880E\n0xCF92\t0x880F\n0xCF93\t0x8810\n0xCF94\t0x8811\n0xCF95\t0x8812\n0xCF96\t0x8814\n0xCF97\t0x8817\n0xCF98\t0x8818\n0xCF99\t0x8819\n0xCF9A\t0x881A\n0xCF9B\t0x881C\n0xCF9C\t0x881D\n0xCF9D\t0x881E\n0xCF9E\t0x881F\n0xCF9F\t0x8820\n0xCFA0\t0x8823\n0xCFA1\t0x7A00\n0xCFA2\t0x606F\n0xCFA3\t0x5E0C\n0xCFA4\t0x6089\n0xCFA5\t0x819D\n0xCFA6\t0x5915\n0xCFA7\t0x60DC\n0xCFA8\t0x7184\n0xCFA9\t0x70EF\n0xCFAA\t0x6EAA\n0xCFAB\t0x6C50\n0xCFAC\t0x7280\n0xCFAD\t0x6A84\n0xCFAE\t0x88AD\n0xCFAF\t0x5E2D\n0xCFB0\t0x4E60\n0xCFB1\t0x5AB3\n0xCFB2\t0x559C\n0xCFB3\t0x94E3\n0xCFB4\t0x6D17\n0xCFB5\t0x7CFB\n0xCFB6\t0x9699\n0xCFB7\t0x620F\n0xCFB8\t0x7EC6\n0xCFB9\t0x778E\n0xCFBA\t0x867E\n0xCFBB\t0x5323\n0xCFBC\t0x971E\n0xCFBD\t0x8F96\n0xCFBE\t0x6687\n0xCFBF\t0x5CE1\n0xCFC0\t0x4FA0\n0xCFC1\t0x72ED\n0xCFC2\t0x4E0B\n0xCFC3\t0x53A6\n0xCFC4\t0x590F\n0xCFC5\t0x5413\n0xCFC6\t0x6380\n0xCFC7\t0x9528\n0xCFC8\t0x5148\n0xCFC9\t0x4ED9\n0xCFCA\t0x9C9C\n0xCFCB\t0x7EA4\n0xCFCC\t0x54B8\n0xCFCD\t0x8D24\n0xCFCE\t0x8854\n0xCFCF\t0x8237\n0xCFD0\t0x95F2\n0xCFD1\t0x6D8E\n0xCFD2\t0x5F26\n0xCFD3\t0x5ACC\n0xCFD4\t0x663E\n0xCFD5\t0x9669\n0xCFD6\t0x73B0\n0xCFD7\t0x732E\n0xCFD8\t0x53BF\n0xCFD9\t0x817A\n0xCFDA\t0x9985\n0xCFDB\t0x7FA1\n0xCFDC\t0x5BAA\n0xCFDD\t0x9677\n0xCFDE\t0x9650\n0xCFDF\t0x7EBF\n0xCFE0\t0x76F8\n0xCFE1\t0x53A2\n0xCFE2\t0x9576\n0xCFE3\t0x9999\n0xCFE4\t0x7BB1\n0xCFE5\t0x8944\n0xCFE6\t0x6E58\n0xCFE7\t0x4E61\n0xCFE8\t0x7FD4\n0xCFE9\t0x7965\n0xCFEA\t0x8BE6\n0xCFEB\t0x60F3\n0xCFEC\t0x54CD\n0xCFED\t0x4EAB\n0xCFEE\t0x9879\n0xCFEF\t0x5DF7\n0xCFF0\t0x6A61\n0xCFF1\t0x50CF\n0xCFF2\t0x5411\n0xCFF3\t0x8C61\n0xCFF4\t0x8427\n0xCFF5\t0x785D\n0xCFF6\t0x9704\n0xCFF7\t0x524A\n0xCFF8\t0x54EE\n0xCFF9\t0x56A3\n0xCFFA\t0x9500\n0xCFFB\t0x6D88\n0xCFFC\t0x5BB5\n0xCFFD\t0x6DC6\n0xCFFE\t0x6653\n0xD040\t0x8824\n0xD041\t0x8825\n0xD042\t0x8826\n0xD043\t0x8827\n0xD044\t0x8828\n0xD045\t0x8829\n0xD046\t0x882A\n0xD047\t0x882B\n0xD048\t0x882C\n0xD049\t0x882D\n0xD04A\t0x882E\n0xD04B\t0x882F\n0xD04C\t0x8830\n0xD04D\t0x8831\n0xD04E\t0x8833\n0xD04F\t0x8834\n0xD050\t0x8835\n0xD051\t0x8836\n0xD052\t0x8837\n0xD053\t0x8838\n0xD054\t0x883A\n0xD055\t0x883B\n0xD056\t0x883D\n0xD057\t0x883E\n0xD058\t0x883F\n0xD059\t0x8841\n0xD05A\t0x8842\n0xD05B\t0x8843\n0xD05C\t0x8846\n0xD05D\t0x8847\n0xD05E\t0x8848\n0xD05F\t0x8849\n0xD060\t0x884A\n0xD061\t0x884B\n0xD062\t0x884E\n0xD063\t0x884F\n0xD064\t0x8850\n0xD065\t0x8851\n0xD066\t0x8852\n0xD067\t0x8853\n0xD068\t0x8855\n0xD069\t0x8856\n0xD06A\t0x8858\n0xD06B\t0x885A\n0xD06C\t0x885B\n0xD06D\t0x885C\n0xD06E\t0x885D\n0xD06F\t0x885E\n0xD070\t0x885F\n0xD071\t0x8860\n0xD072\t0x8866\n0xD073\t0x8867\n0xD074\t0x886A\n0xD075\t0x886D\n0xD076\t0x886F\n0xD077\t0x8871\n0xD078\t0x8873\n0xD079\t0x8874\n0xD07A\t0x8875\n0xD07B\t0x8876\n0xD07C\t0x8878\n0xD07D\t0x8879\n0xD07E\t0x887A\n0xD080\t0x887B\n0xD081\t0x887C\n0xD082\t0x8880\n0xD083\t0x8883\n0xD084\t0x8886\n0xD085\t0x8887\n0xD086\t0x8889\n0xD087\t0x888A\n0xD088\t0x888C\n0xD089\t0x888E\n0xD08A\t0x888F\n0xD08B\t0x8890\n0xD08C\t0x8891\n0xD08D\t0x8893\n0xD08E\t0x8894\n0xD08F\t0x8895\n0xD090\t0x8897\n0xD091\t0x8898\n0xD092\t0x8899\n0xD093\t0x889A\n0xD094\t0x889B\n0xD095\t0x889D\n0xD096\t0x889E\n0xD097\t0x889F\n0xD098\t0x88A0\n0xD099\t0x88A1\n0xD09A\t0x88A3\n0xD09B\t0x88A5\n0xD09C\t0x88A6\n0xD09D\t0x88A7\n0xD09E\t0x88A8\n0xD09F\t0x88A9\n0xD0A0\t0x88AA\n0xD0A1\t0x5C0F\n0xD0A2\t0x5B5D\n0xD0A3\t0x6821\n0xD0A4\t0x8096\n0xD0A5\t0x5578\n0xD0A6\t0x7B11\n0xD0A7\t0x6548\n0xD0A8\t0x6954\n0xD0A9\t0x4E9B\n0xD0AA\t0x6B47\n0xD0AB\t0x874E\n0xD0AC\t0x978B\n0xD0AD\t0x534F\n0xD0AE\t0x631F\n0xD0AF\t0x643A\n0xD0B0\t0x90AA\n0xD0B1\t0x659C\n0xD0B2\t0x80C1\n0xD0B3\t0x8C10\n0xD0B4\t0x5199\n0xD0B5\t0x68B0\n0xD0B6\t0x5378\n0xD0B7\t0x87F9\n0xD0B8\t0x61C8\n0xD0B9\t0x6CC4\n0xD0BA\t0x6CFB\n0xD0BB\t0x8C22\n0xD0BC\t0x5C51\n0xD0BD\t0x85AA\n0xD0BE\t0x82AF\n0xD0BF\t0x950C\n0xD0C0\t0x6B23\n0xD0C1\t0x8F9B\n0xD0C2\t0x65B0\n0xD0C3\t0x5FFB\n0xD0C4\t0x5FC3\n0xD0C5\t0x4FE1\n0xD0C6\t0x8845\n0xD0C7\t0x661F\n0xD0C8\t0x8165\n0xD0C9\t0x7329\n0xD0CA\t0x60FA\n0xD0CB\t0x5174\n0xD0CC\t0x5211\n0xD0CD\t0x578B\n0xD0CE\t0x5F62\n0xD0CF\t0x90A2\n0xD0D0\t0x884C\n0xD0D1\t0x9192\n0xD0D2\t0x5E78\n0xD0D3\t0x674F\n0xD0D4\t0x6027\n0xD0D5\t0x59D3\n0xD0D6\t0x5144\n0xD0D7\t0x51F6\n0xD0D8\t0x80F8\n0xD0D9\t0x5308\n0xD0DA\t0x6C79\n0xD0DB\t0x96C4\n0xD0DC\t0x718A\n0xD0DD\t0x4F11\n0xD0DE\t0x4FEE\n0xD0DF\t0x7F9E\n0xD0E0\t0x673D\n0xD0E1\t0x55C5\n0xD0E2\t0x9508\n0xD0E3\t0x79C0\n0xD0E4\t0x8896\n0xD0E5\t0x7EE3\n0xD0E6\t0x589F\n0xD0E7\t0x620C\n0xD0E8\t0x9700\n0xD0E9\t0x865A\n0xD0EA\t0x5618\n0xD0EB\t0x987B\n0xD0EC\t0x5F90\n0xD0ED\t0x8BB8\n0xD0EE\t0x84C4\n0xD0EF\t0x9157\n0xD0F0\t0x53D9\n0xD0F1\t0x65ED\n0xD0F2\t0x5E8F\n0xD0F3\t0x755C\n0xD0F4\t0x6064\n0xD0F5\t0x7D6E\n0xD0F6\t0x5A7F\n0xD0F7\t0x7EEA\n0xD0F8\t0x7EED\n0xD0F9\t0x8F69\n0xD0FA\t0x55A7\n0xD0FB\t0x5BA3\n0xD0FC\t0x60AC\n0xD0FD\t0x65CB\n0xD0FE\t0x7384\n0xD140\t0x88AC\n0xD141\t0x88AE\n0xD142\t0x88AF\n0xD143\t0x88B0\n0xD144\t0x88B2\n0xD145\t0x88B3\n0xD146\t0x88B4\n0xD147\t0x88B5\n0xD148\t0x88B6\n0xD149\t0x88B8\n0xD14A\t0x88B9\n0xD14B\t0x88BA\n0xD14C\t0x88BB\n0xD14D\t0x88BD\n0xD14E\t0x88BE\n0xD14F\t0x88BF\n0xD150\t0x88C0\n0xD151\t0x88C3\n0xD152\t0x88C4\n0xD153\t0x88C7\n0xD154\t0x88C8\n0xD155\t0x88CA\n0xD156\t0x88CB\n0xD157\t0x88CC\n0xD158\t0x88CD\n0xD159\t0x88CF\n0xD15A\t0x88D0\n0xD15B\t0x88D1\n0xD15C\t0x88D3\n0xD15D\t0x88D6\n0xD15E\t0x88D7\n0xD15F\t0x88DA\n0xD160\t0x88DB\n0xD161\t0x88DC\n0xD162\t0x88DD\n0xD163\t0x88DE\n0xD164\t0x88E0\n0xD165\t0x88E1\n0xD166\t0x88E6\n0xD167\t0x88E7\n0xD168\t0x88E9\n0xD169\t0x88EA\n0xD16A\t0x88EB\n0xD16B\t0x88EC\n0xD16C\t0x88ED\n0xD16D\t0x88EE\n0xD16E\t0x88EF\n0xD16F\t0x88F2\n0xD170\t0x88F5\n0xD171\t0x88F6\n0xD172\t0x88F7\n0xD173\t0x88FA\n0xD174\t0x88FB\n0xD175\t0x88FD\n0xD176\t0x88FF\n0xD177\t0x8900\n0xD178\t0x8901\n0xD179\t0x8903\n0xD17A\t0x8904\n0xD17B\t0x8905\n0xD17C\t0x8906\n0xD17D\t0x8907\n0xD17E\t0x8908\n0xD180\t0x8909\n0xD181\t0x890B\n0xD182\t0x890C\n0xD183\t0x890D\n0xD184\t0x890E\n0xD185\t0x890F\n0xD186\t0x8911\n0xD187\t0x8914\n0xD188\t0x8915\n0xD189\t0x8916\n0xD18A\t0x8917\n0xD18B\t0x8918\n0xD18C\t0x891C\n0xD18D\t0x891D\n0xD18E\t0x891E\n0xD18F\t0x891F\n0xD190\t0x8920\n0xD191\t0x8922\n0xD192\t0x8923\n0xD193\t0x8924\n0xD194\t0x8926\n0xD195\t0x8927\n0xD196\t0x8928\n0xD197\t0x8929\n0xD198\t0x892C\n0xD199\t0x892D\n0xD19A\t0x892E\n0xD19B\t0x892F\n0xD19C\t0x8931\n0xD19D\t0x8932\n0xD19E\t0x8933\n0xD19F\t0x8935\n0xD1A0\t0x8937\n0xD1A1\t0x9009\n0xD1A2\t0x7663\n0xD1A3\t0x7729\n0xD1A4\t0x7EDA\n0xD1A5\t0x9774\n0xD1A6\t0x859B\n0xD1A7\t0x5B66\n0xD1A8\t0x7A74\n0xD1A9\t0x96EA\n0xD1AA\t0x8840\n0xD1AB\t0x52CB\n0xD1AC\t0x718F\n0xD1AD\t0x5FAA\n0xD1AE\t0x65EC\n0xD1AF\t0x8BE2\n0xD1B0\t0x5BFB\n0xD1B1\t0x9A6F\n0xD1B2\t0x5DE1\n0xD1B3\t0x6B89\n0xD1B4\t0x6C5B\n0xD1B5\t0x8BAD\n0xD1B6\t0x8BAF\n0xD1B7\t0x900A\n0xD1B8\t0x8FC5\n0xD1B9\t0x538B\n0xD1BA\t0x62BC\n0xD1BB\t0x9E26\n0xD1BC\t0x9E2D\n0xD1BD\t0x5440\n0xD1BE\t0x4E2B\n0xD1BF\t0x82BD\n0xD1C0\t0x7259\n0xD1C1\t0x869C\n0xD1C2\t0x5D16\n0xD1C3\t0x8859\n0xD1C4\t0x6DAF\n0xD1C5\t0x96C5\n0xD1C6\t0x54D1\n0xD1C7\t0x4E9A\n0xD1C8\t0x8BB6\n0xD1C9\t0x7109\n0xD1CA\t0x54BD\n0xD1CB\t0x9609\n0xD1CC\t0x70DF\n0xD1CD\t0x6DF9\n0xD1CE\t0x76D0\n0xD1CF\t0x4E25\n0xD1D0\t0x7814\n0xD1D1\t0x8712\n0xD1D2\t0x5CA9\n0xD1D3\t0x5EF6\n0xD1D4\t0x8A00\n0xD1D5\t0x989C\n0xD1D6\t0x960E\n0xD1D7\t0x708E\n0xD1D8\t0x6CBF\n0xD1D9\t0x5944\n0xD1DA\t0x63A9\n0xD1DB\t0x773C\n0xD1DC\t0x884D\n0xD1DD\t0x6F14\n0xD1DE\t0x8273\n0xD1DF\t0x5830\n0xD1E0\t0x71D5\n0xD1E1\t0x538C\n0xD1E2\t0x781A\n0xD1E3\t0x96C1\n0xD1E4\t0x5501\n0xD1E5\t0x5F66\n0xD1E6\t0x7130\n0xD1E7\t0x5BB4\n0xD1E8\t0x8C1A\n0xD1E9\t0x9A8C\n0xD1EA\t0x6B83\n0xD1EB\t0x592E\n0xD1EC\t0x9E2F\n0xD1ED\t0x79E7\n0xD1EE\t0x6768\n0xD1EF\t0x626C\n0xD1F0\t0x4F6F\n0xD1F1\t0x75A1\n0xD1F2\t0x7F8A\n0xD1F3\t0x6D0B\n0xD1F4\t0x9633\n0xD1F5\t0x6C27\n0xD1F6\t0x4EF0\n0xD1F7\t0x75D2\n0xD1F8\t0x517B\n0xD1F9\t0x6837\n0xD1FA\t0x6F3E\n0xD1FB\t0x9080\n0xD1FC\t0x8170\n0xD1FD\t0x5996\n0xD1FE\t0x7476\n0xD240\t0x8938\n0xD241\t0x8939\n0xD242\t0x893A\n0xD243\t0x893B\n0xD244\t0x893C\n0xD245\t0x893D\n0xD246\t0x893E\n0xD247\t0x893F\n0xD248\t0x8940\n0xD249\t0x8942\n0xD24A\t0x8943\n0xD24B\t0x8945\n0xD24C\t0x8946\n0xD24D\t0x8947\n0xD24E\t0x8948\n0xD24F\t0x8949\n0xD250\t0x894A\n0xD251\t0x894B\n0xD252\t0x894C\n0xD253\t0x894D\n0xD254\t0x894E\n0xD255\t0x894F\n0xD256\t0x8950\n0xD257\t0x8951\n0xD258\t0x8952\n0xD259\t0x8953\n0xD25A\t0x8954\n0xD25B\t0x8955\n0xD25C\t0x8956\n0xD25D\t0x8957\n0xD25E\t0x8958\n0xD25F\t0x8959\n0xD260\t0x895A\n0xD261\t0x895B\n0xD262\t0x895C\n0xD263\t0x895D\n0xD264\t0x8960\n0xD265\t0x8961\n0xD266\t0x8962\n0xD267\t0x8963\n0xD268\t0x8964\n0xD269\t0x8965\n0xD26A\t0x8967\n0xD26B\t0x8968\n0xD26C\t0x8969\n0xD26D\t0x896A\n0xD26E\t0x896B\n0xD26F\t0x896C\n0xD270\t0x896D\n0xD271\t0x896E\n0xD272\t0x896F\n0xD273\t0x8970\n0xD274\t0x8971\n0xD275\t0x8972\n0xD276\t0x8973\n0xD277\t0x8974\n0xD278\t0x8975\n0xD279\t0x8976\n0xD27A\t0x8977\n0xD27B\t0x8978\n0xD27C\t0x8979\n0xD27D\t0x897A\n0xD27E\t0x897C\n0xD280\t0x897D\n0xD281\t0x897E\n0xD282\t0x8980\n0xD283\t0x8982\n0xD284\t0x8984\n0xD285\t0x8985\n0xD286\t0x8987\n0xD287\t0x8988\n0xD288\t0x8989\n0xD289\t0x898A\n0xD28A\t0x898B\n0xD28B\t0x898C\n0xD28C\t0x898D\n0xD28D\t0x898E\n0xD28E\t0x898F\n0xD28F\t0x8990\n0xD290\t0x8991\n0xD291\t0x8992\n0xD292\t0x8993\n0xD293\t0x8994\n0xD294\t0x8995\n0xD295\t0x8996\n0xD296\t0x8997\n0xD297\t0x8998\n0xD298\t0x8999\n0xD299\t0x899A\n0xD29A\t0x899B\n0xD29B\t0x899C\n0xD29C\t0x899D\n0xD29D\t0x899E\n0xD29E\t0x899F\n0xD29F\t0x89A0\n0xD2A0\t0x89A1\n0xD2A1\t0x6447\n0xD2A2\t0x5C27\n0xD2A3\t0x9065\n0xD2A4\t0x7A91\n0xD2A5\t0x8C23\n0xD2A6\t0x59DA\n0xD2A7\t0x54AC\n0xD2A8\t0x8200\n0xD2A9\t0x836F\n0xD2AA\t0x8981\n0xD2AB\t0x8000\n0xD2AC\t0x6930\n0xD2AD\t0x564E\n0xD2AE\t0x8036\n0xD2AF\t0x7237\n0xD2B0\t0x91CE\n0xD2B1\t0x51B6\n0xD2B2\t0x4E5F\n0xD2B3\t0x9875\n0xD2B4\t0x6396\n0xD2B5\t0x4E1A\n0xD2B6\t0x53F6\n0xD2B7\t0x66F3\n0xD2B8\t0x814B\n0xD2B9\t0x591C\n0xD2BA\t0x6DB2\n0xD2BB\t0x4E00\n0xD2BC\t0x58F9\n0xD2BD\t0x533B\n0xD2BE\t0x63D6\n0xD2BF\t0x94F1\n0xD2C0\t0x4F9D\n0xD2C1\t0x4F0A\n0xD2C2\t0x8863\n0xD2C3\t0x9890\n0xD2C4\t0x5937\n0xD2C5\t0x9057\n0xD2C6\t0x79FB\n0xD2C7\t0x4EEA\n0xD2C8\t0x80F0\n0xD2C9\t0x7591\n0xD2CA\t0x6C82\n0xD2CB\t0x5B9C\n0xD2CC\t0x59E8\n0xD2CD\t0x5F5D\n0xD2CE\t0x6905\n0xD2CF\t0x8681\n0xD2D0\t0x501A\n0xD2D1\t0x5DF2\n0xD2D2\t0x4E59\n0xD2D3\t0x77E3\n0xD2D4\t0x4EE5\n0xD2D5\t0x827A\n0xD2D6\t0x6291\n0xD2D7\t0x6613\n0xD2D8\t0x9091\n0xD2D9\t0x5C79\n0xD2DA\t0x4EBF\n0xD2DB\t0x5F79\n0xD2DC\t0x81C6\n0xD2DD\t0x9038\n0xD2DE\t0x8084\n0xD2DF\t0x75AB\n0xD2E0\t0x4EA6\n0xD2E1\t0x88D4\n0xD2E2\t0x610F\n0xD2E3\t0x6BC5\n0xD2E4\t0x5FC6\n0xD2E5\t0x4E49\n0xD2E6\t0x76CA\n0xD2E7\t0x6EA2\n0xD2E8\t0x8BE3\n0xD2E9\t0x8BAE\n0xD2EA\t0x8C0A\n0xD2EB\t0x8BD1\n0xD2EC\t0x5F02\n0xD2ED\t0x7FFC\n0xD2EE\t0x7FCC\n0xD2EF\t0x7ECE\n0xD2F0\t0x8335\n0xD2F1\t0x836B\n0xD2F2\t0x56E0\n0xD2F3\t0x6BB7\n0xD2F4\t0x97F3\n0xD2F5\t0x9634\n0xD2F6\t0x59FB\n0xD2F7\t0x541F\n0xD2F8\t0x94F6\n0xD2F9\t0x6DEB\n0xD2FA\t0x5BC5\n0xD2FB\t0x996E\n0xD2FC\t0x5C39\n0xD2FD\t0x5F15\n0xD2FE\t0x9690\n0xD340\t0x89A2\n0xD341\t0x89A3\n0xD342\t0x89A4\n0xD343\t0x89A5\n0xD344\t0x89A6\n0xD345\t0x89A7\n0xD346\t0x89A8\n0xD347\t0x89A9\n0xD348\t0x89AA\n0xD349\t0x89AB\n0xD34A\t0x89AC\n0xD34B\t0x89AD\n0xD34C\t0x89AE\n0xD34D\t0x89AF\n0xD34E\t0x89B0\n0xD34F\t0x89B1\n0xD350\t0x89B2\n0xD351\t0x89B3\n0xD352\t0x89B4\n0xD353\t0x89B5\n0xD354\t0x89B6\n0xD355\t0x89B7\n0xD356\t0x89B8\n0xD357\t0x89B9\n0xD358\t0x89BA\n0xD359\t0x89BB\n0xD35A\t0x89BC\n0xD35B\t0x89BD\n0xD35C\t0x89BE\n0xD35D\t0x89BF\n0xD35E\t0x89C0\n0xD35F\t0x89C3\n0xD360\t0x89CD\n0xD361\t0x89D3\n0xD362\t0x89D4\n0xD363\t0x89D5\n0xD364\t0x89D7\n0xD365\t0x89D8\n0xD366\t0x89D9\n0xD367\t0x89DB\n0xD368\t0x89DD\n0xD369\t0x89DF\n0xD36A\t0x89E0\n0xD36B\t0x89E1\n0xD36C\t0x89E2\n0xD36D\t0x89E4\n0xD36E\t0x89E7\n0xD36F\t0x89E8\n0xD370\t0x89E9\n0xD371\t0x89EA\n0xD372\t0x89EC\n0xD373\t0x89ED\n0xD374\t0x89EE\n0xD375\t0x89F0\n0xD376\t0x89F1\n0xD377\t0x89F2\n0xD378\t0x89F4\n0xD379\t0x89F5\n0xD37A\t0x89F6\n0xD37B\t0x89F7\n0xD37C\t0x89F8\n0xD37D\t0x89F9\n0xD37E\t0x89FA\n0xD380\t0x89FB\n0xD381\t0x89FC\n0xD382\t0x89FD\n0xD383\t0x89FE\n0xD384\t0x89FF\n0xD385\t0x8A01\n0xD386\t0x8A02\n0xD387\t0x8A03\n0xD388\t0x8A04\n0xD389\t0x8A05\n0xD38A\t0x8A06\n0xD38B\t0x8A08\n0xD38C\t0x8A09\n0xD38D\t0x8A0A\n0xD38E\t0x8A0B\n0xD38F\t0x8A0C\n0xD390\t0x8A0D\n0xD391\t0x8A0E\n0xD392\t0x8A0F\n0xD393\t0x8A10\n0xD394\t0x8A11\n0xD395\t0x8A12\n0xD396\t0x8A13\n0xD397\t0x8A14\n0xD398\t0x8A15\n0xD399\t0x8A16\n0xD39A\t0x8A17\n0xD39B\t0x8A18\n0xD39C\t0x8A19\n0xD39D\t0x8A1A\n0xD39E\t0x8A1B\n0xD39F\t0x8A1C\n0xD3A0\t0x8A1D\n0xD3A1\t0x5370\n0xD3A2\t0x82F1\n0xD3A3\t0x6A31\n0xD3A4\t0x5A74\n0xD3A5\t0x9E70\n0xD3A6\t0x5E94\n0xD3A7\t0x7F28\n0xD3A8\t0x83B9\n0xD3A9\t0x8424\n0xD3AA\t0x8425\n0xD3AB\t0x8367\n0xD3AC\t0x8747\n0xD3AD\t0x8FCE\n0xD3AE\t0x8D62\n0xD3AF\t0x76C8\n0xD3B0\t0x5F71\n0xD3B1\t0x9896\n0xD3B2\t0x786C\n0xD3B3\t0x6620\n0xD3B4\t0x54DF\n0xD3B5\t0x62E5\n0xD3B6\t0x4F63\n0xD3B7\t0x81C3\n0xD3B8\t0x75C8\n0xD3B9\t0x5EB8\n0xD3BA\t0x96CD\n0xD3BB\t0x8E0A\n0xD3BC\t0x86F9\n0xD3BD\t0x548F\n0xD3BE\t0x6CF3\n0xD3BF\t0x6D8C\n0xD3C0\t0x6C38\n0xD3C1\t0x607F\n0xD3C2\t0x52C7\n0xD3C3\t0x7528\n0xD3C4\t0x5E7D\n0xD3C5\t0x4F18\n0xD3C6\t0x60A0\n0xD3C7\t0x5FE7\n0xD3C8\t0x5C24\n0xD3C9\t0x7531\n0xD3CA\t0x90AE\n0xD3CB\t0x94C0\n0xD3CC\t0x72B9\n0xD3CD\t0x6CB9\n0xD3CE\t0x6E38\n0xD3CF\t0x9149\n0xD3D0\t0x6709\n0xD3D1\t0x53CB\n0xD3D2\t0x53F3\n0xD3D3\t0x4F51\n0xD3D4\t0x91C9\n0xD3D5\t0x8BF1\n0xD3D6\t0x53C8\n0xD3D7\t0x5E7C\n0xD3D8\t0x8FC2\n0xD3D9\t0x6DE4\n0xD3DA\t0x4E8E\n0xD3DB\t0x76C2\n0xD3DC\t0x6986\n0xD3DD\t0x865E\n0xD3DE\t0x611A\n0xD3DF\t0x8206\n0xD3E0\t0x4F59\n0xD3E1\t0x4FDE\n0xD3E2\t0x903E\n0xD3E3\t0x9C7C\n0xD3E4\t0x6109\n0xD3E5\t0x6E1D\n0xD3E6\t0x6E14\n0xD3E7\t0x9685\n0xD3E8\t0x4E88\n0xD3E9\t0x5A31\n0xD3EA\t0x96E8\n0xD3EB\t0x4E0E\n0xD3EC\t0x5C7F\n0xD3ED\t0x79B9\n0xD3EE\t0x5B87\n0xD3EF\t0x8BED\n0xD3F0\t0x7FBD\n0xD3F1\t0x7389\n0xD3F2\t0x57DF\n0xD3F3\t0x828B\n0xD3F4\t0x90C1\n0xD3F5\t0x5401\n0xD3F6\t0x9047\n0xD3F7\t0x55BB\n0xD3F8\t0x5CEA\n0xD3F9\t0x5FA1\n0xD3FA\t0x6108\n0xD3FB\t0x6B32\n0xD3FC\t0x72F1\n0xD3FD\t0x80B2\n0xD3FE\t0x8A89\n0xD440\t0x8A1E\n0xD441\t0x8A1F\n0xD442\t0x8A20\n0xD443\t0x8A21\n0xD444\t0x8A22\n0xD445\t0x8A23\n0xD446\t0x8A24\n0xD447\t0x8A25\n0xD448\t0x8A26\n0xD449\t0x8A27\n0xD44A\t0x8A28\n0xD44B\t0x8A29\n0xD44C\t0x8A2A\n0xD44D\t0x8A2B\n0xD44E\t0x8A2C\n0xD44F\t0x8A2D\n0xD450\t0x8A2E\n0xD451\t0x8A2F\n0xD452\t0x8A30\n0xD453\t0x8A31\n0xD454\t0x8A32\n0xD455\t0x8A33\n0xD456\t0x8A34\n0xD457\t0x8A35\n0xD458\t0x8A36\n0xD459\t0x8A37\n0xD45A\t0x8A38\n0xD45B\t0x8A39\n0xD45C\t0x8A3A\n0xD45D\t0x8A3B\n0xD45E\t0x8A3C\n0xD45F\t0x8A3D\n0xD460\t0x8A3F\n0xD461\t0x8A40\n0xD462\t0x8A41\n0xD463\t0x8A42\n0xD464\t0x8A43\n0xD465\t0x8A44\n0xD466\t0x8A45\n0xD467\t0x8A46\n0xD468\t0x8A47\n0xD469\t0x8A49\n0xD46A\t0x8A4A\n0xD46B\t0x8A4B\n0xD46C\t0x8A4C\n0xD46D\t0x8A4D\n0xD46E\t0x8A4E\n0xD46F\t0x8A4F\n0xD470\t0x8A50\n0xD471\t0x8A51\n0xD472\t0x8A52\n0xD473\t0x8A53\n0xD474\t0x8A54\n0xD475\t0x8A55\n0xD476\t0x8A56\n0xD477\t0x8A57\n0xD478\t0x8A58\n0xD479\t0x8A59\n0xD47A\t0x8A5A\n0xD47B\t0x8A5B\n0xD47C\t0x8A5C\n0xD47D\t0x8A5D\n0xD47E\t0x8A5E\n0xD480\t0x8A5F\n0xD481\t0x8A60\n0xD482\t0x8A61\n0xD483\t0x8A62\n0xD484\t0x8A63\n0xD485\t0x8A64\n0xD486\t0x8A65\n0xD487\t0x8A66\n0xD488\t0x8A67\n0xD489\t0x8A68\n0xD48A\t0x8A69\n0xD48B\t0x8A6A\n0xD48C\t0x8A6B\n0xD48D\t0x8A6C\n0xD48E\t0x8A6D\n0xD48F\t0x8A6E\n0xD490\t0x8A6F\n0xD491\t0x8A70\n0xD492\t0x8A71\n0xD493\t0x8A72\n0xD494\t0x8A73\n0xD495\t0x8A74\n0xD496\t0x8A75\n0xD497\t0x8A76\n0xD498\t0x8A77\n0xD499\t0x8A78\n0xD49A\t0x8A7A\n0xD49B\t0x8A7B\n0xD49C\t0x8A7C\n0xD49D\t0x8A7D\n0xD49E\t0x8A7E\n0xD49F\t0x8A7F\n0xD4A0\t0x8A80\n0xD4A1\t0x6D74\n0xD4A2\t0x5BD3\n0xD4A3\t0x88D5\n0xD4A4\t0x9884\n0xD4A5\t0x8C6B\n0xD4A6\t0x9A6D\n0xD4A7\t0x9E33\n0xD4A8\t0x6E0A\n0xD4A9\t0x51A4\n0xD4AA\t0x5143\n0xD4AB\t0x57A3\n0xD4AC\t0x8881\n0xD4AD\t0x539F\n0xD4AE\t0x63F4\n0xD4AF\t0x8F95\n0xD4B0\t0x56ED\n0xD4B1\t0x5458\n0xD4B2\t0x5706\n0xD4B3\t0x733F\n0xD4B4\t0x6E90\n0xD4B5\t0x7F18\n0xD4B6\t0x8FDC\n0xD4B7\t0x82D1\n0xD4B8\t0x613F\n0xD4B9\t0x6028\n0xD4BA\t0x9662\n0xD4BB\t0x66F0\n0xD4BC\t0x7EA6\n0xD4BD\t0x8D8A\n0xD4BE\t0x8DC3\n0xD4BF\t0x94A5\n0xD4C0\t0x5CB3\n0xD4C1\t0x7CA4\n0xD4C2\t0x6708\n0xD4C3\t0x60A6\n0xD4C4\t0x9605\n0xD4C5\t0x8018\n0xD4C6\t0x4E91\n0xD4C7\t0x90E7\n0xD4C8\t0x5300\n0xD4C9\t0x9668\n0xD4CA\t0x5141\n0xD4CB\t0x8FD0\n0xD4CC\t0x8574\n0xD4CD\t0x915D\n0xD4CE\t0x6655\n0xD4CF\t0x97F5\n0xD4D0\t0x5B55\n0xD4D1\t0x531D\n0xD4D2\t0x7838\n0xD4D3\t0x6742\n0xD4D4\t0x683D\n0xD4D5\t0x54C9\n0xD4D6\t0x707E\n0xD4D7\t0x5BB0\n0xD4D8\t0x8F7D\n0xD4D9\t0x518D\n0xD4DA\t0x5728\n0xD4DB\t0x54B1\n0xD4DC\t0x6512\n0xD4DD\t0x6682\n0xD4DE\t0x8D5E\n0xD4DF\t0x8D43\n0xD4E0\t0x810F\n0xD4E1\t0x846C\n0xD4E2\t0x906D\n0xD4E3\t0x7CDF\n0xD4E4\t0x51FF\n0xD4E5\t0x85FB\n0xD4E6\t0x67A3\n0xD4E7\t0x65E9\n0xD4E8\t0x6FA1\n0xD4E9\t0x86A4\n0xD4EA\t0x8E81\n0xD4EB\t0x566A\n0xD4EC\t0x9020\n0xD4ED\t0x7682\n0xD4EE\t0x7076\n0xD4EF\t0x71E5\n0xD4F0\t0x8D23\n0xD4F1\t0x62E9\n0xD4F2\t0x5219\n0xD4F3\t0x6CFD\n0xD4F4\t0x8D3C\n0xD4F5\t0x600E\n0xD4F6\t0x589E\n0xD4F7\t0x618E\n0xD4F8\t0x66FE\n0xD4F9\t0x8D60\n0xD4FA\t0x624E\n0xD4FB\t0x55B3\n0xD4FC\t0x6E23\n0xD4FD\t0x672D\n0xD4FE\t0x8F67\n0xD540\t0x8A81\n0xD541\t0x8A82\n0xD542\t0x8A83\n0xD543\t0x8A84\n0xD544\t0x8A85\n0xD545\t0x8A86\n0xD546\t0x8A87\n0xD547\t0x8A88\n0xD548\t0x8A8B\n0xD549\t0x8A8C\n0xD54A\t0x8A8D\n0xD54B\t0x8A8E\n0xD54C\t0x8A8F\n0xD54D\t0x8A90\n0xD54E\t0x8A91\n0xD54F\t0x8A92\n0xD550\t0x8A94\n0xD551\t0x8A95\n0xD552\t0x8A96\n0xD553\t0x8A97\n0xD554\t0x8A98\n0xD555\t0x8A99\n0xD556\t0x8A9A\n0xD557\t0x8A9B\n0xD558\t0x8A9C\n0xD559\t0x8A9D\n0xD55A\t0x8A9E\n0xD55B\t0x8A9F\n0xD55C\t0x8AA0\n0xD55D\t0x8AA1\n0xD55E\t0x8AA2\n0xD55F\t0x8AA3\n0xD560\t0x8AA4\n0xD561\t0x8AA5\n0xD562\t0x8AA6\n0xD563\t0x8AA7\n0xD564\t0x8AA8\n0xD565\t0x8AA9\n0xD566\t0x8AAA\n0xD567\t0x8AAB\n0xD568\t0x8AAC\n0xD569\t0x8AAD\n0xD56A\t0x8AAE\n0xD56B\t0x8AAF\n0xD56C\t0x8AB0\n0xD56D\t0x8AB1\n0xD56E\t0x8AB2\n0xD56F\t0x8AB3\n0xD570\t0x8AB4\n0xD571\t0x8AB5\n0xD572\t0x8AB6\n0xD573\t0x8AB7\n0xD574\t0x8AB8\n0xD575\t0x8AB9\n0xD576\t0x8ABA\n0xD577\t0x8ABB\n0xD578\t0x8ABC\n0xD579\t0x8ABD\n0xD57A\t0x8ABE\n0xD57B\t0x8ABF\n0xD57C\t0x8AC0\n0xD57D\t0x8AC1\n0xD57E\t0x8AC2\n0xD580\t0x8AC3\n0xD581\t0x8AC4\n0xD582\t0x8AC5\n0xD583\t0x8AC6\n0xD584\t0x8AC7\n0xD585\t0x8AC8\n0xD586\t0x8AC9\n0xD587\t0x8ACA\n0xD588\t0x8ACB\n0xD589\t0x8ACC\n0xD58A\t0x8ACD\n0xD58B\t0x8ACE\n0xD58C\t0x8ACF\n0xD58D\t0x8AD0\n0xD58E\t0x8AD1\n0xD58F\t0x8AD2\n0xD590\t0x8AD3\n0xD591\t0x8AD4\n0xD592\t0x8AD5\n0xD593\t0x8AD6\n0xD594\t0x8AD7\n0xD595\t0x8AD8\n0xD596\t0x8AD9\n0xD597\t0x8ADA\n0xD598\t0x8ADB\n0xD599\t0x8ADC\n0xD59A\t0x8ADD\n0xD59B\t0x8ADE\n0xD59C\t0x8ADF\n0xD59D\t0x8AE0\n0xD59E\t0x8AE1\n0xD59F\t0x8AE2\n0xD5A0\t0x8AE3\n0xD5A1\t0x94E1\n0xD5A2\t0x95F8\n0xD5A3\t0x7728\n0xD5A4\t0x6805\n0xD5A5\t0x69A8\n0xD5A6\t0x548B\n0xD5A7\t0x4E4D\n0xD5A8\t0x70B8\n0xD5A9\t0x8BC8\n0xD5AA\t0x6458\n0xD5AB\t0x658B\n0xD5AC\t0x5B85\n0xD5AD\t0x7A84\n0xD5AE\t0x503A\n0xD5AF\t0x5BE8\n0xD5B0\t0x77BB\n0xD5B1\t0x6BE1\n0xD5B2\t0x8A79\n0xD5B3\t0x7C98\n0xD5B4\t0x6CBE\n0xD5B5\t0x76CF\n0xD5B6\t0x65A9\n0xD5B7\t0x8F97\n0xD5B8\t0x5D2D\n0xD5B9\t0x5C55\n0xD5BA\t0x8638\n0xD5BB\t0x6808\n0xD5BC\t0x5360\n0xD5BD\t0x6218\n0xD5BE\t0x7AD9\n0xD5BF\t0x6E5B\n0xD5C0\t0x7EFD\n0xD5C1\t0x6A1F\n0xD5C2\t0x7AE0\n0xD5C3\t0x5F70\n0xD5C4\t0x6F33\n0xD5C5\t0x5F20\n0xD5C6\t0x638C\n0xD5C7\t0x6DA8\n0xD5C8\t0x6756\n0xD5C9\t0x4E08\n0xD5CA\t0x5E10\n0xD5CB\t0x8D26\n0xD5CC\t0x4ED7\n0xD5CD\t0x80C0\n0xD5CE\t0x7634\n0xD5CF\t0x969C\n0xD5D0\t0x62DB\n0xD5D1\t0x662D\n0xD5D2\t0x627E\n0xD5D3\t0x6CBC\n0xD5D4\t0x8D75\n0xD5D5\t0x7167\n0xD5D6\t0x7F69\n0xD5D7\t0x5146\n0xD5D8\t0x8087\n0xD5D9\t0x53EC\n0xD5DA\t0x906E\n0xD5DB\t0x6298\n0xD5DC\t0x54F2\n0xD5DD\t0x86F0\n0xD5DE\t0x8F99\n0xD5DF\t0x8005\n0xD5E0\t0x9517\n0xD5E1\t0x8517\n0xD5E2\t0x8FD9\n0xD5E3\t0x6D59\n0xD5E4\t0x73CD\n0xD5E5\t0x659F\n0xD5E6\t0x771F\n0xD5E7\t0x7504\n0xD5E8\t0x7827\n0xD5E9\t0x81FB\n0xD5EA\t0x8D1E\n0xD5EB\t0x9488\n0xD5EC\t0x4FA6\n0xD5ED\t0x6795\n0xD5EE\t0x75B9\n0xD5EF\t0x8BCA\n0xD5F0\t0x9707\n0xD5F1\t0x632F\n0xD5F2\t0x9547\n0xD5F3\t0x9635\n0xD5F4\t0x84B8\n0xD5F5\t0x6323\n0xD5F6\t0x7741\n0xD5F7\t0x5F81\n0xD5F8\t0x72F0\n0xD5F9\t0x4E89\n0xD5FA\t0x6014\n0xD5FB\t0x6574\n0xD5FC\t0x62EF\n0xD5FD\t0x6B63\n0xD5FE\t0x653F\n0xD640\t0x8AE4\n0xD641\t0x8AE5\n0xD642\t0x8AE6\n0xD643\t0x8AE7\n0xD644\t0x8AE8\n0xD645\t0x8AE9\n0xD646\t0x8AEA\n0xD647\t0x8AEB\n0xD648\t0x8AEC\n0xD649\t0x8AED\n0xD64A\t0x8AEE\n0xD64B\t0x8AEF\n0xD64C\t0x8AF0\n0xD64D\t0x8AF1\n0xD64E\t0x8AF2\n0xD64F\t0x8AF3\n0xD650\t0x8AF4\n0xD651\t0x8AF5\n0xD652\t0x8AF6\n0xD653\t0x8AF7\n0xD654\t0x8AF8\n0xD655\t0x8AF9\n0xD656\t0x8AFA\n0xD657\t0x8AFB\n0xD658\t0x8AFC\n0xD659\t0x8AFD\n0xD65A\t0x8AFE\n0xD65B\t0x8AFF\n0xD65C\t0x8B00\n0xD65D\t0x8B01\n0xD65E\t0x8B02\n0xD65F\t0x8B03\n0xD660\t0x8B04\n0xD661\t0x8B05\n0xD662\t0x8B06\n0xD663\t0x8B08\n0xD664\t0x8B09\n0xD665\t0x8B0A\n0xD666\t0x8B0B\n0xD667\t0x8B0C\n0xD668\t0x8B0D\n0xD669\t0x8B0E\n0xD66A\t0x8B0F\n0xD66B\t0x8B10\n0xD66C\t0x8B11\n0xD66D\t0x8B12\n0xD66E\t0x8B13\n0xD66F\t0x8B14\n0xD670\t0x8B15\n0xD671\t0x8B16\n0xD672\t0x8B17\n0xD673\t0x8B18\n0xD674\t0x8B19\n0xD675\t0x8B1A\n0xD676\t0x8B1B\n0xD677\t0x8B1C\n0xD678\t0x8B1D\n0xD679\t0x8B1E\n0xD67A\t0x8B1F\n0xD67B\t0x8B20\n0xD67C\t0x8B21\n0xD67D\t0x8B22\n0xD67E\t0x8B23\n0xD680\t0x8B24\n0xD681\t0x8B25\n0xD682\t0x8B27\n0xD683\t0x8B28\n0xD684\t0x8B29\n0xD685\t0x8B2A\n0xD686\t0x8B2B\n0xD687\t0x8B2C\n0xD688\t0x8B2D\n0xD689\t0x8B2E\n0xD68A\t0x8B2F\n0xD68B\t0x8B30\n0xD68C\t0x8B31\n0xD68D\t0x8B32\n0xD68E\t0x8B33\n0xD68F\t0x8B34\n0xD690\t0x8B35\n0xD691\t0x8B36\n0xD692\t0x8B37\n0xD693\t0x8B38\n0xD694\t0x8B39\n0xD695\t0x8B3A\n0xD696\t0x8B3B\n0xD697\t0x8B3C\n0xD698\t0x8B3D\n0xD699\t0x8B3E\n0xD69A\t0x8B3F\n0xD69B\t0x8B40\n0xD69C\t0x8B41\n0xD69D\t0x8B42\n0xD69E\t0x8B43\n0xD69F\t0x8B44\n0xD6A0\t0x8B45\n0xD6A1\t0x5E27\n0xD6A2\t0x75C7\n0xD6A3\t0x90D1\n0xD6A4\t0x8BC1\n0xD6A5\t0x829D\n0xD6A6\t0x679D\n0xD6A7\t0x652F\n0xD6A8\t0x5431\n0xD6A9\t0x8718\n0xD6AA\t0x77E5\n0xD6AB\t0x80A2\n0xD6AC\t0x8102\n0xD6AD\t0x6C41\n0xD6AE\t0x4E4B\n0xD6AF\t0x7EC7\n0xD6B0\t0x804C\n0xD6B1\t0x76F4\n0xD6B2\t0x690D\n0xD6B3\t0x6B96\n0xD6B4\t0x6267\n0xD6B5\t0x503C\n0xD6B6\t0x4F84\n0xD6B7\t0x5740\n0xD6B8\t0x6307\n0xD6B9\t0x6B62\n0xD6BA\t0x8DBE\n0xD6BB\t0x53EA\n0xD6BC\t0x65E8\n0xD6BD\t0x7EB8\n0xD6BE\t0x5FD7\n0xD6BF\t0x631A\n0xD6C0\t0x63B7\n0xD6C1\t0x81F3\n0xD6C2\t0x81F4\n0xD6C3\t0x7F6E\n0xD6C4\t0x5E1C\n0xD6C5\t0x5CD9\n0xD6C6\t0x5236\n0xD6C7\t0x667A\n0xD6C8\t0x79E9\n0xD6C9\t0x7A1A\n0xD6CA\t0x8D28\n0xD6CB\t0x7099\n0xD6CC\t0x75D4\n0xD6CD\t0x6EDE\n0xD6CE\t0x6CBB\n0xD6CF\t0x7A92\n0xD6D0\t0x4E2D\n0xD6D1\t0x76C5\n0xD6D2\t0x5FE0\n0xD6D3\t0x949F\n0xD6D4\t0x8877\n0xD6D5\t0x7EC8\n0xD6D6\t0x79CD\n0xD6D7\t0x80BF\n0xD6D8\t0x91CD\n0xD6D9\t0x4EF2\n0xD6DA\t0x4F17\n0xD6DB\t0x821F\n0xD6DC\t0x5468\n0xD6DD\t0x5DDE\n0xD6DE\t0x6D32\n0xD6DF\t0x8BCC\n0xD6E0\t0x7CA5\n0xD6E1\t0x8F74\n0xD6E2\t0x8098\n0xD6E3\t0x5E1A\n0xD6E4\t0x5492\n0xD6E5\t0x76B1\n0xD6E6\t0x5B99\n0xD6E7\t0x663C\n0xD6E8\t0x9AA4\n0xD6E9\t0x73E0\n0xD6EA\t0x682A\n0xD6EB\t0x86DB\n0xD6EC\t0x6731\n0xD6ED\t0x732A\n0xD6EE\t0x8BF8\n0xD6EF\t0x8BDB\n0xD6F0\t0x9010\n0xD6F1\t0x7AF9\n0xD6F2\t0x70DB\n0xD6F3\t0x716E\n0xD6F4\t0x62C4\n0xD6F5\t0x77A9\n0xD6F6\t0x5631\n0xD6F7\t0x4E3B\n0xD6F8\t0x8457\n0xD6F9\t0x67F1\n0xD6FA\t0x52A9\n0xD6FB\t0x86C0\n0xD6FC\t0x8D2E\n0xD6FD\t0x94F8\n0xD6FE\t0x7B51\n0xD740\t0x8B46\n0xD741\t0x8B47\n0xD742\t0x8B48\n0xD743\t0x8B49\n0xD744\t0x8B4A\n0xD745\t0x8B4B\n0xD746\t0x8B4C\n0xD747\t0x8B4D\n0xD748\t0x8B4E\n0xD749\t0x8B4F\n0xD74A\t0x8B50\n0xD74B\t0x8B51\n0xD74C\t0x8B52\n0xD74D\t0x8B53\n0xD74E\t0x8B54\n0xD74F\t0x8B55\n0xD750\t0x8B56\n0xD751\t0x8B57\n0xD752\t0x8B58\n0xD753\t0x8B59\n0xD754\t0x8B5A\n0xD755\t0x8B5B\n0xD756\t0x8B5C\n0xD757\t0x8B5D\n0xD758\t0x8B5E\n0xD759\t0x8B5F\n0xD75A\t0x8B60\n0xD75B\t0x8B61\n0xD75C\t0x8B62\n0xD75D\t0x8B63\n0xD75E\t0x8B64\n0xD75F\t0x8B65\n0xD760\t0x8B67\n0xD761\t0x8B68\n0xD762\t0x8B69\n0xD763\t0x8B6A\n0xD764\t0x8B6B\n0xD765\t0x8B6D\n0xD766\t0x8B6E\n0xD767\t0x8B6F\n0xD768\t0x8B70\n0xD769\t0x8B71\n0xD76A\t0x8B72\n0xD76B\t0x8B73\n0xD76C\t0x8B74\n0xD76D\t0x8B75\n0xD76E\t0x8B76\n0xD76F\t0x8B77\n0xD770\t0x8B78\n0xD771\t0x8B79\n0xD772\t0x8B7A\n0xD773\t0x8B7B\n0xD774\t0x8B7C\n0xD775\t0x8B7D\n0xD776\t0x8B7E\n0xD777\t0x8B7F\n0xD778\t0x8B80\n0xD779\t0x8B81\n0xD77A\t0x8B82\n0xD77B\t0x8B83\n0xD77C\t0x8B84\n0xD77D\t0x8B85\n0xD77E\t0x8B86\n0xD780\t0x8B87\n0xD781\t0x8B88\n0xD782\t0x8B89\n0xD783\t0x8B8A\n0xD784\t0x8B8B\n0xD785\t0x8B8C\n0xD786\t0x8B8D\n0xD787\t0x8B8E\n0xD788\t0x8B8F\n0xD789\t0x8B90\n0xD78A\t0x8B91\n0xD78B\t0x8B92\n0xD78C\t0x8B93\n0xD78D\t0x8B94\n0xD78E\t0x8B95\n0xD78F\t0x8B96\n0xD790\t0x8B97\n0xD791\t0x8B98\n0xD792\t0x8B99\n0xD793\t0x8B9A\n0xD794\t0x8B9B\n0xD795\t0x8B9C\n0xD796\t0x8B9D\n0xD797\t0x8B9E\n0xD798\t0x8B9F\n0xD799\t0x8BAC\n0xD79A\t0x8BB1\n0xD79B\t0x8BBB\n0xD79C\t0x8BC7\n0xD79D\t0x8BD0\n0xD79E\t0x8BEA\n0xD79F\t0x8C09\n0xD7A0\t0x8C1E\n0xD7A1\t0x4F4F\n0xD7A2\t0x6CE8\n0xD7A3\t0x795D\n0xD7A4\t0x9A7B\n0xD7A5\t0x6293\n0xD7A6\t0x722A\n0xD7A7\t0x62FD\n0xD7A8\t0x4E13\n0xD7A9\t0x7816\n0xD7AA\t0x8F6C\n0xD7AB\t0x64B0\n0xD7AC\t0x8D5A\n0xD7AD\t0x7BC6\n0xD7AE\t0x6869\n0xD7AF\t0x5E84\n0xD7B0\t0x88C5\n0xD7B1\t0x5986\n0xD7B2\t0x649E\n0xD7B3\t0x58EE\n0xD7B4\t0x72B6\n0xD7B5\t0x690E\n0xD7B6\t0x9525\n0xD7B7\t0x8FFD\n0xD7B8\t0x8D58\n0xD7B9\t0x5760\n0xD7BA\t0x7F00\n0xD7BB\t0x8C06\n0xD7BC\t0x51C6\n0xD7BD\t0x6349\n0xD7BE\t0x62D9\n0xD7BF\t0x5353\n0xD7C0\t0x684C\n0xD7C1\t0x7422\n0xD7C2\t0x8301\n0xD7C3\t0x914C\n0xD7C4\t0x5544\n0xD7C5\t0x7740\n0xD7C6\t0x707C\n0xD7C7\t0x6D4A\n0xD7C8\t0x5179\n0xD7C9\t0x54A8\n0xD7CA\t0x8D44\n0xD7CB\t0x59FF\n0xD7CC\t0x6ECB\n0xD7CD\t0x6DC4\n0xD7CE\t0x5B5C\n0xD7CF\t0x7D2B\n0xD7D0\t0x4ED4\n0xD7D1\t0x7C7D\n0xD7D2\t0x6ED3\n0xD7D3\t0x5B50\n0xD7D4\t0x81EA\n0xD7D5\t0x6E0D\n0xD7D6\t0x5B57\n0xD7D7\t0x9B03\n0xD7D8\t0x68D5\n0xD7D9\t0x8E2A\n0xD7DA\t0x5B97\n0xD7DB\t0x7EFC\n0xD7DC\t0x603B\n0xD7DD\t0x7EB5\n0xD7DE\t0x90B9\n0xD7DF\t0x8D70\n0xD7E0\t0x594F\n0xD7E1\t0x63CD\n0xD7E2\t0x79DF\n0xD7E3\t0x8DB3\n0xD7E4\t0x5352\n0xD7E5\t0x65CF\n0xD7E6\t0x7956\n0xD7E7\t0x8BC5\n0xD7E8\t0x963B\n0xD7E9\t0x7EC4\n0xD7EA\t0x94BB\n0xD7EB\t0x7E82\n0xD7EC\t0x5634\n0xD7ED\t0x9189\n0xD7EE\t0x6700\n0xD7EF\t0x7F6A\n0xD7F0\t0x5C0A\n0xD7F1\t0x9075\n0xD7F2\t0x6628\n0xD7F3\t0x5DE6\n0xD7F4\t0x4F50\n0xD7F5\t0x67DE\n0xD7F6\t0x505A\n0xD7F7\t0x4F5C\n0xD7F8\t0x5750\n0xD7F9\t0x5EA7\n0xD7FA\t0xE810\n0xD7FB\t0xE811\n0xD7FC\t0xE812\n0xD7FD\t0xE813\n0xD7FE\t0xE814\n0xD840\t0x8C38\n0xD841\t0x8C39\n0xD842\t0x8C3A\n0xD843\t0x8C3B\n0xD844\t0x8C3C\n0xD845\t0x8C3D\n0xD846\t0x8C3E\n0xD847\t0x8C3F\n0xD848\t0x8C40\n0xD849\t0x8C42\n0xD84A\t0x8C43\n0xD84B\t0x8C44\n0xD84C\t0x8C45\n0xD84D\t0x8C48\n0xD84E\t0x8C4A\n0xD84F\t0x8C4B\n0xD850\t0x8C4D\n0xD851\t0x8C4E\n0xD852\t0x8C4F\n0xD853\t0x8C50\n0xD854\t0x8C51\n0xD855\t0x8C52\n0xD856\t0x8C53\n0xD857\t0x8C54\n0xD858\t0x8C56\n0xD859\t0x8C57\n0xD85A\t0x8C58\n0xD85B\t0x8C59\n0xD85C\t0x8C5B\n0xD85D\t0x8C5C\n0xD85E\t0x8C5D\n0xD85F\t0x8C5E\n0xD860\t0x8C5F\n0xD861\t0x8C60\n0xD862\t0x8C63\n0xD863\t0x8C64\n0xD864\t0x8C65\n0xD865\t0x8C66\n0xD866\t0x8C67\n0xD867\t0x8C68\n0xD868\t0x8C69\n0xD869\t0x8C6C\n0xD86A\t0x8C6D\n0xD86B\t0x8C6E\n0xD86C\t0x8C6F\n0xD86D\t0x8C70\n0xD86E\t0x8C71\n0xD86F\t0x8C72\n0xD870\t0x8C74\n0xD871\t0x8C75\n0xD872\t0x8C76\n0xD873\t0x8C77\n0xD874\t0x8C7B\n0xD875\t0x8C7C\n0xD876\t0x8C7D\n0xD877\t0x8C7E\n0xD878\t0x8C7F\n0xD879\t0x8C80\n0xD87A\t0x8C81\n0xD87B\t0x8C83\n0xD87C\t0x8C84\n0xD87D\t0x8C86\n0xD87E\t0x8C87\n0xD880\t0x8C88\n0xD881\t0x8C8B\n0xD882\t0x8C8D\n0xD883\t0x8C8E\n0xD884\t0x8C8F\n0xD885\t0x8C90\n0xD886\t0x8C91\n0xD887\t0x8C92\n0xD888\t0x8C93\n0xD889\t0x8C95\n0xD88A\t0x8C96\n0xD88B\t0x8C97\n0xD88C\t0x8C99\n0xD88D\t0x8C9A\n0xD88E\t0x8C9B\n0xD88F\t0x8C9C\n0xD890\t0x8C9D\n0xD891\t0x8C9E\n0xD892\t0x8C9F\n0xD893\t0x8CA0\n0xD894\t0x8CA1\n0xD895\t0x8CA2\n0xD896\t0x8CA3\n0xD897\t0x8CA4\n0xD898\t0x8CA5\n0xD899\t0x8CA6\n0xD89A\t0x8CA7\n0xD89B\t0x8CA8\n0xD89C\t0x8CA9\n0xD89D\t0x8CAA\n0xD89E\t0x8CAB\n0xD89F\t0x8CAC\n0xD8A0\t0x8CAD\n0xD8A1\t0x4E8D\n0xD8A2\t0x4E0C\n0xD8A3\t0x5140\n0xD8A4\t0x4E10\n0xD8A5\t0x5EFF\n0xD8A6\t0x5345\n0xD8A7\t0x4E15\n0xD8A8\t0x4E98\n0xD8A9\t0x4E1E\n0xD8AA\t0x9B32\n0xD8AB\t0x5B6C\n0xD8AC\t0x5669\n0xD8AD\t0x4E28\n0xD8AE\t0x79BA\n0xD8AF\t0x4E3F\n0xD8B0\t0x5315\n0xD8B1\t0x4E47\n0xD8B2\t0x592D\n0xD8B3\t0x723B\n0xD8B4\t0x536E\n0xD8B5\t0x6C10\n0xD8B6\t0x56DF\n0xD8B7\t0x80E4\n0xD8B8\t0x9997\n0xD8B9\t0x6BD3\n0xD8BA\t0x777E\n0xD8BB\t0x9F17\n0xD8BC\t0x4E36\n0xD8BD\t0x4E9F\n0xD8BE\t0x9F10\n0xD8BF\t0x4E5C\n0xD8C0\t0x4E69\n0xD8C1\t0x4E93\n0xD8C2\t0x8288\n0xD8C3\t0x5B5B\n0xD8C4\t0x556C\n0xD8C5\t0x560F\n0xD8C6\t0x4EC4\n0xD8C7\t0x538D\n0xD8C8\t0x539D\n0xD8C9\t0x53A3\n0xD8CA\t0x53A5\n0xD8CB\t0x53AE\n0xD8CC\t0x9765\n0xD8CD\t0x8D5D\n0xD8CE\t0x531A\n0xD8CF\t0x53F5\n0xD8D0\t0x5326\n0xD8D1\t0x532E\n0xD8D2\t0x533E\n0xD8D3\t0x8D5C\n0xD8D4\t0x5366\n0xD8D5\t0x5363\n0xD8D6\t0x5202\n0xD8D7\t0x5208\n0xD8D8\t0x520E\n0xD8D9\t0x522D\n0xD8DA\t0x5233\n0xD8DB\t0x523F\n0xD8DC\t0x5240\n0xD8DD\t0x524C\n0xD8DE\t0x525E\n0xD8DF\t0x5261\n0xD8E0\t0x525C\n0xD8E1\t0x84AF\n0xD8E2\t0x527D\n0xD8E3\t0x5282\n0xD8E4\t0x5281\n0xD8E5\t0x5290\n0xD8E6\t0x5293\n0xD8E7\t0x5182\n0xD8E8\t0x7F54\n0xD8E9\t0x4EBB\n0xD8EA\t0x4EC3\n0xD8EB\t0x4EC9\n0xD8EC\t0x4EC2\n0xD8ED\t0x4EE8\n0xD8EE\t0x4EE1\n0xD8EF\t0x4EEB\n0xD8F0\t0x4EDE\n0xD8F1\t0x4F1B\n0xD8F2\t0x4EF3\n0xD8F3\t0x4F22\n0xD8F4\t0x4F64\n0xD8F5\t0x4EF5\n0xD8F6\t0x4F25\n0xD8F7\t0x4F27\n0xD8F8\t0x4F09\n0xD8F9\t0x4F2B\n0xD8FA\t0x4F5E\n0xD8FB\t0x4F67\n0xD8FC\t0x6538\n0xD8FD\t0x4F5A\n0xD8FE\t0x4F5D\n0xD940\t0x8CAE\n0xD941\t0x8CAF\n0xD942\t0x8CB0\n0xD943\t0x8CB1\n0xD944\t0x8CB2\n0xD945\t0x8CB3\n0xD946\t0x8CB4\n0xD947\t0x8CB5\n0xD948\t0x8CB6\n0xD949\t0x8CB7\n0xD94A\t0x8CB8\n0xD94B\t0x8CB9\n0xD94C\t0x8CBA\n0xD94D\t0x8CBB\n0xD94E\t0x8CBC\n0xD94F\t0x8CBD\n0xD950\t0x8CBE\n0xD951\t0x8CBF\n0xD952\t0x8CC0\n0xD953\t0x8CC1\n0xD954\t0x8CC2\n0xD955\t0x8CC3\n0xD956\t0x8CC4\n0xD957\t0x8CC5\n0xD958\t0x8CC6\n0xD959\t0x8CC7\n0xD95A\t0x8CC8\n0xD95B\t0x8CC9\n0xD95C\t0x8CCA\n0xD95D\t0x8CCB\n0xD95E\t0x8CCC\n0xD95F\t0x8CCD\n0xD960\t0x8CCE\n0xD961\t0x8CCF\n0xD962\t0x8CD0\n0xD963\t0x8CD1\n0xD964\t0x8CD2\n0xD965\t0x8CD3\n0xD966\t0x8CD4\n0xD967\t0x8CD5\n0xD968\t0x8CD6\n0xD969\t0x8CD7\n0xD96A\t0x8CD8\n0xD96B\t0x8CD9\n0xD96C\t0x8CDA\n0xD96D\t0x8CDB\n0xD96E\t0x8CDC\n0xD96F\t0x8CDD\n0xD970\t0x8CDE\n0xD971\t0x8CDF\n0xD972\t0x8CE0\n0xD973\t0x8CE1\n0xD974\t0x8CE2\n0xD975\t0x8CE3\n0xD976\t0x8CE4\n0xD977\t0x8CE5\n0xD978\t0x8CE6\n0xD979\t0x8CE7\n0xD97A\t0x8CE8\n0xD97B\t0x8CE9\n0xD97C\t0x8CEA\n0xD97D\t0x8CEB\n0xD97E\t0x8CEC\n0xD980\t0x8CED\n0xD981\t0x8CEE\n0xD982\t0x8CEF\n0xD983\t0x8CF0\n0xD984\t0x8CF1\n0xD985\t0x8CF2\n0xD986\t0x8CF3\n0xD987\t0x8CF4\n0xD988\t0x8CF5\n0xD989\t0x8CF6\n0xD98A\t0x8CF7\n0xD98B\t0x8CF8\n0xD98C\t0x8CF9\n0xD98D\t0x8CFA\n0xD98E\t0x8CFB\n0xD98F\t0x8CFC\n0xD990\t0x8CFD\n0xD991\t0x8CFE\n0xD992\t0x8CFF\n0xD993\t0x8D00\n0xD994\t0x8D01\n0xD995\t0x8D02\n0xD996\t0x8D03\n0xD997\t0x8D04\n0xD998\t0x8D05\n0xD999\t0x8D06\n0xD99A\t0x8D07\n0xD99B\t0x8D08\n0xD99C\t0x8D09\n0xD99D\t0x8D0A\n0xD99E\t0x8D0B\n0xD99F\t0x8D0C\n0xD9A0\t0x8D0D\n0xD9A1\t0x4F5F\n0xD9A2\t0x4F57\n0xD9A3\t0x4F32\n0xD9A4\t0x4F3D\n0xD9A5\t0x4F76\n0xD9A6\t0x4F74\n0xD9A7\t0x4F91\n0xD9A8\t0x4F89\n0xD9A9\t0x4F83\n0xD9AA\t0x4F8F\n0xD9AB\t0x4F7E\n0xD9AC\t0x4F7B\n0xD9AD\t0x4FAA\n0xD9AE\t0x4F7C\n0xD9AF\t0x4FAC\n0xD9B0\t0x4F94\n0xD9B1\t0x4FE6\n0xD9B2\t0x4FE8\n0xD9B3\t0x4FEA\n0xD9B4\t0x4FC5\n0xD9B5\t0x4FDA\n0xD9B6\t0x4FE3\n0xD9B7\t0x4FDC\n0xD9B8\t0x4FD1\n0xD9B9\t0x4FDF\n0xD9BA\t0x4FF8\n0xD9BB\t0x5029\n0xD9BC\t0x504C\n0xD9BD\t0x4FF3\n0xD9BE\t0x502C\n0xD9BF\t0x500F\n0xD9C0\t0x502E\n0xD9C1\t0x502D\n0xD9C2\t0x4FFE\n0xD9C3\t0x501C\n0xD9C4\t0x500C\n0xD9C5\t0x5025\n0xD9C6\t0x5028\n0xD9C7\t0x507E\n0xD9C8\t0x5043\n0xD9C9\t0x5055\n0xD9CA\t0x5048\n0xD9CB\t0x504E\n0xD9CC\t0x506C\n0xD9CD\t0x507B\n0xD9CE\t0x50A5\n0xD9CF\t0x50A7\n0xD9D0\t0x50A9\n0xD9D1\t0x50BA\n0xD9D2\t0x50D6\n0xD9D3\t0x5106\n0xD9D4\t0x50ED\n0xD9D5\t0x50EC\n0xD9D6\t0x50E6\n0xD9D7\t0x50EE\n0xD9D8\t0x5107\n0xD9D9\t0x510B\n0xD9DA\t0x4EDD\n0xD9DB\t0x6C3D\n0xD9DC\t0x4F58\n0xD9DD\t0x4F65\n0xD9DE\t0x4FCE\n0xD9DF\t0x9FA0\n0xD9E0\t0x6C46\n0xD9E1\t0x7C74\n0xD9E2\t0x516E\n0xD9E3\t0x5DFD\n0xD9E4\t0x9EC9\n0xD9E5\t0x9998\n0xD9E6\t0x5181\n0xD9E7\t0x5914\n0xD9E8\t0x52F9\n0xD9E9\t0x530D\n0xD9EA\t0x8A07\n0xD9EB\t0x5310\n0xD9EC\t0x51EB\n0xD9ED\t0x5919\n0xD9EE\t0x5155\n0xD9EF\t0x4EA0\n0xD9F0\t0x5156\n0xD9F1\t0x4EB3\n0xD9F2\t0x886E\n0xD9F3\t0x88A4\n0xD9F4\t0x4EB5\n0xD9F5\t0x8114\n0xD9F6\t0x88D2\n0xD9F7\t0x7980\n0xD9F8\t0x5B34\n0xD9F9\t0x8803\n0xD9FA\t0x7FB8\n0xD9FB\t0x51AB\n0xD9FC\t0x51B1\n0xD9FD\t0x51BD\n0xD9FE\t0x51BC\n0xDA40\t0x8D0E\n0xDA41\t0x8D0F\n0xDA42\t0x8D10\n0xDA43\t0x8D11\n0xDA44\t0x8D12\n0xDA45\t0x8D13\n0xDA46\t0x8D14\n0xDA47\t0x8D15\n0xDA48\t0x8D16\n0xDA49\t0x8D17\n0xDA4A\t0x8D18\n0xDA4B\t0x8D19\n0xDA4C\t0x8D1A\n0xDA4D\t0x8D1B\n0xDA4E\t0x8D1C\n0xDA4F\t0x8D20\n0xDA50\t0x8D51\n0xDA51\t0x8D52\n0xDA52\t0x8D57\n0xDA53\t0x8D5F\n0xDA54\t0x8D65\n0xDA55\t0x8D68\n0xDA56\t0x8D69\n0xDA57\t0x8D6A\n0xDA58\t0x8D6C\n0xDA59\t0x8D6E\n0xDA5A\t0x8D6F\n0xDA5B\t0x8D71\n0xDA5C\t0x8D72\n0xDA5D\t0x8D78\n0xDA5E\t0x8D79\n0xDA5F\t0x8D7A\n0xDA60\t0x8D7B\n0xDA61\t0x8D7C\n0xDA62\t0x8D7D\n0xDA63\t0x8D7E\n0xDA64\t0x8D7F\n0xDA65\t0x8D80\n0xDA66\t0x8D82\n0xDA67\t0x8D83\n0xDA68\t0x8D86\n0xDA69\t0x8D87\n0xDA6A\t0x8D88\n0xDA6B\t0x8D89\n0xDA6C\t0x8D8C\n0xDA6D\t0x8D8D\n0xDA6E\t0x8D8E\n0xDA6F\t0x8D8F\n0xDA70\t0x8D90\n0xDA71\t0x8D92\n0xDA72\t0x8D93\n0xDA73\t0x8D95\n0xDA74\t0x8D96\n0xDA75\t0x8D97\n0xDA76\t0x8D98\n0xDA77\t0x8D99\n0xDA78\t0x8D9A\n0xDA79\t0x8D9B\n0xDA7A\t0x8D9C\n0xDA7B\t0x8D9D\n0xDA7C\t0x8D9E\n0xDA7D\t0x8DA0\n0xDA7E\t0x8DA1\n0xDA80\t0x8DA2\n0xDA81\t0x8DA4\n0xDA82\t0x8DA5\n0xDA83\t0x8DA6\n0xDA84\t0x8DA7\n0xDA85\t0x8DA8\n0xDA86\t0x8DA9\n0xDA87\t0x8DAA\n0xDA88\t0x8DAB\n0xDA89\t0x8DAC\n0xDA8A\t0x8DAD\n0xDA8B\t0x8DAE\n0xDA8C\t0x8DAF\n0xDA8D\t0x8DB0\n0xDA8E\t0x8DB2\n0xDA8F\t0x8DB6\n0xDA90\t0x8DB7\n0xDA91\t0x8DB9\n0xDA92\t0x8DBB\n0xDA93\t0x8DBD\n0xDA94\t0x8DC0\n0xDA95\t0x8DC1\n0xDA96\t0x8DC2\n0xDA97\t0x8DC5\n0xDA98\t0x8DC7\n0xDA99\t0x8DC8\n0xDA9A\t0x8DC9\n0xDA9B\t0x8DCA\n0xDA9C\t0x8DCD\n0xDA9D\t0x8DD0\n0xDA9E\t0x8DD2\n0xDA9F\t0x8DD3\n0xDAA0\t0x8DD4\n0xDAA1\t0x51C7\n0xDAA2\t0x5196\n0xDAA3\t0x51A2\n0xDAA4\t0x51A5\n0xDAA5\t0x8BA0\n0xDAA6\t0x8BA6\n0xDAA7\t0x8BA7\n0xDAA8\t0x8BAA\n0xDAA9\t0x8BB4\n0xDAAA\t0x8BB5\n0xDAAB\t0x8BB7\n0xDAAC\t0x8BC2\n0xDAAD\t0x8BC3\n0xDAAE\t0x8BCB\n0xDAAF\t0x8BCF\n0xDAB0\t0x8BCE\n0xDAB1\t0x8BD2\n0xDAB2\t0x8BD3\n0xDAB3\t0x8BD4\n0xDAB4\t0x8BD6\n0xDAB5\t0x8BD8\n0xDAB6\t0x8BD9\n0xDAB7\t0x8BDC\n0xDAB8\t0x8BDF\n0xDAB9\t0x8BE0\n0xDABA\t0x8BE4\n0xDABB\t0x8BE8\n0xDABC\t0x8BE9\n0xDABD\t0x8BEE\n0xDABE\t0x8BF0\n0xDABF\t0x8BF3\n0xDAC0\t0x8BF6\n0xDAC1\t0x8BF9\n0xDAC2\t0x8BFC\n0xDAC3\t0x8BFF\n0xDAC4\t0x8C00\n0xDAC5\t0x8C02\n0xDAC6\t0x8C04\n0xDAC7\t0x8C07\n0xDAC8\t0x8C0C\n0xDAC9\t0x8C0F\n0xDACA\t0x8C11\n0xDACB\t0x8C12\n0xDACC\t0x8C14\n0xDACD\t0x8C15\n0xDACE\t0x8C16\n0xDACF\t0x8C19\n0xDAD0\t0x8C1B\n0xDAD1\t0x8C18\n0xDAD2\t0x8C1D\n0xDAD3\t0x8C1F\n0xDAD4\t0x8C20\n0xDAD5\t0x8C21\n0xDAD6\t0x8C25\n0xDAD7\t0x8C27\n0xDAD8\t0x8C2A\n0xDAD9\t0x8C2B\n0xDADA\t0x8C2E\n0xDADB\t0x8C2F\n0xDADC\t0x8C32\n0xDADD\t0x8C33\n0xDADE\t0x8C35\n0xDADF\t0x8C36\n0xDAE0\t0x5369\n0xDAE1\t0x537A\n0xDAE2\t0x961D\n0xDAE3\t0x9622\n0xDAE4\t0x9621\n0xDAE5\t0x9631\n0xDAE6\t0x962A\n0xDAE7\t0x963D\n0xDAE8\t0x963C\n0xDAE9\t0x9642\n0xDAEA\t0x9649\n0xDAEB\t0x9654\n0xDAEC\t0x965F\n0xDAED\t0x9667\n0xDAEE\t0x966C\n0xDAEF\t0x9672\n0xDAF0\t0x9674\n0xDAF1\t0x9688\n0xDAF2\t0x968D\n0xDAF3\t0x9697\n0xDAF4\t0x96B0\n0xDAF5\t0x9097\n0xDAF6\t0x909B\n0xDAF7\t0x909D\n0xDAF8\t0x9099\n0xDAF9\t0x90AC\n0xDAFA\t0x90A1\n0xDAFB\t0x90B4\n0xDAFC\t0x90B3\n0xDAFD\t0x90B6\n0xDAFE\t0x90BA\n0xDB40\t0x8DD5\n0xDB41\t0x8DD8\n0xDB42\t0x8DD9\n0xDB43\t0x8DDC\n0xDB44\t0x8DE0\n0xDB45\t0x8DE1\n0xDB46\t0x8DE2\n0xDB47\t0x8DE5\n0xDB48\t0x8DE6\n0xDB49\t0x8DE7\n0xDB4A\t0x8DE9\n0xDB4B\t0x8DED\n0xDB4C\t0x8DEE\n0xDB4D\t0x8DF0\n0xDB4E\t0x8DF1\n0xDB4F\t0x8DF2\n0xDB50\t0x8DF4\n0xDB51\t0x8DF6\n0xDB52\t0x8DFC\n0xDB53\t0x8DFE\n0xDB54\t0x8DFF\n0xDB55\t0x8E00\n0xDB56\t0x8E01\n0xDB57\t0x8E02\n0xDB58\t0x8E03\n0xDB59\t0x8E04\n0xDB5A\t0x8E06\n0xDB5B\t0x8E07\n0xDB5C\t0x8E08\n0xDB5D\t0x8E0B\n0xDB5E\t0x8E0D\n0xDB5F\t0x8E0E\n0xDB60\t0x8E10\n0xDB61\t0x8E11\n0xDB62\t0x8E12\n0xDB63\t0x8E13\n0xDB64\t0x8E15\n0xDB65\t0x8E16\n0xDB66\t0x8E17\n0xDB67\t0x8E18\n0xDB68\t0x8E19\n0xDB69\t0x8E1A\n0xDB6A\t0x8E1B\n0xDB6B\t0x8E1C\n0xDB6C\t0x8E20\n0xDB6D\t0x8E21\n0xDB6E\t0x8E24\n0xDB6F\t0x8E25\n0xDB70\t0x8E26\n0xDB71\t0x8E27\n0xDB72\t0x8E28\n0xDB73\t0x8E2B\n0xDB74\t0x8E2D\n0xDB75\t0x8E30\n0xDB76\t0x8E32\n0xDB77\t0x8E33\n0xDB78\t0x8E34\n0xDB79\t0x8E36\n0xDB7A\t0x8E37\n0xDB7B\t0x8E38\n0xDB7C\t0x8E3B\n0xDB7D\t0x8E3C\n0xDB7E\t0x8E3E\n0xDB80\t0x8E3F\n0xDB81\t0x8E43\n0xDB82\t0x8E45\n0xDB83\t0x8E46\n0xDB84\t0x8E4C\n0xDB85\t0x8E4D\n0xDB86\t0x8E4E\n0xDB87\t0x8E4F\n0xDB88\t0x8E50\n0xDB89\t0x8E53\n0xDB8A\t0x8E54\n0xDB8B\t0x8E55\n0xDB8C\t0x8E56\n0xDB8D\t0x8E57\n0xDB8E\t0x8E58\n0xDB8F\t0x8E5A\n0xDB90\t0x8E5B\n0xDB91\t0x8E5C\n0xDB92\t0x8E5D\n0xDB93\t0x8E5E\n0xDB94\t0x8E5F\n0xDB95\t0x8E60\n0xDB96\t0x8E61\n0xDB97\t0x8E62\n0xDB98\t0x8E63\n0xDB99\t0x8E64\n0xDB9A\t0x8E65\n0xDB9B\t0x8E67\n0xDB9C\t0x8E68\n0xDB9D\t0x8E6A\n0xDB9E\t0x8E6B\n0xDB9F\t0x8E6E\n0xDBA0\t0x8E71\n0xDBA1\t0x90B8\n0xDBA2\t0x90B0\n0xDBA3\t0x90CF\n0xDBA4\t0x90C5\n0xDBA5\t0x90BE\n0xDBA6\t0x90D0\n0xDBA7\t0x90C4\n0xDBA8\t0x90C7\n0xDBA9\t0x90D3\n0xDBAA\t0x90E6\n0xDBAB\t0x90E2\n0xDBAC\t0x90DC\n0xDBAD\t0x90D7\n0xDBAE\t0x90DB\n0xDBAF\t0x90EB\n0xDBB0\t0x90EF\n0xDBB1\t0x90FE\n0xDBB2\t0x9104\n0xDBB3\t0x9122\n0xDBB4\t0x911E\n0xDBB5\t0x9123\n0xDBB6\t0x9131\n0xDBB7\t0x912F\n0xDBB8\t0x9139\n0xDBB9\t0x9143\n0xDBBA\t0x9146\n0xDBBB\t0x520D\n0xDBBC\t0x5942\n0xDBBD\t0x52A2\n0xDBBE\t0x52AC\n0xDBBF\t0x52AD\n0xDBC0\t0x52BE\n0xDBC1\t0x54FF\n0xDBC2\t0x52D0\n0xDBC3\t0x52D6\n0xDBC4\t0x52F0\n0xDBC5\t0x53DF\n0xDBC6\t0x71EE\n0xDBC7\t0x77CD\n0xDBC8\t0x5EF4\n0xDBC9\t0x51F5\n0xDBCA\t0x51FC\n0xDBCB\t0x9B2F\n0xDBCC\t0x53B6\n0xDBCD\t0x5F01\n0xDBCE\t0x755A\n0xDBCF\t0x5DEF\n0xDBD0\t0x574C\n0xDBD1\t0x57A9\n0xDBD2\t0x57A1\n0xDBD3\t0x587E\n0xDBD4\t0x58BC\n0xDBD5\t0x58C5\n0xDBD6\t0x58D1\n0xDBD7\t0x5729\n0xDBD8\t0x572C\n0xDBD9\t0x572A\n0xDBDA\t0x5733\n0xDBDB\t0x5739\n0xDBDC\t0x572E\n0xDBDD\t0x572F\n0xDBDE\t0x575C\n0xDBDF\t0x573B\n0xDBE0\t0x5742\n0xDBE1\t0x5769\n0xDBE2\t0x5785\n0xDBE3\t0x576B\n0xDBE4\t0x5786\n0xDBE5\t0x577C\n0xDBE6\t0x577B\n0xDBE7\t0x5768\n0xDBE8\t0x576D\n0xDBE9\t0x5776\n0xDBEA\t0x5773\n0xDBEB\t0x57AD\n0xDBEC\t0x57A4\n0xDBED\t0x578C\n0xDBEE\t0x57B2\n0xDBEF\t0x57CF\n0xDBF0\t0x57A7\n0xDBF1\t0x57B4\n0xDBF2\t0x5793\n0xDBF3\t0x57A0\n0xDBF4\t0x57D5\n0xDBF5\t0x57D8\n0xDBF6\t0x57DA\n0xDBF7\t0x57D9\n0xDBF8\t0x57D2\n0xDBF9\t0x57B8\n0xDBFA\t0x57F4\n0xDBFB\t0x57EF\n0xDBFC\t0x57F8\n0xDBFD\t0x57E4\n0xDBFE\t0x57DD\n0xDC40\t0x8E73\n0xDC41\t0x8E75\n0xDC42\t0x8E77\n0xDC43\t0x8E78\n0xDC44\t0x8E79\n0xDC45\t0x8E7A\n0xDC46\t0x8E7B\n0xDC47\t0x8E7D\n0xDC48\t0x8E7E\n0xDC49\t0x8E80\n0xDC4A\t0x8E82\n0xDC4B\t0x8E83\n0xDC4C\t0x8E84\n0xDC4D\t0x8E86\n0xDC4E\t0x8E88\n0xDC4F\t0x8E89\n0xDC50\t0x8E8A\n0xDC51\t0x8E8B\n0xDC52\t0x8E8C\n0xDC53\t0x8E8D\n0xDC54\t0x8E8E\n0xDC55\t0x8E91\n0xDC56\t0x8E92\n0xDC57\t0x8E93\n0xDC58\t0x8E95\n0xDC59\t0x8E96\n0xDC5A\t0x8E97\n0xDC5B\t0x8E98\n0xDC5C\t0x8E99\n0xDC5D\t0x8E9A\n0xDC5E\t0x8E9B\n0xDC5F\t0x8E9D\n0xDC60\t0x8E9F\n0xDC61\t0x8EA0\n0xDC62\t0x8EA1\n0xDC63\t0x8EA2\n0xDC64\t0x8EA3\n0xDC65\t0x8EA4\n0xDC66\t0x8EA5\n0xDC67\t0x8EA6\n0xDC68\t0x8EA7\n0xDC69\t0x8EA8\n0xDC6A\t0x8EA9\n0xDC6B\t0x8EAA\n0xDC6C\t0x8EAD\n0xDC6D\t0x8EAE\n0xDC6E\t0x8EB0\n0xDC6F\t0x8EB1\n0xDC70\t0x8EB3\n0xDC71\t0x8EB4\n0xDC72\t0x8EB5\n0xDC73\t0x8EB6\n0xDC74\t0x8EB7\n0xDC75\t0x8EB8\n0xDC76\t0x8EB9\n0xDC77\t0x8EBB\n0xDC78\t0x8EBC\n0xDC79\t0x8EBD\n0xDC7A\t0x8EBE\n0xDC7B\t0x8EBF\n0xDC7C\t0x8EC0\n0xDC7D\t0x8EC1\n0xDC7E\t0x8EC2\n0xDC80\t0x8EC3\n0xDC81\t0x8EC4\n0xDC82\t0x8EC5\n0xDC83\t0x8EC6\n0xDC84\t0x8EC7\n0xDC85\t0x8EC8\n0xDC86\t0x8EC9\n0xDC87\t0x8ECA\n0xDC88\t0x8ECB\n0xDC89\t0x8ECC\n0xDC8A\t0x8ECD\n0xDC8B\t0x8ECF\n0xDC8C\t0x8ED0\n0xDC8D\t0x8ED1\n0xDC8E\t0x8ED2\n0xDC8F\t0x8ED3\n0xDC90\t0x8ED4\n0xDC91\t0x8ED5\n0xDC92\t0x8ED6\n0xDC93\t0x8ED7\n0xDC94\t0x8ED8\n0xDC95\t0x8ED9\n0xDC96\t0x8EDA\n0xDC97\t0x8EDB\n0xDC98\t0x8EDC\n0xDC99\t0x8EDD\n0xDC9A\t0x8EDE\n0xDC9B\t0x8EDF\n0xDC9C\t0x8EE0\n0xDC9D\t0x8EE1\n0xDC9E\t0x8EE2\n0xDC9F\t0x8EE3\n0xDCA0\t0x8EE4\n0xDCA1\t0x580B\n0xDCA2\t0x580D\n0xDCA3\t0x57FD\n0xDCA4\t0x57ED\n0xDCA5\t0x5800\n0xDCA6\t0x581E\n0xDCA7\t0x5819\n0xDCA8\t0x5844\n0xDCA9\t0x5820\n0xDCAA\t0x5865\n0xDCAB\t0x586C\n0xDCAC\t0x5881\n0xDCAD\t0x5889\n0xDCAE\t0x589A\n0xDCAF\t0x5880\n0xDCB0\t0x99A8\n0xDCB1\t0x9F19\n0xDCB2\t0x61FF\n0xDCB3\t0x8279\n0xDCB4\t0x827D\n0xDCB5\t0x827F\n0xDCB6\t0x828F\n0xDCB7\t0x828A\n0xDCB8\t0x82A8\n0xDCB9\t0x8284\n0xDCBA\t0x828E\n0xDCBB\t0x8291\n0xDCBC\t0x8297\n0xDCBD\t0x8299\n0xDCBE\t0x82AB\n0xDCBF\t0x82B8\n0xDCC0\t0x82BE\n0xDCC1\t0x82B0\n0xDCC2\t0x82C8\n0xDCC3\t0x82CA\n0xDCC4\t0x82E3\n0xDCC5\t0x8298\n0xDCC6\t0x82B7\n0xDCC7\t0x82AE\n0xDCC8\t0x82CB\n0xDCC9\t0x82CC\n0xDCCA\t0x82C1\n0xDCCB\t0x82A9\n0xDCCC\t0x82B4\n0xDCCD\t0x82A1\n0xDCCE\t0x82AA\n0xDCCF\t0x829F\n0xDCD0\t0x82C4\n0xDCD1\t0x82CE\n0xDCD2\t0x82A4\n0xDCD3\t0x82E1\n0xDCD4\t0x8309\n0xDCD5\t0x82F7\n0xDCD6\t0x82E4\n0xDCD7\t0x830F\n0xDCD8\t0x8307\n0xDCD9\t0x82DC\n0xDCDA\t0x82F4\n0xDCDB\t0x82D2\n0xDCDC\t0x82D8\n0xDCDD\t0x830C\n0xDCDE\t0x82FB\n0xDCDF\t0x82D3\n0xDCE0\t0x8311\n0xDCE1\t0x831A\n0xDCE2\t0x8306\n0xDCE3\t0x8314\n0xDCE4\t0x8315\n0xDCE5\t0x82E0\n0xDCE6\t0x82D5\n0xDCE7\t0x831C\n0xDCE8\t0x8351\n0xDCE9\t0x835B\n0xDCEA\t0x835C\n0xDCEB\t0x8308\n0xDCEC\t0x8392\n0xDCED\t0x833C\n0xDCEE\t0x8334\n0xDCEF\t0x8331\n0xDCF0\t0x839B\n0xDCF1\t0x835E\n0xDCF2\t0x832F\n0xDCF3\t0x834F\n0xDCF4\t0x8347\n0xDCF5\t0x8343\n0xDCF6\t0x835F\n0xDCF7\t0x8340\n0xDCF8\t0x8317\n0xDCF9\t0x8360\n0xDCFA\t0x832D\n0xDCFB\t0x833A\n0xDCFC\t0x8333\n0xDCFD\t0x8366\n0xDCFE\t0x8365\n0xDD40\t0x8EE5\n0xDD41\t0x8EE6\n0xDD42\t0x8EE7\n0xDD43\t0x8EE8\n0xDD44\t0x8EE9\n0xDD45\t0x8EEA\n0xDD46\t0x8EEB\n0xDD47\t0x8EEC\n0xDD48\t0x8EED\n0xDD49\t0x8EEE\n0xDD4A\t0x8EEF\n0xDD4B\t0x8EF0\n0xDD4C\t0x8EF1\n0xDD4D\t0x8EF2\n0xDD4E\t0x8EF3\n0xDD4F\t0x8EF4\n0xDD50\t0x8EF5\n0xDD51\t0x8EF6\n0xDD52\t0x8EF7\n0xDD53\t0x8EF8\n0xDD54\t0x8EF9\n0xDD55\t0x8EFA\n0xDD56\t0x8EFB\n0xDD57\t0x8EFC\n0xDD58\t0x8EFD\n0xDD59\t0x8EFE\n0xDD5A\t0x8EFF\n0xDD5B\t0x8F00\n0xDD5C\t0x8F01\n0xDD5D\t0x8F02\n0xDD5E\t0x8F03\n0xDD5F\t0x8F04\n0xDD60\t0x8F05\n0xDD61\t0x8F06\n0xDD62\t0x8F07\n0xDD63\t0x8F08\n0xDD64\t0x8F09\n0xDD65\t0x8F0A\n0xDD66\t0x8F0B\n0xDD67\t0x8F0C\n0xDD68\t0x8F0D\n0xDD69\t0x8F0E\n0xDD6A\t0x8F0F\n0xDD6B\t0x8F10\n0xDD6C\t0x8F11\n0xDD6D\t0x8F12\n0xDD6E\t0x8F13\n0xDD6F\t0x8F14\n0xDD70\t0x8F15\n0xDD71\t0x8F16\n0xDD72\t0x8F17\n0xDD73\t0x8F18\n0xDD74\t0x8F19\n0xDD75\t0x8F1A\n0xDD76\t0x8F1B\n0xDD77\t0x8F1C\n0xDD78\t0x8F1D\n0xDD79\t0x8F1E\n0xDD7A\t0x8F1F\n0xDD7B\t0x8F20\n0xDD7C\t0x8F21\n0xDD7D\t0x8F22\n0xDD7E\t0x8F23\n0xDD80\t0x8F24\n0xDD81\t0x8F25\n0xDD82\t0x8F26\n0xDD83\t0x8F27\n0xDD84\t0x8F28\n0xDD85\t0x8F29\n0xDD86\t0x8F2A\n0xDD87\t0x8F2B\n0xDD88\t0x8F2C\n0xDD89\t0x8F2D\n0xDD8A\t0x8F2E\n0xDD8B\t0x8F2F\n0xDD8C\t0x8F30\n0xDD8D\t0x8F31\n0xDD8E\t0x8F32\n0xDD8F\t0x8F33\n0xDD90\t0x8F34\n0xDD91\t0x8F35\n0xDD92\t0x8F36\n0xDD93\t0x8F37\n0xDD94\t0x8F38\n0xDD95\t0x8F39\n0xDD96\t0x8F3A\n0xDD97\t0x8F3B\n0xDD98\t0x8F3C\n0xDD99\t0x8F3D\n0xDD9A\t0x8F3E\n0xDD9B\t0x8F3F\n0xDD9C\t0x8F40\n0xDD9D\t0x8F41\n0xDD9E\t0x8F42\n0xDD9F\t0x8F43\n0xDDA0\t0x8F44\n0xDDA1\t0x8368\n0xDDA2\t0x831B\n0xDDA3\t0x8369\n0xDDA4\t0x836C\n0xDDA5\t0x836A\n0xDDA6\t0x836D\n0xDDA7\t0x836E\n0xDDA8\t0x83B0\n0xDDA9\t0x8378\n0xDDAA\t0x83B3\n0xDDAB\t0x83B4\n0xDDAC\t0x83A0\n0xDDAD\t0x83AA\n0xDDAE\t0x8393\n0xDDAF\t0x839C\n0xDDB0\t0x8385\n0xDDB1\t0x837C\n0xDDB2\t0x83B6\n0xDDB3\t0x83A9\n0xDDB4\t0x837D\n0xDDB5\t0x83B8\n0xDDB6\t0x837B\n0xDDB7\t0x8398\n0xDDB8\t0x839E\n0xDDB9\t0x83A8\n0xDDBA\t0x83BA\n0xDDBB\t0x83BC\n0xDDBC\t0x83C1\n0xDDBD\t0x8401\n0xDDBE\t0x83E5\n0xDDBF\t0x83D8\n0xDDC0\t0x5807\n0xDDC1\t0x8418\n0xDDC2\t0x840B\n0xDDC3\t0x83DD\n0xDDC4\t0x83FD\n0xDDC5\t0x83D6\n0xDDC6\t0x841C\n0xDDC7\t0x8438\n0xDDC8\t0x8411\n0xDDC9\t0x8406\n0xDDCA\t0x83D4\n0xDDCB\t0x83DF\n0xDDCC\t0x840F\n0xDDCD\t0x8403\n0xDDCE\t0x83F8\n0xDDCF\t0x83F9\n0xDDD0\t0x83EA\n0xDDD1\t0x83C5\n0xDDD2\t0x83C0\n0xDDD3\t0x8426\n0xDDD4\t0x83F0\n0xDDD5\t0x83E1\n0xDDD6\t0x845C\n0xDDD7\t0x8451\n0xDDD8\t0x845A\n0xDDD9\t0x8459\n0xDDDA\t0x8473\n0xDDDB\t0x8487\n0xDDDC\t0x8488\n0xDDDD\t0x847A\n0xDDDE\t0x8489\n0xDDDF\t0x8478\n0xDDE0\t0x843C\n0xDDE1\t0x8446\n0xDDE2\t0x8469\n0xDDE3\t0x8476\n0xDDE4\t0x848C\n0xDDE5\t0x848E\n0xDDE6\t0x8431\n0xDDE7\t0x846D\n0xDDE8\t0x84C1\n0xDDE9\t0x84CD\n0xDDEA\t0x84D0\n0xDDEB\t0x84E6\n0xDDEC\t0x84BD\n0xDDED\t0x84D3\n0xDDEE\t0x84CA\n0xDDEF\t0x84BF\n0xDDF0\t0x84BA\n0xDDF1\t0x84E0\n0xDDF2\t0x84A1\n0xDDF3\t0x84B9\n0xDDF4\t0x84B4\n0xDDF5\t0x8497\n0xDDF6\t0x84E5\n0xDDF7\t0x84E3\n0xDDF8\t0x850C\n0xDDF9\t0x750D\n0xDDFA\t0x8538\n0xDDFB\t0x84F0\n0xDDFC\t0x8539\n0xDDFD\t0x851F\n0xDDFE\t0x853A\n0xDE40\t0x8F45\n0xDE41\t0x8F46\n0xDE42\t0x8F47\n0xDE43\t0x8F48\n0xDE44\t0x8F49\n0xDE45\t0x8F4A\n0xDE46\t0x8F4B\n0xDE47\t0x8F4C\n0xDE48\t0x8F4D\n0xDE49\t0x8F4E\n0xDE4A\t0x8F4F\n0xDE4B\t0x8F50\n0xDE4C\t0x8F51\n0xDE4D\t0x8F52\n0xDE4E\t0x8F53\n0xDE4F\t0x8F54\n0xDE50\t0x8F55\n0xDE51\t0x8F56\n0xDE52\t0x8F57\n0xDE53\t0x8F58\n0xDE54\t0x8F59\n0xDE55\t0x8F5A\n0xDE56\t0x8F5B\n0xDE57\t0x8F5C\n0xDE58\t0x8F5D\n0xDE59\t0x8F5E\n0xDE5A\t0x8F5F\n0xDE5B\t0x8F60\n0xDE5C\t0x8F61\n0xDE5D\t0x8F62\n0xDE5E\t0x8F63\n0xDE5F\t0x8F64\n0xDE60\t0x8F65\n0xDE61\t0x8F6A\n0xDE62\t0x8F80\n0xDE63\t0x8F8C\n0xDE64\t0x8F92\n0xDE65\t0x8F9D\n0xDE66\t0x8FA0\n0xDE67\t0x8FA1\n0xDE68\t0x8FA2\n0xDE69\t0x8FA4\n0xDE6A\t0x8FA5\n0xDE6B\t0x8FA6\n0xDE6C\t0x8FA7\n0xDE6D\t0x8FAA\n0xDE6E\t0x8FAC\n0xDE6F\t0x8FAD\n0xDE70\t0x8FAE\n0xDE71\t0x8FAF\n0xDE72\t0x8FB2\n0xDE73\t0x8FB3\n0xDE74\t0x8FB4\n0xDE75\t0x8FB5\n0xDE76\t0x8FB7\n0xDE77\t0x8FB8\n0xDE78\t0x8FBA\n0xDE79\t0x8FBB\n0xDE7A\t0x8FBC\n0xDE7B\t0x8FBF\n0xDE7C\t0x8FC0\n0xDE7D\t0x8FC3\n0xDE7E\t0x8FC6\n0xDE80\t0x8FC9\n0xDE81\t0x8FCA\n0xDE82\t0x8FCB\n0xDE83\t0x8FCC\n0xDE84\t0x8FCD\n0xDE85\t0x8FCF\n0xDE86\t0x8FD2\n0xDE87\t0x8FD6\n0xDE88\t0x8FD7\n0xDE89\t0x8FDA\n0xDE8A\t0x8FE0\n0xDE8B\t0x8FE1\n0xDE8C\t0x8FE3\n0xDE8D\t0x8FE7\n0xDE8E\t0x8FEC\n0xDE8F\t0x8FEF\n0xDE90\t0x8FF1\n0xDE91\t0x8FF2\n0xDE92\t0x8FF4\n0xDE93\t0x8FF5\n0xDE94\t0x8FF6\n0xDE95\t0x8FFA\n0xDE96\t0x8FFB\n0xDE97\t0x8FFC\n0xDE98\t0x8FFE\n0xDE99\t0x8FFF\n0xDE9A\t0x9007\n0xDE9B\t0x9008\n0xDE9C\t0x900C\n0xDE9D\t0x900E\n0xDE9E\t0x9013\n0xDE9F\t0x9015\n0xDEA0\t0x9018\n0xDEA1\t0x8556\n0xDEA2\t0x853B\n0xDEA3\t0x84FF\n0xDEA4\t0x84FC\n0xDEA5\t0x8559\n0xDEA6\t0x8548\n0xDEA7\t0x8568\n0xDEA8\t0x8564\n0xDEA9\t0x855E\n0xDEAA\t0x857A\n0xDEAB\t0x77A2\n0xDEAC\t0x8543\n0xDEAD\t0x8572\n0xDEAE\t0x857B\n0xDEAF\t0x85A4\n0xDEB0\t0x85A8\n0xDEB1\t0x8587\n0xDEB2\t0x858F\n0xDEB3\t0x8579\n0xDEB4\t0x85AE\n0xDEB5\t0x859C\n0xDEB6\t0x8585\n0xDEB7\t0x85B9\n0xDEB8\t0x85B7\n0xDEB9\t0x85B0\n0xDEBA\t0x85D3\n0xDEBB\t0x85C1\n0xDEBC\t0x85DC\n0xDEBD\t0x85FF\n0xDEBE\t0x8627\n0xDEBF\t0x8605\n0xDEC0\t0x8629\n0xDEC1\t0x8616\n0xDEC2\t0x863C\n0xDEC3\t0x5EFE\n0xDEC4\t0x5F08\n0xDEC5\t0x593C\n0xDEC6\t0x5941\n0xDEC7\t0x8037\n0xDEC8\t0x5955\n0xDEC9\t0x595A\n0xDECA\t0x5958\n0xDECB\t0x530F\n0xDECC\t0x5C22\n0xDECD\t0x5C25\n0xDECE\t0x5C2C\n0xDECF\t0x5C34\n0xDED0\t0x624C\n0xDED1\t0x626A\n0xDED2\t0x629F\n0xDED3\t0x62BB\n0xDED4\t0x62CA\n0xDED5\t0x62DA\n0xDED6\t0x62D7\n0xDED7\t0x62EE\n0xDED8\t0x6322\n0xDED9\t0x62F6\n0xDEDA\t0x6339\n0xDEDB\t0x634B\n0xDEDC\t0x6343\n0xDEDD\t0x63AD\n0xDEDE\t0x63F6\n0xDEDF\t0x6371\n0xDEE0\t0x637A\n0xDEE1\t0x638E\n0xDEE2\t0x63B4\n0xDEE3\t0x636D\n0xDEE4\t0x63AC\n0xDEE5\t0x638A\n0xDEE6\t0x6369\n0xDEE7\t0x63AE\n0xDEE8\t0x63BC\n0xDEE9\t0x63F2\n0xDEEA\t0x63F8\n0xDEEB\t0x63E0\n0xDEEC\t0x63FF\n0xDEED\t0x63C4\n0xDEEE\t0x63DE\n0xDEEF\t0x63CE\n0xDEF0\t0x6452\n0xDEF1\t0x63C6\n0xDEF2\t0x63BE\n0xDEF3\t0x6445\n0xDEF4\t0x6441\n0xDEF5\t0x640B\n0xDEF6\t0x641B\n0xDEF7\t0x6420\n0xDEF8\t0x640C\n0xDEF9\t0x6426\n0xDEFA\t0x6421\n0xDEFB\t0x645E\n0xDEFC\t0x6484\n0xDEFD\t0x646D\n0xDEFE\t0x6496\n0xDF40\t0x9019\n0xDF41\t0x901C\n0xDF42\t0x9023\n0xDF43\t0x9024\n0xDF44\t0x9025\n0xDF45\t0x9027\n0xDF46\t0x9028\n0xDF47\t0x9029\n0xDF48\t0x902A\n0xDF49\t0x902B\n0xDF4A\t0x902C\n0xDF4B\t0x9030\n0xDF4C\t0x9031\n0xDF4D\t0x9032\n0xDF4E\t0x9033\n0xDF4F\t0x9034\n0xDF50\t0x9037\n0xDF51\t0x9039\n0xDF52\t0x903A\n0xDF53\t0x903D\n0xDF54\t0x903F\n0xDF55\t0x9040\n0xDF56\t0x9043\n0xDF57\t0x9045\n0xDF58\t0x9046\n0xDF59\t0x9048\n0xDF5A\t0x9049\n0xDF5B\t0x904A\n0xDF5C\t0x904B\n0xDF5D\t0x904C\n0xDF5E\t0x904E\n0xDF5F\t0x9054\n0xDF60\t0x9055\n0xDF61\t0x9056\n0xDF62\t0x9059\n0xDF63\t0x905A\n0xDF64\t0x905C\n0xDF65\t0x905D\n0xDF66\t0x905E\n0xDF67\t0x905F\n0xDF68\t0x9060\n0xDF69\t0x9061\n0xDF6A\t0x9064\n0xDF6B\t0x9066\n0xDF6C\t0x9067\n0xDF6D\t0x9069\n0xDF6E\t0x906A\n0xDF6F\t0x906B\n0xDF70\t0x906C\n0xDF71\t0x906F\n0xDF72\t0x9070\n0xDF73\t0x9071\n0xDF74\t0x9072\n0xDF75\t0x9073\n0xDF76\t0x9076\n0xDF77\t0x9077\n0xDF78\t0x9078\n0xDF79\t0x9079\n0xDF7A\t0x907A\n0xDF7B\t0x907B\n0xDF7C\t0x907C\n0xDF7D\t0x907E\n0xDF7E\t0x9081\n0xDF80\t0x9084\n0xDF81\t0x9085\n0xDF82\t0x9086\n0xDF83\t0x9087\n0xDF84\t0x9089\n0xDF85\t0x908A\n0xDF86\t0x908C\n0xDF87\t0x908D\n0xDF88\t0x908E\n0xDF89\t0x908F\n0xDF8A\t0x9090\n0xDF8B\t0x9092\n0xDF8C\t0x9094\n0xDF8D\t0x9096\n0xDF8E\t0x9098\n0xDF8F\t0x909A\n0xDF90\t0x909C\n0xDF91\t0x909E\n0xDF92\t0x909F\n0xDF93\t0x90A0\n0xDF94\t0x90A4\n0xDF95\t0x90A5\n0xDF96\t0x90A7\n0xDF97\t0x90A8\n0xDF98\t0x90A9\n0xDF99\t0x90AB\n0xDF9A\t0x90AD\n0xDF9B\t0x90B2\n0xDF9C\t0x90B7\n0xDF9D\t0x90BC\n0xDF9E\t0x90BD\n0xDF9F\t0x90BF\n0xDFA0\t0x90C0\n0xDFA1\t0x647A\n0xDFA2\t0x64B7\n0xDFA3\t0x64B8\n0xDFA4\t0x6499\n0xDFA5\t0x64BA\n0xDFA6\t0x64C0\n0xDFA7\t0x64D0\n0xDFA8\t0x64D7\n0xDFA9\t0x64E4\n0xDFAA\t0x64E2\n0xDFAB\t0x6509\n0xDFAC\t0x6525\n0xDFAD\t0x652E\n0xDFAE\t0x5F0B\n0xDFAF\t0x5FD2\n0xDFB0\t0x7519\n0xDFB1\t0x5F11\n0xDFB2\t0x535F\n0xDFB3\t0x53F1\n0xDFB4\t0x53FD\n0xDFB5\t0x53E9\n0xDFB6\t0x53E8\n0xDFB7\t0x53FB\n0xDFB8\t0x5412\n0xDFB9\t0x5416\n0xDFBA\t0x5406\n0xDFBB\t0x544B\n0xDFBC\t0x5452\n0xDFBD\t0x5453\n0xDFBE\t0x5454\n0xDFBF\t0x5456\n0xDFC0\t0x5443\n0xDFC1\t0x5421\n0xDFC2\t0x5457\n0xDFC3\t0x5459\n0xDFC4\t0x5423\n0xDFC5\t0x5432\n0xDFC6\t0x5482\n0xDFC7\t0x5494\n0xDFC8\t0x5477\n0xDFC9\t0x5471\n0xDFCA\t0x5464\n0xDFCB\t0x549A\n0xDFCC\t0x549B\n0xDFCD\t0x5484\n0xDFCE\t0x5476\n0xDFCF\t0x5466\n0xDFD0\t0x549D\n0xDFD1\t0x54D0\n0xDFD2\t0x54AD\n0xDFD3\t0x54C2\n0xDFD4\t0x54B4\n0xDFD5\t0x54D2\n0xDFD6\t0x54A7\n0xDFD7\t0x54A6\n0xDFD8\t0x54D3\n0xDFD9\t0x54D4\n0xDFDA\t0x5472\n0xDFDB\t0x54A3\n0xDFDC\t0x54D5\n0xDFDD\t0x54BB\n0xDFDE\t0x54BF\n0xDFDF\t0x54CC\n0xDFE0\t0x54D9\n0xDFE1\t0x54DA\n0xDFE2\t0x54DC\n0xDFE3\t0x54A9\n0xDFE4\t0x54AA\n0xDFE5\t0x54A4\n0xDFE6\t0x54DD\n0xDFE7\t0x54CF\n0xDFE8\t0x54DE\n0xDFE9\t0x551B\n0xDFEA\t0x54E7\n0xDFEB\t0x5520\n0xDFEC\t0x54FD\n0xDFED\t0x5514\n0xDFEE\t0x54F3\n0xDFEF\t0x5522\n0xDFF0\t0x5523\n0xDFF1\t0x550F\n0xDFF2\t0x5511\n0xDFF3\t0x5527\n0xDFF4\t0x552A\n0xDFF5\t0x5567\n0xDFF6\t0x558F\n0xDFF7\t0x55B5\n0xDFF8\t0x5549\n0xDFF9\t0x556D\n0xDFFA\t0x5541\n0xDFFB\t0x5555\n0xDFFC\t0x553F\n0xDFFD\t0x5550\n0xDFFE\t0x553C\n0xE040\t0x90C2\n0xE041\t0x90C3\n0xE042\t0x90C6\n0xE043\t0x90C8\n0xE044\t0x90C9\n0xE045\t0x90CB\n0xE046\t0x90CC\n0xE047\t0x90CD\n0xE048\t0x90D2\n0xE049\t0x90D4\n0xE04A\t0x90D5\n0xE04B\t0x90D6\n0xE04C\t0x90D8\n0xE04D\t0x90D9\n0xE04E\t0x90DA\n0xE04F\t0x90DE\n0xE050\t0x90DF\n0xE051\t0x90E0\n0xE052\t0x90E3\n0xE053\t0x90E4\n0xE054\t0x90E5\n0xE055\t0x90E9\n0xE056\t0x90EA\n0xE057\t0x90EC\n0xE058\t0x90EE\n0xE059\t0x90F0\n0xE05A\t0x90F1\n0xE05B\t0x90F2\n0xE05C\t0x90F3\n0xE05D\t0x90F5\n0xE05E\t0x90F6\n0xE05F\t0x90F7\n0xE060\t0x90F9\n0xE061\t0x90FA\n0xE062\t0x90FB\n0xE063\t0x90FC\n0xE064\t0x90FF\n0xE065\t0x9100\n0xE066\t0x9101\n0xE067\t0x9103\n0xE068\t0x9105\n0xE069\t0x9106\n0xE06A\t0x9107\n0xE06B\t0x9108\n0xE06C\t0x9109\n0xE06D\t0x910A\n0xE06E\t0x910B\n0xE06F\t0x910C\n0xE070\t0x910D\n0xE071\t0x910E\n0xE072\t0x910F\n0xE073\t0x9110\n0xE074\t0x9111\n0xE075\t0x9112\n0xE076\t0x9113\n0xE077\t0x9114\n0xE078\t0x9115\n0xE079\t0x9116\n0xE07A\t0x9117\n0xE07B\t0x9118\n0xE07C\t0x911A\n0xE07D\t0x911B\n0xE07E\t0x911C\n0xE080\t0x911D\n0xE081\t0x911F\n0xE082\t0x9120\n0xE083\t0x9121\n0xE084\t0x9124\n0xE085\t0x9125\n0xE086\t0x9126\n0xE087\t0x9127\n0xE088\t0x9128\n0xE089\t0x9129\n0xE08A\t0x912A\n0xE08B\t0x912B\n0xE08C\t0x912C\n0xE08D\t0x912D\n0xE08E\t0x912E\n0xE08F\t0x9130\n0xE090\t0x9132\n0xE091\t0x9133\n0xE092\t0x9134\n0xE093\t0x9135\n0xE094\t0x9136\n0xE095\t0x9137\n0xE096\t0x9138\n0xE097\t0x913A\n0xE098\t0x913B\n0xE099\t0x913C\n0xE09A\t0x913D\n0xE09B\t0x913E\n0xE09C\t0x913F\n0xE09D\t0x9140\n0xE09E\t0x9141\n0xE09F\t0x9142\n0xE0A0\t0x9144\n0xE0A1\t0x5537\n0xE0A2\t0x5556\n0xE0A3\t0x5575\n0xE0A4\t0x5576\n0xE0A5\t0x5577\n0xE0A6\t0x5533\n0xE0A7\t0x5530\n0xE0A8\t0x555C\n0xE0A9\t0x558B\n0xE0AA\t0x55D2\n0xE0AB\t0x5583\n0xE0AC\t0x55B1\n0xE0AD\t0x55B9\n0xE0AE\t0x5588\n0xE0AF\t0x5581\n0xE0B0\t0x559F\n0xE0B1\t0x557E\n0xE0B2\t0x55D6\n0xE0B3\t0x5591\n0xE0B4\t0x557B\n0xE0B5\t0x55DF\n0xE0B6\t0x55BD\n0xE0B7\t0x55BE\n0xE0B8\t0x5594\n0xE0B9\t0x5599\n0xE0BA\t0x55EA\n0xE0BB\t0x55F7\n0xE0BC\t0x55C9\n0xE0BD\t0x561F\n0xE0BE\t0x55D1\n0xE0BF\t0x55EB\n0xE0C0\t0x55EC\n0xE0C1\t0x55D4\n0xE0C2\t0x55E6\n0xE0C3\t0x55DD\n0xE0C4\t0x55C4\n0xE0C5\t0x55EF\n0xE0C6\t0x55E5\n0xE0C7\t0x55F2\n0xE0C8\t0x55F3\n0xE0C9\t0x55CC\n0xE0CA\t0x55CD\n0xE0CB\t0x55E8\n0xE0CC\t0x55F5\n0xE0CD\t0x55E4\n0xE0CE\t0x8F94\n0xE0CF\t0x561E\n0xE0D0\t0x5608\n0xE0D1\t0x560C\n0xE0D2\t0x5601\n0xE0D3\t0x5624\n0xE0D4\t0x5623\n0xE0D5\t0x55FE\n0xE0D6\t0x5600\n0xE0D7\t0x5627\n0xE0D8\t0x562D\n0xE0D9\t0x5658\n0xE0DA\t0x5639\n0xE0DB\t0x5657\n0xE0DC\t0x562C\n0xE0DD\t0x564D\n0xE0DE\t0x5662\n0xE0DF\t0x5659\n0xE0E0\t0x565C\n0xE0E1\t0x564C\n0xE0E2\t0x5654\n0xE0E3\t0x5686\n0xE0E4\t0x5664\n0xE0E5\t0x5671\n0xE0E6\t0x566B\n0xE0E7\t0x567B\n0xE0E8\t0x567C\n0xE0E9\t0x5685\n0xE0EA\t0x5693\n0xE0EB\t0x56AF\n0xE0EC\t0x56D4\n0xE0ED\t0x56D7\n0xE0EE\t0x56DD\n0xE0EF\t0x56E1\n0xE0F0\t0x56F5\n0xE0F1\t0x56EB\n0xE0F2\t0x56F9\n0xE0F3\t0x56FF\n0xE0F4\t0x5704\n0xE0F5\t0x570A\n0xE0F6\t0x5709\n0xE0F7\t0x571C\n0xE0F8\t0x5E0F\n0xE0F9\t0x5E19\n0xE0FA\t0x5E14\n0xE0FB\t0x5E11\n0xE0FC\t0x5E31\n0xE0FD\t0x5E3B\n0xE0FE\t0x5E3C\n0xE140\t0x9145\n0xE141\t0x9147\n0xE142\t0x9148\n0xE143\t0x9151\n0xE144\t0x9153\n0xE145\t0x9154\n0xE146\t0x9155\n0xE147\t0x9156\n0xE148\t0x9158\n0xE149\t0x9159\n0xE14A\t0x915B\n0xE14B\t0x915C\n0xE14C\t0x915F\n0xE14D\t0x9160\n0xE14E\t0x9166\n0xE14F\t0x9167\n0xE150\t0x9168\n0xE151\t0x916B\n0xE152\t0x916D\n0xE153\t0x9173\n0xE154\t0x917A\n0xE155\t0x917B\n0xE156\t0x917C\n0xE157\t0x9180\n0xE158\t0x9181\n0xE159\t0x9182\n0xE15A\t0x9183\n0xE15B\t0x9184\n0xE15C\t0x9186\n0xE15D\t0x9188\n0xE15E\t0x918A\n0xE15F\t0x918E\n0xE160\t0x918F\n0xE161\t0x9193\n0xE162\t0x9194\n0xE163\t0x9195\n0xE164\t0x9196\n0xE165\t0x9197\n0xE166\t0x9198\n0xE167\t0x9199\n0xE168\t0x919C\n0xE169\t0x919D\n0xE16A\t0x919E\n0xE16B\t0x919F\n0xE16C\t0x91A0\n0xE16D\t0x91A1\n0xE16E\t0x91A4\n0xE16F\t0x91A5\n0xE170\t0x91A6\n0xE171\t0x91A7\n0xE172\t0x91A8\n0xE173\t0x91A9\n0xE174\t0x91AB\n0xE175\t0x91AC\n0xE176\t0x91B0\n0xE177\t0x91B1\n0xE178\t0x91B2\n0xE179\t0x91B3\n0xE17A\t0x91B6\n0xE17B\t0x91B7\n0xE17C\t0x91B8\n0xE17D\t0x91B9\n0xE17E\t0x91BB\n0xE180\t0x91BC\n0xE181\t0x91BD\n0xE182\t0x91BE\n0xE183\t0x91BF\n0xE184\t0x91C0\n0xE185\t0x91C1\n0xE186\t0x91C2\n0xE187\t0x91C3\n0xE188\t0x91C4\n0xE189\t0x91C5\n0xE18A\t0x91C6\n0xE18B\t0x91C8\n0xE18C\t0x91CB\n0xE18D\t0x91D0\n0xE18E\t0x91D2\n0xE18F\t0x91D3\n0xE190\t0x91D4\n0xE191\t0x91D5\n0xE192\t0x91D6\n0xE193\t0x91D7\n0xE194\t0x91D8\n0xE195\t0x91D9\n0xE196\t0x91DA\n0xE197\t0x91DB\n0xE198\t0x91DD\n0xE199\t0x91DE\n0xE19A\t0x91DF\n0xE19B\t0x91E0\n0xE19C\t0x91E1\n0xE19D\t0x91E2\n0xE19E\t0x91E3\n0xE19F\t0x91E4\n0xE1A0\t0x91E5\n0xE1A1\t0x5E37\n0xE1A2\t0x5E44\n0xE1A3\t0x5E54\n0xE1A4\t0x5E5B\n0xE1A5\t0x5E5E\n0xE1A6\t0x5E61\n0xE1A7\t0x5C8C\n0xE1A8\t0x5C7A\n0xE1A9\t0x5C8D\n0xE1AA\t0x5C90\n0xE1AB\t0x5C96\n0xE1AC\t0x5C88\n0xE1AD\t0x5C98\n0xE1AE\t0x5C99\n0xE1AF\t0x5C91\n0xE1B0\t0x5C9A\n0xE1B1\t0x5C9C\n0xE1B2\t0x5CB5\n0xE1B3\t0x5CA2\n0xE1B4\t0x5CBD\n0xE1B5\t0x5CAC\n0xE1B6\t0x5CAB\n0xE1B7\t0x5CB1\n0xE1B8\t0x5CA3\n0xE1B9\t0x5CC1\n0xE1BA\t0x5CB7\n0xE1BB\t0x5CC4\n0xE1BC\t0x5CD2\n0xE1BD\t0x5CE4\n0xE1BE\t0x5CCB\n0xE1BF\t0x5CE5\n0xE1C0\t0x5D02\n0xE1C1\t0x5D03\n0xE1C2\t0x5D27\n0xE1C3\t0x5D26\n0xE1C4\t0x5D2E\n0xE1C5\t0x5D24\n0xE1C6\t0x5D1E\n0xE1C7\t0x5D06\n0xE1C8\t0x5D1B\n0xE1C9\t0x5D58\n0xE1CA\t0x5D3E\n0xE1CB\t0x5D34\n0xE1CC\t0x5D3D\n0xE1CD\t0x5D6C\n0xE1CE\t0x5D5B\n0xE1CF\t0x5D6F\n0xE1D0\t0x5D5D\n0xE1D1\t0x5D6B\n0xE1D2\t0x5D4B\n0xE1D3\t0x5D4A\n0xE1D4\t0x5D69\n0xE1D5\t0x5D74\n0xE1D6\t0x5D82\n0xE1D7\t0x5D99\n0xE1D8\t0x5D9D\n0xE1D9\t0x8C73\n0xE1DA\t0x5DB7\n0xE1DB\t0x5DC5\n0xE1DC\t0x5F73\n0xE1DD\t0x5F77\n0xE1DE\t0x5F82\n0xE1DF\t0x5F87\n0xE1E0\t0x5F89\n0xE1E1\t0x5F8C\n0xE1E2\t0x5F95\n0xE1E3\t0x5F99\n0xE1E4\t0x5F9C\n0xE1E5\t0x5FA8\n0xE1E6\t0x5FAD\n0xE1E7\t0x5FB5\n0xE1E8\t0x5FBC\n0xE1E9\t0x8862\n0xE1EA\t0x5F61\n0xE1EB\t0x72AD\n0xE1EC\t0x72B0\n0xE1ED\t0x72B4\n0xE1EE\t0x72B7\n0xE1EF\t0x72B8\n0xE1F0\t0x72C3\n0xE1F1\t0x72C1\n0xE1F2\t0x72CE\n0xE1F3\t0x72CD\n0xE1F4\t0x72D2\n0xE1F5\t0x72E8\n0xE1F6\t0x72EF\n0xE1F7\t0x72E9\n0xE1F8\t0x72F2\n0xE1F9\t0x72F4\n0xE1FA\t0x72F7\n0xE1FB\t0x7301\n0xE1FC\t0x72F3\n0xE1FD\t0x7303\n0xE1FE\t0x72FA\n0xE240\t0x91E6\n0xE241\t0x91E7\n0xE242\t0x91E8\n0xE243\t0x91E9\n0xE244\t0x91EA\n0xE245\t0x91EB\n0xE246\t0x91EC\n0xE247\t0x91ED\n0xE248\t0x91EE\n0xE249\t0x91EF\n0xE24A\t0x91F0\n0xE24B\t0x91F1\n0xE24C\t0x91F2\n0xE24D\t0x91F3\n0xE24E\t0x91F4\n0xE24F\t0x91F5\n0xE250\t0x91F6\n0xE251\t0x91F7\n0xE252\t0x91F8\n0xE253\t0x91F9\n0xE254\t0x91FA\n0xE255\t0x91FB\n0xE256\t0x91FC\n0xE257\t0x91FD\n0xE258\t0x91FE\n0xE259\t0x91FF\n0xE25A\t0x9200\n0xE25B\t0x9201\n0xE25C\t0x9202\n0xE25D\t0x9203\n0xE25E\t0x9204\n0xE25F\t0x9205\n0xE260\t0x9206\n0xE261\t0x9207\n0xE262\t0x9208\n0xE263\t0x9209\n0xE264\t0x920A\n0xE265\t0x920B\n0xE266\t0x920C\n0xE267\t0x920D\n0xE268\t0x920E\n0xE269\t0x920F\n0xE26A\t0x9210\n0xE26B\t0x9211\n0xE26C\t0x9212\n0xE26D\t0x9213\n0xE26E\t0x9214\n0xE26F\t0x9215\n0xE270\t0x9216\n0xE271\t0x9217\n0xE272\t0x9218\n0xE273\t0x9219\n0xE274\t0x921A\n0xE275\t0x921B\n0xE276\t0x921C\n0xE277\t0x921D\n0xE278\t0x921E\n0xE279\t0x921F\n0xE27A\t0x9220\n0xE27B\t0x9221\n0xE27C\t0x9222\n0xE27D\t0x9223\n0xE27E\t0x9224\n0xE280\t0x9225\n0xE281\t0x9226\n0xE282\t0x9227\n0xE283\t0x9228\n0xE284\t0x9229\n0xE285\t0x922A\n0xE286\t0x922B\n0xE287\t0x922C\n0xE288\t0x922D\n0xE289\t0x922E\n0xE28A\t0x922F\n0xE28B\t0x9230\n0xE28C\t0x9231\n0xE28D\t0x9232\n0xE28E\t0x9233\n0xE28F\t0x9234\n0xE290\t0x9235\n0xE291\t0x9236\n0xE292\t0x9237\n0xE293\t0x9238\n0xE294\t0x9239\n0xE295\t0x923A\n0xE296\t0x923B\n0xE297\t0x923C\n0xE298\t0x923D\n0xE299\t0x923E\n0xE29A\t0x923F\n0xE29B\t0x9240\n0xE29C\t0x9241\n0xE29D\t0x9242\n0xE29E\t0x9243\n0xE29F\t0x9244\n0xE2A0\t0x9245\n0xE2A1\t0x72FB\n0xE2A2\t0x7317\n0xE2A3\t0x7313\n0xE2A4\t0x7321\n0xE2A5\t0x730A\n0xE2A6\t0x731E\n0xE2A7\t0x731D\n0xE2A8\t0x7315\n0xE2A9\t0x7322\n0xE2AA\t0x7339\n0xE2AB\t0x7325\n0xE2AC\t0x732C\n0xE2AD\t0x7338\n0xE2AE\t0x7331\n0xE2AF\t0x7350\n0xE2B0\t0x734D\n0xE2B1\t0x7357\n0xE2B2\t0x7360\n0xE2B3\t0x736C\n0xE2B4\t0x736F\n0xE2B5\t0x737E\n0xE2B6\t0x821B\n0xE2B7\t0x5925\n0xE2B8\t0x98E7\n0xE2B9\t0x5924\n0xE2BA\t0x5902\n0xE2BB\t0x9963\n0xE2BC\t0x9967\n0xE2BD\t0x9968\n0xE2BE\t0x9969\n0xE2BF\t0x996A\n0xE2C0\t0x996B\n0xE2C1\t0x996C\n0xE2C2\t0x9974\n0xE2C3\t0x9977\n0xE2C4\t0x997D\n0xE2C5\t0x9980\n0xE2C6\t0x9984\n0xE2C7\t0x9987\n0xE2C8\t0x998A\n0xE2C9\t0x998D\n0xE2CA\t0x9990\n0xE2CB\t0x9991\n0xE2CC\t0x9993\n0xE2CD\t0x9994\n0xE2CE\t0x9995\n0xE2CF\t0x5E80\n0xE2D0\t0x5E91\n0xE2D1\t0x5E8B\n0xE2D2\t0x5E96\n0xE2D3\t0x5EA5\n0xE2D4\t0x5EA0\n0xE2D5\t0x5EB9\n0xE2D6\t0x5EB5\n0xE2D7\t0x5EBE\n0xE2D8\t0x5EB3\n0xE2D9\t0x8D53\n0xE2DA\t0x5ED2\n0xE2DB\t0x5ED1\n0xE2DC\t0x5EDB\n0xE2DD\t0x5EE8\n0xE2DE\t0x5EEA\n0xE2DF\t0x81BA\n0xE2E0\t0x5FC4\n0xE2E1\t0x5FC9\n0xE2E2\t0x5FD6\n0xE2E3\t0x5FCF\n0xE2E4\t0x6003\n0xE2E5\t0x5FEE\n0xE2E6\t0x6004\n0xE2E7\t0x5FE1\n0xE2E8\t0x5FE4\n0xE2E9\t0x5FFE\n0xE2EA\t0x6005\n0xE2EB\t0x6006\n0xE2EC\t0x5FEA\n0xE2ED\t0x5FED\n0xE2EE\t0x5FF8\n0xE2EF\t0x6019\n0xE2F0\t0x6035\n0xE2F1\t0x6026\n0xE2F2\t0x601B\n0xE2F3\t0x600F\n0xE2F4\t0x600D\n0xE2F5\t0x6029\n0xE2F6\t0x602B\n0xE2F7\t0x600A\n0xE2F8\t0x603F\n0xE2F9\t0x6021\n0xE2FA\t0x6078\n0xE2FB\t0x6079\n0xE2FC\t0x607B\n0xE2FD\t0x607A\n0xE2FE\t0x6042\n0xE340\t0x9246\n0xE341\t0x9247\n0xE342\t0x9248\n0xE343\t0x9249\n0xE344\t0x924A\n0xE345\t0x924B\n0xE346\t0x924C\n0xE347\t0x924D\n0xE348\t0x924E\n0xE349\t0x924F\n0xE34A\t0x9250\n0xE34B\t0x9251\n0xE34C\t0x9252\n0xE34D\t0x9253\n0xE34E\t0x9254\n0xE34F\t0x9255\n0xE350\t0x9256\n0xE351\t0x9257\n0xE352\t0x9258\n0xE353\t0x9259\n0xE354\t0x925A\n0xE355\t0x925B\n0xE356\t0x925C\n0xE357\t0x925D\n0xE358\t0x925E\n0xE359\t0x925F\n0xE35A\t0x9260\n0xE35B\t0x9261\n0xE35C\t0x9262\n0xE35D\t0x9263\n0xE35E\t0x9264\n0xE35F\t0x9265\n0xE360\t0x9266\n0xE361\t0x9267\n0xE362\t0x9268\n0xE363\t0x9269\n0xE364\t0x926A\n0xE365\t0x926B\n0xE366\t0x926C\n0xE367\t0x926D\n0xE368\t0x926E\n0xE369\t0x926F\n0xE36A\t0x9270\n0xE36B\t0x9271\n0xE36C\t0x9272\n0xE36D\t0x9273\n0xE36E\t0x9275\n0xE36F\t0x9276\n0xE370\t0x9277\n0xE371\t0x9278\n0xE372\t0x9279\n0xE373\t0x927A\n0xE374\t0x927B\n0xE375\t0x927C\n0xE376\t0x927D\n0xE377\t0x927E\n0xE378\t0x927F\n0xE379\t0x9280\n0xE37A\t0x9281\n0xE37B\t0x9282\n0xE37C\t0x9283\n0xE37D\t0x9284\n0xE37E\t0x9285\n0xE380\t0x9286\n0xE381\t0x9287\n0xE382\t0x9288\n0xE383\t0x9289\n0xE384\t0x928A\n0xE385\t0x928B\n0xE386\t0x928C\n0xE387\t0x928D\n0xE388\t0x928F\n0xE389\t0x9290\n0xE38A\t0x9291\n0xE38B\t0x9292\n0xE38C\t0x9293\n0xE38D\t0x9294\n0xE38E\t0x9295\n0xE38F\t0x9296\n0xE390\t0x9297\n0xE391\t0x9298\n0xE392\t0x9299\n0xE393\t0x929A\n0xE394\t0x929B\n0xE395\t0x929C\n0xE396\t0x929D\n0xE397\t0x929E\n0xE398\t0x929F\n0xE399\t0x92A0\n0xE39A\t0x92A1\n0xE39B\t0x92A2\n0xE39C\t0x92A3\n0xE39D\t0x92A4\n0xE39E\t0x92A5\n0xE39F\t0x92A6\n0xE3A0\t0x92A7\n0xE3A1\t0x606A\n0xE3A2\t0x607D\n0xE3A3\t0x6096\n0xE3A4\t0x609A\n0xE3A5\t0x60AD\n0xE3A6\t0x609D\n0xE3A7\t0x6083\n0xE3A8\t0x6092\n0xE3A9\t0x608C\n0xE3AA\t0x609B\n0xE3AB\t0x60EC\n0xE3AC\t0x60BB\n0xE3AD\t0x60B1\n0xE3AE\t0x60DD\n0xE3AF\t0x60D8\n0xE3B0\t0x60C6\n0xE3B1\t0x60DA\n0xE3B2\t0x60B4\n0xE3B3\t0x6120\n0xE3B4\t0x6126\n0xE3B5\t0x6115\n0xE3B6\t0x6123\n0xE3B7\t0x60F4\n0xE3B8\t0x6100\n0xE3B9\t0x610E\n0xE3BA\t0x612B\n0xE3BB\t0x614A\n0xE3BC\t0x6175\n0xE3BD\t0x61AC\n0xE3BE\t0x6194\n0xE3BF\t0x61A7\n0xE3C0\t0x61B7\n0xE3C1\t0x61D4\n0xE3C2\t0x61F5\n0xE3C3\t0x5FDD\n0xE3C4\t0x96B3\n0xE3C5\t0x95E9\n0xE3C6\t0x95EB\n0xE3C7\t0x95F1\n0xE3C8\t0x95F3\n0xE3C9\t0x95F5\n0xE3CA\t0x95F6\n0xE3CB\t0x95FC\n0xE3CC\t0x95FE\n0xE3CD\t0x9603\n0xE3CE\t0x9604\n0xE3CF\t0x9606\n0xE3D0\t0x9608\n0xE3D1\t0x960A\n0xE3D2\t0x960B\n0xE3D3\t0x960C\n0xE3D4\t0x960D\n0xE3D5\t0x960F\n0xE3D6\t0x9612\n0xE3D7\t0x9615\n0xE3D8\t0x9616\n0xE3D9\t0x9617\n0xE3DA\t0x9619\n0xE3DB\t0x961A\n0xE3DC\t0x4E2C\n0xE3DD\t0x723F\n0xE3DE\t0x6215\n0xE3DF\t0x6C35\n0xE3E0\t0x6C54\n0xE3E1\t0x6C5C\n0xE3E2\t0x6C4A\n0xE3E3\t0x6CA3\n0xE3E4\t0x6C85\n0xE3E5\t0x6C90\n0xE3E6\t0x6C94\n0xE3E7\t0x6C8C\n0xE3E8\t0x6C68\n0xE3E9\t0x6C69\n0xE3EA\t0x6C74\n0xE3EB\t0x6C76\n0xE3EC\t0x6C86\n0xE3ED\t0x6CA9\n0xE3EE\t0x6CD0\n0xE3EF\t0x6CD4\n0xE3F0\t0x6CAD\n0xE3F1\t0x6CF7\n0xE3F2\t0x6CF8\n0xE3F3\t0x6CF1\n0xE3F4\t0x6CD7\n0xE3F5\t0x6CB2\n0xE3F6\t0x6CE0\n0xE3F7\t0x6CD6\n0xE3F8\t0x6CFA\n0xE3F9\t0x6CEB\n0xE3FA\t0x6CEE\n0xE3FB\t0x6CB1\n0xE3FC\t0x6CD3\n0xE3FD\t0x6CEF\n0xE3FE\t0x6CFE\n0xE440\t0x92A8\n0xE441\t0x92A9\n0xE442\t0x92AA\n0xE443\t0x92AB\n0xE444\t0x92AC\n0xE445\t0x92AD\n0xE446\t0x92AF\n0xE447\t0x92B0\n0xE448\t0x92B1\n0xE449\t0x92B2\n0xE44A\t0x92B3\n0xE44B\t0x92B4\n0xE44C\t0x92B5\n0xE44D\t0x92B6\n0xE44E\t0x92B7\n0xE44F\t0x92B8\n0xE450\t0x92B9\n0xE451\t0x92BA\n0xE452\t0x92BB\n0xE453\t0x92BC\n0xE454\t0x92BD\n0xE455\t0x92BE\n0xE456\t0x92BF\n0xE457\t0x92C0\n0xE458\t0x92C1\n0xE459\t0x92C2\n0xE45A\t0x92C3\n0xE45B\t0x92C4\n0xE45C\t0x92C5\n0xE45D\t0x92C6\n0xE45E\t0x92C7\n0xE45F\t0x92C9\n0xE460\t0x92CA\n0xE461\t0x92CB\n0xE462\t0x92CC\n0xE463\t0x92CD\n0xE464\t0x92CE\n0xE465\t0x92CF\n0xE466\t0x92D0\n0xE467\t0x92D1\n0xE468\t0x92D2\n0xE469\t0x92D3\n0xE46A\t0x92D4\n0xE46B\t0x92D5\n0xE46C\t0x92D6\n0xE46D\t0x92D7\n0xE46E\t0x92D8\n0xE46F\t0x92D9\n0xE470\t0x92DA\n0xE471\t0x92DB\n0xE472\t0x92DC\n0xE473\t0x92DD\n0xE474\t0x92DE\n0xE475\t0x92DF\n0xE476\t0x92E0\n0xE477\t0x92E1\n0xE478\t0x92E2\n0xE479\t0x92E3\n0xE47A\t0x92E4\n0xE47B\t0x92E5\n0xE47C\t0x92E6\n0xE47D\t0x92E7\n0xE47E\t0x92E8\n0xE480\t0x92E9\n0xE481\t0x92EA\n0xE482\t0x92EB\n0xE483\t0x92EC\n0xE484\t0x92ED\n0xE485\t0x92EE\n0xE486\t0x92EF\n0xE487\t0x92F0\n0xE488\t0x92F1\n0xE489\t0x92F2\n0xE48A\t0x92F3\n0xE48B\t0x92F4\n0xE48C\t0x92F5\n0xE48D\t0x92F6\n0xE48E\t0x92F7\n0xE48F\t0x92F8\n0xE490\t0x92F9\n0xE491\t0x92FA\n0xE492\t0x92FB\n0xE493\t0x92FC\n0xE494\t0x92FD\n0xE495\t0x92FE\n0xE496\t0x92FF\n0xE497\t0x9300\n0xE498\t0x9301\n0xE499\t0x9302\n0xE49A\t0x9303\n0xE49B\t0x9304\n0xE49C\t0x9305\n0xE49D\t0x9306\n0xE49E\t0x9307\n0xE49F\t0x9308\n0xE4A0\t0x9309\n0xE4A1\t0x6D39\n0xE4A2\t0x6D27\n0xE4A3\t0x6D0C\n0xE4A4\t0x6D43\n0xE4A5\t0x6D48\n0xE4A6\t0x6D07\n0xE4A7\t0x6D04\n0xE4A8\t0x6D19\n0xE4A9\t0x6D0E\n0xE4AA\t0x6D2B\n0xE4AB\t0x6D4D\n0xE4AC\t0x6D2E\n0xE4AD\t0x6D35\n0xE4AE\t0x6D1A\n0xE4AF\t0x6D4F\n0xE4B0\t0x6D52\n0xE4B1\t0x6D54\n0xE4B2\t0x6D33\n0xE4B3\t0x6D91\n0xE4B4\t0x6D6F\n0xE4B5\t0x6D9E\n0xE4B6\t0x6DA0\n0xE4B7\t0x6D5E\n0xE4B8\t0x6D93\n0xE4B9\t0x6D94\n0xE4BA\t0x6D5C\n0xE4BB\t0x6D60\n0xE4BC\t0x6D7C\n0xE4BD\t0x6D63\n0xE4BE\t0x6E1A\n0xE4BF\t0x6DC7\n0xE4C0\t0x6DC5\n0xE4C1\t0x6DDE\n0xE4C2\t0x6E0E\n0xE4C3\t0x6DBF\n0xE4C4\t0x6DE0\n0xE4C5\t0x6E11\n0xE4C6\t0x6DE6\n0xE4C7\t0x6DDD\n0xE4C8\t0x6DD9\n0xE4C9\t0x6E16\n0xE4CA\t0x6DAB\n0xE4CB\t0x6E0C\n0xE4CC\t0x6DAE\n0xE4CD\t0x6E2B\n0xE4CE\t0x6E6E\n0xE4CF\t0x6E4E\n0xE4D0\t0x6E6B\n0xE4D1\t0x6EB2\n0xE4D2\t0x6E5F\n0xE4D3\t0x6E86\n0xE4D4\t0x6E53\n0xE4D5\t0x6E54\n0xE4D6\t0x6E32\n0xE4D7\t0x6E25\n0xE4D8\t0x6E44\n0xE4D9\t0x6EDF\n0xE4DA\t0x6EB1\n0xE4DB\t0x6E98\n0xE4DC\t0x6EE0\n0xE4DD\t0x6F2D\n0xE4DE\t0x6EE2\n0xE4DF\t0x6EA5\n0xE4E0\t0x6EA7\n0xE4E1\t0x6EBD\n0xE4E2\t0x6EBB\n0xE4E3\t0x6EB7\n0xE4E4\t0x6ED7\n0xE4E5\t0x6EB4\n0xE4E6\t0x6ECF\n0xE4E7\t0x6E8F\n0xE4E8\t0x6EC2\n0xE4E9\t0x6E9F\n0xE4EA\t0x6F62\n0xE4EB\t0x6F46\n0xE4EC\t0x6F47\n0xE4ED\t0x6F24\n0xE4EE\t0x6F15\n0xE4EF\t0x6EF9\n0xE4F0\t0x6F2F\n0xE4F1\t0x6F36\n0xE4F2\t0x6F4B\n0xE4F3\t0x6F74\n0xE4F4\t0x6F2A\n0xE4F5\t0x6F09\n0xE4F6\t0x6F29\n0xE4F7\t0x6F89\n0xE4F8\t0x6F8D\n0xE4F9\t0x6F8C\n0xE4FA\t0x6F78\n0xE4FB\t0x6F72\n0xE4FC\t0x6F7C\n0xE4FD\t0x6F7A\n0xE4FE\t0x6FD1\n0xE540\t0x930A\n0xE541\t0x930B\n0xE542\t0x930C\n0xE543\t0x930D\n0xE544\t0x930E\n0xE545\t0x930F\n0xE546\t0x9310\n0xE547\t0x9311\n0xE548\t0x9312\n0xE549\t0x9313\n0xE54A\t0x9314\n0xE54B\t0x9315\n0xE54C\t0x9316\n0xE54D\t0x9317\n0xE54E\t0x9318\n0xE54F\t0x9319\n0xE550\t0x931A\n0xE551\t0x931B\n0xE552\t0x931C\n0xE553\t0x931D\n0xE554\t0x931E\n0xE555\t0x931F\n0xE556\t0x9320\n0xE557\t0x9321\n0xE558\t0x9322\n0xE559\t0x9323\n0xE55A\t0x9324\n0xE55B\t0x9325\n0xE55C\t0x9326\n0xE55D\t0x9327\n0xE55E\t0x9328\n0xE55F\t0x9329\n0xE560\t0x932A\n0xE561\t0x932B\n0xE562\t0x932C\n0xE563\t0x932D\n0xE564\t0x932E\n0xE565\t0x932F\n0xE566\t0x9330\n0xE567\t0x9331\n0xE568\t0x9332\n0xE569\t0x9333\n0xE56A\t0x9334\n0xE56B\t0x9335\n0xE56C\t0x9336\n0xE56D\t0x9337\n0xE56E\t0x9338\n0xE56F\t0x9339\n0xE570\t0x933A\n0xE571\t0x933B\n0xE572\t0x933C\n0xE573\t0x933D\n0xE574\t0x933F\n0xE575\t0x9340\n0xE576\t0x9341\n0xE577\t0x9342\n0xE578\t0x9343\n0xE579\t0x9344\n0xE57A\t0x9345\n0xE57B\t0x9346\n0xE57C\t0x9347\n0xE57D\t0x9348\n0xE57E\t0x9349\n0xE580\t0x934A\n0xE581\t0x934B\n0xE582\t0x934C\n0xE583\t0x934D\n0xE584\t0x934E\n0xE585\t0x934F\n0xE586\t0x9350\n0xE587\t0x9351\n0xE588\t0x9352\n0xE589\t0x9353\n0xE58A\t0x9354\n0xE58B\t0x9355\n0xE58C\t0x9356\n0xE58D\t0x9357\n0xE58E\t0x9358\n0xE58F\t0x9359\n0xE590\t0x935A\n0xE591\t0x935B\n0xE592\t0x935C\n0xE593\t0x935D\n0xE594\t0x935E\n0xE595\t0x935F\n0xE596\t0x9360\n0xE597\t0x9361\n0xE598\t0x9362\n0xE599\t0x9363\n0xE59A\t0x9364\n0xE59B\t0x9365\n0xE59C\t0x9366\n0xE59D\t0x9367\n0xE59E\t0x9368\n0xE59F\t0x9369\n0xE5A0\t0x936B\n0xE5A1\t0x6FC9\n0xE5A2\t0x6FA7\n0xE5A3\t0x6FB9\n0xE5A4\t0x6FB6\n0xE5A5\t0x6FC2\n0xE5A6\t0x6FE1\n0xE5A7\t0x6FEE\n0xE5A8\t0x6FDE\n0xE5A9\t0x6FE0\n0xE5AA\t0x6FEF\n0xE5AB\t0x701A\n0xE5AC\t0x7023\n0xE5AD\t0x701B\n0xE5AE\t0x7039\n0xE5AF\t0x7035\n0xE5B0\t0x704F\n0xE5B1\t0x705E\n0xE5B2\t0x5B80\n0xE5B3\t0x5B84\n0xE5B4\t0x5B95\n0xE5B5\t0x5B93\n0xE5B6\t0x5BA5\n0xE5B7\t0x5BB8\n0xE5B8\t0x752F\n0xE5B9\t0x9A9E\n0xE5BA\t0x6434\n0xE5BB\t0x5BE4\n0xE5BC\t0x5BEE\n0xE5BD\t0x8930\n0xE5BE\t0x5BF0\n0xE5BF\t0x8E47\n0xE5C0\t0x8B07\n0xE5C1\t0x8FB6\n0xE5C2\t0x8FD3\n0xE5C3\t0x8FD5\n0xE5C4\t0x8FE5\n0xE5C5\t0x8FEE\n0xE5C6\t0x8FE4\n0xE5C7\t0x8FE9\n0xE5C8\t0x8FE6\n0xE5C9\t0x8FF3\n0xE5CA\t0x8FE8\n0xE5CB\t0x9005\n0xE5CC\t0x9004\n0xE5CD\t0x900B\n0xE5CE\t0x9026\n0xE5CF\t0x9011\n0xE5D0\t0x900D\n0xE5D1\t0x9016\n0xE5D2\t0x9021\n0xE5D3\t0x9035\n0xE5D4\t0x9036\n0xE5D5\t0x902D\n0xE5D6\t0x902F\n0xE5D7\t0x9044\n0xE5D8\t0x9051\n0xE5D9\t0x9052\n0xE5DA\t0x9050\n0xE5DB\t0x9068\n0xE5DC\t0x9058\n0xE5DD\t0x9062\n0xE5DE\t0x905B\n0xE5DF\t0x66B9\n0xE5E0\t0x9074\n0xE5E1\t0x907D\n0xE5E2\t0x9082\n0xE5E3\t0x9088\n0xE5E4\t0x9083\n0xE5E5\t0x908B\n0xE5E6\t0x5F50\n0xE5E7\t0x5F57\n0xE5E8\t0x5F56\n0xE5E9\t0x5F58\n0xE5EA\t0x5C3B\n0xE5EB\t0x54AB\n0xE5EC\t0x5C50\n0xE5ED\t0x5C59\n0xE5EE\t0x5B71\n0xE5EF\t0x5C63\n0xE5F0\t0x5C66\n0xE5F1\t0x7FBC\n0xE5F2\t0x5F2A\n0xE5F3\t0x5F29\n0xE5F4\t0x5F2D\n0xE5F5\t0x8274\n0xE5F6\t0x5F3C\n0xE5F7\t0x9B3B\n0xE5F8\t0x5C6E\n0xE5F9\t0x5981\n0xE5FA\t0x5983\n0xE5FB\t0x598D\n0xE5FC\t0x59A9\n0xE5FD\t0x59AA\n0xE5FE\t0x59A3\n0xE640\t0x936C\n0xE641\t0x936D\n0xE642\t0x936E\n0xE643\t0x936F\n0xE644\t0x9370\n0xE645\t0x9371\n0xE646\t0x9372\n0xE647\t0x9373\n0xE648\t0x9374\n0xE649\t0x9375\n0xE64A\t0x9376\n0xE64B\t0x9377\n0xE64C\t0x9378\n0xE64D\t0x9379\n0xE64E\t0x937A\n0xE64F\t0x937B\n0xE650\t0x937C\n0xE651\t0x937D\n0xE652\t0x937E\n0xE653\t0x937F\n0xE654\t0x9380\n0xE655\t0x9381\n0xE656\t0x9382\n0xE657\t0x9383\n0xE658\t0x9384\n0xE659\t0x9385\n0xE65A\t0x9386\n0xE65B\t0x9387\n0xE65C\t0x9388\n0xE65D\t0x9389\n0xE65E\t0x938A\n0xE65F\t0x938B\n0xE660\t0x938C\n0xE661\t0x938D\n0xE662\t0x938E\n0xE663\t0x9390\n0xE664\t0x9391\n0xE665\t0x9392\n0xE666\t0x9393\n0xE667\t0x9394\n0xE668\t0x9395\n0xE669\t0x9396\n0xE66A\t0x9397\n0xE66B\t0x9398\n0xE66C\t0x9399\n0xE66D\t0x939A\n0xE66E\t0x939B\n0xE66F\t0x939C\n0xE670\t0x939D\n0xE671\t0x939E\n0xE672\t0x939F\n0xE673\t0x93A0\n0xE674\t0x93A1\n0xE675\t0x93A2\n0xE676\t0x93A3\n0xE677\t0x93A4\n0xE678\t0x93A5\n0xE679\t0x93A6\n0xE67A\t0x93A7\n0xE67B\t0x93A8\n0xE67C\t0x93A9\n0xE67D\t0x93AA\n0xE67E\t0x93AB\n0xE680\t0x93AC\n0xE681\t0x93AD\n0xE682\t0x93AE\n0xE683\t0x93AF\n0xE684\t0x93B0\n0xE685\t0x93B1\n0xE686\t0x93B2\n0xE687\t0x93B3\n0xE688\t0x93B4\n0xE689\t0x93B5\n0xE68A\t0x93B6\n0xE68B\t0x93B7\n0xE68C\t0x93B8\n0xE68D\t0x93B9\n0xE68E\t0x93BA\n0xE68F\t0x93BB\n0xE690\t0x93BC\n0xE691\t0x93BD\n0xE692\t0x93BE\n0xE693\t0x93BF\n0xE694\t0x93C0\n0xE695\t0x93C1\n0xE696\t0x93C2\n0xE697\t0x93C3\n0xE698\t0x93C4\n0xE699\t0x93C5\n0xE69A\t0x93C6\n0xE69B\t0x93C7\n0xE69C\t0x93C8\n0xE69D\t0x93C9\n0xE69E\t0x93CB\n0xE69F\t0x93CC\n0xE6A0\t0x93CD\n0xE6A1\t0x5997\n0xE6A2\t0x59CA\n0xE6A3\t0x59AB\n0xE6A4\t0x599E\n0xE6A5\t0x59A4\n0xE6A6\t0x59D2\n0xE6A7\t0x59B2\n0xE6A8\t0x59AF\n0xE6A9\t0x59D7\n0xE6AA\t0x59BE\n0xE6AB\t0x5A05\n0xE6AC\t0x5A06\n0xE6AD\t0x59DD\n0xE6AE\t0x5A08\n0xE6AF\t0x59E3\n0xE6B0\t0x59D8\n0xE6B1\t0x59F9\n0xE6B2\t0x5A0C\n0xE6B3\t0x5A09\n0xE6B4\t0x5A32\n0xE6B5\t0x5A34\n0xE6B6\t0x5A11\n0xE6B7\t0x5A23\n0xE6B8\t0x5A13\n0xE6B9\t0x5A40\n0xE6BA\t0x5A67\n0xE6BB\t0x5A4A\n0xE6BC\t0x5A55\n0xE6BD\t0x5A3C\n0xE6BE\t0x5A62\n0xE6BF\t0x5A75\n0xE6C0\t0x80EC\n0xE6C1\t0x5AAA\n0xE6C2\t0x5A9B\n0xE6C3\t0x5A77\n0xE6C4\t0x5A7A\n0xE6C5\t0x5ABE\n0xE6C6\t0x5AEB\n0xE6C7\t0x5AB2\n0xE6C8\t0x5AD2\n0xE6C9\t0x5AD4\n0xE6CA\t0x5AB8\n0xE6CB\t0x5AE0\n0xE6CC\t0x5AE3\n0xE6CD\t0x5AF1\n0xE6CE\t0x5AD6\n0xE6CF\t0x5AE6\n0xE6D0\t0x5AD8\n0xE6D1\t0x5ADC\n0xE6D2\t0x5B09\n0xE6D3\t0x5B17\n0xE6D4\t0x5B16\n0xE6D5\t0x5B32\n0xE6D6\t0x5B37\n0xE6D7\t0x5B40\n0xE6D8\t0x5C15\n0xE6D9\t0x5C1C\n0xE6DA\t0x5B5A\n0xE6DB\t0x5B65\n0xE6DC\t0x5B73\n0xE6DD\t0x5B51\n0xE6DE\t0x5B53\n0xE6DF\t0x5B62\n0xE6E0\t0x9A75\n0xE6E1\t0x9A77\n0xE6E2\t0x9A78\n0xE6E3\t0x9A7A\n0xE6E4\t0x9A7F\n0xE6E5\t0x9A7D\n0xE6E6\t0x9A80\n0xE6E7\t0x9A81\n0xE6E8\t0x9A85\n0xE6E9\t0x9A88\n0xE6EA\t0x9A8A\n0xE6EB\t0x9A90\n0xE6EC\t0x9A92\n0xE6ED\t0x9A93\n0xE6EE\t0x9A96\n0xE6EF\t0x9A98\n0xE6F0\t0x9A9B\n0xE6F1\t0x9A9C\n0xE6F2\t0x9A9D\n0xE6F3\t0x9A9F\n0xE6F4\t0x9AA0\n0xE6F5\t0x9AA2\n0xE6F6\t0x9AA3\n0xE6F7\t0x9AA5\n0xE6F8\t0x9AA7\n0xE6F9\t0x7E9F\n0xE6FA\t0x7EA1\n0xE6FB\t0x7EA3\n0xE6FC\t0x7EA5\n0xE6FD\t0x7EA8\n0xE6FE\t0x7EA9\n0xE740\t0x93CE\n0xE741\t0x93CF\n0xE742\t0x93D0\n0xE743\t0x93D1\n0xE744\t0x93D2\n0xE745\t0x93D3\n0xE746\t0x93D4\n0xE747\t0x93D5\n0xE748\t0x93D7\n0xE749\t0x93D8\n0xE74A\t0x93D9\n0xE74B\t0x93DA\n0xE74C\t0x93DB\n0xE74D\t0x93DC\n0xE74E\t0x93DD\n0xE74F\t0x93DE\n0xE750\t0x93DF\n0xE751\t0x93E0\n0xE752\t0x93E1\n0xE753\t0x93E2\n0xE754\t0x93E3\n0xE755\t0x93E4\n0xE756\t0x93E5\n0xE757\t0x93E6\n0xE758\t0x93E7\n0xE759\t0x93E8\n0xE75A\t0x93E9\n0xE75B\t0x93EA\n0xE75C\t0x93EB\n0xE75D\t0x93EC\n0xE75E\t0x93ED\n0xE75F\t0x93EE\n0xE760\t0x93EF\n0xE761\t0x93F0\n0xE762\t0x93F1\n0xE763\t0x93F2\n0xE764\t0x93F3\n0xE765\t0x93F4\n0xE766\t0x93F5\n0xE767\t0x93F6\n0xE768\t0x93F7\n0xE769\t0x93F8\n0xE76A\t0x93F9\n0xE76B\t0x93FA\n0xE76C\t0x93FB\n0xE76D\t0x93FC\n0xE76E\t0x93FD\n0xE76F\t0x93FE\n0xE770\t0x93FF\n0xE771\t0x9400\n0xE772\t0x9401\n0xE773\t0x9402\n0xE774\t0x9403\n0xE775\t0x9404\n0xE776\t0x9405\n0xE777\t0x9406\n0xE778\t0x9407\n0xE779\t0x9408\n0xE77A\t0x9409\n0xE77B\t0x940A\n0xE77C\t0x940B\n0xE77D\t0x940C\n0xE77E\t0x940D\n0xE780\t0x940E\n0xE781\t0x940F\n0xE782\t0x9410\n0xE783\t0x9411\n0xE784\t0x9412\n0xE785\t0x9413\n0xE786\t0x9414\n0xE787\t0x9415\n0xE788\t0x9416\n0xE789\t0x9417\n0xE78A\t0x9418\n0xE78B\t0x9419\n0xE78C\t0x941A\n0xE78D\t0x941B\n0xE78E\t0x941C\n0xE78F\t0x941D\n0xE790\t0x941E\n0xE791\t0x941F\n0xE792\t0x9420\n0xE793\t0x9421\n0xE794\t0x9422\n0xE795\t0x9423\n0xE796\t0x9424\n0xE797\t0x9425\n0xE798\t0x9426\n0xE799\t0x9427\n0xE79A\t0x9428\n0xE79B\t0x9429\n0xE79C\t0x942A\n0xE79D\t0x942B\n0xE79E\t0x942C\n0xE79F\t0x942D\n0xE7A0\t0x942E\n0xE7A1\t0x7EAD\n0xE7A2\t0x7EB0\n0xE7A3\t0x7EBE\n0xE7A4\t0x7EC0\n0xE7A5\t0x7EC1\n0xE7A6\t0x7EC2\n0xE7A7\t0x7EC9\n0xE7A8\t0x7ECB\n0xE7A9\t0x7ECC\n0xE7AA\t0x7ED0\n0xE7AB\t0x7ED4\n0xE7AC\t0x7ED7\n0xE7AD\t0x7EDB\n0xE7AE\t0x7EE0\n0xE7AF\t0x7EE1\n0xE7B0\t0x7EE8\n0xE7B1\t0x7EEB\n0xE7B2\t0x7EEE\n0xE7B3\t0x7EEF\n0xE7B4\t0x7EF1\n0xE7B5\t0x7EF2\n0xE7B6\t0x7F0D\n0xE7B7\t0x7EF6\n0xE7B8\t0x7EFA\n0xE7B9\t0x7EFB\n0xE7BA\t0x7EFE\n0xE7BB\t0x7F01\n0xE7BC\t0x7F02\n0xE7BD\t0x7F03\n0xE7BE\t0x7F07\n0xE7BF\t0x7F08\n0xE7C0\t0x7F0B\n0xE7C1\t0x7F0C\n0xE7C2\t0x7F0F\n0xE7C3\t0x7F11\n0xE7C4\t0x7F12\n0xE7C5\t0x7F17\n0xE7C6\t0x7F19\n0xE7C7\t0x7F1C\n0xE7C8\t0x7F1B\n0xE7C9\t0x7F1F\n0xE7CA\t0x7F21\n0xE7CB\t0x7F22\n0xE7CC\t0x7F23\n0xE7CD\t0x7F24\n0xE7CE\t0x7F25\n0xE7CF\t0x7F26\n0xE7D0\t0x7F27\n0xE7D1\t0x7F2A\n0xE7D2\t0x7F2B\n0xE7D3\t0x7F2C\n0xE7D4\t0x7F2D\n0xE7D5\t0x7F2F\n0xE7D6\t0x7F30\n0xE7D7\t0x7F31\n0xE7D8\t0x7F32\n0xE7D9\t0x7F33\n0xE7DA\t0x7F35\n0xE7DB\t0x5E7A\n0xE7DC\t0x757F\n0xE7DD\t0x5DDB\n0xE7DE\t0x753E\n0xE7DF\t0x9095\n0xE7E0\t0x738E\n0xE7E1\t0x7391\n0xE7E2\t0x73AE\n0xE7E3\t0x73A2\n0xE7E4\t0x739F\n0xE7E5\t0x73CF\n0xE7E6\t0x73C2\n0xE7E7\t0x73D1\n0xE7E8\t0x73B7\n0xE7E9\t0x73B3\n0xE7EA\t0x73C0\n0xE7EB\t0x73C9\n0xE7EC\t0x73C8\n0xE7ED\t0x73E5\n0xE7EE\t0x73D9\n0xE7EF\t0x987C\n0xE7F0\t0x740A\n0xE7F1\t0x73E9\n0xE7F2\t0x73E7\n0xE7F3\t0x73DE\n0xE7F4\t0x73BA\n0xE7F5\t0x73F2\n0xE7F6\t0x740F\n0xE7F7\t0x742A\n0xE7F8\t0x745B\n0xE7F9\t0x7426\n0xE7FA\t0x7425\n0xE7FB\t0x7428\n0xE7FC\t0x7430\n0xE7FD\t0x742E\n0xE7FE\t0x742C\n0xE840\t0x942F\n0xE841\t0x9430\n0xE842\t0x9431\n0xE843\t0x9432\n0xE844\t0x9433\n0xE845\t0x9434\n0xE846\t0x9435\n0xE847\t0x9436\n0xE848\t0x9437\n0xE849\t0x9438\n0xE84A\t0x9439\n0xE84B\t0x943A\n0xE84C\t0x943B\n0xE84D\t0x943C\n0xE84E\t0x943D\n0xE84F\t0x943F\n0xE850\t0x9440\n0xE851\t0x9441\n0xE852\t0x9442\n0xE853\t0x9443\n0xE854\t0x9444\n0xE855\t0x9445\n0xE856\t0x9446\n0xE857\t0x9447\n0xE858\t0x9448\n0xE859\t0x9449\n0xE85A\t0x944A\n0xE85B\t0x944B\n0xE85C\t0x944C\n0xE85D\t0x944D\n0xE85E\t0x944E\n0xE85F\t0x944F\n0xE860\t0x9450\n0xE861\t0x9451\n0xE862\t0x9452\n0xE863\t0x9453\n0xE864\t0x9454\n0xE865\t0x9455\n0xE866\t0x9456\n0xE867\t0x9457\n0xE868\t0x9458\n0xE869\t0x9459\n0xE86A\t0x945A\n0xE86B\t0x945B\n0xE86C\t0x945C\n0xE86D\t0x945D\n0xE86E\t0x945E\n0xE86F\t0x945F\n0xE870\t0x9460\n0xE871\t0x9461\n0xE872\t0x9462\n0xE873\t0x9463\n0xE874\t0x9464\n0xE875\t0x9465\n0xE876\t0x9466\n0xE877\t0x9467\n0xE878\t0x9468\n0xE879\t0x9469\n0xE87A\t0x946A\n0xE87B\t0x946C\n0xE87C\t0x946D\n0xE87D\t0x946E\n0xE87E\t0x946F\n0xE880\t0x9470\n0xE881\t0x9471\n0xE882\t0x9472\n0xE883\t0x9473\n0xE884\t0x9474\n0xE885\t0x9475\n0xE886\t0x9476\n0xE887\t0x9477\n0xE888\t0x9478\n0xE889\t0x9479\n0xE88A\t0x947A\n0xE88B\t0x947B\n0xE88C\t0x947C\n0xE88D\t0x947D\n0xE88E\t0x947E\n0xE88F\t0x947F\n0xE890\t0x9480\n0xE891\t0x9481\n0xE892\t0x9482\n0xE893\t0x9483\n0xE894\t0x9484\n0xE895\t0x9491\n0xE896\t0x9496\n0xE897\t0x9498\n0xE898\t0x94C7\n0xE899\t0x94CF\n0xE89A\t0x94D3\n0xE89B\t0x94D4\n0xE89C\t0x94DA\n0xE89D\t0x94E6\n0xE89E\t0x94FB\n0xE89F\t0x951C\n0xE8A0\t0x9520\n0xE8A1\t0x741B\n0xE8A2\t0x741A\n0xE8A3\t0x7441\n0xE8A4\t0x745C\n0xE8A5\t0x7457\n0xE8A6\t0x7455\n0xE8A7\t0x7459\n0xE8A8\t0x7477\n0xE8A9\t0x746D\n0xE8AA\t0x747E\n0xE8AB\t0x749C\n0xE8AC\t0x748E\n0xE8AD\t0x7480\n0xE8AE\t0x7481\n0xE8AF\t0x7487\n0xE8B0\t0x748B\n0xE8B1\t0x749E\n0xE8B2\t0x74A8\n0xE8B3\t0x74A9\n0xE8B4\t0x7490\n0xE8B5\t0x74A7\n0xE8B6\t0x74D2\n0xE8B7\t0x74BA\n0xE8B8\t0x97EA\n0xE8B9\t0x97EB\n0xE8BA\t0x97EC\n0xE8BB\t0x674C\n0xE8BC\t0x6753\n0xE8BD\t0x675E\n0xE8BE\t0x6748\n0xE8BF\t0x6769\n0xE8C0\t0x67A5\n0xE8C1\t0x6787\n0xE8C2\t0x676A\n0xE8C3\t0x6773\n0xE8C4\t0x6798\n0xE8C5\t0x67A7\n0xE8C6\t0x6775\n0xE8C7\t0x67A8\n0xE8C8\t0x679E\n0xE8C9\t0x67AD\n0xE8CA\t0x678B\n0xE8CB\t0x6777\n0xE8CC\t0x677C\n0xE8CD\t0x67F0\n0xE8CE\t0x6809\n0xE8CF\t0x67D8\n0xE8D0\t0x680A\n0xE8D1\t0x67E9\n0xE8D2\t0x67B0\n0xE8D3\t0x680C\n0xE8D4\t0x67D9\n0xE8D5\t0x67B5\n0xE8D6\t0x67DA\n0xE8D7\t0x67B3\n0xE8D8\t0x67DD\n0xE8D9\t0x6800\n0xE8DA\t0x67C3\n0xE8DB\t0x67B8\n0xE8DC\t0x67E2\n0xE8DD\t0x680E\n0xE8DE\t0x67C1\n0xE8DF\t0x67FD\n0xE8E0\t0x6832\n0xE8E1\t0x6833\n0xE8E2\t0x6860\n0xE8E3\t0x6861\n0xE8E4\t0x684E\n0xE8E5\t0x6862\n0xE8E6\t0x6844\n0xE8E7\t0x6864\n0xE8E8\t0x6883\n0xE8E9\t0x681D\n0xE8EA\t0x6855\n0xE8EB\t0x6866\n0xE8EC\t0x6841\n0xE8ED\t0x6867\n0xE8EE\t0x6840\n0xE8EF\t0x683E\n0xE8F0\t0x684A\n0xE8F1\t0x6849\n0xE8F2\t0x6829\n0xE8F3\t0x68B5\n0xE8F4\t0x688F\n0xE8F5\t0x6874\n0xE8F6\t0x6877\n0xE8F7\t0x6893\n0xE8F8\t0x686B\n0xE8F9\t0x68C2\n0xE8FA\t0x696E\n0xE8FB\t0x68FC\n0xE8FC\t0x691F\n0xE8FD\t0x6920\n0xE8FE\t0x68F9\n0xE940\t0x9527\n0xE941\t0x9533\n0xE942\t0x953D\n0xE943\t0x9543\n0xE944\t0x9548\n0xE945\t0x954B\n0xE946\t0x9555\n0xE947\t0x955A\n0xE948\t0x9560\n0xE949\t0x956E\n0xE94A\t0x9574\n0xE94B\t0x9575\n0xE94C\t0x9577\n0xE94D\t0x9578\n0xE94E\t0x9579\n0xE94F\t0x957A\n0xE950\t0x957B\n0xE951\t0x957C\n0xE952\t0x957D\n0xE953\t0x957E\n0xE954\t0x9580\n0xE955\t0x9581\n0xE956\t0x9582\n0xE957\t0x9583\n0xE958\t0x9584\n0xE959\t0x9585\n0xE95A\t0x9586\n0xE95B\t0x9587\n0xE95C\t0x9588\n0xE95D\t0x9589\n0xE95E\t0x958A\n0xE95F\t0x958B\n0xE960\t0x958C\n0xE961\t0x958D\n0xE962\t0x958E\n0xE963\t0x958F\n0xE964\t0x9590\n0xE965\t0x9591\n0xE966\t0x9592\n0xE967\t0x9593\n0xE968\t0x9594\n0xE969\t0x9595\n0xE96A\t0x9596\n0xE96B\t0x9597\n0xE96C\t0x9598\n0xE96D\t0x9599\n0xE96E\t0x959A\n0xE96F\t0x959B\n0xE970\t0x959C\n0xE971\t0x959D\n0xE972\t0x959E\n0xE973\t0x959F\n0xE974\t0x95A0\n0xE975\t0x95A1\n0xE976\t0x95A2\n0xE977\t0x95A3\n0xE978\t0x95A4\n0xE979\t0x95A5\n0xE97A\t0x95A6\n0xE97B\t0x95A7\n0xE97C\t0x95A8\n0xE97D\t0x95A9\n0xE97E\t0x95AA\n0xE980\t0x95AB\n0xE981\t0x95AC\n0xE982\t0x95AD\n0xE983\t0x95AE\n0xE984\t0x95AF\n0xE985\t0x95B0\n0xE986\t0x95B1\n0xE987\t0x95B2\n0xE988\t0x95B3\n0xE989\t0x95B4\n0xE98A\t0x95B5\n0xE98B\t0x95B6\n0xE98C\t0x95B7\n0xE98D\t0x95B8\n0xE98E\t0x95B9\n0xE98F\t0x95BA\n0xE990\t0x95BB\n0xE991\t0x95BC\n0xE992\t0x95BD\n0xE993\t0x95BE\n0xE994\t0x95BF\n0xE995\t0x95C0\n0xE996\t0x95C1\n0xE997\t0x95C2\n0xE998\t0x95C3\n0xE999\t0x95C4\n0xE99A\t0x95C5\n0xE99B\t0x95C6\n0xE99C\t0x95C7\n0xE99D\t0x95C8\n0xE99E\t0x95C9\n0xE99F\t0x95CA\n0xE9A0\t0x95CB\n0xE9A1\t0x6924\n0xE9A2\t0x68F0\n0xE9A3\t0x690B\n0xE9A4\t0x6901\n0xE9A5\t0x6957\n0xE9A6\t0x68E3\n0xE9A7\t0x6910\n0xE9A8\t0x6971\n0xE9A9\t0x6939\n0xE9AA\t0x6960\n0xE9AB\t0x6942\n0xE9AC\t0x695D\n0xE9AD\t0x6984\n0xE9AE\t0x696B\n0xE9AF\t0x6980\n0xE9B0\t0x6998\n0xE9B1\t0x6978\n0xE9B2\t0x6934\n0xE9B3\t0x69CC\n0xE9B4\t0x6987\n0xE9B5\t0x6988\n0xE9B6\t0x69CE\n0xE9B7\t0x6989\n0xE9B8\t0x6966\n0xE9B9\t0x6963\n0xE9BA\t0x6979\n0xE9BB\t0x699B\n0xE9BC\t0x69A7\n0xE9BD\t0x69BB\n0xE9BE\t0x69AB\n0xE9BF\t0x69AD\n0xE9C0\t0x69D4\n0xE9C1\t0x69B1\n0xE9C2\t0x69C1\n0xE9C3\t0x69CA\n0xE9C4\t0x69DF\n0xE9C5\t0x6995\n0xE9C6\t0x69E0\n0xE9C7\t0x698D\n0xE9C8\t0x69FF\n0xE9C9\t0x6A2F\n0xE9CA\t0x69ED\n0xE9CB\t0x6A17\n0xE9CC\t0x6A18\n0xE9CD\t0x6A65\n0xE9CE\t0x69F2\n0xE9CF\t0x6A44\n0xE9D0\t0x6A3E\n0xE9D1\t0x6AA0\n0xE9D2\t0x6A50\n0xE9D3\t0x6A5B\n0xE9D4\t0x6A35\n0xE9D5\t0x6A8E\n0xE9D6\t0x6A79\n0xE9D7\t0x6A3D\n0xE9D8\t0x6A28\n0xE9D9\t0x6A58\n0xE9DA\t0x6A7C\n0xE9DB\t0x6A91\n0xE9DC\t0x6A90\n0xE9DD\t0x6AA9\n0xE9DE\t0x6A97\n0xE9DF\t0x6AAB\n0xE9E0\t0x7337\n0xE9E1\t0x7352\n0xE9E2\t0x6B81\n0xE9E3\t0x6B82\n0xE9E4\t0x6B87\n0xE9E5\t0x6B84\n0xE9E6\t0x6B92\n0xE9E7\t0x6B93\n0xE9E8\t0x6B8D\n0xE9E9\t0x6B9A\n0xE9EA\t0x6B9B\n0xE9EB\t0x6BA1\n0xE9EC\t0x6BAA\n0xE9ED\t0x8F6B\n0xE9EE\t0x8F6D\n0xE9EF\t0x8F71\n0xE9F0\t0x8F72\n0xE9F1\t0x8F73\n0xE9F2\t0x8F75\n0xE9F3\t0x8F76\n0xE9F4\t0x8F78\n0xE9F5\t0x8F77\n0xE9F6\t0x8F79\n0xE9F7\t0x8F7A\n0xE9F8\t0x8F7C\n0xE9F9\t0x8F7E\n0xE9FA\t0x8F81\n0xE9FB\t0x8F82\n0xE9FC\t0x8F84\n0xE9FD\t0x8F87\n0xE9FE\t0x8F8B\n0xEA40\t0x95CC\n0xEA41\t0x95CD\n0xEA42\t0x95CE\n0xEA43\t0x95CF\n0xEA44\t0x95D0\n0xEA45\t0x95D1\n0xEA46\t0x95D2\n0xEA47\t0x95D3\n0xEA48\t0x95D4\n0xEA49\t0x95D5\n0xEA4A\t0x95D6\n0xEA4B\t0x95D7\n0xEA4C\t0x95D8\n0xEA4D\t0x95D9\n0xEA4E\t0x95DA\n0xEA4F\t0x95DB\n0xEA50\t0x95DC\n0xEA51\t0x95DD\n0xEA52\t0x95DE\n0xEA53\t0x95DF\n0xEA54\t0x95E0\n0xEA55\t0x95E1\n0xEA56\t0x95E2\n0xEA57\t0x95E3\n0xEA58\t0x95E4\n0xEA59\t0x95E5\n0xEA5A\t0x95E6\n0xEA5B\t0x95E7\n0xEA5C\t0x95EC\n0xEA5D\t0x95FF\n0xEA5E\t0x9607\n0xEA5F\t0x9613\n0xEA60\t0x9618\n0xEA61\t0x961B\n0xEA62\t0x961E\n0xEA63\t0x9620\n0xEA64\t0x9623\n0xEA65\t0x9624\n0xEA66\t0x9625\n0xEA67\t0x9626\n0xEA68\t0x9627\n0xEA69\t0x9628\n0xEA6A\t0x9629\n0xEA6B\t0x962B\n0xEA6C\t0x962C\n0xEA6D\t0x962D\n0xEA6E\t0x962F\n0xEA6F\t0x9630\n0xEA70\t0x9637\n0xEA71\t0x9638\n0xEA72\t0x9639\n0xEA73\t0x963A\n0xEA74\t0x963E\n0xEA75\t0x9641\n0xEA76\t0x9643\n0xEA77\t0x964A\n0xEA78\t0x964E\n0xEA79\t0x964F\n0xEA7A\t0x9651\n0xEA7B\t0x9652\n0xEA7C\t0x9653\n0xEA7D\t0x9656\n0xEA7E\t0x9657\n0xEA80\t0x9658\n0xEA81\t0x9659\n0xEA82\t0x965A\n0xEA83\t0x965C\n0xEA84\t0x965D\n0xEA85\t0x965E\n0xEA86\t0x9660\n0xEA87\t0x9663\n0xEA88\t0x9665\n0xEA89\t0x9666\n0xEA8A\t0x966B\n0xEA8B\t0x966D\n0xEA8C\t0x966E\n0xEA8D\t0x966F\n0xEA8E\t0x9670\n0xEA8F\t0x9671\n0xEA90\t0x9673\n0xEA91\t0x9678\n0xEA92\t0x9679\n0xEA93\t0x967A\n0xEA94\t0x967B\n0xEA95\t0x967C\n0xEA96\t0x967D\n0xEA97\t0x967E\n0xEA98\t0x967F\n0xEA99\t0x9680\n0xEA9A\t0x9681\n0xEA9B\t0x9682\n0xEA9C\t0x9683\n0xEA9D\t0x9684\n0xEA9E\t0x9687\n0xEA9F\t0x9689\n0xEAA0\t0x968A\n0xEAA1\t0x8F8D\n0xEAA2\t0x8F8E\n0xEAA3\t0x8F8F\n0xEAA4\t0x8F98\n0xEAA5\t0x8F9A\n0xEAA6\t0x8ECE\n0xEAA7\t0x620B\n0xEAA8\t0x6217\n0xEAA9\t0x621B\n0xEAAA\t0x621F\n0xEAAB\t0x6222\n0xEAAC\t0x6221\n0xEAAD\t0x6225\n0xEAAE\t0x6224\n0xEAAF\t0x622C\n0xEAB0\t0x81E7\n0xEAB1\t0x74EF\n0xEAB2\t0x74F4\n0xEAB3\t0x74FF\n0xEAB4\t0x750F\n0xEAB5\t0x7511\n0xEAB6\t0x7513\n0xEAB7\t0x6534\n0xEAB8\t0x65EE\n0xEAB9\t0x65EF\n0xEABA\t0x65F0\n0xEABB\t0x660A\n0xEABC\t0x6619\n0xEABD\t0x6772\n0xEABE\t0x6603\n0xEABF\t0x6615\n0xEAC0\t0x6600\n0xEAC1\t0x7085\n0xEAC2\t0x66F7\n0xEAC3\t0x661D\n0xEAC4\t0x6634\n0xEAC5\t0x6631\n0xEAC6\t0x6636\n0xEAC7\t0x6635\n0xEAC8\t0x8006\n0xEAC9\t0x665F\n0xEACA\t0x6654\n0xEACB\t0x6641\n0xEACC\t0x664F\n0xEACD\t0x6656\n0xEACE\t0x6661\n0xEACF\t0x6657\n0xEAD0\t0x6677\n0xEAD1\t0x6684\n0xEAD2\t0x668C\n0xEAD3\t0x66A7\n0xEAD4\t0x669D\n0xEAD5\t0x66BE\n0xEAD6\t0x66DB\n0xEAD7\t0x66DC\n0xEAD8\t0x66E6\n0xEAD9\t0x66E9\n0xEADA\t0x8D32\n0xEADB\t0x8D33\n0xEADC\t0x8D36\n0xEADD\t0x8D3B\n0xEADE\t0x8D3D\n0xEADF\t0x8D40\n0xEAE0\t0x8D45\n0xEAE1\t0x8D46\n0xEAE2\t0x8D48\n0xEAE3\t0x8D49\n0xEAE4\t0x8D47\n0xEAE5\t0x8D4D\n0xEAE6\t0x8D55\n0xEAE7\t0x8D59\n0xEAE8\t0x89C7\n0xEAE9\t0x89CA\n0xEAEA\t0x89CB\n0xEAEB\t0x89CC\n0xEAEC\t0x89CE\n0xEAED\t0x89CF\n0xEAEE\t0x89D0\n0xEAEF\t0x89D1\n0xEAF0\t0x726E\n0xEAF1\t0x729F\n0xEAF2\t0x725D\n0xEAF3\t0x7266\n0xEAF4\t0x726F\n0xEAF5\t0x727E\n0xEAF6\t0x727F\n0xEAF7\t0x7284\n0xEAF8\t0x728B\n0xEAF9\t0x728D\n0xEAFA\t0x728F\n0xEAFB\t0x7292\n0xEAFC\t0x6308\n0xEAFD\t0x6332\n0xEAFE\t0x63B0\n0xEB40\t0x968C\n0xEB41\t0x968E\n0xEB42\t0x9691\n0xEB43\t0x9692\n0xEB44\t0x9693\n0xEB45\t0x9695\n0xEB46\t0x9696\n0xEB47\t0x969A\n0xEB48\t0x969B\n0xEB49\t0x969D\n0xEB4A\t0x969E\n0xEB4B\t0x969F\n0xEB4C\t0x96A0\n0xEB4D\t0x96A1\n0xEB4E\t0x96A2\n0xEB4F\t0x96A3\n0xEB50\t0x96A4\n0xEB51\t0x96A5\n0xEB52\t0x96A6\n0xEB53\t0x96A8\n0xEB54\t0x96A9\n0xEB55\t0x96AA\n0xEB56\t0x96AB\n0xEB57\t0x96AC\n0xEB58\t0x96AD\n0xEB59\t0x96AE\n0xEB5A\t0x96AF\n0xEB5B\t0x96B1\n0xEB5C\t0x96B2\n0xEB5D\t0x96B4\n0xEB5E\t0x96B5\n0xEB5F\t0x96B7\n0xEB60\t0x96B8\n0xEB61\t0x96BA\n0xEB62\t0x96BB\n0xEB63\t0x96BF\n0xEB64\t0x96C2\n0xEB65\t0x96C3\n0xEB66\t0x96C8\n0xEB67\t0x96CA\n0xEB68\t0x96CB\n0xEB69\t0x96D0\n0xEB6A\t0x96D1\n0xEB6B\t0x96D3\n0xEB6C\t0x96D4\n0xEB6D\t0x96D6\n0xEB6E\t0x96D7\n0xEB6F\t0x96D8\n0xEB70\t0x96D9\n0xEB71\t0x96DA\n0xEB72\t0x96DB\n0xEB73\t0x96DC\n0xEB74\t0x96DD\n0xEB75\t0x96DE\n0xEB76\t0x96DF\n0xEB77\t0x96E1\n0xEB78\t0x96E2\n0xEB79\t0x96E3\n0xEB7A\t0x96E4\n0xEB7B\t0x96E5\n0xEB7C\t0x96E6\n0xEB7D\t0x96E7\n0xEB7E\t0x96EB\n0xEB80\t0x96EC\n0xEB81\t0x96ED\n0xEB82\t0x96EE\n0xEB83\t0x96F0\n0xEB84\t0x96F1\n0xEB85\t0x96F2\n0xEB86\t0x96F4\n0xEB87\t0x96F5\n0xEB88\t0x96F8\n0xEB89\t0x96FA\n0xEB8A\t0x96FB\n0xEB8B\t0x96FC\n0xEB8C\t0x96FD\n0xEB8D\t0x96FF\n0xEB8E\t0x9702\n0xEB8F\t0x9703\n0xEB90\t0x9705\n0xEB91\t0x970A\n0xEB92\t0x970B\n0xEB93\t0x970C\n0xEB94\t0x9710\n0xEB95\t0x9711\n0xEB96\t0x9712\n0xEB97\t0x9714\n0xEB98\t0x9715\n0xEB99\t0x9717\n0xEB9A\t0x9718\n0xEB9B\t0x9719\n0xEB9C\t0x971A\n0xEB9D\t0x971B\n0xEB9E\t0x971D\n0xEB9F\t0x971F\n0xEBA0\t0x9720\n0xEBA1\t0x643F\n0xEBA2\t0x64D8\n0xEBA3\t0x8004\n0xEBA4\t0x6BEA\n0xEBA5\t0x6BF3\n0xEBA6\t0x6BFD\n0xEBA7\t0x6BF5\n0xEBA8\t0x6BF9\n0xEBA9\t0x6C05\n0xEBAA\t0x6C07\n0xEBAB\t0x6C06\n0xEBAC\t0x6C0D\n0xEBAD\t0x6C15\n0xEBAE\t0x6C18\n0xEBAF\t0x6C19\n0xEBB0\t0x6C1A\n0xEBB1\t0x6C21\n0xEBB2\t0x6C29\n0xEBB3\t0x6C24\n0xEBB4\t0x6C2A\n0xEBB5\t0x6C32\n0xEBB6\t0x6535\n0xEBB7\t0x6555\n0xEBB8\t0x656B\n0xEBB9\t0x724D\n0xEBBA\t0x7252\n0xEBBB\t0x7256\n0xEBBC\t0x7230\n0xEBBD\t0x8662\n0xEBBE\t0x5216\n0xEBBF\t0x809F\n0xEBC0\t0x809C\n0xEBC1\t0x8093\n0xEBC2\t0x80BC\n0xEBC3\t0x670A\n0xEBC4\t0x80BD\n0xEBC5\t0x80B1\n0xEBC6\t0x80AB\n0xEBC7\t0x80AD\n0xEBC8\t0x80B4\n0xEBC9\t0x80B7\n0xEBCA\t0x80E7\n0xEBCB\t0x80E8\n0xEBCC\t0x80E9\n0xEBCD\t0x80EA\n0xEBCE\t0x80DB\n0xEBCF\t0x80C2\n0xEBD0\t0x80C4\n0xEBD1\t0x80D9\n0xEBD2\t0x80CD\n0xEBD3\t0x80D7\n0xEBD4\t0x6710\n0xEBD5\t0x80DD\n0xEBD6\t0x80EB\n0xEBD7\t0x80F1\n0xEBD8\t0x80F4\n0xEBD9\t0x80ED\n0xEBDA\t0x810D\n0xEBDB\t0x810E\n0xEBDC\t0x80F2\n0xEBDD\t0x80FC\n0xEBDE\t0x6715\n0xEBDF\t0x8112\n0xEBE0\t0x8C5A\n0xEBE1\t0x8136\n0xEBE2\t0x811E\n0xEBE3\t0x812C\n0xEBE4\t0x8118\n0xEBE5\t0x8132\n0xEBE6\t0x8148\n0xEBE7\t0x814C\n0xEBE8\t0x8153\n0xEBE9\t0x8174\n0xEBEA\t0x8159\n0xEBEB\t0x815A\n0xEBEC\t0x8171\n0xEBED\t0x8160\n0xEBEE\t0x8169\n0xEBEF\t0x817C\n0xEBF0\t0x817D\n0xEBF1\t0x816D\n0xEBF2\t0x8167\n0xEBF3\t0x584D\n0xEBF4\t0x5AB5\n0xEBF5\t0x8188\n0xEBF6\t0x8182\n0xEBF7\t0x8191\n0xEBF8\t0x6ED5\n0xEBF9\t0x81A3\n0xEBFA\t0x81AA\n0xEBFB\t0x81CC\n0xEBFC\t0x6726\n0xEBFD\t0x81CA\n0xEBFE\t0x81BB\n0xEC40\t0x9721\n0xEC41\t0x9722\n0xEC42\t0x9723\n0xEC43\t0x9724\n0xEC44\t0x9725\n0xEC45\t0x9726\n0xEC46\t0x9727\n0xEC47\t0x9728\n0xEC48\t0x9729\n0xEC49\t0x972B\n0xEC4A\t0x972C\n0xEC4B\t0x972E\n0xEC4C\t0x972F\n0xEC4D\t0x9731\n0xEC4E\t0x9733\n0xEC4F\t0x9734\n0xEC50\t0x9735\n0xEC51\t0x9736\n0xEC52\t0x9737\n0xEC53\t0x973A\n0xEC54\t0x973B\n0xEC55\t0x973C\n0xEC56\t0x973D\n0xEC57\t0x973F\n0xEC58\t0x9740\n0xEC59\t0x9741\n0xEC5A\t0x9742\n0xEC5B\t0x9743\n0xEC5C\t0x9744\n0xEC5D\t0x9745\n0xEC5E\t0x9746\n0xEC5F\t0x9747\n0xEC60\t0x9748\n0xEC61\t0x9749\n0xEC62\t0x974A\n0xEC63\t0x974B\n0xEC64\t0x974C\n0xEC65\t0x974D\n0xEC66\t0x974E\n0xEC67\t0x974F\n0xEC68\t0x9750\n0xEC69\t0x9751\n0xEC6A\t0x9754\n0xEC6B\t0x9755\n0xEC6C\t0x9757\n0xEC6D\t0x9758\n0xEC6E\t0x975A\n0xEC6F\t0x975C\n0xEC70\t0x975D\n0xEC71\t0x975F\n0xEC72\t0x9763\n0xEC73\t0x9764\n0xEC74\t0x9766\n0xEC75\t0x9767\n0xEC76\t0x9768\n0xEC77\t0x976A\n0xEC78\t0x976B\n0xEC79\t0x976C\n0xEC7A\t0x976D\n0xEC7B\t0x976E\n0xEC7C\t0x976F\n0xEC7D\t0x9770\n0xEC7E\t0x9771\n0xEC80\t0x9772\n0xEC81\t0x9775\n0xEC82\t0x9777\n0xEC83\t0x9778\n0xEC84\t0x9779\n0xEC85\t0x977A\n0xEC86\t0x977B\n0xEC87\t0x977D\n0xEC88\t0x977E\n0xEC89\t0x977F\n0xEC8A\t0x9780\n0xEC8B\t0x9781\n0xEC8C\t0x9782\n0xEC8D\t0x9783\n0xEC8E\t0x9784\n0xEC8F\t0x9786\n0xEC90\t0x9787\n0xEC91\t0x9788\n0xEC92\t0x9789\n0xEC93\t0x978A\n0xEC94\t0x978C\n0xEC95\t0x978E\n0xEC96\t0x978F\n0xEC97\t0x9790\n0xEC98\t0x9793\n0xEC99\t0x9795\n0xEC9A\t0x9796\n0xEC9B\t0x9797\n0xEC9C\t0x9799\n0xEC9D\t0x979A\n0xEC9E\t0x979B\n0xEC9F\t0x979C\n0xECA0\t0x979D\n0xECA1\t0x81C1\n0xECA2\t0x81A6\n0xECA3\t0x6B24\n0xECA4\t0x6B37\n0xECA5\t0x6B39\n0xECA6\t0x6B43\n0xECA7\t0x6B46\n0xECA8\t0x6B59\n0xECA9\t0x98D1\n0xECAA\t0x98D2\n0xECAB\t0x98D3\n0xECAC\t0x98D5\n0xECAD\t0x98D9\n0xECAE\t0x98DA\n0xECAF\t0x6BB3\n0xECB0\t0x5F40\n0xECB1\t0x6BC2\n0xECB2\t0x89F3\n0xECB3\t0x6590\n0xECB4\t0x9F51\n0xECB5\t0x6593\n0xECB6\t0x65BC\n0xECB7\t0x65C6\n0xECB8\t0x65C4\n0xECB9\t0x65C3\n0xECBA\t0x65CC\n0xECBB\t0x65CE\n0xECBC\t0x65D2\n0xECBD\t0x65D6\n0xECBE\t0x7080\n0xECBF\t0x709C\n0xECC0\t0x7096\n0xECC1\t0x709D\n0xECC2\t0x70BB\n0xECC3\t0x70C0\n0xECC4\t0x70B7\n0xECC5\t0x70AB\n0xECC6\t0x70B1\n0xECC7\t0x70E8\n0xECC8\t0x70CA\n0xECC9\t0x7110\n0xECCA\t0x7113\n0xECCB\t0x7116\n0xECCC\t0x712F\n0xECCD\t0x7131\n0xECCE\t0x7173\n0xECCF\t0x715C\n0xECD0\t0x7168\n0xECD1\t0x7145\n0xECD2\t0x7172\n0xECD3\t0x714A\n0xECD4\t0x7178\n0xECD5\t0x717A\n0xECD6\t0x7198\n0xECD7\t0x71B3\n0xECD8\t0x71B5\n0xECD9\t0x71A8\n0xECDA\t0x71A0\n0xECDB\t0x71E0\n0xECDC\t0x71D4\n0xECDD\t0x71E7\n0xECDE\t0x71F9\n0xECDF\t0x721D\n0xECE0\t0x7228\n0xECE1\t0x706C\n0xECE2\t0x7118\n0xECE3\t0x7166\n0xECE4\t0x71B9\n0xECE5\t0x623E\n0xECE6\t0x623D\n0xECE7\t0x6243\n0xECE8\t0x6248\n0xECE9\t0x6249\n0xECEA\t0x793B\n0xECEB\t0x7940\n0xECEC\t0x7946\n0xECED\t0x7949\n0xECEE\t0x795B\n0xECEF\t0x795C\n0xECF0\t0x7953\n0xECF1\t0x795A\n0xECF2\t0x7962\n0xECF3\t0x7957\n0xECF4\t0x7960\n0xECF5\t0x796F\n0xECF6\t0x7967\n0xECF7\t0x797A\n0xECF8\t0x7985\n0xECF9\t0x798A\n0xECFA\t0x799A\n0xECFB\t0x79A7\n0xECFC\t0x79B3\n0xECFD\t0x5FD1\n0xECFE\t0x5FD0\n0xED40\t0x979E\n0xED41\t0x979F\n0xED42\t0x97A1\n0xED43\t0x97A2\n0xED44\t0x97A4\n0xED45\t0x97A5\n0xED46\t0x97A6\n0xED47\t0x97A7\n0xED48\t0x97A8\n0xED49\t0x97A9\n0xED4A\t0x97AA\n0xED4B\t0x97AC\n0xED4C\t0x97AE\n0xED4D\t0x97B0\n0xED4E\t0x97B1\n0xED4F\t0x97B3\n0xED50\t0x97B5\n0xED51\t0x97B6\n0xED52\t0x97B7\n0xED53\t0x97B8\n0xED54\t0x97B9\n0xED55\t0x97BA\n0xED56\t0x97BB\n0xED57\t0x97BC\n0xED58\t0x97BD\n0xED59\t0x97BE\n0xED5A\t0x97BF\n0xED5B\t0x97C0\n0xED5C\t0x97C1\n0xED5D\t0x97C2\n0xED5E\t0x97C3\n0xED5F\t0x97C4\n0xED60\t0x97C5\n0xED61\t0x97C6\n0xED62\t0x97C7\n0xED63\t0x97C8\n0xED64\t0x97C9\n0xED65\t0x97CA\n0xED66\t0x97CB\n0xED67\t0x97CC\n0xED68\t0x97CD\n0xED69\t0x97CE\n0xED6A\t0x97CF\n0xED6B\t0x97D0\n0xED6C\t0x97D1\n0xED6D\t0x97D2\n0xED6E\t0x97D3\n0xED6F\t0x97D4\n0xED70\t0x97D5\n0xED71\t0x97D6\n0xED72\t0x97D7\n0xED73\t0x97D8\n0xED74\t0x97D9\n0xED75\t0x97DA\n0xED76\t0x97DB\n0xED77\t0x97DC\n0xED78\t0x97DD\n0xED79\t0x97DE\n0xED7A\t0x97DF\n0xED7B\t0x97E0\n0xED7C\t0x97E1\n0xED7D\t0x97E2\n0xED7E\t0x97E3\n0xED80\t0x97E4\n0xED81\t0x97E5\n0xED82\t0x97E8\n0xED83\t0x97EE\n0xED84\t0x97EF\n0xED85\t0x97F0\n0xED86\t0x97F1\n0xED87\t0x97F2\n0xED88\t0x97F4\n0xED89\t0x97F7\n0xED8A\t0x97F8\n0xED8B\t0x97F9\n0xED8C\t0x97FA\n0xED8D\t0x97FB\n0xED8E\t0x97FC\n0xED8F\t0x97FD\n0xED90\t0x97FE\n0xED91\t0x97FF\n0xED92\t0x9800\n0xED93\t0x9801\n0xED94\t0x9802\n0xED95\t0x9803\n0xED96\t0x9804\n0xED97\t0x9805\n0xED98\t0x9806\n0xED99\t0x9807\n0xED9A\t0x9808\n0xED9B\t0x9809\n0xED9C\t0x980A\n0xED9D\t0x980B\n0xED9E\t0x980C\n0xED9F\t0x980D\n0xEDA0\t0x980E\n0xEDA1\t0x603C\n0xEDA2\t0x605D\n0xEDA3\t0x605A\n0xEDA4\t0x6067\n0xEDA5\t0x6041\n0xEDA6\t0x6059\n0xEDA7\t0x6063\n0xEDA8\t0x60AB\n0xEDA9\t0x6106\n0xEDAA\t0x610D\n0xEDAB\t0x615D\n0xEDAC\t0x61A9\n0xEDAD\t0x619D\n0xEDAE\t0x61CB\n0xEDAF\t0x61D1\n0xEDB0\t0x6206\n0xEDB1\t0x8080\n0xEDB2\t0x807F\n0xEDB3\t0x6C93\n0xEDB4\t0x6CF6\n0xEDB5\t0x6DFC\n0xEDB6\t0x77F6\n0xEDB7\t0x77F8\n0xEDB8\t0x7800\n0xEDB9\t0x7809\n0xEDBA\t0x7817\n0xEDBB\t0x7818\n0xEDBC\t0x7811\n0xEDBD\t0x65AB\n0xEDBE\t0x782D\n0xEDBF\t0x781C\n0xEDC0\t0x781D\n0xEDC1\t0x7839\n0xEDC2\t0x783A\n0xEDC3\t0x783B\n0xEDC4\t0x781F\n0xEDC5\t0x783C\n0xEDC6\t0x7825\n0xEDC7\t0x782C\n0xEDC8\t0x7823\n0xEDC9\t0x7829\n0xEDCA\t0x784E\n0xEDCB\t0x786D\n0xEDCC\t0x7856\n0xEDCD\t0x7857\n0xEDCE\t0x7826\n0xEDCF\t0x7850\n0xEDD0\t0x7847\n0xEDD1\t0x784C\n0xEDD2\t0x786A\n0xEDD3\t0x789B\n0xEDD4\t0x7893\n0xEDD5\t0x789A\n0xEDD6\t0x7887\n0xEDD7\t0x789C\n0xEDD8\t0x78A1\n0xEDD9\t0x78A3\n0xEDDA\t0x78B2\n0xEDDB\t0x78B9\n0xEDDC\t0x78A5\n0xEDDD\t0x78D4\n0xEDDE\t0x78D9\n0xEDDF\t0x78C9\n0xEDE0\t0x78EC\n0xEDE1\t0x78F2\n0xEDE2\t0x7905\n0xEDE3\t0x78F4\n0xEDE4\t0x7913\n0xEDE5\t0x7924\n0xEDE6\t0x791E\n0xEDE7\t0x7934\n0xEDE8\t0x9F9B\n0xEDE9\t0x9EF9\n0xEDEA\t0x9EFB\n0xEDEB\t0x9EFC\n0xEDEC\t0x76F1\n0xEDED\t0x7704\n0xEDEE\t0x770D\n0xEDEF\t0x76F9\n0xEDF0\t0x7707\n0xEDF1\t0x7708\n0xEDF2\t0x771A\n0xEDF3\t0x7722\n0xEDF4\t0x7719\n0xEDF5\t0x772D\n0xEDF6\t0x7726\n0xEDF7\t0x7735\n0xEDF8\t0x7738\n0xEDF9\t0x7750\n0xEDFA\t0x7751\n0xEDFB\t0x7747\n0xEDFC\t0x7743\n0xEDFD\t0x775A\n0xEDFE\t0x7768\n0xEE40\t0x980F\n0xEE41\t0x9810\n0xEE42\t0x9811\n0xEE43\t0x9812\n0xEE44\t0x9813\n0xEE45\t0x9814\n0xEE46\t0x9815\n0xEE47\t0x9816\n0xEE48\t0x9817\n0xEE49\t0x9818\n0xEE4A\t0x9819\n0xEE4B\t0x981A\n0xEE4C\t0x981B\n0xEE4D\t0x981C\n0xEE4E\t0x981D\n0xEE4F\t0x981E\n0xEE50\t0x981F\n0xEE51\t0x9820\n0xEE52\t0x9821\n0xEE53\t0x9822\n0xEE54\t0x9823\n0xEE55\t0x9824\n0xEE56\t0x9825\n0xEE57\t0x9826\n0xEE58\t0x9827\n0xEE59\t0x9828\n0xEE5A\t0x9829\n0xEE5B\t0x982A\n0xEE5C\t0x982B\n0xEE5D\t0x982C\n0xEE5E\t0x982D\n0xEE5F\t0x982E\n0xEE60\t0x982F\n0xEE61\t0x9830\n0xEE62\t0x9831\n0xEE63\t0x9832\n0xEE64\t0x9833\n0xEE65\t0x9834\n0xEE66\t0x9835\n0xEE67\t0x9836\n0xEE68\t0x9837\n0xEE69\t0x9838\n0xEE6A\t0x9839\n0xEE6B\t0x983A\n0xEE6C\t0x983B\n0xEE6D\t0x983C\n0xEE6E\t0x983D\n0xEE6F\t0x983E\n0xEE70\t0x983F\n0xEE71\t0x9840\n0xEE72\t0x9841\n0xEE73\t0x9842\n0xEE74\t0x9843\n0xEE75\t0x9844\n0xEE76\t0x9845\n0xEE77\t0x9846\n0xEE78\t0x9847\n0xEE79\t0x9848\n0xEE7A\t0x9849\n0xEE7B\t0x984A\n0xEE7C\t0x984B\n0xEE7D\t0x984C\n0xEE7E\t0x984D\n0xEE80\t0x984E\n0xEE81\t0x984F\n0xEE82\t0x9850\n0xEE83\t0x9851\n0xEE84\t0x9852\n0xEE85\t0x9853\n0xEE86\t0x9854\n0xEE87\t0x9855\n0xEE88\t0x9856\n0xEE89\t0x9857\n0xEE8A\t0x9858\n0xEE8B\t0x9859\n0xEE8C\t0x985A\n0xEE8D\t0x985B\n0xEE8E\t0x985C\n0xEE8F\t0x985D\n0xEE90\t0x985E\n0xEE91\t0x985F\n0xEE92\t0x9860\n0xEE93\t0x9861\n0xEE94\t0x9862\n0xEE95\t0x9863\n0xEE96\t0x9864\n0xEE97\t0x9865\n0xEE98\t0x9866\n0xEE99\t0x9867\n0xEE9A\t0x9868\n0xEE9B\t0x9869\n0xEE9C\t0x986A\n0xEE9D\t0x986B\n0xEE9E\t0x986C\n0xEE9F\t0x986D\n0xEEA0\t0x986E\n0xEEA1\t0x7762\n0xEEA2\t0x7765\n0xEEA3\t0x777F\n0xEEA4\t0x778D\n0xEEA5\t0x777D\n0xEEA6\t0x7780\n0xEEA7\t0x778C\n0xEEA8\t0x7791\n0xEEA9\t0x779F\n0xEEAA\t0x77A0\n0xEEAB\t0x77B0\n0xEEAC\t0x77B5\n0xEEAD\t0x77BD\n0xEEAE\t0x753A\n0xEEAF\t0x7540\n0xEEB0\t0x754E\n0xEEB1\t0x754B\n0xEEB2\t0x7548\n0xEEB3\t0x755B\n0xEEB4\t0x7572\n0xEEB5\t0x7579\n0xEEB6\t0x7583\n0xEEB7\t0x7F58\n0xEEB8\t0x7F61\n0xEEB9\t0x7F5F\n0xEEBA\t0x8A48\n0xEEBB\t0x7F68\n0xEEBC\t0x7F74\n0xEEBD\t0x7F71\n0xEEBE\t0x7F79\n0xEEBF\t0x7F81\n0xEEC0\t0x7F7E\n0xEEC1\t0x76CD\n0xEEC2\t0x76E5\n0xEEC3\t0x8832\n0xEEC4\t0x9485\n0xEEC5\t0x9486\n0xEEC6\t0x9487\n0xEEC7\t0x948B\n0xEEC8\t0x948A\n0xEEC9\t0x948C\n0xEECA\t0x948D\n0xEECB\t0x948F\n0xEECC\t0x9490\n0xEECD\t0x9494\n0xEECE\t0x9497\n0xEECF\t0x9495\n0xEED0\t0x949A\n0xEED1\t0x949B\n0xEED2\t0x949C\n0xEED3\t0x94A3\n0xEED4\t0x94A4\n0xEED5\t0x94AB\n0xEED6\t0x94AA\n0xEED7\t0x94AD\n0xEED8\t0x94AC\n0xEED9\t0x94AF\n0xEEDA\t0x94B0\n0xEEDB\t0x94B2\n0xEEDC\t0x94B4\n0xEEDD\t0x94B6\n0xEEDE\t0x94B7\n0xEEDF\t0x94B8\n0xEEE0\t0x94B9\n0xEEE1\t0x94BA\n0xEEE2\t0x94BC\n0xEEE3\t0x94BD\n0xEEE4\t0x94BF\n0xEEE5\t0x94C4\n0xEEE6\t0x94C8\n0xEEE7\t0x94C9\n0xEEE8\t0x94CA\n0xEEE9\t0x94CB\n0xEEEA\t0x94CC\n0xEEEB\t0x94CD\n0xEEEC\t0x94CE\n0xEEED\t0x94D0\n0xEEEE\t0x94D1\n0xEEEF\t0x94D2\n0xEEF0\t0x94D5\n0xEEF1\t0x94D6\n0xEEF2\t0x94D7\n0xEEF3\t0x94D9\n0xEEF4\t0x94D8\n0xEEF5\t0x94DB\n0xEEF6\t0x94DE\n0xEEF7\t0x94DF\n0xEEF8\t0x94E0\n0xEEF9\t0x94E2\n0xEEFA\t0x94E4\n0xEEFB\t0x94E5\n0xEEFC\t0x94E7\n0xEEFD\t0x94E8\n0xEEFE\t0x94EA\n0xEF40\t0x986F\n0xEF41\t0x9870\n0xEF42\t0x9871\n0xEF43\t0x9872\n0xEF44\t0x9873\n0xEF45\t0x9874\n0xEF46\t0x988B\n0xEF47\t0x988E\n0xEF48\t0x9892\n0xEF49\t0x9895\n0xEF4A\t0x9899\n0xEF4B\t0x98A3\n0xEF4C\t0x98A8\n0xEF4D\t0x98A9\n0xEF4E\t0x98AA\n0xEF4F\t0x98AB\n0xEF50\t0x98AC\n0xEF51\t0x98AD\n0xEF52\t0x98AE\n0xEF53\t0x98AF\n0xEF54\t0x98B0\n0xEF55\t0x98B1\n0xEF56\t0x98B2\n0xEF57\t0x98B3\n0xEF58\t0x98B4\n0xEF59\t0x98B5\n0xEF5A\t0x98B6\n0xEF5B\t0x98B7\n0xEF5C\t0x98B8\n0xEF5D\t0x98B9\n0xEF5E\t0x98BA\n0xEF5F\t0x98BB\n0xEF60\t0x98BC\n0xEF61\t0x98BD\n0xEF62\t0x98BE\n0xEF63\t0x98BF\n0xEF64\t0x98C0\n0xEF65\t0x98C1\n0xEF66\t0x98C2\n0xEF67\t0x98C3\n0xEF68\t0x98C4\n0xEF69\t0x98C5\n0xEF6A\t0x98C6\n0xEF6B\t0x98C7\n0xEF6C\t0x98C8\n0xEF6D\t0x98C9\n0xEF6E\t0x98CA\n0xEF6F\t0x98CB\n0xEF70\t0x98CC\n0xEF71\t0x98CD\n0xEF72\t0x98CF\n0xEF73\t0x98D0\n0xEF74\t0x98D4\n0xEF75\t0x98D6\n0xEF76\t0x98D7\n0xEF77\t0x98DB\n0xEF78\t0x98DC\n0xEF79\t0x98DD\n0xEF7A\t0x98E0\n0xEF7B\t0x98E1\n0xEF7C\t0x98E2\n0xEF7D\t0x98E3\n0xEF7E\t0x98E4\n0xEF80\t0x98E5\n0xEF81\t0x98E6\n0xEF82\t0x98E9\n0xEF83\t0x98EA\n0xEF84\t0x98EB\n0xEF85\t0x98EC\n0xEF86\t0x98ED\n0xEF87\t0x98EE\n0xEF88\t0x98EF\n0xEF89\t0x98F0\n0xEF8A\t0x98F1\n0xEF8B\t0x98F2\n0xEF8C\t0x98F3\n0xEF8D\t0x98F4\n0xEF8E\t0x98F5\n0xEF8F\t0x98F6\n0xEF90\t0x98F7\n0xEF91\t0x98F8\n0xEF92\t0x98F9\n0xEF93\t0x98FA\n0xEF94\t0x98FB\n0xEF95\t0x98FC\n0xEF96\t0x98FD\n0xEF97\t0x98FE\n0xEF98\t0x98FF\n0xEF99\t0x9900\n0xEF9A\t0x9901\n0xEF9B\t0x9902\n0xEF9C\t0x9903\n0xEF9D\t0x9904\n0xEF9E\t0x9905\n0xEF9F\t0x9906\n0xEFA0\t0x9907\n0xEFA1\t0x94E9\n0xEFA2\t0x94EB\n0xEFA3\t0x94EE\n0xEFA4\t0x94EF\n0xEFA5\t0x94F3\n0xEFA6\t0x94F4\n0xEFA7\t0x94F5\n0xEFA8\t0x94F7\n0xEFA9\t0x94F9\n0xEFAA\t0x94FC\n0xEFAB\t0x94FD\n0xEFAC\t0x94FF\n0xEFAD\t0x9503\n0xEFAE\t0x9502\n0xEFAF\t0x9506\n0xEFB0\t0x9507\n0xEFB1\t0x9509\n0xEFB2\t0x950A\n0xEFB3\t0x950D\n0xEFB4\t0x950E\n0xEFB5\t0x950F\n0xEFB6\t0x9512\n0xEFB7\t0x9513\n0xEFB8\t0x9514\n0xEFB9\t0x9515\n0xEFBA\t0x9516\n0xEFBB\t0x9518\n0xEFBC\t0x951B\n0xEFBD\t0x951D\n0xEFBE\t0x951E\n0xEFBF\t0x951F\n0xEFC0\t0x9522\n0xEFC1\t0x952A\n0xEFC2\t0x952B\n0xEFC3\t0x9529\n0xEFC4\t0x952C\n0xEFC5\t0x9531\n0xEFC6\t0x9532\n0xEFC7\t0x9534\n0xEFC8\t0x9536\n0xEFC9\t0x9537\n0xEFCA\t0x9538\n0xEFCB\t0x953C\n0xEFCC\t0x953E\n0xEFCD\t0x953F\n0xEFCE\t0x9542\n0xEFCF\t0x9535\n0xEFD0\t0x9544\n0xEFD1\t0x9545\n0xEFD2\t0x9546\n0xEFD3\t0x9549\n0xEFD4\t0x954C\n0xEFD5\t0x954E\n0xEFD6\t0x954F\n0xEFD7\t0x9552\n0xEFD8\t0x9553\n0xEFD9\t0x9554\n0xEFDA\t0x9556\n0xEFDB\t0x9557\n0xEFDC\t0x9558\n0xEFDD\t0x9559\n0xEFDE\t0x955B\n0xEFDF\t0x955E\n0xEFE0\t0x955F\n0xEFE1\t0x955D\n0xEFE2\t0x9561\n0xEFE3\t0x9562\n0xEFE4\t0x9564\n0xEFE5\t0x9565\n0xEFE6\t0x9566\n0xEFE7\t0x9567\n0xEFE8\t0x9568\n0xEFE9\t0x9569\n0xEFEA\t0x956A\n0xEFEB\t0x956B\n0xEFEC\t0x956C\n0xEFED\t0x956F\n0xEFEE\t0x9571\n0xEFEF\t0x9572\n0xEFF0\t0x9573\n0xEFF1\t0x953A\n0xEFF2\t0x77E7\n0xEFF3\t0x77EC\n0xEFF4\t0x96C9\n0xEFF5\t0x79D5\n0xEFF6\t0x79ED\n0xEFF7\t0x79E3\n0xEFF8\t0x79EB\n0xEFF9\t0x7A06\n0xEFFA\t0x5D47\n0xEFFB\t0x7A03\n0xEFFC\t0x7A02\n0xEFFD\t0x7A1E\n0xEFFE\t0x7A14\n0xF040\t0x9908\n0xF041\t0x9909\n0xF042\t0x990A\n0xF043\t0x990B\n0xF044\t0x990C\n0xF045\t0x990E\n0xF046\t0x990F\n0xF047\t0x9911\n0xF048\t0x9912\n0xF049\t0x9913\n0xF04A\t0x9914\n0xF04B\t0x9915\n0xF04C\t0x9916\n0xF04D\t0x9917\n0xF04E\t0x9918\n0xF04F\t0x9919\n0xF050\t0x991A\n0xF051\t0x991B\n0xF052\t0x991C\n0xF053\t0x991D\n0xF054\t0x991E\n0xF055\t0x991F\n0xF056\t0x9920\n0xF057\t0x9921\n0xF058\t0x9922\n0xF059\t0x9923\n0xF05A\t0x9924\n0xF05B\t0x9925\n0xF05C\t0x9926\n0xF05D\t0x9927\n0xF05E\t0x9928\n0xF05F\t0x9929\n0xF060\t0x992A\n0xF061\t0x992B\n0xF062\t0x992C\n0xF063\t0x992D\n0xF064\t0x992F\n0xF065\t0x9930\n0xF066\t0x9931\n0xF067\t0x9932\n0xF068\t0x9933\n0xF069\t0x9934\n0xF06A\t0x9935\n0xF06B\t0x9936\n0xF06C\t0x9937\n0xF06D\t0x9938\n0xF06E\t0x9939\n0xF06F\t0x993A\n0xF070\t0x993B\n0xF071\t0x993C\n0xF072\t0x993D\n0xF073\t0x993E\n0xF074\t0x993F\n0xF075\t0x9940\n0xF076\t0x9941\n0xF077\t0x9942\n0xF078\t0x9943\n0xF079\t0x9944\n0xF07A\t0x9945\n0xF07B\t0x9946\n0xF07C\t0x9947\n0xF07D\t0x9948\n0xF07E\t0x9949\n0xF080\t0x994A\n0xF081\t0x994B\n0xF082\t0x994C\n0xF083\t0x994D\n0xF084\t0x994E\n0xF085\t0x994F\n0xF086\t0x9950\n0xF087\t0x9951\n0xF088\t0x9952\n0xF089\t0x9953\n0xF08A\t0x9956\n0xF08B\t0x9957\n0xF08C\t0x9958\n0xF08D\t0x9959\n0xF08E\t0x995A\n0xF08F\t0x995B\n0xF090\t0x995C\n0xF091\t0x995D\n0xF092\t0x995E\n0xF093\t0x995F\n0xF094\t0x9960\n0xF095\t0x9961\n0xF096\t0x9962\n0xF097\t0x9964\n0xF098\t0x9966\n0xF099\t0x9973\n0xF09A\t0x9978\n0xF09B\t0x9979\n0xF09C\t0x997B\n0xF09D\t0x997E\n0xF09E\t0x9982\n0xF09F\t0x9983\n0xF0A0\t0x9989\n0xF0A1\t0x7A39\n0xF0A2\t0x7A37\n0xF0A3\t0x7A51\n0xF0A4\t0x9ECF\n0xF0A5\t0x99A5\n0xF0A6\t0x7A70\n0xF0A7\t0x7688\n0xF0A8\t0x768E\n0xF0A9\t0x7693\n0xF0AA\t0x7699\n0xF0AB\t0x76A4\n0xF0AC\t0x74DE\n0xF0AD\t0x74E0\n0xF0AE\t0x752C\n0xF0AF\t0x9E20\n0xF0B0\t0x9E22\n0xF0B1\t0x9E28\n0xF0B2\t0x9E29\n0xF0B3\t0x9E2A\n0xF0B4\t0x9E2B\n0xF0B5\t0x9E2C\n0xF0B6\t0x9E32\n0xF0B7\t0x9E31\n0xF0B8\t0x9E36\n0xF0B9\t0x9E38\n0xF0BA\t0x9E37\n0xF0BB\t0x9E39\n0xF0BC\t0x9E3A\n0xF0BD\t0x9E3E\n0xF0BE\t0x9E41\n0xF0BF\t0x9E42\n0xF0C0\t0x9E44\n0xF0C1\t0x9E46\n0xF0C2\t0x9E47\n0xF0C3\t0x9E48\n0xF0C4\t0x9E49\n0xF0C5\t0x9E4B\n0xF0C6\t0x9E4C\n0xF0C7\t0x9E4E\n0xF0C8\t0x9E51\n0xF0C9\t0x9E55\n0xF0CA\t0x9E57\n0xF0CB\t0x9E5A\n0xF0CC\t0x9E5B\n0xF0CD\t0x9E5C\n0xF0CE\t0x9E5E\n0xF0CF\t0x9E63\n0xF0D0\t0x9E66\n0xF0D1\t0x9E67\n0xF0D2\t0x9E68\n0xF0D3\t0x9E69\n0xF0D4\t0x9E6A\n0xF0D5\t0x9E6B\n0xF0D6\t0x9E6C\n0xF0D7\t0x9E71\n0xF0D8\t0x9E6D\n0xF0D9\t0x9E73\n0xF0DA\t0x7592\n0xF0DB\t0x7594\n0xF0DC\t0x7596\n0xF0DD\t0x75A0\n0xF0DE\t0x759D\n0xF0DF\t0x75AC\n0xF0E0\t0x75A3\n0xF0E1\t0x75B3\n0xF0E2\t0x75B4\n0xF0E3\t0x75B8\n0xF0E4\t0x75C4\n0xF0E5\t0x75B1\n0xF0E6\t0x75B0\n0xF0E7\t0x75C3\n0xF0E8\t0x75C2\n0xF0E9\t0x75D6\n0xF0EA\t0x75CD\n0xF0EB\t0x75E3\n0xF0EC\t0x75E8\n0xF0ED\t0x75E6\n0xF0EE\t0x75E4\n0xF0EF\t0x75EB\n0xF0F0\t0x75E7\n0xF0F1\t0x7603\n0xF0F2\t0x75F1\n0xF0F3\t0x75FC\n0xF0F4\t0x75FF\n0xF0F5\t0x7610\n0xF0F6\t0x7600\n0xF0F7\t0x7605\n0xF0F8\t0x760C\n0xF0F9\t0x7617\n0xF0FA\t0x760A\n0xF0FB\t0x7625\n0xF0FC\t0x7618\n0xF0FD\t0x7615\n0xF0FE\t0x7619\n0xF140\t0x998C\n0xF141\t0x998E\n0xF142\t0x999A\n0xF143\t0x999B\n0xF144\t0x999C\n0xF145\t0x999D\n0xF146\t0x999E\n0xF147\t0x999F\n0xF148\t0x99A0\n0xF149\t0x99A1\n0xF14A\t0x99A2\n0xF14B\t0x99A3\n0xF14C\t0x99A4\n0xF14D\t0x99A6\n0xF14E\t0x99A7\n0xF14F\t0x99A9\n0xF150\t0x99AA\n0xF151\t0x99AB\n0xF152\t0x99AC\n0xF153\t0x99AD\n0xF154\t0x99AE\n0xF155\t0x99AF\n0xF156\t0x99B0\n0xF157\t0x99B1\n0xF158\t0x99B2\n0xF159\t0x99B3\n0xF15A\t0x99B4\n0xF15B\t0x99B5\n0xF15C\t0x99B6\n0xF15D\t0x99B7\n0xF15E\t0x99B8\n0xF15F\t0x99B9\n0xF160\t0x99BA\n0xF161\t0x99BB\n0xF162\t0x99BC\n0xF163\t0x99BD\n0xF164\t0x99BE\n0xF165\t0x99BF\n0xF166\t0x99C0\n0xF167\t0x99C1\n0xF168\t0x99C2\n0xF169\t0x99C3\n0xF16A\t0x99C4\n0xF16B\t0x99C5\n0xF16C\t0x99C6\n0xF16D\t0x99C7\n0xF16E\t0x99C8\n0xF16F\t0x99C9\n0xF170\t0x99CA\n0xF171\t0x99CB\n0xF172\t0x99CC\n0xF173\t0x99CD\n0xF174\t0x99CE\n0xF175\t0x99CF\n0xF176\t0x99D0\n0xF177\t0x99D1\n0xF178\t0x99D2\n0xF179\t0x99D3\n0xF17A\t0x99D4\n0xF17B\t0x99D5\n0xF17C\t0x99D6\n0xF17D\t0x99D7\n0xF17E\t0x99D8\n0xF180\t0x99D9\n0xF181\t0x99DA\n0xF182\t0x99DB\n0xF183\t0x99DC\n0xF184\t0x99DD\n0xF185\t0x99DE\n0xF186\t0x99DF\n0xF187\t0x99E0\n0xF188\t0x99E1\n0xF189\t0x99E2\n0xF18A\t0x99E3\n0xF18B\t0x99E4\n0xF18C\t0x99E5\n0xF18D\t0x99E6\n0xF18E\t0x99E7\n0xF18F\t0x99E8\n0xF190\t0x99E9\n0xF191\t0x99EA\n0xF192\t0x99EB\n0xF193\t0x99EC\n0xF194\t0x99ED\n0xF195\t0x99EE\n0xF196\t0x99EF\n0xF197\t0x99F0\n0xF198\t0x99F1\n0xF199\t0x99F2\n0xF19A\t0x99F3\n0xF19B\t0x99F4\n0xF19C\t0x99F5\n0xF19D\t0x99F6\n0xF19E\t0x99F7\n0xF19F\t0x99F8\n0xF1A0\t0x99F9\n0xF1A1\t0x761B\n0xF1A2\t0x763C\n0xF1A3\t0x7622\n0xF1A4\t0x7620\n0xF1A5\t0x7640\n0xF1A6\t0x762D\n0xF1A7\t0x7630\n0xF1A8\t0x763F\n0xF1A9\t0x7635\n0xF1AA\t0x7643\n0xF1AB\t0x763E\n0xF1AC\t0x7633\n0xF1AD\t0x764D\n0xF1AE\t0x765E\n0xF1AF\t0x7654\n0xF1B0\t0x765C\n0xF1B1\t0x7656\n0xF1B2\t0x766B\n0xF1B3\t0x766F\n0xF1B4\t0x7FCA\n0xF1B5\t0x7AE6\n0xF1B6\t0x7A78\n0xF1B7\t0x7A79\n0xF1B8\t0x7A80\n0xF1B9\t0x7A86\n0xF1BA\t0x7A88\n0xF1BB\t0x7A95\n0xF1BC\t0x7AA6\n0xF1BD\t0x7AA0\n0xF1BE\t0x7AAC\n0xF1BF\t0x7AA8\n0xF1C0\t0x7AAD\n0xF1C1\t0x7AB3\n0xF1C2\t0x8864\n0xF1C3\t0x8869\n0xF1C4\t0x8872\n0xF1C5\t0x887D\n0xF1C6\t0x887F\n0xF1C7\t0x8882\n0xF1C8\t0x88A2\n0xF1C9\t0x88C6\n0xF1CA\t0x88B7\n0xF1CB\t0x88BC\n0xF1CC\t0x88C9\n0xF1CD\t0x88E2\n0xF1CE\t0x88CE\n0xF1CF\t0x88E3\n0xF1D0\t0x88E5\n0xF1D1\t0x88F1\n0xF1D2\t0x891A\n0xF1D3\t0x88FC\n0xF1D4\t0x88E8\n0xF1D5\t0x88FE\n0xF1D6\t0x88F0\n0xF1D7\t0x8921\n0xF1D8\t0x8919\n0xF1D9\t0x8913\n0xF1DA\t0x891B\n0xF1DB\t0x890A\n0xF1DC\t0x8934\n0xF1DD\t0x892B\n0xF1DE\t0x8936\n0xF1DF\t0x8941\n0xF1E0\t0x8966\n0xF1E1\t0x897B\n0xF1E2\t0x758B\n0xF1E3\t0x80E5\n0xF1E4\t0x76B2\n0xF1E5\t0x76B4\n0xF1E6\t0x77DC\n0xF1E7\t0x8012\n0xF1E8\t0x8014\n0xF1E9\t0x8016\n0xF1EA\t0x801C\n0xF1EB\t0x8020\n0xF1EC\t0x8022\n0xF1ED\t0x8025\n0xF1EE\t0x8026\n0xF1EF\t0x8027\n0xF1F0\t0x8029\n0xF1F1\t0x8028\n0xF1F2\t0x8031\n0xF1F3\t0x800B\n0xF1F4\t0x8035\n0xF1F5\t0x8043\n0xF1F6\t0x8046\n0xF1F7\t0x804D\n0xF1F8\t0x8052\n0xF1F9\t0x8069\n0xF1FA\t0x8071\n0xF1FB\t0x8983\n0xF1FC\t0x9878\n0xF1FD\t0x9880\n0xF1FE\t0x9883\n0xF240\t0x99FA\n0xF241\t0x99FB\n0xF242\t0x99FC\n0xF243\t0x99FD\n0xF244\t0x99FE\n0xF245\t0x99FF\n0xF246\t0x9A00\n0xF247\t0x9A01\n0xF248\t0x9A02\n0xF249\t0x9A03\n0xF24A\t0x9A04\n0xF24B\t0x9A05\n0xF24C\t0x9A06\n0xF24D\t0x9A07\n0xF24E\t0x9A08\n0xF24F\t0x9A09\n0xF250\t0x9A0A\n0xF251\t0x9A0B\n0xF252\t0x9A0C\n0xF253\t0x9A0D\n0xF254\t0x9A0E\n0xF255\t0x9A0F\n0xF256\t0x9A10\n0xF257\t0x9A11\n0xF258\t0x9A12\n0xF259\t0x9A13\n0xF25A\t0x9A14\n0xF25B\t0x9A15\n0xF25C\t0x9A16\n0xF25D\t0x9A17\n0xF25E\t0x9A18\n0xF25F\t0x9A19\n0xF260\t0x9A1A\n0xF261\t0x9A1B\n0xF262\t0x9A1C\n0xF263\t0x9A1D\n0xF264\t0x9A1E\n0xF265\t0x9A1F\n0xF266\t0x9A20\n0xF267\t0x9A21\n0xF268\t0x9A22\n0xF269\t0x9A23\n0xF26A\t0x9A24\n0xF26B\t0x9A25\n0xF26C\t0x9A26\n0xF26D\t0x9A27\n0xF26E\t0x9A28\n0xF26F\t0x9A29\n0xF270\t0x9A2A\n0xF271\t0x9A2B\n0xF272\t0x9A2C\n0xF273\t0x9A2D\n0xF274\t0x9A2E\n0xF275\t0x9A2F\n0xF276\t0x9A30\n0xF277\t0x9A31\n0xF278\t0x9A32\n0xF279\t0x9A33\n0xF27A\t0x9A34\n0xF27B\t0x9A35\n0xF27C\t0x9A36\n0xF27D\t0x9A37\n0xF27E\t0x9A38\n0xF280\t0x9A39\n0xF281\t0x9A3A\n0xF282\t0x9A3B\n0xF283\t0x9A3C\n0xF284\t0x9A3D\n0xF285\t0x9A3E\n0xF286\t0x9A3F\n0xF287\t0x9A40\n0xF288\t0x9A41\n0xF289\t0x9A42\n0xF28A\t0x9A43\n0xF28B\t0x9A44\n0xF28C\t0x9A45\n0xF28D\t0x9A46\n0xF28E\t0x9A47\n0xF28F\t0x9A48\n0xF290\t0x9A49\n0xF291\t0x9A4A\n0xF292\t0x9A4B\n0xF293\t0x9A4C\n0xF294\t0x9A4D\n0xF295\t0x9A4E\n0xF296\t0x9A4F\n0xF297\t0x9A50\n0xF298\t0x9A51\n0xF299\t0x9A52\n0xF29A\t0x9A53\n0xF29B\t0x9A54\n0xF29C\t0x9A55\n0xF29D\t0x9A56\n0xF29E\t0x9A57\n0xF29F\t0x9A58\n0xF2A0\t0x9A59\n0xF2A1\t0x9889\n0xF2A2\t0x988C\n0xF2A3\t0x988D\n0xF2A4\t0x988F\n0xF2A5\t0x9894\n0xF2A6\t0x989A\n0xF2A7\t0x989B\n0xF2A8\t0x989E\n0xF2A9\t0x989F\n0xF2AA\t0x98A1\n0xF2AB\t0x98A2\n0xF2AC\t0x98A5\n0xF2AD\t0x98A6\n0xF2AE\t0x864D\n0xF2AF\t0x8654\n0xF2B0\t0x866C\n0xF2B1\t0x866E\n0xF2B2\t0x867F\n0xF2B3\t0x867A\n0xF2B4\t0x867C\n0xF2B5\t0x867B\n0xF2B6\t0x86A8\n0xF2B7\t0x868D\n0xF2B8\t0x868B\n0xF2B9\t0x86AC\n0xF2BA\t0x869D\n0xF2BB\t0x86A7\n0xF2BC\t0x86A3\n0xF2BD\t0x86AA\n0xF2BE\t0x8693\n0xF2BF\t0x86A9\n0xF2C0\t0x86B6\n0xF2C1\t0x86C4\n0xF2C2\t0x86B5\n0xF2C3\t0x86CE\n0xF2C4\t0x86B0\n0xF2C5\t0x86BA\n0xF2C6\t0x86B1\n0xF2C7\t0x86AF\n0xF2C8\t0x86C9\n0xF2C9\t0x86CF\n0xF2CA\t0x86B4\n0xF2CB\t0x86E9\n0xF2CC\t0x86F1\n0xF2CD\t0x86F2\n0xF2CE\t0x86ED\n0xF2CF\t0x86F3\n0xF2D0\t0x86D0\n0xF2D1\t0x8713\n0xF2D2\t0x86DE\n0xF2D3\t0x86F4\n0xF2D4\t0x86DF\n0xF2D5\t0x86D8\n0xF2D6\t0x86D1\n0xF2D7\t0x8703\n0xF2D8\t0x8707\n0xF2D9\t0x86F8\n0xF2DA\t0x8708\n0xF2DB\t0x870A\n0xF2DC\t0x870D\n0xF2DD\t0x8709\n0xF2DE\t0x8723\n0xF2DF\t0x873B\n0xF2E0\t0x871E\n0xF2E1\t0x8725\n0xF2E2\t0x872E\n0xF2E3\t0x871A\n0xF2E4\t0x873E\n0xF2E5\t0x8748\n0xF2E6\t0x8734\n0xF2E7\t0x8731\n0xF2E8\t0x8729\n0xF2E9\t0x8737\n0xF2EA\t0x873F\n0xF2EB\t0x8782\n0xF2EC\t0x8722\n0xF2ED\t0x877D\n0xF2EE\t0x877E\n0xF2EF\t0x877B\n0xF2F0\t0x8760\n0xF2F1\t0x8770\n0xF2F2\t0x874C\n0xF2F3\t0x876E\n0xF2F4\t0x878B\n0xF2F5\t0x8753\n0xF2F6\t0x8763\n0xF2F7\t0x877C\n0xF2F8\t0x8764\n0xF2F9\t0x8759\n0xF2FA\t0x8765\n0xF2FB\t0x8793\n0xF2FC\t0x87AF\n0xF2FD\t0x87A8\n0xF2FE\t0x87D2\n0xF340\t0x9A5A\n0xF341\t0x9A5B\n0xF342\t0x9A5C\n0xF343\t0x9A5D\n0xF344\t0x9A5E\n0xF345\t0x9A5F\n0xF346\t0x9A60\n0xF347\t0x9A61\n0xF348\t0x9A62\n0xF349\t0x9A63\n0xF34A\t0x9A64\n0xF34B\t0x9A65\n0xF34C\t0x9A66\n0xF34D\t0x9A67\n0xF34E\t0x9A68\n0xF34F\t0x9A69\n0xF350\t0x9A6A\n0xF351\t0x9A6B\n0xF352\t0x9A72\n0xF353\t0x9A83\n0xF354\t0x9A89\n0xF355\t0x9A8D\n0xF356\t0x9A8E\n0xF357\t0x9A94\n0xF358\t0x9A95\n0xF359\t0x9A99\n0xF35A\t0x9AA6\n0xF35B\t0x9AA9\n0xF35C\t0x9AAA\n0xF35D\t0x9AAB\n0xF35E\t0x9AAC\n0xF35F\t0x9AAD\n0xF360\t0x9AAE\n0xF361\t0x9AAF\n0xF362\t0x9AB2\n0xF363\t0x9AB3\n0xF364\t0x9AB4\n0xF365\t0x9AB5\n0xF366\t0x9AB9\n0xF367\t0x9ABB\n0xF368\t0x9ABD\n0xF369\t0x9ABE\n0xF36A\t0x9ABF\n0xF36B\t0x9AC3\n0xF36C\t0x9AC4\n0xF36D\t0x9AC6\n0xF36E\t0x9AC7\n0xF36F\t0x9AC8\n0xF370\t0x9AC9\n0xF371\t0x9ACA\n0xF372\t0x9ACD\n0xF373\t0x9ACE\n0xF374\t0x9ACF\n0xF375\t0x9AD0\n0xF376\t0x9AD2\n0xF377\t0x9AD4\n0xF378\t0x9AD5\n0xF379\t0x9AD6\n0xF37A\t0x9AD7\n0xF37B\t0x9AD9\n0xF37C\t0x9ADA\n0xF37D\t0x9ADB\n0xF37E\t0x9ADC\n0xF380\t0x9ADD\n0xF381\t0x9ADE\n0xF382\t0x9AE0\n0xF383\t0x9AE2\n0xF384\t0x9AE3\n0xF385\t0x9AE4\n0xF386\t0x9AE5\n0xF387\t0x9AE7\n0xF388\t0x9AE8\n0xF389\t0x9AE9\n0xF38A\t0x9AEA\n0xF38B\t0x9AEC\n0xF38C\t0x9AEE\n0xF38D\t0x9AF0\n0xF38E\t0x9AF1\n0xF38F\t0x9AF2\n0xF390\t0x9AF3\n0xF391\t0x9AF4\n0xF392\t0x9AF5\n0xF393\t0x9AF6\n0xF394\t0x9AF7\n0xF395\t0x9AF8\n0xF396\t0x9AFA\n0xF397\t0x9AFC\n0xF398\t0x9AFD\n0xF399\t0x9AFE\n0xF39A\t0x9AFF\n0xF39B\t0x9B00\n0xF39C\t0x9B01\n0xF39D\t0x9B02\n0xF39E\t0x9B04\n0xF39F\t0x9B05\n0xF3A0\t0x9B06\n0xF3A1\t0x87C6\n0xF3A2\t0x8788\n0xF3A3\t0x8785\n0xF3A4\t0x87AD\n0xF3A5\t0x8797\n0xF3A6\t0x8783\n0xF3A7\t0x87AB\n0xF3A8\t0x87E5\n0xF3A9\t0x87AC\n0xF3AA\t0x87B5\n0xF3AB\t0x87B3\n0xF3AC\t0x87CB\n0xF3AD\t0x87D3\n0xF3AE\t0x87BD\n0xF3AF\t0x87D1\n0xF3B0\t0x87C0\n0xF3B1\t0x87CA\n0xF3B2\t0x87DB\n0xF3B3\t0x87EA\n0xF3B4\t0x87E0\n0xF3B5\t0x87EE\n0xF3B6\t0x8816\n0xF3B7\t0x8813\n0xF3B8\t0x87FE\n0xF3B9\t0x880A\n0xF3BA\t0x881B\n0xF3BB\t0x8821\n0xF3BC\t0x8839\n0xF3BD\t0x883C\n0xF3BE\t0x7F36\n0xF3BF\t0x7F42\n0xF3C0\t0x7F44\n0xF3C1\t0x7F45\n0xF3C2\t0x8210\n0xF3C3\t0x7AFA\n0xF3C4\t0x7AFD\n0xF3C5\t0x7B08\n0xF3C6\t0x7B03\n0xF3C7\t0x7B04\n0xF3C8\t0x7B15\n0xF3C9\t0x7B0A\n0xF3CA\t0x7B2B\n0xF3CB\t0x7B0F\n0xF3CC\t0x7B47\n0xF3CD\t0x7B38\n0xF3CE\t0x7B2A\n0xF3CF\t0x7B19\n0xF3D0\t0x7B2E\n0xF3D1\t0x7B31\n0xF3D2\t0x7B20\n0xF3D3\t0x7B25\n0xF3D4\t0x7B24\n0xF3D5\t0x7B33\n0xF3D6\t0x7B3E\n0xF3D7\t0x7B1E\n0xF3D8\t0x7B58\n0xF3D9\t0x7B5A\n0xF3DA\t0x7B45\n0xF3DB\t0x7B75\n0xF3DC\t0x7B4C\n0xF3DD\t0x7B5D\n0xF3DE\t0x7B60\n0xF3DF\t0x7B6E\n0xF3E0\t0x7B7B\n0xF3E1\t0x7B62\n0xF3E2\t0x7B72\n0xF3E3\t0x7B71\n0xF3E4\t0x7B90\n0xF3E5\t0x7BA6\n0xF3E6\t0x7BA7\n0xF3E7\t0x7BB8\n0xF3E8\t0x7BAC\n0xF3E9\t0x7B9D\n0xF3EA\t0x7BA8\n0xF3EB\t0x7B85\n0xF3EC\t0x7BAA\n0xF3ED\t0x7B9C\n0xF3EE\t0x7BA2\n0xF3EF\t0x7BAB\n0xF3F0\t0x7BB4\n0xF3F1\t0x7BD1\n0xF3F2\t0x7BC1\n0xF3F3\t0x7BCC\n0xF3F4\t0x7BDD\n0xF3F5\t0x7BDA\n0xF3F6\t0x7BE5\n0xF3F7\t0x7BE6\n0xF3F8\t0x7BEA\n0xF3F9\t0x7C0C\n0xF3FA\t0x7BFE\n0xF3FB\t0x7BFC\n0xF3FC\t0x7C0F\n0xF3FD\t0x7C16\n0xF3FE\t0x7C0B\n0xF440\t0x9B07\n0xF441\t0x9B09\n0xF442\t0x9B0A\n0xF443\t0x9B0B\n0xF444\t0x9B0C\n0xF445\t0x9B0D\n0xF446\t0x9B0E\n0xF447\t0x9B10\n0xF448\t0x9B11\n0xF449\t0x9B12\n0xF44A\t0x9B14\n0xF44B\t0x9B15\n0xF44C\t0x9B16\n0xF44D\t0x9B17\n0xF44E\t0x9B18\n0xF44F\t0x9B19\n0xF450\t0x9B1A\n0xF451\t0x9B1B\n0xF452\t0x9B1C\n0xF453\t0x9B1D\n0xF454\t0x9B1E\n0xF455\t0x9B20\n0xF456\t0x9B21\n0xF457\t0x9B22\n0xF458\t0x9B24\n0xF459\t0x9B25\n0xF45A\t0x9B26\n0xF45B\t0x9B27\n0xF45C\t0x9B28\n0xF45D\t0x9B29\n0xF45E\t0x9B2A\n0xF45F\t0x9B2B\n0xF460\t0x9B2C\n0xF461\t0x9B2D\n0xF462\t0x9B2E\n0xF463\t0x9B30\n0xF464\t0x9B31\n0xF465\t0x9B33\n0xF466\t0x9B34\n0xF467\t0x9B35\n0xF468\t0x9B36\n0xF469\t0x9B37\n0xF46A\t0x9B38\n0xF46B\t0x9B39\n0xF46C\t0x9B3A\n0xF46D\t0x9B3D\n0xF46E\t0x9B3E\n0xF46F\t0x9B3F\n0xF470\t0x9B40\n0xF471\t0x9B46\n0xF472\t0x9B4A\n0xF473\t0x9B4B\n0xF474\t0x9B4C\n0xF475\t0x9B4E\n0xF476\t0x9B50\n0xF477\t0x9B52\n0xF478\t0x9B53\n0xF479\t0x9B55\n0xF47A\t0x9B56\n0xF47B\t0x9B57\n0xF47C\t0x9B58\n0xF47D\t0x9B59\n0xF47E\t0x9B5A\n0xF480\t0x9B5B\n0xF481\t0x9B5C\n0xF482\t0x9B5D\n0xF483\t0x9B5E\n0xF484\t0x9B5F\n0xF485\t0x9B60\n0xF486\t0x9B61\n0xF487\t0x9B62\n0xF488\t0x9B63\n0xF489\t0x9B64\n0xF48A\t0x9B65\n0xF48B\t0x9B66\n0xF48C\t0x9B67\n0xF48D\t0x9B68\n0xF48E\t0x9B69\n0xF48F\t0x9B6A\n0xF490\t0x9B6B\n0xF491\t0x9B6C\n0xF492\t0x9B6D\n0xF493\t0x9B6E\n0xF494\t0x9B6F\n0xF495\t0x9B70\n0xF496\t0x9B71\n0xF497\t0x9B72\n0xF498\t0x9B73\n0xF499\t0x9B74\n0xF49A\t0x9B75\n0xF49B\t0x9B76\n0xF49C\t0x9B77\n0xF49D\t0x9B78\n0xF49E\t0x9B79\n0xF49F\t0x9B7A\n0xF4A0\t0x9B7B\n0xF4A1\t0x7C1F\n0xF4A2\t0x7C2A\n0xF4A3\t0x7C26\n0xF4A4\t0x7C38\n0xF4A5\t0x7C41\n0xF4A6\t0x7C40\n0xF4A7\t0x81FE\n0xF4A8\t0x8201\n0xF4A9\t0x8202\n0xF4AA\t0x8204\n0xF4AB\t0x81EC\n0xF4AC\t0x8844\n0xF4AD\t0x8221\n0xF4AE\t0x8222\n0xF4AF\t0x8223\n0xF4B0\t0x822D\n0xF4B1\t0x822F\n0xF4B2\t0x8228\n0xF4B3\t0x822B\n0xF4B4\t0x8238\n0xF4B5\t0x823B\n0xF4B6\t0x8233\n0xF4B7\t0x8234\n0xF4B8\t0x823E\n0xF4B9\t0x8244\n0xF4BA\t0x8249\n0xF4BB\t0x824B\n0xF4BC\t0x824F\n0xF4BD\t0x825A\n0xF4BE\t0x825F\n0xF4BF\t0x8268\n0xF4C0\t0x887E\n0xF4C1\t0x8885\n0xF4C2\t0x8888\n0xF4C3\t0x88D8\n0xF4C4\t0x88DF\n0xF4C5\t0x895E\n0xF4C6\t0x7F9D\n0xF4C7\t0x7F9F\n0xF4C8\t0x7FA7\n0xF4C9\t0x7FAF\n0xF4CA\t0x7FB0\n0xF4CB\t0x7FB2\n0xF4CC\t0x7C7C\n0xF4CD\t0x6549\n0xF4CE\t0x7C91\n0xF4CF\t0x7C9D\n0xF4D0\t0x7C9C\n0xF4D1\t0x7C9E\n0xF4D2\t0x7CA2\n0xF4D3\t0x7CB2\n0xF4D4\t0x7CBC\n0xF4D5\t0x7CBD\n0xF4D6\t0x7CC1\n0xF4D7\t0x7CC7\n0xF4D8\t0x7CCC\n0xF4D9\t0x7CCD\n0xF4DA\t0x7CC8\n0xF4DB\t0x7CC5\n0xF4DC\t0x7CD7\n0xF4DD\t0x7CE8\n0xF4DE\t0x826E\n0xF4DF\t0x66A8\n0xF4E0\t0x7FBF\n0xF4E1\t0x7FCE\n0xF4E2\t0x7FD5\n0xF4E3\t0x7FE5\n0xF4E4\t0x7FE1\n0xF4E5\t0x7FE6\n0xF4E6\t0x7FE9\n0xF4E7\t0x7FEE\n0xF4E8\t0x7FF3\n0xF4E9\t0x7CF8\n0xF4EA\t0x7D77\n0xF4EB\t0x7DA6\n0xF4EC\t0x7DAE\n0xF4ED\t0x7E47\n0xF4EE\t0x7E9B\n0xF4EF\t0x9EB8\n0xF4F0\t0x9EB4\n0xF4F1\t0x8D73\n0xF4F2\t0x8D84\n0xF4F3\t0x8D94\n0xF4F4\t0x8D91\n0xF4F5\t0x8DB1\n0xF4F6\t0x8D67\n0xF4F7\t0x8D6D\n0xF4F8\t0x8C47\n0xF4F9\t0x8C49\n0xF4FA\t0x914A\n0xF4FB\t0x9150\n0xF4FC\t0x914E\n0xF4FD\t0x914F\n0xF4FE\t0x9164\n0xF540\t0x9B7C\n0xF541\t0x9B7D\n0xF542\t0x9B7E\n0xF543\t0x9B7F\n0xF544\t0x9B80\n0xF545\t0x9B81\n0xF546\t0x9B82\n0xF547\t0x9B83\n0xF548\t0x9B84\n0xF549\t0x9B85\n0xF54A\t0x9B86\n0xF54B\t0x9B87\n0xF54C\t0x9B88\n0xF54D\t0x9B89\n0xF54E\t0x9B8A\n0xF54F\t0x9B8B\n0xF550\t0x9B8C\n0xF551\t0x9B8D\n0xF552\t0x9B8E\n0xF553\t0x9B8F\n0xF554\t0x9B90\n0xF555\t0x9B91\n0xF556\t0x9B92\n0xF557\t0x9B93\n0xF558\t0x9B94\n0xF559\t0x9B95\n0xF55A\t0x9B96\n0xF55B\t0x9B97\n0xF55C\t0x9B98\n0xF55D\t0x9B99\n0xF55E\t0x9B9A\n0xF55F\t0x9B9B\n0xF560\t0x9B9C\n0xF561\t0x9B9D\n0xF562\t0x9B9E\n0xF563\t0x9B9F\n0xF564\t0x9BA0\n0xF565\t0x9BA1\n0xF566\t0x9BA2\n0xF567\t0x9BA3\n0xF568\t0x9BA4\n0xF569\t0x9BA5\n0xF56A\t0x9BA6\n0xF56B\t0x9BA7\n0xF56C\t0x9BA8\n0xF56D\t0x9BA9\n0xF56E\t0x9BAA\n0xF56F\t0x9BAB\n0xF570\t0x9BAC\n0xF571\t0x9BAD\n0xF572\t0x9BAE\n0xF573\t0x9BAF\n0xF574\t0x9BB0\n0xF575\t0x9BB1\n0xF576\t0x9BB2\n0xF577\t0x9BB3\n0xF578\t0x9BB4\n0xF579\t0x9BB5\n0xF57A\t0x9BB6\n0xF57B\t0x9BB7\n0xF57C\t0x9BB8\n0xF57D\t0x9BB9\n0xF57E\t0x9BBA\n0xF580\t0x9BBB\n0xF581\t0x9BBC\n0xF582\t0x9BBD\n0xF583\t0x9BBE\n0xF584\t0x9BBF\n0xF585\t0x9BC0\n0xF586\t0x9BC1\n0xF587\t0x9BC2\n0xF588\t0x9BC3\n0xF589\t0x9BC4\n0xF58A\t0x9BC5\n0xF58B\t0x9BC6\n0xF58C\t0x9BC7\n0xF58D\t0x9BC8\n0xF58E\t0x9BC9\n0xF58F\t0x9BCA\n0xF590\t0x9BCB\n0xF591\t0x9BCC\n0xF592\t0x9BCD\n0xF593\t0x9BCE\n0xF594\t0x9BCF\n0xF595\t0x9BD0\n0xF596\t0x9BD1\n0xF597\t0x9BD2\n0xF598\t0x9BD3\n0xF599\t0x9BD4\n0xF59A\t0x9BD5\n0xF59B\t0x9BD6\n0xF59C\t0x9BD7\n0xF59D\t0x9BD8\n0xF59E\t0x9BD9\n0xF59F\t0x9BDA\n0xF5A0\t0x9BDB\n0xF5A1\t0x9162\n0xF5A2\t0x9161\n0xF5A3\t0x9170\n0xF5A4\t0x9169\n0xF5A5\t0x916F\n0xF5A6\t0x917D\n0xF5A7\t0x917E\n0xF5A8\t0x9172\n0xF5A9\t0x9174\n0xF5AA\t0x9179\n0xF5AB\t0x918C\n0xF5AC\t0x9185\n0xF5AD\t0x9190\n0xF5AE\t0x918D\n0xF5AF\t0x9191\n0xF5B0\t0x91A2\n0xF5B1\t0x91A3\n0xF5B2\t0x91AA\n0xF5B3\t0x91AD\n0xF5B4\t0x91AE\n0xF5B5\t0x91AF\n0xF5B6\t0x91B5\n0xF5B7\t0x91B4\n0xF5B8\t0x91BA\n0xF5B9\t0x8C55\n0xF5BA\t0x9E7E\n0xF5BB\t0x8DB8\n0xF5BC\t0x8DEB\n0xF5BD\t0x8E05\n0xF5BE\t0x8E59\n0xF5BF\t0x8E69\n0xF5C0\t0x8DB5\n0xF5C1\t0x8DBF\n0xF5C2\t0x8DBC\n0xF5C3\t0x8DBA\n0xF5C4\t0x8DC4\n0xF5C5\t0x8DD6\n0xF5C6\t0x8DD7\n0xF5C7\t0x8DDA\n0xF5C8\t0x8DDE\n0xF5C9\t0x8DCE\n0xF5CA\t0x8DCF\n0xF5CB\t0x8DDB\n0xF5CC\t0x8DC6\n0xF5CD\t0x8DEC\n0xF5CE\t0x8DF7\n0xF5CF\t0x8DF8\n0xF5D0\t0x8DE3\n0xF5D1\t0x8DF9\n0xF5D2\t0x8DFB\n0xF5D3\t0x8DE4\n0xF5D4\t0x8E09\n0xF5D5\t0x8DFD\n0xF5D6\t0x8E14\n0xF5D7\t0x8E1D\n0xF5D8\t0x8E1F\n0xF5D9\t0x8E2C\n0xF5DA\t0x8E2E\n0xF5DB\t0x8E23\n0xF5DC\t0x8E2F\n0xF5DD\t0x8E3A\n0xF5DE\t0x8E40\n0xF5DF\t0x8E39\n0xF5E0\t0x8E35\n0xF5E1\t0x8E3D\n0xF5E2\t0x8E31\n0xF5E3\t0x8E49\n0xF5E4\t0x8E41\n0xF5E5\t0x8E42\n0xF5E6\t0x8E51\n0xF5E7\t0x8E52\n0xF5E8\t0x8E4A\n0xF5E9\t0x8E70\n0xF5EA\t0x8E76\n0xF5EB\t0x8E7C\n0xF5EC\t0x8E6F\n0xF5ED\t0x8E74\n0xF5EE\t0x8E85\n0xF5EF\t0x8E8F\n0xF5F0\t0x8E94\n0xF5F1\t0x8E90\n0xF5F2\t0x8E9C\n0xF5F3\t0x8E9E\n0xF5F4\t0x8C78\n0xF5F5\t0x8C82\n0xF5F6\t0x8C8A\n0xF5F7\t0x8C85\n0xF5F8\t0x8C98\n0xF5F9\t0x8C94\n0xF5FA\t0x659B\n0xF5FB\t0x89D6\n0xF5FC\t0x89DE\n0xF5FD\t0x89DA\n0xF5FE\t0x89DC\n0xF640\t0x9BDC\n0xF641\t0x9BDD\n0xF642\t0x9BDE\n0xF643\t0x9BDF\n0xF644\t0x9BE0\n0xF645\t0x9BE1\n0xF646\t0x9BE2\n0xF647\t0x9BE3\n0xF648\t0x9BE4\n0xF649\t0x9BE5\n0xF64A\t0x9BE6\n0xF64B\t0x9BE7\n0xF64C\t0x9BE8\n0xF64D\t0x9BE9\n0xF64E\t0x9BEA\n0xF64F\t0x9BEB\n0xF650\t0x9BEC\n0xF651\t0x9BED\n0xF652\t0x9BEE\n0xF653\t0x9BEF\n0xF654\t0x9BF0\n0xF655\t0x9BF1\n0xF656\t0x9BF2\n0xF657\t0x9BF3\n0xF658\t0x9BF4\n0xF659\t0x9BF5\n0xF65A\t0x9BF6\n0xF65B\t0x9BF7\n0xF65C\t0x9BF8\n0xF65D\t0x9BF9\n0xF65E\t0x9BFA\n0xF65F\t0x9BFB\n0xF660\t0x9BFC\n0xF661\t0x9BFD\n0xF662\t0x9BFE\n0xF663\t0x9BFF\n0xF664\t0x9C00\n0xF665\t0x9C01\n0xF666\t0x9C02\n0xF667\t0x9C03\n0xF668\t0x9C04\n0xF669\t0x9C05\n0xF66A\t0x9C06\n0xF66B\t0x9C07\n0xF66C\t0x9C08\n0xF66D\t0x9C09\n0xF66E\t0x9C0A\n0xF66F\t0x9C0B\n0xF670\t0x9C0C\n0xF671\t0x9C0D\n0xF672\t0x9C0E\n0xF673\t0x9C0F\n0xF674\t0x9C10\n0xF675\t0x9C11\n0xF676\t0x9C12\n0xF677\t0x9C13\n0xF678\t0x9C14\n0xF679\t0x9C15\n0xF67A\t0x9C16\n0xF67B\t0x9C17\n0xF67C\t0x9C18\n0xF67D\t0x9C19\n0xF67E\t0x9C1A\n0xF680\t0x9C1B\n0xF681\t0x9C1C\n0xF682\t0x9C1D\n0xF683\t0x9C1E\n0xF684\t0x9C1F\n0xF685\t0x9C20\n0xF686\t0x9C21\n0xF687\t0x9C22\n0xF688\t0x9C23\n0xF689\t0x9C24\n0xF68A\t0x9C25\n0xF68B\t0x9C26\n0xF68C\t0x9C27\n0xF68D\t0x9C28\n0xF68E\t0x9C29\n0xF68F\t0x9C2A\n0xF690\t0x9C2B\n0xF691\t0x9C2C\n0xF692\t0x9C2D\n0xF693\t0x9C2E\n0xF694\t0x9C2F\n0xF695\t0x9C30\n0xF696\t0x9C31\n0xF697\t0x9C32\n0xF698\t0x9C33\n0xF699\t0x9C34\n0xF69A\t0x9C35\n0xF69B\t0x9C36\n0xF69C\t0x9C37\n0xF69D\t0x9C38\n0xF69E\t0x9C39\n0xF69F\t0x9C3A\n0xF6A0\t0x9C3B\n0xF6A1\t0x89E5\n0xF6A2\t0x89EB\n0xF6A3\t0x89EF\n0xF6A4\t0x8A3E\n0xF6A5\t0x8B26\n0xF6A6\t0x9753\n0xF6A7\t0x96E9\n0xF6A8\t0x96F3\n0xF6A9\t0x96EF\n0xF6AA\t0x9706\n0xF6AB\t0x9701\n0xF6AC\t0x9708\n0xF6AD\t0x970F\n0xF6AE\t0x970E\n0xF6AF\t0x972A\n0xF6B0\t0x972D\n0xF6B1\t0x9730\n0xF6B2\t0x973E\n0xF6B3\t0x9F80\n0xF6B4\t0x9F83\n0xF6B5\t0x9F85\n0xF6B6\t0x9F86\n0xF6B7\t0x9F87\n0xF6B8\t0x9F88\n0xF6B9\t0x9F89\n0xF6BA\t0x9F8A\n0xF6BB\t0x9F8C\n0xF6BC\t0x9EFE\n0xF6BD\t0x9F0B\n0xF6BE\t0x9F0D\n0xF6BF\t0x96B9\n0xF6C0\t0x96BC\n0xF6C1\t0x96BD\n0xF6C2\t0x96CE\n0xF6C3\t0x96D2\n0xF6C4\t0x77BF\n0xF6C5\t0x96E0\n0xF6C6\t0x928E\n0xF6C7\t0x92AE\n0xF6C8\t0x92C8\n0xF6C9\t0x933E\n0xF6CA\t0x936A\n0xF6CB\t0x93CA\n0xF6CC\t0x938F\n0xF6CD\t0x943E\n0xF6CE\t0x946B\n0xF6CF\t0x9C7F\n0xF6D0\t0x9C82\n0xF6D1\t0x9C85\n0xF6D2\t0x9C86\n0xF6D3\t0x9C87\n0xF6D4\t0x9C88\n0xF6D5\t0x7A23\n0xF6D6\t0x9C8B\n0xF6D7\t0x9C8E\n0xF6D8\t0x9C90\n0xF6D9\t0x9C91\n0xF6DA\t0x9C92\n0xF6DB\t0x9C94\n0xF6DC\t0x9C95\n0xF6DD\t0x9C9A\n0xF6DE\t0x9C9B\n0xF6DF\t0x9C9E\n0xF6E0\t0x9C9F\n0xF6E1\t0x9CA0\n0xF6E2\t0x9CA1\n0xF6E3\t0x9CA2\n0xF6E4\t0x9CA3\n0xF6E5\t0x9CA5\n0xF6E6\t0x9CA6\n0xF6E7\t0x9CA7\n0xF6E8\t0x9CA8\n0xF6E9\t0x9CA9\n0xF6EA\t0x9CAB\n0xF6EB\t0x9CAD\n0xF6EC\t0x9CAE\n0xF6ED\t0x9CB0\n0xF6EE\t0x9CB1\n0xF6EF\t0x9CB2\n0xF6F0\t0x9CB3\n0xF6F1\t0x9CB4\n0xF6F2\t0x9CB5\n0xF6F3\t0x9CB6\n0xF6F4\t0x9CB7\n0xF6F5\t0x9CBA\n0xF6F6\t0x9CBB\n0xF6F7\t0x9CBC\n0xF6F8\t0x9CBD\n0xF6F9\t0x9CC4\n0xF6FA\t0x9CC5\n0xF6FB\t0x9CC6\n0xF6FC\t0x9CC7\n0xF6FD\t0x9CCA\n0xF6FE\t0x9CCB\n0xF740\t0x9C3C\n0xF741\t0x9C3D\n0xF742\t0x9C3E\n0xF743\t0x9C3F\n0xF744\t0x9C40\n0xF745\t0x9C41\n0xF746\t0x9C42\n0xF747\t0x9C43\n0xF748\t0x9C44\n0xF749\t0x9C45\n0xF74A\t0x9C46\n0xF74B\t0x9C47\n0xF74C\t0x9C48\n0xF74D\t0x9C49\n0xF74E\t0x9C4A\n0xF74F\t0x9C4B\n0xF750\t0x9C4C\n0xF751\t0x9C4D\n0xF752\t0x9C4E\n0xF753\t0x9C4F\n0xF754\t0x9C50\n0xF755\t0x9C51\n0xF756\t0x9C52\n0xF757\t0x9C53\n0xF758\t0x9C54\n0xF759\t0x9C55\n0xF75A\t0x9C56\n0xF75B\t0x9C57\n0xF75C\t0x9C58\n0xF75D\t0x9C59\n0xF75E\t0x9C5A\n0xF75F\t0x9C5B\n0xF760\t0x9C5C\n0xF761\t0x9C5D\n0xF762\t0x9C5E\n0xF763\t0x9C5F\n0xF764\t0x9C60\n0xF765\t0x9C61\n0xF766\t0x9C62\n0xF767\t0x9C63\n0xF768\t0x9C64\n0xF769\t0x9C65\n0xF76A\t0x9C66\n0xF76B\t0x9C67\n0xF76C\t0x9C68\n0xF76D\t0x9C69\n0xF76E\t0x9C6A\n0xF76F\t0x9C6B\n0xF770\t0x9C6C\n0xF771\t0x9C6D\n0xF772\t0x9C6E\n0xF773\t0x9C6F\n0xF774\t0x9C70\n0xF775\t0x9C71\n0xF776\t0x9C72\n0xF777\t0x9C73\n0xF778\t0x9C74\n0xF779\t0x9C75\n0xF77A\t0x9C76\n0xF77B\t0x9C77\n0xF77C\t0x9C78\n0xF77D\t0x9C79\n0xF77E\t0x9C7A\n0xF780\t0x9C7B\n0xF781\t0x9C7D\n0xF782\t0x9C7E\n0xF783\t0x9C80\n0xF784\t0x9C83\n0xF785\t0x9C84\n0xF786\t0x9C89\n0xF787\t0x9C8A\n0xF788\t0x9C8C\n0xF789\t0x9C8F\n0xF78A\t0x9C93\n0xF78B\t0x9C96\n0xF78C\t0x9C97\n0xF78D\t0x9C98\n0xF78E\t0x9C99\n0xF78F\t0x9C9D\n0xF790\t0x9CAA\n0xF791\t0x9CAC\n0xF792\t0x9CAF\n0xF793\t0x9CB9\n0xF794\t0x9CBE\n0xF795\t0x9CBF\n0xF796\t0x9CC0\n0xF797\t0x9CC1\n0xF798\t0x9CC2\n0xF799\t0x9CC8\n0xF79A\t0x9CC9\n0xF79B\t0x9CD1\n0xF79C\t0x9CD2\n0xF79D\t0x9CDA\n0xF79E\t0x9CDB\n0xF79F\t0x9CE0\n0xF7A0\t0x9CE1\n0xF7A1\t0x9CCC\n0xF7A2\t0x9CCD\n0xF7A3\t0x9CCE\n0xF7A4\t0x9CCF\n0xF7A5\t0x9CD0\n0xF7A6\t0x9CD3\n0xF7A7\t0x9CD4\n0xF7A8\t0x9CD5\n0xF7A9\t0x9CD7\n0xF7AA\t0x9CD8\n0xF7AB\t0x9CD9\n0xF7AC\t0x9CDC\n0xF7AD\t0x9CDD\n0xF7AE\t0x9CDF\n0xF7AF\t0x9CE2\n0xF7B0\t0x977C\n0xF7B1\t0x9785\n0xF7B2\t0x9791\n0xF7B3\t0x9792\n0xF7B4\t0x9794\n0xF7B5\t0x97AF\n0xF7B6\t0x97AB\n0xF7B7\t0x97A3\n0xF7B8\t0x97B2\n0xF7B9\t0x97B4\n0xF7BA\t0x9AB1\n0xF7BB\t0x9AB0\n0xF7BC\t0x9AB7\n0xF7BD\t0x9E58\n0xF7BE\t0x9AB6\n0xF7BF\t0x9ABA\n0xF7C0\t0x9ABC\n0xF7C1\t0x9AC1\n0xF7C2\t0x9AC0\n0xF7C3\t0x9AC5\n0xF7C4\t0x9AC2\n0xF7C5\t0x9ACB\n0xF7C6\t0x9ACC\n0xF7C7\t0x9AD1\n0xF7C8\t0x9B45\n0xF7C9\t0x9B43\n0xF7CA\t0x9B47\n0xF7CB\t0x9B49\n0xF7CC\t0x9B48\n0xF7CD\t0x9B4D\n0xF7CE\t0x9B51\n0xF7CF\t0x98E8\n0xF7D0\t0x990D\n0xF7D1\t0x992E\n0xF7D2\t0x9955\n0xF7D3\t0x9954\n0xF7D4\t0x9ADF\n0xF7D5\t0x9AE1\n0xF7D6\t0x9AE6\n0xF7D7\t0x9AEF\n0xF7D8\t0x9AEB\n0xF7D9\t0x9AFB\n0xF7DA\t0x9AED\n0xF7DB\t0x9AF9\n0xF7DC\t0x9B08\n0xF7DD\t0x9B0F\n0xF7DE\t0x9B13\n0xF7DF\t0x9B1F\n0xF7E0\t0x9B23\n0xF7E1\t0x9EBD\n0xF7E2\t0x9EBE\n0xF7E3\t0x7E3B\n0xF7E4\t0x9E82\n0xF7E5\t0x9E87\n0xF7E6\t0x9E88\n0xF7E7\t0x9E8B\n0xF7E8\t0x9E92\n0xF7E9\t0x93D6\n0xF7EA\t0x9E9D\n0xF7EB\t0x9E9F\n0xF7EC\t0x9EDB\n0xF7ED\t0x9EDC\n0xF7EE\t0x9EDD\n0xF7EF\t0x9EE0\n0xF7F0\t0x9EDF\n0xF7F1\t0x9EE2\n0xF7F2\t0x9EE9\n0xF7F3\t0x9EE7\n0xF7F4\t0x9EE5\n0xF7F5\t0x9EEA\n0xF7F6\t0x9EEF\n0xF7F7\t0x9F22\n0xF7F8\t0x9F2C\n0xF7F9\t0x9F2F\n0xF7FA\t0x9F39\n0xF7FB\t0x9F37\n0xF7FC\t0x9F3D\n0xF7FD\t0x9F3E\n0xF7FE\t0x9F44\n0xF840\t0x9CE3\n0xF841\t0x9CE4\n0xF842\t0x9CE5\n0xF843\t0x9CE6\n0xF844\t0x9CE7\n0xF845\t0x9CE8\n0xF846\t0x9CE9\n0xF847\t0x9CEA\n0xF848\t0x9CEB\n0xF849\t0x9CEC\n0xF84A\t0x9CED\n0xF84B\t0x9CEE\n0xF84C\t0x9CEF\n0xF84D\t0x9CF0\n0xF84E\t0x9CF1\n0xF84F\t0x9CF2\n0xF850\t0x9CF3\n0xF851\t0x9CF4\n0xF852\t0x9CF5\n0xF853\t0x9CF6\n0xF854\t0x9CF7\n0xF855\t0x9CF8\n0xF856\t0x9CF9\n0xF857\t0x9CFA\n0xF858\t0x9CFB\n0xF859\t0x9CFC\n0xF85A\t0x9CFD\n0xF85B\t0x9CFE\n0xF85C\t0x9CFF\n0xF85D\t0x9D00\n0xF85E\t0x9D01\n0xF85F\t0x9D02\n0xF860\t0x9D03\n0xF861\t0x9D04\n0xF862\t0x9D05\n0xF863\t0x9D06\n0xF864\t0x9D07\n0xF865\t0x9D08\n0xF866\t0x9D09\n0xF867\t0x9D0A\n0xF868\t0x9D0B\n0xF869\t0x9D0C\n0xF86A\t0x9D0D\n0xF86B\t0x9D0E\n0xF86C\t0x9D0F\n0xF86D\t0x9D10\n0xF86E\t0x9D11\n0xF86F\t0x9D12\n0xF870\t0x9D13\n0xF871\t0x9D14\n0xF872\t0x9D15\n0xF873\t0x9D16\n0xF874\t0x9D17\n0xF875\t0x9D18\n0xF876\t0x9D19\n0xF877\t0x9D1A\n0xF878\t0x9D1B\n0xF879\t0x9D1C\n0xF87A\t0x9D1D\n0xF87B\t0x9D1E\n0xF87C\t0x9D1F\n0xF87D\t0x9D20\n0xF87E\t0x9D21\n0xF880\t0x9D22\n0xF881\t0x9D23\n0xF882\t0x9D24\n0xF883\t0x9D25\n0xF884\t0x9D26\n0xF885\t0x9D27\n0xF886\t0x9D28\n0xF887\t0x9D29\n0xF888\t0x9D2A\n0xF889\t0x9D2B\n0xF88A\t0x9D2C\n0xF88B\t0x9D2D\n0xF88C\t0x9D2E\n0xF88D\t0x9D2F\n0xF88E\t0x9D30\n0xF88F\t0x9D31\n0xF890\t0x9D32\n0xF891\t0x9D33\n0xF892\t0x9D34\n0xF893\t0x9D35\n0xF894\t0x9D36\n0xF895\t0x9D37\n0xF896\t0x9D38\n0xF897\t0x9D39\n0xF898\t0x9D3A\n0xF899\t0x9D3B\n0xF89A\t0x9D3C\n0xF89B\t0x9D3D\n0xF89C\t0x9D3E\n0xF89D\t0x9D3F\n0xF89E\t0x9D40\n0xF89F\t0x9D41\n0xF8A0\t0x9D42\n0xF8A1\t0xE234\n0xF8A2\t0xE235\n0xF8A3\t0xE236\n0xF8A4\t0xE237\n0xF8A5\t0xE238\n0xF8A6\t0xE239\n0xF8A7\t0xE23A\n0xF8A8\t0xE23B\n0xF8A9\t0xE23C\n0xF8AA\t0xE23D\n0xF8AB\t0xE23E\n0xF8AC\t0xE23F\n0xF8AD\t0xE240\n0xF8AE\t0xE241\n0xF8AF\t0xE242\n0xF8B0\t0xE243\n0xF8B1\t0xE244\n0xF8B2\t0xE245\n0xF8B3\t0xE246\n0xF8B4\t0xE247\n0xF8B5\t0xE248\n0xF8B6\t0xE249\n0xF8B7\t0xE24A\n0xF8B8\t0xE24B\n0xF8B9\t0xE24C\n0xF8BA\t0xE24D\n0xF8BB\t0xE24E\n0xF8BC\t0xE24F\n0xF8BD\t0xE250\n0xF8BE\t0xE251\n0xF8BF\t0xE252\n0xF8C0\t0xE253\n0xF8C1\t0xE254\n0xF8C2\t0xE255\n0xF8C3\t0xE256\n0xF8C4\t0xE257\n0xF8C5\t0xE258\n0xF8C6\t0xE259\n0xF8C7\t0xE25A\n0xF8C8\t0xE25B\n0xF8C9\t0xE25C\n0xF8CA\t0xE25D\n0xF8CB\t0xE25E\n0xF8CC\t0xE25F\n0xF8CD\t0xE260\n0xF8CE\t0xE261\n0xF8CF\t0xE262\n0xF8D0\t0xE263\n0xF8D1\t0xE264\n0xF8D2\t0xE265\n0xF8D3\t0xE266\n0xF8D4\t0xE267\n0xF8D5\t0xE268\n0xF8D6\t0xE269\n0xF8D7\t0xE26A\n0xF8D8\t0xE26B\n0xF8D9\t0xE26C\n0xF8DA\t0xE26D\n0xF8DB\t0xE26E\n0xF8DC\t0xE26F\n0xF8DD\t0xE270\n0xF8DE\t0xE271\n0xF8DF\t0xE272\n0xF8E0\t0xE273\n0xF8E1\t0xE274\n0xF8E2\t0xE275\n0xF8E3\t0xE276\n0xF8E4\t0xE277\n0xF8E5\t0xE278\n0xF8E6\t0xE279\n0xF8E7\t0xE27A\n0xF8E8\t0xE27B\n0xF8E9\t0xE27C\n0xF8EA\t0xE27D\n0xF8EB\t0xE27E\n0xF8EC\t0xE27F\n0xF8ED\t0xE280\n0xF8EE\t0xE281\n0xF8EF\t0xE282\n0xF8F0\t0xE283\n0xF8F1\t0xE284\n0xF8F2\t0xE285\n0xF8F3\t0xE286\n0xF8F4\t0xE287\n0xF8F5\t0xE288\n0xF8F6\t0xE289\n0xF8F7\t0xE28A\n0xF8F8\t0xE28B\n0xF8F9\t0xE28C\n0xF8FA\t0xE28D\n0xF8FB\t0xE28E\n0xF8FC\t0xE28F\n0xF8FD\t0xE290\n0xF8FE\t0xE291\n0xF940\t0x9D43\n0xF941\t0x9D44\n0xF942\t0x9D45\n0xF943\t0x9D46\n0xF944\t0x9D47\n0xF945\t0x9D48\n0xF946\t0x9D49\n0xF947\t0x9D4A\n0xF948\t0x9D4B\n0xF949\t0x9D4C\n0xF94A\t0x9D4D\n0xF94B\t0x9D4E\n0xF94C\t0x9D4F\n0xF94D\t0x9D50\n0xF94E\t0x9D51\n0xF94F\t0x9D52\n0xF950\t0x9D53\n0xF951\t0x9D54\n0xF952\t0x9D55\n0xF953\t0x9D56\n0xF954\t0x9D57\n0xF955\t0x9D58\n0xF956\t0x9D59\n0xF957\t0x9D5A\n0xF958\t0x9D5B\n0xF959\t0x9D5C\n0xF95A\t0x9D5D\n0xF95B\t0x9D5E\n0xF95C\t0x9D5F\n0xF95D\t0x9D60\n0xF95E\t0x9D61\n0xF95F\t0x9D62\n0xF960\t0x9D63\n0xF961\t0x9D64\n0xF962\t0x9D65\n0xF963\t0x9D66\n0xF964\t0x9D67\n0xF965\t0x9D68\n0xF966\t0x9D69\n0xF967\t0x9D6A\n0xF968\t0x9D6B\n0xF969\t0x9D6C\n0xF96A\t0x9D6D\n0xF96B\t0x9D6E\n0xF96C\t0x9D6F\n0xF96D\t0x9D70\n0xF96E\t0x9D71\n0xF96F\t0x9D72\n0xF970\t0x9D73\n0xF971\t0x9D74\n0xF972\t0x9D75\n0xF973\t0x9D76\n0xF974\t0x9D77\n0xF975\t0x9D78\n0xF976\t0x9D79\n0xF977\t0x9D7A\n0xF978\t0x9D7B\n0xF979\t0x9D7C\n0xF97A\t0x9D7D\n0xF97B\t0x9D7E\n0xF97C\t0x9D7F\n0xF97D\t0x9D80\n0xF97E\t0x9D81\n0xF980\t0x9D82\n0xF981\t0x9D83\n0xF982\t0x9D84\n0xF983\t0x9D85\n0xF984\t0x9D86\n0xF985\t0x9D87\n0xF986\t0x9D88\n0xF987\t0x9D89\n0xF988\t0x9D8A\n0xF989\t0x9D8B\n0xF98A\t0x9D8C\n0xF98B\t0x9D8D\n0xF98C\t0x9D8E\n0xF98D\t0x9D8F\n0xF98E\t0x9D90\n0xF98F\t0x9D91\n0xF990\t0x9D92\n0xF991\t0x9D93\n0xF992\t0x9D94\n0xF993\t0x9D95\n0xF994\t0x9D96\n0xF995\t0x9D97\n0xF996\t0x9D98\n0xF997\t0x9D99\n0xF998\t0x9D9A\n0xF999\t0x9D9B\n0xF99A\t0x9D9C\n0xF99B\t0x9D9D\n0xF99C\t0x9D9E\n0xF99D\t0x9D9F\n0xF99E\t0x9DA0\n0xF99F\t0x9DA1\n0xF9A0\t0x9DA2\n0xF9A1\t0xE292\n0xF9A2\t0xE293\n0xF9A3\t0xE294\n0xF9A4\t0xE295\n0xF9A5\t0xE296\n0xF9A6\t0xE297\n0xF9A7\t0xE298\n0xF9A8\t0xE299\n0xF9A9\t0xE29A\n0xF9AA\t0xE29B\n0xF9AB\t0xE29C\n0xF9AC\t0xE29D\n0xF9AD\t0xE29E\n0xF9AE\t0xE29F\n0xF9AF\t0xE2A0\n0xF9B0\t0xE2A1\n0xF9B1\t0xE2A2\n0xF9B2\t0xE2A3\n0xF9B3\t0xE2A4\n0xF9B4\t0xE2A5\n0xF9B5\t0xE2A6\n0xF9B6\t0xE2A7\n0xF9B7\t0xE2A8\n0xF9B8\t0xE2A9\n0xF9B9\t0xE2AA\n0xF9BA\t0xE2AB\n0xF9BB\t0xE2AC\n0xF9BC\t0xE2AD\n0xF9BD\t0xE2AE\n0xF9BE\t0xE2AF\n0xF9BF\t0xE2B0\n0xF9C0\t0xE2B1\n0xF9C1\t0xE2B2\n0xF9C2\t0xE2B3\n0xF9C3\t0xE2B4\n0xF9C4\t0xE2B5\n0xF9C5\t0xE2B6\n0xF9C6\t0xE2B7\n0xF9C7\t0xE2B8\n0xF9C8\t0xE2B9\n0xF9C9\t0xE2BA\n0xF9CA\t0xE2BB\n0xF9CB\t0xE2BC\n0xF9CC\t0xE2BD\n0xF9CD\t0xE2BE\n0xF9CE\t0xE2BF\n0xF9CF\t0xE2C0\n0xF9D0\t0xE2C1\n0xF9D1\t0xE2C2\n0xF9D2\t0xE2C3\n0xF9D3\t0xE2C4\n0xF9D4\t0xE2C5\n0xF9D5\t0xE2C6\n0xF9D6\t0xE2C7\n0xF9D7\t0xE2C8\n0xF9D8\t0xE2C9\n0xF9D9\t0xE2CA\n0xF9DA\t0xE2CB\n0xF9DB\t0xE2CC\n0xF9DC\t0xE2CD\n0xF9DD\t0xE2CE\n0xF9DE\t0xE2CF\n0xF9DF\t0xE2D0\n0xF9E0\t0xE2D1\n0xF9E1\t0xE2D2\n0xF9E2\t0xE2D3\n0xF9E3\t0xE2D4\n0xF9E4\t0xE2D5\n0xF9E5\t0xE2D6\n0xF9E6\t0xE2D7\n0xF9E7\t0xE2D8\n0xF9E8\t0xE2D9\n0xF9E9\t0xE2DA\n0xF9EA\t0xE2DB\n0xF9EB\t0xE2DC\n0xF9EC\t0xE2DD\n0xF9ED\t0xE2DE\n0xF9EE\t0xE2DF\n0xF9EF\t0xE2E0\n0xF9F0\t0xE2E1\n0xF9F1\t0xE2E2\n0xF9F2\t0xE2E3\n0xF9F3\t0xE2E4\n0xF9F4\t0xE2E5\n0xF9F5\t0xE2E6\n0xF9F6\t0xE2E7\n0xF9F7\t0xE2E8\n0xF9F8\t0xE2E9\n0xF9F9\t0xE2EA\n0xF9FA\t0xE2EB\n0xF9FB\t0xE2EC\n0xF9FC\t0xE2ED\n0xF9FD\t0xE2EE\n0xF9FE\t0xE2EF\n0xFA40\t0x9DA3\n0xFA41\t0x9DA4\n0xFA42\t0x9DA5\n0xFA43\t0x9DA6\n0xFA44\t0x9DA7\n0xFA45\t0x9DA8\n0xFA46\t0x9DA9\n0xFA47\t0x9DAA\n0xFA48\t0x9DAB\n0xFA49\t0x9DAC\n0xFA4A\t0x9DAD\n0xFA4B\t0x9DAE\n0xFA4C\t0x9DAF\n0xFA4D\t0x9DB0\n0xFA4E\t0x9DB1\n0xFA4F\t0x9DB2\n0xFA50\t0x9DB3\n0xFA51\t0x9DB4\n0xFA52\t0x9DB5\n0xFA53\t0x9DB6\n0xFA54\t0x9DB7\n0xFA55\t0x9DB8\n0xFA56\t0x9DB9\n0xFA57\t0x9DBA\n0xFA58\t0x9DBB\n0xFA59\t0x9DBC\n0xFA5A\t0x9DBD\n0xFA5B\t0x9DBE\n0xFA5C\t0x9DBF\n0xFA5D\t0x9DC0\n0xFA5E\t0x9DC1\n0xFA5F\t0x9DC2\n0xFA60\t0x9DC3\n0xFA61\t0x9DC4\n0xFA62\t0x9DC5\n0xFA63\t0x9DC6\n0xFA64\t0x9DC7\n0xFA65\t0x9DC8\n0xFA66\t0x9DC9\n0xFA67\t0x9DCA\n0xFA68\t0x9DCB\n0xFA69\t0x9DCC\n0xFA6A\t0x9DCD\n0xFA6B\t0x9DCE\n0xFA6C\t0x9DCF\n0xFA6D\t0x9DD0\n0xFA6E\t0x9DD1\n0xFA6F\t0x9DD2\n0xFA70\t0x9DD3\n0xFA71\t0x9DD4\n0xFA72\t0x9DD5\n0xFA73\t0x9DD6\n0xFA74\t0x9DD7\n0xFA75\t0x9DD8\n0xFA76\t0x9DD9\n0xFA77\t0x9DDA\n0xFA78\t0x9DDB\n0xFA79\t0x9DDC\n0xFA7A\t0x9DDD\n0xFA7B\t0x9DDE\n0xFA7C\t0x9DDF\n0xFA7D\t0x9DE0\n0xFA7E\t0x9DE1\n0xFA80\t0x9DE2\n0xFA81\t0x9DE3\n0xFA82\t0x9DE4\n0xFA83\t0x9DE5\n0xFA84\t0x9DE6\n0xFA85\t0x9DE7\n0xFA86\t0x9DE8\n0xFA87\t0x9DE9\n0xFA88\t0x9DEA\n0xFA89\t0x9DEB\n0xFA8A\t0x9DEC\n0xFA8B\t0x9DED\n0xFA8C\t0x9DEE\n0xFA8D\t0x9DEF\n0xFA8E\t0x9DF0\n0xFA8F\t0x9DF1\n0xFA90\t0x9DF2\n0xFA91\t0x9DF3\n0xFA92\t0x9DF4\n0xFA93\t0x9DF5\n0xFA94\t0x9DF6\n0xFA95\t0x9DF7\n0xFA96\t0x9DF8\n0xFA97\t0x9DF9\n0xFA98\t0x9DFA\n0xFA99\t0x9DFB\n0xFA9A\t0x9DFC\n0xFA9B\t0x9DFD\n0xFA9C\t0x9DFE\n0xFA9D\t0x9DFF\n0xFA9E\t0x9E00\n0xFA9F\t0x9E01\n0xFAA0\t0x9E02\n0xFAA1\t0xE2F0\n0xFAA2\t0xE2F1\n0xFAA3\t0xE2F2\n0xFAA4\t0xE2F3\n0xFAA5\t0xE2F4\n0xFAA6\t0xE2F5\n0xFAA7\t0xE2F6\n0xFAA8\t0xE2F7\n0xFAA9\t0xE2F8\n0xFAAA\t0xE2F9\n0xFAAB\t0xE2FA\n0xFAAC\t0xE2FB\n0xFAAD\t0xE2FC\n0xFAAE\t0xE2FD\n0xFAAF\t0xE2FE\n0xFAB0\t0xE2FF\n0xFAB1\t0xE300\n0xFAB2\t0xE301\n0xFAB3\t0xE302\n0xFAB4\t0xE303\n0xFAB5\t0xE304\n0xFAB6\t0xE305\n0xFAB7\t0xE306\n0xFAB8\t0xE307\n0xFAB9\t0xE308\n0xFABA\t0xE309\n0xFABB\t0xE30A\n0xFABC\t0xE30B\n0xFABD\t0xE30C\n0xFABE\t0xE30D\n0xFABF\t0xE30E\n0xFAC0\t0xE30F\n0xFAC1\t0xE310\n0xFAC2\t0xE311\n0xFAC3\t0xE312\n0xFAC4\t0xE313\n0xFAC5\t0xE314\n0xFAC6\t0xE315\n0xFAC7\t0xE316\n0xFAC8\t0xE317\n0xFAC9\t0xE318\n0xFACA\t0xE319\n0xFACB\t0xE31A\n0xFACC\t0xE31B\n0xFACD\t0xE31C\n0xFACE\t0xE31D\n0xFACF\t0xE31E\n0xFAD0\t0xE31F\n0xFAD1\t0xE320\n0xFAD2\t0xE321\n0xFAD3\t0xE322\n0xFAD4\t0xE323\n0xFAD5\t0xE324\n0xFAD6\t0xE325\n0xFAD7\t0xE326\n0xFAD8\t0xE327\n0xFAD9\t0xE328\n0xFADA\t0xE329\n0xFADB\t0xE32A\n0xFADC\t0xE32B\n0xFADD\t0xE32C\n0xFADE\t0xE32D\n0xFADF\t0xE32E\n0xFAE0\t0xE32F\n0xFAE1\t0xE330\n0xFAE2\t0xE331\n0xFAE3\t0xE332\n0xFAE4\t0xE333\n0xFAE5\t0xE334\n0xFAE6\t0xE335\n0xFAE7\t0xE336\n0xFAE8\t0xE337\n0xFAE9\t0xE338\n0xFAEA\t0xE339\n0xFAEB\t0xE33A\n0xFAEC\t0xE33B\n0xFAED\t0xE33C\n0xFAEE\t0xE33D\n0xFAEF\t0xE33E\n0xFAF0\t0xE33F\n0xFAF1\t0xE340\n0xFAF2\t0xE341\n0xFAF3\t0xE342\n0xFAF4\t0xE343\n0xFAF5\t0xE344\n0xFAF6\t0xE345\n0xFAF7\t0xE346\n0xFAF8\t0xE347\n0xFAF9\t0xE348\n0xFAFA\t0xE349\n0xFAFB\t0xE34A\n0xFAFC\t0xE34B\n0xFAFD\t0xE34C\n0xFAFE\t0xE34D\n0xFB40\t0x9E03\n0xFB41\t0x9E04\n0xFB42\t0x9E05\n0xFB43\t0x9E06\n0xFB44\t0x9E07\n0xFB45\t0x9E08\n0xFB46\t0x9E09\n0xFB47\t0x9E0A\n0xFB48\t0x9E0B\n0xFB49\t0x9E0C\n0xFB4A\t0x9E0D\n0xFB4B\t0x9E0E\n0xFB4C\t0x9E0F\n0xFB4D\t0x9E10\n0xFB4E\t0x9E11\n0xFB4F\t0x9E12\n0xFB50\t0x9E13\n0xFB51\t0x9E14\n0xFB52\t0x9E15\n0xFB53\t0x9E16\n0xFB54\t0x9E17\n0xFB55\t0x9E18\n0xFB56\t0x9E19\n0xFB57\t0x9E1A\n0xFB58\t0x9E1B\n0xFB59\t0x9E1C\n0xFB5A\t0x9E1D\n0xFB5B\t0x9E1E\n0xFB5C\t0x9E24\n0xFB5D\t0x9E27\n0xFB5E\t0x9E2E\n0xFB5F\t0x9E30\n0xFB60\t0x9E34\n0xFB61\t0x9E3B\n0xFB62\t0x9E3C\n0xFB63\t0x9E40\n0xFB64\t0x9E4D\n0xFB65\t0x9E50\n0xFB66\t0x9E52\n0xFB67\t0x9E53\n0xFB68\t0x9E54\n0xFB69\t0x9E56\n0xFB6A\t0x9E59\n0xFB6B\t0x9E5D\n0xFB6C\t0x9E5F\n0xFB6D\t0x9E60\n0xFB6E\t0x9E61\n0xFB6F\t0x9E62\n0xFB70\t0x9E65\n0xFB71\t0x9E6E\n0xFB72\t0x9E6F\n0xFB73\t0x9E72\n0xFB74\t0x9E74\n0xFB75\t0x9E75\n0xFB76\t0x9E76\n0xFB77\t0x9E77\n0xFB78\t0x9E78\n0xFB79\t0x9E79\n0xFB7A\t0x9E7A\n0xFB7B\t0x9E7B\n0xFB7C\t0x9E7C\n0xFB7D\t0x9E7D\n0xFB7E\t0x9E80\n0xFB80\t0x9E81\n0xFB81\t0x9E83\n0xFB82\t0x9E84\n0xFB83\t0x9E85\n0xFB84\t0x9E86\n0xFB85\t0x9E89\n0xFB86\t0x9E8A\n0xFB87\t0x9E8C\n0xFB88\t0x9E8D\n0xFB89\t0x9E8E\n0xFB8A\t0x9E8F\n0xFB8B\t0x9E90\n0xFB8C\t0x9E91\n0xFB8D\t0x9E94\n0xFB8E\t0x9E95\n0xFB8F\t0x9E96\n0xFB90\t0x9E97\n0xFB91\t0x9E98\n0xFB92\t0x9E99\n0xFB93\t0x9E9A\n0xFB94\t0x9E9B\n0xFB95\t0x9E9C\n0xFB96\t0x9E9E\n0xFB97\t0x9EA0\n0xFB98\t0x9EA1\n0xFB99\t0x9EA2\n0xFB9A\t0x9EA3\n0xFB9B\t0x9EA4\n0xFB9C\t0x9EA5\n0xFB9D\t0x9EA7\n0xFB9E\t0x9EA8\n0xFB9F\t0x9EA9\n0xFBA0\t0x9EAA\n0xFBA1\t0xE34E\n0xFBA2\t0xE34F\n0xFBA3\t0xE350\n0xFBA4\t0xE351\n0xFBA5\t0xE352\n0xFBA6\t0xE353\n0xFBA7\t0xE354\n0xFBA8\t0xE355\n0xFBA9\t0xE356\n0xFBAA\t0xE357\n0xFBAB\t0xE358\n0xFBAC\t0xE359\n0xFBAD\t0xE35A\n0xFBAE\t0xE35B\n0xFBAF\t0xE35C\n0xFBB0\t0xE35D\n0xFBB1\t0xE35E\n0xFBB2\t0xE35F\n0xFBB3\t0xE360\n0xFBB4\t0xE361\n0xFBB5\t0xE362\n0xFBB6\t0xE363\n0xFBB7\t0xE364\n0xFBB8\t0xE365\n0xFBB9\t0xE366\n0xFBBA\t0xE367\n0xFBBB\t0xE368\n0xFBBC\t0xE369\n0xFBBD\t0xE36A\n0xFBBE\t0xE36B\n0xFBBF\t0xE36C\n0xFBC0\t0xE36D\n0xFBC1\t0xE36E\n0xFBC2\t0xE36F\n0xFBC3\t0xE370\n0xFBC4\t0xE371\n0xFBC5\t0xE372\n0xFBC6\t0xE373\n0xFBC7\t0xE374\n0xFBC8\t0xE375\n0xFBC9\t0xE376\n0xFBCA\t0xE377\n0xFBCB\t0xE378\n0xFBCC\t0xE379\n0xFBCD\t0xE37A\n0xFBCE\t0xE37B\n0xFBCF\t0xE37C\n0xFBD0\t0xE37D\n0xFBD1\t0xE37E\n0xFBD2\t0xE37F\n0xFBD3\t0xE380\n0xFBD4\t0xE381\n0xFBD5\t0xE382\n0xFBD6\t0xE383\n0xFBD7\t0xE384\n0xFBD8\t0xE385\n0xFBD9\t0xE386\n0xFBDA\t0xE387\n0xFBDB\t0xE388\n0xFBDC\t0xE389\n0xFBDD\t0xE38A\n0xFBDE\t0xE38B\n0xFBDF\t0xE38C\n0xFBE0\t0xE38D\n0xFBE1\t0xE38E\n0xFBE2\t0xE38F\n0xFBE3\t0xE390\n0xFBE4\t0xE391\n0xFBE5\t0xE392\n0xFBE6\t0xE393\n0xFBE7\t0xE394\n0xFBE8\t0xE395\n0xFBE9\t0xE396\n0xFBEA\t0xE397\n0xFBEB\t0xE398\n0xFBEC\t0xE399\n0xFBED\t0xE39A\n0xFBEE\t0xE39B\n0xFBEF\t0xE39C\n0xFBF0\t0xE39D\n0xFBF1\t0xE39E\n0xFBF2\t0xE39F\n0xFBF3\t0xE3A0\n0xFBF4\t0xE3A1\n0xFBF5\t0xE3A2\n0xFBF6\t0xE3A3\n0xFBF7\t0xE3A4\n0xFBF8\t0xE3A5\n0xFBF9\t0xE3A6\n0xFBFA\t0xE3A7\n0xFBFB\t0xE3A8\n0xFBFC\t0xE3A9\n0xFBFD\t0xE3AA\n0xFBFE\t0xE3AB\n0xFC40\t0x9EAB\n0xFC41\t0x9EAC\n0xFC42\t0x9EAD\n0xFC43\t0x9EAE\n0xFC44\t0x9EAF\n0xFC45\t0x9EB0\n0xFC46\t0x9EB1\n0xFC47\t0x9EB2\n0xFC48\t0x9EB3\n0xFC49\t0x9EB5\n0xFC4A\t0x9EB6\n0xFC4B\t0x9EB7\n0xFC4C\t0x9EB9\n0xFC4D\t0x9EBA\n0xFC4E\t0x9EBC\n0xFC4F\t0x9EBF\n0xFC50\t0x9EC0\n0xFC51\t0x9EC1\n0xFC52\t0x9EC2\n0xFC53\t0x9EC3\n0xFC54\t0x9EC5\n0xFC55\t0x9EC6\n0xFC56\t0x9EC7\n0xFC57\t0x9EC8\n0xFC58\t0x9ECA\n0xFC59\t0x9ECB\n0xFC5A\t0x9ECC\n0xFC5B\t0x9ED0\n0xFC5C\t0x9ED2\n0xFC5D\t0x9ED3\n0xFC5E\t0x9ED5\n0xFC5F\t0x9ED6\n0xFC60\t0x9ED7\n0xFC61\t0x9ED9\n0xFC62\t0x9EDA\n0xFC63\t0x9EDE\n0xFC64\t0x9EE1\n0xFC65\t0x9EE3\n0xFC66\t0x9EE4\n0xFC67\t0x9EE6\n0xFC68\t0x9EE8\n0xFC69\t0x9EEB\n0xFC6A\t0x9EEC\n0xFC6B\t0x9EED\n0xFC6C\t0x9EEE\n0xFC6D\t0x9EF0\n0xFC6E\t0x9EF1\n0xFC6F\t0x9EF2\n0xFC70\t0x9EF3\n0xFC71\t0x9EF4\n0xFC72\t0x9EF5\n0xFC73\t0x9EF6\n0xFC74\t0x9EF7\n0xFC75\t0x9EF8\n0xFC76\t0x9EFA\n0xFC77\t0x9EFD\n0xFC78\t0x9EFF\n0xFC79\t0x9F00\n0xFC7A\t0x9F01\n0xFC7B\t0x9F02\n0xFC7C\t0x9F03\n0xFC7D\t0x9F04\n0xFC7E\t0x9F05\n0xFC80\t0x9F06\n0xFC81\t0x9F07\n0xFC82\t0x9F08\n0xFC83\t0x9F09\n0xFC84\t0x9F0A\n0xFC85\t0x9F0C\n0xFC86\t0x9F0F\n0xFC87\t0x9F11\n0xFC88\t0x9F12\n0xFC89\t0x9F14\n0xFC8A\t0x9F15\n0xFC8B\t0x9F16\n0xFC8C\t0x9F18\n0xFC8D\t0x9F1A\n0xFC8E\t0x9F1B\n0xFC8F\t0x9F1C\n0xFC90\t0x9F1D\n0xFC91\t0x9F1E\n0xFC92\t0x9F1F\n0xFC93\t0x9F21\n0xFC94\t0x9F23\n0xFC95\t0x9F24\n0xFC96\t0x9F25\n0xFC97\t0x9F26\n0xFC98\t0x9F27\n0xFC99\t0x9F28\n0xFC9A\t0x9F29\n0xFC9B\t0x9F2A\n0xFC9C\t0x9F2B\n0xFC9D\t0x9F2D\n0xFC9E\t0x9F2E\n0xFC9F\t0x9F30\n0xFCA0\t0x9F31\n0xFCA1\t0xE3AC\n0xFCA2\t0xE3AD\n0xFCA3\t0xE3AE\n0xFCA4\t0xE3AF\n0xFCA5\t0xE3B0\n0xFCA6\t0xE3B1\n0xFCA7\t0xE3B2\n0xFCA8\t0xE3B3\n0xFCA9\t0xE3B4\n0xFCAA\t0xE3B5\n0xFCAB\t0xE3B6\n0xFCAC\t0xE3B7\n0xFCAD\t0xE3B8\n0xFCAE\t0xE3B9\n0xFCAF\t0xE3BA\n0xFCB0\t0xE3BB\n0xFCB1\t0xE3BC\n0xFCB2\t0xE3BD\n0xFCB3\t0xE3BE\n0xFCB4\t0xE3BF\n0xFCB5\t0xE3C0\n0xFCB6\t0xE3C1\n0xFCB7\t0xE3C2\n0xFCB8\t0xE3C3\n0xFCB9\t0xE3C4\n0xFCBA\t0xE3C5\n0xFCBB\t0xE3C6\n0xFCBC\t0xE3C7\n0xFCBD\t0xE3C8\n0xFCBE\t0xE3C9\n0xFCBF\t0xE3CA\n0xFCC0\t0xE3CB\n0xFCC1\t0xE3CC\n0xFCC2\t0xE3CD\n0xFCC3\t0xE3CE\n0xFCC4\t0xE3CF\n0xFCC5\t0xE3D0\n0xFCC6\t0xE3D1\n0xFCC7\t0xE3D2\n0xFCC8\t0xE3D3\n0xFCC9\t0xE3D4\n0xFCCA\t0xE3D5\n0xFCCB\t0xE3D6\n0xFCCC\t0xE3D7\n0xFCCD\t0xE3D8\n0xFCCE\t0xE3D9\n0xFCCF\t0xE3DA\n0xFCD0\t0xE3DB\n0xFCD1\t0xE3DC\n0xFCD2\t0xE3DD\n0xFCD3\t0xE3DE\n0xFCD4\t0xE3DF\n0xFCD5\t0xE3E0\n0xFCD6\t0xE3E1\n0xFCD7\t0xE3E2\n0xFCD8\t0xE3E3\n0xFCD9\t0xE3E4\n0xFCDA\t0xE3E5\n0xFCDB\t0xE3E6\n0xFCDC\t0xE3E7\n0xFCDD\t0xE3E8\n0xFCDE\t0xE3E9\n0xFCDF\t0xE3EA\n0xFCE0\t0xE3EB\n0xFCE1\t0xE3EC\n0xFCE2\t0xE3ED\n0xFCE3\t0xE3EE\n0xFCE4\t0xE3EF\n0xFCE5\t0xE3F0\n0xFCE6\t0xE3F1\n0xFCE7\t0xE3F2\n0xFCE8\t0xE3F3\n0xFCE9\t0xE3F4\n0xFCEA\t0xE3F5\n0xFCEB\t0xE3F6\n0xFCEC\t0xE3F7\n0xFCED\t0xE3F8\n0xFCEE\t0xE3F9\n0xFCEF\t0xE3FA\n0xFCF0\t0xE3FB\n0xFCF1\t0xE3FC\n0xFCF2\t0xE3FD\n0xFCF3\t0xE3FE\n0xFCF4\t0xE3FF\n0xFCF5\t0xE400\n0xFCF6\t0xE401\n0xFCF7\t0xE402\n0xFCF8\t0xE403\n0xFCF9\t0xE404\n0xFCFA\t0xE405\n0xFCFB\t0xE406\n0xFCFC\t0xE407\n0xFCFD\t0xE408\n0xFCFE\t0xE409\n0xFD40\t0x9F32\n0xFD41\t0x9F33\n0xFD42\t0x9F34\n0xFD43\t0x9F35\n0xFD44\t0x9F36\n0xFD45\t0x9F38\n0xFD46\t0x9F3A\n0xFD47\t0x9F3C\n0xFD48\t0x9F3F\n0xFD49\t0x9F40\n0xFD4A\t0x9F41\n0xFD4B\t0x9F42\n0xFD4C\t0x9F43\n0xFD4D\t0x9F45\n0xFD4E\t0x9F46\n0xFD4F\t0x9F47\n0xFD50\t0x9F48\n0xFD51\t0x9F49\n0xFD52\t0x9F4A\n0xFD53\t0x9F4B\n0xFD54\t0x9F4C\n0xFD55\t0x9F4D\n0xFD56\t0x9F4E\n0xFD57\t0x9F4F\n0xFD58\t0x9F52\n0xFD59\t0x9F53\n0xFD5A\t0x9F54\n0xFD5B\t0x9F55\n0xFD5C\t0x9F56\n0xFD5D\t0x9F57\n0xFD5E\t0x9F58\n0xFD5F\t0x9F59\n0xFD60\t0x9F5A\n0xFD61\t0x9F5B\n0xFD62\t0x9F5C\n0xFD63\t0x9F5D\n0xFD64\t0x9F5E\n0xFD65\t0x9F5F\n0xFD66\t0x9F60\n0xFD67\t0x9F61\n0xFD68\t0x9F62\n0xFD69\t0x9F63\n0xFD6A\t0x9F64\n0xFD6B\t0x9F65\n0xFD6C\t0x9F66\n0xFD6D\t0x9F67\n0xFD6E\t0x9F68\n0xFD6F\t0x9F69\n0xFD70\t0x9F6A\n0xFD71\t0x9F6B\n0xFD72\t0x9F6C\n0xFD73\t0x9F6D\n0xFD74\t0x9F6E\n0xFD75\t0x9F6F\n0xFD76\t0x9F70\n0xFD77\t0x9F71\n0xFD78\t0x9F72\n0xFD79\t0x9F73\n0xFD7A\t0x9F74\n0xFD7B\t0x9F75\n0xFD7C\t0x9F76\n0xFD7D\t0x9F77\n0xFD7E\t0x9F78\n0xFD80\t0x9F79\n0xFD81\t0x9F7A\n0xFD82\t0x9F7B\n0xFD83\t0x9F7C\n0xFD84\t0x9F7D\n0xFD85\t0x9F7E\n0xFD86\t0x9F81\n0xFD87\t0x9F82\n0xFD88\t0x9F8D\n0xFD89\t0x9F8E\n0xFD8A\t0x9F8F\n0xFD8B\t0x9F90\n0xFD8C\t0x9F91\n0xFD8D\t0x9F92\n0xFD8E\t0x9F93\n0xFD8F\t0x9F94\n0xFD90\t0x9F95\n0xFD91\t0x9F96\n0xFD92\t0x9F97\n0xFD93\t0x9F98\n0xFD94\t0x9F9C\n0xFD95\t0x9F9D\n0xFD96\t0x9F9E\n0xFD97\t0x9FA1\n0xFD98\t0x9FA2\n0xFD99\t0x9FA3\n0xFD9A\t0x9FA4\n0xFD9B\t0x9FA5\n0xFD9C\t0xF92C\n0xFD9D\t0xF979\n0xFD9E\t0xF995\n0xFD9F\t0xF9E7\n0xFDA0\t0xF9F1\n0xFDA1\t0xE40A\n0xFDA2\t0xE40B\n0xFDA3\t0xE40C\n0xFDA4\t0xE40D\n0xFDA5\t0xE40E\n0xFDA6\t0xE40F\n0xFDA7\t0xE410\n0xFDA8\t0xE411\n0xFDA9\t0xE412\n0xFDAA\t0xE413\n0xFDAB\t0xE414\n0xFDAC\t0xE415\n0xFDAD\t0xE416\n0xFDAE\t0xE417\n0xFDAF\t0xE418\n0xFDB0\t0xE419\n0xFDB1\t0xE41A\n0xFDB2\t0xE41B\n0xFDB3\t0xE41C\n0xFDB4\t0xE41D\n0xFDB5\t0xE41E\n0xFDB6\t0xE41F\n0xFDB7\t0xE420\n0xFDB8\t0xE421\n0xFDB9\t0xE422\n0xFDBA\t0xE423\n0xFDBB\t0xE424\n0xFDBC\t0xE425\n0xFDBD\t0xE426\n0xFDBE\t0xE427\n0xFDBF\t0xE428\n0xFDC0\t0xE429\n0xFDC1\t0xE42A\n0xFDC2\t0xE42B\n0xFDC3\t0xE42C\n0xFDC4\t0xE42D\n0xFDC5\t0xE42E\n0xFDC6\t0xE42F\n0xFDC7\t0xE430\n0xFDC8\t0xE431\n0xFDC9\t0xE432\n0xFDCA\t0xE433\n0xFDCB\t0xE434\n0xFDCC\t0xE435\n0xFDCD\t0xE436\n0xFDCE\t0xE437\n0xFDCF\t0xE438\n0xFDD0\t0xE439\n0xFDD1\t0xE43A\n0xFDD2\t0xE43B\n0xFDD3\t0xE43C\n0xFDD4\t0xE43D\n0xFDD5\t0xE43E\n0xFDD6\t0xE43F\n0xFDD7\t0xE440\n0xFDD8\t0xE441\n0xFDD9\t0xE442\n0xFDDA\t0xE443\n0xFDDB\t0xE444\n0xFDDC\t0xE445\n0xFDDD\t0xE446\n0xFDDE\t0xE447\n0xFDDF\t0xE448\n0xFDE0\t0xE449\n0xFDE1\t0xE44A\n0xFDE2\t0xE44B\n0xFDE3\t0xE44C\n0xFDE4\t0xE44D\n0xFDE5\t0xE44E\n0xFDE6\t0xE44F\n0xFDE7\t0xE450\n0xFDE8\t0xE451\n0xFDE9\t0xE452\n0xFDEA\t0xE453\n0xFDEB\t0xE454\n0xFDEC\t0xE455\n0xFDED\t0xE456\n0xFDEE\t0xE457\n0xFDEF\t0xE458\n0xFDF0\t0xE459\n0xFDF1\t0xE45A\n0xFDF2\t0xE45B\n0xFDF3\t0xE45C\n0xFDF4\t0xE45D\n0xFDF5\t0xE45E\n0xFDF6\t0xE45F\n0xFDF7\t0xE460\n0xFDF8\t0xE461\n0xFDF9\t0xE462\n0xFDFA\t0xE463\n0xFDFB\t0xE464\n0xFDFC\t0xE465\n0xFDFD\t0xE466\n0xFDFE\t0xE467\n0xFE40\t0xFA0C\n0xFE41\t0xFA0D\n0xFE42\t0xFA0E\n0xFE43\t0xFA0F\n0xFE44\t0xFA11\n0xFE45\t0xFA13\n0xFE46\t0xFA14\n0xFE47\t0xFA18\n0xFE48\t0xFA1F\n0xFE49\t0xFA20\n0xFE4A\t0xFA21\n0xFE4B\t0xFA23\n0xFE4C\t0xFA24\n0xFE4D\t0xFA27\n0xFE4E\t0xFA28\n0xFE4F\t0xFA29\n0xFE50\t0x2E81\n0xFE51\t0x20087\n0xFE52\t0x20089\n0xFE53\t0x200CC\n0xFE54\t0x2E84\n0xFE55\t0x3473\n0xFE56\t0x3447\n0xFE57\t0x2E88\n0xFE58\t0x2E8B\n0xFE59\t0x9FB4\n0xFE5A\t0x359E\n0xFE5B\t0x361A\n0xFE5C\t0x360E\n0xFE5D\t0x2E8C\n0xFE5E\t0x2E97\n0xFE5F\t0x396E\n0xFE60\t0x3918\n0xFE61\t0x9FB5\n0xFE62\t0x39CF\n0xFE63\t0x39DF\n0xFE64\t0x3A73\n0xFE65\t0x39D0\n0xFE66\t0x9FB6\n0xFE67\t0x9FB7\n0xFE68\t0x3B4E\n0xFE69\t0x3C6E\n0xFE6A\t0x3CE0\n0xFE6B\t0x2EA7\n0xFE6C\t0x215D7\n0xFE6D\t0x9FB8\n0xFE6E\t0x2EAA\n0xFE6F\t0x4056\n0xFE70\t0x415F\n0xFE71\t0x2EAE\n0xFE72\t0x4337\n0xFE73\t0x2EB3\n0xFE74\t0x2EB6\n0xFE75\t0x2EB7\n0xFE76\t0x2298F\n0xFE77\t0x43B1\n0xFE78\t0x43AC\n0xFE79\t0x2EBB\n0xFE7A\t0x43DD\n0xFE7B\t0x44D6\n0xFE7C\t0x4661\n0xFE7D\t0x464C\n0xFE7E\t0x9FB9\n0xFE80\t0x4723\n0xFE81\t0x4729\n0xFE82\t0x477C\n0xFE83\t0x478D\n0xFE84\t0x2ECA\n0xFE85\t0x4947\n0xFE86\t0x497A\n0xFE87\t0x497D\n0xFE88\t0x4982\n0xFE89\t0x4983\n0xFE8A\t0x4985\n0xFE8B\t0x4986\n0xFE8C\t0x499F\n0xFE8D\t0x499B\n0xFE8E\t0x49B7\n0xFE8F\t0x49B6\n0xFE90\t0x9FBA\n0xFE91\t0x241FE\n0xFE92\t0x4CA3\n0xFE93\t0x4C9F\n0xFE94\t0x4CA0\n0xFE95\t0x4CA1\n0xFE96\t0x4C77\n0xFE97\t0x4CA2\n0xFE98\t0x4D13\n0xFE99\t0x4D14\n0xFE9A\t0x4D15\n0xFE9B\t0x4D16\n0xFE9C\t0x4D17\n0xFE9D\t0x4D18\n0xFE9E\t0x4D19\n0xFE9F\t0x4DAE\n0xFEA0\t0x9FBB\n0xFEA1\t0xE468\n0xFEA2\t0xE469\n0xFEA3\t0xE46A\n0xFEA4\t0xE46B\n0xFEA5\t0xE46C\n0xFEA6\t0xE46D\n0xFEA7\t0xE46E\n0xFEA8\t0xE46F\n0xFEA9\t0xE470\n0xFEAA\t0xE471\n0xFEAB\t0xE472\n0xFEAC\t0xE473\n0xFEAD\t0xE474\n0xFEAE\t0xE475\n0xFEAF\t0xE476\n0xFEB0\t0xE477\n0xFEB1\t0xE478\n0xFEB2\t0xE479\n0xFEB3\t0xE47A\n0xFEB4\t0xE47B\n0xFEB5\t0xE47C\n0xFEB6\t0xE47D\n0xFEB7\t0xE47E\n0xFEB8\t0xE47F\n0xFEB9\t0xE480\n0xFEBA\t0xE481\n0xFEBB\t0xE482\n0xFEBC\t0xE483\n0xFEBD\t0xE484\n0xFEBE\t0xE485\n0xFEBF\t0xE486\n0xFEC0\t0xE487\n0xFEC1\t0xE488\n0xFEC2\t0xE489\n0xFEC3\t0xE48A\n0xFEC4\t0xE48B\n0xFEC5\t0xE48C\n0xFEC6\t0xE48D\n0xFEC7\t0xE48E\n0xFEC8\t0xE48F\n0xFEC9\t0xE490\n0xFECA\t0xE491\n0xFECB\t0xE492\n0xFECC\t0xE493\n0xFECD\t0xE494\n0xFECE\t0xE495\n0xFECF\t0xE496\n0xFED0\t0xE497\n0xFED1\t0xE498\n0xFED2\t0xE499\n0xFED3\t0xE49A\n0xFED4\t0xE49B\n0xFED5\t0xE49C\n0xFED6\t0xE49D\n0xFED7\t0xE49E\n0xFED8\t0xE49F\n0xFED9\t0xE4A0\n0xFEDA\t0xE4A1\n0xFEDB\t0xE4A2\n0xFEDC\t0xE4A3\n0xFEDD\t0xE4A4\n0xFEDE\t0xE4A5\n0xFEDF\t0xE4A6\n0xFEE0\t0xE4A7\n0xFEE1\t0xE4A8\n0xFEE2\t0xE4A9\n0xFEE3\t0xE4AA\n0xFEE4\t0xE4AB\n0xFEE5\t0xE4AC\n0xFEE6\t0xE4AD\n0xFEE7\t0xE4AE\n0xFEE8\t0xE4AF\n0xFEE9\t0xE4B0\n0xFEEA\t0xE4B1\n0xFEEB\t0xE4B2\n0xFEEC\t0xE4B3\n0xFEED\t0xE4B4\n0xFEEE\t0xE4B5\n0xFEEF\t0xE4B6\n0xFEF0\t0xE4B7\n0xFEF1\t0xE4B8\n0xFEF2\t0xE4B9\n0xFEF3\t0xE4BA\n0xFEF4\t0xE4BB\n0xFEF5\t0xE4BC\n0xFEF6\t0xE4BD\n0xFEF7\t0xE4BE\n0xFEF8\t0xE4BF\n0xFEF9\t0xE4C0\n0xFEFA\t0xE4C1\n0xFEFB\t0xE4C2\n0xFEFC\t0xE4C3\n0xFEFD\t0xE4C4\n0xFEFE\t0xE4C5\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/GB18030.IRREVERSIBLE.TXT",
    "content": "0x82359037\t0x9FB4\n0x82359038\t0x9FB5\n0x82359039\t0x9FB6\n0x82359130\t0x9FB7\n0x82359131\t0x9FB8\n0x82359132\t0x9FB9\n0x82359133\t0x9FBA\n0x82359134\t0x9FBB\n0x84318236\t0xFE10\n0x84318237\t0xFE11\n0x84318238\t0xFE12\n0x84318239\t0xFE13\n0x84318330\t0xFE14\n0x84318331\t0xFE15\n0x84318332\t0xFE16\n0x84318333\t0xFE17\n0x84318334\t0xFE18\n0x84318335\t0xFE19\n0x95329031\t0x20087\n0x95329033\t0x20089\n0x95329730\t0x200CC\n0x9536B937\t0x215D7\n0x9630BA35\t0x2298F\n0x9635B630\t0x241FE\n0xA6D9\t0xE78D\n0xA6DA\t0xE78E\n0xA6DB\t0xE78F\n0xA6DC\t0xE790\n0xA6DD\t0xE791\n0xA6DE\t0xE792\n0xA6DF\t0xE793\n0xA6EC\t0xE794\n0xA6ED\t0xE795\n0xA6F3\t0xE796\n0xFE51\t0xE816\n0xFE52\t0xE817\n0xFE53\t0xE818\n0xFE59\t0xE81E\n0xFE61\t0xE826\n0xFE66\t0xE82B\n0xFE67\t0xE82C\n0xFE6C\t0xE831\n0xFE6D\t0xE832\n0xFE76\t0xE83B\n0xFE7E\t0xE843\n0xFE90\t0xE854\n0xFE91\t0xE855\n0xFEA0\t0xE864\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/GBK.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8140\t0x4E02\n0x8141\t0x4E04\n0x8142\t0x4E05\n0x8143\t0x4E06\n0x8144\t0x4E0F\n0x8145\t0x4E12\n0x8146\t0x4E17\n0x8147\t0x4E1F\n0x8148\t0x4E20\n0x8149\t0x4E21\n0x814A\t0x4E23\n0x814B\t0x4E26\n0x814C\t0x4E29\n0x814D\t0x4E2E\n0x814E\t0x4E2F\n0x814F\t0x4E31\n0x8150\t0x4E33\n0x8151\t0x4E35\n0x8152\t0x4E37\n0x8153\t0x4E3C\n0x8154\t0x4E40\n0x8155\t0x4E41\n0x8156\t0x4E42\n0x8157\t0x4E44\n0x8158\t0x4E46\n0x8159\t0x4E4A\n0x815A\t0x4E51\n0x815B\t0x4E55\n0x815C\t0x4E57\n0x815D\t0x4E5A\n0x815E\t0x4E5B\n0x815F\t0x4E62\n0x8160\t0x4E63\n0x8161\t0x4E64\n0x8162\t0x4E65\n0x8163\t0x4E67\n0x8164\t0x4E68\n0x8165\t0x4E6A\n0x8166\t0x4E6B\n0x8167\t0x4E6C\n0x8168\t0x4E6D\n0x8169\t0x4E6E\n0x816A\t0x4E6F\n0x816B\t0x4E72\n0x816C\t0x4E74\n0x816D\t0x4E75\n0x816E\t0x4E76\n0x816F\t0x4E77\n0x8170\t0x4E78\n0x8171\t0x4E79\n0x8172\t0x4E7A\n0x8173\t0x4E7B\n0x8174\t0x4E7C\n0x8175\t0x4E7D\n0x8176\t0x4E7F\n0x8177\t0x4E80\n0x8178\t0x4E81\n0x8179\t0x4E82\n0x817A\t0x4E83\n0x817B\t0x4E84\n0x817C\t0x4E85\n0x817D\t0x4E87\n0x817E\t0x4E8A\n0x8180\t0x4E90\n0x8181\t0x4E96\n0x8182\t0x4E97\n0x8183\t0x4E99\n0x8184\t0x4E9C\n0x8185\t0x4E9D\n0x8186\t0x4E9E\n0x8187\t0x4EA3\n0x8188\t0x4EAA\n0x8189\t0x4EAF\n0x818A\t0x4EB0\n0x818B\t0x4EB1\n0x818C\t0x4EB4\n0x818D\t0x4EB6\n0x818E\t0x4EB7\n0x818F\t0x4EB8\n0x8190\t0x4EB9\n0x8191\t0x4EBC\n0x8192\t0x4EBD\n0x8193\t0x4EBE\n0x8194\t0x4EC8\n0x8195\t0x4ECC\n0x8196\t0x4ECF\n0x8197\t0x4ED0\n0x8198\t0x4ED2\n0x8199\t0x4EDA\n0x819A\t0x4EDB\n0x819B\t0x4EDC\n0x819C\t0x4EE0\n0x819D\t0x4EE2\n0x819E\t0x4EE6\n0x819F\t0x4EE7\n0x81A0\t0x4EE9\n0x81A1\t0x4EED\n0x81A2\t0x4EEE\n0x81A3\t0x4EEF\n0x81A4\t0x4EF1\n0x81A5\t0x4EF4\n0x81A6\t0x4EF8\n0x81A7\t0x4EF9\n0x81A8\t0x4EFA\n0x81A9\t0x4EFC\n0x81AA\t0x4EFE\n0x81AB\t0x4F00\n0x81AC\t0x4F02\n0x81AD\t0x4F03\n0x81AE\t0x4F04\n0x81AF\t0x4F05\n0x81B0\t0x4F06\n0x81B1\t0x4F07\n0x81B2\t0x4F08\n0x81B3\t0x4F0B\n0x81B4\t0x4F0C\n0x81B5\t0x4F12\n0x81B6\t0x4F13\n0x81B7\t0x4F14\n0x81B8\t0x4F15\n0x81B9\t0x4F16\n0x81BA\t0x4F1C\n0x81BB\t0x4F1D\n0x81BC\t0x4F21\n0x81BD\t0x4F23\n0x81BE\t0x4F28\n0x81BF\t0x4F29\n0x81C0\t0x4F2C\n0x81C1\t0x4F2D\n0x81C2\t0x4F2E\n0x81C3\t0x4F31\n0x81C4\t0x4F33\n0x81C5\t0x4F35\n0x81C6\t0x4F37\n0x81C7\t0x4F39\n0x81C8\t0x4F3B\n0x81C9\t0x4F3E\n0x81CA\t0x4F3F\n0x81CB\t0x4F40\n0x81CC\t0x4F41\n0x81CD\t0x4F42\n0x81CE\t0x4F44\n0x81CF\t0x4F45\n0x81D0\t0x4F47\n0x81D1\t0x4F48\n0x81D2\t0x4F49\n0x81D3\t0x4F4A\n0x81D4\t0x4F4B\n0x81D5\t0x4F4C\n0x81D6\t0x4F52\n0x81D7\t0x4F54\n0x81D8\t0x4F56\n0x81D9\t0x4F61\n0x81DA\t0x4F62\n0x81DB\t0x4F66\n0x81DC\t0x4F68\n0x81DD\t0x4F6A\n0x81DE\t0x4F6B\n0x81DF\t0x4F6D\n0x81E0\t0x4F6E\n0x81E1\t0x4F71\n0x81E2\t0x4F72\n0x81E3\t0x4F75\n0x81E4\t0x4F77\n0x81E5\t0x4F78\n0x81E6\t0x4F79\n0x81E7\t0x4F7A\n0x81E8\t0x4F7D\n0x81E9\t0x4F80\n0x81EA\t0x4F81\n0x81EB\t0x4F82\n0x81EC\t0x4F85\n0x81ED\t0x4F86\n0x81EE\t0x4F87\n0x81EF\t0x4F8A\n0x81F0\t0x4F8C\n0x81F1\t0x4F8E\n0x81F2\t0x4F90\n0x81F3\t0x4F92\n0x81F4\t0x4F93\n0x81F5\t0x4F95\n0x81F6\t0x4F96\n0x81F7\t0x4F98\n0x81F8\t0x4F99\n0x81F9\t0x4F9A\n0x81FA\t0x4F9C\n0x81FB\t0x4F9E\n0x81FC\t0x4F9F\n0x81FD\t0x4FA1\n0x81FE\t0x4FA2\n0x8240\t0x4FA4\n0x8241\t0x4FAB\n0x8242\t0x4FAD\n0x8243\t0x4FB0\n0x8244\t0x4FB1\n0x8245\t0x4FB2\n0x8246\t0x4FB3\n0x8247\t0x4FB4\n0x8248\t0x4FB6\n0x8249\t0x4FB7\n0x824A\t0x4FB8\n0x824B\t0x4FB9\n0x824C\t0x4FBA\n0x824D\t0x4FBB\n0x824E\t0x4FBC\n0x824F\t0x4FBD\n0x8250\t0x4FBE\n0x8251\t0x4FC0\n0x8252\t0x4FC1\n0x8253\t0x4FC2\n0x8254\t0x4FC6\n0x8255\t0x4FC7\n0x8256\t0x4FC8\n0x8257\t0x4FC9\n0x8258\t0x4FCB\n0x8259\t0x4FCC\n0x825A\t0x4FCD\n0x825B\t0x4FD2\n0x825C\t0x4FD3\n0x825D\t0x4FD4\n0x825E\t0x4FD5\n0x825F\t0x4FD6\n0x8260\t0x4FD9\n0x8261\t0x4FDB\n0x8262\t0x4FE0\n0x8263\t0x4FE2\n0x8264\t0x4FE4\n0x8265\t0x4FE5\n0x8266\t0x4FE7\n0x8267\t0x4FEB\n0x8268\t0x4FEC\n0x8269\t0x4FF0\n0x826A\t0x4FF2\n0x826B\t0x4FF4\n0x826C\t0x4FF5\n0x826D\t0x4FF6\n0x826E\t0x4FF7\n0x826F\t0x4FF9\n0x8270\t0x4FFB\n0x8271\t0x4FFC\n0x8272\t0x4FFD\n0x8273\t0x4FFF\n0x8274\t0x5000\n0x8275\t0x5001\n0x8276\t0x5002\n0x8277\t0x5003\n0x8278\t0x5004\n0x8279\t0x5005\n0x827A\t0x5006\n0x827B\t0x5007\n0x827C\t0x5008\n0x827D\t0x5009\n0x827E\t0x500A\n0x8280\t0x500B\n0x8281\t0x500E\n0x8282\t0x5010\n0x8283\t0x5011\n0x8284\t0x5013\n0x8285\t0x5015\n0x8286\t0x5016\n0x8287\t0x5017\n0x8288\t0x501B\n0x8289\t0x501D\n0x828A\t0x501E\n0x828B\t0x5020\n0x828C\t0x5022\n0x828D\t0x5023\n0x828E\t0x5024\n0x828F\t0x5027\n0x8290\t0x502B\n0x8291\t0x502F\n0x8292\t0x5030\n0x8293\t0x5031\n0x8294\t0x5032\n0x8295\t0x5033\n0x8296\t0x5034\n0x8297\t0x5035\n0x8298\t0x5036\n0x8299\t0x5037\n0x829A\t0x5038\n0x829B\t0x5039\n0x829C\t0x503B\n0x829D\t0x503D\n0x829E\t0x503F\n0x829F\t0x5040\n0x82A0\t0x5041\n0x82A1\t0x5042\n0x82A2\t0x5044\n0x82A3\t0x5045\n0x82A4\t0x5046\n0x82A5\t0x5049\n0x82A6\t0x504A\n0x82A7\t0x504B\n0x82A8\t0x504D\n0x82A9\t0x5050\n0x82AA\t0x5051\n0x82AB\t0x5052\n0x82AC\t0x5053\n0x82AD\t0x5054\n0x82AE\t0x5056\n0x82AF\t0x5057\n0x82B0\t0x5058\n0x82B1\t0x5059\n0x82B2\t0x505B\n0x82B3\t0x505D\n0x82B4\t0x505E\n0x82B5\t0x505F\n0x82B6\t0x5060\n0x82B7\t0x5061\n0x82B8\t0x5062\n0x82B9\t0x5063\n0x82BA\t0x5064\n0x82BB\t0x5066\n0x82BC\t0x5067\n0x82BD\t0x5068\n0x82BE\t0x5069\n0x82BF\t0x506A\n0x82C0\t0x506B\n0x82C1\t0x506D\n0x82C2\t0x506E\n0x82C3\t0x506F\n0x82C4\t0x5070\n0x82C5\t0x5071\n0x82C6\t0x5072\n0x82C7\t0x5073\n0x82C8\t0x5074\n0x82C9\t0x5075\n0x82CA\t0x5078\n0x82CB\t0x5079\n0x82CC\t0x507A\n0x82CD\t0x507C\n0x82CE\t0x507D\n0x82CF\t0x5081\n0x82D0\t0x5082\n0x82D1\t0x5083\n0x82D2\t0x5084\n0x82D3\t0x5086\n0x82D4\t0x5087\n0x82D5\t0x5089\n0x82D6\t0x508A\n0x82D7\t0x508B\n0x82D8\t0x508C\n0x82D9\t0x508E\n0x82DA\t0x508F\n0x82DB\t0x5090\n0x82DC\t0x5091\n0x82DD\t0x5092\n0x82DE\t0x5093\n0x82DF\t0x5094\n0x82E0\t0x5095\n0x82E1\t0x5096\n0x82E2\t0x5097\n0x82E3\t0x5098\n0x82E4\t0x5099\n0x82E5\t0x509A\n0x82E6\t0x509B\n0x82E7\t0x509C\n0x82E8\t0x509D\n0x82E9\t0x509E\n0x82EA\t0x509F\n0x82EB\t0x50A0\n0x82EC\t0x50A1\n0x82ED\t0x50A2\n0x82EE\t0x50A4\n0x82EF\t0x50A6\n0x82F0\t0x50AA\n0x82F1\t0x50AB\n0x82F2\t0x50AD\n0x82F3\t0x50AE\n0x82F4\t0x50AF\n0x82F5\t0x50B0\n0x82F6\t0x50B1\n0x82F7\t0x50B3\n0x82F8\t0x50B4\n0x82F9\t0x50B5\n0x82FA\t0x50B6\n0x82FB\t0x50B7\n0x82FC\t0x50B8\n0x82FD\t0x50B9\n0x82FE\t0x50BC\n0x8340\t0x50BD\n0x8341\t0x50BE\n0x8342\t0x50BF\n0x8343\t0x50C0\n0x8344\t0x50C1\n0x8345\t0x50C2\n0x8346\t0x50C3\n0x8347\t0x50C4\n0x8348\t0x50C5\n0x8349\t0x50C6\n0x834A\t0x50C7\n0x834B\t0x50C8\n0x834C\t0x50C9\n0x834D\t0x50CA\n0x834E\t0x50CB\n0x834F\t0x50CC\n0x8350\t0x50CD\n0x8351\t0x50CE\n0x8352\t0x50D0\n0x8353\t0x50D1\n0x8354\t0x50D2\n0x8355\t0x50D3\n0x8356\t0x50D4\n0x8357\t0x50D5\n0x8358\t0x50D7\n0x8359\t0x50D8\n0x835A\t0x50D9\n0x835B\t0x50DB\n0x835C\t0x50DC\n0x835D\t0x50DD\n0x835E\t0x50DE\n0x835F\t0x50DF\n0x8360\t0x50E0\n0x8361\t0x50E1\n0x8362\t0x50E2\n0x8363\t0x50E3\n0x8364\t0x50E4\n0x8365\t0x50E5\n0x8366\t0x50E8\n0x8367\t0x50E9\n0x8368\t0x50EA\n0x8369\t0x50EB\n0x836A\t0x50EF\n0x836B\t0x50F0\n0x836C\t0x50F1\n0x836D\t0x50F2\n0x836E\t0x50F4\n0x836F\t0x50F6\n0x8370\t0x50F7\n0x8371\t0x50F8\n0x8372\t0x50F9\n0x8373\t0x50FA\n0x8374\t0x50FC\n0x8375\t0x50FD\n0x8376\t0x50FE\n0x8377\t0x50FF\n0x8378\t0x5100\n0x8379\t0x5101\n0x837A\t0x5102\n0x837B\t0x5103\n0x837C\t0x5104\n0x837D\t0x5105\n0x837E\t0x5108\n0x8380\t0x5109\n0x8381\t0x510A\n0x8382\t0x510C\n0x8383\t0x510D\n0x8384\t0x510E\n0x8385\t0x510F\n0x8386\t0x5110\n0x8387\t0x5111\n0x8388\t0x5113\n0x8389\t0x5114\n0x838A\t0x5115\n0x838B\t0x5116\n0x838C\t0x5117\n0x838D\t0x5118\n0x838E\t0x5119\n0x838F\t0x511A\n0x8390\t0x511B\n0x8391\t0x511C\n0x8392\t0x511D\n0x8393\t0x511E\n0x8394\t0x511F\n0x8395\t0x5120\n0x8396\t0x5122\n0x8397\t0x5123\n0x8398\t0x5124\n0x8399\t0x5125\n0x839A\t0x5126\n0x839B\t0x5127\n0x839C\t0x5128\n0x839D\t0x5129\n0x839E\t0x512A\n0x839F\t0x512B\n0x83A0\t0x512C\n0x83A1\t0x512D\n0x83A2\t0x512E\n0x83A3\t0x512F\n0x83A4\t0x5130\n0x83A5\t0x5131\n0x83A6\t0x5132\n0x83A7\t0x5133\n0x83A8\t0x5134\n0x83A9\t0x5135\n0x83AA\t0x5136\n0x83AB\t0x5137\n0x83AC\t0x5138\n0x83AD\t0x5139\n0x83AE\t0x513A\n0x83AF\t0x513B\n0x83B0\t0x513C\n0x83B1\t0x513D\n0x83B2\t0x513E\n0x83B3\t0x5142\n0x83B4\t0x5147\n0x83B5\t0x514A\n0x83B6\t0x514C\n0x83B7\t0x514E\n0x83B8\t0x514F\n0x83B9\t0x5150\n0x83BA\t0x5152\n0x83BB\t0x5153\n0x83BC\t0x5157\n0x83BD\t0x5158\n0x83BE\t0x5159\n0x83BF\t0x515B\n0x83C0\t0x515D\n0x83C1\t0x515E\n0x83C2\t0x515F\n0x83C3\t0x5160\n0x83C4\t0x5161\n0x83C5\t0x5163\n0x83C6\t0x5164\n0x83C7\t0x5166\n0x83C8\t0x5167\n0x83C9\t0x5169\n0x83CA\t0x516A\n0x83CB\t0x516F\n0x83CC\t0x5172\n0x83CD\t0x517A\n0x83CE\t0x517E\n0x83CF\t0x517F\n0x83D0\t0x5183\n0x83D1\t0x5184\n0x83D2\t0x5186\n0x83D3\t0x5187\n0x83D4\t0x518A\n0x83D5\t0x518B\n0x83D6\t0x518E\n0x83D7\t0x518F\n0x83D8\t0x5190\n0x83D9\t0x5191\n0x83DA\t0x5193\n0x83DB\t0x5194\n0x83DC\t0x5198\n0x83DD\t0x519A\n0x83DE\t0x519D\n0x83DF\t0x519E\n0x83E0\t0x519F\n0x83E1\t0x51A1\n0x83E2\t0x51A3\n0x83E3\t0x51A6\n0x83E4\t0x51A7\n0x83E5\t0x51A8\n0x83E6\t0x51A9\n0x83E7\t0x51AA\n0x83E8\t0x51AD\n0x83E9\t0x51AE\n0x83EA\t0x51B4\n0x83EB\t0x51B8\n0x83EC\t0x51B9\n0x83ED\t0x51BA\n0x83EE\t0x51BE\n0x83EF\t0x51BF\n0x83F0\t0x51C1\n0x83F1\t0x51C2\n0x83F2\t0x51C3\n0x83F3\t0x51C5\n0x83F4\t0x51C8\n0x83F5\t0x51CA\n0x83F6\t0x51CD\n0x83F7\t0x51CE\n0x83F8\t0x51D0\n0x83F9\t0x51D2\n0x83FA\t0x51D3\n0x83FB\t0x51D4\n0x83FC\t0x51D5\n0x83FD\t0x51D6\n0x83FE\t0x51D7\n0x8440\t0x51D8\n0x8441\t0x51D9\n0x8442\t0x51DA\n0x8443\t0x51DC\n0x8444\t0x51DE\n0x8445\t0x51DF\n0x8446\t0x51E2\n0x8447\t0x51E3\n0x8448\t0x51E5\n0x8449\t0x51E6\n0x844A\t0x51E7\n0x844B\t0x51E8\n0x844C\t0x51E9\n0x844D\t0x51EA\n0x844E\t0x51EC\n0x844F\t0x51EE\n0x8450\t0x51F1\n0x8451\t0x51F2\n0x8452\t0x51F4\n0x8453\t0x51F7\n0x8454\t0x51FE\n0x8455\t0x5204\n0x8456\t0x5205\n0x8457\t0x5209\n0x8458\t0x520B\n0x8459\t0x520C\n0x845A\t0x520F\n0x845B\t0x5210\n0x845C\t0x5213\n0x845D\t0x5214\n0x845E\t0x5215\n0x845F\t0x521C\n0x8460\t0x521E\n0x8461\t0x521F\n0x8462\t0x5221\n0x8463\t0x5222\n0x8464\t0x5223\n0x8465\t0x5225\n0x8466\t0x5226\n0x8467\t0x5227\n0x8468\t0x522A\n0x8469\t0x522C\n0x846A\t0x522F\n0x846B\t0x5231\n0x846C\t0x5232\n0x846D\t0x5234\n0x846E\t0x5235\n0x846F\t0x523C\n0x8470\t0x523E\n0x8471\t0x5244\n0x8472\t0x5245\n0x8473\t0x5246\n0x8474\t0x5247\n0x8475\t0x5248\n0x8476\t0x5249\n0x8477\t0x524B\n0x8478\t0x524E\n0x8479\t0x524F\n0x847A\t0x5252\n0x847B\t0x5253\n0x847C\t0x5255\n0x847D\t0x5257\n0x847E\t0x5258\n0x8480\t0x5259\n0x8481\t0x525A\n0x8482\t0x525B\n0x8483\t0x525D\n0x8484\t0x525F\n0x8485\t0x5260\n0x8486\t0x5262\n0x8487\t0x5263\n0x8488\t0x5264\n0x8489\t0x5266\n0x848A\t0x5268\n0x848B\t0x526B\n0x848C\t0x526C\n0x848D\t0x526D\n0x848E\t0x526E\n0x848F\t0x5270\n0x8490\t0x5271\n0x8491\t0x5273\n0x8492\t0x5274\n0x8493\t0x5275\n0x8494\t0x5276\n0x8495\t0x5277\n0x8496\t0x5278\n0x8497\t0x5279\n0x8498\t0x527A\n0x8499\t0x527B\n0x849A\t0x527C\n0x849B\t0x527E\n0x849C\t0x5280\n0x849D\t0x5283\n0x849E\t0x5284\n0x849F\t0x5285\n0x84A0\t0x5286\n0x84A1\t0x5287\n0x84A2\t0x5289\n0x84A3\t0x528A\n0x84A4\t0x528B\n0x84A5\t0x528C\n0x84A6\t0x528D\n0x84A7\t0x528E\n0x84A8\t0x528F\n0x84A9\t0x5291\n0x84AA\t0x5292\n0x84AB\t0x5294\n0x84AC\t0x5295\n0x84AD\t0x5296\n0x84AE\t0x5297\n0x84AF\t0x5298\n0x84B0\t0x5299\n0x84B1\t0x529A\n0x84B2\t0x529C\n0x84B3\t0x52A4\n0x84B4\t0x52A5\n0x84B5\t0x52A6\n0x84B6\t0x52A7\n0x84B7\t0x52AE\n0x84B8\t0x52AF\n0x84B9\t0x52B0\n0x84BA\t0x52B4\n0x84BB\t0x52B5\n0x84BC\t0x52B6\n0x84BD\t0x52B7\n0x84BE\t0x52B8\n0x84BF\t0x52B9\n0x84C0\t0x52BA\n0x84C1\t0x52BB\n0x84C2\t0x52BC\n0x84C3\t0x52BD\n0x84C4\t0x52C0\n0x84C5\t0x52C1\n0x84C6\t0x52C2\n0x84C7\t0x52C4\n0x84C8\t0x52C5\n0x84C9\t0x52C6\n0x84CA\t0x52C8\n0x84CB\t0x52CA\n0x84CC\t0x52CC\n0x84CD\t0x52CD\n0x84CE\t0x52CE\n0x84CF\t0x52CF\n0x84D0\t0x52D1\n0x84D1\t0x52D3\n0x84D2\t0x52D4\n0x84D3\t0x52D5\n0x84D4\t0x52D7\n0x84D5\t0x52D9\n0x84D6\t0x52DA\n0x84D7\t0x52DB\n0x84D8\t0x52DC\n0x84D9\t0x52DD\n0x84DA\t0x52DE\n0x84DB\t0x52E0\n0x84DC\t0x52E1\n0x84DD\t0x52E2\n0x84DE\t0x52E3\n0x84DF\t0x52E5\n0x84E0\t0x52E6\n0x84E1\t0x52E7\n0x84E2\t0x52E8\n0x84E3\t0x52E9\n0x84E4\t0x52EA\n0x84E5\t0x52EB\n0x84E6\t0x52EC\n0x84E7\t0x52ED\n0x84E8\t0x52EE\n0x84E9\t0x52EF\n0x84EA\t0x52F1\n0x84EB\t0x52F2\n0x84EC\t0x52F3\n0x84ED\t0x52F4\n0x84EE\t0x52F5\n0x84EF\t0x52F6\n0x84F0\t0x52F7\n0x84F1\t0x52F8\n0x84F2\t0x52FB\n0x84F3\t0x52FC\n0x84F4\t0x52FD\n0x84F5\t0x5301\n0x84F6\t0x5302\n0x84F7\t0x5303\n0x84F8\t0x5304\n0x84F9\t0x5307\n0x84FA\t0x5309\n0x84FB\t0x530A\n0x84FC\t0x530B\n0x84FD\t0x530C\n0x84FE\t0x530E\n0x8540\t0x5311\n0x8541\t0x5312\n0x8542\t0x5313\n0x8543\t0x5314\n0x8544\t0x5318\n0x8545\t0x531B\n0x8546\t0x531C\n0x8547\t0x531E\n0x8548\t0x531F\n0x8549\t0x5322\n0x854A\t0x5324\n0x854B\t0x5325\n0x854C\t0x5327\n0x854D\t0x5328\n0x854E\t0x5329\n0x854F\t0x532B\n0x8550\t0x532C\n0x8551\t0x532D\n0x8552\t0x532F\n0x8553\t0x5330\n0x8554\t0x5331\n0x8555\t0x5332\n0x8556\t0x5333\n0x8557\t0x5334\n0x8558\t0x5335\n0x8559\t0x5336\n0x855A\t0x5337\n0x855B\t0x5338\n0x855C\t0x533C\n0x855D\t0x533D\n0x855E\t0x5340\n0x855F\t0x5342\n0x8560\t0x5344\n0x8561\t0x5346\n0x8562\t0x534B\n0x8563\t0x534C\n0x8564\t0x534D\n0x8565\t0x5350\n0x8566\t0x5354\n0x8567\t0x5358\n0x8568\t0x5359\n0x8569\t0x535B\n0x856A\t0x535D\n0x856B\t0x5365\n0x856C\t0x5368\n0x856D\t0x536A\n0x856E\t0x536C\n0x856F\t0x536D\n0x8570\t0x5372\n0x8571\t0x5376\n0x8572\t0x5379\n0x8573\t0x537B\n0x8574\t0x537C\n0x8575\t0x537D\n0x8576\t0x537E\n0x8577\t0x5380\n0x8578\t0x5381\n0x8579\t0x5383\n0x857A\t0x5387\n0x857B\t0x5388\n0x857C\t0x538A\n0x857D\t0x538E\n0x857E\t0x538F\n0x8580\t0x5390\n0x8581\t0x5391\n0x8582\t0x5392\n0x8583\t0x5393\n0x8584\t0x5394\n0x8585\t0x5396\n0x8586\t0x5397\n0x8587\t0x5399\n0x8588\t0x539B\n0x8589\t0x539C\n0x858A\t0x539E\n0x858B\t0x53A0\n0x858C\t0x53A1\n0x858D\t0x53A4\n0x858E\t0x53A7\n0x858F\t0x53AA\n0x8590\t0x53AB\n0x8591\t0x53AC\n0x8592\t0x53AD\n0x8593\t0x53AF\n0x8594\t0x53B0\n0x8595\t0x53B1\n0x8596\t0x53B2\n0x8597\t0x53B3\n0x8598\t0x53B4\n0x8599\t0x53B5\n0x859A\t0x53B7\n0x859B\t0x53B8\n0x859C\t0x53B9\n0x859D\t0x53BA\n0x859E\t0x53BC\n0x859F\t0x53BD\n0x85A0\t0x53BE\n0x85A1\t0x53C0\n0x85A2\t0x53C3\n0x85A3\t0x53C4\n0x85A4\t0x53C5\n0x85A5\t0x53C6\n0x85A6\t0x53C7\n0x85A7\t0x53CE\n0x85A8\t0x53CF\n0x85A9\t0x53D0\n0x85AA\t0x53D2\n0x85AB\t0x53D3\n0x85AC\t0x53D5\n0x85AD\t0x53DA\n0x85AE\t0x53DC\n0x85AF\t0x53DD\n0x85B0\t0x53DE\n0x85B1\t0x53E1\n0x85B2\t0x53E2\n0x85B3\t0x53E7\n0x85B4\t0x53F4\n0x85B5\t0x53FA\n0x85B6\t0x53FE\n0x85B7\t0x53FF\n0x85B8\t0x5400\n0x85B9\t0x5402\n0x85BA\t0x5405\n0x85BB\t0x5407\n0x85BC\t0x540B\n0x85BD\t0x5414\n0x85BE\t0x5418\n0x85BF\t0x5419\n0x85C0\t0x541A\n0x85C1\t0x541C\n0x85C2\t0x5422\n0x85C3\t0x5424\n0x85C4\t0x5425\n0x85C5\t0x542A\n0x85C6\t0x5430\n0x85C7\t0x5433\n0x85C8\t0x5436\n0x85C9\t0x5437\n0x85CA\t0x543A\n0x85CB\t0x543D\n0x85CC\t0x543F\n0x85CD\t0x5441\n0x85CE\t0x5442\n0x85CF\t0x5444\n0x85D0\t0x5445\n0x85D1\t0x5447\n0x85D2\t0x5449\n0x85D3\t0x544C\n0x85D4\t0x544D\n0x85D5\t0x544E\n0x85D6\t0x544F\n0x85D7\t0x5451\n0x85D8\t0x545A\n0x85D9\t0x545D\n0x85DA\t0x545E\n0x85DB\t0x545F\n0x85DC\t0x5460\n0x85DD\t0x5461\n0x85DE\t0x5463\n0x85DF\t0x5465\n0x85E0\t0x5467\n0x85E1\t0x5469\n0x85E2\t0x546A\n0x85E3\t0x546B\n0x85E4\t0x546C\n0x85E5\t0x546D\n0x85E6\t0x546E\n0x85E7\t0x546F\n0x85E8\t0x5470\n0x85E9\t0x5474\n0x85EA\t0x5479\n0x85EB\t0x547A\n0x85EC\t0x547E\n0x85ED\t0x547F\n0x85EE\t0x5481\n0x85EF\t0x5483\n0x85F0\t0x5485\n0x85F1\t0x5487\n0x85F2\t0x5488\n0x85F3\t0x5489\n0x85F4\t0x548A\n0x85F5\t0x548D\n0x85F6\t0x5491\n0x85F7\t0x5493\n0x85F8\t0x5497\n0x85F9\t0x5498\n0x85FA\t0x549C\n0x85FB\t0x549E\n0x85FC\t0x549F\n0x85FD\t0x54A0\n0x85FE\t0x54A1\n0x8640\t0x54A2\n0x8641\t0x54A5\n0x8642\t0x54AE\n0x8643\t0x54B0\n0x8644\t0x54B2\n0x8645\t0x54B5\n0x8646\t0x54B6\n0x8647\t0x54B7\n0x8648\t0x54B9\n0x8649\t0x54BA\n0x864A\t0x54BC\n0x864B\t0x54BE\n0x864C\t0x54C3\n0x864D\t0x54C5\n0x864E\t0x54CA\n0x864F\t0x54CB\n0x8650\t0x54D6\n0x8651\t0x54D8\n0x8652\t0x54DB\n0x8653\t0x54E0\n0x8654\t0x54E1\n0x8655\t0x54E2\n0x8656\t0x54E3\n0x8657\t0x54E4\n0x8658\t0x54EB\n0x8659\t0x54EC\n0x865A\t0x54EF\n0x865B\t0x54F0\n0x865C\t0x54F1\n0x865D\t0x54F4\n0x865E\t0x54F5\n0x865F\t0x54F6\n0x8660\t0x54F7\n0x8661\t0x54F8\n0x8662\t0x54F9\n0x8663\t0x54FB\n0x8664\t0x54FE\n0x8665\t0x5500\n0x8666\t0x5502\n0x8667\t0x5503\n0x8668\t0x5504\n0x8669\t0x5505\n0x866A\t0x5508\n0x866B\t0x550A\n0x866C\t0x550B\n0x866D\t0x550C\n0x866E\t0x550D\n0x866F\t0x550E\n0x8670\t0x5512\n0x8671\t0x5513\n0x8672\t0x5515\n0x8673\t0x5516\n0x8674\t0x5517\n0x8675\t0x5518\n0x8676\t0x5519\n0x8677\t0x551A\n0x8678\t0x551C\n0x8679\t0x551D\n0x867A\t0x551E\n0x867B\t0x551F\n0x867C\t0x5521\n0x867D\t0x5525\n0x867E\t0x5526\n0x8680\t0x5528\n0x8681\t0x5529\n0x8682\t0x552B\n0x8683\t0x552D\n0x8684\t0x5532\n0x8685\t0x5534\n0x8686\t0x5535\n0x8687\t0x5536\n0x8688\t0x5538\n0x8689\t0x5539\n0x868A\t0x553A\n0x868B\t0x553B\n0x868C\t0x553D\n0x868D\t0x5540\n0x868E\t0x5542\n0x868F\t0x5545\n0x8690\t0x5547\n0x8691\t0x5548\n0x8692\t0x554B\n0x8693\t0x554C\n0x8694\t0x554D\n0x8695\t0x554E\n0x8696\t0x554F\n0x8697\t0x5551\n0x8698\t0x5552\n0x8699\t0x5553\n0x869A\t0x5554\n0x869B\t0x5557\n0x869C\t0x5558\n0x869D\t0x5559\n0x869E\t0x555A\n0x869F\t0x555B\n0x86A0\t0x555D\n0x86A1\t0x555E\n0x86A2\t0x555F\n0x86A3\t0x5560\n0x86A4\t0x5562\n0x86A5\t0x5563\n0x86A6\t0x5568\n0x86A7\t0x5569\n0x86A8\t0x556B\n0x86A9\t0x556F\n0x86AA\t0x5570\n0x86AB\t0x5571\n0x86AC\t0x5572\n0x86AD\t0x5573\n0x86AE\t0x5574\n0x86AF\t0x5579\n0x86B0\t0x557A\n0x86B1\t0x557D\n0x86B2\t0x557F\n0x86B3\t0x5585\n0x86B4\t0x5586\n0x86B5\t0x558C\n0x86B6\t0x558D\n0x86B7\t0x558E\n0x86B8\t0x5590\n0x86B9\t0x5592\n0x86BA\t0x5593\n0x86BB\t0x5595\n0x86BC\t0x5596\n0x86BD\t0x5597\n0x86BE\t0x559A\n0x86BF\t0x559B\n0x86C0\t0x559E\n0x86C1\t0x55A0\n0x86C2\t0x55A1\n0x86C3\t0x55A2\n0x86C4\t0x55A3\n0x86C5\t0x55A4\n0x86C6\t0x55A5\n0x86C7\t0x55A6\n0x86C8\t0x55A8\n0x86C9\t0x55A9\n0x86CA\t0x55AA\n0x86CB\t0x55AB\n0x86CC\t0x55AC\n0x86CD\t0x55AD\n0x86CE\t0x55AE\n0x86CF\t0x55AF\n0x86D0\t0x55B0\n0x86D1\t0x55B2\n0x86D2\t0x55B4\n0x86D3\t0x55B6\n0x86D4\t0x55B8\n0x86D5\t0x55BA\n0x86D6\t0x55BC\n0x86D7\t0x55BF\n0x86D8\t0x55C0\n0x86D9\t0x55C1\n0x86DA\t0x55C2\n0x86DB\t0x55C3\n0x86DC\t0x55C6\n0x86DD\t0x55C7\n0x86DE\t0x55C8\n0x86DF\t0x55CA\n0x86E0\t0x55CB\n0x86E1\t0x55CE\n0x86E2\t0x55CF\n0x86E3\t0x55D0\n0x86E4\t0x55D5\n0x86E5\t0x55D7\n0x86E6\t0x55D8\n0x86E7\t0x55D9\n0x86E8\t0x55DA\n0x86E9\t0x55DB\n0x86EA\t0x55DE\n0x86EB\t0x55E0\n0x86EC\t0x55E2\n0x86ED\t0x55E7\n0x86EE\t0x55E9\n0x86EF\t0x55ED\n0x86F0\t0x55EE\n0x86F1\t0x55F0\n0x86F2\t0x55F1\n0x86F3\t0x55F4\n0x86F4\t0x55F6\n0x86F5\t0x55F8\n0x86F6\t0x55F9\n0x86F7\t0x55FA\n0x86F8\t0x55FB\n0x86F9\t0x55FC\n0x86FA\t0x55FF\n0x86FB\t0x5602\n0x86FC\t0x5603\n0x86FD\t0x5604\n0x86FE\t0x5605\n0x8740\t0x5606\n0x8741\t0x5607\n0x8742\t0x560A\n0x8743\t0x560B\n0x8744\t0x560D\n0x8745\t0x5610\n0x8746\t0x5611\n0x8747\t0x5612\n0x8748\t0x5613\n0x8749\t0x5614\n0x874A\t0x5615\n0x874B\t0x5616\n0x874C\t0x5617\n0x874D\t0x5619\n0x874E\t0x561A\n0x874F\t0x561C\n0x8750\t0x561D\n0x8751\t0x5620\n0x8752\t0x5621\n0x8753\t0x5622\n0x8754\t0x5625\n0x8755\t0x5626\n0x8756\t0x5628\n0x8757\t0x5629\n0x8758\t0x562A\n0x8759\t0x562B\n0x875A\t0x562E\n0x875B\t0x562F\n0x875C\t0x5630\n0x875D\t0x5633\n0x875E\t0x5635\n0x875F\t0x5637\n0x8760\t0x5638\n0x8761\t0x563A\n0x8762\t0x563C\n0x8763\t0x563D\n0x8764\t0x563E\n0x8765\t0x5640\n0x8766\t0x5641\n0x8767\t0x5642\n0x8768\t0x5643\n0x8769\t0x5644\n0x876A\t0x5645\n0x876B\t0x5646\n0x876C\t0x5647\n0x876D\t0x5648\n0x876E\t0x5649\n0x876F\t0x564A\n0x8770\t0x564B\n0x8771\t0x564F\n0x8772\t0x5650\n0x8773\t0x5651\n0x8774\t0x5652\n0x8775\t0x5653\n0x8776\t0x5655\n0x8777\t0x5656\n0x8778\t0x565A\n0x8779\t0x565B\n0x877A\t0x565D\n0x877B\t0x565E\n0x877C\t0x565F\n0x877D\t0x5660\n0x877E\t0x5661\n0x8780\t0x5663\n0x8781\t0x5665\n0x8782\t0x5666\n0x8783\t0x5667\n0x8784\t0x566D\n0x8785\t0x566E\n0x8786\t0x566F\n0x8787\t0x5670\n0x8788\t0x5672\n0x8789\t0x5673\n0x878A\t0x5674\n0x878B\t0x5675\n0x878C\t0x5677\n0x878D\t0x5678\n0x878E\t0x5679\n0x878F\t0x567A\n0x8790\t0x567D\n0x8791\t0x567E\n0x8792\t0x567F\n0x8793\t0x5680\n0x8794\t0x5681\n0x8795\t0x5682\n0x8796\t0x5683\n0x8797\t0x5684\n0x8798\t0x5687\n0x8799\t0x5688\n0x879A\t0x5689\n0x879B\t0x568A\n0x879C\t0x568B\n0x879D\t0x568C\n0x879E\t0x568D\n0x879F\t0x5690\n0x87A0\t0x5691\n0x87A1\t0x5692\n0x87A2\t0x5694\n0x87A3\t0x5695\n0x87A4\t0x5696\n0x87A5\t0x5697\n0x87A6\t0x5698\n0x87A7\t0x5699\n0x87A8\t0x569A\n0x87A9\t0x569B\n0x87AA\t0x569C\n0x87AB\t0x569D\n0x87AC\t0x569E\n0x87AD\t0x569F\n0x87AE\t0x56A0\n0x87AF\t0x56A1\n0x87B0\t0x56A2\n0x87B1\t0x56A4\n0x87B2\t0x56A5\n0x87B3\t0x56A6\n0x87B4\t0x56A7\n0x87B5\t0x56A8\n0x87B6\t0x56A9\n0x87B7\t0x56AA\n0x87B8\t0x56AB\n0x87B9\t0x56AC\n0x87BA\t0x56AD\n0x87BB\t0x56AE\n0x87BC\t0x56B0\n0x87BD\t0x56B1\n0x87BE\t0x56B2\n0x87BF\t0x56B3\n0x87C0\t0x56B4\n0x87C1\t0x56B5\n0x87C2\t0x56B6\n0x87C3\t0x56B8\n0x87C4\t0x56B9\n0x87C5\t0x56BA\n0x87C6\t0x56BB\n0x87C7\t0x56BD\n0x87C8\t0x56BE\n0x87C9\t0x56BF\n0x87CA\t0x56C0\n0x87CB\t0x56C1\n0x87CC\t0x56C2\n0x87CD\t0x56C3\n0x87CE\t0x56C4\n0x87CF\t0x56C5\n0x87D0\t0x56C6\n0x87D1\t0x56C7\n0x87D2\t0x56C8\n0x87D3\t0x56C9\n0x87D4\t0x56CB\n0x87D5\t0x56CC\n0x87D6\t0x56CD\n0x87D7\t0x56CE\n0x87D8\t0x56CF\n0x87D9\t0x56D0\n0x87DA\t0x56D1\n0x87DB\t0x56D2\n0x87DC\t0x56D3\n0x87DD\t0x56D5\n0x87DE\t0x56D6\n0x87DF\t0x56D8\n0x87E0\t0x56D9\n0x87E1\t0x56DC\n0x87E2\t0x56E3\n0x87E3\t0x56E5\n0x87E4\t0x56E6\n0x87E5\t0x56E7\n0x87E6\t0x56E8\n0x87E7\t0x56E9\n0x87E8\t0x56EA\n0x87E9\t0x56EC\n0x87EA\t0x56EE\n0x87EB\t0x56EF\n0x87EC\t0x56F2\n0x87ED\t0x56F3\n0x87EE\t0x56F6\n0x87EF\t0x56F7\n0x87F0\t0x56F8\n0x87F1\t0x56FB\n0x87F2\t0x56FC\n0x87F3\t0x5700\n0x87F4\t0x5701\n0x87F5\t0x5702\n0x87F6\t0x5705\n0x87F7\t0x5707\n0x87F8\t0x570B\n0x87F9\t0x570C\n0x87FA\t0x570D\n0x87FB\t0x570E\n0x87FC\t0x570F\n0x87FD\t0x5710\n0x87FE\t0x5711\n0x8840\t0x5712\n0x8841\t0x5713\n0x8842\t0x5714\n0x8843\t0x5715\n0x8844\t0x5716\n0x8845\t0x5717\n0x8846\t0x5718\n0x8847\t0x5719\n0x8848\t0x571A\n0x8849\t0x571B\n0x884A\t0x571D\n0x884B\t0x571E\n0x884C\t0x5720\n0x884D\t0x5721\n0x884E\t0x5722\n0x884F\t0x5724\n0x8850\t0x5725\n0x8851\t0x5726\n0x8852\t0x5727\n0x8853\t0x572B\n0x8854\t0x5731\n0x8855\t0x5732\n0x8856\t0x5734\n0x8857\t0x5735\n0x8858\t0x5736\n0x8859\t0x5737\n0x885A\t0x5738\n0x885B\t0x573C\n0x885C\t0x573D\n0x885D\t0x573F\n0x885E\t0x5741\n0x885F\t0x5743\n0x8860\t0x5744\n0x8861\t0x5745\n0x8862\t0x5746\n0x8863\t0x5748\n0x8864\t0x5749\n0x8865\t0x574B\n0x8866\t0x5752\n0x8867\t0x5753\n0x8868\t0x5754\n0x8869\t0x5755\n0x886A\t0x5756\n0x886B\t0x5758\n0x886C\t0x5759\n0x886D\t0x5762\n0x886E\t0x5763\n0x886F\t0x5765\n0x8870\t0x5767\n0x8871\t0x576C\n0x8872\t0x576E\n0x8873\t0x5770\n0x8874\t0x5771\n0x8875\t0x5772\n0x8876\t0x5774\n0x8877\t0x5775\n0x8878\t0x5778\n0x8879\t0x5779\n0x887A\t0x577A\n0x887B\t0x577D\n0x887C\t0x577E\n0x887D\t0x577F\n0x887E\t0x5780\n0x8880\t0x5781\n0x8881\t0x5787\n0x8882\t0x5788\n0x8883\t0x5789\n0x8884\t0x578A\n0x8885\t0x578D\n0x8886\t0x578E\n0x8887\t0x578F\n0x8888\t0x5790\n0x8889\t0x5791\n0x888A\t0x5794\n0x888B\t0x5795\n0x888C\t0x5796\n0x888D\t0x5797\n0x888E\t0x5798\n0x888F\t0x5799\n0x8890\t0x579A\n0x8891\t0x579C\n0x8892\t0x579D\n0x8893\t0x579E\n0x8894\t0x579F\n0x8895\t0x57A5\n0x8896\t0x57A8\n0x8897\t0x57AA\n0x8898\t0x57AC\n0x8899\t0x57AF\n0x889A\t0x57B0\n0x889B\t0x57B1\n0x889C\t0x57B3\n0x889D\t0x57B5\n0x889E\t0x57B6\n0x889F\t0x57B7\n0x88A0\t0x57B9\n0x88A1\t0x57BA\n0x88A2\t0x57BB\n0x88A3\t0x57BC\n0x88A4\t0x57BD\n0x88A5\t0x57BE\n0x88A6\t0x57BF\n0x88A7\t0x57C0\n0x88A8\t0x57C1\n0x88A9\t0x57C4\n0x88AA\t0x57C5\n0x88AB\t0x57C6\n0x88AC\t0x57C7\n0x88AD\t0x57C8\n0x88AE\t0x57C9\n0x88AF\t0x57CA\n0x88B0\t0x57CC\n0x88B1\t0x57CD\n0x88B2\t0x57D0\n0x88B3\t0x57D1\n0x88B4\t0x57D3\n0x88B5\t0x57D6\n0x88B6\t0x57D7\n0x88B7\t0x57DB\n0x88B8\t0x57DC\n0x88B9\t0x57DE\n0x88BA\t0x57E1\n0x88BB\t0x57E2\n0x88BC\t0x57E3\n0x88BD\t0x57E5\n0x88BE\t0x57E6\n0x88BF\t0x57E7\n0x88C0\t0x57E8\n0x88C1\t0x57E9\n0x88C2\t0x57EA\n0x88C3\t0x57EB\n0x88C4\t0x57EC\n0x88C5\t0x57EE\n0x88C6\t0x57F0\n0x88C7\t0x57F1\n0x88C8\t0x57F2\n0x88C9\t0x57F3\n0x88CA\t0x57F5\n0x88CB\t0x57F6\n0x88CC\t0x57F7\n0x88CD\t0x57FB\n0x88CE\t0x57FC\n0x88CF\t0x57FE\n0x88D0\t0x57FF\n0x88D1\t0x5801\n0x88D2\t0x5803\n0x88D3\t0x5804\n0x88D4\t0x5805\n0x88D5\t0x5808\n0x88D6\t0x5809\n0x88D7\t0x580A\n0x88D8\t0x580C\n0x88D9\t0x580E\n0x88DA\t0x580F\n0x88DB\t0x5810\n0x88DC\t0x5812\n0x88DD\t0x5813\n0x88DE\t0x5814\n0x88DF\t0x5816\n0x88E0\t0x5817\n0x88E1\t0x5818\n0x88E2\t0x581A\n0x88E3\t0x581B\n0x88E4\t0x581C\n0x88E5\t0x581D\n0x88E6\t0x581F\n0x88E7\t0x5822\n0x88E8\t0x5823\n0x88E9\t0x5825\n0x88EA\t0x5826\n0x88EB\t0x5827\n0x88EC\t0x5828\n0x88ED\t0x5829\n0x88EE\t0x582B\n0x88EF\t0x582C\n0x88F0\t0x582D\n0x88F1\t0x582E\n0x88F2\t0x582F\n0x88F3\t0x5831\n0x88F4\t0x5832\n0x88F5\t0x5833\n0x88F6\t0x5834\n0x88F7\t0x5836\n0x88F8\t0x5837\n0x88F9\t0x5838\n0x88FA\t0x5839\n0x88FB\t0x583A\n0x88FC\t0x583B\n0x88FD\t0x583C\n0x88FE\t0x583D\n0x8940\t0x583E\n0x8941\t0x583F\n0x8942\t0x5840\n0x8943\t0x5841\n0x8944\t0x5842\n0x8945\t0x5843\n0x8946\t0x5845\n0x8947\t0x5846\n0x8948\t0x5847\n0x8949\t0x5848\n0x894A\t0x5849\n0x894B\t0x584A\n0x894C\t0x584B\n0x894D\t0x584E\n0x894E\t0x584F\n0x894F\t0x5850\n0x8950\t0x5852\n0x8951\t0x5853\n0x8952\t0x5855\n0x8953\t0x5856\n0x8954\t0x5857\n0x8955\t0x5859\n0x8956\t0x585A\n0x8957\t0x585B\n0x8958\t0x585C\n0x8959\t0x585D\n0x895A\t0x585F\n0x895B\t0x5860\n0x895C\t0x5861\n0x895D\t0x5862\n0x895E\t0x5863\n0x895F\t0x5864\n0x8960\t0x5866\n0x8961\t0x5867\n0x8962\t0x5868\n0x8963\t0x5869\n0x8964\t0x586A\n0x8965\t0x586D\n0x8966\t0x586E\n0x8967\t0x586F\n0x8968\t0x5870\n0x8969\t0x5871\n0x896A\t0x5872\n0x896B\t0x5873\n0x896C\t0x5874\n0x896D\t0x5875\n0x896E\t0x5876\n0x896F\t0x5877\n0x8970\t0x5878\n0x8971\t0x5879\n0x8972\t0x587A\n0x8973\t0x587B\n0x8974\t0x587C\n0x8975\t0x587D\n0x8976\t0x587F\n0x8977\t0x5882\n0x8978\t0x5884\n0x8979\t0x5886\n0x897A\t0x5887\n0x897B\t0x5888\n0x897C\t0x588A\n0x897D\t0x588B\n0x897E\t0x588C\n0x8980\t0x588D\n0x8981\t0x588E\n0x8982\t0x588F\n0x8983\t0x5890\n0x8984\t0x5891\n0x8985\t0x5894\n0x8986\t0x5895\n0x8987\t0x5896\n0x8988\t0x5897\n0x8989\t0x5898\n0x898A\t0x589B\n0x898B\t0x589C\n0x898C\t0x589D\n0x898D\t0x58A0\n0x898E\t0x58A1\n0x898F\t0x58A2\n0x8990\t0x58A3\n0x8991\t0x58A4\n0x8992\t0x58A5\n0x8993\t0x58A6\n0x8994\t0x58A7\n0x8995\t0x58AA\n0x8996\t0x58AB\n0x8997\t0x58AC\n0x8998\t0x58AD\n0x8999\t0x58AE\n0x899A\t0x58AF\n0x899B\t0x58B0\n0x899C\t0x58B1\n0x899D\t0x58B2\n0x899E\t0x58B3\n0x899F\t0x58B4\n0x89A0\t0x58B5\n0x89A1\t0x58B6\n0x89A2\t0x58B7\n0x89A3\t0x58B8\n0x89A4\t0x58B9\n0x89A5\t0x58BA\n0x89A6\t0x58BB\n0x89A7\t0x58BD\n0x89A8\t0x58BE\n0x89A9\t0x58BF\n0x89AA\t0x58C0\n0x89AB\t0x58C2\n0x89AC\t0x58C3\n0x89AD\t0x58C4\n0x89AE\t0x58C6\n0x89AF\t0x58C7\n0x89B0\t0x58C8\n0x89B1\t0x58C9\n0x89B2\t0x58CA\n0x89B3\t0x58CB\n0x89B4\t0x58CC\n0x89B5\t0x58CD\n0x89B6\t0x58CE\n0x89B7\t0x58CF\n0x89B8\t0x58D0\n0x89B9\t0x58D2\n0x89BA\t0x58D3\n0x89BB\t0x58D4\n0x89BC\t0x58D6\n0x89BD\t0x58D7\n0x89BE\t0x58D8\n0x89BF\t0x58D9\n0x89C0\t0x58DA\n0x89C1\t0x58DB\n0x89C2\t0x58DC\n0x89C3\t0x58DD\n0x89C4\t0x58DE\n0x89C5\t0x58DF\n0x89C6\t0x58E0\n0x89C7\t0x58E1\n0x89C8\t0x58E2\n0x89C9\t0x58E3\n0x89CA\t0x58E5\n0x89CB\t0x58E6\n0x89CC\t0x58E7\n0x89CD\t0x58E8\n0x89CE\t0x58E9\n0x89CF\t0x58EA\n0x89D0\t0x58ED\n0x89D1\t0x58EF\n0x89D2\t0x58F1\n0x89D3\t0x58F2\n0x89D4\t0x58F4\n0x89D5\t0x58F5\n0x89D6\t0x58F7\n0x89D7\t0x58F8\n0x89D8\t0x58FA\n0x89D9\t0x58FB\n0x89DA\t0x58FC\n0x89DB\t0x58FD\n0x89DC\t0x58FE\n0x89DD\t0x58FF\n0x89DE\t0x5900\n0x89DF\t0x5901\n0x89E0\t0x5903\n0x89E1\t0x5905\n0x89E2\t0x5906\n0x89E3\t0x5908\n0x89E4\t0x5909\n0x89E5\t0x590A\n0x89E6\t0x590B\n0x89E7\t0x590C\n0x89E8\t0x590E\n0x89E9\t0x5910\n0x89EA\t0x5911\n0x89EB\t0x5912\n0x89EC\t0x5913\n0x89ED\t0x5917\n0x89EE\t0x5918\n0x89EF\t0x591B\n0x89F0\t0x591D\n0x89F1\t0x591E\n0x89F2\t0x5920\n0x89F3\t0x5921\n0x89F4\t0x5922\n0x89F5\t0x5923\n0x89F6\t0x5926\n0x89F7\t0x5928\n0x89F8\t0x592C\n0x89F9\t0x5930\n0x89FA\t0x5932\n0x89FB\t0x5933\n0x89FC\t0x5935\n0x89FD\t0x5936\n0x89FE\t0x593B\n0x8A40\t0x593D\n0x8A41\t0x593E\n0x8A42\t0x593F\n0x8A43\t0x5940\n0x8A44\t0x5943\n0x8A45\t0x5945\n0x8A46\t0x5946\n0x8A47\t0x594A\n0x8A48\t0x594C\n0x8A49\t0x594D\n0x8A4A\t0x5950\n0x8A4B\t0x5952\n0x8A4C\t0x5953\n0x8A4D\t0x5959\n0x8A4E\t0x595B\n0x8A4F\t0x595C\n0x8A50\t0x595D\n0x8A51\t0x595E\n0x8A52\t0x595F\n0x8A53\t0x5961\n0x8A54\t0x5963\n0x8A55\t0x5964\n0x8A56\t0x5966\n0x8A57\t0x5967\n0x8A58\t0x5968\n0x8A59\t0x5969\n0x8A5A\t0x596A\n0x8A5B\t0x596B\n0x8A5C\t0x596C\n0x8A5D\t0x596D\n0x8A5E\t0x596E\n0x8A5F\t0x596F\n0x8A60\t0x5970\n0x8A61\t0x5971\n0x8A62\t0x5972\n0x8A63\t0x5975\n0x8A64\t0x5977\n0x8A65\t0x597A\n0x8A66\t0x597B\n0x8A67\t0x597C\n0x8A68\t0x597E\n0x8A69\t0x597F\n0x8A6A\t0x5980\n0x8A6B\t0x5985\n0x8A6C\t0x5989\n0x8A6D\t0x598B\n0x8A6E\t0x598C\n0x8A6F\t0x598E\n0x8A70\t0x598F\n0x8A71\t0x5990\n0x8A72\t0x5991\n0x8A73\t0x5994\n0x8A74\t0x5995\n0x8A75\t0x5998\n0x8A76\t0x599A\n0x8A77\t0x599B\n0x8A78\t0x599C\n0x8A79\t0x599D\n0x8A7A\t0x599F\n0x8A7B\t0x59A0\n0x8A7C\t0x59A1\n0x8A7D\t0x59A2\n0x8A7E\t0x59A6\n0x8A80\t0x59A7\n0x8A81\t0x59AC\n0x8A82\t0x59AD\n0x8A83\t0x59B0\n0x8A84\t0x59B1\n0x8A85\t0x59B3\n0x8A86\t0x59B4\n0x8A87\t0x59B5\n0x8A88\t0x59B6\n0x8A89\t0x59B7\n0x8A8A\t0x59B8\n0x8A8B\t0x59BA\n0x8A8C\t0x59BC\n0x8A8D\t0x59BD\n0x8A8E\t0x59BF\n0x8A8F\t0x59C0\n0x8A90\t0x59C1\n0x8A91\t0x59C2\n0x8A92\t0x59C3\n0x8A93\t0x59C4\n0x8A94\t0x59C5\n0x8A95\t0x59C7\n0x8A96\t0x59C8\n0x8A97\t0x59C9\n0x8A98\t0x59CC\n0x8A99\t0x59CD\n0x8A9A\t0x59CE\n0x8A9B\t0x59CF\n0x8A9C\t0x59D5\n0x8A9D\t0x59D6\n0x8A9E\t0x59D9\n0x8A9F\t0x59DB\n0x8AA0\t0x59DE\n0x8AA1\t0x59DF\n0x8AA2\t0x59E0\n0x8AA3\t0x59E1\n0x8AA4\t0x59E2\n0x8AA5\t0x59E4\n0x8AA6\t0x59E6\n0x8AA7\t0x59E7\n0x8AA8\t0x59E9\n0x8AA9\t0x59EA\n0x8AAA\t0x59EB\n0x8AAB\t0x59ED\n0x8AAC\t0x59EE\n0x8AAD\t0x59EF\n0x8AAE\t0x59F0\n0x8AAF\t0x59F1\n0x8AB0\t0x59F2\n0x8AB1\t0x59F3\n0x8AB2\t0x59F4\n0x8AB3\t0x59F5\n0x8AB4\t0x59F6\n0x8AB5\t0x59F7\n0x8AB6\t0x59F8\n0x8AB7\t0x59FA\n0x8AB8\t0x59FC\n0x8AB9\t0x59FD\n0x8ABA\t0x59FE\n0x8ABB\t0x5A00\n0x8ABC\t0x5A02\n0x8ABD\t0x5A0A\n0x8ABE\t0x5A0B\n0x8ABF\t0x5A0D\n0x8AC0\t0x5A0E\n0x8AC1\t0x5A0F\n0x8AC2\t0x5A10\n0x8AC3\t0x5A12\n0x8AC4\t0x5A14\n0x8AC5\t0x5A15\n0x8AC6\t0x5A16\n0x8AC7\t0x5A17\n0x8AC8\t0x5A19\n0x8AC9\t0x5A1A\n0x8ACA\t0x5A1B\n0x8ACB\t0x5A1D\n0x8ACC\t0x5A1E\n0x8ACD\t0x5A21\n0x8ACE\t0x5A22\n0x8ACF\t0x5A24\n0x8AD0\t0x5A26\n0x8AD1\t0x5A27\n0x8AD2\t0x5A28\n0x8AD3\t0x5A2A\n0x8AD4\t0x5A2B\n0x8AD5\t0x5A2C\n0x8AD6\t0x5A2D\n0x8AD7\t0x5A2E\n0x8AD8\t0x5A2F\n0x8AD9\t0x5A30\n0x8ADA\t0x5A33\n0x8ADB\t0x5A35\n0x8ADC\t0x5A37\n0x8ADD\t0x5A38\n0x8ADE\t0x5A39\n0x8ADF\t0x5A3A\n0x8AE0\t0x5A3B\n0x8AE1\t0x5A3D\n0x8AE2\t0x5A3E\n0x8AE3\t0x5A3F\n0x8AE4\t0x5A41\n0x8AE5\t0x5A42\n0x8AE6\t0x5A43\n0x8AE7\t0x5A44\n0x8AE8\t0x5A45\n0x8AE9\t0x5A47\n0x8AEA\t0x5A48\n0x8AEB\t0x5A4B\n0x8AEC\t0x5A4C\n0x8AED\t0x5A4D\n0x8AEE\t0x5A4E\n0x8AEF\t0x5A4F\n0x8AF0\t0x5A50\n0x8AF1\t0x5A51\n0x8AF2\t0x5A52\n0x8AF3\t0x5A53\n0x8AF4\t0x5A54\n0x8AF5\t0x5A56\n0x8AF6\t0x5A57\n0x8AF7\t0x5A58\n0x8AF8\t0x5A59\n0x8AF9\t0x5A5B\n0x8AFA\t0x5A5C\n0x8AFB\t0x5A5D\n0x8AFC\t0x5A5E\n0x8AFD\t0x5A5F\n0x8AFE\t0x5A60\n0x8B40\t0x5A61\n0x8B41\t0x5A63\n0x8B42\t0x5A64\n0x8B43\t0x5A65\n0x8B44\t0x5A66\n0x8B45\t0x5A68\n0x8B46\t0x5A69\n0x8B47\t0x5A6B\n0x8B48\t0x5A6C\n0x8B49\t0x5A6D\n0x8B4A\t0x5A6E\n0x8B4B\t0x5A6F\n0x8B4C\t0x5A70\n0x8B4D\t0x5A71\n0x8B4E\t0x5A72\n0x8B4F\t0x5A73\n0x8B50\t0x5A78\n0x8B51\t0x5A79\n0x8B52\t0x5A7B\n0x8B53\t0x5A7C\n0x8B54\t0x5A7D\n0x8B55\t0x5A7E\n0x8B56\t0x5A80\n0x8B57\t0x5A81\n0x8B58\t0x5A82\n0x8B59\t0x5A83\n0x8B5A\t0x5A84\n0x8B5B\t0x5A85\n0x8B5C\t0x5A86\n0x8B5D\t0x5A87\n0x8B5E\t0x5A88\n0x8B5F\t0x5A89\n0x8B60\t0x5A8A\n0x8B61\t0x5A8B\n0x8B62\t0x5A8C\n0x8B63\t0x5A8D\n0x8B64\t0x5A8E\n0x8B65\t0x5A8F\n0x8B66\t0x5A90\n0x8B67\t0x5A91\n0x8B68\t0x5A93\n0x8B69\t0x5A94\n0x8B6A\t0x5A95\n0x8B6B\t0x5A96\n0x8B6C\t0x5A97\n0x8B6D\t0x5A98\n0x8B6E\t0x5A99\n0x8B6F\t0x5A9C\n0x8B70\t0x5A9D\n0x8B71\t0x5A9E\n0x8B72\t0x5A9F\n0x8B73\t0x5AA0\n0x8B74\t0x5AA1\n0x8B75\t0x5AA2\n0x8B76\t0x5AA3\n0x8B77\t0x5AA4\n0x8B78\t0x5AA5\n0x8B79\t0x5AA6\n0x8B7A\t0x5AA7\n0x8B7B\t0x5AA8\n0x8B7C\t0x5AA9\n0x8B7D\t0x5AAB\n0x8B7E\t0x5AAC\n0x8B80\t0x5AAD\n0x8B81\t0x5AAE\n0x8B82\t0x5AAF\n0x8B83\t0x5AB0\n0x8B84\t0x5AB1\n0x8B85\t0x5AB4\n0x8B86\t0x5AB6\n0x8B87\t0x5AB7\n0x8B88\t0x5AB9\n0x8B89\t0x5ABA\n0x8B8A\t0x5ABB\n0x8B8B\t0x5ABC\n0x8B8C\t0x5ABD\n0x8B8D\t0x5ABF\n0x8B8E\t0x5AC0\n0x8B8F\t0x5AC3\n0x8B90\t0x5AC4\n0x8B91\t0x5AC5\n0x8B92\t0x5AC6\n0x8B93\t0x5AC7\n0x8B94\t0x5AC8\n0x8B95\t0x5ACA\n0x8B96\t0x5ACB\n0x8B97\t0x5ACD\n0x8B98\t0x5ACE\n0x8B99\t0x5ACF\n0x8B9A\t0x5AD0\n0x8B9B\t0x5AD1\n0x8B9C\t0x5AD3\n0x8B9D\t0x5AD5\n0x8B9E\t0x5AD7\n0x8B9F\t0x5AD9\n0x8BA0\t0x5ADA\n0x8BA1\t0x5ADB\n0x8BA2\t0x5ADD\n0x8BA3\t0x5ADE\n0x8BA4\t0x5ADF\n0x8BA5\t0x5AE2\n0x8BA6\t0x5AE4\n0x8BA7\t0x5AE5\n0x8BA8\t0x5AE7\n0x8BA9\t0x5AE8\n0x8BAA\t0x5AEA\n0x8BAB\t0x5AEC\n0x8BAC\t0x5AED\n0x8BAD\t0x5AEE\n0x8BAE\t0x5AEF\n0x8BAF\t0x5AF0\n0x8BB0\t0x5AF2\n0x8BB1\t0x5AF3\n0x8BB2\t0x5AF4\n0x8BB3\t0x5AF5\n0x8BB4\t0x5AF6\n0x8BB5\t0x5AF7\n0x8BB6\t0x5AF8\n0x8BB7\t0x5AF9\n0x8BB8\t0x5AFA\n0x8BB9\t0x5AFB\n0x8BBA\t0x5AFC\n0x8BBB\t0x5AFD\n0x8BBC\t0x5AFE\n0x8BBD\t0x5AFF\n0x8BBE\t0x5B00\n0x8BBF\t0x5B01\n0x8BC0\t0x5B02\n0x8BC1\t0x5B03\n0x8BC2\t0x5B04\n0x8BC3\t0x5B05\n0x8BC4\t0x5B06\n0x8BC5\t0x5B07\n0x8BC6\t0x5B08\n0x8BC7\t0x5B0A\n0x8BC8\t0x5B0B\n0x8BC9\t0x5B0C\n0x8BCA\t0x5B0D\n0x8BCB\t0x5B0E\n0x8BCC\t0x5B0F\n0x8BCD\t0x5B10\n0x8BCE\t0x5B11\n0x8BCF\t0x5B12\n0x8BD0\t0x5B13\n0x8BD1\t0x5B14\n0x8BD2\t0x5B15\n0x8BD3\t0x5B18\n0x8BD4\t0x5B19\n0x8BD5\t0x5B1A\n0x8BD6\t0x5B1B\n0x8BD7\t0x5B1C\n0x8BD8\t0x5B1D\n0x8BD9\t0x5B1E\n0x8BDA\t0x5B1F\n0x8BDB\t0x5B20\n0x8BDC\t0x5B21\n0x8BDD\t0x5B22\n0x8BDE\t0x5B23\n0x8BDF\t0x5B24\n0x8BE0\t0x5B25\n0x8BE1\t0x5B26\n0x8BE2\t0x5B27\n0x8BE3\t0x5B28\n0x8BE4\t0x5B29\n0x8BE5\t0x5B2A\n0x8BE6\t0x5B2B\n0x8BE7\t0x5B2C\n0x8BE8\t0x5B2D\n0x8BE9\t0x5B2E\n0x8BEA\t0x5B2F\n0x8BEB\t0x5B30\n0x8BEC\t0x5B31\n0x8BED\t0x5B33\n0x8BEE\t0x5B35\n0x8BEF\t0x5B36\n0x8BF0\t0x5B38\n0x8BF1\t0x5B39\n0x8BF2\t0x5B3A\n0x8BF3\t0x5B3B\n0x8BF4\t0x5B3C\n0x8BF5\t0x5B3D\n0x8BF6\t0x5B3E\n0x8BF7\t0x5B3F\n0x8BF8\t0x5B41\n0x8BF9\t0x5B42\n0x8BFA\t0x5B43\n0x8BFB\t0x5B44\n0x8BFC\t0x5B45\n0x8BFD\t0x5B46\n0x8BFE\t0x5B47\n0x8C40\t0x5B48\n0x8C41\t0x5B49\n0x8C42\t0x5B4A\n0x8C43\t0x5B4B\n0x8C44\t0x5B4C\n0x8C45\t0x5B4D\n0x8C46\t0x5B4E\n0x8C47\t0x5B4F\n0x8C48\t0x5B52\n0x8C49\t0x5B56\n0x8C4A\t0x5B5E\n0x8C4B\t0x5B60\n0x8C4C\t0x5B61\n0x8C4D\t0x5B67\n0x8C4E\t0x5B68\n0x8C4F\t0x5B6B\n0x8C50\t0x5B6D\n0x8C51\t0x5B6E\n0x8C52\t0x5B6F\n0x8C53\t0x5B72\n0x8C54\t0x5B74\n0x8C55\t0x5B76\n0x8C56\t0x5B77\n0x8C57\t0x5B78\n0x8C58\t0x5B79\n0x8C59\t0x5B7B\n0x8C5A\t0x5B7C\n0x8C5B\t0x5B7E\n0x8C5C\t0x5B7F\n0x8C5D\t0x5B82\n0x8C5E\t0x5B86\n0x8C5F\t0x5B8A\n0x8C60\t0x5B8D\n0x8C61\t0x5B8E\n0x8C62\t0x5B90\n0x8C63\t0x5B91\n0x8C64\t0x5B92\n0x8C65\t0x5B94\n0x8C66\t0x5B96\n0x8C67\t0x5B9F\n0x8C68\t0x5BA7\n0x8C69\t0x5BA8\n0x8C6A\t0x5BA9\n0x8C6B\t0x5BAC\n0x8C6C\t0x5BAD\n0x8C6D\t0x5BAE\n0x8C6E\t0x5BAF\n0x8C6F\t0x5BB1\n0x8C70\t0x5BB2\n0x8C71\t0x5BB7\n0x8C72\t0x5BBA\n0x8C73\t0x5BBB\n0x8C74\t0x5BBC\n0x8C75\t0x5BC0\n0x8C76\t0x5BC1\n0x8C77\t0x5BC3\n0x8C78\t0x5BC8\n0x8C79\t0x5BC9\n0x8C7A\t0x5BCA\n0x8C7B\t0x5BCB\n0x8C7C\t0x5BCD\n0x8C7D\t0x5BCE\n0x8C7E\t0x5BCF\n0x8C80\t0x5BD1\n0x8C81\t0x5BD4\n0x8C82\t0x5BD5\n0x8C83\t0x5BD6\n0x8C84\t0x5BD7\n0x8C85\t0x5BD8\n0x8C86\t0x5BD9\n0x8C87\t0x5BDA\n0x8C88\t0x5BDB\n0x8C89\t0x5BDC\n0x8C8A\t0x5BE0\n0x8C8B\t0x5BE2\n0x8C8C\t0x5BE3\n0x8C8D\t0x5BE6\n0x8C8E\t0x5BE7\n0x8C8F\t0x5BE9\n0x8C90\t0x5BEA\n0x8C91\t0x5BEB\n0x8C92\t0x5BEC\n0x8C93\t0x5BED\n0x8C94\t0x5BEF\n0x8C95\t0x5BF1\n0x8C96\t0x5BF2\n0x8C97\t0x5BF3\n0x8C98\t0x5BF4\n0x8C99\t0x5BF5\n0x8C9A\t0x5BF6\n0x8C9B\t0x5BF7\n0x8C9C\t0x5BFD\n0x8C9D\t0x5BFE\n0x8C9E\t0x5C00\n0x8C9F\t0x5C02\n0x8CA0\t0x5C03\n0x8CA1\t0x5C05\n0x8CA2\t0x5C07\n0x8CA3\t0x5C08\n0x8CA4\t0x5C0B\n0x8CA5\t0x5C0C\n0x8CA6\t0x5C0D\n0x8CA7\t0x5C0E\n0x8CA8\t0x5C10\n0x8CA9\t0x5C12\n0x8CAA\t0x5C13\n0x8CAB\t0x5C17\n0x8CAC\t0x5C19\n0x8CAD\t0x5C1B\n0x8CAE\t0x5C1E\n0x8CAF\t0x5C1F\n0x8CB0\t0x5C20\n0x8CB1\t0x5C21\n0x8CB2\t0x5C23\n0x8CB3\t0x5C26\n0x8CB4\t0x5C28\n0x8CB5\t0x5C29\n0x8CB6\t0x5C2A\n0x8CB7\t0x5C2B\n0x8CB8\t0x5C2D\n0x8CB9\t0x5C2E\n0x8CBA\t0x5C2F\n0x8CBB\t0x5C30\n0x8CBC\t0x5C32\n0x8CBD\t0x5C33\n0x8CBE\t0x5C35\n0x8CBF\t0x5C36\n0x8CC0\t0x5C37\n0x8CC1\t0x5C43\n0x8CC2\t0x5C44\n0x8CC3\t0x5C46\n0x8CC4\t0x5C47\n0x8CC5\t0x5C4C\n0x8CC6\t0x5C4D\n0x8CC7\t0x5C52\n0x8CC8\t0x5C53\n0x8CC9\t0x5C54\n0x8CCA\t0x5C56\n0x8CCB\t0x5C57\n0x8CCC\t0x5C58\n0x8CCD\t0x5C5A\n0x8CCE\t0x5C5B\n0x8CCF\t0x5C5C\n0x8CD0\t0x5C5D\n0x8CD1\t0x5C5F\n0x8CD2\t0x5C62\n0x8CD3\t0x5C64\n0x8CD4\t0x5C67\n0x8CD5\t0x5C68\n0x8CD6\t0x5C69\n0x8CD7\t0x5C6A\n0x8CD8\t0x5C6B\n0x8CD9\t0x5C6C\n0x8CDA\t0x5C6D\n0x8CDB\t0x5C70\n0x8CDC\t0x5C72\n0x8CDD\t0x5C73\n0x8CDE\t0x5C74\n0x8CDF\t0x5C75\n0x8CE0\t0x5C76\n0x8CE1\t0x5C77\n0x8CE2\t0x5C78\n0x8CE3\t0x5C7B\n0x8CE4\t0x5C7C\n0x8CE5\t0x5C7D\n0x8CE6\t0x5C7E\n0x8CE7\t0x5C80\n0x8CE8\t0x5C83\n0x8CE9\t0x5C84\n0x8CEA\t0x5C85\n0x8CEB\t0x5C86\n0x8CEC\t0x5C87\n0x8CED\t0x5C89\n0x8CEE\t0x5C8A\n0x8CEF\t0x5C8B\n0x8CF0\t0x5C8E\n0x8CF1\t0x5C8F\n0x8CF2\t0x5C92\n0x8CF3\t0x5C93\n0x8CF4\t0x5C95\n0x8CF5\t0x5C9D\n0x8CF6\t0x5C9E\n0x8CF7\t0x5C9F\n0x8CF8\t0x5CA0\n0x8CF9\t0x5CA1\n0x8CFA\t0x5CA4\n0x8CFB\t0x5CA5\n0x8CFC\t0x5CA6\n0x8CFD\t0x5CA7\n0x8CFE\t0x5CA8\n0x8D40\t0x5CAA\n0x8D41\t0x5CAE\n0x8D42\t0x5CAF\n0x8D43\t0x5CB0\n0x8D44\t0x5CB2\n0x8D45\t0x5CB4\n0x8D46\t0x5CB6\n0x8D47\t0x5CB9\n0x8D48\t0x5CBA\n0x8D49\t0x5CBB\n0x8D4A\t0x5CBC\n0x8D4B\t0x5CBE\n0x8D4C\t0x5CC0\n0x8D4D\t0x5CC2\n0x8D4E\t0x5CC3\n0x8D4F\t0x5CC5\n0x8D50\t0x5CC6\n0x8D51\t0x5CC7\n0x8D52\t0x5CC8\n0x8D53\t0x5CC9\n0x8D54\t0x5CCA\n0x8D55\t0x5CCC\n0x8D56\t0x5CCD\n0x8D57\t0x5CCE\n0x8D58\t0x5CCF\n0x8D59\t0x5CD0\n0x8D5A\t0x5CD1\n0x8D5B\t0x5CD3\n0x8D5C\t0x5CD4\n0x8D5D\t0x5CD5\n0x8D5E\t0x5CD6\n0x8D5F\t0x5CD7\n0x8D60\t0x5CD8\n0x8D61\t0x5CDA\n0x8D62\t0x5CDB\n0x8D63\t0x5CDC\n0x8D64\t0x5CDD\n0x8D65\t0x5CDE\n0x8D66\t0x5CDF\n0x8D67\t0x5CE0\n0x8D68\t0x5CE2\n0x8D69\t0x5CE3\n0x8D6A\t0x5CE7\n0x8D6B\t0x5CE9\n0x8D6C\t0x5CEB\n0x8D6D\t0x5CEC\n0x8D6E\t0x5CEE\n0x8D6F\t0x5CEF\n0x8D70\t0x5CF1\n0x8D71\t0x5CF2\n0x8D72\t0x5CF3\n0x8D73\t0x5CF4\n0x8D74\t0x5CF5\n0x8D75\t0x5CF6\n0x8D76\t0x5CF7\n0x8D77\t0x5CF8\n0x8D78\t0x5CF9\n0x8D79\t0x5CFA\n0x8D7A\t0x5CFC\n0x8D7B\t0x5CFD\n0x8D7C\t0x5CFE\n0x8D7D\t0x5CFF\n0x8D7E\t0x5D00\n0x8D80\t0x5D01\n0x8D81\t0x5D04\n0x8D82\t0x5D05\n0x8D83\t0x5D08\n0x8D84\t0x5D09\n0x8D85\t0x5D0A\n0x8D86\t0x5D0B\n0x8D87\t0x5D0C\n0x8D88\t0x5D0D\n0x8D89\t0x5D0F\n0x8D8A\t0x5D10\n0x8D8B\t0x5D11\n0x8D8C\t0x5D12\n0x8D8D\t0x5D13\n0x8D8E\t0x5D15\n0x8D8F\t0x5D17\n0x8D90\t0x5D18\n0x8D91\t0x5D19\n0x8D92\t0x5D1A\n0x8D93\t0x5D1C\n0x8D94\t0x5D1D\n0x8D95\t0x5D1F\n0x8D96\t0x5D20\n0x8D97\t0x5D21\n0x8D98\t0x5D22\n0x8D99\t0x5D23\n0x8D9A\t0x5D25\n0x8D9B\t0x5D28\n0x8D9C\t0x5D2A\n0x8D9D\t0x5D2B\n0x8D9E\t0x5D2C\n0x8D9F\t0x5D2F\n0x8DA0\t0x5D30\n0x8DA1\t0x5D31\n0x8DA2\t0x5D32\n0x8DA3\t0x5D33\n0x8DA4\t0x5D35\n0x8DA5\t0x5D36\n0x8DA6\t0x5D37\n0x8DA7\t0x5D38\n0x8DA8\t0x5D39\n0x8DA9\t0x5D3A\n0x8DAA\t0x5D3B\n0x8DAB\t0x5D3C\n0x8DAC\t0x5D3F\n0x8DAD\t0x5D40\n0x8DAE\t0x5D41\n0x8DAF\t0x5D42\n0x8DB0\t0x5D43\n0x8DB1\t0x5D44\n0x8DB2\t0x5D45\n0x8DB3\t0x5D46\n0x8DB4\t0x5D48\n0x8DB5\t0x5D49\n0x8DB6\t0x5D4D\n0x8DB7\t0x5D4E\n0x8DB8\t0x5D4F\n0x8DB9\t0x5D50\n0x8DBA\t0x5D51\n0x8DBB\t0x5D52\n0x8DBC\t0x5D53\n0x8DBD\t0x5D54\n0x8DBE\t0x5D55\n0x8DBF\t0x5D56\n0x8DC0\t0x5D57\n0x8DC1\t0x5D59\n0x8DC2\t0x5D5A\n0x8DC3\t0x5D5C\n0x8DC4\t0x5D5E\n0x8DC5\t0x5D5F\n0x8DC6\t0x5D60\n0x8DC7\t0x5D61\n0x8DC8\t0x5D62\n0x8DC9\t0x5D63\n0x8DCA\t0x5D64\n0x8DCB\t0x5D65\n0x8DCC\t0x5D66\n0x8DCD\t0x5D67\n0x8DCE\t0x5D68\n0x8DCF\t0x5D6A\n0x8DD0\t0x5D6D\n0x8DD1\t0x5D6E\n0x8DD2\t0x5D70\n0x8DD3\t0x5D71\n0x8DD4\t0x5D72\n0x8DD5\t0x5D73\n0x8DD6\t0x5D75\n0x8DD7\t0x5D76\n0x8DD8\t0x5D77\n0x8DD9\t0x5D78\n0x8DDA\t0x5D79\n0x8DDB\t0x5D7A\n0x8DDC\t0x5D7B\n0x8DDD\t0x5D7C\n0x8DDE\t0x5D7D\n0x8DDF\t0x5D7E\n0x8DE0\t0x5D7F\n0x8DE1\t0x5D80\n0x8DE2\t0x5D81\n0x8DE3\t0x5D83\n0x8DE4\t0x5D84\n0x8DE5\t0x5D85\n0x8DE6\t0x5D86\n0x8DE7\t0x5D87\n0x8DE8\t0x5D88\n0x8DE9\t0x5D89\n0x8DEA\t0x5D8A\n0x8DEB\t0x5D8B\n0x8DEC\t0x5D8C\n0x8DED\t0x5D8D\n0x8DEE\t0x5D8E\n0x8DEF\t0x5D8F\n0x8DF0\t0x5D90\n0x8DF1\t0x5D91\n0x8DF2\t0x5D92\n0x8DF3\t0x5D93\n0x8DF4\t0x5D94\n0x8DF5\t0x5D95\n0x8DF6\t0x5D96\n0x8DF7\t0x5D97\n0x8DF8\t0x5D98\n0x8DF9\t0x5D9A\n0x8DFA\t0x5D9B\n0x8DFB\t0x5D9C\n0x8DFC\t0x5D9E\n0x8DFD\t0x5D9F\n0x8DFE\t0x5DA0\n0x8E40\t0x5DA1\n0x8E41\t0x5DA2\n0x8E42\t0x5DA3\n0x8E43\t0x5DA4\n0x8E44\t0x5DA5\n0x8E45\t0x5DA6\n0x8E46\t0x5DA7\n0x8E47\t0x5DA8\n0x8E48\t0x5DA9\n0x8E49\t0x5DAA\n0x8E4A\t0x5DAB\n0x8E4B\t0x5DAC\n0x8E4C\t0x5DAD\n0x8E4D\t0x5DAE\n0x8E4E\t0x5DAF\n0x8E4F\t0x5DB0\n0x8E50\t0x5DB1\n0x8E51\t0x5DB2\n0x8E52\t0x5DB3\n0x8E53\t0x5DB4\n0x8E54\t0x5DB5\n0x8E55\t0x5DB6\n0x8E56\t0x5DB8\n0x8E57\t0x5DB9\n0x8E58\t0x5DBA\n0x8E59\t0x5DBB\n0x8E5A\t0x5DBC\n0x8E5B\t0x5DBD\n0x8E5C\t0x5DBE\n0x8E5D\t0x5DBF\n0x8E5E\t0x5DC0\n0x8E5F\t0x5DC1\n0x8E60\t0x5DC2\n0x8E61\t0x5DC3\n0x8E62\t0x5DC4\n0x8E63\t0x5DC6\n0x8E64\t0x5DC7\n0x8E65\t0x5DC8\n0x8E66\t0x5DC9\n0x8E67\t0x5DCA\n0x8E68\t0x5DCB\n0x8E69\t0x5DCC\n0x8E6A\t0x5DCE\n0x8E6B\t0x5DCF\n0x8E6C\t0x5DD0\n0x8E6D\t0x5DD1\n0x8E6E\t0x5DD2\n0x8E6F\t0x5DD3\n0x8E70\t0x5DD4\n0x8E71\t0x5DD5\n0x8E72\t0x5DD6\n0x8E73\t0x5DD7\n0x8E74\t0x5DD8\n0x8E75\t0x5DD9\n0x8E76\t0x5DDA\n0x8E77\t0x5DDC\n0x8E78\t0x5DDF\n0x8E79\t0x5DE0\n0x8E7A\t0x5DE3\n0x8E7B\t0x5DE4\n0x8E7C\t0x5DEA\n0x8E7D\t0x5DEC\n0x8E7E\t0x5DED\n0x8E80\t0x5DF0\n0x8E81\t0x5DF5\n0x8E82\t0x5DF6\n0x8E83\t0x5DF8\n0x8E84\t0x5DF9\n0x8E85\t0x5DFA\n0x8E86\t0x5DFB\n0x8E87\t0x5DFC\n0x8E88\t0x5DFF\n0x8E89\t0x5E00\n0x8E8A\t0x5E04\n0x8E8B\t0x5E07\n0x8E8C\t0x5E09\n0x8E8D\t0x5E0A\n0x8E8E\t0x5E0B\n0x8E8F\t0x5E0D\n0x8E90\t0x5E0E\n0x8E91\t0x5E12\n0x8E92\t0x5E13\n0x8E93\t0x5E17\n0x8E94\t0x5E1E\n0x8E95\t0x5E1F\n0x8E96\t0x5E20\n0x8E97\t0x5E21\n0x8E98\t0x5E22\n0x8E99\t0x5E23\n0x8E9A\t0x5E24\n0x8E9B\t0x5E25\n0x8E9C\t0x5E28\n0x8E9D\t0x5E29\n0x8E9E\t0x5E2A\n0x8E9F\t0x5E2B\n0x8EA0\t0x5E2C\n0x8EA1\t0x5E2F\n0x8EA2\t0x5E30\n0x8EA3\t0x5E32\n0x8EA4\t0x5E33\n0x8EA5\t0x5E34\n0x8EA6\t0x5E35\n0x8EA7\t0x5E36\n0x8EA8\t0x5E39\n0x8EA9\t0x5E3A\n0x8EAA\t0x5E3E\n0x8EAB\t0x5E3F\n0x8EAC\t0x5E40\n0x8EAD\t0x5E41\n0x8EAE\t0x5E43\n0x8EAF\t0x5E46\n0x8EB0\t0x5E47\n0x8EB1\t0x5E48\n0x8EB2\t0x5E49\n0x8EB3\t0x5E4A\n0x8EB4\t0x5E4B\n0x8EB5\t0x5E4D\n0x8EB6\t0x5E4E\n0x8EB7\t0x5E4F\n0x8EB8\t0x5E50\n0x8EB9\t0x5E51\n0x8EBA\t0x5E52\n0x8EBB\t0x5E53\n0x8EBC\t0x5E56\n0x8EBD\t0x5E57\n0x8EBE\t0x5E58\n0x8EBF\t0x5E59\n0x8EC0\t0x5E5A\n0x8EC1\t0x5E5C\n0x8EC2\t0x5E5D\n0x8EC3\t0x5E5F\n0x8EC4\t0x5E60\n0x8EC5\t0x5E63\n0x8EC6\t0x5E64\n0x8EC7\t0x5E65\n0x8EC8\t0x5E66\n0x8EC9\t0x5E67\n0x8ECA\t0x5E68\n0x8ECB\t0x5E69\n0x8ECC\t0x5E6A\n0x8ECD\t0x5E6B\n0x8ECE\t0x5E6C\n0x8ECF\t0x5E6D\n0x8ED0\t0x5E6E\n0x8ED1\t0x5E6F\n0x8ED2\t0x5E70\n0x8ED3\t0x5E71\n0x8ED4\t0x5E75\n0x8ED5\t0x5E77\n0x8ED6\t0x5E79\n0x8ED7\t0x5E7E\n0x8ED8\t0x5E81\n0x8ED9\t0x5E82\n0x8EDA\t0x5E83\n0x8EDB\t0x5E85\n0x8EDC\t0x5E88\n0x8EDD\t0x5E89\n0x8EDE\t0x5E8C\n0x8EDF\t0x5E8D\n0x8EE0\t0x5E8E\n0x8EE1\t0x5E92\n0x8EE2\t0x5E98\n0x8EE3\t0x5E9B\n0x8EE4\t0x5E9D\n0x8EE5\t0x5EA1\n0x8EE6\t0x5EA2\n0x8EE7\t0x5EA3\n0x8EE8\t0x5EA4\n0x8EE9\t0x5EA8\n0x8EEA\t0x5EA9\n0x8EEB\t0x5EAA\n0x8EEC\t0x5EAB\n0x8EED\t0x5EAC\n0x8EEE\t0x5EAE\n0x8EEF\t0x5EAF\n0x8EF0\t0x5EB0\n0x8EF1\t0x5EB1\n0x8EF2\t0x5EB2\n0x8EF3\t0x5EB4\n0x8EF4\t0x5EBA\n0x8EF5\t0x5EBB\n0x8EF6\t0x5EBC\n0x8EF7\t0x5EBD\n0x8EF8\t0x5EBF\n0x8EF9\t0x5EC0\n0x8EFA\t0x5EC1\n0x8EFB\t0x5EC2\n0x8EFC\t0x5EC3\n0x8EFD\t0x5EC4\n0x8EFE\t0x5EC5\n0x8F40\t0x5EC6\n0x8F41\t0x5EC7\n0x8F42\t0x5EC8\n0x8F43\t0x5ECB\n0x8F44\t0x5ECC\n0x8F45\t0x5ECD\n0x8F46\t0x5ECE\n0x8F47\t0x5ECF\n0x8F48\t0x5ED0\n0x8F49\t0x5ED4\n0x8F4A\t0x5ED5\n0x8F4B\t0x5ED7\n0x8F4C\t0x5ED8\n0x8F4D\t0x5ED9\n0x8F4E\t0x5EDA\n0x8F4F\t0x5EDC\n0x8F50\t0x5EDD\n0x8F51\t0x5EDE\n0x8F52\t0x5EDF\n0x8F53\t0x5EE0\n0x8F54\t0x5EE1\n0x8F55\t0x5EE2\n0x8F56\t0x5EE3\n0x8F57\t0x5EE4\n0x8F58\t0x5EE5\n0x8F59\t0x5EE6\n0x8F5A\t0x5EE7\n0x8F5B\t0x5EE9\n0x8F5C\t0x5EEB\n0x8F5D\t0x5EEC\n0x8F5E\t0x5EED\n0x8F5F\t0x5EEE\n0x8F60\t0x5EEF\n0x8F61\t0x5EF0\n0x8F62\t0x5EF1\n0x8F63\t0x5EF2\n0x8F64\t0x5EF3\n0x8F65\t0x5EF5\n0x8F66\t0x5EF8\n0x8F67\t0x5EF9\n0x8F68\t0x5EFB\n0x8F69\t0x5EFC\n0x8F6A\t0x5EFD\n0x8F6B\t0x5F05\n0x8F6C\t0x5F06\n0x8F6D\t0x5F07\n0x8F6E\t0x5F09\n0x8F6F\t0x5F0C\n0x8F70\t0x5F0D\n0x8F71\t0x5F0E\n0x8F72\t0x5F10\n0x8F73\t0x5F12\n0x8F74\t0x5F14\n0x8F75\t0x5F16\n0x8F76\t0x5F19\n0x8F77\t0x5F1A\n0x8F78\t0x5F1C\n0x8F79\t0x5F1D\n0x8F7A\t0x5F1E\n0x8F7B\t0x5F21\n0x8F7C\t0x5F22\n0x8F7D\t0x5F23\n0x8F7E\t0x5F24\n0x8F80\t0x5F28\n0x8F81\t0x5F2B\n0x8F82\t0x5F2C\n0x8F83\t0x5F2E\n0x8F84\t0x5F30\n0x8F85\t0x5F32\n0x8F86\t0x5F33\n0x8F87\t0x5F34\n0x8F88\t0x5F35\n0x8F89\t0x5F36\n0x8F8A\t0x5F37\n0x8F8B\t0x5F38\n0x8F8C\t0x5F3B\n0x8F8D\t0x5F3D\n0x8F8E\t0x5F3E\n0x8F8F\t0x5F3F\n0x8F90\t0x5F41\n0x8F91\t0x5F42\n0x8F92\t0x5F43\n0x8F93\t0x5F44\n0x8F94\t0x5F45\n0x8F95\t0x5F46\n0x8F96\t0x5F47\n0x8F97\t0x5F48\n0x8F98\t0x5F49\n0x8F99\t0x5F4A\n0x8F9A\t0x5F4B\n0x8F9B\t0x5F4C\n0x8F9C\t0x5F4D\n0x8F9D\t0x5F4E\n0x8F9E\t0x5F4F\n0x8F9F\t0x5F51\n0x8FA0\t0x5F54\n0x8FA1\t0x5F59\n0x8FA2\t0x5F5A\n0x8FA3\t0x5F5B\n0x8FA4\t0x5F5C\n0x8FA5\t0x5F5E\n0x8FA6\t0x5F5F\n0x8FA7\t0x5F60\n0x8FA8\t0x5F63\n0x8FA9\t0x5F65\n0x8FAA\t0x5F67\n0x8FAB\t0x5F68\n0x8FAC\t0x5F6B\n0x8FAD\t0x5F6E\n0x8FAE\t0x5F6F\n0x8FAF\t0x5F72\n0x8FB0\t0x5F74\n0x8FB1\t0x5F75\n0x8FB2\t0x5F76\n0x8FB3\t0x5F78\n0x8FB4\t0x5F7A\n0x8FB5\t0x5F7D\n0x8FB6\t0x5F7E\n0x8FB7\t0x5F7F\n0x8FB8\t0x5F83\n0x8FB9\t0x5F86\n0x8FBA\t0x5F8D\n0x8FBB\t0x5F8E\n0x8FBC\t0x5F8F\n0x8FBD\t0x5F91\n0x8FBE\t0x5F93\n0x8FBF\t0x5F94\n0x8FC0\t0x5F96\n0x8FC1\t0x5F9A\n0x8FC2\t0x5F9B\n0x8FC3\t0x5F9D\n0x8FC4\t0x5F9E\n0x8FC5\t0x5F9F\n0x8FC6\t0x5FA0\n0x8FC7\t0x5FA2\n0x8FC8\t0x5FA3\n0x8FC9\t0x5FA4\n0x8FCA\t0x5FA5\n0x8FCB\t0x5FA6\n0x8FCC\t0x5FA7\n0x8FCD\t0x5FA9\n0x8FCE\t0x5FAB\n0x8FCF\t0x5FAC\n0x8FD0\t0x5FAF\n0x8FD1\t0x5FB0\n0x8FD2\t0x5FB1\n0x8FD3\t0x5FB2\n0x8FD4\t0x5FB3\n0x8FD5\t0x5FB4\n0x8FD6\t0x5FB6\n0x8FD7\t0x5FB8\n0x8FD8\t0x5FB9\n0x8FD9\t0x5FBA\n0x8FDA\t0x5FBB\n0x8FDB\t0x5FBE\n0x8FDC\t0x5FBF\n0x8FDD\t0x5FC0\n0x8FDE\t0x5FC1\n0x8FDF\t0x5FC2\n0x8FE0\t0x5FC7\n0x8FE1\t0x5FC8\n0x8FE2\t0x5FCA\n0x8FE3\t0x5FCB\n0x8FE4\t0x5FCE\n0x8FE5\t0x5FD3\n0x8FE6\t0x5FD4\n0x8FE7\t0x5FD5\n0x8FE8\t0x5FDA\n0x8FE9\t0x5FDB\n0x8FEA\t0x5FDC\n0x8FEB\t0x5FDE\n0x8FEC\t0x5FDF\n0x8FED\t0x5FE2\n0x8FEE\t0x5FE3\n0x8FEF\t0x5FE5\n0x8FF0\t0x5FE6\n0x8FF1\t0x5FE8\n0x8FF2\t0x5FE9\n0x8FF3\t0x5FEC\n0x8FF4\t0x5FEF\n0x8FF5\t0x5FF0\n0x8FF6\t0x5FF2\n0x8FF7\t0x5FF3\n0x8FF8\t0x5FF4\n0x8FF9\t0x5FF6\n0x8FFA\t0x5FF7\n0x8FFB\t0x5FF9\n0x8FFC\t0x5FFA\n0x8FFD\t0x5FFC\n0x8FFE\t0x6007\n0x9040\t0x6008\n0x9041\t0x6009\n0x9042\t0x600B\n0x9043\t0x600C\n0x9044\t0x6010\n0x9045\t0x6011\n0x9046\t0x6013\n0x9047\t0x6017\n0x9048\t0x6018\n0x9049\t0x601A\n0x904A\t0x601E\n0x904B\t0x601F\n0x904C\t0x6022\n0x904D\t0x6023\n0x904E\t0x6024\n0x904F\t0x602C\n0x9050\t0x602D\n0x9051\t0x602E\n0x9052\t0x6030\n0x9053\t0x6031\n0x9054\t0x6032\n0x9055\t0x6033\n0x9056\t0x6034\n0x9057\t0x6036\n0x9058\t0x6037\n0x9059\t0x6038\n0x905A\t0x6039\n0x905B\t0x603A\n0x905C\t0x603D\n0x905D\t0x603E\n0x905E\t0x6040\n0x905F\t0x6044\n0x9060\t0x6045\n0x9061\t0x6046\n0x9062\t0x6047\n0x9063\t0x6048\n0x9064\t0x6049\n0x9065\t0x604A\n0x9066\t0x604C\n0x9067\t0x604E\n0x9068\t0x604F\n0x9069\t0x6051\n0x906A\t0x6053\n0x906B\t0x6054\n0x906C\t0x6056\n0x906D\t0x6057\n0x906E\t0x6058\n0x906F\t0x605B\n0x9070\t0x605C\n0x9071\t0x605E\n0x9072\t0x605F\n0x9073\t0x6060\n0x9074\t0x6061\n0x9075\t0x6065\n0x9076\t0x6066\n0x9077\t0x606E\n0x9078\t0x6071\n0x9079\t0x6072\n0x907A\t0x6074\n0x907B\t0x6075\n0x907C\t0x6077\n0x907D\t0x607E\n0x907E\t0x6080\n0x9080\t0x6081\n0x9081\t0x6082\n0x9082\t0x6085\n0x9083\t0x6086\n0x9084\t0x6087\n0x9085\t0x6088\n0x9086\t0x608A\n0x9087\t0x608B\n0x9088\t0x608E\n0x9089\t0x608F\n0x908A\t0x6090\n0x908B\t0x6091\n0x908C\t0x6093\n0x908D\t0x6095\n0x908E\t0x6097\n0x908F\t0x6098\n0x9090\t0x6099\n0x9091\t0x609C\n0x9092\t0x609E\n0x9093\t0x60A1\n0x9094\t0x60A2\n0x9095\t0x60A4\n0x9096\t0x60A5\n0x9097\t0x60A7\n0x9098\t0x60A9\n0x9099\t0x60AA\n0x909A\t0x60AE\n0x909B\t0x60B0\n0x909C\t0x60B3\n0x909D\t0x60B5\n0x909E\t0x60B6\n0x909F\t0x60B7\n0x90A0\t0x60B9\n0x90A1\t0x60BA\n0x90A2\t0x60BD\n0x90A3\t0x60BE\n0x90A4\t0x60BF\n0x90A5\t0x60C0\n0x90A6\t0x60C1\n0x90A7\t0x60C2\n0x90A8\t0x60C3\n0x90A9\t0x60C4\n0x90AA\t0x60C7\n0x90AB\t0x60C8\n0x90AC\t0x60C9\n0x90AD\t0x60CC\n0x90AE\t0x60CD\n0x90AF\t0x60CE\n0x90B0\t0x60CF\n0x90B1\t0x60D0\n0x90B2\t0x60D2\n0x90B3\t0x60D3\n0x90B4\t0x60D4\n0x90B5\t0x60D6\n0x90B6\t0x60D7\n0x90B7\t0x60D9\n0x90B8\t0x60DB\n0x90B9\t0x60DE\n0x90BA\t0x60E1\n0x90BB\t0x60E2\n0x90BC\t0x60E3\n0x90BD\t0x60E4\n0x90BE\t0x60E5\n0x90BF\t0x60EA\n0x90C0\t0x60F1\n0x90C1\t0x60F2\n0x90C2\t0x60F5\n0x90C3\t0x60F7\n0x90C4\t0x60F8\n0x90C5\t0x60FB\n0x90C6\t0x60FC\n0x90C7\t0x60FD\n0x90C8\t0x60FE\n0x90C9\t0x60FF\n0x90CA\t0x6102\n0x90CB\t0x6103\n0x90CC\t0x6104\n0x90CD\t0x6105\n0x90CE\t0x6107\n0x90CF\t0x610A\n0x90D0\t0x610B\n0x90D1\t0x610C\n0x90D2\t0x6110\n0x90D3\t0x6111\n0x90D4\t0x6112\n0x90D5\t0x6113\n0x90D6\t0x6114\n0x90D7\t0x6116\n0x90D8\t0x6117\n0x90D9\t0x6118\n0x90DA\t0x6119\n0x90DB\t0x611B\n0x90DC\t0x611C\n0x90DD\t0x611D\n0x90DE\t0x611E\n0x90DF\t0x6121\n0x90E0\t0x6122\n0x90E1\t0x6125\n0x90E2\t0x6128\n0x90E3\t0x6129\n0x90E4\t0x612A\n0x90E5\t0x612C\n0x90E6\t0x612D\n0x90E7\t0x612E\n0x90E8\t0x612F\n0x90E9\t0x6130\n0x90EA\t0x6131\n0x90EB\t0x6132\n0x90EC\t0x6133\n0x90ED\t0x6134\n0x90EE\t0x6135\n0x90EF\t0x6136\n0x90F0\t0x6137\n0x90F1\t0x6138\n0x90F2\t0x6139\n0x90F3\t0x613A\n0x90F4\t0x613B\n0x90F5\t0x613C\n0x90F6\t0x613D\n0x90F7\t0x613E\n0x90F8\t0x6140\n0x90F9\t0x6141\n0x90FA\t0x6142\n0x90FB\t0x6143\n0x90FC\t0x6144\n0x90FD\t0x6145\n0x90FE\t0x6146\n0x9140\t0x6147\n0x9141\t0x6149\n0x9142\t0x614B\n0x9143\t0x614D\n0x9144\t0x614F\n0x9145\t0x6150\n0x9146\t0x6152\n0x9147\t0x6153\n0x9148\t0x6154\n0x9149\t0x6156\n0x914A\t0x6157\n0x914B\t0x6158\n0x914C\t0x6159\n0x914D\t0x615A\n0x914E\t0x615B\n0x914F\t0x615C\n0x9150\t0x615E\n0x9151\t0x615F\n0x9152\t0x6160\n0x9153\t0x6161\n0x9154\t0x6163\n0x9155\t0x6164\n0x9156\t0x6165\n0x9157\t0x6166\n0x9158\t0x6169\n0x9159\t0x616A\n0x915A\t0x616B\n0x915B\t0x616C\n0x915C\t0x616D\n0x915D\t0x616E\n0x915E\t0x616F\n0x915F\t0x6171\n0x9160\t0x6172\n0x9161\t0x6173\n0x9162\t0x6174\n0x9163\t0x6176\n0x9164\t0x6178\n0x9165\t0x6179\n0x9166\t0x617A\n0x9167\t0x617B\n0x9168\t0x617C\n0x9169\t0x617D\n0x916A\t0x617E\n0x916B\t0x617F\n0x916C\t0x6180\n0x916D\t0x6181\n0x916E\t0x6182\n0x916F\t0x6183\n0x9170\t0x6184\n0x9171\t0x6185\n0x9172\t0x6186\n0x9173\t0x6187\n0x9174\t0x6188\n0x9175\t0x6189\n0x9176\t0x618A\n0x9177\t0x618C\n0x9178\t0x618D\n0x9179\t0x618F\n0x917A\t0x6190\n0x917B\t0x6191\n0x917C\t0x6192\n0x917D\t0x6193\n0x917E\t0x6195\n0x9180\t0x6196\n0x9181\t0x6197\n0x9182\t0x6198\n0x9183\t0x6199\n0x9184\t0x619A\n0x9185\t0x619B\n0x9186\t0x619C\n0x9187\t0x619E\n0x9188\t0x619F\n0x9189\t0x61A0\n0x918A\t0x61A1\n0x918B\t0x61A2\n0x918C\t0x61A3\n0x918D\t0x61A4\n0x918E\t0x61A5\n0x918F\t0x61A6\n0x9190\t0x61AA\n0x9191\t0x61AB\n0x9192\t0x61AD\n0x9193\t0x61AE\n0x9194\t0x61AF\n0x9195\t0x61B0\n0x9196\t0x61B1\n0x9197\t0x61B2\n0x9198\t0x61B3\n0x9199\t0x61B4\n0x919A\t0x61B5\n0x919B\t0x61B6\n0x919C\t0x61B8\n0x919D\t0x61B9\n0x919E\t0x61BA\n0x919F\t0x61BB\n0x91A0\t0x61BC\n0x91A1\t0x61BD\n0x91A2\t0x61BF\n0x91A3\t0x61C0\n0x91A4\t0x61C1\n0x91A5\t0x61C3\n0x91A6\t0x61C4\n0x91A7\t0x61C5\n0x91A8\t0x61C6\n0x91A9\t0x61C7\n0x91AA\t0x61C9\n0x91AB\t0x61CC\n0x91AC\t0x61CD\n0x91AD\t0x61CE\n0x91AE\t0x61CF\n0x91AF\t0x61D0\n0x91B0\t0x61D3\n0x91B1\t0x61D5\n0x91B2\t0x61D6\n0x91B3\t0x61D7\n0x91B4\t0x61D8\n0x91B5\t0x61D9\n0x91B6\t0x61DA\n0x91B7\t0x61DB\n0x91B8\t0x61DC\n0x91B9\t0x61DD\n0x91BA\t0x61DE\n0x91BB\t0x61DF\n0x91BC\t0x61E0\n0x91BD\t0x61E1\n0x91BE\t0x61E2\n0x91BF\t0x61E3\n0x91C0\t0x61E4\n0x91C1\t0x61E5\n0x91C2\t0x61E7\n0x91C3\t0x61E8\n0x91C4\t0x61E9\n0x91C5\t0x61EA\n0x91C6\t0x61EB\n0x91C7\t0x61EC\n0x91C8\t0x61ED\n0x91C9\t0x61EE\n0x91CA\t0x61EF\n0x91CB\t0x61F0\n0x91CC\t0x61F1\n0x91CD\t0x61F2\n0x91CE\t0x61F3\n0x91CF\t0x61F4\n0x91D0\t0x61F6\n0x91D1\t0x61F7\n0x91D2\t0x61F8\n0x91D3\t0x61F9\n0x91D4\t0x61FA\n0x91D5\t0x61FB\n0x91D6\t0x61FC\n0x91D7\t0x61FD\n0x91D8\t0x61FE\n0x91D9\t0x6200\n0x91DA\t0x6201\n0x91DB\t0x6202\n0x91DC\t0x6203\n0x91DD\t0x6204\n0x91DE\t0x6205\n0x91DF\t0x6207\n0x91E0\t0x6209\n0x91E1\t0x6213\n0x91E2\t0x6214\n0x91E3\t0x6219\n0x91E4\t0x621C\n0x91E5\t0x621D\n0x91E6\t0x621E\n0x91E7\t0x6220\n0x91E8\t0x6223\n0x91E9\t0x6226\n0x91EA\t0x6227\n0x91EB\t0x6228\n0x91EC\t0x6229\n0x91ED\t0x622B\n0x91EE\t0x622D\n0x91EF\t0x622F\n0x91F0\t0x6230\n0x91F1\t0x6231\n0x91F2\t0x6232\n0x91F3\t0x6235\n0x91F4\t0x6236\n0x91F5\t0x6238\n0x91F6\t0x6239\n0x91F7\t0x623A\n0x91F8\t0x623B\n0x91F9\t0x623C\n0x91FA\t0x6242\n0x91FB\t0x6244\n0x91FC\t0x6245\n0x91FD\t0x6246\n0x91FE\t0x624A\n0x9240\t0x624F\n0x9241\t0x6250\n0x9242\t0x6255\n0x9243\t0x6256\n0x9244\t0x6257\n0x9245\t0x6259\n0x9246\t0x625A\n0x9247\t0x625C\n0x9248\t0x625D\n0x9249\t0x625E\n0x924A\t0x625F\n0x924B\t0x6260\n0x924C\t0x6261\n0x924D\t0x6262\n0x924E\t0x6264\n0x924F\t0x6265\n0x9250\t0x6268\n0x9251\t0x6271\n0x9252\t0x6272\n0x9253\t0x6274\n0x9254\t0x6275\n0x9255\t0x6277\n0x9256\t0x6278\n0x9257\t0x627A\n0x9258\t0x627B\n0x9259\t0x627D\n0x925A\t0x6281\n0x925B\t0x6282\n0x925C\t0x6283\n0x925D\t0x6285\n0x925E\t0x6286\n0x925F\t0x6287\n0x9260\t0x6288\n0x9261\t0x628B\n0x9262\t0x628C\n0x9263\t0x628D\n0x9264\t0x628E\n0x9265\t0x628F\n0x9266\t0x6290\n0x9267\t0x6294\n0x9268\t0x6299\n0x9269\t0x629C\n0x926A\t0x629D\n0x926B\t0x629E\n0x926C\t0x62A3\n0x926D\t0x62A6\n0x926E\t0x62A7\n0x926F\t0x62A9\n0x9270\t0x62AA\n0x9271\t0x62AD\n0x9272\t0x62AE\n0x9273\t0x62AF\n0x9274\t0x62B0\n0x9275\t0x62B2\n0x9276\t0x62B3\n0x9277\t0x62B4\n0x9278\t0x62B6\n0x9279\t0x62B7\n0x927A\t0x62B8\n0x927B\t0x62BA\n0x927C\t0x62BE\n0x927D\t0x62C0\n0x927E\t0x62C1\n0x9280\t0x62C3\n0x9281\t0x62CB\n0x9282\t0x62CF\n0x9283\t0x62D1\n0x9284\t0x62D5\n0x9285\t0x62DD\n0x9286\t0x62DE\n0x9287\t0x62E0\n0x9288\t0x62E1\n0x9289\t0x62E4\n0x928A\t0x62EA\n0x928B\t0x62EB\n0x928C\t0x62F0\n0x928D\t0x62F2\n0x928E\t0x62F5\n0x928F\t0x62F8\n0x9290\t0x62F9\n0x9291\t0x62FA\n0x9292\t0x62FB\n0x9293\t0x6300\n0x9294\t0x6303\n0x9295\t0x6304\n0x9296\t0x6305\n0x9297\t0x6306\n0x9298\t0x630A\n0x9299\t0x630B\n0x929A\t0x630C\n0x929B\t0x630D\n0x929C\t0x630F\n0x929D\t0x6310\n0x929E\t0x6312\n0x929F\t0x6313\n0x92A0\t0x6314\n0x92A1\t0x6315\n0x92A2\t0x6317\n0x92A3\t0x6318\n0x92A4\t0x6319\n0x92A5\t0x631C\n0x92A6\t0x6326\n0x92A7\t0x6327\n0x92A8\t0x6329\n0x92A9\t0x632C\n0x92AA\t0x632D\n0x92AB\t0x632E\n0x92AC\t0x6330\n0x92AD\t0x6331\n0x92AE\t0x6333\n0x92AF\t0x6334\n0x92B0\t0x6335\n0x92B1\t0x6336\n0x92B2\t0x6337\n0x92B3\t0x6338\n0x92B4\t0x633B\n0x92B5\t0x633C\n0x92B6\t0x633E\n0x92B7\t0x633F\n0x92B8\t0x6340\n0x92B9\t0x6341\n0x92BA\t0x6344\n0x92BB\t0x6347\n0x92BC\t0x6348\n0x92BD\t0x634A\n0x92BE\t0x6351\n0x92BF\t0x6352\n0x92C0\t0x6353\n0x92C1\t0x6354\n0x92C2\t0x6356\n0x92C3\t0x6357\n0x92C4\t0x6358\n0x92C5\t0x6359\n0x92C6\t0x635A\n0x92C7\t0x635B\n0x92C8\t0x635C\n0x92C9\t0x635D\n0x92CA\t0x6360\n0x92CB\t0x6364\n0x92CC\t0x6365\n0x92CD\t0x6366\n0x92CE\t0x6368\n0x92CF\t0x636A\n0x92D0\t0x636B\n0x92D1\t0x636C\n0x92D2\t0x636F\n0x92D3\t0x6370\n0x92D4\t0x6372\n0x92D5\t0x6373\n0x92D6\t0x6374\n0x92D7\t0x6375\n0x92D8\t0x6378\n0x92D9\t0x6379\n0x92DA\t0x637C\n0x92DB\t0x637D\n0x92DC\t0x637E\n0x92DD\t0x637F\n0x92DE\t0x6381\n0x92DF\t0x6383\n0x92E0\t0x6384\n0x92E1\t0x6385\n0x92E2\t0x6386\n0x92E3\t0x638B\n0x92E4\t0x638D\n0x92E5\t0x6391\n0x92E6\t0x6393\n0x92E7\t0x6394\n0x92E8\t0x6395\n0x92E9\t0x6397\n0x92EA\t0x6399\n0x92EB\t0x639A\n0x92EC\t0x639B\n0x92ED\t0x639C\n0x92EE\t0x639D\n0x92EF\t0x639E\n0x92F0\t0x639F\n0x92F1\t0x63A1\n0x92F2\t0x63A4\n0x92F3\t0x63A6\n0x92F4\t0x63AB\n0x92F5\t0x63AF\n0x92F6\t0x63B1\n0x92F7\t0x63B2\n0x92F8\t0x63B5\n0x92F9\t0x63B6\n0x92FA\t0x63B9\n0x92FB\t0x63BB\n0x92FC\t0x63BD\n0x92FD\t0x63BF\n0x92FE\t0x63C0\n0x9340\t0x63C1\n0x9341\t0x63C2\n0x9342\t0x63C3\n0x9343\t0x63C5\n0x9344\t0x63C7\n0x9345\t0x63C8\n0x9346\t0x63CA\n0x9347\t0x63CB\n0x9348\t0x63CC\n0x9349\t0x63D1\n0x934A\t0x63D3\n0x934B\t0x63D4\n0x934C\t0x63D5\n0x934D\t0x63D7\n0x934E\t0x63D8\n0x934F\t0x63D9\n0x9350\t0x63DA\n0x9351\t0x63DB\n0x9352\t0x63DC\n0x9353\t0x63DD\n0x9354\t0x63DF\n0x9355\t0x63E2\n0x9356\t0x63E4\n0x9357\t0x63E5\n0x9358\t0x63E6\n0x9359\t0x63E7\n0x935A\t0x63E8\n0x935B\t0x63EB\n0x935C\t0x63EC\n0x935D\t0x63EE\n0x935E\t0x63EF\n0x935F\t0x63F0\n0x9360\t0x63F1\n0x9361\t0x63F3\n0x9362\t0x63F5\n0x9363\t0x63F7\n0x9364\t0x63F9\n0x9365\t0x63FA\n0x9366\t0x63FB\n0x9367\t0x63FC\n0x9368\t0x63FE\n0x9369\t0x6403\n0x936A\t0x6404\n0x936B\t0x6406\n0x936C\t0x6407\n0x936D\t0x6408\n0x936E\t0x6409\n0x936F\t0x640A\n0x9370\t0x640D\n0x9371\t0x640E\n0x9372\t0x6411\n0x9373\t0x6412\n0x9374\t0x6415\n0x9375\t0x6416\n0x9376\t0x6417\n0x9377\t0x6418\n0x9378\t0x6419\n0x9379\t0x641A\n0x937A\t0x641D\n0x937B\t0x641F\n0x937C\t0x6422\n0x937D\t0x6423\n0x937E\t0x6424\n0x9380\t0x6425\n0x9381\t0x6427\n0x9382\t0x6428\n0x9383\t0x6429\n0x9384\t0x642B\n0x9385\t0x642E\n0x9386\t0x642F\n0x9387\t0x6430\n0x9388\t0x6431\n0x9389\t0x6432\n0x938A\t0x6433\n0x938B\t0x6435\n0x938C\t0x6436\n0x938D\t0x6437\n0x938E\t0x6438\n0x938F\t0x6439\n0x9390\t0x643B\n0x9391\t0x643C\n0x9392\t0x643E\n0x9393\t0x6440\n0x9394\t0x6442\n0x9395\t0x6443\n0x9396\t0x6449\n0x9397\t0x644B\n0x9398\t0x644C\n0x9399\t0x644D\n0x939A\t0x644E\n0x939B\t0x644F\n0x939C\t0x6450\n0x939D\t0x6451\n0x939E\t0x6453\n0x939F\t0x6455\n0x93A0\t0x6456\n0x93A1\t0x6457\n0x93A2\t0x6459\n0x93A3\t0x645A\n0x93A4\t0x645B\n0x93A5\t0x645C\n0x93A6\t0x645D\n0x93A7\t0x645F\n0x93A8\t0x6460\n0x93A9\t0x6461\n0x93AA\t0x6462\n0x93AB\t0x6463\n0x93AC\t0x6464\n0x93AD\t0x6465\n0x93AE\t0x6466\n0x93AF\t0x6468\n0x93B0\t0x646A\n0x93B1\t0x646B\n0x93B2\t0x646C\n0x93B3\t0x646E\n0x93B4\t0x646F\n0x93B5\t0x6470\n0x93B6\t0x6471\n0x93B7\t0x6472\n0x93B8\t0x6473\n0x93B9\t0x6474\n0x93BA\t0x6475\n0x93BB\t0x6476\n0x93BC\t0x6477\n0x93BD\t0x647B\n0x93BE\t0x647C\n0x93BF\t0x647D\n0x93C0\t0x647E\n0x93C1\t0x647F\n0x93C2\t0x6480\n0x93C3\t0x6481\n0x93C4\t0x6483\n0x93C5\t0x6486\n0x93C6\t0x6488\n0x93C7\t0x6489\n0x93C8\t0x648A\n0x93C9\t0x648B\n0x93CA\t0x648C\n0x93CB\t0x648D\n0x93CC\t0x648E\n0x93CD\t0x648F\n0x93CE\t0x6490\n0x93CF\t0x6493\n0x93D0\t0x6494\n0x93D1\t0x6497\n0x93D2\t0x6498\n0x93D3\t0x649A\n0x93D4\t0x649B\n0x93D5\t0x649C\n0x93D6\t0x649D\n0x93D7\t0x649F\n0x93D8\t0x64A0\n0x93D9\t0x64A1\n0x93DA\t0x64A2\n0x93DB\t0x64A3\n0x93DC\t0x64A5\n0x93DD\t0x64A6\n0x93DE\t0x64A7\n0x93DF\t0x64A8\n0x93E0\t0x64AA\n0x93E1\t0x64AB\n0x93E2\t0x64AF\n0x93E3\t0x64B1\n0x93E4\t0x64B2\n0x93E5\t0x64B3\n0x93E6\t0x64B4\n0x93E7\t0x64B6\n0x93E8\t0x64B9\n0x93E9\t0x64BB\n0x93EA\t0x64BD\n0x93EB\t0x64BE\n0x93EC\t0x64BF\n0x93ED\t0x64C1\n0x93EE\t0x64C3\n0x93EF\t0x64C4\n0x93F0\t0x64C6\n0x93F1\t0x64C7\n0x93F2\t0x64C8\n0x93F3\t0x64C9\n0x93F4\t0x64CA\n0x93F5\t0x64CB\n0x93F6\t0x64CC\n0x93F7\t0x64CF\n0x93F8\t0x64D1\n0x93F9\t0x64D3\n0x93FA\t0x64D4\n0x93FB\t0x64D5\n0x93FC\t0x64D6\n0x93FD\t0x64D9\n0x93FE\t0x64DA\n0x9440\t0x64DB\n0x9441\t0x64DC\n0x9442\t0x64DD\n0x9443\t0x64DF\n0x9444\t0x64E0\n0x9445\t0x64E1\n0x9446\t0x64E3\n0x9447\t0x64E5\n0x9448\t0x64E7\n0x9449\t0x64E8\n0x944A\t0x64E9\n0x944B\t0x64EA\n0x944C\t0x64EB\n0x944D\t0x64EC\n0x944E\t0x64ED\n0x944F\t0x64EE\n0x9450\t0x64EF\n0x9451\t0x64F0\n0x9452\t0x64F1\n0x9453\t0x64F2\n0x9454\t0x64F3\n0x9455\t0x64F4\n0x9456\t0x64F5\n0x9457\t0x64F6\n0x9458\t0x64F7\n0x9459\t0x64F8\n0x945A\t0x64F9\n0x945B\t0x64FA\n0x945C\t0x64FB\n0x945D\t0x64FC\n0x945E\t0x64FD\n0x945F\t0x64FE\n0x9460\t0x64FF\n0x9461\t0x6501\n0x9462\t0x6502\n0x9463\t0x6503\n0x9464\t0x6504\n0x9465\t0x6505\n0x9466\t0x6506\n0x9467\t0x6507\n0x9468\t0x6508\n0x9469\t0x650A\n0x946A\t0x650B\n0x946B\t0x650C\n0x946C\t0x650D\n0x946D\t0x650E\n0x946E\t0x650F\n0x946F\t0x6510\n0x9470\t0x6511\n0x9471\t0x6513\n0x9472\t0x6514\n0x9473\t0x6515\n0x9474\t0x6516\n0x9475\t0x6517\n0x9476\t0x6519\n0x9477\t0x651A\n0x9478\t0x651B\n0x9479\t0x651C\n0x947A\t0x651D\n0x947B\t0x651E\n0x947C\t0x651F\n0x947D\t0x6520\n0x947E\t0x6521\n0x9480\t0x6522\n0x9481\t0x6523\n0x9482\t0x6524\n0x9483\t0x6526\n0x9484\t0x6527\n0x9485\t0x6528\n0x9486\t0x6529\n0x9487\t0x652A\n0x9488\t0x652C\n0x9489\t0x652D\n0x948A\t0x6530\n0x948B\t0x6531\n0x948C\t0x6532\n0x948D\t0x6533\n0x948E\t0x6537\n0x948F\t0x653A\n0x9490\t0x653C\n0x9491\t0x653D\n0x9492\t0x6540\n0x9493\t0x6541\n0x9494\t0x6542\n0x9495\t0x6543\n0x9496\t0x6544\n0x9497\t0x6546\n0x9498\t0x6547\n0x9499\t0x654A\n0x949A\t0x654B\n0x949B\t0x654D\n0x949C\t0x654E\n0x949D\t0x6550\n0x949E\t0x6552\n0x949F\t0x6553\n0x94A0\t0x6554\n0x94A1\t0x6557\n0x94A2\t0x6558\n0x94A3\t0x655A\n0x94A4\t0x655C\n0x94A5\t0x655F\n0x94A6\t0x6560\n0x94A7\t0x6561\n0x94A8\t0x6564\n0x94A9\t0x6565\n0x94AA\t0x6567\n0x94AB\t0x6568\n0x94AC\t0x6569\n0x94AD\t0x656A\n0x94AE\t0x656D\n0x94AF\t0x656E\n0x94B0\t0x656F\n0x94B1\t0x6571\n0x94B2\t0x6573\n0x94B3\t0x6575\n0x94B4\t0x6576\n0x94B5\t0x6578\n0x94B6\t0x6579\n0x94B7\t0x657A\n0x94B8\t0x657B\n0x94B9\t0x657C\n0x94BA\t0x657D\n0x94BB\t0x657E\n0x94BC\t0x657F\n0x94BD\t0x6580\n0x94BE\t0x6581\n0x94BF\t0x6582\n0x94C0\t0x6583\n0x94C1\t0x6584\n0x94C2\t0x6585\n0x94C3\t0x6586\n0x94C4\t0x6588\n0x94C5\t0x6589\n0x94C6\t0x658A\n0x94C7\t0x658D\n0x94C8\t0x658E\n0x94C9\t0x658F\n0x94CA\t0x6592\n0x94CB\t0x6594\n0x94CC\t0x6595\n0x94CD\t0x6596\n0x94CE\t0x6598\n0x94CF\t0x659A\n0x94D0\t0x659D\n0x94D1\t0x659E\n0x94D2\t0x65A0\n0x94D3\t0x65A2\n0x94D4\t0x65A3\n0x94D5\t0x65A6\n0x94D6\t0x65A8\n0x94D7\t0x65AA\n0x94D8\t0x65AC\n0x94D9\t0x65AE\n0x94DA\t0x65B1\n0x94DB\t0x65B2\n0x94DC\t0x65B3\n0x94DD\t0x65B4\n0x94DE\t0x65B5\n0x94DF\t0x65B6\n0x94E0\t0x65B7\n0x94E1\t0x65B8\n0x94E2\t0x65BA\n0x94E3\t0x65BB\n0x94E4\t0x65BE\n0x94E5\t0x65BF\n0x94E6\t0x65C0\n0x94E7\t0x65C2\n0x94E8\t0x65C7\n0x94E9\t0x65C8\n0x94EA\t0x65C9\n0x94EB\t0x65CA\n0x94EC\t0x65CD\n0x94ED\t0x65D0\n0x94EE\t0x65D1\n0x94EF\t0x65D3\n0x94F0\t0x65D4\n0x94F1\t0x65D5\n0x94F2\t0x65D8\n0x94F3\t0x65D9\n0x94F4\t0x65DA\n0x94F5\t0x65DB\n0x94F6\t0x65DC\n0x94F7\t0x65DD\n0x94F8\t0x65DE\n0x94F9\t0x65DF\n0x94FA\t0x65E1\n0x94FB\t0x65E3\n0x94FC\t0x65E4\n0x94FD\t0x65EA\n0x94FE\t0x65EB\n0x9540\t0x65F2\n0x9541\t0x65F3\n0x9542\t0x65F4\n0x9543\t0x65F5\n0x9544\t0x65F8\n0x9545\t0x65F9\n0x9546\t0x65FB\n0x9547\t0x65FC\n0x9548\t0x65FD\n0x9549\t0x65FE\n0x954A\t0x65FF\n0x954B\t0x6601\n0x954C\t0x6604\n0x954D\t0x6605\n0x954E\t0x6607\n0x954F\t0x6608\n0x9550\t0x6609\n0x9551\t0x660B\n0x9552\t0x660D\n0x9553\t0x6610\n0x9554\t0x6611\n0x9555\t0x6612\n0x9556\t0x6616\n0x9557\t0x6617\n0x9558\t0x6618\n0x9559\t0x661A\n0x955A\t0x661B\n0x955B\t0x661C\n0x955C\t0x661E\n0x955D\t0x6621\n0x955E\t0x6622\n0x955F\t0x6623\n0x9560\t0x6624\n0x9561\t0x6626\n0x9562\t0x6629\n0x9563\t0x662A\n0x9564\t0x662B\n0x9565\t0x662C\n0x9566\t0x662E\n0x9567\t0x6630\n0x9568\t0x6632\n0x9569\t0x6633\n0x956A\t0x6637\n0x956B\t0x6638\n0x956C\t0x6639\n0x956D\t0x663A\n0x956E\t0x663B\n0x956F\t0x663D\n0x9570\t0x663F\n0x9571\t0x6640\n0x9572\t0x6642\n0x9573\t0x6644\n0x9574\t0x6645\n0x9575\t0x6646\n0x9576\t0x6647\n0x9577\t0x6648\n0x9578\t0x6649\n0x9579\t0x664A\n0x957A\t0x664D\n0x957B\t0x664E\n0x957C\t0x6650\n0x957D\t0x6651\n0x957E\t0x6658\n0x9580\t0x6659\n0x9581\t0x665B\n0x9582\t0x665C\n0x9583\t0x665D\n0x9584\t0x665E\n0x9585\t0x6660\n0x9586\t0x6662\n0x9587\t0x6663\n0x9588\t0x6665\n0x9589\t0x6667\n0x958A\t0x6669\n0x958B\t0x666A\n0x958C\t0x666B\n0x958D\t0x666C\n0x958E\t0x666D\n0x958F\t0x6671\n0x9590\t0x6672\n0x9591\t0x6673\n0x9592\t0x6675\n0x9593\t0x6678\n0x9594\t0x6679\n0x9595\t0x667B\n0x9596\t0x667C\n0x9597\t0x667D\n0x9598\t0x667F\n0x9599\t0x6680\n0x959A\t0x6681\n0x959B\t0x6683\n0x959C\t0x6685\n0x959D\t0x6686\n0x959E\t0x6688\n0x959F\t0x6689\n0x95A0\t0x668A\n0x95A1\t0x668B\n0x95A2\t0x668D\n0x95A3\t0x668E\n0x95A4\t0x668F\n0x95A5\t0x6690\n0x95A6\t0x6692\n0x95A7\t0x6693\n0x95A8\t0x6694\n0x95A9\t0x6695\n0x95AA\t0x6698\n0x95AB\t0x6699\n0x95AC\t0x669A\n0x95AD\t0x669B\n0x95AE\t0x669C\n0x95AF\t0x669E\n0x95B0\t0x669F\n0x95B1\t0x66A0\n0x95B2\t0x66A1\n0x95B3\t0x66A2\n0x95B4\t0x66A3\n0x95B5\t0x66A4\n0x95B6\t0x66A5\n0x95B7\t0x66A6\n0x95B8\t0x66A9\n0x95B9\t0x66AA\n0x95BA\t0x66AB\n0x95BB\t0x66AC\n0x95BC\t0x66AD\n0x95BD\t0x66AF\n0x95BE\t0x66B0\n0x95BF\t0x66B1\n0x95C0\t0x66B2\n0x95C1\t0x66B3\n0x95C2\t0x66B5\n0x95C3\t0x66B6\n0x95C4\t0x66B7\n0x95C5\t0x66B8\n0x95C6\t0x66BA\n0x95C7\t0x66BB\n0x95C8\t0x66BC\n0x95C9\t0x66BD\n0x95CA\t0x66BF\n0x95CB\t0x66C0\n0x95CC\t0x66C1\n0x95CD\t0x66C2\n0x95CE\t0x66C3\n0x95CF\t0x66C4\n0x95D0\t0x66C5\n0x95D1\t0x66C6\n0x95D2\t0x66C7\n0x95D3\t0x66C8\n0x95D4\t0x66C9\n0x95D5\t0x66CA\n0x95D6\t0x66CB\n0x95D7\t0x66CC\n0x95D8\t0x66CD\n0x95D9\t0x66CE\n0x95DA\t0x66CF\n0x95DB\t0x66D0\n0x95DC\t0x66D1\n0x95DD\t0x66D2\n0x95DE\t0x66D3\n0x95DF\t0x66D4\n0x95E0\t0x66D5\n0x95E1\t0x66D6\n0x95E2\t0x66D7\n0x95E3\t0x66D8\n0x95E4\t0x66DA\n0x95E5\t0x66DE\n0x95E6\t0x66DF\n0x95E7\t0x66E0\n0x95E8\t0x66E1\n0x95E9\t0x66E2\n0x95EA\t0x66E3\n0x95EB\t0x66E4\n0x95EC\t0x66E5\n0x95ED\t0x66E7\n0x95EE\t0x66E8\n0x95EF\t0x66EA\n0x95F0\t0x66EB\n0x95F1\t0x66EC\n0x95F2\t0x66ED\n0x95F3\t0x66EE\n0x95F4\t0x66EF\n0x95F5\t0x66F1\n0x95F6\t0x66F5\n0x95F7\t0x66F6\n0x95F8\t0x66F8\n0x95F9\t0x66FA\n0x95FA\t0x66FB\n0x95FB\t0x66FD\n0x95FC\t0x6701\n0x95FD\t0x6702\n0x95FE\t0x6703\n0x9640\t0x6704\n0x9641\t0x6705\n0x9642\t0x6706\n0x9643\t0x6707\n0x9644\t0x670C\n0x9645\t0x670E\n0x9646\t0x670F\n0x9647\t0x6711\n0x9648\t0x6712\n0x9649\t0x6713\n0x964A\t0x6716\n0x964B\t0x6718\n0x964C\t0x6719\n0x964D\t0x671A\n0x964E\t0x671C\n0x964F\t0x671E\n0x9650\t0x6720\n0x9651\t0x6721\n0x9652\t0x6722\n0x9653\t0x6723\n0x9654\t0x6724\n0x9655\t0x6725\n0x9656\t0x6727\n0x9657\t0x6729\n0x9658\t0x672E\n0x9659\t0x6730\n0x965A\t0x6732\n0x965B\t0x6733\n0x965C\t0x6736\n0x965D\t0x6737\n0x965E\t0x6738\n0x965F\t0x6739\n0x9660\t0x673B\n0x9661\t0x673C\n0x9662\t0x673E\n0x9663\t0x673F\n0x9664\t0x6741\n0x9665\t0x6744\n0x9666\t0x6745\n0x9667\t0x6747\n0x9668\t0x674A\n0x9669\t0x674B\n0x966A\t0x674D\n0x966B\t0x6752\n0x966C\t0x6754\n0x966D\t0x6755\n0x966E\t0x6757\n0x966F\t0x6758\n0x9670\t0x6759\n0x9671\t0x675A\n0x9672\t0x675B\n0x9673\t0x675D\n0x9674\t0x6762\n0x9675\t0x6763\n0x9676\t0x6764\n0x9677\t0x6766\n0x9678\t0x6767\n0x9679\t0x676B\n0x967A\t0x676C\n0x967B\t0x676E\n0x967C\t0x6771\n0x967D\t0x6774\n0x967E\t0x6776\n0x9680\t0x6778\n0x9681\t0x6779\n0x9682\t0x677A\n0x9683\t0x677B\n0x9684\t0x677D\n0x9685\t0x6780\n0x9686\t0x6782\n0x9687\t0x6783\n0x9688\t0x6785\n0x9689\t0x6786\n0x968A\t0x6788\n0x968B\t0x678A\n0x968C\t0x678C\n0x968D\t0x678D\n0x968E\t0x678E\n0x968F\t0x678F\n0x9690\t0x6791\n0x9691\t0x6792\n0x9692\t0x6793\n0x9693\t0x6794\n0x9694\t0x6796\n0x9695\t0x6799\n0x9696\t0x679B\n0x9697\t0x679F\n0x9698\t0x67A0\n0x9699\t0x67A1\n0x969A\t0x67A4\n0x969B\t0x67A6\n0x969C\t0x67A9\n0x969D\t0x67AC\n0x969E\t0x67AE\n0x969F\t0x67B1\n0x96A0\t0x67B2\n0x96A1\t0x67B4\n0x96A2\t0x67B9\n0x96A3\t0x67BA\n0x96A4\t0x67BB\n0x96A5\t0x67BC\n0x96A6\t0x67BD\n0x96A7\t0x67BE\n0x96A8\t0x67BF\n0x96A9\t0x67C0\n0x96AA\t0x67C2\n0x96AB\t0x67C5\n0x96AC\t0x67C6\n0x96AD\t0x67C7\n0x96AE\t0x67C8\n0x96AF\t0x67C9\n0x96B0\t0x67CA\n0x96B1\t0x67CB\n0x96B2\t0x67CC\n0x96B3\t0x67CD\n0x96B4\t0x67CE\n0x96B5\t0x67D5\n0x96B6\t0x67D6\n0x96B7\t0x67D7\n0x96B8\t0x67DB\n0x96B9\t0x67DF\n0x96BA\t0x67E1\n0x96BB\t0x67E3\n0x96BC\t0x67E4\n0x96BD\t0x67E6\n0x96BE\t0x67E7\n0x96BF\t0x67E8\n0x96C0\t0x67EA\n0x96C1\t0x67EB\n0x96C2\t0x67ED\n0x96C3\t0x67EE\n0x96C4\t0x67F2\n0x96C5\t0x67F5\n0x96C6\t0x67F6\n0x96C7\t0x67F7\n0x96C8\t0x67F8\n0x96C9\t0x67F9\n0x96CA\t0x67FA\n0x96CB\t0x67FB\n0x96CC\t0x67FC\n0x96CD\t0x67FE\n0x96CE\t0x6801\n0x96CF\t0x6802\n0x96D0\t0x6803\n0x96D1\t0x6804\n0x96D2\t0x6806\n0x96D3\t0x680D\n0x96D4\t0x6810\n0x96D5\t0x6812\n0x96D6\t0x6814\n0x96D7\t0x6815\n0x96D8\t0x6818\n0x96D9\t0x6819\n0x96DA\t0x681A\n0x96DB\t0x681B\n0x96DC\t0x681C\n0x96DD\t0x681E\n0x96DE\t0x681F\n0x96DF\t0x6820\n0x96E0\t0x6822\n0x96E1\t0x6823\n0x96E2\t0x6824\n0x96E3\t0x6825\n0x96E4\t0x6826\n0x96E5\t0x6827\n0x96E6\t0x6828\n0x96E7\t0x682B\n0x96E8\t0x682C\n0x96E9\t0x682D\n0x96EA\t0x682E\n0x96EB\t0x682F\n0x96EC\t0x6830\n0x96ED\t0x6831\n0x96EE\t0x6834\n0x96EF\t0x6835\n0x96F0\t0x6836\n0x96F1\t0x683A\n0x96F2\t0x683B\n0x96F3\t0x683F\n0x96F4\t0x6847\n0x96F5\t0x684B\n0x96F6\t0x684D\n0x96F7\t0x684F\n0x96F8\t0x6852\n0x96F9\t0x6856\n0x96FA\t0x6857\n0x96FB\t0x6858\n0x96FC\t0x6859\n0x96FD\t0x685A\n0x96FE\t0x685B\n0x9740\t0x685C\n0x9741\t0x685D\n0x9742\t0x685E\n0x9743\t0x685F\n0x9744\t0x686A\n0x9745\t0x686C\n0x9746\t0x686D\n0x9747\t0x686E\n0x9748\t0x686F\n0x9749\t0x6870\n0x974A\t0x6871\n0x974B\t0x6872\n0x974C\t0x6873\n0x974D\t0x6875\n0x974E\t0x6878\n0x974F\t0x6879\n0x9750\t0x687A\n0x9751\t0x687B\n0x9752\t0x687C\n0x9753\t0x687D\n0x9754\t0x687E\n0x9755\t0x687F\n0x9756\t0x6880\n0x9757\t0x6882\n0x9758\t0x6884\n0x9759\t0x6887\n0x975A\t0x6888\n0x975B\t0x6889\n0x975C\t0x688A\n0x975D\t0x688B\n0x975E\t0x688C\n0x975F\t0x688D\n0x9760\t0x688E\n0x9761\t0x6890\n0x9762\t0x6891\n0x9763\t0x6892\n0x9764\t0x6894\n0x9765\t0x6895\n0x9766\t0x6896\n0x9767\t0x6898\n0x9768\t0x6899\n0x9769\t0x689A\n0x976A\t0x689B\n0x976B\t0x689C\n0x976C\t0x689D\n0x976D\t0x689E\n0x976E\t0x689F\n0x976F\t0x68A0\n0x9770\t0x68A1\n0x9771\t0x68A3\n0x9772\t0x68A4\n0x9773\t0x68A5\n0x9774\t0x68A9\n0x9775\t0x68AA\n0x9776\t0x68AB\n0x9777\t0x68AC\n0x9778\t0x68AE\n0x9779\t0x68B1\n0x977A\t0x68B2\n0x977B\t0x68B4\n0x977C\t0x68B6\n0x977D\t0x68B7\n0x977E\t0x68B8\n0x9780\t0x68B9\n0x9781\t0x68BA\n0x9782\t0x68BB\n0x9783\t0x68BC\n0x9784\t0x68BD\n0x9785\t0x68BE\n0x9786\t0x68BF\n0x9787\t0x68C1\n0x9788\t0x68C3\n0x9789\t0x68C4\n0x978A\t0x68C5\n0x978B\t0x68C6\n0x978C\t0x68C7\n0x978D\t0x68C8\n0x978E\t0x68CA\n0x978F\t0x68CC\n0x9790\t0x68CE\n0x9791\t0x68CF\n0x9792\t0x68D0\n0x9793\t0x68D1\n0x9794\t0x68D3\n0x9795\t0x68D4\n0x9796\t0x68D6\n0x9797\t0x68D7\n0x9798\t0x68D9\n0x9799\t0x68DB\n0x979A\t0x68DC\n0x979B\t0x68DD\n0x979C\t0x68DE\n0x979D\t0x68DF\n0x979E\t0x68E1\n0x979F\t0x68E2\n0x97A0\t0x68E4\n0x97A1\t0x68E5\n0x97A2\t0x68E6\n0x97A3\t0x68E7\n0x97A4\t0x68E8\n0x97A5\t0x68E9\n0x97A6\t0x68EA\n0x97A7\t0x68EB\n0x97A8\t0x68EC\n0x97A9\t0x68ED\n0x97AA\t0x68EF\n0x97AB\t0x68F2\n0x97AC\t0x68F3\n0x97AD\t0x68F4\n0x97AE\t0x68F6\n0x97AF\t0x68F7\n0x97B0\t0x68F8\n0x97B1\t0x68FB\n0x97B2\t0x68FD\n0x97B3\t0x68FE\n0x97B4\t0x68FF\n0x97B5\t0x6900\n0x97B6\t0x6902\n0x97B7\t0x6903\n0x97B8\t0x6904\n0x97B9\t0x6906\n0x97BA\t0x6907\n0x97BB\t0x6908\n0x97BC\t0x6909\n0x97BD\t0x690A\n0x97BE\t0x690C\n0x97BF\t0x690F\n0x97C0\t0x6911\n0x97C1\t0x6913\n0x97C2\t0x6914\n0x97C3\t0x6915\n0x97C4\t0x6916\n0x97C5\t0x6917\n0x97C6\t0x6918\n0x97C7\t0x6919\n0x97C8\t0x691A\n0x97C9\t0x691B\n0x97CA\t0x691C\n0x97CB\t0x691D\n0x97CC\t0x691E\n0x97CD\t0x6921\n0x97CE\t0x6922\n0x97CF\t0x6923\n0x97D0\t0x6925\n0x97D1\t0x6926\n0x97D2\t0x6927\n0x97D3\t0x6928\n0x97D4\t0x6929\n0x97D5\t0x692A\n0x97D6\t0x692B\n0x97D7\t0x692C\n0x97D8\t0x692E\n0x97D9\t0x692F\n0x97DA\t0x6931\n0x97DB\t0x6932\n0x97DC\t0x6933\n0x97DD\t0x6935\n0x97DE\t0x6936\n0x97DF\t0x6937\n0x97E0\t0x6938\n0x97E1\t0x693A\n0x97E2\t0x693B\n0x97E3\t0x693C\n0x97E4\t0x693E\n0x97E5\t0x6940\n0x97E6\t0x6941\n0x97E7\t0x6943\n0x97E8\t0x6944\n0x97E9\t0x6945\n0x97EA\t0x6946\n0x97EB\t0x6947\n0x97EC\t0x6948\n0x97ED\t0x6949\n0x97EE\t0x694A\n0x97EF\t0x694B\n0x97F0\t0x694C\n0x97F1\t0x694D\n0x97F2\t0x694E\n0x97F3\t0x694F\n0x97F4\t0x6950\n0x97F5\t0x6951\n0x97F6\t0x6952\n0x97F7\t0x6953\n0x97F8\t0x6955\n0x97F9\t0x6956\n0x97FA\t0x6958\n0x97FB\t0x6959\n0x97FC\t0x695B\n0x97FD\t0x695C\n0x97FE\t0x695F\n0x9840\t0x6961\n0x9841\t0x6962\n0x9842\t0x6964\n0x9843\t0x6965\n0x9844\t0x6967\n0x9845\t0x6968\n0x9846\t0x6969\n0x9847\t0x696A\n0x9848\t0x696C\n0x9849\t0x696D\n0x984A\t0x696F\n0x984B\t0x6970\n0x984C\t0x6972\n0x984D\t0x6973\n0x984E\t0x6974\n0x984F\t0x6975\n0x9850\t0x6976\n0x9851\t0x697A\n0x9852\t0x697B\n0x9853\t0x697D\n0x9854\t0x697E\n0x9855\t0x697F\n0x9856\t0x6981\n0x9857\t0x6983\n0x9858\t0x6985\n0x9859\t0x698A\n0x985A\t0x698B\n0x985B\t0x698C\n0x985C\t0x698E\n0x985D\t0x698F\n0x985E\t0x6990\n0x985F\t0x6991\n0x9860\t0x6992\n0x9861\t0x6993\n0x9862\t0x6996\n0x9863\t0x6997\n0x9864\t0x6999\n0x9865\t0x699A\n0x9866\t0x699D\n0x9867\t0x699E\n0x9868\t0x699F\n0x9869\t0x69A0\n0x986A\t0x69A1\n0x986B\t0x69A2\n0x986C\t0x69A3\n0x986D\t0x69A4\n0x986E\t0x69A5\n0x986F\t0x69A6\n0x9870\t0x69A9\n0x9871\t0x69AA\n0x9872\t0x69AC\n0x9873\t0x69AE\n0x9874\t0x69AF\n0x9875\t0x69B0\n0x9876\t0x69B2\n0x9877\t0x69B3\n0x9878\t0x69B5\n0x9879\t0x69B6\n0x987A\t0x69B8\n0x987B\t0x69B9\n0x987C\t0x69BA\n0x987D\t0x69BC\n0x987E\t0x69BD\n0x9880\t0x69BE\n0x9881\t0x69BF\n0x9882\t0x69C0\n0x9883\t0x69C2\n0x9884\t0x69C3\n0x9885\t0x69C4\n0x9886\t0x69C5\n0x9887\t0x69C6\n0x9888\t0x69C7\n0x9889\t0x69C8\n0x988A\t0x69C9\n0x988B\t0x69CB\n0x988C\t0x69CD\n0x988D\t0x69CF\n0x988E\t0x69D1\n0x988F\t0x69D2\n0x9890\t0x69D3\n0x9891\t0x69D5\n0x9892\t0x69D6\n0x9893\t0x69D7\n0x9894\t0x69D8\n0x9895\t0x69D9\n0x9896\t0x69DA\n0x9897\t0x69DC\n0x9898\t0x69DD\n0x9899\t0x69DE\n0x989A\t0x69E1\n0x989B\t0x69E2\n0x989C\t0x69E3\n0x989D\t0x69E4\n0x989E\t0x69E5\n0x989F\t0x69E6\n0x98A0\t0x69E7\n0x98A1\t0x69E8\n0x98A2\t0x69E9\n0x98A3\t0x69EA\n0x98A4\t0x69EB\n0x98A5\t0x69EC\n0x98A6\t0x69EE\n0x98A7\t0x69EF\n0x98A8\t0x69F0\n0x98A9\t0x69F1\n0x98AA\t0x69F3\n0x98AB\t0x69F4\n0x98AC\t0x69F5\n0x98AD\t0x69F6\n0x98AE\t0x69F7\n0x98AF\t0x69F8\n0x98B0\t0x69F9\n0x98B1\t0x69FA\n0x98B2\t0x69FB\n0x98B3\t0x69FC\n0x98B4\t0x69FE\n0x98B5\t0x6A00\n0x98B6\t0x6A01\n0x98B7\t0x6A02\n0x98B8\t0x6A03\n0x98B9\t0x6A04\n0x98BA\t0x6A05\n0x98BB\t0x6A06\n0x98BC\t0x6A07\n0x98BD\t0x6A08\n0x98BE\t0x6A09\n0x98BF\t0x6A0B\n0x98C0\t0x6A0C\n0x98C1\t0x6A0D\n0x98C2\t0x6A0E\n0x98C3\t0x6A0F\n0x98C4\t0x6A10\n0x98C5\t0x6A11\n0x98C6\t0x6A12\n0x98C7\t0x6A13\n0x98C8\t0x6A14\n0x98C9\t0x6A15\n0x98CA\t0x6A16\n0x98CB\t0x6A19\n0x98CC\t0x6A1A\n0x98CD\t0x6A1B\n0x98CE\t0x6A1C\n0x98CF\t0x6A1D\n0x98D0\t0x6A1E\n0x98D1\t0x6A20\n0x98D2\t0x6A22\n0x98D3\t0x6A23\n0x98D4\t0x6A24\n0x98D5\t0x6A25\n0x98D6\t0x6A26\n0x98D7\t0x6A27\n0x98D8\t0x6A29\n0x98D9\t0x6A2B\n0x98DA\t0x6A2C\n0x98DB\t0x6A2D\n0x98DC\t0x6A2E\n0x98DD\t0x6A30\n0x98DE\t0x6A32\n0x98DF\t0x6A33\n0x98E0\t0x6A34\n0x98E1\t0x6A36\n0x98E2\t0x6A37\n0x98E3\t0x6A38\n0x98E4\t0x6A39\n0x98E5\t0x6A3A\n0x98E6\t0x6A3B\n0x98E7\t0x6A3C\n0x98E8\t0x6A3F\n0x98E9\t0x6A40\n0x98EA\t0x6A41\n0x98EB\t0x6A42\n0x98EC\t0x6A43\n0x98ED\t0x6A45\n0x98EE\t0x6A46\n0x98EF\t0x6A48\n0x98F0\t0x6A49\n0x98F1\t0x6A4A\n0x98F2\t0x6A4B\n0x98F3\t0x6A4C\n0x98F4\t0x6A4D\n0x98F5\t0x6A4E\n0x98F6\t0x6A4F\n0x98F7\t0x6A51\n0x98F8\t0x6A52\n0x98F9\t0x6A53\n0x98FA\t0x6A54\n0x98FB\t0x6A55\n0x98FC\t0x6A56\n0x98FD\t0x6A57\n0x98FE\t0x6A5A\n0x9940\t0x6A5C\n0x9941\t0x6A5D\n0x9942\t0x6A5E\n0x9943\t0x6A5F\n0x9944\t0x6A60\n0x9945\t0x6A62\n0x9946\t0x6A63\n0x9947\t0x6A64\n0x9948\t0x6A66\n0x9949\t0x6A67\n0x994A\t0x6A68\n0x994B\t0x6A69\n0x994C\t0x6A6A\n0x994D\t0x6A6B\n0x994E\t0x6A6C\n0x994F\t0x6A6D\n0x9950\t0x6A6E\n0x9951\t0x6A6F\n0x9952\t0x6A70\n0x9953\t0x6A72\n0x9954\t0x6A73\n0x9955\t0x6A74\n0x9956\t0x6A75\n0x9957\t0x6A76\n0x9958\t0x6A77\n0x9959\t0x6A78\n0x995A\t0x6A7A\n0x995B\t0x6A7B\n0x995C\t0x6A7D\n0x995D\t0x6A7E\n0x995E\t0x6A7F\n0x995F\t0x6A81\n0x9960\t0x6A82\n0x9961\t0x6A83\n0x9962\t0x6A85\n0x9963\t0x6A86\n0x9964\t0x6A87\n0x9965\t0x6A88\n0x9966\t0x6A89\n0x9967\t0x6A8A\n0x9968\t0x6A8B\n0x9969\t0x6A8C\n0x996A\t0x6A8D\n0x996B\t0x6A8F\n0x996C\t0x6A92\n0x996D\t0x6A93\n0x996E\t0x6A94\n0x996F\t0x6A95\n0x9970\t0x6A96\n0x9971\t0x6A98\n0x9972\t0x6A99\n0x9973\t0x6A9A\n0x9974\t0x6A9B\n0x9975\t0x6A9C\n0x9976\t0x6A9D\n0x9977\t0x6A9E\n0x9978\t0x6A9F\n0x9979\t0x6AA1\n0x997A\t0x6AA2\n0x997B\t0x6AA3\n0x997C\t0x6AA4\n0x997D\t0x6AA5\n0x997E\t0x6AA6\n0x9980\t0x6AA7\n0x9981\t0x6AA8\n0x9982\t0x6AAA\n0x9983\t0x6AAD\n0x9984\t0x6AAE\n0x9985\t0x6AAF\n0x9986\t0x6AB0\n0x9987\t0x6AB1\n0x9988\t0x6AB2\n0x9989\t0x6AB3\n0x998A\t0x6AB4\n0x998B\t0x6AB5\n0x998C\t0x6AB6\n0x998D\t0x6AB7\n0x998E\t0x6AB8\n0x998F\t0x6AB9\n0x9990\t0x6ABA\n0x9991\t0x6ABB\n0x9992\t0x6ABC\n0x9993\t0x6ABD\n0x9994\t0x6ABE\n0x9995\t0x6ABF\n0x9996\t0x6AC0\n0x9997\t0x6AC1\n0x9998\t0x6AC2\n0x9999\t0x6AC3\n0x999A\t0x6AC4\n0x999B\t0x6AC5\n0x999C\t0x6AC6\n0x999D\t0x6AC7\n0x999E\t0x6AC8\n0x999F\t0x6AC9\n0x99A0\t0x6ACA\n0x99A1\t0x6ACB\n0x99A2\t0x6ACC\n0x99A3\t0x6ACD\n0x99A4\t0x6ACE\n0x99A5\t0x6ACF\n0x99A6\t0x6AD0\n0x99A7\t0x6AD1\n0x99A8\t0x6AD2\n0x99A9\t0x6AD3\n0x99AA\t0x6AD4\n0x99AB\t0x6AD5\n0x99AC\t0x6AD6\n0x99AD\t0x6AD7\n0x99AE\t0x6AD8\n0x99AF\t0x6AD9\n0x99B0\t0x6ADA\n0x99B1\t0x6ADB\n0x99B2\t0x6ADC\n0x99B3\t0x6ADD\n0x99B4\t0x6ADE\n0x99B5\t0x6ADF\n0x99B6\t0x6AE0\n0x99B7\t0x6AE1\n0x99B8\t0x6AE2\n0x99B9\t0x6AE3\n0x99BA\t0x6AE4\n0x99BB\t0x6AE5\n0x99BC\t0x6AE6\n0x99BD\t0x6AE7\n0x99BE\t0x6AE8\n0x99BF\t0x6AE9\n0x99C0\t0x6AEA\n0x99C1\t0x6AEB\n0x99C2\t0x6AEC\n0x99C3\t0x6AED\n0x99C4\t0x6AEE\n0x99C5\t0x6AEF\n0x99C6\t0x6AF0\n0x99C7\t0x6AF1\n0x99C8\t0x6AF2\n0x99C9\t0x6AF3\n0x99CA\t0x6AF4\n0x99CB\t0x6AF5\n0x99CC\t0x6AF6\n0x99CD\t0x6AF7\n0x99CE\t0x6AF8\n0x99CF\t0x6AF9\n0x99D0\t0x6AFA\n0x99D1\t0x6AFB\n0x99D2\t0x6AFC\n0x99D3\t0x6AFD\n0x99D4\t0x6AFE\n0x99D5\t0x6AFF\n0x99D6\t0x6B00\n0x99D7\t0x6B01\n0x99D8\t0x6B02\n0x99D9\t0x6B03\n0x99DA\t0x6B04\n0x99DB\t0x6B05\n0x99DC\t0x6B06\n0x99DD\t0x6B07\n0x99DE\t0x6B08\n0x99DF\t0x6B09\n0x99E0\t0x6B0A\n0x99E1\t0x6B0B\n0x99E2\t0x6B0C\n0x99E3\t0x6B0D\n0x99E4\t0x6B0E\n0x99E5\t0x6B0F\n0x99E6\t0x6B10\n0x99E7\t0x6B11\n0x99E8\t0x6B12\n0x99E9\t0x6B13\n0x99EA\t0x6B14\n0x99EB\t0x6B15\n0x99EC\t0x6B16\n0x99ED\t0x6B17\n0x99EE\t0x6B18\n0x99EF\t0x6B19\n0x99F0\t0x6B1A\n0x99F1\t0x6B1B\n0x99F2\t0x6B1C\n0x99F3\t0x6B1D\n0x99F4\t0x6B1E\n0x99F5\t0x6B1F\n0x99F6\t0x6B25\n0x99F7\t0x6B26\n0x99F8\t0x6B28\n0x99F9\t0x6B29\n0x99FA\t0x6B2A\n0x99FB\t0x6B2B\n0x99FC\t0x6B2C\n0x99FD\t0x6B2D\n0x99FE\t0x6B2E\n0x9A40\t0x6B2F\n0x9A41\t0x6B30\n0x9A42\t0x6B31\n0x9A43\t0x6B33\n0x9A44\t0x6B34\n0x9A45\t0x6B35\n0x9A46\t0x6B36\n0x9A47\t0x6B38\n0x9A48\t0x6B3B\n0x9A49\t0x6B3C\n0x9A4A\t0x6B3D\n0x9A4B\t0x6B3F\n0x9A4C\t0x6B40\n0x9A4D\t0x6B41\n0x9A4E\t0x6B42\n0x9A4F\t0x6B44\n0x9A50\t0x6B45\n0x9A51\t0x6B48\n0x9A52\t0x6B4A\n0x9A53\t0x6B4B\n0x9A54\t0x6B4D\n0x9A55\t0x6B4E\n0x9A56\t0x6B4F\n0x9A57\t0x6B50\n0x9A58\t0x6B51\n0x9A59\t0x6B52\n0x9A5A\t0x6B53\n0x9A5B\t0x6B54\n0x9A5C\t0x6B55\n0x9A5D\t0x6B56\n0x9A5E\t0x6B57\n0x9A5F\t0x6B58\n0x9A60\t0x6B5A\n0x9A61\t0x6B5B\n0x9A62\t0x6B5C\n0x9A63\t0x6B5D\n0x9A64\t0x6B5E\n0x9A65\t0x6B5F\n0x9A66\t0x6B60\n0x9A67\t0x6B61\n0x9A68\t0x6B68\n0x9A69\t0x6B69\n0x9A6A\t0x6B6B\n0x9A6B\t0x6B6C\n0x9A6C\t0x6B6D\n0x9A6D\t0x6B6E\n0x9A6E\t0x6B6F\n0x9A6F\t0x6B70\n0x9A70\t0x6B71\n0x9A71\t0x6B72\n0x9A72\t0x6B73\n0x9A73\t0x6B74\n0x9A74\t0x6B75\n0x9A75\t0x6B76\n0x9A76\t0x6B77\n0x9A77\t0x6B78\n0x9A78\t0x6B7A\n0x9A79\t0x6B7D\n0x9A7A\t0x6B7E\n0x9A7B\t0x6B7F\n0x9A7C\t0x6B80\n0x9A7D\t0x6B85\n0x9A7E\t0x6B88\n0x9A80\t0x6B8C\n0x9A81\t0x6B8E\n0x9A82\t0x6B8F\n0x9A83\t0x6B90\n0x9A84\t0x6B91\n0x9A85\t0x6B94\n0x9A86\t0x6B95\n0x9A87\t0x6B97\n0x9A88\t0x6B98\n0x9A89\t0x6B99\n0x9A8A\t0x6B9C\n0x9A8B\t0x6B9D\n0x9A8C\t0x6B9E\n0x9A8D\t0x6B9F\n0x9A8E\t0x6BA0\n0x9A8F\t0x6BA2\n0x9A90\t0x6BA3\n0x9A91\t0x6BA4\n0x9A92\t0x6BA5\n0x9A93\t0x6BA6\n0x9A94\t0x6BA7\n0x9A95\t0x6BA8\n0x9A96\t0x6BA9\n0x9A97\t0x6BAB\n0x9A98\t0x6BAC\n0x9A99\t0x6BAD\n0x9A9A\t0x6BAE\n0x9A9B\t0x6BAF\n0x9A9C\t0x6BB0\n0x9A9D\t0x6BB1\n0x9A9E\t0x6BB2\n0x9A9F\t0x6BB6\n0x9AA0\t0x6BB8\n0x9AA1\t0x6BB9\n0x9AA2\t0x6BBA\n0x9AA3\t0x6BBB\n0x9AA4\t0x6BBC\n0x9AA5\t0x6BBD\n0x9AA6\t0x6BBE\n0x9AA7\t0x6BC0\n0x9AA8\t0x6BC3\n0x9AA9\t0x6BC4\n0x9AAA\t0x6BC6\n0x9AAB\t0x6BC7\n0x9AAC\t0x6BC8\n0x9AAD\t0x6BC9\n0x9AAE\t0x6BCA\n0x9AAF\t0x6BCC\n0x9AB0\t0x6BCE\n0x9AB1\t0x6BD0\n0x9AB2\t0x6BD1\n0x9AB3\t0x6BD8\n0x9AB4\t0x6BDA\n0x9AB5\t0x6BDC\n0x9AB6\t0x6BDD\n0x9AB7\t0x6BDE\n0x9AB8\t0x6BDF\n0x9AB9\t0x6BE0\n0x9ABA\t0x6BE2\n0x9ABB\t0x6BE3\n0x9ABC\t0x6BE4\n0x9ABD\t0x6BE5\n0x9ABE\t0x6BE6\n0x9ABF\t0x6BE7\n0x9AC0\t0x6BE8\n0x9AC1\t0x6BE9\n0x9AC2\t0x6BEC\n0x9AC3\t0x6BED\n0x9AC4\t0x6BEE\n0x9AC5\t0x6BF0\n0x9AC6\t0x6BF1\n0x9AC7\t0x6BF2\n0x9AC8\t0x6BF4\n0x9AC9\t0x6BF6\n0x9ACA\t0x6BF7\n0x9ACB\t0x6BF8\n0x9ACC\t0x6BFA\n0x9ACD\t0x6BFB\n0x9ACE\t0x6BFC\n0x9ACF\t0x6BFE\n0x9AD0\t0x6BFF\n0x9AD1\t0x6C00\n0x9AD2\t0x6C01\n0x9AD3\t0x6C02\n0x9AD4\t0x6C03\n0x9AD5\t0x6C04\n0x9AD6\t0x6C08\n0x9AD7\t0x6C09\n0x9AD8\t0x6C0A\n0x9AD9\t0x6C0B\n0x9ADA\t0x6C0C\n0x9ADB\t0x6C0E\n0x9ADC\t0x6C12\n0x9ADD\t0x6C17\n0x9ADE\t0x6C1C\n0x9ADF\t0x6C1D\n0x9AE0\t0x6C1E\n0x9AE1\t0x6C20\n0x9AE2\t0x6C23\n0x9AE3\t0x6C25\n0x9AE4\t0x6C2B\n0x9AE5\t0x6C2C\n0x9AE6\t0x6C2D\n0x9AE7\t0x6C31\n0x9AE8\t0x6C33\n0x9AE9\t0x6C36\n0x9AEA\t0x6C37\n0x9AEB\t0x6C39\n0x9AEC\t0x6C3A\n0x9AED\t0x6C3B\n0x9AEE\t0x6C3C\n0x9AEF\t0x6C3E\n0x9AF0\t0x6C3F\n0x9AF1\t0x6C43\n0x9AF2\t0x6C44\n0x9AF3\t0x6C45\n0x9AF4\t0x6C48\n0x9AF5\t0x6C4B\n0x9AF6\t0x6C4C\n0x9AF7\t0x6C4D\n0x9AF8\t0x6C4E\n0x9AF9\t0x6C4F\n0x9AFA\t0x6C51\n0x9AFB\t0x6C52\n0x9AFC\t0x6C53\n0x9AFD\t0x6C56\n0x9AFE\t0x6C58\n0x9B40\t0x6C59\n0x9B41\t0x6C5A\n0x9B42\t0x6C62\n0x9B43\t0x6C63\n0x9B44\t0x6C65\n0x9B45\t0x6C66\n0x9B46\t0x6C67\n0x9B47\t0x6C6B\n0x9B48\t0x6C6C\n0x9B49\t0x6C6D\n0x9B4A\t0x6C6E\n0x9B4B\t0x6C6F\n0x9B4C\t0x6C71\n0x9B4D\t0x6C73\n0x9B4E\t0x6C75\n0x9B4F\t0x6C77\n0x9B50\t0x6C78\n0x9B51\t0x6C7A\n0x9B52\t0x6C7B\n0x9B53\t0x6C7C\n0x9B54\t0x6C7F\n0x9B55\t0x6C80\n0x9B56\t0x6C84\n0x9B57\t0x6C87\n0x9B58\t0x6C8A\n0x9B59\t0x6C8B\n0x9B5A\t0x6C8D\n0x9B5B\t0x6C8E\n0x9B5C\t0x6C91\n0x9B5D\t0x6C92\n0x9B5E\t0x6C95\n0x9B5F\t0x6C96\n0x9B60\t0x6C97\n0x9B61\t0x6C98\n0x9B62\t0x6C9A\n0x9B63\t0x6C9C\n0x9B64\t0x6C9D\n0x9B65\t0x6C9E\n0x9B66\t0x6CA0\n0x9B67\t0x6CA2\n0x9B68\t0x6CA8\n0x9B69\t0x6CAC\n0x9B6A\t0x6CAF\n0x9B6B\t0x6CB0\n0x9B6C\t0x6CB4\n0x9B6D\t0x6CB5\n0x9B6E\t0x6CB6\n0x9B6F\t0x6CB7\n0x9B70\t0x6CBA\n0x9B71\t0x6CC0\n0x9B72\t0x6CC1\n0x9B73\t0x6CC2\n0x9B74\t0x6CC3\n0x9B75\t0x6CC6\n0x9B76\t0x6CC7\n0x9B77\t0x6CC8\n0x9B78\t0x6CCB\n0x9B79\t0x6CCD\n0x9B7A\t0x6CCE\n0x9B7B\t0x6CCF\n0x9B7C\t0x6CD1\n0x9B7D\t0x6CD2\n0x9B7E\t0x6CD8\n0x9B80\t0x6CD9\n0x9B81\t0x6CDA\n0x9B82\t0x6CDC\n0x9B83\t0x6CDD\n0x9B84\t0x6CDF\n0x9B85\t0x6CE4\n0x9B86\t0x6CE6\n0x9B87\t0x6CE7\n0x9B88\t0x6CE9\n0x9B89\t0x6CEC\n0x9B8A\t0x6CED\n0x9B8B\t0x6CF2\n0x9B8C\t0x6CF4\n0x9B8D\t0x6CF9\n0x9B8E\t0x6CFF\n0x9B8F\t0x6D00\n0x9B90\t0x6D02\n0x9B91\t0x6D03\n0x9B92\t0x6D05\n0x9B93\t0x6D06\n0x9B94\t0x6D08\n0x9B95\t0x6D09\n0x9B96\t0x6D0A\n0x9B97\t0x6D0D\n0x9B98\t0x6D0F\n0x9B99\t0x6D10\n0x9B9A\t0x6D11\n0x9B9B\t0x6D13\n0x9B9C\t0x6D14\n0x9B9D\t0x6D15\n0x9B9E\t0x6D16\n0x9B9F\t0x6D18\n0x9BA0\t0x6D1C\n0x9BA1\t0x6D1D\n0x9BA2\t0x6D1F\n0x9BA3\t0x6D20\n0x9BA4\t0x6D21\n0x9BA5\t0x6D22\n0x9BA6\t0x6D23\n0x9BA7\t0x6D24\n0x9BA8\t0x6D26\n0x9BA9\t0x6D28\n0x9BAA\t0x6D29\n0x9BAB\t0x6D2C\n0x9BAC\t0x6D2D\n0x9BAD\t0x6D2F\n0x9BAE\t0x6D30\n0x9BAF\t0x6D34\n0x9BB0\t0x6D36\n0x9BB1\t0x6D37\n0x9BB2\t0x6D38\n0x9BB3\t0x6D3A\n0x9BB4\t0x6D3F\n0x9BB5\t0x6D40\n0x9BB6\t0x6D42\n0x9BB7\t0x6D44\n0x9BB8\t0x6D49\n0x9BB9\t0x6D4C\n0x9BBA\t0x6D50\n0x9BBB\t0x6D55\n0x9BBC\t0x6D56\n0x9BBD\t0x6D57\n0x9BBE\t0x6D58\n0x9BBF\t0x6D5B\n0x9BC0\t0x6D5D\n0x9BC1\t0x6D5F\n0x9BC2\t0x6D61\n0x9BC3\t0x6D62\n0x9BC4\t0x6D64\n0x9BC5\t0x6D65\n0x9BC6\t0x6D67\n0x9BC7\t0x6D68\n0x9BC8\t0x6D6B\n0x9BC9\t0x6D6C\n0x9BCA\t0x6D6D\n0x9BCB\t0x6D70\n0x9BCC\t0x6D71\n0x9BCD\t0x6D72\n0x9BCE\t0x6D73\n0x9BCF\t0x6D75\n0x9BD0\t0x6D76\n0x9BD1\t0x6D79\n0x9BD2\t0x6D7A\n0x9BD3\t0x6D7B\n0x9BD4\t0x6D7D\n0x9BD5\t0x6D7E\n0x9BD6\t0x6D7F\n0x9BD7\t0x6D80\n0x9BD8\t0x6D81\n0x9BD9\t0x6D83\n0x9BDA\t0x6D84\n0x9BDB\t0x6D86\n0x9BDC\t0x6D87\n0x9BDD\t0x6D8A\n0x9BDE\t0x6D8B\n0x9BDF\t0x6D8D\n0x9BE0\t0x6D8F\n0x9BE1\t0x6D90\n0x9BE2\t0x6D92\n0x9BE3\t0x6D96\n0x9BE4\t0x6D97\n0x9BE5\t0x6D98\n0x9BE6\t0x6D99\n0x9BE7\t0x6D9A\n0x9BE8\t0x6D9C\n0x9BE9\t0x6DA2\n0x9BEA\t0x6DA5\n0x9BEB\t0x6DAC\n0x9BEC\t0x6DAD\n0x9BED\t0x6DB0\n0x9BEE\t0x6DB1\n0x9BEF\t0x6DB3\n0x9BF0\t0x6DB4\n0x9BF1\t0x6DB6\n0x9BF2\t0x6DB7\n0x9BF3\t0x6DB9\n0x9BF4\t0x6DBA\n0x9BF5\t0x6DBB\n0x9BF6\t0x6DBC\n0x9BF7\t0x6DBD\n0x9BF8\t0x6DBE\n0x9BF9\t0x6DC1\n0x9BFA\t0x6DC2\n0x9BFB\t0x6DC3\n0x9BFC\t0x6DC8\n0x9BFD\t0x6DC9\n0x9BFE\t0x6DCA\n0x9C40\t0x6DCD\n0x9C41\t0x6DCE\n0x9C42\t0x6DCF\n0x9C43\t0x6DD0\n0x9C44\t0x6DD2\n0x9C45\t0x6DD3\n0x9C46\t0x6DD4\n0x9C47\t0x6DD5\n0x9C48\t0x6DD7\n0x9C49\t0x6DDA\n0x9C4A\t0x6DDB\n0x9C4B\t0x6DDC\n0x9C4C\t0x6DDF\n0x9C4D\t0x6DE2\n0x9C4E\t0x6DE3\n0x9C4F\t0x6DE5\n0x9C50\t0x6DE7\n0x9C51\t0x6DE8\n0x9C52\t0x6DE9\n0x9C53\t0x6DEA\n0x9C54\t0x6DED\n0x9C55\t0x6DEF\n0x9C56\t0x6DF0\n0x9C57\t0x6DF2\n0x9C58\t0x6DF4\n0x9C59\t0x6DF5\n0x9C5A\t0x6DF6\n0x9C5B\t0x6DF8\n0x9C5C\t0x6DFA\n0x9C5D\t0x6DFD\n0x9C5E\t0x6DFE\n0x9C5F\t0x6DFF\n0x9C60\t0x6E00\n0x9C61\t0x6E01\n0x9C62\t0x6E02\n0x9C63\t0x6E03\n0x9C64\t0x6E04\n0x9C65\t0x6E06\n0x9C66\t0x6E07\n0x9C67\t0x6E08\n0x9C68\t0x6E09\n0x9C69\t0x6E0B\n0x9C6A\t0x6E0F\n0x9C6B\t0x6E12\n0x9C6C\t0x6E13\n0x9C6D\t0x6E15\n0x9C6E\t0x6E18\n0x9C6F\t0x6E19\n0x9C70\t0x6E1B\n0x9C71\t0x6E1C\n0x9C72\t0x6E1E\n0x9C73\t0x6E1F\n0x9C74\t0x6E22\n0x9C75\t0x6E26\n0x9C76\t0x6E27\n0x9C77\t0x6E28\n0x9C78\t0x6E2A\n0x9C79\t0x6E2C\n0x9C7A\t0x6E2E\n0x9C7B\t0x6E30\n0x9C7C\t0x6E31\n0x9C7D\t0x6E33\n0x9C7E\t0x6E35\n0x9C80\t0x6E36\n0x9C81\t0x6E37\n0x9C82\t0x6E39\n0x9C83\t0x6E3B\n0x9C84\t0x6E3C\n0x9C85\t0x6E3D\n0x9C86\t0x6E3E\n0x9C87\t0x6E3F\n0x9C88\t0x6E40\n0x9C89\t0x6E41\n0x9C8A\t0x6E42\n0x9C8B\t0x6E45\n0x9C8C\t0x6E46\n0x9C8D\t0x6E47\n0x9C8E\t0x6E48\n0x9C8F\t0x6E49\n0x9C90\t0x6E4A\n0x9C91\t0x6E4B\n0x9C92\t0x6E4C\n0x9C93\t0x6E4F\n0x9C94\t0x6E50\n0x9C95\t0x6E51\n0x9C96\t0x6E52\n0x9C97\t0x6E55\n0x9C98\t0x6E57\n0x9C99\t0x6E59\n0x9C9A\t0x6E5A\n0x9C9B\t0x6E5C\n0x9C9C\t0x6E5D\n0x9C9D\t0x6E5E\n0x9C9E\t0x6E60\n0x9C9F\t0x6E61\n0x9CA0\t0x6E62\n0x9CA1\t0x6E63\n0x9CA2\t0x6E64\n0x9CA3\t0x6E65\n0x9CA4\t0x6E66\n0x9CA5\t0x6E67\n0x9CA6\t0x6E68\n0x9CA7\t0x6E69\n0x9CA8\t0x6E6A\n0x9CA9\t0x6E6C\n0x9CAA\t0x6E6D\n0x9CAB\t0x6E6F\n0x9CAC\t0x6E70\n0x9CAD\t0x6E71\n0x9CAE\t0x6E72\n0x9CAF\t0x6E73\n0x9CB0\t0x6E74\n0x9CB1\t0x6E75\n0x9CB2\t0x6E76\n0x9CB3\t0x6E77\n0x9CB4\t0x6E78\n0x9CB5\t0x6E79\n0x9CB6\t0x6E7A\n0x9CB7\t0x6E7B\n0x9CB8\t0x6E7C\n0x9CB9\t0x6E7D\n0x9CBA\t0x6E80\n0x9CBB\t0x6E81\n0x9CBC\t0x6E82\n0x9CBD\t0x6E84\n0x9CBE\t0x6E87\n0x9CBF\t0x6E88\n0x9CC0\t0x6E8A\n0x9CC1\t0x6E8B\n0x9CC2\t0x6E8C\n0x9CC3\t0x6E8D\n0x9CC4\t0x6E8E\n0x9CC5\t0x6E91\n0x9CC6\t0x6E92\n0x9CC7\t0x6E93\n0x9CC8\t0x6E94\n0x9CC9\t0x6E95\n0x9CCA\t0x6E96\n0x9CCB\t0x6E97\n0x9CCC\t0x6E99\n0x9CCD\t0x6E9A\n0x9CCE\t0x6E9B\n0x9CCF\t0x6E9D\n0x9CD0\t0x6E9E\n0x9CD1\t0x6EA0\n0x9CD2\t0x6EA1\n0x9CD3\t0x6EA3\n0x9CD4\t0x6EA4\n0x9CD5\t0x6EA6\n0x9CD6\t0x6EA8\n0x9CD7\t0x6EA9\n0x9CD8\t0x6EAB\n0x9CD9\t0x6EAC\n0x9CDA\t0x6EAD\n0x9CDB\t0x6EAE\n0x9CDC\t0x6EB0\n0x9CDD\t0x6EB3\n0x9CDE\t0x6EB5\n0x9CDF\t0x6EB8\n0x9CE0\t0x6EB9\n0x9CE1\t0x6EBC\n0x9CE2\t0x6EBE\n0x9CE3\t0x6EBF\n0x9CE4\t0x6EC0\n0x9CE5\t0x6EC3\n0x9CE6\t0x6EC4\n0x9CE7\t0x6EC5\n0x9CE8\t0x6EC6\n0x9CE9\t0x6EC8\n0x9CEA\t0x6EC9\n0x9CEB\t0x6ECA\n0x9CEC\t0x6ECC\n0x9CED\t0x6ECD\n0x9CEE\t0x6ECE\n0x9CEF\t0x6ED0\n0x9CF0\t0x6ED2\n0x9CF1\t0x6ED6\n0x9CF2\t0x6ED8\n0x9CF3\t0x6ED9\n0x9CF4\t0x6EDB\n0x9CF5\t0x6EDC\n0x9CF6\t0x6EDD\n0x9CF7\t0x6EE3\n0x9CF8\t0x6EE7\n0x9CF9\t0x6EEA\n0x9CFA\t0x6EEB\n0x9CFB\t0x6EEC\n0x9CFC\t0x6EED\n0x9CFD\t0x6EEE\n0x9CFE\t0x6EEF\n0x9D40\t0x6EF0\n0x9D41\t0x6EF1\n0x9D42\t0x6EF2\n0x9D43\t0x6EF3\n0x9D44\t0x6EF5\n0x9D45\t0x6EF6\n0x9D46\t0x6EF7\n0x9D47\t0x6EF8\n0x9D48\t0x6EFA\n0x9D49\t0x6EFB\n0x9D4A\t0x6EFC\n0x9D4B\t0x6EFD\n0x9D4C\t0x6EFE\n0x9D4D\t0x6EFF\n0x9D4E\t0x6F00\n0x9D4F\t0x6F01\n0x9D50\t0x6F03\n0x9D51\t0x6F04\n0x9D52\t0x6F05\n0x9D53\t0x6F07\n0x9D54\t0x6F08\n0x9D55\t0x6F0A\n0x9D56\t0x6F0B\n0x9D57\t0x6F0C\n0x9D58\t0x6F0D\n0x9D59\t0x6F0E\n0x9D5A\t0x6F10\n0x9D5B\t0x6F11\n0x9D5C\t0x6F12\n0x9D5D\t0x6F16\n0x9D5E\t0x6F17\n0x9D5F\t0x6F18\n0x9D60\t0x6F19\n0x9D61\t0x6F1A\n0x9D62\t0x6F1B\n0x9D63\t0x6F1C\n0x9D64\t0x6F1D\n0x9D65\t0x6F1E\n0x9D66\t0x6F1F\n0x9D67\t0x6F21\n0x9D68\t0x6F22\n0x9D69\t0x6F23\n0x9D6A\t0x6F25\n0x9D6B\t0x6F26\n0x9D6C\t0x6F27\n0x9D6D\t0x6F28\n0x9D6E\t0x6F2C\n0x9D6F\t0x6F2E\n0x9D70\t0x6F30\n0x9D71\t0x6F32\n0x9D72\t0x6F34\n0x9D73\t0x6F35\n0x9D74\t0x6F37\n0x9D75\t0x6F38\n0x9D76\t0x6F39\n0x9D77\t0x6F3A\n0x9D78\t0x6F3B\n0x9D79\t0x6F3C\n0x9D7A\t0x6F3D\n0x9D7B\t0x6F3F\n0x9D7C\t0x6F40\n0x9D7D\t0x6F41\n0x9D7E\t0x6F42\n0x9D80\t0x6F43\n0x9D81\t0x6F44\n0x9D82\t0x6F45\n0x9D83\t0x6F48\n0x9D84\t0x6F49\n0x9D85\t0x6F4A\n0x9D86\t0x6F4C\n0x9D87\t0x6F4E\n0x9D88\t0x6F4F\n0x9D89\t0x6F50\n0x9D8A\t0x6F51\n0x9D8B\t0x6F52\n0x9D8C\t0x6F53\n0x9D8D\t0x6F54\n0x9D8E\t0x6F55\n0x9D8F\t0x6F56\n0x9D90\t0x6F57\n0x9D91\t0x6F59\n0x9D92\t0x6F5A\n0x9D93\t0x6F5B\n0x9D94\t0x6F5D\n0x9D95\t0x6F5F\n0x9D96\t0x6F60\n0x9D97\t0x6F61\n0x9D98\t0x6F63\n0x9D99\t0x6F64\n0x9D9A\t0x6F65\n0x9D9B\t0x6F67\n0x9D9C\t0x6F68\n0x9D9D\t0x6F69\n0x9D9E\t0x6F6A\n0x9D9F\t0x6F6B\n0x9DA0\t0x6F6C\n0x9DA1\t0x6F6F\n0x9DA2\t0x6F70\n0x9DA3\t0x6F71\n0x9DA4\t0x6F73\n0x9DA5\t0x6F75\n0x9DA6\t0x6F76\n0x9DA7\t0x6F77\n0x9DA8\t0x6F79\n0x9DA9\t0x6F7B\n0x9DAA\t0x6F7D\n0x9DAB\t0x6F7E\n0x9DAC\t0x6F7F\n0x9DAD\t0x6F80\n0x9DAE\t0x6F81\n0x9DAF\t0x6F82\n0x9DB0\t0x6F83\n0x9DB1\t0x6F85\n0x9DB2\t0x6F86\n0x9DB3\t0x6F87\n0x9DB4\t0x6F8A\n0x9DB5\t0x6F8B\n0x9DB6\t0x6F8F\n0x9DB7\t0x6F90\n0x9DB8\t0x6F91\n0x9DB9\t0x6F92\n0x9DBA\t0x6F93\n0x9DBB\t0x6F94\n0x9DBC\t0x6F95\n0x9DBD\t0x6F96\n0x9DBE\t0x6F97\n0x9DBF\t0x6F98\n0x9DC0\t0x6F99\n0x9DC1\t0x6F9A\n0x9DC2\t0x6F9B\n0x9DC3\t0x6F9D\n0x9DC4\t0x6F9E\n0x9DC5\t0x6F9F\n0x9DC6\t0x6FA0\n0x9DC7\t0x6FA2\n0x9DC8\t0x6FA3\n0x9DC9\t0x6FA4\n0x9DCA\t0x6FA5\n0x9DCB\t0x6FA6\n0x9DCC\t0x6FA8\n0x9DCD\t0x6FA9\n0x9DCE\t0x6FAA\n0x9DCF\t0x6FAB\n0x9DD0\t0x6FAC\n0x9DD1\t0x6FAD\n0x9DD2\t0x6FAE\n0x9DD3\t0x6FAF\n0x9DD4\t0x6FB0\n0x9DD5\t0x6FB1\n0x9DD6\t0x6FB2\n0x9DD7\t0x6FB4\n0x9DD8\t0x6FB5\n0x9DD9\t0x6FB7\n0x9DDA\t0x6FB8\n0x9DDB\t0x6FBA\n0x9DDC\t0x6FBB\n0x9DDD\t0x6FBC\n0x9DDE\t0x6FBD\n0x9DDF\t0x6FBE\n0x9DE0\t0x6FBF\n0x9DE1\t0x6FC1\n0x9DE2\t0x6FC3\n0x9DE3\t0x6FC4\n0x9DE4\t0x6FC5\n0x9DE5\t0x6FC6\n0x9DE6\t0x6FC7\n0x9DE7\t0x6FC8\n0x9DE8\t0x6FCA\n0x9DE9\t0x6FCB\n0x9DEA\t0x6FCC\n0x9DEB\t0x6FCD\n0x9DEC\t0x6FCE\n0x9DED\t0x6FCF\n0x9DEE\t0x6FD0\n0x9DEF\t0x6FD3\n0x9DF0\t0x6FD4\n0x9DF1\t0x6FD5\n0x9DF2\t0x6FD6\n0x9DF3\t0x6FD7\n0x9DF4\t0x6FD8\n0x9DF5\t0x6FD9\n0x9DF6\t0x6FDA\n0x9DF7\t0x6FDB\n0x9DF8\t0x6FDC\n0x9DF9\t0x6FDD\n0x9DFA\t0x6FDF\n0x9DFB\t0x6FE2\n0x9DFC\t0x6FE3\n0x9DFD\t0x6FE4\n0x9DFE\t0x6FE5\n0x9E40\t0x6FE6\n0x9E41\t0x6FE7\n0x9E42\t0x6FE8\n0x9E43\t0x6FE9\n0x9E44\t0x6FEA\n0x9E45\t0x6FEB\n0x9E46\t0x6FEC\n0x9E47\t0x6FED\n0x9E48\t0x6FF0\n0x9E49\t0x6FF1\n0x9E4A\t0x6FF2\n0x9E4B\t0x6FF3\n0x9E4C\t0x6FF4\n0x9E4D\t0x6FF5\n0x9E4E\t0x6FF6\n0x9E4F\t0x6FF7\n0x9E50\t0x6FF8\n0x9E51\t0x6FF9\n0x9E52\t0x6FFA\n0x9E53\t0x6FFB\n0x9E54\t0x6FFC\n0x9E55\t0x6FFD\n0x9E56\t0x6FFE\n0x9E57\t0x6FFF\n0x9E58\t0x7000\n0x9E59\t0x7001\n0x9E5A\t0x7002\n0x9E5B\t0x7003\n0x9E5C\t0x7004\n0x9E5D\t0x7005\n0x9E5E\t0x7006\n0x9E5F\t0x7007\n0x9E60\t0x7008\n0x9E61\t0x7009\n0x9E62\t0x700A\n0x9E63\t0x700B\n0x9E64\t0x700C\n0x9E65\t0x700D\n0x9E66\t0x700E\n0x9E67\t0x700F\n0x9E68\t0x7010\n0x9E69\t0x7012\n0x9E6A\t0x7013\n0x9E6B\t0x7014\n0x9E6C\t0x7015\n0x9E6D\t0x7016\n0x9E6E\t0x7017\n0x9E6F\t0x7018\n0x9E70\t0x7019\n0x9E71\t0x701C\n0x9E72\t0x701D\n0x9E73\t0x701E\n0x9E74\t0x701F\n0x9E75\t0x7020\n0x9E76\t0x7021\n0x9E77\t0x7022\n0x9E78\t0x7024\n0x9E79\t0x7025\n0x9E7A\t0x7026\n0x9E7B\t0x7027\n0x9E7C\t0x7028\n0x9E7D\t0x7029\n0x9E7E\t0x702A\n0x9E80\t0x702B\n0x9E81\t0x702C\n0x9E82\t0x702D\n0x9E83\t0x702E\n0x9E84\t0x702F\n0x9E85\t0x7030\n0x9E86\t0x7031\n0x9E87\t0x7032\n0x9E88\t0x7033\n0x9E89\t0x7034\n0x9E8A\t0x7036\n0x9E8B\t0x7037\n0x9E8C\t0x7038\n0x9E8D\t0x703A\n0x9E8E\t0x703B\n0x9E8F\t0x703C\n0x9E90\t0x703D\n0x9E91\t0x703E\n0x9E92\t0x703F\n0x9E93\t0x7040\n0x9E94\t0x7041\n0x9E95\t0x7042\n0x9E96\t0x7043\n0x9E97\t0x7044\n0x9E98\t0x7045\n0x9E99\t0x7046\n0x9E9A\t0x7047\n0x9E9B\t0x7048\n0x9E9C\t0x7049\n0x9E9D\t0x704A\n0x9E9E\t0x704B\n0x9E9F\t0x704D\n0x9EA0\t0x704E\n0x9EA1\t0x7050\n0x9EA2\t0x7051\n0x9EA3\t0x7052\n0x9EA4\t0x7053\n0x9EA5\t0x7054\n0x9EA6\t0x7055\n0x9EA7\t0x7056\n0x9EA8\t0x7057\n0x9EA9\t0x7058\n0x9EAA\t0x7059\n0x9EAB\t0x705A\n0x9EAC\t0x705B\n0x9EAD\t0x705C\n0x9EAE\t0x705D\n0x9EAF\t0x705F\n0x9EB0\t0x7060\n0x9EB1\t0x7061\n0x9EB2\t0x7062\n0x9EB3\t0x7063\n0x9EB4\t0x7064\n0x9EB5\t0x7065\n0x9EB6\t0x7066\n0x9EB7\t0x7067\n0x9EB8\t0x7068\n0x9EB9\t0x7069\n0x9EBA\t0x706A\n0x9EBB\t0x706E\n0x9EBC\t0x7071\n0x9EBD\t0x7072\n0x9EBE\t0x7073\n0x9EBF\t0x7074\n0x9EC0\t0x7077\n0x9EC1\t0x7079\n0x9EC2\t0x707A\n0x9EC3\t0x707B\n0x9EC4\t0x707D\n0x9EC5\t0x7081\n0x9EC6\t0x7082\n0x9EC7\t0x7083\n0x9EC8\t0x7084\n0x9EC9\t0x7086\n0x9ECA\t0x7087\n0x9ECB\t0x7088\n0x9ECC\t0x708B\n0x9ECD\t0x708C\n0x9ECE\t0x708D\n0x9ECF\t0x708F\n0x9ED0\t0x7090\n0x9ED1\t0x7091\n0x9ED2\t0x7093\n0x9ED3\t0x7097\n0x9ED4\t0x7098\n0x9ED5\t0x709A\n0x9ED6\t0x709B\n0x9ED7\t0x709E\n0x9ED8\t0x709F\n0x9ED9\t0x70A0\n0x9EDA\t0x70A1\n0x9EDB\t0x70A2\n0x9EDC\t0x70A3\n0x9EDD\t0x70A4\n0x9EDE\t0x70A5\n0x9EDF\t0x70A6\n0x9EE0\t0x70A7\n0x9EE1\t0x70A8\n0x9EE2\t0x70A9\n0x9EE3\t0x70AA\n0x9EE4\t0x70B0\n0x9EE5\t0x70B2\n0x9EE6\t0x70B4\n0x9EE7\t0x70B5\n0x9EE8\t0x70B6\n0x9EE9\t0x70BA\n0x9EEA\t0x70BE\n0x9EEB\t0x70BF\n0x9EEC\t0x70C4\n0x9EED\t0x70C5\n0x9EEE\t0x70C6\n0x9EEF\t0x70C7\n0x9EF0\t0x70C9\n0x9EF1\t0x70CB\n0x9EF2\t0x70CC\n0x9EF3\t0x70CD\n0x9EF4\t0x70CE\n0x9EF5\t0x70CF\n0x9EF6\t0x70D0\n0x9EF7\t0x70D1\n0x9EF8\t0x70D2\n0x9EF9\t0x70D3\n0x9EFA\t0x70D4\n0x9EFB\t0x70D5\n0x9EFC\t0x70D6\n0x9EFD\t0x70D7\n0x9EFE\t0x70DA\n0x9F40\t0x70DC\n0x9F41\t0x70DD\n0x9F42\t0x70DE\n0x9F43\t0x70E0\n0x9F44\t0x70E1\n0x9F45\t0x70E2\n0x9F46\t0x70E3\n0x9F47\t0x70E5\n0x9F48\t0x70EA\n0x9F49\t0x70EE\n0x9F4A\t0x70F0\n0x9F4B\t0x70F1\n0x9F4C\t0x70F2\n0x9F4D\t0x70F3\n0x9F4E\t0x70F4\n0x9F4F\t0x70F5\n0x9F50\t0x70F6\n0x9F51\t0x70F8\n0x9F52\t0x70FA\n0x9F53\t0x70FB\n0x9F54\t0x70FC\n0x9F55\t0x70FE\n0x9F56\t0x70FF\n0x9F57\t0x7100\n0x9F58\t0x7101\n0x9F59\t0x7102\n0x9F5A\t0x7103\n0x9F5B\t0x7104\n0x9F5C\t0x7105\n0x9F5D\t0x7106\n0x9F5E\t0x7107\n0x9F5F\t0x7108\n0x9F60\t0x710B\n0x9F61\t0x710C\n0x9F62\t0x710D\n0x9F63\t0x710E\n0x9F64\t0x710F\n0x9F65\t0x7111\n0x9F66\t0x7112\n0x9F67\t0x7114\n0x9F68\t0x7117\n0x9F69\t0x711B\n0x9F6A\t0x711C\n0x9F6B\t0x711D\n0x9F6C\t0x711E\n0x9F6D\t0x711F\n0x9F6E\t0x7120\n0x9F6F\t0x7121\n0x9F70\t0x7122\n0x9F71\t0x7123\n0x9F72\t0x7124\n0x9F73\t0x7125\n0x9F74\t0x7127\n0x9F75\t0x7128\n0x9F76\t0x7129\n0x9F77\t0x712A\n0x9F78\t0x712B\n0x9F79\t0x712C\n0x9F7A\t0x712D\n0x9F7B\t0x712E\n0x9F7C\t0x7132\n0x9F7D\t0x7133\n0x9F7E\t0x7134\n0x9F80\t0x7135\n0x9F81\t0x7137\n0x9F82\t0x7138\n0x9F83\t0x7139\n0x9F84\t0x713A\n0x9F85\t0x713B\n0x9F86\t0x713C\n0x9F87\t0x713D\n0x9F88\t0x713E\n0x9F89\t0x713F\n0x9F8A\t0x7140\n0x9F8B\t0x7141\n0x9F8C\t0x7142\n0x9F8D\t0x7143\n0x9F8E\t0x7144\n0x9F8F\t0x7146\n0x9F90\t0x7147\n0x9F91\t0x7148\n0x9F92\t0x7149\n0x9F93\t0x714B\n0x9F94\t0x714D\n0x9F95\t0x714F\n0x9F96\t0x7150\n0x9F97\t0x7151\n0x9F98\t0x7152\n0x9F99\t0x7153\n0x9F9A\t0x7154\n0x9F9B\t0x7155\n0x9F9C\t0x7156\n0x9F9D\t0x7157\n0x9F9E\t0x7158\n0x9F9F\t0x7159\n0x9FA0\t0x715A\n0x9FA1\t0x715B\n0x9FA2\t0x715D\n0x9FA3\t0x715F\n0x9FA4\t0x7160\n0x9FA5\t0x7161\n0x9FA6\t0x7162\n0x9FA7\t0x7163\n0x9FA8\t0x7165\n0x9FA9\t0x7169\n0x9FAA\t0x716A\n0x9FAB\t0x716B\n0x9FAC\t0x716C\n0x9FAD\t0x716D\n0x9FAE\t0x716F\n0x9FAF\t0x7170\n0x9FB0\t0x7171\n0x9FB1\t0x7174\n0x9FB2\t0x7175\n0x9FB3\t0x7176\n0x9FB4\t0x7177\n0x9FB5\t0x7179\n0x9FB6\t0x717B\n0x9FB7\t0x717C\n0x9FB8\t0x717E\n0x9FB9\t0x717F\n0x9FBA\t0x7180\n0x9FBB\t0x7181\n0x9FBC\t0x7182\n0x9FBD\t0x7183\n0x9FBE\t0x7185\n0x9FBF\t0x7186\n0x9FC0\t0x7187\n0x9FC1\t0x7188\n0x9FC2\t0x7189\n0x9FC3\t0x718B\n0x9FC4\t0x718C\n0x9FC5\t0x718D\n0x9FC6\t0x718E\n0x9FC7\t0x7190\n0x9FC8\t0x7191\n0x9FC9\t0x7192\n0x9FCA\t0x7193\n0x9FCB\t0x7195\n0x9FCC\t0x7196\n0x9FCD\t0x7197\n0x9FCE\t0x719A\n0x9FCF\t0x719B\n0x9FD0\t0x719C\n0x9FD1\t0x719D\n0x9FD2\t0x719E\n0x9FD3\t0x71A1\n0x9FD4\t0x71A2\n0x9FD5\t0x71A3\n0x9FD6\t0x71A4\n0x9FD7\t0x71A5\n0x9FD8\t0x71A6\n0x9FD9\t0x71A7\n0x9FDA\t0x71A9\n0x9FDB\t0x71AA\n0x9FDC\t0x71AB\n0x9FDD\t0x71AD\n0x9FDE\t0x71AE\n0x9FDF\t0x71AF\n0x9FE0\t0x71B0\n0x9FE1\t0x71B1\n0x9FE2\t0x71B2\n0x9FE3\t0x71B4\n0x9FE4\t0x71B6\n0x9FE5\t0x71B7\n0x9FE6\t0x71B8\n0x9FE7\t0x71BA\n0x9FE8\t0x71BB\n0x9FE9\t0x71BC\n0x9FEA\t0x71BD\n0x9FEB\t0x71BE\n0x9FEC\t0x71BF\n0x9FED\t0x71C0\n0x9FEE\t0x71C1\n0x9FEF\t0x71C2\n0x9FF0\t0x71C4\n0x9FF1\t0x71C5\n0x9FF2\t0x71C6\n0x9FF3\t0x71C7\n0x9FF4\t0x71C8\n0x9FF5\t0x71C9\n0x9FF6\t0x71CA\n0x9FF7\t0x71CB\n0x9FF8\t0x71CC\n0x9FF9\t0x71CD\n0x9FFA\t0x71CF\n0x9FFB\t0x71D0\n0x9FFC\t0x71D1\n0x9FFD\t0x71D2\n0x9FFE\t0x71D3\n0xA040\t0x71D6\n0xA041\t0x71D7\n0xA042\t0x71D8\n0xA043\t0x71D9\n0xA044\t0x71DA\n0xA045\t0x71DB\n0xA046\t0x71DC\n0xA047\t0x71DD\n0xA048\t0x71DE\n0xA049\t0x71DF\n0xA04A\t0x71E1\n0xA04B\t0x71E2\n0xA04C\t0x71E3\n0xA04D\t0x71E4\n0xA04E\t0x71E6\n0xA04F\t0x71E8\n0xA050\t0x71E9\n0xA051\t0x71EA\n0xA052\t0x71EB\n0xA053\t0x71EC\n0xA054\t0x71ED\n0xA055\t0x71EF\n0xA056\t0x71F0\n0xA057\t0x71F1\n0xA058\t0x71F2\n0xA059\t0x71F3\n0xA05A\t0x71F4\n0xA05B\t0x71F5\n0xA05C\t0x71F6\n0xA05D\t0x71F7\n0xA05E\t0x71F8\n0xA05F\t0x71FA\n0xA060\t0x71FB\n0xA061\t0x71FC\n0xA062\t0x71FD\n0xA063\t0x71FE\n0xA064\t0x71FF\n0xA065\t0x7200\n0xA066\t0x7201\n0xA067\t0x7202\n0xA068\t0x7203\n0xA069\t0x7204\n0xA06A\t0x7205\n0xA06B\t0x7207\n0xA06C\t0x7208\n0xA06D\t0x7209\n0xA06E\t0x720A\n0xA06F\t0x720B\n0xA070\t0x720C\n0xA071\t0x720D\n0xA072\t0x720E\n0xA073\t0x720F\n0xA074\t0x7210\n0xA075\t0x7211\n0xA076\t0x7212\n0xA077\t0x7213\n0xA078\t0x7214\n0xA079\t0x7215\n0xA07A\t0x7216\n0xA07B\t0x7217\n0xA07C\t0x7218\n0xA07D\t0x7219\n0xA07E\t0x721A\n0xA080\t0x721B\n0xA081\t0x721C\n0xA082\t0x721E\n0xA083\t0x721F\n0xA084\t0x7220\n0xA085\t0x7221\n0xA086\t0x7222\n0xA087\t0x7223\n0xA088\t0x7224\n0xA089\t0x7225\n0xA08A\t0x7226\n0xA08B\t0x7227\n0xA08C\t0x7229\n0xA08D\t0x722B\n0xA08E\t0x722D\n0xA08F\t0x722E\n0xA090\t0x722F\n0xA091\t0x7232\n0xA092\t0x7233\n0xA093\t0x7234\n0xA094\t0x723A\n0xA095\t0x723C\n0xA096\t0x723E\n0xA097\t0x7240\n0xA098\t0x7241\n0xA099\t0x7242\n0xA09A\t0x7243\n0xA09B\t0x7244\n0xA09C\t0x7245\n0xA09D\t0x7246\n0xA09E\t0x7249\n0xA09F\t0x724A\n0xA0A0\t0x724B\n0xA0A1\t0x724E\n0xA0A2\t0x724F\n0xA0A3\t0x7250\n0xA0A4\t0x7251\n0xA0A5\t0x7253\n0xA0A6\t0x7254\n0xA0A7\t0x7255\n0xA0A8\t0x7257\n0xA0A9\t0x7258\n0xA0AA\t0x725A\n0xA0AB\t0x725C\n0xA0AC\t0x725E\n0xA0AD\t0x7260\n0xA0AE\t0x7263\n0xA0AF\t0x7264\n0xA0B0\t0x7265\n0xA0B1\t0x7268\n0xA0B2\t0x726A\n0xA0B3\t0x726B\n0xA0B4\t0x726C\n0xA0B5\t0x726D\n0xA0B6\t0x7270\n0xA0B7\t0x7271\n0xA0B8\t0x7273\n0xA0B9\t0x7274\n0xA0BA\t0x7276\n0xA0BB\t0x7277\n0xA0BC\t0x7278\n0xA0BD\t0x727B\n0xA0BE\t0x727C\n0xA0BF\t0x727D\n0xA0C0\t0x7282\n0xA0C1\t0x7283\n0xA0C2\t0x7285\n0xA0C3\t0x7286\n0xA0C4\t0x7287\n0xA0C5\t0x7288\n0xA0C6\t0x7289\n0xA0C7\t0x728C\n0xA0C8\t0x728E\n0xA0C9\t0x7290\n0xA0CA\t0x7291\n0xA0CB\t0x7293\n0xA0CC\t0x7294\n0xA0CD\t0x7295\n0xA0CE\t0x7296\n0xA0CF\t0x7297\n0xA0D0\t0x7298\n0xA0D1\t0x7299\n0xA0D2\t0x729A\n0xA0D3\t0x729B\n0xA0D4\t0x729C\n0xA0D5\t0x729D\n0xA0D6\t0x729E\n0xA0D7\t0x72A0\n0xA0D8\t0x72A1\n0xA0D9\t0x72A2\n0xA0DA\t0x72A3\n0xA0DB\t0x72A4\n0xA0DC\t0x72A5\n0xA0DD\t0x72A6\n0xA0DE\t0x72A7\n0xA0DF\t0x72A8\n0xA0E0\t0x72A9\n0xA0E1\t0x72AA\n0xA0E2\t0x72AB\n0xA0E3\t0x72AE\n0xA0E4\t0x72B1\n0xA0E5\t0x72B2\n0xA0E6\t0x72B3\n0xA0E7\t0x72B5\n0xA0E8\t0x72BA\n0xA0E9\t0x72BB\n0xA0EA\t0x72BC\n0xA0EB\t0x72BD\n0xA0EC\t0x72BE\n0xA0ED\t0x72BF\n0xA0EE\t0x72C0\n0xA0EF\t0x72C5\n0xA0F0\t0x72C6\n0xA0F1\t0x72C7\n0xA0F2\t0x72C9\n0xA0F3\t0x72CA\n0xA0F4\t0x72CB\n0xA0F5\t0x72CC\n0xA0F6\t0x72CF\n0xA0F7\t0x72D1\n0xA0F8\t0x72D3\n0xA0F9\t0x72D4\n0xA0FA\t0x72D5\n0xA0FB\t0x72D6\n0xA0FC\t0x72D8\n0xA0FD\t0x72DA\n0xA0FE\t0x72DB\n0xA1A1\t0x3000\n0xA1A2\t0x3001\n0xA1A3\t0x3002\n0xA1A4\t0x00B7\n0xA1A5\t0x02C9\n0xA1A6\t0x02C7\n0xA1A7\t0x00A8\n0xA1A8\t0x3003\n0xA1A9\t0x3005\n0xA1AA\t0x2014\n0xA1AB\t0xFF5E\n0xA1AC\t0x2016\n0xA1AD\t0x2026\n0xA1AE\t0x2018\n0xA1AF\t0x2019\n0xA1B0\t0x201C\n0xA1B1\t0x201D\n0xA1B2\t0x3014\n0xA1B3\t0x3015\n0xA1B4\t0x3008\n0xA1B5\t0x3009\n0xA1B6\t0x300A\n0xA1B7\t0x300B\n0xA1B8\t0x300C\n0xA1B9\t0x300D\n0xA1BA\t0x300E\n0xA1BB\t0x300F\n0xA1BC\t0x3016\n0xA1BD\t0x3017\n0xA1BE\t0x3010\n0xA1BF\t0x3011\n0xA1C0\t0x00B1\n0xA1C1\t0x00D7\n0xA1C2\t0x00F7\n0xA1C3\t0x2236\n0xA1C4\t0x2227\n0xA1C5\t0x2228\n0xA1C6\t0x2211\n0xA1C7\t0x220F\n0xA1C8\t0x222A\n0xA1C9\t0x2229\n0xA1CA\t0x2208\n0xA1CB\t0x2237\n0xA1CC\t0x221A\n0xA1CD\t0x22A5\n0xA1CE\t0x2225\n0xA1CF\t0x2220\n0xA1D0\t0x2312\n0xA1D1\t0x2299\n0xA1D2\t0x222B\n0xA1D3\t0x222E\n0xA1D4\t0x2261\n0xA1D5\t0x224C\n0xA1D6\t0x2248\n0xA1D7\t0x223D\n0xA1D8\t0x221D\n0xA1D9\t0x2260\n0xA1DA\t0x226E\n0xA1DB\t0x226F\n0xA1DC\t0x2264\n0xA1DD\t0x2265\n0xA1DE\t0x221E\n0xA1DF\t0x2235\n0xA1E0\t0x2234\n0xA1E1\t0x2642\n0xA1E2\t0x2640\n0xA1E3\t0x00B0\n0xA1E4\t0x2032\n0xA1E5\t0x2033\n0xA1E6\t0x2103\n0xA1E7\t0xFF04\n0xA1E8\t0x00A4\n0xA1E9\t0xFFE0\n0xA1EA\t0xFFE1\n0xA1EB\t0x2030\n0xA1EC\t0x00A7\n0xA1ED\t0x2116\n0xA1EE\t0x2606\n0xA1EF\t0x2605\n0xA1F0\t0x25CB\n0xA1F1\t0x25CF\n0xA1F2\t0x25CE\n0xA1F3\t0x25C7\n0xA1F4\t0x25C6\n0xA1F5\t0x25A1\n0xA1F6\t0x25A0\n0xA1F7\t0x25B3\n0xA1F8\t0x25B2\n0xA1F9\t0x203B\n0xA1FA\t0x2192\n0xA1FB\t0x2190\n0xA1FC\t0x2191\n0xA1FD\t0x2193\n0xA1FE\t0x3013\n0xA2A1\t0x2170\n0xA2A2\t0x2171\n0xA2A3\t0x2172\n0xA2A4\t0x2173\n0xA2A5\t0x2174\n0xA2A6\t0x2175\n0xA2A7\t0x2176\n0xA2A8\t0x2177\n0xA2A9\t0x2178\n0xA2AA\t0x2179\n0xA2B1\t0x2488\n0xA2B2\t0x2489\n0xA2B3\t0x248A\n0xA2B4\t0x248B\n0xA2B5\t0x248C\n0xA2B6\t0x248D\n0xA2B7\t0x248E\n0xA2B8\t0x248F\n0xA2B9\t0x2490\n0xA2BA\t0x2491\n0xA2BB\t0x2492\n0xA2BC\t0x2493\n0xA2BD\t0x2494\n0xA2BE\t0x2495\n0xA2BF\t0x2496\n0xA2C0\t0x2497\n0xA2C1\t0x2498\n0xA2C2\t0x2499\n0xA2C3\t0x249A\n0xA2C4\t0x249B\n0xA2C5\t0x2474\n0xA2C6\t0x2475\n0xA2C7\t0x2476\n0xA2C8\t0x2477\n0xA2C9\t0x2478\n0xA2CA\t0x2479\n0xA2CB\t0x247A\n0xA2CC\t0x247B\n0xA2CD\t0x247C\n0xA2CE\t0x247D\n0xA2CF\t0x247E\n0xA2D0\t0x247F\n0xA2D1\t0x2480\n0xA2D2\t0x2481\n0xA2D3\t0x2482\n0xA2D4\t0x2483\n0xA2D5\t0x2484\n0xA2D6\t0x2485\n0xA2D7\t0x2486\n0xA2D8\t0x2487\n0xA2D9\t0x2460\n0xA2DA\t0x2461\n0xA2DB\t0x2462\n0xA2DC\t0x2463\n0xA2DD\t0x2464\n0xA2DE\t0x2465\n0xA2DF\t0x2466\n0xA2E0\t0x2467\n0xA2E1\t0x2468\n0xA2E2\t0x2469\n0xA2E5\t0x3220\n0xA2E6\t0x3221\n0xA2E7\t0x3222\n0xA2E8\t0x3223\n0xA2E9\t0x3224\n0xA2EA\t0x3225\n0xA2EB\t0x3226\n0xA2EC\t0x3227\n0xA2ED\t0x3228\n0xA2EE\t0x3229\n0xA2F1\t0x2160\n0xA2F2\t0x2161\n0xA2F3\t0x2162\n0xA2F4\t0x2163\n0xA2F5\t0x2164\n0xA2F6\t0x2165\n0xA2F7\t0x2166\n0xA2F8\t0x2167\n0xA2F9\t0x2168\n0xA2FA\t0x2169\n0xA2FB\t0x216A\n0xA2FC\t0x216B\n0xA3A1\t0xFF01\n0xA3A2\t0xFF02\n0xA3A3\t0xFF03\n0xA3A4\t0xFFE5\n0xA3A5\t0xFF05\n0xA3A6\t0xFF06\n0xA3A7\t0xFF07\n0xA3A8\t0xFF08\n0xA3A9\t0xFF09\n0xA3AA\t0xFF0A\n0xA3AB\t0xFF0B\n0xA3AC\t0xFF0C\n0xA3AD\t0xFF0D\n0xA3AE\t0xFF0E\n0xA3AF\t0xFF0F\n0xA3B0\t0xFF10\n0xA3B1\t0xFF11\n0xA3B2\t0xFF12\n0xA3B3\t0xFF13\n0xA3B4\t0xFF14\n0xA3B5\t0xFF15\n0xA3B6\t0xFF16\n0xA3B7\t0xFF17\n0xA3B8\t0xFF18\n0xA3B9\t0xFF19\n0xA3BA\t0xFF1A\n0xA3BB\t0xFF1B\n0xA3BC\t0xFF1C\n0xA3BD\t0xFF1D\n0xA3BE\t0xFF1E\n0xA3BF\t0xFF1F\n0xA3C0\t0xFF20\n0xA3C1\t0xFF21\n0xA3C2\t0xFF22\n0xA3C3\t0xFF23\n0xA3C4\t0xFF24\n0xA3C5\t0xFF25\n0xA3C6\t0xFF26\n0xA3C7\t0xFF27\n0xA3C8\t0xFF28\n0xA3C9\t0xFF29\n0xA3CA\t0xFF2A\n0xA3CB\t0xFF2B\n0xA3CC\t0xFF2C\n0xA3CD\t0xFF2D\n0xA3CE\t0xFF2E\n0xA3CF\t0xFF2F\n0xA3D0\t0xFF30\n0xA3D1\t0xFF31\n0xA3D2\t0xFF32\n0xA3D3\t0xFF33\n0xA3D4\t0xFF34\n0xA3D5\t0xFF35\n0xA3D6\t0xFF36\n0xA3D7\t0xFF37\n0xA3D8\t0xFF38\n0xA3D9\t0xFF39\n0xA3DA\t0xFF3A\n0xA3DB\t0xFF3B\n0xA3DC\t0xFF3C\n0xA3DD\t0xFF3D\n0xA3DE\t0xFF3E\n0xA3DF\t0xFF3F\n0xA3E0\t0xFF40\n0xA3E1\t0xFF41\n0xA3E2\t0xFF42\n0xA3E3\t0xFF43\n0xA3E4\t0xFF44\n0xA3E5\t0xFF45\n0xA3E6\t0xFF46\n0xA3E7\t0xFF47\n0xA3E8\t0xFF48\n0xA3E9\t0xFF49\n0xA3EA\t0xFF4A\n0xA3EB\t0xFF4B\n0xA3EC\t0xFF4C\n0xA3ED\t0xFF4D\n0xA3EE\t0xFF4E\n0xA3EF\t0xFF4F\n0xA3F0\t0xFF50\n0xA3F1\t0xFF51\n0xA3F2\t0xFF52\n0xA3F3\t0xFF53\n0xA3F4\t0xFF54\n0xA3F5\t0xFF55\n0xA3F6\t0xFF56\n0xA3F7\t0xFF57\n0xA3F8\t0xFF58\n0xA3F9\t0xFF59\n0xA3FA\t0xFF5A\n0xA3FB\t0xFF5B\n0xA3FC\t0xFF5C\n0xA3FD\t0xFF5D\n0xA3FE\t0xFFE3\n0xA4A1\t0x3041\n0xA4A2\t0x3042\n0xA4A3\t0x3043\n0xA4A4\t0x3044\n0xA4A5\t0x3045\n0xA4A6\t0x3046\n0xA4A7\t0x3047\n0xA4A8\t0x3048\n0xA4A9\t0x3049\n0xA4AA\t0x304A\n0xA4AB\t0x304B\n0xA4AC\t0x304C\n0xA4AD\t0x304D\n0xA4AE\t0x304E\n0xA4AF\t0x304F\n0xA4B0\t0x3050\n0xA4B1\t0x3051\n0xA4B2\t0x3052\n0xA4B3\t0x3053\n0xA4B4\t0x3054\n0xA4B5\t0x3055\n0xA4B6\t0x3056\n0xA4B7\t0x3057\n0xA4B8\t0x3058\n0xA4B9\t0x3059\n0xA4BA\t0x305A\n0xA4BB\t0x305B\n0xA4BC\t0x305C\n0xA4BD\t0x305D\n0xA4BE\t0x305E\n0xA4BF\t0x305F\n0xA4C0\t0x3060\n0xA4C1\t0x3061\n0xA4C2\t0x3062\n0xA4C3\t0x3063\n0xA4C4\t0x3064\n0xA4C5\t0x3065\n0xA4C6\t0x3066\n0xA4C7\t0x3067\n0xA4C8\t0x3068\n0xA4C9\t0x3069\n0xA4CA\t0x306A\n0xA4CB\t0x306B\n0xA4CC\t0x306C\n0xA4CD\t0x306D\n0xA4CE\t0x306E\n0xA4CF\t0x306F\n0xA4D0\t0x3070\n0xA4D1\t0x3071\n0xA4D2\t0x3072\n0xA4D3\t0x3073\n0xA4D4\t0x3074\n0xA4D5\t0x3075\n0xA4D6\t0x3076\n0xA4D7\t0x3077\n0xA4D8\t0x3078\n0xA4D9\t0x3079\n0xA4DA\t0x307A\n0xA4DB\t0x307B\n0xA4DC\t0x307C\n0xA4DD\t0x307D\n0xA4DE\t0x307E\n0xA4DF\t0x307F\n0xA4E0\t0x3080\n0xA4E1\t0x3081\n0xA4E2\t0x3082\n0xA4E3\t0x3083\n0xA4E4\t0x3084\n0xA4E5\t0x3085\n0xA4E6\t0x3086\n0xA4E7\t0x3087\n0xA4E8\t0x3088\n0xA4E9\t0x3089\n0xA4EA\t0x308A\n0xA4EB\t0x308B\n0xA4EC\t0x308C\n0xA4ED\t0x308D\n0xA4EE\t0x308E\n0xA4EF\t0x308F\n0xA4F0\t0x3090\n0xA4F1\t0x3091\n0xA4F2\t0x3092\n0xA4F3\t0x3093\n0xA5A1\t0x30A1\n0xA5A2\t0x30A2\n0xA5A3\t0x30A3\n0xA5A4\t0x30A4\n0xA5A5\t0x30A5\n0xA5A6\t0x30A6\n0xA5A7\t0x30A7\n0xA5A8\t0x30A8\n0xA5A9\t0x30A9\n0xA5AA\t0x30AA\n0xA5AB\t0x30AB\n0xA5AC\t0x30AC\n0xA5AD\t0x30AD\n0xA5AE\t0x30AE\n0xA5AF\t0x30AF\n0xA5B0\t0x30B0\n0xA5B1\t0x30B1\n0xA5B2\t0x30B2\n0xA5B3\t0x30B3\n0xA5B4\t0x30B4\n0xA5B5\t0x30B5\n0xA5B6\t0x30B6\n0xA5B7\t0x30B7\n0xA5B8\t0x30B8\n0xA5B9\t0x30B9\n0xA5BA\t0x30BA\n0xA5BB\t0x30BB\n0xA5BC\t0x30BC\n0xA5BD\t0x30BD\n0xA5BE\t0x30BE\n0xA5BF\t0x30BF\n0xA5C0\t0x30C0\n0xA5C1\t0x30C1\n0xA5C2\t0x30C2\n0xA5C3\t0x30C3\n0xA5C4\t0x30C4\n0xA5C5\t0x30C5\n0xA5C6\t0x30C6\n0xA5C7\t0x30C7\n0xA5C8\t0x30C8\n0xA5C9\t0x30C9\n0xA5CA\t0x30CA\n0xA5CB\t0x30CB\n0xA5CC\t0x30CC\n0xA5CD\t0x30CD\n0xA5CE\t0x30CE\n0xA5CF\t0x30CF\n0xA5D0\t0x30D0\n0xA5D1\t0x30D1\n0xA5D2\t0x30D2\n0xA5D3\t0x30D3\n0xA5D4\t0x30D4\n0xA5D5\t0x30D5\n0xA5D6\t0x30D6\n0xA5D7\t0x30D7\n0xA5D8\t0x30D8\n0xA5D9\t0x30D9\n0xA5DA\t0x30DA\n0xA5DB\t0x30DB\n0xA5DC\t0x30DC\n0xA5DD\t0x30DD\n0xA5DE\t0x30DE\n0xA5DF\t0x30DF\n0xA5E0\t0x30E0\n0xA5E1\t0x30E1\n0xA5E2\t0x30E2\n0xA5E3\t0x30E3\n0xA5E4\t0x30E4\n0xA5E5\t0x30E5\n0xA5E6\t0x30E6\n0xA5E7\t0x30E7\n0xA5E8\t0x30E8\n0xA5E9\t0x30E9\n0xA5EA\t0x30EA\n0xA5EB\t0x30EB\n0xA5EC\t0x30EC\n0xA5ED\t0x30ED\n0xA5EE\t0x30EE\n0xA5EF\t0x30EF\n0xA5F0\t0x30F0\n0xA5F1\t0x30F1\n0xA5F2\t0x30F2\n0xA5F3\t0x30F3\n0xA5F4\t0x30F4\n0xA5F5\t0x30F5\n0xA5F6\t0x30F6\n0xA6A1\t0x0391\n0xA6A2\t0x0392\n0xA6A3\t0x0393\n0xA6A4\t0x0394\n0xA6A5\t0x0395\n0xA6A6\t0x0396\n0xA6A7\t0x0397\n0xA6A8\t0x0398\n0xA6A9\t0x0399\n0xA6AA\t0x039A\n0xA6AB\t0x039B\n0xA6AC\t0x039C\n0xA6AD\t0x039D\n0xA6AE\t0x039E\n0xA6AF\t0x039F\n0xA6B0\t0x03A0\n0xA6B1\t0x03A1\n0xA6B2\t0x03A3\n0xA6B3\t0x03A4\n0xA6B4\t0x03A5\n0xA6B5\t0x03A6\n0xA6B6\t0x03A7\n0xA6B7\t0x03A8\n0xA6B8\t0x03A9\n0xA6C1\t0x03B1\n0xA6C2\t0x03B2\n0xA6C3\t0x03B3\n0xA6C4\t0x03B4\n0xA6C5\t0x03B5\n0xA6C6\t0x03B6\n0xA6C7\t0x03B7\n0xA6C8\t0x03B8\n0xA6C9\t0x03B9\n0xA6CA\t0x03BA\n0xA6CB\t0x03BB\n0xA6CC\t0x03BC\n0xA6CD\t0x03BD\n0xA6CE\t0x03BE\n0xA6CF\t0x03BF\n0xA6D0\t0x03C0\n0xA6D1\t0x03C1\n0xA6D2\t0x03C3\n0xA6D3\t0x03C4\n0xA6D4\t0x03C5\n0xA6D5\t0x03C6\n0xA6D6\t0x03C7\n0xA6D7\t0x03C8\n0xA6D8\t0x03C9\n0xA6E0\t0xFE35\n0xA6E1\t0xFE36\n0xA6E2\t0xFE39\n0xA6E3\t0xFE3A\n0xA6E4\t0xFE3F\n0xA6E5\t0xFE40\n0xA6E6\t0xFE3D\n0xA6E7\t0xFE3E\n0xA6E8\t0xFE41\n0xA6E9\t0xFE42\n0xA6EA\t0xFE43\n0xA6EB\t0xFE44\n0xA6EE\t0xFE3B\n0xA6EF\t0xFE3C\n0xA6F0\t0xFE37\n0xA6F1\t0xFE38\n0xA6F2\t0xFE31\n0xA6F4\t0xFE33\n0xA6F5\t0xFE34\n0xA7A1\t0x0410\n0xA7A2\t0x0411\n0xA7A3\t0x0412\n0xA7A4\t0x0413\n0xA7A5\t0x0414\n0xA7A6\t0x0415\n0xA7A7\t0x0401\n0xA7A8\t0x0416\n0xA7A9\t0x0417\n0xA7AA\t0x0418\n0xA7AB\t0x0419\n0xA7AC\t0x041A\n0xA7AD\t0x041B\n0xA7AE\t0x041C\n0xA7AF\t0x041D\n0xA7B0\t0x041E\n0xA7B1\t0x041F\n0xA7B2\t0x0420\n0xA7B3\t0x0421\n0xA7B4\t0x0422\n0xA7B5\t0x0423\n0xA7B6\t0x0424\n0xA7B7\t0x0425\n0xA7B8\t0x0426\n0xA7B9\t0x0427\n0xA7BA\t0x0428\n0xA7BB\t0x0429\n0xA7BC\t0x042A\n0xA7BD\t0x042B\n0xA7BE\t0x042C\n0xA7BF\t0x042D\n0xA7C0\t0x042E\n0xA7C1\t0x042F\n0xA7D1\t0x0430\n0xA7D2\t0x0431\n0xA7D3\t0x0432\n0xA7D4\t0x0433\n0xA7D5\t0x0434\n0xA7D6\t0x0435\n0xA7D7\t0x0451\n0xA7D8\t0x0436\n0xA7D9\t0x0437\n0xA7DA\t0x0438\n0xA7DB\t0x0439\n0xA7DC\t0x043A\n0xA7DD\t0x043B\n0xA7DE\t0x043C\n0xA7DF\t0x043D\n0xA7E0\t0x043E\n0xA7E1\t0x043F\n0xA7E2\t0x0440\n0xA7E3\t0x0441\n0xA7E4\t0x0442\n0xA7E5\t0x0443\n0xA7E6\t0x0444\n0xA7E7\t0x0445\n0xA7E8\t0x0446\n0xA7E9\t0x0447\n0xA7EA\t0x0448\n0xA7EB\t0x0449\n0xA7EC\t0x044A\n0xA7ED\t0x044B\n0xA7EE\t0x044C\n0xA7EF\t0x044D\n0xA7F0\t0x044E\n0xA7F1\t0x044F\n0xA840\t0x02CA\n0xA841\t0x02CB\n0xA842\t0x02D9\n0xA843\t0x2013\n0xA844\t0x2015\n0xA845\t0x2025\n0xA846\t0x2035\n0xA847\t0x2105\n0xA848\t0x2109\n0xA849\t0x2196\n0xA84A\t0x2197\n0xA84B\t0x2198\n0xA84C\t0x2199\n0xA84D\t0x2215\n0xA84E\t0x221F\n0xA84F\t0x2223\n0xA850\t0x2252\n0xA851\t0x2266\n0xA852\t0x2267\n0xA853\t0x22BF\n0xA854\t0x2550\n0xA855\t0x2551\n0xA856\t0x2552\n0xA857\t0x2553\n0xA858\t0x2554\n0xA859\t0x2555\n0xA85A\t0x2556\n0xA85B\t0x2557\n0xA85C\t0x2558\n0xA85D\t0x2559\n0xA85E\t0x255A\n0xA85F\t0x255B\n0xA860\t0x255C\n0xA861\t0x255D\n0xA862\t0x255E\n0xA863\t0x255F\n0xA864\t0x2560\n0xA865\t0x2561\n0xA866\t0x2562\n0xA867\t0x2563\n0xA868\t0x2564\n0xA869\t0x2565\n0xA86A\t0x2566\n0xA86B\t0x2567\n0xA86C\t0x2568\n0xA86D\t0x2569\n0xA86E\t0x256A\n0xA86F\t0x256B\n0xA870\t0x256C\n0xA871\t0x256D\n0xA872\t0x256E\n0xA873\t0x256F\n0xA874\t0x2570\n0xA875\t0x2571\n0xA876\t0x2572\n0xA877\t0x2573\n0xA878\t0x2581\n0xA879\t0x2582\n0xA87A\t0x2583\n0xA87B\t0x2584\n0xA87C\t0x2585\n0xA87D\t0x2586\n0xA87E\t0x2587\n0xA880\t0x2588\n0xA881\t0x2589\n0xA882\t0x258A\n0xA883\t0x258B\n0xA884\t0x258C\n0xA885\t0x258D\n0xA886\t0x258E\n0xA887\t0x258F\n0xA888\t0x2593\n0xA889\t0x2594\n0xA88A\t0x2595\n0xA88B\t0x25BC\n0xA88C\t0x25BD\n0xA88D\t0x25E2\n0xA88E\t0x25E3\n0xA88F\t0x25E4\n0xA890\t0x25E5\n0xA891\t0x2609\n0xA892\t0x2295\n0xA893\t0x3012\n0xA894\t0x301D\n0xA895\t0x301E\n0xA8A1\t0x0101\n0xA8A2\t0x00E1\n0xA8A3\t0x01CE\n0xA8A4\t0x00E0\n0xA8A5\t0x0113\n0xA8A6\t0x00E9\n0xA8A7\t0x011B\n0xA8A8\t0x00E8\n0xA8A9\t0x012B\n0xA8AA\t0x00ED\n0xA8AB\t0x01D0\n0xA8AC\t0x00EC\n0xA8AD\t0x014D\n0xA8AE\t0x00F3\n0xA8AF\t0x01D2\n0xA8B0\t0x00F2\n0xA8B1\t0x016B\n0xA8B2\t0x00FA\n0xA8B3\t0x01D4\n0xA8B4\t0x00F9\n0xA8B5\t0x01D6\n0xA8B6\t0x01D8\n0xA8B7\t0x01DA\n0xA8B8\t0x01DC\n0xA8B9\t0x00FC\n0xA8BA\t0x00EA\n0xA8BB\t0x0251\n0xA8BD\t0x0144\n0xA8BE\t0x0148\n0xA8C0\t0x0261\n0xA8C5\t0x3105\n0xA8C6\t0x3106\n0xA8C7\t0x3107\n0xA8C8\t0x3108\n0xA8C9\t0x3109\n0xA8CA\t0x310A\n0xA8CB\t0x310B\n0xA8CC\t0x310C\n0xA8CD\t0x310D\n0xA8CE\t0x310E\n0xA8CF\t0x310F\n0xA8D0\t0x3110\n0xA8D1\t0x3111\n0xA8D2\t0x3112\n0xA8D3\t0x3113\n0xA8D4\t0x3114\n0xA8D5\t0x3115\n0xA8D6\t0x3116\n0xA8D7\t0x3117\n0xA8D8\t0x3118\n0xA8D9\t0x3119\n0xA8DA\t0x311A\n0xA8DB\t0x311B\n0xA8DC\t0x311C\n0xA8DD\t0x311D\n0xA8DE\t0x311E\n0xA8DF\t0x311F\n0xA8E0\t0x3120\n0xA8E1\t0x3121\n0xA8E2\t0x3122\n0xA8E3\t0x3123\n0xA8E4\t0x3124\n0xA8E5\t0x3125\n0xA8E6\t0x3126\n0xA8E7\t0x3127\n0xA8E8\t0x3128\n0xA8E9\t0x3129\n0xA940\t0x3021\n0xA941\t0x3022\n0xA942\t0x3023\n0xA943\t0x3024\n0xA944\t0x3025\n0xA945\t0x3026\n0xA946\t0x3027\n0xA947\t0x3028\n0xA948\t0x3029\n0xA949\t0x32A3\n0xA94A\t0x338E\n0xA94B\t0x338F\n0xA94C\t0x339C\n0xA94D\t0x339D\n0xA94E\t0x339E\n0xA94F\t0x33A1\n0xA950\t0x33C4\n0xA951\t0x33CE\n0xA952\t0x33D1\n0xA953\t0x33D2\n0xA954\t0x33D5\n0xA955\t0xFE30\n0xA956\t0xFFE2\n0xA957\t0xFFE4\n0xA959\t0x2121\n0xA95A\t0x3231\n0xA95C\t0x2010\n0xA960\t0x30FC\n0xA961\t0x309B\n0xA962\t0x309C\n0xA963\t0x30FD\n0xA964\t0x30FE\n0xA965\t0x3006\n0xA966\t0x309D\n0xA967\t0x309E\n0xA968\t0xFE49\n0xA969\t0xFE4A\n0xA96A\t0xFE4B\n0xA96B\t0xFE4C\n0xA96C\t0xFE4D\n0xA96D\t0xFE4E\n0xA96E\t0xFE4F\n0xA96F\t0xFE50\n0xA970\t0xFE51\n0xA971\t0xFE52\n0xA972\t0xFE54\n0xA973\t0xFE55\n0xA974\t0xFE56\n0xA975\t0xFE57\n0xA976\t0xFE59\n0xA977\t0xFE5A\n0xA978\t0xFE5B\n0xA979\t0xFE5C\n0xA97A\t0xFE5D\n0xA97B\t0xFE5E\n0xA97C\t0xFE5F\n0xA97D\t0xFE60\n0xA97E\t0xFE61\n0xA980\t0xFE62\n0xA981\t0xFE63\n0xA982\t0xFE64\n0xA983\t0xFE65\n0xA984\t0xFE66\n0xA985\t0xFE68\n0xA986\t0xFE69\n0xA987\t0xFE6A\n0xA988\t0xFE6B\n0xA996\t0x3007\n0xA9A4\t0x2500\n0xA9A5\t0x2501\n0xA9A6\t0x2502\n0xA9A7\t0x2503\n0xA9A8\t0x2504\n0xA9A9\t0x2505\n0xA9AA\t0x2506\n0xA9AB\t0x2507\n0xA9AC\t0x2508\n0xA9AD\t0x2509\n0xA9AE\t0x250A\n0xA9AF\t0x250B\n0xA9B0\t0x250C\n0xA9B1\t0x250D\n0xA9B2\t0x250E\n0xA9B3\t0x250F\n0xA9B4\t0x2510\n0xA9B5\t0x2511\n0xA9B6\t0x2512\n0xA9B7\t0x2513\n0xA9B8\t0x2514\n0xA9B9\t0x2515\n0xA9BA\t0x2516\n0xA9BB\t0x2517\n0xA9BC\t0x2518\n0xA9BD\t0x2519\n0xA9BE\t0x251A\n0xA9BF\t0x251B\n0xA9C0\t0x251C\n0xA9C1\t0x251D\n0xA9C2\t0x251E\n0xA9C3\t0x251F\n0xA9C4\t0x2520\n0xA9C5\t0x2521\n0xA9C6\t0x2522\n0xA9C7\t0x2523\n0xA9C8\t0x2524\n0xA9C9\t0x2525\n0xA9CA\t0x2526\n0xA9CB\t0x2527\n0xA9CC\t0x2528\n0xA9CD\t0x2529\n0xA9CE\t0x252A\n0xA9CF\t0x252B\n0xA9D0\t0x252C\n0xA9D1\t0x252D\n0xA9D2\t0x252E\n0xA9D3\t0x252F\n0xA9D4\t0x2530\n0xA9D5\t0x2531\n0xA9D6\t0x2532\n0xA9D7\t0x2533\n0xA9D8\t0x2534\n0xA9D9\t0x2535\n0xA9DA\t0x2536\n0xA9DB\t0x2537\n0xA9DC\t0x2538\n0xA9DD\t0x2539\n0xA9DE\t0x253A\n0xA9DF\t0x253B\n0xA9E0\t0x253C\n0xA9E1\t0x253D\n0xA9E2\t0x253E\n0xA9E3\t0x253F\n0xA9E4\t0x2540\n0xA9E5\t0x2541\n0xA9E6\t0x2542\n0xA9E7\t0x2543\n0xA9E8\t0x2544\n0xA9E9\t0x2545\n0xA9EA\t0x2546\n0xA9EB\t0x2547\n0xA9EC\t0x2548\n0xA9ED\t0x2549\n0xA9EE\t0x254A\n0xA9EF\t0x254B\n0xAA40\t0x72DC\n0xAA41\t0x72DD\n0xAA42\t0x72DF\n0xAA43\t0x72E2\n0xAA44\t0x72E3\n0xAA45\t0x72E4\n0xAA46\t0x72E5\n0xAA47\t0x72E6\n0xAA48\t0x72E7\n0xAA49\t0x72EA\n0xAA4A\t0x72EB\n0xAA4B\t0x72F5\n0xAA4C\t0x72F6\n0xAA4D\t0x72F9\n0xAA4E\t0x72FD\n0xAA4F\t0x72FE\n0xAA50\t0x72FF\n0xAA51\t0x7300\n0xAA52\t0x7302\n0xAA53\t0x7304\n0xAA54\t0x7305\n0xAA55\t0x7306\n0xAA56\t0x7307\n0xAA57\t0x7308\n0xAA58\t0x7309\n0xAA59\t0x730B\n0xAA5A\t0x730C\n0xAA5B\t0x730D\n0xAA5C\t0x730F\n0xAA5D\t0x7310\n0xAA5E\t0x7311\n0xAA5F\t0x7312\n0xAA60\t0x7314\n0xAA61\t0x7318\n0xAA62\t0x7319\n0xAA63\t0x731A\n0xAA64\t0x731F\n0xAA65\t0x7320\n0xAA66\t0x7323\n0xAA67\t0x7324\n0xAA68\t0x7326\n0xAA69\t0x7327\n0xAA6A\t0x7328\n0xAA6B\t0x732D\n0xAA6C\t0x732F\n0xAA6D\t0x7330\n0xAA6E\t0x7332\n0xAA6F\t0x7333\n0xAA70\t0x7335\n0xAA71\t0x7336\n0xAA72\t0x733A\n0xAA73\t0x733B\n0xAA74\t0x733C\n0xAA75\t0x733D\n0xAA76\t0x7340\n0xAA77\t0x7341\n0xAA78\t0x7342\n0xAA79\t0x7343\n0xAA7A\t0x7344\n0xAA7B\t0x7345\n0xAA7C\t0x7346\n0xAA7D\t0x7347\n0xAA7E\t0x7348\n0xAA80\t0x7349\n0xAA81\t0x734A\n0xAA82\t0x734B\n0xAA83\t0x734C\n0xAA84\t0x734E\n0xAA85\t0x734F\n0xAA86\t0x7351\n0xAA87\t0x7353\n0xAA88\t0x7354\n0xAA89\t0x7355\n0xAA8A\t0x7356\n0xAA8B\t0x7358\n0xAA8C\t0x7359\n0xAA8D\t0x735A\n0xAA8E\t0x735B\n0xAA8F\t0x735C\n0xAA90\t0x735D\n0xAA91\t0x735E\n0xAA92\t0x735F\n0xAA93\t0x7361\n0xAA94\t0x7362\n0xAA95\t0x7363\n0xAA96\t0x7364\n0xAA97\t0x7365\n0xAA98\t0x7366\n0xAA99\t0x7367\n0xAA9A\t0x7368\n0xAA9B\t0x7369\n0xAA9C\t0x736A\n0xAA9D\t0x736B\n0xAA9E\t0x736E\n0xAA9F\t0x7370\n0xAAA0\t0x7371\n0xAB40\t0x7372\n0xAB41\t0x7373\n0xAB42\t0x7374\n0xAB43\t0x7375\n0xAB44\t0x7376\n0xAB45\t0x7377\n0xAB46\t0x7378\n0xAB47\t0x7379\n0xAB48\t0x737A\n0xAB49\t0x737B\n0xAB4A\t0x737C\n0xAB4B\t0x737D\n0xAB4C\t0x737F\n0xAB4D\t0x7380\n0xAB4E\t0x7381\n0xAB4F\t0x7382\n0xAB50\t0x7383\n0xAB51\t0x7385\n0xAB52\t0x7386\n0xAB53\t0x7388\n0xAB54\t0x738A\n0xAB55\t0x738C\n0xAB56\t0x738D\n0xAB57\t0x738F\n0xAB58\t0x7390\n0xAB59\t0x7392\n0xAB5A\t0x7393\n0xAB5B\t0x7394\n0xAB5C\t0x7395\n0xAB5D\t0x7397\n0xAB5E\t0x7398\n0xAB5F\t0x7399\n0xAB60\t0x739A\n0xAB61\t0x739C\n0xAB62\t0x739D\n0xAB63\t0x739E\n0xAB64\t0x73A0\n0xAB65\t0x73A1\n0xAB66\t0x73A3\n0xAB67\t0x73A4\n0xAB68\t0x73A5\n0xAB69\t0x73A6\n0xAB6A\t0x73A7\n0xAB6B\t0x73A8\n0xAB6C\t0x73AA\n0xAB6D\t0x73AC\n0xAB6E\t0x73AD\n0xAB6F\t0x73B1\n0xAB70\t0x73B4\n0xAB71\t0x73B5\n0xAB72\t0x73B6\n0xAB73\t0x73B8\n0xAB74\t0x73B9\n0xAB75\t0x73BC\n0xAB76\t0x73BD\n0xAB77\t0x73BE\n0xAB78\t0x73BF\n0xAB79\t0x73C1\n0xAB7A\t0x73C3\n0xAB7B\t0x73C4\n0xAB7C\t0x73C5\n0xAB7D\t0x73C6\n0xAB7E\t0x73C7\n0xAB80\t0x73CB\n0xAB81\t0x73CC\n0xAB82\t0x73CE\n0xAB83\t0x73D2\n0xAB84\t0x73D3\n0xAB85\t0x73D4\n0xAB86\t0x73D5\n0xAB87\t0x73D6\n0xAB88\t0x73D7\n0xAB89\t0x73D8\n0xAB8A\t0x73DA\n0xAB8B\t0x73DB\n0xAB8C\t0x73DC\n0xAB8D\t0x73DD\n0xAB8E\t0x73DF\n0xAB8F\t0x73E1\n0xAB90\t0x73E2\n0xAB91\t0x73E3\n0xAB92\t0x73E4\n0xAB93\t0x73E6\n0xAB94\t0x73E8\n0xAB95\t0x73EA\n0xAB96\t0x73EB\n0xAB97\t0x73EC\n0xAB98\t0x73EE\n0xAB99\t0x73EF\n0xAB9A\t0x73F0\n0xAB9B\t0x73F1\n0xAB9C\t0x73F3\n0xAB9D\t0x73F4\n0xAB9E\t0x73F5\n0xAB9F\t0x73F6\n0xABA0\t0x73F7\n0xAC40\t0x73F8\n0xAC41\t0x73F9\n0xAC42\t0x73FA\n0xAC43\t0x73FB\n0xAC44\t0x73FC\n0xAC45\t0x73FD\n0xAC46\t0x73FE\n0xAC47\t0x73FF\n0xAC48\t0x7400\n0xAC49\t0x7401\n0xAC4A\t0x7402\n0xAC4B\t0x7404\n0xAC4C\t0x7407\n0xAC4D\t0x7408\n0xAC4E\t0x740B\n0xAC4F\t0x740C\n0xAC50\t0x740D\n0xAC51\t0x740E\n0xAC52\t0x7411\n0xAC53\t0x7412\n0xAC54\t0x7413\n0xAC55\t0x7414\n0xAC56\t0x7415\n0xAC57\t0x7416\n0xAC58\t0x7417\n0xAC59\t0x7418\n0xAC5A\t0x7419\n0xAC5B\t0x741C\n0xAC5C\t0x741D\n0xAC5D\t0x741E\n0xAC5E\t0x741F\n0xAC5F\t0x7420\n0xAC60\t0x7421\n0xAC61\t0x7423\n0xAC62\t0x7424\n0xAC63\t0x7427\n0xAC64\t0x7429\n0xAC65\t0x742B\n0xAC66\t0x742D\n0xAC67\t0x742F\n0xAC68\t0x7431\n0xAC69\t0x7432\n0xAC6A\t0x7437\n0xAC6B\t0x7438\n0xAC6C\t0x7439\n0xAC6D\t0x743A\n0xAC6E\t0x743B\n0xAC6F\t0x743D\n0xAC70\t0x743E\n0xAC71\t0x743F\n0xAC72\t0x7440\n0xAC73\t0x7442\n0xAC74\t0x7443\n0xAC75\t0x7444\n0xAC76\t0x7445\n0xAC77\t0x7446\n0xAC78\t0x7447\n0xAC79\t0x7448\n0xAC7A\t0x7449\n0xAC7B\t0x744A\n0xAC7C\t0x744B\n0xAC7D\t0x744C\n0xAC7E\t0x744D\n0xAC80\t0x744E\n0xAC81\t0x744F\n0xAC82\t0x7450\n0xAC83\t0x7451\n0xAC84\t0x7452\n0xAC85\t0x7453\n0xAC86\t0x7454\n0xAC87\t0x7456\n0xAC88\t0x7458\n0xAC89\t0x745D\n0xAC8A\t0x7460\n0xAC8B\t0x7461\n0xAC8C\t0x7462\n0xAC8D\t0x7463\n0xAC8E\t0x7464\n0xAC8F\t0x7465\n0xAC90\t0x7466\n0xAC91\t0x7467\n0xAC92\t0x7468\n0xAC93\t0x7469\n0xAC94\t0x746A\n0xAC95\t0x746B\n0xAC96\t0x746C\n0xAC97\t0x746E\n0xAC98\t0x746F\n0xAC99\t0x7471\n0xAC9A\t0x7472\n0xAC9B\t0x7473\n0xAC9C\t0x7474\n0xAC9D\t0x7475\n0xAC9E\t0x7478\n0xAC9F\t0x7479\n0xACA0\t0x747A\n0xAD40\t0x747B\n0xAD41\t0x747C\n0xAD42\t0x747D\n0xAD43\t0x747F\n0xAD44\t0x7482\n0xAD45\t0x7484\n0xAD46\t0x7485\n0xAD47\t0x7486\n0xAD48\t0x7488\n0xAD49\t0x7489\n0xAD4A\t0x748A\n0xAD4B\t0x748C\n0xAD4C\t0x748D\n0xAD4D\t0x748F\n0xAD4E\t0x7491\n0xAD4F\t0x7492\n0xAD50\t0x7493\n0xAD51\t0x7494\n0xAD52\t0x7495\n0xAD53\t0x7496\n0xAD54\t0x7497\n0xAD55\t0x7498\n0xAD56\t0x7499\n0xAD57\t0x749A\n0xAD58\t0x749B\n0xAD59\t0x749D\n0xAD5A\t0x749F\n0xAD5B\t0x74A0\n0xAD5C\t0x74A1\n0xAD5D\t0x74A2\n0xAD5E\t0x74A3\n0xAD5F\t0x74A4\n0xAD60\t0x74A5\n0xAD61\t0x74A6\n0xAD62\t0x74AA\n0xAD63\t0x74AB\n0xAD64\t0x74AC\n0xAD65\t0x74AD\n0xAD66\t0x74AE\n0xAD67\t0x74AF\n0xAD68\t0x74B0\n0xAD69\t0x74B1\n0xAD6A\t0x74B2\n0xAD6B\t0x74B3\n0xAD6C\t0x74B4\n0xAD6D\t0x74B5\n0xAD6E\t0x74B6\n0xAD6F\t0x74B7\n0xAD70\t0x74B8\n0xAD71\t0x74B9\n0xAD72\t0x74BB\n0xAD73\t0x74BC\n0xAD74\t0x74BD\n0xAD75\t0x74BE\n0xAD76\t0x74BF\n0xAD77\t0x74C0\n0xAD78\t0x74C1\n0xAD79\t0x74C2\n0xAD7A\t0x74C3\n0xAD7B\t0x74C4\n0xAD7C\t0x74C5\n0xAD7D\t0x74C6\n0xAD7E\t0x74C7\n0xAD80\t0x74C8\n0xAD81\t0x74C9\n0xAD82\t0x74CA\n0xAD83\t0x74CB\n0xAD84\t0x74CC\n0xAD85\t0x74CD\n0xAD86\t0x74CE\n0xAD87\t0x74CF\n0xAD88\t0x74D0\n0xAD89\t0x74D1\n0xAD8A\t0x74D3\n0xAD8B\t0x74D4\n0xAD8C\t0x74D5\n0xAD8D\t0x74D6\n0xAD8E\t0x74D7\n0xAD8F\t0x74D8\n0xAD90\t0x74D9\n0xAD91\t0x74DA\n0xAD92\t0x74DB\n0xAD93\t0x74DD\n0xAD94\t0x74DF\n0xAD95\t0x74E1\n0xAD96\t0x74E5\n0xAD97\t0x74E7\n0xAD98\t0x74E8\n0xAD99\t0x74E9\n0xAD9A\t0x74EA\n0xAD9B\t0x74EB\n0xAD9C\t0x74EC\n0xAD9D\t0x74ED\n0xAD9E\t0x74F0\n0xAD9F\t0x74F1\n0xADA0\t0x74F2\n0xAE40\t0x74F3\n0xAE41\t0x74F5\n0xAE42\t0x74F8\n0xAE43\t0x74F9\n0xAE44\t0x74FA\n0xAE45\t0x74FB\n0xAE46\t0x74FC\n0xAE47\t0x74FD\n0xAE48\t0x74FE\n0xAE49\t0x7500\n0xAE4A\t0x7501\n0xAE4B\t0x7502\n0xAE4C\t0x7503\n0xAE4D\t0x7505\n0xAE4E\t0x7506\n0xAE4F\t0x7507\n0xAE50\t0x7508\n0xAE51\t0x7509\n0xAE52\t0x750A\n0xAE53\t0x750B\n0xAE54\t0x750C\n0xAE55\t0x750E\n0xAE56\t0x7510\n0xAE57\t0x7512\n0xAE58\t0x7514\n0xAE59\t0x7515\n0xAE5A\t0x7516\n0xAE5B\t0x7517\n0xAE5C\t0x751B\n0xAE5D\t0x751D\n0xAE5E\t0x751E\n0xAE5F\t0x7520\n0xAE60\t0x7521\n0xAE61\t0x7522\n0xAE62\t0x7523\n0xAE63\t0x7524\n0xAE64\t0x7526\n0xAE65\t0x7527\n0xAE66\t0x752A\n0xAE67\t0x752E\n0xAE68\t0x7534\n0xAE69\t0x7536\n0xAE6A\t0x7539\n0xAE6B\t0x753C\n0xAE6C\t0x753D\n0xAE6D\t0x753F\n0xAE6E\t0x7541\n0xAE6F\t0x7542\n0xAE70\t0x7543\n0xAE71\t0x7544\n0xAE72\t0x7546\n0xAE73\t0x7547\n0xAE74\t0x7549\n0xAE75\t0x754A\n0xAE76\t0x754D\n0xAE77\t0x7550\n0xAE78\t0x7551\n0xAE79\t0x7552\n0xAE7A\t0x7553\n0xAE7B\t0x7555\n0xAE7C\t0x7556\n0xAE7D\t0x7557\n0xAE7E\t0x7558\n0xAE80\t0x755D\n0xAE81\t0x755E\n0xAE82\t0x755F\n0xAE83\t0x7560\n0xAE84\t0x7561\n0xAE85\t0x7562\n0xAE86\t0x7563\n0xAE87\t0x7564\n0xAE88\t0x7567\n0xAE89\t0x7568\n0xAE8A\t0x7569\n0xAE8B\t0x756B\n0xAE8C\t0x756C\n0xAE8D\t0x756D\n0xAE8E\t0x756E\n0xAE8F\t0x756F\n0xAE90\t0x7570\n0xAE91\t0x7571\n0xAE92\t0x7573\n0xAE93\t0x7575\n0xAE94\t0x7576\n0xAE95\t0x7577\n0xAE96\t0x757A\n0xAE97\t0x757B\n0xAE98\t0x757C\n0xAE99\t0x757D\n0xAE9A\t0x757E\n0xAE9B\t0x7580\n0xAE9C\t0x7581\n0xAE9D\t0x7582\n0xAE9E\t0x7584\n0xAE9F\t0x7585\n0xAEA0\t0x7587\n0xAF40\t0x7588\n0xAF41\t0x7589\n0xAF42\t0x758A\n0xAF43\t0x758C\n0xAF44\t0x758D\n0xAF45\t0x758E\n0xAF46\t0x7590\n0xAF47\t0x7593\n0xAF48\t0x7595\n0xAF49\t0x7598\n0xAF4A\t0x759B\n0xAF4B\t0x759C\n0xAF4C\t0x759E\n0xAF4D\t0x75A2\n0xAF4E\t0x75A6\n0xAF4F\t0x75A7\n0xAF50\t0x75A8\n0xAF51\t0x75A9\n0xAF52\t0x75AA\n0xAF53\t0x75AD\n0xAF54\t0x75B6\n0xAF55\t0x75B7\n0xAF56\t0x75BA\n0xAF57\t0x75BB\n0xAF58\t0x75BF\n0xAF59\t0x75C0\n0xAF5A\t0x75C1\n0xAF5B\t0x75C6\n0xAF5C\t0x75CB\n0xAF5D\t0x75CC\n0xAF5E\t0x75CE\n0xAF5F\t0x75CF\n0xAF60\t0x75D0\n0xAF61\t0x75D1\n0xAF62\t0x75D3\n0xAF63\t0x75D7\n0xAF64\t0x75D9\n0xAF65\t0x75DA\n0xAF66\t0x75DC\n0xAF67\t0x75DD\n0xAF68\t0x75DF\n0xAF69\t0x75E0\n0xAF6A\t0x75E1\n0xAF6B\t0x75E5\n0xAF6C\t0x75E9\n0xAF6D\t0x75EC\n0xAF6E\t0x75ED\n0xAF6F\t0x75EE\n0xAF70\t0x75EF\n0xAF71\t0x75F2\n0xAF72\t0x75F3\n0xAF73\t0x75F5\n0xAF74\t0x75F6\n0xAF75\t0x75F7\n0xAF76\t0x75F8\n0xAF77\t0x75FA\n0xAF78\t0x75FB\n0xAF79\t0x75FD\n0xAF7A\t0x75FE\n0xAF7B\t0x7602\n0xAF7C\t0x7604\n0xAF7D\t0x7606\n0xAF7E\t0x7607\n0xAF80\t0x7608\n0xAF81\t0x7609\n0xAF82\t0x760B\n0xAF83\t0x760D\n0xAF84\t0x760E\n0xAF85\t0x760F\n0xAF86\t0x7611\n0xAF87\t0x7612\n0xAF88\t0x7613\n0xAF89\t0x7614\n0xAF8A\t0x7616\n0xAF8B\t0x761A\n0xAF8C\t0x761C\n0xAF8D\t0x761D\n0xAF8E\t0x761E\n0xAF8F\t0x7621\n0xAF90\t0x7623\n0xAF91\t0x7627\n0xAF92\t0x7628\n0xAF93\t0x762C\n0xAF94\t0x762E\n0xAF95\t0x762F\n0xAF96\t0x7631\n0xAF97\t0x7632\n0xAF98\t0x7636\n0xAF99\t0x7637\n0xAF9A\t0x7639\n0xAF9B\t0x763A\n0xAF9C\t0x763B\n0xAF9D\t0x763D\n0xAF9E\t0x7641\n0xAF9F\t0x7642\n0xAFA0\t0x7644\n0xB040\t0x7645\n0xB041\t0x7646\n0xB042\t0x7647\n0xB043\t0x7648\n0xB044\t0x7649\n0xB045\t0x764A\n0xB046\t0x764B\n0xB047\t0x764E\n0xB048\t0x764F\n0xB049\t0x7650\n0xB04A\t0x7651\n0xB04B\t0x7652\n0xB04C\t0x7653\n0xB04D\t0x7655\n0xB04E\t0x7657\n0xB04F\t0x7658\n0xB050\t0x7659\n0xB051\t0x765A\n0xB052\t0x765B\n0xB053\t0x765D\n0xB054\t0x765F\n0xB055\t0x7660\n0xB056\t0x7661\n0xB057\t0x7662\n0xB058\t0x7664\n0xB059\t0x7665\n0xB05A\t0x7666\n0xB05B\t0x7667\n0xB05C\t0x7668\n0xB05D\t0x7669\n0xB05E\t0x766A\n0xB05F\t0x766C\n0xB060\t0x766D\n0xB061\t0x766E\n0xB062\t0x7670\n0xB063\t0x7671\n0xB064\t0x7672\n0xB065\t0x7673\n0xB066\t0x7674\n0xB067\t0x7675\n0xB068\t0x7676\n0xB069\t0x7677\n0xB06A\t0x7679\n0xB06B\t0x767A\n0xB06C\t0x767C\n0xB06D\t0x767F\n0xB06E\t0x7680\n0xB06F\t0x7681\n0xB070\t0x7683\n0xB071\t0x7685\n0xB072\t0x7689\n0xB073\t0x768A\n0xB074\t0x768C\n0xB075\t0x768D\n0xB076\t0x768F\n0xB077\t0x7690\n0xB078\t0x7692\n0xB079\t0x7694\n0xB07A\t0x7695\n0xB07B\t0x7697\n0xB07C\t0x7698\n0xB07D\t0x769A\n0xB07E\t0x769B\n0xB080\t0x769C\n0xB081\t0x769D\n0xB082\t0x769E\n0xB083\t0x769F\n0xB084\t0x76A0\n0xB085\t0x76A1\n0xB086\t0x76A2\n0xB087\t0x76A3\n0xB088\t0x76A5\n0xB089\t0x76A6\n0xB08A\t0x76A7\n0xB08B\t0x76A8\n0xB08C\t0x76A9\n0xB08D\t0x76AA\n0xB08E\t0x76AB\n0xB08F\t0x76AC\n0xB090\t0x76AD\n0xB091\t0x76AF\n0xB092\t0x76B0\n0xB093\t0x76B3\n0xB094\t0x76B5\n0xB095\t0x76B6\n0xB096\t0x76B7\n0xB097\t0x76B8\n0xB098\t0x76B9\n0xB099\t0x76BA\n0xB09A\t0x76BB\n0xB09B\t0x76BC\n0xB09C\t0x76BD\n0xB09D\t0x76BE\n0xB09E\t0x76C0\n0xB09F\t0x76C1\n0xB0A0\t0x76C3\n0xB0A1\t0x554A\n0xB0A2\t0x963F\n0xB0A3\t0x57C3\n0xB0A4\t0x6328\n0xB0A5\t0x54CE\n0xB0A6\t0x5509\n0xB0A7\t0x54C0\n0xB0A8\t0x7691\n0xB0A9\t0x764C\n0xB0AA\t0x853C\n0xB0AB\t0x77EE\n0xB0AC\t0x827E\n0xB0AD\t0x788D\n0xB0AE\t0x7231\n0xB0AF\t0x9698\n0xB0B0\t0x978D\n0xB0B1\t0x6C28\n0xB0B2\t0x5B89\n0xB0B3\t0x4FFA\n0xB0B4\t0x6309\n0xB0B5\t0x6697\n0xB0B6\t0x5CB8\n0xB0B7\t0x80FA\n0xB0B8\t0x6848\n0xB0B9\t0x80AE\n0xB0BA\t0x6602\n0xB0BB\t0x76CE\n0xB0BC\t0x51F9\n0xB0BD\t0x6556\n0xB0BE\t0x71AC\n0xB0BF\t0x7FF1\n0xB0C0\t0x8884\n0xB0C1\t0x50B2\n0xB0C2\t0x5965\n0xB0C3\t0x61CA\n0xB0C4\t0x6FB3\n0xB0C5\t0x82AD\n0xB0C6\t0x634C\n0xB0C7\t0x6252\n0xB0C8\t0x53ED\n0xB0C9\t0x5427\n0xB0CA\t0x7B06\n0xB0CB\t0x516B\n0xB0CC\t0x75A4\n0xB0CD\t0x5DF4\n0xB0CE\t0x62D4\n0xB0CF\t0x8DCB\n0xB0D0\t0x9776\n0xB0D1\t0x628A\n0xB0D2\t0x8019\n0xB0D3\t0x575D\n0xB0D4\t0x9738\n0xB0D5\t0x7F62\n0xB0D6\t0x7238\n0xB0D7\t0x767D\n0xB0D8\t0x67CF\n0xB0D9\t0x767E\n0xB0DA\t0x6446\n0xB0DB\t0x4F70\n0xB0DC\t0x8D25\n0xB0DD\t0x62DC\n0xB0DE\t0x7A17\n0xB0DF\t0x6591\n0xB0E0\t0x73ED\n0xB0E1\t0x642C\n0xB0E2\t0x6273\n0xB0E3\t0x822C\n0xB0E4\t0x9881\n0xB0E5\t0x677F\n0xB0E6\t0x7248\n0xB0E7\t0x626E\n0xB0E8\t0x62CC\n0xB0E9\t0x4F34\n0xB0EA\t0x74E3\n0xB0EB\t0x534A\n0xB0EC\t0x529E\n0xB0ED\t0x7ECA\n0xB0EE\t0x90A6\n0xB0EF\t0x5E2E\n0xB0F0\t0x6886\n0xB0F1\t0x699C\n0xB0F2\t0x8180\n0xB0F3\t0x7ED1\n0xB0F4\t0x68D2\n0xB0F5\t0x78C5\n0xB0F6\t0x868C\n0xB0F7\t0x9551\n0xB0F8\t0x508D\n0xB0F9\t0x8C24\n0xB0FA\t0x82DE\n0xB0FB\t0x80DE\n0xB0FC\t0x5305\n0xB0FD\t0x8912\n0xB0FE\t0x5265\n0xB140\t0x76C4\n0xB141\t0x76C7\n0xB142\t0x76C9\n0xB143\t0x76CB\n0xB144\t0x76CC\n0xB145\t0x76D3\n0xB146\t0x76D5\n0xB147\t0x76D9\n0xB148\t0x76DA\n0xB149\t0x76DC\n0xB14A\t0x76DD\n0xB14B\t0x76DE\n0xB14C\t0x76E0\n0xB14D\t0x76E1\n0xB14E\t0x76E2\n0xB14F\t0x76E3\n0xB150\t0x76E4\n0xB151\t0x76E6\n0xB152\t0x76E7\n0xB153\t0x76E8\n0xB154\t0x76E9\n0xB155\t0x76EA\n0xB156\t0x76EB\n0xB157\t0x76EC\n0xB158\t0x76ED\n0xB159\t0x76F0\n0xB15A\t0x76F3\n0xB15B\t0x76F5\n0xB15C\t0x76F6\n0xB15D\t0x76F7\n0xB15E\t0x76FA\n0xB15F\t0x76FB\n0xB160\t0x76FD\n0xB161\t0x76FF\n0xB162\t0x7700\n0xB163\t0x7702\n0xB164\t0x7703\n0xB165\t0x7705\n0xB166\t0x7706\n0xB167\t0x770A\n0xB168\t0x770C\n0xB169\t0x770E\n0xB16A\t0x770F\n0xB16B\t0x7710\n0xB16C\t0x7711\n0xB16D\t0x7712\n0xB16E\t0x7713\n0xB16F\t0x7714\n0xB170\t0x7715\n0xB171\t0x7716\n0xB172\t0x7717\n0xB173\t0x7718\n0xB174\t0x771B\n0xB175\t0x771C\n0xB176\t0x771D\n0xB177\t0x771E\n0xB178\t0x7721\n0xB179\t0x7723\n0xB17A\t0x7724\n0xB17B\t0x7725\n0xB17C\t0x7727\n0xB17D\t0x772A\n0xB17E\t0x772B\n0xB180\t0x772C\n0xB181\t0x772E\n0xB182\t0x7730\n0xB183\t0x7731\n0xB184\t0x7732\n0xB185\t0x7733\n0xB186\t0x7734\n0xB187\t0x7739\n0xB188\t0x773B\n0xB189\t0x773D\n0xB18A\t0x773E\n0xB18B\t0x773F\n0xB18C\t0x7742\n0xB18D\t0x7744\n0xB18E\t0x7745\n0xB18F\t0x7746\n0xB190\t0x7748\n0xB191\t0x7749\n0xB192\t0x774A\n0xB193\t0x774B\n0xB194\t0x774C\n0xB195\t0x774D\n0xB196\t0x774E\n0xB197\t0x774F\n0xB198\t0x7752\n0xB199\t0x7753\n0xB19A\t0x7754\n0xB19B\t0x7755\n0xB19C\t0x7756\n0xB19D\t0x7757\n0xB19E\t0x7758\n0xB19F\t0x7759\n0xB1A0\t0x775C\n0xB1A1\t0x8584\n0xB1A2\t0x96F9\n0xB1A3\t0x4FDD\n0xB1A4\t0x5821\n0xB1A5\t0x9971\n0xB1A6\t0x5B9D\n0xB1A7\t0x62B1\n0xB1A8\t0x62A5\n0xB1A9\t0x66B4\n0xB1AA\t0x8C79\n0xB1AB\t0x9C8D\n0xB1AC\t0x7206\n0xB1AD\t0x676F\n0xB1AE\t0x7891\n0xB1AF\t0x60B2\n0xB1B0\t0x5351\n0xB1B1\t0x5317\n0xB1B2\t0x8F88\n0xB1B3\t0x80CC\n0xB1B4\t0x8D1D\n0xB1B5\t0x94A1\n0xB1B6\t0x500D\n0xB1B7\t0x72C8\n0xB1B8\t0x5907\n0xB1B9\t0x60EB\n0xB1BA\t0x7119\n0xB1BB\t0x88AB\n0xB1BC\t0x5954\n0xB1BD\t0x82EF\n0xB1BE\t0x672C\n0xB1BF\t0x7B28\n0xB1C0\t0x5D29\n0xB1C1\t0x7EF7\n0xB1C2\t0x752D\n0xB1C3\t0x6CF5\n0xB1C4\t0x8E66\n0xB1C5\t0x8FF8\n0xB1C6\t0x903C\n0xB1C7\t0x9F3B\n0xB1C8\t0x6BD4\n0xB1C9\t0x9119\n0xB1CA\t0x7B14\n0xB1CB\t0x5F7C\n0xB1CC\t0x78A7\n0xB1CD\t0x84D6\n0xB1CE\t0x853D\n0xB1CF\t0x6BD5\n0xB1D0\t0x6BD9\n0xB1D1\t0x6BD6\n0xB1D2\t0x5E01\n0xB1D3\t0x5E87\n0xB1D4\t0x75F9\n0xB1D5\t0x95ED\n0xB1D6\t0x655D\n0xB1D7\t0x5F0A\n0xB1D8\t0x5FC5\n0xB1D9\t0x8F9F\n0xB1DA\t0x58C1\n0xB1DB\t0x81C2\n0xB1DC\t0x907F\n0xB1DD\t0x965B\n0xB1DE\t0x97AD\n0xB1DF\t0x8FB9\n0xB1E0\t0x7F16\n0xB1E1\t0x8D2C\n0xB1E2\t0x6241\n0xB1E3\t0x4FBF\n0xB1E4\t0x53D8\n0xB1E5\t0x535E\n0xB1E6\t0x8FA8\n0xB1E7\t0x8FA9\n0xB1E8\t0x8FAB\n0xB1E9\t0x904D\n0xB1EA\t0x6807\n0xB1EB\t0x5F6A\n0xB1EC\t0x8198\n0xB1ED\t0x8868\n0xB1EE\t0x9CD6\n0xB1EF\t0x618B\n0xB1F0\t0x522B\n0xB1F1\t0x762A\n0xB1F2\t0x5F6C\n0xB1F3\t0x658C\n0xB1F4\t0x6FD2\n0xB1F5\t0x6EE8\n0xB1F6\t0x5BBE\n0xB1F7\t0x6448\n0xB1F8\t0x5175\n0xB1F9\t0x51B0\n0xB1FA\t0x67C4\n0xB1FB\t0x4E19\n0xB1FC\t0x79C9\n0xB1FD\t0x997C\n0xB1FE\t0x70B3\n0xB240\t0x775D\n0xB241\t0x775E\n0xB242\t0x775F\n0xB243\t0x7760\n0xB244\t0x7764\n0xB245\t0x7767\n0xB246\t0x7769\n0xB247\t0x776A\n0xB248\t0x776D\n0xB249\t0x776E\n0xB24A\t0x776F\n0xB24B\t0x7770\n0xB24C\t0x7771\n0xB24D\t0x7772\n0xB24E\t0x7773\n0xB24F\t0x7774\n0xB250\t0x7775\n0xB251\t0x7776\n0xB252\t0x7777\n0xB253\t0x7778\n0xB254\t0x777A\n0xB255\t0x777B\n0xB256\t0x777C\n0xB257\t0x7781\n0xB258\t0x7782\n0xB259\t0x7783\n0xB25A\t0x7786\n0xB25B\t0x7787\n0xB25C\t0x7788\n0xB25D\t0x7789\n0xB25E\t0x778A\n0xB25F\t0x778B\n0xB260\t0x778F\n0xB261\t0x7790\n0xB262\t0x7793\n0xB263\t0x7794\n0xB264\t0x7795\n0xB265\t0x7796\n0xB266\t0x7797\n0xB267\t0x7798\n0xB268\t0x7799\n0xB269\t0x779A\n0xB26A\t0x779B\n0xB26B\t0x779C\n0xB26C\t0x779D\n0xB26D\t0x779E\n0xB26E\t0x77A1\n0xB26F\t0x77A3\n0xB270\t0x77A4\n0xB271\t0x77A6\n0xB272\t0x77A8\n0xB273\t0x77AB\n0xB274\t0x77AD\n0xB275\t0x77AE\n0xB276\t0x77AF\n0xB277\t0x77B1\n0xB278\t0x77B2\n0xB279\t0x77B4\n0xB27A\t0x77B6\n0xB27B\t0x77B7\n0xB27C\t0x77B8\n0xB27D\t0x77B9\n0xB27E\t0x77BA\n0xB280\t0x77BC\n0xB281\t0x77BE\n0xB282\t0x77C0\n0xB283\t0x77C1\n0xB284\t0x77C2\n0xB285\t0x77C3\n0xB286\t0x77C4\n0xB287\t0x77C5\n0xB288\t0x77C6\n0xB289\t0x77C7\n0xB28A\t0x77C8\n0xB28B\t0x77C9\n0xB28C\t0x77CA\n0xB28D\t0x77CB\n0xB28E\t0x77CC\n0xB28F\t0x77CE\n0xB290\t0x77CF\n0xB291\t0x77D0\n0xB292\t0x77D1\n0xB293\t0x77D2\n0xB294\t0x77D3\n0xB295\t0x77D4\n0xB296\t0x77D5\n0xB297\t0x77D6\n0xB298\t0x77D8\n0xB299\t0x77D9\n0xB29A\t0x77DA\n0xB29B\t0x77DD\n0xB29C\t0x77DE\n0xB29D\t0x77DF\n0xB29E\t0x77E0\n0xB29F\t0x77E1\n0xB2A0\t0x77E4\n0xB2A1\t0x75C5\n0xB2A2\t0x5E76\n0xB2A3\t0x73BB\n0xB2A4\t0x83E0\n0xB2A5\t0x64AD\n0xB2A6\t0x62E8\n0xB2A7\t0x94B5\n0xB2A8\t0x6CE2\n0xB2A9\t0x535A\n0xB2AA\t0x52C3\n0xB2AB\t0x640F\n0xB2AC\t0x94C2\n0xB2AD\t0x7B94\n0xB2AE\t0x4F2F\n0xB2AF\t0x5E1B\n0xB2B0\t0x8236\n0xB2B1\t0x8116\n0xB2B2\t0x818A\n0xB2B3\t0x6E24\n0xB2B4\t0x6CCA\n0xB2B5\t0x9A73\n0xB2B6\t0x6355\n0xB2B7\t0x535C\n0xB2B8\t0x54FA\n0xB2B9\t0x8865\n0xB2BA\t0x57E0\n0xB2BB\t0x4E0D\n0xB2BC\t0x5E03\n0xB2BD\t0x6B65\n0xB2BE\t0x7C3F\n0xB2BF\t0x90E8\n0xB2C0\t0x6016\n0xB2C1\t0x64E6\n0xB2C2\t0x731C\n0xB2C3\t0x88C1\n0xB2C4\t0x6750\n0xB2C5\t0x624D\n0xB2C6\t0x8D22\n0xB2C7\t0x776C\n0xB2C8\t0x8E29\n0xB2C9\t0x91C7\n0xB2CA\t0x5F69\n0xB2CB\t0x83DC\n0xB2CC\t0x8521\n0xB2CD\t0x9910\n0xB2CE\t0x53C2\n0xB2CF\t0x8695\n0xB2D0\t0x6B8B\n0xB2D1\t0x60ED\n0xB2D2\t0x60E8\n0xB2D3\t0x707F\n0xB2D4\t0x82CD\n0xB2D5\t0x8231\n0xB2D6\t0x4ED3\n0xB2D7\t0x6CA7\n0xB2D8\t0x85CF\n0xB2D9\t0x64CD\n0xB2DA\t0x7CD9\n0xB2DB\t0x69FD\n0xB2DC\t0x66F9\n0xB2DD\t0x8349\n0xB2DE\t0x5395\n0xB2DF\t0x7B56\n0xB2E0\t0x4FA7\n0xB2E1\t0x518C\n0xB2E2\t0x6D4B\n0xB2E3\t0x5C42\n0xB2E4\t0x8E6D\n0xB2E5\t0x63D2\n0xB2E6\t0x53C9\n0xB2E7\t0x832C\n0xB2E8\t0x8336\n0xB2E9\t0x67E5\n0xB2EA\t0x78B4\n0xB2EB\t0x643D\n0xB2EC\t0x5BDF\n0xB2ED\t0x5C94\n0xB2EE\t0x5DEE\n0xB2EF\t0x8BE7\n0xB2F0\t0x62C6\n0xB2F1\t0x67F4\n0xB2F2\t0x8C7A\n0xB2F3\t0x6400\n0xB2F4\t0x63BA\n0xB2F5\t0x8749\n0xB2F6\t0x998B\n0xB2F7\t0x8C17\n0xB2F8\t0x7F20\n0xB2F9\t0x94F2\n0xB2FA\t0x4EA7\n0xB2FB\t0x9610\n0xB2FC\t0x98A4\n0xB2FD\t0x660C\n0xB2FE\t0x7316\n0xB340\t0x77E6\n0xB341\t0x77E8\n0xB342\t0x77EA\n0xB343\t0x77EF\n0xB344\t0x77F0\n0xB345\t0x77F1\n0xB346\t0x77F2\n0xB347\t0x77F4\n0xB348\t0x77F5\n0xB349\t0x77F7\n0xB34A\t0x77F9\n0xB34B\t0x77FA\n0xB34C\t0x77FB\n0xB34D\t0x77FC\n0xB34E\t0x7803\n0xB34F\t0x7804\n0xB350\t0x7805\n0xB351\t0x7806\n0xB352\t0x7807\n0xB353\t0x7808\n0xB354\t0x780A\n0xB355\t0x780B\n0xB356\t0x780E\n0xB357\t0x780F\n0xB358\t0x7810\n0xB359\t0x7813\n0xB35A\t0x7815\n0xB35B\t0x7819\n0xB35C\t0x781B\n0xB35D\t0x781E\n0xB35E\t0x7820\n0xB35F\t0x7821\n0xB360\t0x7822\n0xB361\t0x7824\n0xB362\t0x7828\n0xB363\t0x782A\n0xB364\t0x782B\n0xB365\t0x782E\n0xB366\t0x782F\n0xB367\t0x7831\n0xB368\t0x7832\n0xB369\t0x7833\n0xB36A\t0x7835\n0xB36B\t0x7836\n0xB36C\t0x783D\n0xB36D\t0x783F\n0xB36E\t0x7841\n0xB36F\t0x7842\n0xB370\t0x7843\n0xB371\t0x7844\n0xB372\t0x7846\n0xB373\t0x7848\n0xB374\t0x7849\n0xB375\t0x784A\n0xB376\t0x784B\n0xB377\t0x784D\n0xB378\t0x784F\n0xB379\t0x7851\n0xB37A\t0x7853\n0xB37B\t0x7854\n0xB37C\t0x7858\n0xB37D\t0x7859\n0xB37E\t0x785A\n0xB380\t0x785B\n0xB381\t0x785C\n0xB382\t0x785E\n0xB383\t0x785F\n0xB384\t0x7860\n0xB385\t0x7861\n0xB386\t0x7862\n0xB387\t0x7863\n0xB388\t0x7864\n0xB389\t0x7865\n0xB38A\t0x7866\n0xB38B\t0x7867\n0xB38C\t0x7868\n0xB38D\t0x7869\n0xB38E\t0x786F\n0xB38F\t0x7870\n0xB390\t0x7871\n0xB391\t0x7872\n0xB392\t0x7873\n0xB393\t0x7874\n0xB394\t0x7875\n0xB395\t0x7876\n0xB396\t0x7878\n0xB397\t0x7879\n0xB398\t0x787A\n0xB399\t0x787B\n0xB39A\t0x787D\n0xB39B\t0x787E\n0xB39C\t0x787F\n0xB39D\t0x7880\n0xB39E\t0x7881\n0xB39F\t0x7882\n0xB3A0\t0x7883\n0xB3A1\t0x573A\n0xB3A2\t0x5C1D\n0xB3A3\t0x5E38\n0xB3A4\t0x957F\n0xB3A5\t0x507F\n0xB3A6\t0x80A0\n0xB3A7\t0x5382\n0xB3A8\t0x655E\n0xB3A9\t0x7545\n0xB3AA\t0x5531\n0xB3AB\t0x5021\n0xB3AC\t0x8D85\n0xB3AD\t0x6284\n0xB3AE\t0x949E\n0xB3AF\t0x671D\n0xB3B0\t0x5632\n0xB3B1\t0x6F6E\n0xB3B2\t0x5DE2\n0xB3B3\t0x5435\n0xB3B4\t0x7092\n0xB3B5\t0x8F66\n0xB3B6\t0x626F\n0xB3B7\t0x64A4\n0xB3B8\t0x63A3\n0xB3B9\t0x5F7B\n0xB3BA\t0x6F88\n0xB3BB\t0x90F4\n0xB3BC\t0x81E3\n0xB3BD\t0x8FB0\n0xB3BE\t0x5C18\n0xB3BF\t0x6668\n0xB3C0\t0x5FF1\n0xB3C1\t0x6C89\n0xB3C2\t0x9648\n0xB3C3\t0x8D81\n0xB3C4\t0x886C\n0xB3C5\t0x6491\n0xB3C6\t0x79F0\n0xB3C7\t0x57CE\n0xB3C8\t0x6A59\n0xB3C9\t0x6210\n0xB3CA\t0x5448\n0xB3CB\t0x4E58\n0xB3CC\t0x7A0B\n0xB3CD\t0x60E9\n0xB3CE\t0x6F84\n0xB3CF\t0x8BDA\n0xB3D0\t0x627F\n0xB3D1\t0x901E\n0xB3D2\t0x9A8B\n0xB3D3\t0x79E4\n0xB3D4\t0x5403\n0xB3D5\t0x75F4\n0xB3D6\t0x6301\n0xB3D7\t0x5319\n0xB3D8\t0x6C60\n0xB3D9\t0x8FDF\n0xB3DA\t0x5F1B\n0xB3DB\t0x9A70\n0xB3DC\t0x803B\n0xB3DD\t0x9F7F\n0xB3DE\t0x4F88\n0xB3DF\t0x5C3A\n0xB3E0\t0x8D64\n0xB3E1\t0x7FC5\n0xB3E2\t0x65A5\n0xB3E3\t0x70BD\n0xB3E4\t0x5145\n0xB3E5\t0x51B2\n0xB3E6\t0x866B\n0xB3E7\t0x5D07\n0xB3E8\t0x5BA0\n0xB3E9\t0x62BD\n0xB3EA\t0x916C\n0xB3EB\t0x7574\n0xB3EC\t0x8E0C\n0xB3ED\t0x7A20\n0xB3EE\t0x6101\n0xB3EF\t0x7B79\n0xB3F0\t0x4EC7\n0xB3F1\t0x7EF8\n0xB3F2\t0x7785\n0xB3F3\t0x4E11\n0xB3F4\t0x81ED\n0xB3F5\t0x521D\n0xB3F6\t0x51FA\n0xB3F7\t0x6A71\n0xB3F8\t0x53A8\n0xB3F9\t0x8E87\n0xB3FA\t0x9504\n0xB3FB\t0x96CF\n0xB3FC\t0x6EC1\n0xB3FD\t0x9664\n0xB3FE\t0x695A\n0xB440\t0x7884\n0xB441\t0x7885\n0xB442\t0x7886\n0xB443\t0x7888\n0xB444\t0x788A\n0xB445\t0x788B\n0xB446\t0x788F\n0xB447\t0x7890\n0xB448\t0x7892\n0xB449\t0x7894\n0xB44A\t0x7895\n0xB44B\t0x7896\n0xB44C\t0x7899\n0xB44D\t0x789D\n0xB44E\t0x789E\n0xB44F\t0x78A0\n0xB450\t0x78A2\n0xB451\t0x78A4\n0xB452\t0x78A6\n0xB453\t0x78A8\n0xB454\t0x78A9\n0xB455\t0x78AA\n0xB456\t0x78AB\n0xB457\t0x78AC\n0xB458\t0x78AD\n0xB459\t0x78AE\n0xB45A\t0x78AF\n0xB45B\t0x78B5\n0xB45C\t0x78B6\n0xB45D\t0x78B7\n0xB45E\t0x78B8\n0xB45F\t0x78BA\n0xB460\t0x78BB\n0xB461\t0x78BC\n0xB462\t0x78BD\n0xB463\t0x78BF\n0xB464\t0x78C0\n0xB465\t0x78C2\n0xB466\t0x78C3\n0xB467\t0x78C4\n0xB468\t0x78C6\n0xB469\t0x78C7\n0xB46A\t0x78C8\n0xB46B\t0x78CC\n0xB46C\t0x78CD\n0xB46D\t0x78CE\n0xB46E\t0x78CF\n0xB46F\t0x78D1\n0xB470\t0x78D2\n0xB471\t0x78D3\n0xB472\t0x78D6\n0xB473\t0x78D7\n0xB474\t0x78D8\n0xB475\t0x78DA\n0xB476\t0x78DB\n0xB477\t0x78DC\n0xB478\t0x78DD\n0xB479\t0x78DE\n0xB47A\t0x78DF\n0xB47B\t0x78E0\n0xB47C\t0x78E1\n0xB47D\t0x78E2\n0xB47E\t0x78E3\n0xB480\t0x78E4\n0xB481\t0x78E5\n0xB482\t0x78E6\n0xB483\t0x78E7\n0xB484\t0x78E9\n0xB485\t0x78EA\n0xB486\t0x78EB\n0xB487\t0x78ED\n0xB488\t0x78EE\n0xB489\t0x78EF\n0xB48A\t0x78F0\n0xB48B\t0x78F1\n0xB48C\t0x78F3\n0xB48D\t0x78F5\n0xB48E\t0x78F6\n0xB48F\t0x78F8\n0xB490\t0x78F9\n0xB491\t0x78FB\n0xB492\t0x78FC\n0xB493\t0x78FD\n0xB494\t0x78FE\n0xB495\t0x78FF\n0xB496\t0x7900\n0xB497\t0x7902\n0xB498\t0x7903\n0xB499\t0x7904\n0xB49A\t0x7906\n0xB49B\t0x7907\n0xB49C\t0x7908\n0xB49D\t0x7909\n0xB49E\t0x790A\n0xB49F\t0x790B\n0xB4A0\t0x790C\n0xB4A1\t0x7840\n0xB4A2\t0x50A8\n0xB4A3\t0x77D7\n0xB4A4\t0x6410\n0xB4A5\t0x89E6\n0xB4A6\t0x5904\n0xB4A7\t0x63E3\n0xB4A8\t0x5DDD\n0xB4A9\t0x7A7F\n0xB4AA\t0x693D\n0xB4AB\t0x4F20\n0xB4AC\t0x8239\n0xB4AD\t0x5598\n0xB4AE\t0x4E32\n0xB4AF\t0x75AE\n0xB4B0\t0x7A97\n0xB4B1\t0x5E62\n0xB4B2\t0x5E8A\n0xB4B3\t0x95EF\n0xB4B4\t0x521B\n0xB4B5\t0x5439\n0xB4B6\t0x708A\n0xB4B7\t0x6376\n0xB4B8\t0x9524\n0xB4B9\t0x5782\n0xB4BA\t0x6625\n0xB4BB\t0x693F\n0xB4BC\t0x9187\n0xB4BD\t0x5507\n0xB4BE\t0x6DF3\n0xB4BF\t0x7EAF\n0xB4C0\t0x8822\n0xB4C1\t0x6233\n0xB4C2\t0x7EF0\n0xB4C3\t0x75B5\n0xB4C4\t0x8328\n0xB4C5\t0x78C1\n0xB4C6\t0x96CC\n0xB4C7\t0x8F9E\n0xB4C8\t0x6148\n0xB4C9\t0x74F7\n0xB4CA\t0x8BCD\n0xB4CB\t0x6B64\n0xB4CC\t0x523A\n0xB4CD\t0x8D50\n0xB4CE\t0x6B21\n0xB4CF\t0x806A\n0xB4D0\t0x8471\n0xB4D1\t0x56F1\n0xB4D2\t0x5306\n0xB4D3\t0x4ECE\n0xB4D4\t0x4E1B\n0xB4D5\t0x51D1\n0xB4D6\t0x7C97\n0xB4D7\t0x918B\n0xB4D8\t0x7C07\n0xB4D9\t0x4FC3\n0xB4DA\t0x8E7F\n0xB4DB\t0x7BE1\n0xB4DC\t0x7A9C\n0xB4DD\t0x6467\n0xB4DE\t0x5D14\n0xB4DF\t0x50AC\n0xB4E0\t0x8106\n0xB4E1\t0x7601\n0xB4E2\t0x7CB9\n0xB4E3\t0x6DEC\n0xB4E4\t0x7FE0\n0xB4E5\t0x6751\n0xB4E6\t0x5B58\n0xB4E7\t0x5BF8\n0xB4E8\t0x78CB\n0xB4E9\t0x64AE\n0xB4EA\t0x6413\n0xB4EB\t0x63AA\n0xB4EC\t0x632B\n0xB4ED\t0x9519\n0xB4EE\t0x642D\n0xB4EF\t0x8FBE\n0xB4F0\t0x7B54\n0xB4F1\t0x7629\n0xB4F2\t0x6253\n0xB4F3\t0x5927\n0xB4F4\t0x5446\n0xB4F5\t0x6B79\n0xB4F6\t0x50A3\n0xB4F7\t0x6234\n0xB4F8\t0x5E26\n0xB4F9\t0x6B86\n0xB4FA\t0x4EE3\n0xB4FB\t0x8D37\n0xB4FC\t0x888B\n0xB4FD\t0x5F85\n0xB4FE\t0x902E\n0xB540\t0x790D\n0xB541\t0x790E\n0xB542\t0x790F\n0xB543\t0x7910\n0xB544\t0x7911\n0xB545\t0x7912\n0xB546\t0x7914\n0xB547\t0x7915\n0xB548\t0x7916\n0xB549\t0x7917\n0xB54A\t0x7918\n0xB54B\t0x7919\n0xB54C\t0x791A\n0xB54D\t0x791B\n0xB54E\t0x791C\n0xB54F\t0x791D\n0xB550\t0x791F\n0xB551\t0x7920\n0xB552\t0x7921\n0xB553\t0x7922\n0xB554\t0x7923\n0xB555\t0x7925\n0xB556\t0x7926\n0xB557\t0x7927\n0xB558\t0x7928\n0xB559\t0x7929\n0xB55A\t0x792A\n0xB55B\t0x792B\n0xB55C\t0x792C\n0xB55D\t0x792D\n0xB55E\t0x792E\n0xB55F\t0x792F\n0xB560\t0x7930\n0xB561\t0x7931\n0xB562\t0x7932\n0xB563\t0x7933\n0xB564\t0x7935\n0xB565\t0x7936\n0xB566\t0x7937\n0xB567\t0x7938\n0xB568\t0x7939\n0xB569\t0x793D\n0xB56A\t0x793F\n0xB56B\t0x7942\n0xB56C\t0x7943\n0xB56D\t0x7944\n0xB56E\t0x7945\n0xB56F\t0x7947\n0xB570\t0x794A\n0xB571\t0x794B\n0xB572\t0x794C\n0xB573\t0x794D\n0xB574\t0x794E\n0xB575\t0x794F\n0xB576\t0x7950\n0xB577\t0x7951\n0xB578\t0x7952\n0xB579\t0x7954\n0xB57A\t0x7955\n0xB57B\t0x7958\n0xB57C\t0x7959\n0xB57D\t0x7961\n0xB57E\t0x7963\n0xB580\t0x7964\n0xB581\t0x7966\n0xB582\t0x7969\n0xB583\t0x796A\n0xB584\t0x796B\n0xB585\t0x796C\n0xB586\t0x796E\n0xB587\t0x7970\n0xB588\t0x7971\n0xB589\t0x7972\n0xB58A\t0x7973\n0xB58B\t0x7974\n0xB58C\t0x7975\n0xB58D\t0x7976\n0xB58E\t0x7979\n0xB58F\t0x797B\n0xB590\t0x797C\n0xB591\t0x797D\n0xB592\t0x797E\n0xB593\t0x797F\n0xB594\t0x7982\n0xB595\t0x7983\n0xB596\t0x7986\n0xB597\t0x7987\n0xB598\t0x7988\n0xB599\t0x7989\n0xB59A\t0x798B\n0xB59B\t0x798C\n0xB59C\t0x798D\n0xB59D\t0x798E\n0xB59E\t0x7990\n0xB59F\t0x7991\n0xB5A0\t0x7992\n0xB5A1\t0x6020\n0xB5A2\t0x803D\n0xB5A3\t0x62C5\n0xB5A4\t0x4E39\n0xB5A5\t0x5355\n0xB5A6\t0x90F8\n0xB5A7\t0x63B8\n0xB5A8\t0x80C6\n0xB5A9\t0x65E6\n0xB5AA\t0x6C2E\n0xB5AB\t0x4F46\n0xB5AC\t0x60EE\n0xB5AD\t0x6DE1\n0xB5AE\t0x8BDE\n0xB5AF\t0x5F39\n0xB5B0\t0x86CB\n0xB5B1\t0x5F53\n0xB5B2\t0x6321\n0xB5B3\t0x515A\n0xB5B4\t0x8361\n0xB5B5\t0x6863\n0xB5B6\t0x5200\n0xB5B7\t0x6363\n0xB5B8\t0x8E48\n0xB5B9\t0x5012\n0xB5BA\t0x5C9B\n0xB5BB\t0x7977\n0xB5BC\t0x5BFC\n0xB5BD\t0x5230\n0xB5BE\t0x7A3B\n0xB5BF\t0x60BC\n0xB5C0\t0x9053\n0xB5C1\t0x76D7\n0xB5C2\t0x5FB7\n0xB5C3\t0x5F97\n0xB5C4\t0x7684\n0xB5C5\t0x8E6C\n0xB5C6\t0x706F\n0xB5C7\t0x767B\n0xB5C8\t0x7B49\n0xB5C9\t0x77AA\n0xB5CA\t0x51F3\n0xB5CB\t0x9093\n0xB5CC\t0x5824\n0xB5CD\t0x4F4E\n0xB5CE\t0x6EF4\n0xB5CF\t0x8FEA\n0xB5D0\t0x654C\n0xB5D1\t0x7B1B\n0xB5D2\t0x72C4\n0xB5D3\t0x6DA4\n0xB5D4\t0x7FDF\n0xB5D5\t0x5AE1\n0xB5D6\t0x62B5\n0xB5D7\t0x5E95\n0xB5D8\t0x5730\n0xB5D9\t0x8482\n0xB5DA\t0x7B2C\n0xB5DB\t0x5E1D\n0xB5DC\t0x5F1F\n0xB5DD\t0x9012\n0xB5DE\t0x7F14\n0xB5DF\t0x98A0\n0xB5E0\t0x6382\n0xB5E1\t0x6EC7\n0xB5E2\t0x7898\n0xB5E3\t0x70B9\n0xB5E4\t0x5178\n0xB5E5\t0x975B\n0xB5E6\t0x57AB\n0xB5E7\t0x7535\n0xB5E8\t0x4F43\n0xB5E9\t0x7538\n0xB5EA\t0x5E97\n0xB5EB\t0x60E6\n0xB5EC\t0x5960\n0xB5ED\t0x6DC0\n0xB5EE\t0x6BBF\n0xB5EF\t0x7889\n0xB5F0\t0x53FC\n0xB5F1\t0x96D5\n0xB5F2\t0x51CB\n0xB5F3\t0x5201\n0xB5F4\t0x6389\n0xB5F5\t0x540A\n0xB5F6\t0x9493\n0xB5F7\t0x8C03\n0xB5F8\t0x8DCC\n0xB5F9\t0x7239\n0xB5FA\t0x789F\n0xB5FB\t0x8776\n0xB5FC\t0x8FED\n0xB5FD\t0x8C0D\n0xB5FE\t0x53E0\n0xB640\t0x7993\n0xB641\t0x7994\n0xB642\t0x7995\n0xB643\t0x7996\n0xB644\t0x7997\n0xB645\t0x7998\n0xB646\t0x7999\n0xB647\t0x799B\n0xB648\t0x799C\n0xB649\t0x799D\n0xB64A\t0x799E\n0xB64B\t0x799F\n0xB64C\t0x79A0\n0xB64D\t0x79A1\n0xB64E\t0x79A2\n0xB64F\t0x79A3\n0xB650\t0x79A4\n0xB651\t0x79A5\n0xB652\t0x79A6\n0xB653\t0x79A8\n0xB654\t0x79A9\n0xB655\t0x79AA\n0xB656\t0x79AB\n0xB657\t0x79AC\n0xB658\t0x79AD\n0xB659\t0x79AE\n0xB65A\t0x79AF\n0xB65B\t0x79B0\n0xB65C\t0x79B1\n0xB65D\t0x79B2\n0xB65E\t0x79B4\n0xB65F\t0x79B5\n0xB660\t0x79B6\n0xB661\t0x79B7\n0xB662\t0x79B8\n0xB663\t0x79BC\n0xB664\t0x79BF\n0xB665\t0x79C2\n0xB666\t0x79C4\n0xB667\t0x79C5\n0xB668\t0x79C7\n0xB669\t0x79C8\n0xB66A\t0x79CA\n0xB66B\t0x79CC\n0xB66C\t0x79CE\n0xB66D\t0x79CF\n0xB66E\t0x79D0\n0xB66F\t0x79D3\n0xB670\t0x79D4\n0xB671\t0x79D6\n0xB672\t0x79D7\n0xB673\t0x79D9\n0xB674\t0x79DA\n0xB675\t0x79DB\n0xB676\t0x79DC\n0xB677\t0x79DD\n0xB678\t0x79DE\n0xB679\t0x79E0\n0xB67A\t0x79E1\n0xB67B\t0x79E2\n0xB67C\t0x79E5\n0xB67D\t0x79E8\n0xB67E\t0x79EA\n0xB680\t0x79EC\n0xB681\t0x79EE\n0xB682\t0x79F1\n0xB683\t0x79F2\n0xB684\t0x79F3\n0xB685\t0x79F4\n0xB686\t0x79F5\n0xB687\t0x79F6\n0xB688\t0x79F7\n0xB689\t0x79F9\n0xB68A\t0x79FA\n0xB68B\t0x79FC\n0xB68C\t0x79FE\n0xB68D\t0x79FF\n0xB68E\t0x7A01\n0xB68F\t0x7A04\n0xB690\t0x7A05\n0xB691\t0x7A07\n0xB692\t0x7A08\n0xB693\t0x7A09\n0xB694\t0x7A0A\n0xB695\t0x7A0C\n0xB696\t0x7A0F\n0xB697\t0x7A10\n0xB698\t0x7A11\n0xB699\t0x7A12\n0xB69A\t0x7A13\n0xB69B\t0x7A15\n0xB69C\t0x7A16\n0xB69D\t0x7A18\n0xB69E\t0x7A19\n0xB69F\t0x7A1B\n0xB6A0\t0x7A1C\n0xB6A1\t0x4E01\n0xB6A2\t0x76EF\n0xB6A3\t0x53EE\n0xB6A4\t0x9489\n0xB6A5\t0x9876\n0xB6A6\t0x9F0E\n0xB6A7\t0x952D\n0xB6A8\t0x5B9A\n0xB6A9\t0x8BA2\n0xB6AA\t0x4E22\n0xB6AB\t0x4E1C\n0xB6AC\t0x51AC\n0xB6AD\t0x8463\n0xB6AE\t0x61C2\n0xB6AF\t0x52A8\n0xB6B0\t0x680B\n0xB6B1\t0x4F97\n0xB6B2\t0x606B\n0xB6B3\t0x51BB\n0xB6B4\t0x6D1E\n0xB6B5\t0x515C\n0xB6B6\t0x6296\n0xB6B7\t0x6597\n0xB6B8\t0x9661\n0xB6B9\t0x8C46\n0xB6BA\t0x9017\n0xB6BB\t0x75D8\n0xB6BC\t0x90FD\n0xB6BD\t0x7763\n0xB6BE\t0x6BD2\n0xB6BF\t0x728A\n0xB6C0\t0x72EC\n0xB6C1\t0x8BFB\n0xB6C2\t0x5835\n0xB6C3\t0x7779\n0xB6C4\t0x8D4C\n0xB6C5\t0x675C\n0xB6C6\t0x9540\n0xB6C7\t0x809A\n0xB6C8\t0x5EA6\n0xB6C9\t0x6E21\n0xB6CA\t0x5992\n0xB6CB\t0x7AEF\n0xB6CC\t0x77ED\n0xB6CD\t0x953B\n0xB6CE\t0x6BB5\n0xB6CF\t0x65AD\n0xB6D0\t0x7F0E\n0xB6D1\t0x5806\n0xB6D2\t0x5151\n0xB6D3\t0x961F\n0xB6D4\t0x5BF9\n0xB6D5\t0x58A9\n0xB6D6\t0x5428\n0xB6D7\t0x8E72\n0xB6D8\t0x6566\n0xB6D9\t0x987F\n0xB6DA\t0x56E4\n0xB6DB\t0x949D\n0xB6DC\t0x76FE\n0xB6DD\t0x9041\n0xB6DE\t0x6387\n0xB6DF\t0x54C6\n0xB6E0\t0x591A\n0xB6E1\t0x593A\n0xB6E2\t0x579B\n0xB6E3\t0x8EB2\n0xB6E4\t0x6735\n0xB6E5\t0x8DFA\n0xB6E6\t0x8235\n0xB6E7\t0x5241\n0xB6E8\t0x60F0\n0xB6E9\t0x5815\n0xB6EA\t0x86FE\n0xB6EB\t0x5CE8\n0xB6EC\t0x9E45\n0xB6ED\t0x4FC4\n0xB6EE\t0x989D\n0xB6EF\t0x8BB9\n0xB6F0\t0x5A25\n0xB6F1\t0x6076\n0xB6F2\t0x5384\n0xB6F3\t0x627C\n0xB6F4\t0x904F\n0xB6F5\t0x9102\n0xB6F6\t0x997F\n0xB6F7\t0x6069\n0xB6F8\t0x800C\n0xB6F9\t0x513F\n0xB6FA\t0x8033\n0xB6FB\t0x5C14\n0xB6FC\t0x9975\n0xB6FD\t0x6D31\n0xB6FE\t0x4E8C\n0xB740\t0x7A1D\n0xB741\t0x7A1F\n0xB742\t0x7A21\n0xB743\t0x7A22\n0xB744\t0x7A24\n0xB745\t0x7A25\n0xB746\t0x7A26\n0xB747\t0x7A27\n0xB748\t0x7A28\n0xB749\t0x7A29\n0xB74A\t0x7A2A\n0xB74B\t0x7A2B\n0xB74C\t0x7A2C\n0xB74D\t0x7A2D\n0xB74E\t0x7A2E\n0xB74F\t0x7A2F\n0xB750\t0x7A30\n0xB751\t0x7A31\n0xB752\t0x7A32\n0xB753\t0x7A34\n0xB754\t0x7A35\n0xB755\t0x7A36\n0xB756\t0x7A38\n0xB757\t0x7A3A\n0xB758\t0x7A3E\n0xB759\t0x7A40\n0xB75A\t0x7A41\n0xB75B\t0x7A42\n0xB75C\t0x7A43\n0xB75D\t0x7A44\n0xB75E\t0x7A45\n0xB75F\t0x7A47\n0xB760\t0x7A48\n0xB761\t0x7A49\n0xB762\t0x7A4A\n0xB763\t0x7A4B\n0xB764\t0x7A4C\n0xB765\t0x7A4D\n0xB766\t0x7A4E\n0xB767\t0x7A4F\n0xB768\t0x7A50\n0xB769\t0x7A52\n0xB76A\t0x7A53\n0xB76B\t0x7A54\n0xB76C\t0x7A55\n0xB76D\t0x7A56\n0xB76E\t0x7A58\n0xB76F\t0x7A59\n0xB770\t0x7A5A\n0xB771\t0x7A5B\n0xB772\t0x7A5C\n0xB773\t0x7A5D\n0xB774\t0x7A5E\n0xB775\t0x7A5F\n0xB776\t0x7A60\n0xB777\t0x7A61\n0xB778\t0x7A62\n0xB779\t0x7A63\n0xB77A\t0x7A64\n0xB77B\t0x7A65\n0xB77C\t0x7A66\n0xB77D\t0x7A67\n0xB77E\t0x7A68\n0xB780\t0x7A69\n0xB781\t0x7A6A\n0xB782\t0x7A6B\n0xB783\t0x7A6C\n0xB784\t0x7A6D\n0xB785\t0x7A6E\n0xB786\t0x7A6F\n0xB787\t0x7A71\n0xB788\t0x7A72\n0xB789\t0x7A73\n0xB78A\t0x7A75\n0xB78B\t0x7A7B\n0xB78C\t0x7A7C\n0xB78D\t0x7A7D\n0xB78E\t0x7A7E\n0xB78F\t0x7A82\n0xB790\t0x7A85\n0xB791\t0x7A87\n0xB792\t0x7A89\n0xB793\t0x7A8A\n0xB794\t0x7A8B\n0xB795\t0x7A8C\n0xB796\t0x7A8E\n0xB797\t0x7A8F\n0xB798\t0x7A90\n0xB799\t0x7A93\n0xB79A\t0x7A94\n0xB79B\t0x7A99\n0xB79C\t0x7A9A\n0xB79D\t0x7A9B\n0xB79E\t0x7A9E\n0xB79F\t0x7AA1\n0xB7A0\t0x7AA2\n0xB7A1\t0x8D30\n0xB7A2\t0x53D1\n0xB7A3\t0x7F5A\n0xB7A4\t0x7B4F\n0xB7A5\t0x4F10\n0xB7A6\t0x4E4F\n0xB7A7\t0x9600\n0xB7A8\t0x6CD5\n0xB7A9\t0x73D0\n0xB7AA\t0x85E9\n0xB7AB\t0x5E06\n0xB7AC\t0x756A\n0xB7AD\t0x7FFB\n0xB7AE\t0x6A0A\n0xB7AF\t0x77FE\n0xB7B0\t0x9492\n0xB7B1\t0x7E41\n0xB7B2\t0x51E1\n0xB7B3\t0x70E6\n0xB7B4\t0x53CD\n0xB7B5\t0x8FD4\n0xB7B6\t0x8303\n0xB7B7\t0x8D29\n0xB7B8\t0x72AF\n0xB7B9\t0x996D\n0xB7BA\t0x6CDB\n0xB7BB\t0x574A\n0xB7BC\t0x82B3\n0xB7BD\t0x65B9\n0xB7BE\t0x80AA\n0xB7BF\t0x623F\n0xB7C0\t0x9632\n0xB7C1\t0x59A8\n0xB7C2\t0x4EFF\n0xB7C3\t0x8BBF\n0xB7C4\t0x7EBA\n0xB7C5\t0x653E\n0xB7C6\t0x83F2\n0xB7C7\t0x975E\n0xB7C8\t0x5561\n0xB7C9\t0x98DE\n0xB7CA\t0x80A5\n0xB7CB\t0x532A\n0xB7CC\t0x8BFD\n0xB7CD\t0x5420\n0xB7CE\t0x80BA\n0xB7CF\t0x5E9F\n0xB7D0\t0x6CB8\n0xB7D1\t0x8D39\n0xB7D2\t0x82AC\n0xB7D3\t0x915A\n0xB7D4\t0x5429\n0xB7D5\t0x6C1B\n0xB7D6\t0x5206\n0xB7D7\t0x7EB7\n0xB7D8\t0x575F\n0xB7D9\t0x711A\n0xB7DA\t0x6C7E\n0xB7DB\t0x7C89\n0xB7DC\t0x594B\n0xB7DD\t0x4EFD\n0xB7DE\t0x5FFF\n0xB7DF\t0x6124\n0xB7E0\t0x7CAA\n0xB7E1\t0x4E30\n0xB7E2\t0x5C01\n0xB7E3\t0x67AB\n0xB7E4\t0x8702\n0xB7E5\t0x5CF0\n0xB7E6\t0x950B\n0xB7E7\t0x98CE\n0xB7E8\t0x75AF\n0xB7E9\t0x70FD\n0xB7EA\t0x9022\n0xB7EB\t0x51AF\n0xB7EC\t0x7F1D\n0xB7ED\t0x8BBD\n0xB7EE\t0x5949\n0xB7EF\t0x51E4\n0xB7F0\t0x4F5B\n0xB7F1\t0x5426\n0xB7F2\t0x592B\n0xB7F3\t0x6577\n0xB7F4\t0x80A4\n0xB7F5\t0x5B75\n0xB7F6\t0x6276\n0xB7F7\t0x62C2\n0xB7F8\t0x8F90\n0xB7F9\t0x5E45\n0xB7FA\t0x6C1F\n0xB7FB\t0x7B26\n0xB7FC\t0x4F0F\n0xB7FD\t0x4FD8\n0xB7FE\t0x670D\n0xB840\t0x7AA3\n0xB841\t0x7AA4\n0xB842\t0x7AA7\n0xB843\t0x7AA9\n0xB844\t0x7AAA\n0xB845\t0x7AAB\n0xB846\t0x7AAE\n0xB847\t0x7AAF\n0xB848\t0x7AB0\n0xB849\t0x7AB1\n0xB84A\t0x7AB2\n0xB84B\t0x7AB4\n0xB84C\t0x7AB5\n0xB84D\t0x7AB6\n0xB84E\t0x7AB7\n0xB84F\t0x7AB8\n0xB850\t0x7AB9\n0xB851\t0x7ABA\n0xB852\t0x7ABB\n0xB853\t0x7ABC\n0xB854\t0x7ABD\n0xB855\t0x7ABE\n0xB856\t0x7AC0\n0xB857\t0x7AC1\n0xB858\t0x7AC2\n0xB859\t0x7AC3\n0xB85A\t0x7AC4\n0xB85B\t0x7AC5\n0xB85C\t0x7AC6\n0xB85D\t0x7AC7\n0xB85E\t0x7AC8\n0xB85F\t0x7AC9\n0xB860\t0x7ACA\n0xB861\t0x7ACC\n0xB862\t0x7ACD\n0xB863\t0x7ACE\n0xB864\t0x7ACF\n0xB865\t0x7AD0\n0xB866\t0x7AD1\n0xB867\t0x7AD2\n0xB868\t0x7AD3\n0xB869\t0x7AD4\n0xB86A\t0x7AD5\n0xB86B\t0x7AD7\n0xB86C\t0x7AD8\n0xB86D\t0x7ADA\n0xB86E\t0x7ADB\n0xB86F\t0x7ADC\n0xB870\t0x7ADD\n0xB871\t0x7AE1\n0xB872\t0x7AE2\n0xB873\t0x7AE4\n0xB874\t0x7AE7\n0xB875\t0x7AE8\n0xB876\t0x7AE9\n0xB877\t0x7AEA\n0xB878\t0x7AEB\n0xB879\t0x7AEC\n0xB87A\t0x7AEE\n0xB87B\t0x7AF0\n0xB87C\t0x7AF1\n0xB87D\t0x7AF2\n0xB87E\t0x7AF3\n0xB880\t0x7AF4\n0xB881\t0x7AF5\n0xB882\t0x7AF6\n0xB883\t0x7AF7\n0xB884\t0x7AF8\n0xB885\t0x7AFB\n0xB886\t0x7AFC\n0xB887\t0x7AFE\n0xB888\t0x7B00\n0xB889\t0x7B01\n0xB88A\t0x7B02\n0xB88B\t0x7B05\n0xB88C\t0x7B07\n0xB88D\t0x7B09\n0xB88E\t0x7B0C\n0xB88F\t0x7B0D\n0xB890\t0x7B0E\n0xB891\t0x7B10\n0xB892\t0x7B12\n0xB893\t0x7B13\n0xB894\t0x7B16\n0xB895\t0x7B17\n0xB896\t0x7B18\n0xB897\t0x7B1A\n0xB898\t0x7B1C\n0xB899\t0x7B1D\n0xB89A\t0x7B1F\n0xB89B\t0x7B21\n0xB89C\t0x7B22\n0xB89D\t0x7B23\n0xB89E\t0x7B27\n0xB89F\t0x7B29\n0xB8A0\t0x7B2D\n0xB8A1\t0x6D6E\n0xB8A2\t0x6DAA\n0xB8A3\t0x798F\n0xB8A4\t0x88B1\n0xB8A5\t0x5F17\n0xB8A6\t0x752B\n0xB8A7\t0x629A\n0xB8A8\t0x8F85\n0xB8A9\t0x4FEF\n0xB8AA\t0x91DC\n0xB8AB\t0x65A7\n0xB8AC\t0x812F\n0xB8AD\t0x8151\n0xB8AE\t0x5E9C\n0xB8AF\t0x8150\n0xB8B0\t0x8D74\n0xB8B1\t0x526F\n0xB8B2\t0x8986\n0xB8B3\t0x8D4B\n0xB8B4\t0x590D\n0xB8B5\t0x5085\n0xB8B6\t0x4ED8\n0xB8B7\t0x961C\n0xB8B8\t0x7236\n0xB8B9\t0x8179\n0xB8BA\t0x8D1F\n0xB8BB\t0x5BCC\n0xB8BC\t0x8BA3\n0xB8BD\t0x9644\n0xB8BE\t0x5987\n0xB8BF\t0x7F1A\n0xB8C0\t0x5490\n0xB8C1\t0x5676\n0xB8C2\t0x560E\n0xB8C3\t0x8BE5\n0xB8C4\t0x6539\n0xB8C5\t0x6982\n0xB8C6\t0x9499\n0xB8C7\t0x76D6\n0xB8C8\t0x6E89\n0xB8C9\t0x5E72\n0xB8CA\t0x7518\n0xB8CB\t0x6746\n0xB8CC\t0x67D1\n0xB8CD\t0x7AFF\n0xB8CE\t0x809D\n0xB8CF\t0x8D76\n0xB8D0\t0x611F\n0xB8D1\t0x79C6\n0xB8D2\t0x6562\n0xB8D3\t0x8D63\n0xB8D4\t0x5188\n0xB8D5\t0x521A\n0xB8D6\t0x94A2\n0xB8D7\t0x7F38\n0xB8D8\t0x809B\n0xB8D9\t0x7EB2\n0xB8DA\t0x5C97\n0xB8DB\t0x6E2F\n0xB8DC\t0x6760\n0xB8DD\t0x7BD9\n0xB8DE\t0x768B\n0xB8DF\t0x9AD8\n0xB8E0\t0x818F\n0xB8E1\t0x7F94\n0xB8E2\t0x7CD5\n0xB8E3\t0x641E\n0xB8E4\t0x9550\n0xB8E5\t0x7A3F\n0xB8E6\t0x544A\n0xB8E7\t0x54E5\n0xB8E8\t0x6B4C\n0xB8E9\t0x6401\n0xB8EA\t0x6208\n0xB8EB\t0x9E3D\n0xB8EC\t0x80F3\n0xB8ED\t0x7599\n0xB8EE\t0x5272\n0xB8EF\t0x9769\n0xB8F0\t0x845B\n0xB8F1\t0x683C\n0xB8F2\t0x86E4\n0xB8F3\t0x9601\n0xB8F4\t0x9694\n0xB8F5\t0x94EC\n0xB8F6\t0x4E2A\n0xB8F7\t0x5404\n0xB8F8\t0x7ED9\n0xB8F9\t0x6839\n0xB8FA\t0x8DDF\n0xB8FB\t0x8015\n0xB8FC\t0x66F4\n0xB8FD\t0x5E9A\n0xB8FE\t0x7FB9\n0xB940\t0x7B2F\n0xB941\t0x7B30\n0xB942\t0x7B32\n0xB943\t0x7B34\n0xB944\t0x7B35\n0xB945\t0x7B36\n0xB946\t0x7B37\n0xB947\t0x7B39\n0xB948\t0x7B3B\n0xB949\t0x7B3D\n0xB94A\t0x7B3F\n0xB94B\t0x7B40\n0xB94C\t0x7B41\n0xB94D\t0x7B42\n0xB94E\t0x7B43\n0xB94F\t0x7B44\n0xB950\t0x7B46\n0xB951\t0x7B48\n0xB952\t0x7B4A\n0xB953\t0x7B4D\n0xB954\t0x7B4E\n0xB955\t0x7B53\n0xB956\t0x7B55\n0xB957\t0x7B57\n0xB958\t0x7B59\n0xB959\t0x7B5C\n0xB95A\t0x7B5E\n0xB95B\t0x7B5F\n0xB95C\t0x7B61\n0xB95D\t0x7B63\n0xB95E\t0x7B64\n0xB95F\t0x7B65\n0xB960\t0x7B66\n0xB961\t0x7B67\n0xB962\t0x7B68\n0xB963\t0x7B69\n0xB964\t0x7B6A\n0xB965\t0x7B6B\n0xB966\t0x7B6C\n0xB967\t0x7B6D\n0xB968\t0x7B6F\n0xB969\t0x7B70\n0xB96A\t0x7B73\n0xB96B\t0x7B74\n0xB96C\t0x7B76\n0xB96D\t0x7B78\n0xB96E\t0x7B7A\n0xB96F\t0x7B7C\n0xB970\t0x7B7D\n0xB971\t0x7B7F\n0xB972\t0x7B81\n0xB973\t0x7B82\n0xB974\t0x7B83\n0xB975\t0x7B84\n0xB976\t0x7B86\n0xB977\t0x7B87\n0xB978\t0x7B88\n0xB979\t0x7B89\n0xB97A\t0x7B8A\n0xB97B\t0x7B8B\n0xB97C\t0x7B8C\n0xB97D\t0x7B8E\n0xB97E\t0x7B8F\n0xB980\t0x7B91\n0xB981\t0x7B92\n0xB982\t0x7B93\n0xB983\t0x7B96\n0xB984\t0x7B98\n0xB985\t0x7B99\n0xB986\t0x7B9A\n0xB987\t0x7B9B\n0xB988\t0x7B9E\n0xB989\t0x7B9F\n0xB98A\t0x7BA0\n0xB98B\t0x7BA3\n0xB98C\t0x7BA4\n0xB98D\t0x7BA5\n0xB98E\t0x7BAE\n0xB98F\t0x7BAF\n0xB990\t0x7BB0\n0xB991\t0x7BB2\n0xB992\t0x7BB3\n0xB993\t0x7BB5\n0xB994\t0x7BB6\n0xB995\t0x7BB7\n0xB996\t0x7BB9\n0xB997\t0x7BBA\n0xB998\t0x7BBB\n0xB999\t0x7BBC\n0xB99A\t0x7BBD\n0xB99B\t0x7BBE\n0xB99C\t0x7BBF\n0xB99D\t0x7BC0\n0xB99E\t0x7BC2\n0xB99F\t0x7BC3\n0xB9A0\t0x7BC4\n0xB9A1\t0x57C2\n0xB9A2\t0x803F\n0xB9A3\t0x6897\n0xB9A4\t0x5DE5\n0xB9A5\t0x653B\n0xB9A6\t0x529F\n0xB9A7\t0x606D\n0xB9A8\t0x9F9A\n0xB9A9\t0x4F9B\n0xB9AA\t0x8EAC\n0xB9AB\t0x516C\n0xB9AC\t0x5BAB\n0xB9AD\t0x5F13\n0xB9AE\t0x5DE9\n0xB9AF\t0x6C5E\n0xB9B0\t0x62F1\n0xB9B1\t0x8D21\n0xB9B2\t0x5171\n0xB9B3\t0x94A9\n0xB9B4\t0x52FE\n0xB9B5\t0x6C9F\n0xB9B6\t0x82DF\n0xB9B7\t0x72D7\n0xB9B8\t0x57A2\n0xB9B9\t0x6784\n0xB9BA\t0x8D2D\n0xB9BB\t0x591F\n0xB9BC\t0x8F9C\n0xB9BD\t0x83C7\n0xB9BE\t0x5495\n0xB9BF\t0x7B8D\n0xB9C0\t0x4F30\n0xB9C1\t0x6CBD\n0xB9C2\t0x5B64\n0xB9C3\t0x59D1\n0xB9C4\t0x9F13\n0xB9C5\t0x53E4\n0xB9C6\t0x86CA\n0xB9C7\t0x9AA8\n0xB9C8\t0x8C37\n0xB9C9\t0x80A1\n0xB9CA\t0x6545\n0xB9CB\t0x987E\n0xB9CC\t0x56FA\n0xB9CD\t0x96C7\n0xB9CE\t0x522E\n0xB9CF\t0x74DC\n0xB9D0\t0x5250\n0xB9D1\t0x5BE1\n0xB9D2\t0x6302\n0xB9D3\t0x8902\n0xB9D4\t0x4E56\n0xB9D5\t0x62D0\n0xB9D6\t0x602A\n0xB9D7\t0x68FA\n0xB9D8\t0x5173\n0xB9D9\t0x5B98\n0xB9DA\t0x51A0\n0xB9DB\t0x89C2\n0xB9DC\t0x7BA1\n0xB9DD\t0x9986\n0xB9DE\t0x7F50\n0xB9DF\t0x60EF\n0xB9E0\t0x704C\n0xB9E1\t0x8D2F\n0xB9E2\t0x5149\n0xB9E3\t0x5E7F\n0xB9E4\t0x901B\n0xB9E5\t0x7470\n0xB9E6\t0x89C4\n0xB9E7\t0x572D\n0xB9E8\t0x7845\n0xB9E9\t0x5F52\n0xB9EA\t0x9F9F\n0xB9EB\t0x95FA\n0xB9EC\t0x8F68\n0xB9ED\t0x9B3C\n0xB9EE\t0x8BE1\n0xB9EF\t0x7678\n0xB9F0\t0x6842\n0xB9F1\t0x67DC\n0xB9F2\t0x8DEA\n0xB9F3\t0x8D35\n0xB9F4\t0x523D\n0xB9F5\t0x8F8A\n0xB9F6\t0x6EDA\n0xB9F7\t0x68CD\n0xB9F8\t0x9505\n0xB9F9\t0x90ED\n0xB9FA\t0x56FD\n0xB9FB\t0x679C\n0xB9FC\t0x88F9\n0xB9FD\t0x8FC7\n0xB9FE\t0x54C8\n0xBA40\t0x7BC5\n0xBA41\t0x7BC8\n0xBA42\t0x7BC9\n0xBA43\t0x7BCA\n0xBA44\t0x7BCB\n0xBA45\t0x7BCD\n0xBA46\t0x7BCE\n0xBA47\t0x7BCF\n0xBA48\t0x7BD0\n0xBA49\t0x7BD2\n0xBA4A\t0x7BD4\n0xBA4B\t0x7BD5\n0xBA4C\t0x7BD6\n0xBA4D\t0x7BD7\n0xBA4E\t0x7BD8\n0xBA4F\t0x7BDB\n0xBA50\t0x7BDC\n0xBA51\t0x7BDE\n0xBA52\t0x7BDF\n0xBA53\t0x7BE0\n0xBA54\t0x7BE2\n0xBA55\t0x7BE3\n0xBA56\t0x7BE4\n0xBA57\t0x7BE7\n0xBA58\t0x7BE8\n0xBA59\t0x7BE9\n0xBA5A\t0x7BEB\n0xBA5B\t0x7BEC\n0xBA5C\t0x7BED\n0xBA5D\t0x7BEF\n0xBA5E\t0x7BF0\n0xBA5F\t0x7BF2\n0xBA60\t0x7BF3\n0xBA61\t0x7BF4\n0xBA62\t0x7BF5\n0xBA63\t0x7BF6\n0xBA64\t0x7BF8\n0xBA65\t0x7BF9\n0xBA66\t0x7BFA\n0xBA67\t0x7BFB\n0xBA68\t0x7BFD\n0xBA69\t0x7BFF\n0xBA6A\t0x7C00\n0xBA6B\t0x7C01\n0xBA6C\t0x7C02\n0xBA6D\t0x7C03\n0xBA6E\t0x7C04\n0xBA6F\t0x7C05\n0xBA70\t0x7C06\n0xBA71\t0x7C08\n0xBA72\t0x7C09\n0xBA73\t0x7C0A\n0xBA74\t0x7C0D\n0xBA75\t0x7C0E\n0xBA76\t0x7C10\n0xBA77\t0x7C11\n0xBA78\t0x7C12\n0xBA79\t0x7C13\n0xBA7A\t0x7C14\n0xBA7B\t0x7C15\n0xBA7C\t0x7C17\n0xBA7D\t0x7C18\n0xBA7E\t0x7C19\n0xBA80\t0x7C1A\n0xBA81\t0x7C1B\n0xBA82\t0x7C1C\n0xBA83\t0x7C1D\n0xBA84\t0x7C1E\n0xBA85\t0x7C20\n0xBA86\t0x7C21\n0xBA87\t0x7C22\n0xBA88\t0x7C23\n0xBA89\t0x7C24\n0xBA8A\t0x7C25\n0xBA8B\t0x7C28\n0xBA8C\t0x7C29\n0xBA8D\t0x7C2B\n0xBA8E\t0x7C2C\n0xBA8F\t0x7C2D\n0xBA90\t0x7C2E\n0xBA91\t0x7C2F\n0xBA92\t0x7C30\n0xBA93\t0x7C31\n0xBA94\t0x7C32\n0xBA95\t0x7C33\n0xBA96\t0x7C34\n0xBA97\t0x7C35\n0xBA98\t0x7C36\n0xBA99\t0x7C37\n0xBA9A\t0x7C39\n0xBA9B\t0x7C3A\n0xBA9C\t0x7C3B\n0xBA9D\t0x7C3C\n0xBA9E\t0x7C3D\n0xBA9F\t0x7C3E\n0xBAA0\t0x7C42\n0xBAA1\t0x9AB8\n0xBAA2\t0x5B69\n0xBAA3\t0x6D77\n0xBAA4\t0x6C26\n0xBAA5\t0x4EA5\n0xBAA6\t0x5BB3\n0xBAA7\t0x9A87\n0xBAA8\t0x9163\n0xBAA9\t0x61A8\n0xBAAA\t0x90AF\n0xBAAB\t0x97E9\n0xBAAC\t0x542B\n0xBAAD\t0x6DB5\n0xBAAE\t0x5BD2\n0xBAAF\t0x51FD\n0xBAB0\t0x558A\n0xBAB1\t0x7F55\n0xBAB2\t0x7FF0\n0xBAB3\t0x64BC\n0xBAB4\t0x634D\n0xBAB5\t0x65F1\n0xBAB6\t0x61BE\n0xBAB7\t0x608D\n0xBAB8\t0x710A\n0xBAB9\t0x6C57\n0xBABA\t0x6C49\n0xBABB\t0x592F\n0xBABC\t0x676D\n0xBABD\t0x822A\n0xBABE\t0x58D5\n0xBABF\t0x568E\n0xBAC0\t0x8C6A\n0xBAC1\t0x6BEB\n0xBAC2\t0x90DD\n0xBAC3\t0x597D\n0xBAC4\t0x8017\n0xBAC5\t0x53F7\n0xBAC6\t0x6D69\n0xBAC7\t0x5475\n0xBAC8\t0x559D\n0xBAC9\t0x8377\n0xBACA\t0x83CF\n0xBACB\t0x6838\n0xBACC\t0x79BE\n0xBACD\t0x548C\n0xBACE\t0x4F55\n0xBACF\t0x5408\n0xBAD0\t0x76D2\n0xBAD1\t0x8C89\n0xBAD2\t0x9602\n0xBAD3\t0x6CB3\n0xBAD4\t0x6DB8\n0xBAD5\t0x8D6B\n0xBAD6\t0x8910\n0xBAD7\t0x9E64\n0xBAD8\t0x8D3A\n0xBAD9\t0x563F\n0xBADA\t0x9ED1\n0xBADB\t0x75D5\n0xBADC\t0x5F88\n0xBADD\t0x72E0\n0xBADE\t0x6068\n0xBADF\t0x54FC\n0xBAE0\t0x4EA8\n0xBAE1\t0x6A2A\n0xBAE2\t0x8861\n0xBAE3\t0x6052\n0xBAE4\t0x8F70\n0xBAE5\t0x54C4\n0xBAE6\t0x70D8\n0xBAE7\t0x8679\n0xBAE8\t0x9E3F\n0xBAE9\t0x6D2A\n0xBAEA\t0x5B8F\n0xBAEB\t0x5F18\n0xBAEC\t0x7EA2\n0xBAED\t0x5589\n0xBAEE\t0x4FAF\n0xBAEF\t0x7334\n0xBAF0\t0x543C\n0xBAF1\t0x539A\n0xBAF2\t0x5019\n0xBAF3\t0x540E\n0xBAF4\t0x547C\n0xBAF5\t0x4E4E\n0xBAF6\t0x5FFD\n0xBAF7\t0x745A\n0xBAF8\t0x58F6\n0xBAF9\t0x846B\n0xBAFA\t0x80E1\n0xBAFB\t0x8774\n0xBAFC\t0x72D0\n0xBAFD\t0x7CCA\n0xBAFE\t0x6E56\n0xBB40\t0x7C43\n0xBB41\t0x7C44\n0xBB42\t0x7C45\n0xBB43\t0x7C46\n0xBB44\t0x7C47\n0xBB45\t0x7C48\n0xBB46\t0x7C49\n0xBB47\t0x7C4A\n0xBB48\t0x7C4B\n0xBB49\t0x7C4C\n0xBB4A\t0x7C4E\n0xBB4B\t0x7C4F\n0xBB4C\t0x7C50\n0xBB4D\t0x7C51\n0xBB4E\t0x7C52\n0xBB4F\t0x7C53\n0xBB50\t0x7C54\n0xBB51\t0x7C55\n0xBB52\t0x7C56\n0xBB53\t0x7C57\n0xBB54\t0x7C58\n0xBB55\t0x7C59\n0xBB56\t0x7C5A\n0xBB57\t0x7C5B\n0xBB58\t0x7C5C\n0xBB59\t0x7C5D\n0xBB5A\t0x7C5E\n0xBB5B\t0x7C5F\n0xBB5C\t0x7C60\n0xBB5D\t0x7C61\n0xBB5E\t0x7C62\n0xBB5F\t0x7C63\n0xBB60\t0x7C64\n0xBB61\t0x7C65\n0xBB62\t0x7C66\n0xBB63\t0x7C67\n0xBB64\t0x7C68\n0xBB65\t0x7C69\n0xBB66\t0x7C6A\n0xBB67\t0x7C6B\n0xBB68\t0x7C6C\n0xBB69\t0x7C6D\n0xBB6A\t0x7C6E\n0xBB6B\t0x7C6F\n0xBB6C\t0x7C70\n0xBB6D\t0x7C71\n0xBB6E\t0x7C72\n0xBB6F\t0x7C75\n0xBB70\t0x7C76\n0xBB71\t0x7C77\n0xBB72\t0x7C78\n0xBB73\t0x7C79\n0xBB74\t0x7C7A\n0xBB75\t0x7C7E\n0xBB76\t0x7C7F\n0xBB77\t0x7C80\n0xBB78\t0x7C81\n0xBB79\t0x7C82\n0xBB7A\t0x7C83\n0xBB7B\t0x7C84\n0xBB7C\t0x7C85\n0xBB7D\t0x7C86\n0xBB7E\t0x7C87\n0xBB80\t0x7C88\n0xBB81\t0x7C8A\n0xBB82\t0x7C8B\n0xBB83\t0x7C8C\n0xBB84\t0x7C8D\n0xBB85\t0x7C8E\n0xBB86\t0x7C8F\n0xBB87\t0x7C90\n0xBB88\t0x7C93\n0xBB89\t0x7C94\n0xBB8A\t0x7C96\n0xBB8B\t0x7C99\n0xBB8C\t0x7C9A\n0xBB8D\t0x7C9B\n0xBB8E\t0x7CA0\n0xBB8F\t0x7CA1\n0xBB90\t0x7CA3\n0xBB91\t0x7CA6\n0xBB92\t0x7CA7\n0xBB93\t0x7CA8\n0xBB94\t0x7CA9\n0xBB95\t0x7CAB\n0xBB96\t0x7CAC\n0xBB97\t0x7CAD\n0xBB98\t0x7CAF\n0xBB99\t0x7CB0\n0xBB9A\t0x7CB4\n0xBB9B\t0x7CB5\n0xBB9C\t0x7CB6\n0xBB9D\t0x7CB7\n0xBB9E\t0x7CB8\n0xBB9F\t0x7CBA\n0xBBA0\t0x7CBB\n0xBBA1\t0x5F27\n0xBBA2\t0x864E\n0xBBA3\t0x552C\n0xBBA4\t0x62A4\n0xBBA5\t0x4E92\n0xBBA6\t0x6CAA\n0xBBA7\t0x6237\n0xBBA8\t0x82B1\n0xBBA9\t0x54D7\n0xBBAA\t0x534E\n0xBBAB\t0x733E\n0xBBAC\t0x6ED1\n0xBBAD\t0x753B\n0xBBAE\t0x5212\n0xBBAF\t0x5316\n0xBBB0\t0x8BDD\n0xBBB1\t0x69D0\n0xBBB2\t0x5F8A\n0xBBB3\t0x6000\n0xBBB4\t0x6DEE\n0xBBB5\t0x574F\n0xBBB6\t0x6B22\n0xBBB7\t0x73AF\n0xBBB8\t0x6853\n0xBBB9\t0x8FD8\n0xBBBA\t0x7F13\n0xBBBB\t0x6362\n0xBBBC\t0x60A3\n0xBBBD\t0x5524\n0xBBBE\t0x75EA\n0xBBBF\t0x8C62\n0xBBC0\t0x7115\n0xBBC1\t0x6DA3\n0xBBC2\t0x5BA6\n0xBBC3\t0x5E7B\n0xBBC4\t0x8352\n0xBBC5\t0x614C\n0xBBC6\t0x9EC4\n0xBBC7\t0x78FA\n0xBBC8\t0x8757\n0xBBC9\t0x7C27\n0xBBCA\t0x7687\n0xBBCB\t0x51F0\n0xBBCC\t0x60F6\n0xBBCD\t0x714C\n0xBBCE\t0x6643\n0xBBCF\t0x5E4C\n0xBBD0\t0x604D\n0xBBD1\t0x8C0E\n0xBBD2\t0x7070\n0xBBD3\t0x6325\n0xBBD4\t0x8F89\n0xBBD5\t0x5FBD\n0xBBD6\t0x6062\n0xBBD7\t0x86D4\n0xBBD8\t0x56DE\n0xBBD9\t0x6BC1\n0xBBDA\t0x6094\n0xBBDB\t0x6167\n0xBBDC\t0x5349\n0xBBDD\t0x60E0\n0xBBDE\t0x6666\n0xBBDF\t0x8D3F\n0xBBE0\t0x79FD\n0xBBE1\t0x4F1A\n0xBBE2\t0x70E9\n0xBBE3\t0x6C47\n0xBBE4\t0x8BB3\n0xBBE5\t0x8BF2\n0xBBE6\t0x7ED8\n0xBBE7\t0x8364\n0xBBE8\t0x660F\n0xBBE9\t0x5A5A\n0xBBEA\t0x9B42\n0xBBEB\t0x6D51\n0xBBEC\t0x6DF7\n0xBBED\t0x8C41\n0xBBEE\t0x6D3B\n0xBBEF\t0x4F19\n0xBBF0\t0x706B\n0xBBF1\t0x83B7\n0xBBF2\t0x6216\n0xBBF3\t0x60D1\n0xBBF4\t0x970D\n0xBBF5\t0x8D27\n0xBBF6\t0x7978\n0xBBF7\t0x51FB\n0xBBF8\t0x573E\n0xBBF9\t0x57FA\n0xBBFA\t0x673A\n0xBBFB\t0x7578\n0xBBFC\t0x7A3D\n0xBBFD\t0x79EF\n0xBBFE\t0x7B95\n0xBC40\t0x7CBF\n0xBC41\t0x7CC0\n0xBC42\t0x7CC2\n0xBC43\t0x7CC3\n0xBC44\t0x7CC4\n0xBC45\t0x7CC6\n0xBC46\t0x7CC9\n0xBC47\t0x7CCB\n0xBC48\t0x7CCE\n0xBC49\t0x7CCF\n0xBC4A\t0x7CD0\n0xBC4B\t0x7CD1\n0xBC4C\t0x7CD2\n0xBC4D\t0x7CD3\n0xBC4E\t0x7CD4\n0xBC4F\t0x7CD8\n0xBC50\t0x7CDA\n0xBC51\t0x7CDB\n0xBC52\t0x7CDD\n0xBC53\t0x7CDE\n0xBC54\t0x7CE1\n0xBC55\t0x7CE2\n0xBC56\t0x7CE3\n0xBC57\t0x7CE4\n0xBC58\t0x7CE5\n0xBC59\t0x7CE6\n0xBC5A\t0x7CE7\n0xBC5B\t0x7CE9\n0xBC5C\t0x7CEA\n0xBC5D\t0x7CEB\n0xBC5E\t0x7CEC\n0xBC5F\t0x7CED\n0xBC60\t0x7CEE\n0xBC61\t0x7CF0\n0xBC62\t0x7CF1\n0xBC63\t0x7CF2\n0xBC64\t0x7CF3\n0xBC65\t0x7CF4\n0xBC66\t0x7CF5\n0xBC67\t0x7CF6\n0xBC68\t0x7CF7\n0xBC69\t0x7CF9\n0xBC6A\t0x7CFA\n0xBC6B\t0x7CFC\n0xBC6C\t0x7CFD\n0xBC6D\t0x7CFE\n0xBC6E\t0x7CFF\n0xBC6F\t0x7D00\n0xBC70\t0x7D01\n0xBC71\t0x7D02\n0xBC72\t0x7D03\n0xBC73\t0x7D04\n0xBC74\t0x7D05\n0xBC75\t0x7D06\n0xBC76\t0x7D07\n0xBC77\t0x7D08\n0xBC78\t0x7D09\n0xBC79\t0x7D0B\n0xBC7A\t0x7D0C\n0xBC7B\t0x7D0D\n0xBC7C\t0x7D0E\n0xBC7D\t0x7D0F\n0xBC7E\t0x7D10\n0xBC80\t0x7D11\n0xBC81\t0x7D12\n0xBC82\t0x7D13\n0xBC83\t0x7D14\n0xBC84\t0x7D15\n0xBC85\t0x7D16\n0xBC86\t0x7D17\n0xBC87\t0x7D18\n0xBC88\t0x7D19\n0xBC89\t0x7D1A\n0xBC8A\t0x7D1B\n0xBC8B\t0x7D1C\n0xBC8C\t0x7D1D\n0xBC8D\t0x7D1E\n0xBC8E\t0x7D1F\n0xBC8F\t0x7D21\n0xBC90\t0x7D23\n0xBC91\t0x7D24\n0xBC92\t0x7D25\n0xBC93\t0x7D26\n0xBC94\t0x7D28\n0xBC95\t0x7D29\n0xBC96\t0x7D2A\n0xBC97\t0x7D2C\n0xBC98\t0x7D2D\n0xBC99\t0x7D2E\n0xBC9A\t0x7D30\n0xBC9B\t0x7D31\n0xBC9C\t0x7D32\n0xBC9D\t0x7D33\n0xBC9E\t0x7D34\n0xBC9F\t0x7D35\n0xBCA0\t0x7D36\n0xBCA1\t0x808C\n0xBCA2\t0x9965\n0xBCA3\t0x8FF9\n0xBCA4\t0x6FC0\n0xBCA5\t0x8BA5\n0xBCA6\t0x9E21\n0xBCA7\t0x59EC\n0xBCA8\t0x7EE9\n0xBCA9\t0x7F09\n0xBCAA\t0x5409\n0xBCAB\t0x6781\n0xBCAC\t0x68D8\n0xBCAD\t0x8F91\n0xBCAE\t0x7C4D\n0xBCAF\t0x96C6\n0xBCB0\t0x53CA\n0xBCB1\t0x6025\n0xBCB2\t0x75BE\n0xBCB3\t0x6C72\n0xBCB4\t0x5373\n0xBCB5\t0x5AC9\n0xBCB6\t0x7EA7\n0xBCB7\t0x6324\n0xBCB8\t0x51E0\n0xBCB9\t0x810A\n0xBCBA\t0x5DF1\n0xBCBB\t0x84DF\n0xBCBC\t0x6280\n0xBCBD\t0x5180\n0xBCBE\t0x5B63\n0xBCBF\t0x4F0E\n0xBCC0\t0x796D\n0xBCC1\t0x5242\n0xBCC2\t0x60B8\n0xBCC3\t0x6D4E\n0xBCC4\t0x5BC4\n0xBCC5\t0x5BC2\n0xBCC6\t0x8BA1\n0xBCC7\t0x8BB0\n0xBCC8\t0x65E2\n0xBCC9\t0x5FCC\n0xBCCA\t0x9645\n0xBCCB\t0x5993\n0xBCCC\t0x7EE7\n0xBCCD\t0x7EAA\n0xBCCE\t0x5609\n0xBCCF\t0x67B7\n0xBCD0\t0x5939\n0xBCD1\t0x4F73\n0xBCD2\t0x5BB6\n0xBCD3\t0x52A0\n0xBCD4\t0x835A\n0xBCD5\t0x988A\n0xBCD6\t0x8D3E\n0xBCD7\t0x7532\n0xBCD8\t0x94BE\n0xBCD9\t0x5047\n0xBCDA\t0x7A3C\n0xBCDB\t0x4EF7\n0xBCDC\t0x67B6\n0xBCDD\t0x9A7E\n0xBCDE\t0x5AC1\n0xBCDF\t0x6B7C\n0xBCE0\t0x76D1\n0xBCE1\t0x575A\n0xBCE2\t0x5C16\n0xBCE3\t0x7B3A\n0xBCE4\t0x95F4\n0xBCE5\t0x714E\n0xBCE6\t0x517C\n0xBCE7\t0x80A9\n0xBCE8\t0x8270\n0xBCE9\t0x5978\n0xBCEA\t0x7F04\n0xBCEB\t0x8327\n0xBCEC\t0x68C0\n0xBCED\t0x67EC\n0xBCEE\t0x78B1\n0xBCEF\t0x7877\n0xBCF0\t0x62E3\n0xBCF1\t0x6361\n0xBCF2\t0x7B80\n0xBCF3\t0x4FED\n0xBCF4\t0x526A\n0xBCF5\t0x51CF\n0xBCF6\t0x8350\n0xBCF7\t0x69DB\n0xBCF8\t0x9274\n0xBCF9\t0x8DF5\n0xBCFA\t0x8D31\n0xBCFB\t0x89C1\n0xBCFC\t0x952E\n0xBCFD\t0x7BAD\n0xBCFE\t0x4EF6\n0xBD40\t0x7D37\n0xBD41\t0x7D38\n0xBD42\t0x7D39\n0xBD43\t0x7D3A\n0xBD44\t0x7D3B\n0xBD45\t0x7D3C\n0xBD46\t0x7D3D\n0xBD47\t0x7D3E\n0xBD48\t0x7D3F\n0xBD49\t0x7D40\n0xBD4A\t0x7D41\n0xBD4B\t0x7D42\n0xBD4C\t0x7D43\n0xBD4D\t0x7D44\n0xBD4E\t0x7D45\n0xBD4F\t0x7D46\n0xBD50\t0x7D47\n0xBD51\t0x7D48\n0xBD52\t0x7D49\n0xBD53\t0x7D4A\n0xBD54\t0x7D4B\n0xBD55\t0x7D4C\n0xBD56\t0x7D4D\n0xBD57\t0x7D4E\n0xBD58\t0x7D4F\n0xBD59\t0x7D50\n0xBD5A\t0x7D51\n0xBD5B\t0x7D52\n0xBD5C\t0x7D53\n0xBD5D\t0x7D54\n0xBD5E\t0x7D55\n0xBD5F\t0x7D56\n0xBD60\t0x7D57\n0xBD61\t0x7D58\n0xBD62\t0x7D59\n0xBD63\t0x7D5A\n0xBD64\t0x7D5B\n0xBD65\t0x7D5C\n0xBD66\t0x7D5D\n0xBD67\t0x7D5E\n0xBD68\t0x7D5F\n0xBD69\t0x7D60\n0xBD6A\t0x7D61\n0xBD6B\t0x7D62\n0xBD6C\t0x7D63\n0xBD6D\t0x7D64\n0xBD6E\t0x7D65\n0xBD6F\t0x7D66\n0xBD70\t0x7D67\n0xBD71\t0x7D68\n0xBD72\t0x7D69\n0xBD73\t0x7D6A\n0xBD74\t0x7D6B\n0xBD75\t0x7D6C\n0xBD76\t0x7D6D\n0xBD77\t0x7D6F\n0xBD78\t0x7D70\n0xBD79\t0x7D71\n0xBD7A\t0x7D72\n0xBD7B\t0x7D73\n0xBD7C\t0x7D74\n0xBD7D\t0x7D75\n0xBD7E\t0x7D76\n0xBD80\t0x7D78\n0xBD81\t0x7D79\n0xBD82\t0x7D7A\n0xBD83\t0x7D7B\n0xBD84\t0x7D7C\n0xBD85\t0x7D7D\n0xBD86\t0x7D7E\n0xBD87\t0x7D7F\n0xBD88\t0x7D80\n0xBD89\t0x7D81\n0xBD8A\t0x7D82\n0xBD8B\t0x7D83\n0xBD8C\t0x7D84\n0xBD8D\t0x7D85\n0xBD8E\t0x7D86\n0xBD8F\t0x7D87\n0xBD90\t0x7D88\n0xBD91\t0x7D89\n0xBD92\t0x7D8A\n0xBD93\t0x7D8B\n0xBD94\t0x7D8C\n0xBD95\t0x7D8D\n0xBD96\t0x7D8E\n0xBD97\t0x7D8F\n0xBD98\t0x7D90\n0xBD99\t0x7D91\n0xBD9A\t0x7D92\n0xBD9B\t0x7D93\n0xBD9C\t0x7D94\n0xBD9D\t0x7D95\n0xBD9E\t0x7D96\n0xBD9F\t0x7D97\n0xBDA0\t0x7D98\n0xBDA1\t0x5065\n0xBDA2\t0x8230\n0xBDA3\t0x5251\n0xBDA4\t0x996F\n0xBDA5\t0x6E10\n0xBDA6\t0x6E85\n0xBDA7\t0x6DA7\n0xBDA8\t0x5EFA\n0xBDA9\t0x50F5\n0xBDAA\t0x59DC\n0xBDAB\t0x5C06\n0xBDAC\t0x6D46\n0xBDAD\t0x6C5F\n0xBDAE\t0x7586\n0xBDAF\t0x848B\n0xBDB0\t0x6868\n0xBDB1\t0x5956\n0xBDB2\t0x8BB2\n0xBDB3\t0x5320\n0xBDB4\t0x9171\n0xBDB5\t0x964D\n0xBDB6\t0x8549\n0xBDB7\t0x6912\n0xBDB8\t0x7901\n0xBDB9\t0x7126\n0xBDBA\t0x80F6\n0xBDBB\t0x4EA4\n0xBDBC\t0x90CA\n0xBDBD\t0x6D47\n0xBDBE\t0x9A84\n0xBDBF\t0x5A07\n0xBDC0\t0x56BC\n0xBDC1\t0x6405\n0xBDC2\t0x94F0\n0xBDC3\t0x77EB\n0xBDC4\t0x4FA5\n0xBDC5\t0x811A\n0xBDC6\t0x72E1\n0xBDC7\t0x89D2\n0xBDC8\t0x997A\n0xBDC9\t0x7F34\n0xBDCA\t0x7EDE\n0xBDCB\t0x527F\n0xBDCC\t0x6559\n0xBDCD\t0x9175\n0xBDCE\t0x8F7F\n0xBDCF\t0x8F83\n0xBDD0\t0x53EB\n0xBDD1\t0x7A96\n0xBDD2\t0x63ED\n0xBDD3\t0x63A5\n0xBDD4\t0x7686\n0xBDD5\t0x79F8\n0xBDD6\t0x8857\n0xBDD7\t0x9636\n0xBDD8\t0x622A\n0xBDD9\t0x52AB\n0xBDDA\t0x8282\n0xBDDB\t0x6854\n0xBDDC\t0x6770\n0xBDDD\t0x6377\n0xBDDE\t0x776B\n0xBDDF\t0x7AED\n0xBDE0\t0x6D01\n0xBDE1\t0x7ED3\n0xBDE2\t0x89E3\n0xBDE3\t0x59D0\n0xBDE4\t0x6212\n0xBDE5\t0x85C9\n0xBDE6\t0x82A5\n0xBDE7\t0x754C\n0xBDE8\t0x501F\n0xBDE9\t0x4ECB\n0xBDEA\t0x75A5\n0xBDEB\t0x8BEB\n0xBDEC\t0x5C4A\n0xBDED\t0x5DFE\n0xBDEE\t0x7B4B\n0xBDEF\t0x65A4\n0xBDF0\t0x91D1\n0xBDF1\t0x4ECA\n0xBDF2\t0x6D25\n0xBDF3\t0x895F\n0xBDF4\t0x7D27\n0xBDF5\t0x9526\n0xBDF6\t0x4EC5\n0xBDF7\t0x8C28\n0xBDF8\t0x8FDB\n0xBDF9\t0x9773\n0xBDFA\t0x664B\n0xBDFB\t0x7981\n0xBDFC\t0x8FD1\n0xBDFD\t0x70EC\n0xBDFE\t0x6D78\n0xBE40\t0x7D99\n0xBE41\t0x7D9A\n0xBE42\t0x7D9B\n0xBE43\t0x7D9C\n0xBE44\t0x7D9D\n0xBE45\t0x7D9E\n0xBE46\t0x7D9F\n0xBE47\t0x7DA0\n0xBE48\t0x7DA1\n0xBE49\t0x7DA2\n0xBE4A\t0x7DA3\n0xBE4B\t0x7DA4\n0xBE4C\t0x7DA5\n0xBE4D\t0x7DA7\n0xBE4E\t0x7DA8\n0xBE4F\t0x7DA9\n0xBE50\t0x7DAA\n0xBE51\t0x7DAB\n0xBE52\t0x7DAC\n0xBE53\t0x7DAD\n0xBE54\t0x7DAF\n0xBE55\t0x7DB0\n0xBE56\t0x7DB1\n0xBE57\t0x7DB2\n0xBE58\t0x7DB3\n0xBE59\t0x7DB4\n0xBE5A\t0x7DB5\n0xBE5B\t0x7DB6\n0xBE5C\t0x7DB7\n0xBE5D\t0x7DB8\n0xBE5E\t0x7DB9\n0xBE5F\t0x7DBA\n0xBE60\t0x7DBB\n0xBE61\t0x7DBC\n0xBE62\t0x7DBD\n0xBE63\t0x7DBE\n0xBE64\t0x7DBF\n0xBE65\t0x7DC0\n0xBE66\t0x7DC1\n0xBE67\t0x7DC2\n0xBE68\t0x7DC3\n0xBE69\t0x7DC4\n0xBE6A\t0x7DC5\n0xBE6B\t0x7DC6\n0xBE6C\t0x7DC7\n0xBE6D\t0x7DC8\n0xBE6E\t0x7DC9\n0xBE6F\t0x7DCA\n0xBE70\t0x7DCB\n0xBE71\t0x7DCC\n0xBE72\t0x7DCD\n0xBE73\t0x7DCE\n0xBE74\t0x7DCF\n0xBE75\t0x7DD0\n0xBE76\t0x7DD1\n0xBE77\t0x7DD2\n0xBE78\t0x7DD3\n0xBE79\t0x7DD4\n0xBE7A\t0x7DD5\n0xBE7B\t0x7DD6\n0xBE7C\t0x7DD7\n0xBE7D\t0x7DD8\n0xBE7E\t0x7DD9\n0xBE80\t0x7DDA\n0xBE81\t0x7DDB\n0xBE82\t0x7DDC\n0xBE83\t0x7DDD\n0xBE84\t0x7DDE\n0xBE85\t0x7DDF\n0xBE86\t0x7DE0\n0xBE87\t0x7DE1\n0xBE88\t0x7DE2\n0xBE89\t0x7DE3\n0xBE8A\t0x7DE4\n0xBE8B\t0x7DE5\n0xBE8C\t0x7DE6\n0xBE8D\t0x7DE7\n0xBE8E\t0x7DE8\n0xBE8F\t0x7DE9\n0xBE90\t0x7DEA\n0xBE91\t0x7DEB\n0xBE92\t0x7DEC\n0xBE93\t0x7DED\n0xBE94\t0x7DEE\n0xBE95\t0x7DEF\n0xBE96\t0x7DF0\n0xBE97\t0x7DF1\n0xBE98\t0x7DF2\n0xBE99\t0x7DF3\n0xBE9A\t0x7DF4\n0xBE9B\t0x7DF5\n0xBE9C\t0x7DF6\n0xBE9D\t0x7DF7\n0xBE9E\t0x7DF8\n0xBE9F\t0x7DF9\n0xBEA0\t0x7DFA\n0xBEA1\t0x5C3D\n0xBEA2\t0x52B2\n0xBEA3\t0x8346\n0xBEA4\t0x5162\n0xBEA5\t0x830E\n0xBEA6\t0x775B\n0xBEA7\t0x6676\n0xBEA8\t0x9CB8\n0xBEA9\t0x4EAC\n0xBEAA\t0x60CA\n0xBEAB\t0x7CBE\n0xBEAC\t0x7CB3\n0xBEAD\t0x7ECF\n0xBEAE\t0x4E95\n0xBEAF\t0x8B66\n0xBEB0\t0x666F\n0xBEB1\t0x9888\n0xBEB2\t0x9759\n0xBEB3\t0x5883\n0xBEB4\t0x656C\n0xBEB5\t0x955C\n0xBEB6\t0x5F84\n0xBEB7\t0x75C9\n0xBEB8\t0x9756\n0xBEB9\t0x7ADF\n0xBEBA\t0x7ADE\n0xBEBB\t0x51C0\n0xBEBC\t0x70AF\n0xBEBD\t0x7A98\n0xBEBE\t0x63EA\n0xBEBF\t0x7A76\n0xBEC0\t0x7EA0\n0xBEC1\t0x7396\n0xBEC2\t0x97ED\n0xBEC3\t0x4E45\n0xBEC4\t0x7078\n0xBEC5\t0x4E5D\n0xBEC6\t0x9152\n0xBEC7\t0x53A9\n0xBEC8\t0x6551\n0xBEC9\t0x65E7\n0xBECA\t0x81FC\n0xBECB\t0x8205\n0xBECC\t0x548E\n0xBECD\t0x5C31\n0xBECE\t0x759A\n0xBECF\t0x97A0\n0xBED0\t0x62D8\n0xBED1\t0x72D9\n0xBED2\t0x75BD\n0xBED3\t0x5C45\n0xBED4\t0x9A79\n0xBED5\t0x83CA\n0xBED6\t0x5C40\n0xBED7\t0x5480\n0xBED8\t0x77E9\n0xBED9\t0x4E3E\n0xBEDA\t0x6CAE\n0xBEDB\t0x805A\n0xBEDC\t0x62D2\n0xBEDD\t0x636E\n0xBEDE\t0x5DE8\n0xBEDF\t0x5177\n0xBEE0\t0x8DDD\n0xBEE1\t0x8E1E\n0xBEE2\t0x952F\n0xBEE3\t0x4FF1\n0xBEE4\t0x53E5\n0xBEE5\t0x60E7\n0xBEE6\t0x70AC\n0xBEE7\t0x5267\n0xBEE8\t0x6350\n0xBEE9\t0x9E43\n0xBEEA\t0x5A1F\n0xBEEB\t0x5026\n0xBEEC\t0x7737\n0xBEED\t0x5377\n0xBEEE\t0x7EE2\n0xBEEF\t0x6485\n0xBEF0\t0x652B\n0xBEF1\t0x6289\n0xBEF2\t0x6398\n0xBEF3\t0x5014\n0xBEF4\t0x7235\n0xBEF5\t0x89C9\n0xBEF6\t0x51B3\n0xBEF7\t0x8BC0\n0xBEF8\t0x7EDD\n0xBEF9\t0x5747\n0xBEFA\t0x83CC\n0xBEFB\t0x94A7\n0xBEFC\t0x519B\n0xBEFD\t0x541B\n0xBEFE\t0x5CFB\n0xBF40\t0x7DFB\n0xBF41\t0x7DFC\n0xBF42\t0x7DFD\n0xBF43\t0x7DFE\n0xBF44\t0x7DFF\n0xBF45\t0x7E00\n0xBF46\t0x7E01\n0xBF47\t0x7E02\n0xBF48\t0x7E03\n0xBF49\t0x7E04\n0xBF4A\t0x7E05\n0xBF4B\t0x7E06\n0xBF4C\t0x7E07\n0xBF4D\t0x7E08\n0xBF4E\t0x7E09\n0xBF4F\t0x7E0A\n0xBF50\t0x7E0B\n0xBF51\t0x7E0C\n0xBF52\t0x7E0D\n0xBF53\t0x7E0E\n0xBF54\t0x7E0F\n0xBF55\t0x7E10\n0xBF56\t0x7E11\n0xBF57\t0x7E12\n0xBF58\t0x7E13\n0xBF59\t0x7E14\n0xBF5A\t0x7E15\n0xBF5B\t0x7E16\n0xBF5C\t0x7E17\n0xBF5D\t0x7E18\n0xBF5E\t0x7E19\n0xBF5F\t0x7E1A\n0xBF60\t0x7E1B\n0xBF61\t0x7E1C\n0xBF62\t0x7E1D\n0xBF63\t0x7E1E\n0xBF64\t0x7E1F\n0xBF65\t0x7E20\n0xBF66\t0x7E21\n0xBF67\t0x7E22\n0xBF68\t0x7E23\n0xBF69\t0x7E24\n0xBF6A\t0x7E25\n0xBF6B\t0x7E26\n0xBF6C\t0x7E27\n0xBF6D\t0x7E28\n0xBF6E\t0x7E29\n0xBF6F\t0x7E2A\n0xBF70\t0x7E2B\n0xBF71\t0x7E2C\n0xBF72\t0x7E2D\n0xBF73\t0x7E2E\n0xBF74\t0x7E2F\n0xBF75\t0x7E30\n0xBF76\t0x7E31\n0xBF77\t0x7E32\n0xBF78\t0x7E33\n0xBF79\t0x7E34\n0xBF7A\t0x7E35\n0xBF7B\t0x7E36\n0xBF7C\t0x7E37\n0xBF7D\t0x7E38\n0xBF7E\t0x7E39\n0xBF80\t0x7E3A\n0xBF81\t0x7E3C\n0xBF82\t0x7E3D\n0xBF83\t0x7E3E\n0xBF84\t0x7E3F\n0xBF85\t0x7E40\n0xBF86\t0x7E42\n0xBF87\t0x7E43\n0xBF88\t0x7E44\n0xBF89\t0x7E45\n0xBF8A\t0x7E46\n0xBF8B\t0x7E48\n0xBF8C\t0x7E49\n0xBF8D\t0x7E4A\n0xBF8E\t0x7E4B\n0xBF8F\t0x7E4C\n0xBF90\t0x7E4D\n0xBF91\t0x7E4E\n0xBF92\t0x7E4F\n0xBF93\t0x7E50\n0xBF94\t0x7E51\n0xBF95\t0x7E52\n0xBF96\t0x7E53\n0xBF97\t0x7E54\n0xBF98\t0x7E55\n0xBF99\t0x7E56\n0xBF9A\t0x7E57\n0xBF9B\t0x7E58\n0xBF9C\t0x7E59\n0xBF9D\t0x7E5A\n0xBF9E\t0x7E5B\n0xBF9F\t0x7E5C\n0xBFA0\t0x7E5D\n0xBFA1\t0x4FCA\n0xBFA2\t0x7AE3\n0xBFA3\t0x6D5A\n0xBFA4\t0x90E1\n0xBFA5\t0x9A8F\n0xBFA6\t0x5580\n0xBFA7\t0x5496\n0xBFA8\t0x5361\n0xBFA9\t0x54AF\n0xBFAA\t0x5F00\n0xBFAB\t0x63E9\n0xBFAC\t0x6977\n0xBFAD\t0x51EF\n0xBFAE\t0x6168\n0xBFAF\t0x520A\n0xBFB0\t0x582A\n0xBFB1\t0x52D8\n0xBFB2\t0x574E\n0xBFB3\t0x780D\n0xBFB4\t0x770B\n0xBFB5\t0x5EB7\n0xBFB6\t0x6177\n0xBFB7\t0x7CE0\n0xBFB8\t0x625B\n0xBFB9\t0x6297\n0xBFBA\t0x4EA2\n0xBFBB\t0x7095\n0xBFBC\t0x8003\n0xBFBD\t0x62F7\n0xBFBE\t0x70E4\n0xBFBF\t0x9760\n0xBFC0\t0x5777\n0xBFC1\t0x82DB\n0xBFC2\t0x67EF\n0xBFC3\t0x68F5\n0xBFC4\t0x78D5\n0xBFC5\t0x9897\n0xBFC6\t0x79D1\n0xBFC7\t0x58F3\n0xBFC8\t0x54B3\n0xBFC9\t0x53EF\n0xBFCA\t0x6E34\n0xBFCB\t0x514B\n0xBFCC\t0x523B\n0xBFCD\t0x5BA2\n0xBFCE\t0x8BFE\n0xBFCF\t0x80AF\n0xBFD0\t0x5543\n0xBFD1\t0x57A6\n0xBFD2\t0x6073\n0xBFD3\t0x5751\n0xBFD4\t0x542D\n0xBFD5\t0x7A7A\n0xBFD6\t0x6050\n0xBFD7\t0x5B54\n0xBFD8\t0x63A7\n0xBFD9\t0x62A0\n0xBFDA\t0x53E3\n0xBFDB\t0x6263\n0xBFDC\t0x5BC7\n0xBFDD\t0x67AF\n0xBFDE\t0x54ED\n0xBFDF\t0x7A9F\n0xBFE0\t0x82E6\n0xBFE1\t0x9177\n0xBFE2\t0x5E93\n0xBFE3\t0x88E4\n0xBFE4\t0x5938\n0xBFE5\t0x57AE\n0xBFE6\t0x630E\n0xBFE7\t0x8DE8\n0xBFE8\t0x80EF\n0xBFE9\t0x5757\n0xBFEA\t0x7B77\n0xBFEB\t0x4FA9\n0xBFEC\t0x5FEB\n0xBFED\t0x5BBD\n0xBFEE\t0x6B3E\n0xBFEF\t0x5321\n0xBFF0\t0x7B50\n0xBFF1\t0x72C2\n0xBFF2\t0x6846\n0xBFF3\t0x77FF\n0xBFF4\t0x7736\n0xBFF5\t0x65F7\n0xBFF6\t0x51B5\n0xBFF7\t0x4E8F\n0xBFF8\t0x76D4\n0xBFF9\t0x5CBF\n0xBFFA\t0x7AA5\n0xBFFB\t0x8475\n0xBFFC\t0x594E\n0xBFFD\t0x9B41\n0xBFFE\t0x5080\n0xC040\t0x7E5E\n0xC041\t0x7E5F\n0xC042\t0x7E60\n0xC043\t0x7E61\n0xC044\t0x7E62\n0xC045\t0x7E63\n0xC046\t0x7E64\n0xC047\t0x7E65\n0xC048\t0x7E66\n0xC049\t0x7E67\n0xC04A\t0x7E68\n0xC04B\t0x7E69\n0xC04C\t0x7E6A\n0xC04D\t0x7E6B\n0xC04E\t0x7E6C\n0xC04F\t0x7E6D\n0xC050\t0x7E6E\n0xC051\t0x7E6F\n0xC052\t0x7E70\n0xC053\t0x7E71\n0xC054\t0x7E72\n0xC055\t0x7E73\n0xC056\t0x7E74\n0xC057\t0x7E75\n0xC058\t0x7E76\n0xC059\t0x7E77\n0xC05A\t0x7E78\n0xC05B\t0x7E79\n0xC05C\t0x7E7A\n0xC05D\t0x7E7B\n0xC05E\t0x7E7C\n0xC05F\t0x7E7D\n0xC060\t0x7E7E\n0xC061\t0x7E7F\n0xC062\t0x7E80\n0xC063\t0x7E81\n0xC064\t0x7E83\n0xC065\t0x7E84\n0xC066\t0x7E85\n0xC067\t0x7E86\n0xC068\t0x7E87\n0xC069\t0x7E88\n0xC06A\t0x7E89\n0xC06B\t0x7E8A\n0xC06C\t0x7E8B\n0xC06D\t0x7E8C\n0xC06E\t0x7E8D\n0xC06F\t0x7E8E\n0xC070\t0x7E8F\n0xC071\t0x7E90\n0xC072\t0x7E91\n0xC073\t0x7E92\n0xC074\t0x7E93\n0xC075\t0x7E94\n0xC076\t0x7E95\n0xC077\t0x7E96\n0xC078\t0x7E97\n0xC079\t0x7E98\n0xC07A\t0x7E99\n0xC07B\t0x7E9A\n0xC07C\t0x7E9C\n0xC07D\t0x7E9D\n0xC07E\t0x7E9E\n0xC080\t0x7EAE\n0xC081\t0x7EB4\n0xC082\t0x7EBB\n0xC083\t0x7EBC\n0xC084\t0x7ED6\n0xC085\t0x7EE4\n0xC086\t0x7EEC\n0xC087\t0x7EF9\n0xC088\t0x7F0A\n0xC089\t0x7F10\n0xC08A\t0x7F1E\n0xC08B\t0x7F37\n0xC08C\t0x7F39\n0xC08D\t0x7F3B\n0xC08E\t0x7F3C\n0xC08F\t0x7F3D\n0xC090\t0x7F3E\n0xC091\t0x7F3F\n0xC092\t0x7F40\n0xC093\t0x7F41\n0xC094\t0x7F43\n0xC095\t0x7F46\n0xC096\t0x7F47\n0xC097\t0x7F48\n0xC098\t0x7F49\n0xC099\t0x7F4A\n0xC09A\t0x7F4B\n0xC09B\t0x7F4C\n0xC09C\t0x7F4D\n0xC09D\t0x7F4E\n0xC09E\t0x7F4F\n0xC09F\t0x7F52\n0xC0A0\t0x7F53\n0xC0A1\t0x9988\n0xC0A2\t0x6127\n0xC0A3\t0x6E83\n0xC0A4\t0x5764\n0xC0A5\t0x6606\n0xC0A6\t0x6346\n0xC0A7\t0x56F0\n0xC0A8\t0x62EC\n0xC0A9\t0x6269\n0xC0AA\t0x5ED3\n0xC0AB\t0x9614\n0xC0AC\t0x5783\n0xC0AD\t0x62C9\n0xC0AE\t0x5587\n0xC0AF\t0x8721\n0xC0B0\t0x814A\n0xC0B1\t0x8FA3\n0xC0B2\t0x5566\n0xC0B3\t0x83B1\n0xC0B4\t0x6765\n0xC0B5\t0x8D56\n0xC0B6\t0x84DD\n0xC0B7\t0x5A6A\n0xC0B8\t0x680F\n0xC0B9\t0x62E6\n0xC0BA\t0x7BEE\n0xC0BB\t0x9611\n0xC0BC\t0x5170\n0xC0BD\t0x6F9C\n0xC0BE\t0x8C30\n0xC0BF\t0x63FD\n0xC0C0\t0x89C8\n0xC0C1\t0x61D2\n0xC0C2\t0x7F06\n0xC0C3\t0x70C2\n0xC0C4\t0x6EE5\n0xC0C5\t0x7405\n0xC0C6\t0x6994\n0xC0C7\t0x72FC\n0xC0C8\t0x5ECA\n0xC0C9\t0x90CE\n0xC0CA\t0x6717\n0xC0CB\t0x6D6A\n0xC0CC\t0x635E\n0xC0CD\t0x52B3\n0xC0CE\t0x7262\n0xC0CF\t0x8001\n0xC0D0\t0x4F6C\n0xC0D1\t0x59E5\n0xC0D2\t0x916A\n0xC0D3\t0x70D9\n0xC0D4\t0x6D9D\n0xC0D5\t0x52D2\n0xC0D6\t0x4E50\n0xC0D7\t0x96F7\n0xC0D8\t0x956D\n0xC0D9\t0x857E\n0xC0DA\t0x78CA\n0xC0DB\t0x7D2F\n0xC0DC\t0x5121\n0xC0DD\t0x5792\n0xC0DE\t0x64C2\n0xC0DF\t0x808B\n0xC0E0\t0x7C7B\n0xC0E1\t0x6CEA\n0xC0E2\t0x68F1\n0xC0E3\t0x695E\n0xC0E4\t0x51B7\n0xC0E5\t0x5398\n0xC0E6\t0x68A8\n0xC0E7\t0x7281\n0xC0E8\t0x9ECE\n0xC0E9\t0x7BF1\n0xC0EA\t0x72F8\n0xC0EB\t0x79BB\n0xC0EC\t0x6F13\n0xC0ED\t0x7406\n0xC0EE\t0x674E\n0xC0EF\t0x91CC\n0xC0F0\t0x9CA4\n0xC0F1\t0x793C\n0xC0F2\t0x8389\n0xC0F3\t0x8354\n0xC0F4\t0x540F\n0xC0F5\t0x6817\n0xC0F6\t0x4E3D\n0xC0F7\t0x5389\n0xC0F8\t0x52B1\n0xC0F9\t0x783E\n0xC0FA\t0x5386\n0xC0FB\t0x5229\n0xC0FC\t0x5088\n0xC0FD\t0x4F8B\n0xC0FE\t0x4FD0\n0xC140\t0x7F56\n0xC141\t0x7F59\n0xC142\t0x7F5B\n0xC143\t0x7F5C\n0xC144\t0x7F5D\n0xC145\t0x7F5E\n0xC146\t0x7F60\n0xC147\t0x7F63\n0xC148\t0x7F64\n0xC149\t0x7F65\n0xC14A\t0x7F66\n0xC14B\t0x7F67\n0xC14C\t0x7F6B\n0xC14D\t0x7F6C\n0xC14E\t0x7F6D\n0xC14F\t0x7F6F\n0xC150\t0x7F70\n0xC151\t0x7F73\n0xC152\t0x7F75\n0xC153\t0x7F76\n0xC154\t0x7F77\n0xC155\t0x7F78\n0xC156\t0x7F7A\n0xC157\t0x7F7B\n0xC158\t0x7F7C\n0xC159\t0x7F7D\n0xC15A\t0x7F7F\n0xC15B\t0x7F80\n0xC15C\t0x7F82\n0xC15D\t0x7F83\n0xC15E\t0x7F84\n0xC15F\t0x7F85\n0xC160\t0x7F86\n0xC161\t0x7F87\n0xC162\t0x7F88\n0xC163\t0x7F89\n0xC164\t0x7F8B\n0xC165\t0x7F8D\n0xC166\t0x7F8F\n0xC167\t0x7F90\n0xC168\t0x7F91\n0xC169\t0x7F92\n0xC16A\t0x7F93\n0xC16B\t0x7F95\n0xC16C\t0x7F96\n0xC16D\t0x7F97\n0xC16E\t0x7F98\n0xC16F\t0x7F99\n0xC170\t0x7F9B\n0xC171\t0x7F9C\n0xC172\t0x7FA0\n0xC173\t0x7FA2\n0xC174\t0x7FA3\n0xC175\t0x7FA5\n0xC176\t0x7FA6\n0xC177\t0x7FA8\n0xC178\t0x7FA9\n0xC179\t0x7FAA\n0xC17A\t0x7FAB\n0xC17B\t0x7FAC\n0xC17C\t0x7FAD\n0xC17D\t0x7FAE\n0xC17E\t0x7FB1\n0xC180\t0x7FB3\n0xC181\t0x7FB4\n0xC182\t0x7FB5\n0xC183\t0x7FB6\n0xC184\t0x7FB7\n0xC185\t0x7FBA\n0xC186\t0x7FBB\n0xC187\t0x7FBE\n0xC188\t0x7FC0\n0xC189\t0x7FC2\n0xC18A\t0x7FC3\n0xC18B\t0x7FC4\n0xC18C\t0x7FC6\n0xC18D\t0x7FC7\n0xC18E\t0x7FC8\n0xC18F\t0x7FC9\n0xC190\t0x7FCB\n0xC191\t0x7FCD\n0xC192\t0x7FCF\n0xC193\t0x7FD0\n0xC194\t0x7FD1\n0xC195\t0x7FD2\n0xC196\t0x7FD3\n0xC197\t0x7FD6\n0xC198\t0x7FD7\n0xC199\t0x7FD9\n0xC19A\t0x7FDA\n0xC19B\t0x7FDB\n0xC19C\t0x7FDC\n0xC19D\t0x7FDD\n0xC19E\t0x7FDE\n0xC19F\t0x7FE2\n0xC1A0\t0x7FE3\n0xC1A1\t0x75E2\n0xC1A2\t0x7ACB\n0xC1A3\t0x7C92\n0xC1A4\t0x6CA5\n0xC1A5\t0x96B6\n0xC1A6\t0x529B\n0xC1A7\t0x7483\n0xC1A8\t0x54E9\n0xC1A9\t0x4FE9\n0xC1AA\t0x8054\n0xC1AB\t0x83B2\n0xC1AC\t0x8FDE\n0xC1AD\t0x9570\n0xC1AE\t0x5EC9\n0xC1AF\t0x601C\n0xC1B0\t0x6D9F\n0xC1B1\t0x5E18\n0xC1B2\t0x655B\n0xC1B3\t0x8138\n0xC1B4\t0x94FE\n0xC1B5\t0x604B\n0xC1B6\t0x70BC\n0xC1B7\t0x7EC3\n0xC1B8\t0x7CAE\n0xC1B9\t0x51C9\n0xC1BA\t0x6881\n0xC1BB\t0x7CB1\n0xC1BC\t0x826F\n0xC1BD\t0x4E24\n0xC1BE\t0x8F86\n0xC1BF\t0x91CF\n0xC1C0\t0x667E\n0xC1C1\t0x4EAE\n0xC1C2\t0x8C05\n0xC1C3\t0x64A9\n0xC1C4\t0x804A\n0xC1C5\t0x50DA\n0xC1C6\t0x7597\n0xC1C7\t0x71CE\n0xC1C8\t0x5BE5\n0xC1C9\t0x8FBD\n0xC1CA\t0x6F66\n0xC1CB\t0x4E86\n0xC1CC\t0x6482\n0xC1CD\t0x9563\n0xC1CE\t0x5ED6\n0xC1CF\t0x6599\n0xC1D0\t0x5217\n0xC1D1\t0x88C2\n0xC1D2\t0x70C8\n0xC1D3\t0x52A3\n0xC1D4\t0x730E\n0xC1D5\t0x7433\n0xC1D6\t0x6797\n0xC1D7\t0x78F7\n0xC1D8\t0x9716\n0xC1D9\t0x4E34\n0xC1DA\t0x90BB\n0xC1DB\t0x9CDE\n0xC1DC\t0x6DCB\n0xC1DD\t0x51DB\n0xC1DE\t0x8D41\n0xC1DF\t0x541D\n0xC1E0\t0x62CE\n0xC1E1\t0x73B2\n0xC1E2\t0x83F1\n0xC1E3\t0x96F6\n0xC1E4\t0x9F84\n0xC1E5\t0x94C3\n0xC1E6\t0x4F36\n0xC1E7\t0x7F9A\n0xC1E8\t0x51CC\n0xC1E9\t0x7075\n0xC1EA\t0x9675\n0xC1EB\t0x5CAD\n0xC1EC\t0x9886\n0xC1ED\t0x53E6\n0xC1EE\t0x4EE4\n0xC1EF\t0x6E9C\n0xC1F0\t0x7409\n0xC1F1\t0x69B4\n0xC1F2\t0x786B\n0xC1F3\t0x998F\n0xC1F4\t0x7559\n0xC1F5\t0x5218\n0xC1F6\t0x7624\n0xC1F7\t0x6D41\n0xC1F8\t0x67F3\n0xC1F9\t0x516D\n0xC1FA\t0x9F99\n0xC1FB\t0x804B\n0xC1FC\t0x5499\n0xC1FD\t0x7B3C\n0xC1FE\t0x7ABF\n0xC240\t0x7FE4\n0xC241\t0x7FE7\n0xC242\t0x7FE8\n0xC243\t0x7FEA\n0xC244\t0x7FEB\n0xC245\t0x7FEC\n0xC246\t0x7FED\n0xC247\t0x7FEF\n0xC248\t0x7FF2\n0xC249\t0x7FF4\n0xC24A\t0x7FF5\n0xC24B\t0x7FF6\n0xC24C\t0x7FF7\n0xC24D\t0x7FF8\n0xC24E\t0x7FF9\n0xC24F\t0x7FFA\n0xC250\t0x7FFD\n0xC251\t0x7FFE\n0xC252\t0x7FFF\n0xC253\t0x8002\n0xC254\t0x8007\n0xC255\t0x8008\n0xC256\t0x8009\n0xC257\t0x800A\n0xC258\t0x800E\n0xC259\t0x800F\n0xC25A\t0x8011\n0xC25B\t0x8013\n0xC25C\t0x801A\n0xC25D\t0x801B\n0xC25E\t0x801D\n0xC25F\t0x801E\n0xC260\t0x801F\n0xC261\t0x8021\n0xC262\t0x8023\n0xC263\t0x8024\n0xC264\t0x802B\n0xC265\t0x802C\n0xC266\t0x802D\n0xC267\t0x802E\n0xC268\t0x802F\n0xC269\t0x8030\n0xC26A\t0x8032\n0xC26B\t0x8034\n0xC26C\t0x8039\n0xC26D\t0x803A\n0xC26E\t0x803C\n0xC26F\t0x803E\n0xC270\t0x8040\n0xC271\t0x8041\n0xC272\t0x8044\n0xC273\t0x8045\n0xC274\t0x8047\n0xC275\t0x8048\n0xC276\t0x8049\n0xC277\t0x804E\n0xC278\t0x804F\n0xC279\t0x8050\n0xC27A\t0x8051\n0xC27B\t0x8053\n0xC27C\t0x8055\n0xC27D\t0x8056\n0xC27E\t0x8057\n0xC280\t0x8059\n0xC281\t0x805B\n0xC282\t0x805C\n0xC283\t0x805D\n0xC284\t0x805E\n0xC285\t0x805F\n0xC286\t0x8060\n0xC287\t0x8061\n0xC288\t0x8062\n0xC289\t0x8063\n0xC28A\t0x8064\n0xC28B\t0x8065\n0xC28C\t0x8066\n0xC28D\t0x8067\n0xC28E\t0x8068\n0xC28F\t0x806B\n0xC290\t0x806C\n0xC291\t0x806D\n0xC292\t0x806E\n0xC293\t0x806F\n0xC294\t0x8070\n0xC295\t0x8072\n0xC296\t0x8073\n0xC297\t0x8074\n0xC298\t0x8075\n0xC299\t0x8076\n0xC29A\t0x8077\n0xC29B\t0x8078\n0xC29C\t0x8079\n0xC29D\t0x807A\n0xC29E\t0x807B\n0xC29F\t0x807C\n0xC2A0\t0x807D\n0xC2A1\t0x9686\n0xC2A2\t0x5784\n0xC2A3\t0x62E2\n0xC2A4\t0x9647\n0xC2A5\t0x697C\n0xC2A6\t0x5A04\n0xC2A7\t0x6402\n0xC2A8\t0x7BD3\n0xC2A9\t0x6F0F\n0xC2AA\t0x964B\n0xC2AB\t0x82A6\n0xC2AC\t0x5362\n0xC2AD\t0x9885\n0xC2AE\t0x5E90\n0xC2AF\t0x7089\n0xC2B0\t0x63B3\n0xC2B1\t0x5364\n0xC2B2\t0x864F\n0xC2B3\t0x9C81\n0xC2B4\t0x9E93\n0xC2B5\t0x788C\n0xC2B6\t0x9732\n0xC2B7\t0x8DEF\n0xC2B8\t0x8D42\n0xC2B9\t0x9E7F\n0xC2BA\t0x6F5E\n0xC2BB\t0x7984\n0xC2BC\t0x5F55\n0xC2BD\t0x9646\n0xC2BE\t0x622E\n0xC2BF\t0x9A74\n0xC2C0\t0x5415\n0xC2C1\t0x94DD\n0xC2C2\t0x4FA3\n0xC2C3\t0x65C5\n0xC2C4\t0x5C65\n0xC2C5\t0x5C61\n0xC2C6\t0x7F15\n0xC2C7\t0x8651\n0xC2C8\t0x6C2F\n0xC2C9\t0x5F8B\n0xC2CA\t0x7387\n0xC2CB\t0x6EE4\n0xC2CC\t0x7EFF\n0xC2CD\t0x5CE6\n0xC2CE\t0x631B\n0xC2CF\t0x5B6A\n0xC2D0\t0x6EE6\n0xC2D1\t0x5375\n0xC2D2\t0x4E71\n0xC2D3\t0x63A0\n0xC2D4\t0x7565\n0xC2D5\t0x62A1\n0xC2D6\t0x8F6E\n0xC2D7\t0x4F26\n0xC2D8\t0x4ED1\n0xC2D9\t0x6CA6\n0xC2DA\t0x7EB6\n0xC2DB\t0x8BBA\n0xC2DC\t0x841D\n0xC2DD\t0x87BA\n0xC2DE\t0x7F57\n0xC2DF\t0x903B\n0xC2E0\t0x9523\n0xC2E1\t0x7BA9\n0xC2E2\t0x9AA1\n0xC2E3\t0x88F8\n0xC2E4\t0x843D\n0xC2E5\t0x6D1B\n0xC2E6\t0x9A86\n0xC2E7\t0x7EDC\n0xC2E8\t0x5988\n0xC2E9\t0x9EBB\n0xC2EA\t0x739B\n0xC2EB\t0x7801\n0xC2EC\t0x8682\n0xC2ED\t0x9A6C\n0xC2EE\t0x9A82\n0xC2EF\t0x561B\n0xC2F0\t0x5417\n0xC2F1\t0x57CB\n0xC2F2\t0x4E70\n0xC2F3\t0x9EA6\n0xC2F4\t0x5356\n0xC2F5\t0x8FC8\n0xC2F6\t0x8109\n0xC2F7\t0x7792\n0xC2F8\t0x9992\n0xC2F9\t0x86EE\n0xC2FA\t0x6EE1\n0xC2FB\t0x8513\n0xC2FC\t0x66FC\n0xC2FD\t0x6162\n0xC2FE\t0x6F2B\n0xC340\t0x807E\n0xC341\t0x8081\n0xC342\t0x8082\n0xC343\t0x8085\n0xC344\t0x8088\n0xC345\t0x808A\n0xC346\t0x808D\n0xC347\t0x808E\n0xC348\t0x808F\n0xC349\t0x8090\n0xC34A\t0x8091\n0xC34B\t0x8092\n0xC34C\t0x8094\n0xC34D\t0x8095\n0xC34E\t0x8097\n0xC34F\t0x8099\n0xC350\t0x809E\n0xC351\t0x80A3\n0xC352\t0x80A6\n0xC353\t0x80A7\n0xC354\t0x80A8\n0xC355\t0x80AC\n0xC356\t0x80B0\n0xC357\t0x80B3\n0xC358\t0x80B5\n0xC359\t0x80B6\n0xC35A\t0x80B8\n0xC35B\t0x80B9\n0xC35C\t0x80BB\n0xC35D\t0x80C5\n0xC35E\t0x80C7\n0xC35F\t0x80C8\n0xC360\t0x80C9\n0xC361\t0x80CA\n0xC362\t0x80CB\n0xC363\t0x80CF\n0xC364\t0x80D0\n0xC365\t0x80D1\n0xC366\t0x80D2\n0xC367\t0x80D3\n0xC368\t0x80D4\n0xC369\t0x80D5\n0xC36A\t0x80D8\n0xC36B\t0x80DF\n0xC36C\t0x80E0\n0xC36D\t0x80E2\n0xC36E\t0x80E3\n0xC36F\t0x80E6\n0xC370\t0x80EE\n0xC371\t0x80F5\n0xC372\t0x80F7\n0xC373\t0x80F9\n0xC374\t0x80FB\n0xC375\t0x80FE\n0xC376\t0x80FF\n0xC377\t0x8100\n0xC378\t0x8101\n0xC379\t0x8103\n0xC37A\t0x8104\n0xC37B\t0x8105\n0xC37C\t0x8107\n0xC37D\t0x8108\n0xC37E\t0x810B\n0xC380\t0x810C\n0xC381\t0x8115\n0xC382\t0x8117\n0xC383\t0x8119\n0xC384\t0x811B\n0xC385\t0x811C\n0xC386\t0x811D\n0xC387\t0x811F\n0xC388\t0x8120\n0xC389\t0x8121\n0xC38A\t0x8122\n0xC38B\t0x8123\n0xC38C\t0x8124\n0xC38D\t0x8125\n0xC38E\t0x8126\n0xC38F\t0x8127\n0xC390\t0x8128\n0xC391\t0x8129\n0xC392\t0x812A\n0xC393\t0x812B\n0xC394\t0x812D\n0xC395\t0x812E\n0xC396\t0x8130\n0xC397\t0x8133\n0xC398\t0x8134\n0xC399\t0x8135\n0xC39A\t0x8137\n0xC39B\t0x8139\n0xC39C\t0x813A\n0xC39D\t0x813B\n0xC39E\t0x813C\n0xC39F\t0x813D\n0xC3A0\t0x813F\n0xC3A1\t0x8C29\n0xC3A2\t0x8292\n0xC3A3\t0x832B\n0xC3A4\t0x76F2\n0xC3A5\t0x6C13\n0xC3A6\t0x5FD9\n0xC3A7\t0x83BD\n0xC3A8\t0x732B\n0xC3A9\t0x8305\n0xC3AA\t0x951A\n0xC3AB\t0x6BDB\n0xC3AC\t0x77DB\n0xC3AD\t0x94C6\n0xC3AE\t0x536F\n0xC3AF\t0x8302\n0xC3B0\t0x5192\n0xC3B1\t0x5E3D\n0xC3B2\t0x8C8C\n0xC3B3\t0x8D38\n0xC3B4\t0x4E48\n0xC3B5\t0x73AB\n0xC3B6\t0x679A\n0xC3B7\t0x6885\n0xC3B8\t0x9176\n0xC3B9\t0x9709\n0xC3BA\t0x7164\n0xC3BB\t0x6CA1\n0xC3BC\t0x7709\n0xC3BD\t0x5A92\n0xC3BE\t0x9541\n0xC3BF\t0x6BCF\n0xC3C0\t0x7F8E\n0xC3C1\t0x6627\n0xC3C2\t0x5BD0\n0xC3C3\t0x59B9\n0xC3C4\t0x5A9A\n0xC3C5\t0x95E8\n0xC3C6\t0x95F7\n0xC3C7\t0x4EEC\n0xC3C8\t0x840C\n0xC3C9\t0x8499\n0xC3CA\t0x6AAC\n0xC3CB\t0x76DF\n0xC3CC\t0x9530\n0xC3CD\t0x731B\n0xC3CE\t0x68A6\n0xC3CF\t0x5B5F\n0xC3D0\t0x772F\n0xC3D1\t0x919A\n0xC3D2\t0x9761\n0xC3D3\t0x7CDC\n0xC3D4\t0x8FF7\n0xC3D5\t0x8C1C\n0xC3D6\t0x5F25\n0xC3D7\t0x7C73\n0xC3D8\t0x79D8\n0xC3D9\t0x89C5\n0xC3DA\t0x6CCC\n0xC3DB\t0x871C\n0xC3DC\t0x5BC6\n0xC3DD\t0x5E42\n0xC3DE\t0x68C9\n0xC3DF\t0x7720\n0xC3E0\t0x7EF5\n0xC3E1\t0x5195\n0xC3E2\t0x514D\n0xC3E3\t0x52C9\n0xC3E4\t0x5A29\n0xC3E5\t0x7F05\n0xC3E6\t0x9762\n0xC3E7\t0x82D7\n0xC3E8\t0x63CF\n0xC3E9\t0x7784\n0xC3EA\t0x85D0\n0xC3EB\t0x79D2\n0xC3EC\t0x6E3A\n0xC3ED\t0x5E99\n0xC3EE\t0x5999\n0xC3EF\t0x8511\n0xC3F0\t0x706D\n0xC3F1\t0x6C11\n0xC3F2\t0x62BF\n0xC3F3\t0x76BF\n0xC3F4\t0x654F\n0xC3F5\t0x60AF\n0xC3F6\t0x95FD\n0xC3F7\t0x660E\n0xC3F8\t0x879F\n0xC3F9\t0x9E23\n0xC3FA\t0x94ED\n0xC3FB\t0x540D\n0xC3FC\t0x547D\n0xC3FD\t0x8C2C\n0xC3FE\t0x6478\n0xC440\t0x8140\n0xC441\t0x8141\n0xC442\t0x8142\n0xC443\t0x8143\n0xC444\t0x8144\n0xC445\t0x8145\n0xC446\t0x8147\n0xC447\t0x8149\n0xC448\t0x814D\n0xC449\t0x814E\n0xC44A\t0x814F\n0xC44B\t0x8152\n0xC44C\t0x8156\n0xC44D\t0x8157\n0xC44E\t0x8158\n0xC44F\t0x815B\n0xC450\t0x815C\n0xC451\t0x815D\n0xC452\t0x815E\n0xC453\t0x815F\n0xC454\t0x8161\n0xC455\t0x8162\n0xC456\t0x8163\n0xC457\t0x8164\n0xC458\t0x8166\n0xC459\t0x8168\n0xC45A\t0x816A\n0xC45B\t0x816B\n0xC45C\t0x816C\n0xC45D\t0x816F\n0xC45E\t0x8172\n0xC45F\t0x8173\n0xC460\t0x8175\n0xC461\t0x8176\n0xC462\t0x8177\n0xC463\t0x8178\n0xC464\t0x8181\n0xC465\t0x8183\n0xC466\t0x8184\n0xC467\t0x8185\n0xC468\t0x8186\n0xC469\t0x8187\n0xC46A\t0x8189\n0xC46B\t0x818B\n0xC46C\t0x818C\n0xC46D\t0x818D\n0xC46E\t0x818E\n0xC46F\t0x8190\n0xC470\t0x8192\n0xC471\t0x8193\n0xC472\t0x8194\n0xC473\t0x8195\n0xC474\t0x8196\n0xC475\t0x8197\n0xC476\t0x8199\n0xC477\t0x819A\n0xC478\t0x819E\n0xC479\t0x819F\n0xC47A\t0x81A0\n0xC47B\t0x81A1\n0xC47C\t0x81A2\n0xC47D\t0x81A4\n0xC47E\t0x81A5\n0xC480\t0x81A7\n0xC481\t0x81A9\n0xC482\t0x81AB\n0xC483\t0x81AC\n0xC484\t0x81AD\n0xC485\t0x81AE\n0xC486\t0x81AF\n0xC487\t0x81B0\n0xC488\t0x81B1\n0xC489\t0x81B2\n0xC48A\t0x81B4\n0xC48B\t0x81B5\n0xC48C\t0x81B6\n0xC48D\t0x81B7\n0xC48E\t0x81B8\n0xC48F\t0x81B9\n0xC490\t0x81BC\n0xC491\t0x81BD\n0xC492\t0x81BE\n0xC493\t0x81BF\n0xC494\t0x81C4\n0xC495\t0x81C5\n0xC496\t0x81C7\n0xC497\t0x81C8\n0xC498\t0x81C9\n0xC499\t0x81CB\n0xC49A\t0x81CD\n0xC49B\t0x81CE\n0xC49C\t0x81CF\n0xC49D\t0x81D0\n0xC49E\t0x81D1\n0xC49F\t0x81D2\n0xC4A0\t0x81D3\n0xC4A1\t0x6479\n0xC4A2\t0x8611\n0xC4A3\t0x6A21\n0xC4A4\t0x819C\n0xC4A5\t0x78E8\n0xC4A6\t0x6469\n0xC4A7\t0x9B54\n0xC4A8\t0x62B9\n0xC4A9\t0x672B\n0xC4AA\t0x83AB\n0xC4AB\t0x58A8\n0xC4AC\t0x9ED8\n0xC4AD\t0x6CAB\n0xC4AE\t0x6F20\n0xC4AF\t0x5BDE\n0xC4B0\t0x964C\n0xC4B1\t0x8C0B\n0xC4B2\t0x725F\n0xC4B3\t0x67D0\n0xC4B4\t0x62C7\n0xC4B5\t0x7261\n0xC4B6\t0x4EA9\n0xC4B7\t0x59C6\n0xC4B8\t0x6BCD\n0xC4B9\t0x5893\n0xC4BA\t0x66AE\n0xC4BB\t0x5E55\n0xC4BC\t0x52DF\n0xC4BD\t0x6155\n0xC4BE\t0x6728\n0xC4BF\t0x76EE\n0xC4C0\t0x7766\n0xC4C1\t0x7267\n0xC4C2\t0x7A46\n0xC4C3\t0x62FF\n0xC4C4\t0x54EA\n0xC4C5\t0x5450\n0xC4C6\t0x94A0\n0xC4C7\t0x90A3\n0xC4C8\t0x5A1C\n0xC4C9\t0x7EB3\n0xC4CA\t0x6C16\n0xC4CB\t0x4E43\n0xC4CC\t0x5976\n0xC4CD\t0x8010\n0xC4CE\t0x5948\n0xC4CF\t0x5357\n0xC4D0\t0x7537\n0xC4D1\t0x96BE\n0xC4D2\t0x56CA\n0xC4D3\t0x6320\n0xC4D4\t0x8111\n0xC4D5\t0x607C\n0xC4D6\t0x95F9\n0xC4D7\t0x6DD6\n0xC4D8\t0x5462\n0xC4D9\t0x9981\n0xC4DA\t0x5185\n0xC4DB\t0x5AE9\n0xC4DC\t0x80FD\n0xC4DD\t0x59AE\n0xC4DE\t0x9713\n0xC4DF\t0x502A\n0xC4E0\t0x6CE5\n0xC4E1\t0x5C3C\n0xC4E2\t0x62DF\n0xC4E3\t0x4F60\n0xC4E4\t0x533F\n0xC4E5\t0x817B\n0xC4E6\t0x9006\n0xC4E7\t0x6EBA\n0xC4E8\t0x852B\n0xC4E9\t0x62C8\n0xC4EA\t0x5E74\n0xC4EB\t0x78BE\n0xC4EC\t0x64B5\n0xC4ED\t0x637B\n0xC4EE\t0x5FF5\n0xC4EF\t0x5A18\n0xC4F0\t0x917F\n0xC4F1\t0x9E1F\n0xC4F2\t0x5C3F\n0xC4F3\t0x634F\n0xC4F4\t0x8042\n0xC4F5\t0x5B7D\n0xC4F6\t0x556E\n0xC4F7\t0x954A\n0xC4F8\t0x954D\n0xC4F9\t0x6D85\n0xC4FA\t0x60A8\n0xC4FB\t0x67E0\n0xC4FC\t0x72DE\n0xC4FD\t0x51DD\n0xC4FE\t0x5B81\n0xC540\t0x81D4\n0xC541\t0x81D5\n0xC542\t0x81D6\n0xC543\t0x81D7\n0xC544\t0x81D8\n0xC545\t0x81D9\n0xC546\t0x81DA\n0xC547\t0x81DB\n0xC548\t0x81DC\n0xC549\t0x81DD\n0xC54A\t0x81DE\n0xC54B\t0x81DF\n0xC54C\t0x81E0\n0xC54D\t0x81E1\n0xC54E\t0x81E2\n0xC54F\t0x81E4\n0xC550\t0x81E5\n0xC551\t0x81E6\n0xC552\t0x81E8\n0xC553\t0x81E9\n0xC554\t0x81EB\n0xC555\t0x81EE\n0xC556\t0x81EF\n0xC557\t0x81F0\n0xC558\t0x81F1\n0xC559\t0x81F2\n0xC55A\t0x81F5\n0xC55B\t0x81F6\n0xC55C\t0x81F7\n0xC55D\t0x81F8\n0xC55E\t0x81F9\n0xC55F\t0x81FA\n0xC560\t0x81FD\n0xC561\t0x81FF\n0xC562\t0x8203\n0xC563\t0x8207\n0xC564\t0x8208\n0xC565\t0x8209\n0xC566\t0x820A\n0xC567\t0x820B\n0xC568\t0x820E\n0xC569\t0x820F\n0xC56A\t0x8211\n0xC56B\t0x8213\n0xC56C\t0x8215\n0xC56D\t0x8216\n0xC56E\t0x8217\n0xC56F\t0x8218\n0xC570\t0x8219\n0xC571\t0x821A\n0xC572\t0x821D\n0xC573\t0x8220\n0xC574\t0x8224\n0xC575\t0x8225\n0xC576\t0x8226\n0xC577\t0x8227\n0xC578\t0x8229\n0xC579\t0x822E\n0xC57A\t0x8232\n0xC57B\t0x823A\n0xC57C\t0x823C\n0xC57D\t0x823D\n0xC57E\t0x823F\n0xC580\t0x8240\n0xC581\t0x8241\n0xC582\t0x8242\n0xC583\t0x8243\n0xC584\t0x8245\n0xC585\t0x8246\n0xC586\t0x8248\n0xC587\t0x824A\n0xC588\t0x824C\n0xC589\t0x824D\n0xC58A\t0x824E\n0xC58B\t0x8250\n0xC58C\t0x8251\n0xC58D\t0x8252\n0xC58E\t0x8253\n0xC58F\t0x8254\n0xC590\t0x8255\n0xC591\t0x8256\n0xC592\t0x8257\n0xC593\t0x8259\n0xC594\t0x825B\n0xC595\t0x825C\n0xC596\t0x825D\n0xC597\t0x825E\n0xC598\t0x8260\n0xC599\t0x8261\n0xC59A\t0x8262\n0xC59B\t0x8263\n0xC59C\t0x8264\n0xC59D\t0x8265\n0xC59E\t0x8266\n0xC59F\t0x8267\n0xC5A0\t0x8269\n0xC5A1\t0x62E7\n0xC5A2\t0x6CDE\n0xC5A3\t0x725B\n0xC5A4\t0x626D\n0xC5A5\t0x94AE\n0xC5A6\t0x7EBD\n0xC5A7\t0x8113\n0xC5A8\t0x6D53\n0xC5A9\t0x519C\n0xC5AA\t0x5F04\n0xC5AB\t0x5974\n0xC5AC\t0x52AA\n0xC5AD\t0x6012\n0xC5AE\t0x5973\n0xC5AF\t0x6696\n0xC5B0\t0x8650\n0xC5B1\t0x759F\n0xC5B2\t0x632A\n0xC5B3\t0x61E6\n0xC5B4\t0x7CEF\n0xC5B5\t0x8BFA\n0xC5B6\t0x54E6\n0xC5B7\t0x6B27\n0xC5B8\t0x9E25\n0xC5B9\t0x6BB4\n0xC5BA\t0x85D5\n0xC5BB\t0x5455\n0xC5BC\t0x5076\n0xC5BD\t0x6CA4\n0xC5BE\t0x556A\n0xC5BF\t0x8DB4\n0xC5C0\t0x722C\n0xC5C1\t0x5E15\n0xC5C2\t0x6015\n0xC5C3\t0x7436\n0xC5C4\t0x62CD\n0xC5C5\t0x6392\n0xC5C6\t0x724C\n0xC5C7\t0x5F98\n0xC5C8\t0x6E43\n0xC5C9\t0x6D3E\n0xC5CA\t0x6500\n0xC5CB\t0x6F58\n0xC5CC\t0x76D8\n0xC5CD\t0x78D0\n0xC5CE\t0x76FC\n0xC5CF\t0x7554\n0xC5D0\t0x5224\n0xC5D1\t0x53DB\n0xC5D2\t0x4E53\n0xC5D3\t0x5E9E\n0xC5D4\t0x65C1\n0xC5D5\t0x802A\n0xC5D6\t0x80D6\n0xC5D7\t0x629B\n0xC5D8\t0x5486\n0xC5D9\t0x5228\n0xC5DA\t0x70AE\n0xC5DB\t0x888D\n0xC5DC\t0x8DD1\n0xC5DD\t0x6CE1\n0xC5DE\t0x5478\n0xC5DF\t0x80DA\n0xC5E0\t0x57F9\n0xC5E1\t0x88F4\n0xC5E2\t0x8D54\n0xC5E3\t0x966A\n0xC5E4\t0x914D\n0xC5E5\t0x4F69\n0xC5E6\t0x6C9B\n0xC5E7\t0x55B7\n0xC5E8\t0x76C6\n0xC5E9\t0x7830\n0xC5EA\t0x62A8\n0xC5EB\t0x70F9\n0xC5EC\t0x6F8E\n0xC5ED\t0x5F6D\n0xC5EE\t0x84EC\n0xC5EF\t0x68DA\n0xC5F0\t0x787C\n0xC5F1\t0x7BF7\n0xC5F2\t0x81A8\n0xC5F3\t0x670B\n0xC5F4\t0x9E4F\n0xC5F5\t0x6367\n0xC5F6\t0x78B0\n0xC5F7\t0x576F\n0xC5F8\t0x7812\n0xC5F9\t0x9739\n0xC5FA\t0x6279\n0xC5FB\t0x62AB\n0xC5FC\t0x5288\n0xC5FD\t0x7435\n0xC5FE\t0x6BD7\n0xC640\t0x826A\n0xC641\t0x826B\n0xC642\t0x826C\n0xC643\t0x826D\n0xC644\t0x8271\n0xC645\t0x8275\n0xC646\t0x8276\n0xC647\t0x8277\n0xC648\t0x8278\n0xC649\t0x827B\n0xC64A\t0x827C\n0xC64B\t0x8280\n0xC64C\t0x8281\n0xC64D\t0x8283\n0xC64E\t0x8285\n0xC64F\t0x8286\n0xC650\t0x8287\n0xC651\t0x8289\n0xC652\t0x828C\n0xC653\t0x8290\n0xC654\t0x8293\n0xC655\t0x8294\n0xC656\t0x8295\n0xC657\t0x8296\n0xC658\t0x829A\n0xC659\t0x829B\n0xC65A\t0x829E\n0xC65B\t0x82A0\n0xC65C\t0x82A2\n0xC65D\t0x82A3\n0xC65E\t0x82A7\n0xC65F\t0x82B2\n0xC660\t0x82B5\n0xC661\t0x82B6\n0xC662\t0x82BA\n0xC663\t0x82BB\n0xC664\t0x82BC\n0xC665\t0x82BF\n0xC666\t0x82C0\n0xC667\t0x82C2\n0xC668\t0x82C3\n0xC669\t0x82C5\n0xC66A\t0x82C6\n0xC66B\t0x82C9\n0xC66C\t0x82D0\n0xC66D\t0x82D6\n0xC66E\t0x82D9\n0xC66F\t0x82DA\n0xC670\t0x82DD\n0xC671\t0x82E2\n0xC672\t0x82E7\n0xC673\t0x82E8\n0xC674\t0x82E9\n0xC675\t0x82EA\n0xC676\t0x82EC\n0xC677\t0x82ED\n0xC678\t0x82EE\n0xC679\t0x82F0\n0xC67A\t0x82F2\n0xC67B\t0x82F3\n0xC67C\t0x82F5\n0xC67D\t0x82F6\n0xC67E\t0x82F8\n0xC680\t0x82FA\n0xC681\t0x82FC\n0xC682\t0x82FD\n0xC683\t0x82FE\n0xC684\t0x82FF\n0xC685\t0x8300\n0xC686\t0x830A\n0xC687\t0x830B\n0xC688\t0x830D\n0xC689\t0x8310\n0xC68A\t0x8312\n0xC68B\t0x8313\n0xC68C\t0x8316\n0xC68D\t0x8318\n0xC68E\t0x8319\n0xC68F\t0x831D\n0xC690\t0x831E\n0xC691\t0x831F\n0xC692\t0x8320\n0xC693\t0x8321\n0xC694\t0x8322\n0xC695\t0x8323\n0xC696\t0x8324\n0xC697\t0x8325\n0xC698\t0x8326\n0xC699\t0x8329\n0xC69A\t0x832A\n0xC69B\t0x832E\n0xC69C\t0x8330\n0xC69D\t0x8332\n0xC69E\t0x8337\n0xC69F\t0x833B\n0xC6A0\t0x833D\n0xC6A1\t0x5564\n0xC6A2\t0x813E\n0xC6A3\t0x75B2\n0xC6A4\t0x76AE\n0xC6A5\t0x5339\n0xC6A6\t0x75DE\n0xC6A7\t0x50FB\n0xC6A8\t0x5C41\n0xC6A9\t0x8B6C\n0xC6AA\t0x7BC7\n0xC6AB\t0x504F\n0xC6AC\t0x7247\n0xC6AD\t0x9A97\n0xC6AE\t0x98D8\n0xC6AF\t0x6F02\n0xC6B0\t0x74E2\n0xC6B1\t0x7968\n0xC6B2\t0x6487\n0xC6B3\t0x77A5\n0xC6B4\t0x62FC\n0xC6B5\t0x9891\n0xC6B6\t0x8D2B\n0xC6B7\t0x54C1\n0xC6B8\t0x8058\n0xC6B9\t0x4E52\n0xC6BA\t0x576A\n0xC6BB\t0x82F9\n0xC6BC\t0x840D\n0xC6BD\t0x5E73\n0xC6BE\t0x51ED\n0xC6BF\t0x74F6\n0xC6C0\t0x8BC4\n0xC6C1\t0x5C4F\n0xC6C2\t0x5761\n0xC6C3\t0x6CFC\n0xC6C4\t0x9887\n0xC6C5\t0x5A46\n0xC6C6\t0x7834\n0xC6C7\t0x9B44\n0xC6C8\t0x8FEB\n0xC6C9\t0x7C95\n0xC6CA\t0x5256\n0xC6CB\t0x6251\n0xC6CC\t0x94FA\n0xC6CD\t0x4EC6\n0xC6CE\t0x8386\n0xC6CF\t0x8461\n0xC6D0\t0x83E9\n0xC6D1\t0x84B2\n0xC6D2\t0x57D4\n0xC6D3\t0x6734\n0xC6D4\t0x5703\n0xC6D5\t0x666E\n0xC6D6\t0x6D66\n0xC6D7\t0x8C31\n0xC6D8\t0x66DD\n0xC6D9\t0x7011\n0xC6DA\t0x671F\n0xC6DB\t0x6B3A\n0xC6DC\t0x6816\n0xC6DD\t0x621A\n0xC6DE\t0x59BB\n0xC6DF\t0x4E03\n0xC6E0\t0x51C4\n0xC6E1\t0x6F06\n0xC6E2\t0x67D2\n0xC6E3\t0x6C8F\n0xC6E4\t0x5176\n0xC6E5\t0x68CB\n0xC6E6\t0x5947\n0xC6E7\t0x6B67\n0xC6E8\t0x7566\n0xC6E9\t0x5D0E\n0xC6EA\t0x8110\n0xC6EB\t0x9F50\n0xC6EC\t0x65D7\n0xC6ED\t0x7948\n0xC6EE\t0x7941\n0xC6EF\t0x9A91\n0xC6F0\t0x8D77\n0xC6F1\t0x5C82\n0xC6F2\t0x4E5E\n0xC6F3\t0x4F01\n0xC6F4\t0x542F\n0xC6F5\t0x5951\n0xC6F6\t0x780C\n0xC6F7\t0x5668\n0xC6F8\t0x6C14\n0xC6F9\t0x8FC4\n0xC6FA\t0x5F03\n0xC6FB\t0x6C7D\n0xC6FC\t0x6CE3\n0xC6FD\t0x8BAB\n0xC6FE\t0x6390\n0xC740\t0x833E\n0xC741\t0x833F\n0xC742\t0x8341\n0xC743\t0x8342\n0xC744\t0x8344\n0xC745\t0x8345\n0xC746\t0x8348\n0xC747\t0x834A\n0xC748\t0x834B\n0xC749\t0x834C\n0xC74A\t0x834D\n0xC74B\t0x834E\n0xC74C\t0x8353\n0xC74D\t0x8355\n0xC74E\t0x8356\n0xC74F\t0x8357\n0xC750\t0x8358\n0xC751\t0x8359\n0xC752\t0x835D\n0xC753\t0x8362\n0xC754\t0x8370\n0xC755\t0x8371\n0xC756\t0x8372\n0xC757\t0x8373\n0xC758\t0x8374\n0xC759\t0x8375\n0xC75A\t0x8376\n0xC75B\t0x8379\n0xC75C\t0x837A\n0xC75D\t0x837E\n0xC75E\t0x837F\n0xC75F\t0x8380\n0xC760\t0x8381\n0xC761\t0x8382\n0xC762\t0x8383\n0xC763\t0x8384\n0xC764\t0x8387\n0xC765\t0x8388\n0xC766\t0x838A\n0xC767\t0x838B\n0xC768\t0x838C\n0xC769\t0x838D\n0xC76A\t0x838F\n0xC76B\t0x8390\n0xC76C\t0x8391\n0xC76D\t0x8394\n0xC76E\t0x8395\n0xC76F\t0x8396\n0xC770\t0x8397\n0xC771\t0x8399\n0xC772\t0x839A\n0xC773\t0x839D\n0xC774\t0x839F\n0xC775\t0x83A1\n0xC776\t0x83A2\n0xC777\t0x83A3\n0xC778\t0x83A4\n0xC779\t0x83A5\n0xC77A\t0x83A6\n0xC77B\t0x83A7\n0xC77C\t0x83AC\n0xC77D\t0x83AD\n0xC77E\t0x83AE\n0xC780\t0x83AF\n0xC781\t0x83B5\n0xC782\t0x83BB\n0xC783\t0x83BE\n0xC784\t0x83BF\n0xC785\t0x83C2\n0xC786\t0x83C3\n0xC787\t0x83C4\n0xC788\t0x83C6\n0xC789\t0x83C8\n0xC78A\t0x83C9\n0xC78B\t0x83CB\n0xC78C\t0x83CD\n0xC78D\t0x83CE\n0xC78E\t0x83D0\n0xC78F\t0x83D1\n0xC790\t0x83D2\n0xC791\t0x83D3\n0xC792\t0x83D5\n0xC793\t0x83D7\n0xC794\t0x83D9\n0xC795\t0x83DA\n0xC796\t0x83DB\n0xC797\t0x83DE\n0xC798\t0x83E2\n0xC799\t0x83E3\n0xC79A\t0x83E4\n0xC79B\t0x83E6\n0xC79C\t0x83E7\n0xC79D\t0x83E8\n0xC79E\t0x83EB\n0xC79F\t0x83EC\n0xC7A0\t0x83ED\n0xC7A1\t0x6070\n0xC7A2\t0x6D3D\n0xC7A3\t0x7275\n0xC7A4\t0x6266\n0xC7A5\t0x948E\n0xC7A6\t0x94C5\n0xC7A7\t0x5343\n0xC7A8\t0x8FC1\n0xC7A9\t0x7B7E\n0xC7AA\t0x4EDF\n0xC7AB\t0x8C26\n0xC7AC\t0x4E7E\n0xC7AD\t0x9ED4\n0xC7AE\t0x94B1\n0xC7AF\t0x94B3\n0xC7B0\t0x524D\n0xC7B1\t0x6F5C\n0xC7B2\t0x9063\n0xC7B3\t0x6D45\n0xC7B4\t0x8C34\n0xC7B5\t0x5811\n0xC7B6\t0x5D4C\n0xC7B7\t0x6B20\n0xC7B8\t0x6B49\n0xC7B9\t0x67AA\n0xC7BA\t0x545B\n0xC7BB\t0x8154\n0xC7BC\t0x7F8C\n0xC7BD\t0x5899\n0xC7BE\t0x8537\n0xC7BF\t0x5F3A\n0xC7C0\t0x62A2\n0xC7C1\t0x6A47\n0xC7C2\t0x9539\n0xC7C3\t0x6572\n0xC7C4\t0x6084\n0xC7C5\t0x6865\n0xC7C6\t0x77A7\n0xC7C7\t0x4E54\n0xC7C8\t0x4FA8\n0xC7C9\t0x5DE7\n0xC7CA\t0x9798\n0xC7CB\t0x64AC\n0xC7CC\t0x7FD8\n0xC7CD\t0x5CED\n0xC7CE\t0x4FCF\n0xC7CF\t0x7A8D\n0xC7D0\t0x5207\n0xC7D1\t0x8304\n0xC7D2\t0x4E14\n0xC7D3\t0x602F\n0xC7D4\t0x7A83\n0xC7D5\t0x94A6\n0xC7D6\t0x4FB5\n0xC7D7\t0x4EB2\n0xC7D8\t0x79E6\n0xC7D9\t0x7434\n0xC7DA\t0x52E4\n0xC7DB\t0x82B9\n0xC7DC\t0x64D2\n0xC7DD\t0x79BD\n0xC7DE\t0x5BDD\n0xC7DF\t0x6C81\n0xC7E0\t0x9752\n0xC7E1\t0x8F7B\n0xC7E2\t0x6C22\n0xC7E3\t0x503E\n0xC7E4\t0x537F\n0xC7E5\t0x6E05\n0xC7E6\t0x64CE\n0xC7E7\t0x6674\n0xC7E8\t0x6C30\n0xC7E9\t0x60C5\n0xC7EA\t0x9877\n0xC7EB\t0x8BF7\n0xC7EC\t0x5E86\n0xC7ED\t0x743C\n0xC7EE\t0x7A77\n0xC7EF\t0x79CB\n0xC7F0\t0x4E18\n0xC7F1\t0x90B1\n0xC7F2\t0x7403\n0xC7F3\t0x6C42\n0xC7F4\t0x56DA\n0xC7F5\t0x914B\n0xC7F6\t0x6CC5\n0xC7F7\t0x8D8B\n0xC7F8\t0x533A\n0xC7F9\t0x86C6\n0xC7FA\t0x66F2\n0xC7FB\t0x8EAF\n0xC7FC\t0x5C48\n0xC7FD\t0x9A71\n0xC7FE\t0x6E20\n0xC840\t0x83EE\n0xC841\t0x83EF\n0xC842\t0x83F3\n0xC843\t0x83F4\n0xC844\t0x83F5\n0xC845\t0x83F6\n0xC846\t0x83F7\n0xC847\t0x83FA\n0xC848\t0x83FB\n0xC849\t0x83FC\n0xC84A\t0x83FE\n0xC84B\t0x83FF\n0xC84C\t0x8400\n0xC84D\t0x8402\n0xC84E\t0x8405\n0xC84F\t0x8407\n0xC850\t0x8408\n0xC851\t0x8409\n0xC852\t0x840A\n0xC853\t0x8410\n0xC854\t0x8412\n0xC855\t0x8413\n0xC856\t0x8414\n0xC857\t0x8415\n0xC858\t0x8416\n0xC859\t0x8417\n0xC85A\t0x8419\n0xC85B\t0x841A\n0xC85C\t0x841B\n0xC85D\t0x841E\n0xC85E\t0x841F\n0xC85F\t0x8420\n0xC860\t0x8421\n0xC861\t0x8422\n0xC862\t0x8423\n0xC863\t0x8429\n0xC864\t0x842A\n0xC865\t0x842B\n0xC866\t0x842C\n0xC867\t0x842D\n0xC868\t0x842E\n0xC869\t0x842F\n0xC86A\t0x8430\n0xC86B\t0x8432\n0xC86C\t0x8433\n0xC86D\t0x8434\n0xC86E\t0x8435\n0xC86F\t0x8436\n0xC870\t0x8437\n0xC871\t0x8439\n0xC872\t0x843A\n0xC873\t0x843B\n0xC874\t0x843E\n0xC875\t0x843F\n0xC876\t0x8440\n0xC877\t0x8441\n0xC878\t0x8442\n0xC879\t0x8443\n0xC87A\t0x8444\n0xC87B\t0x8445\n0xC87C\t0x8447\n0xC87D\t0x8448\n0xC87E\t0x8449\n0xC880\t0x844A\n0xC881\t0x844B\n0xC882\t0x844C\n0xC883\t0x844D\n0xC884\t0x844E\n0xC885\t0x844F\n0xC886\t0x8450\n0xC887\t0x8452\n0xC888\t0x8453\n0xC889\t0x8454\n0xC88A\t0x8455\n0xC88B\t0x8456\n0xC88C\t0x8458\n0xC88D\t0x845D\n0xC88E\t0x845E\n0xC88F\t0x845F\n0xC890\t0x8460\n0xC891\t0x8462\n0xC892\t0x8464\n0xC893\t0x8465\n0xC894\t0x8466\n0xC895\t0x8467\n0xC896\t0x8468\n0xC897\t0x846A\n0xC898\t0x846E\n0xC899\t0x846F\n0xC89A\t0x8470\n0xC89B\t0x8472\n0xC89C\t0x8474\n0xC89D\t0x8477\n0xC89E\t0x8479\n0xC89F\t0x847B\n0xC8A0\t0x847C\n0xC8A1\t0x53D6\n0xC8A2\t0x5A36\n0xC8A3\t0x9F8B\n0xC8A4\t0x8DA3\n0xC8A5\t0x53BB\n0xC8A6\t0x5708\n0xC8A7\t0x98A7\n0xC8A8\t0x6743\n0xC8A9\t0x919B\n0xC8AA\t0x6CC9\n0xC8AB\t0x5168\n0xC8AC\t0x75CA\n0xC8AD\t0x62F3\n0xC8AE\t0x72AC\n0xC8AF\t0x5238\n0xC8B0\t0x529D\n0xC8B1\t0x7F3A\n0xC8B2\t0x7094\n0xC8B3\t0x7638\n0xC8B4\t0x5374\n0xC8B5\t0x9E4A\n0xC8B6\t0x69B7\n0xC8B7\t0x786E\n0xC8B8\t0x96C0\n0xC8B9\t0x88D9\n0xC8BA\t0x7FA4\n0xC8BB\t0x7136\n0xC8BC\t0x71C3\n0xC8BD\t0x5189\n0xC8BE\t0x67D3\n0xC8BF\t0x74E4\n0xC8C0\t0x58E4\n0xC8C1\t0x6518\n0xC8C2\t0x56B7\n0xC8C3\t0x8BA9\n0xC8C4\t0x9976\n0xC8C5\t0x6270\n0xC8C6\t0x7ED5\n0xC8C7\t0x60F9\n0xC8C8\t0x70ED\n0xC8C9\t0x58EC\n0xC8CA\t0x4EC1\n0xC8CB\t0x4EBA\n0xC8CC\t0x5FCD\n0xC8CD\t0x97E7\n0xC8CE\t0x4EFB\n0xC8CF\t0x8BA4\n0xC8D0\t0x5203\n0xC8D1\t0x598A\n0xC8D2\t0x7EAB\n0xC8D3\t0x6254\n0xC8D4\t0x4ECD\n0xC8D5\t0x65E5\n0xC8D6\t0x620E\n0xC8D7\t0x8338\n0xC8D8\t0x84C9\n0xC8D9\t0x8363\n0xC8DA\t0x878D\n0xC8DB\t0x7194\n0xC8DC\t0x6EB6\n0xC8DD\t0x5BB9\n0xC8DE\t0x7ED2\n0xC8DF\t0x5197\n0xC8E0\t0x63C9\n0xC8E1\t0x67D4\n0xC8E2\t0x8089\n0xC8E3\t0x8339\n0xC8E4\t0x8815\n0xC8E5\t0x5112\n0xC8E6\t0x5B7A\n0xC8E7\t0x5982\n0xC8E8\t0x8FB1\n0xC8E9\t0x4E73\n0xC8EA\t0x6C5D\n0xC8EB\t0x5165\n0xC8EC\t0x8925\n0xC8ED\t0x8F6F\n0xC8EE\t0x962E\n0xC8EF\t0x854A\n0xC8F0\t0x745E\n0xC8F1\t0x9510\n0xC8F2\t0x95F0\n0xC8F3\t0x6DA6\n0xC8F4\t0x82E5\n0xC8F5\t0x5F31\n0xC8F6\t0x6492\n0xC8F7\t0x6D12\n0xC8F8\t0x8428\n0xC8F9\t0x816E\n0xC8FA\t0x9CC3\n0xC8FB\t0x585E\n0xC8FC\t0x8D5B\n0xC8FD\t0x4E09\n0xC8FE\t0x53C1\n0xC940\t0x847D\n0xC941\t0x847E\n0xC942\t0x847F\n0xC943\t0x8480\n0xC944\t0x8481\n0xC945\t0x8483\n0xC946\t0x8484\n0xC947\t0x8485\n0xC948\t0x8486\n0xC949\t0x848A\n0xC94A\t0x848D\n0xC94B\t0x848F\n0xC94C\t0x8490\n0xC94D\t0x8491\n0xC94E\t0x8492\n0xC94F\t0x8493\n0xC950\t0x8494\n0xC951\t0x8495\n0xC952\t0x8496\n0xC953\t0x8498\n0xC954\t0x849A\n0xC955\t0x849B\n0xC956\t0x849D\n0xC957\t0x849E\n0xC958\t0x849F\n0xC959\t0x84A0\n0xC95A\t0x84A2\n0xC95B\t0x84A3\n0xC95C\t0x84A4\n0xC95D\t0x84A5\n0xC95E\t0x84A6\n0xC95F\t0x84A7\n0xC960\t0x84A8\n0xC961\t0x84A9\n0xC962\t0x84AA\n0xC963\t0x84AB\n0xC964\t0x84AC\n0xC965\t0x84AD\n0xC966\t0x84AE\n0xC967\t0x84B0\n0xC968\t0x84B1\n0xC969\t0x84B3\n0xC96A\t0x84B5\n0xC96B\t0x84B6\n0xC96C\t0x84B7\n0xC96D\t0x84BB\n0xC96E\t0x84BC\n0xC96F\t0x84BE\n0xC970\t0x84C0\n0xC971\t0x84C2\n0xC972\t0x84C3\n0xC973\t0x84C5\n0xC974\t0x84C6\n0xC975\t0x84C7\n0xC976\t0x84C8\n0xC977\t0x84CB\n0xC978\t0x84CC\n0xC979\t0x84CE\n0xC97A\t0x84CF\n0xC97B\t0x84D2\n0xC97C\t0x84D4\n0xC97D\t0x84D5\n0xC97E\t0x84D7\n0xC980\t0x84D8\n0xC981\t0x84D9\n0xC982\t0x84DA\n0xC983\t0x84DB\n0xC984\t0x84DC\n0xC985\t0x84DE\n0xC986\t0x84E1\n0xC987\t0x84E2\n0xC988\t0x84E4\n0xC989\t0x84E7\n0xC98A\t0x84E8\n0xC98B\t0x84E9\n0xC98C\t0x84EA\n0xC98D\t0x84EB\n0xC98E\t0x84ED\n0xC98F\t0x84EE\n0xC990\t0x84EF\n0xC991\t0x84F1\n0xC992\t0x84F2\n0xC993\t0x84F3\n0xC994\t0x84F4\n0xC995\t0x84F5\n0xC996\t0x84F6\n0xC997\t0x84F7\n0xC998\t0x84F8\n0xC999\t0x84F9\n0xC99A\t0x84FA\n0xC99B\t0x84FB\n0xC99C\t0x84FD\n0xC99D\t0x84FE\n0xC99E\t0x8500\n0xC99F\t0x8501\n0xC9A0\t0x8502\n0xC9A1\t0x4F1E\n0xC9A2\t0x6563\n0xC9A3\t0x6851\n0xC9A4\t0x55D3\n0xC9A5\t0x4E27\n0xC9A6\t0x6414\n0xC9A7\t0x9A9A\n0xC9A8\t0x626B\n0xC9A9\t0x5AC2\n0xC9AA\t0x745F\n0xC9AB\t0x8272\n0xC9AC\t0x6DA9\n0xC9AD\t0x68EE\n0xC9AE\t0x50E7\n0xC9AF\t0x838E\n0xC9B0\t0x7802\n0xC9B1\t0x6740\n0xC9B2\t0x5239\n0xC9B3\t0x6C99\n0xC9B4\t0x7EB1\n0xC9B5\t0x50BB\n0xC9B6\t0x5565\n0xC9B7\t0x715E\n0xC9B8\t0x7B5B\n0xC9B9\t0x6652\n0xC9BA\t0x73CA\n0xC9BB\t0x82EB\n0xC9BC\t0x6749\n0xC9BD\t0x5C71\n0xC9BE\t0x5220\n0xC9BF\t0x717D\n0xC9C0\t0x886B\n0xC9C1\t0x95EA\n0xC9C2\t0x9655\n0xC9C3\t0x64C5\n0xC9C4\t0x8D61\n0xC9C5\t0x81B3\n0xC9C6\t0x5584\n0xC9C7\t0x6C55\n0xC9C8\t0x6247\n0xC9C9\t0x7F2E\n0xC9CA\t0x5892\n0xC9CB\t0x4F24\n0xC9CC\t0x5546\n0xC9CD\t0x8D4F\n0xC9CE\t0x664C\n0xC9CF\t0x4E0A\n0xC9D0\t0x5C1A\n0xC9D1\t0x88F3\n0xC9D2\t0x68A2\n0xC9D3\t0x634E\n0xC9D4\t0x7A0D\n0xC9D5\t0x70E7\n0xC9D6\t0x828D\n0xC9D7\t0x52FA\n0xC9D8\t0x97F6\n0xC9D9\t0x5C11\n0xC9DA\t0x54E8\n0xC9DB\t0x90B5\n0xC9DC\t0x7ECD\n0xC9DD\t0x5962\n0xC9DE\t0x8D4A\n0xC9DF\t0x86C7\n0xC9E0\t0x820C\n0xC9E1\t0x820D\n0xC9E2\t0x8D66\n0xC9E3\t0x6444\n0xC9E4\t0x5C04\n0xC9E5\t0x6151\n0xC9E6\t0x6D89\n0xC9E7\t0x793E\n0xC9E8\t0x8BBE\n0xC9E9\t0x7837\n0xC9EA\t0x7533\n0xC9EB\t0x547B\n0xC9EC\t0x4F38\n0xC9ED\t0x8EAB\n0xC9EE\t0x6DF1\n0xC9EF\t0x5A20\n0xC9F0\t0x7EC5\n0xC9F1\t0x795E\n0xC9F2\t0x6C88\n0xC9F3\t0x5BA1\n0xC9F4\t0x5A76\n0xC9F5\t0x751A\n0xC9F6\t0x80BE\n0xC9F7\t0x614E\n0xC9F8\t0x6E17\n0xC9F9\t0x58F0\n0xC9FA\t0x751F\n0xC9FB\t0x7525\n0xC9FC\t0x7272\n0xC9FD\t0x5347\n0xC9FE\t0x7EF3\n0xCA40\t0x8503\n0xCA41\t0x8504\n0xCA42\t0x8505\n0xCA43\t0x8506\n0xCA44\t0x8507\n0xCA45\t0x8508\n0xCA46\t0x8509\n0xCA47\t0x850A\n0xCA48\t0x850B\n0xCA49\t0x850D\n0xCA4A\t0x850E\n0xCA4B\t0x850F\n0xCA4C\t0x8510\n0xCA4D\t0x8512\n0xCA4E\t0x8514\n0xCA4F\t0x8515\n0xCA50\t0x8516\n0xCA51\t0x8518\n0xCA52\t0x8519\n0xCA53\t0x851B\n0xCA54\t0x851C\n0xCA55\t0x851D\n0xCA56\t0x851E\n0xCA57\t0x8520\n0xCA58\t0x8522\n0xCA59\t0x8523\n0xCA5A\t0x8524\n0xCA5B\t0x8525\n0xCA5C\t0x8526\n0xCA5D\t0x8527\n0xCA5E\t0x8528\n0xCA5F\t0x8529\n0xCA60\t0x852A\n0xCA61\t0x852D\n0xCA62\t0x852E\n0xCA63\t0x852F\n0xCA64\t0x8530\n0xCA65\t0x8531\n0xCA66\t0x8532\n0xCA67\t0x8533\n0xCA68\t0x8534\n0xCA69\t0x8535\n0xCA6A\t0x8536\n0xCA6B\t0x853E\n0xCA6C\t0x853F\n0xCA6D\t0x8540\n0xCA6E\t0x8541\n0xCA6F\t0x8542\n0xCA70\t0x8544\n0xCA71\t0x8545\n0xCA72\t0x8546\n0xCA73\t0x8547\n0xCA74\t0x854B\n0xCA75\t0x854C\n0xCA76\t0x854D\n0xCA77\t0x854E\n0xCA78\t0x854F\n0xCA79\t0x8550\n0xCA7A\t0x8551\n0xCA7B\t0x8552\n0xCA7C\t0x8553\n0xCA7D\t0x8554\n0xCA7E\t0x8555\n0xCA80\t0x8557\n0xCA81\t0x8558\n0xCA82\t0x855A\n0xCA83\t0x855B\n0xCA84\t0x855C\n0xCA85\t0x855D\n0xCA86\t0x855F\n0xCA87\t0x8560\n0xCA88\t0x8561\n0xCA89\t0x8562\n0xCA8A\t0x8563\n0xCA8B\t0x8565\n0xCA8C\t0x8566\n0xCA8D\t0x8567\n0xCA8E\t0x8569\n0xCA8F\t0x856A\n0xCA90\t0x856B\n0xCA91\t0x856C\n0xCA92\t0x856D\n0xCA93\t0x856E\n0xCA94\t0x856F\n0xCA95\t0x8570\n0xCA96\t0x8571\n0xCA97\t0x8573\n0xCA98\t0x8575\n0xCA99\t0x8576\n0xCA9A\t0x8577\n0xCA9B\t0x8578\n0xCA9C\t0x857C\n0xCA9D\t0x857D\n0xCA9E\t0x857F\n0xCA9F\t0x8580\n0xCAA0\t0x8581\n0xCAA1\t0x7701\n0xCAA2\t0x76DB\n0xCAA3\t0x5269\n0xCAA4\t0x80DC\n0xCAA5\t0x5723\n0xCAA6\t0x5E08\n0xCAA7\t0x5931\n0xCAA8\t0x72EE\n0xCAA9\t0x65BD\n0xCAAA\t0x6E7F\n0xCAAB\t0x8BD7\n0xCAAC\t0x5C38\n0xCAAD\t0x8671\n0xCAAE\t0x5341\n0xCAAF\t0x77F3\n0xCAB0\t0x62FE\n0xCAB1\t0x65F6\n0xCAB2\t0x4EC0\n0xCAB3\t0x98DF\n0xCAB4\t0x8680\n0xCAB5\t0x5B9E\n0xCAB6\t0x8BC6\n0xCAB7\t0x53F2\n0xCAB8\t0x77E2\n0xCAB9\t0x4F7F\n0xCABA\t0x5C4E\n0xCABB\t0x9A76\n0xCABC\t0x59CB\n0xCABD\t0x5F0F\n0xCABE\t0x793A\n0xCABF\t0x58EB\n0xCAC0\t0x4E16\n0xCAC1\t0x67FF\n0xCAC2\t0x4E8B\n0xCAC3\t0x62ED\n0xCAC4\t0x8A93\n0xCAC5\t0x901D\n0xCAC6\t0x52BF\n0xCAC7\t0x662F\n0xCAC8\t0x55DC\n0xCAC9\t0x566C\n0xCACA\t0x9002\n0xCACB\t0x4ED5\n0xCACC\t0x4F8D\n0xCACD\t0x91CA\n0xCACE\t0x9970\n0xCACF\t0x6C0F\n0xCAD0\t0x5E02\n0xCAD1\t0x6043\n0xCAD2\t0x5BA4\n0xCAD3\t0x89C6\n0xCAD4\t0x8BD5\n0xCAD5\t0x6536\n0xCAD6\t0x624B\n0xCAD7\t0x9996\n0xCAD8\t0x5B88\n0xCAD9\t0x5BFF\n0xCADA\t0x6388\n0xCADB\t0x552E\n0xCADC\t0x53D7\n0xCADD\t0x7626\n0xCADE\t0x517D\n0xCADF\t0x852C\n0xCAE0\t0x67A2\n0xCAE1\t0x68B3\n0xCAE2\t0x6B8A\n0xCAE3\t0x6292\n0xCAE4\t0x8F93\n0xCAE5\t0x53D4\n0xCAE6\t0x8212\n0xCAE7\t0x6DD1\n0xCAE8\t0x758F\n0xCAE9\t0x4E66\n0xCAEA\t0x8D4E\n0xCAEB\t0x5B70\n0xCAEC\t0x719F\n0xCAED\t0x85AF\n0xCAEE\t0x6691\n0xCAEF\t0x66D9\n0xCAF0\t0x7F72\n0xCAF1\t0x8700\n0xCAF2\t0x9ECD\n0xCAF3\t0x9F20\n0xCAF4\t0x5C5E\n0xCAF5\t0x672F\n0xCAF6\t0x8FF0\n0xCAF7\t0x6811\n0xCAF8\t0x675F\n0xCAF9\t0x620D\n0xCAFA\t0x7AD6\n0xCAFB\t0x5885\n0xCAFC\t0x5EB6\n0xCAFD\t0x6570\n0xCAFE\t0x6F31\n0xCB40\t0x8582\n0xCB41\t0x8583\n0xCB42\t0x8586\n0xCB43\t0x8588\n0xCB44\t0x8589\n0xCB45\t0x858A\n0xCB46\t0x858B\n0xCB47\t0x858C\n0xCB48\t0x858D\n0xCB49\t0x858E\n0xCB4A\t0x8590\n0xCB4B\t0x8591\n0xCB4C\t0x8592\n0xCB4D\t0x8593\n0xCB4E\t0x8594\n0xCB4F\t0x8595\n0xCB50\t0x8596\n0xCB51\t0x8597\n0xCB52\t0x8598\n0xCB53\t0x8599\n0xCB54\t0x859A\n0xCB55\t0x859D\n0xCB56\t0x859E\n0xCB57\t0x859F\n0xCB58\t0x85A0\n0xCB59\t0x85A1\n0xCB5A\t0x85A2\n0xCB5B\t0x85A3\n0xCB5C\t0x85A5\n0xCB5D\t0x85A6\n0xCB5E\t0x85A7\n0xCB5F\t0x85A9\n0xCB60\t0x85AB\n0xCB61\t0x85AC\n0xCB62\t0x85AD\n0xCB63\t0x85B1\n0xCB64\t0x85B2\n0xCB65\t0x85B3\n0xCB66\t0x85B4\n0xCB67\t0x85B5\n0xCB68\t0x85B6\n0xCB69\t0x85B8\n0xCB6A\t0x85BA\n0xCB6B\t0x85BB\n0xCB6C\t0x85BC\n0xCB6D\t0x85BD\n0xCB6E\t0x85BE\n0xCB6F\t0x85BF\n0xCB70\t0x85C0\n0xCB71\t0x85C2\n0xCB72\t0x85C3\n0xCB73\t0x85C4\n0xCB74\t0x85C5\n0xCB75\t0x85C6\n0xCB76\t0x85C7\n0xCB77\t0x85C8\n0xCB78\t0x85CA\n0xCB79\t0x85CB\n0xCB7A\t0x85CC\n0xCB7B\t0x85CD\n0xCB7C\t0x85CE\n0xCB7D\t0x85D1\n0xCB7E\t0x85D2\n0xCB80\t0x85D4\n0xCB81\t0x85D6\n0xCB82\t0x85D7\n0xCB83\t0x85D8\n0xCB84\t0x85D9\n0xCB85\t0x85DA\n0xCB86\t0x85DB\n0xCB87\t0x85DD\n0xCB88\t0x85DE\n0xCB89\t0x85DF\n0xCB8A\t0x85E0\n0xCB8B\t0x85E1\n0xCB8C\t0x85E2\n0xCB8D\t0x85E3\n0xCB8E\t0x85E5\n0xCB8F\t0x85E6\n0xCB90\t0x85E7\n0xCB91\t0x85E8\n0xCB92\t0x85EA\n0xCB93\t0x85EB\n0xCB94\t0x85EC\n0xCB95\t0x85ED\n0xCB96\t0x85EE\n0xCB97\t0x85EF\n0xCB98\t0x85F0\n0xCB99\t0x85F1\n0xCB9A\t0x85F2\n0xCB9B\t0x85F3\n0xCB9C\t0x85F4\n0xCB9D\t0x85F5\n0xCB9E\t0x85F6\n0xCB9F\t0x85F7\n0xCBA0\t0x85F8\n0xCBA1\t0x6055\n0xCBA2\t0x5237\n0xCBA3\t0x800D\n0xCBA4\t0x6454\n0xCBA5\t0x8870\n0xCBA6\t0x7529\n0xCBA7\t0x5E05\n0xCBA8\t0x6813\n0xCBA9\t0x62F4\n0xCBAA\t0x971C\n0xCBAB\t0x53CC\n0xCBAC\t0x723D\n0xCBAD\t0x8C01\n0xCBAE\t0x6C34\n0xCBAF\t0x7761\n0xCBB0\t0x7A0E\n0xCBB1\t0x542E\n0xCBB2\t0x77AC\n0xCBB3\t0x987A\n0xCBB4\t0x821C\n0xCBB5\t0x8BF4\n0xCBB6\t0x7855\n0xCBB7\t0x6714\n0xCBB8\t0x70C1\n0xCBB9\t0x65AF\n0xCBBA\t0x6495\n0xCBBB\t0x5636\n0xCBBC\t0x601D\n0xCBBD\t0x79C1\n0xCBBE\t0x53F8\n0xCBBF\t0x4E1D\n0xCBC0\t0x6B7B\n0xCBC1\t0x8086\n0xCBC2\t0x5BFA\n0xCBC3\t0x55E3\n0xCBC4\t0x56DB\n0xCBC5\t0x4F3A\n0xCBC6\t0x4F3C\n0xCBC7\t0x9972\n0xCBC8\t0x5DF3\n0xCBC9\t0x677E\n0xCBCA\t0x8038\n0xCBCB\t0x6002\n0xCBCC\t0x9882\n0xCBCD\t0x9001\n0xCBCE\t0x5B8B\n0xCBCF\t0x8BBC\n0xCBD0\t0x8BF5\n0xCBD1\t0x641C\n0xCBD2\t0x8258\n0xCBD3\t0x64DE\n0xCBD4\t0x55FD\n0xCBD5\t0x82CF\n0xCBD6\t0x9165\n0xCBD7\t0x4FD7\n0xCBD8\t0x7D20\n0xCBD9\t0x901F\n0xCBDA\t0x7C9F\n0xCBDB\t0x50F3\n0xCBDC\t0x5851\n0xCBDD\t0x6EAF\n0xCBDE\t0x5BBF\n0xCBDF\t0x8BC9\n0xCBE0\t0x8083\n0xCBE1\t0x9178\n0xCBE2\t0x849C\n0xCBE3\t0x7B97\n0xCBE4\t0x867D\n0xCBE5\t0x968B\n0xCBE6\t0x968F\n0xCBE7\t0x7EE5\n0xCBE8\t0x9AD3\n0xCBE9\t0x788E\n0xCBEA\t0x5C81\n0xCBEB\t0x7A57\n0xCBEC\t0x9042\n0xCBED\t0x96A7\n0xCBEE\t0x795F\n0xCBEF\t0x5B59\n0xCBF0\t0x635F\n0xCBF1\t0x7B0B\n0xCBF2\t0x84D1\n0xCBF3\t0x68AD\n0xCBF4\t0x5506\n0xCBF5\t0x7F29\n0xCBF6\t0x7410\n0xCBF7\t0x7D22\n0xCBF8\t0x9501\n0xCBF9\t0x6240\n0xCBFA\t0x584C\n0xCBFB\t0x4ED6\n0xCBFC\t0x5B83\n0xCBFD\t0x5979\n0xCBFE\t0x5854\n0xCC40\t0x85F9\n0xCC41\t0x85FA\n0xCC42\t0x85FC\n0xCC43\t0x85FD\n0xCC44\t0x85FE\n0xCC45\t0x8600\n0xCC46\t0x8601\n0xCC47\t0x8602\n0xCC48\t0x8603\n0xCC49\t0x8604\n0xCC4A\t0x8606\n0xCC4B\t0x8607\n0xCC4C\t0x8608\n0xCC4D\t0x8609\n0xCC4E\t0x860A\n0xCC4F\t0x860B\n0xCC50\t0x860C\n0xCC51\t0x860D\n0xCC52\t0x860E\n0xCC53\t0x860F\n0xCC54\t0x8610\n0xCC55\t0x8612\n0xCC56\t0x8613\n0xCC57\t0x8614\n0xCC58\t0x8615\n0xCC59\t0x8617\n0xCC5A\t0x8618\n0xCC5B\t0x8619\n0xCC5C\t0x861A\n0xCC5D\t0x861B\n0xCC5E\t0x861C\n0xCC5F\t0x861D\n0xCC60\t0x861E\n0xCC61\t0x861F\n0xCC62\t0x8620\n0xCC63\t0x8621\n0xCC64\t0x8622\n0xCC65\t0x8623\n0xCC66\t0x8624\n0xCC67\t0x8625\n0xCC68\t0x8626\n0xCC69\t0x8628\n0xCC6A\t0x862A\n0xCC6B\t0x862B\n0xCC6C\t0x862C\n0xCC6D\t0x862D\n0xCC6E\t0x862E\n0xCC6F\t0x862F\n0xCC70\t0x8630\n0xCC71\t0x8631\n0xCC72\t0x8632\n0xCC73\t0x8633\n0xCC74\t0x8634\n0xCC75\t0x8635\n0xCC76\t0x8636\n0xCC77\t0x8637\n0xCC78\t0x8639\n0xCC79\t0x863A\n0xCC7A\t0x863B\n0xCC7B\t0x863D\n0xCC7C\t0x863E\n0xCC7D\t0x863F\n0xCC7E\t0x8640\n0xCC80\t0x8641\n0xCC81\t0x8642\n0xCC82\t0x8643\n0xCC83\t0x8644\n0xCC84\t0x8645\n0xCC85\t0x8646\n0xCC86\t0x8647\n0xCC87\t0x8648\n0xCC88\t0x8649\n0xCC89\t0x864A\n0xCC8A\t0x864B\n0xCC8B\t0x864C\n0xCC8C\t0x8652\n0xCC8D\t0x8653\n0xCC8E\t0x8655\n0xCC8F\t0x8656\n0xCC90\t0x8657\n0xCC91\t0x8658\n0xCC92\t0x8659\n0xCC93\t0x865B\n0xCC94\t0x865C\n0xCC95\t0x865D\n0xCC96\t0x865F\n0xCC97\t0x8660\n0xCC98\t0x8661\n0xCC99\t0x8663\n0xCC9A\t0x8664\n0xCC9B\t0x8665\n0xCC9C\t0x8666\n0xCC9D\t0x8667\n0xCC9E\t0x8668\n0xCC9F\t0x8669\n0xCCA0\t0x866A\n0xCCA1\t0x736D\n0xCCA2\t0x631E\n0xCCA3\t0x8E4B\n0xCCA4\t0x8E0F\n0xCCA5\t0x80CE\n0xCCA6\t0x82D4\n0xCCA7\t0x62AC\n0xCCA8\t0x53F0\n0xCCA9\t0x6CF0\n0xCCAA\t0x915E\n0xCCAB\t0x592A\n0xCCAC\t0x6001\n0xCCAD\t0x6C70\n0xCCAE\t0x574D\n0xCCAF\t0x644A\n0xCCB0\t0x8D2A\n0xCCB1\t0x762B\n0xCCB2\t0x6EE9\n0xCCB3\t0x575B\n0xCCB4\t0x6A80\n0xCCB5\t0x75F0\n0xCCB6\t0x6F6D\n0xCCB7\t0x8C2D\n0xCCB8\t0x8C08\n0xCCB9\t0x5766\n0xCCBA\t0x6BEF\n0xCCBB\t0x8892\n0xCCBC\t0x78B3\n0xCCBD\t0x63A2\n0xCCBE\t0x53F9\n0xCCBF\t0x70AD\n0xCCC0\t0x6C64\n0xCCC1\t0x5858\n0xCCC2\t0x642A\n0xCCC3\t0x5802\n0xCCC4\t0x68E0\n0xCCC5\t0x819B\n0xCCC6\t0x5510\n0xCCC7\t0x7CD6\n0xCCC8\t0x5018\n0xCCC9\t0x8EBA\n0xCCCA\t0x6DCC\n0xCCCB\t0x8D9F\n0xCCCC\t0x70EB\n0xCCCD\t0x638F\n0xCCCE\t0x6D9B\n0xCCCF\t0x6ED4\n0xCCD0\t0x7EE6\n0xCCD1\t0x8404\n0xCCD2\t0x6843\n0xCCD3\t0x9003\n0xCCD4\t0x6DD8\n0xCCD5\t0x9676\n0xCCD6\t0x8BA8\n0xCCD7\t0x5957\n0xCCD8\t0x7279\n0xCCD9\t0x85E4\n0xCCDA\t0x817E\n0xCCDB\t0x75BC\n0xCCDC\t0x8A8A\n0xCCDD\t0x68AF\n0xCCDE\t0x5254\n0xCCDF\t0x8E22\n0xCCE0\t0x9511\n0xCCE1\t0x63D0\n0xCCE2\t0x9898\n0xCCE3\t0x8E44\n0xCCE4\t0x557C\n0xCCE5\t0x4F53\n0xCCE6\t0x66FF\n0xCCE7\t0x568F\n0xCCE8\t0x60D5\n0xCCE9\t0x6D95\n0xCCEA\t0x5243\n0xCCEB\t0x5C49\n0xCCEC\t0x5929\n0xCCED\t0x6DFB\n0xCCEE\t0x586B\n0xCCEF\t0x7530\n0xCCF0\t0x751C\n0xCCF1\t0x606C\n0xCCF2\t0x8214\n0xCCF3\t0x8146\n0xCCF4\t0x6311\n0xCCF5\t0x6761\n0xCCF6\t0x8FE2\n0xCCF7\t0x773A\n0xCCF8\t0x8DF3\n0xCCF9\t0x8D34\n0xCCFA\t0x94C1\n0xCCFB\t0x5E16\n0xCCFC\t0x5385\n0xCCFD\t0x542C\n0xCCFE\t0x70C3\n0xCD40\t0x866D\n0xCD41\t0x866F\n0xCD42\t0x8670\n0xCD43\t0x8672\n0xCD44\t0x8673\n0xCD45\t0x8674\n0xCD46\t0x8675\n0xCD47\t0x8676\n0xCD48\t0x8677\n0xCD49\t0x8678\n0xCD4A\t0x8683\n0xCD4B\t0x8684\n0xCD4C\t0x8685\n0xCD4D\t0x8686\n0xCD4E\t0x8687\n0xCD4F\t0x8688\n0xCD50\t0x8689\n0xCD51\t0x868E\n0xCD52\t0x868F\n0xCD53\t0x8690\n0xCD54\t0x8691\n0xCD55\t0x8692\n0xCD56\t0x8694\n0xCD57\t0x8696\n0xCD58\t0x8697\n0xCD59\t0x8698\n0xCD5A\t0x8699\n0xCD5B\t0x869A\n0xCD5C\t0x869B\n0xCD5D\t0x869E\n0xCD5E\t0x869F\n0xCD5F\t0x86A0\n0xCD60\t0x86A1\n0xCD61\t0x86A2\n0xCD62\t0x86A5\n0xCD63\t0x86A6\n0xCD64\t0x86AB\n0xCD65\t0x86AD\n0xCD66\t0x86AE\n0xCD67\t0x86B2\n0xCD68\t0x86B3\n0xCD69\t0x86B7\n0xCD6A\t0x86B8\n0xCD6B\t0x86B9\n0xCD6C\t0x86BB\n0xCD6D\t0x86BC\n0xCD6E\t0x86BD\n0xCD6F\t0x86BE\n0xCD70\t0x86BF\n0xCD71\t0x86C1\n0xCD72\t0x86C2\n0xCD73\t0x86C3\n0xCD74\t0x86C5\n0xCD75\t0x86C8\n0xCD76\t0x86CC\n0xCD77\t0x86CD\n0xCD78\t0x86D2\n0xCD79\t0x86D3\n0xCD7A\t0x86D5\n0xCD7B\t0x86D6\n0xCD7C\t0x86D7\n0xCD7D\t0x86DA\n0xCD7E\t0x86DC\n0xCD80\t0x86DD\n0xCD81\t0x86E0\n0xCD82\t0x86E1\n0xCD83\t0x86E2\n0xCD84\t0x86E3\n0xCD85\t0x86E5\n0xCD86\t0x86E6\n0xCD87\t0x86E7\n0xCD88\t0x86E8\n0xCD89\t0x86EA\n0xCD8A\t0x86EB\n0xCD8B\t0x86EC\n0xCD8C\t0x86EF\n0xCD8D\t0x86F5\n0xCD8E\t0x86F6\n0xCD8F\t0x86F7\n0xCD90\t0x86FA\n0xCD91\t0x86FB\n0xCD92\t0x86FC\n0xCD93\t0x86FD\n0xCD94\t0x86FF\n0xCD95\t0x8701\n0xCD96\t0x8704\n0xCD97\t0x8705\n0xCD98\t0x8706\n0xCD99\t0x870B\n0xCD9A\t0x870C\n0xCD9B\t0x870E\n0xCD9C\t0x870F\n0xCD9D\t0x8710\n0xCD9E\t0x8711\n0xCD9F\t0x8714\n0xCDA0\t0x8716\n0xCDA1\t0x6C40\n0xCDA2\t0x5EF7\n0xCDA3\t0x505C\n0xCDA4\t0x4EAD\n0xCDA5\t0x5EAD\n0xCDA6\t0x633A\n0xCDA7\t0x8247\n0xCDA8\t0x901A\n0xCDA9\t0x6850\n0xCDAA\t0x916E\n0xCDAB\t0x77B3\n0xCDAC\t0x540C\n0xCDAD\t0x94DC\n0xCDAE\t0x5F64\n0xCDAF\t0x7AE5\n0xCDB0\t0x6876\n0xCDB1\t0x6345\n0xCDB2\t0x7B52\n0xCDB3\t0x7EDF\n0xCDB4\t0x75DB\n0xCDB5\t0x5077\n0xCDB6\t0x6295\n0xCDB7\t0x5934\n0xCDB8\t0x900F\n0xCDB9\t0x51F8\n0xCDBA\t0x79C3\n0xCDBB\t0x7A81\n0xCDBC\t0x56FE\n0xCDBD\t0x5F92\n0xCDBE\t0x9014\n0xCDBF\t0x6D82\n0xCDC0\t0x5C60\n0xCDC1\t0x571F\n0xCDC2\t0x5410\n0xCDC3\t0x5154\n0xCDC4\t0x6E4D\n0xCDC5\t0x56E2\n0xCDC6\t0x63A8\n0xCDC7\t0x9893\n0xCDC8\t0x817F\n0xCDC9\t0x8715\n0xCDCA\t0x892A\n0xCDCB\t0x9000\n0xCDCC\t0x541E\n0xCDCD\t0x5C6F\n0xCDCE\t0x81C0\n0xCDCF\t0x62D6\n0xCDD0\t0x6258\n0xCDD1\t0x8131\n0xCDD2\t0x9E35\n0xCDD3\t0x9640\n0xCDD4\t0x9A6E\n0xCDD5\t0x9A7C\n0xCDD6\t0x692D\n0xCDD7\t0x59A5\n0xCDD8\t0x62D3\n0xCDD9\t0x553E\n0xCDDA\t0x6316\n0xCDDB\t0x54C7\n0xCDDC\t0x86D9\n0xCDDD\t0x6D3C\n0xCDDE\t0x5A03\n0xCDDF\t0x74E6\n0xCDE0\t0x889C\n0xCDE1\t0x6B6A\n0xCDE2\t0x5916\n0xCDE3\t0x8C4C\n0xCDE4\t0x5F2F\n0xCDE5\t0x6E7E\n0xCDE6\t0x73A9\n0xCDE7\t0x987D\n0xCDE8\t0x4E38\n0xCDE9\t0x70F7\n0xCDEA\t0x5B8C\n0xCDEB\t0x7897\n0xCDEC\t0x633D\n0xCDED\t0x665A\n0xCDEE\t0x7696\n0xCDEF\t0x60CB\n0xCDF0\t0x5B9B\n0xCDF1\t0x5A49\n0xCDF2\t0x4E07\n0xCDF3\t0x8155\n0xCDF4\t0x6C6A\n0xCDF5\t0x738B\n0xCDF6\t0x4EA1\n0xCDF7\t0x6789\n0xCDF8\t0x7F51\n0xCDF9\t0x5F80\n0xCDFA\t0x65FA\n0xCDFB\t0x671B\n0xCDFC\t0x5FD8\n0xCDFD\t0x5984\n0xCDFE\t0x5A01\n0xCE40\t0x8719\n0xCE41\t0x871B\n0xCE42\t0x871D\n0xCE43\t0x871F\n0xCE44\t0x8720\n0xCE45\t0x8724\n0xCE46\t0x8726\n0xCE47\t0x8727\n0xCE48\t0x8728\n0xCE49\t0x872A\n0xCE4A\t0x872B\n0xCE4B\t0x872C\n0xCE4C\t0x872D\n0xCE4D\t0x872F\n0xCE4E\t0x8730\n0xCE4F\t0x8732\n0xCE50\t0x8733\n0xCE51\t0x8735\n0xCE52\t0x8736\n0xCE53\t0x8738\n0xCE54\t0x8739\n0xCE55\t0x873A\n0xCE56\t0x873C\n0xCE57\t0x873D\n0xCE58\t0x8740\n0xCE59\t0x8741\n0xCE5A\t0x8742\n0xCE5B\t0x8743\n0xCE5C\t0x8744\n0xCE5D\t0x8745\n0xCE5E\t0x8746\n0xCE5F\t0x874A\n0xCE60\t0x874B\n0xCE61\t0x874D\n0xCE62\t0x874F\n0xCE63\t0x8750\n0xCE64\t0x8751\n0xCE65\t0x8752\n0xCE66\t0x8754\n0xCE67\t0x8755\n0xCE68\t0x8756\n0xCE69\t0x8758\n0xCE6A\t0x875A\n0xCE6B\t0x875B\n0xCE6C\t0x875C\n0xCE6D\t0x875D\n0xCE6E\t0x875E\n0xCE6F\t0x875F\n0xCE70\t0x8761\n0xCE71\t0x8762\n0xCE72\t0x8766\n0xCE73\t0x8767\n0xCE74\t0x8768\n0xCE75\t0x8769\n0xCE76\t0x876A\n0xCE77\t0x876B\n0xCE78\t0x876C\n0xCE79\t0x876D\n0xCE7A\t0x876F\n0xCE7B\t0x8771\n0xCE7C\t0x8772\n0xCE7D\t0x8773\n0xCE7E\t0x8775\n0xCE80\t0x8777\n0xCE81\t0x8778\n0xCE82\t0x8779\n0xCE83\t0x877A\n0xCE84\t0x877F\n0xCE85\t0x8780\n0xCE86\t0x8781\n0xCE87\t0x8784\n0xCE88\t0x8786\n0xCE89\t0x8787\n0xCE8A\t0x8789\n0xCE8B\t0x878A\n0xCE8C\t0x878C\n0xCE8D\t0x878E\n0xCE8E\t0x878F\n0xCE8F\t0x8790\n0xCE90\t0x8791\n0xCE91\t0x8792\n0xCE92\t0x8794\n0xCE93\t0x8795\n0xCE94\t0x8796\n0xCE95\t0x8798\n0xCE96\t0x8799\n0xCE97\t0x879A\n0xCE98\t0x879B\n0xCE99\t0x879C\n0xCE9A\t0x879D\n0xCE9B\t0x879E\n0xCE9C\t0x87A0\n0xCE9D\t0x87A1\n0xCE9E\t0x87A2\n0xCE9F\t0x87A3\n0xCEA0\t0x87A4\n0xCEA1\t0x5DCD\n0xCEA2\t0x5FAE\n0xCEA3\t0x5371\n0xCEA4\t0x97E6\n0xCEA5\t0x8FDD\n0xCEA6\t0x6845\n0xCEA7\t0x56F4\n0xCEA8\t0x552F\n0xCEA9\t0x60DF\n0xCEAA\t0x4E3A\n0xCEAB\t0x6F4D\n0xCEAC\t0x7EF4\n0xCEAD\t0x82C7\n0xCEAE\t0x840E\n0xCEAF\t0x59D4\n0xCEB0\t0x4F1F\n0xCEB1\t0x4F2A\n0xCEB2\t0x5C3E\n0xCEB3\t0x7EAC\n0xCEB4\t0x672A\n0xCEB5\t0x851A\n0xCEB6\t0x5473\n0xCEB7\t0x754F\n0xCEB8\t0x80C3\n0xCEB9\t0x5582\n0xCEBA\t0x9B4F\n0xCEBB\t0x4F4D\n0xCEBC\t0x6E2D\n0xCEBD\t0x8C13\n0xCEBE\t0x5C09\n0xCEBF\t0x6170\n0xCEC0\t0x536B\n0xCEC1\t0x761F\n0xCEC2\t0x6E29\n0xCEC3\t0x868A\n0xCEC4\t0x6587\n0xCEC5\t0x95FB\n0xCEC6\t0x7EB9\n0xCEC7\t0x543B\n0xCEC8\t0x7A33\n0xCEC9\t0x7D0A\n0xCECA\t0x95EE\n0xCECB\t0x55E1\n0xCECC\t0x7FC1\n0xCECD\t0x74EE\n0xCECE\t0x631D\n0xCECF\t0x8717\n0xCED0\t0x6DA1\n0xCED1\t0x7A9D\n0xCED2\t0x6211\n0xCED3\t0x65A1\n0xCED4\t0x5367\n0xCED5\t0x63E1\n0xCED6\t0x6C83\n0xCED7\t0x5DEB\n0xCED8\t0x545C\n0xCED9\t0x94A8\n0xCEDA\t0x4E4C\n0xCEDB\t0x6C61\n0xCEDC\t0x8BEC\n0xCEDD\t0x5C4B\n0xCEDE\t0x65E0\n0xCEDF\t0x829C\n0xCEE0\t0x68A7\n0xCEE1\t0x543E\n0xCEE2\t0x5434\n0xCEE3\t0x6BCB\n0xCEE4\t0x6B66\n0xCEE5\t0x4E94\n0xCEE6\t0x6342\n0xCEE7\t0x5348\n0xCEE8\t0x821E\n0xCEE9\t0x4F0D\n0xCEEA\t0x4FAE\n0xCEEB\t0x575E\n0xCEEC\t0x620A\n0xCEED\t0x96FE\n0xCEEE\t0x6664\n0xCEEF\t0x7269\n0xCEF0\t0x52FF\n0xCEF1\t0x52A1\n0xCEF2\t0x609F\n0xCEF3\t0x8BEF\n0xCEF4\t0x6614\n0xCEF5\t0x7199\n0xCEF6\t0x6790\n0xCEF7\t0x897F\n0xCEF8\t0x7852\n0xCEF9\t0x77FD\n0xCEFA\t0x6670\n0xCEFB\t0x563B\n0xCEFC\t0x5438\n0xCEFD\t0x9521\n0xCEFE\t0x727A\n0xCF40\t0x87A5\n0xCF41\t0x87A6\n0xCF42\t0x87A7\n0xCF43\t0x87A9\n0xCF44\t0x87AA\n0xCF45\t0x87AE\n0xCF46\t0x87B0\n0xCF47\t0x87B1\n0xCF48\t0x87B2\n0xCF49\t0x87B4\n0xCF4A\t0x87B6\n0xCF4B\t0x87B7\n0xCF4C\t0x87B8\n0xCF4D\t0x87B9\n0xCF4E\t0x87BB\n0xCF4F\t0x87BC\n0xCF50\t0x87BE\n0xCF51\t0x87BF\n0xCF52\t0x87C1\n0xCF53\t0x87C2\n0xCF54\t0x87C3\n0xCF55\t0x87C4\n0xCF56\t0x87C5\n0xCF57\t0x87C7\n0xCF58\t0x87C8\n0xCF59\t0x87C9\n0xCF5A\t0x87CC\n0xCF5B\t0x87CD\n0xCF5C\t0x87CE\n0xCF5D\t0x87CF\n0xCF5E\t0x87D0\n0xCF5F\t0x87D4\n0xCF60\t0x87D5\n0xCF61\t0x87D6\n0xCF62\t0x87D7\n0xCF63\t0x87D8\n0xCF64\t0x87D9\n0xCF65\t0x87DA\n0xCF66\t0x87DC\n0xCF67\t0x87DD\n0xCF68\t0x87DE\n0xCF69\t0x87DF\n0xCF6A\t0x87E1\n0xCF6B\t0x87E2\n0xCF6C\t0x87E3\n0xCF6D\t0x87E4\n0xCF6E\t0x87E6\n0xCF6F\t0x87E7\n0xCF70\t0x87E8\n0xCF71\t0x87E9\n0xCF72\t0x87EB\n0xCF73\t0x87EC\n0xCF74\t0x87ED\n0xCF75\t0x87EF\n0xCF76\t0x87F0\n0xCF77\t0x87F1\n0xCF78\t0x87F2\n0xCF79\t0x87F3\n0xCF7A\t0x87F4\n0xCF7B\t0x87F5\n0xCF7C\t0x87F6\n0xCF7D\t0x87F7\n0xCF7E\t0x87F8\n0xCF80\t0x87FA\n0xCF81\t0x87FB\n0xCF82\t0x87FC\n0xCF83\t0x87FD\n0xCF84\t0x87FF\n0xCF85\t0x8800\n0xCF86\t0x8801\n0xCF87\t0x8802\n0xCF88\t0x8804\n0xCF89\t0x8805\n0xCF8A\t0x8806\n0xCF8B\t0x8807\n0xCF8C\t0x8808\n0xCF8D\t0x8809\n0xCF8E\t0x880B\n0xCF8F\t0x880C\n0xCF90\t0x880D\n0xCF91\t0x880E\n0xCF92\t0x880F\n0xCF93\t0x8810\n0xCF94\t0x8811\n0xCF95\t0x8812\n0xCF96\t0x8814\n0xCF97\t0x8817\n0xCF98\t0x8818\n0xCF99\t0x8819\n0xCF9A\t0x881A\n0xCF9B\t0x881C\n0xCF9C\t0x881D\n0xCF9D\t0x881E\n0xCF9E\t0x881F\n0xCF9F\t0x8820\n0xCFA0\t0x8823\n0xCFA1\t0x7A00\n0xCFA2\t0x606F\n0xCFA3\t0x5E0C\n0xCFA4\t0x6089\n0xCFA5\t0x819D\n0xCFA6\t0x5915\n0xCFA7\t0x60DC\n0xCFA8\t0x7184\n0xCFA9\t0x70EF\n0xCFAA\t0x6EAA\n0xCFAB\t0x6C50\n0xCFAC\t0x7280\n0xCFAD\t0x6A84\n0xCFAE\t0x88AD\n0xCFAF\t0x5E2D\n0xCFB0\t0x4E60\n0xCFB1\t0x5AB3\n0xCFB2\t0x559C\n0xCFB3\t0x94E3\n0xCFB4\t0x6D17\n0xCFB5\t0x7CFB\n0xCFB6\t0x9699\n0xCFB7\t0x620F\n0xCFB8\t0x7EC6\n0xCFB9\t0x778E\n0xCFBA\t0x867E\n0xCFBB\t0x5323\n0xCFBC\t0x971E\n0xCFBD\t0x8F96\n0xCFBE\t0x6687\n0xCFBF\t0x5CE1\n0xCFC0\t0x4FA0\n0xCFC1\t0x72ED\n0xCFC2\t0x4E0B\n0xCFC3\t0x53A6\n0xCFC4\t0x590F\n0xCFC5\t0x5413\n0xCFC6\t0x6380\n0xCFC7\t0x9528\n0xCFC8\t0x5148\n0xCFC9\t0x4ED9\n0xCFCA\t0x9C9C\n0xCFCB\t0x7EA4\n0xCFCC\t0x54B8\n0xCFCD\t0x8D24\n0xCFCE\t0x8854\n0xCFCF\t0x8237\n0xCFD0\t0x95F2\n0xCFD1\t0x6D8E\n0xCFD2\t0x5F26\n0xCFD3\t0x5ACC\n0xCFD4\t0x663E\n0xCFD5\t0x9669\n0xCFD6\t0x73B0\n0xCFD7\t0x732E\n0xCFD8\t0x53BF\n0xCFD9\t0x817A\n0xCFDA\t0x9985\n0xCFDB\t0x7FA1\n0xCFDC\t0x5BAA\n0xCFDD\t0x9677\n0xCFDE\t0x9650\n0xCFDF\t0x7EBF\n0xCFE0\t0x76F8\n0xCFE1\t0x53A2\n0xCFE2\t0x9576\n0xCFE3\t0x9999\n0xCFE4\t0x7BB1\n0xCFE5\t0x8944\n0xCFE6\t0x6E58\n0xCFE7\t0x4E61\n0xCFE8\t0x7FD4\n0xCFE9\t0x7965\n0xCFEA\t0x8BE6\n0xCFEB\t0x60F3\n0xCFEC\t0x54CD\n0xCFED\t0x4EAB\n0xCFEE\t0x9879\n0xCFEF\t0x5DF7\n0xCFF0\t0x6A61\n0xCFF1\t0x50CF\n0xCFF2\t0x5411\n0xCFF3\t0x8C61\n0xCFF4\t0x8427\n0xCFF5\t0x785D\n0xCFF6\t0x9704\n0xCFF7\t0x524A\n0xCFF8\t0x54EE\n0xCFF9\t0x56A3\n0xCFFA\t0x9500\n0xCFFB\t0x6D88\n0xCFFC\t0x5BB5\n0xCFFD\t0x6DC6\n0xCFFE\t0x6653\n0xD040\t0x8824\n0xD041\t0x8825\n0xD042\t0x8826\n0xD043\t0x8827\n0xD044\t0x8828\n0xD045\t0x8829\n0xD046\t0x882A\n0xD047\t0x882B\n0xD048\t0x882C\n0xD049\t0x882D\n0xD04A\t0x882E\n0xD04B\t0x882F\n0xD04C\t0x8830\n0xD04D\t0x8831\n0xD04E\t0x8833\n0xD04F\t0x8834\n0xD050\t0x8835\n0xD051\t0x8836\n0xD052\t0x8837\n0xD053\t0x8838\n0xD054\t0x883A\n0xD055\t0x883B\n0xD056\t0x883D\n0xD057\t0x883E\n0xD058\t0x883F\n0xD059\t0x8841\n0xD05A\t0x8842\n0xD05B\t0x8843\n0xD05C\t0x8846\n0xD05D\t0x8847\n0xD05E\t0x8848\n0xD05F\t0x8849\n0xD060\t0x884A\n0xD061\t0x884B\n0xD062\t0x884E\n0xD063\t0x884F\n0xD064\t0x8850\n0xD065\t0x8851\n0xD066\t0x8852\n0xD067\t0x8853\n0xD068\t0x8855\n0xD069\t0x8856\n0xD06A\t0x8858\n0xD06B\t0x885A\n0xD06C\t0x885B\n0xD06D\t0x885C\n0xD06E\t0x885D\n0xD06F\t0x885E\n0xD070\t0x885F\n0xD071\t0x8860\n0xD072\t0x8866\n0xD073\t0x8867\n0xD074\t0x886A\n0xD075\t0x886D\n0xD076\t0x886F\n0xD077\t0x8871\n0xD078\t0x8873\n0xD079\t0x8874\n0xD07A\t0x8875\n0xD07B\t0x8876\n0xD07C\t0x8878\n0xD07D\t0x8879\n0xD07E\t0x887A\n0xD080\t0x887B\n0xD081\t0x887C\n0xD082\t0x8880\n0xD083\t0x8883\n0xD084\t0x8886\n0xD085\t0x8887\n0xD086\t0x8889\n0xD087\t0x888A\n0xD088\t0x888C\n0xD089\t0x888E\n0xD08A\t0x888F\n0xD08B\t0x8890\n0xD08C\t0x8891\n0xD08D\t0x8893\n0xD08E\t0x8894\n0xD08F\t0x8895\n0xD090\t0x8897\n0xD091\t0x8898\n0xD092\t0x8899\n0xD093\t0x889A\n0xD094\t0x889B\n0xD095\t0x889D\n0xD096\t0x889E\n0xD097\t0x889F\n0xD098\t0x88A0\n0xD099\t0x88A1\n0xD09A\t0x88A3\n0xD09B\t0x88A5\n0xD09C\t0x88A6\n0xD09D\t0x88A7\n0xD09E\t0x88A8\n0xD09F\t0x88A9\n0xD0A0\t0x88AA\n0xD0A1\t0x5C0F\n0xD0A2\t0x5B5D\n0xD0A3\t0x6821\n0xD0A4\t0x8096\n0xD0A5\t0x5578\n0xD0A6\t0x7B11\n0xD0A7\t0x6548\n0xD0A8\t0x6954\n0xD0A9\t0x4E9B\n0xD0AA\t0x6B47\n0xD0AB\t0x874E\n0xD0AC\t0x978B\n0xD0AD\t0x534F\n0xD0AE\t0x631F\n0xD0AF\t0x643A\n0xD0B0\t0x90AA\n0xD0B1\t0x659C\n0xD0B2\t0x80C1\n0xD0B3\t0x8C10\n0xD0B4\t0x5199\n0xD0B5\t0x68B0\n0xD0B6\t0x5378\n0xD0B7\t0x87F9\n0xD0B8\t0x61C8\n0xD0B9\t0x6CC4\n0xD0BA\t0x6CFB\n0xD0BB\t0x8C22\n0xD0BC\t0x5C51\n0xD0BD\t0x85AA\n0xD0BE\t0x82AF\n0xD0BF\t0x950C\n0xD0C0\t0x6B23\n0xD0C1\t0x8F9B\n0xD0C2\t0x65B0\n0xD0C3\t0x5FFB\n0xD0C4\t0x5FC3\n0xD0C5\t0x4FE1\n0xD0C6\t0x8845\n0xD0C7\t0x661F\n0xD0C8\t0x8165\n0xD0C9\t0x7329\n0xD0CA\t0x60FA\n0xD0CB\t0x5174\n0xD0CC\t0x5211\n0xD0CD\t0x578B\n0xD0CE\t0x5F62\n0xD0CF\t0x90A2\n0xD0D0\t0x884C\n0xD0D1\t0x9192\n0xD0D2\t0x5E78\n0xD0D3\t0x674F\n0xD0D4\t0x6027\n0xD0D5\t0x59D3\n0xD0D6\t0x5144\n0xD0D7\t0x51F6\n0xD0D8\t0x80F8\n0xD0D9\t0x5308\n0xD0DA\t0x6C79\n0xD0DB\t0x96C4\n0xD0DC\t0x718A\n0xD0DD\t0x4F11\n0xD0DE\t0x4FEE\n0xD0DF\t0x7F9E\n0xD0E0\t0x673D\n0xD0E1\t0x55C5\n0xD0E2\t0x9508\n0xD0E3\t0x79C0\n0xD0E4\t0x8896\n0xD0E5\t0x7EE3\n0xD0E6\t0x589F\n0xD0E7\t0x620C\n0xD0E8\t0x9700\n0xD0E9\t0x865A\n0xD0EA\t0x5618\n0xD0EB\t0x987B\n0xD0EC\t0x5F90\n0xD0ED\t0x8BB8\n0xD0EE\t0x84C4\n0xD0EF\t0x9157\n0xD0F0\t0x53D9\n0xD0F1\t0x65ED\n0xD0F2\t0x5E8F\n0xD0F3\t0x755C\n0xD0F4\t0x6064\n0xD0F5\t0x7D6E\n0xD0F6\t0x5A7F\n0xD0F7\t0x7EEA\n0xD0F8\t0x7EED\n0xD0F9\t0x8F69\n0xD0FA\t0x55A7\n0xD0FB\t0x5BA3\n0xD0FC\t0x60AC\n0xD0FD\t0x65CB\n0xD0FE\t0x7384\n0xD140\t0x88AC\n0xD141\t0x88AE\n0xD142\t0x88AF\n0xD143\t0x88B0\n0xD144\t0x88B2\n0xD145\t0x88B3\n0xD146\t0x88B4\n0xD147\t0x88B5\n0xD148\t0x88B6\n0xD149\t0x88B8\n0xD14A\t0x88B9\n0xD14B\t0x88BA\n0xD14C\t0x88BB\n0xD14D\t0x88BD\n0xD14E\t0x88BE\n0xD14F\t0x88BF\n0xD150\t0x88C0\n0xD151\t0x88C3\n0xD152\t0x88C4\n0xD153\t0x88C7\n0xD154\t0x88C8\n0xD155\t0x88CA\n0xD156\t0x88CB\n0xD157\t0x88CC\n0xD158\t0x88CD\n0xD159\t0x88CF\n0xD15A\t0x88D0\n0xD15B\t0x88D1\n0xD15C\t0x88D3\n0xD15D\t0x88D6\n0xD15E\t0x88D7\n0xD15F\t0x88DA\n0xD160\t0x88DB\n0xD161\t0x88DC\n0xD162\t0x88DD\n0xD163\t0x88DE\n0xD164\t0x88E0\n0xD165\t0x88E1\n0xD166\t0x88E6\n0xD167\t0x88E7\n0xD168\t0x88E9\n0xD169\t0x88EA\n0xD16A\t0x88EB\n0xD16B\t0x88EC\n0xD16C\t0x88ED\n0xD16D\t0x88EE\n0xD16E\t0x88EF\n0xD16F\t0x88F2\n0xD170\t0x88F5\n0xD171\t0x88F6\n0xD172\t0x88F7\n0xD173\t0x88FA\n0xD174\t0x88FB\n0xD175\t0x88FD\n0xD176\t0x88FF\n0xD177\t0x8900\n0xD178\t0x8901\n0xD179\t0x8903\n0xD17A\t0x8904\n0xD17B\t0x8905\n0xD17C\t0x8906\n0xD17D\t0x8907\n0xD17E\t0x8908\n0xD180\t0x8909\n0xD181\t0x890B\n0xD182\t0x890C\n0xD183\t0x890D\n0xD184\t0x890E\n0xD185\t0x890F\n0xD186\t0x8911\n0xD187\t0x8914\n0xD188\t0x8915\n0xD189\t0x8916\n0xD18A\t0x8917\n0xD18B\t0x8918\n0xD18C\t0x891C\n0xD18D\t0x891D\n0xD18E\t0x891E\n0xD18F\t0x891F\n0xD190\t0x8920\n0xD191\t0x8922\n0xD192\t0x8923\n0xD193\t0x8924\n0xD194\t0x8926\n0xD195\t0x8927\n0xD196\t0x8928\n0xD197\t0x8929\n0xD198\t0x892C\n0xD199\t0x892D\n0xD19A\t0x892E\n0xD19B\t0x892F\n0xD19C\t0x8931\n0xD19D\t0x8932\n0xD19E\t0x8933\n0xD19F\t0x8935\n0xD1A0\t0x8937\n0xD1A1\t0x9009\n0xD1A2\t0x7663\n0xD1A3\t0x7729\n0xD1A4\t0x7EDA\n0xD1A5\t0x9774\n0xD1A6\t0x859B\n0xD1A7\t0x5B66\n0xD1A8\t0x7A74\n0xD1A9\t0x96EA\n0xD1AA\t0x8840\n0xD1AB\t0x52CB\n0xD1AC\t0x718F\n0xD1AD\t0x5FAA\n0xD1AE\t0x65EC\n0xD1AF\t0x8BE2\n0xD1B0\t0x5BFB\n0xD1B1\t0x9A6F\n0xD1B2\t0x5DE1\n0xD1B3\t0x6B89\n0xD1B4\t0x6C5B\n0xD1B5\t0x8BAD\n0xD1B6\t0x8BAF\n0xD1B7\t0x900A\n0xD1B8\t0x8FC5\n0xD1B9\t0x538B\n0xD1BA\t0x62BC\n0xD1BB\t0x9E26\n0xD1BC\t0x9E2D\n0xD1BD\t0x5440\n0xD1BE\t0x4E2B\n0xD1BF\t0x82BD\n0xD1C0\t0x7259\n0xD1C1\t0x869C\n0xD1C2\t0x5D16\n0xD1C3\t0x8859\n0xD1C4\t0x6DAF\n0xD1C5\t0x96C5\n0xD1C6\t0x54D1\n0xD1C7\t0x4E9A\n0xD1C8\t0x8BB6\n0xD1C9\t0x7109\n0xD1CA\t0x54BD\n0xD1CB\t0x9609\n0xD1CC\t0x70DF\n0xD1CD\t0x6DF9\n0xD1CE\t0x76D0\n0xD1CF\t0x4E25\n0xD1D0\t0x7814\n0xD1D1\t0x8712\n0xD1D2\t0x5CA9\n0xD1D3\t0x5EF6\n0xD1D4\t0x8A00\n0xD1D5\t0x989C\n0xD1D6\t0x960E\n0xD1D7\t0x708E\n0xD1D8\t0x6CBF\n0xD1D9\t0x5944\n0xD1DA\t0x63A9\n0xD1DB\t0x773C\n0xD1DC\t0x884D\n0xD1DD\t0x6F14\n0xD1DE\t0x8273\n0xD1DF\t0x5830\n0xD1E0\t0x71D5\n0xD1E1\t0x538C\n0xD1E2\t0x781A\n0xD1E3\t0x96C1\n0xD1E4\t0x5501\n0xD1E5\t0x5F66\n0xD1E6\t0x7130\n0xD1E7\t0x5BB4\n0xD1E8\t0x8C1A\n0xD1E9\t0x9A8C\n0xD1EA\t0x6B83\n0xD1EB\t0x592E\n0xD1EC\t0x9E2F\n0xD1ED\t0x79E7\n0xD1EE\t0x6768\n0xD1EF\t0x626C\n0xD1F0\t0x4F6F\n0xD1F1\t0x75A1\n0xD1F2\t0x7F8A\n0xD1F3\t0x6D0B\n0xD1F4\t0x9633\n0xD1F5\t0x6C27\n0xD1F6\t0x4EF0\n0xD1F7\t0x75D2\n0xD1F8\t0x517B\n0xD1F9\t0x6837\n0xD1FA\t0x6F3E\n0xD1FB\t0x9080\n0xD1FC\t0x8170\n0xD1FD\t0x5996\n0xD1FE\t0x7476\n0xD240\t0x8938\n0xD241\t0x8939\n0xD242\t0x893A\n0xD243\t0x893B\n0xD244\t0x893C\n0xD245\t0x893D\n0xD246\t0x893E\n0xD247\t0x893F\n0xD248\t0x8940\n0xD249\t0x8942\n0xD24A\t0x8943\n0xD24B\t0x8945\n0xD24C\t0x8946\n0xD24D\t0x8947\n0xD24E\t0x8948\n0xD24F\t0x8949\n0xD250\t0x894A\n0xD251\t0x894B\n0xD252\t0x894C\n0xD253\t0x894D\n0xD254\t0x894E\n0xD255\t0x894F\n0xD256\t0x8950\n0xD257\t0x8951\n0xD258\t0x8952\n0xD259\t0x8953\n0xD25A\t0x8954\n0xD25B\t0x8955\n0xD25C\t0x8956\n0xD25D\t0x8957\n0xD25E\t0x8958\n0xD25F\t0x8959\n0xD260\t0x895A\n0xD261\t0x895B\n0xD262\t0x895C\n0xD263\t0x895D\n0xD264\t0x8960\n0xD265\t0x8961\n0xD266\t0x8962\n0xD267\t0x8963\n0xD268\t0x8964\n0xD269\t0x8965\n0xD26A\t0x8967\n0xD26B\t0x8968\n0xD26C\t0x8969\n0xD26D\t0x896A\n0xD26E\t0x896B\n0xD26F\t0x896C\n0xD270\t0x896D\n0xD271\t0x896E\n0xD272\t0x896F\n0xD273\t0x8970\n0xD274\t0x8971\n0xD275\t0x8972\n0xD276\t0x8973\n0xD277\t0x8974\n0xD278\t0x8975\n0xD279\t0x8976\n0xD27A\t0x8977\n0xD27B\t0x8978\n0xD27C\t0x8979\n0xD27D\t0x897A\n0xD27E\t0x897C\n0xD280\t0x897D\n0xD281\t0x897E\n0xD282\t0x8980\n0xD283\t0x8982\n0xD284\t0x8984\n0xD285\t0x8985\n0xD286\t0x8987\n0xD287\t0x8988\n0xD288\t0x8989\n0xD289\t0x898A\n0xD28A\t0x898B\n0xD28B\t0x898C\n0xD28C\t0x898D\n0xD28D\t0x898E\n0xD28E\t0x898F\n0xD28F\t0x8990\n0xD290\t0x8991\n0xD291\t0x8992\n0xD292\t0x8993\n0xD293\t0x8994\n0xD294\t0x8995\n0xD295\t0x8996\n0xD296\t0x8997\n0xD297\t0x8998\n0xD298\t0x8999\n0xD299\t0x899A\n0xD29A\t0x899B\n0xD29B\t0x899C\n0xD29C\t0x899D\n0xD29D\t0x899E\n0xD29E\t0x899F\n0xD29F\t0x89A0\n0xD2A0\t0x89A1\n0xD2A1\t0x6447\n0xD2A2\t0x5C27\n0xD2A3\t0x9065\n0xD2A4\t0x7A91\n0xD2A5\t0x8C23\n0xD2A6\t0x59DA\n0xD2A7\t0x54AC\n0xD2A8\t0x8200\n0xD2A9\t0x836F\n0xD2AA\t0x8981\n0xD2AB\t0x8000\n0xD2AC\t0x6930\n0xD2AD\t0x564E\n0xD2AE\t0x8036\n0xD2AF\t0x7237\n0xD2B0\t0x91CE\n0xD2B1\t0x51B6\n0xD2B2\t0x4E5F\n0xD2B3\t0x9875\n0xD2B4\t0x6396\n0xD2B5\t0x4E1A\n0xD2B6\t0x53F6\n0xD2B7\t0x66F3\n0xD2B8\t0x814B\n0xD2B9\t0x591C\n0xD2BA\t0x6DB2\n0xD2BB\t0x4E00\n0xD2BC\t0x58F9\n0xD2BD\t0x533B\n0xD2BE\t0x63D6\n0xD2BF\t0x94F1\n0xD2C0\t0x4F9D\n0xD2C1\t0x4F0A\n0xD2C2\t0x8863\n0xD2C3\t0x9890\n0xD2C4\t0x5937\n0xD2C5\t0x9057\n0xD2C6\t0x79FB\n0xD2C7\t0x4EEA\n0xD2C8\t0x80F0\n0xD2C9\t0x7591\n0xD2CA\t0x6C82\n0xD2CB\t0x5B9C\n0xD2CC\t0x59E8\n0xD2CD\t0x5F5D\n0xD2CE\t0x6905\n0xD2CF\t0x8681\n0xD2D0\t0x501A\n0xD2D1\t0x5DF2\n0xD2D2\t0x4E59\n0xD2D3\t0x77E3\n0xD2D4\t0x4EE5\n0xD2D5\t0x827A\n0xD2D6\t0x6291\n0xD2D7\t0x6613\n0xD2D8\t0x9091\n0xD2D9\t0x5C79\n0xD2DA\t0x4EBF\n0xD2DB\t0x5F79\n0xD2DC\t0x81C6\n0xD2DD\t0x9038\n0xD2DE\t0x8084\n0xD2DF\t0x75AB\n0xD2E0\t0x4EA6\n0xD2E1\t0x88D4\n0xD2E2\t0x610F\n0xD2E3\t0x6BC5\n0xD2E4\t0x5FC6\n0xD2E5\t0x4E49\n0xD2E6\t0x76CA\n0xD2E7\t0x6EA2\n0xD2E8\t0x8BE3\n0xD2E9\t0x8BAE\n0xD2EA\t0x8C0A\n0xD2EB\t0x8BD1\n0xD2EC\t0x5F02\n0xD2ED\t0x7FFC\n0xD2EE\t0x7FCC\n0xD2EF\t0x7ECE\n0xD2F0\t0x8335\n0xD2F1\t0x836B\n0xD2F2\t0x56E0\n0xD2F3\t0x6BB7\n0xD2F4\t0x97F3\n0xD2F5\t0x9634\n0xD2F6\t0x59FB\n0xD2F7\t0x541F\n0xD2F8\t0x94F6\n0xD2F9\t0x6DEB\n0xD2FA\t0x5BC5\n0xD2FB\t0x996E\n0xD2FC\t0x5C39\n0xD2FD\t0x5F15\n0xD2FE\t0x9690\n0xD340\t0x89A2\n0xD341\t0x89A3\n0xD342\t0x89A4\n0xD343\t0x89A5\n0xD344\t0x89A6\n0xD345\t0x89A7\n0xD346\t0x89A8\n0xD347\t0x89A9\n0xD348\t0x89AA\n0xD349\t0x89AB\n0xD34A\t0x89AC\n0xD34B\t0x89AD\n0xD34C\t0x89AE\n0xD34D\t0x89AF\n0xD34E\t0x89B0\n0xD34F\t0x89B1\n0xD350\t0x89B2\n0xD351\t0x89B3\n0xD352\t0x89B4\n0xD353\t0x89B5\n0xD354\t0x89B6\n0xD355\t0x89B7\n0xD356\t0x89B8\n0xD357\t0x89B9\n0xD358\t0x89BA\n0xD359\t0x89BB\n0xD35A\t0x89BC\n0xD35B\t0x89BD\n0xD35C\t0x89BE\n0xD35D\t0x89BF\n0xD35E\t0x89C0\n0xD35F\t0x89C3\n0xD360\t0x89CD\n0xD361\t0x89D3\n0xD362\t0x89D4\n0xD363\t0x89D5\n0xD364\t0x89D7\n0xD365\t0x89D8\n0xD366\t0x89D9\n0xD367\t0x89DB\n0xD368\t0x89DD\n0xD369\t0x89DF\n0xD36A\t0x89E0\n0xD36B\t0x89E1\n0xD36C\t0x89E2\n0xD36D\t0x89E4\n0xD36E\t0x89E7\n0xD36F\t0x89E8\n0xD370\t0x89E9\n0xD371\t0x89EA\n0xD372\t0x89EC\n0xD373\t0x89ED\n0xD374\t0x89EE\n0xD375\t0x89F0\n0xD376\t0x89F1\n0xD377\t0x89F2\n0xD378\t0x89F4\n0xD379\t0x89F5\n0xD37A\t0x89F6\n0xD37B\t0x89F7\n0xD37C\t0x89F8\n0xD37D\t0x89F9\n0xD37E\t0x89FA\n0xD380\t0x89FB\n0xD381\t0x89FC\n0xD382\t0x89FD\n0xD383\t0x89FE\n0xD384\t0x89FF\n0xD385\t0x8A01\n0xD386\t0x8A02\n0xD387\t0x8A03\n0xD388\t0x8A04\n0xD389\t0x8A05\n0xD38A\t0x8A06\n0xD38B\t0x8A08\n0xD38C\t0x8A09\n0xD38D\t0x8A0A\n0xD38E\t0x8A0B\n0xD38F\t0x8A0C\n0xD390\t0x8A0D\n0xD391\t0x8A0E\n0xD392\t0x8A0F\n0xD393\t0x8A10\n0xD394\t0x8A11\n0xD395\t0x8A12\n0xD396\t0x8A13\n0xD397\t0x8A14\n0xD398\t0x8A15\n0xD399\t0x8A16\n0xD39A\t0x8A17\n0xD39B\t0x8A18\n0xD39C\t0x8A19\n0xD39D\t0x8A1A\n0xD39E\t0x8A1B\n0xD39F\t0x8A1C\n0xD3A0\t0x8A1D\n0xD3A1\t0x5370\n0xD3A2\t0x82F1\n0xD3A3\t0x6A31\n0xD3A4\t0x5A74\n0xD3A5\t0x9E70\n0xD3A6\t0x5E94\n0xD3A7\t0x7F28\n0xD3A8\t0x83B9\n0xD3A9\t0x8424\n0xD3AA\t0x8425\n0xD3AB\t0x8367\n0xD3AC\t0x8747\n0xD3AD\t0x8FCE\n0xD3AE\t0x8D62\n0xD3AF\t0x76C8\n0xD3B0\t0x5F71\n0xD3B1\t0x9896\n0xD3B2\t0x786C\n0xD3B3\t0x6620\n0xD3B4\t0x54DF\n0xD3B5\t0x62E5\n0xD3B6\t0x4F63\n0xD3B7\t0x81C3\n0xD3B8\t0x75C8\n0xD3B9\t0x5EB8\n0xD3BA\t0x96CD\n0xD3BB\t0x8E0A\n0xD3BC\t0x86F9\n0xD3BD\t0x548F\n0xD3BE\t0x6CF3\n0xD3BF\t0x6D8C\n0xD3C0\t0x6C38\n0xD3C1\t0x607F\n0xD3C2\t0x52C7\n0xD3C3\t0x7528\n0xD3C4\t0x5E7D\n0xD3C5\t0x4F18\n0xD3C6\t0x60A0\n0xD3C7\t0x5FE7\n0xD3C8\t0x5C24\n0xD3C9\t0x7531\n0xD3CA\t0x90AE\n0xD3CB\t0x94C0\n0xD3CC\t0x72B9\n0xD3CD\t0x6CB9\n0xD3CE\t0x6E38\n0xD3CF\t0x9149\n0xD3D0\t0x6709\n0xD3D1\t0x53CB\n0xD3D2\t0x53F3\n0xD3D3\t0x4F51\n0xD3D4\t0x91C9\n0xD3D5\t0x8BF1\n0xD3D6\t0x53C8\n0xD3D7\t0x5E7C\n0xD3D8\t0x8FC2\n0xD3D9\t0x6DE4\n0xD3DA\t0x4E8E\n0xD3DB\t0x76C2\n0xD3DC\t0x6986\n0xD3DD\t0x865E\n0xD3DE\t0x611A\n0xD3DF\t0x8206\n0xD3E0\t0x4F59\n0xD3E1\t0x4FDE\n0xD3E2\t0x903E\n0xD3E3\t0x9C7C\n0xD3E4\t0x6109\n0xD3E5\t0x6E1D\n0xD3E6\t0x6E14\n0xD3E7\t0x9685\n0xD3E8\t0x4E88\n0xD3E9\t0x5A31\n0xD3EA\t0x96E8\n0xD3EB\t0x4E0E\n0xD3EC\t0x5C7F\n0xD3ED\t0x79B9\n0xD3EE\t0x5B87\n0xD3EF\t0x8BED\n0xD3F0\t0x7FBD\n0xD3F1\t0x7389\n0xD3F2\t0x57DF\n0xD3F3\t0x828B\n0xD3F4\t0x90C1\n0xD3F5\t0x5401\n0xD3F6\t0x9047\n0xD3F7\t0x55BB\n0xD3F8\t0x5CEA\n0xD3F9\t0x5FA1\n0xD3FA\t0x6108\n0xD3FB\t0x6B32\n0xD3FC\t0x72F1\n0xD3FD\t0x80B2\n0xD3FE\t0x8A89\n0xD440\t0x8A1E\n0xD441\t0x8A1F\n0xD442\t0x8A20\n0xD443\t0x8A21\n0xD444\t0x8A22\n0xD445\t0x8A23\n0xD446\t0x8A24\n0xD447\t0x8A25\n0xD448\t0x8A26\n0xD449\t0x8A27\n0xD44A\t0x8A28\n0xD44B\t0x8A29\n0xD44C\t0x8A2A\n0xD44D\t0x8A2B\n0xD44E\t0x8A2C\n0xD44F\t0x8A2D\n0xD450\t0x8A2E\n0xD451\t0x8A2F\n0xD452\t0x8A30\n0xD453\t0x8A31\n0xD454\t0x8A32\n0xD455\t0x8A33\n0xD456\t0x8A34\n0xD457\t0x8A35\n0xD458\t0x8A36\n0xD459\t0x8A37\n0xD45A\t0x8A38\n0xD45B\t0x8A39\n0xD45C\t0x8A3A\n0xD45D\t0x8A3B\n0xD45E\t0x8A3C\n0xD45F\t0x8A3D\n0xD460\t0x8A3F\n0xD461\t0x8A40\n0xD462\t0x8A41\n0xD463\t0x8A42\n0xD464\t0x8A43\n0xD465\t0x8A44\n0xD466\t0x8A45\n0xD467\t0x8A46\n0xD468\t0x8A47\n0xD469\t0x8A49\n0xD46A\t0x8A4A\n0xD46B\t0x8A4B\n0xD46C\t0x8A4C\n0xD46D\t0x8A4D\n0xD46E\t0x8A4E\n0xD46F\t0x8A4F\n0xD470\t0x8A50\n0xD471\t0x8A51\n0xD472\t0x8A52\n0xD473\t0x8A53\n0xD474\t0x8A54\n0xD475\t0x8A55\n0xD476\t0x8A56\n0xD477\t0x8A57\n0xD478\t0x8A58\n0xD479\t0x8A59\n0xD47A\t0x8A5A\n0xD47B\t0x8A5B\n0xD47C\t0x8A5C\n0xD47D\t0x8A5D\n0xD47E\t0x8A5E\n0xD480\t0x8A5F\n0xD481\t0x8A60\n0xD482\t0x8A61\n0xD483\t0x8A62\n0xD484\t0x8A63\n0xD485\t0x8A64\n0xD486\t0x8A65\n0xD487\t0x8A66\n0xD488\t0x8A67\n0xD489\t0x8A68\n0xD48A\t0x8A69\n0xD48B\t0x8A6A\n0xD48C\t0x8A6B\n0xD48D\t0x8A6C\n0xD48E\t0x8A6D\n0xD48F\t0x8A6E\n0xD490\t0x8A6F\n0xD491\t0x8A70\n0xD492\t0x8A71\n0xD493\t0x8A72\n0xD494\t0x8A73\n0xD495\t0x8A74\n0xD496\t0x8A75\n0xD497\t0x8A76\n0xD498\t0x8A77\n0xD499\t0x8A78\n0xD49A\t0x8A7A\n0xD49B\t0x8A7B\n0xD49C\t0x8A7C\n0xD49D\t0x8A7D\n0xD49E\t0x8A7E\n0xD49F\t0x8A7F\n0xD4A0\t0x8A80\n0xD4A1\t0x6D74\n0xD4A2\t0x5BD3\n0xD4A3\t0x88D5\n0xD4A4\t0x9884\n0xD4A5\t0x8C6B\n0xD4A6\t0x9A6D\n0xD4A7\t0x9E33\n0xD4A8\t0x6E0A\n0xD4A9\t0x51A4\n0xD4AA\t0x5143\n0xD4AB\t0x57A3\n0xD4AC\t0x8881\n0xD4AD\t0x539F\n0xD4AE\t0x63F4\n0xD4AF\t0x8F95\n0xD4B0\t0x56ED\n0xD4B1\t0x5458\n0xD4B2\t0x5706\n0xD4B3\t0x733F\n0xD4B4\t0x6E90\n0xD4B5\t0x7F18\n0xD4B6\t0x8FDC\n0xD4B7\t0x82D1\n0xD4B8\t0x613F\n0xD4B9\t0x6028\n0xD4BA\t0x9662\n0xD4BB\t0x66F0\n0xD4BC\t0x7EA6\n0xD4BD\t0x8D8A\n0xD4BE\t0x8DC3\n0xD4BF\t0x94A5\n0xD4C0\t0x5CB3\n0xD4C1\t0x7CA4\n0xD4C2\t0x6708\n0xD4C3\t0x60A6\n0xD4C4\t0x9605\n0xD4C5\t0x8018\n0xD4C6\t0x4E91\n0xD4C7\t0x90E7\n0xD4C8\t0x5300\n0xD4C9\t0x9668\n0xD4CA\t0x5141\n0xD4CB\t0x8FD0\n0xD4CC\t0x8574\n0xD4CD\t0x915D\n0xD4CE\t0x6655\n0xD4CF\t0x97F5\n0xD4D0\t0x5B55\n0xD4D1\t0x531D\n0xD4D2\t0x7838\n0xD4D3\t0x6742\n0xD4D4\t0x683D\n0xD4D5\t0x54C9\n0xD4D6\t0x707E\n0xD4D7\t0x5BB0\n0xD4D8\t0x8F7D\n0xD4D9\t0x518D\n0xD4DA\t0x5728\n0xD4DB\t0x54B1\n0xD4DC\t0x6512\n0xD4DD\t0x6682\n0xD4DE\t0x8D5E\n0xD4DF\t0x8D43\n0xD4E0\t0x810F\n0xD4E1\t0x846C\n0xD4E2\t0x906D\n0xD4E3\t0x7CDF\n0xD4E4\t0x51FF\n0xD4E5\t0x85FB\n0xD4E6\t0x67A3\n0xD4E7\t0x65E9\n0xD4E8\t0x6FA1\n0xD4E9\t0x86A4\n0xD4EA\t0x8E81\n0xD4EB\t0x566A\n0xD4EC\t0x9020\n0xD4ED\t0x7682\n0xD4EE\t0x7076\n0xD4EF\t0x71E5\n0xD4F0\t0x8D23\n0xD4F1\t0x62E9\n0xD4F2\t0x5219\n0xD4F3\t0x6CFD\n0xD4F4\t0x8D3C\n0xD4F5\t0x600E\n0xD4F6\t0x589E\n0xD4F7\t0x618E\n0xD4F8\t0x66FE\n0xD4F9\t0x8D60\n0xD4FA\t0x624E\n0xD4FB\t0x55B3\n0xD4FC\t0x6E23\n0xD4FD\t0x672D\n0xD4FE\t0x8F67\n0xD540\t0x8A81\n0xD541\t0x8A82\n0xD542\t0x8A83\n0xD543\t0x8A84\n0xD544\t0x8A85\n0xD545\t0x8A86\n0xD546\t0x8A87\n0xD547\t0x8A88\n0xD548\t0x8A8B\n0xD549\t0x8A8C\n0xD54A\t0x8A8D\n0xD54B\t0x8A8E\n0xD54C\t0x8A8F\n0xD54D\t0x8A90\n0xD54E\t0x8A91\n0xD54F\t0x8A92\n0xD550\t0x8A94\n0xD551\t0x8A95\n0xD552\t0x8A96\n0xD553\t0x8A97\n0xD554\t0x8A98\n0xD555\t0x8A99\n0xD556\t0x8A9A\n0xD557\t0x8A9B\n0xD558\t0x8A9C\n0xD559\t0x8A9D\n0xD55A\t0x8A9E\n0xD55B\t0x8A9F\n0xD55C\t0x8AA0\n0xD55D\t0x8AA1\n0xD55E\t0x8AA2\n0xD55F\t0x8AA3\n0xD560\t0x8AA4\n0xD561\t0x8AA5\n0xD562\t0x8AA6\n0xD563\t0x8AA7\n0xD564\t0x8AA8\n0xD565\t0x8AA9\n0xD566\t0x8AAA\n0xD567\t0x8AAB\n0xD568\t0x8AAC\n0xD569\t0x8AAD\n0xD56A\t0x8AAE\n0xD56B\t0x8AAF\n0xD56C\t0x8AB0\n0xD56D\t0x8AB1\n0xD56E\t0x8AB2\n0xD56F\t0x8AB3\n0xD570\t0x8AB4\n0xD571\t0x8AB5\n0xD572\t0x8AB6\n0xD573\t0x8AB7\n0xD574\t0x8AB8\n0xD575\t0x8AB9\n0xD576\t0x8ABA\n0xD577\t0x8ABB\n0xD578\t0x8ABC\n0xD579\t0x8ABD\n0xD57A\t0x8ABE\n0xD57B\t0x8ABF\n0xD57C\t0x8AC0\n0xD57D\t0x8AC1\n0xD57E\t0x8AC2\n0xD580\t0x8AC3\n0xD581\t0x8AC4\n0xD582\t0x8AC5\n0xD583\t0x8AC6\n0xD584\t0x8AC7\n0xD585\t0x8AC8\n0xD586\t0x8AC9\n0xD587\t0x8ACA\n0xD588\t0x8ACB\n0xD589\t0x8ACC\n0xD58A\t0x8ACD\n0xD58B\t0x8ACE\n0xD58C\t0x8ACF\n0xD58D\t0x8AD0\n0xD58E\t0x8AD1\n0xD58F\t0x8AD2\n0xD590\t0x8AD3\n0xD591\t0x8AD4\n0xD592\t0x8AD5\n0xD593\t0x8AD6\n0xD594\t0x8AD7\n0xD595\t0x8AD8\n0xD596\t0x8AD9\n0xD597\t0x8ADA\n0xD598\t0x8ADB\n0xD599\t0x8ADC\n0xD59A\t0x8ADD\n0xD59B\t0x8ADE\n0xD59C\t0x8ADF\n0xD59D\t0x8AE0\n0xD59E\t0x8AE1\n0xD59F\t0x8AE2\n0xD5A0\t0x8AE3\n0xD5A1\t0x94E1\n0xD5A2\t0x95F8\n0xD5A3\t0x7728\n0xD5A4\t0x6805\n0xD5A5\t0x69A8\n0xD5A6\t0x548B\n0xD5A7\t0x4E4D\n0xD5A8\t0x70B8\n0xD5A9\t0x8BC8\n0xD5AA\t0x6458\n0xD5AB\t0x658B\n0xD5AC\t0x5B85\n0xD5AD\t0x7A84\n0xD5AE\t0x503A\n0xD5AF\t0x5BE8\n0xD5B0\t0x77BB\n0xD5B1\t0x6BE1\n0xD5B2\t0x8A79\n0xD5B3\t0x7C98\n0xD5B4\t0x6CBE\n0xD5B5\t0x76CF\n0xD5B6\t0x65A9\n0xD5B7\t0x8F97\n0xD5B8\t0x5D2D\n0xD5B9\t0x5C55\n0xD5BA\t0x8638\n0xD5BB\t0x6808\n0xD5BC\t0x5360\n0xD5BD\t0x6218\n0xD5BE\t0x7AD9\n0xD5BF\t0x6E5B\n0xD5C0\t0x7EFD\n0xD5C1\t0x6A1F\n0xD5C2\t0x7AE0\n0xD5C3\t0x5F70\n0xD5C4\t0x6F33\n0xD5C5\t0x5F20\n0xD5C6\t0x638C\n0xD5C7\t0x6DA8\n0xD5C8\t0x6756\n0xD5C9\t0x4E08\n0xD5CA\t0x5E10\n0xD5CB\t0x8D26\n0xD5CC\t0x4ED7\n0xD5CD\t0x80C0\n0xD5CE\t0x7634\n0xD5CF\t0x969C\n0xD5D0\t0x62DB\n0xD5D1\t0x662D\n0xD5D2\t0x627E\n0xD5D3\t0x6CBC\n0xD5D4\t0x8D75\n0xD5D5\t0x7167\n0xD5D6\t0x7F69\n0xD5D7\t0x5146\n0xD5D8\t0x8087\n0xD5D9\t0x53EC\n0xD5DA\t0x906E\n0xD5DB\t0x6298\n0xD5DC\t0x54F2\n0xD5DD\t0x86F0\n0xD5DE\t0x8F99\n0xD5DF\t0x8005\n0xD5E0\t0x9517\n0xD5E1\t0x8517\n0xD5E2\t0x8FD9\n0xD5E3\t0x6D59\n0xD5E4\t0x73CD\n0xD5E5\t0x659F\n0xD5E6\t0x771F\n0xD5E7\t0x7504\n0xD5E8\t0x7827\n0xD5E9\t0x81FB\n0xD5EA\t0x8D1E\n0xD5EB\t0x9488\n0xD5EC\t0x4FA6\n0xD5ED\t0x6795\n0xD5EE\t0x75B9\n0xD5EF\t0x8BCA\n0xD5F0\t0x9707\n0xD5F1\t0x632F\n0xD5F2\t0x9547\n0xD5F3\t0x9635\n0xD5F4\t0x84B8\n0xD5F5\t0x6323\n0xD5F6\t0x7741\n0xD5F7\t0x5F81\n0xD5F8\t0x72F0\n0xD5F9\t0x4E89\n0xD5FA\t0x6014\n0xD5FB\t0x6574\n0xD5FC\t0x62EF\n0xD5FD\t0x6B63\n0xD5FE\t0x653F\n0xD640\t0x8AE4\n0xD641\t0x8AE5\n0xD642\t0x8AE6\n0xD643\t0x8AE7\n0xD644\t0x8AE8\n0xD645\t0x8AE9\n0xD646\t0x8AEA\n0xD647\t0x8AEB\n0xD648\t0x8AEC\n0xD649\t0x8AED\n0xD64A\t0x8AEE\n0xD64B\t0x8AEF\n0xD64C\t0x8AF0\n0xD64D\t0x8AF1\n0xD64E\t0x8AF2\n0xD64F\t0x8AF3\n0xD650\t0x8AF4\n0xD651\t0x8AF5\n0xD652\t0x8AF6\n0xD653\t0x8AF7\n0xD654\t0x8AF8\n0xD655\t0x8AF9\n0xD656\t0x8AFA\n0xD657\t0x8AFB\n0xD658\t0x8AFC\n0xD659\t0x8AFD\n0xD65A\t0x8AFE\n0xD65B\t0x8AFF\n0xD65C\t0x8B00\n0xD65D\t0x8B01\n0xD65E\t0x8B02\n0xD65F\t0x8B03\n0xD660\t0x8B04\n0xD661\t0x8B05\n0xD662\t0x8B06\n0xD663\t0x8B08\n0xD664\t0x8B09\n0xD665\t0x8B0A\n0xD666\t0x8B0B\n0xD667\t0x8B0C\n0xD668\t0x8B0D\n0xD669\t0x8B0E\n0xD66A\t0x8B0F\n0xD66B\t0x8B10\n0xD66C\t0x8B11\n0xD66D\t0x8B12\n0xD66E\t0x8B13\n0xD66F\t0x8B14\n0xD670\t0x8B15\n0xD671\t0x8B16\n0xD672\t0x8B17\n0xD673\t0x8B18\n0xD674\t0x8B19\n0xD675\t0x8B1A\n0xD676\t0x8B1B\n0xD677\t0x8B1C\n0xD678\t0x8B1D\n0xD679\t0x8B1E\n0xD67A\t0x8B1F\n0xD67B\t0x8B20\n0xD67C\t0x8B21\n0xD67D\t0x8B22\n0xD67E\t0x8B23\n0xD680\t0x8B24\n0xD681\t0x8B25\n0xD682\t0x8B27\n0xD683\t0x8B28\n0xD684\t0x8B29\n0xD685\t0x8B2A\n0xD686\t0x8B2B\n0xD687\t0x8B2C\n0xD688\t0x8B2D\n0xD689\t0x8B2E\n0xD68A\t0x8B2F\n0xD68B\t0x8B30\n0xD68C\t0x8B31\n0xD68D\t0x8B32\n0xD68E\t0x8B33\n0xD68F\t0x8B34\n0xD690\t0x8B35\n0xD691\t0x8B36\n0xD692\t0x8B37\n0xD693\t0x8B38\n0xD694\t0x8B39\n0xD695\t0x8B3A\n0xD696\t0x8B3B\n0xD697\t0x8B3C\n0xD698\t0x8B3D\n0xD699\t0x8B3E\n0xD69A\t0x8B3F\n0xD69B\t0x8B40\n0xD69C\t0x8B41\n0xD69D\t0x8B42\n0xD69E\t0x8B43\n0xD69F\t0x8B44\n0xD6A0\t0x8B45\n0xD6A1\t0x5E27\n0xD6A2\t0x75C7\n0xD6A3\t0x90D1\n0xD6A4\t0x8BC1\n0xD6A5\t0x829D\n0xD6A6\t0x679D\n0xD6A7\t0x652F\n0xD6A8\t0x5431\n0xD6A9\t0x8718\n0xD6AA\t0x77E5\n0xD6AB\t0x80A2\n0xD6AC\t0x8102\n0xD6AD\t0x6C41\n0xD6AE\t0x4E4B\n0xD6AF\t0x7EC7\n0xD6B0\t0x804C\n0xD6B1\t0x76F4\n0xD6B2\t0x690D\n0xD6B3\t0x6B96\n0xD6B4\t0x6267\n0xD6B5\t0x503C\n0xD6B6\t0x4F84\n0xD6B7\t0x5740\n0xD6B8\t0x6307\n0xD6B9\t0x6B62\n0xD6BA\t0x8DBE\n0xD6BB\t0x53EA\n0xD6BC\t0x65E8\n0xD6BD\t0x7EB8\n0xD6BE\t0x5FD7\n0xD6BF\t0x631A\n0xD6C0\t0x63B7\n0xD6C1\t0x81F3\n0xD6C2\t0x81F4\n0xD6C3\t0x7F6E\n0xD6C4\t0x5E1C\n0xD6C5\t0x5CD9\n0xD6C6\t0x5236\n0xD6C7\t0x667A\n0xD6C8\t0x79E9\n0xD6C9\t0x7A1A\n0xD6CA\t0x8D28\n0xD6CB\t0x7099\n0xD6CC\t0x75D4\n0xD6CD\t0x6EDE\n0xD6CE\t0x6CBB\n0xD6CF\t0x7A92\n0xD6D0\t0x4E2D\n0xD6D1\t0x76C5\n0xD6D2\t0x5FE0\n0xD6D3\t0x949F\n0xD6D4\t0x8877\n0xD6D5\t0x7EC8\n0xD6D6\t0x79CD\n0xD6D7\t0x80BF\n0xD6D8\t0x91CD\n0xD6D9\t0x4EF2\n0xD6DA\t0x4F17\n0xD6DB\t0x821F\n0xD6DC\t0x5468\n0xD6DD\t0x5DDE\n0xD6DE\t0x6D32\n0xD6DF\t0x8BCC\n0xD6E0\t0x7CA5\n0xD6E1\t0x8F74\n0xD6E2\t0x8098\n0xD6E3\t0x5E1A\n0xD6E4\t0x5492\n0xD6E5\t0x76B1\n0xD6E6\t0x5B99\n0xD6E7\t0x663C\n0xD6E8\t0x9AA4\n0xD6E9\t0x73E0\n0xD6EA\t0x682A\n0xD6EB\t0x86DB\n0xD6EC\t0x6731\n0xD6ED\t0x732A\n0xD6EE\t0x8BF8\n0xD6EF\t0x8BDB\n0xD6F0\t0x9010\n0xD6F1\t0x7AF9\n0xD6F2\t0x70DB\n0xD6F3\t0x716E\n0xD6F4\t0x62C4\n0xD6F5\t0x77A9\n0xD6F6\t0x5631\n0xD6F7\t0x4E3B\n0xD6F8\t0x8457\n0xD6F9\t0x67F1\n0xD6FA\t0x52A9\n0xD6FB\t0x86C0\n0xD6FC\t0x8D2E\n0xD6FD\t0x94F8\n0xD6FE\t0x7B51\n0xD740\t0x8B46\n0xD741\t0x8B47\n0xD742\t0x8B48\n0xD743\t0x8B49\n0xD744\t0x8B4A\n0xD745\t0x8B4B\n0xD746\t0x8B4C\n0xD747\t0x8B4D\n0xD748\t0x8B4E\n0xD749\t0x8B4F\n0xD74A\t0x8B50\n0xD74B\t0x8B51\n0xD74C\t0x8B52\n0xD74D\t0x8B53\n0xD74E\t0x8B54\n0xD74F\t0x8B55\n0xD750\t0x8B56\n0xD751\t0x8B57\n0xD752\t0x8B58\n0xD753\t0x8B59\n0xD754\t0x8B5A\n0xD755\t0x8B5B\n0xD756\t0x8B5C\n0xD757\t0x8B5D\n0xD758\t0x8B5E\n0xD759\t0x8B5F\n0xD75A\t0x8B60\n0xD75B\t0x8B61\n0xD75C\t0x8B62\n0xD75D\t0x8B63\n0xD75E\t0x8B64\n0xD75F\t0x8B65\n0xD760\t0x8B67\n0xD761\t0x8B68\n0xD762\t0x8B69\n0xD763\t0x8B6A\n0xD764\t0x8B6B\n0xD765\t0x8B6D\n0xD766\t0x8B6E\n0xD767\t0x8B6F\n0xD768\t0x8B70\n0xD769\t0x8B71\n0xD76A\t0x8B72\n0xD76B\t0x8B73\n0xD76C\t0x8B74\n0xD76D\t0x8B75\n0xD76E\t0x8B76\n0xD76F\t0x8B77\n0xD770\t0x8B78\n0xD771\t0x8B79\n0xD772\t0x8B7A\n0xD773\t0x8B7B\n0xD774\t0x8B7C\n0xD775\t0x8B7D\n0xD776\t0x8B7E\n0xD777\t0x8B7F\n0xD778\t0x8B80\n0xD779\t0x8B81\n0xD77A\t0x8B82\n0xD77B\t0x8B83\n0xD77C\t0x8B84\n0xD77D\t0x8B85\n0xD77E\t0x8B86\n0xD780\t0x8B87\n0xD781\t0x8B88\n0xD782\t0x8B89\n0xD783\t0x8B8A\n0xD784\t0x8B8B\n0xD785\t0x8B8C\n0xD786\t0x8B8D\n0xD787\t0x8B8E\n0xD788\t0x8B8F\n0xD789\t0x8B90\n0xD78A\t0x8B91\n0xD78B\t0x8B92\n0xD78C\t0x8B93\n0xD78D\t0x8B94\n0xD78E\t0x8B95\n0xD78F\t0x8B96\n0xD790\t0x8B97\n0xD791\t0x8B98\n0xD792\t0x8B99\n0xD793\t0x8B9A\n0xD794\t0x8B9B\n0xD795\t0x8B9C\n0xD796\t0x8B9D\n0xD797\t0x8B9E\n0xD798\t0x8B9F\n0xD799\t0x8BAC\n0xD79A\t0x8BB1\n0xD79B\t0x8BBB\n0xD79C\t0x8BC7\n0xD79D\t0x8BD0\n0xD79E\t0x8BEA\n0xD79F\t0x8C09\n0xD7A0\t0x8C1E\n0xD7A1\t0x4F4F\n0xD7A2\t0x6CE8\n0xD7A3\t0x795D\n0xD7A4\t0x9A7B\n0xD7A5\t0x6293\n0xD7A6\t0x722A\n0xD7A7\t0x62FD\n0xD7A8\t0x4E13\n0xD7A9\t0x7816\n0xD7AA\t0x8F6C\n0xD7AB\t0x64B0\n0xD7AC\t0x8D5A\n0xD7AD\t0x7BC6\n0xD7AE\t0x6869\n0xD7AF\t0x5E84\n0xD7B0\t0x88C5\n0xD7B1\t0x5986\n0xD7B2\t0x649E\n0xD7B3\t0x58EE\n0xD7B4\t0x72B6\n0xD7B5\t0x690E\n0xD7B6\t0x9525\n0xD7B7\t0x8FFD\n0xD7B8\t0x8D58\n0xD7B9\t0x5760\n0xD7BA\t0x7F00\n0xD7BB\t0x8C06\n0xD7BC\t0x51C6\n0xD7BD\t0x6349\n0xD7BE\t0x62D9\n0xD7BF\t0x5353\n0xD7C0\t0x684C\n0xD7C1\t0x7422\n0xD7C2\t0x8301\n0xD7C3\t0x914C\n0xD7C4\t0x5544\n0xD7C5\t0x7740\n0xD7C6\t0x707C\n0xD7C7\t0x6D4A\n0xD7C8\t0x5179\n0xD7C9\t0x54A8\n0xD7CA\t0x8D44\n0xD7CB\t0x59FF\n0xD7CC\t0x6ECB\n0xD7CD\t0x6DC4\n0xD7CE\t0x5B5C\n0xD7CF\t0x7D2B\n0xD7D0\t0x4ED4\n0xD7D1\t0x7C7D\n0xD7D2\t0x6ED3\n0xD7D3\t0x5B50\n0xD7D4\t0x81EA\n0xD7D5\t0x6E0D\n0xD7D6\t0x5B57\n0xD7D7\t0x9B03\n0xD7D8\t0x68D5\n0xD7D9\t0x8E2A\n0xD7DA\t0x5B97\n0xD7DB\t0x7EFC\n0xD7DC\t0x603B\n0xD7DD\t0x7EB5\n0xD7DE\t0x90B9\n0xD7DF\t0x8D70\n0xD7E0\t0x594F\n0xD7E1\t0x63CD\n0xD7E2\t0x79DF\n0xD7E3\t0x8DB3\n0xD7E4\t0x5352\n0xD7E5\t0x65CF\n0xD7E6\t0x7956\n0xD7E7\t0x8BC5\n0xD7E8\t0x963B\n0xD7E9\t0x7EC4\n0xD7EA\t0x94BB\n0xD7EB\t0x7E82\n0xD7EC\t0x5634\n0xD7ED\t0x9189\n0xD7EE\t0x6700\n0xD7EF\t0x7F6A\n0xD7F0\t0x5C0A\n0xD7F1\t0x9075\n0xD7F2\t0x6628\n0xD7F3\t0x5DE6\n0xD7F4\t0x4F50\n0xD7F5\t0x67DE\n0xD7F6\t0x505A\n0xD7F7\t0x4F5C\n0xD7F8\t0x5750\n0xD7F9\t0x5EA7\n0xD840\t0x8C38\n0xD841\t0x8C39\n0xD842\t0x8C3A\n0xD843\t0x8C3B\n0xD844\t0x8C3C\n0xD845\t0x8C3D\n0xD846\t0x8C3E\n0xD847\t0x8C3F\n0xD848\t0x8C40\n0xD849\t0x8C42\n0xD84A\t0x8C43\n0xD84B\t0x8C44\n0xD84C\t0x8C45\n0xD84D\t0x8C48\n0xD84E\t0x8C4A\n0xD84F\t0x8C4B\n0xD850\t0x8C4D\n0xD851\t0x8C4E\n0xD852\t0x8C4F\n0xD853\t0x8C50\n0xD854\t0x8C51\n0xD855\t0x8C52\n0xD856\t0x8C53\n0xD857\t0x8C54\n0xD858\t0x8C56\n0xD859\t0x8C57\n0xD85A\t0x8C58\n0xD85B\t0x8C59\n0xD85C\t0x8C5B\n0xD85D\t0x8C5C\n0xD85E\t0x8C5D\n0xD85F\t0x8C5E\n0xD860\t0x8C5F\n0xD861\t0x8C60\n0xD862\t0x8C63\n0xD863\t0x8C64\n0xD864\t0x8C65\n0xD865\t0x8C66\n0xD866\t0x8C67\n0xD867\t0x8C68\n0xD868\t0x8C69\n0xD869\t0x8C6C\n0xD86A\t0x8C6D\n0xD86B\t0x8C6E\n0xD86C\t0x8C6F\n0xD86D\t0x8C70\n0xD86E\t0x8C71\n0xD86F\t0x8C72\n0xD870\t0x8C74\n0xD871\t0x8C75\n0xD872\t0x8C76\n0xD873\t0x8C77\n0xD874\t0x8C7B\n0xD875\t0x8C7C\n0xD876\t0x8C7D\n0xD877\t0x8C7E\n0xD878\t0x8C7F\n0xD879\t0x8C80\n0xD87A\t0x8C81\n0xD87B\t0x8C83\n0xD87C\t0x8C84\n0xD87D\t0x8C86\n0xD87E\t0x8C87\n0xD880\t0x8C88\n0xD881\t0x8C8B\n0xD882\t0x8C8D\n0xD883\t0x8C8E\n0xD884\t0x8C8F\n0xD885\t0x8C90\n0xD886\t0x8C91\n0xD887\t0x8C92\n0xD888\t0x8C93\n0xD889\t0x8C95\n0xD88A\t0x8C96\n0xD88B\t0x8C97\n0xD88C\t0x8C99\n0xD88D\t0x8C9A\n0xD88E\t0x8C9B\n0xD88F\t0x8C9C\n0xD890\t0x8C9D\n0xD891\t0x8C9E\n0xD892\t0x8C9F\n0xD893\t0x8CA0\n0xD894\t0x8CA1\n0xD895\t0x8CA2\n0xD896\t0x8CA3\n0xD897\t0x8CA4\n0xD898\t0x8CA5\n0xD899\t0x8CA6\n0xD89A\t0x8CA7\n0xD89B\t0x8CA8\n0xD89C\t0x8CA9\n0xD89D\t0x8CAA\n0xD89E\t0x8CAB\n0xD89F\t0x8CAC\n0xD8A0\t0x8CAD\n0xD8A1\t0x4E8D\n0xD8A2\t0x4E0C\n0xD8A3\t0x5140\n0xD8A4\t0x4E10\n0xD8A5\t0x5EFF\n0xD8A6\t0x5345\n0xD8A7\t0x4E15\n0xD8A8\t0x4E98\n0xD8A9\t0x4E1E\n0xD8AA\t0x9B32\n0xD8AB\t0x5B6C\n0xD8AC\t0x5669\n0xD8AD\t0x4E28\n0xD8AE\t0x79BA\n0xD8AF\t0x4E3F\n0xD8B0\t0x5315\n0xD8B1\t0x4E47\n0xD8B2\t0x592D\n0xD8B3\t0x723B\n0xD8B4\t0x536E\n0xD8B5\t0x6C10\n0xD8B6\t0x56DF\n0xD8B7\t0x80E4\n0xD8B8\t0x9997\n0xD8B9\t0x6BD3\n0xD8BA\t0x777E\n0xD8BB\t0x9F17\n0xD8BC\t0x4E36\n0xD8BD\t0x4E9F\n0xD8BE\t0x9F10\n0xD8BF\t0x4E5C\n0xD8C0\t0x4E69\n0xD8C1\t0x4E93\n0xD8C2\t0x8288\n0xD8C3\t0x5B5B\n0xD8C4\t0x556C\n0xD8C5\t0x560F\n0xD8C6\t0x4EC4\n0xD8C7\t0x538D\n0xD8C8\t0x539D\n0xD8C9\t0x53A3\n0xD8CA\t0x53A5\n0xD8CB\t0x53AE\n0xD8CC\t0x9765\n0xD8CD\t0x8D5D\n0xD8CE\t0x531A\n0xD8CF\t0x53F5\n0xD8D0\t0x5326\n0xD8D1\t0x532E\n0xD8D2\t0x533E\n0xD8D3\t0x8D5C\n0xD8D4\t0x5366\n0xD8D5\t0x5363\n0xD8D6\t0x5202\n0xD8D7\t0x5208\n0xD8D8\t0x520E\n0xD8D9\t0x522D\n0xD8DA\t0x5233\n0xD8DB\t0x523F\n0xD8DC\t0x5240\n0xD8DD\t0x524C\n0xD8DE\t0x525E\n0xD8DF\t0x5261\n0xD8E0\t0x525C\n0xD8E1\t0x84AF\n0xD8E2\t0x527D\n0xD8E3\t0x5282\n0xD8E4\t0x5281\n0xD8E5\t0x5290\n0xD8E6\t0x5293\n0xD8E7\t0x5182\n0xD8E8\t0x7F54\n0xD8E9\t0x4EBB\n0xD8EA\t0x4EC3\n0xD8EB\t0x4EC9\n0xD8EC\t0x4EC2\n0xD8ED\t0x4EE8\n0xD8EE\t0x4EE1\n0xD8EF\t0x4EEB\n0xD8F0\t0x4EDE\n0xD8F1\t0x4F1B\n0xD8F2\t0x4EF3\n0xD8F3\t0x4F22\n0xD8F4\t0x4F64\n0xD8F5\t0x4EF5\n0xD8F6\t0x4F25\n0xD8F7\t0x4F27\n0xD8F8\t0x4F09\n0xD8F9\t0x4F2B\n0xD8FA\t0x4F5E\n0xD8FB\t0x4F67\n0xD8FC\t0x6538\n0xD8FD\t0x4F5A\n0xD8FE\t0x4F5D\n0xD940\t0x8CAE\n0xD941\t0x8CAF\n0xD942\t0x8CB0\n0xD943\t0x8CB1\n0xD944\t0x8CB2\n0xD945\t0x8CB3\n0xD946\t0x8CB4\n0xD947\t0x8CB5\n0xD948\t0x8CB6\n0xD949\t0x8CB7\n0xD94A\t0x8CB8\n0xD94B\t0x8CB9\n0xD94C\t0x8CBA\n0xD94D\t0x8CBB\n0xD94E\t0x8CBC\n0xD94F\t0x8CBD\n0xD950\t0x8CBE\n0xD951\t0x8CBF\n0xD952\t0x8CC0\n0xD953\t0x8CC1\n0xD954\t0x8CC2\n0xD955\t0x8CC3\n0xD956\t0x8CC4\n0xD957\t0x8CC5\n0xD958\t0x8CC6\n0xD959\t0x8CC7\n0xD95A\t0x8CC8\n0xD95B\t0x8CC9\n0xD95C\t0x8CCA\n0xD95D\t0x8CCB\n0xD95E\t0x8CCC\n0xD95F\t0x8CCD\n0xD960\t0x8CCE\n0xD961\t0x8CCF\n0xD962\t0x8CD0\n0xD963\t0x8CD1\n0xD964\t0x8CD2\n0xD965\t0x8CD3\n0xD966\t0x8CD4\n0xD967\t0x8CD5\n0xD968\t0x8CD6\n0xD969\t0x8CD7\n0xD96A\t0x8CD8\n0xD96B\t0x8CD9\n0xD96C\t0x8CDA\n0xD96D\t0x8CDB\n0xD96E\t0x8CDC\n0xD96F\t0x8CDD\n0xD970\t0x8CDE\n0xD971\t0x8CDF\n0xD972\t0x8CE0\n0xD973\t0x8CE1\n0xD974\t0x8CE2\n0xD975\t0x8CE3\n0xD976\t0x8CE4\n0xD977\t0x8CE5\n0xD978\t0x8CE6\n0xD979\t0x8CE7\n0xD97A\t0x8CE8\n0xD97B\t0x8CE9\n0xD97C\t0x8CEA\n0xD97D\t0x8CEB\n0xD97E\t0x8CEC\n0xD980\t0x8CED\n0xD981\t0x8CEE\n0xD982\t0x8CEF\n0xD983\t0x8CF0\n0xD984\t0x8CF1\n0xD985\t0x8CF2\n0xD986\t0x8CF3\n0xD987\t0x8CF4\n0xD988\t0x8CF5\n0xD989\t0x8CF6\n0xD98A\t0x8CF7\n0xD98B\t0x8CF8\n0xD98C\t0x8CF9\n0xD98D\t0x8CFA\n0xD98E\t0x8CFB\n0xD98F\t0x8CFC\n0xD990\t0x8CFD\n0xD991\t0x8CFE\n0xD992\t0x8CFF\n0xD993\t0x8D00\n0xD994\t0x8D01\n0xD995\t0x8D02\n0xD996\t0x8D03\n0xD997\t0x8D04\n0xD998\t0x8D05\n0xD999\t0x8D06\n0xD99A\t0x8D07\n0xD99B\t0x8D08\n0xD99C\t0x8D09\n0xD99D\t0x8D0A\n0xD99E\t0x8D0B\n0xD99F\t0x8D0C\n0xD9A0\t0x8D0D\n0xD9A1\t0x4F5F\n0xD9A2\t0x4F57\n0xD9A3\t0x4F32\n0xD9A4\t0x4F3D\n0xD9A5\t0x4F76\n0xD9A6\t0x4F74\n0xD9A7\t0x4F91\n0xD9A8\t0x4F89\n0xD9A9\t0x4F83\n0xD9AA\t0x4F8F\n0xD9AB\t0x4F7E\n0xD9AC\t0x4F7B\n0xD9AD\t0x4FAA\n0xD9AE\t0x4F7C\n0xD9AF\t0x4FAC\n0xD9B0\t0x4F94\n0xD9B1\t0x4FE6\n0xD9B2\t0x4FE8\n0xD9B3\t0x4FEA\n0xD9B4\t0x4FC5\n0xD9B5\t0x4FDA\n0xD9B6\t0x4FE3\n0xD9B7\t0x4FDC\n0xD9B8\t0x4FD1\n0xD9B9\t0x4FDF\n0xD9BA\t0x4FF8\n0xD9BB\t0x5029\n0xD9BC\t0x504C\n0xD9BD\t0x4FF3\n0xD9BE\t0x502C\n0xD9BF\t0x500F\n0xD9C0\t0x502E\n0xD9C1\t0x502D\n0xD9C2\t0x4FFE\n0xD9C3\t0x501C\n0xD9C4\t0x500C\n0xD9C5\t0x5025\n0xD9C6\t0x5028\n0xD9C7\t0x507E\n0xD9C8\t0x5043\n0xD9C9\t0x5055\n0xD9CA\t0x5048\n0xD9CB\t0x504E\n0xD9CC\t0x506C\n0xD9CD\t0x507B\n0xD9CE\t0x50A5\n0xD9CF\t0x50A7\n0xD9D0\t0x50A9\n0xD9D1\t0x50BA\n0xD9D2\t0x50D6\n0xD9D3\t0x5106\n0xD9D4\t0x50ED\n0xD9D5\t0x50EC\n0xD9D6\t0x50E6\n0xD9D7\t0x50EE\n0xD9D8\t0x5107\n0xD9D9\t0x510B\n0xD9DA\t0x4EDD\n0xD9DB\t0x6C3D\n0xD9DC\t0x4F58\n0xD9DD\t0x4F65\n0xD9DE\t0x4FCE\n0xD9DF\t0x9FA0\n0xD9E0\t0x6C46\n0xD9E1\t0x7C74\n0xD9E2\t0x516E\n0xD9E3\t0x5DFD\n0xD9E4\t0x9EC9\n0xD9E5\t0x9998\n0xD9E6\t0x5181\n0xD9E7\t0x5914\n0xD9E8\t0x52F9\n0xD9E9\t0x530D\n0xD9EA\t0x8A07\n0xD9EB\t0x5310\n0xD9EC\t0x51EB\n0xD9ED\t0x5919\n0xD9EE\t0x5155\n0xD9EF\t0x4EA0\n0xD9F0\t0x5156\n0xD9F1\t0x4EB3\n0xD9F2\t0x886E\n0xD9F3\t0x88A4\n0xD9F4\t0x4EB5\n0xD9F5\t0x8114\n0xD9F6\t0x88D2\n0xD9F7\t0x7980\n0xD9F8\t0x5B34\n0xD9F9\t0x8803\n0xD9FA\t0x7FB8\n0xD9FB\t0x51AB\n0xD9FC\t0x51B1\n0xD9FD\t0x51BD\n0xD9FE\t0x51BC\n0xDA40\t0x8D0E\n0xDA41\t0x8D0F\n0xDA42\t0x8D10\n0xDA43\t0x8D11\n0xDA44\t0x8D12\n0xDA45\t0x8D13\n0xDA46\t0x8D14\n0xDA47\t0x8D15\n0xDA48\t0x8D16\n0xDA49\t0x8D17\n0xDA4A\t0x8D18\n0xDA4B\t0x8D19\n0xDA4C\t0x8D1A\n0xDA4D\t0x8D1B\n0xDA4E\t0x8D1C\n0xDA4F\t0x8D20\n0xDA50\t0x8D51\n0xDA51\t0x8D52\n0xDA52\t0x8D57\n0xDA53\t0x8D5F\n0xDA54\t0x8D65\n0xDA55\t0x8D68\n0xDA56\t0x8D69\n0xDA57\t0x8D6A\n0xDA58\t0x8D6C\n0xDA59\t0x8D6E\n0xDA5A\t0x8D6F\n0xDA5B\t0x8D71\n0xDA5C\t0x8D72\n0xDA5D\t0x8D78\n0xDA5E\t0x8D79\n0xDA5F\t0x8D7A\n0xDA60\t0x8D7B\n0xDA61\t0x8D7C\n0xDA62\t0x8D7D\n0xDA63\t0x8D7E\n0xDA64\t0x8D7F\n0xDA65\t0x8D80\n0xDA66\t0x8D82\n0xDA67\t0x8D83\n0xDA68\t0x8D86\n0xDA69\t0x8D87\n0xDA6A\t0x8D88\n0xDA6B\t0x8D89\n0xDA6C\t0x8D8C\n0xDA6D\t0x8D8D\n0xDA6E\t0x8D8E\n0xDA6F\t0x8D8F\n0xDA70\t0x8D90\n0xDA71\t0x8D92\n0xDA72\t0x8D93\n0xDA73\t0x8D95\n0xDA74\t0x8D96\n0xDA75\t0x8D97\n0xDA76\t0x8D98\n0xDA77\t0x8D99\n0xDA78\t0x8D9A\n0xDA79\t0x8D9B\n0xDA7A\t0x8D9C\n0xDA7B\t0x8D9D\n0xDA7C\t0x8D9E\n0xDA7D\t0x8DA0\n0xDA7E\t0x8DA1\n0xDA80\t0x8DA2\n0xDA81\t0x8DA4\n0xDA82\t0x8DA5\n0xDA83\t0x8DA6\n0xDA84\t0x8DA7\n0xDA85\t0x8DA8\n0xDA86\t0x8DA9\n0xDA87\t0x8DAA\n0xDA88\t0x8DAB\n0xDA89\t0x8DAC\n0xDA8A\t0x8DAD\n0xDA8B\t0x8DAE\n0xDA8C\t0x8DAF\n0xDA8D\t0x8DB0\n0xDA8E\t0x8DB2\n0xDA8F\t0x8DB6\n0xDA90\t0x8DB7\n0xDA91\t0x8DB9\n0xDA92\t0x8DBB\n0xDA93\t0x8DBD\n0xDA94\t0x8DC0\n0xDA95\t0x8DC1\n0xDA96\t0x8DC2\n0xDA97\t0x8DC5\n0xDA98\t0x8DC7\n0xDA99\t0x8DC8\n0xDA9A\t0x8DC9\n0xDA9B\t0x8DCA\n0xDA9C\t0x8DCD\n0xDA9D\t0x8DD0\n0xDA9E\t0x8DD2\n0xDA9F\t0x8DD3\n0xDAA0\t0x8DD4\n0xDAA1\t0x51C7\n0xDAA2\t0x5196\n0xDAA3\t0x51A2\n0xDAA4\t0x51A5\n0xDAA5\t0x8BA0\n0xDAA6\t0x8BA6\n0xDAA7\t0x8BA7\n0xDAA8\t0x8BAA\n0xDAA9\t0x8BB4\n0xDAAA\t0x8BB5\n0xDAAB\t0x8BB7\n0xDAAC\t0x8BC2\n0xDAAD\t0x8BC3\n0xDAAE\t0x8BCB\n0xDAAF\t0x8BCF\n0xDAB0\t0x8BCE\n0xDAB1\t0x8BD2\n0xDAB2\t0x8BD3\n0xDAB3\t0x8BD4\n0xDAB4\t0x8BD6\n0xDAB5\t0x8BD8\n0xDAB6\t0x8BD9\n0xDAB7\t0x8BDC\n0xDAB8\t0x8BDF\n0xDAB9\t0x8BE0\n0xDABA\t0x8BE4\n0xDABB\t0x8BE8\n0xDABC\t0x8BE9\n0xDABD\t0x8BEE\n0xDABE\t0x8BF0\n0xDABF\t0x8BF3\n0xDAC0\t0x8BF6\n0xDAC1\t0x8BF9\n0xDAC2\t0x8BFC\n0xDAC3\t0x8BFF\n0xDAC4\t0x8C00\n0xDAC5\t0x8C02\n0xDAC6\t0x8C04\n0xDAC7\t0x8C07\n0xDAC8\t0x8C0C\n0xDAC9\t0x8C0F\n0xDACA\t0x8C11\n0xDACB\t0x8C12\n0xDACC\t0x8C14\n0xDACD\t0x8C15\n0xDACE\t0x8C16\n0xDACF\t0x8C19\n0xDAD0\t0x8C1B\n0xDAD1\t0x8C18\n0xDAD2\t0x8C1D\n0xDAD3\t0x8C1F\n0xDAD4\t0x8C20\n0xDAD5\t0x8C21\n0xDAD6\t0x8C25\n0xDAD7\t0x8C27\n0xDAD8\t0x8C2A\n0xDAD9\t0x8C2B\n0xDADA\t0x8C2E\n0xDADB\t0x8C2F\n0xDADC\t0x8C32\n0xDADD\t0x8C33\n0xDADE\t0x8C35\n0xDADF\t0x8C36\n0xDAE0\t0x5369\n0xDAE1\t0x537A\n0xDAE2\t0x961D\n0xDAE3\t0x9622\n0xDAE4\t0x9621\n0xDAE5\t0x9631\n0xDAE6\t0x962A\n0xDAE7\t0x963D\n0xDAE8\t0x963C\n0xDAE9\t0x9642\n0xDAEA\t0x9649\n0xDAEB\t0x9654\n0xDAEC\t0x965F\n0xDAED\t0x9667\n0xDAEE\t0x966C\n0xDAEF\t0x9672\n0xDAF0\t0x9674\n0xDAF1\t0x9688\n0xDAF2\t0x968D\n0xDAF3\t0x9697\n0xDAF4\t0x96B0\n0xDAF5\t0x9097\n0xDAF6\t0x909B\n0xDAF7\t0x909D\n0xDAF8\t0x9099\n0xDAF9\t0x90AC\n0xDAFA\t0x90A1\n0xDAFB\t0x90B4\n0xDAFC\t0x90B3\n0xDAFD\t0x90B6\n0xDAFE\t0x90BA\n0xDB40\t0x8DD5\n0xDB41\t0x8DD8\n0xDB42\t0x8DD9\n0xDB43\t0x8DDC\n0xDB44\t0x8DE0\n0xDB45\t0x8DE1\n0xDB46\t0x8DE2\n0xDB47\t0x8DE5\n0xDB48\t0x8DE6\n0xDB49\t0x8DE7\n0xDB4A\t0x8DE9\n0xDB4B\t0x8DED\n0xDB4C\t0x8DEE\n0xDB4D\t0x8DF0\n0xDB4E\t0x8DF1\n0xDB4F\t0x8DF2\n0xDB50\t0x8DF4\n0xDB51\t0x8DF6\n0xDB52\t0x8DFC\n0xDB53\t0x8DFE\n0xDB54\t0x8DFF\n0xDB55\t0x8E00\n0xDB56\t0x8E01\n0xDB57\t0x8E02\n0xDB58\t0x8E03\n0xDB59\t0x8E04\n0xDB5A\t0x8E06\n0xDB5B\t0x8E07\n0xDB5C\t0x8E08\n0xDB5D\t0x8E0B\n0xDB5E\t0x8E0D\n0xDB5F\t0x8E0E\n0xDB60\t0x8E10\n0xDB61\t0x8E11\n0xDB62\t0x8E12\n0xDB63\t0x8E13\n0xDB64\t0x8E15\n0xDB65\t0x8E16\n0xDB66\t0x8E17\n0xDB67\t0x8E18\n0xDB68\t0x8E19\n0xDB69\t0x8E1A\n0xDB6A\t0x8E1B\n0xDB6B\t0x8E1C\n0xDB6C\t0x8E20\n0xDB6D\t0x8E21\n0xDB6E\t0x8E24\n0xDB6F\t0x8E25\n0xDB70\t0x8E26\n0xDB71\t0x8E27\n0xDB72\t0x8E28\n0xDB73\t0x8E2B\n0xDB74\t0x8E2D\n0xDB75\t0x8E30\n0xDB76\t0x8E32\n0xDB77\t0x8E33\n0xDB78\t0x8E34\n0xDB79\t0x8E36\n0xDB7A\t0x8E37\n0xDB7B\t0x8E38\n0xDB7C\t0x8E3B\n0xDB7D\t0x8E3C\n0xDB7E\t0x8E3E\n0xDB80\t0x8E3F\n0xDB81\t0x8E43\n0xDB82\t0x8E45\n0xDB83\t0x8E46\n0xDB84\t0x8E4C\n0xDB85\t0x8E4D\n0xDB86\t0x8E4E\n0xDB87\t0x8E4F\n0xDB88\t0x8E50\n0xDB89\t0x8E53\n0xDB8A\t0x8E54\n0xDB8B\t0x8E55\n0xDB8C\t0x8E56\n0xDB8D\t0x8E57\n0xDB8E\t0x8E58\n0xDB8F\t0x8E5A\n0xDB90\t0x8E5B\n0xDB91\t0x8E5C\n0xDB92\t0x8E5D\n0xDB93\t0x8E5E\n0xDB94\t0x8E5F\n0xDB95\t0x8E60\n0xDB96\t0x8E61\n0xDB97\t0x8E62\n0xDB98\t0x8E63\n0xDB99\t0x8E64\n0xDB9A\t0x8E65\n0xDB9B\t0x8E67\n0xDB9C\t0x8E68\n0xDB9D\t0x8E6A\n0xDB9E\t0x8E6B\n0xDB9F\t0x8E6E\n0xDBA0\t0x8E71\n0xDBA1\t0x90B8\n0xDBA2\t0x90B0\n0xDBA3\t0x90CF\n0xDBA4\t0x90C5\n0xDBA5\t0x90BE\n0xDBA6\t0x90D0\n0xDBA7\t0x90C4\n0xDBA8\t0x90C7\n0xDBA9\t0x90D3\n0xDBAA\t0x90E6\n0xDBAB\t0x90E2\n0xDBAC\t0x90DC\n0xDBAD\t0x90D7\n0xDBAE\t0x90DB\n0xDBAF\t0x90EB\n0xDBB0\t0x90EF\n0xDBB1\t0x90FE\n0xDBB2\t0x9104\n0xDBB3\t0x9122\n0xDBB4\t0x911E\n0xDBB5\t0x9123\n0xDBB6\t0x9131\n0xDBB7\t0x912F\n0xDBB8\t0x9139\n0xDBB9\t0x9143\n0xDBBA\t0x9146\n0xDBBB\t0x520D\n0xDBBC\t0x5942\n0xDBBD\t0x52A2\n0xDBBE\t0x52AC\n0xDBBF\t0x52AD\n0xDBC0\t0x52BE\n0xDBC1\t0x54FF\n0xDBC2\t0x52D0\n0xDBC3\t0x52D6\n0xDBC4\t0x52F0\n0xDBC5\t0x53DF\n0xDBC6\t0x71EE\n0xDBC7\t0x77CD\n0xDBC8\t0x5EF4\n0xDBC9\t0x51F5\n0xDBCA\t0x51FC\n0xDBCB\t0x9B2F\n0xDBCC\t0x53B6\n0xDBCD\t0x5F01\n0xDBCE\t0x755A\n0xDBCF\t0x5DEF\n0xDBD0\t0x574C\n0xDBD1\t0x57A9\n0xDBD2\t0x57A1\n0xDBD3\t0x587E\n0xDBD4\t0x58BC\n0xDBD5\t0x58C5\n0xDBD6\t0x58D1\n0xDBD7\t0x5729\n0xDBD8\t0x572C\n0xDBD9\t0x572A\n0xDBDA\t0x5733\n0xDBDB\t0x5739\n0xDBDC\t0x572E\n0xDBDD\t0x572F\n0xDBDE\t0x575C\n0xDBDF\t0x573B\n0xDBE0\t0x5742\n0xDBE1\t0x5769\n0xDBE2\t0x5785\n0xDBE3\t0x576B\n0xDBE4\t0x5786\n0xDBE5\t0x577C\n0xDBE6\t0x577B\n0xDBE7\t0x5768\n0xDBE8\t0x576D\n0xDBE9\t0x5776\n0xDBEA\t0x5773\n0xDBEB\t0x57AD\n0xDBEC\t0x57A4\n0xDBED\t0x578C\n0xDBEE\t0x57B2\n0xDBEF\t0x57CF\n0xDBF0\t0x57A7\n0xDBF1\t0x57B4\n0xDBF2\t0x5793\n0xDBF3\t0x57A0\n0xDBF4\t0x57D5\n0xDBF5\t0x57D8\n0xDBF6\t0x57DA\n0xDBF7\t0x57D9\n0xDBF8\t0x57D2\n0xDBF9\t0x57B8\n0xDBFA\t0x57F4\n0xDBFB\t0x57EF\n0xDBFC\t0x57F8\n0xDBFD\t0x57E4\n0xDBFE\t0x57DD\n0xDC40\t0x8E73\n0xDC41\t0x8E75\n0xDC42\t0x8E77\n0xDC43\t0x8E78\n0xDC44\t0x8E79\n0xDC45\t0x8E7A\n0xDC46\t0x8E7B\n0xDC47\t0x8E7D\n0xDC48\t0x8E7E\n0xDC49\t0x8E80\n0xDC4A\t0x8E82\n0xDC4B\t0x8E83\n0xDC4C\t0x8E84\n0xDC4D\t0x8E86\n0xDC4E\t0x8E88\n0xDC4F\t0x8E89\n0xDC50\t0x8E8A\n0xDC51\t0x8E8B\n0xDC52\t0x8E8C\n0xDC53\t0x8E8D\n0xDC54\t0x8E8E\n0xDC55\t0x8E91\n0xDC56\t0x8E92\n0xDC57\t0x8E93\n0xDC58\t0x8E95\n0xDC59\t0x8E96\n0xDC5A\t0x8E97\n0xDC5B\t0x8E98\n0xDC5C\t0x8E99\n0xDC5D\t0x8E9A\n0xDC5E\t0x8E9B\n0xDC5F\t0x8E9D\n0xDC60\t0x8E9F\n0xDC61\t0x8EA0\n0xDC62\t0x8EA1\n0xDC63\t0x8EA2\n0xDC64\t0x8EA3\n0xDC65\t0x8EA4\n0xDC66\t0x8EA5\n0xDC67\t0x8EA6\n0xDC68\t0x8EA7\n0xDC69\t0x8EA8\n0xDC6A\t0x8EA9\n0xDC6B\t0x8EAA\n0xDC6C\t0x8EAD\n0xDC6D\t0x8EAE\n0xDC6E\t0x8EB0\n0xDC6F\t0x8EB1\n0xDC70\t0x8EB3\n0xDC71\t0x8EB4\n0xDC72\t0x8EB5\n0xDC73\t0x8EB6\n0xDC74\t0x8EB7\n0xDC75\t0x8EB8\n0xDC76\t0x8EB9\n0xDC77\t0x8EBB\n0xDC78\t0x8EBC\n0xDC79\t0x8EBD\n0xDC7A\t0x8EBE\n0xDC7B\t0x8EBF\n0xDC7C\t0x8EC0\n0xDC7D\t0x8EC1\n0xDC7E\t0x8EC2\n0xDC80\t0x8EC3\n0xDC81\t0x8EC4\n0xDC82\t0x8EC5\n0xDC83\t0x8EC6\n0xDC84\t0x8EC7\n0xDC85\t0x8EC8\n0xDC86\t0x8EC9\n0xDC87\t0x8ECA\n0xDC88\t0x8ECB\n0xDC89\t0x8ECC\n0xDC8A\t0x8ECD\n0xDC8B\t0x8ECF\n0xDC8C\t0x8ED0\n0xDC8D\t0x8ED1\n0xDC8E\t0x8ED2\n0xDC8F\t0x8ED3\n0xDC90\t0x8ED4\n0xDC91\t0x8ED5\n0xDC92\t0x8ED6\n0xDC93\t0x8ED7\n0xDC94\t0x8ED8\n0xDC95\t0x8ED9\n0xDC96\t0x8EDA\n0xDC97\t0x8EDB\n0xDC98\t0x8EDC\n0xDC99\t0x8EDD\n0xDC9A\t0x8EDE\n0xDC9B\t0x8EDF\n0xDC9C\t0x8EE0\n0xDC9D\t0x8EE1\n0xDC9E\t0x8EE2\n0xDC9F\t0x8EE3\n0xDCA0\t0x8EE4\n0xDCA1\t0x580B\n0xDCA2\t0x580D\n0xDCA3\t0x57FD\n0xDCA4\t0x57ED\n0xDCA5\t0x5800\n0xDCA6\t0x581E\n0xDCA7\t0x5819\n0xDCA8\t0x5844\n0xDCA9\t0x5820\n0xDCAA\t0x5865\n0xDCAB\t0x586C\n0xDCAC\t0x5881\n0xDCAD\t0x5889\n0xDCAE\t0x589A\n0xDCAF\t0x5880\n0xDCB0\t0x99A8\n0xDCB1\t0x9F19\n0xDCB2\t0x61FF\n0xDCB3\t0x8279\n0xDCB4\t0x827D\n0xDCB5\t0x827F\n0xDCB6\t0x828F\n0xDCB7\t0x828A\n0xDCB8\t0x82A8\n0xDCB9\t0x8284\n0xDCBA\t0x828E\n0xDCBB\t0x8291\n0xDCBC\t0x8297\n0xDCBD\t0x8299\n0xDCBE\t0x82AB\n0xDCBF\t0x82B8\n0xDCC0\t0x82BE\n0xDCC1\t0x82B0\n0xDCC2\t0x82C8\n0xDCC3\t0x82CA\n0xDCC4\t0x82E3\n0xDCC5\t0x8298\n0xDCC6\t0x82B7\n0xDCC7\t0x82AE\n0xDCC8\t0x82CB\n0xDCC9\t0x82CC\n0xDCCA\t0x82C1\n0xDCCB\t0x82A9\n0xDCCC\t0x82B4\n0xDCCD\t0x82A1\n0xDCCE\t0x82AA\n0xDCCF\t0x829F\n0xDCD0\t0x82C4\n0xDCD1\t0x82CE\n0xDCD2\t0x82A4\n0xDCD3\t0x82E1\n0xDCD4\t0x8309\n0xDCD5\t0x82F7\n0xDCD6\t0x82E4\n0xDCD7\t0x830F\n0xDCD8\t0x8307\n0xDCD9\t0x82DC\n0xDCDA\t0x82F4\n0xDCDB\t0x82D2\n0xDCDC\t0x82D8\n0xDCDD\t0x830C\n0xDCDE\t0x82FB\n0xDCDF\t0x82D3\n0xDCE0\t0x8311\n0xDCE1\t0x831A\n0xDCE2\t0x8306\n0xDCE3\t0x8314\n0xDCE4\t0x8315\n0xDCE5\t0x82E0\n0xDCE6\t0x82D5\n0xDCE7\t0x831C\n0xDCE8\t0x8351\n0xDCE9\t0x835B\n0xDCEA\t0x835C\n0xDCEB\t0x8308\n0xDCEC\t0x8392\n0xDCED\t0x833C\n0xDCEE\t0x8334\n0xDCEF\t0x8331\n0xDCF0\t0x839B\n0xDCF1\t0x835E\n0xDCF2\t0x832F\n0xDCF3\t0x834F\n0xDCF4\t0x8347\n0xDCF5\t0x8343\n0xDCF6\t0x835F\n0xDCF7\t0x8340\n0xDCF8\t0x8317\n0xDCF9\t0x8360\n0xDCFA\t0x832D\n0xDCFB\t0x833A\n0xDCFC\t0x8333\n0xDCFD\t0x8366\n0xDCFE\t0x8365\n0xDD40\t0x8EE5\n0xDD41\t0x8EE6\n0xDD42\t0x8EE7\n0xDD43\t0x8EE8\n0xDD44\t0x8EE9\n0xDD45\t0x8EEA\n0xDD46\t0x8EEB\n0xDD47\t0x8EEC\n0xDD48\t0x8EED\n0xDD49\t0x8EEE\n0xDD4A\t0x8EEF\n0xDD4B\t0x8EF0\n0xDD4C\t0x8EF1\n0xDD4D\t0x8EF2\n0xDD4E\t0x8EF3\n0xDD4F\t0x8EF4\n0xDD50\t0x8EF5\n0xDD51\t0x8EF6\n0xDD52\t0x8EF7\n0xDD53\t0x8EF8\n0xDD54\t0x8EF9\n0xDD55\t0x8EFA\n0xDD56\t0x8EFB\n0xDD57\t0x8EFC\n0xDD58\t0x8EFD\n0xDD59\t0x8EFE\n0xDD5A\t0x8EFF\n0xDD5B\t0x8F00\n0xDD5C\t0x8F01\n0xDD5D\t0x8F02\n0xDD5E\t0x8F03\n0xDD5F\t0x8F04\n0xDD60\t0x8F05\n0xDD61\t0x8F06\n0xDD62\t0x8F07\n0xDD63\t0x8F08\n0xDD64\t0x8F09\n0xDD65\t0x8F0A\n0xDD66\t0x8F0B\n0xDD67\t0x8F0C\n0xDD68\t0x8F0D\n0xDD69\t0x8F0E\n0xDD6A\t0x8F0F\n0xDD6B\t0x8F10\n0xDD6C\t0x8F11\n0xDD6D\t0x8F12\n0xDD6E\t0x8F13\n0xDD6F\t0x8F14\n0xDD70\t0x8F15\n0xDD71\t0x8F16\n0xDD72\t0x8F17\n0xDD73\t0x8F18\n0xDD74\t0x8F19\n0xDD75\t0x8F1A\n0xDD76\t0x8F1B\n0xDD77\t0x8F1C\n0xDD78\t0x8F1D\n0xDD79\t0x8F1E\n0xDD7A\t0x8F1F\n0xDD7B\t0x8F20\n0xDD7C\t0x8F21\n0xDD7D\t0x8F22\n0xDD7E\t0x8F23\n0xDD80\t0x8F24\n0xDD81\t0x8F25\n0xDD82\t0x8F26\n0xDD83\t0x8F27\n0xDD84\t0x8F28\n0xDD85\t0x8F29\n0xDD86\t0x8F2A\n0xDD87\t0x8F2B\n0xDD88\t0x8F2C\n0xDD89\t0x8F2D\n0xDD8A\t0x8F2E\n0xDD8B\t0x8F2F\n0xDD8C\t0x8F30\n0xDD8D\t0x8F31\n0xDD8E\t0x8F32\n0xDD8F\t0x8F33\n0xDD90\t0x8F34\n0xDD91\t0x8F35\n0xDD92\t0x8F36\n0xDD93\t0x8F37\n0xDD94\t0x8F38\n0xDD95\t0x8F39\n0xDD96\t0x8F3A\n0xDD97\t0x8F3B\n0xDD98\t0x8F3C\n0xDD99\t0x8F3D\n0xDD9A\t0x8F3E\n0xDD9B\t0x8F3F\n0xDD9C\t0x8F40\n0xDD9D\t0x8F41\n0xDD9E\t0x8F42\n0xDD9F\t0x8F43\n0xDDA0\t0x8F44\n0xDDA1\t0x8368\n0xDDA2\t0x831B\n0xDDA3\t0x8369\n0xDDA4\t0x836C\n0xDDA5\t0x836A\n0xDDA6\t0x836D\n0xDDA7\t0x836E\n0xDDA8\t0x83B0\n0xDDA9\t0x8378\n0xDDAA\t0x83B3\n0xDDAB\t0x83B4\n0xDDAC\t0x83A0\n0xDDAD\t0x83AA\n0xDDAE\t0x8393\n0xDDAF\t0x839C\n0xDDB0\t0x8385\n0xDDB1\t0x837C\n0xDDB2\t0x83B6\n0xDDB3\t0x83A9\n0xDDB4\t0x837D\n0xDDB5\t0x83B8\n0xDDB6\t0x837B\n0xDDB7\t0x8398\n0xDDB8\t0x839E\n0xDDB9\t0x83A8\n0xDDBA\t0x83BA\n0xDDBB\t0x83BC\n0xDDBC\t0x83C1\n0xDDBD\t0x8401\n0xDDBE\t0x83E5\n0xDDBF\t0x83D8\n0xDDC0\t0x5807\n0xDDC1\t0x8418\n0xDDC2\t0x840B\n0xDDC3\t0x83DD\n0xDDC4\t0x83FD\n0xDDC5\t0x83D6\n0xDDC6\t0x841C\n0xDDC7\t0x8438\n0xDDC8\t0x8411\n0xDDC9\t0x8406\n0xDDCA\t0x83D4\n0xDDCB\t0x83DF\n0xDDCC\t0x840F\n0xDDCD\t0x8403\n0xDDCE\t0x83F8\n0xDDCF\t0x83F9\n0xDDD0\t0x83EA\n0xDDD1\t0x83C5\n0xDDD2\t0x83C0\n0xDDD3\t0x8426\n0xDDD4\t0x83F0\n0xDDD5\t0x83E1\n0xDDD6\t0x845C\n0xDDD7\t0x8451\n0xDDD8\t0x845A\n0xDDD9\t0x8459\n0xDDDA\t0x8473\n0xDDDB\t0x8487\n0xDDDC\t0x8488\n0xDDDD\t0x847A\n0xDDDE\t0x8489\n0xDDDF\t0x8478\n0xDDE0\t0x843C\n0xDDE1\t0x8446\n0xDDE2\t0x8469\n0xDDE3\t0x8476\n0xDDE4\t0x848C\n0xDDE5\t0x848E\n0xDDE6\t0x8431\n0xDDE7\t0x846D\n0xDDE8\t0x84C1\n0xDDE9\t0x84CD\n0xDDEA\t0x84D0\n0xDDEB\t0x84E6\n0xDDEC\t0x84BD\n0xDDED\t0x84D3\n0xDDEE\t0x84CA\n0xDDEF\t0x84BF\n0xDDF0\t0x84BA\n0xDDF1\t0x84E0\n0xDDF2\t0x84A1\n0xDDF3\t0x84B9\n0xDDF4\t0x84B4\n0xDDF5\t0x8497\n0xDDF6\t0x84E5\n0xDDF7\t0x84E3\n0xDDF8\t0x850C\n0xDDF9\t0x750D\n0xDDFA\t0x8538\n0xDDFB\t0x84F0\n0xDDFC\t0x8539\n0xDDFD\t0x851F\n0xDDFE\t0x853A\n0xDE40\t0x8F45\n0xDE41\t0x8F46\n0xDE42\t0x8F47\n0xDE43\t0x8F48\n0xDE44\t0x8F49\n0xDE45\t0x8F4A\n0xDE46\t0x8F4B\n0xDE47\t0x8F4C\n0xDE48\t0x8F4D\n0xDE49\t0x8F4E\n0xDE4A\t0x8F4F\n0xDE4B\t0x8F50\n0xDE4C\t0x8F51\n0xDE4D\t0x8F52\n0xDE4E\t0x8F53\n0xDE4F\t0x8F54\n0xDE50\t0x8F55\n0xDE51\t0x8F56\n0xDE52\t0x8F57\n0xDE53\t0x8F58\n0xDE54\t0x8F59\n0xDE55\t0x8F5A\n0xDE56\t0x8F5B\n0xDE57\t0x8F5C\n0xDE58\t0x8F5D\n0xDE59\t0x8F5E\n0xDE5A\t0x8F5F\n0xDE5B\t0x8F60\n0xDE5C\t0x8F61\n0xDE5D\t0x8F62\n0xDE5E\t0x8F63\n0xDE5F\t0x8F64\n0xDE60\t0x8F65\n0xDE61\t0x8F6A\n0xDE62\t0x8F80\n0xDE63\t0x8F8C\n0xDE64\t0x8F92\n0xDE65\t0x8F9D\n0xDE66\t0x8FA0\n0xDE67\t0x8FA1\n0xDE68\t0x8FA2\n0xDE69\t0x8FA4\n0xDE6A\t0x8FA5\n0xDE6B\t0x8FA6\n0xDE6C\t0x8FA7\n0xDE6D\t0x8FAA\n0xDE6E\t0x8FAC\n0xDE6F\t0x8FAD\n0xDE70\t0x8FAE\n0xDE71\t0x8FAF\n0xDE72\t0x8FB2\n0xDE73\t0x8FB3\n0xDE74\t0x8FB4\n0xDE75\t0x8FB5\n0xDE76\t0x8FB7\n0xDE77\t0x8FB8\n0xDE78\t0x8FBA\n0xDE79\t0x8FBB\n0xDE7A\t0x8FBC\n0xDE7B\t0x8FBF\n0xDE7C\t0x8FC0\n0xDE7D\t0x8FC3\n0xDE7E\t0x8FC6\n0xDE80\t0x8FC9\n0xDE81\t0x8FCA\n0xDE82\t0x8FCB\n0xDE83\t0x8FCC\n0xDE84\t0x8FCD\n0xDE85\t0x8FCF\n0xDE86\t0x8FD2\n0xDE87\t0x8FD6\n0xDE88\t0x8FD7\n0xDE89\t0x8FDA\n0xDE8A\t0x8FE0\n0xDE8B\t0x8FE1\n0xDE8C\t0x8FE3\n0xDE8D\t0x8FE7\n0xDE8E\t0x8FEC\n0xDE8F\t0x8FEF\n0xDE90\t0x8FF1\n0xDE91\t0x8FF2\n0xDE92\t0x8FF4\n0xDE93\t0x8FF5\n0xDE94\t0x8FF6\n0xDE95\t0x8FFA\n0xDE96\t0x8FFB\n0xDE97\t0x8FFC\n0xDE98\t0x8FFE\n0xDE99\t0x8FFF\n0xDE9A\t0x9007\n0xDE9B\t0x9008\n0xDE9C\t0x900C\n0xDE9D\t0x900E\n0xDE9E\t0x9013\n0xDE9F\t0x9015\n0xDEA0\t0x9018\n0xDEA1\t0x8556\n0xDEA2\t0x853B\n0xDEA3\t0x84FF\n0xDEA4\t0x84FC\n0xDEA5\t0x8559\n0xDEA6\t0x8548\n0xDEA7\t0x8568\n0xDEA8\t0x8564\n0xDEA9\t0x855E\n0xDEAA\t0x857A\n0xDEAB\t0x77A2\n0xDEAC\t0x8543\n0xDEAD\t0x8572\n0xDEAE\t0x857B\n0xDEAF\t0x85A4\n0xDEB0\t0x85A8\n0xDEB1\t0x8587\n0xDEB2\t0x858F\n0xDEB3\t0x8579\n0xDEB4\t0x85AE\n0xDEB5\t0x859C\n0xDEB6\t0x8585\n0xDEB7\t0x85B9\n0xDEB8\t0x85B7\n0xDEB9\t0x85B0\n0xDEBA\t0x85D3\n0xDEBB\t0x85C1\n0xDEBC\t0x85DC\n0xDEBD\t0x85FF\n0xDEBE\t0x8627\n0xDEBF\t0x8605\n0xDEC0\t0x8629\n0xDEC1\t0x8616\n0xDEC2\t0x863C\n0xDEC3\t0x5EFE\n0xDEC4\t0x5F08\n0xDEC5\t0x593C\n0xDEC6\t0x5941\n0xDEC7\t0x8037\n0xDEC8\t0x5955\n0xDEC9\t0x595A\n0xDECA\t0x5958\n0xDECB\t0x530F\n0xDECC\t0x5C22\n0xDECD\t0x5C25\n0xDECE\t0x5C2C\n0xDECF\t0x5C34\n0xDED0\t0x624C\n0xDED1\t0x626A\n0xDED2\t0x629F\n0xDED3\t0x62BB\n0xDED4\t0x62CA\n0xDED5\t0x62DA\n0xDED6\t0x62D7\n0xDED7\t0x62EE\n0xDED8\t0x6322\n0xDED9\t0x62F6\n0xDEDA\t0x6339\n0xDEDB\t0x634B\n0xDEDC\t0x6343\n0xDEDD\t0x63AD\n0xDEDE\t0x63F6\n0xDEDF\t0x6371\n0xDEE0\t0x637A\n0xDEE1\t0x638E\n0xDEE2\t0x63B4\n0xDEE3\t0x636D\n0xDEE4\t0x63AC\n0xDEE5\t0x638A\n0xDEE6\t0x6369\n0xDEE7\t0x63AE\n0xDEE8\t0x63BC\n0xDEE9\t0x63F2\n0xDEEA\t0x63F8\n0xDEEB\t0x63E0\n0xDEEC\t0x63FF\n0xDEED\t0x63C4\n0xDEEE\t0x63DE\n0xDEEF\t0x63CE\n0xDEF0\t0x6452\n0xDEF1\t0x63C6\n0xDEF2\t0x63BE\n0xDEF3\t0x6445\n0xDEF4\t0x6441\n0xDEF5\t0x640B\n0xDEF6\t0x641B\n0xDEF7\t0x6420\n0xDEF8\t0x640C\n0xDEF9\t0x6426\n0xDEFA\t0x6421\n0xDEFB\t0x645E\n0xDEFC\t0x6484\n0xDEFD\t0x646D\n0xDEFE\t0x6496\n0xDF40\t0x9019\n0xDF41\t0x901C\n0xDF42\t0x9023\n0xDF43\t0x9024\n0xDF44\t0x9025\n0xDF45\t0x9027\n0xDF46\t0x9028\n0xDF47\t0x9029\n0xDF48\t0x902A\n0xDF49\t0x902B\n0xDF4A\t0x902C\n0xDF4B\t0x9030\n0xDF4C\t0x9031\n0xDF4D\t0x9032\n0xDF4E\t0x9033\n0xDF4F\t0x9034\n0xDF50\t0x9037\n0xDF51\t0x9039\n0xDF52\t0x903A\n0xDF53\t0x903D\n0xDF54\t0x903F\n0xDF55\t0x9040\n0xDF56\t0x9043\n0xDF57\t0x9045\n0xDF58\t0x9046\n0xDF59\t0x9048\n0xDF5A\t0x9049\n0xDF5B\t0x904A\n0xDF5C\t0x904B\n0xDF5D\t0x904C\n0xDF5E\t0x904E\n0xDF5F\t0x9054\n0xDF60\t0x9055\n0xDF61\t0x9056\n0xDF62\t0x9059\n0xDF63\t0x905A\n0xDF64\t0x905C\n0xDF65\t0x905D\n0xDF66\t0x905E\n0xDF67\t0x905F\n0xDF68\t0x9060\n0xDF69\t0x9061\n0xDF6A\t0x9064\n0xDF6B\t0x9066\n0xDF6C\t0x9067\n0xDF6D\t0x9069\n0xDF6E\t0x906A\n0xDF6F\t0x906B\n0xDF70\t0x906C\n0xDF71\t0x906F\n0xDF72\t0x9070\n0xDF73\t0x9071\n0xDF74\t0x9072\n0xDF75\t0x9073\n0xDF76\t0x9076\n0xDF77\t0x9077\n0xDF78\t0x9078\n0xDF79\t0x9079\n0xDF7A\t0x907A\n0xDF7B\t0x907B\n0xDF7C\t0x907C\n0xDF7D\t0x907E\n0xDF7E\t0x9081\n0xDF80\t0x9084\n0xDF81\t0x9085\n0xDF82\t0x9086\n0xDF83\t0x9087\n0xDF84\t0x9089\n0xDF85\t0x908A\n0xDF86\t0x908C\n0xDF87\t0x908D\n0xDF88\t0x908E\n0xDF89\t0x908F\n0xDF8A\t0x9090\n0xDF8B\t0x9092\n0xDF8C\t0x9094\n0xDF8D\t0x9096\n0xDF8E\t0x9098\n0xDF8F\t0x909A\n0xDF90\t0x909C\n0xDF91\t0x909E\n0xDF92\t0x909F\n0xDF93\t0x90A0\n0xDF94\t0x90A4\n0xDF95\t0x90A5\n0xDF96\t0x90A7\n0xDF97\t0x90A8\n0xDF98\t0x90A9\n0xDF99\t0x90AB\n0xDF9A\t0x90AD\n0xDF9B\t0x90B2\n0xDF9C\t0x90B7\n0xDF9D\t0x90BC\n0xDF9E\t0x90BD\n0xDF9F\t0x90BF\n0xDFA0\t0x90C0\n0xDFA1\t0x647A\n0xDFA2\t0x64B7\n0xDFA3\t0x64B8\n0xDFA4\t0x6499\n0xDFA5\t0x64BA\n0xDFA6\t0x64C0\n0xDFA7\t0x64D0\n0xDFA8\t0x64D7\n0xDFA9\t0x64E4\n0xDFAA\t0x64E2\n0xDFAB\t0x6509\n0xDFAC\t0x6525\n0xDFAD\t0x652E\n0xDFAE\t0x5F0B\n0xDFAF\t0x5FD2\n0xDFB0\t0x7519\n0xDFB1\t0x5F11\n0xDFB2\t0x535F\n0xDFB3\t0x53F1\n0xDFB4\t0x53FD\n0xDFB5\t0x53E9\n0xDFB6\t0x53E8\n0xDFB7\t0x53FB\n0xDFB8\t0x5412\n0xDFB9\t0x5416\n0xDFBA\t0x5406\n0xDFBB\t0x544B\n0xDFBC\t0x5452\n0xDFBD\t0x5453\n0xDFBE\t0x5454\n0xDFBF\t0x5456\n0xDFC0\t0x5443\n0xDFC1\t0x5421\n0xDFC2\t0x5457\n0xDFC3\t0x5459\n0xDFC4\t0x5423\n0xDFC5\t0x5432\n0xDFC6\t0x5482\n0xDFC7\t0x5494\n0xDFC8\t0x5477\n0xDFC9\t0x5471\n0xDFCA\t0x5464\n0xDFCB\t0x549A\n0xDFCC\t0x549B\n0xDFCD\t0x5484\n0xDFCE\t0x5476\n0xDFCF\t0x5466\n0xDFD0\t0x549D\n0xDFD1\t0x54D0\n0xDFD2\t0x54AD\n0xDFD3\t0x54C2\n0xDFD4\t0x54B4\n0xDFD5\t0x54D2\n0xDFD6\t0x54A7\n0xDFD7\t0x54A6\n0xDFD8\t0x54D3\n0xDFD9\t0x54D4\n0xDFDA\t0x5472\n0xDFDB\t0x54A3\n0xDFDC\t0x54D5\n0xDFDD\t0x54BB\n0xDFDE\t0x54BF\n0xDFDF\t0x54CC\n0xDFE0\t0x54D9\n0xDFE1\t0x54DA\n0xDFE2\t0x54DC\n0xDFE3\t0x54A9\n0xDFE4\t0x54AA\n0xDFE5\t0x54A4\n0xDFE6\t0x54DD\n0xDFE7\t0x54CF\n0xDFE8\t0x54DE\n0xDFE9\t0x551B\n0xDFEA\t0x54E7\n0xDFEB\t0x5520\n0xDFEC\t0x54FD\n0xDFED\t0x5514\n0xDFEE\t0x54F3\n0xDFEF\t0x5522\n0xDFF0\t0x5523\n0xDFF1\t0x550F\n0xDFF2\t0x5511\n0xDFF3\t0x5527\n0xDFF4\t0x552A\n0xDFF5\t0x5567\n0xDFF6\t0x558F\n0xDFF7\t0x55B5\n0xDFF8\t0x5549\n0xDFF9\t0x556D\n0xDFFA\t0x5541\n0xDFFB\t0x5555\n0xDFFC\t0x553F\n0xDFFD\t0x5550\n0xDFFE\t0x553C\n0xE040\t0x90C2\n0xE041\t0x90C3\n0xE042\t0x90C6\n0xE043\t0x90C8\n0xE044\t0x90C9\n0xE045\t0x90CB\n0xE046\t0x90CC\n0xE047\t0x90CD\n0xE048\t0x90D2\n0xE049\t0x90D4\n0xE04A\t0x90D5\n0xE04B\t0x90D6\n0xE04C\t0x90D8\n0xE04D\t0x90D9\n0xE04E\t0x90DA\n0xE04F\t0x90DE\n0xE050\t0x90DF\n0xE051\t0x90E0\n0xE052\t0x90E3\n0xE053\t0x90E4\n0xE054\t0x90E5\n0xE055\t0x90E9\n0xE056\t0x90EA\n0xE057\t0x90EC\n0xE058\t0x90EE\n0xE059\t0x90F0\n0xE05A\t0x90F1\n0xE05B\t0x90F2\n0xE05C\t0x90F3\n0xE05D\t0x90F5\n0xE05E\t0x90F6\n0xE05F\t0x90F7\n0xE060\t0x90F9\n0xE061\t0x90FA\n0xE062\t0x90FB\n0xE063\t0x90FC\n0xE064\t0x90FF\n0xE065\t0x9100\n0xE066\t0x9101\n0xE067\t0x9103\n0xE068\t0x9105\n0xE069\t0x9106\n0xE06A\t0x9107\n0xE06B\t0x9108\n0xE06C\t0x9109\n0xE06D\t0x910A\n0xE06E\t0x910B\n0xE06F\t0x910C\n0xE070\t0x910D\n0xE071\t0x910E\n0xE072\t0x910F\n0xE073\t0x9110\n0xE074\t0x9111\n0xE075\t0x9112\n0xE076\t0x9113\n0xE077\t0x9114\n0xE078\t0x9115\n0xE079\t0x9116\n0xE07A\t0x9117\n0xE07B\t0x9118\n0xE07C\t0x911A\n0xE07D\t0x911B\n0xE07E\t0x911C\n0xE080\t0x911D\n0xE081\t0x911F\n0xE082\t0x9120\n0xE083\t0x9121\n0xE084\t0x9124\n0xE085\t0x9125\n0xE086\t0x9126\n0xE087\t0x9127\n0xE088\t0x9128\n0xE089\t0x9129\n0xE08A\t0x912A\n0xE08B\t0x912B\n0xE08C\t0x912C\n0xE08D\t0x912D\n0xE08E\t0x912E\n0xE08F\t0x9130\n0xE090\t0x9132\n0xE091\t0x9133\n0xE092\t0x9134\n0xE093\t0x9135\n0xE094\t0x9136\n0xE095\t0x9137\n0xE096\t0x9138\n0xE097\t0x913A\n0xE098\t0x913B\n0xE099\t0x913C\n0xE09A\t0x913D\n0xE09B\t0x913E\n0xE09C\t0x913F\n0xE09D\t0x9140\n0xE09E\t0x9141\n0xE09F\t0x9142\n0xE0A0\t0x9144\n0xE0A1\t0x5537\n0xE0A2\t0x5556\n0xE0A3\t0x5575\n0xE0A4\t0x5576\n0xE0A5\t0x5577\n0xE0A6\t0x5533\n0xE0A7\t0x5530\n0xE0A8\t0x555C\n0xE0A9\t0x558B\n0xE0AA\t0x55D2\n0xE0AB\t0x5583\n0xE0AC\t0x55B1\n0xE0AD\t0x55B9\n0xE0AE\t0x5588\n0xE0AF\t0x5581\n0xE0B0\t0x559F\n0xE0B1\t0x557E\n0xE0B2\t0x55D6\n0xE0B3\t0x5591\n0xE0B4\t0x557B\n0xE0B5\t0x55DF\n0xE0B6\t0x55BD\n0xE0B7\t0x55BE\n0xE0B8\t0x5594\n0xE0B9\t0x5599\n0xE0BA\t0x55EA\n0xE0BB\t0x55F7\n0xE0BC\t0x55C9\n0xE0BD\t0x561F\n0xE0BE\t0x55D1\n0xE0BF\t0x55EB\n0xE0C0\t0x55EC\n0xE0C1\t0x55D4\n0xE0C2\t0x55E6\n0xE0C3\t0x55DD\n0xE0C4\t0x55C4\n0xE0C5\t0x55EF\n0xE0C6\t0x55E5\n0xE0C7\t0x55F2\n0xE0C8\t0x55F3\n0xE0C9\t0x55CC\n0xE0CA\t0x55CD\n0xE0CB\t0x55E8\n0xE0CC\t0x55F5\n0xE0CD\t0x55E4\n0xE0CE\t0x8F94\n0xE0CF\t0x561E\n0xE0D0\t0x5608\n0xE0D1\t0x560C\n0xE0D2\t0x5601\n0xE0D3\t0x5624\n0xE0D4\t0x5623\n0xE0D5\t0x55FE\n0xE0D6\t0x5600\n0xE0D7\t0x5627\n0xE0D8\t0x562D\n0xE0D9\t0x5658\n0xE0DA\t0x5639\n0xE0DB\t0x5657\n0xE0DC\t0x562C\n0xE0DD\t0x564D\n0xE0DE\t0x5662\n0xE0DF\t0x5659\n0xE0E0\t0x565C\n0xE0E1\t0x564C\n0xE0E2\t0x5654\n0xE0E3\t0x5686\n0xE0E4\t0x5664\n0xE0E5\t0x5671\n0xE0E6\t0x566B\n0xE0E7\t0x567B\n0xE0E8\t0x567C\n0xE0E9\t0x5685\n0xE0EA\t0x5693\n0xE0EB\t0x56AF\n0xE0EC\t0x56D4\n0xE0ED\t0x56D7\n0xE0EE\t0x56DD\n0xE0EF\t0x56E1\n0xE0F0\t0x56F5\n0xE0F1\t0x56EB\n0xE0F2\t0x56F9\n0xE0F3\t0x56FF\n0xE0F4\t0x5704\n0xE0F5\t0x570A\n0xE0F6\t0x5709\n0xE0F7\t0x571C\n0xE0F8\t0x5E0F\n0xE0F9\t0x5E19\n0xE0FA\t0x5E14\n0xE0FB\t0x5E11\n0xE0FC\t0x5E31\n0xE0FD\t0x5E3B\n0xE0FE\t0x5E3C\n0xE140\t0x9145\n0xE141\t0x9147\n0xE142\t0x9148\n0xE143\t0x9151\n0xE144\t0x9153\n0xE145\t0x9154\n0xE146\t0x9155\n0xE147\t0x9156\n0xE148\t0x9158\n0xE149\t0x9159\n0xE14A\t0x915B\n0xE14B\t0x915C\n0xE14C\t0x915F\n0xE14D\t0x9160\n0xE14E\t0x9166\n0xE14F\t0x9167\n0xE150\t0x9168\n0xE151\t0x916B\n0xE152\t0x916D\n0xE153\t0x9173\n0xE154\t0x917A\n0xE155\t0x917B\n0xE156\t0x917C\n0xE157\t0x9180\n0xE158\t0x9181\n0xE159\t0x9182\n0xE15A\t0x9183\n0xE15B\t0x9184\n0xE15C\t0x9186\n0xE15D\t0x9188\n0xE15E\t0x918A\n0xE15F\t0x918E\n0xE160\t0x918F\n0xE161\t0x9193\n0xE162\t0x9194\n0xE163\t0x9195\n0xE164\t0x9196\n0xE165\t0x9197\n0xE166\t0x9198\n0xE167\t0x9199\n0xE168\t0x919C\n0xE169\t0x919D\n0xE16A\t0x919E\n0xE16B\t0x919F\n0xE16C\t0x91A0\n0xE16D\t0x91A1\n0xE16E\t0x91A4\n0xE16F\t0x91A5\n0xE170\t0x91A6\n0xE171\t0x91A7\n0xE172\t0x91A8\n0xE173\t0x91A9\n0xE174\t0x91AB\n0xE175\t0x91AC\n0xE176\t0x91B0\n0xE177\t0x91B1\n0xE178\t0x91B2\n0xE179\t0x91B3\n0xE17A\t0x91B6\n0xE17B\t0x91B7\n0xE17C\t0x91B8\n0xE17D\t0x91B9\n0xE17E\t0x91BB\n0xE180\t0x91BC\n0xE181\t0x91BD\n0xE182\t0x91BE\n0xE183\t0x91BF\n0xE184\t0x91C0\n0xE185\t0x91C1\n0xE186\t0x91C2\n0xE187\t0x91C3\n0xE188\t0x91C4\n0xE189\t0x91C5\n0xE18A\t0x91C6\n0xE18B\t0x91C8\n0xE18C\t0x91CB\n0xE18D\t0x91D0\n0xE18E\t0x91D2\n0xE18F\t0x91D3\n0xE190\t0x91D4\n0xE191\t0x91D5\n0xE192\t0x91D6\n0xE193\t0x91D7\n0xE194\t0x91D8\n0xE195\t0x91D9\n0xE196\t0x91DA\n0xE197\t0x91DB\n0xE198\t0x91DD\n0xE199\t0x91DE\n0xE19A\t0x91DF\n0xE19B\t0x91E0\n0xE19C\t0x91E1\n0xE19D\t0x91E2\n0xE19E\t0x91E3\n0xE19F\t0x91E4\n0xE1A0\t0x91E5\n0xE1A1\t0x5E37\n0xE1A2\t0x5E44\n0xE1A3\t0x5E54\n0xE1A4\t0x5E5B\n0xE1A5\t0x5E5E\n0xE1A6\t0x5E61\n0xE1A7\t0x5C8C\n0xE1A8\t0x5C7A\n0xE1A9\t0x5C8D\n0xE1AA\t0x5C90\n0xE1AB\t0x5C96\n0xE1AC\t0x5C88\n0xE1AD\t0x5C98\n0xE1AE\t0x5C99\n0xE1AF\t0x5C91\n0xE1B0\t0x5C9A\n0xE1B1\t0x5C9C\n0xE1B2\t0x5CB5\n0xE1B3\t0x5CA2\n0xE1B4\t0x5CBD\n0xE1B5\t0x5CAC\n0xE1B6\t0x5CAB\n0xE1B7\t0x5CB1\n0xE1B8\t0x5CA3\n0xE1B9\t0x5CC1\n0xE1BA\t0x5CB7\n0xE1BB\t0x5CC4\n0xE1BC\t0x5CD2\n0xE1BD\t0x5CE4\n0xE1BE\t0x5CCB\n0xE1BF\t0x5CE5\n0xE1C0\t0x5D02\n0xE1C1\t0x5D03\n0xE1C2\t0x5D27\n0xE1C3\t0x5D26\n0xE1C4\t0x5D2E\n0xE1C5\t0x5D24\n0xE1C6\t0x5D1E\n0xE1C7\t0x5D06\n0xE1C8\t0x5D1B\n0xE1C9\t0x5D58\n0xE1CA\t0x5D3E\n0xE1CB\t0x5D34\n0xE1CC\t0x5D3D\n0xE1CD\t0x5D6C\n0xE1CE\t0x5D5B\n0xE1CF\t0x5D6F\n0xE1D0\t0x5D5D\n0xE1D1\t0x5D6B\n0xE1D2\t0x5D4B\n0xE1D3\t0x5D4A\n0xE1D4\t0x5D69\n0xE1D5\t0x5D74\n0xE1D6\t0x5D82\n0xE1D7\t0x5D99\n0xE1D8\t0x5D9D\n0xE1D9\t0x8C73\n0xE1DA\t0x5DB7\n0xE1DB\t0x5DC5\n0xE1DC\t0x5F73\n0xE1DD\t0x5F77\n0xE1DE\t0x5F82\n0xE1DF\t0x5F87\n0xE1E0\t0x5F89\n0xE1E1\t0x5F8C\n0xE1E2\t0x5F95\n0xE1E3\t0x5F99\n0xE1E4\t0x5F9C\n0xE1E5\t0x5FA8\n0xE1E6\t0x5FAD\n0xE1E7\t0x5FB5\n0xE1E8\t0x5FBC\n0xE1E9\t0x8862\n0xE1EA\t0x5F61\n0xE1EB\t0x72AD\n0xE1EC\t0x72B0\n0xE1ED\t0x72B4\n0xE1EE\t0x72B7\n0xE1EF\t0x72B8\n0xE1F0\t0x72C3\n0xE1F1\t0x72C1\n0xE1F2\t0x72CE\n0xE1F3\t0x72CD\n0xE1F4\t0x72D2\n0xE1F5\t0x72E8\n0xE1F6\t0x72EF\n0xE1F7\t0x72E9\n0xE1F8\t0x72F2\n0xE1F9\t0x72F4\n0xE1FA\t0x72F7\n0xE1FB\t0x7301\n0xE1FC\t0x72F3\n0xE1FD\t0x7303\n0xE1FE\t0x72FA\n0xE240\t0x91E6\n0xE241\t0x91E7\n0xE242\t0x91E8\n0xE243\t0x91E9\n0xE244\t0x91EA\n0xE245\t0x91EB\n0xE246\t0x91EC\n0xE247\t0x91ED\n0xE248\t0x91EE\n0xE249\t0x91EF\n0xE24A\t0x91F0\n0xE24B\t0x91F1\n0xE24C\t0x91F2\n0xE24D\t0x91F3\n0xE24E\t0x91F4\n0xE24F\t0x91F5\n0xE250\t0x91F6\n0xE251\t0x91F7\n0xE252\t0x91F8\n0xE253\t0x91F9\n0xE254\t0x91FA\n0xE255\t0x91FB\n0xE256\t0x91FC\n0xE257\t0x91FD\n0xE258\t0x91FE\n0xE259\t0x91FF\n0xE25A\t0x9200\n0xE25B\t0x9201\n0xE25C\t0x9202\n0xE25D\t0x9203\n0xE25E\t0x9204\n0xE25F\t0x9205\n0xE260\t0x9206\n0xE261\t0x9207\n0xE262\t0x9208\n0xE263\t0x9209\n0xE264\t0x920A\n0xE265\t0x920B\n0xE266\t0x920C\n0xE267\t0x920D\n0xE268\t0x920E\n0xE269\t0x920F\n0xE26A\t0x9210\n0xE26B\t0x9211\n0xE26C\t0x9212\n0xE26D\t0x9213\n0xE26E\t0x9214\n0xE26F\t0x9215\n0xE270\t0x9216\n0xE271\t0x9217\n0xE272\t0x9218\n0xE273\t0x9219\n0xE274\t0x921A\n0xE275\t0x921B\n0xE276\t0x921C\n0xE277\t0x921D\n0xE278\t0x921E\n0xE279\t0x921F\n0xE27A\t0x9220\n0xE27B\t0x9221\n0xE27C\t0x9222\n0xE27D\t0x9223\n0xE27E\t0x9224\n0xE280\t0x9225\n0xE281\t0x9226\n0xE282\t0x9227\n0xE283\t0x9228\n0xE284\t0x9229\n0xE285\t0x922A\n0xE286\t0x922B\n0xE287\t0x922C\n0xE288\t0x922D\n0xE289\t0x922E\n0xE28A\t0x922F\n0xE28B\t0x9230\n0xE28C\t0x9231\n0xE28D\t0x9232\n0xE28E\t0x9233\n0xE28F\t0x9234\n0xE290\t0x9235\n0xE291\t0x9236\n0xE292\t0x9237\n0xE293\t0x9238\n0xE294\t0x9239\n0xE295\t0x923A\n0xE296\t0x923B\n0xE297\t0x923C\n0xE298\t0x923D\n0xE299\t0x923E\n0xE29A\t0x923F\n0xE29B\t0x9240\n0xE29C\t0x9241\n0xE29D\t0x9242\n0xE29E\t0x9243\n0xE29F\t0x9244\n0xE2A0\t0x9245\n0xE2A1\t0x72FB\n0xE2A2\t0x7317\n0xE2A3\t0x7313\n0xE2A4\t0x7321\n0xE2A5\t0x730A\n0xE2A6\t0x731E\n0xE2A7\t0x731D\n0xE2A8\t0x7315\n0xE2A9\t0x7322\n0xE2AA\t0x7339\n0xE2AB\t0x7325\n0xE2AC\t0x732C\n0xE2AD\t0x7338\n0xE2AE\t0x7331\n0xE2AF\t0x7350\n0xE2B0\t0x734D\n0xE2B1\t0x7357\n0xE2B2\t0x7360\n0xE2B3\t0x736C\n0xE2B4\t0x736F\n0xE2B5\t0x737E\n0xE2B6\t0x821B\n0xE2B7\t0x5925\n0xE2B8\t0x98E7\n0xE2B9\t0x5924\n0xE2BA\t0x5902\n0xE2BB\t0x9963\n0xE2BC\t0x9967\n0xE2BD\t0x9968\n0xE2BE\t0x9969\n0xE2BF\t0x996A\n0xE2C0\t0x996B\n0xE2C1\t0x996C\n0xE2C2\t0x9974\n0xE2C3\t0x9977\n0xE2C4\t0x997D\n0xE2C5\t0x9980\n0xE2C6\t0x9984\n0xE2C7\t0x9987\n0xE2C8\t0x998A\n0xE2C9\t0x998D\n0xE2CA\t0x9990\n0xE2CB\t0x9991\n0xE2CC\t0x9993\n0xE2CD\t0x9994\n0xE2CE\t0x9995\n0xE2CF\t0x5E80\n0xE2D0\t0x5E91\n0xE2D1\t0x5E8B\n0xE2D2\t0x5E96\n0xE2D3\t0x5EA5\n0xE2D4\t0x5EA0\n0xE2D5\t0x5EB9\n0xE2D6\t0x5EB5\n0xE2D7\t0x5EBE\n0xE2D8\t0x5EB3\n0xE2D9\t0x8D53\n0xE2DA\t0x5ED2\n0xE2DB\t0x5ED1\n0xE2DC\t0x5EDB\n0xE2DD\t0x5EE8\n0xE2DE\t0x5EEA\n0xE2DF\t0x81BA\n0xE2E0\t0x5FC4\n0xE2E1\t0x5FC9\n0xE2E2\t0x5FD6\n0xE2E3\t0x5FCF\n0xE2E4\t0x6003\n0xE2E5\t0x5FEE\n0xE2E6\t0x6004\n0xE2E7\t0x5FE1\n0xE2E8\t0x5FE4\n0xE2E9\t0x5FFE\n0xE2EA\t0x6005\n0xE2EB\t0x6006\n0xE2EC\t0x5FEA\n0xE2ED\t0x5FED\n0xE2EE\t0x5FF8\n0xE2EF\t0x6019\n0xE2F0\t0x6035\n0xE2F1\t0x6026\n0xE2F2\t0x601B\n0xE2F3\t0x600F\n0xE2F4\t0x600D\n0xE2F5\t0x6029\n0xE2F6\t0x602B\n0xE2F7\t0x600A\n0xE2F8\t0x603F\n0xE2F9\t0x6021\n0xE2FA\t0x6078\n0xE2FB\t0x6079\n0xE2FC\t0x607B\n0xE2FD\t0x607A\n0xE2FE\t0x6042\n0xE340\t0x9246\n0xE341\t0x9247\n0xE342\t0x9248\n0xE343\t0x9249\n0xE344\t0x924A\n0xE345\t0x924B\n0xE346\t0x924C\n0xE347\t0x924D\n0xE348\t0x924E\n0xE349\t0x924F\n0xE34A\t0x9250\n0xE34B\t0x9251\n0xE34C\t0x9252\n0xE34D\t0x9253\n0xE34E\t0x9254\n0xE34F\t0x9255\n0xE350\t0x9256\n0xE351\t0x9257\n0xE352\t0x9258\n0xE353\t0x9259\n0xE354\t0x925A\n0xE355\t0x925B\n0xE356\t0x925C\n0xE357\t0x925D\n0xE358\t0x925E\n0xE359\t0x925F\n0xE35A\t0x9260\n0xE35B\t0x9261\n0xE35C\t0x9262\n0xE35D\t0x9263\n0xE35E\t0x9264\n0xE35F\t0x9265\n0xE360\t0x9266\n0xE361\t0x9267\n0xE362\t0x9268\n0xE363\t0x9269\n0xE364\t0x926A\n0xE365\t0x926B\n0xE366\t0x926C\n0xE367\t0x926D\n0xE368\t0x926E\n0xE369\t0x926F\n0xE36A\t0x9270\n0xE36B\t0x9271\n0xE36C\t0x9272\n0xE36D\t0x9273\n0xE36E\t0x9275\n0xE36F\t0x9276\n0xE370\t0x9277\n0xE371\t0x9278\n0xE372\t0x9279\n0xE373\t0x927A\n0xE374\t0x927B\n0xE375\t0x927C\n0xE376\t0x927D\n0xE377\t0x927E\n0xE378\t0x927F\n0xE379\t0x9280\n0xE37A\t0x9281\n0xE37B\t0x9282\n0xE37C\t0x9283\n0xE37D\t0x9284\n0xE37E\t0x9285\n0xE380\t0x9286\n0xE381\t0x9287\n0xE382\t0x9288\n0xE383\t0x9289\n0xE384\t0x928A\n0xE385\t0x928B\n0xE386\t0x928C\n0xE387\t0x928D\n0xE388\t0x928F\n0xE389\t0x9290\n0xE38A\t0x9291\n0xE38B\t0x9292\n0xE38C\t0x9293\n0xE38D\t0x9294\n0xE38E\t0x9295\n0xE38F\t0x9296\n0xE390\t0x9297\n0xE391\t0x9298\n0xE392\t0x9299\n0xE393\t0x929A\n0xE394\t0x929B\n0xE395\t0x929C\n0xE396\t0x929D\n0xE397\t0x929E\n0xE398\t0x929F\n0xE399\t0x92A0\n0xE39A\t0x92A1\n0xE39B\t0x92A2\n0xE39C\t0x92A3\n0xE39D\t0x92A4\n0xE39E\t0x92A5\n0xE39F\t0x92A6\n0xE3A0\t0x92A7\n0xE3A1\t0x606A\n0xE3A2\t0x607D\n0xE3A3\t0x6096\n0xE3A4\t0x609A\n0xE3A5\t0x60AD\n0xE3A6\t0x609D\n0xE3A7\t0x6083\n0xE3A8\t0x6092\n0xE3A9\t0x608C\n0xE3AA\t0x609B\n0xE3AB\t0x60EC\n0xE3AC\t0x60BB\n0xE3AD\t0x60B1\n0xE3AE\t0x60DD\n0xE3AF\t0x60D8\n0xE3B0\t0x60C6\n0xE3B1\t0x60DA\n0xE3B2\t0x60B4\n0xE3B3\t0x6120\n0xE3B4\t0x6126\n0xE3B5\t0x6115\n0xE3B6\t0x6123\n0xE3B7\t0x60F4\n0xE3B8\t0x6100\n0xE3B9\t0x610E\n0xE3BA\t0x612B\n0xE3BB\t0x614A\n0xE3BC\t0x6175\n0xE3BD\t0x61AC\n0xE3BE\t0x6194\n0xE3BF\t0x61A7\n0xE3C0\t0x61B7\n0xE3C1\t0x61D4\n0xE3C2\t0x61F5\n0xE3C3\t0x5FDD\n0xE3C4\t0x96B3\n0xE3C5\t0x95E9\n0xE3C6\t0x95EB\n0xE3C7\t0x95F1\n0xE3C8\t0x95F3\n0xE3C9\t0x95F5\n0xE3CA\t0x95F6\n0xE3CB\t0x95FC\n0xE3CC\t0x95FE\n0xE3CD\t0x9603\n0xE3CE\t0x9604\n0xE3CF\t0x9606\n0xE3D0\t0x9608\n0xE3D1\t0x960A\n0xE3D2\t0x960B\n0xE3D3\t0x960C\n0xE3D4\t0x960D\n0xE3D5\t0x960F\n0xE3D6\t0x9612\n0xE3D7\t0x9615\n0xE3D8\t0x9616\n0xE3D9\t0x9617\n0xE3DA\t0x9619\n0xE3DB\t0x961A\n0xE3DC\t0x4E2C\n0xE3DD\t0x723F\n0xE3DE\t0x6215\n0xE3DF\t0x6C35\n0xE3E0\t0x6C54\n0xE3E1\t0x6C5C\n0xE3E2\t0x6C4A\n0xE3E3\t0x6CA3\n0xE3E4\t0x6C85\n0xE3E5\t0x6C90\n0xE3E6\t0x6C94\n0xE3E7\t0x6C8C\n0xE3E8\t0x6C68\n0xE3E9\t0x6C69\n0xE3EA\t0x6C74\n0xE3EB\t0x6C76\n0xE3EC\t0x6C86\n0xE3ED\t0x6CA9\n0xE3EE\t0x6CD0\n0xE3EF\t0x6CD4\n0xE3F0\t0x6CAD\n0xE3F1\t0x6CF7\n0xE3F2\t0x6CF8\n0xE3F3\t0x6CF1\n0xE3F4\t0x6CD7\n0xE3F5\t0x6CB2\n0xE3F6\t0x6CE0\n0xE3F7\t0x6CD6\n0xE3F8\t0x6CFA\n0xE3F9\t0x6CEB\n0xE3FA\t0x6CEE\n0xE3FB\t0x6CB1\n0xE3FC\t0x6CD3\n0xE3FD\t0x6CEF\n0xE3FE\t0x6CFE\n0xE440\t0x92A8\n0xE441\t0x92A9\n0xE442\t0x92AA\n0xE443\t0x92AB\n0xE444\t0x92AC\n0xE445\t0x92AD\n0xE446\t0x92AF\n0xE447\t0x92B0\n0xE448\t0x92B1\n0xE449\t0x92B2\n0xE44A\t0x92B3\n0xE44B\t0x92B4\n0xE44C\t0x92B5\n0xE44D\t0x92B6\n0xE44E\t0x92B7\n0xE44F\t0x92B8\n0xE450\t0x92B9\n0xE451\t0x92BA\n0xE452\t0x92BB\n0xE453\t0x92BC\n0xE454\t0x92BD\n0xE455\t0x92BE\n0xE456\t0x92BF\n0xE457\t0x92C0\n0xE458\t0x92C1\n0xE459\t0x92C2\n0xE45A\t0x92C3\n0xE45B\t0x92C4\n0xE45C\t0x92C5\n0xE45D\t0x92C6\n0xE45E\t0x92C7\n0xE45F\t0x92C9\n0xE460\t0x92CA\n0xE461\t0x92CB\n0xE462\t0x92CC\n0xE463\t0x92CD\n0xE464\t0x92CE\n0xE465\t0x92CF\n0xE466\t0x92D0\n0xE467\t0x92D1\n0xE468\t0x92D2\n0xE469\t0x92D3\n0xE46A\t0x92D4\n0xE46B\t0x92D5\n0xE46C\t0x92D6\n0xE46D\t0x92D7\n0xE46E\t0x92D8\n0xE46F\t0x92D9\n0xE470\t0x92DA\n0xE471\t0x92DB\n0xE472\t0x92DC\n0xE473\t0x92DD\n0xE474\t0x92DE\n0xE475\t0x92DF\n0xE476\t0x92E0\n0xE477\t0x92E1\n0xE478\t0x92E2\n0xE479\t0x92E3\n0xE47A\t0x92E4\n0xE47B\t0x92E5\n0xE47C\t0x92E6\n0xE47D\t0x92E7\n0xE47E\t0x92E8\n0xE480\t0x92E9\n0xE481\t0x92EA\n0xE482\t0x92EB\n0xE483\t0x92EC\n0xE484\t0x92ED\n0xE485\t0x92EE\n0xE486\t0x92EF\n0xE487\t0x92F0\n0xE488\t0x92F1\n0xE489\t0x92F2\n0xE48A\t0x92F3\n0xE48B\t0x92F4\n0xE48C\t0x92F5\n0xE48D\t0x92F6\n0xE48E\t0x92F7\n0xE48F\t0x92F8\n0xE490\t0x92F9\n0xE491\t0x92FA\n0xE492\t0x92FB\n0xE493\t0x92FC\n0xE494\t0x92FD\n0xE495\t0x92FE\n0xE496\t0x92FF\n0xE497\t0x9300\n0xE498\t0x9301\n0xE499\t0x9302\n0xE49A\t0x9303\n0xE49B\t0x9304\n0xE49C\t0x9305\n0xE49D\t0x9306\n0xE49E\t0x9307\n0xE49F\t0x9308\n0xE4A0\t0x9309\n0xE4A1\t0x6D39\n0xE4A2\t0x6D27\n0xE4A3\t0x6D0C\n0xE4A4\t0x6D43\n0xE4A5\t0x6D48\n0xE4A6\t0x6D07\n0xE4A7\t0x6D04\n0xE4A8\t0x6D19\n0xE4A9\t0x6D0E\n0xE4AA\t0x6D2B\n0xE4AB\t0x6D4D\n0xE4AC\t0x6D2E\n0xE4AD\t0x6D35\n0xE4AE\t0x6D1A\n0xE4AF\t0x6D4F\n0xE4B0\t0x6D52\n0xE4B1\t0x6D54\n0xE4B2\t0x6D33\n0xE4B3\t0x6D91\n0xE4B4\t0x6D6F\n0xE4B5\t0x6D9E\n0xE4B6\t0x6DA0\n0xE4B7\t0x6D5E\n0xE4B8\t0x6D93\n0xE4B9\t0x6D94\n0xE4BA\t0x6D5C\n0xE4BB\t0x6D60\n0xE4BC\t0x6D7C\n0xE4BD\t0x6D63\n0xE4BE\t0x6E1A\n0xE4BF\t0x6DC7\n0xE4C0\t0x6DC5\n0xE4C1\t0x6DDE\n0xE4C2\t0x6E0E\n0xE4C3\t0x6DBF\n0xE4C4\t0x6DE0\n0xE4C5\t0x6E11\n0xE4C6\t0x6DE6\n0xE4C7\t0x6DDD\n0xE4C8\t0x6DD9\n0xE4C9\t0x6E16\n0xE4CA\t0x6DAB\n0xE4CB\t0x6E0C\n0xE4CC\t0x6DAE\n0xE4CD\t0x6E2B\n0xE4CE\t0x6E6E\n0xE4CF\t0x6E4E\n0xE4D0\t0x6E6B\n0xE4D1\t0x6EB2\n0xE4D2\t0x6E5F\n0xE4D3\t0x6E86\n0xE4D4\t0x6E53\n0xE4D5\t0x6E54\n0xE4D6\t0x6E32\n0xE4D7\t0x6E25\n0xE4D8\t0x6E44\n0xE4D9\t0x6EDF\n0xE4DA\t0x6EB1\n0xE4DB\t0x6E98\n0xE4DC\t0x6EE0\n0xE4DD\t0x6F2D\n0xE4DE\t0x6EE2\n0xE4DF\t0x6EA5\n0xE4E0\t0x6EA7\n0xE4E1\t0x6EBD\n0xE4E2\t0x6EBB\n0xE4E3\t0x6EB7\n0xE4E4\t0x6ED7\n0xE4E5\t0x6EB4\n0xE4E6\t0x6ECF\n0xE4E7\t0x6E8F\n0xE4E8\t0x6EC2\n0xE4E9\t0x6E9F\n0xE4EA\t0x6F62\n0xE4EB\t0x6F46\n0xE4EC\t0x6F47\n0xE4ED\t0x6F24\n0xE4EE\t0x6F15\n0xE4EF\t0x6EF9\n0xE4F0\t0x6F2F\n0xE4F1\t0x6F36\n0xE4F2\t0x6F4B\n0xE4F3\t0x6F74\n0xE4F4\t0x6F2A\n0xE4F5\t0x6F09\n0xE4F6\t0x6F29\n0xE4F7\t0x6F89\n0xE4F8\t0x6F8D\n0xE4F9\t0x6F8C\n0xE4FA\t0x6F78\n0xE4FB\t0x6F72\n0xE4FC\t0x6F7C\n0xE4FD\t0x6F7A\n0xE4FE\t0x6FD1\n0xE540\t0x930A\n0xE541\t0x930B\n0xE542\t0x930C\n0xE543\t0x930D\n0xE544\t0x930E\n0xE545\t0x930F\n0xE546\t0x9310\n0xE547\t0x9311\n0xE548\t0x9312\n0xE549\t0x9313\n0xE54A\t0x9314\n0xE54B\t0x9315\n0xE54C\t0x9316\n0xE54D\t0x9317\n0xE54E\t0x9318\n0xE54F\t0x9319\n0xE550\t0x931A\n0xE551\t0x931B\n0xE552\t0x931C\n0xE553\t0x931D\n0xE554\t0x931E\n0xE555\t0x931F\n0xE556\t0x9320\n0xE557\t0x9321\n0xE558\t0x9322\n0xE559\t0x9323\n0xE55A\t0x9324\n0xE55B\t0x9325\n0xE55C\t0x9326\n0xE55D\t0x9327\n0xE55E\t0x9328\n0xE55F\t0x9329\n0xE560\t0x932A\n0xE561\t0x932B\n0xE562\t0x932C\n0xE563\t0x932D\n0xE564\t0x932E\n0xE565\t0x932F\n0xE566\t0x9330\n0xE567\t0x9331\n0xE568\t0x9332\n0xE569\t0x9333\n0xE56A\t0x9334\n0xE56B\t0x9335\n0xE56C\t0x9336\n0xE56D\t0x9337\n0xE56E\t0x9338\n0xE56F\t0x9339\n0xE570\t0x933A\n0xE571\t0x933B\n0xE572\t0x933C\n0xE573\t0x933D\n0xE574\t0x933F\n0xE575\t0x9340\n0xE576\t0x9341\n0xE577\t0x9342\n0xE578\t0x9343\n0xE579\t0x9344\n0xE57A\t0x9345\n0xE57B\t0x9346\n0xE57C\t0x9347\n0xE57D\t0x9348\n0xE57E\t0x9349\n0xE580\t0x934A\n0xE581\t0x934B\n0xE582\t0x934C\n0xE583\t0x934D\n0xE584\t0x934E\n0xE585\t0x934F\n0xE586\t0x9350\n0xE587\t0x9351\n0xE588\t0x9352\n0xE589\t0x9353\n0xE58A\t0x9354\n0xE58B\t0x9355\n0xE58C\t0x9356\n0xE58D\t0x9357\n0xE58E\t0x9358\n0xE58F\t0x9359\n0xE590\t0x935A\n0xE591\t0x935B\n0xE592\t0x935C\n0xE593\t0x935D\n0xE594\t0x935E\n0xE595\t0x935F\n0xE596\t0x9360\n0xE597\t0x9361\n0xE598\t0x9362\n0xE599\t0x9363\n0xE59A\t0x9364\n0xE59B\t0x9365\n0xE59C\t0x9366\n0xE59D\t0x9367\n0xE59E\t0x9368\n0xE59F\t0x9369\n0xE5A0\t0x936B\n0xE5A1\t0x6FC9\n0xE5A2\t0x6FA7\n0xE5A3\t0x6FB9\n0xE5A4\t0x6FB6\n0xE5A5\t0x6FC2\n0xE5A6\t0x6FE1\n0xE5A7\t0x6FEE\n0xE5A8\t0x6FDE\n0xE5A9\t0x6FE0\n0xE5AA\t0x6FEF\n0xE5AB\t0x701A\n0xE5AC\t0x7023\n0xE5AD\t0x701B\n0xE5AE\t0x7039\n0xE5AF\t0x7035\n0xE5B0\t0x704F\n0xE5B1\t0x705E\n0xE5B2\t0x5B80\n0xE5B3\t0x5B84\n0xE5B4\t0x5B95\n0xE5B5\t0x5B93\n0xE5B6\t0x5BA5\n0xE5B7\t0x5BB8\n0xE5B8\t0x752F\n0xE5B9\t0x9A9E\n0xE5BA\t0x6434\n0xE5BB\t0x5BE4\n0xE5BC\t0x5BEE\n0xE5BD\t0x8930\n0xE5BE\t0x5BF0\n0xE5BF\t0x8E47\n0xE5C0\t0x8B07\n0xE5C1\t0x8FB6\n0xE5C2\t0x8FD3\n0xE5C3\t0x8FD5\n0xE5C4\t0x8FE5\n0xE5C5\t0x8FEE\n0xE5C6\t0x8FE4\n0xE5C7\t0x8FE9\n0xE5C8\t0x8FE6\n0xE5C9\t0x8FF3\n0xE5CA\t0x8FE8\n0xE5CB\t0x9005\n0xE5CC\t0x9004\n0xE5CD\t0x900B\n0xE5CE\t0x9026\n0xE5CF\t0x9011\n0xE5D0\t0x900D\n0xE5D1\t0x9016\n0xE5D2\t0x9021\n0xE5D3\t0x9035\n0xE5D4\t0x9036\n0xE5D5\t0x902D\n0xE5D6\t0x902F\n0xE5D7\t0x9044\n0xE5D8\t0x9051\n0xE5D9\t0x9052\n0xE5DA\t0x9050\n0xE5DB\t0x9068\n0xE5DC\t0x9058\n0xE5DD\t0x9062\n0xE5DE\t0x905B\n0xE5DF\t0x66B9\n0xE5E0\t0x9074\n0xE5E1\t0x907D\n0xE5E2\t0x9082\n0xE5E3\t0x9088\n0xE5E4\t0x9083\n0xE5E5\t0x908B\n0xE5E6\t0x5F50\n0xE5E7\t0x5F57\n0xE5E8\t0x5F56\n0xE5E9\t0x5F58\n0xE5EA\t0x5C3B\n0xE5EB\t0x54AB\n0xE5EC\t0x5C50\n0xE5ED\t0x5C59\n0xE5EE\t0x5B71\n0xE5EF\t0x5C63\n0xE5F0\t0x5C66\n0xE5F1\t0x7FBC\n0xE5F2\t0x5F2A\n0xE5F3\t0x5F29\n0xE5F4\t0x5F2D\n0xE5F5\t0x8274\n0xE5F6\t0x5F3C\n0xE5F7\t0x9B3B\n0xE5F8\t0x5C6E\n0xE5F9\t0x5981\n0xE5FA\t0x5983\n0xE5FB\t0x598D\n0xE5FC\t0x59A9\n0xE5FD\t0x59AA\n0xE5FE\t0x59A3\n0xE640\t0x936C\n0xE641\t0x936D\n0xE642\t0x936E\n0xE643\t0x936F\n0xE644\t0x9370\n0xE645\t0x9371\n0xE646\t0x9372\n0xE647\t0x9373\n0xE648\t0x9374\n0xE649\t0x9375\n0xE64A\t0x9376\n0xE64B\t0x9377\n0xE64C\t0x9378\n0xE64D\t0x9379\n0xE64E\t0x937A\n0xE64F\t0x937B\n0xE650\t0x937C\n0xE651\t0x937D\n0xE652\t0x937E\n0xE653\t0x937F\n0xE654\t0x9380\n0xE655\t0x9381\n0xE656\t0x9382\n0xE657\t0x9383\n0xE658\t0x9384\n0xE659\t0x9385\n0xE65A\t0x9386\n0xE65B\t0x9387\n0xE65C\t0x9388\n0xE65D\t0x9389\n0xE65E\t0x938A\n0xE65F\t0x938B\n0xE660\t0x938C\n0xE661\t0x938D\n0xE662\t0x938E\n0xE663\t0x9390\n0xE664\t0x9391\n0xE665\t0x9392\n0xE666\t0x9393\n0xE667\t0x9394\n0xE668\t0x9395\n0xE669\t0x9396\n0xE66A\t0x9397\n0xE66B\t0x9398\n0xE66C\t0x9399\n0xE66D\t0x939A\n0xE66E\t0x939B\n0xE66F\t0x939C\n0xE670\t0x939D\n0xE671\t0x939E\n0xE672\t0x939F\n0xE673\t0x93A0\n0xE674\t0x93A1\n0xE675\t0x93A2\n0xE676\t0x93A3\n0xE677\t0x93A4\n0xE678\t0x93A5\n0xE679\t0x93A6\n0xE67A\t0x93A7\n0xE67B\t0x93A8\n0xE67C\t0x93A9\n0xE67D\t0x93AA\n0xE67E\t0x93AB\n0xE680\t0x93AC\n0xE681\t0x93AD\n0xE682\t0x93AE\n0xE683\t0x93AF\n0xE684\t0x93B0\n0xE685\t0x93B1\n0xE686\t0x93B2\n0xE687\t0x93B3\n0xE688\t0x93B4\n0xE689\t0x93B5\n0xE68A\t0x93B6\n0xE68B\t0x93B7\n0xE68C\t0x93B8\n0xE68D\t0x93B9\n0xE68E\t0x93BA\n0xE68F\t0x93BB\n0xE690\t0x93BC\n0xE691\t0x93BD\n0xE692\t0x93BE\n0xE693\t0x93BF\n0xE694\t0x93C0\n0xE695\t0x93C1\n0xE696\t0x93C2\n0xE697\t0x93C3\n0xE698\t0x93C4\n0xE699\t0x93C5\n0xE69A\t0x93C6\n0xE69B\t0x93C7\n0xE69C\t0x93C8\n0xE69D\t0x93C9\n0xE69E\t0x93CB\n0xE69F\t0x93CC\n0xE6A0\t0x93CD\n0xE6A1\t0x5997\n0xE6A2\t0x59CA\n0xE6A3\t0x59AB\n0xE6A4\t0x599E\n0xE6A5\t0x59A4\n0xE6A6\t0x59D2\n0xE6A7\t0x59B2\n0xE6A8\t0x59AF\n0xE6A9\t0x59D7\n0xE6AA\t0x59BE\n0xE6AB\t0x5A05\n0xE6AC\t0x5A06\n0xE6AD\t0x59DD\n0xE6AE\t0x5A08\n0xE6AF\t0x59E3\n0xE6B0\t0x59D8\n0xE6B1\t0x59F9\n0xE6B2\t0x5A0C\n0xE6B3\t0x5A09\n0xE6B4\t0x5A32\n0xE6B5\t0x5A34\n0xE6B6\t0x5A11\n0xE6B7\t0x5A23\n0xE6B8\t0x5A13\n0xE6B9\t0x5A40\n0xE6BA\t0x5A67\n0xE6BB\t0x5A4A\n0xE6BC\t0x5A55\n0xE6BD\t0x5A3C\n0xE6BE\t0x5A62\n0xE6BF\t0x5A75\n0xE6C0\t0x80EC\n0xE6C1\t0x5AAA\n0xE6C2\t0x5A9B\n0xE6C3\t0x5A77\n0xE6C4\t0x5A7A\n0xE6C5\t0x5ABE\n0xE6C6\t0x5AEB\n0xE6C7\t0x5AB2\n0xE6C8\t0x5AD2\n0xE6C9\t0x5AD4\n0xE6CA\t0x5AB8\n0xE6CB\t0x5AE0\n0xE6CC\t0x5AE3\n0xE6CD\t0x5AF1\n0xE6CE\t0x5AD6\n0xE6CF\t0x5AE6\n0xE6D0\t0x5AD8\n0xE6D1\t0x5ADC\n0xE6D2\t0x5B09\n0xE6D3\t0x5B17\n0xE6D4\t0x5B16\n0xE6D5\t0x5B32\n0xE6D6\t0x5B37\n0xE6D7\t0x5B40\n0xE6D8\t0x5C15\n0xE6D9\t0x5C1C\n0xE6DA\t0x5B5A\n0xE6DB\t0x5B65\n0xE6DC\t0x5B73\n0xE6DD\t0x5B51\n0xE6DE\t0x5B53\n0xE6DF\t0x5B62\n0xE6E0\t0x9A75\n0xE6E1\t0x9A77\n0xE6E2\t0x9A78\n0xE6E3\t0x9A7A\n0xE6E4\t0x9A7F\n0xE6E5\t0x9A7D\n0xE6E6\t0x9A80\n0xE6E7\t0x9A81\n0xE6E8\t0x9A85\n0xE6E9\t0x9A88\n0xE6EA\t0x9A8A\n0xE6EB\t0x9A90\n0xE6EC\t0x9A92\n0xE6ED\t0x9A93\n0xE6EE\t0x9A96\n0xE6EF\t0x9A98\n0xE6F0\t0x9A9B\n0xE6F1\t0x9A9C\n0xE6F2\t0x9A9D\n0xE6F3\t0x9A9F\n0xE6F4\t0x9AA0\n0xE6F5\t0x9AA2\n0xE6F6\t0x9AA3\n0xE6F7\t0x9AA5\n0xE6F8\t0x9AA7\n0xE6F9\t0x7E9F\n0xE6FA\t0x7EA1\n0xE6FB\t0x7EA3\n0xE6FC\t0x7EA5\n0xE6FD\t0x7EA8\n0xE6FE\t0x7EA9\n0xE740\t0x93CE\n0xE741\t0x93CF\n0xE742\t0x93D0\n0xE743\t0x93D1\n0xE744\t0x93D2\n0xE745\t0x93D3\n0xE746\t0x93D4\n0xE747\t0x93D5\n0xE748\t0x93D7\n0xE749\t0x93D8\n0xE74A\t0x93D9\n0xE74B\t0x93DA\n0xE74C\t0x93DB\n0xE74D\t0x93DC\n0xE74E\t0x93DD\n0xE74F\t0x93DE\n0xE750\t0x93DF\n0xE751\t0x93E0\n0xE752\t0x93E1\n0xE753\t0x93E2\n0xE754\t0x93E3\n0xE755\t0x93E4\n0xE756\t0x93E5\n0xE757\t0x93E6\n0xE758\t0x93E7\n0xE759\t0x93E8\n0xE75A\t0x93E9\n0xE75B\t0x93EA\n0xE75C\t0x93EB\n0xE75D\t0x93EC\n0xE75E\t0x93ED\n0xE75F\t0x93EE\n0xE760\t0x93EF\n0xE761\t0x93F0\n0xE762\t0x93F1\n0xE763\t0x93F2\n0xE764\t0x93F3\n0xE765\t0x93F4\n0xE766\t0x93F5\n0xE767\t0x93F6\n0xE768\t0x93F7\n0xE769\t0x93F8\n0xE76A\t0x93F9\n0xE76B\t0x93FA\n0xE76C\t0x93FB\n0xE76D\t0x93FC\n0xE76E\t0x93FD\n0xE76F\t0x93FE\n0xE770\t0x93FF\n0xE771\t0x9400\n0xE772\t0x9401\n0xE773\t0x9402\n0xE774\t0x9403\n0xE775\t0x9404\n0xE776\t0x9405\n0xE777\t0x9406\n0xE778\t0x9407\n0xE779\t0x9408\n0xE77A\t0x9409\n0xE77B\t0x940A\n0xE77C\t0x940B\n0xE77D\t0x940C\n0xE77E\t0x940D\n0xE780\t0x940E\n0xE781\t0x940F\n0xE782\t0x9410\n0xE783\t0x9411\n0xE784\t0x9412\n0xE785\t0x9413\n0xE786\t0x9414\n0xE787\t0x9415\n0xE788\t0x9416\n0xE789\t0x9417\n0xE78A\t0x9418\n0xE78B\t0x9419\n0xE78C\t0x941A\n0xE78D\t0x941B\n0xE78E\t0x941C\n0xE78F\t0x941D\n0xE790\t0x941E\n0xE791\t0x941F\n0xE792\t0x9420\n0xE793\t0x9421\n0xE794\t0x9422\n0xE795\t0x9423\n0xE796\t0x9424\n0xE797\t0x9425\n0xE798\t0x9426\n0xE799\t0x9427\n0xE79A\t0x9428\n0xE79B\t0x9429\n0xE79C\t0x942A\n0xE79D\t0x942B\n0xE79E\t0x942C\n0xE79F\t0x942D\n0xE7A0\t0x942E\n0xE7A1\t0x7EAD\n0xE7A2\t0x7EB0\n0xE7A3\t0x7EBE\n0xE7A4\t0x7EC0\n0xE7A5\t0x7EC1\n0xE7A6\t0x7EC2\n0xE7A7\t0x7EC9\n0xE7A8\t0x7ECB\n0xE7A9\t0x7ECC\n0xE7AA\t0x7ED0\n0xE7AB\t0x7ED4\n0xE7AC\t0x7ED7\n0xE7AD\t0x7EDB\n0xE7AE\t0x7EE0\n0xE7AF\t0x7EE1\n0xE7B0\t0x7EE8\n0xE7B1\t0x7EEB\n0xE7B2\t0x7EEE\n0xE7B3\t0x7EEF\n0xE7B4\t0x7EF1\n0xE7B5\t0x7EF2\n0xE7B6\t0x7F0D\n0xE7B7\t0x7EF6\n0xE7B8\t0x7EFA\n0xE7B9\t0x7EFB\n0xE7BA\t0x7EFE\n0xE7BB\t0x7F01\n0xE7BC\t0x7F02\n0xE7BD\t0x7F03\n0xE7BE\t0x7F07\n0xE7BF\t0x7F08\n0xE7C0\t0x7F0B\n0xE7C1\t0x7F0C\n0xE7C2\t0x7F0F\n0xE7C3\t0x7F11\n0xE7C4\t0x7F12\n0xE7C5\t0x7F17\n0xE7C6\t0x7F19\n0xE7C7\t0x7F1C\n0xE7C8\t0x7F1B\n0xE7C9\t0x7F1F\n0xE7CA\t0x7F21\n0xE7CB\t0x7F22\n0xE7CC\t0x7F23\n0xE7CD\t0x7F24\n0xE7CE\t0x7F25\n0xE7CF\t0x7F26\n0xE7D0\t0x7F27\n0xE7D1\t0x7F2A\n0xE7D2\t0x7F2B\n0xE7D3\t0x7F2C\n0xE7D4\t0x7F2D\n0xE7D5\t0x7F2F\n0xE7D6\t0x7F30\n0xE7D7\t0x7F31\n0xE7D8\t0x7F32\n0xE7D9\t0x7F33\n0xE7DA\t0x7F35\n0xE7DB\t0x5E7A\n0xE7DC\t0x757F\n0xE7DD\t0x5DDB\n0xE7DE\t0x753E\n0xE7DF\t0x9095\n0xE7E0\t0x738E\n0xE7E1\t0x7391\n0xE7E2\t0x73AE\n0xE7E3\t0x73A2\n0xE7E4\t0x739F\n0xE7E5\t0x73CF\n0xE7E6\t0x73C2\n0xE7E7\t0x73D1\n0xE7E8\t0x73B7\n0xE7E9\t0x73B3\n0xE7EA\t0x73C0\n0xE7EB\t0x73C9\n0xE7EC\t0x73C8\n0xE7ED\t0x73E5\n0xE7EE\t0x73D9\n0xE7EF\t0x987C\n0xE7F0\t0x740A\n0xE7F1\t0x73E9\n0xE7F2\t0x73E7\n0xE7F3\t0x73DE\n0xE7F4\t0x73BA\n0xE7F5\t0x73F2\n0xE7F6\t0x740F\n0xE7F7\t0x742A\n0xE7F8\t0x745B\n0xE7F9\t0x7426\n0xE7FA\t0x7425\n0xE7FB\t0x7428\n0xE7FC\t0x7430\n0xE7FD\t0x742E\n0xE7FE\t0x742C\n0xE840\t0x942F\n0xE841\t0x9430\n0xE842\t0x9431\n0xE843\t0x9432\n0xE844\t0x9433\n0xE845\t0x9434\n0xE846\t0x9435\n0xE847\t0x9436\n0xE848\t0x9437\n0xE849\t0x9438\n0xE84A\t0x9439\n0xE84B\t0x943A\n0xE84C\t0x943B\n0xE84D\t0x943C\n0xE84E\t0x943D\n0xE84F\t0x943F\n0xE850\t0x9440\n0xE851\t0x9441\n0xE852\t0x9442\n0xE853\t0x9443\n0xE854\t0x9444\n0xE855\t0x9445\n0xE856\t0x9446\n0xE857\t0x9447\n0xE858\t0x9448\n0xE859\t0x9449\n0xE85A\t0x944A\n0xE85B\t0x944B\n0xE85C\t0x944C\n0xE85D\t0x944D\n0xE85E\t0x944E\n0xE85F\t0x944F\n0xE860\t0x9450\n0xE861\t0x9451\n0xE862\t0x9452\n0xE863\t0x9453\n0xE864\t0x9454\n0xE865\t0x9455\n0xE866\t0x9456\n0xE867\t0x9457\n0xE868\t0x9458\n0xE869\t0x9459\n0xE86A\t0x945A\n0xE86B\t0x945B\n0xE86C\t0x945C\n0xE86D\t0x945D\n0xE86E\t0x945E\n0xE86F\t0x945F\n0xE870\t0x9460\n0xE871\t0x9461\n0xE872\t0x9462\n0xE873\t0x9463\n0xE874\t0x9464\n0xE875\t0x9465\n0xE876\t0x9466\n0xE877\t0x9467\n0xE878\t0x9468\n0xE879\t0x9469\n0xE87A\t0x946A\n0xE87B\t0x946C\n0xE87C\t0x946D\n0xE87D\t0x946E\n0xE87E\t0x946F\n0xE880\t0x9470\n0xE881\t0x9471\n0xE882\t0x9472\n0xE883\t0x9473\n0xE884\t0x9474\n0xE885\t0x9475\n0xE886\t0x9476\n0xE887\t0x9477\n0xE888\t0x9478\n0xE889\t0x9479\n0xE88A\t0x947A\n0xE88B\t0x947B\n0xE88C\t0x947C\n0xE88D\t0x947D\n0xE88E\t0x947E\n0xE88F\t0x947F\n0xE890\t0x9480\n0xE891\t0x9481\n0xE892\t0x9482\n0xE893\t0x9483\n0xE894\t0x9484\n0xE895\t0x9491\n0xE896\t0x9496\n0xE897\t0x9498\n0xE898\t0x94C7\n0xE899\t0x94CF\n0xE89A\t0x94D3\n0xE89B\t0x94D4\n0xE89C\t0x94DA\n0xE89D\t0x94E6\n0xE89E\t0x94FB\n0xE89F\t0x951C\n0xE8A0\t0x9520\n0xE8A1\t0x741B\n0xE8A2\t0x741A\n0xE8A3\t0x7441\n0xE8A4\t0x745C\n0xE8A5\t0x7457\n0xE8A6\t0x7455\n0xE8A7\t0x7459\n0xE8A8\t0x7477\n0xE8A9\t0x746D\n0xE8AA\t0x747E\n0xE8AB\t0x749C\n0xE8AC\t0x748E\n0xE8AD\t0x7480\n0xE8AE\t0x7481\n0xE8AF\t0x7487\n0xE8B0\t0x748B\n0xE8B1\t0x749E\n0xE8B2\t0x74A8\n0xE8B3\t0x74A9\n0xE8B4\t0x7490\n0xE8B5\t0x74A7\n0xE8B6\t0x74D2\n0xE8B7\t0x74BA\n0xE8B8\t0x97EA\n0xE8B9\t0x97EB\n0xE8BA\t0x97EC\n0xE8BB\t0x674C\n0xE8BC\t0x6753\n0xE8BD\t0x675E\n0xE8BE\t0x6748\n0xE8BF\t0x6769\n0xE8C0\t0x67A5\n0xE8C1\t0x6787\n0xE8C2\t0x676A\n0xE8C3\t0x6773\n0xE8C4\t0x6798\n0xE8C5\t0x67A7\n0xE8C6\t0x6775\n0xE8C7\t0x67A8\n0xE8C8\t0x679E\n0xE8C9\t0x67AD\n0xE8CA\t0x678B\n0xE8CB\t0x6777\n0xE8CC\t0x677C\n0xE8CD\t0x67F0\n0xE8CE\t0x6809\n0xE8CF\t0x67D8\n0xE8D0\t0x680A\n0xE8D1\t0x67E9\n0xE8D2\t0x67B0\n0xE8D3\t0x680C\n0xE8D4\t0x67D9\n0xE8D5\t0x67B5\n0xE8D6\t0x67DA\n0xE8D7\t0x67B3\n0xE8D8\t0x67DD\n0xE8D9\t0x6800\n0xE8DA\t0x67C3\n0xE8DB\t0x67B8\n0xE8DC\t0x67E2\n0xE8DD\t0x680E\n0xE8DE\t0x67C1\n0xE8DF\t0x67FD\n0xE8E0\t0x6832\n0xE8E1\t0x6833\n0xE8E2\t0x6860\n0xE8E3\t0x6861\n0xE8E4\t0x684E\n0xE8E5\t0x6862\n0xE8E6\t0x6844\n0xE8E7\t0x6864\n0xE8E8\t0x6883\n0xE8E9\t0x681D\n0xE8EA\t0x6855\n0xE8EB\t0x6866\n0xE8EC\t0x6841\n0xE8ED\t0x6867\n0xE8EE\t0x6840\n0xE8EF\t0x683E\n0xE8F0\t0x684A\n0xE8F1\t0x6849\n0xE8F2\t0x6829\n0xE8F3\t0x68B5\n0xE8F4\t0x688F\n0xE8F5\t0x6874\n0xE8F6\t0x6877\n0xE8F7\t0x6893\n0xE8F8\t0x686B\n0xE8F9\t0x68C2\n0xE8FA\t0x696E\n0xE8FB\t0x68FC\n0xE8FC\t0x691F\n0xE8FD\t0x6920\n0xE8FE\t0x68F9\n0xE940\t0x9527\n0xE941\t0x9533\n0xE942\t0x953D\n0xE943\t0x9543\n0xE944\t0x9548\n0xE945\t0x954B\n0xE946\t0x9555\n0xE947\t0x955A\n0xE948\t0x9560\n0xE949\t0x956E\n0xE94A\t0x9574\n0xE94B\t0x9575\n0xE94C\t0x9577\n0xE94D\t0x9578\n0xE94E\t0x9579\n0xE94F\t0x957A\n0xE950\t0x957B\n0xE951\t0x957C\n0xE952\t0x957D\n0xE953\t0x957E\n0xE954\t0x9580\n0xE955\t0x9581\n0xE956\t0x9582\n0xE957\t0x9583\n0xE958\t0x9584\n0xE959\t0x9585\n0xE95A\t0x9586\n0xE95B\t0x9587\n0xE95C\t0x9588\n0xE95D\t0x9589\n0xE95E\t0x958A\n0xE95F\t0x958B\n0xE960\t0x958C\n0xE961\t0x958D\n0xE962\t0x958E\n0xE963\t0x958F\n0xE964\t0x9590\n0xE965\t0x9591\n0xE966\t0x9592\n0xE967\t0x9593\n0xE968\t0x9594\n0xE969\t0x9595\n0xE96A\t0x9596\n0xE96B\t0x9597\n0xE96C\t0x9598\n0xE96D\t0x9599\n0xE96E\t0x959A\n0xE96F\t0x959B\n0xE970\t0x959C\n0xE971\t0x959D\n0xE972\t0x959E\n0xE973\t0x959F\n0xE974\t0x95A0\n0xE975\t0x95A1\n0xE976\t0x95A2\n0xE977\t0x95A3\n0xE978\t0x95A4\n0xE979\t0x95A5\n0xE97A\t0x95A6\n0xE97B\t0x95A7\n0xE97C\t0x95A8\n0xE97D\t0x95A9\n0xE97E\t0x95AA\n0xE980\t0x95AB\n0xE981\t0x95AC\n0xE982\t0x95AD\n0xE983\t0x95AE\n0xE984\t0x95AF\n0xE985\t0x95B0\n0xE986\t0x95B1\n0xE987\t0x95B2\n0xE988\t0x95B3\n0xE989\t0x95B4\n0xE98A\t0x95B5\n0xE98B\t0x95B6\n0xE98C\t0x95B7\n0xE98D\t0x95B8\n0xE98E\t0x95B9\n0xE98F\t0x95BA\n0xE990\t0x95BB\n0xE991\t0x95BC\n0xE992\t0x95BD\n0xE993\t0x95BE\n0xE994\t0x95BF\n0xE995\t0x95C0\n0xE996\t0x95C1\n0xE997\t0x95C2\n0xE998\t0x95C3\n0xE999\t0x95C4\n0xE99A\t0x95C5\n0xE99B\t0x95C6\n0xE99C\t0x95C7\n0xE99D\t0x95C8\n0xE99E\t0x95C9\n0xE99F\t0x95CA\n0xE9A0\t0x95CB\n0xE9A1\t0x6924\n0xE9A2\t0x68F0\n0xE9A3\t0x690B\n0xE9A4\t0x6901\n0xE9A5\t0x6957\n0xE9A6\t0x68E3\n0xE9A7\t0x6910\n0xE9A8\t0x6971\n0xE9A9\t0x6939\n0xE9AA\t0x6960\n0xE9AB\t0x6942\n0xE9AC\t0x695D\n0xE9AD\t0x6984\n0xE9AE\t0x696B\n0xE9AF\t0x6980\n0xE9B0\t0x6998\n0xE9B1\t0x6978\n0xE9B2\t0x6934\n0xE9B3\t0x69CC\n0xE9B4\t0x6987\n0xE9B5\t0x6988\n0xE9B6\t0x69CE\n0xE9B7\t0x6989\n0xE9B8\t0x6966\n0xE9B9\t0x6963\n0xE9BA\t0x6979\n0xE9BB\t0x699B\n0xE9BC\t0x69A7\n0xE9BD\t0x69BB\n0xE9BE\t0x69AB\n0xE9BF\t0x69AD\n0xE9C0\t0x69D4\n0xE9C1\t0x69B1\n0xE9C2\t0x69C1\n0xE9C3\t0x69CA\n0xE9C4\t0x69DF\n0xE9C5\t0x6995\n0xE9C6\t0x69E0\n0xE9C7\t0x698D\n0xE9C8\t0x69FF\n0xE9C9\t0x6A2F\n0xE9CA\t0x69ED\n0xE9CB\t0x6A17\n0xE9CC\t0x6A18\n0xE9CD\t0x6A65\n0xE9CE\t0x69F2\n0xE9CF\t0x6A44\n0xE9D0\t0x6A3E\n0xE9D1\t0x6AA0\n0xE9D2\t0x6A50\n0xE9D3\t0x6A5B\n0xE9D4\t0x6A35\n0xE9D5\t0x6A8E\n0xE9D6\t0x6A79\n0xE9D7\t0x6A3D\n0xE9D8\t0x6A28\n0xE9D9\t0x6A58\n0xE9DA\t0x6A7C\n0xE9DB\t0x6A91\n0xE9DC\t0x6A90\n0xE9DD\t0x6AA9\n0xE9DE\t0x6A97\n0xE9DF\t0x6AAB\n0xE9E0\t0x7337\n0xE9E1\t0x7352\n0xE9E2\t0x6B81\n0xE9E3\t0x6B82\n0xE9E4\t0x6B87\n0xE9E5\t0x6B84\n0xE9E6\t0x6B92\n0xE9E7\t0x6B93\n0xE9E8\t0x6B8D\n0xE9E9\t0x6B9A\n0xE9EA\t0x6B9B\n0xE9EB\t0x6BA1\n0xE9EC\t0x6BAA\n0xE9ED\t0x8F6B\n0xE9EE\t0x8F6D\n0xE9EF\t0x8F71\n0xE9F0\t0x8F72\n0xE9F1\t0x8F73\n0xE9F2\t0x8F75\n0xE9F3\t0x8F76\n0xE9F4\t0x8F78\n0xE9F5\t0x8F77\n0xE9F6\t0x8F79\n0xE9F7\t0x8F7A\n0xE9F8\t0x8F7C\n0xE9F9\t0x8F7E\n0xE9FA\t0x8F81\n0xE9FB\t0x8F82\n0xE9FC\t0x8F84\n0xE9FD\t0x8F87\n0xE9FE\t0x8F8B\n0xEA40\t0x95CC\n0xEA41\t0x95CD\n0xEA42\t0x95CE\n0xEA43\t0x95CF\n0xEA44\t0x95D0\n0xEA45\t0x95D1\n0xEA46\t0x95D2\n0xEA47\t0x95D3\n0xEA48\t0x95D4\n0xEA49\t0x95D5\n0xEA4A\t0x95D6\n0xEA4B\t0x95D7\n0xEA4C\t0x95D8\n0xEA4D\t0x95D9\n0xEA4E\t0x95DA\n0xEA4F\t0x95DB\n0xEA50\t0x95DC\n0xEA51\t0x95DD\n0xEA52\t0x95DE\n0xEA53\t0x95DF\n0xEA54\t0x95E0\n0xEA55\t0x95E1\n0xEA56\t0x95E2\n0xEA57\t0x95E3\n0xEA58\t0x95E4\n0xEA59\t0x95E5\n0xEA5A\t0x95E6\n0xEA5B\t0x95E7\n0xEA5C\t0x95EC\n0xEA5D\t0x95FF\n0xEA5E\t0x9607\n0xEA5F\t0x9613\n0xEA60\t0x9618\n0xEA61\t0x961B\n0xEA62\t0x961E\n0xEA63\t0x9620\n0xEA64\t0x9623\n0xEA65\t0x9624\n0xEA66\t0x9625\n0xEA67\t0x9626\n0xEA68\t0x9627\n0xEA69\t0x9628\n0xEA6A\t0x9629\n0xEA6B\t0x962B\n0xEA6C\t0x962C\n0xEA6D\t0x962D\n0xEA6E\t0x962F\n0xEA6F\t0x9630\n0xEA70\t0x9637\n0xEA71\t0x9638\n0xEA72\t0x9639\n0xEA73\t0x963A\n0xEA74\t0x963E\n0xEA75\t0x9641\n0xEA76\t0x9643\n0xEA77\t0x964A\n0xEA78\t0x964E\n0xEA79\t0x964F\n0xEA7A\t0x9651\n0xEA7B\t0x9652\n0xEA7C\t0x9653\n0xEA7D\t0x9656\n0xEA7E\t0x9657\n0xEA80\t0x9658\n0xEA81\t0x9659\n0xEA82\t0x965A\n0xEA83\t0x965C\n0xEA84\t0x965D\n0xEA85\t0x965E\n0xEA86\t0x9660\n0xEA87\t0x9663\n0xEA88\t0x9665\n0xEA89\t0x9666\n0xEA8A\t0x966B\n0xEA8B\t0x966D\n0xEA8C\t0x966E\n0xEA8D\t0x966F\n0xEA8E\t0x9670\n0xEA8F\t0x9671\n0xEA90\t0x9673\n0xEA91\t0x9678\n0xEA92\t0x9679\n0xEA93\t0x967A\n0xEA94\t0x967B\n0xEA95\t0x967C\n0xEA96\t0x967D\n0xEA97\t0x967E\n0xEA98\t0x967F\n0xEA99\t0x9680\n0xEA9A\t0x9681\n0xEA9B\t0x9682\n0xEA9C\t0x9683\n0xEA9D\t0x9684\n0xEA9E\t0x9687\n0xEA9F\t0x9689\n0xEAA0\t0x968A\n0xEAA1\t0x8F8D\n0xEAA2\t0x8F8E\n0xEAA3\t0x8F8F\n0xEAA4\t0x8F98\n0xEAA5\t0x8F9A\n0xEAA6\t0x8ECE\n0xEAA7\t0x620B\n0xEAA8\t0x6217\n0xEAA9\t0x621B\n0xEAAA\t0x621F\n0xEAAB\t0x6222\n0xEAAC\t0x6221\n0xEAAD\t0x6225\n0xEAAE\t0x6224\n0xEAAF\t0x622C\n0xEAB0\t0x81E7\n0xEAB1\t0x74EF\n0xEAB2\t0x74F4\n0xEAB3\t0x74FF\n0xEAB4\t0x750F\n0xEAB5\t0x7511\n0xEAB6\t0x7513\n0xEAB7\t0x6534\n0xEAB8\t0x65EE\n0xEAB9\t0x65EF\n0xEABA\t0x65F0\n0xEABB\t0x660A\n0xEABC\t0x6619\n0xEABD\t0x6772\n0xEABE\t0x6603\n0xEABF\t0x6615\n0xEAC0\t0x6600\n0xEAC1\t0x7085\n0xEAC2\t0x66F7\n0xEAC3\t0x661D\n0xEAC4\t0x6634\n0xEAC5\t0x6631\n0xEAC6\t0x6636\n0xEAC7\t0x6635\n0xEAC8\t0x8006\n0xEAC9\t0x665F\n0xEACA\t0x6654\n0xEACB\t0x6641\n0xEACC\t0x664F\n0xEACD\t0x6656\n0xEACE\t0x6661\n0xEACF\t0x6657\n0xEAD0\t0x6677\n0xEAD1\t0x6684\n0xEAD2\t0x668C\n0xEAD3\t0x66A7\n0xEAD4\t0x669D\n0xEAD5\t0x66BE\n0xEAD6\t0x66DB\n0xEAD7\t0x66DC\n0xEAD8\t0x66E6\n0xEAD9\t0x66E9\n0xEADA\t0x8D32\n0xEADB\t0x8D33\n0xEADC\t0x8D36\n0xEADD\t0x8D3B\n0xEADE\t0x8D3D\n0xEADF\t0x8D40\n0xEAE0\t0x8D45\n0xEAE1\t0x8D46\n0xEAE2\t0x8D48\n0xEAE3\t0x8D49\n0xEAE4\t0x8D47\n0xEAE5\t0x8D4D\n0xEAE6\t0x8D55\n0xEAE7\t0x8D59\n0xEAE8\t0x89C7\n0xEAE9\t0x89CA\n0xEAEA\t0x89CB\n0xEAEB\t0x89CC\n0xEAEC\t0x89CE\n0xEAED\t0x89CF\n0xEAEE\t0x89D0\n0xEAEF\t0x89D1\n0xEAF0\t0x726E\n0xEAF1\t0x729F\n0xEAF2\t0x725D\n0xEAF3\t0x7266\n0xEAF4\t0x726F\n0xEAF5\t0x727E\n0xEAF6\t0x727F\n0xEAF7\t0x7284\n0xEAF8\t0x728B\n0xEAF9\t0x728D\n0xEAFA\t0x728F\n0xEAFB\t0x7292\n0xEAFC\t0x6308\n0xEAFD\t0x6332\n0xEAFE\t0x63B0\n0xEB40\t0x968C\n0xEB41\t0x968E\n0xEB42\t0x9691\n0xEB43\t0x9692\n0xEB44\t0x9693\n0xEB45\t0x9695\n0xEB46\t0x9696\n0xEB47\t0x969A\n0xEB48\t0x969B\n0xEB49\t0x969D\n0xEB4A\t0x969E\n0xEB4B\t0x969F\n0xEB4C\t0x96A0\n0xEB4D\t0x96A1\n0xEB4E\t0x96A2\n0xEB4F\t0x96A3\n0xEB50\t0x96A4\n0xEB51\t0x96A5\n0xEB52\t0x96A6\n0xEB53\t0x96A8\n0xEB54\t0x96A9\n0xEB55\t0x96AA\n0xEB56\t0x96AB\n0xEB57\t0x96AC\n0xEB58\t0x96AD\n0xEB59\t0x96AE\n0xEB5A\t0x96AF\n0xEB5B\t0x96B1\n0xEB5C\t0x96B2\n0xEB5D\t0x96B4\n0xEB5E\t0x96B5\n0xEB5F\t0x96B7\n0xEB60\t0x96B8\n0xEB61\t0x96BA\n0xEB62\t0x96BB\n0xEB63\t0x96BF\n0xEB64\t0x96C2\n0xEB65\t0x96C3\n0xEB66\t0x96C8\n0xEB67\t0x96CA\n0xEB68\t0x96CB\n0xEB69\t0x96D0\n0xEB6A\t0x96D1\n0xEB6B\t0x96D3\n0xEB6C\t0x96D4\n0xEB6D\t0x96D6\n0xEB6E\t0x96D7\n0xEB6F\t0x96D8\n0xEB70\t0x96D9\n0xEB71\t0x96DA\n0xEB72\t0x96DB\n0xEB73\t0x96DC\n0xEB74\t0x96DD\n0xEB75\t0x96DE\n0xEB76\t0x96DF\n0xEB77\t0x96E1\n0xEB78\t0x96E2\n0xEB79\t0x96E3\n0xEB7A\t0x96E4\n0xEB7B\t0x96E5\n0xEB7C\t0x96E6\n0xEB7D\t0x96E7\n0xEB7E\t0x96EB\n0xEB80\t0x96EC\n0xEB81\t0x96ED\n0xEB82\t0x96EE\n0xEB83\t0x96F0\n0xEB84\t0x96F1\n0xEB85\t0x96F2\n0xEB86\t0x96F4\n0xEB87\t0x96F5\n0xEB88\t0x96F8\n0xEB89\t0x96FA\n0xEB8A\t0x96FB\n0xEB8B\t0x96FC\n0xEB8C\t0x96FD\n0xEB8D\t0x96FF\n0xEB8E\t0x9702\n0xEB8F\t0x9703\n0xEB90\t0x9705\n0xEB91\t0x970A\n0xEB92\t0x970B\n0xEB93\t0x970C\n0xEB94\t0x9710\n0xEB95\t0x9711\n0xEB96\t0x9712\n0xEB97\t0x9714\n0xEB98\t0x9715\n0xEB99\t0x9717\n0xEB9A\t0x9718\n0xEB9B\t0x9719\n0xEB9C\t0x971A\n0xEB9D\t0x971B\n0xEB9E\t0x971D\n0xEB9F\t0x971F\n0xEBA0\t0x9720\n0xEBA1\t0x643F\n0xEBA2\t0x64D8\n0xEBA3\t0x8004\n0xEBA4\t0x6BEA\n0xEBA5\t0x6BF3\n0xEBA6\t0x6BFD\n0xEBA7\t0x6BF5\n0xEBA8\t0x6BF9\n0xEBA9\t0x6C05\n0xEBAA\t0x6C07\n0xEBAB\t0x6C06\n0xEBAC\t0x6C0D\n0xEBAD\t0x6C15\n0xEBAE\t0x6C18\n0xEBAF\t0x6C19\n0xEBB0\t0x6C1A\n0xEBB1\t0x6C21\n0xEBB2\t0x6C29\n0xEBB3\t0x6C24\n0xEBB4\t0x6C2A\n0xEBB5\t0x6C32\n0xEBB6\t0x6535\n0xEBB7\t0x6555\n0xEBB8\t0x656B\n0xEBB9\t0x724D\n0xEBBA\t0x7252\n0xEBBB\t0x7256\n0xEBBC\t0x7230\n0xEBBD\t0x8662\n0xEBBE\t0x5216\n0xEBBF\t0x809F\n0xEBC0\t0x809C\n0xEBC1\t0x8093\n0xEBC2\t0x80BC\n0xEBC3\t0x670A\n0xEBC4\t0x80BD\n0xEBC5\t0x80B1\n0xEBC6\t0x80AB\n0xEBC7\t0x80AD\n0xEBC8\t0x80B4\n0xEBC9\t0x80B7\n0xEBCA\t0x80E7\n0xEBCB\t0x80E8\n0xEBCC\t0x80E9\n0xEBCD\t0x80EA\n0xEBCE\t0x80DB\n0xEBCF\t0x80C2\n0xEBD0\t0x80C4\n0xEBD1\t0x80D9\n0xEBD2\t0x80CD\n0xEBD3\t0x80D7\n0xEBD4\t0x6710\n0xEBD5\t0x80DD\n0xEBD6\t0x80EB\n0xEBD7\t0x80F1\n0xEBD8\t0x80F4\n0xEBD9\t0x80ED\n0xEBDA\t0x810D\n0xEBDB\t0x810E\n0xEBDC\t0x80F2\n0xEBDD\t0x80FC\n0xEBDE\t0x6715\n0xEBDF\t0x8112\n0xEBE0\t0x8C5A\n0xEBE1\t0x8136\n0xEBE2\t0x811E\n0xEBE3\t0x812C\n0xEBE4\t0x8118\n0xEBE5\t0x8132\n0xEBE6\t0x8148\n0xEBE7\t0x814C\n0xEBE8\t0x8153\n0xEBE9\t0x8174\n0xEBEA\t0x8159\n0xEBEB\t0x815A\n0xEBEC\t0x8171\n0xEBED\t0x8160\n0xEBEE\t0x8169\n0xEBEF\t0x817C\n0xEBF0\t0x817D\n0xEBF1\t0x816D\n0xEBF2\t0x8167\n0xEBF3\t0x584D\n0xEBF4\t0x5AB5\n0xEBF5\t0x8188\n0xEBF6\t0x8182\n0xEBF7\t0x8191\n0xEBF8\t0x6ED5\n0xEBF9\t0x81A3\n0xEBFA\t0x81AA\n0xEBFB\t0x81CC\n0xEBFC\t0x6726\n0xEBFD\t0x81CA\n0xEBFE\t0x81BB\n0xEC40\t0x9721\n0xEC41\t0x9722\n0xEC42\t0x9723\n0xEC43\t0x9724\n0xEC44\t0x9725\n0xEC45\t0x9726\n0xEC46\t0x9727\n0xEC47\t0x9728\n0xEC48\t0x9729\n0xEC49\t0x972B\n0xEC4A\t0x972C\n0xEC4B\t0x972E\n0xEC4C\t0x972F\n0xEC4D\t0x9731\n0xEC4E\t0x9733\n0xEC4F\t0x9734\n0xEC50\t0x9735\n0xEC51\t0x9736\n0xEC52\t0x9737\n0xEC53\t0x973A\n0xEC54\t0x973B\n0xEC55\t0x973C\n0xEC56\t0x973D\n0xEC57\t0x973F\n0xEC58\t0x9740\n0xEC59\t0x9741\n0xEC5A\t0x9742\n0xEC5B\t0x9743\n0xEC5C\t0x9744\n0xEC5D\t0x9745\n0xEC5E\t0x9746\n0xEC5F\t0x9747\n0xEC60\t0x9748\n0xEC61\t0x9749\n0xEC62\t0x974A\n0xEC63\t0x974B\n0xEC64\t0x974C\n0xEC65\t0x974D\n0xEC66\t0x974E\n0xEC67\t0x974F\n0xEC68\t0x9750\n0xEC69\t0x9751\n0xEC6A\t0x9754\n0xEC6B\t0x9755\n0xEC6C\t0x9757\n0xEC6D\t0x9758\n0xEC6E\t0x975A\n0xEC6F\t0x975C\n0xEC70\t0x975D\n0xEC71\t0x975F\n0xEC72\t0x9763\n0xEC73\t0x9764\n0xEC74\t0x9766\n0xEC75\t0x9767\n0xEC76\t0x9768\n0xEC77\t0x976A\n0xEC78\t0x976B\n0xEC79\t0x976C\n0xEC7A\t0x976D\n0xEC7B\t0x976E\n0xEC7C\t0x976F\n0xEC7D\t0x9770\n0xEC7E\t0x9771\n0xEC80\t0x9772\n0xEC81\t0x9775\n0xEC82\t0x9777\n0xEC83\t0x9778\n0xEC84\t0x9779\n0xEC85\t0x977A\n0xEC86\t0x977B\n0xEC87\t0x977D\n0xEC88\t0x977E\n0xEC89\t0x977F\n0xEC8A\t0x9780\n0xEC8B\t0x9781\n0xEC8C\t0x9782\n0xEC8D\t0x9783\n0xEC8E\t0x9784\n0xEC8F\t0x9786\n0xEC90\t0x9787\n0xEC91\t0x9788\n0xEC92\t0x9789\n0xEC93\t0x978A\n0xEC94\t0x978C\n0xEC95\t0x978E\n0xEC96\t0x978F\n0xEC97\t0x9790\n0xEC98\t0x9793\n0xEC99\t0x9795\n0xEC9A\t0x9796\n0xEC9B\t0x9797\n0xEC9C\t0x9799\n0xEC9D\t0x979A\n0xEC9E\t0x979B\n0xEC9F\t0x979C\n0xECA0\t0x979D\n0xECA1\t0x81C1\n0xECA2\t0x81A6\n0xECA3\t0x6B24\n0xECA4\t0x6B37\n0xECA5\t0x6B39\n0xECA6\t0x6B43\n0xECA7\t0x6B46\n0xECA8\t0x6B59\n0xECA9\t0x98D1\n0xECAA\t0x98D2\n0xECAB\t0x98D3\n0xECAC\t0x98D5\n0xECAD\t0x98D9\n0xECAE\t0x98DA\n0xECAF\t0x6BB3\n0xECB0\t0x5F40\n0xECB1\t0x6BC2\n0xECB2\t0x89F3\n0xECB3\t0x6590\n0xECB4\t0x9F51\n0xECB5\t0x6593\n0xECB6\t0x65BC\n0xECB7\t0x65C6\n0xECB8\t0x65C4\n0xECB9\t0x65C3\n0xECBA\t0x65CC\n0xECBB\t0x65CE\n0xECBC\t0x65D2\n0xECBD\t0x65D6\n0xECBE\t0x7080\n0xECBF\t0x709C\n0xECC0\t0x7096\n0xECC1\t0x709D\n0xECC2\t0x70BB\n0xECC3\t0x70C0\n0xECC4\t0x70B7\n0xECC5\t0x70AB\n0xECC6\t0x70B1\n0xECC7\t0x70E8\n0xECC8\t0x70CA\n0xECC9\t0x7110\n0xECCA\t0x7113\n0xECCB\t0x7116\n0xECCC\t0x712F\n0xECCD\t0x7131\n0xECCE\t0x7173\n0xECCF\t0x715C\n0xECD0\t0x7168\n0xECD1\t0x7145\n0xECD2\t0x7172\n0xECD3\t0x714A\n0xECD4\t0x7178\n0xECD5\t0x717A\n0xECD6\t0x7198\n0xECD7\t0x71B3\n0xECD8\t0x71B5\n0xECD9\t0x71A8\n0xECDA\t0x71A0\n0xECDB\t0x71E0\n0xECDC\t0x71D4\n0xECDD\t0x71E7\n0xECDE\t0x71F9\n0xECDF\t0x721D\n0xECE0\t0x7228\n0xECE1\t0x706C\n0xECE2\t0x7118\n0xECE3\t0x7166\n0xECE4\t0x71B9\n0xECE5\t0x623E\n0xECE6\t0x623D\n0xECE7\t0x6243\n0xECE8\t0x6248\n0xECE9\t0x6249\n0xECEA\t0x793B\n0xECEB\t0x7940\n0xECEC\t0x7946\n0xECED\t0x7949\n0xECEE\t0x795B\n0xECEF\t0x795C\n0xECF0\t0x7953\n0xECF1\t0x795A\n0xECF2\t0x7962\n0xECF3\t0x7957\n0xECF4\t0x7960\n0xECF5\t0x796F\n0xECF6\t0x7967\n0xECF7\t0x797A\n0xECF8\t0x7985\n0xECF9\t0x798A\n0xECFA\t0x799A\n0xECFB\t0x79A7\n0xECFC\t0x79B3\n0xECFD\t0x5FD1\n0xECFE\t0x5FD0\n0xED40\t0x979E\n0xED41\t0x979F\n0xED42\t0x97A1\n0xED43\t0x97A2\n0xED44\t0x97A4\n0xED45\t0x97A5\n0xED46\t0x97A6\n0xED47\t0x97A7\n0xED48\t0x97A8\n0xED49\t0x97A9\n0xED4A\t0x97AA\n0xED4B\t0x97AC\n0xED4C\t0x97AE\n0xED4D\t0x97B0\n0xED4E\t0x97B1\n0xED4F\t0x97B3\n0xED50\t0x97B5\n0xED51\t0x97B6\n0xED52\t0x97B7\n0xED53\t0x97B8\n0xED54\t0x97B9\n0xED55\t0x97BA\n0xED56\t0x97BB\n0xED57\t0x97BC\n0xED58\t0x97BD\n0xED59\t0x97BE\n0xED5A\t0x97BF\n0xED5B\t0x97C0\n0xED5C\t0x97C1\n0xED5D\t0x97C2\n0xED5E\t0x97C3\n0xED5F\t0x97C4\n0xED60\t0x97C5\n0xED61\t0x97C6\n0xED62\t0x97C7\n0xED63\t0x97C8\n0xED64\t0x97C9\n0xED65\t0x97CA\n0xED66\t0x97CB\n0xED67\t0x97CC\n0xED68\t0x97CD\n0xED69\t0x97CE\n0xED6A\t0x97CF\n0xED6B\t0x97D0\n0xED6C\t0x97D1\n0xED6D\t0x97D2\n0xED6E\t0x97D3\n0xED6F\t0x97D4\n0xED70\t0x97D5\n0xED71\t0x97D6\n0xED72\t0x97D7\n0xED73\t0x97D8\n0xED74\t0x97D9\n0xED75\t0x97DA\n0xED76\t0x97DB\n0xED77\t0x97DC\n0xED78\t0x97DD\n0xED79\t0x97DE\n0xED7A\t0x97DF\n0xED7B\t0x97E0\n0xED7C\t0x97E1\n0xED7D\t0x97E2\n0xED7E\t0x97E3\n0xED80\t0x97E4\n0xED81\t0x97E5\n0xED82\t0x97E8\n0xED83\t0x97EE\n0xED84\t0x97EF\n0xED85\t0x97F0\n0xED86\t0x97F1\n0xED87\t0x97F2\n0xED88\t0x97F4\n0xED89\t0x97F7\n0xED8A\t0x97F8\n0xED8B\t0x97F9\n0xED8C\t0x97FA\n0xED8D\t0x97FB\n0xED8E\t0x97FC\n0xED8F\t0x97FD\n0xED90\t0x97FE\n0xED91\t0x97FF\n0xED92\t0x9800\n0xED93\t0x9801\n0xED94\t0x9802\n0xED95\t0x9803\n0xED96\t0x9804\n0xED97\t0x9805\n0xED98\t0x9806\n0xED99\t0x9807\n0xED9A\t0x9808\n0xED9B\t0x9809\n0xED9C\t0x980A\n0xED9D\t0x980B\n0xED9E\t0x980C\n0xED9F\t0x980D\n0xEDA0\t0x980E\n0xEDA1\t0x603C\n0xEDA2\t0x605D\n0xEDA3\t0x605A\n0xEDA4\t0x6067\n0xEDA5\t0x6041\n0xEDA6\t0x6059\n0xEDA7\t0x6063\n0xEDA8\t0x60AB\n0xEDA9\t0x6106\n0xEDAA\t0x610D\n0xEDAB\t0x615D\n0xEDAC\t0x61A9\n0xEDAD\t0x619D\n0xEDAE\t0x61CB\n0xEDAF\t0x61D1\n0xEDB0\t0x6206\n0xEDB1\t0x8080\n0xEDB2\t0x807F\n0xEDB3\t0x6C93\n0xEDB4\t0x6CF6\n0xEDB5\t0x6DFC\n0xEDB6\t0x77F6\n0xEDB7\t0x77F8\n0xEDB8\t0x7800\n0xEDB9\t0x7809\n0xEDBA\t0x7817\n0xEDBB\t0x7818\n0xEDBC\t0x7811\n0xEDBD\t0x65AB\n0xEDBE\t0x782D\n0xEDBF\t0x781C\n0xEDC0\t0x781D\n0xEDC1\t0x7839\n0xEDC2\t0x783A\n0xEDC3\t0x783B\n0xEDC4\t0x781F\n0xEDC5\t0x783C\n0xEDC6\t0x7825\n0xEDC7\t0x782C\n0xEDC8\t0x7823\n0xEDC9\t0x7829\n0xEDCA\t0x784E\n0xEDCB\t0x786D\n0xEDCC\t0x7856\n0xEDCD\t0x7857\n0xEDCE\t0x7826\n0xEDCF\t0x7850\n0xEDD0\t0x7847\n0xEDD1\t0x784C\n0xEDD2\t0x786A\n0xEDD3\t0x789B\n0xEDD4\t0x7893\n0xEDD5\t0x789A\n0xEDD6\t0x7887\n0xEDD7\t0x789C\n0xEDD8\t0x78A1\n0xEDD9\t0x78A3\n0xEDDA\t0x78B2\n0xEDDB\t0x78B9\n0xEDDC\t0x78A5\n0xEDDD\t0x78D4\n0xEDDE\t0x78D9\n0xEDDF\t0x78C9\n0xEDE0\t0x78EC\n0xEDE1\t0x78F2\n0xEDE2\t0x7905\n0xEDE3\t0x78F4\n0xEDE4\t0x7913\n0xEDE5\t0x7924\n0xEDE6\t0x791E\n0xEDE7\t0x7934\n0xEDE8\t0x9F9B\n0xEDE9\t0x9EF9\n0xEDEA\t0x9EFB\n0xEDEB\t0x9EFC\n0xEDEC\t0x76F1\n0xEDED\t0x7704\n0xEDEE\t0x770D\n0xEDEF\t0x76F9\n0xEDF0\t0x7707\n0xEDF1\t0x7708\n0xEDF2\t0x771A\n0xEDF3\t0x7722\n0xEDF4\t0x7719\n0xEDF5\t0x772D\n0xEDF6\t0x7726\n0xEDF7\t0x7735\n0xEDF8\t0x7738\n0xEDF9\t0x7750\n0xEDFA\t0x7751\n0xEDFB\t0x7747\n0xEDFC\t0x7743\n0xEDFD\t0x775A\n0xEDFE\t0x7768\n0xEE40\t0x980F\n0xEE41\t0x9810\n0xEE42\t0x9811\n0xEE43\t0x9812\n0xEE44\t0x9813\n0xEE45\t0x9814\n0xEE46\t0x9815\n0xEE47\t0x9816\n0xEE48\t0x9817\n0xEE49\t0x9818\n0xEE4A\t0x9819\n0xEE4B\t0x981A\n0xEE4C\t0x981B\n0xEE4D\t0x981C\n0xEE4E\t0x981D\n0xEE4F\t0x981E\n0xEE50\t0x981F\n0xEE51\t0x9820\n0xEE52\t0x9821\n0xEE53\t0x9822\n0xEE54\t0x9823\n0xEE55\t0x9824\n0xEE56\t0x9825\n0xEE57\t0x9826\n0xEE58\t0x9827\n0xEE59\t0x9828\n0xEE5A\t0x9829\n0xEE5B\t0x982A\n0xEE5C\t0x982B\n0xEE5D\t0x982C\n0xEE5E\t0x982D\n0xEE5F\t0x982E\n0xEE60\t0x982F\n0xEE61\t0x9830\n0xEE62\t0x9831\n0xEE63\t0x9832\n0xEE64\t0x9833\n0xEE65\t0x9834\n0xEE66\t0x9835\n0xEE67\t0x9836\n0xEE68\t0x9837\n0xEE69\t0x9838\n0xEE6A\t0x9839\n0xEE6B\t0x983A\n0xEE6C\t0x983B\n0xEE6D\t0x983C\n0xEE6E\t0x983D\n0xEE6F\t0x983E\n0xEE70\t0x983F\n0xEE71\t0x9840\n0xEE72\t0x9841\n0xEE73\t0x9842\n0xEE74\t0x9843\n0xEE75\t0x9844\n0xEE76\t0x9845\n0xEE77\t0x9846\n0xEE78\t0x9847\n0xEE79\t0x9848\n0xEE7A\t0x9849\n0xEE7B\t0x984A\n0xEE7C\t0x984B\n0xEE7D\t0x984C\n0xEE7E\t0x984D\n0xEE80\t0x984E\n0xEE81\t0x984F\n0xEE82\t0x9850\n0xEE83\t0x9851\n0xEE84\t0x9852\n0xEE85\t0x9853\n0xEE86\t0x9854\n0xEE87\t0x9855\n0xEE88\t0x9856\n0xEE89\t0x9857\n0xEE8A\t0x9858\n0xEE8B\t0x9859\n0xEE8C\t0x985A\n0xEE8D\t0x985B\n0xEE8E\t0x985C\n0xEE8F\t0x985D\n0xEE90\t0x985E\n0xEE91\t0x985F\n0xEE92\t0x9860\n0xEE93\t0x9861\n0xEE94\t0x9862\n0xEE95\t0x9863\n0xEE96\t0x9864\n0xEE97\t0x9865\n0xEE98\t0x9866\n0xEE99\t0x9867\n0xEE9A\t0x9868\n0xEE9B\t0x9869\n0xEE9C\t0x986A\n0xEE9D\t0x986B\n0xEE9E\t0x986C\n0xEE9F\t0x986D\n0xEEA0\t0x986E\n0xEEA1\t0x7762\n0xEEA2\t0x7765\n0xEEA3\t0x777F\n0xEEA4\t0x778D\n0xEEA5\t0x777D\n0xEEA6\t0x7780\n0xEEA7\t0x778C\n0xEEA8\t0x7791\n0xEEA9\t0x779F\n0xEEAA\t0x77A0\n0xEEAB\t0x77B0\n0xEEAC\t0x77B5\n0xEEAD\t0x77BD\n0xEEAE\t0x753A\n0xEEAF\t0x7540\n0xEEB0\t0x754E\n0xEEB1\t0x754B\n0xEEB2\t0x7548\n0xEEB3\t0x755B\n0xEEB4\t0x7572\n0xEEB5\t0x7579\n0xEEB6\t0x7583\n0xEEB7\t0x7F58\n0xEEB8\t0x7F61\n0xEEB9\t0x7F5F\n0xEEBA\t0x8A48\n0xEEBB\t0x7F68\n0xEEBC\t0x7F74\n0xEEBD\t0x7F71\n0xEEBE\t0x7F79\n0xEEBF\t0x7F81\n0xEEC0\t0x7F7E\n0xEEC1\t0x76CD\n0xEEC2\t0x76E5\n0xEEC3\t0x8832\n0xEEC4\t0x9485\n0xEEC5\t0x9486\n0xEEC6\t0x9487\n0xEEC7\t0x948B\n0xEEC8\t0x948A\n0xEEC9\t0x948C\n0xEECA\t0x948D\n0xEECB\t0x948F\n0xEECC\t0x9490\n0xEECD\t0x9494\n0xEECE\t0x9497\n0xEECF\t0x9495\n0xEED0\t0x949A\n0xEED1\t0x949B\n0xEED2\t0x949C\n0xEED3\t0x94A3\n0xEED4\t0x94A4\n0xEED5\t0x94AB\n0xEED6\t0x94AA\n0xEED7\t0x94AD\n0xEED8\t0x94AC\n0xEED9\t0x94AF\n0xEEDA\t0x94B0\n0xEEDB\t0x94B2\n0xEEDC\t0x94B4\n0xEEDD\t0x94B6\n0xEEDE\t0x94B7\n0xEEDF\t0x94B8\n0xEEE0\t0x94B9\n0xEEE1\t0x94BA\n0xEEE2\t0x94BC\n0xEEE3\t0x94BD\n0xEEE4\t0x94BF\n0xEEE5\t0x94C4\n0xEEE6\t0x94C8\n0xEEE7\t0x94C9\n0xEEE8\t0x94CA\n0xEEE9\t0x94CB\n0xEEEA\t0x94CC\n0xEEEB\t0x94CD\n0xEEEC\t0x94CE\n0xEEED\t0x94D0\n0xEEEE\t0x94D1\n0xEEEF\t0x94D2\n0xEEF0\t0x94D5\n0xEEF1\t0x94D6\n0xEEF2\t0x94D7\n0xEEF3\t0x94D9\n0xEEF4\t0x94D8\n0xEEF5\t0x94DB\n0xEEF6\t0x94DE\n0xEEF7\t0x94DF\n0xEEF8\t0x94E0\n0xEEF9\t0x94E2\n0xEEFA\t0x94E4\n0xEEFB\t0x94E5\n0xEEFC\t0x94E7\n0xEEFD\t0x94E8\n0xEEFE\t0x94EA\n0xEF40\t0x986F\n0xEF41\t0x9870\n0xEF42\t0x9871\n0xEF43\t0x9872\n0xEF44\t0x9873\n0xEF45\t0x9874\n0xEF46\t0x988B\n0xEF47\t0x988E\n0xEF48\t0x9892\n0xEF49\t0x9895\n0xEF4A\t0x9899\n0xEF4B\t0x98A3\n0xEF4C\t0x98A8\n0xEF4D\t0x98A9\n0xEF4E\t0x98AA\n0xEF4F\t0x98AB\n0xEF50\t0x98AC\n0xEF51\t0x98AD\n0xEF52\t0x98AE\n0xEF53\t0x98AF\n0xEF54\t0x98B0\n0xEF55\t0x98B1\n0xEF56\t0x98B2\n0xEF57\t0x98B3\n0xEF58\t0x98B4\n0xEF59\t0x98B5\n0xEF5A\t0x98B6\n0xEF5B\t0x98B7\n0xEF5C\t0x98B8\n0xEF5D\t0x98B9\n0xEF5E\t0x98BA\n0xEF5F\t0x98BB\n0xEF60\t0x98BC\n0xEF61\t0x98BD\n0xEF62\t0x98BE\n0xEF63\t0x98BF\n0xEF64\t0x98C0\n0xEF65\t0x98C1\n0xEF66\t0x98C2\n0xEF67\t0x98C3\n0xEF68\t0x98C4\n0xEF69\t0x98C5\n0xEF6A\t0x98C6\n0xEF6B\t0x98C7\n0xEF6C\t0x98C8\n0xEF6D\t0x98C9\n0xEF6E\t0x98CA\n0xEF6F\t0x98CB\n0xEF70\t0x98CC\n0xEF71\t0x98CD\n0xEF72\t0x98CF\n0xEF73\t0x98D0\n0xEF74\t0x98D4\n0xEF75\t0x98D6\n0xEF76\t0x98D7\n0xEF77\t0x98DB\n0xEF78\t0x98DC\n0xEF79\t0x98DD\n0xEF7A\t0x98E0\n0xEF7B\t0x98E1\n0xEF7C\t0x98E2\n0xEF7D\t0x98E3\n0xEF7E\t0x98E4\n0xEF80\t0x98E5\n0xEF81\t0x98E6\n0xEF82\t0x98E9\n0xEF83\t0x98EA\n0xEF84\t0x98EB\n0xEF85\t0x98EC\n0xEF86\t0x98ED\n0xEF87\t0x98EE\n0xEF88\t0x98EF\n0xEF89\t0x98F0\n0xEF8A\t0x98F1\n0xEF8B\t0x98F2\n0xEF8C\t0x98F3\n0xEF8D\t0x98F4\n0xEF8E\t0x98F5\n0xEF8F\t0x98F6\n0xEF90\t0x98F7\n0xEF91\t0x98F8\n0xEF92\t0x98F9\n0xEF93\t0x98FA\n0xEF94\t0x98FB\n0xEF95\t0x98FC\n0xEF96\t0x98FD\n0xEF97\t0x98FE\n0xEF98\t0x98FF\n0xEF99\t0x9900\n0xEF9A\t0x9901\n0xEF9B\t0x9902\n0xEF9C\t0x9903\n0xEF9D\t0x9904\n0xEF9E\t0x9905\n0xEF9F\t0x9906\n0xEFA0\t0x9907\n0xEFA1\t0x94E9\n0xEFA2\t0x94EB\n0xEFA3\t0x94EE\n0xEFA4\t0x94EF\n0xEFA5\t0x94F3\n0xEFA6\t0x94F4\n0xEFA7\t0x94F5\n0xEFA8\t0x94F7\n0xEFA9\t0x94F9\n0xEFAA\t0x94FC\n0xEFAB\t0x94FD\n0xEFAC\t0x94FF\n0xEFAD\t0x9503\n0xEFAE\t0x9502\n0xEFAF\t0x9506\n0xEFB0\t0x9507\n0xEFB1\t0x9509\n0xEFB2\t0x950A\n0xEFB3\t0x950D\n0xEFB4\t0x950E\n0xEFB5\t0x950F\n0xEFB6\t0x9512\n0xEFB7\t0x9513\n0xEFB8\t0x9514\n0xEFB9\t0x9515\n0xEFBA\t0x9516\n0xEFBB\t0x9518\n0xEFBC\t0x951B\n0xEFBD\t0x951D\n0xEFBE\t0x951E\n0xEFBF\t0x951F\n0xEFC0\t0x9522\n0xEFC1\t0x952A\n0xEFC2\t0x952B\n0xEFC3\t0x9529\n0xEFC4\t0x952C\n0xEFC5\t0x9531\n0xEFC6\t0x9532\n0xEFC7\t0x9534\n0xEFC8\t0x9536\n0xEFC9\t0x9537\n0xEFCA\t0x9538\n0xEFCB\t0x953C\n0xEFCC\t0x953E\n0xEFCD\t0x953F\n0xEFCE\t0x9542\n0xEFCF\t0x9535\n0xEFD0\t0x9544\n0xEFD1\t0x9545\n0xEFD2\t0x9546\n0xEFD3\t0x9549\n0xEFD4\t0x954C\n0xEFD5\t0x954E\n0xEFD6\t0x954F\n0xEFD7\t0x9552\n0xEFD8\t0x9553\n0xEFD9\t0x9554\n0xEFDA\t0x9556\n0xEFDB\t0x9557\n0xEFDC\t0x9558\n0xEFDD\t0x9559\n0xEFDE\t0x955B\n0xEFDF\t0x955E\n0xEFE0\t0x955F\n0xEFE1\t0x955D\n0xEFE2\t0x9561\n0xEFE3\t0x9562\n0xEFE4\t0x9564\n0xEFE5\t0x9565\n0xEFE6\t0x9566\n0xEFE7\t0x9567\n0xEFE8\t0x9568\n0xEFE9\t0x9569\n0xEFEA\t0x956A\n0xEFEB\t0x956B\n0xEFEC\t0x956C\n0xEFED\t0x956F\n0xEFEE\t0x9571\n0xEFEF\t0x9572\n0xEFF0\t0x9573\n0xEFF1\t0x953A\n0xEFF2\t0x77E7\n0xEFF3\t0x77EC\n0xEFF4\t0x96C9\n0xEFF5\t0x79D5\n0xEFF6\t0x79ED\n0xEFF7\t0x79E3\n0xEFF8\t0x79EB\n0xEFF9\t0x7A06\n0xEFFA\t0x5D47\n0xEFFB\t0x7A03\n0xEFFC\t0x7A02\n0xEFFD\t0x7A1E\n0xEFFE\t0x7A14\n0xF040\t0x9908\n0xF041\t0x9909\n0xF042\t0x990A\n0xF043\t0x990B\n0xF044\t0x990C\n0xF045\t0x990E\n0xF046\t0x990F\n0xF047\t0x9911\n0xF048\t0x9912\n0xF049\t0x9913\n0xF04A\t0x9914\n0xF04B\t0x9915\n0xF04C\t0x9916\n0xF04D\t0x9917\n0xF04E\t0x9918\n0xF04F\t0x9919\n0xF050\t0x991A\n0xF051\t0x991B\n0xF052\t0x991C\n0xF053\t0x991D\n0xF054\t0x991E\n0xF055\t0x991F\n0xF056\t0x9920\n0xF057\t0x9921\n0xF058\t0x9922\n0xF059\t0x9923\n0xF05A\t0x9924\n0xF05B\t0x9925\n0xF05C\t0x9926\n0xF05D\t0x9927\n0xF05E\t0x9928\n0xF05F\t0x9929\n0xF060\t0x992A\n0xF061\t0x992B\n0xF062\t0x992C\n0xF063\t0x992D\n0xF064\t0x992F\n0xF065\t0x9930\n0xF066\t0x9931\n0xF067\t0x9932\n0xF068\t0x9933\n0xF069\t0x9934\n0xF06A\t0x9935\n0xF06B\t0x9936\n0xF06C\t0x9937\n0xF06D\t0x9938\n0xF06E\t0x9939\n0xF06F\t0x993A\n0xF070\t0x993B\n0xF071\t0x993C\n0xF072\t0x993D\n0xF073\t0x993E\n0xF074\t0x993F\n0xF075\t0x9940\n0xF076\t0x9941\n0xF077\t0x9942\n0xF078\t0x9943\n0xF079\t0x9944\n0xF07A\t0x9945\n0xF07B\t0x9946\n0xF07C\t0x9947\n0xF07D\t0x9948\n0xF07E\t0x9949\n0xF080\t0x994A\n0xF081\t0x994B\n0xF082\t0x994C\n0xF083\t0x994D\n0xF084\t0x994E\n0xF085\t0x994F\n0xF086\t0x9950\n0xF087\t0x9951\n0xF088\t0x9952\n0xF089\t0x9953\n0xF08A\t0x9956\n0xF08B\t0x9957\n0xF08C\t0x9958\n0xF08D\t0x9959\n0xF08E\t0x995A\n0xF08F\t0x995B\n0xF090\t0x995C\n0xF091\t0x995D\n0xF092\t0x995E\n0xF093\t0x995F\n0xF094\t0x9960\n0xF095\t0x9961\n0xF096\t0x9962\n0xF097\t0x9964\n0xF098\t0x9966\n0xF099\t0x9973\n0xF09A\t0x9978\n0xF09B\t0x9979\n0xF09C\t0x997B\n0xF09D\t0x997E\n0xF09E\t0x9982\n0xF09F\t0x9983\n0xF0A0\t0x9989\n0xF0A1\t0x7A39\n0xF0A2\t0x7A37\n0xF0A3\t0x7A51\n0xF0A4\t0x9ECF\n0xF0A5\t0x99A5\n0xF0A6\t0x7A70\n0xF0A7\t0x7688\n0xF0A8\t0x768E\n0xF0A9\t0x7693\n0xF0AA\t0x7699\n0xF0AB\t0x76A4\n0xF0AC\t0x74DE\n0xF0AD\t0x74E0\n0xF0AE\t0x752C\n0xF0AF\t0x9E20\n0xF0B0\t0x9E22\n0xF0B1\t0x9E28\n0xF0B2\t0x9E29\n0xF0B3\t0x9E2A\n0xF0B4\t0x9E2B\n0xF0B5\t0x9E2C\n0xF0B6\t0x9E32\n0xF0B7\t0x9E31\n0xF0B8\t0x9E36\n0xF0B9\t0x9E38\n0xF0BA\t0x9E37\n0xF0BB\t0x9E39\n0xF0BC\t0x9E3A\n0xF0BD\t0x9E3E\n0xF0BE\t0x9E41\n0xF0BF\t0x9E42\n0xF0C0\t0x9E44\n0xF0C1\t0x9E46\n0xF0C2\t0x9E47\n0xF0C3\t0x9E48\n0xF0C4\t0x9E49\n0xF0C5\t0x9E4B\n0xF0C6\t0x9E4C\n0xF0C7\t0x9E4E\n0xF0C8\t0x9E51\n0xF0C9\t0x9E55\n0xF0CA\t0x9E57\n0xF0CB\t0x9E5A\n0xF0CC\t0x9E5B\n0xF0CD\t0x9E5C\n0xF0CE\t0x9E5E\n0xF0CF\t0x9E63\n0xF0D0\t0x9E66\n0xF0D1\t0x9E67\n0xF0D2\t0x9E68\n0xF0D3\t0x9E69\n0xF0D4\t0x9E6A\n0xF0D5\t0x9E6B\n0xF0D6\t0x9E6C\n0xF0D7\t0x9E71\n0xF0D8\t0x9E6D\n0xF0D9\t0x9E73\n0xF0DA\t0x7592\n0xF0DB\t0x7594\n0xF0DC\t0x7596\n0xF0DD\t0x75A0\n0xF0DE\t0x759D\n0xF0DF\t0x75AC\n0xF0E0\t0x75A3\n0xF0E1\t0x75B3\n0xF0E2\t0x75B4\n0xF0E3\t0x75B8\n0xF0E4\t0x75C4\n0xF0E5\t0x75B1\n0xF0E6\t0x75B0\n0xF0E7\t0x75C3\n0xF0E8\t0x75C2\n0xF0E9\t0x75D6\n0xF0EA\t0x75CD\n0xF0EB\t0x75E3\n0xF0EC\t0x75E8\n0xF0ED\t0x75E6\n0xF0EE\t0x75E4\n0xF0EF\t0x75EB\n0xF0F0\t0x75E7\n0xF0F1\t0x7603\n0xF0F2\t0x75F1\n0xF0F3\t0x75FC\n0xF0F4\t0x75FF\n0xF0F5\t0x7610\n0xF0F6\t0x7600\n0xF0F7\t0x7605\n0xF0F8\t0x760C\n0xF0F9\t0x7617\n0xF0FA\t0x760A\n0xF0FB\t0x7625\n0xF0FC\t0x7618\n0xF0FD\t0x7615\n0xF0FE\t0x7619\n0xF140\t0x998C\n0xF141\t0x998E\n0xF142\t0x999A\n0xF143\t0x999B\n0xF144\t0x999C\n0xF145\t0x999D\n0xF146\t0x999E\n0xF147\t0x999F\n0xF148\t0x99A0\n0xF149\t0x99A1\n0xF14A\t0x99A2\n0xF14B\t0x99A3\n0xF14C\t0x99A4\n0xF14D\t0x99A6\n0xF14E\t0x99A7\n0xF14F\t0x99A9\n0xF150\t0x99AA\n0xF151\t0x99AB\n0xF152\t0x99AC\n0xF153\t0x99AD\n0xF154\t0x99AE\n0xF155\t0x99AF\n0xF156\t0x99B0\n0xF157\t0x99B1\n0xF158\t0x99B2\n0xF159\t0x99B3\n0xF15A\t0x99B4\n0xF15B\t0x99B5\n0xF15C\t0x99B6\n0xF15D\t0x99B7\n0xF15E\t0x99B8\n0xF15F\t0x99B9\n0xF160\t0x99BA\n0xF161\t0x99BB\n0xF162\t0x99BC\n0xF163\t0x99BD\n0xF164\t0x99BE\n0xF165\t0x99BF\n0xF166\t0x99C0\n0xF167\t0x99C1\n0xF168\t0x99C2\n0xF169\t0x99C3\n0xF16A\t0x99C4\n0xF16B\t0x99C5\n0xF16C\t0x99C6\n0xF16D\t0x99C7\n0xF16E\t0x99C8\n0xF16F\t0x99C9\n0xF170\t0x99CA\n0xF171\t0x99CB\n0xF172\t0x99CC\n0xF173\t0x99CD\n0xF174\t0x99CE\n0xF175\t0x99CF\n0xF176\t0x99D0\n0xF177\t0x99D1\n0xF178\t0x99D2\n0xF179\t0x99D3\n0xF17A\t0x99D4\n0xF17B\t0x99D5\n0xF17C\t0x99D6\n0xF17D\t0x99D7\n0xF17E\t0x99D8\n0xF180\t0x99D9\n0xF181\t0x99DA\n0xF182\t0x99DB\n0xF183\t0x99DC\n0xF184\t0x99DD\n0xF185\t0x99DE\n0xF186\t0x99DF\n0xF187\t0x99E0\n0xF188\t0x99E1\n0xF189\t0x99E2\n0xF18A\t0x99E3\n0xF18B\t0x99E4\n0xF18C\t0x99E5\n0xF18D\t0x99E6\n0xF18E\t0x99E7\n0xF18F\t0x99E8\n0xF190\t0x99E9\n0xF191\t0x99EA\n0xF192\t0x99EB\n0xF193\t0x99EC\n0xF194\t0x99ED\n0xF195\t0x99EE\n0xF196\t0x99EF\n0xF197\t0x99F0\n0xF198\t0x99F1\n0xF199\t0x99F2\n0xF19A\t0x99F3\n0xF19B\t0x99F4\n0xF19C\t0x99F5\n0xF19D\t0x99F6\n0xF19E\t0x99F7\n0xF19F\t0x99F8\n0xF1A0\t0x99F9\n0xF1A1\t0x761B\n0xF1A2\t0x763C\n0xF1A3\t0x7622\n0xF1A4\t0x7620\n0xF1A5\t0x7640\n0xF1A6\t0x762D\n0xF1A7\t0x7630\n0xF1A8\t0x763F\n0xF1A9\t0x7635\n0xF1AA\t0x7643\n0xF1AB\t0x763E\n0xF1AC\t0x7633\n0xF1AD\t0x764D\n0xF1AE\t0x765E\n0xF1AF\t0x7654\n0xF1B0\t0x765C\n0xF1B1\t0x7656\n0xF1B2\t0x766B\n0xF1B3\t0x766F\n0xF1B4\t0x7FCA\n0xF1B5\t0x7AE6\n0xF1B6\t0x7A78\n0xF1B7\t0x7A79\n0xF1B8\t0x7A80\n0xF1B9\t0x7A86\n0xF1BA\t0x7A88\n0xF1BB\t0x7A95\n0xF1BC\t0x7AA6\n0xF1BD\t0x7AA0\n0xF1BE\t0x7AAC\n0xF1BF\t0x7AA8\n0xF1C0\t0x7AAD\n0xF1C1\t0x7AB3\n0xF1C2\t0x8864\n0xF1C3\t0x8869\n0xF1C4\t0x8872\n0xF1C5\t0x887D\n0xF1C6\t0x887F\n0xF1C7\t0x8882\n0xF1C8\t0x88A2\n0xF1C9\t0x88C6\n0xF1CA\t0x88B7\n0xF1CB\t0x88BC\n0xF1CC\t0x88C9\n0xF1CD\t0x88E2\n0xF1CE\t0x88CE\n0xF1CF\t0x88E3\n0xF1D0\t0x88E5\n0xF1D1\t0x88F1\n0xF1D2\t0x891A\n0xF1D3\t0x88FC\n0xF1D4\t0x88E8\n0xF1D5\t0x88FE\n0xF1D6\t0x88F0\n0xF1D7\t0x8921\n0xF1D8\t0x8919\n0xF1D9\t0x8913\n0xF1DA\t0x891B\n0xF1DB\t0x890A\n0xF1DC\t0x8934\n0xF1DD\t0x892B\n0xF1DE\t0x8936\n0xF1DF\t0x8941\n0xF1E0\t0x8966\n0xF1E1\t0x897B\n0xF1E2\t0x758B\n0xF1E3\t0x80E5\n0xF1E4\t0x76B2\n0xF1E5\t0x76B4\n0xF1E6\t0x77DC\n0xF1E7\t0x8012\n0xF1E8\t0x8014\n0xF1E9\t0x8016\n0xF1EA\t0x801C\n0xF1EB\t0x8020\n0xF1EC\t0x8022\n0xF1ED\t0x8025\n0xF1EE\t0x8026\n0xF1EF\t0x8027\n0xF1F0\t0x8029\n0xF1F1\t0x8028\n0xF1F2\t0x8031\n0xF1F3\t0x800B\n0xF1F4\t0x8035\n0xF1F5\t0x8043\n0xF1F6\t0x8046\n0xF1F7\t0x804D\n0xF1F8\t0x8052\n0xF1F9\t0x8069\n0xF1FA\t0x8071\n0xF1FB\t0x8983\n0xF1FC\t0x9878\n0xF1FD\t0x9880\n0xF1FE\t0x9883\n0xF240\t0x99FA\n0xF241\t0x99FB\n0xF242\t0x99FC\n0xF243\t0x99FD\n0xF244\t0x99FE\n0xF245\t0x99FF\n0xF246\t0x9A00\n0xF247\t0x9A01\n0xF248\t0x9A02\n0xF249\t0x9A03\n0xF24A\t0x9A04\n0xF24B\t0x9A05\n0xF24C\t0x9A06\n0xF24D\t0x9A07\n0xF24E\t0x9A08\n0xF24F\t0x9A09\n0xF250\t0x9A0A\n0xF251\t0x9A0B\n0xF252\t0x9A0C\n0xF253\t0x9A0D\n0xF254\t0x9A0E\n0xF255\t0x9A0F\n0xF256\t0x9A10\n0xF257\t0x9A11\n0xF258\t0x9A12\n0xF259\t0x9A13\n0xF25A\t0x9A14\n0xF25B\t0x9A15\n0xF25C\t0x9A16\n0xF25D\t0x9A17\n0xF25E\t0x9A18\n0xF25F\t0x9A19\n0xF260\t0x9A1A\n0xF261\t0x9A1B\n0xF262\t0x9A1C\n0xF263\t0x9A1D\n0xF264\t0x9A1E\n0xF265\t0x9A1F\n0xF266\t0x9A20\n0xF267\t0x9A21\n0xF268\t0x9A22\n0xF269\t0x9A23\n0xF26A\t0x9A24\n0xF26B\t0x9A25\n0xF26C\t0x9A26\n0xF26D\t0x9A27\n0xF26E\t0x9A28\n0xF26F\t0x9A29\n0xF270\t0x9A2A\n0xF271\t0x9A2B\n0xF272\t0x9A2C\n0xF273\t0x9A2D\n0xF274\t0x9A2E\n0xF275\t0x9A2F\n0xF276\t0x9A30\n0xF277\t0x9A31\n0xF278\t0x9A32\n0xF279\t0x9A33\n0xF27A\t0x9A34\n0xF27B\t0x9A35\n0xF27C\t0x9A36\n0xF27D\t0x9A37\n0xF27E\t0x9A38\n0xF280\t0x9A39\n0xF281\t0x9A3A\n0xF282\t0x9A3B\n0xF283\t0x9A3C\n0xF284\t0x9A3D\n0xF285\t0x9A3E\n0xF286\t0x9A3F\n0xF287\t0x9A40\n0xF288\t0x9A41\n0xF289\t0x9A42\n0xF28A\t0x9A43\n0xF28B\t0x9A44\n0xF28C\t0x9A45\n0xF28D\t0x9A46\n0xF28E\t0x9A47\n0xF28F\t0x9A48\n0xF290\t0x9A49\n0xF291\t0x9A4A\n0xF292\t0x9A4B\n0xF293\t0x9A4C\n0xF294\t0x9A4D\n0xF295\t0x9A4E\n0xF296\t0x9A4F\n0xF297\t0x9A50\n0xF298\t0x9A51\n0xF299\t0x9A52\n0xF29A\t0x9A53\n0xF29B\t0x9A54\n0xF29C\t0x9A55\n0xF29D\t0x9A56\n0xF29E\t0x9A57\n0xF29F\t0x9A58\n0xF2A0\t0x9A59\n0xF2A1\t0x9889\n0xF2A2\t0x988C\n0xF2A3\t0x988D\n0xF2A4\t0x988F\n0xF2A5\t0x9894\n0xF2A6\t0x989A\n0xF2A7\t0x989B\n0xF2A8\t0x989E\n0xF2A9\t0x989F\n0xF2AA\t0x98A1\n0xF2AB\t0x98A2\n0xF2AC\t0x98A5\n0xF2AD\t0x98A6\n0xF2AE\t0x864D\n0xF2AF\t0x8654\n0xF2B0\t0x866C\n0xF2B1\t0x866E\n0xF2B2\t0x867F\n0xF2B3\t0x867A\n0xF2B4\t0x867C\n0xF2B5\t0x867B\n0xF2B6\t0x86A8\n0xF2B7\t0x868D\n0xF2B8\t0x868B\n0xF2B9\t0x86AC\n0xF2BA\t0x869D\n0xF2BB\t0x86A7\n0xF2BC\t0x86A3\n0xF2BD\t0x86AA\n0xF2BE\t0x8693\n0xF2BF\t0x86A9\n0xF2C0\t0x86B6\n0xF2C1\t0x86C4\n0xF2C2\t0x86B5\n0xF2C3\t0x86CE\n0xF2C4\t0x86B0\n0xF2C5\t0x86BA\n0xF2C6\t0x86B1\n0xF2C7\t0x86AF\n0xF2C8\t0x86C9\n0xF2C9\t0x86CF\n0xF2CA\t0x86B4\n0xF2CB\t0x86E9\n0xF2CC\t0x86F1\n0xF2CD\t0x86F2\n0xF2CE\t0x86ED\n0xF2CF\t0x86F3\n0xF2D0\t0x86D0\n0xF2D1\t0x8713\n0xF2D2\t0x86DE\n0xF2D3\t0x86F4\n0xF2D4\t0x86DF\n0xF2D5\t0x86D8\n0xF2D6\t0x86D1\n0xF2D7\t0x8703\n0xF2D8\t0x8707\n0xF2D9\t0x86F8\n0xF2DA\t0x8708\n0xF2DB\t0x870A\n0xF2DC\t0x870D\n0xF2DD\t0x8709\n0xF2DE\t0x8723\n0xF2DF\t0x873B\n0xF2E0\t0x871E\n0xF2E1\t0x8725\n0xF2E2\t0x872E\n0xF2E3\t0x871A\n0xF2E4\t0x873E\n0xF2E5\t0x8748\n0xF2E6\t0x8734\n0xF2E7\t0x8731\n0xF2E8\t0x8729\n0xF2E9\t0x8737\n0xF2EA\t0x873F\n0xF2EB\t0x8782\n0xF2EC\t0x8722\n0xF2ED\t0x877D\n0xF2EE\t0x877E\n0xF2EF\t0x877B\n0xF2F0\t0x8760\n0xF2F1\t0x8770\n0xF2F2\t0x874C\n0xF2F3\t0x876E\n0xF2F4\t0x878B\n0xF2F5\t0x8753\n0xF2F6\t0x8763\n0xF2F7\t0x877C\n0xF2F8\t0x8764\n0xF2F9\t0x8759\n0xF2FA\t0x8765\n0xF2FB\t0x8793\n0xF2FC\t0x87AF\n0xF2FD\t0x87A8\n0xF2FE\t0x87D2\n0xF340\t0x9A5A\n0xF341\t0x9A5B\n0xF342\t0x9A5C\n0xF343\t0x9A5D\n0xF344\t0x9A5E\n0xF345\t0x9A5F\n0xF346\t0x9A60\n0xF347\t0x9A61\n0xF348\t0x9A62\n0xF349\t0x9A63\n0xF34A\t0x9A64\n0xF34B\t0x9A65\n0xF34C\t0x9A66\n0xF34D\t0x9A67\n0xF34E\t0x9A68\n0xF34F\t0x9A69\n0xF350\t0x9A6A\n0xF351\t0x9A6B\n0xF352\t0x9A72\n0xF353\t0x9A83\n0xF354\t0x9A89\n0xF355\t0x9A8D\n0xF356\t0x9A8E\n0xF357\t0x9A94\n0xF358\t0x9A95\n0xF359\t0x9A99\n0xF35A\t0x9AA6\n0xF35B\t0x9AA9\n0xF35C\t0x9AAA\n0xF35D\t0x9AAB\n0xF35E\t0x9AAC\n0xF35F\t0x9AAD\n0xF360\t0x9AAE\n0xF361\t0x9AAF\n0xF362\t0x9AB2\n0xF363\t0x9AB3\n0xF364\t0x9AB4\n0xF365\t0x9AB5\n0xF366\t0x9AB9\n0xF367\t0x9ABB\n0xF368\t0x9ABD\n0xF369\t0x9ABE\n0xF36A\t0x9ABF\n0xF36B\t0x9AC3\n0xF36C\t0x9AC4\n0xF36D\t0x9AC6\n0xF36E\t0x9AC7\n0xF36F\t0x9AC8\n0xF370\t0x9AC9\n0xF371\t0x9ACA\n0xF372\t0x9ACD\n0xF373\t0x9ACE\n0xF374\t0x9ACF\n0xF375\t0x9AD0\n0xF376\t0x9AD2\n0xF377\t0x9AD4\n0xF378\t0x9AD5\n0xF379\t0x9AD6\n0xF37A\t0x9AD7\n0xF37B\t0x9AD9\n0xF37C\t0x9ADA\n0xF37D\t0x9ADB\n0xF37E\t0x9ADC\n0xF380\t0x9ADD\n0xF381\t0x9ADE\n0xF382\t0x9AE0\n0xF383\t0x9AE2\n0xF384\t0x9AE3\n0xF385\t0x9AE4\n0xF386\t0x9AE5\n0xF387\t0x9AE7\n0xF388\t0x9AE8\n0xF389\t0x9AE9\n0xF38A\t0x9AEA\n0xF38B\t0x9AEC\n0xF38C\t0x9AEE\n0xF38D\t0x9AF0\n0xF38E\t0x9AF1\n0xF38F\t0x9AF2\n0xF390\t0x9AF3\n0xF391\t0x9AF4\n0xF392\t0x9AF5\n0xF393\t0x9AF6\n0xF394\t0x9AF7\n0xF395\t0x9AF8\n0xF396\t0x9AFA\n0xF397\t0x9AFC\n0xF398\t0x9AFD\n0xF399\t0x9AFE\n0xF39A\t0x9AFF\n0xF39B\t0x9B00\n0xF39C\t0x9B01\n0xF39D\t0x9B02\n0xF39E\t0x9B04\n0xF39F\t0x9B05\n0xF3A0\t0x9B06\n0xF3A1\t0x87C6\n0xF3A2\t0x8788\n0xF3A3\t0x8785\n0xF3A4\t0x87AD\n0xF3A5\t0x8797\n0xF3A6\t0x8783\n0xF3A7\t0x87AB\n0xF3A8\t0x87E5\n0xF3A9\t0x87AC\n0xF3AA\t0x87B5\n0xF3AB\t0x87B3\n0xF3AC\t0x87CB\n0xF3AD\t0x87D3\n0xF3AE\t0x87BD\n0xF3AF\t0x87D1\n0xF3B0\t0x87C0\n0xF3B1\t0x87CA\n0xF3B2\t0x87DB\n0xF3B3\t0x87EA\n0xF3B4\t0x87E0\n0xF3B5\t0x87EE\n0xF3B6\t0x8816\n0xF3B7\t0x8813\n0xF3B8\t0x87FE\n0xF3B9\t0x880A\n0xF3BA\t0x881B\n0xF3BB\t0x8821\n0xF3BC\t0x8839\n0xF3BD\t0x883C\n0xF3BE\t0x7F36\n0xF3BF\t0x7F42\n0xF3C0\t0x7F44\n0xF3C1\t0x7F45\n0xF3C2\t0x8210\n0xF3C3\t0x7AFA\n0xF3C4\t0x7AFD\n0xF3C5\t0x7B08\n0xF3C6\t0x7B03\n0xF3C7\t0x7B04\n0xF3C8\t0x7B15\n0xF3C9\t0x7B0A\n0xF3CA\t0x7B2B\n0xF3CB\t0x7B0F\n0xF3CC\t0x7B47\n0xF3CD\t0x7B38\n0xF3CE\t0x7B2A\n0xF3CF\t0x7B19\n0xF3D0\t0x7B2E\n0xF3D1\t0x7B31\n0xF3D2\t0x7B20\n0xF3D3\t0x7B25\n0xF3D4\t0x7B24\n0xF3D5\t0x7B33\n0xF3D6\t0x7B3E\n0xF3D7\t0x7B1E\n0xF3D8\t0x7B58\n0xF3D9\t0x7B5A\n0xF3DA\t0x7B45\n0xF3DB\t0x7B75\n0xF3DC\t0x7B4C\n0xF3DD\t0x7B5D\n0xF3DE\t0x7B60\n0xF3DF\t0x7B6E\n0xF3E0\t0x7B7B\n0xF3E1\t0x7B62\n0xF3E2\t0x7B72\n0xF3E3\t0x7B71\n0xF3E4\t0x7B90\n0xF3E5\t0x7BA6\n0xF3E6\t0x7BA7\n0xF3E7\t0x7BB8\n0xF3E8\t0x7BAC\n0xF3E9\t0x7B9D\n0xF3EA\t0x7BA8\n0xF3EB\t0x7B85\n0xF3EC\t0x7BAA\n0xF3ED\t0x7B9C\n0xF3EE\t0x7BA2\n0xF3EF\t0x7BAB\n0xF3F0\t0x7BB4\n0xF3F1\t0x7BD1\n0xF3F2\t0x7BC1\n0xF3F3\t0x7BCC\n0xF3F4\t0x7BDD\n0xF3F5\t0x7BDA\n0xF3F6\t0x7BE5\n0xF3F7\t0x7BE6\n0xF3F8\t0x7BEA\n0xF3F9\t0x7C0C\n0xF3FA\t0x7BFE\n0xF3FB\t0x7BFC\n0xF3FC\t0x7C0F\n0xF3FD\t0x7C16\n0xF3FE\t0x7C0B\n0xF440\t0x9B07\n0xF441\t0x9B09\n0xF442\t0x9B0A\n0xF443\t0x9B0B\n0xF444\t0x9B0C\n0xF445\t0x9B0D\n0xF446\t0x9B0E\n0xF447\t0x9B10\n0xF448\t0x9B11\n0xF449\t0x9B12\n0xF44A\t0x9B14\n0xF44B\t0x9B15\n0xF44C\t0x9B16\n0xF44D\t0x9B17\n0xF44E\t0x9B18\n0xF44F\t0x9B19\n0xF450\t0x9B1A\n0xF451\t0x9B1B\n0xF452\t0x9B1C\n0xF453\t0x9B1D\n0xF454\t0x9B1E\n0xF455\t0x9B20\n0xF456\t0x9B21\n0xF457\t0x9B22\n0xF458\t0x9B24\n0xF459\t0x9B25\n0xF45A\t0x9B26\n0xF45B\t0x9B27\n0xF45C\t0x9B28\n0xF45D\t0x9B29\n0xF45E\t0x9B2A\n0xF45F\t0x9B2B\n0xF460\t0x9B2C\n0xF461\t0x9B2D\n0xF462\t0x9B2E\n0xF463\t0x9B30\n0xF464\t0x9B31\n0xF465\t0x9B33\n0xF466\t0x9B34\n0xF467\t0x9B35\n0xF468\t0x9B36\n0xF469\t0x9B37\n0xF46A\t0x9B38\n0xF46B\t0x9B39\n0xF46C\t0x9B3A\n0xF46D\t0x9B3D\n0xF46E\t0x9B3E\n0xF46F\t0x9B3F\n0xF470\t0x9B40\n0xF471\t0x9B46\n0xF472\t0x9B4A\n0xF473\t0x9B4B\n0xF474\t0x9B4C\n0xF475\t0x9B4E\n0xF476\t0x9B50\n0xF477\t0x9B52\n0xF478\t0x9B53\n0xF479\t0x9B55\n0xF47A\t0x9B56\n0xF47B\t0x9B57\n0xF47C\t0x9B58\n0xF47D\t0x9B59\n0xF47E\t0x9B5A\n0xF480\t0x9B5B\n0xF481\t0x9B5C\n0xF482\t0x9B5D\n0xF483\t0x9B5E\n0xF484\t0x9B5F\n0xF485\t0x9B60\n0xF486\t0x9B61\n0xF487\t0x9B62\n0xF488\t0x9B63\n0xF489\t0x9B64\n0xF48A\t0x9B65\n0xF48B\t0x9B66\n0xF48C\t0x9B67\n0xF48D\t0x9B68\n0xF48E\t0x9B69\n0xF48F\t0x9B6A\n0xF490\t0x9B6B\n0xF491\t0x9B6C\n0xF492\t0x9B6D\n0xF493\t0x9B6E\n0xF494\t0x9B6F\n0xF495\t0x9B70\n0xF496\t0x9B71\n0xF497\t0x9B72\n0xF498\t0x9B73\n0xF499\t0x9B74\n0xF49A\t0x9B75\n0xF49B\t0x9B76\n0xF49C\t0x9B77\n0xF49D\t0x9B78\n0xF49E\t0x9B79\n0xF49F\t0x9B7A\n0xF4A0\t0x9B7B\n0xF4A1\t0x7C1F\n0xF4A2\t0x7C2A\n0xF4A3\t0x7C26\n0xF4A4\t0x7C38\n0xF4A5\t0x7C41\n0xF4A6\t0x7C40\n0xF4A7\t0x81FE\n0xF4A8\t0x8201\n0xF4A9\t0x8202\n0xF4AA\t0x8204\n0xF4AB\t0x81EC\n0xF4AC\t0x8844\n0xF4AD\t0x8221\n0xF4AE\t0x8222\n0xF4AF\t0x8223\n0xF4B0\t0x822D\n0xF4B1\t0x822F\n0xF4B2\t0x8228\n0xF4B3\t0x822B\n0xF4B4\t0x8238\n0xF4B5\t0x823B\n0xF4B6\t0x8233\n0xF4B7\t0x8234\n0xF4B8\t0x823E\n0xF4B9\t0x8244\n0xF4BA\t0x8249\n0xF4BB\t0x824B\n0xF4BC\t0x824F\n0xF4BD\t0x825A\n0xF4BE\t0x825F\n0xF4BF\t0x8268\n0xF4C0\t0x887E\n0xF4C1\t0x8885\n0xF4C2\t0x8888\n0xF4C3\t0x88D8\n0xF4C4\t0x88DF\n0xF4C5\t0x895E\n0xF4C6\t0x7F9D\n0xF4C7\t0x7F9F\n0xF4C8\t0x7FA7\n0xF4C9\t0x7FAF\n0xF4CA\t0x7FB0\n0xF4CB\t0x7FB2\n0xF4CC\t0x7C7C\n0xF4CD\t0x6549\n0xF4CE\t0x7C91\n0xF4CF\t0x7C9D\n0xF4D0\t0x7C9C\n0xF4D1\t0x7C9E\n0xF4D2\t0x7CA2\n0xF4D3\t0x7CB2\n0xF4D4\t0x7CBC\n0xF4D5\t0x7CBD\n0xF4D6\t0x7CC1\n0xF4D7\t0x7CC7\n0xF4D8\t0x7CCC\n0xF4D9\t0x7CCD\n0xF4DA\t0x7CC8\n0xF4DB\t0x7CC5\n0xF4DC\t0x7CD7\n0xF4DD\t0x7CE8\n0xF4DE\t0x826E\n0xF4DF\t0x66A8\n0xF4E0\t0x7FBF\n0xF4E1\t0x7FCE\n0xF4E2\t0x7FD5\n0xF4E3\t0x7FE5\n0xF4E4\t0x7FE1\n0xF4E5\t0x7FE6\n0xF4E6\t0x7FE9\n0xF4E7\t0x7FEE\n0xF4E8\t0x7FF3\n0xF4E9\t0x7CF8\n0xF4EA\t0x7D77\n0xF4EB\t0x7DA6\n0xF4EC\t0x7DAE\n0xF4ED\t0x7E47\n0xF4EE\t0x7E9B\n0xF4EF\t0x9EB8\n0xF4F0\t0x9EB4\n0xF4F1\t0x8D73\n0xF4F2\t0x8D84\n0xF4F3\t0x8D94\n0xF4F4\t0x8D91\n0xF4F5\t0x8DB1\n0xF4F6\t0x8D67\n0xF4F7\t0x8D6D\n0xF4F8\t0x8C47\n0xF4F9\t0x8C49\n0xF4FA\t0x914A\n0xF4FB\t0x9150\n0xF4FC\t0x914E\n0xF4FD\t0x914F\n0xF4FE\t0x9164\n0xF540\t0x9B7C\n0xF541\t0x9B7D\n0xF542\t0x9B7E\n0xF543\t0x9B7F\n0xF544\t0x9B80\n0xF545\t0x9B81\n0xF546\t0x9B82\n0xF547\t0x9B83\n0xF548\t0x9B84\n0xF549\t0x9B85\n0xF54A\t0x9B86\n0xF54B\t0x9B87\n0xF54C\t0x9B88\n0xF54D\t0x9B89\n0xF54E\t0x9B8A\n0xF54F\t0x9B8B\n0xF550\t0x9B8C\n0xF551\t0x9B8D\n0xF552\t0x9B8E\n0xF553\t0x9B8F\n0xF554\t0x9B90\n0xF555\t0x9B91\n0xF556\t0x9B92\n0xF557\t0x9B93\n0xF558\t0x9B94\n0xF559\t0x9B95\n0xF55A\t0x9B96\n0xF55B\t0x9B97\n0xF55C\t0x9B98\n0xF55D\t0x9B99\n0xF55E\t0x9B9A\n0xF55F\t0x9B9B\n0xF560\t0x9B9C\n0xF561\t0x9B9D\n0xF562\t0x9B9E\n0xF563\t0x9B9F\n0xF564\t0x9BA0\n0xF565\t0x9BA1\n0xF566\t0x9BA2\n0xF567\t0x9BA3\n0xF568\t0x9BA4\n0xF569\t0x9BA5\n0xF56A\t0x9BA6\n0xF56B\t0x9BA7\n0xF56C\t0x9BA8\n0xF56D\t0x9BA9\n0xF56E\t0x9BAA\n0xF56F\t0x9BAB\n0xF570\t0x9BAC\n0xF571\t0x9BAD\n0xF572\t0x9BAE\n0xF573\t0x9BAF\n0xF574\t0x9BB0\n0xF575\t0x9BB1\n0xF576\t0x9BB2\n0xF577\t0x9BB3\n0xF578\t0x9BB4\n0xF579\t0x9BB5\n0xF57A\t0x9BB6\n0xF57B\t0x9BB7\n0xF57C\t0x9BB8\n0xF57D\t0x9BB9\n0xF57E\t0x9BBA\n0xF580\t0x9BBB\n0xF581\t0x9BBC\n0xF582\t0x9BBD\n0xF583\t0x9BBE\n0xF584\t0x9BBF\n0xF585\t0x9BC0\n0xF586\t0x9BC1\n0xF587\t0x9BC2\n0xF588\t0x9BC3\n0xF589\t0x9BC4\n0xF58A\t0x9BC5\n0xF58B\t0x9BC6\n0xF58C\t0x9BC7\n0xF58D\t0x9BC8\n0xF58E\t0x9BC9\n0xF58F\t0x9BCA\n0xF590\t0x9BCB\n0xF591\t0x9BCC\n0xF592\t0x9BCD\n0xF593\t0x9BCE\n0xF594\t0x9BCF\n0xF595\t0x9BD0\n0xF596\t0x9BD1\n0xF597\t0x9BD2\n0xF598\t0x9BD3\n0xF599\t0x9BD4\n0xF59A\t0x9BD5\n0xF59B\t0x9BD6\n0xF59C\t0x9BD7\n0xF59D\t0x9BD8\n0xF59E\t0x9BD9\n0xF59F\t0x9BDA\n0xF5A0\t0x9BDB\n0xF5A1\t0x9162\n0xF5A2\t0x9161\n0xF5A3\t0x9170\n0xF5A4\t0x9169\n0xF5A5\t0x916F\n0xF5A6\t0x917D\n0xF5A7\t0x917E\n0xF5A8\t0x9172\n0xF5A9\t0x9174\n0xF5AA\t0x9179\n0xF5AB\t0x918C\n0xF5AC\t0x9185\n0xF5AD\t0x9190\n0xF5AE\t0x918D\n0xF5AF\t0x9191\n0xF5B0\t0x91A2\n0xF5B1\t0x91A3\n0xF5B2\t0x91AA\n0xF5B3\t0x91AD\n0xF5B4\t0x91AE\n0xF5B5\t0x91AF\n0xF5B6\t0x91B5\n0xF5B7\t0x91B4\n0xF5B8\t0x91BA\n0xF5B9\t0x8C55\n0xF5BA\t0x9E7E\n0xF5BB\t0x8DB8\n0xF5BC\t0x8DEB\n0xF5BD\t0x8E05\n0xF5BE\t0x8E59\n0xF5BF\t0x8E69\n0xF5C0\t0x8DB5\n0xF5C1\t0x8DBF\n0xF5C2\t0x8DBC\n0xF5C3\t0x8DBA\n0xF5C4\t0x8DC4\n0xF5C5\t0x8DD6\n0xF5C6\t0x8DD7\n0xF5C7\t0x8DDA\n0xF5C8\t0x8DDE\n0xF5C9\t0x8DCE\n0xF5CA\t0x8DCF\n0xF5CB\t0x8DDB\n0xF5CC\t0x8DC6\n0xF5CD\t0x8DEC\n0xF5CE\t0x8DF7\n0xF5CF\t0x8DF8\n0xF5D0\t0x8DE3\n0xF5D1\t0x8DF9\n0xF5D2\t0x8DFB\n0xF5D3\t0x8DE4\n0xF5D4\t0x8E09\n0xF5D5\t0x8DFD\n0xF5D6\t0x8E14\n0xF5D7\t0x8E1D\n0xF5D8\t0x8E1F\n0xF5D9\t0x8E2C\n0xF5DA\t0x8E2E\n0xF5DB\t0x8E23\n0xF5DC\t0x8E2F\n0xF5DD\t0x8E3A\n0xF5DE\t0x8E40\n0xF5DF\t0x8E39\n0xF5E0\t0x8E35\n0xF5E1\t0x8E3D\n0xF5E2\t0x8E31\n0xF5E3\t0x8E49\n0xF5E4\t0x8E41\n0xF5E5\t0x8E42\n0xF5E6\t0x8E51\n0xF5E7\t0x8E52\n0xF5E8\t0x8E4A\n0xF5E9\t0x8E70\n0xF5EA\t0x8E76\n0xF5EB\t0x8E7C\n0xF5EC\t0x8E6F\n0xF5ED\t0x8E74\n0xF5EE\t0x8E85\n0xF5EF\t0x8E8F\n0xF5F0\t0x8E94\n0xF5F1\t0x8E90\n0xF5F2\t0x8E9C\n0xF5F3\t0x8E9E\n0xF5F4\t0x8C78\n0xF5F5\t0x8C82\n0xF5F6\t0x8C8A\n0xF5F7\t0x8C85\n0xF5F8\t0x8C98\n0xF5F9\t0x8C94\n0xF5FA\t0x659B\n0xF5FB\t0x89D6\n0xF5FC\t0x89DE\n0xF5FD\t0x89DA\n0xF5FE\t0x89DC\n0xF640\t0x9BDC\n0xF641\t0x9BDD\n0xF642\t0x9BDE\n0xF643\t0x9BDF\n0xF644\t0x9BE0\n0xF645\t0x9BE1\n0xF646\t0x9BE2\n0xF647\t0x9BE3\n0xF648\t0x9BE4\n0xF649\t0x9BE5\n0xF64A\t0x9BE6\n0xF64B\t0x9BE7\n0xF64C\t0x9BE8\n0xF64D\t0x9BE9\n0xF64E\t0x9BEA\n0xF64F\t0x9BEB\n0xF650\t0x9BEC\n0xF651\t0x9BED\n0xF652\t0x9BEE\n0xF653\t0x9BEF\n0xF654\t0x9BF0\n0xF655\t0x9BF1\n0xF656\t0x9BF2\n0xF657\t0x9BF3\n0xF658\t0x9BF4\n0xF659\t0x9BF5\n0xF65A\t0x9BF6\n0xF65B\t0x9BF7\n0xF65C\t0x9BF8\n0xF65D\t0x9BF9\n0xF65E\t0x9BFA\n0xF65F\t0x9BFB\n0xF660\t0x9BFC\n0xF661\t0x9BFD\n0xF662\t0x9BFE\n0xF663\t0x9BFF\n0xF664\t0x9C00\n0xF665\t0x9C01\n0xF666\t0x9C02\n0xF667\t0x9C03\n0xF668\t0x9C04\n0xF669\t0x9C05\n0xF66A\t0x9C06\n0xF66B\t0x9C07\n0xF66C\t0x9C08\n0xF66D\t0x9C09\n0xF66E\t0x9C0A\n0xF66F\t0x9C0B\n0xF670\t0x9C0C\n0xF671\t0x9C0D\n0xF672\t0x9C0E\n0xF673\t0x9C0F\n0xF674\t0x9C10\n0xF675\t0x9C11\n0xF676\t0x9C12\n0xF677\t0x9C13\n0xF678\t0x9C14\n0xF679\t0x9C15\n0xF67A\t0x9C16\n0xF67B\t0x9C17\n0xF67C\t0x9C18\n0xF67D\t0x9C19\n0xF67E\t0x9C1A\n0xF680\t0x9C1B\n0xF681\t0x9C1C\n0xF682\t0x9C1D\n0xF683\t0x9C1E\n0xF684\t0x9C1F\n0xF685\t0x9C20\n0xF686\t0x9C21\n0xF687\t0x9C22\n0xF688\t0x9C23\n0xF689\t0x9C24\n0xF68A\t0x9C25\n0xF68B\t0x9C26\n0xF68C\t0x9C27\n0xF68D\t0x9C28\n0xF68E\t0x9C29\n0xF68F\t0x9C2A\n0xF690\t0x9C2B\n0xF691\t0x9C2C\n0xF692\t0x9C2D\n0xF693\t0x9C2E\n0xF694\t0x9C2F\n0xF695\t0x9C30\n0xF696\t0x9C31\n0xF697\t0x9C32\n0xF698\t0x9C33\n0xF699\t0x9C34\n0xF69A\t0x9C35\n0xF69B\t0x9C36\n0xF69C\t0x9C37\n0xF69D\t0x9C38\n0xF69E\t0x9C39\n0xF69F\t0x9C3A\n0xF6A0\t0x9C3B\n0xF6A1\t0x89E5\n0xF6A2\t0x89EB\n0xF6A3\t0x89EF\n0xF6A4\t0x8A3E\n0xF6A5\t0x8B26\n0xF6A6\t0x9753\n0xF6A7\t0x96E9\n0xF6A8\t0x96F3\n0xF6A9\t0x96EF\n0xF6AA\t0x9706\n0xF6AB\t0x9701\n0xF6AC\t0x9708\n0xF6AD\t0x970F\n0xF6AE\t0x970E\n0xF6AF\t0x972A\n0xF6B0\t0x972D\n0xF6B1\t0x9730\n0xF6B2\t0x973E\n0xF6B3\t0x9F80\n0xF6B4\t0x9F83\n0xF6B5\t0x9F85\n0xF6B6\t0x9F86\n0xF6B7\t0x9F87\n0xF6B8\t0x9F88\n0xF6B9\t0x9F89\n0xF6BA\t0x9F8A\n0xF6BB\t0x9F8C\n0xF6BC\t0x9EFE\n0xF6BD\t0x9F0B\n0xF6BE\t0x9F0D\n0xF6BF\t0x96B9\n0xF6C0\t0x96BC\n0xF6C1\t0x96BD\n0xF6C2\t0x96CE\n0xF6C3\t0x96D2\n0xF6C4\t0x77BF\n0xF6C5\t0x96E0\n0xF6C6\t0x928E\n0xF6C7\t0x92AE\n0xF6C8\t0x92C8\n0xF6C9\t0x933E\n0xF6CA\t0x936A\n0xF6CB\t0x93CA\n0xF6CC\t0x938F\n0xF6CD\t0x943E\n0xF6CE\t0x946B\n0xF6CF\t0x9C7F\n0xF6D0\t0x9C82\n0xF6D1\t0x9C85\n0xF6D2\t0x9C86\n0xF6D3\t0x9C87\n0xF6D4\t0x9C88\n0xF6D5\t0x7A23\n0xF6D6\t0x9C8B\n0xF6D7\t0x9C8E\n0xF6D8\t0x9C90\n0xF6D9\t0x9C91\n0xF6DA\t0x9C92\n0xF6DB\t0x9C94\n0xF6DC\t0x9C95\n0xF6DD\t0x9C9A\n0xF6DE\t0x9C9B\n0xF6DF\t0x9C9E\n0xF6E0\t0x9C9F\n0xF6E1\t0x9CA0\n0xF6E2\t0x9CA1\n0xF6E3\t0x9CA2\n0xF6E4\t0x9CA3\n0xF6E5\t0x9CA5\n0xF6E6\t0x9CA6\n0xF6E7\t0x9CA7\n0xF6E8\t0x9CA8\n0xF6E9\t0x9CA9\n0xF6EA\t0x9CAB\n0xF6EB\t0x9CAD\n0xF6EC\t0x9CAE\n0xF6ED\t0x9CB0\n0xF6EE\t0x9CB1\n0xF6EF\t0x9CB2\n0xF6F0\t0x9CB3\n0xF6F1\t0x9CB4\n0xF6F2\t0x9CB5\n0xF6F3\t0x9CB6\n0xF6F4\t0x9CB7\n0xF6F5\t0x9CBA\n0xF6F6\t0x9CBB\n0xF6F7\t0x9CBC\n0xF6F8\t0x9CBD\n0xF6F9\t0x9CC4\n0xF6FA\t0x9CC5\n0xF6FB\t0x9CC6\n0xF6FC\t0x9CC7\n0xF6FD\t0x9CCA\n0xF6FE\t0x9CCB\n0xF740\t0x9C3C\n0xF741\t0x9C3D\n0xF742\t0x9C3E\n0xF743\t0x9C3F\n0xF744\t0x9C40\n0xF745\t0x9C41\n0xF746\t0x9C42\n0xF747\t0x9C43\n0xF748\t0x9C44\n0xF749\t0x9C45\n0xF74A\t0x9C46\n0xF74B\t0x9C47\n0xF74C\t0x9C48\n0xF74D\t0x9C49\n0xF74E\t0x9C4A\n0xF74F\t0x9C4B\n0xF750\t0x9C4C\n0xF751\t0x9C4D\n0xF752\t0x9C4E\n0xF753\t0x9C4F\n0xF754\t0x9C50\n0xF755\t0x9C51\n0xF756\t0x9C52\n0xF757\t0x9C53\n0xF758\t0x9C54\n0xF759\t0x9C55\n0xF75A\t0x9C56\n0xF75B\t0x9C57\n0xF75C\t0x9C58\n0xF75D\t0x9C59\n0xF75E\t0x9C5A\n0xF75F\t0x9C5B\n0xF760\t0x9C5C\n0xF761\t0x9C5D\n0xF762\t0x9C5E\n0xF763\t0x9C5F\n0xF764\t0x9C60\n0xF765\t0x9C61\n0xF766\t0x9C62\n0xF767\t0x9C63\n0xF768\t0x9C64\n0xF769\t0x9C65\n0xF76A\t0x9C66\n0xF76B\t0x9C67\n0xF76C\t0x9C68\n0xF76D\t0x9C69\n0xF76E\t0x9C6A\n0xF76F\t0x9C6B\n0xF770\t0x9C6C\n0xF771\t0x9C6D\n0xF772\t0x9C6E\n0xF773\t0x9C6F\n0xF774\t0x9C70\n0xF775\t0x9C71\n0xF776\t0x9C72\n0xF777\t0x9C73\n0xF778\t0x9C74\n0xF779\t0x9C75\n0xF77A\t0x9C76\n0xF77B\t0x9C77\n0xF77C\t0x9C78\n0xF77D\t0x9C79\n0xF77E\t0x9C7A\n0xF780\t0x9C7B\n0xF781\t0x9C7D\n0xF782\t0x9C7E\n0xF783\t0x9C80\n0xF784\t0x9C83\n0xF785\t0x9C84\n0xF786\t0x9C89\n0xF787\t0x9C8A\n0xF788\t0x9C8C\n0xF789\t0x9C8F\n0xF78A\t0x9C93\n0xF78B\t0x9C96\n0xF78C\t0x9C97\n0xF78D\t0x9C98\n0xF78E\t0x9C99\n0xF78F\t0x9C9D\n0xF790\t0x9CAA\n0xF791\t0x9CAC\n0xF792\t0x9CAF\n0xF793\t0x9CB9\n0xF794\t0x9CBE\n0xF795\t0x9CBF\n0xF796\t0x9CC0\n0xF797\t0x9CC1\n0xF798\t0x9CC2\n0xF799\t0x9CC8\n0xF79A\t0x9CC9\n0xF79B\t0x9CD1\n0xF79C\t0x9CD2\n0xF79D\t0x9CDA\n0xF79E\t0x9CDB\n0xF79F\t0x9CE0\n0xF7A0\t0x9CE1\n0xF7A1\t0x9CCC\n0xF7A2\t0x9CCD\n0xF7A3\t0x9CCE\n0xF7A4\t0x9CCF\n0xF7A5\t0x9CD0\n0xF7A6\t0x9CD3\n0xF7A7\t0x9CD4\n0xF7A8\t0x9CD5\n0xF7A9\t0x9CD7\n0xF7AA\t0x9CD8\n0xF7AB\t0x9CD9\n0xF7AC\t0x9CDC\n0xF7AD\t0x9CDD\n0xF7AE\t0x9CDF\n0xF7AF\t0x9CE2\n0xF7B0\t0x977C\n0xF7B1\t0x9785\n0xF7B2\t0x9791\n0xF7B3\t0x9792\n0xF7B4\t0x9794\n0xF7B5\t0x97AF\n0xF7B6\t0x97AB\n0xF7B7\t0x97A3\n0xF7B8\t0x97B2\n0xF7B9\t0x97B4\n0xF7BA\t0x9AB1\n0xF7BB\t0x9AB0\n0xF7BC\t0x9AB7\n0xF7BD\t0x9E58\n0xF7BE\t0x9AB6\n0xF7BF\t0x9ABA\n0xF7C0\t0x9ABC\n0xF7C1\t0x9AC1\n0xF7C2\t0x9AC0\n0xF7C3\t0x9AC5\n0xF7C4\t0x9AC2\n0xF7C5\t0x9ACB\n0xF7C6\t0x9ACC\n0xF7C7\t0x9AD1\n0xF7C8\t0x9B45\n0xF7C9\t0x9B43\n0xF7CA\t0x9B47\n0xF7CB\t0x9B49\n0xF7CC\t0x9B48\n0xF7CD\t0x9B4D\n0xF7CE\t0x9B51\n0xF7CF\t0x98E8\n0xF7D0\t0x990D\n0xF7D1\t0x992E\n0xF7D2\t0x9955\n0xF7D3\t0x9954\n0xF7D4\t0x9ADF\n0xF7D5\t0x9AE1\n0xF7D6\t0x9AE6\n0xF7D7\t0x9AEF\n0xF7D8\t0x9AEB\n0xF7D9\t0x9AFB\n0xF7DA\t0x9AED\n0xF7DB\t0x9AF9\n0xF7DC\t0x9B08\n0xF7DD\t0x9B0F\n0xF7DE\t0x9B13\n0xF7DF\t0x9B1F\n0xF7E0\t0x9B23\n0xF7E1\t0x9EBD\n0xF7E2\t0x9EBE\n0xF7E3\t0x7E3B\n0xF7E4\t0x9E82\n0xF7E5\t0x9E87\n0xF7E6\t0x9E88\n0xF7E7\t0x9E8B\n0xF7E8\t0x9E92\n0xF7E9\t0x93D6\n0xF7EA\t0x9E9D\n0xF7EB\t0x9E9F\n0xF7EC\t0x9EDB\n0xF7ED\t0x9EDC\n0xF7EE\t0x9EDD\n0xF7EF\t0x9EE0\n0xF7F0\t0x9EDF\n0xF7F1\t0x9EE2\n0xF7F2\t0x9EE9\n0xF7F3\t0x9EE7\n0xF7F4\t0x9EE5\n0xF7F5\t0x9EEA\n0xF7F6\t0x9EEF\n0xF7F7\t0x9F22\n0xF7F8\t0x9F2C\n0xF7F9\t0x9F2F\n0xF7FA\t0x9F39\n0xF7FB\t0x9F37\n0xF7FC\t0x9F3D\n0xF7FD\t0x9F3E\n0xF7FE\t0x9F44\n0xF840\t0x9CE3\n0xF841\t0x9CE4\n0xF842\t0x9CE5\n0xF843\t0x9CE6\n0xF844\t0x9CE7\n0xF845\t0x9CE8\n0xF846\t0x9CE9\n0xF847\t0x9CEA\n0xF848\t0x9CEB\n0xF849\t0x9CEC\n0xF84A\t0x9CED\n0xF84B\t0x9CEE\n0xF84C\t0x9CEF\n0xF84D\t0x9CF0\n0xF84E\t0x9CF1\n0xF84F\t0x9CF2\n0xF850\t0x9CF3\n0xF851\t0x9CF4\n0xF852\t0x9CF5\n0xF853\t0x9CF6\n0xF854\t0x9CF7\n0xF855\t0x9CF8\n0xF856\t0x9CF9\n0xF857\t0x9CFA\n0xF858\t0x9CFB\n0xF859\t0x9CFC\n0xF85A\t0x9CFD\n0xF85B\t0x9CFE\n0xF85C\t0x9CFF\n0xF85D\t0x9D00\n0xF85E\t0x9D01\n0xF85F\t0x9D02\n0xF860\t0x9D03\n0xF861\t0x9D04\n0xF862\t0x9D05\n0xF863\t0x9D06\n0xF864\t0x9D07\n0xF865\t0x9D08\n0xF866\t0x9D09\n0xF867\t0x9D0A\n0xF868\t0x9D0B\n0xF869\t0x9D0C\n0xF86A\t0x9D0D\n0xF86B\t0x9D0E\n0xF86C\t0x9D0F\n0xF86D\t0x9D10\n0xF86E\t0x9D11\n0xF86F\t0x9D12\n0xF870\t0x9D13\n0xF871\t0x9D14\n0xF872\t0x9D15\n0xF873\t0x9D16\n0xF874\t0x9D17\n0xF875\t0x9D18\n0xF876\t0x9D19\n0xF877\t0x9D1A\n0xF878\t0x9D1B\n0xF879\t0x9D1C\n0xF87A\t0x9D1D\n0xF87B\t0x9D1E\n0xF87C\t0x9D1F\n0xF87D\t0x9D20\n0xF87E\t0x9D21\n0xF880\t0x9D22\n0xF881\t0x9D23\n0xF882\t0x9D24\n0xF883\t0x9D25\n0xF884\t0x9D26\n0xF885\t0x9D27\n0xF886\t0x9D28\n0xF887\t0x9D29\n0xF888\t0x9D2A\n0xF889\t0x9D2B\n0xF88A\t0x9D2C\n0xF88B\t0x9D2D\n0xF88C\t0x9D2E\n0xF88D\t0x9D2F\n0xF88E\t0x9D30\n0xF88F\t0x9D31\n0xF890\t0x9D32\n0xF891\t0x9D33\n0xF892\t0x9D34\n0xF893\t0x9D35\n0xF894\t0x9D36\n0xF895\t0x9D37\n0xF896\t0x9D38\n0xF897\t0x9D39\n0xF898\t0x9D3A\n0xF899\t0x9D3B\n0xF89A\t0x9D3C\n0xF89B\t0x9D3D\n0xF89C\t0x9D3E\n0xF89D\t0x9D3F\n0xF89E\t0x9D40\n0xF89F\t0x9D41\n0xF8A0\t0x9D42\n0xF940\t0x9D43\n0xF941\t0x9D44\n0xF942\t0x9D45\n0xF943\t0x9D46\n0xF944\t0x9D47\n0xF945\t0x9D48\n0xF946\t0x9D49\n0xF947\t0x9D4A\n0xF948\t0x9D4B\n0xF949\t0x9D4C\n0xF94A\t0x9D4D\n0xF94B\t0x9D4E\n0xF94C\t0x9D4F\n0xF94D\t0x9D50\n0xF94E\t0x9D51\n0xF94F\t0x9D52\n0xF950\t0x9D53\n0xF951\t0x9D54\n0xF952\t0x9D55\n0xF953\t0x9D56\n0xF954\t0x9D57\n0xF955\t0x9D58\n0xF956\t0x9D59\n0xF957\t0x9D5A\n0xF958\t0x9D5B\n0xF959\t0x9D5C\n0xF95A\t0x9D5D\n0xF95B\t0x9D5E\n0xF95C\t0x9D5F\n0xF95D\t0x9D60\n0xF95E\t0x9D61\n0xF95F\t0x9D62\n0xF960\t0x9D63\n0xF961\t0x9D64\n0xF962\t0x9D65\n0xF963\t0x9D66\n0xF964\t0x9D67\n0xF965\t0x9D68\n0xF966\t0x9D69\n0xF967\t0x9D6A\n0xF968\t0x9D6B\n0xF969\t0x9D6C\n0xF96A\t0x9D6D\n0xF96B\t0x9D6E\n0xF96C\t0x9D6F\n0xF96D\t0x9D70\n0xF96E\t0x9D71\n0xF96F\t0x9D72\n0xF970\t0x9D73\n0xF971\t0x9D74\n0xF972\t0x9D75\n0xF973\t0x9D76\n0xF974\t0x9D77\n0xF975\t0x9D78\n0xF976\t0x9D79\n0xF977\t0x9D7A\n0xF978\t0x9D7B\n0xF979\t0x9D7C\n0xF97A\t0x9D7D\n0xF97B\t0x9D7E\n0xF97C\t0x9D7F\n0xF97D\t0x9D80\n0xF97E\t0x9D81\n0xF980\t0x9D82\n0xF981\t0x9D83\n0xF982\t0x9D84\n0xF983\t0x9D85\n0xF984\t0x9D86\n0xF985\t0x9D87\n0xF986\t0x9D88\n0xF987\t0x9D89\n0xF988\t0x9D8A\n0xF989\t0x9D8B\n0xF98A\t0x9D8C\n0xF98B\t0x9D8D\n0xF98C\t0x9D8E\n0xF98D\t0x9D8F\n0xF98E\t0x9D90\n0xF98F\t0x9D91\n0xF990\t0x9D92\n0xF991\t0x9D93\n0xF992\t0x9D94\n0xF993\t0x9D95\n0xF994\t0x9D96\n0xF995\t0x9D97\n0xF996\t0x9D98\n0xF997\t0x9D99\n0xF998\t0x9D9A\n0xF999\t0x9D9B\n0xF99A\t0x9D9C\n0xF99B\t0x9D9D\n0xF99C\t0x9D9E\n0xF99D\t0x9D9F\n0xF99E\t0x9DA0\n0xF99F\t0x9DA1\n0xF9A0\t0x9DA2\n0xFA40\t0x9DA3\n0xFA41\t0x9DA4\n0xFA42\t0x9DA5\n0xFA43\t0x9DA6\n0xFA44\t0x9DA7\n0xFA45\t0x9DA8\n0xFA46\t0x9DA9\n0xFA47\t0x9DAA\n0xFA48\t0x9DAB\n0xFA49\t0x9DAC\n0xFA4A\t0x9DAD\n0xFA4B\t0x9DAE\n0xFA4C\t0x9DAF\n0xFA4D\t0x9DB0\n0xFA4E\t0x9DB1\n0xFA4F\t0x9DB2\n0xFA50\t0x9DB3\n0xFA51\t0x9DB4\n0xFA52\t0x9DB5\n0xFA53\t0x9DB6\n0xFA54\t0x9DB7\n0xFA55\t0x9DB8\n0xFA56\t0x9DB9\n0xFA57\t0x9DBA\n0xFA58\t0x9DBB\n0xFA59\t0x9DBC\n0xFA5A\t0x9DBD\n0xFA5B\t0x9DBE\n0xFA5C\t0x9DBF\n0xFA5D\t0x9DC0\n0xFA5E\t0x9DC1\n0xFA5F\t0x9DC2\n0xFA60\t0x9DC3\n0xFA61\t0x9DC4\n0xFA62\t0x9DC5\n0xFA63\t0x9DC6\n0xFA64\t0x9DC7\n0xFA65\t0x9DC8\n0xFA66\t0x9DC9\n0xFA67\t0x9DCA\n0xFA68\t0x9DCB\n0xFA69\t0x9DCC\n0xFA6A\t0x9DCD\n0xFA6B\t0x9DCE\n0xFA6C\t0x9DCF\n0xFA6D\t0x9DD0\n0xFA6E\t0x9DD1\n0xFA6F\t0x9DD2\n0xFA70\t0x9DD3\n0xFA71\t0x9DD4\n0xFA72\t0x9DD5\n0xFA73\t0x9DD6\n0xFA74\t0x9DD7\n0xFA75\t0x9DD8\n0xFA76\t0x9DD9\n0xFA77\t0x9DDA\n0xFA78\t0x9DDB\n0xFA79\t0x9DDC\n0xFA7A\t0x9DDD\n0xFA7B\t0x9DDE\n0xFA7C\t0x9DDF\n0xFA7D\t0x9DE0\n0xFA7E\t0x9DE1\n0xFA80\t0x9DE2\n0xFA81\t0x9DE3\n0xFA82\t0x9DE4\n0xFA83\t0x9DE5\n0xFA84\t0x9DE6\n0xFA85\t0x9DE7\n0xFA86\t0x9DE8\n0xFA87\t0x9DE9\n0xFA88\t0x9DEA\n0xFA89\t0x9DEB\n0xFA8A\t0x9DEC\n0xFA8B\t0x9DED\n0xFA8C\t0x9DEE\n0xFA8D\t0x9DEF\n0xFA8E\t0x9DF0\n0xFA8F\t0x9DF1\n0xFA90\t0x9DF2\n0xFA91\t0x9DF3\n0xFA92\t0x9DF4\n0xFA93\t0x9DF5\n0xFA94\t0x9DF6\n0xFA95\t0x9DF7\n0xFA96\t0x9DF8\n0xFA97\t0x9DF9\n0xFA98\t0x9DFA\n0xFA99\t0x9DFB\n0xFA9A\t0x9DFC\n0xFA9B\t0x9DFD\n0xFA9C\t0x9DFE\n0xFA9D\t0x9DFF\n0xFA9E\t0x9E00\n0xFA9F\t0x9E01\n0xFAA0\t0x9E02\n0xFB40\t0x9E03\n0xFB41\t0x9E04\n0xFB42\t0x9E05\n0xFB43\t0x9E06\n0xFB44\t0x9E07\n0xFB45\t0x9E08\n0xFB46\t0x9E09\n0xFB47\t0x9E0A\n0xFB48\t0x9E0B\n0xFB49\t0x9E0C\n0xFB4A\t0x9E0D\n0xFB4B\t0x9E0E\n0xFB4C\t0x9E0F\n0xFB4D\t0x9E10\n0xFB4E\t0x9E11\n0xFB4F\t0x9E12\n0xFB50\t0x9E13\n0xFB51\t0x9E14\n0xFB52\t0x9E15\n0xFB53\t0x9E16\n0xFB54\t0x9E17\n0xFB55\t0x9E18\n0xFB56\t0x9E19\n0xFB57\t0x9E1A\n0xFB58\t0x9E1B\n0xFB59\t0x9E1C\n0xFB5A\t0x9E1D\n0xFB5B\t0x9E1E\n0xFB5C\t0x9E24\n0xFB5D\t0x9E27\n0xFB5E\t0x9E2E\n0xFB5F\t0x9E30\n0xFB60\t0x9E34\n0xFB61\t0x9E3B\n0xFB62\t0x9E3C\n0xFB63\t0x9E40\n0xFB64\t0x9E4D\n0xFB65\t0x9E50\n0xFB66\t0x9E52\n0xFB67\t0x9E53\n0xFB68\t0x9E54\n0xFB69\t0x9E56\n0xFB6A\t0x9E59\n0xFB6B\t0x9E5D\n0xFB6C\t0x9E5F\n0xFB6D\t0x9E60\n0xFB6E\t0x9E61\n0xFB6F\t0x9E62\n0xFB70\t0x9E65\n0xFB71\t0x9E6E\n0xFB72\t0x9E6F\n0xFB73\t0x9E72\n0xFB74\t0x9E74\n0xFB75\t0x9E75\n0xFB76\t0x9E76\n0xFB77\t0x9E77\n0xFB78\t0x9E78\n0xFB79\t0x9E79\n0xFB7A\t0x9E7A\n0xFB7B\t0x9E7B\n0xFB7C\t0x9E7C\n0xFB7D\t0x9E7D\n0xFB7E\t0x9E80\n0xFB80\t0x9E81\n0xFB81\t0x9E83\n0xFB82\t0x9E84\n0xFB83\t0x9E85\n0xFB84\t0x9E86\n0xFB85\t0x9E89\n0xFB86\t0x9E8A\n0xFB87\t0x9E8C\n0xFB88\t0x9E8D\n0xFB89\t0x9E8E\n0xFB8A\t0x9E8F\n0xFB8B\t0x9E90\n0xFB8C\t0x9E91\n0xFB8D\t0x9E94\n0xFB8E\t0x9E95\n0xFB8F\t0x9E96\n0xFB90\t0x9E97\n0xFB91\t0x9E98\n0xFB92\t0x9E99\n0xFB93\t0x9E9A\n0xFB94\t0x9E9B\n0xFB95\t0x9E9C\n0xFB96\t0x9E9E\n0xFB97\t0x9EA0\n0xFB98\t0x9EA1\n0xFB99\t0x9EA2\n0xFB9A\t0x9EA3\n0xFB9B\t0x9EA4\n0xFB9C\t0x9EA5\n0xFB9D\t0x9EA7\n0xFB9E\t0x9EA8\n0xFB9F\t0x9EA9\n0xFBA0\t0x9EAA\n0xFC40\t0x9EAB\n0xFC41\t0x9EAC\n0xFC42\t0x9EAD\n0xFC43\t0x9EAE\n0xFC44\t0x9EAF\n0xFC45\t0x9EB0\n0xFC46\t0x9EB1\n0xFC47\t0x9EB2\n0xFC48\t0x9EB3\n0xFC49\t0x9EB5\n0xFC4A\t0x9EB6\n0xFC4B\t0x9EB7\n0xFC4C\t0x9EB9\n0xFC4D\t0x9EBA\n0xFC4E\t0x9EBC\n0xFC4F\t0x9EBF\n0xFC50\t0x9EC0\n0xFC51\t0x9EC1\n0xFC52\t0x9EC2\n0xFC53\t0x9EC3\n0xFC54\t0x9EC5\n0xFC55\t0x9EC6\n0xFC56\t0x9EC7\n0xFC57\t0x9EC8\n0xFC58\t0x9ECA\n0xFC59\t0x9ECB\n0xFC5A\t0x9ECC\n0xFC5B\t0x9ED0\n0xFC5C\t0x9ED2\n0xFC5D\t0x9ED3\n0xFC5E\t0x9ED5\n0xFC5F\t0x9ED6\n0xFC60\t0x9ED7\n0xFC61\t0x9ED9\n0xFC62\t0x9EDA\n0xFC63\t0x9EDE\n0xFC64\t0x9EE1\n0xFC65\t0x9EE3\n0xFC66\t0x9EE4\n0xFC67\t0x9EE6\n0xFC68\t0x9EE8\n0xFC69\t0x9EEB\n0xFC6A\t0x9EEC\n0xFC6B\t0x9EED\n0xFC6C\t0x9EEE\n0xFC6D\t0x9EF0\n0xFC6E\t0x9EF1\n0xFC6F\t0x9EF2\n0xFC70\t0x9EF3\n0xFC71\t0x9EF4\n0xFC72\t0x9EF5\n0xFC73\t0x9EF6\n0xFC74\t0x9EF7\n0xFC75\t0x9EF8\n0xFC76\t0x9EFA\n0xFC77\t0x9EFD\n0xFC78\t0x9EFF\n0xFC79\t0x9F00\n0xFC7A\t0x9F01\n0xFC7B\t0x9F02\n0xFC7C\t0x9F03\n0xFC7D\t0x9F04\n0xFC7E\t0x9F05\n0xFC80\t0x9F06\n0xFC81\t0x9F07\n0xFC82\t0x9F08\n0xFC83\t0x9F09\n0xFC84\t0x9F0A\n0xFC85\t0x9F0C\n0xFC86\t0x9F0F\n0xFC87\t0x9F11\n0xFC88\t0x9F12\n0xFC89\t0x9F14\n0xFC8A\t0x9F15\n0xFC8B\t0x9F16\n0xFC8C\t0x9F18\n0xFC8D\t0x9F1A\n0xFC8E\t0x9F1B\n0xFC8F\t0x9F1C\n0xFC90\t0x9F1D\n0xFC91\t0x9F1E\n0xFC92\t0x9F1F\n0xFC93\t0x9F21\n0xFC94\t0x9F23\n0xFC95\t0x9F24\n0xFC96\t0x9F25\n0xFC97\t0x9F26\n0xFC98\t0x9F27\n0xFC99\t0x9F28\n0xFC9A\t0x9F29\n0xFC9B\t0x9F2A\n0xFC9C\t0x9F2B\n0xFC9D\t0x9F2D\n0xFC9E\t0x9F2E\n0xFC9F\t0x9F30\n0xFCA0\t0x9F31\n0xFD40\t0x9F32\n0xFD41\t0x9F33\n0xFD42\t0x9F34\n0xFD43\t0x9F35\n0xFD44\t0x9F36\n0xFD45\t0x9F38\n0xFD46\t0x9F3A\n0xFD47\t0x9F3C\n0xFD48\t0x9F3F\n0xFD49\t0x9F40\n0xFD4A\t0x9F41\n0xFD4B\t0x9F42\n0xFD4C\t0x9F43\n0xFD4D\t0x9F45\n0xFD4E\t0x9F46\n0xFD4F\t0x9F47\n0xFD50\t0x9F48\n0xFD51\t0x9F49\n0xFD52\t0x9F4A\n0xFD53\t0x9F4B\n0xFD54\t0x9F4C\n0xFD55\t0x9F4D\n0xFD56\t0x9F4E\n0xFD57\t0x9F4F\n0xFD58\t0x9F52\n0xFD59\t0x9F53\n0xFD5A\t0x9F54\n0xFD5B\t0x9F55\n0xFD5C\t0x9F56\n0xFD5D\t0x9F57\n0xFD5E\t0x9F58\n0xFD5F\t0x9F59\n0xFD60\t0x9F5A\n0xFD61\t0x9F5B\n0xFD62\t0x9F5C\n0xFD63\t0x9F5D\n0xFD64\t0x9F5E\n0xFD65\t0x9F5F\n0xFD66\t0x9F60\n0xFD67\t0x9F61\n0xFD68\t0x9F62\n0xFD69\t0x9F63\n0xFD6A\t0x9F64\n0xFD6B\t0x9F65\n0xFD6C\t0x9F66\n0xFD6D\t0x9F67\n0xFD6E\t0x9F68\n0xFD6F\t0x9F69\n0xFD70\t0x9F6A\n0xFD71\t0x9F6B\n0xFD72\t0x9F6C\n0xFD73\t0x9F6D\n0xFD74\t0x9F6E\n0xFD75\t0x9F6F\n0xFD76\t0x9F70\n0xFD77\t0x9F71\n0xFD78\t0x9F72\n0xFD79\t0x9F73\n0xFD7A\t0x9F74\n0xFD7B\t0x9F75\n0xFD7C\t0x9F76\n0xFD7D\t0x9F77\n0xFD7E\t0x9F78\n0xFD80\t0x9F79\n0xFD81\t0x9F7A\n0xFD82\t0x9F7B\n0xFD83\t0x9F7C\n0xFD84\t0x9F7D\n0xFD85\t0x9F7E\n0xFD86\t0x9F81\n0xFD87\t0x9F82\n0xFD88\t0x9F8D\n0xFD89\t0x9F8E\n0xFD8A\t0x9F8F\n0xFD8B\t0x9F90\n0xFD8C\t0x9F91\n0xFD8D\t0x9F92\n0xFD8E\t0x9F93\n0xFD8F\t0x9F94\n0xFD90\t0x9F95\n0xFD91\t0x9F96\n0xFD92\t0x9F97\n0xFD93\t0x9F98\n0xFD94\t0x9F9C\n0xFD95\t0x9F9D\n0xFD96\t0x9F9E\n0xFD97\t0x9FA1\n0xFD98\t0x9FA2\n0xFD99\t0x9FA3\n0xFD9A\t0x9FA4\n0xFD9B\t0x9FA5\n0xFD9C\t0xF92C\n0xFD9D\t0xF979\n0xFD9E\t0xF995\n0xFD9F\t0xF9E7\n0xFDA0\t0xF9F1\n0xFE40\t0xFA0C\n0xFE41\t0xFA0D\n0xFE42\t0xFA0E\n0xFE43\t0xFA0F\n0xFE44\t0xFA11\n0xFE45\t0xFA13\n0xFE46\t0xFA14\n0xFE47\t0xFA18\n0xFE48\t0xFA1F\n0xFE49\t0xFA20\n0xFE4A\t0xFA21\n0xFE4B\t0xFA23\n0xFE4C\t0xFA24\n0xFE4D\t0xFA27\n0xFE4E\t0xFA28\n0xFE4F\t0xFA29\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/Georgian-Academy.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x201A\n0x83\t0x0192\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x88\t0x02C6\n0x89\t0x2030\n0x8A\t0x0160\n0x8B\t0x2039\n0x8C\t0x0152\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x98\t0x02DC\n0x99\t0x2122\n0x9A\t0x0161\n0x9B\t0x203A\n0x9C\t0x0153\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x0178\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x10D0\n0xC1\t0x10D1\n0xC2\t0x10D2\n0xC3\t0x10D3\n0xC4\t0x10D4\n0xC5\t0x10D5\n0xC6\t0x10D6\n0xC7\t0x10D7\n0xC8\t0x10D8\n0xC9\t0x10D9\n0xCA\t0x10DA\n0xCB\t0x10DB\n0xCC\t0x10DC\n0xCD\t0x10DD\n0xCE\t0x10DE\n0xCF\t0x10DF\n0xD0\t0x10E0\n0xD1\t0x10E1\n0xD2\t0x10E2\n0xD3\t0x10E3\n0xD4\t0x10E4\n0xD5\t0x10E5\n0xD6\t0x10E6\n0xD7\t0x10E7\n0xD8\t0x10E8\n0xD9\t0x10E9\n0xDA\t0x10EA\n0xDB\t0x10EB\n0xDC\t0x10EC\n0xDD\t0x10ED\n0xDE\t0x10EE\n0xDF\t0x10EF\n0xE0\t0x10F0\n0xE1\t0x10F1\n0xE2\t0x10F2\n0xE3\t0x10F3\n0xE4\t0x10F4\n0xE5\t0x10F5\n0xE6\t0x10F6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x00F0\n0xF1\t0x00F1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x00FD\n0xFE\t0x00FE\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/Georgian-PS.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x201A\n0x83\t0x0192\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x88\t0x02C6\n0x89\t0x2030\n0x8A\t0x0160\n0x8B\t0x2039\n0x8C\t0x0152\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x98\t0x02DC\n0x99\t0x2122\n0x9A\t0x0161\n0x9B\t0x203A\n0x9C\t0x0153\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x0178\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x10D0\n0xC1\t0x10D1\n0xC2\t0x10D2\n0xC3\t0x10D3\n0xC4\t0x10D4\n0xC5\t0x10D5\n0xC6\t0x10D6\n0xC7\t0x10F1\n0xC8\t0x10D7\n0xC9\t0x10D8\n0xCA\t0x10D9\n0xCB\t0x10DA\n0xCC\t0x10DB\n0xCD\t0x10DC\n0xCE\t0x10F2\n0xCF\t0x10DD\n0xD0\t0x10DE\n0xD1\t0x10DF\n0xD2\t0x10E0\n0xD3\t0x10E1\n0xD4\t0x10E2\n0xD5\t0x10F3\n0xD6\t0x10E3\n0xD7\t0x10E4\n0xD8\t0x10E5\n0xD9\t0x10E6\n0xDA\t0x10E7\n0xDB\t0x10E8\n0xDC\t0x10E9\n0xDD\t0x10EA\n0xDE\t0x10EB\n0xDF\t0x10EC\n0xE0\t0x10ED\n0xE1\t0x10EE\n0xE2\t0x10F4\n0xE3\t0x10EF\n0xE4\t0x10F0\n0xE5\t0x10F5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x00F0\n0xF1\t0x00F1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x00FD\n0xFE\t0x00FE\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/HP-ROMAN8.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x00C0\n0xA2\t0x00C2\n0xA3\t0x00C8\n0xA4\t0x00CA\n0xA5\t0x00CB\n0xA6\t0x00CE\n0xA7\t0x00CF\n0xA8\t0x00B4\n0xA9\t0x02CB\n0xAA\t0x02C6\n0xAB\t0x00A8\n0xAC\t0x02DC\n0xAD\t0x00D9\n0xAE\t0x00DB\n0xAF\t0x20A4\n0xB0\t0x00AF\n0xB1\t0x00DD\n0xB2\t0x00FD\n0xB3\t0x00B0\n0xB4\t0x00C7\n0xB5\t0x00E7\n0xB6\t0x00D1\n0xB7\t0x00F1\n0xB8\t0x00A1\n0xB9\t0x00BF\n0xBA\t0x00A4\n0xBB\t0x00A3\n0xBC\t0x00A5\n0xBD\t0x00A7\n0xBE\t0x0192\n0xBF\t0x00A2\n0xC0\t0x00E2\n0xC1\t0x00EA\n0xC2\t0x00F4\n0xC3\t0x00FB\n0xC4\t0x00E1\n0xC5\t0x00E9\n0xC6\t0x00F3\n0xC7\t0x00FA\n0xC8\t0x00E0\n0xC9\t0x00E8\n0xCA\t0x00F2\n0xCB\t0x00F9\n0xCC\t0x00E4\n0xCD\t0x00EB\n0xCE\t0x00F6\n0xCF\t0x00FC\n0xD0\t0x00C5\n0xD1\t0x00EE\n0xD2\t0x00D8\n0xD3\t0x00C6\n0xD4\t0x00E5\n0xD5\t0x00ED\n0xD6\t0x00F8\n0xD7\t0x00E6\n0xD8\t0x00C4\n0xD9\t0x00EC\n0xDA\t0x00D6\n0xDB\t0x00DC\n0xDC\t0x00C9\n0xDD\t0x00EF\n0xDE\t0x00DF\n0xDF\t0x00D4\n0xE0\t0x00C1\n0xE1\t0x00C3\n0xE2\t0x00E3\n0xE3\t0x00D0\n0xE4\t0x00F0\n0xE5\t0x00CD\n0xE6\t0x00CC\n0xE7\t0x00D3\n0xE8\t0x00D2\n0xE9\t0x00D5\n0xEA\t0x00F5\n0xEB\t0x0160\n0xEC\t0x0161\n0xED\t0x00DA\n0xEE\t0x0178\n0xEF\t0x00FF\n0xF0\t0x00DE\n0xF1\t0x00FE\n0xF2\t0x00B7\n0xF3\t0x00B5\n0xF4\t0x00B6\n0xF5\t0x00BE\n0xF6\t0x2014\n0xF7\t0x00BC\n0xF8\t0x00BD\n0xF9\t0x00AA\n0xFA\t0x00BA\n0xFB\t0x00AB\n0xFC\t0x25A0\n0xFD\t0x00BB\n0xFE\t0x00B1\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/HZ-snippet",
    "content": "Chinese (~{VPND~},~{FUM(;0~},~{::So~})\t~{Dc:C~}\n\tGB   -- ~{T*Fx~}  ~{?*7\"~}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/HZ-snippet.UTF-8",
    "content": "Chinese (中文,普通话,汉语)\t你好\n\tGB   -- 元气  开发\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-CN-EXT-snippet",
    "content": "Chinese (\u001b$)A\u000eVPND\u000f,\u000eFUM(;0\u000f,\u000e::So\u000f)\t\u000eDc:C\u000f\n\tGB   -- \u001b$)A\u000eT*Fx\u000f  \u000e?*7\"\u000f\n\u001b$)G\u000e^O\u001b$+I\u001bO7J\u001b$*H\u001bN+j\u000f\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-CN-EXT-snippet.UTF-8",
    "content": "Chinese (中文,普通话,汉语)\t你好\n\tGB   -- 元气  开发\n喲痓洈\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-CN-snippet",
    "content": "Chinese (\u001b$)A\u000eVPND\u000f,\u000eFUM(;0\u000f,\u000e::So\u000f)\t\u000eDc:C\u000f\n\tGB   -- \u001b$)A\u000eT*Fx\u000f  \u000e?*7\"\u000f\n\u001b$)G\u000e^O\u001b$*H\u001bN+j\u000f\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-CN-snippet.UTF-8",
    "content": "Chinese (中文,普通话,汉语)\t你好\n\tGB   -- 元气  开发\n喲洈\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-JP-1-snippet",
    "content": "Just for a test of JISX0212: \u001b$BqV\u001b$(DiQ\u001b(B (the second character is of JISX0212)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-JP-1-snippet.UTF-8",
    "content": "Just for a test of JISX0212: 騏驎 (the second character is of JISX0212)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-JP-2-snippet",
    "content": "Japanese (\u001b$BF|K\\8l\u001b(B)\t\t\u001b$B$3$s$K$A$O\u001b(B, \u001b(I:]FAJ\u001b(B\n\tJIS  -- \u001b$B855$\u001b(B  \u001b$B3+H/\u001b(B\nJust for a test of JISX0212: \u001b$BqV\u001b$(DiQ\u001b(B (the second character is of JISX0212)\nChinese (\u001b$BCfJ8\u001b(B,\u001b$BIaDL\u001b$A;0\u001b(B,\u001b$A::So\u001b(B)\t\u001b$(D0_\u001b$B9%\u001b(B\n\tGB   -- \u001b$B85]c\u001b(B  \u001b$A?*7\"\u001b(B\nKorean (\u001b$(CGQ1[\u001b(B)\t\t\t\u001b$(C>H3gGO<<?d\u001b(B, \u001b$(C>H3gGO=J4O1n\u001b(B\n\tKSC  -- \u001b$B85]f\u001b(B  \u001b$B3+b$\u001b(B\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-JP-2-snippet.UTF-8",
    "content": "Japanese (日本語)\t\tこんにちは, ｺﾝﾆﾁﾊ\n\tJIS  -- 元気  開発\nJust for a test of JISX0212: 騏驎 (the second character is of JISX0212)\nChinese (中文,普通话,汉语)\t你好\n\tGB   -- 元气  开发\nKorean (한글)\t\t\t안녕하세요, 안녕하십니까\n\tKSC  -- 元氣  開發\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-JP-3-snippet",
    "content": "  ! \" # $ % & ' ( ) * + , - . /\n0 1 2 3 4 5 6 7 8 9 : ; < = > ?\n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n   \u001b(I!\u001b(B \u001b(I\"\u001b(B \u001b(I#\u001b(B \u001b(I$\u001b(B \u001b(I%\u001b(B \u001b(I&\u001b(B \u001b(I'\u001b(B \u001b(I(\u001b(B \u001b(I)\u001b(B \u001b(I*\u001b(B \u001b(I+\u001b(B \u001b(I,\u001b(B \u001b(I-\u001b(B \u001b(I.\u001b(B \u001b(I/\u001b(B\n\u001b(I0\u001b(B \u001b(I1\u001b(B \u001b(I2\u001b(B \u001b(I3\u001b(B \u001b(I4\u001b(B \u001b(I5\u001b(B \u001b(I6\u001b(B \u001b(I7\u001b(B \u001b(I8\u001b(B \u001b(I9\u001b(B \u001b(I:\u001b(B \u001b(I;\u001b(B \u001b(I<\u001b(B \u001b(I=\u001b(B \u001b(I>\u001b(B \u001b(I?\u001b(B\n\u001b(I@\u001b(B \u001b(IA\u001b(B \u001b(IB\u001b(B \u001b(IC\u001b(B \u001b(ID\u001b(B \u001b(IE\u001b(B \u001b(IF\u001b(B \u001b(IG\u001b(B \u001b(IH\u001b(B \u001b(II\u001b(B \u001b(IJ\u001b(B \u001b(IK\u001b(B \u001b(IL\u001b(B \u001b(IM\u001b(B \u001b(IN\u001b(B \u001b(IO\u001b(B\n\u001b(IP\u001b(B \u001b(IQ\u001b(B \u001b(IR\u001b(B \u001b(IS\u001b(B \u001b(IT\u001b(B \u001b(IU\u001b(B \u001b(IV\u001b(B \u001b(IW\u001b(B \u001b(IX\u001b(B \u001b(IY\u001b(B \u001b(IZ\u001b(B \u001b(I[\u001b(B \u001b(I\\\u001b(B \u001b(I]\u001b(B \u001b(I^\u001b(B \u001b(I_\u001b(B\n   \u001b$B!!\u001b(B \u001b$B!\"\u001b(B \u001b$B!#\u001b(B \u001b$B!$\u001b(B \u001b$B!%\u001b(B \u001b$B!&\u001b(B \u001b$B!'\u001b(B \u001b$B!(\u001b(B \u001b$B!)\u001b(B \u001b$B!*\u001b(B \u001b$B!+\u001b(B \u001b$B!,\u001b(B \u001b$B!-\u001b(B \u001b$B!.\u001b(B \u001b$B!/\u001b(B\n\u001b$B!0\u001b(B \u001b$B!1\u001b(B \u001b$B!2\u001b(B \u001b$B!3\u001b(B \u001b$B!4\u001b(B \u001b$B!5\u001b(B \u001b$B!6\u001b(B \u001b$B!7\u001b(B \u001b$B!8\u001b(B \u001b$B!9\u001b(B \u001b$B!:\u001b(B \u001b$B!;\u001b(B \u001b$B!<\u001b(B \u001b$B!=\u001b(B \u001b$B!>\u001b(B \u001b$B!?\u001b(B\n\u001b$B!@\u001b(B \u001b$B!A\u001b(B \u001b$B!B\u001b(B \u001b$B!C\u001b(B \u001b$B!D\u001b(B \u001b$B!E\u001b(B \u001b$B!F\u001b(B \u001b$B!G\u001b(B \u001b$B!H\u001b(B \u001b$B!I\u001b(B \u001b$B!J\u001b(B \u001b$B!K\u001b(B \u001b$B!L\u001b(B \u001b$B!M\u001b(B \u001b$B!N\u001b(B \u001b$B!O\u001b(B\n\u001b$B!P\u001b(B \u001b$B!Q\u001b(B \u001b$B!R\u001b(B \u001b$B!S\u001b(B \u001b$B!T\u001b(B \u001b$B!U\u001b(B \u001b$B!V\u001b(B \u001b$B!W\u001b(B \u001b$B!X\u001b(B \u001b$B!Y\u001b(B \u001b$B!Z\u001b(B \u001b$B![\u001b(B \u001b$B!\\\u001b(B \u001b$B!]\u001b(B \u001b$B!^\u001b(B \u001b$B!_\u001b(B\n\u001b$B!`\u001b(B \u001b$B!a\u001b(B \u001b$B!b\u001b(B \u001b$B!c\u001b(B \u001b$B!d\u001b(B \u001b$B!e\u001b(B \u001b$B!f\u001b(B \u001b$B!g\u001b(B \u001b$B!h\u001b(B \u001b$B!i\u001b(B \u001b$B!j\u001b(B \u001b$B!k\u001b(B \u001b$B!l\u001b(B \u001b$B!m\u001b(B \u001b$B!n\u001b(B \u001b$B!o\u001b(B\n\u001b$B!p\u001b(B \u001b$B!q\u001b(B \u001b$B!r\u001b(B \u001b$B!s\u001b(B \u001b$B!t\u001b(B \u001b$B!u\u001b(B \u001b$B!v\u001b(B \u001b$B!w\u001b(B \u001b$B!x\u001b(B \u001b$B!y\u001b(B \u001b$B!z\u001b(B \u001b$B!{\u001b(B \u001b$B!|\u001b(B \u001b$B!}\u001b(B \u001b$B!~\u001b(B\n   \u001b$B\"!\u001b(B \u001b$B\"\"\u001b(B \u001b$B\"#\u001b(B \u001b$B\"$\u001b(B \u001b$B\"%\u001b(B \u001b$B\"&\u001b(B \u001b$B\"'\u001b(B \u001b$B\"(\u001b(B \u001b$B\")\u001b(B \u001b$B\"*\u001b(B \u001b$B\"+\u001b(B \u001b$B\",\u001b(B \u001b$B\"-\u001b(B \u001b$B\".\u001b(B \u001b$(Q\"/\u001b(B\n\u001b$(Q\"0\u001b(B \u001b$(Q\"1\u001b(B \u001b$(Q\"2\u001b(B \u001b$(Q\"3\u001b(B \u001b$(Q\"4\u001b(B \u001b$(Q\"5\u001b(B \u001b$(Q\"6\u001b(B \u001b$(Q\"7\u001b(B \u001b$(Q\"8\u001b(B \u001b$(Q\"9\u001b(B \u001b$B\":\u001b(B \u001b$B\";\u001b(B \u001b$B\"<\u001b(B \u001b$B\"=\u001b(B \u001b$B\">\u001b(B \u001b$B\"?\u001b(B\n\u001b$B\"@\u001b(B \u001b$B\"A\u001b(B \u001b$(Q\"B\u001b(B \u001b$(Q\"C\u001b(B \u001b$(Q\"D\u001b(B \u001b$(Q\"E\u001b(B \u001b$(Q\"F\u001b(B \u001b$(Q\"G\u001b(B \u001b$(Q\"H\u001b(B \u001b$(Q\"I\u001b(B \u001b$B\"J\u001b(B \u001b$B\"K\u001b(B \u001b$B\"L\u001b(B \u001b$B\"M\u001b(B \u001b$B\"N\u001b(B \u001b$B\"O\u001b(B\n\u001b$B\"P\u001b(B \u001b$(Q\"Q\u001b(B \u001b$(Q\"R\u001b(B \u001b$(Q\"S\u001b(B \u001b$(Q\"T\u001b(B \u001b$(Q\"U\u001b(B \u001b$(Q\"V\u001b(B \u001b$(Q\"W\u001b(B \u001b$(Q\"X\u001b(B \u001b$(Q\"Y\u001b(B \u001b$(Q\"Z\u001b(B \u001b$(Q\"[\u001b(B \u001b$B\"\\\u001b(B \u001b$B\"]\u001b(B \u001b$B\"^\u001b(B \u001b$B\"_\u001b(B\n\u001b$B\"`\u001b(B \u001b$B\"a\u001b(B \u001b$B\"b\u001b(B \u001b$B\"c\u001b(B \u001b$B\"d\u001b(B \u001b$B\"e\u001b(B \u001b$B\"f\u001b(B \u001b$B\"g\u001b(B \u001b$B\"h\u001b(B \u001b$B\"i\u001b(B \u001b$B\"j\u001b(B \u001b$(Q\"k\u001b(B \u001b$(Q\"l\u001b(B \u001b$(Q\"m\u001b(B \u001b$(Q\"n\u001b(B \u001b$(Q\"o\u001b(B\n\u001b$(Q\"p\u001b(B \u001b$(Q\"q\u001b(B \u001b$B\"r\u001b(B \u001b$B\"s\u001b(B \u001b$B\"t\u001b(B \u001b$B\"u\u001b(B \u001b$B\"v\u001b(B \u001b$B\"w\u001b(B \u001b$B\"x\u001b(B \u001b$B\"y\u001b(B \u001b$(Q\"z\u001b(B \u001b$(Q\"{\u001b(B \u001b$(Q\"|\u001b(B \u001b$(Q\"}\u001b(B \u001b$B\"~\u001b(B\n   \u001b$(Q#!\u001b(B \u001b$(Q#\"\u001b(B \u001b$(Q##\u001b(B \u001b$(Q#$\u001b(B \u001b$(Q#%\u001b(B \u001b$(Q#&\u001b(B \u001b$(Q#'\u001b(B \u001b$(Q#(\u001b(B \u001b$(Q#)\u001b(B \u001b$(Q#*\u001b(B \u001b$(Q#+\u001b(B \u001b$(Q#,\u001b(B \u001b$(Q#-\u001b(B \u001b$(Q#.\u001b(B \u001b$(Q#/\u001b(B\n\u001b$B#0\u001b(B \u001b$B#1\u001b(B \u001b$B#2\u001b(B \u001b$B#3\u001b(B \u001b$B#4\u001b(B \u001b$B#5\u001b(B \u001b$B#6\u001b(B \u001b$B#7\u001b(B \u001b$B#8\u001b(B \u001b$B#9\u001b(B \u001b$(Q#:\u001b(B \u001b$(Q#;\u001b(B \u001b$(Q#<\u001b(B \u001b$(Q#=\u001b(B \u001b$(Q#>\u001b(B \u001b$(Q#?\u001b(B\n\u001b$(Q#@\u001b(B \u001b$B#A\u001b(B \u001b$B#B\u001b(B \u001b$B#C\u001b(B \u001b$B#D\u001b(B \u001b$B#E\u001b(B \u001b$B#F\u001b(B \u001b$B#G\u001b(B \u001b$B#H\u001b(B \u001b$B#I\u001b(B \u001b$B#J\u001b(B \u001b$B#K\u001b(B \u001b$B#L\u001b(B \u001b$B#M\u001b(B \u001b$B#N\u001b(B \u001b$B#O\u001b(B\n\u001b$B#P\u001b(B \u001b$B#Q\u001b(B \u001b$B#R\u001b(B \u001b$B#S\u001b(B \u001b$B#T\u001b(B \u001b$B#U\u001b(B \u001b$B#V\u001b(B \u001b$B#W\u001b(B \u001b$B#X\u001b(B \u001b$B#Y\u001b(B \u001b$B#Z\u001b(B \u001b$(Q#[\u001b(B \u001b$(Q#\\\u001b(B \u001b$(Q#]\u001b(B \u001b$(Q#^\u001b(B \u001b$(Q#_\u001b(B\n\u001b$(Q#`\u001b(B \u001b$B#a\u001b(B \u001b$B#b\u001b(B \u001b$B#c\u001b(B \u001b$B#d\u001b(B \u001b$B#e\u001b(B \u001b$B#f\u001b(B \u001b$B#g\u001b(B \u001b$B#h\u001b(B \u001b$B#i\u001b(B \u001b$B#j\u001b(B \u001b$B#k\u001b(B \u001b$B#l\u001b(B \u001b$B#m\u001b(B \u001b$B#n\u001b(B \u001b$B#o\u001b(B\n\u001b$B#p\u001b(B \u001b$B#q\u001b(B \u001b$B#r\u001b(B \u001b$B#s\u001b(B \u001b$B#t\u001b(B \u001b$B#u\u001b(B \u001b$B#v\u001b(B \u001b$B#w\u001b(B \u001b$B#x\u001b(B \u001b$B#y\u001b(B \u001b$B#z\u001b(B \u001b$(Q#{\u001b(B \u001b$(Q#|\u001b(B \u001b$(Q#}\u001b(B \u001b$(Q#~\u001b(B\n   \u001b$B$!\u001b(B \u001b$B$\"\u001b(B \u001b$B$#\u001b(B \u001b$B$$\u001b(B \u001b$B$%\u001b(B \u001b$B$&\u001b(B \u001b$B$'\u001b(B \u001b$B$(\u001b(B \u001b$B$)\u001b(B \u001b$B$*\u001b(B \u001b$B$+\u001b(B \u001b$B$,\u001b(B \u001b$B$-\u001b(B \u001b$B$.\u001b(B \u001b$B$/\u001b(B\n\u001b$B$0\u001b(B \u001b$B$1\u001b(B \u001b$B$2\u001b(B \u001b$B$3\u001b(B \u001b$B$4\u001b(B \u001b$B$5\u001b(B \u001b$B$6\u001b(B \u001b$B$7\u001b(B \u001b$B$8\u001b(B \u001b$B$9\u001b(B \u001b$B$:\u001b(B \u001b$B$;\u001b(B \u001b$B$<\u001b(B \u001b$B$=\u001b(B \u001b$B$>\u001b(B \u001b$B$?\u001b(B\n\u001b$B$@\u001b(B \u001b$B$A\u001b(B \u001b$B$B\u001b(B \u001b$B$C\u001b(B \u001b$B$D\u001b(B \u001b$B$E\u001b(B \u001b$B$F\u001b(B \u001b$B$G\u001b(B \u001b$B$H\u001b(B \u001b$B$I\u001b(B \u001b$B$J\u001b(B \u001b$B$K\u001b(B \u001b$B$L\u001b(B \u001b$B$M\u001b(B \u001b$B$N\u001b(B \u001b$B$O\u001b(B\n\u001b$B$P\u001b(B \u001b$B$Q\u001b(B \u001b$B$R\u001b(B \u001b$B$S\u001b(B \u001b$B$T\u001b(B \u001b$B$U\u001b(B \u001b$B$V\u001b(B \u001b$B$W\u001b(B \u001b$B$X\u001b(B \u001b$B$Y\u001b(B \u001b$B$Z\u001b(B \u001b$B$[\u001b(B \u001b$B$\\\u001b(B \u001b$B$]\u001b(B \u001b$B$^\u001b(B \u001b$B$_\u001b(B\n\u001b$B$`\u001b(B \u001b$B$a\u001b(B \u001b$B$b\u001b(B \u001b$B$c\u001b(B \u001b$B$d\u001b(B \u001b$B$e\u001b(B \u001b$B$f\u001b(B \u001b$B$g\u001b(B \u001b$B$h\u001b(B \u001b$B$i\u001b(B \u001b$B$j\u001b(B \u001b$B$k\u001b(B \u001b$B$l\u001b(B \u001b$B$m\u001b(B \u001b$B$n\u001b(B \u001b$B$o\u001b(B\n\u001b$B$p\u001b(B \u001b$B$q\u001b(B \u001b$B$r\u001b(B \u001b$B$s\u001b(B \u001b$(Q$t\u001b(B \u001b$(Q$u\u001b(B \u001b$(Q$v\u001b(B \u001b$(Q$w\u001b(B \u001b$(Q$x\u001b(B \u001b$(Q$y\u001b(B \u001b$(Q$z\u001b(B \u001b$(Q${\u001b(B\n   \u001b$B%!\u001b(B \u001b$B%\"\u001b(B \u001b$B%#\u001b(B \u001b$B%$\u001b(B \u001b$B%%\u001b(B \u001b$B%&\u001b(B \u001b$B%'\u001b(B \u001b$B%(\u001b(B \u001b$B%)\u001b(B \u001b$B%*\u001b(B \u001b$B%+\u001b(B \u001b$B%,\u001b(B \u001b$B%-\u001b(B \u001b$B%.\u001b(B \u001b$B%/\u001b(B\n\u001b$B%0\u001b(B \u001b$B%1\u001b(B \u001b$B%2\u001b(B \u001b$B%3\u001b(B \u001b$B%4\u001b(B \u001b$B%5\u001b(B \u001b$B%6\u001b(B \u001b$B%7\u001b(B \u001b$B%8\u001b(B \u001b$B%9\u001b(B \u001b$B%:\u001b(B \u001b$B%;\u001b(B \u001b$B%<\u001b(B \u001b$B%=\u001b(B \u001b$B%>\u001b(B \u001b$B%?\u001b(B\n\u001b$B%@\u001b(B \u001b$B%A\u001b(B \u001b$B%B\u001b(B \u001b$B%C\u001b(B \u001b$B%D\u001b(B \u001b$B%E\u001b(B \u001b$B%F\u001b(B \u001b$B%G\u001b(B \u001b$B%H\u001b(B \u001b$B%I\u001b(B \u001b$B%J\u001b(B \u001b$B%K\u001b(B \u001b$B%L\u001b(B \u001b$B%M\u001b(B \u001b$B%N\u001b(B \u001b$B%O\u001b(B\n\u001b$B%P\u001b(B \u001b$B%Q\u001b(B \u001b$B%R\u001b(B \u001b$B%S\u001b(B \u001b$B%T\u001b(B \u001b$B%U\u001b(B \u001b$B%V\u001b(B \u001b$B%W\u001b(B \u001b$B%X\u001b(B \u001b$B%Y\u001b(B \u001b$B%Z\u001b(B \u001b$B%[\u001b(B \u001b$B%\\\u001b(B \u001b$B%]\u001b(B \u001b$B%^\u001b(B \u001b$B%_\u001b(B\n\u001b$B%`\u001b(B \u001b$B%a\u001b(B \u001b$B%b\u001b(B \u001b$B%c\u001b(B \u001b$B%d\u001b(B \u001b$B%e\u001b(B \u001b$B%f\u001b(B \u001b$B%g\u001b(B \u001b$B%h\u001b(B \u001b$B%i\u001b(B \u001b$B%j\u001b(B \u001b$B%k\u001b(B \u001b$B%l\u001b(B \u001b$B%m\u001b(B \u001b$B%n\u001b(B \u001b$B%o\u001b(B\n\u001b$B%p\u001b(B \u001b$B%q\u001b(B \u001b$B%r\u001b(B \u001b$B%s\u001b(B \u001b$B%t\u001b(B \u001b$B%u\u001b(B \u001b$B%v\u001b(B \u001b$(Q%w\u001b(B \u001b$(Q%x\u001b(B \u001b$(Q%y\u001b(B \u001b$(Q%z\u001b(B \u001b$(Q%{\u001b(B \u001b$(Q%|\u001b(B \u001b$(Q%}\u001b(B \u001b$(Q%~\u001b(B\n   \u001b$B&!\u001b(B \u001b$B&\"\u001b(B \u001b$B&#\u001b(B \u001b$B&$\u001b(B \u001b$B&%\u001b(B \u001b$B&&\u001b(B \u001b$B&'\u001b(B \u001b$B&(\u001b(B \u001b$B&)\u001b(B \u001b$B&*\u001b(B \u001b$B&+\u001b(B \u001b$B&,\u001b(B \u001b$B&-\u001b(B \u001b$B&.\u001b(B \u001b$B&/\u001b(B\n\u001b$B&0\u001b(B \u001b$B&1\u001b(B \u001b$B&2\u001b(B \u001b$B&3\u001b(B \u001b$B&4\u001b(B \u001b$B&5\u001b(B \u001b$B&6\u001b(B \u001b$B&7\u001b(B \u001b$B&8\u001b(B \u001b$(Q&9\u001b(B \u001b$(Q&:\u001b(B \u001b$(Q&;\u001b(B \u001b$(Q&<\u001b(B \u001b$(Q&=\u001b(B \u001b$(Q&>\u001b(B \u001b$(Q&?\u001b(B\n\u001b$(Q&@\u001b(B \u001b$B&A\u001b(B \u001b$B&B\u001b(B \u001b$B&C\u001b(B \u001b$B&D\u001b(B \u001b$B&E\u001b(B \u001b$B&F\u001b(B \u001b$B&G\u001b(B \u001b$B&H\u001b(B \u001b$B&I\u001b(B \u001b$B&J\u001b(B \u001b$B&K\u001b(B \u001b$B&L\u001b(B \u001b$B&M\u001b(B \u001b$B&N\u001b(B \u001b$B&O\u001b(B\n\u001b$B&P\u001b(B \u001b$B&Q\u001b(B \u001b$B&R\u001b(B \u001b$B&S\u001b(B \u001b$B&T\u001b(B \u001b$B&U\u001b(B \u001b$B&V\u001b(B \u001b$B&W\u001b(B \u001b$B&X\u001b(B \u001b$(Q&Y\u001b(B \u001b$(Q&Z\u001b(B \u001b$(Q&[\u001b(B \u001b$(Q&\\\u001b(B \u001b$(Q&]\u001b(B \u001b$(Q&^\u001b(B \u001b$(Q&_\u001b(B\n\u001b$(Q&`\u001b(B \u001b$(Q&a\u001b(B \u001b$(Q&b\u001b(B \u001b$(Q&c\u001b(B \u001b$(Q&d\u001b(B \u001b$(Q&e\u001b(B \u001b$(Q&f\u001b(B \u001b$(Q&g\u001b(B \u001b$(Q&h\u001b(B \u001b$(Q&i\u001b(B \u001b$(Q&j\u001b(B \u001b$(Q&k\u001b(B \u001b$(Q&l\u001b(B \u001b$(Q&m\u001b(B \u001b$(Q&n\u001b(B \u001b$(Q&o\u001b(B\n\u001b$(Q&p\u001b(B \u001b$(Q&q\u001b(B \u001b$(Q&r\u001b(B \u001b$(Q&s\u001b(B \u001b$(Q&t\u001b(B \u001b$(Q&u\u001b(B \u001b$(Q&v\u001b(B \u001b$(Q&w\u001b(B \u001b$(Q&x\u001b(B \u001b$(Q&y\u001b(B \u001b$(Q&z\u001b(B \u001b$(Q&{\u001b(B \u001b$(Q&|\u001b(B \u001b$(Q&}\u001b(B \u001b$(Q&~\u001b(B\n   \u001b$B'!\u001b(B \u001b$B'\"\u001b(B \u001b$B'#\u001b(B \u001b$B'$\u001b(B \u001b$B'%\u001b(B \u001b$B'&\u001b(B \u001b$B''\u001b(B \u001b$B'(\u001b(B \u001b$B')\u001b(B \u001b$B'*\u001b(B \u001b$B'+\u001b(B \u001b$B',\u001b(B \u001b$B'-\u001b(B \u001b$B'.\u001b(B \u001b$B'/\u001b(B\n\u001b$B'0\u001b(B \u001b$B'1\u001b(B \u001b$B'2\u001b(B \u001b$B'3\u001b(B \u001b$B'4\u001b(B \u001b$B'5\u001b(B \u001b$B'6\u001b(B \u001b$B'7\u001b(B \u001b$B'8\u001b(B \u001b$B'9\u001b(B \u001b$B':\u001b(B \u001b$B';\u001b(B \u001b$B'<\u001b(B \u001b$B'=\u001b(B \u001b$B'>\u001b(B \u001b$B'?\u001b(B\n\u001b$B'@\u001b(B \u001b$B'A\u001b(B \u001b$(Q'B\u001b(B \u001b$(Q'C\u001b(B \u001b$(Q'D\u001b(B \u001b$(Q'E\u001b(B \u001b$(Q'F\u001b(B \u001b$(Q'G\u001b(B \u001b$(Q'H\u001b(B \u001b$(Q'I\u001b(B \u001b$(Q'J\u001b(B \u001b$(Q'K\u001b(B \u001b$(Q'L\u001b(B \u001b$(Q'M\u001b(B \u001b$(Q'N\u001b(B \u001b$(Q'O\u001b(B\n\u001b$(Q'P\u001b(B \u001b$B'Q\u001b(B \u001b$B'R\u001b(B \u001b$B'S\u001b(B \u001b$B'T\u001b(B \u001b$B'U\u001b(B \u001b$B'V\u001b(B \u001b$B'W\u001b(B \u001b$B'X\u001b(B \u001b$B'Y\u001b(B \u001b$B'Z\u001b(B \u001b$B'[\u001b(B \u001b$B'\\\u001b(B \u001b$B']\u001b(B \u001b$B'^\u001b(B \u001b$B'_\u001b(B\n\u001b$B'`\u001b(B \u001b$B'a\u001b(B \u001b$B'b\u001b(B \u001b$B'c\u001b(B \u001b$B'd\u001b(B \u001b$B'e\u001b(B \u001b$B'f\u001b(B \u001b$B'g\u001b(B \u001b$B'h\u001b(B \u001b$B'i\u001b(B \u001b$B'j\u001b(B \u001b$B'k\u001b(B \u001b$B'l\u001b(B \u001b$B'm\u001b(B \u001b$B'n\u001b(B \u001b$B'o\u001b(B\n\u001b$B'p\u001b(B \u001b$B'q\u001b(B \u001b$(Q'r\u001b(B \u001b$(Q's\u001b(B \u001b$(Q't\u001b(B \u001b$(Q'u\u001b(B \u001b$(Q'v\u001b(B \u001b$(Q'w\u001b(B \u001b$(Q'x\u001b(B \u001b$(Q'y\u001b(B \u001b$(Q'z\u001b(B \u001b$(Q'{\u001b(B \u001b$(Q'|\u001b(B \u001b$(Q'}\u001b(B \u001b$(Q'~\u001b(B\n   \u001b$B(!\u001b(B \u001b$B(\"\u001b(B \u001b$B(#\u001b(B \u001b$B($\u001b(B \u001b$B(%\u001b(B \u001b$B(&\u001b(B \u001b$B('\u001b(B \u001b$B((\u001b(B \u001b$B()\u001b(B \u001b$B(*\u001b(B \u001b$B(+\u001b(B \u001b$B(,\u001b(B \u001b$B(-\u001b(B \u001b$B(.\u001b(B \u001b$B(/\u001b(B\n\u001b$B(0\u001b(B \u001b$B(1\u001b(B \u001b$B(2\u001b(B \u001b$B(3\u001b(B \u001b$B(4\u001b(B \u001b$B(5\u001b(B \u001b$B(6\u001b(B \u001b$B(7\u001b(B \u001b$B(8\u001b(B \u001b$B(9\u001b(B \u001b$B(:\u001b(B \u001b$B(;\u001b(B \u001b$B(<\u001b(B \u001b$B(=\u001b(B \u001b$B(>\u001b(B \u001b$B(?\u001b(B\n\u001b$B(@\u001b(B \u001b$(Q(A\u001b(B \u001b$(Q(B\u001b(B \u001b$(Q(C\u001b(B \u001b$(Q(D\u001b(B \u001b$(Q(E\u001b(B \u001b$(Q(F\u001b(B \u001b$(Q(G\u001b(B \u001b$(Q(H\u001b(B \u001b$(Q(I\u001b(B \u001b$(Q(J\u001b(B \u001b$(Q(K\u001b(B \u001b$(Q(L\u001b(B \u001b$(Q(M\u001b(B \u001b$(Q(N\u001b(B \u001b$(Q(O\u001b(B\n\u001b$(Q(P\u001b(B \u001b$(Q(Q\u001b(B \u001b$(Q(R\u001b(B \u001b$(Q(S\u001b(B \u001b$(Q(T\u001b(B \u001b$(Q(U\u001b(B \u001b$(Q(V\u001b(B \u001b$(Q(W\u001b(B \u001b$(Q(X\u001b(B \u001b$(Q(Y\u001b(B \u001b$(Q(Z\u001b(B \u001b$(Q([\u001b(B \u001b$(Q(\\\u001b(B \u001b$(Q(]\u001b(B \u001b$(Q(^\u001b(B\n                     \u001b$(Q(g\u001b(B \u001b$(Q(h\u001b(B \u001b$(Q(i\u001b(B \u001b$(Q(j\u001b(B \u001b$(Q(k\u001b(B \u001b$(Q(l\u001b(B \u001b$(Q(m\u001b(B \u001b$(Q(n\u001b(B \u001b$(Q(o\u001b(B\n\u001b$(Q(p\u001b(B \u001b$(Q(q\u001b(B \u001b$(Q(r\u001b(B \u001b$(Q(s\u001b(B \u001b$(Q(t\u001b(B \u001b$(Q(u\u001b(B \u001b$(Q(v\u001b(B \u001b$(Q(w\u001b(B \u001b$(Q(x\u001b(B \u001b$(Q(y\u001b(B \u001b$(Q(z\u001b(B \u001b$(Q({\u001b(B \u001b$(Q(|\u001b(B\n   \u001b$(Q)!\u001b(B \u001b$(Q)\"\u001b(B \u001b$(Q)#\u001b(B \u001b$(Q)$\u001b(B \u001b$(Q)%\u001b(B \u001b$(Q)&\u001b(B \u001b$(Q)'\u001b(B \u001b$(Q)(\u001b(B \u001b$(Q))\u001b(B \u001b$(Q)*\u001b(B \u001b$(Q)+\u001b(B \u001b$(Q),\u001b(B \u001b$(Q)-\u001b(B \u001b$(Q).\u001b(B \u001b$(Q)/\u001b(B\n\u001b$(Q)0\u001b(B \u001b$(Q)1\u001b(B \u001b$(Q)2\u001b(B \u001b$(Q)3\u001b(B \u001b$(Q)4\u001b(B \u001b$(Q)5\u001b(B \u001b$(Q)6\u001b(B \u001b$(Q)7\u001b(B \u001b$(Q)8\u001b(B \u001b$(Q)9\u001b(B \u001b$(Q):\u001b(B \u001b$(Q);\u001b(B \u001b$(Q)<\u001b(B \u001b$(Q)=\u001b(B \u001b$(Q)>\u001b(B \u001b$(Q)?\u001b(B\n\u001b$(Q)@\u001b(B \u001b$(Q)A\u001b(B \u001b$(Q)B\u001b(B \u001b$(Q)C\u001b(B \u001b$(Q)D\u001b(B \u001b$(Q)E\u001b(B \u001b$(Q)F\u001b(B \u001b$(Q)G\u001b(B \u001b$(Q)H\u001b(B \u001b$(Q)I\u001b(B \u001b$(Q)J\u001b(B \u001b$(Q)K\u001b(B \u001b$(Q)L\u001b(B \u001b$(Q)M\u001b(B \u001b$(Q)N\u001b(B \u001b$(Q)O\u001b(B\n\u001b$(Q)P\u001b(B \u001b$(Q)Q\u001b(B \u001b$(Q)R\u001b(B \u001b$(Q)S\u001b(B \u001b$(Q)T\u001b(B \u001b$(Q)U\u001b(B \u001b$(Q)V\u001b(B \u001b$(Q)W\u001b(B \u001b$(Q)X\u001b(B \u001b$(Q)Y\u001b(B \u001b$(Q)Z\u001b(B \u001b$(Q)[\u001b(B \u001b$(Q)\\\u001b(B \u001b$(Q)]\u001b(B \u001b$(Q)^\u001b(B \u001b$(Q)_\u001b(B\n\u001b$(Q)`\u001b(B \u001b$(Q)a\u001b(B \u001b$(Q)b\u001b(B \u001b$(Q)c\u001b(B \u001b$(Q)d\u001b(B \u001b$(Q)e\u001b(B \u001b$(Q)f\u001b(B \u001b$(Q)g\u001b(B \u001b$(Q)h\u001b(B \u001b$(Q)i\u001b(B \u001b$(Q)j\u001b(B \u001b$(Q)k\u001b(B \u001b$(Q)l\u001b(B \u001b$(Q)m\u001b(B \u001b$(Q)n\u001b(B \u001b$(Q)o\u001b(B\n\u001b$(Q)p\u001b(B \u001b$(Q)q\u001b(B \u001b$(Q)r\u001b(B \u001b$(Q)s\u001b(B \u001b$(Q)t\u001b(B \u001b$(Q)u\u001b(B \u001b$(Q)v\u001b(B \u001b$(Q)w\u001b(B \u001b$(Q)x\u001b(B \u001b$(Q)y\u001b(B \u001b$(Q)z\u001b(B \u001b$(Q){\u001b(B \u001b$(Q)|\u001b(B \u001b$(Q)}\u001b(B \u001b$(Q)~\u001b(B\n   \u001b$(Q*!\u001b(B \u001b$(Q*\"\u001b(B \u001b$(Q*#\u001b(B \u001b$(Q*$\u001b(B \u001b$(Q*%\u001b(B \u001b$(Q*&\u001b(B \u001b$(Q*'\u001b(B \u001b$(Q*(\u001b(B \u001b$(Q*)\u001b(B \u001b$(Q**\u001b(B \u001b$(Q*+\u001b(B \u001b$(Q*,\u001b(B \u001b$(Q*-\u001b(B \u001b$(Q*.\u001b(B \u001b$(Q*/\u001b(B\n\u001b$(Q*0\u001b(B \u001b$(Q*1\u001b(B \u001b$(Q*2\u001b(B \u001b$(Q*3\u001b(B \u001b$(Q*4\u001b(B \u001b$(Q*5\u001b(B \u001b$(Q*6\u001b(B \u001b$(Q*7\u001b(B \u001b$(Q*8\u001b(B \u001b$(Q*9\u001b(B \u001b$(Q*:\u001b(B \u001b$(Q*;\u001b(B \u001b$(Q*<\u001b(B \u001b$(Q*=\u001b(B \u001b$(Q*>\u001b(B \u001b$(Q*?\u001b(B\n\u001b$(Q*@\u001b(B \u001b$(Q*A\u001b(B \u001b$(Q*B\u001b(B \u001b$(Q*C\u001b(B \u001b$(Q*D\u001b(B \u001b$(Q*E\u001b(B \u001b$(Q*F\u001b(B \u001b$(Q*G\u001b(B \u001b$(Q*H\u001b(B \u001b$(Q*I\u001b(B \u001b$(Q*J\u001b(B \u001b$(Q*K\u001b(B \u001b$(Q*L\u001b(B \u001b$(Q*M\u001b(B \u001b$(Q*N\u001b(B \u001b$(Q*O\u001b(B\n\u001b$(Q*P\u001b(B \u001b$(Q*Q\u001b(B \u001b$(Q*R\u001b(B \u001b$(Q*S\u001b(B \u001b$(Q*T\u001b(B \u001b$(Q*U\u001b(B \u001b$(Q*V\u001b(B \u001b$(Q*W\u001b(B \u001b$(Q*X\u001b(B \u001b$(Q*Y\u001b(B \u001b$(Q*Z\u001b(B \u001b$(Q*[\u001b(B \u001b$(Q*\\\u001b(B \u001b$(Q*]\u001b(B \u001b$(Q*^\u001b(B \u001b$(Q*_\u001b(B\n\u001b$(Q*`\u001b(B \u001b$(Q*a\u001b(B \u001b$(Q*b\u001b(B \u001b$(Q*c\u001b(B \u001b$(Q*d\u001b(B \u001b$(Q*e\u001b(B \u001b$(Q*f\u001b(B \u001b$(Q*g\u001b(B \u001b$(Q*h\u001b(B \u001b$(Q*i\u001b(B \u001b$(Q*j\u001b(B \u001b$(Q*k\u001b(B \u001b$(Q*l\u001b(B \u001b$(Q*m\u001b(B \u001b$(Q*n\u001b(B \u001b$(Q*o\u001b(B\n\u001b$(Q*p\u001b(B \u001b$(Q*q\u001b(B \u001b$(Q*r\u001b(B \u001b$(Q*s\u001b(B \u001b$(Q*t\u001b(B \u001b$(Q*u\u001b(B \u001b$(Q*v\u001b(B \u001b$(Q*w\u001b(B \u001b$(Q*x\u001b(B \u001b$(Q*y\u001b(B \u001b$(Q*z\u001b(B \u001b$(Q*{\u001b(B \u001b$(Q*|\u001b(B \u001b$(Q*}\u001b(B \u001b$(Q*~\u001b(B\n   \u001b$(Q+!\u001b(B \u001b$(Q+\"\u001b(B \u001b$(Q+#\u001b(B \u001b$(Q+$\u001b(B \u001b$(Q+%\u001b(B \u001b$(Q+&\u001b(B \u001b$(Q+'\u001b(B \u001b$(Q+(\u001b(B \u001b$(Q+)\u001b(B \u001b$(Q+*\u001b(B \u001b$(Q++\u001b(B \u001b$(Q+,\u001b(B \u001b$(Q+-\u001b(B \u001b$(Q+.\u001b(B \u001b$(Q+/\u001b(B\n\u001b$(Q+0\u001b(B \u001b$(Q+1\u001b(B \u001b$(Q+2\u001b(B \u001b$(Q+3\u001b(B \u001b$(Q+4\u001b(B \u001b$(Q+5\u001b(B \u001b$(Q+6\u001b(B \u001b$(Q+7\u001b(B \u001b$(Q+8\u001b(B \u001b$(Q+9\u001b(B \u001b$(Q+:\u001b(B \u001b$(Q+;\u001b(B \u001b$(Q+<\u001b(B \u001b$(Q+=\u001b(B \u001b$(Q+>\u001b(B \u001b$(Q+?\u001b(B\n\u001b$(Q+@\u001b(B \u001b$(Q+A\u001b(B \u001b$(Q+B\u001b(B \u001b$(Q+C\u001b(B \u001b$(Q+D\u001b(B \u001b$(Q+E\u001b(B \u001b$(Q+F\u001b(B \u001b$(Q+G\u001b(B \u001b$(Q+H\u001b(B \u001b$(Q+I\u001b(B \u001b$(Q+J\u001b(B \u001b$(Q+K\u001b(B \u001b$(Q+L\u001b(B \u001b$(Q+M\u001b(B \u001b$(Q+N\u001b(B \u001b$(Q+O\u001b(B\n\u001b$(Q+P\u001b(B \u001b$(Q+Q\u001b(B \u001b$(Q+R\u001b(B \u001b$(Q+S\u001b(B \u001b$(Q+T\u001b(B \u001b$(Q+U\u001b(B \u001b$(Q+V\u001b(B \u001b$(Q+W\u001b(B \u001b$(Q+X\u001b(B \u001b$(Q+Y\u001b(B \u001b$(Q+Z\u001b(B \u001b$(Q+[\u001b(B \u001b$(Q+\\\u001b(B \u001b$(Q+]\u001b(B \u001b$(Q+^\u001b(B \u001b$(Q+_\u001b(B\n\u001b$(Q+`\u001b(B \u001b$(Q+a\u001b(B \u001b$(Q+b\u001b(B \u001b$(Q+c\u001b(B \u001b$(Q+d\u001b(B \u001b$(Q+e\u001b(B \u001b$(Q+f\u001b(B \u001b$(Q+g\u001b(B \u001b$(Q+h\u001b(B \u001b$(Q+i\u001b(B \u001b$(Q+j\u001b(B \u001b$(Q+k\u001b(B \u001b$(Q+l\u001b(B \u001b$(Q+m\u001b(B \u001b$(Q+n\u001b(B \u001b$(Q+o\u001b(B\n\u001b$(Q+p\u001b(B \u001b$(Q+q\u001b(B \u001b$(Q+r\u001b(B \u001b$(Q+s\u001b(B \u001b$(Q+t\u001b(B \u001b$(Q+u\u001b(B \u001b$(Q+v\u001b(B \u001b$(Q+w\u001b(B \u001b$(Q+x\u001b(B \u001b$(Q+y\u001b(B \u001b$(Q+z\u001b(B \u001b$(Q+{\u001b(B \u001b$(Q+|\u001b(B \u001b$(Q+}\u001b(B \u001b$(Q+~\u001b(B\n   \u001b$(Q,!\u001b(B \u001b$(Q,\"\u001b(B \u001b$(Q,#\u001b(B \u001b$(Q,$\u001b(B \u001b$(Q,%\u001b(B \u001b$(Q,&\u001b(B \u001b$(Q,'\u001b(B \u001b$(Q,(\u001b(B \u001b$(Q,)\u001b(B \u001b$(Q,*\u001b(B \u001b$(Q,+\u001b(B \u001b$(Q,,\u001b(B \u001b$(Q,-\u001b(B \u001b$(Q,.\u001b(B \u001b$(Q,/\u001b(B\n\u001b$(Q,0\u001b(B \u001b$(Q,1\u001b(B \u001b$(Q,2\u001b(B \u001b$(Q,3\u001b(B \u001b$(Q,4\u001b(B \u001b$(Q,5\u001b(B \u001b$(Q,6\u001b(B \u001b$(Q,7\u001b(B \u001b$(Q,8\u001b(B \u001b$(Q,9\u001b(B \u001b$(Q,:\u001b(B \u001b$(Q,;\u001b(B \u001b$(Q,<\u001b(B \u001b$(Q,=\u001b(B \u001b$(Q,>\u001b(B \u001b$(Q,?\u001b(B\n\u001b$(Q,@\u001b(B \u001b$(Q,A\u001b(B \u001b$(Q,B\u001b(B \u001b$(Q,C\u001b(B \u001b$(Q,D\u001b(B \u001b$(Q,E\u001b(B \u001b$(Q,F\u001b(B \u001b$(Q,G\u001b(B \u001b$(Q,H\u001b(B \u001b$(Q,I\u001b(B \u001b$(Q,J\u001b(B \u001b$(Q,K\u001b(B \u001b$(Q,L\u001b(B \u001b$(Q,M\u001b(B \u001b$(Q,N\u001b(B \u001b$(Q,O\u001b(B\n\u001b$(Q,P\u001b(B \u001b$(Q,Q\u001b(B \u001b$(Q,R\u001b(B \u001b$(Q,S\u001b(B \u001b$(Q,T\u001b(B \u001b$(Q,U\u001b(B \u001b$(Q,V\u001b(B \u001b$(Q,W\u001b(B \u001b$(Q,X\u001b(B \u001b$(Q,Y\u001b(B \u001b$(Q,Z\u001b(B \u001b$(Q,[\u001b(B \u001b$(Q,\\\u001b(B \u001b$(Q,]\u001b(B \u001b$(Q,^\u001b(B \u001b$(Q,_\u001b(B\n\u001b$(Q,`\u001b(B \u001b$(Q,a\u001b(B \u001b$(Q,b\u001b(B \u001b$(Q,c\u001b(B \u001b$(Q,d\u001b(B \u001b$(Q,e\u001b(B \u001b$(Q,f\u001b(B \u001b$(Q,g\u001b(B \u001b$(Q,h\u001b(B \u001b$(Q,i\u001b(B \u001b$(Q,j\u001b(B \u001b$(Q,k\u001b(B \u001b$(Q,l\u001b(B \u001b$(Q,m\u001b(B \u001b$(Q,n\u001b(B \u001b$(Q,o\u001b(B\n\u001b$(Q,p\u001b(B \u001b$(Q,q\u001b(B \u001b$(Q,r\u001b(B \u001b$(Q,s\u001b(B                            \u001b$(Q,}\u001b(B \u001b$(Q,~\u001b(B\n   \u001b$(Q-!\u001b(B \u001b$(Q-\"\u001b(B \u001b$(Q-#\u001b(B \u001b$(Q-$\u001b(B \u001b$(Q-%\u001b(B \u001b$(Q-&\u001b(B \u001b$(Q-'\u001b(B \u001b$(Q-(\u001b(B \u001b$(Q-)\u001b(B \u001b$(Q-*\u001b(B \u001b$(Q-+\u001b(B \u001b$(Q-,\u001b(B \u001b$(Q--\u001b(B \u001b$(Q-.\u001b(B \u001b$(Q-/\u001b(B\n\u001b$(Q-0\u001b(B \u001b$(Q-1\u001b(B \u001b$(Q-2\u001b(B \u001b$(Q-3\u001b(B \u001b$(Q-4\u001b(B \u001b$(Q-5\u001b(B \u001b$(Q-6\u001b(B \u001b$(Q-7\u001b(B \u001b$(Q-8\u001b(B \u001b$(Q-9\u001b(B \u001b$(Q-:\u001b(B \u001b$(Q-;\u001b(B \u001b$(Q-<\u001b(B \u001b$(Q-=\u001b(B \u001b$(Q->\u001b(B \u001b$(Q-?\u001b(B\n\u001b$(Q-@\u001b(B \u001b$(Q-A\u001b(B \u001b$(Q-B\u001b(B \u001b$(Q-C\u001b(B \u001b$(Q-D\u001b(B \u001b$(Q-E\u001b(B \u001b$(Q-F\u001b(B \u001b$(Q-G\u001b(B \u001b$(Q-H\u001b(B \u001b$(Q-I\u001b(B \u001b$(Q-J\u001b(B \u001b$(Q-K\u001b(B \u001b$(Q-L\u001b(B \u001b$(Q-M\u001b(B \u001b$(Q-N\u001b(B \u001b$(Q-O\u001b(B\n\u001b$(Q-P\u001b(B \u001b$(Q-Q\u001b(B \u001b$(Q-R\u001b(B \u001b$(Q-S\u001b(B \u001b$(Q-T\u001b(B \u001b$(Q-U\u001b(B \u001b$(Q-V\u001b(B \u001b$(Q-W\u001b(B                      \u001b$(Q-_\u001b(B\n\u001b$(Q-`\u001b(B \u001b$(Q-a\u001b(B \u001b$(Q-b\u001b(B \u001b$(Q-c\u001b(B \u001b$(Q-d\u001b(B \u001b$(Q-e\u001b(B \u001b$(Q-f\u001b(B \u001b$(Q-g\u001b(B \u001b$(Q-h\u001b(B \u001b$(Q-i\u001b(B \u001b$(Q-j\u001b(B \u001b$(Q-k\u001b(B \u001b$(Q-l\u001b(B \u001b$(Q-m\u001b(B \u001b$(Q-n\u001b(B \u001b$(Q-o\u001b(B\n         \u001b$(Q-s\u001b(B             \u001b$(Q-x\u001b(B \u001b$(Q-y\u001b(B          \u001b$(Q-}\u001b(B \u001b$(Q-~\u001b(B\n      \u001b$(Q.\"\u001b(B \u001b$(Q.#\u001b(B \u001b$(Q.$\u001b(B \u001b$(Q.%\u001b(B \u001b$(Q.&\u001b(B \u001b$(Q.'\u001b(B \u001b$(Q.(\u001b(B \u001b$(Q.)\u001b(B \u001b$(Q.*\u001b(B \u001b$(Q.+\u001b(B \u001b$(Q.,\u001b(B \u001b$(Q.-\u001b(B \u001b$(Q..\u001b(B \u001b$(Q./\u001b(B\n\u001b$(Q.0\u001b(B \u001b$(Q.1\u001b(B \u001b$(Q.2\u001b(B \u001b$(Q.3\u001b(B \u001b$(Q.4\u001b(B \u001b$(Q.5\u001b(B \u001b$(Q.6\u001b(B \u001b$(Q.7\u001b(B \u001b$(Q.8\u001b(B \u001b$(Q.9\u001b(B \u001b$(Q.:\u001b(B \u001b$(Q.;\u001b(B \u001b$(Q.<\u001b(B \u001b$(Q.=\u001b(B \u001b$(Q.>\u001b(B \u001b$(Q.?\u001b(B\n\u001b$(Q.@\u001b(B \u001b$(Q.A\u001b(B \u001b$(Q.B\u001b(B \u001b$(Q.C\u001b(B \u001b$(Q.D\u001b(B \u001b$(Q.E\u001b(B \u001b$(Q.F\u001b(B \u001b$(Q.G\u001b(B \u001b$(Q.H\u001b(B \u001b$(Q.I\u001b(B \u001b$(Q.J\u001b(B \u001b$(Q.K\u001b(B \u001b$(Q.L\u001b(B \u001b$(Q.M\u001b(B \u001b$(Q.N\u001b(B \u001b$(Q.O\u001b(B\n\u001b$(Q.P\u001b(B \u001b$(Q.Q\u001b(B \u001b$(Q.R\u001b(B \u001b$(Q.S\u001b(B \u001b$(Q.T\u001b(B \u001b$(Q.U\u001b(B \u001b$(Q.V\u001b(B \u001b$(Q.W\u001b(B \u001b$(Q.X\u001b(B \u001b$(Q.Y\u001b(B \u001b$(Q.Z\u001b(B \u001b$(Q.[\u001b(B \u001b$(Q.\\\u001b(B \u001b$(Q.]\u001b(B \u001b$(Q.^\u001b(B \u001b$(Q._\u001b(B\n\u001b$(Q.`\u001b(B \u001b$(Q.a\u001b(B \u001b$(Q.b\u001b(B \u001b$(Q.c\u001b(B \u001b$(Q.d\u001b(B \u001b$(Q.e\u001b(B \u001b$(Q.f\u001b(B \u001b$(Q.g\u001b(B \u001b$(Q.h\u001b(B \u001b$(Q.i\u001b(B \u001b$(Q.j\u001b(B \u001b$(Q.k\u001b(B \u001b$(Q.l\u001b(B \u001b$(Q.m\u001b(B \u001b$(Q.n\u001b(B \u001b$(Q.o\u001b(B\n\u001b$(Q.p\u001b(B \u001b$(Q.q\u001b(B \u001b$(Q.r\u001b(B \u001b$(Q.s\u001b(B \u001b$(Q.t\u001b(B \u001b$(Q.u\u001b(B \u001b$(Q.v\u001b(B \u001b$(Q.w\u001b(B \u001b$(Q.x\u001b(B \u001b$(Q.y\u001b(B \u001b$(Q.z\u001b(B \u001b$(Q.{\u001b(B \u001b$(Q.|\u001b(B \u001b$(Q.}\u001b(B \u001b$(Q.~\u001b(B\n   \u001b$(Q/!\u001b(B \u001b$(Q/\"\u001b(B \u001b$(Q/#\u001b(B \u001b$(Q/$\u001b(B \u001b$(Q/%\u001b(B \u001b$(Q/&\u001b(B \u001b$(Q/'\u001b(B \u001b$(Q/(\u001b(B \u001b$(Q/)\u001b(B \u001b$(Q/*\u001b(B \u001b$(Q/+\u001b(B \u001b$(Q/,\u001b(B \u001b$(Q/-\u001b(B \u001b$(Q/.\u001b(B \u001b$(Q//\u001b(B\n\u001b$(Q/0\u001b(B \u001b$(Q/1\u001b(B \u001b$(Q/2\u001b(B \u001b$(Q/3\u001b(B \u001b$(Q/4\u001b(B \u001b$(Q/5\u001b(B \u001b$(Q/6\u001b(B \u001b$(Q/7\u001b(B \u001b$(Q/8\u001b(B \u001b$(Q/9\u001b(B \u001b$(Q/:\u001b(B \u001b$(Q/;\u001b(B \u001b$(Q/<\u001b(B \u001b$(Q/=\u001b(B \u001b$(Q/>\u001b(B \u001b$(Q/?\u001b(B\n\u001b$(Q/@\u001b(B \u001b$(Q/A\u001b(B \u001b$(Q/B\u001b(B \u001b$(Q/C\u001b(B \u001b$(Q/D\u001b(B \u001b$(Q/E\u001b(B \u001b$(Q/F\u001b(B \u001b$(Q/G\u001b(B \u001b$(Q/H\u001b(B \u001b$(Q/I\u001b(B \u001b$(Q/J\u001b(B \u001b$(Q/K\u001b(B \u001b$(Q/L\u001b(B \u001b$(Q/M\u001b(B \u001b$(Q/N\u001b(B \u001b$(Q/O\u001b(B\n\u001b$(Q/P\u001b(B \u001b$(Q/Q\u001b(B \u001b$(Q/R\u001b(B \u001b$(Q/S\u001b(B \u001b$(Q/T\u001b(B \u001b$(Q/U\u001b(B \u001b$(Q/V\u001b(B \u001b$(Q/W\u001b(B \u001b$(Q/X\u001b(B \u001b$(Q/Y\u001b(B \u001b$(Q/Z\u001b(B \u001b$(Q/[\u001b(B \u001b$(Q/\\\u001b(B \u001b$(Q/]\u001b(B \u001b$(Q/^\u001b(B \u001b$(Q/_\u001b(B\n\u001b$(Q/`\u001b(B \u001b$(Q/a\u001b(B \u001b$(Q/b\u001b(B \u001b$(Q/c\u001b(B \u001b$(Q/d\u001b(B \u001b$(Q/e\u001b(B \u001b$(Q/f\u001b(B \u001b$(Q/g\u001b(B \u001b$(Q/h\u001b(B \u001b$(Q/i\u001b(B \u001b$(Q/j\u001b(B \u001b$(Q/k\u001b(B \u001b$(Q/l\u001b(B \u001b$(Q/m\u001b(B \u001b$(Q/n\u001b(B \u001b$(Q/o\u001b(B\n\u001b$(Q/p\u001b(B \u001b$(Q/q\u001b(B \u001b$(Q/r\u001b(B \u001b$(Q/s\u001b(B \u001b$(Q/t\u001b(B \u001b$(Q/u\u001b(B \u001b$(Q/v\u001b(B \u001b$(Q/w\u001b(B \u001b$(Q/x\u001b(B \u001b$(Q/y\u001b(B \u001b$(Q/z\u001b(B \u001b$(Q/{\u001b(B \u001b$(Q/|\u001b(B \u001b$(Q/}\u001b(B\n   \u001b$B0!\u001b(B \u001b$B0\"\u001b(B \u001b$B0#\u001b(B \u001b$B0$\u001b(B \u001b$B0%\u001b(B \u001b$B0&\u001b(B \u001b$B0'\u001b(B \u001b$B0(\u001b(B \u001b$B0)\u001b(B \u001b$B0*\u001b(B \u001b$B0+\u001b(B \u001b$B0,\u001b(B \u001b$B0-\u001b(B \u001b$B0.\u001b(B \u001b$B0/\u001b(B\n\u001b$B00\u001b(B \u001b$B01\u001b(B \u001b$B02\u001b(B \u001b$B03\u001b(B \u001b$B04\u001b(B \u001b$B05\u001b(B \u001b$B06\u001b(B \u001b$B07\u001b(B \u001b$B08\u001b(B \u001b$B09\u001b(B \u001b$B0:\u001b(B \u001b$B0;\u001b(B \u001b$B0<\u001b(B \u001b$B0=\u001b(B \u001b$B0>\u001b(B \u001b$B0?\u001b(B\n\u001b$B0@\u001b(B \u001b$B0A\u001b(B \u001b$B0B\u001b(B \u001b$B0C\u001b(B \u001b$B0D\u001b(B \u001b$B0E\u001b(B \u001b$B0F\u001b(B \u001b$B0G\u001b(B \u001b$B0H\u001b(B \u001b$B0I\u001b(B \u001b$B0J\u001b(B \u001b$B0K\u001b(B \u001b$B0L\u001b(B \u001b$B0M\u001b(B \u001b$B0N\u001b(B \u001b$B0O\u001b(B\n\u001b$B0P\u001b(B \u001b$B0Q\u001b(B \u001b$B0R\u001b(B \u001b$B0S\u001b(B \u001b$B0T\u001b(B \u001b$B0U\u001b(B \u001b$B0V\u001b(B \u001b$B0W\u001b(B \u001b$B0X\u001b(B \u001b$B0Y\u001b(B \u001b$B0Z\u001b(B \u001b$B0[\u001b(B \u001b$B0\\\u001b(B \u001b$B0]\u001b(B \u001b$B0^\u001b(B \u001b$B0_\u001b(B\n\u001b$B0`\u001b(B \u001b$B0a\u001b(B \u001b$B0b\u001b(B \u001b$B0c\u001b(B \u001b$B0d\u001b(B \u001b$B0e\u001b(B \u001b$B0f\u001b(B \u001b$B0g\u001b(B \u001b$B0h\u001b(B \u001b$B0i\u001b(B \u001b$B0j\u001b(B \u001b$B0k\u001b(B \u001b$B0l\u001b(B \u001b$B0m\u001b(B \u001b$B0n\u001b(B \u001b$B0o\u001b(B\n\u001b$B0p\u001b(B \u001b$B0q\u001b(B \u001b$B0r\u001b(B \u001b$B0s\u001b(B \u001b$B0t\u001b(B \u001b$B0u\u001b(B \u001b$B0v\u001b(B \u001b$B0w\u001b(B \u001b$B0x\u001b(B \u001b$B0y\u001b(B \u001b$B0z\u001b(B \u001b$B0{\u001b(B \u001b$B0|\u001b(B \u001b$B0}\u001b(B \u001b$B0~\u001b(B\n   \u001b$B1!\u001b(B \u001b$B1\"\u001b(B \u001b$B1#\u001b(B \u001b$B1$\u001b(B \u001b$B1%\u001b(B \u001b$B1&\u001b(B \u001b$B1'\u001b(B \u001b$B1(\u001b(B \u001b$B1)\u001b(B \u001b$B1*\u001b(B \u001b$B1+\u001b(B \u001b$B1,\u001b(B \u001b$B1-\u001b(B \u001b$B1.\u001b(B \u001b$B1/\u001b(B\n\u001b$B10\u001b(B \u001b$B11\u001b(B \u001b$B12\u001b(B \u001b$B13\u001b(B \u001b$B14\u001b(B \u001b$B15\u001b(B \u001b$B16\u001b(B \u001b$B17\u001b(B \u001b$B18\u001b(B \u001b$B19\u001b(B \u001b$B1:\u001b(B \u001b$B1;\u001b(B \u001b$B1<\u001b(B \u001b$B1=\u001b(B \u001b$B1>\u001b(B \u001b$B1?\u001b(B\n\u001b$B1@\u001b(B \u001b$B1A\u001b(B \u001b$B1B\u001b(B \u001b$B1C\u001b(B \u001b$B1D\u001b(B \u001b$B1E\u001b(B \u001b$B1F\u001b(B \u001b$B1G\u001b(B \u001b$B1H\u001b(B \u001b$B1I\u001b(B \u001b$B1J\u001b(B \u001b$B1K\u001b(B \u001b$B1L\u001b(B \u001b$B1M\u001b(B \u001b$B1N\u001b(B \u001b$B1O\u001b(B\n\u001b$B1P\u001b(B \u001b$B1Q\u001b(B \u001b$B1R\u001b(B \u001b$B1S\u001b(B \u001b$B1T\u001b(B \u001b$B1U\u001b(B \u001b$B1V\u001b(B \u001b$B1W\u001b(B \u001b$B1X\u001b(B \u001b$B1Y\u001b(B \u001b$B1Z\u001b(B \u001b$B1[\u001b(B \u001b$B1\\\u001b(B \u001b$B1]\u001b(B \u001b$B1^\u001b(B \u001b$B1_\u001b(B\n\u001b$B1`\u001b(B \u001b$B1a\u001b(B \u001b$B1b\u001b(B \u001b$B1c\u001b(B \u001b$B1d\u001b(B \u001b$B1e\u001b(B \u001b$B1f\u001b(B \u001b$B1g\u001b(B \u001b$B1h\u001b(B \u001b$B1i\u001b(B \u001b$B1j\u001b(B \u001b$B1k\u001b(B \u001b$B1l\u001b(B \u001b$B1m\u001b(B \u001b$B1n\u001b(B \u001b$B1o\u001b(B\n\u001b$B1p\u001b(B \u001b$B1q\u001b(B \u001b$B1r\u001b(B \u001b$B1s\u001b(B \u001b$B1t\u001b(B \u001b$B1u\u001b(B \u001b$B1v\u001b(B \u001b$B1w\u001b(B \u001b$B1x\u001b(B \u001b$B1y\u001b(B \u001b$B1z\u001b(B \u001b$B1{\u001b(B \u001b$B1|\u001b(B \u001b$B1}\u001b(B \u001b$B1~\u001b(B\n   \u001b$B2!\u001b(B \u001b$B2\"\u001b(B \u001b$B2#\u001b(B \u001b$B2$\u001b(B \u001b$B2%\u001b(B \u001b$B2&\u001b(B \u001b$B2'\u001b(B \u001b$B2(\u001b(B \u001b$B2)\u001b(B \u001b$B2*\u001b(B \u001b$B2+\u001b(B \u001b$B2,\u001b(B \u001b$B2-\u001b(B \u001b$B2.\u001b(B \u001b$B2/\u001b(B\n\u001b$B20\u001b(B \u001b$B21\u001b(B \u001b$B22\u001b(B \u001b$B23\u001b(B \u001b$B24\u001b(B \u001b$B25\u001b(B \u001b$B26\u001b(B \u001b$B27\u001b(B \u001b$B28\u001b(B \u001b$B29\u001b(B \u001b$B2:\u001b(B \u001b$B2;\u001b(B \u001b$B2<\u001b(B \u001b$B2=\u001b(B \u001b$B2>\u001b(B \u001b$B2?\u001b(B\n\u001b$B2@\u001b(B \u001b$B2A\u001b(B \u001b$B2B\u001b(B \u001b$B2C\u001b(B \u001b$B2D\u001b(B \u001b$B2E\u001b(B \u001b$B2F\u001b(B \u001b$B2G\u001b(B \u001b$B2H\u001b(B \u001b$B2I\u001b(B \u001b$B2J\u001b(B \u001b$B2K\u001b(B \u001b$B2L\u001b(B \u001b$B2M\u001b(B \u001b$B2N\u001b(B \u001b$B2O\u001b(B\n\u001b$B2P\u001b(B \u001b$B2Q\u001b(B \u001b$B2R\u001b(B \u001b$B2S\u001b(B \u001b$B2T\u001b(B \u001b$B2U\u001b(B \u001b$B2V\u001b(B \u001b$B2W\u001b(B \u001b$B2X\u001b(B \u001b$B2Y\u001b(B \u001b$B2Z\u001b(B \u001b$B2[\u001b(B \u001b$B2\\\u001b(B \u001b$B2]\u001b(B \u001b$B2^\u001b(B \u001b$B2_\u001b(B\n\u001b$B2`\u001b(B \u001b$B2a\u001b(B \u001b$B2b\u001b(B \u001b$B2c\u001b(B \u001b$B2d\u001b(B \u001b$B2e\u001b(B \u001b$B2f\u001b(B \u001b$B2g\u001b(B \u001b$B2h\u001b(B \u001b$B2i\u001b(B \u001b$B2j\u001b(B \u001b$B2k\u001b(B \u001b$B2l\u001b(B \u001b$B2m\u001b(B \u001b$B2n\u001b(B \u001b$B2o\u001b(B\n\u001b$B2p\u001b(B \u001b$B2q\u001b(B \u001b$B2r\u001b(B \u001b$B2s\u001b(B \u001b$B2t\u001b(B \u001b$B2u\u001b(B \u001b$B2v\u001b(B \u001b$B2w\u001b(B \u001b$B2x\u001b(B \u001b$B2y\u001b(B \u001b$B2z\u001b(B \u001b$B2{\u001b(B \u001b$B2|\u001b(B \u001b$B2}\u001b(B \u001b$B2~\u001b(B\n   \u001b$B3!\u001b(B \u001b$B3\"\u001b(B \u001b$B3#\u001b(B \u001b$B3$\u001b(B \u001b$B3%\u001b(B \u001b$B3&\u001b(B \u001b$B3'\u001b(B \u001b$B3(\u001b(B \u001b$B3)\u001b(B \u001b$B3*\u001b(B \u001b$B3+\u001b(B \u001b$B3,\u001b(B \u001b$B3-\u001b(B \u001b$B3.\u001b(B \u001b$B3/\u001b(B\n\u001b$B30\u001b(B \u001b$B31\u001b(B \u001b$B32\u001b(B \u001b$B33\u001b(B \u001b$B34\u001b(B \u001b$B35\u001b(B \u001b$B36\u001b(B \u001b$B37\u001b(B \u001b$B38\u001b(B \u001b$B39\u001b(B \u001b$B3:\u001b(B \u001b$B3;\u001b(B \u001b$B3<\u001b(B \u001b$B3=\u001b(B \u001b$B3>\u001b(B \u001b$B3?\u001b(B\n\u001b$B3@\u001b(B \u001b$B3A\u001b(B \u001b$B3B\u001b(B \u001b$B3C\u001b(B \u001b$B3D\u001b(B \u001b$B3E\u001b(B \u001b$B3F\u001b(B \u001b$B3G\u001b(B \u001b$B3H\u001b(B \u001b$B3I\u001b(B \u001b$B3J\u001b(B \u001b$B3K\u001b(B \u001b$B3L\u001b(B \u001b$B3M\u001b(B \u001b$B3N\u001b(B \u001b$B3O\u001b(B\n\u001b$B3P\u001b(B \u001b$B3Q\u001b(B \u001b$B3R\u001b(B \u001b$B3S\u001b(B \u001b$B3T\u001b(B \u001b$B3U\u001b(B \u001b$B3V\u001b(B \u001b$B3W\u001b(B \u001b$B3X\u001b(B \u001b$B3Y\u001b(B \u001b$B3Z\u001b(B \u001b$B3[\u001b(B \u001b$B3\\\u001b(B \u001b$B3]\u001b(B \u001b$B3^\u001b(B \u001b$B3_\u001b(B\n\u001b$B3`\u001b(B \u001b$B3a\u001b(B \u001b$B3b\u001b(B \u001b$B3c\u001b(B \u001b$B3d\u001b(B \u001b$B3e\u001b(B \u001b$B3f\u001b(B \u001b$B3g\u001b(B \u001b$B3h\u001b(B \u001b$B3i\u001b(B \u001b$B3j\u001b(B \u001b$B3k\u001b(B \u001b$B3l\u001b(B \u001b$B3m\u001b(B \u001b$B3n\u001b(B \u001b$B3o\u001b(B\n\u001b$B3p\u001b(B \u001b$B3q\u001b(B \u001b$B3r\u001b(B \u001b$B3s\u001b(B \u001b$B3t\u001b(B \u001b$B3u\u001b(B \u001b$B3v\u001b(B \u001b$B3w\u001b(B \u001b$B3x\u001b(B \u001b$B3y\u001b(B \u001b$B3z\u001b(B \u001b$B3{\u001b(B \u001b$B3|\u001b(B \u001b$B3}\u001b(B \u001b$B3~\u001b(B\n   \u001b$B4!\u001b(B \u001b$B4\"\u001b(B \u001b$B4#\u001b(B \u001b$B4$\u001b(B \u001b$B4%\u001b(B \u001b$B4&\u001b(B \u001b$B4'\u001b(B \u001b$B4(\u001b(B \u001b$B4)\u001b(B \u001b$B4*\u001b(B \u001b$B4+\u001b(B \u001b$B4,\u001b(B \u001b$B4-\u001b(B \u001b$B4.\u001b(B \u001b$B4/\u001b(B\n\u001b$B40\u001b(B \u001b$B41\u001b(B \u001b$B42\u001b(B \u001b$B43\u001b(B \u001b$B44\u001b(B \u001b$B45\u001b(B \u001b$B46\u001b(B \u001b$B47\u001b(B \u001b$B48\u001b(B \u001b$B49\u001b(B \u001b$B4:\u001b(B \u001b$B4;\u001b(B \u001b$B4<\u001b(B \u001b$B4=\u001b(B \u001b$B4>\u001b(B \u001b$B4?\u001b(B\n\u001b$B4@\u001b(B \u001b$B4A\u001b(B \u001b$B4B\u001b(B \u001b$B4C\u001b(B \u001b$B4D\u001b(B \u001b$B4E\u001b(B \u001b$B4F\u001b(B \u001b$B4G\u001b(B \u001b$B4H\u001b(B \u001b$B4I\u001b(B \u001b$B4J\u001b(B \u001b$B4K\u001b(B \u001b$B4L\u001b(B \u001b$B4M\u001b(B \u001b$B4N\u001b(B \u001b$B4O\u001b(B\n\u001b$B4P\u001b(B \u001b$B4Q\u001b(B \u001b$B4R\u001b(B \u001b$B4S\u001b(B \u001b$B4T\u001b(B \u001b$B4U\u001b(B \u001b$B4V\u001b(B \u001b$B4W\u001b(B \u001b$B4X\u001b(B \u001b$B4Y\u001b(B \u001b$B4Z\u001b(B \u001b$B4[\u001b(B \u001b$B4\\\u001b(B \u001b$B4]\u001b(B \u001b$B4^\u001b(B \u001b$B4_\u001b(B\n\u001b$B4`\u001b(B \u001b$B4a\u001b(B \u001b$B4b\u001b(B \u001b$B4c\u001b(B \u001b$B4d\u001b(B \u001b$B4e\u001b(B \u001b$B4f\u001b(B \u001b$B4g\u001b(B \u001b$B4h\u001b(B \u001b$B4i\u001b(B \u001b$B4j\u001b(B \u001b$B4k\u001b(B \u001b$B4l\u001b(B \u001b$B4m\u001b(B \u001b$B4n\u001b(B \u001b$B4o\u001b(B\n\u001b$B4p\u001b(B \u001b$B4q\u001b(B \u001b$B4r\u001b(B \u001b$B4s\u001b(B \u001b$B4t\u001b(B \u001b$B4u\u001b(B \u001b$B4v\u001b(B \u001b$B4w\u001b(B \u001b$B4x\u001b(B \u001b$B4y\u001b(B \u001b$B4z\u001b(B \u001b$B4{\u001b(B \u001b$B4|\u001b(B \u001b$B4}\u001b(B \u001b$B4~\u001b(B\n   \u001b$B5!\u001b(B \u001b$B5\"\u001b(B \u001b$B5#\u001b(B \u001b$B5$\u001b(B \u001b$B5%\u001b(B \u001b$B5&\u001b(B \u001b$B5'\u001b(B \u001b$B5(\u001b(B \u001b$B5)\u001b(B \u001b$B5*\u001b(B \u001b$B5+\u001b(B \u001b$B5,\u001b(B \u001b$B5-\u001b(B \u001b$B5.\u001b(B \u001b$B5/\u001b(B\n\u001b$B50\u001b(B \u001b$B51\u001b(B \u001b$B52\u001b(B \u001b$B53\u001b(B \u001b$B54\u001b(B \u001b$B55\u001b(B \u001b$B56\u001b(B \u001b$B57\u001b(B \u001b$B58\u001b(B \u001b$B59\u001b(B \u001b$B5:\u001b(B \u001b$B5;\u001b(B \u001b$B5<\u001b(B \u001b$B5=\u001b(B \u001b$B5>\u001b(B \u001b$B5?\u001b(B\n\u001b$B5@\u001b(B \u001b$B5A\u001b(B \u001b$B5B\u001b(B \u001b$B5C\u001b(B \u001b$B5D\u001b(B \u001b$B5E\u001b(B \u001b$B5F\u001b(B \u001b$B5G\u001b(B \u001b$B5H\u001b(B \u001b$B5I\u001b(B \u001b$B5J\u001b(B \u001b$B5K\u001b(B \u001b$B5L\u001b(B \u001b$B5M\u001b(B \u001b$B5N\u001b(B \u001b$B5O\u001b(B\n\u001b$B5P\u001b(B \u001b$B5Q\u001b(B \u001b$B5R\u001b(B \u001b$B5S\u001b(B \u001b$B5T\u001b(B \u001b$B5U\u001b(B \u001b$B5V\u001b(B \u001b$B5W\u001b(B \u001b$B5X\u001b(B \u001b$B5Y\u001b(B \u001b$B5Z\u001b(B \u001b$B5[\u001b(B \u001b$B5\\\u001b(B \u001b$B5]\u001b(B \u001b$B5^\u001b(B \u001b$B5_\u001b(B\n\u001b$B5`\u001b(B \u001b$B5a\u001b(B \u001b$B5b\u001b(B \u001b$B5c\u001b(B \u001b$B5d\u001b(B \u001b$B5e\u001b(B \u001b$B5f\u001b(B \u001b$B5g\u001b(B \u001b$B5h\u001b(B \u001b$B5i\u001b(B \u001b$B5j\u001b(B \u001b$B5k\u001b(B \u001b$B5l\u001b(B \u001b$B5m\u001b(B \u001b$B5n\u001b(B \u001b$B5o\u001b(B\n\u001b$B5p\u001b(B \u001b$B5q\u001b(B \u001b$B5r\u001b(B \u001b$B5s\u001b(B \u001b$B5t\u001b(B \u001b$B5u\u001b(B \u001b$B5v\u001b(B \u001b$B5w\u001b(B \u001b$B5x\u001b(B \u001b$B5y\u001b(B \u001b$B5z\u001b(B \u001b$B5{\u001b(B \u001b$B5|\u001b(B \u001b$B5}\u001b(B \u001b$B5~\u001b(B\n   \u001b$B6!\u001b(B \u001b$B6\"\u001b(B \u001b$B6#\u001b(B \u001b$B6$\u001b(B \u001b$B6%\u001b(B \u001b$B6&\u001b(B \u001b$B6'\u001b(B \u001b$B6(\u001b(B \u001b$B6)\u001b(B \u001b$B6*\u001b(B \u001b$B6+\u001b(B \u001b$B6,\u001b(B \u001b$B6-\u001b(B \u001b$B6.\u001b(B \u001b$B6/\u001b(B\n\u001b$B60\u001b(B \u001b$B61\u001b(B \u001b$B62\u001b(B \u001b$B63\u001b(B \u001b$B64\u001b(B \u001b$B65\u001b(B \u001b$B66\u001b(B \u001b$B67\u001b(B \u001b$B68\u001b(B \u001b$B69\u001b(B \u001b$B6:\u001b(B \u001b$B6;\u001b(B \u001b$B6<\u001b(B \u001b$B6=\u001b(B \u001b$B6>\u001b(B \u001b$B6?\u001b(B\n\u001b$B6@\u001b(B \u001b$B6A\u001b(B \u001b$B6B\u001b(B \u001b$B6C\u001b(B \u001b$B6D\u001b(B \u001b$B6E\u001b(B \u001b$B6F\u001b(B \u001b$B6G\u001b(B \u001b$B6H\u001b(B \u001b$B6I\u001b(B \u001b$B6J\u001b(B \u001b$B6K\u001b(B \u001b$B6L\u001b(B \u001b$B6M\u001b(B \u001b$B6N\u001b(B \u001b$B6O\u001b(B\n\u001b$B6P\u001b(B \u001b$B6Q\u001b(B \u001b$B6R\u001b(B \u001b$B6S\u001b(B \u001b$B6T\u001b(B \u001b$B6U\u001b(B \u001b$B6V\u001b(B \u001b$B6W\u001b(B \u001b$B6X\u001b(B \u001b$B6Y\u001b(B \u001b$B6Z\u001b(B \u001b$B6[\u001b(B \u001b$B6\\\u001b(B \u001b$B6]\u001b(B \u001b$B6^\u001b(B \u001b$B6_\u001b(B\n\u001b$B6`\u001b(B \u001b$B6a\u001b(B \u001b$B6b\u001b(B \u001b$B6c\u001b(B \u001b$B6d\u001b(B \u001b$B6e\u001b(B \u001b$B6f\u001b(B \u001b$B6g\u001b(B \u001b$B6h\u001b(B \u001b$B6i\u001b(B \u001b$B6j\u001b(B \u001b$B6k\u001b(B \u001b$B6l\u001b(B \u001b$B6m\u001b(B \u001b$B6n\u001b(B \u001b$B6o\u001b(B\n\u001b$B6p\u001b(B \u001b$B6q\u001b(B \u001b$B6r\u001b(B \u001b$B6s\u001b(B \u001b$B6t\u001b(B \u001b$B6u\u001b(B \u001b$B6v\u001b(B \u001b$B6w\u001b(B \u001b$B6x\u001b(B \u001b$B6y\u001b(B \u001b$B6z\u001b(B \u001b$B6{\u001b(B \u001b$B6|\u001b(B \u001b$B6}\u001b(B \u001b$B6~\u001b(B\n   \u001b$B7!\u001b(B \u001b$B7\"\u001b(B \u001b$B7#\u001b(B \u001b$B7$\u001b(B \u001b$B7%\u001b(B \u001b$B7&\u001b(B \u001b$B7'\u001b(B \u001b$B7(\u001b(B \u001b$B7)\u001b(B \u001b$B7*\u001b(B \u001b$B7+\u001b(B \u001b$B7,\u001b(B \u001b$B7-\u001b(B \u001b$B7.\u001b(B \u001b$B7/\u001b(B\n\u001b$B70\u001b(B \u001b$B71\u001b(B \u001b$B72\u001b(B \u001b$B73\u001b(B \u001b$B74\u001b(B \u001b$B75\u001b(B \u001b$B76\u001b(B \u001b$B77\u001b(B \u001b$B78\u001b(B \u001b$B79\u001b(B \u001b$B7:\u001b(B \u001b$B7;\u001b(B \u001b$B7<\u001b(B \u001b$B7=\u001b(B \u001b$B7>\u001b(B \u001b$B7?\u001b(B\n\u001b$B7@\u001b(B \u001b$B7A\u001b(B \u001b$B7B\u001b(B \u001b$B7C\u001b(B \u001b$B7D\u001b(B \u001b$B7E\u001b(B \u001b$B7F\u001b(B \u001b$B7G\u001b(B \u001b$B7H\u001b(B \u001b$B7I\u001b(B \u001b$B7J\u001b(B \u001b$B7K\u001b(B \u001b$B7L\u001b(B \u001b$B7M\u001b(B \u001b$B7N\u001b(B \u001b$B7O\u001b(B\n\u001b$B7P\u001b(B \u001b$B7Q\u001b(B \u001b$B7R\u001b(B \u001b$B7S\u001b(B \u001b$B7T\u001b(B \u001b$B7U\u001b(B \u001b$B7V\u001b(B \u001b$B7W\u001b(B \u001b$B7X\u001b(B \u001b$B7Y\u001b(B \u001b$B7Z\u001b(B \u001b$B7[\u001b(B \u001b$B7\\\u001b(B \u001b$B7]\u001b(B \u001b$B7^\u001b(B \u001b$B7_\u001b(B\n\u001b$B7`\u001b(B \u001b$B7a\u001b(B \u001b$B7b\u001b(B \u001b$B7c\u001b(B \u001b$B7d\u001b(B \u001b$B7e\u001b(B \u001b$B7f\u001b(B \u001b$B7g\u001b(B \u001b$B7h\u001b(B \u001b$B7i\u001b(B \u001b$B7j\u001b(B \u001b$B7k\u001b(B \u001b$B7l\u001b(B \u001b$B7m\u001b(B \u001b$B7n\u001b(B \u001b$B7o\u001b(B\n\u001b$B7p\u001b(B \u001b$B7q\u001b(B \u001b$B7r\u001b(B \u001b$B7s\u001b(B \u001b$B7t\u001b(B \u001b$B7u\u001b(B \u001b$B7v\u001b(B \u001b$B7w\u001b(B \u001b$B7x\u001b(B \u001b$B7y\u001b(B \u001b$B7z\u001b(B \u001b$B7{\u001b(B \u001b$B7|\u001b(B \u001b$B7}\u001b(B \u001b$B7~\u001b(B\n   \u001b$B8!\u001b(B \u001b$B8\"\u001b(B \u001b$B8#\u001b(B \u001b$B8$\u001b(B \u001b$B8%\u001b(B \u001b$B8&\u001b(B \u001b$B8'\u001b(B \u001b$B8(\u001b(B \u001b$B8)\u001b(B \u001b$B8*\u001b(B \u001b$B8+\u001b(B \u001b$B8,\u001b(B \u001b$B8-\u001b(B \u001b$B8.\u001b(B \u001b$B8/\u001b(B\n\u001b$B80\u001b(B \u001b$B81\u001b(B \u001b$B82\u001b(B \u001b$B83\u001b(B \u001b$B84\u001b(B \u001b$B85\u001b(B \u001b$B86\u001b(B \u001b$B87\u001b(B \u001b$B88\u001b(B \u001b$B89\u001b(B \u001b$B8:\u001b(B \u001b$B8;\u001b(B \u001b$B8<\u001b(B \u001b$B8=\u001b(B \u001b$B8>\u001b(B \u001b$B8?\u001b(B\n\u001b$B8@\u001b(B \u001b$B8A\u001b(B \u001b$B8B\u001b(B \u001b$B8C\u001b(B \u001b$B8D\u001b(B \u001b$B8E\u001b(B \u001b$B8F\u001b(B \u001b$B8G\u001b(B \u001b$B8H\u001b(B \u001b$B8I\u001b(B \u001b$B8J\u001b(B \u001b$B8K\u001b(B \u001b$B8L\u001b(B \u001b$B8M\u001b(B \u001b$B8N\u001b(B \u001b$B8O\u001b(B\n\u001b$B8P\u001b(B \u001b$B8Q\u001b(B \u001b$B8R\u001b(B \u001b$B8S\u001b(B \u001b$B8T\u001b(B \u001b$B8U\u001b(B \u001b$B8V\u001b(B \u001b$B8W\u001b(B \u001b$B8X\u001b(B \u001b$B8Y\u001b(B \u001b$B8Z\u001b(B \u001b$B8[\u001b(B \u001b$B8\\\u001b(B \u001b$B8]\u001b(B \u001b$B8^\u001b(B \u001b$B8_\u001b(B\n\u001b$B8`\u001b(B \u001b$B8a\u001b(B \u001b$B8b\u001b(B \u001b$B8c\u001b(B \u001b$B8d\u001b(B \u001b$B8e\u001b(B \u001b$B8f\u001b(B \u001b$B8g\u001b(B \u001b$B8h\u001b(B \u001b$B8i\u001b(B \u001b$B8j\u001b(B \u001b$B8k\u001b(B \u001b$B8l\u001b(B \u001b$B8m\u001b(B \u001b$B8n\u001b(B \u001b$B8o\u001b(B\n\u001b$B8p\u001b(B \u001b$B8q\u001b(B \u001b$B8r\u001b(B \u001b$B8s\u001b(B \u001b$B8t\u001b(B \u001b$B8u\u001b(B \u001b$B8v\u001b(B \u001b$B8w\u001b(B \u001b$B8x\u001b(B \u001b$B8y\u001b(B \u001b$B8z\u001b(B \u001b$B8{\u001b(B \u001b$B8|\u001b(B \u001b$B8}\u001b(B \u001b$B8~\u001b(B\n   \u001b$B9!\u001b(B \u001b$B9\"\u001b(B \u001b$B9#\u001b(B \u001b$B9$\u001b(B \u001b$B9%\u001b(B \u001b$B9&\u001b(B \u001b$B9'\u001b(B \u001b$B9(\u001b(B \u001b$B9)\u001b(B \u001b$B9*\u001b(B \u001b$B9+\u001b(B \u001b$B9,\u001b(B \u001b$B9-\u001b(B \u001b$B9.\u001b(B \u001b$B9/\u001b(B\n\u001b$B90\u001b(B \u001b$B91\u001b(B \u001b$B92\u001b(B \u001b$B93\u001b(B \u001b$B94\u001b(B \u001b$B95\u001b(B \u001b$B96\u001b(B \u001b$B97\u001b(B \u001b$B98\u001b(B \u001b$B99\u001b(B \u001b$B9:\u001b(B \u001b$B9;\u001b(B \u001b$B9<\u001b(B \u001b$B9=\u001b(B \u001b$B9>\u001b(B \u001b$B9?\u001b(B\n\u001b$B9@\u001b(B \u001b$B9A\u001b(B \u001b$B9B\u001b(B \u001b$B9C\u001b(B \u001b$B9D\u001b(B \u001b$B9E\u001b(B \u001b$B9F\u001b(B \u001b$B9G\u001b(B \u001b$B9H\u001b(B \u001b$B9I\u001b(B \u001b$B9J\u001b(B \u001b$B9K\u001b(B \u001b$B9L\u001b(B \u001b$B9M\u001b(B \u001b$B9N\u001b(B \u001b$B9O\u001b(B\n\u001b$B9P\u001b(B \u001b$B9Q\u001b(B \u001b$B9R\u001b(B \u001b$B9S\u001b(B \u001b$B9T\u001b(B \u001b$B9U\u001b(B \u001b$B9V\u001b(B \u001b$B9W\u001b(B \u001b$B9X\u001b(B \u001b$B9Y\u001b(B \u001b$B9Z\u001b(B \u001b$B9[\u001b(B \u001b$B9\\\u001b(B \u001b$B9]\u001b(B \u001b$B9^\u001b(B \u001b$B9_\u001b(B\n\u001b$B9`\u001b(B \u001b$B9a\u001b(B \u001b$B9b\u001b(B \u001b$B9c\u001b(B \u001b$B9d\u001b(B \u001b$B9e\u001b(B \u001b$B9f\u001b(B \u001b$B9g\u001b(B \u001b$B9h\u001b(B \u001b$B9i\u001b(B \u001b$B9j\u001b(B \u001b$B9k\u001b(B \u001b$B9l\u001b(B \u001b$B9m\u001b(B \u001b$B9n\u001b(B \u001b$B9o\u001b(B\n\u001b$B9p\u001b(B \u001b$B9q\u001b(B \u001b$B9r\u001b(B \u001b$B9s\u001b(B \u001b$B9t\u001b(B \u001b$B9u\u001b(B \u001b$B9v\u001b(B \u001b$B9w\u001b(B \u001b$B9x\u001b(B \u001b$B9y\u001b(B \u001b$B9z\u001b(B \u001b$B9{\u001b(B \u001b$B9|\u001b(B \u001b$B9}\u001b(B \u001b$B9~\u001b(B\n   \u001b$B:!\u001b(B \u001b$B:\"\u001b(B \u001b$B:#\u001b(B \u001b$B:$\u001b(B \u001b$B:%\u001b(B \u001b$B:&\u001b(B \u001b$B:'\u001b(B \u001b$B:(\u001b(B \u001b$B:)\u001b(B \u001b$B:*\u001b(B \u001b$B:+\u001b(B \u001b$B:,\u001b(B \u001b$B:-\u001b(B \u001b$B:.\u001b(B \u001b$B:/\u001b(B\n\u001b$B:0\u001b(B \u001b$B:1\u001b(B \u001b$B:2\u001b(B \u001b$B:3\u001b(B \u001b$B:4\u001b(B \u001b$B:5\u001b(B \u001b$B:6\u001b(B \u001b$B:7\u001b(B \u001b$B:8\u001b(B \u001b$B:9\u001b(B \u001b$B::\u001b(B \u001b$B:;\u001b(B \u001b$B:<\u001b(B \u001b$B:=\u001b(B \u001b$B:>\u001b(B \u001b$B:?\u001b(B\n\u001b$B:@\u001b(B \u001b$B:A\u001b(B \u001b$B:B\u001b(B \u001b$B:C\u001b(B \u001b$B:D\u001b(B \u001b$B:E\u001b(B \u001b$B:F\u001b(B \u001b$B:G\u001b(B \u001b$B:H\u001b(B \u001b$B:I\u001b(B \u001b$B:J\u001b(B \u001b$B:K\u001b(B \u001b$B:L\u001b(B \u001b$B:M\u001b(B \u001b$B:N\u001b(B \u001b$B:O\u001b(B\n\u001b$B:P\u001b(B \u001b$B:Q\u001b(B \u001b$B:R\u001b(B \u001b$B:S\u001b(B \u001b$B:T\u001b(B \u001b$B:U\u001b(B \u001b$B:V\u001b(B \u001b$B:W\u001b(B \u001b$B:X\u001b(B \u001b$B:Y\u001b(B \u001b$B:Z\u001b(B \u001b$B:[\u001b(B \u001b$B:\\\u001b(B \u001b$B:]\u001b(B \u001b$B:^\u001b(B \u001b$B:_\u001b(B\n\u001b$B:`\u001b(B \u001b$B:a\u001b(B \u001b$B:b\u001b(B \u001b$B:c\u001b(B \u001b$B:d\u001b(B \u001b$B:e\u001b(B \u001b$B:f\u001b(B \u001b$B:g\u001b(B \u001b$B:h\u001b(B \u001b$B:i\u001b(B \u001b$B:j\u001b(B \u001b$B:k\u001b(B \u001b$B:l\u001b(B \u001b$B:m\u001b(B \u001b$B:n\u001b(B \u001b$B:o\u001b(B\n\u001b$B:p\u001b(B \u001b$B:q\u001b(B \u001b$B:r\u001b(B \u001b$B:s\u001b(B \u001b$B:t\u001b(B \u001b$B:u\u001b(B \u001b$B:v\u001b(B \u001b$B:w\u001b(B \u001b$B:x\u001b(B \u001b$B:y\u001b(B \u001b$B:z\u001b(B \u001b$B:{\u001b(B \u001b$B:|\u001b(B \u001b$B:}\u001b(B \u001b$B:~\u001b(B\n   \u001b$B;!\u001b(B \u001b$B;\"\u001b(B \u001b$B;#\u001b(B \u001b$B;$\u001b(B \u001b$B;%\u001b(B \u001b$B;&\u001b(B \u001b$B;'\u001b(B \u001b$B;(\u001b(B \u001b$B;)\u001b(B \u001b$B;*\u001b(B \u001b$B;+\u001b(B \u001b$B;,\u001b(B \u001b$B;-\u001b(B \u001b$B;.\u001b(B \u001b$B;/\u001b(B\n\u001b$B;0\u001b(B \u001b$B;1\u001b(B \u001b$B;2\u001b(B \u001b$B;3\u001b(B \u001b$B;4\u001b(B \u001b$B;5\u001b(B \u001b$B;6\u001b(B \u001b$B;7\u001b(B \u001b$B;8\u001b(B \u001b$B;9\u001b(B \u001b$B;:\u001b(B \u001b$B;;\u001b(B \u001b$B;<\u001b(B \u001b$B;=\u001b(B \u001b$B;>\u001b(B \u001b$B;?\u001b(B\n\u001b$B;@\u001b(B \u001b$B;A\u001b(B \u001b$B;B\u001b(B \u001b$B;C\u001b(B \u001b$B;D\u001b(B \u001b$B;E\u001b(B \u001b$B;F\u001b(B \u001b$B;G\u001b(B \u001b$B;H\u001b(B \u001b$B;I\u001b(B \u001b$B;J\u001b(B \u001b$B;K\u001b(B \u001b$B;L\u001b(B \u001b$B;M\u001b(B \u001b$B;N\u001b(B \u001b$B;O\u001b(B\n\u001b$B;P\u001b(B \u001b$B;Q\u001b(B \u001b$B;R\u001b(B \u001b$B;S\u001b(B \u001b$B;T\u001b(B \u001b$B;U\u001b(B \u001b$B;V\u001b(B \u001b$B;W\u001b(B \u001b$B;X\u001b(B \u001b$B;Y\u001b(B \u001b$B;Z\u001b(B \u001b$B;[\u001b(B \u001b$B;\\\u001b(B \u001b$B;]\u001b(B \u001b$B;^\u001b(B \u001b$B;_\u001b(B\n\u001b$B;`\u001b(B \u001b$B;a\u001b(B \u001b$B;b\u001b(B \u001b$B;c\u001b(B \u001b$B;d\u001b(B \u001b$B;e\u001b(B \u001b$B;f\u001b(B \u001b$B;g\u001b(B \u001b$B;h\u001b(B \u001b$B;i\u001b(B \u001b$B;j\u001b(B \u001b$B;k\u001b(B \u001b$B;l\u001b(B \u001b$B;m\u001b(B \u001b$B;n\u001b(B \u001b$B;o\u001b(B\n\u001b$B;p\u001b(B \u001b$B;q\u001b(B \u001b$B;r\u001b(B \u001b$B;s\u001b(B \u001b$B;t\u001b(B \u001b$B;u\u001b(B \u001b$B;v\u001b(B \u001b$B;w\u001b(B \u001b$B;x\u001b(B \u001b$B;y\u001b(B \u001b$B;z\u001b(B \u001b$B;{\u001b(B \u001b$B;|\u001b(B \u001b$B;}\u001b(B \u001b$B;~\u001b(B\n   \u001b$B<!\u001b(B \u001b$B<\"\u001b(B \u001b$B<#\u001b(B \u001b$B<$\u001b(B \u001b$B<%\u001b(B \u001b$B<&\u001b(B \u001b$B<'\u001b(B \u001b$B<(\u001b(B \u001b$B<)\u001b(B \u001b$B<*\u001b(B \u001b$B<+\u001b(B \u001b$B<,\u001b(B \u001b$B<-\u001b(B \u001b$B<.\u001b(B \u001b$B</\u001b(B\n\u001b$B<0\u001b(B \u001b$B<1\u001b(B \u001b$B<2\u001b(B \u001b$B<3\u001b(B \u001b$B<4\u001b(B \u001b$B<5\u001b(B \u001b$B<6\u001b(B \u001b$B<7\u001b(B \u001b$B<8\u001b(B \u001b$B<9\u001b(B \u001b$B<:\u001b(B \u001b$B<;\u001b(B \u001b$B<<\u001b(B \u001b$B<=\u001b(B \u001b$B<>\u001b(B \u001b$B<?\u001b(B\n\u001b$B<@\u001b(B \u001b$B<A\u001b(B \u001b$B<B\u001b(B \u001b$B<C\u001b(B \u001b$B<D\u001b(B \u001b$B<E\u001b(B \u001b$B<F\u001b(B \u001b$B<G\u001b(B \u001b$B<H\u001b(B \u001b$B<I\u001b(B \u001b$B<J\u001b(B \u001b$B<K\u001b(B \u001b$B<L\u001b(B \u001b$B<M\u001b(B \u001b$B<N\u001b(B \u001b$B<O\u001b(B\n\u001b$B<P\u001b(B \u001b$B<Q\u001b(B \u001b$B<R\u001b(B \u001b$B<S\u001b(B \u001b$B<T\u001b(B \u001b$B<U\u001b(B \u001b$B<V\u001b(B \u001b$B<W\u001b(B \u001b$B<X\u001b(B \u001b$B<Y\u001b(B \u001b$B<Z\u001b(B \u001b$B<[\u001b(B \u001b$B<\\\u001b(B \u001b$B<]\u001b(B \u001b$B<^\u001b(B \u001b$B<_\u001b(B\n\u001b$B<`\u001b(B \u001b$B<a\u001b(B \u001b$B<b\u001b(B \u001b$B<c\u001b(B \u001b$B<d\u001b(B \u001b$B<e\u001b(B \u001b$B<f\u001b(B \u001b$B<g\u001b(B \u001b$B<h\u001b(B \u001b$B<i\u001b(B \u001b$B<j\u001b(B \u001b$B<k\u001b(B \u001b$B<l\u001b(B \u001b$B<m\u001b(B \u001b$B<n\u001b(B \u001b$B<o\u001b(B\n\u001b$B<p\u001b(B \u001b$B<q\u001b(B \u001b$B<r\u001b(B \u001b$B<s\u001b(B \u001b$B<t\u001b(B \u001b$B<u\u001b(B \u001b$B<v\u001b(B \u001b$B<w\u001b(B \u001b$B<x\u001b(B \u001b$B<y\u001b(B \u001b$B<z\u001b(B \u001b$B<{\u001b(B \u001b$B<|\u001b(B \u001b$B<}\u001b(B \u001b$B<~\u001b(B\n   \u001b$B=!\u001b(B \u001b$B=\"\u001b(B \u001b$B=#\u001b(B \u001b$B=$\u001b(B \u001b$B=%\u001b(B \u001b$B=&\u001b(B \u001b$B='\u001b(B \u001b$B=(\u001b(B \u001b$B=)\u001b(B \u001b$B=*\u001b(B \u001b$B=+\u001b(B \u001b$B=,\u001b(B \u001b$B=-\u001b(B \u001b$B=.\u001b(B \u001b$B=/\u001b(B\n\u001b$B=0\u001b(B \u001b$B=1\u001b(B \u001b$B=2\u001b(B \u001b$B=3\u001b(B \u001b$B=4\u001b(B \u001b$B=5\u001b(B \u001b$B=6\u001b(B \u001b$B=7\u001b(B \u001b$B=8\u001b(B \u001b$B=9\u001b(B \u001b$B=:\u001b(B \u001b$B=;\u001b(B \u001b$B=<\u001b(B \u001b$B==\u001b(B \u001b$B=>\u001b(B \u001b$B=?\u001b(B\n\u001b$B=@\u001b(B \u001b$B=A\u001b(B \u001b$B=B\u001b(B \u001b$B=C\u001b(B \u001b$B=D\u001b(B \u001b$B=E\u001b(B \u001b$B=F\u001b(B \u001b$B=G\u001b(B \u001b$B=H\u001b(B \u001b$B=I\u001b(B \u001b$B=J\u001b(B \u001b$B=K\u001b(B \u001b$B=L\u001b(B \u001b$B=M\u001b(B \u001b$B=N\u001b(B \u001b$B=O\u001b(B\n\u001b$B=P\u001b(B \u001b$B=Q\u001b(B \u001b$B=R\u001b(B \u001b$B=S\u001b(B \u001b$B=T\u001b(B \u001b$B=U\u001b(B \u001b$B=V\u001b(B \u001b$B=W\u001b(B \u001b$B=X\u001b(B \u001b$B=Y\u001b(B \u001b$B=Z\u001b(B \u001b$B=[\u001b(B \u001b$B=\\\u001b(B \u001b$B=]\u001b(B \u001b$B=^\u001b(B \u001b$B=_\u001b(B\n\u001b$B=`\u001b(B \u001b$B=a\u001b(B \u001b$B=b\u001b(B \u001b$B=c\u001b(B \u001b$B=d\u001b(B \u001b$B=e\u001b(B \u001b$B=f\u001b(B \u001b$B=g\u001b(B \u001b$B=h\u001b(B \u001b$B=i\u001b(B \u001b$B=j\u001b(B \u001b$B=k\u001b(B \u001b$B=l\u001b(B \u001b$B=m\u001b(B \u001b$B=n\u001b(B \u001b$B=o\u001b(B\n\u001b$B=p\u001b(B \u001b$B=q\u001b(B \u001b$B=r\u001b(B \u001b$B=s\u001b(B \u001b$B=t\u001b(B \u001b$B=u\u001b(B \u001b$B=v\u001b(B \u001b$B=w\u001b(B \u001b$B=x\u001b(B \u001b$B=y\u001b(B \u001b$B=z\u001b(B \u001b$B={\u001b(B \u001b$B=|\u001b(B \u001b$B=}\u001b(B \u001b$B=~\u001b(B\n   \u001b$B>!\u001b(B \u001b$B>\"\u001b(B \u001b$B>#\u001b(B \u001b$B>$\u001b(B \u001b$B>%\u001b(B \u001b$B>&\u001b(B \u001b$B>'\u001b(B \u001b$B>(\u001b(B \u001b$B>)\u001b(B \u001b$B>*\u001b(B \u001b$B>+\u001b(B \u001b$B>,\u001b(B \u001b$B>-\u001b(B \u001b$B>.\u001b(B \u001b$B>/\u001b(B\n\u001b$B>0\u001b(B \u001b$B>1\u001b(B \u001b$B>2\u001b(B \u001b$B>3\u001b(B \u001b$B>4\u001b(B \u001b$B>5\u001b(B \u001b$B>6\u001b(B \u001b$B>7\u001b(B \u001b$B>8\u001b(B \u001b$B>9\u001b(B \u001b$B>:\u001b(B \u001b$B>;\u001b(B \u001b$B><\u001b(B \u001b$B>=\u001b(B \u001b$B>>\u001b(B \u001b$B>?\u001b(B\n\u001b$B>@\u001b(B \u001b$B>A\u001b(B \u001b$B>B\u001b(B \u001b$B>C\u001b(B \u001b$B>D\u001b(B \u001b$B>E\u001b(B \u001b$B>F\u001b(B \u001b$B>G\u001b(B \u001b$B>H\u001b(B \u001b$B>I\u001b(B \u001b$B>J\u001b(B \u001b$B>K\u001b(B \u001b$B>L\u001b(B \u001b$B>M\u001b(B \u001b$B>N\u001b(B \u001b$B>O\u001b(B\n\u001b$B>P\u001b(B \u001b$B>Q\u001b(B \u001b$B>R\u001b(B \u001b$B>S\u001b(B \u001b$B>T\u001b(B \u001b$B>U\u001b(B \u001b$B>V\u001b(B \u001b$B>W\u001b(B \u001b$B>X\u001b(B \u001b$B>Y\u001b(B \u001b$B>Z\u001b(B \u001b$B>[\u001b(B \u001b$B>\\\u001b(B \u001b$B>]\u001b(B \u001b$B>^\u001b(B \u001b$B>_\u001b(B\n\u001b$B>`\u001b(B \u001b$B>a\u001b(B \u001b$B>b\u001b(B \u001b$B>c\u001b(B \u001b$B>d\u001b(B \u001b$B>e\u001b(B \u001b$B>f\u001b(B \u001b$B>g\u001b(B \u001b$B>h\u001b(B \u001b$B>i\u001b(B \u001b$B>j\u001b(B \u001b$B>k\u001b(B \u001b$B>l\u001b(B \u001b$B>m\u001b(B \u001b$B>n\u001b(B \u001b$B>o\u001b(B\n\u001b$B>p\u001b(B \u001b$B>q\u001b(B \u001b$B>r\u001b(B \u001b$B>s\u001b(B \u001b$B>t\u001b(B \u001b$B>u\u001b(B \u001b$B>v\u001b(B \u001b$B>w\u001b(B \u001b$B>x\u001b(B \u001b$B>y\u001b(B \u001b$B>z\u001b(B \u001b$B>{\u001b(B \u001b$B>|\u001b(B \u001b$B>}\u001b(B \u001b$B>~\u001b(B\n   \u001b$B?!\u001b(B \u001b$B?\"\u001b(B \u001b$B?#\u001b(B \u001b$B?$\u001b(B \u001b$B?%\u001b(B \u001b$B?&\u001b(B \u001b$B?'\u001b(B \u001b$B?(\u001b(B \u001b$B?)\u001b(B \u001b$B?*\u001b(B \u001b$B?+\u001b(B \u001b$B?,\u001b(B \u001b$B?-\u001b(B \u001b$B?.\u001b(B \u001b$B?/\u001b(B\n\u001b$B?0\u001b(B \u001b$B?1\u001b(B \u001b$B?2\u001b(B \u001b$B?3\u001b(B \u001b$B?4\u001b(B \u001b$B?5\u001b(B \u001b$B?6\u001b(B \u001b$B?7\u001b(B \u001b$B?8\u001b(B \u001b$B?9\u001b(B \u001b$B?:\u001b(B \u001b$B?;\u001b(B \u001b$B?<\u001b(B \u001b$B?=\u001b(B \u001b$B?>\u001b(B \u001b$B??\u001b(B\n\u001b$B?@\u001b(B \u001b$B?A\u001b(B \u001b$B?B\u001b(B \u001b$B?C\u001b(B \u001b$B?D\u001b(B \u001b$B?E\u001b(B \u001b$B?F\u001b(B \u001b$B?G\u001b(B \u001b$B?H\u001b(B \u001b$B?I\u001b(B \u001b$B?J\u001b(B \u001b$B?K\u001b(B \u001b$B?L\u001b(B \u001b$B?M\u001b(B \u001b$B?N\u001b(B \u001b$B?O\u001b(B\n\u001b$B?P\u001b(B \u001b$B?Q\u001b(B \u001b$B?R\u001b(B \u001b$B?S\u001b(B \u001b$B?T\u001b(B \u001b$B?U\u001b(B \u001b$B?V\u001b(B \u001b$B?W\u001b(B \u001b$B?X\u001b(B \u001b$B?Y\u001b(B \u001b$B?Z\u001b(B \u001b$B?[\u001b(B \u001b$B?\\\u001b(B \u001b$B?]\u001b(B \u001b$B?^\u001b(B \u001b$B?_\u001b(B\n\u001b$B?`\u001b(B \u001b$B?a\u001b(B \u001b$B?b\u001b(B \u001b$B?c\u001b(B \u001b$B?d\u001b(B \u001b$B?e\u001b(B \u001b$B?f\u001b(B \u001b$B?g\u001b(B \u001b$B?h\u001b(B \u001b$B?i\u001b(B \u001b$B?j\u001b(B \u001b$B?k\u001b(B \u001b$B?l\u001b(B \u001b$B?m\u001b(B \u001b$B?n\u001b(B \u001b$B?o\u001b(B\n\u001b$B?p\u001b(B \u001b$B?q\u001b(B \u001b$B?r\u001b(B \u001b$B?s\u001b(B \u001b$B?t\u001b(B \u001b$B?u\u001b(B \u001b$B?v\u001b(B \u001b$B?w\u001b(B \u001b$B?x\u001b(B \u001b$B?y\u001b(B \u001b$B?z\u001b(B \u001b$B?{\u001b(B \u001b$B?|\u001b(B \u001b$B?}\u001b(B \u001b$B?~\u001b(B\n   \u001b$B@!\u001b(B \u001b$B@\"\u001b(B \u001b$B@#\u001b(B \u001b$B@$\u001b(B \u001b$B@%\u001b(B \u001b$B@&\u001b(B \u001b$B@'\u001b(B \u001b$B@(\u001b(B \u001b$B@)\u001b(B \u001b$B@*\u001b(B \u001b$B@+\u001b(B \u001b$B@,\u001b(B \u001b$B@-\u001b(B \u001b$B@.\u001b(B \u001b$B@/\u001b(B\n\u001b$B@0\u001b(B \u001b$B@1\u001b(B \u001b$B@2\u001b(B \u001b$B@3\u001b(B \u001b$B@4\u001b(B \u001b$B@5\u001b(B \u001b$B@6\u001b(B \u001b$B@7\u001b(B \u001b$B@8\u001b(B \u001b$B@9\u001b(B \u001b$B@:\u001b(B \u001b$B@;\u001b(B \u001b$B@<\u001b(B \u001b$B@=\u001b(B \u001b$B@>\u001b(B \u001b$B@?\u001b(B\n\u001b$B@@\u001b(B \u001b$B@A\u001b(B \u001b$B@B\u001b(B \u001b$B@C\u001b(B \u001b$B@D\u001b(B \u001b$B@E\u001b(B \u001b$B@F\u001b(B \u001b$B@G\u001b(B \u001b$B@H\u001b(B \u001b$B@I\u001b(B \u001b$B@J\u001b(B \u001b$B@K\u001b(B \u001b$B@L\u001b(B \u001b$B@M\u001b(B \u001b$B@N\u001b(B \u001b$B@O\u001b(B\n\u001b$B@P\u001b(B \u001b$B@Q\u001b(B \u001b$B@R\u001b(B \u001b$B@S\u001b(B \u001b$B@T\u001b(B \u001b$B@U\u001b(B \u001b$B@V\u001b(B \u001b$B@W\u001b(B \u001b$B@X\u001b(B \u001b$B@Y\u001b(B \u001b$B@Z\u001b(B \u001b$B@[\u001b(B \u001b$B@\\\u001b(B \u001b$B@]\u001b(B \u001b$B@^\u001b(B \u001b$B@_\u001b(B\n\u001b$B@`\u001b(B \u001b$B@a\u001b(B \u001b$B@b\u001b(B \u001b$B@c\u001b(B \u001b$B@d\u001b(B \u001b$B@e\u001b(B \u001b$B@f\u001b(B \u001b$B@g\u001b(B \u001b$B@h\u001b(B \u001b$B@i\u001b(B \u001b$B@j\u001b(B \u001b$B@k\u001b(B \u001b$B@l\u001b(B \u001b$B@m\u001b(B \u001b$B@n\u001b(B \u001b$B@o\u001b(B\n\u001b$B@p\u001b(B \u001b$B@q\u001b(B \u001b$B@r\u001b(B \u001b$B@s\u001b(B \u001b$B@t\u001b(B \u001b$B@u\u001b(B \u001b$B@v\u001b(B \u001b$B@w\u001b(B \u001b$B@x\u001b(B \u001b$B@y\u001b(B \u001b$B@z\u001b(B \u001b$B@{\u001b(B \u001b$B@|\u001b(B \u001b$B@}\u001b(B \u001b$B@~\u001b(B\n   \u001b$BA!\u001b(B \u001b$BA\"\u001b(B \u001b$BA#\u001b(B \u001b$BA$\u001b(B \u001b$BA%\u001b(B \u001b$BA&\u001b(B \u001b$BA'\u001b(B \u001b$BA(\u001b(B \u001b$BA)\u001b(B \u001b$BA*\u001b(B \u001b$BA+\u001b(B \u001b$BA,\u001b(B \u001b$BA-\u001b(B \u001b$BA.\u001b(B \u001b$BA/\u001b(B\n\u001b$BA0\u001b(B \u001b$BA1\u001b(B \u001b$BA2\u001b(B \u001b$BA3\u001b(B \u001b$BA4\u001b(B \u001b$BA5\u001b(B \u001b$BA6\u001b(B \u001b$BA7\u001b(B \u001b$BA8\u001b(B \u001b$BA9\u001b(B \u001b$BA:\u001b(B \u001b$BA;\u001b(B \u001b$BA<\u001b(B \u001b$BA=\u001b(B \u001b$BA>\u001b(B \u001b$BA?\u001b(B\n\u001b$BA@\u001b(B \u001b$BAA\u001b(B \u001b$BAB\u001b(B \u001b$BAC\u001b(B \u001b$BAD\u001b(B \u001b$BAE\u001b(B \u001b$BAF\u001b(B \u001b$BAG\u001b(B \u001b$BAH\u001b(B \u001b$BAI\u001b(B \u001b$BAJ\u001b(B \u001b$BAK\u001b(B \u001b$BAL\u001b(B \u001b$BAM\u001b(B \u001b$BAN\u001b(B \u001b$BAO\u001b(B\n\u001b$BAP\u001b(B \u001b$BAQ\u001b(B \u001b$BAR\u001b(B \u001b$BAS\u001b(B \u001b$BAT\u001b(B \u001b$BAU\u001b(B \u001b$BAV\u001b(B \u001b$BAW\u001b(B \u001b$BAX\u001b(B \u001b$BAY\u001b(B \u001b$BAZ\u001b(B \u001b$BA[\u001b(B \u001b$BA\\\u001b(B \u001b$BA]\u001b(B \u001b$BA^\u001b(B \u001b$BA_\u001b(B\n\u001b$BA`\u001b(B \u001b$BAa\u001b(B \u001b$BAb\u001b(B \u001b$BAc\u001b(B \u001b$BAd\u001b(B \u001b$BAe\u001b(B \u001b$BAf\u001b(B \u001b$BAg\u001b(B \u001b$BAh\u001b(B \u001b$BAi\u001b(B \u001b$BAj\u001b(B \u001b$BAk\u001b(B \u001b$BAl\u001b(B \u001b$BAm\u001b(B \u001b$BAn\u001b(B \u001b$BAo\u001b(B\n\u001b$BAp\u001b(B \u001b$BAq\u001b(B \u001b$BAr\u001b(B \u001b$BAs\u001b(B \u001b$BAt\u001b(B \u001b$BAu\u001b(B \u001b$BAv\u001b(B \u001b$BAw\u001b(B \u001b$BAx\u001b(B \u001b$BAy\u001b(B \u001b$BAz\u001b(B \u001b$BA{\u001b(B \u001b$BA|\u001b(B \u001b$BA}\u001b(B \u001b$BA~\u001b(B\n   \u001b$BB!\u001b(B \u001b$BB\"\u001b(B \u001b$BB#\u001b(B \u001b$BB$\u001b(B \u001b$BB%\u001b(B \u001b$BB&\u001b(B \u001b$BB'\u001b(B \u001b$BB(\u001b(B \u001b$BB)\u001b(B \u001b$BB*\u001b(B \u001b$BB+\u001b(B \u001b$BB,\u001b(B \u001b$BB-\u001b(B \u001b$BB.\u001b(B \u001b$BB/\u001b(B\n\u001b$BB0\u001b(B \u001b$BB1\u001b(B \u001b$BB2\u001b(B \u001b$BB3\u001b(B \u001b$BB4\u001b(B \u001b$BB5\u001b(B \u001b$BB6\u001b(B \u001b$BB7\u001b(B \u001b$BB8\u001b(B \u001b$BB9\u001b(B \u001b$BB:\u001b(B \u001b$BB;\u001b(B \u001b$BB<\u001b(B \u001b$BB=\u001b(B \u001b$BB>\u001b(B \u001b$BB?\u001b(B\n\u001b$BB@\u001b(B \u001b$BBA\u001b(B \u001b$BBB\u001b(B \u001b$BBC\u001b(B \u001b$BBD\u001b(B \u001b$BBE\u001b(B \u001b$BBF\u001b(B \u001b$BBG\u001b(B \u001b$BBH\u001b(B \u001b$BBI\u001b(B \u001b$BBJ\u001b(B \u001b$BBK\u001b(B \u001b$BBL\u001b(B \u001b$BBM\u001b(B \u001b$BBN\u001b(B \u001b$BBO\u001b(B\n\u001b$BBP\u001b(B \u001b$BBQ\u001b(B \u001b$BBR\u001b(B \u001b$BBS\u001b(B \u001b$BBT\u001b(B \u001b$BBU\u001b(B \u001b$BBV\u001b(B \u001b$BBW\u001b(B \u001b$BBX\u001b(B \u001b$BBY\u001b(B \u001b$BBZ\u001b(B \u001b$BB[\u001b(B \u001b$BB\\\u001b(B \u001b$BB]\u001b(B \u001b$BB^\u001b(B \u001b$BB_\u001b(B\n\u001b$BB`\u001b(B \u001b$BBa\u001b(B \u001b$BBb\u001b(B \u001b$BBc\u001b(B \u001b$BBd\u001b(B \u001b$BBe\u001b(B \u001b$BBf\u001b(B \u001b$BBg\u001b(B \u001b$BBh\u001b(B \u001b$BBi\u001b(B \u001b$BBj\u001b(B \u001b$BBk\u001b(B \u001b$BBl\u001b(B \u001b$BBm\u001b(B \u001b$BBn\u001b(B \u001b$BBo\u001b(B\n\u001b$BBp\u001b(B \u001b$BBq\u001b(B \u001b$BBr\u001b(B \u001b$BBs\u001b(B \u001b$BBt\u001b(B \u001b$BBu\u001b(B \u001b$BBv\u001b(B \u001b$BBw\u001b(B \u001b$BBx\u001b(B \u001b$BBy\u001b(B \u001b$BBz\u001b(B \u001b$BB{\u001b(B \u001b$BB|\u001b(B \u001b$BB}\u001b(B \u001b$BB~\u001b(B\n   \u001b$BC!\u001b(B \u001b$BC\"\u001b(B \u001b$BC#\u001b(B \u001b$BC$\u001b(B \u001b$BC%\u001b(B \u001b$BC&\u001b(B \u001b$BC'\u001b(B \u001b$BC(\u001b(B \u001b$BC)\u001b(B \u001b$BC*\u001b(B \u001b$BC+\u001b(B \u001b$BC,\u001b(B \u001b$BC-\u001b(B \u001b$BC.\u001b(B \u001b$BC/\u001b(B\n\u001b$BC0\u001b(B \u001b$BC1\u001b(B \u001b$BC2\u001b(B \u001b$BC3\u001b(B \u001b$BC4\u001b(B \u001b$BC5\u001b(B \u001b$BC6\u001b(B \u001b$BC7\u001b(B \u001b$BC8\u001b(B \u001b$BC9\u001b(B \u001b$BC:\u001b(B \u001b$BC;\u001b(B \u001b$BC<\u001b(B \u001b$BC=\u001b(B \u001b$BC>\u001b(B \u001b$BC?\u001b(B\n\u001b$BC@\u001b(B \u001b$BCA\u001b(B \u001b$BCB\u001b(B \u001b$BCC\u001b(B \u001b$BCD\u001b(B \u001b$BCE\u001b(B \u001b$BCF\u001b(B \u001b$BCG\u001b(B \u001b$BCH\u001b(B \u001b$BCI\u001b(B \u001b$BCJ\u001b(B \u001b$BCK\u001b(B \u001b$BCL\u001b(B \u001b$BCM\u001b(B \u001b$BCN\u001b(B \u001b$BCO\u001b(B\n\u001b$BCP\u001b(B \u001b$BCQ\u001b(B \u001b$BCR\u001b(B \u001b$BCS\u001b(B \u001b$BCT\u001b(B \u001b$BCU\u001b(B \u001b$BCV\u001b(B \u001b$BCW\u001b(B \u001b$BCX\u001b(B \u001b$BCY\u001b(B \u001b$BCZ\u001b(B \u001b$BC[\u001b(B \u001b$BC\\\u001b(B \u001b$BC]\u001b(B \u001b$BC^\u001b(B \u001b$BC_\u001b(B\n\u001b$BC`\u001b(B \u001b$BCa\u001b(B \u001b$BCb\u001b(B \u001b$BCc\u001b(B \u001b$BCd\u001b(B \u001b$BCe\u001b(B \u001b$BCf\u001b(B \u001b$BCg\u001b(B \u001b$BCh\u001b(B \u001b$BCi\u001b(B \u001b$BCj\u001b(B \u001b$BCk\u001b(B \u001b$BCl\u001b(B \u001b$BCm\u001b(B \u001b$BCn\u001b(B \u001b$BCo\u001b(B\n\u001b$BCp\u001b(B \u001b$BCq\u001b(B \u001b$BCr\u001b(B \u001b$BCs\u001b(B \u001b$BCt\u001b(B \u001b$BCu\u001b(B \u001b$BCv\u001b(B \u001b$BCw\u001b(B \u001b$BCx\u001b(B \u001b$BCy\u001b(B \u001b$BCz\u001b(B \u001b$BC{\u001b(B \u001b$BC|\u001b(B \u001b$BC}\u001b(B \u001b$BC~\u001b(B\n   \u001b$BD!\u001b(B \u001b$BD\"\u001b(B \u001b$BD#\u001b(B \u001b$BD$\u001b(B \u001b$BD%\u001b(B \u001b$BD&\u001b(B \u001b$BD'\u001b(B \u001b$BD(\u001b(B \u001b$BD)\u001b(B \u001b$BD*\u001b(B \u001b$BD+\u001b(B \u001b$BD,\u001b(B \u001b$BD-\u001b(B \u001b$BD.\u001b(B \u001b$BD/\u001b(B\n\u001b$BD0\u001b(B \u001b$BD1\u001b(B \u001b$BD2\u001b(B \u001b$BD3\u001b(B \u001b$BD4\u001b(B \u001b$BD5\u001b(B \u001b$BD6\u001b(B \u001b$BD7\u001b(B \u001b$BD8\u001b(B \u001b$BD9\u001b(B \u001b$BD:\u001b(B \u001b$BD;\u001b(B \u001b$BD<\u001b(B \u001b$BD=\u001b(B \u001b$BD>\u001b(B \u001b$BD?\u001b(B\n\u001b$BD@\u001b(B \u001b$BDA\u001b(B \u001b$BDB\u001b(B \u001b$BDC\u001b(B \u001b$BDD\u001b(B \u001b$BDE\u001b(B \u001b$BDF\u001b(B \u001b$BDG\u001b(B \u001b$BDH\u001b(B \u001b$BDI\u001b(B \u001b$BDJ\u001b(B \u001b$BDK\u001b(B \u001b$BDL\u001b(B \u001b$BDM\u001b(B \u001b$BDN\u001b(B \u001b$BDO\u001b(B\n\u001b$BDP\u001b(B \u001b$BDQ\u001b(B \u001b$BDR\u001b(B \u001b$BDS\u001b(B \u001b$BDT\u001b(B \u001b$BDU\u001b(B \u001b$BDV\u001b(B \u001b$BDW\u001b(B \u001b$BDX\u001b(B \u001b$BDY\u001b(B \u001b$BDZ\u001b(B \u001b$BD[\u001b(B \u001b$BD\\\u001b(B \u001b$BD]\u001b(B \u001b$BD^\u001b(B \u001b$BD_\u001b(B\n\u001b$BD`\u001b(B \u001b$BDa\u001b(B \u001b$BDb\u001b(B \u001b$BDc\u001b(B \u001b$BDd\u001b(B \u001b$BDe\u001b(B \u001b$BDf\u001b(B \u001b$BDg\u001b(B \u001b$BDh\u001b(B \u001b$BDi\u001b(B \u001b$BDj\u001b(B \u001b$BDk\u001b(B \u001b$BDl\u001b(B \u001b$BDm\u001b(B \u001b$BDn\u001b(B \u001b$BDo\u001b(B\n\u001b$BDp\u001b(B \u001b$BDq\u001b(B \u001b$BDr\u001b(B \u001b$BDs\u001b(B \u001b$BDt\u001b(B \u001b$BDu\u001b(B \u001b$BDv\u001b(B \u001b$BDw\u001b(B \u001b$BDx\u001b(B \u001b$BDy\u001b(B \u001b$BDz\u001b(B \u001b$BD{\u001b(B \u001b$BD|\u001b(B \u001b$BD}\u001b(B \u001b$BD~\u001b(B\n   \u001b$BE!\u001b(B \u001b$BE\"\u001b(B \u001b$BE#\u001b(B \u001b$BE$\u001b(B \u001b$BE%\u001b(B \u001b$BE&\u001b(B \u001b$BE'\u001b(B \u001b$BE(\u001b(B \u001b$BE)\u001b(B \u001b$BE*\u001b(B \u001b$BE+\u001b(B \u001b$BE,\u001b(B \u001b$BE-\u001b(B \u001b$BE.\u001b(B \u001b$BE/\u001b(B\n\u001b$BE0\u001b(B \u001b$BE1\u001b(B \u001b$BE2\u001b(B \u001b$BE3\u001b(B \u001b$BE4\u001b(B \u001b$BE5\u001b(B \u001b$BE6\u001b(B \u001b$BE7\u001b(B \u001b$BE8\u001b(B \u001b$BE9\u001b(B \u001b$BE:\u001b(B \u001b$BE;\u001b(B \u001b$BE<\u001b(B \u001b$BE=\u001b(B \u001b$BE>\u001b(B \u001b$BE?\u001b(B\n\u001b$BE@\u001b(B \u001b$BEA\u001b(B \u001b$BEB\u001b(B \u001b$BEC\u001b(B \u001b$BED\u001b(B \u001b$BEE\u001b(B \u001b$BEF\u001b(B \u001b$BEG\u001b(B \u001b$BEH\u001b(B \u001b$BEI\u001b(B \u001b$BEJ\u001b(B \u001b$BEK\u001b(B \u001b$BEL\u001b(B \u001b$BEM\u001b(B \u001b$BEN\u001b(B \u001b$BEO\u001b(B\n\u001b$BEP\u001b(B \u001b$BEQ\u001b(B \u001b$BER\u001b(B \u001b$BES\u001b(B \u001b$BET\u001b(B \u001b$BEU\u001b(B \u001b$BEV\u001b(B \u001b$BEW\u001b(B \u001b$BEX\u001b(B \u001b$BEY\u001b(B \u001b$BEZ\u001b(B \u001b$BE[\u001b(B \u001b$BE\\\u001b(B \u001b$BE]\u001b(B \u001b$BE^\u001b(B \u001b$BE_\u001b(B\n\u001b$BE`\u001b(B \u001b$BEa\u001b(B \u001b$BEb\u001b(B \u001b$BEc\u001b(B \u001b$BEd\u001b(B \u001b$BEe\u001b(B \u001b$BEf\u001b(B \u001b$BEg\u001b(B \u001b$BEh\u001b(B \u001b$BEi\u001b(B \u001b$BEj\u001b(B \u001b$BEk\u001b(B \u001b$BEl\u001b(B \u001b$BEm\u001b(B \u001b$BEn\u001b(B \u001b$BEo\u001b(B\n\u001b$BEp\u001b(B \u001b$BEq\u001b(B \u001b$BEr\u001b(B \u001b$BEs\u001b(B \u001b$BEt\u001b(B \u001b$BEu\u001b(B \u001b$BEv\u001b(B \u001b$BEw\u001b(B \u001b$BEx\u001b(B \u001b$BEy\u001b(B \u001b$BEz\u001b(B \u001b$BE{\u001b(B \u001b$BE|\u001b(B \u001b$BE}\u001b(B \u001b$BE~\u001b(B\n   \u001b$BF!\u001b(B \u001b$BF\"\u001b(B \u001b$BF#\u001b(B \u001b$BF$\u001b(B \u001b$BF%\u001b(B \u001b$BF&\u001b(B \u001b$BF'\u001b(B \u001b$BF(\u001b(B \u001b$BF)\u001b(B \u001b$BF*\u001b(B \u001b$BF+\u001b(B \u001b$BF,\u001b(B \u001b$BF-\u001b(B \u001b$BF.\u001b(B \u001b$BF/\u001b(B\n\u001b$BF0\u001b(B \u001b$BF1\u001b(B \u001b$BF2\u001b(B \u001b$BF3\u001b(B \u001b$BF4\u001b(B \u001b$BF5\u001b(B \u001b$BF6\u001b(B \u001b$BF7\u001b(B \u001b$BF8\u001b(B \u001b$BF9\u001b(B \u001b$BF:\u001b(B \u001b$BF;\u001b(B \u001b$BF<\u001b(B \u001b$BF=\u001b(B \u001b$BF>\u001b(B \u001b$BF?\u001b(B\n\u001b$BF@\u001b(B \u001b$BFA\u001b(B \u001b$BFB\u001b(B \u001b$BFC\u001b(B \u001b$BFD\u001b(B \u001b$BFE\u001b(B \u001b$BFF\u001b(B \u001b$BFG\u001b(B \u001b$BFH\u001b(B \u001b$BFI\u001b(B \u001b$BFJ\u001b(B \u001b$BFK\u001b(B \u001b$BFL\u001b(B \u001b$BFM\u001b(B \u001b$BFN\u001b(B \u001b$BFO\u001b(B\n\u001b$BFP\u001b(B \u001b$BFQ\u001b(B \u001b$BFR\u001b(B \u001b$BFS\u001b(B \u001b$BFT\u001b(B \u001b$BFU\u001b(B \u001b$BFV\u001b(B \u001b$BFW\u001b(B \u001b$BFX\u001b(B \u001b$BFY\u001b(B \u001b$BFZ\u001b(B \u001b$BF[\u001b(B \u001b$BF\\\u001b(B \u001b$BF]\u001b(B \u001b$BF^\u001b(B \u001b$BF_\u001b(B\n\u001b$BF`\u001b(B \u001b$BFa\u001b(B \u001b$BFb\u001b(B \u001b$BFc\u001b(B \u001b$BFd\u001b(B \u001b$BFe\u001b(B \u001b$BFf\u001b(B \u001b$BFg\u001b(B \u001b$BFh\u001b(B \u001b$BFi\u001b(B \u001b$BFj\u001b(B \u001b$BFk\u001b(B \u001b$BFl\u001b(B \u001b$BFm\u001b(B \u001b$BFn\u001b(B \u001b$BFo\u001b(B\n\u001b$BFp\u001b(B \u001b$BFq\u001b(B \u001b$BFr\u001b(B \u001b$BFs\u001b(B \u001b$BFt\u001b(B \u001b$BFu\u001b(B \u001b$BFv\u001b(B \u001b$BFw\u001b(B \u001b$BFx\u001b(B \u001b$BFy\u001b(B \u001b$BFz\u001b(B \u001b$BF{\u001b(B \u001b$BF|\u001b(B \u001b$BF}\u001b(B \u001b$BF~\u001b(B\n   \u001b$BG!\u001b(B \u001b$BG\"\u001b(B \u001b$BG#\u001b(B \u001b$BG$\u001b(B \u001b$BG%\u001b(B \u001b$BG&\u001b(B \u001b$BG'\u001b(B \u001b$BG(\u001b(B \u001b$BG)\u001b(B \u001b$BG*\u001b(B \u001b$BG+\u001b(B \u001b$BG,\u001b(B \u001b$BG-\u001b(B \u001b$BG.\u001b(B \u001b$BG/\u001b(B\n\u001b$BG0\u001b(B \u001b$BG1\u001b(B \u001b$BG2\u001b(B \u001b$BG3\u001b(B \u001b$BG4\u001b(B \u001b$BG5\u001b(B \u001b$BG6\u001b(B \u001b$BG7\u001b(B \u001b$BG8\u001b(B \u001b$BG9\u001b(B \u001b$BG:\u001b(B \u001b$BG;\u001b(B \u001b$BG<\u001b(B \u001b$BG=\u001b(B \u001b$BG>\u001b(B \u001b$BG?\u001b(B\n\u001b$BG@\u001b(B \u001b$BGA\u001b(B \u001b$BGB\u001b(B \u001b$BGC\u001b(B \u001b$BGD\u001b(B \u001b$BGE\u001b(B \u001b$BGF\u001b(B \u001b$BGG\u001b(B \u001b$BGH\u001b(B \u001b$BGI\u001b(B \u001b$BGJ\u001b(B \u001b$BGK\u001b(B \u001b$BGL\u001b(B \u001b$BGM\u001b(B \u001b$BGN\u001b(B \u001b$BGO\u001b(B\n\u001b$BGP\u001b(B \u001b$BGQ\u001b(B \u001b$BGR\u001b(B \u001b$BGS\u001b(B \u001b$BGT\u001b(B \u001b$BGU\u001b(B \u001b$BGV\u001b(B \u001b$BGW\u001b(B \u001b$BGX\u001b(B \u001b$BGY\u001b(B \u001b$BGZ\u001b(B \u001b$BG[\u001b(B \u001b$BG\\\u001b(B \u001b$BG]\u001b(B \u001b$BG^\u001b(B \u001b$BG_\u001b(B\n\u001b$BG`\u001b(B \u001b$BGa\u001b(B \u001b$BGb\u001b(B \u001b$BGc\u001b(B \u001b$BGd\u001b(B \u001b$BGe\u001b(B \u001b$BGf\u001b(B \u001b$BGg\u001b(B \u001b$BGh\u001b(B \u001b$BGi\u001b(B \u001b$BGj\u001b(B \u001b$BGk\u001b(B \u001b$BGl\u001b(B \u001b$BGm\u001b(B \u001b$BGn\u001b(B \u001b$BGo\u001b(B\n\u001b$BGp\u001b(B \u001b$BGq\u001b(B \u001b$BGr\u001b(B \u001b$BGs\u001b(B \u001b$BGt\u001b(B \u001b$BGu\u001b(B \u001b$BGv\u001b(B \u001b$BGw\u001b(B \u001b$BGx\u001b(B \u001b$BGy\u001b(B \u001b$BGz\u001b(B \u001b$BG{\u001b(B \u001b$BG|\u001b(B \u001b$BG}\u001b(B \u001b$BG~\u001b(B\n   \u001b$BH!\u001b(B \u001b$BH\"\u001b(B \u001b$BH#\u001b(B \u001b$BH$\u001b(B \u001b$BH%\u001b(B \u001b$BH&\u001b(B \u001b$BH'\u001b(B \u001b$BH(\u001b(B \u001b$BH)\u001b(B \u001b$BH*\u001b(B \u001b$BH+\u001b(B \u001b$BH,\u001b(B \u001b$BH-\u001b(B \u001b$BH.\u001b(B \u001b$BH/\u001b(B\n\u001b$BH0\u001b(B \u001b$BH1\u001b(B \u001b$BH2\u001b(B \u001b$BH3\u001b(B \u001b$BH4\u001b(B \u001b$BH5\u001b(B \u001b$BH6\u001b(B \u001b$BH7\u001b(B \u001b$BH8\u001b(B \u001b$BH9\u001b(B \u001b$BH:\u001b(B \u001b$BH;\u001b(B \u001b$BH<\u001b(B \u001b$BH=\u001b(B \u001b$BH>\u001b(B \u001b$BH?\u001b(B\n\u001b$BH@\u001b(B \u001b$BHA\u001b(B \u001b$BHB\u001b(B \u001b$BHC\u001b(B \u001b$BHD\u001b(B \u001b$BHE\u001b(B \u001b$BHF\u001b(B \u001b$BHG\u001b(B \u001b$BHH\u001b(B \u001b$BHI\u001b(B \u001b$BHJ\u001b(B \u001b$BHK\u001b(B \u001b$BHL\u001b(B \u001b$BHM\u001b(B \u001b$BHN\u001b(B \u001b$BHO\u001b(B\n\u001b$BHP\u001b(B \u001b$BHQ\u001b(B \u001b$BHR\u001b(B \u001b$BHS\u001b(B \u001b$BHT\u001b(B \u001b$BHU\u001b(B \u001b$BHV\u001b(B \u001b$BHW\u001b(B \u001b$BHX\u001b(B \u001b$BHY\u001b(B \u001b$BHZ\u001b(B \u001b$BH[\u001b(B \u001b$BH\\\u001b(B \u001b$BH]\u001b(B \u001b$BH^\u001b(B \u001b$BH_\u001b(B\n\u001b$BH`\u001b(B \u001b$BHa\u001b(B \u001b$BHb\u001b(B \u001b$BHc\u001b(B \u001b$BHd\u001b(B \u001b$BHe\u001b(B \u001b$BHf\u001b(B \u001b$BHg\u001b(B \u001b$BHh\u001b(B \u001b$BHi\u001b(B \u001b$BHj\u001b(B \u001b$BHk\u001b(B \u001b$BHl\u001b(B \u001b$BHm\u001b(B \u001b$BHn\u001b(B \u001b$BHo\u001b(B\n\u001b$BHp\u001b(B \u001b$BHq\u001b(B \u001b$BHr\u001b(B \u001b$BHs\u001b(B \u001b$BHt\u001b(B \u001b$BHu\u001b(B \u001b$BHv\u001b(B \u001b$BHw\u001b(B \u001b$BHx\u001b(B \u001b$BHy\u001b(B \u001b$BHz\u001b(B \u001b$BH{\u001b(B \u001b$BH|\u001b(B \u001b$BH}\u001b(B \u001b$BH~\u001b(B\n   \u001b$BI!\u001b(B \u001b$BI\"\u001b(B \u001b$BI#\u001b(B \u001b$BI$\u001b(B \u001b$BI%\u001b(B \u001b$BI&\u001b(B \u001b$BI'\u001b(B \u001b$BI(\u001b(B \u001b$BI)\u001b(B \u001b$BI*\u001b(B \u001b$BI+\u001b(B \u001b$BI,\u001b(B \u001b$BI-\u001b(B \u001b$BI.\u001b(B \u001b$BI/\u001b(B\n\u001b$BI0\u001b(B \u001b$BI1\u001b(B \u001b$BI2\u001b(B \u001b$BI3\u001b(B \u001b$BI4\u001b(B \u001b$BI5\u001b(B \u001b$BI6\u001b(B \u001b$BI7\u001b(B \u001b$BI8\u001b(B \u001b$BI9\u001b(B \u001b$BI:\u001b(B \u001b$BI;\u001b(B \u001b$BI<\u001b(B \u001b$BI=\u001b(B \u001b$BI>\u001b(B \u001b$BI?\u001b(B\n\u001b$BI@\u001b(B \u001b$BIA\u001b(B \u001b$BIB\u001b(B \u001b$BIC\u001b(B \u001b$BID\u001b(B \u001b$BIE\u001b(B \u001b$BIF\u001b(B \u001b$BIG\u001b(B \u001b$BIH\u001b(B \u001b$BII\u001b(B \u001b$BIJ\u001b(B \u001b$BIK\u001b(B \u001b$BIL\u001b(B \u001b$BIM\u001b(B \u001b$BIN\u001b(B \u001b$BIO\u001b(B\n\u001b$BIP\u001b(B \u001b$BIQ\u001b(B \u001b$BIR\u001b(B \u001b$BIS\u001b(B \u001b$BIT\u001b(B \u001b$BIU\u001b(B \u001b$BIV\u001b(B \u001b$BIW\u001b(B \u001b$BIX\u001b(B \u001b$BIY\u001b(B \u001b$BIZ\u001b(B \u001b$BI[\u001b(B \u001b$BI\\\u001b(B \u001b$BI]\u001b(B \u001b$BI^\u001b(B \u001b$BI_\u001b(B\n\u001b$BI`\u001b(B \u001b$BIa\u001b(B \u001b$BIb\u001b(B \u001b$BIc\u001b(B \u001b$BId\u001b(B \u001b$BIe\u001b(B \u001b$BIf\u001b(B \u001b$BIg\u001b(B \u001b$BIh\u001b(B \u001b$BIi\u001b(B \u001b$BIj\u001b(B \u001b$BIk\u001b(B \u001b$BIl\u001b(B \u001b$BIm\u001b(B \u001b$BIn\u001b(B \u001b$BIo\u001b(B\n\u001b$BIp\u001b(B \u001b$BIq\u001b(B \u001b$BIr\u001b(B \u001b$BIs\u001b(B \u001b$BIt\u001b(B \u001b$BIu\u001b(B \u001b$BIv\u001b(B \u001b$BIw\u001b(B \u001b$BIx\u001b(B \u001b$BIy\u001b(B \u001b$BIz\u001b(B \u001b$BI{\u001b(B \u001b$BI|\u001b(B \u001b$BI}\u001b(B \u001b$BI~\u001b(B\n   \u001b$BJ!\u001b(B \u001b$BJ\"\u001b(B \u001b$BJ#\u001b(B \u001b$BJ$\u001b(B \u001b$BJ%\u001b(B \u001b$BJ&\u001b(B \u001b$BJ'\u001b(B \u001b$BJ(\u001b(B \u001b$BJ)\u001b(B \u001b$BJ*\u001b(B \u001b$BJ+\u001b(B \u001b$BJ,\u001b(B \u001b$BJ-\u001b(B \u001b$BJ.\u001b(B \u001b$BJ/\u001b(B\n\u001b$BJ0\u001b(B \u001b$BJ1\u001b(B \u001b$BJ2\u001b(B \u001b$BJ3\u001b(B \u001b$BJ4\u001b(B \u001b$BJ5\u001b(B \u001b$BJ6\u001b(B \u001b$BJ7\u001b(B \u001b$BJ8\u001b(B \u001b$BJ9\u001b(B \u001b$BJ:\u001b(B \u001b$BJ;\u001b(B \u001b$BJ<\u001b(B \u001b$BJ=\u001b(B \u001b$BJ>\u001b(B \u001b$BJ?\u001b(B\n\u001b$BJ@\u001b(B \u001b$BJA\u001b(B \u001b$BJB\u001b(B \u001b$BJC\u001b(B \u001b$BJD\u001b(B \u001b$BJE\u001b(B \u001b$BJF\u001b(B \u001b$BJG\u001b(B \u001b$BJH\u001b(B \u001b$BJI\u001b(B \u001b$BJJ\u001b(B \u001b$BJK\u001b(B \u001b$BJL\u001b(B \u001b$BJM\u001b(B \u001b$BJN\u001b(B \u001b$BJO\u001b(B\n\u001b$BJP\u001b(B \u001b$BJQ\u001b(B \u001b$BJR\u001b(B \u001b$BJS\u001b(B \u001b$BJT\u001b(B \u001b$BJU\u001b(B \u001b$BJV\u001b(B \u001b$BJW\u001b(B \u001b$BJX\u001b(B \u001b$BJY\u001b(B \u001b$BJZ\u001b(B \u001b$BJ[\u001b(B \u001b$BJ\\\u001b(B \u001b$BJ]\u001b(B \u001b$BJ^\u001b(B \u001b$BJ_\u001b(B\n\u001b$BJ`\u001b(B \u001b$BJa\u001b(B \u001b$BJb\u001b(B \u001b$BJc\u001b(B \u001b$BJd\u001b(B \u001b$BJe\u001b(B \u001b$BJf\u001b(B \u001b$BJg\u001b(B \u001b$BJh\u001b(B \u001b$BJi\u001b(B \u001b$BJj\u001b(B \u001b$BJk\u001b(B \u001b$BJl\u001b(B \u001b$BJm\u001b(B \u001b$BJn\u001b(B \u001b$BJo\u001b(B\n\u001b$BJp\u001b(B \u001b$BJq\u001b(B \u001b$BJr\u001b(B \u001b$BJs\u001b(B \u001b$BJt\u001b(B \u001b$BJu\u001b(B \u001b$BJv\u001b(B \u001b$BJw\u001b(B \u001b$BJx\u001b(B \u001b$BJy\u001b(B \u001b$BJz\u001b(B \u001b$BJ{\u001b(B \u001b$BJ|\u001b(B \u001b$BJ}\u001b(B \u001b$BJ~\u001b(B\n   \u001b$BK!\u001b(B \u001b$BK\"\u001b(B \u001b$BK#\u001b(B \u001b$BK$\u001b(B \u001b$BK%\u001b(B \u001b$BK&\u001b(B \u001b$BK'\u001b(B \u001b$BK(\u001b(B \u001b$BK)\u001b(B \u001b$BK*\u001b(B \u001b$BK+\u001b(B \u001b$BK,\u001b(B \u001b$BK-\u001b(B \u001b$BK.\u001b(B \u001b$BK/\u001b(B\n\u001b$BK0\u001b(B \u001b$BK1\u001b(B \u001b$BK2\u001b(B \u001b$BK3\u001b(B \u001b$BK4\u001b(B \u001b$BK5\u001b(B \u001b$BK6\u001b(B \u001b$BK7\u001b(B \u001b$BK8\u001b(B \u001b$BK9\u001b(B \u001b$BK:\u001b(B \u001b$BK;\u001b(B \u001b$BK<\u001b(B \u001b$BK=\u001b(B \u001b$BK>\u001b(B \u001b$BK?\u001b(B\n\u001b$BK@\u001b(B \u001b$BKA\u001b(B \u001b$BKB\u001b(B \u001b$BKC\u001b(B \u001b$BKD\u001b(B \u001b$BKE\u001b(B \u001b$BKF\u001b(B \u001b$BKG\u001b(B \u001b$BKH\u001b(B \u001b$BKI\u001b(B \u001b$BKJ\u001b(B \u001b$BKK\u001b(B \u001b$BKL\u001b(B \u001b$BKM\u001b(B \u001b$BKN\u001b(B \u001b$BKO\u001b(B\n\u001b$BKP\u001b(B \u001b$BKQ\u001b(B \u001b$BKR\u001b(B \u001b$BKS\u001b(B \u001b$BKT\u001b(B \u001b$BKU\u001b(B \u001b$BKV\u001b(B \u001b$BKW\u001b(B \u001b$BKX\u001b(B \u001b$BKY\u001b(B \u001b$BKZ\u001b(B \u001b$BK[\u001b(B \u001b$BK\\\u001b(B \u001b$BK]\u001b(B \u001b$BK^\u001b(B \u001b$BK_\u001b(B\n\u001b$BK`\u001b(B \u001b$BKa\u001b(B \u001b$BKb\u001b(B \u001b$BKc\u001b(B \u001b$BKd\u001b(B \u001b$BKe\u001b(B \u001b$BKf\u001b(B \u001b$BKg\u001b(B \u001b$BKh\u001b(B \u001b$BKi\u001b(B \u001b$BKj\u001b(B \u001b$BKk\u001b(B \u001b$BKl\u001b(B \u001b$BKm\u001b(B \u001b$BKn\u001b(B \u001b$BKo\u001b(B\n\u001b$BKp\u001b(B \u001b$BKq\u001b(B \u001b$BKr\u001b(B \u001b$BKs\u001b(B \u001b$BKt\u001b(B \u001b$BKu\u001b(B \u001b$BKv\u001b(B \u001b$BKw\u001b(B \u001b$BKx\u001b(B \u001b$BKy\u001b(B \u001b$BKz\u001b(B \u001b$BK{\u001b(B \u001b$BK|\u001b(B \u001b$BK}\u001b(B \u001b$BK~\u001b(B\n   \u001b$BL!\u001b(B \u001b$BL\"\u001b(B \u001b$BL#\u001b(B \u001b$BL$\u001b(B \u001b$BL%\u001b(B \u001b$BL&\u001b(B \u001b$BL'\u001b(B \u001b$BL(\u001b(B \u001b$BL)\u001b(B \u001b$BL*\u001b(B \u001b$BL+\u001b(B \u001b$BL,\u001b(B \u001b$BL-\u001b(B \u001b$BL.\u001b(B \u001b$BL/\u001b(B\n\u001b$BL0\u001b(B \u001b$BL1\u001b(B \u001b$BL2\u001b(B \u001b$BL3\u001b(B \u001b$BL4\u001b(B \u001b$BL5\u001b(B \u001b$BL6\u001b(B \u001b$BL7\u001b(B \u001b$BL8\u001b(B \u001b$BL9\u001b(B \u001b$BL:\u001b(B \u001b$BL;\u001b(B \u001b$BL<\u001b(B \u001b$BL=\u001b(B \u001b$BL>\u001b(B \u001b$BL?\u001b(B\n\u001b$BL@\u001b(B \u001b$BLA\u001b(B \u001b$BLB\u001b(B \u001b$BLC\u001b(B \u001b$BLD\u001b(B \u001b$BLE\u001b(B \u001b$BLF\u001b(B \u001b$BLG\u001b(B \u001b$BLH\u001b(B \u001b$BLI\u001b(B \u001b$BLJ\u001b(B \u001b$BLK\u001b(B \u001b$BLL\u001b(B \u001b$BLM\u001b(B \u001b$BLN\u001b(B \u001b$BLO\u001b(B\n\u001b$BLP\u001b(B \u001b$BLQ\u001b(B \u001b$BLR\u001b(B \u001b$BLS\u001b(B \u001b$BLT\u001b(B \u001b$BLU\u001b(B \u001b$BLV\u001b(B \u001b$BLW\u001b(B \u001b$BLX\u001b(B \u001b$BLY\u001b(B \u001b$BLZ\u001b(B \u001b$BL[\u001b(B \u001b$BL\\\u001b(B \u001b$BL]\u001b(B \u001b$BL^\u001b(B \u001b$BL_\u001b(B\n\u001b$BL`\u001b(B \u001b$BLa\u001b(B \u001b$BLb\u001b(B \u001b$BLc\u001b(B \u001b$BLd\u001b(B \u001b$BLe\u001b(B \u001b$BLf\u001b(B \u001b$BLg\u001b(B \u001b$BLh\u001b(B \u001b$BLi\u001b(B \u001b$BLj\u001b(B \u001b$BLk\u001b(B \u001b$BLl\u001b(B \u001b$BLm\u001b(B \u001b$BLn\u001b(B \u001b$BLo\u001b(B\n\u001b$BLp\u001b(B \u001b$BLq\u001b(B \u001b$BLr\u001b(B \u001b$BLs\u001b(B \u001b$BLt\u001b(B \u001b$BLu\u001b(B \u001b$BLv\u001b(B \u001b$BLw\u001b(B \u001b$BLx\u001b(B \u001b$BLy\u001b(B \u001b$BLz\u001b(B \u001b$BL{\u001b(B \u001b$BL|\u001b(B \u001b$BL}\u001b(B \u001b$BL~\u001b(B\n   \u001b$BM!\u001b(B \u001b$BM\"\u001b(B \u001b$BM#\u001b(B \u001b$BM$\u001b(B \u001b$BM%\u001b(B \u001b$BM&\u001b(B \u001b$BM'\u001b(B \u001b$BM(\u001b(B \u001b$BM)\u001b(B \u001b$BM*\u001b(B \u001b$BM+\u001b(B \u001b$BM,\u001b(B \u001b$BM-\u001b(B \u001b$BM.\u001b(B \u001b$BM/\u001b(B\n\u001b$BM0\u001b(B \u001b$BM1\u001b(B \u001b$BM2\u001b(B \u001b$BM3\u001b(B \u001b$BM4\u001b(B \u001b$BM5\u001b(B \u001b$BM6\u001b(B \u001b$BM7\u001b(B \u001b$BM8\u001b(B \u001b$BM9\u001b(B \u001b$BM:\u001b(B \u001b$BM;\u001b(B \u001b$BM<\u001b(B \u001b$BM=\u001b(B \u001b$BM>\u001b(B \u001b$BM?\u001b(B\n\u001b$BM@\u001b(B \u001b$BMA\u001b(B \u001b$BMB\u001b(B \u001b$BMC\u001b(B \u001b$BMD\u001b(B \u001b$BME\u001b(B \u001b$BMF\u001b(B \u001b$BMG\u001b(B \u001b$BMH\u001b(B \u001b$BMI\u001b(B \u001b$BMJ\u001b(B \u001b$BMK\u001b(B \u001b$BML\u001b(B \u001b$BMM\u001b(B \u001b$BMN\u001b(B \u001b$BMO\u001b(B\n\u001b$BMP\u001b(B \u001b$BMQ\u001b(B \u001b$BMR\u001b(B \u001b$BMS\u001b(B \u001b$BMT\u001b(B \u001b$BMU\u001b(B \u001b$BMV\u001b(B \u001b$BMW\u001b(B \u001b$BMX\u001b(B \u001b$BMY\u001b(B \u001b$BMZ\u001b(B \u001b$BM[\u001b(B \u001b$BM\\\u001b(B \u001b$BM]\u001b(B \u001b$BM^\u001b(B \u001b$BM_\u001b(B\n\u001b$BM`\u001b(B \u001b$BMa\u001b(B \u001b$BMb\u001b(B \u001b$BMc\u001b(B \u001b$BMd\u001b(B \u001b$BMe\u001b(B \u001b$BMf\u001b(B \u001b$BMg\u001b(B \u001b$BMh\u001b(B \u001b$BMi\u001b(B \u001b$BMj\u001b(B \u001b$BMk\u001b(B \u001b$BMl\u001b(B \u001b$BMm\u001b(B \u001b$BMn\u001b(B \u001b$BMo\u001b(B\n\u001b$BMp\u001b(B \u001b$BMq\u001b(B \u001b$BMr\u001b(B \u001b$BMs\u001b(B \u001b$BMt\u001b(B \u001b$BMu\u001b(B \u001b$BMv\u001b(B \u001b$BMw\u001b(B \u001b$BMx\u001b(B \u001b$BMy\u001b(B \u001b$BMz\u001b(B \u001b$BM{\u001b(B \u001b$BM|\u001b(B \u001b$BM}\u001b(B \u001b$BM~\u001b(B\n   \u001b$BN!\u001b(B \u001b$BN\"\u001b(B \u001b$BN#\u001b(B \u001b$BN$\u001b(B \u001b$BN%\u001b(B \u001b$BN&\u001b(B \u001b$BN'\u001b(B \u001b$BN(\u001b(B \u001b$BN)\u001b(B \u001b$BN*\u001b(B \u001b$BN+\u001b(B \u001b$BN,\u001b(B \u001b$BN-\u001b(B \u001b$BN.\u001b(B \u001b$BN/\u001b(B\n\u001b$BN0\u001b(B \u001b$BN1\u001b(B \u001b$BN2\u001b(B \u001b$BN3\u001b(B \u001b$BN4\u001b(B \u001b$BN5\u001b(B \u001b$BN6\u001b(B \u001b$BN7\u001b(B \u001b$BN8\u001b(B \u001b$BN9\u001b(B \u001b$BN:\u001b(B \u001b$BN;\u001b(B \u001b$BN<\u001b(B \u001b$BN=\u001b(B \u001b$BN>\u001b(B \u001b$BN?\u001b(B\n\u001b$BN@\u001b(B \u001b$BNA\u001b(B \u001b$BNB\u001b(B \u001b$BNC\u001b(B \u001b$BND\u001b(B \u001b$BNE\u001b(B \u001b$BNF\u001b(B \u001b$BNG\u001b(B \u001b$BNH\u001b(B \u001b$BNI\u001b(B \u001b$BNJ\u001b(B \u001b$BNK\u001b(B \u001b$BNL\u001b(B \u001b$BNM\u001b(B \u001b$BNN\u001b(B \u001b$BNO\u001b(B\n\u001b$BNP\u001b(B \u001b$BNQ\u001b(B \u001b$BNR\u001b(B \u001b$BNS\u001b(B \u001b$BNT\u001b(B \u001b$BNU\u001b(B \u001b$BNV\u001b(B \u001b$BNW\u001b(B \u001b$BNX\u001b(B \u001b$BNY\u001b(B \u001b$BNZ\u001b(B \u001b$BN[\u001b(B \u001b$BN\\\u001b(B \u001b$BN]\u001b(B \u001b$BN^\u001b(B \u001b$BN_\u001b(B\n\u001b$BN`\u001b(B \u001b$BNa\u001b(B \u001b$BNb\u001b(B \u001b$BNc\u001b(B \u001b$BNd\u001b(B \u001b$BNe\u001b(B \u001b$BNf\u001b(B \u001b$BNg\u001b(B \u001b$BNh\u001b(B \u001b$BNi\u001b(B \u001b$BNj\u001b(B \u001b$BNk\u001b(B \u001b$BNl\u001b(B \u001b$BNm\u001b(B \u001b$BNn\u001b(B \u001b$BNo\u001b(B\n\u001b$BNp\u001b(B \u001b$BNq\u001b(B \u001b$BNr\u001b(B \u001b$BNs\u001b(B \u001b$BNt\u001b(B \u001b$BNu\u001b(B \u001b$BNv\u001b(B \u001b$BNw\u001b(B \u001b$BNx\u001b(B \u001b$BNy\u001b(B \u001b$BNz\u001b(B \u001b$BN{\u001b(B \u001b$BN|\u001b(B \u001b$BN}\u001b(B \u001b$BN~\u001b(B\n   \u001b$BO!\u001b(B \u001b$BO\"\u001b(B \u001b$BO#\u001b(B \u001b$BO$\u001b(B \u001b$BO%\u001b(B \u001b$BO&\u001b(B \u001b$BO'\u001b(B \u001b$BO(\u001b(B \u001b$BO)\u001b(B \u001b$BO*\u001b(B \u001b$BO+\u001b(B \u001b$BO,\u001b(B \u001b$BO-\u001b(B \u001b$BO.\u001b(B \u001b$BO/\u001b(B\n\u001b$BO0\u001b(B \u001b$BO1\u001b(B \u001b$BO2\u001b(B \u001b$BO3\u001b(B \u001b$BO4\u001b(B \u001b$BO5\u001b(B \u001b$BO6\u001b(B \u001b$BO7\u001b(B \u001b$BO8\u001b(B \u001b$BO9\u001b(B \u001b$BO:\u001b(B \u001b$BO;\u001b(B \u001b$BO<\u001b(B \u001b$BO=\u001b(B \u001b$BO>\u001b(B \u001b$BO?\u001b(B\n\u001b$BO@\u001b(B \u001b$BOA\u001b(B \u001b$BOB\u001b(B \u001b$BOC\u001b(B \u001b$BOD\u001b(B \u001b$BOE\u001b(B \u001b$BOF\u001b(B \u001b$BOG\u001b(B \u001b$BOH\u001b(B \u001b$BOI\u001b(B \u001b$BOJ\u001b(B \u001b$BOK\u001b(B \u001b$BOL\u001b(B \u001b$BOM\u001b(B \u001b$BON\u001b(B \u001b$BOO\u001b(B\n\u001b$BOP\u001b(B \u001b$BOQ\u001b(B \u001b$BOR\u001b(B \u001b$BOS\u001b(B    \u001b$(QOU\u001b(B \u001b$(QOV\u001b(B \u001b$(QOW\u001b(B \u001b$(QOX\u001b(B \u001b$(QOY\u001b(B \u001b$(QOZ\u001b(B \u001b$(QO[\u001b(B \u001b$(QO\\\u001b(B \u001b$(QO]\u001b(B \u001b$(QO^\u001b(B \u001b$(QO_\u001b(B\n\u001b$(QO`\u001b(B \u001b$(QOa\u001b(B \u001b$(QOb\u001b(B \u001b$(QOc\u001b(B \u001b$(QOd\u001b(B \u001b$(QOe\u001b(B \u001b$(QOf\u001b(B \u001b$(QOg\u001b(B \u001b$(QOh\u001b(B \u001b$(QOi\u001b(B \u001b$(QOj\u001b(B \u001b$(QOk\u001b(B \u001b$(QOl\u001b(B \u001b$(QOm\u001b(B \u001b$(QOn\u001b(B \u001b$(QOo\u001b(B\n\u001b$(QOp\u001b(B \u001b$(QOq\u001b(B \u001b$(QOr\u001b(B \u001b$(QOs\u001b(B \u001b$(QOt\u001b(B \u001b$(QOu\u001b(B \u001b$(QOv\u001b(B \u001b$(QOw\u001b(B \u001b$(QOx\u001b(B \u001b$(QOy\u001b(B \u001b$(QOz\u001b(B \u001b$(QO{\u001b(B \u001b$(QO|\u001b(B \u001b$(QO}\u001b(B\n   \u001b$BP!\u001b(B \u001b$BP\"\u001b(B \u001b$BP#\u001b(B \u001b$BP$\u001b(B \u001b$BP%\u001b(B \u001b$BP&\u001b(B \u001b$BP'\u001b(B \u001b$BP(\u001b(B \u001b$BP)\u001b(B \u001b$BP*\u001b(B \u001b$BP+\u001b(B \u001b$BP,\u001b(B \u001b$BP-\u001b(B \u001b$BP.\u001b(B \u001b$BP/\u001b(B\n\u001b$BP0\u001b(B \u001b$BP1\u001b(B \u001b$BP2\u001b(B \u001b$BP3\u001b(B \u001b$BP4\u001b(B \u001b$BP5\u001b(B \u001b$BP6\u001b(B \u001b$BP7\u001b(B \u001b$BP8\u001b(B \u001b$BP9\u001b(B \u001b$BP:\u001b(B \u001b$BP;\u001b(B \u001b$BP<\u001b(B \u001b$BP=\u001b(B \u001b$BP>\u001b(B \u001b$BP?\u001b(B\n\u001b$BP@\u001b(B \u001b$BPA\u001b(B \u001b$BPB\u001b(B \u001b$BPC\u001b(B \u001b$BPD\u001b(B \u001b$BPE\u001b(B \u001b$BPF\u001b(B \u001b$BPG\u001b(B \u001b$BPH\u001b(B \u001b$BPI\u001b(B \u001b$BPJ\u001b(B \u001b$BPK\u001b(B \u001b$BPL\u001b(B \u001b$BPM\u001b(B \u001b$BPN\u001b(B \u001b$BPO\u001b(B\n\u001b$BPP\u001b(B \u001b$BPQ\u001b(B \u001b$BPR\u001b(B \u001b$BPS\u001b(B \u001b$BPT\u001b(B \u001b$BPU\u001b(B \u001b$BPV\u001b(B \u001b$BPW\u001b(B \u001b$BPX\u001b(B \u001b$BPY\u001b(B \u001b$BPZ\u001b(B \u001b$BP[\u001b(B \u001b$BP\\\u001b(B \u001b$BP]\u001b(B \u001b$BP^\u001b(B \u001b$BP_\u001b(B\n\u001b$BP`\u001b(B \u001b$BPa\u001b(B \u001b$BPb\u001b(B \u001b$BPc\u001b(B \u001b$BPd\u001b(B \u001b$BPe\u001b(B \u001b$BPf\u001b(B \u001b$BPg\u001b(B \u001b$BPh\u001b(B \u001b$BPi\u001b(B \u001b$BPj\u001b(B \u001b$BPk\u001b(B \u001b$BPl\u001b(B \u001b$BPm\u001b(B \u001b$BPn\u001b(B \u001b$BPo\u001b(B\n\u001b$BPp\u001b(B \u001b$BPq\u001b(B \u001b$BPr\u001b(B \u001b$BPs\u001b(B \u001b$BPt\u001b(B \u001b$BPu\u001b(B \u001b$BPv\u001b(B \u001b$BPw\u001b(B \u001b$BPx\u001b(B \u001b$BPy\u001b(B \u001b$BPz\u001b(B \u001b$BP{\u001b(B \u001b$BP|\u001b(B \u001b$BP}\u001b(B \u001b$BP~\u001b(B\n   \u001b$BQ!\u001b(B \u001b$BQ\"\u001b(B \u001b$BQ#\u001b(B \u001b$BQ$\u001b(B \u001b$BQ%\u001b(B \u001b$BQ&\u001b(B \u001b$BQ'\u001b(B \u001b$BQ(\u001b(B \u001b$BQ)\u001b(B \u001b$BQ*\u001b(B \u001b$BQ+\u001b(B \u001b$BQ,\u001b(B \u001b$BQ-\u001b(B \u001b$BQ.\u001b(B \u001b$BQ/\u001b(B\n\u001b$BQ0\u001b(B \u001b$BQ1\u001b(B \u001b$BQ2\u001b(B \u001b$BQ3\u001b(B \u001b$BQ4\u001b(B \u001b$BQ5\u001b(B \u001b$BQ6\u001b(B \u001b$BQ7\u001b(B \u001b$BQ8\u001b(B \u001b$BQ9\u001b(B \u001b$BQ:\u001b(B \u001b$BQ;\u001b(B \u001b$BQ<\u001b(B \u001b$BQ=\u001b(B \u001b$BQ>\u001b(B \u001b$BQ?\u001b(B\n\u001b$BQ@\u001b(B \u001b$BQA\u001b(B \u001b$BQB\u001b(B \u001b$BQC\u001b(B \u001b$BQD\u001b(B \u001b$BQE\u001b(B \u001b$BQF\u001b(B \u001b$BQG\u001b(B \u001b$BQH\u001b(B \u001b$BQI\u001b(B \u001b$BQJ\u001b(B \u001b$BQK\u001b(B \u001b$BQL\u001b(B \u001b$BQM\u001b(B \u001b$BQN\u001b(B \u001b$BQO\u001b(B\n\u001b$BQP\u001b(B \u001b$BQQ\u001b(B \u001b$BQR\u001b(B \u001b$BQS\u001b(B \u001b$BQT\u001b(B \u001b$BQU\u001b(B \u001b$BQV\u001b(B \u001b$BQW\u001b(B \u001b$BQX\u001b(B \u001b$BQY\u001b(B \u001b$BQZ\u001b(B \u001b$BQ[\u001b(B \u001b$BQ\\\u001b(B \u001b$BQ]\u001b(B \u001b$BQ^\u001b(B \u001b$BQ_\u001b(B\n\u001b$BQ`\u001b(B \u001b$BQa\u001b(B \u001b$BQb\u001b(B \u001b$BQc\u001b(B \u001b$BQd\u001b(B \u001b$BQe\u001b(B \u001b$BQf\u001b(B \u001b$BQg\u001b(B \u001b$BQh\u001b(B \u001b$BQi\u001b(B \u001b$BQj\u001b(B \u001b$BQk\u001b(B \u001b$BQl\u001b(B \u001b$BQm\u001b(B \u001b$BQn\u001b(B \u001b$BQo\u001b(B\n\u001b$BQp\u001b(B \u001b$BQq\u001b(B \u001b$BQr\u001b(B \u001b$BQs\u001b(B \u001b$BQt\u001b(B \u001b$BQu\u001b(B \u001b$BQv\u001b(B \u001b$BQw\u001b(B \u001b$BQx\u001b(B \u001b$BQy\u001b(B \u001b$BQz\u001b(B \u001b$BQ{\u001b(B \u001b$BQ|\u001b(B \u001b$BQ}\u001b(B \u001b$BQ~\u001b(B\n   \u001b$BR!\u001b(B \u001b$BR\"\u001b(B \u001b$BR#\u001b(B \u001b$BR$\u001b(B \u001b$BR%\u001b(B \u001b$BR&\u001b(B \u001b$BR'\u001b(B \u001b$BR(\u001b(B \u001b$BR)\u001b(B \u001b$BR*\u001b(B \u001b$BR+\u001b(B \u001b$BR,\u001b(B \u001b$BR-\u001b(B \u001b$BR.\u001b(B \u001b$BR/\u001b(B\n\u001b$BR0\u001b(B \u001b$BR1\u001b(B \u001b$BR2\u001b(B \u001b$BR3\u001b(B \u001b$BR4\u001b(B \u001b$BR5\u001b(B \u001b$BR6\u001b(B \u001b$BR7\u001b(B \u001b$BR8\u001b(B \u001b$BR9\u001b(B \u001b$BR:\u001b(B \u001b$BR;\u001b(B \u001b$BR<\u001b(B \u001b$BR=\u001b(B \u001b$BR>\u001b(B \u001b$BR?\u001b(B\n\u001b$BR@\u001b(B \u001b$BRA\u001b(B \u001b$BRB\u001b(B \u001b$BRC\u001b(B \u001b$BRD\u001b(B \u001b$BRE\u001b(B \u001b$BRF\u001b(B \u001b$BRG\u001b(B \u001b$BRH\u001b(B \u001b$BRI\u001b(B \u001b$BRJ\u001b(B \u001b$BRK\u001b(B \u001b$BRL\u001b(B \u001b$BRM\u001b(B \u001b$BRN\u001b(B \u001b$BRO\u001b(B\n\u001b$BRP\u001b(B \u001b$BRQ\u001b(B \u001b$BRR\u001b(B \u001b$BRS\u001b(B \u001b$BRT\u001b(B \u001b$BRU\u001b(B \u001b$BRV\u001b(B \u001b$BRW\u001b(B \u001b$BRX\u001b(B \u001b$BRY\u001b(B \u001b$BRZ\u001b(B \u001b$BR[\u001b(B \u001b$BR\\\u001b(B \u001b$BR]\u001b(B \u001b$BR^\u001b(B \u001b$BR_\u001b(B\n\u001b$BR`\u001b(B \u001b$BRa\u001b(B \u001b$BRb\u001b(B \u001b$BRc\u001b(B \u001b$BRd\u001b(B \u001b$BRe\u001b(B \u001b$BRf\u001b(B \u001b$BRg\u001b(B \u001b$BRh\u001b(B \u001b$BRi\u001b(B \u001b$BRj\u001b(B \u001b$BRk\u001b(B \u001b$BRl\u001b(B \u001b$BRm\u001b(B \u001b$BRn\u001b(B \u001b$BRo\u001b(B\n\u001b$BRp\u001b(B \u001b$BRq\u001b(B \u001b$BRr\u001b(B \u001b$BRs\u001b(B \u001b$BRt\u001b(B \u001b$BRu\u001b(B \u001b$BRv\u001b(B \u001b$BRw\u001b(B \u001b$BRx\u001b(B \u001b$BRy\u001b(B \u001b$BRz\u001b(B \u001b$BR{\u001b(B \u001b$BR|\u001b(B \u001b$BR}\u001b(B \u001b$BR~\u001b(B\n   \u001b$BS!\u001b(B \u001b$BS\"\u001b(B \u001b$BS#\u001b(B \u001b$BS$\u001b(B \u001b$BS%\u001b(B \u001b$BS&\u001b(B \u001b$BS'\u001b(B \u001b$BS(\u001b(B \u001b$BS)\u001b(B \u001b$BS*\u001b(B \u001b$BS+\u001b(B \u001b$BS,\u001b(B \u001b$BS-\u001b(B \u001b$BS.\u001b(B \u001b$BS/\u001b(B\n\u001b$BS0\u001b(B \u001b$BS1\u001b(B \u001b$BS2\u001b(B \u001b$BS3\u001b(B \u001b$BS4\u001b(B \u001b$BS5\u001b(B \u001b$BS6\u001b(B \u001b$BS7\u001b(B \u001b$BS8\u001b(B \u001b$BS9\u001b(B \u001b$BS:\u001b(B \u001b$BS;\u001b(B \u001b$BS<\u001b(B \u001b$BS=\u001b(B \u001b$BS>\u001b(B \u001b$BS?\u001b(B\n\u001b$BS@\u001b(B \u001b$BSA\u001b(B \u001b$BSB\u001b(B \u001b$BSC\u001b(B \u001b$BSD\u001b(B \u001b$BSE\u001b(B \u001b$BSF\u001b(B \u001b$BSG\u001b(B \u001b$BSH\u001b(B \u001b$BSI\u001b(B \u001b$BSJ\u001b(B \u001b$BSK\u001b(B \u001b$BSL\u001b(B \u001b$BSM\u001b(B \u001b$BSN\u001b(B \u001b$BSO\u001b(B\n\u001b$BSP\u001b(B \u001b$BSQ\u001b(B \u001b$BSR\u001b(B \u001b$BSS\u001b(B \u001b$BST\u001b(B \u001b$BSU\u001b(B \u001b$BSV\u001b(B \u001b$BSW\u001b(B \u001b$BSX\u001b(B \u001b$BSY\u001b(B \u001b$BSZ\u001b(B \u001b$BS[\u001b(B \u001b$BS\\\u001b(B \u001b$BS]\u001b(B \u001b$BS^\u001b(B \u001b$BS_\u001b(B\n\u001b$BS`\u001b(B \u001b$BSa\u001b(B \u001b$BSb\u001b(B \u001b$BSc\u001b(B \u001b$BSd\u001b(B \u001b$BSe\u001b(B \u001b$BSf\u001b(B \u001b$BSg\u001b(B \u001b$BSh\u001b(B \u001b$BSi\u001b(B \u001b$BSj\u001b(B \u001b$BSk\u001b(B \u001b$BSl\u001b(B \u001b$BSm\u001b(B \u001b$BSn\u001b(B \u001b$BSo\u001b(B\n\u001b$BSp\u001b(B \u001b$BSq\u001b(B \u001b$BSr\u001b(B \u001b$BSs\u001b(B \u001b$BSt\u001b(B \u001b$BSu\u001b(B \u001b$BSv\u001b(B \u001b$BSw\u001b(B \u001b$BSx\u001b(B \u001b$BSy\u001b(B \u001b$BSz\u001b(B \u001b$BS{\u001b(B \u001b$BS|\u001b(B \u001b$BS}\u001b(B \u001b$BS~\u001b(B\n   \u001b$BT!\u001b(B \u001b$BT\"\u001b(B \u001b$BT#\u001b(B \u001b$BT$\u001b(B \u001b$BT%\u001b(B \u001b$BT&\u001b(B \u001b$BT'\u001b(B \u001b$BT(\u001b(B \u001b$BT)\u001b(B \u001b$BT*\u001b(B \u001b$BT+\u001b(B \u001b$BT,\u001b(B \u001b$BT-\u001b(B \u001b$BT.\u001b(B \u001b$BT/\u001b(B\n\u001b$BT0\u001b(B \u001b$BT1\u001b(B \u001b$BT2\u001b(B \u001b$BT3\u001b(B \u001b$BT4\u001b(B \u001b$BT5\u001b(B \u001b$BT6\u001b(B \u001b$BT7\u001b(B \u001b$BT8\u001b(B \u001b$BT9\u001b(B \u001b$BT:\u001b(B \u001b$BT;\u001b(B \u001b$BT<\u001b(B \u001b$BT=\u001b(B \u001b$BT>\u001b(B \u001b$BT?\u001b(B\n\u001b$BT@\u001b(B \u001b$BTA\u001b(B \u001b$BTB\u001b(B \u001b$BTC\u001b(B \u001b$BTD\u001b(B \u001b$BTE\u001b(B \u001b$BTF\u001b(B \u001b$BTG\u001b(B \u001b$BTH\u001b(B \u001b$BTI\u001b(B \u001b$BTJ\u001b(B \u001b$BTK\u001b(B \u001b$BTL\u001b(B \u001b$BTM\u001b(B \u001b$BTN\u001b(B \u001b$BTO\u001b(B\n\u001b$BTP\u001b(B \u001b$BTQ\u001b(B \u001b$BTR\u001b(B \u001b$BTS\u001b(B \u001b$BTT\u001b(B \u001b$BTU\u001b(B \u001b$BTV\u001b(B \u001b$BTW\u001b(B \u001b$BTX\u001b(B \u001b$BTY\u001b(B \u001b$BTZ\u001b(B \u001b$BT[\u001b(B \u001b$BT\\\u001b(B \u001b$BT]\u001b(B \u001b$BT^\u001b(B \u001b$BT_\u001b(B\n\u001b$BT`\u001b(B \u001b$BTa\u001b(B \u001b$BTb\u001b(B \u001b$BTc\u001b(B \u001b$BTd\u001b(B \u001b$BTe\u001b(B \u001b$BTf\u001b(B \u001b$BTg\u001b(B \u001b$BTh\u001b(B \u001b$BTi\u001b(B \u001b$BTj\u001b(B \u001b$BTk\u001b(B \u001b$BTl\u001b(B \u001b$BTm\u001b(B \u001b$BTn\u001b(B \u001b$BTo\u001b(B\n\u001b$BTp\u001b(B \u001b$BTq\u001b(B \u001b$BTr\u001b(B \u001b$BTs\u001b(B \u001b$BTt\u001b(B \u001b$BTu\u001b(B \u001b$BTv\u001b(B \u001b$BTw\u001b(B \u001b$BTx\u001b(B \u001b$BTy\u001b(B \u001b$BTz\u001b(B \u001b$BT{\u001b(B \u001b$BT|\u001b(B \u001b$BT}\u001b(B \u001b$BT~\u001b(B\n   \u001b$BU!\u001b(B \u001b$BU\"\u001b(B \u001b$BU#\u001b(B \u001b$BU$\u001b(B \u001b$BU%\u001b(B \u001b$BU&\u001b(B \u001b$BU'\u001b(B \u001b$BU(\u001b(B \u001b$BU)\u001b(B \u001b$BU*\u001b(B \u001b$BU+\u001b(B \u001b$BU,\u001b(B \u001b$BU-\u001b(B \u001b$BU.\u001b(B \u001b$BU/\u001b(B\n\u001b$BU0\u001b(B \u001b$BU1\u001b(B \u001b$BU2\u001b(B \u001b$BU3\u001b(B \u001b$BU4\u001b(B \u001b$BU5\u001b(B \u001b$BU6\u001b(B \u001b$BU7\u001b(B \u001b$BU8\u001b(B \u001b$BU9\u001b(B \u001b$BU:\u001b(B \u001b$BU;\u001b(B \u001b$BU<\u001b(B \u001b$BU=\u001b(B \u001b$BU>\u001b(B \u001b$BU?\u001b(B\n\u001b$BU@\u001b(B \u001b$BUA\u001b(B \u001b$BUB\u001b(B \u001b$BUC\u001b(B \u001b$BUD\u001b(B \u001b$BUE\u001b(B \u001b$BUF\u001b(B \u001b$BUG\u001b(B \u001b$BUH\u001b(B \u001b$BUI\u001b(B \u001b$BUJ\u001b(B \u001b$BUK\u001b(B \u001b$BUL\u001b(B \u001b$BUM\u001b(B \u001b$BUN\u001b(B \u001b$BUO\u001b(B\n\u001b$BUP\u001b(B \u001b$BUQ\u001b(B \u001b$BUR\u001b(B \u001b$BUS\u001b(B \u001b$BUT\u001b(B \u001b$BUU\u001b(B \u001b$BUV\u001b(B \u001b$BUW\u001b(B \u001b$BUX\u001b(B \u001b$BUY\u001b(B \u001b$BUZ\u001b(B \u001b$BU[\u001b(B \u001b$BU\\\u001b(B \u001b$BU]\u001b(B \u001b$BU^\u001b(B \u001b$BU_\u001b(B\n\u001b$BU`\u001b(B \u001b$BUa\u001b(B \u001b$BUb\u001b(B \u001b$BUc\u001b(B \u001b$BUd\u001b(B \u001b$BUe\u001b(B \u001b$BUf\u001b(B \u001b$BUg\u001b(B \u001b$BUh\u001b(B \u001b$BUi\u001b(B \u001b$BUj\u001b(B \u001b$BUk\u001b(B \u001b$BUl\u001b(B \u001b$BUm\u001b(B \u001b$BUn\u001b(B \u001b$BUo\u001b(B\n\u001b$BUp\u001b(B \u001b$BUq\u001b(B \u001b$BUr\u001b(B \u001b$BUs\u001b(B \u001b$BUt\u001b(B \u001b$BUu\u001b(B \u001b$BUv\u001b(B \u001b$BUw\u001b(B \u001b$BUx\u001b(B \u001b$BUy\u001b(B \u001b$BUz\u001b(B \u001b$BU{\u001b(B \u001b$BU|\u001b(B \u001b$BU}\u001b(B \u001b$BU~\u001b(B\n   \u001b$BV!\u001b(B \u001b$BV\"\u001b(B \u001b$BV#\u001b(B \u001b$BV$\u001b(B \u001b$BV%\u001b(B \u001b$BV&\u001b(B \u001b$BV'\u001b(B \u001b$BV(\u001b(B \u001b$BV)\u001b(B \u001b$BV*\u001b(B \u001b$BV+\u001b(B \u001b$BV,\u001b(B \u001b$BV-\u001b(B \u001b$BV.\u001b(B \u001b$BV/\u001b(B\n\u001b$BV0\u001b(B \u001b$BV1\u001b(B \u001b$BV2\u001b(B \u001b$BV3\u001b(B \u001b$BV4\u001b(B \u001b$BV5\u001b(B \u001b$BV6\u001b(B \u001b$BV7\u001b(B \u001b$BV8\u001b(B \u001b$BV9\u001b(B \u001b$BV:\u001b(B \u001b$BV;\u001b(B \u001b$BV<\u001b(B \u001b$BV=\u001b(B \u001b$BV>\u001b(B \u001b$BV?\u001b(B\n\u001b$BV@\u001b(B \u001b$BVA\u001b(B \u001b$BVB\u001b(B \u001b$BVC\u001b(B \u001b$BVD\u001b(B \u001b$BVE\u001b(B \u001b$BVF\u001b(B \u001b$BVG\u001b(B \u001b$BVH\u001b(B \u001b$BVI\u001b(B \u001b$BVJ\u001b(B \u001b$BVK\u001b(B \u001b$BVL\u001b(B \u001b$BVM\u001b(B \u001b$BVN\u001b(B \u001b$BVO\u001b(B\n\u001b$BVP\u001b(B \u001b$BVQ\u001b(B \u001b$BVR\u001b(B \u001b$BVS\u001b(B \u001b$BVT\u001b(B \u001b$BVU\u001b(B \u001b$BVV\u001b(B \u001b$BVW\u001b(B \u001b$BVX\u001b(B \u001b$BVY\u001b(B \u001b$BVZ\u001b(B \u001b$BV[\u001b(B \u001b$BV\\\u001b(B \u001b$BV]\u001b(B \u001b$BV^\u001b(B \u001b$BV_\u001b(B\n\u001b$BV`\u001b(B \u001b$BVa\u001b(B \u001b$BVb\u001b(B \u001b$BVc\u001b(B \u001b$BVd\u001b(B \u001b$BVe\u001b(B \u001b$BVf\u001b(B \u001b$BVg\u001b(B \u001b$BVh\u001b(B \u001b$BVi\u001b(B \u001b$BVj\u001b(B \u001b$BVk\u001b(B \u001b$BVl\u001b(B \u001b$BVm\u001b(B \u001b$BVn\u001b(B \u001b$BVo\u001b(B\n\u001b$BVp\u001b(B \u001b$BVq\u001b(B \u001b$BVr\u001b(B \u001b$BVs\u001b(B \u001b$BVt\u001b(B \u001b$BVu\u001b(B \u001b$BVv\u001b(B \u001b$BVw\u001b(B \u001b$BVx\u001b(B \u001b$BVy\u001b(B \u001b$BVz\u001b(B \u001b$BV{\u001b(B \u001b$BV|\u001b(B \u001b$BV}\u001b(B \u001b$BV~\u001b(B\n   \u001b$BW!\u001b(B \u001b$BW\"\u001b(B \u001b$BW#\u001b(B \u001b$BW$\u001b(B \u001b$BW%\u001b(B \u001b$BW&\u001b(B \u001b$BW'\u001b(B \u001b$BW(\u001b(B \u001b$BW)\u001b(B \u001b$BW*\u001b(B \u001b$BW+\u001b(B \u001b$BW,\u001b(B \u001b$BW-\u001b(B \u001b$BW.\u001b(B \u001b$BW/\u001b(B\n\u001b$BW0\u001b(B \u001b$BW1\u001b(B \u001b$BW2\u001b(B \u001b$BW3\u001b(B \u001b$BW4\u001b(B \u001b$BW5\u001b(B \u001b$BW6\u001b(B \u001b$BW7\u001b(B \u001b$BW8\u001b(B \u001b$BW9\u001b(B \u001b$BW:\u001b(B \u001b$BW;\u001b(B \u001b$BW<\u001b(B \u001b$BW=\u001b(B \u001b$BW>\u001b(B \u001b$BW?\u001b(B\n\u001b$BW@\u001b(B \u001b$BWA\u001b(B \u001b$BWB\u001b(B \u001b$BWC\u001b(B \u001b$BWD\u001b(B \u001b$BWE\u001b(B \u001b$BWF\u001b(B \u001b$BWG\u001b(B \u001b$BWH\u001b(B \u001b$BWI\u001b(B \u001b$BWJ\u001b(B \u001b$BWK\u001b(B \u001b$BWL\u001b(B \u001b$BWM\u001b(B \u001b$BWN\u001b(B \u001b$BWO\u001b(B\n\u001b$BWP\u001b(B \u001b$BWQ\u001b(B \u001b$BWR\u001b(B \u001b$BWS\u001b(B \u001b$BWT\u001b(B \u001b$BWU\u001b(B \u001b$BWV\u001b(B \u001b$BWW\u001b(B \u001b$BWX\u001b(B \u001b$BWY\u001b(B \u001b$BWZ\u001b(B \u001b$BW[\u001b(B \u001b$BW\\\u001b(B \u001b$BW]\u001b(B \u001b$BW^\u001b(B \u001b$BW_\u001b(B\n\u001b$BW`\u001b(B \u001b$BWa\u001b(B \u001b$BWb\u001b(B \u001b$BWc\u001b(B \u001b$BWd\u001b(B \u001b$BWe\u001b(B \u001b$BWf\u001b(B \u001b$BWg\u001b(B \u001b$BWh\u001b(B \u001b$BWi\u001b(B \u001b$BWj\u001b(B \u001b$BWk\u001b(B \u001b$BWl\u001b(B \u001b$BWm\u001b(B \u001b$BWn\u001b(B \u001b$BWo\u001b(B\n\u001b$BWp\u001b(B \u001b$BWq\u001b(B \u001b$BWr\u001b(B \u001b$BWs\u001b(B \u001b$BWt\u001b(B \u001b$BWu\u001b(B \u001b$BWv\u001b(B \u001b$BWw\u001b(B \u001b$BWx\u001b(B \u001b$BWy\u001b(B \u001b$BWz\u001b(B \u001b$BW{\u001b(B \u001b$BW|\u001b(B \u001b$BW}\u001b(B \u001b$BW~\u001b(B\n   \u001b$BX!\u001b(B \u001b$BX\"\u001b(B \u001b$BX#\u001b(B \u001b$BX$\u001b(B \u001b$BX%\u001b(B \u001b$BX&\u001b(B \u001b$BX'\u001b(B \u001b$BX(\u001b(B \u001b$BX)\u001b(B \u001b$BX*\u001b(B \u001b$BX+\u001b(B \u001b$BX,\u001b(B \u001b$BX-\u001b(B \u001b$BX.\u001b(B \u001b$BX/\u001b(B\n\u001b$BX0\u001b(B \u001b$BX1\u001b(B \u001b$BX2\u001b(B \u001b$BX3\u001b(B \u001b$BX4\u001b(B \u001b$BX5\u001b(B \u001b$BX6\u001b(B \u001b$BX7\u001b(B \u001b$BX8\u001b(B \u001b$BX9\u001b(B \u001b$BX:\u001b(B \u001b$BX;\u001b(B \u001b$BX<\u001b(B \u001b$BX=\u001b(B \u001b$BX>\u001b(B \u001b$BX?\u001b(B\n\u001b$BX@\u001b(B \u001b$BXA\u001b(B \u001b$BXB\u001b(B \u001b$BXC\u001b(B \u001b$BXD\u001b(B \u001b$BXE\u001b(B \u001b$BXF\u001b(B \u001b$BXG\u001b(B \u001b$BXH\u001b(B \u001b$BXI\u001b(B \u001b$BXJ\u001b(B \u001b$BXK\u001b(B \u001b$BXL\u001b(B \u001b$BXM\u001b(B \u001b$BXN\u001b(B \u001b$BXO\u001b(B\n\u001b$BXP\u001b(B \u001b$BXQ\u001b(B \u001b$BXR\u001b(B \u001b$BXS\u001b(B \u001b$BXT\u001b(B \u001b$BXU\u001b(B \u001b$BXV\u001b(B \u001b$BXW\u001b(B \u001b$BXX\u001b(B \u001b$BXY\u001b(B \u001b$BXZ\u001b(B \u001b$BX[\u001b(B \u001b$BX\\\u001b(B \u001b$BX]\u001b(B \u001b$BX^\u001b(B \u001b$BX_\u001b(B\n\u001b$BX`\u001b(B \u001b$BXa\u001b(B \u001b$BXb\u001b(B \u001b$BXc\u001b(B \u001b$BXd\u001b(B \u001b$BXe\u001b(B \u001b$BXf\u001b(B \u001b$BXg\u001b(B \u001b$BXh\u001b(B \u001b$BXi\u001b(B \u001b$BXj\u001b(B \u001b$BXk\u001b(B \u001b$BXl\u001b(B \u001b$BXm\u001b(B \u001b$BXn\u001b(B \u001b$BXo\u001b(B\n\u001b$BXp\u001b(B \u001b$BXq\u001b(B \u001b$BXr\u001b(B \u001b$BXs\u001b(B \u001b$BXt\u001b(B \u001b$BXu\u001b(B \u001b$BXv\u001b(B \u001b$BXw\u001b(B \u001b$BXx\u001b(B \u001b$BXy\u001b(B \u001b$BXz\u001b(B \u001b$BX{\u001b(B \u001b$BX|\u001b(B \u001b$BX}\u001b(B \u001b$BX~\u001b(B\n   \u001b$BY!\u001b(B \u001b$BY\"\u001b(B \u001b$BY#\u001b(B \u001b$BY$\u001b(B \u001b$BY%\u001b(B \u001b$BY&\u001b(B \u001b$BY'\u001b(B \u001b$BY(\u001b(B \u001b$BY)\u001b(B \u001b$BY*\u001b(B \u001b$BY+\u001b(B \u001b$BY,\u001b(B \u001b$BY-\u001b(B \u001b$BY.\u001b(B \u001b$BY/\u001b(B\n\u001b$BY0\u001b(B \u001b$BY1\u001b(B \u001b$BY2\u001b(B \u001b$BY3\u001b(B \u001b$BY4\u001b(B \u001b$BY5\u001b(B \u001b$BY6\u001b(B \u001b$BY7\u001b(B \u001b$BY8\u001b(B \u001b$BY9\u001b(B \u001b$BY:\u001b(B \u001b$BY;\u001b(B \u001b$BY<\u001b(B \u001b$BY=\u001b(B \u001b$BY>\u001b(B \u001b$BY?\u001b(B\n\u001b$BY@\u001b(B \u001b$BYA\u001b(B \u001b$BYB\u001b(B \u001b$BYC\u001b(B \u001b$BYD\u001b(B \u001b$BYE\u001b(B \u001b$BYF\u001b(B \u001b$BYG\u001b(B \u001b$BYH\u001b(B \u001b$BYI\u001b(B \u001b$BYJ\u001b(B \u001b$BYK\u001b(B \u001b$BYL\u001b(B \u001b$BYM\u001b(B \u001b$BYN\u001b(B \u001b$BYO\u001b(B\n\u001b$BYP\u001b(B \u001b$BYQ\u001b(B \u001b$BYR\u001b(B \u001b$BYS\u001b(B \u001b$BYT\u001b(B \u001b$BYU\u001b(B \u001b$BYV\u001b(B \u001b$BYW\u001b(B \u001b$BYX\u001b(B \u001b$BYY\u001b(B \u001b$BYZ\u001b(B \u001b$BY[\u001b(B \u001b$BY\\\u001b(B \u001b$BY]\u001b(B \u001b$BY^\u001b(B \u001b$BY_\u001b(B\n\u001b$BY`\u001b(B \u001b$BYa\u001b(B \u001b$BYb\u001b(B \u001b$BYc\u001b(B \u001b$BYd\u001b(B \u001b$BYe\u001b(B \u001b$BYf\u001b(B \u001b$BYg\u001b(B \u001b$BYh\u001b(B \u001b$BYi\u001b(B \u001b$BYj\u001b(B \u001b$BYk\u001b(B \u001b$BYl\u001b(B \u001b$BYm\u001b(B \u001b$BYn\u001b(B \u001b$BYo\u001b(B\n\u001b$BYp\u001b(B \u001b$BYq\u001b(B \u001b$BYr\u001b(B \u001b$BYs\u001b(B \u001b$BYt\u001b(B \u001b$BYu\u001b(B \u001b$BYv\u001b(B \u001b$BYw\u001b(B \u001b$BYx\u001b(B \u001b$BYy\u001b(B \u001b$BYz\u001b(B \u001b$BY{\u001b(B \u001b$BY|\u001b(B \u001b$BY}\u001b(B \u001b$BY~\u001b(B\n   \u001b$BZ!\u001b(B \u001b$BZ\"\u001b(B \u001b$BZ#\u001b(B \u001b$BZ$\u001b(B \u001b$BZ%\u001b(B \u001b$BZ&\u001b(B \u001b$BZ'\u001b(B \u001b$BZ(\u001b(B \u001b$BZ)\u001b(B \u001b$BZ*\u001b(B \u001b$BZ+\u001b(B \u001b$BZ,\u001b(B \u001b$BZ-\u001b(B \u001b$BZ.\u001b(B \u001b$BZ/\u001b(B\n\u001b$BZ0\u001b(B \u001b$BZ1\u001b(B \u001b$BZ2\u001b(B \u001b$BZ3\u001b(B \u001b$BZ4\u001b(B \u001b$BZ5\u001b(B \u001b$BZ6\u001b(B \u001b$BZ7\u001b(B \u001b$BZ8\u001b(B \u001b$BZ9\u001b(B \u001b$BZ:\u001b(B \u001b$BZ;\u001b(B \u001b$BZ<\u001b(B \u001b$BZ=\u001b(B \u001b$BZ>\u001b(B \u001b$BZ?\u001b(B\n\u001b$BZ@\u001b(B \u001b$BZA\u001b(B \u001b$BZB\u001b(B \u001b$BZC\u001b(B \u001b$BZD\u001b(B \u001b$BZE\u001b(B \u001b$BZF\u001b(B \u001b$BZG\u001b(B \u001b$BZH\u001b(B \u001b$BZI\u001b(B \u001b$BZJ\u001b(B \u001b$BZK\u001b(B \u001b$BZL\u001b(B \u001b$BZM\u001b(B \u001b$BZN\u001b(B \u001b$BZO\u001b(B\n\u001b$BZP\u001b(B \u001b$BZQ\u001b(B \u001b$BZR\u001b(B \u001b$BZS\u001b(B \u001b$BZT\u001b(B \u001b$BZU\u001b(B \u001b$BZV\u001b(B \u001b$BZW\u001b(B \u001b$BZX\u001b(B \u001b$BZY\u001b(B \u001b$BZZ\u001b(B \u001b$BZ[\u001b(B \u001b$BZ\\\u001b(B \u001b$BZ]\u001b(B \u001b$BZ^\u001b(B \u001b$BZ_\u001b(B\n\u001b$BZ`\u001b(B \u001b$BZa\u001b(B \u001b$BZb\u001b(B \u001b$BZc\u001b(B \u001b$BZd\u001b(B \u001b$BZe\u001b(B \u001b$BZf\u001b(B \u001b$BZg\u001b(B \u001b$BZh\u001b(B \u001b$BZi\u001b(B \u001b$BZj\u001b(B \u001b$BZk\u001b(B \u001b$BZl\u001b(B \u001b$BZm\u001b(B \u001b$BZn\u001b(B \u001b$BZo\u001b(B\n\u001b$BZp\u001b(B \u001b$BZq\u001b(B \u001b$BZr\u001b(B \u001b$BZs\u001b(B \u001b$BZt\u001b(B \u001b$BZu\u001b(B \u001b$BZv\u001b(B \u001b$BZw\u001b(B \u001b$BZx\u001b(B \u001b$BZy\u001b(B \u001b$BZz\u001b(B \u001b$BZ{\u001b(B \u001b$BZ|\u001b(B \u001b$BZ}\u001b(B \u001b$BZ~\u001b(B\n   \u001b$B[!\u001b(B \u001b$B[\"\u001b(B \u001b$B[#\u001b(B \u001b$B[$\u001b(B \u001b$B[%\u001b(B \u001b$B[&\u001b(B \u001b$B['\u001b(B \u001b$B[(\u001b(B \u001b$B[)\u001b(B \u001b$B[*\u001b(B \u001b$B[+\u001b(B \u001b$B[,\u001b(B \u001b$B[-\u001b(B \u001b$B[.\u001b(B \u001b$B[/\u001b(B\n\u001b$B[0\u001b(B \u001b$B[1\u001b(B \u001b$B[2\u001b(B \u001b$B[3\u001b(B \u001b$B[4\u001b(B \u001b$B[5\u001b(B \u001b$B[6\u001b(B \u001b$B[7\u001b(B \u001b$B[8\u001b(B \u001b$B[9\u001b(B \u001b$B[:\u001b(B \u001b$B[;\u001b(B \u001b$B[<\u001b(B \u001b$B[=\u001b(B \u001b$B[>\u001b(B \u001b$B[?\u001b(B\n\u001b$B[@\u001b(B \u001b$B[A\u001b(B \u001b$B[B\u001b(B \u001b$B[C\u001b(B \u001b$B[D\u001b(B \u001b$B[E\u001b(B \u001b$B[F\u001b(B \u001b$B[G\u001b(B \u001b$B[H\u001b(B \u001b$B[I\u001b(B \u001b$B[J\u001b(B \u001b$B[K\u001b(B \u001b$B[L\u001b(B \u001b$B[M\u001b(B \u001b$B[N\u001b(B \u001b$B[O\u001b(B\n\u001b$B[P\u001b(B \u001b$B[Q\u001b(B \u001b$B[R\u001b(B \u001b$B[S\u001b(B \u001b$B[T\u001b(B \u001b$B[U\u001b(B \u001b$B[V\u001b(B \u001b$B[W\u001b(B \u001b$B[X\u001b(B \u001b$B[Y\u001b(B \u001b$B[Z\u001b(B \u001b$B[[\u001b(B \u001b$B[\\\u001b(B \u001b$B[]\u001b(B \u001b$B[^\u001b(B \u001b$B[_\u001b(B\n\u001b$B[`\u001b(B \u001b$B[a\u001b(B \u001b$B[b\u001b(B \u001b$B[c\u001b(B \u001b$B[d\u001b(B \u001b$B[e\u001b(B \u001b$B[f\u001b(B \u001b$B[g\u001b(B \u001b$B[h\u001b(B \u001b$B[i\u001b(B \u001b$B[j\u001b(B \u001b$B[k\u001b(B \u001b$B[l\u001b(B \u001b$B[m\u001b(B \u001b$B[n\u001b(B \u001b$B[o\u001b(B\n\u001b$B[p\u001b(B \u001b$B[q\u001b(B \u001b$B[r\u001b(B \u001b$B[s\u001b(B \u001b$B[t\u001b(B \u001b$B[u\u001b(B \u001b$B[v\u001b(B \u001b$B[w\u001b(B \u001b$B[x\u001b(B \u001b$B[y\u001b(B \u001b$B[z\u001b(B \u001b$B[{\u001b(B \u001b$B[|\u001b(B \u001b$B[}\u001b(B \u001b$B[~\u001b(B\n   \u001b$B\\!\u001b(B \u001b$B\\\"\u001b(B \u001b$B\\#\u001b(B \u001b$B\\$\u001b(B \u001b$B\\%\u001b(B \u001b$B\\&\u001b(B \u001b$B\\'\u001b(B \u001b$B\\(\u001b(B \u001b$B\\)\u001b(B \u001b$B\\*\u001b(B \u001b$B\\+\u001b(B \u001b$B\\,\u001b(B \u001b$B\\-\u001b(B \u001b$B\\.\u001b(B \u001b$B\\/\u001b(B\n\u001b$B\\0\u001b(B \u001b$B\\1\u001b(B \u001b$B\\2\u001b(B \u001b$B\\3\u001b(B \u001b$B\\4\u001b(B \u001b$B\\5\u001b(B \u001b$B\\6\u001b(B \u001b$B\\7\u001b(B \u001b$B\\8\u001b(B \u001b$B\\9\u001b(B \u001b$B\\:\u001b(B \u001b$B\\;\u001b(B \u001b$B\\<\u001b(B \u001b$B\\=\u001b(B \u001b$B\\>\u001b(B \u001b$B\\?\u001b(B\n\u001b$B\\@\u001b(B \u001b$B\\A\u001b(B \u001b$B\\B\u001b(B \u001b$B\\C\u001b(B \u001b$B\\D\u001b(B \u001b$B\\E\u001b(B \u001b$B\\F\u001b(B \u001b$B\\G\u001b(B \u001b$B\\H\u001b(B \u001b$B\\I\u001b(B \u001b$B\\J\u001b(B \u001b$B\\K\u001b(B \u001b$B\\L\u001b(B \u001b$B\\M\u001b(B \u001b$B\\N\u001b(B \u001b$B\\O\u001b(B\n\u001b$B\\P\u001b(B \u001b$B\\Q\u001b(B \u001b$B\\R\u001b(B \u001b$B\\S\u001b(B \u001b$B\\T\u001b(B \u001b$B\\U\u001b(B \u001b$B\\V\u001b(B \u001b$B\\W\u001b(B \u001b$B\\X\u001b(B \u001b$B\\Y\u001b(B \u001b$B\\Z\u001b(B \u001b$B\\[\u001b(B \u001b$B\\\\\u001b(B \u001b$B\\]\u001b(B \u001b$B\\^\u001b(B \u001b$B\\_\u001b(B\n\u001b$B\\`\u001b(B \u001b$B\\a\u001b(B \u001b$B\\b\u001b(B \u001b$B\\c\u001b(B \u001b$B\\d\u001b(B \u001b$B\\e\u001b(B \u001b$B\\f\u001b(B \u001b$B\\g\u001b(B \u001b$B\\h\u001b(B \u001b$B\\i\u001b(B \u001b$B\\j\u001b(B \u001b$B\\k\u001b(B \u001b$B\\l\u001b(B \u001b$B\\m\u001b(B \u001b$B\\n\u001b(B \u001b$B\\o\u001b(B\n\u001b$B\\p\u001b(B \u001b$B\\q\u001b(B \u001b$B\\r\u001b(B \u001b$B\\s\u001b(B \u001b$B\\t\u001b(B \u001b$B\\u\u001b(B \u001b$B\\v\u001b(B \u001b$B\\w\u001b(B \u001b$B\\x\u001b(B \u001b$B\\y\u001b(B \u001b$B\\z\u001b(B \u001b$B\\{\u001b(B \u001b$B\\|\u001b(B \u001b$B\\}\u001b(B \u001b$B\\~\u001b(B\n   \u001b$B]!\u001b(B \u001b$B]\"\u001b(B \u001b$B]#\u001b(B \u001b$B]$\u001b(B \u001b$B]%\u001b(B \u001b$B]&\u001b(B \u001b$B]'\u001b(B \u001b$B](\u001b(B \u001b$B])\u001b(B \u001b$B]*\u001b(B \u001b$B]+\u001b(B \u001b$B],\u001b(B \u001b$B]-\u001b(B \u001b$B].\u001b(B \u001b$B]/\u001b(B\n\u001b$B]0\u001b(B \u001b$B]1\u001b(B \u001b$B]2\u001b(B \u001b$B]3\u001b(B \u001b$B]4\u001b(B \u001b$B]5\u001b(B \u001b$B]6\u001b(B \u001b$B]7\u001b(B \u001b$B]8\u001b(B \u001b$B]9\u001b(B \u001b$B]:\u001b(B \u001b$B];\u001b(B \u001b$B]<\u001b(B \u001b$B]=\u001b(B \u001b$B]>\u001b(B \u001b$B]?\u001b(B\n\u001b$B]@\u001b(B \u001b$B]A\u001b(B \u001b$B]B\u001b(B \u001b$B]C\u001b(B \u001b$B]D\u001b(B \u001b$B]E\u001b(B \u001b$B]F\u001b(B \u001b$B]G\u001b(B \u001b$B]H\u001b(B \u001b$B]I\u001b(B \u001b$B]J\u001b(B \u001b$B]K\u001b(B \u001b$B]L\u001b(B \u001b$B]M\u001b(B \u001b$B]N\u001b(B \u001b$B]O\u001b(B\n\u001b$B]P\u001b(B \u001b$B]Q\u001b(B \u001b$B]R\u001b(B \u001b$B]S\u001b(B \u001b$B]T\u001b(B \u001b$B]U\u001b(B \u001b$B]V\u001b(B \u001b$B]W\u001b(B \u001b$B]X\u001b(B \u001b$B]Y\u001b(B \u001b$B]Z\u001b(B \u001b$B][\u001b(B \u001b$B]\\\u001b(B \u001b$B]]\u001b(B \u001b$B]^\u001b(B \u001b$B]_\u001b(B\n\u001b$B]`\u001b(B \u001b$B]a\u001b(B \u001b$B]b\u001b(B \u001b$B]c\u001b(B \u001b$B]d\u001b(B \u001b$B]e\u001b(B \u001b$B]f\u001b(B \u001b$B]g\u001b(B \u001b$B]h\u001b(B \u001b$B]i\u001b(B \u001b$B]j\u001b(B \u001b$B]k\u001b(B \u001b$B]l\u001b(B \u001b$B]m\u001b(B \u001b$B]n\u001b(B \u001b$B]o\u001b(B\n\u001b$B]p\u001b(B \u001b$B]q\u001b(B \u001b$B]r\u001b(B \u001b$B]s\u001b(B \u001b$B]t\u001b(B \u001b$B]u\u001b(B \u001b$B]v\u001b(B \u001b$B]w\u001b(B \u001b$B]x\u001b(B \u001b$B]y\u001b(B \u001b$B]z\u001b(B \u001b$B]{\u001b(B \u001b$B]|\u001b(B \u001b$B]}\u001b(B \u001b$B]~\u001b(B\n   \u001b$B^!\u001b(B \u001b$B^\"\u001b(B \u001b$B^#\u001b(B \u001b$B^$\u001b(B \u001b$B^%\u001b(B \u001b$B^&\u001b(B \u001b$B^'\u001b(B \u001b$B^(\u001b(B \u001b$B^)\u001b(B \u001b$B^*\u001b(B \u001b$B^+\u001b(B \u001b$B^,\u001b(B \u001b$B^-\u001b(B \u001b$B^.\u001b(B \u001b$B^/\u001b(B\n\u001b$B^0\u001b(B \u001b$B^1\u001b(B \u001b$B^2\u001b(B \u001b$B^3\u001b(B \u001b$B^4\u001b(B \u001b$B^5\u001b(B \u001b$B^6\u001b(B \u001b$B^7\u001b(B \u001b$B^8\u001b(B \u001b$B^9\u001b(B \u001b$B^:\u001b(B \u001b$B^;\u001b(B \u001b$B^<\u001b(B \u001b$B^=\u001b(B \u001b$B^>\u001b(B \u001b$B^?\u001b(B\n\u001b$B^@\u001b(B \u001b$B^A\u001b(B \u001b$B^B\u001b(B \u001b$B^C\u001b(B \u001b$B^D\u001b(B \u001b$B^E\u001b(B \u001b$B^F\u001b(B \u001b$B^G\u001b(B \u001b$B^H\u001b(B \u001b$B^I\u001b(B \u001b$B^J\u001b(B \u001b$B^K\u001b(B \u001b$B^L\u001b(B \u001b$B^M\u001b(B \u001b$B^N\u001b(B \u001b$B^O\u001b(B\n\u001b$B^P\u001b(B \u001b$B^Q\u001b(B \u001b$B^R\u001b(B \u001b$B^S\u001b(B \u001b$B^T\u001b(B \u001b$B^U\u001b(B \u001b$B^V\u001b(B \u001b$B^W\u001b(B \u001b$B^X\u001b(B \u001b$B^Y\u001b(B \u001b$B^Z\u001b(B \u001b$B^[\u001b(B \u001b$B^\\\u001b(B \u001b$B^]\u001b(B \u001b$B^^\u001b(B \u001b$B^_\u001b(B\n\u001b$B^`\u001b(B \u001b$B^a\u001b(B \u001b$B^b\u001b(B \u001b$B^c\u001b(B \u001b$B^d\u001b(B \u001b$B^e\u001b(B \u001b$B^f\u001b(B \u001b$B^g\u001b(B \u001b$B^h\u001b(B \u001b$B^i\u001b(B \u001b$B^j\u001b(B \u001b$B^k\u001b(B \u001b$B^l\u001b(B \u001b$B^m\u001b(B \u001b$B^n\u001b(B \u001b$B^o\u001b(B\n\u001b$B^p\u001b(B \u001b$B^q\u001b(B \u001b$B^r\u001b(B \u001b$B^s\u001b(B \u001b$B^t\u001b(B \u001b$B^u\u001b(B \u001b$B^v\u001b(B \u001b$B^w\u001b(B \u001b$B^x\u001b(B \u001b$B^y\u001b(B \u001b$B^z\u001b(B \u001b$B^{\u001b(B \u001b$B^|\u001b(B \u001b$B^}\u001b(B \u001b$B^~\u001b(B\n   \u001b$B_!\u001b(B \u001b$B_\"\u001b(B \u001b$B_#\u001b(B \u001b$B_$\u001b(B \u001b$B_%\u001b(B \u001b$B_&\u001b(B \u001b$B_'\u001b(B \u001b$B_(\u001b(B \u001b$B_)\u001b(B \u001b$B_*\u001b(B \u001b$B_+\u001b(B \u001b$B_,\u001b(B \u001b$B_-\u001b(B \u001b$B_.\u001b(B \u001b$B_/\u001b(B\n\u001b$B_0\u001b(B \u001b$B_1\u001b(B \u001b$B_2\u001b(B \u001b$B_3\u001b(B \u001b$B_4\u001b(B \u001b$B_5\u001b(B \u001b$B_6\u001b(B \u001b$B_7\u001b(B \u001b$B_8\u001b(B \u001b$B_9\u001b(B \u001b$B_:\u001b(B \u001b$B_;\u001b(B \u001b$B_<\u001b(B \u001b$B_=\u001b(B \u001b$B_>\u001b(B \u001b$B_?\u001b(B\n\u001b$B_@\u001b(B \u001b$B_A\u001b(B \u001b$B_B\u001b(B \u001b$B_C\u001b(B \u001b$B_D\u001b(B \u001b$B_E\u001b(B \u001b$B_F\u001b(B \u001b$B_G\u001b(B \u001b$B_H\u001b(B \u001b$B_I\u001b(B \u001b$B_J\u001b(B \u001b$B_K\u001b(B \u001b$B_L\u001b(B \u001b$B_M\u001b(B \u001b$B_N\u001b(B \u001b$B_O\u001b(B\n\u001b$B_P\u001b(B \u001b$B_Q\u001b(B \u001b$B_R\u001b(B \u001b$B_S\u001b(B \u001b$B_T\u001b(B \u001b$B_U\u001b(B \u001b$B_V\u001b(B \u001b$B_W\u001b(B \u001b$B_X\u001b(B \u001b$B_Y\u001b(B \u001b$B_Z\u001b(B \u001b$B_[\u001b(B \u001b$B_\\\u001b(B \u001b$B_]\u001b(B \u001b$B_^\u001b(B \u001b$B__\u001b(B\n\u001b$B_`\u001b(B \u001b$B_a\u001b(B \u001b$B_b\u001b(B \u001b$B_c\u001b(B \u001b$B_d\u001b(B \u001b$B_e\u001b(B \u001b$B_f\u001b(B \u001b$B_g\u001b(B \u001b$B_h\u001b(B \u001b$B_i\u001b(B \u001b$B_j\u001b(B \u001b$B_k\u001b(B \u001b$B_l\u001b(B \u001b$B_m\u001b(B \u001b$B_n\u001b(B \u001b$B_o\u001b(B\n\u001b$B_p\u001b(B \u001b$B_q\u001b(B \u001b$B_r\u001b(B \u001b$B_s\u001b(B \u001b$B_t\u001b(B \u001b$B_u\u001b(B \u001b$B_v\u001b(B \u001b$B_w\u001b(B \u001b$B_x\u001b(B \u001b$B_y\u001b(B \u001b$B_z\u001b(B \u001b$B_{\u001b(B \u001b$B_|\u001b(B \u001b$B_}\u001b(B \u001b$B_~\u001b(B\n   \u001b$B`!\u001b(B \u001b$B`\"\u001b(B \u001b$B`#\u001b(B \u001b$B`$\u001b(B \u001b$B`%\u001b(B \u001b$B`&\u001b(B \u001b$B`'\u001b(B \u001b$B`(\u001b(B \u001b$B`)\u001b(B \u001b$B`*\u001b(B \u001b$B`+\u001b(B \u001b$B`,\u001b(B \u001b$B`-\u001b(B \u001b$B`.\u001b(B \u001b$B`/\u001b(B\n\u001b$B`0\u001b(B \u001b$B`1\u001b(B \u001b$B`2\u001b(B \u001b$B`3\u001b(B \u001b$B`4\u001b(B \u001b$B`5\u001b(B \u001b$B`6\u001b(B \u001b$B`7\u001b(B \u001b$B`8\u001b(B \u001b$B`9\u001b(B \u001b$B`:\u001b(B \u001b$B`;\u001b(B \u001b$B`<\u001b(B \u001b$B`=\u001b(B \u001b$B`>\u001b(B \u001b$B`?\u001b(B\n\u001b$B`@\u001b(B \u001b$B`A\u001b(B \u001b$B`B\u001b(B \u001b$B`C\u001b(B \u001b$B`D\u001b(B \u001b$B`E\u001b(B \u001b$B`F\u001b(B \u001b$B`G\u001b(B \u001b$B`H\u001b(B \u001b$B`I\u001b(B \u001b$B`J\u001b(B \u001b$B`K\u001b(B \u001b$B`L\u001b(B \u001b$B`M\u001b(B \u001b$B`N\u001b(B \u001b$B`O\u001b(B\n\u001b$B`P\u001b(B \u001b$B`Q\u001b(B \u001b$B`R\u001b(B \u001b$B`S\u001b(B \u001b$B`T\u001b(B \u001b$B`U\u001b(B \u001b$B`V\u001b(B \u001b$B`W\u001b(B \u001b$B`X\u001b(B \u001b$B`Y\u001b(B \u001b$B`Z\u001b(B \u001b$B`[\u001b(B \u001b$B`\\\u001b(B \u001b$B`]\u001b(B \u001b$B`^\u001b(B \u001b$B`_\u001b(B\n\u001b$B``\u001b(B \u001b$B`a\u001b(B \u001b$B`b\u001b(B \u001b$B`c\u001b(B \u001b$B`d\u001b(B \u001b$B`e\u001b(B \u001b$B`f\u001b(B \u001b$B`g\u001b(B \u001b$B`h\u001b(B \u001b$B`i\u001b(B \u001b$B`j\u001b(B \u001b$B`k\u001b(B \u001b$B`l\u001b(B \u001b$B`m\u001b(B \u001b$B`n\u001b(B \u001b$B`o\u001b(B\n\u001b$B`p\u001b(B \u001b$B`q\u001b(B \u001b$B`r\u001b(B \u001b$B`s\u001b(B \u001b$B`t\u001b(B \u001b$B`u\u001b(B \u001b$B`v\u001b(B \u001b$B`w\u001b(B \u001b$B`x\u001b(B \u001b$B`y\u001b(B \u001b$B`z\u001b(B \u001b$B`{\u001b(B \u001b$B`|\u001b(B \u001b$B`}\u001b(B \u001b$B`~\u001b(B\n   \u001b$Ba!\u001b(B \u001b$Ba\"\u001b(B \u001b$Ba#\u001b(B \u001b$Ba$\u001b(B \u001b$Ba%\u001b(B \u001b$Ba&\u001b(B \u001b$Ba'\u001b(B \u001b$Ba(\u001b(B \u001b$Ba)\u001b(B \u001b$Ba*\u001b(B \u001b$Ba+\u001b(B \u001b$Ba,\u001b(B \u001b$Ba-\u001b(B \u001b$Ba.\u001b(B \u001b$Ba/\u001b(B\n\u001b$Ba0\u001b(B \u001b$Ba1\u001b(B \u001b$Ba2\u001b(B \u001b$Ba3\u001b(B \u001b$Ba4\u001b(B \u001b$Ba5\u001b(B \u001b$Ba6\u001b(B \u001b$Ba7\u001b(B \u001b$Ba8\u001b(B \u001b$Ba9\u001b(B \u001b$Ba:\u001b(B \u001b$Ba;\u001b(B \u001b$Ba<\u001b(B \u001b$Ba=\u001b(B \u001b$Ba>\u001b(B \u001b$Ba?\u001b(B\n\u001b$Ba@\u001b(B \u001b$BaA\u001b(B \u001b$BaB\u001b(B \u001b$BaC\u001b(B \u001b$BaD\u001b(B \u001b$BaE\u001b(B \u001b$BaF\u001b(B \u001b$BaG\u001b(B \u001b$BaH\u001b(B \u001b$BaI\u001b(B \u001b$BaJ\u001b(B \u001b$BaK\u001b(B \u001b$BaL\u001b(B \u001b$BaM\u001b(B \u001b$BaN\u001b(B \u001b$BaO\u001b(B\n\u001b$BaP\u001b(B \u001b$BaQ\u001b(B \u001b$BaR\u001b(B \u001b$BaS\u001b(B \u001b$BaT\u001b(B \u001b$BaU\u001b(B \u001b$BaV\u001b(B \u001b$BaW\u001b(B \u001b$BaX\u001b(B \u001b$BaY\u001b(B \u001b$BaZ\u001b(B \u001b$Ba[\u001b(B \u001b$Ba\\\u001b(B \u001b$Ba]\u001b(B \u001b$Ba^\u001b(B \u001b$Ba_\u001b(B\n\u001b$Ba`\u001b(B \u001b$Baa\u001b(B \u001b$Bab\u001b(B \u001b$Bac\u001b(B \u001b$Bad\u001b(B \u001b$Bae\u001b(B \u001b$Baf\u001b(B \u001b$Bag\u001b(B \u001b$Bah\u001b(B \u001b$Bai\u001b(B \u001b$Baj\u001b(B \u001b$Bak\u001b(B \u001b$Bal\u001b(B \u001b$Bam\u001b(B \u001b$Ban\u001b(B \u001b$Bao\u001b(B\n\u001b$Bap\u001b(B \u001b$Baq\u001b(B \u001b$Bar\u001b(B \u001b$Bas\u001b(B \u001b$Bat\u001b(B \u001b$Bau\u001b(B \u001b$Bav\u001b(B \u001b$Baw\u001b(B \u001b$Bax\u001b(B \u001b$Bay\u001b(B \u001b$Baz\u001b(B \u001b$Ba{\u001b(B \u001b$Ba|\u001b(B \u001b$Ba}\u001b(B \u001b$Ba~\u001b(B\n   \u001b$Bb!\u001b(B \u001b$Bb\"\u001b(B \u001b$Bb#\u001b(B \u001b$Bb$\u001b(B \u001b$Bb%\u001b(B \u001b$Bb&\u001b(B \u001b$Bb'\u001b(B \u001b$Bb(\u001b(B \u001b$Bb)\u001b(B \u001b$Bb*\u001b(B \u001b$Bb+\u001b(B \u001b$Bb,\u001b(B \u001b$Bb-\u001b(B \u001b$Bb.\u001b(B \u001b$Bb/\u001b(B\n\u001b$Bb0\u001b(B \u001b$Bb1\u001b(B \u001b$Bb2\u001b(B \u001b$Bb3\u001b(B \u001b$Bb4\u001b(B \u001b$Bb5\u001b(B \u001b$Bb6\u001b(B \u001b$Bb7\u001b(B \u001b$Bb8\u001b(B \u001b$Bb9\u001b(B \u001b$Bb:\u001b(B \u001b$Bb;\u001b(B \u001b$Bb<\u001b(B \u001b$Bb=\u001b(B \u001b$Bb>\u001b(B \u001b$Bb?\u001b(B\n\u001b$Bb@\u001b(B \u001b$BbA\u001b(B \u001b$BbB\u001b(B \u001b$BbC\u001b(B \u001b$BbD\u001b(B \u001b$BbE\u001b(B \u001b$BbF\u001b(B \u001b$BbG\u001b(B \u001b$BbH\u001b(B \u001b$BbI\u001b(B \u001b$BbJ\u001b(B \u001b$BbK\u001b(B \u001b$BbL\u001b(B \u001b$BbM\u001b(B \u001b$BbN\u001b(B \u001b$BbO\u001b(B\n\u001b$BbP\u001b(B \u001b$BbQ\u001b(B \u001b$BbR\u001b(B \u001b$BbS\u001b(B \u001b$BbT\u001b(B \u001b$BbU\u001b(B \u001b$BbV\u001b(B \u001b$BbW\u001b(B \u001b$BbX\u001b(B \u001b$BbY\u001b(B \u001b$BbZ\u001b(B \u001b$Bb[\u001b(B \u001b$Bb\\\u001b(B \u001b$Bb]\u001b(B \u001b$Bb^\u001b(B \u001b$Bb_\u001b(B\n\u001b$Bb`\u001b(B \u001b$Bba\u001b(B \u001b$Bbb\u001b(B \u001b$Bbc\u001b(B \u001b$Bbd\u001b(B \u001b$Bbe\u001b(B \u001b$Bbf\u001b(B \u001b$Bbg\u001b(B \u001b$Bbh\u001b(B \u001b$Bbi\u001b(B \u001b$Bbj\u001b(B \u001b$Bbk\u001b(B \u001b$Bbl\u001b(B \u001b$Bbm\u001b(B \u001b$Bbn\u001b(B \u001b$Bbo\u001b(B\n\u001b$Bbp\u001b(B \u001b$Bbq\u001b(B \u001b$Bbr\u001b(B \u001b$Bbs\u001b(B \u001b$Bbt\u001b(B \u001b$Bbu\u001b(B \u001b$Bbv\u001b(B \u001b$Bbw\u001b(B \u001b$Bbx\u001b(B \u001b$Bby\u001b(B \u001b$Bbz\u001b(B \u001b$Bb{\u001b(B \u001b$Bb|\u001b(B \u001b$Bb}\u001b(B \u001b$Bb~\u001b(B\n   \u001b$Bc!\u001b(B \u001b$Bc\"\u001b(B \u001b$Bc#\u001b(B \u001b$Bc$\u001b(B \u001b$Bc%\u001b(B \u001b$Bc&\u001b(B \u001b$Bc'\u001b(B \u001b$Bc(\u001b(B \u001b$Bc)\u001b(B \u001b$Bc*\u001b(B \u001b$Bc+\u001b(B \u001b$Bc,\u001b(B \u001b$Bc-\u001b(B \u001b$Bc.\u001b(B \u001b$Bc/\u001b(B\n\u001b$Bc0\u001b(B \u001b$Bc1\u001b(B \u001b$Bc2\u001b(B \u001b$Bc3\u001b(B \u001b$Bc4\u001b(B \u001b$Bc5\u001b(B \u001b$Bc6\u001b(B \u001b$Bc7\u001b(B \u001b$Bc8\u001b(B \u001b$Bc9\u001b(B \u001b$Bc:\u001b(B \u001b$Bc;\u001b(B \u001b$Bc<\u001b(B \u001b$Bc=\u001b(B \u001b$Bc>\u001b(B \u001b$Bc?\u001b(B\n\u001b$Bc@\u001b(B \u001b$BcA\u001b(B \u001b$BcB\u001b(B \u001b$BcC\u001b(B \u001b$BcD\u001b(B \u001b$BcE\u001b(B \u001b$BcF\u001b(B \u001b$BcG\u001b(B \u001b$BcH\u001b(B \u001b$BcI\u001b(B \u001b$BcJ\u001b(B \u001b$BcK\u001b(B \u001b$BcL\u001b(B \u001b$BcM\u001b(B \u001b$BcN\u001b(B \u001b$BcO\u001b(B\n\u001b$BcP\u001b(B \u001b$BcQ\u001b(B \u001b$BcR\u001b(B \u001b$BcS\u001b(B \u001b$BcT\u001b(B \u001b$BcU\u001b(B \u001b$BcV\u001b(B \u001b$BcW\u001b(B \u001b$BcX\u001b(B \u001b$BcY\u001b(B \u001b$BcZ\u001b(B \u001b$Bc[\u001b(B \u001b$Bc\\\u001b(B \u001b$Bc]\u001b(B \u001b$Bc^\u001b(B \u001b$Bc_\u001b(B\n\u001b$Bc`\u001b(B \u001b$Bca\u001b(B \u001b$Bcb\u001b(B \u001b$Bcc\u001b(B \u001b$Bcd\u001b(B \u001b$Bce\u001b(B \u001b$Bcf\u001b(B \u001b$Bcg\u001b(B \u001b$Bch\u001b(B \u001b$Bci\u001b(B \u001b$Bcj\u001b(B \u001b$Bck\u001b(B \u001b$Bcl\u001b(B \u001b$Bcm\u001b(B \u001b$Bcn\u001b(B \u001b$Bco\u001b(B\n\u001b$Bcp\u001b(B \u001b$Bcq\u001b(B \u001b$Bcr\u001b(B \u001b$Bcs\u001b(B \u001b$Bct\u001b(B \u001b$Bcu\u001b(B \u001b$Bcv\u001b(B \u001b$Bcw\u001b(B \u001b$Bcx\u001b(B \u001b$Bcy\u001b(B \u001b$Bcz\u001b(B \u001b$Bc{\u001b(B \u001b$Bc|\u001b(B \u001b$Bc}\u001b(B \u001b$Bc~\u001b(B\n   \u001b$Bd!\u001b(B \u001b$Bd\"\u001b(B \u001b$Bd#\u001b(B \u001b$Bd$\u001b(B \u001b$Bd%\u001b(B \u001b$Bd&\u001b(B \u001b$Bd'\u001b(B \u001b$Bd(\u001b(B \u001b$Bd)\u001b(B \u001b$Bd*\u001b(B \u001b$Bd+\u001b(B \u001b$Bd,\u001b(B \u001b$Bd-\u001b(B \u001b$Bd.\u001b(B \u001b$Bd/\u001b(B\n\u001b$Bd0\u001b(B \u001b$Bd1\u001b(B \u001b$Bd2\u001b(B \u001b$Bd3\u001b(B \u001b$Bd4\u001b(B \u001b$Bd5\u001b(B \u001b$Bd6\u001b(B \u001b$Bd7\u001b(B \u001b$Bd8\u001b(B \u001b$Bd9\u001b(B \u001b$Bd:\u001b(B \u001b$Bd;\u001b(B \u001b$Bd<\u001b(B \u001b$Bd=\u001b(B \u001b$Bd>\u001b(B \u001b$Bd?\u001b(B\n\u001b$Bd@\u001b(B \u001b$BdA\u001b(B \u001b$BdB\u001b(B \u001b$BdC\u001b(B \u001b$BdD\u001b(B \u001b$BdE\u001b(B \u001b$BdF\u001b(B \u001b$BdG\u001b(B \u001b$BdH\u001b(B \u001b$BdI\u001b(B \u001b$BdJ\u001b(B \u001b$BdK\u001b(B \u001b$BdL\u001b(B \u001b$BdM\u001b(B \u001b$BdN\u001b(B \u001b$BdO\u001b(B\n\u001b$BdP\u001b(B \u001b$BdQ\u001b(B \u001b$BdR\u001b(B \u001b$BdS\u001b(B \u001b$BdT\u001b(B \u001b$BdU\u001b(B \u001b$BdV\u001b(B \u001b$BdW\u001b(B \u001b$BdX\u001b(B \u001b$BdY\u001b(B \u001b$BdZ\u001b(B \u001b$Bd[\u001b(B \u001b$Bd\\\u001b(B \u001b$Bd]\u001b(B \u001b$Bd^\u001b(B \u001b$Bd_\u001b(B\n\u001b$Bd`\u001b(B \u001b$Bda\u001b(B \u001b$Bdb\u001b(B \u001b$Bdc\u001b(B \u001b$Bdd\u001b(B \u001b$Bde\u001b(B \u001b$Bdf\u001b(B \u001b$Bdg\u001b(B \u001b$Bdh\u001b(B \u001b$Bdi\u001b(B \u001b$Bdj\u001b(B \u001b$Bdk\u001b(B \u001b$Bdl\u001b(B \u001b$Bdm\u001b(B \u001b$Bdn\u001b(B \u001b$Bdo\u001b(B\n\u001b$Bdp\u001b(B \u001b$Bdq\u001b(B \u001b$Bdr\u001b(B \u001b$Bds\u001b(B \u001b$Bdt\u001b(B \u001b$Bdu\u001b(B \u001b$Bdv\u001b(B \u001b$Bdw\u001b(B \u001b$Bdx\u001b(B \u001b$Bdy\u001b(B \u001b$Bdz\u001b(B \u001b$Bd{\u001b(B \u001b$Bd|\u001b(B \u001b$Bd}\u001b(B \u001b$Bd~\u001b(B\n   \u001b$Be!\u001b(B \u001b$Be\"\u001b(B \u001b$Be#\u001b(B \u001b$Be$\u001b(B \u001b$Be%\u001b(B \u001b$Be&\u001b(B \u001b$Be'\u001b(B \u001b$Be(\u001b(B \u001b$Be)\u001b(B \u001b$Be*\u001b(B \u001b$Be+\u001b(B \u001b$Be,\u001b(B \u001b$Be-\u001b(B \u001b$Be.\u001b(B \u001b$Be/\u001b(B\n\u001b$Be0\u001b(B \u001b$Be1\u001b(B \u001b$Be2\u001b(B \u001b$Be3\u001b(B \u001b$Be4\u001b(B \u001b$Be5\u001b(B \u001b$Be6\u001b(B \u001b$Be7\u001b(B \u001b$Be8\u001b(B \u001b$Be9\u001b(B \u001b$Be:\u001b(B \u001b$Be;\u001b(B \u001b$Be<\u001b(B \u001b$Be=\u001b(B \u001b$Be>\u001b(B \u001b$Be?\u001b(B\n\u001b$Be@\u001b(B \u001b$BeA\u001b(B \u001b$BeB\u001b(B \u001b$BeC\u001b(B \u001b$BeD\u001b(B \u001b$BeE\u001b(B \u001b$BeF\u001b(B \u001b$BeG\u001b(B \u001b$BeH\u001b(B \u001b$BeI\u001b(B \u001b$BeJ\u001b(B \u001b$BeK\u001b(B \u001b$BeL\u001b(B \u001b$BeM\u001b(B \u001b$BeN\u001b(B \u001b$BeO\u001b(B\n\u001b$BeP\u001b(B \u001b$BeQ\u001b(B \u001b$BeR\u001b(B \u001b$BeS\u001b(B \u001b$BeT\u001b(B \u001b$BeU\u001b(B \u001b$BeV\u001b(B \u001b$BeW\u001b(B \u001b$BeX\u001b(B \u001b$BeY\u001b(B \u001b$BeZ\u001b(B \u001b$Be[\u001b(B \u001b$Be\\\u001b(B \u001b$Be]\u001b(B \u001b$Be^\u001b(B \u001b$Be_\u001b(B\n\u001b$Be`\u001b(B \u001b$Bea\u001b(B \u001b$Beb\u001b(B \u001b$Bec\u001b(B \u001b$Bed\u001b(B \u001b$Bee\u001b(B \u001b$Bef\u001b(B \u001b$Beg\u001b(B \u001b$Beh\u001b(B \u001b$Bei\u001b(B \u001b$Bej\u001b(B \u001b$Bek\u001b(B \u001b$Bel\u001b(B \u001b$Bem\u001b(B \u001b$Ben\u001b(B \u001b$Beo\u001b(B\n\u001b$Bep\u001b(B \u001b$Beq\u001b(B \u001b$Ber\u001b(B \u001b$Bes\u001b(B \u001b$Bet\u001b(B \u001b$Beu\u001b(B \u001b$Bev\u001b(B \u001b$Bew\u001b(B \u001b$Bex\u001b(B \u001b$Bey\u001b(B \u001b$Bez\u001b(B \u001b$Be{\u001b(B \u001b$Be|\u001b(B \u001b$Be}\u001b(B \u001b$Be~\u001b(B\n   \u001b$Bf!\u001b(B \u001b$Bf\"\u001b(B \u001b$Bf#\u001b(B \u001b$Bf$\u001b(B \u001b$Bf%\u001b(B \u001b$Bf&\u001b(B \u001b$Bf'\u001b(B \u001b$Bf(\u001b(B \u001b$Bf)\u001b(B \u001b$Bf*\u001b(B \u001b$Bf+\u001b(B \u001b$Bf,\u001b(B \u001b$Bf-\u001b(B \u001b$Bf.\u001b(B \u001b$Bf/\u001b(B\n\u001b$Bf0\u001b(B \u001b$Bf1\u001b(B \u001b$Bf2\u001b(B \u001b$Bf3\u001b(B \u001b$Bf4\u001b(B \u001b$Bf5\u001b(B \u001b$Bf6\u001b(B \u001b$Bf7\u001b(B \u001b$Bf8\u001b(B \u001b$Bf9\u001b(B \u001b$Bf:\u001b(B \u001b$Bf;\u001b(B \u001b$Bf<\u001b(B \u001b$Bf=\u001b(B \u001b$Bf>\u001b(B \u001b$Bf?\u001b(B\n\u001b$Bf@\u001b(B \u001b$BfA\u001b(B \u001b$BfB\u001b(B \u001b$BfC\u001b(B \u001b$BfD\u001b(B \u001b$BfE\u001b(B \u001b$BfF\u001b(B \u001b$BfG\u001b(B \u001b$BfH\u001b(B \u001b$BfI\u001b(B \u001b$BfJ\u001b(B \u001b$BfK\u001b(B \u001b$BfL\u001b(B \u001b$BfM\u001b(B \u001b$BfN\u001b(B \u001b$BfO\u001b(B\n\u001b$BfP\u001b(B \u001b$BfQ\u001b(B \u001b$BfR\u001b(B \u001b$BfS\u001b(B \u001b$BfT\u001b(B \u001b$BfU\u001b(B \u001b$BfV\u001b(B \u001b$BfW\u001b(B \u001b$BfX\u001b(B \u001b$BfY\u001b(B \u001b$BfZ\u001b(B \u001b$Bf[\u001b(B \u001b$Bf\\\u001b(B \u001b$Bf]\u001b(B \u001b$Bf^\u001b(B \u001b$Bf_\u001b(B\n\u001b$Bf`\u001b(B \u001b$Bfa\u001b(B \u001b$Bfb\u001b(B \u001b$Bfc\u001b(B \u001b$Bfd\u001b(B \u001b$Bfe\u001b(B \u001b$Bff\u001b(B \u001b$Bfg\u001b(B \u001b$Bfh\u001b(B \u001b$Bfi\u001b(B \u001b$Bfj\u001b(B \u001b$Bfk\u001b(B \u001b$Bfl\u001b(B \u001b$Bfm\u001b(B \u001b$Bfn\u001b(B \u001b$Bfo\u001b(B\n\u001b$Bfp\u001b(B \u001b$Bfq\u001b(B \u001b$Bfr\u001b(B \u001b$Bfs\u001b(B \u001b$Bft\u001b(B \u001b$Bfu\u001b(B \u001b$Bfv\u001b(B \u001b$Bfw\u001b(B \u001b$Bfx\u001b(B \u001b$Bfy\u001b(B \u001b$Bfz\u001b(B \u001b$Bf{\u001b(B \u001b$Bf|\u001b(B \u001b$Bf}\u001b(B \u001b$Bf~\u001b(B\n   \u001b$Bg!\u001b(B \u001b$Bg\"\u001b(B \u001b$Bg#\u001b(B \u001b$Bg$\u001b(B \u001b$Bg%\u001b(B \u001b$Bg&\u001b(B \u001b$Bg'\u001b(B \u001b$Bg(\u001b(B \u001b$Bg)\u001b(B \u001b$Bg*\u001b(B \u001b$Bg+\u001b(B \u001b$Bg,\u001b(B \u001b$Bg-\u001b(B \u001b$Bg.\u001b(B \u001b$Bg/\u001b(B\n\u001b$Bg0\u001b(B \u001b$Bg1\u001b(B \u001b$Bg2\u001b(B \u001b$Bg3\u001b(B \u001b$Bg4\u001b(B \u001b$Bg5\u001b(B \u001b$Bg6\u001b(B \u001b$Bg7\u001b(B \u001b$Bg8\u001b(B \u001b$Bg9\u001b(B \u001b$Bg:\u001b(B \u001b$Bg;\u001b(B \u001b$Bg<\u001b(B \u001b$Bg=\u001b(B \u001b$Bg>\u001b(B \u001b$Bg?\u001b(B\n\u001b$Bg@\u001b(B \u001b$BgA\u001b(B \u001b$BgB\u001b(B \u001b$BgC\u001b(B \u001b$BgD\u001b(B \u001b$BgE\u001b(B \u001b$BgF\u001b(B \u001b$BgG\u001b(B \u001b$BgH\u001b(B \u001b$BgI\u001b(B \u001b$BgJ\u001b(B \u001b$BgK\u001b(B \u001b$BgL\u001b(B \u001b$BgM\u001b(B \u001b$BgN\u001b(B \u001b$BgO\u001b(B\n\u001b$BgP\u001b(B \u001b$BgQ\u001b(B \u001b$BgR\u001b(B \u001b$BgS\u001b(B \u001b$BgT\u001b(B \u001b$BgU\u001b(B \u001b$BgV\u001b(B \u001b$BgW\u001b(B \u001b$BgX\u001b(B \u001b$BgY\u001b(B \u001b$BgZ\u001b(B \u001b$Bg[\u001b(B \u001b$Bg\\\u001b(B \u001b$Bg]\u001b(B \u001b$Bg^\u001b(B \u001b$Bg_\u001b(B\n\u001b$Bg`\u001b(B \u001b$Bga\u001b(B \u001b$Bgb\u001b(B \u001b$Bgc\u001b(B \u001b$Bgd\u001b(B \u001b$Bge\u001b(B \u001b$Bgf\u001b(B \u001b$Bgg\u001b(B \u001b$Bgh\u001b(B \u001b$Bgi\u001b(B \u001b$Bgj\u001b(B \u001b$Bgk\u001b(B \u001b$Bgl\u001b(B \u001b$Bgm\u001b(B \u001b$Bgn\u001b(B \u001b$Bgo\u001b(B\n\u001b$Bgp\u001b(B \u001b$Bgq\u001b(B \u001b$Bgr\u001b(B \u001b$Bgs\u001b(B \u001b$Bgt\u001b(B \u001b$Bgu\u001b(B \u001b$Bgv\u001b(B \u001b$Bgw\u001b(B \u001b$Bgx\u001b(B \u001b$Bgy\u001b(B \u001b$Bgz\u001b(B \u001b$Bg{\u001b(B \u001b$Bg|\u001b(B \u001b$Bg}\u001b(B \u001b$Bg~\u001b(B\n   \u001b$Bh!\u001b(B \u001b$Bh\"\u001b(B \u001b$Bh#\u001b(B \u001b$Bh$\u001b(B \u001b$Bh%\u001b(B \u001b$Bh&\u001b(B \u001b$Bh'\u001b(B \u001b$Bh(\u001b(B \u001b$Bh)\u001b(B \u001b$Bh*\u001b(B \u001b$Bh+\u001b(B \u001b$Bh,\u001b(B \u001b$Bh-\u001b(B \u001b$Bh.\u001b(B \u001b$Bh/\u001b(B\n\u001b$Bh0\u001b(B \u001b$Bh1\u001b(B \u001b$Bh2\u001b(B \u001b$Bh3\u001b(B \u001b$Bh4\u001b(B \u001b$Bh5\u001b(B \u001b$Bh6\u001b(B \u001b$Bh7\u001b(B \u001b$Bh8\u001b(B \u001b$Bh9\u001b(B \u001b$Bh:\u001b(B \u001b$Bh;\u001b(B \u001b$Bh<\u001b(B \u001b$Bh=\u001b(B \u001b$Bh>\u001b(B \u001b$Bh?\u001b(B\n\u001b$Bh@\u001b(B \u001b$BhA\u001b(B \u001b$BhB\u001b(B \u001b$BhC\u001b(B \u001b$BhD\u001b(B \u001b$BhE\u001b(B \u001b$BhF\u001b(B \u001b$BhG\u001b(B \u001b$BhH\u001b(B \u001b$BhI\u001b(B \u001b$BhJ\u001b(B \u001b$BhK\u001b(B \u001b$BhL\u001b(B \u001b$BhM\u001b(B \u001b$BhN\u001b(B \u001b$BhO\u001b(B\n\u001b$BhP\u001b(B \u001b$BhQ\u001b(B \u001b$BhR\u001b(B \u001b$BhS\u001b(B \u001b$BhT\u001b(B \u001b$BhU\u001b(B \u001b$BhV\u001b(B \u001b$BhW\u001b(B \u001b$BhX\u001b(B \u001b$BhY\u001b(B \u001b$BhZ\u001b(B \u001b$Bh[\u001b(B \u001b$Bh\\\u001b(B \u001b$Bh]\u001b(B \u001b$Bh^\u001b(B \u001b$Bh_\u001b(B\n\u001b$Bh`\u001b(B \u001b$Bha\u001b(B \u001b$Bhb\u001b(B \u001b$Bhc\u001b(B \u001b$Bhd\u001b(B \u001b$Bhe\u001b(B \u001b$Bhf\u001b(B \u001b$Bhg\u001b(B \u001b$Bhh\u001b(B \u001b$Bhi\u001b(B \u001b$Bhj\u001b(B \u001b$Bhk\u001b(B \u001b$Bhl\u001b(B \u001b$Bhm\u001b(B \u001b$Bhn\u001b(B \u001b$Bho\u001b(B\n\u001b$Bhp\u001b(B \u001b$Bhq\u001b(B \u001b$Bhr\u001b(B \u001b$Bhs\u001b(B \u001b$Bht\u001b(B \u001b$Bhu\u001b(B \u001b$Bhv\u001b(B \u001b$Bhw\u001b(B \u001b$Bhx\u001b(B \u001b$Bhy\u001b(B \u001b$Bhz\u001b(B \u001b$Bh{\u001b(B \u001b$Bh|\u001b(B \u001b$Bh}\u001b(B \u001b$Bh~\u001b(B\n   \u001b$Bi!\u001b(B \u001b$Bi\"\u001b(B \u001b$Bi#\u001b(B \u001b$Bi$\u001b(B \u001b$Bi%\u001b(B \u001b$Bi&\u001b(B \u001b$Bi'\u001b(B \u001b$Bi(\u001b(B \u001b$Bi)\u001b(B \u001b$Bi*\u001b(B \u001b$Bi+\u001b(B \u001b$Bi,\u001b(B \u001b$Bi-\u001b(B \u001b$Bi.\u001b(B \u001b$Bi/\u001b(B\n\u001b$Bi0\u001b(B \u001b$Bi1\u001b(B \u001b$Bi2\u001b(B \u001b$Bi3\u001b(B \u001b$Bi4\u001b(B \u001b$Bi5\u001b(B \u001b$Bi6\u001b(B \u001b$Bi7\u001b(B \u001b$Bi8\u001b(B \u001b$Bi9\u001b(B \u001b$Bi:\u001b(B \u001b$Bi;\u001b(B \u001b$Bi<\u001b(B \u001b$Bi=\u001b(B \u001b$Bi>\u001b(B \u001b$Bi?\u001b(B\n\u001b$Bi@\u001b(B \u001b$BiA\u001b(B \u001b$BiB\u001b(B \u001b$BiC\u001b(B \u001b$BiD\u001b(B \u001b$BiE\u001b(B \u001b$BiF\u001b(B \u001b$BiG\u001b(B \u001b$BiH\u001b(B \u001b$BiI\u001b(B \u001b$BiJ\u001b(B \u001b$BiK\u001b(B \u001b$BiL\u001b(B \u001b$BiM\u001b(B \u001b$BiN\u001b(B \u001b$BiO\u001b(B\n\u001b$BiP\u001b(B \u001b$BiQ\u001b(B \u001b$BiR\u001b(B \u001b$BiS\u001b(B \u001b$BiT\u001b(B \u001b$BiU\u001b(B \u001b$BiV\u001b(B \u001b$BiW\u001b(B \u001b$BiX\u001b(B \u001b$BiY\u001b(B \u001b$BiZ\u001b(B \u001b$Bi[\u001b(B \u001b$Bi\\\u001b(B \u001b$Bi]\u001b(B \u001b$Bi^\u001b(B \u001b$Bi_\u001b(B\n\u001b$Bi`\u001b(B \u001b$Bia\u001b(B \u001b$Bib\u001b(B \u001b$Bic\u001b(B \u001b$Bid\u001b(B \u001b$Bie\u001b(B \u001b$Bif\u001b(B \u001b$Big\u001b(B \u001b$Bih\u001b(B \u001b$Bii\u001b(B \u001b$Bij\u001b(B \u001b$Bik\u001b(B \u001b$Bil\u001b(B \u001b$Bim\u001b(B \u001b$Bin\u001b(B \u001b$Bio\u001b(B\n\u001b$Bip\u001b(B \u001b$Biq\u001b(B \u001b$Bir\u001b(B \u001b$Bis\u001b(B \u001b$Bit\u001b(B \u001b$Biu\u001b(B \u001b$Biv\u001b(B \u001b$Biw\u001b(B \u001b$Bix\u001b(B \u001b$Biy\u001b(B \u001b$Biz\u001b(B \u001b$Bi{\u001b(B \u001b$Bi|\u001b(B \u001b$Bi}\u001b(B \u001b$Bi~\u001b(B\n   \u001b$Bj!\u001b(B \u001b$Bj\"\u001b(B \u001b$Bj#\u001b(B \u001b$Bj$\u001b(B \u001b$Bj%\u001b(B \u001b$Bj&\u001b(B \u001b$Bj'\u001b(B \u001b$Bj(\u001b(B \u001b$Bj)\u001b(B \u001b$Bj*\u001b(B \u001b$Bj+\u001b(B \u001b$Bj,\u001b(B \u001b$Bj-\u001b(B \u001b$Bj.\u001b(B \u001b$Bj/\u001b(B\n\u001b$Bj0\u001b(B \u001b$Bj1\u001b(B \u001b$Bj2\u001b(B \u001b$Bj3\u001b(B \u001b$Bj4\u001b(B \u001b$Bj5\u001b(B \u001b$Bj6\u001b(B \u001b$Bj7\u001b(B \u001b$Bj8\u001b(B \u001b$Bj9\u001b(B \u001b$Bj:\u001b(B \u001b$Bj;\u001b(B \u001b$Bj<\u001b(B \u001b$Bj=\u001b(B \u001b$Bj>\u001b(B \u001b$Bj?\u001b(B\n\u001b$Bj@\u001b(B \u001b$BjA\u001b(B \u001b$BjB\u001b(B \u001b$BjC\u001b(B \u001b$BjD\u001b(B \u001b$BjE\u001b(B \u001b$BjF\u001b(B \u001b$BjG\u001b(B \u001b$BjH\u001b(B \u001b$BjI\u001b(B \u001b$BjJ\u001b(B \u001b$BjK\u001b(B \u001b$BjL\u001b(B \u001b$BjM\u001b(B \u001b$BjN\u001b(B \u001b$BjO\u001b(B\n\u001b$BjP\u001b(B \u001b$BjQ\u001b(B \u001b$BjR\u001b(B \u001b$BjS\u001b(B \u001b$BjT\u001b(B \u001b$BjU\u001b(B \u001b$BjV\u001b(B \u001b$BjW\u001b(B \u001b$BjX\u001b(B \u001b$BjY\u001b(B \u001b$BjZ\u001b(B \u001b$Bj[\u001b(B \u001b$Bj\\\u001b(B \u001b$Bj]\u001b(B \u001b$Bj^\u001b(B \u001b$Bj_\u001b(B\n\u001b$Bj`\u001b(B \u001b$Bja\u001b(B \u001b$Bjb\u001b(B \u001b$Bjc\u001b(B \u001b$Bjd\u001b(B \u001b$Bje\u001b(B \u001b$Bjf\u001b(B \u001b$Bjg\u001b(B \u001b$Bjh\u001b(B \u001b$Bji\u001b(B \u001b$Bjj\u001b(B \u001b$Bjk\u001b(B \u001b$Bjl\u001b(B \u001b$Bjm\u001b(B \u001b$Bjn\u001b(B \u001b$Bjo\u001b(B\n\u001b$Bjp\u001b(B \u001b$Bjq\u001b(B \u001b$Bjr\u001b(B \u001b$Bjs\u001b(B \u001b$Bjt\u001b(B \u001b$Bju\u001b(B \u001b$Bjv\u001b(B \u001b$Bjw\u001b(B \u001b$Bjx\u001b(B \u001b$Bjy\u001b(B \u001b$Bjz\u001b(B \u001b$Bj{\u001b(B \u001b$Bj|\u001b(B \u001b$Bj}\u001b(B \u001b$Bj~\u001b(B\n   \u001b$Bk!\u001b(B \u001b$Bk\"\u001b(B \u001b$Bk#\u001b(B \u001b$Bk$\u001b(B \u001b$Bk%\u001b(B \u001b$Bk&\u001b(B \u001b$Bk'\u001b(B \u001b$Bk(\u001b(B \u001b$Bk)\u001b(B \u001b$Bk*\u001b(B \u001b$Bk+\u001b(B \u001b$Bk,\u001b(B \u001b$Bk-\u001b(B \u001b$Bk.\u001b(B \u001b$Bk/\u001b(B\n\u001b$Bk0\u001b(B \u001b$Bk1\u001b(B \u001b$Bk2\u001b(B \u001b$Bk3\u001b(B \u001b$Bk4\u001b(B \u001b$Bk5\u001b(B \u001b$Bk6\u001b(B \u001b$Bk7\u001b(B \u001b$Bk8\u001b(B \u001b$Bk9\u001b(B \u001b$Bk:\u001b(B \u001b$Bk;\u001b(B \u001b$Bk<\u001b(B \u001b$Bk=\u001b(B \u001b$Bk>\u001b(B \u001b$Bk?\u001b(B\n\u001b$Bk@\u001b(B \u001b$BkA\u001b(B \u001b$BkB\u001b(B \u001b$BkC\u001b(B \u001b$BkD\u001b(B \u001b$BkE\u001b(B \u001b$BkF\u001b(B \u001b$BkG\u001b(B \u001b$BkH\u001b(B \u001b$BkI\u001b(B \u001b$BkJ\u001b(B \u001b$BkK\u001b(B \u001b$BkL\u001b(B \u001b$BkM\u001b(B \u001b$BkN\u001b(B \u001b$BkO\u001b(B\n\u001b$BkP\u001b(B \u001b$BkQ\u001b(B \u001b$BkR\u001b(B \u001b$BkS\u001b(B \u001b$BkT\u001b(B \u001b$BkU\u001b(B \u001b$BkV\u001b(B \u001b$BkW\u001b(B \u001b$BkX\u001b(B \u001b$BkY\u001b(B \u001b$BkZ\u001b(B \u001b$Bk[\u001b(B \u001b$Bk\\\u001b(B \u001b$Bk]\u001b(B \u001b$Bk^\u001b(B \u001b$Bk_\u001b(B\n\u001b$Bk`\u001b(B \u001b$Bka\u001b(B \u001b$Bkb\u001b(B \u001b$Bkc\u001b(B \u001b$Bkd\u001b(B \u001b$Bke\u001b(B \u001b$Bkf\u001b(B \u001b$Bkg\u001b(B \u001b$Bkh\u001b(B \u001b$Bki\u001b(B \u001b$Bkj\u001b(B \u001b$Bkk\u001b(B \u001b$Bkl\u001b(B \u001b$Bkm\u001b(B \u001b$Bkn\u001b(B \u001b$Bko\u001b(B\n\u001b$Bkp\u001b(B \u001b$Bkq\u001b(B \u001b$Bkr\u001b(B \u001b$Bks\u001b(B \u001b$Bkt\u001b(B \u001b$Bku\u001b(B \u001b$Bkv\u001b(B \u001b$Bkw\u001b(B \u001b$Bkx\u001b(B \u001b$Bky\u001b(B \u001b$Bkz\u001b(B \u001b$Bk{\u001b(B \u001b$Bk|\u001b(B \u001b$Bk}\u001b(B \u001b$Bk~\u001b(B\n   \u001b$Bl!\u001b(B \u001b$Bl\"\u001b(B \u001b$Bl#\u001b(B \u001b$Bl$\u001b(B \u001b$Bl%\u001b(B \u001b$Bl&\u001b(B \u001b$Bl'\u001b(B \u001b$Bl(\u001b(B \u001b$Bl)\u001b(B \u001b$Bl*\u001b(B \u001b$Bl+\u001b(B \u001b$Bl,\u001b(B \u001b$Bl-\u001b(B \u001b$Bl.\u001b(B \u001b$Bl/\u001b(B\n\u001b$Bl0\u001b(B \u001b$Bl1\u001b(B \u001b$Bl2\u001b(B \u001b$Bl3\u001b(B \u001b$Bl4\u001b(B \u001b$Bl5\u001b(B \u001b$Bl6\u001b(B \u001b$Bl7\u001b(B \u001b$Bl8\u001b(B \u001b$Bl9\u001b(B \u001b$Bl:\u001b(B \u001b$Bl;\u001b(B \u001b$Bl<\u001b(B \u001b$Bl=\u001b(B \u001b$Bl>\u001b(B \u001b$Bl?\u001b(B\n\u001b$Bl@\u001b(B \u001b$BlA\u001b(B \u001b$BlB\u001b(B \u001b$BlC\u001b(B \u001b$BlD\u001b(B \u001b$BlE\u001b(B \u001b$BlF\u001b(B \u001b$BlG\u001b(B \u001b$BlH\u001b(B \u001b$BlI\u001b(B \u001b$BlJ\u001b(B \u001b$BlK\u001b(B \u001b$BlL\u001b(B \u001b$BlM\u001b(B \u001b$BlN\u001b(B \u001b$BlO\u001b(B\n\u001b$BlP\u001b(B \u001b$BlQ\u001b(B \u001b$BlR\u001b(B \u001b$BlS\u001b(B \u001b$BlT\u001b(B \u001b$BlU\u001b(B \u001b$BlV\u001b(B \u001b$BlW\u001b(B \u001b$BlX\u001b(B \u001b$BlY\u001b(B \u001b$BlZ\u001b(B \u001b$Bl[\u001b(B \u001b$Bl\\\u001b(B \u001b$Bl]\u001b(B \u001b$Bl^\u001b(B \u001b$Bl_\u001b(B\n\u001b$Bl`\u001b(B \u001b$Bla\u001b(B \u001b$Blb\u001b(B \u001b$Blc\u001b(B \u001b$Bld\u001b(B \u001b$Ble\u001b(B \u001b$Blf\u001b(B \u001b$Blg\u001b(B \u001b$Blh\u001b(B \u001b$Bli\u001b(B \u001b$Blj\u001b(B \u001b$Blk\u001b(B \u001b$Bll\u001b(B \u001b$Blm\u001b(B \u001b$Bln\u001b(B \u001b$Blo\u001b(B\n\u001b$Blp\u001b(B \u001b$Blq\u001b(B \u001b$Blr\u001b(B \u001b$Bls\u001b(B \u001b$Blt\u001b(B \u001b$Blu\u001b(B \u001b$Blv\u001b(B \u001b$Blw\u001b(B \u001b$Blx\u001b(B \u001b$Bly\u001b(B \u001b$Blz\u001b(B \u001b$Bl{\u001b(B \u001b$Bl|\u001b(B \u001b$Bl}\u001b(B \u001b$Bl~\u001b(B\n   \u001b$Bm!\u001b(B \u001b$Bm\"\u001b(B \u001b$Bm#\u001b(B \u001b$Bm$\u001b(B \u001b$Bm%\u001b(B \u001b$Bm&\u001b(B \u001b$Bm'\u001b(B \u001b$Bm(\u001b(B \u001b$Bm)\u001b(B \u001b$Bm*\u001b(B \u001b$Bm+\u001b(B \u001b$Bm,\u001b(B \u001b$Bm-\u001b(B \u001b$Bm.\u001b(B \u001b$Bm/\u001b(B\n\u001b$Bm0\u001b(B \u001b$Bm1\u001b(B \u001b$Bm2\u001b(B \u001b$Bm3\u001b(B \u001b$Bm4\u001b(B \u001b$Bm5\u001b(B \u001b$Bm6\u001b(B \u001b$Bm7\u001b(B \u001b$Bm8\u001b(B \u001b$Bm9\u001b(B \u001b$Bm:\u001b(B \u001b$Bm;\u001b(B \u001b$Bm<\u001b(B \u001b$Bm=\u001b(B \u001b$Bm>\u001b(B \u001b$Bm?\u001b(B\n\u001b$Bm@\u001b(B \u001b$BmA\u001b(B \u001b$BmB\u001b(B \u001b$BmC\u001b(B \u001b$BmD\u001b(B \u001b$BmE\u001b(B \u001b$BmF\u001b(B \u001b$BmG\u001b(B \u001b$BmH\u001b(B \u001b$BmI\u001b(B \u001b$BmJ\u001b(B \u001b$BmK\u001b(B \u001b$BmL\u001b(B \u001b$BmM\u001b(B \u001b$BmN\u001b(B \u001b$BmO\u001b(B\n\u001b$BmP\u001b(B \u001b$BmQ\u001b(B \u001b$BmR\u001b(B \u001b$BmS\u001b(B \u001b$BmT\u001b(B \u001b$BmU\u001b(B \u001b$BmV\u001b(B \u001b$BmW\u001b(B \u001b$BmX\u001b(B \u001b$BmY\u001b(B \u001b$BmZ\u001b(B \u001b$Bm[\u001b(B \u001b$Bm\\\u001b(B \u001b$Bm]\u001b(B \u001b$Bm^\u001b(B \u001b$Bm_\u001b(B\n\u001b$Bm`\u001b(B \u001b$Bma\u001b(B \u001b$Bmb\u001b(B \u001b$Bmc\u001b(B \u001b$Bmd\u001b(B \u001b$Bme\u001b(B \u001b$Bmf\u001b(B \u001b$Bmg\u001b(B \u001b$Bmh\u001b(B \u001b$Bmi\u001b(B \u001b$Bmj\u001b(B \u001b$Bmk\u001b(B \u001b$Bml\u001b(B \u001b$Bmm\u001b(B \u001b$Bmn\u001b(B \u001b$Bmo\u001b(B\n\u001b$Bmp\u001b(B \u001b$Bmq\u001b(B \u001b$Bmr\u001b(B \u001b$Bms\u001b(B \u001b$Bmt\u001b(B \u001b$Bmu\u001b(B \u001b$Bmv\u001b(B \u001b$Bmw\u001b(B \u001b$Bmx\u001b(B \u001b$Bmy\u001b(B \u001b$Bmz\u001b(B \u001b$Bm{\u001b(B \u001b$Bm|\u001b(B \u001b$Bm}\u001b(B \u001b$Bm~\u001b(B\n   \u001b$Bn!\u001b(B \u001b$Bn\"\u001b(B \u001b$Bn#\u001b(B \u001b$Bn$\u001b(B \u001b$Bn%\u001b(B \u001b$Bn&\u001b(B \u001b$Bn'\u001b(B \u001b$Bn(\u001b(B \u001b$Bn)\u001b(B \u001b$Bn*\u001b(B \u001b$Bn+\u001b(B \u001b$Bn,\u001b(B \u001b$Bn-\u001b(B \u001b$Bn.\u001b(B \u001b$Bn/\u001b(B\n\u001b$Bn0\u001b(B \u001b$Bn1\u001b(B \u001b$Bn2\u001b(B \u001b$Bn3\u001b(B \u001b$Bn4\u001b(B \u001b$Bn5\u001b(B \u001b$Bn6\u001b(B \u001b$Bn7\u001b(B \u001b$Bn8\u001b(B \u001b$Bn9\u001b(B \u001b$Bn:\u001b(B \u001b$Bn;\u001b(B \u001b$Bn<\u001b(B \u001b$Bn=\u001b(B \u001b$Bn>\u001b(B \u001b$Bn?\u001b(B\n\u001b$Bn@\u001b(B \u001b$BnA\u001b(B \u001b$BnB\u001b(B \u001b$BnC\u001b(B \u001b$BnD\u001b(B \u001b$BnE\u001b(B \u001b$BnF\u001b(B \u001b$BnG\u001b(B \u001b$BnH\u001b(B \u001b$BnI\u001b(B \u001b$BnJ\u001b(B \u001b$BnK\u001b(B \u001b$BnL\u001b(B \u001b$BnM\u001b(B \u001b$BnN\u001b(B \u001b$BnO\u001b(B\n\u001b$BnP\u001b(B \u001b$BnQ\u001b(B \u001b$BnR\u001b(B \u001b$BnS\u001b(B \u001b$BnT\u001b(B \u001b$BnU\u001b(B \u001b$BnV\u001b(B \u001b$BnW\u001b(B \u001b$BnX\u001b(B \u001b$BnY\u001b(B \u001b$BnZ\u001b(B \u001b$Bn[\u001b(B \u001b$Bn\\\u001b(B \u001b$Bn]\u001b(B \u001b$Bn^\u001b(B \u001b$Bn_\u001b(B\n\u001b$Bn`\u001b(B \u001b$Bna\u001b(B \u001b$Bnb\u001b(B \u001b$Bnc\u001b(B \u001b$Bnd\u001b(B \u001b$Bne\u001b(B \u001b$Bnf\u001b(B \u001b$Bng\u001b(B \u001b$Bnh\u001b(B \u001b$Bni\u001b(B \u001b$Bnj\u001b(B \u001b$Bnk\u001b(B \u001b$Bnl\u001b(B \u001b$Bnm\u001b(B \u001b$Bnn\u001b(B \u001b$Bno\u001b(B\n\u001b$Bnp\u001b(B \u001b$Bnq\u001b(B \u001b$Bnr\u001b(B \u001b$Bns\u001b(B \u001b$Bnt\u001b(B \u001b$Bnu\u001b(B \u001b$Bnv\u001b(B \u001b$Bnw\u001b(B \u001b$Bnx\u001b(B \u001b$Bny\u001b(B \u001b$Bnz\u001b(B \u001b$Bn{\u001b(B \u001b$Bn|\u001b(B \u001b$Bn}\u001b(B \u001b$Bn~\u001b(B\n   \u001b$Bo!\u001b(B \u001b$Bo\"\u001b(B \u001b$Bo#\u001b(B \u001b$Bo$\u001b(B \u001b$Bo%\u001b(B \u001b$Bo&\u001b(B \u001b$Bo'\u001b(B \u001b$Bo(\u001b(B \u001b$Bo)\u001b(B \u001b$Bo*\u001b(B \u001b$Bo+\u001b(B \u001b$Bo,\u001b(B \u001b$Bo-\u001b(B \u001b$Bo.\u001b(B \u001b$Bo/\u001b(B\n\u001b$Bo0\u001b(B \u001b$Bo1\u001b(B \u001b$Bo2\u001b(B \u001b$Bo3\u001b(B \u001b$Bo4\u001b(B \u001b$Bo5\u001b(B \u001b$Bo6\u001b(B \u001b$Bo7\u001b(B \u001b$Bo8\u001b(B \u001b$Bo9\u001b(B \u001b$Bo:\u001b(B \u001b$Bo;\u001b(B \u001b$Bo<\u001b(B \u001b$Bo=\u001b(B \u001b$Bo>\u001b(B \u001b$Bo?\u001b(B\n\u001b$Bo@\u001b(B \u001b$BoA\u001b(B \u001b$BoB\u001b(B \u001b$BoC\u001b(B \u001b$BoD\u001b(B \u001b$BoE\u001b(B \u001b$BoF\u001b(B \u001b$BoG\u001b(B \u001b$BoH\u001b(B \u001b$BoI\u001b(B \u001b$BoJ\u001b(B \u001b$BoK\u001b(B \u001b$BoL\u001b(B \u001b$BoM\u001b(B \u001b$BoN\u001b(B \u001b$BoO\u001b(B\n\u001b$BoP\u001b(B \u001b$BoQ\u001b(B \u001b$BoR\u001b(B \u001b$BoS\u001b(B \u001b$BoT\u001b(B \u001b$BoU\u001b(B \u001b$BoV\u001b(B \u001b$BoW\u001b(B \u001b$BoX\u001b(B \u001b$BoY\u001b(B \u001b$BoZ\u001b(B \u001b$Bo[\u001b(B \u001b$Bo\\\u001b(B \u001b$Bo]\u001b(B \u001b$Bo^\u001b(B \u001b$Bo_\u001b(B\n\u001b$Bo`\u001b(B \u001b$Boa\u001b(B \u001b$Bob\u001b(B \u001b$Boc\u001b(B \u001b$Bod\u001b(B \u001b$Boe\u001b(B \u001b$Bof\u001b(B \u001b$Bog\u001b(B \u001b$Boh\u001b(B \u001b$Boi\u001b(B \u001b$Boj\u001b(B \u001b$Bok\u001b(B \u001b$Bol\u001b(B \u001b$Bom\u001b(B \u001b$Bon\u001b(B \u001b$Boo\u001b(B\n\u001b$Bop\u001b(B \u001b$Boq\u001b(B \u001b$Bor\u001b(B \u001b$Bos\u001b(B \u001b$Bot\u001b(B \u001b$Bou\u001b(B \u001b$Bov\u001b(B \u001b$Bow\u001b(B \u001b$Box\u001b(B \u001b$Boy\u001b(B \u001b$Boz\u001b(B \u001b$Bo{\u001b(B \u001b$Bo|\u001b(B \u001b$Bo}\u001b(B \u001b$Bo~\u001b(B\n   \u001b$Bp!\u001b(B \u001b$Bp\"\u001b(B \u001b$Bp#\u001b(B \u001b$Bp$\u001b(B \u001b$Bp%\u001b(B \u001b$Bp&\u001b(B \u001b$Bp'\u001b(B \u001b$Bp(\u001b(B \u001b$Bp)\u001b(B \u001b$Bp*\u001b(B \u001b$Bp+\u001b(B \u001b$Bp,\u001b(B \u001b$Bp-\u001b(B \u001b$Bp.\u001b(B \u001b$Bp/\u001b(B\n\u001b$Bp0\u001b(B \u001b$Bp1\u001b(B \u001b$Bp2\u001b(B \u001b$Bp3\u001b(B \u001b$Bp4\u001b(B \u001b$Bp5\u001b(B \u001b$Bp6\u001b(B \u001b$Bp7\u001b(B \u001b$Bp8\u001b(B \u001b$Bp9\u001b(B \u001b$Bp:\u001b(B \u001b$Bp;\u001b(B \u001b$Bp<\u001b(B \u001b$Bp=\u001b(B \u001b$Bp>\u001b(B \u001b$Bp?\u001b(B\n\u001b$Bp@\u001b(B \u001b$BpA\u001b(B \u001b$BpB\u001b(B \u001b$BpC\u001b(B \u001b$BpD\u001b(B \u001b$BpE\u001b(B \u001b$BpF\u001b(B \u001b$BpG\u001b(B \u001b$BpH\u001b(B \u001b$BpI\u001b(B \u001b$BpJ\u001b(B \u001b$BpK\u001b(B \u001b$BpL\u001b(B \u001b$BpM\u001b(B \u001b$BpN\u001b(B \u001b$BpO\u001b(B\n\u001b$BpP\u001b(B \u001b$BpQ\u001b(B \u001b$BpR\u001b(B \u001b$BpS\u001b(B \u001b$BpT\u001b(B \u001b$BpU\u001b(B \u001b$BpV\u001b(B \u001b$BpW\u001b(B \u001b$BpX\u001b(B \u001b$BpY\u001b(B \u001b$BpZ\u001b(B \u001b$Bp[\u001b(B \u001b$Bp\\\u001b(B \u001b$Bp]\u001b(B \u001b$Bp^\u001b(B \u001b$Bp_\u001b(B\n\u001b$Bp`\u001b(B \u001b$Bpa\u001b(B \u001b$Bpb\u001b(B \u001b$Bpc\u001b(B \u001b$Bpd\u001b(B \u001b$Bpe\u001b(B \u001b$Bpf\u001b(B \u001b$Bpg\u001b(B \u001b$Bph\u001b(B \u001b$Bpi\u001b(B \u001b$Bpj\u001b(B \u001b$Bpk\u001b(B \u001b$Bpl\u001b(B \u001b$Bpm\u001b(B \u001b$Bpn\u001b(B \u001b$Bpo\u001b(B\n\u001b$Bpp\u001b(B \u001b$Bpq\u001b(B \u001b$Bpr\u001b(B \u001b$Bps\u001b(B \u001b$Bpt\u001b(B \u001b$Bpu\u001b(B \u001b$Bpv\u001b(B \u001b$Bpw\u001b(B \u001b$Bpx\u001b(B \u001b$Bpy\u001b(B \u001b$Bpz\u001b(B \u001b$Bp{\u001b(B \u001b$Bp|\u001b(B \u001b$Bp}\u001b(B \u001b$Bp~\u001b(B\n   \u001b$Bq!\u001b(B \u001b$Bq\"\u001b(B \u001b$Bq#\u001b(B \u001b$Bq$\u001b(B \u001b$Bq%\u001b(B \u001b$Bq&\u001b(B \u001b$Bq'\u001b(B \u001b$Bq(\u001b(B \u001b$Bq)\u001b(B \u001b$Bq*\u001b(B \u001b$Bq+\u001b(B \u001b$Bq,\u001b(B \u001b$Bq-\u001b(B \u001b$Bq.\u001b(B \u001b$Bq/\u001b(B\n\u001b$Bq0\u001b(B \u001b$Bq1\u001b(B \u001b$Bq2\u001b(B \u001b$Bq3\u001b(B \u001b$Bq4\u001b(B \u001b$Bq5\u001b(B \u001b$Bq6\u001b(B \u001b$Bq7\u001b(B \u001b$Bq8\u001b(B \u001b$Bq9\u001b(B \u001b$Bq:\u001b(B \u001b$Bq;\u001b(B \u001b$Bq<\u001b(B \u001b$Bq=\u001b(B \u001b$Bq>\u001b(B \u001b$Bq?\u001b(B\n\u001b$Bq@\u001b(B \u001b$BqA\u001b(B \u001b$BqB\u001b(B \u001b$BqC\u001b(B \u001b$BqD\u001b(B \u001b$BqE\u001b(B \u001b$BqF\u001b(B \u001b$BqG\u001b(B \u001b$BqH\u001b(B \u001b$BqI\u001b(B \u001b$BqJ\u001b(B \u001b$BqK\u001b(B \u001b$BqL\u001b(B \u001b$BqM\u001b(B \u001b$BqN\u001b(B \u001b$BqO\u001b(B\n\u001b$BqP\u001b(B \u001b$BqQ\u001b(B \u001b$BqR\u001b(B \u001b$BqS\u001b(B \u001b$BqT\u001b(B \u001b$BqU\u001b(B \u001b$BqV\u001b(B \u001b$BqW\u001b(B \u001b$BqX\u001b(B \u001b$BqY\u001b(B \u001b$BqZ\u001b(B \u001b$Bq[\u001b(B \u001b$Bq\\\u001b(B \u001b$Bq]\u001b(B \u001b$Bq^\u001b(B \u001b$Bq_\u001b(B\n\u001b$Bq`\u001b(B \u001b$Bqa\u001b(B \u001b$Bqb\u001b(B \u001b$Bqc\u001b(B \u001b$Bqd\u001b(B \u001b$Bqe\u001b(B \u001b$Bqf\u001b(B \u001b$Bqg\u001b(B \u001b$Bqh\u001b(B \u001b$Bqi\u001b(B \u001b$Bqj\u001b(B \u001b$Bqk\u001b(B \u001b$Bql\u001b(B \u001b$Bqm\u001b(B \u001b$Bqn\u001b(B \u001b$Bqo\u001b(B\n\u001b$Bqp\u001b(B \u001b$Bqq\u001b(B \u001b$Bqr\u001b(B \u001b$Bqs\u001b(B \u001b$Bqt\u001b(B \u001b$Bqu\u001b(B \u001b$Bqv\u001b(B \u001b$Bqw\u001b(B \u001b$Bqx\u001b(B \u001b$Bqy\u001b(B \u001b$Bqz\u001b(B \u001b$Bq{\u001b(B \u001b$Bq|\u001b(B \u001b$Bq}\u001b(B \u001b$Bq~\u001b(B\n   \u001b$Br!\u001b(B \u001b$Br\"\u001b(B \u001b$Br#\u001b(B \u001b$Br$\u001b(B \u001b$Br%\u001b(B \u001b$Br&\u001b(B \u001b$Br'\u001b(B \u001b$Br(\u001b(B \u001b$Br)\u001b(B \u001b$Br*\u001b(B \u001b$Br+\u001b(B \u001b$Br,\u001b(B \u001b$Br-\u001b(B \u001b$Br.\u001b(B \u001b$Br/\u001b(B\n\u001b$Br0\u001b(B \u001b$Br1\u001b(B \u001b$Br2\u001b(B \u001b$Br3\u001b(B \u001b$Br4\u001b(B \u001b$Br5\u001b(B \u001b$Br6\u001b(B \u001b$Br7\u001b(B \u001b$Br8\u001b(B \u001b$Br9\u001b(B \u001b$Br:\u001b(B \u001b$Br;\u001b(B \u001b$Br<\u001b(B \u001b$Br=\u001b(B \u001b$Br>\u001b(B \u001b$Br?\u001b(B\n\u001b$Br@\u001b(B \u001b$BrA\u001b(B \u001b$BrB\u001b(B \u001b$BrC\u001b(B \u001b$BrD\u001b(B \u001b$BrE\u001b(B \u001b$BrF\u001b(B \u001b$BrG\u001b(B \u001b$BrH\u001b(B \u001b$BrI\u001b(B \u001b$BrJ\u001b(B \u001b$BrK\u001b(B \u001b$BrL\u001b(B \u001b$BrM\u001b(B \u001b$BrN\u001b(B \u001b$BrO\u001b(B\n\u001b$BrP\u001b(B \u001b$BrQ\u001b(B \u001b$BrR\u001b(B \u001b$BrS\u001b(B \u001b$BrT\u001b(B \u001b$BrU\u001b(B \u001b$BrV\u001b(B \u001b$BrW\u001b(B \u001b$BrX\u001b(B \u001b$BrY\u001b(B \u001b$BrZ\u001b(B \u001b$Br[\u001b(B \u001b$Br\\\u001b(B \u001b$Br]\u001b(B \u001b$Br^\u001b(B \u001b$Br_\u001b(B\n\u001b$Br`\u001b(B \u001b$Bra\u001b(B \u001b$Brb\u001b(B \u001b$Brc\u001b(B \u001b$Brd\u001b(B \u001b$Bre\u001b(B \u001b$Brf\u001b(B \u001b$Brg\u001b(B \u001b$Brh\u001b(B \u001b$Bri\u001b(B \u001b$Brj\u001b(B \u001b$Brk\u001b(B \u001b$Brl\u001b(B \u001b$Brm\u001b(B \u001b$Brn\u001b(B \u001b$Bro\u001b(B\n\u001b$Brp\u001b(B \u001b$Brq\u001b(B \u001b$Brr\u001b(B \u001b$Brs\u001b(B \u001b$Brt\u001b(B \u001b$Bru\u001b(B \u001b$Brv\u001b(B \u001b$Brw\u001b(B \u001b$Brx\u001b(B \u001b$Bry\u001b(B \u001b$Brz\u001b(B \u001b$Br{\u001b(B \u001b$Br|\u001b(B \u001b$Br}\u001b(B \u001b$Br~\u001b(B\n   \u001b$Bs!\u001b(B \u001b$Bs\"\u001b(B \u001b$Bs#\u001b(B \u001b$Bs$\u001b(B \u001b$Bs%\u001b(B \u001b$Bs&\u001b(B \u001b$Bs'\u001b(B \u001b$Bs(\u001b(B \u001b$Bs)\u001b(B \u001b$Bs*\u001b(B \u001b$Bs+\u001b(B \u001b$Bs,\u001b(B \u001b$Bs-\u001b(B \u001b$Bs.\u001b(B \u001b$Bs/\u001b(B\n\u001b$Bs0\u001b(B \u001b$Bs1\u001b(B \u001b$Bs2\u001b(B \u001b$Bs3\u001b(B \u001b$Bs4\u001b(B \u001b$Bs5\u001b(B \u001b$Bs6\u001b(B \u001b$Bs7\u001b(B \u001b$Bs8\u001b(B \u001b$Bs9\u001b(B \u001b$Bs:\u001b(B \u001b$Bs;\u001b(B \u001b$Bs<\u001b(B \u001b$Bs=\u001b(B \u001b$Bs>\u001b(B \u001b$Bs?\u001b(B\n\u001b$Bs@\u001b(B \u001b$BsA\u001b(B \u001b$BsB\u001b(B \u001b$BsC\u001b(B \u001b$BsD\u001b(B \u001b$BsE\u001b(B \u001b$BsF\u001b(B \u001b$BsG\u001b(B \u001b$BsH\u001b(B \u001b$BsI\u001b(B \u001b$BsJ\u001b(B \u001b$BsK\u001b(B \u001b$BsL\u001b(B \u001b$BsM\u001b(B \u001b$BsN\u001b(B \u001b$BsO\u001b(B\n\u001b$BsP\u001b(B \u001b$BsQ\u001b(B \u001b$BsR\u001b(B \u001b$BsS\u001b(B \u001b$BsT\u001b(B \u001b$BsU\u001b(B \u001b$BsV\u001b(B \u001b$BsW\u001b(B \u001b$BsX\u001b(B \u001b$BsY\u001b(B \u001b$BsZ\u001b(B \u001b$Bs[\u001b(B \u001b$Bs\\\u001b(B \u001b$Bs]\u001b(B \u001b$Bs^\u001b(B \u001b$Bs_\u001b(B\n\u001b$Bs`\u001b(B \u001b$Bsa\u001b(B \u001b$Bsb\u001b(B \u001b$Bsc\u001b(B \u001b$Bsd\u001b(B \u001b$Bse\u001b(B \u001b$Bsf\u001b(B \u001b$Bsg\u001b(B \u001b$Bsh\u001b(B \u001b$Bsi\u001b(B \u001b$Bsj\u001b(B \u001b$Bsk\u001b(B \u001b$Bsl\u001b(B \u001b$Bsm\u001b(B \u001b$Bsn\u001b(B \u001b$Bso\u001b(B\n\u001b$Bsp\u001b(B \u001b$Bsq\u001b(B \u001b$Bsr\u001b(B \u001b$Bss\u001b(B \u001b$Bst\u001b(B \u001b$Bsu\u001b(B \u001b$Bsv\u001b(B \u001b$Bsw\u001b(B \u001b$Bsx\u001b(B \u001b$Bsy\u001b(B \u001b$Bsz\u001b(B \u001b$Bs{\u001b(B \u001b$Bs|\u001b(B \u001b$Bs}\u001b(B \u001b$Bs~\u001b(B\n   \u001b$Bt!\u001b(B \u001b$Bt\"\u001b(B \u001b$Bt#\u001b(B \u001b$Bt$\u001b(B \u001b$Bt%\u001b(B \u001b$Bt&\u001b(B    \u001b$(Qt(\u001b(B \u001b$(Qt)\u001b(B \u001b$(Qt*\u001b(B \u001b$(Qt+\u001b(B \u001b$(Qt,\u001b(B \u001b$(Qt-\u001b(B \u001b$(Qt.\u001b(B \u001b$(Qt/\u001b(B\n\u001b$(Qt0\u001b(B \u001b$(Qt1\u001b(B \u001b$(Qt2\u001b(B \u001b$(Qt3\u001b(B \u001b$(Qt4\u001b(B \u001b$(Qt5\u001b(B \u001b$(Qt6\u001b(B \u001b$(Qt7\u001b(B \u001b$(Qt8\u001b(B \u001b$(Qt9\u001b(B \u001b$(Qt:\u001b(B \u001b$(Qt;\u001b(B \u001b$(Qt<\u001b(B \u001b$(Qt=\u001b(B \u001b$(Qt>\u001b(B \u001b$(Qt?\u001b(B\n\u001b$(Qt@\u001b(B \u001b$(QtA\u001b(B \u001b$(QtB\u001b(B \u001b$(QtC\u001b(B \u001b$(QtD\u001b(B \u001b$(QtE\u001b(B \u001b$(QtF\u001b(B \u001b$(QtG\u001b(B \u001b$(QtH\u001b(B \u001b$(QtI\u001b(B \u001b$(QtJ\u001b(B \u001b$(QtK\u001b(B \u001b$(QtL\u001b(B \u001b$(QtM\u001b(B \u001b$(QtN\u001b(B \u001b$(QtO\u001b(B\n\u001b$(QtP\u001b(B \u001b$(QtQ\u001b(B \u001b$(QtR\u001b(B \u001b$(QtS\u001b(B \u001b$(QtT\u001b(B \u001b$(QtU\u001b(B \u001b$(QtV\u001b(B \u001b$(QtW\u001b(B \u001b$(QtX\u001b(B \u001b$(QtY\u001b(B \u001b$(QtZ\u001b(B \u001b$(Qt[\u001b(B \u001b$(Qt\\\u001b(B \u001b$(Qt]\u001b(B \u001b$(Qt^\u001b(B \u001b$(Qt_\u001b(B\n\u001b$(Qt`\u001b(B \u001b$(Qta\u001b(B \u001b$(Qtb\u001b(B \u001b$(Qtc\u001b(B \u001b$(Qtd\u001b(B \u001b$(Qte\u001b(B \u001b$(Qtf\u001b(B \u001b$(Qtg\u001b(B \u001b$(Qth\u001b(B \u001b$(Qti\u001b(B \u001b$(Qtj\u001b(B \u001b$(Qtk\u001b(B \u001b$(Qtl\u001b(B \u001b$(Qtm\u001b(B \u001b$(Qtn\u001b(B \u001b$(Qto\u001b(B\n\u001b$(Qtp\u001b(B \u001b$(Qtq\u001b(B \u001b$(Qtr\u001b(B \u001b$(Qts\u001b(B \u001b$(Qtt\u001b(B \u001b$(Qtu\u001b(B \u001b$(Qtv\u001b(B \u001b$(Qtw\u001b(B \u001b$(Qtx\u001b(B \u001b$(Qty\u001b(B \u001b$(Qtz\u001b(B \u001b$(Qt{\u001b(B \u001b$(Qt|\u001b(B \u001b$(Qt}\u001b(B \u001b$(Qt~\u001b(B\n   \u001b$(Qu!\u001b(B \u001b$(Qu\"\u001b(B \u001b$(Qu#\u001b(B \u001b$(Qu$\u001b(B \u001b$(Qu%\u001b(B \u001b$(Qu&\u001b(B \u001b$(Qu'\u001b(B \u001b$(Qu(\u001b(B \u001b$(Qu)\u001b(B \u001b$(Qu*\u001b(B \u001b$(Qu+\u001b(B \u001b$(Qu,\u001b(B \u001b$(Qu-\u001b(B \u001b$(Qu.\u001b(B \u001b$(Qu/\u001b(B\n\u001b$(Qu0\u001b(B \u001b$(Qu1\u001b(B \u001b$(Qu2\u001b(B \u001b$(Qu3\u001b(B \u001b$(Qu4\u001b(B \u001b$(Qu5\u001b(B \u001b$(Qu6\u001b(B \u001b$(Qu7\u001b(B \u001b$(Qu8\u001b(B \u001b$(Qu9\u001b(B \u001b$(Qu:\u001b(B \u001b$(Qu;\u001b(B \u001b$(Qu<\u001b(B \u001b$(Qu=\u001b(B \u001b$(Qu>\u001b(B \u001b$(Qu?\u001b(B\n\u001b$(Qu@\u001b(B \u001b$(QuA\u001b(B \u001b$(QuB\u001b(B \u001b$(QuC\u001b(B \u001b$(QuD\u001b(B \u001b$(QuE\u001b(B \u001b$(QuF\u001b(B \u001b$(QuG\u001b(B \u001b$(QuH\u001b(B \u001b$(QuI\u001b(B \u001b$(QuJ\u001b(B \u001b$(QuK\u001b(B \u001b$(QuL\u001b(B \u001b$(QuM\u001b(B \u001b$(QuN\u001b(B \u001b$(QuO\u001b(B\n\u001b$(QuP\u001b(B \u001b$(QuQ\u001b(B \u001b$(QuR\u001b(B \u001b$(QuS\u001b(B \u001b$(QuT\u001b(B \u001b$(QuU\u001b(B \u001b$(QuV\u001b(B \u001b$(QuW\u001b(B \u001b$(QuX\u001b(B \u001b$(QuY\u001b(B \u001b$(QuZ\u001b(B \u001b$(Qu[\u001b(B \u001b$(Qu\\\u001b(B \u001b$(Qu]\u001b(B \u001b$(Qu^\u001b(B \u001b$(Qu_\u001b(B\n\u001b$(Qu`\u001b(B \u001b$(Qua\u001b(B \u001b$(Qub\u001b(B \u001b$(Quc\u001b(B \u001b$(Qud\u001b(B \u001b$(Que\u001b(B \u001b$(Quf\u001b(B \u001b$(Qug\u001b(B \u001b$(Quh\u001b(B \u001b$(Qui\u001b(B \u001b$(Quj\u001b(B \u001b$(Quk\u001b(B \u001b$(Qul\u001b(B \u001b$(Qum\u001b(B \u001b$(Qun\u001b(B \u001b$(Quo\u001b(B\n\u001b$(Qup\u001b(B \u001b$(Quq\u001b(B \u001b$(Qur\u001b(B \u001b$(Qus\u001b(B \u001b$(Qut\u001b(B \u001b$(Quu\u001b(B \u001b$(Quv\u001b(B \u001b$(Quw\u001b(B \u001b$(Qux\u001b(B \u001b$(Quy\u001b(B \u001b$(Quz\u001b(B \u001b$(Qu{\u001b(B \u001b$(Qu|\u001b(B \u001b$(Qu}\u001b(B \u001b$(Qu~\u001b(B\n   \u001b$(Qv!\u001b(B \u001b$(Qv\"\u001b(B \u001b$(Qv#\u001b(B \u001b$(Qv$\u001b(B \u001b$(Qv%\u001b(B \u001b$(Qv&\u001b(B \u001b$(Qv'\u001b(B \u001b$(Qv(\u001b(B \u001b$(Qv)\u001b(B \u001b$(Qv*\u001b(B \u001b$(Qv+\u001b(B \u001b$(Qv,\u001b(B \u001b$(Qv-\u001b(B \u001b$(Qv.\u001b(B \u001b$(Qv/\u001b(B\n\u001b$(Qv0\u001b(B \u001b$(Qv1\u001b(B \u001b$(Qv2\u001b(B \u001b$(Qv3\u001b(B \u001b$(Qv4\u001b(B \u001b$(Qv5\u001b(B \u001b$(Qv6\u001b(B \u001b$(Qv7\u001b(B \u001b$(Qv8\u001b(B \u001b$(Qv9\u001b(B \u001b$(Qv:\u001b(B \u001b$(Qv;\u001b(B \u001b$(Qv<\u001b(B \u001b$(Qv=\u001b(B \u001b$(Qv>\u001b(B \u001b$(Qv?\u001b(B\n\u001b$(Qv@\u001b(B \u001b$(QvA\u001b(B \u001b$(QvB\u001b(B \u001b$(QvC\u001b(B \u001b$(QvD\u001b(B \u001b$(QvE\u001b(B \u001b$(QvF\u001b(B \u001b$(QvG\u001b(B \u001b$(QvH\u001b(B \u001b$(QvI\u001b(B \u001b$(QvJ\u001b(B \u001b$(QvK\u001b(B \u001b$(QvL\u001b(B \u001b$(QvM\u001b(B \u001b$(QvN\u001b(B \u001b$(QvO\u001b(B\n\u001b$(QvP\u001b(B \u001b$(QvQ\u001b(B \u001b$(QvR\u001b(B \u001b$(QvS\u001b(B \u001b$(QvT\u001b(B \u001b$(QvU\u001b(B \u001b$(QvV\u001b(B \u001b$(QvW\u001b(B \u001b$(QvX\u001b(B \u001b$(QvY\u001b(B \u001b$(QvZ\u001b(B \u001b$(Qv[\u001b(B \u001b$(Qv\\\u001b(B \u001b$(Qv]\u001b(B \u001b$(Qv^\u001b(B \u001b$(Qv_\u001b(B\n\u001b$(Qv`\u001b(B \u001b$(Qva\u001b(B \u001b$(Qvb\u001b(B \u001b$(Qvc\u001b(B \u001b$(Qvd\u001b(B \u001b$(Qve\u001b(B \u001b$(Qvf\u001b(B \u001b$(Qvg\u001b(B \u001b$(Qvh\u001b(B \u001b$(Qvi\u001b(B \u001b$(Qvj\u001b(B \u001b$(Qvk\u001b(B \u001b$(Qvl\u001b(B \u001b$(Qvm\u001b(B \u001b$(Qvn\u001b(B \u001b$(Qvo\u001b(B\n\u001b$(Qvp\u001b(B \u001b$(Qvq\u001b(B \u001b$(Qvr\u001b(B \u001b$(Qvs\u001b(B \u001b$(Qvt\u001b(B \u001b$(Qvu\u001b(B \u001b$(Qvv\u001b(B \u001b$(Qvw\u001b(B \u001b$(Qvx\u001b(B \u001b$(Qvy\u001b(B \u001b$(Qvz\u001b(B \u001b$(Qv{\u001b(B \u001b$(Qv|\u001b(B \u001b$(Qv}\u001b(B \u001b$(Qv~\u001b(B\n   \u001b$(Qw!\u001b(B \u001b$(Qw\"\u001b(B \u001b$(Qw#\u001b(B \u001b$(Qw$\u001b(B \u001b$(Qw%\u001b(B \u001b$(Qw&\u001b(B \u001b$(Qw'\u001b(B \u001b$(Qw(\u001b(B \u001b$(Qw)\u001b(B \u001b$(Qw*\u001b(B \u001b$(Qw+\u001b(B \u001b$(Qw,\u001b(B \u001b$(Qw-\u001b(B \u001b$(Qw.\u001b(B \u001b$(Qw/\u001b(B\n\u001b$(Qw0\u001b(B \u001b$(Qw1\u001b(B \u001b$(Qw2\u001b(B \u001b$(Qw3\u001b(B \u001b$(Qw4\u001b(B \u001b$(Qw5\u001b(B \u001b$(Qw6\u001b(B \u001b$(Qw7\u001b(B \u001b$(Qw8\u001b(B \u001b$(Qw9\u001b(B \u001b$(Qw:\u001b(B \u001b$(Qw;\u001b(B \u001b$(Qw<\u001b(B \u001b$(Qw=\u001b(B \u001b$(Qw>\u001b(B \u001b$(Qw?\u001b(B\n\u001b$(Qw@\u001b(B \u001b$(QwA\u001b(B \u001b$(QwB\u001b(B \u001b$(QwC\u001b(B \u001b$(QwD\u001b(B \u001b$(QwE\u001b(B \u001b$(QwF\u001b(B \u001b$(QwG\u001b(B \u001b$(QwH\u001b(B \u001b$(QwI\u001b(B \u001b$(QwJ\u001b(B \u001b$(QwK\u001b(B \u001b$(QwL\u001b(B \u001b$(QwM\u001b(B \u001b$(QwN\u001b(B \u001b$(QwO\u001b(B\n\u001b$(QwP\u001b(B \u001b$(QwQ\u001b(B \u001b$(QwR\u001b(B \u001b$(QwS\u001b(B \u001b$(QwT\u001b(B \u001b$(QwU\u001b(B \u001b$(QwV\u001b(B \u001b$(QwW\u001b(B \u001b$(QwX\u001b(B \u001b$(QwY\u001b(B \u001b$(QwZ\u001b(B \u001b$(Qw[\u001b(B \u001b$(Qw\\\u001b(B \u001b$(Qw]\u001b(B \u001b$(Qw^\u001b(B \u001b$(Qw_\u001b(B\n\u001b$(Qw`\u001b(B \u001b$(Qwa\u001b(B \u001b$(Qwb\u001b(B \u001b$(Qwc\u001b(B \u001b$(Qwd\u001b(B \u001b$(Qwe\u001b(B \u001b$(Qwf\u001b(B \u001b$(Qwg\u001b(B \u001b$(Qwh\u001b(B \u001b$(Qwi\u001b(B \u001b$(Qwj\u001b(B \u001b$(Qwk\u001b(B \u001b$(Qwl\u001b(B \u001b$(Qwm\u001b(B \u001b$(Qwn\u001b(B \u001b$(Qwo\u001b(B\n\u001b$(Qwp\u001b(B \u001b$(Qwq\u001b(B \u001b$(Qwr\u001b(B \u001b$(Qws\u001b(B \u001b$(Qwt\u001b(B \u001b$(Qwu\u001b(B \u001b$(Qwv\u001b(B \u001b$(Qww\u001b(B \u001b$(Qwx\u001b(B \u001b$(Qwy\u001b(B \u001b$(Qwz\u001b(B \u001b$(Qw{\u001b(B \u001b$(Qw|\u001b(B \u001b$(Qw}\u001b(B \u001b$(Qw~\u001b(B\n   \u001b$(Qx!\u001b(B \u001b$(Qx\"\u001b(B \u001b$(Qx#\u001b(B \u001b$(Qx$\u001b(B \u001b$(Qx%\u001b(B \u001b$(Qx&\u001b(B \u001b$(Qx'\u001b(B \u001b$(Qx(\u001b(B \u001b$(Qx)\u001b(B \u001b$(Qx*\u001b(B \u001b$(Qx+\u001b(B \u001b$(Qx,\u001b(B \u001b$(Qx-\u001b(B \u001b$(Qx.\u001b(B \u001b$(Qx/\u001b(B\n\u001b$(Qx0\u001b(B \u001b$(Qx1\u001b(B \u001b$(Qx2\u001b(B \u001b$(Qx3\u001b(B \u001b$(Qx4\u001b(B \u001b$(Qx5\u001b(B \u001b$(Qx6\u001b(B \u001b$(Qx7\u001b(B \u001b$(Qx8\u001b(B \u001b$(Qx9\u001b(B \u001b$(Qx:\u001b(B \u001b$(Qx;\u001b(B \u001b$(Qx<\u001b(B \u001b$(Qx=\u001b(B \u001b$(Qx>\u001b(B \u001b$(Qx?\u001b(B\n\u001b$(Qx@\u001b(B \u001b$(QxA\u001b(B \u001b$(QxB\u001b(B \u001b$(QxC\u001b(B \u001b$(QxD\u001b(B \u001b$(QxE\u001b(B \u001b$(QxF\u001b(B \u001b$(QxG\u001b(B \u001b$(QxH\u001b(B \u001b$(QxI\u001b(B \u001b$(QxJ\u001b(B \u001b$(QxK\u001b(B \u001b$(QxL\u001b(B \u001b$(QxM\u001b(B \u001b$(QxN\u001b(B \u001b$(QxO\u001b(B\n\u001b$(QxP\u001b(B \u001b$(QxQ\u001b(B \u001b$(QxR\u001b(B \u001b$(QxS\u001b(B \u001b$(QxT\u001b(B \u001b$(QxU\u001b(B \u001b$(QxV\u001b(B \u001b$(QxW\u001b(B \u001b$(QxX\u001b(B \u001b$(QxY\u001b(B \u001b$(QxZ\u001b(B \u001b$(Qx[\u001b(B \u001b$(Qx\\\u001b(B \u001b$(Qx]\u001b(B \u001b$(Qx^\u001b(B \u001b$(Qx_\u001b(B\n\u001b$(Qx`\u001b(B \u001b$(Qxa\u001b(B \u001b$(Qxb\u001b(B \u001b$(Qxc\u001b(B \u001b$(Qxd\u001b(B \u001b$(Qxe\u001b(B \u001b$(Qxf\u001b(B \u001b$(Qxg\u001b(B \u001b$(Qxh\u001b(B \u001b$(Qxi\u001b(B \u001b$(Qxj\u001b(B \u001b$(Qxk\u001b(B \u001b$(Qxl\u001b(B \u001b$(Qxm\u001b(B \u001b$(Qxn\u001b(B \u001b$(Qxo\u001b(B\n\u001b$(Qxp\u001b(B \u001b$(Qxq\u001b(B \u001b$(Qxr\u001b(B \u001b$(Qxs\u001b(B \u001b$(Qxt\u001b(B \u001b$(Qxu\u001b(B \u001b$(Qxv\u001b(B \u001b$(Qxw\u001b(B \u001b$(Qxx\u001b(B \u001b$(Qxy\u001b(B \u001b$(Qxz\u001b(B \u001b$(Qx{\u001b(B \u001b$(Qx|\u001b(B \u001b$(Qx}\u001b(B \u001b$(Qx~\u001b(B\n   \u001b$(Qy!\u001b(B \u001b$(Qy\"\u001b(B \u001b$(Qy#\u001b(B \u001b$(Qy$\u001b(B \u001b$(Qy%\u001b(B \u001b$(Qy&\u001b(B \u001b$(Qy'\u001b(B \u001b$(Qy(\u001b(B \u001b$(Qy)\u001b(B \u001b$(Qy*\u001b(B \u001b$(Qy+\u001b(B \u001b$(Qy,\u001b(B \u001b$(Qy-\u001b(B \u001b$(Qy.\u001b(B \u001b$(Qy/\u001b(B\n\u001b$(Qy0\u001b(B \u001b$(Qy1\u001b(B \u001b$(Qy2\u001b(B \u001b$(Qy3\u001b(B \u001b$(Qy4\u001b(B \u001b$(Qy5\u001b(B \u001b$(Qy6\u001b(B \u001b$(Qy7\u001b(B \u001b$(Qy8\u001b(B \u001b$(Qy9\u001b(B \u001b$(Qy:\u001b(B \u001b$(Qy;\u001b(B \u001b$(Qy<\u001b(B \u001b$(Qy=\u001b(B \u001b$(Qy>\u001b(B \u001b$(Qy?\u001b(B\n\u001b$(Qy@\u001b(B \u001b$(QyA\u001b(B \u001b$(QyB\u001b(B \u001b$(QyC\u001b(B \u001b$(QyD\u001b(B \u001b$(QyE\u001b(B \u001b$(QyF\u001b(B \u001b$(QyG\u001b(B \u001b$(QyH\u001b(B \u001b$(QyI\u001b(B \u001b$(QyJ\u001b(B \u001b$(QyK\u001b(B \u001b$(QyL\u001b(B \u001b$(QyM\u001b(B \u001b$(QyN\u001b(B \u001b$(QyO\u001b(B\n\u001b$(QyP\u001b(B \u001b$(QyQ\u001b(B \u001b$(QyR\u001b(B \u001b$(QyS\u001b(B \u001b$(QyT\u001b(B \u001b$(QyU\u001b(B \u001b$(QyV\u001b(B \u001b$(QyW\u001b(B \u001b$(QyX\u001b(B \u001b$(QyY\u001b(B \u001b$(QyZ\u001b(B \u001b$(Qy[\u001b(B \u001b$(Qy\\\u001b(B \u001b$(Qy]\u001b(B \u001b$(Qy^\u001b(B \u001b$(Qy_\u001b(B\n\u001b$(Qy`\u001b(B \u001b$(Qya\u001b(B \u001b$(Qyb\u001b(B \u001b$(Qyc\u001b(B \u001b$(Qyd\u001b(B \u001b$(Qye\u001b(B \u001b$(Qyf\u001b(B \u001b$(Qyg\u001b(B \u001b$(Qyh\u001b(B \u001b$(Qyi\u001b(B \u001b$(Qyj\u001b(B \u001b$(Qyk\u001b(B \u001b$(Qyl\u001b(B \u001b$(Qym\u001b(B \u001b$(Qyn\u001b(B \u001b$(Qyo\u001b(B\n\u001b$(Qyp\u001b(B \u001b$(Qyq\u001b(B \u001b$(Qyr\u001b(B \u001b$(Qys\u001b(B \u001b$(Qyt\u001b(B \u001b$(Qyu\u001b(B \u001b$(Qyv\u001b(B \u001b$(Qyw\u001b(B \u001b$(Qyx\u001b(B \u001b$(Qyy\u001b(B \u001b$(Qyz\u001b(B \u001b$(Qy{\u001b(B \u001b$(Qy|\u001b(B \u001b$(Qy}\u001b(B \u001b$(Qy~\u001b(B\n   \u001b$(Qz!\u001b(B \u001b$(Qz\"\u001b(B \u001b$(Qz#\u001b(B \u001b$(Qz$\u001b(B \u001b$(Qz%\u001b(B \u001b$(Qz&\u001b(B \u001b$(Qz'\u001b(B \u001b$(Qz(\u001b(B \u001b$(Qz)\u001b(B \u001b$(Qz*\u001b(B \u001b$(Qz+\u001b(B \u001b$(Qz,\u001b(B \u001b$(Qz-\u001b(B \u001b$(Qz.\u001b(B \u001b$(Qz/\u001b(B\n\u001b$(Qz0\u001b(B \u001b$(Qz1\u001b(B \u001b$(Qz2\u001b(B \u001b$(Qz3\u001b(B \u001b$(Qz4\u001b(B \u001b$(Qz5\u001b(B \u001b$(Qz6\u001b(B \u001b$(Qz7\u001b(B \u001b$(Qz8\u001b(B \u001b$(Qz9\u001b(B \u001b$(Qz:\u001b(B \u001b$(Qz;\u001b(B \u001b$(Qz<\u001b(B \u001b$(Qz=\u001b(B \u001b$(Qz>\u001b(B \u001b$(Qz?\u001b(B\n\u001b$(Qz@\u001b(B \u001b$(QzA\u001b(B \u001b$(QzB\u001b(B \u001b$(QzC\u001b(B \u001b$(QzD\u001b(B \u001b$(QzE\u001b(B \u001b$(QzF\u001b(B \u001b$(QzG\u001b(B \u001b$(QzH\u001b(B \u001b$(QzI\u001b(B \u001b$(QzJ\u001b(B \u001b$(QzK\u001b(B \u001b$(QzL\u001b(B \u001b$(QzM\u001b(B \u001b$(QzN\u001b(B \u001b$(QzO\u001b(B\n\u001b$(QzP\u001b(B \u001b$(QzQ\u001b(B \u001b$(QzR\u001b(B \u001b$(QzS\u001b(B \u001b$(QzT\u001b(B \u001b$(QzU\u001b(B \u001b$(QzV\u001b(B \u001b$(QzW\u001b(B \u001b$(QzX\u001b(B \u001b$(QzY\u001b(B \u001b$(QzZ\u001b(B \u001b$(Qz[\u001b(B \u001b$(Qz\\\u001b(B \u001b$(Qz]\u001b(B \u001b$(Qz^\u001b(B \u001b$(Qz_\u001b(B\n\u001b$(Qz`\u001b(B \u001b$(Qza\u001b(B \u001b$(Qzb\u001b(B \u001b$(Qzc\u001b(B \u001b$(Qzd\u001b(B \u001b$(Qze\u001b(B \u001b$(Qzf\u001b(B \u001b$(Qzg\u001b(B \u001b$(Qzh\u001b(B \u001b$(Qzi\u001b(B \u001b$(Qzj\u001b(B \u001b$(Qzk\u001b(B \u001b$(Qzl\u001b(B \u001b$(Qzm\u001b(B \u001b$(Qzn\u001b(B \u001b$(Qzo\u001b(B\n\u001b$(Qzp\u001b(B \u001b$(Qzq\u001b(B \u001b$(Qzr\u001b(B \u001b$(Qzs\u001b(B \u001b$(Qzt\u001b(B \u001b$(Qzu\u001b(B \u001b$(Qzv\u001b(B \u001b$(Qzw\u001b(B \u001b$(Qzx\u001b(B \u001b$(Qzy\u001b(B \u001b$(Qzz\u001b(B \u001b$(Qz{\u001b(B \u001b$(Qz|\u001b(B \u001b$(Qz}\u001b(B \u001b$(Qz~\u001b(B\n   \u001b$(Q{!\u001b(B \u001b$(Q{\"\u001b(B \u001b$(Q{#\u001b(B \u001b$(Q{$\u001b(B \u001b$(Q{%\u001b(B \u001b$(Q{&\u001b(B \u001b$(Q{'\u001b(B \u001b$(Q{(\u001b(B \u001b$(Q{)\u001b(B \u001b$(Q{*\u001b(B \u001b$(Q{+\u001b(B \u001b$(Q{,\u001b(B \u001b$(Q{-\u001b(B \u001b$(Q{.\u001b(B \u001b$(Q{/\u001b(B\n\u001b$(Q{0\u001b(B \u001b$(Q{1\u001b(B \u001b$(Q{2\u001b(B \u001b$(Q{3\u001b(B \u001b$(Q{4\u001b(B \u001b$(Q{5\u001b(B \u001b$(Q{6\u001b(B \u001b$(Q{7\u001b(B \u001b$(Q{8\u001b(B \u001b$(Q{9\u001b(B \u001b$(Q{:\u001b(B \u001b$(Q{;\u001b(B \u001b$(Q{<\u001b(B \u001b$(Q{=\u001b(B \u001b$(Q{>\u001b(B \u001b$(Q{?\u001b(B\n\u001b$(Q{@\u001b(B \u001b$(Q{A\u001b(B \u001b$(Q{B\u001b(B \u001b$(Q{C\u001b(B \u001b$(Q{D\u001b(B \u001b$(Q{E\u001b(B \u001b$(Q{F\u001b(B \u001b$(Q{G\u001b(B \u001b$(Q{H\u001b(B \u001b$(Q{I\u001b(B \u001b$(Q{J\u001b(B \u001b$(Q{K\u001b(B \u001b$(Q{L\u001b(B \u001b$(Q{M\u001b(B \u001b$(Q{N\u001b(B \u001b$(Q{O\u001b(B\n\u001b$(Q{P\u001b(B \u001b$(Q{Q\u001b(B \u001b$(Q{R\u001b(B \u001b$(Q{S\u001b(B \u001b$(Q{T\u001b(B \u001b$(Q{U\u001b(B \u001b$(Q{V\u001b(B \u001b$(Q{W\u001b(B \u001b$(Q{X\u001b(B \u001b$(Q{Y\u001b(B \u001b$(Q{Z\u001b(B \u001b$(Q{[\u001b(B \u001b$(Q{\\\u001b(B \u001b$(Q{]\u001b(B \u001b$(Q{^\u001b(B \u001b$(Q{_\u001b(B\n\u001b$(Q{`\u001b(B \u001b$(Q{a\u001b(B \u001b$(Q{b\u001b(B \u001b$(Q{c\u001b(B \u001b$(Q{d\u001b(B \u001b$(Q{e\u001b(B \u001b$(Q{f\u001b(B \u001b$(Q{g\u001b(B \u001b$(Q{h\u001b(B \u001b$(Q{i\u001b(B \u001b$(Q{j\u001b(B \u001b$(Q{k\u001b(B \u001b$(Q{l\u001b(B \u001b$(Q{m\u001b(B \u001b$(Q{n\u001b(B \u001b$(Q{o\u001b(B\n\u001b$(Q{p\u001b(B \u001b$(Q{q\u001b(B \u001b$(Q{r\u001b(B \u001b$(Q{s\u001b(B \u001b$(Q{t\u001b(B \u001b$(Q{u\u001b(B \u001b$(Q{v\u001b(B \u001b$(Q{w\u001b(B \u001b$(Q{x\u001b(B \u001b$(Q{y\u001b(B \u001b$(Q{z\u001b(B \u001b$(Q{{\u001b(B \u001b$(Q{|\u001b(B \u001b$(Q{}\u001b(B \u001b$(Q{~\u001b(B\n   \u001b$(Q|!\u001b(B \u001b$(Q|\"\u001b(B \u001b$(Q|#\u001b(B \u001b$(Q|$\u001b(B \u001b$(Q|%\u001b(B \u001b$(Q|&\u001b(B \u001b$(Q|'\u001b(B \u001b$(Q|(\u001b(B \u001b$(Q|)\u001b(B \u001b$(Q|*\u001b(B \u001b$(Q|+\u001b(B \u001b$(Q|,\u001b(B \u001b$(Q|-\u001b(B \u001b$(Q|.\u001b(B \u001b$(Q|/\u001b(B\n\u001b$(Q|0\u001b(B \u001b$(Q|1\u001b(B \u001b$(Q|2\u001b(B \u001b$(Q|3\u001b(B \u001b$(Q|4\u001b(B \u001b$(Q|5\u001b(B \u001b$(Q|6\u001b(B \u001b$(Q|7\u001b(B \u001b$(Q|8\u001b(B \u001b$(Q|9\u001b(B \u001b$(Q|:\u001b(B \u001b$(Q|;\u001b(B \u001b$(Q|<\u001b(B \u001b$(Q|=\u001b(B \u001b$(Q|>\u001b(B \u001b$(Q|?\u001b(B\n\u001b$(Q|@\u001b(B \u001b$(Q|A\u001b(B \u001b$(Q|B\u001b(B \u001b$(Q|C\u001b(B \u001b$(Q|D\u001b(B \u001b$(Q|E\u001b(B \u001b$(Q|F\u001b(B \u001b$(Q|G\u001b(B \u001b$(Q|H\u001b(B \u001b$(Q|I\u001b(B \u001b$(Q|J\u001b(B \u001b$(Q|K\u001b(B \u001b$(Q|L\u001b(B \u001b$(Q|M\u001b(B \u001b$(Q|N\u001b(B \u001b$(Q|O\u001b(B\n\u001b$(Q|P\u001b(B \u001b$(Q|Q\u001b(B \u001b$(Q|R\u001b(B \u001b$(Q|S\u001b(B \u001b$(Q|T\u001b(B \u001b$(Q|U\u001b(B \u001b$(Q|V\u001b(B \u001b$(Q|W\u001b(B \u001b$(Q|X\u001b(B \u001b$(Q|Y\u001b(B \u001b$(Q|Z\u001b(B \u001b$(Q|[\u001b(B \u001b$(Q|\\\u001b(B \u001b$(Q|]\u001b(B \u001b$(Q|^\u001b(B \u001b$(Q|_\u001b(B\n\u001b$(Q|`\u001b(B \u001b$(Q|a\u001b(B \u001b$(Q|b\u001b(B \u001b$(Q|c\u001b(B \u001b$(Q|d\u001b(B \u001b$(Q|e\u001b(B \u001b$(Q|f\u001b(B \u001b$(Q|g\u001b(B \u001b$(Q|h\u001b(B \u001b$(Q|i\u001b(B \u001b$(Q|j\u001b(B \u001b$(Q|k\u001b(B \u001b$(Q|l\u001b(B \u001b$(Q|m\u001b(B \u001b$(Q|n\u001b(B \u001b$(Q|o\u001b(B\n\u001b$(Q|p\u001b(B \u001b$(Q|q\u001b(B \u001b$(Q|r\u001b(B \u001b$(Q|s\u001b(B \u001b$(Q|t\u001b(B \u001b$(Q|u\u001b(B \u001b$(Q|v\u001b(B \u001b$(Q|w\u001b(B \u001b$(Q|x\u001b(B \u001b$(Q|y\u001b(B \u001b$(Q|z\u001b(B \u001b$(Q|{\u001b(B \u001b$(Q||\u001b(B \u001b$(Q|}\u001b(B \u001b$(Q|~\u001b(B\n   \u001b$(Q}!\u001b(B \u001b$(Q}\"\u001b(B \u001b$(Q}#\u001b(B \u001b$(Q}$\u001b(B \u001b$(Q}%\u001b(B \u001b$(Q}&\u001b(B \u001b$(Q}'\u001b(B \u001b$(Q}(\u001b(B \u001b$(Q})\u001b(B \u001b$(Q}*\u001b(B \u001b$(Q}+\u001b(B \u001b$(Q},\u001b(B \u001b$(Q}-\u001b(B \u001b$(Q}.\u001b(B \u001b$(Q}/\u001b(B\n\u001b$(Q}0\u001b(B \u001b$(Q}1\u001b(B \u001b$(Q}2\u001b(B \u001b$(Q}3\u001b(B \u001b$(Q}4\u001b(B \u001b$(Q}5\u001b(B \u001b$(Q}6\u001b(B \u001b$(Q}7\u001b(B \u001b$(Q}8\u001b(B \u001b$(Q}9\u001b(B \u001b$(Q}:\u001b(B \u001b$(Q};\u001b(B \u001b$(Q}<\u001b(B \u001b$(Q}=\u001b(B \u001b$(Q}>\u001b(B \u001b$(Q}?\u001b(B\n\u001b$(Q}@\u001b(B \u001b$(Q}A\u001b(B \u001b$(Q}B\u001b(B \u001b$(Q}C\u001b(B \u001b$(Q}D\u001b(B \u001b$(Q}E\u001b(B \u001b$(Q}F\u001b(B \u001b$(Q}G\u001b(B \u001b$(Q}H\u001b(B \u001b$(Q}I\u001b(B \u001b$(Q}J\u001b(B \u001b$(Q}K\u001b(B \u001b$(Q}L\u001b(B \u001b$(Q}M\u001b(B \u001b$(Q}N\u001b(B \u001b$(Q}O\u001b(B\n\u001b$(Q}P\u001b(B \u001b$(Q}Q\u001b(B \u001b$(Q}R\u001b(B \u001b$(Q}S\u001b(B \u001b$(Q}T\u001b(B \u001b$(Q}U\u001b(B \u001b$(Q}V\u001b(B \u001b$(Q}W\u001b(B \u001b$(Q}X\u001b(B \u001b$(Q}Y\u001b(B \u001b$(Q}Z\u001b(B \u001b$(Q}[\u001b(B \u001b$(Q}\\\u001b(B \u001b$(Q}]\u001b(B \u001b$(Q}^\u001b(B \u001b$(Q}_\u001b(B\n\u001b$(Q}`\u001b(B \u001b$(Q}a\u001b(B \u001b$(Q}b\u001b(B \u001b$(Q}c\u001b(B \u001b$(Q}d\u001b(B \u001b$(Q}e\u001b(B \u001b$(Q}f\u001b(B \u001b$(Q}g\u001b(B \u001b$(Q}h\u001b(B \u001b$(Q}i\u001b(B \u001b$(Q}j\u001b(B \u001b$(Q}k\u001b(B \u001b$(Q}l\u001b(B \u001b$(Q}m\u001b(B \u001b$(Q}n\u001b(B \u001b$(Q}o\u001b(B\n\u001b$(Q}p\u001b(B \u001b$(Q}q\u001b(B \u001b$(Q}r\u001b(B \u001b$(Q}s\u001b(B \u001b$(Q}t\u001b(B \u001b$(Q}u\u001b(B \u001b$(Q}v\u001b(B \u001b$(Q}w\u001b(B \u001b$(Q}x\u001b(B \u001b$(Q}y\u001b(B \u001b$(Q}z\u001b(B \u001b$(Q}{\u001b(B \u001b$(Q}|\u001b(B \u001b$(Q}}\u001b(B \u001b$(Q}~\u001b(B\n   \u001b$(Q~!\u001b(B \u001b$(Q~\"\u001b(B \u001b$(Q~#\u001b(B \u001b$(Q~$\u001b(B \u001b$(Q~%\u001b(B \u001b$(Q~&\u001b(B \u001b$(Q~'\u001b(B \u001b$(Q~(\u001b(B \u001b$(Q~)\u001b(B \u001b$(Q~*\u001b(B \u001b$(Q~+\u001b(B \u001b$(Q~,\u001b(B \u001b$(Q~-\u001b(B \u001b$(Q~.\u001b(B \u001b$(Q~/\u001b(B\n\u001b$(Q~0\u001b(B \u001b$(Q~1\u001b(B \u001b$(Q~2\u001b(B \u001b$(Q~3\u001b(B \u001b$(Q~4\u001b(B \u001b$(Q~5\u001b(B \u001b$(Q~6\u001b(B \u001b$(Q~7\u001b(B \u001b$(Q~8\u001b(B \u001b$(Q~9\u001b(B \u001b$(Q~:\u001b(B \u001b$(Q~;\u001b(B \u001b$(Q~<\u001b(B \u001b$(Q~=\u001b(B \u001b$(Q~>\u001b(B \u001b$(Q~?\u001b(B\n\u001b$(Q~@\u001b(B \u001b$(Q~A\u001b(B \u001b$(Q~B\u001b(B \u001b$(Q~C\u001b(B \u001b$(Q~D\u001b(B \u001b$(Q~E\u001b(B \u001b$(Q~F\u001b(B \u001b$(Q~G\u001b(B \u001b$(Q~H\u001b(B \u001b$(Q~I\u001b(B \u001b$(Q~J\u001b(B \u001b$(Q~K\u001b(B \u001b$(Q~L\u001b(B \u001b$(Q~M\u001b(B \u001b$(Q~N\u001b(B \u001b$(Q~O\u001b(B\n\u001b$(Q~P\u001b(B \u001b$(Q~Q\u001b(B \u001b$(Q~R\u001b(B \u001b$(Q~S\u001b(B \u001b$(Q~T\u001b(B \u001b$(Q~U\u001b(B \u001b$(Q~V\u001b(B \u001b$(Q~W\u001b(B \u001b$(Q~X\u001b(B \u001b$(Q~Y\u001b(B \u001b$(Q~Z\u001b(B \u001b$(Q~[\u001b(B \u001b$(Q~\\\u001b(B \u001b$(Q~]\u001b(B \u001b$(Q~^\u001b(B \u001b$(Q~_\u001b(B\n\u001b$(Q~`\u001b(B \u001b$(Q~a\u001b(B \u001b$(Q~b\u001b(B \u001b$(Q~c\u001b(B \u001b$(Q~d\u001b(B \u001b$(Q~e\u001b(B \u001b$(Q~f\u001b(B \u001b$(Q~g\u001b(B \u001b$(Q~h\u001b(B \u001b$(Q~i\u001b(B \u001b$(Q~j\u001b(B \u001b$(Q~k\u001b(B \u001b$(Q~l\u001b(B \u001b$(Q~m\u001b(B \u001b$(Q~n\u001b(B \u001b$(Q~o\u001b(B\n\u001b$(Q~p\u001b(B \u001b$(Q~q\u001b(B \u001b$(Q~r\u001b(B \u001b$(Q~s\u001b(B \u001b$(Q~t\u001b(B \u001b$(Q~u\u001b(B \u001b$(Q~v\u001b(B \u001b$(Q~w\u001b(B \u001b$(Q~x\u001b(B \u001b$(Q~y\u001b(B\n   \u001b$(P!!\u001b(B \u001b$(P!\"\u001b(B \u001b$(P!#\u001b(B \u001b$(P!$\u001b(B \u001b$(P!%\u001b(B \u001b$(P!&\u001b(B \u001b$(P!'\u001b(B \u001b$(P!(\u001b(B \u001b$(P!)\u001b(B \u001b$(P!*\u001b(B \u001b$(P!+\u001b(B \u001b$(P!,\u001b(B \u001b$(P!-\u001b(B \u001b$(P!.\u001b(B \u001b$(P!/\u001b(B\n\u001b$(P!0\u001b(B \u001b$(P!1\u001b(B \u001b$(P!2\u001b(B \u001b$(P!3\u001b(B \u001b$(P!4\u001b(B \u001b$(P!5\u001b(B \u001b$(P!6\u001b(B \u001b$(P!7\u001b(B \u001b$(P!8\u001b(B \u001b$(P!9\u001b(B \u001b$(P!:\u001b(B \u001b$(P!;\u001b(B \u001b$(P!<\u001b(B \u001b$(P!=\u001b(B \u001b$(P!>\u001b(B \u001b$(P!?\u001b(B\n\u001b$(P!@\u001b(B \u001b$(P!A\u001b(B \u001b$(P!B\u001b(B \u001b$(P!C\u001b(B \u001b$(P!D\u001b(B \u001b$(P!E\u001b(B \u001b$(P!F\u001b(B \u001b$(P!G\u001b(B \u001b$(P!H\u001b(B \u001b$(P!I\u001b(B \u001b$(P!J\u001b(B \u001b$(P!K\u001b(B \u001b$(P!L\u001b(B \u001b$(P!M\u001b(B \u001b$(P!N\u001b(B \u001b$(P!O\u001b(B\n\u001b$(P!P\u001b(B \u001b$(P!Q\u001b(B \u001b$(P!R\u001b(B \u001b$(P!S\u001b(B \u001b$(P!T\u001b(B \u001b$(P!U\u001b(B \u001b$(P!V\u001b(B \u001b$(P!W\u001b(B \u001b$(P!X\u001b(B \u001b$(P!Y\u001b(B \u001b$(P!Z\u001b(B \u001b$(P![\u001b(B \u001b$(P!\\\u001b(B \u001b$(P!]\u001b(B \u001b$(P!^\u001b(B \u001b$(P!_\u001b(B\n\u001b$(P!`\u001b(B \u001b$(P!a\u001b(B \u001b$(P!b\u001b(B \u001b$(P!c\u001b(B \u001b$(P!d\u001b(B \u001b$(P!e\u001b(B \u001b$(P!f\u001b(B \u001b$(P!g\u001b(B \u001b$(P!h\u001b(B \u001b$(P!i\u001b(B \u001b$(P!j\u001b(B \u001b$(P!k\u001b(B \u001b$(P!l\u001b(B \u001b$(P!m\u001b(B \u001b$(P!n\u001b(B \u001b$(P!o\u001b(B\n\u001b$(P!p\u001b(B \u001b$(P!q\u001b(B \u001b$(P!r\u001b(B \u001b$(P!s\u001b(B \u001b$(P!t\u001b(B \u001b$(P!u\u001b(B \u001b$(P!v\u001b(B \u001b$(P!w\u001b(B \u001b$(P!x\u001b(B \u001b$(P!y\u001b(B \u001b$(P!z\u001b(B \u001b$(P!{\u001b(B \u001b$(P!|\u001b(B \u001b$(P!}\u001b(B \u001b$(P!~\u001b(B\n   \u001b$(P#!\u001b(B \u001b$(P#\"\u001b(B \u001b$(P##\u001b(B \u001b$(P#$\u001b(B \u001b$(P#%\u001b(B \u001b$(P#&\u001b(B \u001b$(P#'\u001b(B \u001b$(P#(\u001b(B \u001b$(P#)\u001b(B \u001b$(P#*\u001b(B \u001b$(P#+\u001b(B \u001b$(P#,\u001b(B \u001b$(P#-\u001b(B \u001b$(P#.\u001b(B \u001b$(P#/\u001b(B\n\u001b$(P#0\u001b(B \u001b$(P#1\u001b(B \u001b$(P#2\u001b(B \u001b$(P#3\u001b(B \u001b$(P#4\u001b(B \u001b$(P#5\u001b(B \u001b$(P#6\u001b(B \u001b$(P#7\u001b(B \u001b$(P#8\u001b(B \u001b$(P#9\u001b(B \u001b$(P#:\u001b(B \u001b$(P#;\u001b(B \u001b$(P#<\u001b(B \u001b$(P#=\u001b(B \u001b$(P#>\u001b(B \u001b$(P#?\u001b(B\n\u001b$(P#@\u001b(B \u001b$(P#A\u001b(B \u001b$(P#B\u001b(B \u001b$(P#C\u001b(B \u001b$(P#D\u001b(B \u001b$(P#E\u001b(B \u001b$(P#F\u001b(B \u001b$(P#G\u001b(B \u001b$(P#H\u001b(B \u001b$(P#I\u001b(B \u001b$(P#J\u001b(B \u001b$(P#K\u001b(B \u001b$(P#L\u001b(B \u001b$(P#M\u001b(B \u001b$(P#N\u001b(B \u001b$(P#O\u001b(B\n\u001b$(P#P\u001b(B \u001b$(P#Q\u001b(B \u001b$(P#R\u001b(B \u001b$(P#S\u001b(B \u001b$(P#T\u001b(B \u001b$(P#U\u001b(B \u001b$(P#V\u001b(B \u001b$(P#W\u001b(B \u001b$(P#X\u001b(B \u001b$(P#Y\u001b(B \u001b$(P#Z\u001b(B \u001b$(P#[\u001b(B \u001b$(P#\\\u001b(B \u001b$(P#]\u001b(B \u001b$(P#^\u001b(B \u001b$(P#_\u001b(B\n\u001b$(P#`\u001b(B \u001b$(P#a\u001b(B \u001b$(P#b\u001b(B \u001b$(P#c\u001b(B \u001b$(P#d\u001b(B \u001b$(P#e\u001b(B \u001b$(P#f\u001b(B \u001b$(P#g\u001b(B \u001b$(P#h\u001b(B \u001b$(P#i\u001b(B \u001b$(P#j\u001b(B \u001b$(P#k\u001b(B \u001b$(P#l\u001b(B \u001b$(P#m\u001b(B \u001b$(P#n\u001b(B \u001b$(P#o\u001b(B\n\u001b$(P#p\u001b(B \u001b$(P#q\u001b(B \u001b$(P#r\u001b(B \u001b$(P#s\u001b(B \u001b$(P#t\u001b(B \u001b$(P#u\u001b(B \u001b$(P#v\u001b(B \u001b$(P#w\u001b(B \u001b$(P#x\u001b(B \u001b$(P#y\u001b(B \u001b$(P#z\u001b(B \u001b$(P#{\u001b(B \u001b$(P#|\u001b(B \u001b$(P#}\u001b(B \u001b$(P#~\u001b(B\n   \u001b$(P$!\u001b(B \u001b$(P$\"\u001b(B \u001b$(P$#\u001b(B \u001b$(P$$\u001b(B \u001b$(P$%\u001b(B \u001b$(P$&\u001b(B \u001b$(P$'\u001b(B \u001b$(P$(\u001b(B \u001b$(P$)\u001b(B \u001b$(P$*\u001b(B \u001b$(P$+\u001b(B \u001b$(P$,\u001b(B \u001b$(P$-\u001b(B \u001b$(P$.\u001b(B \u001b$(P$/\u001b(B\n\u001b$(P$0\u001b(B \u001b$(P$1\u001b(B \u001b$(P$2\u001b(B \u001b$(P$3\u001b(B \u001b$(P$4\u001b(B \u001b$(P$5\u001b(B \u001b$(P$6\u001b(B \u001b$(P$7\u001b(B \u001b$(P$8\u001b(B \u001b$(P$9\u001b(B \u001b$(P$:\u001b(B \u001b$(P$;\u001b(B \u001b$(P$<\u001b(B \u001b$(P$=\u001b(B \u001b$(P$>\u001b(B \u001b$(P$?\u001b(B\n\u001b$(P$@\u001b(B \u001b$(P$A\u001b(B \u001b$(P$B\u001b(B \u001b$(P$C\u001b(B \u001b$(P$D\u001b(B \u001b$(P$E\u001b(B \u001b$(P$F\u001b(B \u001b$(P$G\u001b(B \u001b$(P$H\u001b(B \u001b$(P$I\u001b(B \u001b$(P$J\u001b(B \u001b$(P$K\u001b(B \u001b$(P$L\u001b(B \u001b$(P$M\u001b(B \u001b$(P$N\u001b(B \u001b$(P$O\u001b(B\n\u001b$(P$P\u001b(B \u001b$(P$Q\u001b(B \u001b$(P$R\u001b(B \u001b$(P$S\u001b(B \u001b$(P$T\u001b(B \u001b$(P$U\u001b(B \u001b$(P$V\u001b(B \u001b$(P$W\u001b(B \u001b$(P$X\u001b(B \u001b$(P$Y\u001b(B \u001b$(P$Z\u001b(B \u001b$(P$[\u001b(B \u001b$(P$\\\u001b(B \u001b$(P$]\u001b(B \u001b$(P$^\u001b(B \u001b$(P$_\u001b(B\n\u001b$(P$`\u001b(B \u001b$(P$a\u001b(B \u001b$(P$b\u001b(B \u001b$(P$c\u001b(B \u001b$(P$d\u001b(B \u001b$(P$e\u001b(B \u001b$(P$f\u001b(B \u001b$(P$g\u001b(B \u001b$(P$h\u001b(B \u001b$(P$i\u001b(B \u001b$(P$j\u001b(B \u001b$(P$k\u001b(B \u001b$(P$l\u001b(B \u001b$(P$m\u001b(B \u001b$(P$n\u001b(B \u001b$(P$o\u001b(B\n\u001b$(P$p\u001b(B \u001b$(P$q\u001b(B \u001b$(P$r\u001b(B \u001b$(P$s\u001b(B \u001b$(P$t\u001b(B \u001b$(P$u\u001b(B \u001b$(P$v\u001b(B \u001b$(P$w\u001b(B \u001b$(P$x\u001b(B \u001b$(P$y\u001b(B \u001b$(P$z\u001b(B \u001b$(P${\u001b(B \u001b$(P$|\u001b(B \u001b$(P$}\u001b(B \u001b$(P$~\u001b(B\n   \u001b$(P%!\u001b(B \u001b$(P%\"\u001b(B \u001b$(P%#\u001b(B \u001b$(P%$\u001b(B \u001b$(P%%\u001b(B \u001b$(P%&\u001b(B \u001b$(P%'\u001b(B \u001b$(P%(\u001b(B \u001b$(P%)\u001b(B \u001b$(P%*\u001b(B \u001b$(P%+\u001b(B \u001b$(P%,\u001b(B \u001b$(P%-\u001b(B \u001b$(P%.\u001b(B \u001b$(P%/\u001b(B\n\u001b$(P%0\u001b(B \u001b$(P%1\u001b(B \u001b$(P%2\u001b(B \u001b$(P%3\u001b(B \u001b$(P%4\u001b(B \u001b$(P%5\u001b(B \u001b$(P%6\u001b(B \u001b$(P%7\u001b(B \u001b$(P%8\u001b(B \u001b$(P%9\u001b(B \u001b$(P%:\u001b(B \u001b$(P%;\u001b(B \u001b$(P%<\u001b(B \u001b$(P%=\u001b(B \u001b$(P%>\u001b(B \u001b$(P%?\u001b(B\n\u001b$(P%@\u001b(B \u001b$(P%A\u001b(B \u001b$(P%B\u001b(B \u001b$(P%C\u001b(B \u001b$(P%D\u001b(B \u001b$(P%E\u001b(B \u001b$(P%F\u001b(B \u001b$(P%G\u001b(B \u001b$(P%H\u001b(B \u001b$(P%I\u001b(B \u001b$(P%J\u001b(B \u001b$(P%K\u001b(B \u001b$(P%L\u001b(B \u001b$(P%M\u001b(B \u001b$(P%N\u001b(B \u001b$(P%O\u001b(B\n\u001b$(P%P\u001b(B \u001b$(P%Q\u001b(B \u001b$(P%R\u001b(B \u001b$(P%S\u001b(B \u001b$(P%T\u001b(B \u001b$(P%U\u001b(B \u001b$(P%V\u001b(B \u001b$(P%W\u001b(B \u001b$(P%X\u001b(B \u001b$(P%Y\u001b(B \u001b$(P%Z\u001b(B \u001b$(P%[\u001b(B \u001b$(P%\\\u001b(B \u001b$(P%]\u001b(B \u001b$(P%^\u001b(B \u001b$(P%_\u001b(B\n\u001b$(P%`\u001b(B \u001b$(P%a\u001b(B \u001b$(P%b\u001b(B \u001b$(P%c\u001b(B \u001b$(P%d\u001b(B \u001b$(P%e\u001b(B \u001b$(P%f\u001b(B \u001b$(P%g\u001b(B \u001b$(P%h\u001b(B \u001b$(P%i\u001b(B \u001b$(P%j\u001b(B \u001b$(P%k\u001b(B \u001b$(P%l\u001b(B \u001b$(P%m\u001b(B \u001b$(P%n\u001b(B \u001b$(P%o\u001b(B\n\u001b$(P%p\u001b(B \u001b$(P%q\u001b(B \u001b$(P%r\u001b(B \u001b$(P%s\u001b(B \u001b$(P%t\u001b(B \u001b$(P%u\u001b(B \u001b$(P%v\u001b(B \u001b$(P%w\u001b(B \u001b$(P%x\u001b(B \u001b$(P%y\u001b(B \u001b$(P%z\u001b(B \u001b$(P%{\u001b(B \u001b$(P%|\u001b(B \u001b$(P%}\u001b(B \u001b$(P%~\u001b(B\n   \u001b$(P(!\u001b(B \u001b$(P(\"\u001b(B \u001b$(P(#\u001b(B \u001b$(P($\u001b(B \u001b$(P(%\u001b(B \u001b$(P(&\u001b(B \u001b$(P('\u001b(B \u001b$(P((\u001b(B \u001b$(P()\u001b(B \u001b$(P(*\u001b(B \u001b$(P(+\u001b(B \u001b$(P(,\u001b(B \u001b$(P(-\u001b(B \u001b$(P(.\u001b(B \u001b$(P(/\u001b(B\n\u001b$(P(0\u001b(B \u001b$(P(1\u001b(B \u001b$(P(2\u001b(B \u001b$(P(3\u001b(B \u001b$(P(4\u001b(B \u001b$(P(5\u001b(B \u001b$(P(6\u001b(B \u001b$(P(7\u001b(B \u001b$(P(8\u001b(B \u001b$(P(9\u001b(B \u001b$(P(:\u001b(B \u001b$(P(;\u001b(B \u001b$(P(<\u001b(B \u001b$(P(=\u001b(B \u001b$(P(>\u001b(B \u001b$(P(?\u001b(B\n\u001b$(P(@\u001b(B \u001b$(P(A\u001b(B \u001b$(P(B\u001b(B \u001b$(P(C\u001b(B \u001b$(P(D\u001b(B \u001b$(P(E\u001b(B \u001b$(P(F\u001b(B \u001b$(P(G\u001b(B \u001b$(P(H\u001b(B \u001b$(P(I\u001b(B \u001b$(P(J\u001b(B \u001b$(P(K\u001b(B \u001b$(P(L\u001b(B \u001b$(P(M\u001b(B \u001b$(P(N\u001b(B \u001b$(P(O\u001b(B\n\u001b$(P(P\u001b(B \u001b$(P(Q\u001b(B \u001b$(P(R\u001b(B \u001b$(P(S\u001b(B \u001b$(P(T\u001b(B \u001b$(P(U\u001b(B \u001b$(P(V\u001b(B \u001b$(P(W\u001b(B \u001b$(P(X\u001b(B \u001b$(P(Y\u001b(B \u001b$(P(Z\u001b(B \u001b$(P([\u001b(B \u001b$(P(\\\u001b(B \u001b$(P(]\u001b(B \u001b$(P(^\u001b(B \u001b$(P(_\u001b(B\n\u001b$(P(`\u001b(B \u001b$(P(a\u001b(B \u001b$(P(b\u001b(B \u001b$(P(c\u001b(B \u001b$(P(d\u001b(B \u001b$(P(e\u001b(B \u001b$(P(f\u001b(B \u001b$(P(g\u001b(B \u001b$(P(h\u001b(B \u001b$(P(i\u001b(B \u001b$(P(j\u001b(B \u001b$(P(k\u001b(B \u001b$(P(l\u001b(B \u001b$(P(m\u001b(B \u001b$(P(n\u001b(B \u001b$(P(o\u001b(B\n\u001b$(P(p\u001b(B \u001b$(P(q\u001b(B \u001b$(P(r\u001b(B \u001b$(P(s\u001b(B \u001b$(P(t\u001b(B \u001b$(P(u\u001b(B \u001b$(P(v\u001b(B \u001b$(P(w\u001b(B \u001b$(P(x\u001b(B \u001b$(P(y\u001b(B \u001b$(P(z\u001b(B \u001b$(P({\u001b(B \u001b$(P(|\u001b(B \u001b$(P(}\u001b(B \u001b$(P(~\u001b(B\n   \u001b$(P,!\u001b(B \u001b$(P,\"\u001b(B \u001b$(P,#\u001b(B \u001b$(P,$\u001b(B \u001b$(P,%\u001b(B \u001b$(P,&\u001b(B \u001b$(P,'\u001b(B \u001b$(P,(\u001b(B \u001b$(P,)\u001b(B \u001b$(P,*\u001b(B \u001b$(P,+\u001b(B \u001b$(P,,\u001b(B \u001b$(P,-\u001b(B \u001b$(P,.\u001b(B \u001b$(P,/\u001b(B\n\u001b$(P,0\u001b(B \u001b$(P,1\u001b(B \u001b$(P,2\u001b(B \u001b$(P,3\u001b(B \u001b$(P,4\u001b(B \u001b$(P,5\u001b(B \u001b$(P,6\u001b(B \u001b$(P,7\u001b(B \u001b$(P,8\u001b(B \u001b$(P,9\u001b(B \u001b$(P,:\u001b(B \u001b$(P,;\u001b(B \u001b$(P,<\u001b(B \u001b$(P,=\u001b(B \u001b$(P,>\u001b(B \u001b$(P,?\u001b(B\n\u001b$(P,@\u001b(B \u001b$(P,A\u001b(B \u001b$(P,B\u001b(B \u001b$(P,C\u001b(B \u001b$(P,D\u001b(B \u001b$(P,E\u001b(B \u001b$(P,F\u001b(B \u001b$(P,G\u001b(B \u001b$(P,H\u001b(B \u001b$(P,I\u001b(B \u001b$(P,J\u001b(B \u001b$(P,K\u001b(B \u001b$(P,L\u001b(B \u001b$(P,M\u001b(B \u001b$(P,N\u001b(B \u001b$(P,O\u001b(B\n\u001b$(P,P\u001b(B \u001b$(P,Q\u001b(B \u001b$(P,R\u001b(B \u001b$(P,S\u001b(B \u001b$(P,T\u001b(B \u001b$(P,U\u001b(B \u001b$(P,V\u001b(B \u001b$(P,W\u001b(B \u001b$(P,X\u001b(B \u001b$(P,Y\u001b(B \u001b$(P,Z\u001b(B \u001b$(P,[\u001b(B \u001b$(P,\\\u001b(B \u001b$(P,]\u001b(B \u001b$(P,^\u001b(B \u001b$(P,_\u001b(B\n\u001b$(P,`\u001b(B \u001b$(P,a\u001b(B \u001b$(P,b\u001b(B \u001b$(P,c\u001b(B \u001b$(P,d\u001b(B \u001b$(P,e\u001b(B \u001b$(P,f\u001b(B \u001b$(P,g\u001b(B \u001b$(P,h\u001b(B \u001b$(P,i\u001b(B \u001b$(P,j\u001b(B \u001b$(P,k\u001b(B \u001b$(P,l\u001b(B \u001b$(P,m\u001b(B \u001b$(P,n\u001b(B \u001b$(P,o\u001b(B\n\u001b$(P,p\u001b(B \u001b$(P,q\u001b(B \u001b$(P,r\u001b(B \u001b$(P,s\u001b(B \u001b$(P,t\u001b(B \u001b$(P,u\u001b(B \u001b$(P,v\u001b(B \u001b$(P,w\u001b(B \u001b$(P,x\u001b(B \u001b$(P,y\u001b(B \u001b$(P,z\u001b(B \u001b$(P,{\u001b(B \u001b$(P,|\u001b(B \u001b$(P,}\u001b(B \u001b$(P,~\u001b(B\n   \u001b$(P-!\u001b(B \u001b$(P-\"\u001b(B \u001b$(P-#\u001b(B \u001b$(P-$\u001b(B \u001b$(P-%\u001b(B \u001b$(P-&\u001b(B \u001b$(P-'\u001b(B \u001b$(P-(\u001b(B \u001b$(P-)\u001b(B \u001b$(P-*\u001b(B \u001b$(P-+\u001b(B \u001b$(P-,\u001b(B \u001b$(P--\u001b(B \u001b$(P-.\u001b(B \u001b$(P-/\u001b(B\n\u001b$(P-0\u001b(B \u001b$(P-1\u001b(B \u001b$(P-2\u001b(B \u001b$(P-3\u001b(B \u001b$(P-4\u001b(B \u001b$(P-5\u001b(B \u001b$(P-6\u001b(B \u001b$(P-7\u001b(B \u001b$(P-8\u001b(B \u001b$(P-9\u001b(B \u001b$(P-:\u001b(B \u001b$(P-;\u001b(B \u001b$(P-<\u001b(B \u001b$(P-=\u001b(B \u001b$(P->\u001b(B \u001b$(P-?\u001b(B\n\u001b$(P-@\u001b(B \u001b$(P-A\u001b(B \u001b$(P-B\u001b(B \u001b$(P-C\u001b(B \u001b$(P-D\u001b(B \u001b$(P-E\u001b(B \u001b$(P-F\u001b(B \u001b$(P-G\u001b(B \u001b$(P-H\u001b(B \u001b$(P-I\u001b(B \u001b$(P-J\u001b(B \u001b$(P-K\u001b(B \u001b$(P-L\u001b(B \u001b$(P-M\u001b(B \u001b$(P-N\u001b(B \u001b$(P-O\u001b(B\n\u001b$(P-P\u001b(B \u001b$(P-Q\u001b(B \u001b$(P-R\u001b(B \u001b$(P-S\u001b(B \u001b$(P-T\u001b(B \u001b$(P-U\u001b(B \u001b$(P-V\u001b(B \u001b$(P-W\u001b(B \u001b$(P-X\u001b(B \u001b$(P-Y\u001b(B \u001b$(P-Z\u001b(B \u001b$(P-[\u001b(B \u001b$(P-\\\u001b(B \u001b$(P-]\u001b(B \u001b$(P-^\u001b(B \u001b$(P-_\u001b(B\n\u001b$(P-`\u001b(B \u001b$(P-a\u001b(B \u001b$(P-b\u001b(B \u001b$(P-c\u001b(B \u001b$(P-d\u001b(B \u001b$(P-e\u001b(B \u001b$(P-f\u001b(B \u001b$(P-g\u001b(B \u001b$(P-h\u001b(B \u001b$(P-i\u001b(B \u001b$(P-j\u001b(B \u001b$(P-k\u001b(B \u001b$(P-l\u001b(B \u001b$(P-m\u001b(B \u001b$(P-n\u001b(B \u001b$(P-o\u001b(B\n\u001b$(P-p\u001b(B \u001b$(P-q\u001b(B \u001b$(P-r\u001b(B \u001b$(P-s\u001b(B \u001b$(P-t\u001b(B \u001b$(P-u\u001b(B \u001b$(P-v\u001b(B \u001b$(P-w\u001b(B \u001b$(P-x\u001b(B \u001b$(P-y\u001b(B \u001b$(P-z\u001b(B \u001b$(P-{\u001b(B \u001b$(P-|\u001b(B \u001b$(P-}\u001b(B \u001b$(P-~\u001b(B\n   \u001b$(P.!\u001b(B \u001b$(P.\"\u001b(B \u001b$(P.#\u001b(B \u001b$(P.$\u001b(B \u001b$(P.%\u001b(B \u001b$(P.&\u001b(B \u001b$(P.'\u001b(B \u001b$(P.(\u001b(B \u001b$(P.)\u001b(B \u001b$(P.*\u001b(B \u001b$(P.+\u001b(B \u001b$(P.,\u001b(B \u001b$(P.-\u001b(B \u001b$(P..\u001b(B \u001b$(P./\u001b(B\n\u001b$(P.0\u001b(B \u001b$(P.1\u001b(B \u001b$(P.2\u001b(B \u001b$(P.3\u001b(B \u001b$(P.4\u001b(B \u001b$(P.5\u001b(B \u001b$(P.6\u001b(B \u001b$(P.7\u001b(B \u001b$(P.8\u001b(B \u001b$(P.9\u001b(B \u001b$(P.:\u001b(B \u001b$(P.;\u001b(B \u001b$(P.<\u001b(B \u001b$(P.=\u001b(B \u001b$(P.>\u001b(B \u001b$(P.?\u001b(B\n\u001b$(P.@\u001b(B \u001b$(P.A\u001b(B \u001b$(P.B\u001b(B \u001b$(P.C\u001b(B \u001b$(P.D\u001b(B \u001b$(P.E\u001b(B \u001b$(P.F\u001b(B \u001b$(P.G\u001b(B \u001b$(P.H\u001b(B \u001b$(P.I\u001b(B \u001b$(P.J\u001b(B \u001b$(P.K\u001b(B \u001b$(P.L\u001b(B \u001b$(P.M\u001b(B \u001b$(P.N\u001b(B \u001b$(P.O\u001b(B\n\u001b$(P.P\u001b(B \u001b$(P.Q\u001b(B \u001b$(P.R\u001b(B \u001b$(P.S\u001b(B \u001b$(P.T\u001b(B \u001b$(P.U\u001b(B \u001b$(P.V\u001b(B \u001b$(P.W\u001b(B \u001b$(P.X\u001b(B \u001b$(P.Y\u001b(B \u001b$(P.Z\u001b(B \u001b$(P.[\u001b(B \u001b$(P.\\\u001b(B \u001b$(P.]\u001b(B \u001b$(P.^\u001b(B \u001b$(P._\u001b(B\n\u001b$(P.`\u001b(B \u001b$(P.a\u001b(B \u001b$(P.b\u001b(B \u001b$(P.c\u001b(B \u001b$(P.d\u001b(B \u001b$(P.e\u001b(B \u001b$(P.f\u001b(B \u001b$(P.g\u001b(B \u001b$(P.h\u001b(B \u001b$(P.i\u001b(B \u001b$(P.j\u001b(B \u001b$(P.k\u001b(B \u001b$(P.l\u001b(B \u001b$(P.m\u001b(B \u001b$(P.n\u001b(B \u001b$(P.o\u001b(B\n\u001b$(P.p\u001b(B \u001b$(P.q\u001b(B \u001b$(P.r\u001b(B \u001b$(P.s\u001b(B \u001b$(P.t\u001b(B \u001b$(P.u\u001b(B \u001b$(P.v\u001b(B \u001b$(P.w\u001b(B \u001b$(P.x\u001b(B \u001b$(P.y\u001b(B \u001b$(P.z\u001b(B \u001b$(P.{\u001b(B \u001b$(P.|\u001b(B \u001b$(P.}\u001b(B \u001b$(P.~\u001b(B\n   \u001b$(P/!\u001b(B \u001b$(P/\"\u001b(B \u001b$(P/#\u001b(B \u001b$(P/$\u001b(B \u001b$(P/%\u001b(B \u001b$(P/&\u001b(B \u001b$(P/'\u001b(B \u001b$(P/(\u001b(B \u001b$(P/)\u001b(B \u001b$(P/*\u001b(B \u001b$(P/+\u001b(B \u001b$(P/,\u001b(B \u001b$(P/-\u001b(B \u001b$(P/.\u001b(B \u001b$(P//\u001b(B\n\u001b$(P/0\u001b(B \u001b$(P/1\u001b(B \u001b$(P/2\u001b(B \u001b$(P/3\u001b(B \u001b$(P/4\u001b(B \u001b$(P/5\u001b(B \u001b$(P/6\u001b(B \u001b$(P/7\u001b(B \u001b$(P/8\u001b(B \u001b$(P/9\u001b(B \u001b$(P/:\u001b(B \u001b$(P/;\u001b(B \u001b$(P/<\u001b(B \u001b$(P/=\u001b(B \u001b$(P/>\u001b(B \u001b$(P/?\u001b(B\n\u001b$(P/@\u001b(B \u001b$(P/A\u001b(B \u001b$(P/B\u001b(B \u001b$(P/C\u001b(B \u001b$(P/D\u001b(B \u001b$(P/E\u001b(B \u001b$(P/F\u001b(B \u001b$(P/G\u001b(B \u001b$(P/H\u001b(B \u001b$(P/I\u001b(B \u001b$(P/J\u001b(B \u001b$(P/K\u001b(B \u001b$(P/L\u001b(B \u001b$(P/M\u001b(B \u001b$(P/N\u001b(B \u001b$(P/O\u001b(B\n\u001b$(P/P\u001b(B \u001b$(P/Q\u001b(B \u001b$(P/R\u001b(B \u001b$(P/S\u001b(B \u001b$(P/T\u001b(B \u001b$(P/U\u001b(B \u001b$(P/V\u001b(B \u001b$(P/W\u001b(B \u001b$(P/X\u001b(B \u001b$(P/Y\u001b(B \u001b$(P/Z\u001b(B \u001b$(P/[\u001b(B \u001b$(P/\\\u001b(B \u001b$(P/]\u001b(B \u001b$(P/^\u001b(B \u001b$(P/_\u001b(B\n\u001b$(P/`\u001b(B \u001b$(P/a\u001b(B \u001b$(P/b\u001b(B \u001b$(P/c\u001b(B \u001b$(P/d\u001b(B \u001b$(P/e\u001b(B \u001b$(P/f\u001b(B \u001b$(P/g\u001b(B \u001b$(P/h\u001b(B \u001b$(P/i\u001b(B \u001b$(P/j\u001b(B \u001b$(P/k\u001b(B \u001b$(P/l\u001b(B \u001b$(P/m\u001b(B \u001b$(P/n\u001b(B \u001b$(P/o\u001b(B\n\u001b$(P/p\u001b(B \u001b$(P/q\u001b(B \u001b$(P/r\u001b(B \u001b$(P/s\u001b(B \u001b$(P/t\u001b(B \u001b$(P/u\u001b(B \u001b$(P/v\u001b(B \u001b$(P/w\u001b(B \u001b$(P/x\u001b(B \u001b$(P/y\u001b(B \u001b$(P/z\u001b(B \u001b$(P/{\u001b(B \u001b$(P/|\u001b(B \u001b$(P/}\u001b(B \u001b$(P/~\u001b(B\n   \u001b$(Pn!\u001b(B \u001b$(Pn\"\u001b(B \u001b$(Pn#\u001b(B \u001b$(Pn$\u001b(B \u001b$(Pn%\u001b(B \u001b$(Pn&\u001b(B \u001b$(Pn'\u001b(B \u001b$(Pn(\u001b(B \u001b$(Pn)\u001b(B \u001b$(Pn*\u001b(B \u001b$(Pn+\u001b(B \u001b$(Pn,\u001b(B \u001b$(Pn-\u001b(B \u001b$(Pn.\u001b(B \u001b$(Pn/\u001b(B\n\u001b$(Pn0\u001b(B \u001b$(Pn1\u001b(B \u001b$(Pn2\u001b(B \u001b$(Pn3\u001b(B \u001b$(Pn4\u001b(B \u001b$(Pn5\u001b(B \u001b$(Pn6\u001b(B \u001b$(Pn7\u001b(B \u001b$(Pn8\u001b(B \u001b$(Pn9\u001b(B \u001b$(Pn:\u001b(B \u001b$(Pn;\u001b(B \u001b$(Pn<\u001b(B \u001b$(Pn=\u001b(B \u001b$(Pn>\u001b(B \u001b$(Pn?\u001b(B\n\u001b$(Pn@\u001b(B \u001b$(PnA\u001b(B \u001b$(PnB\u001b(B \u001b$(PnC\u001b(B \u001b$(PnD\u001b(B \u001b$(PnE\u001b(B \u001b$(PnF\u001b(B \u001b$(PnG\u001b(B \u001b$(PnH\u001b(B \u001b$(PnI\u001b(B \u001b$(PnJ\u001b(B \u001b$(PnK\u001b(B \u001b$(PnL\u001b(B \u001b$(PnM\u001b(B \u001b$(PnN\u001b(B \u001b$(PnO\u001b(B\n\u001b$(PnP\u001b(B \u001b$(PnQ\u001b(B \u001b$(PnR\u001b(B \u001b$(PnS\u001b(B \u001b$(PnT\u001b(B \u001b$(PnU\u001b(B \u001b$(PnV\u001b(B \u001b$(PnW\u001b(B \u001b$(PnX\u001b(B \u001b$(PnY\u001b(B \u001b$(PnZ\u001b(B \u001b$(Pn[\u001b(B \u001b$(Pn\\\u001b(B \u001b$(Pn]\u001b(B \u001b$(Pn^\u001b(B \u001b$(Pn_\u001b(B\n\u001b$(Pn`\u001b(B \u001b$(Pna\u001b(B \u001b$(Pnb\u001b(B \u001b$(Pnc\u001b(B \u001b$(Pnd\u001b(B \u001b$(Pne\u001b(B \u001b$(Pnf\u001b(B \u001b$(Png\u001b(B \u001b$(Pnh\u001b(B \u001b$(Pni\u001b(B \u001b$(Pnj\u001b(B \u001b$(Pnk\u001b(B \u001b$(Pnl\u001b(B \u001b$(Pnm\u001b(B \u001b$(Pnn\u001b(B \u001b$(Pno\u001b(B\n\u001b$(Pnp\u001b(B \u001b$(Pnq\u001b(B \u001b$(Pnr\u001b(B \u001b$(Pns\u001b(B \u001b$(Pnt\u001b(B \u001b$(Pnu\u001b(B \u001b$(Pnv\u001b(B \u001b$(Pnw\u001b(B \u001b$(Pnx\u001b(B \u001b$(Pny\u001b(B \u001b$(Pnz\u001b(B \u001b$(Pn{\u001b(B \u001b$(Pn|\u001b(B \u001b$(Pn}\u001b(B \u001b$(Pn~\u001b(B\n   \u001b$(Po!\u001b(B \u001b$(Po\"\u001b(B \u001b$(Po#\u001b(B \u001b$(Po$\u001b(B \u001b$(Po%\u001b(B \u001b$(Po&\u001b(B \u001b$(Po'\u001b(B \u001b$(Po(\u001b(B \u001b$(Po)\u001b(B \u001b$(Po*\u001b(B \u001b$(Po+\u001b(B \u001b$(Po,\u001b(B \u001b$(Po-\u001b(B \u001b$(Po.\u001b(B \u001b$(Po/\u001b(B\n\u001b$(Po0\u001b(B \u001b$(Po1\u001b(B \u001b$(Po2\u001b(B \u001b$(Po3\u001b(B \u001b$(Po4\u001b(B \u001b$(Po5\u001b(B \u001b$(Po6\u001b(B \u001b$(Po7\u001b(B \u001b$(Po8\u001b(B \u001b$(Po9\u001b(B \u001b$(Po:\u001b(B \u001b$(Po;\u001b(B \u001b$(Po<\u001b(B \u001b$(Po=\u001b(B \u001b$(Po>\u001b(B \u001b$(Po?\u001b(B\n\u001b$(Po@\u001b(B \u001b$(PoA\u001b(B \u001b$(PoB\u001b(B \u001b$(PoC\u001b(B \u001b$(PoD\u001b(B \u001b$(PoE\u001b(B \u001b$(PoF\u001b(B \u001b$(PoG\u001b(B \u001b$(PoH\u001b(B \u001b$(PoI\u001b(B \u001b$(PoJ\u001b(B \u001b$(PoK\u001b(B \u001b$(PoL\u001b(B \u001b$(PoM\u001b(B \u001b$(PoN\u001b(B \u001b$(PoO\u001b(B\n\u001b$(PoP\u001b(B \u001b$(PoQ\u001b(B \u001b$(PoR\u001b(B \u001b$(PoS\u001b(B \u001b$(PoT\u001b(B \u001b$(PoU\u001b(B \u001b$(PoV\u001b(B \u001b$(PoW\u001b(B \u001b$(PoX\u001b(B \u001b$(PoY\u001b(B \u001b$(PoZ\u001b(B \u001b$(Po[\u001b(B \u001b$(Po\\\u001b(B \u001b$(Po]\u001b(B \u001b$(Po^\u001b(B \u001b$(Po_\u001b(B\n\u001b$(Po`\u001b(B \u001b$(Poa\u001b(B \u001b$(Pob\u001b(B \u001b$(Poc\u001b(B \u001b$(Pod\u001b(B \u001b$(Poe\u001b(B \u001b$(Pof\u001b(B \u001b$(Pog\u001b(B \u001b$(Poh\u001b(B \u001b$(Poi\u001b(B \u001b$(Poj\u001b(B \u001b$(Pok\u001b(B \u001b$(Pol\u001b(B \u001b$(Pom\u001b(B \u001b$(Pon\u001b(B \u001b$(Poo\u001b(B\n\u001b$(Pop\u001b(B \u001b$(Poq\u001b(B \u001b$(Por\u001b(B \u001b$(Pos\u001b(B \u001b$(Pot\u001b(B \u001b$(Pou\u001b(B \u001b$(Pov\u001b(B \u001b$(Pow\u001b(B \u001b$(Pox\u001b(B \u001b$(Poy\u001b(B \u001b$(Poz\u001b(B \u001b$(Po{\u001b(B \u001b$(Po|\u001b(B \u001b$(Po}\u001b(B \u001b$(Po~\u001b(B\n   \u001b$(Pp!\u001b(B \u001b$(Pp\"\u001b(B \u001b$(Pp#\u001b(B \u001b$(Pp$\u001b(B \u001b$(Pp%\u001b(B \u001b$(Pp&\u001b(B \u001b$(Pp'\u001b(B \u001b$(Pp(\u001b(B \u001b$(Pp)\u001b(B \u001b$(Pp*\u001b(B \u001b$(Pp+\u001b(B \u001b$(Pp,\u001b(B \u001b$(Pp-\u001b(B \u001b$(Pp.\u001b(B \u001b$(Pp/\u001b(B\n\u001b$(Pp0\u001b(B \u001b$(Pp1\u001b(B \u001b$(Pp2\u001b(B \u001b$(Pp3\u001b(B \u001b$(Pp4\u001b(B \u001b$(Pp5\u001b(B \u001b$(Pp6\u001b(B \u001b$(Pp7\u001b(B \u001b$(Pp8\u001b(B \u001b$(Pp9\u001b(B \u001b$(Pp:\u001b(B \u001b$(Pp;\u001b(B \u001b$(Pp<\u001b(B \u001b$(Pp=\u001b(B \u001b$(Pp>\u001b(B \u001b$(Pp?\u001b(B\n\u001b$(Pp@\u001b(B \u001b$(PpA\u001b(B \u001b$(PpB\u001b(B \u001b$(PpC\u001b(B \u001b$(PpD\u001b(B \u001b$(PpE\u001b(B \u001b$(PpF\u001b(B \u001b$(PpG\u001b(B \u001b$(PpH\u001b(B \u001b$(PpI\u001b(B \u001b$(PpJ\u001b(B \u001b$(PpK\u001b(B \u001b$(PpL\u001b(B \u001b$(PpM\u001b(B \u001b$(PpN\u001b(B \u001b$(PpO\u001b(B\n\u001b$(PpP\u001b(B \u001b$(PpQ\u001b(B \u001b$(PpR\u001b(B \u001b$(PpS\u001b(B \u001b$(PpT\u001b(B \u001b$(PpU\u001b(B \u001b$(PpV\u001b(B \u001b$(PpW\u001b(B \u001b$(PpX\u001b(B \u001b$(PpY\u001b(B \u001b$(PpZ\u001b(B \u001b$(Pp[\u001b(B \u001b$(Pp\\\u001b(B \u001b$(Pp]\u001b(B \u001b$(Pp^\u001b(B \u001b$(Pp_\u001b(B\n\u001b$(Pp`\u001b(B \u001b$(Ppa\u001b(B \u001b$(Ppb\u001b(B \u001b$(Ppc\u001b(B \u001b$(Ppd\u001b(B \u001b$(Ppe\u001b(B \u001b$(Ppf\u001b(B \u001b$(Ppg\u001b(B \u001b$(Pph\u001b(B \u001b$(Ppi\u001b(B \u001b$(Ppj\u001b(B \u001b$(Ppk\u001b(B \u001b$(Ppl\u001b(B \u001b$(Ppm\u001b(B \u001b$(Ppn\u001b(B \u001b$(Ppo\u001b(B\n\u001b$(Ppp\u001b(B \u001b$(Ppq\u001b(B \u001b$(Ppr\u001b(B \u001b$(Pps\u001b(B \u001b$(Ppt\u001b(B \u001b$(Ppu\u001b(B \u001b$(Ppv\u001b(B \u001b$(Ppw\u001b(B \u001b$(Ppx\u001b(B \u001b$(Ppy\u001b(B \u001b$(Ppz\u001b(B \u001b$(Pp{\u001b(B \u001b$(Pp|\u001b(B \u001b$(Pp}\u001b(B \u001b$(Pp~\u001b(B\n   \u001b$(Pq!\u001b(B \u001b$(Pq\"\u001b(B \u001b$(Pq#\u001b(B \u001b$(Pq$\u001b(B \u001b$(Pq%\u001b(B \u001b$(Pq&\u001b(B \u001b$(Pq'\u001b(B \u001b$(Pq(\u001b(B \u001b$(Pq)\u001b(B \u001b$(Pq*\u001b(B \u001b$(Pq+\u001b(B \u001b$(Pq,\u001b(B \u001b$(Pq-\u001b(B \u001b$(Pq.\u001b(B \u001b$(Pq/\u001b(B\n\u001b$(Pq0\u001b(B \u001b$(Pq1\u001b(B \u001b$(Pq2\u001b(B \u001b$(Pq3\u001b(B \u001b$(Pq4\u001b(B \u001b$(Pq5\u001b(B \u001b$(Pq6\u001b(B \u001b$(Pq7\u001b(B \u001b$(Pq8\u001b(B \u001b$(Pq9\u001b(B \u001b$(Pq:\u001b(B \u001b$(Pq;\u001b(B \u001b$(Pq<\u001b(B \u001b$(Pq=\u001b(B \u001b$(Pq>\u001b(B \u001b$(Pq?\u001b(B\n\u001b$(Pq@\u001b(B \u001b$(PqA\u001b(B \u001b$(PqB\u001b(B \u001b$(PqC\u001b(B \u001b$(PqD\u001b(B \u001b$(PqE\u001b(B \u001b$(PqF\u001b(B \u001b$(PqG\u001b(B \u001b$(PqH\u001b(B \u001b$(PqI\u001b(B \u001b$(PqJ\u001b(B \u001b$(PqK\u001b(B \u001b$(PqL\u001b(B \u001b$(PqM\u001b(B \u001b$(PqN\u001b(B \u001b$(PqO\u001b(B\n\u001b$(PqP\u001b(B \u001b$(PqQ\u001b(B \u001b$(PqR\u001b(B \u001b$(PqS\u001b(B \u001b$(PqT\u001b(B \u001b$(PqU\u001b(B \u001b$(PqV\u001b(B \u001b$(PqW\u001b(B \u001b$(PqX\u001b(B \u001b$(PqY\u001b(B \u001b$(PqZ\u001b(B \u001b$(Pq[\u001b(B \u001b$(Pq\\\u001b(B \u001b$(Pq]\u001b(B \u001b$(Pq^\u001b(B \u001b$(Pq_\u001b(B\n\u001b$(Pq`\u001b(B \u001b$(Pqa\u001b(B \u001b$(Pqb\u001b(B \u001b$(Pqc\u001b(B \u001b$(Pqd\u001b(B \u001b$(Pqe\u001b(B \u001b$(Pqf\u001b(B \u001b$(Pqg\u001b(B \u001b$(Pqh\u001b(B \u001b$(Pqi\u001b(B \u001b$(Pqj\u001b(B \u001b$(Pqk\u001b(B \u001b$(Pql\u001b(B \u001b$(Pqm\u001b(B \u001b$(Pqn\u001b(B \u001b$(Pqo\u001b(B\n\u001b$(Pqp\u001b(B \u001b$(Pqq\u001b(B \u001b$(Pqr\u001b(B \u001b$(Pqs\u001b(B \u001b$(Pqt\u001b(B \u001b$(Pqu\u001b(B \u001b$(Pqv\u001b(B \u001b$(Pqw\u001b(B \u001b$(Pqx\u001b(B \u001b$(Pqy\u001b(B \u001b$(Pqz\u001b(B \u001b$(Pq{\u001b(B \u001b$(Pq|\u001b(B \u001b$(Pq}\u001b(B \u001b$(Pq~\u001b(B\n   \u001b$(Pr!\u001b(B \u001b$(Pr\"\u001b(B \u001b$(Pr#\u001b(B \u001b$(Pr$\u001b(B \u001b$(Pr%\u001b(B \u001b$(Pr&\u001b(B \u001b$(Pr'\u001b(B \u001b$(Pr(\u001b(B \u001b$(Pr)\u001b(B \u001b$(Pr*\u001b(B \u001b$(Pr+\u001b(B \u001b$(Pr,\u001b(B \u001b$(Pr-\u001b(B \u001b$(Pr.\u001b(B \u001b$(Pr/\u001b(B\n\u001b$(Pr0\u001b(B \u001b$(Pr1\u001b(B \u001b$(Pr2\u001b(B \u001b$(Pr3\u001b(B \u001b$(Pr4\u001b(B \u001b$(Pr5\u001b(B \u001b$(Pr6\u001b(B \u001b$(Pr7\u001b(B \u001b$(Pr8\u001b(B \u001b$(Pr9\u001b(B \u001b$(Pr:\u001b(B \u001b$(Pr;\u001b(B \u001b$(Pr<\u001b(B \u001b$(Pr=\u001b(B \u001b$(Pr>\u001b(B \u001b$(Pr?\u001b(B\n\u001b$(Pr@\u001b(B \u001b$(PrA\u001b(B \u001b$(PrB\u001b(B \u001b$(PrC\u001b(B \u001b$(PrD\u001b(B \u001b$(PrE\u001b(B \u001b$(PrF\u001b(B \u001b$(PrG\u001b(B \u001b$(PrH\u001b(B \u001b$(PrI\u001b(B \u001b$(PrJ\u001b(B \u001b$(PrK\u001b(B \u001b$(PrL\u001b(B \u001b$(PrM\u001b(B \u001b$(PrN\u001b(B \u001b$(PrO\u001b(B\n\u001b$(PrP\u001b(B \u001b$(PrQ\u001b(B \u001b$(PrR\u001b(B \u001b$(PrS\u001b(B \u001b$(PrT\u001b(B \u001b$(PrU\u001b(B \u001b$(PrV\u001b(B \u001b$(PrW\u001b(B \u001b$(PrX\u001b(B \u001b$(PrY\u001b(B \u001b$(PrZ\u001b(B \u001b$(Pr[\u001b(B \u001b$(Pr\\\u001b(B \u001b$(Pr]\u001b(B \u001b$(Pr^\u001b(B \u001b$(Pr_\u001b(B\n\u001b$(Pr`\u001b(B \u001b$(Pra\u001b(B \u001b$(Prb\u001b(B \u001b$(Prc\u001b(B \u001b$(Prd\u001b(B \u001b$(Pre\u001b(B \u001b$(Prf\u001b(B \u001b$(Prg\u001b(B \u001b$(Prh\u001b(B \u001b$(Pri\u001b(B \u001b$(Prj\u001b(B \u001b$(Prk\u001b(B \u001b$(Prl\u001b(B \u001b$(Prm\u001b(B \u001b$(Prn\u001b(B \u001b$(Pro\u001b(B\n\u001b$(Prp\u001b(B \u001b$(Prq\u001b(B \u001b$(Prr\u001b(B \u001b$(Prs\u001b(B \u001b$(Prt\u001b(B \u001b$(Pru\u001b(B \u001b$(Prv\u001b(B \u001b$(Prw\u001b(B \u001b$(Prx\u001b(B \u001b$(Pry\u001b(B \u001b$(Prz\u001b(B \u001b$(Pr{\u001b(B \u001b$(Pr|\u001b(B \u001b$(Pr}\u001b(B \u001b$(Pr~\u001b(B\n   \u001b$(Ps!\u001b(B \u001b$(Ps\"\u001b(B \u001b$(Ps#\u001b(B \u001b$(Ps$\u001b(B \u001b$(Ps%\u001b(B \u001b$(Ps&\u001b(B \u001b$(Ps'\u001b(B \u001b$(Ps(\u001b(B \u001b$(Ps)\u001b(B \u001b$(Ps*\u001b(B \u001b$(Ps+\u001b(B \u001b$(Ps,\u001b(B \u001b$(Ps-\u001b(B \u001b$(Ps.\u001b(B \u001b$(Ps/\u001b(B\n\u001b$(Ps0\u001b(B \u001b$(Ps1\u001b(B \u001b$(Ps2\u001b(B \u001b$(Ps3\u001b(B \u001b$(Ps4\u001b(B \u001b$(Ps5\u001b(B \u001b$(Ps6\u001b(B \u001b$(Ps7\u001b(B \u001b$(Ps8\u001b(B \u001b$(Ps9\u001b(B \u001b$(Ps:\u001b(B \u001b$(Ps;\u001b(B \u001b$(Ps<\u001b(B \u001b$(Ps=\u001b(B \u001b$(Ps>\u001b(B \u001b$(Ps?\u001b(B\n\u001b$(Ps@\u001b(B \u001b$(PsA\u001b(B \u001b$(PsB\u001b(B \u001b$(PsC\u001b(B \u001b$(PsD\u001b(B \u001b$(PsE\u001b(B \u001b$(PsF\u001b(B \u001b$(PsG\u001b(B \u001b$(PsH\u001b(B \u001b$(PsI\u001b(B \u001b$(PsJ\u001b(B \u001b$(PsK\u001b(B \u001b$(PsL\u001b(B \u001b$(PsM\u001b(B \u001b$(PsN\u001b(B \u001b$(PsO\u001b(B\n\u001b$(PsP\u001b(B \u001b$(PsQ\u001b(B \u001b$(PsR\u001b(B \u001b$(PsS\u001b(B \u001b$(PsT\u001b(B \u001b$(PsU\u001b(B \u001b$(PsV\u001b(B \u001b$(PsW\u001b(B \u001b$(PsX\u001b(B \u001b$(PsY\u001b(B \u001b$(PsZ\u001b(B \u001b$(Ps[\u001b(B \u001b$(Ps\\\u001b(B \u001b$(Ps]\u001b(B \u001b$(Ps^\u001b(B \u001b$(Ps_\u001b(B\n\u001b$(Ps`\u001b(B \u001b$(Psa\u001b(B \u001b$(Psb\u001b(B \u001b$(Psc\u001b(B \u001b$(Psd\u001b(B \u001b$(Pse\u001b(B \u001b$(Psf\u001b(B \u001b$(Psg\u001b(B \u001b$(Psh\u001b(B \u001b$(Psi\u001b(B \u001b$(Psj\u001b(B \u001b$(Psk\u001b(B \u001b$(Psl\u001b(B \u001b$(Psm\u001b(B \u001b$(Psn\u001b(B \u001b$(Pso\u001b(B\n\u001b$(Psp\u001b(B \u001b$(Psq\u001b(B \u001b$(Psr\u001b(B \u001b$(Pss\u001b(B \u001b$(Pst\u001b(B \u001b$(Psu\u001b(B \u001b$(Psv\u001b(B \u001b$(Psw\u001b(B \u001b$(Psx\u001b(B \u001b$(Psy\u001b(B \u001b$(Psz\u001b(B \u001b$(Ps{\u001b(B \u001b$(Ps|\u001b(B \u001b$(Ps}\u001b(B \u001b$(Ps~\u001b(B\n   \u001b$(Pt!\u001b(B \u001b$(Pt\"\u001b(B \u001b$(Pt#\u001b(B \u001b$(Pt$\u001b(B \u001b$(Pt%\u001b(B \u001b$(Pt&\u001b(B \u001b$(Pt'\u001b(B \u001b$(Pt(\u001b(B \u001b$(Pt)\u001b(B \u001b$(Pt*\u001b(B \u001b$(Pt+\u001b(B \u001b$(Pt,\u001b(B \u001b$(Pt-\u001b(B \u001b$(Pt.\u001b(B \u001b$(Pt/\u001b(B\n\u001b$(Pt0\u001b(B \u001b$(Pt1\u001b(B \u001b$(Pt2\u001b(B \u001b$(Pt3\u001b(B \u001b$(Pt4\u001b(B \u001b$(Pt5\u001b(B \u001b$(Pt6\u001b(B \u001b$(Pt7\u001b(B \u001b$(Pt8\u001b(B \u001b$(Pt9\u001b(B \u001b$(Pt:\u001b(B \u001b$(Pt;\u001b(B \u001b$(Pt<\u001b(B \u001b$(Pt=\u001b(B \u001b$(Pt>\u001b(B \u001b$(Pt?\u001b(B\n\u001b$(Pt@\u001b(B \u001b$(PtA\u001b(B \u001b$(PtB\u001b(B \u001b$(PtC\u001b(B \u001b$(PtD\u001b(B \u001b$(PtE\u001b(B \u001b$(PtF\u001b(B \u001b$(PtG\u001b(B \u001b$(PtH\u001b(B \u001b$(PtI\u001b(B \u001b$(PtJ\u001b(B \u001b$(PtK\u001b(B \u001b$(PtL\u001b(B \u001b$(PtM\u001b(B \u001b$(PtN\u001b(B \u001b$(PtO\u001b(B\n\u001b$(PtP\u001b(B \u001b$(PtQ\u001b(B \u001b$(PtR\u001b(B \u001b$(PtS\u001b(B \u001b$(PtT\u001b(B \u001b$(PtU\u001b(B \u001b$(PtV\u001b(B \u001b$(PtW\u001b(B \u001b$(PtX\u001b(B \u001b$(PtY\u001b(B \u001b$(PtZ\u001b(B \u001b$(Pt[\u001b(B \u001b$(Pt\\\u001b(B \u001b$(Pt]\u001b(B \u001b$(Pt^\u001b(B \u001b$(Pt_\u001b(B\n\u001b$(Pt`\u001b(B \u001b$(Pta\u001b(B \u001b$(Ptb\u001b(B \u001b$(Ptc\u001b(B \u001b$(Ptd\u001b(B \u001b$(Pte\u001b(B \u001b$(Ptf\u001b(B \u001b$(Ptg\u001b(B \u001b$(Pth\u001b(B \u001b$(Pti\u001b(B \u001b$(Ptj\u001b(B \u001b$(Ptk\u001b(B \u001b$(Ptl\u001b(B \u001b$(Ptm\u001b(B \u001b$(Ptn\u001b(B \u001b$(Pto\u001b(B\n\u001b$(Ptp\u001b(B \u001b$(Ptq\u001b(B \u001b$(Ptr\u001b(B \u001b$(Pts\u001b(B \u001b$(Ptt\u001b(B \u001b$(Ptu\u001b(B \u001b$(Ptv\u001b(B \u001b$(Ptw\u001b(B \u001b$(Ptx\u001b(B \u001b$(Pty\u001b(B \u001b$(Ptz\u001b(B \u001b$(Pt{\u001b(B \u001b$(Pt|\u001b(B \u001b$(Pt}\u001b(B \u001b$(Pt~\u001b(B\n   \u001b$(Pu!\u001b(B \u001b$(Pu\"\u001b(B \u001b$(Pu#\u001b(B \u001b$(Pu$\u001b(B \u001b$(Pu%\u001b(B \u001b$(Pu&\u001b(B \u001b$(Pu'\u001b(B \u001b$(Pu(\u001b(B \u001b$(Pu)\u001b(B \u001b$(Pu*\u001b(B \u001b$(Pu+\u001b(B \u001b$(Pu,\u001b(B \u001b$(Pu-\u001b(B \u001b$(Pu.\u001b(B \u001b$(Pu/\u001b(B\n\u001b$(Pu0\u001b(B \u001b$(Pu1\u001b(B \u001b$(Pu2\u001b(B \u001b$(Pu3\u001b(B \u001b$(Pu4\u001b(B \u001b$(Pu5\u001b(B \u001b$(Pu6\u001b(B \u001b$(Pu7\u001b(B \u001b$(Pu8\u001b(B \u001b$(Pu9\u001b(B \u001b$(Pu:\u001b(B \u001b$(Pu;\u001b(B \u001b$(Pu<\u001b(B \u001b$(Pu=\u001b(B \u001b$(Pu>\u001b(B \u001b$(Pu?\u001b(B\n\u001b$(Pu@\u001b(B \u001b$(PuA\u001b(B \u001b$(PuB\u001b(B \u001b$(PuC\u001b(B \u001b$(PuD\u001b(B \u001b$(PuE\u001b(B \u001b$(PuF\u001b(B \u001b$(PuG\u001b(B \u001b$(PuH\u001b(B \u001b$(PuI\u001b(B \u001b$(PuJ\u001b(B \u001b$(PuK\u001b(B \u001b$(PuL\u001b(B \u001b$(PuM\u001b(B \u001b$(PuN\u001b(B \u001b$(PuO\u001b(B\n\u001b$(PuP\u001b(B \u001b$(PuQ\u001b(B \u001b$(PuR\u001b(B \u001b$(PuS\u001b(B \u001b$(PuT\u001b(B \u001b$(PuU\u001b(B \u001b$(PuV\u001b(B \u001b$(PuW\u001b(B \u001b$(PuX\u001b(B \u001b$(PuY\u001b(B \u001b$(PuZ\u001b(B \u001b$(Pu[\u001b(B \u001b$(Pu\\\u001b(B \u001b$(Pu]\u001b(B \u001b$(Pu^\u001b(B \u001b$(Pu_\u001b(B\n\u001b$(Pu`\u001b(B \u001b$(Pua\u001b(B \u001b$(Pub\u001b(B \u001b$(Puc\u001b(B \u001b$(Pud\u001b(B \u001b$(Pue\u001b(B \u001b$(Puf\u001b(B \u001b$(Pug\u001b(B \u001b$(Puh\u001b(B \u001b$(Pui\u001b(B \u001b$(Puj\u001b(B \u001b$(Puk\u001b(B \u001b$(Pul\u001b(B \u001b$(Pum\u001b(B \u001b$(Pun\u001b(B \u001b$(Puo\u001b(B\n\u001b$(Pup\u001b(B \u001b$(Puq\u001b(B \u001b$(Pur\u001b(B \u001b$(Pus\u001b(B \u001b$(Put\u001b(B \u001b$(Puu\u001b(B \u001b$(Puv\u001b(B \u001b$(Puw\u001b(B \u001b$(Pux\u001b(B \u001b$(Puy\u001b(B \u001b$(Puz\u001b(B \u001b$(Pu{\u001b(B \u001b$(Pu|\u001b(B \u001b$(Pu}\u001b(B \u001b$(Pu~\u001b(B\n   \u001b$(Pv!\u001b(B \u001b$(Pv\"\u001b(B \u001b$(Pv#\u001b(B \u001b$(Pv$\u001b(B \u001b$(Pv%\u001b(B \u001b$(Pv&\u001b(B \u001b$(Pv'\u001b(B \u001b$(Pv(\u001b(B \u001b$(Pv)\u001b(B \u001b$(Pv*\u001b(B \u001b$(Pv+\u001b(B \u001b$(Pv,\u001b(B \u001b$(Pv-\u001b(B \u001b$(Pv.\u001b(B \u001b$(Pv/\u001b(B\n\u001b$(Pv0\u001b(B \u001b$(Pv1\u001b(B \u001b$(Pv2\u001b(B \u001b$(Pv3\u001b(B \u001b$(Pv4\u001b(B \u001b$(Pv5\u001b(B \u001b$(Pv6\u001b(B \u001b$(Pv7\u001b(B \u001b$(Pv8\u001b(B \u001b$(Pv9\u001b(B \u001b$(Pv:\u001b(B \u001b$(Pv;\u001b(B \u001b$(Pv<\u001b(B \u001b$(Pv=\u001b(B \u001b$(Pv>\u001b(B \u001b$(Pv?\u001b(B\n\u001b$(Pv@\u001b(B \u001b$(PvA\u001b(B \u001b$(PvB\u001b(B \u001b$(PvC\u001b(B \u001b$(PvD\u001b(B \u001b$(PvE\u001b(B \u001b$(PvF\u001b(B \u001b$(PvG\u001b(B \u001b$(PvH\u001b(B \u001b$(PvI\u001b(B \u001b$(PvJ\u001b(B \u001b$(PvK\u001b(B \u001b$(PvL\u001b(B \u001b$(PvM\u001b(B \u001b$(PvN\u001b(B \u001b$(PvO\u001b(B\n\u001b$(PvP\u001b(B \u001b$(PvQ\u001b(B \u001b$(PvR\u001b(B \u001b$(PvS\u001b(B \u001b$(PvT\u001b(B \u001b$(PvU\u001b(B \u001b$(PvV\u001b(B \u001b$(PvW\u001b(B \u001b$(PvX\u001b(B \u001b$(PvY\u001b(B \u001b$(PvZ\u001b(B \u001b$(Pv[\u001b(B \u001b$(Pv\\\u001b(B \u001b$(Pv]\u001b(B \u001b$(Pv^\u001b(B \u001b$(Pv_\u001b(B\n\u001b$(Pv`\u001b(B \u001b$(Pva\u001b(B \u001b$(Pvb\u001b(B \u001b$(Pvc\u001b(B \u001b$(Pvd\u001b(B \u001b$(Pve\u001b(B \u001b$(Pvf\u001b(B \u001b$(Pvg\u001b(B \u001b$(Pvh\u001b(B \u001b$(Pvi\u001b(B \u001b$(Pvj\u001b(B \u001b$(Pvk\u001b(B \u001b$(Pvl\u001b(B \u001b$(Pvm\u001b(B \u001b$(Pvn\u001b(B \u001b$(Pvo\u001b(B\n\u001b$(Pvp\u001b(B \u001b$(Pvq\u001b(B \u001b$(Pvr\u001b(B \u001b$(Pvs\u001b(B \u001b$(Pvt\u001b(B \u001b$(Pvu\u001b(B \u001b$(Pvv\u001b(B \u001b$(Pvw\u001b(B \u001b$(Pvx\u001b(B \u001b$(Pvy\u001b(B \u001b$(Pvz\u001b(B \u001b$(Pv{\u001b(B \u001b$(Pv|\u001b(B \u001b$(Pv}\u001b(B \u001b$(Pv~\u001b(B\n   \u001b$(Pw!\u001b(B \u001b$(Pw\"\u001b(B \u001b$(Pw#\u001b(B \u001b$(Pw$\u001b(B \u001b$(Pw%\u001b(B \u001b$(Pw&\u001b(B \u001b$(Pw'\u001b(B \u001b$(Pw(\u001b(B \u001b$(Pw)\u001b(B \u001b$(Pw*\u001b(B \u001b$(Pw+\u001b(B \u001b$(Pw,\u001b(B \u001b$(Pw-\u001b(B \u001b$(Pw.\u001b(B \u001b$(Pw/\u001b(B\n\u001b$(Pw0\u001b(B \u001b$(Pw1\u001b(B \u001b$(Pw2\u001b(B \u001b$(Pw3\u001b(B \u001b$(Pw4\u001b(B \u001b$(Pw5\u001b(B \u001b$(Pw6\u001b(B \u001b$(Pw7\u001b(B \u001b$(Pw8\u001b(B \u001b$(Pw9\u001b(B \u001b$(Pw:\u001b(B \u001b$(Pw;\u001b(B \u001b$(Pw<\u001b(B \u001b$(Pw=\u001b(B \u001b$(Pw>\u001b(B \u001b$(Pw?\u001b(B\n\u001b$(Pw@\u001b(B \u001b$(PwA\u001b(B \u001b$(PwB\u001b(B \u001b$(PwC\u001b(B \u001b$(PwD\u001b(B \u001b$(PwE\u001b(B \u001b$(PwF\u001b(B \u001b$(PwG\u001b(B \u001b$(PwH\u001b(B \u001b$(PwI\u001b(B \u001b$(PwJ\u001b(B \u001b$(PwK\u001b(B \u001b$(PwL\u001b(B \u001b$(PwM\u001b(B \u001b$(PwN\u001b(B \u001b$(PwO\u001b(B\n\u001b$(PwP\u001b(B \u001b$(PwQ\u001b(B \u001b$(PwR\u001b(B \u001b$(PwS\u001b(B \u001b$(PwT\u001b(B \u001b$(PwU\u001b(B \u001b$(PwV\u001b(B \u001b$(PwW\u001b(B \u001b$(PwX\u001b(B \u001b$(PwY\u001b(B \u001b$(PwZ\u001b(B \u001b$(Pw[\u001b(B \u001b$(Pw\\\u001b(B \u001b$(Pw]\u001b(B \u001b$(Pw^\u001b(B \u001b$(Pw_\u001b(B\n\u001b$(Pw`\u001b(B \u001b$(Pwa\u001b(B \u001b$(Pwb\u001b(B \u001b$(Pwc\u001b(B \u001b$(Pwd\u001b(B \u001b$(Pwe\u001b(B \u001b$(Pwf\u001b(B \u001b$(Pwg\u001b(B \u001b$(Pwh\u001b(B \u001b$(Pwi\u001b(B \u001b$(Pwj\u001b(B \u001b$(Pwk\u001b(B \u001b$(Pwl\u001b(B \u001b$(Pwm\u001b(B \u001b$(Pwn\u001b(B \u001b$(Pwo\u001b(B\n\u001b$(Pwp\u001b(B \u001b$(Pwq\u001b(B \u001b$(Pwr\u001b(B \u001b$(Pws\u001b(B \u001b$(Pwt\u001b(B \u001b$(Pwu\u001b(B \u001b$(Pwv\u001b(B \u001b$(Pww\u001b(B \u001b$(Pwx\u001b(B \u001b$(Pwy\u001b(B \u001b$(Pwz\u001b(B \u001b$(Pw{\u001b(B \u001b$(Pw|\u001b(B \u001b$(Pw}\u001b(B \u001b$(Pw~\u001b(B\n   \u001b$(Px!\u001b(B \u001b$(Px\"\u001b(B \u001b$(Px#\u001b(B \u001b$(Px$\u001b(B \u001b$(Px%\u001b(B \u001b$(Px&\u001b(B \u001b$(Px'\u001b(B \u001b$(Px(\u001b(B \u001b$(Px)\u001b(B \u001b$(Px*\u001b(B \u001b$(Px+\u001b(B \u001b$(Px,\u001b(B \u001b$(Px-\u001b(B \u001b$(Px.\u001b(B \u001b$(Px/\u001b(B\n\u001b$(Px0\u001b(B \u001b$(Px1\u001b(B \u001b$(Px2\u001b(B \u001b$(Px3\u001b(B \u001b$(Px4\u001b(B \u001b$(Px5\u001b(B \u001b$(Px6\u001b(B \u001b$(Px7\u001b(B \u001b$(Px8\u001b(B \u001b$(Px9\u001b(B \u001b$(Px:\u001b(B \u001b$(Px;\u001b(B \u001b$(Px<\u001b(B \u001b$(Px=\u001b(B \u001b$(Px>\u001b(B \u001b$(Px?\u001b(B\n\u001b$(Px@\u001b(B \u001b$(PxA\u001b(B \u001b$(PxB\u001b(B \u001b$(PxC\u001b(B \u001b$(PxD\u001b(B \u001b$(PxE\u001b(B \u001b$(PxF\u001b(B \u001b$(PxG\u001b(B \u001b$(PxH\u001b(B \u001b$(PxI\u001b(B \u001b$(PxJ\u001b(B \u001b$(PxK\u001b(B \u001b$(PxL\u001b(B \u001b$(PxM\u001b(B \u001b$(PxN\u001b(B \u001b$(PxO\u001b(B\n\u001b$(PxP\u001b(B \u001b$(PxQ\u001b(B \u001b$(PxR\u001b(B \u001b$(PxS\u001b(B \u001b$(PxT\u001b(B \u001b$(PxU\u001b(B \u001b$(PxV\u001b(B \u001b$(PxW\u001b(B \u001b$(PxX\u001b(B \u001b$(PxY\u001b(B \u001b$(PxZ\u001b(B \u001b$(Px[\u001b(B \u001b$(Px\\\u001b(B \u001b$(Px]\u001b(B \u001b$(Px^\u001b(B \u001b$(Px_\u001b(B\n\u001b$(Px`\u001b(B \u001b$(Pxa\u001b(B \u001b$(Pxb\u001b(B \u001b$(Pxc\u001b(B \u001b$(Pxd\u001b(B \u001b$(Pxe\u001b(B \u001b$(Pxf\u001b(B \u001b$(Pxg\u001b(B \u001b$(Pxh\u001b(B \u001b$(Pxi\u001b(B \u001b$(Pxj\u001b(B \u001b$(Pxk\u001b(B \u001b$(Pxl\u001b(B \u001b$(Pxm\u001b(B \u001b$(Pxn\u001b(B \u001b$(Pxo\u001b(B\n\u001b$(Pxp\u001b(B \u001b$(Pxq\u001b(B \u001b$(Pxr\u001b(B \u001b$(Pxs\u001b(B \u001b$(Pxt\u001b(B \u001b$(Pxu\u001b(B \u001b$(Pxv\u001b(B \u001b$(Pxw\u001b(B \u001b$(Pxx\u001b(B \u001b$(Pxy\u001b(B \u001b$(Pxz\u001b(B \u001b$(Px{\u001b(B \u001b$(Px|\u001b(B \u001b$(Px}\u001b(B \u001b$(Px~\u001b(B\n   \u001b$(Py!\u001b(B \u001b$(Py\"\u001b(B \u001b$(Py#\u001b(B \u001b$(Py$\u001b(B \u001b$(Py%\u001b(B \u001b$(Py&\u001b(B \u001b$(Py'\u001b(B \u001b$(Py(\u001b(B \u001b$(Py)\u001b(B \u001b$(Py*\u001b(B \u001b$(Py+\u001b(B \u001b$(Py,\u001b(B \u001b$(Py-\u001b(B \u001b$(Py.\u001b(B \u001b$(Py/\u001b(B\n\u001b$(Py0\u001b(B \u001b$(Py1\u001b(B \u001b$(Py2\u001b(B \u001b$(Py3\u001b(B \u001b$(Py4\u001b(B \u001b$(Py5\u001b(B \u001b$(Py6\u001b(B \u001b$(Py7\u001b(B \u001b$(Py8\u001b(B \u001b$(Py9\u001b(B \u001b$(Py:\u001b(B \u001b$(Py;\u001b(B \u001b$(Py<\u001b(B \u001b$(Py=\u001b(B \u001b$(Py>\u001b(B \u001b$(Py?\u001b(B\n\u001b$(Py@\u001b(B \u001b$(PyA\u001b(B \u001b$(PyB\u001b(B \u001b$(PyC\u001b(B \u001b$(PyD\u001b(B \u001b$(PyE\u001b(B \u001b$(PyF\u001b(B \u001b$(PyG\u001b(B \u001b$(PyH\u001b(B \u001b$(PyI\u001b(B \u001b$(PyJ\u001b(B \u001b$(PyK\u001b(B \u001b$(PyL\u001b(B \u001b$(PyM\u001b(B \u001b$(PyN\u001b(B \u001b$(PyO\u001b(B\n\u001b$(PyP\u001b(B \u001b$(PyQ\u001b(B \u001b$(PyR\u001b(B \u001b$(PyS\u001b(B \u001b$(PyT\u001b(B \u001b$(PyU\u001b(B \u001b$(PyV\u001b(B \u001b$(PyW\u001b(B \u001b$(PyX\u001b(B \u001b$(PyY\u001b(B \u001b$(PyZ\u001b(B \u001b$(Py[\u001b(B \u001b$(Py\\\u001b(B \u001b$(Py]\u001b(B \u001b$(Py^\u001b(B \u001b$(Py_\u001b(B\n\u001b$(Py`\u001b(B \u001b$(Pya\u001b(B \u001b$(Pyb\u001b(B \u001b$(Pyc\u001b(B \u001b$(Pyd\u001b(B \u001b$(Pye\u001b(B \u001b$(Pyf\u001b(B \u001b$(Pyg\u001b(B \u001b$(Pyh\u001b(B \u001b$(Pyi\u001b(B \u001b$(Pyj\u001b(B \u001b$(Pyk\u001b(B \u001b$(Pyl\u001b(B \u001b$(Pym\u001b(B \u001b$(Pyn\u001b(B \u001b$(Pyo\u001b(B\n\u001b$(Pyp\u001b(B \u001b$(Pyq\u001b(B \u001b$(Pyr\u001b(B \u001b$(Pys\u001b(B \u001b$(Pyt\u001b(B \u001b$(Pyu\u001b(B \u001b$(Pyv\u001b(B \u001b$(Pyw\u001b(B \u001b$(Pyx\u001b(B \u001b$(Pyy\u001b(B \u001b$(Pyz\u001b(B \u001b$(Py{\u001b(B \u001b$(Py|\u001b(B \u001b$(Py}\u001b(B \u001b$(Py~\u001b(B\n   \u001b$(Pz!\u001b(B \u001b$(Pz\"\u001b(B \u001b$(Pz#\u001b(B \u001b$(Pz$\u001b(B \u001b$(Pz%\u001b(B \u001b$(Pz&\u001b(B \u001b$(Pz'\u001b(B \u001b$(Pz(\u001b(B \u001b$(Pz)\u001b(B \u001b$(Pz*\u001b(B \u001b$(Pz+\u001b(B \u001b$(Pz,\u001b(B \u001b$(Pz-\u001b(B \u001b$(Pz.\u001b(B \u001b$(Pz/\u001b(B\n\u001b$(Pz0\u001b(B \u001b$(Pz1\u001b(B \u001b$(Pz2\u001b(B \u001b$(Pz3\u001b(B \u001b$(Pz4\u001b(B \u001b$(Pz5\u001b(B \u001b$(Pz6\u001b(B \u001b$(Pz7\u001b(B \u001b$(Pz8\u001b(B \u001b$(Pz9\u001b(B \u001b$(Pz:\u001b(B \u001b$(Pz;\u001b(B \u001b$(Pz<\u001b(B \u001b$(Pz=\u001b(B \u001b$(Pz>\u001b(B \u001b$(Pz?\u001b(B\n\u001b$(Pz@\u001b(B \u001b$(PzA\u001b(B \u001b$(PzB\u001b(B \u001b$(PzC\u001b(B \u001b$(PzD\u001b(B \u001b$(PzE\u001b(B \u001b$(PzF\u001b(B \u001b$(PzG\u001b(B \u001b$(PzH\u001b(B \u001b$(PzI\u001b(B \u001b$(PzJ\u001b(B \u001b$(PzK\u001b(B \u001b$(PzL\u001b(B \u001b$(PzM\u001b(B \u001b$(PzN\u001b(B \u001b$(PzO\u001b(B\n\u001b$(PzP\u001b(B \u001b$(PzQ\u001b(B \u001b$(PzR\u001b(B \u001b$(PzS\u001b(B \u001b$(PzT\u001b(B \u001b$(PzU\u001b(B \u001b$(PzV\u001b(B \u001b$(PzW\u001b(B \u001b$(PzX\u001b(B \u001b$(PzY\u001b(B \u001b$(PzZ\u001b(B \u001b$(Pz[\u001b(B \u001b$(Pz\\\u001b(B \u001b$(Pz]\u001b(B \u001b$(Pz^\u001b(B \u001b$(Pz_\u001b(B\n\u001b$(Pz`\u001b(B \u001b$(Pza\u001b(B \u001b$(Pzb\u001b(B \u001b$(Pzc\u001b(B \u001b$(Pzd\u001b(B \u001b$(Pze\u001b(B \u001b$(Pzf\u001b(B \u001b$(Pzg\u001b(B \u001b$(Pzh\u001b(B \u001b$(Pzi\u001b(B \u001b$(Pzj\u001b(B \u001b$(Pzk\u001b(B \u001b$(Pzl\u001b(B \u001b$(Pzm\u001b(B \u001b$(Pzn\u001b(B \u001b$(Pzo\u001b(B\n\u001b$(Pzp\u001b(B \u001b$(Pzq\u001b(B \u001b$(Pzr\u001b(B \u001b$(Pzs\u001b(B \u001b$(Pzt\u001b(B \u001b$(Pzu\u001b(B \u001b$(Pzv\u001b(B \u001b$(Pzw\u001b(B \u001b$(Pzx\u001b(B \u001b$(Pzy\u001b(B \u001b$(Pzz\u001b(B \u001b$(Pz{\u001b(B \u001b$(Pz|\u001b(B \u001b$(Pz}\u001b(B \u001b$(Pz~\u001b(B\n   \u001b$(P{!\u001b(B \u001b$(P{\"\u001b(B \u001b$(P{#\u001b(B \u001b$(P{$\u001b(B \u001b$(P{%\u001b(B \u001b$(P{&\u001b(B \u001b$(P{'\u001b(B \u001b$(P{(\u001b(B \u001b$(P{)\u001b(B \u001b$(P{*\u001b(B \u001b$(P{+\u001b(B \u001b$(P{,\u001b(B \u001b$(P{-\u001b(B \u001b$(P{.\u001b(B \u001b$(P{/\u001b(B\n\u001b$(P{0\u001b(B \u001b$(P{1\u001b(B \u001b$(P{2\u001b(B \u001b$(P{3\u001b(B \u001b$(P{4\u001b(B \u001b$(P{5\u001b(B \u001b$(P{6\u001b(B \u001b$(P{7\u001b(B \u001b$(P{8\u001b(B \u001b$(P{9\u001b(B \u001b$(P{:\u001b(B \u001b$(P{;\u001b(B \u001b$(P{<\u001b(B \u001b$(P{=\u001b(B \u001b$(P{>\u001b(B \u001b$(P{?\u001b(B\n\u001b$(P{@\u001b(B \u001b$(P{A\u001b(B \u001b$(P{B\u001b(B \u001b$(P{C\u001b(B \u001b$(P{D\u001b(B \u001b$(P{E\u001b(B \u001b$(P{F\u001b(B \u001b$(P{G\u001b(B \u001b$(P{H\u001b(B \u001b$(P{I\u001b(B \u001b$(P{J\u001b(B \u001b$(P{K\u001b(B \u001b$(P{L\u001b(B \u001b$(P{M\u001b(B \u001b$(P{N\u001b(B \u001b$(P{O\u001b(B\n\u001b$(P{P\u001b(B \u001b$(P{Q\u001b(B \u001b$(P{R\u001b(B \u001b$(P{S\u001b(B \u001b$(P{T\u001b(B \u001b$(P{U\u001b(B \u001b$(P{V\u001b(B \u001b$(P{W\u001b(B \u001b$(P{X\u001b(B \u001b$(P{Y\u001b(B \u001b$(P{Z\u001b(B \u001b$(P{[\u001b(B \u001b$(P{\\\u001b(B \u001b$(P{]\u001b(B \u001b$(P{^\u001b(B \u001b$(P{_\u001b(B\n\u001b$(P{`\u001b(B \u001b$(P{a\u001b(B \u001b$(P{b\u001b(B \u001b$(P{c\u001b(B \u001b$(P{d\u001b(B \u001b$(P{e\u001b(B \u001b$(P{f\u001b(B \u001b$(P{g\u001b(B \u001b$(P{h\u001b(B \u001b$(P{i\u001b(B \u001b$(P{j\u001b(B \u001b$(P{k\u001b(B \u001b$(P{l\u001b(B \u001b$(P{m\u001b(B \u001b$(P{n\u001b(B \u001b$(P{o\u001b(B\n\u001b$(P{p\u001b(B \u001b$(P{q\u001b(B \u001b$(P{r\u001b(B \u001b$(P{s\u001b(B \u001b$(P{t\u001b(B \u001b$(P{u\u001b(B \u001b$(P{v\u001b(B \u001b$(P{w\u001b(B \u001b$(P{x\u001b(B \u001b$(P{y\u001b(B \u001b$(P{z\u001b(B \u001b$(P{{\u001b(B \u001b$(P{|\u001b(B \u001b$(P{}\u001b(B \u001b$(P{~\u001b(B\n   \u001b$(P|!\u001b(B \u001b$(P|\"\u001b(B \u001b$(P|#\u001b(B \u001b$(P|$\u001b(B \u001b$(P|%\u001b(B \u001b$(P|&\u001b(B \u001b$(P|'\u001b(B \u001b$(P|(\u001b(B \u001b$(P|)\u001b(B \u001b$(P|*\u001b(B \u001b$(P|+\u001b(B \u001b$(P|,\u001b(B \u001b$(P|-\u001b(B \u001b$(P|.\u001b(B \u001b$(P|/\u001b(B\n\u001b$(P|0\u001b(B \u001b$(P|1\u001b(B \u001b$(P|2\u001b(B \u001b$(P|3\u001b(B \u001b$(P|4\u001b(B \u001b$(P|5\u001b(B \u001b$(P|6\u001b(B \u001b$(P|7\u001b(B \u001b$(P|8\u001b(B \u001b$(P|9\u001b(B \u001b$(P|:\u001b(B \u001b$(P|;\u001b(B \u001b$(P|<\u001b(B \u001b$(P|=\u001b(B \u001b$(P|>\u001b(B \u001b$(P|?\u001b(B\n\u001b$(P|@\u001b(B \u001b$(P|A\u001b(B \u001b$(P|B\u001b(B \u001b$(P|C\u001b(B \u001b$(P|D\u001b(B \u001b$(P|E\u001b(B \u001b$(P|F\u001b(B \u001b$(P|G\u001b(B \u001b$(P|H\u001b(B \u001b$(P|I\u001b(B \u001b$(P|J\u001b(B \u001b$(P|K\u001b(B \u001b$(P|L\u001b(B \u001b$(P|M\u001b(B \u001b$(P|N\u001b(B \u001b$(P|O\u001b(B\n\u001b$(P|P\u001b(B \u001b$(P|Q\u001b(B \u001b$(P|R\u001b(B \u001b$(P|S\u001b(B \u001b$(P|T\u001b(B \u001b$(P|U\u001b(B \u001b$(P|V\u001b(B \u001b$(P|W\u001b(B \u001b$(P|X\u001b(B \u001b$(P|Y\u001b(B \u001b$(P|Z\u001b(B \u001b$(P|[\u001b(B \u001b$(P|\\\u001b(B \u001b$(P|]\u001b(B \u001b$(P|^\u001b(B \u001b$(P|_\u001b(B\n\u001b$(P|`\u001b(B \u001b$(P|a\u001b(B \u001b$(P|b\u001b(B \u001b$(P|c\u001b(B \u001b$(P|d\u001b(B \u001b$(P|e\u001b(B \u001b$(P|f\u001b(B \u001b$(P|g\u001b(B \u001b$(P|h\u001b(B \u001b$(P|i\u001b(B \u001b$(P|j\u001b(B \u001b$(P|k\u001b(B \u001b$(P|l\u001b(B \u001b$(P|m\u001b(B \u001b$(P|n\u001b(B \u001b$(P|o\u001b(B\n\u001b$(P|p\u001b(B \u001b$(P|q\u001b(B \u001b$(P|r\u001b(B \u001b$(P|s\u001b(B \u001b$(P|t\u001b(B \u001b$(P|u\u001b(B \u001b$(P|v\u001b(B \u001b$(P|w\u001b(B \u001b$(P|x\u001b(B \u001b$(P|y\u001b(B \u001b$(P|z\u001b(B \u001b$(P|{\u001b(B \u001b$(P||\u001b(B \u001b$(P|}\u001b(B \u001b$(P|~\u001b(B\n   \u001b$(P}!\u001b(B \u001b$(P}\"\u001b(B \u001b$(P}#\u001b(B \u001b$(P}$\u001b(B \u001b$(P}%\u001b(B \u001b$(P}&\u001b(B \u001b$(P}'\u001b(B \u001b$(P}(\u001b(B \u001b$(P})\u001b(B \u001b$(P}*\u001b(B \u001b$(P}+\u001b(B \u001b$(P},\u001b(B \u001b$(P}-\u001b(B \u001b$(P}.\u001b(B \u001b$(P}/\u001b(B\n\u001b$(P}0\u001b(B \u001b$(P}1\u001b(B \u001b$(P}2\u001b(B \u001b$(P}3\u001b(B \u001b$(P}4\u001b(B \u001b$(P}5\u001b(B \u001b$(P}6\u001b(B \u001b$(P}7\u001b(B \u001b$(P}8\u001b(B \u001b$(P}9\u001b(B \u001b$(P}:\u001b(B \u001b$(P};\u001b(B \u001b$(P}<\u001b(B \u001b$(P}=\u001b(B \u001b$(P}>\u001b(B \u001b$(P}?\u001b(B\n\u001b$(P}@\u001b(B \u001b$(P}A\u001b(B \u001b$(P}B\u001b(B \u001b$(P}C\u001b(B \u001b$(P}D\u001b(B \u001b$(P}E\u001b(B \u001b$(P}F\u001b(B \u001b$(P}G\u001b(B \u001b$(P}H\u001b(B \u001b$(P}I\u001b(B \u001b$(P}J\u001b(B \u001b$(P}K\u001b(B \u001b$(P}L\u001b(B \u001b$(P}M\u001b(B \u001b$(P}N\u001b(B \u001b$(P}O\u001b(B\n\u001b$(P}P\u001b(B \u001b$(P}Q\u001b(B \u001b$(P}R\u001b(B \u001b$(P}S\u001b(B \u001b$(P}T\u001b(B \u001b$(P}U\u001b(B \u001b$(P}V\u001b(B \u001b$(P}W\u001b(B \u001b$(P}X\u001b(B \u001b$(P}Y\u001b(B \u001b$(P}Z\u001b(B \u001b$(P}[\u001b(B \u001b$(P}\\\u001b(B \u001b$(P}]\u001b(B \u001b$(P}^\u001b(B \u001b$(P}_\u001b(B\n\u001b$(P}`\u001b(B \u001b$(P}a\u001b(B \u001b$(P}b\u001b(B \u001b$(P}c\u001b(B \u001b$(P}d\u001b(B \u001b$(P}e\u001b(B \u001b$(P}f\u001b(B \u001b$(P}g\u001b(B \u001b$(P}h\u001b(B \u001b$(P}i\u001b(B \u001b$(P}j\u001b(B \u001b$(P}k\u001b(B \u001b$(P}l\u001b(B \u001b$(P}m\u001b(B \u001b$(P}n\u001b(B \u001b$(P}o\u001b(B\n\u001b$(P}p\u001b(B \u001b$(P}q\u001b(B \u001b$(P}r\u001b(B \u001b$(P}s\u001b(B \u001b$(P}t\u001b(B \u001b$(P}u\u001b(B \u001b$(P}v\u001b(B \u001b$(P}w\u001b(B \u001b$(P}x\u001b(B \u001b$(P}y\u001b(B \u001b$(P}z\u001b(B \u001b$(P}{\u001b(B \u001b$(P}|\u001b(B \u001b$(P}}\u001b(B \u001b$(P}~\u001b(B\n   \u001b$(P~!\u001b(B \u001b$(P~\"\u001b(B \u001b$(P~#\u001b(B \u001b$(P~$\u001b(B \u001b$(P~%\u001b(B \u001b$(P~&\u001b(B \u001b$(P~'\u001b(B \u001b$(P~(\u001b(B \u001b$(P~)\u001b(B \u001b$(P~*\u001b(B \u001b$(P~+\u001b(B \u001b$(P~,\u001b(B \u001b$(P~-\u001b(B \u001b$(P~.\u001b(B \u001b$(P~/\u001b(B\n\u001b$(P~0\u001b(B \u001b$(P~1\u001b(B \u001b$(P~2\u001b(B \u001b$(P~3\u001b(B \u001b$(P~4\u001b(B \u001b$(P~5\u001b(B \u001b$(P~6\u001b(B \u001b$(P~7\u001b(B \u001b$(P~8\u001b(B \u001b$(P~9\u001b(B \u001b$(P~:\u001b(B \u001b$(P~;\u001b(B \u001b$(P~<\u001b(B \u001b$(P~=\u001b(B \u001b$(P~>\u001b(B \u001b$(P~?\u001b(B\n\u001b$(P~@\u001b(B \u001b$(P~A\u001b(B \u001b$(P~B\u001b(B \u001b$(P~C\u001b(B \u001b$(P~D\u001b(B \u001b$(P~E\u001b(B \u001b$(P~F\u001b(B \u001b$(P~G\u001b(B \u001b$(P~H\u001b(B \u001b$(P~I\u001b(B \u001b$(P~J\u001b(B \u001b$(P~K\u001b(B \u001b$(P~L\u001b(B \u001b$(P~M\u001b(B \u001b$(P~N\u001b(B \u001b$(P~O\u001b(B\n\u001b$(P~P\u001b(B \u001b$(P~Q\u001b(B \u001b$(P~R\u001b(B \u001b$(P~S\u001b(B \u001b$(P~T\u001b(B \u001b$(P~U\u001b(B \u001b$(P~V\u001b(B \u001b$(P~W\u001b(B \u001b$(P~X\u001b(B \u001b$(P~Y\u001b(B \u001b$(P~Z\u001b(B \u001b$(P~[\u001b(B \u001b$(P~\\\u001b(B \u001b$(P~]\u001b(B \u001b$(P~^\u001b(B \u001b$(P~_\u001b(B\n\u001b$(P~`\u001b(B \u001b$(P~a\u001b(B \u001b$(P~b\u001b(B \u001b$(P~c\u001b(B \u001b$(P~d\u001b(B \u001b$(P~e\u001b(B \u001b$(P~f\u001b(B \u001b$(P~g\u001b(B \u001b$(P~h\u001b(B \u001b$(P~i\u001b(B \u001b$(P~j\u001b(B \u001b$(P~k\u001b(B \u001b$(P~l\u001b(B \u001b$(P~m\u001b(B \u001b$(P~n\u001b(B \u001b$(P~o\u001b(B\n\u001b$(P~p\u001b(B \u001b$(P~q\u001b(B \u001b$(P~r\u001b(B \u001b$(P~s\u001b(B \u001b$(P~t\u001b(B \u001b$(P~u\u001b(B \u001b$(P~v\u001b(B\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-JP-3-snippet.UTF-8",
    "content": "  ! \" # $ % & ' ( ) * + , - . /\n0 1 2 3 4 5 6 7 8 9 : ; < = > ?\n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n   ｡ ｢ ｣ ､ ･ ｦ ｧ ｨ ｩ ｪ ｫ ｬ ｭ ｮ ｯ\nｰ ｱ ｲ ｳ ｴ ｵ ｶ ｷ ｸ ｹ ｺ ｻ ｼ ｽ ｾ ｿ\nﾀ ﾁ ﾂ ﾃ ﾄ ﾅ ﾆ ﾇ ﾈ ﾉ ﾊ ﾋ ﾌ ﾍ ﾎ ﾏ\nﾐ ﾑ ﾒ ﾓ ﾔ ﾕ ﾖ ﾗ ﾘ ﾙ ﾚ ﾛ ﾜ ﾝ ﾞ ﾟ\n   　 、 。 ， ． ・ ： ； ？ ！ ゛ ゜ ´ ｀ ¨\n＾ ￣ ＿ ヽ ヾ ゝ ゞ 〃 仝 々 〆 〇 ー ― ‐ ／\n＼ 〜 ‖ ｜ … ‥ ‘ ’ “ ” （ ） 〔 〕 ［ ］\n｛ ｝ 〈 〉 《 》 「 」 『 』 【 】 ＋ − ± ×\n÷ ＝ ≠ ＜ ＞ ≦ ≧ ∞ ∴ ♂ ♀ ° ′ ″ ℃ ￥\n＄ ¢ £ ％ ＃ ＆ ＊ ＠ § ☆ ★ ○ ● ◎ ◇\n   ◆ □ ■ △ ▲ ▽ ▼ ※ 〒 → ← ↑ ↓ 〓 ＇\n＂ － ～ 〳 〴 〵 〻 〼 ヿ ゟ ∈ ∋ ⊆ ⊇ ⊂ ⊃\n∪ ∩ ⊄ ⊅ ⊊ ⊋ ∉ ∅ ⌅ ⌆ ∧ ∨ ¬ ⇒ ⇔ ∀\n∃ ⊕ ⊖ ⊗ ∥ ∦ ｟ ｠ 〘 〙 〖 〗 ∠ ⊥ ⌒ ∂\n∇ ≡ ≒ ≪ ≫ √ ∽ ∝ ∵ ∫ ∬ ≢ ≃ ≅ ≈ ≶\n≷ ↔ Å ‰ ♯ ♭ ♪ † ‡ ¶ ♮ ♫ ♬ ♩ ◯\n   ▷ ▶ ◁ ◀ ↗ ↘ ↖ ↙ ⇄ ⇨ ⇦ ⇧ ⇩ ⤴ ⤵\n０ １ ２ ３ ４ ５ ６ ７ ８ ９ ⦿ ◉ 〽 ﹆ ﹅ ◦\n• Ａ Ｂ Ｃ Ｄ Ｅ Ｆ Ｇ Ｈ Ｉ Ｊ Ｋ Ｌ Ｍ Ｎ Ｏ\nＰ Ｑ Ｒ Ｓ Ｔ Ｕ Ｖ Ｗ Ｘ Ｙ Ｚ ∓ ℵ ℏ ㏋ ℓ\n℧ ａ ｂ ｃ ｄ ｅ ｆ ｇ ｈ ｉ ｊ ｋ ｌ ｍ ｎ ｏ\nｐ ｑ ｒ ｓ ｔ ｕ ｖ ｗ ｘ ｙ ｚ ゠ – ⧺ ⧻\n   ぁ あ ぃ い ぅ う ぇ え ぉ お か が き ぎ く\nぐ け げ こ ご さ ざ し じ す ず せ ぜ そ ぞ た\nだ ち ぢ っ つ づ て で と ど な に ぬ ね の は\nば ぱ ひ び ぴ ふ ぶ ぷ へ べ ぺ ほ ぼ ぽ ま み\nむ め も ゃ や ゅ ゆ ょ よ ら り る れ ろ ゎ わ\nゐ ゑ を ん ゔ ゕ ゖ か゚ き゚ く゚ け゚ こ゚\n   ァ ア ィ イ ゥ ウ ェ エ ォ オ カ ガ キ ギ ク\nグ ケ ゲ コ ゴ サ ザ シ ジ ス ズ セ ゼ ソ ゾ タ\nダ チ ヂ ッ ツ ヅ テ デ ト ド ナ ニ ヌ ネ ノ ハ\nバ パ ヒ ビ ピ フ ブ プ ヘ ベ ペ ホ ボ ポ マ ミ\nム メ モ ャ ヤ ュ ユ ョ ヨ ラ リ ル レ ロ ヮ ワ\nヰ ヱ ヲ ン ヴ ヵ ヶ カ゚ キ゚ ク゚ ケ゚ コ゚ セ゚ ツ゚ ト゚\n   Α Β Γ Δ Ε Ζ Η Θ Ι Κ Λ Μ Ν Ξ Ο\nΠ Ρ Σ Τ Υ Φ Χ Ψ Ω ♤ ♠ ♢ ♦ ♡ ♥ ♧\n♣ α β γ δ ε ζ η θ ι κ λ μ ν ξ ο\nπ ρ σ τ υ φ χ ψ ω ς ⓵ ⓶ ⓷ ⓸ ⓹ ⓺\n⓻ ⓼ ⓽ ⓾ ☖ ☗ 〠 ☎ ☀ ☁ ☂ ☃ ♨ ▱ ㇰ ㇱ\nㇲ ㇳ ㇴ ㇵ ㇶ ㇷ ㇸ ㇹ ㇷ゚ ㇺ ㇻ ㇼ ㇽ ㇾ ㇿ\n   А Б В Г Д Е Ё Ж З И Й К Л М Н\nО П Р С Т У Ф Х Ц Ч Ш Щ Ъ Ы Ь Э\nЮ Я ⎾ ⎿ ⏀ ⏁ ⏂ ⏃ ⏄ ⏅ ⏆ ⏇ ⏈ ⏉ ⏊ ⏋\n⏌ а б в г д е ё ж з и й к л м н\nо п р с т у ф х ц ч ш щ ъ ы ь э\nю я ヷ ヸ ヹ ヺ ⋚ ⋛ ⅓ ⅔ ⅕ ✓ ⌘ ␣ ⏎\n   ─ │ ┌ ┐ ┘ └ ├ ┬ ┤ ┴ ┼ ━ ┃ ┏ ┓\n┛ ┗ ┣ ┳ ┫ ┻ ╋ ┠ ┯ ┨ ┷ ┿ ┝ ┰ ┥ ┸\n╂ ㉑ ㉒ ㉓ ㉔ ㉕ ㉖ ㉗ ㉘ ㉙ ㉚ ㉛ ㉜ ㉝ ㉞ ㉟\n㊱ ㊲ ㊳ ㊴ ㊵ ㊶ ㊷ ㊸ ㊹ ㊺ ㊻ ㊼ ㊽ ㊾ ㊿\n                     ◐ ◑ ◒ ◓ ‼ ⁇ ⁈ ⁉ Ǎ\nǎ ǐ Ḿ ḿ Ǹ ǹ Ǒ ǒ ǔ ǖ ǘ ǚ ǜ\n   €   ¡ ¤ ¦ © ª « ­ ® ¯ ² ³ · ¸\n¹ º » ¼ ½ ¾ ¿ À Á Â Ã Ä Å Æ Ç È\nÉ Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö Ø Ù\nÚ Û Ü Ý Þ ß à á â ã ä å æ ç è é\nê ë ì í î ï ð ñ ò ó ô õ ö ø ù ú\nû ü ý þ ÿ Ā Ī Ū Ē Ō ā ī ū ē ō\n   Ą ˘ Ł Ľ Ś Š Ş Ť Ź Ž Ż ą ˛ ł ľ\nś ˇ š ş ť ź ˝ ž ż Ŕ Ă Ĺ Ć Č Ę Ě\nĎ Ń Ň Ő Ř Ů Ű Ţ ŕ ă ĺ ć č ę ě ď\nđ ń ň ő ř ů ű ţ ˙ Ĉ Ĝ Ĥ Ĵ Ŝ Ŭ ĉ\nĝ ĥ ĵ ŝ ŭ ɱ ʋ ɾ ʃ ʒ ɬ ɮ ɹ ʈ ɖ ɳ\nɽ ʂ ʐ ɻ ɭ ɟ ɲ ʝ ʎ ɡ ŋ ɰ ʁ ħ ʕ\n   ʔ ɦ ʘ ǂ ɓ ɗ ʄ ɠ Ɠ œ Œ ɨ ʉ ɘ ɵ\nə ɜ ɞ ɐ ɯ ʊ ɤ ʌ ɔ ɑ ɒ ʍ ɥ ʢ ʡ ɕ\nʑ ɺ ɧ ɚ æ̀ ǽ ὰ ά ɔ̀ ɔ́ ʌ̀ ʌ́ ə̀ ə́ ɚ̀ ɚ́\nὲ έ ͡ ˈ ˌ ː ˑ ̆ ‿ ̋ ́ ̄ ̀ ̏ ̌ ̂\n˥ ˦ ˧ ˨ ˩ ˩˥ ˥˩ ̥ ̬ ̹ ̜ ̟ ̠ ̈ ̽ ̩\n̯ ˞ ̤ ̰ ̼ ̴ ̝ ̞ ̘ ̙ ̪ ̺ ̻ ̃ ̚\n   ❶ ❷ ❸ ❹ ❺ ❻ ❼ ❽ ❾ ❿ ⓫ ⓬ ⓭ ⓮ ⓯\n⓰ ⓱ ⓲ ⓳ ⓴ ⅰ ⅱ ⅲ ⅳ ⅴ ⅵ ⅶ ⅷ ⅸ ⅹ ⅺ\nⅻ ⓐ ⓑ ⓒ ⓓ ⓔ ⓕ ⓖ ⓗ ⓘ ⓙ ⓚ ⓛ ⓜ ⓝ ⓞ\nⓟ ⓠ ⓡ ⓢ ⓣ ⓤ ⓥ ⓦ ⓧ ⓨ ⓩ ㋐ ㋑ ㋒ ㋓ ㋔\n㋕ ㋖ ㋗ ㋘ ㋙ ㋚ ㋛ ㋜ ㋝ ㋞ ㋟ ㋠ ㋡ ㋢ ㋣ ㋺\n㋩ ㋥ ㋭ ㋬                            ⁑ ⁂\n   ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩ ⑪ ⑫ ⑬ ⑭ ⑮\n⑯ ⑰ ⑱ ⑲ ⑳ Ⅰ Ⅱ Ⅲ Ⅳ Ⅴ Ⅵ Ⅶ Ⅷ Ⅸ Ⅹ Ⅺ\n㍉ ㌔ ㌢ ㍍ ㌘ ㌧ ㌃ ㌶ ㍑ ㍗ ㌍ ㌦ ㌣ ㌫ ㍊ ㌻\n㎜ ㎝ ㎞ ㎎ ㎏ ㏄ ㎡ Ⅻ                      ㍻\n〝 〟 № ㏍ ℡ ㊤ ㊥ ㊦ ㊧ ㊨ ㈱ ㈲ ㈹ ㍾ ㍽ ㍼\n         ∮             ∟ ⊿          ❖ ☞\n      𠀋 㐂 丨 丯 丰 亍 仡 份 仿 伃 伋 你 佈 佉\n佖 佟 佪 佬 佾 侊 侔 侗 侮 俉 俠 倁 倂 倎 倘 倧\n倮 偀 倻 偁 傔 僌 僲 僐 僦 僧 儆 儃 儋 儞 儵 兊\n免 兕 兗 㒵 冝 凃 凊 凞 凢 凮 刁 㓛 刓 刕 剉 剗\n剡 劓 勈 勉 勌 勐 勖 勛 勤 勰 勻 匀 匇 匜 卑 卡\n卣 卽 厓 厝 厲 吒 吧 呍 咜 呫 呴 呿 咈 咖 咡\n   咩 哆 哿 唎 唫 唵 啐 啞 喁 喆 喎 喝 喭 嗎 嘆\n嘈 嘎 嘻 噉 噶 噦 器 噯 噱 噲 嚙 嚞 嚩 嚬 嚳 囉\n囊 圊 𡈽 圡 圯 圳 圴 坰 坷 坼 垜 﨏 𡌛 垸 埇 埈\n埏 埤 埭 埵 埶 埿 堉 塚 塡 塤 塀 塼 墉 增 墨 墩\n𡑮 壒 壎 壔 壚 壠 壩 夌 虁 奝 奭 妋 妒 妤 姃 姒\n姝 娓 娣 婧 婭 婷 婾 媄 媞 媧 嫄 𡢽 嬙 嬥\n   亜 唖 娃 阿 哀 愛 挨 姶 逢 葵 茜 穐 悪 握 渥\n旭 葦 芦 鯵 梓 圧 斡 扱 宛 姐 虻 飴 絢 綾 鮎 或\n粟 袷 安 庵 按 暗 案 闇 鞍 杏 以 伊 位 依 偉 囲\n夷 委 威 尉 惟 意 慰 易 椅 為 畏 異 移 維 緯 胃\n萎 衣 謂 違 遺 医 井 亥 域 育 郁 磯 一 壱 溢 逸\n稲 茨 芋 鰯 允 印 咽 員 因 姻 引 飲 淫 胤 蔭\n   院 陰 隠 韻 吋 右 宇 烏 羽 迂 雨 卯 鵜 窺 丑\n碓 臼 渦 嘘 唄 欝 蔚 鰻 姥 厩 浦 瓜 閏 噂 云 運\n雲 荏 餌 叡 営 嬰 影 映 曳 栄 永 泳 洩 瑛 盈 穎\n頴 英 衛 詠 鋭 液 疫 益 駅 悦 謁 越 閲 榎 厭 円\n園 堰 奄 宴 延 怨 掩 援 沿 演 炎 焔 煙 燕 猿 縁\n艶 苑 薗 遠 鉛 鴛 塩 於 汚 甥 凹 央 奥 往 応\n   押 旺 横 欧 殴 王 翁 襖 鴬 鴎 黄 岡 沖 荻 億\n屋 憶 臆 桶 牡 乙 俺 卸 恩 温 穏 音 下 化 仮 何\n伽 価 佳 加 可 嘉 夏 嫁 家 寡 科 暇 果 架 歌 河\n火 珂 禍 禾 稼 箇 花 苛 茄 荷 華 菓 蝦 課 嘩 貨\n迦 過 霞 蚊 俄 峨 我 牙 画 臥 芽 蛾 賀 雅 餓 駕\n介 会 解 回 塊 壊 廻 快 怪 悔 恢 懐 戒 拐 改\n   魁 晦 械 海 灰 界 皆 絵 芥 蟹 開 階 貝 凱 劾\n外 咳 害 崖 慨 概 涯 碍 蓋 街 該 鎧 骸 浬 馨 蛙\n垣 柿 蛎 鈎 劃 嚇 各 廓 拡 撹 格 核 殻 獲 確 穫\n覚 角 赫 較 郭 閣 隔 革 学 岳 楽 額 顎 掛 笠 樫\n橿 梶 鰍 潟 割 喝 恰 括 活 渇 滑 葛 褐 轄 且 鰹\n叶 椛 樺 鞄 株 兜 竃 蒲 釜 鎌 噛 鴨 栢 茅 萱\n   粥 刈 苅 瓦 乾 侃 冠 寒 刊 勘 勧 巻 喚 堪 姦\n完 官 寛 干 幹 患 感 慣 憾 換 敢 柑 桓 棺 款 歓\n汗 漢 澗 潅 環 甘 監 看 竿 管 簡 緩 缶 翰 肝 艦\n莞 観 諌 貫 還 鑑 間 閑 関 陥 韓 館 舘 丸 含 岸\n巌 玩 癌 眼 岩 翫 贋 雁 頑 顔 願 企 伎 危 喜 器\n基 奇 嬉 寄 岐 希 幾 忌 揮 机 旗 既 期 棋 棄\n   機 帰 毅 気 汽 畿 祈 季 稀 紀 徽 規 記 貴 起\n軌 輝 飢 騎 鬼 亀 偽 儀 妓 宜 戯 技 擬 欺 犠 疑\n祇 義 蟻 誼 議 掬 菊 鞠 吉 吃 喫 桔 橘 詰 砧 杵\n黍 却 客 脚 虐 逆 丘 久 仇 休 及 吸 宮 弓 急 救\n朽 求 汲 泣 灸 球 究 窮 笈 級 糾 給 旧 牛 去 居\n巨 拒 拠 挙 渠 虚 許 距 鋸 漁 禦 魚 亨 享 京\n   供 侠 僑 兇 競 共 凶 協 匡 卿 叫 喬 境 峡 強\n彊 怯 恐 恭 挟 教 橋 況 狂 狭 矯 胸 脅 興 蕎 郷\n鏡 響 饗 驚 仰 凝 尭 暁 業 局 曲 極 玉 桐 粁 僅\n勤 均 巾 錦 斤 欣 欽 琴 禁 禽 筋 緊 芹 菌 衿 襟\n謹 近 金 吟 銀 九 倶 句 区 狗 玖 矩 苦 躯 駆 駈\n駒 具 愚 虞 喰 空 偶 寓 遇 隅 串 櫛 釧 屑 屈\n   掘 窟 沓 靴 轡 窪 熊 隈 粂 栗 繰 桑 鍬 勲 君\n薫 訓 群 軍 郡 卦 袈 祁 係 傾 刑 兄 啓 圭 珪 型\n契 形 径 恵 慶 慧 憩 掲 携 敬 景 桂 渓 畦 稽 系\n経 継 繋 罫 茎 荊 蛍 計 詣 警 軽 頚 鶏 芸 迎 鯨\n劇 戟 撃 激 隙 桁 傑 欠 決 潔 穴 結 血 訣 月 件\n倹 倦 健 兼 券 剣 喧 圏 堅 嫌 建 憲 懸 拳 捲\n   検 権 牽 犬 献 研 硯 絹 県 肩 見 謙 賢 軒 遣\n鍵 険 顕 験 鹸 元 原 厳 幻 弦 減 源 玄 現 絃 舷\n言 諺 限 乎 個 古 呼 固 姑 孤 己 庫 弧 戸 故 枯\n湖 狐 糊 袴 股 胡 菰 虎 誇 跨 鈷 雇 顧 鼓 五 互\n伍 午 呉 吾 娯 後 御 悟 梧 檎 瑚 碁 語 誤 護 醐\n乞 鯉 交 佼 侯 候 倖 光 公 功 効 勾 厚 口 向\n   后 喉 坑 垢 好 孔 孝 宏 工 巧 巷 幸 広 庚 康\n弘 恒 慌 抗 拘 控 攻 昂 晃 更 杭 校 梗 構 江 洪\n浩 港 溝 甲 皇 硬 稿 糠 紅 紘 絞 綱 耕 考 肯 肱\n腔 膏 航 荒 行 衡 講 貢 購 郊 酵 鉱 砿 鋼 閤 降\n項 香 高 鴻 剛 劫 号 合 壕 拷 濠 豪 轟 麹 克 刻\n告 国 穀 酷 鵠 黒 獄 漉 腰 甑 忽 惚 骨 狛 込\n   此 頃 今 困 坤 墾 婚 恨 懇 昏 昆 根 梱 混 痕\n紺 艮 魂 些 佐 叉 唆 嵯 左 差 査 沙 瑳 砂 詐 鎖\n裟 坐 座 挫 債 催 再 最 哉 塞 妻 宰 彩 才 採 栽\n歳 済 災 采 犀 砕 砦 祭 斎 細 菜 裁 載 際 剤 在\n材 罪 財 冴 坂 阪 堺 榊 肴 咲 崎 埼 碕 鷺 作 削\n咋 搾 昨 朔 柵 窄 策 索 錯 桜 鮭 笹 匙 冊 刷\n   察 拶 撮 擦 札 殺 薩 雑 皐 鯖 捌 錆 鮫 皿 晒\n三 傘 参 山 惨 撒 散 桟 燦 珊 産 算 纂 蚕 讃 賛\n酸 餐 斬 暫 残 仕 仔 伺 使 刺 司 史 嗣 四 士 始\n姉 姿 子 屍 市 師 志 思 指 支 孜 斯 施 旨 枝 止\n死 氏 獅 祉 私 糸 紙 紫 肢 脂 至 視 詞 詩 試 誌\n諮 資 賜 雌 飼 歯 事 似 侍 児 字 寺 慈 持 時\n   次 滋 治 爾 璽 痔 磁 示 而 耳 自 蒔 辞 汐 鹿\n式 識 鴫 竺 軸 宍 雫 七 叱 執 失 嫉 室 悉 湿 漆\n疾 質 実 蔀 篠 偲 柴 芝 屡 蕊 縞 舎 写 射 捨 赦\n斜 煮 社 紗 者 謝 車 遮 蛇 邪 借 勺 尺 杓 灼 爵\n酌 釈 錫 若 寂 弱 惹 主 取 守 手 朱 殊 狩 珠 種\n腫 趣 酒 首 儒 受 呪 寿 授 樹 綬 需 囚 収 周\n   宗 就 州 修 愁 拾 洲 秀 秋 終 繍 習 臭 舟 蒐\n衆 襲 讐 蹴 輯 週 酋 酬 集 醜 什 住 充 十 従 戎\n柔 汁 渋 獣 縦 重 銃 叔 夙 宿 淑 祝 縮 粛 塾 熟\n出 術 述 俊 峻 春 瞬 竣 舜 駿 准 循 旬 楯 殉 淳\n準 潤 盾 純 巡 遵 醇 順 処 初 所 暑 曙 渚 庶 緒\n署 書 薯 藷 諸 助 叙 女 序 徐 恕 鋤 除 傷 償\n   勝 匠 升 召 哨 商 唱 嘗 奨 妾 娼 宵 将 小 少\n尚 庄 床 廠 彰 承 抄 招 掌 捷 昇 昌 昭 晶 松 梢\n樟 樵 沼 消 渉 湘 焼 焦 照 症 省 硝 礁 祥 称 章\n笑 粧 紹 肖 菖 蒋 蕉 衝 裳 訟 証 詔 詳 象 賞 醤\n鉦 鍾 鐘 障 鞘 上 丈 丞 乗 冗 剰 城 場 壌 嬢 常\n情 擾 条 杖 浄 状 畳 穣 蒸 譲 醸 錠 嘱 埴 飾\n   拭 植 殖 燭 織 職 色 触 食 蝕 辱 尻 伸 信 侵\n唇 娠 寝 審 心 慎 振 新 晋 森 榛 浸 深 申 疹 真\n神 秦 紳 臣 芯 薪 親 診 身 辛 進 針 震 人 仁 刃\n塵 壬 尋 甚 尽 腎 訊 迅 陣 靭 笥 諏 須 酢 図 厨\n逗 吹 垂 帥 推 水 炊 睡 粋 翠 衰 遂 酔 錐 錘 随\n瑞 髄 崇 嵩 数 枢 趨 雛 据 杉 椙 菅 頗 雀 裾\n   澄 摺 寸 世 瀬 畝 是 凄 制 勢 姓 征 性 成 政\n整 星 晴 棲 栖 正 清 牲 生 盛 精 聖 声 製 西 誠\n誓 請 逝 醒 青 静 斉 税 脆 隻 席 惜 戚 斥 昔 析\n石 積 籍 績 脊 責 赤 跡 蹟 碩 切 拙 接 摂 折 設\n窃 節 説 雪 絶 舌 蝉 仙 先 千 占 宣 専 尖 川 戦\n扇 撰 栓 栴 泉 浅 洗 染 潜 煎 煽 旋 穿 箭 線\n   繊 羨 腺 舛 船 薦 詮 賎 践 選 遷 銭 銑 閃 鮮\n前 善 漸 然 全 禅 繕 膳 糎 噌 塑 岨 措 曾 曽 楚\n狙 疏 疎 礎 祖 租 粗 素 組 蘇 訴 阻 遡 鼠 僧 創\n双 叢 倉 喪 壮 奏 爽 宋 層 匝 惣 想 捜 掃 挿 掻\n操 早 曹 巣 槍 槽 漕 燥 争 痩 相 窓 糟 総 綜 聡\n草 荘 葬 蒼 藻 装 走 送 遭 鎗 霜 騒 像 増 憎\n   臓 蔵 贈 造 促 側 則 即 息 捉 束 測 足 速 俗\n属 賊 族 続 卒 袖 其 揃 存 孫 尊 損 村 遜 他 多\n太 汰 詑 唾 堕 妥 惰 打 柁 舵 楕 陀 駄 騨 体 堆\n対 耐 岱 帯 待 怠 態 戴 替 泰 滞 胎 腿 苔 袋 貸\n退 逮 隊 黛 鯛 代 台 大 第 醍 題 鷹 滝 瀧 卓 啄\n宅 托 択 拓 沢 濯 琢 託 鐸 濁 諾 茸 凧 蛸 只\n   叩 但 達 辰 奪 脱 巽 竪 辿 棚 谷 狸 鱈 樽 誰\n丹 単 嘆 坦 担 探 旦 歎 淡 湛 炭 短 端 箪 綻 耽\n胆 蛋 誕 鍛 団 壇 弾 断 暖 檀 段 男 談 値 知 地\n弛 恥 智 池 痴 稚 置 致 蜘 遅 馳 築 畜 竹 筑 蓄\n逐 秩 窒 茶 嫡 着 中 仲 宙 忠 抽 昼 柱 注 虫 衷\n註 酎 鋳 駐 樗 瀦 猪 苧 著 貯 丁 兆 凋 喋 寵\n   帖 帳 庁 弔 張 彫 徴 懲 挑 暢 朝 潮 牒 町 眺\n聴 脹 腸 蝶 調 諜 超 跳 銚 長 頂 鳥 勅 捗 直 朕\n沈 珍 賃 鎮 陳 津 墜 椎 槌 追 鎚 痛 通 塚 栂 掴\n槻 佃 漬 柘 辻 蔦 綴 鍔 椿 潰 坪 壷 嬬 紬 爪 吊\n釣 鶴 亭 低 停 偵 剃 貞 呈 堤 定 帝 底 庭 廷 弟\n悌 抵 挺 提 梯 汀 碇 禎 程 締 艇 訂 諦 蹄 逓\n   邸 鄭 釘 鼎 泥 摘 擢 敵 滴 的 笛 適 鏑 溺 哲\n徹 撤 轍 迭 鉄 典 填 天 展 店 添 纏 甜 貼 転 顛\n点 伝 殿 澱 田 電 兎 吐 堵 塗 妬 屠 徒 斗 杜 渡\n登 菟 賭 途 都 鍍 砥 砺 努 度 土 奴 怒 倒 党 冬\n凍 刀 唐 塔 塘 套 宕 島 嶋 悼 投 搭 東 桃 梼 棟\n盗 淘 湯 涛 灯 燈 当 痘 祷 等 答 筒 糖 統 到\n   董 蕩 藤 討 謄 豆 踏 逃 透 鐙 陶 頭 騰 闘 働\n動 同 堂 導 憧 撞 洞 瞳 童 胴 萄 道 銅 峠 鴇 匿\n得 徳 涜 特 督 禿 篤 毒 独 読 栃 橡 凸 突 椴 届\n鳶 苫 寅 酉 瀞 噸 屯 惇 敦 沌 豚 遁 頓 呑 曇 鈍\n奈 那 内 乍 凪 薙 謎 灘 捺 鍋 楢 馴 縄 畷 南 楠\n軟 難 汝 二 尼 弐 迩 匂 賑 肉 虹 廿 日 乳 入\n   如 尿 韮 任 妊 忍 認 濡 禰 祢 寧 葱 猫 熱 年\n念 捻 撚 燃 粘 乃 廼 之 埜 嚢 悩 濃 納 能 脳 膿\n農 覗 蚤 巴 把 播 覇 杷 波 派 琶 破 婆 罵 芭 馬\n俳 廃 拝 排 敗 杯 盃 牌 背 肺 輩 配 倍 培 媒 梅\n楳 煤 狽 買 売 賠 陪 這 蝿 秤 矧 萩 伯 剥 博 拍\n柏 泊 白 箔 粕 舶 薄 迫 曝 漠 爆 縛 莫 駁 麦\n   函 箱 硲 箸 肇 筈 櫨 幡 肌 畑 畠 八 鉢 溌 発\n醗 髪 伐 罰 抜 筏 閥 鳩 噺 塙 蛤 隼 伴 判 半 反\n叛 帆 搬 斑 板 氾 汎 版 犯 班 畔 繁 般 藩 販 範\n釆 煩 頒 飯 挽 晩 番 盤 磐 蕃 蛮 匪 卑 否 妃 庇\n彼 悲 扉 批 披 斐 比 泌 疲 皮 碑 秘 緋 罷 肥 被\n誹 費 避 非 飛 樋 簸 備 尾 微 枇 毘 琵 眉 美\n   鼻 柊 稗 匹 疋 髭 彦 膝 菱 肘 弼 必 畢 筆 逼\n桧 姫 媛 紐 百 謬 俵 彪 標 氷 漂 瓢 票 表 評 豹\n廟 描 病 秒 苗 錨 鋲 蒜 蛭 鰭 品 彬 斌 浜 瀕 貧\n賓 頻 敏 瓶 不 付 埠 夫 婦 富 冨 布 府 怖 扶 敷\n斧 普 浮 父 符 腐 膚 芙 譜 負 賦 赴 阜 附 侮 撫\n武 舞 葡 蕪 部 封 楓 風 葺 蕗 伏 副 復 幅 服\n   福 腹 複 覆 淵 弗 払 沸 仏 物 鮒 分 吻 噴 墳\n憤 扮 焚 奮 粉 糞 紛 雰 文 聞 丙 併 兵 塀 幣 平\n弊 柄 並 蔽 閉 陛 米 頁 僻 壁 癖 碧 別 瞥 蔑 箆\n偏 変 片 篇 編 辺 返 遍 便 勉 娩 弁 鞭 保 舗 鋪\n圃 捕 歩 甫 補 輔 穂 募 墓 慕 戊 暮 母 簿 菩 倣\n俸 包 呆 報 奉 宝 峰 峯 崩 庖 抱 捧 放 方 朋\n   法 泡 烹 砲 縫 胞 芳 萌 蓬 蜂 褒 訪 豊 邦 鋒\n飽 鳳 鵬 乏 亡 傍 剖 坊 妨 帽 忘 忙 房 暴 望 某\n棒 冒 紡 肪 膨 謀 貌 貿 鉾 防 吠 頬 北 僕 卜 墨\n撲 朴 牧 睦 穆 釦 勃 没 殆 堀 幌 奔 本 翻 凡 盆\n摩 磨 魔 麻 埋 妹 昧 枚 毎 哩 槙 幕 膜 枕 鮪 柾\n鱒 桝 亦 俣 又 抹 末 沫 迄 侭 繭 麿 万 慢 満\n   漫 蔓 味 未 魅 巳 箕 岬 密 蜜 湊 蓑 稔 脈 妙\n粍 民 眠 務 夢 無 牟 矛 霧 鵡 椋 婿 娘 冥 名 命\n明 盟 迷 銘 鳴 姪 牝 滅 免 棉 綿 緬 面 麺 摸 模\n茂 妄 孟 毛 猛 盲 網 耗 蒙 儲 木 黙 目 杢 勿 餅\n尤 戻 籾 貰 問 悶 紋 門 匁 也 冶 夜 爺 耶 野 弥\n矢 厄 役 約 薬 訳 躍 靖 柳 薮 鑓 愉 愈 油 癒\n   諭 輸 唯 佑 優 勇 友 宥 幽 悠 憂 揖 有 柚 湧\n涌 猶 猷 由 祐 裕 誘 遊 邑 郵 雄 融 夕 予 余 与\n誉 輿 預 傭 幼 妖 容 庸 揚 揺 擁 曜 楊 様 洋 溶\n熔 用 窯 羊 耀 葉 蓉 要 謡 踊 遥 陽 養 慾 抑 欲\n沃 浴 翌 翼 淀 羅 螺 裸 来 莱 頼 雷 洛 絡 落 酪\n乱 卵 嵐 欄 濫 藍 蘭 覧 利 吏 履 李 梨 理 璃\n   痢 裏 裡 里 離 陸 律 率 立 葎 掠 略 劉 流 溜\n琉 留 硫 粒 隆 竜 龍 侶 慮 旅 虜 了 亮 僚 両 凌\n寮 料 梁 涼 猟 療 瞭 稜 糧 良 諒 遼 量 陵 領 力\n緑 倫 厘 林 淋 燐 琳 臨 輪 隣 鱗 麟 瑠 塁 涙 累\n類 令 伶 例 冷 励 嶺 怜 玲 礼 苓 鈴 隷 零 霊 麗\n齢 暦 歴 列 劣 烈 裂 廉 恋 憐 漣 煉 簾 練 聯\n   蓮 連 錬 呂 魯 櫓 炉 賂 路 露 労 婁 廊 弄 朗\n楼 榔 浪 漏 牢 狼 篭 老 聾 蝋 郎 六 麓 禄 肋 録\n論 倭 和 話 歪 賄 脇 惑 枠 鷲 亙 亘 鰐 詫 藁 蕨\n椀 湾 碗 腕    孁 孖 孽 宓 寘 寬 尒 尞 尣 尫 㞍\n屢 層 屮 𡚴 屺 岏 岟 岣 岪 岺 峋 峐 峒 峴 𡸴 㟢\n崍 崧 﨑 嵆 嵇 嵓 嵊 嵭 嶁 嶠 嶤 嶧 嶸 巋\n   弌 丐 丕 个 丱 丶 丼 丿 乂 乖 乘 亂 亅 豫 亊\n舒 弍 于 亞 亟 亠 亢 亰 亳 亶 从 仍 仄 仆 仂 仗\n仞 仭 仟 价 伉 佚 估 佛 佝 佗 佇 佶 侈 侏 侘 佻\n佩 佰 侑 佯 來 侖 儘 俔 俟 俎 俘 俛 俑 俚 俐 俤\n俥 倚 倨 倔 倪 倥 倅 伜 俶 倡 倩 倬 俾 俯 們 倆\n偃 假 會 偕 偐 偈 做 偖 偬 偸 傀 傚 傅 傴 傲\n   僉 僊 傳 僂 僖 僞 僥 僭 僣 僮 價 僵 儉 儁 儂\n儖 儕 儔 儚 儡 儺 儷 儼 儻 儿 兀 兒 兌 兔 兢 竸\n兩 兪 兮 冀 冂 囘 册 冉 冏 冑 冓 冕 冖 冤 冦 冢\n冩 冪 冫 决 冱 冲 冰 况 冽 凅 凉 凛 几 處 凩 凭\n凰 凵 凾 刄 刋 刔 刎 刧 刪 刮 刳 刹 剏 剄 剋 剌\n剞 剔 剪 剴 剩 剳 剿 剽 劍 劔 劒 剱 劈 劑 辨\n   辧 劬 劭 劼 劵 勁 勍 勗 勞 勣 勦 飭 勠 勳 勵\n勸 勹 匆 匈 甸 匍 匐 匏 匕 匚 匣 匯 匱 匳 匸 區\n卆 卅 丗 卉 卍 凖 卞 卩 卮 夘 卻 卷 厂 厖 厠 厦\n厥 厮 厰 厶 參 簒 雙 叟 曼 燮 叮 叨 叭 叺 吁 吽\n呀 听 吭 吼 吮 吶 吩 吝 呎 咏 呵 咎 呟 呱 呷 呰\n咒 呻 咀 呶 咄 咐 咆 哇 咢 咸 咥 咬 哄 哈 咨\n   咫 哂 咤 咾 咼 哘 哥 哦 唏 唔 哽 哮 哭 哺 哢\n唹 啀 啣 啌 售 啜 啅 啖 啗 唸 唳 啝 喙 喀 咯 喊\n喟 啻 啾 喘 喞 單 啼 喃 喩 喇 喨 嗚 嗅 嗟 嗄 嗜\n嗤 嗔 嘔 嗷 嘖 嗾 嗽 嘛 嗹 噎 噐 營 嘴 嘶 嘲 嘸\n噫 噤 嘯 噬 噪 嚆 嚀 嚊 嚠 嚔 嚏 嚥 嚮 嚶 嚴 囂\n嚼 囁 囃 囀 囈 囎 囑 囓 囗 囮 囹 圀 囿 圄 圉\n   圈 國 圍 圓 團 圖 嗇 圜 圦 圷 圸 坎 圻 址 坏\n坩 埀 垈 坡 坿 垉 垓 垠 垳 垤 垪 垰 埃 埆 埔 埒\n埓 堊 埖 埣 堋 堙 堝 塲 堡 塢 塋 塰 毀 塒 堽 塹\n墅 墹 墟 墫 墺 壞 墻 墸 墮 壅 壓 壑 壗 壙 壘 壥\n壜 壤 壟 壯 壺 壹 壻 壼 壽 夂 夊 夐 夛 梦 夥 夬\n夭 夲 夸 夾 竒 奕 奐 奎 奚 奘 奢 奠 奧 奬 奩\n   奸 妁 妝 佞 侫 妣 妲 姆 姨 姜 妍 姙 姚 娥 娟\n娑 娜 娉 娚 婀 婬 婉 娵 娶 婢 婪 媚 媼 媾 嫋 嫂\n媽 嫣 嫗 嫦 嫩 嫖 嫺 嫻 嬌 嬋 嬖 嬲 嫐 嬪 嬶 嬾\n孃 孅 孀 孑 孕 孚 孛 孥 孩 孰 孳 孵 學 斈 孺 宀\n它 宦 宸 寃 寇 寉 寔 寐 寤 實 寢 寞 寥 寫 寰 寶\n寳 尅 將 專 對 尓 尠 尢 尨 尸 尹 屁 屆 屎 屓\n   屐 屏 孱 屬 屮 乢 屶 屹 岌 岑 岔 妛 岫 岻 岶\n岼 岷 峅 岾 峇 峙 峩 峽 峺 峭 嶌 峪 崋 崕 崗 嵜\n崟 崛 崑 崔 崢 崚 崙 崘 嵌 嵒 嵎 嵋 嵬 嵳 嵶 嶇\n嶄 嶂 嶢 嶝 嶬 嶮 嶽 嶐 嶷 嶼 巉 巍 巓 巒 巖 巛\n巫 已 巵 帋 帚 帙 帑 帛 帶 帷 幄 幃 幀 幎 幗 幔\n幟 幢 幤 幇 幵 并 幺 麼 广 庠 廁 廂 廈 廐 廏\n   廖 廣 廝 廚 廛 廢 廡 廨 廩 廬 廱 廳 廰 廴 廸\n廾 弃 弉 彝 彜 弋 弑 弖 弩 弭 弸 彁 彈 彌 彎 弯\n彑 彖 彗 彙 彡 彭 彳 彷 徃 徂 彿 徊 很 徑 徇 從\n徙 徘 徠 徨 徭 徼 忖 忻 忤 忸 忱 忝 悳 忿 怡 恠\n怙 怐 怩 怎 怱 怛 怕 怫 怦 怏 怺 恚 恁 恪 恷 恟\n恊 恆 恍 恣 恃 恤 恂 恬 恫 恙 悁 悍 惧 悃 悚\n   悄 悛 悖 悗 悒 悧 悋 惡 悸 惠 惓 悴 忰 悽 惆\n悵 惘 慍 愕 愆 惶 惷 愀 惴 惺 愃 愡 惻 惱 愍 愎\n慇 愾 愨 愧 慊 愿 愼 愬 愴 愽 慂 慄 慳 慷 慘 慙\n慚 慫 慴 慯 慥 慱 慟 慝 慓 慵 憙 憖 憇 憬 憔 憚\n憊 憑 憫 憮 懌 懊 應 懷 懈 懃 懆 憺 懋 罹 懍 懦\n懣 懶 懺 懴 懿 懽 懼 懾 戀 戈 戉 戍 戌 戔 戛\n   戞 戡 截 戮 戰 戲 戳 扁 扎 扞 扣 扛 扠 扨 扼\n抂 抉 找 抒 抓 抖 拔 抃 抔 拗 拑 抻 拏 拿 拆 擔\n拈 拜 拌 拊 拂 拇 抛 拉 挌 拮 拱 挧 挂 挈 拯 拵\n捐 挾 捍 搜 捏 掖 掎 掀 掫 捶 掣 掏 掉 掟 掵 捫\n捩 掾 揩 揀 揆 揣 揉 插 揶 揄 搖 搴 搆 搓 搦 搶\n攝 搗 搨 搏 摧 摯 摶 摎 攪 撕 撓 撥 撩 撈 撼\n   據 擒 擅 擇 撻 擘 擂 擱 擧 舉 擠 擡 抬 擣 擯\n攬 擶 擴 擲 擺 攀 擽 攘 攜 攅 攤 攣 攫 攴 攵 攷\n收 攸 畋 效 敖 敕 敍 敘 敞 敝 敲 數 斂 斃 變 斛\n斟 斫 斷 旃 旆 旁 旄 旌 旒 旛 旙 无 旡 旱 杲 昊\n昃 旻 杳 昵 昶 昴 昜 晏 晄 晉 晁 晞 晝 晤 晧 晨\n晟 晢 晰 暃 暈 暎 暉 暄 暘 暝 曁 暹 曉 暾 暼\n   曄 暸 曖 曚 曠 昿 曦 曩 曰 曵 曷 朏 朖 朞 朦\n朧 霸 朮 朿 朶 杁 朸 朷 杆 杞 杠 杙 杣 杤 枉 杰\n枩 杼 杪 枌 枋 枦 枡 枅 枷 柯 枴 柬 枳 柩 枸 柤\n柞 柝 柢 柮 枹 柎 柆 柧 檜 栞 框 栩 桀 桍 栲 桎\n梳 栫 桙 档 桷 桿 梟 梏 梭 梔 條 梛 梃 檮 梹 桴\n梵 梠 梺 椏 梍 桾 椁 棊 椈 棘 椢 椦 棡 椌 棍\n   棔 棧 棕 椶 椒 椄 棗 棣 椥 棹 棠 棯 椨 椪 椚\n椣 椡 棆 楹 楷 楜 楸 楫 楔 楾 楮 椹 楴 椽 楙 椰\n楡 楞 楝 榁 楪 榲 榮 槐 榿 槁 槓 榾 槎 寨 槊 槝\n榻 槃 榧 樮 榑 榠 榜 榕 榴 槞 槨 樂 樛 槿 權 槹\n槲 槧 樅 榱 樞 槭 樔 槫 樊 樒 櫁 樣 樓 橄 樌 橲\n樶 橸 橇 橢 橙 橦 橈 樸 樢 檐 檍 檠 檄 檢 檣\n   檗 蘗 檻 櫃 櫂 檸 檳 檬 櫞 櫑 櫟 檪 櫚 櫪 櫻\n欅 蘖 櫺 欒 欖 鬱 欟 欸 欷 盜 欹 飮 歇 歃 歉 歐\n歙 歔 歛 歟 歡 歸 歹 歿 殀 殄 殃 殍 殘 殕 殞 殤\n殪 殫 殯 殲 殱 殳 殷 殼 毆 毋 毓 毟 毬 毫 毳 毯\n麾 氈 氓 气 氛 氤 氣 汞 汕 汢 汪 沂 沍 沚 沁 沛\n汾 汨 汳 沒 沐 泄 泱 泓 沽 泗 泅 泝 沮 沱 沾\n   沺 泛 泯 泙 泪 洟 衍 洶 洫 洽 洸 洙 洵 洳 洒\n洌 浣 涓 浤 浚 浹 浙 涎 涕 濤 涅 淹 渕 渊 涵 淇\n淦 涸 淆 淬 淞 淌 淨 淒 淅 淺 淙 淤 淕 淪 淮 渭\n湮 渮 渙 湲 湟 渾 渣 湫 渫 湶 湍 渟 湃 渺 湎 渤\n滿 渝 游 溂 溪 溘 滉 溷 滓 溽 溯 滄 溲 滔 滕 溏\n溥 滂 溟 潁 漑 灌 滬 滸 滾 漿 滲 漱 滯 漲 滌\n   漾 漓 滷 澆 潺 潸 澁 澀 潯 潛 濳 潭 澂 潼 潘\n澎 澑 濂 潦 澳 澣 澡 澤 澹 濆 澪 濟 濕 濬 濔 濘\n濱 濮 濛 瀉 瀋 濺 瀑 瀁 瀏 濾 瀛 瀚 潴 瀝 瀘 瀟\n瀰 瀾 瀲 灑 灣 炙 炒 炯 烱 炬 炸 炳 炮 烟 烋 烝\n烙 焉 烽 焜 焙 煥 煕 熈 煦 煢 煌 煖 煬 熏 燻 熄\n熕 熨 熬 燗 熹 熾 燒 燉 燔 燎 燠 燬 燧 燵 燼\n   燹 燿 爍 爐 爛 爨 爭 爬 爰 爲 爻 爼 爿 牀 牆\n牋 牘 牴 牾 犂 犁 犇 犒 犖 犢 犧 犹 犲 狃 狆 狄\n狎 狒 狢 狠 狡 狹 狷 倏 猗 猊 猜 猖 猝 猴 猯 猩\n猥 猾 獎 獏 默 獗 獪 獨 獰 獸 獵 獻 獺 珈 玳 珎\n玻 珀 珥 珮 珞 璢 琅 瑯 琥 珸 琲 琺 瑕 琿 瑟 瑙\n瑁 瑜 瑩 瑰 瑣 瑪 瑶 瑾 璋 璞 璧 瓊 瓏 瓔 珱\n   瓠 瓣 瓧 瓩 瓮 瓲 瓰 瓱 瓸 瓷 甄 甃 甅 甌 甎\n甍 甕 甓 甞 甦 甬 甼 畄 畍 畊 畉 畛 畆 畚 畩 畤\n畧 畫 畭 畸 當 疆 疇 畴 疊 疉 疂 疔 疚 疝 疥 疣\n痂 疳 痃 疵 疽 疸 疼 疱 痍 痊 痒 痙 痣 痞 痾 痿\n痼 瘁 痰 痺 痲 痳 瘋 瘍 瘉 瘟 瘧 瘠 瘡 瘢 瘤 瘴\n瘰 瘻 癇 癈 癆 癜 癘 癡 癢 癨 癩 癪 癧 癬 癰\n   癲 癶 癸 發 皀 皃 皈 皋 皎 皖 皓 皙 皚 皰 皴\n皸 皹 皺 盂 盍 盖 盒 盞 盡 盥 盧 盪 蘯 盻 眈 眇\n眄 眩 眤 眞 眥 眦 眛 眷 眸 睇 睚 睨 睫 睛 睥 睿\n睾 睹 瞎 瞋 瞑 瞠 瞞 瞰 瞶 瞹 瞿 瞼 瞽 瞻 矇 矍\n矗 矚 矜 矣 矮 矼 砌 砒 礦 砠 礪 硅 碎 硴 碆 硼\n碚 碌 碣 碵 碪 碯 磑 磆 磋 磔 碾 碼 磅 磊 磬\n   磧 磚 磽 磴 礇 礒 礑 礙 礬 礫 祀 祠 祗 祟 祚\n祕 祓 祺 祿 禊 禝 禧 齋 禪 禮 禳 禹 禺 秉 秕 秧\n秬 秡 秣 稈 稍 稘 稙 稠 稟 禀 稱 稻 稾 稷 穃 穗\n穉 穡 穢 穩 龝 穰 穹 穽 窈 窗 窕 窘 窖 窩 竈 窰\n窶 竅 竄 窿 邃 竇 竊 竍 竏 竕 竓 站 竚 竝 竡 竢\n竦 竭 竰 笂 笏 笊 笆 笳 笘 笙 笞 笵 笨 笶 筐\n   筺 笄 筍 笋 筌 筅 筵 筥 筴 筧 筰 筱 筬 筮 箝\n箘 箟 箍 箜 箚 箋 箒 箏 筝 箙 篋 篁 篌 篏 箴 篆\n篝 篩 簑 簔 篦 篥 籠 簀 簇 簓 篳 篷 簗 簍 篶 簣\n簧 簪 簟 簷 簫 簽 籌 籃 籔 籏 籀 籐 籘 籟 籤 籖\n籥 籬 籵 粃 粐 粤 粭 粢 粫 粡 粨 粳 粲 粱 粮 粹\n粽 糀 糅 糂 糘 糒 糜 糢 鬻 糯 糲 糴 糶 糺 紆\n   紂 紜 紕 紊 絅 絋 紮 紲 紿 紵 絆 絳 絖 絎 絲\n絨 絮 絏 絣 經 綉 絛 綏 絽 綛 綺 綮 綣 綵 緇 綽\n綫 總 綢 綯 緜 綸 綟 綰 緘 緝 緤 緞 緻 緲 緡 縅\n縊 縣 縡 縒 縱 縟 縉 縋 縢 繆 繦 縻 縵 縹 繃 縷\n縲 縺 繧 繝 繖 繞 繙 繚 繹 繪 繩 繼 繻 纃 緕 繽\n辮 繿 纈 纉 續 纒 纐 纓 纔 纖 纎 纛 纜 缸 缺\n   罅 罌 罍 罎 罐 网 罕 罔 罘 罟 罠 罨 罩 罧 罸\n羂 羆 羃 羈 羇 羌 羔 羞 羝 羚 羣 羯 羲 羹 羮 羶\n羸 譱 翅 翆 翊 翕 翔 翡 翦 翩 翳 翹 飜 耆 耄 耋\n耒 耘 耙 耜 耡 耨 耿 耻 聊 聆 聒 聘 聚 聟 聢 聨\n聳 聲 聰 聶 聹 聽 聿 肄 肆 肅 肛 肓 肚 肭 冐 肬\n胛 胥 胙 胝 胄 胚 胖 脉 胯 胱 脛 脩 脣 脯 腋\n   隋 腆 脾 腓 腑 胼 腱 腮 腥 腦 腴 膃 膈 膊 膀\n膂 膠 膕 膤 膣 腟 膓 膩 膰 膵 膾 膸 膽 臀 臂 膺\n臉 臍 臑 臙 臘 臈 臚 臟 臠 臧 臺 臻 臾 舁 舂 舅\n與 舊 舍 舐 舖 舩 舫 舸 舳 艀 艙 艘 艝 艚 艟 艤\n艢 艨 艪 艫 舮 艱 艷 艸 艾 芍 芒 芫 芟 芻 芬 苡\n苣 苟 苒 苴 苳 苺 莓 范 苻 苹 苞 茆 苜 茉 苙\n   茵 茴 茖 茲 茱 荀 茹 荐 荅 茯 茫 茗 茘 莅 莚\n莪 莟 莢 莖 茣 莎 莇 莊 荼 莵 荳 荵 莠 莉 莨 菴\n萓 菫 菎 菽 萃 菘 萋 菁 菷 萇 菠 菲 萍 萢 萠 莽\n萸 蔆 菻 葭 萪 萼 蕚 蒄 葷 葫 蒭 葮 蒂 葩 葆 萬\n葯 葹 萵 蓊 葢 蒹 蒿 蒟 蓙 蓍 蒻 蓚 蓐 蓁 蓆 蓖\n蒡 蔡 蓿 蓴 蔗 蔘 蔬 蔟 蔕 蔔 蓼 蕀 蕣 蕘 蕈\n   蕁 蘂 蕋 蕕 薀 薤 薈 薑 薊 薨 蕭 薔 薛 藪 薇\n薜 蕷 蕾 薐 藉 薺 藏 薹 藐 藕 藝 藥 藜 藹 蘊 蘓\n蘋 藾 藺 蘆 蘢 蘚 蘰 蘿 虍 乕 虔 號 虧 虱 蚓 蚣\n蚩 蚪 蚋 蚌 蚶 蚯 蛄 蛆 蚰 蛉 蠣 蚫 蛔 蛞 蛩 蛬\n蛟 蛛 蛯 蜒 蜆 蜈 蜀 蜃 蛻 蜑 蜉 蜍 蛹 蜊 蜴 蜿\n蜷 蜻 蜥 蜩 蜚 蝠 蝟 蝸 蝌 蝎 蝴 蝗 蝨 蝮 蝙\n   蝓 蝣 蝪 蠅 螢 螟 螂 螯 蟋 螽 蟀 蟐 雖 螫 蟄\n螳 蟇 蟆 螻 蟯 蟲 蟠 蠏 蠍 蟾 蟶 蟷 蠎 蟒 蠑 蠖\n蠕 蠢 蠡 蠱 蠶 蠹 蠧 蠻 衄 衂 衒 衙 衞 衢 衫 袁\n衾 袞 衵 衽 袵 衲 袂 袗 袒 袮 袙 袢 袍 袤 袰 袿\n袱 裃 裄 裔 裘 裙 裝 裹 褂 裼 裴 裨 裲 褄 褌 褊\n褓 襃 褞 褥 褪 褫 襁 襄 褻 褶 褸 襌 褝 襠 襞\n   襦 襤 襭 襪 襯 襴 襷 襾 覃 覈 覊 覓 覘 覡 覩\n覦 覬 覯 覲 覺 覽 覿 觀 觚 觜 觝 觧 觴 觸 訃 訖\n訐 訌 訛 訝 訥 訶 詁 詛 詒 詆 詈 詼 詭 詬 詢 誅\n誂 誄 誨 誡 誑 誥 誦 誚 誣 諄 諍 諂 諚 諫 諳 諧\n諤 諱 謔 諠 諢 諷 諞 諛 謌 謇 謚 諡 謖 謐 謗 謠\n謳 鞫 謦 謫 謾 謨 譁 譌 譏 譎 證 譖 譛 譚 譫\n   譟 譬 譯 譴 譽 讀 讌 讎 讒 讓 讖 讙 讚 谺 豁\n谿 豈 豌 豎 豐 豕 豢 豬 豸 豺 貂 貉 貅 貊 貍 貎\n貔 豼 貘 戝 貭 貪 貽 貲 貳 貮 貶 賈 賁 賤 賣 賚\n賽 賺 賻 贄 贅 贊 贇 贏 贍 贐 齎 贓 賍 贔 贖 赧\n赭 赱 赳 趁 趙 跂 趾 趺 跏 跚 跖 跌 跛 跋 跪 跫\n跟 跣 跼 踈 踉 跿 踝 踞 踐 踟 蹂 踵 踰 踴 蹊\n   蹇 蹉 蹌 蹐 蹈 蹙 蹤 蹠 踪 蹣 蹕 蹶 蹲 蹼 躁\n躇 躅 躄 躋 躊 躓 躑 躔 躙 躪 躡 躬 躰 軆 躱 躾\n軅 軈 軋 軛 軣 軼 軻 軫 軾 輊 輅 輕 輒 輙 輓 輜\n輟 輛 輌 輦 輳 輻 輹 轅 轂 輾 轌 轉 轆 轎 轗 轜\n轢 轣 轤 辜 辟 辣 辭 辯 辷 迚 迥 迢 迪 迯 邇 迴\n逅 迹 迺 逑 逕 逡 逍 逞 逖 逋 逧 逶 逵 逹 迸\n   遏 遐 遑 遒 逎 遉 逾 遖 遘 遞 遨 遯 遶 隨 遲\n邂 遽 邁 邀 邊 邉 邏 邨 邯 邱 邵 郢 郤 扈 郛 鄂\n鄒 鄙 鄲 鄰 酊 酖 酘 酣 酥 酩 酳 酲 醋 醉 醂 醢\n醫 醯 醪 醵 醴 醺 釀 釁 釉 釋 釐 釖 釟 釡 釛 釼\n釵 釶 鈞 釿 鈔 鈬 鈕 鈑 鉞 鉗 鉅 鉉 鉤 鉈 銕 鈿\n鉋 鉐 銜 銖 銓 銛 鉚 鋏 銹 銷 鋩 錏 鋺 鍄 錮\n   錙 錢 錚 錣 錺 錵 錻 鍜 鍠 鍼 鍮 鍖 鎰 鎬 鎭\n鎔 鎹 鏖 鏗 鏨 鏥 鏘 鏃 鏝 鏐 鏈 鏤 鐚 鐔 鐓 鐃\n鐇 鐐 鐶 鐫 鐵 鐡 鐺 鑁 鑒 鑄 鑛 鑠 鑢 鑞 鑪 鈩\n鑰 鑵 鑷 鑽 鑚 鑼 鑾 钁 鑿 閂 閇 閊 閔 閖 閘 閙\n閠 閨 閧 閭 閼 閻 閹 閾 闊 濶 闃 闍 闌 闕 闔 闖\n關 闡 闥 闢 阡 阨 阮 阯 陂 陌 陏 陋 陷 陜 陞\n   陝 陟 陦 陲 陬 隍 隘 隕 隗 險 隧 隱 隲 隰 隴\n隶 隸 隹 雎 雋 雉 雍 襍 雜 霍 雕 雹 霄 霆 霈 霓\n霎 霑 霏 霖 霙 霤 霪 霰 霹 霽 霾 靄 靆 靈 靂 靉\n靜 靠 靤 靦 靨 勒 靫 靱 靹 鞅 靼 鞁 靺 鞆 鞋 鞏\n鞐 鞜 鞨 鞦 鞣 鞳 鞴 韃 韆 韈 韋 韜 韭 齏 韲 竟\n韶 韵 頏 頌 頸 頤 頡 頷 頽 顆 顏 顋 顫 顯 顰\n   顱 顴 顳 颪 颯 颱 颶 飄 飃 飆 飩 飫 餃 餉 餒\n餔 餘 餡 餝 餞 餤 餠 餬 餮 餽 餾 饂 饉 饅 饐 饋\n饑 饒 饌 饕 馗 馘 馥 馭 馮 馼 駟 駛 駝 駘 駑 駭\n駮 駱 駲 駻 駸 騁 騏 騅 駢 騙 騫 騷 驅 驂 驀 驃\n騾 驕 驍 驛 驗 驟 驢 驥 驤 驩 驫 驪 骭 骰 骼 髀\n髏 髑 髓 體 髞 髟 髢 髣 髦 髯 髫 髮 髴 髱 髷\n   髻 鬆 鬘 鬚 鬟 鬢 鬣 鬥 鬧 鬨 鬩 鬪 鬮 鬯 鬲\n魄 魃 魏 魍 魎 魑 魘 魴 鮓 鮃 鮑 鮖 鮗 鮟 鮠 鮨\n鮴 鯀 鯊 鮹 鯆 鯏 鯑 鯒 鯣 鯢 鯤 鯔 鯡 鰺 鯲 鯱\n鯰 鰕 鰔 鰉 鰓 鰌 鰆 鰈 鰒 鰊 鰄 鰮 鰛 鰥 鰤 鰡\n鰰 鱇 鰲 鱆 鰾 鱚 鱠 鱧 鱶 鱸 鳧 鳬 鳰 鴉 鴈 鳫\n鴃 鴆 鴪 鴦 鶯 鴣 鴟 鵄 鴕 鴒 鵁 鴿 鴾 鵆 鵈\n   鵝 鵞 鵤 鵑 鵐 鵙 鵲 鶉 鶇 鶫 鵯 鵺 鶚 鶤 鶩\n鶲 鷄 鷁 鶻 鶸 鶺 鷆 鷏 鷂 鷙 鷓 鷸 鷦 鷭 鷯 鷽\n鸚 鸛 鸞 鹵 鹹 鹽 麁 麈 麋 麌 麒 麕 麑 麝 麥 麩\n麸 麪 麭 靡 黌 黎 黏 黐 黔 黜 點 黝 黠 黥 黨 黯\n黴 黶 黷 黹 黻 黼 黽 鼇 鼈 皷 鼕 鼡 鼬 鼾 齊 齒\n齔 齣 齟 齠 齡 齦 齧 齬 齪 齷 齲 齶 龕 龜 龠\n   堯 槇 遙 瑤 凜 熙    巢 帔 帘 幘 幞 庾 廊 廋\n廹 开 异 弇 弝 弣 弴 弶 弽 彀 彅 彔 彘 彤 彧 彽\n徉 徜 徧 徯 徵 德 忉 忞 忡 忩 怍 怔 怘 怳 怵 恇\n悔 悝 悞 惋 惔 惕 惝 惸 愜 愫 愰 愷 慨 憍 憎 憼\n憹 懲 戢 戾 扃 扖 扚 扯 抅 拄 拖 拼 挊 挘 挹 捃\n捥 捼 揥 揭 揵 搐 搔 搢 摹 摑 摠 摭 擎 撾 撿\n   擄 擊 擐 擷 擻 攢 攩 敏 敧 斝 既 昀 昉 昕 昞\n昺 昢 昤 昫 昰 昱 昳 曻 晈 晌 𣇄 晙 晚 晡 晥 晳\n晷 晸 暍 暑 暠 暲 暻 曆 曈 㬢 曛 曨 曺 朓 朗 朳\n杦 杇 杈 杻 极 枓 枘 枛 枻 柹 柀 柗 柼 栁 桒 栝\n栬 栱 桛 桲 桵 梅 梣 梥 梲 棈 棐 棨 棭 棰 棱 棼\n椊 楉 𣗄 椵 楂 楗 楣 楤 楨 榀 﨔 榥 榭 槏 㮶\n   㯃 槢 槩 槪 槵 槶 樏 樕 𣜿 樻 樾 橅 橐 橖 橛\n橫 橳 𣝣 檉 檔 檝 檞 檥 櫤 櫧 㰏 欄 欛 欞 欬 欵\n歆 歖 歠 步 歧 歷 殂 殩 殭 殺 每 毖 毗 毿 氅 氐\n氳 汙 汜 沪 汴 汶 沅 沆 沘 沜 泻 泆 泔 泠 泫 泮\n𣳾 洄 洎 洮 洱 洹 洿 浘 浥 海 涂 涇 涉 涔 涪 涬\n涿 淄 淖 淚 淛 淝 淼 渚 渴 湄 湜 湞 溫 溱 滁\n   滇 滎 漐 漚 漢 漪 漯 漳 潑 潙 潞 潡 潢 潾 澈\n澌 澍 澔 澠 澧 澶 澼 濇 濊 濹 濰 濵 瀅 瀆 瀨 灊\n灝 灞 灎 灤 灵 炅 炤 炫 炷 烔 烘 烤 焏 焫 焞 焠\n焮 焰 煆 煇 煑 煮 煒 煜 煠 煨 凞 熅 熇 熒 燁 熺\n燄 燾 爀 爕 牕 牖 㸿 犍 犛 犾 狀 狻 𤟱 猧 猨 猪\n獐 獦 獼 玕 玟 玠 玢 玦 玫 珉 珏 珖 珙 珣 珩\n   琇 琊 琚 琛 琢 琦 琨 琪 琫 琬 琮 琯 琰 瑄 瑆\n瑇 瑋 瑗 瑢 瑫 瑭 璆 璇 璉 璘 璜 璟 璣 璐 璦 璨\n璩 璵 璿 瓈 瓉 瓚 瓿 甁 甗 甯 畯 畹 疒 㽲 痎 痤\n瘀 瘂 瘈 瘕 瘖 瘙 瘞 瘭 瘵 癃 癋 癤 癥 癭 癯 癱\n皁 皛 皝 皞 皦 皪 皶 盅 盌 盎 盔 盦 盱 盼 眊 眙\n眴 眶 睆 睍 睎 睜 睟 睢 睺 瞀 瞔 瞪 矠 砭 𥒎\n   硃 硎 硏 硑 硨 确 碑 碰 𥔎 碭 磤 磲 礀 磷 礜\n礮 礱 礴 社 祉 祅 祆 祈 祐 祖 祜 祝 神 祥 祹 禍\n禎 福 禘 禱 禸 秈 秊 𥝱 秔 秞 秫 秭 稃 穀 稹 穝\n穭 突 窅 窠 𥧄 窳 窻 竎 竫 竽 笒 笭 笻 筇 筎 筠\n筭 筯 筲 箞 節 篗 篙 簁 簱 簞 簠 簳 簶 䉤 𥶡 籙\n籭 籹 粏 粔 粠 粼 糕 糙 糝 紇 紈 紓 紝 紣 紱\n   絁 絈 絓 絜 絺 綃 綋 綠 綦 緂 緌 緖 緣 練 縨\n縈 縑 縕 繁 繇 繒 繡 纊 纍 罇 署 羑 羗 羿 翎 翛\n翟 翬 翮 翺 者 耔 耦 耵 耷 耼 胊 胗 胠 胳 脘 腊\n腠 腧 腨 腭 膻 臊 臏 臗 臭 䑓 䑛 艠 艴 𦫿 芎 芡\n芣 芤 芩 芮 芷 芾 芿 苆 苕 苽 苾 茀 茁 荢 茢 茭\n茺 荃 荇 荑 荕 荽 莆 莒 莘 莧 莩 莿 菀 菇 菏\n   菑 菡 菪 萁 萆 萊 著 葈 葟 葰 葳 蒅 蒞 蒯 蒴\n蒺 蓀 蓂 𦹀 蔲 蔞 蔣 蔯 蕙 蕤 﨟 薭 蕺 薌 薏 薢\n薰 藋 藎 藭 蘒 藿 蘄 蘅 蘐 𧃴 蘘 蘩 蘸 虗 虛 虜\n虢 䖝 虬 虵 蚘 蚸 蛺 蛼 蛽 蜋 蝱 螇 螈 螬 螭 螵\n䗪 蟖 蟬 蠆 蠊 蠐 蠔 蠟 袘 袪 裊 裎 𧚄 裵 褜 褐\n褘 褙 褚 褧 褰 褲 褹 襀 覔 視 觔 觥 觶 訒 訕\n   訢 訷 詇 詎 詝 詡 詵 詹 誧 諐 諟 諴 諶 諸 謁\n謹 譆 譔 譙 譩 讝 豉 豨 賓 賡 賴 賸 賾 贈 贒 贛\n趯 跎 跑 跗 踠 踣 踽 蹰 蹻 𨉷 軀 䡄 軺 輞 輭 輶\n轔 𨏍 辦 辵 迤 迨 迮 逈 逭 逸 邈 邕 邗 邙 邛 邢\n邳 邾 郄 郅 郇 郗 郝 郞 郯 郴 都 鄔 鄕 鄖 鄢 鄣\n鄧 鄯 鄱 鄴 鄽 酈 酛 醃 醞 醬 醱 醼 釗 釻 釤\n   釥 釭 釱 鈇 鈐 鈸 鈹 鈺 鈼 鉀 鉃 鉏 鉸 銈 鋂\n鋋 鋌 鋓 鋠 鋿 錄 錟 錡 錥 鍈 鍉 鍊 鍤 鍥 鍪 鍰\n鎛 鎣 鎺 鏆 鏞 鏟 鐄 鏽 鐳 鑊 鑣 鑫 鑱 鑲 閎 閟\n閦 閩 閬 閶 閽 闋 闐 闓 䦰 闚 闞 陘 隄 隆 隝 隤\n隥 雒 雞 難 雩 雯 霳 霻 靍 靎 靏 靚 靮 靳 鞕 鞮\n鞺 韁 韉 韞 韛 韴 響 頊 頞 頫 頰 頻 顒 顓 顖\n   顗 顙 顚 類 顥 顬 颺 飈 飧 饘 馞 騂 騃 騤 騭\n騮 騸 驊 驎 驒 骶 髁 髃 髎 髖 髹 鬂 鬈 鬠 䰗 鬭\n魞 魹 魦 魲 魵 鮄 鮊 鮏 鮞 鮧 鯁 鯎 鯥 鯸 鯽 鰀\n鰣 鱁 鱏 鱐 鱓 鱣 鱥 鱷 鴝 鴞 鵃 鵇 鵒 鵣 鵰 鵼\n鶊 鶖 鷀 鶬 鶼 鷗 𪆐 鷧 鸇 鸕 鹼 麞 麤 麬 麯 麴\n麵 黃 黑 鼐 鼹 齗 龐 龔 龗 龢\n   𠂉 丂 丏 丒 丩 丫 丮 乀 乇 么 𠂢 乑 㐆 𠂤 乚\n乩 亝 㐬 㐮 亹 亻 𠆢 亼 仃 仈 仐 仫 仚 仱 仵 伀\n伖 佤 伷 伾 佔 佘 𠈓 佷 佸 佺 佽 侂 侅 侒 侚 俦\n侲 侾 俅 俋 俏 俒 㑪 俲 倀 倐 倓 倜 倞 倢 㑨 偂\n偆 偎 偓 偗 偣 偦 偪 偰 傣 傈 傒 傓 傕 傖 傜 傪\n𠌫 傱 傺 傻 僄 僇 僳 𠎁 僎 𠍱 僔 僙 僡 僩 㒒\n   儈 𠏹 儗 儛 𠑊 兠 𠔉 关 冃 冋 㒼 冘 冣 冭 㓇\n冼 𠗖 𠘨 凳 凴 刂 划 刖 𠝏 剕 剜 剬 剷 劄 劂 𠠇\n劘 𠠺 劤 劦 劯 劺 劻 勊 㔟 勑 𠢹 勷 匊 匋 匤 匵\n匾 卂 𠥼 𠦝 卧 卬 卺 厤 厴 𠫓 厷 叀 𠬝 㕝 㕞 叕\n叚 㕣 叴 叵 呕 吤 吨 㕮 呃 呢 呦 呬 咊 咍 咕 咠\n咦 咭 咮 咷 咺 咿 哃 𠵅 哬 哯 哱 哳 唀 唁 唉\n   唼 啁 㖦 啇 啊 㖨 啠 啡 啤 𠷡 啽 喂 喈 喑 㗅\n嗒 𠺕 𠹭 喿 嗉 嗌 嗑 嗝 㗚 嗢 𠹤 嗩 嘨 𠽟 嘇 嘐\n嘰 嘷 㗴 嘽 嘿 噀 噇 噞 噠 噭 㘅 嚈 嚌 嚕 嚚 嚝\n嚨 嚭 嚲 囅 囍 囟 囨 囶 囷 𡈁 圕 圣 𡉕 圩 𡉻 坅\n坆 坌 坍 𡉴 坨 坯 坳 坴 坵 坻 𡋤 𡋗 垬 垚 垝 垞\n垨 埗 𡋽 埌 𡌶 𡍄 埞 埦 埰 㙊 埸 埻 埽 堄 堞\n   堠 堧 堲 堹 𡏄 塉 塌 塧 墊 墋 墍 墏 墐 墔 墝\n墪 墱 𡑭 壃 壍 壢 壳 壴 夅 夆 夋 复 夔 夤 𡗗 㚑\n夽 㚙 奆 㚖 𦰩 奛 奟 𡙇 奵 奶 奼 妟 妮 妼 姈 姍\n姞 姣 姤 姧 姮 𡜆 𡝂 㛏 娌 娍 娗 娧 娭 婕 婥 婺\n媋 媜 媟 媠 媢 媱 媳 媵 媺 媿 嫚 嫜 嫠 嫥 嫰 嫮\n嫵 嬀 嬈 嬗 嬴 嬭 孌 孒 孨 孯 孼 孿 宁 宄 𡧃\n   宖 宬 㝡 寀 㝢 寎 寖 㝬 㝫 寱 寽 㝵 尃 尩 尰\n𡱖 屟 屣 屧 屨 屩 屰 𡴭 𡵅 屼 𡵸 𡵢 岈 岊 㟁 𡶡\n𡶜 岠 岢 岦 岧 𡶒 岭 岵 𡶷 峉 𡷠 𡸳 崆 崐 崫 崝\n崠 崤 崦 崱 崹 嵂 㟨 嵡 嵪 㟴 嵰 𡼞 㟽 嶈 㠀 嶒\n嶔 嶗 嶙 嶰 嶲 嶴 𡽶 嶹 巑 巗 巘 巠 𡿺 巤 巩 㠯\n帀 㠶 帒 帕 㡀 帟 帮 帾 幉 㡜 幖 㡡 幫 幬 幭\n   幮 𢅻 庥 庪 庬 庹 庿 廆 廒 廙 𢌞 廽 弈 弎 弜\n𢎭 弞 彇 彣 彲 彾 徏 徢 徤 徸 忄 㣺 忇 忋 忒 忓\n忔 忢 忮 忯 忳 忼 㤗 怗 怢 怤 㤚 恌 恿 悊 悕 您\n𢛳 悰 悱 悾 惈 惙 惛 惮 惲 惵 愐 愒 愓 愙 愞 愺\n㥯 慁 慆 慠 慼 𢡛 憒 憓 憗 憘 憥 憨 憭 𢢫 懕 懝\n懟 懵 𢦏 戕 戣 戩 扆 扌 扑 扒 扡 扤 扻 扭 扳\n   抙 抦 拕 𢪸 拽 挃 挍 挐 𢭏 𢭐 挲 挵 挻 挼 捁\n捄 捎 𢭆 捙 𢰝 𢮦 捬 掄 掙 𢰤 掔 掽 揷 揔 揕 揜\n揠 揫 揬 揲 搉 搞 搥 搩 搯 摚 摛 摝 摳 摽 撇 撑\n撝 撟 擋 擌 擕 擗 𢷡 擤 擥 擿 攄 㩮 攏 攔 攖 㩳\n攞 攲 敄 敔 敫 敺 斁 斄 斅 斊 斲 斵 斸 斿 旂 旉\n旔 㫖 旲 旹 旼 昄 昈 昡 昪 晅 晑 晎 㫪 𣇃 晗\n   晛 晣 𣇵 𣆶 晪 晫 晬 晭 晻 暀 暐 暒 暙 㬎 暭\n暱 暵 㬚 暿 㬜 曬 㫗 朁 朅 朒 𣍲 朙 𣏓 𣏒 杌 杍\n杔 杝 𣏐 𣏤 𣏕 杴 杶 𣏚 枒 𣏟 荣 栐 枰 枲 柃 柈\n柒 柙 柛 柰 柷 𣑊 𣑑 𣑋 栘 栟 栭 𣑥 栳 栻 栾 桄\n桅 桉 桌 桕 桗 㭷 桫 桮 桺 桼 梂 梐 梖 㭭 梘 梙\n梚 梜 梪 梫 梴 梻 棻 𣓤 𣕚 﨓 棃 棅 棌 棏 棖\n   棙 棤 棥 棬 棷 椃 椇 㮇 㮈 𣖔 椻 㮍 楆 楩 楬\n楲 楺 楿 榒 㮤 榖 榘 榦 榰 榷 榺 榼 槀 槑 槖 𣘹\n𣙇 樰 𣘸 𣘺 槣 槮 槯 槳 㯍 槴 槾 樑 樚 樝 𣜜 樲\n樳 樴 樿 橆 橉 橺 橎 橒 橤 𣜌 橾 檃 檋 㯰 檑 檟\n檡 𣝤 檫 檽 櫆 櫔 櫐 櫜 櫝 𣟿 𣟧 櫬 櫱 櫲 櫳 櫽\n𣠤 欋 欏 欐 欑 𣠽 欗 㰦 欯 歊 歘 歬 歵 歺 殁\n   殛 殮 𣪘 殽 殾 毇 毈 毉 毚 毦 毧 毮 毱 氂 氊\n氎 氵 氶 氺 𣱿 氿 汍 汛 汭 沄 沉 㳃 沔 沕 沗 沭\n泂 泐 㳒 泖 泚 泜 泩 泬 泭 𣴀 洀 洊 洤 洦 洧 汧\n洯 洼 浛 浞 浠 浰 涀 涁 涊 涍 涑 涘 𣵀 渗 𣷺 𣷹\n𣷓 涫 涮 涴 淂 洴 淈 淎 淏 淐 淟 淩 淶 渶 渞 渢\n渧 㴑 渲 渼 湈 湉 湋 湌 湏 湑 湓 湔 湗 湣 㴞\n   溓 溧 溴 溿 滃 滊 滙 漵 滫 滹 滻 漊 漌 漘 漥\n漶 漼 𣽾 潒 潗 潚 潠 潨 澘 潽 澐 澖 澾 澟 澥 澯\n㵤 澵 濈 濉 濚 濞 濩 𤂖 濼 瀀 瀇 瀊 瀣 𤄃 瀹 瀺\n瀼 灃 灇 灋 㶚 灔 灥 灩 灬 灮 灶 灾 炁 炆 炕 炗\n炻 𤇆 炟 炱 𤇾 烬 烊 烑 烓 烜 焃 焄 焆 焇 焈 焌\n㷀 焯 焱 煐 煊 煓 煞 㷔 熖 熀 熛 熠 熢 熮 熯\n   熳 𤎼 燋 燓 燙 燜 爇 㸅 爫 爫 爴 爸 爹 丬 牂\n牓 牗 牣 𤘩 牮 牯 牸 牿 犎 𤚥 犭 犮 犰 犱 狁 㹠\n狌 㹦 㹨 狳 狺 猇 猒 猘 猙 㺃 猹 猬 猱 猳 猽 獒\n㺔 獫 獬 𤢖 獮 獯 獱 獷 玁 玅 玊 玔 玘 玜 玞 玥\n玨 玵 玷 玹 玼 玿 珅 珋 珡 珧 珹 琓 珺 琁 琤 琱\n琹 瑓 瑀 瑃 瑍 瑒 瑝 瑱 璁 璅 璈 𤩍 璒 璗 璙\n   璠 璡 璥 璪 璫 璹 璻 璺 瓖 瓘 瓞 瓯 瓫 𤭖 瓺\n𤭯 甠 甤 甪 㽗 𤰖 甽 甾 畀 畈 畎 畐 畒 畬 畲 畱\n畺 畽 畾 疁 𤴔 疌 㽵 疢 㽷 疰 疷 疿 痀 痆 痏 痓\n痝 痟 痠 痧 痬 痮 痱 痹 瘃 瘘 瘇 瘏 㾮 𤸎 瘓 瘛\n瘜 𤸷 瘥 瘨 瘼 瘳 𤹪 㿉 癁 𤺋 癉 癕 㿗 癮 皕 皜\n皡 皠 皧 皨 皯 𥁊 盉 𥁕 盨 盬 𥄢 眗 眚 眭 眵\n   𥆩 䀹 𥇥 𥇍 睘 睠 睪 𥈞 睲 睼 睽 𥉌 䁘 瞚 瞟\n瞢 瞤 瞩 矞 矟 矤 矦 矪 矬 䂓 矰 矴 矻 𥐮 砅 砆\n砉 砍 砙 砡 砬 硇 硤 硪 𥓙 碊 碔 碤 碝 碞 碟 碻\n磈 磌 磎 磕 磠 磡 磦 磹 磺 磻 磾 𥖧 礐 礛 礰 礥\n礻 祊 祘 祛 䄅 祧 祲 禔 禕 禖 禛 禡 禩 禴 离 秂\n秇 秌 种 秖 䅈 𥞩 𥞴 䅏 稊 稑 稕 稛 稞 䅣 稭\n   稸 穇 穌 穖 穙 穜 穟 穠 穧 穪 穵 穸 窂 窊 窐\n窣 窬 𥧔 䆴 窹 窼 窾 䆿 竌 竑 竧 竨 竴 𥫤 𥫣 笇\n𥫱 笽 笧 笪 笮 笯 笱 䇦 䇳 筿 筁 䇮 筕 筹 筤 筦\n筩 筳 𥮲 䈇 箐 箑 箛 䈎 箯 箵 箼 篅 篊 𥱋 𥱤 篔\n篖 篚 篪 篰 簃 簋 簎 簏 簦 籅 籊 籑 籗 籞 籡 籩\n籮 籯 籰 𥸮 𥹖 𥹥 粦 𥹢 粶 粷 粿 𥻘 糄 𥻂 糈\n   糍 𥻨 糗 𥼣 糦 糫 𥽜 糵 紃 紉 䋆 紒 紞 𥿠 𥿔\n紽 紾 絀 絇 𦀌 𥿻 䋖 絙 絚 絪 絰 䋝 絿 𦀗 綆 綈\n綌 綗 𦁠 綝 綧 綪 綶 綷 緀 緗 緙 緦 緱 緹 䌂 𦃭\n縉 縐 縗 縝 縠 縧 縬 繅 繳 繵 繾 纆 纇 䌫 纑 纘\n纚 䍃 缼 缻 缾 罃 罄 罏 㓁 𦉰 罒 𦊆 罡 罣 罤 罭\n罽 罾 𦍌 羐 养 𣴎 羖 羜 羭 𦐂 翃 翏 翣 翥 翯\n   翲 耂 耊 耈 耎 耑 耖 耤 耬 耰 聃 聦 聱 聵 聻\n肙 肜 肤 肧 肸 𦙾 胅 胕 胘 胦 𦚰 脍 胵 胻 䏮 脵\n脖 脞 䏰 脤 脧 脬 𦜝 脽 䐈 腩 䐗 膁 䐜 膄 膅 䐢\n膘 膲 臁 臃 臖 臛 𦣝 臤 𦣪 臬 𦥑 臽 臿 𦥯 舄 𦧝\n舙 舡 舢 𦨞 舲 舴 舼 艆 艉 艅 𦩘 艋 䑶 艏 䑺 艗\n𦪌 艜 艣 𦪷 艹 艹 艹 䒑 艽 艿 芃 芊 芓 芧 芨\n   芲 芴 芺 芼 苢 苨 苷 茇 茈 茌 荔 茛 茝 茰 茼\n荄 荗 䒾 荿 䓔 䒳 莍 莔 莕 莛 莝 菉 菐 菔 菝 菥\n菹 萏 萑 萕 𦱳 萗 萹 葊 葏 葑 葒 葙 葚 葜 𦳝 葥\n葶 葸 葼 蒁 䔍 蓜 蒗 蒦 蒾 䔈 蓎 蓏 蓓 𦹥 蓧 蓪\n蓯 蓰 蓱 蓺 蓽 蔌 蔛 蔤 蔥 蔫 蔴 蕏 蕯 䔥 䕃 蔾\n蕑 蕓 蕞 蕡 蕢 𦾔 蕻 蕽 蕿 薁 薆 薓 薝 薟 𦿸\n   𦿶 𦿷 薷 薼 藇 藊 藘 藙 藟 藡 藦 藶 蘀 蘑 蘞\n蘡 蘤 蘧 𧄍 蘹 蘼 𧄹 虀 蘒 虓 虖 虯 虷 虺 蚇 蚉\n蚍 蚑 蚜 蚝 蚨 﨡 蚱 蚳 蛁 蛃 蛑 蛕 蛗 蛣 蛦 䖸\n蜅 蜇 蜎 蜐 蜓 蜙 蜟 蜡 蜣 蜱 蜺 蜾 蝀 蝃 蝑 蝘\n蝤 蝥 蝲 蝼 𧏛 𧏚 螧 螉 螋 螓 螠 𧏾 䗥 螾 𧐐 蟁\n蟎 蟵 蟟 𧑉 蟣 蟥 蟦 蟪 蟫 蟭 蠁 蠃 蠋 蠓 蠨\n   蠮 蠲 蠼 䘏 衊 衘 衟 衤 𧘕 𧘔 衩 𧘱 衯 袠 袼\n袽 袾 裀 裒 𧚓 裑 裓 裛 裰 裱 䙁 褁 𧜎 褷 𧜣 襂\n襅 襉 𧝒 䙥 襢 覀 覉 覐 覟 覰 覷 觖 觘 觫 䚡 觱\n觳 觽 觿 䚯 訑 訔 𧦅 訡 訵 訾 詅 詍 詘 誮 誐 誷\n誾 諗 諼 𧪄 謊 謅 謍 謜 謟 謭 譃 䜌 譑 譞 譶 譿\n讁 讋 讔 讕 讜 讞 谹 𧮳 谽 𧮾 𧯇 豅 豇 豏 豔\n   豗 豩 豭 豳 𧲸 貓 貒 貙 䝤 貛 貤 賖 賕 賙 𧶠\n賰 賱 𧸐 贉 贎 赬 趄 趕 趦 𧾷 跆 跈 跙 跬 踌 䟽\n跽 踆 𨂊 踔 踖 踡 踢 踧 𨂻 䠖 踶 踹 蹋 蹔 蹢 蹬\n蹭 蹯 躘 躞 躮 躳 躵 躶 躻 𨊂 軑 軔 䡎 軹 𨋳 輀\n輈 輗 輫 轀 轊 轘 𨐌 辤 辴 辶 辶 𨑕 迁 迆 﨤 迊\n迍 迓 迕 迠 迱 迵 迻 适 逌 逷 𨕫 遃 遄 遝 𨗈\n   𨗉 邅 邌 邐 阝 邡 䢵 邰 邶 郃 郈 𨛗 郜 郟 𨛺\n郶 郲 鄀 郫 郾 郿 鄄 鄆 鄘 鄜 鄞 鄷 鄹 鄺 酆 酇\n酗 酙 酡 酤 酴 酹 醅 醎 醨 醮 醳 醶 釃 釄 釚 𨥉\n𨥆 釬 釮 鈁 鈊 鈖 鈗 𨥫 鈳 鉂 鉇 鉊 鉎 鉑 鉖 鉙\n鉠 鉡 鉥 鉧 鉨 𨦇 𨦈 鉼 鉽 鉿 銉 銍 銗 銙 銟 銧\n銫 𨦺 𨦻 銲 銿 鋀 鋆 鋎 鋐 鋗 鋙 鋥 鋧 錑 𨨞\n   𨨩 鋷 鋹 鋻 錂 錍 錕 錝 錞 錧 錩 𨩱 𨩃 鍇 鍑\n鍗 鍚 鍫 鍱 鍳 鎡 𨪙 𨫍 鎈 鎋 鎏 鎞 鏵 𨫤 𨫝 鏱\n鏁 鏇 鏜 鏢 鏧 鐉 鐏 鐖 鐗 鏻 鐲 鐴 鐻 鑅 𨯁 𨯯\n鑭 鑯 镸 镹 閆 閌 閍 𨴐 閫 閴 𨵱 闈 𨷻 𨸟 阬 阳\n阴 𨸶 阼 陁 陡 𨺉 隂 𨻫 隚 𨼲 䧧 隩 隯 隳 隺 隽\n䧺 𨿸 雘 雚 雝 䨄 霔 霣 䨩 霶 靁 靇 靕 靗 靛\n   靪 𩊠 𩊱 鞖 鞚 鞞 鞢 鞱 鞲 鞾 韌 韑 韔 韘 韙\n韡 韱 頄 頍 頎 頔 頖 䪼 𩒐 頣 頲 頳 頥 顇 顦 颫\n颭 颰 𩗏 颷 颸 颻 颼 颿 飂 飇 飋 飠 𩙿 飡 飣 飥\n飪 飰 飱 飳 餈 䬻 𩛰 餖 餗 𩜙 餚 餛 餜 𩝐 餱 餲\n餳 餺 餻 餼 饀 饁 饆 饍 饎 饜 饟 饠 馣 馦 馹 馽\n馿 駃 駉 駔 駙 駞 𩣆 駰 駹 駼 騊 騑 騖 騚 騠\n   騱 騶 驄 驌 驘 䯂 骯 䯊 骷 䯒 骹 𩩲 髆 髐 髒\n髕 䯨 髜 髠 髥 髩 鬃 鬌 鬐 鬒 鬖 鬜 鬫 鬳 鬽 䰠\n魋 魣 魥 魫 魬 魳 魶 魷 鮦 鮬 鮱 𩷛 𩸽 鮲 鮸 鮾\n鯇 鯳 鯘 鯝 鯧 鯪 鯫 鯯 鯮 𩸕 鯺 𩺊 鯷 𩹉 鰖 鰘\n鰙 鰚 鰝 鰢 鰧 鰩 鰪 𩻄 鰱 鰶 鰷 鱅 鱜 𩻩 鱉 鱊\n𩻛 鱔 鱘 鱛 鱝 鱟 鱩 鱪 鱫 鱭 鱮 鱰 鱲 鱵 鱺\n   鳦 鳲 鴋 鴂 𩿎 鴑 鴗 鴘 𪀯 䳄 𪀚 鴲 䳑 鵂 鵊\n鵟 鵢 𪃹 鵩 鵫 𪂂 鵳 鵶 鵷 鵾 鶄 鶍 鶙 鶡 鶿 鶵\n鶹 鶽 鷃 鷇 鷉 鷖 鷚 鷟 鷠 鷣 鷴 䴇 鸊 鸂 鸍 鸙\n鸜 鸝 鹻 𢈘 麀 麅 麛 麨 𪎌 麽 𪐷 黟 黧 黮 黿 鼂\n䵷 鼃 鼗 鼙 鼯 鼷 鼺 鼽 齁 齅 齆 齓 齕 齘 𪗱 齝\n𪘂 齩 𪘚 齭 齰 齵 𪚲\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-JP-MS-snippet",
    "content": "  ! \" # $ % & ' ( ) * + , - . /\n0 1 2 3 4 5 6 7 8 9 : ; < = > ?\n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n  \u001b(I!\u001b(B \u001b(I\"\u001b(B \u001b(I#\u001b(B \u001b(I$\u001b(B \u001b(I%\u001b(B \u001b(I&\u001b(B \u001b(I'\u001b(B \u001b(I(\u001b(B \u001b(I)\u001b(B \u001b(I*\u001b(B \u001b(I+\u001b(B \u001b(I,\u001b(B \u001b(I-\u001b(B \u001b(I.\u001b(B \u001b(I/\u001b(B\n\u001b(I0\u001b(B \u001b(I1\u001b(B \u001b(I2\u001b(B \u001b(I3\u001b(B \u001b(I4\u001b(B \u001b(I5\u001b(B \u001b(I6\u001b(B \u001b(I7\u001b(B \u001b(I8\u001b(B \u001b(I9\u001b(B \u001b(I:\u001b(B \u001b(I;\u001b(B \u001b(I<\u001b(B \u001b(I=\u001b(B \u001b(I>\u001b(B \u001b(I?\u001b(B\n\u001b(I@\u001b(B \u001b(IA\u001b(B \u001b(IB\u001b(B \u001b(IC\u001b(B \u001b(ID\u001b(B \u001b(IE\u001b(B \u001b(IF\u001b(B \u001b(IG\u001b(B \u001b(IH\u001b(B \u001b(II\u001b(B \u001b(IJ\u001b(B \u001b(IK\u001b(B \u001b(IL\u001b(B \u001b(IM\u001b(B \u001b(IN\u001b(B \u001b(IO\u001b(B\n\u001b(IP\u001b(B \u001b(IQ\u001b(B \u001b(IR\u001b(B \u001b(IS\u001b(B \u001b(IT\u001b(B \u001b(IU\u001b(B \u001b(IV\u001b(B \u001b(IW\u001b(B \u001b(IX\u001b(B \u001b(IY\u001b(B \u001b(IZ\u001b(B \u001b(I[\u001b(B \u001b(I\\\u001b(B \u001b(I]\u001b(B \u001b(I^\u001b(B \u001b(I_\u001b(B\n  \u001b$B!!\u001b(B \u001b$B!\"\u001b(B \u001b$B!#\u001b(B \u001b$B!$\u001b(B \u001b$B!%\u001b(B \u001b$B!&\u001b(B \u001b$B!'\u001b(B \u001b$B!(\u001b(B \u001b$B!)\u001b(B \u001b$B!*\u001b(B \u001b$B!+\u001b(B \u001b$B!,\u001b(B \u001b$B!-\u001b(B \u001b$B!.\u001b(B \u001b$B!/\u001b(B\n\u001b$B!0\u001b(B \u001b$B!1\u001b(B \u001b$B!2\u001b(B \u001b$B!3\u001b(B \u001b$B!4\u001b(B \u001b$B!5\u001b(B \u001b$B!6\u001b(B \u001b$B!7\u001b(B \u001b$B!8\u001b(B \u001b$B!9\u001b(B \u001b$B!:\u001b(B \u001b$B!;\u001b(B \u001b$B!<\u001b(B \u001b$B!=\u001b(B \u001b$B!>\u001b(B \u001b$B!?\u001b(B\n\u001b$B!@\u001b(B \u001b$B!A\u001b(B \u001b$B!B\u001b(B \u001b$B!C\u001b(B \u001b$B!D\u001b(B \u001b$B!E\u001b(B \u001b$B!F\u001b(B \u001b$B!G\u001b(B \u001b$B!H\u001b(B \u001b$B!I\u001b(B \u001b$B!J\u001b(B \u001b$B!K\u001b(B \u001b$B!L\u001b(B \u001b$B!M\u001b(B \u001b$B!N\u001b(B \u001b$B!O\u001b(B\n\u001b$B!P\u001b(B \u001b$B!Q\u001b(B \u001b$B!R\u001b(B \u001b$B!S\u001b(B \u001b$B!T\u001b(B \u001b$B!U\u001b(B \u001b$B!V\u001b(B \u001b$B!W\u001b(B \u001b$B!X\u001b(B \u001b$B!Y\u001b(B \u001b$B!Z\u001b(B \u001b$B![\u001b(B \u001b$B!\\\u001b(B \u001b$B!]\u001b(B \u001b$B!^\u001b(B \u001b$B!_\u001b(B\n\u001b$B!`\u001b(B \u001b$B!a\u001b(B \u001b$B!b\u001b(B \u001b$B!c\u001b(B \u001b$B!d\u001b(B \u001b$B!e\u001b(B \u001b$B!f\u001b(B \u001b$B!g\u001b(B \u001b$B!h\u001b(B \u001b$B!i\u001b(B \u001b$B!j\u001b(B \u001b$B!k\u001b(B \u001b$B!l\u001b(B \u001b$B!m\u001b(B \u001b$B!n\u001b(B \u001b$B!o\u001b(B\n\u001b$B!p\u001b(B \u001b$B!q\u001b(B \u001b$B!r\u001b(B \u001b$B!s\u001b(B \u001b$B!t\u001b(B \u001b$B!u\u001b(B \u001b$B!v\u001b(B \u001b$B!w\u001b(B \u001b$B!x\u001b(B \u001b$B!y\u001b(B \u001b$B!z\u001b(B \u001b$B!{\u001b(B \u001b$B!|\u001b(B \u001b$B!}\u001b(B \u001b$B!~\u001b(B\n  \u001b$B\"!\u001b(B \u001b$B\"\"\u001b(B \u001b$B\"#\u001b(B \u001b$B\"$\u001b(B \u001b$B\"%\u001b(B \u001b$B\"&\u001b(B \u001b$B\"'\u001b(B \u001b$B\"(\u001b(B \u001b$B\")\u001b(B \u001b$B\"*\u001b(B \u001b$B\"+\u001b(B \u001b$B\",\u001b(B \u001b$B\"-\u001b(B \u001b$B\".\u001b(B\n                    \u001b$B\":\u001b(B \u001b$B\";\u001b(B \u001b$B\"<\u001b(B \u001b$B\"=\u001b(B \u001b$B\">\u001b(B \u001b$B\"?\u001b(B\n\u001b$B\"@\u001b(B \u001b$B\"A\u001b(B                 \u001b$B\"J\u001b(B \u001b$B\"K\u001b(B \u001b$B\"L\u001b(B \u001b$B\"M\u001b(B \u001b$B\"N\u001b(B \u001b$B\"O\u001b(B\n\u001b$B\"P\u001b(B                       \u001b$B\"\\\u001b(B \u001b$B\"]\u001b(B \u001b$B\"^\u001b(B \u001b$B\"_\u001b(B\n\u001b$B\"`\u001b(B \u001b$B\"a\u001b(B \u001b$B\"b\u001b(B \u001b$B\"c\u001b(B \u001b$B\"d\u001b(B \u001b$B\"e\u001b(B \u001b$B\"f\u001b(B \u001b$B\"g\u001b(B \u001b$B\"h\u001b(B \u001b$B\"i\u001b(B \u001b$B\"j\u001b(B\n    \u001b$B\"r\u001b(B \u001b$B\"s\u001b(B \u001b$B\"t\u001b(B \u001b$B\"u\u001b(B \u001b$B\"v\u001b(B \u001b$B\"w\u001b(B \u001b$B\"x\u001b(B \u001b$B\"y\u001b(B         \u001b$B\"~\u001b(B\n\u001b$B#0\u001b(B \u001b$B#1\u001b(B \u001b$B#2\u001b(B \u001b$B#3\u001b(B \u001b$B#4\u001b(B \u001b$B#5\u001b(B \u001b$B#6\u001b(B \u001b$B#7\u001b(B \u001b$B#8\u001b(B \u001b$B#9\u001b(B\n  \u001b$B#A\u001b(B \u001b$B#B\u001b(B \u001b$B#C\u001b(B \u001b$B#D\u001b(B \u001b$B#E\u001b(B \u001b$B#F\u001b(B \u001b$B#G\u001b(B \u001b$B#H\u001b(B \u001b$B#I\u001b(B \u001b$B#J\u001b(B \u001b$B#K\u001b(B \u001b$B#L\u001b(B \u001b$B#M\u001b(B \u001b$B#N\u001b(B \u001b$B#O\u001b(B\n\u001b$B#P\u001b(B \u001b$B#Q\u001b(B \u001b$B#R\u001b(B \u001b$B#S\u001b(B \u001b$B#T\u001b(B \u001b$B#U\u001b(B \u001b$B#V\u001b(B \u001b$B#W\u001b(B \u001b$B#X\u001b(B \u001b$B#Y\u001b(B \u001b$B#Z\u001b(B\n  \u001b$B#a\u001b(B \u001b$B#b\u001b(B \u001b$B#c\u001b(B \u001b$B#d\u001b(B \u001b$B#e\u001b(B \u001b$B#f\u001b(B \u001b$B#g\u001b(B \u001b$B#h\u001b(B \u001b$B#i\u001b(B \u001b$B#j\u001b(B \u001b$B#k\u001b(B \u001b$B#l\u001b(B \u001b$B#m\u001b(B \u001b$B#n\u001b(B \u001b$B#o\u001b(B\n\u001b$B#p\u001b(B \u001b$B#q\u001b(B \u001b$B#r\u001b(B \u001b$B#s\u001b(B \u001b$B#t\u001b(B \u001b$B#u\u001b(B \u001b$B#v\u001b(B \u001b$B#w\u001b(B \u001b$B#x\u001b(B \u001b$B#y\u001b(B \u001b$B#z\u001b(B\n  \u001b$B$!\u001b(B \u001b$B$\"\u001b(B \u001b$B$#\u001b(B \u001b$B$$\u001b(B \u001b$B$%\u001b(B \u001b$B$&\u001b(B \u001b$B$'\u001b(B \u001b$B$(\u001b(B \u001b$B$)\u001b(B \u001b$B$*\u001b(B \u001b$B$+\u001b(B \u001b$B$,\u001b(B \u001b$B$-\u001b(B \u001b$B$.\u001b(B \u001b$B$/\u001b(B\n\u001b$B$0\u001b(B \u001b$B$1\u001b(B \u001b$B$2\u001b(B \u001b$B$3\u001b(B \u001b$B$4\u001b(B \u001b$B$5\u001b(B \u001b$B$6\u001b(B \u001b$B$7\u001b(B \u001b$B$8\u001b(B \u001b$B$9\u001b(B \u001b$B$:\u001b(B \u001b$B$;\u001b(B \u001b$B$<\u001b(B \u001b$B$=\u001b(B \u001b$B$>\u001b(B \u001b$B$?\u001b(B\n\u001b$B$@\u001b(B \u001b$B$A\u001b(B \u001b$B$B\u001b(B \u001b$B$C\u001b(B \u001b$B$D\u001b(B \u001b$B$E\u001b(B \u001b$B$F\u001b(B \u001b$B$G\u001b(B \u001b$B$H\u001b(B \u001b$B$I\u001b(B \u001b$B$J\u001b(B \u001b$B$K\u001b(B \u001b$B$L\u001b(B \u001b$B$M\u001b(B \u001b$B$N\u001b(B \u001b$B$O\u001b(B\n\u001b$B$P\u001b(B \u001b$B$Q\u001b(B \u001b$B$R\u001b(B \u001b$B$S\u001b(B \u001b$B$T\u001b(B \u001b$B$U\u001b(B \u001b$B$V\u001b(B \u001b$B$W\u001b(B \u001b$B$X\u001b(B \u001b$B$Y\u001b(B \u001b$B$Z\u001b(B \u001b$B$[\u001b(B \u001b$B$\\\u001b(B \u001b$B$]\u001b(B \u001b$B$^\u001b(B \u001b$B$_\u001b(B\n\u001b$B$`\u001b(B \u001b$B$a\u001b(B \u001b$B$b\u001b(B \u001b$B$c\u001b(B \u001b$B$d\u001b(B \u001b$B$e\u001b(B \u001b$B$f\u001b(B \u001b$B$g\u001b(B \u001b$B$h\u001b(B \u001b$B$i\u001b(B \u001b$B$j\u001b(B \u001b$B$k\u001b(B \u001b$B$l\u001b(B \u001b$B$m\u001b(B \u001b$B$n\u001b(B \u001b$B$o\u001b(B\n\u001b$B$p\u001b(B \u001b$B$q\u001b(B \u001b$B$r\u001b(B \u001b$B$s\u001b(B\n  \u001b$B%!\u001b(B \u001b$B%\"\u001b(B \u001b$B%#\u001b(B \u001b$B%$\u001b(B \u001b$B%%\u001b(B \u001b$B%&\u001b(B \u001b$B%'\u001b(B \u001b$B%(\u001b(B \u001b$B%)\u001b(B \u001b$B%*\u001b(B \u001b$B%+\u001b(B \u001b$B%,\u001b(B \u001b$B%-\u001b(B \u001b$B%.\u001b(B \u001b$B%/\u001b(B\n\u001b$B%0\u001b(B \u001b$B%1\u001b(B \u001b$B%2\u001b(B \u001b$B%3\u001b(B \u001b$B%4\u001b(B \u001b$B%5\u001b(B \u001b$B%6\u001b(B \u001b$B%7\u001b(B \u001b$B%8\u001b(B \u001b$B%9\u001b(B \u001b$B%:\u001b(B \u001b$B%;\u001b(B \u001b$B%<\u001b(B \u001b$B%=\u001b(B \u001b$B%>\u001b(B \u001b$B%?\u001b(B\n\u001b$B%@\u001b(B \u001b$B%A\u001b(B \u001b$B%B\u001b(B \u001b$B%C\u001b(B \u001b$B%D\u001b(B \u001b$B%E\u001b(B \u001b$B%F\u001b(B \u001b$B%G\u001b(B \u001b$B%H\u001b(B \u001b$B%I\u001b(B \u001b$B%J\u001b(B \u001b$B%K\u001b(B \u001b$B%L\u001b(B \u001b$B%M\u001b(B \u001b$B%N\u001b(B \u001b$B%O\u001b(B\n\u001b$B%P\u001b(B \u001b$B%Q\u001b(B \u001b$B%R\u001b(B \u001b$B%S\u001b(B \u001b$B%T\u001b(B \u001b$B%U\u001b(B \u001b$B%V\u001b(B \u001b$B%W\u001b(B \u001b$B%X\u001b(B \u001b$B%Y\u001b(B \u001b$B%Z\u001b(B \u001b$B%[\u001b(B \u001b$B%\\\u001b(B \u001b$B%]\u001b(B \u001b$B%^\u001b(B \u001b$B%_\u001b(B\n\u001b$B%`\u001b(B \u001b$B%a\u001b(B \u001b$B%b\u001b(B \u001b$B%c\u001b(B \u001b$B%d\u001b(B \u001b$B%e\u001b(B \u001b$B%f\u001b(B \u001b$B%g\u001b(B \u001b$B%h\u001b(B \u001b$B%i\u001b(B \u001b$B%j\u001b(B \u001b$B%k\u001b(B \u001b$B%l\u001b(B \u001b$B%m\u001b(B \u001b$B%n\u001b(B \u001b$B%o\u001b(B\n\u001b$B%p\u001b(B \u001b$B%q\u001b(B \u001b$B%r\u001b(B \u001b$B%s\u001b(B \u001b$B%t\u001b(B \u001b$B%u\u001b(B \u001b$B%v\u001b(B\n  \u001b$B&!\u001b(B \u001b$B&\"\u001b(B \u001b$B&#\u001b(B \u001b$B&$\u001b(B \u001b$B&%\u001b(B \u001b$B&&\u001b(B \u001b$B&'\u001b(B \u001b$B&(\u001b(B \u001b$B&)\u001b(B \u001b$B&*\u001b(B \u001b$B&+\u001b(B \u001b$B&,\u001b(B \u001b$B&-\u001b(B \u001b$B&.\u001b(B \u001b$B&/\u001b(B\n\u001b$B&0\u001b(B \u001b$B&1\u001b(B \u001b$B&2\u001b(B \u001b$B&3\u001b(B \u001b$B&4\u001b(B \u001b$B&5\u001b(B \u001b$B&6\u001b(B \u001b$B&7\u001b(B \u001b$B&8\u001b(B\n  \u001b$B&A\u001b(B \u001b$B&B\u001b(B \u001b$B&C\u001b(B \u001b$B&D\u001b(B \u001b$B&E\u001b(B \u001b$B&F\u001b(B \u001b$B&G\u001b(B \u001b$B&H\u001b(B \u001b$B&I\u001b(B \u001b$B&J\u001b(B \u001b$B&K\u001b(B \u001b$B&L\u001b(B \u001b$B&M\u001b(B \u001b$B&N\u001b(B \u001b$B&O\u001b(B\n\u001b$B&P\u001b(B \u001b$B&Q\u001b(B \u001b$B&R\u001b(B \u001b$B&S\u001b(B \u001b$B&T\u001b(B \u001b$B&U\u001b(B \u001b$B&V\u001b(B \u001b$B&W\u001b(B \u001b$B&X\u001b(B\n  \u001b$B'!\u001b(B \u001b$B'\"\u001b(B \u001b$B'#\u001b(B \u001b$B'$\u001b(B \u001b$B'%\u001b(B \u001b$B'&\u001b(B \u001b$B''\u001b(B \u001b$B'(\u001b(B \u001b$B')\u001b(B \u001b$B'*\u001b(B \u001b$B'+\u001b(B \u001b$B',\u001b(B \u001b$B'-\u001b(B \u001b$B'.\u001b(B \u001b$B'/\u001b(B\n\u001b$B'0\u001b(B \u001b$B'1\u001b(B \u001b$B'2\u001b(B \u001b$B'3\u001b(B \u001b$B'4\u001b(B \u001b$B'5\u001b(B \u001b$B'6\u001b(B \u001b$B'7\u001b(B \u001b$B'8\u001b(B \u001b$B'9\u001b(B \u001b$B':\u001b(B \u001b$B';\u001b(B \u001b$B'<\u001b(B \u001b$B'=\u001b(B \u001b$B'>\u001b(B \u001b$B'?\u001b(B\n\u001b$B'@\u001b(B \u001b$B'A\u001b(B\n  \u001b$B'Q\u001b(B \u001b$B'R\u001b(B \u001b$B'S\u001b(B \u001b$B'T\u001b(B \u001b$B'U\u001b(B \u001b$B'V\u001b(B \u001b$B'W\u001b(B \u001b$B'X\u001b(B \u001b$B'Y\u001b(B \u001b$B'Z\u001b(B \u001b$B'[\u001b(B \u001b$B'\\\u001b(B \u001b$B']\u001b(B \u001b$B'^\u001b(B \u001b$B'_\u001b(B\n\u001b$B'`\u001b(B \u001b$B'a\u001b(B \u001b$B'b\u001b(B \u001b$B'c\u001b(B \u001b$B'd\u001b(B \u001b$B'e\u001b(B \u001b$B'f\u001b(B \u001b$B'g\u001b(B \u001b$B'h\u001b(B \u001b$B'i\u001b(B \u001b$B'j\u001b(B \u001b$B'k\u001b(B \u001b$B'l\u001b(B \u001b$B'm\u001b(B \u001b$B'n\u001b(B \u001b$B'o\u001b(B\n\u001b$B'p\u001b(B \u001b$B'q\u001b(B\n  \u001b$B(!\u001b(B \u001b$B(\"\u001b(B \u001b$B(#\u001b(B \u001b$B($\u001b(B \u001b$B(%\u001b(B \u001b$B(&\u001b(B \u001b$B('\u001b(B \u001b$B((\u001b(B \u001b$B()\u001b(B \u001b$B(*\u001b(B \u001b$B(+\u001b(B \u001b$B(,\u001b(B \u001b$B(-\u001b(B \u001b$B(.\u001b(B \u001b$B(/\u001b(B\n\u001b$B(0\u001b(B \u001b$B(1\u001b(B \u001b$B(2\u001b(B \u001b$B(3\u001b(B \u001b$B(4\u001b(B \u001b$B(5\u001b(B \u001b$B(6\u001b(B \u001b$B(7\u001b(B \u001b$B(8\u001b(B \u001b$B(9\u001b(B \u001b$B(:\u001b(B \u001b$B(;\u001b(B \u001b$B(<\u001b(B \u001b$B(=\u001b(B \u001b$B(>\u001b(B \u001b$B(?\u001b(B\n\u001b$B(@\u001b(B\n  \u001b$B-!\u001b(B \u001b$B-\"\u001b(B \u001b$B-#\u001b(B \u001b$B-$\u001b(B \u001b$B-%\u001b(B \u001b$B-&\u001b(B \u001b$B-'\u001b(B \u001b$B-(\u001b(B \u001b$B-)\u001b(B \u001b$B-*\u001b(B \u001b$B-+\u001b(B \u001b$B-,\u001b(B \u001b$B--\u001b(B \u001b$B-.\u001b(B \u001b$B-/\u001b(B\n\u001b$B-0\u001b(B \u001b$B-1\u001b(B \u001b$B-2\u001b(B \u001b$B-3\u001b(B \u001b$B-4\u001b(B \u001b$B-5\u001b(B \u001b$B-6\u001b(B \u001b$B-7\u001b(B \u001b$B-8\u001b(B \u001b$B-9\u001b(B \u001b$B-:\u001b(B \u001b$B-;\u001b(B \u001b$B-<\u001b(B \u001b$B-=\u001b(B \u001b$B->\u001b(B\n\u001b$B-@\u001b(B \u001b$B-A\u001b(B \u001b$B-B\u001b(B \u001b$B-C\u001b(B \u001b$B-D\u001b(B \u001b$B-E\u001b(B \u001b$B-F\u001b(B \u001b$B-G\u001b(B \u001b$B-H\u001b(B \u001b$B-I\u001b(B \u001b$B-J\u001b(B \u001b$B-K\u001b(B \u001b$B-L\u001b(B \u001b$B-M\u001b(B \u001b$B-N\u001b(B \u001b$B-O\u001b(B\n\u001b$B-P\u001b(B \u001b$B-Q\u001b(B \u001b$B-R\u001b(B \u001b$B-S\u001b(B \u001b$B-T\u001b(B \u001b$B-U\u001b(B \u001b$B-V\u001b(B                 \u001b$B-_\u001b(B\n\u001b$B-`\u001b(B \u001b$B-a\u001b(B \u001b$B-b\u001b(B \u001b$B-c\u001b(B \u001b$B-d\u001b(B \u001b$B-e\u001b(B \u001b$B-f\u001b(B \u001b$B-g\u001b(B \u001b$B-h\u001b(B \u001b$B-i\u001b(B \u001b$B-j\u001b(B \u001b$B-k\u001b(B \u001b$B-l\u001b(B \u001b$B-m\u001b(B \u001b$B-n\u001b(B \u001b$B-o\u001b(B\n      \u001b$B-s\u001b(B \u001b$B-t\u001b(B       \u001b$B-x\u001b(B \u001b$B-y\u001b(B\n  \u001b$B0!\u001b(B \u001b$B0\"\u001b(B \u001b$B0#\u001b(B \u001b$B0$\u001b(B \u001b$B0%\u001b(B \u001b$B0&\u001b(B \u001b$B0'\u001b(B \u001b$B0(\u001b(B \u001b$B0)\u001b(B \u001b$B0*\u001b(B \u001b$B0+\u001b(B \u001b$B0,\u001b(B \u001b$B0-\u001b(B \u001b$B0.\u001b(B \u001b$B0/\u001b(B\n\u001b$B00\u001b(B \u001b$B01\u001b(B \u001b$B02\u001b(B \u001b$B03\u001b(B \u001b$B04\u001b(B \u001b$B05\u001b(B \u001b$B06\u001b(B \u001b$B07\u001b(B \u001b$B08\u001b(B \u001b$B09\u001b(B \u001b$B0:\u001b(B \u001b$B0;\u001b(B \u001b$B0<\u001b(B \u001b$B0=\u001b(B \u001b$B0>\u001b(B \u001b$B0?\u001b(B\n\u001b$B0@\u001b(B \u001b$B0A\u001b(B \u001b$B0B\u001b(B \u001b$B0C\u001b(B \u001b$B0D\u001b(B \u001b$B0E\u001b(B \u001b$B0F\u001b(B \u001b$B0G\u001b(B \u001b$B0H\u001b(B \u001b$B0I\u001b(B \u001b$B0J\u001b(B \u001b$B0K\u001b(B \u001b$B0L\u001b(B \u001b$B0M\u001b(B \u001b$B0N\u001b(B \u001b$B0O\u001b(B\n\u001b$B0P\u001b(B \u001b$B0Q\u001b(B \u001b$B0R\u001b(B \u001b$B0S\u001b(B \u001b$B0T\u001b(B \u001b$B0U\u001b(B \u001b$B0V\u001b(B \u001b$B0W\u001b(B \u001b$B0X\u001b(B \u001b$B0Y\u001b(B \u001b$B0Z\u001b(B \u001b$B0[\u001b(B \u001b$B0\\\u001b(B \u001b$B0]\u001b(B \u001b$B0^\u001b(B \u001b$B0_\u001b(B\n\u001b$B0`\u001b(B \u001b$B0a\u001b(B \u001b$B0b\u001b(B \u001b$B0c\u001b(B \u001b$B0d\u001b(B \u001b$B0e\u001b(B \u001b$B0f\u001b(B \u001b$B0g\u001b(B \u001b$B0h\u001b(B \u001b$B0i\u001b(B \u001b$B0j\u001b(B \u001b$B0k\u001b(B \u001b$B0l\u001b(B \u001b$B0m\u001b(B \u001b$B0n\u001b(B \u001b$B0o\u001b(B\n\u001b$B0p\u001b(B \u001b$B0q\u001b(B \u001b$B0r\u001b(B \u001b$B0s\u001b(B \u001b$B0t\u001b(B \u001b$B0u\u001b(B \u001b$B0v\u001b(B \u001b$B0w\u001b(B \u001b$B0x\u001b(B \u001b$B0y\u001b(B \u001b$B0z\u001b(B \u001b$B0{\u001b(B \u001b$B0|\u001b(B \u001b$B0}\u001b(B \u001b$B0~\u001b(B\n  \u001b$B1!\u001b(B \u001b$B1\"\u001b(B \u001b$B1#\u001b(B \u001b$B1$\u001b(B \u001b$B1%\u001b(B \u001b$B1&\u001b(B \u001b$B1'\u001b(B \u001b$B1(\u001b(B \u001b$B1)\u001b(B \u001b$B1*\u001b(B \u001b$B1+\u001b(B \u001b$B1,\u001b(B \u001b$B1-\u001b(B \u001b$B1.\u001b(B \u001b$B1/\u001b(B\n\u001b$B10\u001b(B \u001b$B11\u001b(B \u001b$B12\u001b(B \u001b$B13\u001b(B \u001b$B14\u001b(B \u001b$B15\u001b(B \u001b$B16\u001b(B \u001b$B17\u001b(B \u001b$B18\u001b(B \u001b$B19\u001b(B \u001b$B1:\u001b(B \u001b$B1;\u001b(B \u001b$B1<\u001b(B \u001b$B1=\u001b(B \u001b$B1>\u001b(B \u001b$B1?\u001b(B\n\u001b$B1@\u001b(B \u001b$B1A\u001b(B \u001b$B1B\u001b(B \u001b$B1C\u001b(B \u001b$B1D\u001b(B \u001b$B1E\u001b(B \u001b$B1F\u001b(B \u001b$B1G\u001b(B \u001b$B1H\u001b(B \u001b$B1I\u001b(B \u001b$B1J\u001b(B \u001b$B1K\u001b(B \u001b$B1L\u001b(B \u001b$B1M\u001b(B \u001b$B1N\u001b(B \u001b$B1O\u001b(B\n\u001b$B1P\u001b(B \u001b$B1Q\u001b(B \u001b$B1R\u001b(B \u001b$B1S\u001b(B \u001b$B1T\u001b(B \u001b$B1U\u001b(B \u001b$B1V\u001b(B \u001b$B1W\u001b(B \u001b$B1X\u001b(B \u001b$B1Y\u001b(B \u001b$B1Z\u001b(B \u001b$B1[\u001b(B \u001b$B1\\\u001b(B \u001b$B1]\u001b(B \u001b$B1^\u001b(B \u001b$B1_\u001b(B\n\u001b$B1`\u001b(B \u001b$B1a\u001b(B \u001b$B1b\u001b(B \u001b$B1c\u001b(B \u001b$B1d\u001b(B \u001b$B1e\u001b(B \u001b$B1f\u001b(B \u001b$B1g\u001b(B \u001b$B1h\u001b(B \u001b$B1i\u001b(B \u001b$B1j\u001b(B \u001b$B1k\u001b(B \u001b$B1l\u001b(B \u001b$B1m\u001b(B \u001b$B1n\u001b(B \u001b$B1o\u001b(B\n\u001b$B1p\u001b(B \u001b$B1q\u001b(B \u001b$B1r\u001b(B \u001b$B1s\u001b(B \u001b$B1t\u001b(B \u001b$B1u\u001b(B \u001b$B1v\u001b(B \u001b$B1w\u001b(B \u001b$B1x\u001b(B \u001b$B1y\u001b(B \u001b$B1z\u001b(B \u001b$B1{\u001b(B \u001b$B1|\u001b(B \u001b$B1}\u001b(B \u001b$B1~\u001b(B\n  \u001b$B2!\u001b(B \u001b$B2\"\u001b(B \u001b$B2#\u001b(B \u001b$B2$\u001b(B \u001b$B2%\u001b(B \u001b$B2&\u001b(B \u001b$B2'\u001b(B \u001b$B2(\u001b(B \u001b$B2)\u001b(B \u001b$B2*\u001b(B \u001b$B2+\u001b(B \u001b$B2,\u001b(B \u001b$B2-\u001b(B \u001b$B2.\u001b(B \u001b$B2/\u001b(B\n\u001b$B20\u001b(B \u001b$B21\u001b(B \u001b$B22\u001b(B \u001b$B23\u001b(B \u001b$B24\u001b(B \u001b$B25\u001b(B \u001b$B26\u001b(B \u001b$B27\u001b(B \u001b$B28\u001b(B \u001b$B29\u001b(B \u001b$B2:\u001b(B \u001b$B2;\u001b(B \u001b$B2<\u001b(B \u001b$B2=\u001b(B \u001b$B2>\u001b(B \u001b$B2?\u001b(B\n\u001b$B2@\u001b(B \u001b$B2A\u001b(B \u001b$B2B\u001b(B \u001b$B2C\u001b(B \u001b$B2D\u001b(B \u001b$B2E\u001b(B \u001b$B2F\u001b(B \u001b$B2G\u001b(B \u001b$B2H\u001b(B \u001b$B2I\u001b(B \u001b$B2J\u001b(B \u001b$B2K\u001b(B \u001b$B2L\u001b(B \u001b$B2M\u001b(B \u001b$B2N\u001b(B \u001b$B2O\u001b(B\n\u001b$B2P\u001b(B \u001b$B2Q\u001b(B \u001b$B2R\u001b(B \u001b$B2S\u001b(B \u001b$B2T\u001b(B \u001b$B2U\u001b(B \u001b$B2V\u001b(B \u001b$B2W\u001b(B \u001b$B2X\u001b(B \u001b$B2Y\u001b(B \u001b$B2Z\u001b(B \u001b$B2[\u001b(B \u001b$B2\\\u001b(B \u001b$B2]\u001b(B \u001b$B2^\u001b(B \u001b$B2_\u001b(B\n\u001b$B2`\u001b(B \u001b$B2a\u001b(B \u001b$B2b\u001b(B \u001b$B2c\u001b(B \u001b$B2d\u001b(B \u001b$B2e\u001b(B \u001b$B2f\u001b(B \u001b$B2g\u001b(B \u001b$B2h\u001b(B \u001b$B2i\u001b(B \u001b$B2j\u001b(B \u001b$B2k\u001b(B \u001b$B2l\u001b(B \u001b$B2m\u001b(B \u001b$B2n\u001b(B \u001b$B2o\u001b(B\n\u001b$B2p\u001b(B \u001b$B2q\u001b(B \u001b$B2r\u001b(B \u001b$B2s\u001b(B \u001b$B2t\u001b(B \u001b$B2u\u001b(B \u001b$B2v\u001b(B \u001b$B2w\u001b(B \u001b$B2x\u001b(B \u001b$B2y\u001b(B \u001b$B2z\u001b(B \u001b$B2{\u001b(B \u001b$B2|\u001b(B \u001b$B2}\u001b(B \u001b$B2~\u001b(B\n  \u001b$B3!\u001b(B \u001b$B3\"\u001b(B \u001b$B3#\u001b(B \u001b$B3$\u001b(B \u001b$B3%\u001b(B \u001b$B3&\u001b(B \u001b$B3'\u001b(B \u001b$B3(\u001b(B \u001b$B3)\u001b(B \u001b$B3*\u001b(B \u001b$B3+\u001b(B \u001b$B3,\u001b(B \u001b$B3-\u001b(B \u001b$B3.\u001b(B \u001b$B3/\u001b(B\n\u001b$B30\u001b(B \u001b$B31\u001b(B \u001b$B32\u001b(B \u001b$B33\u001b(B \u001b$B34\u001b(B \u001b$B35\u001b(B \u001b$B36\u001b(B \u001b$B37\u001b(B \u001b$B38\u001b(B \u001b$B39\u001b(B \u001b$B3:\u001b(B \u001b$B3;\u001b(B \u001b$B3<\u001b(B \u001b$B3=\u001b(B \u001b$B3>\u001b(B \u001b$B3?\u001b(B\n\u001b$B3@\u001b(B \u001b$B3A\u001b(B \u001b$B3B\u001b(B \u001b$B3C\u001b(B \u001b$B3D\u001b(B \u001b$B3E\u001b(B \u001b$B3F\u001b(B \u001b$B3G\u001b(B \u001b$B3H\u001b(B \u001b$B3I\u001b(B \u001b$B3J\u001b(B \u001b$B3K\u001b(B \u001b$B3L\u001b(B \u001b$B3M\u001b(B \u001b$B3N\u001b(B \u001b$B3O\u001b(B\n\u001b$B3P\u001b(B \u001b$B3Q\u001b(B \u001b$B3R\u001b(B \u001b$B3S\u001b(B \u001b$B3T\u001b(B \u001b$B3U\u001b(B \u001b$B3V\u001b(B \u001b$B3W\u001b(B \u001b$B3X\u001b(B \u001b$B3Y\u001b(B \u001b$B3Z\u001b(B \u001b$B3[\u001b(B \u001b$B3\\\u001b(B \u001b$B3]\u001b(B \u001b$B3^\u001b(B \u001b$B3_\u001b(B\n\u001b$B3`\u001b(B \u001b$B3a\u001b(B \u001b$B3b\u001b(B \u001b$B3c\u001b(B \u001b$B3d\u001b(B \u001b$B3e\u001b(B \u001b$B3f\u001b(B \u001b$B3g\u001b(B \u001b$B3h\u001b(B \u001b$B3i\u001b(B \u001b$B3j\u001b(B \u001b$B3k\u001b(B \u001b$B3l\u001b(B \u001b$B3m\u001b(B \u001b$B3n\u001b(B \u001b$B3o\u001b(B\n\u001b$B3p\u001b(B \u001b$B3q\u001b(B \u001b$B3r\u001b(B \u001b$B3s\u001b(B \u001b$B3t\u001b(B \u001b$B3u\u001b(B \u001b$B3v\u001b(B \u001b$B3w\u001b(B \u001b$B3x\u001b(B \u001b$B3y\u001b(B \u001b$B3z\u001b(B \u001b$B3{\u001b(B \u001b$B3|\u001b(B \u001b$B3}\u001b(B \u001b$B3~\u001b(B\n  \u001b$B4!\u001b(B \u001b$B4\"\u001b(B \u001b$B4#\u001b(B \u001b$B4$\u001b(B \u001b$B4%\u001b(B \u001b$B4&\u001b(B \u001b$B4'\u001b(B \u001b$B4(\u001b(B \u001b$B4)\u001b(B \u001b$B4*\u001b(B \u001b$B4+\u001b(B \u001b$B4,\u001b(B \u001b$B4-\u001b(B \u001b$B4.\u001b(B \u001b$B4/\u001b(B\n\u001b$B40\u001b(B \u001b$B41\u001b(B \u001b$B42\u001b(B \u001b$B43\u001b(B \u001b$B44\u001b(B \u001b$B45\u001b(B \u001b$B46\u001b(B \u001b$B47\u001b(B \u001b$B48\u001b(B \u001b$B49\u001b(B \u001b$B4:\u001b(B \u001b$B4;\u001b(B \u001b$B4<\u001b(B \u001b$B4=\u001b(B \u001b$B4>\u001b(B \u001b$B4?\u001b(B\n\u001b$B4@\u001b(B \u001b$B4A\u001b(B \u001b$B4B\u001b(B \u001b$B4C\u001b(B \u001b$B4D\u001b(B \u001b$B4E\u001b(B \u001b$B4F\u001b(B \u001b$B4G\u001b(B \u001b$B4H\u001b(B \u001b$B4I\u001b(B \u001b$B4J\u001b(B \u001b$B4K\u001b(B \u001b$B4L\u001b(B \u001b$B4M\u001b(B \u001b$B4N\u001b(B \u001b$B4O\u001b(B\n\u001b$B4P\u001b(B \u001b$B4Q\u001b(B \u001b$B4R\u001b(B \u001b$B4S\u001b(B \u001b$B4T\u001b(B \u001b$B4U\u001b(B \u001b$B4V\u001b(B \u001b$B4W\u001b(B \u001b$B4X\u001b(B \u001b$B4Y\u001b(B \u001b$B4Z\u001b(B \u001b$B4[\u001b(B \u001b$B4\\\u001b(B \u001b$B4]\u001b(B \u001b$B4^\u001b(B \u001b$B4_\u001b(B\n\u001b$B4`\u001b(B \u001b$B4a\u001b(B \u001b$B4b\u001b(B \u001b$B4c\u001b(B \u001b$B4d\u001b(B \u001b$B4e\u001b(B \u001b$B4f\u001b(B \u001b$B4g\u001b(B \u001b$B4h\u001b(B \u001b$B4i\u001b(B \u001b$B4j\u001b(B \u001b$B4k\u001b(B \u001b$B4l\u001b(B \u001b$B4m\u001b(B \u001b$B4n\u001b(B \u001b$B4o\u001b(B\n\u001b$B4p\u001b(B \u001b$B4q\u001b(B \u001b$B4r\u001b(B \u001b$B4s\u001b(B \u001b$B4t\u001b(B \u001b$B4u\u001b(B \u001b$B4v\u001b(B \u001b$B4w\u001b(B \u001b$B4x\u001b(B \u001b$B4y\u001b(B \u001b$B4z\u001b(B \u001b$B4{\u001b(B \u001b$B4|\u001b(B \u001b$B4}\u001b(B \u001b$B4~\u001b(B\n  \u001b$B5!\u001b(B \u001b$B5\"\u001b(B \u001b$B5#\u001b(B \u001b$B5$\u001b(B \u001b$B5%\u001b(B \u001b$B5&\u001b(B \u001b$B5'\u001b(B \u001b$B5(\u001b(B \u001b$B5)\u001b(B \u001b$B5*\u001b(B \u001b$B5+\u001b(B \u001b$B5,\u001b(B \u001b$B5-\u001b(B \u001b$B5.\u001b(B \u001b$B5/\u001b(B\n\u001b$B50\u001b(B \u001b$B51\u001b(B \u001b$B52\u001b(B \u001b$B53\u001b(B \u001b$B54\u001b(B \u001b$B55\u001b(B \u001b$B56\u001b(B \u001b$B57\u001b(B \u001b$B58\u001b(B \u001b$B59\u001b(B \u001b$B5:\u001b(B \u001b$B5;\u001b(B \u001b$B5<\u001b(B \u001b$B5=\u001b(B \u001b$B5>\u001b(B \u001b$B5?\u001b(B\n\u001b$B5@\u001b(B \u001b$B5A\u001b(B \u001b$B5B\u001b(B \u001b$B5C\u001b(B \u001b$B5D\u001b(B \u001b$B5E\u001b(B \u001b$B5F\u001b(B \u001b$B5G\u001b(B \u001b$B5H\u001b(B \u001b$B5I\u001b(B \u001b$B5J\u001b(B \u001b$B5K\u001b(B \u001b$B5L\u001b(B \u001b$B5M\u001b(B \u001b$B5N\u001b(B \u001b$B5O\u001b(B\n\u001b$B5P\u001b(B \u001b$B5Q\u001b(B \u001b$B5R\u001b(B \u001b$B5S\u001b(B \u001b$B5T\u001b(B \u001b$B5U\u001b(B \u001b$B5V\u001b(B \u001b$B5W\u001b(B \u001b$B5X\u001b(B \u001b$B5Y\u001b(B \u001b$B5Z\u001b(B \u001b$B5[\u001b(B \u001b$B5\\\u001b(B \u001b$B5]\u001b(B \u001b$B5^\u001b(B \u001b$B5_\u001b(B\n\u001b$B5`\u001b(B \u001b$B5a\u001b(B \u001b$B5b\u001b(B \u001b$B5c\u001b(B \u001b$B5d\u001b(B \u001b$B5e\u001b(B \u001b$B5f\u001b(B \u001b$B5g\u001b(B \u001b$B5h\u001b(B \u001b$B5i\u001b(B \u001b$B5j\u001b(B \u001b$B5k\u001b(B \u001b$B5l\u001b(B \u001b$B5m\u001b(B \u001b$B5n\u001b(B \u001b$B5o\u001b(B\n\u001b$B5p\u001b(B \u001b$B5q\u001b(B \u001b$B5r\u001b(B \u001b$B5s\u001b(B \u001b$B5t\u001b(B \u001b$B5u\u001b(B \u001b$B5v\u001b(B \u001b$B5w\u001b(B \u001b$B5x\u001b(B \u001b$B5y\u001b(B \u001b$B5z\u001b(B \u001b$B5{\u001b(B \u001b$B5|\u001b(B \u001b$B5}\u001b(B \u001b$B5~\u001b(B\n  \u001b$B6!\u001b(B \u001b$B6\"\u001b(B \u001b$B6#\u001b(B \u001b$B6$\u001b(B \u001b$B6%\u001b(B \u001b$B6&\u001b(B \u001b$B6'\u001b(B \u001b$B6(\u001b(B \u001b$B6)\u001b(B \u001b$B6*\u001b(B \u001b$B6+\u001b(B \u001b$B6,\u001b(B \u001b$B6-\u001b(B \u001b$B6.\u001b(B \u001b$B6/\u001b(B\n\u001b$B60\u001b(B \u001b$B61\u001b(B \u001b$B62\u001b(B \u001b$B63\u001b(B \u001b$B64\u001b(B \u001b$B65\u001b(B \u001b$B66\u001b(B \u001b$B67\u001b(B \u001b$B68\u001b(B \u001b$B69\u001b(B \u001b$B6:\u001b(B \u001b$B6;\u001b(B \u001b$B6<\u001b(B \u001b$B6=\u001b(B \u001b$B6>\u001b(B \u001b$B6?\u001b(B\n\u001b$B6@\u001b(B \u001b$B6A\u001b(B \u001b$B6B\u001b(B \u001b$B6C\u001b(B \u001b$B6D\u001b(B \u001b$B6E\u001b(B \u001b$B6F\u001b(B \u001b$B6G\u001b(B \u001b$B6H\u001b(B \u001b$B6I\u001b(B \u001b$B6J\u001b(B \u001b$B6K\u001b(B \u001b$B6L\u001b(B \u001b$B6M\u001b(B \u001b$B6N\u001b(B \u001b$B6O\u001b(B\n\u001b$B6P\u001b(B \u001b$B6Q\u001b(B \u001b$B6R\u001b(B \u001b$B6S\u001b(B \u001b$B6T\u001b(B \u001b$B6U\u001b(B \u001b$B6V\u001b(B \u001b$B6W\u001b(B \u001b$B6X\u001b(B \u001b$B6Y\u001b(B \u001b$B6Z\u001b(B \u001b$B6[\u001b(B \u001b$B6\\\u001b(B \u001b$B6]\u001b(B \u001b$B6^\u001b(B \u001b$B6_\u001b(B\n\u001b$B6`\u001b(B \u001b$B6a\u001b(B \u001b$B6b\u001b(B \u001b$B6c\u001b(B \u001b$B6d\u001b(B \u001b$B6e\u001b(B \u001b$B6f\u001b(B \u001b$B6g\u001b(B \u001b$B6h\u001b(B \u001b$B6i\u001b(B \u001b$B6j\u001b(B \u001b$B6k\u001b(B \u001b$B6l\u001b(B \u001b$B6m\u001b(B \u001b$B6n\u001b(B \u001b$B6o\u001b(B\n\u001b$B6p\u001b(B \u001b$B6q\u001b(B \u001b$B6r\u001b(B \u001b$B6s\u001b(B \u001b$B6t\u001b(B \u001b$B6u\u001b(B \u001b$B6v\u001b(B \u001b$B6w\u001b(B \u001b$B6x\u001b(B \u001b$B6y\u001b(B \u001b$B6z\u001b(B \u001b$B6{\u001b(B \u001b$B6|\u001b(B \u001b$B6}\u001b(B \u001b$B6~\u001b(B\n  \u001b$B7!\u001b(B \u001b$B7\"\u001b(B \u001b$B7#\u001b(B \u001b$B7$\u001b(B \u001b$B7%\u001b(B \u001b$B7&\u001b(B \u001b$B7'\u001b(B \u001b$B7(\u001b(B \u001b$B7)\u001b(B \u001b$B7*\u001b(B \u001b$B7+\u001b(B \u001b$B7,\u001b(B \u001b$B7-\u001b(B \u001b$B7.\u001b(B \u001b$B7/\u001b(B\n\u001b$B70\u001b(B \u001b$B71\u001b(B \u001b$B72\u001b(B \u001b$B73\u001b(B \u001b$B74\u001b(B \u001b$B75\u001b(B \u001b$B76\u001b(B \u001b$B77\u001b(B \u001b$B78\u001b(B \u001b$B79\u001b(B \u001b$B7:\u001b(B \u001b$B7;\u001b(B \u001b$B7<\u001b(B \u001b$B7=\u001b(B \u001b$B7>\u001b(B \u001b$B7?\u001b(B\n\u001b$B7@\u001b(B \u001b$B7A\u001b(B \u001b$B7B\u001b(B \u001b$B7C\u001b(B \u001b$B7D\u001b(B \u001b$B7E\u001b(B \u001b$B7F\u001b(B \u001b$B7G\u001b(B \u001b$B7H\u001b(B \u001b$B7I\u001b(B \u001b$B7J\u001b(B \u001b$B7K\u001b(B \u001b$B7L\u001b(B \u001b$B7M\u001b(B \u001b$B7N\u001b(B \u001b$B7O\u001b(B\n\u001b$B7P\u001b(B \u001b$B7Q\u001b(B \u001b$B7R\u001b(B \u001b$B7S\u001b(B \u001b$B7T\u001b(B \u001b$B7U\u001b(B \u001b$B7V\u001b(B \u001b$B7W\u001b(B \u001b$B7X\u001b(B \u001b$B7Y\u001b(B \u001b$B7Z\u001b(B \u001b$B7[\u001b(B \u001b$B7\\\u001b(B \u001b$B7]\u001b(B \u001b$B7^\u001b(B \u001b$B7_\u001b(B\n\u001b$B7`\u001b(B \u001b$B7a\u001b(B \u001b$B7b\u001b(B \u001b$B7c\u001b(B \u001b$B7d\u001b(B \u001b$B7e\u001b(B \u001b$B7f\u001b(B \u001b$B7g\u001b(B \u001b$B7h\u001b(B \u001b$B7i\u001b(B \u001b$B7j\u001b(B \u001b$B7k\u001b(B \u001b$B7l\u001b(B \u001b$B7m\u001b(B \u001b$B7n\u001b(B \u001b$B7o\u001b(B\n\u001b$B7p\u001b(B \u001b$B7q\u001b(B \u001b$B7r\u001b(B \u001b$B7s\u001b(B \u001b$B7t\u001b(B \u001b$B7u\u001b(B \u001b$B7v\u001b(B \u001b$B7w\u001b(B \u001b$B7x\u001b(B \u001b$B7y\u001b(B \u001b$B7z\u001b(B \u001b$B7{\u001b(B \u001b$B7|\u001b(B \u001b$B7}\u001b(B \u001b$B7~\u001b(B\n  \u001b$B8!\u001b(B \u001b$B8\"\u001b(B \u001b$B8#\u001b(B \u001b$B8$\u001b(B \u001b$B8%\u001b(B \u001b$B8&\u001b(B \u001b$B8'\u001b(B \u001b$B8(\u001b(B \u001b$B8)\u001b(B \u001b$B8*\u001b(B \u001b$B8+\u001b(B \u001b$B8,\u001b(B \u001b$B8-\u001b(B \u001b$B8.\u001b(B \u001b$B8/\u001b(B\n\u001b$B80\u001b(B \u001b$B81\u001b(B \u001b$B82\u001b(B \u001b$B83\u001b(B \u001b$B84\u001b(B \u001b$B85\u001b(B \u001b$B86\u001b(B \u001b$B87\u001b(B \u001b$B88\u001b(B \u001b$B89\u001b(B \u001b$B8:\u001b(B \u001b$B8;\u001b(B \u001b$B8<\u001b(B \u001b$B8=\u001b(B \u001b$B8>\u001b(B \u001b$B8?\u001b(B\n\u001b$B8@\u001b(B \u001b$B8A\u001b(B \u001b$B8B\u001b(B \u001b$B8C\u001b(B \u001b$B8D\u001b(B \u001b$B8E\u001b(B \u001b$B8F\u001b(B \u001b$B8G\u001b(B \u001b$B8H\u001b(B \u001b$B8I\u001b(B \u001b$B8J\u001b(B \u001b$B8K\u001b(B \u001b$B8L\u001b(B \u001b$B8M\u001b(B \u001b$B8N\u001b(B \u001b$B8O\u001b(B\n\u001b$B8P\u001b(B \u001b$B8Q\u001b(B \u001b$B8R\u001b(B \u001b$B8S\u001b(B \u001b$B8T\u001b(B \u001b$B8U\u001b(B \u001b$B8V\u001b(B \u001b$B8W\u001b(B \u001b$B8X\u001b(B \u001b$B8Y\u001b(B \u001b$B8Z\u001b(B \u001b$B8[\u001b(B \u001b$B8\\\u001b(B \u001b$B8]\u001b(B \u001b$B8^\u001b(B \u001b$B8_\u001b(B\n\u001b$B8`\u001b(B \u001b$B8a\u001b(B \u001b$B8b\u001b(B \u001b$B8c\u001b(B \u001b$B8d\u001b(B \u001b$B8e\u001b(B \u001b$B8f\u001b(B \u001b$B8g\u001b(B \u001b$B8h\u001b(B \u001b$B8i\u001b(B \u001b$B8j\u001b(B \u001b$B8k\u001b(B \u001b$B8l\u001b(B \u001b$B8m\u001b(B \u001b$B8n\u001b(B \u001b$B8o\u001b(B\n\u001b$B8p\u001b(B \u001b$B8q\u001b(B \u001b$B8r\u001b(B \u001b$B8s\u001b(B \u001b$B8t\u001b(B \u001b$B8u\u001b(B \u001b$B8v\u001b(B \u001b$B8w\u001b(B \u001b$B8x\u001b(B \u001b$B8y\u001b(B \u001b$B8z\u001b(B \u001b$B8{\u001b(B \u001b$B8|\u001b(B \u001b$B8}\u001b(B \u001b$B8~\u001b(B\n  \u001b$B9!\u001b(B \u001b$B9\"\u001b(B \u001b$B9#\u001b(B \u001b$B9$\u001b(B \u001b$B9%\u001b(B \u001b$B9&\u001b(B \u001b$B9'\u001b(B \u001b$B9(\u001b(B \u001b$B9)\u001b(B \u001b$B9*\u001b(B \u001b$B9+\u001b(B \u001b$B9,\u001b(B \u001b$B9-\u001b(B \u001b$B9.\u001b(B \u001b$B9/\u001b(B\n\u001b$B90\u001b(B \u001b$B91\u001b(B \u001b$B92\u001b(B \u001b$B93\u001b(B \u001b$B94\u001b(B \u001b$B95\u001b(B \u001b$B96\u001b(B \u001b$B97\u001b(B \u001b$B98\u001b(B \u001b$B99\u001b(B \u001b$B9:\u001b(B \u001b$B9;\u001b(B \u001b$B9<\u001b(B \u001b$B9=\u001b(B \u001b$B9>\u001b(B \u001b$B9?\u001b(B\n\u001b$B9@\u001b(B \u001b$B9A\u001b(B \u001b$B9B\u001b(B \u001b$B9C\u001b(B \u001b$B9D\u001b(B \u001b$B9E\u001b(B \u001b$B9F\u001b(B \u001b$B9G\u001b(B \u001b$B9H\u001b(B \u001b$B9I\u001b(B \u001b$B9J\u001b(B \u001b$B9K\u001b(B \u001b$B9L\u001b(B \u001b$B9M\u001b(B \u001b$B9N\u001b(B \u001b$B9O\u001b(B\n\u001b$B9P\u001b(B \u001b$B9Q\u001b(B \u001b$B9R\u001b(B \u001b$B9S\u001b(B \u001b$B9T\u001b(B \u001b$B9U\u001b(B \u001b$B9V\u001b(B \u001b$B9W\u001b(B \u001b$B9X\u001b(B \u001b$B9Y\u001b(B \u001b$B9Z\u001b(B \u001b$B9[\u001b(B \u001b$B9\\\u001b(B \u001b$B9]\u001b(B \u001b$B9^\u001b(B \u001b$B9_\u001b(B\n\u001b$B9`\u001b(B \u001b$B9a\u001b(B \u001b$B9b\u001b(B \u001b$B9c\u001b(B \u001b$B9d\u001b(B \u001b$B9e\u001b(B \u001b$B9f\u001b(B \u001b$B9g\u001b(B \u001b$B9h\u001b(B \u001b$B9i\u001b(B \u001b$B9j\u001b(B \u001b$B9k\u001b(B \u001b$B9l\u001b(B \u001b$B9m\u001b(B \u001b$B9n\u001b(B \u001b$B9o\u001b(B\n\u001b$B9p\u001b(B \u001b$B9q\u001b(B \u001b$B9r\u001b(B \u001b$B9s\u001b(B \u001b$B9t\u001b(B \u001b$B9u\u001b(B \u001b$B9v\u001b(B \u001b$B9w\u001b(B \u001b$B9x\u001b(B \u001b$B9y\u001b(B \u001b$B9z\u001b(B \u001b$B9{\u001b(B \u001b$B9|\u001b(B \u001b$B9}\u001b(B \u001b$B9~\u001b(B\n  \u001b$B:!\u001b(B \u001b$B:\"\u001b(B \u001b$B:#\u001b(B \u001b$B:$\u001b(B \u001b$B:%\u001b(B \u001b$B:&\u001b(B \u001b$B:'\u001b(B \u001b$B:(\u001b(B \u001b$B:)\u001b(B \u001b$B:*\u001b(B \u001b$B:+\u001b(B \u001b$B:,\u001b(B \u001b$B:-\u001b(B \u001b$B:.\u001b(B \u001b$B:/\u001b(B\n\u001b$B:0\u001b(B \u001b$B:1\u001b(B \u001b$B:2\u001b(B \u001b$B:3\u001b(B \u001b$B:4\u001b(B \u001b$B:5\u001b(B \u001b$B:6\u001b(B \u001b$B:7\u001b(B \u001b$B:8\u001b(B \u001b$B:9\u001b(B \u001b$B::\u001b(B \u001b$B:;\u001b(B \u001b$B:<\u001b(B \u001b$B:=\u001b(B \u001b$B:>\u001b(B \u001b$B:?\u001b(B\n\u001b$B:@\u001b(B \u001b$B:A\u001b(B \u001b$B:B\u001b(B \u001b$B:C\u001b(B \u001b$B:D\u001b(B \u001b$B:E\u001b(B \u001b$B:F\u001b(B \u001b$B:G\u001b(B \u001b$B:H\u001b(B \u001b$B:I\u001b(B \u001b$B:J\u001b(B \u001b$B:K\u001b(B \u001b$B:L\u001b(B \u001b$B:M\u001b(B \u001b$B:N\u001b(B \u001b$B:O\u001b(B\n\u001b$B:P\u001b(B \u001b$B:Q\u001b(B \u001b$B:R\u001b(B \u001b$B:S\u001b(B \u001b$B:T\u001b(B \u001b$B:U\u001b(B \u001b$B:V\u001b(B \u001b$B:W\u001b(B \u001b$B:X\u001b(B \u001b$B:Y\u001b(B \u001b$B:Z\u001b(B \u001b$B:[\u001b(B \u001b$B:\\\u001b(B \u001b$B:]\u001b(B \u001b$B:^\u001b(B \u001b$B:_\u001b(B\n\u001b$B:`\u001b(B \u001b$B:a\u001b(B \u001b$B:b\u001b(B \u001b$B:c\u001b(B \u001b$B:d\u001b(B \u001b$B:e\u001b(B \u001b$B:f\u001b(B \u001b$B:g\u001b(B \u001b$B:h\u001b(B \u001b$B:i\u001b(B \u001b$B:j\u001b(B \u001b$B:k\u001b(B \u001b$B:l\u001b(B \u001b$B:m\u001b(B \u001b$B:n\u001b(B \u001b$B:o\u001b(B\n\u001b$B:p\u001b(B \u001b$B:q\u001b(B \u001b$B:r\u001b(B \u001b$B:s\u001b(B \u001b$B:t\u001b(B \u001b$B:u\u001b(B \u001b$B:v\u001b(B \u001b$B:w\u001b(B \u001b$B:x\u001b(B \u001b$B:y\u001b(B \u001b$B:z\u001b(B \u001b$B:{\u001b(B \u001b$B:|\u001b(B \u001b$B:}\u001b(B \u001b$B:~\u001b(B\n  \u001b$B;!\u001b(B \u001b$B;\"\u001b(B \u001b$B;#\u001b(B \u001b$B;$\u001b(B \u001b$B;%\u001b(B \u001b$B;&\u001b(B \u001b$B;'\u001b(B \u001b$B;(\u001b(B \u001b$B;)\u001b(B \u001b$B;*\u001b(B \u001b$B;+\u001b(B \u001b$B;,\u001b(B \u001b$B;-\u001b(B \u001b$B;.\u001b(B \u001b$B;/\u001b(B\n\u001b$B;0\u001b(B \u001b$B;1\u001b(B \u001b$B;2\u001b(B \u001b$B;3\u001b(B \u001b$B;4\u001b(B \u001b$B;5\u001b(B \u001b$B;6\u001b(B \u001b$B;7\u001b(B \u001b$B;8\u001b(B \u001b$B;9\u001b(B \u001b$B;:\u001b(B \u001b$B;;\u001b(B \u001b$B;<\u001b(B \u001b$B;=\u001b(B \u001b$B;>\u001b(B \u001b$B;?\u001b(B\n\u001b$B;@\u001b(B \u001b$B;A\u001b(B \u001b$B;B\u001b(B \u001b$B;C\u001b(B \u001b$B;D\u001b(B \u001b$B;E\u001b(B \u001b$B;F\u001b(B \u001b$B;G\u001b(B \u001b$B;H\u001b(B \u001b$B;I\u001b(B \u001b$B;J\u001b(B \u001b$B;K\u001b(B \u001b$B;L\u001b(B \u001b$B;M\u001b(B \u001b$B;N\u001b(B \u001b$B;O\u001b(B\n\u001b$B;P\u001b(B \u001b$B;Q\u001b(B \u001b$B;R\u001b(B \u001b$B;S\u001b(B \u001b$B;T\u001b(B \u001b$B;U\u001b(B \u001b$B;V\u001b(B \u001b$B;W\u001b(B \u001b$B;X\u001b(B \u001b$B;Y\u001b(B \u001b$B;Z\u001b(B \u001b$B;[\u001b(B \u001b$B;\\\u001b(B \u001b$B;]\u001b(B \u001b$B;^\u001b(B \u001b$B;_\u001b(B\n\u001b$B;`\u001b(B \u001b$B;a\u001b(B \u001b$B;b\u001b(B \u001b$B;c\u001b(B \u001b$B;d\u001b(B \u001b$B;e\u001b(B \u001b$B;f\u001b(B \u001b$B;g\u001b(B \u001b$B;h\u001b(B \u001b$B;i\u001b(B \u001b$B;j\u001b(B \u001b$B;k\u001b(B \u001b$B;l\u001b(B \u001b$B;m\u001b(B \u001b$B;n\u001b(B \u001b$B;o\u001b(B\n\u001b$B;p\u001b(B \u001b$B;q\u001b(B \u001b$B;r\u001b(B \u001b$B;s\u001b(B \u001b$B;t\u001b(B \u001b$B;u\u001b(B \u001b$B;v\u001b(B \u001b$B;w\u001b(B \u001b$B;x\u001b(B \u001b$B;y\u001b(B \u001b$B;z\u001b(B \u001b$B;{\u001b(B \u001b$B;|\u001b(B \u001b$B;}\u001b(B \u001b$B;~\u001b(B\n  \u001b$B<!\u001b(B \u001b$B<\"\u001b(B \u001b$B<#\u001b(B \u001b$B<$\u001b(B \u001b$B<%\u001b(B \u001b$B<&\u001b(B \u001b$B<'\u001b(B \u001b$B<(\u001b(B \u001b$B<)\u001b(B \u001b$B<*\u001b(B \u001b$B<+\u001b(B \u001b$B<,\u001b(B \u001b$B<-\u001b(B \u001b$B<.\u001b(B \u001b$B</\u001b(B\n\u001b$B<0\u001b(B \u001b$B<1\u001b(B \u001b$B<2\u001b(B \u001b$B<3\u001b(B \u001b$B<4\u001b(B \u001b$B<5\u001b(B \u001b$B<6\u001b(B \u001b$B<7\u001b(B \u001b$B<8\u001b(B \u001b$B<9\u001b(B \u001b$B<:\u001b(B \u001b$B<;\u001b(B \u001b$B<<\u001b(B \u001b$B<=\u001b(B \u001b$B<>\u001b(B \u001b$B<?\u001b(B\n\u001b$B<@\u001b(B \u001b$B<A\u001b(B \u001b$B<B\u001b(B \u001b$B<C\u001b(B \u001b$B<D\u001b(B \u001b$B<E\u001b(B \u001b$B<F\u001b(B \u001b$B<G\u001b(B \u001b$B<H\u001b(B \u001b$B<I\u001b(B \u001b$B<J\u001b(B \u001b$B<K\u001b(B \u001b$B<L\u001b(B \u001b$B<M\u001b(B \u001b$B<N\u001b(B \u001b$B<O\u001b(B\n\u001b$B<P\u001b(B \u001b$B<Q\u001b(B \u001b$B<R\u001b(B \u001b$B<S\u001b(B \u001b$B<T\u001b(B \u001b$B<U\u001b(B \u001b$B<V\u001b(B \u001b$B<W\u001b(B \u001b$B<X\u001b(B \u001b$B<Y\u001b(B \u001b$B<Z\u001b(B \u001b$B<[\u001b(B \u001b$B<\\\u001b(B \u001b$B<]\u001b(B \u001b$B<^\u001b(B \u001b$B<_\u001b(B\n\u001b$B<`\u001b(B \u001b$B<a\u001b(B \u001b$B<b\u001b(B \u001b$B<c\u001b(B \u001b$B<d\u001b(B \u001b$B<e\u001b(B \u001b$B<f\u001b(B \u001b$B<g\u001b(B \u001b$B<h\u001b(B \u001b$B<i\u001b(B \u001b$B<j\u001b(B \u001b$B<k\u001b(B \u001b$B<l\u001b(B \u001b$B<m\u001b(B \u001b$B<n\u001b(B \u001b$B<o\u001b(B\n\u001b$B<p\u001b(B \u001b$B<q\u001b(B \u001b$B<r\u001b(B \u001b$B<s\u001b(B \u001b$B<t\u001b(B \u001b$B<u\u001b(B \u001b$B<v\u001b(B \u001b$B<w\u001b(B \u001b$B<x\u001b(B \u001b$B<y\u001b(B \u001b$B<z\u001b(B \u001b$B<{\u001b(B \u001b$B<|\u001b(B \u001b$B<}\u001b(B \u001b$B<~\u001b(B\n  \u001b$B=!\u001b(B \u001b$B=\"\u001b(B \u001b$B=#\u001b(B \u001b$B=$\u001b(B \u001b$B=%\u001b(B \u001b$B=&\u001b(B \u001b$B='\u001b(B \u001b$B=(\u001b(B \u001b$B=)\u001b(B \u001b$B=*\u001b(B \u001b$B=+\u001b(B \u001b$B=,\u001b(B \u001b$B=-\u001b(B \u001b$B=.\u001b(B \u001b$B=/\u001b(B\n\u001b$B=0\u001b(B \u001b$B=1\u001b(B \u001b$B=2\u001b(B \u001b$B=3\u001b(B \u001b$B=4\u001b(B \u001b$B=5\u001b(B \u001b$B=6\u001b(B \u001b$B=7\u001b(B \u001b$B=8\u001b(B \u001b$B=9\u001b(B \u001b$B=:\u001b(B \u001b$B=;\u001b(B \u001b$B=<\u001b(B \u001b$B==\u001b(B \u001b$B=>\u001b(B \u001b$B=?\u001b(B\n\u001b$B=@\u001b(B \u001b$B=A\u001b(B \u001b$B=B\u001b(B \u001b$B=C\u001b(B \u001b$B=D\u001b(B \u001b$B=E\u001b(B \u001b$B=F\u001b(B \u001b$B=G\u001b(B \u001b$B=H\u001b(B \u001b$B=I\u001b(B \u001b$B=J\u001b(B \u001b$B=K\u001b(B \u001b$B=L\u001b(B \u001b$B=M\u001b(B \u001b$B=N\u001b(B \u001b$B=O\u001b(B\n\u001b$B=P\u001b(B \u001b$B=Q\u001b(B \u001b$B=R\u001b(B \u001b$B=S\u001b(B \u001b$B=T\u001b(B \u001b$B=U\u001b(B \u001b$B=V\u001b(B \u001b$B=W\u001b(B \u001b$B=X\u001b(B \u001b$B=Y\u001b(B \u001b$B=Z\u001b(B \u001b$B=[\u001b(B \u001b$B=\\\u001b(B \u001b$B=]\u001b(B \u001b$B=^\u001b(B \u001b$B=_\u001b(B\n\u001b$B=`\u001b(B \u001b$B=a\u001b(B \u001b$B=b\u001b(B \u001b$B=c\u001b(B \u001b$B=d\u001b(B \u001b$B=e\u001b(B \u001b$B=f\u001b(B \u001b$B=g\u001b(B \u001b$B=h\u001b(B \u001b$B=i\u001b(B \u001b$B=j\u001b(B \u001b$B=k\u001b(B \u001b$B=l\u001b(B \u001b$B=m\u001b(B \u001b$B=n\u001b(B \u001b$B=o\u001b(B\n\u001b$B=p\u001b(B \u001b$B=q\u001b(B \u001b$B=r\u001b(B \u001b$B=s\u001b(B \u001b$B=t\u001b(B \u001b$B=u\u001b(B \u001b$B=v\u001b(B \u001b$B=w\u001b(B \u001b$B=x\u001b(B \u001b$B=y\u001b(B \u001b$B=z\u001b(B \u001b$B={\u001b(B \u001b$B=|\u001b(B \u001b$B=}\u001b(B \u001b$B=~\u001b(B\n  \u001b$B>!\u001b(B \u001b$B>\"\u001b(B \u001b$B>#\u001b(B \u001b$B>$\u001b(B \u001b$B>%\u001b(B \u001b$B>&\u001b(B \u001b$B>'\u001b(B \u001b$B>(\u001b(B \u001b$B>)\u001b(B \u001b$B>*\u001b(B \u001b$B>+\u001b(B \u001b$B>,\u001b(B \u001b$B>-\u001b(B \u001b$B>.\u001b(B \u001b$B>/\u001b(B\n\u001b$B>0\u001b(B \u001b$B>1\u001b(B \u001b$B>2\u001b(B \u001b$B>3\u001b(B \u001b$B>4\u001b(B \u001b$B>5\u001b(B \u001b$B>6\u001b(B \u001b$B>7\u001b(B \u001b$B>8\u001b(B \u001b$B>9\u001b(B \u001b$B>:\u001b(B \u001b$B>;\u001b(B \u001b$B><\u001b(B \u001b$B>=\u001b(B \u001b$B>>\u001b(B \u001b$B>?\u001b(B\n\u001b$B>@\u001b(B \u001b$B>A\u001b(B \u001b$B>B\u001b(B \u001b$B>C\u001b(B \u001b$B>D\u001b(B \u001b$B>E\u001b(B \u001b$B>F\u001b(B \u001b$B>G\u001b(B \u001b$B>H\u001b(B \u001b$B>I\u001b(B \u001b$B>J\u001b(B \u001b$B>K\u001b(B \u001b$B>L\u001b(B \u001b$B>M\u001b(B \u001b$B>N\u001b(B \u001b$B>O\u001b(B\n\u001b$B>P\u001b(B \u001b$B>Q\u001b(B \u001b$B>R\u001b(B \u001b$B>S\u001b(B \u001b$B>T\u001b(B \u001b$B>U\u001b(B \u001b$B>V\u001b(B \u001b$B>W\u001b(B \u001b$B>X\u001b(B \u001b$B>Y\u001b(B \u001b$B>Z\u001b(B \u001b$B>[\u001b(B \u001b$B>\\\u001b(B \u001b$B>]\u001b(B \u001b$B>^\u001b(B \u001b$B>_\u001b(B\n\u001b$B>`\u001b(B \u001b$B>a\u001b(B \u001b$B>b\u001b(B \u001b$B>c\u001b(B \u001b$B>d\u001b(B \u001b$B>e\u001b(B \u001b$B>f\u001b(B \u001b$B>g\u001b(B \u001b$B>h\u001b(B \u001b$B>i\u001b(B \u001b$B>j\u001b(B \u001b$B>k\u001b(B \u001b$B>l\u001b(B \u001b$B>m\u001b(B \u001b$B>n\u001b(B \u001b$B>o\u001b(B\n\u001b$B>p\u001b(B \u001b$B>q\u001b(B \u001b$B>r\u001b(B \u001b$B>s\u001b(B \u001b$B>t\u001b(B \u001b$B>u\u001b(B \u001b$B>v\u001b(B \u001b$B>w\u001b(B \u001b$B>x\u001b(B \u001b$B>y\u001b(B \u001b$B>z\u001b(B \u001b$B>{\u001b(B \u001b$B>|\u001b(B \u001b$B>}\u001b(B \u001b$B>~\u001b(B\n  \u001b$B?!\u001b(B \u001b$B?\"\u001b(B \u001b$B?#\u001b(B \u001b$B?$\u001b(B \u001b$B?%\u001b(B \u001b$B?&\u001b(B \u001b$B?'\u001b(B \u001b$B?(\u001b(B \u001b$B?)\u001b(B \u001b$B?*\u001b(B \u001b$B?+\u001b(B \u001b$B?,\u001b(B \u001b$B?-\u001b(B \u001b$B?.\u001b(B \u001b$B?/\u001b(B\n\u001b$B?0\u001b(B \u001b$B?1\u001b(B \u001b$B?2\u001b(B \u001b$B?3\u001b(B \u001b$B?4\u001b(B \u001b$B?5\u001b(B \u001b$B?6\u001b(B \u001b$B?7\u001b(B \u001b$B?8\u001b(B \u001b$B?9\u001b(B \u001b$B?:\u001b(B \u001b$B?;\u001b(B \u001b$B?<\u001b(B \u001b$B?=\u001b(B \u001b$B?>\u001b(B \u001b$B??\u001b(B\n\u001b$B?@\u001b(B \u001b$B?A\u001b(B \u001b$B?B\u001b(B \u001b$B?C\u001b(B \u001b$B?D\u001b(B \u001b$B?E\u001b(B \u001b$B?F\u001b(B \u001b$B?G\u001b(B \u001b$B?H\u001b(B \u001b$B?I\u001b(B \u001b$B?J\u001b(B \u001b$B?K\u001b(B \u001b$B?L\u001b(B \u001b$B?M\u001b(B \u001b$B?N\u001b(B \u001b$B?O\u001b(B\n\u001b$B?P\u001b(B \u001b$B?Q\u001b(B \u001b$B?R\u001b(B \u001b$B?S\u001b(B \u001b$B?T\u001b(B \u001b$B?U\u001b(B \u001b$B?V\u001b(B \u001b$B?W\u001b(B \u001b$B?X\u001b(B \u001b$B?Y\u001b(B \u001b$B?Z\u001b(B \u001b$B?[\u001b(B \u001b$B?\\\u001b(B \u001b$B?]\u001b(B \u001b$B?^\u001b(B \u001b$B?_\u001b(B\n\u001b$B?`\u001b(B \u001b$B?a\u001b(B \u001b$B?b\u001b(B \u001b$B?c\u001b(B \u001b$B?d\u001b(B \u001b$B?e\u001b(B \u001b$B?f\u001b(B \u001b$B?g\u001b(B \u001b$B?h\u001b(B \u001b$B?i\u001b(B \u001b$B?j\u001b(B \u001b$B?k\u001b(B \u001b$B?l\u001b(B \u001b$B?m\u001b(B \u001b$B?n\u001b(B \u001b$B?o\u001b(B\n\u001b$B?p\u001b(B \u001b$B?q\u001b(B \u001b$B?r\u001b(B \u001b$B?s\u001b(B \u001b$B?t\u001b(B \u001b$B?u\u001b(B \u001b$B?v\u001b(B \u001b$B?w\u001b(B \u001b$B?x\u001b(B \u001b$B?y\u001b(B \u001b$B?z\u001b(B \u001b$B?{\u001b(B \u001b$B?|\u001b(B \u001b$B?}\u001b(B \u001b$B?~\u001b(B\n  \u001b$B@!\u001b(B \u001b$B@\"\u001b(B \u001b$B@#\u001b(B \u001b$B@$\u001b(B \u001b$B@%\u001b(B \u001b$B@&\u001b(B \u001b$B@'\u001b(B \u001b$B@(\u001b(B \u001b$B@)\u001b(B \u001b$B@*\u001b(B \u001b$B@+\u001b(B \u001b$B@,\u001b(B \u001b$B@-\u001b(B \u001b$B@.\u001b(B \u001b$B@/\u001b(B\n\u001b$B@0\u001b(B \u001b$B@1\u001b(B \u001b$B@2\u001b(B \u001b$B@3\u001b(B \u001b$B@4\u001b(B \u001b$B@5\u001b(B \u001b$B@6\u001b(B \u001b$B@7\u001b(B \u001b$B@8\u001b(B \u001b$B@9\u001b(B \u001b$B@:\u001b(B \u001b$B@;\u001b(B \u001b$B@<\u001b(B \u001b$B@=\u001b(B \u001b$B@>\u001b(B \u001b$B@?\u001b(B\n\u001b$B@@\u001b(B \u001b$B@A\u001b(B \u001b$B@B\u001b(B \u001b$B@C\u001b(B \u001b$B@D\u001b(B \u001b$B@E\u001b(B \u001b$B@F\u001b(B \u001b$B@G\u001b(B \u001b$B@H\u001b(B \u001b$B@I\u001b(B \u001b$B@J\u001b(B \u001b$B@K\u001b(B \u001b$B@L\u001b(B \u001b$B@M\u001b(B \u001b$B@N\u001b(B \u001b$B@O\u001b(B\n\u001b$B@P\u001b(B \u001b$B@Q\u001b(B \u001b$B@R\u001b(B \u001b$B@S\u001b(B \u001b$B@T\u001b(B \u001b$B@U\u001b(B \u001b$B@V\u001b(B \u001b$B@W\u001b(B \u001b$B@X\u001b(B \u001b$B@Y\u001b(B \u001b$B@Z\u001b(B \u001b$B@[\u001b(B \u001b$B@\\\u001b(B \u001b$B@]\u001b(B \u001b$B@^\u001b(B \u001b$B@_\u001b(B\n\u001b$B@`\u001b(B \u001b$B@a\u001b(B \u001b$B@b\u001b(B \u001b$B@c\u001b(B \u001b$B@d\u001b(B \u001b$B@e\u001b(B \u001b$B@f\u001b(B \u001b$B@g\u001b(B \u001b$B@h\u001b(B \u001b$B@i\u001b(B \u001b$B@j\u001b(B \u001b$B@k\u001b(B \u001b$B@l\u001b(B \u001b$B@m\u001b(B \u001b$B@n\u001b(B \u001b$B@o\u001b(B\n\u001b$B@p\u001b(B \u001b$B@q\u001b(B \u001b$B@r\u001b(B \u001b$B@s\u001b(B \u001b$B@t\u001b(B \u001b$B@u\u001b(B \u001b$B@v\u001b(B \u001b$B@w\u001b(B \u001b$B@x\u001b(B \u001b$B@y\u001b(B \u001b$B@z\u001b(B \u001b$B@{\u001b(B \u001b$B@|\u001b(B \u001b$B@}\u001b(B \u001b$B@~\u001b(B\n  \u001b$BA!\u001b(B \u001b$BA\"\u001b(B \u001b$BA#\u001b(B \u001b$BA$\u001b(B \u001b$BA%\u001b(B \u001b$BA&\u001b(B \u001b$BA'\u001b(B \u001b$BA(\u001b(B \u001b$BA)\u001b(B \u001b$BA*\u001b(B \u001b$BA+\u001b(B \u001b$BA,\u001b(B \u001b$BA-\u001b(B \u001b$BA.\u001b(B \u001b$BA/\u001b(B\n\u001b$BA0\u001b(B \u001b$BA1\u001b(B \u001b$BA2\u001b(B \u001b$BA3\u001b(B \u001b$BA4\u001b(B \u001b$BA5\u001b(B \u001b$BA6\u001b(B \u001b$BA7\u001b(B \u001b$BA8\u001b(B \u001b$BA9\u001b(B \u001b$BA:\u001b(B \u001b$BA;\u001b(B \u001b$BA<\u001b(B \u001b$BA=\u001b(B \u001b$BA>\u001b(B \u001b$BA?\u001b(B\n\u001b$BA@\u001b(B \u001b$BAA\u001b(B \u001b$BAB\u001b(B \u001b$BAC\u001b(B \u001b$BAD\u001b(B \u001b$BAE\u001b(B \u001b$BAF\u001b(B \u001b$BAG\u001b(B \u001b$BAH\u001b(B \u001b$BAI\u001b(B \u001b$BAJ\u001b(B \u001b$BAK\u001b(B \u001b$BAL\u001b(B \u001b$BAM\u001b(B \u001b$BAN\u001b(B \u001b$BAO\u001b(B\n\u001b$BAP\u001b(B \u001b$BAQ\u001b(B \u001b$BAR\u001b(B \u001b$BAS\u001b(B \u001b$BAT\u001b(B \u001b$BAU\u001b(B \u001b$BAV\u001b(B \u001b$BAW\u001b(B \u001b$BAX\u001b(B \u001b$BAY\u001b(B \u001b$BAZ\u001b(B \u001b$BA[\u001b(B \u001b$BA\\\u001b(B \u001b$BA]\u001b(B \u001b$BA^\u001b(B \u001b$BA_\u001b(B\n\u001b$BA`\u001b(B \u001b$BAa\u001b(B \u001b$BAb\u001b(B \u001b$BAc\u001b(B \u001b$BAd\u001b(B \u001b$BAe\u001b(B \u001b$BAf\u001b(B \u001b$BAg\u001b(B \u001b$BAh\u001b(B \u001b$BAi\u001b(B \u001b$BAj\u001b(B \u001b$BAk\u001b(B \u001b$BAl\u001b(B \u001b$BAm\u001b(B \u001b$BAn\u001b(B \u001b$BAo\u001b(B\n\u001b$BAp\u001b(B \u001b$BAq\u001b(B \u001b$BAr\u001b(B \u001b$BAs\u001b(B \u001b$BAt\u001b(B \u001b$BAu\u001b(B \u001b$BAv\u001b(B \u001b$BAw\u001b(B \u001b$BAx\u001b(B \u001b$BAy\u001b(B \u001b$BAz\u001b(B \u001b$BA{\u001b(B \u001b$BA|\u001b(B \u001b$BA}\u001b(B \u001b$BA~\u001b(B\n  \u001b$BB!\u001b(B \u001b$BB\"\u001b(B \u001b$BB#\u001b(B \u001b$BB$\u001b(B \u001b$BB%\u001b(B \u001b$BB&\u001b(B \u001b$BB'\u001b(B \u001b$BB(\u001b(B \u001b$BB)\u001b(B \u001b$BB*\u001b(B \u001b$BB+\u001b(B \u001b$BB,\u001b(B \u001b$BB-\u001b(B \u001b$BB.\u001b(B \u001b$BB/\u001b(B\n\u001b$BB0\u001b(B \u001b$BB1\u001b(B \u001b$BB2\u001b(B \u001b$BB3\u001b(B \u001b$BB4\u001b(B \u001b$BB5\u001b(B \u001b$BB6\u001b(B \u001b$BB7\u001b(B \u001b$BB8\u001b(B \u001b$BB9\u001b(B \u001b$BB:\u001b(B \u001b$BB;\u001b(B \u001b$BB<\u001b(B \u001b$BB=\u001b(B \u001b$BB>\u001b(B \u001b$BB?\u001b(B\n\u001b$BB@\u001b(B \u001b$BBA\u001b(B \u001b$BBB\u001b(B \u001b$BBC\u001b(B \u001b$BBD\u001b(B \u001b$BBE\u001b(B \u001b$BBF\u001b(B \u001b$BBG\u001b(B \u001b$BBH\u001b(B \u001b$BBI\u001b(B \u001b$BBJ\u001b(B \u001b$BBK\u001b(B \u001b$BBL\u001b(B \u001b$BBM\u001b(B \u001b$BBN\u001b(B \u001b$BBO\u001b(B\n\u001b$BBP\u001b(B \u001b$BBQ\u001b(B \u001b$BBR\u001b(B \u001b$BBS\u001b(B \u001b$BBT\u001b(B \u001b$BBU\u001b(B \u001b$BBV\u001b(B \u001b$BBW\u001b(B \u001b$BBX\u001b(B \u001b$BBY\u001b(B \u001b$BBZ\u001b(B \u001b$BB[\u001b(B \u001b$BB\\\u001b(B \u001b$BB]\u001b(B \u001b$BB^\u001b(B \u001b$BB_\u001b(B\n\u001b$BB`\u001b(B \u001b$BBa\u001b(B \u001b$BBb\u001b(B \u001b$BBc\u001b(B \u001b$BBd\u001b(B \u001b$BBe\u001b(B \u001b$BBf\u001b(B \u001b$BBg\u001b(B \u001b$BBh\u001b(B \u001b$BBi\u001b(B \u001b$BBj\u001b(B \u001b$BBk\u001b(B \u001b$BBl\u001b(B \u001b$BBm\u001b(B \u001b$BBn\u001b(B \u001b$BBo\u001b(B\n\u001b$BBp\u001b(B \u001b$BBq\u001b(B \u001b$BBr\u001b(B \u001b$BBs\u001b(B \u001b$BBt\u001b(B \u001b$BBu\u001b(B \u001b$BBv\u001b(B \u001b$BBw\u001b(B \u001b$BBx\u001b(B \u001b$BBy\u001b(B \u001b$BBz\u001b(B \u001b$BB{\u001b(B \u001b$BB|\u001b(B \u001b$BB}\u001b(B \u001b$BB~\u001b(B\n  \u001b$BC!\u001b(B \u001b$BC\"\u001b(B \u001b$BC#\u001b(B \u001b$BC$\u001b(B \u001b$BC%\u001b(B \u001b$BC&\u001b(B \u001b$BC'\u001b(B \u001b$BC(\u001b(B \u001b$BC)\u001b(B \u001b$BC*\u001b(B \u001b$BC+\u001b(B \u001b$BC,\u001b(B \u001b$BC-\u001b(B \u001b$BC.\u001b(B \u001b$BC/\u001b(B\n\u001b$BC0\u001b(B \u001b$BC1\u001b(B \u001b$BC2\u001b(B \u001b$BC3\u001b(B \u001b$BC4\u001b(B \u001b$BC5\u001b(B \u001b$BC6\u001b(B \u001b$BC7\u001b(B \u001b$BC8\u001b(B \u001b$BC9\u001b(B \u001b$BC:\u001b(B \u001b$BC;\u001b(B \u001b$BC<\u001b(B \u001b$BC=\u001b(B \u001b$BC>\u001b(B \u001b$BC?\u001b(B\n\u001b$BC@\u001b(B \u001b$BCA\u001b(B \u001b$BCB\u001b(B \u001b$BCC\u001b(B \u001b$BCD\u001b(B \u001b$BCE\u001b(B \u001b$BCF\u001b(B \u001b$BCG\u001b(B \u001b$BCH\u001b(B \u001b$BCI\u001b(B \u001b$BCJ\u001b(B \u001b$BCK\u001b(B \u001b$BCL\u001b(B \u001b$BCM\u001b(B \u001b$BCN\u001b(B \u001b$BCO\u001b(B\n\u001b$BCP\u001b(B \u001b$BCQ\u001b(B \u001b$BCR\u001b(B \u001b$BCS\u001b(B \u001b$BCT\u001b(B \u001b$BCU\u001b(B \u001b$BCV\u001b(B \u001b$BCW\u001b(B \u001b$BCX\u001b(B \u001b$BCY\u001b(B \u001b$BCZ\u001b(B \u001b$BC[\u001b(B \u001b$BC\\\u001b(B \u001b$BC]\u001b(B \u001b$BC^\u001b(B \u001b$BC_\u001b(B\n\u001b$BC`\u001b(B \u001b$BCa\u001b(B \u001b$BCb\u001b(B \u001b$BCc\u001b(B \u001b$BCd\u001b(B \u001b$BCe\u001b(B \u001b$BCf\u001b(B \u001b$BCg\u001b(B \u001b$BCh\u001b(B \u001b$BCi\u001b(B \u001b$BCj\u001b(B \u001b$BCk\u001b(B \u001b$BCl\u001b(B \u001b$BCm\u001b(B \u001b$BCn\u001b(B \u001b$BCo\u001b(B\n\u001b$BCp\u001b(B \u001b$BCq\u001b(B \u001b$BCr\u001b(B \u001b$BCs\u001b(B \u001b$BCt\u001b(B \u001b$BCu\u001b(B \u001b$BCv\u001b(B \u001b$BCw\u001b(B \u001b$BCx\u001b(B \u001b$BCy\u001b(B \u001b$BCz\u001b(B \u001b$BC{\u001b(B \u001b$BC|\u001b(B \u001b$BC}\u001b(B \u001b$BC~\u001b(B\n  \u001b$BD!\u001b(B \u001b$BD\"\u001b(B \u001b$BD#\u001b(B \u001b$BD$\u001b(B \u001b$BD%\u001b(B \u001b$BD&\u001b(B \u001b$BD'\u001b(B \u001b$BD(\u001b(B \u001b$BD)\u001b(B \u001b$BD*\u001b(B \u001b$BD+\u001b(B \u001b$BD,\u001b(B \u001b$BD-\u001b(B \u001b$BD.\u001b(B \u001b$BD/\u001b(B\n\u001b$BD0\u001b(B \u001b$BD1\u001b(B \u001b$BD2\u001b(B \u001b$BD3\u001b(B \u001b$BD4\u001b(B \u001b$BD5\u001b(B \u001b$BD6\u001b(B \u001b$BD7\u001b(B \u001b$BD8\u001b(B \u001b$BD9\u001b(B \u001b$BD:\u001b(B \u001b$BD;\u001b(B \u001b$BD<\u001b(B \u001b$BD=\u001b(B \u001b$BD>\u001b(B \u001b$BD?\u001b(B\n\u001b$BD@\u001b(B \u001b$BDA\u001b(B \u001b$BDB\u001b(B \u001b$BDC\u001b(B \u001b$BDD\u001b(B \u001b$BDE\u001b(B \u001b$BDF\u001b(B \u001b$BDG\u001b(B \u001b$BDH\u001b(B \u001b$BDI\u001b(B \u001b$BDJ\u001b(B \u001b$BDK\u001b(B \u001b$BDL\u001b(B \u001b$BDM\u001b(B \u001b$BDN\u001b(B \u001b$BDO\u001b(B\n\u001b$BDP\u001b(B \u001b$BDQ\u001b(B \u001b$BDR\u001b(B \u001b$BDS\u001b(B \u001b$BDT\u001b(B \u001b$BDU\u001b(B \u001b$BDV\u001b(B \u001b$BDW\u001b(B \u001b$BDX\u001b(B \u001b$BDY\u001b(B \u001b$BDZ\u001b(B \u001b$BD[\u001b(B \u001b$BD\\\u001b(B \u001b$BD]\u001b(B \u001b$BD^\u001b(B \u001b$BD_\u001b(B\n\u001b$BD`\u001b(B \u001b$BDa\u001b(B \u001b$BDb\u001b(B \u001b$BDc\u001b(B \u001b$BDd\u001b(B \u001b$BDe\u001b(B \u001b$BDf\u001b(B \u001b$BDg\u001b(B \u001b$BDh\u001b(B \u001b$BDi\u001b(B \u001b$BDj\u001b(B \u001b$BDk\u001b(B \u001b$BDl\u001b(B \u001b$BDm\u001b(B \u001b$BDn\u001b(B \u001b$BDo\u001b(B\n\u001b$BDp\u001b(B \u001b$BDq\u001b(B \u001b$BDr\u001b(B \u001b$BDs\u001b(B \u001b$BDt\u001b(B \u001b$BDu\u001b(B \u001b$BDv\u001b(B \u001b$BDw\u001b(B \u001b$BDx\u001b(B \u001b$BDy\u001b(B \u001b$BDz\u001b(B \u001b$BD{\u001b(B \u001b$BD|\u001b(B \u001b$BD}\u001b(B \u001b$BD~\u001b(B\n  \u001b$BE!\u001b(B \u001b$BE\"\u001b(B \u001b$BE#\u001b(B \u001b$BE$\u001b(B \u001b$BE%\u001b(B \u001b$BE&\u001b(B \u001b$BE'\u001b(B \u001b$BE(\u001b(B \u001b$BE)\u001b(B \u001b$BE*\u001b(B \u001b$BE+\u001b(B \u001b$BE,\u001b(B \u001b$BE-\u001b(B \u001b$BE.\u001b(B \u001b$BE/\u001b(B\n\u001b$BE0\u001b(B \u001b$BE1\u001b(B \u001b$BE2\u001b(B \u001b$BE3\u001b(B \u001b$BE4\u001b(B \u001b$BE5\u001b(B \u001b$BE6\u001b(B \u001b$BE7\u001b(B \u001b$BE8\u001b(B \u001b$BE9\u001b(B \u001b$BE:\u001b(B \u001b$BE;\u001b(B \u001b$BE<\u001b(B \u001b$BE=\u001b(B \u001b$BE>\u001b(B \u001b$BE?\u001b(B\n\u001b$BE@\u001b(B \u001b$BEA\u001b(B \u001b$BEB\u001b(B \u001b$BEC\u001b(B \u001b$BED\u001b(B \u001b$BEE\u001b(B \u001b$BEF\u001b(B \u001b$BEG\u001b(B \u001b$BEH\u001b(B \u001b$BEI\u001b(B \u001b$BEJ\u001b(B \u001b$BEK\u001b(B \u001b$BEL\u001b(B \u001b$BEM\u001b(B \u001b$BEN\u001b(B \u001b$BEO\u001b(B\n\u001b$BEP\u001b(B \u001b$BEQ\u001b(B \u001b$BER\u001b(B \u001b$BES\u001b(B \u001b$BET\u001b(B \u001b$BEU\u001b(B \u001b$BEV\u001b(B \u001b$BEW\u001b(B \u001b$BEX\u001b(B \u001b$BEY\u001b(B \u001b$BEZ\u001b(B \u001b$BE[\u001b(B \u001b$BE\\\u001b(B \u001b$BE]\u001b(B \u001b$BE^\u001b(B \u001b$BE_\u001b(B\n\u001b$BE`\u001b(B \u001b$BEa\u001b(B \u001b$BEb\u001b(B \u001b$BEc\u001b(B \u001b$BEd\u001b(B \u001b$BEe\u001b(B \u001b$BEf\u001b(B \u001b$BEg\u001b(B \u001b$BEh\u001b(B \u001b$BEi\u001b(B \u001b$BEj\u001b(B \u001b$BEk\u001b(B \u001b$BEl\u001b(B \u001b$BEm\u001b(B \u001b$BEn\u001b(B \u001b$BEo\u001b(B\n\u001b$BEp\u001b(B \u001b$BEq\u001b(B \u001b$BEr\u001b(B \u001b$BEs\u001b(B \u001b$BEt\u001b(B \u001b$BEu\u001b(B \u001b$BEv\u001b(B \u001b$BEw\u001b(B \u001b$BEx\u001b(B \u001b$BEy\u001b(B \u001b$BEz\u001b(B \u001b$BE{\u001b(B \u001b$BE|\u001b(B \u001b$BE}\u001b(B \u001b$BE~\u001b(B\n  \u001b$BF!\u001b(B \u001b$BF\"\u001b(B \u001b$BF#\u001b(B \u001b$BF$\u001b(B \u001b$BF%\u001b(B \u001b$BF&\u001b(B \u001b$BF'\u001b(B \u001b$BF(\u001b(B \u001b$BF)\u001b(B \u001b$BF*\u001b(B \u001b$BF+\u001b(B \u001b$BF,\u001b(B \u001b$BF-\u001b(B \u001b$BF.\u001b(B \u001b$BF/\u001b(B\n\u001b$BF0\u001b(B \u001b$BF1\u001b(B \u001b$BF2\u001b(B \u001b$BF3\u001b(B \u001b$BF4\u001b(B \u001b$BF5\u001b(B \u001b$BF6\u001b(B \u001b$BF7\u001b(B \u001b$BF8\u001b(B \u001b$BF9\u001b(B \u001b$BF:\u001b(B \u001b$BF;\u001b(B \u001b$BF<\u001b(B \u001b$BF=\u001b(B \u001b$BF>\u001b(B \u001b$BF?\u001b(B\n\u001b$BF@\u001b(B \u001b$BFA\u001b(B \u001b$BFB\u001b(B \u001b$BFC\u001b(B \u001b$BFD\u001b(B \u001b$BFE\u001b(B \u001b$BFF\u001b(B \u001b$BFG\u001b(B \u001b$BFH\u001b(B \u001b$BFI\u001b(B \u001b$BFJ\u001b(B \u001b$BFK\u001b(B \u001b$BFL\u001b(B \u001b$BFM\u001b(B \u001b$BFN\u001b(B \u001b$BFO\u001b(B\n\u001b$BFP\u001b(B \u001b$BFQ\u001b(B \u001b$BFR\u001b(B \u001b$BFS\u001b(B \u001b$BFT\u001b(B \u001b$BFU\u001b(B \u001b$BFV\u001b(B \u001b$BFW\u001b(B \u001b$BFX\u001b(B \u001b$BFY\u001b(B \u001b$BFZ\u001b(B \u001b$BF[\u001b(B \u001b$BF\\\u001b(B \u001b$BF]\u001b(B \u001b$BF^\u001b(B \u001b$BF_\u001b(B\n\u001b$BF`\u001b(B \u001b$BFa\u001b(B \u001b$BFb\u001b(B \u001b$BFc\u001b(B \u001b$BFd\u001b(B \u001b$BFe\u001b(B \u001b$BFf\u001b(B \u001b$BFg\u001b(B \u001b$BFh\u001b(B \u001b$BFi\u001b(B \u001b$BFj\u001b(B \u001b$BFk\u001b(B \u001b$BFl\u001b(B \u001b$BFm\u001b(B \u001b$BFn\u001b(B \u001b$BFo\u001b(B\n\u001b$BFp\u001b(B \u001b$BFq\u001b(B \u001b$BFr\u001b(B \u001b$BFs\u001b(B \u001b$BFt\u001b(B \u001b$BFu\u001b(B \u001b$BFv\u001b(B \u001b$BFw\u001b(B \u001b$BFx\u001b(B \u001b$BFy\u001b(B \u001b$BFz\u001b(B \u001b$BF{\u001b(B \u001b$BF|\u001b(B \u001b$BF}\u001b(B \u001b$BF~\u001b(B\n  \u001b$BG!\u001b(B \u001b$BG\"\u001b(B \u001b$BG#\u001b(B \u001b$BG$\u001b(B \u001b$BG%\u001b(B \u001b$BG&\u001b(B \u001b$BG'\u001b(B \u001b$BG(\u001b(B \u001b$BG)\u001b(B \u001b$BG*\u001b(B \u001b$BG+\u001b(B \u001b$BG,\u001b(B \u001b$BG-\u001b(B \u001b$BG.\u001b(B \u001b$BG/\u001b(B\n\u001b$BG0\u001b(B \u001b$BG1\u001b(B \u001b$BG2\u001b(B \u001b$BG3\u001b(B \u001b$BG4\u001b(B \u001b$BG5\u001b(B \u001b$BG6\u001b(B \u001b$BG7\u001b(B \u001b$BG8\u001b(B \u001b$BG9\u001b(B \u001b$BG:\u001b(B \u001b$BG;\u001b(B \u001b$BG<\u001b(B \u001b$BG=\u001b(B \u001b$BG>\u001b(B \u001b$BG?\u001b(B\n\u001b$BG@\u001b(B \u001b$BGA\u001b(B \u001b$BGB\u001b(B \u001b$BGC\u001b(B \u001b$BGD\u001b(B \u001b$BGE\u001b(B \u001b$BGF\u001b(B \u001b$BGG\u001b(B \u001b$BGH\u001b(B \u001b$BGI\u001b(B \u001b$BGJ\u001b(B \u001b$BGK\u001b(B \u001b$BGL\u001b(B \u001b$BGM\u001b(B \u001b$BGN\u001b(B \u001b$BGO\u001b(B\n\u001b$BGP\u001b(B \u001b$BGQ\u001b(B \u001b$BGR\u001b(B \u001b$BGS\u001b(B \u001b$BGT\u001b(B \u001b$BGU\u001b(B \u001b$BGV\u001b(B \u001b$BGW\u001b(B \u001b$BGX\u001b(B \u001b$BGY\u001b(B \u001b$BGZ\u001b(B \u001b$BG[\u001b(B \u001b$BG\\\u001b(B \u001b$BG]\u001b(B \u001b$BG^\u001b(B \u001b$BG_\u001b(B\n\u001b$BG`\u001b(B \u001b$BGa\u001b(B \u001b$BGb\u001b(B \u001b$BGc\u001b(B \u001b$BGd\u001b(B \u001b$BGe\u001b(B \u001b$BGf\u001b(B \u001b$BGg\u001b(B \u001b$BGh\u001b(B \u001b$BGi\u001b(B \u001b$BGj\u001b(B \u001b$BGk\u001b(B \u001b$BGl\u001b(B \u001b$BGm\u001b(B \u001b$BGn\u001b(B \u001b$BGo\u001b(B\n\u001b$BGp\u001b(B \u001b$BGq\u001b(B \u001b$BGr\u001b(B \u001b$BGs\u001b(B \u001b$BGt\u001b(B \u001b$BGu\u001b(B \u001b$BGv\u001b(B \u001b$BGw\u001b(B \u001b$BGx\u001b(B \u001b$BGy\u001b(B \u001b$BGz\u001b(B \u001b$BG{\u001b(B \u001b$BG|\u001b(B \u001b$BG}\u001b(B \u001b$BG~\u001b(B\n  \u001b$BH!\u001b(B \u001b$BH\"\u001b(B \u001b$BH#\u001b(B \u001b$BH$\u001b(B \u001b$BH%\u001b(B \u001b$BH&\u001b(B \u001b$BH'\u001b(B \u001b$BH(\u001b(B \u001b$BH)\u001b(B \u001b$BH*\u001b(B \u001b$BH+\u001b(B \u001b$BH,\u001b(B \u001b$BH-\u001b(B \u001b$BH.\u001b(B \u001b$BH/\u001b(B\n\u001b$BH0\u001b(B \u001b$BH1\u001b(B \u001b$BH2\u001b(B \u001b$BH3\u001b(B \u001b$BH4\u001b(B \u001b$BH5\u001b(B \u001b$BH6\u001b(B \u001b$BH7\u001b(B \u001b$BH8\u001b(B \u001b$BH9\u001b(B \u001b$BH:\u001b(B \u001b$BH;\u001b(B \u001b$BH<\u001b(B \u001b$BH=\u001b(B \u001b$BH>\u001b(B \u001b$BH?\u001b(B\n\u001b$BH@\u001b(B \u001b$BHA\u001b(B \u001b$BHB\u001b(B \u001b$BHC\u001b(B \u001b$BHD\u001b(B \u001b$BHE\u001b(B \u001b$BHF\u001b(B \u001b$BHG\u001b(B \u001b$BHH\u001b(B \u001b$BHI\u001b(B \u001b$BHJ\u001b(B \u001b$BHK\u001b(B \u001b$BHL\u001b(B \u001b$BHM\u001b(B \u001b$BHN\u001b(B \u001b$BHO\u001b(B\n\u001b$BHP\u001b(B \u001b$BHQ\u001b(B \u001b$BHR\u001b(B \u001b$BHS\u001b(B \u001b$BHT\u001b(B \u001b$BHU\u001b(B \u001b$BHV\u001b(B \u001b$BHW\u001b(B \u001b$BHX\u001b(B \u001b$BHY\u001b(B \u001b$BHZ\u001b(B \u001b$BH[\u001b(B \u001b$BH\\\u001b(B \u001b$BH]\u001b(B \u001b$BH^\u001b(B \u001b$BH_\u001b(B\n\u001b$BH`\u001b(B \u001b$BHa\u001b(B \u001b$BHb\u001b(B \u001b$BHc\u001b(B \u001b$BHd\u001b(B \u001b$BHe\u001b(B \u001b$BHf\u001b(B \u001b$BHg\u001b(B \u001b$BHh\u001b(B \u001b$BHi\u001b(B \u001b$BHj\u001b(B \u001b$BHk\u001b(B \u001b$BHl\u001b(B \u001b$BHm\u001b(B \u001b$BHn\u001b(B \u001b$BHo\u001b(B\n\u001b$BHp\u001b(B \u001b$BHq\u001b(B \u001b$BHr\u001b(B \u001b$BHs\u001b(B \u001b$BHt\u001b(B \u001b$BHu\u001b(B \u001b$BHv\u001b(B \u001b$BHw\u001b(B \u001b$BHx\u001b(B \u001b$BHy\u001b(B \u001b$BHz\u001b(B \u001b$BH{\u001b(B \u001b$BH|\u001b(B \u001b$BH}\u001b(B \u001b$BH~\u001b(B\n  \u001b$BI!\u001b(B \u001b$BI\"\u001b(B \u001b$BI#\u001b(B \u001b$BI$\u001b(B \u001b$BI%\u001b(B \u001b$BI&\u001b(B \u001b$BI'\u001b(B \u001b$BI(\u001b(B \u001b$BI)\u001b(B \u001b$BI*\u001b(B \u001b$BI+\u001b(B \u001b$BI,\u001b(B \u001b$BI-\u001b(B \u001b$BI.\u001b(B \u001b$BI/\u001b(B\n\u001b$BI0\u001b(B \u001b$BI1\u001b(B \u001b$BI2\u001b(B \u001b$BI3\u001b(B \u001b$BI4\u001b(B \u001b$BI5\u001b(B \u001b$BI6\u001b(B \u001b$BI7\u001b(B \u001b$BI8\u001b(B \u001b$BI9\u001b(B \u001b$BI:\u001b(B \u001b$BI;\u001b(B \u001b$BI<\u001b(B \u001b$BI=\u001b(B \u001b$BI>\u001b(B \u001b$BI?\u001b(B\n\u001b$BI@\u001b(B \u001b$BIA\u001b(B \u001b$BIB\u001b(B \u001b$BIC\u001b(B \u001b$BID\u001b(B \u001b$BIE\u001b(B \u001b$BIF\u001b(B \u001b$BIG\u001b(B \u001b$BIH\u001b(B \u001b$BII\u001b(B \u001b$BIJ\u001b(B \u001b$BIK\u001b(B \u001b$BIL\u001b(B \u001b$BIM\u001b(B \u001b$BIN\u001b(B \u001b$BIO\u001b(B\n\u001b$BIP\u001b(B \u001b$BIQ\u001b(B \u001b$BIR\u001b(B \u001b$BIS\u001b(B \u001b$BIT\u001b(B \u001b$BIU\u001b(B \u001b$BIV\u001b(B \u001b$BIW\u001b(B \u001b$BIX\u001b(B \u001b$BIY\u001b(B \u001b$BIZ\u001b(B \u001b$BI[\u001b(B \u001b$BI\\\u001b(B \u001b$BI]\u001b(B \u001b$BI^\u001b(B \u001b$BI_\u001b(B\n\u001b$BI`\u001b(B \u001b$BIa\u001b(B \u001b$BIb\u001b(B \u001b$BIc\u001b(B \u001b$BId\u001b(B \u001b$BIe\u001b(B \u001b$BIf\u001b(B \u001b$BIg\u001b(B \u001b$BIh\u001b(B \u001b$BIi\u001b(B \u001b$BIj\u001b(B \u001b$BIk\u001b(B \u001b$BIl\u001b(B \u001b$BIm\u001b(B \u001b$BIn\u001b(B \u001b$BIo\u001b(B\n\u001b$BIp\u001b(B \u001b$BIq\u001b(B \u001b$BIr\u001b(B \u001b$BIs\u001b(B \u001b$BIt\u001b(B \u001b$BIu\u001b(B \u001b$BIv\u001b(B \u001b$BIw\u001b(B \u001b$BIx\u001b(B \u001b$BIy\u001b(B \u001b$BIz\u001b(B \u001b$BI{\u001b(B \u001b$BI|\u001b(B \u001b$BI}\u001b(B \u001b$BI~\u001b(B\n  \u001b$BJ!\u001b(B \u001b$BJ\"\u001b(B \u001b$BJ#\u001b(B \u001b$BJ$\u001b(B \u001b$BJ%\u001b(B \u001b$BJ&\u001b(B \u001b$BJ'\u001b(B \u001b$BJ(\u001b(B \u001b$BJ)\u001b(B \u001b$BJ*\u001b(B \u001b$BJ+\u001b(B \u001b$BJ,\u001b(B \u001b$BJ-\u001b(B \u001b$BJ.\u001b(B \u001b$BJ/\u001b(B\n\u001b$BJ0\u001b(B \u001b$BJ1\u001b(B \u001b$BJ2\u001b(B \u001b$BJ3\u001b(B \u001b$BJ4\u001b(B \u001b$BJ5\u001b(B \u001b$BJ6\u001b(B \u001b$BJ7\u001b(B \u001b$BJ8\u001b(B \u001b$BJ9\u001b(B \u001b$BJ:\u001b(B \u001b$BJ;\u001b(B \u001b$BJ<\u001b(B \u001b$BJ=\u001b(B \u001b$BJ>\u001b(B \u001b$BJ?\u001b(B\n\u001b$BJ@\u001b(B \u001b$BJA\u001b(B \u001b$BJB\u001b(B \u001b$BJC\u001b(B \u001b$BJD\u001b(B \u001b$BJE\u001b(B \u001b$BJF\u001b(B \u001b$BJG\u001b(B \u001b$BJH\u001b(B \u001b$BJI\u001b(B \u001b$BJJ\u001b(B \u001b$BJK\u001b(B \u001b$BJL\u001b(B \u001b$BJM\u001b(B \u001b$BJN\u001b(B \u001b$BJO\u001b(B\n\u001b$BJP\u001b(B \u001b$BJQ\u001b(B \u001b$BJR\u001b(B \u001b$BJS\u001b(B \u001b$BJT\u001b(B \u001b$BJU\u001b(B \u001b$BJV\u001b(B \u001b$BJW\u001b(B \u001b$BJX\u001b(B \u001b$BJY\u001b(B \u001b$BJZ\u001b(B \u001b$BJ[\u001b(B \u001b$BJ\\\u001b(B \u001b$BJ]\u001b(B \u001b$BJ^\u001b(B \u001b$BJ_\u001b(B\n\u001b$BJ`\u001b(B \u001b$BJa\u001b(B \u001b$BJb\u001b(B \u001b$BJc\u001b(B \u001b$BJd\u001b(B \u001b$BJe\u001b(B \u001b$BJf\u001b(B \u001b$BJg\u001b(B \u001b$BJh\u001b(B \u001b$BJi\u001b(B \u001b$BJj\u001b(B \u001b$BJk\u001b(B \u001b$BJl\u001b(B \u001b$BJm\u001b(B \u001b$BJn\u001b(B \u001b$BJo\u001b(B\n\u001b$BJp\u001b(B \u001b$BJq\u001b(B \u001b$BJr\u001b(B \u001b$BJs\u001b(B \u001b$BJt\u001b(B \u001b$BJu\u001b(B \u001b$BJv\u001b(B \u001b$BJw\u001b(B \u001b$BJx\u001b(B \u001b$BJy\u001b(B \u001b$BJz\u001b(B \u001b$BJ{\u001b(B \u001b$BJ|\u001b(B \u001b$BJ}\u001b(B \u001b$BJ~\u001b(B\n  \u001b$BK!\u001b(B \u001b$BK\"\u001b(B \u001b$BK#\u001b(B \u001b$BK$\u001b(B \u001b$BK%\u001b(B \u001b$BK&\u001b(B \u001b$BK'\u001b(B \u001b$BK(\u001b(B \u001b$BK)\u001b(B \u001b$BK*\u001b(B \u001b$BK+\u001b(B \u001b$BK,\u001b(B \u001b$BK-\u001b(B \u001b$BK.\u001b(B \u001b$BK/\u001b(B\n\u001b$BK0\u001b(B \u001b$BK1\u001b(B \u001b$BK2\u001b(B \u001b$BK3\u001b(B \u001b$BK4\u001b(B \u001b$BK5\u001b(B \u001b$BK6\u001b(B \u001b$BK7\u001b(B \u001b$BK8\u001b(B \u001b$BK9\u001b(B \u001b$BK:\u001b(B \u001b$BK;\u001b(B \u001b$BK<\u001b(B \u001b$BK=\u001b(B \u001b$BK>\u001b(B \u001b$BK?\u001b(B\n\u001b$BK@\u001b(B \u001b$BKA\u001b(B \u001b$BKB\u001b(B \u001b$BKC\u001b(B \u001b$BKD\u001b(B \u001b$BKE\u001b(B \u001b$BKF\u001b(B \u001b$BKG\u001b(B \u001b$BKH\u001b(B \u001b$BKI\u001b(B \u001b$BKJ\u001b(B \u001b$BKK\u001b(B \u001b$BKL\u001b(B \u001b$BKM\u001b(B \u001b$BKN\u001b(B \u001b$BKO\u001b(B\n\u001b$BKP\u001b(B \u001b$BKQ\u001b(B \u001b$BKR\u001b(B \u001b$BKS\u001b(B \u001b$BKT\u001b(B \u001b$BKU\u001b(B \u001b$BKV\u001b(B \u001b$BKW\u001b(B \u001b$BKX\u001b(B \u001b$BKY\u001b(B \u001b$BKZ\u001b(B \u001b$BK[\u001b(B \u001b$BK\\\u001b(B \u001b$BK]\u001b(B \u001b$BK^\u001b(B \u001b$BK_\u001b(B\n\u001b$BK`\u001b(B \u001b$BKa\u001b(B \u001b$BKb\u001b(B \u001b$BKc\u001b(B \u001b$BKd\u001b(B \u001b$BKe\u001b(B \u001b$BKf\u001b(B \u001b$BKg\u001b(B \u001b$BKh\u001b(B \u001b$BKi\u001b(B \u001b$BKj\u001b(B \u001b$BKk\u001b(B \u001b$BKl\u001b(B \u001b$BKm\u001b(B \u001b$BKn\u001b(B \u001b$BKo\u001b(B\n\u001b$BKp\u001b(B \u001b$BKq\u001b(B \u001b$BKr\u001b(B \u001b$BKs\u001b(B \u001b$BKt\u001b(B \u001b$BKu\u001b(B \u001b$BKv\u001b(B \u001b$BKw\u001b(B \u001b$BKx\u001b(B \u001b$BKy\u001b(B \u001b$BKz\u001b(B \u001b$BK{\u001b(B \u001b$BK|\u001b(B \u001b$BK}\u001b(B \u001b$BK~\u001b(B\n  \u001b$BL!\u001b(B \u001b$BL\"\u001b(B \u001b$BL#\u001b(B \u001b$BL$\u001b(B \u001b$BL%\u001b(B \u001b$BL&\u001b(B \u001b$BL'\u001b(B \u001b$BL(\u001b(B \u001b$BL)\u001b(B \u001b$BL*\u001b(B \u001b$BL+\u001b(B \u001b$BL,\u001b(B \u001b$BL-\u001b(B \u001b$BL.\u001b(B \u001b$BL/\u001b(B\n\u001b$BL0\u001b(B \u001b$BL1\u001b(B \u001b$BL2\u001b(B \u001b$BL3\u001b(B \u001b$BL4\u001b(B \u001b$BL5\u001b(B \u001b$BL6\u001b(B \u001b$BL7\u001b(B \u001b$BL8\u001b(B \u001b$BL9\u001b(B \u001b$BL:\u001b(B \u001b$BL;\u001b(B \u001b$BL<\u001b(B \u001b$BL=\u001b(B \u001b$BL>\u001b(B \u001b$BL?\u001b(B\n\u001b$BL@\u001b(B \u001b$BLA\u001b(B \u001b$BLB\u001b(B \u001b$BLC\u001b(B \u001b$BLD\u001b(B \u001b$BLE\u001b(B \u001b$BLF\u001b(B \u001b$BLG\u001b(B \u001b$BLH\u001b(B \u001b$BLI\u001b(B \u001b$BLJ\u001b(B \u001b$BLK\u001b(B \u001b$BLL\u001b(B \u001b$BLM\u001b(B \u001b$BLN\u001b(B \u001b$BLO\u001b(B\n\u001b$BLP\u001b(B \u001b$BLQ\u001b(B \u001b$BLR\u001b(B \u001b$BLS\u001b(B \u001b$BLT\u001b(B \u001b$BLU\u001b(B \u001b$BLV\u001b(B \u001b$BLW\u001b(B \u001b$BLX\u001b(B \u001b$BLY\u001b(B \u001b$BLZ\u001b(B \u001b$BL[\u001b(B \u001b$BL\\\u001b(B \u001b$BL]\u001b(B \u001b$BL^\u001b(B \u001b$BL_\u001b(B\n\u001b$BL`\u001b(B \u001b$BLa\u001b(B \u001b$BLb\u001b(B \u001b$BLc\u001b(B \u001b$BLd\u001b(B \u001b$BLe\u001b(B \u001b$BLf\u001b(B \u001b$BLg\u001b(B \u001b$BLh\u001b(B \u001b$BLi\u001b(B \u001b$BLj\u001b(B \u001b$BLk\u001b(B \u001b$BLl\u001b(B \u001b$BLm\u001b(B \u001b$BLn\u001b(B \u001b$BLo\u001b(B\n\u001b$BLp\u001b(B \u001b$BLq\u001b(B \u001b$BLr\u001b(B \u001b$BLs\u001b(B \u001b$BLt\u001b(B \u001b$BLu\u001b(B \u001b$BLv\u001b(B \u001b$BLw\u001b(B \u001b$BLx\u001b(B \u001b$BLy\u001b(B \u001b$BLz\u001b(B \u001b$BL{\u001b(B \u001b$BL|\u001b(B \u001b$BL}\u001b(B \u001b$BL~\u001b(B\n  \u001b$BM!\u001b(B \u001b$BM\"\u001b(B \u001b$BM#\u001b(B \u001b$BM$\u001b(B \u001b$BM%\u001b(B \u001b$BM&\u001b(B \u001b$BM'\u001b(B \u001b$BM(\u001b(B \u001b$BM)\u001b(B \u001b$BM*\u001b(B \u001b$BM+\u001b(B \u001b$BM,\u001b(B \u001b$BM-\u001b(B \u001b$BM.\u001b(B \u001b$BM/\u001b(B\n\u001b$BM0\u001b(B \u001b$BM1\u001b(B \u001b$BM2\u001b(B \u001b$BM3\u001b(B \u001b$BM4\u001b(B \u001b$BM5\u001b(B \u001b$BM6\u001b(B \u001b$BM7\u001b(B \u001b$BM8\u001b(B \u001b$BM9\u001b(B \u001b$BM:\u001b(B \u001b$BM;\u001b(B \u001b$BM<\u001b(B \u001b$BM=\u001b(B \u001b$BM>\u001b(B \u001b$BM?\u001b(B\n\u001b$BM@\u001b(B \u001b$BMA\u001b(B \u001b$BMB\u001b(B \u001b$BMC\u001b(B \u001b$BMD\u001b(B \u001b$BME\u001b(B \u001b$BMF\u001b(B \u001b$BMG\u001b(B \u001b$BMH\u001b(B \u001b$BMI\u001b(B \u001b$BMJ\u001b(B \u001b$BMK\u001b(B \u001b$BML\u001b(B \u001b$BMM\u001b(B \u001b$BMN\u001b(B \u001b$BMO\u001b(B\n\u001b$BMP\u001b(B \u001b$BMQ\u001b(B \u001b$BMR\u001b(B \u001b$BMS\u001b(B \u001b$BMT\u001b(B \u001b$BMU\u001b(B \u001b$BMV\u001b(B \u001b$BMW\u001b(B \u001b$BMX\u001b(B \u001b$BMY\u001b(B \u001b$BMZ\u001b(B \u001b$BM[\u001b(B \u001b$BM\\\u001b(B \u001b$BM]\u001b(B \u001b$BM^\u001b(B \u001b$BM_\u001b(B\n\u001b$BM`\u001b(B \u001b$BMa\u001b(B \u001b$BMb\u001b(B \u001b$BMc\u001b(B \u001b$BMd\u001b(B \u001b$BMe\u001b(B \u001b$BMf\u001b(B \u001b$BMg\u001b(B \u001b$BMh\u001b(B \u001b$BMi\u001b(B \u001b$BMj\u001b(B \u001b$BMk\u001b(B \u001b$BMl\u001b(B \u001b$BMm\u001b(B \u001b$BMn\u001b(B \u001b$BMo\u001b(B\n\u001b$BMp\u001b(B \u001b$BMq\u001b(B \u001b$BMr\u001b(B \u001b$BMs\u001b(B \u001b$BMt\u001b(B \u001b$BMu\u001b(B \u001b$BMv\u001b(B \u001b$BMw\u001b(B \u001b$BMx\u001b(B \u001b$BMy\u001b(B \u001b$BMz\u001b(B \u001b$BM{\u001b(B \u001b$BM|\u001b(B \u001b$BM}\u001b(B \u001b$BM~\u001b(B\n  \u001b$BN!\u001b(B \u001b$BN\"\u001b(B \u001b$BN#\u001b(B \u001b$BN$\u001b(B \u001b$BN%\u001b(B \u001b$BN&\u001b(B \u001b$BN'\u001b(B \u001b$BN(\u001b(B \u001b$BN)\u001b(B \u001b$BN*\u001b(B \u001b$BN+\u001b(B \u001b$BN,\u001b(B \u001b$BN-\u001b(B \u001b$BN.\u001b(B \u001b$BN/\u001b(B\n\u001b$BN0\u001b(B \u001b$BN1\u001b(B \u001b$BN2\u001b(B \u001b$BN3\u001b(B \u001b$BN4\u001b(B \u001b$BN5\u001b(B \u001b$BN6\u001b(B \u001b$BN7\u001b(B \u001b$BN8\u001b(B \u001b$BN9\u001b(B \u001b$BN:\u001b(B \u001b$BN;\u001b(B \u001b$BN<\u001b(B \u001b$BN=\u001b(B \u001b$BN>\u001b(B \u001b$BN?\u001b(B\n\u001b$BN@\u001b(B \u001b$BNA\u001b(B \u001b$BNB\u001b(B \u001b$BNC\u001b(B \u001b$BND\u001b(B \u001b$BNE\u001b(B \u001b$BNF\u001b(B \u001b$BNG\u001b(B \u001b$BNH\u001b(B \u001b$BNI\u001b(B \u001b$BNJ\u001b(B \u001b$BNK\u001b(B \u001b$BNL\u001b(B \u001b$BNM\u001b(B \u001b$BNN\u001b(B \u001b$BNO\u001b(B\n\u001b$BNP\u001b(B \u001b$BNQ\u001b(B \u001b$BNR\u001b(B \u001b$BNS\u001b(B \u001b$BNT\u001b(B \u001b$BNU\u001b(B \u001b$BNV\u001b(B \u001b$BNW\u001b(B \u001b$BNX\u001b(B \u001b$BNY\u001b(B \u001b$BNZ\u001b(B \u001b$BN[\u001b(B \u001b$BN\\\u001b(B \u001b$BN]\u001b(B \u001b$BN^\u001b(B \u001b$BN_\u001b(B\n\u001b$BN`\u001b(B \u001b$BNa\u001b(B \u001b$BNb\u001b(B \u001b$BNc\u001b(B \u001b$BNd\u001b(B \u001b$BNe\u001b(B \u001b$BNf\u001b(B \u001b$BNg\u001b(B \u001b$BNh\u001b(B \u001b$BNi\u001b(B \u001b$BNj\u001b(B \u001b$BNk\u001b(B \u001b$BNl\u001b(B \u001b$BNm\u001b(B \u001b$BNn\u001b(B \u001b$BNo\u001b(B\n\u001b$BNp\u001b(B \u001b$BNq\u001b(B \u001b$BNr\u001b(B \u001b$BNs\u001b(B \u001b$BNt\u001b(B \u001b$BNu\u001b(B \u001b$BNv\u001b(B \u001b$BNw\u001b(B \u001b$BNx\u001b(B \u001b$BNy\u001b(B \u001b$BNz\u001b(B \u001b$BN{\u001b(B \u001b$BN|\u001b(B \u001b$BN}\u001b(B \u001b$BN~\u001b(B\n  \u001b$BO!\u001b(B \u001b$BO\"\u001b(B \u001b$BO#\u001b(B \u001b$BO$\u001b(B \u001b$BO%\u001b(B \u001b$BO&\u001b(B \u001b$BO'\u001b(B \u001b$BO(\u001b(B \u001b$BO)\u001b(B \u001b$BO*\u001b(B \u001b$BO+\u001b(B \u001b$BO,\u001b(B \u001b$BO-\u001b(B \u001b$BO.\u001b(B \u001b$BO/\u001b(B\n\u001b$BO0\u001b(B \u001b$BO1\u001b(B \u001b$BO2\u001b(B \u001b$BO3\u001b(B \u001b$BO4\u001b(B \u001b$BO5\u001b(B \u001b$BO6\u001b(B \u001b$BO7\u001b(B \u001b$BO8\u001b(B \u001b$BO9\u001b(B \u001b$BO:\u001b(B \u001b$BO;\u001b(B \u001b$BO<\u001b(B \u001b$BO=\u001b(B \u001b$BO>\u001b(B \u001b$BO?\u001b(B\n\u001b$BO@\u001b(B \u001b$BOA\u001b(B \u001b$BOB\u001b(B \u001b$BOC\u001b(B \u001b$BOD\u001b(B \u001b$BOE\u001b(B \u001b$BOF\u001b(B \u001b$BOG\u001b(B \u001b$BOH\u001b(B \u001b$BOI\u001b(B \u001b$BOJ\u001b(B \u001b$BOK\u001b(B \u001b$BOL\u001b(B \u001b$BOM\u001b(B \u001b$BON\u001b(B \u001b$BOO\u001b(B\n\u001b$BOP\u001b(B \u001b$BOQ\u001b(B \u001b$BOR\u001b(B \u001b$BOS\u001b(B\n  \u001b$BP!\u001b(B \u001b$BP\"\u001b(B \u001b$BP#\u001b(B \u001b$BP$\u001b(B \u001b$BP%\u001b(B \u001b$BP&\u001b(B \u001b$BP'\u001b(B \u001b$BP(\u001b(B \u001b$BP)\u001b(B \u001b$BP*\u001b(B \u001b$BP+\u001b(B \u001b$BP,\u001b(B \u001b$BP-\u001b(B \u001b$BP.\u001b(B \u001b$BP/\u001b(B\n\u001b$BP0\u001b(B \u001b$BP1\u001b(B \u001b$BP2\u001b(B \u001b$BP3\u001b(B \u001b$BP4\u001b(B \u001b$BP5\u001b(B \u001b$BP6\u001b(B \u001b$BP7\u001b(B \u001b$BP8\u001b(B \u001b$BP9\u001b(B \u001b$BP:\u001b(B \u001b$BP;\u001b(B \u001b$BP<\u001b(B \u001b$BP=\u001b(B \u001b$BP>\u001b(B \u001b$BP?\u001b(B\n\u001b$BP@\u001b(B \u001b$BPA\u001b(B \u001b$BPB\u001b(B \u001b$BPC\u001b(B \u001b$BPD\u001b(B \u001b$BPE\u001b(B \u001b$BPF\u001b(B \u001b$BPG\u001b(B \u001b$BPH\u001b(B \u001b$BPI\u001b(B \u001b$BPJ\u001b(B \u001b$BPK\u001b(B \u001b$BPL\u001b(B \u001b$BPM\u001b(B \u001b$BPN\u001b(B \u001b$BPO\u001b(B\n\u001b$BPP\u001b(B \u001b$BPQ\u001b(B \u001b$BPR\u001b(B \u001b$BPS\u001b(B \u001b$BPT\u001b(B \u001b$BPU\u001b(B \u001b$BPV\u001b(B \u001b$BPW\u001b(B \u001b$BPX\u001b(B \u001b$BPY\u001b(B \u001b$BPZ\u001b(B \u001b$BP[\u001b(B \u001b$BP\\\u001b(B \u001b$BP]\u001b(B \u001b$BP^\u001b(B \u001b$BP_\u001b(B\n\u001b$BP`\u001b(B \u001b$BPa\u001b(B \u001b$BPb\u001b(B \u001b$BPc\u001b(B \u001b$BPd\u001b(B \u001b$BPe\u001b(B \u001b$BPf\u001b(B \u001b$BPg\u001b(B \u001b$BPh\u001b(B \u001b$BPi\u001b(B \u001b$BPj\u001b(B \u001b$BPk\u001b(B \u001b$BPl\u001b(B \u001b$BPm\u001b(B \u001b$BPn\u001b(B \u001b$BPo\u001b(B\n\u001b$BPp\u001b(B \u001b$BPq\u001b(B \u001b$BPr\u001b(B \u001b$BPs\u001b(B \u001b$BPt\u001b(B \u001b$BPu\u001b(B \u001b$BPv\u001b(B \u001b$BPw\u001b(B \u001b$BPx\u001b(B \u001b$BPy\u001b(B \u001b$BPz\u001b(B \u001b$BP{\u001b(B \u001b$BP|\u001b(B \u001b$BP}\u001b(B \u001b$BP~\u001b(B\n  \u001b$BQ!\u001b(B \u001b$BQ\"\u001b(B \u001b$BQ#\u001b(B \u001b$BQ$\u001b(B \u001b$BQ%\u001b(B \u001b$BQ&\u001b(B \u001b$BQ'\u001b(B \u001b$BQ(\u001b(B \u001b$BQ)\u001b(B \u001b$BQ*\u001b(B \u001b$BQ+\u001b(B \u001b$BQ,\u001b(B \u001b$BQ-\u001b(B \u001b$BQ.\u001b(B \u001b$BQ/\u001b(B\n\u001b$BQ0\u001b(B \u001b$BQ1\u001b(B \u001b$BQ2\u001b(B \u001b$BQ3\u001b(B \u001b$BQ4\u001b(B \u001b$BQ5\u001b(B \u001b$BQ6\u001b(B \u001b$BQ7\u001b(B \u001b$BQ8\u001b(B \u001b$BQ9\u001b(B \u001b$BQ:\u001b(B \u001b$BQ;\u001b(B \u001b$BQ<\u001b(B \u001b$BQ=\u001b(B \u001b$BQ>\u001b(B \u001b$BQ?\u001b(B\n\u001b$BQ@\u001b(B \u001b$BQA\u001b(B \u001b$BQB\u001b(B \u001b$BQC\u001b(B \u001b$BQD\u001b(B \u001b$BQE\u001b(B \u001b$BQF\u001b(B \u001b$BQG\u001b(B \u001b$BQH\u001b(B \u001b$BQI\u001b(B \u001b$BQJ\u001b(B \u001b$BQK\u001b(B \u001b$BQL\u001b(B \u001b$BQM\u001b(B \u001b$BQN\u001b(B \u001b$BQO\u001b(B\n\u001b$BQP\u001b(B \u001b$BQQ\u001b(B \u001b$BQR\u001b(B \u001b$BQS\u001b(B \u001b$BQT\u001b(B \u001b$BQU\u001b(B \u001b$BQV\u001b(B \u001b$BQW\u001b(B \u001b$BQX\u001b(B \u001b$BQY\u001b(B \u001b$BQZ\u001b(B \u001b$BQ[\u001b(B \u001b$BQ\\\u001b(B \u001b$BQ]\u001b(B \u001b$BQ^\u001b(B \u001b$BQ_\u001b(B\n\u001b$BQ`\u001b(B \u001b$BQa\u001b(B \u001b$BQb\u001b(B \u001b$BQc\u001b(B \u001b$BQd\u001b(B \u001b$BQe\u001b(B \u001b$BQf\u001b(B \u001b$BQg\u001b(B \u001b$BQh\u001b(B \u001b$BQi\u001b(B \u001b$BQj\u001b(B \u001b$BQk\u001b(B \u001b$BQl\u001b(B \u001b$BQm\u001b(B \u001b$BQn\u001b(B \u001b$BQo\u001b(B\n\u001b$BQp\u001b(B \u001b$BQq\u001b(B \u001b$BQr\u001b(B \u001b$BQs\u001b(B \u001b$BQt\u001b(B \u001b$BQu\u001b(B \u001b$BQv\u001b(B \u001b$BQw\u001b(B \u001b$BQx\u001b(B \u001b$BQy\u001b(B \u001b$BQz\u001b(B \u001b$BQ{\u001b(B \u001b$BQ|\u001b(B \u001b$BQ}\u001b(B \u001b$BQ~\u001b(B\n  \u001b$BR!\u001b(B \u001b$BR\"\u001b(B \u001b$BR#\u001b(B \u001b$BR$\u001b(B \u001b$BR%\u001b(B \u001b$BR&\u001b(B \u001b$BR'\u001b(B \u001b$BR(\u001b(B \u001b$BR)\u001b(B \u001b$BR*\u001b(B \u001b$BR+\u001b(B \u001b$BR,\u001b(B \u001b$BR-\u001b(B \u001b$BR.\u001b(B \u001b$BR/\u001b(B\n\u001b$BR0\u001b(B \u001b$BR1\u001b(B \u001b$BR2\u001b(B \u001b$BR3\u001b(B \u001b$BR4\u001b(B \u001b$BR5\u001b(B \u001b$BR6\u001b(B \u001b$BR7\u001b(B \u001b$BR8\u001b(B \u001b$BR9\u001b(B \u001b$BR:\u001b(B \u001b$BR;\u001b(B \u001b$BR<\u001b(B \u001b$BR=\u001b(B \u001b$BR>\u001b(B \u001b$BR?\u001b(B\n\u001b$BR@\u001b(B \u001b$BRA\u001b(B \u001b$BRB\u001b(B \u001b$BRC\u001b(B \u001b$BRD\u001b(B \u001b$BRE\u001b(B \u001b$BRF\u001b(B \u001b$BRG\u001b(B \u001b$BRH\u001b(B \u001b$BRI\u001b(B \u001b$BRJ\u001b(B \u001b$BRK\u001b(B \u001b$BRL\u001b(B \u001b$BRM\u001b(B \u001b$BRN\u001b(B \u001b$BRO\u001b(B\n\u001b$BRP\u001b(B \u001b$BRQ\u001b(B \u001b$BRR\u001b(B \u001b$BRS\u001b(B \u001b$BRT\u001b(B \u001b$BRU\u001b(B \u001b$BRV\u001b(B \u001b$BRW\u001b(B \u001b$BRX\u001b(B \u001b$BRY\u001b(B \u001b$BRZ\u001b(B \u001b$BR[\u001b(B \u001b$BR\\\u001b(B \u001b$BR]\u001b(B \u001b$BR^\u001b(B \u001b$BR_\u001b(B\n\u001b$BR`\u001b(B \u001b$BRa\u001b(B \u001b$BRb\u001b(B \u001b$BRc\u001b(B \u001b$BRd\u001b(B \u001b$BRe\u001b(B \u001b$BRf\u001b(B \u001b$BRg\u001b(B \u001b$BRh\u001b(B \u001b$BRi\u001b(B \u001b$BRj\u001b(B \u001b$BRk\u001b(B \u001b$BRl\u001b(B \u001b$BRm\u001b(B \u001b$BRn\u001b(B \u001b$BRo\u001b(B\n\u001b$BRp\u001b(B \u001b$BRq\u001b(B \u001b$BRr\u001b(B \u001b$BRs\u001b(B \u001b$BRt\u001b(B \u001b$BRu\u001b(B \u001b$BRv\u001b(B \u001b$BRw\u001b(B \u001b$BRx\u001b(B \u001b$BRy\u001b(B \u001b$BRz\u001b(B \u001b$BR{\u001b(B \u001b$BR|\u001b(B \u001b$BR}\u001b(B \u001b$BR~\u001b(B\n  \u001b$BS!\u001b(B \u001b$BS\"\u001b(B \u001b$BS#\u001b(B \u001b$BS$\u001b(B \u001b$BS%\u001b(B \u001b$BS&\u001b(B \u001b$BS'\u001b(B \u001b$BS(\u001b(B \u001b$BS)\u001b(B \u001b$BS*\u001b(B \u001b$BS+\u001b(B \u001b$BS,\u001b(B \u001b$BS-\u001b(B \u001b$BS.\u001b(B \u001b$BS/\u001b(B\n\u001b$BS0\u001b(B \u001b$BS1\u001b(B \u001b$BS2\u001b(B \u001b$BS3\u001b(B \u001b$BS4\u001b(B \u001b$BS5\u001b(B \u001b$BS6\u001b(B \u001b$BS7\u001b(B \u001b$BS8\u001b(B \u001b$BS9\u001b(B \u001b$BS:\u001b(B \u001b$BS;\u001b(B \u001b$BS<\u001b(B \u001b$BS=\u001b(B \u001b$BS>\u001b(B \u001b$BS?\u001b(B\n\u001b$BS@\u001b(B \u001b$BSA\u001b(B \u001b$BSB\u001b(B \u001b$BSC\u001b(B \u001b$BSD\u001b(B \u001b$BSE\u001b(B \u001b$BSF\u001b(B \u001b$BSG\u001b(B \u001b$BSH\u001b(B \u001b$BSI\u001b(B \u001b$BSJ\u001b(B \u001b$BSK\u001b(B \u001b$BSL\u001b(B \u001b$BSM\u001b(B \u001b$BSN\u001b(B \u001b$BSO\u001b(B\n\u001b$BSP\u001b(B \u001b$BSQ\u001b(B \u001b$BSR\u001b(B \u001b$BSS\u001b(B \u001b$BST\u001b(B \u001b$BSU\u001b(B \u001b$BSV\u001b(B \u001b$BSW\u001b(B \u001b$BSX\u001b(B \u001b$BSY\u001b(B \u001b$BSZ\u001b(B \u001b$BS[\u001b(B \u001b$BS\\\u001b(B \u001b$BS]\u001b(B \u001b$BS^\u001b(B \u001b$BS_\u001b(B\n\u001b$BS`\u001b(B \u001b$BSa\u001b(B \u001b$BSb\u001b(B \u001b$BSc\u001b(B \u001b$BSd\u001b(B \u001b$BSe\u001b(B \u001b$BSf\u001b(B \u001b$BSg\u001b(B \u001b$BSh\u001b(B \u001b$BSi\u001b(B \u001b$BSj\u001b(B \u001b$BSk\u001b(B \u001b$BSl\u001b(B \u001b$BSm\u001b(B \u001b$BSn\u001b(B \u001b$BSo\u001b(B\n\u001b$BSp\u001b(B \u001b$BSq\u001b(B \u001b$BSr\u001b(B \u001b$BSs\u001b(B \u001b$BSt\u001b(B \u001b$BSu\u001b(B \u001b$BSv\u001b(B \u001b$BSw\u001b(B \u001b$BSx\u001b(B \u001b$BSy\u001b(B \u001b$BSz\u001b(B \u001b$BS{\u001b(B \u001b$BS|\u001b(B \u001b$BS}\u001b(B \u001b$BS~\u001b(B\n  \u001b$BT!\u001b(B \u001b$BT\"\u001b(B \u001b$BT#\u001b(B \u001b$BT$\u001b(B \u001b$BT%\u001b(B \u001b$BT&\u001b(B \u001b$BT'\u001b(B \u001b$BT(\u001b(B \u001b$BT)\u001b(B \u001b$BT*\u001b(B \u001b$BT+\u001b(B \u001b$BT,\u001b(B \u001b$BT-\u001b(B \u001b$BT.\u001b(B \u001b$BT/\u001b(B\n\u001b$BT0\u001b(B \u001b$BT1\u001b(B \u001b$BT2\u001b(B \u001b$BT3\u001b(B \u001b$BT4\u001b(B \u001b$BT5\u001b(B \u001b$BT6\u001b(B \u001b$BT7\u001b(B \u001b$BT8\u001b(B \u001b$BT9\u001b(B \u001b$BT:\u001b(B \u001b$BT;\u001b(B \u001b$BT<\u001b(B \u001b$BT=\u001b(B \u001b$BT>\u001b(B \u001b$BT?\u001b(B\n\u001b$BT@\u001b(B \u001b$BTA\u001b(B \u001b$BTB\u001b(B \u001b$BTC\u001b(B \u001b$BTD\u001b(B \u001b$BTE\u001b(B \u001b$BTF\u001b(B \u001b$BTG\u001b(B \u001b$BTH\u001b(B \u001b$BTI\u001b(B \u001b$BTJ\u001b(B \u001b$BTK\u001b(B \u001b$BTL\u001b(B \u001b$BTM\u001b(B \u001b$BTN\u001b(B \u001b$BTO\u001b(B\n\u001b$BTP\u001b(B \u001b$BTQ\u001b(B \u001b$BTR\u001b(B \u001b$BTS\u001b(B \u001b$BTT\u001b(B \u001b$BTU\u001b(B \u001b$BTV\u001b(B \u001b$BTW\u001b(B \u001b$BTX\u001b(B \u001b$BTY\u001b(B \u001b$BTZ\u001b(B \u001b$BT[\u001b(B \u001b$BT\\\u001b(B \u001b$BT]\u001b(B \u001b$BT^\u001b(B \u001b$BT_\u001b(B\n\u001b$BT`\u001b(B \u001b$BTa\u001b(B \u001b$BTb\u001b(B \u001b$BTc\u001b(B \u001b$BTd\u001b(B \u001b$BTe\u001b(B \u001b$BTf\u001b(B \u001b$BTg\u001b(B \u001b$BTh\u001b(B \u001b$BTi\u001b(B \u001b$BTj\u001b(B \u001b$BTk\u001b(B \u001b$BTl\u001b(B \u001b$BTm\u001b(B \u001b$BTn\u001b(B \u001b$BTo\u001b(B\n\u001b$BTp\u001b(B \u001b$BTq\u001b(B \u001b$BTr\u001b(B \u001b$BTs\u001b(B \u001b$BTt\u001b(B \u001b$BTu\u001b(B \u001b$BTv\u001b(B \u001b$BTw\u001b(B \u001b$BTx\u001b(B \u001b$BTy\u001b(B \u001b$BTz\u001b(B \u001b$BT{\u001b(B \u001b$BT|\u001b(B \u001b$BT}\u001b(B \u001b$BT~\u001b(B\n  \u001b$BU!\u001b(B \u001b$BU\"\u001b(B \u001b$BU#\u001b(B \u001b$BU$\u001b(B \u001b$BU%\u001b(B \u001b$BU&\u001b(B \u001b$BU'\u001b(B \u001b$BU(\u001b(B \u001b$BU)\u001b(B \u001b$BU*\u001b(B \u001b$BU+\u001b(B \u001b$BU,\u001b(B \u001b$BU-\u001b(B \u001b$BU.\u001b(B \u001b$BU/\u001b(B\n\u001b$BU0\u001b(B \u001b$BU1\u001b(B \u001b$BU2\u001b(B \u001b$BU3\u001b(B \u001b$BU4\u001b(B \u001b$BU5\u001b(B \u001b$BU6\u001b(B \u001b$BU7\u001b(B \u001b$BU8\u001b(B \u001b$BU9\u001b(B \u001b$BU:\u001b(B \u001b$BU;\u001b(B \u001b$BU<\u001b(B \u001b$BU=\u001b(B \u001b$BU>\u001b(B \u001b$BU?\u001b(B\n\u001b$BU@\u001b(B \u001b$BUA\u001b(B \u001b$BUB\u001b(B \u001b$BUC\u001b(B \u001b$BUD\u001b(B \u001b$BUE\u001b(B \u001b$BUF\u001b(B \u001b$BUG\u001b(B \u001b$BUH\u001b(B \u001b$BUI\u001b(B \u001b$BUJ\u001b(B \u001b$BUK\u001b(B \u001b$BUL\u001b(B \u001b$BUM\u001b(B \u001b$BUN\u001b(B \u001b$BUO\u001b(B\n\u001b$BUP\u001b(B \u001b$BUQ\u001b(B \u001b$BUR\u001b(B \u001b$BUS\u001b(B \u001b$BUT\u001b(B \u001b$BUU\u001b(B \u001b$BUV\u001b(B \u001b$BUW\u001b(B \u001b$BUX\u001b(B \u001b$BUY\u001b(B \u001b$BUZ\u001b(B \u001b$BU[\u001b(B \u001b$BU\\\u001b(B \u001b$BU]\u001b(B \u001b$BU^\u001b(B \u001b$BU_\u001b(B\n\u001b$BU`\u001b(B \u001b$BUa\u001b(B \u001b$BUb\u001b(B \u001b$BUc\u001b(B \u001b$BUd\u001b(B \u001b$BUe\u001b(B \u001b$BUf\u001b(B \u001b$BUg\u001b(B \u001b$BUh\u001b(B \u001b$BUi\u001b(B \u001b$BUj\u001b(B \u001b$BUk\u001b(B \u001b$BUl\u001b(B \u001b$BUm\u001b(B \u001b$BUn\u001b(B \u001b$BUo\u001b(B\n\u001b$BUp\u001b(B \u001b$BUq\u001b(B \u001b$BUr\u001b(B \u001b$BUs\u001b(B \u001b$BUt\u001b(B \u001b$BUu\u001b(B \u001b$BUv\u001b(B \u001b$BUw\u001b(B \u001b$BUx\u001b(B \u001b$BUy\u001b(B \u001b$BUz\u001b(B \u001b$BU{\u001b(B \u001b$BU|\u001b(B \u001b$BU}\u001b(B \u001b$BU~\u001b(B\n  \u001b$BV!\u001b(B \u001b$BV\"\u001b(B \u001b$BV#\u001b(B \u001b$BV$\u001b(B \u001b$BV%\u001b(B \u001b$BV&\u001b(B \u001b$BV'\u001b(B \u001b$BV(\u001b(B \u001b$BV)\u001b(B \u001b$BV*\u001b(B \u001b$BV+\u001b(B \u001b$BV,\u001b(B \u001b$BV-\u001b(B \u001b$BV.\u001b(B \u001b$BV/\u001b(B\n\u001b$BV0\u001b(B \u001b$BV1\u001b(B \u001b$BV2\u001b(B \u001b$BV3\u001b(B \u001b$BV4\u001b(B \u001b$BV5\u001b(B \u001b$BV6\u001b(B \u001b$BV7\u001b(B \u001b$BV8\u001b(B \u001b$BV9\u001b(B \u001b$BV:\u001b(B \u001b$BV;\u001b(B \u001b$BV<\u001b(B \u001b$BV=\u001b(B \u001b$BV>\u001b(B \u001b$BV?\u001b(B\n\u001b$BV@\u001b(B \u001b$BVA\u001b(B \u001b$BVB\u001b(B \u001b$BVC\u001b(B \u001b$BVD\u001b(B \u001b$BVE\u001b(B \u001b$BVF\u001b(B \u001b$BVG\u001b(B \u001b$BVH\u001b(B \u001b$BVI\u001b(B \u001b$BVJ\u001b(B \u001b$BVK\u001b(B \u001b$BVL\u001b(B \u001b$BVM\u001b(B \u001b$BVN\u001b(B \u001b$BVO\u001b(B\n\u001b$BVP\u001b(B \u001b$BVQ\u001b(B \u001b$BVR\u001b(B \u001b$BVS\u001b(B \u001b$BVT\u001b(B \u001b$BVU\u001b(B \u001b$BVV\u001b(B \u001b$BVW\u001b(B \u001b$BVX\u001b(B \u001b$BVY\u001b(B \u001b$BVZ\u001b(B \u001b$BV[\u001b(B \u001b$BV\\\u001b(B \u001b$BV]\u001b(B \u001b$BV^\u001b(B \u001b$BV_\u001b(B\n\u001b$BV`\u001b(B \u001b$BVa\u001b(B \u001b$BVb\u001b(B \u001b$BVc\u001b(B \u001b$BVd\u001b(B \u001b$BVe\u001b(B \u001b$BVf\u001b(B \u001b$BVg\u001b(B \u001b$BVh\u001b(B \u001b$BVi\u001b(B \u001b$BVj\u001b(B \u001b$BVk\u001b(B \u001b$BVl\u001b(B \u001b$BVm\u001b(B \u001b$BVn\u001b(B \u001b$BVo\u001b(B\n\u001b$BVp\u001b(B \u001b$BVq\u001b(B \u001b$BVr\u001b(B \u001b$BVs\u001b(B \u001b$BVt\u001b(B \u001b$BVu\u001b(B \u001b$BVv\u001b(B \u001b$BVw\u001b(B \u001b$BVx\u001b(B \u001b$BVy\u001b(B \u001b$BVz\u001b(B \u001b$BV{\u001b(B \u001b$BV|\u001b(B \u001b$BV}\u001b(B \u001b$BV~\u001b(B\n  \u001b$BW!\u001b(B \u001b$BW\"\u001b(B \u001b$BW#\u001b(B \u001b$BW$\u001b(B \u001b$BW%\u001b(B \u001b$BW&\u001b(B \u001b$BW'\u001b(B \u001b$BW(\u001b(B \u001b$BW)\u001b(B \u001b$BW*\u001b(B \u001b$BW+\u001b(B \u001b$BW,\u001b(B \u001b$BW-\u001b(B \u001b$BW.\u001b(B \u001b$BW/\u001b(B\n\u001b$BW0\u001b(B \u001b$BW1\u001b(B \u001b$BW2\u001b(B \u001b$BW3\u001b(B \u001b$BW4\u001b(B \u001b$BW5\u001b(B \u001b$BW6\u001b(B \u001b$BW7\u001b(B \u001b$BW8\u001b(B \u001b$BW9\u001b(B \u001b$BW:\u001b(B \u001b$BW;\u001b(B \u001b$BW<\u001b(B \u001b$BW=\u001b(B \u001b$BW>\u001b(B \u001b$BW?\u001b(B\n\u001b$BW@\u001b(B \u001b$BWA\u001b(B \u001b$BWB\u001b(B \u001b$BWC\u001b(B \u001b$BWD\u001b(B \u001b$BWE\u001b(B \u001b$BWF\u001b(B \u001b$BWG\u001b(B \u001b$BWH\u001b(B \u001b$BWI\u001b(B \u001b$BWJ\u001b(B \u001b$BWK\u001b(B \u001b$BWL\u001b(B \u001b$BWM\u001b(B \u001b$BWN\u001b(B \u001b$BWO\u001b(B\n\u001b$BWP\u001b(B \u001b$BWQ\u001b(B \u001b$BWR\u001b(B \u001b$BWS\u001b(B \u001b$BWT\u001b(B \u001b$BWU\u001b(B \u001b$BWV\u001b(B \u001b$BWW\u001b(B \u001b$BWX\u001b(B \u001b$BWY\u001b(B \u001b$BWZ\u001b(B \u001b$BW[\u001b(B \u001b$BW\\\u001b(B \u001b$BW]\u001b(B \u001b$BW^\u001b(B \u001b$BW_\u001b(B\n\u001b$BW`\u001b(B \u001b$BWa\u001b(B \u001b$BWb\u001b(B \u001b$BWc\u001b(B \u001b$BWd\u001b(B \u001b$BWe\u001b(B \u001b$BWf\u001b(B \u001b$BWg\u001b(B \u001b$BWh\u001b(B \u001b$BWi\u001b(B \u001b$BWj\u001b(B \u001b$BWk\u001b(B \u001b$BWl\u001b(B \u001b$BWm\u001b(B \u001b$BWn\u001b(B \u001b$BWo\u001b(B\n\u001b$BWp\u001b(B \u001b$BWq\u001b(B \u001b$BWr\u001b(B \u001b$BWs\u001b(B \u001b$BWt\u001b(B \u001b$BWu\u001b(B \u001b$BWv\u001b(B \u001b$BWw\u001b(B \u001b$BWx\u001b(B \u001b$BWy\u001b(B \u001b$BWz\u001b(B \u001b$BW{\u001b(B \u001b$BW|\u001b(B \u001b$BW}\u001b(B \u001b$BW~\u001b(B\n  \u001b$BX!\u001b(B \u001b$BX\"\u001b(B \u001b$BX#\u001b(B \u001b$BX$\u001b(B \u001b$BX%\u001b(B \u001b$BX&\u001b(B \u001b$BX'\u001b(B \u001b$BX(\u001b(B \u001b$BX)\u001b(B \u001b$BX*\u001b(B \u001b$BX+\u001b(B \u001b$BX,\u001b(B \u001b$BX-\u001b(B \u001b$BX.\u001b(B \u001b$BX/\u001b(B\n\u001b$BX0\u001b(B \u001b$BX1\u001b(B \u001b$BX2\u001b(B \u001b$BX3\u001b(B \u001b$BX4\u001b(B \u001b$BX5\u001b(B \u001b$BX6\u001b(B \u001b$BX7\u001b(B \u001b$BX8\u001b(B \u001b$BX9\u001b(B \u001b$BX:\u001b(B \u001b$BX;\u001b(B \u001b$BX<\u001b(B \u001b$BX=\u001b(B \u001b$BX>\u001b(B \u001b$BX?\u001b(B\n\u001b$BX@\u001b(B \u001b$BXA\u001b(B \u001b$BXB\u001b(B \u001b$BXC\u001b(B \u001b$BXD\u001b(B \u001b$BXE\u001b(B \u001b$BXF\u001b(B \u001b$BXG\u001b(B \u001b$BXH\u001b(B \u001b$BXI\u001b(B \u001b$BXJ\u001b(B \u001b$BXK\u001b(B \u001b$BXL\u001b(B \u001b$BXM\u001b(B \u001b$BXN\u001b(B \u001b$BXO\u001b(B\n\u001b$BXP\u001b(B \u001b$BXQ\u001b(B \u001b$BXR\u001b(B \u001b$BXS\u001b(B \u001b$BXT\u001b(B \u001b$BXU\u001b(B \u001b$BXV\u001b(B \u001b$BXW\u001b(B \u001b$BXX\u001b(B \u001b$BXY\u001b(B \u001b$BXZ\u001b(B \u001b$BX[\u001b(B \u001b$BX\\\u001b(B \u001b$BX]\u001b(B \u001b$BX^\u001b(B \u001b$BX_\u001b(B\n\u001b$BX`\u001b(B \u001b$BXa\u001b(B \u001b$BXb\u001b(B \u001b$BXc\u001b(B \u001b$BXd\u001b(B \u001b$BXe\u001b(B \u001b$BXf\u001b(B \u001b$BXg\u001b(B \u001b$BXh\u001b(B \u001b$BXi\u001b(B \u001b$BXj\u001b(B \u001b$BXk\u001b(B \u001b$BXl\u001b(B \u001b$BXm\u001b(B \u001b$BXn\u001b(B \u001b$BXo\u001b(B\n\u001b$BXp\u001b(B \u001b$BXq\u001b(B \u001b$BXr\u001b(B \u001b$BXs\u001b(B \u001b$BXt\u001b(B \u001b$BXu\u001b(B \u001b$BXv\u001b(B \u001b$BXw\u001b(B \u001b$BXx\u001b(B \u001b$BXy\u001b(B \u001b$BXz\u001b(B \u001b$BX{\u001b(B \u001b$BX|\u001b(B \u001b$BX}\u001b(B \u001b$BX~\u001b(B\n  \u001b$BY!\u001b(B \u001b$BY\"\u001b(B \u001b$BY#\u001b(B \u001b$BY$\u001b(B \u001b$BY%\u001b(B \u001b$BY&\u001b(B \u001b$BY'\u001b(B \u001b$BY(\u001b(B \u001b$BY)\u001b(B \u001b$BY*\u001b(B \u001b$BY+\u001b(B \u001b$BY,\u001b(B \u001b$BY-\u001b(B \u001b$BY.\u001b(B \u001b$BY/\u001b(B\n\u001b$BY0\u001b(B \u001b$BY1\u001b(B \u001b$BY2\u001b(B \u001b$BY3\u001b(B \u001b$BY4\u001b(B \u001b$BY5\u001b(B \u001b$BY6\u001b(B \u001b$BY7\u001b(B \u001b$BY8\u001b(B \u001b$BY9\u001b(B \u001b$BY:\u001b(B \u001b$BY;\u001b(B \u001b$BY<\u001b(B \u001b$BY=\u001b(B \u001b$BY>\u001b(B \u001b$BY?\u001b(B\n\u001b$BY@\u001b(B \u001b$BYA\u001b(B \u001b$BYB\u001b(B \u001b$BYC\u001b(B \u001b$BYD\u001b(B \u001b$BYE\u001b(B \u001b$BYF\u001b(B \u001b$BYG\u001b(B \u001b$BYH\u001b(B \u001b$BYI\u001b(B \u001b$BYJ\u001b(B \u001b$BYK\u001b(B \u001b$BYL\u001b(B \u001b$BYM\u001b(B \u001b$BYN\u001b(B \u001b$BYO\u001b(B\n\u001b$BYP\u001b(B \u001b$BYQ\u001b(B \u001b$BYR\u001b(B \u001b$BYS\u001b(B \u001b$BYT\u001b(B \u001b$BYU\u001b(B \u001b$BYV\u001b(B \u001b$BYW\u001b(B \u001b$BYX\u001b(B \u001b$BYY\u001b(B \u001b$BYZ\u001b(B \u001b$BY[\u001b(B \u001b$BY\\\u001b(B \u001b$BY]\u001b(B \u001b$BY^\u001b(B \u001b$BY_\u001b(B\n\u001b$BY`\u001b(B \u001b$BYa\u001b(B \u001b$BYb\u001b(B \u001b$BYc\u001b(B \u001b$BYd\u001b(B \u001b$BYe\u001b(B \u001b$BYf\u001b(B \u001b$BYg\u001b(B \u001b$BYh\u001b(B \u001b$BYi\u001b(B \u001b$BYj\u001b(B \u001b$BYk\u001b(B \u001b$BYl\u001b(B \u001b$BYm\u001b(B \u001b$BYn\u001b(B \u001b$BYo\u001b(B\n\u001b$BYp\u001b(B \u001b$BYq\u001b(B \u001b$BYr\u001b(B \u001b$BYs\u001b(B \u001b$BYt\u001b(B \u001b$BYu\u001b(B \u001b$BYv\u001b(B \u001b$BYw\u001b(B \u001b$BYx\u001b(B \u001b$BYy\u001b(B \u001b$BYz\u001b(B \u001b$BY{\u001b(B \u001b$BY|\u001b(B \u001b$BY}\u001b(B \u001b$BY~\u001b(B\n  \u001b$BZ!\u001b(B \u001b$BZ\"\u001b(B \u001b$BZ#\u001b(B \u001b$BZ$\u001b(B \u001b$BZ%\u001b(B \u001b$BZ&\u001b(B \u001b$BZ'\u001b(B \u001b$BZ(\u001b(B \u001b$BZ)\u001b(B \u001b$BZ*\u001b(B \u001b$BZ+\u001b(B \u001b$BZ,\u001b(B \u001b$BZ-\u001b(B \u001b$BZ.\u001b(B \u001b$BZ/\u001b(B\n\u001b$BZ0\u001b(B \u001b$BZ1\u001b(B \u001b$BZ2\u001b(B \u001b$BZ3\u001b(B \u001b$BZ4\u001b(B \u001b$BZ5\u001b(B \u001b$BZ6\u001b(B \u001b$BZ7\u001b(B \u001b$BZ8\u001b(B \u001b$BZ9\u001b(B \u001b$BZ:\u001b(B \u001b$BZ;\u001b(B \u001b$BZ<\u001b(B \u001b$BZ=\u001b(B \u001b$BZ>\u001b(B \u001b$BZ?\u001b(B\n\u001b$BZ@\u001b(B \u001b$BZA\u001b(B \u001b$BZB\u001b(B \u001b$BZC\u001b(B \u001b$BZD\u001b(B \u001b$BZE\u001b(B \u001b$BZF\u001b(B \u001b$BZG\u001b(B \u001b$BZH\u001b(B \u001b$BZI\u001b(B \u001b$BZJ\u001b(B \u001b$BZK\u001b(B \u001b$BZL\u001b(B \u001b$BZM\u001b(B \u001b$BZN\u001b(B \u001b$BZO\u001b(B\n\u001b$BZP\u001b(B \u001b$BZQ\u001b(B \u001b$BZR\u001b(B \u001b$BZS\u001b(B \u001b$BZT\u001b(B \u001b$BZU\u001b(B \u001b$BZV\u001b(B \u001b$BZW\u001b(B \u001b$BZX\u001b(B \u001b$BZY\u001b(B \u001b$BZZ\u001b(B \u001b$BZ[\u001b(B \u001b$BZ\\\u001b(B \u001b$BZ]\u001b(B \u001b$BZ^\u001b(B \u001b$BZ_\u001b(B\n\u001b$BZ`\u001b(B \u001b$BZa\u001b(B \u001b$BZb\u001b(B \u001b$BZc\u001b(B \u001b$BZd\u001b(B \u001b$BZe\u001b(B \u001b$BZf\u001b(B \u001b$BZg\u001b(B \u001b$BZh\u001b(B \u001b$BZi\u001b(B \u001b$BZj\u001b(B \u001b$BZk\u001b(B \u001b$BZl\u001b(B \u001b$BZm\u001b(B \u001b$BZn\u001b(B \u001b$BZo\u001b(B\n\u001b$BZp\u001b(B \u001b$BZq\u001b(B \u001b$BZr\u001b(B \u001b$BZs\u001b(B \u001b$BZt\u001b(B \u001b$BZu\u001b(B \u001b$BZv\u001b(B \u001b$BZw\u001b(B \u001b$BZx\u001b(B \u001b$BZy\u001b(B \u001b$BZz\u001b(B \u001b$BZ{\u001b(B \u001b$BZ|\u001b(B \u001b$BZ}\u001b(B \u001b$BZ~\u001b(B\n  \u001b$B[!\u001b(B \u001b$B[\"\u001b(B \u001b$B[#\u001b(B \u001b$B[$\u001b(B \u001b$B[%\u001b(B \u001b$B[&\u001b(B \u001b$B['\u001b(B \u001b$B[(\u001b(B \u001b$B[)\u001b(B \u001b$B[*\u001b(B \u001b$B[+\u001b(B \u001b$B[,\u001b(B \u001b$B[-\u001b(B \u001b$B[.\u001b(B \u001b$B[/\u001b(B\n\u001b$B[0\u001b(B \u001b$B[1\u001b(B \u001b$B[2\u001b(B \u001b$B[3\u001b(B \u001b$B[4\u001b(B \u001b$B[5\u001b(B \u001b$B[6\u001b(B \u001b$B[7\u001b(B \u001b$B[8\u001b(B \u001b$B[9\u001b(B \u001b$B[:\u001b(B \u001b$B[;\u001b(B \u001b$B[<\u001b(B \u001b$B[=\u001b(B \u001b$B[>\u001b(B \u001b$B[?\u001b(B\n\u001b$B[@\u001b(B \u001b$B[A\u001b(B \u001b$B[B\u001b(B \u001b$B[C\u001b(B \u001b$B[D\u001b(B \u001b$B[E\u001b(B \u001b$B[F\u001b(B \u001b$B[G\u001b(B \u001b$B[H\u001b(B \u001b$B[I\u001b(B \u001b$B[J\u001b(B \u001b$B[K\u001b(B \u001b$B[L\u001b(B \u001b$B[M\u001b(B \u001b$B[N\u001b(B \u001b$B[O\u001b(B\n\u001b$B[P\u001b(B \u001b$B[Q\u001b(B \u001b$B[R\u001b(B \u001b$B[S\u001b(B \u001b$B[T\u001b(B \u001b$B[U\u001b(B \u001b$B[V\u001b(B \u001b$B[W\u001b(B \u001b$B[X\u001b(B \u001b$B[Y\u001b(B \u001b$B[Z\u001b(B \u001b$B[[\u001b(B \u001b$B[\\\u001b(B \u001b$B[]\u001b(B \u001b$B[^\u001b(B \u001b$B[_\u001b(B\n\u001b$B[`\u001b(B \u001b$B[a\u001b(B \u001b$B[b\u001b(B \u001b$B[c\u001b(B \u001b$B[d\u001b(B \u001b$B[e\u001b(B \u001b$B[f\u001b(B \u001b$B[g\u001b(B \u001b$B[h\u001b(B \u001b$B[i\u001b(B \u001b$B[j\u001b(B \u001b$B[k\u001b(B \u001b$B[l\u001b(B \u001b$B[m\u001b(B \u001b$B[n\u001b(B \u001b$B[o\u001b(B\n\u001b$B[p\u001b(B \u001b$B[q\u001b(B \u001b$B[r\u001b(B \u001b$B[s\u001b(B \u001b$B[t\u001b(B \u001b$B[u\u001b(B \u001b$B[v\u001b(B \u001b$B[w\u001b(B \u001b$B[x\u001b(B \u001b$B[y\u001b(B \u001b$B[z\u001b(B \u001b$B[{\u001b(B \u001b$B[|\u001b(B \u001b$B[}\u001b(B \u001b$B[~\u001b(B\n  \u001b$B\\!\u001b(B \u001b$B\\\"\u001b(B \u001b$B\\#\u001b(B \u001b$B\\$\u001b(B \u001b$B\\%\u001b(B \u001b$B\\&\u001b(B \u001b$B\\'\u001b(B \u001b$B\\(\u001b(B \u001b$B\\)\u001b(B \u001b$B\\*\u001b(B \u001b$B\\+\u001b(B \u001b$B\\,\u001b(B \u001b$B\\-\u001b(B \u001b$B\\.\u001b(B \u001b$B\\/\u001b(B\n\u001b$B\\0\u001b(B \u001b$B\\1\u001b(B \u001b$B\\2\u001b(B \u001b$B\\3\u001b(B \u001b$B\\4\u001b(B \u001b$B\\5\u001b(B \u001b$B\\6\u001b(B \u001b$B\\7\u001b(B \u001b$B\\8\u001b(B \u001b$B\\9\u001b(B \u001b$B\\:\u001b(B \u001b$B\\;\u001b(B \u001b$B\\<\u001b(B \u001b$B\\=\u001b(B \u001b$B\\>\u001b(B \u001b$B\\?\u001b(B\n\u001b$B\\@\u001b(B \u001b$B\\A\u001b(B \u001b$B\\B\u001b(B \u001b$B\\C\u001b(B \u001b$B\\D\u001b(B \u001b$B\\E\u001b(B \u001b$B\\F\u001b(B \u001b$B\\G\u001b(B \u001b$B\\H\u001b(B \u001b$B\\I\u001b(B \u001b$B\\J\u001b(B \u001b$B\\K\u001b(B \u001b$B\\L\u001b(B \u001b$B\\M\u001b(B \u001b$B\\N\u001b(B \u001b$B\\O\u001b(B\n\u001b$B\\P\u001b(B \u001b$B\\Q\u001b(B \u001b$B\\R\u001b(B \u001b$B\\S\u001b(B \u001b$B\\T\u001b(B \u001b$B\\U\u001b(B \u001b$B\\V\u001b(B \u001b$B\\W\u001b(B \u001b$B\\X\u001b(B \u001b$B\\Y\u001b(B \u001b$B\\Z\u001b(B \u001b$B\\[\u001b(B \u001b$B\\\\\u001b(B \u001b$B\\]\u001b(B \u001b$B\\^\u001b(B \u001b$B\\_\u001b(B\n\u001b$B\\`\u001b(B \u001b$B\\a\u001b(B \u001b$B\\b\u001b(B \u001b$B\\c\u001b(B \u001b$B\\d\u001b(B \u001b$B\\e\u001b(B \u001b$B\\f\u001b(B \u001b$B\\g\u001b(B \u001b$B\\h\u001b(B \u001b$B\\i\u001b(B \u001b$B\\j\u001b(B \u001b$B\\k\u001b(B \u001b$B\\l\u001b(B \u001b$B\\m\u001b(B \u001b$B\\n\u001b(B \u001b$B\\o\u001b(B\n\u001b$B\\p\u001b(B \u001b$B\\q\u001b(B \u001b$B\\r\u001b(B \u001b$B\\s\u001b(B \u001b$B\\t\u001b(B \u001b$B\\u\u001b(B \u001b$B\\v\u001b(B \u001b$B\\w\u001b(B \u001b$B\\x\u001b(B \u001b$B\\y\u001b(B \u001b$B\\z\u001b(B \u001b$B\\{\u001b(B \u001b$B\\|\u001b(B \u001b$B\\}\u001b(B \u001b$B\\~\u001b(B\n  \u001b$B]!\u001b(B \u001b$B]\"\u001b(B \u001b$B]#\u001b(B \u001b$B]$\u001b(B \u001b$B]%\u001b(B \u001b$B]&\u001b(B \u001b$B]'\u001b(B \u001b$B](\u001b(B \u001b$B])\u001b(B \u001b$B]*\u001b(B \u001b$B]+\u001b(B \u001b$B],\u001b(B \u001b$B]-\u001b(B \u001b$B].\u001b(B \u001b$B]/\u001b(B\n\u001b$B]0\u001b(B \u001b$B]1\u001b(B \u001b$B]2\u001b(B \u001b$B]3\u001b(B \u001b$B]4\u001b(B \u001b$B]5\u001b(B \u001b$B]6\u001b(B \u001b$B]7\u001b(B \u001b$B]8\u001b(B \u001b$B]9\u001b(B \u001b$B]:\u001b(B \u001b$B];\u001b(B \u001b$B]<\u001b(B \u001b$B]=\u001b(B \u001b$B]>\u001b(B \u001b$B]?\u001b(B\n\u001b$B]@\u001b(B \u001b$B]A\u001b(B \u001b$B]B\u001b(B \u001b$B]C\u001b(B \u001b$B]D\u001b(B \u001b$B]E\u001b(B \u001b$B]F\u001b(B \u001b$B]G\u001b(B \u001b$B]H\u001b(B \u001b$B]I\u001b(B \u001b$B]J\u001b(B \u001b$B]K\u001b(B \u001b$B]L\u001b(B \u001b$B]M\u001b(B \u001b$B]N\u001b(B \u001b$B]O\u001b(B\n\u001b$B]P\u001b(B \u001b$B]Q\u001b(B \u001b$B]R\u001b(B \u001b$B]S\u001b(B \u001b$B]T\u001b(B \u001b$B]U\u001b(B \u001b$B]V\u001b(B \u001b$B]W\u001b(B \u001b$B]X\u001b(B \u001b$B]Y\u001b(B \u001b$B]Z\u001b(B \u001b$B][\u001b(B \u001b$B]\\\u001b(B \u001b$B]]\u001b(B \u001b$B]^\u001b(B \u001b$B]_\u001b(B\n\u001b$B]`\u001b(B \u001b$B]a\u001b(B \u001b$B]b\u001b(B \u001b$B]c\u001b(B \u001b$B]d\u001b(B \u001b$B]e\u001b(B \u001b$B]f\u001b(B \u001b$B]g\u001b(B \u001b$B]h\u001b(B \u001b$B]i\u001b(B \u001b$B]j\u001b(B \u001b$B]k\u001b(B \u001b$B]l\u001b(B \u001b$B]m\u001b(B \u001b$B]n\u001b(B \u001b$B]o\u001b(B\n\u001b$B]p\u001b(B \u001b$B]q\u001b(B \u001b$B]r\u001b(B \u001b$B]s\u001b(B \u001b$B]t\u001b(B \u001b$B]u\u001b(B \u001b$B]v\u001b(B \u001b$B]w\u001b(B \u001b$B]x\u001b(B \u001b$B]y\u001b(B \u001b$B]z\u001b(B \u001b$B]{\u001b(B \u001b$B]|\u001b(B \u001b$B]}\u001b(B \u001b$B]~\u001b(B\n  \u001b$B^!\u001b(B \u001b$B^\"\u001b(B \u001b$B^#\u001b(B \u001b$B^$\u001b(B \u001b$B^%\u001b(B \u001b$B^&\u001b(B \u001b$B^'\u001b(B \u001b$B^(\u001b(B \u001b$B^)\u001b(B \u001b$B^*\u001b(B \u001b$B^+\u001b(B \u001b$B^,\u001b(B \u001b$B^-\u001b(B \u001b$B^.\u001b(B \u001b$B^/\u001b(B\n\u001b$B^0\u001b(B \u001b$B^1\u001b(B \u001b$B^2\u001b(B \u001b$B^3\u001b(B \u001b$B^4\u001b(B \u001b$B^5\u001b(B \u001b$B^6\u001b(B \u001b$B^7\u001b(B \u001b$B^8\u001b(B \u001b$B^9\u001b(B \u001b$B^:\u001b(B \u001b$B^;\u001b(B \u001b$B^<\u001b(B \u001b$B^=\u001b(B \u001b$B^>\u001b(B \u001b$B^?\u001b(B\n\u001b$B^@\u001b(B \u001b$B^A\u001b(B \u001b$B^B\u001b(B \u001b$B^C\u001b(B \u001b$B^D\u001b(B \u001b$B^E\u001b(B \u001b$B^F\u001b(B \u001b$B^G\u001b(B \u001b$B^H\u001b(B \u001b$B^I\u001b(B \u001b$B^J\u001b(B \u001b$B^K\u001b(B \u001b$B^L\u001b(B \u001b$B^M\u001b(B \u001b$B^N\u001b(B \u001b$B^O\u001b(B\n\u001b$B^P\u001b(B \u001b$B^Q\u001b(B \u001b$B^R\u001b(B \u001b$B^S\u001b(B \u001b$B^T\u001b(B \u001b$B^U\u001b(B \u001b$B^V\u001b(B \u001b$B^W\u001b(B \u001b$B^X\u001b(B \u001b$B^Y\u001b(B \u001b$B^Z\u001b(B \u001b$B^[\u001b(B \u001b$B^\\\u001b(B \u001b$B^]\u001b(B \u001b$B^^\u001b(B \u001b$B^_\u001b(B\n\u001b$B^`\u001b(B \u001b$B^a\u001b(B \u001b$B^b\u001b(B \u001b$B^c\u001b(B \u001b$B^d\u001b(B \u001b$B^e\u001b(B \u001b$B^f\u001b(B \u001b$B^g\u001b(B \u001b$B^h\u001b(B \u001b$B^i\u001b(B \u001b$B^j\u001b(B \u001b$B^k\u001b(B \u001b$B^l\u001b(B \u001b$B^m\u001b(B \u001b$B^n\u001b(B \u001b$B^o\u001b(B\n\u001b$B^p\u001b(B \u001b$B^q\u001b(B \u001b$B^r\u001b(B \u001b$B^s\u001b(B \u001b$B^t\u001b(B \u001b$B^u\u001b(B \u001b$B^v\u001b(B \u001b$B^w\u001b(B \u001b$B^x\u001b(B \u001b$B^y\u001b(B \u001b$B^z\u001b(B \u001b$B^{\u001b(B \u001b$B^|\u001b(B \u001b$B^}\u001b(B \u001b$B^~\u001b(B\n  \u001b$B_!\u001b(B \u001b$B_\"\u001b(B \u001b$B_#\u001b(B \u001b$B_$\u001b(B \u001b$B_%\u001b(B \u001b$B_&\u001b(B \u001b$B_'\u001b(B \u001b$B_(\u001b(B \u001b$B_)\u001b(B \u001b$B_*\u001b(B \u001b$B_+\u001b(B \u001b$B_,\u001b(B \u001b$B_-\u001b(B \u001b$B_.\u001b(B \u001b$B_/\u001b(B\n\u001b$B_0\u001b(B \u001b$B_1\u001b(B \u001b$B_2\u001b(B \u001b$B_3\u001b(B \u001b$B_4\u001b(B \u001b$B_5\u001b(B \u001b$B_6\u001b(B \u001b$B_7\u001b(B \u001b$B_8\u001b(B \u001b$B_9\u001b(B \u001b$B_:\u001b(B \u001b$B_;\u001b(B \u001b$B_<\u001b(B \u001b$B_=\u001b(B \u001b$B_>\u001b(B \u001b$B_?\u001b(B\n\u001b$B_@\u001b(B \u001b$B_A\u001b(B \u001b$B_B\u001b(B \u001b$B_C\u001b(B \u001b$B_D\u001b(B \u001b$B_E\u001b(B \u001b$B_F\u001b(B \u001b$B_G\u001b(B \u001b$B_H\u001b(B \u001b$B_I\u001b(B \u001b$B_J\u001b(B \u001b$B_K\u001b(B \u001b$B_L\u001b(B \u001b$B_M\u001b(B \u001b$B_N\u001b(B \u001b$B_O\u001b(B\n\u001b$B_P\u001b(B \u001b$B_Q\u001b(B \u001b$B_R\u001b(B \u001b$B_S\u001b(B \u001b$B_T\u001b(B \u001b$B_U\u001b(B \u001b$B_V\u001b(B \u001b$B_W\u001b(B \u001b$B_X\u001b(B \u001b$B_Y\u001b(B \u001b$B_Z\u001b(B \u001b$B_[\u001b(B \u001b$B_\\\u001b(B \u001b$B_]\u001b(B \u001b$B_^\u001b(B \u001b$B__\u001b(B\n\u001b$B_`\u001b(B \u001b$B_a\u001b(B \u001b$B_b\u001b(B \u001b$B_c\u001b(B \u001b$B_d\u001b(B \u001b$B_e\u001b(B \u001b$B_f\u001b(B \u001b$B_g\u001b(B \u001b$B_h\u001b(B \u001b$B_i\u001b(B \u001b$B_j\u001b(B \u001b$B_k\u001b(B \u001b$B_l\u001b(B \u001b$B_m\u001b(B \u001b$B_n\u001b(B \u001b$B_o\u001b(B\n\u001b$B_p\u001b(B \u001b$B_q\u001b(B \u001b$B_r\u001b(B \u001b$B_s\u001b(B \u001b$B_t\u001b(B \u001b$B_u\u001b(B \u001b$B_v\u001b(B \u001b$B_w\u001b(B \u001b$B_x\u001b(B \u001b$B_y\u001b(B \u001b$B_z\u001b(B \u001b$B_{\u001b(B \u001b$B_|\u001b(B \u001b$B_}\u001b(B \u001b$B_~\u001b(B\n  \u001b$B`!\u001b(B \u001b$B`\"\u001b(B \u001b$B`#\u001b(B \u001b$B`$\u001b(B \u001b$B`%\u001b(B \u001b$B`&\u001b(B \u001b$B`'\u001b(B \u001b$B`(\u001b(B \u001b$B`)\u001b(B \u001b$B`*\u001b(B \u001b$B`+\u001b(B \u001b$B`,\u001b(B \u001b$B`-\u001b(B \u001b$B`.\u001b(B \u001b$B`/\u001b(B\n\u001b$B`0\u001b(B \u001b$B`1\u001b(B \u001b$B`2\u001b(B \u001b$B`3\u001b(B \u001b$B`4\u001b(B \u001b$B`5\u001b(B \u001b$B`6\u001b(B \u001b$B`7\u001b(B \u001b$B`8\u001b(B \u001b$B`9\u001b(B \u001b$B`:\u001b(B \u001b$B`;\u001b(B \u001b$B`<\u001b(B \u001b$B`=\u001b(B \u001b$B`>\u001b(B \u001b$B`?\u001b(B\n\u001b$B`@\u001b(B \u001b$B`A\u001b(B \u001b$B`B\u001b(B \u001b$B`C\u001b(B \u001b$B`D\u001b(B \u001b$B`E\u001b(B \u001b$B`F\u001b(B \u001b$B`G\u001b(B \u001b$B`H\u001b(B \u001b$B`I\u001b(B \u001b$B`J\u001b(B \u001b$B`K\u001b(B \u001b$B`L\u001b(B \u001b$B`M\u001b(B \u001b$B`N\u001b(B \u001b$B`O\u001b(B\n\u001b$B`P\u001b(B \u001b$B`Q\u001b(B \u001b$B`R\u001b(B \u001b$B`S\u001b(B \u001b$B`T\u001b(B \u001b$B`U\u001b(B \u001b$B`V\u001b(B \u001b$B`W\u001b(B \u001b$B`X\u001b(B \u001b$B`Y\u001b(B \u001b$B`Z\u001b(B \u001b$B`[\u001b(B \u001b$B`\\\u001b(B \u001b$B`]\u001b(B \u001b$B`^\u001b(B \u001b$B`_\u001b(B\n\u001b$B``\u001b(B \u001b$B`a\u001b(B \u001b$B`b\u001b(B \u001b$B`c\u001b(B \u001b$B`d\u001b(B \u001b$B`e\u001b(B \u001b$B`f\u001b(B \u001b$B`g\u001b(B \u001b$B`h\u001b(B \u001b$B`i\u001b(B \u001b$B`j\u001b(B \u001b$B`k\u001b(B \u001b$B`l\u001b(B \u001b$B`m\u001b(B \u001b$B`n\u001b(B \u001b$B`o\u001b(B\n\u001b$B`p\u001b(B \u001b$B`q\u001b(B \u001b$B`r\u001b(B \u001b$B`s\u001b(B \u001b$B`t\u001b(B \u001b$B`u\u001b(B \u001b$B`v\u001b(B \u001b$B`w\u001b(B \u001b$B`x\u001b(B \u001b$B`y\u001b(B \u001b$B`z\u001b(B \u001b$B`{\u001b(B \u001b$B`|\u001b(B \u001b$B`}\u001b(B \u001b$B`~\u001b(B\n  \u001b$Ba!\u001b(B \u001b$Ba\"\u001b(B \u001b$Ba#\u001b(B \u001b$Ba$\u001b(B \u001b$Ba%\u001b(B \u001b$Ba&\u001b(B \u001b$Ba'\u001b(B \u001b$Ba(\u001b(B \u001b$Ba)\u001b(B \u001b$Ba*\u001b(B \u001b$Ba+\u001b(B \u001b$Ba,\u001b(B \u001b$Ba-\u001b(B \u001b$Ba.\u001b(B \u001b$Ba/\u001b(B\n\u001b$Ba0\u001b(B \u001b$Ba1\u001b(B \u001b$Ba2\u001b(B \u001b$Ba3\u001b(B \u001b$Ba4\u001b(B \u001b$Ba5\u001b(B \u001b$Ba6\u001b(B \u001b$Ba7\u001b(B \u001b$Ba8\u001b(B \u001b$Ba9\u001b(B \u001b$Ba:\u001b(B \u001b$Ba;\u001b(B \u001b$Ba<\u001b(B \u001b$Ba=\u001b(B \u001b$Ba>\u001b(B \u001b$Ba?\u001b(B\n\u001b$Ba@\u001b(B \u001b$BaA\u001b(B \u001b$BaB\u001b(B \u001b$BaC\u001b(B \u001b$BaD\u001b(B \u001b$BaE\u001b(B \u001b$BaF\u001b(B \u001b$BaG\u001b(B \u001b$BaH\u001b(B \u001b$BaI\u001b(B \u001b$BaJ\u001b(B \u001b$BaK\u001b(B \u001b$BaL\u001b(B \u001b$BaM\u001b(B \u001b$BaN\u001b(B \u001b$BaO\u001b(B\n\u001b$BaP\u001b(B \u001b$BaQ\u001b(B \u001b$BaR\u001b(B \u001b$BaS\u001b(B \u001b$BaT\u001b(B \u001b$BaU\u001b(B \u001b$BaV\u001b(B \u001b$BaW\u001b(B \u001b$BaX\u001b(B \u001b$BaY\u001b(B \u001b$BaZ\u001b(B \u001b$Ba[\u001b(B \u001b$Ba\\\u001b(B \u001b$Ba]\u001b(B \u001b$Ba^\u001b(B \u001b$Ba_\u001b(B\n\u001b$Ba`\u001b(B \u001b$Baa\u001b(B \u001b$Bab\u001b(B \u001b$Bac\u001b(B \u001b$Bad\u001b(B \u001b$Bae\u001b(B \u001b$Baf\u001b(B \u001b$Bag\u001b(B \u001b$Bah\u001b(B \u001b$Bai\u001b(B \u001b$Baj\u001b(B \u001b$Bak\u001b(B \u001b$Bal\u001b(B \u001b$Bam\u001b(B \u001b$Ban\u001b(B \u001b$Bao\u001b(B\n\u001b$Bap\u001b(B \u001b$Baq\u001b(B \u001b$Bar\u001b(B \u001b$Bas\u001b(B \u001b$Bat\u001b(B \u001b$Bau\u001b(B \u001b$Bav\u001b(B \u001b$Baw\u001b(B \u001b$Bax\u001b(B \u001b$Bay\u001b(B \u001b$Baz\u001b(B \u001b$Ba{\u001b(B \u001b$Ba|\u001b(B \u001b$Ba}\u001b(B \u001b$Ba~\u001b(B\n  \u001b$Bb!\u001b(B \u001b$Bb\"\u001b(B \u001b$Bb#\u001b(B \u001b$Bb$\u001b(B \u001b$Bb%\u001b(B \u001b$Bb&\u001b(B \u001b$Bb'\u001b(B \u001b$Bb(\u001b(B \u001b$Bb)\u001b(B \u001b$Bb*\u001b(B \u001b$Bb+\u001b(B \u001b$Bb,\u001b(B \u001b$Bb-\u001b(B \u001b$Bb.\u001b(B \u001b$Bb/\u001b(B\n\u001b$Bb0\u001b(B \u001b$Bb1\u001b(B \u001b$Bb2\u001b(B \u001b$Bb3\u001b(B \u001b$Bb4\u001b(B \u001b$Bb5\u001b(B \u001b$Bb6\u001b(B \u001b$Bb7\u001b(B \u001b$Bb8\u001b(B \u001b$Bb9\u001b(B \u001b$Bb:\u001b(B \u001b$Bb;\u001b(B \u001b$Bb<\u001b(B \u001b$Bb=\u001b(B \u001b$Bb>\u001b(B \u001b$Bb?\u001b(B\n\u001b$Bb@\u001b(B \u001b$BbA\u001b(B \u001b$BbB\u001b(B \u001b$BbC\u001b(B \u001b$BbD\u001b(B \u001b$BbE\u001b(B \u001b$BbF\u001b(B \u001b$BbG\u001b(B \u001b$BbH\u001b(B \u001b$BbI\u001b(B \u001b$BbJ\u001b(B \u001b$BbK\u001b(B \u001b$BbL\u001b(B \u001b$BbM\u001b(B \u001b$BbN\u001b(B \u001b$BbO\u001b(B\n\u001b$BbP\u001b(B \u001b$BbQ\u001b(B \u001b$BbR\u001b(B \u001b$BbS\u001b(B \u001b$BbT\u001b(B \u001b$BbU\u001b(B \u001b$BbV\u001b(B \u001b$BbW\u001b(B \u001b$BbX\u001b(B \u001b$BbY\u001b(B \u001b$BbZ\u001b(B \u001b$Bb[\u001b(B \u001b$Bb\\\u001b(B \u001b$Bb]\u001b(B \u001b$Bb^\u001b(B \u001b$Bb_\u001b(B\n\u001b$Bb`\u001b(B \u001b$Bba\u001b(B \u001b$Bbb\u001b(B \u001b$Bbc\u001b(B \u001b$Bbd\u001b(B \u001b$Bbe\u001b(B \u001b$Bbf\u001b(B \u001b$Bbg\u001b(B \u001b$Bbh\u001b(B \u001b$Bbi\u001b(B \u001b$Bbj\u001b(B \u001b$Bbk\u001b(B \u001b$Bbl\u001b(B \u001b$Bbm\u001b(B \u001b$Bbn\u001b(B \u001b$Bbo\u001b(B\n\u001b$Bbp\u001b(B \u001b$Bbq\u001b(B \u001b$Bbr\u001b(B \u001b$Bbs\u001b(B \u001b$Bbt\u001b(B \u001b$Bbu\u001b(B \u001b$Bbv\u001b(B \u001b$Bbw\u001b(B \u001b$Bbx\u001b(B \u001b$Bby\u001b(B \u001b$Bbz\u001b(B \u001b$Bb{\u001b(B \u001b$Bb|\u001b(B \u001b$Bb}\u001b(B \u001b$Bb~\u001b(B\n  \u001b$Bc!\u001b(B \u001b$Bc\"\u001b(B \u001b$Bc#\u001b(B \u001b$Bc$\u001b(B \u001b$Bc%\u001b(B \u001b$Bc&\u001b(B \u001b$Bc'\u001b(B \u001b$Bc(\u001b(B \u001b$Bc)\u001b(B \u001b$Bc*\u001b(B \u001b$Bc+\u001b(B \u001b$Bc,\u001b(B \u001b$Bc-\u001b(B \u001b$Bc.\u001b(B \u001b$Bc/\u001b(B\n\u001b$Bc0\u001b(B \u001b$Bc1\u001b(B \u001b$Bc2\u001b(B \u001b$Bc3\u001b(B \u001b$Bc4\u001b(B \u001b$Bc5\u001b(B \u001b$Bc6\u001b(B \u001b$Bc7\u001b(B \u001b$Bc8\u001b(B \u001b$Bc9\u001b(B \u001b$Bc:\u001b(B \u001b$Bc;\u001b(B \u001b$Bc<\u001b(B \u001b$Bc=\u001b(B \u001b$Bc>\u001b(B \u001b$Bc?\u001b(B\n\u001b$Bc@\u001b(B \u001b$BcA\u001b(B \u001b$BcB\u001b(B \u001b$BcC\u001b(B \u001b$BcD\u001b(B \u001b$BcE\u001b(B \u001b$BcF\u001b(B \u001b$BcG\u001b(B \u001b$BcH\u001b(B \u001b$BcI\u001b(B \u001b$BcJ\u001b(B \u001b$BcK\u001b(B \u001b$BcL\u001b(B \u001b$BcM\u001b(B \u001b$BcN\u001b(B \u001b$BcO\u001b(B\n\u001b$BcP\u001b(B \u001b$BcQ\u001b(B \u001b$BcR\u001b(B \u001b$BcS\u001b(B \u001b$BcT\u001b(B \u001b$BcU\u001b(B \u001b$BcV\u001b(B \u001b$BcW\u001b(B \u001b$BcX\u001b(B \u001b$BcY\u001b(B \u001b$BcZ\u001b(B \u001b$Bc[\u001b(B \u001b$Bc\\\u001b(B \u001b$Bc]\u001b(B \u001b$Bc^\u001b(B \u001b$Bc_\u001b(B\n\u001b$Bc`\u001b(B \u001b$Bca\u001b(B \u001b$Bcb\u001b(B \u001b$Bcc\u001b(B \u001b$Bcd\u001b(B \u001b$Bce\u001b(B \u001b$Bcf\u001b(B \u001b$Bcg\u001b(B \u001b$Bch\u001b(B \u001b$Bci\u001b(B \u001b$Bcj\u001b(B \u001b$Bck\u001b(B \u001b$Bcl\u001b(B \u001b$Bcm\u001b(B \u001b$Bcn\u001b(B \u001b$Bco\u001b(B\n\u001b$Bcp\u001b(B \u001b$Bcq\u001b(B \u001b$Bcr\u001b(B \u001b$Bcs\u001b(B \u001b$Bct\u001b(B \u001b$Bcu\u001b(B \u001b$Bcv\u001b(B \u001b$Bcw\u001b(B \u001b$Bcx\u001b(B \u001b$Bcy\u001b(B \u001b$Bcz\u001b(B \u001b$Bc{\u001b(B \u001b$Bc|\u001b(B \u001b$Bc}\u001b(B \u001b$Bc~\u001b(B\n  \u001b$Bd!\u001b(B \u001b$Bd\"\u001b(B \u001b$Bd#\u001b(B \u001b$Bd$\u001b(B \u001b$Bd%\u001b(B \u001b$Bd&\u001b(B \u001b$Bd'\u001b(B \u001b$Bd(\u001b(B \u001b$Bd)\u001b(B \u001b$Bd*\u001b(B \u001b$Bd+\u001b(B \u001b$Bd,\u001b(B \u001b$Bd-\u001b(B \u001b$Bd.\u001b(B \u001b$Bd/\u001b(B\n\u001b$Bd0\u001b(B \u001b$Bd1\u001b(B \u001b$Bd2\u001b(B \u001b$Bd3\u001b(B \u001b$Bd4\u001b(B \u001b$Bd5\u001b(B \u001b$Bd6\u001b(B \u001b$Bd7\u001b(B \u001b$Bd8\u001b(B \u001b$Bd9\u001b(B \u001b$Bd:\u001b(B \u001b$Bd;\u001b(B \u001b$Bd<\u001b(B \u001b$Bd=\u001b(B \u001b$Bd>\u001b(B \u001b$Bd?\u001b(B\n\u001b$Bd@\u001b(B \u001b$BdA\u001b(B \u001b$BdB\u001b(B \u001b$BdC\u001b(B \u001b$BdD\u001b(B \u001b$BdE\u001b(B \u001b$BdF\u001b(B \u001b$BdG\u001b(B \u001b$BdH\u001b(B \u001b$BdI\u001b(B \u001b$BdJ\u001b(B \u001b$BdK\u001b(B \u001b$BdL\u001b(B \u001b$BdM\u001b(B \u001b$BdN\u001b(B \u001b$BdO\u001b(B\n\u001b$BdP\u001b(B \u001b$BdQ\u001b(B \u001b$BdR\u001b(B \u001b$BdS\u001b(B \u001b$BdT\u001b(B \u001b$BdU\u001b(B \u001b$BdV\u001b(B \u001b$BdW\u001b(B \u001b$BdX\u001b(B \u001b$BdY\u001b(B \u001b$BdZ\u001b(B \u001b$Bd[\u001b(B \u001b$Bd\\\u001b(B \u001b$Bd]\u001b(B \u001b$Bd^\u001b(B \u001b$Bd_\u001b(B\n\u001b$Bd`\u001b(B \u001b$Bda\u001b(B \u001b$Bdb\u001b(B \u001b$Bdc\u001b(B \u001b$Bdd\u001b(B \u001b$Bde\u001b(B \u001b$Bdf\u001b(B \u001b$Bdg\u001b(B \u001b$Bdh\u001b(B \u001b$Bdi\u001b(B \u001b$Bdj\u001b(B \u001b$Bdk\u001b(B \u001b$Bdl\u001b(B \u001b$Bdm\u001b(B \u001b$Bdn\u001b(B \u001b$Bdo\u001b(B\n\u001b$Bdp\u001b(B \u001b$Bdq\u001b(B \u001b$Bdr\u001b(B \u001b$Bds\u001b(B \u001b$Bdt\u001b(B \u001b$Bdu\u001b(B \u001b$Bdv\u001b(B \u001b$Bdw\u001b(B \u001b$Bdx\u001b(B \u001b$Bdy\u001b(B \u001b$Bdz\u001b(B \u001b$Bd{\u001b(B \u001b$Bd|\u001b(B \u001b$Bd}\u001b(B \u001b$Bd~\u001b(B\n  \u001b$Be!\u001b(B \u001b$Be\"\u001b(B \u001b$Be#\u001b(B \u001b$Be$\u001b(B \u001b$Be%\u001b(B \u001b$Be&\u001b(B \u001b$Be'\u001b(B \u001b$Be(\u001b(B \u001b$Be)\u001b(B \u001b$Be*\u001b(B \u001b$Be+\u001b(B \u001b$Be,\u001b(B \u001b$Be-\u001b(B \u001b$Be.\u001b(B \u001b$Be/\u001b(B\n\u001b$Be0\u001b(B \u001b$Be1\u001b(B \u001b$Be2\u001b(B \u001b$Be3\u001b(B \u001b$Be4\u001b(B \u001b$Be5\u001b(B \u001b$Be6\u001b(B \u001b$Be7\u001b(B \u001b$Be8\u001b(B \u001b$Be9\u001b(B \u001b$Be:\u001b(B \u001b$Be;\u001b(B \u001b$Be<\u001b(B \u001b$Be=\u001b(B \u001b$Be>\u001b(B \u001b$Be?\u001b(B\n\u001b$Be@\u001b(B \u001b$BeA\u001b(B \u001b$BeB\u001b(B \u001b$BeC\u001b(B \u001b$BeD\u001b(B \u001b$BeE\u001b(B \u001b$BeF\u001b(B \u001b$BeG\u001b(B \u001b$BeH\u001b(B \u001b$BeI\u001b(B \u001b$BeJ\u001b(B \u001b$BeK\u001b(B \u001b$BeL\u001b(B \u001b$BeM\u001b(B \u001b$BeN\u001b(B \u001b$BeO\u001b(B\n\u001b$BeP\u001b(B \u001b$BeQ\u001b(B \u001b$BeR\u001b(B \u001b$BeS\u001b(B \u001b$BeT\u001b(B \u001b$BeU\u001b(B \u001b$BeV\u001b(B \u001b$BeW\u001b(B \u001b$BeX\u001b(B \u001b$BeY\u001b(B \u001b$BeZ\u001b(B \u001b$Be[\u001b(B \u001b$Be\\\u001b(B \u001b$Be]\u001b(B \u001b$Be^\u001b(B \u001b$Be_\u001b(B\n\u001b$Be`\u001b(B \u001b$Bea\u001b(B \u001b$Beb\u001b(B \u001b$Bec\u001b(B \u001b$Bed\u001b(B \u001b$Bee\u001b(B \u001b$Bef\u001b(B \u001b$Beg\u001b(B \u001b$Beh\u001b(B \u001b$Bei\u001b(B \u001b$Bej\u001b(B \u001b$Bek\u001b(B \u001b$Bel\u001b(B \u001b$Bem\u001b(B \u001b$Ben\u001b(B \u001b$Beo\u001b(B\n\u001b$Bep\u001b(B \u001b$Beq\u001b(B \u001b$Ber\u001b(B \u001b$Bes\u001b(B \u001b$Bet\u001b(B \u001b$Beu\u001b(B \u001b$Bev\u001b(B \u001b$Bew\u001b(B \u001b$Bex\u001b(B \u001b$Bey\u001b(B \u001b$Bez\u001b(B \u001b$Be{\u001b(B \u001b$Be|\u001b(B \u001b$Be}\u001b(B \u001b$Be~\u001b(B\n  \u001b$Bf!\u001b(B \u001b$Bf\"\u001b(B \u001b$Bf#\u001b(B \u001b$Bf$\u001b(B \u001b$Bf%\u001b(B \u001b$Bf&\u001b(B \u001b$Bf'\u001b(B \u001b$Bf(\u001b(B \u001b$Bf)\u001b(B \u001b$Bf*\u001b(B \u001b$Bf+\u001b(B \u001b$Bf,\u001b(B \u001b$Bf-\u001b(B \u001b$Bf.\u001b(B \u001b$Bf/\u001b(B\n\u001b$Bf0\u001b(B \u001b$Bf1\u001b(B \u001b$Bf2\u001b(B \u001b$Bf3\u001b(B \u001b$Bf4\u001b(B \u001b$Bf5\u001b(B \u001b$Bf6\u001b(B \u001b$Bf7\u001b(B \u001b$Bf8\u001b(B \u001b$Bf9\u001b(B \u001b$Bf:\u001b(B \u001b$Bf;\u001b(B \u001b$Bf<\u001b(B \u001b$Bf=\u001b(B \u001b$Bf>\u001b(B \u001b$Bf?\u001b(B\n\u001b$Bf@\u001b(B \u001b$BfA\u001b(B \u001b$BfB\u001b(B \u001b$BfC\u001b(B \u001b$BfD\u001b(B \u001b$BfE\u001b(B \u001b$BfF\u001b(B \u001b$BfG\u001b(B \u001b$BfH\u001b(B \u001b$BfI\u001b(B \u001b$BfJ\u001b(B \u001b$BfK\u001b(B \u001b$BfL\u001b(B \u001b$BfM\u001b(B \u001b$BfN\u001b(B \u001b$BfO\u001b(B\n\u001b$BfP\u001b(B \u001b$BfQ\u001b(B \u001b$BfR\u001b(B \u001b$BfS\u001b(B \u001b$BfT\u001b(B \u001b$BfU\u001b(B \u001b$BfV\u001b(B \u001b$BfW\u001b(B \u001b$BfX\u001b(B \u001b$BfY\u001b(B \u001b$BfZ\u001b(B \u001b$Bf[\u001b(B \u001b$Bf\\\u001b(B \u001b$Bf]\u001b(B \u001b$Bf^\u001b(B \u001b$Bf_\u001b(B\n\u001b$Bf`\u001b(B \u001b$Bfa\u001b(B \u001b$Bfb\u001b(B \u001b$Bfc\u001b(B \u001b$Bfd\u001b(B \u001b$Bfe\u001b(B \u001b$Bff\u001b(B \u001b$Bfg\u001b(B \u001b$Bfh\u001b(B \u001b$Bfi\u001b(B \u001b$Bfj\u001b(B \u001b$Bfk\u001b(B \u001b$Bfl\u001b(B \u001b$Bfm\u001b(B \u001b$Bfn\u001b(B \u001b$Bfo\u001b(B\n\u001b$Bfp\u001b(B \u001b$Bfq\u001b(B \u001b$Bfr\u001b(B \u001b$Bfs\u001b(B \u001b$Bft\u001b(B \u001b$Bfu\u001b(B \u001b$Bfv\u001b(B \u001b$Bfw\u001b(B \u001b$Bfx\u001b(B \u001b$Bfy\u001b(B \u001b$Bfz\u001b(B \u001b$Bf{\u001b(B \u001b$Bf|\u001b(B \u001b$Bf}\u001b(B \u001b$Bf~\u001b(B\n  \u001b$Bg!\u001b(B \u001b$Bg\"\u001b(B \u001b$Bg#\u001b(B \u001b$Bg$\u001b(B \u001b$Bg%\u001b(B \u001b$Bg&\u001b(B \u001b$Bg'\u001b(B \u001b$Bg(\u001b(B \u001b$Bg)\u001b(B \u001b$Bg*\u001b(B \u001b$Bg+\u001b(B \u001b$Bg,\u001b(B \u001b$Bg-\u001b(B \u001b$Bg.\u001b(B \u001b$Bg/\u001b(B\n\u001b$Bg0\u001b(B \u001b$Bg1\u001b(B \u001b$Bg2\u001b(B \u001b$Bg3\u001b(B \u001b$Bg4\u001b(B \u001b$Bg5\u001b(B \u001b$Bg6\u001b(B \u001b$Bg7\u001b(B \u001b$Bg8\u001b(B \u001b$Bg9\u001b(B \u001b$Bg:\u001b(B \u001b$Bg;\u001b(B \u001b$Bg<\u001b(B \u001b$Bg=\u001b(B \u001b$Bg>\u001b(B \u001b$Bg?\u001b(B\n\u001b$Bg@\u001b(B \u001b$BgA\u001b(B \u001b$BgB\u001b(B \u001b$BgC\u001b(B \u001b$BgD\u001b(B \u001b$BgE\u001b(B \u001b$BgF\u001b(B \u001b$BgG\u001b(B \u001b$BgH\u001b(B \u001b$BgI\u001b(B \u001b$BgJ\u001b(B \u001b$BgK\u001b(B \u001b$BgL\u001b(B \u001b$BgM\u001b(B \u001b$BgN\u001b(B \u001b$BgO\u001b(B\n\u001b$BgP\u001b(B \u001b$BgQ\u001b(B \u001b$BgR\u001b(B \u001b$BgS\u001b(B \u001b$BgT\u001b(B \u001b$BgU\u001b(B \u001b$BgV\u001b(B \u001b$BgW\u001b(B \u001b$BgX\u001b(B \u001b$BgY\u001b(B \u001b$BgZ\u001b(B \u001b$Bg[\u001b(B \u001b$Bg\\\u001b(B \u001b$Bg]\u001b(B \u001b$Bg^\u001b(B \u001b$Bg_\u001b(B\n\u001b$Bg`\u001b(B \u001b$Bga\u001b(B \u001b$Bgb\u001b(B \u001b$Bgc\u001b(B \u001b$Bgd\u001b(B \u001b$Bge\u001b(B \u001b$Bgf\u001b(B \u001b$Bgg\u001b(B \u001b$Bgh\u001b(B \u001b$Bgi\u001b(B \u001b$Bgj\u001b(B \u001b$Bgk\u001b(B \u001b$Bgl\u001b(B \u001b$Bgm\u001b(B \u001b$Bgn\u001b(B \u001b$Bgo\u001b(B\n\u001b$Bgp\u001b(B \u001b$Bgq\u001b(B \u001b$Bgr\u001b(B \u001b$Bgs\u001b(B \u001b$Bgt\u001b(B \u001b$Bgu\u001b(B \u001b$Bgv\u001b(B \u001b$Bgw\u001b(B \u001b$Bgx\u001b(B \u001b$Bgy\u001b(B \u001b$Bgz\u001b(B \u001b$Bg{\u001b(B \u001b$Bg|\u001b(B \u001b$Bg}\u001b(B \u001b$Bg~\u001b(B\n  \u001b$Bh!\u001b(B \u001b$Bh\"\u001b(B \u001b$Bh#\u001b(B \u001b$Bh$\u001b(B \u001b$Bh%\u001b(B \u001b$Bh&\u001b(B \u001b$Bh'\u001b(B \u001b$Bh(\u001b(B \u001b$Bh)\u001b(B \u001b$Bh*\u001b(B \u001b$Bh+\u001b(B \u001b$Bh,\u001b(B \u001b$Bh-\u001b(B \u001b$Bh.\u001b(B \u001b$Bh/\u001b(B\n\u001b$Bh0\u001b(B \u001b$Bh1\u001b(B \u001b$Bh2\u001b(B \u001b$Bh3\u001b(B \u001b$Bh4\u001b(B \u001b$Bh5\u001b(B \u001b$Bh6\u001b(B \u001b$Bh7\u001b(B \u001b$Bh8\u001b(B \u001b$Bh9\u001b(B \u001b$Bh:\u001b(B \u001b$Bh;\u001b(B \u001b$Bh<\u001b(B \u001b$Bh=\u001b(B \u001b$Bh>\u001b(B \u001b$Bh?\u001b(B\n\u001b$Bh@\u001b(B \u001b$BhA\u001b(B \u001b$BhB\u001b(B \u001b$BhC\u001b(B \u001b$BhD\u001b(B \u001b$BhE\u001b(B \u001b$BhF\u001b(B \u001b$BhG\u001b(B \u001b$BhH\u001b(B \u001b$BhI\u001b(B \u001b$BhJ\u001b(B \u001b$BhK\u001b(B \u001b$BhL\u001b(B \u001b$BhM\u001b(B \u001b$BhN\u001b(B \u001b$BhO\u001b(B\n\u001b$BhP\u001b(B \u001b$BhQ\u001b(B \u001b$BhR\u001b(B \u001b$BhS\u001b(B \u001b$BhT\u001b(B \u001b$BhU\u001b(B \u001b$BhV\u001b(B \u001b$BhW\u001b(B \u001b$BhX\u001b(B \u001b$BhY\u001b(B \u001b$BhZ\u001b(B \u001b$Bh[\u001b(B \u001b$Bh\\\u001b(B \u001b$Bh]\u001b(B \u001b$Bh^\u001b(B \u001b$Bh_\u001b(B\n\u001b$Bh`\u001b(B \u001b$Bha\u001b(B \u001b$Bhb\u001b(B \u001b$Bhc\u001b(B \u001b$Bhd\u001b(B \u001b$Bhe\u001b(B \u001b$Bhf\u001b(B \u001b$Bhg\u001b(B \u001b$Bhh\u001b(B \u001b$Bhi\u001b(B \u001b$Bhj\u001b(B \u001b$Bhk\u001b(B \u001b$Bhl\u001b(B \u001b$Bhm\u001b(B \u001b$Bhn\u001b(B \u001b$Bho\u001b(B\n\u001b$Bhp\u001b(B \u001b$Bhq\u001b(B \u001b$Bhr\u001b(B \u001b$Bhs\u001b(B \u001b$Bht\u001b(B \u001b$Bhu\u001b(B \u001b$Bhv\u001b(B \u001b$Bhw\u001b(B \u001b$Bhx\u001b(B \u001b$Bhy\u001b(B \u001b$Bhz\u001b(B \u001b$Bh{\u001b(B \u001b$Bh|\u001b(B \u001b$Bh}\u001b(B \u001b$Bh~\u001b(B\n  \u001b$Bi!\u001b(B \u001b$Bi\"\u001b(B \u001b$Bi#\u001b(B \u001b$Bi$\u001b(B \u001b$Bi%\u001b(B \u001b$Bi&\u001b(B \u001b$Bi'\u001b(B \u001b$Bi(\u001b(B \u001b$Bi)\u001b(B \u001b$Bi*\u001b(B \u001b$Bi+\u001b(B \u001b$Bi,\u001b(B \u001b$Bi-\u001b(B \u001b$Bi.\u001b(B \u001b$Bi/\u001b(B\n\u001b$Bi0\u001b(B \u001b$Bi1\u001b(B \u001b$Bi2\u001b(B \u001b$Bi3\u001b(B \u001b$Bi4\u001b(B \u001b$Bi5\u001b(B \u001b$Bi6\u001b(B \u001b$Bi7\u001b(B \u001b$Bi8\u001b(B \u001b$Bi9\u001b(B \u001b$Bi:\u001b(B \u001b$Bi;\u001b(B \u001b$Bi<\u001b(B \u001b$Bi=\u001b(B \u001b$Bi>\u001b(B \u001b$Bi?\u001b(B\n\u001b$Bi@\u001b(B \u001b$BiA\u001b(B \u001b$BiB\u001b(B \u001b$BiC\u001b(B \u001b$BiD\u001b(B \u001b$BiE\u001b(B \u001b$BiF\u001b(B \u001b$BiG\u001b(B \u001b$BiH\u001b(B \u001b$BiI\u001b(B \u001b$BiJ\u001b(B \u001b$BiK\u001b(B \u001b$BiL\u001b(B \u001b$BiM\u001b(B \u001b$BiN\u001b(B \u001b$BiO\u001b(B\n\u001b$BiP\u001b(B \u001b$BiQ\u001b(B \u001b$BiR\u001b(B \u001b$BiS\u001b(B \u001b$BiT\u001b(B \u001b$BiU\u001b(B \u001b$BiV\u001b(B \u001b$BiW\u001b(B \u001b$BiX\u001b(B \u001b$BiY\u001b(B \u001b$BiZ\u001b(B \u001b$Bi[\u001b(B \u001b$Bi\\\u001b(B \u001b$Bi]\u001b(B \u001b$Bi^\u001b(B \u001b$Bi_\u001b(B\n\u001b$Bi`\u001b(B \u001b$Bia\u001b(B \u001b$Bib\u001b(B \u001b$Bic\u001b(B \u001b$Bid\u001b(B \u001b$Bie\u001b(B \u001b$Bif\u001b(B \u001b$Big\u001b(B \u001b$Bih\u001b(B \u001b$Bii\u001b(B \u001b$Bij\u001b(B \u001b$Bik\u001b(B \u001b$Bil\u001b(B \u001b$Bim\u001b(B \u001b$Bin\u001b(B \u001b$Bio\u001b(B\n\u001b$Bip\u001b(B \u001b$Biq\u001b(B \u001b$Bir\u001b(B \u001b$Bis\u001b(B \u001b$Bit\u001b(B \u001b$Biu\u001b(B \u001b$Biv\u001b(B \u001b$Biw\u001b(B \u001b$Bix\u001b(B \u001b$Biy\u001b(B \u001b$Biz\u001b(B \u001b$Bi{\u001b(B \u001b$Bi|\u001b(B \u001b$Bi}\u001b(B \u001b$Bi~\u001b(B\n  \u001b$Bj!\u001b(B \u001b$Bj\"\u001b(B \u001b$Bj#\u001b(B \u001b$Bj$\u001b(B \u001b$Bj%\u001b(B \u001b$Bj&\u001b(B \u001b$Bj'\u001b(B \u001b$Bj(\u001b(B \u001b$Bj)\u001b(B \u001b$Bj*\u001b(B \u001b$Bj+\u001b(B \u001b$Bj,\u001b(B \u001b$Bj-\u001b(B \u001b$Bj.\u001b(B \u001b$Bj/\u001b(B\n\u001b$Bj0\u001b(B \u001b$Bj1\u001b(B \u001b$Bj2\u001b(B \u001b$Bj3\u001b(B \u001b$Bj4\u001b(B \u001b$Bj5\u001b(B \u001b$Bj6\u001b(B \u001b$Bj7\u001b(B \u001b$Bj8\u001b(B \u001b$Bj9\u001b(B \u001b$Bj:\u001b(B \u001b$Bj;\u001b(B \u001b$Bj<\u001b(B \u001b$Bj=\u001b(B \u001b$Bj>\u001b(B \u001b$Bj?\u001b(B\n\u001b$Bj@\u001b(B \u001b$BjA\u001b(B \u001b$BjB\u001b(B \u001b$BjC\u001b(B \u001b$BjD\u001b(B \u001b$BjE\u001b(B \u001b$BjF\u001b(B \u001b$BjG\u001b(B \u001b$BjH\u001b(B \u001b$BjI\u001b(B \u001b$BjJ\u001b(B \u001b$BjK\u001b(B \u001b$BjL\u001b(B \u001b$BjM\u001b(B \u001b$BjN\u001b(B \u001b$BjO\u001b(B\n\u001b$BjP\u001b(B \u001b$BjQ\u001b(B \u001b$BjR\u001b(B \u001b$BjS\u001b(B \u001b$BjT\u001b(B \u001b$BjU\u001b(B \u001b$BjV\u001b(B \u001b$BjW\u001b(B \u001b$BjX\u001b(B \u001b$BjY\u001b(B \u001b$BjZ\u001b(B \u001b$Bj[\u001b(B \u001b$Bj\\\u001b(B \u001b$Bj]\u001b(B \u001b$Bj^\u001b(B \u001b$Bj_\u001b(B\n\u001b$Bj`\u001b(B \u001b$Bja\u001b(B \u001b$Bjb\u001b(B \u001b$Bjc\u001b(B \u001b$Bjd\u001b(B \u001b$Bje\u001b(B \u001b$Bjf\u001b(B \u001b$Bjg\u001b(B \u001b$Bjh\u001b(B \u001b$Bji\u001b(B \u001b$Bjj\u001b(B \u001b$Bjk\u001b(B \u001b$Bjl\u001b(B \u001b$Bjm\u001b(B \u001b$Bjn\u001b(B \u001b$Bjo\u001b(B\n\u001b$Bjp\u001b(B \u001b$Bjq\u001b(B \u001b$Bjr\u001b(B \u001b$Bjs\u001b(B \u001b$Bjt\u001b(B \u001b$Bju\u001b(B \u001b$Bjv\u001b(B \u001b$Bjw\u001b(B \u001b$Bjx\u001b(B \u001b$Bjy\u001b(B \u001b$Bjz\u001b(B \u001b$Bj{\u001b(B \u001b$Bj|\u001b(B \u001b$Bj}\u001b(B \u001b$Bj~\u001b(B\n  \u001b$Bk!\u001b(B \u001b$Bk\"\u001b(B \u001b$Bk#\u001b(B \u001b$Bk$\u001b(B \u001b$Bk%\u001b(B \u001b$Bk&\u001b(B \u001b$Bk'\u001b(B \u001b$Bk(\u001b(B \u001b$Bk)\u001b(B \u001b$Bk*\u001b(B \u001b$Bk+\u001b(B \u001b$Bk,\u001b(B \u001b$Bk-\u001b(B \u001b$Bk.\u001b(B \u001b$Bk/\u001b(B\n\u001b$Bk0\u001b(B \u001b$Bk1\u001b(B \u001b$Bk2\u001b(B \u001b$Bk3\u001b(B \u001b$Bk4\u001b(B \u001b$Bk5\u001b(B \u001b$Bk6\u001b(B \u001b$Bk7\u001b(B \u001b$Bk8\u001b(B \u001b$Bk9\u001b(B \u001b$Bk:\u001b(B \u001b$Bk;\u001b(B \u001b$Bk<\u001b(B \u001b$Bk=\u001b(B \u001b$Bk>\u001b(B \u001b$Bk?\u001b(B\n\u001b$Bk@\u001b(B \u001b$BkA\u001b(B \u001b$BkB\u001b(B \u001b$BkC\u001b(B \u001b$BkD\u001b(B \u001b$BkE\u001b(B \u001b$BkF\u001b(B \u001b$BkG\u001b(B \u001b$BkH\u001b(B \u001b$BkI\u001b(B \u001b$BkJ\u001b(B \u001b$BkK\u001b(B \u001b$BkL\u001b(B \u001b$BkM\u001b(B \u001b$BkN\u001b(B \u001b$BkO\u001b(B\n\u001b$BkP\u001b(B \u001b$BkQ\u001b(B \u001b$BkR\u001b(B \u001b$BkS\u001b(B \u001b$BkT\u001b(B \u001b$BkU\u001b(B \u001b$BkV\u001b(B \u001b$BkW\u001b(B \u001b$BkX\u001b(B \u001b$BkY\u001b(B \u001b$BkZ\u001b(B \u001b$Bk[\u001b(B \u001b$Bk\\\u001b(B \u001b$Bk]\u001b(B \u001b$Bk^\u001b(B \u001b$Bk_\u001b(B\n\u001b$Bk`\u001b(B \u001b$Bka\u001b(B \u001b$Bkb\u001b(B \u001b$Bkc\u001b(B \u001b$Bkd\u001b(B \u001b$Bke\u001b(B \u001b$Bkf\u001b(B \u001b$Bkg\u001b(B \u001b$Bkh\u001b(B \u001b$Bki\u001b(B \u001b$Bkj\u001b(B \u001b$Bkk\u001b(B \u001b$Bkl\u001b(B \u001b$Bkm\u001b(B \u001b$Bkn\u001b(B \u001b$Bko\u001b(B\n\u001b$Bkp\u001b(B \u001b$Bkq\u001b(B \u001b$Bkr\u001b(B \u001b$Bks\u001b(B \u001b$Bkt\u001b(B \u001b$Bku\u001b(B \u001b$Bkv\u001b(B \u001b$Bkw\u001b(B \u001b$Bkx\u001b(B \u001b$Bky\u001b(B \u001b$Bkz\u001b(B \u001b$Bk{\u001b(B \u001b$Bk|\u001b(B \u001b$Bk}\u001b(B \u001b$Bk~\u001b(B\n  \u001b$Bl!\u001b(B \u001b$Bl\"\u001b(B \u001b$Bl#\u001b(B \u001b$Bl$\u001b(B \u001b$Bl%\u001b(B \u001b$Bl&\u001b(B \u001b$Bl'\u001b(B \u001b$Bl(\u001b(B \u001b$Bl)\u001b(B \u001b$Bl*\u001b(B \u001b$Bl+\u001b(B \u001b$Bl,\u001b(B \u001b$Bl-\u001b(B \u001b$Bl.\u001b(B \u001b$Bl/\u001b(B\n\u001b$Bl0\u001b(B \u001b$Bl1\u001b(B \u001b$Bl2\u001b(B \u001b$Bl3\u001b(B \u001b$Bl4\u001b(B \u001b$Bl5\u001b(B \u001b$Bl6\u001b(B \u001b$Bl7\u001b(B \u001b$Bl8\u001b(B \u001b$Bl9\u001b(B \u001b$Bl:\u001b(B \u001b$Bl;\u001b(B \u001b$Bl<\u001b(B \u001b$Bl=\u001b(B \u001b$Bl>\u001b(B \u001b$Bl?\u001b(B\n\u001b$Bl@\u001b(B \u001b$BlA\u001b(B \u001b$BlB\u001b(B \u001b$BlC\u001b(B \u001b$BlD\u001b(B \u001b$BlE\u001b(B \u001b$BlF\u001b(B \u001b$BlG\u001b(B \u001b$BlH\u001b(B \u001b$BlI\u001b(B \u001b$BlJ\u001b(B \u001b$BlK\u001b(B \u001b$BlL\u001b(B \u001b$BlM\u001b(B \u001b$BlN\u001b(B \u001b$BlO\u001b(B\n\u001b$BlP\u001b(B \u001b$BlQ\u001b(B \u001b$BlR\u001b(B \u001b$BlS\u001b(B \u001b$BlT\u001b(B \u001b$BlU\u001b(B \u001b$BlV\u001b(B \u001b$BlW\u001b(B \u001b$BlX\u001b(B \u001b$BlY\u001b(B \u001b$BlZ\u001b(B \u001b$Bl[\u001b(B \u001b$Bl\\\u001b(B \u001b$Bl]\u001b(B \u001b$Bl^\u001b(B \u001b$Bl_\u001b(B\n\u001b$Bl`\u001b(B \u001b$Bla\u001b(B \u001b$Blb\u001b(B \u001b$Blc\u001b(B \u001b$Bld\u001b(B \u001b$Ble\u001b(B \u001b$Blf\u001b(B \u001b$Blg\u001b(B \u001b$Blh\u001b(B \u001b$Bli\u001b(B \u001b$Blj\u001b(B \u001b$Blk\u001b(B \u001b$Bll\u001b(B \u001b$Blm\u001b(B \u001b$Bln\u001b(B \u001b$Blo\u001b(B\n\u001b$Blp\u001b(B \u001b$Blq\u001b(B \u001b$Blr\u001b(B \u001b$Bls\u001b(B \u001b$Blt\u001b(B \u001b$Blu\u001b(B \u001b$Blv\u001b(B \u001b$Blw\u001b(B \u001b$Blx\u001b(B \u001b$Bly\u001b(B \u001b$Blz\u001b(B \u001b$Bl{\u001b(B \u001b$Bl|\u001b(B \u001b$Bl}\u001b(B \u001b$Bl~\u001b(B\n  \u001b$Bm!\u001b(B \u001b$Bm\"\u001b(B \u001b$Bm#\u001b(B \u001b$Bm$\u001b(B \u001b$Bm%\u001b(B \u001b$Bm&\u001b(B \u001b$Bm'\u001b(B \u001b$Bm(\u001b(B \u001b$Bm)\u001b(B \u001b$Bm*\u001b(B \u001b$Bm+\u001b(B \u001b$Bm,\u001b(B \u001b$Bm-\u001b(B \u001b$Bm.\u001b(B \u001b$Bm/\u001b(B\n\u001b$Bm0\u001b(B \u001b$Bm1\u001b(B \u001b$Bm2\u001b(B \u001b$Bm3\u001b(B \u001b$Bm4\u001b(B \u001b$Bm5\u001b(B \u001b$Bm6\u001b(B \u001b$Bm7\u001b(B \u001b$Bm8\u001b(B \u001b$Bm9\u001b(B \u001b$Bm:\u001b(B \u001b$Bm;\u001b(B \u001b$Bm<\u001b(B \u001b$Bm=\u001b(B \u001b$Bm>\u001b(B \u001b$Bm?\u001b(B\n\u001b$Bm@\u001b(B \u001b$BmA\u001b(B \u001b$BmB\u001b(B \u001b$BmC\u001b(B \u001b$BmD\u001b(B \u001b$BmE\u001b(B \u001b$BmF\u001b(B \u001b$BmG\u001b(B \u001b$BmH\u001b(B \u001b$BmI\u001b(B \u001b$BmJ\u001b(B \u001b$BmK\u001b(B \u001b$BmL\u001b(B \u001b$BmM\u001b(B \u001b$BmN\u001b(B \u001b$BmO\u001b(B\n\u001b$BmP\u001b(B \u001b$BmQ\u001b(B \u001b$BmR\u001b(B \u001b$BmS\u001b(B \u001b$BmT\u001b(B \u001b$BmU\u001b(B \u001b$BmV\u001b(B \u001b$BmW\u001b(B \u001b$BmX\u001b(B \u001b$BmY\u001b(B \u001b$BmZ\u001b(B \u001b$Bm[\u001b(B \u001b$Bm\\\u001b(B \u001b$Bm]\u001b(B \u001b$Bm^\u001b(B \u001b$Bm_\u001b(B\n\u001b$Bm`\u001b(B \u001b$Bma\u001b(B \u001b$Bmb\u001b(B \u001b$Bmc\u001b(B \u001b$Bmd\u001b(B \u001b$Bme\u001b(B \u001b$Bmf\u001b(B \u001b$Bmg\u001b(B \u001b$Bmh\u001b(B \u001b$Bmi\u001b(B \u001b$Bmj\u001b(B \u001b$Bmk\u001b(B \u001b$Bml\u001b(B \u001b$Bmm\u001b(B \u001b$Bmn\u001b(B \u001b$Bmo\u001b(B\n\u001b$Bmp\u001b(B \u001b$Bmq\u001b(B \u001b$Bmr\u001b(B \u001b$Bms\u001b(B \u001b$Bmt\u001b(B \u001b$Bmu\u001b(B \u001b$Bmv\u001b(B \u001b$Bmw\u001b(B \u001b$Bmx\u001b(B \u001b$Bmy\u001b(B \u001b$Bmz\u001b(B \u001b$Bm{\u001b(B \u001b$Bm|\u001b(B \u001b$Bm}\u001b(B \u001b$Bm~\u001b(B\n  \u001b$Bn!\u001b(B \u001b$Bn\"\u001b(B \u001b$Bn#\u001b(B \u001b$Bn$\u001b(B \u001b$Bn%\u001b(B \u001b$Bn&\u001b(B \u001b$Bn'\u001b(B \u001b$Bn(\u001b(B \u001b$Bn)\u001b(B \u001b$Bn*\u001b(B \u001b$Bn+\u001b(B \u001b$Bn,\u001b(B \u001b$Bn-\u001b(B \u001b$Bn.\u001b(B \u001b$Bn/\u001b(B\n\u001b$Bn0\u001b(B \u001b$Bn1\u001b(B \u001b$Bn2\u001b(B \u001b$Bn3\u001b(B \u001b$Bn4\u001b(B \u001b$Bn5\u001b(B \u001b$Bn6\u001b(B \u001b$Bn7\u001b(B \u001b$Bn8\u001b(B \u001b$Bn9\u001b(B \u001b$Bn:\u001b(B \u001b$Bn;\u001b(B \u001b$Bn<\u001b(B \u001b$Bn=\u001b(B \u001b$Bn>\u001b(B \u001b$Bn?\u001b(B\n\u001b$Bn@\u001b(B \u001b$BnA\u001b(B \u001b$BnB\u001b(B \u001b$BnC\u001b(B \u001b$BnD\u001b(B \u001b$BnE\u001b(B \u001b$BnF\u001b(B \u001b$BnG\u001b(B \u001b$BnH\u001b(B \u001b$BnI\u001b(B \u001b$BnJ\u001b(B \u001b$BnK\u001b(B \u001b$BnL\u001b(B \u001b$BnM\u001b(B \u001b$BnN\u001b(B \u001b$BnO\u001b(B\n\u001b$BnP\u001b(B \u001b$BnQ\u001b(B \u001b$BnR\u001b(B \u001b$BnS\u001b(B \u001b$BnT\u001b(B \u001b$BnU\u001b(B \u001b$BnV\u001b(B \u001b$BnW\u001b(B \u001b$BnX\u001b(B \u001b$BnY\u001b(B \u001b$BnZ\u001b(B \u001b$Bn[\u001b(B \u001b$Bn\\\u001b(B \u001b$Bn]\u001b(B \u001b$Bn^\u001b(B \u001b$Bn_\u001b(B\n\u001b$Bn`\u001b(B \u001b$Bna\u001b(B \u001b$Bnb\u001b(B \u001b$Bnc\u001b(B \u001b$Bnd\u001b(B \u001b$Bne\u001b(B \u001b$Bnf\u001b(B \u001b$Bng\u001b(B \u001b$Bnh\u001b(B \u001b$Bni\u001b(B \u001b$Bnj\u001b(B \u001b$Bnk\u001b(B \u001b$Bnl\u001b(B \u001b$Bnm\u001b(B \u001b$Bnn\u001b(B \u001b$Bno\u001b(B\n\u001b$Bnp\u001b(B \u001b$Bnq\u001b(B \u001b$Bnr\u001b(B \u001b$Bns\u001b(B \u001b$Bnt\u001b(B \u001b$Bnu\u001b(B \u001b$Bnv\u001b(B \u001b$Bnw\u001b(B \u001b$Bnx\u001b(B \u001b$Bny\u001b(B \u001b$Bnz\u001b(B \u001b$Bn{\u001b(B \u001b$Bn|\u001b(B \u001b$Bn}\u001b(B \u001b$Bn~\u001b(B\n  \u001b$Bo!\u001b(B \u001b$Bo\"\u001b(B \u001b$Bo#\u001b(B \u001b$Bo$\u001b(B \u001b$Bo%\u001b(B \u001b$Bo&\u001b(B \u001b$Bo'\u001b(B \u001b$Bo(\u001b(B \u001b$Bo)\u001b(B \u001b$Bo*\u001b(B \u001b$Bo+\u001b(B \u001b$Bo,\u001b(B \u001b$Bo-\u001b(B \u001b$Bo.\u001b(B \u001b$Bo/\u001b(B\n\u001b$Bo0\u001b(B \u001b$Bo1\u001b(B \u001b$Bo2\u001b(B \u001b$Bo3\u001b(B \u001b$Bo4\u001b(B \u001b$Bo5\u001b(B \u001b$Bo6\u001b(B \u001b$Bo7\u001b(B \u001b$Bo8\u001b(B \u001b$Bo9\u001b(B \u001b$Bo:\u001b(B \u001b$Bo;\u001b(B \u001b$Bo<\u001b(B \u001b$Bo=\u001b(B \u001b$Bo>\u001b(B \u001b$Bo?\u001b(B\n\u001b$Bo@\u001b(B \u001b$BoA\u001b(B \u001b$BoB\u001b(B \u001b$BoC\u001b(B \u001b$BoD\u001b(B \u001b$BoE\u001b(B \u001b$BoF\u001b(B \u001b$BoG\u001b(B \u001b$BoH\u001b(B \u001b$BoI\u001b(B \u001b$BoJ\u001b(B \u001b$BoK\u001b(B \u001b$BoL\u001b(B \u001b$BoM\u001b(B \u001b$BoN\u001b(B \u001b$BoO\u001b(B\n\u001b$BoP\u001b(B \u001b$BoQ\u001b(B \u001b$BoR\u001b(B \u001b$BoS\u001b(B \u001b$BoT\u001b(B \u001b$BoU\u001b(B \u001b$BoV\u001b(B \u001b$BoW\u001b(B \u001b$BoX\u001b(B \u001b$BoY\u001b(B \u001b$BoZ\u001b(B \u001b$Bo[\u001b(B \u001b$Bo\\\u001b(B \u001b$Bo]\u001b(B \u001b$Bo^\u001b(B \u001b$Bo_\u001b(B\n\u001b$Bo`\u001b(B \u001b$Boa\u001b(B \u001b$Bob\u001b(B \u001b$Boc\u001b(B \u001b$Bod\u001b(B \u001b$Boe\u001b(B \u001b$Bof\u001b(B \u001b$Bog\u001b(B \u001b$Boh\u001b(B \u001b$Boi\u001b(B \u001b$Boj\u001b(B \u001b$Bok\u001b(B \u001b$Bol\u001b(B \u001b$Bom\u001b(B \u001b$Bon\u001b(B \u001b$Boo\u001b(B\n\u001b$Bop\u001b(B \u001b$Boq\u001b(B \u001b$Bor\u001b(B \u001b$Bos\u001b(B \u001b$Bot\u001b(B \u001b$Bou\u001b(B \u001b$Bov\u001b(B \u001b$Bow\u001b(B \u001b$Box\u001b(B \u001b$Boy\u001b(B \u001b$Boz\u001b(B \u001b$Bo{\u001b(B \u001b$Bo|\u001b(B \u001b$Bo}\u001b(B \u001b$Bo~\u001b(B\n  \u001b$Bp!\u001b(B \u001b$Bp\"\u001b(B \u001b$Bp#\u001b(B \u001b$Bp$\u001b(B \u001b$Bp%\u001b(B \u001b$Bp&\u001b(B \u001b$Bp'\u001b(B \u001b$Bp(\u001b(B \u001b$Bp)\u001b(B \u001b$Bp*\u001b(B \u001b$Bp+\u001b(B \u001b$Bp,\u001b(B \u001b$Bp-\u001b(B \u001b$Bp.\u001b(B \u001b$Bp/\u001b(B\n\u001b$Bp0\u001b(B \u001b$Bp1\u001b(B \u001b$Bp2\u001b(B \u001b$Bp3\u001b(B \u001b$Bp4\u001b(B \u001b$Bp5\u001b(B \u001b$Bp6\u001b(B \u001b$Bp7\u001b(B \u001b$Bp8\u001b(B \u001b$Bp9\u001b(B \u001b$Bp:\u001b(B \u001b$Bp;\u001b(B \u001b$Bp<\u001b(B \u001b$Bp=\u001b(B \u001b$Bp>\u001b(B \u001b$Bp?\u001b(B\n\u001b$Bp@\u001b(B \u001b$BpA\u001b(B \u001b$BpB\u001b(B \u001b$BpC\u001b(B \u001b$BpD\u001b(B \u001b$BpE\u001b(B \u001b$BpF\u001b(B \u001b$BpG\u001b(B \u001b$BpH\u001b(B \u001b$BpI\u001b(B \u001b$BpJ\u001b(B \u001b$BpK\u001b(B \u001b$BpL\u001b(B \u001b$BpM\u001b(B \u001b$BpN\u001b(B \u001b$BpO\u001b(B\n\u001b$BpP\u001b(B \u001b$BpQ\u001b(B \u001b$BpR\u001b(B \u001b$BpS\u001b(B \u001b$BpT\u001b(B \u001b$BpU\u001b(B \u001b$BpV\u001b(B \u001b$BpW\u001b(B \u001b$BpX\u001b(B \u001b$BpY\u001b(B \u001b$BpZ\u001b(B \u001b$Bp[\u001b(B \u001b$Bp\\\u001b(B \u001b$Bp]\u001b(B \u001b$Bp^\u001b(B \u001b$Bp_\u001b(B\n\u001b$Bp`\u001b(B \u001b$Bpa\u001b(B \u001b$Bpb\u001b(B \u001b$Bpc\u001b(B \u001b$Bpd\u001b(B \u001b$Bpe\u001b(B \u001b$Bpf\u001b(B \u001b$Bpg\u001b(B \u001b$Bph\u001b(B \u001b$Bpi\u001b(B \u001b$Bpj\u001b(B \u001b$Bpk\u001b(B \u001b$Bpl\u001b(B \u001b$Bpm\u001b(B \u001b$Bpn\u001b(B \u001b$Bpo\u001b(B\n\u001b$Bpp\u001b(B \u001b$Bpq\u001b(B \u001b$Bpr\u001b(B \u001b$Bps\u001b(B \u001b$Bpt\u001b(B \u001b$Bpu\u001b(B \u001b$Bpv\u001b(B \u001b$Bpw\u001b(B \u001b$Bpx\u001b(B \u001b$Bpy\u001b(B \u001b$Bpz\u001b(B \u001b$Bp{\u001b(B \u001b$Bp|\u001b(B \u001b$Bp}\u001b(B \u001b$Bp~\u001b(B\n  \u001b$Bq!\u001b(B \u001b$Bq\"\u001b(B \u001b$Bq#\u001b(B \u001b$Bq$\u001b(B \u001b$Bq%\u001b(B \u001b$Bq&\u001b(B \u001b$Bq'\u001b(B \u001b$Bq(\u001b(B \u001b$Bq)\u001b(B \u001b$Bq*\u001b(B \u001b$Bq+\u001b(B \u001b$Bq,\u001b(B \u001b$Bq-\u001b(B \u001b$Bq.\u001b(B \u001b$Bq/\u001b(B\n\u001b$Bq0\u001b(B \u001b$Bq1\u001b(B \u001b$Bq2\u001b(B \u001b$Bq3\u001b(B \u001b$Bq4\u001b(B \u001b$Bq5\u001b(B \u001b$Bq6\u001b(B \u001b$Bq7\u001b(B \u001b$Bq8\u001b(B \u001b$Bq9\u001b(B \u001b$Bq:\u001b(B \u001b$Bq;\u001b(B \u001b$Bq<\u001b(B \u001b$Bq=\u001b(B \u001b$Bq>\u001b(B \u001b$Bq?\u001b(B\n\u001b$Bq@\u001b(B \u001b$BqA\u001b(B \u001b$BqB\u001b(B \u001b$BqC\u001b(B \u001b$BqD\u001b(B \u001b$BqE\u001b(B \u001b$BqF\u001b(B \u001b$BqG\u001b(B \u001b$BqH\u001b(B \u001b$BqI\u001b(B \u001b$BqJ\u001b(B \u001b$BqK\u001b(B \u001b$BqL\u001b(B \u001b$BqM\u001b(B \u001b$BqN\u001b(B \u001b$BqO\u001b(B\n\u001b$BqP\u001b(B \u001b$BqQ\u001b(B \u001b$BqR\u001b(B \u001b$BqS\u001b(B \u001b$BqT\u001b(B \u001b$BqU\u001b(B \u001b$BqV\u001b(B \u001b$BqW\u001b(B \u001b$BqX\u001b(B \u001b$BqY\u001b(B \u001b$BqZ\u001b(B \u001b$Bq[\u001b(B \u001b$Bq\\\u001b(B \u001b$Bq]\u001b(B \u001b$Bq^\u001b(B \u001b$Bq_\u001b(B\n\u001b$Bq`\u001b(B \u001b$Bqa\u001b(B \u001b$Bqb\u001b(B \u001b$Bqc\u001b(B \u001b$Bqd\u001b(B \u001b$Bqe\u001b(B \u001b$Bqf\u001b(B \u001b$Bqg\u001b(B \u001b$Bqh\u001b(B \u001b$Bqi\u001b(B \u001b$Bqj\u001b(B \u001b$Bqk\u001b(B \u001b$Bql\u001b(B \u001b$Bqm\u001b(B \u001b$Bqn\u001b(B \u001b$Bqo\u001b(B\n\u001b$Bqp\u001b(B \u001b$Bqq\u001b(B \u001b$Bqr\u001b(B \u001b$Bqs\u001b(B \u001b$Bqt\u001b(B \u001b$Bqu\u001b(B \u001b$Bqv\u001b(B \u001b$Bqw\u001b(B \u001b$Bqx\u001b(B \u001b$Bqy\u001b(B \u001b$Bqz\u001b(B \u001b$Bq{\u001b(B \u001b$Bq|\u001b(B \u001b$Bq}\u001b(B \u001b$Bq~\u001b(B\n  \u001b$Br!\u001b(B \u001b$Br\"\u001b(B \u001b$Br#\u001b(B \u001b$Br$\u001b(B \u001b$Br%\u001b(B \u001b$Br&\u001b(B \u001b$Br'\u001b(B \u001b$Br(\u001b(B \u001b$Br)\u001b(B \u001b$Br*\u001b(B \u001b$Br+\u001b(B \u001b$Br,\u001b(B \u001b$Br-\u001b(B \u001b$Br.\u001b(B \u001b$Br/\u001b(B\n\u001b$Br0\u001b(B \u001b$Br1\u001b(B \u001b$Br2\u001b(B \u001b$Br3\u001b(B \u001b$Br4\u001b(B \u001b$Br5\u001b(B \u001b$Br6\u001b(B \u001b$Br7\u001b(B \u001b$Br8\u001b(B \u001b$Br9\u001b(B \u001b$Br:\u001b(B \u001b$Br;\u001b(B \u001b$Br<\u001b(B \u001b$Br=\u001b(B \u001b$Br>\u001b(B \u001b$Br?\u001b(B\n\u001b$Br@\u001b(B \u001b$BrA\u001b(B \u001b$BrB\u001b(B \u001b$BrC\u001b(B \u001b$BrD\u001b(B \u001b$BrE\u001b(B \u001b$BrF\u001b(B \u001b$BrG\u001b(B \u001b$BrH\u001b(B \u001b$BrI\u001b(B \u001b$BrJ\u001b(B \u001b$BrK\u001b(B \u001b$BrL\u001b(B \u001b$BrM\u001b(B \u001b$BrN\u001b(B \u001b$BrO\u001b(B\n\u001b$BrP\u001b(B \u001b$BrQ\u001b(B \u001b$BrR\u001b(B \u001b$BrS\u001b(B \u001b$BrT\u001b(B \u001b$BrU\u001b(B \u001b$BrV\u001b(B \u001b$BrW\u001b(B \u001b$BrX\u001b(B \u001b$BrY\u001b(B \u001b$BrZ\u001b(B \u001b$Br[\u001b(B \u001b$Br\\\u001b(B \u001b$Br]\u001b(B \u001b$Br^\u001b(B \u001b$Br_\u001b(B\n\u001b$Br`\u001b(B \u001b$Bra\u001b(B \u001b$Brb\u001b(B \u001b$Brc\u001b(B \u001b$Brd\u001b(B \u001b$Bre\u001b(B \u001b$Brf\u001b(B \u001b$Brg\u001b(B \u001b$Brh\u001b(B \u001b$Bri\u001b(B \u001b$Brj\u001b(B \u001b$Brk\u001b(B \u001b$Brl\u001b(B \u001b$Brm\u001b(B \u001b$Brn\u001b(B \u001b$Bro\u001b(B\n\u001b$Brp\u001b(B \u001b$Brq\u001b(B \u001b$Brr\u001b(B \u001b$Brs\u001b(B \u001b$Brt\u001b(B \u001b$Bru\u001b(B \u001b$Brv\u001b(B \u001b$Brw\u001b(B \u001b$Brx\u001b(B \u001b$Bry\u001b(B \u001b$Brz\u001b(B \u001b$Br{\u001b(B \u001b$Br|\u001b(B \u001b$Br}\u001b(B \u001b$Br~\u001b(B\n  \u001b$Bs!\u001b(B \u001b$Bs\"\u001b(B \u001b$Bs#\u001b(B \u001b$Bs$\u001b(B \u001b$Bs%\u001b(B \u001b$Bs&\u001b(B \u001b$Bs'\u001b(B \u001b$Bs(\u001b(B \u001b$Bs)\u001b(B \u001b$Bs*\u001b(B \u001b$Bs+\u001b(B \u001b$Bs,\u001b(B \u001b$Bs-\u001b(B \u001b$Bs.\u001b(B \u001b$Bs/\u001b(B\n\u001b$Bs0\u001b(B \u001b$Bs1\u001b(B \u001b$Bs2\u001b(B \u001b$Bs3\u001b(B \u001b$Bs4\u001b(B \u001b$Bs5\u001b(B \u001b$Bs6\u001b(B \u001b$Bs7\u001b(B \u001b$Bs8\u001b(B \u001b$Bs9\u001b(B \u001b$Bs:\u001b(B \u001b$Bs;\u001b(B \u001b$Bs<\u001b(B \u001b$Bs=\u001b(B \u001b$Bs>\u001b(B \u001b$Bs?\u001b(B\n\u001b$Bs@\u001b(B \u001b$BsA\u001b(B \u001b$BsB\u001b(B \u001b$BsC\u001b(B \u001b$BsD\u001b(B \u001b$BsE\u001b(B \u001b$BsF\u001b(B \u001b$BsG\u001b(B \u001b$BsH\u001b(B \u001b$BsI\u001b(B \u001b$BsJ\u001b(B \u001b$BsK\u001b(B \u001b$BsL\u001b(B \u001b$BsM\u001b(B \u001b$BsN\u001b(B \u001b$BsO\u001b(B\n\u001b$BsP\u001b(B \u001b$BsQ\u001b(B \u001b$BsR\u001b(B \u001b$BsS\u001b(B \u001b$BsT\u001b(B \u001b$BsU\u001b(B \u001b$BsV\u001b(B \u001b$BsW\u001b(B \u001b$BsX\u001b(B \u001b$BsY\u001b(B \u001b$BsZ\u001b(B \u001b$Bs[\u001b(B \u001b$Bs\\\u001b(B \u001b$Bs]\u001b(B \u001b$Bs^\u001b(B \u001b$Bs_\u001b(B\n\u001b$Bs`\u001b(B \u001b$Bsa\u001b(B \u001b$Bsb\u001b(B \u001b$Bsc\u001b(B \u001b$Bsd\u001b(B \u001b$Bse\u001b(B \u001b$Bsf\u001b(B \u001b$Bsg\u001b(B \u001b$Bsh\u001b(B \u001b$Bsi\u001b(B \u001b$Bsj\u001b(B \u001b$Bsk\u001b(B \u001b$Bsl\u001b(B \u001b$Bsm\u001b(B \u001b$Bsn\u001b(B \u001b$Bso\u001b(B\n\u001b$Bsp\u001b(B \u001b$Bsq\u001b(B \u001b$Bsr\u001b(B \u001b$Bss\u001b(B \u001b$Bst\u001b(B \u001b$Bsu\u001b(B \u001b$Bsv\u001b(B \u001b$Bsw\u001b(B \u001b$Bsx\u001b(B \u001b$Bsy\u001b(B \u001b$Bsz\u001b(B \u001b$Bs{\u001b(B \u001b$Bs|\u001b(B \u001b$Bs}\u001b(B \u001b$Bs~\u001b(B\n  \u001b$Bt!\u001b(B \u001b$Bt\"\u001b(B \u001b$Bt#\u001b(B \u001b$Bt$\u001b(B \u001b$Bt%\u001b(B \u001b$Bt&\u001b(B\n  \u001b$Bu!\u001b(B \u001b$Bu\"\u001b(B \u001b$Bu#\u001b(B \u001b$Bu$\u001b(B \u001b$Bu%\u001b(B \u001b$Bu&\u001b(B \u001b$Bu'\u001b(B \u001b$Bu(\u001b(B \u001b$Bu)\u001b(B \u001b$Bu*\u001b(B \u001b$Bu+\u001b(B \u001b$Bu,\u001b(B \u001b$Bu-\u001b(B \u001b$Bu.\u001b(B \u001b$Bu/\u001b(B\n\u001b$Bu0\u001b(B \u001b$Bu1\u001b(B \u001b$Bu2\u001b(B \u001b$Bu3\u001b(B \u001b$Bu4\u001b(B \u001b$Bu5\u001b(B \u001b$Bu6\u001b(B \u001b$Bu7\u001b(B \u001b$Bu8\u001b(B \u001b$Bu9\u001b(B \u001b$Bu:\u001b(B \u001b$Bu;\u001b(B \u001b$Bu<\u001b(B \u001b$Bu=\u001b(B \u001b$Bu>\u001b(B \u001b$Bu?\u001b(B\n\u001b$Bu@\u001b(B \u001b$BuA\u001b(B \u001b$BuB\u001b(B \u001b$BuC\u001b(B \u001b$BuD\u001b(B \u001b$BuE\u001b(B \u001b$BuF\u001b(B \u001b$BuG\u001b(B \u001b$BuH\u001b(B \u001b$BuI\u001b(B \u001b$BuJ\u001b(B \u001b$BuK\u001b(B \u001b$BuL\u001b(B \u001b$BuM\u001b(B \u001b$BuN\u001b(B \u001b$BuO\u001b(B\n\u001b$BuP\u001b(B \u001b$BuQ\u001b(B \u001b$BuR\u001b(B \u001b$BuS\u001b(B \u001b$BuT\u001b(B \u001b$BuU\u001b(B \u001b$BuV\u001b(B \u001b$BuW\u001b(B \u001b$BuX\u001b(B \u001b$BuY\u001b(B \u001b$BuZ\u001b(B \u001b$Bu[\u001b(B \u001b$Bu\\\u001b(B \u001b$Bu]\u001b(B \u001b$Bu^\u001b(B \u001b$Bu_\u001b(B\n\u001b$Bu`\u001b(B \u001b$Bua\u001b(B \u001b$Bub\u001b(B \u001b$Buc\u001b(B \u001b$Bud\u001b(B \u001b$Bue\u001b(B \u001b$Buf\u001b(B \u001b$Bug\u001b(B \u001b$Buh\u001b(B \u001b$Bui\u001b(B \u001b$Buj\u001b(B \u001b$Buk\u001b(B \u001b$Bul\u001b(B \u001b$Bum\u001b(B \u001b$Bun\u001b(B \u001b$Buo\u001b(B\n\u001b$Bup\u001b(B \u001b$Buq\u001b(B \u001b$Bur\u001b(B \u001b$Bus\u001b(B \u001b$But\u001b(B \u001b$Buu\u001b(B \u001b$Buv\u001b(B \u001b$Buw\u001b(B \u001b$Bux\u001b(B \u001b$Buy\u001b(B \u001b$Buz\u001b(B \u001b$Bu{\u001b(B \u001b$Bu|\u001b(B \u001b$Bu}\u001b(B \u001b$Bu~\u001b(B\n  \u001b$Bv!\u001b(B \u001b$Bv\"\u001b(B \u001b$Bv#\u001b(B \u001b$Bv$\u001b(B \u001b$Bv%\u001b(B \u001b$Bv&\u001b(B \u001b$Bv'\u001b(B \u001b$Bv(\u001b(B \u001b$Bv)\u001b(B \u001b$Bv*\u001b(B \u001b$Bv+\u001b(B \u001b$Bv,\u001b(B \u001b$Bv-\u001b(B \u001b$Bv.\u001b(B \u001b$Bv/\u001b(B\n\u001b$Bv0\u001b(B \u001b$Bv1\u001b(B \u001b$Bv2\u001b(B \u001b$Bv3\u001b(B \u001b$Bv4\u001b(B \u001b$Bv5\u001b(B \u001b$Bv6\u001b(B \u001b$Bv7\u001b(B \u001b$Bv8\u001b(B \u001b$Bv9\u001b(B \u001b$Bv:\u001b(B \u001b$Bv;\u001b(B \u001b$Bv<\u001b(B \u001b$Bv=\u001b(B \u001b$Bv>\u001b(B \u001b$Bv?\u001b(B\n\u001b$Bv@\u001b(B \u001b$BvA\u001b(B \u001b$BvB\u001b(B \u001b$BvC\u001b(B \u001b$BvD\u001b(B \u001b$BvE\u001b(B \u001b$BvF\u001b(B \u001b$BvG\u001b(B \u001b$BvH\u001b(B \u001b$BvI\u001b(B \u001b$BvJ\u001b(B \u001b$BvK\u001b(B \u001b$BvL\u001b(B \u001b$BvM\u001b(B \u001b$BvN\u001b(B \u001b$BvO\u001b(B\n\u001b$BvP\u001b(B \u001b$BvQ\u001b(B \u001b$BvR\u001b(B \u001b$BvS\u001b(B \u001b$BvT\u001b(B \u001b$BvU\u001b(B \u001b$BvV\u001b(B \u001b$BvW\u001b(B \u001b$BvX\u001b(B \u001b$BvY\u001b(B \u001b$BvZ\u001b(B \u001b$Bv[\u001b(B \u001b$Bv\\\u001b(B \u001b$Bv]\u001b(B \u001b$Bv^\u001b(B \u001b$Bv_\u001b(B\n\u001b$Bv`\u001b(B \u001b$Bva\u001b(B \u001b$Bvb\u001b(B \u001b$Bvc\u001b(B \u001b$Bvd\u001b(B \u001b$Bve\u001b(B \u001b$Bvf\u001b(B \u001b$Bvg\u001b(B \u001b$Bvh\u001b(B \u001b$Bvi\u001b(B \u001b$Bvj\u001b(B \u001b$Bvk\u001b(B \u001b$Bvl\u001b(B \u001b$Bvm\u001b(B \u001b$Bvn\u001b(B \u001b$Bvo\u001b(B\n\u001b$Bvp\u001b(B \u001b$Bvq\u001b(B \u001b$Bvr\u001b(B \u001b$Bvs\u001b(B \u001b$Bvt\u001b(B \u001b$Bvu\u001b(B \u001b$Bvv\u001b(B \u001b$Bvw\u001b(B \u001b$Bvx\u001b(B \u001b$Bvy\u001b(B \u001b$Bvz\u001b(B \u001b$Bv{\u001b(B \u001b$Bv|\u001b(B \u001b$Bv}\u001b(B \u001b$Bv~\u001b(B\n  \u001b$Bw!\u001b(B \u001b$Bw\"\u001b(B \u001b$Bw#\u001b(B \u001b$Bw$\u001b(B \u001b$Bw%\u001b(B \u001b$Bw&\u001b(B \u001b$Bw'\u001b(B \u001b$Bw(\u001b(B \u001b$Bw)\u001b(B \u001b$Bw*\u001b(B \u001b$Bw+\u001b(B \u001b$Bw,\u001b(B \u001b$Bw-\u001b(B \u001b$Bw.\u001b(B \u001b$Bw/\u001b(B\n\u001b$Bw0\u001b(B \u001b$Bw1\u001b(B \u001b$Bw2\u001b(B \u001b$Bw3\u001b(B \u001b$Bw4\u001b(B \u001b$Bw5\u001b(B \u001b$Bw6\u001b(B \u001b$Bw7\u001b(B \u001b$Bw8\u001b(B \u001b$Bw9\u001b(B \u001b$Bw:\u001b(B \u001b$Bw;\u001b(B \u001b$Bw<\u001b(B \u001b$Bw=\u001b(B \u001b$Bw>\u001b(B \u001b$Bw?\u001b(B\n\u001b$Bw@\u001b(B \u001b$BwA\u001b(B \u001b$BwB\u001b(B \u001b$BwC\u001b(B \u001b$BwD\u001b(B \u001b$BwE\u001b(B \u001b$BwF\u001b(B \u001b$BwG\u001b(B \u001b$BwH\u001b(B \u001b$BwI\u001b(B \u001b$BwJ\u001b(B \u001b$BwK\u001b(B \u001b$BwL\u001b(B \u001b$BwM\u001b(B \u001b$BwN\u001b(B \u001b$BwO\u001b(B\n\u001b$BwP\u001b(B \u001b$BwQ\u001b(B \u001b$BwR\u001b(B \u001b$BwS\u001b(B \u001b$BwT\u001b(B \u001b$BwU\u001b(B \u001b$BwV\u001b(B \u001b$BwW\u001b(B \u001b$BwX\u001b(B \u001b$BwY\u001b(B \u001b$BwZ\u001b(B \u001b$Bw[\u001b(B \u001b$Bw\\\u001b(B \u001b$Bw]\u001b(B \u001b$Bw^\u001b(B \u001b$Bw_\u001b(B\n\u001b$Bw`\u001b(B \u001b$Bwa\u001b(B \u001b$Bwb\u001b(B \u001b$Bwc\u001b(B \u001b$Bwd\u001b(B \u001b$Bwe\u001b(B \u001b$Bwf\u001b(B \u001b$Bwg\u001b(B \u001b$Bwh\u001b(B \u001b$Bwi\u001b(B \u001b$Bwj\u001b(B \u001b$Bwk\u001b(B \u001b$Bwl\u001b(B \u001b$Bwm\u001b(B \u001b$Bwn\u001b(B \u001b$Bwo\u001b(B\n\u001b$Bwp\u001b(B \u001b$Bwq\u001b(B \u001b$Bwr\u001b(B \u001b$Bws\u001b(B \u001b$Bwt\u001b(B \u001b$Bwu\u001b(B \u001b$Bwv\u001b(B \u001b$Bww\u001b(B \u001b$Bwx\u001b(B \u001b$Bwy\u001b(B \u001b$Bwz\u001b(B \u001b$Bw{\u001b(B \u001b$Bw|\u001b(B \u001b$Bw}\u001b(B \u001b$Bw~\u001b(B\n  \u001b$Bx!\u001b(B \u001b$Bx\"\u001b(B \u001b$Bx#\u001b(B \u001b$Bx$\u001b(B \u001b$Bx%\u001b(B \u001b$Bx&\u001b(B \u001b$Bx'\u001b(B \u001b$Bx(\u001b(B \u001b$Bx)\u001b(B \u001b$Bx*\u001b(B \u001b$Bx+\u001b(B \u001b$Bx,\u001b(B \u001b$Bx-\u001b(B \u001b$Bx.\u001b(B \u001b$Bx/\u001b(B\n\u001b$Bx0\u001b(B \u001b$Bx1\u001b(B \u001b$Bx2\u001b(B \u001b$Bx3\u001b(B \u001b$Bx4\u001b(B \u001b$Bx5\u001b(B \u001b$Bx6\u001b(B \u001b$Bx7\u001b(B \u001b$Bx8\u001b(B \u001b$Bx9\u001b(B \u001b$Bx:\u001b(B \u001b$Bx;\u001b(B \u001b$Bx<\u001b(B \u001b$Bx=\u001b(B \u001b$Bx>\u001b(B \u001b$Bx?\u001b(B\n\u001b$Bx@\u001b(B \u001b$BxA\u001b(B \u001b$BxB\u001b(B \u001b$BxC\u001b(B \u001b$BxD\u001b(B \u001b$BxE\u001b(B \u001b$BxF\u001b(B \u001b$BxG\u001b(B \u001b$BxH\u001b(B \u001b$BxI\u001b(B \u001b$BxJ\u001b(B \u001b$BxK\u001b(B \u001b$BxL\u001b(B \u001b$BxM\u001b(B \u001b$BxN\u001b(B \u001b$BxO\u001b(B\n\u001b$BxP\u001b(B \u001b$BxQ\u001b(B \u001b$BxR\u001b(B \u001b$BxS\u001b(B \u001b$BxT\u001b(B \u001b$BxU\u001b(B \u001b$BxV\u001b(B \u001b$BxW\u001b(B \u001b$BxX\u001b(B \u001b$BxY\u001b(B \u001b$BxZ\u001b(B \u001b$Bx[\u001b(B \u001b$Bx\\\u001b(B \u001b$Bx]\u001b(B \u001b$Bx^\u001b(B \u001b$Bx_\u001b(B\n\u001b$Bx`\u001b(B \u001b$Bxa\u001b(B \u001b$Bxb\u001b(B \u001b$Bxc\u001b(B \u001b$Bxd\u001b(B \u001b$Bxe\u001b(B \u001b$Bxf\u001b(B \u001b$Bxg\u001b(B \u001b$Bxh\u001b(B \u001b$Bxi\u001b(B \u001b$Bxj\u001b(B \u001b$Bxk\u001b(B \u001b$Bxl\u001b(B \u001b$Bxm\u001b(B \u001b$Bxn\u001b(B \u001b$Bxo\u001b(B\n\u001b$Bxp\u001b(B \u001b$Bxq\u001b(B \u001b$Bxr\u001b(B \u001b$Bxs\u001b(B \u001b$Bxt\u001b(B \u001b$Bxu\u001b(B \u001b$Bxv\u001b(B \u001b$Bxw\u001b(B \u001b$Bxx\u001b(B \u001b$Bxy\u001b(B \u001b$Bxz\u001b(B \u001b$Bx{\u001b(B \u001b$Bx|\u001b(B \u001b$Bx}\u001b(B \u001b$Bx~\u001b(B\n  \u001b$(DTc\u001b(B \u001b$(D\\_\u001b(B \u001b$(Ddi\u001b(B \u001b$(Dcx\u001b(B \u001b$(DY!\u001b(B \u001b$(D1;\u001b(B \u001b$(Ds:\u001b(B \u001b$(DB-\u001b(B \u001b$(DC|\u001b(B \u001b$(DdP\u001b(B \u001b$(DB?\u001b(B \u001b$(D<t\u001b(B \u001b$(D0)\u001b(B \u001b$(D0H\u001b(B \u001b$(Ds;\u001b(B\n\u001b$(D0R\u001b(B \u001b$(D0T\u001b(B \u001b$(D0c\u001b(B \u001b$(D0n\u001b(B \u001b$(D1'\u001b(B \u001b$(D1#\u001b(B \u001b$(D1,\u001b(B \u001b$(D1)\u001b(B \u001b$(D1>\u001b(B \u001b$(D1_\u001b(B \u001b$(D1X\u001b(B \u001b$(D1H\u001b(B \u001b$(D1W\u001b(B \u001b$(D1c\u001b(B \u001b$(D1t\u001b(B \u001b$(D1a\u001b(B\n\u001b$(D2#\u001b(B \u001b$(Ds<\u001b(B \u001b$(D2;\u001b(B \u001b$(D2f\u001b(B \u001b$(D2m\u001b(B \u001b$(D2u\u001b(B \u001b$(D2|\u001b(B \u001b$(Ds=\u001b(B \u001b$(D35\u001b(B \u001b$(D3X\u001b(B \u001b$(D3[\u001b(B \u001b$(D3e\u001b(B \u001b$(D3n\u001b(B \u001b$(D3{\u001b(B \u001b$(Ds>\u001b(B \u001b$(Ds?\u001b(B\n\u001b$(D4@\u001b(B \u001b$(D4G\u001b(B \u001b$(D4P\u001b(B \u001b$(D4^\u001b(B \u001b$(Ds@\u001b(B \u001b$(D5*\u001b(B \u001b$(DsA\u001b(B \u001b$(D5/\u001b(B \u001b$(D5D\u001b(B \u001b$(D5h\u001b(B \u001b$(DsB\u001b(B \u001b$(D7B\u001b(B \u001b$(D7d\u001b(B \u001b$(D7h\u001b(B \u001b$(D7g\u001b(B \u001b$(DsC\u001b(B\n\u001b$(DsD\u001b(B \u001b$(DsE\u001b(B \u001b$(D8N\u001b(B \u001b$(D8a\u001b(B \u001b$(D8u\u001b(B \u001b$(D8w\u001b(B \u001b$(D8x\u001b(B \u001b$(D8|\u001b(B \u001b$(D9/\u001b(B \u001b$(D97\u001b(B \u001b$(D:>\u001b(B \u001b$(D:[\u001b(B \u001b$(DM*\u001b(B \u001b$(D:a\u001b(B \u001b$(DsF\u001b(B \u001b$(D:k\u001b(B\n\u001b$(D;3\u001b(B \u001b$(D;8\u001b(B \u001b$(DsG\u001b(B \u001b$(D;J\u001b(B \u001b$(DsH\u001b(B \u001b$(DsI\u001b(B \u001b$(D;P\u001b(B \u001b$(D;^\u001b(B \u001b$(D;t\u001b(B \u001b$(D;u\u001b(B \u001b$(D;y\u001b(B \u001b$(D<d\u001b(B \u001b$(D<m\u001b(B \u001b$(D<~\u001b(B \u001b$(DsJ\u001b(B\n  \u001b$(D=B\u001b(B \u001b$(D=g\u001b(B \u001b$(DsK\u001b(B \u001b$(D=p\u001b(B \u001b$(D>0\u001b(B \u001b$(D>,\u001b(B \u001b$(DsL\u001b(B \u001b$(D>3\u001b(B \u001b$(D>=\u001b(B \u001b$(D>M\u001b(B \u001b$(D>I\u001b(B \u001b$(D>d\u001b(B \u001b$(D?(\u001b(B \u001b$(D?I\u001b(B \u001b$(D@D\u001b(B\n\u001b$(D@d\u001b(B \u001b$(D@t\u001b(B \u001b$(DA&\u001b(B \u001b$(DsM\u001b(B \u001b$(DAu\u001b(B \u001b$(DA|\u001b(B \u001b$Bz6\u001b(B \u001b$(DAx\u001b(B \u001b$(DB+\u001b(B \u001b$(DB!\u001b(B \u001b$(DB%\u001b(B \u001b$(DsO\u001b(B \u001b$(DB8\u001b(B \u001b$(DB:\u001b(B \u001b$(DsP\u001b(B \u001b$(DBD\u001b(B\n\u001b$(DBR\u001b(B \u001b$(DBW\u001b(B \u001b$(DB[\u001b(B \u001b$(DB^\u001b(B \u001b$(DBm\u001b(B \u001b$(DBp\u001b(B \u001b$(DsQ\u001b(B \u001b$(DC!\u001b(B \u001b$(DC5\u001b(B \u001b$(DCI\u001b(B \u001b$(DC9\u001b(B \u001b$(DsR\u001b(B \u001b$(DCX\u001b(B \u001b$(DC~\u001b(B \u001b$(DsS\u001b(B \u001b$(DDL\u001b(B\n\u001b$(DsT\u001b(B \u001b$(DDY\u001b(B \u001b$(DDj\u001b(B \u001b$(DD}\u001b(B \u001b$(DsU\u001b(B \u001b$(DE'\u001b(B \u001b$(DE5\u001b(B \u001b$(DE6\u001b(B \u001b$(DsV\u001b(B \u001b$(DEU\u001b(B \u001b$(DF8\u001b(B \u001b$(DFW\u001b(B \u001b$(DF`\u001b(B \u001b$(DFj\u001b(B \u001b$(DFc\u001b(B \u001b$(DG!\u001b(B\n\u001b$(DG+\u001b(B \u001b$(DGG\u001b(B \u001b$(DGC\u001b(B \u001b$(DGK\u001b(B \u001b$(DGO\u001b(B \u001b$(DGY\u001b(B \u001b$(DsW\u001b(B \u001b$(DsX\u001b(B \u001b$(DGf\u001b(B \u001b$(DGn\u001b(B \u001b$(DG|\u001b(B \u001b$(DGk\u001b(B \u001b$(DGp\u001b(B \u001b$(DH1\u001b(B \u001b$(DHe\u001b(B \u001b$(DHx\u001b(B\n\u001b$(DI&\u001b(B \u001b$(DI+\u001b(B \u001b$(DI-\u001b(B \u001b$(DsY\u001b(B \u001b$(DIJ\u001b(B \u001b$(DIS\u001b(B \u001b$(DIi\u001b(B \u001b$(DIc\u001b(B \u001b$(DI|\u001b(B \u001b$(DIt\u001b(B \u001b$(DIu\u001b(B \u001b$(DsZ\u001b(B \u001b$(DJ3\u001b(B \u001b$(DJ=\u001b(B \u001b$(DJo\u001b(B\n  \u001b$(DJq\u001b(B \u001b$(DK.\u001b(B \u001b$(Ds[\u001b(B \u001b$(DKJ\u001b(B \u001b$(DKf\u001b(B \u001b$(DKj\u001b(B \u001b$(DKp\u001b(B \u001b$(DKt\u001b(B \u001b$(DKn\u001b(B \u001b$(DL%\u001b(B \u001b$(DKy\u001b(B \u001b$(DL+\u001b(B \u001b$(DL.\u001b(B \u001b$(DL-\u001b(B \u001b$(DL2\u001b(B\n\u001b$(DLB\u001b(B \u001b$(DLP\u001b(B \u001b$(DLY\u001b(B \u001b$(Ds\\\u001b(B \u001b$(DM;\u001b(B \u001b$(Ds]\u001b(B \u001b$(DN;\u001b(B \u001b$(Ds^\u001b(B \u001b$(DN:\u001b(B \u001b$(DNC\u001b(B \u001b$(Ds_\u001b(B \u001b$(DNr\u001b(B \u001b$(D3]\u001b(B \u001b$(DOU\u001b(B \u001b$(DOb\u001b(B \u001b$(DOi\u001b(B\n\u001b$(DOm\u001b(B \u001b$(Ds`\u001b(B \u001b$(Dsa\u001b(B \u001b$(Dsb\u001b(B \u001b$(Dsc\u001b(B \u001b$(DPe\u001b(B \u001b$(Dsd\u001b(B \u001b$(DPi\u001b(B \u001b$(DQh\u001b(B \u001b$(Dse\u001b(B \u001b$(Dsf\u001b(B \u001b$(DQl\u001b(B \u001b$(DR;\u001b(B \u001b$(Dsg\u001b(B \u001b$(DSa\u001b(B \u001b$(DSh\u001b(B\n\u001b$(DT'\u001b(B \u001b$(Dsh\u001b(B \u001b$(Dsi\u001b(B \u001b$(DTT\u001b(B \u001b$(DTr\u001b(B \u001b$(DU.\u001b(B \u001b$(Dsj\u001b(B \u001b$(DW^\u001b(B \u001b$(Dsk\u001b(B \u001b$(DX\"\u001b(B \u001b$(DX7\u001b(B \u001b$(DXA\u001b(B \u001b$(DXQ\u001b(B \u001b$(DXt\u001b(B \u001b$(DYF\u001b(B \u001b$(DYH\u001b(B\n\u001b$(DYQ\u001b(B \u001b$(Dsl\u001b(B \u001b$(Dsm\u001b(B \u001b$(Dsn\u001b(B \u001b$(Dso\u001b(B \u001b$(Dsp\u001b(B \u001b$(D\\S\u001b(B \u001b$(D]H\u001b(B \u001b$(D]T\u001b(B \u001b$(D]j\u001b(B \u001b$(D]z\u001b(B \u001b$(D^$\u001b(B \u001b$(D^0\u001b(B \u001b$(Dsq\u001b(B \u001b$(D^5\u001b(B \u001b$(D^K\u001b(B\n\u001b$(Dsr\u001b(B \u001b$(D_9\u001b(B \u001b$(Dss\u001b(B \u001b$(D_C\u001b(B \u001b$(Dst\u001b(B \u001b$(Dsu\u001b(B \u001b$(D`Y\u001b(B \u001b$(Dsv\u001b(B \u001b$(Dsw\u001b(B \u001b$(Dab\u001b(B \u001b$(Dsx\u001b(B \u001b$(Dsy\u001b(B \u001b$(Dsz\u001b(B \u001b$(DbG\u001b(B \u001b$(Dc(\u001b(B\n  \u001b$(Dc&\u001b(B \u001b$(Dc)\u001b(B \u001b$(Dc/\u001b(B \u001b$(Dc0\u001b(B \u001b$(Dc*\u001b(B \u001b$(Dc+\u001b(B \u001b$(Dc<\u001b(B \u001b$(DcA\u001b(B \u001b$(Dc?\u001b(B \u001b$(DcU\u001b(B \u001b$(DcX\u001b(B \u001b$(DcV\u001b(B \u001b$(Dc_\u001b(B \u001b$(Dcc\u001b(B \u001b$(Dca\u001b(B\n\u001b$(DcT\u001b(B \u001b$(Dci\u001b(B \u001b$(Dd&\u001b(B \u001b$(Dcq\u001b(B \u001b$(Dcr\u001b(B \u001b$(DdK\u001b(B \u001b$(DdA\u001b(B \u001b$(DdC\u001b(B \u001b$(Dd>\u001b(B \u001b$(Ds{\u001b(B \u001b$(Dd@\u001b(B \u001b$(DdG\u001b(B \u001b$(Dd?\u001b(B \u001b$(Dd`\u001b(B \u001b$(Dd^\u001b(B \u001b$(DdQ\u001b(B\n\u001b$(Ds|\u001b(B \u001b$(Dd\\\u001b(B \u001b$(DdR\u001b(B \u001b$(Dd[\u001b(B \u001b$(DdT\u001b(B \u001b$(Ddz\u001b(B \u001b$(Ddo\u001b(B \u001b$(De3\u001b(B \u001b$(De?\u001b(B \u001b$(DeI\u001b(B \u001b$(DeP\u001b(B \u001b$(Deb\u001b(B \u001b$(Dej\u001b(B \u001b$(Dek\u001b(B \u001b$(Ds}\u001b(B \u001b$(Ds~\u001b(B\n\u001b$(Dt!\u001b(B \u001b$(Dfh\u001b(B \u001b$(Dfo\u001b(B \u001b$(Dg,\u001b(B \u001b$(Dt\"\u001b(B \u001b$(Dg.\u001b(B \u001b$(Dtc\u001b(B \u001b$(Dg1\u001b(B \u001b$(Dt$\u001b(B \u001b$(Dg2\u001b(B \u001b$(Dh1\u001b(B \u001b$(Dh6\u001b(B \u001b$(Dt%\u001b(B \u001b$(Dt&\u001b(B \u001b$(Dh]\u001b(B \u001b$(Dt'\u001b(B\n\u001b$(Dt(\u001b(B \u001b$(DiQ\u001b(B \u001b$(Dt)\u001b(B \u001b$(Dim\u001b(B \u001b$(DjM\u001b(B \u001b$(Dt*\u001b(B \u001b$(Dj[\u001b(B \u001b$(Djf\u001b(B \u001b$(Djj\u001b(B \u001b$(Dk%\u001b(B \u001b$(Dk{\u001b(B \u001b$(Dkz\u001b(B \u001b$(Dt+\u001b(B \u001b$(DlV\u001b(B \u001b$(Dt,\u001b(B \u001b$B|o\u001b(B\n\u001b$B|p\u001b(B \u001b$(Ds!\u001b(B \u001b$(Ds\"\u001b(B \u001b$(Ds#\u001b(B \u001b$(Ds$\u001b(B \u001b$(Ds%\u001b(B \u001b$(Ds&\u001b(B \u001b$(Ds'\u001b(B \u001b$(Ds(\u001b(B \u001b$(Ds)\u001b(B \u001b$(Ds*\u001b(B \u001b$B|{\u001b(B \u001b$B||\u001b(B \u001b$(Ds5\u001b(B \u001b$(Ds6\u001b(B\n  \u001b$B}!\u001b(B \u001b$B}\"\u001b(B \u001b$B}#\u001b(B \u001b$B}$\u001b(B \u001b$B}%\u001b(B \u001b$B}&\u001b(B \u001b$B}'\u001b(B \u001b$B}(\u001b(B \u001b$B})\u001b(B \u001b$B}*\u001b(B \u001b$B}+\u001b(B \u001b$B},\u001b(B \u001b$B}-\u001b(B \u001b$B}.\u001b(B \u001b$B}/\u001b(B\n\u001b$B}0\u001b(B \u001b$B}1\u001b(B \u001b$B}2\u001b(B \u001b$B}3\u001b(B \u001b$B}4\u001b(B \u001b$B}5\u001b(B \u001b$B}6\u001b(B \u001b$B}7\u001b(B \u001b$B}8\u001b(B \u001b$B}9\u001b(B \u001b$B}:\u001b(B \u001b$B};\u001b(B \u001b$B}<\u001b(B \u001b$B}=\u001b(B \u001b$B}>\u001b(B \u001b$B}?\u001b(B\n\u001b$B}@\u001b(B \u001b$B}A\u001b(B \u001b$B}B\u001b(B \u001b$B}C\u001b(B \u001b$B}D\u001b(B \u001b$B}E\u001b(B \u001b$B}F\u001b(B \u001b$B}G\u001b(B \u001b$B}H\u001b(B \u001b$B}I\u001b(B \u001b$B}J\u001b(B \u001b$B}K\u001b(B \u001b$B}L\u001b(B \u001b$B}M\u001b(B \u001b$B}N\u001b(B \u001b$B}O\u001b(B\n\u001b$B}P\u001b(B \u001b$B}Q\u001b(B \u001b$B}R\u001b(B \u001b$B}S\u001b(B \u001b$B}T\u001b(B \u001b$B}U\u001b(B \u001b$B}V\u001b(B \u001b$B}W\u001b(B \u001b$B}X\u001b(B \u001b$B}Y\u001b(B \u001b$B}Z\u001b(B \u001b$B}[\u001b(B \u001b$B}\\\u001b(B \u001b$B}]\u001b(B \u001b$B}^\u001b(B \u001b$B}_\u001b(B\n\u001b$B}`\u001b(B \u001b$B}a\u001b(B \u001b$B}b\u001b(B \u001b$B}c\u001b(B \u001b$B}d\u001b(B \u001b$B}e\u001b(B \u001b$B}f\u001b(B \u001b$B}g\u001b(B \u001b$B}h\u001b(B \u001b$B}i\u001b(B \u001b$B}j\u001b(B \u001b$B}k\u001b(B \u001b$B}l\u001b(B \u001b$B}m\u001b(B \u001b$B}n\u001b(B \u001b$B}o\u001b(B\n\u001b$B}p\u001b(B \u001b$B}q\u001b(B \u001b$B}r\u001b(B \u001b$B}s\u001b(B \u001b$B}t\u001b(B \u001b$B}u\u001b(B \u001b$B}v\u001b(B \u001b$B}w\u001b(B \u001b$B}x\u001b(B \u001b$B}y\u001b(B \u001b$B}z\u001b(B \u001b$B}{\u001b(B \u001b$B}|\u001b(B \u001b$B}}\u001b(B \u001b$B}~\u001b(B\n  \u001b$B~!\u001b(B \u001b$B~\"\u001b(B \u001b$B~#\u001b(B \u001b$B~$\u001b(B \u001b$B~%\u001b(B \u001b$B~&\u001b(B \u001b$B~'\u001b(B \u001b$B~(\u001b(B \u001b$B~)\u001b(B \u001b$B~*\u001b(B \u001b$B~+\u001b(B \u001b$B~,\u001b(B \u001b$B~-\u001b(B \u001b$B~.\u001b(B \u001b$B~/\u001b(B\n\u001b$B~0\u001b(B \u001b$B~1\u001b(B \u001b$B~2\u001b(B \u001b$B~3\u001b(B \u001b$B~4\u001b(B \u001b$B~5\u001b(B \u001b$B~6\u001b(B \u001b$B~7\u001b(B \u001b$B~8\u001b(B \u001b$B~9\u001b(B \u001b$B~:\u001b(B \u001b$B~;\u001b(B \u001b$B~<\u001b(B \u001b$B~=\u001b(B \u001b$B~>\u001b(B \u001b$B~?\u001b(B\n\u001b$B~@\u001b(B \u001b$B~A\u001b(B \u001b$B~B\u001b(B \u001b$B~C\u001b(B \u001b$B~D\u001b(B \u001b$B~E\u001b(B \u001b$B~F\u001b(B \u001b$B~G\u001b(B \u001b$B~H\u001b(B \u001b$B~I\u001b(B \u001b$B~J\u001b(B \u001b$B~K\u001b(B \u001b$B~L\u001b(B \u001b$B~M\u001b(B \u001b$B~N\u001b(B \u001b$B~O\u001b(B\n\u001b$B~P\u001b(B \u001b$B~Q\u001b(B \u001b$B~R\u001b(B \u001b$B~S\u001b(B \u001b$B~T\u001b(B \u001b$B~U\u001b(B \u001b$B~V\u001b(B \u001b$B~W\u001b(B \u001b$B~X\u001b(B \u001b$B~Y\u001b(B \u001b$B~Z\u001b(B \u001b$B~[\u001b(B \u001b$B~\\\u001b(B \u001b$B~]\u001b(B \u001b$B~^\u001b(B \u001b$B~_\u001b(B\n\u001b$B~`\u001b(B \u001b$B~a\u001b(B \u001b$B~b\u001b(B \u001b$B~c\u001b(B \u001b$B~d\u001b(B \u001b$B~e\u001b(B \u001b$B~f\u001b(B \u001b$B~g\u001b(B \u001b$B~h\u001b(B \u001b$B~i\u001b(B \u001b$B~j\u001b(B \u001b$B~k\u001b(B \u001b$B~l\u001b(B \u001b$B~m\u001b(B \u001b$B~n\u001b(B \u001b$B~o\u001b(B\n\u001b$B~p\u001b(B \u001b$B~q\u001b(B \u001b$B~r\u001b(B \u001b$B~s\u001b(B \u001b$B~t\u001b(B \u001b$B~u\u001b(B \u001b$B~v\u001b(B \u001b$B~w\u001b(B \u001b$B~x\u001b(B \u001b$B~y\u001b(B \u001b$B~z\u001b(B \u001b$B~{\u001b(B \u001b$B~|\u001b(B \u001b$B~}\u001b(B \u001b$B~~\u001b(B\n                              \u001b$(D\"/\u001b(B\n\u001b$(D\"0\u001b(B \u001b$(D\"1\u001b(B \u001b$(D\"2\u001b(B \u001b$(D\"3\u001b(B \u001b$(D\"4\u001b(B \u001b$(D\"5\u001b(B \u001b$(D\"6\u001b(B   \u001b$(D\"8\u001b(B \u001b$(D\"9\u001b(B\n    \u001b$(D\"B\u001b(B \u001b$(D\"C\u001b(B \u001b$(D\"D\u001b(B\n                      \u001b$(D\"k\u001b(B \u001b$(D\"l\u001b(B \u001b$(D\"m\u001b(B \u001b$(D\"n\u001b(B \u001b$(D\"o\u001b(B\n\u001b$(D\"p\u001b(B\n  \u001b$(D&a\u001b(B \u001b$(D&b\u001b(B \u001b$(D&c\u001b(B \u001b$(D&d\u001b(B \u001b$(D&e\u001b(B   \u001b$(D&g\u001b(B   \u001b$(D&i\u001b(B \u001b$(D&j\u001b(B   \u001b$(D&l\u001b(B\n  \u001b$(D&q\u001b(B \u001b$(D&r\u001b(B \u001b$(D&s\u001b(B \u001b$(D&t\u001b(B \u001b$(D&u\u001b(B \u001b$(D&v\u001b(B \u001b$(D&w\u001b(B \u001b$(D&x\u001b(B \u001b$(D&y\u001b(B \u001b$(D&z\u001b(B \u001b$(D&{\u001b(B \u001b$(D&|\u001b(B\n    \u001b$(D'B\u001b(B \u001b$(D'C\u001b(B \u001b$(D'D\u001b(B \u001b$(D'E\u001b(B \u001b$(D'F\u001b(B \u001b$(D'G\u001b(B \u001b$(D'H\u001b(B \u001b$(D'I\u001b(B \u001b$(D'J\u001b(B \u001b$(D'K\u001b(B \u001b$(D'L\u001b(B \u001b$(D'M\u001b(B \u001b$(D'N\u001b(B\n    \u001b$(D'r\u001b(B \u001b$(D's\u001b(B \u001b$(D't\u001b(B \u001b$(D'u\u001b(B \u001b$(D'v\u001b(B \u001b$(D'w\u001b(B \u001b$(D'x\u001b(B \u001b$(D'y\u001b(B \u001b$(D'z\u001b(B \u001b$(D'{\u001b(B \u001b$(D'|\u001b(B \u001b$(D'}\u001b(B \u001b$(D'~\u001b(B\n  \u001b$(D)!\u001b(B \u001b$(D)\"\u001b(B   \u001b$(D)$\u001b(B   \u001b$(D)&\u001b(B   \u001b$(D)(\u001b(B \u001b$(D))\u001b(B   \u001b$(D)+\u001b(B \u001b$(D),\u001b(B \u001b$(D)-\u001b(B   \u001b$(D)/\u001b(B\n\u001b$(D)0\u001b(B\n  \u001b$(D)A\u001b(B \u001b$(D)B\u001b(B \u001b$(D)C\u001b(B \u001b$(D)D\u001b(B \u001b$(D)E\u001b(B \u001b$(D)F\u001b(B \u001b$(D)G\u001b(B \u001b$(D)H\u001b(B \u001b$(D)I\u001b(B \u001b$(D)J\u001b(B \u001b$(D)K\u001b(B \u001b$(D)L\u001b(B \u001b$(D)M\u001b(B \u001b$(D)N\u001b(B \u001b$(D)O\u001b(B\n\u001b$(D)P\u001b(B\n  \u001b$(D*!\u001b(B \u001b$(D*\"\u001b(B \u001b$(D*#\u001b(B \u001b$(D*$\u001b(B \u001b$(D*%\u001b(B \u001b$(D*&\u001b(B \u001b$(D*'\u001b(B \u001b$(D*(\u001b(B \u001b$(D*)\u001b(B \u001b$(D**\u001b(B \u001b$(D*+\u001b(B \u001b$(D*,\u001b(B \u001b$(D*-\u001b(B \u001b$(D*.\u001b(B \u001b$(D*/\u001b(B\n\u001b$(D*0\u001b(B \u001b$(D*1\u001b(B \u001b$(D*2\u001b(B \u001b$(D*3\u001b(B \u001b$(D*4\u001b(B \u001b$(D*5\u001b(B \u001b$(D*6\u001b(B \u001b$(D*7\u001b(B \u001b$(D*8\u001b(B   \u001b$(D*:\u001b(B \u001b$(D*;\u001b(B \u001b$(D*<\u001b(B \u001b$(D*=\u001b(B \u001b$(D*>\u001b(B \u001b$(D*?\u001b(B\n\u001b$(D*@\u001b(B \u001b$(D*A\u001b(B \u001b$(D*B\u001b(B \u001b$(D*C\u001b(B \u001b$(D*D\u001b(B \u001b$(D*E\u001b(B \u001b$(D*F\u001b(B \u001b$(D*G\u001b(B \u001b$(D*H\u001b(B \u001b$(D*I\u001b(B \u001b$(D*J\u001b(B \u001b$(D*K\u001b(B \u001b$(D*L\u001b(B \u001b$(D*M\u001b(B \u001b$(D*N\u001b(B \u001b$(D*O\u001b(B\n\u001b$(D*P\u001b(B \u001b$(D*Q\u001b(B \u001b$(D*R\u001b(B \u001b$(D*S\u001b(B \u001b$(D*T\u001b(B \u001b$(D*U\u001b(B \u001b$(D*V\u001b(B \u001b$(D*W\u001b(B \u001b$(D*X\u001b(B \u001b$(D*Y\u001b(B \u001b$(D*Z\u001b(B \u001b$(D*[\u001b(B \u001b$(D*\\\u001b(B \u001b$(D*]\u001b(B \u001b$(D*^\u001b(B \u001b$(D*_\u001b(B\n\u001b$(D*`\u001b(B \u001b$(D*a\u001b(B \u001b$(D*b\u001b(B \u001b$(D*c\u001b(B \u001b$(D*d\u001b(B \u001b$(D*e\u001b(B \u001b$(D*f\u001b(B \u001b$(D*g\u001b(B \u001b$(D*h\u001b(B \u001b$(D*i\u001b(B \u001b$(D*j\u001b(B \u001b$(D*k\u001b(B \u001b$(D*l\u001b(B \u001b$(D*m\u001b(B \u001b$(D*n\u001b(B \u001b$(D*o\u001b(B\n\u001b$(D*p\u001b(B \u001b$(D*q\u001b(B \u001b$(D*r\u001b(B \u001b$(D*s\u001b(B \u001b$(D*t\u001b(B \u001b$(D*u\u001b(B \u001b$(D*v\u001b(B \u001b$(D*w\u001b(B\n  \u001b$(D+!\u001b(B \u001b$(D+\"\u001b(B \u001b$(D+#\u001b(B \u001b$(D+$\u001b(B \u001b$(D+%\u001b(B \u001b$(D+&\u001b(B \u001b$(D+'\u001b(B \u001b$(D+(\u001b(B \u001b$(D+)\u001b(B \u001b$(D+*\u001b(B \u001b$(D++\u001b(B \u001b$(D+,\u001b(B \u001b$(D+-\u001b(B \u001b$(D+.\u001b(B \u001b$(D+/\u001b(B\n\u001b$(D+0\u001b(B \u001b$(D+1\u001b(B \u001b$(D+2\u001b(B \u001b$(D+3\u001b(B \u001b$(D+4\u001b(B \u001b$(D+5\u001b(B \u001b$(D+6\u001b(B \u001b$(D+7\u001b(B \u001b$(D+8\u001b(B \u001b$(D+9\u001b(B \u001b$(D+:\u001b(B \u001b$(D+;\u001b(B   \u001b$(D+=\u001b(B \u001b$(D+>\u001b(B \u001b$(D+?\u001b(B\n\u001b$(D+@\u001b(B \u001b$(D+A\u001b(B \u001b$(D+B\u001b(B \u001b$(D+C\u001b(B   \u001b$(D+E\u001b(B \u001b$(D+F\u001b(B \u001b$(D+G\u001b(B \u001b$(D+H\u001b(B \u001b$(D+I\u001b(B \u001b$(D+J\u001b(B \u001b$(D+K\u001b(B \u001b$(D+L\u001b(B \u001b$(D+M\u001b(B \u001b$(D+N\u001b(B \u001b$(D+O\u001b(B\n\u001b$(D+P\u001b(B \u001b$(D+Q\u001b(B \u001b$(D+R\u001b(B \u001b$(D+S\u001b(B \u001b$(D+T\u001b(B \u001b$(D+U\u001b(B \u001b$(D+V\u001b(B \u001b$(D+W\u001b(B \u001b$(D+X\u001b(B \u001b$(D+Y\u001b(B \u001b$(D+Z\u001b(B \u001b$(D+[\u001b(B \u001b$(D+\\\u001b(B \u001b$(D+]\u001b(B \u001b$(D+^\u001b(B \u001b$(D+_\u001b(B\n\u001b$(D+`\u001b(B \u001b$(D+a\u001b(B \u001b$(D+b\u001b(B \u001b$(D+c\u001b(B \u001b$(D+d\u001b(B \u001b$(D+e\u001b(B \u001b$(D+f\u001b(B \u001b$(D+g\u001b(B \u001b$(D+h\u001b(B \u001b$(D+i\u001b(B \u001b$(D+j\u001b(B \u001b$(D+k\u001b(B \u001b$(D+l\u001b(B \u001b$(D+m\u001b(B \u001b$(D+n\u001b(B \u001b$(D+o\u001b(B\n\u001b$(D+p\u001b(B \u001b$(D+q\u001b(B \u001b$(D+r\u001b(B \u001b$(D+s\u001b(B \u001b$(D+t\u001b(B \u001b$(D+u\u001b(B \u001b$(D+v\u001b(B \u001b$(D+w\u001b(B\n  \u001b$(D0!\u001b(B \u001b$(D0\"\u001b(B \u001b$(D0#\u001b(B \u001b$(D0$\u001b(B \u001b$(D0%\u001b(B \u001b$(D0&\u001b(B \u001b$(D0'\u001b(B \u001b$(D0(\u001b(B \u001b$(D0)\u001b(B \u001b$(D0*\u001b(B \u001b$(D0+\u001b(B \u001b$(D0,\u001b(B \u001b$(D0-\u001b(B \u001b$(D0.\u001b(B \u001b$(D0/\u001b(B\n\u001b$(D00\u001b(B \u001b$(D01\u001b(B \u001b$(D02\u001b(B \u001b$(D03\u001b(B \u001b$(D04\u001b(B \u001b$(D05\u001b(B \u001b$(D06\u001b(B \u001b$(D07\u001b(B \u001b$(D08\u001b(B \u001b$(D09\u001b(B \u001b$(D0:\u001b(B \u001b$(D0;\u001b(B \u001b$(D0<\u001b(B \u001b$(D0=\u001b(B \u001b$(D0>\u001b(B \u001b$(D0?\u001b(B\n\u001b$(D0@\u001b(B \u001b$(D0A\u001b(B \u001b$(D0B\u001b(B \u001b$(D0C\u001b(B \u001b$(D0D\u001b(B \u001b$(D0E\u001b(B \u001b$(D0F\u001b(B \u001b$(D0G\u001b(B \u001b$(D0H\u001b(B \u001b$(D0I\u001b(B \u001b$(D0J\u001b(B \u001b$(D0K\u001b(B \u001b$(D0L\u001b(B \u001b$(D0M\u001b(B \u001b$(D0N\u001b(B \u001b$(D0O\u001b(B\n\u001b$(D0P\u001b(B \u001b$(D0Q\u001b(B \u001b$(D0R\u001b(B \u001b$(D0S\u001b(B \u001b$(D0T\u001b(B \u001b$(D0U\u001b(B \u001b$(D0V\u001b(B \u001b$(D0W\u001b(B \u001b$(D0X\u001b(B \u001b$(D0Y\u001b(B \u001b$(D0Z\u001b(B \u001b$(D0[\u001b(B \u001b$(D0\\\u001b(B \u001b$(D0]\u001b(B \u001b$(D0^\u001b(B \u001b$(D0_\u001b(B\n\u001b$(D0`\u001b(B \u001b$(D0a\u001b(B \u001b$(D0b\u001b(B \u001b$(D0c\u001b(B \u001b$(D0d\u001b(B \u001b$(D0e\u001b(B \u001b$(D0f\u001b(B \u001b$(D0g\u001b(B \u001b$(D0h\u001b(B \u001b$(D0i\u001b(B \u001b$(D0j\u001b(B \u001b$(D0k\u001b(B \u001b$(D0l\u001b(B \u001b$(D0m\u001b(B \u001b$(D0n\u001b(B \u001b$(D0o\u001b(B\n\u001b$(D0p\u001b(B \u001b$(D0q\u001b(B \u001b$(D0r\u001b(B \u001b$(D0s\u001b(B \u001b$(D0t\u001b(B \u001b$(D0u\u001b(B \u001b$(D0v\u001b(B \u001b$(D0w\u001b(B \u001b$(D0x\u001b(B \u001b$(D0y\u001b(B \u001b$(D0z\u001b(B \u001b$(D0{\u001b(B \u001b$(D0|\u001b(B \u001b$(D0}\u001b(B \u001b$(D0~\u001b(B\n  \u001b$(D1!\u001b(B \u001b$(D1\"\u001b(B \u001b$(D1#\u001b(B \u001b$(D1$\u001b(B \u001b$(D1%\u001b(B \u001b$(D1&\u001b(B \u001b$(D1'\u001b(B \u001b$(D1(\u001b(B \u001b$(D1)\u001b(B \u001b$(D1*\u001b(B \u001b$(D1+\u001b(B \u001b$(D1,\u001b(B \u001b$(D1-\u001b(B \u001b$(D1.\u001b(B \u001b$(D1/\u001b(B\n\u001b$(D10\u001b(B \u001b$(D11\u001b(B \u001b$(D12\u001b(B \u001b$(D13\u001b(B \u001b$(D14\u001b(B \u001b$(D15\u001b(B \u001b$(D16\u001b(B \u001b$(D17\u001b(B \u001b$(D18\u001b(B \u001b$(D19\u001b(B \u001b$(D1:\u001b(B \u001b$(D1;\u001b(B \u001b$(D1<\u001b(B \u001b$(D1=\u001b(B \u001b$(D1>\u001b(B \u001b$(D1?\u001b(B\n\u001b$(D1@\u001b(B \u001b$(D1A\u001b(B \u001b$(D1B\u001b(B \u001b$(D1C\u001b(B \u001b$(D1D\u001b(B \u001b$(D1E\u001b(B \u001b$(D1F\u001b(B \u001b$(D1G\u001b(B \u001b$(D1H\u001b(B \u001b$(D1I\u001b(B \u001b$(D1J\u001b(B \u001b$(D1K\u001b(B \u001b$(D1L\u001b(B \u001b$(D1M\u001b(B \u001b$(D1N\u001b(B \u001b$(D1O\u001b(B\n\u001b$(D1P\u001b(B \u001b$(D1Q\u001b(B \u001b$(D1R\u001b(B \u001b$(D1S\u001b(B \u001b$(D1T\u001b(B \u001b$(D1U\u001b(B \u001b$(D1V\u001b(B \u001b$(D1W\u001b(B \u001b$(D1X\u001b(B \u001b$(D1Y\u001b(B \u001b$(D1Z\u001b(B \u001b$(D1[\u001b(B \u001b$(D1\\\u001b(B \u001b$(D1]\u001b(B \u001b$(D1^\u001b(B \u001b$(D1_\u001b(B\n\u001b$(D1`\u001b(B \u001b$(D1a\u001b(B \u001b$(D1b\u001b(B \u001b$(D1c\u001b(B \u001b$(D1d\u001b(B \u001b$(D1e\u001b(B \u001b$(D1f\u001b(B \u001b$(D1g\u001b(B \u001b$(D1h\u001b(B \u001b$(D1i\u001b(B \u001b$(D1j\u001b(B \u001b$(D1k\u001b(B \u001b$(D1l\u001b(B \u001b$(D1m\u001b(B \u001b$(D1n\u001b(B \u001b$(D1o\u001b(B\n\u001b$(D1p\u001b(B \u001b$(D1q\u001b(B \u001b$(D1r\u001b(B \u001b$(D1s\u001b(B \u001b$(D1t\u001b(B \u001b$(D1u\u001b(B \u001b$(D1v\u001b(B \u001b$(D1w\u001b(B \u001b$(D1x\u001b(B \u001b$(D1y\u001b(B \u001b$(D1z\u001b(B \u001b$(D1{\u001b(B \u001b$(D1|\u001b(B \u001b$(D1}\u001b(B \u001b$(D1~\u001b(B\n  \u001b$(D2!\u001b(B \u001b$(D2\"\u001b(B \u001b$(D2#\u001b(B \u001b$(D2$\u001b(B \u001b$(D2%\u001b(B \u001b$(D2&\u001b(B \u001b$(D2'\u001b(B \u001b$(D2(\u001b(B \u001b$(D2)\u001b(B \u001b$(D2*\u001b(B \u001b$(D2+\u001b(B \u001b$(D2,\u001b(B \u001b$(D2-\u001b(B \u001b$(D2.\u001b(B \u001b$(D2/\u001b(B\n\u001b$(D20\u001b(B \u001b$(D21\u001b(B \u001b$(D22\u001b(B \u001b$(D23\u001b(B \u001b$(D24\u001b(B \u001b$(D25\u001b(B \u001b$(D26\u001b(B \u001b$(D27\u001b(B \u001b$(D28\u001b(B \u001b$(D29\u001b(B \u001b$(D2:\u001b(B \u001b$(D2;\u001b(B \u001b$(D2<\u001b(B \u001b$(D2=\u001b(B \u001b$(D2>\u001b(B \u001b$(D2?\u001b(B\n\u001b$(D2@\u001b(B \u001b$(D2A\u001b(B \u001b$(D2B\u001b(B \u001b$(D2C\u001b(B \u001b$(D2D\u001b(B \u001b$(D2E\u001b(B \u001b$(D2F\u001b(B \u001b$(D2G\u001b(B \u001b$(D2H\u001b(B \u001b$(D2I\u001b(B \u001b$(D2J\u001b(B \u001b$(D2K\u001b(B \u001b$(D2L\u001b(B \u001b$(D2M\u001b(B \u001b$(D2N\u001b(B \u001b$(D2O\u001b(B\n\u001b$(D2P\u001b(B \u001b$(D2Q\u001b(B \u001b$(D2R\u001b(B \u001b$(D2S\u001b(B \u001b$(D2T\u001b(B \u001b$(D2U\u001b(B \u001b$(D2V\u001b(B \u001b$(D2W\u001b(B \u001b$(D2X\u001b(B \u001b$(D2Y\u001b(B \u001b$(D2Z\u001b(B \u001b$(D2[\u001b(B \u001b$(D2\\\u001b(B \u001b$(D2]\u001b(B \u001b$(D2^\u001b(B \u001b$(D2_\u001b(B\n\u001b$(D2`\u001b(B \u001b$(D2a\u001b(B \u001b$(D2b\u001b(B \u001b$(D2c\u001b(B \u001b$(D2d\u001b(B \u001b$(D2e\u001b(B \u001b$(D2f\u001b(B \u001b$(D2g\u001b(B \u001b$(D2h\u001b(B \u001b$(D2i\u001b(B \u001b$(D2j\u001b(B \u001b$(D2k\u001b(B \u001b$(D2l\u001b(B \u001b$(D2m\u001b(B \u001b$(D2n\u001b(B \u001b$(D2o\u001b(B\n\u001b$(D2p\u001b(B \u001b$(D2q\u001b(B \u001b$(D2r\u001b(B \u001b$(D2s\u001b(B \u001b$(D2t\u001b(B \u001b$(D2u\u001b(B \u001b$(D2v\u001b(B \u001b$(D2w\u001b(B \u001b$(D2x\u001b(B \u001b$(D2y\u001b(B \u001b$(D2z\u001b(B \u001b$(D2{\u001b(B \u001b$(D2|\u001b(B \u001b$(D2}\u001b(B \u001b$(D2~\u001b(B\n  \u001b$(D3!\u001b(B \u001b$(D3\"\u001b(B \u001b$(D3#\u001b(B \u001b$(D3$\u001b(B \u001b$(D3%\u001b(B \u001b$(D3&\u001b(B \u001b$(D3'\u001b(B \u001b$(D3(\u001b(B \u001b$(D3)\u001b(B \u001b$(D3*\u001b(B \u001b$(D3+\u001b(B \u001b$(D3,\u001b(B \u001b$(D3-\u001b(B \u001b$(D3.\u001b(B \u001b$(D3/\u001b(B\n\u001b$(D30\u001b(B \u001b$(D31\u001b(B \u001b$(D32\u001b(B \u001b$(D33\u001b(B \u001b$(D34\u001b(B \u001b$(D35\u001b(B \u001b$(D36\u001b(B \u001b$(D37\u001b(B \u001b$(D38\u001b(B \u001b$(D39\u001b(B \u001b$(D3:\u001b(B \u001b$(D3;\u001b(B \u001b$(D3<\u001b(B \u001b$(D3=\u001b(B \u001b$(D3>\u001b(B \u001b$(D3?\u001b(B\n\u001b$(D3@\u001b(B \u001b$(D3A\u001b(B \u001b$(D3B\u001b(B \u001b$(D3C\u001b(B \u001b$(D3D\u001b(B \u001b$(D3E\u001b(B \u001b$(D3F\u001b(B \u001b$(D3G\u001b(B \u001b$(D3H\u001b(B \u001b$(D3I\u001b(B \u001b$(D3J\u001b(B \u001b$(D3K\u001b(B \u001b$(D3L\u001b(B \u001b$(D3M\u001b(B \u001b$(D3N\u001b(B \u001b$(D3O\u001b(B\n\u001b$(D3P\u001b(B \u001b$(D3Q\u001b(B \u001b$(D3R\u001b(B \u001b$(D3S\u001b(B \u001b$(D3T\u001b(B \u001b$(D3U\u001b(B \u001b$(D3V\u001b(B \u001b$(D3W\u001b(B \u001b$(D3X\u001b(B \u001b$(D3Y\u001b(B \u001b$(D3Z\u001b(B \u001b$(D3[\u001b(B \u001b$(D3\\\u001b(B \u001b$(D3]\u001b(B \u001b$(D3^\u001b(B \u001b$(D3_\u001b(B\n\u001b$(D3`\u001b(B \u001b$(D3a\u001b(B \u001b$(D3b\u001b(B \u001b$(D3c\u001b(B \u001b$(D3d\u001b(B \u001b$(D3e\u001b(B \u001b$(D3f\u001b(B \u001b$(D3g\u001b(B \u001b$(D3h\u001b(B \u001b$(D3i\u001b(B \u001b$(D3j\u001b(B \u001b$(D3k\u001b(B \u001b$(D3l\u001b(B \u001b$(D3m\u001b(B \u001b$(D3n\u001b(B \u001b$(D3o\u001b(B\n\u001b$(D3p\u001b(B \u001b$(D3q\u001b(B \u001b$(D3r\u001b(B \u001b$(D3s\u001b(B \u001b$(D3t\u001b(B \u001b$(D3u\u001b(B \u001b$(D3v\u001b(B \u001b$(D3w\u001b(B \u001b$(D3x\u001b(B \u001b$(D3y\u001b(B \u001b$(D3z\u001b(B \u001b$(D3{\u001b(B \u001b$(D3|\u001b(B \u001b$(D3}\u001b(B \u001b$(D3~\u001b(B\n  \u001b$(D4!\u001b(B \u001b$(D4\"\u001b(B \u001b$(D4#\u001b(B \u001b$(D4$\u001b(B \u001b$(D4%\u001b(B \u001b$(D4&\u001b(B \u001b$(D4'\u001b(B \u001b$(D4(\u001b(B \u001b$(D4)\u001b(B \u001b$(D4*\u001b(B \u001b$(D4+\u001b(B \u001b$(D4,\u001b(B \u001b$(D4-\u001b(B \u001b$(D4.\u001b(B \u001b$(D4/\u001b(B\n\u001b$(D40\u001b(B \u001b$(D41\u001b(B \u001b$(D42\u001b(B \u001b$(D43\u001b(B \u001b$(D44\u001b(B \u001b$(D45\u001b(B \u001b$(D46\u001b(B \u001b$(D47\u001b(B \u001b$(D48\u001b(B \u001b$(D49\u001b(B \u001b$(D4:\u001b(B \u001b$(D4;\u001b(B \u001b$(D4<\u001b(B \u001b$(D4=\u001b(B \u001b$(D4>\u001b(B \u001b$(D4?\u001b(B\n\u001b$(D4@\u001b(B \u001b$(D4A\u001b(B \u001b$(D4B\u001b(B \u001b$(D4C\u001b(B \u001b$(D4D\u001b(B \u001b$(D4E\u001b(B \u001b$(D4F\u001b(B \u001b$(D4G\u001b(B \u001b$(D4H\u001b(B \u001b$(D4I\u001b(B \u001b$(D4J\u001b(B \u001b$(D4K\u001b(B \u001b$(D4L\u001b(B \u001b$(D4M\u001b(B \u001b$(D4N\u001b(B \u001b$(D4O\u001b(B\n\u001b$(D4P\u001b(B \u001b$(D4Q\u001b(B \u001b$(D4R\u001b(B \u001b$(D4S\u001b(B \u001b$(D4T\u001b(B \u001b$(D4U\u001b(B \u001b$(D4V\u001b(B \u001b$(D4W\u001b(B \u001b$(D4X\u001b(B \u001b$(D4Y\u001b(B \u001b$(D4Z\u001b(B \u001b$(D4[\u001b(B \u001b$(D4\\\u001b(B \u001b$(D4]\u001b(B \u001b$(D4^\u001b(B \u001b$(D4_\u001b(B\n\u001b$(D4`\u001b(B \u001b$(D4a\u001b(B \u001b$(D4b\u001b(B \u001b$(D4c\u001b(B \u001b$(D4d\u001b(B \u001b$(D4e\u001b(B \u001b$(D4f\u001b(B \u001b$(D4g\u001b(B \u001b$(D4h\u001b(B \u001b$(D4i\u001b(B \u001b$(D4j\u001b(B \u001b$(D4k\u001b(B \u001b$(D4l\u001b(B \u001b$(D4m\u001b(B \u001b$(D4n\u001b(B \u001b$(D4o\u001b(B\n\u001b$(D4p\u001b(B \u001b$(D4q\u001b(B \u001b$(D4r\u001b(B \u001b$(D4s\u001b(B \u001b$(D4t\u001b(B \u001b$(D4u\u001b(B \u001b$(D4v\u001b(B \u001b$(D4w\u001b(B \u001b$(D4x\u001b(B \u001b$(D4y\u001b(B \u001b$(D4z\u001b(B \u001b$(D4{\u001b(B \u001b$(D4|\u001b(B \u001b$(D4}\u001b(B \u001b$(D4~\u001b(B\n  \u001b$(D5!\u001b(B \u001b$(D5\"\u001b(B \u001b$(D5#\u001b(B \u001b$(D5$\u001b(B \u001b$(D5%\u001b(B \u001b$(D5&\u001b(B \u001b$(D5'\u001b(B \u001b$(D5(\u001b(B \u001b$(D5)\u001b(B \u001b$(D5*\u001b(B \u001b$(D5+\u001b(B \u001b$(D5,\u001b(B \u001b$(D5-\u001b(B \u001b$(D5.\u001b(B \u001b$(D5/\u001b(B\n\u001b$(D50\u001b(B \u001b$(D51\u001b(B \u001b$(D52\u001b(B \u001b$(D53\u001b(B \u001b$(D54\u001b(B \u001b$(D55\u001b(B \u001b$(D56\u001b(B \u001b$(D57\u001b(B \u001b$(D58\u001b(B \u001b$(D59\u001b(B \u001b$(D5:\u001b(B \u001b$(D5;\u001b(B \u001b$(D5<\u001b(B \u001b$(D5=\u001b(B \u001b$(D5>\u001b(B \u001b$(D5?\u001b(B\n\u001b$(D5@\u001b(B \u001b$(D5A\u001b(B \u001b$(D5B\u001b(B \u001b$(D5C\u001b(B \u001b$(D5D\u001b(B \u001b$(D5E\u001b(B \u001b$(D5F\u001b(B \u001b$(D5G\u001b(B \u001b$(D5H\u001b(B \u001b$(D5I\u001b(B \u001b$(D5J\u001b(B \u001b$(D5K\u001b(B \u001b$(D5L\u001b(B \u001b$(D5M\u001b(B \u001b$(D5N\u001b(B \u001b$(D5O\u001b(B\n\u001b$(D5P\u001b(B \u001b$(D5Q\u001b(B \u001b$(D5R\u001b(B \u001b$(D5S\u001b(B \u001b$(D5T\u001b(B \u001b$(D5U\u001b(B \u001b$(D5V\u001b(B \u001b$(D5W\u001b(B \u001b$(D5X\u001b(B \u001b$(D5Y\u001b(B \u001b$(D5Z\u001b(B \u001b$(D5[\u001b(B \u001b$(D5\\\u001b(B \u001b$(D5]\u001b(B \u001b$(D5^\u001b(B \u001b$(D5_\u001b(B\n\u001b$(D5`\u001b(B \u001b$(D5a\u001b(B \u001b$(D5b\u001b(B \u001b$(D5c\u001b(B \u001b$(D5d\u001b(B \u001b$(D5e\u001b(B \u001b$(D5f\u001b(B \u001b$(D5g\u001b(B \u001b$(D5h\u001b(B \u001b$(D5i\u001b(B \u001b$(D5j\u001b(B \u001b$(D5k\u001b(B \u001b$(D5l\u001b(B \u001b$(D5m\u001b(B \u001b$(D5n\u001b(B \u001b$(D5o\u001b(B\n\u001b$(D5p\u001b(B \u001b$(D5q\u001b(B \u001b$(D5r\u001b(B \u001b$(D5s\u001b(B \u001b$(D5t\u001b(B \u001b$(D5u\u001b(B \u001b$(D5v\u001b(B \u001b$(D5w\u001b(B \u001b$(D5x\u001b(B \u001b$(D5y\u001b(B \u001b$(D5z\u001b(B \u001b$(D5{\u001b(B \u001b$(D5|\u001b(B \u001b$(D5}\u001b(B \u001b$(D5~\u001b(B\n  \u001b$(D6!\u001b(B \u001b$(D6\"\u001b(B \u001b$(D6#\u001b(B \u001b$(D6$\u001b(B \u001b$(D6%\u001b(B \u001b$(D6&\u001b(B \u001b$(D6'\u001b(B \u001b$(D6(\u001b(B \u001b$(D6)\u001b(B \u001b$(D6*\u001b(B \u001b$(D6+\u001b(B \u001b$(D6,\u001b(B \u001b$(D6-\u001b(B \u001b$(D6.\u001b(B \u001b$(D6/\u001b(B\n\u001b$(D60\u001b(B \u001b$(D61\u001b(B \u001b$(D62\u001b(B \u001b$(D63\u001b(B \u001b$(D64\u001b(B \u001b$(D65\u001b(B \u001b$(D66\u001b(B \u001b$(D67\u001b(B \u001b$(D68\u001b(B \u001b$(D69\u001b(B \u001b$(D6:\u001b(B \u001b$(D6;\u001b(B \u001b$(D6<\u001b(B \u001b$(D6=\u001b(B \u001b$(D6>\u001b(B \u001b$(D6?\u001b(B\n\u001b$(D6@\u001b(B \u001b$(D6A\u001b(B \u001b$(D6B\u001b(B \u001b$(D6C\u001b(B \u001b$(D6D\u001b(B \u001b$(D6E\u001b(B \u001b$(D6F\u001b(B \u001b$(D6G\u001b(B \u001b$(D6H\u001b(B \u001b$(D6I\u001b(B \u001b$(D6J\u001b(B \u001b$(D6K\u001b(B \u001b$(D6L\u001b(B \u001b$(D6M\u001b(B \u001b$(D6N\u001b(B \u001b$(D6O\u001b(B\n\u001b$(D6P\u001b(B \u001b$(D6Q\u001b(B \u001b$(D6R\u001b(B \u001b$(D6S\u001b(B \u001b$(D6T\u001b(B \u001b$(D6U\u001b(B \u001b$(D6V\u001b(B \u001b$(D6W\u001b(B \u001b$(D6X\u001b(B \u001b$(D6Y\u001b(B \u001b$(D6Z\u001b(B \u001b$(D6[\u001b(B \u001b$(D6\\\u001b(B \u001b$(D6]\u001b(B \u001b$(D6^\u001b(B \u001b$(D6_\u001b(B\n\u001b$(D6`\u001b(B \u001b$(D6a\u001b(B \u001b$(D6b\u001b(B \u001b$(D6c\u001b(B \u001b$(D6d\u001b(B \u001b$(D6e\u001b(B \u001b$(D6f\u001b(B \u001b$(D6g\u001b(B \u001b$(D6h\u001b(B \u001b$(D6i\u001b(B \u001b$(D6j\u001b(B \u001b$(D6k\u001b(B \u001b$(D6l\u001b(B \u001b$(D6m\u001b(B \u001b$(D6n\u001b(B \u001b$(D6o\u001b(B\n\u001b$(D6p\u001b(B \u001b$(D6q\u001b(B \u001b$(D6r\u001b(B \u001b$(D6s\u001b(B \u001b$(D6t\u001b(B \u001b$(D6u\u001b(B \u001b$(D6v\u001b(B \u001b$(D6w\u001b(B \u001b$(D6x\u001b(B \u001b$(D6y\u001b(B \u001b$(D6z\u001b(B \u001b$(D6{\u001b(B \u001b$(D6|\u001b(B \u001b$(D6}\u001b(B \u001b$(D6~\u001b(B\n  \u001b$(D7!\u001b(B \u001b$(D7\"\u001b(B \u001b$(D7#\u001b(B \u001b$(D7$\u001b(B \u001b$(D7%\u001b(B \u001b$(D7&\u001b(B \u001b$(D7'\u001b(B \u001b$(D7(\u001b(B \u001b$(D7)\u001b(B \u001b$(D7*\u001b(B \u001b$(D7+\u001b(B \u001b$(D7,\u001b(B \u001b$(D7-\u001b(B \u001b$(D7.\u001b(B \u001b$(D7/\u001b(B\n\u001b$(D70\u001b(B \u001b$(D71\u001b(B \u001b$(D72\u001b(B \u001b$(D73\u001b(B \u001b$(D74\u001b(B \u001b$(D75\u001b(B \u001b$(D76\u001b(B \u001b$(D77\u001b(B \u001b$(D78\u001b(B \u001b$(D79\u001b(B \u001b$(D7:\u001b(B \u001b$(D7;\u001b(B \u001b$(D7<\u001b(B \u001b$(D7=\u001b(B \u001b$(D7>\u001b(B \u001b$(D7?\u001b(B\n\u001b$(D7@\u001b(B \u001b$(D7A\u001b(B \u001b$(D7B\u001b(B \u001b$(D7C\u001b(B \u001b$(D7D\u001b(B \u001b$(D7E\u001b(B \u001b$(D7F\u001b(B \u001b$(D7G\u001b(B \u001b$(D7H\u001b(B \u001b$(D7I\u001b(B \u001b$(D7J\u001b(B \u001b$(D7K\u001b(B \u001b$(D7L\u001b(B \u001b$(D7M\u001b(B \u001b$(D7N\u001b(B \u001b$(D7O\u001b(B\n\u001b$(D7P\u001b(B \u001b$(D7Q\u001b(B \u001b$(D7R\u001b(B \u001b$(D7S\u001b(B \u001b$(D7T\u001b(B \u001b$(D7U\u001b(B \u001b$(D7V\u001b(B \u001b$(D7W\u001b(B \u001b$(D7X\u001b(B \u001b$(D7Y\u001b(B \u001b$(D7Z\u001b(B \u001b$(D7[\u001b(B \u001b$(D7\\\u001b(B \u001b$(D7]\u001b(B \u001b$(D7^\u001b(B \u001b$(D7_\u001b(B\n\u001b$(D7`\u001b(B \u001b$(D7a\u001b(B \u001b$(D7b\u001b(B \u001b$(D7c\u001b(B \u001b$(D7d\u001b(B \u001b$(D7e\u001b(B \u001b$(D7f\u001b(B \u001b$(D7g\u001b(B \u001b$(D7h\u001b(B \u001b$(D7i\u001b(B \u001b$(D7j\u001b(B \u001b$(D7k\u001b(B \u001b$(D7l\u001b(B \u001b$(D7m\u001b(B \u001b$(D7n\u001b(B \u001b$(D7o\u001b(B\n\u001b$(D7p\u001b(B \u001b$(D7q\u001b(B \u001b$(D7r\u001b(B \u001b$(D7s\u001b(B \u001b$(D7t\u001b(B \u001b$(D7u\u001b(B \u001b$(D7v\u001b(B \u001b$(D7w\u001b(B \u001b$(D7x\u001b(B \u001b$(D7y\u001b(B \u001b$(D7z\u001b(B \u001b$(D7{\u001b(B \u001b$(D7|\u001b(B \u001b$(D7}\u001b(B \u001b$(D7~\u001b(B\n  \u001b$(D8!\u001b(B \u001b$(D8\"\u001b(B \u001b$(D8#\u001b(B \u001b$(D8$\u001b(B \u001b$(D8%\u001b(B \u001b$(D8&\u001b(B \u001b$(D8'\u001b(B \u001b$(D8(\u001b(B \u001b$(D8)\u001b(B \u001b$(D8*\u001b(B \u001b$(D8+\u001b(B \u001b$(D8,\u001b(B \u001b$(D8-\u001b(B \u001b$(D8.\u001b(B \u001b$(D8/\u001b(B\n\u001b$(D80\u001b(B \u001b$(D81\u001b(B \u001b$(D82\u001b(B \u001b$(D83\u001b(B \u001b$(D84\u001b(B \u001b$(D85\u001b(B \u001b$(D86\u001b(B \u001b$(D87\u001b(B \u001b$(D88\u001b(B \u001b$(D89\u001b(B \u001b$(D8:\u001b(B \u001b$(D8;\u001b(B \u001b$(D8<\u001b(B \u001b$(D8=\u001b(B \u001b$(D8>\u001b(B \u001b$(D8?\u001b(B\n\u001b$(D8@\u001b(B \u001b$(D8A\u001b(B \u001b$(D8B\u001b(B \u001b$(D8C\u001b(B \u001b$(D8D\u001b(B \u001b$(D8E\u001b(B \u001b$(D8F\u001b(B \u001b$(D8G\u001b(B \u001b$(D8H\u001b(B \u001b$(D8I\u001b(B \u001b$(D8J\u001b(B \u001b$(D8K\u001b(B \u001b$(D8L\u001b(B \u001b$(D8M\u001b(B \u001b$(D8N\u001b(B \u001b$(D8O\u001b(B\n\u001b$(D8P\u001b(B \u001b$(D8Q\u001b(B \u001b$(D8R\u001b(B \u001b$(D8S\u001b(B \u001b$(D8T\u001b(B \u001b$(D8U\u001b(B \u001b$(D8V\u001b(B \u001b$(D8W\u001b(B \u001b$(D8X\u001b(B \u001b$(D8Y\u001b(B \u001b$(D8Z\u001b(B \u001b$(D8[\u001b(B \u001b$(D8\\\u001b(B \u001b$(D8]\u001b(B \u001b$(D8^\u001b(B \u001b$(D8_\u001b(B\n\u001b$(D8`\u001b(B \u001b$(D8a\u001b(B \u001b$(D8b\u001b(B \u001b$(D8c\u001b(B \u001b$(D8d\u001b(B \u001b$(D8e\u001b(B \u001b$(D8f\u001b(B \u001b$(D8g\u001b(B \u001b$(D8h\u001b(B \u001b$(D8i\u001b(B \u001b$(D8j\u001b(B \u001b$(D8k\u001b(B \u001b$(D8l\u001b(B \u001b$(D8m\u001b(B \u001b$(D8n\u001b(B \u001b$(D8o\u001b(B\n\u001b$(D8p\u001b(B \u001b$(D8q\u001b(B \u001b$(D8r\u001b(B \u001b$(D8s\u001b(B \u001b$(D8t\u001b(B \u001b$(D8u\u001b(B \u001b$(D8v\u001b(B \u001b$(D8w\u001b(B \u001b$(D8x\u001b(B \u001b$(D8y\u001b(B \u001b$(D8z\u001b(B \u001b$(D8{\u001b(B \u001b$(D8|\u001b(B \u001b$(D8}\u001b(B \u001b$(D8~\u001b(B\n  \u001b$(D9!\u001b(B \u001b$(D9\"\u001b(B \u001b$(D9#\u001b(B \u001b$(D9$\u001b(B \u001b$(D9%\u001b(B \u001b$(D9&\u001b(B \u001b$(D9'\u001b(B \u001b$(D9(\u001b(B \u001b$(D9)\u001b(B \u001b$(D9*\u001b(B \u001b$(D9+\u001b(B \u001b$(D9,\u001b(B \u001b$(D9-\u001b(B \u001b$(D9.\u001b(B \u001b$(D9/\u001b(B\n\u001b$(D90\u001b(B \u001b$(D91\u001b(B \u001b$(D92\u001b(B \u001b$(D93\u001b(B \u001b$(D94\u001b(B \u001b$(D95\u001b(B \u001b$(D96\u001b(B \u001b$(D97\u001b(B \u001b$(D98\u001b(B \u001b$(D99\u001b(B \u001b$(D9:\u001b(B \u001b$(D9;\u001b(B \u001b$(D9<\u001b(B \u001b$(D9=\u001b(B \u001b$(D9>\u001b(B \u001b$(D9?\u001b(B\n\u001b$(D9@\u001b(B \u001b$(D9A\u001b(B \u001b$(D9B\u001b(B \u001b$(D9C\u001b(B \u001b$(D9D\u001b(B \u001b$(D9E\u001b(B \u001b$(D9F\u001b(B \u001b$(D9G\u001b(B \u001b$(D9H\u001b(B \u001b$(D9I\u001b(B \u001b$(D9J\u001b(B \u001b$(D9K\u001b(B \u001b$(D9L\u001b(B \u001b$(D9M\u001b(B \u001b$(D9N\u001b(B \u001b$(D9O\u001b(B\n\u001b$(D9P\u001b(B \u001b$(D9Q\u001b(B \u001b$(D9R\u001b(B \u001b$(D9S\u001b(B \u001b$(D9T\u001b(B \u001b$(D9U\u001b(B \u001b$(D9V\u001b(B \u001b$(D9W\u001b(B \u001b$(D9X\u001b(B \u001b$(D9Y\u001b(B \u001b$(D9Z\u001b(B \u001b$(D9[\u001b(B \u001b$(D9\\\u001b(B \u001b$(D9]\u001b(B \u001b$(D9^\u001b(B \u001b$(D9_\u001b(B\n\u001b$(D9`\u001b(B \u001b$(D9a\u001b(B \u001b$(D9b\u001b(B \u001b$(D9c\u001b(B \u001b$(D9d\u001b(B \u001b$(D9e\u001b(B \u001b$(D9f\u001b(B \u001b$(D9g\u001b(B \u001b$(D9h\u001b(B \u001b$(D9i\u001b(B \u001b$(D9j\u001b(B \u001b$(D9k\u001b(B \u001b$(D9l\u001b(B \u001b$(D9m\u001b(B \u001b$(D9n\u001b(B \u001b$(D9o\u001b(B\n\u001b$(D9p\u001b(B \u001b$(D9q\u001b(B \u001b$(D9r\u001b(B \u001b$(D9s\u001b(B \u001b$(D9t\u001b(B \u001b$(D9u\u001b(B \u001b$(D9v\u001b(B \u001b$(D9w\u001b(B \u001b$(D9x\u001b(B \u001b$(D9y\u001b(B \u001b$(D9z\u001b(B \u001b$(D9{\u001b(B \u001b$(D9|\u001b(B \u001b$(D9}\u001b(B \u001b$(D9~\u001b(B\n  \u001b$(D:!\u001b(B \u001b$(D:\"\u001b(B \u001b$(D:#\u001b(B \u001b$(D:$\u001b(B \u001b$(D:%\u001b(B \u001b$(D:&\u001b(B \u001b$(D:'\u001b(B \u001b$(D:(\u001b(B \u001b$(D:)\u001b(B \u001b$(D:*\u001b(B \u001b$(D:+\u001b(B \u001b$(D:,\u001b(B \u001b$(D:-\u001b(B \u001b$(D:.\u001b(B \u001b$(D:/\u001b(B\n\u001b$(D:0\u001b(B \u001b$(D:1\u001b(B \u001b$(D:2\u001b(B \u001b$(D:3\u001b(B \u001b$(D:4\u001b(B \u001b$(D:5\u001b(B \u001b$(D:6\u001b(B \u001b$(D:7\u001b(B \u001b$(D:8\u001b(B \u001b$(D:9\u001b(B \u001b$(D::\u001b(B \u001b$(D:;\u001b(B \u001b$(D:<\u001b(B \u001b$(D:=\u001b(B \u001b$(D:>\u001b(B \u001b$(D:?\u001b(B\n\u001b$(D:@\u001b(B \u001b$(D:A\u001b(B \u001b$(D:B\u001b(B \u001b$(D:C\u001b(B \u001b$(D:D\u001b(B \u001b$(D:E\u001b(B \u001b$(D:F\u001b(B \u001b$(D:G\u001b(B \u001b$(D:H\u001b(B \u001b$(D:I\u001b(B \u001b$(D:J\u001b(B \u001b$(D:K\u001b(B \u001b$(D:L\u001b(B \u001b$(D:M\u001b(B \u001b$(D:N\u001b(B \u001b$(D:O\u001b(B\n\u001b$(D:P\u001b(B \u001b$(D:Q\u001b(B \u001b$(D:R\u001b(B \u001b$(D:S\u001b(B \u001b$(D:T\u001b(B \u001b$(D:U\u001b(B \u001b$(D:V\u001b(B \u001b$(D:W\u001b(B \u001b$(D:X\u001b(B \u001b$(D:Y\u001b(B \u001b$(D:Z\u001b(B \u001b$(D:[\u001b(B \u001b$(D:\\\u001b(B \u001b$(D:]\u001b(B \u001b$(D:^\u001b(B \u001b$(D:_\u001b(B\n\u001b$(D:`\u001b(B \u001b$(D:a\u001b(B \u001b$(D:b\u001b(B \u001b$(D:c\u001b(B \u001b$(D:d\u001b(B \u001b$(D:e\u001b(B \u001b$(D:f\u001b(B \u001b$(D:g\u001b(B \u001b$(D:h\u001b(B \u001b$(D:i\u001b(B \u001b$(D:j\u001b(B \u001b$(D:k\u001b(B \u001b$(D:l\u001b(B \u001b$(D:m\u001b(B \u001b$(D:n\u001b(B \u001b$(D:o\u001b(B\n\u001b$(D:p\u001b(B \u001b$(D:q\u001b(B \u001b$(D:r\u001b(B \u001b$(D:s\u001b(B \u001b$(D:t\u001b(B \u001b$(D:u\u001b(B \u001b$(D:v\u001b(B \u001b$(D:w\u001b(B \u001b$(D:x\u001b(B \u001b$(D:y\u001b(B \u001b$(D:z\u001b(B \u001b$(D:{\u001b(B \u001b$(D:|\u001b(B \u001b$(D:}\u001b(B \u001b$(D:~\u001b(B\n  \u001b$(D;!\u001b(B \u001b$(D;\"\u001b(B \u001b$(D;#\u001b(B \u001b$(D;$\u001b(B \u001b$(D;%\u001b(B \u001b$(D;&\u001b(B \u001b$(D;'\u001b(B \u001b$(D;(\u001b(B \u001b$(D;)\u001b(B \u001b$(D;*\u001b(B \u001b$(D;+\u001b(B \u001b$(D;,\u001b(B \u001b$(D;-\u001b(B \u001b$(D;.\u001b(B \u001b$(D;/\u001b(B\n\u001b$(D;0\u001b(B \u001b$(D;1\u001b(B \u001b$(D;2\u001b(B \u001b$(D;3\u001b(B \u001b$(D;4\u001b(B \u001b$(D;5\u001b(B \u001b$(D;6\u001b(B \u001b$(D;7\u001b(B \u001b$(D;8\u001b(B \u001b$(D;9\u001b(B \u001b$(D;:\u001b(B \u001b$(D;;\u001b(B \u001b$(D;<\u001b(B \u001b$(D;=\u001b(B \u001b$(D;>\u001b(B \u001b$(D;?\u001b(B\n\u001b$(D;@\u001b(B \u001b$(D;A\u001b(B \u001b$(D;B\u001b(B \u001b$(D;C\u001b(B \u001b$(D;D\u001b(B \u001b$(D;E\u001b(B \u001b$(D;F\u001b(B \u001b$(D;G\u001b(B \u001b$(D;H\u001b(B \u001b$(D;I\u001b(B \u001b$(D;J\u001b(B \u001b$(D;K\u001b(B \u001b$(D;L\u001b(B \u001b$(D;M\u001b(B \u001b$(D;N\u001b(B \u001b$(D;O\u001b(B\n\u001b$(D;P\u001b(B \u001b$(D;Q\u001b(B \u001b$(D;R\u001b(B \u001b$(D;S\u001b(B \u001b$(D;T\u001b(B \u001b$(D;U\u001b(B \u001b$(D;V\u001b(B \u001b$(D;W\u001b(B \u001b$(D;X\u001b(B \u001b$(D;Y\u001b(B \u001b$(D;Z\u001b(B \u001b$(D;[\u001b(B \u001b$(D;\\\u001b(B \u001b$(D;]\u001b(B \u001b$(D;^\u001b(B \u001b$(D;_\u001b(B\n\u001b$(D;`\u001b(B \u001b$(D;a\u001b(B \u001b$(D;b\u001b(B \u001b$(D;c\u001b(B \u001b$(D;d\u001b(B \u001b$(D;e\u001b(B \u001b$(D;f\u001b(B \u001b$(D;g\u001b(B \u001b$(D;h\u001b(B \u001b$(D;i\u001b(B \u001b$(D;j\u001b(B \u001b$(D;k\u001b(B \u001b$(D;l\u001b(B \u001b$(D;m\u001b(B \u001b$(D;n\u001b(B \u001b$(D;o\u001b(B\n\u001b$(D;p\u001b(B \u001b$(D;q\u001b(B \u001b$(D;r\u001b(B \u001b$(D;s\u001b(B \u001b$(D;t\u001b(B \u001b$(D;u\u001b(B \u001b$(D;v\u001b(B \u001b$(D;w\u001b(B \u001b$(D;x\u001b(B \u001b$(D;y\u001b(B \u001b$(D;z\u001b(B \u001b$(D;{\u001b(B \u001b$(D;|\u001b(B \u001b$(D;}\u001b(B \u001b$(D;~\u001b(B\n  \u001b$(D<!\u001b(B \u001b$(D<\"\u001b(B \u001b$(D<#\u001b(B \u001b$(D<$\u001b(B \u001b$(D<%\u001b(B \u001b$(D<&\u001b(B \u001b$(D<'\u001b(B \u001b$(D<(\u001b(B \u001b$(D<)\u001b(B \u001b$(D<*\u001b(B \u001b$(D<+\u001b(B \u001b$(D<,\u001b(B \u001b$(D<-\u001b(B \u001b$(D<.\u001b(B \u001b$(D</\u001b(B\n\u001b$(D<0\u001b(B \u001b$(D<1\u001b(B \u001b$(D<2\u001b(B \u001b$(D<3\u001b(B \u001b$(D<4\u001b(B \u001b$(D<5\u001b(B \u001b$(D<6\u001b(B \u001b$(D<7\u001b(B \u001b$(D<8\u001b(B \u001b$(D<9\u001b(B \u001b$(D<:\u001b(B \u001b$(D<;\u001b(B \u001b$(D<<\u001b(B \u001b$(D<=\u001b(B \u001b$(D<>\u001b(B \u001b$(D<?\u001b(B\n\u001b$(D<@\u001b(B \u001b$(D<A\u001b(B \u001b$(D<B\u001b(B \u001b$(D<C\u001b(B \u001b$(D<D\u001b(B \u001b$(D<E\u001b(B \u001b$(D<F\u001b(B \u001b$(D<G\u001b(B \u001b$(D<H\u001b(B \u001b$(D<I\u001b(B \u001b$(D<J\u001b(B \u001b$(D<K\u001b(B \u001b$(D<L\u001b(B \u001b$(D<M\u001b(B \u001b$(D<N\u001b(B \u001b$(D<O\u001b(B\n\u001b$(D<P\u001b(B \u001b$(D<Q\u001b(B \u001b$(D<R\u001b(B \u001b$(D<S\u001b(B \u001b$(D<T\u001b(B \u001b$(D<U\u001b(B \u001b$(D<V\u001b(B \u001b$(D<W\u001b(B \u001b$(D<X\u001b(B \u001b$(D<Y\u001b(B \u001b$(D<Z\u001b(B \u001b$(D<[\u001b(B \u001b$(D<\\\u001b(B \u001b$(D<]\u001b(B \u001b$(D<^\u001b(B \u001b$(D<_\u001b(B\n\u001b$(D<`\u001b(B \u001b$(D<a\u001b(B \u001b$(D<b\u001b(B \u001b$(D<c\u001b(B \u001b$(D<d\u001b(B \u001b$(D<e\u001b(B \u001b$(D<f\u001b(B \u001b$(D<g\u001b(B \u001b$(D<h\u001b(B \u001b$(D<i\u001b(B \u001b$(D<j\u001b(B \u001b$(D<k\u001b(B \u001b$(D<l\u001b(B \u001b$(D<m\u001b(B \u001b$(D<n\u001b(B \u001b$(D<o\u001b(B\n\u001b$(D<p\u001b(B \u001b$(D<q\u001b(B \u001b$(D<r\u001b(B \u001b$(D<s\u001b(B \u001b$(D<t\u001b(B \u001b$(D<u\u001b(B \u001b$(D<v\u001b(B \u001b$(D<w\u001b(B \u001b$(D<x\u001b(B \u001b$(D<y\u001b(B \u001b$(D<z\u001b(B \u001b$(D<{\u001b(B \u001b$(D<|\u001b(B \u001b$(D<}\u001b(B \u001b$(D<~\u001b(B\n  \u001b$(D=!\u001b(B \u001b$(D=\"\u001b(B \u001b$(D=#\u001b(B \u001b$(D=$\u001b(B \u001b$(D=%\u001b(B \u001b$(D=&\u001b(B \u001b$(D='\u001b(B \u001b$(D=(\u001b(B \u001b$(D=)\u001b(B \u001b$(D=*\u001b(B \u001b$(D=+\u001b(B \u001b$(D=,\u001b(B \u001b$(D=-\u001b(B \u001b$(D=.\u001b(B \u001b$(D=/\u001b(B\n\u001b$(D=0\u001b(B \u001b$(D=1\u001b(B \u001b$(D=2\u001b(B \u001b$(D=3\u001b(B \u001b$(D=4\u001b(B \u001b$(D=5\u001b(B \u001b$(D=6\u001b(B \u001b$(D=7\u001b(B \u001b$(D=8\u001b(B \u001b$(D=9\u001b(B \u001b$(D=:\u001b(B \u001b$(D=;\u001b(B \u001b$(D=<\u001b(B \u001b$(D==\u001b(B \u001b$(D=>\u001b(B \u001b$(D=?\u001b(B\n\u001b$(D=@\u001b(B \u001b$(D=A\u001b(B \u001b$(D=B\u001b(B \u001b$(D=C\u001b(B \u001b$(D=D\u001b(B \u001b$(D=E\u001b(B \u001b$(D=F\u001b(B \u001b$(D=G\u001b(B \u001b$(D=H\u001b(B \u001b$(D=I\u001b(B \u001b$(D=J\u001b(B \u001b$(D=K\u001b(B \u001b$(D=L\u001b(B \u001b$(D=M\u001b(B \u001b$(D=N\u001b(B \u001b$(D=O\u001b(B\n\u001b$(D=P\u001b(B \u001b$(D=Q\u001b(B \u001b$(D=R\u001b(B \u001b$(D=S\u001b(B \u001b$(D=T\u001b(B \u001b$(D=U\u001b(B \u001b$(D=V\u001b(B \u001b$(D=W\u001b(B \u001b$(D=X\u001b(B \u001b$(D=Y\u001b(B \u001b$(D=Z\u001b(B \u001b$(D=[\u001b(B \u001b$(D=\\\u001b(B \u001b$(D=]\u001b(B \u001b$(D=^\u001b(B \u001b$(D=_\u001b(B\n\u001b$(D=`\u001b(B \u001b$(D=a\u001b(B \u001b$(D=b\u001b(B \u001b$(D=c\u001b(B \u001b$(D=d\u001b(B \u001b$(D=e\u001b(B \u001b$(D=f\u001b(B \u001b$(D=g\u001b(B \u001b$(D=h\u001b(B \u001b$(D=i\u001b(B \u001b$(D=j\u001b(B \u001b$(D=k\u001b(B \u001b$(D=l\u001b(B \u001b$(D=m\u001b(B \u001b$(D=n\u001b(B \u001b$(D=o\u001b(B\n\u001b$(D=p\u001b(B \u001b$(D=q\u001b(B \u001b$(D=r\u001b(B \u001b$(D=s\u001b(B \u001b$(D=t\u001b(B \u001b$(D=u\u001b(B \u001b$(D=v\u001b(B \u001b$(D=w\u001b(B \u001b$(D=x\u001b(B \u001b$(D=y\u001b(B \u001b$(D=z\u001b(B \u001b$(D={\u001b(B \u001b$(D=|\u001b(B \u001b$(D=}\u001b(B \u001b$(D=~\u001b(B\n  \u001b$(D>!\u001b(B \u001b$(D>\"\u001b(B \u001b$(D>#\u001b(B \u001b$(D>$\u001b(B \u001b$(D>%\u001b(B \u001b$(D>&\u001b(B \u001b$(D>'\u001b(B \u001b$(D>(\u001b(B \u001b$(D>)\u001b(B \u001b$(D>*\u001b(B \u001b$(D>+\u001b(B \u001b$(D>,\u001b(B \u001b$(D>-\u001b(B \u001b$(D>.\u001b(B \u001b$(D>/\u001b(B\n\u001b$(D>0\u001b(B \u001b$(D>1\u001b(B \u001b$(D>2\u001b(B \u001b$(D>3\u001b(B \u001b$(D>4\u001b(B \u001b$(D>5\u001b(B \u001b$(D>6\u001b(B \u001b$(D>7\u001b(B \u001b$(D>8\u001b(B \u001b$(D>9\u001b(B \u001b$(D>:\u001b(B \u001b$(D>;\u001b(B \u001b$(D><\u001b(B \u001b$(D>=\u001b(B \u001b$(D>>\u001b(B \u001b$(D>?\u001b(B\n\u001b$(D>@\u001b(B \u001b$(D>A\u001b(B \u001b$(D>B\u001b(B \u001b$(D>C\u001b(B \u001b$(D>D\u001b(B \u001b$(D>E\u001b(B \u001b$(D>F\u001b(B \u001b$(D>G\u001b(B \u001b$(D>H\u001b(B \u001b$(D>I\u001b(B \u001b$(D>J\u001b(B \u001b$(D>K\u001b(B \u001b$(D>L\u001b(B \u001b$(D>M\u001b(B \u001b$(D>N\u001b(B \u001b$(D>O\u001b(B\n\u001b$(D>P\u001b(B \u001b$(D>Q\u001b(B \u001b$(D>R\u001b(B \u001b$(D>S\u001b(B \u001b$(D>T\u001b(B \u001b$(D>U\u001b(B \u001b$(D>V\u001b(B \u001b$(D>W\u001b(B \u001b$(D>X\u001b(B \u001b$(D>Y\u001b(B \u001b$(D>Z\u001b(B \u001b$(D>[\u001b(B \u001b$(D>\\\u001b(B \u001b$(D>]\u001b(B \u001b$(D>^\u001b(B \u001b$(D>_\u001b(B\n\u001b$(D>`\u001b(B \u001b$(D>a\u001b(B \u001b$(D>b\u001b(B \u001b$(D>c\u001b(B \u001b$(D>d\u001b(B \u001b$(D>e\u001b(B \u001b$(D>f\u001b(B \u001b$(D>g\u001b(B \u001b$(D>h\u001b(B \u001b$(D>i\u001b(B \u001b$(D>j\u001b(B \u001b$(D>k\u001b(B \u001b$(D>l\u001b(B \u001b$(D>m\u001b(B \u001b$(D>n\u001b(B \u001b$(D>o\u001b(B\n\u001b$(D>p\u001b(B \u001b$(D>q\u001b(B \u001b$(D>r\u001b(B \u001b$(D>s\u001b(B \u001b$(D>t\u001b(B \u001b$(D>u\u001b(B \u001b$(D>v\u001b(B \u001b$(D>w\u001b(B \u001b$(D>x\u001b(B \u001b$(D>y\u001b(B \u001b$(D>z\u001b(B \u001b$(D>{\u001b(B \u001b$(D>|\u001b(B \u001b$(D>}\u001b(B \u001b$(D>~\u001b(B\n  \u001b$(D?!\u001b(B \u001b$(D?\"\u001b(B \u001b$(D?#\u001b(B \u001b$(D?$\u001b(B \u001b$(D?%\u001b(B \u001b$(D?&\u001b(B \u001b$(D?'\u001b(B \u001b$(D?(\u001b(B \u001b$(D?)\u001b(B \u001b$(D?*\u001b(B \u001b$(D?+\u001b(B \u001b$(D?,\u001b(B \u001b$(D?-\u001b(B \u001b$(D?.\u001b(B \u001b$(D?/\u001b(B\n\u001b$(D?0\u001b(B \u001b$(D?1\u001b(B \u001b$(D?2\u001b(B \u001b$(D?3\u001b(B \u001b$(D?4\u001b(B \u001b$(D?5\u001b(B \u001b$(D?6\u001b(B \u001b$(D?7\u001b(B \u001b$(D?8\u001b(B \u001b$(D?9\u001b(B \u001b$(D?:\u001b(B \u001b$(D?;\u001b(B \u001b$(D?<\u001b(B \u001b$(D?=\u001b(B \u001b$(D?>\u001b(B \u001b$(D??\u001b(B\n\u001b$(D?@\u001b(B \u001b$(D?A\u001b(B \u001b$(D?B\u001b(B \u001b$(D?C\u001b(B \u001b$(D?D\u001b(B \u001b$(D?E\u001b(B \u001b$(D?F\u001b(B \u001b$(D?G\u001b(B \u001b$(D?H\u001b(B \u001b$(D?I\u001b(B \u001b$(D?J\u001b(B \u001b$(D?K\u001b(B \u001b$(D?L\u001b(B \u001b$(D?M\u001b(B \u001b$(D?N\u001b(B \u001b$(D?O\u001b(B\n\u001b$(D?P\u001b(B \u001b$(D?Q\u001b(B \u001b$(D?R\u001b(B \u001b$(D?S\u001b(B \u001b$(D?T\u001b(B \u001b$(D?U\u001b(B \u001b$(D?V\u001b(B \u001b$(D?W\u001b(B \u001b$(D?X\u001b(B \u001b$(D?Y\u001b(B \u001b$(D?Z\u001b(B \u001b$(D?[\u001b(B \u001b$(D?\\\u001b(B \u001b$(D?]\u001b(B \u001b$(D?^\u001b(B \u001b$(D?_\u001b(B\n\u001b$(D?`\u001b(B \u001b$(D?a\u001b(B \u001b$(D?b\u001b(B \u001b$(D?c\u001b(B \u001b$(D?d\u001b(B \u001b$(D?e\u001b(B \u001b$(D?f\u001b(B \u001b$(D?g\u001b(B \u001b$(D?h\u001b(B \u001b$(D?i\u001b(B \u001b$(D?j\u001b(B \u001b$(D?k\u001b(B \u001b$(D?l\u001b(B \u001b$(D?m\u001b(B \u001b$(D?n\u001b(B \u001b$(D?o\u001b(B\n\u001b$(D?p\u001b(B \u001b$(D?q\u001b(B \u001b$(D?r\u001b(B \u001b$(D?s\u001b(B \u001b$(D?t\u001b(B \u001b$(D?u\u001b(B \u001b$(D?v\u001b(B \u001b$(D?w\u001b(B \u001b$(D?x\u001b(B \u001b$(D?y\u001b(B \u001b$(D?z\u001b(B \u001b$(D?{\u001b(B \u001b$(D?|\u001b(B \u001b$(D?}\u001b(B \u001b$(D?~\u001b(B\n  \u001b$(D@!\u001b(B \u001b$(D@\"\u001b(B \u001b$(D@#\u001b(B \u001b$(D@$\u001b(B \u001b$(D@%\u001b(B \u001b$(D@&\u001b(B \u001b$(D@'\u001b(B \u001b$(D@(\u001b(B \u001b$(D@)\u001b(B \u001b$(D@*\u001b(B \u001b$(D@+\u001b(B \u001b$(D@,\u001b(B \u001b$(D@-\u001b(B \u001b$(D@.\u001b(B \u001b$(D@/\u001b(B\n\u001b$(D@0\u001b(B \u001b$(D@1\u001b(B \u001b$(D@2\u001b(B \u001b$(D@3\u001b(B \u001b$(D@4\u001b(B \u001b$(D@5\u001b(B \u001b$(D@6\u001b(B \u001b$(D@7\u001b(B \u001b$(D@8\u001b(B \u001b$(D@9\u001b(B \u001b$(D@:\u001b(B \u001b$(D@;\u001b(B \u001b$(D@<\u001b(B \u001b$(D@=\u001b(B \u001b$(D@>\u001b(B \u001b$(D@?\u001b(B\n\u001b$(D@@\u001b(B \u001b$(D@A\u001b(B \u001b$(D@B\u001b(B \u001b$(D@C\u001b(B \u001b$(D@D\u001b(B \u001b$(D@E\u001b(B \u001b$(D@F\u001b(B \u001b$(D@G\u001b(B \u001b$(D@H\u001b(B \u001b$(D@I\u001b(B \u001b$(D@J\u001b(B \u001b$(D@K\u001b(B \u001b$(D@L\u001b(B \u001b$(D@M\u001b(B \u001b$(D@N\u001b(B \u001b$(D@O\u001b(B\n\u001b$(D@P\u001b(B \u001b$(D@Q\u001b(B \u001b$(D@R\u001b(B \u001b$(D@S\u001b(B \u001b$(D@T\u001b(B \u001b$(D@U\u001b(B \u001b$(D@V\u001b(B \u001b$(D@W\u001b(B \u001b$(D@X\u001b(B \u001b$(D@Y\u001b(B \u001b$(D@Z\u001b(B \u001b$(D@[\u001b(B \u001b$(D@\\\u001b(B \u001b$(D@]\u001b(B \u001b$(D@^\u001b(B \u001b$(D@_\u001b(B\n\u001b$(D@`\u001b(B \u001b$(D@a\u001b(B \u001b$(D@b\u001b(B \u001b$(D@c\u001b(B \u001b$(D@d\u001b(B \u001b$(D@e\u001b(B \u001b$(D@f\u001b(B \u001b$(D@g\u001b(B \u001b$(D@h\u001b(B \u001b$(D@i\u001b(B \u001b$(D@j\u001b(B \u001b$(D@k\u001b(B \u001b$(D@l\u001b(B \u001b$(D@m\u001b(B \u001b$(D@n\u001b(B \u001b$(D@o\u001b(B\n\u001b$(D@p\u001b(B \u001b$(D@q\u001b(B \u001b$(D@r\u001b(B \u001b$(D@s\u001b(B \u001b$(D@t\u001b(B \u001b$(D@u\u001b(B \u001b$(D@v\u001b(B \u001b$(D@w\u001b(B \u001b$(D@x\u001b(B \u001b$(D@y\u001b(B \u001b$(D@z\u001b(B \u001b$(D@{\u001b(B \u001b$(D@|\u001b(B \u001b$(D@}\u001b(B \u001b$(D@~\u001b(B\n  \u001b$(DA!\u001b(B \u001b$(DA\"\u001b(B \u001b$(DA#\u001b(B \u001b$(DA$\u001b(B \u001b$(DA%\u001b(B \u001b$(DA&\u001b(B \u001b$(DA'\u001b(B \u001b$(DA(\u001b(B \u001b$(DA)\u001b(B \u001b$(DA*\u001b(B \u001b$(DA+\u001b(B \u001b$(DA,\u001b(B \u001b$(DA-\u001b(B \u001b$(DA.\u001b(B \u001b$(DA/\u001b(B\n\u001b$(DA0\u001b(B \u001b$(DA1\u001b(B \u001b$(DA2\u001b(B \u001b$(DA3\u001b(B \u001b$(DA4\u001b(B \u001b$(DA5\u001b(B \u001b$(DA6\u001b(B \u001b$(DA7\u001b(B \u001b$(DA8\u001b(B \u001b$(DA9\u001b(B \u001b$(DA:\u001b(B \u001b$(DA;\u001b(B \u001b$(DA<\u001b(B \u001b$(DA=\u001b(B \u001b$(DA>\u001b(B \u001b$(DA?\u001b(B\n\u001b$(DA@\u001b(B \u001b$(DAA\u001b(B \u001b$(DAB\u001b(B \u001b$(DAC\u001b(B \u001b$(DAD\u001b(B \u001b$(DAE\u001b(B \u001b$(DAF\u001b(B \u001b$(DAG\u001b(B \u001b$(DAH\u001b(B \u001b$(DAI\u001b(B \u001b$(DAJ\u001b(B \u001b$(DAK\u001b(B \u001b$(DAL\u001b(B \u001b$(DAM\u001b(B \u001b$(DAN\u001b(B \u001b$(DAO\u001b(B\n\u001b$(DAP\u001b(B \u001b$(DAQ\u001b(B \u001b$(DAR\u001b(B \u001b$(DAS\u001b(B \u001b$(DAT\u001b(B \u001b$(DAU\u001b(B \u001b$(DAV\u001b(B \u001b$(DAW\u001b(B \u001b$(DAX\u001b(B \u001b$(DAY\u001b(B \u001b$(DAZ\u001b(B \u001b$(DA[\u001b(B \u001b$(DA\\\u001b(B \u001b$(DA]\u001b(B \u001b$(DA^\u001b(B \u001b$(DA_\u001b(B\n\u001b$(DA`\u001b(B \u001b$(DAa\u001b(B \u001b$(DAb\u001b(B \u001b$(DAc\u001b(B \u001b$(DAd\u001b(B \u001b$(DAe\u001b(B \u001b$(DAf\u001b(B \u001b$(DAg\u001b(B \u001b$(DAh\u001b(B \u001b$(DAi\u001b(B \u001b$(DAj\u001b(B \u001b$(DAk\u001b(B \u001b$(DAl\u001b(B \u001b$(DAm\u001b(B \u001b$(DAn\u001b(B \u001b$(DAo\u001b(B\n\u001b$(DAp\u001b(B \u001b$(DAq\u001b(B \u001b$(DAr\u001b(B \u001b$(DAs\u001b(B \u001b$(DAt\u001b(B \u001b$(DAu\u001b(B \u001b$(DAv\u001b(B \u001b$(DAw\u001b(B \u001b$(DAx\u001b(B \u001b$(DAy\u001b(B \u001b$(DAz\u001b(B \u001b$(DA{\u001b(B \u001b$(DA|\u001b(B \u001b$(DA}\u001b(B \u001b$(DA~\u001b(B\n  \u001b$(DB!\u001b(B \u001b$(DB\"\u001b(B \u001b$(DB#\u001b(B \u001b$(DB$\u001b(B \u001b$(DB%\u001b(B \u001b$(DB&\u001b(B \u001b$(DB'\u001b(B \u001b$(DB(\u001b(B \u001b$(DB)\u001b(B \u001b$(DB*\u001b(B \u001b$(DB+\u001b(B \u001b$(DB,\u001b(B \u001b$(DB-\u001b(B \u001b$(DB.\u001b(B \u001b$(DB/\u001b(B\n\u001b$(DB0\u001b(B \u001b$(DB1\u001b(B \u001b$(DB2\u001b(B \u001b$(DB3\u001b(B \u001b$(DB4\u001b(B \u001b$(DB5\u001b(B \u001b$(DB6\u001b(B \u001b$(DB7\u001b(B \u001b$(DB8\u001b(B \u001b$(DB9\u001b(B \u001b$(DB:\u001b(B \u001b$(DB;\u001b(B \u001b$(DB<\u001b(B \u001b$(DB=\u001b(B \u001b$(DB>\u001b(B \u001b$(DB?\u001b(B\n\u001b$(DB@\u001b(B \u001b$(DBA\u001b(B \u001b$(DBB\u001b(B \u001b$(DBC\u001b(B \u001b$(DBD\u001b(B \u001b$(DBE\u001b(B \u001b$(DBF\u001b(B \u001b$(DBG\u001b(B \u001b$(DBH\u001b(B \u001b$(DBI\u001b(B \u001b$(DBJ\u001b(B \u001b$(DBK\u001b(B \u001b$(DBL\u001b(B \u001b$(DBM\u001b(B \u001b$(DBN\u001b(B \u001b$(DBO\u001b(B\n\u001b$(DBP\u001b(B \u001b$(DBQ\u001b(B \u001b$(DBR\u001b(B \u001b$(DBS\u001b(B \u001b$(DBT\u001b(B \u001b$(DBU\u001b(B \u001b$(DBV\u001b(B \u001b$(DBW\u001b(B \u001b$(DBX\u001b(B \u001b$(DBY\u001b(B \u001b$(DBZ\u001b(B \u001b$(DB[\u001b(B \u001b$(DB\\\u001b(B \u001b$(DB]\u001b(B \u001b$(DB^\u001b(B \u001b$(DB_\u001b(B\n\u001b$(DB`\u001b(B \u001b$(DBa\u001b(B \u001b$(DBb\u001b(B \u001b$(DBc\u001b(B \u001b$(DBd\u001b(B \u001b$(DBe\u001b(B \u001b$(DBf\u001b(B \u001b$(DBg\u001b(B \u001b$(DBh\u001b(B \u001b$(DBi\u001b(B \u001b$(DBj\u001b(B \u001b$(DBk\u001b(B \u001b$(DBl\u001b(B \u001b$(DBm\u001b(B \u001b$(DBn\u001b(B \u001b$(DBo\u001b(B\n\u001b$(DBp\u001b(B \u001b$(DBq\u001b(B \u001b$(DBr\u001b(B \u001b$(DBs\u001b(B \u001b$(DBt\u001b(B \u001b$(DBu\u001b(B \u001b$(DBv\u001b(B \u001b$(DBw\u001b(B \u001b$(DBx\u001b(B \u001b$(DBy\u001b(B \u001b$(DBz\u001b(B \u001b$(DB{\u001b(B \u001b$(DB|\u001b(B \u001b$(DB}\u001b(B \u001b$(DB~\u001b(B\n  \u001b$(DC!\u001b(B \u001b$(DC\"\u001b(B \u001b$(DC#\u001b(B \u001b$(DC$\u001b(B \u001b$(DC%\u001b(B \u001b$(DC&\u001b(B \u001b$(DC'\u001b(B \u001b$(DC(\u001b(B \u001b$(DC)\u001b(B \u001b$(DC*\u001b(B \u001b$(DC+\u001b(B \u001b$(DC,\u001b(B \u001b$(DC-\u001b(B \u001b$(DC.\u001b(B \u001b$(DC/\u001b(B\n\u001b$(DC0\u001b(B \u001b$(DC1\u001b(B \u001b$(DC2\u001b(B \u001b$(DC3\u001b(B \u001b$(DC4\u001b(B \u001b$(DC5\u001b(B \u001b$(DC6\u001b(B \u001b$(DC7\u001b(B \u001b$(DC8\u001b(B \u001b$(DC9\u001b(B \u001b$(DC:\u001b(B \u001b$(DC;\u001b(B \u001b$(DC<\u001b(B \u001b$(DC=\u001b(B \u001b$(DC>\u001b(B \u001b$(DC?\u001b(B\n\u001b$(DC@\u001b(B \u001b$(DCA\u001b(B \u001b$(DCB\u001b(B \u001b$(DCC\u001b(B \u001b$(DCD\u001b(B \u001b$(DCE\u001b(B \u001b$(DCF\u001b(B \u001b$(DCG\u001b(B \u001b$(DCH\u001b(B \u001b$(DCI\u001b(B \u001b$(DCJ\u001b(B \u001b$(DCK\u001b(B \u001b$(DCL\u001b(B \u001b$(DCM\u001b(B \u001b$(DCN\u001b(B \u001b$(DCO\u001b(B\n\u001b$(DCP\u001b(B \u001b$(DCQ\u001b(B \u001b$(DCR\u001b(B \u001b$(DCS\u001b(B \u001b$(DCT\u001b(B \u001b$(DCU\u001b(B \u001b$(DCV\u001b(B \u001b$(DCW\u001b(B \u001b$(DCX\u001b(B \u001b$(DCY\u001b(B \u001b$(DCZ\u001b(B \u001b$(DC[\u001b(B \u001b$(DC\\\u001b(B \u001b$(DC]\u001b(B \u001b$(DC^\u001b(B \u001b$(DC_\u001b(B\n\u001b$(DC`\u001b(B \u001b$(DCa\u001b(B \u001b$(DCb\u001b(B \u001b$(DCc\u001b(B \u001b$(DCd\u001b(B \u001b$(DCe\u001b(B \u001b$(DCf\u001b(B \u001b$(DCg\u001b(B \u001b$(DCh\u001b(B \u001b$(DCi\u001b(B \u001b$(DCj\u001b(B \u001b$(DCk\u001b(B \u001b$(DCl\u001b(B \u001b$(DCm\u001b(B \u001b$(DCn\u001b(B \u001b$(DCo\u001b(B\n\u001b$(DCp\u001b(B \u001b$(DCq\u001b(B \u001b$(DCr\u001b(B \u001b$(DCs\u001b(B \u001b$(DCt\u001b(B \u001b$(DCu\u001b(B \u001b$(DCv\u001b(B \u001b$(DCw\u001b(B \u001b$(DCx\u001b(B \u001b$(DCy\u001b(B \u001b$(DCz\u001b(B \u001b$(DC{\u001b(B \u001b$(DC|\u001b(B \u001b$(DC}\u001b(B \u001b$(DC~\u001b(B\n  \u001b$(DD!\u001b(B \u001b$(DD\"\u001b(B \u001b$(DD#\u001b(B \u001b$(DD$\u001b(B \u001b$(DD%\u001b(B \u001b$(DD&\u001b(B \u001b$(DD'\u001b(B \u001b$(DD(\u001b(B \u001b$(DD)\u001b(B \u001b$(DD*\u001b(B \u001b$(DD+\u001b(B \u001b$(DD,\u001b(B \u001b$(DD-\u001b(B \u001b$(DD.\u001b(B \u001b$(DD/\u001b(B\n\u001b$(DD0\u001b(B \u001b$(DD1\u001b(B \u001b$(DD2\u001b(B \u001b$(DD3\u001b(B \u001b$(DD4\u001b(B \u001b$(DD5\u001b(B \u001b$(DD6\u001b(B \u001b$(DD7\u001b(B \u001b$(DD8\u001b(B \u001b$(DD9\u001b(B \u001b$(DD:\u001b(B \u001b$(DD;\u001b(B \u001b$(DD<\u001b(B \u001b$(DD=\u001b(B \u001b$(DD>\u001b(B \u001b$(DD?\u001b(B\n\u001b$(DD@\u001b(B \u001b$(DDA\u001b(B \u001b$(DDB\u001b(B \u001b$(DDC\u001b(B \u001b$(DDD\u001b(B \u001b$(DDE\u001b(B \u001b$(DDF\u001b(B \u001b$(DDG\u001b(B \u001b$(DDH\u001b(B \u001b$(DDI\u001b(B \u001b$(DDJ\u001b(B \u001b$(DDK\u001b(B \u001b$(DDL\u001b(B \u001b$(DDM\u001b(B \u001b$(DDN\u001b(B \u001b$(DDO\u001b(B\n\u001b$(DDP\u001b(B \u001b$(DDQ\u001b(B \u001b$(DDR\u001b(B \u001b$(DDS\u001b(B \u001b$(DDT\u001b(B \u001b$(DDU\u001b(B \u001b$(DDV\u001b(B \u001b$(DDW\u001b(B \u001b$(DDX\u001b(B \u001b$(DDY\u001b(B \u001b$(DDZ\u001b(B \u001b$(DD[\u001b(B \u001b$(DD\\\u001b(B \u001b$(DD]\u001b(B \u001b$(DD^\u001b(B \u001b$(DD_\u001b(B\n\u001b$(DD`\u001b(B \u001b$(DDa\u001b(B \u001b$(DDb\u001b(B \u001b$(DDc\u001b(B \u001b$(DDd\u001b(B \u001b$(DDe\u001b(B \u001b$(DDf\u001b(B \u001b$(DDg\u001b(B \u001b$(DDh\u001b(B \u001b$(DDi\u001b(B \u001b$(DDj\u001b(B \u001b$(DDk\u001b(B \u001b$(DDl\u001b(B \u001b$(DDm\u001b(B \u001b$(DDn\u001b(B \u001b$(DDo\u001b(B\n\u001b$(DDp\u001b(B \u001b$(DDq\u001b(B \u001b$(DDr\u001b(B \u001b$(DDs\u001b(B \u001b$(DDt\u001b(B \u001b$(DDu\u001b(B \u001b$(DDv\u001b(B \u001b$(DDw\u001b(B \u001b$(DDx\u001b(B \u001b$(DDy\u001b(B \u001b$(DDz\u001b(B \u001b$(DD{\u001b(B \u001b$(DD|\u001b(B \u001b$(DD}\u001b(B \u001b$(DD~\u001b(B\n  \u001b$(DE!\u001b(B \u001b$(DE\"\u001b(B \u001b$(DE#\u001b(B \u001b$(DE$\u001b(B \u001b$(DE%\u001b(B \u001b$(DE&\u001b(B \u001b$(DE'\u001b(B \u001b$(DE(\u001b(B \u001b$(DE)\u001b(B \u001b$(DE*\u001b(B \u001b$(DE+\u001b(B \u001b$(DE,\u001b(B \u001b$(DE-\u001b(B \u001b$(DE.\u001b(B \u001b$(DE/\u001b(B\n\u001b$(DE0\u001b(B \u001b$(DE1\u001b(B \u001b$(DE2\u001b(B \u001b$(DE3\u001b(B \u001b$(DE4\u001b(B \u001b$(DE5\u001b(B \u001b$(DE6\u001b(B \u001b$(DE7\u001b(B \u001b$(DE8\u001b(B \u001b$(DE9\u001b(B \u001b$(DE:\u001b(B \u001b$(DE;\u001b(B \u001b$(DE<\u001b(B \u001b$(DE=\u001b(B \u001b$(DE>\u001b(B \u001b$(DE?\u001b(B\n\u001b$(DE@\u001b(B \u001b$(DEA\u001b(B \u001b$(DEB\u001b(B \u001b$(DEC\u001b(B \u001b$(DED\u001b(B \u001b$(DEE\u001b(B \u001b$(DEF\u001b(B \u001b$(DEG\u001b(B \u001b$(DEH\u001b(B \u001b$(DEI\u001b(B \u001b$(DEJ\u001b(B \u001b$(DEK\u001b(B \u001b$(DEL\u001b(B \u001b$(DEM\u001b(B \u001b$(DEN\u001b(B \u001b$(DEO\u001b(B\n\u001b$(DEP\u001b(B \u001b$(DEQ\u001b(B \u001b$(DER\u001b(B \u001b$(DES\u001b(B \u001b$(DET\u001b(B \u001b$(DEU\u001b(B \u001b$(DEV\u001b(B \u001b$(DEW\u001b(B \u001b$(DEX\u001b(B \u001b$(DEY\u001b(B \u001b$(DEZ\u001b(B \u001b$(DE[\u001b(B \u001b$(DE\\\u001b(B \u001b$(DE]\u001b(B \u001b$(DE^\u001b(B \u001b$(DE_\u001b(B\n\u001b$(DE`\u001b(B \u001b$(DEa\u001b(B \u001b$(DEb\u001b(B \u001b$(DEc\u001b(B \u001b$(DEd\u001b(B \u001b$(DEe\u001b(B \u001b$(DEf\u001b(B \u001b$(DEg\u001b(B \u001b$(DEh\u001b(B \u001b$(DEi\u001b(B \u001b$(DEj\u001b(B \u001b$(DEk\u001b(B \u001b$(DEl\u001b(B \u001b$(DEm\u001b(B \u001b$(DEn\u001b(B \u001b$(DEo\u001b(B\n\u001b$(DEp\u001b(B \u001b$(DEq\u001b(B \u001b$(DEr\u001b(B \u001b$(DEs\u001b(B \u001b$(DEt\u001b(B \u001b$(DEu\u001b(B \u001b$(DEv\u001b(B \u001b$(DEw\u001b(B \u001b$(DEx\u001b(B \u001b$(DEy\u001b(B \u001b$(DEz\u001b(B \u001b$(DE{\u001b(B \u001b$(DE|\u001b(B \u001b$(DE}\u001b(B \u001b$(DE~\u001b(B\n  \u001b$(DF!\u001b(B \u001b$(DF\"\u001b(B \u001b$(DF#\u001b(B \u001b$(DF$\u001b(B \u001b$(DF%\u001b(B \u001b$(DF&\u001b(B \u001b$(DF'\u001b(B \u001b$(DF(\u001b(B \u001b$(DF)\u001b(B \u001b$(DF*\u001b(B \u001b$(DF+\u001b(B \u001b$(DF,\u001b(B \u001b$(DF-\u001b(B \u001b$(DF.\u001b(B \u001b$(DF/\u001b(B\n\u001b$(DF0\u001b(B \u001b$(DF1\u001b(B \u001b$(DF2\u001b(B \u001b$(DF3\u001b(B \u001b$(DF4\u001b(B \u001b$(DF5\u001b(B \u001b$(DF6\u001b(B \u001b$(DF7\u001b(B \u001b$(DF8\u001b(B \u001b$(DF9\u001b(B \u001b$(DF:\u001b(B \u001b$(DF;\u001b(B \u001b$(DF<\u001b(B \u001b$(DF=\u001b(B \u001b$(DF>\u001b(B \u001b$(DF?\u001b(B\n\u001b$(DF@\u001b(B \u001b$(DFA\u001b(B \u001b$(DFB\u001b(B \u001b$(DFC\u001b(B \u001b$(DFD\u001b(B \u001b$(DFE\u001b(B \u001b$(DFF\u001b(B \u001b$(DFG\u001b(B \u001b$(DFH\u001b(B \u001b$(DFI\u001b(B \u001b$(DFJ\u001b(B \u001b$(DFK\u001b(B \u001b$(DFL\u001b(B \u001b$(DFM\u001b(B \u001b$(DFN\u001b(B \u001b$(DFO\u001b(B\n\u001b$(DFP\u001b(B \u001b$(DFQ\u001b(B \u001b$(DFR\u001b(B \u001b$(DFS\u001b(B \u001b$(DFT\u001b(B \u001b$(DFU\u001b(B \u001b$(DFV\u001b(B \u001b$(DFW\u001b(B \u001b$(DFX\u001b(B \u001b$(DFY\u001b(B \u001b$(DFZ\u001b(B \u001b$(DF[\u001b(B \u001b$(DF\\\u001b(B \u001b$(DF]\u001b(B \u001b$(DF^\u001b(B \u001b$(DF_\u001b(B\n\u001b$(DF`\u001b(B \u001b$(DFa\u001b(B \u001b$(DFb\u001b(B \u001b$(DFc\u001b(B \u001b$(DFd\u001b(B \u001b$(DFe\u001b(B \u001b$(DFf\u001b(B \u001b$(DFg\u001b(B \u001b$(DFh\u001b(B \u001b$(DFi\u001b(B \u001b$(DFj\u001b(B \u001b$(DFk\u001b(B \u001b$(DFl\u001b(B \u001b$(DFm\u001b(B \u001b$(DFn\u001b(B \u001b$(DFo\u001b(B\n\u001b$(DFp\u001b(B \u001b$(DFq\u001b(B \u001b$(DFr\u001b(B \u001b$(DFs\u001b(B \u001b$(DFt\u001b(B \u001b$(DFu\u001b(B \u001b$(DFv\u001b(B \u001b$(DFw\u001b(B \u001b$(DFx\u001b(B \u001b$(DFy\u001b(B \u001b$(DFz\u001b(B \u001b$(DF{\u001b(B \u001b$(DF|\u001b(B \u001b$(DF}\u001b(B \u001b$(DF~\u001b(B\n  \u001b$(DG!\u001b(B \u001b$(DG\"\u001b(B \u001b$(DG#\u001b(B \u001b$(DG$\u001b(B \u001b$(DG%\u001b(B \u001b$(DG&\u001b(B \u001b$(DG'\u001b(B \u001b$(DG(\u001b(B \u001b$(DG)\u001b(B \u001b$(DG*\u001b(B \u001b$(DG+\u001b(B \u001b$(DG,\u001b(B \u001b$(DG-\u001b(B \u001b$(DG.\u001b(B \u001b$(DG/\u001b(B\n\u001b$(DG0\u001b(B \u001b$(DG1\u001b(B \u001b$(DG2\u001b(B \u001b$(DG3\u001b(B \u001b$(DG4\u001b(B \u001b$(DG5\u001b(B \u001b$(DG6\u001b(B \u001b$(DG7\u001b(B \u001b$(DG8\u001b(B \u001b$(DG9\u001b(B \u001b$(DG:\u001b(B \u001b$(DG;\u001b(B \u001b$(DG<\u001b(B \u001b$(DG=\u001b(B \u001b$(DG>\u001b(B \u001b$(DG?\u001b(B\n\u001b$(DG@\u001b(B \u001b$(DGA\u001b(B \u001b$(DGB\u001b(B \u001b$(DGC\u001b(B \u001b$(DGD\u001b(B \u001b$(DGE\u001b(B \u001b$(DGF\u001b(B \u001b$(DGG\u001b(B \u001b$(DGH\u001b(B \u001b$(DGI\u001b(B \u001b$(DGJ\u001b(B \u001b$(DGK\u001b(B \u001b$(DGL\u001b(B \u001b$(DGM\u001b(B \u001b$(DGN\u001b(B \u001b$(DGO\u001b(B\n\u001b$(DGP\u001b(B \u001b$(DGQ\u001b(B \u001b$(DGR\u001b(B \u001b$(DGS\u001b(B \u001b$(DGT\u001b(B \u001b$(DGU\u001b(B \u001b$(DGV\u001b(B \u001b$(DGW\u001b(B \u001b$(DGX\u001b(B \u001b$(DGY\u001b(B \u001b$(DGZ\u001b(B \u001b$(DG[\u001b(B \u001b$(DG\\\u001b(B \u001b$(DG]\u001b(B \u001b$(DG^\u001b(B \u001b$(DG_\u001b(B\n\u001b$(DG`\u001b(B \u001b$(DGa\u001b(B \u001b$(DGb\u001b(B \u001b$(DGc\u001b(B \u001b$(DGd\u001b(B \u001b$(DGe\u001b(B \u001b$(DGf\u001b(B \u001b$(DGg\u001b(B \u001b$(DGh\u001b(B \u001b$(DGi\u001b(B \u001b$(DGj\u001b(B \u001b$(DGk\u001b(B \u001b$(DGl\u001b(B \u001b$(DGm\u001b(B \u001b$(DGn\u001b(B \u001b$(DGo\u001b(B\n\u001b$(DGp\u001b(B \u001b$(DGq\u001b(B \u001b$(DGr\u001b(B \u001b$(DGs\u001b(B \u001b$(DGt\u001b(B \u001b$(DGu\u001b(B \u001b$(DGv\u001b(B \u001b$(DGw\u001b(B \u001b$(DGx\u001b(B \u001b$(DGy\u001b(B \u001b$(DGz\u001b(B \u001b$(DG{\u001b(B \u001b$(DG|\u001b(B \u001b$(DG}\u001b(B \u001b$(DG~\u001b(B\n  \u001b$(DH!\u001b(B \u001b$(DH\"\u001b(B \u001b$(DH#\u001b(B \u001b$(DH$\u001b(B \u001b$(DH%\u001b(B \u001b$(DH&\u001b(B \u001b$(DH'\u001b(B \u001b$(DH(\u001b(B \u001b$(DH)\u001b(B \u001b$(DH*\u001b(B \u001b$(DH+\u001b(B \u001b$(DH,\u001b(B \u001b$(DH-\u001b(B \u001b$(DH.\u001b(B \u001b$(DH/\u001b(B\n\u001b$(DH0\u001b(B \u001b$(DH1\u001b(B \u001b$(DH2\u001b(B \u001b$(DH3\u001b(B \u001b$(DH4\u001b(B \u001b$(DH5\u001b(B \u001b$(DH6\u001b(B \u001b$(DH7\u001b(B \u001b$(DH8\u001b(B \u001b$(DH9\u001b(B \u001b$(DH:\u001b(B \u001b$(DH;\u001b(B \u001b$(DH<\u001b(B \u001b$(DH=\u001b(B \u001b$(DH>\u001b(B \u001b$(DH?\u001b(B\n\u001b$(DH@\u001b(B \u001b$(DHA\u001b(B \u001b$(DHB\u001b(B \u001b$(DHC\u001b(B \u001b$(DHD\u001b(B \u001b$(DHE\u001b(B \u001b$(DHF\u001b(B \u001b$(DHG\u001b(B \u001b$(DHH\u001b(B \u001b$(DHI\u001b(B \u001b$(DHJ\u001b(B \u001b$(DHK\u001b(B \u001b$(DHL\u001b(B \u001b$(DHM\u001b(B \u001b$(DHN\u001b(B \u001b$(DHO\u001b(B\n\u001b$(DHP\u001b(B \u001b$(DHQ\u001b(B \u001b$(DHR\u001b(B \u001b$(DHS\u001b(B \u001b$(DHT\u001b(B \u001b$(DHU\u001b(B \u001b$(DHV\u001b(B \u001b$(DHW\u001b(B \u001b$(DHX\u001b(B \u001b$(DHY\u001b(B \u001b$(DHZ\u001b(B \u001b$(DH[\u001b(B \u001b$(DH\\\u001b(B \u001b$(DH]\u001b(B \u001b$(DH^\u001b(B \u001b$(DH_\u001b(B\n\u001b$(DH`\u001b(B \u001b$(DHa\u001b(B \u001b$(DHb\u001b(B \u001b$(DHc\u001b(B \u001b$(DHd\u001b(B \u001b$(DHe\u001b(B \u001b$(DHf\u001b(B \u001b$(DHg\u001b(B \u001b$(DHh\u001b(B \u001b$(DHi\u001b(B \u001b$(DHj\u001b(B \u001b$(DHk\u001b(B \u001b$(DHl\u001b(B \u001b$(DHm\u001b(B \u001b$(DHn\u001b(B \u001b$(DHo\u001b(B\n\u001b$(DHp\u001b(B \u001b$(DHq\u001b(B \u001b$(DHr\u001b(B \u001b$(DHs\u001b(B \u001b$(DHt\u001b(B \u001b$(DHu\u001b(B \u001b$(DHv\u001b(B \u001b$(DHw\u001b(B \u001b$(DHx\u001b(B \u001b$(DHy\u001b(B \u001b$(DHz\u001b(B \u001b$(DH{\u001b(B \u001b$(DH|\u001b(B \u001b$(DH}\u001b(B \u001b$(DH~\u001b(B\n  \u001b$(DI!\u001b(B \u001b$(DI\"\u001b(B \u001b$(DI#\u001b(B \u001b$(DI$\u001b(B \u001b$(DI%\u001b(B \u001b$(DI&\u001b(B \u001b$(DI'\u001b(B \u001b$(DI(\u001b(B \u001b$(DI)\u001b(B \u001b$(DI*\u001b(B \u001b$(DI+\u001b(B \u001b$(DI,\u001b(B \u001b$(DI-\u001b(B \u001b$(DI.\u001b(B \u001b$(DI/\u001b(B\n\u001b$(DI0\u001b(B \u001b$(DI1\u001b(B \u001b$(DI2\u001b(B \u001b$(DI3\u001b(B \u001b$(DI4\u001b(B \u001b$(DI5\u001b(B \u001b$(DI6\u001b(B \u001b$(DI7\u001b(B \u001b$(DI8\u001b(B \u001b$(DI9\u001b(B \u001b$(DI:\u001b(B \u001b$(DI;\u001b(B \u001b$(DI<\u001b(B \u001b$(DI=\u001b(B \u001b$(DI>\u001b(B \u001b$(DI?\u001b(B\n\u001b$(DI@\u001b(B \u001b$(DIA\u001b(B \u001b$(DIB\u001b(B \u001b$(DIC\u001b(B \u001b$(DID\u001b(B \u001b$(DIE\u001b(B \u001b$(DIF\u001b(B \u001b$(DIG\u001b(B \u001b$(DIH\u001b(B \u001b$(DII\u001b(B \u001b$(DIJ\u001b(B \u001b$(DIK\u001b(B \u001b$(DIL\u001b(B \u001b$(DIM\u001b(B \u001b$(DIN\u001b(B \u001b$(DIO\u001b(B\n\u001b$(DIP\u001b(B \u001b$(DIQ\u001b(B \u001b$(DIR\u001b(B \u001b$(DIS\u001b(B \u001b$(DIT\u001b(B \u001b$(DIU\u001b(B \u001b$(DIV\u001b(B \u001b$(DIW\u001b(B \u001b$(DIX\u001b(B \u001b$(DIY\u001b(B \u001b$(DIZ\u001b(B \u001b$(DI[\u001b(B \u001b$(DI\\\u001b(B \u001b$(DI]\u001b(B \u001b$(DI^\u001b(B \u001b$(DI_\u001b(B\n\u001b$(DI`\u001b(B \u001b$(DIa\u001b(B \u001b$(DIb\u001b(B \u001b$(DIc\u001b(B \u001b$(DId\u001b(B \u001b$(DIe\u001b(B \u001b$(DIf\u001b(B \u001b$(DIg\u001b(B \u001b$(DIh\u001b(B \u001b$(DIi\u001b(B \u001b$(DIj\u001b(B \u001b$(DIk\u001b(B \u001b$(DIl\u001b(B \u001b$(DIm\u001b(B \u001b$(DIn\u001b(B \u001b$(DIo\u001b(B\n\u001b$(DIp\u001b(B \u001b$(DIq\u001b(B \u001b$(DIr\u001b(B \u001b$(DIs\u001b(B \u001b$(DIt\u001b(B \u001b$(DIu\u001b(B \u001b$(DIv\u001b(B \u001b$(DIw\u001b(B \u001b$(DIx\u001b(B \u001b$(DIy\u001b(B \u001b$(DIz\u001b(B \u001b$(DI{\u001b(B \u001b$(DI|\u001b(B \u001b$(DI}\u001b(B \u001b$(DI~\u001b(B\n  \u001b$(DJ!\u001b(B \u001b$(DJ\"\u001b(B \u001b$(DJ#\u001b(B \u001b$(DJ$\u001b(B \u001b$(DJ%\u001b(B \u001b$(DJ&\u001b(B \u001b$(DJ'\u001b(B \u001b$(DJ(\u001b(B \u001b$(DJ)\u001b(B \u001b$(DJ*\u001b(B \u001b$(DJ+\u001b(B \u001b$(DJ,\u001b(B \u001b$(DJ-\u001b(B \u001b$(DJ.\u001b(B \u001b$(DJ/\u001b(B\n\u001b$(DJ0\u001b(B \u001b$(DJ1\u001b(B \u001b$(DJ2\u001b(B \u001b$(DJ3\u001b(B \u001b$(DJ4\u001b(B \u001b$(DJ5\u001b(B \u001b$(DJ6\u001b(B \u001b$(DJ7\u001b(B \u001b$(DJ8\u001b(B \u001b$(DJ9\u001b(B \u001b$(DJ:\u001b(B \u001b$(DJ;\u001b(B \u001b$(DJ<\u001b(B \u001b$(DJ=\u001b(B \u001b$(DJ>\u001b(B \u001b$(DJ?\u001b(B\n\u001b$(DJ@\u001b(B \u001b$(DJA\u001b(B \u001b$(DJB\u001b(B \u001b$(DJC\u001b(B \u001b$(DJD\u001b(B \u001b$(DJE\u001b(B \u001b$(DJF\u001b(B \u001b$(DJG\u001b(B \u001b$(DJH\u001b(B \u001b$(DJI\u001b(B \u001b$(DJJ\u001b(B \u001b$(DJK\u001b(B \u001b$(DJL\u001b(B \u001b$(DJM\u001b(B \u001b$(DJN\u001b(B \u001b$(DJO\u001b(B\n\u001b$(DJP\u001b(B \u001b$(DJQ\u001b(B \u001b$(DJR\u001b(B \u001b$(DJS\u001b(B \u001b$(DJT\u001b(B \u001b$(DJU\u001b(B \u001b$(DJV\u001b(B \u001b$(DJW\u001b(B \u001b$(DJX\u001b(B \u001b$(DJY\u001b(B \u001b$(DJZ\u001b(B \u001b$(DJ[\u001b(B \u001b$(DJ\\\u001b(B \u001b$(DJ]\u001b(B \u001b$(DJ^\u001b(B \u001b$(DJ_\u001b(B\n\u001b$(DJ`\u001b(B \u001b$(DJa\u001b(B \u001b$(DJb\u001b(B \u001b$(DJc\u001b(B \u001b$(DJd\u001b(B \u001b$(DJe\u001b(B \u001b$(DJf\u001b(B \u001b$(DJg\u001b(B \u001b$(DJh\u001b(B \u001b$(DJi\u001b(B \u001b$(DJj\u001b(B \u001b$(DJk\u001b(B \u001b$(DJl\u001b(B \u001b$(DJm\u001b(B \u001b$(DJn\u001b(B \u001b$(DJo\u001b(B\n\u001b$(DJp\u001b(B \u001b$(DJq\u001b(B \u001b$(DJr\u001b(B \u001b$(DJs\u001b(B \u001b$(DJt\u001b(B \u001b$(DJu\u001b(B \u001b$(DJv\u001b(B \u001b$(DJw\u001b(B \u001b$(DJx\u001b(B \u001b$(DJy\u001b(B \u001b$(DJz\u001b(B \u001b$(DJ{\u001b(B \u001b$(DJ|\u001b(B \u001b$(DJ}\u001b(B \u001b$(DJ~\u001b(B\n  \u001b$(DK!\u001b(B \u001b$(DK\"\u001b(B \u001b$(DK#\u001b(B \u001b$(DK$\u001b(B \u001b$(DK%\u001b(B \u001b$(DK&\u001b(B \u001b$(DK'\u001b(B \u001b$(DK(\u001b(B \u001b$(DK)\u001b(B \u001b$(DK*\u001b(B \u001b$(DK+\u001b(B \u001b$(DK,\u001b(B \u001b$(DK-\u001b(B \u001b$(DK.\u001b(B \u001b$(DK/\u001b(B\n\u001b$(DK0\u001b(B \u001b$(DK1\u001b(B \u001b$(DK2\u001b(B \u001b$(DK3\u001b(B \u001b$(DK4\u001b(B \u001b$(DK5\u001b(B \u001b$(DK6\u001b(B \u001b$(DK7\u001b(B \u001b$(DK8\u001b(B \u001b$(DK9\u001b(B \u001b$(DK:\u001b(B \u001b$(DK;\u001b(B \u001b$(DK<\u001b(B \u001b$(DK=\u001b(B \u001b$(DK>\u001b(B \u001b$(DK?\u001b(B\n\u001b$(DK@\u001b(B \u001b$(DKA\u001b(B \u001b$(DKB\u001b(B \u001b$(DKC\u001b(B \u001b$(DKD\u001b(B \u001b$(DKE\u001b(B \u001b$(DKF\u001b(B \u001b$(DKG\u001b(B \u001b$(DKH\u001b(B \u001b$(DKI\u001b(B \u001b$(DKJ\u001b(B \u001b$(DKK\u001b(B \u001b$(DKL\u001b(B \u001b$(DKM\u001b(B \u001b$(DKN\u001b(B \u001b$(DKO\u001b(B\n\u001b$(DKP\u001b(B \u001b$(DKQ\u001b(B \u001b$(DKR\u001b(B \u001b$(DKS\u001b(B \u001b$(DKT\u001b(B \u001b$(DKU\u001b(B \u001b$(DKV\u001b(B \u001b$(DKW\u001b(B \u001b$(DKX\u001b(B \u001b$(DKY\u001b(B \u001b$(DKZ\u001b(B \u001b$(DK[\u001b(B \u001b$(DK\\\u001b(B \u001b$(DK]\u001b(B \u001b$(DK^\u001b(B \u001b$(DK_\u001b(B\n\u001b$(DK`\u001b(B \u001b$(DKa\u001b(B \u001b$(DKb\u001b(B \u001b$(DKc\u001b(B \u001b$(DKd\u001b(B \u001b$(DKe\u001b(B \u001b$(DKf\u001b(B \u001b$(DKg\u001b(B \u001b$(DKh\u001b(B \u001b$(DKi\u001b(B \u001b$(DKj\u001b(B \u001b$(DKk\u001b(B \u001b$(DKl\u001b(B \u001b$(DKm\u001b(B \u001b$(DKn\u001b(B \u001b$(DKo\u001b(B\n\u001b$(DKp\u001b(B \u001b$(DKq\u001b(B \u001b$(DKr\u001b(B \u001b$(DKs\u001b(B \u001b$(DKt\u001b(B \u001b$(DKu\u001b(B \u001b$(DKv\u001b(B \u001b$(DKw\u001b(B \u001b$(DKx\u001b(B \u001b$(DKy\u001b(B \u001b$(DKz\u001b(B \u001b$(DK{\u001b(B \u001b$(DK|\u001b(B \u001b$(DK}\u001b(B \u001b$(DK~\u001b(B\n  \u001b$(DL!\u001b(B \u001b$(DL\"\u001b(B \u001b$(DL#\u001b(B \u001b$(DL$\u001b(B \u001b$(DL%\u001b(B \u001b$(DL&\u001b(B \u001b$(DL'\u001b(B \u001b$(DL(\u001b(B \u001b$(DL)\u001b(B \u001b$(DL*\u001b(B \u001b$(DL+\u001b(B \u001b$(DL,\u001b(B \u001b$(DL-\u001b(B \u001b$(DL.\u001b(B \u001b$(DL/\u001b(B\n\u001b$(DL0\u001b(B \u001b$(DL1\u001b(B \u001b$(DL2\u001b(B \u001b$(DL3\u001b(B \u001b$(DL4\u001b(B \u001b$(DL5\u001b(B \u001b$(DL6\u001b(B \u001b$(DL7\u001b(B \u001b$(DL8\u001b(B \u001b$(DL9\u001b(B \u001b$(DL:\u001b(B \u001b$(DL;\u001b(B \u001b$(DL<\u001b(B \u001b$(DL=\u001b(B \u001b$(DL>\u001b(B \u001b$(DL?\u001b(B\n\u001b$(DL@\u001b(B \u001b$(DLA\u001b(B \u001b$(DLB\u001b(B \u001b$(DLC\u001b(B \u001b$(DLD\u001b(B \u001b$(DLE\u001b(B \u001b$(DLF\u001b(B \u001b$(DLG\u001b(B \u001b$(DLH\u001b(B \u001b$(DLI\u001b(B \u001b$(DLJ\u001b(B \u001b$(DLK\u001b(B \u001b$(DLL\u001b(B \u001b$(DLM\u001b(B \u001b$(DLN\u001b(B \u001b$(DLO\u001b(B\n\u001b$(DLP\u001b(B \u001b$(DLQ\u001b(B \u001b$(DLR\u001b(B \u001b$(DLS\u001b(B \u001b$(DLT\u001b(B \u001b$(DLU\u001b(B \u001b$(DLV\u001b(B \u001b$(DLW\u001b(B \u001b$(DLX\u001b(B \u001b$(DLY\u001b(B \u001b$(DLZ\u001b(B \u001b$(DL[\u001b(B \u001b$(DL\\\u001b(B \u001b$(DL]\u001b(B \u001b$(DL^\u001b(B \u001b$(DL_\u001b(B\n\u001b$(DL`\u001b(B \u001b$(DLa\u001b(B \u001b$(DLb\u001b(B \u001b$(DLc\u001b(B \u001b$(DLd\u001b(B \u001b$(DLe\u001b(B \u001b$(DLf\u001b(B \u001b$(DLg\u001b(B \u001b$(DLh\u001b(B \u001b$(DLi\u001b(B \u001b$(DLj\u001b(B \u001b$(DLk\u001b(B \u001b$(DLl\u001b(B \u001b$(DLm\u001b(B \u001b$(DLn\u001b(B \u001b$(DLo\u001b(B\n\u001b$(DLp\u001b(B \u001b$(DLq\u001b(B \u001b$(DLr\u001b(B \u001b$(DLs\u001b(B \u001b$(DLt\u001b(B \u001b$(DLu\u001b(B \u001b$(DLv\u001b(B \u001b$(DLw\u001b(B \u001b$(DLx\u001b(B \u001b$(DLy\u001b(B \u001b$(DLz\u001b(B \u001b$(DL{\u001b(B \u001b$(DL|\u001b(B \u001b$(DL}\u001b(B \u001b$(DL~\u001b(B\n  \u001b$(DM!\u001b(B \u001b$(DM\"\u001b(B \u001b$(DM#\u001b(B \u001b$(DM$\u001b(B \u001b$(DM%\u001b(B \u001b$(DM&\u001b(B \u001b$(DM'\u001b(B \u001b$(DM(\u001b(B \u001b$(DM)\u001b(B \u001b$(DM*\u001b(B \u001b$(DM+\u001b(B \u001b$(DM,\u001b(B \u001b$(DM-\u001b(B \u001b$(DM.\u001b(B \u001b$(DM/\u001b(B\n\u001b$(DM0\u001b(B \u001b$(DM1\u001b(B \u001b$(DM2\u001b(B \u001b$(DM3\u001b(B \u001b$(DM4\u001b(B \u001b$(DM5\u001b(B \u001b$(DM6\u001b(B \u001b$(DM7\u001b(B \u001b$(DM8\u001b(B \u001b$(DM9\u001b(B \u001b$(DM:\u001b(B \u001b$(DM;\u001b(B \u001b$(DM<\u001b(B \u001b$(DM=\u001b(B \u001b$(DM>\u001b(B \u001b$(DM?\u001b(B\n\u001b$(DM@\u001b(B \u001b$(DMA\u001b(B \u001b$(DMB\u001b(B \u001b$(DMC\u001b(B \u001b$(DMD\u001b(B \u001b$(DME\u001b(B \u001b$(DMF\u001b(B \u001b$(DMG\u001b(B \u001b$(DMH\u001b(B \u001b$(DMI\u001b(B \u001b$(DMJ\u001b(B \u001b$(DMK\u001b(B \u001b$(DML\u001b(B \u001b$(DMM\u001b(B \u001b$(DMN\u001b(B \u001b$(DMO\u001b(B\n\u001b$(DMP\u001b(B \u001b$(DMQ\u001b(B \u001b$(DMR\u001b(B \u001b$(DMS\u001b(B \u001b$(DMT\u001b(B \u001b$(DMU\u001b(B \u001b$(DMV\u001b(B \u001b$(DMW\u001b(B \u001b$(DMX\u001b(B \u001b$(DMY\u001b(B \u001b$(DMZ\u001b(B \u001b$(DM[\u001b(B \u001b$(DM\\\u001b(B \u001b$(DM]\u001b(B \u001b$(DM^\u001b(B \u001b$(DM_\u001b(B\n\u001b$(DM`\u001b(B \u001b$(DMa\u001b(B \u001b$(DMb\u001b(B \u001b$(DMc\u001b(B \u001b$(DMd\u001b(B \u001b$(DMe\u001b(B \u001b$(DMf\u001b(B \u001b$(DMg\u001b(B \u001b$(DMh\u001b(B \u001b$(DMi\u001b(B \u001b$(DMj\u001b(B \u001b$(DMk\u001b(B \u001b$(DMl\u001b(B \u001b$(DMm\u001b(B \u001b$(DMn\u001b(B \u001b$(DMo\u001b(B\n\u001b$(DMp\u001b(B \u001b$(DMq\u001b(B \u001b$(DMr\u001b(B \u001b$(DMs\u001b(B \u001b$(DMt\u001b(B \u001b$(DMu\u001b(B \u001b$(DMv\u001b(B \u001b$(DMw\u001b(B \u001b$(DMx\u001b(B \u001b$(DMy\u001b(B \u001b$(DMz\u001b(B \u001b$(DM{\u001b(B \u001b$(DM|\u001b(B \u001b$(DM}\u001b(B \u001b$(DM~\u001b(B\n  \u001b$(DN!\u001b(B \u001b$(DN\"\u001b(B \u001b$(DN#\u001b(B \u001b$(DN$\u001b(B \u001b$(DN%\u001b(B \u001b$(DN&\u001b(B \u001b$(DN'\u001b(B \u001b$(DN(\u001b(B \u001b$(DN)\u001b(B \u001b$(DN*\u001b(B \u001b$(DN+\u001b(B \u001b$(DN,\u001b(B \u001b$(DN-\u001b(B \u001b$(DN.\u001b(B \u001b$(DN/\u001b(B\n\u001b$(DN0\u001b(B \u001b$(DN1\u001b(B \u001b$(DN2\u001b(B \u001b$(DN3\u001b(B \u001b$(DN4\u001b(B \u001b$(DN5\u001b(B \u001b$(DN6\u001b(B \u001b$(DN7\u001b(B \u001b$(DN8\u001b(B \u001b$(DN9\u001b(B \u001b$(DN:\u001b(B \u001b$(DN;\u001b(B \u001b$(DN<\u001b(B \u001b$(DN=\u001b(B \u001b$(DN>\u001b(B \u001b$(DN?\u001b(B\n\u001b$(DN@\u001b(B \u001b$(DNA\u001b(B \u001b$(DNB\u001b(B \u001b$(DNC\u001b(B \u001b$(DND\u001b(B \u001b$(DNE\u001b(B \u001b$(DNF\u001b(B \u001b$(DNG\u001b(B \u001b$(DNH\u001b(B \u001b$(DNI\u001b(B \u001b$(DNJ\u001b(B \u001b$(DNK\u001b(B \u001b$(DNL\u001b(B \u001b$(DNM\u001b(B \u001b$(DNN\u001b(B \u001b$(DNO\u001b(B\n\u001b$(DNP\u001b(B \u001b$(DNQ\u001b(B \u001b$(DNR\u001b(B \u001b$(DNS\u001b(B \u001b$(DNT\u001b(B \u001b$(DNU\u001b(B \u001b$(DNV\u001b(B \u001b$(DNW\u001b(B \u001b$(DNX\u001b(B \u001b$(DNY\u001b(B \u001b$(DNZ\u001b(B \u001b$(DN[\u001b(B \u001b$(DN\\\u001b(B \u001b$(DN]\u001b(B \u001b$(DN^\u001b(B \u001b$(DN_\u001b(B\n\u001b$(DN`\u001b(B \u001b$(DNa\u001b(B \u001b$(DNb\u001b(B \u001b$(DNc\u001b(B \u001b$(DNd\u001b(B \u001b$(DNe\u001b(B \u001b$(DNf\u001b(B \u001b$(DNg\u001b(B \u001b$(DNh\u001b(B \u001b$(DNi\u001b(B \u001b$(DNj\u001b(B \u001b$(DNk\u001b(B \u001b$(DNl\u001b(B \u001b$(DNm\u001b(B \u001b$(DNn\u001b(B \u001b$(DNo\u001b(B\n\u001b$(DNp\u001b(B \u001b$(DNq\u001b(B \u001b$(DNr\u001b(B \u001b$(DNs\u001b(B \u001b$(DNt\u001b(B \u001b$(DNu\u001b(B \u001b$(DNv\u001b(B \u001b$(DNw\u001b(B \u001b$(DNx\u001b(B \u001b$(DNy\u001b(B \u001b$(DNz\u001b(B \u001b$(DN{\u001b(B \u001b$(DN|\u001b(B \u001b$(DN}\u001b(B \u001b$(DN~\u001b(B\n  \u001b$(DO!\u001b(B \u001b$(DO\"\u001b(B \u001b$(DO#\u001b(B \u001b$(DO$\u001b(B \u001b$(DO%\u001b(B \u001b$(DO&\u001b(B \u001b$(DO'\u001b(B \u001b$(DO(\u001b(B \u001b$(DO)\u001b(B \u001b$(DO*\u001b(B \u001b$(DO+\u001b(B \u001b$(DO,\u001b(B \u001b$(DO-\u001b(B \u001b$(DO.\u001b(B \u001b$(DO/\u001b(B\n\u001b$(DO0\u001b(B \u001b$(DO1\u001b(B \u001b$(DO2\u001b(B \u001b$(DO3\u001b(B \u001b$(DO4\u001b(B \u001b$(DO5\u001b(B \u001b$(DO6\u001b(B \u001b$(DO7\u001b(B \u001b$(DO8\u001b(B \u001b$(DO9\u001b(B \u001b$(DO:\u001b(B \u001b$(DO;\u001b(B \u001b$(DO<\u001b(B \u001b$(DO=\u001b(B \u001b$(DO>\u001b(B \u001b$(DO?\u001b(B\n\u001b$(DO@\u001b(B \u001b$(DOA\u001b(B \u001b$(DOB\u001b(B \u001b$(DOC\u001b(B \u001b$(DOD\u001b(B \u001b$(DOE\u001b(B \u001b$(DOF\u001b(B \u001b$(DOG\u001b(B \u001b$(DOH\u001b(B \u001b$(DOI\u001b(B \u001b$(DOJ\u001b(B \u001b$(DOK\u001b(B \u001b$(DOL\u001b(B \u001b$(DOM\u001b(B \u001b$(DON\u001b(B \u001b$(DOO\u001b(B\n\u001b$(DOP\u001b(B \u001b$(DOQ\u001b(B \u001b$(DOR\u001b(B \u001b$(DOS\u001b(B \u001b$(DOT\u001b(B \u001b$(DOU\u001b(B \u001b$(DOV\u001b(B \u001b$(DOW\u001b(B \u001b$(DOX\u001b(B \u001b$(DOY\u001b(B \u001b$(DOZ\u001b(B \u001b$(DO[\u001b(B \u001b$(DO\\\u001b(B \u001b$(DO]\u001b(B \u001b$(DO^\u001b(B \u001b$(DO_\u001b(B\n\u001b$(DO`\u001b(B \u001b$(DOa\u001b(B \u001b$(DOb\u001b(B \u001b$(DOc\u001b(B \u001b$(DOd\u001b(B \u001b$(DOe\u001b(B \u001b$(DOf\u001b(B \u001b$(DOg\u001b(B \u001b$(DOh\u001b(B \u001b$(DOi\u001b(B \u001b$(DOj\u001b(B \u001b$(DOk\u001b(B \u001b$(DOl\u001b(B \u001b$(DOm\u001b(B \u001b$(DOn\u001b(B \u001b$(DOo\u001b(B\n\u001b$(DOp\u001b(B \u001b$(DOq\u001b(B \u001b$(DOr\u001b(B \u001b$(DOs\u001b(B \u001b$(DOt\u001b(B \u001b$(DOu\u001b(B \u001b$(DOv\u001b(B \u001b$(DOw\u001b(B \u001b$(DOx\u001b(B \u001b$(DOy\u001b(B \u001b$(DOz\u001b(B \u001b$(DO{\u001b(B \u001b$(DO|\u001b(B \u001b$(DO}\u001b(B \u001b$(DO~\u001b(B\n  \u001b$(DP!\u001b(B \u001b$(DP\"\u001b(B \u001b$(DP#\u001b(B \u001b$(DP$\u001b(B \u001b$(DP%\u001b(B \u001b$(DP&\u001b(B \u001b$(DP'\u001b(B \u001b$(DP(\u001b(B \u001b$(DP)\u001b(B \u001b$(DP*\u001b(B \u001b$(DP+\u001b(B \u001b$(DP,\u001b(B \u001b$(DP-\u001b(B \u001b$(DP.\u001b(B \u001b$(DP/\u001b(B\n\u001b$(DP0\u001b(B \u001b$(DP1\u001b(B \u001b$(DP2\u001b(B \u001b$(DP3\u001b(B \u001b$(DP4\u001b(B \u001b$(DP5\u001b(B \u001b$(DP6\u001b(B \u001b$(DP7\u001b(B \u001b$(DP8\u001b(B \u001b$(DP9\u001b(B \u001b$(DP:\u001b(B \u001b$(DP;\u001b(B \u001b$(DP<\u001b(B \u001b$(DP=\u001b(B \u001b$(DP>\u001b(B \u001b$(DP?\u001b(B\n\u001b$(DP@\u001b(B \u001b$(DPA\u001b(B \u001b$(DPB\u001b(B \u001b$(DPC\u001b(B \u001b$(DPD\u001b(B \u001b$(DPE\u001b(B \u001b$(DPF\u001b(B \u001b$(DPG\u001b(B \u001b$(DPH\u001b(B \u001b$(DPI\u001b(B \u001b$(DPJ\u001b(B \u001b$(DPK\u001b(B \u001b$(DPL\u001b(B \u001b$(DPM\u001b(B \u001b$(DPN\u001b(B \u001b$(DPO\u001b(B\n\u001b$(DPP\u001b(B \u001b$(DPQ\u001b(B \u001b$(DPR\u001b(B \u001b$(DPS\u001b(B \u001b$(DPT\u001b(B \u001b$(DPU\u001b(B \u001b$(DPV\u001b(B \u001b$(DPW\u001b(B \u001b$(DPX\u001b(B \u001b$(DPY\u001b(B \u001b$(DPZ\u001b(B \u001b$(DP[\u001b(B \u001b$(DP\\\u001b(B \u001b$(DP]\u001b(B \u001b$(DP^\u001b(B \u001b$(DP_\u001b(B\n\u001b$(DP`\u001b(B \u001b$(DPa\u001b(B \u001b$(DPb\u001b(B \u001b$(DPc\u001b(B \u001b$(DPd\u001b(B \u001b$(DPe\u001b(B \u001b$(DPf\u001b(B \u001b$(DPg\u001b(B \u001b$(DPh\u001b(B \u001b$(DPi\u001b(B \u001b$(DPj\u001b(B \u001b$(DPk\u001b(B \u001b$(DPl\u001b(B \u001b$(DPm\u001b(B \u001b$(DPn\u001b(B \u001b$(DPo\u001b(B\n\u001b$(DPp\u001b(B \u001b$(DPq\u001b(B \u001b$(DPr\u001b(B \u001b$(DPs\u001b(B \u001b$(DPt\u001b(B \u001b$(DPu\u001b(B \u001b$(DPv\u001b(B \u001b$(DPw\u001b(B \u001b$(DPx\u001b(B \u001b$(DPy\u001b(B \u001b$(DPz\u001b(B \u001b$(DP{\u001b(B \u001b$(DP|\u001b(B \u001b$(DP}\u001b(B \u001b$(DP~\u001b(B\n  \u001b$(DQ!\u001b(B \u001b$(DQ\"\u001b(B \u001b$(DQ#\u001b(B \u001b$(DQ$\u001b(B \u001b$(DQ%\u001b(B \u001b$(DQ&\u001b(B \u001b$(DQ'\u001b(B \u001b$(DQ(\u001b(B \u001b$(DQ)\u001b(B \u001b$(DQ*\u001b(B \u001b$(DQ+\u001b(B \u001b$(DQ,\u001b(B \u001b$(DQ-\u001b(B \u001b$(DQ.\u001b(B \u001b$(DQ/\u001b(B\n\u001b$(DQ0\u001b(B \u001b$(DQ1\u001b(B \u001b$(DQ2\u001b(B \u001b$(DQ3\u001b(B \u001b$(DQ4\u001b(B \u001b$(DQ5\u001b(B \u001b$(DQ6\u001b(B \u001b$(DQ7\u001b(B \u001b$(DQ8\u001b(B \u001b$(DQ9\u001b(B \u001b$(DQ:\u001b(B \u001b$(DQ;\u001b(B \u001b$(DQ<\u001b(B \u001b$(DQ=\u001b(B \u001b$(DQ>\u001b(B \u001b$(DQ?\u001b(B\n\u001b$(DQ@\u001b(B \u001b$(DQA\u001b(B \u001b$(DQB\u001b(B \u001b$(DQC\u001b(B \u001b$(DQD\u001b(B \u001b$(DQE\u001b(B \u001b$(DQF\u001b(B \u001b$(DQG\u001b(B \u001b$(DQH\u001b(B \u001b$(DQI\u001b(B \u001b$(DQJ\u001b(B \u001b$(DQK\u001b(B \u001b$(DQL\u001b(B \u001b$(DQM\u001b(B \u001b$(DQN\u001b(B \u001b$(DQO\u001b(B\n\u001b$(DQP\u001b(B \u001b$(DQQ\u001b(B \u001b$(DQR\u001b(B \u001b$(DQS\u001b(B \u001b$(DQT\u001b(B \u001b$(DQU\u001b(B \u001b$(DQV\u001b(B \u001b$(DQW\u001b(B \u001b$(DQX\u001b(B \u001b$(DQY\u001b(B \u001b$(DQZ\u001b(B \u001b$(DQ[\u001b(B \u001b$(DQ\\\u001b(B \u001b$(DQ]\u001b(B \u001b$(DQ^\u001b(B \u001b$(DQ_\u001b(B\n\u001b$(DQ`\u001b(B \u001b$(DQa\u001b(B \u001b$(DQb\u001b(B \u001b$(DQc\u001b(B \u001b$(DQd\u001b(B \u001b$(DQe\u001b(B \u001b$(DQf\u001b(B \u001b$(DQg\u001b(B \u001b$(DQh\u001b(B \u001b$(DQi\u001b(B \u001b$(DQj\u001b(B \u001b$(DQk\u001b(B \u001b$(DQl\u001b(B \u001b$(DQm\u001b(B \u001b$(DQn\u001b(B \u001b$(DQo\u001b(B\n\u001b$(DQp\u001b(B \u001b$(DQq\u001b(B \u001b$(DQr\u001b(B \u001b$(DQs\u001b(B \u001b$(DQt\u001b(B \u001b$(DQu\u001b(B \u001b$(DQv\u001b(B \u001b$(DQw\u001b(B \u001b$(DQx\u001b(B \u001b$(DQy\u001b(B \u001b$(DQz\u001b(B \u001b$(DQ{\u001b(B \u001b$(DQ|\u001b(B \u001b$(DQ}\u001b(B \u001b$(DQ~\u001b(B\n  \u001b$(DR!\u001b(B \u001b$(DR\"\u001b(B \u001b$(DR#\u001b(B \u001b$(DR$\u001b(B \u001b$(DR%\u001b(B \u001b$(DR&\u001b(B \u001b$(DR'\u001b(B \u001b$(DR(\u001b(B \u001b$(DR)\u001b(B \u001b$(DR*\u001b(B \u001b$(DR+\u001b(B \u001b$(DR,\u001b(B \u001b$(DR-\u001b(B \u001b$(DR.\u001b(B \u001b$(DR/\u001b(B\n\u001b$(DR0\u001b(B \u001b$(DR1\u001b(B \u001b$(DR2\u001b(B \u001b$(DR3\u001b(B \u001b$(DR4\u001b(B \u001b$(DR5\u001b(B \u001b$(DR6\u001b(B \u001b$(DR7\u001b(B \u001b$(DR8\u001b(B \u001b$(DR9\u001b(B \u001b$(DR:\u001b(B \u001b$(DR;\u001b(B \u001b$(DR<\u001b(B \u001b$(DR=\u001b(B \u001b$(DR>\u001b(B \u001b$(DR?\u001b(B\n\u001b$(DR@\u001b(B \u001b$(DRA\u001b(B \u001b$(DRB\u001b(B \u001b$(DRC\u001b(B \u001b$(DRD\u001b(B \u001b$(DRE\u001b(B \u001b$(DRF\u001b(B \u001b$(DRG\u001b(B \u001b$(DRH\u001b(B \u001b$(DRI\u001b(B \u001b$(DRJ\u001b(B \u001b$(DRK\u001b(B \u001b$(DRL\u001b(B \u001b$(DRM\u001b(B \u001b$(DRN\u001b(B \u001b$(DRO\u001b(B\n\u001b$(DRP\u001b(B \u001b$(DRQ\u001b(B \u001b$(DRR\u001b(B \u001b$(DRS\u001b(B \u001b$(DRT\u001b(B \u001b$(DRU\u001b(B \u001b$(DRV\u001b(B \u001b$(DRW\u001b(B \u001b$(DRX\u001b(B \u001b$(DRY\u001b(B \u001b$(DRZ\u001b(B \u001b$(DR[\u001b(B \u001b$(DR\\\u001b(B \u001b$(DR]\u001b(B \u001b$(DR^\u001b(B \u001b$(DR_\u001b(B\n\u001b$(DR`\u001b(B \u001b$(DRa\u001b(B \u001b$(DRb\u001b(B \u001b$(DRc\u001b(B \u001b$(DRd\u001b(B \u001b$(DRe\u001b(B \u001b$(DRf\u001b(B \u001b$(DRg\u001b(B \u001b$(DRh\u001b(B \u001b$(DRi\u001b(B \u001b$(DRj\u001b(B \u001b$(DRk\u001b(B \u001b$(DRl\u001b(B \u001b$(DRm\u001b(B \u001b$(DRn\u001b(B \u001b$(DRo\u001b(B\n\u001b$(DRp\u001b(B \u001b$(DRq\u001b(B \u001b$(DRr\u001b(B \u001b$(DRs\u001b(B \u001b$(DRt\u001b(B \u001b$(DRu\u001b(B \u001b$(DRv\u001b(B \u001b$(DRw\u001b(B \u001b$(DRx\u001b(B \u001b$(DRy\u001b(B \u001b$(DRz\u001b(B \u001b$(DR{\u001b(B \u001b$(DR|\u001b(B \u001b$(DR}\u001b(B \u001b$(DR~\u001b(B\n  \u001b$(DS!\u001b(B \u001b$(DS\"\u001b(B \u001b$(DS#\u001b(B \u001b$(DS$\u001b(B \u001b$(DS%\u001b(B \u001b$(DS&\u001b(B \u001b$(DS'\u001b(B \u001b$(DS(\u001b(B \u001b$(DS)\u001b(B \u001b$(DS*\u001b(B \u001b$(DS+\u001b(B \u001b$(DS,\u001b(B \u001b$(DS-\u001b(B \u001b$(DS.\u001b(B \u001b$(DS/\u001b(B\n\u001b$(DS0\u001b(B \u001b$(DS1\u001b(B \u001b$(DS2\u001b(B \u001b$(DS3\u001b(B \u001b$(DS4\u001b(B \u001b$(DS5\u001b(B \u001b$(DS6\u001b(B \u001b$(DS7\u001b(B \u001b$(DS8\u001b(B \u001b$(DS9\u001b(B \u001b$(DS:\u001b(B \u001b$(DS;\u001b(B \u001b$(DS<\u001b(B \u001b$(DS=\u001b(B \u001b$(DS>\u001b(B \u001b$(DS?\u001b(B\n\u001b$(DS@\u001b(B \u001b$(DSA\u001b(B \u001b$(DSB\u001b(B \u001b$(DSC\u001b(B \u001b$(DSD\u001b(B \u001b$(DSE\u001b(B \u001b$(DSF\u001b(B \u001b$(DSG\u001b(B \u001b$(DSH\u001b(B \u001b$(DSI\u001b(B \u001b$(DSJ\u001b(B \u001b$(DSK\u001b(B \u001b$(DSL\u001b(B \u001b$(DSM\u001b(B \u001b$(DSN\u001b(B \u001b$(DSO\u001b(B\n\u001b$(DSP\u001b(B \u001b$(DSQ\u001b(B \u001b$(DSR\u001b(B \u001b$(DSS\u001b(B \u001b$(DST\u001b(B \u001b$(DSU\u001b(B \u001b$(DSV\u001b(B \u001b$(DSW\u001b(B \u001b$(DSX\u001b(B \u001b$(DSY\u001b(B \u001b$(DSZ\u001b(B \u001b$(DS[\u001b(B \u001b$(DS\\\u001b(B \u001b$(DS]\u001b(B \u001b$(DS^\u001b(B \u001b$(DS_\u001b(B\n\u001b$(DS`\u001b(B \u001b$(DSa\u001b(B \u001b$(DSb\u001b(B \u001b$(DSc\u001b(B \u001b$(DSd\u001b(B \u001b$(DSe\u001b(B \u001b$(DSf\u001b(B \u001b$(DSg\u001b(B \u001b$(DSh\u001b(B \u001b$(DSi\u001b(B \u001b$(DSj\u001b(B \u001b$(DSk\u001b(B \u001b$(DSl\u001b(B \u001b$(DSm\u001b(B \u001b$(DSn\u001b(B \u001b$(DSo\u001b(B\n\u001b$(DSp\u001b(B \u001b$(DSq\u001b(B \u001b$(DSr\u001b(B \u001b$(DSs\u001b(B \u001b$(DSt\u001b(B \u001b$(DSu\u001b(B \u001b$(DSv\u001b(B \u001b$(DSw\u001b(B \u001b$(DSx\u001b(B \u001b$(DSy\u001b(B \u001b$(DSz\u001b(B \u001b$(DS{\u001b(B \u001b$(DS|\u001b(B \u001b$(DS}\u001b(B \u001b$(DS~\u001b(B\n  \u001b$(DT!\u001b(B \u001b$(DT\"\u001b(B \u001b$(DT#\u001b(B \u001b$(DT$\u001b(B \u001b$(DT%\u001b(B \u001b$(DT&\u001b(B \u001b$(DT'\u001b(B \u001b$(DT(\u001b(B \u001b$(DT)\u001b(B \u001b$(DT*\u001b(B \u001b$(DT+\u001b(B \u001b$(DT,\u001b(B \u001b$(DT-\u001b(B \u001b$(DT.\u001b(B \u001b$(DT/\u001b(B\n\u001b$(DT0\u001b(B \u001b$(DT1\u001b(B \u001b$(DT2\u001b(B \u001b$(DT3\u001b(B \u001b$(DT4\u001b(B \u001b$(DT5\u001b(B \u001b$(DT6\u001b(B \u001b$(DT7\u001b(B \u001b$(DT8\u001b(B \u001b$(DT9\u001b(B \u001b$(DT:\u001b(B \u001b$(DT;\u001b(B \u001b$(DT<\u001b(B \u001b$(DT=\u001b(B \u001b$(DT>\u001b(B \u001b$(DT?\u001b(B\n\u001b$(DT@\u001b(B \u001b$(DTA\u001b(B \u001b$(DTB\u001b(B \u001b$(DTC\u001b(B \u001b$(DTD\u001b(B \u001b$(DTE\u001b(B \u001b$(DTF\u001b(B \u001b$(DTG\u001b(B \u001b$(DTH\u001b(B \u001b$(DTI\u001b(B \u001b$(DTJ\u001b(B \u001b$(DTK\u001b(B \u001b$(DTL\u001b(B \u001b$(DTM\u001b(B \u001b$(DTN\u001b(B \u001b$(DTO\u001b(B\n\u001b$(DTP\u001b(B \u001b$(DTQ\u001b(B \u001b$(DTR\u001b(B \u001b$(DTS\u001b(B \u001b$(DTT\u001b(B \u001b$(DTU\u001b(B \u001b$(DTV\u001b(B \u001b$(DTW\u001b(B \u001b$(DTX\u001b(B \u001b$(DTY\u001b(B \u001b$(DTZ\u001b(B \u001b$(DT[\u001b(B \u001b$(DT\\\u001b(B \u001b$(DT]\u001b(B \u001b$(DT^\u001b(B \u001b$(DT_\u001b(B\n\u001b$(DT`\u001b(B \u001b$(DTa\u001b(B \u001b$(DTb\u001b(B \u001b$(DTc\u001b(B \u001b$(DTd\u001b(B \u001b$(DTe\u001b(B \u001b$(DTf\u001b(B \u001b$(DTg\u001b(B \u001b$(DTh\u001b(B \u001b$(DTi\u001b(B \u001b$(DTj\u001b(B \u001b$(DTk\u001b(B \u001b$(DTl\u001b(B \u001b$(DTm\u001b(B \u001b$(DTn\u001b(B \u001b$(DTo\u001b(B\n\u001b$(DTp\u001b(B \u001b$(DTq\u001b(B \u001b$(DTr\u001b(B \u001b$(DTs\u001b(B \u001b$(DTt\u001b(B \u001b$(DTu\u001b(B \u001b$(DTv\u001b(B \u001b$(DTw\u001b(B \u001b$(DTx\u001b(B \u001b$(DTy\u001b(B \u001b$(DTz\u001b(B \u001b$(DT{\u001b(B \u001b$(DT|\u001b(B \u001b$(DT}\u001b(B \u001b$(DT~\u001b(B\n  \u001b$(DU!\u001b(B \u001b$(DU\"\u001b(B \u001b$(DU#\u001b(B \u001b$(DU$\u001b(B \u001b$(DU%\u001b(B \u001b$(DU&\u001b(B \u001b$(DU'\u001b(B \u001b$(DU(\u001b(B \u001b$(DU)\u001b(B \u001b$(DU*\u001b(B \u001b$(DU+\u001b(B \u001b$(DU,\u001b(B \u001b$(DU-\u001b(B \u001b$(DU.\u001b(B \u001b$(DU/\u001b(B\n\u001b$(DU0\u001b(B \u001b$(DU1\u001b(B \u001b$(DU2\u001b(B \u001b$(DU3\u001b(B \u001b$(DU4\u001b(B \u001b$(DU5\u001b(B \u001b$(DU6\u001b(B \u001b$(DU7\u001b(B \u001b$(DU8\u001b(B \u001b$(DU9\u001b(B \u001b$(DU:\u001b(B \u001b$(DU;\u001b(B \u001b$(DU<\u001b(B \u001b$(DU=\u001b(B \u001b$(DU>\u001b(B \u001b$(DU?\u001b(B\n\u001b$(DU@\u001b(B \u001b$(DUA\u001b(B \u001b$(DUB\u001b(B \u001b$(DUC\u001b(B \u001b$(DUD\u001b(B \u001b$(DUE\u001b(B \u001b$(DUF\u001b(B \u001b$(DUG\u001b(B \u001b$(DUH\u001b(B \u001b$(DUI\u001b(B \u001b$(DUJ\u001b(B \u001b$(DUK\u001b(B \u001b$(DUL\u001b(B \u001b$(DUM\u001b(B \u001b$(DUN\u001b(B \u001b$(DUO\u001b(B\n\u001b$(DUP\u001b(B \u001b$(DUQ\u001b(B \u001b$(DUR\u001b(B \u001b$(DUS\u001b(B \u001b$(DUT\u001b(B \u001b$(DUU\u001b(B \u001b$(DUV\u001b(B \u001b$(DUW\u001b(B \u001b$(DUX\u001b(B \u001b$(DUY\u001b(B \u001b$(DUZ\u001b(B \u001b$(DU[\u001b(B \u001b$(DU\\\u001b(B \u001b$(DU]\u001b(B \u001b$(DU^\u001b(B \u001b$(DU_\u001b(B\n\u001b$(DU`\u001b(B \u001b$(DUa\u001b(B \u001b$(DUb\u001b(B \u001b$(DUc\u001b(B \u001b$(DUd\u001b(B \u001b$(DUe\u001b(B \u001b$(DUf\u001b(B \u001b$(DUg\u001b(B \u001b$(DUh\u001b(B \u001b$(DUi\u001b(B \u001b$(DUj\u001b(B \u001b$(DUk\u001b(B \u001b$(DUl\u001b(B \u001b$(DUm\u001b(B \u001b$(DUn\u001b(B \u001b$(DUo\u001b(B\n\u001b$(DUp\u001b(B \u001b$(DUq\u001b(B \u001b$(DUr\u001b(B \u001b$(DUs\u001b(B \u001b$(DUt\u001b(B \u001b$(DUu\u001b(B \u001b$(DUv\u001b(B \u001b$(DUw\u001b(B \u001b$(DUx\u001b(B \u001b$(DUy\u001b(B \u001b$(DUz\u001b(B \u001b$(DU{\u001b(B \u001b$(DU|\u001b(B \u001b$(DU}\u001b(B \u001b$(DU~\u001b(B\n  \u001b$(DV!\u001b(B \u001b$(DV\"\u001b(B \u001b$(DV#\u001b(B \u001b$(DV$\u001b(B \u001b$(DV%\u001b(B \u001b$(DV&\u001b(B \u001b$(DV'\u001b(B \u001b$(DV(\u001b(B \u001b$(DV)\u001b(B \u001b$(DV*\u001b(B \u001b$(DV+\u001b(B \u001b$(DV,\u001b(B \u001b$(DV-\u001b(B \u001b$(DV.\u001b(B \u001b$(DV/\u001b(B\n\u001b$(DV0\u001b(B \u001b$(DV1\u001b(B \u001b$(DV2\u001b(B \u001b$(DV3\u001b(B \u001b$(DV4\u001b(B \u001b$(DV5\u001b(B \u001b$(DV6\u001b(B \u001b$(DV7\u001b(B \u001b$(DV8\u001b(B \u001b$(DV9\u001b(B \u001b$(DV:\u001b(B \u001b$(DV;\u001b(B \u001b$(DV<\u001b(B \u001b$(DV=\u001b(B \u001b$(DV>\u001b(B \u001b$(DV?\u001b(B\n\u001b$(DV@\u001b(B \u001b$(DVA\u001b(B \u001b$(DVB\u001b(B \u001b$(DVC\u001b(B \u001b$(DVD\u001b(B \u001b$(DVE\u001b(B \u001b$(DVF\u001b(B \u001b$(DVG\u001b(B \u001b$(DVH\u001b(B \u001b$(DVI\u001b(B \u001b$(DVJ\u001b(B \u001b$(DVK\u001b(B \u001b$(DVL\u001b(B \u001b$(DVM\u001b(B \u001b$(DVN\u001b(B \u001b$(DVO\u001b(B\n\u001b$(DVP\u001b(B \u001b$(DVQ\u001b(B \u001b$(DVR\u001b(B \u001b$(DVS\u001b(B \u001b$(DVT\u001b(B \u001b$(DVU\u001b(B \u001b$(DVV\u001b(B \u001b$(DVW\u001b(B \u001b$(DVX\u001b(B \u001b$(DVY\u001b(B \u001b$(DVZ\u001b(B \u001b$(DV[\u001b(B \u001b$(DV\\\u001b(B \u001b$(DV]\u001b(B \u001b$(DV^\u001b(B \u001b$(DV_\u001b(B\n\u001b$(DV`\u001b(B \u001b$(DVa\u001b(B \u001b$(DVb\u001b(B \u001b$(DVc\u001b(B \u001b$(DVd\u001b(B \u001b$(DVe\u001b(B \u001b$(DVf\u001b(B \u001b$(DVg\u001b(B \u001b$(DVh\u001b(B \u001b$(DVi\u001b(B \u001b$(DVj\u001b(B \u001b$(DVk\u001b(B \u001b$(DVl\u001b(B \u001b$(DVm\u001b(B \u001b$(DVn\u001b(B \u001b$(DVo\u001b(B\n\u001b$(DVp\u001b(B \u001b$(DVq\u001b(B \u001b$(DVr\u001b(B \u001b$(DVs\u001b(B \u001b$(DVt\u001b(B \u001b$(DVu\u001b(B \u001b$(DVv\u001b(B \u001b$(DVw\u001b(B \u001b$(DVx\u001b(B \u001b$(DVy\u001b(B \u001b$(DVz\u001b(B \u001b$(DV{\u001b(B \u001b$(DV|\u001b(B \u001b$(DV}\u001b(B \u001b$(DV~\u001b(B\n  \u001b$(DW!\u001b(B \u001b$(DW\"\u001b(B \u001b$(DW#\u001b(B \u001b$(DW$\u001b(B \u001b$(DW%\u001b(B \u001b$(DW&\u001b(B \u001b$(DW'\u001b(B \u001b$(DW(\u001b(B \u001b$(DW)\u001b(B \u001b$(DW*\u001b(B \u001b$(DW+\u001b(B \u001b$(DW,\u001b(B \u001b$(DW-\u001b(B \u001b$(DW.\u001b(B \u001b$(DW/\u001b(B\n\u001b$(DW0\u001b(B \u001b$(DW1\u001b(B \u001b$(DW2\u001b(B \u001b$(DW3\u001b(B \u001b$(DW4\u001b(B \u001b$(DW5\u001b(B \u001b$(DW6\u001b(B \u001b$(DW7\u001b(B \u001b$(DW8\u001b(B \u001b$(DW9\u001b(B \u001b$(DW:\u001b(B \u001b$(DW;\u001b(B \u001b$(DW<\u001b(B \u001b$(DW=\u001b(B \u001b$(DW>\u001b(B \u001b$(DW?\u001b(B\n\u001b$(DW@\u001b(B \u001b$(DWA\u001b(B \u001b$(DWB\u001b(B \u001b$(DWC\u001b(B \u001b$(DWD\u001b(B \u001b$(DWE\u001b(B \u001b$(DWF\u001b(B \u001b$(DWG\u001b(B \u001b$(DWH\u001b(B \u001b$(DWI\u001b(B \u001b$(DWJ\u001b(B \u001b$(DWK\u001b(B \u001b$(DWL\u001b(B \u001b$(DWM\u001b(B \u001b$(DWN\u001b(B \u001b$(DWO\u001b(B\n\u001b$(DWP\u001b(B \u001b$(DWQ\u001b(B \u001b$(DWR\u001b(B \u001b$(DWS\u001b(B \u001b$(DWT\u001b(B \u001b$(DWU\u001b(B \u001b$(DWV\u001b(B \u001b$(DWW\u001b(B \u001b$(DWX\u001b(B \u001b$(DWY\u001b(B \u001b$(DWZ\u001b(B \u001b$(DW[\u001b(B \u001b$(DW\\\u001b(B \u001b$(DW]\u001b(B \u001b$(DW^\u001b(B \u001b$(DW_\u001b(B\n\u001b$(DW`\u001b(B \u001b$(DWa\u001b(B \u001b$(DWb\u001b(B \u001b$(DWc\u001b(B \u001b$(DWd\u001b(B \u001b$(DWe\u001b(B \u001b$(DWf\u001b(B \u001b$(DWg\u001b(B \u001b$(DWh\u001b(B \u001b$(DWi\u001b(B \u001b$(DWj\u001b(B \u001b$(DWk\u001b(B \u001b$(DWl\u001b(B \u001b$(DWm\u001b(B \u001b$(DWn\u001b(B \u001b$(DWo\u001b(B\n\u001b$(DWp\u001b(B \u001b$(DWq\u001b(B \u001b$(DWr\u001b(B \u001b$(DWs\u001b(B \u001b$(DWt\u001b(B \u001b$(DWu\u001b(B \u001b$(DWv\u001b(B \u001b$(DWw\u001b(B \u001b$(DWx\u001b(B \u001b$(DWy\u001b(B \u001b$(DWz\u001b(B \u001b$(DW{\u001b(B \u001b$(DW|\u001b(B \u001b$(DW}\u001b(B \u001b$(DW~\u001b(B\n  \u001b$(DX!\u001b(B \u001b$(DX\"\u001b(B \u001b$(DX#\u001b(B \u001b$(DX$\u001b(B \u001b$(DX%\u001b(B \u001b$(DX&\u001b(B \u001b$(DX'\u001b(B \u001b$(DX(\u001b(B \u001b$(DX)\u001b(B \u001b$(DX*\u001b(B \u001b$(DX+\u001b(B \u001b$(DX,\u001b(B \u001b$(DX-\u001b(B \u001b$(DX.\u001b(B \u001b$(DX/\u001b(B\n\u001b$(DX0\u001b(B \u001b$(DX1\u001b(B \u001b$(DX2\u001b(B \u001b$(DX3\u001b(B \u001b$(DX4\u001b(B \u001b$(DX5\u001b(B \u001b$(DX6\u001b(B \u001b$(DX7\u001b(B \u001b$(DX8\u001b(B \u001b$(DX9\u001b(B \u001b$(DX:\u001b(B \u001b$(DX;\u001b(B \u001b$(DX<\u001b(B \u001b$(DX=\u001b(B \u001b$(DX>\u001b(B \u001b$(DX?\u001b(B\n\u001b$(DX@\u001b(B \u001b$(DXA\u001b(B \u001b$(DXB\u001b(B \u001b$(DXC\u001b(B \u001b$(DXD\u001b(B \u001b$(DXE\u001b(B \u001b$(DXF\u001b(B \u001b$(DXG\u001b(B \u001b$(DXH\u001b(B \u001b$(DXI\u001b(B \u001b$(DXJ\u001b(B \u001b$(DXK\u001b(B \u001b$(DXL\u001b(B \u001b$(DXM\u001b(B \u001b$(DXN\u001b(B \u001b$(DXO\u001b(B\n\u001b$(DXP\u001b(B \u001b$(DXQ\u001b(B \u001b$(DXR\u001b(B \u001b$(DXS\u001b(B \u001b$(DXT\u001b(B \u001b$(DXU\u001b(B \u001b$(DXV\u001b(B \u001b$(DXW\u001b(B \u001b$(DXX\u001b(B \u001b$(DXY\u001b(B \u001b$(DXZ\u001b(B \u001b$(DX[\u001b(B \u001b$(DX\\\u001b(B \u001b$(DX]\u001b(B \u001b$(DX^\u001b(B \u001b$(DX_\u001b(B\n\u001b$(DX`\u001b(B \u001b$(DXa\u001b(B \u001b$(DXb\u001b(B \u001b$(DXc\u001b(B \u001b$(DXd\u001b(B \u001b$(DXe\u001b(B \u001b$(DXf\u001b(B \u001b$(DXg\u001b(B \u001b$(DXh\u001b(B \u001b$(DXi\u001b(B \u001b$(DXj\u001b(B \u001b$(DXk\u001b(B \u001b$(DXl\u001b(B \u001b$(DXm\u001b(B \u001b$(DXn\u001b(B \u001b$(DXo\u001b(B\n\u001b$(DXp\u001b(B \u001b$(DXq\u001b(B \u001b$(DXr\u001b(B \u001b$(DXs\u001b(B \u001b$(DXt\u001b(B \u001b$(DXu\u001b(B \u001b$(DXv\u001b(B \u001b$(DXw\u001b(B \u001b$(DXx\u001b(B \u001b$(DXy\u001b(B \u001b$(DXz\u001b(B \u001b$(DX{\u001b(B \u001b$(DX|\u001b(B \u001b$(DX}\u001b(B \u001b$(DX~\u001b(B\n  \u001b$(DY!\u001b(B \u001b$(DY\"\u001b(B \u001b$(DY#\u001b(B \u001b$(DY$\u001b(B \u001b$(DY%\u001b(B \u001b$(DY&\u001b(B \u001b$(DY'\u001b(B \u001b$(DY(\u001b(B \u001b$(DY)\u001b(B \u001b$(DY*\u001b(B \u001b$(DY+\u001b(B \u001b$(DY,\u001b(B \u001b$(DY-\u001b(B \u001b$(DY.\u001b(B \u001b$(DY/\u001b(B\n\u001b$(DY0\u001b(B \u001b$(DY1\u001b(B \u001b$(DY2\u001b(B \u001b$(DY3\u001b(B \u001b$(DY4\u001b(B \u001b$(DY5\u001b(B \u001b$(DY6\u001b(B \u001b$(DY7\u001b(B \u001b$(DY8\u001b(B \u001b$(DY9\u001b(B \u001b$(DY:\u001b(B \u001b$(DY;\u001b(B \u001b$(DY<\u001b(B \u001b$(DY=\u001b(B \u001b$(DY>\u001b(B \u001b$(DY?\u001b(B\n\u001b$(DY@\u001b(B \u001b$(DYA\u001b(B \u001b$(DYB\u001b(B \u001b$(DYC\u001b(B \u001b$(DYD\u001b(B \u001b$(DYE\u001b(B \u001b$(DYF\u001b(B \u001b$(DYG\u001b(B \u001b$(DYH\u001b(B \u001b$(DYI\u001b(B \u001b$(DYJ\u001b(B \u001b$(DYK\u001b(B \u001b$(DYL\u001b(B \u001b$(DYM\u001b(B \u001b$(DYN\u001b(B \u001b$(DYO\u001b(B\n\u001b$(DYP\u001b(B \u001b$(DYQ\u001b(B \u001b$(DYR\u001b(B \u001b$(DYS\u001b(B \u001b$(DYT\u001b(B \u001b$(DYU\u001b(B \u001b$(DYV\u001b(B \u001b$(DYW\u001b(B \u001b$(DYX\u001b(B \u001b$(DYY\u001b(B \u001b$(DYZ\u001b(B \u001b$(DY[\u001b(B \u001b$(DY\\\u001b(B \u001b$(DY]\u001b(B \u001b$(DY^\u001b(B \u001b$(DY_\u001b(B\n\u001b$(DY`\u001b(B \u001b$(DYa\u001b(B \u001b$(DYb\u001b(B \u001b$(DYc\u001b(B \u001b$(DYd\u001b(B \u001b$(DYe\u001b(B \u001b$(DYf\u001b(B \u001b$(DYg\u001b(B \u001b$(DYh\u001b(B \u001b$(DYi\u001b(B \u001b$(DYj\u001b(B \u001b$(DYk\u001b(B \u001b$(DYl\u001b(B \u001b$(DYm\u001b(B \u001b$(DYn\u001b(B \u001b$(DYo\u001b(B\n\u001b$(DYp\u001b(B \u001b$(DYq\u001b(B \u001b$(DYr\u001b(B \u001b$(DYs\u001b(B \u001b$(DYt\u001b(B \u001b$(DYu\u001b(B \u001b$(DYv\u001b(B \u001b$(DYw\u001b(B \u001b$(DYx\u001b(B \u001b$(DYy\u001b(B \u001b$(DYz\u001b(B \u001b$(DY{\u001b(B \u001b$(DY|\u001b(B \u001b$(DY}\u001b(B \u001b$(DY~\u001b(B\n  \u001b$(DZ!\u001b(B \u001b$(DZ\"\u001b(B \u001b$(DZ#\u001b(B \u001b$(DZ$\u001b(B \u001b$(DZ%\u001b(B \u001b$(DZ&\u001b(B \u001b$(DZ'\u001b(B \u001b$(DZ(\u001b(B \u001b$(DZ)\u001b(B \u001b$(DZ*\u001b(B \u001b$(DZ+\u001b(B \u001b$(DZ,\u001b(B \u001b$(DZ-\u001b(B \u001b$(DZ.\u001b(B \u001b$(DZ/\u001b(B\n\u001b$(DZ0\u001b(B \u001b$(DZ1\u001b(B \u001b$(DZ2\u001b(B \u001b$(DZ3\u001b(B \u001b$(DZ4\u001b(B \u001b$(DZ5\u001b(B \u001b$(DZ6\u001b(B \u001b$(DZ7\u001b(B \u001b$(DZ8\u001b(B \u001b$(DZ9\u001b(B \u001b$(DZ:\u001b(B \u001b$(DZ;\u001b(B \u001b$(DZ<\u001b(B \u001b$(DZ=\u001b(B \u001b$(DZ>\u001b(B \u001b$(DZ?\u001b(B\n\u001b$(DZ@\u001b(B \u001b$(DZA\u001b(B \u001b$(DZB\u001b(B \u001b$(DZC\u001b(B \u001b$(DZD\u001b(B \u001b$(DZE\u001b(B \u001b$(DZF\u001b(B \u001b$(DZG\u001b(B \u001b$(DZH\u001b(B \u001b$(DZI\u001b(B \u001b$(DZJ\u001b(B \u001b$(DZK\u001b(B \u001b$(DZL\u001b(B \u001b$(DZM\u001b(B \u001b$(DZN\u001b(B \u001b$(DZO\u001b(B\n\u001b$(DZP\u001b(B \u001b$(DZQ\u001b(B \u001b$(DZR\u001b(B \u001b$(DZS\u001b(B \u001b$(DZT\u001b(B \u001b$(DZU\u001b(B \u001b$(DZV\u001b(B \u001b$(DZW\u001b(B \u001b$(DZX\u001b(B \u001b$(DZY\u001b(B \u001b$(DZZ\u001b(B \u001b$(DZ[\u001b(B \u001b$(DZ\\\u001b(B \u001b$(DZ]\u001b(B \u001b$(DZ^\u001b(B \u001b$(DZ_\u001b(B\n\u001b$(DZ`\u001b(B \u001b$(DZa\u001b(B \u001b$(DZb\u001b(B \u001b$(DZc\u001b(B \u001b$(DZd\u001b(B \u001b$(DZe\u001b(B \u001b$(DZf\u001b(B \u001b$(DZg\u001b(B \u001b$(DZh\u001b(B \u001b$(DZi\u001b(B \u001b$(DZj\u001b(B \u001b$(DZk\u001b(B \u001b$(DZl\u001b(B \u001b$(DZm\u001b(B \u001b$(DZn\u001b(B \u001b$(DZo\u001b(B\n\u001b$(DZp\u001b(B \u001b$(DZq\u001b(B \u001b$(DZr\u001b(B \u001b$(DZs\u001b(B \u001b$(DZt\u001b(B \u001b$(DZu\u001b(B \u001b$(DZv\u001b(B \u001b$(DZw\u001b(B \u001b$(DZx\u001b(B \u001b$(DZy\u001b(B \u001b$(DZz\u001b(B \u001b$(DZ{\u001b(B \u001b$(DZ|\u001b(B \u001b$(DZ}\u001b(B \u001b$(DZ~\u001b(B\n  \u001b$(D[!\u001b(B \u001b$(D[\"\u001b(B \u001b$(D[#\u001b(B \u001b$(D[$\u001b(B \u001b$(D[%\u001b(B \u001b$(D[&\u001b(B \u001b$(D['\u001b(B \u001b$(D[(\u001b(B \u001b$(D[)\u001b(B \u001b$(D[*\u001b(B \u001b$(D[+\u001b(B \u001b$(D[,\u001b(B \u001b$(D[-\u001b(B \u001b$(D[.\u001b(B \u001b$(D[/\u001b(B\n\u001b$(D[0\u001b(B \u001b$(D[1\u001b(B \u001b$(D[2\u001b(B \u001b$(D[3\u001b(B \u001b$(D[4\u001b(B \u001b$(D[5\u001b(B \u001b$(D[6\u001b(B \u001b$(D[7\u001b(B \u001b$(D[8\u001b(B \u001b$(D[9\u001b(B \u001b$(D[:\u001b(B \u001b$(D[;\u001b(B \u001b$(D[<\u001b(B \u001b$(D[=\u001b(B \u001b$(D[>\u001b(B \u001b$(D[?\u001b(B\n\u001b$(D[@\u001b(B \u001b$(D[A\u001b(B \u001b$(D[B\u001b(B \u001b$(D[C\u001b(B \u001b$(D[D\u001b(B \u001b$(D[E\u001b(B \u001b$(D[F\u001b(B \u001b$(D[G\u001b(B \u001b$(D[H\u001b(B \u001b$(D[I\u001b(B \u001b$(D[J\u001b(B \u001b$(D[K\u001b(B \u001b$(D[L\u001b(B \u001b$(D[M\u001b(B \u001b$(D[N\u001b(B \u001b$(D[O\u001b(B\n\u001b$(D[P\u001b(B \u001b$(D[Q\u001b(B \u001b$(D[R\u001b(B \u001b$(D[S\u001b(B \u001b$(D[T\u001b(B \u001b$(D[U\u001b(B \u001b$(D[V\u001b(B \u001b$(D[W\u001b(B \u001b$(D[X\u001b(B \u001b$(D[Y\u001b(B \u001b$(D[Z\u001b(B \u001b$(D[[\u001b(B \u001b$(D[\\\u001b(B \u001b$(D[]\u001b(B \u001b$(D[^\u001b(B \u001b$(D[_\u001b(B\n\u001b$(D[`\u001b(B \u001b$(D[a\u001b(B \u001b$(D[b\u001b(B \u001b$(D[c\u001b(B \u001b$(D[d\u001b(B \u001b$(D[e\u001b(B \u001b$(D[f\u001b(B \u001b$(D[g\u001b(B \u001b$(D[h\u001b(B \u001b$(D[i\u001b(B \u001b$(D[j\u001b(B \u001b$(D[k\u001b(B \u001b$(D[l\u001b(B \u001b$(D[m\u001b(B \u001b$(D[n\u001b(B \u001b$(D[o\u001b(B\n\u001b$(D[p\u001b(B \u001b$(D[q\u001b(B \u001b$(D[r\u001b(B \u001b$(D[s\u001b(B \u001b$(D[t\u001b(B \u001b$(D[u\u001b(B \u001b$(D[v\u001b(B \u001b$(D[w\u001b(B \u001b$(D[x\u001b(B \u001b$(D[y\u001b(B \u001b$(D[z\u001b(B \u001b$(D[{\u001b(B \u001b$(D[|\u001b(B \u001b$(D[}\u001b(B \u001b$(D[~\u001b(B\n  \u001b$(D\\!\u001b(B \u001b$(D\\\"\u001b(B \u001b$(D\\#\u001b(B \u001b$(D\\$\u001b(B \u001b$(D\\%\u001b(B \u001b$(D\\&\u001b(B \u001b$(D\\'\u001b(B \u001b$(D\\(\u001b(B \u001b$(D\\)\u001b(B \u001b$(D\\*\u001b(B \u001b$(D\\+\u001b(B \u001b$(D\\,\u001b(B \u001b$(D\\-\u001b(B \u001b$(D\\.\u001b(B \u001b$(D\\/\u001b(B\n\u001b$(D\\0\u001b(B \u001b$(D\\1\u001b(B \u001b$(D\\2\u001b(B \u001b$(D\\3\u001b(B \u001b$(D\\4\u001b(B \u001b$(D\\5\u001b(B \u001b$(D\\6\u001b(B \u001b$(D\\7\u001b(B \u001b$(D\\8\u001b(B \u001b$(D\\9\u001b(B \u001b$(D\\:\u001b(B \u001b$(D\\;\u001b(B \u001b$(D\\<\u001b(B \u001b$(D\\=\u001b(B \u001b$(D\\>\u001b(B \u001b$(D\\?\u001b(B\n\u001b$(D\\@\u001b(B \u001b$(D\\A\u001b(B \u001b$(D\\B\u001b(B \u001b$(D\\C\u001b(B \u001b$(D\\D\u001b(B \u001b$(D\\E\u001b(B \u001b$(D\\F\u001b(B \u001b$(D\\G\u001b(B \u001b$(D\\H\u001b(B \u001b$(D\\I\u001b(B \u001b$(D\\J\u001b(B \u001b$(D\\K\u001b(B \u001b$(D\\L\u001b(B \u001b$(D\\M\u001b(B \u001b$(D\\N\u001b(B \u001b$(D\\O\u001b(B\n\u001b$(D\\P\u001b(B \u001b$(D\\Q\u001b(B \u001b$(D\\R\u001b(B \u001b$(D\\S\u001b(B \u001b$(D\\T\u001b(B \u001b$(D\\U\u001b(B \u001b$(D\\V\u001b(B \u001b$(D\\W\u001b(B \u001b$(D\\X\u001b(B \u001b$(D\\Y\u001b(B \u001b$(D\\Z\u001b(B \u001b$(D\\[\u001b(B \u001b$(D\\\\\u001b(B \u001b$(D\\]\u001b(B \u001b$(D\\^\u001b(B \u001b$(D\\_\u001b(B\n\u001b$(D\\`\u001b(B \u001b$(D\\a\u001b(B \u001b$(D\\b\u001b(B \u001b$(D\\c\u001b(B \u001b$(D\\d\u001b(B \u001b$(D\\e\u001b(B \u001b$(D\\f\u001b(B \u001b$(D\\g\u001b(B \u001b$(D\\h\u001b(B \u001b$(D\\i\u001b(B \u001b$(D\\j\u001b(B \u001b$(D\\k\u001b(B \u001b$(D\\l\u001b(B \u001b$(D\\m\u001b(B \u001b$(D\\n\u001b(B \u001b$(D\\o\u001b(B\n\u001b$(D\\p\u001b(B \u001b$(D\\q\u001b(B \u001b$(D\\r\u001b(B \u001b$(D\\s\u001b(B \u001b$(D\\t\u001b(B \u001b$(D\\u\u001b(B \u001b$(D\\v\u001b(B \u001b$(D\\w\u001b(B \u001b$(D\\x\u001b(B \u001b$(D\\y\u001b(B \u001b$(D\\z\u001b(B \u001b$(D\\{\u001b(B \u001b$(D\\|\u001b(B \u001b$(D\\}\u001b(B \u001b$(D\\~\u001b(B\n  \u001b$(D]!\u001b(B \u001b$(D]\"\u001b(B \u001b$(D]#\u001b(B \u001b$(D]$\u001b(B \u001b$(D]%\u001b(B \u001b$(D]&\u001b(B \u001b$(D]'\u001b(B \u001b$(D](\u001b(B \u001b$(D])\u001b(B \u001b$(D]*\u001b(B \u001b$(D]+\u001b(B \u001b$(D],\u001b(B \u001b$(D]-\u001b(B \u001b$(D].\u001b(B \u001b$(D]/\u001b(B\n\u001b$(D]0\u001b(B \u001b$(D]1\u001b(B \u001b$(D]2\u001b(B \u001b$(D]3\u001b(B \u001b$(D]4\u001b(B \u001b$(D]5\u001b(B \u001b$(D]6\u001b(B \u001b$(D]7\u001b(B \u001b$(D]8\u001b(B \u001b$(D]9\u001b(B \u001b$(D]:\u001b(B \u001b$(D];\u001b(B \u001b$(D]<\u001b(B \u001b$(D]=\u001b(B \u001b$(D]>\u001b(B \u001b$(D]?\u001b(B\n\u001b$(D]@\u001b(B \u001b$(D]A\u001b(B \u001b$(D]B\u001b(B \u001b$(D]C\u001b(B \u001b$(D]D\u001b(B \u001b$(D]E\u001b(B \u001b$(D]F\u001b(B \u001b$(D]G\u001b(B \u001b$(D]H\u001b(B \u001b$(D]I\u001b(B \u001b$(D]J\u001b(B \u001b$(D]K\u001b(B \u001b$(D]L\u001b(B \u001b$(D]M\u001b(B \u001b$(D]N\u001b(B \u001b$(D]O\u001b(B\n\u001b$(D]P\u001b(B \u001b$(D]Q\u001b(B \u001b$(D]R\u001b(B \u001b$(D]S\u001b(B \u001b$(D]T\u001b(B \u001b$(D]U\u001b(B \u001b$(D]V\u001b(B \u001b$(D]W\u001b(B \u001b$(D]X\u001b(B \u001b$(D]Y\u001b(B \u001b$(D]Z\u001b(B \u001b$(D][\u001b(B \u001b$(D]\\\u001b(B \u001b$(D]]\u001b(B \u001b$(D]^\u001b(B \u001b$(D]_\u001b(B\n\u001b$(D]`\u001b(B \u001b$(D]a\u001b(B \u001b$(D]b\u001b(B \u001b$(D]c\u001b(B \u001b$(D]d\u001b(B \u001b$(D]e\u001b(B \u001b$(D]f\u001b(B \u001b$(D]g\u001b(B \u001b$(D]h\u001b(B \u001b$(D]i\u001b(B \u001b$(D]j\u001b(B \u001b$(D]k\u001b(B \u001b$(D]l\u001b(B \u001b$(D]m\u001b(B \u001b$(D]n\u001b(B \u001b$(D]o\u001b(B\n\u001b$(D]p\u001b(B \u001b$(D]q\u001b(B \u001b$(D]r\u001b(B \u001b$(D]s\u001b(B \u001b$(D]t\u001b(B \u001b$(D]u\u001b(B \u001b$(D]v\u001b(B \u001b$(D]w\u001b(B \u001b$(D]x\u001b(B \u001b$(D]y\u001b(B \u001b$(D]z\u001b(B \u001b$(D]{\u001b(B \u001b$(D]|\u001b(B \u001b$(D]}\u001b(B \u001b$(D]~\u001b(B\n  \u001b$(D^!\u001b(B \u001b$(D^\"\u001b(B \u001b$(D^#\u001b(B \u001b$(D^$\u001b(B \u001b$(D^%\u001b(B \u001b$(D^&\u001b(B \u001b$(D^'\u001b(B \u001b$(D^(\u001b(B \u001b$(D^)\u001b(B \u001b$(D^*\u001b(B \u001b$(D^+\u001b(B \u001b$(D^,\u001b(B \u001b$(D^-\u001b(B \u001b$(D^.\u001b(B \u001b$(D^/\u001b(B\n\u001b$(D^0\u001b(B \u001b$(D^1\u001b(B \u001b$(D^2\u001b(B \u001b$(D^3\u001b(B \u001b$(D^4\u001b(B \u001b$(D^5\u001b(B \u001b$(D^6\u001b(B \u001b$(D^7\u001b(B \u001b$(D^8\u001b(B \u001b$(D^9\u001b(B \u001b$(D^:\u001b(B \u001b$(D^;\u001b(B \u001b$(D^<\u001b(B \u001b$(D^=\u001b(B \u001b$(D^>\u001b(B \u001b$(D^?\u001b(B\n\u001b$(D^@\u001b(B \u001b$(D^A\u001b(B \u001b$(D^B\u001b(B \u001b$(D^C\u001b(B \u001b$(D^D\u001b(B \u001b$(D^E\u001b(B \u001b$(D^F\u001b(B \u001b$(D^G\u001b(B \u001b$(D^H\u001b(B \u001b$(D^I\u001b(B \u001b$(D^J\u001b(B \u001b$(D^K\u001b(B \u001b$(D^L\u001b(B \u001b$(D^M\u001b(B \u001b$(D^N\u001b(B \u001b$(D^O\u001b(B\n\u001b$(D^P\u001b(B \u001b$(D^Q\u001b(B \u001b$(D^R\u001b(B \u001b$(D^S\u001b(B \u001b$(D^T\u001b(B \u001b$(D^U\u001b(B \u001b$(D^V\u001b(B \u001b$(D^W\u001b(B \u001b$(D^X\u001b(B \u001b$(D^Y\u001b(B \u001b$(D^Z\u001b(B \u001b$(D^[\u001b(B \u001b$(D^\\\u001b(B \u001b$(D^]\u001b(B \u001b$(D^^\u001b(B \u001b$(D^_\u001b(B\n\u001b$(D^`\u001b(B \u001b$(D^a\u001b(B \u001b$(D^b\u001b(B \u001b$(D^c\u001b(B \u001b$(D^d\u001b(B \u001b$(D^e\u001b(B \u001b$(D^f\u001b(B \u001b$(D^g\u001b(B \u001b$(D^h\u001b(B \u001b$(D^i\u001b(B \u001b$(D^j\u001b(B \u001b$(D^k\u001b(B \u001b$(D^l\u001b(B \u001b$(D^m\u001b(B \u001b$(D^n\u001b(B \u001b$(D^o\u001b(B\n\u001b$(D^p\u001b(B \u001b$(D^q\u001b(B \u001b$(D^r\u001b(B \u001b$(D^s\u001b(B \u001b$(D^t\u001b(B \u001b$(D^u\u001b(B \u001b$(D^v\u001b(B \u001b$(D^w\u001b(B \u001b$(D^x\u001b(B \u001b$(D^y\u001b(B \u001b$(D^z\u001b(B \u001b$(D^{\u001b(B \u001b$(D^|\u001b(B \u001b$(D^}\u001b(B \u001b$(D^~\u001b(B\n  \u001b$(D_!\u001b(B \u001b$(D_\"\u001b(B \u001b$(D_#\u001b(B \u001b$(D_$\u001b(B \u001b$(D_%\u001b(B \u001b$(D_&\u001b(B \u001b$(D_'\u001b(B \u001b$(D_(\u001b(B \u001b$(D_)\u001b(B \u001b$(D_*\u001b(B \u001b$(D_+\u001b(B \u001b$(D_,\u001b(B \u001b$(D_-\u001b(B \u001b$(D_.\u001b(B \u001b$(D_/\u001b(B\n\u001b$(D_0\u001b(B \u001b$(D_1\u001b(B \u001b$(D_2\u001b(B \u001b$(D_3\u001b(B \u001b$(D_4\u001b(B \u001b$(D_5\u001b(B \u001b$(D_6\u001b(B \u001b$(D_7\u001b(B \u001b$(D_8\u001b(B \u001b$(D_9\u001b(B \u001b$(D_:\u001b(B \u001b$(D_;\u001b(B \u001b$(D_<\u001b(B \u001b$(D_=\u001b(B \u001b$(D_>\u001b(B \u001b$(D_?\u001b(B\n\u001b$(D_@\u001b(B \u001b$(D_A\u001b(B \u001b$(D_B\u001b(B \u001b$(D_C\u001b(B \u001b$(D_D\u001b(B \u001b$(D_E\u001b(B \u001b$(D_F\u001b(B \u001b$(D_G\u001b(B \u001b$(D_H\u001b(B \u001b$(D_I\u001b(B \u001b$(D_J\u001b(B \u001b$(D_K\u001b(B \u001b$(D_L\u001b(B \u001b$(D_M\u001b(B \u001b$(D_N\u001b(B \u001b$(D_O\u001b(B\n\u001b$(D_P\u001b(B \u001b$(D_Q\u001b(B \u001b$(D_R\u001b(B \u001b$(D_S\u001b(B \u001b$(D_T\u001b(B \u001b$(D_U\u001b(B \u001b$(D_V\u001b(B \u001b$(D_W\u001b(B \u001b$(D_X\u001b(B \u001b$(D_Y\u001b(B \u001b$(D_Z\u001b(B \u001b$(D_[\u001b(B \u001b$(D_\\\u001b(B \u001b$(D_]\u001b(B \u001b$(D_^\u001b(B \u001b$(D__\u001b(B\n\u001b$(D_`\u001b(B \u001b$(D_a\u001b(B \u001b$(D_b\u001b(B \u001b$(D_c\u001b(B \u001b$(D_d\u001b(B \u001b$(D_e\u001b(B \u001b$(D_f\u001b(B \u001b$(D_g\u001b(B \u001b$(D_h\u001b(B \u001b$(D_i\u001b(B \u001b$(D_j\u001b(B \u001b$(D_k\u001b(B \u001b$(D_l\u001b(B \u001b$(D_m\u001b(B \u001b$(D_n\u001b(B \u001b$(D_o\u001b(B\n\u001b$(D_p\u001b(B \u001b$(D_q\u001b(B \u001b$(D_r\u001b(B \u001b$(D_s\u001b(B \u001b$(D_t\u001b(B \u001b$(D_u\u001b(B \u001b$(D_v\u001b(B \u001b$(D_w\u001b(B \u001b$(D_x\u001b(B \u001b$(D_y\u001b(B \u001b$(D_z\u001b(B \u001b$(D_{\u001b(B \u001b$(D_|\u001b(B \u001b$(D_}\u001b(B \u001b$(D_~\u001b(B\n  \u001b$(D`!\u001b(B \u001b$(D`\"\u001b(B \u001b$(D`#\u001b(B \u001b$(D`$\u001b(B \u001b$(D`%\u001b(B \u001b$(D`&\u001b(B \u001b$(D`'\u001b(B \u001b$(D`(\u001b(B \u001b$(D`)\u001b(B \u001b$(D`*\u001b(B \u001b$(D`+\u001b(B \u001b$(D`,\u001b(B \u001b$(D`-\u001b(B \u001b$(D`.\u001b(B \u001b$(D`/\u001b(B\n\u001b$(D`0\u001b(B \u001b$(D`1\u001b(B \u001b$(D`2\u001b(B \u001b$(D`3\u001b(B \u001b$(D`4\u001b(B \u001b$(D`5\u001b(B \u001b$(D`6\u001b(B \u001b$(D`7\u001b(B \u001b$(D`8\u001b(B \u001b$(D`9\u001b(B \u001b$(D`:\u001b(B \u001b$(D`;\u001b(B \u001b$(D`<\u001b(B \u001b$(D`=\u001b(B \u001b$(D`>\u001b(B \u001b$(D`?\u001b(B\n\u001b$(D`@\u001b(B \u001b$(D`A\u001b(B \u001b$(D`B\u001b(B \u001b$(D`C\u001b(B \u001b$(D`D\u001b(B \u001b$(D`E\u001b(B \u001b$(D`F\u001b(B \u001b$(D`G\u001b(B \u001b$(D`H\u001b(B \u001b$(D`I\u001b(B \u001b$(D`J\u001b(B \u001b$(D`K\u001b(B \u001b$(D`L\u001b(B \u001b$(D`M\u001b(B \u001b$(D`N\u001b(B \u001b$(D`O\u001b(B\n\u001b$(D`P\u001b(B \u001b$(D`Q\u001b(B \u001b$(D`R\u001b(B \u001b$(D`S\u001b(B \u001b$(D`T\u001b(B \u001b$(D`U\u001b(B \u001b$(D`V\u001b(B \u001b$(D`W\u001b(B \u001b$(D`X\u001b(B \u001b$(D`Y\u001b(B \u001b$(D`Z\u001b(B \u001b$(D`[\u001b(B \u001b$(D`\\\u001b(B \u001b$(D`]\u001b(B \u001b$(D`^\u001b(B \u001b$(D`_\u001b(B\n\u001b$(D``\u001b(B \u001b$(D`a\u001b(B \u001b$(D`b\u001b(B \u001b$(D`c\u001b(B \u001b$(D`d\u001b(B \u001b$(D`e\u001b(B \u001b$(D`f\u001b(B \u001b$(D`g\u001b(B \u001b$(D`h\u001b(B \u001b$(D`i\u001b(B \u001b$(D`j\u001b(B \u001b$(D`k\u001b(B \u001b$(D`l\u001b(B \u001b$(D`m\u001b(B \u001b$(D`n\u001b(B \u001b$(D`o\u001b(B\n\u001b$(D`p\u001b(B \u001b$(D`q\u001b(B \u001b$(D`r\u001b(B \u001b$(D`s\u001b(B \u001b$(D`t\u001b(B \u001b$(D`u\u001b(B \u001b$(D`v\u001b(B \u001b$(D`w\u001b(B \u001b$(D`x\u001b(B \u001b$(D`y\u001b(B \u001b$(D`z\u001b(B \u001b$(D`{\u001b(B \u001b$(D`|\u001b(B \u001b$(D`}\u001b(B \u001b$(D`~\u001b(B\n  \u001b$(Da!\u001b(B \u001b$(Da\"\u001b(B \u001b$(Da#\u001b(B \u001b$(Da$\u001b(B \u001b$(Da%\u001b(B \u001b$(Da&\u001b(B \u001b$(Da'\u001b(B \u001b$(Da(\u001b(B \u001b$(Da)\u001b(B \u001b$(Da*\u001b(B \u001b$(Da+\u001b(B \u001b$(Da,\u001b(B \u001b$(Da-\u001b(B \u001b$(Da.\u001b(B \u001b$(Da/\u001b(B\n\u001b$(Da0\u001b(B \u001b$(Da1\u001b(B \u001b$(Da2\u001b(B \u001b$(Da3\u001b(B \u001b$(Da4\u001b(B \u001b$(Da5\u001b(B \u001b$(Da6\u001b(B \u001b$(Da7\u001b(B \u001b$(Da8\u001b(B \u001b$(Da9\u001b(B \u001b$(Da:\u001b(B \u001b$(Da;\u001b(B \u001b$(Da<\u001b(B \u001b$(Da=\u001b(B \u001b$(Da>\u001b(B \u001b$(Da?\u001b(B\n\u001b$(Da@\u001b(B \u001b$(DaA\u001b(B \u001b$(DaB\u001b(B \u001b$(DaC\u001b(B \u001b$(DaD\u001b(B \u001b$(DaE\u001b(B \u001b$(DaF\u001b(B \u001b$(DaG\u001b(B \u001b$(DaH\u001b(B \u001b$(DaI\u001b(B \u001b$(DaJ\u001b(B \u001b$(DaK\u001b(B \u001b$(DaL\u001b(B \u001b$(DaM\u001b(B \u001b$(DaN\u001b(B \u001b$(DaO\u001b(B\n\u001b$(DaP\u001b(B \u001b$(DaQ\u001b(B \u001b$(DaR\u001b(B \u001b$(DaS\u001b(B \u001b$(DaT\u001b(B \u001b$(DaU\u001b(B \u001b$(DaV\u001b(B \u001b$(DaW\u001b(B \u001b$(DaX\u001b(B \u001b$(DaY\u001b(B \u001b$(DaZ\u001b(B \u001b$(Da[\u001b(B \u001b$(Da\\\u001b(B \u001b$(Da]\u001b(B \u001b$(Da^\u001b(B \u001b$(Da_\u001b(B\n\u001b$(Da`\u001b(B \u001b$(Daa\u001b(B \u001b$(Dab\u001b(B \u001b$(Dac\u001b(B \u001b$(Dad\u001b(B \u001b$(Dae\u001b(B \u001b$(Daf\u001b(B \u001b$(Dag\u001b(B \u001b$(Dah\u001b(B \u001b$(Dai\u001b(B \u001b$(Daj\u001b(B \u001b$(Dak\u001b(B \u001b$(Dal\u001b(B \u001b$(Dam\u001b(B \u001b$(Dan\u001b(B \u001b$(Dao\u001b(B\n\u001b$(Dap\u001b(B \u001b$(Daq\u001b(B \u001b$(Dar\u001b(B \u001b$(Das\u001b(B \u001b$(Dat\u001b(B \u001b$(Dau\u001b(B \u001b$(Dav\u001b(B \u001b$(Daw\u001b(B \u001b$(Dax\u001b(B \u001b$(Day\u001b(B \u001b$(Daz\u001b(B \u001b$(Da{\u001b(B \u001b$(Da|\u001b(B \u001b$(Da}\u001b(B \u001b$(Da~\u001b(B\n  \u001b$(Db!\u001b(B \u001b$(Db\"\u001b(B \u001b$(Db#\u001b(B \u001b$(Db$\u001b(B \u001b$(Db%\u001b(B \u001b$(Db&\u001b(B \u001b$(Db'\u001b(B \u001b$(Db(\u001b(B \u001b$(Db)\u001b(B \u001b$(Db*\u001b(B \u001b$(Db+\u001b(B \u001b$(Db,\u001b(B \u001b$(Db-\u001b(B \u001b$(Db.\u001b(B \u001b$(Db/\u001b(B\n\u001b$(Db0\u001b(B \u001b$(Db1\u001b(B \u001b$(Db2\u001b(B \u001b$(Db3\u001b(B \u001b$(Db4\u001b(B \u001b$(Db5\u001b(B \u001b$(Db6\u001b(B \u001b$(Db7\u001b(B \u001b$(Db8\u001b(B \u001b$(Db9\u001b(B \u001b$(Db:\u001b(B \u001b$(Db;\u001b(B \u001b$(Db<\u001b(B \u001b$(Db=\u001b(B \u001b$(Db>\u001b(B \u001b$(Db?\u001b(B\n\u001b$(Db@\u001b(B \u001b$(DbA\u001b(B \u001b$(DbB\u001b(B \u001b$(DbC\u001b(B \u001b$(DbD\u001b(B \u001b$(DbE\u001b(B \u001b$(DbF\u001b(B \u001b$(DbG\u001b(B \u001b$(DbH\u001b(B \u001b$(DbI\u001b(B \u001b$(DbJ\u001b(B \u001b$(DbK\u001b(B \u001b$(DbL\u001b(B \u001b$(DbM\u001b(B \u001b$(DbN\u001b(B \u001b$(DbO\u001b(B\n\u001b$(DbP\u001b(B \u001b$(DbQ\u001b(B \u001b$(DbR\u001b(B \u001b$(DbS\u001b(B \u001b$(DbT\u001b(B \u001b$(DbU\u001b(B \u001b$(DbV\u001b(B \u001b$(DbW\u001b(B \u001b$(DbX\u001b(B \u001b$(DbY\u001b(B \u001b$(DbZ\u001b(B \u001b$(Db[\u001b(B \u001b$(Db\\\u001b(B \u001b$(Db]\u001b(B \u001b$(Db^\u001b(B \u001b$(Db_\u001b(B\n\u001b$(Db`\u001b(B \u001b$(Dba\u001b(B \u001b$(Dbb\u001b(B \u001b$(Dbc\u001b(B \u001b$(Dbd\u001b(B \u001b$(Dbe\u001b(B \u001b$(Dbf\u001b(B \u001b$(Dbg\u001b(B \u001b$(Dbh\u001b(B \u001b$(Dbi\u001b(B \u001b$(Dbj\u001b(B \u001b$(Dbk\u001b(B \u001b$(Dbl\u001b(B \u001b$(Dbm\u001b(B \u001b$(Dbn\u001b(B \u001b$(Dbo\u001b(B\n\u001b$(Dbp\u001b(B \u001b$(Dbq\u001b(B \u001b$(Dbr\u001b(B \u001b$(Dbs\u001b(B \u001b$(Dbt\u001b(B \u001b$(Dbu\u001b(B \u001b$(Dbv\u001b(B \u001b$(Dbw\u001b(B \u001b$(Dbx\u001b(B \u001b$(Dby\u001b(B \u001b$(Dbz\u001b(B \u001b$(Db{\u001b(B \u001b$(Db|\u001b(B \u001b$(Db}\u001b(B \u001b$(Db~\u001b(B\n  \u001b$(Dc!\u001b(B \u001b$(Dc\"\u001b(B \u001b$(Dc#\u001b(B \u001b$(Dc$\u001b(B \u001b$(Dc%\u001b(B \u001b$(Dc&\u001b(B \u001b$(Dc'\u001b(B \u001b$(Dc(\u001b(B \u001b$(Dc)\u001b(B \u001b$(Dc*\u001b(B \u001b$(Dc+\u001b(B \u001b$(Dc,\u001b(B \u001b$(Dc-\u001b(B \u001b$(Dc.\u001b(B \u001b$(Dc/\u001b(B\n\u001b$(Dc0\u001b(B \u001b$(Dc1\u001b(B \u001b$(Dc2\u001b(B \u001b$(Dc3\u001b(B \u001b$(Dc4\u001b(B \u001b$(Dc5\u001b(B \u001b$(Dc6\u001b(B \u001b$(Dc7\u001b(B \u001b$(Dc8\u001b(B \u001b$(Dc9\u001b(B \u001b$(Dc:\u001b(B \u001b$(Dc;\u001b(B \u001b$(Dc<\u001b(B \u001b$(Dc=\u001b(B \u001b$(Dc>\u001b(B \u001b$(Dc?\u001b(B\n\u001b$(Dc@\u001b(B \u001b$(DcA\u001b(B \u001b$(DcB\u001b(B \u001b$(DcC\u001b(B \u001b$(DcD\u001b(B \u001b$(DcE\u001b(B \u001b$(DcF\u001b(B \u001b$(DcG\u001b(B \u001b$(DcH\u001b(B \u001b$(DcI\u001b(B \u001b$(DcJ\u001b(B \u001b$(DcK\u001b(B \u001b$(DcL\u001b(B \u001b$(DcM\u001b(B \u001b$(DcN\u001b(B \u001b$(DcO\u001b(B\n\u001b$(DcP\u001b(B \u001b$(DcQ\u001b(B \u001b$(DcR\u001b(B \u001b$(DcS\u001b(B \u001b$(DcT\u001b(B \u001b$(DcU\u001b(B \u001b$(DcV\u001b(B \u001b$(DcW\u001b(B \u001b$(DcX\u001b(B \u001b$(DcY\u001b(B \u001b$(DcZ\u001b(B \u001b$(Dc[\u001b(B \u001b$(Dc\\\u001b(B \u001b$(Dc]\u001b(B \u001b$(Dc^\u001b(B \u001b$(Dc_\u001b(B\n\u001b$(Dc`\u001b(B \u001b$(Dca\u001b(B \u001b$(Dcb\u001b(B \u001b$(Dcc\u001b(B \u001b$(Dcd\u001b(B \u001b$(Dce\u001b(B \u001b$(Dcf\u001b(B \u001b$(Dcg\u001b(B \u001b$(Dch\u001b(B \u001b$(Dci\u001b(B \u001b$(Dcj\u001b(B \u001b$(Dck\u001b(B \u001b$(Dcl\u001b(B \u001b$(Dcm\u001b(B \u001b$(Dcn\u001b(B \u001b$(Dco\u001b(B\n\u001b$(Dcp\u001b(B \u001b$(Dcq\u001b(B \u001b$(Dcr\u001b(B \u001b$(Dcs\u001b(B \u001b$(Dct\u001b(B \u001b$(Dcu\u001b(B \u001b$(Dcv\u001b(B \u001b$(Dcw\u001b(B \u001b$(Dcx\u001b(B \u001b$(Dcy\u001b(B \u001b$(Dcz\u001b(B \u001b$(Dc{\u001b(B \u001b$(Dc|\u001b(B \u001b$(Dc}\u001b(B \u001b$(Dc~\u001b(B\n  \u001b$(Dd!\u001b(B \u001b$(Dd\"\u001b(B \u001b$(Dd#\u001b(B \u001b$(Dd$\u001b(B \u001b$(Dd%\u001b(B \u001b$(Dd&\u001b(B \u001b$(Dd'\u001b(B \u001b$(Dd(\u001b(B \u001b$(Dd)\u001b(B \u001b$(Dd*\u001b(B \u001b$(Dd+\u001b(B \u001b$(Dd,\u001b(B \u001b$(Dd-\u001b(B \u001b$(Dd.\u001b(B \u001b$(Dd/\u001b(B\n\u001b$(Dd0\u001b(B \u001b$(Dd1\u001b(B \u001b$(Dd2\u001b(B \u001b$(Dd3\u001b(B \u001b$(Dd4\u001b(B \u001b$(Dd5\u001b(B \u001b$(Dd6\u001b(B \u001b$(Dd7\u001b(B \u001b$(Dd8\u001b(B \u001b$(Dd9\u001b(B \u001b$(Dd:\u001b(B \u001b$(Dd;\u001b(B \u001b$(Dd<\u001b(B \u001b$(Dd=\u001b(B \u001b$(Dd>\u001b(B \u001b$(Dd?\u001b(B\n\u001b$(Dd@\u001b(B \u001b$(DdA\u001b(B \u001b$(DdB\u001b(B \u001b$(DdC\u001b(B \u001b$(DdD\u001b(B \u001b$(DdE\u001b(B \u001b$(DdF\u001b(B \u001b$(DdG\u001b(B \u001b$(DdH\u001b(B \u001b$(DdI\u001b(B \u001b$(DdJ\u001b(B \u001b$(DdK\u001b(B \u001b$(DdL\u001b(B \u001b$(DdM\u001b(B \u001b$(DdN\u001b(B \u001b$(DdO\u001b(B\n\u001b$(DdP\u001b(B \u001b$(DdQ\u001b(B \u001b$(DdR\u001b(B \u001b$(DdS\u001b(B \u001b$(DdT\u001b(B \u001b$(DdU\u001b(B \u001b$(DdV\u001b(B \u001b$(DdW\u001b(B \u001b$(DdX\u001b(B \u001b$(DdY\u001b(B \u001b$(DdZ\u001b(B \u001b$(Dd[\u001b(B \u001b$(Dd\\\u001b(B \u001b$(Dd]\u001b(B \u001b$(Dd^\u001b(B \u001b$(Dd_\u001b(B\n\u001b$(Dd`\u001b(B \u001b$(Dda\u001b(B \u001b$(Ddb\u001b(B \u001b$(Ddc\u001b(B \u001b$(Ddd\u001b(B \u001b$(Dde\u001b(B \u001b$(Ddf\u001b(B \u001b$(Ddg\u001b(B \u001b$(Ddh\u001b(B \u001b$(Ddi\u001b(B \u001b$(Ddj\u001b(B \u001b$(Ddk\u001b(B \u001b$(Ddl\u001b(B \u001b$(Ddm\u001b(B \u001b$(Ddn\u001b(B \u001b$(Ddo\u001b(B\n\u001b$(Ddp\u001b(B \u001b$(Ddq\u001b(B \u001b$(Ddr\u001b(B \u001b$(Dds\u001b(B \u001b$(Ddt\u001b(B \u001b$(Ddu\u001b(B \u001b$(Ddv\u001b(B \u001b$(Ddw\u001b(B \u001b$(Ddx\u001b(B \u001b$(Ddy\u001b(B \u001b$(Ddz\u001b(B \u001b$(Dd{\u001b(B \u001b$(Dd|\u001b(B \u001b$(Dd}\u001b(B \u001b$(Dd~\u001b(B\n  \u001b$(De!\u001b(B \u001b$(De\"\u001b(B \u001b$(De#\u001b(B \u001b$(De$\u001b(B \u001b$(De%\u001b(B \u001b$(De&\u001b(B \u001b$(De'\u001b(B \u001b$(De(\u001b(B \u001b$(De)\u001b(B \u001b$(De*\u001b(B \u001b$(De+\u001b(B \u001b$(De,\u001b(B \u001b$(De-\u001b(B \u001b$(De.\u001b(B \u001b$(De/\u001b(B\n\u001b$(De0\u001b(B \u001b$(De1\u001b(B \u001b$(De2\u001b(B \u001b$(De3\u001b(B \u001b$(De4\u001b(B \u001b$(De5\u001b(B \u001b$(De6\u001b(B \u001b$(De7\u001b(B \u001b$(De8\u001b(B \u001b$(De9\u001b(B \u001b$(De:\u001b(B \u001b$(De;\u001b(B \u001b$(De<\u001b(B \u001b$(De=\u001b(B \u001b$(De>\u001b(B \u001b$(De?\u001b(B\n\u001b$(De@\u001b(B \u001b$(DeA\u001b(B \u001b$(DeB\u001b(B \u001b$(DeC\u001b(B \u001b$(DeD\u001b(B \u001b$(DeE\u001b(B \u001b$(DeF\u001b(B \u001b$(DeG\u001b(B \u001b$(DeH\u001b(B \u001b$(DeI\u001b(B \u001b$(DeJ\u001b(B \u001b$(DeK\u001b(B \u001b$(DeL\u001b(B \u001b$(DeM\u001b(B \u001b$(DeN\u001b(B \u001b$(DeO\u001b(B\n\u001b$(DeP\u001b(B \u001b$(DeQ\u001b(B \u001b$(DeR\u001b(B \u001b$(DeS\u001b(B \u001b$(DeT\u001b(B \u001b$(DeU\u001b(B \u001b$(DeV\u001b(B \u001b$(DeW\u001b(B \u001b$(DeX\u001b(B \u001b$(DeY\u001b(B \u001b$(DeZ\u001b(B \u001b$(De[\u001b(B \u001b$(De\\\u001b(B \u001b$(De]\u001b(B \u001b$(De^\u001b(B \u001b$(De_\u001b(B\n\u001b$(De`\u001b(B \u001b$(Dea\u001b(B \u001b$(Deb\u001b(B \u001b$(Dec\u001b(B \u001b$(Ded\u001b(B \u001b$(Dee\u001b(B \u001b$(Def\u001b(B \u001b$(Deg\u001b(B \u001b$(Deh\u001b(B \u001b$(Dei\u001b(B \u001b$(Dej\u001b(B \u001b$(Dek\u001b(B \u001b$(Del\u001b(B \u001b$(Dem\u001b(B \u001b$(Den\u001b(B \u001b$(Deo\u001b(B\n\u001b$(Dep\u001b(B \u001b$(Deq\u001b(B \u001b$(Der\u001b(B \u001b$(Des\u001b(B \u001b$(Det\u001b(B \u001b$(Deu\u001b(B \u001b$(Dev\u001b(B \u001b$(Dew\u001b(B \u001b$(Dex\u001b(B \u001b$(Dey\u001b(B \u001b$(Dez\u001b(B \u001b$(De{\u001b(B \u001b$(De|\u001b(B \u001b$(De}\u001b(B \u001b$(De~\u001b(B\n  \u001b$(Df!\u001b(B \u001b$(Df\"\u001b(B \u001b$(Df#\u001b(B \u001b$(Df$\u001b(B \u001b$(Df%\u001b(B \u001b$(Df&\u001b(B \u001b$(Df'\u001b(B \u001b$(Df(\u001b(B \u001b$(Df)\u001b(B \u001b$(Df*\u001b(B \u001b$(Df+\u001b(B \u001b$(Df,\u001b(B \u001b$(Df-\u001b(B \u001b$(Df.\u001b(B \u001b$(Df/\u001b(B\n\u001b$(Df0\u001b(B \u001b$(Df1\u001b(B \u001b$(Df2\u001b(B \u001b$(Df3\u001b(B \u001b$(Df4\u001b(B \u001b$(Df5\u001b(B \u001b$(Df6\u001b(B \u001b$(Df7\u001b(B \u001b$(Df8\u001b(B \u001b$(Df9\u001b(B \u001b$(Df:\u001b(B \u001b$(Df;\u001b(B \u001b$(Df<\u001b(B \u001b$(Df=\u001b(B \u001b$(Df>\u001b(B \u001b$(Df?\u001b(B\n\u001b$(Df@\u001b(B \u001b$(DfA\u001b(B \u001b$(DfB\u001b(B \u001b$(DfC\u001b(B \u001b$(DfD\u001b(B \u001b$(DfE\u001b(B \u001b$(DfF\u001b(B \u001b$(DfG\u001b(B \u001b$(DfH\u001b(B \u001b$(DfI\u001b(B \u001b$(DfJ\u001b(B \u001b$(DfK\u001b(B \u001b$(DfL\u001b(B \u001b$(DfM\u001b(B \u001b$(DfN\u001b(B \u001b$(DfO\u001b(B\n\u001b$(DfP\u001b(B \u001b$(DfQ\u001b(B \u001b$(DfR\u001b(B \u001b$(DfS\u001b(B \u001b$(DfT\u001b(B \u001b$(DfU\u001b(B \u001b$(DfV\u001b(B \u001b$(DfW\u001b(B \u001b$(DfX\u001b(B \u001b$(DfY\u001b(B \u001b$(DfZ\u001b(B \u001b$(Df[\u001b(B \u001b$(Df\\\u001b(B \u001b$(Df]\u001b(B \u001b$(Df^\u001b(B \u001b$(Df_\u001b(B\n\u001b$(Df`\u001b(B \u001b$(Dfa\u001b(B \u001b$(Dfb\u001b(B \u001b$(Dfc\u001b(B \u001b$(Dfd\u001b(B \u001b$(Dfe\u001b(B \u001b$(Dff\u001b(B \u001b$(Dfg\u001b(B \u001b$(Dfh\u001b(B \u001b$(Dfi\u001b(B \u001b$(Dfj\u001b(B \u001b$(Dfk\u001b(B \u001b$(Dfl\u001b(B \u001b$(Dfm\u001b(B \u001b$(Dfn\u001b(B \u001b$(Dfo\u001b(B\n\u001b$(Dfp\u001b(B \u001b$(Dfq\u001b(B \u001b$(Dfr\u001b(B \u001b$(Dfs\u001b(B \u001b$(Dft\u001b(B \u001b$(Dfu\u001b(B \u001b$(Dfv\u001b(B \u001b$(Dfw\u001b(B \u001b$(Dfx\u001b(B \u001b$(Dfy\u001b(B \u001b$(Dfz\u001b(B \u001b$(Df{\u001b(B \u001b$(Df|\u001b(B \u001b$(Df}\u001b(B \u001b$(Df~\u001b(B\n  \u001b$(Dg!\u001b(B \u001b$(Dg\"\u001b(B \u001b$(Dg#\u001b(B \u001b$(Dg$\u001b(B \u001b$(Dg%\u001b(B \u001b$(Dg&\u001b(B \u001b$(Dg'\u001b(B \u001b$(Dg(\u001b(B \u001b$(Dg)\u001b(B \u001b$(Dg*\u001b(B \u001b$(Dg+\u001b(B \u001b$(Dg,\u001b(B \u001b$(Dg-\u001b(B \u001b$(Dg.\u001b(B \u001b$(Dg/\u001b(B\n\u001b$(Dg0\u001b(B \u001b$(Dg1\u001b(B \u001b$(Dg2\u001b(B \u001b$(Dg3\u001b(B \u001b$(Dg4\u001b(B \u001b$(Dg5\u001b(B \u001b$(Dg6\u001b(B \u001b$(Dg7\u001b(B \u001b$(Dg8\u001b(B \u001b$(Dg9\u001b(B \u001b$(Dg:\u001b(B \u001b$(Dg;\u001b(B \u001b$(Dg<\u001b(B \u001b$(Dg=\u001b(B \u001b$(Dg>\u001b(B \u001b$(Dg?\u001b(B\n\u001b$(Dg@\u001b(B \u001b$(DgA\u001b(B \u001b$(DgB\u001b(B \u001b$(DgC\u001b(B \u001b$(DgD\u001b(B \u001b$(DgE\u001b(B \u001b$(DgF\u001b(B \u001b$(DgG\u001b(B \u001b$(DgH\u001b(B \u001b$(DgI\u001b(B \u001b$(DgJ\u001b(B \u001b$(DgK\u001b(B \u001b$(DgL\u001b(B \u001b$(DgM\u001b(B \u001b$(DgN\u001b(B \u001b$(DgO\u001b(B\n\u001b$(DgP\u001b(B \u001b$(DgQ\u001b(B \u001b$(DgR\u001b(B \u001b$(DgS\u001b(B \u001b$(DgT\u001b(B \u001b$(DgU\u001b(B \u001b$(DgV\u001b(B \u001b$(DgW\u001b(B \u001b$(DgX\u001b(B \u001b$(DgY\u001b(B \u001b$(DgZ\u001b(B \u001b$(Dg[\u001b(B \u001b$(Dg\\\u001b(B \u001b$(Dg]\u001b(B \u001b$(Dg^\u001b(B \u001b$(Dg_\u001b(B\n\u001b$(Dg`\u001b(B \u001b$(Dga\u001b(B \u001b$(Dgb\u001b(B \u001b$(Dgc\u001b(B \u001b$(Dgd\u001b(B \u001b$(Dge\u001b(B \u001b$(Dgf\u001b(B \u001b$(Dgg\u001b(B \u001b$(Dgh\u001b(B \u001b$(Dgi\u001b(B \u001b$(Dgj\u001b(B \u001b$(Dgk\u001b(B \u001b$(Dgl\u001b(B \u001b$(Dgm\u001b(B \u001b$(Dgn\u001b(B \u001b$(Dgo\u001b(B\n\u001b$(Dgp\u001b(B \u001b$(Dgq\u001b(B \u001b$(Dgr\u001b(B \u001b$(Dgs\u001b(B \u001b$(Dgt\u001b(B \u001b$(Dgu\u001b(B \u001b$(Dgv\u001b(B \u001b$(Dgw\u001b(B \u001b$(Dgx\u001b(B \u001b$(Dgy\u001b(B \u001b$(Dgz\u001b(B \u001b$(Dg{\u001b(B \u001b$(Dg|\u001b(B \u001b$(Dg}\u001b(B \u001b$(Dg~\u001b(B\n  \u001b$(Dh!\u001b(B \u001b$(Dh\"\u001b(B \u001b$(Dh#\u001b(B \u001b$(Dh$\u001b(B \u001b$(Dh%\u001b(B \u001b$(Dh&\u001b(B \u001b$(Dh'\u001b(B \u001b$(Dh(\u001b(B \u001b$(Dh)\u001b(B \u001b$(Dh*\u001b(B \u001b$(Dh+\u001b(B \u001b$(Dh,\u001b(B \u001b$(Dh-\u001b(B \u001b$(Dh.\u001b(B \u001b$(Dh/\u001b(B\n\u001b$(Dh0\u001b(B \u001b$(Dh1\u001b(B \u001b$(Dh2\u001b(B \u001b$(Dh3\u001b(B \u001b$(Dh4\u001b(B \u001b$(Dh5\u001b(B \u001b$(Dh6\u001b(B \u001b$(Dh7\u001b(B \u001b$(Dh8\u001b(B \u001b$(Dh9\u001b(B \u001b$(Dh:\u001b(B \u001b$(Dh;\u001b(B \u001b$(Dh<\u001b(B \u001b$(Dh=\u001b(B \u001b$(Dh>\u001b(B \u001b$(Dh?\u001b(B\n\u001b$(Dh@\u001b(B \u001b$(DhA\u001b(B \u001b$(DhB\u001b(B \u001b$(DhC\u001b(B \u001b$(DhD\u001b(B \u001b$(DhE\u001b(B \u001b$(DhF\u001b(B \u001b$(DhG\u001b(B \u001b$(DhH\u001b(B \u001b$(DhI\u001b(B \u001b$(DhJ\u001b(B \u001b$(DhK\u001b(B \u001b$(DhL\u001b(B \u001b$(DhM\u001b(B \u001b$(DhN\u001b(B \u001b$(DhO\u001b(B\n\u001b$(DhP\u001b(B \u001b$(DhQ\u001b(B \u001b$(DhR\u001b(B \u001b$(DhS\u001b(B \u001b$(DhT\u001b(B \u001b$(DhU\u001b(B \u001b$(DhV\u001b(B \u001b$(DhW\u001b(B \u001b$(DhX\u001b(B \u001b$(DhY\u001b(B \u001b$(DhZ\u001b(B \u001b$(Dh[\u001b(B \u001b$(Dh\\\u001b(B \u001b$(Dh]\u001b(B \u001b$(Dh^\u001b(B \u001b$(Dh_\u001b(B\n\u001b$(Dh`\u001b(B \u001b$(Dha\u001b(B \u001b$(Dhb\u001b(B \u001b$(Dhc\u001b(B \u001b$(Dhd\u001b(B \u001b$(Dhe\u001b(B \u001b$(Dhf\u001b(B \u001b$(Dhg\u001b(B \u001b$(Dhh\u001b(B \u001b$(Dhi\u001b(B \u001b$(Dhj\u001b(B \u001b$(Dhk\u001b(B \u001b$(Dhl\u001b(B \u001b$(Dhm\u001b(B \u001b$(Dhn\u001b(B \u001b$(Dho\u001b(B\n\u001b$(Dhp\u001b(B \u001b$(Dhq\u001b(B \u001b$(Dhr\u001b(B \u001b$(Dhs\u001b(B \u001b$(Dht\u001b(B \u001b$(Dhu\u001b(B \u001b$(Dhv\u001b(B \u001b$(Dhw\u001b(B \u001b$(Dhx\u001b(B \u001b$(Dhy\u001b(B \u001b$(Dhz\u001b(B \u001b$(Dh{\u001b(B \u001b$(Dh|\u001b(B \u001b$(Dh}\u001b(B \u001b$(Dh~\u001b(B\n  \u001b$(Di!\u001b(B \u001b$(Di\"\u001b(B \u001b$(Di#\u001b(B \u001b$(Di$\u001b(B \u001b$(Di%\u001b(B \u001b$(Di&\u001b(B \u001b$(Di'\u001b(B \u001b$(Di(\u001b(B \u001b$(Di)\u001b(B \u001b$(Di*\u001b(B \u001b$(Di+\u001b(B \u001b$(Di,\u001b(B \u001b$(Di-\u001b(B \u001b$(Di.\u001b(B \u001b$(Di/\u001b(B\n\u001b$(Di0\u001b(B \u001b$(Di1\u001b(B \u001b$(Di2\u001b(B \u001b$(Di3\u001b(B \u001b$(Di4\u001b(B \u001b$(Di5\u001b(B \u001b$(Di6\u001b(B \u001b$(Di7\u001b(B \u001b$(Di8\u001b(B \u001b$(Di9\u001b(B \u001b$(Di:\u001b(B \u001b$(Di;\u001b(B \u001b$(Di<\u001b(B \u001b$(Di=\u001b(B \u001b$(Di>\u001b(B \u001b$(Di?\u001b(B\n\u001b$(Di@\u001b(B \u001b$(DiA\u001b(B \u001b$(DiB\u001b(B \u001b$(DiC\u001b(B \u001b$(DiD\u001b(B \u001b$(DiE\u001b(B \u001b$(DiF\u001b(B \u001b$(DiG\u001b(B \u001b$(DiH\u001b(B \u001b$(DiI\u001b(B \u001b$(DiJ\u001b(B \u001b$(DiK\u001b(B \u001b$(DiL\u001b(B \u001b$(DiM\u001b(B \u001b$(DiN\u001b(B \u001b$(DiO\u001b(B\n\u001b$(DiP\u001b(B \u001b$(DiQ\u001b(B \u001b$(DiR\u001b(B \u001b$(DiS\u001b(B \u001b$(DiT\u001b(B \u001b$(DiU\u001b(B \u001b$(DiV\u001b(B \u001b$(DiW\u001b(B \u001b$(DiX\u001b(B \u001b$(DiY\u001b(B \u001b$(DiZ\u001b(B \u001b$(Di[\u001b(B \u001b$(Di\\\u001b(B \u001b$(Di]\u001b(B \u001b$(Di^\u001b(B \u001b$(Di_\u001b(B\n\u001b$(Di`\u001b(B \u001b$(Dia\u001b(B \u001b$(Dib\u001b(B \u001b$(Dic\u001b(B \u001b$(Did\u001b(B \u001b$(Die\u001b(B \u001b$(Dif\u001b(B \u001b$(Dig\u001b(B \u001b$(Dih\u001b(B \u001b$(Dii\u001b(B \u001b$(Dij\u001b(B \u001b$(Dik\u001b(B \u001b$(Dil\u001b(B \u001b$(Dim\u001b(B \u001b$(Din\u001b(B \u001b$(Dio\u001b(B\n\u001b$(Dip\u001b(B \u001b$(Diq\u001b(B \u001b$(Dir\u001b(B \u001b$(Dis\u001b(B \u001b$(Dit\u001b(B \u001b$(Diu\u001b(B \u001b$(Div\u001b(B \u001b$(Diw\u001b(B \u001b$(Dix\u001b(B \u001b$(Diy\u001b(B \u001b$(Diz\u001b(B \u001b$(Di{\u001b(B \u001b$(Di|\u001b(B \u001b$(Di}\u001b(B \u001b$(Di~\u001b(B\n  \u001b$(Dj!\u001b(B \u001b$(Dj\"\u001b(B \u001b$(Dj#\u001b(B \u001b$(Dj$\u001b(B \u001b$(Dj%\u001b(B \u001b$(Dj&\u001b(B \u001b$(Dj'\u001b(B \u001b$(Dj(\u001b(B \u001b$(Dj)\u001b(B \u001b$(Dj*\u001b(B \u001b$(Dj+\u001b(B \u001b$(Dj,\u001b(B \u001b$(Dj-\u001b(B \u001b$(Dj.\u001b(B \u001b$(Dj/\u001b(B\n\u001b$(Dj0\u001b(B \u001b$(Dj1\u001b(B \u001b$(Dj2\u001b(B \u001b$(Dj3\u001b(B \u001b$(Dj4\u001b(B \u001b$(Dj5\u001b(B \u001b$(Dj6\u001b(B \u001b$(Dj7\u001b(B \u001b$(Dj8\u001b(B \u001b$(Dj9\u001b(B \u001b$(Dj:\u001b(B \u001b$(Dj;\u001b(B \u001b$(Dj<\u001b(B \u001b$(Dj=\u001b(B \u001b$(Dj>\u001b(B \u001b$(Dj?\u001b(B\n\u001b$(Dj@\u001b(B \u001b$(DjA\u001b(B \u001b$(DjB\u001b(B \u001b$(DjC\u001b(B \u001b$(DjD\u001b(B \u001b$(DjE\u001b(B \u001b$(DjF\u001b(B \u001b$(DjG\u001b(B \u001b$(DjH\u001b(B \u001b$(DjI\u001b(B \u001b$(DjJ\u001b(B \u001b$(DjK\u001b(B \u001b$(DjL\u001b(B \u001b$(DjM\u001b(B \u001b$(DjN\u001b(B \u001b$(DjO\u001b(B\n\u001b$(DjP\u001b(B \u001b$(DjQ\u001b(B \u001b$(DjR\u001b(B \u001b$(DjS\u001b(B \u001b$(DjT\u001b(B \u001b$(DjU\u001b(B \u001b$(DjV\u001b(B \u001b$(DjW\u001b(B \u001b$(DjX\u001b(B \u001b$(DjY\u001b(B \u001b$(DjZ\u001b(B \u001b$(Dj[\u001b(B \u001b$(Dj\\\u001b(B \u001b$(Dj]\u001b(B \u001b$(Dj^\u001b(B \u001b$(Dj_\u001b(B\n\u001b$(Dj`\u001b(B \u001b$(Dja\u001b(B \u001b$(Djb\u001b(B \u001b$(Djc\u001b(B \u001b$(Djd\u001b(B \u001b$(Dje\u001b(B \u001b$(Djf\u001b(B \u001b$(Djg\u001b(B \u001b$(Djh\u001b(B \u001b$(Dji\u001b(B \u001b$(Djj\u001b(B \u001b$(Djk\u001b(B \u001b$(Djl\u001b(B \u001b$(Djm\u001b(B \u001b$(Djn\u001b(B \u001b$(Djo\u001b(B\n\u001b$(Djp\u001b(B \u001b$(Djq\u001b(B \u001b$(Djr\u001b(B \u001b$(Djs\u001b(B \u001b$(Djt\u001b(B \u001b$(Dju\u001b(B \u001b$(Djv\u001b(B \u001b$(Djw\u001b(B \u001b$(Djx\u001b(B \u001b$(Djy\u001b(B \u001b$(Djz\u001b(B \u001b$(Dj{\u001b(B \u001b$(Dj|\u001b(B \u001b$(Dj}\u001b(B \u001b$(Dj~\u001b(B\n  \u001b$(Dk!\u001b(B \u001b$(Dk\"\u001b(B \u001b$(Dk#\u001b(B \u001b$(Dk$\u001b(B \u001b$(Dk%\u001b(B \u001b$(Dk&\u001b(B \u001b$(Dk'\u001b(B \u001b$(Dk(\u001b(B \u001b$(Dk)\u001b(B \u001b$(Dk*\u001b(B \u001b$(Dk+\u001b(B \u001b$(Dk,\u001b(B \u001b$(Dk-\u001b(B \u001b$(Dk.\u001b(B \u001b$(Dk/\u001b(B\n\u001b$(Dk0\u001b(B \u001b$(Dk1\u001b(B \u001b$(Dk2\u001b(B \u001b$(Dk3\u001b(B \u001b$(Dk4\u001b(B \u001b$(Dk5\u001b(B \u001b$(Dk6\u001b(B \u001b$(Dk7\u001b(B \u001b$(Dk8\u001b(B \u001b$(Dk9\u001b(B \u001b$(Dk:\u001b(B \u001b$(Dk;\u001b(B \u001b$(Dk<\u001b(B \u001b$(Dk=\u001b(B \u001b$(Dk>\u001b(B \u001b$(Dk?\u001b(B\n\u001b$(Dk@\u001b(B \u001b$(DkA\u001b(B \u001b$(DkB\u001b(B \u001b$(DkC\u001b(B \u001b$(DkD\u001b(B \u001b$(DkE\u001b(B \u001b$(DkF\u001b(B \u001b$(DkG\u001b(B \u001b$(DkH\u001b(B \u001b$(DkI\u001b(B \u001b$(DkJ\u001b(B \u001b$(DkK\u001b(B \u001b$(DkL\u001b(B \u001b$(DkM\u001b(B \u001b$(DkN\u001b(B \u001b$(DkO\u001b(B\n\u001b$(DkP\u001b(B \u001b$(DkQ\u001b(B \u001b$(DkR\u001b(B \u001b$(DkS\u001b(B \u001b$(DkT\u001b(B \u001b$(DkU\u001b(B \u001b$(DkV\u001b(B \u001b$(DkW\u001b(B \u001b$(DkX\u001b(B \u001b$(DkY\u001b(B \u001b$(DkZ\u001b(B \u001b$(Dk[\u001b(B \u001b$(Dk\\\u001b(B \u001b$(Dk]\u001b(B \u001b$(Dk^\u001b(B \u001b$(Dk_\u001b(B\n\u001b$(Dk`\u001b(B \u001b$(Dka\u001b(B \u001b$(Dkb\u001b(B \u001b$(Dkc\u001b(B \u001b$(Dkd\u001b(B \u001b$(Dke\u001b(B \u001b$(Dkf\u001b(B \u001b$(Dkg\u001b(B \u001b$(Dkh\u001b(B \u001b$(Dki\u001b(B \u001b$(Dkj\u001b(B \u001b$(Dkk\u001b(B \u001b$(Dkl\u001b(B \u001b$(Dkm\u001b(B \u001b$(Dkn\u001b(B \u001b$(Dko\u001b(B\n\u001b$(Dkp\u001b(B \u001b$(Dkq\u001b(B \u001b$(Dkr\u001b(B \u001b$(Dks\u001b(B \u001b$(Dkt\u001b(B \u001b$(Dku\u001b(B \u001b$(Dkv\u001b(B \u001b$(Dkw\u001b(B \u001b$(Dkx\u001b(B \u001b$(Dky\u001b(B \u001b$(Dkz\u001b(B \u001b$(Dk{\u001b(B \u001b$(Dk|\u001b(B \u001b$(Dk}\u001b(B \u001b$(Dk~\u001b(B\n  \u001b$(Dl!\u001b(B \u001b$(Dl\"\u001b(B \u001b$(Dl#\u001b(B \u001b$(Dl$\u001b(B \u001b$(Dl%\u001b(B \u001b$(Dl&\u001b(B \u001b$(Dl'\u001b(B \u001b$(Dl(\u001b(B \u001b$(Dl)\u001b(B \u001b$(Dl*\u001b(B \u001b$(Dl+\u001b(B \u001b$(Dl,\u001b(B \u001b$(Dl-\u001b(B \u001b$(Dl.\u001b(B \u001b$(Dl/\u001b(B\n\u001b$(Dl0\u001b(B \u001b$(Dl1\u001b(B \u001b$(Dl2\u001b(B \u001b$(Dl3\u001b(B \u001b$(Dl4\u001b(B \u001b$(Dl5\u001b(B \u001b$(Dl6\u001b(B \u001b$(Dl7\u001b(B \u001b$(Dl8\u001b(B \u001b$(Dl9\u001b(B \u001b$(Dl:\u001b(B \u001b$(Dl;\u001b(B \u001b$(Dl<\u001b(B \u001b$(Dl=\u001b(B \u001b$(Dl>\u001b(B \u001b$(Dl?\u001b(B\n\u001b$(Dl@\u001b(B \u001b$(DlA\u001b(B \u001b$(DlB\u001b(B \u001b$(DlC\u001b(B \u001b$(DlD\u001b(B \u001b$(DlE\u001b(B \u001b$(DlF\u001b(B \u001b$(DlG\u001b(B \u001b$(DlH\u001b(B \u001b$(DlI\u001b(B \u001b$(DlJ\u001b(B \u001b$(DlK\u001b(B \u001b$(DlL\u001b(B \u001b$(DlM\u001b(B \u001b$(DlN\u001b(B \u001b$(DlO\u001b(B\n\u001b$(DlP\u001b(B \u001b$(DlQ\u001b(B \u001b$(DlR\u001b(B \u001b$(DlS\u001b(B \u001b$(DlT\u001b(B \u001b$(DlU\u001b(B \u001b$(DlV\u001b(B \u001b$(DlW\u001b(B \u001b$(DlX\u001b(B \u001b$(DlY\u001b(B \u001b$(DlZ\u001b(B \u001b$(Dl[\u001b(B \u001b$(Dl\\\u001b(B \u001b$(Dl]\u001b(B \u001b$(Dl^\u001b(B \u001b$(Dl_\u001b(B\n\u001b$(Dl`\u001b(B \u001b$(Dla\u001b(B \u001b$(Dlb\u001b(B \u001b$(Dlc\u001b(B \u001b$(Dld\u001b(B \u001b$(Dle\u001b(B \u001b$(Dlf\u001b(B \u001b$(Dlg\u001b(B \u001b$(Dlh\u001b(B \u001b$(Dli\u001b(B \u001b$(Dlj\u001b(B \u001b$(Dlk\u001b(B \u001b$(Dll\u001b(B \u001b$(Dlm\u001b(B \u001b$(Dln\u001b(B \u001b$(Dlo\u001b(B\n\u001b$(Dlp\u001b(B \u001b$(Dlq\u001b(B \u001b$(Dlr\u001b(B \u001b$(Dls\u001b(B \u001b$(Dlt\u001b(B \u001b$(Dlu\u001b(B \u001b$(Dlv\u001b(B \u001b$(Dlw\u001b(B \u001b$(Dlx\u001b(B \u001b$(Dly\u001b(B \u001b$(Dlz\u001b(B \u001b$(Dl{\u001b(B \u001b$(Dl|\u001b(B \u001b$(Dl}\u001b(B \u001b$(Dl~\u001b(B\n  \u001b$(Dm!\u001b(B \u001b$(Dm\"\u001b(B \u001b$(Dm#\u001b(B \u001b$(Dm$\u001b(B \u001b$(Dm%\u001b(B \u001b$(Dm&\u001b(B \u001b$(Dm'\u001b(B \u001b$(Dm(\u001b(B \u001b$(Dm)\u001b(B \u001b$(Dm*\u001b(B \u001b$(Dm+\u001b(B \u001b$(Dm,\u001b(B \u001b$(Dm-\u001b(B \u001b$(Dm.\u001b(B \u001b$(Dm/\u001b(B\n\u001b$(Dm0\u001b(B \u001b$(Dm1\u001b(B \u001b$(Dm2\u001b(B \u001b$(Dm3\u001b(B \u001b$(Dm4\u001b(B \u001b$(Dm5\u001b(B \u001b$(Dm6\u001b(B \u001b$(Dm7\u001b(B \u001b$(Dm8\u001b(B \u001b$(Dm9\u001b(B \u001b$(Dm:\u001b(B \u001b$(Dm;\u001b(B \u001b$(Dm<\u001b(B \u001b$(Dm=\u001b(B \u001b$(Dm>\u001b(B \u001b$(Dm?\u001b(B\n\u001b$(Dm@\u001b(B \u001b$(DmA\u001b(B \u001b$(DmB\u001b(B \u001b$(DmC\u001b(B \u001b$(DmD\u001b(B \u001b$(DmE\u001b(B \u001b$(DmF\u001b(B \u001b$(DmG\u001b(B \u001b$(DmH\u001b(B \u001b$(DmI\u001b(B \u001b$(DmJ\u001b(B \u001b$(DmK\u001b(B \u001b$(DmL\u001b(B \u001b$(DmM\u001b(B \u001b$(DmN\u001b(B \u001b$(DmO\u001b(B\n\u001b$(DmP\u001b(B \u001b$(DmQ\u001b(B \u001b$(DmR\u001b(B \u001b$(DmS\u001b(B \u001b$(DmT\u001b(B \u001b$(DmU\u001b(B \u001b$(DmV\u001b(B \u001b$(DmW\u001b(B \u001b$(DmX\u001b(B \u001b$(DmY\u001b(B \u001b$(DmZ\u001b(B \u001b$(Dm[\u001b(B \u001b$(Dm\\\u001b(B \u001b$(Dm]\u001b(B \u001b$(Dm^\u001b(B \u001b$(Dm_\u001b(B\n\u001b$(Dm`\u001b(B \u001b$(Dma\u001b(B \u001b$(Dmb\u001b(B \u001b$(Dmc\u001b(B\n  \u001b$(Ds!\u001b(B \u001b$(Ds\"\u001b(B \u001b$(Ds#\u001b(B \u001b$(Ds$\u001b(B \u001b$(Ds%\u001b(B \u001b$(Ds&\u001b(B \u001b$(Ds'\u001b(B \u001b$(Ds(\u001b(B \u001b$(Ds)\u001b(B \u001b$(Ds*\u001b(B\n          \u001b$(Ds5\u001b(B \u001b$(Ds6\u001b(B       \u001b$(Ds:\u001b(B \u001b$(Ds;\u001b(B \u001b$(Ds<\u001b(B \u001b$(Ds=\u001b(B \u001b$(Ds>\u001b(B \u001b$(Ds?\u001b(B\n\u001b$(Ds@\u001b(B \u001b$(DsA\u001b(B \u001b$(DsB\u001b(B \u001b$(DsC\u001b(B \u001b$(DsD\u001b(B \u001b$(DsE\u001b(B \u001b$(DsF\u001b(B \u001b$(DsG\u001b(B \u001b$(DsH\u001b(B \u001b$(DsI\u001b(B \u001b$(DsJ\u001b(B \u001b$(DsK\u001b(B \u001b$(DsL\u001b(B \u001b$(DsM\u001b(B   \u001b$(DsO\u001b(B\n\u001b$(DsP\u001b(B \u001b$(DsQ\u001b(B \u001b$(DsR\u001b(B \u001b$(DsS\u001b(B \u001b$(DsT\u001b(B \u001b$(DsU\u001b(B \u001b$(DsV\u001b(B \u001b$(DsW\u001b(B \u001b$(DsX\u001b(B \u001b$(DsY\u001b(B \u001b$(DsZ\u001b(B \u001b$(Ds[\u001b(B \u001b$(Ds\\\u001b(B \u001b$(Ds]\u001b(B \u001b$(Ds^\u001b(B \u001b$(Ds_\u001b(B\n\u001b$(Ds`\u001b(B \u001b$(Dsa\u001b(B \u001b$(Dsb\u001b(B \u001b$(Dsc\u001b(B \u001b$(Dsd\u001b(B \u001b$(Dse\u001b(B \u001b$(Dsf\u001b(B \u001b$(Dsg\u001b(B \u001b$(Dsh\u001b(B \u001b$(Dsi\u001b(B \u001b$(Dsj\u001b(B \u001b$(Dsk\u001b(B \u001b$(Dsl\u001b(B \u001b$(Dsm\u001b(B \u001b$(Dsn\u001b(B \u001b$(Dso\u001b(B\n\u001b$(Dsp\u001b(B \u001b$(Dsq\u001b(B \u001b$(Dsr\u001b(B \u001b$(Dss\u001b(B \u001b$(Dst\u001b(B \u001b$(Dsu\u001b(B \u001b$(Dsv\u001b(B \u001b$(Dsw\u001b(B \u001b$(Dsx\u001b(B \u001b$(Dsy\u001b(B \u001b$(Dsz\u001b(B \u001b$(Ds{\u001b(B \u001b$(Ds|\u001b(B \u001b$(Ds}\u001b(B \u001b$(Ds~\u001b(B\n  \u001b$(Dt!\u001b(B \u001b$(Dt\"\u001b(B   \u001b$(Dt$\u001b(B \u001b$(Dt%\u001b(B \u001b$(Dt&\u001b(B \u001b$(Dt'\u001b(B \u001b$(Dt(\u001b(B \u001b$(Dt)\u001b(B \u001b$(Dt*\u001b(B \u001b$(Dt+\u001b(B \u001b$(Dt,\u001b(B\n      \u001b$(Dtc\u001b(B\n  \u001b$(Du!\u001b(B \u001b$(Du\"\u001b(B \u001b$(Du#\u001b(B \u001b$(Du$\u001b(B \u001b$(Du%\u001b(B \u001b$(Du&\u001b(B \u001b$(Du'\u001b(B \u001b$(Du(\u001b(B \u001b$(Du)\u001b(B \u001b$(Du*\u001b(B \u001b$(Du+\u001b(B \u001b$(Du,\u001b(B \u001b$(Du-\u001b(B \u001b$(Du.\u001b(B \u001b$(Du/\u001b(B\n\u001b$(Du0\u001b(B \u001b$(Du1\u001b(B \u001b$(Du2\u001b(B \u001b$(Du3\u001b(B \u001b$(Du4\u001b(B \u001b$(Du5\u001b(B \u001b$(Du6\u001b(B \u001b$(Du7\u001b(B \u001b$(Du8\u001b(B \u001b$(Du9\u001b(B \u001b$(Du:\u001b(B \u001b$(Du;\u001b(B \u001b$(Du<\u001b(B \u001b$(Du=\u001b(B \u001b$(Du>\u001b(B \u001b$(Du?\u001b(B\n\u001b$(Du@\u001b(B \u001b$(DuA\u001b(B \u001b$(DuB\u001b(B \u001b$(DuC\u001b(B \u001b$(DuD\u001b(B \u001b$(DuE\u001b(B \u001b$(DuF\u001b(B \u001b$(DuG\u001b(B \u001b$(DuH\u001b(B \u001b$(DuI\u001b(B \u001b$(DuJ\u001b(B \u001b$(DuK\u001b(B \u001b$(DuL\u001b(B \u001b$(DuM\u001b(B \u001b$(DuN\u001b(B \u001b$(DuO\u001b(B\n\u001b$(DuP\u001b(B \u001b$(DuQ\u001b(B \u001b$(DuR\u001b(B \u001b$(DuS\u001b(B \u001b$(DuT\u001b(B \u001b$(DuU\u001b(B \u001b$(DuV\u001b(B \u001b$(DuW\u001b(B \u001b$(DuX\u001b(B \u001b$(DuY\u001b(B \u001b$(DuZ\u001b(B \u001b$(Du[\u001b(B \u001b$(Du\\\u001b(B \u001b$(Du]\u001b(B \u001b$(Du^\u001b(B \u001b$(Du_\u001b(B\n\u001b$(Du`\u001b(B \u001b$(Dua\u001b(B \u001b$(Dub\u001b(B \u001b$(Duc\u001b(B \u001b$(Dud\u001b(B \u001b$(Due\u001b(B \u001b$(Duf\u001b(B \u001b$(Dug\u001b(B \u001b$(Duh\u001b(B \u001b$(Dui\u001b(B \u001b$(Duj\u001b(B \u001b$(Duk\u001b(B \u001b$(Dul\u001b(B \u001b$(Dum\u001b(B \u001b$(Dun\u001b(B \u001b$(Duo\u001b(B\n\u001b$(Dup\u001b(B \u001b$(Duq\u001b(B \u001b$(Dur\u001b(B \u001b$(Dus\u001b(B \u001b$(Dut\u001b(B \u001b$(Duu\u001b(B \u001b$(Duv\u001b(B \u001b$(Duw\u001b(B \u001b$(Dux\u001b(B \u001b$(Duy\u001b(B \u001b$(Duz\u001b(B \u001b$(Du{\u001b(B \u001b$(Du|\u001b(B \u001b$(Du}\u001b(B \u001b$(Du~\u001b(B\n  \u001b$(Dv!\u001b(B \u001b$(Dv\"\u001b(B \u001b$(Dv#\u001b(B \u001b$(Dv$\u001b(B \u001b$(Dv%\u001b(B \u001b$(Dv&\u001b(B \u001b$(Dv'\u001b(B \u001b$(Dv(\u001b(B \u001b$(Dv)\u001b(B \u001b$(Dv*\u001b(B \u001b$(Dv+\u001b(B \u001b$(Dv,\u001b(B \u001b$(Dv-\u001b(B \u001b$(Dv.\u001b(B \u001b$(Dv/\u001b(B\n\u001b$(Dv0\u001b(B \u001b$(Dv1\u001b(B \u001b$(Dv2\u001b(B \u001b$(Dv3\u001b(B \u001b$(Dv4\u001b(B \u001b$(Dv5\u001b(B \u001b$(Dv6\u001b(B \u001b$(Dv7\u001b(B \u001b$(Dv8\u001b(B \u001b$(Dv9\u001b(B \u001b$(Dv:\u001b(B \u001b$(Dv;\u001b(B \u001b$(Dv<\u001b(B \u001b$(Dv=\u001b(B \u001b$(Dv>\u001b(B \u001b$(Dv?\u001b(B\n\u001b$(Dv@\u001b(B \u001b$(DvA\u001b(B \u001b$(DvB\u001b(B \u001b$(DvC\u001b(B \u001b$(DvD\u001b(B \u001b$(DvE\u001b(B \u001b$(DvF\u001b(B \u001b$(DvG\u001b(B \u001b$(DvH\u001b(B \u001b$(DvI\u001b(B \u001b$(DvJ\u001b(B \u001b$(DvK\u001b(B \u001b$(DvL\u001b(B \u001b$(DvM\u001b(B \u001b$(DvN\u001b(B \u001b$(DvO\u001b(B\n\u001b$(DvP\u001b(B \u001b$(DvQ\u001b(B \u001b$(DvR\u001b(B \u001b$(DvS\u001b(B \u001b$(DvT\u001b(B \u001b$(DvU\u001b(B \u001b$(DvV\u001b(B \u001b$(DvW\u001b(B \u001b$(DvX\u001b(B \u001b$(DvY\u001b(B \u001b$(DvZ\u001b(B \u001b$(Dv[\u001b(B \u001b$(Dv\\\u001b(B \u001b$(Dv]\u001b(B \u001b$(Dv^\u001b(B \u001b$(Dv_\u001b(B\n\u001b$(Dv`\u001b(B \u001b$(Dva\u001b(B \u001b$(Dvb\u001b(B \u001b$(Dvc\u001b(B \u001b$(Dvd\u001b(B \u001b$(Dve\u001b(B \u001b$(Dvf\u001b(B \u001b$(Dvg\u001b(B \u001b$(Dvh\u001b(B \u001b$(Dvi\u001b(B \u001b$(Dvj\u001b(B \u001b$(Dvk\u001b(B \u001b$(Dvl\u001b(B \u001b$(Dvm\u001b(B \u001b$(Dvn\u001b(B \u001b$(Dvo\u001b(B\n\u001b$(Dvp\u001b(B \u001b$(Dvq\u001b(B \u001b$(Dvr\u001b(B \u001b$(Dvs\u001b(B \u001b$(Dvt\u001b(B \u001b$(Dvu\u001b(B \u001b$(Dvv\u001b(B \u001b$(Dvw\u001b(B \u001b$(Dvx\u001b(B \u001b$(Dvy\u001b(B \u001b$(Dvz\u001b(B \u001b$(Dv{\u001b(B \u001b$(Dv|\u001b(B \u001b$(Dv}\u001b(B \u001b$(Dv~\u001b(B\n  \u001b$(Dw!\u001b(B \u001b$(Dw\"\u001b(B \u001b$(Dw#\u001b(B \u001b$(Dw$\u001b(B \u001b$(Dw%\u001b(B \u001b$(Dw&\u001b(B \u001b$(Dw'\u001b(B \u001b$(Dw(\u001b(B \u001b$(Dw)\u001b(B \u001b$(Dw*\u001b(B \u001b$(Dw+\u001b(B \u001b$(Dw,\u001b(B \u001b$(Dw-\u001b(B \u001b$(Dw.\u001b(B \u001b$(Dw/\u001b(B\n\u001b$(Dw0\u001b(B \u001b$(Dw1\u001b(B \u001b$(Dw2\u001b(B \u001b$(Dw3\u001b(B \u001b$(Dw4\u001b(B \u001b$(Dw5\u001b(B \u001b$(Dw6\u001b(B \u001b$(Dw7\u001b(B \u001b$(Dw8\u001b(B \u001b$(Dw9\u001b(B \u001b$(Dw:\u001b(B \u001b$(Dw;\u001b(B \u001b$(Dw<\u001b(B \u001b$(Dw=\u001b(B \u001b$(Dw>\u001b(B \u001b$(Dw?\u001b(B\n\u001b$(Dw@\u001b(B \u001b$(DwA\u001b(B \u001b$(DwB\u001b(B \u001b$(DwC\u001b(B \u001b$(DwD\u001b(B \u001b$(DwE\u001b(B \u001b$(DwF\u001b(B \u001b$(DwG\u001b(B \u001b$(DwH\u001b(B \u001b$(DwI\u001b(B \u001b$(DwJ\u001b(B \u001b$(DwK\u001b(B \u001b$(DwL\u001b(B \u001b$(DwM\u001b(B \u001b$(DwN\u001b(B \u001b$(DwO\u001b(B\n\u001b$(DwP\u001b(B \u001b$(DwQ\u001b(B \u001b$(DwR\u001b(B \u001b$(DwS\u001b(B \u001b$(DwT\u001b(B \u001b$(DwU\u001b(B \u001b$(DwV\u001b(B \u001b$(DwW\u001b(B \u001b$(DwX\u001b(B \u001b$(DwY\u001b(B \u001b$(DwZ\u001b(B \u001b$(Dw[\u001b(B \u001b$(Dw\\\u001b(B \u001b$(Dw]\u001b(B \u001b$(Dw^\u001b(B \u001b$(Dw_\u001b(B\n\u001b$(Dw`\u001b(B \u001b$(Dwa\u001b(B \u001b$(Dwb\u001b(B \u001b$(Dwc\u001b(B \u001b$(Dwd\u001b(B \u001b$(Dwe\u001b(B \u001b$(Dwf\u001b(B \u001b$(Dwg\u001b(B \u001b$(Dwh\u001b(B \u001b$(Dwi\u001b(B \u001b$(Dwj\u001b(B \u001b$(Dwk\u001b(B \u001b$(Dwl\u001b(B \u001b$(Dwm\u001b(B \u001b$(Dwn\u001b(B \u001b$(Dwo\u001b(B\n\u001b$(Dwp\u001b(B \u001b$(Dwq\u001b(B \u001b$(Dwr\u001b(B \u001b$(Dws\u001b(B \u001b$(Dwt\u001b(B \u001b$(Dwu\u001b(B \u001b$(Dwv\u001b(B \u001b$(Dww\u001b(B \u001b$(Dwx\u001b(B \u001b$(Dwy\u001b(B \u001b$(Dwz\u001b(B \u001b$(Dw{\u001b(B \u001b$(Dw|\u001b(B \u001b$(Dw}\u001b(B \u001b$(Dw~\u001b(B\n  \u001b$(Dx!\u001b(B \u001b$(Dx\"\u001b(B \u001b$(Dx#\u001b(B \u001b$(Dx$\u001b(B \u001b$(Dx%\u001b(B \u001b$(Dx&\u001b(B \u001b$(Dx'\u001b(B \u001b$(Dx(\u001b(B \u001b$(Dx)\u001b(B \u001b$(Dx*\u001b(B \u001b$(Dx+\u001b(B \u001b$(Dx,\u001b(B \u001b$(Dx-\u001b(B \u001b$(Dx.\u001b(B \u001b$(Dx/\u001b(B\n\u001b$(Dx0\u001b(B \u001b$(Dx1\u001b(B \u001b$(Dx2\u001b(B \u001b$(Dx3\u001b(B \u001b$(Dx4\u001b(B \u001b$(Dx5\u001b(B \u001b$(Dx6\u001b(B \u001b$(Dx7\u001b(B \u001b$(Dx8\u001b(B \u001b$(Dx9\u001b(B \u001b$(Dx:\u001b(B \u001b$(Dx;\u001b(B \u001b$(Dx<\u001b(B \u001b$(Dx=\u001b(B \u001b$(Dx>\u001b(B \u001b$(Dx?\u001b(B\n\u001b$(Dx@\u001b(B \u001b$(DxA\u001b(B \u001b$(DxB\u001b(B \u001b$(DxC\u001b(B \u001b$(DxD\u001b(B \u001b$(DxE\u001b(B \u001b$(DxF\u001b(B \u001b$(DxG\u001b(B \u001b$(DxH\u001b(B \u001b$(DxI\u001b(B \u001b$(DxJ\u001b(B \u001b$(DxK\u001b(B \u001b$(DxL\u001b(B \u001b$(DxM\u001b(B \u001b$(DxN\u001b(B \u001b$(DxO\u001b(B\n\u001b$(DxP\u001b(B \u001b$(DxQ\u001b(B \u001b$(DxR\u001b(B \u001b$(DxS\u001b(B \u001b$(DxT\u001b(B \u001b$(DxU\u001b(B \u001b$(DxV\u001b(B \u001b$(DxW\u001b(B \u001b$(DxX\u001b(B \u001b$(DxY\u001b(B \u001b$(DxZ\u001b(B \u001b$(Dx[\u001b(B \u001b$(Dx\\\u001b(B \u001b$(Dx]\u001b(B \u001b$(Dx^\u001b(B \u001b$(Dx_\u001b(B\n\u001b$(Dx`\u001b(B \u001b$(Dxa\u001b(B \u001b$(Dxb\u001b(B \u001b$(Dxc\u001b(B \u001b$(Dxd\u001b(B \u001b$(Dxe\u001b(B \u001b$(Dxf\u001b(B \u001b$(Dxg\u001b(B \u001b$(Dxh\u001b(B \u001b$(Dxi\u001b(B \u001b$(Dxj\u001b(B \u001b$(Dxk\u001b(B \u001b$(Dxl\u001b(B \u001b$(Dxm\u001b(B \u001b$(Dxn\u001b(B \u001b$(Dxo\u001b(B\n\u001b$(Dxp\u001b(B \u001b$(Dxq\u001b(B \u001b$(Dxr\u001b(B \u001b$(Dxs\u001b(B \u001b$(Dxt\u001b(B \u001b$(Dxu\u001b(B \u001b$(Dxv\u001b(B \u001b$(Dxw\u001b(B \u001b$(Dxx\u001b(B \u001b$(Dxy\u001b(B \u001b$(Dxz\u001b(B \u001b$(Dx{\u001b(B \u001b$(Dx|\u001b(B \u001b$(Dx}\u001b(B \u001b$(Dx~\u001b(B\n  \u001b$(Dy!\u001b(B \u001b$(Dy\"\u001b(B \u001b$(Dy#\u001b(B \u001b$(Dy$\u001b(B \u001b$(Dy%\u001b(B \u001b$(Dy&\u001b(B \u001b$(Dy'\u001b(B \u001b$(Dy(\u001b(B \u001b$(Dy)\u001b(B \u001b$(Dy*\u001b(B \u001b$(Dy+\u001b(B \u001b$(Dy,\u001b(B \u001b$(Dy-\u001b(B \u001b$(Dy.\u001b(B \u001b$(Dy/\u001b(B\n\u001b$(Dy0\u001b(B \u001b$(Dy1\u001b(B \u001b$(Dy2\u001b(B \u001b$(Dy3\u001b(B \u001b$(Dy4\u001b(B \u001b$(Dy5\u001b(B \u001b$(Dy6\u001b(B \u001b$(Dy7\u001b(B \u001b$(Dy8\u001b(B \u001b$(Dy9\u001b(B \u001b$(Dy:\u001b(B \u001b$(Dy;\u001b(B \u001b$(Dy<\u001b(B \u001b$(Dy=\u001b(B \u001b$(Dy>\u001b(B \u001b$(Dy?\u001b(B\n\u001b$(Dy@\u001b(B \u001b$(DyA\u001b(B \u001b$(DyB\u001b(B \u001b$(DyC\u001b(B \u001b$(DyD\u001b(B \u001b$(DyE\u001b(B \u001b$(DyF\u001b(B \u001b$(DyG\u001b(B \u001b$(DyH\u001b(B \u001b$(DyI\u001b(B \u001b$(DyJ\u001b(B \u001b$(DyK\u001b(B \u001b$(DyL\u001b(B \u001b$(DyM\u001b(B \u001b$(DyN\u001b(B \u001b$(DyO\u001b(B\n\u001b$(DyP\u001b(B \u001b$(DyQ\u001b(B \u001b$(DyR\u001b(B \u001b$(DyS\u001b(B \u001b$(DyT\u001b(B \u001b$(DyU\u001b(B \u001b$(DyV\u001b(B \u001b$(DyW\u001b(B \u001b$(DyX\u001b(B \u001b$(DyY\u001b(B \u001b$(DyZ\u001b(B \u001b$(Dy[\u001b(B \u001b$(Dy\\\u001b(B \u001b$(Dy]\u001b(B \u001b$(Dy^\u001b(B \u001b$(Dy_\u001b(B\n\u001b$(Dy`\u001b(B \u001b$(Dya\u001b(B \u001b$(Dyb\u001b(B \u001b$(Dyc\u001b(B \u001b$(Dyd\u001b(B \u001b$(Dye\u001b(B \u001b$(Dyf\u001b(B \u001b$(Dyg\u001b(B \u001b$(Dyh\u001b(B \u001b$(Dyi\u001b(B \u001b$(Dyj\u001b(B \u001b$(Dyk\u001b(B \u001b$(Dyl\u001b(B \u001b$(Dym\u001b(B \u001b$(Dyn\u001b(B \u001b$(Dyo\u001b(B\n\u001b$(Dyp\u001b(B \u001b$(Dyq\u001b(B \u001b$(Dyr\u001b(B \u001b$(Dys\u001b(B \u001b$(Dyt\u001b(B \u001b$(Dyu\u001b(B \u001b$(Dyv\u001b(B \u001b$(Dyw\u001b(B \u001b$(Dyx\u001b(B \u001b$(Dyy\u001b(B \u001b$(Dyz\u001b(B \u001b$(Dy{\u001b(B \u001b$(Dy|\u001b(B \u001b$(Dy}\u001b(B \u001b$(Dy~\u001b(B\n  \u001b$(Dz!\u001b(B \u001b$(Dz\"\u001b(B \u001b$(Dz#\u001b(B \u001b$(Dz$\u001b(B \u001b$(Dz%\u001b(B \u001b$(Dz&\u001b(B \u001b$(Dz'\u001b(B \u001b$(Dz(\u001b(B \u001b$(Dz)\u001b(B \u001b$(Dz*\u001b(B \u001b$(Dz+\u001b(B \u001b$(Dz,\u001b(B \u001b$(Dz-\u001b(B \u001b$(Dz.\u001b(B \u001b$(Dz/\u001b(B\n\u001b$(Dz0\u001b(B \u001b$(Dz1\u001b(B \u001b$(Dz2\u001b(B \u001b$(Dz3\u001b(B \u001b$(Dz4\u001b(B \u001b$(Dz5\u001b(B \u001b$(Dz6\u001b(B \u001b$(Dz7\u001b(B \u001b$(Dz8\u001b(B \u001b$(Dz9\u001b(B \u001b$(Dz:\u001b(B \u001b$(Dz;\u001b(B \u001b$(Dz<\u001b(B \u001b$(Dz=\u001b(B \u001b$(Dz>\u001b(B \u001b$(Dz?\u001b(B\n\u001b$(Dz@\u001b(B \u001b$(DzA\u001b(B \u001b$(DzB\u001b(B \u001b$(DzC\u001b(B \u001b$(DzD\u001b(B \u001b$(DzE\u001b(B \u001b$(DzF\u001b(B \u001b$(DzG\u001b(B \u001b$(DzH\u001b(B \u001b$(DzI\u001b(B \u001b$(DzJ\u001b(B \u001b$(DzK\u001b(B \u001b$(DzL\u001b(B \u001b$(DzM\u001b(B \u001b$(DzN\u001b(B \u001b$(DzO\u001b(B\n\u001b$(DzP\u001b(B \u001b$(DzQ\u001b(B \u001b$(DzR\u001b(B \u001b$(DzS\u001b(B \u001b$(DzT\u001b(B \u001b$(DzU\u001b(B \u001b$(DzV\u001b(B \u001b$(DzW\u001b(B \u001b$(DzX\u001b(B \u001b$(DzY\u001b(B \u001b$(DzZ\u001b(B \u001b$(Dz[\u001b(B \u001b$(Dz\\\u001b(B \u001b$(Dz]\u001b(B \u001b$(Dz^\u001b(B \u001b$(Dz_\u001b(B\n\u001b$(Dz`\u001b(B \u001b$(Dza\u001b(B \u001b$(Dzb\u001b(B \u001b$(Dzc\u001b(B \u001b$(Dzd\u001b(B \u001b$(Dze\u001b(B \u001b$(Dzf\u001b(B \u001b$(Dzg\u001b(B \u001b$(Dzh\u001b(B \u001b$(Dzi\u001b(B \u001b$(Dzj\u001b(B \u001b$(Dzk\u001b(B \u001b$(Dzl\u001b(B \u001b$(Dzm\u001b(B \u001b$(Dzn\u001b(B \u001b$(Dzo\u001b(B\n\u001b$(Dzp\u001b(B \u001b$(Dzq\u001b(B \u001b$(Dzr\u001b(B \u001b$(Dzs\u001b(B \u001b$(Dzt\u001b(B \u001b$(Dzu\u001b(B \u001b$(Dzv\u001b(B \u001b$(Dzw\u001b(B \u001b$(Dzx\u001b(B \u001b$(Dzy\u001b(B \u001b$(Dzz\u001b(B \u001b$(Dz{\u001b(B \u001b$(Dz|\u001b(B \u001b$(Dz}\u001b(B \u001b$(Dz~\u001b(B\n  \u001b$(D{!\u001b(B \u001b$(D{\"\u001b(B \u001b$(D{#\u001b(B \u001b$(D{$\u001b(B \u001b$(D{%\u001b(B \u001b$(D{&\u001b(B \u001b$(D{'\u001b(B \u001b$(D{(\u001b(B \u001b$(D{)\u001b(B \u001b$(D{*\u001b(B \u001b$(D{+\u001b(B \u001b$(D{,\u001b(B \u001b$(D{-\u001b(B \u001b$(D{.\u001b(B \u001b$(D{/\u001b(B\n\u001b$(D{0\u001b(B \u001b$(D{1\u001b(B \u001b$(D{2\u001b(B \u001b$(D{3\u001b(B \u001b$(D{4\u001b(B \u001b$(D{5\u001b(B \u001b$(D{6\u001b(B \u001b$(D{7\u001b(B \u001b$(D{8\u001b(B \u001b$(D{9\u001b(B \u001b$(D{:\u001b(B \u001b$(D{;\u001b(B \u001b$(D{<\u001b(B \u001b$(D{=\u001b(B \u001b$(D{>\u001b(B \u001b$(D{?\u001b(B\n\u001b$(D{@\u001b(B \u001b$(D{A\u001b(B \u001b$(D{B\u001b(B \u001b$(D{C\u001b(B \u001b$(D{D\u001b(B \u001b$(D{E\u001b(B \u001b$(D{F\u001b(B \u001b$(D{G\u001b(B \u001b$(D{H\u001b(B \u001b$(D{I\u001b(B \u001b$(D{J\u001b(B \u001b$(D{K\u001b(B \u001b$(D{L\u001b(B \u001b$(D{M\u001b(B \u001b$(D{N\u001b(B \u001b$(D{O\u001b(B\n\u001b$(D{P\u001b(B \u001b$(D{Q\u001b(B \u001b$(D{R\u001b(B \u001b$(D{S\u001b(B \u001b$(D{T\u001b(B \u001b$(D{U\u001b(B \u001b$(D{V\u001b(B \u001b$(D{W\u001b(B \u001b$(D{X\u001b(B \u001b$(D{Y\u001b(B \u001b$(D{Z\u001b(B \u001b$(D{[\u001b(B \u001b$(D{\\\u001b(B \u001b$(D{]\u001b(B \u001b$(D{^\u001b(B \u001b$(D{_\u001b(B\n\u001b$(D{`\u001b(B \u001b$(D{a\u001b(B \u001b$(D{b\u001b(B \u001b$(D{c\u001b(B \u001b$(D{d\u001b(B \u001b$(D{e\u001b(B \u001b$(D{f\u001b(B \u001b$(D{g\u001b(B \u001b$(D{h\u001b(B \u001b$(D{i\u001b(B \u001b$(D{j\u001b(B \u001b$(D{k\u001b(B \u001b$(D{l\u001b(B \u001b$(D{m\u001b(B \u001b$(D{n\u001b(B \u001b$(D{o\u001b(B\n\u001b$(D{p\u001b(B \u001b$(D{q\u001b(B \u001b$(D{r\u001b(B \u001b$(D{s\u001b(B \u001b$(D{t\u001b(B \u001b$(D{u\u001b(B \u001b$(D{v\u001b(B \u001b$(D{w\u001b(B \u001b$(D{x\u001b(B \u001b$(D{y\u001b(B \u001b$(D{z\u001b(B \u001b$(D{{\u001b(B \u001b$(D{|\u001b(B \u001b$(D{}\u001b(B \u001b$(D{~\u001b(B\n  \u001b$(D|!\u001b(B \u001b$(D|\"\u001b(B \u001b$(D|#\u001b(B \u001b$(D|$\u001b(B \u001b$(D|%\u001b(B \u001b$(D|&\u001b(B \u001b$(D|'\u001b(B \u001b$(D|(\u001b(B \u001b$(D|)\u001b(B \u001b$(D|*\u001b(B \u001b$(D|+\u001b(B \u001b$(D|,\u001b(B \u001b$(D|-\u001b(B \u001b$(D|.\u001b(B \u001b$(D|/\u001b(B\n\u001b$(D|0\u001b(B \u001b$(D|1\u001b(B \u001b$(D|2\u001b(B \u001b$(D|3\u001b(B \u001b$(D|4\u001b(B \u001b$(D|5\u001b(B \u001b$(D|6\u001b(B \u001b$(D|7\u001b(B \u001b$(D|8\u001b(B \u001b$(D|9\u001b(B \u001b$(D|:\u001b(B \u001b$(D|;\u001b(B \u001b$(D|<\u001b(B \u001b$(D|=\u001b(B \u001b$(D|>\u001b(B \u001b$(D|?\u001b(B\n\u001b$(D|@\u001b(B \u001b$(D|A\u001b(B \u001b$(D|B\u001b(B \u001b$(D|C\u001b(B \u001b$(D|D\u001b(B \u001b$(D|E\u001b(B \u001b$(D|F\u001b(B \u001b$(D|G\u001b(B \u001b$(D|H\u001b(B \u001b$(D|I\u001b(B \u001b$(D|J\u001b(B \u001b$(D|K\u001b(B \u001b$(D|L\u001b(B \u001b$(D|M\u001b(B \u001b$(D|N\u001b(B \u001b$(D|O\u001b(B\n\u001b$(D|P\u001b(B \u001b$(D|Q\u001b(B \u001b$(D|R\u001b(B \u001b$(D|S\u001b(B \u001b$(D|T\u001b(B \u001b$(D|U\u001b(B \u001b$(D|V\u001b(B \u001b$(D|W\u001b(B \u001b$(D|X\u001b(B \u001b$(D|Y\u001b(B \u001b$(D|Z\u001b(B \u001b$(D|[\u001b(B \u001b$(D|\\\u001b(B \u001b$(D|]\u001b(B \u001b$(D|^\u001b(B \u001b$(D|_\u001b(B\n\u001b$(D|`\u001b(B \u001b$(D|a\u001b(B \u001b$(D|b\u001b(B \u001b$(D|c\u001b(B \u001b$(D|d\u001b(B \u001b$(D|e\u001b(B \u001b$(D|f\u001b(B \u001b$(D|g\u001b(B \u001b$(D|h\u001b(B \u001b$(D|i\u001b(B \u001b$(D|j\u001b(B \u001b$(D|k\u001b(B \u001b$(D|l\u001b(B \u001b$(D|m\u001b(B \u001b$(D|n\u001b(B \u001b$(D|o\u001b(B\n\u001b$(D|p\u001b(B \u001b$(D|q\u001b(B \u001b$(D|r\u001b(B \u001b$(D|s\u001b(B \u001b$(D|t\u001b(B \u001b$(D|u\u001b(B \u001b$(D|v\u001b(B \u001b$(D|w\u001b(B \u001b$(D|x\u001b(B \u001b$(D|y\u001b(B \u001b$(D|z\u001b(B \u001b$(D|{\u001b(B \u001b$(D||\u001b(B \u001b$(D|}\u001b(B \u001b$(D|~\u001b(B\n  \u001b$(D}!\u001b(B \u001b$(D}\"\u001b(B \u001b$(D}#\u001b(B \u001b$(D}$\u001b(B \u001b$(D}%\u001b(B \u001b$(D}&\u001b(B \u001b$(D}'\u001b(B \u001b$(D}(\u001b(B \u001b$(D})\u001b(B \u001b$(D}*\u001b(B \u001b$(D}+\u001b(B \u001b$(D},\u001b(B \u001b$(D}-\u001b(B \u001b$(D}.\u001b(B \u001b$(D}/\u001b(B\n\u001b$(D}0\u001b(B \u001b$(D}1\u001b(B \u001b$(D}2\u001b(B \u001b$(D}3\u001b(B \u001b$(D}4\u001b(B \u001b$(D}5\u001b(B \u001b$(D}6\u001b(B \u001b$(D}7\u001b(B \u001b$(D}8\u001b(B \u001b$(D}9\u001b(B \u001b$(D}:\u001b(B \u001b$(D};\u001b(B \u001b$(D}<\u001b(B \u001b$(D}=\u001b(B \u001b$(D}>\u001b(B \u001b$(D}?\u001b(B\n\u001b$(D}@\u001b(B \u001b$(D}A\u001b(B \u001b$(D}B\u001b(B \u001b$(D}C\u001b(B \u001b$(D}D\u001b(B \u001b$(D}E\u001b(B \u001b$(D}F\u001b(B \u001b$(D}G\u001b(B \u001b$(D}H\u001b(B \u001b$(D}I\u001b(B \u001b$(D}J\u001b(B \u001b$(D}K\u001b(B \u001b$(D}L\u001b(B \u001b$(D}M\u001b(B \u001b$(D}N\u001b(B \u001b$(D}O\u001b(B\n\u001b$(D}P\u001b(B \u001b$(D}Q\u001b(B \u001b$(D}R\u001b(B \u001b$(D}S\u001b(B \u001b$(D}T\u001b(B \u001b$(D}U\u001b(B \u001b$(D}V\u001b(B \u001b$(D}W\u001b(B \u001b$(D}X\u001b(B \u001b$(D}Y\u001b(B \u001b$(D}Z\u001b(B \u001b$(D}[\u001b(B \u001b$(D}\\\u001b(B \u001b$(D}]\u001b(B \u001b$(D}^\u001b(B \u001b$(D}_\u001b(B\n\u001b$(D}`\u001b(B \u001b$(D}a\u001b(B \u001b$(D}b\u001b(B \u001b$(D}c\u001b(B \u001b$(D}d\u001b(B \u001b$(D}e\u001b(B \u001b$(D}f\u001b(B \u001b$(D}g\u001b(B \u001b$(D}h\u001b(B \u001b$(D}i\u001b(B \u001b$(D}j\u001b(B \u001b$(D}k\u001b(B \u001b$(D}l\u001b(B \u001b$(D}m\u001b(B \u001b$(D}n\u001b(B \u001b$(D}o\u001b(B\n\u001b$(D}p\u001b(B \u001b$(D}q\u001b(B \u001b$(D}r\u001b(B \u001b$(D}s\u001b(B \u001b$(D}t\u001b(B \u001b$(D}u\u001b(B \u001b$(D}v\u001b(B \u001b$(D}w\u001b(B \u001b$(D}x\u001b(B \u001b$(D}y\u001b(B \u001b$(D}z\u001b(B \u001b$(D}{\u001b(B \u001b$(D}|\u001b(B \u001b$(D}}\u001b(B \u001b$(D}~\u001b(B\n  \u001b$(D~!\u001b(B \u001b$(D~\"\u001b(B \u001b$(D~#\u001b(B \u001b$(D~$\u001b(B \u001b$(D~%\u001b(B \u001b$(D~&\u001b(B \u001b$(D~'\u001b(B \u001b$(D~(\u001b(B \u001b$(D~)\u001b(B \u001b$(D~*\u001b(B \u001b$(D~+\u001b(B \u001b$(D~,\u001b(B \u001b$(D~-\u001b(B \u001b$(D~.\u001b(B \u001b$(D~/\u001b(B\n\u001b$(D~0\u001b(B \u001b$(D~1\u001b(B \u001b$(D~2\u001b(B \u001b$(D~3\u001b(B \u001b$(D~4\u001b(B \u001b$(D~5\u001b(B \u001b$(D~6\u001b(B \u001b$(D~7\u001b(B \u001b$(D~8\u001b(B \u001b$(D~9\u001b(B \u001b$(D~:\u001b(B \u001b$(D~;\u001b(B \u001b$(D~<\u001b(B \u001b$(D~=\u001b(B \u001b$(D~>\u001b(B \u001b$(D~?\u001b(B\n\u001b$(D~@\u001b(B \u001b$(D~A\u001b(B \u001b$(D~B\u001b(B \u001b$(D~C\u001b(B \u001b$(D~D\u001b(B \u001b$(D~E\u001b(B \u001b$(D~F\u001b(B \u001b$(D~G\u001b(B \u001b$(D~H\u001b(B \u001b$(D~I\u001b(B \u001b$(D~J\u001b(B \u001b$(D~K\u001b(B \u001b$(D~L\u001b(B \u001b$(D~M\u001b(B \u001b$(D~N\u001b(B \u001b$(D~O\u001b(B\n\u001b$(D~P\u001b(B \u001b$(D~Q\u001b(B \u001b$(D~R\u001b(B \u001b$(D~S\u001b(B \u001b$(D~T\u001b(B \u001b$(D~U\u001b(B \u001b$(D~V\u001b(B \u001b$(D~W\u001b(B \u001b$(D~X\u001b(B \u001b$(D~Y\u001b(B \u001b$(D~Z\u001b(B \u001b$(D~[\u001b(B \u001b$(D~\\\u001b(B \u001b$(D~]\u001b(B \u001b$(D~^\u001b(B \u001b$(D~_\u001b(B\n\u001b$(D~`\u001b(B \u001b$(D~a\u001b(B \u001b$(D~b\u001b(B \u001b$(D~c\u001b(B \u001b$(D~d\u001b(B \u001b$(D~e\u001b(B \u001b$(D~f\u001b(B \u001b$(D~g\u001b(B \u001b$(D~h\u001b(B \u001b$(D~i\u001b(B \u001b$(D~j\u001b(B \u001b$(D~k\u001b(B \u001b$(D~l\u001b(B \u001b$(D~m\u001b(B \u001b$(D~n\u001b(B \u001b$(D~o\u001b(B\n\u001b$(D~p\u001b(B \u001b$(D~q\u001b(B \u001b$(D~r\u001b(B \u001b$(D~s\u001b(B \u001b$(D~t\u001b(B \u001b$(D~u\u001b(B \u001b$(D~v\u001b(B \u001b$(D~w\u001b(B \u001b$(D~x\u001b(B \u001b$(D~y\u001b(B \u001b$(D~z\u001b(B \u001b$(D~{\u001b(B \u001b$(D~|\u001b(B \u001b$(D~}\u001b(B \u001b$(D~~\u001b(B\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-JP-MS-snippet.UTF-8",
    "content": "  ! \" # $ % & ' ( ) * + , - . /\n0 1 2 3 4 5 6 7 8 9 : ; < = > ?\n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n  ｡ ｢ ｣ ､ ･ ｦ ｧ ｨ ｩ ｪ ｫ ｬ ｭ ｮ ｯ\nｰ ｱ ｲ ｳ ｴ ｵ ｶ ｷ ｸ ｹ ｺ ｻ ｼ ｽ ｾ ｿ\nﾀ ﾁ ﾂ ﾃ ﾄ ﾅ ﾆ ﾇ ﾈ ﾉ ﾊ ﾋ ﾌ ﾍ ﾎ ﾏ\nﾐ ﾑ ﾒ ﾓ ﾔ ﾕ ﾖ ﾗ ﾘ ﾙ ﾚ ﾛ ﾜ ﾝ ﾞ ﾟ\n  　 、 。 ， ． ・ ： ； ？ ！ ゛ ゜ ´ ｀ ¨\n＾ ￣ ＿ ヽ ヾ ゝ ゞ 〃 仝 々 〆 〇 ー ― ‐ ／\n＼ 〜 ‖ ｜ … ‥ ‘ ’ “ ” （ ） 〔 〕 ［ ］\n｛ ｝ 〈 〉 《 》 「 」 『 』 【 】 ＋ − ± ×\n÷ ＝ ≠ ＜ ＞ ≦ ≧ ∞ ∴ ♂ ♀ ° ′ ″ ℃ ￥\n＄ ¢ £ ％ ＃ ＆ ＊ ＠ § ☆ ★ ○ ● ◎ ◇\n  ◆ □ ■ △ ▲ ▽ ▼ ※ 〒 → ← ↑ ↓ 〓\n                    ∈ ∋ ⊆ ⊇ ⊂ ⊃\n∪ ∩                 ∧ ∨ ¬ ⇒ ⇔ ∀\n∃                       ∠ ⊥ ⌒ ∂\n∇ ≡ ≒ ≪ ≫ √ ∽ ∝ ∵ ∫ ∬\n    Å ‰ ♯ ♭ ♪ † ‡ ¶         ◯\n０ １ ２ ３ ４ ５ ６ ７ ８ ９\n  Ａ Ｂ Ｃ Ｄ Ｅ Ｆ Ｇ Ｈ Ｉ Ｊ Ｋ Ｌ Ｍ Ｎ Ｏ\nＰ Ｑ Ｒ Ｓ Ｔ Ｕ Ｖ Ｗ Ｘ Ｙ Ｚ\n  ａ ｂ ｃ ｄ ｅ ｆ ｇ ｈ ｉ ｊ ｋ ｌ ｍ ｎ ｏ\nｐ ｑ ｒ ｓ ｔ ｕ ｖ ｗ ｘ ｙ ｚ\n  ぁ あ ぃ い ぅ う ぇ え ぉ お か が き ぎ く\nぐ け げ こ ご さ ざ し じ す ず せ ぜ そ ぞ た\nだ ち ぢ っ つ づ て で と ど な に ぬ ね の は\nば ぱ ひ び ぴ ふ ぶ ぷ へ べ ぺ ほ ぼ ぽ ま み\nむ め も ゃ や ゅ ゆ ょ よ ら り る れ ろ ゎ わ\nゐ ゑ を ん\n  ァ ア ィ イ ゥ ウ ェ エ ォ オ カ ガ キ ギ ク\nグ ケ ゲ コ ゴ サ ザ シ ジ ス ズ セ ゼ ソ ゾ タ\nダ チ ヂ ッ ツ ヅ テ デ ト ド ナ ニ ヌ ネ ノ ハ\nバ パ ヒ ビ ピ フ ブ プ ヘ ベ ペ ホ ボ ポ マ ミ\nム メ モ ャ ヤ ュ ユ ョ ヨ ラ リ ル レ ロ ヮ ワ\nヰ ヱ ヲ ン ヴ ヵ ヶ\n  Α Β Γ Δ Ε Ζ Η Θ Ι Κ Λ Μ Ν Ξ Ο\nΠ Ρ Σ Τ Υ Φ Χ Ψ Ω\n  α β γ δ ε ζ η θ ι κ λ μ ν ξ ο\nπ ρ σ τ υ φ χ ψ ω\n  А Б В Г Д Е Ё Ж З И Й К Л М Н\nО П Р С Т У Ф Х Ц Ч Ш Щ Ъ Ы Ь Э\nЮ Я\n  а б в г д е ё ж з и й к л м н\nо п р с т у ф х ц ч ш щ ъ ы ь э\nю я\n  ─ │ ┌ ┐ ┘ └ ├ ┬ ┤ ┴ ┼ ━ ┃ ┏ ┓\n┛ ┗ ┣ ┳ ┫ ┻ ╋ ┠ ┯ ┨ ┷ ┿ ┝ ┰ ┥ ┸\n╂\n  ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩ ⑪ ⑫ ⑬ ⑭ ⑮\n⑯ ⑰ ⑱ ⑲ ⑳ Ⅰ Ⅱ Ⅲ Ⅳ Ⅴ Ⅵ Ⅶ Ⅷ Ⅸ Ⅹ\n㍉ ㌔ ㌢ ㍍ ㌘ ㌧ ㌃ ㌶ ㍑ ㍗ ㌍ ㌦ ㌣ ㌫ ㍊ ㌻\n㎜ ㎝ ㎞ ㎎ ㎏ ㏄ ㎡                 ㍻\n〞 〟 № ㏍ ℡ ㊤ ㊥ ㊦ ㊧ ㊨ ㈱ ㈲ ㈹ ㍾ ㍽ ㍼\n      ∮ ∑       ∟ ⊿\n  亜 唖 娃 阿 哀 愛 挨 姶 逢 葵 茜 穐 悪 握 渥\n旭 葦 芦 鯵 梓 圧 斡 扱 宛 姐 虻 飴 絢 綾 鮎 或\n粟 袷 安 庵 按 暗 案 闇 鞍 杏 以 伊 位 依 偉 囲\n夷 委 威 尉 惟 意 慰 易 椅 為 畏 異 移 維 緯 胃\n萎 衣 謂 違 遺 医 井 亥 域 育 郁 磯 一 壱 溢 逸\n稲 茨 芋 鰯 允 印 咽 員 因 姻 引 飲 淫 胤 蔭\n  院 陰 隠 韻 吋 右 宇 烏 羽 迂 雨 卯 鵜 窺 丑\n碓 臼 渦 嘘 唄 欝 蔚 鰻 姥 厩 浦 瓜 閏 噂 云 運\n雲 荏 餌 叡 営 嬰 影 映 曳 栄 永 泳 洩 瑛 盈 穎\n頴 英 衛 詠 鋭 液 疫 益 駅 悦 謁 越 閲 榎 厭 円\n園 堰 奄 宴 延 怨 掩 援 沿 演 炎 焔 煙 燕 猿 縁\n艶 苑 薗 遠 鉛 鴛 塩 於 汚 甥 凹 央 奥 往 応\n  押 旺 横 欧 殴 王 翁 襖 鴬 鴎 黄 岡 沖 荻 億\n屋 憶 臆 桶 牡 乙 俺 卸 恩 温 穏 音 下 化 仮 何\n伽 価 佳 加 可 嘉 夏 嫁 家 寡 科 暇 果 架 歌 河\n火 珂 禍 禾 稼 箇 花 苛 茄 荷 華 菓 蝦 課 嘩 貨\n迦 過 霞 蚊 俄 峨 我 牙 画 臥 芽 蛾 賀 雅 餓 駕\n介 会 解 回 塊 壊 廻 快 怪 悔 恢 懐 戒 拐 改\n  魁 晦 械 海 灰 界 皆 絵 芥 蟹 開 階 貝 凱 劾\n外 咳 害 崖 慨 概 涯 碍 蓋 街 該 鎧 骸 浬 馨 蛙\n垣 柿 蛎 鈎 劃 嚇 各 廓 拡 撹 格 核 殻 獲 確 穫\n覚 角 赫 較 郭 閣 隔 革 学 岳 楽 額 顎 掛 笠 樫\n橿 梶 鰍 潟 割 喝 恰 括 活 渇 滑 葛 褐 轄 且 鰹\n叶 椛 樺 鞄 株 兜 竃 蒲 釜 鎌 噛 鴨 栢 茅 萱\n  粥 刈 苅 瓦 乾 侃 冠 寒 刊 勘 勧 巻 喚 堪 姦\n完 官 寛 干 幹 患 感 慣 憾 換 敢 柑 桓 棺 款 歓\n汗 漢 澗 潅 環 甘 監 看 竿 管 簡 緩 缶 翰 肝 艦\n莞 観 諌 貫 還 鑑 間 閑 関 陥 韓 館 舘 丸 含 岸\n巌 玩 癌 眼 岩 翫 贋 雁 頑 顔 願 企 伎 危 喜 器\n基 奇 嬉 寄 岐 希 幾 忌 揮 机 旗 既 期 棋 棄\n  機 帰 毅 気 汽 畿 祈 季 稀 紀 徽 規 記 貴 起\n軌 輝 飢 騎 鬼 亀 偽 儀 妓 宜 戯 技 擬 欺 犠 疑\n祇 義 蟻 誼 議 掬 菊 鞠 吉 吃 喫 桔 橘 詰 砧 杵\n黍 却 客 脚 虐 逆 丘 久 仇 休 及 吸 宮 弓 急 救\n朽 求 汲 泣 灸 球 究 窮 笈 級 糾 給 旧 牛 去 居\n巨 拒 拠 挙 渠 虚 許 距 鋸 漁 禦 魚 亨 享 京\n  供 侠 僑 兇 競 共 凶 協 匡 卿 叫 喬 境 峡 強\n彊 怯 恐 恭 挟 教 橋 況 狂 狭 矯 胸 脅 興 蕎 郷\n鏡 響 饗 驚 仰 凝 尭 暁 業 局 曲 極 玉 桐 粁 僅\n勤 均 巾 錦 斤 欣 欽 琴 禁 禽 筋 緊 芹 菌 衿 襟\n謹 近 金 吟 銀 九 倶 句 区 狗 玖 矩 苦 躯 駆 駈\n駒 具 愚 虞 喰 空 偶 寓 遇 隅 串 櫛 釧 屑 屈\n  掘 窟 沓 靴 轡 窪 熊 隈 粂 栗 繰 桑 鍬 勲 君\n薫 訓 群 軍 郡 卦 袈 祁 係 傾 刑 兄 啓 圭 珪 型\n契 形 径 恵 慶 慧 憩 掲 携 敬 景 桂 渓 畦 稽 系\n経 継 繋 罫 茎 荊 蛍 計 詣 警 軽 頚 鶏 芸 迎 鯨\n劇 戟 撃 激 隙 桁 傑 欠 決 潔 穴 結 血 訣 月 件\n倹 倦 健 兼 券 剣 喧 圏 堅 嫌 建 憲 懸 拳 捲\n  検 権 牽 犬 献 研 硯 絹 県 肩 見 謙 賢 軒 遣\n鍵 険 顕 験 鹸 元 原 厳 幻 弦 減 源 玄 現 絃 舷\n言 諺 限 乎 個 古 呼 固 姑 孤 己 庫 弧 戸 故 枯\n湖 狐 糊 袴 股 胡 菰 虎 誇 跨 鈷 雇 顧 鼓 五 互\n伍 午 呉 吾 娯 後 御 悟 梧 檎 瑚 碁 語 誤 護 醐\n乞 鯉 交 佼 侯 候 倖 光 公 功 効 勾 厚 口 向\n  后 喉 坑 垢 好 孔 孝 宏 工 巧 巷 幸 広 庚 康\n弘 恒 慌 抗 拘 控 攻 昂 晃 更 杭 校 梗 構 江 洪\n浩 港 溝 甲 皇 硬 稿 糠 紅 紘 絞 綱 耕 考 肯 肱\n腔 膏 航 荒 行 衡 講 貢 購 郊 酵 鉱 砿 鋼 閤 降\n項 香 高 鴻 剛 劫 号 合 壕 拷 濠 豪 轟 麹 克 刻\n告 国 穀 酷 鵠 黒 獄 漉 腰 甑 忽 惚 骨 狛 込\n  此 頃 今 困 坤 墾 婚 恨 懇 昏 昆 根 梱 混 痕\n紺 艮 魂 些 佐 叉 唆 嵯 左 差 査 沙 瑳 砂 詐 鎖\n裟 坐 座 挫 債 催 再 最 哉 塞 妻 宰 彩 才 採 栽\n歳 済 災 采 犀 砕 砦 祭 斎 細 菜 裁 載 際 剤 在\n材 罪 財 冴 坂 阪 堺 榊 肴 咲 崎 埼 碕 鷺 作 削\n咋 搾 昨 朔 柵 窄 策 索 錯 桜 鮭 笹 匙 冊 刷\n  察 拶 撮 擦 札 殺 薩 雑 皐 鯖 捌 錆 鮫 皿 晒\n三 傘 参 山 惨 撒 散 桟 燦 珊 産 算 纂 蚕 讃 賛\n酸 餐 斬 暫 残 仕 仔 伺 使 刺 司 史 嗣 四 士 始\n姉 姿 子 屍 市 師 志 思 指 支 孜 斯 施 旨 枝 止\n死 氏 獅 祉 私 糸 紙 紫 肢 脂 至 視 詞 詩 試 誌\n諮 資 賜 雌 飼 歯 事 似 侍 児 字 寺 慈 持 時\n  次 滋 治 爾 璽 痔 磁 示 而 耳 自 蒔 辞 汐 鹿\n式 識 鴫 竺 軸 宍 雫 七 叱 執 失 嫉 室 悉 湿 漆\n疾 質 実 蔀 篠 偲 柴 芝 屡 蕊 縞 舎 写 射 捨 赦\n斜 煮 社 紗 者 謝 車 遮 蛇 邪 借 勺 尺 杓 灼 爵\n酌 釈 錫 若 寂 弱 惹 主 取 守 手 朱 殊 狩 珠 種\n腫 趣 酒 首 儒 受 呪 寿 授 樹 綬 需 囚 収 周\n  宗 就 州 修 愁 拾 洲 秀 秋 終 繍 習 臭 舟 蒐\n衆 襲 讐 蹴 輯 週 酋 酬 集 醜 什 住 充 十 従 戎\n柔 汁 渋 獣 縦 重 銃 叔 夙 宿 淑 祝 縮 粛 塾 熟\n出 術 述 俊 峻 春 瞬 竣 舜 駿 准 循 旬 楯 殉 淳\n準 潤 盾 純 巡 遵 醇 順 処 初 所 暑 曙 渚 庶 緒\n署 書 薯 藷 諸 助 叙 女 序 徐 恕 鋤 除 傷 償\n  勝 匠 升 召 哨 商 唱 嘗 奨 妾 娼 宵 将 小 少\n尚 庄 床 廠 彰 承 抄 招 掌 捷 昇 昌 昭 晶 松 梢\n樟 樵 沼 消 渉 湘 焼 焦 照 症 省 硝 礁 祥 称 章\n笑 粧 紹 肖 菖 蒋 蕉 衝 裳 訟 証 詔 詳 象 賞 醤\n鉦 鍾 鐘 障 鞘 上 丈 丞 乗 冗 剰 城 場 壌 嬢 常\n情 擾 条 杖 浄 状 畳 穣 蒸 譲 醸 錠 嘱 埴 飾\n  拭 植 殖 燭 織 職 色 触 食 蝕 辱 尻 伸 信 侵\n唇 娠 寝 審 心 慎 振 新 晋 森 榛 浸 深 申 疹 真\n神 秦 紳 臣 芯 薪 親 診 身 辛 進 針 震 人 仁 刃\n塵 壬 尋 甚 尽 腎 訊 迅 陣 靭 笥 諏 須 酢 図 厨\n逗 吹 垂 帥 推 水 炊 睡 粋 翠 衰 遂 酔 錐 錘 随\n瑞 髄 崇 嵩 数 枢 趨 雛 据 杉 椙 菅 頗 雀 裾\n  澄 摺 寸 世 瀬 畝 是 凄 制 勢 姓 征 性 成 政\n整 星 晴 棲 栖 正 清 牲 生 盛 精 聖 声 製 西 誠\n誓 請 逝 醒 青 静 斉 税 脆 隻 席 惜 戚 斥 昔 析\n石 積 籍 績 脊 責 赤 跡 蹟 碩 切 拙 接 摂 折 設\n窃 節 説 雪 絶 舌 蝉 仙 先 千 占 宣 専 尖 川 戦\n扇 撰 栓 栴 泉 浅 洗 染 潜 煎 煽 旋 穿 箭 線\n  繊 羨 腺 舛 船 薦 詮 賎 践 選 遷 銭 銑 閃 鮮\n前 善 漸 然 全 禅 繕 膳 糎 噌 塑 岨 措 曾 曽 楚\n狙 疏 疎 礎 祖 租 粗 素 組 蘇 訴 阻 遡 鼠 僧 創\n双 叢 倉 喪 壮 奏 爽 宋 層 匝 惣 想 捜 掃 挿 掻\n操 早 曹 巣 槍 槽 漕 燥 争 痩 相 窓 糟 総 綜 聡\n草 荘 葬 蒼 藻 装 走 送 遭 鎗 霜 騒 像 増 憎\n  臓 蔵 贈 造 促 側 則 即 息 捉 束 測 足 速 俗\n属 賊 族 続 卒 袖 其 揃 存 孫 尊 損 村 遜 他 多\n太 汰 詑 唾 堕 妥 惰 打 柁 舵 楕 陀 駄 騨 体 堆\n対 耐 岱 帯 待 怠 態 戴 替 泰 滞 胎 腿 苔 袋 貸\n退 逮 隊 黛 鯛 代 台 大 第 醍 題 鷹 滝 瀧 卓 啄\n宅 托 択 拓 沢 濯 琢 託 鐸 濁 諾 茸 凧 蛸 只\n  叩 但 達 辰 奪 脱 巽 竪 辿 棚 谷 狸 鱈 樽 誰\n丹 単 嘆 坦 担 探 旦 歎 淡 湛 炭 短 端 箪 綻 耽\n胆 蛋 誕 鍛 団 壇 弾 断 暖 檀 段 男 談 値 知 地\n弛 恥 智 池 痴 稚 置 致 蜘 遅 馳 築 畜 竹 筑 蓄\n逐 秩 窒 茶 嫡 着 中 仲 宙 忠 抽 昼 柱 注 虫 衷\n註 酎 鋳 駐 樗 瀦 猪 苧 著 貯 丁 兆 凋 喋 寵\n  帖 帳 庁 弔 張 彫 徴 懲 挑 暢 朝 潮 牒 町 眺\n聴 脹 腸 蝶 調 諜 超 跳 銚 長 頂 鳥 勅 捗 直 朕\n沈 珍 賃 鎮 陳 津 墜 椎 槌 追 鎚 痛 通 塚 栂 掴\n槻 佃 漬 柘 辻 蔦 綴 鍔 椿 潰 坪 壷 嬬 紬 爪 吊\n釣 鶴 亭 低 停 偵 剃 貞 呈 堤 定 帝 底 庭 廷 弟\n悌 抵 挺 提 梯 汀 碇 禎 程 締 艇 訂 諦 蹄 逓\n  邸 鄭 釘 鼎 泥 摘 擢 敵 滴 的 笛 適 鏑 溺 哲\n徹 撤 轍 迭 鉄 典 填 天 展 店 添 纏 甜 貼 転 顛\n点 伝 殿 澱 田 電 兎 吐 堵 塗 妬 屠 徒 斗 杜 渡\n登 菟 賭 途 都 鍍 砥 砺 努 度 土 奴 怒 倒 党 冬\n凍 刀 唐 塔 塘 套 宕 島 嶋 悼 投 搭 東 桃 梼 棟\n盗 淘 湯 涛 灯 燈 当 痘 祷 等 答 筒 糖 統 到\n  董 蕩 藤 討 謄 豆 踏 逃 透 鐙 陶 頭 騰 闘 働\n動 同 堂 導 憧 撞 洞 瞳 童 胴 萄 道 銅 峠 鴇 匿\n得 徳 涜 特 督 禿 篤 毒 独 読 栃 橡 凸 突 椴 届\n鳶 苫 寅 酉 瀞 噸 屯 惇 敦 沌 豚 遁 頓 呑 曇 鈍\n奈 那 内 乍 凪 薙 謎 灘 捺 鍋 楢 馴 縄 畷 南 楠\n軟 難 汝 二 尼 弐 迩 匂 賑 肉 虹 廿 日 乳 入\n  如 尿 韮 任 妊 忍 認 濡 禰 祢 寧 葱 猫 熱 年\n念 捻 撚 燃 粘 乃 廼 之 埜 嚢 悩 濃 納 能 脳 膿\n農 覗 蚤 巴 把 播 覇 杷 波 派 琶 破 婆 罵 芭 馬\n俳 廃 拝 排 敗 杯 盃 牌 背 肺 輩 配 倍 培 媒 梅\n楳 煤 狽 買 売 賠 陪 這 蝿 秤 矧 萩 伯 剥 博 拍\n柏 泊 白 箔 粕 舶 薄 迫 曝 漠 爆 縛 莫 駁 麦\n  函 箱 硲 箸 肇 筈 櫨 幡 肌 畑 畠 八 鉢 溌 発\n醗 髪 伐 罰 抜 筏 閥 鳩 噺 塙 蛤 隼 伴 判 半 反\n叛 帆 搬 斑 板 氾 汎 版 犯 班 畔 繁 般 藩 販 範\n釆 煩 頒 飯 挽 晩 番 盤 磐 蕃 蛮 匪 卑 否 妃 庇\n彼 悲 扉 批 披 斐 比 泌 疲 皮 碑 秘 緋 罷 肥 被\n誹 費 避 非 飛 樋 簸 備 尾 微 枇 毘 琵 眉 美\n  鼻 柊 稗 匹 疋 髭 彦 膝 菱 肘 弼 必 畢 筆 逼\n桧 姫 媛 紐 百 謬 俵 彪 標 氷 漂 瓢 票 表 評 豹\n廟 描 病 秒 苗 錨 鋲 蒜 蛭 鰭 品 彬 斌 浜 瀕 貧\n賓 頻 敏 瓶 不 付 埠 夫 婦 富 冨 布 府 怖 扶 敷\n斧 普 浮 父 符 腐 膚 芙 譜 負 賦 赴 阜 附 侮 撫\n武 舞 葡 蕪 部 封 楓 風 葺 蕗 伏 副 復 幅 服\n  福 腹 複 覆 淵 弗 払 沸 仏 物 鮒 分 吻 噴 墳\n憤 扮 焚 奮 粉 糞 紛 雰 文 聞 丙 併 兵 塀 幣 平\n弊 柄 並 蔽 閉 陛 米 頁 僻 壁 癖 碧 別 瞥 蔑 箆\n偏 変 片 篇 編 辺 返 遍 便 勉 娩 弁 鞭 保 舗 鋪\n圃 捕 歩 甫 補 輔 穂 募 墓 慕 戊 暮 母 簿 菩 倣\n俸 包 呆 報 奉 宝 峰 峯 崩 庖 抱 捧 放 方 朋\n  法 泡 烹 砲 縫 胞 芳 萌 蓬 蜂 褒 訪 豊 邦 鋒\n飽 鳳 鵬 乏 亡 傍 剖 坊 妨 帽 忘 忙 房 暴 望 某\n棒 冒 紡 肪 膨 謀 貌 貿 鉾 防 吠 頬 北 僕 卜 墨\n撲 朴 牧 睦 穆 釦 勃 没 殆 堀 幌 奔 本 翻 凡 盆\n摩 磨 魔 麻 埋 妹 昧 枚 毎 哩 槙 幕 膜 枕 鮪 柾\n鱒 桝 亦 俣 又 抹 末 沫 迄 侭 繭 麿 万 慢 満\n  漫 蔓 味 未 魅 巳 箕 岬 密 蜜 湊 蓑 稔 脈 妙\n粍 民 眠 務 夢 無 牟 矛 霧 鵡 椋 婿 娘 冥 名 命\n明 盟 迷 銘 鳴 姪 牝 滅 免 棉 綿 緬 面 麺 摸 模\n茂 妄 孟 毛 猛 盲 網 耗 蒙 儲 木 黙 目 杢 勿 餅\n尤 戻 籾 貰 問 悶 紋 門 匁 也 冶 夜 爺 耶 野 弥\n矢 厄 役 約 薬 訳 躍 靖 柳 薮 鑓 愉 愈 油 癒\n  諭 輸 唯 佑 優 勇 友 宥 幽 悠 憂 揖 有 柚 湧\n涌 猶 猷 由 祐 裕 誘 遊 邑 郵 雄 融 夕 予 余 与\n誉 輿 預 傭 幼 妖 容 庸 揚 揺 擁 曜 楊 様 洋 溶\n熔 用 窯 羊 耀 葉 蓉 要 謡 踊 遥 陽 養 慾 抑 欲\n沃 浴 翌 翼 淀 羅 螺 裸 来 莱 頼 雷 洛 絡 落 酪\n乱 卵 嵐 欄 濫 藍 蘭 覧 利 吏 履 李 梨 理 璃\n  痢 裏 裡 里 離 陸 律 率 立 葎 掠 略 劉 流 溜\n琉 留 硫 粒 隆 竜 龍 侶 慮 旅 虜 了 亮 僚 両 凌\n寮 料 梁 涼 猟 療 瞭 稜 糧 良 諒 遼 量 陵 領 力\n緑 倫 厘 林 淋 燐 琳 臨 輪 隣 鱗 麟 瑠 塁 涙 累\n類 令 伶 例 冷 励 嶺 怜 玲 礼 苓 鈴 隷 零 霊 麗\n齢 暦 歴 列 劣 烈 裂 廉 恋 憐 漣 煉 簾 練 聯\n  蓮 連 錬 呂 魯 櫓 炉 賂 路 露 労 婁 廊 弄 朗\n楼 榔 浪 漏 牢 狼 篭 老 聾 蝋 郎 六 麓 禄 肋 録\n論 倭 和 話 歪 賄 脇 惑 枠 鷲 亙 亘 鰐 詫 藁 蕨\n椀 湾 碗 腕\n  弌 丐 丕 个 丱 丶 丼 丿 乂 乖 乘 亂 亅 豫 亊\n舒 弍 于 亞 亟 亠 亢 亰 亳 亶 从 仍 仄 仆 仂 仗\n仞 仭 仟 价 伉 佚 估 佛 佝 佗 佇 佶 侈 侏 侘 佻\n佩 佰 侑 佯 來 侖 儘 俔 俟 俎 俘 俛 俑 俚 俐 俤\n俥 倚 倨 倔 倪 倥 倅 伜 俶 倡 倩 倬 俾 俯 們 倆\n偃 假 會 偕 偐 偈 做 偖 偬 偸 傀 傚 傅 傴 傲\n  僉 僊 傳 僂 僖 僞 僥 僭 僣 僮 價 僵 儉 儁 儂\n儖 儕 儔 儚 儡 儺 儷 儼 儻 儿 兀 兒 兌 兔 兢 竸\n兩 兪 兮 冀 冂 囘 册 冉 冏 冑 冓 冕 冖 冤 冦 冢\n冩 冪 冫 决 冱 冲 冰 况 冽 凅 凉 凛 几 處 凩 凭\n凰 凵 凾 刄 刋 刔 刎 刧 刪 刮 刳 刹 剏 剄 剋 剌\n剞 剔 剪 剴 剩 剳 剿 剽 劍 劔 劒 剱 劈 劑 辨\n  辧 劬 劭 劼 劵 勁 勍 勗 勞 勣 勦 飭 勠 勳 勵\n勸 勹 匆 匈 甸 匍 匐 匏 匕 匚 匣 匯 匱 匳 匸 區\n卆 卅 丗 卉 卍 凖 卞 卩 卮 夘 卻 卷 厂 厖 厠 厦\n厥 厮 厰 厶 參 簒 雙 叟 曼 燮 叮 叨 叭 叺 吁 吽\n呀 听 吭 吼 吮 吶 吩 吝 呎 咏 呵 咎 呟 呱 呷 呰\n咒 呻 咀 呶 咄 咐 咆 哇 咢 咸 咥 咬 哄 哈 咨\n  咫 哂 咤 咾 咼 哘 哥 哦 唏 唔 哽 哮 哭 哺 哢\n唹 啀 啣 啌 售 啜 啅 啖 啗 唸 唳 啝 喙 喀 咯 喊\n喟 啻 啾 喘 喞 單 啼 喃 喩 喇 喨 嗚 嗅 嗟 嗄 嗜\n嗤 嗔 嘔 嗷 嘖 嗾 嗽 嘛 嗹 噎 噐 營 嘴 嘶 嘲 嘸\n噫 噤 嘯 噬 噪 嚆 嚀 嚊 嚠 嚔 嚏 嚥 嚮 嚶 嚴 囂\n嚼 囁 囃 囀 囈 囎 囑 囓 囗 囮 囹 圀 囿 圄 圉\n  圈 國 圍 圓 團 圖 嗇 圜 圦 圷 圸 坎 圻 址 坏\n坩 埀 垈 坡 坿 垉 垓 垠 垳 垤 垪 垰 埃 埆 埔 埒\n埓 堊 埖 埣 堋 堙 堝 塲 堡 塢 塋 塰 毀 塒 堽 塹\n墅 墹 墟 墫 墺 壞 墻 墸 墮 壅 壓 壑 壗 壙 壘 壥\n壜 壤 壟 壯 壺 壹 壻 壼 壽 夂 夊 夐 夛 梦 夥 夬\n夭 夲 夸 夾 竒 奕 奐 奎 奚 奘 奢 奠 奧 奬 奩\n  奸 妁 妝 佞 侫 妣 妲 姆 姨 姜 妍 姙 姚 娥 娟\n娑 娜 娉 娚 婀 婬 婉 娵 娶 婢 婪 媚 媼 媾 嫋 嫂\n媽 嫣 嫗 嫦 嫩 嫖 嫺 嫻 嬌 嬋 嬖 嬲 嫐 嬪 嬶 嬾\n孃 孅 孀 孑 孕 孚 孛 孥 孩 孰 孳 孵 學 斈 孺 宀\n它 宦 宸 寃 寇 寉 寔 寐 寤 實 寢 寞 寥 寫 寰 寶\n寳 尅 將 專 對 尓 尠 尢 尨 尸 尹 屁 屆 屎 屓\n  屐 屏 孱 屬 屮 乢 屶 屹 岌 岑 岔 妛 岫 岻 岶\n岼 岷 峅 岾 峇 峙 峩 峽 峺 峭 嶌 峪 崋 崕 崗 嵜\n崟 崛 崑 崔 崢 崚 崙 崘 嵌 嵒 嵎 嵋 嵬 嵳 嵶 嶇\n嶄 嶂 嶢 嶝 嶬 嶮 嶽 嶐 嶷 嶼 巉 巍 巓 巒 巖 巛\n巫 已 巵 帋 帚 帙 帑 帛 帶 帷 幄 幃 幀 幎 幗 幔\n幟 幢 幤 幇 幵 并 幺 麼 广 庠 廁 廂 廈 廐 廏\n  廖 廣 廝 廚 廛 廢 廡 廨 廩 廬 廱 廳 廰 廴 廸\n廾 弃 弉 彝 彜 弋 弑 弖 弩 弭 弸 彁 彈 彌 彎 弯\n彑 彖 彗 彙 彡 彭 彳 彷 徃 徂 彿 徊 很 徑 徇 從\n徙 徘 徠 徨 徭 徼 忖 忻 忤 忸 忱 忝 悳 忿 怡 恠\n怙 怐 怩 怎 怱 怛 怕 怫 怦 怏 怺 恚 恁 恪 恷 恟\n恊 恆 恍 恣 恃 恤 恂 恬 恫 恙 悁 悍 惧 悃 悚\n  悄 悛 悖 悗 悒 悧 悋 惡 悸 惠 惓 悴 忰 悽 惆\n悵 惘 慍 愕 愆 惶 惷 愀 惴 惺 愃 愡 惻 惱 愍 愎\n慇 愾 愨 愧 慊 愿 愼 愬 愴 愽 慂 慄 慳 慷 慘 慙\n慚 慫 慴 慯 慥 慱 慟 慝 慓 慵 憙 憖 憇 憬 憔 憚\n憊 憑 憫 憮 懌 懊 應 懷 懈 懃 懆 憺 懋 罹 懍 懦\n懣 懶 懺 懴 懿 懽 懼 懾 戀 戈 戉 戍 戌 戔 戛\n  戞 戡 截 戮 戰 戲 戳 扁 扎 扞 扣 扛 扠 扨 扼\n抂 抉 找 抒 抓 抖 拔 抃 抔 拗 拑 抻 拏 拿 拆 擔\n拈 拜 拌 拊 拂 拇 抛 拉 挌 拮 拱 挧 挂 挈 拯 拵\n捐 挾 捍 搜 捏 掖 掎 掀 掫 捶 掣 掏 掉 掟 掵 捫\n捩 掾 揩 揀 揆 揣 揉 插 揶 揄 搖 搴 搆 搓 搦 搶\n攝 搗 搨 搏 摧 摯 摶 摎 攪 撕 撓 撥 撩 撈 撼\n  據 擒 擅 擇 撻 擘 擂 擱 擧 舉 擠 擡 抬 擣 擯\n攬 擶 擴 擲 擺 攀 擽 攘 攜 攅 攤 攣 攫 攴 攵 攷\n收 攸 畋 效 敖 敕 敍 敘 敞 敝 敲 數 斂 斃 變 斛\n斟 斫 斷 旃 旆 旁 旄 旌 旒 旛 旙 无 旡 旱 杲 昊\n昃 旻 杳 昵 昶 昴 昜 晏 晄 晉 晁 晞 晝 晤 晧 晨\n晟 晢 晰 暃 暈 暎 暉 暄 暘 暝 曁 暹 曉 暾 暼\n  曄 暸 曖 曚 曠 昿 曦 曩 曰 曵 曷 朏 朖 朞 朦\n朧 霸 朮 朿 朶 杁 朸 朷 杆 杞 杠 杙 杣 杤 枉 杰\n枩 杼 杪 枌 枋 枦 枡 枅 枷 柯 枴 柬 枳 柩 枸 柤\n柞 柝 柢 柮 枹 柎 柆 柧 檜 栞 框 栩 桀 桍 栲 桎\n梳 栫 桙 档 桷 桿 梟 梏 梭 梔 條 梛 梃 檮 梹 桴\n梵 梠 梺 椏 梍 桾 椁 棊 椈 棘 椢 椦 棡 椌 棍\n  棔 棧 棕 椶 椒 椄 棗 棣 椥 棹 棠 棯 椨 椪 椚\n椣 椡 棆 楹 楷 楜 楸 楫 楔 楾 楮 椹 楴 椽 楙 椰\n楡 楞 楝 榁 楪 榲 榮 槐 榿 槁 槓 榾 槎 寨 槊 槝\n榻 槃 榧 樮 榑 榠 榜 榕 榴 槞 槨 樂 樛 槿 權 槹\n槲 槧 樅 榱 樞 槭 樔 槫 樊 樒 櫁 樣 樓 橄 樌 橲\n樶 橸 橇 橢 橙 橦 橈 樸 樢 檐 檍 檠 檄 檢 檣\n  檗 蘗 檻 櫃 櫂 檸 檳 檬 櫞 櫑 櫟 檪 櫚 櫪 櫻\n欅 蘖 櫺 欒 欖 鬱 欟 欸 欷 盜 欹 飮 歇 歃 歉 歐\n歙 歔 歛 歟 歡 歸 歹 歿 殀 殄 殃 殍 殘 殕 殞 殤\n殪 殫 殯 殲 殱 殳 殷 殼 毆 毋 毓 毟 毬 毫 毳 毯\n麾 氈 氓 气 氛 氤 氣 汞 汕 汢 汪 沂 沍 沚 沁 沛\n汾 汨 汳 沒 沐 泄 泱 泓 沽 泗 泅 泝 沮 沱 沾\n  沺 泛 泯 泙 泪 洟 衍 洶 洫 洽 洸 洙 洵 洳 洒\n洌 浣 涓 浤 浚 浹 浙 涎 涕 濤 涅 淹 渕 渊 涵 淇\n淦 涸 淆 淬 淞 淌 淨 淒 淅 淺 淙 淤 淕 淪 淮 渭\n湮 渮 渙 湲 湟 渾 渣 湫 渫 湶 湍 渟 湃 渺 湎 渤\n滿 渝 游 溂 溪 溘 滉 溷 滓 溽 溯 滄 溲 滔 滕 溏\n溥 滂 溟 潁 漑 灌 滬 滸 滾 漿 滲 漱 滯 漲 滌\n  漾 漓 滷 澆 潺 潸 澁 澀 潯 潛 濳 潭 澂 潼 潘\n澎 澑 濂 潦 澳 澣 澡 澤 澹 濆 澪 濟 濕 濬 濔 濘\n濱 濮 濛 瀉 瀋 濺 瀑 瀁 瀏 濾 瀛 瀚 潴 瀝 瀘 瀟\n瀰 瀾 瀲 灑 灣 炙 炒 炯 烱 炬 炸 炳 炮 烟 烋 烝\n烙 焉 烽 焜 焙 煥 煕 熈 煦 煢 煌 煖 煬 熏 燻 熄\n熕 熨 熬 燗 熹 熾 燒 燉 燔 燎 燠 燬 燧 燵 燼\n  燹 燿 爍 爐 爛 爨 爭 爬 爰 爲 爻 爼 爿 牀 牆\n牋 牘 牴 牾 犂 犁 犇 犒 犖 犢 犧 犹 犲 狃 狆 狄\n狎 狒 狢 狠 狡 狹 狷 倏 猗 猊 猜 猖 猝 猴 猯 猩\n猥 猾 獎 獏 默 獗 獪 獨 獰 獸 獵 獻 獺 珈 玳 珎\n玻 珀 珥 珮 珞 璢 琅 瑯 琥 珸 琲 琺 瑕 琿 瑟 瑙\n瑁 瑜 瑩 瑰 瑣 瑪 瑶 瑾 璋 璞 璧 瓊 瓏 瓔 珱\n  瓠 瓣 瓧 瓩 瓮 瓲 瓰 瓱 瓸 瓷 甄 甃 甅 甌 甎\n甍 甕 甓 甞 甦 甬 甼 畄 畍 畊 畉 畛 畆 畚 畩 畤\n畧 畫 畭 畸 當 疆 疇 畴 疊 疉 疂 疔 疚 疝 疥 疣\n痂 疳 痃 疵 疽 疸 疼 疱 痍 痊 痒 痙 痣 痞 痾 痿\n痼 瘁 痰 痺 痲 痳 瘋 瘍 瘉 瘟 瘧 瘠 瘡 瘢 瘤 瘴\n瘰 瘻 癇 癈 癆 癜 癘 癡 癢 癨 癩 癪 癧 癬 癰\n  癲 癶 癸 發 皀 皃 皈 皋 皎 皖 皓 皙 皚 皰 皴\n皸 皹 皺 盂 盍 盖 盒 盞 盡 盥 盧 盪 蘯 盻 眈 眇\n眄 眩 眤 眞 眥 眦 眛 眷 眸 睇 睚 睨 睫 睛 睥 睿\n睾 睹 瞎 瞋 瞑 瞠 瞞 瞰 瞶 瞹 瞿 瞼 瞽 瞻 矇 矍\n矗 矚 矜 矣 矮 矼 砌 砒 礦 砠 礪 硅 碎 硴 碆 硼\n碚 碌 碣 碵 碪 碯 磑 磆 磋 磔 碾 碼 磅 磊 磬\n  磧 磚 磽 磴 礇 礒 礑 礙 礬 礫 祀 祠 祗 祟 祚\n祕 祓 祺 祿 禊 禝 禧 齋 禪 禮 禳 禹 禺 秉 秕 秧\n秬 秡 秣 稈 稍 稘 稙 稠 稟 禀 稱 稻 稾 稷 穃 穗\n穉 穡 穢 穩 龝 穰 穹 穽 窈 窗 窕 窘 窖 窩 竈 窰\n窶 竅 竄 窿 邃 竇 竊 竍 竏 竕 竓 站 竚 竝 竡 竢\n竦 竭 竰 笂 笏 笊 笆 笳 笘 笙 笞 笵 笨 笶 筐\n  筺 笄 筍 笋 筌 筅 筵 筥 筴 筧 筰 筱 筬 筮 箝\n箘 箟 箍 箜 箚 箋 箒 箏 筝 箙 篋 篁 篌 篏 箴 篆\n篝 篩 簑 簔 篦 篥 籠 簀 簇 簓 篳 篷 簗 簍 篶 簣\n簧 簪 簟 簷 簫 簽 籌 籃 籔 籏 籀 籐 籘 籟 籤 籖\n籥 籬 籵 粃 粐 粤 粭 粢 粫 粡 粨 粳 粲 粱 粮 粹\n粽 糀 糅 糂 糘 糒 糜 糢 鬻 糯 糲 糴 糶 糺 紆\n  紂 紜 紕 紊 絅 絋 紮 紲 紿 紵 絆 絳 絖 絎 絲\n絨 絮 絏 絣 經 綉 絛 綏 絽 綛 綺 綮 綣 綵 緇 綽\n綫 總 綢 綯 緜 綸 綟 綰 緘 緝 緤 緞 緻 緲 緡 縅\n縊 縣 縡 縒 縱 縟 縉 縋 縢 繆 繦 縻 縵 縹 繃 縷\n縲 縺 繧 繝 繖 繞 繙 繚 繹 繪 繩 繼 繻 纃 緕 繽\n辮 繿 纈 纉 續 纒 纐 纓 纔 纖 纎 纛 纜 缸 缺\n  罅 罌 罍 罎 罐 网 罕 罔 罘 罟 罠 罨 罩 罧 罸\n羂 羆 羃 羈 羇 羌 羔 羞 羝 羚 羣 羯 羲 羹 羮 羶\n羸 譱 翅 翆 翊 翕 翔 翡 翦 翩 翳 翹 飜 耆 耄 耋\n耒 耘 耙 耜 耡 耨 耿 耻 聊 聆 聒 聘 聚 聟 聢 聨\n聳 聲 聰 聶 聹 聽 聿 肄 肆 肅 肛 肓 肚 肭 冐 肬\n胛 胥 胙 胝 胄 胚 胖 脉 胯 胱 脛 脩 脣 脯 腋\n  隋 腆 脾 腓 腑 胼 腱 腮 腥 腦 腴 膃 膈 膊 膀\n膂 膠 膕 膤 膣 腟 膓 膩 膰 膵 膾 膸 膽 臀 臂 膺\n臉 臍 臑 臙 臘 臈 臚 臟 臠 臧 臺 臻 臾 舁 舂 舅\n與 舊 舍 舐 舖 舩 舫 舸 舳 艀 艙 艘 艝 艚 艟 艤\n艢 艨 艪 艫 舮 艱 艷 艸 艾 芍 芒 芫 芟 芻 芬 苡\n苣 苟 苒 苴 苳 苺 莓 范 苻 苹 苞 茆 苜 茉 苙\n  茵 茴 茖 茲 茱 荀 茹 荐 荅 茯 茫 茗 茘 莅 莚\n莪 莟 莢 莖 茣 莎 莇 莊 荼 莵 荳 荵 莠 莉 莨 菴\n萓 菫 菎 菽 萃 菘 萋 菁 菷 萇 菠 菲 萍 萢 萠 莽\n萸 蔆 菻 葭 萪 萼 蕚 蒄 葷 葫 蒭 葮 蒂 葩 葆 萬\n葯 葹 萵 蓊 葢 蒹 蒿 蒟 蓙 蓍 蒻 蓚 蓐 蓁 蓆 蓖\n蒡 蔡 蓿 蓴 蔗 蔘 蔬 蔟 蔕 蔔 蓼 蕀 蕣 蕘 蕈\n  蕁 蘂 蕋 蕕 薀 薤 薈 薑 薊 薨 蕭 薔 薛 藪 薇\n薜 蕷 蕾 薐 藉 薺 藏 薹 藐 藕 藝 藥 藜 藹 蘊 蘓\n蘋 藾 藺 蘆 蘢 蘚 蘰 蘿 虍 乕 虔 號 虧 虱 蚓 蚣\n蚩 蚪 蚋 蚌 蚶 蚯 蛄 蛆 蚰 蛉 蠣 蚫 蛔 蛞 蛩 蛬\n蛟 蛛 蛯 蜒 蜆 蜈 蜀 蜃 蛻 蜑 蜉 蜍 蛹 蜊 蜴 蜿\n蜷 蜻 蜥 蜩 蜚 蝠 蝟 蝸 蝌 蝎 蝴 蝗 蝨 蝮 蝙\n  蝓 蝣 蝪 蠅 螢 螟 螂 螯 蟋 螽 蟀 蟐 雖 螫 蟄\n螳 蟇 蟆 螻 蟯 蟲 蟠 蠏 蠍 蟾 蟶 蟷 蠎 蟒 蠑 蠖\n蠕 蠢 蠡 蠱 蠶 蠹 蠧 蠻 衄 衂 衒 衙 衞 衢 衫 袁\n衾 袞 衵 衽 袵 衲 袂 袗 袒 袮 袙 袢 袍 袤 袰 袿\n袱 裃 裄 裔 裘 裙 裝 裹 褂 裼 裴 裨 裲 褄 褌 褊\n褓 襃 褞 褥 褪 褫 襁 襄 褻 褶 褸 襌 褝 襠 襞\n  襦 襤 襭 襪 襯 襴 襷 襾 覃 覈 覊 覓 覘 覡 覩\n覦 覬 覯 覲 覺 覽 覿 觀 觚 觜 觝 觧 觴 觸 訃 訖\n訐 訌 訛 訝 訥 訶 詁 詛 詒 詆 詈 詼 詭 詬 詢 誅\n誂 誄 誨 誡 誑 誥 誦 誚 誣 諄 諍 諂 諚 諫 諳 諧\n諤 諱 謔 諠 諢 諷 諞 諛 謌 謇 謚 諡 謖 謐 謗 謠\n謳 鞫 謦 謫 謾 謨 譁 譌 譏 譎 證 譖 譛 譚 譫\n  譟 譬 譯 譴 譽 讀 讌 讎 讒 讓 讖 讙 讚 谺 豁\n谿 豈 豌 豎 豐 豕 豢 豬 豸 豺 貂 貉 貅 貊 貍 貎\n貔 豼 貘 戝 貭 貪 貽 貲 貳 貮 貶 賈 賁 賤 賣 賚\n賽 賺 賻 贄 贅 贊 贇 贏 贍 贐 齎 贓 賍 贔 贖 赧\n赭 赱 赳 趁 趙 跂 趾 趺 跏 跚 跖 跌 跛 跋 跪 跫\n跟 跣 跼 踈 踉 跿 踝 踞 踐 踟 蹂 踵 踰 踴 蹊\n  蹇 蹉 蹌 蹐 蹈 蹙 蹤 蹠 踪 蹣 蹕 蹶 蹲 蹼 躁\n躇 躅 躄 躋 躊 躓 躑 躔 躙 躪 躡 躬 躰 軆 躱 躾\n軅 軈 軋 軛 軣 軼 軻 軫 軾 輊 輅 輕 輒 輙 輓 輜\n輟 輛 輌 輦 輳 輻 輹 轅 轂 輾 轌 轉 轆 轎 轗 轜\n轢 轣 轤 辜 辟 辣 辭 辯 辷 迚 迥 迢 迪 迯 邇 迴\n逅 迹 迺 逑 逕 逡 逍 逞 逖 逋 逧 逶 逵 逹 迸\n  遏 遐 遑 遒 逎 遉 逾 遖 遘 遞 遨 遯 遶 隨 遲\n邂 遽 邁 邀 邊 邉 邏 邨 邯 邱 邵 郢 郤 扈 郛 鄂\n鄒 鄙 鄲 鄰 酊 酖 酘 酣 酥 酩 酳 酲 醋 醉 醂 醢\n醫 醯 醪 醵 醴 醺 釀 釁 釉 釋 釐 釖 釟 釡 釛 釼\n釵 釶 鈞 釿 鈔 鈬 鈕 鈑 鉞 鉗 鉅 鉉 鉤 鉈 銕 鈿\n鉋 鉐 銜 銖 銓 銛 鉚 鋏 銹 銷 鋩 錏 鋺 鍄 錮\n  錙 錢 錚 錣 錺 錵 錻 鍜 鍠 鍼 鍮 鍖 鎰 鎬 鎭\n鎔 鎹 鏖 鏗 鏨 鏥 鏘 鏃 鏝 鏐 鏈 鏤 鐚 鐔 鐓 鐃\n鐇 鐐 鐶 鐫 鐵 鐡 鐺 鑁 鑒 鑄 鑛 鑠 鑢 鑞 鑪 鈩\n鑰 鑵 鑷 鑽 鑚 鑼 鑾 钁 鑿 閂 閇 閊 閔 閖 閘 閙\n閠 閨 閧 閭 閼 閻 閹 閾 闊 濶 闃 闍 闌 闕 闔 闖\n關 闡 闥 闢 阡 阨 阮 阯 陂 陌 陏 陋 陷 陜 陞\n  陝 陟 陦 陲 陬 隍 隘 隕 隗 險 隧 隱 隲 隰 隴\n隶 隸 隹 雎 雋 雉 雍 襍 雜 霍 雕 雹 霄 霆 霈 霓\n霎 霑 霏 霖 霙 霤 霪 霰 霹 霽 霾 靄 靆 靈 靂 靉\n靜 靠 靤 靦 靨 勒 靫 靱 靹 鞅 靼 鞁 靺 鞆 鞋 鞏\n鞐 鞜 鞨 鞦 鞣 鞳 鞴 韃 韆 韈 韋 韜 韭 齏 韲 竟\n韶 韵 頏 頌 頸 頤 頡 頷 頽 顆 顏 顋 顫 顯 顰\n  顱 顴 顳 颪 颯 颱 颶 飄 飃 飆 飩 飫 餃 餉 餒\n餔 餘 餡 餝 餞 餤 餠 餬 餮 餽 餾 饂 饉 饅 饐 饋\n饑 饒 饌 饕 馗 馘 馥 馭 馮 馼 駟 駛 駝 駘 駑 駭\n駮 駱 駲 駻 駸 騁 騏 騅 駢 騙 騫 騷 驅 驂 驀 驃\n騾 驕 驍 驛 驗 驟 驢 驥 驤 驩 驫 驪 骭 骰 骼 髀\n髏 髑 髓 體 髞 髟 髢 髣 髦 髯 髫 髮 髴 髱 髷\n  髻 鬆 鬘 鬚 鬟 鬢 鬣 鬥 鬧 鬨 鬩 鬪 鬮 鬯 鬲\n魄 魃 魏 魍 魎 魑 魘 魴 鮓 鮃 鮑 鮖 鮗 鮟 鮠 鮨\n鮴 鯀 鯊 鮹 鯆 鯏 鯑 鯒 鯣 鯢 鯤 鯔 鯡 鰺 鯲 鯱\n鯰 鰕 鰔 鰉 鰓 鰌 鰆 鰈 鰒 鰊 鰄 鰮 鰛 鰥 鰤 鰡\n鰰 鱇 鰲 鱆 鰾 鱚 鱠 鱧 鱶 鱸 鳧 鳬 鳰 鴉 鴈 鳫\n鴃 鴆 鴪 鴦 鶯 鴣 鴟 鵄 鴕 鴒 鵁 鴿 鴾 鵆 鵈\n  鵝 鵞 鵤 鵑 鵐 鵙 鵲 鶉 鶇 鶫 鵯 鵺 鶚 鶤 鶩\n鶲 鷄 鷁 鶻 鶸 鶺 鷆 鷏 鷂 鷙 鷓 鷸 鷦 鷭 鷯 鷽\n鸚 鸛 鸞 鹵 鹹 鹽 麁 麈 麋 麌 麒 麕 麑 麝 麥 麩\n麸 麪 麭 靡 黌 黎 黏 黐 黔 黜 點 黝 黠 黥 黨 黯\n黴 黶 黷 黹 黻 黼 黽 鼇 鼈 皷 鼕 鼡 鼬 鼾 齊 齒\n齔 齣 齟 齠 齡 齦 齧 齬 齪 齷 齲 齶 龕 龜 龠\n  堯 槇 遙 瑤 凜 熙\n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n  纊 褜 鍈 銈 蓜 俉 炻 昱 棈 鋹 曻 彅 丨 仡 仼\n伀 伃 伹 佖 侒 侊 侚 侔 俍 偀 倢 俿 倞 偆 偰 偂\n傔 僴 僘 兊 兤 冝 冾 凬 刕 劜 劦 勀 勛 匀 匇 匤\n卲 厓 厲 叝 﨎 咜 咊 咩 哿 喆 坙 坥 垬 埈 埇 﨏\n塚 增 墲 夋 奓 奛 奝 奣 妤 妺 孖 寀 甯 寘 寬 尞\n岦 岺 峵 崧 嵓 﨑 嵂 嵭 嶸 嶹 巐 弡 弴 彧 德\n  忞 恝 悅 悊 惞 惕 愠 惲 愑 愷 愰 憘 戓 抦 揵\n摠 撝 擎 敎 昀 昕 昻 昉 昮 昞 昤 晥 晗 晙 晴 晳\n暙 暠 暲 暿 曺 朎 朗 杦 枻 桒 柀 栁 桄 棏 﨓 楨\n﨔 榘 槢 樰 橫 橆 橳 橾 櫢 櫤 毖 氿 汜 沆 汯 泚\n洄 涇 浯 涖 涬 淏 淸 淲 淼 渹 湜 渧 渼 溿 澈 澵\n濵 瀅 瀇 瀨 炅 炫 焏 焄 煜 煆 煇 凞 燁 燾 犱\n  犾 猤 猪 獷 玽 珉 珖 珣 珒 琇 珵 琦 琪 琩 琮\n瑢 璉 璟 甁 畯 皂 皜 皞 皛 皦 益 睆 劯 砡 硎 硤\n硺 礰 礼 神 祥 禔 福 禛 竑 竧 靖 竫 箞 精 絈 絜\n綷 綠 緖 繒 罇 羡 羽 茁 荢 荿 菇 菶 葈 蒴 蕓 蕙\n蕫 﨟 薰 蘒 﨡 蠇 裵 訒 訷 詹 誧 誾 諟 諸 諶 譓\n譿 賰 賴 贒 赶 﨣 軏 﨤 逸 遧 郞 都 鄕 鄧 釚\n  釗 釞 釭 釮 釤 釥 鈆 鈐 鈊 鈺 鉀 鈼 鉎 鉙 鉑\n鈹 鉧 銧 鉷 鉸 鋧 鋗 鋙 鋐 﨧 鋕 鋠 鋓 錥 錡 鋻\n﨨 錞 鋿 錝 錂 鍰 鍗 鎤 鏆 鏞 鏸 鐱 鑅 鑈 閒 隆\n﨩 隝 隯 霳 霻 靃 靍 靏 靑 靕 顗 顥 飯 飼 餧 館\n馞 驎 髙 髜 魵 魲 鮏 鮱 鮻 鰀 鵰 鵫 鶴 鸙 黑 \n ⅰ ⅱ ⅲ ⅳ ⅴ ⅵ ⅶ ⅷ ⅸ ⅹ ￢ ￤ ＇ ＂\n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n                              ˘\nˇ ¸ ˙ ˝ ¯ ˛ ˚   ΄ ΅\n    ¡ ¦ ¿\n                      º ª © ® ™\n¤\n  Ά Έ Ή Ί Ϊ   Ό   Ύ Ϋ   Ώ\n  ά έ ή ί ϊ ΐ ό ς ύ ϋ ΰ ώ\n    Ђ Ѓ Є Ѕ І Ї Ј Љ Њ Ћ Ќ Ў Џ\n    ђ ѓ є ѕ і ї ј љ њ ћ ќ ў џ\n  Æ Đ   Ħ   Ĳ   Ł Ŀ   Ŋ Ø Œ   Ŧ\nÞ\n  æ đ ð ħ ı ĳ ĸ ł ŀ ŉ ŋ ø œ ß ŧ\nþ\n  Á À Ä Â Ă Ǎ Ā Ą Å Ã Ć Ĉ Č Ç Ċ\nĎ É È Ë Ê Ě Ė Ē Ę   Ĝ Ğ Ģ Ġ Ĥ Í\nÌ Ï Î Ǐ İ Ī Į Ĩ Ĵ Ķ Ĺ Ľ Ļ Ń Ň Ņ\nÑ Ó Ò Ö Ô Ǒ Ő Ō Õ Ŕ Ř Ŗ Ś Ŝ Š Ş\nŤ Ţ Ú Ù Ü Û Ŭ Ǔ Ű Ū Ų Ů Ũ Ǘ Ǜ Ǚ\nǕ Ŵ Ý Ÿ Ŷ Ź Ž Ż\n  á à ä â ă ǎ ā ą å ã ć ĉ č ç ċ\nď é è ë ê ě ė ē ę ǵ ĝ ğ   ġ ĥ í\nì ï î ǐ   ī į ĩ ĵ ķ ĺ ľ ļ ń ň ņ\nñ ó ò ö ô ǒ ő ō õ ŕ ř ŗ ś ŝ š ş\nť ţ ú ù ü û ŭ ǔ ű ū ų ů ũ ǘ ǜ ǚ\nǖ ŵ ý ÿ ŷ ź ž ż\n  丂 丄 丅 丌 丒 丟 丣 两 丨 丫 丮 丯 丰 丵 乀\n乁 乄 乇 乑 乚 乜 乣 乨 乩 乴 乵 乹 乿 亍 亖 亗\n亝 亯 亹 仃 仐 仚 仛 仠 仡 仢 仨 仯 仱 仳 仵 份\n仾 仿 伀 伂 伃 伈 伋 伌 伒 伕 伖 众 伙 伮 伱 你\n伳 伵 伷 伹 伻 伾 佀 佂 佈 佉 佋 佌 佒 佔 佖 佘\n佟 佣 佪 佬 佮 佱 佷 佸 佹 佺 佽 佾 侁 侂 侄\n  侅 侉 侊 侌 侎 侐 侒 侓 侔 侗 侙 侚 侞 侟 侲\n侷 侹 侻 侼 侽 侾 俀 俁 俅 俆 俈 俉 俋 俌 俍 俏\n俒 俜 俠 俢 俰 俲 俼 俽 俿 倀 倁 倄 倇 倊 倌 倎\n倐 倓 倗 倘 倛 倜 倝 倞 倢 倧 倮 倰 倲 倳 倵 偀\n偁 偂 偅 偆 偊 偌 偎 偑 偒 偓 偗 偙 偟 偠 偢 偣\n偦 偧 偪 偭 偰 偱 倻 傁 傃 傄 傆 傊 傎 傏 傐\n  傒 傓 傔 傖 傛 傜 傞 傟 傠 傡 傢 傪 傯 傰 傹\n傺 傽 僀 僃 僄 僇 僌 僎 僐 僓 僔 僘 僜 僝 僟 僢\n僤 僦 僨 僩 僯 僱 僶 僺 僾 儃 儆 儇 儈 儋 儌 儍\n儎 僲 儐 儗 儙 儛 儜 儝 儞 儣 儧 儨 儬 儭 儯 儱\n儳 儴 儵 儸 儹 兂 兊 兏 兓 兕 兗 兘 兟 兤 兦 兾\n冃 冄 冋 冎 冘 冝 冡 冣 冭 冸 冺 冼 冾 冿 凂\n  凈 减 凑 凒 凓 凕 凘 凞 凢 凥 凮 凲 凳 凴 凷\n刁 刂 刅 划 刓 刕 刖 刘 刢 刨 刱 刲 刵 刼 剅 剉\n剕 剗 剘 剚 剜 剟 剠 剡 剦 剮 剷 剸 剹 劀 劂 劅\n劊 劌 劓 劕 劖 劗 劘 劚 劜 劤 劥 劦 劧 劯 劰 劶\n劷 劸 劺 劻 劽 勀 勄 勆 勈 勌 勏 勑 勔 勖 勛 勜\n勡 勥 勨 勩 勪 勬 勰 勱 勴 勶 勷 匀 匃 匊 匋\n  匌 匑 匓 匘 匛 匜 匞 匟 匥 匧 匨 匩 匫 匬 匭\n匰 匲 匵 匼 匽 匾 卂 卌 卋 卙 卛 卡 卣 卥 卬 卭\n卲 卹 卾 厃 厇 厈 厎 厓 厔 厙 厝 厡 厤 厪 厫 厯\n厲 厴 厵 厷 厸 厺 厽 叀 叅 叏 叒 叓 叕 叚 叝 叞\n叠 另 叧 叵 吂 吓 吚 吡 吧 吨 吪 启 吱 吴 吵 呃\n呄 呇 呍 呏 呞 呢 呤 呦 呧 呩 呫 呭 呮 呴 呿\n  咁 咃 咅 咈 咉 咍 咑 咕 咖 咜 咟 咡 咦 咧 咩\n咪 咭 咮 咱 咷 咹 咺 咻 咿 哆 哊 响 哎 哠 哪 哬\n哯 哶 哼 哾 哿 唀 唁 唅 唈 唉 唌 唍 唎 唕 唪 唫\n唲 唵 唶 唻 唼 唽 啁 啇 啉 啊 啍 啐 啑 啘 啚 啛\n啞 啠 啡 啤 啦 啿 喁 喂 喆 喈 喎 喏 喑 喒 喓 喔\n喗 喣 喤 喭 喲 喿 嗁 嗃 嗆 嗉 嗋 嗌 嗎 嗑 嗒\n  嗓 嗗 嗘 嗛 嗞 嗢 嗩 嗶 嗿 嘅 嘈 嘊 嘍 嘎 嘏\n嘐 嘑 嘒 嘙 嘬 嘰 嘳 嘵 嘷 嘹 嘻 嘼 嘽 嘿 噀 噁\n噃 噄 噆 噉 噋 噍 噏 噔 噞 噠 噡 噢 噣 噦 噩 噭\n噯 噱 噲 噵 嚄 嚅 嚈 嚋 嚌 嚕 嚙 嚚 嚝 嚞 嚟 嚦\n嚧 嚨 嚩 嚫 嚬 嚭 嚱 嚳 嚷 嚾 囅 囉 囊 囋 囏 囐\n囌 囍 囙 囜 囝 囟 囡 囤 囥 囦 囧 囨 囱 囫 园\n  囶 囷 圁 圂 圇 圊 圌 圑 圕 圚 圛 圝 圠 圢 圣\n圤 圥 圩 圪 圬 圮 圯 圳 圴 圽 圾 圿 坅 坆 坌 坍\n坒 坢 坥 坧 坨 坫 坭 坮 坯 坰 坱 坳 坴 坵 坷 坹\n坺 坻 坼 坾 垁 垃 垌 垔 垗 垙 垚 垜 垝 垞 垟 垡\n垕 垧 垨 垩 垬 垸 垽 埇 埈 埌 埏 埕 埝 埞 埤 埦\n埧 埩 埭 埰 埵 埶 埸 埽 埾 埿 堃 堄 堈 堉 埡\n  堌 堍 堛 堞 堟 堠 堦 堧 堭 堲 堹 堿 塉 塌 塍\n塏 塐 塕 塟 塡 塤 塧 塨 塸 塼 塿 墀 墁 墇 墈 墉\n墊 墌 墍 墏 墐 墔 墖 墝 墠 墡 墢 墦 墩 墱 墲 壄\n墼 壂 壈 壍 壎 壐 壒 壔 壖 壚 壝 壡 壢 壩 壳 夅\n夆 夋 夌 夒 夓 夔 虁 夝 夡 夣 夤 夨 夯 夰 夳 夵\n夶 夿 奃 奆 奒 奓 奙 奛 奝 奞 奟 奡 奣 奫 奭\n  奯 奲 奵 奶 她 奻 奼 妋 妌 妎 妒 妕 妗 妟 妤\n妧 妭 妮 妯 妰 妳 妷 妺 妼 姁 姃 姄 姈 姊 姍 姒\n姝 姞 姟 姣 姤 姧 姮 姯 姱 姲 姴 姷 娀 娄 娌 娍\n娎 娒 娓 娞 娣 娤 娧 娨 娪 娭 娰 婄 婅 婇 婈 婌\n婐 婕 婞 婣 婥 婧 婭 婷 婺 婻 婾 媋 媐 媓 媖 媙\n媜 媞 媟 媠 媢 媧 媬 媱 媲 媳 媵 媸 媺 媻 媿\n  嫄 嫆 嫈 嫏 嫚 嫜 嫠 嫥 嫪 嫮 嫵 嫶 嫽 嬀 嬁\n嬈 嬗 嬴 嬙 嬛 嬝 嬡 嬥 嬭 嬸 孁 孋 孌 孒 孖 孞\n孨 孮 孯 孼 孽 孾 孿 宁 宄 宆 宊 宎 宐 宑 宓 宔\n宖 宨 宩 宬 宭 宯 宱 宲 宷 宺 宼 寀 寁 寍 寏 寖\n寗 寘 寙 寚 寠 寯 寱 寴 寽 尌 尗 尞 尟 尣 尦 尩\n尫 尬 尮 尰 尲 尵 尶 屙 屚 屜 屢 屣 屧 屨 屩\n  屭 屰 屴 屵 屺 屻 屼 屽 岇 岈 岊 岏 岒 岝 岟\n岠 岢 岣 岦 岪 岲 岴 岵 岺 峉 峋 峒 峝 峗 峮 峱\n峲 峴 崁 崆 崍 崒 崫 崣 崤 崦 崧 崱 崴 崹 崽 崿\n嵂 嵃 嵆 嵈 嵕 嵑 嵙 嵊 嵟 嵠 嵡 嵢 嵤 嵪 嵭 嵰\n嵹 嵺 嵾 嵿 嶁 嶃 嶈 嶊 嶒 嶓 嶔 嶕 嶙 嶛 嶟 嶠\n嶧 嶫 嶰 嶴 嶸 嶹 巃 巇 巋 巐 巎 巘 巙 巠 巤\n  巩 巸 巹 帀 帇 帍 帒 帔 帕 帘 帟 帠 帮 帨 帲\n帵 帾 幋 幐 幉 幑 幖 幘 幛 幜 幞 幨 幪 幫 幬 幭\n幮 幰 庀 庋 庎 庢 庤 庥 庨 庪 庬 庱 庳 庽 庾 庿\n廆 廌 廋 廎 廑 廒 廔 廕 廜 廞 廥 廫 异 弆 弇 弈\n弎 弙 弜 弝 弡 弢 弣 弤 弨 弫 弬 弮 弰 弴 弶 弻\n弽 弿 彀 彄 彅 彇 彍 彐 彔 彘 彛 彠 彣 彤 彧\n  彯 彲 彴 彵 彸 彺 彽 彾 徉 徍 徏 徖 徜 徝 徢\n徧 徫 徤 徬 徯 徰 徱 徸 忄 忇 忈 忉 忋 忐 忑 忒\n忓 忔 忞 忡 忢 忨 忩 忪 忬 忭 忮 忯 忲 忳 忶 忺\n忼 怇 怊 怍 怓 怔 怗 怘 怚 怟 怤 怭 怳 怵 恀 恇\n恈 恉 恌 恑 恔 恖 恗 恝 恡 恧 恱 恾 恿 悂 悆 悈\n悊 悎 悑 悓 悕 悘 悝 悞 悢 悤 悥 您 悰 悱 悷\n  悻 悾 惂 惄 惈 惉 惊 惋 惎 惏 惔 惕 惙 惛 惝\n惞 惢 惥 惲 惵 惸 惼 惽 愂 愇 愊 愌 愐 愑 愒 愓\n愔 愖 愗 愙 愜 愞 愢 愪 愫 愰 愱 愵 愶 愷 愹 慁\n慅 慆 慉 慞 慠 慬 慲 慸 慻 慼 慿 憀 憁 憃 憄 憋\n憍 憒 憓 憗 憘 憜 憝 憟 憠 憥 憨 憪 憭 憸 憹 憼\n懀 懁 懂 懎 懏 懕 懜 懝 懞 懟 懡 懢 懧 懩 懥\n  懬 懭 懯 戁 戃 戄 戇 戓 戕 戜 戠 戢 戣 戧 戩\n戫 戹 戽 扂 扃 扄 扆 扌 扐 扑 扒 扔 扖 扚 扜 扤\n扭 扯 扳 扺 扽 抍 抎 抏 抐 抦 抨 抳 抶 抷 抺 抾\n抿 拄 拎 拕 拖 拚 拪 拲 拴 拼 拽 挃 挄 挊 挋 挍\n挐 挓 挖 挘 挩 挪 挭 挵 挶 挹 挼 捁 捂 捃 捄 捆\n捊 捋 捎 捒 捓 捔 捘 捛 捥 捦 捬 捭 捱 捴 捵\n  捸 捼 捽 捿 掂 掄 掇 掊 掐 掔 掕 掙 掚 掞 掤\n掦 掭 掮 掯 掽 揁 揅 揈 揎 揑 揓 揔 揕 揜 揠 揥\n揪 揬 揲 揳 揵 揸 揹 搉 搊 搐 搒 搔 搘 搞 搠 搢\n搤 搥 搩 搪 搯 搰 搵 搽 搿 摋 摏 摑 摒 摓 摔 摚\n摛 摜 摝 摟 摠 摡 摣 摭 摳 摴 摻 摽 撅 撇 撏 撐\n撑 撘 撙 撛 撝 撟 撡 撣 撦 撨 撬 撳 撽 撾 撿\n  擄 擉 擊 擋 擌 擎 擐 擑 擕 擗 擤 擥 擩 擪 擭\n擰 擵 擷 擻 擿 攁 攄 攈 攉 攊 攏 攓 攔 攖 攙 攛\n攞 攟 攢 攦 攩 攮 攱 攺 攼 攽 敃 敇 敉 敐 敒 敔\n敟 敠 敧 敫 敺 敽 斁 斅 斊 斒 斕 斘 斝 斠 斣 斦\n斮 斲 斳 斴 斿 旂 旈 旉 旎 旐 旔 旖 旘 旟 旰 旲\n旴 旵 旹 旾 旿 昀 昄 昈 昉 昍 昑 昒 昕 昖 昝\n  昞 昡 昢 昣 昤 昦 昩 昪 昫 昬 昮 昰 昱 昳 昹\n昷 晀 晅 晆 晊 晌 晑 晎 晗 晘 晙 晛 晜 晠 晡 曻\n晪 晫 晬 晾 晳 晵 晿 晷 晸 晹 晻 暀 晼 暋 暌 暍\n暐 暒 暙 暚 暛 暜 暟 暠 暤 暭 暱 暲 暵 暻 暿 曀\n曂 曃 曈 曌 曎 曏 曔 曛 曟 曨 曫 曬 曮 曺 朅 朇\n朎 朓 朙 朜 朠 朢 朳 朾 杅 杇 杈 杌 杔 杕 杝\n  杦 杬 杮 杴 杶 杻 极 构 枎 枏 枑 枓 枖 枘 枙\n枛 枰 枱 枲 枵 枻 枼 枽 柹 柀 柂 柃 柅 柈 柉 柒\n柗 柙 柜 柡 柦 柰 柲 柶 柷 桒 栔 栙 栝 栟 栨 栧\n栬 栭 栯 栰 栱 栳 栻 栿 桄 桅 桊 桌 桕 桗 桘 桛\n桫 桮 桯 桰 桱 桲 桵 桹 桺 桻 桼 梂 梄 梆 梈 梖\n梘 梚 梜 梡 梣 梥 梩 梪 梮 梲 梻 棅 棈 棌 棏\n  棐 棑 棓 棖 棙 棜 棝 棥 棨 棪 棫 棬 棭 棰 棱\n棵 棶 棻 棼 棽 椆 椉 椊 椐 椑 椓 椖 椗 椱 椳 椵\n椸 椻 楂 楅 楉 楎 楗 楛 楣 楤 楥 楦 楨 楩 楬 楰\n楱 楲 楺 楻 楿 榀 榍 榒 榖 榘 榡 榥 榦 榨 榫 榭\n榯 榷 榸 榺 榼 槅 槈 槑 槖 槗 槢 槥 槮 槯 槱 槳\n槵 槾 樀 樁 樃 樏 樑 樕 樚 樝 樠 樤 樨 樰 樲\n  樴 樷 樻 樾 樿 橅 橆 橉 橊 橎 橐 橑 橒 橕 橖\n橛 橤 橧 橪 橱 橳 橾 檁 檃 檆 檇 檉 檋 檑 檛 檝\n檞 檟 檥 檫 檯 檰 檱 檴 檽 檾 檿 櫆 櫉 櫈 櫌 櫐\n櫔 櫕 櫖 櫜 櫝 櫤 櫧 櫬 櫰 櫱 櫲 櫼 櫽 欂 欃 欆\n欇 欉 欏 欐 欑 欗 欛 欞 欤 欨 欫 欬 欯 欵 欶 欻\n欿 歆 歊 歍 歒 歖 歘 歝 歠 歧 歫 歮 歰 歵 歽\n  歾 殂 殅 殗 殛 殟 殠 殢 殣 殨 殩 殬 殭 殮 殰\n殸 殹 殽 殾 毃 毄 毉 毌 毖 毚 毡 毣 毦 毧 毮 毱\n毷 毹 毿 氂 氄 氅 氉 氍 氎 氐 氒 氙 氟 氦 氧 氨\n氬 氮 氳 氵 氶 氺 氻 氿 汊 汋 汍 汏 汒 汔 汙 汛\n汜 汫 汭 汯 汴 汶 汸 汹 汻 沅 沆 沇 沉 沔 沕 沗\n沘 沜 沟 沰 沲 沴 泂 泆 泍 泏 泐 泑 泒 泔 泖\n  泚 泜 泠 泧 泩 泫 泬 泮 泲 泴 洄 洇 洊 洎 洏\n洑 洓 洚 洦 洧 洨 汧 洮 洯 洱 洹 洼 洿 浗 浞 浟\n浡 浥 浧 浯 浰 浼 涂 涇 涑 涒 涔 涖 涗 涘 涪 涬\n涴 涷 涹 涽 涿 淄 淈 淊 淎 淏 淖 淛 淝 淟 淠 淢\n淥 淩 淯 淰 淴 淶 淼 渀 渄 渞 渢 渧 渲 渶 渹 渻\n渼 湄 湅 湈 湉 湋 湏 湑 湒 湓 湔 湗 湜 湝 湞\n  湢 湣 湨 湳 湻 湽 溍 溓 溙 溠 溧 溭 溮 溱 溳\n溻 溿 滀 滁 滃 滇 滈 滊 滍 滎 滏 滫 滭 滮 滹 滻\n滽 漄 漈 漊 漌 漍 漖 漘 漚 漛 漦 漩 漪 漯 漰 漳\n漶 漻 漼 漭 潏 潑 潒 潓 潗 潙 潚 潝 潞 潡 潢 潨\n潬 潽 潾 澃 澇 澈 澋 澌 澍 澐 澒 澓 澔 澖 澚 澟\n澠 澥 澦 澧 澨 澮 澯 澰 澵 澶 澼 濅 濇 濈 濊\n  濚 濞 濨 濩 濰 濵 濹 濼 濽 瀀 瀅 瀆 瀇 瀍 瀗\n瀠 瀣 瀯 瀴 瀷 瀹 瀼 灃 灄 灈 灉 灊 灋 灔 灕 灝\n灞 灎 灤 灥 灬 灮 灵 灶 灾 炁 炅 炆 炔 炕 炖 炗\n炘 炛 炤 炫 炰 炱 炴 炷 烊 烑 烓 烔 烕 烖 烘 烜\n烤 烺 焃 焄 焅 焆 焇 焋 焌 焏 焞 焠 焫 焭 焯 焰\n焱 焸 煁 煅 煆 煇 煊 煋 煐 煒 煗 煚 煜 煞 煠\n  煨 煹 熀 熅 熇 熌 熒 熚 熛 熠 熢 熯 熰 熲 熳\n熺 熿 燀 燁 燄 燋 燌 燓 燖 燙 燚 燜 燸 燾 爀 爇\n爈 爉 爓 爗 爚 爝 爟 爤 爫 爯 爴 爸 爹 牁 牂 牃\n牅 牎 牏 牐 牓 牕 牖 牚 牜 牞 牠 牣 牨 牫 牮 牯\n牱 牷 牸 牻 牼 牿 犄 犉 犍 犎 犓 犛 犨 犭 犮 犱\n犴 犾 狁 狇 狉 狌 狕 狖 狘 狟 狥 狳 狴 狺 狻\n  狾 猂 猄 猅 猇 猋 猍 猒 猓 猘 猙 猞 猢 猤 猧\n猨 猬 猱 猲 猵 猺 猻 猽 獃 獍 獐 獒 獖 獘 獝 獞\n獟 獠 獦 獧 獩 獫 獬 獮 獯 獱 獷 獹 獼 玀 玁 玃\n玅 玆 玎 玐 玓 玕 玗 玘 玜 玞 玟 玠 玢 玥 玦 玪\n玫 玭 玵 玷 玹 玼 玽 玿 珅 珆 珉 珋 珌 珏 珒 珓\n珖 珙 珝 珡 珣 珦 珧 珩 珴 珵 珷 珹 珺 珻 珽\n  珿 琀 琁 琄 琇 琊 琑 琚 琛 琤 琦 琨 琩 琪 琫\n琬 琭 琮 琯 琰 琱 琹 瑀 瑃 瑄 瑆 瑇 瑋 瑍 瑑 瑒\n瑗 瑝 瑢 瑦 瑧 瑨 瑫 瑭 瑮 瑱 瑲 璀 璁 璅 璆 璇\n璉 璏 璐 璑 璒 璘 璙 璚 璜 璟 璠 璡 璣 璦 璨 璩\n璪 璫 璮 璯 璱 璲 璵 璹 璻 璿 瓈 瓉 瓌 瓐 瓓 瓘\n瓚 瓛 瓞 瓟 瓤 瓨 瓪 瓫 瓯 瓴 瓺 瓻 瓼 瓿 甆\n  甒 甖 甗 甠 甡 甤 甧 甩 甪 甯 甶 甹 甽 甾 甿\n畀 畃 畇 畈 畎 畐 畒 畗 畞 畟 畡 畯 畱 畹 畺 畻\n畼 畽 畾 疁 疅 疐 疒 疓 疕 疙 疜 疢 疤 疴 疺 疿\n痀 痁 痄 痆 痌 痎 痏 痗 痜 痟 痠 痡 痤 痧 痬 痮\n痯 痱 痹 瘀 瘂 瘃 瘄 瘇 瘈 瘊 瘌 瘏 瘒 瘓 瘕 瘖\n瘙 瘛 瘜 瘝 瘞 瘣 瘥 瘦 瘩 瘭 瘲 瘳 瘵 瘸 瘹\n  瘺 瘼 癊 癀 癁 癃 癄 癅 癉 癋 癕 癙 癟 癤 癥\n癭 癮 癯 癱 癴 皁 皅 皌 皍 皕 皛 皜 皝 皟 皠 皢\n皣 皤 皥 皦 皧 皨 皪 皭 皽 盁 盅 盉 盋 盌 盎 盔\n盙 盠 盦 盨 盬 盰 盱 盶 盹 盼 眀 眆 眊 眎 眒 眔\n眕 眗 眙 眚 眜 眢 眨 眭 眮 眯 眴 眵 眶 眹 眽 眾\n睂 睅 睆 睊 睍 睎 睏 睒 睖 睗 睜 睞 睟 睠 睢\n  睤 睧 睪 睬 睰 睲 睳 睴 睺 睽 瞀 瞄 瞌 瞍 瞔\n瞕 瞖 瞚 瞟 瞢 瞧 瞪 瞮 瞯 瞱 瞵 瞾 矃 矉 矑 矒\n矕 矙 矞 矟 矠 矤 矦 矪 矬 矰 矱 矴 矸 矻 砅 砆\n砉 砍 砎 砑 砝 砡 砢 砣 砭 砮 砰 砵 砷 硃 硄 硇\n硈 硌 硎 硒 硜 硞 硠 硡 硣 硤 硨 硪 确 硺 硾 碊\n碏 碔 碘 碡 碝 碞 碟 碤 碨 碬 碭 碰 碱 碲 碳\n  碻 碽 碿 磇 磈 磉 磌 磎 磒 磓 磕 磖 磤 磛 磟\n磠 磡 磦 磪 磲 磳 礀 磶 磷 磺 磻 磿 礆 礌 礐 礚\n礜 礞 礟 礠 礥 礧 礩 礭 礱 礴 礵 礻 礽 礿 祄 祅\n祆 祊 祋 祏 祑 祔 祘 祛 祜 祧 祩 祫 祲 祹 祻 祼\n祾 禋 禌 禑 禓 禔 禕 禖 禘 禛 禜 禡 禨 禩 禫 禯\n禱 禴 禸 离 秂 秄 秇 秈 秊 秏 秔 秖 秚 秝 秞\n  秠 秢 秥 秪 秫 秭 秱 秸 秼 稂 稃 稇 稉 稊 稌\n稑 稕 稛 稞 稡 稧 稫 稭 稯 稰 稴 稵 稸 稹 稺 穄\n穅 穇 穈 穌 穕 穖 穙 穜 穝 穟 穠 穥 穧 穪 穭 穵\n穸 穾 窀 窂 窅 窆 窊 窋 窐 窑 窔 窞 窠 窣 窬 窳\n窵 窹 窻 窼 竆 竉 竌 竎 竑 竛 竨 竩 竫 竬 竱 竴\n竻 竽 竾 笇 笔 笟 笣 笧 笩 笪 笫 笭 笮 笯 笰\n  笱 笴 笽 笿 筀 筁 筇 筎 筕 筠 筤 筦 筩 筪 筭\n筯 筲 筳 筷 箄 箉 箎 箐 箑 箖 箛 箞 箠 箥 箬 箯\n箰 箲 箵 箶 箺 箻 箼 箽 篂 篅 篈 篊 篔 篖 篗 篙\n篚 篛 篨 篪 篲 篴 篵 篸 篹 篺 篼 篾 簁 簂 簃 簄\n簆 簉 簋 簌 簎 簏 簙 簛 簠 簥 簦 簨 簬 簱 簳 簴\n簶 簹 簺 籆 籊 籕 籑 籒 籓 籙 籚 籛 籜 籝 籞\n  籡 籣 籧 籩 籭 籮 籰 籲 籹 籼 籽 粆 粇 粏 粔\n粞 粠 粦 粰 粶 粷 粺 粻 粼 粿 糄 糇 糈 糉 糍 糏\n糓 糔 糕 糗 糙 糚 糝 糦 糩 糫 糵 紃 紇 紈 紉 紏\n紑 紒 紓 紖 紝 紞 紣 紦 紪 紭 紱 紼 紽 紾 絀 絁\n絇 絈 絍 絑 絓 絗 絙 絚 絜 絝 絥 絧 絪 絰 絸 絺\n絻 絿 綁 綂 綃 綅 綆 綈 綋 綌 綍 綑 綖 綗 綝\n  綞 綦 綧 綪 綳 綶 綷 綹 緂 緃 緄 緅 緆 緌 緍\n緎 緗 緙 縀 緢 緥 緦 緪 緫 緭 緱 緵 緶 緹 緺 縈\n縐 縑 縕 縗 縜 縝 縠 縧 縨 縬 縭 縯 縳 縶 縿 繄\n繅 繇 繎 繐 繒 繘 繟 繡 繢 繥 繫 繮 繯 繳 繸 繾\n纁 纆 纇 纊 纍 纑 纕 纘 纚 纝 纞 缼 缻 缽 缾 缿\n罃 罄 罇 罏 罒 罓 罛 罜 罝 罡 罣 罤 罥 罦 罭\n  罱 罽 罾 罿 羀 羋 羍 羏 羐 羑 羖 羗 羜 羡 羢\n羦 羪 羭 羴 羼 羿 翀 翃 翈 翎 翏 翛 翟 翣 翥 翨\n翬 翮 翯 翲 翺 翽 翾 翿 耇 耈 耊 耍 耎 耏 耑 耓\n耔 耖 耝 耞 耟 耠 耤 耦 耬 耮 耰 耴 耵 耷 耹 耺\n耼 耾 聀 聄 聠 聤 聦 聭 聱 聵 肁 肈 肎 肜 肞 肦\n肧 肫 肸 肹 胈 胍 胏 胒 胔 胕 胗 胘 胠 胭 胮\n  胰 胲 胳 胶 胹 胺 胾 脃 脋 脖 脗 脘 脜 脞 脠\n脤 脧 脬 脰 脵 脺 脼 腅 腇 腊 腌 腒 腗 腠 腡 腧\n腨 腩 腭 腯 腷 膁 膐 膄 膅 膆 膋 膎 膖 膘 膛 膞\n膢 膮 膲 膴 膻 臋 臃 臅 臊 臎 臏 臕 臗 臛 臝 臞\n臡 臤 臫 臬 臰 臱 臲 臵 臶 臸 臹 臽 臿 舀 舃 舏\n舓 舔 舙 舚 舝 舡 舢 舨 舲 舴 舺 艃 艄 艅 艆\n  艋 艎 艏 艑 艖 艜 艠 艣 艧 艭 艴 艻 艽 艿 芀\n芁 芃 芄 芇 芉 芊 芎 芑 芔 芖 芘 芚 芛 芠 芡 芣\n芤 芧 芨 芩 芪 芮 芰 芲 芴 芷 芺 芼 芾 芿 苆 苐\n苕 苚 苠 苢 苤 苨 苪 苭 苯 苶 苷 苽 苾 茀 茁 茇\n茈 茊 茋 荔 茛 茝 茞 茟 茡 茢 茬 茭 茮 茰 茳 茷\n茺 茼 茽 荂 荃 荄 荇 荍 荎 荑 荕 荖 荗 荰 荸\n  荽 荿 莀 莂 莄 莆 莍 莒 莔 莕 莘 莙 莛 莜 莝\n莦 莧 莩 莬 莾 莿 菀 菇 菉 菏 菐 菑 菔 菝 荓 菨\n菪 菶 菸 菹 菼 萁 萆 萊 萏 萑 萕 萙 莭 萯 萹 葅\n葇 葈 葊 葍 葏 葑 葒 葖 葘 葙 葚 葜 葠 葤 葥 葧\n葪 葰 葳 葴 葶 葸 葼 葽 蒁 蒅 蒒 蒓 蒕 蒞 蒦 蒨\n蒩 蒪 蒯 蒱 蒴 蒺 蒽 蒾 蓀 蓂 蓇 蓈 蓌 蓏 蓓\n  蓜 蓧 蓪 蓯 蓰 蓱 蓲 蓷 蔲 蓺 蓻 蓽 蔂 蔃 蔇\n蔌 蔎 蔐 蔜 蔞 蔢 蔣 蔤 蔥 蔧 蔪 蔫 蔯 蔳 蔴 蔶\n蔿 蕆 蕏 蕐 蕑 蕒 蕓 蕖 蕙 蕜 蕝 蕞 蕟 蕠 蕡 蕢\n蕤 蕫 蕯 蕹 蕺 蕻 蕽 蕿 薁 薅 薆 薉 薋 薌 薏 薓\n薘 薝 薟 薠 薢 薥 薧 薴 薶 薷 薸 薼 薽 薾 薿 藂\n藇 藊 藋 藎 薭 藘 藚 藟 藠 藦 藨 藭 藳 藶 藼\n  藿 蘀 蘄 蘅 蘍 蘎 蘐 蘑 蘒 蘘 蘙 蘛 蘞 蘡 蘧\n蘩 蘶 蘸 蘺 蘼 蘽 虀 虂 虆 虒 虓 虖 虗 虘 虙 虝\n虠 虡 虢 虣 虤 虩 虬 虯 虵 虶 虷 虺 蚍 蚑 蚖 蚘\n蚚 蚜 蚡 蚦 蚧 蚨 蚭 蚱 蚳 蚴 蚵 蚷 蚸 蚹 蚿 蛀\n蛁 蛃 蛅 蛑 蛒 蛕 蛗 蛚 蛜 蛠 蛣 蛥 蛧 蚈 蛺 蛼\n蛽 蜄 蜅 蜇 蜋 蜎 蜏 蜐 蜓 蜔 蜙 蜞 蜟 蜡 蜣\n  蜨 蜮 蜯 蜱 蜲 蜹 蜺 蜼 蜽 蜾 蝀 蝃 蝅 蝍 蝘\n蝝 蝡 蝤 蝥 蝯 蝱 蝲 蝻 螃 螄 螅 螆 螇 螈 螉 螋\n螌 螐 螓 螕 螗 螘 螙 螞 螠 螣 螧 螬 螭 螮 螱 螵\n螾 螿 蟁 蟈 蟉 蟊 蟎 蟕 蟖 蟙 蟚 蟜 蟟 蟢 蟣 蟤\n蟪 蟫 蟭 蟱 蟳 蟸 蟺 蟿 蠁 蠃 蠆 蠉 蠊 蠋 蠐 蠙\n蠒 蠓 蠔 蠘 蠚 蠛 蠜 蠞 蠟 蠨 蠭 蠮 蠰 蠲 蠵\n  蠺 蠼 衁 衃 衅 衈 衉 衊 衋 衎 衑 衕 衖 衘 衚\n衜 衟 衠 衤 衩 衱 衹 衻 袀 袘 袚 袛 袜 袟 袠 袨\n袪 袺 袽 袾 裀 裊 裋 裌 裍 裎 裑 裒 裓 裛 裞 裧\n裯 裰 裱 裵 裷 褁 褆 褍 褎 褏 褕 褖 褘 褙 褚 褜\n褠 褦 褧 褨 褰 褱 褲 褵 褹 褺 褾 襀 襂 襅 襆 襉\n襏 襒 襗 襚 襛 襜 襡 襢 襣 襫 襮 襰 襳 襵 襺\n  襻 襼 襽 覉 覍 覐 覔 覕 覛 覜 覟 覠 覥 覰 覴\n覵 覶 覷 覼 觔 觕 觖 觗 觘 觥 觩 觫 觭 觱 觳 觶\n觹 觽 觿 訄 訅 訇 訏 訑 訒 訔 訕 訞 訠 訢 訤 訦\n訫 訬 訯 訵 訷 訽 訾 詀 詃 詅 詇 詉 詍 詎 詓 詖\n詗 詘 詜 詝 詡 詥 詧 詵 詶 詷 詹 詺 詻 詾 詿 誀\n誃 誆 誋 誏 誐 誒 誖 誗 誙 誟 誧 誩 誮 誯 誳\n  誶 誷 誻 誾 諃 諆 諈 諉 諊 諑 諓 諔 諕 諗 諝\n諟 諬 諰 諴 諵 諶 諼 諿 謅 謆 謋 謑 謜 謞 謟 謊\n謭 謰 謷 謼 譂 譃 譄 譅 譆 譈 譒 譓 譔 譙 譍 譞\n譣 譭 譶 譸 譹 譼 譾 讁 讄 讅 讋 讍 讏 讔 讕 讜\n讞 讟 谸 谹 谽 谾 豅 豇 豉 豋 豏 豑 豓 豔 豗 豘\n豛 豝 豙 豣 豤 豦 豨 豩 豭 豳 豵 豶 豻 豾 貆\n  貇 貋 貐 貒 貓 貙 貛 貜 貤 貹 貺 賅 賆 賉 賋\n賏 賖 賕 賙 賝 賡 賨 賬 賯 賰 賲 賵 賷 賸 賾 賿\n贁 贃 贉 贒 贗 贛 赥 赩 赬 赮 赿 趂 趄 趈 趍 趐\n趑 趕 趞 趟 趠 趦 趫 趬 趯 趲 趵 趷 趹 趻 跀 跅\n跆 跇 跈 跊 跎 跑 跔 跕 跗 跙 跤 跥 跧 跬 跰 趼\n跱 跲 跴 跽 踁 踄 踅 踆 踋 踑 踔 踖 踠 踡 踢\n  踣 踦 踧 踱 踳 踶 踷 踸 踹 踽 蹀 蹁 蹋 蹍 蹎\n蹏 蹔 蹛 蹜 蹝 蹞 蹡 蹢 蹩 蹬 蹭 蹯 蹰 蹱 蹹 蹺\n蹻 躂 躃 躉 躐 躒 躕 躚 躛 躝 躞 躢 躧 躩 躭 躮\n躳 躵 躺 躻 軀 軁 軃 軄 軇 軏 軑 軔 軜 軨 軮 軰\n軱 軷 軹 軺 軭 輀 輂 輇 輈 輏 輐 輖 輗 輘 輞 輠\n輡 輣 輥 輧 輨 輬 輭 輮 輴 輵 輶 輷 輺 轀 轁\n  轃 轇 轏 轑 轒 轓 轔 轕 轘 轝 轞 轥 辝 辠 辡\n辤 辥 辦 辵 辶 辸 达 迀 迁 迆 迊 迋 迍 运 迒 迓\n迕 迠 迣 迤 迨 迮 迱 迵 迶 迻 迾 适 逄 逈 逌 逘\n逛 逨 逩 逯 逪 逬 逭 逳 逴 逷 逿 遃 遄 遌 遛 遝\n遢 遦 遧 遬 遰 遴 遹 邅 邈 邋 邌 邎 邐 邕 邗 邘\n邙 邛 邠 邡 邢 邥 邰 邲 邳 邴 邶 邽 郌 邾 郃\n  郄 郅 郇 郈 郕 郗 郘 郙 郜 郝 郟 郥 郒 郶 郫\n郯 郰 郴 郾 郿 鄀 鄄 鄅 鄆 鄈 鄍 鄐 鄔 鄖 鄗 鄘\n鄚 鄜 鄞 鄠 鄥 鄢 鄣 鄧 鄩 鄮 鄯 鄱 鄴 鄶 鄷 鄹\n鄺 鄼 鄽 酃 酇 酈 酏 酓 酗 酙 酚 酛 酡 酤 酧 酭\n酴 酹 酺 酻 醁 醃 醅 醆 醊 醎 醑 醓 醔 醕 醘 醞\n醡 醦 醨 醬 醭 醮 醰 醱 醲 醳 醶 醻 醼 醽 醿\n  釂 釃 釅 釓 釔 釗 釙 釚 釞 釤 釥 釩 釪 釬 釭\n釮 釯 釰 釱 釷 釹 釻 釽 鈀 鈁 鈄 鈅 鈆 鈇 鈉 鈊\n鈌 鈐 鈒 鈓 鈖 鈘 鈜 鈝 鈣 鈤 鈥 鈦 鈨 鈮 鈯 鈰\n鈳 鈵 鈶 鈸 鈹 鈺 鈼 鈾 鉀 鉂 鉃 鉆 鉇 鉊 鉍 鉎\n鉏 鉑 鉘 鉙 鉜 鉝 鉠 鉡 鉥 鉧 鉨 鉩 鉮 鉯 鉰 鉵\n鉶 鉷 鉸 鉹 鉻 鉼 鉽 鉿 銈 銉 銊 銍 銎 銒 銗\n  銙 銟 銠 銤 銥 銧 銨 銫 銯 銲 銶 銸 銺 銻 銼\n銽 銿 鋀 鋁 鋂 鋃 鋅 鋆 鋇 鋈 鋋 鋌 鋍 鋎 鋐 鋓\n鋕 鋗 鋘 鋙 鋜 鋝 鋟 鋠 鋡 鋣 鋥 鋧 鋨 鋬 鋮 鋰\n鋹 鋻 鋿 錀 錂 錈 錍 錑 錔 錕 錜 錝 錞 錟 錡 錤\n錥 錧 錩 錪 錳 錴 錶 錷 鍇 鍈 鍉 鍐 鍑 鍒 鍕 鍗\n鍘 鍚 鍞 鍤 鍥 鍧 鍩 鍪 鍭 鍯 鍰 鍱 鍳 鍴 鍶\n  鍺 鍽 鍿 鎀 鎁 鎂 鎈 鎊 鎋 鎍 鎏 鎒 鎕 鎘 鎛\n鎞 鎡 鎣 鎤 鎦 鎨 鎫 鎴 鎵 鎶 鎺 鎩 鏁 鏄 鏅 鏆\n鏇 鏉 鏊 鏋 鏌 鏍 鏓 鏙 鏜 鏞 鏟 鏢 鏦 鏧 鏹 鏷\n鏸 鏺 鏻 鏽 鐁 鐂 鐄 鐈 鐉 鐍 鐎 鐏 鐕 鐖 鐗 鐟\n鐮 鐯 鐱 鐲 鐳 鐴 鐻 鐿 鐽 鑃 鑅 鑈 鑊 鑌 鑕 鑙\n鑜 鑟 鑡 鑣 鑨 鑫 鑭 鑮 鑯 鑱 鑲 钄 钃 镸 镹\n  镾 閄 閈 閌 閍 閎 閝 閞 閟 閡 閦 閩 閫 閬 閴\n閶 閺 閽 閿 闆 闈 闉 闋 闐 闑 闒 闓 闙 闚 闝 闞\n闟 闠 闤 闦 阝 阞 阢 阤 阥 阦 阬 阱 阳 阷 阸 阹\n阺 阼 阽 陁 陒 陔 陖 陗 陘 陡 陮 陴 陻 陼 陾 陿\n隁 隂 隃 隄 隉 隑 隖 隚 隝 隟 隤 隥 隦 隩 隮 隯\n隳 隺 雊 雒 嶲 雘 雚 雝 雞 雟 雩 雯 雱 雺 霂\n  霃 霅 霉 霚 霛 霝 霡 霢 霣 霨 霱 霳 靁 靃 靊\n靎 靏 靕 靗 靘 靚 靛 靣 靧 靪 靮 靳 靶 靷 靸 靻\n靽 靿 鞀 鞉 鞕 鞖 鞗 鞙 鞚 鞞 鞟 鞢 鞬 鞮 鞱 鞲\n鞵 鞶 鞸 鞹 鞺 鞼 鞾 鞿 韁 韄 韅 韇 韉 韊 韌 韍\n韎 韐 韑 韔 韗 韘 韙 韝 韞 韠 韛 韡 韤 韯 韱 韴\n韷 韸 韺 頇 頊 頙 頍 頎 頔 頖 頜 頞 頠 頣 頦\n  頫 頮 頯 頰 頲 頳 頵 頥 頾 顄 顇 顊 顑 顒 顓\n顖 顗 顙 顚 顢 顣 顥 顦 顪 顬 颫 颭 颮 颰 颴 颷\n颸 颺 颻 颿 飂 飅 飈 飌 飡 飣 飥 飦 飧 飪 飳 飶\n餂 餇 餈 餑 餕 餖 餗 餚 餛 餜 餟 餢 餦 餧 餫 餱\n餲 餳 餴 餵 餹 餺 餻 餼 饀 饁 饆 饇 饈 饍 饎 饔\n饘 饙 饛 饜 饞 饟 饠 馛 馝 馟 馦 馰 馱 馲 馵\n  馹 馺 馽 馿 駃 駉 駓 駔 駙 駚 駜 駞 駧 駪 駫\n駬 駰 駴 駵 駹 駽 駾 騂 騃 騄 騋 騌 騐 騑 騖 騞\n騠 騢 騣 騤 騧 騭 騮 騳 騵 騶 騸 驇 驁 驄 驊 驋\n驌 驎 驑 驔 驖 驝 骪 骬 骮 骯 骲 骴 骵 骶 骹 骻\n骾 骿 髁 髃 髆 髈 髎 髐 髒 髕 髖 髗 髛 髜 髠 髤\n髥 髧 髩 髬 髲 髳 髵 髹 髺 髽 髿 鬀 鬁 鬂 鬃\n  鬄 鬅 鬈 鬉 鬋 鬌 鬍 鬎 鬐 鬒 鬖 鬙 鬛 鬜 鬠\n鬦 鬫 鬭 鬳 鬴 鬵 鬷 鬹 鬺 鬽 魈 魋 魌 魕 魖 魗\n魛 魞 魡 魣 魥 魦 魨 魪 魫 魬 魭 魮 魳 魵 魷 魸\n魹 魿 鮀 鮄 鮅 鮆 鮇 鮉 鮊 鮋 鮍 鮏 鮐 鮔 鮚 鮝\n鮞 鮦 鮧 鮩 鮬 鮰 鮱 鮲 鮷 鮸 鮻 鮼 鮾 鮿 鯁 鯇\n鯈 鯎 鯐 鯗 鯘 鯝 鯟 鯥 鯧 鯪 鯫 鯯 鯳 鯷 鯸\n  鯹 鯺 鯽 鯿 鰀 鰂 鰋 鰏 鰑 鰖 鰘 鰙 鰚 鰜 鰞\n鰢 鰣 鰦 鰧 鰨 鰩 鰪 鰱 鰵 鰶 鰷 鰽 鱁 鱃 鱄 鱅\n鱉 鱊 鱎 鱏 鱐 鱓 鱔 鱖 鱘 鱛 鱝 鱞 鱟 鱣 鱩 鱪\n鱜 鱫 鱨 鱮 鱰 鱲 鱵 鱷 鱻 鳦 鳲 鳷 鳹 鴋 鴂 鴑\n鴗 鴘 鴜 鴝 鴞 鴯 鴰 鴲 鴳 鴴 鴺 鴼 鵅 鴽 鵂 鵃\n鵇 鵊 鵓 鵔 鵟 鵣 鵢 鵥 鵩 鵪 鵫 鵰 鵶 鵷 鵻\n  鵼 鵾 鶃 鶄 鶆 鶊 鶍 鶎 鶒 鶓 鶕 鶖 鶗 鶘 鶡\n鶪 鶬 鶮 鶱 鶵 鶹 鶼 鶿 鷃 鷇 鷉 鷊 鷔 鷕 鷖 鷗\n鷚 鷞 鷟 鷠 鷥 鷧 鷩 鷫 鷮 鷰 鷳 鷴 鷾 鸊 鸂 鸇\n鸎 鸐 鸑 鸒 鸕 鸖 鸙 鸜 鸝 鹺 鹻 鹼 麀 麂 麃 麄\n麅 麇 麎 麏 麖 麘 麛 麞 麤 麨 麬 麮 麯 麰 麳 麴\n麵 黆 黈 黋 黕 黟 黤 黧 黬 黭 黮 黰 黱 黲 黵\n  黸 黿 鼂 鼃 鼉 鼏 鼐 鼑 鼒 鼔 鼖 鼗 鼙 鼚 鼛\n鼟 鼢 鼦 鼪 鼫 鼯 鼱 鼲 鼴 鼷 鼹 鼺 鼼 鼽 鼿 齁\n齃 齄 齅 齆 齇 齓 齕 齖 齗 齘 齚 齝 齞 齨 齩 齭\n齮 齯 齰 齱 齳 齵 齺 齽 龏 龐 龑 龒 龔 龖 龗 龞\n龡 龢 龣 龥\n  ⅰ ⅱ ⅲ ⅳ ⅴ ⅵ ⅶ ⅷ ⅸ ⅹ\n          ＇ ＂       炻 仼 僴 凬 匇 匤\n﨎 咊 坙 﨏 塚 增 寬 峵 嵓 﨑 德 悅 愠 敎   晥\n晴 朗 栁 﨓 﨔 橫 櫢 淸 淲 瀨 凞 猪 甁 皂 皞 益\n礰 礼 神 祥 福 竧 靖 精 綠 緖 羽 荢 﨟 薰 蘒 﨡\n蠇 諸 譿 賴 赶 﨣 﨤 逸 郞 都 鄕 﨧 﨨 閒 隆\n  﨩 霻   靑 飯 飼 館 馞 髙 魲 鶴 黑\n      靍\n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n                \n               \n               \n               \n               \n              \n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-JP-MS-snippet.alt",
    "content": "  ! \" # $ % & ' ( ) * + , - . /\n0 1 2 3 4 5 6 7 8 9 : ; < = > ?\n@ A B C D E F G H I J K L M N O\nP Q R S T U V W X Y Z [ \\ ] ^ _\n` a b c d e f g h i j k l m n o\np q r s t u v w x y z { | } ~\n  \u001b(I!\u001b(B \u001b(I\"\u001b(B \u001b(I#\u001b(B \u001b(I$\u001b(B \u001b(I%\u001b(B \u001b(I&\u001b(B \u001b(I'\u001b(B \u001b(I(\u001b(B \u001b(I)\u001b(B \u001b(I*\u001b(B \u001b(I+\u001b(B \u001b(I,\u001b(B \u001b(I-\u001b(B \u001b(I.\u001b(B \u001b(I/\u001b(B\n\u001b(I0\u001b(B \u001b(I1\u001b(B \u001b(I2\u001b(B \u001b(I3\u001b(B \u001b(I4\u001b(B \u001b(I5\u001b(B \u001b(I6\u001b(B \u001b(I7\u001b(B \u001b(I8\u001b(B \u001b(I9\u001b(B \u001b(I:\u001b(B \u001b(I;\u001b(B \u001b(I<\u001b(B \u001b(I=\u001b(B \u001b(I>\u001b(B \u001b(I?\u001b(B\n\u001b(I@\u001b(B \u001b(IA\u001b(B \u001b(IB\u001b(B \u001b(IC\u001b(B \u001b(ID\u001b(B \u001b(IE\u001b(B \u001b(IF\u001b(B \u001b(IG\u001b(B \u001b(IH\u001b(B \u001b(II\u001b(B \u001b(IJ\u001b(B \u001b(IK\u001b(B \u001b(IL\u001b(B \u001b(IM\u001b(B \u001b(IN\u001b(B \u001b(IO\u001b(B\n\u001b(IP\u001b(B \u001b(IQ\u001b(B \u001b(IR\u001b(B \u001b(IS\u001b(B \u001b(IT\u001b(B \u001b(IU\u001b(B \u001b(IV\u001b(B \u001b(IW\u001b(B \u001b(IX\u001b(B \u001b(IY\u001b(B \u001b(IZ\u001b(B \u001b(I[\u001b(B \u001b(I\\\u001b(B \u001b(I]\u001b(B \u001b(I^\u001b(B \u001b(I_\u001b(B\n  \u001b$B!!\u001b(B \u001b$B!\"\u001b(B \u001b$B!#\u001b(B \u001b$B!$\u001b(B \u001b$B!%\u001b(B \u001b$B!&\u001b(B \u001b$B!'\u001b(B \u001b$B!(\u001b(B \u001b$B!)\u001b(B \u001b$B!*\u001b(B \u001b$B!+\u001b(B \u001b$B!,\u001b(B \u001b$B!-\u001b(B \u001b$B!.\u001b(B \u001b$B!/\u001b(B\n\u001b$B!0\u001b(B \u001b$B!1\u001b(B \u001b$B!2\u001b(B \u001b$B!3\u001b(B \u001b$B!4\u001b(B \u001b$B!5\u001b(B \u001b$B!6\u001b(B \u001b$B!7\u001b(B \u001b$B!8\u001b(B \u001b$B!9\u001b(B \u001b$B!:\u001b(B \u001b$B!;\u001b(B \u001b$B!<\u001b(B \u001b$B!=\u001b(B \u001b$B!>\u001b(B \u001b$B!?\u001b(B\n\u001b$B!@\u001b(B \u001b$B!A\u001b(B \u001b$B!B\u001b(B \u001b$B!C\u001b(B \u001b$B!D\u001b(B \u001b$B!E\u001b(B \u001b$B!F\u001b(B \u001b$B!G\u001b(B \u001b$B!H\u001b(B \u001b$B!I\u001b(B \u001b$B!J\u001b(B \u001b$B!K\u001b(B \u001b$B!L\u001b(B \u001b$B!M\u001b(B \u001b$B!N\u001b(B \u001b$B!O\u001b(B\n\u001b$B!P\u001b(B \u001b$B!Q\u001b(B \u001b$B!R\u001b(B \u001b$B!S\u001b(B \u001b$B!T\u001b(B \u001b$B!U\u001b(B \u001b$B!V\u001b(B \u001b$B!W\u001b(B \u001b$B!X\u001b(B \u001b$B!Y\u001b(B \u001b$B!Z\u001b(B \u001b$B![\u001b(B \u001b$B!\\\u001b(B \u001b$B!]\u001b(B \u001b$B!^\u001b(B \u001b$B!_\u001b(B\n\u001b$B!`\u001b(B \u001b$B!a\u001b(B \u001b$B!b\u001b(B \u001b$B!c\u001b(B \u001b$B!d\u001b(B \u001b$B!e\u001b(B \u001b$B!f\u001b(B \u001b$B!g\u001b(B \u001b$B!h\u001b(B \u001b$B!i\u001b(B \u001b$B!j\u001b(B \u001b$B!k\u001b(B \u001b$B!l\u001b(B \u001b$B!m\u001b(B \u001b$B!n\u001b(B \u001b$B!o\u001b(B\n\u001b$B!p\u001b(B \u001b$B!q\u001b(B \u001b$B!r\u001b(B \u001b$B!s\u001b(B \u001b$B!t\u001b(B \u001b$B!u\u001b(B \u001b$B!v\u001b(B \u001b$B!w\u001b(B \u001b$B!x\u001b(B \u001b$B!y\u001b(B \u001b$B!z\u001b(B \u001b$B!{\u001b(B \u001b$B!|\u001b(B \u001b$B!}\u001b(B \u001b$B!~\u001b(B\n  \u001b$B\"!\u001b(B \u001b$B\"\"\u001b(B \u001b$B\"#\u001b(B \u001b$B\"$\u001b(B \u001b$B\"%\u001b(B \u001b$B\"&\u001b(B \u001b$B\"'\u001b(B \u001b$B\"(\u001b(B \u001b$B\")\u001b(B \u001b$B\"*\u001b(B \u001b$B\"+\u001b(B \u001b$B\",\u001b(B \u001b$B\"-\u001b(B \u001b$B\".\u001b(B\n                    \u001b$B\":\u001b(B \u001b$B\";\u001b(B \u001b$B\"<\u001b(B \u001b$B\"=\u001b(B \u001b$B\">\u001b(B \u001b$B\"?\u001b(B\n\u001b$B\"@\u001b(B \u001b$B\"A\u001b(B                 \u001b$B\"J\u001b(B \u001b$B\"K\u001b(B \u001b$B\"L\u001b(B \u001b$B\"M\u001b(B \u001b$B\"N\u001b(B \u001b$B\"O\u001b(B\n\u001b$B\"P\u001b(B                       \u001b$B\"\\\u001b(B \u001b$B\"]\u001b(B \u001b$B\"^\u001b(B \u001b$B\"_\u001b(B\n\u001b$B\"`\u001b(B \u001b$B\"a\u001b(B \u001b$B\"b\u001b(B \u001b$B\"c\u001b(B \u001b$B\"d\u001b(B \u001b$B\"e\u001b(B \u001b$B\"f\u001b(B \u001b$B\"g\u001b(B \u001b$B\"h\u001b(B \u001b$B\"i\u001b(B \u001b$B\"j\u001b(B\n    \u001b$B\"r\u001b(B \u001b$B\"s\u001b(B \u001b$B\"t\u001b(B \u001b$B\"u\u001b(B \u001b$B\"v\u001b(B \u001b$B\"w\u001b(B \u001b$B\"x\u001b(B \u001b$B\"y\u001b(B         \u001b$B\"~\u001b(B\n\u001b$B#0\u001b(B \u001b$B#1\u001b(B \u001b$B#2\u001b(B \u001b$B#3\u001b(B \u001b$B#4\u001b(B \u001b$B#5\u001b(B \u001b$B#6\u001b(B \u001b$B#7\u001b(B \u001b$B#8\u001b(B \u001b$B#9\u001b(B\n  \u001b$B#A\u001b(B \u001b$B#B\u001b(B \u001b$B#C\u001b(B \u001b$B#D\u001b(B \u001b$B#E\u001b(B \u001b$B#F\u001b(B \u001b$B#G\u001b(B \u001b$B#H\u001b(B \u001b$B#I\u001b(B \u001b$B#J\u001b(B \u001b$B#K\u001b(B \u001b$B#L\u001b(B \u001b$B#M\u001b(B \u001b$B#N\u001b(B \u001b$B#O\u001b(B\n\u001b$B#P\u001b(B \u001b$B#Q\u001b(B \u001b$B#R\u001b(B \u001b$B#S\u001b(B \u001b$B#T\u001b(B \u001b$B#U\u001b(B \u001b$B#V\u001b(B \u001b$B#W\u001b(B \u001b$B#X\u001b(B \u001b$B#Y\u001b(B \u001b$B#Z\u001b(B\n  \u001b$B#a\u001b(B \u001b$B#b\u001b(B \u001b$B#c\u001b(B \u001b$B#d\u001b(B \u001b$B#e\u001b(B \u001b$B#f\u001b(B \u001b$B#g\u001b(B \u001b$B#h\u001b(B \u001b$B#i\u001b(B \u001b$B#j\u001b(B \u001b$B#k\u001b(B \u001b$B#l\u001b(B \u001b$B#m\u001b(B \u001b$B#n\u001b(B \u001b$B#o\u001b(B\n\u001b$B#p\u001b(B \u001b$B#q\u001b(B \u001b$B#r\u001b(B \u001b$B#s\u001b(B \u001b$B#t\u001b(B \u001b$B#u\u001b(B \u001b$B#v\u001b(B \u001b$B#w\u001b(B \u001b$B#x\u001b(B \u001b$B#y\u001b(B \u001b$B#z\u001b(B\n  \u001b$B$!\u001b(B \u001b$B$\"\u001b(B \u001b$B$#\u001b(B \u001b$B$$\u001b(B \u001b$B$%\u001b(B \u001b$B$&\u001b(B \u001b$B$'\u001b(B \u001b$B$(\u001b(B \u001b$B$)\u001b(B \u001b$B$*\u001b(B \u001b$B$+\u001b(B \u001b$B$,\u001b(B \u001b$B$-\u001b(B \u001b$B$.\u001b(B \u001b$B$/\u001b(B\n\u001b$B$0\u001b(B \u001b$B$1\u001b(B \u001b$B$2\u001b(B \u001b$B$3\u001b(B \u001b$B$4\u001b(B \u001b$B$5\u001b(B \u001b$B$6\u001b(B \u001b$B$7\u001b(B \u001b$B$8\u001b(B \u001b$B$9\u001b(B \u001b$B$:\u001b(B \u001b$B$;\u001b(B \u001b$B$<\u001b(B \u001b$B$=\u001b(B \u001b$B$>\u001b(B \u001b$B$?\u001b(B\n\u001b$B$@\u001b(B \u001b$B$A\u001b(B \u001b$B$B\u001b(B \u001b$B$C\u001b(B \u001b$B$D\u001b(B \u001b$B$E\u001b(B \u001b$B$F\u001b(B \u001b$B$G\u001b(B \u001b$B$H\u001b(B \u001b$B$I\u001b(B \u001b$B$J\u001b(B \u001b$B$K\u001b(B \u001b$B$L\u001b(B \u001b$B$M\u001b(B \u001b$B$N\u001b(B \u001b$B$O\u001b(B\n\u001b$B$P\u001b(B \u001b$B$Q\u001b(B \u001b$B$R\u001b(B \u001b$B$S\u001b(B \u001b$B$T\u001b(B \u001b$B$U\u001b(B \u001b$B$V\u001b(B \u001b$B$W\u001b(B \u001b$B$X\u001b(B \u001b$B$Y\u001b(B \u001b$B$Z\u001b(B \u001b$B$[\u001b(B \u001b$B$\\\u001b(B \u001b$B$]\u001b(B \u001b$B$^\u001b(B \u001b$B$_\u001b(B\n\u001b$B$`\u001b(B \u001b$B$a\u001b(B \u001b$B$b\u001b(B \u001b$B$c\u001b(B \u001b$B$d\u001b(B \u001b$B$e\u001b(B \u001b$B$f\u001b(B \u001b$B$g\u001b(B \u001b$B$h\u001b(B \u001b$B$i\u001b(B \u001b$B$j\u001b(B \u001b$B$k\u001b(B \u001b$B$l\u001b(B \u001b$B$m\u001b(B \u001b$B$n\u001b(B \u001b$B$o\u001b(B\n\u001b$B$p\u001b(B \u001b$B$q\u001b(B \u001b$B$r\u001b(B \u001b$B$s\u001b(B\n  \u001b$B%!\u001b(B \u001b$B%\"\u001b(B \u001b$B%#\u001b(B \u001b$B%$\u001b(B \u001b$B%%\u001b(B \u001b$B%&\u001b(B \u001b$B%'\u001b(B \u001b$B%(\u001b(B \u001b$B%)\u001b(B \u001b$B%*\u001b(B \u001b$B%+\u001b(B \u001b$B%,\u001b(B \u001b$B%-\u001b(B \u001b$B%.\u001b(B \u001b$B%/\u001b(B\n\u001b$B%0\u001b(B \u001b$B%1\u001b(B \u001b$B%2\u001b(B \u001b$B%3\u001b(B \u001b$B%4\u001b(B \u001b$B%5\u001b(B \u001b$B%6\u001b(B \u001b$B%7\u001b(B \u001b$B%8\u001b(B \u001b$B%9\u001b(B \u001b$B%:\u001b(B \u001b$B%;\u001b(B \u001b$B%<\u001b(B \u001b$B%=\u001b(B \u001b$B%>\u001b(B \u001b$B%?\u001b(B\n\u001b$B%@\u001b(B \u001b$B%A\u001b(B \u001b$B%B\u001b(B \u001b$B%C\u001b(B \u001b$B%D\u001b(B \u001b$B%E\u001b(B \u001b$B%F\u001b(B \u001b$B%G\u001b(B \u001b$B%H\u001b(B \u001b$B%I\u001b(B \u001b$B%J\u001b(B \u001b$B%K\u001b(B \u001b$B%L\u001b(B \u001b$B%M\u001b(B \u001b$B%N\u001b(B \u001b$B%O\u001b(B\n\u001b$B%P\u001b(B \u001b$B%Q\u001b(B \u001b$B%R\u001b(B \u001b$B%S\u001b(B \u001b$B%T\u001b(B \u001b$B%U\u001b(B \u001b$B%V\u001b(B \u001b$B%W\u001b(B \u001b$B%X\u001b(B \u001b$B%Y\u001b(B \u001b$B%Z\u001b(B \u001b$B%[\u001b(B \u001b$B%\\\u001b(B \u001b$B%]\u001b(B \u001b$B%^\u001b(B \u001b$B%_\u001b(B\n\u001b$B%`\u001b(B \u001b$B%a\u001b(B \u001b$B%b\u001b(B \u001b$B%c\u001b(B \u001b$B%d\u001b(B \u001b$B%e\u001b(B \u001b$B%f\u001b(B \u001b$B%g\u001b(B \u001b$B%h\u001b(B \u001b$B%i\u001b(B \u001b$B%j\u001b(B \u001b$B%k\u001b(B \u001b$B%l\u001b(B \u001b$B%m\u001b(B \u001b$B%n\u001b(B \u001b$B%o\u001b(B\n\u001b$B%p\u001b(B \u001b$B%q\u001b(B \u001b$B%r\u001b(B \u001b$B%s\u001b(B \u001b$B%t\u001b(B \u001b$B%u\u001b(B \u001b$B%v\u001b(B\n  \u001b$B&!\u001b(B \u001b$B&\"\u001b(B \u001b$B&#\u001b(B \u001b$B&$\u001b(B \u001b$B&%\u001b(B \u001b$B&&\u001b(B \u001b$B&'\u001b(B \u001b$B&(\u001b(B \u001b$B&)\u001b(B \u001b$B&*\u001b(B \u001b$B&+\u001b(B \u001b$B&,\u001b(B \u001b$B&-\u001b(B \u001b$B&.\u001b(B \u001b$B&/\u001b(B\n\u001b$B&0\u001b(B \u001b$B&1\u001b(B \u001b$B&2\u001b(B \u001b$B&3\u001b(B \u001b$B&4\u001b(B \u001b$B&5\u001b(B \u001b$B&6\u001b(B \u001b$B&7\u001b(B \u001b$B&8\u001b(B\n  \u001b$B&A\u001b(B \u001b$B&B\u001b(B \u001b$B&C\u001b(B \u001b$B&D\u001b(B \u001b$B&E\u001b(B \u001b$B&F\u001b(B \u001b$B&G\u001b(B \u001b$B&H\u001b(B \u001b$B&I\u001b(B \u001b$B&J\u001b(B \u001b$B&K\u001b(B \u001b$B&L\u001b(B \u001b$B&M\u001b(B \u001b$B&N\u001b(B \u001b$B&O\u001b(B\n\u001b$B&P\u001b(B \u001b$B&Q\u001b(B \u001b$B&R\u001b(B \u001b$B&S\u001b(B \u001b$B&T\u001b(B \u001b$B&U\u001b(B \u001b$B&V\u001b(B \u001b$B&W\u001b(B \u001b$B&X\u001b(B\n  \u001b$B'!\u001b(B \u001b$B'\"\u001b(B \u001b$B'#\u001b(B \u001b$B'$\u001b(B \u001b$B'%\u001b(B \u001b$B'&\u001b(B \u001b$B''\u001b(B \u001b$B'(\u001b(B \u001b$B')\u001b(B \u001b$B'*\u001b(B \u001b$B'+\u001b(B \u001b$B',\u001b(B \u001b$B'-\u001b(B \u001b$B'.\u001b(B \u001b$B'/\u001b(B\n\u001b$B'0\u001b(B \u001b$B'1\u001b(B \u001b$B'2\u001b(B \u001b$B'3\u001b(B \u001b$B'4\u001b(B \u001b$B'5\u001b(B \u001b$B'6\u001b(B \u001b$B'7\u001b(B \u001b$B'8\u001b(B \u001b$B'9\u001b(B \u001b$B':\u001b(B \u001b$B';\u001b(B \u001b$B'<\u001b(B \u001b$B'=\u001b(B \u001b$B'>\u001b(B \u001b$B'?\u001b(B\n\u001b$B'@\u001b(B \u001b$B'A\u001b(B\n  \u001b$B'Q\u001b(B \u001b$B'R\u001b(B \u001b$B'S\u001b(B \u001b$B'T\u001b(B \u001b$B'U\u001b(B \u001b$B'V\u001b(B \u001b$B'W\u001b(B \u001b$B'X\u001b(B \u001b$B'Y\u001b(B \u001b$B'Z\u001b(B \u001b$B'[\u001b(B \u001b$B'\\\u001b(B \u001b$B']\u001b(B \u001b$B'^\u001b(B \u001b$B'_\u001b(B\n\u001b$B'`\u001b(B \u001b$B'a\u001b(B \u001b$B'b\u001b(B \u001b$B'c\u001b(B \u001b$B'd\u001b(B \u001b$B'e\u001b(B \u001b$B'f\u001b(B \u001b$B'g\u001b(B \u001b$B'h\u001b(B \u001b$B'i\u001b(B \u001b$B'j\u001b(B \u001b$B'k\u001b(B \u001b$B'l\u001b(B \u001b$B'm\u001b(B \u001b$B'n\u001b(B \u001b$B'o\u001b(B\n\u001b$B'p\u001b(B \u001b$B'q\u001b(B\n  \u001b$B(!\u001b(B \u001b$B(\"\u001b(B \u001b$B(#\u001b(B \u001b$B($\u001b(B \u001b$B(%\u001b(B \u001b$B(&\u001b(B \u001b$B('\u001b(B \u001b$B((\u001b(B \u001b$B()\u001b(B \u001b$B(*\u001b(B \u001b$B(+\u001b(B \u001b$B(,\u001b(B \u001b$B(-\u001b(B \u001b$B(.\u001b(B \u001b$B(/\u001b(B\n\u001b$B(0\u001b(B \u001b$B(1\u001b(B \u001b$B(2\u001b(B \u001b$B(3\u001b(B \u001b$B(4\u001b(B \u001b$B(5\u001b(B \u001b$B(6\u001b(B \u001b$B(7\u001b(B \u001b$B(8\u001b(B \u001b$B(9\u001b(B \u001b$B(:\u001b(B \u001b$B(;\u001b(B \u001b$B(<\u001b(B \u001b$B(=\u001b(B \u001b$B(>\u001b(B \u001b$B(?\u001b(B\n\u001b$B(@\u001b(B\n  \u001b$B-!\u001b(B \u001b$B-\"\u001b(B \u001b$B-#\u001b(B \u001b$B-$\u001b(B \u001b$B-%\u001b(B \u001b$B-&\u001b(B \u001b$B-'\u001b(B \u001b$B-(\u001b(B \u001b$B-)\u001b(B \u001b$B-*\u001b(B \u001b$B-+\u001b(B \u001b$B-,\u001b(B \u001b$B--\u001b(B \u001b$B-.\u001b(B \u001b$B-/\u001b(B\n\u001b$B-0\u001b(B \u001b$B-1\u001b(B \u001b$B-2\u001b(B \u001b$B-3\u001b(B \u001b$B-4\u001b(B \u001b$B-5\u001b(B \u001b$B-6\u001b(B \u001b$B-7\u001b(B \u001b$B-8\u001b(B \u001b$B-9\u001b(B \u001b$B-:\u001b(B \u001b$B-;\u001b(B \u001b$B-<\u001b(B \u001b$B-=\u001b(B \u001b$B->\u001b(B\n\u001b$B-@\u001b(B \u001b$B-A\u001b(B \u001b$B-B\u001b(B \u001b$B-C\u001b(B \u001b$B-D\u001b(B \u001b$B-E\u001b(B \u001b$B-F\u001b(B \u001b$B-G\u001b(B \u001b$B-H\u001b(B \u001b$B-I\u001b(B \u001b$B-J\u001b(B \u001b$B-K\u001b(B \u001b$B-L\u001b(B \u001b$B-M\u001b(B \u001b$B-N\u001b(B \u001b$B-O\u001b(B\n\u001b$B-P\u001b(B \u001b$B-Q\u001b(B \u001b$B-R\u001b(B \u001b$B-S\u001b(B \u001b$B-T\u001b(B \u001b$B-U\u001b(B \u001b$B-V\u001b(B                 \u001b$B-_\u001b(B\n\u001b$B-`\u001b(B \u001b$B-a\u001b(B \u001b$B-b\u001b(B \u001b$B-c\u001b(B \u001b$B-d\u001b(B \u001b$B-e\u001b(B \u001b$B-f\u001b(B \u001b$B-g\u001b(B \u001b$B-h\u001b(B \u001b$B-i\u001b(B \u001b$B-j\u001b(B \u001b$B-k\u001b(B \u001b$B-l\u001b(B \u001b$B-m\u001b(B \u001b$B-n\u001b(B \u001b$B-o\u001b(B\n      \u001b$B-s\u001b(B \u001b$B-t\u001b(B       \u001b$B-x\u001b(B \u001b$B-y\u001b(B\n  \u001b$B0!\u001b(B \u001b$B0\"\u001b(B \u001b$B0#\u001b(B \u001b$B0$\u001b(B \u001b$B0%\u001b(B \u001b$B0&\u001b(B \u001b$B0'\u001b(B \u001b$B0(\u001b(B \u001b$B0)\u001b(B \u001b$B0*\u001b(B \u001b$B0+\u001b(B \u001b$B0,\u001b(B \u001b$B0-\u001b(B \u001b$B0.\u001b(B \u001b$B0/\u001b(B\n\u001b$B00\u001b(B \u001b$B01\u001b(B \u001b$B02\u001b(B \u001b$B03\u001b(B \u001b$B04\u001b(B \u001b$B05\u001b(B \u001b$B06\u001b(B \u001b$B07\u001b(B \u001b$B08\u001b(B \u001b$B09\u001b(B \u001b$B0:\u001b(B \u001b$B0;\u001b(B \u001b$B0<\u001b(B \u001b$B0=\u001b(B \u001b$B0>\u001b(B \u001b$B0?\u001b(B\n\u001b$B0@\u001b(B \u001b$B0A\u001b(B \u001b$B0B\u001b(B \u001b$B0C\u001b(B \u001b$B0D\u001b(B \u001b$B0E\u001b(B \u001b$B0F\u001b(B \u001b$B0G\u001b(B \u001b$B0H\u001b(B \u001b$B0I\u001b(B \u001b$B0J\u001b(B \u001b$B0K\u001b(B \u001b$B0L\u001b(B \u001b$B0M\u001b(B \u001b$B0N\u001b(B \u001b$B0O\u001b(B\n\u001b$B0P\u001b(B \u001b$B0Q\u001b(B \u001b$B0R\u001b(B \u001b$B0S\u001b(B \u001b$B0T\u001b(B \u001b$B0U\u001b(B \u001b$B0V\u001b(B \u001b$B0W\u001b(B \u001b$B0X\u001b(B \u001b$B0Y\u001b(B \u001b$B0Z\u001b(B \u001b$B0[\u001b(B \u001b$B0\\\u001b(B \u001b$B0]\u001b(B \u001b$B0^\u001b(B \u001b$B0_\u001b(B\n\u001b$B0`\u001b(B \u001b$B0a\u001b(B \u001b$B0b\u001b(B \u001b$B0c\u001b(B \u001b$B0d\u001b(B \u001b$B0e\u001b(B \u001b$B0f\u001b(B \u001b$B0g\u001b(B \u001b$B0h\u001b(B \u001b$B0i\u001b(B \u001b$B0j\u001b(B \u001b$B0k\u001b(B \u001b$B0l\u001b(B \u001b$B0m\u001b(B \u001b$B0n\u001b(B \u001b$B0o\u001b(B\n\u001b$B0p\u001b(B \u001b$B0q\u001b(B \u001b$B0r\u001b(B \u001b$B0s\u001b(B \u001b$B0t\u001b(B \u001b$B0u\u001b(B \u001b$B0v\u001b(B \u001b$B0w\u001b(B \u001b$B0x\u001b(B \u001b$B0y\u001b(B \u001b$B0z\u001b(B \u001b$B0{\u001b(B \u001b$B0|\u001b(B \u001b$B0}\u001b(B \u001b$B0~\u001b(B\n  \u001b$B1!\u001b(B \u001b$B1\"\u001b(B \u001b$B1#\u001b(B \u001b$B1$\u001b(B \u001b$B1%\u001b(B \u001b$B1&\u001b(B \u001b$B1'\u001b(B \u001b$B1(\u001b(B \u001b$B1)\u001b(B \u001b$B1*\u001b(B \u001b$B1+\u001b(B \u001b$B1,\u001b(B \u001b$B1-\u001b(B \u001b$B1.\u001b(B \u001b$B1/\u001b(B\n\u001b$B10\u001b(B \u001b$B11\u001b(B \u001b$B12\u001b(B \u001b$B13\u001b(B \u001b$B14\u001b(B \u001b$B15\u001b(B \u001b$B16\u001b(B \u001b$B17\u001b(B \u001b$B18\u001b(B \u001b$B19\u001b(B \u001b$B1:\u001b(B \u001b$B1;\u001b(B \u001b$B1<\u001b(B \u001b$B1=\u001b(B \u001b$B1>\u001b(B \u001b$B1?\u001b(B\n\u001b$B1@\u001b(B \u001b$B1A\u001b(B \u001b$B1B\u001b(B \u001b$B1C\u001b(B \u001b$B1D\u001b(B \u001b$B1E\u001b(B \u001b$B1F\u001b(B \u001b$B1G\u001b(B \u001b$B1H\u001b(B \u001b$B1I\u001b(B \u001b$B1J\u001b(B \u001b$B1K\u001b(B \u001b$B1L\u001b(B \u001b$B1M\u001b(B \u001b$B1N\u001b(B \u001b$B1O\u001b(B\n\u001b$B1P\u001b(B \u001b$B1Q\u001b(B \u001b$B1R\u001b(B \u001b$B1S\u001b(B \u001b$B1T\u001b(B \u001b$B1U\u001b(B \u001b$B1V\u001b(B \u001b$B1W\u001b(B \u001b$B1X\u001b(B \u001b$B1Y\u001b(B \u001b$B1Z\u001b(B \u001b$B1[\u001b(B \u001b$B1\\\u001b(B \u001b$B1]\u001b(B \u001b$B1^\u001b(B \u001b$B1_\u001b(B\n\u001b$B1`\u001b(B \u001b$B1a\u001b(B \u001b$B1b\u001b(B \u001b$B1c\u001b(B \u001b$B1d\u001b(B \u001b$B1e\u001b(B \u001b$B1f\u001b(B \u001b$B1g\u001b(B \u001b$B1h\u001b(B \u001b$B1i\u001b(B \u001b$B1j\u001b(B \u001b$B1k\u001b(B \u001b$B1l\u001b(B \u001b$B1m\u001b(B \u001b$B1n\u001b(B \u001b$B1o\u001b(B\n\u001b$B1p\u001b(B \u001b$B1q\u001b(B \u001b$B1r\u001b(B \u001b$B1s\u001b(B \u001b$B1t\u001b(B \u001b$B1u\u001b(B \u001b$B1v\u001b(B \u001b$B1w\u001b(B \u001b$B1x\u001b(B \u001b$B1y\u001b(B \u001b$B1z\u001b(B \u001b$B1{\u001b(B \u001b$B1|\u001b(B \u001b$B1}\u001b(B \u001b$B1~\u001b(B\n  \u001b$B2!\u001b(B \u001b$B2\"\u001b(B \u001b$B2#\u001b(B \u001b$B2$\u001b(B \u001b$B2%\u001b(B \u001b$B2&\u001b(B \u001b$B2'\u001b(B \u001b$B2(\u001b(B \u001b$B2)\u001b(B \u001b$B2*\u001b(B \u001b$B2+\u001b(B \u001b$B2,\u001b(B \u001b$B2-\u001b(B \u001b$B2.\u001b(B \u001b$B2/\u001b(B\n\u001b$B20\u001b(B \u001b$B21\u001b(B \u001b$B22\u001b(B \u001b$B23\u001b(B \u001b$B24\u001b(B \u001b$B25\u001b(B \u001b$B26\u001b(B \u001b$B27\u001b(B \u001b$B28\u001b(B \u001b$B29\u001b(B \u001b$B2:\u001b(B \u001b$B2;\u001b(B \u001b$B2<\u001b(B \u001b$B2=\u001b(B \u001b$B2>\u001b(B \u001b$B2?\u001b(B\n\u001b$B2@\u001b(B \u001b$B2A\u001b(B \u001b$B2B\u001b(B \u001b$B2C\u001b(B \u001b$B2D\u001b(B \u001b$B2E\u001b(B \u001b$B2F\u001b(B \u001b$B2G\u001b(B \u001b$B2H\u001b(B \u001b$B2I\u001b(B \u001b$B2J\u001b(B \u001b$B2K\u001b(B \u001b$B2L\u001b(B \u001b$B2M\u001b(B \u001b$B2N\u001b(B \u001b$B2O\u001b(B\n\u001b$B2P\u001b(B \u001b$B2Q\u001b(B \u001b$B2R\u001b(B \u001b$B2S\u001b(B \u001b$B2T\u001b(B \u001b$B2U\u001b(B \u001b$B2V\u001b(B \u001b$B2W\u001b(B \u001b$B2X\u001b(B \u001b$B2Y\u001b(B \u001b$B2Z\u001b(B \u001b$B2[\u001b(B \u001b$B2\\\u001b(B \u001b$B2]\u001b(B \u001b$B2^\u001b(B \u001b$B2_\u001b(B\n\u001b$B2`\u001b(B \u001b$B2a\u001b(B \u001b$B2b\u001b(B \u001b$B2c\u001b(B \u001b$B2d\u001b(B \u001b$B2e\u001b(B \u001b$B2f\u001b(B \u001b$B2g\u001b(B \u001b$B2h\u001b(B \u001b$B2i\u001b(B \u001b$B2j\u001b(B \u001b$B2k\u001b(B \u001b$B2l\u001b(B \u001b$B2m\u001b(B \u001b$B2n\u001b(B \u001b$B2o\u001b(B\n\u001b$B2p\u001b(B \u001b$B2q\u001b(B \u001b$B2r\u001b(B \u001b$B2s\u001b(B \u001b$B2t\u001b(B \u001b$B2u\u001b(B \u001b$B2v\u001b(B \u001b$B2w\u001b(B \u001b$B2x\u001b(B \u001b$B2y\u001b(B \u001b$B2z\u001b(B \u001b$B2{\u001b(B \u001b$B2|\u001b(B \u001b$B2}\u001b(B \u001b$B2~\u001b(B\n  \u001b$B3!\u001b(B \u001b$B3\"\u001b(B \u001b$B3#\u001b(B \u001b$B3$\u001b(B \u001b$B3%\u001b(B \u001b$B3&\u001b(B \u001b$B3'\u001b(B \u001b$B3(\u001b(B \u001b$B3)\u001b(B \u001b$B3*\u001b(B \u001b$B3+\u001b(B \u001b$B3,\u001b(B \u001b$B3-\u001b(B \u001b$B3.\u001b(B \u001b$B3/\u001b(B\n\u001b$B30\u001b(B \u001b$B31\u001b(B \u001b$B32\u001b(B \u001b$B33\u001b(B \u001b$B34\u001b(B \u001b$B35\u001b(B \u001b$B36\u001b(B \u001b$B37\u001b(B \u001b$B38\u001b(B \u001b$B39\u001b(B \u001b$B3:\u001b(B \u001b$B3;\u001b(B \u001b$B3<\u001b(B \u001b$B3=\u001b(B \u001b$B3>\u001b(B \u001b$B3?\u001b(B\n\u001b$B3@\u001b(B \u001b$B3A\u001b(B \u001b$B3B\u001b(B \u001b$B3C\u001b(B \u001b$B3D\u001b(B \u001b$B3E\u001b(B \u001b$B3F\u001b(B \u001b$B3G\u001b(B \u001b$B3H\u001b(B \u001b$B3I\u001b(B \u001b$B3J\u001b(B \u001b$B3K\u001b(B \u001b$B3L\u001b(B \u001b$B3M\u001b(B \u001b$B3N\u001b(B \u001b$B3O\u001b(B\n\u001b$B3P\u001b(B \u001b$B3Q\u001b(B \u001b$B3R\u001b(B \u001b$B3S\u001b(B \u001b$B3T\u001b(B \u001b$B3U\u001b(B \u001b$B3V\u001b(B \u001b$B3W\u001b(B \u001b$B3X\u001b(B \u001b$B3Y\u001b(B \u001b$B3Z\u001b(B \u001b$B3[\u001b(B \u001b$B3\\\u001b(B \u001b$B3]\u001b(B \u001b$B3^\u001b(B \u001b$B3_\u001b(B\n\u001b$B3`\u001b(B \u001b$B3a\u001b(B \u001b$B3b\u001b(B \u001b$B3c\u001b(B \u001b$B3d\u001b(B \u001b$B3e\u001b(B \u001b$B3f\u001b(B \u001b$B3g\u001b(B \u001b$B3h\u001b(B \u001b$B3i\u001b(B \u001b$B3j\u001b(B \u001b$B3k\u001b(B \u001b$B3l\u001b(B \u001b$B3m\u001b(B \u001b$B3n\u001b(B \u001b$B3o\u001b(B\n\u001b$B3p\u001b(B \u001b$B3q\u001b(B \u001b$B3r\u001b(B \u001b$B3s\u001b(B \u001b$B3t\u001b(B \u001b$B3u\u001b(B \u001b$B3v\u001b(B \u001b$B3w\u001b(B \u001b$B3x\u001b(B \u001b$B3y\u001b(B \u001b$B3z\u001b(B \u001b$B3{\u001b(B \u001b$B3|\u001b(B \u001b$B3}\u001b(B \u001b$B3~\u001b(B\n  \u001b$B4!\u001b(B \u001b$B4\"\u001b(B \u001b$B4#\u001b(B \u001b$B4$\u001b(B \u001b$B4%\u001b(B \u001b$B4&\u001b(B \u001b$B4'\u001b(B \u001b$B4(\u001b(B \u001b$B4)\u001b(B \u001b$B4*\u001b(B \u001b$B4+\u001b(B \u001b$B4,\u001b(B \u001b$B4-\u001b(B \u001b$B4.\u001b(B \u001b$B4/\u001b(B\n\u001b$B40\u001b(B \u001b$B41\u001b(B \u001b$B42\u001b(B \u001b$B43\u001b(B \u001b$B44\u001b(B \u001b$B45\u001b(B \u001b$B46\u001b(B \u001b$B47\u001b(B \u001b$B48\u001b(B \u001b$B49\u001b(B \u001b$B4:\u001b(B \u001b$B4;\u001b(B \u001b$B4<\u001b(B \u001b$B4=\u001b(B \u001b$B4>\u001b(B \u001b$B4?\u001b(B\n\u001b$B4@\u001b(B \u001b$B4A\u001b(B \u001b$B4B\u001b(B \u001b$B4C\u001b(B \u001b$B4D\u001b(B \u001b$B4E\u001b(B \u001b$B4F\u001b(B \u001b$B4G\u001b(B \u001b$B4H\u001b(B \u001b$B4I\u001b(B \u001b$B4J\u001b(B \u001b$B4K\u001b(B \u001b$B4L\u001b(B \u001b$B4M\u001b(B \u001b$B4N\u001b(B \u001b$B4O\u001b(B\n\u001b$B4P\u001b(B \u001b$B4Q\u001b(B \u001b$B4R\u001b(B \u001b$B4S\u001b(B \u001b$B4T\u001b(B \u001b$B4U\u001b(B \u001b$B4V\u001b(B \u001b$B4W\u001b(B \u001b$B4X\u001b(B \u001b$B4Y\u001b(B \u001b$B4Z\u001b(B \u001b$B4[\u001b(B \u001b$B4\\\u001b(B \u001b$B4]\u001b(B \u001b$B4^\u001b(B \u001b$B4_\u001b(B\n\u001b$B4`\u001b(B \u001b$B4a\u001b(B \u001b$B4b\u001b(B \u001b$B4c\u001b(B \u001b$B4d\u001b(B \u001b$B4e\u001b(B \u001b$B4f\u001b(B \u001b$B4g\u001b(B \u001b$B4h\u001b(B \u001b$B4i\u001b(B \u001b$B4j\u001b(B \u001b$B4k\u001b(B \u001b$B4l\u001b(B \u001b$B4m\u001b(B \u001b$B4n\u001b(B \u001b$B4o\u001b(B\n\u001b$B4p\u001b(B \u001b$B4q\u001b(B \u001b$B4r\u001b(B \u001b$B4s\u001b(B \u001b$B4t\u001b(B \u001b$B4u\u001b(B \u001b$B4v\u001b(B \u001b$B4w\u001b(B \u001b$B4x\u001b(B \u001b$B4y\u001b(B \u001b$B4z\u001b(B \u001b$B4{\u001b(B \u001b$B4|\u001b(B \u001b$B4}\u001b(B \u001b$B4~\u001b(B\n  \u001b$B5!\u001b(B \u001b$B5\"\u001b(B \u001b$B5#\u001b(B \u001b$B5$\u001b(B \u001b$B5%\u001b(B \u001b$B5&\u001b(B \u001b$B5'\u001b(B \u001b$B5(\u001b(B \u001b$B5)\u001b(B \u001b$B5*\u001b(B \u001b$B5+\u001b(B \u001b$B5,\u001b(B \u001b$B5-\u001b(B \u001b$B5.\u001b(B \u001b$B5/\u001b(B\n\u001b$B50\u001b(B \u001b$B51\u001b(B \u001b$B52\u001b(B \u001b$B53\u001b(B \u001b$B54\u001b(B \u001b$B55\u001b(B \u001b$B56\u001b(B \u001b$B57\u001b(B \u001b$B58\u001b(B \u001b$B59\u001b(B \u001b$B5:\u001b(B \u001b$B5;\u001b(B \u001b$B5<\u001b(B \u001b$B5=\u001b(B \u001b$B5>\u001b(B \u001b$B5?\u001b(B\n\u001b$B5@\u001b(B \u001b$B5A\u001b(B \u001b$B5B\u001b(B \u001b$B5C\u001b(B \u001b$B5D\u001b(B \u001b$B5E\u001b(B \u001b$B5F\u001b(B \u001b$B5G\u001b(B \u001b$B5H\u001b(B \u001b$B5I\u001b(B \u001b$B5J\u001b(B \u001b$B5K\u001b(B \u001b$B5L\u001b(B \u001b$B5M\u001b(B \u001b$B5N\u001b(B \u001b$B5O\u001b(B\n\u001b$B5P\u001b(B \u001b$B5Q\u001b(B \u001b$B5R\u001b(B \u001b$B5S\u001b(B \u001b$B5T\u001b(B \u001b$B5U\u001b(B \u001b$B5V\u001b(B \u001b$B5W\u001b(B \u001b$B5X\u001b(B \u001b$B5Y\u001b(B \u001b$B5Z\u001b(B \u001b$B5[\u001b(B \u001b$B5\\\u001b(B \u001b$B5]\u001b(B \u001b$B5^\u001b(B \u001b$B5_\u001b(B\n\u001b$B5`\u001b(B \u001b$B5a\u001b(B \u001b$B5b\u001b(B \u001b$B5c\u001b(B \u001b$B5d\u001b(B \u001b$B5e\u001b(B \u001b$B5f\u001b(B \u001b$B5g\u001b(B \u001b$B5h\u001b(B \u001b$B5i\u001b(B \u001b$B5j\u001b(B \u001b$B5k\u001b(B \u001b$B5l\u001b(B \u001b$B5m\u001b(B \u001b$B5n\u001b(B \u001b$B5o\u001b(B\n\u001b$B5p\u001b(B \u001b$B5q\u001b(B \u001b$B5r\u001b(B \u001b$B5s\u001b(B \u001b$B5t\u001b(B \u001b$B5u\u001b(B \u001b$B5v\u001b(B \u001b$B5w\u001b(B \u001b$B5x\u001b(B \u001b$B5y\u001b(B \u001b$B5z\u001b(B \u001b$B5{\u001b(B \u001b$B5|\u001b(B \u001b$B5}\u001b(B \u001b$B5~\u001b(B\n  \u001b$B6!\u001b(B \u001b$B6\"\u001b(B \u001b$B6#\u001b(B \u001b$B6$\u001b(B \u001b$B6%\u001b(B \u001b$B6&\u001b(B \u001b$B6'\u001b(B \u001b$B6(\u001b(B \u001b$B6)\u001b(B \u001b$B6*\u001b(B \u001b$B6+\u001b(B \u001b$B6,\u001b(B \u001b$B6-\u001b(B \u001b$B6.\u001b(B \u001b$B6/\u001b(B\n\u001b$B60\u001b(B \u001b$B61\u001b(B \u001b$B62\u001b(B \u001b$B63\u001b(B \u001b$B64\u001b(B \u001b$B65\u001b(B \u001b$B66\u001b(B \u001b$B67\u001b(B \u001b$B68\u001b(B \u001b$B69\u001b(B \u001b$B6:\u001b(B \u001b$B6;\u001b(B \u001b$B6<\u001b(B \u001b$B6=\u001b(B \u001b$B6>\u001b(B \u001b$B6?\u001b(B\n\u001b$B6@\u001b(B \u001b$B6A\u001b(B \u001b$B6B\u001b(B \u001b$B6C\u001b(B \u001b$B6D\u001b(B \u001b$B6E\u001b(B \u001b$B6F\u001b(B \u001b$B6G\u001b(B \u001b$B6H\u001b(B \u001b$B6I\u001b(B \u001b$B6J\u001b(B \u001b$B6K\u001b(B \u001b$B6L\u001b(B \u001b$B6M\u001b(B \u001b$B6N\u001b(B \u001b$B6O\u001b(B\n\u001b$B6P\u001b(B \u001b$B6Q\u001b(B \u001b$B6R\u001b(B \u001b$B6S\u001b(B \u001b$B6T\u001b(B \u001b$B6U\u001b(B \u001b$B6V\u001b(B \u001b$B6W\u001b(B \u001b$B6X\u001b(B \u001b$B6Y\u001b(B \u001b$B6Z\u001b(B \u001b$B6[\u001b(B \u001b$B6\\\u001b(B \u001b$B6]\u001b(B \u001b$B6^\u001b(B \u001b$B6_\u001b(B\n\u001b$B6`\u001b(B \u001b$B6a\u001b(B \u001b$B6b\u001b(B \u001b$B6c\u001b(B \u001b$B6d\u001b(B \u001b$B6e\u001b(B \u001b$B6f\u001b(B \u001b$B6g\u001b(B \u001b$B6h\u001b(B \u001b$B6i\u001b(B \u001b$B6j\u001b(B \u001b$B6k\u001b(B \u001b$B6l\u001b(B \u001b$B6m\u001b(B \u001b$B6n\u001b(B \u001b$B6o\u001b(B\n\u001b$B6p\u001b(B \u001b$B6q\u001b(B \u001b$B6r\u001b(B \u001b$B6s\u001b(B \u001b$B6t\u001b(B \u001b$B6u\u001b(B \u001b$B6v\u001b(B \u001b$B6w\u001b(B \u001b$B6x\u001b(B \u001b$B6y\u001b(B \u001b$B6z\u001b(B \u001b$B6{\u001b(B \u001b$B6|\u001b(B \u001b$B6}\u001b(B \u001b$B6~\u001b(B\n  \u001b$B7!\u001b(B \u001b$B7\"\u001b(B \u001b$B7#\u001b(B \u001b$B7$\u001b(B \u001b$B7%\u001b(B \u001b$B7&\u001b(B \u001b$B7'\u001b(B \u001b$B7(\u001b(B \u001b$B7)\u001b(B \u001b$B7*\u001b(B \u001b$B7+\u001b(B \u001b$B7,\u001b(B \u001b$B7-\u001b(B \u001b$B7.\u001b(B \u001b$B7/\u001b(B\n\u001b$B70\u001b(B \u001b$B71\u001b(B \u001b$B72\u001b(B \u001b$B73\u001b(B \u001b$B74\u001b(B \u001b$B75\u001b(B \u001b$B76\u001b(B \u001b$B77\u001b(B \u001b$B78\u001b(B \u001b$B79\u001b(B \u001b$B7:\u001b(B \u001b$B7;\u001b(B \u001b$B7<\u001b(B \u001b$B7=\u001b(B \u001b$B7>\u001b(B \u001b$B7?\u001b(B\n\u001b$B7@\u001b(B \u001b$B7A\u001b(B \u001b$B7B\u001b(B \u001b$B7C\u001b(B \u001b$B7D\u001b(B \u001b$B7E\u001b(B \u001b$B7F\u001b(B \u001b$B7G\u001b(B \u001b$B7H\u001b(B \u001b$B7I\u001b(B \u001b$B7J\u001b(B \u001b$B7K\u001b(B \u001b$B7L\u001b(B \u001b$B7M\u001b(B \u001b$B7N\u001b(B \u001b$B7O\u001b(B\n\u001b$B7P\u001b(B \u001b$B7Q\u001b(B \u001b$B7R\u001b(B \u001b$B7S\u001b(B \u001b$B7T\u001b(B \u001b$B7U\u001b(B \u001b$B7V\u001b(B \u001b$B7W\u001b(B \u001b$B7X\u001b(B \u001b$B7Y\u001b(B \u001b$B7Z\u001b(B \u001b$B7[\u001b(B \u001b$B7\\\u001b(B \u001b$B7]\u001b(B \u001b$B7^\u001b(B \u001b$B7_\u001b(B\n\u001b$B7`\u001b(B \u001b$B7a\u001b(B \u001b$B7b\u001b(B \u001b$B7c\u001b(B \u001b$B7d\u001b(B \u001b$B7e\u001b(B \u001b$B7f\u001b(B \u001b$B7g\u001b(B \u001b$B7h\u001b(B \u001b$B7i\u001b(B \u001b$B7j\u001b(B \u001b$B7k\u001b(B \u001b$B7l\u001b(B \u001b$B7m\u001b(B \u001b$B7n\u001b(B \u001b$B7o\u001b(B\n\u001b$B7p\u001b(B \u001b$B7q\u001b(B \u001b$B7r\u001b(B \u001b$B7s\u001b(B \u001b$B7t\u001b(B \u001b$B7u\u001b(B \u001b$B7v\u001b(B \u001b$B7w\u001b(B \u001b$B7x\u001b(B \u001b$B7y\u001b(B \u001b$B7z\u001b(B \u001b$B7{\u001b(B \u001b$B7|\u001b(B \u001b$B7}\u001b(B \u001b$B7~\u001b(B\n  \u001b$B8!\u001b(B \u001b$B8\"\u001b(B \u001b$B8#\u001b(B \u001b$B8$\u001b(B \u001b$B8%\u001b(B \u001b$B8&\u001b(B \u001b$B8'\u001b(B \u001b$B8(\u001b(B \u001b$B8)\u001b(B \u001b$B8*\u001b(B \u001b$B8+\u001b(B \u001b$B8,\u001b(B \u001b$B8-\u001b(B \u001b$B8.\u001b(B \u001b$B8/\u001b(B\n\u001b$B80\u001b(B \u001b$B81\u001b(B \u001b$B82\u001b(B \u001b$B83\u001b(B \u001b$B84\u001b(B \u001b$B85\u001b(B \u001b$B86\u001b(B \u001b$B87\u001b(B \u001b$B88\u001b(B \u001b$B89\u001b(B \u001b$B8:\u001b(B \u001b$B8;\u001b(B \u001b$B8<\u001b(B \u001b$B8=\u001b(B \u001b$B8>\u001b(B \u001b$B8?\u001b(B\n\u001b$B8@\u001b(B \u001b$B8A\u001b(B \u001b$B8B\u001b(B \u001b$B8C\u001b(B \u001b$B8D\u001b(B \u001b$B8E\u001b(B \u001b$B8F\u001b(B \u001b$B8G\u001b(B \u001b$B8H\u001b(B \u001b$B8I\u001b(B \u001b$B8J\u001b(B \u001b$B8K\u001b(B \u001b$B8L\u001b(B \u001b$B8M\u001b(B \u001b$B8N\u001b(B \u001b$B8O\u001b(B\n\u001b$B8P\u001b(B \u001b$B8Q\u001b(B \u001b$B8R\u001b(B \u001b$B8S\u001b(B \u001b$B8T\u001b(B \u001b$B8U\u001b(B \u001b$B8V\u001b(B \u001b$B8W\u001b(B \u001b$B8X\u001b(B \u001b$B8Y\u001b(B \u001b$B8Z\u001b(B \u001b$B8[\u001b(B \u001b$B8\\\u001b(B \u001b$B8]\u001b(B \u001b$B8^\u001b(B \u001b$B8_\u001b(B\n\u001b$B8`\u001b(B \u001b$B8a\u001b(B \u001b$B8b\u001b(B \u001b$B8c\u001b(B \u001b$B8d\u001b(B \u001b$B8e\u001b(B \u001b$B8f\u001b(B \u001b$B8g\u001b(B \u001b$B8h\u001b(B \u001b$B8i\u001b(B \u001b$B8j\u001b(B \u001b$B8k\u001b(B \u001b$B8l\u001b(B \u001b$B8m\u001b(B \u001b$B8n\u001b(B \u001b$B8o\u001b(B\n\u001b$B8p\u001b(B \u001b$B8q\u001b(B \u001b$B8r\u001b(B \u001b$B8s\u001b(B \u001b$B8t\u001b(B \u001b$B8u\u001b(B \u001b$B8v\u001b(B \u001b$B8w\u001b(B \u001b$B8x\u001b(B \u001b$B8y\u001b(B \u001b$B8z\u001b(B \u001b$B8{\u001b(B \u001b$B8|\u001b(B \u001b$B8}\u001b(B \u001b$B8~\u001b(B\n  \u001b$B9!\u001b(B \u001b$B9\"\u001b(B \u001b$B9#\u001b(B \u001b$B9$\u001b(B \u001b$B9%\u001b(B \u001b$B9&\u001b(B \u001b$B9'\u001b(B \u001b$B9(\u001b(B \u001b$B9)\u001b(B \u001b$B9*\u001b(B \u001b$B9+\u001b(B \u001b$B9,\u001b(B \u001b$B9-\u001b(B \u001b$B9.\u001b(B \u001b$B9/\u001b(B\n\u001b$B90\u001b(B \u001b$B91\u001b(B \u001b$B92\u001b(B \u001b$B93\u001b(B \u001b$B94\u001b(B \u001b$B95\u001b(B \u001b$B96\u001b(B \u001b$B97\u001b(B \u001b$B98\u001b(B \u001b$B99\u001b(B \u001b$B9:\u001b(B \u001b$B9;\u001b(B \u001b$B9<\u001b(B \u001b$B9=\u001b(B \u001b$B9>\u001b(B \u001b$B9?\u001b(B\n\u001b$B9@\u001b(B \u001b$B9A\u001b(B \u001b$B9B\u001b(B \u001b$B9C\u001b(B \u001b$B9D\u001b(B \u001b$B9E\u001b(B \u001b$B9F\u001b(B \u001b$B9G\u001b(B \u001b$B9H\u001b(B \u001b$B9I\u001b(B \u001b$B9J\u001b(B \u001b$B9K\u001b(B \u001b$B9L\u001b(B \u001b$B9M\u001b(B \u001b$B9N\u001b(B \u001b$B9O\u001b(B\n\u001b$B9P\u001b(B \u001b$B9Q\u001b(B \u001b$B9R\u001b(B \u001b$B9S\u001b(B \u001b$B9T\u001b(B \u001b$B9U\u001b(B \u001b$B9V\u001b(B \u001b$B9W\u001b(B \u001b$B9X\u001b(B \u001b$B9Y\u001b(B \u001b$B9Z\u001b(B \u001b$B9[\u001b(B \u001b$B9\\\u001b(B \u001b$B9]\u001b(B \u001b$B9^\u001b(B \u001b$B9_\u001b(B\n\u001b$B9`\u001b(B \u001b$B9a\u001b(B \u001b$B9b\u001b(B \u001b$B9c\u001b(B \u001b$B9d\u001b(B \u001b$B9e\u001b(B \u001b$B9f\u001b(B \u001b$B9g\u001b(B \u001b$B9h\u001b(B \u001b$B9i\u001b(B \u001b$B9j\u001b(B \u001b$B9k\u001b(B \u001b$B9l\u001b(B \u001b$B9m\u001b(B \u001b$B9n\u001b(B \u001b$B9o\u001b(B\n\u001b$B9p\u001b(B \u001b$B9q\u001b(B \u001b$B9r\u001b(B \u001b$B9s\u001b(B \u001b$B9t\u001b(B \u001b$B9u\u001b(B \u001b$B9v\u001b(B \u001b$B9w\u001b(B \u001b$B9x\u001b(B \u001b$B9y\u001b(B \u001b$B9z\u001b(B \u001b$B9{\u001b(B \u001b$B9|\u001b(B \u001b$B9}\u001b(B \u001b$B9~\u001b(B\n  \u001b$B:!\u001b(B \u001b$B:\"\u001b(B \u001b$B:#\u001b(B \u001b$B:$\u001b(B \u001b$B:%\u001b(B \u001b$B:&\u001b(B \u001b$B:'\u001b(B \u001b$B:(\u001b(B \u001b$B:)\u001b(B \u001b$B:*\u001b(B \u001b$B:+\u001b(B \u001b$B:,\u001b(B \u001b$B:-\u001b(B \u001b$B:.\u001b(B \u001b$B:/\u001b(B\n\u001b$B:0\u001b(B \u001b$B:1\u001b(B \u001b$B:2\u001b(B \u001b$B:3\u001b(B \u001b$B:4\u001b(B \u001b$B:5\u001b(B \u001b$B:6\u001b(B \u001b$B:7\u001b(B \u001b$B:8\u001b(B \u001b$B:9\u001b(B \u001b$B::\u001b(B \u001b$B:;\u001b(B \u001b$B:<\u001b(B \u001b$B:=\u001b(B \u001b$B:>\u001b(B \u001b$B:?\u001b(B\n\u001b$B:@\u001b(B \u001b$B:A\u001b(B \u001b$B:B\u001b(B \u001b$B:C\u001b(B \u001b$B:D\u001b(B \u001b$B:E\u001b(B \u001b$B:F\u001b(B \u001b$B:G\u001b(B \u001b$B:H\u001b(B \u001b$B:I\u001b(B \u001b$B:J\u001b(B \u001b$B:K\u001b(B \u001b$B:L\u001b(B \u001b$B:M\u001b(B \u001b$B:N\u001b(B \u001b$B:O\u001b(B\n\u001b$B:P\u001b(B \u001b$B:Q\u001b(B \u001b$B:R\u001b(B \u001b$B:S\u001b(B \u001b$B:T\u001b(B \u001b$B:U\u001b(B \u001b$B:V\u001b(B \u001b$B:W\u001b(B \u001b$B:X\u001b(B \u001b$B:Y\u001b(B \u001b$B:Z\u001b(B \u001b$B:[\u001b(B \u001b$B:\\\u001b(B \u001b$B:]\u001b(B \u001b$B:^\u001b(B \u001b$B:_\u001b(B\n\u001b$B:`\u001b(B \u001b$B:a\u001b(B \u001b$B:b\u001b(B \u001b$B:c\u001b(B \u001b$B:d\u001b(B \u001b$B:e\u001b(B \u001b$B:f\u001b(B \u001b$B:g\u001b(B \u001b$B:h\u001b(B \u001b$B:i\u001b(B \u001b$B:j\u001b(B \u001b$B:k\u001b(B \u001b$B:l\u001b(B \u001b$B:m\u001b(B \u001b$B:n\u001b(B \u001b$B:o\u001b(B\n\u001b$B:p\u001b(B \u001b$B:q\u001b(B \u001b$B:r\u001b(B \u001b$B:s\u001b(B \u001b$B:t\u001b(B \u001b$B:u\u001b(B \u001b$B:v\u001b(B \u001b$B:w\u001b(B \u001b$B:x\u001b(B \u001b$B:y\u001b(B \u001b$B:z\u001b(B \u001b$B:{\u001b(B \u001b$B:|\u001b(B \u001b$B:}\u001b(B \u001b$B:~\u001b(B\n  \u001b$B;!\u001b(B \u001b$B;\"\u001b(B \u001b$B;#\u001b(B \u001b$B;$\u001b(B \u001b$B;%\u001b(B \u001b$B;&\u001b(B \u001b$B;'\u001b(B \u001b$B;(\u001b(B \u001b$B;)\u001b(B \u001b$B;*\u001b(B \u001b$B;+\u001b(B \u001b$B;,\u001b(B \u001b$B;-\u001b(B \u001b$B;.\u001b(B \u001b$B;/\u001b(B\n\u001b$B;0\u001b(B \u001b$B;1\u001b(B \u001b$B;2\u001b(B \u001b$B;3\u001b(B \u001b$B;4\u001b(B \u001b$B;5\u001b(B \u001b$B;6\u001b(B \u001b$B;7\u001b(B \u001b$B;8\u001b(B \u001b$B;9\u001b(B \u001b$B;:\u001b(B \u001b$B;;\u001b(B \u001b$B;<\u001b(B \u001b$B;=\u001b(B \u001b$B;>\u001b(B \u001b$B;?\u001b(B\n\u001b$B;@\u001b(B \u001b$B;A\u001b(B \u001b$B;B\u001b(B \u001b$B;C\u001b(B \u001b$B;D\u001b(B \u001b$B;E\u001b(B \u001b$B;F\u001b(B \u001b$B;G\u001b(B \u001b$B;H\u001b(B \u001b$B;I\u001b(B \u001b$B;J\u001b(B \u001b$B;K\u001b(B \u001b$B;L\u001b(B \u001b$B;M\u001b(B \u001b$B;N\u001b(B \u001b$B;O\u001b(B\n\u001b$B;P\u001b(B \u001b$B;Q\u001b(B \u001b$B;R\u001b(B \u001b$B;S\u001b(B \u001b$B;T\u001b(B \u001b$B;U\u001b(B \u001b$B;V\u001b(B \u001b$B;W\u001b(B \u001b$B;X\u001b(B \u001b$B;Y\u001b(B \u001b$B;Z\u001b(B \u001b$B;[\u001b(B \u001b$B;\\\u001b(B \u001b$B;]\u001b(B \u001b$B;^\u001b(B \u001b$B;_\u001b(B\n\u001b$B;`\u001b(B \u001b$B;a\u001b(B \u001b$B;b\u001b(B \u001b$B;c\u001b(B \u001b$B;d\u001b(B \u001b$B;e\u001b(B \u001b$B;f\u001b(B \u001b$B;g\u001b(B \u001b$B;h\u001b(B \u001b$B;i\u001b(B \u001b$B;j\u001b(B \u001b$B;k\u001b(B \u001b$B;l\u001b(B \u001b$B;m\u001b(B \u001b$B;n\u001b(B \u001b$B;o\u001b(B\n\u001b$B;p\u001b(B \u001b$B;q\u001b(B \u001b$B;r\u001b(B \u001b$B;s\u001b(B \u001b$B;t\u001b(B \u001b$B;u\u001b(B \u001b$B;v\u001b(B \u001b$B;w\u001b(B \u001b$B;x\u001b(B \u001b$B;y\u001b(B \u001b$B;z\u001b(B \u001b$B;{\u001b(B \u001b$B;|\u001b(B \u001b$B;}\u001b(B \u001b$B;~\u001b(B\n  \u001b$B<!\u001b(B \u001b$B<\"\u001b(B \u001b$B<#\u001b(B \u001b$B<$\u001b(B \u001b$B<%\u001b(B \u001b$B<&\u001b(B \u001b$B<'\u001b(B \u001b$B<(\u001b(B \u001b$B<)\u001b(B \u001b$B<*\u001b(B \u001b$B<+\u001b(B \u001b$B<,\u001b(B \u001b$B<-\u001b(B \u001b$B<.\u001b(B \u001b$B</\u001b(B\n\u001b$B<0\u001b(B \u001b$B<1\u001b(B \u001b$B<2\u001b(B \u001b$B<3\u001b(B \u001b$B<4\u001b(B \u001b$B<5\u001b(B \u001b$B<6\u001b(B \u001b$B<7\u001b(B \u001b$B<8\u001b(B \u001b$B<9\u001b(B \u001b$B<:\u001b(B \u001b$B<;\u001b(B \u001b$B<<\u001b(B \u001b$B<=\u001b(B \u001b$B<>\u001b(B \u001b$B<?\u001b(B\n\u001b$B<@\u001b(B \u001b$B<A\u001b(B \u001b$B<B\u001b(B \u001b$B<C\u001b(B \u001b$B<D\u001b(B \u001b$B<E\u001b(B \u001b$B<F\u001b(B \u001b$B<G\u001b(B \u001b$B<H\u001b(B \u001b$B<I\u001b(B \u001b$B<J\u001b(B \u001b$B<K\u001b(B \u001b$B<L\u001b(B \u001b$B<M\u001b(B \u001b$B<N\u001b(B \u001b$B<O\u001b(B\n\u001b$B<P\u001b(B \u001b$B<Q\u001b(B \u001b$B<R\u001b(B \u001b$B<S\u001b(B \u001b$B<T\u001b(B \u001b$B<U\u001b(B \u001b$B<V\u001b(B \u001b$B<W\u001b(B \u001b$B<X\u001b(B \u001b$B<Y\u001b(B \u001b$B<Z\u001b(B \u001b$B<[\u001b(B \u001b$B<\\\u001b(B \u001b$B<]\u001b(B \u001b$B<^\u001b(B \u001b$B<_\u001b(B\n\u001b$B<`\u001b(B \u001b$B<a\u001b(B \u001b$B<b\u001b(B \u001b$B<c\u001b(B \u001b$B<d\u001b(B \u001b$B<e\u001b(B \u001b$B<f\u001b(B \u001b$B<g\u001b(B \u001b$B<h\u001b(B \u001b$B<i\u001b(B \u001b$B<j\u001b(B \u001b$B<k\u001b(B \u001b$B<l\u001b(B \u001b$B<m\u001b(B \u001b$B<n\u001b(B \u001b$B<o\u001b(B\n\u001b$B<p\u001b(B \u001b$B<q\u001b(B \u001b$B<r\u001b(B \u001b$B<s\u001b(B \u001b$B<t\u001b(B \u001b$B<u\u001b(B \u001b$B<v\u001b(B \u001b$B<w\u001b(B \u001b$B<x\u001b(B \u001b$B<y\u001b(B \u001b$B<z\u001b(B \u001b$B<{\u001b(B \u001b$B<|\u001b(B \u001b$B<}\u001b(B \u001b$B<~\u001b(B\n  \u001b$B=!\u001b(B \u001b$B=\"\u001b(B \u001b$B=#\u001b(B \u001b$B=$\u001b(B \u001b$B=%\u001b(B \u001b$B=&\u001b(B \u001b$B='\u001b(B \u001b$B=(\u001b(B \u001b$B=)\u001b(B \u001b$B=*\u001b(B \u001b$B=+\u001b(B \u001b$B=,\u001b(B \u001b$B=-\u001b(B \u001b$B=.\u001b(B \u001b$B=/\u001b(B\n\u001b$B=0\u001b(B \u001b$B=1\u001b(B \u001b$B=2\u001b(B \u001b$B=3\u001b(B \u001b$B=4\u001b(B \u001b$B=5\u001b(B \u001b$B=6\u001b(B \u001b$B=7\u001b(B \u001b$B=8\u001b(B \u001b$B=9\u001b(B \u001b$B=:\u001b(B \u001b$B=;\u001b(B \u001b$B=<\u001b(B \u001b$B==\u001b(B \u001b$B=>\u001b(B \u001b$B=?\u001b(B\n\u001b$B=@\u001b(B \u001b$B=A\u001b(B \u001b$B=B\u001b(B \u001b$B=C\u001b(B \u001b$B=D\u001b(B \u001b$B=E\u001b(B \u001b$B=F\u001b(B \u001b$B=G\u001b(B \u001b$B=H\u001b(B \u001b$B=I\u001b(B \u001b$B=J\u001b(B \u001b$B=K\u001b(B \u001b$B=L\u001b(B \u001b$B=M\u001b(B \u001b$B=N\u001b(B \u001b$B=O\u001b(B\n\u001b$B=P\u001b(B \u001b$B=Q\u001b(B \u001b$B=R\u001b(B \u001b$B=S\u001b(B \u001b$B=T\u001b(B \u001b$B=U\u001b(B \u001b$B=V\u001b(B \u001b$B=W\u001b(B \u001b$B=X\u001b(B \u001b$B=Y\u001b(B \u001b$B=Z\u001b(B \u001b$B=[\u001b(B \u001b$B=\\\u001b(B \u001b$B=]\u001b(B \u001b$B=^\u001b(B \u001b$B=_\u001b(B\n\u001b$B=`\u001b(B \u001b$B=a\u001b(B \u001b$B=b\u001b(B \u001b$B=c\u001b(B \u001b$B=d\u001b(B \u001b$B=e\u001b(B \u001b$B=f\u001b(B \u001b$B=g\u001b(B \u001b$B=h\u001b(B \u001b$B=i\u001b(B \u001b$B=j\u001b(B \u001b$B=k\u001b(B \u001b$B=l\u001b(B \u001b$B=m\u001b(B \u001b$B=n\u001b(B \u001b$B=o\u001b(B\n\u001b$B=p\u001b(B \u001b$B=q\u001b(B \u001b$B=r\u001b(B \u001b$B=s\u001b(B \u001b$B=t\u001b(B \u001b$B=u\u001b(B \u001b$B=v\u001b(B \u001b$B=w\u001b(B \u001b$B=x\u001b(B \u001b$B=y\u001b(B \u001b$B=z\u001b(B \u001b$B={\u001b(B \u001b$B=|\u001b(B \u001b$B=}\u001b(B \u001b$B=~\u001b(B\n  \u001b$B>!\u001b(B \u001b$B>\"\u001b(B \u001b$B>#\u001b(B \u001b$B>$\u001b(B \u001b$B>%\u001b(B \u001b$B>&\u001b(B \u001b$B>'\u001b(B \u001b$B>(\u001b(B \u001b$B>)\u001b(B \u001b$B>*\u001b(B \u001b$B>+\u001b(B \u001b$B>,\u001b(B \u001b$B>-\u001b(B \u001b$B>.\u001b(B \u001b$B>/\u001b(B\n\u001b$B>0\u001b(B \u001b$B>1\u001b(B \u001b$B>2\u001b(B \u001b$B>3\u001b(B \u001b$B>4\u001b(B \u001b$B>5\u001b(B \u001b$B>6\u001b(B \u001b$B>7\u001b(B \u001b$B>8\u001b(B \u001b$B>9\u001b(B \u001b$B>:\u001b(B \u001b$B>;\u001b(B \u001b$B><\u001b(B \u001b$B>=\u001b(B \u001b$B>>\u001b(B \u001b$B>?\u001b(B\n\u001b$B>@\u001b(B \u001b$B>A\u001b(B \u001b$B>B\u001b(B \u001b$B>C\u001b(B \u001b$B>D\u001b(B \u001b$B>E\u001b(B \u001b$B>F\u001b(B \u001b$B>G\u001b(B \u001b$B>H\u001b(B \u001b$B>I\u001b(B \u001b$B>J\u001b(B \u001b$B>K\u001b(B \u001b$B>L\u001b(B \u001b$B>M\u001b(B \u001b$B>N\u001b(B \u001b$B>O\u001b(B\n\u001b$B>P\u001b(B \u001b$B>Q\u001b(B \u001b$B>R\u001b(B \u001b$B>S\u001b(B \u001b$B>T\u001b(B \u001b$B>U\u001b(B \u001b$B>V\u001b(B \u001b$B>W\u001b(B \u001b$B>X\u001b(B \u001b$B>Y\u001b(B \u001b$B>Z\u001b(B \u001b$B>[\u001b(B \u001b$B>\\\u001b(B \u001b$B>]\u001b(B \u001b$B>^\u001b(B \u001b$B>_\u001b(B\n\u001b$B>`\u001b(B \u001b$B>a\u001b(B \u001b$B>b\u001b(B \u001b$B>c\u001b(B \u001b$B>d\u001b(B \u001b$B>e\u001b(B \u001b$B>f\u001b(B \u001b$B>g\u001b(B \u001b$B>h\u001b(B \u001b$B>i\u001b(B \u001b$B>j\u001b(B \u001b$B>k\u001b(B \u001b$B>l\u001b(B \u001b$B>m\u001b(B \u001b$B>n\u001b(B \u001b$B>o\u001b(B\n\u001b$B>p\u001b(B \u001b$B>q\u001b(B \u001b$B>r\u001b(B \u001b$B>s\u001b(B \u001b$B>t\u001b(B \u001b$B>u\u001b(B \u001b$B>v\u001b(B \u001b$B>w\u001b(B \u001b$B>x\u001b(B \u001b$B>y\u001b(B \u001b$B>z\u001b(B \u001b$B>{\u001b(B \u001b$B>|\u001b(B \u001b$B>}\u001b(B \u001b$B>~\u001b(B\n  \u001b$B?!\u001b(B \u001b$B?\"\u001b(B \u001b$B?#\u001b(B \u001b$B?$\u001b(B \u001b$B?%\u001b(B \u001b$B?&\u001b(B \u001b$B?'\u001b(B \u001b$B?(\u001b(B \u001b$B?)\u001b(B \u001b$B?*\u001b(B \u001b$B?+\u001b(B \u001b$B?,\u001b(B \u001b$B?-\u001b(B \u001b$B?.\u001b(B \u001b$B?/\u001b(B\n\u001b$B?0\u001b(B \u001b$B?1\u001b(B \u001b$B?2\u001b(B \u001b$B?3\u001b(B \u001b$B?4\u001b(B \u001b$B?5\u001b(B \u001b$B?6\u001b(B \u001b$B?7\u001b(B \u001b$B?8\u001b(B \u001b$B?9\u001b(B \u001b$B?:\u001b(B \u001b$B?;\u001b(B \u001b$B?<\u001b(B \u001b$B?=\u001b(B \u001b$B?>\u001b(B \u001b$B??\u001b(B\n\u001b$B?@\u001b(B \u001b$B?A\u001b(B \u001b$B?B\u001b(B \u001b$B?C\u001b(B \u001b$B?D\u001b(B \u001b$B?E\u001b(B \u001b$B?F\u001b(B \u001b$B?G\u001b(B \u001b$B?H\u001b(B \u001b$B?I\u001b(B \u001b$B?J\u001b(B \u001b$B?K\u001b(B \u001b$B?L\u001b(B \u001b$B?M\u001b(B \u001b$B?N\u001b(B \u001b$B?O\u001b(B\n\u001b$B?P\u001b(B \u001b$B?Q\u001b(B \u001b$B?R\u001b(B \u001b$B?S\u001b(B \u001b$B?T\u001b(B \u001b$B?U\u001b(B \u001b$B?V\u001b(B \u001b$B?W\u001b(B \u001b$B?X\u001b(B \u001b$B?Y\u001b(B \u001b$B?Z\u001b(B \u001b$B?[\u001b(B \u001b$B?\\\u001b(B \u001b$B?]\u001b(B \u001b$B?^\u001b(B \u001b$B?_\u001b(B\n\u001b$B?`\u001b(B \u001b$B?a\u001b(B \u001b$B?b\u001b(B \u001b$B?c\u001b(B \u001b$B?d\u001b(B \u001b$B?e\u001b(B \u001b$B?f\u001b(B \u001b$B?g\u001b(B \u001b$B?h\u001b(B \u001b$B?i\u001b(B \u001b$B?j\u001b(B \u001b$B?k\u001b(B \u001b$B?l\u001b(B \u001b$B?m\u001b(B \u001b$B?n\u001b(B \u001b$B?o\u001b(B\n\u001b$B?p\u001b(B \u001b$B?q\u001b(B \u001b$B?r\u001b(B \u001b$B?s\u001b(B \u001b$B?t\u001b(B \u001b$B?u\u001b(B \u001b$B?v\u001b(B \u001b$B?w\u001b(B \u001b$B?x\u001b(B \u001b$B?y\u001b(B \u001b$B?z\u001b(B \u001b$B?{\u001b(B \u001b$B?|\u001b(B \u001b$B?}\u001b(B \u001b$B?~\u001b(B\n  \u001b$B@!\u001b(B \u001b$B@\"\u001b(B \u001b$B@#\u001b(B \u001b$B@$\u001b(B \u001b$B@%\u001b(B \u001b$B@&\u001b(B \u001b$B@'\u001b(B \u001b$B@(\u001b(B \u001b$B@)\u001b(B \u001b$B@*\u001b(B \u001b$B@+\u001b(B \u001b$B@,\u001b(B \u001b$B@-\u001b(B \u001b$B@.\u001b(B \u001b$B@/\u001b(B\n\u001b$B@0\u001b(B \u001b$B@1\u001b(B \u001b$B@2\u001b(B \u001b$B@3\u001b(B \u001b$B@4\u001b(B \u001b$B@5\u001b(B \u001b$B@6\u001b(B \u001b$B@7\u001b(B \u001b$B@8\u001b(B \u001b$B@9\u001b(B \u001b$B@:\u001b(B \u001b$B@;\u001b(B \u001b$B@<\u001b(B \u001b$B@=\u001b(B \u001b$B@>\u001b(B \u001b$B@?\u001b(B\n\u001b$B@@\u001b(B \u001b$B@A\u001b(B \u001b$B@B\u001b(B \u001b$B@C\u001b(B \u001b$B@D\u001b(B \u001b$B@E\u001b(B \u001b$B@F\u001b(B \u001b$B@G\u001b(B \u001b$B@H\u001b(B \u001b$B@I\u001b(B \u001b$B@J\u001b(B \u001b$B@K\u001b(B \u001b$B@L\u001b(B \u001b$B@M\u001b(B \u001b$B@N\u001b(B \u001b$B@O\u001b(B\n\u001b$B@P\u001b(B \u001b$B@Q\u001b(B \u001b$B@R\u001b(B \u001b$B@S\u001b(B \u001b$B@T\u001b(B \u001b$B@U\u001b(B \u001b$B@V\u001b(B \u001b$B@W\u001b(B \u001b$B@X\u001b(B \u001b$B@Y\u001b(B \u001b$B@Z\u001b(B \u001b$B@[\u001b(B \u001b$B@\\\u001b(B \u001b$B@]\u001b(B \u001b$B@^\u001b(B \u001b$B@_\u001b(B\n\u001b$B@`\u001b(B \u001b$B@a\u001b(B \u001b$B@b\u001b(B \u001b$B@c\u001b(B \u001b$B@d\u001b(B \u001b$B@e\u001b(B \u001b$B@f\u001b(B \u001b$B@g\u001b(B \u001b$B@h\u001b(B \u001b$B@i\u001b(B \u001b$B@j\u001b(B \u001b$B@k\u001b(B \u001b$B@l\u001b(B \u001b$B@m\u001b(B \u001b$B@n\u001b(B \u001b$B@o\u001b(B\n\u001b$B@p\u001b(B \u001b$B@q\u001b(B \u001b$B@r\u001b(B \u001b$B@s\u001b(B \u001b$B@t\u001b(B \u001b$B@u\u001b(B \u001b$B@v\u001b(B \u001b$B@w\u001b(B \u001b$B@x\u001b(B \u001b$B@y\u001b(B \u001b$B@z\u001b(B \u001b$B@{\u001b(B \u001b$B@|\u001b(B \u001b$B@}\u001b(B \u001b$B@~\u001b(B\n  \u001b$BA!\u001b(B \u001b$BA\"\u001b(B \u001b$BA#\u001b(B \u001b$BA$\u001b(B \u001b$BA%\u001b(B \u001b$BA&\u001b(B \u001b$BA'\u001b(B \u001b$BA(\u001b(B \u001b$BA)\u001b(B \u001b$BA*\u001b(B \u001b$BA+\u001b(B \u001b$BA,\u001b(B \u001b$BA-\u001b(B \u001b$BA.\u001b(B \u001b$BA/\u001b(B\n\u001b$BA0\u001b(B \u001b$BA1\u001b(B \u001b$BA2\u001b(B \u001b$BA3\u001b(B \u001b$BA4\u001b(B \u001b$BA5\u001b(B \u001b$BA6\u001b(B \u001b$BA7\u001b(B \u001b$BA8\u001b(B \u001b$BA9\u001b(B \u001b$BA:\u001b(B \u001b$BA;\u001b(B \u001b$BA<\u001b(B \u001b$BA=\u001b(B \u001b$BA>\u001b(B \u001b$BA?\u001b(B\n\u001b$BA@\u001b(B \u001b$BAA\u001b(B \u001b$BAB\u001b(B \u001b$BAC\u001b(B \u001b$BAD\u001b(B \u001b$BAE\u001b(B \u001b$BAF\u001b(B \u001b$BAG\u001b(B \u001b$BAH\u001b(B \u001b$BAI\u001b(B \u001b$BAJ\u001b(B \u001b$BAK\u001b(B \u001b$BAL\u001b(B \u001b$BAM\u001b(B \u001b$BAN\u001b(B \u001b$BAO\u001b(B\n\u001b$BAP\u001b(B \u001b$BAQ\u001b(B \u001b$BAR\u001b(B \u001b$BAS\u001b(B \u001b$BAT\u001b(B \u001b$BAU\u001b(B \u001b$BAV\u001b(B \u001b$BAW\u001b(B \u001b$BAX\u001b(B \u001b$BAY\u001b(B \u001b$BAZ\u001b(B \u001b$BA[\u001b(B \u001b$BA\\\u001b(B \u001b$BA]\u001b(B \u001b$BA^\u001b(B \u001b$BA_\u001b(B\n\u001b$BA`\u001b(B \u001b$BAa\u001b(B \u001b$BAb\u001b(B \u001b$BAc\u001b(B \u001b$BAd\u001b(B \u001b$BAe\u001b(B \u001b$BAf\u001b(B \u001b$BAg\u001b(B \u001b$BAh\u001b(B \u001b$BAi\u001b(B \u001b$BAj\u001b(B \u001b$BAk\u001b(B \u001b$BAl\u001b(B \u001b$BAm\u001b(B \u001b$BAn\u001b(B \u001b$BAo\u001b(B\n\u001b$BAp\u001b(B \u001b$BAq\u001b(B \u001b$BAr\u001b(B \u001b$BAs\u001b(B \u001b$BAt\u001b(B \u001b$BAu\u001b(B \u001b$BAv\u001b(B \u001b$BAw\u001b(B \u001b$BAx\u001b(B \u001b$BAy\u001b(B \u001b$BAz\u001b(B \u001b$BA{\u001b(B \u001b$BA|\u001b(B \u001b$BA}\u001b(B \u001b$BA~\u001b(B\n  \u001b$BB!\u001b(B \u001b$BB\"\u001b(B \u001b$BB#\u001b(B \u001b$BB$\u001b(B \u001b$BB%\u001b(B \u001b$BB&\u001b(B \u001b$BB'\u001b(B \u001b$BB(\u001b(B \u001b$BB)\u001b(B \u001b$BB*\u001b(B \u001b$BB+\u001b(B \u001b$BB,\u001b(B \u001b$BB-\u001b(B \u001b$BB.\u001b(B \u001b$BB/\u001b(B\n\u001b$BB0\u001b(B \u001b$BB1\u001b(B \u001b$BB2\u001b(B \u001b$BB3\u001b(B \u001b$BB4\u001b(B \u001b$BB5\u001b(B \u001b$BB6\u001b(B \u001b$BB7\u001b(B \u001b$BB8\u001b(B \u001b$BB9\u001b(B \u001b$BB:\u001b(B \u001b$BB;\u001b(B \u001b$BB<\u001b(B \u001b$BB=\u001b(B \u001b$BB>\u001b(B \u001b$BB?\u001b(B\n\u001b$BB@\u001b(B \u001b$BBA\u001b(B \u001b$BBB\u001b(B \u001b$BBC\u001b(B \u001b$BBD\u001b(B \u001b$BBE\u001b(B \u001b$BBF\u001b(B \u001b$BBG\u001b(B \u001b$BBH\u001b(B \u001b$BBI\u001b(B \u001b$BBJ\u001b(B \u001b$BBK\u001b(B \u001b$BBL\u001b(B \u001b$BBM\u001b(B \u001b$BBN\u001b(B \u001b$BBO\u001b(B\n\u001b$BBP\u001b(B \u001b$BBQ\u001b(B \u001b$BBR\u001b(B \u001b$BBS\u001b(B \u001b$BBT\u001b(B \u001b$BBU\u001b(B \u001b$BBV\u001b(B \u001b$BBW\u001b(B \u001b$BBX\u001b(B \u001b$BBY\u001b(B \u001b$BBZ\u001b(B \u001b$BB[\u001b(B \u001b$BB\\\u001b(B \u001b$BB]\u001b(B \u001b$BB^\u001b(B \u001b$BB_\u001b(B\n\u001b$BB`\u001b(B \u001b$BBa\u001b(B \u001b$BBb\u001b(B \u001b$BBc\u001b(B \u001b$BBd\u001b(B \u001b$BBe\u001b(B \u001b$BBf\u001b(B \u001b$BBg\u001b(B \u001b$BBh\u001b(B \u001b$BBi\u001b(B \u001b$BBj\u001b(B \u001b$BBk\u001b(B \u001b$BBl\u001b(B \u001b$BBm\u001b(B \u001b$BBn\u001b(B \u001b$BBo\u001b(B\n\u001b$BBp\u001b(B \u001b$BBq\u001b(B \u001b$BBr\u001b(B \u001b$BBs\u001b(B \u001b$BBt\u001b(B \u001b$BBu\u001b(B \u001b$BBv\u001b(B \u001b$BBw\u001b(B \u001b$BBx\u001b(B \u001b$BBy\u001b(B \u001b$BBz\u001b(B \u001b$BB{\u001b(B \u001b$BB|\u001b(B \u001b$BB}\u001b(B \u001b$BB~\u001b(B\n  \u001b$BC!\u001b(B \u001b$BC\"\u001b(B \u001b$BC#\u001b(B \u001b$BC$\u001b(B \u001b$BC%\u001b(B \u001b$BC&\u001b(B \u001b$BC'\u001b(B \u001b$BC(\u001b(B \u001b$BC)\u001b(B \u001b$BC*\u001b(B \u001b$BC+\u001b(B \u001b$BC,\u001b(B \u001b$BC-\u001b(B \u001b$BC.\u001b(B \u001b$BC/\u001b(B\n\u001b$BC0\u001b(B \u001b$BC1\u001b(B \u001b$BC2\u001b(B \u001b$BC3\u001b(B \u001b$BC4\u001b(B \u001b$BC5\u001b(B \u001b$BC6\u001b(B \u001b$BC7\u001b(B \u001b$BC8\u001b(B \u001b$BC9\u001b(B \u001b$BC:\u001b(B \u001b$BC;\u001b(B \u001b$BC<\u001b(B \u001b$BC=\u001b(B \u001b$BC>\u001b(B \u001b$BC?\u001b(B\n\u001b$BC@\u001b(B \u001b$BCA\u001b(B \u001b$BCB\u001b(B \u001b$BCC\u001b(B \u001b$BCD\u001b(B \u001b$BCE\u001b(B \u001b$BCF\u001b(B \u001b$BCG\u001b(B \u001b$BCH\u001b(B \u001b$BCI\u001b(B \u001b$BCJ\u001b(B \u001b$BCK\u001b(B \u001b$BCL\u001b(B \u001b$BCM\u001b(B \u001b$BCN\u001b(B \u001b$BCO\u001b(B\n\u001b$BCP\u001b(B \u001b$BCQ\u001b(B \u001b$BCR\u001b(B \u001b$BCS\u001b(B \u001b$BCT\u001b(B \u001b$BCU\u001b(B \u001b$BCV\u001b(B \u001b$BCW\u001b(B \u001b$BCX\u001b(B \u001b$BCY\u001b(B \u001b$BCZ\u001b(B \u001b$BC[\u001b(B \u001b$BC\\\u001b(B \u001b$BC]\u001b(B \u001b$BC^\u001b(B \u001b$BC_\u001b(B\n\u001b$BC`\u001b(B \u001b$BCa\u001b(B \u001b$BCb\u001b(B \u001b$BCc\u001b(B \u001b$BCd\u001b(B \u001b$BCe\u001b(B \u001b$BCf\u001b(B \u001b$BCg\u001b(B \u001b$BCh\u001b(B \u001b$BCi\u001b(B \u001b$BCj\u001b(B \u001b$BCk\u001b(B \u001b$BCl\u001b(B \u001b$BCm\u001b(B \u001b$BCn\u001b(B \u001b$BCo\u001b(B\n\u001b$BCp\u001b(B \u001b$BCq\u001b(B \u001b$BCr\u001b(B \u001b$BCs\u001b(B \u001b$BCt\u001b(B \u001b$BCu\u001b(B \u001b$BCv\u001b(B \u001b$BCw\u001b(B \u001b$BCx\u001b(B \u001b$BCy\u001b(B \u001b$BCz\u001b(B \u001b$BC{\u001b(B \u001b$BC|\u001b(B \u001b$BC}\u001b(B \u001b$BC~\u001b(B\n  \u001b$BD!\u001b(B \u001b$BD\"\u001b(B \u001b$BD#\u001b(B \u001b$BD$\u001b(B \u001b$BD%\u001b(B \u001b$BD&\u001b(B \u001b$BD'\u001b(B \u001b$BD(\u001b(B \u001b$BD)\u001b(B \u001b$BD*\u001b(B \u001b$BD+\u001b(B \u001b$BD,\u001b(B \u001b$BD-\u001b(B \u001b$BD.\u001b(B \u001b$BD/\u001b(B\n\u001b$BD0\u001b(B \u001b$BD1\u001b(B \u001b$BD2\u001b(B \u001b$BD3\u001b(B \u001b$BD4\u001b(B \u001b$BD5\u001b(B \u001b$BD6\u001b(B \u001b$BD7\u001b(B \u001b$BD8\u001b(B \u001b$BD9\u001b(B \u001b$BD:\u001b(B \u001b$BD;\u001b(B \u001b$BD<\u001b(B \u001b$BD=\u001b(B \u001b$BD>\u001b(B \u001b$BD?\u001b(B\n\u001b$BD@\u001b(B \u001b$BDA\u001b(B \u001b$BDB\u001b(B \u001b$BDC\u001b(B \u001b$BDD\u001b(B \u001b$BDE\u001b(B \u001b$BDF\u001b(B \u001b$BDG\u001b(B \u001b$BDH\u001b(B \u001b$BDI\u001b(B \u001b$BDJ\u001b(B \u001b$BDK\u001b(B \u001b$BDL\u001b(B \u001b$BDM\u001b(B \u001b$BDN\u001b(B \u001b$BDO\u001b(B\n\u001b$BDP\u001b(B \u001b$BDQ\u001b(B \u001b$BDR\u001b(B \u001b$BDS\u001b(B \u001b$BDT\u001b(B \u001b$BDU\u001b(B \u001b$BDV\u001b(B \u001b$BDW\u001b(B \u001b$BDX\u001b(B \u001b$BDY\u001b(B \u001b$BDZ\u001b(B \u001b$BD[\u001b(B \u001b$BD\\\u001b(B \u001b$BD]\u001b(B \u001b$BD^\u001b(B \u001b$BD_\u001b(B\n\u001b$BD`\u001b(B \u001b$BDa\u001b(B \u001b$BDb\u001b(B \u001b$BDc\u001b(B \u001b$BDd\u001b(B \u001b$BDe\u001b(B \u001b$BDf\u001b(B \u001b$BDg\u001b(B \u001b$BDh\u001b(B \u001b$BDi\u001b(B \u001b$BDj\u001b(B \u001b$BDk\u001b(B \u001b$BDl\u001b(B \u001b$BDm\u001b(B \u001b$BDn\u001b(B \u001b$BDo\u001b(B\n\u001b$BDp\u001b(B \u001b$BDq\u001b(B \u001b$BDr\u001b(B \u001b$BDs\u001b(B \u001b$BDt\u001b(B \u001b$BDu\u001b(B \u001b$BDv\u001b(B \u001b$BDw\u001b(B \u001b$BDx\u001b(B \u001b$BDy\u001b(B \u001b$BDz\u001b(B \u001b$BD{\u001b(B \u001b$BD|\u001b(B \u001b$BD}\u001b(B \u001b$BD~\u001b(B\n  \u001b$BE!\u001b(B \u001b$BE\"\u001b(B \u001b$BE#\u001b(B \u001b$BE$\u001b(B \u001b$BE%\u001b(B \u001b$BE&\u001b(B \u001b$BE'\u001b(B \u001b$BE(\u001b(B \u001b$BE)\u001b(B \u001b$BE*\u001b(B \u001b$BE+\u001b(B \u001b$BE,\u001b(B \u001b$BE-\u001b(B \u001b$BE.\u001b(B \u001b$BE/\u001b(B\n\u001b$BE0\u001b(B \u001b$BE1\u001b(B \u001b$BE2\u001b(B \u001b$BE3\u001b(B \u001b$BE4\u001b(B \u001b$BE5\u001b(B \u001b$BE6\u001b(B \u001b$BE7\u001b(B \u001b$BE8\u001b(B \u001b$BE9\u001b(B \u001b$BE:\u001b(B \u001b$BE;\u001b(B \u001b$BE<\u001b(B \u001b$BE=\u001b(B \u001b$BE>\u001b(B \u001b$BE?\u001b(B\n\u001b$BE@\u001b(B \u001b$BEA\u001b(B \u001b$BEB\u001b(B \u001b$BEC\u001b(B \u001b$BED\u001b(B \u001b$BEE\u001b(B \u001b$BEF\u001b(B \u001b$BEG\u001b(B \u001b$BEH\u001b(B \u001b$BEI\u001b(B \u001b$BEJ\u001b(B \u001b$BEK\u001b(B \u001b$BEL\u001b(B \u001b$BEM\u001b(B \u001b$BEN\u001b(B \u001b$BEO\u001b(B\n\u001b$BEP\u001b(B \u001b$BEQ\u001b(B \u001b$BER\u001b(B \u001b$BES\u001b(B \u001b$BET\u001b(B \u001b$BEU\u001b(B \u001b$BEV\u001b(B \u001b$BEW\u001b(B \u001b$BEX\u001b(B \u001b$BEY\u001b(B \u001b$BEZ\u001b(B \u001b$BE[\u001b(B \u001b$BE\\\u001b(B \u001b$BE]\u001b(B \u001b$BE^\u001b(B \u001b$BE_\u001b(B\n\u001b$BE`\u001b(B \u001b$BEa\u001b(B \u001b$BEb\u001b(B \u001b$BEc\u001b(B \u001b$BEd\u001b(B \u001b$BEe\u001b(B \u001b$BEf\u001b(B \u001b$BEg\u001b(B \u001b$BEh\u001b(B \u001b$BEi\u001b(B \u001b$BEj\u001b(B \u001b$BEk\u001b(B \u001b$BEl\u001b(B \u001b$BEm\u001b(B \u001b$BEn\u001b(B \u001b$BEo\u001b(B\n\u001b$BEp\u001b(B \u001b$BEq\u001b(B \u001b$BEr\u001b(B \u001b$BEs\u001b(B \u001b$BEt\u001b(B \u001b$BEu\u001b(B \u001b$BEv\u001b(B \u001b$BEw\u001b(B \u001b$BEx\u001b(B \u001b$BEy\u001b(B \u001b$BEz\u001b(B \u001b$BE{\u001b(B \u001b$BE|\u001b(B \u001b$BE}\u001b(B \u001b$BE~\u001b(B\n  \u001b$BF!\u001b(B \u001b$BF\"\u001b(B \u001b$BF#\u001b(B \u001b$BF$\u001b(B \u001b$BF%\u001b(B \u001b$BF&\u001b(B \u001b$BF'\u001b(B \u001b$BF(\u001b(B \u001b$BF)\u001b(B \u001b$BF*\u001b(B \u001b$BF+\u001b(B \u001b$BF,\u001b(B \u001b$BF-\u001b(B \u001b$BF.\u001b(B \u001b$BF/\u001b(B\n\u001b$BF0\u001b(B \u001b$BF1\u001b(B \u001b$BF2\u001b(B \u001b$BF3\u001b(B \u001b$BF4\u001b(B \u001b$BF5\u001b(B \u001b$BF6\u001b(B \u001b$BF7\u001b(B \u001b$BF8\u001b(B \u001b$BF9\u001b(B \u001b$BF:\u001b(B \u001b$BF;\u001b(B \u001b$BF<\u001b(B \u001b$BF=\u001b(B \u001b$BF>\u001b(B \u001b$BF?\u001b(B\n\u001b$BF@\u001b(B \u001b$BFA\u001b(B \u001b$BFB\u001b(B \u001b$BFC\u001b(B \u001b$BFD\u001b(B \u001b$BFE\u001b(B \u001b$BFF\u001b(B \u001b$BFG\u001b(B \u001b$BFH\u001b(B \u001b$BFI\u001b(B \u001b$BFJ\u001b(B \u001b$BFK\u001b(B \u001b$BFL\u001b(B \u001b$BFM\u001b(B \u001b$BFN\u001b(B \u001b$BFO\u001b(B\n\u001b$BFP\u001b(B \u001b$BFQ\u001b(B \u001b$BFR\u001b(B \u001b$BFS\u001b(B \u001b$BFT\u001b(B \u001b$BFU\u001b(B \u001b$BFV\u001b(B \u001b$BFW\u001b(B \u001b$BFX\u001b(B \u001b$BFY\u001b(B \u001b$BFZ\u001b(B \u001b$BF[\u001b(B \u001b$BF\\\u001b(B \u001b$BF]\u001b(B \u001b$BF^\u001b(B \u001b$BF_\u001b(B\n\u001b$BF`\u001b(B \u001b$BFa\u001b(B \u001b$BFb\u001b(B \u001b$BFc\u001b(B \u001b$BFd\u001b(B \u001b$BFe\u001b(B \u001b$BFf\u001b(B \u001b$BFg\u001b(B \u001b$BFh\u001b(B \u001b$BFi\u001b(B \u001b$BFj\u001b(B \u001b$BFk\u001b(B \u001b$BFl\u001b(B \u001b$BFm\u001b(B \u001b$BFn\u001b(B \u001b$BFo\u001b(B\n\u001b$BFp\u001b(B \u001b$BFq\u001b(B \u001b$BFr\u001b(B \u001b$BFs\u001b(B \u001b$BFt\u001b(B \u001b$BFu\u001b(B \u001b$BFv\u001b(B \u001b$BFw\u001b(B \u001b$BFx\u001b(B \u001b$BFy\u001b(B \u001b$BFz\u001b(B \u001b$BF{\u001b(B \u001b$BF|\u001b(B \u001b$BF}\u001b(B \u001b$BF~\u001b(B\n  \u001b$BG!\u001b(B \u001b$BG\"\u001b(B \u001b$BG#\u001b(B \u001b$BG$\u001b(B \u001b$BG%\u001b(B \u001b$BG&\u001b(B \u001b$BG'\u001b(B \u001b$BG(\u001b(B \u001b$BG)\u001b(B \u001b$BG*\u001b(B \u001b$BG+\u001b(B \u001b$BG,\u001b(B \u001b$BG-\u001b(B \u001b$BG.\u001b(B \u001b$BG/\u001b(B\n\u001b$BG0\u001b(B \u001b$BG1\u001b(B \u001b$BG2\u001b(B \u001b$BG3\u001b(B \u001b$BG4\u001b(B \u001b$BG5\u001b(B \u001b$BG6\u001b(B \u001b$BG7\u001b(B \u001b$BG8\u001b(B \u001b$BG9\u001b(B \u001b$BG:\u001b(B \u001b$BG;\u001b(B \u001b$BG<\u001b(B \u001b$BG=\u001b(B \u001b$BG>\u001b(B \u001b$BG?\u001b(B\n\u001b$BG@\u001b(B \u001b$BGA\u001b(B \u001b$BGB\u001b(B \u001b$BGC\u001b(B \u001b$BGD\u001b(B \u001b$BGE\u001b(B \u001b$BGF\u001b(B \u001b$BGG\u001b(B \u001b$BGH\u001b(B \u001b$BGI\u001b(B \u001b$BGJ\u001b(B \u001b$BGK\u001b(B \u001b$BGL\u001b(B \u001b$BGM\u001b(B \u001b$BGN\u001b(B \u001b$BGO\u001b(B\n\u001b$BGP\u001b(B \u001b$BGQ\u001b(B \u001b$BGR\u001b(B \u001b$BGS\u001b(B \u001b$BGT\u001b(B \u001b$BGU\u001b(B \u001b$BGV\u001b(B \u001b$BGW\u001b(B \u001b$BGX\u001b(B \u001b$BGY\u001b(B \u001b$BGZ\u001b(B \u001b$BG[\u001b(B \u001b$BG\\\u001b(B \u001b$BG]\u001b(B \u001b$BG^\u001b(B \u001b$BG_\u001b(B\n\u001b$BG`\u001b(B \u001b$BGa\u001b(B \u001b$BGb\u001b(B \u001b$BGc\u001b(B \u001b$BGd\u001b(B \u001b$BGe\u001b(B \u001b$BGf\u001b(B \u001b$BGg\u001b(B \u001b$BGh\u001b(B \u001b$BGi\u001b(B \u001b$BGj\u001b(B \u001b$BGk\u001b(B \u001b$BGl\u001b(B \u001b$BGm\u001b(B \u001b$BGn\u001b(B \u001b$BGo\u001b(B\n\u001b$BGp\u001b(B \u001b$BGq\u001b(B \u001b$BGr\u001b(B \u001b$BGs\u001b(B \u001b$BGt\u001b(B \u001b$BGu\u001b(B \u001b$BGv\u001b(B \u001b$BGw\u001b(B \u001b$BGx\u001b(B \u001b$BGy\u001b(B \u001b$BGz\u001b(B \u001b$BG{\u001b(B \u001b$BG|\u001b(B \u001b$BG}\u001b(B \u001b$BG~\u001b(B\n  \u001b$BH!\u001b(B \u001b$BH\"\u001b(B \u001b$BH#\u001b(B \u001b$BH$\u001b(B \u001b$BH%\u001b(B \u001b$BH&\u001b(B \u001b$BH'\u001b(B \u001b$BH(\u001b(B \u001b$BH)\u001b(B \u001b$BH*\u001b(B \u001b$BH+\u001b(B \u001b$BH,\u001b(B \u001b$BH-\u001b(B \u001b$BH.\u001b(B \u001b$BH/\u001b(B\n\u001b$BH0\u001b(B \u001b$BH1\u001b(B \u001b$BH2\u001b(B \u001b$BH3\u001b(B \u001b$BH4\u001b(B \u001b$BH5\u001b(B \u001b$BH6\u001b(B \u001b$BH7\u001b(B \u001b$BH8\u001b(B \u001b$BH9\u001b(B \u001b$BH:\u001b(B \u001b$BH;\u001b(B \u001b$BH<\u001b(B \u001b$BH=\u001b(B \u001b$BH>\u001b(B \u001b$BH?\u001b(B\n\u001b$BH@\u001b(B \u001b$BHA\u001b(B \u001b$BHB\u001b(B \u001b$BHC\u001b(B \u001b$BHD\u001b(B \u001b$BHE\u001b(B \u001b$BHF\u001b(B \u001b$BHG\u001b(B \u001b$BHH\u001b(B \u001b$BHI\u001b(B \u001b$BHJ\u001b(B \u001b$BHK\u001b(B \u001b$BHL\u001b(B \u001b$BHM\u001b(B \u001b$BHN\u001b(B \u001b$BHO\u001b(B\n\u001b$BHP\u001b(B \u001b$BHQ\u001b(B \u001b$BHR\u001b(B \u001b$BHS\u001b(B \u001b$BHT\u001b(B \u001b$BHU\u001b(B \u001b$BHV\u001b(B \u001b$BHW\u001b(B \u001b$BHX\u001b(B \u001b$BHY\u001b(B \u001b$BHZ\u001b(B \u001b$BH[\u001b(B \u001b$BH\\\u001b(B \u001b$BH]\u001b(B \u001b$BH^\u001b(B \u001b$BH_\u001b(B\n\u001b$BH`\u001b(B \u001b$BHa\u001b(B \u001b$BHb\u001b(B \u001b$BHc\u001b(B \u001b$BHd\u001b(B \u001b$BHe\u001b(B \u001b$BHf\u001b(B \u001b$BHg\u001b(B \u001b$BHh\u001b(B \u001b$BHi\u001b(B \u001b$BHj\u001b(B \u001b$BHk\u001b(B \u001b$BHl\u001b(B \u001b$BHm\u001b(B \u001b$BHn\u001b(B \u001b$BHo\u001b(B\n\u001b$BHp\u001b(B \u001b$BHq\u001b(B \u001b$BHr\u001b(B \u001b$BHs\u001b(B \u001b$BHt\u001b(B \u001b$BHu\u001b(B \u001b$BHv\u001b(B \u001b$BHw\u001b(B \u001b$BHx\u001b(B \u001b$BHy\u001b(B \u001b$BHz\u001b(B \u001b$BH{\u001b(B \u001b$BH|\u001b(B \u001b$BH}\u001b(B \u001b$BH~\u001b(B\n  \u001b$BI!\u001b(B \u001b$BI\"\u001b(B \u001b$BI#\u001b(B \u001b$BI$\u001b(B \u001b$BI%\u001b(B \u001b$BI&\u001b(B \u001b$BI'\u001b(B \u001b$BI(\u001b(B \u001b$BI)\u001b(B \u001b$BI*\u001b(B \u001b$BI+\u001b(B \u001b$BI,\u001b(B \u001b$BI-\u001b(B \u001b$BI.\u001b(B \u001b$BI/\u001b(B\n\u001b$BI0\u001b(B \u001b$BI1\u001b(B \u001b$BI2\u001b(B \u001b$BI3\u001b(B \u001b$BI4\u001b(B \u001b$BI5\u001b(B \u001b$BI6\u001b(B \u001b$BI7\u001b(B \u001b$BI8\u001b(B \u001b$BI9\u001b(B \u001b$BI:\u001b(B \u001b$BI;\u001b(B \u001b$BI<\u001b(B \u001b$BI=\u001b(B \u001b$BI>\u001b(B \u001b$BI?\u001b(B\n\u001b$BI@\u001b(B \u001b$BIA\u001b(B \u001b$BIB\u001b(B \u001b$BIC\u001b(B \u001b$BID\u001b(B \u001b$BIE\u001b(B \u001b$BIF\u001b(B \u001b$BIG\u001b(B \u001b$BIH\u001b(B \u001b$BII\u001b(B \u001b$BIJ\u001b(B \u001b$BIK\u001b(B \u001b$BIL\u001b(B \u001b$BIM\u001b(B \u001b$BIN\u001b(B \u001b$BIO\u001b(B\n\u001b$BIP\u001b(B \u001b$BIQ\u001b(B \u001b$BIR\u001b(B \u001b$BIS\u001b(B \u001b$BIT\u001b(B \u001b$BIU\u001b(B \u001b$BIV\u001b(B \u001b$BIW\u001b(B \u001b$BIX\u001b(B \u001b$BIY\u001b(B \u001b$BIZ\u001b(B \u001b$BI[\u001b(B \u001b$BI\\\u001b(B \u001b$BI]\u001b(B \u001b$BI^\u001b(B \u001b$BI_\u001b(B\n\u001b$BI`\u001b(B \u001b$BIa\u001b(B \u001b$BIb\u001b(B \u001b$BIc\u001b(B \u001b$BId\u001b(B \u001b$BIe\u001b(B \u001b$BIf\u001b(B \u001b$BIg\u001b(B \u001b$BIh\u001b(B \u001b$BIi\u001b(B \u001b$BIj\u001b(B \u001b$BIk\u001b(B \u001b$BIl\u001b(B \u001b$BIm\u001b(B \u001b$BIn\u001b(B \u001b$BIo\u001b(B\n\u001b$BIp\u001b(B \u001b$BIq\u001b(B \u001b$BIr\u001b(B \u001b$BIs\u001b(B \u001b$BIt\u001b(B \u001b$BIu\u001b(B \u001b$BIv\u001b(B \u001b$BIw\u001b(B \u001b$BIx\u001b(B \u001b$BIy\u001b(B \u001b$BIz\u001b(B \u001b$BI{\u001b(B \u001b$BI|\u001b(B \u001b$BI}\u001b(B \u001b$BI~\u001b(B\n  \u001b$BJ!\u001b(B \u001b$BJ\"\u001b(B \u001b$BJ#\u001b(B \u001b$BJ$\u001b(B \u001b$BJ%\u001b(B \u001b$BJ&\u001b(B \u001b$BJ'\u001b(B \u001b$BJ(\u001b(B \u001b$BJ)\u001b(B \u001b$BJ*\u001b(B \u001b$BJ+\u001b(B \u001b$BJ,\u001b(B \u001b$BJ-\u001b(B \u001b$BJ.\u001b(B \u001b$BJ/\u001b(B\n\u001b$BJ0\u001b(B \u001b$BJ1\u001b(B \u001b$BJ2\u001b(B \u001b$BJ3\u001b(B \u001b$BJ4\u001b(B \u001b$BJ5\u001b(B \u001b$BJ6\u001b(B \u001b$BJ7\u001b(B \u001b$BJ8\u001b(B \u001b$BJ9\u001b(B \u001b$BJ:\u001b(B \u001b$BJ;\u001b(B \u001b$BJ<\u001b(B \u001b$BJ=\u001b(B \u001b$BJ>\u001b(B \u001b$BJ?\u001b(B\n\u001b$BJ@\u001b(B \u001b$BJA\u001b(B \u001b$BJB\u001b(B \u001b$BJC\u001b(B \u001b$BJD\u001b(B \u001b$BJE\u001b(B \u001b$BJF\u001b(B \u001b$BJG\u001b(B \u001b$BJH\u001b(B \u001b$BJI\u001b(B \u001b$BJJ\u001b(B \u001b$BJK\u001b(B \u001b$BJL\u001b(B \u001b$BJM\u001b(B \u001b$BJN\u001b(B \u001b$BJO\u001b(B\n\u001b$BJP\u001b(B \u001b$BJQ\u001b(B \u001b$BJR\u001b(B \u001b$BJS\u001b(B \u001b$BJT\u001b(B \u001b$BJU\u001b(B \u001b$BJV\u001b(B \u001b$BJW\u001b(B \u001b$BJX\u001b(B \u001b$BJY\u001b(B \u001b$BJZ\u001b(B \u001b$BJ[\u001b(B \u001b$BJ\\\u001b(B \u001b$BJ]\u001b(B \u001b$BJ^\u001b(B \u001b$BJ_\u001b(B\n\u001b$BJ`\u001b(B \u001b$BJa\u001b(B \u001b$BJb\u001b(B \u001b$BJc\u001b(B \u001b$BJd\u001b(B \u001b$BJe\u001b(B \u001b$BJf\u001b(B \u001b$BJg\u001b(B \u001b$BJh\u001b(B \u001b$BJi\u001b(B \u001b$BJj\u001b(B \u001b$BJk\u001b(B \u001b$BJl\u001b(B \u001b$BJm\u001b(B \u001b$BJn\u001b(B \u001b$BJo\u001b(B\n\u001b$BJp\u001b(B \u001b$BJq\u001b(B \u001b$BJr\u001b(B \u001b$BJs\u001b(B \u001b$BJt\u001b(B \u001b$BJu\u001b(B \u001b$BJv\u001b(B \u001b$BJw\u001b(B \u001b$BJx\u001b(B \u001b$BJy\u001b(B \u001b$BJz\u001b(B \u001b$BJ{\u001b(B \u001b$BJ|\u001b(B \u001b$BJ}\u001b(B \u001b$BJ~\u001b(B\n  \u001b$BK!\u001b(B \u001b$BK\"\u001b(B \u001b$BK#\u001b(B \u001b$BK$\u001b(B \u001b$BK%\u001b(B \u001b$BK&\u001b(B \u001b$BK'\u001b(B \u001b$BK(\u001b(B \u001b$BK)\u001b(B \u001b$BK*\u001b(B \u001b$BK+\u001b(B \u001b$BK,\u001b(B \u001b$BK-\u001b(B \u001b$BK.\u001b(B \u001b$BK/\u001b(B\n\u001b$BK0\u001b(B \u001b$BK1\u001b(B \u001b$BK2\u001b(B \u001b$BK3\u001b(B \u001b$BK4\u001b(B \u001b$BK5\u001b(B \u001b$BK6\u001b(B \u001b$BK7\u001b(B \u001b$BK8\u001b(B \u001b$BK9\u001b(B \u001b$BK:\u001b(B \u001b$BK;\u001b(B \u001b$BK<\u001b(B \u001b$BK=\u001b(B \u001b$BK>\u001b(B \u001b$BK?\u001b(B\n\u001b$BK@\u001b(B \u001b$BKA\u001b(B \u001b$BKB\u001b(B \u001b$BKC\u001b(B \u001b$BKD\u001b(B \u001b$BKE\u001b(B \u001b$BKF\u001b(B \u001b$BKG\u001b(B \u001b$BKH\u001b(B \u001b$BKI\u001b(B \u001b$BKJ\u001b(B \u001b$BKK\u001b(B \u001b$BKL\u001b(B \u001b$BKM\u001b(B \u001b$BKN\u001b(B \u001b$BKO\u001b(B\n\u001b$BKP\u001b(B \u001b$BKQ\u001b(B \u001b$BKR\u001b(B \u001b$BKS\u001b(B \u001b$BKT\u001b(B \u001b$BKU\u001b(B \u001b$BKV\u001b(B \u001b$BKW\u001b(B \u001b$BKX\u001b(B \u001b$BKY\u001b(B \u001b$BKZ\u001b(B \u001b$BK[\u001b(B \u001b$BK\\\u001b(B \u001b$BK]\u001b(B \u001b$BK^\u001b(B \u001b$BK_\u001b(B\n\u001b$BK`\u001b(B \u001b$BKa\u001b(B \u001b$BKb\u001b(B \u001b$BKc\u001b(B \u001b$BKd\u001b(B \u001b$BKe\u001b(B \u001b$BKf\u001b(B \u001b$BKg\u001b(B \u001b$BKh\u001b(B \u001b$BKi\u001b(B \u001b$BKj\u001b(B \u001b$BKk\u001b(B \u001b$BKl\u001b(B \u001b$BKm\u001b(B \u001b$BKn\u001b(B \u001b$BKo\u001b(B\n\u001b$BKp\u001b(B \u001b$BKq\u001b(B \u001b$BKr\u001b(B \u001b$BKs\u001b(B \u001b$BKt\u001b(B \u001b$BKu\u001b(B \u001b$BKv\u001b(B \u001b$BKw\u001b(B \u001b$BKx\u001b(B \u001b$BKy\u001b(B \u001b$BKz\u001b(B \u001b$BK{\u001b(B \u001b$BK|\u001b(B \u001b$BK}\u001b(B \u001b$BK~\u001b(B\n  \u001b$BL!\u001b(B \u001b$BL\"\u001b(B \u001b$BL#\u001b(B \u001b$BL$\u001b(B \u001b$BL%\u001b(B \u001b$BL&\u001b(B \u001b$BL'\u001b(B \u001b$BL(\u001b(B \u001b$BL)\u001b(B \u001b$BL*\u001b(B \u001b$BL+\u001b(B \u001b$BL,\u001b(B \u001b$BL-\u001b(B \u001b$BL.\u001b(B \u001b$BL/\u001b(B\n\u001b$BL0\u001b(B \u001b$BL1\u001b(B \u001b$BL2\u001b(B \u001b$BL3\u001b(B \u001b$BL4\u001b(B \u001b$BL5\u001b(B \u001b$BL6\u001b(B \u001b$BL7\u001b(B \u001b$BL8\u001b(B \u001b$BL9\u001b(B \u001b$BL:\u001b(B \u001b$BL;\u001b(B \u001b$BL<\u001b(B \u001b$BL=\u001b(B \u001b$BL>\u001b(B \u001b$BL?\u001b(B\n\u001b$BL@\u001b(B \u001b$BLA\u001b(B \u001b$BLB\u001b(B \u001b$BLC\u001b(B \u001b$BLD\u001b(B \u001b$BLE\u001b(B \u001b$BLF\u001b(B \u001b$BLG\u001b(B \u001b$BLH\u001b(B \u001b$BLI\u001b(B \u001b$BLJ\u001b(B \u001b$BLK\u001b(B \u001b$BLL\u001b(B \u001b$BLM\u001b(B \u001b$BLN\u001b(B \u001b$BLO\u001b(B\n\u001b$BLP\u001b(B \u001b$BLQ\u001b(B \u001b$BLR\u001b(B \u001b$BLS\u001b(B \u001b$BLT\u001b(B \u001b$BLU\u001b(B \u001b$BLV\u001b(B \u001b$BLW\u001b(B \u001b$BLX\u001b(B \u001b$BLY\u001b(B \u001b$BLZ\u001b(B \u001b$BL[\u001b(B \u001b$BL\\\u001b(B \u001b$BL]\u001b(B \u001b$BL^\u001b(B \u001b$BL_\u001b(B\n\u001b$BL`\u001b(B \u001b$BLa\u001b(B \u001b$BLb\u001b(B \u001b$BLc\u001b(B \u001b$BLd\u001b(B \u001b$BLe\u001b(B \u001b$BLf\u001b(B \u001b$BLg\u001b(B \u001b$BLh\u001b(B \u001b$BLi\u001b(B \u001b$BLj\u001b(B \u001b$BLk\u001b(B \u001b$BLl\u001b(B \u001b$BLm\u001b(B \u001b$BLn\u001b(B \u001b$BLo\u001b(B\n\u001b$BLp\u001b(B \u001b$BLq\u001b(B \u001b$BLr\u001b(B \u001b$BLs\u001b(B \u001b$BLt\u001b(B \u001b$BLu\u001b(B \u001b$BLv\u001b(B \u001b$BLw\u001b(B \u001b$BLx\u001b(B \u001b$BLy\u001b(B \u001b$BLz\u001b(B \u001b$BL{\u001b(B \u001b$BL|\u001b(B \u001b$BL}\u001b(B \u001b$BL~\u001b(B\n  \u001b$BM!\u001b(B \u001b$BM\"\u001b(B \u001b$BM#\u001b(B \u001b$BM$\u001b(B \u001b$BM%\u001b(B \u001b$BM&\u001b(B \u001b$BM'\u001b(B \u001b$BM(\u001b(B \u001b$BM)\u001b(B \u001b$BM*\u001b(B \u001b$BM+\u001b(B \u001b$BM,\u001b(B \u001b$BM-\u001b(B \u001b$BM.\u001b(B \u001b$BM/\u001b(B\n\u001b$BM0\u001b(B \u001b$BM1\u001b(B \u001b$BM2\u001b(B \u001b$BM3\u001b(B \u001b$BM4\u001b(B \u001b$BM5\u001b(B \u001b$BM6\u001b(B \u001b$BM7\u001b(B \u001b$BM8\u001b(B \u001b$BM9\u001b(B \u001b$BM:\u001b(B \u001b$BM;\u001b(B \u001b$BM<\u001b(B \u001b$BM=\u001b(B \u001b$BM>\u001b(B \u001b$BM?\u001b(B\n\u001b$BM@\u001b(B \u001b$BMA\u001b(B \u001b$BMB\u001b(B \u001b$BMC\u001b(B \u001b$BMD\u001b(B \u001b$BME\u001b(B \u001b$BMF\u001b(B \u001b$BMG\u001b(B \u001b$BMH\u001b(B \u001b$BMI\u001b(B \u001b$BMJ\u001b(B \u001b$BMK\u001b(B \u001b$BML\u001b(B \u001b$BMM\u001b(B \u001b$BMN\u001b(B \u001b$BMO\u001b(B\n\u001b$BMP\u001b(B \u001b$BMQ\u001b(B \u001b$BMR\u001b(B \u001b$BMS\u001b(B \u001b$BMT\u001b(B \u001b$BMU\u001b(B \u001b$BMV\u001b(B \u001b$BMW\u001b(B \u001b$BMX\u001b(B \u001b$BMY\u001b(B \u001b$BMZ\u001b(B \u001b$BM[\u001b(B \u001b$BM\\\u001b(B \u001b$BM]\u001b(B \u001b$BM^\u001b(B \u001b$BM_\u001b(B\n\u001b$BM`\u001b(B \u001b$BMa\u001b(B \u001b$BMb\u001b(B \u001b$BMc\u001b(B \u001b$BMd\u001b(B \u001b$BMe\u001b(B \u001b$BMf\u001b(B \u001b$BMg\u001b(B \u001b$BMh\u001b(B \u001b$BMi\u001b(B \u001b$BMj\u001b(B \u001b$BMk\u001b(B \u001b$BMl\u001b(B \u001b$BMm\u001b(B \u001b$BMn\u001b(B \u001b$BMo\u001b(B\n\u001b$BMp\u001b(B \u001b$BMq\u001b(B \u001b$BMr\u001b(B \u001b$BMs\u001b(B \u001b$BMt\u001b(B \u001b$BMu\u001b(B \u001b$BMv\u001b(B \u001b$BMw\u001b(B \u001b$BMx\u001b(B \u001b$BMy\u001b(B \u001b$BMz\u001b(B \u001b$BM{\u001b(B \u001b$BM|\u001b(B \u001b$BM}\u001b(B \u001b$BM~\u001b(B\n  \u001b$BN!\u001b(B \u001b$BN\"\u001b(B \u001b$BN#\u001b(B \u001b$BN$\u001b(B \u001b$BN%\u001b(B \u001b$BN&\u001b(B \u001b$BN'\u001b(B \u001b$BN(\u001b(B \u001b$BN)\u001b(B \u001b$BN*\u001b(B \u001b$BN+\u001b(B \u001b$BN,\u001b(B \u001b$BN-\u001b(B \u001b$BN.\u001b(B \u001b$BN/\u001b(B\n\u001b$BN0\u001b(B \u001b$BN1\u001b(B \u001b$BN2\u001b(B \u001b$BN3\u001b(B \u001b$BN4\u001b(B \u001b$BN5\u001b(B \u001b$BN6\u001b(B \u001b$BN7\u001b(B \u001b$BN8\u001b(B \u001b$BN9\u001b(B \u001b$BN:\u001b(B \u001b$BN;\u001b(B \u001b$BN<\u001b(B \u001b$BN=\u001b(B \u001b$BN>\u001b(B \u001b$BN?\u001b(B\n\u001b$BN@\u001b(B \u001b$BNA\u001b(B \u001b$BNB\u001b(B \u001b$BNC\u001b(B \u001b$BND\u001b(B \u001b$BNE\u001b(B \u001b$BNF\u001b(B \u001b$BNG\u001b(B \u001b$BNH\u001b(B \u001b$BNI\u001b(B \u001b$BNJ\u001b(B \u001b$BNK\u001b(B \u001b$BNL\u001b(B \u001b$BNM\u001b(B \u001b$BNN\u001b(B \u001b$BNO\u001b(B\n\u001b$BNP\u001b(B \u001b$BNQ\u001b(B \u001b$BNR\u001b(B \u001b$BNS\u001b(B \u001b$BNT\u001b(B \u001b$BNU\u001b(B \u001b$BNV\u001b(B \u001b$BNW\u001b(B \u001b$BNX\u001b(B \u001b$BNY\u001b(B \u001b$BNZ\u001b(B \u001b$BN[\u001b(B \u001b$BN\\\u001b(B \u001b$BN]\u001b(B \u001b$BN^\u001b(B \u001b$BN_\u001b(B\n\u001b$BN`\u001b(B \u001b$BNa\u001b(B \u001b$BNb\u001b(B \u001b$BNc\u001b(B \u001b$BNd\u001b(B \u001b$BNe\u001b(B \u001b$BNf\u001b(B \u001b$BNg\u001b(B \u001b$BNh\u001b(B \u001b$BNi\u001b(B \u001b$BNj\u001b(B \u001b$BNk\u001b(B \u001b$BNl\u001b(B \u001b$BNm\u001b(B \u001b$BNn\u001b(B \u001b$BNo\u001b(B\n\u001b$BNp\u001b(B \u001b$BNq\u001b(B \u001b$BNr\u001b(B \u001b$BNs\u001b(B \u001b$BNt\u001b(B \u001b$BNu\u001b(B \u001b$BNv\u001b(B \u001b$BNw\u001b(B \u001b$BNx\u001b(B \u001b$BNy\u001b(B \u001b$BNz\u001b(B \u001b$BN{\u001b(B \u001b$BN|\u001b(B \u001b$BN}\u001b(B \u001b$BN~\u001b(B\n  \u001b$BO!\u001b(B \u001b$BO\"\u001b(B \u001b$BO#\u001b(B \u001b$BO$\u001b(B \u001b$BO%\u001b(B \u001b$BO&\u001b(B \u001b$BO'\u001b(B \u001b$BO(\u001b(B \u001b$BO)\u001b(B \u001b$BO*\u001b(B \u001b$BO+\u001b(B \u001b$BO,\u001b(B \u001b$BO-\u001b(B \u001b$BO.\u001b(B \u001b$BO/\u001b(B\n\u001b$BO0\u001b(B \u001b$BO1\u001b(B \u001b$BO2\u001b(B \u001b$BO3\u001b(B \u001b$BO4\u001b(B \u001b$BO5\u001b(B \u001b$BO6\u001b(B \u001b$BO7\u001b(B \u001b$BO8\u001b(B \u001b$BO9\u001b(B \u001b$BO:\u001b(B \u001b$BO;\u001b(B \u001b$BO<\u001b(B \u001b$BO=\u001b(B \u001b$BO>\u001b(B \u001b$BO?\u001b(B\n\u001b$BO@\u001b(B \u001b$BOA\u001b(B \u001b$BOB\u001b(B \u001b$BOC\u001b(B \u001b$BOD\u001b(B \u001b$BOE\u001b(B \u001b$BOF\u001b(B \u001b$BOG\u001b(B \u001b$BOH\u001b(B \u001b$BOI\u001b(B \u001b$BOJ\u001b(B \u001b$BOK\u001b(B \u001b$BOL\u001b(B \u001b$BOM\u001b(B \u001b$BON\u001b(B \u001b$BOO\u001b(B\n\u001b$BOP\u001b(B \u001b$BOQ\u001b(B \u001b$BOR\u001b(B \u001b$BOS\u001b(B\n  \u001b$BP!\u001b(B \u001b$BP\"\u001b(B \u001b$BP#\u001b(B \u001b$BP$\u001b(B \u001b$BP%\u001b(B \u001b$BP&\u001b(B \u001b$BP'\u001b(B \u001b$BP(\u001b(B \u001b$BP)\u001b(B \u001b$BP*\u001b(B \u001b$BP+\u001b(B \u001b$BP,\u001b(B \u001b$BP-\u001b(B \u001b$BP.\u001b(B \u001b$BP/\u001b(B\n\u001b$BP0\u001b(B \u001b$BP1\u001b(B \u001b$BP2\u001b(B \u001b$BP3\u001b(B \u001b$BP4\u001b(B \u001b$BP5\u001b(B \u001b$BP6\u001b(B \u001b$BP7\u001b(B \u001b$BP8\u001b(B \u001b$BP9\u001b(B \u001b$BP:\u001b(B \u001b$BP;\u001b(B \u001b$BP<\u001b(B \u001b$BP=\u001b(B \u001b$BP>\u001b(B \u001b$BP?\u001b(B\n\u001b$BP@\u001b(B \u001b$BPA\u001b(B \u001b$BPB\u001b(B \u001b$BPC\u001b(B \u001b$BPD\u001b(B \u001b$BPE\u001b(B \u001b$BPF\u001b(B \u001b$BPG\u001b(B \u001b$BPH\u001b(B \u001b$BPI\u001b(B \u001b$BPJ\u001b(B \u001b$BPK\u001b(B \u001b$BPL\u001b(B \u001b$BPM\u001b(B \u001b$BPN\u001b(B \u001b$BPO\u001b(B\n\u001b$BPP\u001b(B \u001b$BPQ\u001b(B \u001b$BPR\u001b(B \u001b$BPS\u001b(B \u001b$BPT\u001b(B \u001b$BPU\u001b(B \u001b$BPV\u001b(B \u001b$BPW\u001b(B \u001b$BPX\u001b(B \u001b$BPY\u001b(B \u001b$BPZ\u001b(B \u001b$BP[\u001b(B \u001b$BP\\\u001b(B \u001b$BP]\u001b(B \u001b$BP^\u001b(B \u001b$BP_\u001b(B\n\u001b$BP`\u001b(B \u001b$BPa\u001b(B \u001b$BPb\u001b(B \u001b$BPc\u001b(B \u001b$BPd\u001b(B \u001b$BPe\u001b(B \u001b$BPf\u001b(B \u001b$BPg\u001b(B \u001b$BPh\u001b(B \u001b$BPi\u001b(B \u001b$BPj\u001b(B \u001b$BPk\u001b(B \u001b$BPl\u001b(B \u001b$BPm\u001b(B \u001b$BPn\u001b(B \u001b$BPo\u001b(B\n\u001b$BPp\u001b(B \u001b$BPq\u001b(B \u001b$BPr\u001b(B \u001b$BPs\u001b(B \u001b$BPt\u001b(B \u001b$BPu\u001b(B \u001b$BPv\u001b(B \u001b$BPw\u001b(B \u001b$BPx\u001b(B \u001b$BPy\u001b(B \u001b$BPz\u001b(B \u001b$BP{\u001b(B \u001b$BP|\u001b(B \u001b$BP}\u001b(B \u001b$BP~\u001b(B\n  \u001b$BQ!\u001b(B \u001b$BQ\"\u001b(B \u001b$BQ#\u001b(B \u001b$BQ$\u001b(B \u001b$BQ%\u001b(B \u001b$BQ&\u001b(B \u001b$BQ'\u001b(B \u001b$BQ(\u001b(B \u001b$BQ)\u001b(B \u001b$BQ*\u001b(B \u001b$BQ+\u001b(B \u001b$BQ,\u001b(B \u001b$BQ-\u001b(B \u001b$BQ.\u001b(B \u001b$BQ/\u001b(B\n\u001b$BQ0\u001b(B \u001b$BQ1\u001b(B \u001b$BQ2\u001b(B \u001b$BQ3\u001b(B \u001b$BQ4\u001b(B \u001b$BQ5\u001b(B \u001b$BQ6\u001b(B \u001b$BQ7\u001b(B \u001b$BQ8\u001b(B \u001b$BQ9\u001b(B \u001b$BQ:\u001b(B \u001b$BQ;\u001b(B \u001b$BQ<\u001b(B \u001b$BQ=\u001b(B \u001b$BQ>\u001b(B \u001b$BQ?\u001b(B\n\u001b$BQ@\u001b(B \u001b$BQA\u001b(B \u001b$BQB\u001b(B \u001b$BQC\u001b(B \u001b$BQD\u001b(B \u001b$BQE\u001b(B \u001b$BQF\u001b(B \u001b$BQG\u001b(B \u001b$BQH\u001b(B \u001b$BQI\u001b(B \u001b$BQJ\u001b(B \u001b$BQK\u001b(B \u001b$BQL\u001b(B \u001b$BQM\u001b(B \u001b$BQN\u001b(B \u001b$BQO\u001b(B\n\u001b$BQP\u001b(B \u001b$BQQ\u001b(B \u001b$BQR\u001b(B \u001b$BQS\u001b(B \u001b$BQT\u001b(B \u001b$BQU\u001b(B \u001b$BQV\u001b(B \u001b$BQW\u001b(B \u001b$BQX\u001b(B \u001b$BQY\u001b(B \u001b$BQZ\u001b(B \u001b$BQ[\u001b(B \u001b$BQ\\\u001b(B \u001b$BQ]\u001b(B \u001b$BQ^\u001b(B \u001b$BQ_\u001b(B\n\u001b$BQ`\u001b(B \u001b$BQa\u001b(B \u001b$BQb\u001b(B \u001b$BQc\u001b(B \u001b$BQd\u001b(B \u001b$BQe\u001b(B \u001b$BQf\u001b(B \u001b$BQg\u001b(B \u001b$BQh\u001b(B \u001b$BQi\u001b(B \u001b$BQj\u001b(B \u001b$BQk\u001b(B \u001b$BQl\u001b(B \u001b$BQm\u001b(B \u001b$BQn\u001b(B \u001b$BQo\u001b(B\n\u001b$BQp\u001b(B \u001b$BQq\u001b(B \u001b$BQr\u001b(B \u001b$BQs\u001b(B \u001b$BQt\u001b(B \u001b$BQu\u001b(B \u001b$BQv\u001b(B \u001b$BQw\u001b(B \u001b$BQx\u001b(B \u001b$BQy\u001b(B \u001b$BQz\u001b(B \u001b$BQ{\u001b(B \u001b$BQ|\u001b(B \u001b$BQ}\u001b(B \u001b$BQ~\u001b(B\n  \u001b$BR!\u001b(B \u001b$BR\"\u001b(B \u001b$BR#\u001b(B \u001b$BR$\u001b(B \u001b$BR%\u001b(B \u001b$BR&\u001b(B \u001b$BR'\u001b(B \u001b$BR(\u001b(B \u001b$BR)\u001b(B \u001b$BR*\u001b(B \u001b$BR+\u001b(B \u001b$BR,\u001b(B \u001b$BR-\u001b(B \u001b$BR.\u001b(B \u001b$BR/\u001b(B\n\u001b$BR0\u001b(B \u001b$BR1\u001b(B \u001b$BR2\u001b(B \u001b$BR3\u001b(B \u001b$BR4\u001b(B \u001b$BR5\u001b(B \u001b$BR6\u001b(B \u001b$BR7\u001b(B \u001b$BR8\u001b(B \u001b$BR9\u001b(B \u001b$BR:\u001b(B \u001b$BR;\u001b(B \u001b$BR<\u001b(B \u001b$BR=\u001b(B \u001b$BR>\u001b(B \u001b$BR?\u001b(B\n\u001b$BR@\u001b(B \u001b$BRA\u001b(B \u001b$BRB\u001b(B \u001b$BRC\u001b(B \u001b$BRD\u001b(B \u001b$BRE\u001b(B \u001b$BRF\u001b(B \u001b$BRG\u001b(B \u001b$BRH\u001b(B \u001b$BRI\u001b(B \u001b$BRJ\u001b(B \u001b$BRK\u001b(B \u001b$BRL\u001b(B \u001b$BRM\u001b(B \u001b$BRN\u001b(B \u001b$BRO\u001b(B\n\u001b$BRP\u001b(B \u001b$BRQ\u001b(B \u001b$BRR\u001b(B \u001b$BRS\u001b(B \u001b$BRT\u001b(B \u001b$BRU\u001b(B \u001b$BRV\u001b(B \u001b$BRW\u001b(B \u001b$BRX\u001b(B \u001b$BRY\u001b(B \u001b$BRZ\u001b(B \u001b$BR[\u001b(B \u001b$BR\\\u001b(B \u001b$BR]\u001b(B \u001b$BR^\u001b(B \u001b$BR_\u001b(B\n\u001b$BR`\u001b(B \u001b$BRa\u001b(B \u001b$BRb\u001b(B \u001b$BRc\u001b(B \u001b$BRd\u001b(B \u001b$BRe\u001b(B \u001b$BRf\u001b(B \u001b$BRg\u001b(B \u001b$BRh\u001b(B \u001b$BRi\u001b(B \u001b$BRj\u001b(B \u001b$BRk\u001b(B \u001b$BRl\u001b(B \u001b$BRm\u001b(B \u001b$BRn\u001b(B \u001b$BRo\u001b(B\n\u001b$BRp\u001b(B \u001b$BRq\u001b(B \u001b$BRr\u001b(B \u001b$BRs\u001b(B \u001b$BRt\u001b(B \u001b$BRu\u001b(B \u001b$BRv\u001b(B \u001b$BRw\u001b(B \u001b$BRx\u001b(B \u001b$BRy\u001b(B \u001b$BRz\u001b(B \u001b$BR{\u001b(B \u001b$BR|\u001b(B \u001b$BR}\u001b(B \u001b$BR~\u001b(B\n  \u001b$BS!\u001b(B \u001b$BS\"\u001b(B \u001b$BS#\u001b(B \u001b$BS$\u001b(B \u001b$BS%\u001b(B \u001b$BS&\u001b(B \u001b$BS'\u001b(B \u001b$BS(\u001b(B \u001b$BS)\u001b(B \u001b$BS*\u001b(B \u001b$BS+\u001b(B \u001b$BS,\u001b(B \u001b$BS-\u001b(B \u001b$BS.\u001b(B \u001b$BS/\u001b(B\n\u001b$BS0\u001b(B \u001b$BS1\u001b(B \u001b$BS2\u001b(B \u001b$BS3\u001b(B \u001b$BS4\u001b(B \u001b$BS5\u001b(B \u001b$BS6\u001b(B \u001b$BS7\u001b(B \u001b$BS8\u001b(B \u001b$BS9\u001b(B \u001b$BS:\u001b(B \u001b$BS;\u001b(B \u001b$BS<\u001b(B \u001b$BS=\u001b(B \u001b$BS>\u001b(B \u001b$BS?\u001b(B\n\u001b$BS@\u001b(B \u001b$BSA\u001b(B \u001b$BSB\u001b(B \u001b$BSC\u001b(B \u001b$BSD\u001b(B \u001b$BSE\u001b(B \u001b$BSF\u001b(B \u001b$BSG\u001b(B \u001b$BSH\u001b(B \u001b$BSI\u001b(B \u001b$BSJ\u001b(B \u001b$BSK\u001b(B \u001b$BSL\u001b(B \u001b$BSM\u001b(B \u001b$BSN\u001b(B \u001b$BSO\u001b(B\n\u001b$BSP\u001b(B \u001b$BSQ\u001b(B \u001b$BSR\u001b(B \u001b$BSS\u001b(B \u001b$BST\u001b(B \u001b$BSU\u001b(B \u001b$BSV\u001b(B \u001b$BSW\u001b(B \u001b$BSX\u001b(B \u001b$BSY\u001b(B \u001b$BSZ\u001b(B \u001b$BS[\u001b(B \u001b$BS\\\u001b(B \u001b$BS]\u001b(B \u001b$BS^\u001b(B \u001b$BS_\u001b(B\n\u001b$BS`\u001b(B \u001b$BSa\u001b(B \u001b$BSb\u001b(B \u001b$BSc\u001b(B \u001b$BSd\u001b(B \u001b$BSe\u001b(B \u001b$BSf\u001b(B \u001b$BSg\u001b(B \u001b$BSh\u001b(B \u001b$BSi\u001b(B \u001b$BSj\u001b(B \u001b$BSk\u001b(B \u001b$BSl\u001b(B \u001b$BSm\u001b(B \u001b$BSn\u001b(B \u001b$BSo\u001b(B\n\u001b$BSp\u001b(B \u001b$BSq\u001b(B \u001b$BSr\u001b(B \u001b$BSs\u001b(B \u001b$BSt\u001b(B \u001b$BSu\u001b(B \u001b$BSv\u001b(B \u001b$BSw\u001b(B \u001b$BSx\u001b(B \u001b$BSy\u001b(B \u001b$BSz\u001b(B \u001b$BS{\u001b(B \u001b$BS|\u001b(B \u001b$BS}\u001b(B \u001b$BS~\u001b(B\n  \u001b$BT!\u001b(B \u001b$BT\"\u001b(B \u001b$BT#\u001b(B \u001b$BT$\u001b(B \u001b$BT%\u001b(B \u001b$BT&\u001b(B \u001b$BT'\u001b(B \u001b$BT(\u001b(B \u001b$BT)\u001b(B \u001b$BT*\u001b(B \u001b$BT+\u001b(B \u001b$BT,\u001b(B \u001b$BT-\u001b(B \u001b$BT.\u001b(B \u001b$BT/\u001b(B\n\u001b$BT0\u001b(B \u001b$BT1\u001b(B \u001b$BT2\u001b(B \u001b$BT3\u001b(B \u001b$BT4\u001b(B \u001b$BT5\u001b(B \u001b$BT6\u001b(B \u001b$BT7\u001b(B \u001b$BT8\u001b(B \u001b$BT9\u001b(B \u001b$BT:\u001b(B \u001b$BT;\u001b(B \u001b$BT<\u001b(B \u001b$BT=\u001b(B \u001b$BT>\u001b(B \u001b$BT?\u001b(B\n\u001b$BT@\u001b(B \u001b$BTA\u001b(B \u001b$BTB\u001b(B \u001b$BTC\u001b(B \u001b$BTD\u001b(B \u001b$BTE\u001b(B \u001b$BTF\u001b(B \u001b$BTG\u001b(B \u001b$BTH\u001b(B \u001b$BTI\u001b(B \u001b$BTJ\u001b(B \u001b$BTK\u001b(B \u001b$BTL\u001b(B \u001b$BTM\u001b(B \u001b$BTN\u001b(B \u001b$BTO\u001b(B\n\u001b$BTP\u001b(B \u001b$BTQ\u001b(B \u001b$BTR\u001b(B \u001b$BTS\u001b(B \u001b$BTT\u001b(B \u001b$BTU\u001b(B \u001b$BTV\u001b(B \u001b$BTW\u001b(B \u001b$BTX\u001b(B \u001b$BTY\u001b(B \u001b$BTZ\u001b(B \u001b$BT[\u001b(B \u001b$BT\\\u001b(B \u001b$BT]\u001b(B \u001b$BT^\u001b(B \u001b$BT_\u001b(B\n\u001b$BT`\u001b(B \u001b$BTa\u001b(B \u001b$BTb\u001b(B \u001b$BTc\u001b(B \u001b$BTd\u001b(B \u001b$BTe\u001b(B \u001b$BTf\u001b(B \u001b$BTg\u001b(B \u001b$BTh\u001b(B \u001b$BTi\u001b(B \u001b$BTj\u001b(B \u001b$BTk\u001b(B \u001b$BTl\u001b(B \u001b$BTm\u001b(B \u001b$BTn\u001b(B \u001b$BTo\u001b(B\n\u001b$BTp\u001b(B \u001b$BTq\u001b(B \u001b$BTr\u001b(B \u001b$BTs\u001b(B \u001b$BTt\u001b(B \u001b$BTu\u001b(B \u001b$BTv\u001b(B \u001b$BTw\u001b(B \u001b$BTx\u001b(B \u001b$BTy\u001b(B \u001b$BTz\u001b(B \u001b$BT{\u001b(B \u001b$BT|\u001b(B \u001b$BT}\u001b(B \u001b$BT~\u001b(B\n  \u001b$BU!\u001b(B \u001b$BU\"\u001b(B \u001b$BU#\u001b(B \u001b$BU$\u001b(B \u001b$BU%\u001b(B \u001b$BU&\u001b(B \u001b$BU'\u001b(B \u001b$BU(\u001b(B \u001b$BU)\u001b(B \u001b$BU*\u001b(B \u001b$BU+\u001b(B \u001b$BU,\u001b(B \u001b$BU-\u001b(B \u001b$BU.\u001b(B \u001b$BU/\u001b(B\n\u001b$BU0\u001b(B \u001b$BU1\u001b(B \u001b$BU2\u001b(B \u001b$BU3\u001b(B \u001b$BU4\u001b(B \u001b$BU5\u001b(B \u001b$BU6\u001b(B \u001b$BU7\u001b(B \u001b$BU8\u001b(B \u001b$BU9\u001b(B \u001b$BU:\u001b(B \u001b$BU;\u001b(B \u001b$BU<\u001b(B \u001b$BU=\u001b(B \u001b$BU>\u001b(B \u001b$BU?\u001b(B\n\u001b$BU@\u001b(B \u001b$BUA\u001b(B \u001b$BUB\u001b(B \u001b$BUC\u001b(B \u001b$BUD\u001b(B \u001b$BUE\u001b(B \u001b$BUF\u001b(B \u001b$BUG\u001b(B \u001b$BUH\u001b(B \u001b$BUI\u001b(B \u001b$BUJ\u001b(B \u001b$BUK\u001b(B \u001b$BUL\u001b(B \u001b$BUM\u001b(B \u001b$BUN\u001b(B \u001b$BUO\u001b(B\n\u001b$BUP\u001b(B \u001b$BUQ\u001b(B \u001b$BUR\u001b(B \u001b$BUS\u001b(B \u001b$BUT\u001b(B \u001b$BUU\u001b(B \u001b$BUV\u001b(B \u001b$BUW\u001b(B \u001b$BUX\u001b(B \u001b$BUY\u001b(B \u001b$BUZ\u001b(B \u001b$BU[\u001b(B \u001b$BU\\\u001b(B \u001b$BU]\u001b(B \u001b$BU^\u001b(B \u001b$BU_\u001b(B\n\u001b$BU`\u001b(B \u001b$BUa\u001b(B \u001b$BUb\u001b(B \u001b$BUc\u001b(B \u001b$BUd\u001b(B \u001b$BUe\u001b(B \u001b$BUf\u001b(B \u001b$BUg\u001b(B \u001b$BUh\u001b(B \u001b$BUi\u001b(B \u001b$BUj\u001b(B \u001b$BUk\u001b(B \u001b$BUl\u001b(B \u001b$BUm\u001b(B \u001b$BUn\u001b(B \u001b$BUo\u001b(B\n\u001b$BUp\u001b(B \u001b$BUq\u001b(B \u001b$BUr\u001b(B \u001b$BUs\u001b(B \u001b$BUt\u001b(B \u001b$BUu\u001b(B \u001b$BUv\u001b(B \u001b$BUw\u001b(B \u001b$BUx\u001b(B \u001b$BUy\u001b(B \u001b$BUz\u001b(B \u001b$BU{\u001b(B \u001b$BU|\u001b(B \u001b$BU}\u001b(B \u001b$BU~\u001b(B\n  \u001b$BV!\u001b(B \u001b$BV\"\u001b(B \u001b$BV#\u001b(B \u001b$BV$\u001b(B \u001b$BV%\u001b(B \u001b$BV&\u001b(B \u001b$BV'\u001b(B \u001b$BV(\u001b(B \u001b$BV)\u001b(B \u001b$BV*\u001b(B \u001b$BV+\u001b(B \u001b$BV,\u001b(B \u001b$BV-\u001b(B \u001b$BV.\u001b(B \u001b$BV/\u001b(B\n\u001b$BV0\u001b(B \u001b$BV1\u001b(B \u001b$BV2\u001b(B \u001b$BV3\u001b(B \u001b$BV4\u001b(B \u001b$BV5\u001b(B \u001b$BV6\u001b(B \u001b$BV7\u001b(B \u001b$BV8\u001b(B \u001b$BV9\u001b(B \u001b$BV:\u001b(B \u001b$BV;\u001b(B \u001b$BV<\u001b(B \u001b$BV=\u001b(B \u001b$BV>\u001b(B \u001b$BV?\u001b(B\n\u001b$BV@\u001b(B \u001b$BVA\u001b(B \u001b$BVB\u001b(B \u001b$BVC\u001b(B \u001b$BVD\u001b(B \u001b$BVE\u001b(B \u001b$BVF\u001b(B \u001b$BVG\u001b(B \u001b$BVH\u001b(B \u001b$BVI\u001b(B \u001b$BVJ\u001b(B \u001b$BVK\u001b(B \u001b$BVL\u001b(B \u001b$BVM\u001b(B \u001b$BVN\u001b(B \u001b$BVO\u001b(B\n\u001b$BVP\u001b(B \u001b$BVQ\u001b(B \u001b$BVR\u001b(B \u001b$BVS\u001b(B \u001b$BVT\u001b(B \u001b$BVU\u001b(B \u001b$BVV\u001b(B \u001b$BVW\u001b(B \u001b$BVX\u001b(B \u001b$BVY\u001b(B \u001b$BVZ\u001b(B \u001b$BV[\u001b(B \u001b$BV\\\u001b(B \u001b$BV]\u001b(B \u001b$BV^\u001b(B \u001b$BV_\u001b(B\n\u001b$BV`\u001b(B \u001b$BVa\u001b(B \u001b$BVb\u001b(B \u001b$BVc\u001b(B \u001b$BVd\u001b(B \u001b$BVe\u001b(B \u001b$BVf\u001b(B \u001b$BVg\u001b(B \u001b$BVh\u001b(B \u001b$BVi\u001b(B \u001b$BVj\u001b(B \u001b$BVk\u001b(B \u001b$BVl\u001b(B \u001b$BVm\u001b(B \u001b$BVn\u001b(B \u001b$BVo\u001b(B\n\u001b$BVp\u001b(B \u001b$BVq\u001b(B \u001b$BVr\u001b(B \u001b$BVs\u001b(B \u001b$BVt\u001b(B \u001b$BVu\u001b(B \u001b$BVv\u001b(B \u001b$BVw\u001b(B \u001b$BVx\u001b(B \u001b$BVy\u001b(B \u001b$BVz\u001b(B \u001b$BV{\u001b(B \u001b$BV|\u001b(B \u001b$BV}\u001b(B \u001b$BV~\u001b(B\n  \u001b$BW!\u001b(B \u001b$BW\"\u001b(B \u001b$BW#\u001b(B \u001b$BW$\u001b(B \u001b$BW%\u001b(B \u001b$BW&\u001b(B \u001b$BW'\u001b(B \u001b$BW(\u001b(B \u001b$BW)\u001b(B \u001b$BW*\u001b(B \u001b$BW+\u001b(B \u001b$BW,\u001b(B \u001b$BW-\u001b(B \u001b$BW.\u001b(B \u001b$BW/\u001b(B\n\u001b$BW0\u001b(B \u001b$BW1\u001b(B \u001b$BW2\u001b(B \u001b$BW3\u001b(B \u001b$BW4\u001b(B \u001b$BW5\u001b(B \u001b$BW6\u001b(B \u001b$BW7\u001b(B \u001b$BW8\u001b(B \u001b$BW9\u001b(B \u001b$BW:\u001b(B \u001b$BW;\u001b(B \u001b$BW<\u001b(B \u001b$BW=\u001b(B \u001b$BW>\u001b(B \u001b$BW?\u001b(B\n\u001b$BW@\u001b(B \u001b$BWA\u001b(B \u001b$BWB\u001b(B \u001b$BWC\u001b(B \u001b$BWD\u001b(B \u001b$BWE\u001b(B \u001b$BWF\u001b(B \u001b$BWG\u001b(B \u001b$BWH\u001b(B \u001b$BWI\u001b(B \u001b$BWJ\u001b(B \u001b$BWK\u001b(B \u001b$BWL\u001b(B \u001b$BWM\u001b(B \u001b$BWN\u001b(B \u001b$BWO\u001b(B\n\u001b$BWP\u001b(B \u001b$BWQ\u001b(B \u001b$BWR\u001b(B \u001b$BWS\u001b(B \u001b$BWT\u001b(B \u001b$BWU\u001b(B \u001b$BWV\u001b(B \u001b$BWW\u001b(B \u001b$BWX\u001b(B \u001b$BWY\u001b(B \u001b$BWZ\u001b(B \u001b$BW[\u001b(B \u001b$BW\\\u001b(B \u001b$BW]\u001b(B \u001b$BW^\u001b(B \u001b$BW_\u001b(B\n\u001b$BW`\u001b(B \u001b$BWa\u001b(B \u001b$BWb\u001b(B \u001b$BWc\u001b(B \u001b$BWd\u001b(B \u001b$BWe\u001b(B \u001b$BWf\u001b(B \u001b$BWg\u001b(B \u001b$BWh\u001b(B \u001b$BWi\u001b(B \u001b$BWj\u001b(B \u001b$BWk\u001b(B \u001b$BWl\u001b(B \u001b$BWm\u001b(B \u001b$BWn\u001b(B \u001b$BWo\u001b(B\n\u001b$BWp\u001b(B \u001b$BWq\u001b(B \u001b$BWr\u001b(B \u001b$BWs\u001b(B \u001b$BWt\u001b(B \u001b$BWu\u001b(B \u001b$BWv\u001b(B \u001b$BWw\u001b(B \u001b$BWx\u001b(B \u001b$BWy\u001b(B \u001b$BWz\u001b(B \u001b$BW{\u001b(B \u001b$BW|\u001b(B \u001b$BW}\u001b(B \u001b$BW~\u001b(B\n  \u001b$BX!\u001b(B \u001b$BX\"\u001b(B \u001b$BX#\u001b(B \u001b$BX$\u001b(B \u001b$BX%\u001b(B \u001b$BX&\u001b(B \u001b$BX'\u001b(B \u001b$BX(\u001b(B \u001b$BX)\u001b(B \u001b$BX*\u001b(B \u001b$BX+\u001b(B \u001b$BX,\u001b(B \u001b$BX-\u001b(B \u001b$BX.\u001b(B \u001b$BX/\u001b(B\n\u001b$BX0\u001b(B \u001b$BX1\u001b(B \u001b$BX2\u001b(B \u001b$BX3\u001b(B \u001b$BX4\u001b(B \u001b$BX5\u001b(B \u001b$BX6\u001b(B \u001b$BX7\u001b(B \u001b$BX8\u001b(B \u001b$BX9\u001b(B \u001b$BX:\u001b(B \u001b$BX;\u001b(B \u001b$BX<\u001b(B \u001b$BX=\u001b(B \u001b$BX>\u001b(B \u001b$BX?\u001b(B\n\u001b$BX@\u001b(B \u001b$BXA\u001b(B \u001b$BXB\u001b(B \u001b$BXC\u001b(B \u001b$BXD\u001b(B \u001b$BXE\u001b(B \u001b$BXF\u001b(B \u001b$BXG\u001b(B \u001b$BXH\u001b(B \u001b$BXI\u001b(B \u001b$BXJ\u001b(B \u001b$BXK\u001b(B \u001b$BXL\u001b(B \u001b$BXM\u001b(B \u001b$BXN\u001b(B \u001b$BXO\u001b(B\n\u001b$BXP\u001b(B \u001b$BXQ\u001b(B \u001b$BXR\u001b(B \u001b$BXS\u001b(B \u001b$BXT\u001b(B \u001b$BXU\u001b(B \u001b$BXV\u001b(B \u001b$BXW\u001b(B \u001b$BXX\u001b(B \u001b$BXY\u001b(B \u001b$BXZ\u001b(B \u001b$BX[\u001b(B \u001b$BX\\\u001b(B \u001b$BX]\u001b(B \u001b$BX^\u001b(B \u001b$BX_\u001b(B\n\u001b$BX`\u001b(B \u001b$BXa\u001b(B \u001b$BXb\u001b(B \u001b$BXc\u001b(B \u001b$BXd\u001b(B \u001b$BXe\u001b(B \u001b$BXf\u001b(B \u001b$BXg\u001b(B \u001b$BXh\u001b(B \u001b$BXi\u001b(B \u001b$BXj\u001b(B \u001b$BXk\u001b(B \u001b$BXl\u001b(B \u001b$BXm\u001b(B \u001b$BXn\u001b(B \u001b$BXo\u001b(B\n\u001b$BXp\u001b(B \u001b$BXq\u001b(B \u001b$BXr\u001b(B \u001b$BXs\u001b(B \u001b$BXt\u001b(B \u001b$BXu\u001b(B \u001b$BXv\u001b(B \u001b$BXw\u001b(B \u001b$BXx\u001b(B \u001b$BXy\u001b(B \u001b$BXz\u001b(B \u001b$BX{\u001b(B \u001b$BX|\u001b(B \u001b$BX}\u001b(B \u001b$BX~\u001b(B\n  \u001b$BY!\u001b(B \u001b$BY\"\u001b(B \u001b$BY#\u001b(B \u001b$BY$\u001b(B \u001b$BY%\u001b(B \u001b$BY&\u001b(B \u001b$BY'\u001b(B \u001b$BY(\u001b(B \u001b$BY)\u001b(B \u001b$BY*\u001b(B \u001b$BY+\u001b(B \u001b$BY,\u001b(B \u001b$BY-\u001b(B \u001b$BY.\u001b(B \u001b$BY/\u001b(B\n\u001b$BY0\u001b(B \u001b$BY1\u001b(B \u001b$BY2\u001b(B \u001b$BY3\u001b(B \u001b$BY4\u001b(B \u001b$BY5\u001b(B \u001b$BY6\u001b(B \u001b$BY7\u001b(B \u001b$BY8\u001b(B \u001b$BY9\u001b(B \u001b$BY:\u001b(B \u001b$BY;\u001b(B \u001b$BY<\u001b(B \u001b$BY=\u001b(B \u001b$BY>\u001b(B \u001b$BY?\u001b(B\n\u001b$BY@\u001b(B \u001b$BYA\u001b(B \u001b$BYB\u001b(B \u001b$BYC\u001b(B \u001b$BYD\u001b(B \u001b$BYE\u001b(B \u001b$BYF\u001b(B \u001b$BYG\u001b(B \u001b$BYH\u001b(B \u001b$BYI\u001b(B \u001b$BYJ\u001b(B \u001b$BYK\u001b(B \u001b$BYL\u001b(B \u001b$BYM\u001b(B \u001b$BYN\u001b(B \u001b$BYO\u001b(B\n\u001b$BYP\u001b(B \u001b$BYQ\u001b(B \u001b$BYR\u001b(B \u001b$BYS\u001b(B \u001b$BYT\u001b(B \u001b$BYU\u001b(B \u001b$BYV\u001b(B \u001b$BYW\u001b(B \u001b$BYX\u001b(B \u001b$BYY\u001b(B \u001b$BYZ\u001b(B \u001b$BY[\u001b(B \u001b$BY\\\u001b(B \u001b$BY]\u001b(B \u001b$BY^\u001b(B \u001b$BY_\u001b(B\n\u001b$BY`\u001b(B \u001b$BYa\u001b(B \u001b$BYb\u001b(B \u001b$BYc\u001b(B \u001b$BYd\u001b(B \u001b$BYe\u001b(B \u001b$BYf\u001b(B \u001b$BYg\u001b(B \u001b$BYh\u001b(B \u001b$BYi\u001b(B \u001b$BYj\u001b(B \u001b$BYk\u001b(B \u001b$BYl\u001b(B \u001b$BYm\u001b(B \u001b$BYn\u001b(B \u001b$BYo\u001b(B\n\u001b$BYp\u001b(B \u001b$BYq\u001b(B \u001b$BYr\u001b(B \u001b$BYs\u001b(B \u001b$BYt\u001b(B \u001b$BYu\u001b(B \u001b$BYv\u001b(B \u001b$BYw\u001b(B \u001b$BYx\u001b(B \u001b$BYy\u001b(B \u001b$BYz\u001b(B \u001b$BY{\u001b(B \u001b$BY|\u001b(B \u001b$BY}\u001b(B \u001b$BY~\u001b(B\n  \u001b$BZ!\u001b(B \u001b$BZ\"\u001b(B \u001b$BZ#\u001b(B \u001b$BZ$\u001b(B \u001b$BZ%\u001b(B \u001b$BZ&\u001b(B \u001b$BZ'\u001b(B \u001b$BZ(\u001b(B \u001b$BZ)\u001b(B \u001b$BZ*\u001b(B \u001b$BZ+\u001b(B \u001b$BZ,\u001b(B \u001b$BZ-\u001b(B \u001b$BZ.\u001b(B \u001b$BZ/\u001b(B\n\u001b$BZ0\u001b(B \u001b$BZ1\u001b(B \u001b$BZ2\u001b(B \u001b$BZ3\u001b(B \u001b$BZ4\u001b(B \u001b$BZ5\u001b(B \u001b$BZ6\u001b(B \u001b$BZ7\u001b(B \u001b$BZ8\u001b(B \u001b$BZ9\u001b(B \u001b$BZ:\u001b(B \u001b$BZ;\u001b(B \u001b$BZ<\u001b(B \u001b$BZ=\u001b(B \u001b$BZ>\u001b(B \u001b$BZ?\u001b(B\n\u001b$BZ@\u001b(B \u001b$BZA\u001b(B \u001b$BZB\u001b(B \u001b$BZC\u001b(B \u001b$BZD\u001b(B \u001b$BZE\u001b(B \u001b$BZF\u001b(B \u001b$BZG\u001b(B \u001b$BZH\u001b(B \u001b$BZI\u001b(B \u001b$BZJ\u001b(B \u001b$BZK\u001b(B \u001b$BZL\u001b(B \u001b$BZM\u001b(B \u001b$BZN\u001b(B \u001b$BZO\u001b(B\n\u001b$BZP\u001b(B \u001b$BZQ\u001b(B \u001b$BZR\u001b(B \u001b$BZS\u001b(B \u001b$BZT\u001b(B \u001b$BZU\u001b(B \u001b$BZV\u001b(B \u001b$BZW\u001b(B \u001b$BZX\u001b(B \u001b$BZY\u001b(B \u001b$BZZ\u001b(B \u001b$BZ[\u001b(B \u001b$BZ\\\u001b(B \u001b$BZ]\u001b(B \u001b$BZ^\u001b(B \u001b$BZ_\u001b(B\n\u001b$BZ`\u001b(B \u001b$BZa\u001b(B \u001b$BZb\u001b(B \u001b$BZc\u001b(B \u001b$BZd\u001b(B \u001b$BZe\u001b(B \u001b$BZf\u001b(B \u001b$BZg\u001b(B \u001b$BZh\u001b(B \u001b$BZi\u001b(B \u001b$BZj\u001b(B \u001b$BZk\u001b(B \u001b$BZl\u001b(B \u001b$BZm\u001b(B \u001b$BZn\u001b(B \u001b$BZo\u001b(B\n\u001b$BZp\u001b(B \u001b$BZq\u001b(B \u001b$BZr\u001b(B \u001b$BZs\u001b(B \u001b$BZt\u001b(B \u001b$BZu\u001b(B \u001b$BZv\u001b(B \u001b$BZw\u001b(B \u001b$BZx\u001b(B \u001b$BZy\u001b(B \u001b$BZz\u001b(B \u001b$BZ{\u001b(B \u001b$BZ|\u001b(B \u001b$BZ}\u001b(B \u001b$BZ~\u001b(B\n  \u001b$B[!\u001b(B \u001b$B[\"\u001b(B \u001b$B[#\u001b(B \u001b$B[$\u001b(B \u001b$B[%\u001b(B \u001b$B[&\u001b(B \u001b$B['\u001b(B \u001b$B[(\u001b(B \u001b$B[)\u001b(B \u001b$B[*\u001b(B \u001b$B[+\u001b(B \u001b$B[,\u001b(B \u001b$B[-\u001b(B \u001b$B[.\u001b(B \u001b$B[/\u001b(B\n\u001b$B[0\u001b(B \u001b$B[1\u001b(B \u001b$B[2\u001b(B \u001b$B[3\u001b(B \u001b$B[4\u001b(B \u001b$B[5\u001b(B \u001b$B[6\u001b(B \u001b$B[7\u001b(B \u001b$B[8\u001b(B \u001b$B[9\u001b(B \u001b$B[:\u001b(B \u001b$B[;\u001b(B \u001b$B[<\u001b(B \u001b$B[=\u001b(B \u001b$B[>\u001b(B \u001b$B[?\u001b(B\n\u001b$B[@\u001b(B \u001b$B[A\u001b(B \u001b$B[B\u001b(B \u001b$B[C\u001b(B \u001b$B[D\u001b(B \u001b$B[E\u001b(B \u001b$B[F\u001b(B \u001b$B[G\u001b(B \u001b$B[H\u001b(B \u001b$B[I\u001b(B \u001b$B[J\u001b(B \u001b$B[K\u001b(B \u001b$B[L\u001b(B \u001b$B[M\u001b(B \u001b$B[N\u001b(B \u001b$B[O\u001b(B\n\u001b$B[P\u001b(B \u001b$B[Q\u001b(B \u001b$B[R\u001b(B \u001b$B[S\u001b(B \u001b$B[T\u001b(B \u001b$B[U\u001b(B \u001b$B[V\u001b(B \u001b$B[W\u001b(B \u001b$B[X\u001b(B \u001b$B[Y\u001b(B \u001b$B[Z\u001b(B \u001b$B[[\u001b(B \u001b$B[\\\u001b(B \u001b$B[]\u001b(B \u001b$B[^\u001b(B \u001b$B[_\u001b(B\n\u001b$B[`\u001b(B \u001b$B[a\u001b(B \u001b$B[b\u001b(B \u001b$B[c\u001b(B \u001b$B[d\u001b(B \u001b$B[e\u001b(B \u001b$B[f\u001b(B \u001b$B[g\u001b(B \u001b$B[h\u001b(B \u001b$B[i\u001b(B \u001b$B[j\u001b(B \u001b$B[k\u001b(B \u001b$B[l\u001b(B \u001b$B[m\u001b(B \u001b$B[n\u001b(B \u001b$B[o\u001b(B\n\u001b$B[p\u001b(B \u001b$B[q\u001b(B \u001b$B[r\u001b(B \u001b$B[s\u001b(B \u001b$B[t\u001b(B \u001b$B[u\u001b(B \u001b$B[v\u001b(B \u001b$B[w\u001b(B \u001b$B[x\u001b(B \u001b$B[y\u001b(B \u001b$B[z\u001b(B \u001b$B[{\u001b(B \u001b$B[|\u001b(B \u001b$B[}\u001b(B \u001b$B[~\u001b(B\n  \u001b$B\\!\u001b(B \u001b$B\\\"\u001b(B \u001b$B\\#\u001b(B \u001b$B\\$\u001b(B \u001b$B\\%\u001b(B \u001b$B\\&\u001b(B \u001b$B\\'\u001b(B \u001b$B\\(\u001b(B \u001b$B\\)\u001b(B \u001b$B\\*\u001b(B \u001b$B\\+\u001b(B \u001b$B\\,\u001b(B \u001b$B\\-\u001b(B \u001b$B\\.\u001b(B \u001b$B\\/\u001b(B\n\u001b$B\\0\u001b(B \u001b$B\\1\u001b(B \u001b$B\\2\u001b(B \u001b$B\\3\u001b(B \u001b$B\\4\u001b(B \u001b$B\\5\u001b(B \u001b$B\\6\u001b(B \u001b$B\\7\u001b(B \u001b$B\\8\u001b(B \u001b$B\\9\u001b(B \u001b$B\\:\u001b(B \u001b$B\\;\u001b(B \u001b$B\\<\u001b(B \u001b$B\\=\u001b(B \u001b$B\\>\u001b(B \u001b$B\\?\u001b(B\n\u001b$B\\@\u001b(B \u001b$B\\A\u001b(B \u001b$B\\B\u001b(B \u001b$B\\C\u001b(B \u001b$B\\D\u001b(B \u001b$B\\E\u001b(B \u001b$B\\F\u001b(B \u001b$B\\G\u001b(B \u001b$B\\H\u001b(B \u001b$B\\I\u001b(B \u001b$B\\J\u001b(B \u001b$B\\K\u001b(B \u001b$B\\L\u001b(B \u001b$B\\M\u001b(B \u001b$B\\N\u001b(B \u001b$B\\O\u001b(B\n\u001b$B\\P\u001b(B \u001b$B\\Q\u001b(B \u001b$B\\R\u001b(B \u001b$B\\S\u001b(B \u001b$B\\T\u001b(B \u001b$B\\U\u001b(B \u001b$B\\V\u001b(B \u001b$B\\W\u001b(B \u001b$B\\X\u001b(B \u001b$B\\Y\u001b(B \u001b$B\\Z\u001b(B \u001b$B\\[\u001b(B \u001b$B\\\\\u001b(B \u001b$B\\]\u001b(B \u001b$B\\^\u001b(B \u001b$B\\_\u001b(B\n\u001b$B\\`\u001b(B \u001b$B\\a\u001b(B \u001b$B\\b\u001b(B \u001b$B\\c\u001b(B \u001b$B\\d\u001b(B \u001b$B\\e\u001b(B \u001b$B\\f\u001b(B \u001b$B\\g\u001b(B \u001b$B\\h\u001b(B \u001b$B\\i\u001b(B \u001b$B\\j\u001b(B \u001b$B\\k\u001b(B \u001b$B\\l\u001b(B \u001b$B\\m\u001b(B \u001b$B\\n\u001b(B \u001b$B\\o\u001b(B\n\u001b$B\\p\u001b(B \u001b$B\\q\u001b(B \u001b$B\\r\u001b(B \u001b$B\\s\u001b(B \u001b$B\\t\u001b(B \u001b$B\\u\u001b(B \u001b$B\\v\u001b(B \u001b$B\\w\u001b(B \u001b$B\\x\u001b(B \u001b$B\\y\u001b(B \u001b$B\\z\u001b(B \u001b$B\\{\u001b(B \u001b$B\\|\u001b(B \u001b$B\\}\u001b(B \u001b$B\\~\u001b(B\n  \u001b$B]!\u001b(B \u001b$B]\"\u001b(B \u001b$B]#\u001b(B \u001b$B]$\u001b(B \u001b$B]%\u001b(B \u001b$B]&\u001b(B \u001b$B]'\u001b(B \u001b$B](\u001b(B \u001b$B])\u001b(B \u001b$B]*\u001b(B \u001b$B]+\u001b(B \u001b$B],\u001b(B \u001b$B]-\u001b(B \u001b$B].\u001b(B \u001b$B]/\u001b(B\n\u001b$B]0\u001b(B \u001b$B]1\u001b(B \u001b$B]2\u001b(B \u001b$B]3\u001b(B \u001b$B]4\u001b(B \u001b$B]5\u001b(B \u001b$B]6\u001b(B \u001b$B]7\u001b(B \u001b$B]8\u001b(B \u001b$B]9\u001b(B \u001b$B]:\u001b(B \u001b$B];\u001b(B \u001b$B]<\u001b(B \u001b$B]=\u001b(B \u001b$B]>\u001b(B \u001b$B]?\u001b(B\n\u001b$B]@\u001b(B \u001b$B]A\u001b(B \u001b$B]B\u001b(B \u001b$B]C\u001b(B \u001b$B]D\u001b(B \u001b$B]E\u001b(B \u001b$B]F\u001b(B \u001b$B]G\u001b(B \u001b$B]H\u001b(B \u001b$B]I\u001b(B \u001b$B]J\u001b(B \u001b$B]K\u001b(B \u001b$B]L\u001b(B \u001b$B]M\u001b(B \u001b$B]N\u001b(B \u001b$B]O\u001b(B\n\u001b$B]P\u001b(B \u001b$B]Q\u001b(B \u001b$B]R\u001b(B \u001b$B]S\u001b(B \u001b$B]T\u001b(B \u001b$B]U\u001b(B \u001b$B]V\u001b(B \u001b$B]W\u001b(B \u001b$B]X\u001b(B \u001b$B]Y\u001b(B \u001b$B]Z\u001b(B \u001b$B][\u001b(B \u001b$B]\\\u001b(B \u001b$B]]\u001b(B \u001b$B]^\u001b(B \u001b$B]_\u001b(B\n\u001b$B]`\u001b(B \u001b$B]a\u001b(B \u001b$B]b\u001b(B \u001b$B]c\u001b(B \u001b$B]d\u001b(B \u001b$B]e\u001b(B \u001b$B]f\u001b(B \u001b$B]g\u001b(B \u001b$B]h\u001b(B \u001b$B]i\u001b(B \u001b$B]j\u001b(B \u001b$B]k\u001b(B \u001b$B]l\u001b(B \u001b$B]m\u001b(B \u001b$B]n\u001b(B \u001b$B]o\u001b(B\n\u001b$B]p\u001b(B \u001b$B]q\u001b(B \u001b$B]r\u001b(B \u001b$B]s\u001b(B \u001b$B]t\u001b(B \u001b$B]u\u001b(B \u001b$B]v\u001b(B \u001b$B]w\u001b(B \u001b$B]x\u001b(B \u001b$B]y\u001b(B \u001b$B]z\u001b(B \u001b$B]{\u001b(B \u001b$B]|\u001b(B \u001b$B]}\u001b(B \u001b$B]~\u001b(B\n  \u001b$B^!\u001b(B \u001b$B^\"\u001b(B \u001b$B^#\u001b(B \u001b$B^$\u001b(B \u001b$B^%\u001b(B \u001b$B^&\u001b(B \u001b$B^'\u001b(B \u001b$B^(\u001b(B \u001b$B^)\u001b(B \u001b$B^*\u001b(B \u001b$B^+\u001b(B \u001b$B^,\u001b(B \u001b$B^-\u001b(B \u001b$B^.\u001b(B \u001b$B^/\u001b(B\n\u001b$B^0\u001b(B \u001b$B^1\u001b(B \u001b$B^2\u001b(B \u001b$B^3\u001b(B \u001b$B^4\u001b(B \u001b$B^5\u001b(B \u001b$B^6\u001b(B \u001b$B^7\u001b(B \u001b$B^8\u001b(B \u001b$B^9\u001b(B \u001b$B^:\u001b(B \u001b$B^;\u001b(B \u001b$B^<\u001b(B \u001b$B^=\u001b(B \u001b$B^>\u001b(B \u001b$B^?\u001b(B\n\u001b$B^@\u001b(B \u001b$B^A\u001b(B \u001b$B^B\u001b(B \u001b$B^C\u001b(B \u001b$B^D\u001b(B \u001b$B^E\u001b(B \u001b$B^F\u001b(B \u001b$B^G\u001b(B \u001b$B^H\u001b(B \u001b$B^I\u001b(B \u001b$B^J\u001b(B \u001b$B^K\u001b(B \u001b$B^L\u001b(B \u001b$B^M\u001b(B \u001b$B^N\u001b(B \u001b$B^O\u001b(B\n\u001b$B^P\u001b(B \u001b$B^Q\u001b(B \u001b$B^R\u001b(B \u001b$B^S\u001b(B \u001b$B^T\u001b(B \u001b$B^U\u001b(B \u001b$B^V\u001b(B \u001b$B^W\u001b(B \u001b$B^X\u001b(B \u001b$B^Y\u001b(B \u001b$B^Z\u001b(B \u001b$B^[\u001b(B \u001b$B^\\\u001b(B \u001b$B^]\u001b(B \u001b$B^^\u001b(B \u001b$B^_\u001b(B\n\u001b$B^`\u001b(B \u001b$B^a\u001b(B \u001b$B^b\u001b(B \u001b$B^c\u001b(B \u001b$B^d\u001b(B \u001b$B^e\u001b(B \u001b$B^f\u001b(B \u001b$B^g\u001b(B \u001b$B^h\u001b(B \u001b$B^i\u001b(B \u001b$B^j\u001b(B \u001b$B^k\u001b(B \u001b$B^l\u001b(B \u001b$B^m\u001b(B \u001b$B^n\u001b(B \u001b$B^o\u001b(B\n\u001b$B^p\u001b(B \u001b$B^q\u001b(B \u001b$B^r\u001b(B \u001b$B^s\u001b(B \u001b$B^t\u001b(B \u001b$B^u\u001b(B \u001b$B^v\u001b(B \u001b$B^w\u001b(B \u001b$B^x\u001b(B \u001b$B^y\u001b(B \u001b$B^z\u001b(B \u001b$B^{\u001b(B \u001b$B^|\u001b(B \u001b$B^}\u001b(B \u001b$B^~\u001b(B\n  \u001b$B_!\u001b(B \u001b$B_\"\u001b(B \u001b$B_#\u001b(B \u001b$B_$\u001b(B \u001b$B_%\u001b(B \u001b$B_&\u001b(B \u001b$B_'\u001b(B \u001b$B_(\u001b(B \u001b$B_)\u001b(B \u001b$B_*\u001b(B \u001b$B_+\u001b(B \u001b$B_,\u001b(B \u001b$B_-\u001b(B \u001b$B_.\u001b(B \u001b$B_/\u001b(B\n\u001b$B_0\u001b(B \u001b$B_1\u001b(B \u001b$B_2\u001b(B \u001b$B_3\u001b(B \u001b$B_4\u001b(B \u001b$B_5\u001b(B \u001b$B_6\u001b(B \u001b$B_7\u001b(B \u001b$B_8\u001b(B \u001b$B_9\u001b(B \u001b$B_:\u001b(B \u001b$B_;\u001b(B \u001b$B_<\u001b(B \u001b$B_=\u001b(B \u001b$B_>\u001b(B \u001b$B_?\u001b(B\n\u001b$B_@\u001b(B \u001b$B_A\u001b(B \u001b$B_B\u001b(B \u001b$B_C\u001b(B \u001b$B_D\u001b(B \u001b$B_E\u001b(B \u001b$B_F\u001b(B \u001b$B_G\u001b(B \u001b$B_H\u001b(B \u001b$B_I\u001b(B \u001b$B_J\u001b(B \u001b$B_K\u001b(B \u001b$B_L\u001b(B \u001b$B_M\u001b(B \u001b$B_N\u001b(B \u001b$B_O\u001b(B\n\u001b$B_P\u001b(B \u001b$B_Q\u001b(B \u001b$B_R\u001b(B \u001b$B_S\u001b(B \u001b$B_T\u001b(B \u001b$B_U\u001b(B \u001b$B_V\u001b(B \u001b$B_W\u001b(B \u001b$B_X\u001b(B \u001b$B_Y\u001b(B \u001b$B_Z\u001b(B \u001b$B_[\u001b(B \u001b$B_\\\u001b(B \u001b$B_]\u001b(B \u001b$B_^\u001b(B \u001b$B__\u001b(B\n\u001b$B_`\u001b(B \u001b$B_a\u001b(B \u001b$B_b\u001b(B \u001b$B_c\u001b(B \u001b$B_d\u001b(B \u001b$B_e\u001b(B \u001b$B_f\u001b(B \u001b$B_g\u001b(B \u001b$B_h\u001b(B \u001b$B_i\u001b(B \u001b$B_j\u001b(B \u001b$B_k\u001b(B \u001b$B_l\u001b(B \u001b$B_m\u001b(B \u001b$B_n\u001b(B \u001b$B_o\u001b(B\n\u001b$B_p\u001b(B \u001b$B_q\u001b(B \u001b$B_r\u001b(B \u001b$B_s\u001b(B \u001b$B_t\u001b(B \u001b$B_u\u001b(B \u001b$B_v\u001b(B \u001b$B_w\u001b(B \u001b$B_x\u001b(B \u001b$B_y\u001b(B \u001b$B_z\u001b(B \u001b$B_{\u001b(B \u001b$B_|\u001b(B \u001b$B_}\u001b(B \u001b$B_~\u001b(B\n  \u001b$B`!\u001b(B \u001b$B`\"\u001b(B \u001b$B`#\u001b(B \u001b$B`$\u001b(B \u001b$B`%\u001b(B \u001b$B`&\u001b(B \u001b$B`'\u001b(B \u001b$B`(\u001b(B \u001b$B`)\u001b(B \u001b$B`*\u001b(B \u001b$B`+\u001b(B \u001b$B`,\u001b(B \u001b$B`-\u001b(B \u001b$B`.\u001b(B \u001b$B`/\u001b(B\n\u001b$B`0\u001b(B \u001b$B`1\u001b(B \u001b$B`2\u001b(B \u001b$B`3\u001b(B \u001b$B`4\u001b(B \u001b$B`5\u001b(B \u001b$B`6\u001b(B \u001b$B`7\u001b(B \u001b$B`8\u001b(B \u001b$B`9\u001b(B \u001b$B`:\u001b(B \u001b$B`;\u001b(B \u001b$B`<\u001b(B \u001b$B`=\u001b(B \u001b$B`>\u001b(B \u001b$B`?\u001b(B\n\u001b$B`@\u001b(B \u001b$B`A\u001b(B \u001b$B`B\u001b(B \u001b$B`C\u001b(B \u001b$B`D\u001b(B \u001b$B`E\u001b(B \u001b$B`F\u001b(B \u001b$B`G\u001b(B \u001b$B`H\u001b(B \u001b$B`I\u001b(B \u001b$B`J\u001b(B \u001b$B`K\u001b(B \u001b$B`L\u001b(B \u001b$B`M\u001b(B \u001b$B`N\u001b(B \u001b$B`O\u001b(B\n\u001b$B`P\u001b(B \u001b$B`Q\u001b(B \u001b$B`R\u001b(B \u001b$B`S\u001b(B \u001b$B`T\u001b(B \u001b$B`U\u001b(B \u001b$B`V\u001b(B \u001b$B`W\u001b(B \u001b$B`X\u001b(B \u001b$B`Y\u001b(B \u001b$B`Z\u001b(B \u001b$B`[\u001b(B \u001b$B`\\\u001b(B \u001b$B`]\u001b(B \u001b$B`^\u001b(B \u001b$B`_\u001b(B\n\u001b$B``\u001b(B \u001b$B`a\u001b(B \u001b$B`b\u001b(B \u001b$B`c\u001b(B \u001b$B`d\u001b(B \u001b$B`e\u001b(B \u001b$B`f\u001b(B \u001b$B`g\u001b(B \u001b$B`h\u001b(B \u001b$B`i\u001b(B \u001b$B`j\u001b(B \u001b$B`k\u001b(B \u001b$B`l\u001b(B \u001b$B`m\u001b(B \u001b$B`n\u001b(B \u001b$B`o\u001b(B\n\u001b$B`p\u001b(B \u001b$B`q\u001b(B \u001b$B`r\u001b(B \u001b$B`s\u001b(B \u001b$B`t\u001b(B \u001b$B`u\u001b(B \u001b$B`v\u001b(B \u001b$B`w\u001b(B \u001b$B`x\u001b(B \u001b$B`y\u001b(B \u001b$B`z\u001b(B \u001b$B`{\u001b(B \u001b$B`|\u001b(B \u001b$B`}\u001b(B \u001b$B`~\u001b(B\n  \u001b$Ba!\u001b(B \u001b$Ba\"\u001b(B \u001b$Ba#\u001b(B \u001b$Ba$\u001b(B \u001b$Ba%\u001b(B \u001b$Ba&\u001b(B \u001b$Ba'\u001b(B \u001b$Ba(\u001b(B \u001b$Ba)\u001b(B \u001b$Ba*\u001b(B \u001b$Ba+\u001b(B \u001b$Ba,\u001b(B \u001b$Ba-\u001b(B \u001b$Ba.\u001b(B \u001b$Ba/\u001b(B\n\u001b$Ba0\u001b(B \u001b$Ba1\u001b(B \u001b$Ba2\u001b(B \u001b$Ba3\u001b(B \u001b$Ba4\u001b(B \u001b$Ba5\u001b(B \u001b$Ba6\u001b(B \u001b$Ba7\u001b(B \u001b$Ba8\u001b(B \u001b$Ba9\u001b(B \u001b$Ba:\u001b(B \u001b$Ba;\u001b(B \u001b$Ba<\u001b(B \u001b$Ba=\u001b(B \u001b$Ba>\u001b(B \u001b$Ba?\u001b(B\n\u001b$Ba@\u001b(B \u001b$BaA\u001b(B \u001b$BaB\u001b(B \u001b$BaC\u001b(B \u001b$BaD\u001b(B \u001b$BaE\u001b(B \u001b$BaF\u001b(B \u001b$BaG\u001b(B \u001b$BaH\u001b(B \u001b$BaI\u001b(B \u001b$BaJ\u001b(B \u001b$BaK\u001b(B \u001b$BaL\u001b(B \u001b$BaM\u001b(B \u001b$BaN\u001b(B \u001b$BaO\u001b(B\n\u001b$BaP\u001b(B \u001b$BaQ\u001b(B \u001b$BaR\u001b(B \u001b$BaS\u001b(B \u001b$BaT\u001b(B \u001b$BaU\u001b(B \u001b$BaV\u001b(B \u001b$BaW\u001b(B \u001b$BaX\u001b(B \u001b$BaY\u001b(B \u001b$BaZ\u001b(B \u001b$Ba[\u001b(B \u001b$Ba\\\u001b(B \u001b$Ba]\u001b(B \u001b$Ba^\u001b(B \u001b$Ba_\u001b(B\n\u001b$Ba`\u001b(B \u001b$Baa\u001b(B \u001b$Bab\u001b(B \u001b$Bac\u001b(B \u001b$Bad\u001b(B \u001b$Bae\u001b(B \u001b$Baf\u001b(B \u001b$Bag\u001b(B \u001b$Bah\u001b(B \u001b$Bai\u001b(B \u001b$Baj\u001b(B \u001b$Bak\u001b(B \u001b$Bal\u001b(B \u001b$Bam\u001b(B \u001b$Ban\u001b(B \u001b$Bao\u001b(B\n\u001b$Bap\u001b(B \u001b$Baq\u001b(B \u001b$Bar\u001b(B \u001b$Bas\u001b(B \u001b$Bat\u001b(B \u001b$Bau\u001b(B \u001b$Bav\u001b(B \u001b$Baw\u001b(B \u001b$Bax\u001b(B \u001b$Bay\u001b(B \u001b$Baz\u001b(B \u001b$Ba{\u001b(B \u001b$Ba|\u001b(B \u001b$Ba}\u001b(B \u001b$Ba~\u001b(B\n  \u001b$Bb!\u001b(B \u001b$Bb\"\u001b(B \u001b$Bb#\u001b(B \u001b$Bb$\u001b(B \u001b$Bb%\u001b(B \u001b$Bb&\u001b(B \u001b$Bb'\u001b(B \u001b$Bb(\u001b(B \u001b$Bb)\u001b(B \u001b$Bb*\u001b(B \u001b$Bb+\u001b(B \u001b$Bb,\u001b(B \u001b$Bb-\u001b(B \u001b$Bb.\u001b(B \u001b$Bb/\u001b(B\n\u001b$Bb0\u001b(B \u001b$Bb1\u001b(B \u001b$Bb2\u001b(B \u001b$Bb3\u001b(B \u001b$Bb4\u001b(B \u001b$Bb5\u001b(B \u001b$Bb6\u001b(B \u001b$Bb7\u001b(B \u001b$Bb8\u001b(B \u001b$Bb9\u001b(B \u001b$Bb:\u001b(B \u001b$Bb;\u001b(B \u001b$Bb<\u001b(B \u001b$Bb=\u001b(B \u001b$Bb>\u001b(B \u001b$Bb?\u001b(B\n\u001b$Bb@\u001b(B \u001b$BbA\u001b(B \u001b$BbB\u001b(B \u001b$BbC\u001b(B \u001b$BbD\u001b(B \u001b$BbE\u001b(B \u001b$BbF\u001b(B \u001b$BbG\u001b(B \u001b$BbH\u001b(B \u001b$BbI\u001b(B \u001b$BbJ\u001b(B \u001b$BbK\u001b(B \u001b$BbL\u001b(B \u001b$BbM\u001b(B \u001b$BbN\u001b(B \u001b$BbO\u001b(B\n\u001b$BbP\u001b(B \u001b$BbQ\u001b(B \u001b$BbR\u001b(B \u001b$BbS\u001b(B \u001b$BbT\u001b(B \u001b$BbU\u001b(B \u001b$BbV\u001b(B \u001b$BbW\u001b(B \u001b$BbX\u001b(B \u001b$BbY\u001b(B \u001b$BbZ\u001b(B \u001b$Bb[\u001b(B \u001b$Bb\\\u001b(B \u001b$Bb]\u001b(B \u001b$Bb^\u001b(B \u001b$Bb_\u001b(B\n\u001b$Bb`\u001b(B \u001b$Bba\u001b(B \u001b$Bbb\u001b(B \u001b$Bbc\u001b(B \u001b$Bbd\u001b(B \u001b$Bbe\u001b(B \u001b$Bbf\u001b(B \u001b$Bbg\u001b(B \u001b$Bbh\u001b(B \u001b$Bbi\u001b(B \u001b$Bbj\u001b(B \u001b$Bbk\u001b(B \u001b$Bbl\u001b(B \u001b$Bbm\u001b(B \u001b$Bbn\u001b(B \u001b$Bbo\u001b(B\n\u001b$Bbp\u001b(B \u001b$Bbq\u001b(B \u001b$Bbr\u001b(B \u001b$Bbs\u001b(B \u001b$Bbt\u001b(B \u001b$Bbu\u001b(B \u001b$Bbv\u001b(B \u001b$Bbw\u001b(B \u001b$Bbx\u001b(B \u001b$Bby\u001b(B \u001b$Bbz\u001b(B \u001b$Bb{\u001b(B \u001b$Bb|\u001b(B \u001b$Bb}\u001b(B \u001b$Bb~\u001b(B\n  \u001b$Bc!\u001b(B \u001b$Bc\"\u001b(B \u001b$Bc#\u001b(B \u001b$Bc$\u001b(B \u001b$Bc%\u001b(B \u001b$Bc&\u001b(B \u001b$Bc'\u001b(B \u001b$Bc(\u001b(B \u001b$Bc)\u001b(B \u001b$Bc*\u001b(B \u001b$Bc+\u001b(B \u001b$Bc,\u001b(B \u001b$Bc-\u001b(B \u001b$Bc.\u001b(B \u001b$Bc/\u001b(B\n\u001b$Bc0\u001b(B \u001b$Bc1\u001b(B \u001b$Bc2\u001b(B \u001b$Bc3\u001b(B \u001b$Bc4\u001b(B \u001b$Bc5\u001b(B \u001b$Bc6\u001b(B \u001b$Bc7\u001b(B \u001b$Bc8\u001b(B \u001b$Bc9\u001b(B \u001b$Bc:\u001b(B \u001b$Bc;\u001b(B \u001b$Bc<\u001b(B \u001b$Bc=\u001b(B \u001b$Bc>\u001b(B \u001b$Bc?\u001b(B\n\u001b$Bc@\u001b(B \u001b$BcA\u001b(B \u001b$BcB\u001b(B \u001b$BcC\u001b(B \u001b$BcD\u001b(B \u001b$BcE\u001b(B \u001b$BcF\u001b(B \u001b$BcG\u001b(B \u001b$BcH\u001b(B \u001b$BcI\u001b(B \u001b$BcJ\u001b(B \u001b$BcK\u001b(B \u001b$BcL\u001b(B \u001b$BcM\u001b(B \u001b$BcN\u001b(B \u001b$BcO\u001b(B\n\u001b$BcP\u001b(B \u001b$BcQ\u001b(B \u001b$BcR\u001b(B \u001b$BcS\u001b(B \u001b$BcT\u001b(B \u001b$BcU\u001b(B \u001b$BcV\u001b(B \u001b$BcW\u001b(B \u001b$BcX\u001b(B \u001b$BcY\u001b(B \u001b$BcZ\u001b(B \u001b$Bc[\u001b(B \u001b$Bc\\\u001b(B \u001b$Bc]\u001b(B \u001b$Bc^\u001b(B \u001b$Bc_\u001b(B\n\u001b$Bc`\u001b(B \u001b$Bca\u001b(B \u001b$Bcb\u001b(B \u001b$Bcc\u001b(B \u001b$Bcd\u001b(B \u001b$Bce\u001b(B \u001b$Bcf\u001b(B \u001b$Bcg\u001b(B \u001b$Bch\u001b(B \u001b$Bci\u001b(B \u001b$Bcj\u001b(B \u001b$Bck\u001b(B \u001b$Bcl\u001b(B \u001b$Bcm\u001b(B \u001b$Bcn\u001b(B \u001b$Bco\u001b(B\n\u001b$Bcp\u001b(B \u001b$Bcq\u001b(B \u001b$Bcr\u001b(B \u001b$Bcs\u001b(B \u001b$Bct\u001b(B \u001b$Bcu\u001b(B \u001b$Bcv\u001b(B \u001b$Bcw\u001b(B \u001b$Bcx\u001b(B \u001b$Bcy\u001b(B \u001b$Bcz\u001b(B \u001b$Bc{\u001b(B \u001b$Bc|\u001b(B \u001b$Bc}\u001b(B \u001b$Bc~\u001b(B\n  \u001b$Bd!\u001b(B \u001b$Bd\"\u001b(B \u001b$Bd#\u001b(B \u001b$Bd$\u001b(B \u001b$Bd%\u001b(B \u001b$Bd&\u001b(B \u001b$Bd'\u001b(B \u001b$Bd(\u001b(B \u001b$Bd)\u001b(B \u001b$Bd*\u001b(B \u001b$Bd+\u001b(B \u001b$Bd,\u001b(B \u001b$Bd-\u001b(B \u001b$Bd.\u001b(B \u001b$Bd/\u001b(B\n\u001b$Bd0\u001b(B \u001b$Bd1\u001b(B \u001b$Bd2\u001b(B \u001b$Bd3\u001b(B \u001b$Bd4\u001b(B \u001b$Bd5\u001b(B \u001b$Bd6\u001b(B \u001b$Bd7\u001b(B \u001b$Bd8\u001b(B \u001b$Bd9\u001b(B \u001b$Bd:\u001b(B \u001b$Bd;\u001b(B \u001b$Bd<\u001b(B \u001b$Bd=\u001b(B \u001b$Bd>\u001b(B \u001b$Bd?\u001b(B\n\u001b$Bd@\u001b(B \u001b$BdA\u001b(B \u001b$BdB\u001b(B \u001b$BdC\u001b(B \u001b$BdD\u001b(B \u001b$BdE\u001b(B \u001b$BdF\u001b(B \u001b$BdG\u001b(B \u001b$BdH\u001b(B \u001b$BdI\u001b(B \u001b$BdJ\u001b(B \u001b$BdK\u001b(B \u001b$BdL\u001b(B \u001b$BdM\u001b(B \u001b$BdN\u001b(B \u001b$BdO\u001b(B\n\u001b$BdP\u001b(B \u001b$BdQ\u001b(B \u001b$BdR\u001b(B \u001b$BdS\u001b(B \u001b$BdT\u001b(B \u001b$BdU\u001b(B \u001b$BdV\u001b(B \u001b$BdW\u001b(B \u001b$BdX\u001b(B \u001b$BdY\u001b(B \u001b$BdZ\u001b(B \u001b$Bd[\u001b(B \u001b$Bd\\\u001b(B \u001b$Bd]\u001b(B \u001b$Bd^\u001b(B \u001b$Bd_\u001b(B\n\u001b$Bd`\u001b(B \u001b$Bda\u001b(B \u001b$Bdb\u001b(B \u001b$Bdc\u001b(B \u001b$Bdd\u001b(B \u001b$Bde\u001b(B \u001b$Bdf\u001b(B \u001b$Bdg\u001b(B \u001b$Bdh\u001b(B \u001b$Bdi\u001b(B \u001b$Bdj\u001b(B \u001b$Bdk\u001b(B \u001b$Bdl\u001b(B \u001b$Bdm\u001b(B \u001b$Bdn\u001b(B \u001b$Bdo\u001b(B\n\u001b$Bdp\u001b(B \u001b$Bdq\u001b(B \u001b$Bdr\u001b(B \u001b$Bds\u001b(B \u001b$Bdt\u001b(B \u001b$Bdu\u001b(B \u001b$Bdv\u001b(B \u001b$Bdw\u001b(B \u001b$Bdx\u001b(B \u001b$Bdy\u001b(B \u001b$Bdz\u001b(B \u001b$Bd{\u001b(B \u001b$Bd|\u001b(B \u001b$Bd}\u001b(B \u001b$Bd~\u001b(B\n  \u001b$Be!\u001b(B \u001b$Be\"\u001b(B \u001b$Be#\u001b(B \u001b$Be$\u001b(B \u001b$Be%\u001b(B \u001b$Be&\u001b(B \u001b$Be'\u001b(B \u001b$Be(\u001b(B \u001b$Be)\u001b(B \u001b$Be*\u001b(B \u001b$Be+\u001b(B \u001b$Be,\u001b(B \u001b$Be-\u001b(B \u001b$Be.\u001b(B \u001b$Be/\u001b(B\n\u001b$Be0\u001b(B \u001b$Be1\u001b(B \u001b$Be2\u001b(B \u001b$Be3\u001b(B \u001b$Be4\u001b(B \u001b$Be5\u001b(B \u001b$Be6\u001b(B \u001b$Be7\u001b(B \u001b$Be8\u001b(B \u001b$Be9\u001b(B \u001b$Be:\u001b(B \u001b$Be;\u001b(B \u001b$Be<\u001b(B \u001b$Be=\u001b(B \u001b$Be>\u001b(B \u001b$Be?\u001b(B\n\u001b$Be@\u001b(B \u001b$BeA\u001b(B \u001b$BeB\u001b(B \u001b$BeC\u001b(B \u001b$BeD\u001b(B \u001b$BeE\u001b(B \u001b$BeF\u001b(B \u001b$BeG\u001b(B \u001b$BeH\u001b(B \u001b$BeI\u001b(B \u001b$BeJ\u001b(B \u001b$BeK\u001b(B \u001b$BeL\u001b(B \u001b$BeM\u001b(B \u001b$BeN\u001b(B \u001b$BeO\u001b(B\n\u001b$BeP\u001b(B \u001b$BeQ\u001b(B \u001b$BeR\u001b(B \u001b$BeS\u001b(B \u001b$BeT\u001b(B \u001b$BeU\u001b(B \u001b$BeV\u001b(B \u001b$BeW\u001b(B \u001b$BeX\u001b(B \u001b$BeY\u001b(B \u001b$BeZ\u001b(B \u001b$Be[\u001b(B \u001b$Be\\\u001b(B \u001b$Be]\u001b(B \u001b$Be^\u001b(B \u001b$Be_\u001b(B\n\u001b$Be`\u001b(B \u001b$Bea\u001b(B \u001b$Beb\u001b(B \u001b$Bec\u001b(B \u001b$Bed\u001b(B \u001b$Bee\u001b(B \u001b$Bef\u001b(B \u001b$Beg\u001b(B \u001b$Beh\u001b(B \u001b$Bei\u001b(B \u001b$Bej\u001b(B \u001b$Bek\u001b(B \u001b$Bel\u001b(B \u001b$Bem\u001b(B \u001b$Ben\u001b(B \u001b$Beo\u001b(B\n\u001b$Bep\u001b(B \u001b$Beq\u001b(B \u001b$Ber\u001b(B \u001b$Bes\u001b(B \u001b$Bet\u001b(B \u001b$Beu\u001b(B \u001b$Bev\u001b(B \u001b$Bew\u001b(B \u001b$Bex\u001b(B \u001b$Bey\u001b(B \u001b$Bez\u001b(B \u001b$Be{\u001b(B \u001b$Be|\u001b(B \u001b$Be}\u001b(B \u001b$Be~\u001b(B\n  \u001b$Bf!\u001b(B \u001b$Bf\"\u001b(B \u001b$Bf#\u001b(B \u001b$Bf$\u001b(B \u001b$Bf%\u001b(B \u001b$Bf&\u001b(B \u001b$Bf'\u001b(B \u001b$Bf(\u001b(B \u001b$Bf)\u001b(B \u001b$Bf*\u001b(B \u001b$Bf+\u001b(B \u001b$Bf,\u001b(B \u001b$Bf-\u001b(B \u001b$Bf.\u001b(B \u001b$Bf/\u001b(B\n\u001b$Bf0\u001b(B \u001b$Bf1\u001b(B \u001b$Bf2\u001b(B \u001b$Bf3\u001b(B \u001b$Bf4\u001b(B \u001b$Bf5\u001b(B \u001b$Bf6\u001b(B \u001b$Bf7\u001b(B \u001b$Bf8\u001b(B \u001b$Bf9\u001b(B \u001b$Bf:\u001b(B \u001b$Bf;\u001b(B \u001b$Bf<\u001b(B \u001b$Bf=\u001b(B \u001b$Bf>\u001b(B \u001b$Bf?\u001b(B\n\u001b$Bf@\u001b(B \u001b$BfA\u001b(B \u001b$BfB\u001b(B \u001b$BfC\u001b(B \u001b$BfD\u001b(B \u001b$BfE\u001b(B \u001b$BfF\u001b(B \u001b$BfG\u001b(B \u001b$BfH\u001b(B \u001b$BfI\u001b(B \u001b$BfJ\u001b(B \u001b$BfK\u001b(B \u001b$BfL\u001b(B \u001b$BfM\u001b(B \u001b$BfN\u001b(B \u001b$BfO\u001b(B\n\u001b$BfP\u001b(B \u001b$BfQ\u001b(B \u001b$BfR\u001b(B \u001b$BfS\u001b(B \u001b$BfT\u001b(B \u001b$BfU\u001b(B \u001b$BfV\u001b(B \u001b$BfW\u001b(B \u001b$BfX\u001b(B \u001b$BfY\u001b(B \u001b$BfZ\u001b(B \u001b$Bf[\u001b(B \u001b$Bf\\\u001b(B \u001b$Bf]\u001b(B \u001b$Bf^\u001b(B \u001b$Bf_\u001b(B\n\u001b$Bf`\u001b(B \u001b$Bfa\u001b(B \u001b$Bfb\u001b(B \u001b$Bfc\u001b(B \u001b$Bfd\u001b(B \u001b$Bfe\u001b(B \u001b$Bff\u001b(B \u001b$Bfg\u001b(B \u001b$Bfh\u001b(B \u001b$Bfi\u001b(B \u001b$Bfj\u001b(B \u001b$Bfk\u001b(B \u001b$Bfl\u001b(B \u001b$Bfm\u001b(B \u001b$Bfn\u001b(B \u001b$Bfo\u001b(B\n\u001b$Bfp\u001b(B \u001b$Bfq\u001b(B \u001b$Bfr\u001b(B \u001b$Bfs\u001b(B \u001b$Bft\u001b(B \u001b$Bfu\u001b(B \u001b$Bfv\u001b(B \u001b$Bfw\u001b(B \u001b$Bfx\u001b(B \u001b$Bfy\u001b(B \u001b$Bfz\u001b(B \u001b$Bf{\u001b(B \u001b$Bf|\u001b(B \u001b$Bf}\u001b(B \u001b$Bf~\u001b(B\n  \u001b$Bg!\u001b(B \u001b$Bg\"\u001b(B \u001b$Bg#\u001b(B \u001b$Bg$\u001b(B \u001b$Bg%\u001b(B \u001b$Bg&\u001b(B \u001b$Bg'\u001b(B \u001b$Bg(\u001b(B \u001b$Bg)\u001b(B \u001b$Bg*\u001b(B \u001b$Bg+\u001b(B \u001b$Bg,\u001b(B \u001b$Bg-\u001b(B \u001b$Bg.\u001b(B \u001b$Bg/\u001b(B\n\u001b$Bg0\u001b(B \u001b$Bg1\u001b(B \u001b$Bg2\u001b(B \u001b$Bg3\u001b(B \u001b$Bg4\u001b(B \u001b$Bg5\u001b(B \u001b$Bg6\u001b(B \u001b$Bg7\u001b(B \u001b$Bg8\u001b(B \u001b$Bg9\u001b(B \u001b$Bg:\u001b(B \u001b$Bg;\u001b(B \u001b$Bg<\u001b(B \u001b$Bg=\u001b(B \u001b$Bg>\u001b(B \u001b$Bg?\u001b(B\n\u001b$Bg@\u001b(B \u001b$BgA\u001b(B \u001b$BgB\u001b(B \u001b$BgC\u001b(B \u001b$BgD\u001b(B \u001b$BgE\u001b(B \u001b$BgF\u001b(B \u001b$BgG\u001b(B \u001b$BgH\u001b(B \u001b$BgI\u001b(B \u001b$BgJ\u001b(B \u001b$BgK\u001b(B \u001b$BgL\u001b(B \u001b$BgM\u001b(B \u001b$BgN\u001b(B \u001b$BgO\u001b(B\n\u001b$BgP\u001b(B \u001b$BgQ\u001b(B \u001b$BgR\u001b(B \u001b$BgS\u001b(B \u001b$BgT\u001b(B \u001b$BgU\u001b(B \u001b$BgV\u001b(B \u001b$BgW\u001b(B \u001b$BgX\u001b(B \u001b$BgY\u001b(B \u001b$BgZ\u001b(B \u001b$Bg[\u001b(B \u001b$Bg\\\u001b(B \u001b$Bg]\u001b(B \u001b$Bg^\u001b(B \u001b$Bg_\u001b(B\n\u001b$Bg`\u001b(B \u001b$Bga\u001b(B \u001b$Bgb\u001b(B \u001b$Bgc\u001b(B \u001b$Bgd\u001b(B \u001b$Bge\u001b(B \u001b$Bgf\u001b(B \u001b$Bgg\u001b(B \u001b$Bgh\u001b(B \u001b$Bgi\u001b(B \u001b$Bgj\u001b(B \u001b$Bgk\u001b(B \u001b$Bgl\u001b(B \u001b$Bgm\u001b(B \u001b$Bgn\u001b(B \u001b$Bgo\u001b(B\n\u001b$Bgp\u001b(B \u001b$Bgq\u001b(B \u001b$Bgr\u001b(B \u001b$Bgs\u001b(B \u001b$Bgt\u001b(B \u001b$Bgu\u001b(B \u001b$Bgv\u001b(B \u001b$Bgw\u001b(B \u001b$Bgx\u001b(B \u001b$Bgy\u001b(B \u001b$Bgz\u001b(B \u001b$Bg{\u001b(B \u001b$Bg|\u001b(B \u001b$Bg}\u001b(B \u001b$Bg~\u001b(B\n  \u001b$Bh!\u001b(B \u001b$Bh\"\u001b(B \u001b$Bh#\u001b(B \u001b$Bh$\u001b(B \u001b$Bh%\u001b(B \u001b$Bh&\u001b(B \u001b$Bh'\u001b(B \u001b$Bh(\u001b(B \u001b$Bh)\u001b(B \u001b$Bh*\u001b(B \u001b$Bh+\u001b(B \u001b$Bh,\u001b(B \u001b$Bh-\u001b(B \u001b$Bh.\u001b(B \u001b$Bh/\u001b(B\n\u001b$Bh0\u001b(B \u001b$Bh1\u001b(B \u001b$Bh2\u001b(B \u001b$Bh3\u001b(B \u001b$Bh4\u001b(B \u001b$Bh5\u001b(B \u001b$Bh6\u001b(B \u001b$Bh7\u001b(B \u001b$Bh8\u001b(B \u001b$Bh9\u001b(B \u001b$Bh:\u001b(B \u001b$Bh;\u001b(B \u001b$Bh<\u001b(B \u001b$Bh=\u001b(B \u001b$Bh>\u001b(B \u001b$Bh?\u001b(B\n\u001b$Bh@\u001b(B \u001b$BhA\u001b(B \u001b$BhB\u001b(B \u001b$BhC\u001b(B \u001b$BhD\u001b(B \u001b$BhE\u001b(B \u001b$BhF\u001b(B \u001b$BhG\u001b(B \u001b$BhH\u001b(B \u001b$BhI\u001b(B \u001b$BhJ\u001b(B \u001b$BhK\u001b(B \u001b$BhL\u001b(B \u001b$BhM\u001b(B \u001b$BhN\u001b(B \u001b$BhO\u001b(B\n\u001b$BhP\u001b(B \u001b$BhQ\u001b(B \u001b$BhR\u001b(B \u001b$BhS\u001b(B \u001b$BhT\u001b(B \u001b$BhU\u001b(B \u001b$BhV\u001b(B \u001b$BhW\u001b(B \u001b$BhX\u001b(B \u001b$BhY\u001b(B \u001b$BhZ\u001b(B \u001b$Bh[\u001b(B \u001b$Bh\\\u001b(B \u001b$Bh]\u001b(B \u001b$Bh^\u001b(B \u001b$Bh_\u001b(B\n\u001b$Bh`\u001b(B \u001b$Bha\u001b(B \u001b$Bhb\u001b(B \u001b$Bhc\u001b(B \u001b$Bhd\u001b(B \u001b$Bhe\u001b(B \u001b$Bhf\u001b(B \u001b$Bhg\u001b(B \u001b$Bhh\u001b(B \u001b$Bhi\u001b(B \u001b$Bhj\u001b(B \u001b$Bhk\u001b(B \u001b$Bhl\u001b(B \u001b$Bhm\u001b(B \u001b$Bhn\u001b(B \u001b$Bho\u001b(B\n\u001b$Bhp\u001b(B \u001b$Bhq\u001b(B \u001b$Bhr\u001b(B \u001b$Bhs\u001b(B \u001b$Bht\u001b(B \u001b$Bhu\u001b(B \u001b$Bhv\u001b(B \u001b$Bhw\u001b(B \u001b$Bhx\u001b(B \u001b$Bhy\u001b(B \u001b$Bhz\u001b(B \u001b$Bh{\u001b(B \u001b$Bh|\u001b(B \u001b$Bh}\u001b(B \u001b$Bh~\u001b(B\n  \u001b$Bi!\u001b(B \u001b$Bi\"\u001b(B \u001b$Bi#\u001b(B \u001b$Bi$\u001b(B \u001b$Bi%\u001b(B \u001b$Bi&\u001b(B \u001b$Bi'\u001b(B \u001b$Bi(\u001b(B \u001b$Bi)\u001b(B \u001b$Bi*\u001b(B \u001b$Bi+\u001b(B \u001b$Bi,\u001b(B \u001b$Bi-\u001b(B \u001b$Bi.\u001b(B \u001b$Bi/\u001b(B\n\u001b$Bi0\u001b(B \u001b$Bi1\u001b(B \u001b$Bi2\u001b(B \u001b$Bi3\u001b(B \u001b$Bi4\u001b(B \u001b$Bi5\u001b(B \u001b$Bi6\u001b(B \u001b$Bi7\u001b(B \u001b$Bi8\u001b(B \u001b$Bi9\u001b(B \u001b$Bi:\u001b(B \u001b$Bi;\u001b(B \u001b$Bi<\u001b(B \u001b$Bi=\u001b(B \u001b$Bi>\u001b(B \u001b$Bi?\u001b(B\n\u001b$Bi@\u001b(B \u001b$BiA\u001b(B \u001b$BiB\u001b(B \u001b$BiC\u001b(B \u001b$BiD\u001b(B \u001b$BiE\u001b(B \u001b$BiF\u001b(B \u001b$BiG\u001b(B \u001b$BiH\u001b(B \u001b$BiI\u001b(B \u001b$BiJ\u001b(B \u001b$BiK\u001b(B \u001b$BiL\u001b(B \u001b$BiM\u001b(B \u001b$BiN\u001b(B \u001b$BiO\u001b(B\n\u001b$BiP\u001b(B \u001b$BiQ\u001b(B \u001b$BiR\u001b(B \u001b$BiS\u001b(B \u001b$BiT\u001b(B \u001b$BiU\u001b(B \u001b$BiV\u001b(B \u001b$BiW\u001b(B \u001b$BiX\u001b(B \u001b$BiY\u001b(B \u001b$BiZ\u001b(B \u001b$Bi[\u001b(B \u001b$Bi\\\u001b(B \u001b$Bi]\u001b(B \u001b$Bi^\u001b(B \u001b$Bi_\u001b(B\n\u001b$Bi`\u001b(B \u001b$Bia\u001b(B \u001b$Bib\u001b(B \u001b$Bic\u001b(B \u001b$Bid\u001b(B \u001b$Bie\u001b(B \u001b$Bif\u001b(B \u001b$Big\u001b(B \u001b$Bih\u001b(B \u001b$Bii\u001b(B \u001b$Bij\u001b(B \u001b$Bik\u001b(B \u001b$Bil\u001b(B \u001b$Bim\u001b(B \u001b$Bin\u001b(B \u001b$Bio\u001b(B\n\u001b$Bip\u001b(B \u001b$Biq\u001b(B \u001b$Bir\u001b(B \u001b$Bis\u001b(B \u001b$Bit\u001b(B \u001b$Biu\u001b(B \u001b$Biv\u001b(B \u001b$Biw\u001b(B \u001b$Bix\u001b(B \u001b$Biy\u001b(B \u001b$Biz\u001b(B \u001b$Bi{\u001b(B \u001b$Bi|\u001b(B \u001b$Bi}\u001b(B \u001b$Bi~\u001b(B\n  \u001b$Bj!\u001b(B \u001b$Bj\"\u001b(B \u001b$Bj#\u001b(B \u001b$Bj$\u001b(B \u001b$Bj%\u001b(B \u001b$Bj&\u001b(B \u001b$Bj'\u001b(B \u001b$Bj(\u001b(B \u001b$Bj)\u001b(B \u001b$Bj*\u001b(B \u001b$Bj+\u001b(B \u001b$Bj,\u001b(B \u001b$Bj-\u001b(B \u001b$Bj.\u001b(B \u001b$Bj/\u001b(B\n\u001b$Bj0\u001b(B \u001b$Bj1\u001b(B \u001b$Bj2\u001b(B \u001b$Bj3\u001b(B \u001b$Bj4\u001b(B \u001b$Bj5\u001b(B \u001b$Bj6\u001b(B \u001b$Bj7\u001b(B \u001b$Bj8\u001b(B \u001b$Bj9\u001b(B \u001b$Bj:\u001b(B \u001b$Bj;\u001b(B \u001b$Bj<\u001b(B \u001b$Bj=\u001b(B \u001b$Bj>\u001b(B \u001b$Bj?\u001b(B\n\u001b$Bj@\u001b(B \u001b$BjA\u001b(B \u001b$BjB\u001b(B \u001b$BjC\u001b(B \u001b$BjD\u001b(B \u001b$BjE\u001b(B \u001b$BjF\u001b(B \u001b$BjG\u001b(B \u001b$BjH\u001b(B \u001b$BjI\u001b(B \u001b$BjJ\u001b(B \u001b$BjK\u001b(B \u001b$BjL\u001b(B \u001b$BjM\u001b(B \u001b$BjN\u001b(B \u001b$BjO\u001b(B\n\u001b$BjP\u001b(B \u001b$BjQ\u001b(B \u001b$BjR\u001b(B \u001b$BjS\u001b(B \u001b$BjT\u001b(B \u001b$BjU\u001b(B \u001b$BjV\u001b(B \u001b$BjW\u001b(B \u001b$BjX\u001b(B \u001b$BjY\u001b(B \u001b$BjZ\u001b(B \u001b$Bj[\u001b(B \u001b$Bj\\\u001b(B \u001b$Bj]\u001b(B \u001b$Bj^\u001b(B \u001b$Bj_\u001b(B\n\u001b$Bj`\u001b(B \u001b$Bja\u001b(B \u001b$Bjb\u001b(B \u001b$Bjc\u001b(B \u001b$Bjd\u001b(B \u001b$Bje\u001b(B \u001b$Bjf\u001b(B \u001b$Bjg\u001b(B \u001b$Bjh\u001b(B \u001b$Bji\u001b(B \u001b$Bjj\u001b(B \u001b$Bjk\u001b(B \u001b$Bjl\u001b(B \u001b$Bjm\u001b(B \u001b$Bjn\u001b(B \u001b$Bjo\u001b(B\n\u001b$Bjp\u001b(B \u001b$Bjq\u001b(B \u001b$Bjr\u001b(B \u001b$Bjs\u001b(B \u001b$Bjt\u001b(B \u001b$Bju\u001b(B \u001b$Bjv\u001b(B \u001b$Bjw\u001b(B \u001b$Bjx\u001b(B \u001b$Bjy\u001b(B \u001b$Bjz\u001b(B \u001b$Bj{\u001b(B \u001b$Bj|\u001b(B \u001b$Bj}\u001b(B \u001b$Bj~\u001b(B\n  \u001b$Bk!\u001b(B \u001b$Bk\"\u001b(B \u001b$Bk#\u001b(B \u001b$Bk$\u001b(B \u001b$Bk%\u001b(B \u001b$Bk&\u001b(B \u001b$Bk'\u001b(B \u001b$Bk(\u001b(B \u001b$Bk)\u001b(B \u001b$Bk*\u001b(B \u001b$Bk+\u001b(B \u001b$Bk,\u001b(B \u001b$Bk-\u001b(B \u001b$Bk.\u001b(B \u001b$Bk/\u001b(B\n\u001b$Bk0\u001b(B \u001b$Bk1\u001b(B \u001b$Bk2\u001b(B \u001b$Bk3\u001b(B \u001b$Bk4\u001b(B \u001b$Bk5\u001b(B \u001b$Bk6\u001b(B \u001b$Bk7\u001b(B \u001b$Bk8\u001b(B \u001b$Bk9\u001b(B \u001b$Bk:\u001b(B \u001b$Bk;\u001b(B \u001b$Bk<\u001b(B \u001b$Bk=\u001b(B \u001b$Bk>\u001b(B \u001b$Bk?\u001b(B\n\u001b$Bk@\u001b(B \u001b$BkA\u001b(B \u001b$BkB\u001b(B \u001b$BkC\u001b(B \u001b$BkD\u001b(B \u001b$BkE\u001b(B \u001b$BkF\u001b(B \u001b$BkG\u001b(B \u001b$BkH\u001b(B \u001b$BkI\u001b(B \u001b$BkJ\u001b(B \u001b$BkK\u001b(B \u001b$BkL\u001b(B \u001b$BkM\u001b(B \u001b$BkN\u001b(B \u001b$BkO\u001b(B\n\u001b$BkP\u001b(B \u001b$BkQ\u001b(B \u001b$BkR\u001b(B \u001b$BkS\u001b(B \u001b$BkT\u001b(B \u001b$BkU\u001b(B \u001b$BkV\u001b(B \u001b$BkW\u001b(B \u001b$BkX\u001b(B \u001b$BkY\u001b(B \u001b$BkZ\u001b(B \u001b$Bk[\u001b(B \u001b$Bk\\\u001b(B \u001b$Bk]\u001b(B \u001b$Bk^\u001b(B \u001b$Bk_\u001b(B\n\u001b$Bk`\u001b(B \u001b$Bka\u001b(B \u001b$Bkb\u001b(B \u001b$Bkc\u001b(B \u001b$Bkd\u001b(B \u001b$Bke\u001b(B \u001b$Bkf\u001b(B \u001b$Bkg\u001b(B \u001b$Bkh\u001b(B \u001b$Bki\u001b(B \u001b$Bkj\u001b(B \u001b$Bkk\u001b(B \u001b$Bkl\u001b(B \u001b$Bkm\u001b(B \u001b$Bkn\u001b(B \u001b$Bko\u001b(B\n\u001b$Bkp\u001b(B \u001b$Bkq\u001b(B \u001b$Bkr\u001b(B \u001b$Bks\u001b(B \u001b$Bkt\u001b(B \u001b$Bku\u001b(B \u001b$Bkv\u001b(B \u001b$Bkw\u001b(B \u001b$Bkx\u001b(B \u001b$Bky\u001b(B \u001b$Bkz\u001b(B \u001b$Bk{\u001b(B \u001b$Bk|\u001b(B \u001b$Bk}\u001b(B \u001b$Bk~\u001b(B\n  \u001b$Bl!\u001b(B \u001b$Bl\"\u001b(B \u001b$Bl#\u001b(B \u001b$Bl$\u001b(B \u001b$Bl%\u001b(B \u001b$Bl&\u001b(B \u001b$Bl'\u001b(B \u001b$Bl(\u001b(B \u001b$Bl)\u001b(B \u001b$Bl*\u001b(B \u001b$Bl+\u001b(B \u001b$Bl,\u001b(B \u001b$Bl-\u001b(B \u001b$Bl.\u001b(B \u001b$Bl/\u001b(B\n\u001b$Bl0\u001b(B \u001b$Bl1\u001b(B \u001b$Bl2\u001b(B \u001b$Bl3\u001b(B \u001b$Bl4\u001b(B \u001b$Bl5\u001b(B \u001b$Bl6\u001b(B \u001b$Bl7\u001b(B \u001b$Bl8\u001b(B \u001b$Bl9\u001b(B \u001b$Bl:\u001b(B \u001b$Bl;\u001b(B \u001b$Bl<\u001b(B \u001b$Bl=\u001b(B \u001b$Bl>\u001b(B \u001b$Bl?\u001b(B\n\u001b$Bl@\u001b(B \u001b$BlA\u001b(B \u001b$BlB\u001b(B \u001b$BlC\u001b(B \u001b$BlD\u001b(B \u001b$BlE\u001b(B \u001b$BlF\u001b(B \u001b$BlG\u001b(B \u001b$BlH\u001b(B \u001b$BlI\u001b(B \u001b$BlJ\u001b(B \u001b$BlK\u001b(B \u001b$BlL\u001b(B \u001b$BlM\u001b(B \u001b$BlN\u001b(B \u001b$BlO\u001b(B\n\u001b$BlP\u001b(B \u001b$BlQ\u001b(B \u001b$BlR\u001b(B \u001b$BlS\u001b(B \u001b$BlT\u001b(B \u001b$BlU\u001b(B \u001b$BlV\u001b(B \u001b$BlW\u001b(B \u001b$BlX\u001b(B \u001b$BlY\u001b(B \u001b$BlZ\u001b(B \u001b$Bl[\u001b(B \u001b$Bl\\\u001b(B \u001b$Bl]\u001b(B \u001b$Bl^\u001b(B \u001b$Bl_\u001b(B\n\u001b$Bl`\u001b(B \u001b$Bla\u001b(B \u001b$Blb\u001b(B \u001b$Blc\u001b(B \u001b$Bld\u001b(B \u001b$Ble\u001b(B \u001b$Blf\u001b(B \u001b$Blg\u001b(B \u001b$Blh\u001b(B \u001b$Bli\u001b(B \u001b$Blj\u001b(B \u001b$Blk\u001b(B \u001b$Bll\u001b(B \u001b$Blm\u001b(B \u001b$Bln\u001b(B \u001b$Blo\u001b(B\n\u001b$Blp\u001b(B \u001b$Blq\u001b(B \u001b$Blr\u001b(B \u001b$Bls\u001b(B \u001b$Blt\u001b(B \u001b$Blu\u001b(B \u001b$Blv\u001b(B \u001b$Blw\u001b(B \u001b$Blx\u001b(B \u001b$Bly\u001b(B \u001b$Blz\u001b(B \u001b$Bl{\u001b(B \u001b$Bl|\u001b(B \u001b$Bl}\u001b(B \u001b$Bl~\u001b(B\n  \u001b$Bm!\u001b(B \u001b$Bm\"\u001b(B \u001b$Bm#\u001b(B \u001b$Bm$\u001b(B \u001b$Bm%\u001b(B \u001b$Bm&\u001b(B \u001b$Bm'\u001b(B \u001b$Bm(\u001b(B \u001b$Bm)\u001b(B \u001b$Bm*\u001b(B \u001b$Bm+\u001b(B \u001b$Bm,\u001b(B \u001b$Bm-\u001b(B \u001b$Bm.\u001b(B \u001b$Bm/\u001b(B\n\u001b$Bm0\u001b(B \u001b$Bm1\u001b(B \u001b$Bm2\u001b(B \u001b$Bm3\u001b(B \u001b$Bm4\u001b(B \u001b$Bm5\u001b(B \u001b$Bm6\u001b(B \u001b$Bm7\u001b(B \u001b$Bm8\u001b(B \u001b$Bm9\u001b(B \u001b$Bm:\u001b(B \u001b$Bm;\u001b(B \u001b$Bm<\u001b(B \u001b$Bm=\u001b(B \u001b$Bm>\u001b(B \u001b$Bm?\u001b(B\n\u001b$Bm@\u001b(B \u001b$BmA\u001b(B \u001b$BmB\u001b(B \u001b$BmC\u001b(B \u001b$BmD\u001b(B \u001b$BmE\u001b(B \u001b$BmF\u001b(B \u001b$BmG\u001b(B \u001b$BmH\u001b(B \u001b$BmI\u001b(B \u001b$BmJ\u001b(B \u001b$BmK\u001b(B \u001b$BmL\u001b(B \u001b$BmM\u001b(B \u001b$BmN\u001b(B \u001b$BmO\u001b(B\n\u001b$BmP\u001b(B \u001b$BmQ\u001b(B \u001b$BmR\u001b(B \u001b$BmS\u001b(B \u001b$BmT\u001b(B \u001b$BmU\u001b(B \u001b$BmV\u001b(B \u001b$BmW\u001b(B \u001b$BmX\u001b(B \u001b$BmY\u001b(B \u001b$BmZ\u001b(B \u001b$Bm[\u001b(B \u001b$Bm\\\u001b(B \u001b$Bm]\u001b(B \u001b$Bm^\u001b(B \u001b$Bm_\u001b(B\n\u001b$Bm`\u001b(B \u001b$Bma\u001b(B \u001b$Bmb\u001b(B \u001b$Bmc\u001b(B \u001b$Bmd\u001b(B \u001b$Bme\u001b(B \u001b$Bmf\u001b(B \u001b$Bmg\u001b(B \u001b$Bmh\u001b(B \u001b$Bmi\u001b(B \u001b$Bmj\u001b(B \u001b$Bmk\u001b(B \u001b$Bml\u001b(B \u001b$Bmm\u001b(B \u001b$Bmn\u001b(B \u001b$Bmo\u001b(B\n\u001b$Bmp\u001b(B \u001b$Bmq\u001b(B \u001b$Bmr\u001b(B \u001b$Bms\u001b(B \u001b$Bmt\u001b(B \u001b$Bmu\u001b(B \u001b$Bmv\u001b(B \u001b$Bmw\u001b(B \u001b$Bmx\u001b(B \u001b$Bmy\u001b(B \u001b$Bmz\u001b(B \u001b$Bm{\u001b(B \u001b$Bm|\u001b(B \u001b$Bm}\u001b(B \u001b$Bm~\u001b(B\n  \u001b$Bn!\u001b(B \u001b$Bn\"\u001b(B \u001b$Bn#\u001b(B \u001b$Bn$\u001b(B \u001b$Bn%\u001b(B \u001b$Bn&\u001b(B \u001b$Bn'\u001b(B \u001b$Bn(\u001b(B \u001b$Bn)\u001b(B \u001b$Bn*\u001b(B \u001b$Bn+\u001b(B \u001b$Bn,\u001b(B \u001b$Bn-\u001b(B \u001b$Bn.\u001b(B \u001b$Bn/\u001b(B\n\u001b$Bn0\u001b(B \u001b$Bn1\u001b(B \u001b$Bn2\u001b(B \u001b$Bn3\u001b(B \u001b$Bn4\u001b(B \u001b$Bn5\u001b(B \u001b$Bn6\u001b(B \u001b$Bn7\u001b(B \u001b$Bn8\u001b(B \u001b$Bn9\u001b(B \u001b$Bn:\u001b(B \u001b$Bn;\u001b(B \u001b$Bn<\u001b(B \u001b$Bn=\u001b(B \u001b$Bn>\u001b(B \u001b$Bn?\u001b(B\n\u001b$Bn@\u001b(B \u001b$BnA\u001b(B \u001b$BnB\u001b(B \u001b$BnC\u001b(B \u001b$BnD\u001b(B \u001b$BnE\u001b(B \u001b$BnF\u001b(B \u001b$BnG\u001b(B \u001b$BnH\u001b(B \u001b$BnI\u001b(B \u001b$BnJ\u001b(B \u001b$BnK\u001b(B \u001b$BnL\u001b(B \u001b$BnM\u001b(B \u001b$BnN\u001b(B \u001b$BnO\u001b(B\n\u001b$BnP\u001b(B \u001b$BnQ\u001b(B \u001b$BnR\u001b(B \u001b$BnS\u001b(B \u001b$BnT\u001b(B \u001b$BnU\u001b(B \u001b$BnV\u001b(B \u001b$BnW\u001b(B \u001b$BnX\u001b(B \u001b$BnY\u001b(B \u001b$BnZ\u001b(B \u001b$Bn[\u001b(B \u001b$Bn\\\u001b(B \u001b$Bn]\u001b(B \u001b$Bn^\u001b(B \u001b$Bn_\u001b(B\n\u001b$Bn`\u001b(B \u001b$Bna\u001b(B \u001b$Bnb\u001b(B \u001b$Bnc\u001b(B \u001b$Bnd\u001b(B \u001b$Bne\u001b(B \u001b$Bnf\u001b(B \u001b$Bng\u001b(B \u001b$Bnh\u001b(B \u001b$Bni\u001b(B \u001b$Bnj\u001b(B \u001b$Bnk\u001b(B \u001b$Bnl\u001b(B \u001b$Bnm\u001b(B \u001b$Bnn\u001b(B \u001b$Bno\u001b(B\n\u001b$Bnp\u001b(B \u001b$Bnq\u001b(B \u001b$Bnr\u001b(B \u001b$Bns\u001b(B \u001b$Bnt\u001b(B \u001b$Bnu\u001b(B \u001b$Bnv\u001b(B \u001b$Bnw\u001b(B \u001b$Bnx\u001b(B \u001b$Bny\u001b(B \u001b$Bnz\u001b(B \u001b$Bn{\u001b(B \u001b$Bn|\u001b(B \u001b$Bn}\u001b(B \u001b$Bn~\u001b(B\n  \u001b$Bo!\u001b(B \u001b$Bo\"\u001b(B \u001b$Bo#\u001b(B \u001b$Bo$\u001b(B \u001b$Bo%\u001b(B \u001b$Bo&\u001b(B \u001b$Bo'\u001b(B \u001b$Bo(\u001b(B \u001b$Bo)\u001b(B \u001b$Bo*\u001b(B \u001b$Bo+\u001b(B \u001b$Bo,\u001b(B \u001b$Bo-\u001b(B \u001b$Bo.\u001b(B \u001b$Bo/\u001b(B\n\u001b$Bo0\u001b(B \u001b$Bo1\u001b(B \u001b$Bo2\u001b(B \u001b$Bo3\u001b(B \u001b$Bo4\u001b(B \u001b$Bo5\u001b(B \u001b$Bo6\u001b(B \u001b$Bo7\u001b(B \u001b$Bo8\u001b(B \u001b$Bo9\u001b(B \u001b$Bo:\u001b(B \u001b$Bo;\u001b(B \u001b$Bo<\u001b(B \u001b$Bo=\u001b(B \u001b$Bo>\u001b(B \u001b$Bo?\u001b(B\n\u001b$Bo@\u001b(B \u001b$BoA\u001b(B \u001b$BoB\u001b(B \u001b$BoC\u001b(B \u001b$BoD\u001b(B \u001b$BoE\u001b(B \u001b$BoF\u001b(B \u001b$BoG\u001b(B \u001b$BoH\u001b(B \u001b$BoI\u001b(B \u001b$BoJ\u001b(B \u001b$BoK\u001b(B \u001b$BoL\u001b(B \u001b$BoM\u001b(B \u001b$BoN\u001b(B \u001b$BoO\u001b(B\n\u001b$BoP\u001b(B \u001b$BoQ\u001b(B \u001b$BoR\u001b(B \u001b$BoS\u001b(B \u001b$BoT\u001b(B \u001b$BoU\u001b(B \u001b$BoV\u001b(B \u001b$BoW\u001b(B \u001b$BoX\u001b(B \u001b$BoY\u001b(B \u001b$BoZ\u001b(B \u001b$Bo[\u001b(B \u001b$Bo\\\u001b(B \u001b$Bo]\u001b(B \u001b$Bo^\u001b(B \u001b$Bo_\u001b(B\n\u001b$Bo`\u001b(B \u001b$Boa\u001b(B \u001b$Bob\u001b(B \u001b$Boc\u001b(B \u001b$Bod\u001b(B \u001b$Boe\u001b(B \u001b$Bof\u001b(B \u001b$Bog\u001b(B \u001b$Boh\u001b(B \u001b$Boi\u001b(B \u001b$Boj\u001b(B \u001b$Bok\u001b(B \u001b$Bol\u001b(B \u001b$Bom\u001b(B \u001b$Bon\u001b(B \u001b$Boo\u001b(B\n\u001b$Bop\u001b(B \u001b$Boq\u001b(B \u001b$Bor\u001b(B \u001b$Bos\u001b(B \u001b$Bot\u001b(B \u001b$Bou\u001b(B \u001b$Bov\u001b(B \u001b$Bow\u001b(B \u001b$Box\u001b(B \u001b$Boy\u001b(B \u001b$Boz\u001b(B \u001b$Bo{\u001b(B \u001b$Bo|\u001b(B \u001b$Bo}\u001b(B \u001b$Bo~\u001b(B\n  \u001b$Bp!\u001b(B \u001b$Bp\"\u001b(B \u001b$Bp#\u001b(B \u001b$Bp$\u001b(B \u001b$Bp%\u001b(B \u001b$Bp&\u001b(B \u001b$Bp'\u001b(B \u001b$Bp(\u001b(B \u001b$Bp)\u001b(B \u001b$Bp*\u001b(B \u001b$Bp+\u001b(B \u001b$Bp,\u001b(B \u001b$Bp-\u001b(B \u001b$Bp.\u001b(B \u001b$Bp/\u001b(B\n\u001b$Bp0\u001b(B \u001b$Bp1\u001b(B \u001b$Bp2\u001b(B \u001b$Bp3\u001b(B \u001b$Bp4\u001b(B \u001b$Bp5\u001b(B \u001b$Bp6\u001b(B \u001b$Bp7\u001b(B \u001b$Bp8\u001b(B \u001b$Bp9\u001b(B \u001b$Bp:\u001b(B \u001b$Bp;\u001b(B \u001b$Bp<\u001b(B \u001b$Bp=\u001b(B \u001b$Bp>\u001b(B \u001b$Bp?\u001b(B\n\u001b$Bp@\u001b(B \u001b$BpA\u001b(B \u001b$BpB\u001b(B \u001b$BpC\u001b(B \u001b$BpD\u001b(B \u001b$BpE\u001b(B \u001b$BpF\u001b(B \u001b$BpG\u001b(B \u001b$BpH\u001b(B \u001b$BpI\u001b(B \u001b$BpJ\u001b(B \u001b$BpK\u001b(B \u001b$BpL\u001b(B \u001b$BpM\u001b(B \u001b$BpN\u001b(B \u001b$BpO\u001b(B\n\u001b$BpP\u001b(B \u001b$BpQ\u001b(B \u001b$BpR\u001b(B \u001b$BpS\u001b(B \u001b$BpT\u001b(B \u001b$BpU\u001b(B \u001b$BpV\u001b(B \u001b$BpW\u001b(B \u001b$BpX\u001b(B \u001b$BpY\u001b(B \u001b$BpZ\u001b(B \u001b$Bp[\u001b(B \u001b$Bp\\\u001b(B \u001b$Bp]\u001b(B \u001b$Bp^\u001b(B \u001b$Bp_\u001b(B\n\u001b$Bp`\u001b(B \u001b$Bpa\u001b(B \u001b$Bpb\u001b(B \u001b$Bpc\u001b(B \u001b$Bpd\u001b(B \u001b$Bpe\u001b(B \u001b$Bpf\u001b(B \u001b$Bpg\u001b(B \u001b$Bph\u001b(B \u001b$Bpi\u001b(B \u001b$Bpj\u001b(B \u001b$Bpk\u001b(B \u001b$Bpl\u001b(B \u001b$Bpm\u001b(B \u001b$Bpn\u001b(B \u001b$Bpo\u001b(B\n\u001b$Bpp\u001b(B \u001b$Bpq\u001b(B \u001b$Bpr\u001b(B \u001b$Bps\u001b(B \u001b$Bpt\u001b(B \u001b$Bpu\u001b(B \u001b$Bpv\u001b(B \u001b$Bpw\u001b(B \u001b$Bpx\u001b(B \u001b$Bpy\u001b(B \u001b$Bpz\u001b(B \u001b$Bp{\u001b(B \u001b$Bp|\u001b(B \u001b$Bp}\u001b(B \u001b$Bp~\u001b(B\n  \u001b$Bq!\u001b(B \u001b$Bq\"\u001b(B \u001b$Bq#\u001b(B \u001b$Bq$\u001b(B \u001b$Bq%\u001b(B \u001b$Bq&\u001b(B \u001b$Bq'\u001b(B \u001b$Bq(\u001b(B \u001b$Bq)\u001b(B \u001b$Bq*\u001b(B \u001b$Bq+\u001b(B \u001b$Bq,\u001b(B \u001b$Bq-\u001b(B \u001b$Bq.\u001b(B \u001b$Bq/\u001b(B\n\u001b$Bq0\u001b(B \u001b$Bq1\u001b(B \u001b$Bq2\u001b(B \u001b$Bq3\u001b(B \u001b$Bq4\u001b(B \u001b$Bq5\u001b(B \u001b$Bq6\u001b(B \u001b$Bq7\u001b(B \u001b$Bq8\u001b(B \u001b$Bq9\u001b(B \u001b$Bq:\u001b(B \u001b$Bq;\u001b(B \u001b$Bq<\u001b(B \u001b$Bq=\u001b(B \u001b$Bq>\u001b(B \u001b$Bq?\u001b(B\n\u001b$Bq@\u001b(B \u001b$BqA\u001b(B \u001b$BqB\u001b(B \u001b$BqC\u001b(B \u001b$BqD\u001b(B \u001b$BqE\u001b(B \u001b$BqF\u001b(B \u001b$BqG\u001b(B \u001b$BqH\u001b(B \u001b$BqI\u001b(B \u001b$BqJ\u001b(B \u001b$BqK\u001b(B \u001b$BqL\u001b(B \u001b$BqM\u001b(B \u001b$BqN\u001b(B \u001b$BqO\u001b(B\n\u001b$BqP\u001b(B \u001b$BqQ\u001b(B \u001b$BqR\u001b(B \u001b$BqS\u001b(B \u001b$BqT\u001b(B \u001b$BqU\u001b(B \u001b$BqV\u001b(B \u001b$BqW\u001b(B \u001b$BqX\u001b(B \u001b$BqY\u001b(B \u001b$BqZ\u001b(B \u001b$Bq[\u001b(B \u001b$Bq\\\u001b(B \u001b$Bq]\u001b(B \u001b$Bq^\u001b(B \u001b$Bq_\u001b(B\n\u001b$Bq`\u001b(B \u001b$Bqa\u001b(B \u001b$Bqb\u001b(B \u001b$Bqc\u001b(B \u001b$Bqd\u001b(B \u001b$Bqe\u001b(B \u001b$Bqf\u001b(B \u001b$Bqg\u001b(B \u001b$Bqh\u001b(B \u001b$Bqi\u001b(B \u001b$Bqj\u001b(B \u001b$Bqk\u001b(B \u001b$Bql\u001b(B \u001b$Bqm\u001b(B \u001b$Bqn\u001b(B \u001b$Bqo\u001b(B\n\u001b$Bqp\u001b(B \u001b$Bqq\u001b(B \u001b$Bqr\u001b(B \u001b$Bqs\u001b(B \u001b$Bqt\u001b(B \u001b$Bqu\u001b(B \u001b$Bqv\u001b(B \u001b$Bqw\u001b(B \u001b$Bqx\u001b(B \u001b$Bqy\u001b(B \u001b$Bqz\u001b(B \u001b$Bq{\u001b(B \u001b$Bq|\u001b(B \u001b$Bq}\u001b(B \u001b$Bq~\u001b(B\n  \u001b$Br!\u001b(B \u001b$Br\"\u001b(B \u001b$Br#\u001b(B \u001b$Br$\u001b(B \u001b$Br%\u001b(B \u001b$Br&\u001b(B \u001b$Br'\u001b(B \u001b$Br(\u001b(B \u001b$Br)\u001b(B \u001b$Br*\u001b(B \u001b$Br+\u001b(B \u001b$Br,\u001b(B \u001b$Br-\u001b(B \u001b$Br.\u001b(B \u001b$Br/\u001b(B\n\u001b$Br0\u001b(B \u001b$Br1\u001b(B \u001b$Br2\u001b(B \u001b$Br3\u001b(B \u001b$Br4\u001b(B \u001b$Br5\u001b(B \u001b$Br6\u001b(B \u001b$Br7\u001b(B \u001b$Br8\u001b(B \u001b$Br9\u001b(B \u001b$Br:\u001b(B \u001b$Br;\u001b(B \u001b$Br<\u001b(B \u001b$Br=\u001b(B \u001b$Br>\u001b(B \u001b$Br?\u001b(B\n\u001b$Br@\u001b(B \u001b$BrA\u001b(B \u001b$BrB\u001b(B \u001b$BrC\u001b(B \u001b$BrD\u001b(B \u001b$BrE\u001b(B \u001b$BrF\u001b(B \u001b$BrG\u001b(B \u001b$BrH\u001b(B \u001b$BrI\u001b(B \u001b$BrJ\u001b(B \u001b$BrK\u001b(B \u001b$BrL\u001b(B \u001b$BrM\u001b(B \u001b$BrN\u001b(B \u001b$BrO\u001b(B\n\u001b$BrP\u001b(B \u001b$BrQ\u001b(B \u001b$BrR\u001b(B \u001b$BrS\u001b(B \u001b$BrT\u001b(B \u001b$BrU\u001b(B \u001b$BrV\u001b(B \u001b$BrW\u001b(B \u001b$BrX\u001b(B \u001b$BrY\u001b(B \u001b$BrZ\u001b(B \u001b$Br[\u001b(B \u001b$Br\\\u001b(B \u001b$Br]\u001b(B \u001b$Br^\u001b(B \u001b$Br_\u001b(B\n\u001b$Br`\u001b(B \u001b$Bra\u001b(B \u001b$Brb\u001b(B \u001b$Brc\u001b(B \u001b$Brd\u001b(B \u001b$Bre\u001b(B \u001b$Brf\u001b(B \u001b$Brg\u001b(B \u001b$Brh\u001b(B \u001b$Bri\u001b(B \u001b$Brj\u001b(B \u001b$Brk\u001b(B \u001b$Brl\u001b(B \u001b$Brm\u001b(B \u001b$Brn\u001b(B \u001b$Bro\u001b(B\n\u001b$Brp\u001b(B \u001b$Brq\u001b(B \u001b$Brr\u001b(B \u001b$Brs\u001b(B \u001b$Brt\u001b(B \u001b$Bru\u001b(B \u001b$Brv\u001b(B \u001b$Brw\u001b(B \u001b$Brx\u001b(B \u001b$Bry\u001b(B \u001b$Brz\u001b(B \u001b$Br{\u001b(B \u001b$Br|\u001b(B \u001b$Br}\u001b(B \u001b$Br~\u001b(B\n  \u001b$Bs!\u001b(B \u001b$Bs\"\u001b(B \u001b$Bs#\u001b(B \u001b$Bs$\u001b(B \u001b$Bs%\u001b(B \u001b$Bs&\u001b(B \u001b$Bs'\u001b(B \u001b$Bs(\u001b(B \u001b$Bs)\u001b(B \u001b$Bs*\u001b(B \u001b$Bs+\u001b(B \u001b$Bs,\u001b(B \u001b$Bs-\u001b(B \u001b$Bs.\u001b(B \u001b$Bs/\u001b(B\n\u001b$Bs0\u001b(B \u001b$Bs1\u001b(B \u001b$Bs2\u001b(B \u001b$Bs3\u001b(B \u001b$Bs4\u001b(B \u001b$Bs5\u001b(B \u001b$Bs6\u001b(B \u001b$Bs7\u001b(B \u001b$Bs8\u001b(B \u001b$Bs9\u001b(B \u001b$Bs:\u001b(B \u001b$Bs;\u001b(B \u001b$Bs<\u001b(B \u001b$Bs=\u001b(B \u001b$Bs>\u001b(B \u001b$Bs?\u001b(B\n\u001b$Bs@\u001b(B \u001b$BsA\u001b(B \u001b$BsB\u001b(B \u001b$BsC\u001b(B \u001b$BsD\u001b(B \u001b$BsE\u001b(B \u001b$BsF\u001b(B \u001b$BsG\u001b(B \u001b$BsH\u001b(B \u001b$BsI\u001b(B \u001b$BsJ\u001b(B \u001b$BsK\u001b(B \u001b$BsL\u001b(B \u001b$BsM\u001b(B \u001b$BsN\u001b(B \u001b$BsO\u001b(B\n\u001b$BsP\u001b(B \u001b$BsQ\u001b(B \u001b$BsR\u001b(B \u001b$BsS\u001b(B \u001b$BsT\u001b(B \u001b$BsU\u001b(B \u001b$BsV\u001b(B \u001b$BsW\u001b(B \u001b$BsX\u001b(B \u001b$BsY\u001b(B \u001b$BsZ\u001b(B \u001b$Bs[\u001b(B \u001b$Bs\\\u001b(B \u001b$Bs]\u001b(B \u001b$Bs^\u001b(B \u001b$Bs_\u001b(B\n\u001b$Bs`\u001b(B \u001b$Bsa\u001b(B \u001b$Bsb\u001b(B \u001b$Bsc\u001b(B \u001b$Bsd\u001b(B \u001b$Bse\u001b(B \u001b$Bsf\u001b(B \u001b$Bsg\u001b(B \u001b$Bsh\u001b(B \u001b$Bsi\u001b(B \u001b$Bsj\u001b(B \u001b$Bsk\u001b(B \u001b$Bsl\u001b(B \u001b$Bsm\u001b(B \u001b$Bsn\u001b(B \u001b$Bso\u001b(B\n\u001b$Bsp\u001b(B \u001b$Bsq\u001b(B \u001b$Bsr\u001b(B \u001b$Bss\u001b(B \u001b$Bst\u001b(B \u001b$Bsu\u001b(B \u001b$Bsv\u001b(B \u001b$Bsw\u001b(B \u001b$Bsx\u001b(B \u001b$Bsy\u001b(B \u001b$Bsz\u001b(B \u001b$Bs{\u001b(B \u001b$Bs|\u001b(B \u001b$Bs}\u001b(B \u001b$Bs~\u001b(B\n  \u001b$Bt!\u001b(B \u001b$Bt\"\u001b(B \u001b$Bt#\u001b(B \u001b$Bt$\u001b(B \u001b$Bt%\u001b(B \u001b$Bt&\u001b(B\n  \u001b$Bu!\u001b(B \u001b$Bu\"\u001b(B \u001b$Bu#\u001b(B \u001b$Bu$\u001b(B \u001b$Bu%\u001b(B \u001b$Bu&\u001b(B \u001b$Bu'\u001b(B \u001b$Bu(\u001b(B \u001b$Bu)\u001b(B \u001b$Bu*\u001b(B \u001b$Bu+\u001b(B \u001b$Bu,\u001b(B \u001b$Bu-\u001b(B \u001b$Bu.\u001b(B \u001b$Bu/\u001b(B\n\u001b$Bu0\u001b(B \u001b$Bu1\u001b(B \u001b$Bu2\u001b(B \u001b$Bu3\u001b(B \u001b$Bu4\u001b(B \u001b$Bu5\u001b(B \u001b$Bu6\u001b(B \u001b$Bu7\u001b(B \u001b$Bu8\u001b(B \u001b$Bu9\u001b(B \u001b$Bu:\u001b(B \u001b$Bu;\u001b(B \u001b$Bu<\u001b(B \u001b$Bu=\u001b(B \u001b$Bu>\u001b(B \u001b$Bu?\u001b(B\n\u001b$Bu@\u001b(B \u001b$BuA\u001b(B \u001b$BuB\u001b(B \u001b$BuC\u001b(B \u001b$BuD\u001b(B \u001b$BuE\u001b(B \u001b$BuF\u001b(B \u001b$BuG\u001b(B \u001b$BuH\u001b(B \u001b$BuI\u001b(B \u001b$BuJ\u001b(B \u001b$BuK\u001b(B \u001b$BuL\u001b(B \u001b$BuM\u001b(B \u001b$BuN\u001b(B \u001b$BuO\u001b(B\n\u001b$BuP\u001b(B \u001b$BuQ\u001b(B \u001b$BuR\u001b(B \u001b$BuS\u001b(B \u001b$BuT\u001b(B \u001b$BuU\u001b(B \u001b$BuV\u001b(B \u001b$BuW\u001b(B \u001b$BuX\u001b(B \u001b$BuY\u001b(B \u001b$BuZ\u001b(B \u001b$Bu[\u001b(B \u001b$Bu\\\u001b(B \u001b$Bu]\u001b(B \u001b$Bu^\u001b(B \u001b$Bu_\u001b(B\n\u001b$Bu`\u001b(B \u001b$Bua\u001b(B \u001b$Bub\u001b(B \u001b$Buc\u001b(B \u001b$Bud\u001b(B \u001b$Bue\u001b(B \u001b$Buf\u001b(B \u001b$Bug\u001b(B \u001b$Buh\u001b(B \u001b$Bui\u001b(B \u001b$Buj\u001b(B \u001b$Buk\u001b(B \u001b$Bul\u001b(B \u001b$Bum\u001b(B \u001b$Bun\u001b(B \u001b$Buo\u001b(B\n\u001b$Bup\u001b(B \u001b$Buq\u001b(B \u001b$Bur\u001b(B \u001b$Bus\u001b(B \u001b$But\u001b(B \u001b$Buu\u001b(B \u001b$Buv\u001b(B \u001b$Buw\u001b(B \u001b$Bux\u001b(B \u001b$Buy\u001b(B \u001b$Buz\u001b(B \u001b$Bu{\u001b(B \u001b$Bu|\u001b(B \u001b$Bu}\u001b(B \u001b$Bu~\u001b(B\n  \u001b$Bv!\u001b(B \u001b$Bv\"\u001b(B \u001b$Bv#\u001b(B \u001b$Bv$\u001b(B \u001b$Bv%\u001b(B \u001b$Bv&\u001b(B \u001b$Bv'\u001b(B \u001b$Bv(\u001b(B \u001b$Bv)\u001b(B \u001b$Bv*\u001b(B \u001b$Bv+\u001b(B \u001b$Bv,\u001b(B \u001b$Bv-\u001b(B \u001b$Bv.\u001b(B \u001b$Bv/\u001b(B\n\u001b$Bv0\u001b(B \u001b$Bv1\u001b(B \u001b$Bv2\u001b(B \u001b$Bv3\u001b(B \u001b$Bv4\u001b(B \u001b$Bv5\u001b(B \u001b$Bv6\u001b(B \u001b$Bv7\u001b(B \u001b$Bv8\u001b(B \u001b$Bv9\u001b(B \u001b$Bv:\u001b(B \u001b$Bv;\u001b(B \u001b$Bv<\u001b(B \u001b$Bv=\u001b(B \u001b$Bv>\u001b(B \u001b$Bv?\u001b(B\n\u001b$Bv@\u001b(B \u001b$BvA\u001b(B \u001b$BvB\u001b(B \u001b$BvC\u001b(B \u001b$BvD\u001b(B \u001b$BvE\u001b(B \u001b$BvF\u001b(B \u001b$BvG\u001b(B \u001b$BvH\u001b(B \u001b$BvI\u001b(B \u001b$BvJ\u001b(B \u001b$BvK\u001b(B \u001b$BvL\u001b(B \u001b$BvM\u001b(B \u001b$BvN\u001b(B \u001b$BvO\u001b(B\n\u001b$BvP\u001b(B \u001b$BvQ\u001b(B \u001b$BvR\u001b(B \u001b$BvS\u001b(B \u001b$BvT\u001b(B \u001b$BvU\u001b(B \u001b$BvV\u001b(B \u001b$BvW\u001b(B \u001b$BvX\u001b(B \u001b$BvY\u001b(B \u001b$BvZ\u001b(B \u001b$Bv[\u001b(B \u001b$Bv\\\u001b(B \u001b$Bv]\u001b(B \u001b$Bv^\u001b(B \u001b$Bv_\u001b(B\n\u001b$Bv`\u001b(B \u001b$Bva\u001b(B \u001b$Bvb\u001b(B \u001b$Bvc\u001b(B \u001b$Bvd\u001b(B \u001b$Bve\u001b(B \u001b$Bvf\u001b(B \u001b$Bvg\u001b(B \u001b$Bvh\u001b(B \u001b$Bvi\u001b(B \u001b$Bvj\u001b(B \u001b$Bvk\u001b(B \u001b$Bvl\u001b(B \u001b$Bvm\u001b(B \u001b$Bvn\u001b(B \u001b$Bvo\u001b(B\n\u001b$Bvp\u001b(B \u001b$Bvq\u001b(B \u001b$Bvr\u001b(B \u001b$Bvs\u001b(B \u001b$Bvt\u001b(B \u001b$Bvu\u001b(B \u001b$Bvv\u001b(B \u001b$Bvw\u001b(B \u001b$Bvx\u001b(B \u001b$Bvy\u001b(B \u001b$Bvz\u001b(B \u001b$Bv{\u001b(B \u001b$Bv|\u001b(B \u001b$Bv}\u001b(B \u001b$Bv~\u001b(B\n  \u001b$Bw!\u001b(B \u001b$Bw\"\u001b(B \u001b$Bw#\u001b(B \u001b$Bw$\u001b(B \u001b$Bw%\u001b(B \u001b$Bw&\u001b(B \u001b$Bw'\u001b(B \u001b$Bw(\u001b(B \u001b$Bw)\u001b(B \u001b$Bw*\u001b(B \u001b$Bw+\u001b(B \u001b$Bw,\u001b(B \u001b$Bw-\u001b(B \u001b$Bw.\u001b(B \u001b$Bw/\u001b(B\n\u001b$Bw0\u001b(B \u001b$Bw1\u001b(B \u001b$Bw2\u001b(B \u001b$Bw3\u001b(B \u001b$Bw4\u001b(B \u001b$Bw5\u001b(B \u001b$Bw6\u001b(B \u001b$Bw7\u001b(B \u001b$Bw8\u001b(B \u001b$Bw9\u001b(B \u001b$Bw:\u001b(B \u001b$Bw;\u001b(B \u001b$Bw<\u001b(B \u001b$Bw=\u001b(B \u001b$Bw>\u001b(B \u001b$Bw?\u001b(B\n\u001b$Bw@\u001b(B \u001b$BwA\u001b(B \u001b$BwB\u001b(B \u001b$BwC\u001b(B \u001b$BwD\u001b(B \u001b$BwE\u001b(B \u001b$BwF\u001b(B \u001b$BwG\u001b(B \u001b$BwH\u001b(B \u001b$BwI\u001b(B \u001b$BwJ\u001b(B \u001b$BwK\u001b(B \u001b$BwL\u001b(B \u001b$BwM\u001b(B \u001b$BwN\u001b(B \u001b$BwO\u001b(B\n\u001b$BwP\u001b(B \u001b$BwQ\u001b(B \u001b$BwR\u001b(B \u001b$BwS\u001b(B \u001b$BwT\u001b(B \u001b$BwU\u001b(B \u001b$BwV\u001b(B \u001b$BwW\u001b(B \u001b$BwX\u001b(B \u001b$BwY\u001b(B \u001b$BwZ\u001b(B \u001b$Bw[\u001b(B \u001b$Bw\\\u001b(B \u001b$Bw]\u001b(B \u001b$Bw^\u001b(B \u001b$Bw_\u001b(B\n\u001b$Bw`\u001b(B \u001b$Bwa\u001b(B \u001b$Bwb\u001b(B \u001b$Bwc\u001b(B \u001b$Bwd\u001b(B \u001b$Bwe\u001b(B \u001b$Bwf\u001b(B \u001b$Bwg\u001b(B \u001b$Bwh\u001b(B \u001b$Bwi\u001b(B \u001b$Bwj\u001b(B \u001b$Bwk\u001b(B \u001b$Bwl\u001b(B \u001b$Bwm\u001b(B \u001b$Bwn\u001b(B \u001b$Bwo\u001b(B\n\u001b$Bwp\u001b(B \u001b$Bwq\u001b(B \u001b$Bwr\u001b(B \u001b$Bws\u001b(B \u001b$Bwt\u001b(B \u001b$Bwu\u001b(B \u001b$Bwv\u001b(B \u001b$Bww\u001b(B \u001b$Bwx\u001b(B \u001b$Bwy\u001b(B \u001b$Bwz\u001b(B \u001b$Bw{\u001b(B \u001b$Bw|\u001b(B \u001b$Bw}\u001b(B \u001b$Bw~\u001b(B\n  \u001b$Bx!\u001b(B \u001b$Bx\"\u001b(B \u001b$Bx#\u001b(B \u001b$Bx$\u001b(B \u001b$Bx%\u001b(B \u001b$Bx&\u001b(B \u001b$Bx'\u001b(B \u001b$Bx(\u001b(B \u001b$Bx)\u001b(B \u001b$Bx*\u001b(B \u001b$Bx+\u001b(B \u001b$Bx,\u001b(B \u001b$Bx-\u001b(B \u001b$Bx.\u001b(B \u001b$Bx/\u001b(B\n\u001b$Bx0\u001b(B \u001b$Bx1\u001b(B \u001b$Bx2\u001b(B \u001b$Bx3\u001b(B \u001b$Bx4\u001b(B \u001b$Bx5\u001b(B \u001b$Bx6\u001b(B \u001b$Bx7\u001b(B \u001b$Bx8\u001b(B \u001b$Bx9\u001b(B \u001b$Bx:\u001b(B \u001b$Bx;\u001b(B \u001b$Bx<\u001b(B \u001b$Bx=\u001b(B \u001b$Bx>\u001b(B \u001b$Bx?\u001b(B\n\u001b$Bx@\u001b(B \u001b$BxA\u001b(B \u001b$BxB\u001b(B \u001b$BxC\u001b(B \u001b$BxD\u001b(B \u001b$BxE\u001b(B \u001b$BxF\u001b(B \u001b$BxG\u001b(B \u001b$BxH\u001b(B \u001b$BxI\u001b(B \u001b$BxJ\u001b(B \u001b$BxK\u001b(B \u001b$BxL\u001b(B \u001b$BxM\u001b(B \u001b$BxN\u001b(B \u001b$BxO\u001b(B\n\u001b$BxP\u001b(B \u001b$BxQ\u001b(B \u001b$BxR\u001b(B \u001b$BxS\u001b(B \u001b$BxT\u001b(B \u001b$BxU\u001b(B \u001b$BxV\u001b(B \u001b$BxW\u001b(B \u001b$BxX\u001b(B \u001b$BxY\u001b(B \u001b$BxZ\u001b(B \u001b$Bx[\u001b(B \u001b$Bx\\\u001b(B \u001b$Bx]\u001b(B \u001b$Bx^\u001b(B \u001b$Bx_\u001b(B\n\u001b$Bx`\u001b(B \u001b$Bxa\u001b(B \u001b$Bxb\u001b(B \u001b$Bxc\u001b(B \u001b$Bxd\u001b(B \u001b$Bxe\u001b(B \u001b$Bxf\u001b(B \u001b$Bxg\u001b(B \u001b$Bxh\u001b(B \u001b$Bxi\u001b(B \u001b$Bxj\u001b(B \u001b$Bxk\u001b(B \u001b$Bxl\u001b(B \u001b$Bxm\u001b(B \u001b$Bxn\u001b(B \u001b$Bxo\u001b(B\n\u001b$Bxp\u001b(B \u001b$Bxq\u001b(B \u001b$Bxr\u001b(B \u001b$Bxs\u001b(B \u001b$Bxt\u001b(B \u001b$Bxu\u001b(B \u001b$Bxv\u001b(B \u001b$Bxw\u001b(B \u001b$Bxx\u001b(B \u001b$Bxy\u001b(B \u001b$Bxz\u001b(B \u001b$Bx{\u001b(B \u001b$Bx|\u001b(B \u001b$Bx}\u001b(B \u001b$Bx~\u001b(B\n  \u001b$By!\u001b(B \u001b$By\"\u001b(B \u001b$By#\u001b(B \u001b$By$\u001b(B \u001b$By%\u001b(B \u001b$By&\u001b(B \u001b$By'\u001b(B \u001b$By(\u001b(B \u001b$By)\u001b(B \u001b$By*\u001b(B \u001b$By+\u001b(B \u001b$By,\u001b(B \u001b$By-\u001b(B \u001b$By.\u001b(B \u001b$By/\u001b(B\n\u001b$By0\u001b(B \u001b$By1\u001b(B \u001b$By2\u001b(B \u001b$By3\u001b(B \u001b$By4\u001b(B \u001b$By5\u001b(B \u001b$By6\u001b(B \u001b$By7\u001b(B \u001b$By8\u001b(B \u001b$By9\u001b(B \u001b$By:\u001b(B \u001b$By;\u001b(B \u001b$By<\u001b(B \u001b$By=\u001b(B \u001b$By>\u001b(B \u001b$By?\u001b(B\n\u001b$By@\u001b(B \u001b$ByA\u001b(B \u001b$ByB\u001b(B \u001b$ByC\u001b(B \u001b$ByD\u001b(B \u001b$ByE\u001b(B \u001b$ByF\u001b(B \u001b$ByG\u001b(B \u001b$ByH\u001b(B \u001b$ByI\u001b(B \u001b$ByJ\u001b(B \u001b$ByK\u001b(B \u001b$ByL\u001b(B \u001b$ByM\u001b(B \u001b$ByN\u001b(B \u001b$ByO\u001b(B\n\u001b$ByP\u001b(B \u001b$ByQ\u001b(B \u001b$ByR\u001b(B \u001b$ByS\u001b(B \u001b$ByT\u001b(B \u001b$ByU\u001b(B \u001b$ByV\u001b(B \u001b$ByW\u001b(B \u001b$ByX\u001b(B \u001b$ByY\u001b(B \u001b$ByZ\u001b(B \u001b$By[\u001b(B \u001b$By\\\u001b(B \u001b$By]\u001b(B \u001b$By^\u001b(B \u001b$By_\u001b(B\n\u001b$By`\u001b(B \u001b$Bya\u001b(B \u001b$Byb\u001b(B \u001b$Byc\u001b(B \u001b$Byd\u001b(B \u001b$Bye\u001b(B \u001b$Byf\u001b(B \u001b$Byg\u001b(B \u001b$Byh\u001b(B \u001b$Byi\u001b(B \u001b$Byj\u001b(B \u001b$Byk\u001b(B \u001b$Byl\u001b(B \u001b$Bym\u001b(B \u001b$Byn\u001b(B \u001b$Byo\u001b(B\n\u001b$Byp\u001b(B \u001b$Byq\u001b(B \u001b$Byr\u001b(B \u001b$Bys\u001b(B \u001b$Byt\u001b(B \u001b$Byu\u001b(B \u001b$Byv\u001b(B \u001b$Byw\u001b(B \u001b$Byx\u001b(B \u001b$Byy\u001b(B \u001b$Byz\u001b(B \u001b$By{\u001b(B \u001b$By|\u001b(B \u001b$By}\u001b(B \u001b$By~\u001b(B\n  \u001b$Bz!\u001b(B \u001b$Bz\"\u001b(B \u001b$Bz#\u001b(B \u001b$Bz$\u001b(B \u001b$Bz%\u001b(B \u001b$Bz&\u001b(B \u001b$Bz'\u001b(B \u001b$Bz(\u001b(B \u001b$Bz)\u001b(B \u001b$Bz*\u001b(B \u001b$Bz+\u001b(B \u001b$Bz,\u001b(B \u001b$Bz-\u001b(B \u001b$Bz.\u001b(B \u001b$Bz/\u001b(B\n\u001b$Bz0\u001b(B \u001b$Bz1\u001b(B \u001b$Bz2\u001b(B \u001b$Bz3\u001b(B \u001b$Bz4\u001b(B \u001b$Bz5\u001b(B \u001b$Bz6\u001b(B \u001b$Bz7\u001b(B \u001b$Bz8\u001b(B \u001b$Bz9\u001b(B \u001b$Bz:\u001b(B \u001b$Bz;\u001b(B \u001b$Bz<\u001b(B \u001b$Bz=\u001b(B \u001b$Bz>\u001b(B \u001b$Bz?\u001b(B\n\u001b$Bz@\u001b(B \u001b$BzA\u001b(B \u001b$BzB\u001b(B \u001b$BzC\u001b(B \u001b$BzD\u001b(B \u001b$BzE\u001b(B \u001b$BzF\u001b(B \u001b$BzG\u001b(B \u001b$BzH\u001b(B \u001b$BzI\u001b(B \u001b$BzJ\u001b(B \u001b$BzK\u001b(B \u001b$BzL\u001b(B \u001b$BzM\u001b(B \u001b$BzN\u001b(B \u001b$BzO\u001b(B\n\u001b$BzP\u001b(B \u001b$BzQ\u001b(B \u001b$BzR\u001b(B \u001b$BzS\u001b(B \u001b$BzT\u001b(B \u001b$BzU\u001b(B \u001b$BzV\u001b(B \u001b$BzW\u001b(B \u001b$BzX\u001b(B \u001b$BzY\u001b(B \u001b$BzZ\u001b(B \u001b$Bz[\u001b(B \u001b$Bz\\\u001b(B \u001b$Bz]\u001b(B \u001b$Bz^\u001b(B \u001b$Bz_\u001b(B\n\u001b$Bz`\u001b(B \u001b$Bza\u001b(B \u001b$Bzb\u001b(B \u001b$Bzc\u001b(B \u001b$Bzd\u001b(B \u001b$Bze\u001b(B \u001b$Bzf\u001b(B \u001b$Bzg\u001b(B \u001b$Bzh\u001b(B \u001b$Bzi\u001b(B \u001b$Bzj\u001b(B \u001b$Bzk\u001b(B \u001b$Bzl\u001b(B \u001b$Bzm\u001b(B \u001b$Bzn\u001b(B \u001b$Bzo\u001b(B\n\u001b$Bzp\u001b(B \u001b$Bzq\u001b(B \u001b$Bzr\u001b(B \u001b$Bzs\u001b(B \u001b$Bzt\u001b(B \u001b$Bzu\u001b(B \u001b$Bzv\u001b(B \u001b$Bzw\u001b(B \u001b$Bzx\u001b(B \u001b$Bzy\u001b(B \u001b$Bzz\u001b(B \u001b$Bz{\u001b(B \u001b$Bz|\u001b(B \u001b$Bz}\u001b(B \u001b$Bz~\u001b(B\n  \u001b$B{!\u001b(B \u001b$B{\"\u001b(B \u001b$B{#\u001b(B \u001b$B{$\u001b(B \u001b$B{%\u001b(B \u001b$B{&\u001b(B \u001b$B{'\u001b(B \u001b$B{(\u001b(B \u001b$B{)\u001b(B \u001b$B{*\u001b(B \u001b$B{+\u001b(B \u001b$B{,\u001b(B \u001b$B{-\u001b(B \u001b$B{.\u001b(B \u001b$B{/\u001b(B\n\u001b$B{0\u001b(B \u001b$B{1\u001b(B \u001b$B{2\u001b(B \u001b$B{3\u001b(B \u001b$B{4\u001b(B \u001b$B{5\u001b(B \u001b$B{6\u001b(B \u001b$B{7\u001b(B \u001b$B{8\u001b(B \u001b$B{9\u001b(B \u001b$B{:\u001b(B \u001b$B{;\u001b(B \u001b$B{<\u001b(B \u001b$B{=\u001b(B \u001b$B{>\u001b(B \u001b$B{?\u001b(B\n\u001b$B{@\u001b(B \u001b$B{A\u001b(B \u001b$B{B\u001b(B \u001b$B{C\u001b(B \u001b$B{D\u001b(B \u001b$B{E\u001b(B \u001b$B{F\u001b(B \u001b$B{G\u001b(B \u001b$B{H\u001b(B \u001b$B{I\u001b(B \u001b$B{J\u001b(B \u001b$B{K\u001b(B \u001b$B{L\u001b(B \u001b$B{M\u001b(B \u001b$B{N\u001b(B \u001b$B{O\u001b(B\n\u001b$B{P\u001b(B \u001b$B{Q\u001b(B \u001b$B{R\u001b(B \u001b$B{S\u001b(B \u001b$B{T\u001b(B \u001b$B{U\u001b(B \u001b$B{V\u001b(B \u001b$B{W\u001b(B \u001b$B{X\u001b(B \u001b$B{Y\u001b(B \u001b$B{Z\u001b(B \u001b$B{[\u001b(B \u001b$B{\\\u001b(B \u001b$B{]\u001b(B \u001b$B{^\u001b(B \u001b$B{_\u001b(B\n\u001b$B{`\u001b(B \u001b$B{a\u001b(B \u001b$B{b\u001b(B \u001b$B{c\u001b(B \u001b$B{d\u001b(B \u001b$B{e\u001b(B \u001b$B{f\u001b(B \u001b$B{g\u001b(B \u001b$B{h\u001b(B \u001b$B{i\u001b(B \u001b$B{j\u001b(B \u001b$B{k\u001b(B \u001b$B{l\u001b(B \u001b$B{m\u001b(B \u001b$B{n\u001b(B \u001b$B{o\u001b(B\n\u001b$B{p\u001b(B \u001b$B{q\u001b(B \u001b$B{r\u001b(B \u001b$B{s\u001b(B \u001b$B{t\u001b(B \u001b$B{u\u001b(B \u001b$B{v\u001b(B \u001b$B{w\u001b(B \u001b$B{x\u001b(B \u001b$B{y\u001b(B \u001b$B{z\u001b(B \u001b$B{{\u001b(B \u001b$B{|\u001b(B \u001b$B{}\u001b(B \u001b$B{~\u001b(B\n  \u001b$B|!\u001b(B \u001b$B|\"\u001b(B \u001b$B|#\u001b(B \u001b$B|$\u001b(B \u001b$B|%\u001b(B \u001b$B|&\u001b(B \u001b$B|'\u001b(B \u001b$B|(\u001b(B \u001b$B|)\u001b(B \u001b$B|*\u001b(B \u001b$B|+\u001b(B \u001b$B|,\u001b(B \u001b$B|-\u001b(B \u001b$B|.\u001b(B \u001b$B|/\u001b(B\n\u001b$B|0\u001b(B \u001b$B|1\u001b(B \u001b$B|2\u001b(B \u001b$B|3\u001b(B \u001b$B|4\u001b(B \u001b$B|5\u001b(B \u001b$B|6\u001b(B \u001b$B|7\u001b(B \u001b$B|8\u001b(B \u001b$B|9\u001b(B \u001b$B|:\u001b(B \u001b$B|;\u001b(B \u001b$B|<\u001b(B \u001b$B|=\u001b(B \u001b$B|>\u001b(B \u001b$B|?\u001b(B\n\u001b$B|@\u001b(B \u001b$B|A\u001b(B \u001b$B|B\u001b(B \u001b$B|C\u001b(B \u001b$B|D\u001b(B \u001b$B|E\u001b(B \u001b$B|F\u001b(B \u001b$B|G\u001b(B \u001b$B|H\u001b(B \u001b$B|I\u001b(B \u001b$B|J\u001b(B \u001b$B|K\u001b(B \u001b$B|L\u001b(B \u001b$B|M\u001b(B \u001b$B|N\u001b(B \u001b$B|O\u001b(B\n\u001b$B|P\u001b(B \u001b$B|Q\u001b(B \u001b$B|R\u001b(B \u001b$B|S\u001b(B \u001b$B|T\u001b(B \u001b$B|U\u001b(B \u001b$B|V\u001b(B \u001b$B|W\u001b(B \u001b$B|X\u001b(B \u001b$B|Y\u001b(B \u001b$B|Z\u001b(B \u001b$B|[\u001b(B \u001b$B|\\\u001b(B \u001b$B|]\u001b(B \u001b$B|^\u001b(B \u001b$B|_\u001b(B\n\u001b$B|`\u001b(B \u001b$B|a\u001b(B \u001b$B|b\u001b(B \u001b$B|c\u001b(B \u001b$B|d\u001b(B \u001b$B|e\u001b(B \u001b$B|f\u001b(B \u001b$B|g\u001b(B \u001b$B|h\u001b(B \u001b$B|i\u001b(B \u001b$B|j\u001b(B \u001b$B|k\u001b(B \u001b$B|l\u001b(B \u001b$B|m\u001b(B \u001b$B|n\u001b(B \u001b$B|o\u001b(B\n\u001b$B|p\u001b(B \u001b$B|q\u001b(B \u001b$B|r\u001b(B \u001b$B|s\u001b(B \u001b$B|t\u001b(B \u001b$B|u\u001b(B \u001b$B|v\u001b(B \u001b$B|w\u001b(B \u001b$B|x\u001b(B \u001b$B|y\u001b(B \u001b$B|z\u001b(B \u001b$B|{\u001b(B \u001b$B||\u001b(B \u001b$B|}\u001b(B \u001b$B|~\u001b(B\n  \u001b$B}!\u001b(B \u001b$B}\"\u001b(B \u001b$B}#\u001b(B \u001b$B}$\u001b(B \u001b$B}%\u001b(B \u001b$B}&\u001b(B \u001b$B}'\u001b(B \u001b$B}(\u001b(B \u001b$B})\u001b(B \u001b$B}*\u001b(B \u001b$B}+\u001b(B \u001b$B},\u001b(B \u001b$B}-\u001b(B \u001b$B}.\u001b(B \u001b$B}/\u001b(B\n\u001b$B}0\u001b(B \u001b$B}1\u001b(B \u001b$B}2\u001b(B \u001b$B}3\u001b(B \u001b$B}4\u001b(B \u001b$B}5\u001b(B \u001b$B}6\u001b(B \u001b$B}7\u001b(B \u001b$B}8\u001b(B \u001b$B}9\u001b(B \u001b$B}:\u001b(B \u001b$B};\u001b(B \u001b$B}<\u001b(B \u001b$B}=\u001b(B \u001b$B}>\u001b(B \u001b$B}?\u001b(B\n\u001b$B}@\u001b(B \u001b$B}A\u001b(B \u001b$B}B\u001b(B \u001b$B}C\u001b(B \u001b$B}D\u001b(B \u001b$B}E\u001b(B \u001b$B}F\u001b(B \u001b$B}G\u001b(B \u001b$B}H\u001b(B \u001b$B}I\u001b(B \u001b$B}J\u001b(B \u001b$B}K\u001b(B \u001b$B}L\u001b(B \u001b$B}M\u001b(B \u001b$B}N\u001b(B \u001b$B}O\u001b(B\n\u001b$B}P\u001b(B \u001b$B}Q\u001b(B \u001b$B}R\u001b(B \u001b$B}S\u001b(B \u001b$B}T\u001b(B \u001b$B}U\u001b(B \u001b$B}V\u001b(B \u001b$B}W\u001b(B \u001b$B}X\u001b(B \u001b$B}Y\u001b(B \u001b$B}Z\u001b(B \u001b$B}[\u001b(B \u001b$B}\\\u001b(B \u001b$B}]\u001b(B \u001b$B}^\u001b(B \u001b$B}_\u001b(B\n\u001b$B}`\u001b(B \u001b$B}a\u001b(B \u001b$B}b\u001b(B \u001b$B}c\u001b(B \u001b$B}d\u001b(B \u001b$B}e\u001b(B \u001b$B}f\u001b(B \u001b$B}g\u001b(B \u001b$B}h\u001b(B \u001b$B}i\u001b(B \u001b$B}j\u001b(B \u001b$B}k\u001b(B \u001b$B}l\u001b(B \u001b$B}m\u001b(B \u001b$B}n\u001b(B \u001b$B}o\u001b(B\n\u001b$B}p\u001b(B \u001b$B}q\u001b(B \u001b$B}r\u001b(B \u001b$B}s\u001b(B \u001b$B}t\u001b(B \u001b$B}u\u001b(B \u001b$B}v\u001b(B \u001b$B}w\u001b(B \u001b$B}x\u001b(B \u001b$B}y\u001b(B \u001b$B}z\u001b(B \u001b$B}{\u001b(B \u001b$B}|\u001b(B \u001b$B}}\u001b(B \u001b$B}~\u001b(B\n  \u001b$B~!\u001b(B \u001b$B~\"\u001b(B \u001b$B~#\u001b(B \u001b$B~$\u001b(B \u001b$B~%\u001b(B \u001b$B~&\u001b(B \u001b$B~'\u001b(B \u001b$B~(\u001b(B \u001b$B~)\u001b(B \u001b$B~*\u001b(B \u001b$B~+\u001b(B \u001b$B~,\u001b(B \u001b$B~-\u001b(B \u001b$B~.\u001b(B \u001b$B~/\u001b(B\n\u001b$B~0\u001b(B \u001b$B~1\u001b(B \u001b$B~2\u001b(B \u001b$B~3\u001b(B \u001b$B~4\u001b(B \u001b$B~5\u001b(B \u001b$B~6\u001b(B \u001b$B~7\u001b(B \u001b$B~8\u001b(B \u001b$B~9\u001b(B \u001b$B~:\u001b(B \u001b$B~;\u001b(B \u001b$B~<\u001b(B \u001b$B~=\u001b(B \u001b$B~>\u001b(B \u001b$B~?\u001b(B\n\u001b$B~@\u001b(B \u001b$B~A\u001b(B \u001b$B~B\u001b(B \u001b$B~C\u001b(B \u001b$B~D\u001b(B \u001b$B~E\u001b(B \u001b$B~F\u001b(B \u001b$B~G\u001b(B \u001b$B~H\u001b(B \u001b$B~I\u001b(B \u001b$B~J\u001b(B \u001b$B~K\u001b(B \u001b$B~L\u001b(B \u001b$B~M\u001b(B \u001b$B~N\u001b(B \u001b$B~O\u001b(B\n\u001b$B~P\u001b(B \u001b$B~Q\u001b(B \u001b$B~R\u001b(B \u001b$B~S\u001b(B \u001b$B~T\u001b(B \u001b$B~U\u001b(B \u001b$B~V\u001b(B \u001b$B~W\u001b(B \u001b$B~X\u001b(B \u001b$B~Y\u001b(B \u001b$B~Z\u001b(B \u001b$B~[\u001b(B \u001b$B~\\\u001b(B \u001b$B~]\u001b(B \u001b$B~^\u001b(B \u001b$B~_\u001b(B\n\u001b$B~`\u001b(B \u001b$B~a\u001b(B \u001b$B~b\u001b(B \u001b$B~c\u001b(B \u001b$B~d\u001b(B \u001b$B~e\u001b(B \u001b$B~f\u001b(B \u001b$B~g\u001b(B \u001b$B~h\u001b(B \u001b$B~i\u001b(B \u001b$B~j\u001b(B \u001b$B~k\u001b(B \u001b$B~l\u001b(B \u001b$B~m\u001b(B \u001b$B~n\u001b(B \u001b$B~o\u001b(B\n\u001b$B~p\u001b(B \u001b$B~q\u001b(B \u001b$B~r\u001b(B \u001b$B~s\u001b(B \u001b$B~t\u001b(B \u001b$B~u\u001b(B \u001b$B~v\u001b(B \u001b$B~w\u001b(B \u001b$B~x\u001b(B \u001b$B~y\u001b(B \u001b$B~z\u001b(B \u001b$B~{\u001b(B \u001b$B~|\u001b(B \u001b$B~}\u001b(B \u001b$B~~\u001b(B\n                              \u001b$(D\"/\u001b(B\n\u001b$(D\"0\u001b(B \u001b$(D\"1\u001b(B \u001b$(D\"2\u001b(B \u001b$(D\"3\u001b(B \u001b$(D\"4\u001b(B \u001b$(D\"5\u001b(B \u001b$(D\"6\u001b(B   \u001b$(D\"8\u001b(B \u001b$(D\"9\u001b(B\n    \u001b$(D\"B\u001b(B \u001b$(D\"C\u001b(B \u001b$(D\"D\u001b(B\n                      \u001b$(D\"k\u001b(B \u001b$(D\"l\u001b(B \u001b$(D\"m\u001b(B \u001b$(D\"n\u001b(B \u001b$(D\"o\u001b(B\n\u001b$(D\"p\u001b(B\n  \u001b$(D&a\u001b(B \u001b$(D&b\u001b(B \u001b$(D&c\u001b(B \u001b$(D&d\u001b(B \u001b$(D&e\u001b(B   \u001b$(D&g\u001b(B   \u001b$(D&i\u001b(B \u001b$(D&j\u001b(B   \u001b$(D&l\u001b(B\n  \u001b$(D&q\u001b(B \u001b$(D&r\u001b(B \u001b$(D&s\u001b(B \u001b$(D&t\u001b(B \u001b$(D&u\u001b(B \u001b$(D&v\u001b(B \u001b$(D&w\u001b(B \u001b$(D&x\u001b(B \u001b$(D&y\u001b(B \u001b$(D&z\u001b(B \u001b$(D&{\u001b(B \u001b$(D&|\u001b(B\n    \u001b$(D'B\u001b(B \u001b$(D'C\u001b(B \u001b$(D'D\u001b(B \u001b$(D'E\u001b(B \u001b$(D'F\u001b(B \u001b$(D'G\u001b(B \u001b$(D'H\u001b(B \u001b$(D'I\u001b(B \u001b$(D'J\u001b(B \u001b$(D'K\u001b(B \u001b$(D'L\u001b(B \u001b$(D'M\u001b(B \u001b$(D'N\u001b(B\n    \u001b$(D'r\u001b(B \u001b$(D's\u001b(B \u001b$(D't\u001b(B \u001b$(D'u\u001b(B \u001b$(D'v\u001b(B \u001b$(D'w\u001b(B \u001b$(D'x\u001b(B \u001b$(D'y\u001b(B \u001b$(D'z\u001b(B \u001b$(D'{\u001b(B \u001b$(D'|\u001b(B \u001b$(D'}\u001b(B \u001b$(D'~\u001b(B\n  \u001b$(D)!\u001b(B \u001b$(D)\"\u001b(B   \u001b$(D)$\u001b(B   \u001b$(D)&\u001b(B   \u001b$(D)(\u001b(B \u001b$(D))\u001b(B   \u001b$(D)+\u001b(B \u001b$(D),\u001b(B \u001b$(D)-\u001b(B   \u001b$(D)/\u001b(B\n\u001b$(D)0\u001b(B\n  \u001b$(D)A\u001b(B \u001b$(D)B\u001b(B \u001b$(D)C\u001b(B \u001b$(D)D\u001b(B \u001b$(D)E\u001b(B \u001b$(D)F\u001b(B \u001b$(D)G\u001b(B \u001b$(D)H\u001b(B \u001b$(D)I\u001b(B \u001b$(D)J\u001b(B \u001b$(D)K\u001b(B \u001b$(D)L\u001b(B \u001b$(D)M\u001b(B \u001b$(D)N\u001b(B \u001b$(D)O\u001b(B\n\u001b$(D)P\u001b(B\n  \u001b$(D*!\u001b(B \u001b$(D*\"\u001b(B \u001b$(D*#\u001b(B \u001b$(D*$\u001b(B \u001b$(D*%\u001b(B \u001b$(D*&\u001b(B \u001b$(D*'\u001b(B \u001b$(D*(\u001b(B \u001b$(D*)\u001b(B \u001b$(D**\u001b(B \u001b$(D*+\u001b(B \u001b$(D*,\u001b(B \u001b$(D*-\u001b(B \u001b$(D*.\u001b(B \u001b$(D*/\u001b(B\n\u001b$(D*0\u001b(B \u001b$(D*1\u001b(B \u001b$(D*2\u001b(B \u001b$(D*3\u001b(B \u001b$(D*4\u001b(B \u001b$(D*5\u001b(B \u001b$(D*6\u001b(B \u001b$(D*7\u001b(B \u001b$(D*8\u001b(B   \u001b$(D*:\u001b(B \u001b$(D*;\u001b(B \u001b$(D*<\u001b(B \u001b$(D*=\u001b(B \u001b$(D*>\u001b(B \u001b$(D*?\u001b(B\n\u001b$(D*@\u001b(B \u001b$(D*A\u001b(B \u001b$(D*B\u001b(B \u001b$(D*C\u001b(B \u001b$(D*D\u001b(B \u001b$(D*E\u001b(B \u001b$(D*F\u001b(B \u001b$(D*G\u001b(B \u001b$(D*H\u001b(B \u001b$(D*I\u001b(B \u001b$(D*J\u001b(B \u001b$(D*K\u001b(B \u001b$(D*L\u001b(B \u001b$(D*M\u001b(B \u001b$(D*N\u001b(B \u001b$(D*O\u001b(B\n\u001b$(D*P\u001b(B \u001b$(D*Q\u001b(B \u001b$(D*R\u001b(B \u001b$(D*S\u001b(B \u001b$(D*T\u001b(B \u001b$(D*U\u001b(B \u001b$(D*V\u001b(B \u001b$(D*W\u001b(B \u001b$(D*X\u001b(B \u001b$(D*Y\u001b(B \u001b$(D*Z\u001b(B \u001b$(D*[\u001b(B \u001b$(D*\\\u001b(B \u001b$(D*]\u001b(B \u001b$(D*^\u001b(B \u001b$(D*_\u001b(B\n\u001b$(D*`\u001b(B \u001b$(D*a\u001b(B \u001b$(D*b\u001b(B \u001b$(D*c\u001b(B \u001b$(D*d\u001b(B \u001b$(D*e\u001b(B \u001b$(D*f\u001b(B \u001b$(D*g\u001b(B \u001b$(D*h\u001b(B \u001b$(D*i\u001b(B \u001b$(D*j\u001b(B \u001b$(D*k\u001b(B \u001b$(D*l\u001b(B \u001b$(D*m\u001b(B \u001b$(D*n\u001b(B \u001b$(D*o\u001b(B\n\u001b$(D*p\u001b(B \u001b$(D*q\u001b(B \u001b$(D*r\u001b(B \u001b$(D*s\u001b(B \u001b$(D*t\u001b(B \u001b$(D*u\u001b(B \u001b$(D*v\u001b(B \u001b$(D*w\u001b(B\n  \u001b$(D+!\u001b(B \u001b$(D+\"\u001b(B \u001b$(D+#\u001b(B \u001b$(D+$\u001b(B \u001b$(D+%\u001b(B \u001b$(D+&\u001b(B \u001b$(D+'\u001b(B \u001b$(D+(\u001b(B \u001b$(D+)\u001b(B \u001b$(D+*\u001b(B \u001b$(D++\u001b(B \u001b$(D+,\u001b(B \u001b$(D+-\u001b(B \u001b$(D+.\u001b(B \u001b$(D+/\u001b(B\n\u001b$(D+0\u001b(B \u001b$(D+1\u001b(B \u001b$(D+2\u001b(B \u001b$(D+3\u001b(B \u001b$(D+4\u001b(B \u001b$(D+5\u001b(B \u001b$(D+6\u001b(B \u001b$(D+7\u001b(B \u001b$(D+8\u001b(B \u001b$(D+9\u001b(B \u001b$(D+:\u001b(B \u001b$(D+;\u001b(B   \u001b$(D+=\u001b(B \u001b$(D+>\u001b(B \u001b$(D+?\u001b(B\n\u001b$(D+@\u001b(B \u001b$(D+A\u001b(B \u001b$(D+B\u001b(B \u001b$(D+C\u001b(B   \u001b$(D+E\u001b(B \u001b$(D+F\u001b(B \u001b$(D+G\u001b(B \u001b$(D+H\u001b(B \u001b$(D+I\u001b(B \u001b$(D+J\u001b(B \u001b$(D+K\u001b(B \u001b$(D+L\u001b(B \u001b$(D+M\u001b(B \u001b$(D+N\u001b(B \u001b$(D+O\u001b(B\n\u001b$(D+P\u001b(B \u001b$(D+Q\u001b(B \u001b$(D+R\u001b(B \u001b$(D+S\u001b(B \u001b$(D+T\u001b(B \u001b$(D+U\u001b(B \u001b$(D+V\u001b(B \u001b$(D+W\u001b(B \u001b$(D+X\u001b(B \u001b$(D+Y\u001b(B \u001b$(D+Z\u001b(B \u001b$(D+[\u001b(B \u001b$(D+\\\u001b(B \u001b$(D+]\u001b(B \u001b$(D+^\u001b(B \u001b$(D+_\u001b(B\n\u001b$(D+`\u001b(B \u001b$(D+a\u001b(B \u001b$(D+b\u001b(B \u001b$(D+c\u001b(B \u001b$(D+d\u001b(B \u001b$(D+e\u001b(B \u001b$(D+f\u001b(B \u001b$(D+g\u001b(B \u001b$(D+h\u001b(B \u001b$(D+i\u001b(B \u001b$(D+j\u001b(B \u001b$(D+k\u001b(B \u001b$(D+l\u001b(B \u001b$(D+m\u001b(B \u001b$(D+n\u001b(B \u001b$(D+o\u001b(B\n\u001b$(D+p\u001b(B \u001b$(D+q\u001b(B \u001b$(D+r\u001b(B \u001b$(D+s\u001b(B \u001b$(D+t\u001b(B \u001b$(D+u\u001b(B \u001b$(D+v\u001b(B \u001b$(D+w\u001b(B\n  \u001b$(D0!\u001b(B \u001b$(D0\"\u001b(B \u001b$(D0#\u001b(B \u001b$(D0$\u001b(B \u001b$(D0%\u001b(B \u001b$(D0&\u001b(B \u001b$(D0'\u001b(B \u001b$(D0(\u001b(B \u001b$(D0)\u001b(B \u001b$(D0*\u001b(B \u001b$(D0+\u001b(B \u001b$(D0,\u001b(B \u001b$(D0-\u001b(B \u001b$(D0.\u001b(B \u001b$(D0/\u001b(B\n\u001b$(D00\u001b(B \u001b$(D01\u001b(B \u001b$(D02\u001b(B \u001b$(D03\u001b(B \u001b$(D04\u001b(B \u001b$(D05\u001b(B \u001b$(D06\u001b(B \u001b$(D07\u001b(B \u001b$(D08\u001b(B \u001b$(D09\u001b(B \u001b$(D0:\u001b(B \u001b$(D0;\u001b(B \u001b$(D0<\u001b(B \u001b$(D0=\u001b(B \u001b$(D0>\u001b(B \u001b$(D0?\u001b(B\n\u001b$(D0@\u001b(B \u001b$(D0A\u001b(B \u001b$(D0B\u001b(B \u001b$(D0C\u001b(B \u001b$(D0D\u001b(B \u001b$(D0E\u001b(B \u001b$(D0F\u001b(B \u001b$(D0G\u001b(B \u001b$(D0H\u001b(B \u001b$(D0I\u001b(B \u001b$(D0J\u001b(B \u001b$(D0K\u001b(B \u001b$(D0L\u001b(B \u001b$(D0M\u001b(B \u001b$(D0N\u001b(B \u001b$(D0O\u001b(B\n\u001b$(D0P\u001b(B \u001b$(D0Q\u001b(B \u001b$(D0R\u001b(B \u001b$(D0S\u001b(B \u001b$(D0T\u001b(B \u001b$(D0U\u001b(B \u001b$(D0V\u001b(B \u001b$(D0W\u001b(B \u001b$(D0X\u001b(B \u001b$(D0Y\u001b(B \u001b$(D0Z\u001b(B \u001b$(D0[\u001b(B \u001b$(D0\\\u001b(B \u001b$(D0]\u001b(B \u001b$(D0^\u001b(B \u001b$(D0_\u001b(B\n\u001b$(D0`\u001b(B \u001b$(D0a\u001b(B \u001b$(D0b\u001b(B \u001b$(D0c\u001b(B \u001b$(D0d\u001b(B \u001b$(D0e\u001b(B \u001b$(D0f\u001b(B \u001b$(D0g\u001b(B \u001b$(D0h\u001b(B \u001b$(D0i\u001b(B \u001b$(D0j\u001b(B \u001b$(D0k\u001b(B \u001b$(D0l\u001b(B \u001b$(D0m\u001b(B \u001b$(D0n\u001b(B \u001b$(D0o\u001b(B\n\u001b$(D0p\u001b(B \u001b$(D0q\u001b(B \u001b$(D0r\u001b(B \u001b$(D0s\u001b(B \u001b$(D0t\u001b(B \u001b$(D0u\u001b(B \u001b$(D0v\u001b(B \u001b$(D0w\u001b(B \u001b$(D0x\u001b(B \u001b$(D0y\u001b(B \u001b$(D0z\u001b(B \u001b$(D0{\u001b(B \u001b$(D0|\u001b(B \u001b$(D0}\u001b(B \u001b$(D0~\u001b(B\n  \u001b$(D1!\u001b(B \u001b$(D1\"\u001b(B \u001b$(D1#\u001b(B \u001b$(D1$\u001b(B \u001b$(D1%\u001b(B \u001b$(D1&\u001b(B \u001b$(D1'\u001b(B \u001b$(D1(\u001b(B \u001b$(D1)\u001b(B \u001b$(D1*\u001b(B \u001b$(D1+\u001b(B \u001b$(D1,\u001b(B \u001b$(D1-\u001b(B \u001b$(D1.\u001b(B \u001b$(D1/\u001b(B\n\u001b$(D10\u001b(B \u001b$(D11\u001b(B \u001b$(D12\u001b(B \u001b$(D13\u001b(B \u001b$(D14\u001b(B \u001b$(D15\u001b(B \u001b$(D16\u001b(B \u001b$(D17\u001b(B \u001b$(D18\u001b(B \u001b$(D19\u001b(B \u001b$(D1:\u001b(B \u001b$(D1;\u001b(B \u001b$(D1<\u001b(B \u001b$(D1=\u001b(B \u001b$(D1>\u001b(B \u001b$(D1?\u001b(B\n\u001b$(D1@\u001b(B \u001b$(D1A\u001b(B \u001b$(D1B\u001b(B \u001b$(D1C\u001b(B \u001b$(D1D\u001b(B \u001b$(D1E\u001b(B \u001b$(D1F\u001b(B \u001b$(D1G\u001b(B \u001b$(D1H\u001b(B \u001b$(D1I\u001b(B \u001b$(D1J\u001b(B \u001b$(D1K\u001b(B \u001b$(D1L\u001b(B \u001b$(D1M\u001b(B \u001b$(D1N\u001b(B \u001b$(D1O\u001b(B\n\u001b$(D1P\u001b(B \u001b$(D1Q\u001b(B \u001b$(D1R\u001b(B \u001b$(D1S\u001b(B \u001b$(D1T\u001b(B \u001b$(D1U\u001b(B \u001b$(D1V\u001b(B \u001b$(D1W\u001b(B \u001b$(D1X\u001b(B \u001b$(D1Y\u001b(B \u001b$(D1Z\u001b(B \u001b$(D1[\u001b(B \u001b$(D1\\\u001b(B \u001b$(D1]\u001b(B \u001b$(D1^\u001b(B \u001b$(D1_\u001b(B\n\u001b$(D1`\u001b(B \u001b$(D1a\u001b(B \u001b$(D1b\u001b(B \u001b$(D1c\u001b(B \u001b$(D1d\u001b(B \u001b$(D1e\u001b(B \u001b$(D1f\u001b(B \u001b$(D1g\u001b(B \u001b$(D1h\u001b(B \u001b$(D1i\u001b(B \u001b$(D1j\u001b(B \u001b$(D1k\u001b(B \u001b$(D1l\u001b(B \u001b$(D1m\u001b(B \u001b$(D1n\u001b(B \u001b$(D1o\u001b(B\n\u001b$(D1p\u001b(B \u001b$(D1q\u001b(B \u001b$(D1r\u001b(B \u001b$(D1s\u001b(B \u001b$(D1t\u001b(B \u001b$(D1u\u001b(B \u001b$(D1v\u001b(B \u001b$(D1w\u001b(B \u001b$(D1x\u001b(B \u001b$(D1y\u001b(B \u001b$(D1z\u001b(B \u001b$(D1{\u001b(B \u001b$(D1|\u001b(B \u001b$(D1}\u001b(B \u001b$(D1~\u001b(B\n  \u001b$(D2!\u001b(B \u001b$(D2\"\u001b(B \u001b$(D2#\u001b(B \u001b$(D2$\u001b(B \u001b$(D2%\u001b(B \u001b$(D2&\u001b(B \u001b$(D2'\u001b(B \u001b$(D2(\u001b(B \u001b$(D2)\u001b(B \u001b$(D2*\u001b(B \u001b$(D2+\u001b(B \u001b$(D2,\u001b(B \u001b$(D2-\u001b(B \u001b$(D2.\u001b(B \u001b$(D2/\u001b(B\n\u001b$(D20\u001b(B \u001b$(D21\u001b(B \u001b$(D22\u001b(B \u001b$(D23\u001b(B \u001b$(D24\u001b(B \u001b$(D25\u001b(B \u001b$(D26\u001b(B \u001b$(D27\u001b(B \u001b$(D28\u001b(B \u001b$(D29\u001b(B \u001b$(D2:\u001b(B \u001b$(D2;\u001b(B \u001b$(D2<\u001b(B \u001b$(D2=\u001b(B \u001b$(D2>\u001b(B \u001b$(D2?\u001b(B\n\u001b$(D2@\u001b(B \u001b$(D2A\u001b(B \u001b$(D2B\u001b(B \u001b$(D2C\u001b(B \u001b$(D2D\u001b(B \u001b$(D2E\u001b(B \u001b$(D2F\u001b(B \u001b$(D2G\u001b(B \u001b$(D2H\u001b(B \u001b$(D2I\u001b(B \u001b$(D2J\u001b(B \u001b$(D2K\u001b(B \u001b$(D2L\u001b(B \u001b$(D2M\u001b(B \u001b$(D2N\u001b(B \u001b$(D2O\u001b(B\n\u001b$(D2P\u001b(B \u001b$(D2Q\u001b(B \u001b$(D2R\u001b(B \u001b$(D2S\u001b(B \u001b$(D2T\u001b(B \u001b$(D2U\u001b(B \u001b$(D2V\u001b(B \u001b$(D2W\u001b(B \u001b$(D2X\u001b(B \u001b$(D2Y\u001b(B \u001b$(D2Z\u001b(B \u001b$(D2[\u001b(B \u001b$(D2\\\u001b(B \u001b$(D2]\u001b(B \u001b$(D2^\u001b(B \u001b$(D2_\u001b(B\n\u001b$(D2`\u001b(B \u001b$(D2a\u001b(B \u001b$(D2b\u001b(B \u001b$(D2c\u001b(B \u001b$(D2d\u001b(B \u001b$(D2e\u001b(B \u001b$(D2f\u001b(B \u001b$(D2g\u001b(B \u001b$(D2h\u001b(B \u001b$(D2i\u001b(B \u001b$(D2j\u001b(B \u001b$(D2k\u001b(B \u001b$(D2l\u001b(B \u001b$(D2m\u001b(B \u001b$(D2n\u001b(B \u001b$(D2o\u001b(B\n\u001b$(D2p\u001b(B \u001b$(D2q\u001b(B \u001b$(D2r\u001b(B \u001b$(D2s\u001b(B \u001b$(D2t\u001b(B \u001b$(D2u\u001b(B \u001b$(D2v\u001b(B \u001b$(D2w\u001b(B \u001b$(D2x\u001b(B \u001b$(D2y\u001b(B \u001b$(D2z\u001b(B \u001b$(D2{\u001b(B \u001b$(D2|\u001b(B \u001b$(D2}\u001b(B \u001b$(D2~\u001b(B\n  \u001b$(D3!\u001b(B \u001b$(D3\"\u001b(B \u001b$(D3#\u001b(B \u001b$(D3$\u001b(B \u001b$(D3%\u001b(B \u001b$(D3&\u001b(B \u001b$(D3'\u001b(B \u001b$(D3(\u001b(B \u001b$(D3)\u001b(B \u001b$(D3*\u001b(B \u001b$(D3+\u001b(B \u001b$(D3,\u001b(B \u001b$(D3-\u001b(B \u001b$(D3.\u001b(B \u001b$(D3/\u001b(B\n\u001b$(D30\u001b(B \u001b$(D31\u001b(B \u001b$(D32\u001b(B \u001b$(D33\u001b(B \u001b$(D34\u001b(B \u001b$(D35\u001b(B \u001b$(D36\u001b(B \u001b$(D37\u001b(B \u001b$(D38\u001b(B \u001b$(D39\u001b(B \u001b$(D3:\u001b(B \u001b$(D3;\u001b(B \u001b$(D3<\u001b(B \u001b$(D3=\u001b(B \u001b$(D3>\u001b(B \u001b$(D3?\u001b(B\n\u001b$(D3@\u001b(B \u001b$(D3A\u001b(B \u001b$(D3B\u001b(B \u001b$(D3C\u001b(B \u001b$(D3D\u001b(B \u001b$(D3E\u001b(B \u001b$(D3F\u001b(B \u001b$(D3G\u001b(B \u001b$(D3H\u001b(B \u001b$(D3I\u001b(B \u001b$(D3J\u001b(B \u001b$(D3K\u001b(B \u001b$(D3L\u001b(B \u001b$(D3M\u001b(B \u001b$(D3N\u001b(B \u001b$(D3O\u001b(B\n\u001b$(D3P\u001b(B \u001b$(D3Q\u001b(B \u001b$(D3R\u001b(B \u001b$(D3S\u001b(B \u001b$(D3T\u001b(B \u001b$(D3U\u001b(B \u001b$(D3V\u001b(B \u001b$(D3W\u001b(B \u001b$(D3X\u001b(B \u001b$(D3Y\u001b(B \u001b$(D3Z\u001b(B \u001b$(D3[\u001b(B \u001b$(D3\\\u001b(B \u001b$(D3]\u001b(B \u001b$(D3^\u001b(B \u001b$(D3_\u001b(B\n\u001b$(D3`\u001b(B \u001b$(D3a\u001b(B \u001b$(D3b\u001b(B \u001b$(D3c\u001b(B \u001b$(D3d\u001b(B \u001b$(D3e\u001b(B \u001b$(D3f\u001b(B \u001b$(D3g\u001b(B \u001b$(D3h\u001b(B \u001b$(D3i\u001b(B \u001b$(D3j\u001b(B \u001b$(D3k\u001b(B \u001b$(D3l\u001b(B \u001b$(D3m\u001b(B \u001b$(D3n\u001b(B \u001b$(D3o\u001b(B\n\u001b$(D3p\u001b(B \u001b$(D3q\u001b(B \u001b$(D3r\u001b(B \u001b$(D3s\u001b(B \u001b$(D3t\u001b(B \u001b$(D3u\u001b(B \u001b$(D3v\u001b(B \u001b$(D3w\u001b(B \u001b$(D3x\u001b(B \u001b$(D3y\u001b(B \u001b$(D3z\u001b(B \u001b$(D3{\u001b(B \u001b$(D3|\u001b(B \u001b$(D3}\u001b(B \u001b$(D3~\u001b(B\n  \u001b$(D4!\u001b(B \u001b$(D4\"\u001b(B \u001b$(D4#\u001b(B \u001b$(D4$\u001b(B \u001b$(D4%\u001b(B \u001b$(D4&\u001b(B \u001b$(D4'\u001b(B \u001b$(D4(\u001b(B \u001b$(D4)\u001b(B \u001b$(D4*\u001b(B \u001b$(D4+\u001b(B \u001b$(D4,\u001b(B \u001b$(D4-\u001b(B \u001b$(D4.\u001b(B \u001b$(D4/\u001b(B\n\u001b$(D40\u001b(B \u001b$(D41\u001b(B \u001b$(D42\u001b(B \u001b$(D43\u001b(B \u001b$(D44\u001b(B \u001b$(D45\u001b(B \u001b$(D46\u001b(B \u001b$(D47\u001b(B \u001b$(D48\u001b(B \u001b$(D49\u001b(B \u001b$(D4:\u001b(B \u001b$(D4;\u001b(B \u001b$(D4<\u001b(B \u001b$(D4=\u001b(B \u001b$(D4>\u001b(B \u001b$(D4?\u001b(B\n\u001b$(D4@\u001b(B \u001b$(D4A\u001b(B \u001b$(D4B\u001b(B \u001b$(D4C\u001b(B \u001b$(D4D\u001b(B \u001b$(D4E\u001b(B \u001b$(D4F\u001b(B \u001b$(D4G\u001b(B \u001b$(D4H\u001b(B \u001b$(D4I\u001b(B \u001b$(D4J\u001b(B \u001b$(D4K\u001b(B \u001b$(D4L\u001b(B \u001b$(D4M\u001b(B \u001b$(D4N\u001b(B \u001b$(D4O\u001b(B\n\u001b$(D4P\u001b(B \u001b$(D4Q\u001b(B \u001b$(D4R\u001b(B \u001b$(D4S\u001b(B \u001b$(D4T\u001b(B \u001b$(D4U\u001b(B \u001b$(D4V\u001b(B \u001b$(D4W\u001b(B \u001b$(D4X\u001b(B \u001b$(D4Y\u001b(B \u001b$(D4Z\u001b(B \u001b$(D4[\u001b(B \u001b$(D4\\\u001b(B \u001b$(D4]\u001b(B \u001b$(D4^\u001b(B \u001b$(D4_\u001b(B\n\u001b$(D4`\u001b(B \u001b$(D4a\u001b(B \u001b$(D4b\u001b(B \u001b$(D4c\u001b(B \u001b$(D4d\u001b(B \u001b$(D4e\u001b(B \u001b$(D4f\u001b(B \u001b$(D4g\u001b(B \u001b$(D4h\u001b(B \u001b$(D4i\u001b(B \u001b$(D4j\u001b(B \u001b$(D4k\u001b(B \u001b$(D4l\u001b(B \u001b$(D4m\u001b(B \u001b$(D4n\u001b(B \u001b$(D4o\u001b(B\n\u001b$(D4p\u001b(B \u001b$(D4q\u001b(B \u001b$(D4r\u001b(B \u001b$(D4s\u001b(B \u001b$(D4t\u001b(B \u001b$(D4u\u001b(B \u001b$(D4v\u001b(B \u001b$(D4w\u001b(B \u001b$(D4x\u001b(B \u001b$(D4y\u001b(B \u001b$(D4z\u001b(B \u001b$(D4{\u001b(B \u001b$(D4|\u001b(B \u001b$(D4}\u001b(B \u001b$(D4~\u001b(B\n  \u001b$(D5!\u001b(B \u001b$(D5\"\u001b(B \u001b$(D5#\u001b(B \u001b$(D5$\u001b(B \u001b$(D5%\u001b(B \u001b$(D5&\u001b(B \u001b$(D5'\u001b(B \u001b$(D5(\u001b(B \u001b$(D5)\u001b(B \u001b$(D5*\u001b(B \u001b$(D5+\u001b(B \u001b$(D5,\u001b(B \u001b$(D5-\u001b(B \u001b$(D5.\u001b(B \u001b$(D5/\u001b(B\n\u001b$(D50\u001b(B \u001b$(D51\u001b(B \u001b$(D52\u001b(B \u001b$(D53\u001b(B \u001b$(D54\u001b(B \u001b$(D55\u001b(B \u001b$(D56\u001b(B \u001b$(D57\u001b(B \u001b$(D58\u001b(B \u001b$(D59\u001b(B \u001b$(D5:\u001b(B \u001b$(D5;\u001b(B \u001b$(D5<\u001b(B \u001b$(D5=\u001b(B \u001b$(D5>\u001b(B \u001b$(D5?\u001b(B\n\u001b$(D5@\u001b(B \u001b$(D5A\u001b(B \u001b$(D5B\u001b(B \u001b$(D5C\u001b(B \u001b$(D5D\u001b(B \u001b$(D5E\u001b(B \u001b$(D5F\u001b(B \u001b$(D5G\u001b(B \u001b$(D5H\u001b(B \u001b$(D5I\u001b(B \u001b$(D5J\u001b(B \u001b$(D5K\u001b(B \u001b$(D5L\u001b(B \u001b$(D5M\u001b(B \u001b$(D5N\u001b(B \u001b$(D5O\u001b(B\n\u001b$(D5P\u001b(B \u001b$(D5Q\u001b(B \u001b$(D5R\u001b(B \u001b$(D5S\u001b(B \u001b$(D5T\u001b(B \u001b$(D5U\u001b(B \u001b$(D5V\u001b(B \u001b$(D5W\u001b(B \u001b$(D5X\u001b(B \u001b$(D5Y\u001b(B \u001b$(D5Z\u001b(B \u001b$(D5[\u001b(B \u001b$(D5\\\u001b(B \u001b$(D5]\u001b(B \u001b$(D5^\u001b(B \u001b$(D5_\u001b(B\n\u001b$(D5`\u001b(B \u001b$(D5a\u001b(B \u001b$(D5b\u001b(B \u001b$(D5c\u001b(B \u001b$(D5d\u001b(B \u001b$(D5e\u001b(B \u001b$(D5f\u001b(B \u001b$(D5g\u001b(B \u001b$(D5h\u001b(B \u001b$(D5i\u001b(B \u001b$(D5j\u001b(B \u001b$(D5k\u001b(B \u001b$(D5l\u001b(B \u001b$(D5m\u001b(B \u001b$(D5n\u001b(B \u001b$(D5o\u001b(B\n\u001b$(D5p\u001b(B \u001b$(D5q\u001b(B \u001b$(D5r\u001b(B \u001b$(D5s\u001b(B \u001b$(D5t\u001b(B \u001b$(D5u\u001b(B \u001b$(D5v\u001b(B \u001b$(D5w\u001b(B \u001b$(D5x\u001b(B \u001b$(D5y\u001b(B \u001b$(D5z\u001b(B \u001b$(D5{\u001b(B \u001b$(D5|\u001b(B \u001b$(D5}\u001b(B \u001b$(D5~\u001b(B\n  \u001b$(D6!\u001b(B \u001b$(D6\"\u001b(B \u001b$(D6#\u001b(B \u001b$(D6$\u001b(B \u001b$(D6%\u001b(B \u001b$(D6&\u001b(B \u001b$(D6'\u001b(B \u001b$(D6(\u001b(B \u001b$(D6)\u001b(B \u001b$(D6*\u001b(B \u001b$(D6+\u001b(B \u001b$(D6,\u001b(B \u001b$(D6-\u001b(B \u001b$(D6.\u001b(B \u001b$(D6/\u001b(B\n\u001b$(D60\u001b(B \u001b$(D61\u001b(B \u001b$(D62\u001b(B \u001b$(D63\u001b(B \u001b$(D64\u001b(B \u001b$(D65\u001b(B \u001b$(D66\u001b(B \u001b$(D67\u001b(B \u001b$(D68\u001b(B \u001b$(D69\u001b(B \u001b$(D6:\u001b(B \u001b$(D6;\u001b(B \u001b$(D6<\u001b(B \u001b$(D6=\u001b(B \u001b$(D6>\u001b(B \u001b$(D6?\u001b(B\n\u001b$(D6@\u001b(B \u001b$(D6A\u001b(B \u001b$(D6B\u001b(B \u001b$(D6C\u001b(B \u001b$(D6D\u001b(B \u001b$(D6E\u001b(B \u001b$(D6F\u001b(B \u001b$(D6G\u001b(B \u001b$(D6H\u001b(B \u001b$(D6I\u001b(B \u001b$(D6J\u001b(B \u001b$(D6K\u001b(B \u001b$(D6L\u001b(B \u001b$(D6M\u001b(B \u001b$(D6N\u001b(B \u001b$(D6O\u001b(B\n\u001b$(D6P\u001b(B \u001b$(D6Q\u001b(B \u001b$(D6R\u001b(B \u001b$(D6S\u001b(B \u001b$(D6T\u001b(B \u001b$(D6U\u001b(B \u001b$(D6V\u001b(B \u001b$(D6W\u001b(B \u001b$(D6X\u001b(B \u001b$(D6Y\u001b(B \u001b$(D6Z\u001b(B \u001b$(D6[\u001b(B \u001b$(D6\\\u001b(B \u001b$(D6]\u001b(B \u001b$(D6^\u001b(B \u001b$(D6_\u001b(B\n\u001b$(D6`\u001b(B \u001b$(D6a\u001b(B \u001b$(D6b\u001b(B \u001b$(D6c\u001b(B \u001b$(D6d\u001b(B \u001b$(D6e\u001b(B \u001b$(D6f\u001b(B \u001b$(D6g\u001b(B \u001b$(D6h\u001b(B \u001b$(D6i\u001b(B \u001b$(D6j\u001b(B \u001b$(D6k\u001b(B \u001b$(D6l\u001b(B \u001b$(D6m\u001b(B \u001b$(D6n\u001b(B \u001b$(D6o\u001b(B\n\u001b$(D6p\u001b(B \u001b$(D6q\u001b(B \u001b$(D6r\u001b(B \u001b$(D6s\u001b(B \u001b$(D6t\u001b(B \u001b$(D6u\u001b(B \u001b$(D6v\u001b(B \u001b$(D6w\u001b(B \u001b$(D6x\u001b(B \u001b$(D6y\u001b(B \u001b$(D6z\u001b(B \u001b$(D6{\u001b(B \u001b$(D6|\u001b(B \u001b$(D6}\u001b(B \u001b$(D6~\u001b(B\n  \u001b$(D7!\u001b(B \u001b$(D7\"\u001b(B \u001b$(D7#\u001b(B \u001b$(D7$\u001b(B \u001b$(D7%\u001b(B \u001b$(D7&\u001b(B \u001b$(D7'\u001b(B \u001b$(D7(\u001b(B \u001b$(D7)\u001b(B \u001b$(D7*\u001b(B \u001b$(D7+\u001b(B \u001b$(D7,\u001b(B \u001b$(D7-\u001b(B \u001b$(D7.\u001b(B \u001b$(D7/\u001b(B\n\u001b$(D70\u001b(B \u001b$(D71\u001b(B \u001b$(D72\u001b(B \u001b$(D73\u001b(B \u001b$(D74\u001b(B \u001b$(D75\u001b(B \u001b$(D76\u001b(B \u001b$(D77\u001b(B \u001b$(D78\u001b(B \u001b$(D79\u001b(B \u001b$(D7:\u001b(B \u001b$(D7;\u001b(B \u001b$(D7<\u001b(B \u001b$(D7=\u001b(B \u001b$(D7>\u001b(B \u001b$(D7?\u001b(B\n\u001b$(D7@\u001b(B \u001b$(D7A\u001b(B \u001b$(D7B\u001b(B \u001b$(D7C\u001b(B \u001b$(D7D\u001b(B \u001b$(D7E\u001b(B \u001b$(D7F\u001b(B \u001b$(D7G\u001b(B \u001b$(D7H\u001b(B \u001b$(D7I\u001b(B \u001b$(D7J\u001b(B \u001b$(D7K\u001b(B \u001b$(D7L\u001b(B \u001b$(D7M\u001b(B \u001b$(D7N\u001b(B \u001b$(D7O\u001b(B\n\u001b$(D7P\u001b(B \u001b$(D7Q\u001b(B \u001b$(D7R\u001b(B \u001b$(D7S\u001b(B \u001b$(D7T\u001b(B \u001b$(D7U\u001b(B \u001b$(D7V\u001b(B \u001b$(D7W\u001b(B \u001b$(D7X\u001b(B \u001b$(D7Y\u001b(B \u001b$(D7Z\u001b(B \u001b$(D7[\u001b(B \u001b$(D7\\\u001b(B \u001b$(D7]\u001b(B \u001b$(D7^\u001b(B \u001b$(D7_\u001b(B\n\u001b$(D7`\u001b(B \u001b$(D7a\u001b(B \u001b$(D7b\u001b(B \u001b$(D7c\u001b(B \u001b$(D7d\u001b(B \u001b$(D7e\u001b(B \u001b$(D7f\u001b(B \u001b$(D7g\u001b(B \u001b$(D7h\u001b(B \u001b$(D7i\u001b(B \u001b$(D7j\u001b(B \u001b$(D7k\u001b(B \u001b$(D7l\u001b(B \u001b$(D7m\u001b(B \u001b$(D7n\u001b(B \u001b$(D7o\u001b(B\n\u001b$(D7p\u001b(B \u001b$(D7q\u001b(B \u001b$(D7r\u001b(B \u001b$(D7s\u001b(B \u001b$(D7t\u001b(B \u001b$(D7u\u001b(B \u001b$(D7v\u001b(B \u001b$(D7w\u001b(B \u001b$(D7x\u001b(B \u001b$(D7y\u001b(B \u001b$(D7z\u001b(B \u001b$(D7{\u001b(B \u001b$(D7|\u001b(B \u001b$(D7}\u001b(B \u001b$(D7~\u001b(B\n  \u001b$(D8!\u001b(B \u001b$(D8\"\u001b(B \u001b$(D8#\u001b(B \u001b$(D8$\u001b(B \u001b$(D8%\u001b(B \u001b$(D8&\u001b(B \u001b$(D8'\u001b(B \u001b$(D8(\u001b(B \u001b$(D8)\u001b(B \u001b$(D8*\u001b(B \u001b$(D8+\u001b(B \u001b$(D8,\u001b(B \u001b$(D8-\u001b(B \u001b$(D8.\u001b(B \u001b$(D8/\u001b(B\n\u001b$(D80\u001b(B \u001b$(D81\u001b(B \u001b$(D82\u001b(B \u001b$(D83\u001b(B \u001b$(D84\u001b(B \u001b$(D85\u001b(B \u001b$(D86\u001b(B \u001b$(D87\u001b(B \u001b$(D88\u001b(B \u001b$(D89\u001b(B \u001b$(D8:\u001b(B \u001b$(D8;\u001b(B \u001b$(D8<\u001b(B \u001b$(D8=\u001b(B \u001b$(D8>\u001b(B \u001b$(D8?\u001b(B\n\u001b$(D8@\u001b(B \u001b$(D8A\u001b(B \u001b$(D8B\u001b(B \u001b$(D8C\u001b(B \u001b$(D8D\u001b(B \u001b$(D8E\u001b(B \u001b$(D8F\u001b(B \u001b$(D8G\u001b(B \u001b$(D8H\u001b(B \u001b$(D8I\u001b(B \u001b$(D8J\u001b(B \u001b$(D8K\u001b(B \u001b$(D8L\u001b(B \u001b$(D8M\u001b(B \u001b$(D8N\u001b(B \u001b$(D8O\u001b(B\n\u001b$(D8P\u001b(B \u001b$(D8Q\u001b(B \u001b$(D8R\u001b(B \u001b$(D8S\u001b(B \u001b$(D8T\u001b(B \u001b$(D8U\u001b(B \u001b$(D8V\u001b(B \u001b$(D8W\u001b(B \u001b$(D8X\u001b(B \u001b$(D8Y\u001b(B \u001b$(D8Z\u001b(B \u001b$(D8[\u001b(B \u001b$(D8\\\u001b(B \u001b$(D8]\u001b(B \u001b$(D8^\u001b(B \u001b$(D8_\u001b(B\n\u001b$(D8`\u001b(B \u001b$(D8a\u001b(B \u001b$(D8b\u001b(B \u001b$(D8c\u001b(B \u001b$(D8d\u001b(B \u001b$(D8e\u001b(B \u001b$(D8f\u001b(B \u001b$(D8g\u001b(B \u001b$(D8h\u001b(B \u001b$(D8i\u001b(B \u001b$(D8j\u001b(B \u001b$(D8k\u001b(B \u001b$(D8l\u001b(B \u001b$(D8m\u001b(B \u001b$(D8n\u001b(B \u001b$(D8o\u001b(B\n\u001b$(D8p\u001b(B \u001b$(D8q\u001b(B \u001b$(D8r\u001b(B \u001b$(D8s\u001b(B \u001b$(D8t\u001b(B \u001b$(D8u\u001b(B \u001b$(D8v\u001b(B \u001b$(D8w\u001b(B \u001b$(D8x\u001b(B \u001b$(D8y\u001b(B \u001b$(D8z\u001b(B \u001b$(D8{\u001b(B \u001b$(D8|\u001b(B \u001b$(D8}\u001b(B \u001b$(D8~\u001b(B\n  \u001b$(D9!\u001b(B \u001b$(D9\"\u001b(B \u001b$(D9#\u001b(B \u001b$(D9$\u001b(B \u001b$(D9%\u001b(B \u001b$(D9&\u001b(B \u001b$(D9'\u001b(B \u001b$(D9(\u001b(B \u001b$(D9)\u001b(B \u001b$(D9*\u001b(B \u001b$(D9+\u001b(B \u001b$(D9,\u001b(B \u001b$(D9-\u001b(B \u001b$(D9.\u001b(B \u001b$(D9/\u001b(B\n\u001b$(D90\u001b(B \u001b$(D91\u001b(B \u001b$(D92\u001b(B \u001b$(D93\u001b(B \u001b$(D94\u001b(B \u001b$(D95\u001b(B \u001b$(D96\u001b(B \u001b$(D97\u001b(B \u001b$(D98\u001b(B \u001b$(D99\u001b(B \u001b$(D9:\u001b(B \u001b$(D9;\u001b(B \u001b$(D9<\u001b(B \u001b$(D9=\u001b(B \u001b$(D9>\u001b(B \u001b$(D9?\u001b(B\n\u001b$(D9@\u001b(B \u001b$(D9A\u001b(B \u001b$(D9B\u001b(B \u001b$(D9C\u001b(B \u001b$(D9D\u001b(B \u001b$(D9E\u001b(B \u001b$(D9F\u001b(B \u001b$(D9G\u001b(B \u001b$(D9H\u001b(B \u001b$(D9I\u001b(B \u001b$(D9J\u001b(B \u001b$(D9K\u001b(B \u001b$(D9L\u001b(B \u001b$(D9M\u001b(B \u001b$(D9N\u001b(B \u001b$(D9O\u001b(B\n\u001b$(D9P\u001b(B \u001b$(D9Q\u001b(B \u001b$(D9R\u001b(B \u001b$(D9S\u001b(B \u001b$(D9T\u001b(B \u001b$(D9U\u001b(B \u001b$(D9V\u001b(B \u001b$(D9W\u001b(B \u001b$(D9X\u001b(B \u001b$(D9Y\u001b(B \u001b$(D9Z\u001b(B \u001b$(D9[\u001b(B \u001b$(D9\\\u001b(B \u001b$(D9]\u001b(B \u001b$(D9^\u001b(B \u001b$(D9_\u001b(B\n\u001b$(D9`\u001b(B \u001b$(D9a\u001b(B \u001b$(D9b\u001b(B \u001b$(D9c\u001b(B \u001b$(D9d\u001b(B \u001b$(D9e\u001b(B \u001b$(D9f\u001b(B \u001b$(D9g\u001b(B \u001b$(D9h\u001b(B \u001b$(D9i\u001b(B \u001b$(D9j\u001b(B \u001b$(D9k\u001b(B \u001b$(D9l\u001b(B \u001b$(D9m\u001b(B \u001b$(D9n\u001b(B \u001b$(D9o\u001b(B\n\u001b$(D9p\u001b(B \u001b$(D9q\u001b(B \u001b$(D9r\u001b(B \u001b$(D9s\u001b(B \u001b$(D9t\u001b(B \u001b$(D9u\u001b(B \u001b$(D9v\u001b(B \u001b$(D9w\u001b(B \u001b$(D9x\u001b(B \u001b$(D9y\u001b(B \u001b$(D9z\u001b(B \u001b$(D9{\u001b(B \u001b$(D9|\u001b(B \u001b$(D9}\u001b(B \u001b$(D9~\u001b(B\n  \u001b$(D:!\u001b(B \u001b$(D:\"\u001b(B \u001b$(D:#\u001b(B \u001b$(D:$\u001b(B \u001b$(D:%\u001b(B \u001b$(D:&\u001b(B \u001b$(D:'\u001b(B \u001b$(D:(\u001b(B \u001b$(D:)\u001b(B \u001b$(D:*\u001b(B \u001b$(D:+\u001b(B \u001b$(D:,\u001b(B \u001b$(D:-\u001b(B \u001b$(D:.\u001b(B \u001b$(D:/\u001b(B\n\u001b$(D:0\u001b(B \u001b$(D:1\u001b(B \u001b$(D:2\u001b(B \u001b$(D:3\u001b(B \u001b$(D:4\u001b(B \u001b$(D:5\u001b(B \u001b$(D:6\u001b(B \u001b$(D:7\u001b(B \u001b$(D:8\u001b(B \u001b$(D:9\u001b(B \u001b$(D::\u001b(B \u001b$(D:;\u001b(B \u001b$(D:<\u001b(B \u001b$(D:=\u001b(B \u001b$(D:>\u001b(B \u001b$(D:?\u001b(B\n\u001b$(D:@\u001b(B \u001b$(D:A\u001b(B \u001b$(D:B\u001b(B \u001b$(D:C\u001b(B \u001b$(D:D\u001b(B \u001b$(D:E\u001b(B \u001b$(D:F\u001b(B \u001b$(D:G\u001b(B \u001b$(D:H\u001b(B \u001b$(D:I\u001b(B \u001b$(D:J\u001b(B \u001b$(D:K\u001b(B \u001b$(D:L\u001b(B \u001b$(D:M\u001b(B \u001b$(D:N\u001b(B \u001b$(D:O\u001b(B\n\u001b$(D:P\u001b(B \u001b$(D:Q\u001b(B \u001b$(D:R\u001b(B \u001b$(D:S\u001b(B \u001b$(D:T\u001b(B \u001b$(D:U\u001b(B \u001b$(D:V\u001b(B \u001b$(D:W\u001b(B \u001b$(D:X\u001b(B \u001b$(D:Y\u001b(B \u001b$(D:Z\u001b(B \u001b$(D:[\u001b(B \u001b$(D:\\\u001b(B \u001b$(D:]\u001b(B \u001b$(D:^\u001b(B \u001b$(D:_\u001b(B\n\u001b$(D:`\u001b(B \u001b$(D:a\u001b(B \u001b$(D:b\u001b(B \u001b$(D:c\u001b(B \u001b$(D:d\u001b(B \u001b$(D:e\u001b(B \u001b$(D:f\u001b(B \u001b$(D:g\u001b(B \u001b$(D:h\u001b(B \u001b$(D:i\u001b(B \u001b$(D:j\u001b(B \u001b$(D:k\u001b(B \u001b$(D:l\u001b(B \u001b$(D:m\u001b(B \u001b$(D:n\u001b(B \u001b$(D:o\u001b(B\n\u001b$(D:p\u001b(B \u001b$(D:q\u001b(B \u001b$(D:r\u001b(B \u001b$(D:s\u001b(B \u001b$(D:t\u001b(B \u001b$(D:u\u001b(B \u001b$(D:v\u001b(B \u001b$(D:w\u001b(B \u001b$(D:x\u001b(B \u001b$(D:y\u001b(B \u001b$(D:z\u001b(B \u001b$(D:{\u001b(B \u001b$(D:|\u001b(B \u001b$(D:}\u001b(B \u001b$(D:~\u001b(B\n  \u001b$(D;!\u001b(B \u001b$(D;\"\u001b(B \u001b$(D;#\u001b(B \u001b$(D;$\u001b(B \u001b$(D;%\u001b(B \u001b$(D;&\u001b(B \u001b$(D;'\u001b(B \u001b$(D;(\u001b(B \u001b$(D;)\u001b(B \u001b$(D;*\u001b(B \u001b$(D;+\u001b(B \u001b$(D;,\u001b(B \u001b$(D;-\u001b(B \u001b$(D;.\u001b(B \u001b$(D;/\u001b(B\n\u001b$(D;0\u001b(B \u001b$(D;1\u001b(B \u001b$(D;2\u001b(B \u001b$(D;3\u001b(B \u001b$(D;4\u001b(B \u001b$(D;5\u001b(B \u001b$(D;6\u001b(B \u001b$(D;7\u001b(B \u001b$(D;8\u001b(B \u001b$(D;9\u001b(B \u001b$(D;:\u001b(B \u001b$(D;;\u001b(B \u001b$(D;<\u001b(B \u001b$(D;=\u001b(B \u001b$(D;>\u001b(B \u001b$(D;?\u001b(B\n\u001b$(D;@\u001b(B \u001b$(D;A\u001b(B \u001b$(D;B\u001b(B \u001b$(D;C\u001b(B \u001b$(D;D\u001b(B \u001b$(D;E\u001b(B \u001b$(D;F\u001b(B \u001b$(D;G\u001b(B \u001b$(D;H\u001b(B \u001b$(D;I\u001b(B \u001b$(D;J\u001b(B \u001b$(D;K\u001b(B \u001b$(D;L\u001b(B \u001b$(D;M\u001b(B \u001b$(D;N\u001b(B \u001b$(D;O\u001b(B\n\u001b$(D;P\u001b(B \u001b$(D;Q\u001b(B \u001b$(D;R\u001b(B \u001b$(D;S\u001b(B \u001b$(D;T\u001b(B \u001b$(D;U\u001b(B \u001b$(D;V\u001b(B \u001b$(D;W\u001b(B \u001b$(D;X\u001b(B \u001b$(D;Y\u001b(B \u001b$(D;Z\u001b(B \u001b$(D;[\u001b(B \u001b$(D;\\\u001b(B \u001b$(D;]\u001b(B \u001b$(D;^\u001b(B \u001b$(D;_\u001b(B\n\u001b$(D;`\u001b(B \u001b$(D;a\u001b(B \u001b$(D;b\u001b(B \u001b$(D;c\u001b(B \u001b$(D;d\u001b(B \u001b$(D;e\u001b(B \u001b$(D;f\u001b(B \u001b$(D;g\u001b(B \u001b$(D;h\u001b(B \u001b$(D;i\u001b(B \u001b$(D;j\u001b(B \u001b$(D;k\u001b(B \u001b$(D;l\u001b(B \u001b$(D;m\u001b(B \u001b$(D;n\u001b(B \u001b$(D;o\u001b(B\n\u001b$(D;p\u001b(B \u001b$(D;q\u001b(B \u001b$(D;r\u001b(B \u001b$(D;s\u001b(B \u001b$(D;t\u001b(B \u001b$(D;u\u001b(B \u001b$(D;v\u001b(B \u001b$(D;w\u001b(B \u001b$(D;x\u001b(B \u001b$(D;y\u001b(B \u001b$(D;z\u001b(B \u001b$(D;{\u001b(B \u001b$(D;|\u001b(B \u001b$(D;}\u001b(B \u001b$(D;~\u001b(B\n  \u001b$(D<!\u001b(B \u001b$(D<\"\u001b(B \u001b$(D<#\u001b(B \u001b$(D<$\u001b(B \u001b$(D<%\u001b(B \u001b$(D<&\u001b(B \u001b$(D<'\u001b(B \u001b$(D<(\u001b(B \u001b$(D<)\u001b(B \u001b$(D<*\u001b(B \u001b$(D<+\u001b(B \u001b$(D<,\u001b(B \u001b$(D<-\u001b(B \u001b$(D<.\u001b(B \u001b$(D</\u001b(B\n\u001b$(D<0\u001b(B \u001b$(D<1\u001b(B \u001b$(D<2\u001b(B \u001b$(D<3\u001b(B \u001b$(D<4\u001b(B \u001b$(D<5\u001b(B \u001b$(D<6\u001b(B \u001b$(D<7\u001b(B \u001b$(D<8\u001b(B \u001b$(D<9\u001b(B \u001b$(D<:\u001b(B \u001b$(D<;\u001b(B \u001b$(D<<\u001b(B \u001b$(D<=\u001b(B \u001b$(D<>\u001b(B \u001b$(D<?\u001b(B\n\u001b$(D<@\u001b(B \u001b$(D<A\u001b(B \u001b$(D<B\u001b(B \u001b$(D<C\u001b(B \u001b$(D<D\u001b(B \u001b$(D<E\u001b(B \u001b$(D<F\u001b(B \u001b$(D<G\u001b(B \u001b$(D<H\u001b(B \u001b$(D<I\u001b(B \u001b$(D<J\u001b(B \u001b$(D<K\u001b(B \u001b$(D<L\u001b(B \u001b$(D<M\u001b(B \u001b$(D<N\u001b(B \u001b$(D<O\u001b(B\n\u001b$(D<P\u001b(B \u001b$(D<Q\u001b(B \u001b$(D<R\u001b(B \u001b$(D<S\u001b(B \u001b$(D<T\u001b(B \u001b$(D<U\u001b(B \u001b$(D<V\u001b(B \u001b$(D<W\u001b(B \u001b$(D<X\u001b(B \u001b$(D<Y\u001b(B \u001b$(D<Z\u001b(B \u001b$(D<[\u001b(B \u001b$(D<\\\u001b(B \u001b$(D<]\u001b(B \u001b$(D<^\u001b(B \u001b$(D<_\u001b(B\n\u001b$(D<`\u001b(B \u001b$(D<a\u001b(B \u001b$(D<b\u001b(B \u001b$(D<c\u001b(B \u001b$(D<d\u001b(B \u001b$(D<e\u001b(B \u001b$(D<f\u001b(B \u001b$(D<g\u001b(B \u001b$(D<h\u001b(B \u001b$(D<i\u001b(B \u001b$(D<j\u001b(B \u001b$(D<k\u001b(B \u001b$(D<l\u001b(B \u001b$(D<m\u001b(B \u001b$(D<n\u001b(B \u001b$(D<o\u001b(B\n\u001b$(D<p\u001b(B \u001b$(D<q\u001b(B \u001b$(D<r\u001b(B \u001b$(D<s\u001b(B \u001b$(D<t\u001b(B \u001b$(D<u\u001b(B \u001b$(D<v\u001b(B \u001b$(D<w\u001b(B \u001b$(D<x\u001b(B \u001b$(D<y\u001b(B \u001b$(D<z\u001b(B \u001b$(D<{\u001b(B \u001b$(D<|\u001b(B \u001b$(D<}\u001b(B \u001b$(D<~\u001b(B\n  \u001b$(D=!\u001b(B \u001b$(D=\"\u001b(B \u001b$(D=#\u001b(B \u001b$(D=$\u001b(B \u001b$(D=%\u001b(B \u001b$(D=&\u001b(B \u001b$(D='\u001b(B \u001b$(D=(\u001b(B \u001b$(D=)\u001b(B \u001b$(D=*\u001b(B \u001b$(D=+\u001b(B \u001b$(D=,\u001b(B \u001b$(D=-\u001b(B \u001b$(D=.\u001b(B \u001b$(D=/\u001b(B\n\u001b$(D=0\u001b(B \u001b$(D=1\u001b(B \u001b$(D=2\u001b(B \u001b$(D=3\u001b(B \u001b$(D=4\u001b(B \u001b$(D=5\u001b(B \u001b$(D=6\u001b(B \u001b$(D=7\u001b(B \u001b$(D=8\u001b(B \u001b$(D=9\u001b(B \u001b$(D=:\u001b(B \u001b$(D=;\u001b(B \u001b$(D=<\u001b(B \u001b$(D==\u001b(B \u001b$(D=>\u001b(B \u001b$(D=?\u001b(B\n\u001b$(D=@\u001b(B \u001b$(D=A\u001b(B \u001b$(D=B\u001b(B \u001b$(D=C\u001b(B \u001b$(D=D\u001b(B \u001b$(D=E\u001b(B \u001b$(D=F\u001b(B \u001b$(D=G\u001b(B \u001b$(D=H\u001b(B \u001b$(D=I\u001b(B \u001b$(D=J\u001b(B \u001b$(D=K\u001b(B \u001b$(D=L\u001b(B \u001b$(D=M\u001b(B \u001b$(D=N\u001b(B \u001b$(D=O\u001b(B\n\u001b$(D=P\u001b(B \u001b$(D=Q\u001b(B \u001b$(D=R\u001b(B \u001b$(D=S\u001b(B \u001b$(D=T\u001b(B \u001b$(D=U\u001b(B \u001b$(D=V\u001b(B \u001b$(D=W\u001b(B \u001b$(D=X\u001b(B \u001b$(D=Y\u001b(B \u001b$(D=Z\u001b(B \u001b$(D=[\u001b(B \u001b$(D=\\\u001b(B \u001b$(D=]\u001b(B \u001b$(D=^\u001b(B \u001b$(D=_\u001b(B\n\u001b$(D=`\u001b(B \u001b$(D=a\u001b(B \u001b$(D=b\u001b(B \u001b$(D=c\u001b(B \u001b$(D=d\u001b(B \u001b$(D=e\u001b(B \u001b$(D=f\u001b(B \u001b$(D=g\u001b(B \u001b$(D=h\u001b(B \u001b$(D=i\u001b(B \u001b$(D=j\u001b(B \u001b$(D=k\u001b(B \u001b$(D=l\u001b(B \u001b$(D=m\u001b(B \u001b$(D=n\u001b(B \u001b$(D=o\u001b(B\n\u001b$(D=p\u001b(B \u001b$(D=q\u001b(B \u001b$(D=r\u001b(B \u001b$(D=s\u001b(B \u001b$(D=t\u001b(B \u001b$(D=u\u001b(B \u001b$(D=v\u001b(B \u001b$(D=w\u001b(B \u001b$(D=x\u001b(B \u001b$(D=y\u001b(B \u001b$(D=z\u001b(B \u001b$(D={\u001b(B \u001b$(D=|\u001b(B \u001b$(D=}\u001b(B \u001b$(D=~\u001b(B\n  \u001b$(D>!\u001b(B \u001b$(D>\"\u001b(B \u001b$(D>#\u001b(B \u001b$(D>$\u001b(B \u001b$(D>%\u001b(B \u001b$(D>&\u001b(B \u001b$(D>'\u001b(B \u001b$(D>(\u001b(B \u001b$(D>)\u001b(B \u001b$(D>*\u001b(B \u001b$(D>+\u001b(B \u001b$(D>,\u001b(B \u001b$(D>-\u001b(B \u001b$(D>.\u001b(B \u001b$(D>/\u001b(B\n\u001b$(D>0\u001b(B \u001b$(D>1\u001b(B \u001b$(D>2\u001b(B \u001b$(D>3\u001b(B \u001b$(D>4\u001b(B \u001b$(D>5\u001b(B \u001b$(D>6\u001b(B \u001b$(D>7\u001b(B \u001b$(D>8\u001b(B \u001b$(D>9\u001b(B \u001b$(D>:\u001b(B \u001b$(D>;\u001b(B \u001b$(D><\u001b(B \u001b$(D>=\u001b(B \u001b$(D>>\u001b(B \u001b$(D>?\u001b(B\n\u001b$(D>@\u001b(B \u001b$(D>A\u001b(B \u001b$(D>B\u001b(B \u001b$(D>C\u001b(B \u001b$(D>D\u001b(B \u001b$(D>E\u001b(B \u001b$(D>F\u001b(B \u001b$(D>G\u001b(B \u001b$(D>H\u001b(B \u001b$(D>I\u001b(B \u001b$(D>J\u001b(B \u001b$(D>K\u001b(B \u001b$(D>L\u001b(B \u001b$(D>M\u001b(B \u001b$(D>N\u001b(B \u001b$(D>O\u001b(B\n\u001b$(D>P\u001b(B \u001b$(D>Q\u001b(B \u001b$(D>R\u001b(B \u001b$(D>S\u001b(B \u001b$(D>T\u001b(B \u001b$(D>U\u001b(B \u001b$(D>V\u001b(B \u001b$(D>W\u001b(B \u001b$(D>X\u001b(B \u001b$(D>Y\u001b(B \u001b$(D>Z\u001b(B \u001b$(D>[\u001b(B \u001b$(D>\\\u001b(B \u001b$(D>]\u001b(B \u001b$(D>^\u001b(B \u001b$(D>_\u001b(B\n\u001b$(D>`\u001b(B \u001b$(D>a\u001b(B \u001b$(D>b\u001b(B \u001b$(D>c\u001b(B \u001b$(D>d\u001b(B \u001b$(D>e\u001b(B \u001b$(D>f\u001b(B \u001b$(D>g\u001b(B \u001b$(D>h\u001b(B \u001b$(D>i\u001b(B \u001b$(D>j\u001b(B \u001b$(D>k\u001b(B \u001b$(D>l\u001b(B \u001b$(D>m\u001b(B \u001b$(D>n\u001b(B \u001b$(D>o\u001b(B\n\u001b$(D>p\u001b(B \u001b$(D>q\u001b(B \u001b$(D>r\u001b(B \u001b$(D>s\u001b(B \u001b$(D>t\u001b(B \u001b$(D>u\u001b(B \u001b$(D>v\u001b(B \u001b$(D>w\u001b(B \u001b$(D>x\u001b(B \u001b$(D>y\u001b(B \u001b$(D>z\u001b(B \u001b$(D>{\u001b(B \u001b$(D>|\u001b(B \u001b$(D>}\u001b(B \u001b$(D>~\u001b(B\n  \u001b$(D?!\u001b(B \u001b$(D?\"\u001b(B \u001b$(D?#\u001b(B \u001b$(D?$\u001b(B \u001b$(D?%\u001b(B \u001b$(D?&\u001b(B \u001b$(D?'\u001b(B \u001b$(D?(\u001b(B \u001b$(D?)\u001b(B \u001b$(D?*\u001b(B \u001b$(D?+\u001b(B \u001b$(D?,\u001b(B \u001b$(D?-\u001b(B \u001b$(D?.\u001b(B \u001b$(D?/\u001b(B\n\u001b$(D?0\u001b(B \u001b$(D?1\u001b(B \u001b$(D?2\u001b(B \u001b$(D?3\u001b(B \u001b$(D?4\u001b(B \u001b$(D?5\u001b(B \u001b$(D?6\u001b(B \u001b$(D?7\u001b(B \u001b$(D?8\u001b(B \u001b$(D?9\u001b(B \u001b$(D?:\u001b(B \u001b$(D?;\u001b(B \u001b$(D?<\u001b(B \u001b$(D?=\u001b(B \u001b$(D?>\u001b(B \u001b$(D??\u001b(B\n\u001b$(D?@\u001b(B \u001b$(D?A\u001b(B \u001b$(D?B\u001b(B \u001b$(D?C\u001b(B \u001b$(D?D\u001b(B \u001b$(D?E\u001b(B \u001b$(D?F\u001b(B \u001b$(D?G\u001b(B \u001b$(D?H\u001b(B \u001b$(D?I\u001b(B \u001b$(D?J\u001b(B \u001b$(D?K\u001b(B \u001b$(D?L\u001b(B \u001b$(D?M\u001b(B \u001b$(D?N\u001b(B \u001b$(D?O\u001b(B\n\u001b$(D?P\u001b(B \u001b$(D?Q\u001b(B \u001b$(D?R\u001b(B \u001b$(D?S\u001b(B \u001b$(D?T\u001b(B \u001b$(D?U\u001b(B \u001b$(D?V\u001b(B \u001b$(D?W\u001b(B \u001b$(D?X\u001b(B \u001b$(D?Y\u001b(B \u001b$(D?Z\u001b(B \u001b$(D?[\u001b(B \u001b$(D?\\\u001b(B \u001b$(D?]\u001b(B \u001b$(D?^\u001b(B \u001b$(D?_\u001b(B\n\u001b$(D?`\u001b(B \u001b$(D?a\u001b(B \u001b$(D?b\u001b(B \u001b$(D?c\u001b(B \u001b$(D?d\u001b(B \u001b$(D?e\u001b(B \u001b$(D?f\u001b(B \u001b$(D?g\u001b(B \u001b$(D?h\u001b(B \u001b$(D?i\u001b(B \u001b$(D?j\u001b(B \u001b$(D?k\u001b(B \u001b$(D?l\u001b(B \u001b$(D?m\u001b(B \u001b$(D?n\u001b(B \u001b$(D?o\u001b(B\n\u001b$(D?p\u001b(B \u001b$(D?q\u001b(B \u001b$(D?r\u001b(B \u001b$(D?s\u001b(B \u001b$(D?t\u001b(B \u001b$(D?u\u001b(B \u001b$(D?v\u001b(B \u001b$(D?w\u001b(B \u001b$(D?x\u001b(B \u001b$(D?y\u001b(B \u001b$(D?z\u001b(B \u001b$(D?{\u001b(B \u001b$(D?|\u001b(B \u001b$(D?}\u001b(B \u001b$(D?~\u001b(B\n  \u001b$(D@!\u001b(B \u001b$(D@\"\u001b(B \u001b$(D@#\u001b(B \u001b$(D@$\u001b(B \u001b$(D@%\u001b(B \u001b$(D@&\u001b(B \u001b$(D@'\u001b(B \u001b$(D@(\u001b(B \u001b$(D@)\u001b(B \u001b$(D@*\u001b(B \u001b$(D@+\u001b(B \u001b$(D@,\u001b(B \u001b$(D@-\u001b(B \u001b$(D@.\u001b(B \u001b$(D@/\u001b(B\n\u001b$(D@0\u001b(B \u001b$(D@1\u001b(B \u001b$(D@2\u001b(B \u001b$(D@3\u001b(B \u001b$(D@4\u001b(B \u001b$(D@5\u001b(B \u001b$(D@6\u001b(B \u001b$(D@7\u001b(B \u001b$(D@8\u001b(B \u001b$(D@9\u001b(B \u001b$(D@:\u001b(B \u001b$(D@;\u001b(B \u001b$(D@<\u001b(B \u001b$(D@=\u001b(B \u001b$(D@>\u001b(B \u001b$(D@?\u001b(B\n\u001b$(D@@\u001b(B \u001b$(D@A\u001b(B \u001b$(D@B\u001b(B \u001b$(D@C\u001b(B \u001b$(D@D\u001b(B \u001b$(D@E\u001b(B \u001b$(D@F\u001b(B \u001b$(D@G\u001b(B \u001b$(D@H\u001b(B \u001b$(D@I\u001b(B \u001b$(D@J\u001b(B \u001b$(D@K\u001b(B \u001b$(D@L\u001b(B \u001b$(D@M\u001b(B \u001b$(D@N\u001b(B \u001b$(D@O\u001b(B\n\u001b$(D@P\u001b(B \u001b$(D@Q\u001b(B \u001b$(D@R\u001b(B \u001b$(D@S\u001b(B \u001b$(D@T\u001b(B \u001b$(D@U\u001b(B \u001b$(D@V\u001b(B \u001b$(D@W\u001b(B \u001b$(D@X\u001b(B \u001b$(D@Y\u001b(B \u001b$(D@Z\u001b(B \u001b$(D@[\u001b(B \u001b$(D@\\\u001b(B \u001b$(D@]\u001b(B \u001b$(D@^\u001b(B \u001b$(D@_\u001b(B\n\u001b$(D@`\u001b(B \u001b$(D@a\u001b(B \u001b$(D@b\u001b(B \u001b$(D@c\u001b(B \u001b$(D@d\u001b(B \u001b$(D@e\u001b(B \u001b$(D@f\u001b(B \u001b$(D@g\u001b(B \u001b$(D@h\u001b(B \u001b$(D@i\u001b(B \u001b$(D@j\u001b(B \u001b$(D@k\u001b(B \u001b$(D@l\u001b(B \u001b$(D@m\u001b(B \u001b$(D@n\u001b(B \u001b$(D@o\u001b(B\n\u001b$(D@p\u001b(B \u001b$(D@q\u001b(B \u001b$(D@r\u001b(B \u001b$(D@s\u001b(B \u001b$(D@t\u001b(B \u001b$(D@u\u001b(B \u001b$(D@v\u001b(B \u001b$(D@w\u001b(B \u001b$(D@x\u001b(B \u001b$(D@y\u001b(B \u001b$(D@z\u001b(B \u001b$(D@{\u001b(B \u001b$(D@|\u001b(B \u001b$(D@}\u001b(B \u001b$(D@~\u001b(B\n  \u001b$(DA!\u001b(B \u001b$(DA\"\u001b(B \u001b$(DA#\u001b(B \u001b$(DA$\u001b(B \u001b$(DA%\u001b(B \u001b$(DA&\u001b(B \u001b$(DA'\u001b(B \u001b$(DA(\u001b(B \u001b$(DA)\u001b(B \u001b$(DA*\u001b(B \u001b$(DA+\u001b(B \u001b$(DA,\u001b(B \u001b$(DA-\u001b(B \u001b$(DA.\u001b(B \u001b$(DA/\u001b(B\n\u001b$(DA0\u001b(B \u001b$(DA1\u001b(B \u001b$(DA2\u001b(B \u001b$(DA3\u001b(B \u001b$(DA4\u001b(B \u001b$(DA5\u001b(B \u001b$(DA6\u001b(B \u001b$(DA7\u001b(B \u001b$(DA8\u001b(B \u001b$(DA9\u001b(B \u001b$(DA:\u001b(B \u001b$(DA;\u001b(B \u001b$(DA<\u001b(B \u001b$(DA=\u001b(B \u001b$(DA>\u001b(B \u001b$(DA?\u001b(B\n\u001b$(DA@\u001b(B \u001b$(DAA\u001b(B \u001b$(DAB\u001b(B \u001b$(DAC\u001b(B \u001b$(DAD\u001b(B \u001b$(DAE\u001b(B \u001b$(DAF\u001b(B \u001b$(DAG\u001b(B \u001b$(DAH\u001b(B \u001b$(DAI\u001b(B \u001b$(DAJ\u001b(B \u001b$(DAK\u001b(B \u001b$(DAL\u001b(B \u001b$(DAM\u001b(B \u001b$(DAN\u001b(B \u001b$(DAO\u001b(B\n\u001b$(DAP\u001b(B \u001b$(DAQ\u001b(B \u001b$(DAR\u001b(B \u001b$(DAS\u001b(B \u001b$(DAT\u001b(B \u001b$(DAU\u001b(B \u001b$(DAV\u001b(B \u001b$(DAW\u001b(B \u001b$(DAX\u001b(B \u001b$(DAY\u001b(B \u001b$(DAZ\u001b(B \u001b$(DA[\u001b(B \u001b$(DA\\\u001b(B \u001b$(DA]\u001b(B \u001b$(DA^\u001b(B \u001b$(DA_\u001b(B\n\u001b$(DA`\u001b(B \u001b$(DAa\u001b(B \u001b$(DAb\u001b(B \u001b$(DAc\u001b(B \u001b$(DAd\u001b(B \u001b$(DAe\u001b(B \u001b$(DAf\u001b(B \u001b$(DAg\u001b(B \u001b$(DAh\u001b(B \u001b$(DAi\u001b(B \u001b$(DAj\u001b(B \u001b$(DAk\u001b(B \u001b$(DAl\u001b(B \u001b$(DAm\u001b(B \u001b$(DAn\u001b(B \u001b$(DAo\u001b(B\n\u001b$(DAp\u001b(B \u001b$(DAq\u001b(B \u001b$(DAr\u001b(B \u001b$(DAs\u001b(B \u001b$(DAt\u001b(B \u001b$(DAu\u001b(B \u001b$(DAv\u001b(B \u001b$(DAw\u001b(B \u001b$(DAx\u001b(B \u001b$(DAy\u001b(B \u001b$(DAz\u001b(B \u001b$(DA{\u001b(B \u001b$(DA|\u001b(B \u001b$(DA}\u001b(B \u001b$(DA~\u001b(B\n  \u001b$(DB!\u001b(B \u001b$(DB\"\u001b(B \u001b$(DB#\u001b(B \u001b$(DB$\u001b(B \u001b$(DB%\u001b(B \u001b$(DB&\u001b(B \u001b$(DB'\u001b(B \u001b$(DB(\u001b(B \u001b$(DB)\u001b(B \u001b$(DB*\u001b(B \u001b$(DB+\u001b(B \u001b$(DB,\u001b(B \u001b$(DB-\u001b(B \u001b$(DB.\u001b(B \u001b$(DB/\u001b(B\n\u001b$(DB0\u001b(B \u001b$(DB1\u001b(B \u001b$(DB2\u001b(B \u001b$(DB3\u001b(B \u001b$(DB4\u001b(B \u001b$(DB5\u001b(B \u001b$(DB6\u001b(B \u001b$(DB7\u001b(B \u001b$(DB8\u001b(B \u001b$(DB9\u001b(B \u001b$(DB:\u001b(B \u001b$(DB;\u001b(B \u001b$(DB<\u001b(B \u001b$(DB=\u001b(B \u001b$(DB>\u001b(B \u001b$(DB?\u001b(B\n\u001b$(DB@\u001b(B \u001b$(DBA\u001b(B \u001b$(DBB\u001b(B \u001b$(DBC\u001b(B \u001b$(DBD\u001b(B \u001b$(DBE\u001b(B \u001b$(DBF\u001b(B \u001b$(DBG\u001b(B \u001b$(DBH\u001b(B \u001b$(DBI\u001b(B \u001b$(DBJ\u001b(B \u001b$(DBK\u001b(B \u001b$(DBL\u001b(B \u001b$(DBM\u001b(B \u001b$(DBN\u001b(B \u001b$(DBO\u001b(B\n\u001b$(DBP\u001b(B \u001b$(DBQ\u001b(B \u001b$(DBR\u001b(B \u001b$(DBS\u001b(B \u001b$(DBT\u001b(B \u001b$(DBU\u001b(B \u001b$(DBV\u001b(B \u001b$(DBW\u001b(B \u001b$(DBX\u001b(B \u001b$(DBY\u001b(B \u001b$(DBZ\u001b(B \u001b$(DB[\u001b(B \u001b$(DB\\\u001b(B \u001b$(DB]\u001b(B \u001b$(DB^\u001b(B \u001b$(DB_\u001b(B\n\u001b$(DB`\u001b(B \u001b$(DBa\u001b(B \u001b$(DBb\u001b(B \u001b$(DBc\u001b(B \u001b$(DBd\u001b(B \u001b$(DBe\u001b(B \u001b$(DBf\u001b(B \u001b$(DBg\u001b(B \u001b$(DBh\u001b(B \u001b$(DBi\u001b(B \u001b$(DBj\u001b(B \u001b$(DBk\u001b(B \u001b$(DBl\u001b(B \u001b$(DBm\u001b(B \u001b$(DBn\u001b(B \u001b$(DBo\u001b(B\n\u001b$(DBp\u001b(B \u001b$(DBq\u001b(B \u001b$(DBr\u001b(B \u001b$(DBs\u001b(B \u001b$(DBt\u001b(B \u001b$(DBu\u001b(B \u001b$(DBv\u001b(B \u001b$(DBw\u001b(B \u001b$(DBx\u001b(B \u001b$(DBy\u001b(B \u001b$(DBz\u001b(B \u001b$(DB{\u001b(B \u001b$(DB|\u001b(B \u001b$(DB}\u001b(B \u001b$(DB~\u001b(B\n  \u001b$(DC!\u001b(B \u001b$(DC\"\u001b(B \u001b$(DC#\u001b(B \u001b$(DC$\u001b(B \u001b$(DC%\u001b(B \u001b$(DC&\u001b(B \u001b$(DC'\u001b(B \u001b$(DC(\u001b(B \u001b$(DC)\u001b(B \u001b$(DC*\u001b(B \u001b$(DC+\u001b(B \u001b$(DC,\u001b(B \u001b$(DC-\u001b(B \u001b$(DC.\u001b(B \u001b$(DC/\u001b(B\n\u001b$(DC0\u001b(B \u001b$(DC1\u001b(B \u001b$(DC2\u001b(B \u001b$(DC3\u001b(B \u001b$(DC4\u001b(B \u001b$(DC5\u001b(B \u001b$(DC6\u001b(B \u001b$(DC7\u001b(B \u001b$(DC8\u001b(B \u001b$(DC9\u001b(B \u001b$(DC:\u001b(B \u001b$(DC;\u001b(B \u001b$(DC<\u001b(B \u001b$(DC=\u001b(B \u001b$(DC>\u001b(B \u001b$(DC?\u001b(B\n\u001b$(DC@\u001b(B \u001b$(DCA\u001b(B \u001b$(DCB\u001b(B \u001b$(DCC\u001b(B \u001b$(DCD\u001b(B \u001b$(DCE\u001b(B \u001b$(DCF\u001b(B \u001b$(DCG\u001b(B \u001b$(DCH\u001b(B \u001b$(DCI\u001b(B \u001b$(DCJ\u001b(B \u001b$(DCK\u001b(B \u001b$(DCL\u001b(B \u001b$(DCM\u001b(B \u001b$(DCN\u001b(B \u001b$(DCO\u001b(B\n\u001b$(DCP\u001b(B \u001b$(DCQ\u001b(B \u001b$(DCR\u001b(B \u001b$(DCS\u001b(B \u001b$(DCT\u001b(B \u001b$(DCU\u001b(B \u001b$(DCV\u001b(B \u001b$(DCW\u001b(B \u001b$(DCX\u001b(B \u001b$(DCY\u001b(B \u001b$(DCZ\u001b(B \u001b$(DC[\u001b(B \u001b$(DC\\\u001b(B \u001b$(DC]\u001b(B \u001b$(DC^\u001b(B \u001b$(DC_\u001b(B\n\u001b$(DC`\u001b(B \u001b$(DCa\u001b(B \u001b$(DCb\u001b(B \u001b$(DCc\u001b(B \u001b$(DCd\u001b(B \u001b$(DCe\u001b(B \u001b$(DCf\u001b(B \u001b$(DCg\u001b(B \u001b$(DCh\u001b(B \u001b$(DCi\u001b(B \u001b$(DCj\u001b(B \u001b$(DCk\u001b(B \u001b$(DCl\u001b(B \u001b$(DCm\u001b(B \u001b$(DCn\u001b(B \u001b$(DCo\u001b(B\n\u001b$(DCp\u001b(B \u001b$(DCq\u001b(B \u001b$(DCr\u001b(B \u001b$(DCs\u001b(B \u001b$(DCt\u001b(B \u001b$(DCu\u001b(B \u001b$(DCv\u001b(B \u001b$(DCw\u001b(B \u001b$(DCx\u001b(B \u001b$(DCy\u001b(B \u001b$(DCz\u001b(B \u001b$(DC{\u001b(B \u001b$(DC|\u001b(B \u001b$(DC}\u001b(B \u001b$(DC~\u001b(B\n  \u001b$(DD!\u001b(B \u001b$(DD\"\u001b(B \u001b$(DD#\u001b(B \u001b$(DD$\u001b(B \u001b$(DD%\u001b(B \u001b$(DD&\u001b(B \u001b$(DD'\u001b(B \u001b$(DD(\u001b(B \u001b$(DD)\u001b(B \u001b$(DD*\u001b(B \u001b$(DD+\u001b(B \u001b$(DD,\u001b(B \u001b$(DD-\u001b(B \u001b$(DD.\u001b(B \u001b$(DD/\u001b(B\n\u001b$(DD0\u001b(B \u001b$(DD1\u001b(B \u001b$(DD2\u001b(B \u001b$(DD3\u001b(B \u001b$(DD4\u001b(B \u001b$(DD5\u001b(B \u001b$(DD6\u001b(B \u001b$(DD7\u001b(B \u001b$(DD8\u001b(B \u001b$(DD9\u001b(B \u001b$(DD:\u001b(B \u001b$(DD;\u001b(B \u001b$(DD<\u001b(B \u001b$(DD=\u001b(B \u001b$(DD>\u001b(B \u001b$(DD?\u001b(B\n\u001b$(DD@\u001b(B \u001b$(DDA\u001b(B \u001b$(DDB\u001b(B \u001b$(DDC\u001b(B \u001b$(DDD\u001b(B \u001b$(DDE\u001b(B \u001b$(DDF\u001b(B \u001b$(DDG\u001b(B \u001b$(DDH\u001b(B \u001b$(DDI\u001b(B \u001b$(DDJ\u001b(B \u001b$(DDK\u001b(B \u001b$(DDL\u001b(B \u001b$(DDM\u001b(B \u001b$(DDN\u001b(B \u001b$(DDO\u001b(B\n\u001b$(DDP\u001b(B \u001b$(DDQ\u001b(B \u001b$(DDR\u001b(B \u001b$(DDS\u001b(B \u001b$(DDT\u001b(B \u001b$(DDU\u001b(B \u001b$(DDV\u001b(B \u001b$(DDW\u001b(B \u001b$(DDX\u001b(B \u001b$(DDY\u001b(B \u001b$(DDZ\u001b(B \u001b$(DD[\u001b(B \u001b$(DD\\\u001b(B \u001b$(DD]\u001b(B \u001b$(DD^\u001b(B \u001b$(DD_\u001b(B\n\u001b$(DD`\u001b(B \u001b$(DDa\u001b(B \u001b$(DDb\u001b(B \u001b$(DDc\u001b(B \u001b$(DDd\u001b(B \u001b$(DDe\u001b(B \u001b$(DDf\u001b(B \u001b$(DDg\u001b(B \u001b$(DDh\u001b(B \u001b$(DDi\u001b(B \u001b$(DDj\u001b(B \u001b$(DDk\u001b(B \u001b$(DDl\u001b(B \u001b$(DDm\u001b(B \u001b$(DDn\u001b(B \u001b$(DDo\u001b(B\n\u001b$(DDp\u001b(B \u001b$(DDq\u001b(B \u001b$(DDr\u001b(B \u001b$(DDs\u001b(B \u001b$(DDt\u001b(B \u001b$(DDu\u001b(B \u001b$(DDv\u001b(B \u001b$(DDw\u001b(B \u001b$(DDx\u001b(B \u001b$(DDy\u001b(B \u001b$(DDz\u001b(B \u001b$(DD{\u001b(B \u001b$(DD|\u001b(B \u001b$(DD}\u001b(B \u001b$(DD~\u001b(B\n  \u001b$(DE!\u001b(B \u001b$(DE\"\u001b(B \u001b$(DE#\u001b(B \u001b$(DE$\u001b(B \u001b$(DE%\u001b(B \u001b$(DE&\u001b(B \u001b$(DE'\u001b(B \u001b$(DE(\u001b(B \u001b$(DE)\u001b(B \u001b$(DE*\u001b(B \u001b$(DE+\u001b(B \u001b$(DE,\u001b(B \u001b$(DE-\u001b(B \u001b$(DE.\u001b(B \u001b$(DE/\u001b(B\n\u001b$(DE0\u001b(B \u001b$(DE1\u001b(B \u001b$(DE2\u001b(B \u001b$(DE3\u001b(B \u001b$(DE4\u001b(B \u001b$(DE5\u001b(B \u001b$(DE6\u001b(B \u001b$(DE7\u001b(B \u001b$(DE8\u001b(B \u001b$(DE9\u001b(B \u001b$(DE:\u001b(B \u001b$(DE;\u001b(B \u001b$(DE<\u001b(B \u001b$(DE=\u001b(B \u001b$(DE>\u001b(B \u001b$(DE?\u001b(B\n\u001b$(DE@\u001b(B \u001b$(DEA\u001b(B \u001b$(DEB\u001b(B \u001b$(DEC\u001b(B \u001b$(DED\u001b(B \u001b$(DEE\u001b(B \u001b$(DEF\u001b(B \u001b$(DEG\u001b(B \u001b$(DEH\u001b(B \u001b$(DEI\u001b(B \u001b$(DEJ\u001b(B \u001b$(DEK\u001b(B \u001b$(DEL\u001b(B \u001b$(DEM\u001b(B \u001b$(DEN\u001b(B \u001b$(DEO\u001b(B\n\u001b$(DEP\u001b(B \u001b$(DEQ\u001b(B \u001b$(DER\u001b(B \u001b$(DES\u001b(B \u001b$(DET\u001b(B \u001b$(DEU\u001b(B \u001b$(DEV\u001b(B \u001b$(DEW\u001b(B \u001b$(DEX\u001b(B \u001b$(DEY\u001b(B \u001b$(DEZ\u001b(B \u001b$(DE[\u001b(B \u001b$(DE\\\u001b(B \u001b$(DE]\u001b(B \u001b$(DE^\u001b(B \u001b$(DE_\u001b(B\n\u001b$(DE`\u001b(B \u001b$(DEa\u001b(B \u001b$(DEb\u001b(B \u001b$(DEc\u001b(B \u001b$(DEd\u001b(B \u001b$(DEe\u001b(B \u001b$(DEf\u001b(B \u001b$(DEg\u001b(B \u001b$(DEh\u001b(B \u001b$(DEi\u001b(B \u001b$(DEj\u001b(B \u001b$(DEk\u001b(B \u001b$(DEl\u001b(B \u001b$(DEm\u001b(B \u001b$(DEn\u001b(B \u001b$(DEo\u001b(B\n\u001b$(DEp\u001b(B \u001b$(DEq\u001b(B \u001b$(DEr\u001b(B \u001b$(DEs\u001b(B \u001b$(DEt\u001b(B \u001b$(DEu\u001b(B \u001b$(DEv\u001b(B \u001b$(DEw\u001b(B \u001b$(DEx\u001b(B \u001b$(DEy\u001b(B \u001b$(DEz\u001b(B \u001b$(DE{\u001b(B \u001b$(DE|\u001b(B \u001b$(DE}\u001b(B \u001b$(DE~\u001b(B\n  \u001b$(DF!\u001b(B \u001b$(DF\"\u001b(B \u001b$(DF#\u001b(B \u001b$(DF$\u001b(B \u001b$(DF%\u001b(B \u001b$(DF&\u001b(B \u001b$(DF'\u001b(B \u001b$(DF(\u001b(B \u001b$(DF)\u001b(B \u001b$(DF*\u001b(B \u001b$(DF+\u001b(B \u001b$(DF,\u001b(B \u001b$(DF-\u001b(B \u001b$(DF.\u001b(B \u001b$(DF/\u001b(B\n\u001b$(DF0\u001b(B \u001b$(DF1\u001b(B \u001b$(DF2\u001b(B \u001b$(DF3\u001b(B \u001b$(DF4\u001b(B \u001b$(DF5\u001b(B \u001b$(DF6\u001b(B \u001b$(DF7\u001b(B \u001b$(DF8\u001b(B \u001b$(DF9\u001b(B \u001b$(DF:\u001b(B \u001b$(DF;\u001b(B \u001b$(DF<\u001b(B \u001b$(DF=\u001b(B \u001b$(DF>\u001b(B \u001b$(DF?\u001b(B\n\u001b$(DF@\u001b(B \u001b$(DFA\u001b(B \u001b$(DFB\u001b(B \u001b$(DFC\u001b(B \u001b$(DFD\u001b(B \u001b$(DFE\u001b(B \u001b$(DFF\u001b(B \u001b$(DFG\u001b(B \u001b$(DFH\u001b(B \u001b$(DFI\u001b(B \u001b$(DFJ\u001b(B \u001b$(DFK\u001b(B \u001b$(DFL\u001b(B \u001b$(DFM\u001b(B \u001b$(DFN\u001b(B \u001b$(DFO\u001b(B\n\u001b$(DFP\u001b(B \u001b$(DFQ\u001b(B \u001b$(DFR\u001b(B \u001b$(DFS\u001b(B \u001b$(DFT\u001b(B \u001b$(DFU\u001b(B \u001b$(DFV\u001b(B \u001b$(DFW\u001b(B \u001b$(DFX\u001b(B \u001b$(DFY\u001b(B \u001b$(DFZ\u001b(B \u001b$(DF[\u001b(B \u001b$(DF\\\u001b(B \u001b$(DF]\u001b(B \u001b$(DF^\u001b(B \u001b$(DF_\u001b(B\n\u001b$(DF`\u001b(B \u001b$(DFa\u001b(B \u001b$(DFb\u001b(B \u001b$(DFc\u001b(B \u001b$(DFd\u001b(B \u001b$(DFe\u001b(B \u001b$(DFf\u001b(B \u001b$(DFg\u001b(B \u001b$(DFh\u001b(B \u001b$(DFi\u001b(B \u001b$(DFj\u001b(B \u001b$(DFk\u001b(B \u001b$(DFl\u001b(B \u001b$(DFm\u001b(B \u001b$(DFn\u001b(B \u001b$(DFo\u001b(B\n\u001b$(DFp\u001b(B \u001b$(DFq\u001b(B \u001b$(DFr\u001b(B \u001b$(DFs\u001b(B \u001b$(DFt\u001b(B \u001b$(DFu\u001b(B \u001b$(DFv\u001b(B \u001b$(DFw\u001b(B \u001b$(DFx\u001b(B \u001b$(DFy\u001b(B \u001b$(DFz\u001b(B \u001b$(DF{\u001b(B \u001b$(DF|\u001b(B \u001b$(DF}\u001b(B \u001b$(DF~\u001b(B\n  \u001b$(DG!\u001b(B \u001b$(DG\"\u001b(B \u001b$(DG#\u001b(B \u001b$(DG$\u001b(B \u001b$(DG%\u001b(B \u001b$(DG&\u001b(B \u001b$(DG'\u001b(B \u001b$(DG(\u001b(B \u001b$(DG)\u001b(B \u001b$(DG*\u001b(B \u001b$(DG+\u001b(B \u001b$(DG,\u001b(B \u001b$(DG-\u001b(B \u001b$(DG.\u001b(B \u001b$(DG/\u001b(B\n\u001b$(DG0\u001b(B \u001b$(DG1\u001b(B \u001b$(DG2\u001b(B \u001b$(DG3\u001b(B \u001b$(DG4\u001b(B \u001b$(DG5\u001b(B \u001b$(DG6\u001b(B \u001b$(DG7\u001b(B \u001b$(DG8\u001b(B \u001b$(DG9\u001b(B \u001b$(DG:\u001b(B \u001b$(DG;\u001b(B \u001b$(DG<\u001b(B \u001b$(DG=\u001b(B \u001b$(DG>\u001b(B \u001b$(DG?\u001b(B\n\u001b$(DG@\u001b(B \u001b$(DGA\u001b(B \u001b$(DGB\u001b(B \u001b$(DGC\u001b(B \u001b$(DGD\u001b(B \u001b$(DGE\u001b(B \u001b$(DGF\u001b(B \u001b$(DGG\u001b(B \u001b$(DGH\u001b(B \u001b$(DGI\u001b(B \u001b$(DGJ\u001b(B \u001b$(DGK\u001b(B \u001b$(DGL\u001b(B \u001b$(DGM\u001b(B \u001b$(DGN\u001b(B \u001b$(DGO\u001b(B\n\u001b$(DGP\u001b(B \u001b$(DGQ\u001b(B \u001b$(DGR\u001b(B \u001b$(DGS\u001b(B \u001b$(DGT\u001b(B \u001b$(DGU\u001b(B \u001b$(DGV\u001b(B \u001b$(DGW\u001b(B \u001b$(DGX\u001b(B \u001b$(DGY\u001b(B \u001b$(DGZ\u001b(B \u001b$(DG[\u001b(B \u001b$(DG\\\u001b(B \u001b$(DG]\u001b(B \u001b$(DG^\u001b(B \u001b$(DG_\u001b(B\n\u001b$(DG`\u001b(B \u001b$(DGa\u001b(B \u001b$(DGb\u001b(B \u001b$(DGc\u001b(B \u001b$(DGd\u001b(B \u001b$(DGe\u001b(B \u001b$(DGf\u001b(B \u001b$(DGg\u001b(B \u001b$(DGh\u001b(B \u001b$(DGi\u001b(B \u001b$(DGj\u001b(B \u001b$(DGk\u001b(B \u001b$(DGl\u001b(B \u001b$(DGm\u001b(B \u001b$(DGn\u001b(B \u001b$(DGo\u001b(B\n\u001b$(DGp\u001b(B \u001b$(DGq\u001b(B \u001b$(DGr\u001b(B \u001b$(DGs\u001b(B \u001b$(DGt\u001b(B \u001b$(DGu\u001b(B \u001b$(DGv\u001b(B \u001b$(DGw\u001b(B \u001b$(DGx\u001b(B \u001b$(DGy\u001b(B \u001b$(DGz\u001b(B \u001b$(DG{\u001b(B \u001b$(DG|\u001b(B \u001b$(DG}\u001b(B \u001b$(DG~\u001b(B\n  \u001b$(DH!\u001b(B \u001b$(DH\"\u001b(B \u001b$(DH#\u001b(B \u001b$(DH$\u001b(B \u001b$(DH%\u001b(B \u001b$(DH&\u001b(B \u001b$(DH'\u001b(B \u001b$(DH(\u001b(B \u001b$(DH)\u001b(B \u001b$(DH*\u001b(B \u001b$(DH+\u001b(B \u001b$(DH,\u001b(B \u001b$(DH-\u001b(B \u001b$(DH.\u001b(B \u001b$(DH/\u001b(B\n\u001b$(DH0\u001b(B \u001b$(DH1\u001b(B \u001b$(DH2\u001b(B \u001b$(DH3\u001b(B \u001b$(DH4\u001b(B \u001b$(DH5\u001b(B \u001b$(DH6\u001b(B \u001b$(DH7\u001b(B \u001b$(DH8\u001b(B \u001b$(DH9\u001b(B \u001b$(DH:\u001b(B \u001b$(DH;\u001b(B \u001b$(DH<\u001b(B \u001b$(DH=\u001b(B \u001b$(DH>\u001b(B \u001b$(DH?\u001b(B\n\u001b$(DH@\u001b(B \u001b$(DHA\u001b(B \u001b$(DHB\u001b(B \u001b$(DHC\u001b(B \u001b$(DHD\u001b(B \u001b$(DHE\u001b(B \u001b$(DHF\u001b(B \u001b$(DHG\u001b(B \u001b$(DHH\u001b(B \u001b$(DHI\u001b(B \u001b$(DHJ\u001b(B \u001b$(DHK\u001b(B \u001b$(DHL\u001b(B \u001b$(DHM\u001b(B \u001b$(DHN\u001b(B \u001b$(DHO\u001b(B\n\u001b$(DHP\u001b(B \u001b$(DHQ\u001b(B \u001b$(DHR\u001b(B \u001b$(DHS\u001b(B \u001b$(DHT\u001b(B \u001b$(DHU\u001b(B \u001b$(DHV\u001b(B \u001b$(DHW\u001b(B \u001b$(DHX\u001b(B \u001b$(DHY\u001b(B \u001b$(DHZ\u001b(B \u001b$(DH[\u001b(B \u001b$(DH\\\u001b(B \u001b$(DH]\u001b(B \u001b$(DH^\u001b(B \u001b$(DH_\u001b(B\n\u001b$(DH`\u001b(B \u001b$(DHa\u001b(B \u001b$(DHb\u001b(B \u001b$(DHc\u001b(B \u001b$(DHd\u001b(B \u001b$(DHe\u001b(B \u001b$(DHf\u001b(B \u001b$(DHg\u001b(B \u001b$(DHh\u001b(B \u001b$(DHi\u001b(B \u001b$(DHj\u001b(B \u001b$(DHk\u001b(B \u001b$(DHl\u001b(B \u001b$(DHm\u001b(B \u001b$(DHn\u001b(B \u001b$(DHo\u001b(B\n\u001b$(DHp\u001b(B \u001b$(DHq\u001b(B \u001b$(DHr\u001b(B \u001b$(DHs\u001b(B \u001b$(DHt\u001b(B \u001b$(DHu\u001b(B \u001b$(DHv\u001b(B \u001b$(DHw\u001b(B \u001b$(DHx\u001b(B \u001b$(DHy\u001b(B \u001b$(DHz\u001b(B \u001b$(DH{\u001b(B \u001b$(DH|\u001b(B \u001b$(DH}\u001b(B \u001b$(DH~\u001b(B\n  \u001b$(DI!\u001b(B \u001b$(DI\"\u001b(B \u001b$(DI#\u001b(B \u001b$(DI$\u001b(B \u001b$(DI%\u001b(B \u001b$(DI&\u001b(B \u001b$(DI'\u001b(B \u001b$(DI(\u001b(B \u001b$(DI)\u001b(B \u001b$(DI*\u001b(B \u001b$(DI+\u001b(B \u001b$(DI,\u001b(B \u001b$(DI-\u001b(B \u001b$(DI.\u001b(B \u001b$(DI/\u001b(B\n\u001b$(DI0\u001b(B \u001b$(DI1\u001b(B \u001b$(DI2\u001b(B \u001b$(DI3\u001b(B \u001b$(DI4\u001b(B \u001b$(DI5\u001b(B \u001b$(DI6\u001b(B \u001b$(DI7\u001b(B \u001b$(DI8\u001b(B \u001b$(DI9\u001b(B \u001b$(DI:\u001b(B \u001b$(DI;\u001b(B \u001b$(DI<\u001b(B \u001b$(DI=\u001b(B \u001b$(DI>\u001b(B \u001b$(DI?\u001b(B\n\u001b$(DI@\u001b(B \u001b$(DIA\u001b(B \u001b$(DIB\u001b(B \u001b$(DIC\u001b(B \u001b$(DID\u001b(B \u001b$(DIE\u001b(B \u001b$(DIF\u001b(B \u001b$(DIG\u001b(B \u001b$(DIH\u001b(B \u001b$(DII\u001b(B \u001b$(DIJ\u001b(B \u001b$(DIK\u001b(B \u001b$(DIL\u001b(B \u001b$(DIM\u001b(B \u001b$(DIN\u001b(B \u001b$(DIO\u001b(B\n\u001b$(DIP\u001b(B \u001b$(DIQ\u001b(B \u001b$(DIR\u001b(B \u001b$(DIS\u001b(B \u001b$(DIT\u001b(B \u001b$(DIU\u001b(B \u001b$(DIV\u001b(B \u001b$(DIW\u001b(B \u001b$(DIX\u001b(B \u001b$(DIY\u001b(B \u001b$(DIZ\u001b(B \u001b$(DI[\u001b(B \u001b$(DI\\\u001b(B \u001b$(DI]\u001b(B \u001b$(DI^\u001b(B \u001b$(DI_\u001b(B\n\u001b$(DI`\u001b(B \u001b$(DIa\u001b(B \u001b$(DIb\u001b(B \u001b$(DIc\u001b(B \u001b$(DId\u001b(B \u001b$(DIe\u001b(B \u001b$(DIf\u001b(B \u001b$(DIg\u001b(B \u001b$(DIh\u001b(B \u001b$(DIi\u001b(B \u001b$(DIj\u001b(B \u001b$(DIk\u001b(B \u001b$(DIl\u001b(B \u001b$(DIm\u001b(B \u001b$(DIn\u001b(B \u001b$(DIo\u001b(B\n\u001b$(DIp\u001b(B \u001b$(DIq\u001b(B \u001b$(DIr\u001b(B \u001b$(DIs\u001b(B \u001b$(DIt\u001b(B \u001b$(DIu\u001b(B \u001b$(DIv\u001b(B \u001b$(DIw\u001b(B \u001b$(DIx\u001b(B \u001b$(DIy\u001b(B \u001b$(DIz\u001b(B \u001b$(DI{\u001b(B \u001b$(DI|\u001b(B \u001b$(DI}\u001b(B \u001b$(DI~\u001b(B\n  \u001b$(DJ!\u001b(B \u001b$(DJ\"\u001b(B \u001b$(DJ#\u001b(B \u001b$(DJ$\u001b(B \u001b$(DJ%\u001b(B \u001b$(DJ&\u001b(B \u001b$(DJ'\u001b(B \u001b$(DJ(\u001b(B \u001b$(DJ)\u001b(B \u001b$(DJ*\u001b(B \u001b$(DJ+\u001b(B \u001b$(DJ,\u001b(B \u001b$(DJ-\u001b(B \u001b$(DJ.\u001b(B \u001b$(DJ/\u001b(B\n\u001b$(DJ0\u001b(B \u001b$(DJ1\u001b(B \u001b$(DJ2\u001b(B \u001b$(DJ3\u001b(B \u001b$(DJ4\u001b(B \u001b$(DJ5\u001b(B \u001b$(DJ6\u001b(B \u001b$(DJ7\u001b(B \u001b$(DJ8\u001b(B \u001b$(DJ9\u001b(B \u001b$(DJ:\u001b(B \u001b$(DJ;\u001b(B \u001b$(DJ<\u001b(B \u001b$(DJ=\u001b(B \u001b$(DJ>\u001b(B \u001b$(DJ?\u001b(B\n\u001b$(DJ@\u001b(B \u001b$(DJA\u001b(B \u001b$(DJB\u001b(B \u001b$(DJC\u001b(B \u001b$(DJD\u001b(B \u001b$(DJE\u001b(B \u001b$(DJF\u001b(B \u001b$(DJG\u001b(B \u001b$(DJH\u001b(B \u001b$(DJI\u001b(B \u001b$(DJJ\u001b(B \u001b$(DJK\u001b(B \u001b$(DJL\u001b(B \u001b$(DJM\u001b(B \u001b$(DJN\u001b(B \u001b$(DJO\u001b(B\n\u001b$(DJP\u001b(B \u001b$(DJQ\u001b(B \u001b$(DJR\u001b(B \u001b$(DJS\u001b(B \u001b$(DJT\u001b(B \u001b$(DJU\u001b(B \u001b$(DJV\u001b(B \u001b$(DJW\u001b(B \u001b$(DJX\u001b(B \u001b$(DJY\u001b(B \u001b$(DJZ\u001b(B \u001b$(DJ[\u001b(B \u001b$(DJ\\\u001b(B \u001b$(DJ]\u001b(B \u001b$(DJ^\u001b(B \u001b$(DJ_\u001b(B\n\u001b$(DJ`\u001b(B \u001b$(DJa\u001b(B \u001b$(DJb\u001b(B \u001b$(DJc\u001b(B \u001b$(DJd\u001b(B \u001b$(DJe\u001b(B \u001b$(DJf\u001b(B \u001b$(DJg\u001b(B \u001b$(DJh\u001b(B \u001b$(DJi\u001b(B \u001b$(DJj\u001b(B \u001b$(DJk\u001b(B \u001b$(DJl\u001b(B \u001b$(DJm\u001b(B \u001b$(DJn\u001b(B \u001b$(DJo\u001b(B\n\u001b$(DJp\u001b(B \u001b$(DJq\u001b(B \u001b$(DJr\u001b(B \u001b$(DJs\u001b(B \u001b$(DJt\u001b(B \u001b$(DJu\u001b(B \u001b$(DJv\u001b(B \u001b$(DJw\u001b(B \u001b$(DJx\u001b(B \u001b$(DJy\u001b(B \u001b$(DJz\u001b(B \u001b$(DJ{\u001b(B \u001b$(DJ|\u001b(B \u001b$(DJ}\u001b(B \u001b$(DJ~\u001b(B\n  \u001b$(DK!\u001b(B \u001b$(DK\"\u001b(B \u001b$(DK#\u001b(B \u001b$(DK$\u001b(B \u001b$(DK%\u001b(B \u001b$(DK&\u001b(B \u001b$(DK'\u001b(B \u001b$(DK(\u001b(B \u001b$(DK)\u001b(B \u001b$(DK*\u001b(B \u001b$(DK+\u001b(B \u001b$(DK,\u001b(B \u001b$(DK-\u001b(B \u001b$(DK.\u001b(B \u001b$(DK/\u001b(B\n\u001b$(DK0\u001b(B \u001b$(DK1\u001b(B \u001b$(DK2\u001b(B \u001b$(DK3\u001b(B \u001b$(DK4\u001b(B \u001b$(DK5\u001b(B \u001b$(DK6\u001b(B \u001b$(DK7\u001b(B \u001b$(DK8\u001b(B \u001b$(DK9\u001b(B \u001b$(DK:\u001b(B \u001b$(DK;\u001b(B \u001b$(DK<\u001b(B \u001b$(DK=\u001b(B \u001b$(DK>\u001b(B \u001b$(DK?\u001b(B\n\u001b$(DK@\u001b(B \u001b$(DKA\u001b(B \u001b$(DKB\u001b(B \u001b$(DKC\u001b(B \u001b$(DKD\u001b(B \u001b$(DKE\u001b(B \u001b$(DKF\u001b(B \u001b$(DKG\u001b(B \u001b$(DKH\u001b(B \u001b$(DKI\u001b(B \u001b$(DKJ\u001b(B \u001b$(DKK\u001b(B \u001b$(DKL\u001b(B \u001b$(DKM\u001b(B \u001b$(DKN\u001b(B \u001b$(DKO\u001b(B\n\u001b$(DKP\u001b(B \u001b$(DKQ\u001b(B \u001b$(DKR\u001b(B \u001b$(DKS\u001b(B \u001b$(DKT\u001b(B \u001b$(DKU\u001b(B \u001b$(DKV\u001b(B \u001b$(DKW\u001b(B \u001b$(DKX\u001b(B \u001b$(DKY\u001b(B \u001b$(DKZ\u001b(B \u001b$(DK[\u001b(B \u001b$(DK\\\u001b(B \u001b$(DK]\u001b(B \u001b$(DK^\u001b(B \u001b$(DK_\u001b(B\n\u001b$(DK`\u001b(B \u001b$(DKa\u001b(B \u001b$(DKb\u001b(B \u001b$(DKc\u001b(B \u001b$(DKd\u001b(B \u001b$(DKe\u001b(B \u001b$(DKf\u001b(B \u001b$(DKg\u001b(B \u001b$(DKh\u001b(B \u001b$(DKi\u001b(B \u001b$(DKj\u001b(B \u001b$(DKk\u001b(B \u001b$(DKl\u001b(B \u001b$(DKm\u001b(B \u001b$(DKn\u001b(B \u001b$(DKo\u001b(B\n\u001b$(DKp\u001b(B \u001b$(DKq\u001b(B \u001b$(DKr\u001b(B \u001b$(DKs\u001b(B \u001b$(DKt\u001b(B \u001b$(DKu\u001b(B \u001b$(DKv\u001b(B \u001b$(DKw\u001b(B \u001b$(DKx\u001b(B \u001b$(DKy\u001b(B \u001b$(DKz\u001b(B \u001b$(DK{\u001b(B \u001b$(DK|\u001b(B \u001b$(DK}\u001b(B \u001b$(DK~\u001b(B\n  \u001b$(DL!\u001b(B \u001b$(DL\"\u001b(B \u001b$(DL#\u001b(B \u001b$(DL$\u001b(B \u001b$(DL%\u001b(B \u001b$(DL&\u001b(B \u001b$(DL'\u001b(B \u001b$(DL(\u001b(B \u001b$(DL)\u001b(B \u001b$(DL*\u001b(B \u001b$(DL+\u001b(B \u001b$(DL,\u001b(B \u001b$(DL-\u001b(B \u001b$(DL.\u001b(B \u001b$(DL/\u001b(B\n\u001b$(DL0\u001b(B \u001b$(DL1\u001b(B \u001b$(DL2\u001b(B \u001b$(DL3\u001b(B \u001b$(DL4\u001b(B \u001b$(DL5\u001b(B \u001b$(DL6\u001b(B \u001b$(DL7\u001b(B \u001b$(DL8\u001b(B \u001b$(DL9\u001b(B \u001b$(DL:\u001b(B \u001b$(DL;\u001b(B \u001b$(DL<\u001b(B \u001b$(DL=\u001b(B \u001b$(DL>\u001b(B \u001b$(DL?\u001b(B\n\u001b$(DL@\u001b(B \u001b$(DLA\u001b(B \u001b$(DLB\u001b(B \u001b$(DLC\u001b(B \u001b$(DLD\u001b(B \u001b$(DLE\u001b(B \u001b$(DLF\u001b(B \u001b$(DLG\u001b(B \u001b$(DLH\u001b(B \u001b$(DLI\u001b(B \u001b$(DLJ\u001b(B \u001b$(DLK\u001b(B \u001b$(DLL\u001b(B \u001b$(DLM\u001b(B \u001b$(DLN\u001b(B \u001b$(DLO\u001b(B\n\u001b$(DLP\u001b(B \u001b$(DLQ\u001b(B \u001b$(DLR\u001b(B \u001b$(DLS\u001b(B \u001b$(DLT\u001b(B \u001b$(DLU\u001b(B \u001b$(DLV\u001b(B \u001b$(DLW\u001b(B \u001b$(DLX\u001b(B \u001b$(DLY\u001b(B \u001b$(DLZ\u001b(B \u001b$(DL[\u001b(B \u001b$(DL\\\u001b(B \u001b$(DL]\u001b(B \u001b$(DL^\u001b(B \u001b$(DL_\u001b(B\n\u001b$(DL`\u001b(B \u001b$(DLa\u001b(B \u001b$(DLb\u001b(B \u001b$(DLc\u001b(B \u001b$(DLd\u001b(B \u001b$(DLe\u001b(B \u001b$(DLf\u001b(B \u001b$(DLg\u001b(B \u001b$(DLh\u001b(B \u001b$(DLi\u001b(B \u001b$(DLj\u001b(B \u001b$(DLk\u001b(B \u001b$(DLl\u001b(B \u001b$(DLm\u001b(B \u001b$(DLn\u001b(B \u001b$(DLo\u001b(B\n\u001b$(DLp\u001b(B \u001b$(DLq\u001b(B \u001b$(DLr\u001b(B \u001b$(DLs\u001b(B \u001b$(DLt\u001b(B \u001b$(DLu\u001b(B \u001b$(DLv\u001b(B \u001b$(DLw\u001b(B \u001b$(DLx\u001b(B \u001b$(DLy\u001b(B \u001b$(DLz\u001b(B \u001b$(DL{\u001b(B \u001b$(DL|\u001b(B \u001b$(DL}\u001b(B \u001b$(DL~\u001b(B\n  \u001b$(DM!\u001b(B \u001b$(DM\"\u001b(B \u001b$(DM#\u001b(B \u001b$(DM$\u001b(B \u001b$(DM%\u001b(B \u001b$(DM&\u001b(B \u001b$(DM'\u001b(B \u001b$(DM(\u001b(B \u001b$(DM)\u001b(B \u001b$(DM*\u001b(B \u001b$(DM+\u001b(B \u001b$(DM,\u001b(B \u001b$(DM-\u001b(B \u001b$(DM.\u001b(B \u001b$(DM/\u001b(B\n\u001b$(DM0\u001b(B \u001b$(DM1\u001b(B \u001b$(DM2\u001b(B \u001b$(DM3\u001b(B \u001b$(DM4\u001b(B \u001b$(DM5\u001b(B \u001b$(DM6\u001b(B \u001b$(DM7\u001b(B \u001b$(DM8\u001b(B \u001b$(DM9\u001b(B \u001b$(DM:\u001b(B \u001b$(DM;\u001b(B \u001b$(DM<\u001b(B \u001b$(DM=\u001b(B \u001b$(DM>\u001b(B \u001b$(DM?\u001b(B\n\u001b$(DM@\u001b(B \u001b$(DMA\u001b(B \u001b$(DMB\u001b(B \u001b$(DMC\u001b(B \u001b$(DMD\u001b(B \u001b$(DME\u001b(B \u001b$(DMF\u001b(B \u001b$(DMG\u001b(B \u001b$(DMH\u001b(B \u001b$(DMI\u001b(B \u001b$(DMJ\u001b(B \u001b$(DMK\u001b(B \u001b$(DML\u001b(B \u001b$(DMM\u001b(B \u001b$(DMN\u001b(B \u001b$(DMO\u001b(B\n\u001b$(DMP\u001b(B \u001b$(DMQ\u001b(B \u001b$(DMR\u001b(B \u001b$(DMS\u001b(B \u001b$(DMT\u001b(B \u001b$(DMU\u001b(B \u001b$(DMV\u001b(B \u001b$(DMW\u001b(B \u001b$(DMX\u001b(B \u001b$(DMY\u001b(B \u001b$(DMZ\u001b(B \u001b$(DM[\u001b(B \u001b$(DM\\\u001b(B \u001b$(DM]\u001b(B \u001b$(DM^\u001b(B \u001b$(DM_\u001b(B\n\u001b$(DM`\u001b(B \u001b$(DMa\u001b(B \u001b$(DMb\u001b(B \u001b$(DMc\u001b(B \u001b$(DMd\u001b(B \u001b$(DMe\u001b(B \u001b$(DMf\u001b(B \u001b$(DMg\u001b(B \u001b$(DMh\u001b(B \u001b$(DMi\u001b(B \u001b$(DMj\u001b(B \u001b$(DMk\u001b(B \u001b$(DMl\u001b(B \u001b$(DMm\u001b(B \u001b$(DMn\u001b(B \u001b$(DMo\u001b(B\n\u001b$(DMp\u001b(B \u001b$(DMq\u001b(B \u001b$(DMr\u001b(B \u001b$(DMs\u001b(B \u001b$(DMt\u001b(B \u001b$(DMu\u001b(B \u001b$(DMv\u001b(B \u001b$(DMw\u001b(B \u001b$(DMx\u001b(B \u001b$(DMy\u001b(B \u001b$(DMz\u001b(B \u001b$(DM{\u001b(B \u001b$(DM|\u001b(B \u001b$(DM}\u001b(B \u001b$(DM~\u001b(B\n  \u001b$(DN!\u001b(B \u001b$(DN\"\u001b(B \u001b$(DN#\u001b(B \u001b$(DN$\u001b(B \u001b$(DN%\u001b(B \u001b$(DN&\u001b(B \u001b$(DN'\u001b(B \u001b$(DN(\u001b(B \u001b$(DN)\u001b(B \u001b$(DN*\u001b(B \u001b$(DN+\u001b(B \u001b$(DN,\u001b(B \u001b$(DN-\u001b(B \u001b$(DN.\u001b(B \u001b$(DN/\u001b(B\n\u001b$(DN0\u001b(B \u001b$(DN1\u001b(B \u001b$(DN2\u001b(B \u001b$(DN3\u001b(B \u001b$(DN4\u001b(B \u001b$(DN5\u001b(B \u001b$(DN6\u001b(B \u001b$(DN7\u001b(B \u001b$(DN8\u001b(B \u001b$(DN9\u001b(B \u001b$(DN:\u001b(B \u001b$(DN;\u001b(B \u001b$(DN<\u001b(B \u001b$(DN=\u001b(B \u001b$(DN>\u001b(B \u001b$(DN?\u001b(B\n\u001b$(DN@\u001b(B \u001b$(DNA\u001b(B \u001b$(DNB\u001b(B \u001b$(DNC\u001b(B \u001b$(DND\u001b(B \u001b$(DNE\u001b(B \u001b$(DNF\u001b(B \u001b$(DNG\u001b(B \u001b$(DNH\u001b(B \u001b$(DNI\u001b(B \u001b$(DNJ\u001b(B \u001b$(DNK\u001b(B \u001b$(DNL\u001b(B \u001b$(DNM\u001b(B \u001b$(DNN\u001b(B \u001b$(DNO\u001b(B\n\u001b$(DNP\u001b(B \u001b$(DNQ\u001b(B \u001b$(DNR\u001b(B \u001b$(DNS\u001b(B \u001b$(DNT\u001b(B \u001b$(DNU\u001b(B \u001b$(DNV\u001b(B \u001b$(DNW\u001b(B \u001b$(DNX\u001b(B \u001b$(DNY\u001b(B \u001b$(DNZ\u001b(B \u001b$(DN[\u001b(B \u001b$(DN\\\u001b(B \u001b$(DN]\u001b(B \u001b$(DN^\u001b(B \u001b$(DN_\u001b(B\n\u001b$(DN`\u001b(B \u001b$(DNa\u001b(B \u001b$(DNb\u001b(B \u001b$(DNc\u001b(B \u001b$(DNd\u001b(B \u001b$(DNe\u001b(B \u001b$(DNf\u001b(B \u001b$(DNg\u001b(B \u001b$(DNh\u001b(B \u001b$(DNi\u001b(B \u001b$(DNj\u001b(B \u001b$(DNk\u001b(B \u001b$(DNl\u001b(B \u001b$(DNm\u001b(B \u001b$(DNn\u001b(B \u001b$(DNo\u001b(B\n\u001b$(DNp\u001b(B \u001b$(DNq\u001b(B \u001b$(DNr\u001b(B \u001b$(DNs\u001b(B \u001b$(DNt\u001b(B \u001b$(DNu\u001b(B \u001b$(DNv\u001b(B \u001b$(DNw\u001b(B \u001b$(DNx\u001b(B \u001b$(DNy\u001b(B \u001b$(DNz\u001b(B \u001b$(DN{\u001b(B \u001b$(DN|\u001b(B \u001b$(DN}\u001b(B \u001b$(DN~\u001b(B\n  \u001b$(DO!\u001b(B \u001b$(DO\"\u001b(B \u001b$(DO#\u001b(B \u001b$(DO$\u001b(B \u001b$(DO%\u001b(B \u001b$(DO&\u001b(B \u001b$(DO'\u001b(B \u001b$(DO(\u001b(B \u001b$(DO)\u001b(B \u001b$(DO*\u001b(B \u001b$(DO+\u001b(B \u001b$(DO,\u001b(B \u001b$(DO-\u001b(B \u001b$(DO.\u001b(B \u001b$(DO/\u001b(B\n\u001b$(DO0\u001b(B \u001b$(DO1\u001b(B \u001b$(DO2\u001b(B \u001b$(DO3\u001b(B \u001b$(DO4\u001b(B \u001b$(DO5\u001b(B \u001b$(DO6\u001b(B \u001b$(DO7\u001b(B \u001b$(DO8\u001b(B \u001b$(DO9\u001b(B \u001b$(DO:\u001b(B \u001b$(DO;\u001b(B \u001b$(DO<\u001b(B \u001b$(DO=\u001b(B \u001b$(DO>\u001b(B \u001b$(DO?\u001b(B\n\u001b$(DO@\u001b(B \u001b$(DOA\u001b(B \u001b$(DOB\u001b(B \u001b$(DOC\u001b(B \u001b$(DOD\u001b(B \u001b$(DOE\u001b(B \u001b$(DOF\u001b(B \u001b$(DOG\u001b(B \u001b$(DOH\u001b(B \u001b$(DOI\u001b(B \u001b$(DOJ\u001b(B \u001b$(DOK\u001b(B \u001b$(DOL\u001b(B \u001b$(DOM\u001b(B \u001b$(DON\u001b(B \u001b$(DOO\u001b(B\n\u001b$(DOP\u001b(B \u001b$(DOQ\u001b(B \u001b$(DOR\u001b(B \u001b$(DOS\u001b(B \u001b$(DOT\u001b(B \u001b$(DOU\u001b(B \u001b$(DOV\u001b(B \u001b$(DOW\u001b(B \u001b$(DOX\u001b(B \u001b$(DOY\u001b(B \u001b$(DOZ\u001b(B \u001b$(DO[\u001b(B \u001b$(DO\\\u001b(B \u001b$(DO]\u001b(B \u001b$(DO^\u001b(B \u001b$(DO_\u001b(B\n\u001b$(DO`\u001b(B \u001b$(DOa\u001b(B \u001b$(DOb\u001b(B \u001b$(DOc\u001b(B \u001b$(DOd\u001b(B \u001b$(DOe\u001b(B \u001b$(DOf\u001b(B \u001b$(DOg\u001b(B \u001b$(DOh\u001b(B \u001b$(DOi\u001b(B \u001b$(DOj\u001b(B \u001b$(DOk\u001b(B \u001b$(DOl\u001b(B \u001b$(DOm\u001b(B \u001b$(DOn\u001b(B \u001b$(DOo\u001b(B\n\u001b$(DOp\u001b(B \u001b$(DOq\u001b(B \u001b$(DOr\u001b(B \u001b$(DOs\u001b(B \u001b$(DOt\u001b(B \u001b$(DOu\u001b(B \u001b$(DOv\u001b(B \u001b$(DOw\u001b(B \u001b$(DOx\u001b(B \u001b$(DOy\u001b(B \u001b$(DOz\u001b(B \u001b$(DO{\u001b(B \u001b$(DO|\u001b(B \u001b$(DO}\u001b(B \u001b$(DO~\u001b(B\n  \u001b$(DP!\u001b(B \u001b$(DP\"\u001b(B \u001b$(DP#\u001b(B \u001b$(DP$\u001b(B \u001b$(DP%\u001b(B \u001b$(DP&\u001b(B \u001b$(DP'\u001b(B \u001b$(DP(\u001b(B \u001b$(DP)\u001b(B \u001b$(DP*\u001b(B \u001b$(DP+\u001b(B \u001b$(DP,\u001b(B \u001b$(DP-\u001b(B \u001b$(DP.\u001b(B \u001b$(DP/\u001b(B\n\u001b$(DP0\u001b(B \u001b$(DP1\u001b(B \u001b$(DP2\u001b(B \u001b$(DP3\u001b(B \u001b$(DP4\u001b(B \u001b$(DP5\u001b(B \u001b$(DP6\u001b(B \u001b$(DP7\u001b(B \u001b$(DP8\u001b(B \u001b$(DP9\u001b(B \u001b$(DP:\u001b(B \u001b$(DP;\u001b(B \u001b$(DP<\u001b(B \u001b$(DP=\u001b(B \u001b$(DP>\u001b(B \u001b$(DP?\u001b(B\n\u001b$(DP@\u001b(B \u001b$(DPA\u001b(B \u001b$(DPB\u001b(B \u001b$(DPC\u001b(B \u001b$(DPD\u001b(B \u001b$(DPE\u001b(B \u001b$(DPF\u001b(B \u001b$(DPG\u001b(B \u001b$(DPH\u001b(B \u001b$(DPI\u001b(B \u001b$(DPJ\u001b(B \u001b$(DPK\u001b(B \u001b$(DPL\u001b(B \u001b$(DPM\u001b(B \u001b$(DPN\u001b(B \u001b$(DPO\u001b(B\n\u001b$(DPP\u001b(B \u001b$(DPQ\u001b(B \u001b$(DPR\u001b(B \u001b$(DPS\u001b(B \u001b$(DPT\u001b(B \u001b$(DPU\u001b(B \u001b$(DPV\u001b(B \u001b$(DPW\u001b(B \u001b$(DPX\u001b(B \u001b$(DPY\u001b(B \u001b$(DPZ\u001b(B \u001b$(DP[\u001b(B \u001b$(DP\\\u001b(B \u001b$(DP]\u001b(B \u001b$(DP^\u001b(B \u001b$(DP_\u001b(B\n\u001b$(DP`\u001b(B \u001b$(DPa\u001b(B \u001b$(DPb\u001b(B \u001b$(DPc\u001b(B \u001b$(DPd\u001b(B \u001b$(DPe\u001b(B \u001b$(DPf\u001b(B \u001b$(DPg\u001b(B \u001b$(DPh\u001b(B \u001b$(DPi\u001b(B \u001b$(DPj\u001b(B \u001b$(DPk\u001b(B \u001b$(DPl\u001b(B \u001b$(DPm\u001b(B \u001b$(DPn\u001b(B \u001b$(DPo\u001b(B\n\u001b$(DPp\u001b(B \u001b$(DPq\u001b(B \u001b$(DPr\u001b(B \u001b$(DPs\u001b(B \u001b$(DPt\u001b(B \u001b$(DPu\u001b(B \u001b$(DPv\u001b(B \u001b$(DPw\u001b(B \u001b$(DPx\u001b(B \u001b$(DPy\u001b(B \u001b$(DPz\u001b(B \u001b$(DP{\u001b(B \u001b$(DP|\u001b(B \u001b$(DP}\u001b(B \u001b$(DP~\u001b(B\n  \u001b$(DQ!\u001b(B \u001b$(DQ\"\u001b(B \u001b$(DQ#\u001b(B \u001b$(DQ$\u001b(B \u001b$(DQ%\u001b(B \u001b$(DQ&\u001b(B \u001b$(DQ'\u001b(B \u001b$(DQ(\u001b(B \u001b$(DQ)\u001b(B \u001b$(DQ*\u001b(B \u001b$(DQ+\u001b(B \u001b$(DQ,\u001b(B \u001b$(DQ-\u001b(B \u001b$(DQ.\u001b(B \u001b$(DQ/\u001b(B\n\u001b$(DQ0\u001b(B \u001b$(DQ1\u001b(B \u001b$(DQ2\u001b(B \u001b$(DQ3\u001b(B \u001b$(DQ4\u001b(B \u001b$(DQ5\u001b(B \u001b$(DQ6\u001b(B \u001b$(DQ7\u001b(B \u001b$(DQ8\u001b(B \u001b$(DQ9\u001b(B \u001b$(DQ:\u001b(B \u001b$(DQ;\u001b(B \u001b$(DQ<\u001b(B \u001b$(DQ=\u001b(B \u001b$(DQ>\u001b(B \u001b$(DQ?\u001b(B\n\u001b$(DQ@\u001b(B \u001b$(DQA\u001b(B \u001b$(DQB\u001b(B \u001b$(DQC\u001b(B \u001b$(DQD\u001b(B \u001b$(DQE\u001b(B \u001b$(DQF\u001b(B \u001b$(DQG\u001b(B \u001b$(DQH\u001b(B \u001b$(DQI\u001b(B \u001b$(DQJ\u001b(B \u001b$(DQK\u001b(B \u001b$(DQL\u001b(B \u001b$(DQM\u001b(B \u001b$(DQN\u001b(B \u001b$(DQO\u001b(B\n\u001b$(DQP\u001b(B \u001b$(DQQ\u001b(B \u001b$(DQR\u001b(B \u001b$(DQS\u001b(B \u001b$(DQT\u001b(B \u001b$(DQU\u001b(B \u001b$(DQV\u001b(B \u001b$(DQW\u001b(B \u001b$(DQX\u001b(B \u001b$(DQY\u001b(B \u001b$(DQZ\u001b(B \u001b$(DQ[\u001b(B \u001b$(DQ\\\u001b(B \u001b$(DQ]\u001b(B \u001b$(DQ^\u001b(B \u001b$(DQ_\u001b(B\n\u001b$(DQ`\u001b(B \u001b$(DQa\u001b(B \u001b$(DQb\u001b(B \u001b$(DQc\u001b(B \u001b$(DQd\u001b(B \u001b$(DQe\u001b(B \u001b$(DQf\u001b(B \u001b$(DQg\u001b(B \u001b$(DQh\u001b(B \u001b$(DQi\u001b(B \u001b$(DQj\u001b(B \u001b$(DQk\u001b(B \u001b$(DQl\u001b(B \u001b$(DQm\u001b(B \u001b$(DQn\u001b(B \u001b$(DQo\u001b(B\n\u001b$(DQp\u001b(B \u001b$(DQq\u001b(B \u001b$(DQr\u001b(B \u001b$(DQs\u001b(B \u001b$(DQt\u001b(B \u001b$(DQu\u001b(B \u001b$(DQv\u001b(B \u001b$(DQw\u001b(B \u001b$(DQx\u001b(B \u001b$(DQy\u001b(B \u001b$(DQz\u001b(B \u001b$(DQ{\u001b(B \u001b$(DQ|\u001b(B \u001b$(DQ}\u001b(B \u001b$(DQ~\u001b(B\n  \u001b$(DR!\u001b(B \u001b$(DR\"\u001b(B \u001b$(DR#\u001b(B \u001b$(DR$\u001b(B \u001b$(DR%\u001b(B \u001b$(DR&\u001b(B \u001b$(DR'\u001b(B \u001b$(DR(\u001b(B \u001b$(DR)\u001b(B \u001b$(DR*\u001b(B \u001b$(DR+\u001b(B \u001b$(DR,\u001b(B \u001b$(DR-\u001b(B \u001b$(DR.\u001b(B \u001b$(DR/\u001b(B\n\u001b$(DR0\u001b(B \u001b$(DR1\u001b(B \u001b$(DR2\u001b(B \u001b$(DR3\u001b(B \u001b$(DR4\u001b(B \u001b$(DR5\u001b(B \u001b$(DR6\u001b(B \u001b$(DR7\u001b(B \u001b$(DR8\u001b(B \u001b$(DR9\u001b(B \u001b$(DR:\u001b(B \u001b$(DR;\u001b(B \u001b$(DR<\u001b(B \u001b$(DR=\u001b(B \u001b$(DR>\u001b(B \u001b$(DR?\u001b(B\n\u001b$(DR@\u001b(B \u001b$(DRA\u001b(B \u001b$(DRB\u001b(B \u001b$(DRC\u001b(B \u001b$(DRD\u001b(B \u001b$(DRE\u001b(B \u001b$(DRF\u001b(B \u001b$(DRG\u001b(B \u001b$(DRH\u001b(B \u001b$(DRI\u001b(B \u001b$(DRJ\u001b(B \u001b$(DRK\u001b(B \u001b$(DRL\u001b(B \u001b$(DRM\u001b(B \u001b$(DRN\u001b(B \u001b$(DRO\u001b(B\n\u001b$(DRP\u001b(B \u001b$(DRQ\u001b(B \u001b$(DRR\u001b(B \u001b$(DRS\u001b(B \u001b$(DRT\u001b(B \u001b$(DRU\u001b(B \u001b$(DRV\u001b(B \u001b$(DRW\u001b(B \u001b$(DRX\u001b(B \u001b$(DRY\u001b(B \u001b$(DRZ\u001b(B \u001b$(DR[\u001b(B \u001b$(DR\\\u001b(B \u001b$(DR]\u001b(B \u001b$(DR^\u001b(B \u001b$(DR_\u001b(B\n\u001b$(DR`\u001b(B \u001b$(DRa\u001b(B \u001b$(DRb\u001b(B \u001b$(DRc\u001b(B \u001b$(DRd\u001b(B \u001b$(DRe\u001b(B \u001b$(DRf\u001b(B \u001b$(DRg\u001b(B \u001b$(DRh\u001b(B \u001b$(DRi\u001b(B \u001b$(DRj\u001b(B \u001b$(DRk\u001b(B \u001b$(DRl\u001b(B \u001b$(DRm\u001b(B \u001b$(DRn\u001b(B \u001b$(DRo\u001b(B\n\u001b$(DRp\u001b(B \u001b$(DRq\u001b(B \u001b$(DRr\u001b(B \u001b$(DRs\u001b(B \u001b$(DRt\u001b(B \u001b$(DRu\u001b(B \u001b$(DRv\u001b(B \u001b$(DRw\u001b(B \u001b$(DRx\u001b(B \u001b$(DRy\u001b(B \u001b$(DRz\u001b(B \u001b$(DR{\u001b(B \u001b$(DR|\u001b(B \u001b$(DR}\u001b(B \u001b$(DR~\u001b(B\n  \u001b$(DS!\u001b(B \u001b$(DS\"\u001b(B \u001b$(DS#\u001b(B \u001b$(DS$\u001b(B \u001b$(DS%\u001b(B \u001b$(DS&\u001b(B \u001b$(DS'\u001b(B \u001b$(DS(\u001b(B \u001b$(DS)\u001b(B \u001b$(DS*\u001b(B \u001b$(DS+\u001b(B \u001b$(DS,\u001b(B \u001b$(DS-\u001b(B \u001b$(DS.\u001b(B \u001b$(DS/\u001b(B\n\u001b$(DS0\u001b(B \u001b$(DS1\u001b(B \u001b$(DS2\u001b(B \u001b$(DS3\u001b(B \u001b$(DS4\u001b(B \u001b$(DS5\u001b(B \u001b$(DS6\u001b(B \u001b$(DS7\u001b(B \u001b$(DS8\u001b(B \u001b$(DS9\u001b(B \u001b$(DS:\u001b(B \u001b$(DS;\u001b(B \u001b$(DS<\u001b(B \u001b$(DS=\u001b(B \u001b$(DS>\u001b(B \u001b$(DS?\u001b(B\n\u001b$(DS@\u001b(B \u001b$(DSA\u001b(B \u001b$(DSB\u001b(B \u001b$(DSC\u001b(B \u001b$(DSD\u001b(B \u001b$(DSE\u001b(B \u001b$(DSF\u001b(B \u001b$(DSG\u001b(B \u001b$(DSH\u001b(B \u001b$(DSI\u001b(B \u001b$(DSJ\u001b(B \u001b$(DSK\u001b(B \u001b$(DSL\u001b(B \u001b$(DSM\u001b(B \u001b$(DSN\u001b(B \u001b$(DSO\u001b(B\n\u001b$(DSP\u001b(B \u001b$(DSQ\u001b(B \u001b$(DSR\u001b(B \u001b$(DSS\u001b(B \u001b$(DST\u001b(B \u001b$(DSU\u001b(B \u001b$(DSV\u001b(B \u001b$(DSW\u001b(B \u001b$(DSX\u001b(B \u001b$(DSY\u001b(B \u001b$(DSZ\u001b(B \u001b$(DS[\u001b(B \u001b$(DS\\\u001b(B \u001b$(DS]\u001b(B \u001b$(DS^\u001b(B \u001b$(DS_\u001b(B\n\u001b$(DS`\u001b(B \u001b$(DSa\u001b(B \u001b$(DSb\u001b(B \u001b$(DSc\u001b(B \u001b$(DSd\u001b(B \u001b$(DSe\u001b(B \u001b$(DSf\u001b(B \u001b$(DSg\u001b(B \u001b$(DSh\u001b(B \u001b$(DSi\u001b(B \u001b$(DSj\u001b(B \u001b$(DSk\u001b(B \u001b$(DSl\u001b(B \u001b$(DSm\u001b(B \u001b$(DSn\u001b(B \u001b$(DSo\u001b(B\n\u001b$(DSp\u001b(B \u001b$(DSq\u001b(B \u001b$(DSr\u001b(B \u001b$(DSs\u001b(B \u001b$(DSt\u001b(B \u001b$(DSu\u001b(B \u001b$(DSv\u001b(B \u001b$(DSw\u001b(B \u001b$(DSx\u001b(B \u001b$(DSy\u001b(B \u001b$(DSz\u001b(B \u001b$(DS{\u001b(B \u001b$(DS|\u001b(B \u001b$(DS}\u001b(B \u001b$(DS~\u001b(B\n  \u001b$(DT!\u001b(B \u001b$(DT\"\u001b(B \u001b$(DT#\u001b(B \u001b$(DT$\u001b(B \u001b$(DT%\u001b(B \u001b$(DT&\u001b(B \u001b$(DT'\u001b(B \u001b$(DT(\u001b(B \u001b$(DT)\u001b(B \u001b$(DT*\u001b(B \u001b$(DT+\u001b(B \u001b$(DT,\u001b(B \u001b$(DT-\u001b(B \u001b$(DT.\u001b(B \u001b$(DT/\u001b(B\n\u001b$(DT0\u001b(B \u001b$(DT1\u001b(B \u001b$(DT2\u001b(B \u001b$(DT3\u001b(B \u001b$(DT4\u001b(B \u001b$(DT5\u001b(B \u001b$(DT6\u001b(B \u001b$(DT7\u001b(B \u001b$(DT8\u001b(B \u001b$(DT9\u001b(B \u001b$(DT:\u001b(B \u001b$(DT;\u001b(B \u001b$(DT<\u001b(B \u001b$(DT=\u001b(B \u001b$(DT>\u001b(B \u001b$(DT?\u001b(B\n\u001b$(DT@\u001b(B \u001b$(DTA\u001b(B \u001b$(DTB\u001b(B \u001b$(DTC\u001b(B \u001b$(DTD\u001b(B \u001b$(DTE\u001b(B \u001b$(DTF\u001b(B \u001b$(DTG\u001b(B \u001b$(DTH\u001b(B \u001b$(DTI\u001b(B \u001b$(DTJ\u001b(B \u001b$(DTK\u001b(B \u001b$(DTL\u001b(B \u001b$(DTM\u001b(B \u001b$(DTN\u001b(B \u001b$(DTO\u001b(B\n\u001b$(DTP\u001b(B \u001b$(DTQ\u001b(B \u001b$(DTR\u001b(B \u001b$(DTS\u001b(B \u001b$(DTT\u001b(B \u001b$(DTU\u001b(B \u001b$(DTV\u001b(B \u001b$(DTW\u001b(B \u001b$(DTX\u001b(B \u001b$(DTY\u001b(B \u001b$(DTZ\u001b(B \u001b$(DT[\u001b(B \u001b$(DT\\\u001b(B \u001b$(DT]\u001b(B \u001b$(DT^\u001b(B \u001b$(DT_\u001b(B\n\u001b$(DT`\u001b(B \u001b$(DTa\u001b(B \u001b$(DTb\u001b(B \u001b$(DTc\u001b(B \u001b$(DTd\u001b(B \u001b$(DTe\u001b(B \u001b$(DTf\u001b(B \u001b$(DTg\u001b(B \u001b$(DTh\u001b(B \u001b$(DTi\u001b(B \u001b$(DTj\u001b(B \u001b$(DTk\u001b(B \u001b$(DTl\u001b(B \u001b$(DTm\u001b(B \u001b$(DTn\u001b(B \u001b$(DTo\u001b(B\n\u001b$(DTp\u001b(B \u001b$(DTq\u001b(B \u001b$(DTr\u001b(B \u001b$(DTs\u001b(B \u001b$(DTt\u001b(B \u001b$(DTu\u001b(B \u001b$(DTv\u001b(B \u001b$(DTw\u001b(B \u001b$(DTx\u001b(B \u001b$(DTy\u001b(B \u001b$(DTz\u001b(B \u001b$(DT{\u001b(B \u001b$(DT|\u001b(B \u001b$(DT}\u001b(B \u001b$(DT~\u001b(B\n  \u001b$(DU!\u001b(B \u001b$(DU\"\u001b(B \u001b$(DU#\u001b(B \u001b$(DU$\u001b(B \u001b$(DU%\u001b(B \u001b$(DU&\u001b(B \u001b$(DU'\u001b(B \u001b$(DU(\u001b(B \u001b$(DU)\u001b(B \u001b$(DU*\u001b(B \u001b$(DU+\u001b(B \u001b$(DU,\u001b(B \u001b$(DU-\u001b(B \u001b$(DU.\u001b(B \u001b$(DU/\u001b(B\n\u001b$(DU0\u001b(B \u001b$(DU1\u001b(B \u001b$(DU2\u001b(B \u001b$(DU3\u001b(B \u001b$(DU4\u001b(B \u001b$(DU5\u001b(B \u001b$(DU6\u001b(B \u001b$(DU7\u001b(B \u001b$(DU8\u001b(B \u001b$(DU9\u001b(B \u001b$(DU:\u001b(B \u001b$(DU;\u001b(B \u001b$(DU<\u001b(B \u001b$(DU=\u001b(B \u001b$(DU>\u001b(B \u001b$(DU?\u001b(B\n\u001b$(DU@\u001b(B \u001b$(DUA\u001b(B \u001b$(DUB\u001b(B \u001b$(DUC\u001b(B \u001b$(DUD\u001b(B \u001b$(DUE\u001b(B \u001b$(DUF\u001b(B \u001b$(DUG\u001b(B \u001b$(DUH\u001b(B \u001b$(DUI\u001b(B \u001b$(DUJ\u001b(B \u001b$(DUK\u001b(B \u001b$(DUL\u001b(B \u001b$(DUM\u001b(B \u001b$(DUN\u001b(B \u001b$(DUO\u001b(B\n\u001b$(DUP\u001b(B \u001b$(DUQ\u001b(B \u001b$(DUR\u001b(B \u001b$(DUS\u001b(B \u001b$(DUT\u001b(B \u001b$(DUU\u001b(B \u001b$(DUV\u001b(B \u001b$(DUW\u001b(B \u001b$(DUX\u001b(B \u001b$(DUY\u001b(B \u001b$(DUZ\u001b(B \u001b$(DU[\u001b(B \u001b$(DU\\\u001b(B \u001b$(DU]\u001b(B \u001b$(DU^\u001b(B \u001b$(DU_\u001b(B\n\u001b$(DU`\u001b(B \u001b$(DUa\u001b(B \u001b$(DUb\u001b(B \u001b$(DUc\u001b(B \u001b$(DUd\u001b(B \u001b$(DUe\u001b(B \u001b$(DUf\u001b(B \u001b$(DUg\u001b(B \u001b$(DUh\u001b(B \u001b$(DUi\u001b(B \u001b$(DUj\u001b(B \u001b$(DUk\u001b(B \u001b$(DUl\u001b(B \u001b$(DUm\u001b(B \u001b$(DUn\u001b(B \u001b$(DUo\u001b(B\n\u001b$(DUp\u001b(B \u001b$(DUq\u001b(B \u001b$(DUr\u001b(B \u001b$(DUs\u001b(B \u001b$(DUt\u001b(B \u001b$(DUu\u001b(B \u001b$(DUv\u001b(B \u001b$(DUw\u001b(B \u001b$(DUx\u001b(B \u001b$(DUy\u001b(B \u001b$(DUz\u001b(B \u001b$(DU{\u001b(B \u001b$(DU|\u001b(B \u001b$(DU}\u001b(B \u001b$(DU~\u001b(B\n  \u001b$(DV!\u001b(B \u001b$(DV\"\u001b(B \u001b$(DV#\u001b(B \u001b$(DV$\u001b(B \u001b$(DV%\u001b(B \u001b$(DV&\u001b(B \u001b$(DV'\u001b(B \u001b$(DV(\u001b(B \u001b$(DV)\u001b(B \u001b$(DV*\u001b(B \u001b$(DV+\u001b(B \u001b$(DV,\u001b(B \u001b$(DV-\u001b(B \u001b$(DV.\u001b(B \u001b$(DV/\u001b(B\n\u001b$(DV0\u001b(B \u001b$(DV1\u001b(B \u001b$(DV2\u001b(B \u001b$(DV3\u001b(B \u001b$(DV4\u001b(B \u001b$(DV5\u001b(B \u001b$(DV6\u001b(B \u001b$(DV7\u001b(B \u001b$(DV8\u001b(B \u001b$(DV9\u001b(B \u001b$(DV:\u001b(B \u001b$(DV;\u001b(B \u001b$(DV<\u001b(B \u001b$(DV=\u001b(B \u001b$(DV>\u001b(B \u001b$(DV?\u001b(B\n\u001b$(DV@\u001b(B \u001b$(DVA\u001b(B \u001b$(DVB\u001b(B \u001b$(DVC\u001b(B \u001b$(DVD\u001b(B \u001b$(DVE\u001b(B \u001b$(DVF\u001b(B \u001b$(DVG\u001b(B \u001b$(DVH\u001b(B \u001b$(DVI\u001b(B \u001b$(DVJ\u001b(B \u001b$(DVK\u001b(B \u001b$(DVL\u001b(B \u001b$(DVM\u001b(B \u001b$(DVN\u001b(B \u001b$(DVO\u001b(B\n\u001b$(DVP\u001b(B \u001b$(DVQ\u001b(B \u001b$(DVR\u001b(B \u001b$(DVS\u001b(B \u001b$(DVT\u001b(B \u001b$(DVU\u001b(B \u001b$(DVV\u001b(B \u001b$(DVW\u001b(B \u001b$(DVX\u001b(B \u001b$(DVY\u001b(B \u001b$(DVZ\u001b(B \u001b$(DV[\u001b(B \u001b$(DV\\\u001b(B \u001b$(DV]\u001b(B \u001b$(DV^\u001b(B \u001b$(DV_\u001b(B\n\u001b$(DV`\u001b(B \u001b$(DVa\u001b(B \u001b$(DVb\u001b(B \u001b$(DVc\u001b(B \u001b$(DVd\u001b(B \u001b$(DVe\u001b(B \u001b$(DVf\u001b(B \u001b$(DVg\u001b(B \u001b$(DVh\u001b(B \u001b$(DVi\u001b(B \u001b$(DVj\u001b(B \u001b$(DVk\u001b(B \u001b$(DVl\u001b(B \u001b$(DVm\u001b(B \u001b$(DVn\u001b(B \u001b$(DVo\u001b(B\n\u001b$(DVp\u001b(B \u001b$(DVq\u001b(B \u001b$(DVr\u001b(B \u001b$(DVs\u001b(B \u001b$(DVt\u001b(B \u001b$(DVu\u001b(B \u001b$(DVv\u001b(B \u001b$(DVw\u001b(B \u001b$(DVx\u001b(B \u001b$(DVy\u001b(B \u001b$(DVz\u001b(B \u001b$(DV{\u001b(B \u001b$(DV|\u001b(B \u001b$(DV}\u001b(B \u001b$(DV~\u001b(B\n  \u001b$(DW!\u001b(B \u001b$(DW\"\u001b(B \u001b$(DW#\u001b(B \u001b$(DW$\u001b(B \u001b$(DW%\u001b(B \u001b$(DW&\u001b(B \u001b$(DW'\u001b(B \u001b$(DW(\u001b(B \u001b$(DW)\u001b(B \u001b$(DW*\u001b(B \u001b$(DW+\u001b(B \u001b$(DW,\u001b(B \u001b$(DW-\u001b(B \u001b$(DW.\u001b(B \u001b$(DW/\u001b(B\n\u001b$(DW0\u001b(B \u001b$(DW1\u001b(B \u001b$(DW2\u001b(B \u001b$(DW3\u001b(B \u001b$(DW4\u001b(B \u001b$(DW5\u001b(B \u001b$(DW6\u001b(B \u001b$(DW7\u001b(B \u001b$(DW8\u001b(B \u001b$(DW9\u001b(B \u001b$(DW:\u001b(B \u001b$(DW;\u001b(B \u001b$(DW<\u001b(B \u001b$(DW=\u001b(B \u001b$(DW>\u001b(B \u001b$(DW?\u001b(B\n\u001b$(DW@\u001b(B \u001b$(DWA\u001b(B \u001b$(DWB\u001b(B \u001b$(DWC\u001b(B \u001b$(DWD\u001b(B \u001b$(DWE\u001b(B \u001b$(DWF\u001b(B \u001b$(DWG\u001b(B \u001b$(DWH\u001b(B \u001b$(DWI\u001b(B \u001b$(DWJ\u001b(B \u001b$(DWK\u001b(B \u001b$(DWL\u001b(B \u001b$(DWM\u001b(B \u001b$(DWN\u001b(B \u001b$(DWO\u001b(B\n\u001b$(DWP\u001b(B \u001b$(DWQ\u001b(B \u001b$(DWR\u001b(B \u001b$(DWS\u001b(B \u001b$(DWT\u001b(B \u001b$(DWU\u001b(B \u001b$(DWV\u001b(B \u001b$(DWW\u001b(B \u001b$(DWX\u001b(B \u001b$(DWY\u001b(B \u001b$(DWZ\u001b(B \u001b$(DW[\u001b(B \u001b$(DW\\\u001b(B \u001b$(DW]\u001b(B \u001b$(DW^\u001b(B \u001b$(DW_\u001b(B\n\u001b$(DW`\u001b(B \u001b$(DWa\u001b(B \u001b$(DWb\u001b(B \u001b$(DWc\u001b(B \u001b$(DWd\u001b(B \u001b$(DWe\u001b(B \u001b$(DWf\u001b(B \u001b$(DWg\u001b(B \u001b$(DWh\u001b(B \u001b$(DWi\u001b(B \u001b$(DWj\u001b(B \u001b$(DWk\u001b(B \u001b$(DWl\u001b(B \u001b$(DWm\u001b(B \u001b$(DWn\u001b(B \u001b$(DWo\u001b(B\n\u001b$(DWp\u001b(B \u001b$(DWq\u001b(B \u001b$(DWr\u001b(B \u001b$(DWs\u001b(B \u001b$(DWt\u001b(B \u001b$(DWu\u001b(B \u001b$(DWv\u001b(B \u001b$(DWw\u001b(B \u001b$(DWx\u001b(B \u001b$(DWy\u001b(B \u001b$(DWz\u001b(B \u001b$(DW{\u001b(B \u001b$(DW|\u001b(B \u001b$(DW}\u001b(B \u001b$(DW~\u001b(B\n  \u001b$(DX!\u001b(B \u001b$(DX\"\u001b(B \u001b$(DX#\u001b(B \u001b$(DX$\u001b(B \u001b$(DX%\u001b(B \u001b$(DX&\u001b(B \u001b$(DX'\u001b(B \u001b$(DX(\u001b(B \u001b$(DX)\u001b(B \u001b$(DX*\u001b(B \u001b$(DX+\u001b(B \u001b$(DX,\u001b(B \u001b$(DX-\u001b(B \u001b$(DX.\u001b(B \u001b$(DX/\u001b(B\n\u001b$(DX0\u001b(B \u001b$(DX1\u001b(B \u001b$(DX2\u001b(B \u001b$(DX3\u001b(B \u001b$(DX4\u001b(B \u001b$(DX5\u001b(B \u001b$(DX6\u001b(B \u001b$(DX7\u001b(B \u001b$(DX8\u001b(B \u001b$(DX9\u001b(B \u001b$(DX:\u001b(B \u001b$(DX;\u001b(B \u001b$(DX<\u001b(B \u001b$(DX=\u001b(B \u001b$(DX>\u001b(B \u001b$(DX?\u001b(B\n\u001b$(DX@\u001b(B \u001b$(DXA\u001b(B \u001b$(DXB\u001b(B \u001b$(DXC\u001b(B \u001b$(DXD\u001b(B \u001b$(DXE\u001b(B \u001b$(DXF\u001b(B \u001b$(DXG\u001b(B \u001b$(DXH\u001b(B \u001b$(DXI\u001b(B \u001b$(DXJ\u001b(B \u001b$(DXK\u001b(B \u001b$(DXL\u001b(B \u001b$(DXM\u001b(B \u001b$(DXN\u001b(B \u001b$(DXO\u001b(B\n\u001b$(DXP\u001b(B \u001b$(DXQ\u001b(B \u001b$(DXR\u001b(B \u001b$(DXS\u001b(B \u001b$(DXT\u001b(B \u001b$(DXU\u001b(B \u001b$(DXV\u001b(B \u001b$(DXW\u001b(B \u001b$(DXX\u001b(B \u001b$(DXY\u001b(B \u001b$(DXZ\u001b(B \u001b$(DX[\u001b(B \u001b$(DX\\\u001b(B \u001b$(DX]\u001b(B \u001b$(DX^\u001b(B \u001b$(DX_\u001b(B\n\u001b$(DX`\u001b(B \u001b$(DXa\u001b(B \u001b$(DXb\u001b(B \u001b$(DXc\u001b(B \u001b$(DXd\u001b(B \u001b$(DXe\u001b(B \u001b$(DXf\u001b(B \u001b$(DXg\u001b(B \u001b$(DXh\u001b(B \u001b$(DXi\u001b(B \u001b$(DXj\u001b(B \u001b$(DXk\u001b(B \u001b$(DXl\u001b(B \u001b$(DXm\u001b(B \u001b$(DXn\u001b(B \u001b$(DXo\u001b(B\n\u001b$(DXp\u001b(B \u001b$(DXq\u001b(B \u001b$(DXr\u001b(B \u001b$(DXs\u001b(B \u001b$(DXt\u001b(B \u001b$(DXu\u001b(B \u001b$(DXv\u001b(B \u001b$(DXw\u001b(B \u001b$(DXx\u001b(B \u001b$(DXy\u001b(B \u001b$(DXz\u001b(B \u001b$(DX{\u001b(B \u001b$(DX|\u001b(B \u001b$(DX}\u001b(B \u001b$(DX~\u001b(B\n  \u001b$(DY!\u001b(B \u001b$(DY\"\u001b(B \u001b$(DY#\u001b(B \u001b$(DY$\u001b(B \u001b$(DY%\u001b(B \u001b$(DY&\u001b(B \u001b$(DY'\u001b(B \u001b$(DY(\u001b(B \u001b$(DY)\u001b(B \u001b$(DY*\u001b(B \u001b$(DY+\u001b(B \u001b$(DY,\u001b(B \u001b$(DY-\u001b(B \u001b$(DY.\u001b(B \u001b$(DY/\u001b(B\n\u001b$(DY0\u001b(B \u001b$(DY1\u001b(B \u001b$(DY2\u001b(B \u001b$(DY3\u001b(B \u001b$(DY4\u001b(B \u001b$(DY5\u001b(B \u001b$(DY6\u001b(B \u001b$(DY7\u001b(B \u001b$(DY8\u001b(B \u001b$(DY9\u001b(B \u001b$(DY:\u001b(B \u001b$(DY;\u001b(B \u001b$(DY<\u001b(B \u001b$(DY=\u001b(B \u001b$(DY>\u001b(B \u001b$(DY?\u001b(B\n\u001b$(DY@\u001b(B \u001b$(DYA\u001b(B \u001b$(DYB\u001b(B \u001b$(DYC\u001b(B \u001b$(DYD\u001b(B \u001b$(DYE\u001b(B \u001b$(DYF\u001b(B \u001b$(DYG\u001b(B \u001b$(DYH\u001b(B \u001b$(DYI\u001b(B \u001b$(DYJ\u001b(B \u001b$(DYK\u001b(B \u001b$(DYL\u001b(B \u001b$(DYM\u001b(B \u001b$(DYN\u001b(B \u001b$(DYO\u001b(B\n\u001b$(DYP\u001b(B \u001b$(DYQ\u001b(B \u001b$(DYR\u001b(B \u001b$(DYS\u001b(B \u001b$(DYT\u001b(B \u001b$(DYU\u001b(B \u001b$(DYV\u001b(B \u001b$(DYW\u001b(B \u001b$(DYX\u001b(B \u001b$(DYY\u001b(B \u001b$(DYZ\u001b(B \u001b$(DY[\u001b(B \u001b$(DY\\\u001b(B \u001b$(DY]\u001b(B \u001b$(DY^\u001b(B \u001b$(DY_\u001b(B\n\u001b$(DY`\u001b(B \u001b$(DYa\u001b(B \u001b$(DYb\u001b(B \u001b$(DYc\u001b(B \u001b$(DYd\u001b(B \u001b$(DYe\u001b(B \u001b$(DYf\u001b(B \u001b$(DYg\u001b(B \u001b$(DYh\u001b(B \u001b$(DYi\u001b(B \u001b$(DYj\u001b(B \u001b$(DYk\u001b(B \u001b$(DYl\u001b(B \u001b$(DYm\u001b(B \u001b$(DYn\u001b(B \u001b$(DYo\u001b(B\n\u001b$(DYp\u001b(B \u001b$(DYq\u001b(B \u001b$(DYr\u001b(B \u001b$(DYs\u001b(B \u001b$(DYt\u001b(B \u001b$(DYu\u001b(B \u001b$(DYv\u001b(B \u001b$(DYw\u001b(B \u001b$(DYx\u001b(B \u001b$(DYy\u001b(B \u001b$(DYz\u001b(B \u001b$(DY{\u001b(B \u001b$(DY|\u001b(B \u001b$(DY}\u001b(B \u001b$(DY~\u001b(B\n  \u001b$(DZ!\u001b(B \u001b$(DZ\"\u001b(B \u001b$(DZ#\u001b(B \u001b$(DZ$\u001b(B \u001b$(DZ%\u001b(B \u001b$(DZ&\u001b(B \u001b$(DZ'\u001b(B \u001b$(DZ(\u001b(B \u001b$(DZ)\u001b(B \u001b$(DZ*\u001b(B \u001b$(DZ+\u001b(B \u001b$(DZ,\u001b(B \u001b$(DZ-\u001b(B \u001b$(DZ.\u001b(B \u001b$(DZ/\u001b(B\n\u001b$(DZ0\u001b(B \u001b$(DZ1\u001b(B \u001b$(DZ2\u001b(B \u001b$(DZ3\u001b(B \u001b$(DZ4\u001b(B \u001b$(DZ5\u001b(B \u001b$(DZ6\u001b(B \u001b$(DZ7\u001b(B \u001b$(DZ8\u001b(B \u001b$(DZ9\u001b(B \u001b$(DZ:\u001b(B \u001b$(DZ;\u001b(B \u001b$(DZ<\u001b(B \u001b$(DZ=\u001b(B \u001b$(DZ>\u001b(B \u001b$(DZ?\u001b(B\n\u001b$(DZ@\u001b(B \u001b$(DZA\u001b(B \u001b$(DZB\u001b(B \u001b$(DZC\u001b(B \u001b$(DZD\u001b(B \u001b$(DZE\u001b(B \u001b$(DZF\u001b(B \u001b$(DZG\u001b(B \u001b$(DZH\u001b(B \u001b$(DZI\u001b(B \u001b$(DZJ\u001b(B \u001b$(DZK\u001b(B \u001b$(DZL\u001b(B \u001b$(DZM\u001b(B \u001b$(DZN\u001b(B \u001b$(DZO\u001b(B\n\u001b$(DZP\u001b(B \u001b$(DZQ\u001b(B \u001b$(DZR\u001b(B \u001b$(DZS\u001b(B \u001b$(DZT\u001b(B \u001b$(DZU\u001b(B \u001b$(DZV\u001b(B \u001b$(DZW\u001b(B \u001b$(DZX\u001b(B \u001b$(DZY\u001b(B \u001b$(DZZ\u001b(B \u001b$(DZ[\u001b(B \u001b$(DZ\\\u001b(B \u001b$(DZ]\u001b(B \u001b$(DZ^\u001b(B \u001b$(DZ_\u001b(B\n\u001b$(DZ`\u001b(B \u001b$(DZa\u001b(B \u001b$(DZb\u001b(B \u001b$(DZc\u001b(B \u001b$(DZd\u001b(B \u001b$(DZe\u001b(B \u001b$(DZf\u001b(B \u001b$(DZg\u001b(B \u001b$(DZh\u001b(B \u001b$(DZi\u001b(B \u001b$(DZj\u001b(B \u001b$(DZk\u001b(B \u001b$(DZl\u001b(B \u001b$(DZm\u001b(B \u001b$(DZn\u001b(B \u001b$(DZo\u001b(B\n\u001b$(DZp\u001b(B \u001b$(DZq\u001b(B \u001b$(DZr\u001b(B \u001b$(DZs\u001b(B \u001b$(DZt\u001b(B \u001b$(DZu\u001b(B \u001b$(DZv\u001b(B \u001b$(DZw\u001b(B \u001b$(DZx\u001b(B \u001b$(DZy\u001b(B \u001b$(DZz\u001b(B \u001b$(DZ{\u001b(B \u001b$(DZ|\u001b(B \u001b$(DZ}\u001b(B \u001b$(DZ~\u001b(B\n  \u001b$(D[!\u001b(B \u001b$(D[\"\u001b(B \u001b$(D[#\u001b(B \u001b$(D[$\u001b(B \u001b$(D[%\u001b(B \u001b$(D[&\u001b(B \u001b$(D['\u001b(B \u001b$(D[(\u001b(B \u001b$(D[)\u001b(B \u001b$(D[*\u001b(B \u001b$(D[+\u001b(B \u001b$(D[,\u001b(B \u001b$(D[-\u001b(B \u001b$(D[.\u001b(B \u001b$(D[/\u001b(B\n\u001b$(D[0\u001b(B \u001b$(D[1\u001b(B \u001b$(D[2\u001b(B \u001b$(D[3\u001b(B \u001b$(D[4\u001b(B \u001b$(D[5\u001b(B \u001b$(D[6\u001b(B \u001b$(D[7\u001b(B \u001b$(D[8\u001b(B \u001b$(D[9\u001b(B \u001b$(D[:\u001b(B \u001b$(D[;\u001b(B \u001b$(D[<\u001b(B \u001b$(D[=\u001b(B \u001b$(D[>\u001b(B \u001b$(D[?\u001b(B\n\u001b$(D[@\u001b(B \u001b$(D[A\u001b(B \u001b$(D[B\u001b(B \u001b$(D[C\u001b(B \u001b$(D[D\u001b(B \u001b$(D[E\u001b(B \u001b$(D[F\u001b(B \u001b$(D[G\u001b(B \u001b$(D[H\u001b(B \u001b$(D[I\u001b(B \u001b$(D[J\u001b(B \u001b$(D[K\u001b(B \u001b$(D[L\u001b(B \u001b$(D[M\u001b(B \u001b$(D[N\u001b(B \u001b$(D[O\u001b(B\n\u001b$(D[P\u001b(B \u001b$(D[Q\u001b(B \u001b$(D[R\u001b(B \u001b$(D[S\u001b(B \u001b$(D[T\u001b(B \u001b$(D[U\u001b(B \u001b$(D[V\u001b(B \u001b$(D[W\u001b(B \u001b$(D[X\u001b(B \u001b$(D[Y\u001b(B \u001b$(D[Z\u001b(B \u001b$(D[[\u001b(B \u001b$(D[\\\u001b(B \u001b$(D[]\u001b(B \u001b$(D[^\u001b(B \u001b$(D[_\u001b(B\n\u001b$(D[`\u001b(B \u001b$(D[a\u001b(B \u001b$(D[b\u001b(B \u001b$(D[c\u001b(B \u001b$(D[d\u001b(B \u001b$(D[e\u001b(B \u001b$(D[f\u001b(B \u001b$(D[g\u001b(B \u001b$(D[h\u001b(B \u001b$(D[i\u001b(B \u001b$(D[j\u001b(B \u001b$(D[k\u001b(B \u001b$(D[l\u001b(B \u001b$(D[m\u001b(B \u001b$(D[n\u001b(B \u001b$(D[o\u001b(B\n\u001b$(D[p\u001b(B \u001b$(D[q\u001b(B \u001b$(D[r\u001b(B \u001b$(D[s\u001b(B \u001b$(D[t\u001b(B \u001b$(D[u\u001b(B \u001b$(D[v\u001b(B \u001b$(D[w\u001b(B \u001b$(D[x\u001b(B \u001b$(D[y\u001b(B \u001b$(D[z\u001b(B \u001b$(D[{\u001b(B \u001b$(D[|\u001b(B \u001b$(D[}\u001b(B \u001b$(D[~\u001b(B\n  \u001b$(D\\!\u001b(B \u001b$(D\\\"\u001b(B \u001b$(D\\#\u001b(B \u001b$(D\\$\u001b(B \u001b$(D\\%\u001b(B \u001b$(D\\&\u001b(B \u001b$(D\\'\u001b(B \u001b$(D\\(\u001b(B \u001b$(D\\)\u001b(B \u001b$(D\\*\u001b(B \u001b$(D\\+\u001b(B \u001b$(D\\,\u001b(B \u001b$(D\\-\u001b(B \u001b$(D\\.\u001b(B \u001b$(D\\/\u001b(B\n\u001b$(D\\0\u001b(B \u001b$(D\\1\u001b(B \u001b$(D\\2\u001b(B \u001b$(D\\3\u001b(B \u001b$(D\\4\u001b(B \u001b$(D\\5\u001b(B \u001b$(D\\6\u001b(B \u001b$(D\\7\u001b(B \u001b$(D\\8\u001b(B \u001b$(D\\9\u001b(B \u001b$(D\\:\u001b(B \u001b$(D\\;\u001b(B \u001b$(D\\<\u001b(B \u001b$(D\\=\u001b(B \u001b$(D\\>\u001b(B \u001b$(D\\?\u001b(B\n\u001b$(D\\@\u001b(B \u001b$(D\\A\u001b(B \u001b$(D\\B\u001b(B \u001b$(D\\C\u001b(B \u001b$(D\\D\u001b(B \u001b$(D\\E\u001b(B \u001b$(D\\F\u001b(B \u001b$(D\\G\u001b(B \u001b$(D\\H\u001b(B \u001b$(D\\I\u001b(B \u001b$(D\\J\u001b(B \u001b$(D\\K\u001b(B \u001b$(D\\L\u001b(B \u001b$(D\\M\u001b(B \u001b$(D\\N\u001b(B \u001b$(D\\O\u001b(B\n\u001b$(D\\P\u001b(B \u001b$(D\\Q\u001b(B \u001b$(D\\R\u001b(B \u001b$(D\\S\u001b(B \u001b$(D\\T\u001b(B \u001b$(D\\U\u001b(B \u001b$(D\\V\u001b(B \u001b$(D\\W\u001b(B \u001b$(D\\X\u001b(B \u001b$(D\\Y\u001b(B \u001b$(D\\Z\u001b(B \u001b$(D\\[\u001b(B \u001b$(D\\\\\u001b(B \u001b$(D\\]\u001b(B \u001b$(D\\^\u001b(B \u001b$(D\\_\u001b(B\n\u001b$(D\\`\u001b(B \u001b$(D\\a\u001b(B \u001b$(D\\b\u001b(B \u001b$(D\\c\u001b(B \u001b$(D\\d\u001b(B \u001b$(D\\e\u001b(B \u001b$(D\\f\u001b(B \u001b$(D\\g\u001b(B \u001b$(D\\h\u001b(B \u001b$(D\\i\u001b(B \u001b$(D\\j\u001b(B \u001b$(D\\k\u001b(B \u001b$(D\\l\u001b(B \u001b$(D\\m\u001b(B \u001b$(D\\n\u001b(B \u001b$(D\\o\u001b(B\n\u001b$(D\\p\u001b(B \u001b$(D\\q\u001b(B \u001b$(D\\r\u001b(B \u001b$(D\\s\u001b(B \u001b$(D\\t\u001b(B \u001b$(D\\u\u001b(B \u001b$(D\\v\u001b(B \u001b$(D\\w\u001b(B \u001b$(D\\x\u001b(B \u001b$(D\\y\u001b(B \u001b$(D\\z\u001b(B \u001b$(D\\{\u001b(B \u001b$(D\\|\u001b(B \u001b$(D\\}\u001b(B \u001b$(D\\~\u001b(B\n  \u001b$(D]!\u001b(B \u001b$(D]\"\u001b(B \u001b$(D]#\u001b(B \u001b$(D]$\u001b(B \u001b$(D]%\u001b(B \u001b$(D]&\u001b(B \u001b$(D]'\u001b(B \u001b$(D](\u001b(B \u001b$(D])\u001b(B \u001b$(D]*\u001b(B \u001b$(D]+\u001b(B \u001b$(D],\u001b(B \u001b$(D]-\u001b(B \u001b$(D].\u001b(B \u001b$(D]/\u001b(B\n\u001b$(D]0\u001b(B \u001b$(D]1\u001b(B \u001b$(D]2\u001b(B \u001b$(D]3\u001b(B \u001b$(D]4\u001b(B \u001b$(D]5\u001b(B \u001b$(D]6\u001b(B \u001b$(D]7\u001b(B \u001b$(D]8\u001b(B \u001b$(D]9\u001b(B \u001b$(D]:\u001b(B \u001b$(D];\u001b(B \u001b$(D]<\u001b(B \u001b$(D]=\u001b(B \u001b$(D]>\u001b(B \u001b$(D]?\u001b(B\n\u001b$(D]@\u001b(B \u001b$(D]A\u001b(B \u001b$(D]B\u001b(B \u001b$(D]C\u001b(B \u001b$(D]D\u001b(B \u001b$(D]E\u001b(B \u001b$(D]F\u001b(B \u001b$(D]G\u001b(B \u001b$(D]H\u001b(B \u001b$(D]I\u001b(B \u001b$(D]J\u001b(B \u001b$(D]K\u001b(B \u001b$(D]L\u001b(B \u001b$(D]M\u001b(B \u001b$(D]N\u001b(B \u001b$(D]O\u001b(B\n\u001b$(D]P\u001b(B \u001b$(D]Q\u001b(B \u001b$(D]R\u001b(B \u001b$(D]S\u001b(B \u001b$(D]T\u001b(B \u001b$(D]U\u001b(B \u001b$(D]V\u001b(B \u001b$(D]W\u001b(B \u001b$(D]X\u001b(B \u001b$(D]Y\u001b(B \u001b$(D]Z\u001b(B \u001b$(D][\u001b(B \u001b$(D]\\\u001b(B \u001b$(D]]\u001b(B \u001b$(D]^\u001b(B \u001b$(D]_\u001b(B\n\u001b$(D]`\u001b(B \u001b$(D]a\u001b(B \u001b$(D]b\u001b(B \u001b$(D]c\u001b(B \u001b$(D]d\u001b(B \u001b$(D]e\u001b(B \u001b$(D]f\u001b(B \u001b$(D]g\u001b(B \u001b$(D]h\u001b(B \u001b$(D]i\u001b(B \u001b$(D]j\u001b(B \u001b$(D]k\u001b(B \u001b$(D]l\u001b(B \u001b$(D]m\u001b(B \u001b$(D]n\u001b(B \u001b$(D]o\u001b(B\n\u001b$(D]p\u001b(B \u001b$(D]q\u001b(B \u001b$(D]r\u001b(B \u001b$(D]s\u001b(B \u001b$(D]t\u001b(B \u001b$(D]u\u001b(B \u001b$(D]v\u001b(B \u001b$(D]w\u001b(B \u001b$(D]x\u001b(B \u001b$(D]y\u001b(B \u001b$(D]z\u001b(B \u001b$(D]{\u001b(B \u001b$(D]|\u001b(B \u001b$(D]}\u001b(B \u001b$(D]~\u001b(B\n  \u001b$(D^!\u001b(B \u001b$(D^\"\u001b(B \u001b$(D^#\u001b(B \u001b$(D^$\u001b(B \u001b$(D^%\u001b(B \u001b$(D^&\u001b(B \u001b$(D^'\u001b(B \u001b$(D^(\u001b(B \u001b$(D^)\u001b(B \u001b$(D^*\u001b(B \u001b$(D^+\u001b(B \u001b$(D^,\u001b(B \u001b$(D^-\u001b(B \u001b$(D^.\u001b(B \u001b$(D^/\u001b(B\n\u001b$(D^0\u001b(B \u001b$(D^1\u001b(B \u001b$(D^2\u001b(B \u001b$(D^3\u001b(B \u001b$(D^4\u001b(B \u001b$(D^5\u001b(B \u001b$(D^6\u001b(B \u001b$(D^7\u001b(B \u001b$(D^8\u001b(B \u001b$(D^9\u001b(B \u001b$(D^:\u001b(B \u001b$(D^;\u001b(B \u001b$(D^<\u001b(B \u001b$(D^=\u001b(B \u001b$(D^>\u001b(B \u001b$(D^?\u001b(B\n\u001b$(D^@\u001b(B \u001b$(D^A\u001b(B \u001b$(D^B\u001b(B \u001b$(D^C\u001b(B \u001b$(D^D\u001b(B \u001b$(D^E\u001b(B \u001b$(D^F\u001b(B \u001b$(D^G\u001b(B \u001b$(D^H\u001b(B \u001b$(D^I\u001b(B \u001b$(D^J\u001b(B \u001b$(D^K\u001b(B \u001b$(D^L\u001b(B \u001b$(D^M\u001b(B \u001b$(D^N\u001b(B \u001b$(D^O\u001b(B\n\u001b$(D^P\u001b(B \u001b$(D^Q\u001b(B \u001b$(D^R\u001b(B \u001b$(D^S\u001b(B \u001b$(D^T\u001b(B \u001b$(D^U\u001b(B \u001b$(D^V\u001b(B \u001b$(D^W\u001b(B \u001b$(D^X\u001b(B \u001b$(D^Y\u001b(B \u001b$(D^Z\u001b(B \u001b$(D^[\u001b(B \u001b$(D^\\\u001b(B \u001b$(D^]\u001b(B \u001b$(D^^\u001b(B \u001b$(D^_\u001b(B\n\u001b$(D^`\u001b(B \u001b$(D^a\u001b(B \u001b$(D^b\u001b(B \u001b$(D^c\u001b(B \u001b$(D^d\u001b(B \u001b$(D^e\u001b(B \u001b$(D^f\u001b(B \u001b$(D^g\u001b(B \u001b$(D^h\u001b(B \u001b$(D^i\u001b(B \u001b$(D^j\u001b(B \u001b$(D^k\u001b(B \u001b$(D^l\u001b(B \u001b$(D^m\u001b(B \u001b$(D^n\u001b(B \u001b$(D^o\u001b(B\n\u001b$(D^p\u001b(B \u001b$(D^q\u001b(B \u001b$(D^r\u001b(B \u001b$(D^s\u001b(B \u001b$(D^t\u001b(B \u001b$(D^u\u001b(B \u001b$(D^v\u001b(B \u001b$(D^w\u001b(B \u001b$(D^x\u001b(B \u001b$(D^y\u001b(B \u001b$(D^z\u001b(B \u001b$(D^{\u001b(B \u001b$(D^|\u001b(B \u001b$(D^}\u001b(B \u001b$(D^~\u001b(B\n  \u001b$(D_!\u001b(B \u001b$(D_\"\u001b(B \u001b$(D_#\u001b(B \u001b$(D_$\u001b(B \u001b$(D_%\u001b(B \u001b$(D_&\u001b(B \u001b$(D_'\u001b(B \u001b$(D_(\u001b(B \u001b$(D_)\u001b(B \u001b$(D_*\u001b(B \u001b$(D_+\u001b(B \u001b$(D_,\u001b(B \u001b$(D_-\u001b(B \u001b$(D_.\u001b(B \u001b$(D_/\u001b(B\n\u001b$(D_0\u001b(B \u001b$(D_1\u001b(B \u001b$(D_2\u001b(B \u001b$(D_3\u001b(B \u001b$(D_4\u001b(B \u001b$(D_5\u001b(B \u001b$(D_6\u001b(B \u001b$(D_7\u001b(B \u001b$(D_8\u001b(B \u001b$(D_9\u001b(B \u001b$(D_:\u001b(B \u001b$(D_;\u001b(B \u001b$(D_<\u001b(B \u001b$(D_=\u001b(B \u001b$(D_>\u001b(B \u001b$(D_?\u001b(B\n\u001b$(D_@\u001b(B \u001b$(D_A\u001b(B \u001b$(D_B\u001b(B \u001b$(D_C\u001b(B \u001b$(D_D\u001b(B \u001b$(D_E\u001b(B \u001b$(D_F\u001b(B \u001b$(D_G\u001b(B \u001b$(D_H\u001b(B \u001b$(D_I\u001b(B \u001b$(D_J\u001b(B \u001b$(D_K\u001b(B \u001b$(D_L\u001b(B \u001b$(D_M\u001b(B \u001b$(D_N\u001b(B \u001b$(D_O\u001b(B\n\u001b$(D_P\u001b(B \u001b$(D_Q\u001b(B \u001b$(D_R\u001b(B \u001b$(D_S\u001b(B \u001b$(D_T\u001b(B \u001b$(D_U\u001b(B \u001b$(D_V\u001b(B \u001b$(D_W\u001b(B \u001b$(D_X\u001b(B \u001b$(D_Y\u001b(B \u001b$(D_Z\u001b(B \u001b$(D_[\u001b(B \u001b$(D_\\\u001b(B \u001b$(D_]\u001b(B \u001b$(D_^\u001b(B \u001b$(D__\u001b(B\n\u001b$(D_`\u001b(B \u001b$(D_a\u001b(B \u001b$(D_b\u001b(B \u001b$(D_c\u001b(B \u001b$(D_d\u001b(B \u001b$(D_e\u001b(B \u001b$(D_f\u001b(B \u001b$(D_g\u001b(B \u001b$(D_h\u001b(B \u001b$(D_i\u001b(B \u001b$(D_j\u001b(B \u001b$(D_k\u001b(B \u001b$(D_l\u001b(B \u001b$(D_m\u001b(B \u001b$(D_n\u001b(B \u001b$(D_o\u001b(B\n\u001b$(D_p\u001b(B \u001b$(D_q\u001b(B \u001b$(D_r\u001b(B \u001b$(D_s\u001b(B \u001b$(D_t\u001b(B \u001b$(D_u\u001b(B \u001b$(D_v\u001b(B \u001b$(D_w\u001b(B \u001b$(D_x\u001b(B \u001b$(D_y\u001b(B \u001b$(D_z\u001b(B \u001b$(D_{\u001b(B \u001b$(D_|\u001b(B \u001b$(D_}\u001b(B \u001b$(D_~\u001b(B\n  \u001b$(D`!\u001b(B \u001b$(D`\"\u001b(B \u001b$(D`#\u001b(B \u001b$(D`$\u001b(B \u001b$(D`%\u001b(B \u001b$(D`&\u001b(B \u001b$(D`'\u001b(B \u001b$(D`(\u001b(B \u001b$(D`)\u001b(B \u001b$(D`*\u001b(B \u001b$(D`+\u001b(B \u001b$(D`,\u001b(B \u001b$(D`-\u001b(B \u001b$(D`.\u001b(B \u001b$(D`/\u001b(B\n\u001b$(D`0\u001b(B \u001b$(D`1\u001b(B \u001b$(D`2\u001b(B \u001b$(D`3\u001b(B \u001b$(D`4\u001b(B \u001b$(D`5\u001b(B \u001b$(D`6\u001b(B \u001b$(D`7\u001b(B \u001b$(D`8\u001b(B \u001b$(D`9\u001b(B \u001b$(D`:\u001b(B \u001b$(D`;\u001b(B \u001b$(D`<\u001b(B \u001b$(D`=\u001b(B \u001b$(D`>\u001b(B \u001b$(D`?\u001b(B\n\u001b$(D`@\u001b(B \u001b$(D`A\u001b(B \u001b$(D`B\u001b(B \u001b$(D`C\u001b(B \u001b$(D`D\u001b(B \u001b$(D`E\u001b(B \u001b$(D`F\u001b(B \u001b$(D`G\u001b(B \u001b$(D`H\u001b(B \u001b$(D`I\u001b(B \u001b$(D`J\u001b(B \u001b$(D`K\u001b(B \u001b$(D`L\u001b(B \u001b$(D`M\u001b(B \u001b$(D`N\u001b(B \u001b$(D`O\u001b(B\n\u001b$(D`P\u001b(B \u001b$(D`Q\u001b(B \u001b$(D`R\u001b(B \u001b$(D`S\u001b(B \u001b$(D`T\u001b(B \u001b$(D`U\u001b(B \u001b$(D`V\u001b(B \u001b$(D`W\u001b(B \u001b$(D`X\u001b(B \u001b$(D`Y\u001b(B \u001b$(D`Z\u001b(B \u001b$(D`[\u001b(B \u001b$(D`\\\u001b(B \u001b$(D`]\u001b(B \u001b$(D`^\u001b(B \u001b$(D`_\u001b(B\n\u001b$(D``\u001b(B \u001b$(D`a\u001b(B \u001b$(D`b\u001b(B \u001b$(D`c\u001b(B \u001b$(D`d\u001b(B \u001b$(D`e\u001b(B \u001b$(D`f\u001b(B \u001b$(D`g\u001b(B \u001b$(D`h\u001b(B \u001b$(D`i\u001b(B \u001b$(D`j\u001b(B \u001b$(D`k\u001b(B \u001b$(D`l\u001b(B \u001b$(D`m\u001b(B \u001b$(D`n\u001b(B \u001b$(D`o\u001b(B\n\u001b$(D`p\u001b(B \u001b$(D`q\u001b(B \u001b$(D`r\u001b(B \u001b$(D`s\u001b(B \u001b$(D`t\u001b(B \u001b$(D`u\u001b(B \u001b$(D`v\u001b(B \u001b$(D`w\u001b(B \u001b$(D`x\u001b(B \u001b$(D`y\u001b(B \u001b$(D`z\u001b(B \u001b$(D`{\u001b(B \u001b$(D`|\u001b(B \u001b$(D`}\u001b(B \u001b$(D`~\u001b(B\n  \u001b$(Da!\u001b(B \u001b$(Da\"\u001b(B \u001b$(Da#\u001b(B \u001b$(Da$\u001b(B \u001b$(Da%\u001b(B \u001b$(Da&\u001b(B \u001b$(Da'\u001b(B \u001b$(Da(\u001b(B \u001b$(Da)\u001b(B \u001b$(Da*\u001b(B \u001b$(Da+\u001b(B \u001b$(Da,\u001b(B \u001b$(Da-\u001b(B \u001b$(Da.\u001b(B \u001b$(Da/\u001b(B\n\u001b$(Da0\u001b(B \u001b$(Da1\u001b(B \u001b$(Da2\u001b(B \u001b$(Da3\u001b(B \u001b$(Da4\u001b(B \u001b$(Da5\u001b(B \u001b$(Da6\u001b(B \u001b$(Da7\u001b(B \u001b$(Da8\u001b(B \u001b$(Da9\u001b(B \u001b$(Da:\u001b(B \u001b$(Da;\u001b(B \u001b$(Da<\u001b(B \u001b$(Da=\u001b(B \u001b$(Da>\u001b(B \u001b$(Da?\u001b(B\n\u001b$(Da@\u001b(B \u001b$(DaA\u001b(B \u001b$(DaB\u001b(B \u001b$(DaC\u001b(B \u001b$(DaD\u001b(B \u001b$(DaE\u001b(B \u001b$(DaF\u001b(B \u001b$(DaG\u001b(B \u001b$(DaH\u001b(B \u001b$(DaI\u001b(B \u001b$(DaJ\u001b(B \u001b$(DaK\u001b(B \u001b$(DaL\u001b(B \u001b$(DaM\u001b(B \u001b$(DaN\u001b(B \u001b$(DaO\u001b(B\n\u001b$(DaP\u001b(B \u001b$(DaQ\u001b(B \u001b$(DaR\u001b(B \u001b$(DaS\u001b(B \u001b$(DaT\u001b(B \u001b$(DaU\u001b(B \u001b$(DaV\u001b(B \u001b$(DaW\u001b(B \u001b$(DaX\u001b(B \u001b$(DaY\u001b(B \u001b$(DaZ\u001b(B \u001b$(Da[\u001b(B \u001b$(Da\\\u001b(B \u001b$(Da]\u001b(B \u001b$(Da^\u001b(B \u001b$(Da_\u001b(B\n\u001b$(Da`\u001b(B \u001b$(Daa\u001b(B \u001b$(Dab\u001b(B \u001b$(Dac\u001b(B \u001b$(Dad\u001b(B \u001b$(Dae\u001b(B \u001b$(Daf\u001b(B \u001b$(Dag\u001b(B \u001b$(Dah\u001b(B \u001b$(Dai\u001b(B \u001b$(Daj\u001b(B \u001b$(Dak\u001b(B \u001b$(Dal\u001b(B \u001b$(Dam\u001b(B \u001b$(Dan\u001b(B \u001b$(Dao\u001b(B\n\u001b$(Dap\u001b(B \u001b$(Daq\u001b(B \u001b$(Dar\u001b(B \u001b$(Das\u001b(B \u001b$(Dat\u001b(B \u001b$(Dau\u001b(B \u001b$(Dav\u001b(B \u001b$(Daw\u001b(B \u001b$(Dax\u001b(B \u001b$(Day\u001b(B \u001b$(Daz\u001b(B \u001b$(Da{\u001b(B \u001b$(Da|\u001b(B \u001b$(Da}\u001b(B \u001b$(Da~\u001b(B\n  \u001b$(Db!\u001b(B \u001b$(Db\"\u001b(B \u001b$(Db#\u001b(B \u001b$(Db$\u001b(B \u001b$(Db%\u001b(B \u001b$(Db&\u001b(B \u001b$(Db'\u001b(B \u001b$(Db(\u001b(B \u001b$(Db)\u001b(B \u001b$(Db*\u001b(B \u001b$(Db+\u001b(B \u001b$(Db,\u001b(B \u001b$(Db-\u001b(B \u001b$(Db.\u001b(B \u001b$(Db/\u001b(B\n\u001b$(Db0\u001b(B \u001b$(Db1\u001b(B \u001b$(Db2\u001b(B \u001b$(Db3\u001b(B \u001b$(Db4\u001b(B \u001b$(Db5\u001b(B \u001b$(Db6\u001b(B \u001b$(Db7\u001b(B \u001b$(Db8\u001b(B \u001b$(Db9\u001b(B \u001b$(Db:\u001b(B \u001b$(Db;\u001b(B \u001b$(Db<\u001b(B \u001b$(Db=\u001b(B \u001b$(Db>\u001b(B \u001b$(Db?\u001b(B\n\u001b$(Db@\u001b(B \u001b$(DbA\u001b(B \u001b$(DbB\u001b(B \u001b$(DbC\u001b(B \u001b$(DbD\u001b(B \u001b$(DbE\u001b(B \u001b$(DbF\u001b(B \u001b$(DbG\u001b(B \u001b$(DbH\u001b(B \u001b$(DbI\u001b(B \u001b$(DbJ\u001b(B \u001b$(DbK\u001b(B \u001b$(DbL\u001b(B \u001b$(DbM\u001b(B \u001b$(DbN\u001b(B \u001b$(DbO\u001b(B\n\u001b$(DbP\u001b(B \u001b$(DbQ\u001b(B \u001b$(DbR\u001b(B \u001b$(DbS\u001b(B \u001b$(DbT\u001b(B \u001b$(DbU\u001b(B \u001b$(DbV\u001b(B \u001b$(DbW\u001b(B \u001b$(DbX\u001b(B \u001b$(DbY\u001b(B \u001b$(DbZ\u001b(B \u001b$(Db[\u001b(B \u001b$(Db\\\u001b(B \u001b$(Db]\u001b(B \u001b$(Db^\u001b(B \u001b$(Db_\u001b(B\n\u001b$(Db`\u001b(B \u001b$(Dba\u001b(B \u001b$(Dbb\u001b(B \u001b$(Dbc\u001b(B \u001b$(Dbd\u001b(B \u001b$(Dbe\u001b(B \u001b$(Dbf\u001b(B \u001b$(Dbg\u001b(B \u001b$(Dbh\u001b(B \u001b$(Dbi\u001b(B \u001b$(Dbj\u001b(B \u001b$(Dbk\u001b(B \u001b$(Dbl\u001b(B \u001b$(Dbm\u001b(B \u001b$(Dbn\u001b(B \u001b$(Dbo\u001b(B\n\u001b$(Dbp\u001b(B \u001b$(Dbq\u001b(B \u001b$(Dbr\u001b(B \u001b$(Dbs\u001b(B \u001b$(Dbt\u001b(B \u001b$(Dbu\u001b(B \u001b$(Dbv\u001b(B \u001b$(Dbw\u001b(B \u001b$(Dbx\u001b(B \u001b$(Dby\u001b(B \u001b$(Dbz\u001b(B \u001b$(Db{\u001b(B \u001b$(Db|\u001b(B \u001b$(Db}\u001b(B \u001b$(Db~\u001b(B\n  \u001b$(Dc!\u001b(B \u001b$(Dc\"\u001b(B \u001b$(Dc#\u001b(B \u001b$(Dc$\u001b(B \u001b$(Dc%\u001b(B \u001b$(Dc&\u001b(B \u001b$(Dc'\u001b(B \u001b$(Dc(\u001b(B \u001b$(Dc)\u001b(B \u001b$(Dc*\u001b(B \u001b$(Dc+\u001b(B \u001b$(Dc,\u001b(B \u001b$(Dc-\u001b(B \u001b$(Dc.\u001b(B \u001b$(Dc/\u001b(B\n\u001b$(Dc0\u001b(B \u001b$(Dc1\u001b(B \u001b$(Dc2\u001b(B \u001b$(Dc3\u001b(B \u001b$(Dc4\u001b(B \u001b$(Dc5\u001b(B \u001b$(Dc6\u001b(B \u001b$(Dc7\u001b(B \u001b$(Dc8\u001b(B \u001b$(Dc9\u001b(B \u001b$(Dc:\u001b(B \u001b$(Dc;\u001b(B \u001b$(Dc<\u001b(B \u001b$(Dc=\u001b(B \u001b$(Dc>\u001b(B \u001b$(Dc?\u001b(B\n\u001b$(Dc@\u001b(B \u001b$(DcA\u001b(B \u001b$(DcB\u001b(B \u001b$(DcC\u001b(B \u001b$(DcD\u001b(B \u001b$(DcE\u001b(B \u001b$(DcF\u001b(B \u001b$(DcG\u001b(B \u001b$(DcH\u001b(B \u001b$(DcI\u001b(B \u001b$(DcJ\u001b(B \u001b$(DcK\u001b(B \u001b$(DcL\u001b(B \u001b$(DcM\u001b(B \u001b$(DcN\u001b(B \u001b$(DcO\u001b(B\n\u001b$(DcP\u001b(B \u001b$(DcQ\u001b(B \u001b$(DcR\u001b(B \u001b$(DcS\u001b(B \u001b$(DcT\u001b(B \u001b$(DcU\u001b(B \u001b$(DcV\u001b(B \u001b$(DcW\u001b(B \u001b$(DcX\u001b(B \u001b$(DcY\u001b(B \u001b$(DcZ\u001b(B \u001b$(Dc[\u001b(B \u001b$(Dc\\\u001b(B \u001b$(Dc]\u001b(B \u001b$(Dc^\u001b(B \u001b$(Dc_\u001b(B\n\u001b$(Dc`\u001b(B \u001b$(Dca\u001b(B \u001b$(Dcb\u001b(B \u001b$(Dcc\u001b(B \u001b$(Dcd\u001b(B \u001b$(Dce\u001b(B \u001b$(Dcf\u001b(B \u001b$(Dcg\u001b(B \u001b$(Dch\u001b(B \u001b$(Dci\u001b(B \u001b$(Dcj\u001b(B \u001b$(Dck\u001b(B \u001b$(Dcl\u001b(B \u001b$(Dcm\u001b(B \u001b$(Dcn\u001b(B \u001b$(Dco\u001b(B\n\u001b$(Dcp\u001b(B \u001b$(Dcq\u001b(B \u001b$(Dcr\u001b(B \u001b$(Dcs\u001b(B \u001b$(Dct\u001b(B \u001b$(Dcu\u001b(B \u001b$(Dcv\u001b(B \u001b$(Dcw\u001b(B \u001b$(Dcx\u001b(B \u001b$(Dcy\u001b(B \u001b$(Dcz\u001b(B \u001b$(Dc{\u001b(B \u001b$(Dc|\u001b(B \u001b$(Dc}\u001b(B \u001b$(Dc~\u001b(B\n  \u001b$(Dd!\u001b(B \u001b$(Dd\"\u001b(B \u001b$(Dd#\u001b(B \u001b$(Dd$\u001b(B \u001b$(Dd%\u001b(B \u001b$(Dd&\u001b(B \u001b$(Dd'\u001b(B \u001b$(Dd(\u001b(B \u001b$(Dd)\u001b(B \u001b$(Dd*\u001b(B \u001b$(Dd+\u001b(B \u001b$(Dd,\u001b(B \u001b$(Dd-\u001b(B \u001b$(Dd.\u001b(B \u001b$(Dd/\u001b(B\n\u001b$(Dd0\u001b(B \u001b$(Dd1\u001b(B \u001b$(Dd2\u001b(B \u001b$(Dd3\u001b(B \u001b$(Dd4\u001b(B \u001b$(Dd5\u001b(B \u001b$(Dd6\u001b(B \u001b$(Dd7\u001b(B \u001b$(Dd8\u001b(B \u001b$(Dd9\u001b(B \u001b$(Dd:\u001b(B \u001b$(Dd;\u001b(B \u001b$(Dd<\u001b(B \u001b$(Dd=\u001b(B \u001b$(Dd>\u001b(B \u001b$(Dd?\u001b(B\n\u001b$(Dd@\u001b(B \u001b$(DdA\u001b(B \u001b$(DdB\u001b(B \u001b$(DdC\u001b(B \u001b$(DdD\u001b(B \u001b$(DdE\u001b(B \u001b$(DdF\u001b(B \u001b$(DdG\u001b(B \u001b$(DdH\u001b(B \u001b$(DdI\u001b(B \u001b$(DdJ\u001b(B \u001b$(DdK\u001b(B \u001b$(DdL\u001b(B \u001b$(DdM\u001b(B \u001b$(DdN\u001b(B \u001b$(DdO\u001b(B\n\u001b$(DdP\u001b(B \u001b$(DdQ\u001b(B \u001b$(DdR\u001b(B \u001b$(DdS\u001b(B \u001b$(DdT\u001b(B \u001b$(DdU\u001b(B \u001b$(DdV\u001b(B \u001b$(DdW\u001b(B \u001b$(DdX\u001b(B \u001b$(DdY\u001b(B \u001b$(DdZ\u001b(B \u001b$(Dd[\u001b(B \u001b$(Dd\\\u001b(B \u001b$(Dd]\u001b(B \u001b$(Dd^\u001b(B \u001b$(Dd_\u001b(B\n\u001b$(Dd`\u001b(B \u001b$(Dda\u001b(B \u001b$(Ddb\u001b(B \u001b$(Ddc\u001b(B \u001b$(Ddd\u001b(B \u001b$(Dde\u001b(B \u001b$(Ddf\u001b(B \u001b$(Ddg\u001b(B \u001b$(Ddh\u001b(B \u001b$(Ddi\u001b(B \u001b$(Ddj\u001b(B \u001b$(Ddk\u001b(B \u001b$(Ddl\u001b(B \u001b$(Ddm\u001b(B \u001b$(Ddn\u001b(B \u001b$(Ddo\u001b(B\n\u001b$(Ddp\u001b(B \u001b$(Ddq\u001b(B \u001b$(Ddr\u001b(B \u001b$(Dds\u001b(B \u001b$(Ddt\u001b(B \u001b$(Ddu\u001b(B \u001b$(Ddv\u001b(B \u001b$(Ddw\u001b(B \u001b$(Ddx\u001b(B \u001b$(Ddy\u001b(B \u001b$(Ddz\u001b(B \u001b$(Dd{\u001b(B \u001b$(Dd|\u001b(B \u001b$(Dd}\u001b(B \u001b$(Dd~\u001b(B\n  \u001b$(De!\u001b(B \u001b$(De\"\u001b(B \u001b$(De#\u001b(B \u001b$(De$\u001b(B \u001b$(De%\u001b(B \u001b$(De&\u001b(B \u001b$(De'\u001b(B \u001b$(De(\u001b(B \u001b$(De)\u001b(B \u001b$(De*\u001b(B \u001b$(De+\u001b(B \u001b$(De,\u001b(B \u001b$(De-\u001b(B \u001b$(De.\u001b(B \u001b$(De/\u001b(B\n\u001b$(De0\u001b(B \u001b$(De1\u001b(B \u001b$(De2\u001b(B \u001b$(De3\u001b(B \u001b$(De4\u001b(B \u001b$(De5\u001b(B \u001b$(De6\u001b(B \u001b$(De7\u001b(B \u001b$(De8\u001b(B \u001b$(De9\u001b(B \u001b$(De:\u001b(B \u001b$(De;\u001b(B \u001b$(De<\u001b(B \u001b$(De=\u001b(B \u001b$(De>\u001b(B \u001b$(De?\u001b(B\n\u001b$(De@\u001b(B \u001b$(DeA\u001b(B \u001b$(DeB\u001b(B \u001b$(DeC\u001b(B \u001b$(DeD\u001b(B \u001b$(DeE\u001b(B \u001b$(DeF\u001b(B \u001b$(DeG\u001b(B \u001b$(DeH\u001b(B \u001b$(DeI\u001b(B \u001b$(DeJ\u001b(B \u001b$(DeK\u001b(B \u001b$(DeL\u001b(B \u001b$(DeM\u001b(B \u001b$(DeN\u001b(B \u001b$(DeO\u001b(B\n\u001b$(DeP\u001b(B \u001b$(DeQ\u001b(B \u001b$(DeR\u001b(B \u001b$(DeS\u001b(B \u001b$(DeT\u001b(B \u001b$(DeU\u001b(B \u001b$(DeV\u001b(B \u001b$(DeW\u001b(B \u001b$(DeX\u001b(B \u001b$(DeY\u001b(B \u001b$(DeZ\u001b(B \u001b$(De[\u001b(B \u001b$(De\\\u001b(B \u001b$(De]\u001b(B \u001b$(De^\u001b(B \u001b$(De_\u001b(B\n\u001b$(De`\u001b(B \u001b$(Dea\u001b(B \u001b$(Deb\u001b(B \u001b$(Dec\u001b(B \u001b$(Ded\u001b(B \u001b$(Dee\u001b(B \u001b$(Def\u001b(B \u001b$(Deg\u001b(B \u001b$(Deh\u001b(B \u001b$(Dei\u001b(B \u001b$(Dej\u001b(B \u001b$(Dek\u001b(B \u001b$(Del\u001b(B \u001b$(Dem\u001b(B \u001b$(Den\u001b(B \u001b$(Deo\u001b(B\n\u001b$(Dep\u001b(B \u001b$(Deq\u001b(B \u001b$(Der\u001b(B \u001b$(Des\u001b(B \u001b$(Det\u001b(B \u001b$(Deu\u001b(B \u001b$(Dev\u001b(B \u001b$(Dew\u001b(B \u001b$(Dex\u001b(B \u001b$(Dey\u001b(B \u001b$(Dez\u001b(B \u001b$(De{\u001b(B \u001b$(De|\u001b(B \u001b$(De}\u001b(B \u001b$(De~\u001b(B\n  \u001b$(Df!\u001b(B \u001b$(Df\"\u001b(B \u001b$(Df#\u001b(B \u001b$(Df$\u001b(B \u001b$(Df%\u001b(B \u001b$(Df&\u001b(B \u001b$(Df'\u001b(B \u001b$(Df(\u001b(B \u001b$(Df)\u001b(B \u001b$(Df*\u001b(B \u001b$(Df+\u001b(B \u001b$(Df,\u001b(B \u001b$(Df-\u001b(B \u001b$(Df.\u001b(B \u001b$(Df/\u001b(B\n\u001b$(Df0\u001b(B \u001b$(Df1\u001b(B \u001b$(Df2\u001b(B \u001b$(Df3\u001b(B \u001b$(Df4\u001b(B \u001b$(Df5\u001b(B \u001b$(Df6\u001b(B \u001b$(Df7\u001b(B \u001b$(Df8\u001b(B \u001b$(Df9\u001b(B \u001b$(Df:\u001b(B \u001b$(Df;\u001b(B \u001b$(Df<\u001b(B \u001b$(Df=\u001b(B \u001b$(Df>\u001b(B \u001b$(Df?\u001b(B\n\u001b$(Df@\u001b(B \u001b$(DfA\u001b(B \u001b$(DfB\u001b(B \u001b$(DfC\u001b(B \u001b$(DfD\u001b(B \u001b$(DfE\u001b(B \u001b$(DfF\u001b(B \u001b$(DfG\u001b(B \u001b$(DfH\u001b(B \u001b$(DfI\u001b(B \u001b$(DfJ\u001b(B \u001b$(DfK\u001b(B \u001b$(DfL\u001b(B \u001b$(DfM\u001b(B \u001b$(DfN\u001b(B \u001b$(DfO\u001b(B\n\u001b$(DfP\u001b(B \u001b$(DfQ\u001b(B \u001b$(DfR\u001b(B \u001b$(DfS\u001b(B \u001b$(DfT\u001b(B \u001b$(DfU\u001b(B \u001b$(DfV\u001b(B \u001b$(DfW\u001b(B \u001b$(DfX\u001b(B \u001b$(DfY\u001b(B \u001b$(DfZ\u001b(B \u001b$(Df[\u001b(B \u001b$(Df\\\u001b(B \u001b$(Df]\u001b(B \u001b$(Df^\u001b(B \u001b$(Df_\u001b(B\n\u001b$(Df`\u001b(B \u001b$(Dfa\u001b(B \u001b$(Dfb\u001b(B \u001b$(Dfc\u001b(B \u001b$(Dfd\u001b(B \u001b$(Dfe\u001b(B \u001b$(Dff\u001b(B \u001b$(Dfg\u001b(B \u001b$(Dfh\u001b(B \u001b$(Dfi\u001b(B \u001b$(Dfj\u001b(B \u001b$(Dfk\u001b(B \u001b$(Dfl\u001b(B \u001b$(Dfm\u001b(B \u001b$(Dfn\u001b(B \u001b$(Dfo\u001b(B\n\u001b$(Dfp\u001b(B \u001b$(Dfq\u001b(B \u001b$(Dfr\u001b(B \u001b$(Dfs\u001b(B \u001b$(Dft\u001b(B \u001b$(Dfu\u001b(B \u001b$(Dfv\u001b(B \u001b$(Dfw\u001b(B \u001b$(Dfx\u001b(B \u001b$(Dfy\u001b(B \u001b$(Dfz\u001b(B \u001b$(Df{\u001b(B \u001b$(Df|\u001b(B \u001b$(Df}\u001b(B \u001b$(Df~\u001b(B\n  \u001b$(Dg!\u001b(B \u001b$(Dg\"\u001b(B \u001b$(Dg#\u001b(B \u001b$(Dg$\u001b(B \u001b$(Dg%\u001b(B \u001b$(Dg&\u001b(B \u001b$(Dg'\u001b(B \u001b$(Dg(\u001b(B \u001b$(Dg)\u001b(B \u001b$(Dg*\u001b(B \u001b$(Dg+\u001b(B \u001b$(Dg,\u001b(B \u001b$(Dg-\u001b(B \u001b$(Dg.\u001b(B \u001b$(Dg/\u001b(B\n\u001b$(Dg0\u001b(B \u001b$(Dg1\u001b(B \u001b$(Dg2\u001b(B \u001b$(Dg3\u001b(B \u001b$(Dg4\u001b(B \u001b$(Dg5\u001b(B \u001b$(Dg6\u001b(B \u001b$(Dg7\u001b(B \u001b$(Dg8\u001b(B \u001b$(Dg9\u001b(B \u001b$(Dg:\u001b(B \u001b$(Dg;\u001b(B \u001b$(Dg<\u001b(B \u001b$(Dg=\u001b(B \u001b$(Dg>\u001b(B \u001b$(Dg?\u001b(B\n\u001b$(Dg@\u001b(B \u001b$(DgA\u001b(B \u001b$(DgB\u001b(B \u001b$(DgC\u001b(B \u001b$(DgD\u001b(B \u001b$(DgE\u001b(B \u001b$(DgF\u001b(B \u001b$(DgG\u001b(B \u001b$(DgH\u001b(B \u001b$(DgI\u001b(B \u001b$(DgJ\u001b(B \u001b$(DgK\u001b(B \u001b$(DgL\u001b(B \u001b$(DgM\u001b(B \u001b$(DgN\u001b(B \u001b$(DgO\u001b(B\n\u001b$(DgP\u001b(B \u001b$(DgQ\u001b(B \u001b$(DgR\u001b(B \u001b$(DgS\u001b(B \u001b$(DgT\u001b(B \u001b$(DgU\u001b(B \u001b$(DgV\u001b(B \u001b$(DgW\u001b(B \u001b$(DgX\u001b(B \u001b$(DgY\u001b(B \u001b$(DgZ\u001b(B \u001b$(Dg[\u001b(B \u001b$(Dg\\\u001b(B \u001b$(Dg]\u001b(B \u001b$(Dg^\u001b(B \u001b$(Dg_\u001b(B\n\u001b$(Dg`\u001b(B \u001b$(Dga\u001b(B \u001b$(Dgb\u001b(B \u001b$(Dgc\u001b(B \u001b$(Dgd\u001b(B \u001b$(Dge\u001b(B \u001b$(Dgf\u001b(B \u001b$(Dgg\u001b(B \u001b$(Dgh\u001b(B \u001b$(Dgi\u001b(B \u001b$(Dgj\u001b(B \u001b$(Dgk\u001b(B \u001b$(Dgl\u001b(B \u001b$(Dgm\u001b(B \u001b$(Dgn\u001b(B \u001b$(Dgo\u001b(B\n\u001b$(Dgp\u001b(B \u001b$(Dgq\u001b(B \u001b$(Dgr\u001b(B \u001b$(Dgs\u001b(B \u001b$(Dgt\u001b(B \u001b$(Dgu\u001b(B \u001b$(Dgv\u001b(B \u001b$(Dgw\u001b(B \u001b$(Dgx\u001b(B \u001b$(Dgy\u001b(B \u001b$(Dgz\u001b(B \u001b$(Dg{\u001b(B \u001b$(Dg|\u001b(B \u001b$(Dg}\u001b(B \u001b$(Dg~\u001b(B\n  \u001b$(Dh!\u001b(B \u001b$(Dh\"\u001b(B \u001b$(Dh#\u001b(B \u001b$(Dh$\u001b(B \u001b$(Dh%\u001b(B \u001b$(Dh&\u001b(B \u001b$(Dh'\u001b(B \u001b$(Dh(\u001b(B \u001b$(Dh)\u001b(B \u001b$(Dh*\u001b(B \u001b$(Dh+\u001b(B \u001b$(Dh,\u001b(B \u001b$(Dh-\u001b(B \u001b$(Dh.\u001b(B \u001b$(Dh/\u001b(B\n\u001b$(Dh0\u001b(B \u001b$(Dh1\u001b(B \u001b$(Dh2\u001b(B \u001b$(Dh3\u001b(B \u001b$(Dh4\u001b(B \u001b$(Dh5\u001b(B \u001b$(Dh6\u001b(B \u001b$(Dh7\u001b(B \u001b$(Dh8\u001b(B \u001b$(Dh9\u001b(B \u001b$(Dh:\u001b(B \u001b$(Dh;\u001b(B \u001b$(Dh<\u001b(B \u001b$(Dh=\u001b(B \u001b$(Dh>\u001b(B \u001b$(Dh?\u001b(B\n\u001b$(Dh@\u001b(B \u001b$(DhA\u001b(B \u001b$(DhB\u001b(B \u001b$(DhC\u001b(B \u001b$(DhD\u001b(B \u001b$(DhE\u001b(B \u001b$(DhF\u001b(B \u001b$(DhG\u001b(B \u001b$(DhH\u001b(B \u001b$(DhI\u001b(B \u001b$(DhJ\u001b(B \u001b$(DhK\u001b(B \u001b$(DhL\u001b(B \u001b$(DhM\u001b(B \u001b$(DhN\u001b(B \u001b$(DhO\u001b(B\n\u001b$(DhP\u001b(B \u001b$(DhQ\u001b(B \u001b$(DhR\u001b(B \u001b$(DhS\u001b(B \u001b$(DhT\u001b(B \u001b$(DhU\u001b(B \u001b$(DhV\u001b(B \u001b$(DhW\u001b(B \u001b$(DhX\u001b(B \u001b$(DhY\u001b(B \u001b$(DhZ\u001b(B \u001b$(Dh[\u001b(B \u001b$(Dh\\\u001b(B \u001b$(Dh]\u001b(B \u001b$(Dh^\u001b(B \u001b$(Dh_\u001b(B\n\u001b$(Dh`\u001b(B \u001b$(Dha\u001b(B \u001b$(Dhb\u001b(B \u001b$(Dhc\u001b(B \u001b$(Dhd\u001b(B \u001b$(Dhe\u001b(B \u001b$(Dhf\u001b(B \u001b$(Dhg\u001b(B \u001b$(Dhh\u001b(B \u001b$(Dhi\u001b(B \u001b$(Dhj\u001b(B \u001b$(Dhk\u001b(B \u001b$(Dhl\u001b(B \u001b$(Dhm\u001b(B \u001b$(Dhn\u001b(B \u001b$(Dho\u001b(B\n\u001b$(Dhp\u001b(B \u001b$(Dhq\u001b(B \u001b$(Dhr\u001b(B \u001b$(Dhs\u001b(B \u001b$(Dht\u001b(B \u001b$(Dhu\u001b(B \u001b$(Dhv\u001b(B \u001b$(Dhw\u001b(B \u001b$(Dhx\u001b(B \u001b$(Dhy\u001b(B \u001b$(Dhz\u001b(B \u001b$(Dh{\u001b(B \u001b$(Dh|\u001b(B \u001b$(Dh}\u001b(B \u001b$(Dh~\u001b(B\n  \u001b$(Di!\u001b(B \u001b$(Di\"\u001b(B \u001b$(Di#\u001b(B \u001b$(Di$\u001b(B \u001b$(Di%\u001b(B \u001b$(Di&\u001b(B \u001b$(Di'\u001b(B \u001b$(Di(\u001b(B \u001b$(Di)\u001b(B \u001b$(Di*\u001b(B \u001b$(Di+\u001b(B \u001b$(Di,\u001b(B \u001b$(Di-\u001b(B \u001b$(Di.\u001b(B \u001b$(Di/\u001b(B\n\u001b$(Di0\u001b(B \u001b$(Di1\u001b(B \u001b$(Di2\u001b(B \u001b$(Di3\u001b(B \u001b$(Di4\u001b(B \u001b$(Di5\u001b(B \u001b$(Di6\u001b(B \u001b$(Di7\u001b(B \u001b$(Di8\u001b(B \u001b$(Di9\u001b(B \u001b$(Di:\u001b(B \u001b$(Di;\u001b(B \u001b$(Di<\u001b(B \u001b$(Di=\u001b(B \u001b$(Di>\u001b(B \u001b$(Di?\u001b(B\n\u001b$(Di@\u001b(B \u001b$(DiA\u001b(B \u001b$(DiB\u001b(B \u001b$(DiC\u001b(B \u001b$(DiD\u001b(B \u001b$(DiE\u001b(B \u001b$(DiF\u001b(B \u001b$(DiG\u001b(B \u001b$(DiH\u001b(B \u001b$(DiI\u001b(B \u001b$(DiJ\u001b(B \u001b$(DiK\u001b(B \u001b$(DiL\u001b(B \u001b$(DiM\u001b(B \u001b$(DiN\u001b(B \u001b$(DiO\u001b(B\n\u001b$(DiP\u001b(B \u001b$(DiQ\u001b(B \u001b$(DiR\u001b(B \u001b$(DiS\u001b(B \u001b$(DiT\u001b(B \u001b$(DiU\u001b(B \u001b$(DiV\u001b(B \u001b$(DiW\u001b(B \u001b$(DiX\u001b(B \u001b$(DiY\u001b(B \u001b$(DiZ\u001b(B \u001b$(Di[\u001b(B \u001b$(Di\\\u001b(B \u001b$(Di]\u001b(B \u001b$(Di^\u001b(B \u001b$(Di_\u001b(B\n\u001b$(Di`\u001b(B \u001b$(Dia\u001b(B \u001b$(Dib\u001b(B \u001b$(Dic\u001b(B \u001b$(Did\u001b(B \u001b$(Die\u001b(B \u001b$(Dif\u001b(B \u001b$(Dig\u001b(B \u001b$(Dih\u001b(B \u001b$(Dii\u001b(B \u001b$(Dij\u001b(B \u001b$(Dik\u001b(B \u001b$(Dil\u001b(B \u001b$(Dim\u001b(B \u001b$(Din\u001b(B \u001b$(Dio\u001b(B\n\u001b$(Dip\u001b(B \u001b$(Diq\u001b(B \u001b$(Dir\u001b(B \u001b$(Dis\u001b(B \u001b$(Dit\u001b(B \u001b$(Diu\u001b(B \u001b$(Div\u001b(B \u001b$(Diw\u001b(B \u001b$(Dix\u001b(B \u001b$(Diy\u001b(B \u001b$(Diz\u001b(B \u001b$(Di{\u001b(B \u001b$(Di|\u001b(B \u001b$(Di}\u001b(B \u001b$(Di~\u001b(B\n  \u001b$(Dj!\u001b(B \u001b$(Dj\"\u001b(B \u001b$(Dj#\u001b(B \u001b$(Dj$\u001b(B \u001b$(Dj%\u001b(B \u001b$(Dj&\u001b(B \u001b$(Dj'\u001b(B \u001b$(Dj(\u001b(B \u001b$(Dj)\u001b(B \u001b$(Dj*\u001b(B \u001b$(Dj+\u001b(B \u001b$(Dj,\u001b(B \u001b$(Dj-\u001b(B \u001b$(Dj.\u001b(B \u001b$(Dj/\u001b(B\n\u001b$(Dj0\u001b(B \u001b$(Dj1\u001b(B \u001b$(Dj2\u001b(B \u001b$(Dj3\u001b(B \u001b$(Dj4\u001b(B \u001b$(Dj5\u001b(B \u001b$(Dj6\u001b(B \u001b$(Dj7\u001b(B \u001b$(Dj8\u001b(B \u001b$(Dj9\u001b(B \u001b$(Dj:\u001b(B \u001b$(Dj;\u001b(B \u001b$(Dj<\u001b(B \u001b$(Dj=\u001b(B \u001b$(Dj>\u001b(B \u001b$(Dj?\u001b(B\n\u001b$(Dj@\u001b(B \u001b$(DjA\u001b(B \u001b$(DjB\u001b(B \u001b$(DjC\u001b(B \u001b$(DjD\u001b(B \u001b$(DjE\u001b(B \u001b$(DjF\u001b(B \u001b$(DjG\u001b(B \u001b$(DjH\u001b(B \u001b$(DjI\u001b(B \u001b$(DjJ\u001b(B \u001b$(DjK\u001b(B \u001b$(DjL\u001b(B \u001b$(DjM\u001b(B \u001b$(DjN\u001b(B \u001b$(DjO\u001b(B\n\u001b$(DjP\u001b(B \u001b$(DjQ\u001b(B \u001b$(DjR\u001b(B \u001b$(DjS\u001b(B \u001b$(DjT\u001b(B \u001b$(DjU\u001b(B \u001b$(DjV\u001b(B \u001b$(DjW\u001b(B \u001b$(DjX\u001b(B \u001b$(DjY\u001b(B \u001b$(DjZ\u001b(B \u001b$(Dj[\u001b(B \u001b$(Dj\\\u001b(B \u001b$(Dj]\u001b(B \u001b$(Dj^\u001b(B \u001b$(Dj_\u001b(B\n\u001b$(Dj`\u001b(B \u001b$(Dja\u001b(B \u001b$(Djb\u001b(B \u001b$(Djc\u001b(B \u001b$(Djd\u001b(B \u001b$(Dje\u001b(B \u001b$(Djf\u001b(B \u001b$(Djg\u001b(B \u001b$(Djh\u001b(B \u001b$(Dji\u001b(B \u001b$(Djj\u001b(B \u001b$(Djk\u001b(B \u001b$(Djl\u001b(B \u001b$(Djm\u001b(B \u001b$(Djn\u001b(B \u001b$(Djo\u001b(B\n\u001b$(Djp\u001b(B \u001b$(Djq\u001b(B \u001b$(Djr\u001b(B \u001b$(Djs\u001b(B \u001b$(Djt\u001b(B \u001b$(Dju\u001b(B \u001b$(Djv\u001b(B \u001b$(Djw\u001b(B \u001b$(Djx\u001b(B \u001b$(Djy\u001b(B \u001b$(Djz\u001b(B \u001b$(Dj{\u001b(B \u001b$(Dj|\u001b(B \u001b$(Dj}\u001b(B \u001b$(Dj~\u001b(B\n  \u001b$(Dk!\u001b(B \u001b$(Dk\"\u001b(B \u001b$(Dk#\u001b(B \u001b$(Dk$\u001b(B \u001b$(Dk%\u001b(B \u001b$(Dk&\u001b(B \u001b$(Dk'\u001b(B \u001b$(Dk(\u001b(B \u001b$(Dk)\u001b(B \u001b$(Dk*\u001b(B \u001b$(Dk+\u001b(B \u001b$(Dk,\u001b(B \u001b$(Dk-\u001b(B \u001b$(Dk.\u001b(B \u001b$(Dk/\u001b(B\n\u001b$(Dk0\u001b(B \u001b$(Dk1\u001b(B \u001b$(Dk2\u001b(B \u001b$(Dk3\u001b(B \u001b$(Dk4\u001b(B \u001b$(Dk5\u001b(B \u001b$(Dk6\u001b(B \u001b$(Dk7\u001b(B \u001b$(Dk8\u001b(B \u001b$(Dk9\u001b(B \u001b$(Dk:\u001b(B \u001b$(Dk;\u001b(B \u001b$(Dk<\u001b(B \u001b$(Dk=\u001b(B \u001b$(Dk>\u001b(B \u001b$(Dk?\u001b(B\n\u001b$(Dk@\u001b(B \u001b$(DkA\u001b(B \u001b$(DkB\u001b(B \u001b$(DkC\u001b(B \u001b$(DkD\u001b(B \u001b$(DkE\u001b(B \u001b$(DkF\u001b(B \u001b$(DkG\u001b(B \u001b$(DkH\u001b(B \u001b$(DkI\u001b(B \u001b$(DkJ\u001b(B \u001b$(DkK\u001b(B \u001b$(DkL\u001b(B \u001b$(DkM\u001b(B \u001b$(DkN\u001b(B \u001b$(DkO\u001b(B\n\u001b$(DkP\u001b(B \u001b$(DkQ\u001b(B \u001b$(DkR\u001b(B \u001b$(DkS\u001b(B \u001b$(DkT\u001b(B \u001b$(DkU\u001b(B \u001b$(DkV\u001b(B \u001b$(DkW\u001b(B \u001b$(DkX\u001b(B \u001b$(DkY\u001b(B \u001b$(DkZ\u001b(B \u001b$(Dk[\u001b(B \u001b$(Dk\\\u001b(B \u001b$(Dk]\u001b(B \u001b$(Dk^\u001b(B \u001b$(Dk_\u001b(B\n\u001b$(Dk`\u001b(B \u001b$(Dka\u001b(B \u001b$(Dkb\u001b(B \u001b$(Dkc\u001b(B \u001b$(Dkd\u001b(B \u001b$(Dke\u001b(B \u001b$(Dkf\u001b(B \u001b$(Dkg\u001b(B \u001b$(Dkh\u001b(B \u001b$(Dki\u001b(B \u001b$(Dkj\u001b(B \u001b$(Dkk\u001b(B \u001b$(Dkl\u001b(B \u001b$(Dkm\u001b(B \u001b$(Dkn\u001b(B \u001b$(Dko\u001b(B\n\u001b$(Dkp\u001b(B \u001b$(Dkq\u001b(B \u001b$(Dkr\u001b(B \u001b$(Dks\u001b(B \u001b$(Dkt\u001b(B \u001b$(Dku\u001b(B \u001b$(Dkv\u001b(B \u001b$(Dkw\u001b(B \u001b$(Dkx\u001b(B \u001b$(Dky\u001b(B \u001b$(Dkz\u001b(B \u001b$(Dk{\u001b(B \u001b$(Dk|\u001b(B \u001b$(Dk}\u001b(B \u001b$(Dk~\u001b(B\n  \u001b$(Dl!\u001b(B \u001b$(Dl\"\u001b(B \u001b$(Dl#\u001b(B \u001b$(Dl$\u001b(B \u001b$(Dl%\u001b(B \u001b$(Dl&\u001b(B \u001b$(Dl'\u001b(B \u001b$(Dl(\u001b(B \u001b$(Dl)\u001b(B \u001b$(Dl*\u001b(B \u001b$(Dl+\u001b(B \u001b$(Dl,\u001b(B \u001b$(Dl-\u001b(B \u001b$(Dl.\u001b(B \u001b$(Dl/\u001b(B\n\u001b$(Dl0\u001b(B \u001b$(Dl1\u001b(B \u001b$(Dl2\u001b(B \u001b$(Dl3\u001b(B \u001b$(Dl4\u001b(B \u001b$(Dl5\u001b(B \u001b$(Dl6\u001b(B \u001b$(Dl7\u001b(B \u001b$(Dl8\u001b(B \u001b$(Dl9\u001b(B \u001b$(Dl:\u001b(B \u001b$(Dl;\u001b(B \u001b$(Dl<\u001b(B \u001b$(Dl=\u001b(B \u001b$(Dl>\u001b(B \u001b$(Dl?\u001b(B\n\u001b$(Dl@\u001b(B \u001b$(DlA\u001b(B \u001b$(DlB\u001b(B \u001b$(DlC\u001b(B \u001b$(DlD\u001b(B \u001b$(DlE\u001b(B \u001b$(DlF\u001b(B \u001b$(DlG\u001b(B \u001b$(DlH\u001b(B \u001b$(DlI\u001b(B \u001b$(DlJ\u001b(B \u001b$(DlK\u001b(B \u001b$(DlL\u001b(B \u001b$(DlM\u001b(B \u001b$(DlN\u001b(B \u001b$(DlO\u001b(B\n\u001b$(DlP\u001b(B \u001b$(DlQ\u001b(B \u001b$(DlR\u001b(B \u001b$(DlS\u001b(B \u001b$(DlT\u001b(B \u001b$(DlU\u001b(B \u001b$(DlV\u001b(B \u001b$(DlW\u001b(B \u001b$(DlX\u001b(B \u001b$(DlY\u001b(B \u001b$(DlZ\u001b(B \u001b$(Dl[\u001b(B \u001b$(Dl\\\u001b(B \u001b$(Dl]\u001b(B \u001b$(Dl^\u001b(B \u001b$(Dl_\u001b(B\n\u001b$(Dl`\u001b(B \u001b$(Dla\u001b(B \u001b$(Dlb\u001b(B \u001b$(Dlc\u001b(B \u001b$(Dld\u001b(B \u001b$(Dle\u001b(B \u001b$(Dlf\u001b(B \u001b$(Dlg\u001b(B \u001b$(Dlh\u001b(B \u001b$(Dli\u001b(B \u001b$(Dlj\u001b(B \u001b$(Dlk\u001b(B \u001b$(Dll\u001b(B \u001b$(Dlm\u001b(B \u001b$(Dln\u001b(B \u001b$(Dlo\u001b(B\n\u001b$(Dlp\u001b(B \u001b$(Dlq\u001b(B \u001b$(Dlr\u001b(B \u001b$(Dls\u001b(B \u001b$(Dlt\u001b(B \u001b$(Dlu\u001b(B \u001b$(Dlv\u001b(B \u001b$(Dlw\u001b(B \u001b$(Dlx\u001b(B \u001b$(Dly\u001b(B \u001b$(Dlz\u001b(B \u001b$(Dl{\u001b(B \u001b$(Dl|\u001b(B \u001b$(Dl}\u001b(B \u001b$(Dl~\u001b(B\n  \u001b$(Dm!\u001b(B \u001b$(Dm\"\u001b(B \u001b$(Dm#\u001b(B \u001b$(Dm$\u001b(B \u001b$(Dm%\u001b(B \u001b$(Dm&\u001b(B \u001b$(Dm'\u001b(B \u001b$(Dm(\u001b(B \u001b$(Dm)\u001b(B \u001b$(Dm*\u001b(B \u001b$(Dm+\u001b(B \u001b$(Dm,\u001b(B \u001b$(Dm-\u001b(B \u001b$(Dm.\u001b(B \u001b$(Dm/\u001b(B\n\u001b$(Dm0\u001b(B \u001b$(Dm1\u001b(B \u001b$(Dm2\u001b(B \u001b$(Dm3\u001b(B \u001b$(Dm4\u001b(B \u001b$(Dm5\u001b(B \u001b$(Dm6\u001b(B \u001b$(Dm7\u001b(B \u001b$(Dm8\u001b(B \u001b$(Dm9\u001b(B \u001b$(Dm:\u001b(B \u001b$(Dm;\u001b(B \u001b$(Dm<\u001b(B \u001b$(Dm=\u001b(B \u001b$(Dm>\u001b(B \u001b$(Dm?\u001b(B\n\u001b$(Dm@\u001b(B \u001b$(DmA\u001b(B \u001b$(DmB\u001b(B \u001b$(DmC\u001b(B \u001b$(DmD\u001b(B \u001b$(DmE\u001b(B \u001b$(DmF\u001b(B \u001b$(DmG\u001b(B \u001b$(DmH\u001b(B \u001b$(DmI\u001b(B \u001b$(DmJ\u001b(B \u001b$(DmK\u001b(B \u001b$(DmL\u001b(B \u001b$(DmM\u001b(B \u001b$(DmN\u001b(B \u001b$(DmO\u001b(B\n\u001b$(DmP\u001b(B \u001b$(DmQ\u001b(B \u001b$(DmR\u001b(B \u001b$(DmS\u001b(B \u001b$(DmT\u001b(B \u001b$(DmU\u001b(B \u001b$(DmV\u001b(B \u001b$(DmW\u001b(B \u001b$(DmX\u001b(B \u001b$(DmY\u001b(B \u001b$(DmZ\u001b(B \u001b$(Dm[\u001b(B \u001b$(Dm\\\u001b(B \u001b$(Dm]\u001b(B \u001b$(Dm^\u001b(B \u001b$(Dm_\u001b(B\n\u001b$(Dm`\u001b(B \u001b$(Dma\u001b(B \u001b$(Dmb\u001b(B \u001b$(Dmc\u001b(B\n  \u001b$(Ds!\u001b(B \u001b$(Ds\"\u001b(B \u001b$(Ds#\u001b(B \u001b$(Ds$\u001b(B \u001b$(Ds%\u001b(B \u001b$(Ds&\u001b(B \u001b$(Ds'\u001b(B \u001b$(Ds(\u001b(B \u001b$(Ds)\u001b(B \u001b$(Ds*\u001b(B\n          \u001b$(Ds5\u001b(B \u001b$(Ds6\u001b(B       \u001b$(Ds:\u001b(B \u001b$(Ds;\u001b(B \u001b$(Ds<\u001b(B \u001b$(Ds=\u001b(B \u001b$(Ds>\u001b(B \u001b$(Ds?\u001b(B\n\u001b$(Ds@\u001b(B \u001b$(DsA\u001b(B \u001b$(DsB\u001b(B \u001b$(DsC\u001b(B \u001b$(DsD\u001b(B \u001b$(DsE\u001b(B \u001b$(DsF\u001b(B \u001b$(DsG\u001b(B \u001b$(DsH\u001b(B \u001b$(DsI\u001b(B \u001b$(DsJ\u001b(B \u001b$(DsK\u001b(B \u001b$(DsL\u001b(B \u001b$(DsM\u001b(B   \u001b$(DsO\u001b(B\n\u001b$(DsP\u001b(B \u001b$(DsQ\u001b(B \u001b$(DsR\u001b(B \u001b$(DsS\u001b(B \u001b$(DsT\u001b(B \u001b$(DsU\u001b(B \u001b$(DsV\u001b(B \u001b$(DsW\u001b(B \u001b$(DsX\u001b(B \u001b$(DsY\u001b(B \u001b$(DsZ\u001b(B \u001b$(Ds[\u001b(B \u001b$(Ds\\\u001b(B \u001b$(Ds]\u001b(B \u001b$(Ds^\u001b(B \u001b$(Ds_\u001b(B\n\u001b$(Ds`\u001b(B \u001b$(Dsa\u001b(B \u001b$(Dsb\u001b(B \u001b$(Dsc\u001b(B \u001b$(Dsd\u001b(B \u001b$(Dse\u001b(B \u001b$(Dsf\u001b(B \u001b$(Dsg\u001b(B \u001b$(Dsh\u001b(B \u001b$(Dsi\u001b(B \u001b$(Dsj\u001b(B \u001b$(Dsk\u001b(B \u001b$(Dsl\u001b(B \u001b$(Dsm\u001b(B \u001b$(Dsn\u001b(B \u001b$(Dso\u001b(B\n\u001b$(Dsp\u001b(B \u001b$(Dsq\u001b(B \u001b$(Dsr\u001b(B \u001b$(Dss\u001b(B \u001b$(Dst\u001b(B \u001b$(Dsu\u001b(B \u001b$(Dsv\u001b(B \u001b$(Dsw\u001b(B \u001b$(Dsx\u001b(B \u001b$(Dsy\u001b(B \u001b$(Dsz\u001b(B \u001b$(Ds{\u001b(B \u001b$(Ds|\u001b(B \u001b$(Ds}\u001b(B \u001b$(Ds~\u001b(B\n  \u001b$(Dt!\u001b(B \u001b$(Dt\"\u001b(B   \u001b$(Dt$\u001b(B \u001b$(Dt%\u001b(B \u001b$(Dt&\u001b(B \u001b$(Dt'\u001b(B \u001b$(Dt(\u001b(B \u001b$(Dt)\u001b(B \u001b$(Dt*\u001b(B \u001b$(Dt+\u001b(B \u001b$(Dt,\u001b(B\n      \u001b$(Dtc\u001b(B\n  \u001b$(Du!\u001b(B \u001b$(Du\"\u001b(B \u001b$(Du#\u001b(B \u001b$(Du$\u001b(B \u001b$(Du%\u001b(B \u001b$(Du&\u001b(B \u001b$(Du'\u001b(B \u001b$(Du(\u001b(B \u001b$(Du)\u001b(B \u001b$(Du*\u001b(B \u001b$(Du+\u001b(B \u001b$(Du,\u001b(B \u001b$(Du-\u001b(B \u001b$(Du.\u001b(B \u001b$(Du/\u001b(B\n\u001b$(Du0\u001b(B \u001b$(Du1\u001b(B \u001b$(Du2\u001b(B \u001b$(Du3\u001b(B \u001b$(Du4\u001b(B \u001b$(Du5\u001b(B \u001b$(Du6\u001b(B \u001b$(Du7\u001b(B \u001b$(Du8\u001b(B \u001b$(Du9\u001b(B \u001b$(Du:\u001b(B \u001b$(Du;\u001b(B \u001b$(Du<\u001b(B \u001b$(Du=\u001b(B \u001b$(Du>\u001b(B \u001b$(Du?\u001b(B\n\u001b$(Du@\u001b(B \u001b$(DuA\u001b(B \u001b$(DuB\u001b(B \u001b$(DuC\u001b(B \u001b$(DuD\u001b(B \u001b$(DuE\u001b(B \u001b$(DuF\u001b(B \u001b$(DuG\u001b(B \u001b$(DuH\u001b(B \u001b$(DuI\u001b(B \u001b$(DuJ\u001b(B \u001b$(DuK\u001b(B \u001b$(DuL\u001b(B \u001b$(DuM\u001b(B \u001b$(DuN\u001b(B \u001b$(DuO\u001b(B\n\u001b$(DuP\u001b(B \u001b$(DuQ\u001b(B \u001b$(DuR\u001b(B \u001b$(DuS\u001b(B \u001b$(DuT\u001b(B \u001b$(DuU\u001b(B \u001b$(DuV\u001b(B \u001b$(DuW\u001b(B \u001b$(DuX\u001b(B \u001b$(DuY\u001b(B \u001b$(DuZ\u001b(B \u001b$(Du[\u001b(B \u001b$(Du\\\u001b(B \u001b$(Du]\u001b(B \u001b$(Du^\u001b(B \u001b$(Du_\u001b(B\n\u001b$(Du`\u001b(B \u001b$(Dua\u001b(B \u001b$(Dub\u001b(B \u001b$(Duc\u001b(B \u001b$(Dud\u001b(B \u001b$(Due\u001b(B \u001b$(Duf\u001b(B \u001b$(Dug\u001b(B \u001b$(Duh\u001b(B \u001b$(Dui\u001b(B \u001b$(Duj\u001b(B \u001b$(Duk\u001b(B \u001b$(Dul\u001b(B \u001b$(Dum\u001b(B \u001b$(Dun\u001b(B \u001b$(Duo\u001b(B\n\u001b$(Dup\u001b(B \u001b$(Duq\u001b(B \u001b$(Dur\u001b(B \u001b$(Dus\u001b(B \u001b$(Dut\u001b(B \u001b$(Duu\u001b(B \u001b$(Duv\u001b(B \u001b$(Duw\u001b(B \u001b$(Dux\u001b(B \u001b$(Duy\u001b(B \u001b$(Duz\u001b(B \u001b$(Du{\u001b(B \u001b$(Du|\u001b(B \u001b$(Du}\u001b(B \u001b$(Du~\u001b(B\n  \u001b$(Dv!\u001b(B \u001b$(Dv\"\u001b(B \u001b$(Dv#\u001b(B \u001b$(Dv$\u001b(B \u001b$(Dv%\u001b(B \u001b$(Dv&\u001b(B \u001b$(Dv'\u001b(B \u001b$(Dv(\u001b(B \u001b$(Dv)\u001b(B \u001b$(Dv*\u001b(B \u001b$(Dv+\u001b(B \u001b$(Dv,\u001b(B \u001b$(Dv-\u001b(B \u001b$(Dv.\u001b(B \u001b$(Dv/\u001b(B\n\u001b$(Dv0\u001b(B \u001b$(Dv1\u001b(B \u001b$(Dv2\u001b(B \u001b$(Dv3\u001b(B \u001b$(Dv4\u001b(B \u001b$(Dv5\u001b(B \u001b$(Dv6\u001b(B \u001b$(Dv7\u001b(B \u001b$(Dv8\u001b(B \u001b$(Dv9\u001b(B \u001b$(Dv:\u001b(B \u001b$(Dv;\u001b(B \u001b$(Dv<\u001b(B \u001b$(Dv=\u001b(B \u001b$(Dv>\u001b(B \u001b$(Dv?\u001b(B\n\u001b$(Dv@\u001b(B \u001b$(DvA\u001b(B \u001b$(DvB\u001b(B \u001b$(DvC\u001b(B \u001b$(DvD\u001b(B \u001b$(DvE\u001b(B \u001b$(DvF\u001b(B \u001b$(DvG\u001b(B \u001b$(DvH\u001b(B \u001b$(DvI\u001b(B \u001b$(DvJ\u001b(B \u001b$(DvK\u001b(B \u001b$(DvL\u001b(B \u001b$(DvM\u001b(B \u001b$(DvN\u001b(B \u001b$(DvO\u001b(B\n\u001b$(DvP\u001b(B \u001b$(DvQ\u001b(B \u001b$(DvR\u001b(B \u001b$(DvS\u001b(B \u001b$(DvT\u001b(B \u001b$(DvU\u001b(B \u001b$(DvV\u001b(B \u001b$(DvW\u001b(B \u001b$(DvX\u001b(B \u001b$(DvY\u001b(B \u001b$(DvZ\u001b(B \u001b$(Dv[\u001b(B \u001b$(Dv\\\u001b(B \u001b$(Dv]\u001b(B \u001b$(Dv^\u001b(B \u001b$(Dv_\u001b(B\n\u001b$(Dv`\u001b(B \u001b$(Dva\u001b(B \u001b$(Dvb\u001b(B \u001b$(Dvc\u001b(B \u001b$(Dvd\u001b(B \u001b$(Dve\u001b(B \u001b$(Dvf\u001b(B \u001b$(Dvg\u001b(B \u001b$(Dvh\u001b(B \u001b$(Dvi\u001b(B \u001b$(Dvj\u001b(B \u001b$(Dvk\u001b(B \u001b$(Dvl\u001b(B \u001b$(Dvm\u001b(B \u001b$(Dvn\u001b(B \u001b$(Dvo\u001b(B\n\u001b$(Dvp\u001b(B \u001b$(Dvq\u001b(B \u001b$(Dvr\u001b(B \u001b$(Dvs\u001b(B \u001b$(Dvt\u001b(B \u001b$(Dvu\u001b(B \u001b$(Dvv\u001b(B \u001b$(Dvw\u001b(B \u001b$(Dvx\u001b(B \u001b$(Dvy\u001b(B \u001b$(Dvz\u001b(B \u001b$(Dv{\u001b(B \u001b$(Dv|\u001b(B \u001b$(Dv}\u001b(B \u001b$(Dv~\u001b(B\n  \u001b$(Dw!\u001b(B \u001b$(Dw\"\u001b(B \u001b$(Dw#\u001b(B \u001b$(Dw$\u001b(B \u001b$(Dw%\u001b(B \u001b$(Dw&\u001b(B \u001b$(Dw'\u001b(B \u001b$(Dw(\u001b(B \u001b$(Dw)\u001b(B \u001b$(Dw*\u001b(B \u001b$(Dw+\u001b(B \u001b$(Dw,\u001b(B \u001b$(Dw-\u001b(B \u001b$(Dw.\u001b(B \u001b$(Dw/\u001b(B\n\u001b$(Dw0\u001b(B \u001b$(Dw1\u001b(B \u001b$(Dw2\u001b(B \u001b$(Dw3\u001b(B \u001b$(Dw4\u001b(B \u001b$(Dw5\u001b(B \u001b$(Dw6\u001b(B \u001b$(Dw7\u001b(B \u001b$(Dw8\u001b(B \u001b$(Dw9\u001b(B \u001b$(Dw:\u001b(B \u001b$(Dw;\u001b(B \u001b$(Dw<\u001b(B \u001b$(Dw=\u001b(B \u001b$(Dw>\u001b(B \u001b$(Dw?\u001b(B\n\u001b$(Dw@\u001b(B \u001b$(DwA\u001b(B \u001b$(DwB\u001b(B \u001b$(DwC\u001b(B \u001b$(DwD\u001b(B \u001b$(DwE\u001b(B \u001b$(DwF\u001b(B \u001b$(DwG\u001b(B \u001b$(DwH\u001b(B \u001b$(DwI\u001b(B \u001b$(DwJ\u001b(B \u001b$(DwK\u001b(B \u001b$(DwL\u001b(B \u001b$(DwM\u001b(B \u001b$(DwN\u001b(B \u001b$(DwO\u001b(B\n\u001b$(DwP\u001b(B \u001b$(DwQ\u001b(B \u001b$(DwR\u001b(B \u001b$(DwS\u001b(B \u001b$(DwT\u001b(B \u001b$(DwU\u001b(B \u001b$(DwV\u001b(B \u001b$(DwW\u001b(B \u001b$(DwX\u001b(B \u001b$(DwY\u001b(B \u001b$(DwZ\u001b(B \u001b$(Dw[\u001b(B \u001b$(Dw\\\u001b(B \u001b$(Dw]\u001b(B \u001b$(Dw^\u001b(B \u001b$(Dw_\u001b(B\n\u001b$(Dw`\u001b(B \u001b$(Dwa\u001b(B \u001b$(Dwb\u001b(B \u001b$(Dwc\u001b(B \u001b$(Dwd\u001b(B \u001b$(Dwe\u001b(B \u001b$(Dwf\u001b(B \u001b$(Dwg\u001b(B \u001b$(Dwh\u001b(B \u001b$(Dwi\u001b(B \u001b$(Dwj\u001b(B \u001b$(Dwk\u001b(B \u001b$(Dwl\u001b(B \u001b$(Dwm\u001b(B \u001b$(Dwn\u001b(B \u001b$(Dwo\u001b(B\n\u001b$(Dwp\u001b(B \u001b$(Dwq\u001b(B \u001b$(Dwr\u001b(B \u001b$(Dws\u001b(B \u001b$(Dwt\u001b(B \u001b$(Dwu\u001b(B \u001b$(Dwv\u001b(B \u001b$(Dww\u001b(B \u001b$(Dwx\u001b(B \u001b$(Dwy\u001b(B \u001b$(Dwz\u001b(B \u001b$(Dw{\u001b(B \u001b$(Dw|\u001b(B \u001b$(Dw}\u001b(B \u001b$(Dw~\u001b(B\n  \u001b$(Dx!\u001b(B \u001b$(Dx\"\u001b(B \u001b$(Dx#\u001b(B \u001b$(Dx$\u001b(B \u001b$(Dx%\u001b(B \u001b$(Dx&\u001b(B \u001b$(Dx'\u001b(B \u001b$(Dx(\u001b(B \u001b$(Dx)\u001b(B \u001b$(Dx*\u001b(B \u001b$(Dx+\u001b(B \u001b$(Dx,\u001b(B \u001b$(Dx-\u001b(B \u001b$(Dx.\u001b(B \u001b$(Dx/\u001b(B\n\u001b$(Dx0\u001b(B \u001b$(Dx1\u001b(B \u001b$(Dx2\u001b(B \u001b$(Dx3\u001b(B \u001b$(Dx4\u001b(B \u001b$(Dx5\u001b(B \u001b$(Dx6\u001b(B \u001b$(Dx7\u001b(B \u001b$(Dx8\u001b(B \u001b$(Dx9\u001b(B \u001b$(Dx:\u001b(B \u001b$(Dx;\u001b(B \u001b$(Dx<\u001b(B \u001b$(Dx=\u001b(B \u001b$(Dx>\u001b(B \u001b$(Dx?\u001b(B\n\u001b$(Dx@\u001b(B \u001b$(DxA\u001b(B \u001b$(DxB\u001b(B \u001b$(DxC\u001b(B \u001b$(DxD\u001b(B \u001b$(DxE\u001b(B \u001b$(DxF\u001b(B \u001b$(DxG\u001b(B \u001b$(DxH\u001b(B \u001b$(DxI\u001b(B \u001b$(DxJ\u001b(B \u001b$(DxK\u001b(B \u001b$(DxL\u001b(B \u001b$(DxM\u001b(B \u001b$(DxN\u001b(B \u001b$(DxO\u001b(B\n\u001b$(DxP\u001b(B \u001b$(DxQ\u001b(B \u001b$(DxR\u001b(B \u001b$(DxS\u001b(B \u001b$(DxT\u001b(B \u001b$(DxU\u001b(B \u001b$(DxV\u001b(B \u001b$(DxW\u001b(B \u001b$(DxX\u001b(B \u001b$(DxY\u001b(B \u001b$(DxZ\u001b(B \u001b$(Dx[\u001b(B \u001b$(Dx\\\u001b(B \u001b$(Dx]\u001b(B \u001b$(Dx^\u001b(B \u001b$(Dx_\u001b(B\n\u001b$(Dx`\u001b(B \u001b$(Dxa\u001b(B \u001b$(Dxb\u001b(B \u001b$(Dxc\u001b(B \u001b$(Dxd\u001b(B \u001b$(Dxe\u001b(B \u001b$(Dxf\u001b(B \u001b$(Dxg\u001b(B \u001b$(Dxh\u001b(B \u001b$(Dxi\u001b(B \u001b$(Dxj\u001b(B \u001b$(Dxk\u001b(B \u001b$(Dxl\u001b(B \u001b$(Dxm\u001b(B \u001b$(Dxn\u001b(B \u001b$(Dxo\u001b(B\n\u001b$(Dxp\u001b(B \u001b$(Dxq\u001b(B \u001b$(Dxr\u001b(B \u001b$(Dxs\u001b(B \u001b$(Dxt\u001b(B \u001b$(Dxu\u001b(B \u001b$(Dxv\u001b(B \u001b$(Dxw\u001b(B \u001b$(Dxx\u001b(B \u001b$(Dxy\u001b(B \u001b$(Dxz\u001b(B \u001b$(Dx{\u001b(B \u001b$(Dx|\u001b(B \u001b$(Dx}\u001b(B \u001b$(Dx~\u001b(B\n  \u001b$(Dy!\u001b(B \u001b$(Dy\"\u001b(B \u001b$(Dy#\u001b(B \u001b$(Dy$\u001b(B \u001b$(Dy%\u001b(B \u001b$(Dy&\u001b(B \u001b$(Dy'\u001b(B \u001b$(Dy(\u001b(B \u001b$(Dy)\u001b(B \u001b$(Dy*\u001b(B \u001b$(Dy+\u001b(B \u001b$(Dy,\u001b(B \u001b$(Dy-\u001b(B \u001b$(Dy.\u001b(B \u001b$(Dy/\u001b(B\n\u001b$(Dy0\u001b(B \u001b$(Dy1\u001b(B \u001b$(Dy2\u001b(B \u001b$(Dy3\u001b(B \u001b$(Dy4\u001b(B \u001b$(Dy5\u001b(B \u001b$(Dy6\u001b(B \u001b$(Dy7\u001b(B \u001b$(Dy8\u001b(B \u001b$(Dy9\u001b(B \u001b$(Dy:\u001b(B \u001b$(Dy;\u001b(B \u001b$(Dy<\u001b(B \u001b$(Dy=\u001b(B \u001b$(Dy>\u001b(B \u001b$(Dy?\u001b(B\n\u001b$(Dy@\u001b(B \u001b$(DyA\u001b(B \u001b$(DyB\u001b(B \u001b$(DyC\u001b(B \u001b$(DyD\u001b(B \u001b$(DyE\u001b(B \u001b$(DyF\u001b(B \u001b$(DyG\u001b(B \u001b$(DyH\u001b(B \u001b$(DyI\u001b(B \u001b$(DyJ\u001b(B \u001b$(DyK\u001b(B \u001b$(DyL\u001b(B \u001b$(DyM\u001b(B \u001b$(DyN\u001b(B \u001b$(DyO\u001b(B\n\u001b$(DyP\u001b(B \u001b$(DyQ\u001b(B \u001b$(DyR\u001b(B \u001b$(DyS\u001b(B \u001b$(DyT\u001b(B \u001b$(DyU\u001b(B \u001b$(DyV\u001b(B \u001b$(DyW\u001b(B \u001b$(DyX\u001b(B \u001b$(DyY\u001b(B \u001b$(DyZ\u001b(B \u001b$(Dy[\u001b(B \u001b$(Dy\\\u001b(B \u001b$(Dy]\u001b(B \u001b$(Dy^\u001b(B \u001b$(Dy_\u001b(B\n\u001b$(Dy`\u001b(B \u001b$(Dya\u001b(B \u001b$(Dyb\u001b(B \u001b$(Dyc\u001b(B \u001b$(Dyd\u001b(B \u001b$(Dye\u001b(B \u001b$(Dyf\u001b(B \u001b$(Dyg\u001b(B \u001b$(Dyh\u001b(B \u001b$(Dyi\u001b(B \u001b$(Dyj\u001b(B \u001b$(Dyk\u001b(B \u001b$(Dyl\u001b(B \u001b$(Dym\u001b(B \u001b$(Dyn\u001b(B \u001b$(Dyo\u001b(B\n\u001b$(Dyp\u001b(B \u001b$(Dyq\u001b(B \u001b$(Dyr\u001b(B \u001b$(Dys\u001b(B \u001b$(Dyt\u001b(B \u001b$(Dyu\u001b(B \u001b$(Dyv\u001b(B \u001b$(Dyw\u001b(B \u001b$(Dyx\u001b(B \u001b$(Dyy\u001b(B \u001b$(Dyz\u001b(B \u001b$(Dy{\u001b(B \u001b$(Dy|\u001b(B \u001b$(Dy}\u001b(B \u001b$(Dy~\u001b(B\n  \u001b$(Dz!\u001b(B \u001b$(Dz\"\u001b(B \u001b$(Dz#\u001b(B \u001b$(Dz$\u001b(B \u001b$(Dz%\u001b(B \u001b$(Dz&\u001b(B \u001b$(Dz'\u001b(B \u001b$(Dz(\u001b(B \u001b$(Dz)\u001b(B \u001b$(Dz*\u001b(B \u001b$(Dz+\u001b(B \u001b$(Dz,\u001b(B \u001b$(Dz-\u001b(B \u001b$(Dz.\u001b(B \u001b$(Dz/\u001b(B\n\u001b$(Dz0\u001b(B \u001b$(Dz1\u001b(B \u001b$(Dz2\u001b(B \u001b$(Dz3\u001b(B \u001b$(Dz4\u001b(B \u001b$(Dz5\u001b(B \u001b$(Dz6\u001b(B \u001b$(Dz7\u001b(B \u001b$(Dz8\u001b(B \u001b$(Dz9\u001b(B \u001b$(Dz:\u001b(B \u001b$(Dz;\u001b(B \u001b$(Dz<\u001b(B \u001b$(Dz=\u001b(B \u001b$(Dz>\u001b(B \u001b$(Dz?\u001b(B\n\u001b$(Dz@\u001b(B \u001b$(DzA\u001b(B \u001b$(DzB\u001b(B \u001b$(DzC\u001b(B \u001b$(DzD\u001b(B \u001b$(DzE\u001b(B \u001b$(DzF\u001b(B \u001b$(DzG\u001b(B \u001b$(DzH\u001b(B \u001b$(DzI\u001b(B \u001b$(DzJ\u001b(B \u001b$(DzK\u001b(B \u001b$(DzL\u001b(B \u001b$(DzM\u001b(B \u001b$(DzN\u001b(B \u001b$(DzO\u001b(B\n\u001b$(DzP\u001b(B \u001b$(DzQ\u001b(B \u001b$(DzR\u001b(B \u001b$(DzS\u001b(B \u001b$(DzT\u001b(B \u001b$(DzU\u001b(B \u001b$(DzV\u001b(B \u001b$(DzW\u001b(B \u001b$(DzX\u001b(B \u001b$(DzY\u001b(B \u001b$(DzZ\u001b(B \u001b$(Dz[\u001b(B \u001b$(Dz\\\u001b(B \u001b$(Dz]\u001b(B \u001b$(Dz^\u001b(B \u001b$(Dz_\u001b(B\n\u001b$(Dz`\u001b(B \u001b$(Dza\u001b(B \u001b$(Dzb\u001b(B \u001b$(Dzc\u001b(B \u001b$(Dzd\u001b(B \u001b$(Dze\u001b(B \u001b$(Dzf\u001b(B \u001b$(Dzg\u001b(B \u001b$(Dzh\u001b(B \u001b$(Dzi\u001b(B \u001b$(Dzj\u001b(B \u001b$(Dzk\u001b(B \u001b$(Dzl\u001b(B \u001b$(Dzm\u001b(B \u001b$(Dzn\u001b(B \u001b$(Dzo\u001b(B\n\u001b$(Dzp\u001b(B \u001b$(Dzq\u001b(B \u001b$(Dzr\u001b(B \u001b$(Dzs\u001b(B \u001b$(Dzt\u001b(B \u001b$(Dzu\u001b(B \u001b$(Dzv\u001b(B \u001b$(Dzw\u001b(B \u001b$(Dzx\u001b(B \u001b$(Dzy\u001b(B \u001b$(Dzz\u001b(B \u001b$(Dz{\u001b(B \u001b$(Dz|\u001b(B \u001b$(Dz}\u001b(B \u001b$(Dz~\u001b(B\n  \u001b$(D{!\u001b(B \u001b$(D{\"\u001b(B \u001b$(D{#\u001b(B \u001b$(D{$\u001b(B \u001b$(D{%\u001b(B \u001b$(D{&\u001b(B \u001b$(D{'\u001b(B \u001b$(D{(\u001b(B \u001b$(D{)\u001b(B \u001b$(D{*\u001b(B \u001b$(D{+\u001b(B \u001b$(D{,\u001b(B \u001b$(D{-\u001b(B \u001b$(D{.\u001b(B \u001b$(D{/\u001b(B\n\u001b$(D{0\u001b(B \u001b$(D{1\u001b(B \u001b$(D{2\u001b(B \u001b$(D{3\u001b(B \u001b$(D{4\u001b(B \u001b$(D{5\u001b(B \u001b$(D{6\u001b(B \u001b$(D{7\u001b(B \u001b$(D{8\u001b(B \u001b$(D{9\u001b(B \u001b$(D{:\u001b(B \u001b$(D{;\u001b(B \u001b$(D{<\u001b(B \u001b$(D{=\u001b(B \u001b$(D{>\u001b(B \u001b$(D{?\u001b(B\n\u001b$(D{@\u001b(B \u001b$(D{A\u001b(B \u001b$(D{B\u001b(B \u001b$(D{C\u001b(B \u001b$(D{D\u001b(B \u001b$(D{E\u001b(B \u001b$(D{F\u001b(B \u001b$(D{G\u001b(B \u001b$(D{H\u001b(B \u001b$(D{I\u001b(B \u001b$(D{J\u001b(B \u001b$(D{K\u001b(B \u001b$(D{L\u001b(B \u001b$(D{M\u001b(B \u001b$(D{N\u001b(B \u001b$(D{O\u001b(B\n\u001b$(D{P\u001b(B \u001b$(D{Q\u001b(B \u001b$(D{R\u001b(B \u001b$(D{S\u001b(B \u001b$(D{T\u001b(B \u001b$(D{U\u001b(B \u001b$(D{V\u001b(B \u001b$(D{W\u001b(B \u001b$(D{X\u001b(B \u001b$(D{Y\u001b(B \u001b$(D{Z\u001b(B \u001b$(D{[\u001b(B \u001b$(D{\\\u001b(B \u001b$(D{]\u001b(B \u001b$(D{^\u001b(B \u001b$(D{_\u001b(B\n\u001b$(D{`\u001b(B \u001b$(D{a\u001b(B \u001b$(D{b\u001b(B \u001b$(D{c\u001b(B \u001b$(D{d\u001b(B \u001b$(D{e\u001b(B \u001b$(D{f\u001b(B \u001b$(D{g\u001b(B \u001b$(D{h\u001b(B \u001b$(D{i\u001b(B \u001b$(D{j\u001b(B \u001b$(D{k\u001b(B \u001b$(D{l\u001b(B \u001b$(D{m\u001b(B \u001b$(D{n\u001b(B \u001b$(D{o\u001b(B\n\u001b$(D{p\u001b(B \u001b$(D{q\u001b(B \u001b$(D{r\u001b(B \u001b$(D{s\u001b(B \u001b$(D{t\u001b(B \u001b$(D{u\u001b(B \u001b$(D{v\u001b(B \u001b$(D{w\u001b(B \u001b$(D{x\u001b(B \u001b$(D{y\u001b(B \u001b$(D{z\u001b(B \u001b$(D{{\u001b(B \u001b$(D{|\u001b(B \u001b$(D{}\u001b(B \u001b$(D{~\u001b(B\n  \u001b$(D|!\u001b(B \u001b$(D|\"\u001b(B \u001b$(D|#\u001b(B \u001b$(D|$\u001b(B \u001b$(D|%\u001b(B \u001b$(D|&\u001b(B \u001b$(D|'\u001b(B \u001b$(D|(\u001b(B \u001b$(D|)\u001b(B \u001b$(D|*\u001b(B \u001b$(D|+\u001b(B \u001b$(D|,\u001b(B \u001b$(D|-\u001b(B \u001b$(D|.\u001b(B \u001b$(D|/\u001b(B\n\u001b$(D|0\u001b(B \u001b$(D|1\u001b(B \u001b$(D|2\u001b(B \u001b$(D|3\u001b(B \u001b$(D|4\u001b(B \u001b$(D|5\u001b(B \u001b$(D|6\u001b(B \u001b$(D|7\u001b(B \u001b$(D|8\u001b(B \u001b$(D|9\u001b(B \u001b$(D|:\u001b(B \u001b$(D|;\u001b(B \u001b$(D|<\u001b(B \u001b$(D|=\u001b(B \u001b$(D|>\u001b(B \u001b$(D|?\u001b(B\n\u001b$(D|@\u001b(B \u001b$(D|A\u001b(B \u001b$(D|B\u001b(B \u001b$(D|C\u001b(B \u001b$(D|D\u001b(B \u001b$(D|E\u001b(B \u001b$(D|F\u001b(B \u001b$(D|G\u001b(B \u001b$(D|H\u001b(B \u001b$(D|I\u001b(B \u001b$(D|J\u001b(B \u001b$(D|K\u001b(B \u001b$(D|L\u001b(B \u001b$(D|M\u001b(B \u001b$(D|N\u001b(B \u001b$(D|O\u001b(B\n\u001b$(D|P\u001b(B \u001b$(D|Q\u001b(B \u001b$(D|R\u001b(B \u001b$(D|S\u001b(B \u001b$(D|T\u001b(B \u001b$(D|U\u001b(B \u001b$(D|V\u001b(B \u001b$(D|W\u001b(B \u001b$(D|X\u001b(B \u001b$(D|Y\u001b(B \u001b$(D|Z\u001b(B \u001b$(D|[\u001b(B \u001b$(D|\\\u001b(B \u001b$(D|]\u001b(B \u001b$(D|^\u001b(B \u001b$(D|_\u001b(B\n\u001b$(D|`\u001b(B \u001b$(D|a\u001b(B \u001b$(D|b\u001b(B \u001b$(D|c\u001b(B \u001b$(D|d\u001b(B \u001b$(D|e\u001b(B \u001b$(D|f\u001b(B \u001b$(D|g\u001b(B \u001b$(D|h\u001b(B \u001b$(D|i\u001b(B \u001b$(D|j\u001b(B \u001b$(D|k\u001b(B \u001b$(D|l\u001b(B \u001b$(D|m\u001b(B \u001b$(D|n\u001b(B \u001b$(D|o\u001b(B\n\u001b$(D|p\u001b(B \u001b$(D|q\u001b(B \u001b$(D|r\u001b(B \u001b$(D|s\u001b(B \u001b$(D|t\u001b(B \u001b$(D|u\u001b(B \u001b$(D|v\u001b(B \u001b$(D|w\u001b(B \u001b$(D|x\u001b(B \u001b$(D|y\u001b(B \u001b$(D|z\u001b(B \u001b$(D|{\u001b(B \u001b$(D||\u001b(B \u001b$(D|}\u001b(B \u001b$(D|~\u001b(B\n  \u001b$(D}!\u001b(B \u001b$(D}\"\u001b(B \u001b$(D}#\u001b(B \u001b$(D}$\u001b(B \u001b$(D}%\u001b(B \u001b$(D}&\u001b(B \u001b$(D}'\u001b(B \u001b$(D}(\u001b(B \u001b$(D})\u001b(B \u001b$(D}*\u001b(B \u001b$(D}+\u001b(B \u001b$(D},\u001b(B \u001b$(D}-\u001b(B \u001b$(D}.\u001b(B \u001b$(D}/\u001b(B\n\u001b$(D}0\u001b(B \u001b$(D}1\u001b(B \u001b$(D}2\u001b(B \u001b$(D}3\u001b(B \u001b$(D}4\u001b(B \u001b$(D}5\u001b(B \u001b$(D}6\u001b(B \u001b$(D}7\u001b(B \u001b$(D}8\u001b(B \u001b$(D}9\u001b(B \u001b$(D}:\u001b(B \u001b$(D};\u001b(B \u001b$(D}<\u001b(B \u001b$(D}=\u001b(B \u001b$(D}>\u001b(B \u001b$(D}?\u001b(B\n\u001b$(D}@\u001b(B \u001b$(D}A\u001b(B \u001b$(D}B\u001b(B \u001b$(D}C\u001b(B \u001b$(D}D\u001b(B \u001b$(D}E\u001b(B \u001b$(D}F\u001b(B \u001b$(D}G\u001b(B \u001b$(D}H\u001b(B \u001b$(D}I\u001b(B \u001b$(D}J\u001b(B \u001b$(D}K\u001b(B \u001b$(D}L\u001b(B \u001b$(D}M\u001b(B \u001b$(D}N\u001b(B \u001b$(D}O\u001b(B\n\u001b$(D}P\u001b(B \u001b$(D}Q\u001b(B \u001b$(D}R\u001b(B \u001b$(D}S\u001b(B \u001b$(D}T\u001b(B \u001b$(D}U\u001b(B \u001b$(D}V\u001b(B \u001b$(D}W\u001b(B \u001b$(D}X\u001b(B \u001b$(D}Y\u001b(B \u001b$(D}Z\u001b(B \u001b$(D}[\u001b(B \u001b$(D}\\\u001b(B \u001b$(D}]\u001b(B \u001b$(D}^\u001b(B \u001b$(D}_\u001b(B\n\u001b$(D}`\u001b(B \u001b$(D}a\u001b(B \u001b$(D}b\u001b(B \u001b$(D}c\u001b(B \u001b$(D}d\u001b(B \u001b$(D}e\u001b(B \u001b$(D}f\u001b(B \u001b$(D}g\u001b(B \u001b$(D}h\u001b(B \u001b$(D}i\u001b(B \u001b$(D}j\u001b(B \u001b$(D}k\u001b(B \u001b$(D}l\u001b(B \u001b$(D}m\u001b(B \u001b$(D}n\u001b(B \u001b$(D}o\u001b(B\n\u001b$(D}p\u001b(B \u001b$(D}q\u001b(B \u001b$(D}r\u001b(B \u001b$(D}s\u001b(B \u001b$(D}t\u001b(B \u001b$(D}u\u001b(B \u001b$(D}v\u001b(B \u001b$(D}w\u001b(B \u001b$(D}x\u001b(B \u001b$(D}y\u001b(B \u001b$(D}z\u001b(B \u001b$(D}{\u001b(B \u001b$(D}|\u001b(B \u001b$(D}}\u001b(B \u001b$(D}~\u001b(B\n  \u001b$(D~!\u001b(B \u001b$(D~\"\u001b(B \u001b$(D~#\u001b(B \u001b$(D~$\u001b(B \u001b$(D~%\u001b(B \u001b$(D~&\u001b(B \u001b$(D~'\u001b(B \u001b$(D~(\u001b(B \u001b$(D~)\u001b(B \u001b$(D~*\u001b(B \u001b$(D~+\u001b(B \u001b$(D~,\u001b(B \u001b$(D~-\u001b(B \u001b$(D~.\u001b(B \u001b$(D~/\u001b(B\n\u001b$(D~0\u001b(B \u001b$(D~1\u001b(B \u001b$(D~2\u001b(B \u001b$(D~3\u001b(B \u001b$(D~4\u001b(B \u001b$(D~5\u001b(B \u001b$(D~6\u001b(B \u001b$(D~7\u001b(B \u001b$(D~8\u001b(B \u001b$(D~9\u001b(B \u001b$(D~:\u001b(B \u001b$(D~;\u001b(B \u001b$(D~<\u001b(B \u001b$(D~=\u001b(B \u001b$(D~>\u001b(B \u001b$(D~?\u001b(B\n\u001b$(D~@\u001b(B \u001b$(D~A\u001b(B \u001b$(D~B\u001b(B \u001b$(D~C\u001b(B \u001b$(D~D\u001b(B \u001b$(D~E\u001b(B \u001b$(D~F\u001b(B \u001b$(D~G\u001b(B \u001b$(D~H\u001b(B \u001b$(D~I\u001b(B \u001b$(D~J\u001b(B \u001b$(D~K\u001b(B \u001b$(D~L\u001b(B \u001b$(D~M\u001b(B \u001b$(D~N\u001b(B \u001b$(D~O\u001b(B\n\u001b$(D~P\u001b(B \u001b$(D~Q\u001b(B \u001b$(D~R\u001b(B \u001b$(D~S\u001b(B \u001b$(D~T\u001b(B \u001b$(D~U\u001b(B \u001b$(D~V\u001b(B \u001b$(D~W\u001b(B \u001b$(D~X\u001b(B \u001b$(D~Y\u001b(B \u001b$(D~Z\u001b(B \u001b$(D~[\u001b(B \u001b$(D~\\\u001b(B \u001b$(D~]\u001b(B \u001b$(D~^\u001b(B \u001b$(D~_\u001b(B\n\u001b$(D~`\u001b(B \u001b$(D~a\u001b(B \u001b$(D~b\u001b(B \u001b$(D~c\u001b(B \u001b$(D~d\u001b(B \u001b$(D~e\u001b(B \u001b$(D~f\u001b(B \u001b$(D~g\u001b(B \u001b$(D~h\u001b(B \u001b$(D~i\u001b(B \u001b$(D~j\u001b(B \u001b$(D~k\u001b(B \u001b$(D~l\u001b(B \u001b$(D~m\u001b(B \u001b$(D~n\u001b(B \u001b$(D~o\u001b(B\n\u001b$(D~p\u001b(B \u001b$(D~q\u001b(B \u001b$(D~r\u001b(B \u001b$(D~s\u001b(B \u001b$(D~t\u001b(B \u001b$(D~u\u001b(B \u001b$(D~v\u001b(B \u001b$(D~w\u001b(B \u001b$(D~x\u001b(B \u001b$(D~y\u001b(B \u001b$(D~z\u001b(B \u001b$(D~{\u001b(B \u001b$(D~|\u001b(B \u001b$(D~}\u001b(B \u001b$(D~~\u001b(B\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-JP-snippet",
    "content": "Japanese (\u001b$BF|K\\8l\u001b(B)\t\t\u001b$B$3$s$K$A$O\u001b(B\n\tJIS  -- \u001b$B855$\u001b(B  \u001b$B3+H/\u001b(B\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-JP-snippet.UTF-8",
    "content": "Japanese (日本語)\t\tこんにちは\n\tJIS  -- 元気  開発\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-KR-snippet",
    "content": "Korean (\u001b$)C\u000eGQ1[\u000f)\t\t\t\u000e>H3gGO<<?d\u000f, \u000e>H3gGO=J4O1n\u000f\n\tKSC  -- \u001b$)C\u000ej*Q(\u000f  \u000eKR[!\u000f\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-2022-KR-snippet.UTF-8",
    "content": "Korean (한글)\t\t\t안녕하세요, 안녕하십니까\n\tKSC  -- 元氣  開發\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-1.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x00C3\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x00CC\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x00D0\n0xD1\t0x00D1\n0xD2\t0x00D2\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x00D8\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x00DD\n0xDE\t0x00DE\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x00E3\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x00F0\n0xF1\t0x00F1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x00FD\n0xFE\t0x00FE\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-10.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x0104\n0xA2\t0x0112\n0xA3\t0x0122\n0xA4\t0x012A\n0xA5\t0x0128\n0xA6\t0x0136\n0xA7\t0x00A7\n0xA8\t0x013B\n0xA9\t0x0110\n0xAA\t0x0160\n0xAB\t0x0166\n0xAC\t0x017D\n0xAD\t0x00AD\n0xAE\t0x016A\n0xAF\t0x014A\n0xB0\t0x00B0\n0xB1\t0x0105\n0xB2\t0x0113\n0xB3\t0x0123\n0xB4\t0x012B\n0xB5\t0x0129\n0xB6\t0x0137\n0xB7\t0x00B7\n0xB8\t0x013C\n0xB9\t0x0111\n0xBA\t0x0161\n0xBB\t0x0167\n0xBC\t0x017E\n0xBD\t0x2015\n0xBE\t0x016B\n0xBF\t0x014B\n0xC0\t0x0100\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x00C3\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x012E\n0xC8\t0x010C\n0xC9\t0x00C9\n0xCA\t0x0118\n0xCB\t0x00CB\n0xCC\t0x0116\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x00D0\n0xD1\t0x0145\n0xD2\t0x014C\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x0168\n0xD8\t0x00D8\n0xD9\t0x0172\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x00DD\n0xDE\t0x00DE\n0xDF\t0x00DF\n0xE0\t0x0101\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x00E3\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x012F\n0xE8\t0x010D\n0xE9\t0x00E9\n0xEA\t0x0119\n0xEB\t0x00EB\n0xEC\t0x0117\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x00F0\n0xF1\t0x0146\n0xF2\t0x014D\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x0169\n0xF8\t0x00F8\n0xF9\t0x0173\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x00FD\n0xFE\t0x00FE\n0xFF\t0x0138\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-11.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x0E01\n0xA2\t0x0E02\n0xA3\t0x0E03\n0xA4\t0x0E04\n0xA5\t0x0E05\n0xA6\t0x0E06\n0xA7\t0x0E07\n0xA8\t0x0E08\n0xA9\t0x0E09\n0xAA\t0x0E0A\n0xAB\t0x0E0B\n0xAC\t0x0E0C\n0xAD\t0x0E0D\n0xAE\t0x0E0E\n0xAF\t0x0E0F\n0xB0\t0x0E10\n0xB1\t0x0E11\n0xB2\t0x0E12\n0xB3\t0x0E13\n0xB4\t0x0E14\n0xB5\t0x0E15\n0xB6\t0x0E16\n0xB7\t0x0E17\n0xB8\t0x0E18\n0xB9\t0x0E19\n0xBA\t0x0E1A\n0xBB\t0x0E1B\n0xBC\t0x0E1C\n0xBD\t0x0E1D\n0xBE\t0x0E1E\n0xBF\t0x0E1F\n0xC0\t0x0E20\n0xC1\t0x0E21\n0xC2\t0x0E22\n0xC3\t0x0E23\n0xC4\t0x0E24\n0xC5\t0x0E25\n0xC6\t0x0E26\n0xC7\t0x0E27\n0xC8\t0x0E28\n0xC9\t0x0E29\n0xCA\t0x0E2A\n0xCB\t0x0E2B\n0xCC\t0x0E2C\n0xCD\t0x0E2D\n0xCE\t0x0E2E\n0xCF\t0x0E2F\n0xD0\t0x0E30\n0xD1\t0x0E31\n0xD2\t0x0E32\n0xD3\t0x0E33\n0xD4\t0x0E34\n0xD5\t0x0E35\n0xD6\t0x0E36\n0xD7\t0x0E37\n0xD8\t0x0E38\n0xD9\t0x0E39\n0xDA\t0x0E3A\n0xDF\t0x0E3F\n0xE0\t0x0E40\n0xE1\t0x0E41\n0xE2\t0x0E42\n0xE3\t0x0E43\n0xE4\t0x0E44\n0xE5\t0x0E45\n0xE6\t0x0E46\n0xE7\t0x0E47\n0xE8\t0x0E48\n0xE9\t0x0E49\n0xEA\t0x0E4A\n0xEB\t0x0E4B\n0xEC\t0x0E4C\n0xED\t0x0E4D\n0xEE\t0x0E4E\n0xEF\t0x0E4F\n0xF0\t0x0E50\n0xF1\t0x0E51\n0xF2\t0x0E52\n0xF3\t0x0E53\n0xF4\t0x0E54\n0xF5\t0x0E55\n0xF6\t0x0E56\n0xF7\t0x0E57\n0xF8\t0x0E58\n0xF9\t0x0E59\n0xFA\t0x0E5A\n0xFB\t0x0E5B\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-13.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x201D\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x201E\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00D8\n0xA9\t0x00A9\n0xAA\t0x0156\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00C6\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x201C\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00F8\n0xB9\t0x00B9\n0xBA\t0x0157\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00E6\n0xC0\t0x0104\n0xC1\t0x012E\n0xC2\t0x0100\n0xC3\t0x0106\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x0118\n0xC7\t0x0112\n0xC8\t0x010C\n0xC9\t0x00C9\n0xCA\t0x0179\n0xCB\t0x0116\n0xCC\t0x0122\n0xCD\t0x0136\n0xCE\t0x012A\n0xCF\t0x013B\n0xD0\t0x0160\n0xD1\t0x0143\n0xD2\t0x0145\n0xD3\t0x00D3\n0xD4\t0x014C\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x0172\n0xD9\t0x0141\n0xDA\t0x015A\n0xDB\t0x016A\n0xDC\t0x00DC\n0xDD\t0x017B\n0xDE\t0x017D\n0xDF\t0x00DF\n0xE0\t0x0105\n0xE1\t0x012F\n0xE2\t0x0101\n0xE3\t0x0107\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x0119\n0xE7\t0x0113\n0xE8\t0x010D\n0xE9\t0x00E9\n0xEA\t0x017A\n0xEB\t0x0117\n0xEC\t0x0123\n0xED\t0x0137\n0xEE\t0x012B\n0xEF\t0x013C\n0xF0\t0x0161\n0xF1\t0x0144\n0xF2\t0x0146\n0xF3\t0x00F3\n0xF4\t0x014D\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x0173\n0xF9\t0x0142\n0xFA\t0x015B\n0xFB\t0x016B\n0xFC\t0x00FC\n0xFD\t0x017C\n0xFE\t0x017E\n0xFF\t0x2019\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-14.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x1E02\n0xA2\t0x1E03\n0xA3\t0x00A3\n0xA4\t0x010A\n0xA5\t0x010B\n0xA6\t0x1E0A\n0xA7\t0x00A7\n0xA8\t0x1E80\n0xA9\t0x00A9\n0xAA\t0x1E82\n0xAB\t0x1E0B\n0xAC\t0x1EF2\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x0178\n0xB0\t0x1E1E\n0xB1\t0x1E1F\n0xB2\t0x0120\n0xB3\t0x0121\n0xB4\t0x1E40\n0xB5\t0x1E41\n0xB6\t0x00B6\n0xB7\t0x1E56\n0xB8\t0x1E81\n0xB9\t0x1E57\n0xBA\t0x1E83\n0xBB\t0x1E60\n0xBC\t0x1EF3\n0xBD\t0x1E84\n0xBE\t0x1E85\n0xBF\t0x1E61\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x00C3\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x00CC\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x0174\n0xD1\t0x00D1\n0xD2\t0x00D2\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x1E6A\n0xD8\t0x00D8\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x00DD\n0xDE\t0x0176\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x00E3\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x0175\n0xF1\t0x00F1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x1E6B\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x00FD\n0xFE\t0x0177\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-15.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x20AC\n0xA5\t0x00A5\n0xA6\t0x0160\n0xA7\t0x00A7\n0xA8\t0x0161\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x017D\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x017E\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x0152\n0xBD\t0x0153\n0xBE\t0x0178\n0xBF\t0x00BF\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x00C3\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x00CC\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x00D0\n0xD1\t0x00D1\n0xD2\t0x00D2\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x00D8\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x00DD\n0xDE\t0x00DE\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x00E3\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x00F0\n0xF1\t0x00F1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x00FD\n0xFE\t0x00FE\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-16.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x0104\n0xA2\t0x0105\n0xA3\t0x0141\n0xA4\t0x20AC\n0xA5\t0x201E\n0xA6\t0x0160\n0xA7\t0x00A7\n0xA8\t0x0161\n0xA9\t0x00A9\n0xAA\t0x0218\n0xAB\t0x00AB\n0xAC\t0x0179\n0xAD\t0x00AD\n0xAE\t0x017A\n0xAF\t0x017B\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x010C\n0xB3\t0x0142\n0xB4\t0x017D\n0xB5\t0x201D\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x017E\n0xB9\t0x010D\n0xBA\t0x0219\n0xBB\t0x00BB\n0xBC\t0x0152\n0xBD\t0x0153\n0xBE\t0x0178\n0xBF\t0x017C\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x0102\n0xC4\t0x00C4\n0xC5\t0x0106\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x00CC\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x0110\n0xD1\t0x0143\n0xD2\t0x00D2\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x0150\n0xD6\t0x00D6\n0xD7\t0x015A\n0xD8\t0x0170\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x0118\n0xDE\t0x021A\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x0103\n0xE4\t0x00E4\n0xE5\t0x0107\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x0111\n0xF1\t0x0144\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x0151\n0xF6\t0x00F6\n0xF7\t0x015B\n0xF8\t0x0171\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x0119\n0xFE\t0x021B\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-2.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x0104\n0xA2\t0x02D8\n0xA3\t0x0141\n0xA4\t0x00A4\n0xA5\t0x013D\n0xA6\t0x015A\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x0160\n0xAA\t0x015E\n0xAB\t0x0164\n0xAC\t0x0179\n0xAD\t0x00AD\n0xAE\t0x017D\n0xAF\t0x017B\n0xB0\t0x00B0\n0xB1\t0x0105\n0xB2\t0x02DB\n0xB3\t0x0142\n0xB4\t0x00B4\n0xB5\t0x013E\n0xB6\t0x015B\n0xB7\t0x02C7\n0xB8\t0x00B8\n0xB9\t0x0161\n0xBA\t0x015F\n0xBB\t0x0165\n0xBC\t0x017A\n0xBD\t0x02DD\n0xBE\t0x017E\n0xBF\t0x017C\n0xC0\t0x0154\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x0102\n0xC4\t0x00C4\n0xC5\t0x0139\n0xC6\t0x0106\n0xC7\t0x00C7\n0xC8\t0x010C\n0xC9\t0x00C9\n0xCA\t0x0118\n0xCB\t0x00CB\n0xCC\t0x011A\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x010E\n0xD0\t0x0110\n0xD1\t0x0143\n0xD2\t0x0147\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x0150\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x0158\n0xD9\t0x016E\n0xDA\t0x00DA\n0xDB\t0x0170\n0xDC\t0x00DC\n0xDD\t0x00DD\n0xDE\t0x0162\n0xDF\t0x00DF\n0xE0\t0x0155\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x0103\n0xE4\t0x00E4\n0xE5\t0x013A\n0xE6\t0x0107\n0xE7\t0x00E7\n0xE8\t0x010D\n0xE9\t0x00E9\n0xEA\t0x0119\n0xEB\t0x00EB\n0xEC\t0x011B\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x010F\n0xF0\t0x0111\n0xF1\t0x0144\n0xF2\t0x0148\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x0151\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x0159\n0xF9\t0x016F\n0xFA\t0x00FA\n0xFB\t0x0171\n0xFC\t0x00FC\n0xFD\t0x00FD\n0xFE\t0x0163\n0xFF\t0x02D9\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-3.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x0126\n0xA2\t0x02D8\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA6\t0x0124\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x0130\n0xAA\t0x015E\n0xAB\t0x011E\n0xAC\t0x0134\n0xAD\t0x00AD\n0xAF\t0x017B\n0xB0\t0x00B0\n0xB1\t0x0127\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x0125\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x0131\n0xBA\t0x015F\n0xBB\t0x011F\n0xBC\t0x0135\n0xBD\t0x00BD\n0xBF\t0x017C\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC4\t0x00C4\n0xC5\t0x010A\n0xC6\t0x0108\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x00CC\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD1\t0x00D1\n0xD2\t0x00D2\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x0120\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x011C\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x016C\n0xDE\t0x015C\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE4\t0x00E4\n0xE5\t0x010B\n0xE6\t0x0109\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF1\t0x00F1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x0121\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x011D\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x016D\n0xFE\t0x015D\n0xFF\t0x02D9\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-4.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x0104\n0xA2\t0x0138\n0xA3\t0x0156\n0xA4\t0x00A4\n0xA5\t0x0128\n0xA6\t0x013B\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x0160\n0xAA\t0x0112\n0xAB\t0x0122\n0xAC\t0x0166\n0xAD\t0x00AD\n0xAE\t0x017D\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x0105\n0xB2\t0x02DB\n0xB3\t0x0157\n0xB4\t0x00B4\n0xB5\t0x0129\n0xB6\t0x013C\n0xB7\t0x02C7\n0xB8\t0x00B8\n0xB9\t0x0161\n0xBA\t0x0113\n0xBB\t0x0123\n0xBC\t0x0167\n0xBD\t0x014A\n0xBE\t0x017E\n0xBF\t0x014B\n0xC0\t0x0100\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x00C3\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x012E\n0xC8\t0x010C\n0xC9\t0x00C9\n0xCA\t0x0118\n0xCB\t0x00CB\n0xCC\t0x0116\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x012A\n0xD0\t0x0110\n0xD1\t0x0145\n0xD2\t0x014C\n0xD3\t0x0136\n0xD4\t0x00D4\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x00D8\n0xD9\t0x0172\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x0168\n0xDE\t0x016A\n0xDF\t0x00DF\n0xE0\t0x0101\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x00E3\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x012F\n0xE8\t0x010D\n0xE9\t0x00E9\n0xEA\t0x0119\n0xEB\t0x00EB\n0xEC\t0x0117\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x012B\n0xF0\t0x0111\n0xF1\t0x0146\n0xF2\t0x014D\n0xF3\t0x0137\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x0173\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x0169\n0xFE\t0x016B\n0xFF\t0x02D9\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-5.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x0401\n0xA2\t0x0402\n0xA3\t0x0403\n0xA4\t0x0404\n0xA5\t0x0405\n0xA6\t0x0406\n0xA7\t0x0407\n0xA8\t0x0408\n0xA9\t0x0409\n0xAA\t0x040A\n0xAB\t0x040B\n0xAC\t0x040C\n0xAD\t0x00AD\n0xAE\t0x040E\n0xAF\t0x040F\n0xB0\t0x0410\n0xB1\t0x0411\n0xB2\t0x0412\n0xB3\t0x0413\n0xB4\t0x0414\n0xB5\t0x0415\n0xB6\t0x0416\n0xB7\t0x0417\n0xB8\t0x0418\n0xB9\t0x0419\n0xBA\t0x041A\n0xBB\t0x041B\n0xBC\t0x041C\n0xBD\t0x041D\n0xBE\t0x041E\n0xBF\t0x041F\n0xC0\t0x0420\n0xC1\t0x0421\n0xC2\t0x0422\n0xC3\t0x0423\n0xC4\t0x0424\n0xC5\t0x0425\n0xC6\t0x0426\n0xC7\t0x0427\n0xC8\t0x0428\n0xC9\t0x0429\n0xCA\t0x042A\n0xCB\t0x042B\n0xCC\t0x042C\n0xCD\t0x042D\n0xCE\t0x042E\n0xCF\t0x042F\n0xD0\t0x0430\n0xD1\t0x0431\n0xD2\t0x0432\n0xD3\t0x0433\n0xD4\t0x0434\n0xD5\t0x0435\n0xD6\t0x0436\n0xD7\t0x0437\n0xD8\t0x0438\n0xD9\t0x0439\n0xDA\t0x043A\n0xDB\t0x043B\n0xDC\t0x043C\n0xDD\t0x043D\n0xDE\t0x043E\n0xDF\t0x043F\n0xE0\t0x0440\n0xE1\t0x0441\n0xE2\t0x0442\n0xE3\t0x0443\n0xE4\t0x0444\n0xE5\t0x0445\n0xE6\t0x0446\n0xE7\t0x0447\n0xE8\t0x0448\n0xE9\t0x0449\n0xEA\t0x044A\n0xEB\t0x044B\n0xEC\t0x044C\n0xED\t0x044D\n0xEE\t0x044E\n0xEF\t0x044F\n0xF0\t0x2116\n0xF1\t0x0451\n0xF2\t0x0452\n0xF3\t0x0453\n0xF4\t0x0454\n0xF5\t0x0455\n0xF6\t0x0456\n0xF7\t0x0457\n0xF8\t0x0458\n0xF9\t0x0459\n0xFA\t0x045A\n0xFB\t0x045B\n0xFC\t0x045C\n0xFD\t0x00A7\n0xFE\t0x045E\n0xFF\t0x045F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-6.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA4\t0x00A4\n0xAC\t0x060C\n0xAD\t0x00AD\n0xBB\t0x061B\n0xBF\t0x061F\n0xC1\t0x0621\n0xC2\t0x0622\n0xC3\t0x0623\n0xC4\t0x0624\n0xC5\t0x0625\n0xC6\t0x0626\n0xC7\t0x0627\n0xC8\t0x0628\n0xC9\t0x0629\n0xCA\t0x062A\n0xCB\t0x062B\n0xCC\t0x062C\n0xCD\t0x062D\n0xCE\t0x062E\n0xCF\t0x062F\n0xD0\t0x0630\n0xD1\t0x0631\n0xD2\t0x0632\n0xD3\t0x0633\n0xD4\t0x0634\n0xD5\t0x0635\n0xD6\t0x0636\n0xD7\t0x0637\n0xD8\t0x0638\n0xD9\t0x0639\n0xDA\t0x063A\n0xE0\t0x0640\n0xE1\t0x0641\n0xE2\t0x0642\n0xE3\t0x0643\n0xE4\t0x0644\n0xE5\t0x0645\n0xE6\t0x0646\n0xE7\t0x0647\n0xE8\t0x0648\n0xE9\t0x0649\n0xEA\t0x064A\n0xEB\t0x064B\n0xEC\t0x064C\n0xED\t0x064D\n0xEE\t0x064E\n0xEF\t0x064F\n0xF0\t0x0650\n0xF1\t0x0651\n0xF2\t0x0652\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-7.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x2018\n0xA2\t0x2019\n0xA3\t0x00A3\n0xA4\t0x20AC\n0xA5\t0x20AF\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x037A\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAF\t0x2015\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x0384\n0xB5\t0x0385\n0xB6\t0x0386\n0xB7\t0x00B7\n0xB8\t0x0388\n0xB9\t0x0389\n0xBA\t0x038A\n0xBB\t0x00BB\n0xBC\t0x038C\n0xBD\t0x00BD\n0xBE\t0x038E\n0xBF\t0x038F\n0xC0\t0x0390\n0xC1\t0x0391\n0xC2\t0x0392\n0xC3\t0x0393\n0xC4\t0x0394\n0xC5\t0x0395\n0xC6\t0x0396\n0xC7\t0x0397\n0xC8\t0x0398\n0xC9\t0x0399\n0xCA\t0x039A\n0xCB\t0x039B\n0xCC\t0x039C\n0xCD\t0x039D\n0xCE\t0x039E\n0xCF\t0x039F\n0xD0\t0x03A0\n0xD1\t0x03A1\n0xD3\t0x03A3\n0xD4\t0x03A4\n0xD5\t0x03A5\n0xD6\t0x03A6\n0xD7\t0x03A7\n0xD8\t0x03A8\n0xD9\t0x03A9\n0xDA\t0x03AA\n0xDB\t0x03AB\n0xDC\t0x03AC\n0xDD\t0x03AD\n0xDE\t0x03AE\n0xDF\t0x03AF\n0xE0\t0x03B0\n0xE1\t0x03B1\n0xE2\t0x03B2\n0xE3\t0x03B3\n0xE4\t0x03B4\n0xE5\t0x03B5\n0xE6\t0x03B6\n0xE7\t0x03B7\n0xE8\t0x03B8\n0xE9\t0x03B9\n0xEA\t0x03BA\n0xEB\t0x03BB\n0xEC\t0x03BC\n0xED\t0x03BD\n0xEE\t0x03BE\n0xEF\t0x03BF\n0xF0\t0x03C0\n0xF1\t0x03C1\n0xF2\t0x03C2\n0xF3\t0x03C3\n0xF4\t0x03C4\n0xF5\t0x03C5\n0xF6\t0x03C6\n0xF7\t0x03C7\n0xF8\t0x03C8\n0xF9\t0x03C9\n0xFA\t0x03CA\n0xFB\t0x03CB\n0xFC\t0x03CC\n0xFD\t0x03CD\n0xFE\t0x03CE\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-8.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x00D7\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x00F7\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xDF\t0x2017\n0xE0\t0x05D0\n0xE1\t0x05D1\n0xE2\t0x05D2\n0xE3\t0x05D3\n0xE4\t0x05D4\n0xE5\t0x05D5\n0xE6\t0x05D6\n0xE7\t0x05D7\n0xE8\t0x05D8\n0xE9\t0x05D9\n0xEA\t0x05DA\n0xEB\t0x05DB\n0xEC\t0x05DC\n0xED\t0x05DD\n0xEE\t0x05DE\n0xEF\t0x05DF\n0xF0\t0x05E0\n0xF1\t0x05E1\n0xF2\t0x05E2\n0xF3\t0x05E3\n0xF4\t0x05E4\n0xF5\t0x05E5\n0xF6\t0x05E6\n0xF7\t0x05E7\n0xF8\t0x05E8\n0xF9\t0x05E9\n0xFA\t0x05EA\n0xFD\t0x200E\n0xFE\t0x200F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-8859-9.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x00C3\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x00CC\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x011E\n0xD1\t0x00D1\n0xD2\t0x00D2\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x00D8\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x0130\n0xDE\t0x015E\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x00E3\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x011F\n0xF1\t0x00F1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x0131\n0xFE\t0x015F\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-IR-165.IRREVERSIBLE.TXT",
    "content": "0x2821\t0x1FB1\n0x2822\t0x03AC\n0x2823\t0x1FB0\n0x2824\t0x1F70\n0x2825\t0x0113\n0x2826\t0x00E9\n0x2827\t0x011B\n0x2828\t0x00E8\n0x2829\t0x012B\n0x282A\t0x00ED\n0x282B\t0x01D0\n0x282C\t0x00EC\n0x282D\t0x014D\n0x282E\t0x00F3\n0x282F\t0x01D2\n0x2830\t0x00F2\n0x2831\t0x016B\n0x2832\t0x00FA\n0x2833\t0x01D4\n0x2834\t0x00F9\n0x2835\t0x01D6\n0x2836\t0x01D8\n0x2837\t0x01DA\n0x2838\t0x01DC\n0x2839\t0x00FC\n0x283A\t0x00EA\n0x283B\t0x03B1\n0x283C\t0x1E3F\n0x283D\t0x0144\n0x283E\t0x0148\n0x283F\t0x01F9\n0x2840\t0xFF47\n0x2B3B\t0x03B1\n0x2B40\t0xFF47\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO-IR-165.TXT",
    "content": "0x2121\t0x3000\n0x2122\t0x3001\n0x2123\t0x3002\n0x2124\t0x30FB\n0x2125\t0x02C9\n0x2126\t0x02C7\n0x2127\t0x00A8\n0x2128\t0x3003\n0x2129\t0x3005\n0x212A\t0x2015\n0x212B\t0xFF5E\n0x212C\t0x2016\n0x212D\t0x2026\n0x212E\t0x2018\n0x212F\t0x2019\n0x2130\t0x201C\n0x2131\t0x201D\n0x2132\t0x3014\n0x2133\t0x3015\n0x2134\t0x3008\n0x2135\t0x3009\n0x2136\t0x300A\n0x2137\t0x300B\n0x2138\t0x300C\n0x2139\t0x300D\n0x213A\t0x300E\n0x213B\t0x300F\n0x213C\t0x3016\n0x213D\t0x3017\n0x213E\t0x3010\n0x213F\t0x3011\n0x2140\t0x00B1\n0x2141\t0x00D7\n0x2142\t0x00F7\n0x2143\t0x2236\n0x2144\t0x2227\n0x2145\t0x2228\n0x2146\t0x2211\n0x2147\t0x220F\n0x2148\t0x222A\n0x2149\t0x2229\n0x214A\t0x2208\n0x214B\t0x2237\n0x214C\t0x221A\n0x214D\t0x22A5\n0x214E\t0x2225\n0x214F\t0x2220\n0x2150\t0x2312\n0x2151\t0x2299\n0x2152\t0x222B\n0x2153\t0x222E\n0x2154\t0x2261\n0x2155\t0x224C\n0x2156\t0x2248\n0x2157\t0x223D\n0x2158\t0x221D\n0x2159\t0x2260\n0x215A\t0x226E\n0x215B\t0x226F\n0x215C\t0x2264\n0x215D\t0x2265\n0x215E\t0x221E\n0x215F\t0x2235\n0x2160\t0x2234\n0x2161\t0x2642\n0x2162\t0x2640\n0x2163\t0x00B0\n0x2164\t0x2032\n0x2165\t0x2033\n0x2166\t0x2103\n0x2167\t0xFF04\n0x2168\t0x00A4\n0x2169\t0xFFE0\n0x216A\t0xFFE1\n0x216B\t0x2030\n0x216C\t0x00A7\n0x216D\t0x2116\n0x216E\t0x2606\n0x216F\t0x2605\n0x2170\t0x25CB\n0x2171\t0x25CF\n0x2172\t0x25CE\n0x2173\t0x25C7\n0x2174\t0x25C6\n0x2175\t0x25A1\n0x2176\t0x25A0\n0x2177\t0x25B3\n0x2178\t0x25B2\n0x2179\t0x203B\n0x217A\t0x2192\n0x217B\t0x2190\n0x217C\t0x2191\n0x217D\t0x2193\n0x217E\t0x3013\n0x2231\t0x2488\n0x2232\t0x2489\n0x2233\t0x248A\n0x2234\t0x248B\n0x2235\t0x248C\n0x2236\t0x248D\n0x2237\t0x248E\n0x2238\t0x248F\n0x2239\t0x2490\n0x223A\t0x2491\n0x223B\t0x2492\n0x223C\t0x2493\n0x223D\t0x2494\n0x223E\t0x2495\n0x223F\t0x2496\n0x2240\t0x2497\n0x2241\t0x2498\n0x2242\t0x2499\n0x2243\t0x249A\n0x2244\t0x249B\n0x2245\t0x2474\n0x2246\t0x2475\n0x2247\t0x2476\n0x2248\t0x2477\n0x2249\t0x2478\n0x224A\t0x2479\n0x224B\t0x247A\n0x224C\t0x247B\n0x224D\t0x247C\n0x224E\t0x247D\n0x224F\t0x247E\n0x2250\t0x247F\n0x2251\t0x2480\n0x2252\t0x2481\n0x2253\t0x2482\n0x2254\t0x2483\n0x2255\t0x2484\n0x2256\t0x2485\n0x2257\t0x2486\n0x2258\t0x2487\n0x2259\t0x2460\n0x225A\t0x2461\n0x225B\t0x2462\n0x225C\t0x2463\n0x225D\t0x2464\n0x225E\t0x2465\n0x225F\t0x2466\n0x2260\t0x2467\n0x2261\t0x2468\n0x2262\t0x2469\n0x2265\t0x3220\n0x2266\t0x3221\n0x2267\t0x3222\n0x2268\t0x3223\n0x2269\t0x3224\n0x226A\t0x3225\n0x226B\t0x3226\n0x226C\t0x3227\n0x226D\t0x3228\n0x226E\t0x3229\n0x2271\t0x2160\n0x2272\t0x2161\n0x2273\t0x2162\n0x2274\t0x2163\n0x2275\t0x2164\n0x2276\t0x2165\n0x2277\t0x2166\n0x2278\t0x2167\n0x2279\t0x2168\n0x227A\t0x2169\n0x227B\t0x216A\n0x227C\t0x216B\n0x2321\t0xFF01\n0x2322\t0xFF02\n0x2323\t0xFF03\n0x2324\t0xFFE5\n0x2325\t0xFF05\n0x2326\t0xFF06\n0x2327\t0xFF07\n0x2328\t0xFF08\n0x2329\t0xFF09\n0x232A\t0xFF0A\n0x232B\t0xFF0B\n0x232C\t0xFF0C\n0x232D\t0xFF0D\n0x232E\t0xFF0E\n0x232F\t0xFF0F\n0x2330\t0xFF10\n0x2331\t0xFF11\n0x2332\t0xFF12\n0x2333\t0xFF13\n0x2334\t0xFF14\n0x2335\t0xFF15\n0x2336\t0xFF16\n0x2337\t0xFF17\n0x2338\t0xFF18\n0x2339\t0xFF19\n0x233A\t0xFF1A\n0x233B\t0xFF1B\n0x233C\t0xFF1C\n0x233D\t0xFF1D\n0x233E\t0xFF1E\n0x233F\t0xFF1F\n0x2340\t0xFF20\n0x2341\t0xFF21\n0x2342\t0xFF22\n0x2343\t0xFF23\n0x2344\t0xFF24\n0x2345\t0xFF25\n0x2346\t0xFF26\n0x2347\t0xFF27\n0x2348\t0xFF28\n0x2349\t0xFF29\n0x234A\t0xFF2A\n0x234B\t0xFF2B\n0x234C\t0xFF2C\n0x234D\t0xFF2D\n0x234E\t0xFF2E\n0x234F\t0xFF2F\n0x2350\t0xFF30\n0x2351\t0xFF31\n0x2352\t0xFF32\n0x2353\t0xFF33\n0x2354\t0xFF34\n0x2355\t0xFF35\n0x2356\t0xFF36\n0x2357\t0xFF37\n0x2358\t0xFF38\n0x2359\t0xFF39\n0x235A\t0xFF3A\n0x235B\t0xFF3B\n0x235C\t0xFF3C\n0x235D\t0xFF3D\n0x235E\t0xFF3E\n0x235F\t0xFF3F\n0x2360\t0xFF40\n0x2361\t0xFF41\n0x2362\t0xFF42\n0x2363\t0xFF43\n0x2364\t0xFF44\n0x2365\t0xFF45\n0x2366\t0xFF46\n0x2367\t0xFF47\n0x2368\t0xFF48\n0x2369\t0xFF49\n0x236A\t0xFF4A\n0x236B\t0xFF4B\n0x236C\t0xFF4C\n0x236D\t0xFF4D\n0x236E\t0xFF4E\n0x236F\t0xFF4F\n0x2370\t0xFF50\n0x2371\t0xFF51\n0x2372\t0xFF52\n0x2373\t0xFF53\n0x2374\t0xFF54\n0x2375\t0xFF55\n0x2376\t0xFF56\n0x2377\t0xFF57\n0x2378\t0xFF58\n0x2379\t0xFF59\n0x237A\t0xFF5A\n0x237B\t0xFF5B\n0x237C\t0xFF5C\n0x237D\t0xFF5D\n0x237E\t0xFFE3\n0x2421\t0x3041\n0x2422\t0x3042\n0x2423\t0x3043\n0x2424\t0x3044\n0x2425\t0x3045\n0x2426\t0x3046\n0x2427\t0x3047\n0x2428\t0x3048\n0x2429\t0x3049\n0x242A\t0x304A\n0x242B\t0x304B\n0x242C\t0x304C\n0x242D\t0x304D\n0x242E\t0x304E\n0x242F\t0x304F\n0x2430\t0x3050\n0x2431\t0x3051\n0x2432\t0x3052\n0x2433\t0x3053\n0x2434\t0x3054\n0x2435\t0x3055\n0x2436\t0x3056\n0x2437\t0x3057\n0x2438\t0x3058\n0x2439\t0x3059\n0x243A\t0x305A\n0x243B\t0x305B\n0x243C\t0x305C\n0x243D\t0x305D\n0x243E\t0x305E\n0x243F\t0x305F\n0x2440\t0x3060\n0x2441\t0x3061\n0x2442\t0x3062\n0x2443\t0x3063\n0x2444\t0x3064\n0x2445\t0x3065\n0x2446\t0x3066\n0x2447\t0x3067\n0x2448\t0x3068\n0x2449\t0x3069\n0x244A\t0x306A\n0x244B\t0x306B\n0x244C\t0x306C\n0x244D\t0x306D\n0x244E\t0x306E\n0x244F\t0x306F\n0x2450\t0x3070\n0x2451\t0x3071\n0x2452\t0x3072\n0x2453\t0x3073\n0x2454\t0x3074\n0x2455\t0x3075\n0x2456\t0x3076\n0x2457\t0x3077\n0x2458\t0x3078\n0x2459\t0x3079\n0x245A\t0x307A\n0x245B\t0x307B\n0x245C\t0x307C\n0x245D\t0x307D\n0x245E\t0x307E\n0x245F\t0x307F\n0x2460\t0x3080\n0x2461\t0x3081\n0x2462\t0x3082\n0x2463\t0x3083\n0x2464\t0x3084\n0x2465\t0x3085\n0x2466\t0x3086\n0x2467\t0x3087\n0x2468\t0x3088\n0x2469\t0x3089\n0x246A\t0x308A\n0x246B\t0x308B\n0x246C\t0x308C\n0x246D\t0x308D\n0x246E\t0x308E\n0x246F\t0x308F\n0x2470\t0x3090\n0x2471\t0x3091\n0x2472\t0x3092\n0x2473\t0x3093\n0x2521\t0x30A1\n0x2522\t0x30A2\n0x2523\t0x30A3\n0x2524\t0x30A4\n0x2525\t0x30A5\n0x2526\t0x30A6\n0x2527\t0x30A7\n0x2528\t0x30A8\n0x2529\t0x30A9\n0x252A\t0x30AA\n0x252B\t0x30AB\n0x252C\t0x30AC\n0x252D\t0x30AD\n0x252E\t0x30AE\n0x252F\t0x30AF\n0x2530\t0x30B0\n0x2531\t0x30B1\n0x2532\t0x30B2\n0x2533\t0x30B3\n0x2534\t0x30B4\n0x2535\t0x30B5\n0x2536\t0x30B6\n0x2537\t0x30B7\n0x2538\t0x30B8\n0x2539\t0x30B9\n0x253A\t0x30BA\n0x253B\t0x30BB\n0x253C\t0x30BC\n0x253D\t0x30BD\n0x253E\t0x30BE\n0x253F\t0x30BF\n0x2540\t0x30C0\n0x2541\t0x30C1\n0x2542\t0x30C2\n0x2543\t0x30C3\n0x2544\t0x30C4\n0x2545\t0x30C5\n0x2546\t0x30C6\n0x2547\t0x30C7\n0x2548\t0x30C8\n0x2549\t0x30C9\n0x254A\t0x30CA\n0x254B\t0x30CB\n0x254C\t0x30CC\n0x254D\t0x30CD\n0x254E\t0x30CE\n0x254F\t0x30CF\n0x2550\t0x30D0\n0x2551\t0x30D1\n0x2552\t0x30D2\n0x2553\t0x30D3\n0x2554\t0x30D4\n0x2555\t0x30D5\n0x2556\t0x30D6\n0x2557\t0x30D7\n0x2558\t0x30D8\n0x2559\t0x30D9\n0x255A\t0x30DA\n0x255B\t0x30DB\n0x255C\t0x30DC\n0x255D\t0x30DD\n0x255E\t0x30DE\n0x255F\t0x30DF\n0x2560\t0x30E0\n0x2561\t0x30E1\n0x2562\t0x30E2\n0x2563\t0x30E3\n0x2564\t0x30E4\n0x2565\t0x30E5\n0x2566\t0x30E6\n0x2567\t0x30E7\n0x2568\t0x30E8\n0x2569\t0x30E9\n0x256A\t0x30EA\n0x256B\t0x30EB\n0x256C\t0x30EC\n0x256D\t0x30ED\n0x256E\t0x30EE\n0x256F\t0x30EF\n0x2570\t0x30F0\n0x2571\t0x30F1\n0x2572\t0x30F2\n0x2573\t0x30F3\n0x2574\t0x30F4\n0x2575\t0x30F5\n0x2576\t0x30F6\n0x2621\t0x0391\n0x2622\t0x0392\n0x2623\t0x0393\n0x2624\t0x0394\n0x2625\t0x0395\n0x2626\t0x0396\n0x2627\t0x0397\n0x2628\t0x0398\n0x2629\t0x0399\n0x262A\t0x039A\n0x262B\t0x039B\n0x262C\t0x039C\n0x262D\t0x039D\n0x262E\t0x039E\n0x262F\t0x039F\n0x2630\t0x03A0\n0x2631\t0x03A1\n0x2632\t0x03A3\n0x2633\t0x03A4\n0x2634\t0x03A5\n0x2635\t0x03A6\n0x2636\t0x03A7\n0x2637\t0x03A8\n0x2638\t0x03A9\n0x2641\t0x03B1\n0x2642\t0x03B2\n0x2643\t0x03B3\n0x2644\t0x03B4\n0x2645\t0x03B5\n0x2646\t0x03B6\n0x2647\t0x03B7\n0x2648\t0x03B8\n0x2649\t0x03B9\n0x264A\t0x03BA\n0x264B\t0x03BB\n0x264C\t0x03BC\n0x264D\t0x03BD\n0x264E\t0x03BE\n0x264F\t0x03BF\n0x2650\t0x03C0\n0x2651\t0x03C1\n0x2652\t0x03C3\n0x2653\t0x03C4\n0x2654\t0x03C5\n0x2655\t0x03C6\n0x2656\t0x03C7\n0x2657\t0x03C8\n0x2658\t0x03C9\n0x2721\t0x0410\n0x2722\t0x0411\n0x2723\t0x0412\n0x2724\t0x0413\n0x2725\t0x0414\n0x2726\t0x0415\n0x2727\t0x0401\n0x2728\t0x0416\n0x2729\t0x0417\n0x272A\t0x0418\n0x272B\t0x0419\n0x272C\t0x041A\n0x272D\t0x041B\n0x272E\t0x041C\n0x272F\t0x041D\n0x2730\t0x041E\n0x2731\t0x041F\n0x2732\t0x0420\n0x2733\t0x0421\n0x2734\t0x0422\n0x2735\t0x0423\n0x2736\t0x0424\n0x2737\t0x0425\n0x2738\t0x0426\n0x2739\t0x0427\n0x273A\t0x0428\n0x273B\t0x0429\n0x273C\t0x042A\n0x273D\t0x042B\n0x273E\t0x042C\n0x273F\t0x042D\n0x2740\t0x042E\n0x2741\t0x042F\n0x2751\t0x0430\n0x2752\t0x0431\n0x2753\t0x0432\n0x2754\t0x0433\n0x2755\t0x0434\n0x2756\t0x0435\n0x2757\t0x0451\n0x2758\t0x0436\n0x2759\t0x0437\n0x275A\t0x0438\n0x275B\t0x0439\n0x275C\t0x043A\n0x275D\t0x043B\n0x275E\t0x043C\n0x275F\t0x043D\n0x2760\t0x043E\n0x2761\t0x043F\n0x2762\t0x0440\n0x2763\t0x0441\n0x2764\t0x0442\n0x2765\t0x0443\n0x2766\t0x0444\n0x2767\t0x0445\n0x2768\t0x0446\n0x2769\t0x0447\n0x276A\t0x0448\n0x276B\t0x0449\n0x276C\t0x044A\n0x276D\t0x044B\n0x276E\t0x044C\n0x276F\t0x044D\n0x2770\t0x044E\n0x2771\t0x044F\n0x2821\t0x1FB1\n0x2822\t0x03AC\n0x2823\t0x1FB0\n0x2824\t0x1F70\n0x2825\t0x0113\n0x2826\t0x00E9\n0x2827\t0x011B\n0x2828\t0x00E8\n0x2829\t0x012B\n0x282A\t0x00ED\n0x282B\t0x01D0\n0x282C\t0x00EC\n0x282D\t0x014D\n0x282E\t0x00F3\n0x282F\t0x01D2\n0x2830\t0x00F2\n0x2831\t0x016B\n0x2832\t0x00FA\n0x2833\t0x01D4\n0x2834\t0x00F9\n0x2835\t0x01D6\n0x2836\t0x01D8\n0x2837\t0x01DA\n0x2838\t0x01DC\n0x2839\t0x00FC\n0x283A\t0x00EA\n0x283B\t0x03B1\n0x283C\t0x1E3F\n0x283D\t0x0144\n0x283E\t0x0148\n0x283F\t0x01F9\n0x2840\t0xFF47\n0x2845\t0x3105\n0x2846\t0x3106\n0x2847\t0x3107\n0x2848\t0x3108\n0x2849\t0x3109\n0x284A\t0x310A\n0x284B\t0x310B\n0x284C\t0x310C\n0x284D\t0x310D\n0x284E\t0x310E\n0x284F\t0x310F\n0x2850\t0x3110\n0x2851\t0x3111\n0x2852\t0x3112\n0x2853\t0x3113\n0x2854\t0x3114\n0x2855\t0x3115\n0x2856\t0x3116\n0x2857\t0x3117\n0x2858\t0x3118\n0x2859\t0x3119\n0x285A\t0x311A\n0x285B\t0x311B\n0x285C\t0x311C\n0x285D\t0x311D\n0x285E\t0x311E\n0x285F\t0x311F\n0x2860\t0x3120\n0x2861\t0x3121\n0x2862\t0x3122\n0x2863\t0x3123\n0x2864\t0x3124\n0x2865\t0x3125\n0x2866\t0x3126\n0x2867\t0x3127\n0x2868\t0x3128\n0x2869\t0x3129\n0x2924\t0x2500\n0x2925\t0x2501\n0x2926\t0x2502\n0x2927\t0x2503\n0x2928\t0x2504\n0x2929\t0x2505\n0x292A\t0x2506\n0x292B\t0x2507\n0x292C\t0x2508\n0x292D\t0x2509\n0x292E\t0x250A\n0x292F\t0x250B\n0x2930\t0x250C\n0x2931\t0x250D\n0x2932\t0x250E\n0x2933\t0x250F\n0x2934\t0x2510\n0x2935\t0x2511\n0x2936\t0x2512\n0x2937\t0x2513\n0x2938\t0x2514\n0x2939\t0x2515\n0x293A\t0x2516\n0x293B\t0x2517\n0x293C\t0x2518\n0x293D\t0x2519\n0x293E\t0x251A\n0x293F\t0x251B\n0x2940\t0x251C\n0x2941\t0x251D\n0x2942\t0x251E\n0x2943\t0x251F\n0x2944\t0x2520\n0x2945\t0x2521\n0x2946\t0x2522\n0x2947\t0x2523\n0x2948\t0x2524\n0x2949\t0x2525\n0x294A\t0x2526\n0x294B\t0x2527\n0x294C\t0x2528\n0x294D\t0x2529\n0x294E\t0x252A\n0x294F\t0x252B\n0x2950\t0x252C\n0x2951\t0x252D\n0x2952\t0x252E\n0x2953\t0x252F\n0x2954\t0x2530\n0x2955\t0x2531\n0x2956\t0x2532\n0x2957\t0x2533\n0x2958\t0x2534\n0x2959\t0x2535\n0x295A\t0x2536\n0x295B\t0x2537\n0x295C\t0x2538\n0x295D\t0x2539\n0x295E\t0x253A\n0x295F\t0x253B\n0x2960\t0x253C\n0x2961\t0x253D\n0x2962\t0x253E\n0x2963\t0x253F\n0x2964\t0x2540\n0x2965\t0x2541\n0x2966\t0x2542\n0x2967\t0x2543\n0x2968\t0x2544\n0x2969\t0x2545\n0x296A\t0x2546\n0x296B\t0x2547\n0x296C\t0x2548\n0x296D\t0x2549\n0x296E\t0x254A\n0x296F\t0x254B\n0x2A21\t0x0021\n0x2A22\t0x0022\n0x2A23\t0x0023\n0x2A24\t0x00A5\n0x2A25\t0x0025\n0x2A26\t0x0026\n0x2A27\t0x0027\n0x2A28\t0x0028\n0x2A29\t0x0029\n0x2A2A\t0x002A\n0x2A2B\t0x002B\n0x2A2C\t0x002C\n0x2A2D\t0x002D\n0x2A2E\t0x002E\n0x2A2F\t0x002F\n0x2A30\t0x0030\n0x2A31\t0x0031\n0x2A32\t0x0032\n0x2A33\t0x0033\n0x2A34\t0x0034\n0x2A35\t0x0035\n0x2A36\t0x0036\n0x2A37\t0x0037\n0x2A38\t0x0038\n0x2A39\t0x0039\n0x2A3A\t0x003A\n0x2A3B\t0x003B\n0x2A3C\t0x003C\n0x2A3D\t0x003D\n0x2A3E\t0x003E\n0x2A3F\t0x003F\n0x2A40\t0x0040\n0x2A41\t0x0041\n0x2A42\t0x0042\n0x2A43\t0x0043\n0x2A44\t0x0044\n0x2A45\t0x0045\n0x2A46\t0x0046\n0x2A47\t0x0047\n0x2A48\t0x0048\n0x2A49\t0x0049\n0x2A4A\t0x004A\n0x2A4B\t0x004B\n0x2A4C\t0x004C\n0x2A4D\t0x004D\n0x2A4E\t0x004E\n0x2A4F\t0x004F\n0x2A50\t0x0050\n0x2A51\t0x0051\n0x2A52\t0x0052\n0x2A53\t0x0053\n0x2A54\t0x0054\n0x2A55\t0x0055\n0x2A56\t0x0056\n0x2A57\t0x0057\n0x2A58\t0x0058\n0x2A59\t0x0059\n0x2A5A\t0x005A\n0x2A5B\t0x005B\n0x2A5C\t0x005C\n0x2A5D\t0x005D\n0x2A5E\t0x005E\n0x2A5F\t0x005F\n0x2A60\t0x0060\n0x2A61\t0x0061\n0x2A62\t0x0062\n0x2A63\t0x0063\n0x2A64\t0x0064\n0x2A65\t0x0065\n0x2A66\t0x0066\n0x2A67\t0x0067\n0x2A68\t0x0068\n0x2A69\t0x0069\n0x2A6A\t0x006A\n0x2A6B\t0x006B\n0x2A6C\t0x006C\n0x2A6D\t0x006D\n0x2A6E\t0x006E\n0x2A6F\t0x006F\n0x2A70\t0x0070\n0x2A71\t0x0071\n0x2A72\t0x0072\n0x2A73\t0x0073\n0x2A74\t0x0074\n0x2A75\t0x0075\n0x2A76\t0x0076\n0x2A77\t0x0077\n0x2A78\t0x0078\n0x2A79\t0x0079\n0x2A7A\t0x007A\n0x2A7B\t0x007B\n0x2A7C\t0x007C\n0x2A7D\t0x007D\n0x2A7E\t0x203E\n0x2B21\t0x1FB1\n0x2B22\t0x03AC\n0x2B23\t0x1FB0\n0x2B24\t0x1F70\n0x2B25\t0x0113\n0x2B26\t0x00E9\n0x2B27\t0x011B\n0x2B28\t0x00E8\n0x2B29\t0x012B\n0x2B2A\t0x00ED\n0x2B2B\t0x01D0\n0x2B2C\t0x00EC\n0x2B2D\t0x014D\n0x2B2E\t0x00F3\n0x2B2F\t0x01D2\n0x2B30\t0x00F2\n0x2B31\t0x016B\n0x2B32\t0x00FA\n0x2B33\t0x01D4\n0x2B34\t0x00F9\n0x2B35\t0x01D6\n0x2B36\t0x01D8\n0x2B37\t0x01DA\n0x2B38\t0x01DC\n0x2B39\t0x00FC\n0x2B3A\t0x00EA\n0x2B3B\t0x03B1\n0x2B3C\t0x1E3F\n0x2B3D\t0x0144\n0x2B3E\t0x0148\n0x2B3F\t0x01F9\n0x2B40\t0xFF47\n0x2C21\t0x53BE\n0x2C22\t0x4EB8\n0x2C23\t0x4F3E\n0x2C24\t0x501E\n0x2C25\t0x50C7\n0x2C26\t0x9118\n0x2C27\t0x6C98\n0x2C28\t0x6CDC\n0x2C29\t0x6CC3\n0x2C2A\t0x6E5D\n0x2C2B\t0x6EA6\n0x2C2C\t0x6EEB\n0x2C2D\t0x6FA5\n0x2C2E\t0x6165\n0x2C2F\t0x5EA4\n0x2C30\t0x9618\n0x2C31\t0x5848\n0x2C32\t0x8453\n0x2C33\t0x7CF5\n0x2C34\t0x5F07\n0x2C35\t0x6294\n0x2C36\t0x647D\n0x2C37\t0x725A\n0x2C38\t0x5574\n0x2C39\t0x55A4\n0x2C3A\t0x5640\n0x2C3B\t0x5684\n0x2C3C\t0x5D1F\n0x2C3D\t0x72C9\n0x2C3E\t0x998C\n0x2C3F\t0x59DE\n0x2C40\t0x59FD\n0x2C41\t0x5A5E\n0x2C42\t0x7EBB\n0x2C43\t0x7EE4\n0x2C44\t0x7EF9\n0x2C45\t0x9A99\n0x2C46\t0x71CF\n0x2C47\t0x6245\n0x2C48\t0x624A\n0x2C49\t0x797C\n0x2C4A\t0x739A\n0x2C4B\t0x742B\n0x2C4C\t0x7488\n0x2C4D\t0x74AA\n0x2C4E\t0x74D8\n0x2C4F\t0x6767\n0x2C50\t0x6AB5\n0x2C51\t0x71CA\n0x2C52\t0x6BA3\n0x2C53\t0x8F80\n0x2C54\t0x8F92\n0x2C55\t0x8D5F\n0x2C56\t0x9B36\n0x2C57\t0x72A8\n0x2C58\t0x87A3\n0x2C59\t0x8152\n0x2C5A\t0x6B38\n0x2C5B\t0x98D0\n0x2C5C\t0x8897\n0x2C5D\t0x88AF\n0x2C5E\t0x8955\n0x2C5F\t0x770A\n0x2C60\t0x94DA\n0x2C61\t0x955A\n0x2C62\t0x9560\n0x2C63\t0x9E24\n0x2C64\t0x9E40\n0x2C65\t0x9E50\n0x2C66\t0x9E5D\n0x2C67\t0x9E60\n0x2C68\t0x870E\n0x2C69\t0x7B5C\n0x2C6A\t0x7FD9\n0x2C6B\t0x7FEF\n0x2C6C\t0x7E44\n0x2C6D\t0x8E45\n0x2C6E\t0x8E36\n0x2C6F\t0x8E62\n0x2C70\t0x8E5C\n0x2C71\t0x9778\n0x2C72\t0x9B46\n0x2C73\t0x9F2B\n0x2C74\t0x9F41\n0x2C75\t0x7526\n0x2C76\t0x4E26\n0x2C77\t0x8BAC\n0x2C78\t0x8129\n0x2C79\t0x5091\n0x2C7A\t0x50CD\n0x2C7B\t0x52B9\n0x2C7C\t0x89D4\n0x2C7D\t0x5557\n0x2C7E\t0x94C7\n0x2D21\t0x9496\n0x2D22\t0x9498\n0x2D23\t0x94CF\n0x2D24\t0x94D3\n0x2D25\t0x94D4\n0x2D26\t0x94E6\n0x2D27\t0x9533\n0x2D28\t0x951C\n0x2D29\t0x9520\n0x2D2A\t0x9527\n0x2D2B\t0x953D\n0x2D2C\t0x9543\n0x2D2D\t0x956E\n0x2D2E\t0x9574\n0x2D2F\t0x9C80\n0x2D30\t0x9C84\n0x2D31\t0x9C8A\n0x2D32\t0x9C93\n0x2D33\t0x9C96\n0x2D34\t0x9C97\n0x2D35\t0x9C98\n0x2D36\t0x9C99\n0x2D37\t0x9CBF\n0x2D38\t0x9CC0\n0x2D39\t0x9CC1\n0x2D3A\t0x9CD2\n0x2D3B\t0x9CDB\n0x2D3C\t0x9CE0\n0x2D3D\t0x9CE3\n0x2D3E\t0x9770\n0x2D3F\t0x977A\n0x2D40\t0x97A1\n0x2D41\t0x97AE\n0x2D42\t0x97A8\n0x2D43\t0x9964\n0x2D44\t0x9966\n0x2D45\t0x9978\n0x2D46\t0x9979\n0x2D47\t0x997B\n0x2D48\t0x997E\n0x2D49\t0x9982\n0x2D4A\t0x9983\n0x2D4B\t0x998E\n0x2D4C\t0x9B10\n0x2D4D\t0x9B18\n0x2D4E\t0x65A2\n0x2D4F\t0x9E80\n0x2D50\t0x911C\n0x2D51\t0x9E91\n0x2D52\t0x9F12\n0x2D53\t0x52F3\n0x2D54\t0x6C96\n0x2D55\t0x6D44\n0x2D56\t0x6E1B\n0x2D57\t0x6E67\n0x2D58\t0x6F82\n0x2D59\t0x6FEC\n0x2D5A\t0x60AE\n0x2D5B\t0x5EC8\n0x2D5C\t0x8FFA\n0x2D5D\t0x577F\n0x2D5E\t0x5586\n0x2D5F\t0x849E\n0x2D60\t0x8460\n0x2D61\t0x5C05\n0x2D62\t0x5E0B\n0x2D63\t0x5D11\n0x2D64\t0x5D19\n0x2D65\t0x5DD6\n0x2D66\t0x59B3\n0x2D67\t0x5AAE\n0x2D68\t0x9A94\n0x2D69\t0x658F\n0x2D6A\t0x709E\n0x2D6B\t0x7551\n0x2D6C\t0x71FF\n0x2D6D\t0x691D\n0x2D6E\t0x6A11\n0x2D6F\t0x68BF\n0x2D70\t0x6607\n0x2D71\t0x668E\n0x2D72\t0x6673\n0x2D73\t0x6C25\n0x2D74\t0x7652\n0x2D75\t0x778B\n0x2D76\t0x76EA\n0x2D77\t0x9895\n0x2D78\t0x8780\n0x2D79\t0x882D\n0x2D7A\t0x7B87\n0x2D7B\t0x7C50\n0x2D7C\t0x8EAD\n0x2D7D\t0x9575\n0x2D7E\t0x65C2\n0x2E21\t0x5390\n0x2E22\t0x79B8\n0x2E23\t0x4F15\n0x2E24\t0x4F21\n0x2E25\t0x4F3B\n0x2E26\t0x4FA2\n0x2E27\t0x50A4\n0x2E28\t0x5092\n0x2E29\t0x530A\n0x2E2A\t0x51C3\n0x2E2B\t0x51A8\n0x2E2C\t0x8D20\n0x2E2D\t0x5787\n0x2E2E\t0x579A\n0x2E2F\t0x5795\n0x2E30\t0x57EB\n0x2E31\t0x585D\n0x2E32\t0x585A\n0x2E33\t0x5871\n0x2E34\t0x5895\n0x2E35\t0x5C30\n0x2E36\t0x5F0C\n0x2E37\t0x5F0D\n0x2E38\t0x5F0E\n0x2E39\t0x5C72\n0x2E3A\t0x5CC7\n0x2E3B\t0x5FAC\n0x2E3C\t0x5F68\n0x2E3D\t0x5F5F\n0x2E3E\t0x5A12\n0x2E3F\t0x5A65\n0x2E40\t0x5A84\n0x2E41\t0x5AC4\n0x2E42\t0x7394\n0x2E43\t0x73EA\n0x2E44\t0x73EE\n0x2E45\t0x7437\n0x2E46\t0x7415\n0x2E47\t0x7454\n0x2E48\t0x6799\n0x2E49\t0x686C\n0x2E4A\t0x68F8\n0x2E4B\t0x69FE\n0x2E4C\t0x72E2\n0x2E4D\t0x6667\n0x2E4E\t0x8D52\n0x2E4F\t0x89C3\n0x2E50\t0x89CD\n0x2E51\t0x6427\n0x2E52\t0x6477\n0x2E53\t0x6C1D\n0x2E54\t0x813F\n0x2E55\t0x6B54\n0x2E56\t0x98D6\n0x2E57\t0x707A\n0x2E58\t0x70F1\n0x2E59\t0x7120\n0x2E5A\t0x6153\n0x2E5B\t0x6C87\n0x2E5C\t0x6DAD\n0x2E5D\t0x6E81\n0x2E5E\t0x6EB5\n0x2E5F\t0x6F94\n0x2E60\t0x6F9B\n0x2E61\t0x793D\n0x2E62\t0x794E\n0x2E63\t0x7806\n0x2E64\t0x7859\n0x2E65\t0x7894\n0x2E66\t0x78DC\n0x2E67\t0x7903\n0x2E68\t0x7A16\n0x2E69\t0x7A5E\n0x2E6A\t0x75E0\n0x2E6B\t0x7ADC\n0x2E6C\t0x7676\n0x2E6D\t0x9892\n0x2E6E\t0x7BF2\n0x2E6F\t0x7C30\n0x2E70\t0x7C5D\n0x2E71\t0x9C9D\n0x2E72\t0x7CAC\n0x2E73\t0x8278\n0x2E74\t0x83D1\n0x2E75\t0x84EA\n0x2E76\t0x7FC0\n0x2E77\t0x7F1E\n0x2E78\t0x8E21\n0x2E79\t0x8E53\n0x2E7A\t0x9754\n0x2E7B\t0x9F0C\n0x2E7C\t0x94FB\n0x2F21\t0x32C0\n0x2F22\t0x32C1\n0x2F23\t0x32C2\n0x2F24\t0x32C3\n0x2F25\t0x32C4\n0x2F26\t0x32C5\n0x2F27\t0x32C6\n0x2F28\t0x32C7\n0x2F29\t0x32C8\n0x2F2A\t0x32C9\n0x2F2B\t0x32CA\n0x2F2C\t0x32CB\n0x2F2D\t0x33E0\n0x2F2E\t0x33E1\n0x2F2F\t0x33E2\n0x2F30\t0x33E3\n0x2F31\t0x33E4\n0x2F32\t0x33E5\n0x2F33\t0x33E6\n0x2F34\t0x33E7\n0x2F35\t0x33E8\n0x2F36\t0x33E9\n0x2F37\t0x33EA\n0x2F38\t0x33EB\n0x2F39\t0x33EC\n0x2F3A\t0x33ED\n0x2F3B\t0x33EE\n0x2F3C\t0x33EF\n0x2F3D\t0x33F0\n0x2F3E\t0x33F1\n0x2F3F\t0x33F2\n0x2F40\t0x33F3\n0x2F41\t0x33F4\n0x2F42\t0x33F5\n0x2F43\t0x33F6\n0x2F44\t0x33F7\n0x2F45\t0x33F8\n0x2F46\t0x33F9\n0x2F47\t0x33FA\n0x2F48\t0x33FB\n0x2F49\t0x33FC\n0x2F4A\t0x33FD\n0x2F4B\t0x33FE\n0x2F4C\t0x3358\n0x2F4D\t0x3359\n0x2F4E\t0x335A\n0x2F4F\t0x335B\n0x2F50\t0x335C\n0x2F51\t0x335D\n0x2F52\t0x335E\n0x2F53\t0x335F\n0x2F54\t0x3360\n0x2F55\t0x3361\n0x2F56\t0x3362\n0x2F57\t0x3363\n0x2F58\t0x3364\n0x2F59\t0x3365\n0x2F5A\t0x3366\n0x2F5B\t0x3367\n0x2F5C\t0x3368\n0x2F5D\t0x3369\n0x2F5E\t0x336A\n0x2F5F\t0x336B\n0x2F60\t0x336C\n0x2F61\t0x336D\n0x2F62\t0x336E\n0x2F63\t0x336F\n0x2F64\t0x3370\n0x2F65\t0x3037\n0x2F66\t0x90A8\n0x2F67\t0x965E\n0x2F68\t0x5842\n0x2F69\t0x5803\n0x2F6A\t0x6C3E\n0x2F6B\t0x6D29\n0x2F6C\t0x6EE7\n0x2F6D\t0x8534\n0x2F6E\t0x84C6\n0x2F6F\t0x633C\n0x2F70\t0x5D05\n0x2F71\t0x7F10\n0x2F72\t0x7EEC\n0x2F73\t0x7287\n0x2F74\t0x712E\n0x2F75\t0x8218\n0x2F76\t0x8216\n0x2F77\t0x756C\n0x2F78\t0x75F3\n0x2F79\t0x9B25\n0x2F7A\t0x8980\n0x2F7B\t0x7CA6\n0x2F7C\t0x4E85\n0x2F7D\t0x5570\n0x2F7E\t0x91C6\n0x3021\t0x554A\n0x3022\t0x963F\n0x3023\t0x57C3\n0x3024\t0x6328\n0x3025\t0x54CE\n0x3026\t0x5509\n0x3027\t0x54C0\n0x3028\t0x7691\n0x3029\t0x764C\n0x302A\t0x853C\n0x302B\t0x77EE\n0x302C\t0x827E\n0x302D\t0x788D\n0x302E\t0x7231\n0x302F\t0x9698\n0x3030\t0x978D\n0x3031\t0x6C28\n0x3032\t0x5B89\n0x3033\t0x4FFA\n0x3034\t0x6309\n0x3035\t0x6697\n0x3036\t0x5CB8\n0x3037\t0x80FA\n0x3038\t0x6848\n0x3039\t0x80AE\n0x303A\t0x6602\n0x303B\t0x76CE\n0x303C\t0x51F9\n0x303D\t0x6556\n0x303E\t0x71AC\n0x303F\t0x7FF1\n0x3040\t0x8884\n0x3041\t0x50B2\n0x3042\t0x5965\n0x3043\t0x61CA\n0x3044\t0x6FB3\n0x3045\t0x82AD\n0x3046\t0x634C\n0x3047\t0x6252\n0x3048\t0x53ED\n0x3049\t0x5427\n0x304A\t0x7B06\n0x304B\t0x516B\n0x304C\t0x75A4\n0x304D\t0x5DF4\n0x304E\t0x62D4\n0x304F\t0x8DCB\n0x3050\t0x9776\n0x3051\t0x628A\n0x3052\t0x8019\n0x3053\t0x575D\n0x3054\t0x9738\n0x3055\t0x7F62\n0x3056\t0x7238\n0x3057\t0x767D\n0x3058\t0x67CF\n0x3059\t0x767E\n0x305A\t0x6446\n0x305B\t0x4F70\n0x305C\t0x8D25\n0x305D\t0x62DC\n0x305E\t0x7A17\n0x305F\t0x6591\n0x3060\t0x73ED\n0x3061\t0x642C\n0x3062\t0x6273\n0x3063\t0x822C\n0x3064\t0x9881\n0x3065\t0x677F\n0x3066\t0x7248\n0x3067\t0x626E\n0x3068\t0x62CC\n0x3069\t0x4F34\n0x306A\t0x74E3\n0x306B\t0x534A\n0x306C\t0x529E\n0x306D\t0x7ECA\n0x306E\t0x90A6\n0x306F\t0x5E2E\n0x3070\t0x6886\n0x3071\t0x699C\n0x3072\t0x8180\n0x3073\t0x7ED1\n0x3074\t0x68D2\n0x3075\t0x78C5\n0x3076\t0x868C\n0x3077\t0x9551\n0x3078\t0x508D\n0x3079\t0x8C24\n0x307A\t0x82DE\n0x307B\t0x80DE\n0x307C\t0x5305\n0x307D\t0x8912\n0x307E\t0x5265\n0x3121\t0x8584\n0x3122\t0x96F9\n0x3123\t0x4FDD\n0x3124\t0x5821\n0x3125\t0x9971\n0x3126\t0x5B9D\n0x3127\t0x62B1\n0x3128\t0x62A5\n0x3129\t0x66B4\n0x312A\t0x8C79\n0x312B\t0x9C8D\n0x312C\t0x7206\n0x312D\t0x676F\n0x312E\t0x7891\n0x312F\t0x60B2\n0x3130\t0x5351\n0x3131\t0x5317\n0x3132\t0x8F88\n0x3133\t0x80CC\n0x3134\t0x8D1D\n0x3135\t0x94A1\n0x3136\t0x500D\n0x3137\t0x72C8\n0x3138\t0x5907\n0x3139\t0x60EB\n0x313A\t0x7119\n0x313B\t0x88AB\n0x313C\t0x5954\n0x313D\t0x82EF\n0x313E\t0x672C\n0x313F\t0x7B28\n0x3140\t0x5D29\n0x3141\t0x7EF7\n0x3142\t0x752D\n0x3143\t0x6CF5\n0x3144\t0x8E66\n0x3145\t0x8FF8\n0x3146\t0x903C\n0x3147\t0x9F3B\n0x3148\t0x6BD4\n0x3149\t0x9119\n0x314A\t0x7B14\n0x314B\t0x5F7C\n0x314C\t0x78A7\n0x314D\t0x84D6\n0x314E\t0x853D\n0x314F\t0x6BD5\n0x3150\t0x6BD9\n0x3151\t0x6BD6\n0x3152\t0x5E01\n0x3153\t0x5E87\n0x3154\t0x75F9\n0x3155\t0x95ED\n0x3156\t0x655D\n0x3157\t0x5F0A\n0x3158\t0x5FC5\n0x3159\t0x8F9F\n0x315A\t0x58C1\n0x315B\t0x81C2\n0x315C\t0x907F\n0x315D\t0x965B\n0x315E\t0x97AD\n0x315F\t0x8FB9\n0x3160\t0x7F16\n0x3161\t0x8D2C\n0x3162\t0x6241\n0x3163\t0x4FBF\n0x3164\t0x53D8\n0x3165\t0x535E\n0x3166\t0x8FA8\n0x3167\t0x8FA9\n0x3168\t0x8FAB\n0x3169\t0x904D\n0x316A\t0x6807\n0x316B\t0x5F6A\n0x316C\t0x8198\n0x316D\t0x8868\n0x316E\t0x9CD6\n0x316F\t0x618B\n0x3170\t0x522B\n0x3171\t0x762A\n0x3172\t0x5F6C\n0x3173\t0x658C\n0x3174\t0x6FD2\n0x3175\t0x6EE8\n0x3176\t0x5BBE\n0x3177\t0x6448\n0x3178\t0x5175\n0x3179\t0x51B0\n0x317A\t0x67C4\n0x317B\t0x4E19\n0x317C\t0x79C9\n0x317D\t0x997C\n0x317E\t0x70B3\n0x3221\t0x75C5\n0x3222\t0x5E76\n0x3223\t0x73BB\n0x3224\t0x83E0\n0x3225\t0x64AD\n0x3226\t0x62E8\n0x3227\t0x94B5\n0x3228\t0x6CE2\n0x3229\t0x535A\n0x322A\t0x52C3\n0x322B\t0x640F\n0x322C\t0x94C2\n0x322D\t0x7B94\n0x322E\t0x4F2F\n0x322F\t0x5E1B\n0x3230\t0x8236\n0x3231\t0x8116\n0x3232\t0x818A\n0x3233\t0x6E24\n0x3234\t0x6CCA\n0x3235\t0x9A73\n0x3236\t0x6355\n0x3237\t0x535C\n0x3238\t0x54FA\n0x3239\t0x8865\n0x323A\t0x57E0\n0x323B\t0x4E0D\n0x323C\t0x5E03\n0x323D\t0x6B65\n0x323E\t0x7C3F\n0x323F\t0x90E8\n0x3240\t0x6016\n0x3241\t0x64E6\n0x3242\t0x731C\n0x3243\t0x88C1\n0x3244\t0x6750\n0x3245\t0x624D\n0x3246\t0x8D22\n0x3247\t0x776C\n0x3248\t0x8E29\n0x3249\t0x91C7\n0x324A\t0x5F69\n0x324B\t0x83DC\n0x324C\t0x8521\n0x324D\t0x9910\n0x324E\t0x53C2\n0x324F\t0x8695\n0x3250\t0x6B8B\n0x3251\t0x60ED\n0x3252\t0x60E8\n0x3253\t0x707F\n0x3254\t0x82CD\n0x3255\t0x8231\n0x3256\t0x4ED3\n0x3257\t0x6CA7\n0x3258\t0x85CF\n0x3259\t0x64CD\n0x325A\t0x7CD9\n0x325B\t0x69FD\n0x325C\t0x66F9\n0x325D\t0x8349\n0x325E\t0x5395\n0x325F\t0x7B56\n0x3260\t0x4FA7\n0x3261\t0x518C\n0x3262\t0x6D4B\n0x3263\t0x5C42\n0x3264\t0x8E6D\n0x3265\t0x63D2\n0x3266\t0x53C9\n0x3267\t0x832C\n0x3268\t0x8336\n0x3269\t0x67E5\n0x326A\t0x78B4\n0x326B\t0x643D\n0x326C\t0x5BDF\n0x326D\t0x5C94\n0x326E\t0x5DEE\n0x326F\t0x8BE7\n0x3270\t0x62C6\n0x3271\t0x67F4\n0x3272\t0x8C7A\n0x3273\t0x6400\n0x3274\t0x63BA\n0x3275\t0x8749\n0x3276\t0x998B\n0x3277\t0x8C17\n0x3278\t0x7F20\n0x3279\t0x94F2\n0x327A\t0x4EA7\n0x327B\t0x9610\n0x327C\t0x98A4\n0x327D\t0x660C\n0x327E\t0x7316\n0x3321\t0x573A\n0x3322\t0x5C1D\n0x3323\t0x5E38\n0x3324\t0x957F\n0x3325\t0x507F\n0x3326\t0x80A0\n0x3327\t0x5382\n0x3328\t0x655E\n0x3329\t0x7545\n0x332A\t0x5531\n0x332B\t0x5021\n0x332C\t0x8D85\n0x332D\t0x6284\n0x332E\t0x949E\n0x332F\t0x671D\n0x3330\t0x5632\n0x3331\t0x6F6E\n0x3332\t0x5DE2\n0x3333\t0x5435\n0x3334\t0x7092\n0x3335\t0x8F66\n0x3336\t0x626F\n0x3337\t0x64A4\n0x3338\t0x63A3\n0x3339\t0x5F7B\n0x333A\t0x6F88\n0x333B\t0x90F4\n0x333C\t0x81E3\n0x333D\t0x8FB0\n0x333E\t0x5C18\n0x333F\t0x6668\n0x3340\t0x5FF1\n0x3341\t0x6C89\n0x3342\t0x9648\n0x3343\t0x8D81\n0x3344\t0x886C\n0x3345\t0x6491\n0x3346\t0x79F0\n0x3347\t0x57CE\n0x3348\t0x6A59\n0x3349\t0x6210\n0x334A\t0x5448\n0x334B\t0x4E58\n0x334C\t0x7A0B\n0x334D\t0x60E9\n0x334E\t0x6F84\n0x334F\t0x8BDA\n0x3350\t0x627F\n0x3351\t0x901E\n0x3352\t0x9A8B\n0x3353\t0x79E4\n0x3354\t0x5403\n0x3355\t0x75F4\n0x3356\t0x6301\n0x3357\t0x5319\n0x3358\t0x6C60\n0x3359\t0x8FDF\n0x335A\t0x5F1B\n0x335B\t0x9A70\n0x335C\t0x803B\n0x335D\t0x9F7F\n0x335E\t0x4F88\n0x335F\t0x5C3A\n0x3360\t0x8D64\n0x3361\t0x7FC5\n0x3362\t0x65A5\n0x3363\t0x70BD\n0x3364\t0x5145\n0x3365\t0x51B2\n0x3366\t0x866B\n0x3367\t0x5D07\n0x3368\t0x5BA0\n0x3369\t0x62BD\n0x336A\t0x916C\n0x336B\t0x7574\n0x336C\t0x8E0C\n0x336D\t0x7A20\n0x336E\t0x6101\n0x336F\t0x7B79\n0x3370\t0x4EC7\n0x3371\t0x7EF8\n0x3372\t0x7785\n0x3373\t0x4E11\n0x3374\t0x81ED\n0x3375\t0x521D\n0x3376\t0x51FA\n0x3377\t0x6A71\n0x3378\t0x53A8\n0x3379\t0x8E87\n0x337A\t0x9504\n0x337B\t0x96CF\n0x337C\t0x6EC1\n0x337D\t0x9664\n0x337E\t0x695A\n0x3421\t0x7840\n0x3422\t0x50A8\n0x3423\t0x77D7\n0x3424\t0x6410\n0x3425\t0x89E6\n0x3426\t0x5904\n0x3427\t0x63E3\n0x3428\t0x5DDD\n0x3429\t0x7A7F\n0x342A\t0x693D\n0x342B\t0x4F20\n0x342C\t0x8239\n0x342D\t0x5598\n0x342E\t0x4E32\n0x342F\t0x75AE\n0x3430\t0x7A97\n0x3431\t0x5E62\n0x3432\t0x5E8A\n0x3433\t0x95EF\n0x3434\t0x521B\n0x3435\t0x5439\n0x3436\t0x708A\n0x3437\t0x6376\n0x3438\t0x9524\n0x3439\t0x5782\n0x343A\t0x6625\n0x343B\t0x693F\n0x343C\t0x9187\n0x343D\t0x5507\n0x343E\t0x6DF3\n0x343F\t0x7EAF\n0x3440\t0x8822\n0x3441\t0x6233\n0x3442\t0x7EF0\n0x3443\t0x75B5\n0x3444\t0x8328\n0x3445\t0x78C1\n0x3446\t0x96CC\n0x3447\t0x8F9E\n0x3448\t0x6148\n0x3449\t0x74F7\n0x344A\t0x8BCD\n0x344B\t0x6B64\n0x344C\t0x523A\n0x344D\t0x8D50\n0x344E\t0x6B21\n0x344F\t0x806A\n0x3450\t0x8471\n0x3451\t0x56F1\n0x3452\t0x5306\n0x3453\t0x4ECE\n0x3454\t0x4E1B\n0x3455\t0x51D1\n0x3456\t0x7C97\n0x3457\t0x918B\n0x3458\t0x7C07\n0x3459\t0x4FC3\n0x345A\t0x8E7F\n0x345B\t0x7BE1\n0x345C\t0x7A9C\n0x345D\t0x6467\n0x345E\t0x5D14\n0x345F\t0x50AC\n0x3460\t0x8106\n0x3461\t0x7601\n0x3462\t0x7CB9\n0x3463\t0x6DEC\n0x3464\t0x7FE0\n0x3465\t0x6751\n0x3466\t0x5B58\n0x3467\t0x5BF8\n0x3468\t0x78CB\n0x3469\t0x64AE\n0x346A\t0x6413\n0x346B\t0x63AA\n0x346C\t0x632B\n0x346D\t0x9519\n0x346E\t0x642D\n0x346F\t0x8FBE\n0x3470\t0x7B54\n0x3471\t0x7629\n0x3472\t0x6253\n0x3473\t0x5927\n0x3474\t0x5446\n0x3475\t0x6B79\n0x3476\t0x50A3\n0x3477\t0x6234\n0x3478\t0x5E26\n0x3479\t0x6B86\n0x347A\t0x4EE3\n0x347B\t0x8D37\n0x347C\t0x888B\n0x347D\t0x5F85\n0x347E\t0x902E\n0x3521\t0x6020\n0x3522\t0x803D\n0x3523\t0x62C5\n0x3524\t0x4E39\n0x3525\t0x5355\n0x3526\t0x90F8\n0x3527\t0x63B8\n0x3528\t0x80C6\n0x3529\t0x65E6\n0x352A\t0x6C2E\n0x352B\t0x4F46\n0x352C\t0x60EE\n0x352D\t0x6DE1\n0x352E\t0x8BDE\n0x352F\t0x5F39\n0x3530\t0x86CB\n0x3531\t0x5F53\n0x3532\t0x6321\n0x3533\t0x515A\n0x3534\t0x8361\n0x3535\t0x6863\n0x3536\t0x5200\n0x3537\t0x6363\n0x3538\t0x8E48\n0x3539\t0x5012\n0x353A\t0x5C9B\n0x353B\t0x7977\n0x353C\t0x5BFC\n0x353D\t0x5230\n0x353E\t0x7A3B\n0x353F\t0x60BC\n0x3540\t0x9053\n0x3541\t0x76D7\n0x3542\t0x5FB7\n0x3543\t0x5F97\n0x3544\t0x7684\n0x3545\t0x8E6C\n0x3546\t0x706F\n0x3547\t0x767B\n0x3548\t0x7B49\n0x3549\t0x77AA\n0x354A\t0x51F3\n0x354B\t0x9093\n0x354C\t0x5824\n0x354D\t0x4F4E\n0x354E\t0x6EF4\n0x354F\t0x8FEA\n0x3550\t0x654C\n0x3551\t0x7B1B\n0x3552\t0x72C4\n0x3553\t0x6DA4\n0x3554\t0x7FDF\n0x3555\t0x5AE1\n0x3556\t0x62B5\n0x3557\t0x5E95\n0x3558\t0x5730\n0x3559\t0x8482\n0x355A\t0x7B2C\n0x355B\t0x5E1D\n0x355C\t0x5F1F\n0x355D\t0x9012\n0x355E\t0x7F14\n0x355F\t0x98A0\n0x3560\t0x6382\n0x3561\t0x6EC7\n0x3562\t0x7898\n0x3563\t0x70B9\n0x3564\t0x5178\n0x3565\t0x975B\n0x3566\t0x57AB\n0x3567\t0x7535\n0x3568\t0x4F43\n0x3569\t0x7538\n0x356A\t0x5E97\n0x356B\t0x60E6\n0x356C\t0x5960\n0x356D\t0x6DC0\n0x356E\t0x6BBF\n0x356F\t0x7889\n0x3570\t0x53FC\n0x3571\t0x96D5\n0x3572\t0x51CB\n0x3573\t0x5201\n0x3574\t0x6389\n0x3575\t0x540A\n0x3576\t0x9493\n0x3577\t0x8C03\n0x3578\t0x8DCC\n0x3579\t0x7239\n0x357A\t0x789F\n0x357B\t0x8776\n0x357C\t0x8FED\n0x357D\t0x8C0D\n0x357E\t0x53E0\n0x3621\t0x4E01\n0x3622\t0x76EF\n0x3623\t0x53EE\n0x3624\t0x9489\n0x3625\t0x9876\n0x3626\t0x9F0E\n0x3627\t0x952D\n0x3628\t0x5B9A\n0x3629\t0x8BA2\n0x362A\t0x4E22\n0x362B\t0x4E1C\n0x362C\t0x51AC\n0x362D\t0x8463\n0x362E\t0x61C2\n0x362F\t0x52A8\n0x3630\t0x680B\n0x3631\t0x4F97\n0x3632\t0x606B\n0x3633\t0x51BB\n0x3634\t0x6D1E\n0x3635\t0x515C\n0x3636\t0x6296\n0x3637\t0x6597\n0x3638\t0x9661\n0x3639\t0x8C46\n0x363A\t0x9017\n0x363B\t0x75D8\n0x363C\t0x90FD\n0x363D\t0x7763\n0x363E\t0x6BD2\n0x363F\t0x728A\n0x3640\t0x72EC\n0x3641\t0x8BFB\n0x3642\t0x5835\n0x3643\t0x7779\n0x3644\t0x8D4C\n0x3645\t0x675C\n0x3646\t0x9540\n0x3647\t0x809A\n0x3648\t0x5EA6\n0x3649\t0x6E21\n0x364A\t0x5992\n0x364B\t0x7AEF\n0x364C\t0x77ED\n0x364D\t0x953B\n0x364E\t0x6BB5\n0x364F\t0x65AD\n0x3650\t0x7F0E\n0x3651\t0x5806\n0x3652\t0x5151\n0x3653\t0x961F\n0x3654\t0x5BF9\n0x3655\t0x58A9\n0x3656\t0x5428\n0x3657\t0x8E72\n0x3658\t0x6566\n0x3659\t0x987F\n0x365A\t0x56E4\n0x365B\t0x949D\n0x365C\t0x76FE\n0x365D\t0x9041\n0x365E\t0x6387\n0x365F\t0x54C6\n0x3660\t0x591A\n0x3661\t0x593A\n0x3662\t0x579B\n0x3663\t0x8EB2\n0x3664\t0x6735\n0x3665\t0x8DFA\n0x3666\t0x8235\n0x3667\t0x5241\n0x3668\t0x60F0\n0x3669\t0x5815\n0x366A\t0x86FE\n0x366B\t0x5CE8\n0x366C\t0x9E45\n0x366D\t0x4FC4\n0x366E\t0x989D\n0x366F\t0x8BB9\n0x3670\t0x5A25\n0x3671\t0x6076\n0x3672\t0x5384\n0x3673\t0x627C\n0x3674\t0x904F\n0x3675\t0x9102\n0x3676\t0x997F\n0x3677\t0x6069\n0x3678\t0x800C\n0x3679\t0x513F\n0x367A\t0x8033\n0x367B\t0x5C14\n0x367C\t0x9975\n0x367D\t0x6D31\n0x367E\t0x4E8C\n0x3721\t0x8D30\n0x3722\t0x53D1\n0x3723\t0x7F5A\n0x3724\t0x7B4F\n0x3725\t0x4F10\n0x3726\t0x4E4F\n0x3727\t0x9600\n0x3728\t0x6CD5\n0x3729\t0x73D0\n0x372A\t0x85E9\n0x372B\t0x5E06\n0x372C\t0x756A\n0x372D\t0x7FFB\n0x372E\t0x6A0A\n0x372F\t0x77FE\n0x3730\t0x9492\n0x3731\t0x7E41\n0x3732\t0x51E1\n0x3733\t0x70E6\n0x3734\t0x53CD\n0x3735\t0x8FD4\n0x3736\t0x8303\n0x3737\t0x8D29\n0x3738\t0x72AF\n0x3739\t0x996D\n0x373A\t0x6CDB\n0x373B\t0x574A\n0x373C\t0x82B3\n0x373D\t0x65B9\n0x373E\t0x80AA\n0x373F\t0x623F\n0x3740\t0x9632\n0x3741\t0x59A8\n0x3742\t0x4EFF\n0x3743\t0x8BBF\n0x3744\t0x7EBA\n0x3745\t0x653E\n0x3746\t0x83F2\n0x3747\t0x975E\n0x3748\t0x5561\n0x3749\t0x98DE\n0x374A\t0x80A5\n0x374B\t0x532A\n0x374C\t0x8BFD\n0x374D\t0x5420\n0x374E\t0x80BA\n0x374F\t0x5E9F\n0x3750\t0x6CB8\n0x3751\t0x8D39\n0x3752\t0x82AC\n0x3753\t0x915A\n0x3754\t0x5429\n0x3755\t0x6C1B\n0x3756\t0x5206\n0x3757\t0x7EB7\n0x3758\t0x575F\n0x3759\t0x711A\n0x375A\t0x6C7E\n0x375B\t0x7C89\n0x375C\t0x594B\n0x375D\t0x4EFD\n0x375E\t0x5FFF\n0x375F\t0x6124\n0x3760\t0x7CAA\n0x3761\t0x4E30\n0x3762\t0x5C01\n0x3763\t0x67AB\n0x3764\t0x8702\n0x3765\t0x5CF0\n0x3766\t0x950B\n0x3767\t0x98CE\n0x3768\t0x75AF\n0x3769\t0x70FD\n0x376A\t0x9022\n0x376B\t0x51AF\n0x376C\t0x7F1D\n0x376D\t0x8BBD\n0x376E\t0x5949\n0x376F\t0x51E4\n0x3770\t0x4F5B\n0x3771\t0x5426\n0x3772\t0x592B\n0x3773\t0x6577\n0x3774\t0x80A4\n0x3775\t0x5B75\n0x3776\t0x6276\n0x3777\t0x62C2\n0x3778\t0x8F90\n0x3779\t0x5E45\n0x377A\t0x6C1F\n0x377B\t0x7B26\n0x377C\t0x4F0F\n0x377D\t0x4FD8\n0x377E\t0x670D\n0x3821\t0x6D6E\n0x3822\t0x6DAA\n0x3823\t0x798F\n0x3824\t0x88B1\n0x3825\t0x5F17\n0x3826\t0x752B\n0x3827\t0x629A\n0x3828\t0x8F85\n0x3829\t0x4FEF\n0x382A\t0x91DC\n0x382B\t0x65A7\n0x382C\t0x812F\n0x382D\t0x8151\n0x382E\t0x5E9C\n0x382F\t0x8150\n0x3830\t0x8D74\n0x3831\t0x526F\n0x3832\t0x8986\n0x3833\t0x8D4B\n0x3834\t0x590D\n0x3835\t0x5085\n0x3836\t0x4ED8\n0x3837\t0x961C\n0x3838\t0x7236\n0x3839\t0x8179\n0x383A\t0x8D1F\n0x383B\t0x5BCC\n0x383C\t0x8BA3\n0x383D\t0x9644\n0x383E\t0x5987\n0x383F\t0x7F1A\n0x3840\t0x5490\n0x3841\t0x5676\n0x3842\t0x560E\n0x3843\t0x8BE5\n0x3844\t0x6539\n0x3845\t0x6982\n0x3846\t0x9499\n0x3847\t0x76D6\n0x3848\t0x6E89\n0x3849\t0x5E72\n0x384A\t0x7518\n0x384B\t0x6746\n0x384C\t0x67D1\n0x384D\t0x7AFF\n0x384E\t0x809D\n0x384F\t0x8D76\n0x3850\t0x611F\n0x3851\t0x79C6\n0x3852\t0x6562\n0x3853\t0x8D63\n0x3854\t0x5188\n0x3855\t0x521A\n0x3856\t0x94A2\n0x3857\t0x7F38\n0x3858\t0x809B\n0x3859\t0x7EB2\n0x385A\t0x5C97\n0x385B\t0x6E2F\n0x385C\t0x6760\n0x385D\t0x7BD9\n0x385E\t0x768B\n0x385F\t0x9AD8\n0x3860\t0x818F\n0x3861\t0x7F94\n0x3862\t0x7CD5\n0x3863\t0x641E\n0x3864\t0x9550\n0x3865\t0x7A3F\n0x3866\t0x544A\n0x3867\t0x54E5\n0x3868\t0x6B4C\n0x3869\t0x6401\n0x386A\t0x6208\n0x386B\t0x9E3D\n0x386C\t0x80F3\n0x386D\t0x7599\n0x386E\t0x5272\n0x386F\t0x9769\n0x3870\t0x845B\n0x3871\t0x683C\n0x3872\t0x86E4\n0x3873\t0x9601\n0x3874\t0x9694\n0x3875\t0x94EC\n0x3876\t0x4E2A\n0x3877\t0x5404\n0x3878\t0x7ED9\n0x3879\t0x6839\n0x387A\t0x8DDF\n0x387B\t0x8015\n0x387C\t0x66F4\n0x387D\t0x5E9A\n0x387E\t0x7FB9\n0x3921\t0x57C2\n0x3922\t0x803F\n0x3923\t0x6897\n0x3924\t0x5DE5\n0x3925\t0x653B\n0x3926\t0x529F\n0x3927\t0x606D\n0x3928\t0x9F9A\n0x3929\t0x4F9B\n0x392A\t0x8EAC\n0x392B\t0x516C\n0x392C\t0x5BAB\n0x392D\t0x5F13\n0x392E\t0x5DE9\n0x392F\t0x6C5E\n0x3930\t0x62F1\n0x3931\t0x8D21\n0x3932\t0x5171\n0x3933\t0x94A9\n0x3934\t0x52FE\n0x3935\t0x6C9F\n0x3936\t0x82DF\n0x3937\t0x72D7\n0x3938\t0x57A2\n0x3939\t0x6784\n0x393A\t0x8D2D\n0x393B\t0x591F\n0x393C\t0x8F9C\n0x393D\t0x83C7\n0x393E\t0x5495\n0x393F\t0x7B8D\n0x3940\t0x4F30\n0x3941\t0x6CBD\n0x3942\t0x5B64\n0x3943\t0x59D1\n0x3944\t0x9F13\n0x3945\t0x53E4\n0x3946\t0x86CA\n0x3947\t0x9AA8\n0x3948\t0x8C37\n0x3949\t0x80A1\n0x394A\t0x6545\n0x394B\t0x987E\n0x394C\t0x56FA\n0x394D\t0x96C7\n0x394E\t0x522E\n0x394F\t0x74DC\n0x3950\t0x5250\n0x3951\t0x5BE1\n0x3952\t0x6302\n0x3953\t0x8902\n0x3954\t0x4E56\n0x3955\t0x62D0\n0x3956\t0x602A\n0x3957\t0x68FA\n0x3958\t0x5173\n0x3959\t0x5B98\n0x395A\t0x51A0\n0x395B\t0x89C2\n0x395C\t0x7BA1\n0x395D\t0x9986\n0x395E\t0x7F50\n0x395F\t0x60EF\n0x3960\t0x704C\n0x3961\t0x8D2F\n0x3962\t0x5149\n0x3963\t0x5E7F\n0x3964\t0x901B\n0x3965\t0x7470\n0x3966\t0x89C4\n0x3967\t0x572D\n0x3968\t0x7845\n0x3969\t0x5F52\n0x396A\t0x9F9F\n0x396B\t0x95FA\n0x396C\t0x8F68\n0x396D\t0x9B3C\n0x396E\t0x8BE1\n0x396F\t0x7678\n0x3970\t0x6842\n0x3971\t0x67DC\n0x3972\t0x8DEA\n0x3973\t0x8D35\n0x3974\t0x523D\n0x3975\t0x8F8A\n0x3976\t0x6EDA\n0x3977\t0x68CD\n0x3978\t0x9505\n0x3979\t0x90ED\n0x397A\t0x56FD\n0x397B\t0x679C\n0x397C\t0x88F9\n0x397D\t0x8FC7\n0x397E\t0x54C8\n0x3A21\t0x9AB8\n0x3A22\t0x5B69\n0x3A23\t0x6D77\n0x3A24\t0x6C26\n0x3A25\t0x4EA5\n0x3A26\t0x5BB3\n0x3A27\t0x9A87\n0x3A28\t0x9163\n0x3A29\t0x61A8\n0x3A2A\t0x90AF\n0x3A2B\t0x97E9\n0x3A2C\t0x542B\n0x3A2D\t0x6DB5\n0x3A2E\t0x5BD2\n0x3A2F\t0x51FD\n0x3A30\t0x558A\n0x3A31\t0x7F55\n0x3A32\t0x7FF0\n0x3A33\t0x64BC\n0x3A34\t0x634D\n0x3A35\t0x65F1\n0x3A36\t0x61BE\n0x3A37\t0x608D\n0x3A38\t0x710A\n0x3A39\t0x6C57\n0x3A3A\t0x6C49\n0x3A3B\t0x592F\n0x3A3C\t0x676D\n0x3A3D\t0x822A\n0x3A3E\t0x58D5\n0x3A3F\t0x568E\n0x3A40\t0x8C6A\n0x3A41\t0x6BEB\n0x3A42\t0x90DD\n0x3A43\t0x597D\n0x3A44\t0x8017\n0x3A45\t0x53F7\n0x3A46\t0x6D69\n0x3A47\t0x5475\n0x3A48\t0x559D\n0x3A49\t0x8377\n0x3A4A\t0x83CF\n0x3A4B\t0x6838\n0x3A4C\t0x79BE\n0x3A4D\t0x548C\n0x3A4E\t0x4F55\n0x3A4F\t0x5408\n0x3A50\t0x76D2\n0x3A51\t0x8C89\n0x3A52\t0x9602\n0x3A53\t0x6CB3\n0x3A54\t0x6DB8\n0x3A55\t0x8D6B\n0x3A56\t0x8910\n0x3A57\t0x9E64\n0x3A58\t0x8D3A\n0x3A59\t0x563F\n0x3A5A\t0x9ED1\n0x3A5B\t0x75D5\n0x3A5C\t0x5F88\n0x3A5D\t0x72E0\n0x3A5E\t0x6068\n0x3A5F\t0x54FC\n0x3A60\t0x4EA8\n0x3A61\t0x6A2A\n0x3A62\t0x8861\n0x3A63\t0x6052\n0x3A64\t0x8F70\n0x3A65\t0x54C4\n0x3A66\t0x70D8\n0x3A67\t0x8679\n0x3A68\t0x9E3F\n0x3A69\t0x6D2A\n0x3A6A\t0x5B8F\n0x3A6B\t0x5F18\n0x3A6C\t0x7EA2\n0x3A6D\t0x5589\n0x3A6E\t0x4FAF\n0x3A6F\t0x7334\n0x3A70\t0x543C\n0x3A71\t0x539A\n0x3A72\t0x5019\n0x3A73\t0x540E\n0x3A74\t0x547C\n0x3A75\t0x4E4E\n0x3A76\t0x5FFD\n0x3A77\t0x745A\n0x3A78\t0x58F6\n0x3A79\t0x846B\n0x3A7A\t0x80E1\n0x3A7B\t0x8774\n0x3A7C\t0x72D0\n0x3A7D\t0x7CCA\n0x3A7E\t0x6E56\n0x3B21\t0x5F27\n0x3B22\t0x864E\n0x3B23\t0x552C\n0x3B24\t0x62A4\n0x3B25\t0x4E92\n0x3B26\t0x6CAA\n0x3B27\t0x6237\n0x3B28\t0x82B1\n0x3B29\t0x54D7\n0x3B2A\t0x534E\n0x3B2B\t0x733E\n0x3B2C\t0x6ED1\n0x3B2D\t0x753B\n0x3B2E\t0x5212\n0x3B2F\t0x5316\n0x3B30\t0x8BDD\n0x3B31\t0x69D0\n0x3B32\t0x5F8A\n0x3B33\t0x6000\n0x3B34\t0x6DEE\n0x3B35\t0x574F\n0x3B36\t0x6B22\n0x3B37\t0x73AF\n0x3B38\t0x6853\n0x3B39\t0x8FD8\n0x3B3A\t0x7F13\n0x3B3B\t0x6362\n0x3B3C\t0x60A3\n0x3B3D\t0x5524\n0x3B3E\t0x75EA\n0x3B3F\t0x8C62\n0x3B40\t0x7115\n0x3B41\t0x6DA3\n0x3B42\t0x5BA6\n0x3B43\t0x5E7B\n0x3B44\t0x8352\n0x3B45\t0x614C\n0x3B46\t0x9EC4\n0x3B47\t0x78FA\n0x3B48\t0x8757\n0x3B49\t0x7C27\n0x3B4A\t0x7687\n0x3B4B\t0x51F0\n0x3B4C\t0x60F6\n0x3B4D\t0x714C\n0x3B4E\t0x6643\n0x3B4F\t0x5E4C\n0x3B50\t0x604D\n0x3B51\t0x8C0E\n0x3B52\t0x7070\n0x3B53\t0x6325\n0x3B54\t0x8F89\n0x3B55\t0x5FBD\n0x3B56\t0x6062\n0x3B57\t0x86D4\n0x3B58\t0x56DE\n0x3B59\t0x6BC1\n0x3B5A\t0x6094\n0x3B5B\t0x6167\n0x3B5C\t0x5349\n0x3B5D\t0x60E0\n0x3B5E\t0x6666\n0x3B5F\t0x8D3F\n0x3B60\t0x79FD\n0x3B61\t0x4F1A\n0x3B62\t0x70E9\n0x3B63\t0x6C47\n0x3B64\t0x8BB3\n0x3B65\t0x8BF2\n0x3B66\t0x7ED8\n0x3B67\t0x8364\n0x3B68\t0x660F\n0x3B69\t0x5A5A\n0x3B6A\t0x9B42\n0x3B6B\t0x6D51\n0x3B6C\t0x6DF7\n0x3B6D\t0x8C41\n0x3B6E\t0x6D3B\n0x3B6F\t0x4F19\n0x3B70\t0x706B\n0x3B71\t0x83B7\n0x3B72\t0x6216\n0x3B73\t0x60D1\n0x3B74\t0x970D\n0x3B75\t0x8D27\n0x3B76\t0x7978\n0x3B77\t0x51FB\n0x3B78\t0x573E\n0x3B79\t0x57FA\n0x3B7A\t0x673A\n0x3B7B\t0x7578\n0x3B7C\t0x7A3D\n0x3B7D\t0x79EF\n0x3B7E\t0x7B95\n0x3C21\t0x808C\n0x3C22\t0x9965\n0x3C23\t0x8FF9\n0x3C24\t0x6FC0\n0x3C25\t0x8BA5\n0x3C26\t0x9E21\n0x3C27\t0x59EC\n0x3C28\t0x7EE9\n0x3C29\t0x7F09\n0x3C2A\t0x5409\n0x3C2B\t0x6781\n0x3C2C\t0x68D8\n0x3C2D\t0x8F91\n0x3C2E\t0x7C4D\n0x3C2F\t0x96C6\n0x3C30\t0x53CA\n0x3C31\t0x6025\n0x3C32\t0x75BE\n0x3C33\t0x6C72\n0x3C34\t0x5373\n0x3C35\t0x5AC9\n0x3C36\t0x7EA7\n0x3C37\t0x6324\n0x3C38\t0x51E0\n0x3C39\t0x810A\n0x3C3A\t0x5DF1\n0x3C3B\t0x84DF\n0x3C3C\t0x6280\n0x3C3D\t0x5180\n0x3C3E\t0x5B63\n0x3C3F\t0x4F0E\n0x3C40\t0x796D\n0x3C41\t0x5242\n0x3C42\t0x60B8\n0x3C43\t0x6D4E\n0x3C44\t0x5BC4\n0x3C45\t0x5BC2\n0x3C46\t0x8BA1\n0x3C47\t0x8BB0\n0x3C48\t0x65E2\n0x3C49\t0x5FCC\n0x3C4A\t0x9645\n0x3C4B\t0x5993\n0x3C4C\t0x7EE7\n0x3C4D\t0x7EAA\n0x3C4E\t0x5609\n0x3C4F\t0x67B7\n0x3C50\t0x5939\n0x3C51\t0x4F73\n0x3C52\t0x5BB6\n0x3C53\t0x52A0\n0x3C54\t0x835A\n0x3C55\t0x988A\n0x3C56\t0x8D3E\n0x3C57\t0x7532\n0x3C58\t0x94BE\n0x3C59\t0x5047\n0x3C5A\t0x7A3C\n0x3C5B\t0x4EF7\n0x3C5C\t0x67B6\n0x3C5D\t0x9A7E\n0x3C5E\t0x5AC1\n0x3C5F\t0x6B7C\n0x3C60\t0x76D1\n0x3C61\t0x575A\n0x3C62\t0x5C16\n0x3C63\t0x7B3A\n0x3C64\t0x95F4\n0x3C65\t0x714E\n0x3C66\t0x517C\n0x3C67\t0x80A9\n0x3C68\t0x8270\n0x3C69\t0x5978\n0x3C6A\t0x7F04\n0x3C6B\t0x8327\n0x3C6C\t0x68C0\n0x3C6D\t0x67EC\n0x3C6E\t0x78B1\n0x3C6F\t0x7877\n0x3C70\t0x62E3\n0x3C71\t0x6361\n0x3C72\t0x7B80\n0x3C73\t0x4FED\n0x3C74\t0x526A\n0x3C75\t0x51CF\n0x3C76\t0x8350\n0x3C77\t0x69DB\n0x3C78\t0x9274\n0x3C79\t0x8DF5\n0x3C7A\t0x8D31\n0x3C7B\t0x89C1\n0x3C7C\t0x952E\n0x3C7D\t0x7BAD\n0x3C7E\t0x4EF6\n0x3D21\t0x5065\n0x3D22\t0x8230\n0x3D23\t0x5251\n0x3D24\t0x996F\n0x3D25\t0x6E10\n0x3D26\t0x6E85\n0x3D27\t0x6DA7\n0x3D28\t0x5EFA\n0x3D29\t0x50F5\n0x3D2A\t0x59DC\n0x3D2B\t0x5C06\n0x3D2C\t0x6D46\n0x3D2D\t0x6C5F\n0x3D2E\t0x7586\n0x3D2F\t0x848B\n0x3D30\t0x6868\n0x3D31\t0x5956\n0x3D32\t0x8BB2\n0x3D33\t0x5320\n0x3D34\t0x9171\n0x3D35\t0x964D\n0x3D36\t0x8549\n0x3D37\t0x6912\n0x3D38\t0x7901\n0x3D39\t0x7126\n0x3D3A\t0x80F6\n0x3D3B\t0x4EA4\n0x3D3C\t0x90CA\n0x3D3D\t0x6D47\n0x3D3E\t0x9A84\n0x3D3F\t0x5A07\n0x3D40\t0x56BC\n0x3D41\t0x6405\n0x3D42\t0x94F0\n0x3D43\t0x77EB\n0x3D44\t0x4FA5\n0x3D45\t0x811A\n0x3D46\t0x72E1\n0x3D47\t0x89D2\n0x3D48\t0x997A\n0x3D49\t0x7F34\n0x3D4A\t0x7EDE\n0x3D4B\t0x527F\n0x3D4C\t0x6559\n0x3D4D\t0x9175\n0x3D4E\t0x8F7F\n0x3D4F\t0x8F83\n0x3D50\t0x53EB\n0x3D51\t0x7A96\n0x3D52\t0x63ED\n0x3D53\t0x63A5\n0x3D54\t0x7686\n0x3D55\t0x79F8\n0x3D56\t0x8857\n0x3D57\t0x9636\n0x3D58\t0x622A\n0x3D59\t0x52AB\n0x3D5A\t0x8282\n0x3D5B\t0x6854\n0x3D5C\t0x6770\n0x3D5D\t0x6377\n0x3D5E\t0x776B\n0x3D5F\t0x7AED\n0x3D60\t0x6D01\n0x3D61\t0x7ED3\n0x3D62\t0x89E3\n0x3D63\t0x59D0\n0x3D64\t0x6212\n0x3D65\t0x85C9\n0x3D66\t0x82A5\n0x3D67\t0x754C\n0x3D68\t0x501F\n0x3D69\t0x4ECB\n0x3D6A\t0x75A5\n0x3D6B\t0x8BEB\n0x3D6C\t0x5C4A\n0x3D6D\t0x5DFE\n0x3D6E\t0x7B4B\n0x3D6F\t0x65A4\n0x3D70\t0x91D1\n0x3D71\t0x4ECA\n0x3D72\t0x6D25\n0x3D73\t0x895F\n0x3D74\t0x7D27\n0x3D75\t0x9526\n0x3D76\t0x4EC5\n0x3D77\t0x8C28\n0x3D78\t0x8FDB\n0x3D79\t0x9773\n0x3D7A\t0x664B\n0x3D7B\t0x7981\n0x3D7C\t0x8FD1\n0x3D7D\t0x70EC\n0x3D7E\t0x6D78\n0x3E21\t0x5C3D\n0x3E22\t0x52B2\n0x3E23\t0x8346\n0x3E24\t0x5162\n0x3E25\t0x830E\n0x3E26\t0x775B\n0x3E27\t0x6676\n0x3E28\t0x9CB8\n0x3E29\t0x4EAC\n0x3E2A\t0x60CA\n0x3E2B\t0x7CBE\n0x3E2C\t0x7CB3\n0x3E2D\t0x7ECF\n0x3E2E\t0x4E95\n0x3E2F\t0x8B66\n0x3E30\t0x666F\n0x3E31\t0x9888\n0x3E32\t0x9759\n0x3E33\t0x5883\n0x3E34\t0x656C\n0x3E35\t0x955C\n0x3E36\t0x5F84\n0x3E37\t0x75C9\n0x3E38\t0x9756\n0x3E39\t0x7ADF\n0x3E3A\t0x7ADE\n0x3E3B\t0x51C0\n0x3E3C\t0x70AF\n0x3E3D\t0x7A98\n0x3E3E\t0x63EA\n0x3E3F\t0x7A76\n0x3E40\t0x7EA0\n0x3E41\t0x7396\n0x3E42\t0x97ED\n0x3E43\t0x4E45\n0x3E44\t0x7078\n0x3E45\t0x4E5D\n0x3E46\t0x9152\n0x3E47\t0x53A9\n0x3E48\t0x6551\n0x3E49\t0x65E7\n0x3E4A\t0x81FC\n0x3E4B\t0x8205\n0x3E4C\t0x548E\n0x3E4D\t0x5C31\n0x3E4E\t0x759A\n0x3E4F\t0x97A0\n0x3E50\t0x62D8\n0x3E51\t0x72D9\n0x3E52\t0x75BD\n0x3E53\t0x5C45\n0x3E54\t0x9A79\n0x3E55\t0x83CA\n0x3E56\t0x5C40\n0x3E57\t0x5480\n0x3E58\t0x77E9\n0x3E59\t0x4E3E\n0x3E5A\t0x6CAE\n0x3E5B\t0x805A\n0x3E5C\t0x62D2\n0x3E5D\t0x636E\n0x3E5E\t0x5DE8\n0x3E5F\t0x5177\n0x3E60\t0x8DDD\n0x3E61\t0x8E1E\n0x3E62\t0x952F\n0x3E63\t0x4FF1\n0x3E64\t0x53E5\n0x3E65\t0x60E7\n0x3E66\t0x70AC\n0x3E67\t0x5267\n0x3E68\t0x6350\n0x3E69\t0x9E43\n0x3E6A\t0x5A1F\n0x3E6B\t0x5026\n0x3E6C\t0x7737\n0x3E6D\t0x5377\n0x3E6E\t0x7EE2\n0x3E6F\t0x6485\n0x3E70\t0x652B\n0x3E71\t0x6289\n0x3E72\t0x6398\n0x3E73\t0x5014\n0x3E74\t0x7235\n0x3E75\t0x89C9\n0x3E76\t0x51B3\n0x3E77\t0x8BC0\n0x3E78\t0x7EDD\n0x3E79\t0x5747\n0x3E7A\t0x83CC\n0x3E7B\t0x94A7\n0x3E7C\t0x519B\n0x3E7D\t0x541B\n0x3E7E\t0x5CFB\n0x3F21\t0x4FCA\n0x3F22\t0x7AE3\n0x3F23\t0x6D5A\n0x3F24\t0x90E1\n0x3F25\t0x9A8F\n0x3F26\t0x5580\n0x3F27\t0x5496\n0x3F28\t0x5361\n0x3F29\t0x54AF\n0x3F2A\t0x5F00\n0x3F2B\t0x63E9\n0x3F2C\t0x6977\n0x3F2D\t0x51EF\n0x3F2E\t0x6168\n0x3F2F\t0x520A\n0x3F30\t0x582A\n0x3F31\t0x52D8\n0x3F32\t0x574E\n0x3F33\t0x780D\n0x3F34\t0x770B\n0x3F35\t0x5EB7\n0x3F36\t0x6177\n0x3F37\t0x7CE0\n0x3F38\t0x625B\n0x3F39\t0x6297\n0x3F3A\t0x4EA2\n0x3F3B\t0x7095\n0x3F3C\t0x8003\n0x3F3D\t0x62F7\n0x3F3E\t0x70E4\n0x3F3F\t0x9760\n0x3F40\t0x5777\n0x3F41\t0x82DB\n0x3F42\t0x67EF\n0x3F43\t0x68F5\n0x3F44\t0x78D5\n0x3F45\t0x9897\n0x3F46\t0x79D1\n0x3F47\t0x58F3\n0x3F48\t0x54B3\n0x3F49\t0x53EF\n0x3F4A\t0x6E34\n0x3F4B\t0x514B\n0x3F4C\t0x523B\n0x3F4D\t0x5BA2\n0x3F4E\t0x8BFE\n0x3F4F\t0x80AF\n0x3F50\t0x5543\n0x3F51\t0x57A6\n0x3F52\t0x6073\n0x3F53\t0x5751\n0x3F54\t0x542D\n0x3F55\t0x7A7A\n0x3F56\t0x6050\n0x3F57\t0x5B54\n0x3F58\t0x63A7\n0x3F59\t0x62A0\n0x3F5A\t0x53E3\n0x3F5B\t0x6263\n0x3F5C\t0x5BC7\n0x3F5D\t0x67AF\n0x3F5E\t0x54ED\n0x3F5F\t0x7A9F\n0x3F60\t0x82E6\n0x3F61\t0x9177\n0x3F62\t0x5E93\n0x3F63\t0x88E4\n0x3F64\t0x5938\n0x3F65\t0x57AE\n0x3F66\t0x630E\n0x3F67\t0x8DE8\n0x3F68\t0x80EF\n0x3F69\t0x5757\n0x3F6A\t0x7B77\n0x3F6B\t0x4FA9\n0x3F6C\t0x5FEB\n0x3F6D\t0x5BBD\n0x3F6E\t0x6B3E\n0x3F6F\t0x5321\n0x3F70\t0x7B50\n0x3F71\t0x72C2\n0x3F72\t0x6846\n0x3F73\t0x77FF\n0x3F74\t0x7736\n0x3F75\t0x65F7\n0x3F76\t0x51B5\n0x3F77\t0x4E8F\n0x3F78\t0x76D4\n0x3F79\t0x5CBF\n0x3F7A\t0x7AA5\n0x3F7B\t0x8475\n0x3F7C\t0x594E\n0x3F7D\t0x9B41\n0x3F7E\t0x5080\n0x4021\t0x9988\n0x4022\t0x6127\n0x4023\t0x6E83\n0x4024\t0x5764\n0x4025\t0x6606\n0x4026\t0x6346\n0x4027\t0x56F0\n0x4028\t0x62EC\n0x4029\t0x6269\n0x402A\t0x5ED3\n0x402B\t0x9614\n0x402C\t0x5783\n0x402D\t0x62C9\n0x402E\t0x5587\n0x402F\t0x8721\n0x4030\t0x814A\n0x4031\t0x8FA3\n0x4032\t0x5566\n0x4033\t0x83B1\n0x4034\t0x6765\n0x4035\t0x8D56\n0x4036\t0x84DD\n0x4037\t0x5A6A\n0x4038\t0x680F\n0x4039\t0x62E6\n0x403A\t0x7BEE\n0x403B\t0x9611\n0x403C\t0x5170\n0x403D\t0x6F9C\n0x403E\t0x8C30\n0x403F\t0x63FD\n0x4040\t0x89C8\n0x4041\t0x61D2\n0x4042\t0x7F06\n0x4043\t0x70C2\n0x4044\t0x6EE5\n0x4045\t0x7405\n0x4046\t0x6994\n0x4047\t0x72FC\n0x4048\t0x5ECA\n0x4049\t0x90CE\n0x404A\t0x6717\n0x404B\t0x6D6A\n0x404C\t0x635E\n0x404D\t0x52B3\n0x404E\t0x7262\n0x404F\t0x8001\n0x4050\t0x4F6C\n0x4051\t0x59E5\n0x4052\t0x916A\n0x4053\t0x70D9\n0x4054\t0x6D9D\n0x4055\t0x52D2\n0x4056\t0x4E50\n0x4057\t0x96F7\n0x4058\t0x956D\n0x4059\t0x857E\n0x405A\t0x78CA\n0x405B\t0x7D2F\n0x405C\t0x5121\n0x405D\t0x5792\n0x405E\t0x64C2\n0x405F\t0x808B\n0x4060\t0x7C7B\n0x4061\t0x6CEA\n0x4062\t0x68F1\n0x4063\t0x695E\n0x4064\t0x51B7\n0x4065\t0x5398\n0x4066\t0x68A8\n0x4067\t0x7281\n0x4068\t0x9ECE\n0x4069\t0x7BF1\n0x406A\t0x72F8\n0x406B\t0x79BB\n0x406C\t0x6F13\n0x406D\t0x7406\n0x406E\t0x674E\n0x406F\t0x91CC\n0x4070\t0x9CA4\n0x4071\t0x793C\n0x4072\t0x8389\n0x4073\t0x8354\n0x4074\t0x540F\n0x4075\t0x6817\n0x4076\t0x4E3D\n0x4077\t0x5389\n0x4078\t0x52B1\n0x4079\t0x783E\n0x407A\t0x5386\n0x407B\t0x5229\n0x407C\t0x5088\n0x407D\t0x4F8B\n0x407E\t0x4FD0\n0x4121\t0x75E2\n0x4122\t0x7ACB\n0x4123\t0x7C92\n0x4124\t0x6CA5\n0x4125\t0x96B6\n0x4126\t0x529B\n0x4127\t0x7483\n0x4128\t0x54E9\n0x4129\t0x4FE9\n0x412A\t0x8054\n0x412B\t0x83B2\n0x412C\t0x8FDE\n0x412D\t0x9570\n0x412E\t0x5EC9\n0x412F\t0x601C\n0x4130\t0x6D9F\n0x4131\t0x5E18\n0x4132\t0x655B\n0x4133\t0x8138\n0x4134\t0x94FE\n0x4135\t0x604B\n0x4136\t0x70BC\n0x4137\t0x7EC3\n0x4138\t0x7CAE\n0x4139\t0x51C9\n0x413A\t0x6881\n0x413B\t0x7CB1\n0x413C\t0x826F\n0x413D\t0x4E24\n0x413E\t0x8F86\n0x413F\t0x91CF\n0x4140\t0x667E\n0x4141\t0x4EAE\n0x4142\t0x8C05\n0x4143\t0x64A9\n0x4144\t0x804A\n0x4145\t0x50DA\n0x4146\t0x7597\n0x4147\t0x71CE\n0x4148\t0x5BE5\n0x4149\t0x8FBD\n0x414A\t0x6F66\n0x414B\t0x4E86\n0x414C\t0x6482\n0x414D\t0x9563\n0x414E\t0x5ED6\n0x414F\t0x6599\n0x4150\t0x5217\n0x4151\t0x88C2\n0x4152\t0x70C8\n0x4153\t0x52A3\n0x4154\t0x730E\n0x4155\t0x7433\n0x4156\t0x6797\n0x4157\t0x78F7\n0x4158\t0x9716\n0x4159\t0x4E34\n0x415A\t0x90BB\n0x415B\t0x9CDE\n0x415C\t0x6DCB\n0x415D\t0x51DB\n0x415E\t0x8D41\n0x415F\t0x541D\n0x4160\t0x62CE\n0x4161\t0x73B2\n0x4162\t0x83F1\n0x4163\t0x96F6\n0x4164\t0x9F84\n0x4165\t0x94C3\n0x4166\t0x4F36\n0x4167\t0x7F9A\n0x4168\t0x51CC\n0x4169\t0x7075\n0x416A\t0x9675\n0x416B\t0x5CAD\n0x416C\t0x9886\n0x416D\t0x53E6\n0x416E\t0x4EE4\n0x416F\t0x6E9C\n0x4170\t0x7409\n0x4171\t0x69B4\n0x4172\t0x786B\n0x4173\t0x998F\n0x4174\t0x7559\n0x4175\t0x5218\n0x4176\t0x7624\n0x4177\t0x6D41\n0x4178\t0x67F3\n0x4179\t0x516D\n0x417A\t0x9F99\n0x417B\t0x804B\n0x417C\t0x5499\n0x417D\t0x7B3C\n0x417E\t0x7ABF\n0x4221\t0x9686\n0x4222\t0x5784\n0x4223\t0x62E2\n0x4224\t0x9647\n0x4225\t0x697C\n0x4226\t0x5A04\n0x4227\t0x6402\n0x4228\t0x7BD3\n0x4229\t0x6F0F\n0x422A\t0x964B\n0x422B\t0x82A6\n0x422C\t0x5362\n0x422D\t0x9885\n0x422E\t0x5E90\n0x422F\t0x7089\n0x4230\t0x63B3\n0x4231\t0x5364\n0x4232\t0x864F\n0x4233\t0x9C81\n0x4234\t0x9E93\n0x4235\t0x788C\n0x4236\t0x9732\n0x4237\t0x8DEF\n0x4238\t0x8D42\n0x4239\t0x9E7F\n0x423A\t0x6F5E\n0x423B\t0x7984\n0x423C\t0x5F55\n0x423D\t0x9646\n0x423E\t0x622E\n0x423F\t0x9A74\n0x4240\t0x5415\n0x4241\t0x94DD\n0x4242\t0x4FA3\n0x4243\t0x65C5\n0x4244\t0x5C65\n0x4245\t0x5C61\n0x4246\t0x7F15\n0x4247\t0x8651\n0x4248\t0x6C2F\n0x4249\t0x5F8B\n0x424A\t0x7387\n0x424B\t0x6EE4\n0x424C\t0x7EFF\n0x424D\t0x5CE6\n0x424E\t0x631B\n0x424F\t0x5B6A\n0x4250\t0x6EE6\n0x4251\t0x5375\n0x4252\t0x4E71\n0x4253\t0x63A0\n0x4254\t0x7565\n0x4255\t0x62A1\n0x4256\t0x8F6E\n0x4257\t0x4F26\n0x4258\t0x4ED1\n0x4259\t0x6CA6\n0x425A\t0x7EB6\n0x425B\t0x8BBA\n0x425C\t0x841D\n0x425D\t0x87BA\n0x425E\t0x7F57\n0x425F\t0x903B\n0x4260\t0x9523\n0x4261\t0x7BA9\n0x4262\t0x9AA1\n0x4263\t0x88F8\n0x4264\t0x843D\n0x4265\t0x6D1B\n0x4266\t0x9A86\n0x4267\t0x7EDC\n0x4268\t0x5988\n0x4269\t0x9EBB\n0x426A\t0x739B\n0x426B\t0x7801\n0x426C\t0x8682\n0x426D\t0x9A6C\n0x426E\t0x9A82\n0x426F\t0x561B\n0x4270\t0x5417\n0x4271\t0x57CB\n0x4272\t0x4E70\n0x4273\t0x9EA6\n0x4274\t0x5356\n0x4275\t0x8FC8\n0x4276\t0x8109\n0x4277\t0x7792\n0x4278\t0x9992\n0x4279\t0x86EE\n0x427A\t0x6EE1\n0x427B\t0x8513\n0x427C\t0x66FC\n0x427D\t0x6162\n0x427E\t0x6F2B\n0x4321\t0x8C29\n0x4322\t0x8292\n0x4323\t0x832B\n0x4324\t0x76F2\n0x4325\t0x6C13\n0x4326\t0x5FD9\n0x4327\t0x83BD\n0x4328\t0x732B\n0x4329\t0x8305\n0x432A\t0x951A\n0x432B\t0x6BDB\n0x432C\t0x77DB\n0x432D\t0x94C6\n0x432E\t0x536F\n0x432F\t0x8302\n0x4330\t0x5192\n0x4331\t0x5E3D\n0x4332\t0x8C8C\n0x4333\t0x8D38\n0x4334\t0x4E48\n0x4335\t0x73AB\n0x4336\t0x679A\n0x4337\t0x6885\n0x4338\t0x9176\n0x4339\t0x9709\n0x433A\t0x7164\n0x433B\t0x6CA1\n0x433C\t0x7709\n0x433D\t0x5A92\n0x433E\t0x9541\n0x433F\t0x6BCF\n0x4340\t0x7F8E\n0x4341\t0x6627\n0x4342\t0x5BD0\n0x4343\t0x59B9\n0x4344\t0x5A9A\n0x4345\t0x95E8\n0x4346\t0x95F7\n0x4347\t0x4EEC\n0x4348\t0x840C\n0x4349\t0x8499\n0x434A\t0x6AAC\n0x434B\t0x76DF\n0x434C\t0x9530\n0x434D\t0x731B\n0x434E\t0x68A6\n0x434F\t0x5B5F\n0x4350\t0x772F\n0x4351\t0x919A\n0x4352\t0x9761\n0x4353\t0x7CDC\n0x4354\t0x8FF7\n0x4355\t0x8C1C\n0x4356\t0x5F25\n0x4357\t0x7C73\n0x4358\t0x79D8\n0x4359\t0x89C5\n0x435A\t0x6CCC\n0x435B\t0x871C\n0x435C\t0x5BC6\n0x435D\t0x5E42\n0x435E\t0x68C9\n0x435F\t0x7720\n0x4360\t0x7EF5\n0x4361\t0x5195\n0x4362\t0x514D\n0x4363\t0x52C9\n0x4364\t0x5A29\n0x4365\t0x7F05\n0x4366\t0x9762\n0x4367\t0x82D7\n0x4368\t0x63CF\n0x4369\t0x7784\n0x436A\t0x85D0\n0x436B\t0x79D2\n0x436C\t0x6E3A\n0x436D\t0x5E99\n0x436E\t0x5999\n0x436F\t0x8511\n0x4370\t0x706D\n0x4371\t0x6C11\n0x4372\t0x62BF\n0x4373\t0x76BF\n0x4374\t0x654F\n0x4375\t0x60AF\n0x4376\t0x95FD\n0x4377\t0x660E\n0x4378\t0x879F\n0x4379\t0x9E23\n0x437A\t0x94ED\n0x437B\t0x540D\n0x437C\t0x547D\n0x437D\t0x8C2C\n0x437E\t0x6478\n0x4421\t0x6479\n0x4422\t0x8611\n0x4423\t0x6A21\n0x4424\t0x819C\n0x4425\t0x78E8\n0x4426\t0x6469\n0x4427\t0x9B54\n0x4428\t0x62B9\n0x4429\t0x672B\n0x442A\t0x83AB\n0x442B\t0x58A8\n0x442C\t0x9ED8\n0x442D\t0x6CAB\n0x442E\t0x6F20\n0x442F\t0x5BDE\n0x4430\t0x964C\n0x4431\t0x8C0B\n0x4432\t0x725F\n0x4433\t0x67D0\n0x4434\t0x62C7\n0x4435\t0x7261\n0x4436\t0x4EA9\n0x4437\t0x59C6\n0x4438\t0x6BCD\n0x4439\t0x5893\n0x443A\t0x66AE\n0x443B\t0x5E55\n0x443C\t0x52DF\n0x443D\t0x6155\n0x443E\t0x6728\n0x443F\t0x76EE\n0x4440\t0x7766\n0x4441\t0x7267\n0x4442\t0x7A46\n0x4443\t0x62FF\n0x4444\t0x54EA\n0x4445\t0x5450\n0x4446\t0x94A0\n0x4447\t0x90A3\n0x4448\t0x5A1C\n0x4449\t0x7EB3\n0x444A\t0x6C16\n0x444B\t0x4E43\n0x444C\t0x5976\n0x444D\t0x8010\n0x444E\t0x5948\n0x444F\t0x5357\n0x4450\t0x7537\n0x4451\t0x96BE\n0x4452\t0x56CA\n0x4453\t0x6320\n0x4454\t0x8111\n0x4455\t0x607C\n0x4456\t0x95F9\n0x4457\t0x6DD6\n0x4458\t0x5462\n0x4459\t0x9981\n0x445A\t0x5185\n0x445B\t0x5AE9\n0x445C\t0x80FD\n0x445D\t0x59AE\n0x445E\t0x9713\n0x445F\t0x502A\n0x4460\t0x6CE5\n0x4461\t0x5C3C\n0x4462\t0x62DF\n0x4463\t0x4F60\n0x4464\t0x533F\n0x4465\t0x817B\n0x4466\t0x9006\n0x4467\t0x6EBA\n0x4468\t0x852B\n0x4469\t0x62C8\n0x446A\t0x5E74\n0x446B\t0x78BE\n0x446C\t0x64B5\n0x446D\t0x637B\n0x446E\t0x5FF5\n0x446F\t0x5A18\n0x4470\t0x917F\n0x4471\t0x9E1F\n0x4472\t0x5C3F\n0x4473\t0x634F\n0x4474\t0x8042\n0x4475\t0x5B7D\n0x4476\t0x556E\n0x4477\t0x954A\n0x4478\t0x954D\n0x4479\t0x6D85\n0x447A\t0x60A8\n0x447B\t0x67E0\n0x447C\t0x72DE\n0x447D\t0x51DD\n0x447E\t0x5B81\n0x4521\t0x62E7\n0x4522\t0x6CDE\n0x4523\t0x725B\n0x4524\t0x626D\n0x4525\t0x94AE\n0x4526\t0x7EBD\n0x4527\t0x8113\n0x4528\t0x6D53\n0x4529\t0x519C\n0x452A\t0x5F04\n0x452B\t0x5974\n0x452C\t0x52AA\n0x452D\t0x6012\n0x452E\t0x5973\n0x452F\t0x6696\n0x4530\t0x8650\n0x4531\t0x759F\n0x4532\t0x632A\n0x4533\t0x61E6\n0x4534\t0x7CEF\n0x4535\t0x8BFA\n0x4536\t0x54E6\n0x4537\t0x6B27\n0x4538\t0x9E25\n0x4539\t0x6BB4\n0x453A\t0x85D5\n0x453B\t0x5455\n0x453C\t0x5076\n0x453D\t0x6CA4\n0x453E\t0x556A\n0x453F\t0x8DB4\n0x4540\t0x722C\n0x4541\t0x5E15\n0x4542\t0x6015\n0x4543\t0x7436\n0x4544\t0x62CD\n0x4545\t0x6392\n0x4546\t0x724C\n0x4547\t0x5F98\n0x4548\t0x6E43\n0x4549\t0x6D3E\n0x454A\t0x6500\n0x454B\t0x6F58\n0x454C\t0x76D8\n0x454D\t0x78D0\n0x454E\t0x76FC\n0x454F\t0x7554\n0x4550\t0x5224\n0x4551\t0x53DB\n0x4552\t0x4E53\n0x4553\t0x5E9E\n0x4554\t0x65C1\n0x4555\t0x802A\n0x4556\t0x80D6\n0x4557\t0x629B\n0x4558\t0x5486\n0x4559\t0x5228\n0x455A\t0x70AE\n0x455B\t0x888D\n0x455C\t0x8DD1\n0x455D\t0x6CE1\n0x455E\t0x5478\n0x455F\t0x80DA\n0x4560\t0x57F9\n0x4561\t0x88F4\n0x4562\t0x8D54\n0x4563\t0x966A\n0x4564\t0x914D\n0x4565\t0x4F69\n0x4566\t0x6C9B\n0x4567\t0x55B7\n0x4568\t0x76C6\n0x4569\t0x7830\n0x456A\t0x62A8\n0x456B\t0x70F9\n0x456C\t0x6F8E\n0x456D\t0x5F6D\n0x456E\t0x84EC\n0x456F\t0x68DA\n0x4570\t0x787C\n0x4571\t0x7BF7\n0x4572\t0x81A8\n0x4573\t0x670B\n0x4574\t0x9E4F\n0x4575\t0x6367\n0x4576\t0x78B0\n0x4577\t0x576F\n0x4578\t0x7812\n0x4579\t0x9739\n0x457A\t0x6279\n0x457B\t0x62AB\n0x457C\t0x5288\n0x457D\t0x7435\n0x457E\t0x6BD7\n0x4621\t0x5564\n0x4622\t0x813E\n0x4623\t0x75B2\n0x4624\t0x76AE\n0x4625\t0x5339\n0x4626\t0x75DE\n0x4627\t0x50FB\n0x4628\t0x5C41\n0x4629\t0x8B6C\n0x462A\t0x7BC7\n0x462B\t0x504F\n0x462C\t0x7247\n0x462D\t0x9A97\n0x462E\t0x98D8\n0x462F\t0x6F02\n0x4630\t0x74E2\n0x4631\t0x7968\n0x4632\t0x6487\n0x4633\t0x77A5\n0x4634\t0x62FC\n0x4635\t0x9891\n0x4636\t0x8D2B\n0x4637\t0x54C1\n0x4638\t0x8058\n0x4639\t0x4E52\n0x463A\t0x576A\n0x463B\t0x82F9\n0x463C\t0x840D\n0x463D\t0x5E73\n0x463E\t0x51ED\n0x463F\t0x74F6\n0x4640\t0x8BC4\n0x4641\t0x5C4F\n0x4642\t0x5761\n0x4643\t0x6CFC\n0x4644\t0x9887\n0x4645\t0x5A46\n0x4646\t0x7834\n0x4647\t0x9B44\n0x4648\t0x8FEB\n0x4649\t0x7C95\n0x464A\t0x5256\n0x464B\t0x6251\n0x464C\t0x94FA\n0x464D\t0x4EC6\n0x464E\t0x8386\n0x464F\t0x8461\n0x4650\t0x83E9\n0x4651\t0x84B2\n0x4652\t0x57D4\n0x4653\t0x6734\n0x4654\t0x5703\n0x4655\t0x666E\n0x4656\t0x6D66\n0x4657\t0x8C31\n0x4658\t0x66DD\n0x4659\t0x7011\n0x465A\t0x671F\n0x465B\t0x6B3A\n0x465C\t0x6816\n0x465D\t0x621A\n0x465E\t0x59BB\n0x465F\t0x4E03\n0x4660\t0x51C4\n0x4661\t0x6F06\n0x4662\t0x67D2\n0x4663\t0x6C8F\n0x4664\t0x5176\n0x4665\t0x68CB\n0x4666\t0x5947\n0x4667\t0x6B67\n0x4668\t0x7566\n0x4669\t0x5D0E\n0x466A\t0x8110\n0x466B\t0x9F50\n0x466C\t0x65D7\n0x466D\t0x7948\n0x466E\t0x7941\n0x466F\t0x9A91\n0x4670\t0x8D77\n0x4671\t0x5C82\n0x4672\t0x4E5E\n0x4673\t0x4F01\n0x4674\t0x542F\n0x4675\t0x5951\n0x4676\t0x780C\n0x4677\t0x5668\n0x4678\t0x6C14\n0x4679\t0x8FC4\n0x467A\t0x5F03\n0x467B\t0x6C7D\n0x467C\t0x6CE3\n0x467D\t0x8BAB\n0x467E\t0x6390\n0x4721\t0x6070\n0x4722\t0x6D3D\n0x4723\t0x7275\n0x4724\t0x6266\n0x4725\t0x948E\n0x4726\t0x94C5\n0x4727\t0x5343\n0x4728\t0x8FC1\n0x4729\t0x7B7E\n0x472A\t0x4EDF\n0x472B\t0x8C26\n0x472C\t0x4E7E\n0x472D\t0x9ED4\n0x472E\t0x94B1\n0x472F\t0x94B3\n0x4730\t0x524D\n0x4731\t0x6F5C\n0x4732\t0x9063\n0x4733\t0x6D45\n0x4734\t0x8C34\n0x4735\t0x5811\n0x4736\t0x5D4C\n0x4737\t0x6B20\n0x4738\t0x6B49\n0x4739\t0x67AA\n0x473A\t0x545B\n0x473B\t0x8154\n0x473C\t0x7F8C\n0x473D\t0x5899\n0x473E\t0x8537\n0x473F\t0x5F3A\n0x4740\t0x62A2\n0x4741\t0x6A47\n0x4742\t0x9539\n0x4743\t0x6572\n0x4744\t0x6084\n0x4745\t0x6865\n0x4746\t0x77A7\n0x4747\t0x4E54\n0x4748\t0x4FA8\n0x4749\t0x5DE7\n0x474A\t0x9798\n0x474B\t0x64AC\n0x474C\t0x7FD8\n0x474D\t0x5CED\n0x474E\t0x4FCF\n0x474F\t0x7A8D\n0x4750\t0x5207\n0x4751\t0x8304\n0x4752\t0x4E14\n0x4753\t0x602F\n0x4754\t0x7A83\n0x4755\t0x94A6\n0x4756\t0x4FB5\n0x4757\t0x4EB2\n0x4758\t0x79E6\n0x4759\t0x7434\n0x475A\t0x52E4\n0x475B\t0x82B9\n0x475C\t0x64D2\n0x475D\t0x79BD\n0x475E\t0x5BDD\n0x475F\t0x6C81\n0x4760\t0x9752\n0x4761\t0x8F7B\n0x4762\t0x6C22\n0x4763\t0x503E\n0x4764\t0x537F\n0x4765\t0x6E05\n0x4766\t0x64CE\n0x4767\t0x6674\n0x4768\t0x6C30\n0x4769\t0x60C5\n0x476A\t0x9877\n0x476B\t0x8BF7\n0x476C\t0x5E86\n0x476D\t0x743C\n0x476E\t0x7A77\n0x476F\t0x79CB\n0x4770\t0x4E18\n0x4771\t0x90B1\n0x4772\t0x7403\n0x4773\t0x6C42\n0x4774\t0x56DA\n0x4775\t0x914B\n0x4776\t0x6CC5\n0x4777\t0x8D8B\n0x4778\t0x533A\n0x4779\t0x86C6\n0x477A\t0x66F2\n0x477B\t0x8EAF\n0x477C\t0x5C48\n0x477D\t0x9A71\n0x477E\t0x6E20\n0x4821\t0x53D6\n0x4822\t0x5A36\n0x4823\t0x9F8B\n0x4824\t0x8DA3\n0x4825\t0x53BB\n0x4826\t0x5708\n0x4827\t0x98A7\n0x4828\t0x6743\n0x4829\t0x919B\n0x482A\t0x6CC9\n0x482B\t0x5168\n0x482C\t0x75CA\n0x482D\t0x62F3\n0x482E\t0x72AC\n0x482F\t0x5238\n0x4830\t0x529D\n0x4831\t0x7F3A\n0x4832\t0x7094\n0x4833\t0x7638\n0x4834\t0x5374\n0x4835\t0x9E4A\n0x4836\t0x69B7\n0x4837\t0x786E\n0x4838\t0x96C0\n0x4839\t0x88D9\n0x483A\t0x7FA4\n0x483B\t0x7136\n0x483C\t0x71C3\n0x483D\t0x5189\n0x483E\t0x67D3\n0x483F\t0x74E4\n0x4840\t0x58E4\n0x4841\t0x6518\n0x4842\t0x56B7\n0x4843\t0x8BA9\n0x4844\t0x9976\n0x4845\t0x6270\n0x4846\t0x7ED5\n0x4847\t0x60F9\n0x4848\t0x70ED\n0x4849\t0x58EC\n0x484A\t0x4EC1\n0x484B\t0x4EBA\n0x484C\t0x5FCD\n0x484D\t0x97E7\n0x484E\t0x4EFB\n0x484F\t0x8BA4\n0x4850\t0x5203\n0x4851\t0x598A\n0x4852\t0x7EAB\n0x4853\t0x6254\n0x4854\t0x4ECD\n0x4855\t0x65E5\n0x4856\t0x620E\n0x4857\t0x8338\n0x4858\t0x84C9\n0x4859\t0x8363\n0x485A\t0x878D\n0x485B\t0x7194\n0x485C\t0x6EB6\n0x485D\t0x5BB9\n0x485E\t0x7ED2\n0x485F\t0x5197\n0x4860\t0x63C9\n0x4861\t0x67D4\n0x4862\t0x8089\n0x4863\t0x8339\n0x4864\t0x8815\n0x4865\t0x5112\n0x4866\t0x5B7A\n0x4867\t0x5982\n0x4868\t0x8FB1\n0x4869\t0x4E73\n0x486A\t0x6C5D\n0x486B\t0x5165\n0x486C\t0x8925\n0x486D\t0x8F6F\n0x486E\t0x962E\n0x486F\t0x854A\n0x4870\t0x745E\n0x4871\t0x9510\n0x4872\t0x95F0\n0x4873\t0x6DA6\n0x4874\t0x82E5\n0x4875\t0x5F31\n0x4876\t0x6492\n0x4877\t0x6D12\n0x4878\t0x8428\n0x4879\t0x816E\n0x487A\t0x9CC3\n0x487B\t0x585E\n0x487C\t0x8D5B\n0x487D\t0x4E09\n0x487E\t0x53C1\n0x4921\t0x4F1E\n0x4922\t0x6563\n0x4923\t0x6851\n0x4924\t0x55D3\n0x4925\t0x4E27\n0x4926\t0x6414\n0x4927\t0x9A9A\n0x4928\t0x626B\n0x4929\t0x5AC2\n0x492A\t0x745F\n0x492B\t0x8272\n0x492C\t0x6DA9\n0x492D\t0x68EE\n0x492E\t0x50E7\n0x492F\t0x838E\n0x4930\t0x7802\n0x4931\t0x6740\n0x4932\t0x5239\n0x4933\t0x6C99\n0x4934\t0x7EB1\n0x4935\t0x50BB\n0x4936\t0x5565\n0x4937\t0x715E\n0x4938\t0x7B5B\n0x4939\t0x6652\n0x493A\t0x73CA\n0x493B\t0x82EB\n0x493C\t0x6749\n0x493D\t0x5C71\n0x493E\t0x5220\n0x493F\t0x717D\n0x4940\t0x886B\n0x4941\t0x95EA\n0x4942\t0x9655\n0x4943\t0x64C5\n0x4944\t0x8D61\n0x4945\t0x81B3\n0x4946\t0x5584\n0x4947\t0x6C55\n0x4948\t0x6247\n0x4949\t0x7F2E\n0x494A\t0x5892\n0x494B\t0x4F24\n0x494C\t0x5546\n0x494D\t0x8D4F\n0x494E\t0x664C\n0x494F\t0x4E0A\n0x4950\t0x5C1A\n0x4951\t0x88F3\n0x4952\t0x68A2\n0x4953\t0x634E\n0x4954\t0x7A0D\n0x4955\t0x70E7\n0x4956\t0x828D\n0x4957\t0x52FA\n0x4958\t0x97F6\n0x4959\t0x5C11\n0x495A\t0x54E8\n0x495B\t0x90B5\n0x495C\t0x7ECD\n0x495D\t0x5962\n0x495E\t0x8D4A\n0x495F\t0x86C7\n0x4960\t0x820C\n0x4961\t0x820D\n0x4962\t0x8D66\n0x4963\t0x6444\n0x4964\t0x5C04\n0x4965\t0x6151\n0x4966\t0x6D89\n0x4967\t0x793E\n0x4968\t0x8BBE\n0x4969\t0x7837\n0x496A\t0x7533\n0x496B\t0x547B\n0x496C\t0x4F38\n0x496D\t0x8EAB\n0x496E\t0x6DF1\n0x496F\t0x5A20\n0x4970\t0x7EC5\n0x4971\t0x795E\n0x4972\t0x6C88\n0x4973\t0x5BA1\n0x4974\t0x5A76\n0x4975\t0x751A\n0x4976\t0x80BE\n0x4977\t0x614E\n0x4978\t0x6E17\n0x4979\t0x58F0\n0x497A\t0x751F\n0x497B\t0x7525\n0x497C\t0x7272\n0x497D\t0x5347\n0x497E\t0x7EF3\n0x4A21\t0x7701\n0x4A22\t0x76DB\n0x4A23\t0x5269\n0x4A24\t0x80DC\n0x4A25\t0x5723\n0x4A26\t0x5E08\n0x4A27\t0x5931\n0x4A28\t0x72EE\n0x4A29\t0x65BD\n0x4A2A\t0x6E7F\n0x4A2B\t0x8BD7\n0x4A2C\t0x5C38\n0x4A2D\t0x8671\n0x4A2E\t0x5341\n0x4A2F\t0x77F3\n0x4A30\t0x62FE\n0x4A31\t0x65F6\n0x4A32\t0x4EC0\n0x4A33\t0x98DF\n0x4A34\t0x8680\n0x4A35\t0x5B9E\n0x4A36\t0x8BC6\n0x4A37\t0x53F2\n0x4A38\t0x77E2\n0x4A39\t0x4F7F\n0x4A3A\t0x5C4E\n0x4A3B\t0x9A76\n0x4A3C\t0x59CB\n0x4A3D\t0x5F0F\n0x4A3E\t0x793A\n0x4A3F\t0x58EB\n0x4A40\t0x4E16\n0x4A41\t0x67FF\n0x4A42\t0x4E8B\n0x4A43\t0x62ED\n0x4A44\t0x8A93\n0x4A45\t0x901D\n0x4A46\t0x52BF\n0x4A47\t0x662F\n0x4A48\t0x55DC\n0x4A49\t0x566C\n0x4A4A\t0x9002\n0x4A4B\t0x4ED5\n0x4A4C\t0x4F8D\n0x4A4D\t0x91CA\n0x4A4E\t0x9970\n0x4A4F\t0x6C0F\n0x4A50\t0x5E02\n0x4A51\t0x6043\n0x4A52\t0x5BA4\n0x4A53\t0x89C6\n0x4A54\t0x8BD5\n0x4A55\t0x6536\n0x4A56\t0x624B\n0x4A57\t0x9996\n0x4A58\t0x5B88\n0x4A59\t0x5BFF\n0x4A5A\t0x6388\n0x4A5B\t0x552E\n0x4A5C\t0x53D7\n0x4A5D\t0x7626\n0x4A5E\t0x517D\n0x4A5F\t0x852C\n0x4A60\t0x67A2\n0x4A61\t0x68B3\n0x4A62\t0x6B8A\n0x4A63\t0x6292\n0x4A64\t0x8F93\n0x4A65\t0x53D4\n0x4A66\t0x8212\n0x4A67\t0x6DD1\n0x4A68\t0x758F\n0x4A69\t0x4E66\n0x4A6A\t0x8D4E\n0x4A6B\t0x5B70\n0x4A6C\t0x719F\n0x4A6D\t0x85AF\n0x4A6E\t0x6691\n0x4A6F\t0x66D9\n0x4A70\t0x7F72\n0x4A71\t0x8700\n0x4A72\t0x9ECD\n0x4A73\t0x9F20\n0x4A74\t0x5C5E\n0x4A75\t0x672F\n0x4A76\t0x8FF0\n0x4A77\t0x6811\n0x4A78\t0x675F\n0x4A79\t0x620D\n0x4A7A\t0x7AD6\n0x4A7B\t0x5885\n0x4A7C\t0x5EB6\n0x4A7D\t0x6570\n0x4A7E\t0x6F31\n0x4B21\t0x6055\n0x4B22\t0x5237\n0x4B23\t0x800D\n0x4B24\t0x6454\n0x4B25\t0x8870\n0x4B26\t0x7529\n0x4B27\t0x5E05\n0x4B28\t0x6813\n0x4B29\t0x62F4\n0x4B2A\t0x971C\n0x4B2B\t0x53CC\n0x4B2C\t0x723D\n0x4B2D\t0x8C01\n0x4B2E\t0x6C34\n0x4B2F\t0x7761\n0x4B30\t0x7A0E\n0x4B31\t0x542E\n0x4B32\t0x77AC\n0x4B33\t0x987A\n0x4B34\t0x821C\n0x4B35\t0x8BF4\n0x4B36\t0x7855\n0x4B37\t0x6714\n0x4B38\t0x70C1\n0x4B39\t0x65AF\n0x4B3A\t0x6495\n0x4B3B\t0x5636\n0x4B3C\t0x601D\n0x4B3D\t0x79C1\n0x4B3E\t0x53F8\n0x4B3F\t0x4E1D\n0x4B40\t0x6B7B\n0x4B41\t0x8086\n0x4B42\t0x5BFA\n0x4B43\t0x55E3\n0x4B44\t0x56DB\n0x4B45\t0x4F3A\n0x4B46\t0x4F3C\n0x4B47\t0x9972\n0x4B48\t0x5DF3\n0x4B49\t0x677E\n0x4B4A\t0x8038\n0x4B4B\t0x6002\n0x4B4C\t0x9882\n0x4B4D\t0x9001\n0x4B4E\t0x5B8B\n0x4B4F\t0x8BBC\n0x4B50\t0x8BF5\n0x4B51\t0x641C\n0x4B52\t0x8258\n0x4B53\t0x64DE\n0x4B54\t0x55FD\n0x4B55\t0x82CF\n0x4B56\t0x9165\n0x4B57\t0x4FD7\n0x4B58\t0x7D20\n0x4B59\t0x901F\n0x4B5A\t0x7C9F\n0x4B5B\t0x50F3\n0x4B5C\t0x5851\n0x4B5D\t0x6EAF\n0x4B5E\t0x5BBF\n0x4B5F\t0x8BC9\n0x4B60\t0x8083\n0x4B61\t0x9178\n0x4B62\t0x849C\n0x4B63\t0x7B97\n0x4B64\t0x867D\n0x4B65\t0x968B\n0x4B66\t0x968F\n0x4B67\t0x7EE5\n0x4B68\t0x9AD3\n0x4B69\t0x788E\n0x4B6A\t0x5C81\n0x4B6B\t0x7A57\n0x4B6C\t0x9042\n0x4B6D\t0x96A7\n0x4B6E\t0x795F\n0x4B6F\t0x5B59\n0x4B70\t0x635F\n0x4B71\t0x7B0B\n0x4B72\t0x84D1\n0x4B73\t0x68AD\n0x4B74\t0x5506\n0x4B75\t0x7F29\n0x4B76\t0x7410\n0x4B77\t0x7D22\n0x4B78\t0x9501\n0x4B79\t0x6240\n0x4B7A\t0x584C\n0x4B7B\t0x4ED6\n0x4B7C\t0x5B83\n0x4B7D\t0x5979\n0x4B7E\t0x5854\n0x4C21\t0x736D\n0x4C22\t0x631E\n0x4C23\t0x8E4B\n0x4C24\t0x8E0F\n0x4C25\t0x80CE\n0x4C26\t0x82D4\n0x4C27\t0x62AC\n0x4C28\t0x53F0\n0x4C29\t0x6CF0\n0x4C2A\t0x915E\n0x4C2B\t0x592A\n0x4C2C\t0x6001\n0x4C2D\t0x6C70\n0x4C2E\t0x574D\n0x4C2F\t0x644A\n0x4C30\t0x8D2A\n0x4C31\t0x762B\n0x4C32\t0x6EE9\n0x4C33\t0x575B\n0x4C34\t0x6A80\n0x4C35\t0x75F0\n0x4C36\t0x6F6D\n0x4C37\t0x8C2D\n0x4C38\t0x8C08\n0x4C39\t0x5766\n0x4C3A\t0x6BEF\n0x4C3B\t0x8892\n0x4C3C\t0x78B3\n0x4C3D\t0x63A2\n0x4C3E\t0x53F9\n0x4C3F\t0x70AD\n0x4C40\t0x6C64\n0x4C41\t0x5858\n0x4C42\t0x642A\n0x4C43\t0x5802\n0x4C44\t0x68E0\n0x4C45\t0x819B\n0x4C46\t0x5510\n0x4C47\t0x7CD6\n0x4C48\t0x5018\n0x4C49\t0x8EBA\n0x4C4A\t0x6DCC\n0x4C4B\t0x8D9F\n0x4C4C\t0x70EB\n0x4C4D\t0x638F\n0x4C4E\t0x6D9B\n0x4C4F\t0x6ED4\n0x4C50\t0x7EE6\n0x4C51\t0x8404\n0x4C52\t0x6843\n0x4C53\t0x9003\n0x4C54\t0x6DD8\n0x4C55\t0x9676\n0x4C56\t0x8BA8\n0x4C57\t0x5957\n0x4C58\t0x7279\n0x4C59\t0x85E4\n0x4C5A\t0x817E\n0x4C5B\t0x75BC\n0x4C5C\t0x8A8A\n0x4C5D\t0x68AF\n0x4C5E\t0x5254\n0x4C5F\t0x8E22\n0x4C60\t0x9511\n0x4C61\t0x63D0\n0x4C62\t0x9898\n0x4C63\t0x8E44\n0x4C64\t0x557C\n0x4C65\t0x4F53\n0x4C66\t0x66FF\n0x4C67\t0x568F\n0x4C68\t0x60D5\n0x4C69\t0x6D95\n0x4C6A\t0x5243\n0x4C6B\t0x5C49\n0x4C6C\t0x5929\n0x4C6D\t0x6DFB\n0x4C6E\t0x586B\n0x4C6F\t0x7530\n0x4C70\t0x751C\n0x4C71\t0x606C\n0x4C72\t0x8214\n0x4C73\t0x8146\n0x4C74\t0x6311\n0x4C75\t0x6761\n0x4C76\t0x8FE2\n0x4C77\t0x773A\n0x4C78\t0x8DF3\n0x4C79\t0x8D34\n0x4C7A\t0x94C1\n0x4C7B\t0x5E16\n0x4C7C\t0x5385\n0x4C7D\t0x542C\n0x4C7E\t0x70C3\n0x4D21\t0x6C40\n0x4D22\t0x5EF7\n0x4D23\t0x505C\n0x4D24\t0x4EAD\n0x4D25\t0x5EAD\n0x4D26\t0x633A\n0x4D27\t0x8247\n0x4D28\t0x901A\n0x4D29\t0x6850\n0x4D2A\t0x916E\n0x4D2B\t0x77B3\n0x4D2C\t0x540C\n0x4D2D\t0x94DC\n0x4D2E\t0x5F64\n0x4D2F\t0x7AE5\n0x4D30\t0x6876\n0x4D31\t0x6345\n0x4D32\t0x7B52\n0x4D33\t0x7EDF\n0x4D34\t0x75DB\n0x4D35\t0x5077\n0x4D36\t0x6295\n0x4D37\t0x5934\n0x4D38\t0x900F\n0x4D39\t0x51F8\n0x4D3A\t0x79C3\n0x4D3B\t0x7A81\n0x4D3C\t0x56FE\n0x4D3D\t0x5F92\n0x4D3E\t0x9014\n0x4D3F\t0x6D82\n0x4D40\t0x5C60\n0x4D41\t0x571F\n0x4D42\t0x5410\n0x4D43\t0x5154\n0x4D44\t0x6E4D\n0x4D45\t0x56E2\n0x4D46\t0x63A8\n0x4D47\t0x9893\n0x4D48\t0x817F\n0x4D49\t0x8715\n0x4D4A\t0x892A\n0x4D4B\t0x9000\n0x4D4C\t0x541E\n0x4D4D\t0x5C6F\n0x4D4E\t0x81C0\n0x4D4F\t0x62D6\n0x4D50\t0x6258\n0x4D51\t0x8131\n0x4D52\t0x9E35\n0x4D53\t0x9640\n0x4D54\t0x9A6E\n0x4D55\t0x9A7C\n0x4D56\t0x692D\n0x4D57\t0x59A5\n0x4D58\t0x62D3\n0x4D59\t0x553E\n0x4D5A\t0x6316\n0x4D5B\t0x54C7\n0x4D5C\t0x86D9\n0x4D5D\t0x6D3C\n0x4D5E\t0x5A03\n0x4D5F\t0x74E6\n0x4D60\t0x889C\n0x4D61\t0x6B6A\n0x4D62\t0x5916\n0x4D63\t0x8C4C\n0x4D64\t0x5F2F\n0x4D65\t0x6E7E\n0x4D66\t0x73A9\n0x4D67\t0x987D\n0x4D68\t0x4E38\n0x4D69\t0x70F7\n0x4D6A\t0x5B8C\n0x4D6B\t0x7897\n0x4D6C\t0x633D\n0x4D6D\t0x665A\n0x4D6E\t0x7696\n0x4D6F\t0x60CB\n0x4D70\t0x5B9B\n0x4D71\t0x5A49\n0x4D72\t0x4E07\n0x4D73\t0x8155\n0x4D74\t0x6C6A\n0x4D75\t0x738B\n0x4D76\t0x4EA1\n0x4D77\t0x6789\n0x4D78\t0x7F51\n0x4D79\t0x5F80\n0x4D7A\t0x65FA\n0x4D7B\t0x671B\n0x4D7C\t0x5FD8\n0x4D7D\t0x5984\n0x4D7E\t0x5A01\n0x4E21\t0x5DCD\n0x4E22\t0x5FAE\n0x4E23\t0x5371\n0x4E24\t0x97E6\n0x4E25\t0x8FDD\n0x4E26\t0x6845\n0x4E27\t0x56F4\n0x4E28\t0x552F\n0x4E29\t0x60DF\n0x4E2A\t0x4E3A\n0x4E2B\t0x6F4D\n0x4E2C\t0x7EF4\n0x4E2D\t0x82C7\n0x4E2E\t0x840E\n0x4E2F\t0x59D4\n0x4E30\t0x4F1F\n0x4E31\t0x4F2A\n0x4E32\t0x5C3E\n0x4E33\t0x7EAC\n0x4E34\t0x672A\n0x4E35\t0x851A\n0x4E36\t0x5473\n0x4E37\t0x754F\n0x4E38\t0x80C3\n0x4E39\t0x5582\n0x4E3A\t0x9B4F\n0x4E3B\t0x4F4D\n0x4E3C\t0x6E2D\n0x4E3D\t0x8C13\n0x4E3E\t0x5C09\n0x4E3F\t0x6170\n0x4E40\t0x536B\n0x4E41\t0x761F\n0x4E42\t0x6E29\n0x4E43\t0x868A\n0x4E44\t0x6587\n0x4E45\t0x95FB\n0x4E46\t0x7EB9\n0x4E47\t0x543B\n0x4E48\t0x7A33\n0x4E49\t0x7D0A\n0x4E4A\t0x95EE\n0x4E4B\t0x55E1\n0x4E4C\t0x7FC1\n0x4E4D\t0x74EE\n0x4E4E\t0x631D\n0x4E4F\t0x8717\n0x4E50\t0x6DA1\n0x4E51\t0x7A9D\n0x4E52\t0x6211\n0x4E53\t0x65A1\n0x4E54\t0x5367\n0x4E55\t0x63E1\n0x4E56\t0x6C83\n0x4E57\t0x5DEB\n0x4E58\t0x545C\n0x4E59\t0x94A8\n0x4E5A\t0x4E4C\n0x4E5B\t0x6C61\n0x4E5C\t0x8BEC\n0x4E5D\t0x5C4B\n0x4E5E\t0x65E0\n0x4E5F\t0x829C\n0x4E60\t0x68A7\n0x4E61\t0x543E\n0x4E62\t0x5434\n0x4E63\t0x6BCB\n0x4E64\t0x6B66\n0x4E65\t0x4E94\n0x4E66\t0x6342\n0x4E67\t0x5348\n0x4E68\t0x821E\n0x4E69\t0x4F0D\n0x4E6A\t0x4FAE\n0x4E6B\t0x575E\n0x4E6C\t0x620A\n0x4E6D\t0x96FE\n0x4E6E\t0x6664\n0x4E6F\t0x7269\n0x4E70\t0x52FF\n0x4E71\t0x52A1\n0x4E72\t0x609F\n0x4E73\t0x8BEF\n0x4E74\t0x6614\n0x4E75\t0x7199\n0x4E76\t0x6790\n0x4E77\t0x897F\n0x4E78\t0x7852\n0x4E79\t0x77FD\n0x4E7A\t0x6670\n0x4E7B\t0x563B\n0x4E7C\t0x5438\n0x4E7D\t0x9521\n0x4E7E\t0x727A\n0x4F21\t0x7A00\n0x4F22\t0x606F\n0x4F23\t0x5E0C\n0x4F24\t0x6089\n0x4F25\t0x819D\n0x4F26\t0x5915\n0x4F27\t0x60DC\n0x4F28\t0x7184\n0x4F29\t0x70EF\n0x4F2A\t0x6EAA\n0x4F2B\t0x6C50\n0x4F2C\t0x7280\n0x4F2D\t0x6A84\n0x4F2E\t0x88AD\n0x4F2F\t0x5E2D\n0x4F30\t0x4E60\n0x4F31\t0x5AB3\n0x4F32\t0x559C\n0x4F33\t0x94E3\n0x4F34\t0x6D17\n0x4F35\t0x7CFB\n0x4F36\t0x9699\n0x4F37\t0x620F\n0x4F38\t0x7EC6\n0x4F39\t0x778E\n0x4F3A\t0x867E\n0x4F3B\t0x5323\n0x4F3C\t0x971E\n0x4F3D\t0x8F96\n0x4F3E\t0x6687\n0x4F3F\t0x5CE1\n0x4F40\t0x4FA0\n0x4F41\t0x72ED\n0x4F42\t0x4E0B\n0x4F43\t0x53A6\n0x4F44\t0x590F\n0x4F45\t0x5413\n0x4F46\t0x6380\n0x4F47\t0x9528\n0x4F48\t0x5148\n0x4F49\t0x4ED9\n0x4F4A\t0x9C9C\n0x4F4B\t0x7EA4\n0x4F4C\t0x54B8\n0x4F4D\t0x8D24\n0x4F4E\t0x8854\n0x4F4F\t0x8237\n0x4F50\t0x95F2\n0x4F51\t0x6D8E\n0x4F52\t0x5F26\n0x4F53\t0x5ACC\n0x4F54\t0x663E\n0x4F55\t0x9669\n0x4F56\t0x73B0\n0x4F57\t0x732E\n0x4F58\t0x53BF\n0x4F59\t0x817A\n0x4F5A\t0x9985\n0x4F5B\t0x7FA1\n0x4F5C\t0x5BAA\n0x4F5D\t0x9677\n0x4F5E\t0x9650\n0x4F5F\t0x7EBF\n0x4F60\t0x76F8\n0x4F61\t0x53A2\n0x4F62\t0x9576\n0x4F63\t0x9999\n0x4F64\t0x7BB1\n0x4F65\t0x8944\n0x4F66\t0x6E58\n0x4F67\t0x4E61\n0x4F68\t0x7FD4\n0x4F69\t0x7965\n0x4F6A\t0x8BE6\n0x4F6B\t0x60F3\n0x4F6C\t0x54CD\n0x4F6D\t0x4EAB\n0x4F6E\t0x9879\n0x4F6F\t0x5DF7\n0x4F70\t0x6A61\n0x4F71\t0x50CF\n0x4F72\t0x5411\n0x4F73\t0x8C61\n0x4F74\t0x8427\n0x4F75\t0x785D\n0x4F76\t0x9704\n0x4F77\t0x524A\n0x4F78\t0x54EE\n0x4F79\t0x56A3\n0x4F7A\t0x9500\n0x4F7B\t0x6D88\n0x4F7C\t0x5BB5\n0x4F7D\t0x6DC6\n0x4F7E\t0x6653\n0x5021\t0x5C0F\n0x5022\t0x5B5D\n0x5023\t0x6821\n0x5024\t0x8096\n0x5025\t0x5578\n0x5026\t0x7B11\n0x5027\t0x6548\n0x5028\t0x6954\n0x5029\t0x4E9B\n0x502A\t0x6B47\n0x502B\t0x874E\n0x502C\t0x978B\n0x502D\t0x534F\n0x502E\t0x631F\n0x502F\t0x643A\n0x5030\t0x90AA\n0x5031\t0x659C\n0x5032\t0x80C1\n0x5033\t0x8C10\n0x5034\t0x5199\n0x5035\t0x68B0\n0x5036\t0x5378\n0x5037\t0x87F9\n0x5038\t0x61C8\n0x5039\t0x6CC4\n0x503A\t0x6CFB\n0x503B\t0x8C22\n0x503C\t0x5C51\n0x503D\t0x85AA\n0x503E\t0x82AF\n0x503F\t0x950C\n0x5040\t0x6B23\n0x5041\t0x8F9B\n0x5042\t0x65B0\n0x5043\t0x5FFB\n0x5044\t0x5FC3\n0x5045\t0x4FE1\n0x5046\t0x8845\n0x5047\t0x661F\n0x5048\t0x8165\n0x5049\t0x7329\n0x504A\t0x60FA\n0x504B\t0x5174\n0x504C\t0x5211\n0x504D\t0x578B\n0x504E\t0x5F62\n0x504F\t0x90A2\n0x5050\t0x884C\n0x5051\t0x9192\n0x5052\t0x5E78\n0x5053\t0x674F\n0x5054\t0x6027\n0x5055\t0x59D3\n0x5056\t0x5144\n0x5057\t0x51F6\n0x5058\t0x80F8\n0x5059\t0x5308\n0x505A\t0x6C79\n0x505B\t0x96C4\n0x505C\t0x718A\n0x505D\t0x4F11\n0x505E\t0x4FEE\n0x505F\t0x7F9E\n0x5060\t0x673D\n0x5061\t0x55C5\n0x5062\t0x9508\n0x5063\t0x79C0\n0x5064\t0x8896\n0x5065\t0x7EE3\n0x5066\t0x589F\n0x5067\t0x620C\n0x5068\t0x9700\n0x5069\t0x865A\n0x506A\t0x5618\n0x506B\t0x987B\n0x506C\t0x5F90\n0x506D\t0x8BB8\n0x506E\t0x84C4\n0x506F\t0x9157\n0x5070\t0x53D9\n0x5071\t0x65ED\n0x5072\t0x5E8F\n0x5073\t0x755C\n0x5074\t0x6064\n0x5075\t0x7D6E\n0x5076\t0x5A7F\n0x5077\t0x7EEA\n0x5078\t0x7EED\n0x5079\t0x8F69\n0x507A\t0x55A7\n0x507B\t0x5BA3\n0x507C\t0x60AC\n0x507D\t0x65CB\n0x507E\t0x7384\n0x5121\t0x9009\n0x5122\t0x7663\n0x5123\t0x7729\n0x5124\t0x7EDA\n0x5125\t0x9774\n0x5126\t0x859B\n0x5127\t0x5B66\n0x5128\t0x7A74\n0x5129\t0x96EA\n0x512A\t0x8840\n0x512B\t0x52CB\n0x512C\t0x718F\n0x512D\t0x5FAA\n0x512E\t0x65EC\n0x512F\t0x8BE2\n0x5130\t0x5BFB\n0x5131\t0x9A6F\n0x5132\t0x5DE1\n0x5133\t0x6B89\n0x5134\t0x6C5B\n0x5135\t0x8BAD\n0x5136\t0x8BAF\n0x5137\t0x900A\n0x5138\t0x8FC5\n0x5139\t0x538B\n0x513A\t0x62BC\n0x513B\t0x9E26\n0x513C\t0x9E2D\n0x513D\t0x5440\n0x513E\t0x4E2B\n0x513F\t0x82BD\n0x5140\t0x7259\n0x5141\t0x869C\n0x5142\t0x5D16\n0x5143\t0x8859\n0x5144\t0x6DAF\n0x5145\t0x96C5\n0x5146\t0x54D1\n0x5147\t0x4E9A\n0x5148\t0x8BB6\n0x5149\t0x7109\n0x514A\t0x54BD\n0x514B\t0x9609\n0x514C\t0x70DF\n0x514D\t0x6DF9\n0x514E\t0x76D0\n0x514F\t0x4E25\n0x5150\t0x7814\n0x5151\t0x8712\n0x5152\t0x5CA9\n0x5153\t0x5EF6\n0x5154\t0x8A00\n0x5155\t0x989C\n0x5156\t0x960E\n0x5157\t0x708E\n0x5158\t0x6CBF\n0x5159\t0x5944\n0x515A\t0x63A9\n0x515B\t0x773C\n0x515C\t0x884D\n0x515D\t0x6F14\n0x515E\t0x8273\n0x515F\t0x5830\n0x5160\t0x71D5\n0x5161\t0x538C\n0x5162\t0x781A\n0x5163\t0x96C1\n0x5164\t0x5501\n0x5165\t0x5F66\n0x5166\t0x7130\n0x5167\t0x5BB4\n0x5168\t0x8C1A\n0x5169\t0x9A8C\n0x516A\t0x6B83\n0x516B\t0x592E\n0x516C\t0x9E2F\n0x516D\t0x79E7\n0x516E\t0x6768\n0x516F\t0x626C\n0x5170\t0x4F6F\n0x5171\t0x75A1\n0x5172\t0x7F8A\n0x5173\t0x6D0B\n0x5174\t0x9633\n0x5175\t0x6C27\n0x5176\t0x4EF0\n0x5177\t0x75D2\n0x5178\t0x517B\n0x5179\t0x6837\n0x517A\t0x6F3E\n0x517B\t0x9080\n0x517C\t0x8170\n0x517D\t0x5996\n0x517E\t0x7476\n0x5221\t0x6447\n0x5222\t0x5C27\n0x5223\t0x9065\n0x5224\t0x7A91\n0x5225\t0x8C23\n0x5226\t0x59DA\n0x5227\t0x54AC\n0x5228\t0x8200\n0x5229\t0x836F\n0x522A\t0x8981\n0x522B\t0x8000\n0x522C\t0x6930\n0x522D\t0x564E\n0x522E\t0x8036\n0x522F\t0x7237\n0x5230\t0x91CE\n0x5231\t0x51B6\n0x5232\t0x4E5F\n0x5233\t0x9875\n0x5234\t0x6396\n0x5235\t0x4E1A\n0x5236\t0x53F6\n0x5237\t0x66F3\n0x5238\t0x814B\n0x5239\t0x591C\n0x523A\t0x6DB2\n0x523B\t0x4E00\n0x523C\t0x58F9\n0x523D\t0x533B\n0x523E\t0x63D6\n0x523F\t0x94F1\n0x5240\t0x4F9D\n0x5241\t0x4F0A\n0x5242\t0x8863\n0x5243\t0x9890\n0x5244\t0x5937\n0x5245\t0x9057\n0x5246\t0x79FB\n0x5247\t0x4EEA\n0x5248\t0x80F0\n0x5249\t0x7591\n0x524A\t0x6C82\n0x524B\t0x5B9C\n0x524C\t0x59E8\n0x524D\t0x5F5D\n0x524E\t0x6905\n0x524F\t0x8681\n0x5250\t0x501A\n0x5251\t0x5DF2\n0x5252\t0x4E59\n0x5253\t0x77E3\n0x5254\t0x4EE5\n0x5255\t0x827A\n0x5256\t0x6291\n0x5257\t0x6613\n0x5258\t0x9091\n0x5259\t0x5C79\n0x525A\t0x4EBF\n0x525B\t0x5F79\n0x525C\t0x81C6\n0x525D\t0x9038\n0x525E\t0x8084\n0x525F\t0x75AB\n0x5260\t0x4EA6\n0x5261\t0x88D4\n0x5262\t0x610F\n0x5263\t0x6BC5\n0x5264\t0x5FC6\n0x5265\t0x4E49\n0x5266\t0x76CA\n0x5267\t0x6EA2\n0x5268\t0x8BE3\n0x5269\t0x8BAE\n0x526A\t0x8C0A\n0x526B\t0x8BD1\n0x526C\t0x5F02\n0x526D\t0x7FFC\n0x526E\t0x7FCC\n0x526F\t0x7ECE\n0x5270\t0x8335\n0x5271\t0x836B\n0x5272\t0x56E0\n0x5273\t0x6BB7\n0x5274\t0x97F3\n0x5275\t0x9634\n0x5276\t0x59FB\n0x5277\t0x541F\n0x5278\t0x94F6\n0x5279\t0x6DEB\n0x527A\t0x5BC5\n0x527B\t0x996E\n0x527C\t0x5C39\n0x527D\t0x5F15\n0x527E\t0x9690\n0x5321\t0x5370\n0x5322\t0x82F1\n0x5323\t0x6A31\n0x5324\t0x5A74\n0x5325\t0x9E70\n0x5326\t0x5E94\n0x5327\t0x7F28\n0x5328\t0x83B9\n0x5329\t0x8424\n0x532A\t0x8425\n0x532B\t0x8367\n0x532C\t0x8747\n0x532D\t0x8FCE\n0x532E\t0x8D62\n0x532F\t0x76C8\n0x5330\t0x5F71\n0x5331\t0x9896\n0x5332\t0x786C\n0x5333\t0x6620\n0x5334\t0x54DF\n0x5335\t0x62E5\n0x5336\t0x4F63\n0x5337\t0x81C3\n0x5338\t0x75C8\n0x5339\t0x5EB8\n0x533A\t0x96CD\n0x533B\t0x8E0A\n0x533C\t0x86F9\n0x533D\t0x548F\n0x533E\t0x6CF3\n0x533F\t0x6D8C\n0x5340\t0x6C38\n0x5341\t0x607F\n0x5342\t0x52C7\n0x5343\t0x7528\n0x5344\t0x5E7D\n0x5345\t0x4F18\n0x5346\t0x60A0\n0x5347\t0x5FE7\n0x5348\t0x5C24\n0x5349\t0x7531\n0x534A\t0x90AE\n0x534B\t0x94C0\n0x534C\t0x72B9\n0x534D\t0x6CB9\n0x534E\t0x6E38\n0x534F\t0x9149\n0x5350\t0x6709\n0x5351\t0x53CB\n0x5352\t0x53F3\n0x5353\t0x4F51\n0x5354\t0x91C9\n0x5355\t0x8BF1\n0x5356\t0x53C8\n0x5357\t0x5E7C\n0x5358\t0x8FC2\n0x5359\t0x6DE4\n0x535A\t0x4E8E\n0x535B\t0x76C2\n0x535C\t0x6986\n0x535D\t0x865E\n0x535E\t0x611A\n0x535F\t0x8206\n0x5360\t0x4F59\n0x5361\t0x4FDE\n0x5362\t0x903E\n0x5363\t0x9C7C\n0x5364\t0x6109\n0x5365\t0x6E1D\n0x5366\t0x6E14\n0x5367\t0x9685\n0x5368\t0x4E88\n0x5369\t0x5A31\n0x536A\t0x96E8\n0x536B\t0x4E0E\n0x536C\t0x5C7F\n0x536D\t0x79B9\n0x536E\t0x5B87\n0x536F\t0x8BED\n0x5370\t0x7FBD\n0x5371\t0x7389\n0x5372\t0x57DF\n0x5373\t0x828B\n0x5374\t0x90C1\n0x5375\t0x5401\n0x5376\t0x9047\n0x5377\t0x55BB\n0x5378\t0x5CEA\n0x5379\t0x5FA1\n0x537A\t0x6108\n0x537B\t0x6B32\n0x537C\t0x72F1\n0x537D\t0x80B2\n0x537E\t0x8A89\n0x5421\t0x6D74\n0x5422\t0x5BD3\n0x5423\t0x88D5\n0x5424\t0x9884\n0x5425\t0x8C6B\n0x5426\t0x9A6D\n0x5427\t0x9E33\n0x5428\t0x6E0A\n0x5429\t0x51A4\n0x542A\t0x5143\n0x542B\t0x57A3\n0x542C\t0x8881\n0x542D\t0x539F\n0x542E\t0x63F4\n0x542F\t0x8F95\n0x5430\t0x56ED\n0x5431\t0x5458\n0x5432\t0x5706\n0x5433\t0x733F\n0x5434\t0x6E90\n0x5435\t0x7F18\n0x5436\t0x8FDC\n0x5437\t0x82D1\n0x5438\t0x613F\n0x5439\t0x6028\n0x543A\t0x9662\n0x543B\t0x66F0\n0x543C\t0x7EA6\n0x543D\t0x8D8A\n0x543E\t0x8DC3\n0x543F\t0x94A5\n0x5440\t0x5CB3\n0x5441\t0x7CA4\n0x5442\t0x6708\n0x5443\t0x60A6\n0x5444\t0x9605\n0x5445\t0x8018\n0x5446\t0x4E91\n0x5447\t0x90E7\n0x5448\t0x5300\n0x5449\t0x9668\n0x544A\t0x5141\n0x544B\t0x8FD0\n0x544C\t0x8574\n0x544D\t0x915D\n0x544E\t0x6655\n0x544F\t0x97F5\n0x5450\t0x5B55\n0x5451\t0x531D\n0x5452\t0x7838\n0x5453\t0x6742\n0x5454\t0x683D\n0x5455\t0x54C9\n0x5456\t0x707E\n0x5457\t0x5BB0\n0x5458\t0x8F7D\n0x5459\t0x518D\n0x545A\t0x5728\n0x545B\t0x54B1\n0x545C\t0x6512\n0x545D\t0x6682\n0x545E\t0x8D5E\n0x545F\t0x8D43\n0x5460\t0x810F\n0x5461\t0x846C\n0x5462\t0x906D\n0x5463\t0x7CDF\n0x5464\t0x51FF\n0x5465\t0x85FB\n0x5466\t0x67A3\n0x5467\t0x65E9\n0x5468\t0x6FA1\n0x5469\t0x86A4\n0x546A\t0x8E81\n0x546B\t0x566A\n0x546C\t0x9020\n0x546D\t0x7682\n0x546E\t0x7076\n0x546F\t0x71E5\n0x5470\t0x8D23\n0x5471\t0x62E9\n0x5472\t0x5219\n0x5473\t0x6CFD\n0x5474\t0x8D3C\n0x5475\t0x600E\n0x5476\t0x589E\n0x5477\t0x618E\n0x5478\t0x66FE\n0x5479\t0x8D60\n0x547A\t0x624E\n0x547B\t0x55B3\n0x547C\t0x6E23\n0x547D\t0x672D\n0x547E\t0x8F67\n0x5521\t0x94E1\n0x5522\t0x95F8\n0x5523\t0x7728\n0x5524\t0x6805\n0x5525\t0x69A8\n0x5526\t0x548B\n0x5527\t0x4E4D\n0x5528\t0x70B8\n0x5529\t0x8BC8\n0x552A\t0x6458\n0x552B\t0x658B\n0x552C\t0x5B85\n0x552D\t0x7A84\n0x552E\t0x503A\n0x552F\t0x5BE8\n0x5530\t0x77BB\n0x5531\t0x6BE1\n0x5532\t0x8A79\n0x5533\t0x7C98\n0x5534\t0x6CBE\n0x5535\t0x76CF\n0x5536\t0x65A9\n0x5537\t0x8F97\n0x5538\t0x5D2D\n0x5539\t0x5C55\n0x553A\t0x8638\n0x553B\t0x6808\n0x553C\t0x5360\n0x553D\t0x6218\n0x553E\t0x7AD9\n0x553F\t0x6E5B\n0x5540\t0x7EFD\n0x5541\t0x6A1F\n0x5542\t0x7AE0\n0x5543\t0x5F70\n0x5544\t0x6F33\n0x5545\t0x5F20\n0x5546\t0x638C\n0x5547\t0x6DA8\n0x5548\t0x6756\n0x5549\t0x4E08\n0x554A\t0x5E10\n0x554B\t0x8D26\n0x554C\t0x4ED7\n0x554D\t0x80C0\n0x554E\t0x7634\n0x554F\t0x969C\n0x5550\t0x62DB\n0x5551\t0x662D\n0x5552\t0x627E\n0x5553\t0x6CBC\n0x5554\t0x8D75\n0x5555\t0x7167\n0x5556\t0x7F69\n0x5557\t0x5146\n0x5558\t0x8087\n0x5559\t0x53EC\n0x555A\t0x906E\n0x555B\t0x6298\n0x555C\t0x54F2\n0x555D\t0x86F0\n0x555E\t0x8F99\n0x555F\t0x8005\n0x5560\t0x9517\n0x5561\t0x8517\n0x5562\t0x8FD9\n0x5563\t0x6D59\n0x5564\t0x73CD\n0x5565\t0x659F\n0x5566\t0x771F\n0x5567\t0x7504\n0x5568\t0x7827\n0x5569\t0x81FB\n0x556A\t0x8D1E\n0x556B\t0x9488\n0x556C\t0x4FA6\n0x556D\t0x6795\n0x556E\t0x75B9\n0x556F\t0x8BCA\n0x5570\t0x9707\n0x5571\t0x632F\n0x5572\t0x9547\n0x5573\t0x9635\n0x5574\t0x84B8\n0x5575\t0x6323\n0x5576\t0x7741\n0x5577\t0x5F81\n0x5578\t0x72F0\n0x5579\t0x4E89\n0x557A\t0x6014\n0x557B\t0x6574\n0x557C\t0x62EF\n0x557D\t0x6B63\n0x557E\t0x653F\n0x5621\t0x5E27\n0x5622\t0x75C7\n0x5623\t0x90D1\n0x5624\t0x8BC1\n0x5625\t0x829D\n0x5626\t0x679D\n0x5627\t0x652F\n0x5628\t0x5431\n0x5629\t0x8718\n0x562A\t0x77E5\n0x562B\t0x80A2\n0x562C\t0x8102\n0x562D\t0x6C41\n0x562E\t0x4E4B\n0x562F\t0x7EC7\n0x5630\t0x804C\n0x5631\t0x76F4\n0x5632\t0x690D\n0x5633\t0x6B96\n0x5634\t0x6267\n0x5635\t0x503C\n0x5636\t0x4F84\n0x5637\t0x5740\n0x5638\t0x6307\n0x5639\t0x6B62\n0x563A\t0x8DBE\n0x563B\t0x53EA\n0x563C\t0x65E8\n0x563D\t0x7EB8\n0x563E\t0x5FD7\n0x563F\t0x631A\n0x5640\t0x63B7\n0x5641\t0x81F3\n0x5642\t0x81F4\n0x5643\t0x7F6E\n0x5644\t0x5E1C\n0x5645\t0x5CD9\n0x5646\t0x5236\n0x5647\t0x667A\n0x5648\t0x79E9\n0x5649\t0x7A1A\n0x564A\t0x8D28\n0x564B\t0x7099\n0x564C\t0x75D4\n0x564D\t0x6EDE\n0x564E\t0x6CBB\n0x564F\t0x7A92\n0x5650\t0x4E2D\n0x5651\t0x76C5\n0x5652\t0x5FE0\n0x5653\t0x949F\n0x5654\t0x8877\n0x5655\t0x7EC8\n0x5656\t0x79CD\n0x5657\t0x80BF\n0x5658\t0x91CD\n0x5659\t0x4EF2\n0x565A\t0x4F17\n0x565B\t0x821F\n0x565C\t0x5468\n0x565D\t0x5DDE\n0x565E\t0x6D32\n0x565F\t0x8BCC\n0x5660\t0x7CA5\n0x5661\t0x8F74\n0x5662\t0x8098\n0x5663\t0x5E1A\n0x5664\t0x5492\n0x5665\t0x76B1\n0x5666\t0x5B99\n0x5667\t0x663C\n0x5668\t0x9AA4\n0x5669\t0x73E0\n0x566A\t0x682A\n0x566B\t0x86DB\n0x566C\t0x6731\n0x566D\t0x732A\n0x566E\t0x8BF8\n0x566F\t0x8BDB\n0x5670\t0x9010\n0x5671\t0x7AF9\n0x5672\t0x70DB\n0x5673\t0x716E\n0x5674\t0x62C4\n0x5675\t0x77A9\n0x5676\t0x5631\n0x5677\t0x4E3B\n0x5678\t0x8457\n0x5679\t0x67F1\n0x567A\t0x52A9\n0x567B\t0x86C0\n0x567C\t0x8D2E\n0x567D\t0x94F8\n0x567E\t0x7B51\n0x5721\t0x4F4F\n0x5722\t0x6CE8\n0x5723\t0x795D\n0x5724\t0x9A7B\n0x5725\t0x6293\n0x5726\t0x722A\n0x5727\t0x62FD\n0x5728\t0x4E13\n0x5729\t0x7816\n0x572A\t0x8F6C\n0x572B\t0x64B0\n0x572C\t0x8D5A\n0x572D\t0x7BC6\n0x572E\t0x6869\n0x572F\t0x5E84\n0x5730\t0x88C5\n0x5731\t0x5986\n0x5732\t0x649E\n0x5733\t0x58EE\n0x5734\t0x72B6\n0x5735\t0x690E\n0x5736\t0x9525\n0x5737\t0x8FFD\n0x5738\t0x8D58\n0x5739\t0x5760\n0x573A\t0x7F00\n0x573B\t0x8C06\n0x573C\t0x51C6\n0x573D\t0x6349\n0x573E\t0x62D9\n0x573F\t0x5353\n0x5740\t0x684C\n0x5741\t0x7422\n0x5742\t0x8301\n0x5743\t0x914C\n0x5744\t0x5544\n0x5745\t0x7740\n0x5746\t0x707C\n0x5747\t0x6D4A\n0x5748\t0x5179\n0x5749\t0x54A8\n0x574A\t0x8D44\n0x574B\t0x59FF\n0x574C\t0x6ECB\n0x574D\t0x6DC4\n0x574E\t0x5B5C\n0x574F\t0x7D2B\n0x5750\t0x4ED4\n0x5751\t0x7C7D\n0x5752\t0x6ED3\n0x5753\t0x5B50\n0x5754\t0x81EA\n0x5755\t0x6E0D\n0x5756\t0x5B57\n0x5757\t0x9B03\n0x5758\t0x68D5\n0x5759\t0x8E2A\n0x575A\t0x5B97\n0x575B\t0x7EFC\n0x575C\t0x603B\n0x575D\t0x7EB5\n0x575E\t0x90B9\n0x575F\t0x8D70\n0x5760\t0x594F\n0x5761\t0x63CD\n0x5762\t0x79DF\n0x5763\t0x8DB3\n0x5764\t0x5352\n0x5765\t0x65CF\n0x5766\t0x7956\n0x5767\t0x8BC5\n0x5768\t0x963B\n0x5769\t0x7EC4\n0x576A\t0x94BB\n0x576B\t0x7E82\n0x576C\t0x5634\n0x576D\t0x9189\n0x576E\t0x6700\n0x576F\t0x7F6A\n0x5770\t0x5C0A\n0x5771\t0x9075\n0x5772\t0x6628\n0x5773\t0x5DE6\n0x5774\t0x4F50\n0x5775\t0x67DE\n0x5776\t0x505A\n0x5777\t0x4F5C\n0x5778\t0x5750\n0x5779\t0x5EA7\n0x5821\t0x4E8D\n0x5822\t0x4E0C\n0x5823\t0x5140\n0x5824\t0x4E10\n0x5825\t0x5EFF\n0x5826\t0x5345\n0x5827\t0x4E15\n0x5828\t0x4E98\n0x5829\t0x4E1E\n0x582A\t0x9B32\n0x582B\t0x5B6C\n0x582C\t0x5669\n0x582D\t0x4E28\n0x582E\t0x79BA\n0x582F\t0x4E3F\n0x5830\t0x5315\n0x5831\t0x4E47\n0x5832\t0x592D\n0x5833\t0x723B\n0x5834\t0x536E\n0x5835\t0x6C10\n0x5836\t0x56DF\n0x5837\t0x80E4\n0x5838\t0x9997\n0x5839\t0x6BD3\n0x583A\t0x777E\n0x583B\t0x9F17\n0x583C\t0x4E36\n0x583D\t0x4E9F\n0x583E\t0x9F10\n0x583F\t0x4E5C\n0x5840\t0x4E69\n0x5841\t0x4E93\n0x5842\t0x8288\n0x5843\t0x5B5B\n0x5844\t0x556C\n0x5845\t0x560F\n0x5846\t0x4EC4\n0x5847\t0x538D\n0x5848\t0x539D\n0x5849\t0x53A3\n0x584A\t0x53A5\n0x584B\t0x53AE\n0x584C\t0x9765\n0x584D\t0x8D5D\n0x584E\t0x531A\n0x584F\t0x53F5\n0x5850\t0x5326\n0x5851\t0x532E\n0x5852\t0x533E\n0x5853\t0x8D5C\n0x5854\t0x5366\n0x5855\t0x5363\n0x5856\t0x5202\n0x5857\t0x5208\n0x5858\t0x520E\n0x5859\t0x522D\n0x585A\t0x5233\n0x585B\t0x523F\n0x585C\t0x5240\n0x585D\t0x524C\n0x585E\t0x525E\n0x585F\t0x5261\n0x5860\t0x525C\n0x5861\t0x84AF\n0x5862\t0x527D\n0x5863\t0x5282\n0x5864\t0x5281\n0x5865\t0x5290\n0x5866\t0x5293\n0x5867\t0x5182\n0x5868\t0x7F54\n0x5869\t0x4EBB\n0x586A\t0x4EC3\n0x586B\t0x4EC9\n0x586C\t0x4EC2\n0x586D\t0x4EE8\n0x586E\t0x4EE1\n0x586F\t0x4EEB\n0x5870\t0x4EDE\n0x5871\t0x4F1B\n0x5872\t0x4EF3\n0x5873\t0x4F22\n0x5874\t0x4F64\n0x5875\t0x4EF5\n0x5876\t0x4F25\n0x5877\t0x4F27\n0x5878\t0x4F09\n0x5879\t0x4F2B\n0x587A\t0x4F5E\n0x587B\t0x4F67\n0x587C\t0x6538\n0x587D\t0x4F5A\n0x587E\t0x4F5D\n0x5921\t0x4F5F\n0x5922\t0x4F57\n0x5923\t0x4F32\n0x5924\t0x4F3D\n0x5925\t0x4F76\n0x5926\t0x4F74\n0x5927\t0x4F91\n0x5928\t0x4F89\n0x5929\t0x4F83\n0x592A\t0x4F8F\n0x592B\t0x4F7E\n0x592C\t0x4F7B\n0x592D\t0x4FAA\n0x592E\t0x4F7C\n0x592F\t0x4FAC\n0x5930\t0x4F94\n0x5931\t0x4FE6\n0x5932\t0x4FE8\n0x5933\t0x4FEA\n0x5934\t0x4FC5\n0x5935\t0x4FDA\n0x5936\t0x4FE3\n0x5937\t0x4FDC\n0x5938\t0x4FD1\n0x5939\t0x4FDF\n0x593A\t0x4FF8\n0x593B\t0x5029\n0x593C\t0x504C\n0x593D\t0x4FF3\n0x593E\t0x502C\n0x593F\t0x500F\n0x5940\t0x502E\n0x5941\t0x502D\n0x5942\t0x4FFE\n0x5943\t0x501C\n0x5944\t0x500C\n0x5945\t0x5025\n0x5946\t0x5028\n0x5947\t0x507E\n0x5948\t0x5043\n0x5949\t0x5055\n0x594A\t0x5048\n0x594B\t0x504E\n0x594C\t0x506C\n0x594D\t0x507B\n0x594E\t0x50A5\n0x594F\t0x50A7\n0x5950\t0x50A9\n0x5951\t0x50BA\n0x5952\t0x50D6\n0x5953\t0x5106\n0x5954\t0x50ED\n0x5955\t0x50EC\n0x5956\t0x50E6\n0x5957\t0x50EE\n0x5958\t0x5107\n0x5959\t0x510B\n0x595A\t0x4EDD\n0x595B\t0x6C3D\n0x595C\t0x4F58\n0x595D\t0x4F65\n0x595E\t0x4FCE\n0x595F\t0x9FA0\n0x5960\t0x6C46\n0x5961\t0x7C74\n0x5962\t0x516E\n0x5963\t0x5DFD\n0x5964\t0x9EC9\n0x5965\t0x9998\n0x5966\t0x5181\n0x5967\t0x5914\n0x5968\t0x52F9\n0x5969\t0x530D\n0x596A\t0x8A07\n0x596B\t0x5310\n0x596C\t0x51EB\n0x596D\t0x5919\n0x596E\t0x5155\n0x596F\t0x4EA0\n0x5970\t0x5156\n0x5971\t0x4EB3\n0x5972\t0x886E\n0x5973\t0x88A4\n0x5974\t0x4EB5\n0x5975\t0x8114\n0x5976\t0x88D2\n0x5977\t0x7980\n0x5978\t0x5B34\n0x5979\t0x8803\n0x597A\t0x7FB8\n0x597B\t0x51AB\n0x597C\t0x51B1\n0x597D\t0x51BD\n0x597E\t0x51BC\n0x5A21\t0x51C7\n0x5A22\t0x5196\n0x5A23\t0x51A2\n0x5A24\t0x51A5\n0x5A25\t0x8BA0\n0x5A26\t0x8BA6\n0x5A27\t0x8BA7\n0x5A28\t0x8BAA\n0x5A29\t0x8BB4\n0x5A2A\t0x8BB5\n0x5A2B\t0x8BB7\n0x5A2C\t0x8BC2\n0x5A2D\t0x8BC3\n0x5A2E\t0x8BCB\n0x5A2F\t0x8BCF\n0x5A30\t0x8BCE\n0x5A31\t0x8BD2\n0x5A32\t0x8BD3\n0x5A33\t0x8BD4\n0x5A34\t0x8BD6\n0x5A35\t0x8BD8\n0x5A36\t0x8BD9\n0x5A37\t0x8BDC\n0x5A38\t0x8BDF\n0x5A39\t0x8BE0\n0x5A3A\t0x8BE4\n0x5A3B\t0x8BE8\n0x5A3C\t0x8BE9\n0x5A3D\t0x8BEE\n0x5A3E\t0x8BF0\n0x5A3F\t0x8BF3\n0x5A40\t0x8BF6\n0x5A41\t0x8BF9\n0x5A42\t0x8BFC\n0x5A43\t0x8BFF\n0x5A44\t0x8C00\n0x5A45\t0x8C02\n0x5A46\t0x8C04\n0x5A47\t0x8C07\n0x5A48\t0x8C0C\n0x5A49\t0x8C0F\n0x5A4A\t0x8C11\n0x5A4B\t0x8C12\n0x5A4C\t0x8C14\n0x5A4D\t0x8C15\n0x5A4E\t0x8C16\n0x5A4F\t0x8C19\n0x5A50\t0x8C1B\n0x5A51\t0x8C18\n0x5A52\t0x8C1D\n0x5A53\t0x8C1F\n0x5A54\t0x8C20\n0x5A55\t0x8C21\n0x5A56\t0x8C25\n0x5A57\t0x8C27\n0x5A58\t0x8C2A\n0x5A59\t0x8C2B\n0x5A5A\t0x8C2E\n0x5A5B\t0x8C2F\n0x5A5C\t0x8C32\n0x5A5D\t0x8C33\n0x5A5E\t0x8C35\n0x5A5F\t0x8C36\n0x5A60\t0x5369\n0x5A61\t0x537A\n0x5A62\t0x961D\n0x5A63\t0x9622\n0x5A64\t0x9621\n0x5A65\t0x9631\n0x5A66\t0x962A\n0x5A67\t0x963D\n0x5A68\t0x963C\n0x5A69\t0x9642\n0x5A6A\t0x9649\n0x5A6B\t0x9654\n0x5A6C\t0x965F\n0x5A6D\t0x9667\n0x5A6E\t0x966C\n0x5A6F\t0x9672\n0x5A70\t0x9674\n0x5A71\t0x9688\n0x5A72\t0x968D\n0x5A73\t0x9697\n0x5A74\t0x96B0\n0x5A75\t0x9097\n0x5A76\t0x909B\n0x5A77\t0x909D\n0x5A78\t0x9099\n0x5A79\t0x90AC\n0x5A7A\t0x90A1\n0x5A7B\t0x90B4\n0x5A7C\t0x90B3\n0x5A7D\t0x90B6\n0x5A7E\t0x90BA\n0x5B21\t0x90B8\n0x5B22\t0x90B0\n0x5B23\t0x90CF\n0x5B24\t0x90C5\n0x5B25\t0x90BE\n0x5B26\t0x90D0\n0x5B27\t0x90C4\n0x5B28\t0x90C7\n0x5B29\t0x90D3\n0x5B2A\t0x90E6\n0x5B2B\t0x90E2\n0x5B2C\t0x90DC\n0x5B2D\t0x90D7\n0x5B2E\t0x90DB\n0x5B2F\t0x90EB\n0x5B30\t0x90EF\n0x5B31\t0x90FE\n0x5B32\t0x9104\n0x5B33\t0x9122\n0x5B34\t0x911E\n0x5B35\t0x9123\n0x5B36\t0x9131\n0x5B37\t0x912F\n0x5B38\t0x9139\n0x5B39\t0x9143\n0x5B3A\t0x9146\n0x5B3B\t0x520D\n0x5B3C\t0x5942\n0x5B3D\t0x52A2\n0x5B3E\t0x52AC\n0x5B3F\t0x52AD\n0x5B40\t0x52BE\n0x5B41\t0x54FF\n0x5B42\t0x52D0\n0x5B43\t0x52D6\n0x5B44\t0x52F0\n0x5B45\t0x53DF\n0x5B46\t0x71EE\n0x5B47\t0x77CD\n0x5B48\t0x5EF4\n0x5B49\t0x51F5\n0x5B4A\t0x51FC\n0x5B4B\t0x9B2F\n0x5B4C\t0x53B6\n0x5B4D\t0x5F01\n0x5B4E\t0x755A\n0x5B4F\t0x5DEF\n0x5B50\t0x574C\n0x5B51\t0x57A9\n0x5B52\t0x57A1\n0x5B53\t0x587E\n0x5B54\t0x58BC\n0x5B55\t0x58C5\n0x5B56\t0x58D1\n0x5B57\t0x5729\n0x5B58\t0x572C\n0x5B59\t0x572A\n0x5B5A\t0x5733\n0x5B5B\t0x5739\n0x5B5C\t0x572E\n0x5B5D\t0x572F\n0x5B5E\t0x575C\n0x5B5F\t0x573B\n0x5B60\t0x5742\n0x5B61\t0x5769\n0x5B62\t0x5785\n0x5B63\t0x576B\n0x5B64\t0x5786\n0x5B65\t0x577C\n0x5B66\t0x577B\n0x5B67\t0x5768\n0x5B68\t0x576D\n0x5B69\t0x5776\n0x5B6A\t0x5773\n0x5B6B\t0x57AD\n0x5B6C\t0x57A4\n0x5B6D\t0x578C\n0x5B6E\t0x57B2\n0x5B6F\t0x57CF\n0x5B70\t0x57A7\n0x5B71\t0x57B4\n0x5B72\t0x5793\n0x5B73\t0x57A0\n0x5B74\t0x57D5\n0x5B75\t0x57D8\n0x5B76\t0x57DA\n0x5B77\t0x57D9\n0x5B78\t0x57D2\n0x5B79\t0x57B8\n0x5B7A\t0x57F4\n0x5B7B\t0x57EF\n0x5B7C\t0x57F8\n0x5B7D\t0x57E4\n0x5B7E\t0x57DD\n0x5C21\t0x580B\n0x5C22\t0x580D\n0x5C23\t0x57FD\n0x5C24\t0x57ED\n0x5C25\t0x5800\n0x5C26\t0x581E\n0x5C27\t0x5819\n0x5C28\t0x5844\n0x5C29\t0x5820\n0x5C2A\t0x5865\n0x5C2B\t0x586C\n0x5C2C\t0x5881\n0x5C2D\t0x5889\n0x5C2E\t0x589A\n0x5C2F\t0x5880\n0x5C30\t0x99A8\n0x5C31\t0x9F19\n0x5C32\t0x61FF\n0x5C33\t0x8279\n0x5C34\t0x827D\n0x5C35\t0x827F\n0x5C36\t0x828F\n0x5C37\t0x828A\n0x5C38\t0x82A8\n0x5C39\t0x8284\n0x5C3A\t0x828E\n0x5C3B\t0x8291\n0x5C3C\t0x8297\n0x5C3D\t0x8299\n0x5C3E\t0x82AB\n0x5C3F\t0x82B8\n0x5C40\t0x82BE\n0x5C41\t0x82B0\n0x5C42\t0x82C8\n0x5C43\t0x82CA\n0x5C44\t0x82E3\n0x5C45\t0x8298\n0x5C46\t0x82B7\n0x5C47\t0x82AE\n0x5C48\t0x82CB\n0x5C49\t0x82CC\n0x5C4A\t0x82C1\n0x5C4B\t0x82A9\n0x5C4C\t0x82B4\n0x5C4D\t0x82A1\n0x5C4E\t0x82AA\n0x5C4F\t0x829F\n0x5C50\t0x82C4\n0x5C51\t0x82CE\n0x5C52\t0x82A4\n0x5C53\t0x82E1\n0x5C54\t0x8309\n0x5C55\t0x82F7\n0x5C56\t0x82E4\n0x5C57\t0x830F\n0x5C58\t0x8307\n0x5C59\t0x82DC\n0x5C5A\t0x82F4\n0x5C5B\t0x82D2\n0x5C5C\t0x82D8\n0x5C5D\t0x830C\n0x5C5E\t0x82FB\n0x5C5F\t0x82D3\n0x5C60\t0x8311\n0x5C61\t0x831A\n0x5C62\t0x8306\n0x5C63\t0x8314\n0x5C64\t0x8315\n0x5C65\t0x82E0\n0x5C66\t0x82D5\n0x5C67\t0x831C\n0x5C68\t0x8351\n0x5C69\t0x835B\n0x5C6A\t0x835C\n0x5C6B\t0x8308\n0x5C6C\t0x8392\n0x5C6D\t0x833C\n0x5C6E\t0x8334\n0x5C6F\t0x8331\n0x5C70\t0x839B\n0x5C71\t0x835E\n0x5C72\t0x832F\n0x5C73\t0x834F\n0x5C74\t0x8347\n0x5C75\t0x8343\n0x5C76\t0x835F\n0x5C77\t0x8340\n0x5C78\t0x8317\n0x5C79\t0x8360\n0x5C7A\t0x832D\n0x5C7B\t0x833A\n0x5C7C\t0x8333\n0x5C7D\t0x8366\n0x5C7E\t0x8365\n0x5D21\t0x8368\n0x5D22\t0x831B\n0x5D23\t0x8369\n0x5D24\t0x836C\n0x5D25\t0x836A\n0x5D26\t0x836D\n0x5D27\t0x836E\n0x5D28\t0x83B0\n0x5D29\t0x8378\n0x5D2A\t0x83B3\n0x5D2B\t0x83B4\n0x5D2C\t0x83A0\n0x5D2D\t0x83AA\n0x5D2E\t0x8393\n0x5D2F\t0x839C\n0x5D30\t0x8385\n0x5D31\t0x837C\n0x5D32\t0x83B6\n0x5D33\t0x83A9\n0x5D34\t0x837D\n0x5D35\t0x83B8\n0x5D36\t0x837B\n0x5D37\t0x8398\n0x5D38\t0x839E\n0x5D39\t0x83A8\n0x5D3A\t0x83BA\n0x5D3B\t0x83BC\n0x5D3C\t0x83C1\n0x5D3D\t0x8401\n0x5D3E\t0x83E5\n0x5D3F\t0x83D8\n0x5D40\t0x5807\n0x5D41\t0x8418\n0x5D42\t0x840B\n0x5D43\t0x83DD\n0x5D44\t0x83FD\n0x5D45\t0x83D6\n0x5D46\t0x841C\n0x5D47\t0x8438\n0x5D48\t0x8411\n0x5D49\t0x8406\n0x5D4A\t0x83D4\n0x5D4B\t0x83DF\n0x5D4C\t0x840F\n0x5D4D\t0x8403\n0x5D4E\t0x83F8\n0x5D4F\t0x83F9\n0x5D50\t0x83EA\n0x5D51\t0x83C5\n0x5D52\t0x83C0\n0x5D53\t0x8426\n0x5D54\t0x83F0\n0x5D55\t0x83E1\n0x5D56\t0x845C\n0x5D57\t0x8451\n0x5D58\t0x845A\n0x5D59\t0x8459\n0x5D5A\t0x8473\n0x5D5B\t0x8487\n0x5D5C\t0x8488\n0x5D5D\t0x847A\n0x5D5E\t0x8489\n0x5D5F\t0x8478\n0x5D60\t0x843C\n0x5D61\t0x8446\n0x5D62\t0x8469\n0x5D63\t0x8476\n0x5D64\t0x848C\n0x5D65\t0x848E\n0x5D66\t0x8431\n0x5D67\t0x846D\n0x5D68\t0x84C1\n0x5D69\t0x84CD\n0x5D6A\t0x84D0\n0x5D6B\t0x84E6\n0x5D6C\t0x84BD\n0x5D6D\t0x84D3\n0x5D6E\t0x84CA\n0x5D6F\t0x84BF\n0x5D70\t0x84BA\n0x5D71\t0x84E0\n0x5D72\t0x84A1\n0x5D73\t0x84B9\n0x5D74\t0x84B4\n0x5D75\t0x8497\n0x5D76\t0x84E5\n0x5D77\t0x84E3\n0x5D78\t0x850C\n0x5D79\t0x750D\n0x5D7A\t0x8538\n0x5D7B\t0x84F0\n0x5D7C\t0x8539\n0x5D7D\t0x851F\n0x5D7E\t0x853A\n0x5E21\t0x8556\n0x5E22\t0x853B\n0x5E23\t0x84FF\n0x5E24\t0x84FC\n0x5E25\t0x8559\n0x5E26\t0x8548\n0x5E27\t0x8568\n0x5E28\t0x8564\n0x5E29\t0x855E\n0x5E2A\t0x857A\n0x5E2B\t0x77A2\n0x5E2C\t0x8543\n0x5E2D\t0x8572\n0x5E2E\t0x857B\n0x5E2F\t0x85A4\n0x5E30\t0x85A8\n0x5E31\t0x8587\n0x5E32\t0x858F\n0x5E33\t0x8579\n0x5E34\t0x85AE\n0x5E35\t0x859C\n0x5E36\t0x8585\n0x5E37\t0x85B9\n0x5E38\t0x85B7\n0x5E39\t0x85B0\n0x5E3A\t0x85D3\n0x5E3B\t0x85C1\n0x5E3C\t0x85DC\n0x5E3D\t0x85FF\n0x5E3E\t0x8627\n0x5E3F\t0x8605\n0x5E40\t0x8629\n0x5E41\t0x8616\n0x5E42\t0x863C\n0x5E43\t0x5EFE\n0x5E44\t0x5F08\n0x5E45\t0x593C\n0x5E46\t0x5941\n0x5E47\t0x8037\n0x5E48\t0x5955\n0x5E49\t0x595A\n0x5E4A\t0x5958\n0x5E4B\t0x530F\n0x5E4C\t0x5C22\n0x5E4D\t0x5C25\n0x5E4E\t0x5C2C\n0x5E4F\t0x5C34\n0x5E50\t0x624C\n0x5E51\t0x626A\n0x5E52\t0x629F\n0x5E53\t0x62BB\n0x5E54\t0x62CA\n0x5E55\t0x62DA\n0x5E56\t0x62D7\n0x5E57\t0x62EE\n0x5E58\t0x6322\n0x5E59\t0x62F6\n0x5E5A\t0x6339\n0x5E5B\t0x634B\n0x5E5C\t0x6343\n0x5E5D\t0x63AD\n0x5E5E\t0x63F6\n0x5E5F\t0x6371\n0x5E60\t0x637A\n0x5E61\t0x638E\n0x5E62\t0x63B4\n0x5E63\t0x636D\n0x5E64\t0x63AC\n0x5E65\t0x638A\n0x5E66\t0x6369\n0x5E67\t0x63AE\n0x5E68\t0x63BC\n0x5E69\t0x63F2\n0x5E6A\t0x63F8\n0x5E6B\t0x63E0\n0x5E6C\t0x63FF\n0x5E6D\t0x63C4\n0x5E6E\t0x63DE\n0x5E6F\t0x63CE\n0x5E70\t0x6452\n0x5E71\t0x63C6\n0x5E72\t0x63BE\n0x5E73\t0x6445\n0x5E74\t0x6441\n0x5E75\t0x640B\n0x5E76\t0x641B\n0x5E77\t0x6420\n0x5E78\t0x640C\n0x5E79\t0x6426\n0x5E7A\t0x6421\n0x5E7B\t0x645E\n0x5E7C\t0x6484\n0x5E7D\t0x646D\n0x5E7E\t0x6496\n0x5F21\t0x647A\n0x5F22\t0x64B7\n0x5F23\t0x64B8\n0x5F24\t0x6499\n0x5F25\t0x64BA\n0x5F26\t0x64C0\n0x5F27\t0x64D0\n0x5F28\t0x64D7\n0x5F29\t0x64E4\n0x5F2A\t0x64E2\n0x5F2B\t0x6509\n0x5F2C\t0x6525\n0x5F2D\t0x652E\n0x5F2E\t0x5F0B\n0x5F2F\t0x5FD2\n0x5F30\t0x7519\n0x5F31\t0x5F11\n0x5F32\t0x535F\n0x5F33\t0x53F1\n0x5F34\t0x53FD\n0x5F35\t0x53E9\n0x5F36\t0x53E8\n0x5F37\t0x53FB\n0x5F38\t0x5412\n0x5F39\t0x5416\n0x5F3A\t0x5406\n0x5F3B\t0x544B\n0x5F3C\t0x5452\n0x5F3D\t0x5453\n0x5F3E\t0x5454\n0x5F3F\t0x5456\n0x5F40\t0x5443\n0x5F41\t0x5421\n0x5F42\t0x5457\n0x5F43\t0x5459\n0x5F44\t0x5423\n0x5F45\t0x5432\n0x5F46\t0x5482\n0x5F47\t0x5494\n0x5F48\t0x5477\n0x5F49\t0x5471\n0x5F4A\t0x5464\n0x5F4B\t0x549A\n0x5F4C\t0x549B\n0x5F4D\t0x5484\n0x5F4E\t0x5476\n0x5F4F\t0x5466\n0x5F50\t0x549D\n0x5F51\t0x54D0\n0x5F52\t0x54AD\n0x5F53\t0x54C2\n0x5F54\t0x54B4\n0x5F55\t0x54D2\n0x5F56\t0x54A7\n0x5F57\t0x54A6\n0x5F58\t0x54D3\n0x5F59\t0x54D4\n0x5F5A\t0x5472\n0x5F5B\t0x54A3\n0x5F5C\t0x54D5\n0x5F5D\t0x54BB\n0x5F5E\t0x54BF\n0x5F5F\t0x54CC\n0x5F60\t0x54D9\n0x5F61\t0x54DA\n0x5F62\t0x54DC\n0x5F63\t0x54A9\n0x5F64\t0x54AA\n0x5F65\t0x54A4\n0x5F66\t0x54DD\n0x5F67\t0x54CF\n0x5F68\t0x54DE\n0x5F69\t0x551B\n0x5F6A\t0x54E7\n0x5F6B\t0x5520\n0x5F6C\t0x54FD\n0x5F6D\t0x5514\n0x5F6E\t0x54F3\n0x5F6F\t0x5522\n0x5F70\t0x5523\n0x5F71\t0x550F\n0x5F72\t0x5511\n0x5F73\t0x5527\n0x5F74\t0x552A\n0x5F75\t0x5567\n0x5F76\t0x558F\n0x5F77\t0x55B5\n0x5F78\t0x5549\n0x5F79\t0x556D\n0x5F7A\t0x5541\n0x5F7B\t0x5555\n0x5F7C\t0x553F\n0x5F7D\t0x5550\n0x5F7E\t0x553C\n0x6021\t0x5537\n0x6022\t0x5556\n0x6023\t0x5575\n0x6024\t0x5576\n0x6025\t0x5577\n0x6026\t0x5533\n0x6027\t0x5530\n0x6028\t0x555C\n0x6029\t0x558B\n0x602A\t0x55D2\n0x602B\t0x5583\n0x602C\t0x55B1\n0x602D\t0x55B9\n0x602E\t0x5588\n0x602F\t0x5581\n0x6030\t0x559F\n0x6031\t0x557E\n0x6032\t0x55D6\n0x6033\t0x5591\n0x6034\t0x557B\n0x6035\t0x55DF\n0x6036\t0x55BD\n0x6037\t0x55BE\n0x6038\t0x5594\n0x6039\t0x5599\n0x603A\t0x55EA\n0x603B\t0x55F7\n0x603C\t0x55C9\n0x603D\t0x561F\n0x603E\t0x55D1\n0x603F\t0x55EB\n0x6040\t0x55EC\n0x6041\t0x55D4\n0x6042\t0x55E6\n0x6043\t0x55DD\n0x6044\t0x55C4\n0x6045\t0x55EF\n0x6046\t0x55E5\n0x6047\t0x55F2\n0x6048\t0x55F3\n0x6049\t0x55CC\n0x604A\t0x55CD\n0x604B\t0x55E8\n0x604C\t0x55F5\n0x604D\t0x55E4\n0x604E\t0x8F94\n0x604F\t0x561E\n0x6050\t0x5608\n0x6051\t0x560C\n0x6052\t0x5601\n0x6053\t0x5624\n0x6054\t0x5623\n0x6055\t0x55FE\n0x6056\t0x5600\n0x6057\t0x5627\n0x6058\t0x562D\n0x6059\t0x5658\n0x605A\t0x5639\n0x605B\t0x5657\n0x605C\t0x562C\n0x605D\t0x564D\n0x605E\t0x5662\n0x605F\t0x5659\n0x6060\t0x565C\n0x6061\t0x564C\n0x6062\t0x5654\n0x6063\t0x5686\n0x6064\t0x5664\n0x6065\t0x5671\n0x6066\t0x566B\n0x6067\t0x567B\n0x6068\t0x567C\n0x6069\t0x5685\n0x606A\t0x5693\n0x606B\t0x56AF\n0x606C\t0x56D4\n0x606D\t0x56D7\n0x606E\t0x56DD\n0x606F\t0x56E1\n0x6070\t0x56F5\n0x6071\t0x56EB\n0x6072\t0x56F9\n0x6073\t0x56FF\n0x6074\t0x5704\n0x6075\t0x570A\n0x6076\t0x5709\n0x6077\t0x571C\n0x6078\t0x5E0F\n0x6079\t0x5E19\n0x607A\t0x5E14\n0x607B\t0x5E11\n0x607C\t0x5E31\n0x607D\t0x5E3B\n0x607E\t0x5E3C\n0x6121\t0x5E37\n0x6122\t0x5E44\n0x6123\t0x5E54\n0x6124\t0x5E5B\n0x6125\t0x5E5E\n0x6126\t0x5E61\n0x6127\t0x5C8C\n0x6128\t0x5C7A\n0x6129\t0x5C8D\n0x612A\t0x5C90\n0x612B\t0x5C96\n0x612C\t0x5C88\n0x612D\t0x5C98\n0x612E\t0x5C99\n0x612F\t0x5C91\n0x6130\t0x5C9A\n0x6131\t0x5C9C\n0x6132\t0x5CB5\n0x6133\t0x5CA2\n0x6134\t0x5CBD\n0x6135\t0x5CAC\n0x6136\t0x5CAB\n0x6137\t0x5CB1\n0x6138\t0x5CA3\n0x6139\t0x5CC1\n0x613A\t0x5CB7\n0x613B\t0x5CC4\n0x613C\t0x5CD2\n0x613D\t0x5CE4\n0x613E\t0x5CCB\n0x613F\t0x5CE5\n0x6140\t0x5D02\n0x6141\t0x5D03\n0x6142\t0x5D27\n0x6143\t0x5D26\n0x6144\t0x5D2E\n0x6145\t0x5D24\n0x6146\t0x5D1E\n0x6147\t0x5D06\n0x6148\t0x5D1B\n0x6149\t0x5D58\n0x614A\t0x5D3E\n0x614B\t0x5D34\n0x614C\t0x5D3D\n0x614D\t0x5D6C\n0x614E\t0x5D5B\n0x614F\t0x5D6F\n0x6150\t0x5D5D\n0x6151\t0x5D6B\n0x6152\t0x5D4B\n0x6153\t0x5D4A\n0x6154\t0x5D69\n0x6155\t0x5D74\n0x6156\t0x5D82\n0x6157\t0x5D99\n0x6158\t0x5D9D\n0x6159\t0x8C73\n0x615A\t0x5DB7\n0x615B\t0x5DC5\n0x615C\t0x5F73\n0x615D\t0x5F77\n0x615E\t0x5F82\n0x615F\t0x5F87\n0x6160\t0x5F89\n0x6161\t0x5F8C\n0x6162\t0x5F95\n0x6163\t0x5F99\n0x6164\t0x5F9C\n0x6165\t0x5FA8\n0x6166\t0x5FAD\n0x6167\t0x5FB5\n0x6168\t0x5FBC\n0x6169\t0x8862\n0x616A\t0x5F61\n0x616B\t0x72AD\n0x616C\t0x72B0\n0x616D\t0x72B4\n0x616E\t0x72B7\n0x616F\t0x72B8\n0x6170\t0x72C3\n0x6171\t0x72C1\n0x6172\t0x72CE\n0x6173\t0x72CD\n0x6174\t0x72D2\n0x6175\t0x72E8\n0x6176\t0x72EF\n0x6177\t0x72E9\n0x6178\t0x72F2\n0x6179\t0x72F4\n0x617A\t0x72F7\n0x617B\t0x7301\n0x617C\t0x72F3\n0x617D\t0x7303\n0x617E\t0x72FA\n0x6221\t0x72FB\n0x6222\t0x7317\n0x6223\t0x7313\n0x6224\t0x7321\n0x6225\t0x730A\n0x6226\t0x731E\n0x6227\t0x731D\n0x6228\t0x7315\n0x6229\t0x7322\n0x622A\t0x7339\n0x622B\t0x7325\n0x622C\t0x732C\n0x622D\t0x7338\n0x622E\t0x7331\n0x622F\t0x7350\n0x6230\t0x734D\n0x6231\t0x7357\n0x6232\t0x7360\n0x6233\t0x736C\n0x6234\t0x736F\n0x6235\t0x737E\n0x6236\t0x821B\n0x6237\t0x5925\n0x6238\t0x98E7\n0x6239\t0x5924\n0x623A\t0x5902\n0x623B\t0x9963\n0x623C\t0x9967\n0x623D\t0x9968\n0x623E\t0x9969\n0x623F\t0x996A\n0x6240\t0x996B\n0x6241\t0x996C\n0x6242\t0x9974\n0x6243\t0x9977\n0x6244\t0x997D\n0x6245\t0x9980\n0x6246\t0x9984\n0x6247\t0x9987\n0x6248\t0x998A\n0x6249\t0x998D\n0x624A\t0x9990\n0x624B\t0x9991\n0x624C\t0x9993\n0x624D\t0x9994\n0x624E\t0x9995\n0x624F\t0x5E80\n0x6250\t0x5E91\n0x6251\t0x5E8B\n0x6252\t0x5E96\n0x6253\t0x5EA5\n0x6254\t0x5EA0\n0x6255\t0x5EB9\n0x6256\t0x5EB5\n0x6257\t0x5EBE\n0x6258\t0x5EB3\n0x6259\t0x8D53\n0x625A\t0x5ED2\n0x625B\t0x5ED1\n0x625C\t0x5EDB\n0x625D\t0x5EE8\n0x625E\t0x5EEA\n0x625F\t0x81BA\n0x6260\t0x5FC4\n0x6261\t0x5FC9\n0x6262\t0x5FD6\n0x6263\t0x5FCF\n0x6264\t0x6003\n0x6265\t0x5FEE\n0x6266\t0x6004\n0x6267\t0x5FE1\n0x6268\t0x5FE4\n0x6269\t0x5FFE\n0x626A\t0x6005\n0x626B\t0x6006\n0x626C\t0x5FEA\n0x626D\t0x5FED\n0x626E\t0x5FF8\n0x626F\t0x6019\n0x6270\t0x6035\n0x6271\t0x6026\n0x6272\t0x601B\n0x6273\t0x600F\n0x6274\t0x600D\n0x6275\t0x6029\n0x6276\t0x602B\n0x6277\t0x600A\n0x6278\t0x603F\n0x6279\t0x6021\n0x627A\t0x6078\n0x627B\t0x6079\n0x627C\t0x607B\n0x627D\t0x607A\n0x627E\t0x6042\n0x6321\t0x606A\n0x6322\t0x607D\n0x6323\t0x6096\n0x6324\t0x609A\n0x6325\t0x60AD\n0x6326\t0x609D\n0x6327\t0x6083\n0x6328\t0x6092\n0x6329\t0x608C\n0x632A\t0x609B\n0x632B\t0x60EC\n0x632C\t0x60BB\n0x632D\t0x60B1\n0x632E\t0x60DD\n0x632F\t0x60D8\n0x6330\t0x60C6\n0x6331\t0x60DA\n0x6332\t0x60B4\n0x6333\t0x6120\n0x6334\t0x6126\n0x6335\t0x6115\n0x6336\t0x6123\n0x6337\t0x60F4\n0x6338\t0x6100\n0x6339\t0x610E\n0x633A\t0x612B\n0x633B\t0x614A\n0x633C\t0x6175\n0x633D\t0x61AC\n0x633E\t0x6194\n0x633F\t0x61A7\n0x6340\t0x61B7\n0x6341\t0x61D4\n0x6342\t0x61F5\n0x6343\t0x5FDD\n0x6344\t0x96B3\n0x6345\t0x95E9\n0x6346\t0x95EB\n0x6347\t0x95F1\n0x6348\t0x95F3\n0x6349\t0x95F5\n0x634A\t0x95F6\n0x634B\t0x95FC\n0x634C\t0x95FE\n0x634D\t0x9603\n0x634E\t0x9604\n0x634F\t0x9606\n0x6350\t0x9608\n0x6351\t0x960A\n0x6352\t0x960B\n0x6353\t0x960C\n0x6354\t0x960D\n0x6355\t0x960F\n0x6356\t0x9612\n0x6357\t0x9615\n0x6358\t0x9616\n0x6359\t0x9617\n0x635A\t0x9619\n0x635B\t0x961A\n0x635C\t0x4E2C\n0x635D\t0x723F\n0x635E\t0x6215\n0x635F\t0x6C35\n0x6360\t0x6C54\n0x6361\t0x6C5C\n0x6362\t0x6C4A\n0x6363\t0x6CA3\n0x6364\t0x6C85\n0x6365\t0x6C90\n0x6366\t0x6C94\n0x6367\t0x6C8C\n0x6368\t0x6C68\n0x6369\t0x6C69\n0x636A\t0x6C74\n0x636B\t0x6C76\n0x636C\t0x6C86\n0x636D\t0x6CA9\n0x636E\t0x6CD0\n0x636F\t0x6CD4\n0x6370\t0x6CAD\n0x6371\t0x6CF7\n0x6372\t0x6CF8\n0x6373\t0x6CF1\n0x6374\t0x6CD7\n0x6375\t0x6CB2\n0x6376\t0x6CE0\n0x6377\t0x6CD6\n0x6378\t0x6CFA\n0x6379\t0x6CEB\n0x637A\t0x6CEE\n0x637B\t0x6CB1\n0x637C\t0x6CD3\n0x637D\t0x6CEF\n0x637E\t0x6CFE\n0x6421\t0x6D39\n0x6422\t0x6D27\n0x6423\t0x6D0C\n0x6424\t0x6D43\n0x6425\t0x6D48\n0x6426\t0x6D07\n0x6427\t0x6D04\n0x6428\t0x6D19\n0x6429\t0x6D0E\n0x642A\t0x6D2B\n0x642B\t0x6D4D\n0x642C\t0x6D2E\n0x642D\t0x6D35\n0x642E\t0x6D1A\n0x642F\t0x6D4F\n0x6430\t0x6D52\n0x6431\t0x6D54\n0x6432\t0x6D33\n0x6433\t0x6D91\n0x6434\t0x6D6F\n0x6435\t0x6D9E\n0x6436\t0x6DA0\n0x6437\t0x6D5E\n0x6438\t0x6D93\n0x6439\t0x6D94\n0x643A\t0x6D5C\n0x643B\t0x6D60\n0x643C\t0x6D7C\n0x643D\t0x6D63\n0x643E\t0x6E1A\n0x643F\t0x6DC7\n0x6440\t0x6DC5\n0x6441\t0x6DDE\n0x6442\t0x6E0E\n0x6443\t0x6DBF\n0x6444\t0x6DE0\n0x6445\t0x6E11\n0x6446\t0x6DE6\n0x6447\t0x6DDD\n0x6448\t0x6DD9\n0x6449\t0x6E16\n0x644A\t0x6DAB\n0x644B\t0x6E0C\n0x644C\t0x6DAE\n0x644D\t0x6E2B\n0x644E\t0x6E6E\n0x644F\t0x6E4E\n0x6450\t0x6E6B\n0x6451\t0x6EB2\n0x6452\t0x6E5F\n0x6453\t0x6E86\n0x6454\t0x6E53\n0x6455\t0x6E54\n0x6456\t0x6E32\n0x6457\t0x6E25\n0x6458\t0x6E44\n0x6459\t0x6EDF\n0x645A\t0x6EB1\n0x645B\t0x6E98\n0x645C\t0x6EE0\n0x645D\t0x6F2D\n0x645E\t0x6EE2\n0x645F\t0x6EA5\n0x6460\t0x6EA7\n0x6461\t0x6EBD\n0x6462\t0x6EBB\n0x6463\t0x6EB7\n0x6464\t0x6ED7\n0x6465\t0x6EB4\n0x6466\t0x6ECF\n0x6467\t0x6E8F\n0x6468\t0x6EC2\n0x6469\t0x6E9F\n0x646A\t0x6F62\n0x646B\t0x6F46\n0x646C\t0x6F47\n0x646D\t0x6F24\n0x646E\t0x6F15\n0x646F\t0x6EF9\n0x6470\t0x6F2F\n0x6471\t0x6F36\n0x6472\t0x6F4B\n0x6473\t0x6F74\n0x6474\t0x6F2A\n0x6475\t0x6F09\n0x6476\t0x6F29\n0x6477\t0x6F89\n0x6478\t0x6F8D\n0x6479\t0x6F8C\n0x647A\t0x6F78\n0x647B\t0x6F72\n0x647C\t0x6F7C\n0x647D\t0x6F7A\n0x647E\t0x6FD1\n0x6521\t0x6FC9\n0x6522\t0x6FA7\n0x6523\t0x6FB9\n0x6524\t0x6FB6\n0x6525\t0x6FC2\n0x6526\t0x6FE1\n0x6527\t0x6FEE\n0x6528\t0x6FDE\n0x6529\t0x6FE0\n0x652A\t0x6FEF\n0x652B\t0x701A\n0x652C\t0x7023\n0x652D\t0x701B\n0x652E\t0x7039\n0x652F\t0x7035\n0x6530\t0x704F\n0x6531\t0x705E\n0x6532\t0x5B80\n0x6533\t0x5B84\n0x6534\t0x5B95\n0x6535\t0x5B93\n0x6536\t0x5BA5\n0x6537\t0x5BB8\n0x6538\t0x752F\n0x6539\t0x9A9E\n0x653A\t0x6434\n0x653B\t0x5BE4\n0x653C\t0x5BEE\n0x653D\t0x8930\n0x653E\t0x5BF0\n0x653F\t0x8E47\n0x6540\t0x8B07\n0x6541\t0x8FB6\n0x6542\t0x8FD3\n0x6543\t0x8FD5\n0x6544\t0x8FE5\n0x6545\t0x8FEE\n0x6546\t0x8FE4\n0x6547\t0x8FE9\n0x6548\t0x8FE6\n0x6549\t0x8FF3\n0x654A\t0x8FE8\n0x654B\t0x9005\n0x654C\t0x9004\n0x654D\t0x900B\n0x654E\t0x9026\n0x654F\t0x9011\n0x6550\t0x900D\n0x6551\t0x9016\n0x6552\t0x9021\n0x6553\t0x9035\n0x6554\t0x9036\n0x6555\t0x902D\n0x6556\t0x902F\n0x6557\t0x9044\n0x6558\t0x9051\n0x6559\t0x9052\n0x655A\t0x9050\n0x655B\t0x9068\n0x655C\t0x9058\n0x655D\t0x9062\n0x655E\t0x905B\n0x655F\t0x66B9\n0x6560\t0x9074\n0x6561\t0x907D\n0x6562\t0x9082\n0x6563\t0x9088\n0x6564\t0x9083\n0x6565\t0x908B\n0x6566\t0x5F50\n0x6567\t0x5F57\n0x6568\t0x5F56\n0x6569\t0x5F58\n0x656A\t0x5C3B\n0x656B\t0x54AB\n0x656C\t0x5C50\n0x656D\t0x5C59\n0x656E\t0x5B71\n0x656F\t0x5C63\n0x6570\t0x5C66\n0x6571\t0x7FBC\n0x6572\t0x5F2A\n0x6573\t0x5F29\n0x6574\t0x5F2D\n0x6575\t0x8274\n0x6576\t0x5F3C\n0x6577\t0x9B3B\n0x6578\t0x5C6E\n0x6579\t0x5981\n0x657A\t0x5983\n0x657B\t0x598D\n0x657C\t0x59A9\n0x657D\t0x59AA\n0x657E\t0x59A3\n0x6621\t0x5997\n0x6622\t0x59CA\n0x6623\t0x59AB\n0x6624\t0x599E\n0x6625\t0x59A4\n0x6626\t0x59D2\n0x6627\t0x59B2\n0x6628\t0x59AF\n0x6629\t0x59D7\n0x662A\t0x59BE\n0x662B\t0x5A05\n0x662C\t0x5A06\n0x662D\t0x59DD\n0x662E\t0x5A08\n0x662F\t0x59E3\n0x6630\t0x59D8\n0x6631\t0x59F9\n0x6632\t0x5A0C\n0x6633\t0x5A09\n0x6634\t0x5A32\n0x6635\t0x5A34\n0x6636\t0x5A11\n0x6637\t0x5A23\n0x6638\t0x5A13\n0x6639\t0x5A40\n0x663A\t0x5A67\n0x663B\t0x5A4A\n0x663C\t0x5A55\n0x663D\t0x5A3C\n0x663E\t0x5A62\n0x663F\t0x5A75\n0x6640\t0x80EC\n0x6641\t0x5AAA\n0x6642\t0x5A9B\n0x6643\t0x5A77\n0x6644\t0x5A7A\n0x6645\t0x5ABE\n0x6646\t0x5AEB\n0x6647\t0x5AB2\n0x6648\t0x5AD2\n0x6649\t0x5AD4\n0x664A\t0x5AB8\n0x664B\t0x5AE0\n0x664C\t0x5AE3\n0x664D\t0x5AF1\n0x664E\t0x5AD6\n0x664F\t0x5AE6\n0x6650\t0x5AD8\n0x6651\t0x5ADC\n0x6652\t0x5B09\n0x6653\t0x5B17\n0x6654\t0x5B16\n0x6655\t0x5B32\n0x6656\t0x5B37\n0x6657\t0x5B40\n0x6658\t0x5C15\n0x6659\t0x5C1C\n0x665A\t0x5B5A\n0x665B\t0x5B65\n0x665C\t0x5B73\n0x665D\t0x5B51\n0x665E\t0x5B53\n0x665F\t0x5B62\n0x6660\t0x9A75\n0x6661\t0x9A77\n0x6662\t0x9A78\n0x6663\t0x9A7A\n0x6664\t0x9A7F\n0x6665\t0x9A7D\n0x6666\t0x9A80\n0x6667\t0x9A81\n0x6668\t0x9A85\n0x6669\t0x9A88\n0x666A\t0x9A8A\n0x666B\t0x9A90\n0x666C\t0x9A92\n0x666D\t0x9A93\n0x666E\t0x9A96\n0x666F\t0x9A98\n0x6670\t0x9A9B\n0x6671\t0x9A9C\n0x6672\t0x9A9D\n0x6673\t0x9A9F\n0x6674\t0x9AA0\n0x6675\t0x9AA2\n0x6676\t0x9AA3\n0x6677\t0x9AA5\n0x6678\t0x9AA7\n0x6679\t0x7E9F\n0x667A\t0x7EA1\n0x667B\t0x7EA3\n0x667C\t0x7EA5\n0x667D\t0x7EA8\n0x667E\t0x7EA9\n0x6721\t0x7EAD\n0x6722\t0x7EB0\n0x6723\t0x7EBE\n0x6724\t0x7EC0\n0x6725\t0x7EC1\n0x6726\t0x7EC2\n0x6727\t0x7EC9\n0x6728\t0x7ECB\n0x6729\t0x7ECC\n0x672A\t0x7ED0\n0x672B\t0x7ED4\n0x672C\t0x7ED7\n0x672D\t0x7EDB\n0x672E\t0x7EE0\n0x672F\t0x7EE1\n0x6730\t0x7EE8\n0x6731\t0x7EEB\n0x6732\t0x7EEE\n0x6733\t0x7EEF\n0x6734\t0x7EF1\n0x6735\t0x7EF2\n0x6736\t0x7F0D\n0x6737\t0x7EF6\n0x6738\t0x7EFA\n0x6739\t0x7EFB\n0x673A\t0x7EFE\n0x673B\t0x7F01\n0x673C\t0x7F02\n0x673D\t0x7F03\n0x673E\t0x7F07\n0x673F\t0x7F08\n0x6740\t0x7F0B\n0x6741\t0x7F0C\n0x6742\t0x7F0F\n0x6743\t0x7F11\n0x6744\t0x7F12\n0x6745\t0x7F17\n0x6746\t0x7F19\n0x6747\t0x7F1C\n0x6748\t0x7F1B\n0x6749\t0x7F1F\n0x674A\t0x7F21\n0x674B\t0x7F22\n0x674C\t0x7F23\n0x674D\t0x7F24\n0x674E\t0x7F25\n0x674F\t0x7F26\n0x6750\t0x7F27\n0x6751\t0x7F2A\n0x6752\t0x7F2B\n0x6753\t0x7F2C\n0x6754\t0x7F2D\n0x6755\t0x7F2F\n0x6756\t0x7F30\n0x6757\t0x7F31\n0x6758\t0x7F32\n0x6759\t0x7F33\n0x675A\t0x7F35\n0x675B\t0x5E7A\n0x675C\t0x757F\n0x675D\t0x5DDB\n0x675E\t0x753E\n0x675F\t0x9095\n0x6760\t0x738E\n0x6761\t0x7391\n0x6762\t0x73AE\n0x6763\t0x73A2\n0x6764\t0x739F\n0x6765\t0x73CF\n0x6766\t0x73C2\n0x6767\t0x73D1\n0x6768\t0x73B7\n0x6769\t0x73B3\n0x676A\t0x73C0\n0x676B\t0x73C9\n0x676C\t0x73C8\n0x676D\t0x73E5\n0x676E\t0x73D9\n0x676F\t0x987C\n0x6770\t0x740A\n0x6771\t0x73E9\n0x6772\t0x73E7\n0x6773\t0x73DE\n0x6774\t0x73BA\n0x6775\t0x73F2\n0x6776\t0x740F\n0x6777\t0x742A\n0x6778\t0x745B\n0x6779\t0x7426\n0x677A\t0x7425\n0x677B\t0x7428\n0x677C\t0x7430\n0x677D\t0x742E\n0x677E\t0x742C\n0x6821\t0x741B\n0x6822\t0x741A\n0x6823\t0x7441\n0x6824\t0x745C\n0x6825\t0x7457\n0x6826\t0x7455\n0x6827\t0x7459\n0x6828\t0x7477\n0x6829\t0x746D\n0x682A\t0x747E\n0x682B\t0x749C\n0x682C\t0x748E\n0x682D\t0x7480\n0x682E\t0x7481\n0x682F\t0x7487\n0x6830\t0x748B\n0x6831\t0x749E\n0x6832\t0x74A8\n0x6833\t0x74A9\n0x6834\t0x7490\n0x6835\t0x74A7\n0x6836\t0x74D2\n0x6837\t0x74BA\n0x6838\t0x97EA\n0x6839\t0x97EB\n0x683A\t0x97EC\n0x683B\t0x674C\n0x683C\t0x6753\n0x683D\t0x675E\n0x683E\t0x6748\n0x683F\t0x6769\n0x6840\t0x67A5\n0x6841\t0x6787\n0x6842\t0x676A\n0x6843\t0x6773\n0x6844\t0x6798\n0x6845\t0x67A7\n0x6846\t0x6775\n0x6847\t0x67A8\n0x6848\t0x679E\n0x6849\t0x67AD\n0x684A\t0x678B\n0x684B\t0x6777\n0x684C\t0x677C\n0x684D\t0x67F0\n0x684E\t0x6809\n0x684F\t0x67D8\n0x6850\t0x680A\n0x6851\t0x67E9\n0x6852\t0x67B0\n0x6853\t0x680C\n0x6854\t0x67D9\n0x6855\t0x67B5\n0x6856\t0x67DA\n0x6857\t0x67B3\n0x6858\t0x67DD\n0x6859\t0x6800\n0x685A\t0x67C3\n0x685B\t0x67B8\n0x685C\t0x67E2\n0x685D\t0x680E\n0x685E\t0x67C1\n0x685F\t0x67FD\n0x6860\t0x6832\n0x6861\t0x6833\n0x6862\t0x6860\n0x6863\t0x6861\n0x6864\t0x684E\n0x6865\t0x6862\n0x6866\t0x6844\n0x6867\t0x6864\n0x6868\t0x6883\n0x6869\t0x681D\n0x686A\t0x6855\n0x686B\t0x6866\n0x686C\t0x6841\n0x686D\t0x6867\n0x686E\t0x6840\n0x686F\t0x683E\n0x6870\t0x684A\n0x6871\t0x6849\n0x6872\t0x6829\n0x6873\t0x68B5\n0x6874\t0x688F\n0x6875\t0x6874\n0x6876\t0x6877\n0x6877\t0x6893\n0x6878\t0x686B\n0x6879\t0x68C2\n0x687A\t0x696E\n0x687B\t0x68FC\n0x687C\t0x691F\n0x687D\t0x6920\n0x687E\t0x68F9\n0x6921\t0x6924\n0x6922\t0x68F0\n0x6923\t0x690B\n0x6924\t0x6901\n0x6925\t0x6957\n0x6926\t0x68E3\n0x6927\t0x6910\n0x6928\t0x6971\n0x6929\t0x6939\n0x692A\t0x6960\n0x692B\t0x6942\n0x692C\t0x695D\n0x692D\t0x6984\n0x692E\t0x696B\n0x692F\t0x6980\n0x6930\t0x6998\n0x6931\t0x6978\n0x6932\t0x6934\n0x6933\t0x69CC\n0x6934\t0x6987\n0x6935\t0x6988\n0x6936\t0x69CE\n0x6937\t0x6989\n0x6938\t0x6966\n0x6939\t0x6963\n0x693A\t0x6979\n0x693B\t0x699B\n0x693C\t0x69A7\n0x693D\t0x69BB\n0x693E\t0x69AB\n0x693F\t0x69AD\n0x6940\t0x69D4\n0x6941\t0x69B1\n0x6942\t0x69C1\n0x6943\t0x69CA\n0x6944\t0x69DF\n0x6945\t0x6995\n0x6946\t0x69E0\n0x6947\t0x698D\n0x6948\t0x69FF\n0x6949\t0x6A2F\n0x694A\t0x69ED\n0x694B\t0x6A17\n0x694C\t0x6A18\n0x694D\t0x6A65\n0x694E\t0x69F2\n0x694F\t0x6A44\n0x6950\t0x6A3E\n0x6951\t0x6AA0\n0x6952\t0x6A50\n0x6953\t0x6A5B\n0x6954\t0x6A35\n0x6955\t0x6A8E\n0x6956\t0x6A79\n0x6957\t0x6A3D\n0x6958\t0x6A28\n0x6959\t0x6A58\n0x695A\t0x6A7C\n0x695B\t0x6A91\n0x695C\t0x6A90\n0x695D\t0x6AA9\n0x695E\t0x6A97\n0x695F\t0x6AAB\n0x6960\t0x7337\n0x6961\t0x7352\n0x6962\t0x6B81\n0x6963\t0x6B82\n0x6964\t0x6B87\n0x6965\t0x6B84\n0x6966\t0x6B92\n0x6967\t0x6B93\n0x6968\t0x6B8D\n0x6969\t0x6B9A\n0x696A\t0x6B9B\n0x696B\t0x6BA1\n0x696C\t0x6BAA\n0x696D\t0x8F6B\n0x696E\t0x8F6D\n0x696F\t0x8F71\n0x6970\t0x8F72\n0x6971\t0x8F73\n0x6972\t0x8F75\n0x6973\t0x8F76\n0x6974\t0x8F78\n0x6975\t0x8F77\n0x6976\t0x8F79\n0x6977\t0x8F7A\n0x6978\t0x8F7C\n0x6979\t0x8F7E\n0x697A\t0x8F81\n0x697B\t0x8F82\n0x697C\t0x8F84\n0x697D\t0x8F87\n0x697E\t0x8F8B\n0x6A21\t0x8F8D\n0x6A22\t0x8F8E\n0x6A23\t0x8F8F\n0x6A24\t0x8F98\n0x6A25\t0x8F9A\n0x6A26\t0x8ECE\n0x6A27\t0x620B\n0x6A28\t0x6217\n0x6A29\t0x621B\n0x6A2A\t0x621F\n0x6A2B\t0x6222\n0x6A2C\t0x6221\n0x6A2D\t0x6225\n0x6A2E\t0x6224\n0x6A2F\t0x622C\n0x6A30\t0x81E7\n0x6A31\t0x74EF\n0x6A32\t0x74F4\n0x6A33\t0x74FF\n0x6A34\t0x750F\n0x6A35\t0x7511\n0x6A36\t0x7513\n0x6A37\t0x6534\n0x6A38\t0x65EE\n0x6A39\t0x65EF\n0x6A3A\t0x65F0\n0x6A3B\t0x660A\n0x6A3C\t0x6619\n0x6A3D\t0x6772\n0x6A3E\t0x6603\n0x6A3F\t0x6615\n0x6A40\t0x6600\n0x6A41\t0x7085\n0x6A42\t0x66F7\n0x6A43\t0x661D\n0x6A44\t0x6634\n0x6A45\t0x6631\n0x6A46\t0x6636\n0x6A47\t0x6635\n0x6A48\t0x8006\n0x6A49\t0x665F\n0x6A4A\t0x6654\n0x6A4B\t0x6641\n0x6A4C\t0x664F\n0x6A4D\t0x6656\n0x6A4E\t0x6661\n0x6A4F\t0x6657\n0x6A50\t0x6677\n0x6A51\t0x6684\n0x6A52\t0x668C\n0x6A53\t0x66A7\n0x6A54\t0x669D\n0x6A55\t0x66BE\n0x6A56\t0x66DB\n0x6A57\t0x66DC\n0x6A58\t0x66E6\n0x6A59\t0x66E9\n0x6A5A\t0x8D32\n0x6A5B\t0x8D33\n0x6A5C\t0x8D36\n0x6A5D\t0x8D3B\n0x6A5E\t0x8D3D\n0x6A5F\t0x8D40\n0x6A60\t0x8D45\n0x6A61\t0x8D46\n0x6A62\t0x8D48\n0x6A63\t0x8D49\n0x6A64\t0x8D47\n0x6A65\t0x8D4D\n0x6A66\t0x8D55\n0x6A67\t0x8D59\n0x6A68\t0x89C7\n0x6A69\t0x89CA\n0x6A6A\t0x89CB\n0x6A6B\t0x89CC\n0x6A6C\t0x89CE\n0x6A6D\t0x89CF\n0x6A6E\t0x89D0\n0x6A6F\t0x89D1\n0x6A70\t0x726E\n0x6A71\t0x729F\n0x6A72\t0x725D\n0x6A73\t0x7266\n0x6A74\t0x726F\n0x6A75\t0x727E\n0x6A76\t0x727F\n0x6A77\t0x7284\n0x6A78\t0x728B\n0x6A79\t0x728D\n0x6A7A\t0x728F\n0x6A7B\t0x7292\n0x6A7C\t0x6308\n0x6A7D\t0x6332\n0x6A7E\t0x63B0\n0x6B21\t0x643F\n0x6B22\t0x64D8\n0x6B23\t0x8004\n0x6B24\t0x6BEA\n0x6B25\t0x6BF3\n0x6B26\t0x6BFD\n0x6B27\t0x6BF5\n0x6B28\t0x6BF9\n0x6B29\t0x6C05\n0x6B2A\t0x6C07\n0x6B2B\t0x6C06\n0x6B2C\t0x6C0D\n0x6B2D\t0x6C15\n0x6B2E\t0x6C18\n0x6B2F\t0x6C19\n0x6B30\t0x6C1A\n0x6B31\t0x6C21\n0x6B32\t0x6C29\n0x6B33\t0x6C24\n0x6B34\t0x6C2A\n0x6B35\t0x6C32\n0x6B36\t0x6535\n0x6B37\t0x6555\n0x6B38\t0x656B\n0x6B39\t0x724D\n0x6B3A\t0x7252\n0x6B3B\t0x7256\n0x6B3C\t0x7230\n0x6B3D\t0x8662\n0x6B3E\t0x5216\n0x6B3F\t0x809F\n0x6B40\t0x809C\n0x6B41\t0x8093\n0x6B42\t0x80BC\n0x6B43\t0x670A\n0x6B44\t0x80BD\n0x6B45\t0x80B1\n0x6B46\t0x80AB\n0x6B47\t0x80AD\n0x6B48\t0x80B4\n0x6B49\t0x80B7\n0x6B4A\t0x80E7\n0x6B4B\t0x80E8\n0x6B4C\t0x80E9\n0x6B4D\t0x80EA\n0x6B4E\t0x80DB\n0x6B4F\t0x80C2\n0x6B50\t0x80C4\n0x6B51\t0x80D9\n0x6B52\t0x80CD\n0x6B53\t0x80D7\n0x6B54\t0x6710\n0x6B55\t0x80DD\n0x6B56\t0x80EB\n0x6B57\t0x80F1\n0x6B58\t0x80F4\n0x6B59\t0x80ED\n0x6B5A\t0x810D\n0x6B5B\t0x810E\n0x6B5C\t0x80F2\n0x6B5D\t0x80FC\n0x6B5E\t0x6715\n0x6B5F\t0x8112\n0x6B60\t0x8C5A\n0x6B61\t0x8136\n0x6B62\t0x811E\n0x6B63\t0x812C\n0x6B64\t0x8118\n0x6B65\t0x8132\n0x6B66\t0x8148\n0x6B67\t0x814C\n0x6B68\t0x8153\n0x6B69\t0x8174\n0x6B6A\t0x8159\n0x6B6B\t0x815A\n0x6B6C\t0x8171\n0x6B6D\t0x8160\n0x6B6E\t0x8169\n0x6B6F\t0x817C\n0x6B70\t0x817D\n0x6B71\t0x816D\n0x6B72\t0x8167\n0x6B73\t0x584D\n0x6B74\t0x5AB5\n0x6B75\t0x8188\n0x6B76\t0x8182\n0x6B77\t0x8191\n0x6B78\t0x6ED5\n0x6B79\t0x81A3\n0x6B7A\t0x81AA\n0x6B7B\t0x81CC\n0x6B7C\t0x6726\n0x6B7D\t0x81CA\n0x6B7E\t0x81BB\n0x6C21\t0x81C1\n0x6C22\t0x81A6\n0x6C23\t0x6B24\n0x6C24\t0x6B37\n0x6C25\t0x6B39\n0x6C26\t0x6B43\n0x6C27\t0x6B46\n0x6C28\t0x6B59\n0x6C29\t0x98D1\n0x6C2A\t0x98D2\n0x6C2B\t0x98D3\n0x6C2C\t0x98D5\n0x6C2D\t0x98D9\n0x6C2E\t0x98DA\n0x6C2F\t0x6BB3\n0x6C30\t0x5F40\n0x6C31\t0x6BC2\n0x6C32\t0x89F3\n0x6C33\t0x6590\n0x6C34\t0x9F51\n0x6C35\t0x6593\n0x6C36\t0x65BC\n0x6C37\t0x65C6\n0x6C38\t0x65C4\n0x6C39\t0x65C3\n0x6C3A\t0x65CC\n0x6C3B\t0x65CE\n0x6C3C\t0x65D2\n0x6C3D\t0x65D6\n0x6C3E\t0x7080\n0x6C3F\t0x709C\n0x6C40\t0x7096\n0x6C41\t0x709D\n0x6C42\t0x70BB\n0x6C43\t0x70C0\n0x6C44\t0x70B7\n0x6C45\t0x70AB\n0x6C46\t0x70B1\n0x6C47\t0x70E8\n0x6C48\t0x70CA\n0x6C49\t0x7110\n0x6C4A\t0x7113\n0x6C4B\t0x7116\n0x6C4C\t0x712F\n0x6C4D\t0x7131\n0x6C4E\t0x7173\n0x6C4F\t0x715C\n0x6C50\t0x7168\n0x6C51\t0x7145\n0x6C52\t0x7172\n0x6C53\t0x714A\n0x6C54\t0x7178\n0x6C55\t0x717A\n0x6C56\t0x7198\n0x6C57\t0x71B3\n0x6C58\t0x71B5\n0x6C59\t0x71A8\n0x6C5A\t0x71A0\n0x6C5B\t0x71E0\n0x6C5C\t0x71D4\n0x6C5D\t0x71E7\n0x6C5E\t0x71F9\n0x6C5F\t0x721D\n0x6C60\t0x7228\n0x6C61\t0x706C\n0x6C62\t0x7118\n0x6C63\t0x7166\n0x6C64\t0x71B9\n0x6C65\t0x623E\n0x6C66\t0x623D\n0x6C67\t0x6243\n0x6C68\t0x6248\n0x6C69\t0x6249\n0x6C6A\t0x793B\n0x6C6B\t0x7940\n0x6C6C\t0x7946\n0x6C6D\t0x7949\n0x6C6E\t0x795B\n0x6C6F\t0x795C\n0x6C70\t0x7953\n0x6C71\t0x795A\n0x6C72\t0x7962\n0x6C73\t0x7957\n0x6C74\t0x7960\n0x6C75\t0x796F\n0x6C76\t0x7967\n0x6C77\t0x797A\n0x6C78\t0x7985\n0x6C79\t0x798A\n0x6C7A\t0x799A\n0x6C7B\t0x79A7\n0x6C7C\t0x79B3\n0x6C7D\t0x5FD1\n0x6C7E\t0x5FD0\n0x6D21\t0x603C\n0x6D22\t0x605D\n0x6D23\t0x605A\n0x6D24\t0x6067\n0x6D25\t0x6041\n0x6D26\t0x6059\n0x6D27\t0x6063\n0x6D28\t0x60AB\n0x6D29\t0x6106\n0x6D2A\t0x610D\n0x6D2B\t0x615D\n0x6D2C\t0x61A9\n0x6D2D\t0x619D\n0x6D2E\t0x61CB\n0x6D2F\t0x61D1\n0x6D30\t0x6206\n0x6D31\t0x8080\n0x6D32\t0x807F\n0x6D33\t0x6C93\n0x6D34\t0x6CF6\n0x6D35\t0x6DFC\n0x6D36\t0x77F6\n0x6D37\t0x77F8\n0x6D38\t0x7800\n0x6D39\t0x7809\n0x6D3A\t0x7817\n0x6D3B\t0x7818\n0x6D3C\t0x7811\n0x6D3D\t0x65AB\n0x6D3E\t0x782D\n0x6D3F\t0x781C\n0x6D40\t0x781D\n0x6D41\t0x7839\n0x6D42\t0x783A\n0x6D43\t0x783B\n0x6D44\t0x781F\n0x6D45\t0x783C\n0x6D46\t0x7825\n0x6D47\t0x782C\n0x6D48\t0x7823\n0x6D49\t0x7829\n0x6D4A\t0x784E\n0x6D4B\t0x786D\n0x6D4C\t0x7856\n0x6D4D\t0x7857\n0x6D4E\t0x7826\n0x6D4F\t0x7850\n0x6D50\t0x7847\n0x6D51\t0x784C\n0x6D52\t0x786A\n0x6D53\t0x789B\n0x6D54\t0x7893\n0x6D55\t0x789A\n0x6D56\t0x7887\n0x6D57\t0x789C\n0x6D58\t0x78A1\n0x6D59\t0x78A3\n0x6D5A\t0x78B2\n0x6D5B\t0x78B9\n0x6D5C\t0x78A5\n0x6D5D\t0x78D4\n0x6D5E\t0x78D9\n0x6D5F\t0x78C9\n0x6D60\t0x78EC\n0x6D61\t0x78F2\n0x6D62\t0x7905\n0x6D63\t0x78F4\n0x6D64\t0x7913\n0x6D65\t0x7924\n0x6D66\t0x791E\n0x6D67\t0x7934\n0x6D68\t0x9F9B\n0x6D69\t0x9EF9\n0x6D6A\t0x9EFB\n0x6D6B\t0x9EFC\n0x6D6C\t0x76F1\n0x6D6D\t0x7704\n0x6D6E\t0x770D\n0x6D6F\t0x76F9\n0x6D70\t0x7707\n0x6D71\t0x7708\n0x6D72\t0x771A\n0x6D73\t0x7722\n0x6D74\t0x7719\n0x6D75\t0x772D\n0x6D76\t0x7726\n0x6D77\t0x7735\n0x6D78\t0x7738\n0x6D79\t0x7750\n0x6D7A\t0x7751\n0x6D7B\t0x7747\n0x6D7C\t0x7743\n0x6D7D\t0x775A\n0x6D7E\t0x7768\n0x6E21\t0x7762\n0x6E22\t0x7765\n0x6E23\t0x777F\n0x6E24\t0x778D\n0x6E25\t0x777D\n0x6E26\t0x7780\n0x6E27\t0x778C\n0x6E28\t0x7791\n0x6E29\t0x779F\n0x6E2A\t0x77A0\n0x6E2B\t0x77B0\n0x6E2C\t0x77B5\n0x6E2D\t0x77BD\n0x6E2E\t0x753A\n0x6E2F\t0x7540\n0x6E30\t0x754E\n0x6E31\t0x754B\n0x6E32\t0x7548\n0x6E33\t0x755B\n0x6E34\t0x7572\n0x6E35\t0x7579\n0x6E36\t0x7583\n0x6E37\t0x7F58\n0x6E38\t0x7F61\n0x6E39\t0x7F5F\n0x6E3A\t0x8A48\n0x6E3B\t0x7F68\n0x6E3C\t0x7F74\n0x6E3D\t0x7F71\n0x6E3E\t0x7F79\n0x6E3F\t0x7F81\n0x6E40\t0x7F7E\n0x6E41\t0x76CD\n0x6E42\t0x76E5\n0x6E43\t0x8832\n0x6E44\t0x9485\n0x6E45\t0x9486\n0x6E46\t0x9487\n0x6E47\t0x948B\n0x6E48\t0x948A\n0x6E49\t0x948C\n0x6E4A\t0x948D\n0x6E4B\t0x948F\n0x6E4C\t0x9490\n0x6E4D\t0x9494\n0x6E4E\t0x9497\n0x6E4F\t0x9495\n0x6E50\t0x949A\n0x6E51\t0x949B\n0x6E52\t0x949C\n0x6E53\t0x94A3\n0x6E54\t0x94A4\n0x6E55\t0x94AB\n0x6E56\t0x94AA\n0x6E57\t0x94AD\n0x6E58\t0x94AC\n0x6E59\t0x94AF\n0x6E5A\t0x94B0\n0x6E5B\t0x94B2\n0x6E5C\t0x94B4\n0x6E5D\t0x94B6\n0x6E5E\t0x94B7\n0x6E5F\t0x94B8\n0x6E60\t0x94B9\n0x6E61\t0x94BA\n0x6E62\t0x94BC\n0x6E63\t0x94BD\n0x6E64\t0x94BF\n0x6E65\t0x94C4\n0x6E66\t0x94C8\n0x6E67\t0x94C9\n0x6E68\t0x94CA\n0x6E69\t0x94CB\n0x6E6A\t0x94CC\n0x6E6B\t0x94CD\n0x6E6C\t0x94CE\n0x6E6D\t0x94D0\n0x6E6E\t0x94D1\n0x6E6F\t0x94D2\n0x6E70\t0x94D5\n0x6E71\t0x94D6\n0x6E72\t0x94D7\n0x6E73\t0x94D9\n0x6E74\t0x94D8\n0x6E75\t0x94DB\n0x6E76\t0x94DE\n0x6E77\t0x94DF\n0x6E78\t0x94E0\n0x6E79\t0x94E2\n0x6E7A\t0x94E4\n0x6E7B\t0x94E5\n0x6E7C\t0x94E7\n0x6E7D\t0x94E8\n0x6E7E\t0x94EA\n0x6F21\t0x94E9\n0x6F22\t0x94EB\n0x6F23\t0x94EE\n0x6F24\t0x94EF\n0x6F25\t0x94F3\n0x6F26\t0x94F4\n0x6F27\t0x94F5\n0x6F28\t0x94F7\n0x6F29\t0x94F9\n0x6F2A\t0x94FC\n0x6F2B\t0x94FD\n0x6F2C\t0x94FF\n0x6F2D\t0x9503\n0x6F2E\t0x9502\n0x6F2F\t0x9506\n0x6F30\t0x9507\n0x6F31\t0x9509\n0x6F32\t0x950A\n0x6F33\t0x950D\n0x6F34\t0x950E\n0x6F35\t0x950F\n0x6F36\t0x9512\n0x6F37\t0x9513\n0x6F38\t0x9514\n0x6F39\t0x9515\n0x6F3A\t0x9516\n0x6F3B\t0x9518\n0x6F3C\t0x951B\n0x6F3D\t0x951D\n0x6F3E\t0x951E\n0x6F3F\t0x951F\n0x6F40\t0x9522\n0x6F41\t0x952A\n0x6F42\t0x952B\n0x6F43\t0x9529\n0x6F44\t0x952C\n0x6F45\t0x9531\n0x6F46\t0x9532\n0x6F47\t0x9534\n0x6F48\t0x9536\n0x6F49\t0x9537\n0x6F4A\t0x9538\n0x6F4B\t0x953C\n0x6F4C\t0x953E\n0x6F4D\t0x953F\n0x6F4E\t0x9542\n0x6F4F\t0x9535\n0x6F50\t0x9544\n0x6F51\t0x9545\n0x6F52\t0x9546\n0x6F53\t0x9549\n0x6F54\t0x954C\n0x6F55\t0x954E\n0x6F56\t0x954F\n0x6F57\t0x9552\n0x6F58\t0x9553\n0x6F59\t0x9554\n0x6F5A\t0x9556\n0x6F5B\t0x9557\n0x6F5C\t0x9558\n0x6F5D\t0x9559\n0x6F5E\t0x955B\n0x6F5F\t0x955E\n0x6F60\t0x955F\n0x6F61\t0x955D\n0x6F62\t0x9561\n0x6F63\t0x9562\n0x6F64\t0x9564\n0x6F65\t0x9565\n0x6F66\t0x9566\n0x6F67\t0x9567\n0x6F68\t0x9568\n0x6F69\t0x9569\n0x6F6A\t0x956A\n0x6F6B\t0x956B\n0x6F6C\t0x956C\n0x6F6D\t0x956F\n0x6F6E\t0x9571\n0x6F6F\t0x9572\n0x6F70\t0x9573\n0x6F71\t0x953A\n0x6F72\t0x77E7\n0x6F73\t0x77EC\n0x6F74\t0x96C9\n0x6F75\t0x79D5\n0x6F76\t0x79ED\n0x6F77\t0x79E3\n0x6F78\t0x79EB\n0x6F79\t0x7A06\n0x6F7A\t0x5D47\n0x6F7B\t0x7A03\n0x6F7C\t0x7A02\n0x6F7D\t0x7A1E\n0x6F7E\t0x7A14\n0x7021\t0x7A39\n0x7022\t0x7A37\n0x7023\t0x7A51\n0x7024\t0x9ECF\n0x7025\t0x99A5\n0x7026\t0x7A70\n0x7027\t0x7688\n0x7028\t0x768E\n0x7029\t0x7693\n0x702A\t0x7699\n0x702B\t0x76A4\n0x702C\t0x74DE\n0x702D\t0x74E0\n0x702E\t0x752C\n0x702F\t0x9E20\n0x7030\t0x9E22\n0x7031\t0x9E28\n0x7032\t0x9E29\n0x7033\t0x9E2A\n0x7034\t0x9E2B\n0x7035\t0x9E2C\n0x7036\t0x9E32\n0x7037\t0x9E31\n0x7038\t0x9E36\n0x7039\t0x9E38\n0x703A\t0x9E37\n0x703B\t0x9E39\n0x703C\t0x9E3A\n0x703D\t0x9E3E\n0x703E\t0x9E41\n0x703F\t0x9E42\n0x7040\t0x9E44\n0x7041\t0x9E46\n0x7042\t0x9E47\n0x7043\t0x9E48\n0x7044\t0x9E49\n0x7045\t0x9E4B\n0x7046\t0x9E4C\n0x7047\t0x9E4E\n0x7048\t0x9E51\n0x7049\t0x9E55\n0x704A\t0x9E57\n0x704B\t0x9E5A\n0x704C\t0x9E5B\n0x704D\t0x9E5C\n0x704E\t0x9E5E\n0x704F\t0x9E63\n0x7050\t0x9E66\n0x7051\t0x9E67\n0x7052\t0x9E68\n0x7053\t0x9E69\n0x7054\t0x9E6A\n0x7055\t0x9E6B\n0x7056\t0x9E6C\n0x7057\t0x9E71\n0x7058\t0x9E6D\n0x7059\t0x9E73\n0x705A\t0x7592\n0x705B\t0x7594\n0x705C\t0x7596\n0x705D\t0x75A0\n0x705E\t0x759D\n0x705F\t0x75AC\n0x7060\t0x75A3\n0x7061\t0x75B3\n0x7062\t0x75B4\n0x7063\t0x75B8\n0x7064\t0x75C4\n0x7065\t0x75B1\n0x7066\t0x75B0\n0x7067\t0x75C3\n0x7068\t0x75C2\n0x7069\t0x75D6\n0x706A\t0x75CD\n0x706B\t0x75E3\n0x706C\t0x75E8\n0x706D\t0x75E6\n0x706E\t0x75E4\n0x706F\t0x75EB\n0x7070\t0x75E7\n0x7071\t0x7603\n0x7072\t0x75F1\n0x7073\t0x75FC\n0x7074\t0x75FF\n0x7075\t0x7610\n0x7076\t0x7600\n0x7077\t0x7605\n0x7078\t0x760C\n0x7079\t0x7617\n0x707A\t0x760A\n0x707B\t0x7625\n0x707C\t0x7618\n0x707D\t0x7615\n0x707E\t0x7619\n0x7121\t0x761B\n0x7122\t0x763C\n0x7123\t0x7622\n0x7124\t0x7620\n0x7125\t0x7640\n0x7126\t0x762D\n0x7127\t0x7630\n0x7128\t0x763F\n0x7129\t0x7635\n0x712A\t0x7643\n0x712B\t0x763E\n0x712C\t0x7633\n0x712D\t0x764D\n0x712E\t0x765E\n0x712F\t0x7654\n0x7130\t0x765C\n0x7131\t0x7656\n0x7132\t0x766B\n0x7133\t0x766F\n0x7134\t0x7FCA\n0x7135\t0x7AE6\n0x7136\t0x7A78\n0x7137\t0x7A79\n0x7138\t0x7A80\n0x7139\t0x7A86\n0x713A\t0x7A88\n0x713B\t0x7A95\n0x713C\t0x7AA6\n0x713D\t0x7AA0\n0x713E\t0x7AAC\n0x713F\t0x7AA8\n0x7140\t0x7AAD\n0x7141\t0x7AB3\n0x7142\t0x8864\n0x7143\t0x8869\n0x7144\t0x8872\n0x7145\t0x887D\n0x7146\t0x887F\n0x7147\t0x8882\n0x7148\t0x88A2\n0x7149\t0x88C6\n0x714A\t0x88B7\n0x714B\t0x88BC\n0x714C\t0x88C9\n0x714D\t0x88E2\n0x714E\t0x88CE\n0x714F\t0x88E3\n0x7150\t0x88E5\n0x7151\t0x88F1\n0x7152\t0x891A\n0x7153\t0x88FC\n0x7154\t0x88E8\n0x7155\t0x88FE\n0x7156\t0x88F0\n0x7157\t0x8921\n0x7158\t0x8919\n0x7159\t0x8913\n0x715A\t0x891B\n0x715B\t0x890A\n0x715C\t0x8934\n0x715D\t0x892B\n0x715E\t0x8936\n0x715F\t0x8941\n0x7160\t0x8966\n0x7161\t0x897B\n0x7162\t0x758B\n0x7163\t0x80E5\n0x7164\t0x76B2\n0x7165\t0x76B4\n0x7166\t0x77DC\n0x7167\t0x8012\n0x7168\t0x8014\n0x7169\t0x8016\n0x716A\t0x801C\n0x716B\t0x8020\n0x716C\t0x8022\n0x716D\t0x8025\n0x716E\t0x8026\n0x716F\t0x8027\n0x7170\t0x8029\n0x7171\t0x8028\n0x7172\t0x8031\n0x7173\t0x800B\n0x7174\t0x8035\n0x7175\t0x8043\n0x7176\t0x8046\n0x7177\t0x804D\n0x7178\t0x8052\n0x7179\t0x8069\n0x717A\t0x8071\n0x717B\t0x8983\n0x717C\t0x9878\n0x717D\t0x9880\n0x717E\t0x9883\n0x7221\t0x9889\n0x7222\t0x988C\n0x7223\t0x988D\n0x7224\t0x988F\n0x7225\t0x9894\n0x7226\t0x989A\n0x7227\t0x989B\n0x7228\t0x989E\n0x7229\t0x989F\n0x722A\t0x98A1\n0x722B\t0x98A2\n0x722C\t0x98A5\n0x722D\t0x98A6\n0x722E\t0x864D\n0x722F\t0x8654\n0x7230\t0x866C\n0x7231\t0x866E\n0x7232\t0x867F\n0x7233\t0x867A\n0x7234\t0x867C\n0x7235\t0x867B\n0x7236\t0x86A8\n0x7237\t0x868D\n0x7238\t0x868B\n0x7239\t0x86AC\n0x723A\t0x869D\n0x723B\t0x86A7\n0x723C\t0x86A3\n0x723D\t0x86AA\n0x723E\t0x8693\n0x723F\t0x86A9\n0x7240\t0x86B6\n0x7241\t0x86C4\n0x7242\t0x86B5\n0x7243\t0x86CE\n0x7244\t0x86B0\n0x7245\t0x86BA\n0x7246\t0x86B1\n0x7247\t0x86AF\n0x7248\t0x86C9\n0x7249\t0x86CF\n0x724A\t0x86B4\n0x724B\t0x86E9\n0x724C\t0x86F1\n0x724D\t0x86F2\n0x724E\t0x86ED\n0x724F\t0x86F3\n0x7250\t0x86D0\n0x7251\t0x8713\n0x7252\t0x86DE\n0x7253\t0x86F4\n0x7254\t0x86DF\n0x7255\t0x86D8\n0x7256\t0x86D1\n0x7257\t0x8703\n0x7258\t0x8707\n0x7259\t0x86F8\n0x725A\t0x8708\n0x725B\t0x870A\n0x725C\t0x870D\n0x725D\t0x8709\n0x725E\t0x8723\n0x725F\t0x873B\n0x7260\t0x871E\n0x7261\t0x8725\n0x7262\t0x872E\n0x7263\t0x871A\n0x7264\t0x873E\n0x7265\t0x8748\n0x7266\t0x8734\n0x7267\t0x8731\n0x7268\t0x8729\n0x7269\t0x8737\n0x726A\t0x873F\n0x726B\t0x8782\n0x726C\t0x8722\n0x726D\t0x877D\n0x726E\t0x877E\n0x726F\t0x877B\n0x7270\t0x8760\n0x7271\t0x8770\n0x7272\t0x874C\n0x7273\t0x876E\n0x7274\t0x878B\n0x7275\t0x8753\n0x7276\t0x8763\n0x7277\t0x877C\n0x7278\t0x8764\n0x7279\t0x8759\n0x727A\t0x8765\n0x727B\t0x8793\n0x727C\t0x87AF\n0x727D\t0x87A8\n0x727E\t0x87D2\n0x7321\t0x87C6\n0x7322\t0x8788\n0x7323\t0x8785\n0x7324\t0x87AD\n0x7325\t0x8797\n0x7326\t0x8783\n0x7327\t0x87AB\n0x7328\t0x87E5\n0x7329\t0x87AC\n0x732A\t0x87B5\n0x732B\t0x87B3\n0x732C\t0x87CB\n0x732D\t0x87D3\n0x732E\t0x87BD\n0x732F\t0x87D1\n0x7330\t0x87C0\n0x7331\t0x87CA\n0x7332\t0x87DB\n0x7333\t0x87EA\n0x7334\t0x87E0\n0x7335\t0x87EE\n0x7336\t0x8816\n0x7337\t0x8813\n0x7338\t0x87FE\n0x7339\t0x880A\n0x733A\t0x881B\n0x733B\t0x8821\n0x733C\t0x8839\n0x733D\t0x883C\n0x733E\t0x7F36\n0x733F\t0x7F42\n0x7340\t0x7F44\n0x7341\t0x7F45\n0x7342\t0x8210\n0x7343\t0x7AFA\n0x7344\t0x7AFD\n0x7345\t0x7B08\n0x7346\t0x7B03\n0x7347\t0x7B04\n0x7348\t0x7B15\n0x7349\t0x7B0A\n0x734A\t0x7B2B\n0x734B\t0x7B0F\n0x734C\t0x7B47\n0x734D\t0x7B38\n0x734E\t0x7B2A\n0x734F\t0x7B19\n0x7350\t0x7B2E\n0x7351\t0x7B31\n0x7352\t0x7B20\n0x7353\t0x7B25\n0x7354\t0x7B24\n0x7355\t0x7B33\n0x7356\t0x7B3E\n0x7357\t0x7B1E\n0x7358\t0x7B58\n0x7359\t0x7B5A\n0x735A\t0x7B45\n0x735B\t0x7B75\n0x735C\t0x7B4C\n0x735D\t0x7B5D\n0x735E\t0x7B60\n0x735F\t0x7B6E\n0x7360\t0x7B7B\n0x7361\t0x7B62\n0x7362\t0x7B72\n0x7363\t0x7B71\n0x7364\t0x7B90\n0x7365\t0x7BA6\n0x7366\t0x7BA7\n0x7367\t0x7BB8\n0x7368\t0x7BAC\n0x7369\t0x7B9D\n0x736A\t0x7BA8\n0x736B\t0x7B85\n0x736C\t0x7BAA\n0x736D\t0x7B9C\n0x736E\t0x7BA2\n0x736F\t0x7BAB\n0x7370\t0x7BB4\n0x7371\t0x7BD1\n0x7372\t0x7BC1\n0x7373\t0x7BCC\n0x7374\t0x7BDD\n0x7375\t0x7BDA\n0x7376\t0x7BE5\n0x7377\t0x7BE6\n0x7378\t0x7BEA\n0x7379\t0x7C0C\n0x737A\t0x7BFE\n0x737B\t0x7BFC\n0x737C\t0x7C0F\n0x737D\t0x7C16\n0x737E\t0x7C0B\n0x7421\t0x7C1F\n0x7422\t0x7C2A\n0x7423\t0x7C26\n0x7424\t0x7C38\n0x7425\t0x7C41\n0x7426\t0x7C40\n0x7427\t0x81FE\n0x7428\t0x8201\n0x7429\t0x8202\n0x742A\t0x8204\n0x742B\t0x81EC\n0x742C\t0x8844\n0x742D\t0x8221\n0x742E\t0x8222\n0x742F\t0x8223\n0x7430\t0x822D\n0x7431\t0x822F\n0x7432\t0x8228\n0x7433\t0x822B\n0x7434\t0x8238\n0x7435\t0x823B\n0x7436\t0x8233\n0x7437\t0x8234\n0x7438\t0x823E\n0x7439\t0x8244\n0x743A\t0x8249\n0x743B\t0x824B\n0x743C\t0x824F\n0x743D\t0x825A\n0x743E\t0x825F\n0x743F\t0x8268\n0x7440\t0x887E\n0x7441\t0x8885\n0x7442\t0x8888\n0x7443\t0x88D8\n0x7444\t0x88DF\n0x7445\t0x895E\n0x7446\t0x7F9D\n0x7447\t0x7F9F\n0x7448\t0x7FA7\n0x7449\t0x7FAF\n0x744A\t0x7FB0\n0x744B\t0x7FB2\n0x744C\t0x7C7C\n0x744D\t0x6549\n0x744E\t0x7C91\n0x744F\t0x7C9D\n0x7450\t0x7C9C\n0x7451\t0x7C9E\n0x7452\t0x7CA2\n0x7453\t0x7CB2\n0x7454\t0x7CBC\n0x7455\t0x7CBD\n0x7456\t0x7CC1\n0x7457\t0x7CC7\n0x7458\t0x7CCC\n0x7459\t0x7CCD\n0x745A\t0x7CC8\n0x745B\t0x7CC5\n0x745C\t0x7CD7\n0x745D\t0x7CE8\n0x745E\t0x826E\n0x745F\t0x66A8\n0x7460\t0x7FBF\n0x7461\t0x7FCE\n0x7462\t0x7FD5\n0x7463\t0x7FE5\n0x7464\t0x7FE1\n0x7465\t0x7FE6\n0x7466\t0x7FE9\n0x7467\t0x7FEE\n0x7468\t0x7FF3\n0x7469\t0x7CF8\n0x746A\t0x7D77\n0x746B\t0x7DA6\n0x746C\t0x7DAE\n0x746D\t0x7E47\n0x746E\t0x7E9B\n0x746F\t0x9EB8\n0x7470\t0x9EB4\n0x7471\t0x8D73\n0x7472\t0x8D84\n0x7473\t0x8D94\n0x7474\t0x8D91\n0x7475\t0x8DB1\n0x7476\t0x8D67\n0x7477\t0x8D6D\n0x7478\t0x8C47\n0x7479\t0x8C49\n0x747A\t0x914A\n0x747B\t0x9150\n0x747C\t0x914E\n0x747D\t0x914F\n0x747E\t0x9164\n0x7521\t0x9162\n0x7522\t0x9161\n0x7523\t0x9170\n0x7524\t0x9169\n0x7525\t0x916F\n0x7526\t0x917D\n0x7527\t0x917E\n0x7528\t0x9172\n0x7529\t0x9174\n0x752A\t0x9179\n0x752B\t0x918C\n0x752C\t0x9185\n0x752D\t0x9190\n0x752E\t0x918D\n0x752F\t0x9191\n0x7530\t0x91A2\n0x7531\t0x91A3\n0x7532\t0x91AA\n0x7533\t0x91AD\n0x7534\t0x91AE\n0x7535\t0x91AF\n0x7536\t0x91B5\n0x7537\t0x91B4\n0x7538\t0x91BA\n0x7539\t0x8C55\n0x753A\t0x9E7E\n0x753B\t0x8DB8\n0x753C\t0x8DEB\n0x753D\t0x8E05\n0x753E\t0x8E59\n0x753F\t0x8E69\n0x7540\t0x8DB5\n0x7541\t0x8DBF\n0x7542\t0x8DBC\n0x7543\t0x8DBA\n0x7544\t0x8DC4\n0x7545\t0x8DD6\n0x7546\t0x8DD7\n0x7547\t0x8DDA\n0x7548\t0x8DDE\n0x7549\t0x8DCE\n0x754A\t0x8DCF\n0x754B\t0x8DDB\n0x754C\t0x8DC6\n0x754D\t0x8DEC\n0x754E\t0x8DF7\n0x754F\t0x8DF8\n0x7550\t0x8DE3\n0x7551\t0x8DF9\n0x7552\t0x8DFB\n0x7553\t0x8DE4\n0x7554\t0x8E09\n0x7555\t0x8DFD\n0x7556\t0x8E14\n0x7557\t0x8E1D\n0x7558\t0x8E1F\n0x7559\t0x8E2C\n0x755A\t0x8E2E\n0x755B\t0x8E23\n0x755C\t0x8E2F\n0x755D\t0x8E3A\n0x755E\t0x8E40\n0x755F\t0x8E39\n0x7560\t0x8E35\n0x7561\t0x8E3D\n0x7562\t0x8E31\n0x7563\t0x8E49\n0x7564\t0x8E41\n0x7565\t0x8E42\n0x7566\t0x8E51\n0x7567\t0x8E52\n0x7568\t0x8E4A\n0x7569\t0x8E70\n0x756A\t0x8E76\n0x756B\t0x8E7C\n0x756C\t0x8E6F\n0x756D\t0x8E74\n0x756E\t0x8E85\n0x756F\t0x8E8F\n0x7570\t0x8E94\n0x7571\t0x8E90\n0x7572\t0x8E9C\n0x7573\t0x8E9E\n0x7574\t0x8C78\n0x7575\t0x8C82\n0x7576\t0x8C8A\n0x7577\t0x8C85\n0x7578\t0x8C98\n0x7579\t0x8C94\n0x757A\t0x659B\n0x757B\t0x89D6\n0x757C\t0x89DE\n0x757D\t0x89DA\n0x757E\t0x89DC\n0x7621\t0x89E5\n0x7622\t0x89EB\n0x7623\t0x89EF\n0x7624\t0x8A3E\n0x7625\t0x8B26\n0x7626\t0x9753\n0x7627\t0x96E9\n0x7628\t0x96F3\n0x7629\t0x96EF\n0x762A\t0x9706\n0x762B\t0x9701\n0x762C\t0x9708\n0x762D\t0x970F\n0x762E\t0x970E\n0x762F\t0x972A\n0x7630\t0x972D\n0x7631\t0x9730\n0x7632\t0x973E\n0x7633\t0x9F80\n0x7634\t0x9F83\n0x7635\t0x9F85\n0x7636\t0x9F86\n0x7637\t0x9F87\n0x7638\t0x9F88\n0x7639\t0x9F89\n0x763A\t0x9F8A\n0x763B\t0x9F8C\n0x763C\t0x9EFE\n0x763D\t0x9F0B\n0x763E\t0x9F0D\n0x763F\t0x96B9\n0x7640\t0x96BC\n0x7641\t0x96BD\n0x7642\t0x96CE\n0x7643\t0x96D2\n0x7644\t0x77BF\n0x7645\t0x96E0\n0x7646\t0x928E\n0x7647\t0x92AE\n0x7648\t0x92C8\n0x7649\t0x933E\n0x764A\t0x936A\n0x764B\t0x93CA\n0x764C\t0x938F\n0x764D\t0x943E\n0x764E\t0x946B\n0x764F\t0x9C7F\n0x7650\t0x9C82\n0x7651\t0x9C85\n0x7652\t0x9C86\n0x7653\t0x9C87\n0x7654\t0x9C88\n0x7655\t0x7A23\n0x7656\t0x9C8B\n0x7657\t0x9C8E\n0x7658\t0x9C90\n0x7659\t0x9C91\n0x765A\t0x9C92\n0x765B\t0x9C94\n0x765C\t0x9C95\n0x765D\t0x9C9A\n0x765E\t0x9C9B\n0x765F\t0x9C9E\n0x7660\t0x9C9F\n0x7661\t0x9CA0\n0x7662\t0x9CA1\n0x7663\t0x9CA2\n0x7664\t0x9CA3\n0x7665\t0x9CA5\n0x7666\t0x9CA6\n0x7667\t0x9CA7\n0x7668\t0x9CA8\n0x7669\t0x9CA9\n0x766A\t0x9CAB\n0x766B\t0x9CAD\n0x766C\t0x9CAE\n0x766D\t0x9CB0\n0x766E\t0x9CB1\n0x766F\t0x9CB2\n0x7670\t0x9CB3\n0x7671\t0x9CB4\n0x7672\t0x9CB5\n0x7673\t0x9CB6\n0x7674\t0x9CB7\n0x7675\t0x9CBA\n0x7676\t0x9CBB\n0x7677\t0x9CBC\n0x7678\t0x9CBD\n0x7679\t0x9CC4\n0x767A\t0x9CC5\n0x767B\t0x9CC6\n0x767C\t0x9CC7\n0x767D\t0x9CCA\n0x767E\t0x9CCB\n0x7721\t0x9CCC\n0x7722\t0x9CCD\n0x7723\t0x9CCE\n0x7724\t0x9CCF\n0x7725\t0x9CD0\n0x7726\t0x9CD3\n0x7727\t0x9CD4\n0x7728\t0x9CD5\n0x7729\t0x9CD7\n0x772A\t0x9CD8\n0x772B\t0x9CD9\n0x772C\t0x9CDC\n0x772D\t0x9CDD\n0x772E\t0x9CDF\n0x772F\t0x9CE2\n0x7730\t0x977C\n0x7731\t0x9785\n0x7732\t0x9791\n0x7733\t0x9792\n0x7734\t0x9794\n0x7735\t0x97AF\n0x7736\t0x97AB\n0x7737\t0x97A3\n0x7738\t0x97B2\n0x7739\t0x97B4\n0x773A\t0x9AB1\n0x773B\t0x9AB0\n0x773C\t0x9AB7\n0x773D\t0x9E58\n0x773E\t0x9AB6\n0x773F\t0x9ABA\n0x7740\t0x9ABC\n0x7741\t0x9AC1\n0x7742\t0x9AC0\n0x7743\t0x9AC5\n0x7744\t0x9AC2\n0x7745\t0x9ACB\n0x7746\t0x9ACC\n0x7747\t0x9AD1\n0x7748\t0x9B45\n0x7749\t0x9B43\n0x774A\t0x9B47\n0x774B\t0x9B49\n0x774C\t0x9B48\n0x774D\t0x9B4D\n0x774E\t0x9B51\n0x774F\t0x98E8\n0x7750\t0x990D\n0x7751\t0x992E\n0x7752\t0x9955\n0x7753\t0x9954\n0x7754\t0x9ADF\n0x7755\t0x9AE1\n0x7756\t0x9AE6\n0x7757\t0x9AEF\n0x7758\t0x9AEB\n0x7759\t0x9AFB\n0x775A\t0x9AED\n0x775B\t0x9AF9\n0x775C\t0x9B08\n0x775D\t0x9B0F\n0x775E\t0x9B13\n0x775F\t0x9B1F\n0x7760\t0x9B23\n0x7761\t0x9EBD\n0x7762\t0x9EBE\n0x7763\t0x7E3B\n0x7764\t0x9E82\n0x7765\t0x9E87\n0x7766\t0x9E88\n0x7767\t0x9E8B\n0x7768\t0x9E92\n0x7769\t0x93D6\n0x776A\t0x9E9D\n0x776B\t0x9E9F\n0x776C\t0x9EDB\n0x776D\t0x9EDC\n0x776E\t0x9EDD\n0x776F\t0x9EE0\n0x7770\t0x9EDF\n0x7771\t0x9EE2\n0x7772\t0x9EE9\n0x7773\t0x9EE7\n0x7774\t0x9EE5\n0x7775\t0x9EEA\n0x7776\t0x9EEF\n0x7777\t0x9F22\n0x7778\t0x9F2C\n0x7779\t0x9F2F\n0x777A\t0x9F39\n0x777B\t0x9F37\n0x777C\t0x9F3D\n0x777D\t0x9F3E\n0x777E\t0x9F44\n0x7A21\t0x4E0F\n0x7A22\t0x673F\n0x7A23\t0x4E42\n0x7A24\t0x752A\n0x7A25\t0x592C\n0x7A26\t0x9EE1\n0x7A27\t0x8652\n0x7A28\t0x531C\n0x7A29\t0x5187\n0x7A2A\t0x518F\n0x7A2B\t0x50F0\n0x7A2C\t0x4F0B\n0x7A2D\t0x4F23\n0x7A2E\t0x4F03\n0x7A2F\t0x4F61\n0x7A30\t0x4F7A\n0x7A31\t0x4F6B\n0x7A32\t0x4FEB\n0x7A33\t0x4FF5\n0x7A34\t0x5034\n0x7A35\t0x5022\n0x7A36\t0x4FF6\n0x7A37\t0x5072\n0x7A38\t0x4EB6\n0x7A39\t0x51AE\n0x7A3A\t0x5910\n0x7A3B\t0x6BDA\n0x7A3C\t0x522C\n0x7A3D\t0x5232\n0x7A3E\t0x4FB4\n0x7A3F\t0x5298\n0x7A40\t0x52BB\n0x7A41\t0x52BC\n0x7A42\t0x52CD\n0x7A43\t0x52DA\n0x7A44\t0x52F7\n0x7A45\t0x53C6\n0x7A46\t0x53C7\n0x7A47\t0x5770\n0x7A48\t0x576C\n0x7A49\t0x57B1\n0x7A4A\t0x579F\n0x7A4B\t0x579E\n0x7A4C\t0x57BE\n0x7A4D\t0x57CC\n0x7A4E\t0x580E\n0x7A4F\t0x580C\n0x7A50\t0x57F5\n0x7A51\t0x5809\n0x7A52\t0x583C\n0x7A53\t0x5843\n0x7A54\t0x5845\n0x7A55\t0x5846\n0x7A56\t0x583D\n0x7A57\t0x5853\n0x7A58\t0x5888\n0x7A59\t0x5884\n0x7A5A\t0x58F8\n0x7A5B\t0x56AD\n0x7A5C\t0x5940\n0x7A5D\t0x5953\n0x7A5E\t0x596D\n0x7A5F\t0x5C2A\n0x7A60\t0x54A5\n0x7A61\t0x551D\n0x7A62\t0x5536\n0x7A63\t0x556F\n0x7A64\t0x554D\n0x7A65\t0x569A\n0x7A66\t0x569C\n0x7A67\t0x56F7\n0x7A68\t0x5710\n0x7A69\t0x5719\n0x7A6A\t0x5E17\n0x7A6B\t0x5E21\n0x7A6C\t0x5E28\n0x7A6D\t0x5E6A\n0x7A6E\t0x5C74\n0x7A6F\t0x5C7C\n0x7A70\t0x5CA8\n0x7A71\t0x5C9E\n0x7A72\t0x5CC3\n0x7A73\t0x5CD3\n0x7A74\t0x5CE3\n0x7A75\t0x5CE7\n0x7A76\t0x5CFF\n0x7A77\t0x5D04\n0x7A78\t0x5D00\n0x7A79\t0x5D1A\n0x7A7A\t0x5D0C\n0x7A7B\t0x5D4E\n0x7A7C\t0x5D5A\n0x7A7D\t0x5D85\n0x7A7E\t0x5D93\n0x7B21\t0x5D92\n0x7B22\t0x5DC2\n0x7B23\t0x5DC9\n0x7B24\t0x8852\n0x7B25\t0x5FAF\n0x7B26\t0x5906\n0x7B27\t0x65A8\n0x7B28\t0x7241\n0x7B29\t0x7242\n0x7B2A\t0x5EBC\n0x7B2B\t0x5ECB\n0x7B2C\t0x95EC\n0x7B2D\t0x95FF\n0x7B2E\t0x8A1A\n0x7B2F\t0x9607\n0x7B30\t0x9613\n0x7B31\t0x961B\n0x7B32\t0x5BAC\n0x7B33\t0x5BA7\n0x7B34\t0x5C5D\n0x7B35\t0x5F22\n0x7B36\t0x59EE\n0x7B37\t0x5A7C\n0x7B38\t0x5A96\n0x7B39\t0x5A73\n0x7B3A\t0x5A9E\n0x7B3B\t0x5AAD\n0x7B3C\t0x5ADA\n0x7B3D\t0x5AEA\n0x7B3E\t0x5B1B\n0x7B3F\t0x5B56\n0x7B40\t0x9A72\n0x7B41\t0x9A83\n0x7B42\t0x9A89\n0x7B43\t0x9A8D\n0x7B44\t0x9A8E\n0x7B45\t0x9A95\n0x7B46\t0x9AA6\n0x7B47\t0x7395\n0x7B48\t0x7399\n0x7B49\t0x73A0\n0x7B4A\t0x73B1\n0x7B4B\t0x73A5\n0x7B4C\t0x73A6\n0x7B4D\t0x73D6\n0x7B4E\t0x73F0\n0x7B4F\t0x73FD\n0x7B50\t0x73E3\n0x7B51\t0x7424\n0x7B52\t0x740E\n0x7B53\t0x7407\n0x7B54\t0x73F6\n0x7B55\t0x73FA\n0x7B56\t0x7432\n0x7B57\t0x742F\n0x7B58\t0x7444\n0x7B59\t0x7442\n0x7B5A\t0x7471\n0x7B5B\t0x7478\n0x7B5C\t0x7462\n0x7B5D\t0x7486\n0x7B5E\t0x749F\n0x7B5F\t0x74A0\n0x7B60\t0x7498\n0x7B61\t0x74B2\n0x7B62\t0x97E8\n0x7B63\t0x6745\n0x7B64\t0x679F\n0x7B65\t0x677B\n0x7B66\t0x67C8\n0x7B67\t0x67EE\n0x7B68\t0x684B\n0x7B69\t0x68A0\n0x7B6A\t0x6812\n0x7B6B\t0x681F\n0x7B6C\t0x686A\n0x7B6D\t0x68BC\n0x7B6E\t0x68FB\n0x7B6F\t0x686F\n0x7B70\t0x68B1\n0x7B71\t0x68C1\n0x7B72\t0x68EB\n0x7B73\t0x6913\n0x7B74\t0x68D1\n0x7B75\t0x6911\n0x7B76\t0x68D3\n0x7B77\t0x68EC\n0x7B78\t0x692B\n0x7B79\t0x68E8\n0x7B7A\t0x69BE\n0x7B7B\t0x6969\n0x7B7C\t0x6940\n0x7B7D\t0x696F\n0x7B7E\t0x695F\n0x7C21\t0x6962\n0x7C22\t0x6935\n0x7C23\t0x6959\n0x7C24\t0x69BC\n0x7C25\t0x69C5\n0x7C26\t0x69DA\n0x7C27\t0x69DC\n0x7C28\t0x6A0B\n0x7C29\t0x69E5\n0x7C2A\t0x6A66\n0x7C2B\t0x6A96\n0x7C2C\t0x6AB4\n0x7C2D\t0x72DD\n0x7C2E\t0x5CF1\n0x7C2F\t0x7314\n0x7C30\t0x733A\n0x7C31\t0x6B95\n0x7C32\t0x5F67\n0x7C33\t0x80FE\n0x7C34\t0x74FB\n0x7C35\t0x7503\n0x7C36\t0x655C\n0x7C37\t0x6569\n0x7C38\t0x6F26\n0x7C39\t0x65F8\n0x7C3A\t0x65FB\n0x7C3B\t0x6609\n0x7C3C\t0x663D\n0x7C3D\t0x6662\n0x7C3E\t0x665E\n0x7C3F\t0x666C\n0x7C40\t0x668D\n0x7C41\t0x668B\n0x7C42\t0x8D51\n0x7C43\t0x8D57\n0x7C44\t0x7263\n0x7C45\t0x7277\n0x7C46\t0x63B1\n0x7C47\t0x6261\n0x7C48\t0x6260\n0x7C49\t0x6283\n0x7C4A\t0x62E4\n0x7C4B\t0x62C3\n0x7C4C\t0x631C\n0x7C4D\t0x6326\n0x7C4E\t0x63AF\n0x7C4F\t0x63FE\n0x7C50\t0x6422\n0x7C51\t0x6412\n0x7C52\t0x64ED\n0x7C53\t0x6713\n0x7C54\t0x6718\n0x7C55\t0x8158\n0x7C56\t0x81D1\n0x7C57\t0x98CF\n0x7C58\t0x98D4\n0x7C59\t0x98D7\n0x7C5A\t0x6996\n0x7C5B\t0x7098\n0x7C5C\t0x70DC\n0x7C5D\t0x70FA\n0x7C5E\t0x710C\n0x7C5F\t0x711C\n0x7C60\t0x71CB\n0x7C61\t0x721F\n0x7C62\t0x70DD\n0x7C63\t0x659D\n0x7C64\t0x6246\n0x7C65\t0x6017\n0x7C66\t0x60C7\n0x7C67\t0x60D3\n0x7C68\t0x60B0\n0x7C69\t0x60D9\n0x7C6A\t0x6114\n0x7C6B\t0x6C3F\n0x7C6C\t0x6C67\n0x7C6D\t0x6C84\n0x7C6E\t0x6C9A\n0x7C6F\t0x6C6D\n0x7C70\t0x6CA8\n0x7C71\t0x6CC6\n0x7C72\t0x6CB5\n0x7C73\t0x6D49\n0x7C74\t0x6D38\n0x7C75\t0x6D11\n0x7C76\t0x6D3A\n0x7C77\t0x6D28\n0x7C78\t0x6D50\n0x7C79\t0x6D34\n0x7C7A\t0x6D55\n0x7C7B\t0x6D61\n0x7C7C\t0x6DA2\n0x7C7D\t0x6D65\n0x7C7E\t0x6D5B\n0x7D21\t0x6D64\n0x7D22\t0x6DB4\n0x7D23\t0x6E9A\n0x7D24\t0x6E5C\n0x7D25\t0x6E72\n0x7D26\t0x6EA0\n0x7D27\t0x6E87\n0x7D28\t0x6E8E\n0x7D29\t0x6EC9\n0x7D2A\t0x6EC3\n0x7D2B\t0x6F37\n0x7D2C\t0x6ED8\n0x7D2D\t0x6EEA\n0x7D2E\t0x6F56\n0x7D2F\t0x6F75\n0x7D30\t0x6F5F\n0x7D31\t0x6FB4\n0x7D32\t0x6FBC\n0x7D33\t0x7014\n0x7D34\t0x700D\n0x7D35\t0x700C\n0x7D36\t0x703C\n0x7D37\t0x7943\n0x7D38\t0x7947\n0x7D39\t0x794A\n0x7D3A\t0x7950\n0x7D3B\t0x7972\n0x7D3C\t0x7998\n0x7D3D\t0x79A0\n0x7D3E\t0x79A4\n0x7D3F\t0x77FC\n0x7D40\t0x77FB\n0x7D41\t0x7822\n0x7D42\t0x7820\n0x7D43\t0x7841\n0x7D44\t0x785A\n0x7D45\t0x7875\n0x7D46\t0x78B6\n0x7D47\t0x78E1\n0x7D48\t0x7933\n0x7D49\t0x8A5F\n0x7D4A\t0x76FB\n0x7D4B\t0x771B\n0x7D4C\t0x772C\n0x7D4D\t0x7786\n0x7D4E\t0x77AB\n0x7D4F\t0x77AD\n0x7D50\t0x7564\n0x7D51\t0x756F\n0x7D52\t0x6983\n0x7D53\t0x7F7D\n0x7D54\t0x76DD\n0x7D55\t0x76E6\n0x7D56\t0x76EC\n0x7D57\t0x7521\n0x7D58\t0x79FE\n0x7D59\t0x7A44\n0x7D5A\t0x767F\n0x7D5B\t0x769E\n0x7D5C\t0x9E27\n0x7D5D\t0x9E2E\n0x7D5E\t0x9E30\n0x7D5F\t0x9E34\n0x7D60\t0x9E4D\n0x7D61\t0x9E52\n0x7D62\t0x9E53\n0x7D63\t0x9E54\n0x7D64\t0x9E56\n0x7D65\t0x9E59\n0x7D66\t0x9E61\n0x7D67\t0x9E62\n0x7D68\t0x9E65\n0x7D69\t0x9E6F\n0x7D6A\t0x9E74\n0x7D6B\t0x75A2\n0x7D6C\t0x7604\n0x7D6D\t0x7608\n0x7D6E\t0x761D\n0x7D6F\t0x7AD1\n0x7D70\t0x7A85\n0x7D71\t0x7A8E\n0x7D72\t0x7AA3\n0x7D73\t0x7AB8\n0x7D74\t0x7ABE\n0x7D75\t0x77DE\n0x7D76\t0x8030\n0x7D77\t0x988B\n0x7D78\t0x988E\n0x7D79\t0x9899\n0x7D7A\t0x98A3\n0x7D7B\t0x8683\n0x7D7C\t0x8705\n0x7D7D\t0x8758\n0x7D7E\t0x87CF\n0x7E21\t0x87E2\n0x7E22\t0x880B\n0x7E23\t0x80D4\n0x7E24\t0x7F4D\n0x7E25\t0x7B4A\n0x7E26\t0x7B4E\n0x7E27\t0x7B7F\n0x7E28\t0x7B93\n0x7E29\t0x7BEF\n0x7E2A\t0x7C09\n0x7E2B\t0x7BF0\n0x7E2C\t0x7C15\n0x7E2D\t0x7C03\n0x7E2E\t0x7C20\n0x7E2F\t0x823A\n0x7E30\t0x8886\n0x7E31\t0x88AA\n0x7E32\t0x88C0\n0x7E33\t0x88C8\n0x7E34\t0x8926\n0x7E35\t0x8976\n0x7E36\t0x7F91\n0x7E37\t0x8283\n0x7E38\t0x82BC\n0x7E39\t0x82A7\n0x7E3A\t0x8313\n0x7E3B\t0x82FE\n0x7E3C\t0x8300\n0x7E3D\t0x835D\n0x7E3E\t0x8345\n0x7E3F\t0x8344\n0x7E40\t0x831D\n0x7E41\t0x83A6\n0x7E42\t0x8399\n0x7E43\t0x83FE\n0x7E44\t0x841A\n0x7E45\t0x83FC\n0x7E46\t0x8429\n0x7E47\t0x8439\n0x7E48\t0x84A8\n0x7E49\t0x84CF\n0x7E4A\t0x849F\n0x7E4B\t0x84C2\n0x7E4C\t0x84F7\n0x7E4D\t0x8570\n0x7E4E\t0x85B3\n0x7E4F\t0x85A2\n0x7E50\t0x96D8\n0x7E51\t0x85B8\n0x7E52\t0x85E0\n0x7E53\t0x7FDA\n0x7E54\t0x7EAE\n0x7E55\t0x7EB4\n0x7E56\t0x7EBC\n0x7E57\t0x7ED6\n0x7E58\t0x7F0A\n0x7E59\t0x5B43\n0x7E5A\t0x8D6A\n0x7E5B\t0x5245\n0x7E5C\t0x8C68\n0x7E5D\t0x8C6E\n0x7E5E\t0x8C6D\n0x7E5F\t0x8E16\n0x7E60\t0x8E26\n0x7E61\t0x8E27\n0x7E62\t0x8E50\n0x7E63\t0x9098\n0x7E64\t0x90A0\n0x7E65\t0x90BD\n0x7E66\t0x90C8\n0x7E67\t0x90C3\n0x7E68\t0x90DA\n0x7E69\t0x90FF\n0x7E6A\t0x911A\n0x7E6B\t0x910C\n0x7E6C\t0x9120\n0x7E6D\t0x9142\n0x7E6E\t0x8FB5\n0x7E6F\t0x90E4\n0x7E70\t0x8C86\n0x7E71\t0x89F1\n0x7E72\t0x8BB1\n0x7E73\t0x8BBB\n0x7E74\t0x8BC7\n0x7E75\t0x8BEA\n0x7E76\t0x8C09\n0x7E77\t0x8C1E\n0x7E78\t0x9702\n0x7E79\t0x68D0\n0x7E7A\t0x7306\n0x7E7B\t0x9F81\n0x7E7C\t0x9F82\n0x7E7D\t0x92C6\n0x7E7E\t0x9491\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO646-CN.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x00A5\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x203E\n0x7F\t0x007F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/ISO646-JP.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x00A5\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x203E\n0x7F\t0x007F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/JIS_X0201.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x00A5\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x203E\n0x7F\t0x007F\n0xA1\t0xFF61\n0xA2\t0xFF62\n0xA3\t0xFF63\n0xA4\t0xFF64\n0xA5\t0xFF65\n0xA6\t0xFF66\n0xA7\t0xFF67\n0xA8\t0xFF68\n0xA9\t0xFF69\n0xAA\t0xFF6A\n0xAB\t0xFF6B\n0xAC\t0xFF6C\n0xAD\t0xFF6D\n0xAE\t0xFF6E\n0xAF\t0xFF6F\n0xB0\t0xFF70\n0xB1\t0xFF71\n0xB2\t0xFF72\n0xB3\t0xFF73\n0xB4\t0xFF74\n0xB5\t0xFF75\n0xB6\t0xFF76\n0xB7\t0xFF77\n0xB8\t0xFF78\n0xB9\t0xFF79\n0xBA\t0xFF7A\n0xBB\t0xFF7B\n0xBC\t0xFF7C\n0xBD\t0xFF7D\n0xBE\t0xFF7E\n0xBF\t0xFF7F\n0xC0\t0xFF80\n0xC1\t0xFF81\n0xC2\t0xFF82\n0xC3\t0xFF83\n0xC4\t0xFF84\n0xC5\t0xFF85\n0xC6\t0xFF86\n0xC7\t0xFF87\n0xC8\t0xFF88\n0xC9\t0xFF89\n0xCA\t0xFF8A\n0xCB\t0xFF8B\n0xCC\t0xFF8C\n0xCD\t0xFF8D\n0xCE\t0xFF8E\n0xCF\t0xFF8F\n0xD0\t0xFF90\n0xD1\t0xFF91\n0xD2\t0xFF92\n0xD3\t0xFF93\n0xD4\t0xFF94\n0xD5\t0xFF95\n0xD6\t0xFF96\n0xD7\t0xFF97\n0xD8\t0xFF98\n0xD9\t0xFF99\n0xDA\t0xFF9A\n0xDB\t0xFF9B\n0xDC\t0xFF9C\n0xDD\t0xFF9D\n0xDE\t0xFF9E\n0xDF\t0xFF9F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/JOHAB.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x20A9\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x8444\t0x3133\n0x8446\t0x3135\n0x8447\t0x3136\n0x844A\t0x313A\n0x844B\t0x313B\n0x844C\t0x313C\n0x844D\t0x313D\n0x844E\t0x313E\n0x844F\t0x313F\n0x8450\t0x3140\n0x8454\t0x3144\n0x8461\t0x314F\n0x8481\t0x3150\n0x84A1\t0x3151\n0x84C1\t0x3152\n0x84E1\t0x3153\n0x8541\t0x3154\n0x8561\t0x3155\n0x8581\t0x3156\n0x85A1\t0x3157\n0x85C1\t0x3158\n0x85E1\t0x3159\n0x8641\t0x315A\n0x8661\t0x315B\n0x8681\t0x315C\n0x86A1\t0x315D\n0x86C1\t0x315E\n0x86E1\t0x315F\n0x8741\t0x3160\n0x8761\t0x3161\n0x8781\t0x3162\n0x87A1\t0x3163\n0x8841\t0x3131\n0x8861\t0xAC00\n0x8862\t0xAC01\n0x8863\t0xAC02\n0x8864\t0xAC03\n0x8865\t0xAC04\n0x8866\t0xAC05\n0x8867\t0xAC06\n0x8868\t0xAC07\n0x8869\t0xAC08\n0x886A\t0xAC09\n0x886B\t0xAC0A\n0x886C\t0xAC0B\n0x886D\t0xAC0C\n0x886E\t0xAC0D\n0x886F\t0xAC0E\n0x8870\t0xAC0F\n0x8871\t0xAC10\n0x8873\t0xAC11\n0x8874\t0xAC12\n0x8875\t0xAC13\n0x8876\t0xAC14\n0x8877\t0xAC15\n0x8878\t0xAC16\n0x8879\t0xAC17\n0x887A\t0xAC18\n0x887B\t0xAC19\n0x887C\t0xAC1A\n0x887D\t0xAC1B\n0x8881\t0xAC1C\n0x8882\t0xAC1D\n0x8883\t0xAC1E\n0x8884\t0xAC1F\n0x8885\t0xAC20\n0x8886\t0xAC21\n0x8887\t0xAC22\n0x8888\t0xAC23\n0x8889\t0xAC24\n0x888A\t0xAC25\n0x888B\t0xAC26\n0x888C\t0xAC27\n0x888D\t0xAC28\n0x888E\t0xAC29\n0x888F\t0xAC2A\n0x8890\t0xAC2B\n0x8891\t0xAC2C\n0x8893\t0xAC2D\n0x8894\t0xAC2E\n0x8895\t0xAC2F\n0x8896\t0xAC30\n0x8897\t0xAC31\n0x8898\t0xAC32\n0x8899\t0xAC33\n0x889A\t0xAC34\n0x889B\t0xAC35\n0x889C\t0xAC36\n0x889D\t0xAC37\n0x88A1\t0xAC38\n0x88A2\t0xAC39\n0x88A3\t0xAC3A\n0x88A4\t0xAC3B\n0x88A5\t0xAC3C\n0x88A6\t0xAC3D\n0x88A7\t0xAC3E\n0x88A8\t0xAC3F\n0x88A9\t0xAC40\n0x88AA\t0xAC41\n0x88AB\t0xAC42\n0x88AC\t0xAC43\n0x88AD\t0xAC44\n0x88AE\t0xAC45\n0x88AF\t0xAC46\n0x88B0\t0xAC47\n0x88B1\t0xAC48\n0x88B3\t0xAC49\n0x88B4\t0xAC4A\n0x88B5\t0xAC4B\n0x88B6\t0xAC4C\n0x88B7\t0xAC4D\n0x88B8\t0xAC4E\n0x88B9\t0xAC4F\n0x88BA\t0xAC50\n0x88BB\t0xAC51\n0x88BC\t0xAC52\n0x88BD\t0xAC53\n0x88C1\t0xAC54\n0x88C2\t0xAC55\n0x88C3\t0xAC56\n0x88C4\t0xAC57\n0x88C5\t0xAC58\n0x88C6\t0xAC59\n0x88C7\t0xAC5A\n0x88C8\t0xAC5B\n0x88C9\t0xAC5C\n0x88CA\t0xAC5D\n0x88CB\t0xAC5E\n0x88CC\t0xAC5F\n0x88CD\t0xAC60\n0x88CE\t0xAC61\n0x88CF\t0xAC62\n0x88D0\t0xAC63\n0x88D1\t0xAC64\n0x88D3\t0xAC65\n0x88D4\t0xAC66\n0x88D5\t0xAC67\n0x88D6\t0xAC68\n0x88D7\t0xAC69\n0x88D8\t0xAC6A\n0x88D9\t0xAC6B\n0x88DA\t0xAC6C\n0x88DB\t0xAC6D\n0x88DC\t0xAC6E\n0x88DD\t0xAC6F\n0x88E1\t0xAC70\n0x88E2\t0xAC71\n0x88E3\t0xAC72\n0x88E4\t0xAC73\n0x88E5\t0xAC74\n0x88E6\t0xAC75\n0x88E7\t0xAC76\n0x88E8\t0xAC77\n0x88E9\t0xAC78\n0x88EA\t0xAC79\n0x88EB\t0xAC7A\n0x88EC\t0xAC7B\n0x88ED\t0xAC7C\n0x88EE\t0xAC7D\n0x88EF\t0xAC7E\n0x88F0\t0xAC7F\n0x88F1\t0xAC80\n0x88F3\t0xAC81\n0x88F4\t0xAC82\n0x88F5\t0xAC83\n0x88F6\t0xAC84\n0x88F7\t0xAC85\n0x88F8\t0xAC86\n0x88F9\t0xAC87\n0x88FA\t0xAC88\n0x88FB\t0xAC89\n0x88FC\t0xAC8A\n0x88FD\t0xAC8B\n0x8941\t0xAC8C\n0x8942\t0xAC8D\n0x8943\t0xAC8E\n0x8944\t0xAC8F\n0x8945\t0xAC90\n0x8946\t0xAC91\n0x8947\t0xAC92\n0x8948\t0xAC93\n0x8949\t0xAC94\n0x894A\t0xAC95\n0x894B\t0xAC96\n0x894C\t0xAC97\n0x894D\t0xAC98\n0x894E\t0xAC99\n0x894F\t0xAC9A\n0x8950\t0xAC9B\n0x8951\t0xAC9C\n0x8953\t0xAC9D\n0x8954\t0xAC9E\n0x8955\t0xAC9F\n0x8956\t0xACA0\n0x8957\t0xACA1\n0x8958\t0xACA2\n0x8959\t0xACA3\n0x895A\t0xACA4\n0x895B\t0xACA5\n0x895C\t0xACA6\n0x895D\t0xACA7\n0x8961\t0xACA8\n0x8962\t0xACA9\n0x8963\t0xACAA\n0x8964\t0xACAB\n0x8965\t0xACAC\n0x8966\t0xACAD\n0x8967\t0xACAE\n0x8968\t0xACAF\n0x8969\t0xACB0\n0x896A\t0xACB1\n0x896B\t0xACB2\n0x896C\t0xACB3\n0x896D\t0xACB4\n0x896E\t0xACB5\n0x896F\t0xACB6\n0x8970\t0xACB7\n0x8971\t0xACB8\n0x8973\t0xACB9\n0x8974\t0xACBA\n0x8975\t0xACBB\n0x8976\t0xACBC\n0x8977\t0xACBD\n0x8978\t0xACBE\n0x8979\t0xACBF\n0x897A\t0xACC0\n0x897B\t0xACC1\n0x897C\t0xACC2\n0x897D\t0xACC3\n0x8981\t0xACC4\n0x8982\t0xACC5\n0x8983\t0xACC6\n0x8984\t0xACC7\n0x8985\t0xACC8\n0x8986\t0xACC9\n0x8987\t0xACCA\n0x8988\t0xACCB\n0x8989\t0xACCC\n0x898A\t0xACCD\n0x898B\t0xACCE\n0x898C\t0xACCF\n0x898D\t0xACD0\n0x898E\t0xACD1\n0x898F\t0xACD2\n0x8990\t0xACD3\n0x8991\t0xACD4\n0x8993\t0xACD5\n0x8994\t0xACD6\n0x8995\t0xACD7\n0x8996\t0xACD8\n0x8997\t0xACD9\n0x8998\t0xACDA\n0x8999\t0xACDB\n0x899A\t0xACDC\n0x899B\t0xACDD\n0x899C\t0xACDE\n0x899D\t0xACDF\n0x89A1\t0xACE0\n0x89A2\t0xACE1\n0x89A3\t0xACE2\n0x89A4\t0xACE3\n0x89A5\t0xACE4\n0x89A6\t0xACE5\n0x89A7\t0xACE6\n0x89A8\t0xACE7\n0x89A9\t0xACE8\n0x89AA\t0xACE9\n0x89AB\t0xACEA\n0x89AC\t0xACEB\n0x89AD\t0xACEC\n0x89AE\t0xACED\n0x89AF\t0xACEE\n0x89B0\t0xACEF\n0x89B1\t0xACF0\n0x89B3\t0xACF1\n0x89B4\t0xACF2\n0x89B5\t0xACF3\n0x89B6\t0xACF4\n0x89B7\t0xACF5\n0x89B8\t0xACF6\n0x89B9\t0xACF7\n0x89BA\t0xACF8\n0x89BB\t0xACF9\n0x89BC\t0xACFA\n0x89BD\t0xACFB\n0x89C1\t0xACFC\n0x89C2\t0xACFD\n0x89C3\t0xACFE\n0x89C4\t0xACFF\n0x89C5\t0xAD00\n0x89C6\t0xAD01\n0x89C7\t0xAD02\n0x89C8\t0xAD03\n0x89C9\t0xAD04\n0x89CA\t0xAD05\n0x89CB\t0xAD06\n0x89CC\t0xAD07\n0x89CD\t0xAD08\n0x89CE\t0xAD09\n0x89CF\t0xAD0A\n0x89D0\t0xAD0B\n0x89D1\t0xAD0C\n0x89D3\t0xAD0D\n0x89D4\t0xAD0E\n0x89D5\t0xAD0F\n0x89D6\t0xAD10\n0x89D7\t0xAD11\n0x89D8\t0xAD12\n0x89D9\t0xAD13\n0x89DA\t0xAD14\n0x89DB\t0xAD15\n0x89DC\t0xAD16\n0x89DD\t0xAD17\n0x89E1\t0xAD18\n0x89E2\t0xAD19\n0x89E3\t0xAD1A\n0x89E4\t0xAD1B\n0x89E5\t0xAD1C\n0x89E6\t0xAD1D\n0x89E7\t0xAD1E\n0x89E8\t0xAD1F\n0x89E9\t0xAD20\n0x89EA\t0xAD21\n0x89EB\t0xAD22\n0x89EC\t0xAD23\n0x89ED\t0xAD24\n0x89EE\t0xAD25\n0x89EF\t0xAD26\n0x89F0\t0xAD27\n0x89F1\t0xAD28\n0x89F3\t0xAD29\n0x89F4\t0xAD2A\n0x89F5\t0xAD2B\n0x89F6\t0xAD2C\n0x89F7\t0xAD2D\n0x89F8\t0xAD2E\n0x89F9\t0xAD2F\n0x89FA\t0xAD30\n0x89FB\t0xAD31\n0x89FC\t0xAD32\n0x89FD\t0xAD33\n0x8A41\t0xAD34\n0x8A42\t0xAD35\n0x8A43\t0xAD36\n0x8A44\t0xAD37\n0x8A45\t0xAD38\n0x8A46\t0xAD39\n0x8A47\t0xAD3A\n0x8A48\t0xAD3B\n0x8A49\t0xAD3C\n0x8A4A\t0xAD3D\n0x8A4B\t0xAD3E\n0x8A4C\t0xAD3F\n0x8A4D\t0xAD40\n0x8A4E\t0xAD41\n0x8A4F\t0xAD42\n0x8A50\t0xAD43\n0x8A51\t0xAD44\n0x8A53\t0xAD45\n0x8A54\t0xAD46\n0x8A55\t0xAD47\n0x8A56\t0xAD48\n0x8A57\t0xAD49\n0x8A58\t0xAD4A\n0x8A59\t0xAD4B\n0x8A5A\t0xAD4C\n0x8A5B\t0xAD4D\n0x8A5C\t0xAD4E\n0x8A5D\t0xAD4F\n0x8A61\t0xAD50\n0x8A62\t0xAD51\n0x8A63\t0xAD52\n0x8A64\t0xAD53\n0x8A65\t0xAD54\n0x8A66\t0xAD55\n0x8A67\t0xAD56\n0x8A68\t0xAD57\n0x8A69\t0xAD58\n0x8A6A\t0xAD59\n0x8A6B\t0xAD5A\n0x8A6C\t0xAD5B\n0x8A6D\t0xAD5C\n0x8A6E\t0xAD5D\n0x8A6F\t0xAD5E\n0x8A70\t0xAD5F\n0x8A71\t0xAD60\n0x8A73\t0xAD61\n0x8A74\t0xAD62\n0x8A75\t0xAD63\n0x8A76\t0xAD64\n0x8A77\t0xAD65\n0x8A78\t0xAD66\n0x8A79\t0xAD67\n0x8A7A\t0xAD68\n0x8A7B\t0xAD69\n0x8A7C\t0xAD6A\n0x8A7D\t0xAD6B\n0x8A81\t0xAD6C\n0x8A82\t0xAD6D\n0x8A83\t0xAD6E\n0x8A84\t0xAD6F\n0x8A85\t0xAD70\n0x8A86\t0xAD71\n0x8A87\t0xAD72\n0x8A88\t0xAD73\n0x8A89\t0xAD74\n0x8A8A\t0xAD75\n0x8A8B\t0xAD76\n0x8A8C\t0xAD77\n0x8A8D\t0xAD78\n0x8A8E\t0xAD79\n0x8A8F\t0xAD7A\n0x8A90\t0xAD7B\n0x8A91\t0xAD7C\n0x8A93\t0xAD7D\n0x8A94\t0xAD7E\n0x8A95\t0xAD7F\n0x8A96\t0xAD80\n0x8A97\t0xAD81\n0x8A98\t0xAD82\n0x8A99\t0xAD83\n0x8A9A\t0xAD84\n0x8A9B\t0xAD85\n0x8A9C\t0xAD86\n0x8A9D\t0xAD87\n0x8AA1\t0xAD88\n0x8AA2\t0xAD89\n0x8AA3\t0xAD8A\n0x8AA4\t0xAD8B\n0x8AA5\t0xAD8C\n0x8AA6\t0xAD8D\n0x8AA7\t0xAD8E\n0x8AA8\t0xAD8F\n0x8AA9\t0xAD90\n0x8AAA\t0xAD91\n0x8AAB\t0xAD92\n0x8AAC\t0xAD93\n0x8AAD\t0xAD94\n0x8AAE\t0xAD95\n0x8AAF\t0xAD96\n0x8AB0\t0xAD97\n0x8AB1\t0xAD98\n0x8AB3\t0xAD99\n0x8AB4\t0xAD9A\n0x8AB5\t0xAD9B\n0x8AB6\t0xAD9C\n0x8AB7\t0xAD9D\n0x8AB8\t0xAD9E\n0x8AB9\t0xAD9F\n0x8ABA\t0xADA0\n0x8ABB\t0xADA1\n0x8ABC\t0xADA2\n0x8ABD\t0xADA3\n0x8AC1\t0xADA4\n0x8AC2\t0xADA5\n0x8AC3\t0xADA6\n0x8AC4\t0xADA7\n0x8AC5\t0xADA8\n0x8AC6\t0xADA9\n0x8AC7\t0xADAA\n0x8AC8\t0xADAB\n0x8AC9\t0xADAC\n0x8ACA\t0xADAD\n0x8ACB\t0xADAE\n0x8ACC\t0xADAF\n0x8ACD\t0xADB0\n0x8ACE\t0xADB1\n0x8ACF\t0xADB2\n0x8AD0\t0xADB3\n0x8AD1\t0xADB4\n0x8AD3\t0xADB5\n0x8AD4\t0xADB6\n0x8AD5\t0xADB7\n0x8AD6\t0xADB8\n0x8AD7\t0xADB9\n0x8AD8\t0xADBA\n0x8AD9\t0xADBB\n0x8ADA\t0xADBC\n0x8ADB\t0xADBD\n0x8ADC\t0xADBE\n0x8ADD\t0xADBF\n0x8AE1\t0xADC0\n0x8AE2\t0xADC1\n0x8AE3\t0xADC2\n0x8AE4\t0xADC3\n0x8AE5\t0xADC4\n0x8AE6\t0xADC5\n0x8AE7\t0xADC6\n0x8AE8\t0xADC7\n0x8AE9\t0xADC8\n0x8AEA\t0xADC9\n0x8AEB\t0xADCA\n0x8AEC\t0xADCB\n0x8AED\t0xADCC\n0x8AEE\t0xADCD\n0x8AEF\t0xADCE\n0x8AF0\t0xADCF\n0x8AF1\t0xADD0\n0x8AF3\t0xADD1\n0x8AF4\t0xADD2\n0x8AF5\t0xADD3\n0x8AF6\t0xADD4\n0x8AF7\t0xADD5\n0x8AF8\t0xADD6\n0x8AF9\t0xADD7\n0x8AFA\t0xADD8\n0x8AFB\t0xADD9\n0x8AFC\t0xADDA\n0x8AFD\t0xADDB\n0x8B41\t0xADDC\n0x8B42\t0xADDD\n0x8B43\t0xADDE\n0x8B44\t0xADDF\n0x8B45\t0xADE0\n0x8B46\t0xADE1\n0x8B47\t0xADE2\n0x8B48\t0xADE3\n0x8B49\t0xADE4\n0x8B4A\t0xADE5\n0x8B4B\t0xADE6\n0x8B4C\t0xADE7\n0x8B4D\t0xADE8\n0x8B4E\t0xADE9\n0x8B4F\t0xADEA\n0x8B50\t0xADEB\n0x8B51\t0xADEC\n0x8B53\t0xADED\n0x8B54\t0xADEE\n0x8B55\t0xADEF\n0x8B56\t0xADF0\n0x8B57\t0xADF1\n0x8B58\t0xADF2\n0x8B59\t0xADF3\n0x8B5A\t0xADF4\n0x8B5B\t0xADF5\n0x8B5C\t0xADF6\n0x8B5D\t0xADF7\n0x8B61\t0xADF8\n0x8B62\t0xADF9\n0x8B63\t0xADFA\n0x8B64\t0xADFB\n0x8B65\t0xADFC\n0x8B66\t0xADFD\n0x8B67\t0xADFE\n0x8B68\t0xADFF\n0x8B69\t0xAE00\n0x8B6A\t0xAE01\n0x8B6B\t0xAE02\n0x8B6C\t0xAE03\n0x8B6D\t0xAE04\n0x8B6E\t0xAE05\n0x8B6F\t0xAE06\n0x8B70\t0xAE07\n0x8B71\t0xAE08\n0x8B73\t0xAE09\n0x8B74\t0xAE0A\n0x8B75\t0xAE0B\n0x8B76\t0xAE0C\n0x8B77\t0xAE0D\n0x8B78\t0xAE0E\n0x8B79\t0xAE0F\n0x8B7A\t0xAE10\n0x8B7B\t0xAE11\n0x8B7C\t0xAE12\n0x8B7D\t0xAE13\n0x8B81\t0xAE14\n0x8B82\t0xAE15\n0x8B83\t0xAE16\n0x8B84\t0xAE17\n0x8B85\t0xAE18\n0x8B86\t0xAE19\n0x8B87\t0xAE1A\n0x8B88\t0xAE1B\n0x8B89\t0xAE1C\n0x8B8A\t0xAE1D\n0x8B8B\t0xAE1E\n0x8B8C\t0xAE1F\n0x8B8D\t0xAE20\n0x8B8E\t0xAE21\n0x8B8F\t0xAE22\n0x8B90\t0xAE23\n0x8B91\t0xAE24\n0x8B93\t0xAE25\n0x8B94\t0xAE26\n0x8B95\t0xAE27\n0x8B96\t0xAE28\n0x8B97\t0xAE29\n0x8B98\t0xAE2A\n0x8B99\t0xAE2B\n0x8B9A\t0xAE2C\n0x8B9B\t0xAE2D\n0x8B9C\t0xAE2E\n0x8B9D\t0xAE2F\n0x8BA1\t0xAE30\n0x8BA2\t0xAE31\n0x8BA3\t0xAE32\n0x8BA4\t0xAE33\n0x8BA5\t0xAE34\n0x8BA6\t0xAE35\n0x8BA7\t0xAE36\n0x8BA8\t0xAE37\n0x8BA9\t0xAE38\n0x8BAA\t0xAE39\n0x8BAB\t0xAE3A\n0x8BAC\t0xAE3B\n0x8BAD\t0xAE3C\n0x8BAE\t0xAE3D\n0x8BAF\t0xAE3E\n0x8BB0\t0xAE3F\n0x8BB1\t0xAE40\n0x8BB3\t0xAE41\n0x8BB4\t0xAE42\n0x8BB5\t0xAE43\n0x8BB6\t0xAE44\n0x8BB7\t0xAE45\n0x8BB8\t0xAE46\n0x8BB9\t0xAE47\n0x8BBA\t0xAE48\n0x8BBB\t0xAE49\n0x8BBC\t0xAE4A\n0x8BBD\t0xAE4B\n0x8C41\t0x3132\n0x8C61\t0xAE4C\n0x8C62\t0xAE4D\n0x8C63\t0xAE4E\n0x8C64\t0xAE4F\n0x8C65\t0xAE50\n0x8C66\t0xAE51\n0x8C67\t0xAE52\n0x8C68\t0xAE53\n0x8C69\t0xAE54\n0x8C6A\t0xAE55\n0x8C6B\t0xAE56\n0x8C6C\t0xAE57\n0x8C6D\t0xAE58\n0x8C6E\t0xAE59\n0x8C6F\t0xAE5A\n0x8C70\t0xAE5B\n0x8C71\t0xAE5C\n0x8C73\t0xAE5D\n0x8C74\t0xAE5E\n0x8C75\t0xAE5F\n0x8C76\t0xAE60\n0x8C77\t0xAE61\n0x8C78\t0xAE62\n0x8C79\t0xAE63\n0x8C7A\t0xAE64\n0x8C7B\t0xAE65\n0x8C7C\t0xAE66\n0x8C7D\t0xAE67\n0x8C81\t0xAE68\n0x8C82\t0xAE69\n0x8C83\t0xAE6A\n0x8C84\t0xAE6B\n0x8C85\t0xAE6C\n0x8C86\t0xAE6D\n0x8C87\t0xAE6E\n0x8C88\t0xAE6F\n0x8C89\t0xAE70\n0x8C8A\t0xAE71\n0x8C8B\t0xAE72\n0x8C8C\t0xAE73\n0x8C8D\t0xAE74\n0x8C8E\t0xAE75\n0x8C8F\t0xAE76\n0x8C90\t0xAE77\n0x8C91\t0xAE78\n0x8C93\t0xAE79\n0x8C94\t0xAE7A\n0x8C95\t0xAE7B\n0x8C96\t0xAE7C\n0x8C97\t0xAE7D\n0x8C98\t0xAE7E\n0x8C99\t0xAE7F\n0x8C9A\t0xAE80\n0x8C9B\t0xAE81\n0x8C9C\t0xAE82\n0x8C9D\t0xAE83\n0x8CA1\t0xAE84\n0x8CA2\t0xAE85\n0x8CA3\t0xAE86\n0x8CA4\t0xAE87\n0x8CA5\t0xAE88\n0x8CA6\t0xAE89\n0x8CA7\t0xAE8A\n0x8CA8\t0xAE8B\n0x8CA9\t0xAE8C\n0x8CAA\t0xAE8D\n0x8CAB\t0xAE8E\n0x8CAC\t0xAE8F\n0x8CAD\t0xAE90\n0x8CAE\t0xAE91\n0x8CAF\t0xAE92\n0x8CB0\t0xAE93\n0x8CB1\t0xAE94\n0x8CB3\t0xAE95\n0x8CB4\t0xAE96\n0x8CB5\t0xAE97\n0x8CB6\t0xAE98\n0x8CB7\t0xAE99\n0x8CB8\t0xAE9A\n0x8CB9\t0xAE9B\n0x8CBA\t0xAE9C\n0x8CBB\t0xAE9D\n0x8CBC\t0xAE9E\n0x8CBD\t0xAE9F\n0x8CC1\t0xAEA0\n0x8CC2\t0xAEA1\n0x8CC3\t0xAEA2\n0x8CC4\t0xAEA3\n0x8CC5\t0xAEA4\n0x8CC6\t0xAEA5\n0x8CC7\t0xAEA6\n0x8CC8\t0xAEA7\n0x8CC9\t0xAEA8\n0x8CCA\t0xAEA9\n0x8CCB\t0xAEAA\n0x8CCC\t0xAEAB\n0x8CCD\t0xAEAC\n0x8CCE\t0xAEAD\n0x8CCF\t0xAEAE\n0x8CD0\t0xAEAF\n0x8CD1\t0xAEB0\n0x8CD3\t0xAEB1\n0x8CD4\t0xAEB2\n0x8CD5\t0xAEB3\n0x8CD6\t0xAEB4\n0x8CD7\t0xAEB5\n0x8CD8\t0xAEB6\n0x8CD9\t0xAEB7\n0x8CDA\t0xAEB8\n0x8CDB\t0xAEB9\n0x8CDC\t0xAEBA\n0x8CDD\t0xAEBB\n0x8CE1\t0xAEBC\n0x8CE2\t0xAEBD\n0x8CE3\t0xAEBE\n0x8CE4\t0xAEBF\n0x8CE5\t0xAEC0\n0x8CE6\t0xAEC1\n0x8CE7\t0xAEC2\n0x8CE8\t0xAEC3\n0x8CE9\t0xAEC4\n0x8CEA\t0xAEC5\n0x8CEB\t0xAEC6\n0x8CEC\t0xAEC7\n0x8CED\t0xAEC8\n0x8CEE\t0xAEC9\n0x8CEF\t0xAECA\n0x8CF0\t0xAECB\n0x8CF1\t0xAECC\n0x8CF3\t0xAECD\n0x8CF4\t0xAECE\n0x8CF5\t0xAECF\n0x8CF6\t0xAED0\n0x8CF7\t0xAED1\n0x8CF8\t0xAED2\n0x8CF9\t0xAED3\n0x8CFA\t0xAED4\n0x8CFB\t0xAED5\n0x8CFC\t0xAED6\n0x8CFD\t0xAED7\n0x8D41\t0xAED8\n0x8D42\t0xAED9\n0x8D43\t0xAEDA\n0x8D44\t0xAEDB\n0x8D45\t0xAEDC\n0x8D46\t0xAEDD\n0x8D47\t0xAEDE\n0x8D48\t0xAEDF\n0x8D49\t0xAEE0\n0x8D4A\t0xAEE1\n0x8D4B\t0xAEE2\n0x8D4C\t0xAEE3\n0x8D4D\t0xAEE4\n0x8D4E\t0xAEE5\n0x8D4F\t0xAEE6\n0x8D50\t0xAEE7\n0x8D51\t0xAEE8\n0x8D53\t0xAEE9\n0x8D54\t0xAEEA\n0x8D55\t0xAEEB\n0x8D56\t0xAEEC\n0x8D57\t0xAEED\n0x8D58\t0xAEEE\n0x8D59\t0xAEEF\n0x8D5A\t0xAEF0\n0x8D5B\t0xAEF1\n0x8D5C\t0xAEF2\n0x8D5D\t0xAEF3\n0x8D61\t0xAEF4\n0x8D62\t0xAEF5\n0x8D63\t0xAEF6\n0x8D64\t0xAEF7\n0x8D65\t0xAEF8\n0x8D66\t0xAEF9\n0x8D67\t0xAEFA\n0x8D68\t0xAEFB\n0x8D69\t0xAEFC\n0x8D6A\t0xAEFD\n0x8D6B\t0xAEFE\n0x8D6C\t0xAEFF\n0x8D6D\t0xAF00\n0x8D6E\t0xAF01\n0x8D6F\t0xAF02\n0x8D70\t0xAF03\n0x8D71\t0xAF04\n0x8D73\t0xAF05\n0x8D74\t0xAF06\n0x8D75\t0xAF07\n0x8D76\t0xAF08\n0x8D77\t0xAF09\n0x8D78\t0xAF0A\n0x8D79\t0xAF0B\n0x8D7A\t0xAF0C\n0x8D7B\t0xAF0D\n0x8D7C\t0xAF0E\n0x8D7D\t0xAF0F\n0x8D81\t0xAF10\n0x8D82\t0xAF11\n0x8D83\t0xAF12\n0x8D84\t0xAF13\n0x8D85\t0xAF14\n0x8D86\t0xAF15\n0x8D87\t0xAF16\n0x8D88\t0xAF17\n0x8D89\t0xAF18\n0x8D8A\t0xAF19\n0x8D8B\t0xAF1A\n0x8D8C\t0xAF1B\n0x8D8D\t0xAF1C\n0x8D8E\t0xAF1D\n0x8D8F\t0xAF1E\n0x8D90\t0xAF1F\n0x8D91\t0xAF20\n0x8D93\t0xAF21\n0x8D94\t0xAF22\n0x8D95\t0xAF23\n0x8D96\t0xAF24\n0x8D97\t0xAF25\n0x8D98\t0xAF26\n0x8D99\t0xAF27\n0x8D9A\t0xAF28\n0x8D9B\t0xAF29\n0x8D9C\t0xAF2A\n0x8D9D\t0xAF2B\n0x8DA1\t0xAF2C\n0x8DA2\t0xAF2D\n0x8DA3\t0xAF2E\n0x8DA4\t0xAF2F\n0x8DA5\t0xAF30\n0x8DA6\t0xAF31\n0x8DA7\t0xAF32\n0x8DA8\t0xAF33\n0x8DA9\t0xAF34\n0x8DAA\t0xAF35\n0x8DAB\t0xAF36\n0x8DAC\t0xAF37\n0x8DAD\t0xAF38\n0x8DAE\t0xAF39\n0x8DAF\t0xAF3A\n0x8DB0\t0xAF3B\n0x8DB1\t0xAF3C\n0x8DB3\t0xAF3D\n0x8DB4\t0xAF3E\n0x8DB5\t0xAF3F\n0x8DB6\t0xAF40\n0x8DB7\t0xAF41\n0x8DB8\t0xAF42\n0x8DB9\t0xAF43\n0x8DBA\t0xAF44\n0x8DBB\t0xAF45\n0x8DBC\t0xAF46\n0x8DBD\t0xAF47\n0x8DC1\t0xAF48\n0x8DC2\t0xAF49\n0x8DC3\t0xAF4A\n0x8DC4\t0xAF4B\n0x8DC5\t0xAF4C\n0x8DC6\t0xAF4D\n0x8DC7\t0xAF4E\n0x8DC8\t0xAF4F\n0x8DC9\t0xAF50\n0x8DCA\t0xAF51\n0x8DCB\t0xAF52\n0x8DCC\t0xAF53\n0x8DCD\t0xAF54\n0x8DCE\t0xAF55\n0x8DCF\t0xAF56\n0x8DD0\t0xAF57\n0x8DD1\t0xAF58\n0x8DD3\t0xAF59\n0x8DD4\t0xAF5A\n0x8DD5\t0xAF5B\n0x8DD6\t0xAF5C\n0x8DD7\t0xAF5D\n0x8DD8\t0xAF5E\n0x8DD9\t0xAF5F\n0x8DDA\t0xAF60\n0x8DDB\t0xAF61\n0x8DDC\t0xAF62\n0x8DDD\t0xAF63\n0x8DE1\t0xAF64\n0x8DE2\t0xAF65\n0x8DE3\t0xAF66\n0x8DE4\t0xAF67\n0x8DE5\t0xAF68\n0x8DE6\t0xAF69\n0x8DE7\t0xAF6A\n0x8DE8\t0xAF6B\n0x8DE9\t0xAF6C\n0x8DEA\t0xAF6D\n0x8DEB\t0xAF6E\n0x8DEC\t0xAF6F\n0x8DED\t0xAF70\n0x8DEE\t0xAF71\n0x8DEF\t0xAF72\n0x8DF0\t0xAF73\n0x8DF1\t0xAF74\n0x8DF3\t0xAF75\n0x8DF4\t0xAF76\n0x8DF5\t0xAF77\n0x8DF6\t0xAF78\n0x8DF7\t0xAF79\n0x8DF8\t0xAF7A\n0x8DF9\t0xAF7B\n0x8DFA\t0xAF7C\n0x8DFB\t0xAF7D\n0x8DFC\t0xAF7E\n0x8DFD\t0xAF7F\n0x8E41\t0xAF80\n0x8E42\t0xAF81\n0x8E43\t0xAF82\n0x8E44\t0xAF83\n0x8E45\t0xAF84\n0x8E46\t0xAF85\n0x8E47\t0xAF86\n0x8E48\t0xAF87\n0x8E49\t0xAF88\n0x8E4A\t0xAF89\n0x8E4B\t0xAF8A\n0x8E4C\t0xAF8B\n0x8E4D\t0xAF8C\n0x8E4E\t0xAF8D\n0x8E4F\t0xAF8E\n0x8E50\t0xAF8F\n0x8E51\t0xAF90\n0x8E53\t0xAF91\n0x8E54\t0xAF92\n0x8E55\t0xAF93\n0x8E56\t0xAF94\n0x8E57\t0xAF95\n0x8E58\t0xAF96\n0x8E59\t0xAF97\n0x8E5A\t0xAF98\n0x8E5B\t0xAF99\n0x8E5C\t0xAF9A\n0x8E5D\t0xAF9B\n0x8E61\t0xAF9C\n0x8E62\t0xAF9D\n0x8E63\t0xAF9E\n0x8E64\t0xAF9F\n0x8E65\t0xAFA0\n0x8E66\t0xAFA1\n0x8E67\t0xAFA2\n0x8E68\t0xAFA3\n0x8E69\t0xAFA4\n0x8E6A\t0xAFA5\n0x8E6B\t0xAFA6\n0x8E6C\t0xAFA7\n0x8E6D\t0xAFA8\n0x8E6E\t0xAFA9\n0x8E6F\t0xAFAA\n0x8E70\t0xAFAB\n0x8E71\t0xAFAC\n0x8E73\t0xAFAD\n0x8E74\t0xAFAE\n0x8E75\t0xAFAF\n0x8E76\t0xAFB0\n0x8E77\t0xAFB1\n0x8E78\t0xAFB2\n0x8E79\t0xAFB3\n0x8E7A\t0xAFB4\n0x8E7B\t0xAFB5\n0x8E7C\t0xAFB6\n0x8E7D\t0xAFB7\n0x8E81\t0xAFB8\n0x8E82\t0xAFB9\n0x8E83\t0xAFBA\n0x8E84\t0xAFBB\n0x8E85\t0xAFBC\n0x8E86\t0xAFBD\n0x8E87\t0xAFBE\n0x8E88\t0xAFBF\n0x8E89\t0xAFC0\n0x8E8A\t0xAFC1\n0x8E8B\t0xAFC2\n0x8E8C\t0xAFC3\n0x8E8D\t0xAFC4\n0x8E8E\t0xAFC5\n0x8E8F\t0xAFC6\n0x8E90\t0xAFC7\n0x8E91\t0xAFC8\n0x8E93\t0xAFC9\n0x8E94\t0xAFCA\n0x8E95\t0xAFCB\n0x8E96\t0xAFCC\n0x8E97\t0xAFCD\n0x8E98\t0xAFCE\n0x8E99\t0xAFCF\n0x8E9A\t0xAFD0\n0x8E9B\t0xAFD1\n0x8E9C\t0xAFD2\n0x8E9D\t0xAFD3\n0x8EA1\t0xAFD4\n0x8EA2\t0xAFD5\n0x8EA3\t0xAFD6\n0x8EA4\t0xAFD7\n0x8EA5\t0xAFD8\n0x8EA6\t0xAFD9\n0x8EA7\t0xAFDA\n0x8EA8\t0xAFDB\n0x8EA9\t0xAFDC\n0x8EAA\t0xAFDD\n0x8EAB\t0xAFDE\n0x8EAC\t0xAFDF\n0x8EAD\t0xAFE0\n0x8EAE\t0xAFE1\n0x8EAF\t0xAFE2\n0x8EB0\t0xAFE3\n0x8EB1\t0xAFE4\n0x8EB3\t0xAFE5\n0x8EB4\t0xAFE6\n0x8EB5\t0xAFE7\n0x8EB6\t0xAFE8\n0x8EB7\t0xAFE9\n0x8EB8\t0xAFEA\n0x8EB9\t0xAFEB\n0x8EBA\t0xAFEC\n0x8EBB\t0xAFED\n0x8EBC\t0xAFEE\n0x8EBD\t0xAFEF\n0x8EC1\t0xAFF0\n0x8EC2\t0xAFF1\n0x8EC3\t0xAFF2\n0x8EC4\t0xAFF3\n0x8EC5\t0xAFF4\n0x8EC6\t0xAFF5\n0x8EC7\t0xAFF6\n0x8EC8\t0xAFF7\n0x8EC9\t0xAFF8\n0x8ECA\t0xAFF9\n0x8ECB\t0xAFFA\n0x8ECC\t0xAFFB\n0x8ECD\t0xAFFC\n0x8ECE\t0xAFFD\n0x8ECF\t0xAFFE\n0x8ED0\t0xAFFF\n0x8ED1\t0xB000\n0x8ED3\t0xB001\n0x8ED4\t0xB002\n0x8ED5\t0xB003\n0x8ED6\t0xB004\n0x8ED7\t0xB005\n0x8ED8\t0xB006\n0x8ED9\t0xB007\n0x8EDA\t0xB008\n0x8EDB\t0xB009\n0x8EDC\t0xB00A\n0x8EDD\t0xB00B\n0x8EE1\t0xB00C\n0x8EE2\t0xB00D\n0x8EE3\t0xB00E\n0x8EE4\t0xB00F\n0x8EE5\t0xB010\n0x8EE6\t0xB011\n0x8EE7\t0xB012\n0x8EE8\t0xB013\n0x8EE9\t0xB014\n0x8EEA\t0xB015\n0x8EEB\t0xB016\n0x8EEC\t0xB017\n0x8EED\t0xB018\n0x8EEE\t0xB019\n0x8EEF\t0xB01A\n0x8EF0\t0xB01B\n0x8EF1\t0xB01C\n0x8EF3\t0xB01D\n0x8EF4\t0xB01E\n0x8EF5\t0xB01F\n0x8EF6\t0xB020\n0x8EF7\t0xB021\n0x8EF8\t0xB022\n0x8EF9\t0xB023\n0x8EFA\t0xB024\n0x8EFB\t0xB025\n0x8EFC\t0xB026\n0x8EFD\t0xB027\n0x8F41\t0xB028\n0x8F42\t0xB029\n0x8F43\t0xB02A\n0x8F44\t0xB02B\n0x8F45\t0xB02C\n0x8F46\t0xB02D\n0x8F47\t0xB02E\n0x8F48\t0xB02F\n0x8F49\t0xB030\n0x8F4A\t0xB031\n0x8F4B\t0xB032\n0x8F4C\t0xB033\n0x8F4D\t0xB034\n0x8F4E\t0xB035\n0x8F4F\t0xB036\n0x8F50\t0xB037\n0x8F51\t0xB038\n0x8F53\t0xB039\n0x8F54\t0xB03A\n0x8F55\t0xB03B\n0x8F56\t0xB03C\n0x8F57\t0xB03D\n0x8F58\t0xB03E\n0x8F59\t0xB03F\n0x8F5A\t0xB040\n0x8F5B\t0xB041\n0x8F5C\t0xB042\n0x8F5D\t0xB043\n0x8F61\t0xB044\n0x8F62\t0xB045\n0x8F63\t0xB046\n0x8F64\t0xB047\n0x8F65\t0xB048\n0x8F66\t0xB049\n0x8F67\t0xB04A\n0x8F68\t0xB04B\n0x8F69\t0xB04C\n0x8F6A\t0xB04D\n0x8F6B\t0xB04E\n0x8F6C\t0xB04F\n0x8F6D\t0xB050\n0x8F6E\t0xB051\n0x8F6F\t0xB052\n0x8F70\t0xB053\n0x8F71\t0xB054\n0x8F73\t0xB055\n0x8F74\t0xB056\n0x8F75\t0xB057\n0x8F76\t0xB058\n0x8F77\t0xB059\n0x8F78\t0xB05A\n0x8F79\t0xB05B\n0x8F7A\t0xB05C\n0x8F7B\t0xB05D\n0x8F7C\t0xB05E\n0x8F7D\t0xB05F\n0x8F81\t0xB060\n0x8F82\t0xB061\n0x8F83\t0xB062\n0x8F84\t0xB063\n0x8F85\t0xB064\n0x8F86\t0xB065\n0x8F87\t0xB066\n0x8F88\t0xB067\n0x8F89\t0xB068\n0x8F8A\t0xB069\n0x8F8B\t0xB06A\n0x8F8C\t0xB06B\n0x8F8D\t0xB06C\n0x8F8E\t0xB06D\n0x8F8F\t0xB06E\n0x8F90\t0xB06F\n0x8F91\t0xB070\n0x8F93\t0xB071\n0x8F94\t0xB072\n0x8F95\t0xB073\n0x8F96\t0xB074\n0x8F97\t0xB075\n0x8F98\t0xB076\n0x8F99\t0xB077\n0x8F9A\t0xB078\n0x8F9B\t0xB079\n0x8F9C\t0xB07A\n0x8F9D\t0xB07B\n0x8FA1\t0xB07C\n0x8FA2\t0xB07D\n0x8FA3\t0xB07E\n0x8FA4\t0xB07F\n0x8FA5\t0xB080\n0x8FA6\t0xB081\n0x8FA7\t0xB082\n0x8FA8\t0xB083\n0x8FA9\t0xB084\n0x8FAA\t0xB085\n0x8FAB\t0xB086\n0x8FAC\t0xB087\n0x8FAD\t0xB088\n0x8FAE\t0xB089\n0x8FAF\t0xB08A\n0x8FB0\t0xB08B\n0x8FB1\t0xB08C\n0x8FB3\t0xB08D\n0x8FB4\t0xB08E\n0x8FB5\t0xB08F\n0x8FB6\t0xB090\n0x8FB7\t0xB091\n0x8FB8\t0xB092\n0x8FB9\t0xB093\n0x8FBA\t0xB094\n0x8FBB\t0xB095\n0x8FBC\t0xB096\n0x8FBD\t0xB097\n0x9041\t0x3134\n0x9061\t0xB098\n0x9062\t0xB099\n0x9063\t0xB09A\n0x9064\t0xB09B\n0x9065\t0xB09C\n0x9066\t0xB09D\n0x9067\t0xB09E\n0x9068\t0xB09F\n0x9069\t0xB0A0\n0x906A\t0xB0A1\n0x906B\t0xB0A2\n0x906C\t0xB0A3\n0x906D\t0xB0A4\n0x906E\t0xB0A5\n0x906F\t0xB0A6\n0x9070\t0xB0A7\n0x9071\t0xB0A8\n0x9073\t0xB0A9\n0x9074\t0xB0AA\n0x9075\t0xB0AB\n0x9076\t0xB0AC\n0x9077\t0xB0AD\n0x9078\t0xB0AE\n0x9079\t0xB0AF\n0x907A\t0xB0B0\n0x907B\t0xB0B1\n0x907C\t0xB0B2\n0x907D\t0xB0B3\n0x9081\t0xB0B4\n0x9082\t0xB0B5\n0x9083\t0xB0B6\n0x9084\t0xB0B7\n0x9085\t0xB0B8\n0x9086\t0xB0B9\n0x9087\t0xB0BA\n0x9088\t0xB0BB\n0x9089\t0xB0BC\n0x908A\t0xB0BD\n0x908B\t0xB0BE\n0x908C\t0xB0BF\n0x908D\t0xB0C0\n0x908E\t0xB0C1\n0x908F\t0xB0C2\n0x9090\t0xB0C3\n0x9091\t0xB0C4\n0x9093\t0xB0C5\n0x9094\t0xB0C6\n0x9095\t0xB0C7\n0x9096\t0xB0C8\n0x9097\t0xB0C9\n0x9098\t0xB0CA\n0x9099\t0xB0CB\n0x909A\t0xB0CC\n0x909B\t0xB0CD\n0x909C\t0xB0CE\n0x909D\t0xB0CF\n0x90A1\t0xB0D0\n0x90A2\t0xB0D1\n0x90A3\t0xB0D2\n0x90A4\t0xB0D3\n0x90A5\t0xB0D4\n0x90A6\t0xB0D5\n0x90A7\t0xB0D6\n0x90A8\t0xB0D7\n0x90A9\t0xB0D8\n0x90AA\t0xB0D9\n0x90AB\t0xB0DA\n0x90AC\t0xB0DB\n0x90AD\t0xB0DC\n0x90AE\t0xB0DD\n0x90AF\t0xB0DE\n0x90B0\t0xB0DF\n0x90B1\t0xB0E0\n0x90B3\t0xB0E1\n0x90B4\t0xB0E2\n0x90B5\t0xB0E3\n0x90B6\t0xB0E4\n0x90B7\t0xB0E5\n0x90B8\t0xB0E6\n0x90B9\t0xB0E7\n0x90BA\t0xB0E8\n0x90BB\t0xB0E9\n0x90BC\t0xB0EA\n0x90BD\t0xB0EB\n0x90C1\t0xB0EC\n0x90C2\t0xB0ED\n0x90C3\t0xB0EE\n0x90C4\t0xB0EF\n0x90C5\t0xB0F0\n0x90C6\t0xB0F1\n0x90C7\t0xB0F2\n0x90C8\t0xB0F3\n0x90C9\t0xB0F4\n0x90CA\t0xB0F5\n0x90CB\t0xB0F6\n0x90CC\t0xB0F7\n0x90CD\t0xB0F8\n0x90CE\t0xB0F9\n0x90CF\t0xB0FA\n0x90D0\t0xB0FB\n0x90D1\t0xB0FC\n0x90D3\t0xB0FD\n0x90D4\t0xB0FE\n0x90D5\t0xB0FF\n0x90D6\t0xB100\n0x90D7\t0xB101\n0x90D8\t0xB102\n0x90D9\t0xB103\n0x90DA\t0xB104\n0x90DB\t0xB105\n0x90DC\t0xB106\n0x90DD\t0xB107\n0x90E1\t0xB108\n0x90E2\t0xB109\n0x90E3\t0xB10A\n0x90E4\t0xB10B\n0x90E5\t0xB10C\n0x90E6\t0xB10D\n0x90E7\t0xB10E\n0x90E8\t0xB10F\n0x90E9\t0xB110\n0x90EA\t0xB111\n0x90EB\t0xB112\n0x90EC\t0xB113\n0x90ED\t0xB114\n0x90EE\t0xB115\n0x90EF\t0xB116\n0x90F0\t0xB117\n0x90F1\t0xB118\n0x90F3\t0xB119\n0x90F4\t0xB11A\n0x90F5\t0xB11B\n0x90F6\t0xB11C\n0x90F7\t0xB11D\n0x90F8\t0xB11E\n0x90F9\t0xB11F\n0x90FA\t0xB120\n0x90FB\t0xB121\n0x90FC\t0xB122\n0x90FD\t0xB123\n0x9141\t0xB124\n0x9142\t0xB125\n0x9143\t0xB126\n0x9144\t0xB127\n0x9145\t0xB128\n0x9146\t0xB129\n0x9147\t0xB12A\n0x9148\t0xB12B\n0x9149\t0xB12C\n0x914A\t0xB12D\n0x914B\t0xB12E\n0x914C\t0xB12F\n0x914D\t0xB130\n0x914E\t0xB131\n0x914F\t0xB132\n0x9150\t0xB133\n0x9151\t0xB134\n0x9153\t0xB135\n0x9154\t0xB136\n0x9155\t0xB137\n0x9156\t0xB138\n0x9157\t0xB139\n0x9158\t0xB13A\n0x9159\t0xB13B\n0x915A\t0xB13C\n0x915B\t0xB13D\n0x915C\t0xB13E\n0x915D\t0xB13F\n0x9161\t0xB140\n0x9162\t0xB141\n0x9163\t0xB142\n0x9164\t0xB143\n0x9165\t0xB144\n0x9166\t0xB145\n0x9167\t0xB146\n0x9168\t0xB147\n0x9169\t0xB148\n0x916A\t0xB149\n0x916B\t0xB14A\n0x916C\t0xB14B\n0x916D\t0xB14C\n0x916E\t0xB14D\n0x916F\t0xB14E\n0x9170\t0xB14F\n0x9171\t0xB150\n0x9173\t0xB151\n0x9174\t0xB152\n0x9175\t0xB153\n0x9176\t0xB154\n0x9177\t0xB155\n0x9178\t0xB156\n0x9179\t0xB157\n0x917A\t0xB158\n0x917B\t0xB159\n0x917C\t0xB15A\n0x917D\t0xB15B\n0x9181\t0xB15C\n0x9182\t0xB15D\n0x9183\t0xB15E\n0x9184\t0xB15F\n0x9185\t0xB160\n0x9186\t0xB161\n0x9187\t0xB162\n0x9188\t0xB163\n0x9189\t0xB164\n0x918A\t0xB165\n0x918B\t0xB166\n0x918C\t0xB167\n0x918D\t0xB168\n0x918E\t0xB169\n0x918F\t0xB16A\n0x9190\t0xB16B\n0x9191\t0xB16C\n0x9193\t0xB16D\n0x9194\t0xB16E\n0x9195\t0xB16F\n0x9196\t0xB170\n0x9197\t0xB171\n0x9198\t0xB172\n0x9199\t0xB173\n0x919A\t0xB174\n0x919B\t0xB175\n0x919C\t0xB176\n0x919D\t0xB177\n0x91A1\t0xB178\n0x91A2\t0xB179\n0x91A3\t0xB17A\n0x91A4\t0xB17B\n0x91A5\t0xB17C\n0x91A6\t0xB17D\n0x91A7\t0xB17E\n0x91A8\t0xB17F\n0x91A9\t0xB180\n0x91AA\t0xB181\n0x91AB\t0xB182\n0x91AC\t0xB183\n0x91AD\t0xB184\n0x91AE\t0xB185\n0x91AF\t0xB186\n0x91B0\t0xB187\n0x91B1\t0xB188\n0x91B3\t0xB189\n0x91B4\t0xB18A\n0x91B5\t0xB18B\n0x91B6\t0xB18C\n0x91B7\t0xB18D\n0x91B8\t0xB18E\n0x91B9\t0xB18F\n0x91BA\t0xB190\n0x91BB\t0xB191\n0x91BC\t0xB192\n0x91BD\t0xB193\n0x91C1\t0xB194\n0x91C2\t0xB195\n0x91C3\t0xB196\n0x91C4\t0xB197\n0x91C5\t0xB198\n0x91C6\t0xB199\n0x91C7\t0xB19A\n0x91C8\t0xB19B\n0x91C9\t0xB19C\n0x91CA\t0xB19D\n0x91CB\t0xB19E\n0x91CC\t0xB19F\n0x91CD\t0xB1A0\n0x91CE\t0xB1A1\n0x91CF\t0xB1A2\n0x91D0\t0xB1A3\n0x91D1\t0xB1A4\n0x91D3\t0xB1A5\n0x91D4\t0xB1A6\n0x91D5\t0xB1A7\n0x91D6\t0xB1A8\n0x91D7\t0xB1A9\n0x91D8\t0xB1AA\n0x91D9\t0xB1AB\n0x91DA\t0xB1AC\n0x91DB\t0xB1AD\n0x91DC\t0xB1AE\n0x91DD\t0xB1AF\n0x91E1\t0xB1B0\n0x91E2\t0xB1B1\n0x91E3\t0xB1B2\n0x91E4\t0xB1B3\n0x91E5\t0xB1B4\n0x91E6\t0xB1B5\n0x91E7\t0xB1B6\n0x91E8\t0xB1B7\n0x91E9\t0xB1B8\n0x91EA\t0xB1B9\n0x91EB\t0xB1BA\n0x91EC\t0xB1BB\n0x91ED\t0xB1BC\n0x91EE\t0xB1BD\n0x91EF\t0xB1BE\n0x91F0\t0xB1BF\n0x91F1\t0xB1C0\n0x91F3\t0xB1C1\n0x91F4\t0xB1C2\n0x91F5\t0xB1C3\n0x91F6\t0xB1C4\n0x91F7\t0xB1C5\n0x91F8\t0xB1C6\n0x91F9\t0xB1C7\n0x91FA\t0xB1C8\n0x91FB\t0xB1C9\n0x91FC\t0xB1CA\n0x91FD\t0xB1CB\n0x9241\t0xB1CC\n0x9242\t0xB1CD\n0x9243\t0xB1CE\n0x9244\t0xB1CF\n0x9245\t0xB1D0\n0x9246\t0xB1D1\n0x9247\t0xB1D2\n0x9248\t0xB1D3\n0x9249\t0xB1D4\n0x924A\t0xB1D5\n0x924B\t0xB1D6\n0x924C\t0xB1D7\n0x924D\t0xB1D8\n0x924E\t0xB1D9\n0x924F\t0xB1DA\n0x9250\t0xB1DB\n0x9251\t0xB1DC\n0x9253\t0xB1DD\n0x9254\t0xB1DE\n0x9255\t0xB1DF\n0x9256\t0xB1E0\n0x9257\t0xB1E1\n0x9258\t0xB1E2\n0x9259\t0xB1E3\n0x925A\t0xB1E4\n0x925B\t0xB1E5\n0x925C\t0xB1E6\n0x925D\t0xB1E7\n0x9261\t0xB1E8\n0x9262\t0xB1E9\n0x9263\t0xB1EA\n0x9264\t0xB1EB\n0x9265\t0xB1EC\n0x9266\t0xB1ED\n0x9267\t0xB1EE\n0x9268\t0xB1EF\n0x9269\t0xB1F0\n0x926A\t0xB1F1\n0x926B\t0xB1F2\n0x926C\t0xB1F3\n0x926D\t0xB1F4\n0x926E\t0xB1F5\n0x926F\t0xB1F6\n0x9270\t0xB1F7\n0x9271\t0xB1F8\n0x9273\t0xB1F9\n0x9274\t0xB1FA\n0x9275\t0xB1FB\n0x9276\t0xB1FC\n0x9277\t0xB1FD\n0x9278\t0xB1FE\n0x9279\t0xB1FF\n0x927A\t0xB200\n0x927B\t0xB201\n0x927C\t0xB202\n0x927D\t0xB203\n0x9281\t0xB204\n0x9282\t0xB205\n0x9283\t0xB206\n0x9284\t0xB207\n0x9285\t0xB208\n0x9286\t0xB209\n0x9287\t0xB20A\n0x9288\t0xB20B\n0x9289\t0xB20C\n0x928A\t0xB20D\n0x928B\t0xB20E\n0x928C\t0xB20F\n0x928D\t0xB210\n0x928E\t0xB211\n0x928F\t0xB212\n0x9290\t0xB213\n0x9291\t0xB214\n0x9293\t0xB215\n0x9294\t0xB216\n0x9295\t0xB217\n0x9296\t0xB218\n0x9297\t0xB219\n0x9298\t0xB21A\n0x9299\t0xB21B\n0x929A\t0xB21C\n0x929B\t0xB21D\n0x929C\t0xB21E\n0x929D\t0xB21F\n0x92A1\t0xB220\n0x92A2\t0xB221\n0x92A3\t0xB222\n0x92A4\t0xB223\n0x92A5\t0xB224\n0x92A6\t0xB225\n0x92A7\t0xB226\n0x92A8\t0xB227\n0x92A9\t0xB228\n0x92AA\t0xB229\n0x92AB\t0xB22A\n0x92AC\t0xB22B\n0x92AD\t0xB22C\n0x92AE\t0xB22D\n0x92AF\t0xB22E\n0x92B0\t0xB22F\n0x92B1\t0xB230\n0x92B3\t0xB231\n0x92B4\t0xB232\n0x92B5\t0xB233\n0x92B6\t0xB234\n0x92B7\t0xB235\n0x92B8\t0xB236\n0x92B9\t0xB237\n0x92BA\t0xB238\n0x92BB\t0xB239\n0x92BC\t0xB23A\n0x92BD\t0xB23B\n0x92C1\t0xB23C\n0x92C2\t0xB23D\n0x92C3\t0xB23E\n0x92C4\t0xB23F\n0x92C5\t0xB240\n0x92C6\t0xB241\n0x92C7\t0xB242\n0x92C8\t0xB243\n0x92C9\t0xB244\n0x92CA\t0xB245\n0x92CB\t0xB246\n0x92CC\t0xB247\n0x92CD\t0xB248\n0x92CE\t0xB249\n0x92CF\t0xB24A\n0x92D0\t0xB24B\n0x92D1\t0xB24C\n0x92D3\t0xB24D\n0x92D4\t0xB24E\n0x92D5\t0xB24F\n0x92D6\t0xB250\n0x92D7\t0xB251\n0x92D8\t0xB252\n0x92D9\t0xB253\n0x92DA\t0xB254\n0x92DB\t0xB255\n0x92DC\t0xB256\n0x92DD\t0xB257\n0x92E1\t0xB258\n0x92E2\t0xB259\n0x92E3\t0xB25A\n0x92E4\t0xB25B\n0x92E5\t0xB25C\n0x92E6\t0xB25D\n0x92E7\t0xB25E\n0x92E8\t0xB25F\n0x92E9\t0xB260\n0x92EA\t0xB261\n0x92EB\t0xB262\n0x92EC\t0xB263\n0x92ED\t0xB264\n0x92EE\t0xB265\n0x92EF\t0xB266\n0x92F0\t0xB267\n0x92F1\t0xB268\n0x92F3\t0xB269\n0x92F4\t0xB26A\n0x92F5\t0xB26B\n0x92F6\t0xB26C\n0x92F7\t0xB26D\n0x92F8\t0xB26E\n0x92F9\t0xB26F\n0x92FA\t0xB270\n0x92FB\t0xB271\n0x92FC\t0xB272\n0x92FD\t0xB273\n0x9341\t0xB274\n0x9342\t0xB275\n0x9343\t0xB276\n0x9344\t0xB277\n0x9345\t0xB278\n0x9346\t0xB279\n0x9347\t0xB27A\n0x9348\t0xB27B\n0x9349\t0xB27C\n0x934A\t0xB27D\n0x934B\t0xB27E\n0x934C\t0xB27F\n0x934D\t0xB280\n0x934E\t0xB281\n0x934F\t0xB282\n0x9350\t0xB283\n0x9351\t0xB284\n0x9353\t0xB285\n0x9354\t0xB286\n0x9355\t0xB287\n0x9356\t0xB288\n0x9357\t0xB289\n0x9358\t0xB28A\n0x9359\t0xB28B\n0x935A\t0xB28C\n0x935B\t0xB28D\n0x935C\t0xB28E\n0x935D\t0xB28F\n0x9361\t0xB290\n0x9362\t0xB291\n0x9363\t0xB292\n0x9364\t0xB293\n0x9365\t0xB294\n0x9366\t0xB295\n0x9367\t0xB296\n0x9368\t0xB297\n0x9369\t0xB298\n0x936A\t0xB299\n0x936B\t0xB29A\n0x936C\t0xB29B\n0x936D\t0xB29C\n0x936E\t0xB29D\n0x936F\t0xB29E\n0x9370\t0xB29F\n0x9371\t0xB2A0\n0x9373\t0xB2A1\n0x9374\t0xB2A2\n0x9375\t0xB2A3\n0x9376\t0xB2A4\n0x9377\t0xB2A5\n0x9378\t0xB2A6\n0x9379\t0xB2A7\n0x937A\t0xB2A8\n0x937B\t0xB2A9\n0x937C\t0xB2AA\n0x937D\t0xB2AB\n0x9381\t0xB2AC\n0x9382\t0xB2AD\n0x9383\t0xB2AE\n0x9384\t0xB2AF\n0x9385\t0xB2B0\n0x9386\t0xB2B1\n0x9387\t0xB2B2\n0x9388\t0xB2B3\n0x9389\t0xB2B4\n0x938A\t0xB2B5\n0x938B\t0xB2B6\n0x938C\t0xB2B7\n0x938D\t0xB2B8\n0x938E\t0xB2B9\n0x938F\t0xB2BA\n0x9390\t0xB2BB\n0x9391\t0xB2BC\n0x9393\t0xB2BD\n0x9394\t0xB2BE\n0x9395\t0xB2BF\n0x9396\t0xB2C0\n0x9397\t0xB2C1\n0x9398\t0xB2C2\n0x9399\t0xB2C3\n0x939A\t0xB2C4\n0x939B\t0xB2C5\n0x939C\t0xB2C6\n0x939D\t0xB2C7\n0x93A1\t0xB2C8\n0x93A2\t0xB2C9\n0x93A3\t0xB2CA\n0x93A4\t0xB2CB\n0x93A5\t0xB2CC\n0x93A6\t0xB2CD\n0x93A7\t0xB2CE\n0x93A8\t0xB2CF\n0x93A9\t0xB2D0\n0x93AA\t0xB2D1\n0x93AB\t0xB2D2\n0x93AC\t0xB2D3\n0x93AD\t0xB2D4\n0x93AE\t0xB2D5\n0x93AF\t0xB2D6\n0x93B0\t0xB2D7\n0x93B1\t0xB2D8\n0x93B3\t0xB2D9\n0x93B4\t0xB2DA\n0x93B5\t0xB2DB\n0x93B6\t0xB2DC\n0x93B7\t0xB2DD\n0x93B8\t0xB2DE\n0x93B9\t0xB2DF\n0x93BA\t0xB2E0\n0x93BB\t0xB2E1\n0x93BC\t0xB2E2\n0x93BD\t0xB2E3\n0x9441\t0x3137\n0x9461\t0xB2E4\n0x9462\t0xB2E5\n0x9463\t0xB2E6\n0x9464\t0xB2E7\n0x9465\t0xB2E8\n0x9466\t0xB2E9\n0x9467\t0xB2EA\n0x9468\t0xB2EB\n0x9469\t0xB2EC\n0x946A\t0xB2ED\n0x946B\t0xB2EE\n0x946C\t0xB2EF\n0x946D\t0xB2F0\n0x946E\t0xB2F1\n0x946F\t0xB2F2\n0x9470\t0xB2F3\n0x9471\t0xB2F4\n0x9473\t0xB2F5\n0x9474\t0xB2F6\n0x9475\t0xB2F7\n0x9476\t0xB2F8\n0x9477\t0xB2F9\n0x9478\t0xB2FA\n0x9479\t0xB2FB\n0x947A\t0xB2FC\n0x947B\t0xB2FD\n0x947C\t0xB2FE\n0x947D\t0xB2FF\n0x9481\t0xB300\n0x9482\t0xB301\n0x9483\t0xB302\n0x9484\t0xB303\n0x9485\t0xB304\n0x9486\t0xB305\n0x9487\t0xB306\n0x9488\t0xB307\n0x9489\t0xB308\n0x948A\t0xB309\n0x948B\t0xB30A\n0x948C\t0xB30B\n0x948D\t0xB30C\n0x948E\t0xB30D\n0x948F\t0xB30E\n0x9490\t0xB30F\n0x9491\t0xB310\n0x9493\t0xB311\n0x9494\t0xB312\n0x9495\t0xB313\n0x9496\t0xB314\n0x9497\t0xB315\n0x9498\t0xB316\n0x9499\t0xB317\n0x949A\t0xB318\n0x949B\t0xB319\n0x949C\t0xB31A\n0x949D\t0xB31B\n0x94A1\t0xB31C\n0x94A2\t0xB31D\n0x94A3\t0xB31E\n0x94A4\t0xB31F\n0x94A5\t0xB320\n0x94A6\t0xB321\n0x94A7\t0xB322\n0x94A8\t0xB323\n0x94A9\t0xB324\n0x94AA\t0xB325\n0x94AB\t0xB326\n0x94AC\t0xB327\n0x94AD\t0xB328\n0x94AE\t0xB329\n0x94AF\t0xB32A\n0x94B0\t0xB32B\n0x94B1\t0xB32C\n0x94B3\t0xB32D\n0x94B4\t0xB32E\n0x94B5\t0xB32F\n0x94B6\t0xB330\n0x94B7\t0xB331\n0x94B8\t0xB332\n0x94B9\t0xB333\n0x94BA\t0xB334\n0x94BB\t0xB335\n0x94BC\t0xB336\n0x94BD\t0xB337\n0x94C1\t0xB338\n0x94C2\t0xB339\n0x94C3\t0xB33A\n0x94C4\t0xB33B\n0x94C5\t0xB33C\n0x94C6\t0xB33D\n0x94C7\t0xB33E\n0x94C8\t0xB33F\n0x94C9\t0xB340\n0x94CA\t0xB341\n0x94CB\t0xB342\n0x94CC\t0xB343\n0x94CD\t0xB344\n0x94CE\t0xB345\n0x94CF\t0xB346\n0x94D0\t0xB347\n0x94D1\t0xB348\n0x94D3\t0xB349\n0x94D4\t0xB34A\n0x94D5\t0xB34B\n0x94D6\t0xB34C\n0x94D7\t0xB34D\n0x94D8\t0xB34E\n0x94D9\t0xB34F\n0x94DA\t0xB350\n0x94DB\t0xB351\n0x94DC\t0xB352\n0x94DD\t0xB353\n0x94E1\t0xB354\n0x94E2\t0xB355\n0x94E3\t0xB356\n0x94E4\t0xB357\n0x94E5\t0xB358\n0x94E6\t0xB359\n0x94E7\t0xB35A\n0x94E8\t0xB35B\n0x94E9\t0xB35C\n0x94EA\t0xB35D\n0x94EB\t0xB35E\n0x94EC\t0xB35F\n0x94ED\t0xB360\n0x94EE\t0xB361\n0x94EF\t0xB362\n0x94F0\t0xB363\n0x94F1\t0xB364\n0x94F3\t0xB365\n0x94F4\t0xB366\n0x94F5\t0xB367\n0x94F6\t0xB368\n0x94F7\t0xB369\n0x94F8\t0xB36A\n0x94F9\t0xB36B\n0x94FA\t0xB36C\n0x94FB\t0xB36D\n0x94FC\t0xB36E\n0x94FD\t0xB36F\n0x9541\t0xB370\n0x9542\t0xB371\n0x9543\t0xB372\n0x9544\t0xB373\n0x9545\t0xB374\n0x9546\t0xB375\n0x9547\t0xB376\n0x9548\t0xB377\n0x9549\t0xB378\n0x954A\t0xB379\n0x954B\t0xB37A\n0x954C\t0xB37B\n0x954D\t0xB37C\n0x954E\t0xB37D\n0x954F\t0xB37E\n0x9550\t0xB37F\n0x9551\t0xB380\n0x9553\t0xB381\n0x9554\t0xB382\n0x9555\t0xB383\n0x9556\t0xB384\n0x9557\t0xB385\n0x9558\t0xB386\n0x9559\t0xB387\n0x955A\t0xB388\n0x955B\t0xB389\n0x955C\t0xB38A\n0x955D\t0xB38B\n0x9561\t0xB38C\n0x9562\t0xB38D\n0x9563\t0xB38E\n0x9564\t0xB38F\n0x9565\t0xB390\n0x9566\t0xB391\n0x9567\t0xB392\n0x9568\t0xB393\n0x9569\t0xB394\n0x956A\t0xB395\n0x956B\t0xB396\n0x956C\t0xB397\n0x956D\t0xB398\n0x956E\t0xB399\n0x956F\t0xB39A\n0x9570\t0xB39B\n0x9571\t0xB39C\n0x9573\t0xB39D\n0x9574\t0xB39E\n0x9575\t0xB39F\n0x9576\t0xB3A0\n0x9577\t0xB3A1\n0x9578\t0xB3A2\n0x9579\t0xB3A3\n0x957A\t0xB3A4\n0x957B\t0xB3A5\n0x957C\t0xB3A6\n0x957D\t0xB3A7\n0x9581\t0xB3A8\n0x9582\t0xB3A9\n0x9583\t0xB3AA\n0x9584\t0xB3AB\n0x9585\t0xB3AC\n0x9586\t0xB3AD\n0x9587\t0xB3AE\n0x9588\t0xB3AF\n0x9589\t0xB3B0\n0x958A\t0xB3B1\n0x958B\t0xB3B2\n0x958C\t0xB3B3\n0x958D\t0xB3B4\n0x958E\t0xB3B5\n0x958F\t0xB3B6\n0x9590\t0xB3B7\n0x9591\t0xB3B8\n0x9593\t0xB3B9\n0x9594\t0xB3BA\n0x9595\t0xB3BB\n0x9596\t0xB3BC\n0x9597\t0xB3BD\n0x9598\t0xB3BE\n0x9599\t0xB3BF\n0x959A\t0xB3C0\n0x959B\t0xB3C1\n0x959C\t0xB3C2\n0x959D\t0xB3C3\n0x95A1\t0xB3C4\n0x95A2\t0xB3C5\n0x95A3\t0xB3C6\n0x95A4\t0xB3C7\n0x95A5\t0xB3C8\n0x95A6\t0xB3C9\n0x95A7\t0xB3CA\n0x95A8\t0xB3CB\n0x95A9\t0xB3CC\n0x95AA\t0xB3CD\n0x95AB\t0xB3CE\n0x95AC\t0xB3CF\n0x95AD\t0xB3D0\n0x95AE\t0xB3D1\n0x95AF\t0xB3D2\n0x95B0\t0xB3D3\n0x95B1\t0xB3D4\n0x95B3\t0xB3D5\n0x95B4\t0xB3D6\n0x95B5\t0xB3D7\n0x95B6\t0xB3D8\n0x95B7\t0xB3D9\n0x95B8\t0xB3DA\n0x95B9\t0xB3DB\n0x95BA\t0xB3DC\n0x95BB\t0xB3DD\n0x95BC\t0xB3DE\n0x95BD\t0xB3DF\n0x95C1\t0xB3E0\n0x95C2\t0xB3E1\n0x95C3\t0xB3E2\n0x95C4\t0xB3E3\n0x95C5\t0xB3E4\n0x95C6\t0xB3E5\n0x95C7\t0xB3E6\n0x95C8\t0xB3E7\n0x95C9\t0xB3E8\n0x95CA\t0xB3E9\n0x95CB\t0xB3EA\n0x95CC\t0xB3EB\n0x95CD\t0xB3EC\n0x95CE\t0xB3ED\n0x95CF\t0xB3EE\n0x95D0\t0xB3EF\n0x95D1\t0xB3F0\n0x95D3\t0xB3F1\n0x95D4\t0xB3F2\n0x95D5\t0xB3F3\n0x95D6\t0xB3F4\n0x95D7\t0xB3F5\n0x95D8\t0xB3F6\n0x95D9\t0xB3F7\n0x95DA\t0xB3F8\n0x95DB\t0xB3F9\n0x95DC\t0xB3FA\n0x95DD\t0xB3FB\n0x95E1\t0xB3FC\n0x95E2\t0xB3FD\n0x95E3\t0xB3FE\n0x95E4\t0xB3FF\n0x95E5\t0xB400\n0x95E6\t0xB401\n0x95E7\t0xB402\n0x95E8\t0xB403\n0x95E9\t0xB404\n0x95EA\t0xB405\n0x95EB\t0xB406\n0x95EC\t0xB407\n0x95ED\t0xB408\n0x95EE\t0xB409\n0x95EF\t0xB40A\n0x95F0\t0xB40B\n0x95F1\t0xB40C\n0x95F3\t0xB40D\n0x95F4\t0xB40E\n0x95F5\t0xB40F\n0x95F6\t0xB410\n0x95F7\t0xB411\n0x95F8\t0xB412\n0x95F9\t0xB413\n0x95FA\t0xB414\n0x95FB\t0xB415\n0x95FC\t0xB416\n0x95FD\t0xB417\n0x9641\t0xB418\n0x9642\t0xB419\n0x9643\t0xB41A\n0x9644\t0xB41B\n0x9645\t0xB41C\n0x9646\t0xB41D\n0x9647\t0xB41E\n0x9648\t0xB41F\n0x9649\t0xB420\n0x964A\t0xB421\n0x964B\t0xB422\n0x964C\t0xB423\n0x964D\t0xB424\n0x964E\t0xB425\n0x964F\t0xB426\n0x9650\t0xB427\n0x9651\t0xB428\n0x9653\t0xB429\n0x9654\t0xB42A\n0x9655\t0xB42B\n0x9656\t0xB42C\n0x9657\t0xB42D\n0x9658\t0xB42E\n0x9659\t0xB42F\n0x965A\t0xB430\n0x965B\t0xB431\n0x965C\t0xB432\n0x965D\t0xB433\n0x9661\t0xB434\n0x9662\t0xB435\n0x9663\t0xB436\n0x9664\t0xB437\n0x9665\t0xB438\n0x9666\t0xB439\n0x9667\t0xB43A\n0x9668\t0xB43B\n0x9669\t0xB43C\n0x966A\t0xB43D\n0x966B\t0xB43E\n0x966C\t0xB43F\n0x966D\t0xB440\n0x966E\t0xB441\n0x966F\t0xB442\n0x9670\t0xB443\n0x9671\t0xB444\n0x9673\t0xB445\n0x9674\t0xB446\n0x9675\t0xB447\n0x9676\t0xB448\n0x9677\t0xB449\n0x9678\t0xB44A\n0x9679\t0xB44B\n0x967A\t0xB44C\n0x967B\t0xB44D\n0x967C\t0xB44E\n0x967D\t0xB44F\n0x9681\t0xB450\n0x9682\t0xB451\n0x9683\t0xB452\n0x9684\t0xB453\n0x9685\t0xB454\n0x9686\t0xB455\n0x9687\t0xB456\n0x9688\t0xB457\n0x9689\t0xB458\n0x968A\t0xB459\n0x968B\t0xB45A\n0x968C\t0xB45B\n0x968D\t0xB45C\n0x968E\t0xB45D\n0x968F\t0xB45E\n0x9690\t0xB45F\n0x9691\t0xB460\n0x9693\t0xB461\n0x9694\t0xB462\n0x9695\t0xB463\n0x9696\t0xB464\n0x9697\t0xB465\n0x9698\t0xB466\n0x9699\t0xB467\n0x969A\t0xB468\n0x969B\t0xB469\n0x969C\t0xB46A\n0x969D\t0xB46B\n0x96A1\t0xB46C\n0x96A2\t0xB46D\n0x96A3\t0xB46E\n0x96A4\t0xB46F\n0x96A5\t0xB470\n0x96A6\t0xB471\n0x96A7\t0xB472\n0x96A8\t0xB473\n0x96A9\t0xB474\n0x96AA\t0xB475\n0x96AB\t0xB476\n0x96AC\t0xB477\n0x96AD\t0xB478\n0x96AE\t0xB479\n0x96AF\t0xB47A\n0x96B0\t0xB47B\n0x96B1\t0xB47C\n0x96B3\t0xB47D\n0x96B4\t0xB47E\n0x96B5\t0xB47F\n0x96B6\t0xB480\n0x96B7\t0xB481\n0x96B8\t0xB482\n0x96B9\t0xB483\n0x96BA\t0xB484\n0x96BB\t0xB485\n0x96BC\t0xB486\n0x96BD\t0xB487\n0x96C1\t0xB488\n0x96C2\t0xB489\n0x96C3\t0xB48A\n0x96C4\t0xB48B\n0x96C5\t0xB48C\n0x96C6\t0xB48D\n0x96C7\t0xB48E\n0x96C8\t0xB48F\n0x96C9\t0xB490\n0x96CA\t0xB491\n0x96CB\t0xB492\n0x96CC\t0xB493\n0x96CD\t0xB494\n0x96CE\t0xB495\n0x96CF\t0xB496\n0x96D0\t0xB497\n0x96D1\t0xB498\n0x96D3\t0xB499\n0x96D4\t0xB49A\n0x96D5\t0xB49B\n0x96D6\t0xB49C\n0x96D7\t0xB49D\n0x96D8\t0xB49E\n0x96D9\t0xB49F\n0x96DA\t0xB4A0\n0x96DB\t0xB4A1\n0x96DC\t0xB4A2\n0x96DD\t0xB4A3\n0x96E1\t0xB4A4\n0x96E2\t0xB4A5\n0x96E3\t0xB4A6\n0x96E4\t0xB4A7\n0x96E5\t0xB4A8\n0x96E6\t0xB4A9\n0x96E7\t0xB4AA\n0x96E8\t0xB4AB\n0x96E9\t0xB4AC\n0x96EA\t0xB4AD\n0x96EB\t0xB4AE\n0x96EC\t0xB4AF\n0x96ED\t0xB4B0\n0x96EE\t0xB4B1\n0x96EF\t0xB4B2\n0x96F0\t0xB4B3\n0x96F1\t0xB4B4\n0x96F3\t0xB4B5\n0x96F4\t0xB4B6\n0x96F5\t0xB4B7\n0x96F6\t0xB4B8\n0x96F7\t0xB4B9\n0x96F8\t0xB4BA\n0x96F9\t0xB4BB\n0x96FA\t0xB4BC\n0x96FB\t0xB4BD\n0x96FC\t0xB4BE\n0x96FD\t0xB4BF\n0x9741\t0xB4C0\n0x9742\t0xB4C1\n0x9743\t0xB4C2\n0x9744\t0xB4C3\n0x9745\t0xB4C4\n0x9746\t0xB4C5\n0x9747\t0xB4C6\n0x9748\t0xB4C7\n0x9749\t0xB4C8\n0x974A\t0xB4C9\n0x974B\t0xB4CA\n0x974C\t0xB4CB\n0x974D\t0xB4CC\n0x974E\t0xB4CD\n0x974F\t0xB4CE\n0x9750\t0xB4CF\n0x9751\t0xB4D0\n0x9753\t0xB4D1\n0x9754\t0xB4D2\n0x9755\t0xB4D3\n0x9756\t0xB4D4\n0x9757\t0xB4D5\n0x9758\t0xB4D6\n0x9759\t0xB4D7\n0x975A\t0xB4D8\n0x975B\t0xB4D9\n0x975C\t0xB4DA\n0x975D\t0xB4DB\n0x9761\t0xB4DC\n0x9762\t0xB4DD\n0x9763\t0xB4DE\n0x9764\t0xB4DF\n0x9765\t0xB4E0\n0x9766\t0xB4E1\n0x9767\t0xB4E2\n0x9768\t0xB4E3\n0x9769\t0xB4E4\n0x976A\t0xB4E5\n0x976B\t0xB4E6\n0x976C\t0xB4E7\n0x976D\t0xB4E8\n0x976E\t0xB4E9\n0x976F\t0xB4EA\n0x9770\t0xB4EB\n0x9771\t0xB4EC\n0x9773\t0xB4ED\n0x9774\t0xB4EE\n0x9775\t0xB4EF\n0x9776\t0xB4F0\n0x9777\t0xB4F1\n0x9778\t0xB4F2\n0x9779\t0xB4F3\n0x977A\t0xB4F4\n0x977B\t0xB4F5\n0x977C\t0xB4F6\n0x977D\t0xB4F7\n0x9781\t0xB4F8\n0x9782\t0xB4F9\n0x9783\t0xB4FA\n0x9784\t0xB4FB\n0x9785\t0xB4FC\n0x9786\t0xB4FD\n0x9787\t0xB4FE\n0x9788\t0xB4FF\n0x9789\t0xB500\n0x978A\t0xB501\n0x978B\t0xB502\n0x978C\t0xB503\n0x978D\t0xB504\n0x978E\t0xB505\n0x978F\t0xB506\n0x9790\t0xB507\n0x9791\t0xB508\n0x9793\t0xB509\n0x9794\t0xB50A\n0x9795\t0xB50B\n0x9796\t0xB50C\n0x9797\t0xB50D\n0x9798\t0xB50E\n0x9799\t0xB50F\n0x979A\t0xB510\n0x979B\t0xB511\n0x979C\t0xB512\n0x979D\t0xB513\n0x97A1\t0xB514\n0x97A2\t0xB515\n0x97A3\t0xB516\n0x97A4\t0xB517\n0x97A5\t0xB518\n0x97A6\t0xB519\n0x97A7\t0xB51A\n0x97A8\t0xB51B\n0x97A9\t0xB51C\n0x97AA\t0xB51D\n0x97AB\t0xB51E\n0x97AC\t0xB51F\n0x97AD\t0xB520\n0x97AE\t0xB521\n0x97AF\t0xB522\n0x97B0\t0xB523\n0x97B1\t0xB524\n0x97B3\t0xB525\n0x97B4\t0xB526\n0x97B5\t0xB527\n0x97B6\t0xB528\n0x97B7\t0xB529\n0x97B8\t0xB52A\n0x97B9\t0xB52B\n0x97BA\t0xB52C\n0x97BB\t0xB52D\n0x97BC\t0xB52E\n0x97BD\t0xB52F\n0x9841\t0x3138\n0x9861\t0xB530\n0x9862\t0xB531\n0x9863\t0xB532\n0x9864\t0xB533\n0x9865\t0xB534\n0x9866\t0xB535\n0x9867\t0xB536\n0x9868\t0xB537\n0x9869\t0xB538\n0x986A\t0xB539\n0x986B\t0xB53A\n0x986C\t0xB53B\n0x986D\t0xB53C\n0x986E\t0xB53D\n0x986F\t0xB53E\n0x9870\t0xB53F\n0x9871\t0xB540\n0x9873\t0xB541\n0x9874\t0xB542\n0x9875\t0xB543\n0x9876\t0xB544\n0x9877\t0xB545\n0x9878\t0xB546\n0x9879\t0xB547\n0x987A\t0xB548\n0x987B\t0xB549\n0x987C\t0xB54A\n0x987D\t0xB54B\n0x9881\t0xB54C\n0x9882\t0xB54D\n0x9883\t0xB54E\n0x9884\t0xB54F\n0x9885\t0xB550\n0x9886\t0xB551\n0x9887\t0xB552\n0x9888\t0xB553\n0x9889\t0xB554\n0x988A\t0xB555\n0x988B\t0xB556\n0x988C\t0xB557\n0x988D\t0xB558\n0x988E\t0xB559\n0x988F\t0xB55A\n0x9890\t0xB55B\n0x9891\t0xB55C\n0x9893\t0xB55D\n0x9894\t0xB55E\n0x9895\t0xB55F\n0x9896\t0xB560\n0x9897\t0xB561\n0x9898\t0xB562\n0x9899\t0xB563\n0x989A\t0xB564\n0x989B\t0xB565\n0x989C\t0xB566\n0x989D\t0xB567\n0x98A1\t0xB568\n0x98A2\t0xB569\n0x98A3\t0xB56A\n0x98A4\t0xB56B\n0x98A5\t0xB56C\n0x98A6\t0xB56D\n0x98A7\t0xB56E\n0x98A8\t0xB56F\n0x98A9\t0xB570\n0x98AA\t0xB571\n0x98AB\t0xB572\n0x98AC\t0xB573\n0x98AD\t0xB574\n0x98AE\t0xB575\n0x98AF\t0xB576\n0x98B0\t0xB577\n0x98B1\t0xB578\n0x98B3\t0xB579\n0x98B4\t0xB57A\n0x98B5\t0xB57B\n0x98B6\t0xB57C\n0x98B7\t0xB57D\n0x98B8\t0xB57E\n0x98B9\t0xB57F\n0x98BA\t0xB580\n0x98BB\t0xB581\n0x98BC\t0xB582\n0x98BD\t0xB583\n0x98C1\t0xB584\n0x98C2\t0xB585\n0x98C3\t0xB586\n0x98C4\t0xB587\n0x98C5\t0xB588\n0x98C6\t0xB589\n0x98C7\t0xB58A\n0x98C8\t0xB58B\n0x98C9\t0xB58C\n0x98CA\t0xB58D\n0x98CB\t0xB58E\n0x98CC\t0xB58F\n0x98CD\t0xB590\n0x98CE\t0xB591\n0x98CF\t0xB592\n0x98D0\t0xB593\n0x98D1\t0xB594\n0x98D3\t0xB595\n0x98D4\t0xB596\n0x98D5\t0xB597\n0x98D6\t0xB598\n0x98D7\t0xB599\n0x98D8\t0xB59A\n0x98D9\t0xB59B\n0x98DA\t0xB59C\n0x98DB\t0xB59D\n0x98DC\t0xB59E\n0x98DD\t0xB59F\n0x98E1\t0xB5A0\n0x98E2\t0xB5A1\n0x98E3\t0xB5A2\n0x98E4\t0xB5A3\n0x98E5\t0xB5A4\n0x98E6\t0xB5A5\n0x98E7\t0xB5A6\n0x98E8\t0xB5A7\n0x98E9\t0xB5A8\n0x98EA\t0xB5A9\n0x98EB\t0xB5AA\n0x98EC\t0xB5AB\n0x98ED\t0xB5AC\n0x98EE\t0xB5AD\n0x98EF\t0xB5AE\n0x98F0\t0xB5AF\n0x98F1\t0xB5B0\n0x98F3\t0xB5B1\n0x98F4\t0xB5B2\n0x98F5\t0xB5B3\n0x98F6\t0xB5B4\n0x98F7\t0xB5B5\n0x98F8\t0xB5B6\n0x98F9\t0xB5B7\n0x98FA\t0xB5B8\n0x98FB\t0xB5B9\n0x98FC\t0xB5BA\n0x98FD\t0xB5BB\n0x9941\t0xB5BC\n0x9942\t0xB5BD\n0x9943\t0xB5BE\n0x9944\t0xB5BF\n0x9945\t0xB5C0\n0x9946\t0xB5C1\n0x9947\t0xB5C2\n0x9948\t0xB5C3\n0x9949\t0xB5C4\n0x994A\t0xB5C5\n0x994B\t0xB5C6\n0x994C\t0xB5C7\n0x994D\t0xB5C8\n0x994E\t0xB5C9\n0x994F\t0xB5CA\n0x9950\t0xB5CB\n0x9951\t0xB5CC\n0x9953\t0xB5CD\n0x9954\t0xB5CE\n0x9955\t0xB5CF\n0x9956\t0xB5D0\n0x9957\t0xB5D1\n0x9958\t0xB5D2\n0x9959\t0xB5D3\n0x995A\t0xB5D4\n0x995B\t0xB5D5\n0x995C\t0xB5D6\n0x995D\t0xB5D7\n0x9961\t0xB5D8\n0x9962\t0xB5D9\n0x9963\t0xB5DA\n0x9964\t0xB5DB\n0x9965\t0xB5DC\n0x9966\t0xB5DD\n0x9967\t0xB5DE\n0x9968\t0xB5DF\n0x9969\t0xB5E0\n0x996A\t0xB5E1\n0x996B\t0xB5E2\n0x996C\t0xB5E3\n0x996D\t0xB5E4\n0x996E\t0xB5E5\n0x996F\t0xB5E6\n0x9970\t0xB5E7\n0x9971\t0xB5E8\n0x9973\t0xB5E9\n0x9974\t0xB5EA\n0x9975\t0xB5EB\n0x9976\t0xB5EC\n0x9977\t0xB5ED\n0x9978\t0xB5EE\n0x9979\t0xB5EF\n0x997A\t0xB5F0\n0x997B\t0xB5F1\n0x997C\t0xB5F2\n0x997D\t0xB5F3\n0x9981\t0xB5F4\n0x9982\t0xB5F5\n0x9983\t0xB5F6\n0x9984\t0xB5F7\n0x9985\t0xB5F8\n0x9986\t0xB5F9\n0x9987\t0xB5FA\n0x9988\t0xB5FB\n0x9989\t0xB5FC\n0x998A\t0xB5FD\n0x998B\t0xB5FE\n0x998C\t0xB5FF\n0x998D\t0xB600\n0x998E\t0xB601\n0x998F\t0xB602\n0x9990\t0xB603\n0x9991\t0xB604\n0x9993\t0xB605\n0x9994\t0xB606\n0x9995\t0xB607\n0x9996\t0xB608\n0x9997\t0xB609\n0x9998\t0xB60A\n0x9999\t0xB60B\n0x999A\t0xB60C\n0x999B\t0xB60D\n0x999C\t0xB60E\n0x999D\t0xB60F\n0x99A1\t0xB610\n0x99A2\t0xB611\n0x99A3\t0xB612\n0x99A4\t0xB613\n0x99A5\t0xB614\n0x99A6\t0xB615\n0x99A7\t0xB616\n0x99A8\t0xB617\n0x99A9\t0xB618\n0x99AA\t0xB619\n0x99AB\t0xB61A\n0x99AC\t0xB61B\n0x99AD\t0xB61C\n0x99AE\t0xB61D\n0x99AF\t0xB61E\n0x99B0\t0xB61F\n0x99B1\t0xB620\n0x99B3\t0xB621\n0x99B4\t0xB622\n0x99B5\t0xB623\n0x99B6\t0xB624\n0x99B7\t0xB625\n0x99B8\t0xB626\n0x99B9\t0xB627\n0x99BA\t0xB628\n0x99BB\t0xB629\n0x99BC\t0xB62A\n0x99BD\t0xB62B\n0x99C1\t0xB62C\n0x99C2\t0xB62D\n0x99C3\t0xB62E\n0x99C4\t0xB62F\n0x99C5\t0xB630\n0x99C6\t0xB631\n0x99C7\t0xB632\n0x99C8\t0xB633\n0x99C9\t0xB634\n0x99CA\t0xB635\n0x99CB\t0xB636\n0x99CC\t0xB637\n0x99CD\t0xB638\n0x99CE\t0xB639\n0x99CF\t0xB63A\n0x99D0\t0xB63B\n0x99D1\t0xB63C\n0x99D3\t0xB63D\n0x99D4\t0xB63E\n0x99D5\t0xB63F\n0x99D6\t0xB640\n0x99D7\t0xB641\n0x99D8\t0xB642\n0x99D9\t0xB643\n0x99DA\t0xB644\n0x99DB\t0xB645\n0x99DC\t0xB646\n0x99DD\t0xB647\n0x99E1\t0xB648\n0x99E2\t0xB649\n0x99E3\t0xB64A\n0x99E4\t0xB64B\n0x99E5\t0xB64C\n0x99E6\t0xB64D\n0x99E7\t0xB64E\n0x99E8\t0xB64F\n0x99E9\t0xB650\n0x99EA\t0xB651\n0x99EB\t0xB652\n0x99EC\t0xB653\n0x99ED\t0xB654\n0x99EE\t0xB655\n0x99EF\t0xB656\n0x99F0\t0xB657\n0x99F1\t0xB658\n0x99F3\t0xB659\n0x99F4\t0xB65A\n0x99F5\t0xB65B\n0x99F6\t0xB65C\n0x99F7\t0xB65D\n0x99F8\t0xB65E\n0x99F9\t0xB65F\n0x99FA\t0xB660\n0x99FB\t0xB661\n0x99FC\t0xB662\n0x99FD\t0xB663\n0x9A41\t0xB664\n0x9A42\t0xB665\n0x9A43\t0xB666\n0x9A44\t0xB667\n0x9A45\t0xB668\n0x9A46\t0xB669\n0x9A47\t0xB66A\n0x9A48\t0xB66B\n0x9A49\t0xB66C\n0x9A4A\t0xB66D\n0x9A4B\t0xB66E\n0x9A4C\t0xB66F\n0x9A4D\t0xB670\n0x9A4E\t0xB671\n0x9A4F\t0xB672\n0x9A50\t0xB673\n0x9A51\t0xB674\n0x9A53\t0xB675\n0x9A54\t0xB676\n0x9A55\t0xB677\n0x9A56\t0xB678\n0x9A57\t0xB679\n0x9A58\t0xB67A\n0x9A59\t0xB67B\n0x9A5A\t0xB67C\n0x9A5B\t0xB67D\n0x9A5C\t0xB67E\n0x9A5D\t0xB67F\n0x9A61\t0xB680\n0x9A62\t0xB681\n0x9A63\t0xB682\n0x9A64\t0xB683\n0x9A65\t0xB684\n0x9A66\t0xB685\n0x9A67\t0xB686\n0x9A68\t0xB687\n0x9A69\t0xB688\n0x9A6A\t0xB689\n0x9A6B\t0xB68A\n0x9A6C\t0xB68B\n0x9A6D\t0xB68C\n0x9A6E\t0xB68D\n0x9A6F\t0xB68E\n0x9A70\t0xB68F\n0x9A71\t0xB690\n0x9A73\t0xB691\n0x9A74\t0xB692\n0x9A75\t0xB693\n0x9A76\t0xB694\n0x9A77\t0xB695\n0x9A78\t0xB696\n0x9A79\t0xB697\n0x9A7A\t0xB698\n0x9A7B\t0xB699\n0x9A7C\t0xB69A\n0x9A7D\t0xB69B\n0x9A81\t0xB69C\n0x9A82\t0xB69D\n0x9A83\t0xB69E\n0x9A84\t0xB69F\n0x9A85\t0xB6A0\n0x9A86\t0xB6A1\n0x9A87\t0xB6A2\n0x9A88\t0xB6A3\n0x9A89\t0xB6A4\n0x9A8A\t0xB6A5\n0x9A8B\t0xB6A6\n0x9A8C\t0xB6A7\n0x9A8D\t0xB6A8\n0x9A8E\t0xB6A9\n0x9A8F\t0xB6AA\n0x9A90\t0xB6AB\n0x9A91\t0xB6AC\n0x9A93\t0xB6AD\n0x9A94\t0xB6AE\n0x9A95\t0xB6AF\n0x9A96\t0xB6B0\n0x9A97\t0xB6B1\n0x9A98\t0xB6B2\n0x9A99\t0xB6B3\n0x9A9A\t0xB6B4\n0x9A9B\t0xB6B5\n0x9A9C\t0xB6B6\n0x9A9D\t0xB6B7\n0x9AA1\t0xB6B8\n0x9AA2\t0xB6B9\n0x9AA3\t0xB6BA\n0x9AA4\t0xB6BB\n0x9AA5\t0xB6BC\n0x9AA6\t0xB6BD\n0x9AA7\t0xB6BE\n0x9AA8\t0xB6BF\n0x9AA9\t0xB6C0\n0x9AAA\t0xB6C1\n0x9AAB\t0xB6C2\n0x9AAC\t0xB6C3\n0x9AAD\t0xB6C4\n0x9AAE\t0xB6C5\n0x9AAF\t0xB6C6\n0x9AB0\t0xB6C7\n0x9AB1\t0xB6C8\n0x9AB3\t0xB6C9\n0x9AB4\t0xB6CA\n0x9AB5\t0xB6CB\n0x9AB6\t0xB6CC\n0x9AB7\t0xB6CD\n0x9AB8\t0xB6CE\n0x9AB9\t0xB6CF\n0x9ABA\t0xB6D0\n0x9ABB\t0xB6D1\n0x9ABC\t0xB6D2\n0x9ABD\t0xB6D3\n0x9AC1\t0xB6D4\n0x9AC2\t0xB6D5\n0x9AC3\t0xB6D6\n0x9AC4\t0xB6D7\n0x9AC5\t0xB6D8\n0x9AC6\t0xB6D9\n0x9AC7\t0xB6DA\n0x9AC8\t0xB6DB\n0x9AC9\t0xB6DC\n0x9ACA\t0xB6DD\n0x9ACB\t0xB6DE\n0x9ACC\t0xB6DF\n0x9ACD\t0xB6E0\n0x9ACE\t0xB6E1\n0x9ACF\t0xB6E2\n0x9AD0\t0xB6E3\n0x9AD1\t0xB6E4\n0x9AD3\t0xB6E5\n0x9AD4\t0xB6E6\n0x9AD5\t0xB6E7\n0x9AD6\t0xB6E8\n0x9AD7\t0xB6E9\n0x9AD8\t0xB6EA\n0x9AD9\t0xB6EB\n0x9ADA\t0xB6EC\n0x9ADB\t0xB6ED\n0x9ADC\t0xB6EE\n0x9ADD\t0xB6EF\n0x9AE1\t0xB6F0\n0x9AE2\t0xB6F1\n0x9AE3\t0xB6F2\n0x9AE4\t0xB6F3\n0x9AE5\t0xB6F4\n0x9AE6\t0xB6F5\n0x9AE7\t0xB6F6\n0x9AE8\t0xB6F7\n0x9AE9\t0xB6F8\n0x9AEA\t0xB6F9\n0x9AEB\t0xB6FA\n0x9AEC\t0xB6FB\n0x9AED\t0xB6FC\n0x9AEE\t0xB6FD\n0x9AEF\t0xB6FE\n0x9AF0\t0xB6FF\n0x9AF1\t0xB700\n0x9AF3\t0xB701\n0x9AF4\t0xB702\n0x9AF5\t0xB703\n0x9AF6\t0xB704\n0x9AF7\t0xB705\n0x9AF8\t0xB706\n0x9AF9\t0xB707\n0x9AFA\t0xB708\n0x9AFB\t0xB709\n0x9AFC\t0xB70A\n0x9AFD\t0xB70B\n0x9B41\t0xB70C\n0x9B42\t0xB70D\n0x9B43\t0xB70E\n0x9B44\t0xB70F\n0x9B45\t0xB710\n0x9B46\t0xB711\n0x9B47\t0xB712\n0x9B48\t0xB713\n0x9B49\t0xB714\n0x9B4A\t0xB715\n0x9B4B\t0xB716\n0x9B4C\t0xB717\n0x9B4D\t0xB718\n0x9B4E\t0xB719\n0x9B4F\t0xB71A\n0x9B50\t0xB71B\n0x9B51\t0xB71C\n0x9B53\t0xB71D\n0x9B54\t0xB71E\n0x9B55\t0xB71F\n0x9B56\t0xB720\n0x9B57\t0xB721\n0x9B58\t0xB722\n0x9B59\t0xB723\n0x9B5A\t0xB724\n0x9B5B\t0xB725\n0x9B5C\t0xB726\n0x9B5D\t0xB727\n0x9B61\t0xB728\n0x9B62\t0xB729\n0x9B63\t0xB72A\n0x9B64\t0xB72B\n0x9B65\t0xB72C\n0x9B66\t0xB72D\n0x9B67\t0xB72E\n0x9B68\t0xB72F\n0x9B69\t0xB730\n0x9B6A\t0xB731\n0x9B6B\t0xB732\n0x9B6C\t0xB733\n0x9B6D\t0xB734\n0x9B6E\t0xB735\n0x9B6F\t0xB736\n0x9B70\t0xB737\n0x9B71\t0xB738\n0x9B73\t0xB739\n0x9B74\t0xB73A\n0x9B75\t0xB73B\n0x9B76\t0xB73C\n0x9B77\t0xB73D\n0x9B78\t0xB73E\n0x9B79\t0xB73F\n0x9B7A\t0xB740\n0x9B7B\t0xB741\n0x9B7C\t0xB742\n0x9B7D\t0xB743\n0x9B81\t0xB744\n0x9B82\t0xB745\n0x9B83\t0xB746\n0x9B84\t0xB747\n0x9B85\t0xB748\n0x9B86\t0xB749\n0x9B87\t0xB74A\n0x9B88\t0xB74B\n0x9B89\t0xB74C\n0x9B8A\t0xB74D\n0x9B8B\t0xB74E\n0x9B8C\t0xB74F\n0x9B8D\t0xB750\n0x9B8E\t0xB751\n0x9B8F\t0xB752\n0x9B90\t0xB753\n0x9B91\t0xB754\n0x9B93\t0xB755\n0x9B94\t0xB756\n0x9B95\t0xB757\n0x9B96\t0xB758\n0x9B97\t0xB759\n0x9B98\t0xB75A\n0x9B99\t0xB75B\n0x9B9A\t0xB75C\n0x9B9B\t0xB75D\n0x9B9C\t0xB75E\n0x9B9D\t0xB75F\n0x9BA1\t0xB760\n0x9BA2\t0xB761\n0x9BA3\t0xB762\n0x9BA4\t0xB763\n0x9BA5\t0xB764\n0x9BA6\t0xB765\n0x9BA7\t0xB766\n0x9BA8\t0xB767\n0x9BA9\t0xB768\n0x9BAA\t0xB769\n0x9BAB\t0xB76A\n0x9BAC\t0xB76B\n0x9BAD\t0xB76C\n0x9BAE\t0xB76D\n0x9BAF\t0xB76E\n0x9BB0\t0xB76F\n0x9BB1\t0xB770\n0x9BB3\t0xB771\n0x9BB4\t0xB772\n0x9BB5\t0xB773\n0x9BB6\t0xB774\n0x9BB7\t0xB775\n0x9BB8\t0xB776\n0x9BB9\t0xB777\n0x9BBA\t0xB778\n0x9BBB\t0xB779\n0x9BBC\t0xB77A\n0x9BBD\t0xB77B\n0x9C41\t0x3139\n0x9C61\t0xB77C\n0x9C62\t0xB77D\n0x9C63\t0xB77E\n0x9C64\t0xB77F\n0x9C65\t0xB780\n0x9C66\t0xB781\n0x9C67\t0xB782\n0x9C68\t0xB783\n0x9C69\t0xB784\n0x9C6A\t0xB785\n0x9C6B\t0xB786\n0x9C6C\t0xB787\n0x9C6D\t0xB788\n0x9C6E\t0xB789\n0x9C6F\t0xB78A\n0x9C70\t0xB78B\n0x9C71\t0xB78C\n0x9C73\t0xB78D\n0x9C74\t0xB78E\n0x9C75\t0xB78F\n0x9C76\t0xB790\n0x9C77\t0xB791\n0x9C78\t0xB792\n0x9C79\t0xB793\n0x9C7A\t0xB794\n0x9C7B\t0xB795\n0x9C7C\t0xB796\n0x9C7D\t0xB797\n0x9C81\t0xB798\n0x9C82\t0xB799\n0x9C83\t0xB79A\n0x9C84\t0xB79B\n0x9C85\t0xB79C\n0x9C86\t0xB79D\n0x9C87\t0xB79E\n0x9C88\t0xB79F\n0x9C89\t0xB7A0\n0x9C8A\t0xB7A1\n0x9C8B\t0xB7A2\n0x9C8C\t0xB7A3\n0x9C8D\t0xB7A4\n0x9C8E\t0xB7A5\n0x9C8F\t0xB7A6\n0x9C90\t0xB7A7\n0x9C91\t0xB7A8\n0x9C93\t0xB7A9\n0x9C94\t0xB7AA\n0x9C95\t0xB7AB\n0x9C96\t0xB7AC\n0x9C97\t0xB7AD\n0x9C98\t0xB7AE\n0x9C99\t0xB7AF\n0x9C9A\t0xB7B0\n0x9C9B\t0xB7B1\n0x9C9C\t0xB7B2\n0x9C9D\t0xB7B3\n0x9CA1\t0xB7B4\n0x9CA2\t0xB7B5\n0x9CA3\t0xB7B6\n0x9CA4\t0xB7B7\n0x9CA5\t0xB7B8\n0x9CA6\t0xB7B9\n0x9CA7\t0xB7BA\n0x9CA8\t0xB7BB\n0x9CA9\t0xB7BC\n0x9CAA\t0xB7BD\n0x9CAB\t0xB7BE\n0x9CAC\t0xB7BF\n0x9CAD\t0xB7C0\n0x9CAE\t0xB7C1\n0x9CAF\t0xB7C2\n0x9CB0\t0xB7C3\n0x9CB1\t0xB7C4\n0x9CB3\t0xB7C5\n0x9CB4\t0xB7C6\n0x9CB5\t0xB7C7\n0x9CB6\t0xB7C8\n0x9CB7\t0xB7C9\n0x9CB8\t0xB7CA\n0x9CB9\t0xB7CB\n0x9CBA\t0xB7CC\n0x9CBB\t0xB7CD\n0x9CBC\t0xB7CE\n0x9CBD\t0xB7CF\n0x9CC1\t0xB7D0\n0x9CC2\t0xB7D1\n0x9CC3\t0xB7D2\n0x9CC4\t0xB7D3\n0x9CC5\t0xB7D4\n0x9CC6\t0xB7D5\n0x9CC7\t0xB7D6\n0x9CC8\t0xB7D7\n0x9CC9\t0xB7D8\n0x9CCA\t0xB7D9\n0x9CCB\t0xB7DA\n0x9CCC\t0xB7DB\n0x9CCD\t0xB7DC\n0x9CCE\t0xB7DD\n0x9CCF\t0xB7DE\n0x9CD0\t0xB7DF\n0x9CD1\t0xB7E0\n0x9CD3\t0xB7E1\n0x9CD4\t0xB7E2\n0x9CD5\t0xB7E3\n0x9CD6\t0xB7E4\n0x9CD7\t0xB7E5\n0x9CD8\t0xB7E6\n0x9CD9\t0xB7E7\n0x9CDA\t0xB7E8\n0x9CDB\t0xB7E9\n0x9CDC\t0xB7EA\n0x9CDD\t0xB7EB\n0x9CE1\t0xB7EC\n0x9CE2\t0xB7ED\n0x9CE3\t0xB7EE\n0x9CE4\t0xB7EF\n0x9CE5\t0xB7F0\n0x9CE6\t0xB7F1\n0x9CE7\t0xB7F2\n0x9CE8\t0xB7F3\n0x9CE9\t0xB7F4\n0x9CEA\t0xB7F5\n0x9CEB\t0xB7F6\n0x9CEC\t0xB7F7\n0x9CED\t0xB7F8\n0x9CEE\t0xB7F9\n0x9CEF\t0xB7FA\n0x9CF0\t0xB7FB\n0x9CF1\t0xB7FC\n0x9CF3\t0xB7FD\n0x9CF4\t0xB7FE\n0x9CF5\t0xB7FF\n0x9CF6\t0xB800\n0x9CF7\t0xB801\n0x9CF8\t0xB802\n0x9CF9\t0xB803\n0x9CFA\t0xB804\n0x9CFB\t0xB805\n0x9CFC\t0xB806\n0x9CFD\t0xB807\n0x9D41\t0xB808\n0x9D42\t0xB809\n0x9D43\t0xB80A\n0x9D44\t0xB80B\n0x9D45\t0xB80C\n0x9D46\t0xB80D\n0x9D47\t0xB80E\n0x9D48\t0xB80F\n0x9D49\t0xB810\n0x9D4A\t0xB811\n0x9D4B\t0xB812\n0x9D4C\t0xB813\n0x9D4D\t0xB814\n0x9D4E\t0xB815\n0x9D4F\t0xB816\n0x9D50\t0xB817\n0x9D51\t0xB818\n0x9D53\t0xB819\n0x9D54\t0xB81A\n0x9D55\t0xB81B\n0x9D56\t0xB81C\n0x9D57\t0xB81D\n0x9D58\t0xB81E\n0x9D59\t0xB81F\n0x9D5A\t0xB820\n0x9D5B\t0xB821\n0x9D5C\t0xB822\n0x9D5D\t0xB823\n0x9D61\t0xB824\n0x9D62\t0xB825\n0x9D63\t0xB826\n0x9D64\t0xB827\n0x9D65\t0xB828\n0x9D66\t0xB829\n0x9D67\t0xB82A\n0x9D68\t0xB82B\n0x9D69\t0xB82C\n0x9D6A\t0xB82D\n0x9D6B\t0xB82E\n0x9D6C\t0xB82F\n0x9D6D\t0xB830\n0x9D6E\t0xB831\n0x9D6F\t0xB832\n0x9D70\t0xB833\n0x9D71\t0xB834\n0x9D73\t0xB835\n0x9D74\t0xB836\n0x9D75\t0xB837\n0x9D76\t0xB838\n0x9D77\t0xB839\n0x9D78\t0xB83A\n0x9D79\t0xB83B\n0x9D7A\t0xB83C\n0x9D7B\t0xB83D\n0x9D7C\t0xB83E\n0x9D7D\t0xB83F\n0x9D81\t0xB840\n0x9D82\t0xB841\n0x9D83\t0xB842\n0x9D84\t0xB843\n0x9D85\t0xB844\n0x9D86\t0xB845\n0x9D87\t0xB846\n0x9D88\t0xB847\n0x9D89\t0xB848\n0x9D8A\t0xB849\n0x9D8B\t0xB84A\n0x9D8C\t0xB84B\n0x9D8D\t0xB84C\n0x9D8E\t0xB84D\n0x9D8F\t0xB84E\n0x9D90\t0xB84F\n0x9D91\t0xB850\n0x9D93\t0xB851\n0x9D94\t0xB852\n0x9D95\t0xB853\n0x9D96\t0xB854\n0x9D97\t0xB855\n0x9D98\t0xB856\n0x9D99\t0xB857\n0x9D9A\t0xB858\n0x9D9B\t0xB859\n0x9D9C\t0xB85A\n0x9D9D\t0xB85B\n0x9DA1\t0xB85C\n0x9DA2\t0xB85D\n0x9DA3\t0xB85E\n0x9DA4\t0xB85F\n0x9DA5\t0xB860\n0x9DA6\t0xB861\n0x9DA7\t0xB862\n0x9DA8\t0xB863\n0x9DA9\t0xB864\n0x9DAA\t0xB865\n0x9DAB\t0xB866\n0x9DAC\t0xB867\n0x9DAD\t0xB868\n0x9DAE\t0xB869\n0x9DAF\t0xB86A\n0x9DB0\t0xB86B\n0x9DB1\t0xB86C\n0x9DB3\t0xB86D\n0x9DB4\t0xB86E\n0x9DB5\t0xB86F\n0x9DB6\t0xB870\n0x9DB7\t0xB871\n0x9DB8\t0xB872\n0x9DB9\t0xB873\n0x9DBA\t0xB874\n0x9DBB\t0xB875\n0x9DBC\t0xB876\n0x9DBD\t0xB877\n0x9DC1\t0xB878\n0x9DC2\t0xB879\n0x9DC3\t0xB87A\n0x9DC4\t0xB87B\n0x9DC5\t0xB87C\n0x9DC6\t0xB87D\n0x9DC7\t0xB87E\n0x9DC8\t0xB87F\n0x9DC9\t0xB880\n0x9DCA\t0xB881\n0x9DCB\t0xB882\n0x9DCC\t0xB883\n0x9DCD\t0xB884\n0x9DCE\t0xB885\n0x9DCF\t0xB886\n0x9DD0\t0xB887\n0x9DD1\t0xB888\n0x9DD3\t0xB889\n0x9DD4\t0xB88A\n0x9DD5\t0xB88B\n0x9DD6\t0xB88C\n0x9DD7\t0xB88D\n0x9DD8\t0xB88E\n0x9DD9\t0xB88F\n0x9DDA\t0xB890\n0x9DDB\t0xB891\n0x9DDC\t0xB892\n0x9DDD\t0xB893\n0x9DE1\t0xB894\n0x9DE2\t0xB895\n0x9DE3\t0xB896\n0x9DE4\t0xB897\n0x9DE5\t0xB898\n0x9DE6\t0xB899\n0x9DE7\t0xB89A\n0x9DE8\t0xB89B\n0x9DE9\t0xB89C\n0x9DEA\t0xB89D\n0x9DEB\t0xB89E\n0x9DEC\t0xB89F\n0x9DED\t0xB8A0\n0x9DEE\t0xB8A1\n0x9DEF\t0xB8A2\n0x9DF0\t0xB8A3\n0x9DF1\t0xB8A4\n0x9DF3\t0xB8A5\n0x9DF4\t0xB8A6\n0x9DF5\t0xB8A7\n0x9DF6\t0xB8A8\n0x9DF7\t0xB8A9\n0x9DF8\t0xB8AA\n0x9DF9\t0xB8AB\n0x9DFA\t0xB8AC\n0x9DFB\t0xB8AD\n0x9DFC\t0xB8AE\n0x9DFD\t0xB8AF\n0x9E41\t0xB8B0\n0x9E42\t0xB8B1\n0x9E43\t0xB8B2\n0x9E44\t0xB8B3\n0x9E45\t0xB8B4\n0x9E46\t0xB8B5\n0x9E47\t0xB8B6\n0x9E48\t0xB8B7\n0x9E49\t0xB8B8\n0x9E4A\t0xB8B9\n0x9E4B\t0xB8BA\n0x9E4C\t0xB8BB\n0x9E4D\t0xB8BC\n0x9E4E\t0xB8BD\n0x9E4F\t0xB8BE\n0x9E50\t0xB8BF\n0x9E51\t0xB8C0\n0x9E53\t0xB8C1\n0x9E54\t0xB8C2\n0x9E55\t0xB8C3\n0x9E56\t0xB8C4\n0x9E57\t0xB8C5\n0x9E58\t0xB8C6\n0x9E59\t0xB8C7\n0x9E5A\t0xB8C8\n0x9E5B\t0xB8C9\n0x9E5C\t0xB8CA\n0x9E5D\t0xB8CB\n0x9E61\t0xB8CC\n0x9E62\t0xB8CD\n0x9E63\t0xB8CE\n0x9E64\t0xB8CF\n0x9E65\t0xB8D0\n0x9E66\t0xB8D1\n0x9E67\t0xB8D2\n0x9E68\t0xB8D3\n0x9E69\t0xB8D4\n0x9E6A\t0xB8D5\n0x9E6B\t0xB8D6\n0x9E6C\t0xB8D7\n0x9E6D\t0xB8D8\n0x9E6E\t0xB8D9\n0x9E6F\t0xB8DA\n0x9E70\t0xB8DB\n0x9E71\t0xB8DC\n0x9E73\t0xB8DD\n0x9E74\t0xB8DE\n0x9E75\t0xB8DF\n0x9E76\t0xB8E0\n0x9E77\t0xB8E1\n0x9E78\t0xB8E2\n0x9E79\t0xB8E3\n0x9E7A\t0xB8E4\n0x9E7B\t0xB8E5\n0x9E7C\t0xB8E6\n0x9E7D\t0xB8E7\n0x9E81\t0xB8E8\n0x9E82\t0xB8E9\n0x9E83\t0xB8EA\n0x9E84\t0xB8EB\n0x9E85\t0xB8EC\n0x9E86\t0xB8ED\n0x9E87\t0xB8EE\n0x9E88\t0xB8EF\n0x9E89\t0xB8F0\n0x9E8A\t0xB8F1\n0x9E8B\t0xB8F2\n0x9E8C\t0xB8F3\n0x9E8D\t0xB8F4\n0x9E8E\t0xB8F5\n0x9E8F\t0xB8F6\n0x9E90\t0xB8F7\n0x9E91\t0xB8F8\n0x9E93\t0xB8F9\n0x9E94\t0xB8FA\n0x9E95\t0xB8FB\n0x9E96\t0xB8FC\n0x9E97\t0xB8FD\n0x9E98\t0xB8FE\n0x9E99\t0xB8FF\n0x9E9A\t0xB900\n0x9E9B\t0xB901\n0x9E9C\t0xB902\n0x9E9D\t0xB903\n0x9EA1\t0xB904\n0x9EA2\t0xB905\n0x9EA3\t0xB906\n0x9EA4\t0xB907\n0x9EA5\t0xB908\n0x9EA6\t0xB909\n0x9EA7\t0xB90A\n0x9EA8\t0xB90B\n0x9EA9\t0xB90C\n0x9EAA\t0xB90D\n0x9EAB\t0xB90E\n0x9EAC\t0xB90F\n0x9EAD\t0xB910\n0x9EAE\t0xB911\n0x9EAF\t0xB912\n0x9EB0\t0xB913\n0x9EB1\t0xB914\n0x9EB3\t0xB915\n0x9EB4\t0xB916\n0x9EB5\t0xB917\n0x9EB6\t0xB918\n0x9EB7\t0xB919\n0x9EB8\t0xB91A\n0x9EB9\t0xB91B\n0x9EBA\t0xB91C\n0x9EBB\t0xB91D\n0x9EBC\t0xB91E\n0x9EBD\t0xB91F\n0x9EC1\t0xB920\n0x9EC2\t0xB921\n0x9EC3\t0xB922\n0x9EC4\t0xB923\n0x9EC5\t0xB924\n0x9EC6\t0xB925\n0x9EC7\t0xB926\n0x9EC8\t0xB927\n0x9EC9\t0xB928\n0x9ECA\t0xB929\n0x9ECB\t0xB92A\n0x9ECC\t0xB92B\n0x9ECD\t0xB92C\n0x9ECE\t0xB92D\n0x9ECF\t0xB92E\n0x9ED0\t0xB92F\n0x9ED1\t0xB930\n0x9ED3\t0xB931\n0x9ED4\t0xB932\n0x9ED5\t0xB933\n0x9ED6\t0xB934\n0x9ED7\t0xB935\n0x9ED8\t0xB936\n0x9ED9\t0xB937\n0x9EDA\t0xB938\n0x9EDB\t0xB939\n0x9EDC\t0xB93A\n0x9EDD\t0xB93B\n0x9EE1\t0xB93C\n0x9EE2\t0xB93D\n0x9EE3\t0xB93E\n0x9EE4\t0xB93F\n0x9EE5\t0xB940\n0x9EE6\t0xB941\n0x9EE7\t0xB942\n0x9EE8\t0xB943\n0x9EE9\t0xB944\n0x9EEA\t0xB945\n0x9EEB\t0xB946\n0x9EEC\t0xB947\n0x9EED\t0xB948\n0x9EEE\t0xB949\n0x9EEF\t0xB94A\n0x9EF0\t0xB94B\n0x9EF1\t0xB94C\n0x9EF3\t0xB94D\n0x9EF4\t0xB94E\n0x9EF5\t0xB94F\n0x9EF6\t0xB950\n0x9EF7\t0xB951\n0x9EF8\t0xB952\n0x9EF9\t0xB953\n0x9EFA\t0xB954\n0x9EFB\t0xB955\n0x9EFC\t0xB956\n0x9EFD\t0xB957\n0x9F41\t0xB958\n0x9F42\t0xB959\n0x9F43\t0xB95A\n0x9F44\t0xB95B\n0x9F45\t0xB95C\n0x9F46\t0xB95D\n0x9F47\t0xB95E\n0x9F48\t0xB95F\n0x9F49\t0xB960\n0x9F4A\t0xB961\n0x9F4B\t0xB962\n0x9F4C\t0xB963\n0x9F4D\t0xB964\n0x9F4E\t0xB965\n0x9F4F\t0xB966\n0x9F50\t0xB967\n0x9F51\t0xB968\n0x9F53\t0xB969\n0x9F54\t0xB96A\n0x9F55\t0xB96B\n0x9F56\t0xB96C\n0x9F57\t0xB96D\n0x9F58\t0xB96E\n0x9F59\t0xB96F\n0x9F5A\t0xB970\n0x9F5B\t0xB971\n0x9F5C\t0xB972\n0x9F5D\t0xB973\n0x9F61\t0xB974\n0x9F62\t0xB975\n0x9F63\t0xB976\n0x9F64\t0xB977\n0x9F65\t0xB978\n0x9F66\t0xB979\n0x9F67\t0xB97A\n0x9F68\t0xB97B\n0x9F69\t0xB97C\n0x9F6A\t0xB97D\n0x9F6B\t0xB97E\n0x9F6C\t0xB97F\n0x9F6D\t0xB980\n0x9F6E\t0xB981\n0x9F6F\t0xB982\n0x9F70\t0xB983\n0x9F71\t0xB984\n0x9F73\t0xB985\n0x9F74\t0xB986\n0x9F75\t0xB987\n0x9F76\t0xB988\n0x9F77\t0xB989\n0x9F78\t0xB98A\n0x9F79\t0xB98B\n0x9F7A\t0xB98C\n0x9F7B\t0xB98D\n0x9F7C\t0xB98E\n0x9F7D\t0xB98F\n0x9F81\t0xB990\n0x9F82\t0xB991\n0x9F83\t0xB992\n0x9F84\t0xB993\n0x9F85\t0xB994\n0x9F86\t0xB995\n0x9F87\t0xB996\n0x9F88\t0xB997\n0x9F89\t0xB998\n0x9F8A\t0xB999\n0x9F8B\t0xB99A\n0x9F8C\t0xB99B\n0x9F8D\t0xB99C\n0x9F8E\t0xB99D\n0x9F8F\t0xB99E\n0x9F90\t0xB99F\n0x9F91\t0xB9A0\n0x9F93\t0xB9A1\n0x9F94\t0xB9A2\n0x9F95\t0xB9A3\n0x9F96\t0xB9A4\n0x9F97\t0xB9A5\n0x9F98\t0xB9A6\n0x9F99\t0xB9A7\n0x9F9A\t0xB9A8\n0x9F9B\t0xB9A9\n0x9F9C\t0xB9AA\n0x9F9D\t0xB9AB\n0x9FA1\t0xB9AC\n0x9FA2\t0xB9AD\n0x9FA3\t0xB9AE\n0x9FA4\t0xB9AF\n0x9FA5\t0xB9B0\n0x9FA6\t0xB9B1\n0x9FA7\t0xB9B2\n0x9FA8\t0xB9B3\n0x9FA9\t0xB9B4\n0x9FAA\t0xB9B5\n0x9FAB\t0xB9B6\n0x9FAC\t0xB9B7\n0x9FAD\t0xB9B8\n0x9FAE\t0xB9B9\n0x9FAF\t0xB9BA\n0x9FB0\t0xB9BB\n0x9FB1\t0xB9BC\n0x9FB3\t0xB9BD\n0x9FB4\t0xB9BE\n0x9FB5\t0xB9BF\n0x9FB6\t0xB9C0\n0x9FB7\t0xB9C1\n0x9FB8\t0xB9C2\n0x9FB9\t0xB9C3\n0x9FBA\t0xB9C4\n0x9FBB\t0xB9C5\n0x9FBC\t0xB9C6\n0x9FBD\t0xB9C7\n0xA041\t0x3141\n0xA061\t0xB9C8\n0xA062\t0xB9C9\n0xA063\t0xB9CA\n0xA064\t0xB9CB\n0xA065\t0xB9CC\n0xA066\t0xB9CD\n0xA067\t0xB9CE\n0xA068\t0xB9CF\n0xA069\t0xB9D0\n0xA06A\t0xB9D1\n0xA06B\t0xB9D2\n0xA06C\t0xB9D3\n0xA06D\t0xB9D4\n0xA06E\t0xB9D5\n0xA06F\t0xB9D6\n0xA070\t0xB9D7\n0xA071\t0xB9D8\n0xA073\t0xB9D9\n0xA074\t0xB9DA\n0xA075\t0xB9DB\n0xA076\t0xB9DC\n0xA077\t0xB9DD\n0xA078\t0xB9DE\n0xA079\t0xB9DF\n0xA07A\t0xB9E0\n0xA07B\t0xB9E1\n0xA07C\t0xB9E2\n0xA07D\t0xB9E3\n0xA081\t0xB9E4\n0xA082\t0xB9E5\n0xA083\t0xB9E6\n0xA084\t0xB9E7\n0xA085\t0xB9E8\n0xA086\t0xB9E9\n0xA087\t0xB9EA\n0xA088\t0xB9EB\n0xA089\t0xB9EC\n0xA08A\t0xB9ED\n0xA08B\t0xB9EE\n0xA08C\t0xB9EF\n0xA08D\t0xB9F0\n0xA08E\t0xB9F1\n0xA08F\t0xB9F2\n0xA090\t0xB9F3\n0xA091\t0xB9F4\n0xA093\t0xB9F5\n0xA094\t0xB9F6\n0xA095\t0xB9F7\n0xA096\t0xB9F8\n0xA097\t0xB9F9\n0xA098\t0xB9FA\n0xA099\t0xB9FB\n0xA09A\t0xB9FC\n0xA09B\t0xB9FD\n0xA09C\t0xB9FE\n0xA09D\t0xB9FF\n0xA0A1\t0xBA00\n0xA0A2\t0xBA01\n0xA0A3\t0xBA02\n0xA0A4\t0xBA03\n0xA0A5\t0xBA04\n0xA0A6\t0xBA05\n0xA0A7\t0xBA06\n0xA0A8\t0xBA07\n0xA0A9\t0xBA08\n0xA0AA\t0xBA09\n0xA0AB\t0xBA0A\n0xA0AC\t0xBA0B\n0xA0AD\t0xBA0C\n0xA0AE\t0xBA0D\n0xA0AF\t0xBA0E\n0xA0B0\t0xBA0F\n0xA0B1\t0xBA10\n0xA0B3\t0xBA11\n0xA0B4\t0xBA12\n0xA0B5\t0xBA13\n0xA0B6\t0xBA14\n0xA0B7\t0xBA15\n0xA0B8\t0xBA16\n0xA0B9\t0xBA17\n0xA0BA\t0xBA18\n0xA0BB\t0xBA19\n0xA0BC\t0xBA1A\n0xA0BD\t0xBA1B\n0xA0C1\t0xBA1C\n0xA0C2\t0xBA1D\n0xA0C3\t0xBA1E\n0xA0C4\t0xBA1F\n0xA0C5\t0xBA20\n0xA0C6\t0xBA21\n0xA0C7\t0xBA22\n0xA0C8\t0xBA23\n0xA0C9\t0xBA24\n0xA0CA\t0xBA25\n0xA0CB\t0xBA26\n0xA0CC\t0xBA27\n0xA0CD\t0xBA28\n0xA0CE\t0xBA29\n0xA0CF\t0xBA2A\n0xA0D0\t0xBA2B\n0xA0D1\t0xBA2C\n0xA0D3\t0xBA2D\n0xA0D4\t0xBA2E\n0xA0D5\t0xBA2F\n0xA0D6\t0xBA30\n0xA0D7\t0xBA31\n0xA0D8\t0xBA32\n0xA0D9\t0xBA33\n0xA0DA\t0xBA34\n0xA0DB\t0xBA35\n0xA0DC\t0xBA36\n0xA0DD\t0xBA37\n0xA0E1\t0xBA38\n0xA0E2\t0xBA39\n0xA0E3\t0xBA3A\n0xA0E4\t0xBA3B\n0xA0E5\t0xBA3C\n0xA0E6\t0xBA3D\n0xA0E7\t0xBA3E\n0xA0E8\t0xBA3F\n0xA0E9\t0xBA40\n0xA0EA\t0xBA41\n0xA0EB\t0xBA42\n0xA0EC\t0xBA43\n0xA0ED\t0xBA44\n0xA0EE\t0xBA45\n0xA0EF\t0xBA46\n0xA0F0\t0xBA47\n0xA0F1\t0xBA48\n0xA0F3\t0xBA49\n0xA0F4\t0xBA4A\n0xA0F5\t0xBA4B\n0xA0F6\t0xBA4C\n0xA0F7\t0xBA4D\n0xA0F8\t0xBA4E\n0xA0F9\t0xBA4F\n0xA0FA\t0xBA50\n0xA0FB\t0xBA51\n0xA0FC\t0xBA52\n0xA0FD\t0xBA53\n0xA141\t0xBA54\n0xA142\t0xBA55\n0xA143\t0xBA56\n0xA144\t0xBA57\n0xA145\t0xBA58\n0xA146\t0xBA59\n0xA147\t0xBA5A\n0xA148\t0xBA5B\n0xA149\t0xBA5C\n0xA14A\t0xBA5D\n0xA14B\t0xBA5E\n0xA14C\t0xBA5F\n0xA14D\t0xBA60\n0xA14E\t0xBA61\n0xA14F\t0xBA62\n0xA150\t0xBA63\n0xA151\t0xBA64\n0xA153\t0xBA65\n0xA154\t0xBA66\n0xA155\t0xBA67\n0xA156\t0xBA68\n0xA157\t0xBA69\n0xA158\t0xBA6A\n0xA159\t0xBA6B\n0xA15A\t0xBA6C\n0xA15B\t0xBA6D\n0xA15C\t0xBA6E\n0xA15D\t0xBA6F\n0xA161\t0xBA70\n0xA162\t0xBA71\n0xA163\t0xBA72\n0xA164\t0xBA73\n0xA165\t0xBA74\n0xA166\t0xBA75\n0xA167\t0xBA76\n0xA168\t0xBA77\n0xA169\t0xBA78\n0xA16A\t0xBA79\n0xA16B\t0xBA7A\n0xA16C\t0xBA7B\n0xA16D\t0xBA7C\n0xA16E\t0xBA7D\n0xA16F\t0xBA7E\n0xA170\t0xBA7F\n0xA171\t0xBA80\n0xA173\t0xBA81\n0xA174\t0xBA82\n0xA175\t0xBA83\n0xA176\t0xBA84\n0xA177\t0xBA85\n0xA178\t0xBA86\n0xA179\t0xBA87\n0xA17A\t0xBA88\n0xA17B\t0xBA89\n0xA17C\t0xBA8A\n0xA17D\t0xBA8B\n0xA181\t0xBA8C\n0xA182\t0xBA8D\n0xA183\t0xBA8E\n0xA184\t0xBA8F\n0xA185\t0xBA90\n0xA186\t0xBA91\n0xA187\t0xBA92\n0xA188\t0xBA93\n0xA189\t0xBA94\n0xA18A\t0xBA95\n0xA18B\t0xBA96\n0xA18C\t0xBA97\n0xA18D\t0xBA98\n0xA18E\t0xBA99\n0xA18F\t0xBA9A\n0xA190\t0xBA9B\n0xA191\t0xBA9C\n0xA193\t0xBA9D\n0xA194\t0xBA9E\n0xA195\t0xBA9F\n0xA196\t0xBAA0\n0xA197\t0xBAA1\n0xA198\t0xBAA2\n0xA199\t0xBAA3\n0xA19A\t0xBAA4\n0xA19B\t0xBAA5\n0xA19C\t0xBAA6\n0xA19D\t0xBAA7\n0xA1A1\t0xBAA8\n0xA1A2\t0xBAA9\n0xA1A3\t0xBAAA\n0xA1A4\t0xBAAB\n0xA1A5\t0xBAAC\n0xA1A6\t0xBAAD\n0xA1A7\t0xBAAE\n0xA1A8\t0xBAAF\n0xA1A9\t0xBAB0\n0xA1AA\t0xBAB1\n0xA1AB\t0xBAB2\n0xA1AC\t0xBAB3\n0xA1AD\t0xBAB4\n0xA1AE\t0xBAB5\n0xA1AF\t0xBAB6\n0xA1B0\t0xBAB7\n0xA1B1\t0xBAB8\n0xA1B3\t0xBAB9\n0xA1B4\t0xBABA\n0xA1B5\t0xBABB\n0xA1B6\t0xBABC\n0xA1B7\t0xBABD\n0xA1B8\t0xBABE\n0xA1B9\t0xBABF\n0xA1BA\t0xBAC0\n0xA1BB\t0xBAC1\n0xA1BC\t0xBAC2\n0xA1BD\t0xBAC3\n0xA1C1\t0xBAC4\n0xA1C2\t0xBAC5\n0xA1C3\t0xBAC6\n0xA1C4\t0xBAC7\n0xA1C5\t0xBAC8\n0xA1C6\t0xBAC9\n0xA1C7\t0xBACA\n0xA1C8\t0xBACB\n0xA1C9\t0xBACC\n0xA1CA\t0xBACD\n0xA1CB\t0xBACE\n0xA1CC\t0xBACF\n0xA1CD\t0xBAD0\n0xA1CE\t0xBAD1\n0xA1CF\t0xBAD2\n0xA1D0\t0xBAD3\n0xA1D1\t0xBAD4\n0xA1D3\t0xBAD5\n0xA1D4\t0xBAD6\n0xA1D5\t0xBAD7\n0xA1D6\t0xBAD8\n0xA1D7\t0xBAD9\n0xA1D8\t0xBADA\n0xA1D9\t0xBADB\n0xA1DA\t0xBADC\n0xA1DB\t0xBADD\n0xA1DC\t0xBADE\n0xA1DD\t0xBADF\n0xA1E1\t0xBAE0\n0xA1E2\t0xBAE1\n0xA1E3\t0xBAE2\n0xA1E4\t0xBAE3\n0xA1E5\t0xBAE4\n0xA1E6\t0xBAE5\n0xA1E7\t0xBAE6\n0xA1E8\t0xBAE7\n0xA1E9\t0xBAE8\n0xA1EA\t0xBAE9\n0xA1EB\t0xBAEA\n0xA1EC\t0xBAEB\n0xA1ED\t0xBAEC\n0xA1EE\t0xBAED\n0xA1EF\t0xBAEE\n0xA1F0\t0xBAEF\n0xA1F1\t0xBAF0\n0xA1F3\t0xBAF1\n0xA1F4\t0xBAF2\n0xA1F5\t0xBAF3\n0xA1F6\t0xBAF4\n0xA1F7\t0xBAF5\n0xA1F8\t0xBAF6\n0xA1F9\t0xBAF7\n0xA1FA\t0xBAF8\n0xA1FB\t0xBAF9\n0xA1FC\t0xBAFA\n0xA1FD\t0xBAFB\n0xA241\t0xBAFC\n0xA242\t0xBAFD\n0xA243\t0xBAFE\n0xA244\t0xBAFF\n0xA245\t0xBB00\n0xA246\t0xBB01\n0xA247\t0xBB02\n0xA248\t0xBB03\n0xA249\t0xBB04\n0xA24A\t0xBB05\n0xA24B\t0xBB06\n0xA24C\t0xBB07\n0xA24D\t0xBB08\n0xA24E\t0xBB09\n0xA24F\t0xBB0A\n0xA250\t0xBB0B\n0xA251\t0xBB0C\n0xA253\t0xBB0D\n0xA254\t0xBB0E\n0xA255\t0xBB0F\n0xA256\t0xBB10\n0xA257\t0xBB11\n0xA258\t0xBB12\n0xA259\t0xBB13\n0xA25A\t0xBB14\n0xA25B\t0xBB15\n0xA25C\t0xBB16\n0xA25D\t0xBB17\n0xA261\t0xBB18\n0xA262\t0xBB19\n0xA263\t0xBB1A\n0xA264\t0xBB1B\n0xA265\t0xBB1C\n0xA266\t0xBB1D\n0xA267\t0xBB1E\n0xA268\t0xBB1F\n0xA269\t0xBB20\n0xA26A\t0xBB21\n0xA26B\t0xBB22\n0xA26C\t0xBB23\n0xA26D\t0xBB24\n0xA26E\t0xBB25\n0xA26F\t0xBB26\n0xA270\t0xBB27\n0xA271\t0xBB28\n0xA273\t0xBB29\n0xA274\t0xBB2A\n0xA275\t0xBB2B\n0xA276\t0xBB2C\n0xA277\t0xBB2D\n0xA278\t0xBB2E\n0xA279\t0xBB2F\n0xA27A\t0xBB30\n0xA27B\t0xBB31\n0xA27C\t0xBB32\n0xA27D\t0xBB33\n0xA281\t0xBB34\n0xA282\t0xBB35\n0xA283\t0xBB36\n0xA284\t0xBB37\n0xA285\t0xBB38\n0xA286\t0xBB39\n0xA287\t0xBB3A\n0xA288\t0xBB3B\n0xA289\t0xBB3C\n0xA28A\t0xBB3D\n0xA28B\t0xBB3E\n0xA28C\t0xBB3F\n0xA28D\t0xBB40\n0xA28E\t0xBB41\n0xA28F\t0xBB42\n0xA290\t0xBB43\n0xA291\t0xBB44\n0xA293\t0xBB45\n0xA294\t0xBB46\n0xA295\t0xBB47\n0xA296\t0xBB48\n0xA297\t0xBB49\n0xA298\t0xBB4A\n0xA299\t0xBB4B\n0xA29A\t0xBB4C\n0xA29B\t0xBB4D\n0xA29C\t0xBB4E\n0xA29D\t0xBB4F\n0xA2A1\t0xBB50\n0xA2A2\t0xBB51\n0xA2A3\t0xBB52\n0xA2A4\t0xBB53\n0xA2A5\t0xBB54\n0xA2A6\t0xBB55\n0xA2A7\t0xBB56\n0xA2A8\t0xBB57\n0xA2A9\t0xBB58\n0xA2AA\t0xBB59\n0xA2AB\t0xBB5A\n0xA2AC\t0xBB5B\n0xA2AD\t0xBB5C\n0xA2AE\t0xBB5D\n0xA2AF\t0xBB5E\n0xA2B0\t0xBB5F\n0xA2B1\t0xBB60\n0xA2B3\t0xBB61\n0xA2B4\t0xBB62\n0xA2B5\t0xBB63\n0xA2B6\t0xBB64\n0xA2B7\t0xBB65\n0xA2B8\t0xBB66\n0xA2B9\t0xBB67\n0xA2BA\t0xBB68\n0xA2BB\t0xBB69\n0xA2BC\t0xBB6A\n0xA2BD\t0xBB6B\n0xA2C1\t0xBB6C\n0xA2C2\t0xBB6D\n0xA2C3\t0xBB6E\n0xA2C4\t0xBB6F\n0xA2C5\t0xBB70\n0xA2C6\t0xBB71\n0xA2C7\t0xBB72\n0xA2C8\t0xBB73\n0xA2C9\t0xBB74\n0xA2CA\t0xBB75\n0xA2CB\t0xBB76\n0xA2CC\t0xBB77\n0xA2CD\t0xBB78\n0xA2CE\t0xBB79\n0xA2CF\t0xBB7A\n0xA2D0\t0xBB7B\n0xA2D1\t0xBB7C\n0xA2D3\t0xBB7D\n0xA2D4\t0xBB7E\n0xA2D5\t0xBB7F\n0xA2D6\t0xBB80\n0xA2D7\t0xBB81\n0xA2D8\t0xBB82\n0xA2D9\t0xBB83\n0xA2DA\t0xBB84\n0xA2DB\t0xBB85\n0xA2DC\t0xBB86\n0xA2DD\t0xBB87\n0xA2E1\t0xBB88\n0xA2E2\t0xBB89\n0xA2E3\t0xBB8A\n0xA2E4\t0xBB8B\n0xA2E5\t0xBB8C\n0xA2E6\t0xBB8D\n0xA2E7\t0xBB8E\n0xA2E8\t0xBB8F\n0xA2E9\t0xBB90\n0xA2EA\t0xBB91\n0xA2EB\t0xBB92\n0xA2EC\t0xBB93\n0xA2ED\t0xBB94\n0xA2EE\t0xBB95\n0xA2EF\t0xBB96\n0xA2F0\t0xBB97\n0xA2F1\t0xBB98\n0xA2F3\t0xBB99\n0xA2F4\t0xBB9A\n0xA2F5\t0xBB9B\n0xA2F6\t0xBB9C\n0xA2F7\t0xBB9D\n0xA2F8\t0xBB9E\n0xA2F9\t0xBB9F\n0xA2FA\t0xBBA0\n0xA2FB\t0xBBA1\n0xA2FC\t0xBBA2\n0xA2FD\t0xBBA3\n0xA341\t0xBBA4\n0xA342\t0xBBA5\n0xA343\t0xBBA6\n0xA344\t0xBBA7\n0xA345\t0xBBA8\n0xA346\t0xBBA9\n0xA347\t0xBBAA\n0xA348\t0xBBAB\n0xA349\t0xBBAC\n0xA34A\t0xBBAD\n0xA34B\t0xBBAE\n0xA34C\t0xBBAF\n0xA34D\t0xBBB0\n0xA34E\t0xBBB1\n0xA34F\t0xBBB2\n0xA350\t0xBBB3\n0xA351\t0xBBB4\n0xA353\t0xBBB5\n0xA354\t0xBBB6\n0xA355\t0xBBB7\n0xA356\t0xBBB8\n0xA357\t0xBBB9\n0xA358\t0xBBBA\n0xA359\t0xBBBB\n0xA35A\t0xBBBC\n0xA35B\t0xBBBD\n0xA35C\t0xBBBE\n0xA35D\t0xBBBF\n0xA361\t0xBBC0\n0xA362\t0xBBC1\n0xA363\t0xBBC2\n0xA364\t0xBBC3\n0xA365\t0xBBC4\n0xA366\t0xBBC5\n0xA367\t0xBBC6\n0xA368\t0xBBC7\n0xA369\t0xBBC8\n0xA36A\t0xBBC9\n0xA36B\t0xBBCA\n0xA36C\t0xBBCB\n0xA36D\t0xBBCC\n0xA36E\t0xBBCD\n0xA36F\t0xBBCE\n0xA370\t0xBBCF\n0xA371\t0xBBD0\n0xA373\t0xBBD1\n0xA374\t0xBBD2\n0xA375\t0xBBD3\n0xA376\t0xBBD4\n0xA377\t0xBBD5\n0xA378\t0xBBD6\n0xA379\t0xBBD7\n0xA37A\t0xBBD8\n0xA37B\t0xBBD9\n0xA37C\t0xBBDA\n0xA37D\t0xBBDB\n0xA381\t0xBBDC\n0xA382\t0xBBDD\n0xA383\t0xBBDE\n0xA384\t0xBBDF\n0xA385\t0xBBE0\n0xA386\t0xBBE1\n0xA387\t0xBBE2\n0xA388\t0xBBE3\n0xA389\t0xBBE4\n0xA38A\t0xBBE5\n0xA38B\t0xBBE6\n0xA38C\t0xBBE7\n0xA38D\t0xBBE8\n0xA38E\t0xBBE9\n0xA38F\t0xBBEA\n0xA390\t0xBBEB\n0xA391\t0xBBEC\n0xA393\t0xBBED\n0xA394\t0xBBEE\n0xA395\t0xBBEF\n0xA396\t0xBBF0\n0xA397\t0xBBF1\n0xA398\t0xBBF2\n0xA399\t0xBBF3\n0xA39A\t0xBBF4\n0xA39B\t0xBBF5\n0xA39C\t0xBBF6\n0xA39D\t0xBBF7\n0xA3A1\t0xBBF8\n0xA3A2\t0xBBF9\n0xA3A3\t0xBBFA\n0xA3A4\t0xBBFB\n0xA3A5\t0xBBFC\n0xA3A6\t0xBBFD\n0xA3A7\t0xBBFE\n0xA3A8\t0xBBFF\n0xA3A9\t0xBC00\n0xA3AA\t0xBC01\n0xA3AB\t0xBC02\n0xA3AC\t0xBC03\n0xA3AD\t0xBC04\n0xA3AE\t0xBC05\n0xA3AF\t0xBC06\n0xA3B0\t0xBC07\n0xA3B1\t0xBC08\n0xA3B3\t0xBC09\n0xA3B4\t0xBC0A\n0xA3B5\t0xBC0B\n0xA3B6\t0xBC0C\n0xA3B7\t0xBC0D\n0xA3B8\t0xBC0E\n0xA3B9\t0xBC0F\n0xA3BA\t0xBC10\n0xA3BB\t0xBC11\n0xA3BC\t0xBC12\n0xA3BD\t0xBC13\n0xA441\t0x3142\n0xA461\t0xBC14\n0xA462\t0xBC15\n0xA463\t0xBC16\n0xA464\t0xBC17\n0xA465\t0xBC18\n0xA466\t0xBC19\n0xA467\t0xBC1A\n0xA468\t0xBC1B\n0xA469\t0xBC1C\n0xA46A\t0xBC1D\n0xA46B\t0xBC1E\n0xA46C\t0xBC1F\n0xA46D\t0xBC20\n0xA46E\t0xBC21\n0xA46F\t0xBC22\n0xA470\t0xBC23\n0xA471\t0xBC24\n0xA473\t0xBC25\n0xA474\t0xBC26\n0xA475\t0xBC27\n0xA476\t0xBC28\n0xA477\t0xBC29\n0xA478\t0xBC2A\n0xA479\t0xBC2B\n0xA47A\t0xBC2C\n0xA47B\t0xBC2D\n0xA47C\t0xBC2E\n0xA47D\t0xBC2F\n0xA481\t0xBC30\n0xA482\t0xBC31\n0xA483\t0xBC32\n0xA484\t0xBC33\n0xA485\t0xBC34\n0xA486\t0xBC35\n0xA487\t0xBC36\n0xA488\t0xBC37\n0xA489\t0xBC38\n0xA48A\t0xBC39\n0xA48B\t0xBC3A\n0xA48C\t0xBC3B\n0xA48D\t0xBC3C\n0xA48E\t0xBC3D\n0xA48F\t0xBC3E\n0xA490\t0xBC3F\n0xA491\t0xBC40\n0xA493\t0xBC41\n0xA494\t0xBC42\n0xA495\t0xBC43\n0xA496\t0xBC44\n0xA497\t0xBC45\n0xA498\t0xBC46\n0xA499\t0xBC47\n0xA49A\t0xBC48\n0xA49B\t0xBC49\n0xA49C\t0xBC4A\n0xA49D\t0xBC4B\n0xA4A1\t0xBC4C\n0xA4A2\t0xBC4D\n0xA4A3\t0xBC4E\n0xA4A4\t0xBC4F\n0xA4A5\t0xBC50\n0xA4A6\t0xBC51\n0xA4A7\t0xBC52\n0xA4A8\t0xBC53\n0xA4A9\t0xBC54\n0xA4AA\t0xBC55\n0xA4AB\t0xBC56\n0xA4AC\t0xBC57\n0xA4AD\t0xBC58\n0xA4AE\t0xBC59\n0xA4AF\t0xBC5A\n0xA4B0\t0xBC5B\n0xA4B1\t0xBC5C\n0xA4B3\t0xBC5D\n0xA4B4\t0xBC5E\n0xA4B5\t0xBC5F\n0xA4B6\t0xBC60\n0xA4B7\t0xBC61\n0xA4B8\t0xBC62\n0xA4B9\t0xBC63\n0xA4BA\t0xBC64\n0xA4BB\t0xBC65\n0xA4BC\t0xBC66\n0xA4BD\t0xBC67\n0xA4C1\t0xBC68\n0xA4C2\t0xBC69\n0xA4C3\t0xBC6A\n0xA4C4\t0xBC6B\n0xA4C5\t0xBC6C\n0xA4C6\t0xBC6D\n0xA4C7\t0xBC6E\n0xA4C8\t0xBC6F\n0xA4C9\t0xBC70\n0xA4CA\t0xBC71\n0xA4CB\t0xBC72\n0xA4CC\t0xBC73\n0xA4CD\t0xBC74\n0xA4CE\t0xBC75\n0xA4CF\t0xBC76\n0xA4D0\t0xBC77\n0xA4D1\t0xBC78\n0xA4D3\t0xBC79\n0xA4D4\t0xBC7A\n0xA4D5\t0xBC7B\n0xA4D6\t0xBC7C\n0xA4D7\t0xBC7D\n0xA4D8\t0xBC7E\n0xA4D9\t0xBC7F\n0xA4DA\t0xBC80\n0xA4DB\t0xBC81\n0xA4DC\t0xBC82\n0xA4DD\t0xBC83\n0xA4E1\t0xBC84\n0xA4E2\t0xBC85\n0xA4E3\t0xBC86\n0xA4E4\t0xBC87\n0xA4E5\t0xBC88\n0xA4E6\t0xBC89\n0xA4E7\t0xBC8A\n0xA4E8\t0xBC8B\n0xA4E9\t0xBC8C\n0xA4EA\t0xBC8D\n0xA4EB\t0xBC8E\n0xA4EC\t0xBC8F\n0xA4ED\t0xBC90\n0xA4EE\t0xBC91\n0xA4EF\t0xBC92\n0xA4F0\t0xBC93\n0xA4F1\t0xBC94\n0xA4F3\t0xBC95\n0xA4F4\t0xBC96\n0xA4F5\t0xBC97\n0xA4F6\t0xBC98\n0xA4F7\t0xBC99\n0xA4F8\t0xBC9A\n0xA4F9\t0xBC9B\n0xA4FA\t0xBC9C\n0xA4FB\t0xBC9D\n0xA4FC\t0xBC9E\n0xA4FD\t0xBC9F\n0xA541\t0xBCA0\n0xA542\t0xBCA1\n0xA543\t0xBCA2\n0xA544\t0xBCA3\n0xA545\t0xBCA4\n0xA546\t0xBCA5\n0xA547\t0xBCA6\n0xA548\t0xBCA7\n0xA549\t0xBCA8\n0xA54A\t0xBCA9\n0xA54B\t0xBCAA\n0xA54C\t0xBCAB\n0xA54D\t0xBCAC\n0xA54E\t0xBCAD\n0xA54F\t0xBCAE\n0xA550\t0xBCAF\n0xA551\t0xBCB0\n0xA553\t0xBCB1\n0xA554\t0xBCB2\n0xA555\t0xBCB3\n0xA556\t0xBCB4\n0xA557\t0xBCB5\n0xA558\t0xBCB6\n0xA559\t0xBCB7\n0xA55A\t0xBCB8\n0xA55B\t0xBCB9\n0xA55C\t0xBCBA\n0xA55D\t0xBCBB\n0xA561\t0xBCBC\n0xA562\t0xBCBD\n0xA563\t0xBCBE\n0xA564\t0xBCBF\n0xA565\t0xBCC0\n0xA566\t0xBCC1\n0xA567\t0xBCC2\n0xA568\t0xBCC3\n0xA569\t0xBCC4\n0xA56A\t0xBCC5\n0xA56B\t0xBCC6\n0xA56C\t0xBCC7\n0xA56D\t0xBCC8\n0xA56E\t0xBCC9\n0xA56F\t0xBCCA\n0xA570\t0xBCCB\n0xA571\t0xBCCC\n0xA573\t0xBCCD\n0xA574\t0xBCCE\n0xA575\t0xBCCF\n0xA576\t0xBCD0\n0xA577\t0xBCD1\n0xA578\t0xBCD2\n0xA579\t0xBCD3\n0xA57A\t0xBCD4\n0xA57B\t0xBCD5\n0xA57C\t0xBCD6\n0xA57D\t0xBCD7\n0xA581\t0xBCD8\n0xA582\t0xBCD9\n0xA583\t0xBCDA\n0xA584\t0xBCDB\n0xA585\t0xBCDC\n0xA586\t0xBCDD\n0xA587\t0xBCDE\n0xA588\t0xBCDF\n0xA589\t0xBCE0\n0xA58A\t0xBCE1\n0xA58B\t0xBCE2\n0xA58C\t0xBCE3\n0xA58D\t0xBCE4\n0xA58E\t0xBCE5\n0xA58F\t0xBCE6\n0xA590\t0xBCE7\n0xA591\t0xBCE8\n0xA593\t0xBCE9\n0xA594\t0xBCEA\n0xA595\t0xBCEB\n0xA596\t0xBCEC\n0xA597\t0xBCED\n0xA598\t0xBCEE\n0xA599\t0xBCEF\n0xA59A\t0xBCF0\n0xA59B\t0xBCF1\n0xA59C\t0xBCF2\n0xA59D\t0xBCF3\n0xA5A1\t0xBCF4\n0xA5A2\t0xBCF5\n0xA5A3\t0xBCF6\n0xA5A4\t0xBCF7\n0xA5A5\t0xBCF8\n0xA5A6\t0xBCF9\n0xA5A7\t0xBCFA\n0xA5A8\t0xBCFB\n0xA5A9\t0xBCFC\n0xA5AA\t0xBCFD\n0xA5AB\t0xBCFE\n0xA5AC\t0xBCFF\n0xA5AD\t0xBD00\n0xA5AE\t0xBD01\n0xA5AF\t0xBD02\n0xA5B0\t0xBD03\n0xA5B1\t0xBD04\n0xA5B3\t0xBD05\n0xA5B4\t0xBD06\n0xA5B5\t0xBD07\n0xA5B6\t0xBD08\n0xA5B7\t0xBD09\n0xA5B8\t0xBD0A\n0xA5B9\t0xBD0B\n0xA5BA\t0xBD0C\n0xA5BB\t0xBD0D\n0xA5BC\t0xBD0E\n0xA5BD\t0xBD0F\n0xA5C1\t0xBD10\n0xA5C2\t0xBD11\n0xA5C3\t0xBD12\n0xA5C4\t0xBD13\n0xA5C5\t0xBD14\n0xA5C6\t0xBD15\n0xA5C7\t0xBD16\n0xA5C8\t0xBD17\n0xA5C9\t0xBD18\n0xA5CA\t0xBD19\n0xA5CB\t0xBD1A\n0xA5CC\t0xBD1B\n0xA5CD\t0xBD1C\n0xA5CE\t0xBD1D\n0xA5CF\t0xBD1E\n0xA5D0\t0xBD1F\n0xA5D1\t0xBD20\n0xA5D3\t0xBD21\n0xA5D4\t0xBD22\n0xA5D5\t0xBD23\n0xA5D6\t0xBD24\n0xA5D7\t0xBD25\n0xA5D8\t0xBD26\n0xA5D9\t0xBD27\n0xA5DA\t0xBD28\n0xA5DB\t0xBD29\n0xA5DC\t0xBD2A\n0xA5DD\t0xBD2B\n0xA5E1\t0xBD2C\n0xA5E2\t0xBD2D\n0xA5E3\t0xBD2E\n0xA5E4\t0xBD2F\n0xA5E5\t0xBD30\n0xA5E6\t0xBD31\n0xA5E7\t0xBD32\n0xA5E8\t0xBD33\n0xA5E9\t0xBD34\n0xA5EA\t0xBD35\n0xA5EB\t0xBD36\n0xA5EC\t0xBD37\n0xA5ED\t0xBD38\n0xA5EE\t0xBD39\n0xA5EF\t0xBD3A\n0xA5F0\t0xBD3B\n0xA5F1\t0xBD3C\n0xA5F3\t0xBD3D\n0xA5F4\t0xBD3E\n0xA5F5\t0xBD3F\n0xA5F6\t0xBD40\n0xA5F7\t0xBD41\n0xA5F8\t0xBD42\n0xA5F9\t0xBD43\n0xA5FA\t0xBD44\n0xA5FB\t0xBD45\n0xA5FC\t0xBD46\n0xA5FD\t0xBD47\n0xA641\t0xBD48\n0xA642\t0xBD49\n0xA643\t0xBD4A\n0xA644\t0xBD4B\n0xA645\t0xBD4C\n0xA646\t0xBD4D\n0xA647\t0xBD4E\n0xA648\t0xBD4F\n0xA649\t0xBD50\n0xA64A\t0xBD51\n0xA64B\t0xBD52\n0xA64C\t0xBD53\n0xA64D\t0xBD54\n0xA64E\t0xBD55\n0xA64F\t0xBD56\n0xA650\t0xBD57\n0xA651\t0xBD58\n0xA653\t0xBD59\n0xA654\t0xBD5A\n0xA655\t0xBD5B\n0xA656\t0xBD5C\n0xA657\t0xBD5D\n0xA658\t0xBD5E\n0xA659\t0xBD5F\n0xA65A\t0xBD60\n0xA65B\t0xBD61\n0xA65C\t0xBD62\n0xA65D\t0xBD63\n0xA661\t0xBD64\n0xA662\t0xBD65\n0xA663\t0xBD66\n0xA664\t0xBD67\n0xA665\t0xBD68\n0xA666\t0xBD69\n0xA667\t0xBD6A\n0xA668\t0xBD6B\n0xA669\t0xBD6C\n0xA66A\t0xBD6D\n0xA66B\t0xBD6E\n0xA66C\t0xBD6F\n0xA66D\t0xBD70\n0xA66E\t0xBD71\n0xA66F\t0xBD72\n0xA670\t0xBD73\n0xA671\t0xBD74\n0xA673\t0xBD75\n0xA674\t0xBD76\n0xA675\t0xBD77\n0xA676\t0xBD78\n0xA677\t0xBD79\n0xA678\t0xBD7A\n0xA679\t0xBD7B\n0xA67A\t0xBD7C\n0xA67B\t0xBD7D\n0xA67C\t0xBD7E\n0xA67D\t0xBD7F\n0xA681\t0xBD80\n0xA682\t0xBD81\n0xA683\t0xBD82\n0xA684\t0xBD83\n0xA685\t0xBD84\n0xA686\t0xBD85\n0xA687\t0xBD86\n0xA688\t0xBD87\n0xA689\t0xBD88\n0xA68A\t0xBD89\n0xA68B\t0xBD8A\n0xA68C\t0xBD8B\n0xA68D\t0xBD8C\n0xA68E\t0xBD8D\n0xA68F\t0xBD8E\n0xA690\t0xBD8F\n0xA691\t0xBD90\n0xA693\t0xBD91\n0xA694\t0xBD92\n0xA695\t0xBD93\n0xA696\t0xBD94\n0xA697\t0xBD95\n0xA698\t0xBD96\n0xA699\t0xBD97\n0xA69A\t0xBD98\n0xA69B\t0xBD99\n0xA69C\t0xBD9A\n0xA69D\t0xBD9B\n0xA6A1\t0xBD9C\n0xA6A2\t0xBD9D\n0xA6A3\t0xBD9E\n0xA6A4\t0xBD9F\n0xA6A5\t0xBDA0\n0xA6A6\t0xBDA1\n0xA6A7\t0xBDA2\n0xA6A8\t0xBDA3\n0xA6A9\t0xBDA4\n0xA6AA\t0xBDA5\n0xA6AB\t0xBDA6\n0xA6AC\t0xBDA7\n0xA6AD\t0xBDA8\n0xA6AE\t0xBDA9\n0xA6AF\t0xBDAA\n0xA6B0\t0xBDAB\n0xA6B1\t0xBDAC\n0xA6B3\t0xBDAD\n0xA6B4\t0xBDAE\n0xA6B5\t0xBDAF\n0xA6B6\t0xBDB0\n0xA6B7\t0xBDB1\n0xA6B8\t0xBDB2\n0xA6B9\t0xBDB3\n0xA6BA\t0xBDB4\n0xA6BB\t0xBDB5\n0xA6BC\t0xBDB6\n0xA6BD\t0xBDB7\n0xA6C1\t0xBDB8\n0xA6C2\t0xBDB9\n0xA6C3\t0xBDBA\n0xA6C4\t0xBDBB\n0xA6C5\t0xBDBC\n0xA6C6\t0xBDBD\n0xA6C7\t0xBDBE\n0xA6C8\t0xBDBF\n0xA6C9\t0xBDC0\n0xA6CA\t0xBDC1\n0xA6CB\t0xBDC2\n0xA6CC\t0xBDC3\n0xA6CD\t0xBDC4\n0xA6CE\t0xBDC5\n0xA6CF\t0xBDC6\n0xA6D0\t0xBDC7\n0xA6D1\t0xBDC8\n0xA6D3\t0xBDC9\n0xA6D4\t0xBDCA\n0xA6D5\t0xBDCB\n0xA6D6\t0xBDCC\n0xA6D7\t0xBDCD\n0xA6D8\t0xBDCE\n0xA6D9\t0xBDCF\n0xA6DA\t0xBDD0\n0xA6DB\t0xBDD1\n0xA6DC\t0xBDD2\n0xA6DD\t0xBDD3\n0xA6E1\t0xBDD4\n0xA6E2\t0xBDD5\n0xA6E3\t0xBDD6\n0xA6E4\t0xBDD7\n0xA6E5\t0xBDD8\n0xA6E6\t0xBDD9\n0xA6E7\t0xBDDA\n0xA6E8\t0xBDDB\n0xA6E9\t0xBDDC\n0xA6EA\t0xBDDD\n0xA6EB\t0xBDDE\n0xA6EC\t0xBDDF\n0xA6ED\t0xBDE0\n0xA6EE\t0xBDE1\n0xA6EF\t0xBDE2\n0xA6F0\t0xBDE3\n0xA6F1\t0xBDE4\n0xA6F3\t0xBDE5\n0xA6F4\t0xBDE6\n0xA6F5\t0xBDE7\n0xA6F6\t0xBDE8\n0xA6F7\t0xBDE9\n0xA6F8\t0xBDEA\n0xA6F9\t0xBDEB\n0xA6FA\t0xBDEC\n0xA6FB\t0xBDED\n0xA6FC\t0xBDEE\n0xA6FD\t0xBDEF\n0xA741\t0xBDF0\n0xA742\t0xBDF1\n0xA743\t0xBDF2\n0xA744\t0xBDF3\n0xA745\t0xBDF4\n0xA746\t0xBDF5\n0xA747\t0xBDF6\n0xA748\t0xBDF7\n0xA749\t0xBDF8\n0xA74A\t0xBDF9\n0xA74B\t0xBDFA\n0xA74C\t0xBDFB\n0xA74D\t0xBDFC\n0xA74E\t0xBDFD\n0xA74F\t0xBDFE\n0xA750\t0xBDFF\n0xA751\t0xBE00\n0xA753\t0xBE01\n0xA754\t0xBE02\n0xA755\t0xBE03\n0xA756\t0xBE04\n0xA757\t0xBE05\n0xA758\t0xBE06\n0xA759\t0xBE07\n0xA75A\t0xBE08\n0xA75B\t0xBE09\n0xA75C\t0xBE0A\n0xA75D\t0xBE0B\n0xA761\t0xBE0C\n0xA762\t0xBE0D\n0xA763\t0xBE0E\n0xA764\t0xBE0F\n0xA765\t0xBE10\n0xA766\t0xBE11\n0xA767\t0xBE12\n0xA768\t0xBE13\n0xA769\t0xBE14\n0xA76A\t0xBE15\n0xA76B\t0xBE16\n0xA76C\t0xBE17\n0xA76D\t0xBE18\n0xA76E\t0xBE19\n0xA76F\t0xBE1A\n0xA770\t0xBE1B\n0xA771\t0xBE1C\n0xA773\t0xBE1D\n0xA774\t0xBE1E\n0xA775\t0xBE1F\n0xA776\t0xBE20\n0xA777\t0xBE21\n0xA778\t0xBE22\n0xA779\t0xBE23\n0xA77A\t0xBE24\n0xA77B\t0xBE25\n0xA77C\t0xBE26\n0xA77D\t0xBE27\n0xA781\t0xBE28\n0xA782\t0xBE29\n0xA783\t0xBE2A\n0xA784\t0xBE2B\n0xA785\t0xBE2C\n0xA786\t0xBE2D\n0xA787\t0xBE2E\n0xA788\t0xBE2F\n0xA789\t0xBE30\n0xA78A\t0xBE31\n0xA78B\t0xBE32\n0xA78C\t0xBE33\n0xA78D\t0xBE34\n0xA78E\t0xBE35\n0xA78F\t0xBE36\n0xA790\t0xBE37\n0xA791\t0xBE38\n0xA793\t0xBE39\n0xA794\t0xBE3A\n0xA795\t0xBE3B\n0xA796\t0xBE3C\n0xA797\t0xBE3D\n0xA798\t0xBE3E\n0xA799\t0xBE3F\n0xA79A\t0xBE40\n0xA79B\t0xBE41\n0xA79C\t0xBE42\n0xA79D\t0xBE43\n0xA7A1\t0xBE44\n0xA7A2\t0xBE45\n0xA7A3\t0xBE46\n0xA7A4\t0xBE47\n0xA7A5\t0xBE48\n0xA7A6\t0xBE49\n0xA7A7\t0xBE4A\n0xA7A8\t0xBE4B\n0xA7A9\t0xBE4C\n0xA7AA\t0xBE4D\n0xA7AB\t0xBE4E\n0xA7AC\t0xBE4F\n0xA7AD\t0xBE50\n0xA7AE\t0xBE51\n0xA7AF\t0xBE52\n0xA7B0\t0xBE53\n0xA7B1\t0xBE54\n0xA7B3\t0xBE55\n0xA7B4\t0xBE56\n0xA7B5\t0xBE57\n0xA7B6\t0xBE58\n0xA7B7\t0xBE59\n0xA7B8\t0xBE5A\n0xA7B9\t0xBE5B\n0xA7BA\t0xBE5C\n0xA7BB\t0xBE5D\n0xA7BC\t0xBE5E\n0xA7BD\t0xBE5F\n0xA841\t0x3143\n0xA861\t0xBE60\n0xA862\t0xBE61\n0xA863\t0xBE62\n0xA864\t0xBE63\n0xA865\t0xBE64\n0xA866\t0xBE65\n0xA867\t0xBE66\n0xA868\t0xBE67\n0xA869\t0xBE68\n0xA86A\t0xBE69\n0xA86B\t0xBE6A\n0xA86C\t0xBE6B\n0xA86D\t0xBE6C\n0xA86E\t0xBE6D\n0xA86F\t0xBE6E\n0xA870\t0xBE6F\n0xA871\t0xBE70\n0xA873\t0xBE71\n0xA874\t0xBE72\n0xA875\t0xBE73\n0xA876\t0xBE74\n0xA877\t0xBE75\n0xA878\t0xBE76\n0xA879\t0xBE77\n0xA87A\t0xBE78\n0xA87B\t0xBE79\n0xA87C\t0xBE7A\n0xA87D\t0xBE7B\n0xA881\t0xBE7C\n0xA882\t0xBE7D\n0xA883\t0xBE7E\n0xA884\t0xBE7F\n0xA885\t0xBE80\n0xA886\t0xBE81\n0xA887\t0xBE82\n0xA888\t0xBE83\n0xA889\t0xBE84\n0xA88A\t0xBE85\n0xA88B\t0xBE86\n0xA88C\t0xBE87\n0xA88D\t0xBE88\n0xA88E\t0xBE89\n0xA88F\t0xBE8A\n0xA890\t0xBE8B\n0xA891\t0xBE8C\n0xA893\t0xBE8D\n0xA894\t0xBE8E\n0xA895\t0xBE8F\n0xA896\t0xBE90\n0xA897\t0xBE91\n0xA898\t0xBE92\n0xA899\t0xBE93\n0xA89A\t0xBE94\n0xA89B\t0xBE95\n0xA89C\t0xBE96\n0xA89D\t0xBE97\n0xA8A1\t0xBE98\n0xA8A2\t0xBE99\n0xA8A3\t0xBE9A\n0xA8A4\t0xBE9B\n0xA8A5\t0xBE9C\n0xA8A6\t0xBE9D\n0xA8A7\t0xBE9E\n0xA8A8\t0xBE9F\n0xA8A9\t0xBEA0\n0xA8AA\t0xBEA1\n0xA8AB\t0xBEA2\n0xA8AC\t0xBEA3\n0xA8AD\t0xBEA4\n0xA8AE\t0xBEA5\n0xA8AF\t0xBEA6\n0xA8B0\t0xBEA7\n0xA8B1\t0xBEA8\n0xA8B3\t0xBEA9\n0xA8B4\t0xBEAA\n0xA8B5\t0xBEAB\n0xA8B6\t0xBEAC\n0xA8B7\t0xBEAD\n0xA8B8\t0xBEAE\n0xA8B9\t0xBEAF\n0xA8BA\t0xBEB0\n0xA8BB\t0xBEB1\n0xA8BC\t0xBEB2\n0xA8BD\t0xBEB3\n0xA8C1\t0xBEB4\n0xA8C2\t0xBEB5\n0xA8C3\t0xBEB6\n0xA8C4\t0xBEB7\n0xA8C5\t0xBEB8\n0xA8C6\t0xBEB9\n0xA8C7\t0xBEBA\n0xA8C8\t0xBEBB\n0xA8C9\t0xBEBC\n0xA8CA\t0xBEBD\n0xA8CB\t0xBEBE\n0xA8CC\t0xBEBF\n0xA8CD\t0xBEC0\n0xA8CE\t0xBEC1\n0xA8CF\t0xBEC2\n0xA8D0\t0xBEC3\n0xA8D1\t0xBEC4\n0xA8D3\t0xBEC5\n0xA8D4\t0xBEC6\n0xA8D5\t0xBEC7\n0xA8D6\t0xBEC8\n0xA8D7\t0xBEC9\n0xA8D8\t0xBECA\n0xA8D9\t0xBECB\n0xA8DA\t0xBECC\n0xA8DB\t0xBECD\n0xA8DC\t0xBECE\n0xA8DD\t0xBECF\n0xA8E1\t0xBED0\n0xA8E2\t0xBED1\n0xA8E3\t0xBED2\n0xA8E4\t0xBED3\n0xA8E5\t0xBED4\n0xA8E6\t0xBED5\n0xA8E7\t0xBED6\n0xA8E8\t0xBED7\n0xA8E9\t0xBED8\n0xA8EA\t0xBED9\n0xA8EB\t0xBEDA\n0xA8EC\t0xBEDB\n0xA8ED\t0xBEDC\n0xA8EE\t0xBEDD\n0xA8EF\t0xBEDE\n0xA8F0\t0xBEDF\n0xA8F1\t0xBEE0\n0xA8F3\t0xBEE1\n0xA8F4\t0xBEE2\n0xA8F5\t0xBEE3\n0xA8F6\t0xBEE4\n0xA8F7\t0xBEE5\n0xA8F8\t0xBEE6\n0xA8F9\t0xBEE7\n0xA8FA\t0xBEE8\n0xA8FB\t0xBEE9\n0xA8FC\t0xBEEA\n0xA8FD\t0xBEEB\n0xA941\t0xBEEC\n0xA942\t0xBEED\n0xA943\t0xBEEE\n0xA944\t0xBEEF\n0xA945\t0xBEF0\n0xA946\t0xBEF1\n0xA947\t0xBEF2\n0xA948\t0xBEF3\n0xA949\t0xBEF4\n0xA94A\t0xBEF5\n0xA94B\t0xBEF6\n0xA94C\t0xBEF7\n0xA94D\t0xBEF8\n0xA94E\t0xBEF9\n0xA94F\t0xBEFA\n0xA950\t0xBEFB\n0xA951\t0xBEFC\n0xA953\t0xBEFD\n0xA954\t0xBEFE\n0xA955\t0xBEFF\n0xA956\t0xBF00\n0xA957\t0xBF01\n0xA958\t0xBF02\n0xA959\t0xBF03\n0xA95A\t0xBF04\n0xA95B\t0xBF05\n0xA95C\t0xBF06\n0xA95D\t0xBF07\n0xA961\t0xBF08\n0xA962\t0xBF09\n0xA963\t0xBF0A\n0xA964\t0xBF0B\n0xA965\t0xBF0C\n0xA966\t0xBF0D\n0xA967\t0xBF0E\n0xA968\t0xBF0F\n0xA969\t0xBF10\n0xA96A\t0xBF11\n0xA96B\t0xBF12\n0xA96C\t0xBF13\n0xA96D\t0xBF14\n0xA96E\t0xBF15\n0xA96F\t0xBF16\n0xA970\t0xBF17\n0xA971\t0xBF18\n0xA973\t0xBF19\n0xA974\t0xBF1A\n0xA975\t0xBF1B\n0xA976\t0xBF1C\n0xA977\t0xBF1D\n0xA978\t0xBF1E\n0xA979\t0xBF1F\n0xA97A\t0xBF20\n0xA97B\t0xBF21\n0xA97C\t0xBF22\n0xA97D\t0xBF23\n0xA981\t0xBF24\n0xA982\t0xBF25\n0xA983\t0xBF26\n0xA984\t0xBF27\n0xA985\t0xBF28\n0xA986\t0xBF29\n0xA987\t0xBF2A\n0xA988\t0xBF2B\n0xA989\t0xBF2C\n0xA98A\t0xBF2D\n0xA98B\t0xBF2E\n0xA98C\t0xBF2F\n0xA98D\t0xBF30\n0xA98E\t0xBF31\n0xA98F\t0xBF32\n0xA990\t0xBF33\n0xA991\t0xBF34\n0xA993\t0xBF35\n0xA994\t0xBF36\n0xA995\t0xBF37\n0xA996\t0xBF38\n0xA997\t0xBF39\n0xA998\t0xBF3A\n0xA999\t0xBF3B\n0xA99A\t0xBF3C\n0xA99B\t0xBF3D\n0xA99C\t0xBF3E\n0xA99D\t0xBF3F\n0xA9A1\t0xBF40\n0xA9A2\t0xBF41\n0xA9A3\t0xBF42\n0xA9A4\t0xBF43\n0xA9A5\t0xBF44\n0xA9A6\t0xBF45\n0xA9A7\t0xBF46\n0xA9A8\t0xBF47\n0xA9A9\t0xBF48\n0xA9AA\t0xBF49\n0xA9AB\t0xBF4A\n0xA9AC\t0xBF4B\n0xA9AD\t0xBF4C\n0xA9AE\t0xBF4D\n0xA9AF\t0xBF4E\n0xA9B0\t0xBF4F\n0xA9B1\t0xBF50\n0xA9B3\t0xBF51\n0xA9B4\t0xBF52\n0xA9B5\t0xBF53\n0xA9B6\t0xBF54\n0xA9B7\t0xBF55\n0xA9B8\t0xBF56\n0xA9B9\t0xBF57\n0xA9BA\t0xBF58\n0xA9BB\t0xBF59\n0xA9BC\t0xBF5A\n0xA9BD\t0xBF5B\n0xA9C1\t0xBF5C\n0xA9C2\t0xBF5D\n0xA9C3\t0xBF5E\n0xA9C4\t0xBF5F\n0xA9C5\t0xBF60\n0xA9C6\t0xBF61\n0xA9C7\t0xBF62\n0xA9C8\t0xBF63\n0xA9C9\t0xBF64\n0xA9CA\t0xBF65\n0xA9CB\t0xBF66\n0xA9CC\t0xBF67\n0xA9CD\t0xBF68\n0xA9CE\t0xBF69\n0xA9CF\t0xBF6A\n0xA9D0\t0xBF6B\n0xA9D1\t0xBF6C\n0xA9D3\t0xBF6D\n0xA9D4\t0xBF6E\n0xA9D5\t0xBF6F\n0xA9D6\t0xBF70\n0xA9D7\t0xBF71\n0xA9D8\t0xBF72\n0xA9D9\t0xBF73\n0xA9DA\t0xBF74\n0xA9DB\t0xBF75\n0xA9DC\t0xBF76\n0xA9DD\t0xBF77\n0xA9E1\t0xBF78\n0xA9E2\t0xBF79\n0xA9E3\t0xBF7A\n0xA9E4\t0xBF7B\n0xA9E5\t0xBF7C\n0xA9E6\t0xBF7D\n0xA9E7\t0xBF7E\n0xA9E8\t0xBF7F\n0xA9E9\t0xBF80\n0xA9EA\t0xBF81\n0xA9EB\t0xBF82\n0xA9EC\t0xBF83\n0xA9ED\t0xBF84\n0xA9EE\t0xBF85\n0xA9EF\t0xBF86\n0xA9F0\t0xBF87\n0xA9F1\t0xBF88\n0xA9F3\t0xBF89\n0xA9F4\t0xBF8A\n0xA9F5\t0xBF8B\n0xA9F6\t0xBF8C\n0xA9F7\t0xBF8D\n0xA9F8\t0xBF8E\n0xA9F9\t0xBF8F\n0xA9FA\t0xBF90\n0xA9FB\t0xBF91\n0xA9FC\t0xBF92\n0xA9FD\t0xBF93\n0xAA41\t0xBF94\n0xAA42\t0xBF95\n0xAA43\t0xBF96\n0xAA44\t0xBF97\n0xAA45\t0xBF98\n0xAA46\t0xBF99\n0xAA47\t0xBF9A\n0xAA48\t0xBF9B\n0xAA49\t0xBF9C\n0xAA4A\t0xBF9D\n0xAA4B\t0xBF9E\n0xAA4C\t0xBF9F\n0xAA4D\t0xBFA0\n0xAA4E\t0xBFA1\n0xAA4F\t0xBFA2\n0xAA50\t0xBFA3\n0xAA51\t0xBFA4\n0xAA53\t0xBFA5\n0xAA54\t0xBFA6\n0xAA55\t0xBFA7\n0xAA56\t0xBFA8\n0xAA57\t0xBFA9\n0xAA58\t0xBFAA\n0xAA59\t0xBFAB\n0xAA5A\t0xBFAC\n0xAA5B\t0xBFAD\n0xAA5C\t0xBFAE\n0xAA5D\t0xBFAF\n0xAA61\t0xBFB0\n0xAA62\t0xBFB1\n0xAA63\t0xBFB2\n0xAA64\t0xBFB3\n0xAA65\t0xBFB4\n0xAA66\t0xBFB5\n0xAA67\t0xBFB6\n0xAA68\t0xBFB7\n0xAA69\t0xBFB8\n0xAA6A\t0xBFB9\n0xAA6B\t0xBFBA\n0xAA6C\t0xBFBB\n0xAA6D\t0xBFBC\n0xAA6E\t0xBFBD\n0xAA6F\t0xBFBE\n0xAA70\t0xBFBF\n0xAA71\t0xBFC0\n0xAA73\t0xBFC1\n0xAA74\t0xBFC2\n0xAA75\t0xBFC3\n0xAA76\t0xBFC4\n0xAA77\t0xBFC5\n0xAA78\t0xBFC6\n0xAA79\t0xBFC7\n0xAA7A\t0xBFC8\n0xAA7B\t0xBFC9\n0xAA7C\t0xBFCA\n0xAA7D\t0xBFCB\n0xAA81\t0xBFCC\n0xAA82\t0xBFCD\n0xAA83\t0xBFCE\n0xAA84\t0xBFCF\n0xAA85\t0xBFD0\n0xAA86\t0xBFD1\n0xAA87\t0xBFD2\n0xAA88\t0xBFD3\n0xAA89\t0xBFD4\n0xAA8A\t0xBFD5\n0xAA8B\t0xBFD6\n0xAA8C\t0xBFD7\n0xAA8D\t0xBFD8\n0xAA8E\t0xBFD9\n0xAA8F\t0xBFDA\n0xAA90\t0xBFDB\n0xAA91\t0xBFDC\n0xAA93\t0xBFDD\n0xAA94\t0xBFDE\n0xAA95\t0xBFDF\n0xAA96\t0xBFE0\n0xAA97\t0xBFE1\n0xAA98\t0xBFE2\n0xAA99\t0xBFE3\n0xAA9A\t0xBFE4\n0xAA9B\t0xBFE5\n0xAA9C\t0xBFE6\n0xAA9D\t0xBFE7\n0xAAA1\t0xBFE8\n0xAAA2\t0xBFE9\n0xAAA3\t0xBFEA\n0xAAA4\t0xBFEB\n0xAAA5\t0xBFEC\n0xAAA6\t0xBFED\n0xAAA7\t0xBFEE\n0xAAA8\t0xBFEF\n0xAAA9\t0xBFF0\n0xAAAA\t0xBFF1\n0xAAAB\t0xBFF2\n0xAAAC\t0xBFF3\n0xAAAD\t0xBFF4\n0xAAAE\t0xBFF5\n0xAAAF\t0xBFF6\n0xAAB0\t0xBFF7\n0xAAB1\t0xBFF8\n0xAAB3\t0xBFF9\n0xAAB4\t0xBFFA\n0xAAB5\t0xBFFB\n0xAAB6\t0xBFFC\n0xAAB7\t0xBFFD\n0xAAB8\t0xBFFE\n0xAAB9\t0xBFFF\n0xAABA\t0xC000\n0xAABB\t0xC001\n0xAABC\t0xC002\n0xAABD\t0xC003\n0xAAC1\t0xC004\n0xAAC2\t0xC005\n0xAAC3\t0xC006\n0xAAC4\t0xC007\n0xAAC5\t0xC008\n0xAAC6\t0xC009\n0xAAC7\t0xC00A\n0xAAC8\t0xC00B\n0xAAC9\t0xC00C\n0xAACA\t0xC00D\n0xAACB\t0xC00E\n0xAACC\t0xC00F\n0xAACD\t0xC010\n0xAACE\t0xC011\n0xAACF\t0xC012\n0xAAD0\t0xC013\n0xAAD1\t0xC014\n0xAAD3\t0xC015\n0xAAD4\t0xC016\n0xAAD5\t0xC017\n0xAAD6\t0xC018\n0xAAD7\t0xC019\n0xAAD8\t0xC01A\n0xAAD9\t0xC01B\n0xAADA\t0xC01C\n0xAADB\t0xC01D\n0xAADC\t0xC01E\n0xAADD\t0xC01F\n0xAAE1\t0xC020\n0xAAE2\t0xC021\n0xAAE3\t0xC022\n0xAAE4\t0xC023\n0xAAE5\t0xC024\n0xAAE6\t0xC025\n0xAAE7\t0xC026\n0xAAE8\t0xC027\n0xAAE9\t0xC028\n0xAAEA\t0xC029\n0xAAEB\t0xC02A\n0xAAEC\t0xC02B\n0xAAED\t0xC02C\n0xAAEE\t0xC02D\n0xAAEF\t0xC02E\n0xAAF0\t0xC02F\n0xAAF1\t0xC030\n0xAAF3\t0xC031\n0xAAF4\t0xC032\n0xAAF5\t0xC033\n0xAAF6\t0xC034\n0xAAF7\t0xC035\n0xAAF8\t0xC036\n0xAAF9\t0xC037\n0xAAFA\t0xC038\n0xAAFB\t0xC039\n0xAAFC\t0xC03A\n0xAAFD\t0xC03B\n0xAB41\t0xC03C\n0xAB42\t0xC03D\n0xAB43\t0xC03E\n0xAB44\t0xC03F\n0xAB45\t0xC040\n0xAB46\t0xC041\n0xAB47\t0xC042\n0xAB48\t0xC043\n0xAB49\t0xC044\n0xAB4A\t0xC045\n0xAB4B\t0xC046\n0xAB4C\t0xC047\n0xAB4D\t0xC048\n0xAB4E\t0xC049\n0xAB4F\t0xC04A\n0xAB50\t0xC04B\n0xAB51\t0xC04C\n0xAB53\t0xC04D\n0xAB54\t0xC04E\n0xAB55\t0xC04F\n0xAB56\t0xC050\n0xAB57\t0xC051\n0xAB58\t0xC052\n0xAB59\t0xC053\n0xAB5A\t0xC054\n0xAB5B\t0xC055\n0xAB5C\t0xC056\n0xAB5D\t0xC057\n0xAB61\t0xC058\n0xAB62\t0xC059\n0xAB63\t0xC05A\n0xAB64\t0xC05B\n0xAB65\t0xC05C\n0xAB66\t0xC05D\n0xAB67\t0xC05E\n0xAB68\t0xC05F\n0xAB69\t0xC060\n0xAB6A\t0xC061\n0xAB6B\t0xC062\n0xAB6C\t0xC063\n0xAB6D\t0xC064\n0xAB6E\t0xC065\n0xAB6F\t0xC066\n0xAB70\t0xC067\n0xAB71\t0xC068\n0xAB73\t0xC069\n0xAB74\t0xC06A\n0xAB75\t0xC06B\n0xAB76\t0xC06C\n0xAB77\t0xC06D\n0xAB78\t0xC06E\n0xAB79\t0xC06F\n0xAB7A\t0xC070\n0xAB7B\t0xC071\n0xAB7C\t0xC072\n0xAB7D\t0xC073\n0xAB81\t0xC074\n0xAB82\t0xC075\n0xAB83\t0xC076\n0xAB84\t0xC077\n0xAB85\t0xC078\n0xAB86\t0xC079\n0xAB87\t0xC07A\n0xAB88\t0xC07B\n0xAB89\t0xC07C\n0xAB8A\t0xC07D\n0xAB8B\t0xC07E\n0xAB8C\t0xC07F\n0xAB8D\t0xC080\n0xAB8E\t0xC081\n0xAB8F\t0xC082\n0xAB90\t0xC083\n0xAB91\t0xC084\n0xAB93\t0xC085\n0xAB94\t0xC086\n0xAB95\t0xC087\n0xAB96\t0xC088\n0xAB97\t0xC089\n0xAB98\t0xC08A\n0xAB99\t0xC08B\n0xAB9A\t0xC08C\n0xAB9B\t0xC08D\n0xAB9C\t0xC08E\n0xAB9D\t0xC08F\n0xABA1\t0xC090\n0xABA2\t0xC091\n0xABA3\t0xC092\n0xABA4\t0xC093\n0xABA5\t0xC094\n0xABA6\t0xC095\n0xABA7\t0xC096\n0xABA8\t0xC097\n0xABA9\t0xC098\n0xABAA\t0xC099\n0xABAB\t0xC09A\n0xABAC\t0xC09B\n0xABAD\t0xC09C\n0xABAE\t0xC09D\n0xABAF\t0xC09E\n0xABB0\t0xC09F\n0xABB1\t0xC0A0\n0xABB3\t0xC0A1\n0xABB4\t0xC0A2\n0xABB5\t0xC0A3\n0xABB6\t0xC0A4\n0xABB7\t0xC0A5\n0xABB8\t0xC0A6\n0xABB9\t0xC0A7\n0xABBA\t0xC0A8\n0xABBB\t0xC0A9\n0xABBC\t0xC0AA\n0xABBD\t0xC0AB\n0xAC41\t0x3145\n0xAC61\t0xC0AC\n0xAC62\t0xC0AD\n0xAC63\t0xC0AE\n0xAC64\t0xC0AF\n0xAC65\t0xC0B0\n0xAC66\t0xC0B1\n0xAC67\t0xC0B2\n0xAC68\t0xC0B3\n0xAC69\t0xC0B4\n0xAC6A\t0xC0B5\n0xAC6B\t0xC0B6\n0xAC6C\t0xC0B7\n0xAC6D\t0xC0B8\n0xAC6E\t0xC0B9\n0xAC6F\t0xC0BA\n0xAC70\t0xC0BB\n0xAC71\t0xC0BC\n0xAC73\t0xC0BD\n0xAC74\t0xC0BE\n0xAC75\t0xC0BF\n0xAC76\t0xC0C0\n0xAC77\t0xC0C1\n0xAC78\t0xC0C2\n0xAC79\t0xC0C3\n0xAC7A\t0xC0C4\n0xAC7B\t0xC0C5\n0xAC7C\t0xC0C6\n0xAC7D\t0xC0C7\n0xAC81\t0xC0C8\n0xAC82\t0xC0C9\n0xAC83\t0xC0CA\n0xAC84\t0xC0CB\n0xAC85\t0xC0CC\n0xAC86\t0xC0CD\n0xAC87\t0xC0CE\n0xAC88\t0xC0CF\n0xAC89\t0xC0D0\n0xAC8A\t0xC0D1\n0xAC8B\t0xC0D2\n0xAC8C\t0xC0D3\n0xAC8D\t0xC0D4\n0xAC8E\t0xC0D5\n0xAC8F\t0xC0D6\n0xAC90\t0xC0D7\n0xAC91\t0xC0D8\n0xAC93\t0xC0D9\n0xAC94\t0xC0DA\n0xAC95\t0xC0DB\n0xAC96\t0xC0DC\n0xAC97\t0xC0DD\n0xAC98\t0xC0DE\n0xAC99\t0xC0DF\n0xAC9A\t0xC0E0\n0xAC9B\t0xC0E1\n0xAC9C\t0xC0E2\n0xAC9D\t0xC0E3\n0xACA1\t0xC0E4\n0xACA2\t0xC0E5\n0xACA3\t0xC0E6\n0xACA4\t0xC0E7\n0xACA5\t0xC0E8\n0xACA6\t0xC0E9\n0xACA7\t0xC0EA\n0xACA8\t0xC0EB\n0xACA9\t0xC0EC\n0xACAA\t0xC0ED\n0xACAB\t0xC0EE\n0xACAC\t0xC0EF\n0xACAD\t0xC0F0\n0xACAE\t0xC0F1\n0xACAF\t0xC0F2\n0xACB0\t0xC0F3\n0xACB1\t0xC0F4\n0xACB3\t0xC0F5\n0xACB4\t0xC0F6\n0xACB5\t0xC0F7\n0xACB6\t0xC0F8\n0xACB7\t0xC0F9\n0xACB8\t0xC0FA\n0xACB9\t0xC0FB\n0xACBA\t0xC0FC\n0xACBB\t0xC0FD\n0xACBC\t0xC0FE\n0xACBD\t0xC0FF\n0xACC1\t0xC100\n0xACC2\t0xC101\n0xACC3\t0xC102\n0xACC4\t0xC103\n0xACC5\t0xC104\n0xACC6\t0xC105\n0xACC7\t0xC106\n0xACC8\t0xC107\n0xACC9\t0xC108\n0xACCA\t0xC109\n0xACCB\t0xC10A\n0xACCC\t0xC10B\n0xACCD\t0xC10C\n0xACCE\t0xC10D\n0xACCF\t0xC10E\n0xACD0\t0xC10F\n0xACD1\t0xC110\n0xACD3\t0xC111\n0xACD4\t0xC112\n0xACD5\t0xC113\n0xACD6\t0xC114\n0xACD7\t0xC115\n0xACD8\t0xC116\n0xACD9\t0xC117\n0xACDA\t0xC118\n0xACDB\t0xC119\n0xACDC\t0xC11A\n0xACDD\t0xC11B\n0xACE1\t0xC11C\n0xACE2\t0xC11D\n0xACE3\t0xC11E\n0xACE4\t0xC11F\n0xACE5\t0xC120\n0xACE6\t0xC121\n0xACE7\t0xC122\n0xACE8\t0xC123\n0xACE9\t0xC124\n0xACEA\t0xC125\n0xACEB\t0xC126\n0xACEC\t0xC127\n0xACED\t0xC128\n0xACEE\t0xC129\n0xACEF\t0xC12A\n0xACF0\t0xC12B\n0xACF1\t0xC12C\n0xACF3\t0xC12D\n0xACF4\t0xC12E\n0xACF5\t0xC12F\n0xACF6\t0xC130\n0xACF7\t0xC131\n0xACF8\t0xC132\n0xACF9\t0xC133\n0xACFA\t0xC134\n0xACFB\t0xC135\n0xACFC\t0xC136\n0xACFD\t0xC137\n0xAD41\t0xC138\n0xAD42\t0xC139\n0xAD43\t0xC13A\n0xAD44\t0xC13B\n0xAD45\t0xC13C\n0xAD46\t0xC13D\n0xAD47\t0xC13E\n0xAD48\t0xC13F\n0xAD49\t0xC140\n0xAD4A\t0xC141\n0xAD4B\t0xC142\n0xAD4C\t0xC143\n0xAD4D\t0xC144\n0xAD4E\t0xC145\n0xAD4F\t0xC146\n0xAD50\t0xC147\n0xAD51\t0xC148\n0xAD53\t0xC149\n0xAD54\t0xC14A\n0xAD55\t0xC14B\n0xAD56\t0xC14C\n0xAD57\t0xC14D\n0xAD58\t0xC14E\n0xAD59\t0xC14F\n0xAD5A\t0xC150\n0xAD5B\t0xC151\n0xAD5C\t0xC152\n0xAD5D\t0xC153\n0xAD61\t0xC154\n0xAD62\t0xC155\n0xAD63\t0xC156\n0xAD64\t0xC157\n0xAD65\t0xC158\n0xAD66\t0xC159\n0xAD67\t0xC15A\n0xAD68\t0xC15B\n0xAD69\t0xC15C\n0xAD6A\t0xC15D\n0xAD6B\t0xC15E\n0xAD6C\t0xC15F\n0xAD6D\t0xC160\n0xAD6E\t0xC161\n0xAD6F\t0xC162\n0xAD70\t0xC163\n0xAD71\t0xC164\n0xAD73\t0xC165\n0xAD74\t0xC166\n0xAD75\t0xC167\n0xAD76\t0xC168\n0xAD77\t0xC169\n0xAD78\t0xC16A\n0xAD79\t0xC16B\n0xAD7A\t0xC16C\n0xAD7B\t0xC16D\n0xAD7C\t0xC16E\n0xAD7D\t0xC16F\n0xAD81\t0xC170\n0xAD82\t0xC171\n0xAD83\t0xC172\n0xAD84\t0xC173\n0xAD85\t0xC174\n0xAD86\t0xC175\n0xAD87\t0xC176\n0xAD88\t0xC177\n0xAD89\t0xC178\n0xAD8A\t0xC179\n0xAD8B\t0xC17A\n0xAD8C\t0xC17B\n0xAD8D\t0xC17C\n0xAD8E\t0xC17D\n0xAD8F\t0xC17E\n0xAD90\t0xC17F\n0xAD91\t0xC180\n0xAD93\t0xC181\n0xAD94\t0xC182\n0xAD95\t0xC183\n0xAD96\t0xC184\n0xAD97\t0xC185\n0xAD98\t0xC186\n0xAD99\t0xC187\n0xAD9A\t0xC188\n0xAD9B\t0xC189\n0xAD9C\t0xC18A\n0xAD9D\t0xC18B\n0xADA1\t0xC18C\n0xADA2\t0xC18D\n0xADA3\t0xC18E\n0xADA4\t0xC18F\n0xADA5\t0xC190\n0xADA6\t0xC191\n0xADA7\t0xC192\n0xADA8\t0xC193\n0xADA9\t0xC194\n0xADAA\t0xC195\n0xADAB\t0xC196\n0xADAC\t0xC197\n0xADAD\t0xC198\n0xADAE\t0xC199\n0xADAF\t0xC19A\n0xADB0\t0xC19B\n0xADB1\t0xC19C\n0xADB3\t0xC19D\n0xADB4\t0xC19E\n0xADB5\t0xC19F\n0xADB6\t0xC1A0\n0xADB7\t0xC1A1\n0xADB8\t0xC1A2\n0xADB9\t0xC1A3\n0xADBA\t0xC1A4\n0xADBB\t0xC1A5\n0xADBC\t0xC1A6\n0xADBD\t0xC1A7\n0xADC1\t0xC1A8\n0xADC2\t0xC1A9\n0xADC3\t0xC1AA\n0xADC4\t0xC1AB\n0xADC5\t0xC1AC\n0xADC6\t0xC1AD\n0xADC7\t0xC1AE\n0xADC8\t0xC1AF\n0xADC9\t0xC1B0\n0xADCA\t0xC1B1\n0xADCB\t0xC1B2\n0xADCC\t0xC1B3\n0xADCD\t0xC1B4\n0xADCE\t0xC1B5\n0xADCF\t0xC1B6\n0xADD0\t0xC1B7\n0xADD1\t0xC1B8\n0xADD3\t0xC1B9\n0xADD4\t0xC1BA\n0xADD5\t0xC1BB\n0xADD6\t0xC1BC\n0xADD7\t0xC1BD\n0xADD8\t0xC1BE\n0xADD9\t0xC1BF\n0xADDA\t0xC1C0\n0xADDB\t0xC1C1\n0xADDC\t0xC1C2\n0xADDD\t0xC1C3\n0xADE1\t0xC1C4\n0xADE2\t0xC1C5\n0xADE3\t0xC1C6\n0xADE4\t0xC1C7\n0xADE5\t0xC1C8\n0xADE6\t0xC1C9\n0xADE7\t0xC1CA\n0xADE8\t0xC1CB\n0xADE9\t0xC1CC\n0xADEA\t0xC1CD\n0xADEB\t0xC1CE\n0xADEC\t0xC1CF\n0xADED\t0xC1D0\n0xADEE\t0xC1D1\n0xADEF\t0xC1D2\n0xADF0\t0xC1D3\n0xADF1\t0xC1D4\n0xADF3\t0xC1D5\n0xADF4\t0xC1D6\n0xADF5\t0xC1D7\n0xADF6\t0xC1D8\n0xADF7\t0xC1D9\n0xADF8\t0xC1DA\n0xADF9\t0xC1DB\n0xADFA\t0xC1DC\n0xADFB\t0xC1DD\n0xADFC\t0xC1DE\n0xADFD\t0xC1DF\n0xAE41\t0xC1E0\n0xAE42\t0xC1E1\n0xAE43\t0xC1E2\n0xAE44\t0xC1E3\n0xAE45\t0xC1E4\n0xAE46\t0xC1E5\n0xAE47\t0xC1E6\n0xAE48\t0xC1E7\n0xAE49\t0xC1E8\n0xAE4A\t0xC1E9\n0xAE4B\t0xC1EA\n0xAE4C\t0xC1EB\n0xAE4D\t0xC1EC\n0xAE4E\t0xC1ED\n0xAE4F\t0xC1EE\n0xAE50\t0xC1EF\n0xAE51\t0xC1F0\n0xAE53\t0xC1F1\n0xAE54\t0xC1F2\n0xAE55\t0xC1F3\n0xAE56\t0xC1F4\n0xAE57\t0xC1F5\n0xAE58\t0xC1F6\n0xAE59\t0xC1F7\n0xAE5A\t0xC1F8\n0xAE5B\t0xC1F9\n0xAE5C\t0xC1FA\n0xAE5D\t0xC1FB\n0xAE61\t0xC1FC\n0xAE62\t0xC1FD\n0xAE63\t0xC1FE\n0xAE64\t0xC1FF\n0xAE65\t0xC200\n0xAE66\t0xC201\n0xAE67\t0xC202\n0xAE68\t0xC203\n0xAE69\t0xC204\n0xAE6A\t0xC205\n0xAE6B\t0xC206\n0xAE6C\t0xC207\n0xAE6D\t0xC208\n0xAE6E\t0xC209\n0xAE6F\t0xC20A\n0xAE70\t0xC20B\n0xAE71\t0xC20C\n0xAE73\t0xC20D\n0xAE74\t0xC20E\n0xAE75\t0xC20F\n0xAE76\t0xC210\n0xAE77\t0xC211\n0xAE78\t0xC212\n0xAE79\t0xC213\n0xAE7A\t0xC214\n0xAE7B\t0xC215\n0xAE7C\t0xC216\n0xAE7D\t0xC217\n0xAE81\t0xC218\n0xAE82\t0xC219\n0xAE83\t0xC21A\n0xAE84\t0xC21B\n0xAE85\t0xC21C\n0xAE86\t0xC21D\n0xAE87\t0xC21E\n0xAE88\t0xC21F\n0xAE89\t0xC220\n0xAE8A\t0xC221\n0xAE8B\t0xC222\n0xAE8C\t0xC223\n0xAE8D\t0xC224\n0xAE8E\t0xC225\n0xAE8F\t0xC226\n0xAE90\t0xC227\n0xAE91\t0xC228\n0xAE93\t0xC229\n0xAE94\t0xC22A\n0xAE95\t0xC22B\n0xAE96\t0xC22C\n0xAE97\t0xC22D\n0xAE98\t0xC22E\n0xAE99\t0xC22F\n0xAE9A\t0xC230\n0xAE9B\t0xC231\n0xAE9C\t0xC232\n0xAE9D\t0xC233\n0xAEA1\t0xC234\n0xAEA2\t0xC235\n0xAEA3\t0xC236\n0xAEA4\t0xC237\n0xAEA5\t0xC238\n0xAEA6\t0xC239\n0xAEA7\t0xC23A\n0xAEA8\t0xC23B\n0xAEA9\t0xC23C\n0xAEAA\t0xC23D\n0xAEAB\t0xC23E\n0xAEAC\t0xC23F\n0xAEAD\t0xC240\n0xAEAE\t0xC241\n0xAEAF\t0xC242\n0xAEB0\t0xC243\n0xAEB1\t0xC244\n0xAEB3\t0xC245\n0xAEB4\t0xC246\n0xAEB5\t0xC247\n0xAEB6\t0xC248\n0xAEB7\t0xC249\n0xAEB8\t0xC24A\n0xAEB9\t0xC24B\n0xAEBA\t0xC24C\n0xAEBB\t0xC24D\n0xAEBC\t0xC24E\n0xAEBD\t0xC24F\n0xAEC1\t0xC250\n0xAEC2\t0xC251\n0xAEC3\t0xC252\n0xAEC4\t0xC253\n0xAEC5\t0xC254\n0xAEC6\t0xC255\n0xAEC7\t0xC256\n0xAEC8\t0xC257\n0xAEC9\t0xC258\n0xAECA\t0xC259\n0xAECB\t0xC25A\n0xAECC\t0xC25B\n0xAECD\t0xC25C\n0xAECE\t0xC25D\n0xAECF\t0xC25E\n0xAED0\t0xC25F\n0xAED1\t0xC260\n0xAED3\t0xC261\n0xAED4\t0xC262\n0xAED5\t0xC263\n0xAED6\t0xC264\n0xAED7\t0xC265\n0xAED8\t0xC266\n0xAED9\t0xC267\n0xAEDA\t0xC268\n0xAEDB\t0xC269\n0xAEDC\t0xC26A\n0xAEDD\t0xC26B\n0xAEE1\t0xC26C\n0xAEE2\t0xC26D\n0xAEE3\t0xC26E\n0xAEE4\t0xC26F\n0xAEE5\t0xC270\n0xAEE6\t0xC271\n0xAEE7\t0xC272\n0xAEE8\t0xC273\n0xAEE9\t0xC274\n0xAEEA\t0xC275\n0xAEEB\t0xC276\n0xAEEC\t0xC277\n0xAEED\t0xC278\n0xAEEE\t0xC279\n0xAEEF\t0xC27A\n0xAEF0\t0xC27B\n0xAEF1\t0xC27C\n0xAEF3\t0xC27D\n0xAEF4\t0xC27E\n0xAEF5\t0xC27F\n0xAEF6\t0xC280\n0xAEF7\t0xC281\n0xAEF8\t0xC282\n0xAEF9\t0xC283\n0xAEFA\t0xC284\n0xAEFB\t0xC285\n0xAEFC\t0xC286\n0xAEFD\t0xC287\n0xAF41\t0xC288\n0xAF42\t0xC289\n0xAF43\t0xC28A\n0xAF44\t0xC28B\n0xAF45\t0xC28C\n0xAF46\t0xC28D\n0xAF47\t0xC28E\n0xAF48\t0xC28F\n0xAF49\t0xC290\n0xAF4A\t0xC291\n0xAF4B\t0xC292\n0xAF4C\t0xC293\n0xAF4D\t0xC294\n0xAF4E\t0xC295\n0xAF4F\t0xC296\n0xAF50\t0xC297\n0xAF51\t0xC298\n0xAF53\t0xC299\n0xAF54\t0xC29A\n0xAF55\t0xC29B\n0xAF56\t0xC29C\n0xAF57\t0xC29D\n0xAF58\t0xC29E\n0xAF59\t0xC29F\n0xAF5A\t0xC2A0\n0xAF5B\t0xC2A1\n0xAF5C\t0xC2A2\n0xAF5D\t0xC2A3\n0xAF61\t0xC2A4\n0xAF62\t0xC2A5\n0xAF63\t0xC2A6\n0xAF64\t0xC2A7\n0xAF65\t0xC2A8\n0xAF66\t0xC2A9\n0xAF67\t0xC2AA\n0xAF68\t0xC2AB\n0xAF69\t0xC2AC\n0xAF6A\t0xC2AD\n0xAF6B\t0xC2AE\n0xAF6C\t0xC2AF\n0xAF6D\t0xC2B0\n0xAF6E\t0xC2B1\n0xAF6F\t0xC2B2\n0xAF70\t0xC2B3\n0xAF71\t0xC2B4\n0xAF73\t0xC2B5\n0xAF74\t0xC2B6\n0xAF75\t0xC2B7\n0xAF76\t0xC2B8\n0xAF77\t0xC2B9\n0xAF78\t0xC2BA\n0xAF79\t0xC2BB\n0xAF7A\t0xC2BC\n0xAF7B\t0xC2BD\n0xAF7C\t0xC2BE\n0xAF7D\t0xC2BF\n0xAF81\t0xC2C0\n0xAF82\t0xC2C1\n0xAF83\t0xC2C2\n0xAF84\t0xC2C3\n0xAF85\t0xC2C4\n0xAF86\t0xC2C5\n0xAF87\t0xC2C6\n0xAF88\t0xC2C7\n0xAF89\t0xC2C8\n0xAF8A\t0xC2C9\n0xAF8B\t0xC2CA\n0xAF8C\t0xC2CB\n0xAF8D\t0xC2CC\n0xAF8E\t0xC2CD\n0xAF8F\t0xC2CE\n0xAF90\t0xC2CF\n0xAF91\t0xC2D0\n0xAF93\t0xC2D1\n0xAF94\t0xC2D2\n0xAF95\t0xC2D3\n0xAF96\t0xC2D4\n0xAF97\t0xC2D5\n0xAF98\t0xC2D6\n0xAF99\t0xC2D7\n0xAF9A\t0xC2D8\n0xAF9B\t0xC2D9\n0xAF9C\t0xC2DA\n0xAF9D\t0xC2DB\n0xAFA1\t0xC2DC\n0xAFA2\t0xC2DD\n0xAFA3\t0xC2DE\n0xAFA4\t0xC2DF\n0xAFA5\t0xC2E0\n0xAFA6\t0xC2E1\n0xAFA7\t0xC2E2\n0xAFA8\t0xC2E3\n0xAFA9\t0xC2E4\n0xAFAA\t0xC2E5\n0xAFAB\t0xC2E6\n0xAFAC\t0xC2E7\n0xAFAD\t0xC2E8\n0xAFAE\t0xC2E9\n0xAFAF\t0xC2EA\n0xAFB0\t0xC2EB\n0xAFB1\t0xC2EC\n0xAFB3\t0xC2ED\n0xAFB4\t0xC2EE\n0xAFB5\t0xC2EF\n0xAFB6\t0xC2F0\n0xAFB7\t0xC2F1\n0xAFB8\t0xC2F2\n0xAFB9\t0xC2F3\n0xAFBA\t0xC2F4\n0xAFBB\t0xC2F5\n0xAFBC\t0xC2F6\n0xAFBD\t0xC2F7\n0xB041\t0x3146\n0xB061\t0xC2F8\n0xB062\t0xC2F9\n0xB063\t0xC2FA\n0xB064\t0xC2FB\n0xB065\t0xC2FC\n0xB066\t0xC2FD\n0xB067\t0xC2FE\n0xB068\t0xC2FF\n0xB069\t0xC300\n0xB06A\t0xC301\n0xB06B\t0xC302\n0xB06C\t0xC303\n0xB06D\t0xC304\n0xB06E\t0xC305\n0xB06F\t0xC306\n0xB070\t0xC307\n0xB071\t0xC308\n0xB073\t0xC309\n0xB074\t0xC30A\n0xB075\t0xC30B\n0xB076\t0xC30C\n0xB077\t0xC30D\n0xB078\t0xC30E\n0xB079\t0xC30F\n0xB07A\t0xC310\n0xB07B\t0xC311\n0xB07C\t0xC312\n0xB07D\t0xC313\n0xB081\t0xC314\n0xB082\t0xC315\n0xB083\t0xC316\n0xB084\t0xC317\n0xB085\t0xC318\n0xB086\t0xC319\n0xB087\t0xC31A\n0xB088\t0xC31B\n0xB089\t0xC31C\n0xB08A\t0xC31D\n0xB08B\t0xC31E\n0xB08C\t0xC31F\n0xB08D\t0xC320\n0xB08E\t0xC321\n0xB08F\t0xC322\n0xB090\t0xC323\n0xB091\t0xC324\n0xB093\t0xC325\n0xB094\t0xC326\n0xB095\t0xC327\n0xB096\t0xC328\n0xB097\t0xC329\n0xB098\t0xC32A\n0xB099\t0xC32B\n0xB09A\t0xC32C\n0xB09B\t0xC32D\n0xB09C\t0xC32E\n0xB09D\t0xC32F\n0xB0A1\t0xC330\n0xB0A2\t0xC331\n0xB0A3\t0xC332\n0xB0A4\t0xC333\n0xB0A5\t0xC334\n0xB0A6\t0xC335\n0xB0A7\t0xC336\n0xB0A8\t0xC337\n0xB0A9\t0xC338\n0xB0AA\t0xC339\n0xB0AB\t0xC33A\n0xB0AC\t0xC33B\n0xB0AD\t0xC33C\n0xB0AE\t0xC33D\n0xB0AF\t0xC33E\n0xB0B0\t0xC33F\n0xB0B1\t0xC340\n0xB0B3\t0xC341\n0xB0B4\t0xC342\n0xB0B5\t0xC343\n0xB0B6\t0xC344\n0xB0B7\t0xC345\n0xB0B8\t0xC346\n0xB0B9\t0xC347\n0xB0BA\t0xC348\n0xB0BB\t0xC349\n0xB0BC\t0xC34A\n0xB0BD\t0xC34B\n0xB0C1\t0xC34C\n0xB0C2\t0xC34D\n0xB0C3\t0xC34E\n0xB0C4\t0xC34F\n0xB0C5\t0xC350\n0xB0C6\t0xC351\n0xB0C7\t0xC352\n0xB0C8\t0xC353\n0xB0C9\t0xC354\n0xB0CA\t0xC355\n0xB0CB\t0xC356\n0xB0CC\t0xC357\n0xB0CD\t0xC358\n0xB0CE\t0xC359\n0xB0CF\t0xC35A\n0xB0D0\t0xC35B\n0xB0D1\t0xC35C\n0xB0D3\t0xC35D\n0xB0D4\t0xC35E\n0xB0D5\t0xC35F\n0xB0D6\t0xC360\n0xB0D7\t0xC361\n0xB0D8\t0xC362\n0xB0D9\t0xC363\n0xB0DA\t0xC364\n0xB0DB\t0xC365\n0xB0DC\t0xC366\n0xB0DD\t0xC367\n0xB0E1\t0xC368\n0xB0E2\t0xC369\n0xB0E3\t0xC36A\n0xB0E4\t0xC36B\n0xB0E5\t0xC36C\n0xB0E6\t0xC36D\n0xB0E7\t0xC36E\n0xB0E8\t0xC36F\n0xB0E9\t0xC370\n0xB0EA\t0xC371\n0xB0EB\t0xC372\n0xB0EC\t0xC373\n0xB0ED\t0xC374\n0xB0EE\t0xC375\n0xB0EF\t0xC376\n0xB0F0\t0xC377\n0xB0F1\t0xC378\n0xB0F3\t0xC379\n0xB0F4\t0xC37A\n0xB0F5\t0xC37B\n0xB0F6\t0xC37C\n0xB0F7\t0xC37D\n0xB0F8\t0xC37E\n0xB0F9\t0xC37F\n0xB0FA\t0xC380\n0xB0FB\t0xC381\n0xB0FC\t0xC382\n0xB0FD\t0xC383\n0xB141\t0xC384\n0xB142\t0xC385\n0xB143\t0xC386\n0xB144\t0xC387\n0xB145\t0xC388\n0xB146\t0xC389\n0xB147\t0xC38A\n0xB148\t0xC38B\n0xB149\t0xC38C\n0xB14A\t0xC38D\n0xB14B\t0xC38E\n0xB14C\t0xC38F\n0xB14D\t0xC390\n0xB14E\t0xC391\n0xB14F\t0xC392\n0xB150\t0xC393\n0xB151\t0xC394\n0xB153\t0xC395\n0xB154\t0xC396\n0xB155\t0xC397\n0xB156\t0xC398\n0xB157\t0xC399\n0xB158\t0xC39A\n0xB159\t0xC39B\n0xB15A\t0xC39C\n0xB15B\t0xC39D\n0xB15C\t0xC39E\n0xB15D\t0xC39F\n0xB161\t0xC3A0\n0xB162\t0xC3A1\n0xB163\t0xC3A2\n0xB164\t0xC3A3\n0xB165\t0xC3A4\n0xB166\t0xC3A5\n0xB167\t0xC3A6\n0xB168\t0xC3A7\n0xB169\t0xC3A8\n0xB16A\t0xC3A9\n0xB16B\t0xC3AA\n0xB16C\t0xC3AB\n0xB16D\t0xC3AC\n0xB16E\t0xC3AD\n0xB16F\t0xC3AE\n0xB170\t0xC3AF\n0xB171\t0xC3B0\n0xB173\t0xC3B1\n0xB174\t0xC3B2\n0xB175\t0xC3B3\n0xB176\t0xC3B4\n0xB177\t0xC3B5\n0xB178\t0xC3B6\n0xB179\t0xC3B7\n0xB17A\t0xC3B8\n0xB17B\t0xC3B9\n0xB17C\t0xC3BA\n0xB17D\t0xC3BB\n0xB181\t0xC3BC\n0xB182\t0xC3BD\n0xB183\t0xC3BE\n0xB184\t0xC3BF\n0xB185\t0xC3C0\n0xB186\t0xC3C1\n0xB187\t0xC3C2\n0xB188\t0xC3C3\n0xB189\t0xC3C4\n0xB18A\t0xC3C5\n0xB18B\t0xC3C6\n0xB18C\t0xC3C7\n0xB18D\t0xC3C8\n0xB18E\t0xC3C9\n0xB18F\t0xC3CA\n0xB190\t0xC3CB\n0xB191\t0xC3CC\n0xB193\t0xC3CD\n0xB194\t0xC3CE\n0xB195\t0xC3CF\n0xB196\t0xC3D0\n0xB197\t0xC3D1\n0xB198\t0xC3D2\n0xB199\t0xC3D3\n0xB19A\t0xC3D4\n0xB19B\t0xC3D5\n0xB19C\t0xC3D6\n0xB19D\t0xC3D7\n0xB1A1\t0xC3D8\n0xB1A2\t0xC3D9\n0xB1A3\t0xC3DA\n0xB1A4\t0xC3DB\n0xB1A5\t0xC3DC\n0xB1A6\t0xC3DD\n0xB1A7\t0xC3DE\n0xB1A8\t0xC3DF\n0xB1A9\t0xC3E0\n0xB1AA\t0xC3E1\n0xB1AB\t0xC3E2\n0xB1AC\t0xC3E3\n0xB1AD\t0xC3E4\n0xB1AE\t0xC3E5\n0xB1AF\t0xC3E6\n0xB1B0\t0xC3E7\n0xB1B1\t0xC3E8\n0xB1B3\t0xC3E9\n0xB1B4\t0xC3EA\n0xB1B5\t0xC3EB\n0xB1B6\t0xC3EC\n0xB1B7\t0xC3ED\n0xB1B8\t0xC3EE\n0xB1B9\t0xC3EF\n0xB1BA\t0xC3F0\n0xB1BB\t0xC3F1\n0xB1BC\t0xC3F2\n0xB1BD\t0xC3F3\n0xB1C1\t0xC3F4\n0xB1C2\t0xC3F5\n0xB1C3\t0xC3F6\n0xB1C4\t0xC3F7\n0xB1C5\t0xC3F8\n0xB1C6\t0xC3F9\n0xB1C7\t0xC3FA\n0xB1C8\t0xC3FB\n0xB1C9\t0xC3FC\n0xB1CA\t0xC3FD\n0xB1CB\t0xC3FE\n0xB1CC\t0xC3FF\n0xB1CD\t0xC400\n0xB1CE\t0xC401\n0xB1CF\t0xC402\n0xB1D0\t0xC403\n0xB1D1\t0xC404\n0xB1D3\t0xC405\n0xB1D4\t0xC406\n0xB1D5\t0xC407\n0xB1D6\t0xC408\n0xB1D7\t0xC409\n0xB1D8\t0xC40A\n0xB1D9\t0xC40B\n0xB1DA\t0xC40C\n0xB1DB\t0xC40D\n0xB1DC\t0xC40E\n0xB1DD\t0xC40F\n0xB1E1\t0xC410\n0xB1E2\t0xC411\n0xB1E3\t0xC412\n0xB1E4\t0xC413\n0xB1E5\t0xC414\n0xB1E6\t0xC415\n0xB1E7\t0xC416\n0xB1E8\t0xC417\n0xB1E9\t0xC418\n0xB1EA\t0xC419\n0xB1EB\t0xC41A\n0xB1EC\t0xC41B\n0xB1ED\t0xC41C\n0xB1EE\t0xC41D\n0xB1EF\t0xC41E\n0xB1F0\t0xC41F\n0xB1F1\t0xC420\n0xB1F3\t0xC421\n0xB1F4\t0xC422\n0xB1F5\t0xC423\n0xB1F6\t0xC424\n0xB1F7\t0xC425\n0xB1F8\t0xC426\n0xB1F9\t0xC427\n0xB1FA\t0xC428\n0xB1FB\t0xC429\n0xB1FC\t0xC42A\n0xB1FD\t0xC42B\n0xB241\t0xC42C\n0xB242\t0xC42D\n0xB243\t0xC42E\n0xB244\t0xC42F\n0xB245\t0xC430\n0xB246\t0xC431\n0xB247\t0xC432\n0xB248\t0xC433\n0xB249\t0xC434\n0xB24A\t0xC435\n0xB24B\t0xC436\n0xB24C\t0xC437\n0xB24D\t0xC438\n0xB24E\t0xC439\n0xB24F\t0xC43A\n0xB250\t0xC43B\n0xB251\t0xC43C\n0xB253\t0xC43D\n0xB254\t0xC43E\n0xB255\t0xC43F\n0xB256\t0xC440\n0xB257\t0xC441\n0xB258\t0xC442\n0xB259\t0xC443\n0xB25A\t0xC444\n0xB25B\t0xC445\n0xB25C\t0xC446\n0xB25D\t0xC447\n0xB261\t0xC448\n0xB262\t0xC449\n0xB263\t0xC44A\n0xB264\t0xC44B\n0xB265\t0xC44C\n0xB266\t0xC44D\n0xB267\t0xC44E\n0xB268\t0xC44F\n0xB269\t0xC450\n0xB26A\t0xC451\n0xB26B\t0xC452\n0xB26C\t0xC453\n0xB26D\t0xC454\n0xB26E\t0xC455\n0xB26F\t0xC456\n0xB270\t0xC457\n0xB271\t0xC458\n0xB273\t0xC459\n0xB274\t0xC45A\n0xB275\t0xC45B\n0xB276\t0xC45C\n0xB277\t0xC45D\n0xB278\t0xC45E\n0xB279\t0xC45F\n0xB27A\t0xC460\n0xB27B\t0xC461\n0xB27C\t0xC462\n0xB27D\t0xC463\n0xB281\t0xC464\n0xB282\t0xC465\n0xB283\t0xC466\n0xB284\t0xC467\n0xB285\t0xC468\n0xB286\t0xC469\n0xB287\t0xC46A\n0xB288\t0xC46B\n0xB289\t0xC46C\n0xB28A\t0xC46D\n0xB28B\t0xC46E\n0xB28C\t0xC46F\n0xB28D\t0xC470\n0xB28E\t0xC471\n0xB28F\t0xC472\n0xB290\t0xC473\n0xB291\t0xC474\n0xB293\t0xC475\n0xB294\t0xC476\n0xB295\t0xC477\n0xB296\t0xC478\n0xB297\t0xC479\n0xB298\t0xC47A\n0xB299\t0xC47B\n0xB29A\t0xC47C\n0xB29B\t0xC47D\n0xB29C\t0xC47E\n0xB29D\t0xC47F\n0xB2A1\t0xC480\n0xB2A2\t0xC481\n0xB2A3\t0xC482\n0xB2A4\t0xC483\n0xB2A5\t0xC484\n0xB2A6\t0xC485\n0xB2A7\t0xC486\n0xB2A8\t0xC487\n0xB2A9\t0xC488\n0xB2AA\t0xC489\n0xB2AB\t0xC48A\n0xB2AC\t0xC48B\n0xB2AD\t0xC48C\n0xB2AE\t0xC48D\n0xB2AF\t0xC48E\n0xB2B0\t0xC48F\n0xB2B1\t0xC490\n0xB2B3\t0xC491\n0xB2B4\t0xC492\n0xB2B5\t0xC493\n0xB2B6\t0xC494\n0xB2B7\t0xC495\n0xB2B8\t0xC496\n0xB2B9\t0xC497\n0xB2BA\t0xC498\n0xB2BB\t0xC499\n0xB2BC\t0xC49A\n0xB2BD\t0xC49B\n0xB2C1\t0xC49C\n0xB2C2\t0xC49D\n0xB2C3\t0xC49E\n0xB2C4\t0xC49F\n0xB2C5\t0xC4A0\n0xB2C6\t0xC4A1\n0xB2C7\t0xC4A2\n0xB2C8\t0xC4A3\n0xB2C9\t0xC4A4\n0xB2CA\t0xC4A5\n0xB2CB\t0xC4A6\n0xB2CC\t0xC4A7\n0xB2CD\t0xC4A8\n0xB2CE\t0xC4A9\n0xB2CF\t0xC4AA\n0xB2D0\t0xC4AB\n0xB2D1\t0xC4AC\n0xB2D3\t0xC4AD\n0xB2D4\t0xC4AE\n0xB2D5\t0xC4AF\n0xB2D6\t0xC4B0\n0xB2D7\t0xC4B1\n0xB2D8\t0xC4B2\n0xB2D9\t0xC4B3\n0xB2DA\t0xC4B4\n0xB2DB\t0xC4B5\n0xB2DC\t0xC4B6\n0xB2DD\t0xC4B7\n0xB2E1\t0xC4B8\n0xB2E2\t0xC4B9\n0xB2E3\t0xC4BA\n0xB2E4\t0xC4BB\n0xB2E5\t0xC4BC\n0xB2E6\t0xC4BD\n0xB2E7\t0xC4BE\n0xB2E8\t0xC4BF\n0xB2E9\t0xC4C0\n0xB2EA\t0xC4C1\n0xB2EB\t0xC4C2\n0xB2EC\t0xC4C3\n0xB2ED\t0xC4C4\n0xB2EE\t0xC4C5\n0xB2EF\t0xC4C6\n0xB2F0\t0xC4C7\n0xB2F1\t0xC4C8\n0xB2F3\t0xC4C9\n0xB2F4\t0xC4CA\n0xB2F5\t0xC4CB\n0xB2F6\t0xC4CC\n0xB2F7\t0xC4CD\n0xB2F8\t0xC4CE\n0xB2F9\t0xC4CF\n0xB2FA\t0xC4D0\n0xB2FB\t0xC4D1\n0xB2FC\t0xC4D2\n0xB2FD\t0xC4D3\n0xB341\t0xC4D4\n0xB342\t0xC4D5\n0xB343\t0xC4D6\n0xB344\t0xC4D7\n0xB345\t0xC4D8\n0xB346\t0xC4D9\n0xB347\t0xC4DA\n0xB348\t0xC4DB\n0xB349\t0xC4DC\n0xB34A\t0xC4DD\n0xB34B\t0xC4DE\n0xB34C\t0xC4DF\n0xB34D\t0xC4E0\n0xB34E\t0xC4E1\n0xB34F\t0xC4E2\n0xB350\t0xC4E3\n0xB351\t0xC4E4\n0xB353\t0xC4E5\n0xB354\t0xC4E6\n0xB355\t0xC4E7\n0xB356\t0xC4E8\n0xB357\t0xC4E9\n0xB358\t0xC4EA\n0xB359\t0xC4EB\n0xB35A\t0xC4EC\n0xB35B\t0xC4ED\n0xB35C\t0xC4EE\n0xB35D\t0xC4EF\n0xB361\t0xC4F0\n0xB362\t0xC4F1\n0xB363\t0xC4F2\n0xB364\t0xC4F3\n0xB365\t0xC4F4\n0xB366\t0xC4F5\n0xB367\t0xC4F6\n0xB368\t0xC4F7\n0xB369\t0xC4F8\n0xB36A\t0xC4F9\n0xB36B\t0xC4FA\n0xB36C\t0xC4FB\n0xB36D\t0xC4FC\n0xB36E\t0xC4FD\n0xB36F\t0xC4FE\n0xB370\t0xC4FF\n0xB371\t0xC500\n0xB373\t0xC501\n0xB374\t0xC502\n0xB375\t0xC503\n0xB376\t0xC504\n0xB377\t0xC505\n0xB378\t0xC506\n0xB379\t0xC507\n0xB37A\t0xC508\n0xB37B\t0xC509\n0xB37C\t0xC50A\n0xB37D\t0xC50B\n0xB381\t0xC50C\n0xB382\t0xC50D\n0xB383\t0xC50E\n0xB384\t0xC50F\n0xB385\t0xC510\n0xB386\t0xC511\n0xB387\t0xC512\n0xB388\t0xC513\n0xB389\t0xC514\n0xB38A\t0xC515\n0xB38B\t0xC516\n0xB38C\t0xC517\n0xB38D\t0xC518\n0xB38E\t0xC519\n0xB38F\t0xC51A\n0xB390\t0xC51B\n0xB391\t0xC51C\n0xB393\t0xC51D\n0xB394\t0xC51E\n0xB395\t0xC51F\n0xB396\t0xC520\n0xB397\t0xC521\n0xB398\t0xC522\n0xB399\t0xC523\n0xB39A\t0xC524\n0xB39B\t0xC525\n0xB39C\t0xC526\n0xB39D\t0xC527\n0xB3A1\t0xC528\n0xB3A2\t0xC529\n0xB3A3\t0xC52A\n0xB3A4\t0xC52B\n0xB3A5\t0xC52C\n0xB3A6\t0xC52D\n0xB3A7\t0xC52E\n0xB3A8\t0xC52F\n0xB3A9\t0xC530\n0xB3AA\t0xC531\n0xB3AB\t0xC532\n0xB3AC\t0xC533\n0xB3AD\t0xC534\n0xB3AE\t0xC535\n0xB3AF\t0xC536\n0xB3B0\t0xC537\n0xB3B1\t0xC538\n0xB3B3\t0xC539\n0xB3B4\t0xC53A\n0xB3B5\t0xC53B\n0xB3B6\t0xC53C\n0xB3B7\t0xC53D\n0xB3B8\t0xC53E\n0xB3B9\t0xC53F\n0xB3BA\t0xC540\n0xB3BB\t0xC541\n0xB3BC\t0xC542\n0xB3BD\t0xC543\n0xB441\t0x3147\n0xB461\t0xC544\n0xB462\t0xC545\n0xB463\t0xC546\n0xB464\t0xC547\n0xB465\t0xC548\n0xB466\t0xC549\n0xB467\t0xC54A\n0xB468\t0xC54B\n0xB469\t0xC54C\n0xB46A\t0xC54D\n0xB46B\t0xC54E\n0xB46C\t0xC54F\n0xB46D\t0xC550\n0xB46E\t0xC551\n0xB46F\t0xC552\n0xB470\t0xC553\n0xB471\t0xC554\n0xB473\t0xC555\n0xB474\t0xC556\n0xB475\t0xC557\n0xB476\t0xC558\n0xB477\t0xC559\n0xB478\t0xC55A\n0xB479\t0xC55B\n0xB47A\t0xC55C\n0xB47B\t0xC55D\n0xB47C\t0xC55E\n0xB47D\t0xC55F\n0xB481\t0xC560\n0xB482\t0xC561\n0xB483\t0xC562\n0xB484\t0xC563\n0xB485\t0xC564\n0xB486\t0xC565\n0xB487\t0xC566\n0xB488\t0xC567\n0xB489\t0xC568\n0xB48A\t0xC569\n0xB48B\t0xC56A\n0xB48C\t0xC56B\n0xB48D\t0xC56C\n0xB48E\t0xC56D\n0xB48F\t0xC56E\n0xB490\t0xC56F\n0xB491\t0xC570\n0xB493\t0xC571\n0xB494\t0xC572\n0xB495\t0xC573\n0xB496\t0xC574\n0xB497\t0xC575\n0xB498\t0xC576\n0xB499\t0xC577\n0xB49A\t0xC578\n0xB49B\t0xC579\n0xB49C\t0xC57A\n0xB49D\t0xC57B\n0xB4A1\t0xC57C\n0xB4A2\t0xC57D\n0xB4A3\t0xC57E\n0xB4A4\t0xC57F\n0xB4A5\t0xC580\n0xB4A6\t0xC581\n0xB4A7\t0xC582\n0xB4A8\t0xC583\n0xB4A9\t0xC584\n0xB4AA\t0xC585\n0xB4AB\t0xC586\n0xB4AC\t0xC587\n0xB4AD\t0xC588\n0xB4AE\t0xC589\n0xB4AF\t0xC58A\n0xB4B0\t0xC58B\n0xB4B1\t0xC58C\n0xB4B3\t0xC58D\n0xB4B4\t0xC58E\n0xB4B5\t0xC58F\n0xB4B6\t0xC590\n0xB4B7\t0xC591\n0xB4B8\t0xC592\n0xB4B9\t0xC593\n0xB4BA\t0xC594\n0xB4BB\t0xC595\n0xB4BC\t0xC596\n0xB4BD\t0xC597\n0xB4C1\t0xC598\n0xB4C2\t0xC599\n0xB4C3\t0xC59A\n0xB4C4\t0xC59B\n0xB4C5\t0xC59C\n0xB4C6\t0xC59D\n0xB4C7\t0xC59E\n0xB4C8\t0xC59F\n0xB4C9\t0xC5A0\n0xB4CA\t0xC5A1\n0xB4CB\t0xC5A2\n0xB4CC\t0xC5A3\n0xB4CD\t0xC5A4\n0xB4CE\t0xC5A5\n0xB4CF\t0xC5A6\n0xB4D0\t0xC5A7\n0xB4D1\t0xC5A8\n0xB4D3\t0xC5A9\n0xB4D4\t0xC5AA\n0xB4D5\t0xC5AB\n0xB4D6\t0xC5AC\n0xB4D7\t0xC5AD\n0xB4D8\t0xC5AE\n0xB4D9\t0xC5AF\n0xB4DA\t0xC5B0\n0xB4DB\t0xC5B1\n0xB4DC\t0xC5B2\n0xB4DD\t0xC5B3\n0xB4E1\t0xC5B4\n0xB4E2\t0xC5B5\n0xB4E3\t0xC5B6\n0xB4E4\t0xC5B7\n0xB4E5\t0xC5B8\n0xB4E6\t0xC5B9\n0xB4E7\t0xC5BA\n0xB4E8\t0xC5BB\n0xB4E9\t0xC5BC\n0xB4EA\t0xC5BD\n0xB4EB\t0xC5BE\n0xB4EC\t0xC5BF\n0xB4ED\t0xC5C0\n0xB4EE\t0xC5C1\n0xB4EF\t0xC5C2\n0xB4F0\t0xC5C3\n0xB4F1\t0xC5C4\n0xB4F3\t0xC5C5\n0xB4F4\t0xC5C6\n0xB4F5\t0xC5C7\n0xB4F6\t0xC5C8\n0xB4F7\t0xC5C9\n0xB4F8\t0xC5CA\n0xB4F9\t0xC5CB\n0xB4FA\t0xC5CC\n0xB4FB\t0xC5CD\n0xB4FC\t0xC5CE\n0xB4FD\t0xC5CF\n0xB541\t0xC5D0\n0xB542\t0xC5D1\n0xB543\t0xC5D2\n0xB544\t0xC5D3\n0xB545\t0xC5D4\n0xB546\t0xC5D5\n0xB547\t0xC5D6\n0xB548\t0xC5D7\n0xB549\t0xC5D8\n0xB54A\t0xC5D9\n0xB54B\t0xC5DA\n0xB54C\t0xC5DB\n0xB54D\t0xC5DC\n0xB54E\t0xC5DD\n0xB54F\t0xC5DE\n0xB550\t0xC5DF\n0xB551\t0xC5E0\n0xB553\t0xC5E1\n0xB554\t0xC5E2\n0xB555\t0xC5E3\n0xB556\t0xC5E4\n0xB557\t0xC5E5\n0xB558\t0xC5E6\n0xB559\t0xC5E7\n0xB55A\t0xC5E8\n0xB55B\t0xC5E9\n0xB55C\t0xC5EA\n0xB55D\t0xC5EB\n0xB561\t0xC5EC\n0xB562\t0xC5ED\n0xB563\t0xC5EE\n0xB564\t0xC5EF\n0xB565\t0xC5F0\n0xB566\t0xC5F1\n0xB567\t0xC5F2\n0xB568\t0xC5F3\n0xB569\t0xC5F4\n0xB56A\t0xC5F5\n0xB56B\t0xC5F6\n0xB56C\t0xC5F7\n0xB56D\t0xC5F8\n0xB56E\t0xC5F9\n0xB56F\t0xC5FA\n0xB570\t0xC5FB\n0xB571\t0xC5FC\n0xB573\t0xC5FD\n0xB574\t0xC5FE\n0xB575\t0xC5FF\n0xB576\t0xC600\n0xB577\t0xC601\n0xB578\t0xC602\n0xB579\t0xC603\n0xB57A\t0xC604\n0xB57B\t0xC605\n0xB57C\t0xC606\n0xB57D\t0xC607\n0xB581\t0xC608\n0xB582\t0xC609\n0xB583\t0xC60A\n0xB584\t0xC60B\n0xB585\t0xC60C\n0xB586\t0xC60D\n0xB587\t0xC60E\n0xB588\t0xC60F\n0xB589\t0xC610\n0xB58A\t0xC611\n0xB58B\t0xC612\n0xB58C\t0xC613\n0xB58D\t0xC614\n0xB58E\t0xC615\n0xB58F\t0xC616\n0xB590\t0xC617\n0xB591\t0xC618\n0xB593\t0xC619\n0xB594\t0xC61A\n0xB595\t0xC61B\n0xB596\t0xC61C\n0xB597\t0xC61D\n0xB598\t0xC61E\n0xB599\t0xC61F\n0xB59A\t0xC620\n0xB59B\t0xC621\n0xB59C\t0xC622\n0xB59D\t0xC623\n0xB5A1\t0xC624\n0xB5A2\t0xC625\n0xB5A3\t0xC626\n0xB5A4\t0xC627\n0xB5A5\t0xC628\n0xB5A6\t0xC629\n0xB5A7\t0xC62A\n0xB5A8\t0xC62B\n0xB5A9\t0xC62C\n0xB5AA\t0xC62D\n0xB5AB\t0xC62E\n0xB5AC\t0xC62F\n0xB5AD\t0xC630\n0xB5AE\t0xC631\n0xB5AF\t0xC632\n0xB5B0\t0xC633\n0xB5B1\t0xC634\n0xB5B3\t0xC635\n0xB5B4\t0xC636\n0xB5B5\t0xC637\n0xB5B6\t0xC638\n0xB5B7\t0xC639\n0xB5B8\t0xC63A\n0xB5B9\t0xC63B\n0xB5BA\t0xC63C\n0xB5BB\t0xC63D\n0xB5BC\t0xC63E\n0xB5BD\t0xC63F\n0xB5C1\t0xC640\n0xB5C2\t0xC641\n0xB5C3\t0xC642\n0xB5C4\t0xC643\n0xB5C5\t0xC644\n0xB5C6\t0xC645\n0xB5C7\t0xC646\n0xB5C8\t0xC647\n0xB5C9\t0xC648\n0xB5CA\t0xC649\n0xB5CB\t0xC64A\n0xB5CC\t0xC64B\n0xB5CD\t0xC64C\n0xB5CE\t0xC64D\n0xB5CF\t0xC64E\n0xB5D0\t0xC64F\n0xB5D1\t0xC650\n0xB5D3\t0xC651\n0xB5D4\t0xC652\n0xB5D5\t0xC653\n0xB5D6\t0xC654\n0xB5D7\t0xC655\n0xB5D8\t0xC656\n0xB5D9\t0xC657\n0xB5DA\t0xC658\n0xB5DB\t0xC659\n0xB5DC\t0xC65A\n0xB5DD\t0xC65B\n0xB5E1\t0xC65C\n0xB5E2\t0xC65D\n0xB5E3\t0xC65E\n0xB5E4\t0xC65F\n0xB5E5\t0xC660\n0xB5E6\t0xC661\n0xB5E7\t0xC662\n0xB5E8\t0xC663\n0xB5E9\t0xC664\n0xB5EA\t0xC665\n0xB5EB\t0xC666\n0xB5EC\t0xC667\n0xB5ED\t0xC668\n0xB5EE\t0xC669\n0xB5EF\t0xC66A\n0xB5F0\t0xC66B\n0xB5F1\t0xC66C\n0xB5F3\t0xC66D\n0xB5F4\t0xC66E\n0xB5F5\t0xC66F\n0xB5F6\t0xC670\n0xB5F7\t0xC671\n0xB5F8\t0xC672\n0xB5F9\t0xC673\n0xB5FA\t0xC674\n0xB5FB\t0xC675\n0xB5FC\t0xC676\n0xB5FD\t0xC677\n0xB641\t0xC678\n0xB642\t0xC679\n0xB643\t0xC67A\n0xB644\t0xC67B\n0xB645\t0xC67C\n0xB646\t0xC67D\n0xB647\t0xC67E\n0xB648\t0xC67F\n0xB649\t0xC680\n0xB64A\t0xC681\n0xB64B\t0xC682\n0xB64C\t0xC683\n0xB64D\t0xC684\n0xB64E\t0xC685\n0xB64F\t0xC686\n0xB650\t0xC687\n0xB651\t0xC688\n0xB653\t0xC689\n0xB654\t0xC68A\n0xB655\t0xC68B\n0xB656\t0xC68C\n0xB657\t0xC68D\n0xB658\t0xC68E\n0xB659\t0xC68F\n0xB65A\t0xC690\n0xB65B\t0xC691\n0xB65C\t0xC692\n0xB65D\t0xC693\n0xB661\t0xC694\n0xB662\t0xC695\n0xB663\t0xC696\n0xB664\t0xC697\n0xB665\t0xC698\n0xB666\t0xC699\n0xB667\t0xC69A\n0xB668\t0xC69B\n0xB669\t0xC69C\n0xB66A\t0xC69D\n0xB66B\t0xC69E\n0xB66C\t0xC69F\n0xB66D\t0xC6A0\n0xB66E\t0xC6A1\n0xB66F\t0xC6A2\n0xB670\t0xC6A3\n0xB671\t0xC6A4\n0xB673\t0xC6A5\n0xB674\t0xC6A6\n0xB675\t0xC6A7\n0xB676\t0xC6A8\n0xB677\t0xC6A9\n0xB678\t0xC6AA\n0xB679\t0xC6AB\n0xB67A\t0xC6AC\n0xB67B\t0xC6AD\n0xB67C\t0xC6AE\n0xB67D\t0xC6AF\n0xB681\t0xC6B0\n0xB682\t0xC6B1\n0xB683\t0xC6B2\n0xB684\t0xC6B3\n0xB685\t0xC6B4\n0xB686\t0xC6B5\n0xB687\t0xC6B6\n0xB688\t0xC6B7\n0xB689\t0xC6B8\n0xB68A\t0xC6B9\n0xB68B\t0xC6BA\n0xB68C\t0xC6BB\n0xB68D\t0xC6BC\n0xB68E\t0xC6BD\n0xB68F\t0xC6BE\n0xB690\t0xC6BF\n0xB691\t0xC6C0\n0xB693\t0xC6C1\n0xB694\t0xC6C2\n0xB695\t0xC6C3\n0xB696\t0xC6C4\n0xB697\t0xC6C5\n0xB698\t0xC6C6\n0xB699\t0xC6C7\n0xB69A\t0xC6C8\n0xB69B\t0xC6C9\n0xB69C\t0xC6CA\n0xB69D\t0xC6CB\n0xB6A1\t0xC6CC\n0xB6A2\t0xC6CD\n0xB6A3\t0xC6CE\n0xB6A4\t0xC6CF\n0xB6A5\t0xC6D0\n0xB6A6\t0xC6D1\n0xB6A7\t0xC6D2\n0xB6A8\t0xC6D3\n0xB6A9\t0xC6D4\n0xB6AA\t0xC6D5\n0xB6AB\t0xC6D6\n0xB6AC\t0xC6D7\n0xB6AD\t0xC6D8\n0xB6AE\t0xC6D9\n0xB6AF\t0xC6DA\n0xB6B0\t0xC6DB\n0xB6B1\t0xC6DC\n0xB6B3\t0xC6DD\n0xB6B4\t0xC6DE\n0xB6B5\t0xC6DF\n0xB6B6\t0xC6E0\n0xB6B7\t0xC6E1\n0xB6B8\t0xC6E2\n0xB6B9\t0xC6E3\n0xB6BA\t0xC6E4\n0xB6BB\t0xC6E5\n0xB6BC\t0xC6E6\n0xB6BD\t0xC6E7\n0xB6C1\t0xC6E8\n0xB6C2\t0xC6E9\n0xB6C3\t0xC6EA\n0xB6C4\t0xC6EB\n0xB6C5\t0xC6EC\n0xB6C6\t0xC6ED\n0xB6C7\t0xC6EE\n0xB6C8\t0xC6EF\n0xB6C9\t0xC6F0\n0xB6CA\t0xC6F1\n0xB6CB\t0xC6F2\n0xB6CC\t0xC6F3\n0xB6CD\t0xC6F4\n0xB6CE\t0xC6F5\n0xB6CF\t0xC6F6\n0xB6D0\t0xC6F7\n0xB6D1\t0xC6F8\n0xB6D3\t0xC6F9\n0xB6D4\t0xC6FA\n0xB6D5\t0xC6FB\n0xB6D6\t0xC6FC\n0xB6D7\t0xC6FD\n0xB6D8\t0xC6FE\n0xB6D9\t0xC6FF\n0xB6DA\t0xC700\n0xB6DB\t0xC701\n0xB6DC\t0xC702\n0xB6DD\t0xC703\n0xB6E1\t0xC704\n0xB6E2\t0xC705\n0xB6E3\t0xC706\n0xB6E4\t0xC707\n0xB6E5\t0xC708\n0xB6E6\t0xC709\n0xB6E7\t0xC70A\n0xB6E8\t0xC70B\n0xB6E9\t0xC70C\n0xB6EA\t0xC70D\n0xB6EB\t0xC70E\n0xB6EC\t0xC70F\n0xB6ED\t0xC710\n0xB6EE\t0xC711\n0xB6EF\t0xC712\n0xB6F0\t0xC713\n0xB6F1\t0xC714\n0xB6F3\t0xC715\n0xB6F4\t0xC716\n0xB6F5\t0xC717\n0xB6F6\t0xC718\n0xB6F7\t0xC719\n0xB6F8\t0xC71A\n0xB6F9\t0xC71B\n0xB6FA\t0xC71C\n0xB6FB\t0xC71D\n0xB6FC\t0xC71E\n0xB6FD\t0xC71F\n0xB741\t0xC720\n0xB742\t0xC721\n0xB743\t0xC722\n0xB744\t0xC723\n0xB745\t0xC724\n0xB746\t0xC725\n0xB747\t0xC726\n0xB748\t0xC727\n0xB749\t0xC728\n0xB74A\t0xC729\n0xB74B\t0xC72A\n0xB74C\t0xC72B\n0xB74D\t0xC72C\n0xB74E\t0xC72D\n0xB74F\t0xC72E\n0xB750\t0xC72F\n0xB751\t0xC730\n0xB753\t0xC731\n0xB754\t0xC732\n0xB755\t0xC733\n0xB756\t0xC734\n0xB757\t0xC735\n0xB758\t0xC736\n0xB759\t0xC737\n0xB75A\t0xC738\n0xB75B\t0xC739\n0xB75C\t0xC73A\n0xB75D\t0xC73B\n0xB761\t0xC73C\n0xB762\t0xC73D\n0xB763\t0xC73E\n0xB764\t0xC73F\n0xB765\t0xC740\n0xB766\t0xC741\n0xB767\t0xC742\n0xB768\t0xC743\n0xB769\t0xC744\n0xB76A\t0xC745\n0xB76B\t0xC746\n0xB76C\t0xC747\n0xB76D\t0xC748\n0xB76E\t0xC749\n0xB76F\t0xC74A\n0xB770\t0xC74B\n0xB771\t0xC74C\n0xB773\t0xC74D\n0xB774\t0xC74E\n0xB775\t0xC74F\n0xB776\t0xC750\n0xB777\t0xC751\n0xB778\t0xC752\n0xB779\t0xC753\n0xB77A\t0xC754\n0xB77B\t0xC755\n0xB77C\t0xC756\n0xB77D\t0xC757\n0xB781\t0xC758\n0xB782\t0xC759\n0xB783\t0xC75A\n0xB784\t0xC75B\n0xB785\t0xC75C\n0xB786\t0xC75D\n0xB787\t0xC75E\n0xB788\t0xC75F\n0xB789\t0xC760\n0xB78A\t0xC761\n0xB78B\t0xC762\n0xB78C\t0xC763\n0xB78D\t0xC764\n0xB78E\t0xC765\n0xB78F\t0xC766\n0xB790\t0xC767\n0xB791\t0xC768\n0xB793\t0xC769\n0xB794\t0xC76A\n0xB795\t0xC76B\n0xB796\t0xC76C\n0xB797\t0xC76D\n0xB798\t0xC76E\n0xB799\t0xC76F\n0xB79A\t0xC770\n0xB79B\t0xC771\n0xB79C\t0xC772\n0xB79D\t0xC773\n0xB7A1\t0xC774\n0xB7A2\t0xC775\n0xB7A3\t0xC776\n0xB7A4\t0xC777\n0xB7A5\t0xC778\n0xB7A6\t0xC779\n0xB7A7\t0xC77A\n0xB7A8\t0xC77B\n0xB7A9\t0xC77C\n0xB7AA\t0xC77D\n0xB7AB\t0xC77E\n0xB7AC\t0xC77F\n0xB7AD\t0xC780\n0xB7AE\t0xC781\n0xB7AF\t0xC782\n0xB7B0\t0xC783\n0xB7B1\t0xC784\n0xB7B3\t0xC785\n0xB7B4\t0xC786\n0xB7B5\t0xC787\n0xB7B6\t0xC788\n0xB7B7\t0xC789\n0xB7B8\t0xC78A\n0xB7B9\t0xC78B\n0xB7BA\t0xC78C\n0xB7BB\t0xC78D\n0xB7BC\t0xC78E\n0xB7BD\t0xC78F\n0xB841\t0x3148\n0xB861\t0xC790\n0xB862\t0xC791\n0xB863\t0xC792\n0xB864\t0xC793\n0xB865\t0xC794\n0xB866\t0xC795\n0xB867\t0xC796\n0xB868\t0xC797\n0xB869\t0xC798\n0xB86A\t0xC799\n0xB86B\t0xC79A\n0xB86C\t0xC79B\n0xB86D\t0xC79C\n0xB86E\t0xC79D\n0xB86F\t0xC79E\n0xB870\t0xC79F\n0xB871\t0xC7A0\n0xB873\t0xC7A1\n0xB874\t0xC7A2\n0xB875\t0xC7A3\n0xB876\t0xC7A4\n0xB877\t0xC7A5\n0xB878\t0xC7A6\n0xB879\t0xC7A7\n0xB87A\t0xC7A8\n0xB87B\t0xC7A9\n0xB87C\t0xC7AA\n0xB87D\t0xC7AB\n0xB881\t0xC7AC\n0xB882\t0xC7AD\n0xB883\t0xC7AE\n0xB884\t0xC7AF\n0xB885\t0xC7B0\n0xB886\t0xC7B1\n0xB887\t0xC7B2\n0xB888\t0xC7B3\n0xB889\t0xC7B4\n0xB88A\t0xC7B5\n0xB88B\t0xC7B6\n0xB88C\t0xC7B7\n0xB88D\t0xC7B8\n0xB88E\t0xC7B9\n0xB88F\t0xC7BA\n0xB890\t0xC7BB\n0xB891\t0xC7BC\n0xB893\t0xC7BD\n0xB894\t0xC7BE\n0xB895\t0xC7BF\n0xB896\t0xC7C0\n0xB897\t0xC7C1\n0xB898\t0xC7C2\n0xB899\t0xC7C3\n0xB89A\t0xC7C4\n0xB89B\t0xC7C5\n0xB89C\t0xC7C6\n0xB89D\t0xC7C7\n0xB8A1\t0xC7C8\n0xB8A2\t0xC7C9\n0xB8A3\t0xC7CA\n0xB8A4\t0xC7CB\n0xB8A5\t0xC7CC\n0xB8A6\t0xC7CD\n0xB8A7\t0xC7CE\n0xB8A8\t0xC7CF\n0xB8A9\t0xC7D0\n0xB8AA\t0xC7D1\n0xB8AB\t0xC7D2\n0xB8AC\t0xC7D3\n0xB8AD\t0xC7D4\n0xB8AE\t0xC7D5\n0xB8AF\t0xC7D6\n0xB8B0\t0xC7D7\n0xB8B1\t0xC7D8\n0xB8B3\t0xC7D9\n0xB8B4\t0xC7DA\n0xB8B5\t0xC7DB\n0xB8B6\t0xC7DC\n0xB8B7\t0xC7DD\n0xB8B8\t0xC7DE\n0xB8B9\t0xC7DF\n0xB8BA\t0xC7E0\n0xB8BB\t0xC7E1\n0xB8BC\t0xC7E2\n0xB8BD\t0xC7E3\n0xB8C1\t0xC7E4\n0xB8C2\t0xC7E5\n0xB8C3\t0xC7E6\n0xB8C4\t0xC7E7\n0xB8C5\t0xC7E8\n0xB8C6\t0xC7E9\n0xB8C7\t0xC7EA\n0xB8C8\t0xC7EB\n0xB8C9\t0xC7EC\n0xB8CA\t0xC7ED\n0xB8CB\t0xC7EE\n0xB8CC\t0xC7EF\n0xB8CD\t0xC7F0\n0xB8CE\t0xC7F1\n0xB8CF\t0xC7F2\n0xB8D0\t0xC7F3\n0xB8D1\t0xC7F4\n0xB8D3\t0xC7F5\n0xB8D4\t0xC7F6\n0xB8D5\t0xC7F7\n0xB8D6\t0xC7F8\n0xB8D7\t0xC7F9\n0xB8D8\t0xC7FA\n0xB8D9\t0xC7FB\n0xB8DA\t0xC7FC\n0xB8DB\t0xC7FD\n0xB8DC\t0xC7FE\n0xB8DD\t0xC7FF\n0xB8E1\t0xC800\n0xB8E2\t0xC801\n0xB8E3\t0xC802\n0xB8E4\t0xC803\n0xB8E5\t0xC804\n0xB8E6\t0xC805\n0xB8E7\t0xC806\n0xB8E8\t0xC807\n0xB8E9\t0xC808\n0xB8EA\t0xC809\n0xB8EB\t0xC80A\n0xB8EC\t0xC80B\n0xB8ED\t0xC80C\n0xB8EE\t0xC80D\n0xB8EF\t0xC80E\n0xB8F0\t0xC80F\n0xB8F1\t0xC810\n0xB8F3\t0xC811\n0xB8F4\t0xC812\n0xB8F5\t0xC813\n0xB8F6\t0xC814\n0xB8F7\t0xC815\n0xB8F8\t0xC816\n0xB8F9\t0xC817\n0xB8FA\t0xC818\n0xB8FB\t0xC819\n0xB8FC\t0xC81A\n0xB8FD\t0xC81B\n0xB941\t0xC81C\n0xB942\t0xC81D\n0xB943\t0xC81E\n0xB944\t0xC81F\n0xB945\t0xC820\n0xB946\t0xC821\n0xB947\t0xC822\n0xB948\t0xC823\n0xB949\t0xC824\n0xB94A\t0xC825\n0xB94B\t0xC826\n0xB94C\t0xC827\n0xB94D\t0xC828\n0xB94E\t0xC829\n0xB94F\t0xC82A\n0xB950\t0xC82B\n0xB951\t0xC82C\n0xB953\t0xC82D\n0xB954\t0xC82E\n0xB955\t0xC82F\n0xB956\t0xC830\n0xB957\t0xC831\n0xB958\t0xC832\n0xB959\t0xC833\n0xB95A\t0xC834\n0xB95B\t0xC835\n0xB95C\t0xC836\n0xB95D\t0xC837\n0xB961\t0xC838\n0xB962\t0xC839\n0xB963\t0xC83A\n0xB964\t0xC83B\n0xB965\t0xC83C\n0xB966\t0xC83D\n0xB967\t0xC83E\n0xB968\t0xC83F\n0xB969\t0xC840\n0xB96A\t0xC841\n0xB96B\t0xC842\n0xB96C\t0xC843\n0xB96D\t0xC844\n0xB96E\t0xC845\n0xB96F\t0xC846\n0xB970\t0xC847\n0xB971\t0xC848\n0xB973\t0xC849\n0xB974\t0xC84A\n0xB975\t0xC84B\n0xB976\t0xC84C\n0xB977\t0xC84D\n0xB978\t0xC84E\n0xB979\t0xC84F\n0xB97A\t0xC850\n0xB97B\t0xC851\n0xB97C\t0xC852\n0xB97D\t0xC853\n0xB981\t0xC854\n0xB982\t0xC855\n0xB983\t0xC856\n0xB984\t0xC857\n0xB985\t0xC858\n0xB986\t0xC859\n0xB987\t0xC85A\n0xB988\t0xC85B\n0xB989\t0xC85C\n0xB98A\t0xC85D\n0xB98B\t0xC85E\n0xB98C\t0xC85F\n0xB98D\t0xC860\n0xB98E\t0xC861\n0xB98F\t0xC862\n0xB990\t0xC863\n0xB991\t0xC864\n0xB993\t0xC865\n0xB994\t0xC866\n0xB995\t0xC867\n0xB996\t0xC868\n0xB997\t0xC869\n0xB998\t0xC86A\n0xB999\t0xC86B\n0xB99A\t0xC86C\n0xB99B\t0xC86D\n0xB99C\t0xC86E\n0xB99D\t0xC86F\n0xB9A1\t0xC870\n0xB9A2\t0xC871\n0xB9A3\t0xC872\n0xB9A4\t0xC873\n0xB9A5\t0xC874\n0xB9A6\t0xC875\n0xB9A7\t0xC876\n0xB9A8\t0xC877\n0xB9A9\t0xC878\n0xB9AA\t0xC879\n0xB9AB\t0xC87A\n0xB9AC\t0xC87B\n0xB9AD\t0xC87C\n0xB9AE\t0xC87D\n0xB9AF\t0xC87E\n0xB9B0\t0xC87F\n0xB9B1\t0xC880\n0xB9B3\t0xC881\n0xB9B4\t0xC882\n0xB9B5\t0xC883\n0xB9B6\t0xC884\n0xB9B7\t0xC885\n0xB9B8\t0xC886\n0xB9B9\t0xC887\n0xB9BA\t0xC888\n0xB9BB\t0xC889\n0xB9BC\t0xC88A\n0xB9BD\t0xC88B\n0xB9C1\t0xC88C\n0xB9C2\t0xC88D\n0xB9C3\t0xC88E\n0xB9C4\t0xC88F\n0xB9C5\t0xC890\n0xB9C6\t0xC891\n0xB9C7\t0xC892\n0xB9C8\t0xC893\n0xB9C9\t0xC894\n0xB9CA\t0xC895\n0xB9CB\t0xC896\n0xB9CC\t0xC897\n0xB9CD\t0xC898\n0xB9CE\t0xC899\n0xB9CF\t0xC89A\n0xB9D0\t0xC89B\n0xB9D1\t0xC89C\n0xB9D3\t0xC89D\n0xB9D4\t0xC89E\n0xB9D5\t0xC89F\n0xB9D6\t0xC8A0\n0xB9D7\t0xC8A1\n0xB9D8\t0xC8A2\n0xB9D9\t0xC8A3\n0xB9DA\t0xC8A4\n0xB9DB\t0xC8A5\n0xB9DC\t0xC8A6\n0xB9DD\t0xC8A7\n0xB9E1\t0xC8A8\n0xB9E2\t0xC8A9\n0xB9E3\t0xC8AA\n0xB9E4\t0xC8AB\n0xB9E5\t0xC8AC\n0xB9E6\t0xC8AD\n0xB9E7\t0xC8AE\n0xB9E8\t0xC8AF\n0xB9E9\t0xC8B0\n0xB9EA\t0xC8B1\n0xB9EB\t0xC8B2\n0xB9EC\t0xC8B3\n0xB9ED\t0xC8B4\n0xB9EE\t0xC8B5\n0xB9EF\t0xC8B6\n0xB9F0\t0xC8B7\n0xB9F1\t0xC8B8\n0xB9F3\t0xC8B9\n0xB9F4\t0xC8BA\n0xB9F5\t0xC8BB\n0xB9F6\t0xC8BC\n0xB9F7\t0xC8BD\n0xB9F8\t0xC8BE\n0xB9F9\t0xC8BF\n0xB9FA\t0xC8C0\n0xB9FB\t0xC8C1\n0xB9FC\t0xC8C2\n0xB9FD\t0xC8C3\n0xBA41\t0xC8C4\n0xBA42\t0xC8C5\n0xBA43\t0xC8C6\n0xBA44\t0xC8C7\n0xBA45\t0xC8C8\n0xBA46\t0xC8C9\n0xBA47\t0xC8CA\n0xBA48\t0xC8CB\n0xBA49\t0xC8CC\n0xBA4A\t0xC8CD\n0xBA4B\t0xC8CE\n0xBA4C\t0xC8CF\n0xBA4D\t0xC8D0\n0xBA4E\t0xC8D1\n0xBA4F\t0xC8D2\n0xBA50\t0xC8D3\n0xBA51\t0xC8D4\n0xBA53\t0xC8D5\n0xBA54\t0xC8D6\n0xBA55\t0xC8D7\n0xBA56\t0xC8D8\n0xBA57\t0xC8D9\n0xBA58\t0xC8DA\n0xBA59\t0xC8DB\n0xBA5A\t0xC8DC\n0xBA5B\t0xC8DD\n0xBA5C\t0xC8DE\n0xBA5D\t0xC8DF\n0xBA61\t0xC8E0\n0xBA62\t0xC8E1\n0xBA63\t0xC8E2\n0xBA64\t0xC8E3\n0xBA65\t0xC8E4\n0xBA66\t0xC8E5\n0xBA67\t0xC8E6\n0xBA68\t0xC8E7\n0xBA69\t0xC8E8\n0xBA6A\t0xC8E9\n0xBA6B\t0xC8EA\n0xBA6C\t0xC8EB\n0xBA6D\t0xC8EC\n0xBA6E\t0xC8ED\n0xBA6F\t0xC8EE\n0xBA70\t0xC8EF\n0xBA71\t0xC8F0\n0xBA73\t0xC8F1\n0xBA74\t0xC8F2\n0xBA75\t0xC8F3\n0xBA76\t0xC8F4\n0xBA77\t0xC8F5\n0xBA78\t0xC8F6\n0xBA79\t0xC8F7\n0xBA7A\t0xC8F8\n0xBA7B\t0xC8F9\n0xBA7C\t0xC8FA\n0xBA7D\t0xC8FB\n0xBA81\t0xC8FC\n0xBA82\t0xC8FD\n0xBA83\t0xC8FE\n0xBA84\t0xC8FF\n0xBA85\t0xC900\n0xBA86\t0xC901\n0xBA87\t0xC902\n0xBA88\t0xC903\n0xBA89\t0xC904\n0xBA8A\t0xC905\n0xBA8B\t0xC906\n0xBA8C\t0xC907\n0xBA8D\t0xC908\n0xBA8E\t0xC909\n0xBA8F\t0xC90A\n0xBA90\t0xC90B\n0xBA91\t0xC90C\n0xBA93\t0xC90D\n0xBA94\t0xC90E\n0xBA95\t0xC90F\n0xBA96\t0xC910\n0xBA97\t0xC911\n0xBA98\t0xC912\n0xBA99\t0xC913\n0xBA9A\t0xC914\n0xBA9B\t0xC915\n0xBA9C\t0xC916\n0xBA9D\t0xC917\n0xBAA1\t0xC918\n0xBAA2\t0xC919\n0xBAA3\t0xC91A\n0xBAA4\t0xC91B\n0xBAA5\t0xC91C\n0xBAA6\t0xC91D\n0xBAA7\t0xC91E\n0xBAA8\t0xC91F\n0xBAA9\t0xC920\n0xBAAA\t0xC921\n0xBAAB\t0xC922\n0xBAAC\t0xC923\n0xBAAD\t0xC924\n0xBAAE\t0xC925\n0xBAAF\t0xC926\n0xBAB0\t0xC927\n0xBAB1\t0xC928\n0xBAB3\t0xC929\n0xBAB4\t0xC92A\n0xBAB5\t0xC92B\n0xBAB6\t0xC92C\n0xBAB7\t0xC92D\n0xBAB8\t0xC92E\n0xBAB9\t0xC92F\n0xBABA\t0xC930\n0xBABB\t0xC931\n0xBABC\t0xC932\n0xBABD\t0xC933\n0xBAC1\t0xC934\n0xBAC2\t0xC935\n0xBAC3\t0xC936\n0xBAC4\t0xC937\n0xBAC5\t0xC938\n0xBAC6\t0xC939\n0xBAC7\t0xC93A\n0xBAC8\t0xC93B\n0xBAC9\t0xC93C\n0xBACA\t0xC93D\n0xBACB\t0xC93E\n0xBACC\t0xC93F\n0xBACD\t0xC940\n0xBACE\t0xC941\n0xBACF\t0xC942\n0xBAD0\t0xC943\n0xBAD1\t0xC944\n0xBAD3\t0xC945\n0xBAD4\t0xC946\n0xBAD5\t0xC947\n0xBAD6\t0xC948\n0xBAD7\t0xC949\n0xBAD8\t0xC94A\n0xBAD9\t0xC94B\n0xBADA\t0xC94C\n0xBADB\t0xC94D\n0xBADC\t0xC94E\n0xBADD\t0xC94F\n0xBAE1\t0xC950\n0xBAE2\t0xC951\n0xBAE3\t0xC952\n0xBAE4\t0xC953\n0xBAE5\t0xC954\n0xBAE6\t0xC955\n0xBAE7\t0xC956\n0xBAE8\t0xC957\n0xBAE9\t0xC958\n0xBAEA\t0xC959\n0xBAEB\t0xC95A\n0xBAEC\t0xC95B\n0xBAED\t0xC95C\n0xBAEE\t0xC95D\n0xBAEF\t0xC95E\n0xBAF0\t0xC95F\n0xBAF1\t0xC960\n0xBAF3\t0xC961\n0xBAF4\t0xC962\n0xBAF5\t0xC963\n0xBAF6\t0xC964\n0xBAF7\t0xC965\n0xBAF8\t0xC966\n0xBAF9\t0xC967\n0xBAFA\t0xC968\n0xBAFB\t0xC969\n0xBAFC\t0xC96A\n0xBAFD\t0xC96B\n0xBB41\t0xC96C\n0xBB42\t0xC96D\n0xBB43\t0xC96E\n0xBB44\t0xC96F\n0xBB45\t0xC970\n0xBB46\t0xC971\n0xBB47\t0xC972\n0xBB48\t0xC973\n0xBB49\t0xC974\n0xBB4A\t0xC975\n0xBB4B\t0xC976\n0xBB4C\t0xC977\n0xBB4D\t0xC978\n0xBB4E\t0xC979\n0xBB4F\t0xC97A\n0xBB50\t0xC97B\n0xBB51\t0xC97C\n0xBB53\t0xC97D\n0xBB54\t0xC97E\n0xBB55\t0xC97F\n0xBB56\t0xC980\n0xBB57\t0xC981\n0xBB58\t0xC982\n0xBB59\t0xC983\n0xBB5A\t0xC984\n0xBB5B\t0xC985\n0xBB5C\t0xC986\n0xBB5D\t0xC987\n0xBB61\t0xC988\n0xBB62\t0xC989\n0xBB63\t0xC98A\n0xBB64\t0xC98B\n0xBB65\t0xC98C\n0xBB66\t0xC98D\n0xBB67\t0xC98E\n0xBB68\t0xC98F\n0xBB69\t0xC990\n0xBB6A\t0xC991\n0xBB6B\t0xC992\n0xBB6C\t0xC993\n0xBB6D\t0xC994\n0xBB6E\t0xC995\n0xBB6F\t0xC996\n0xBB70\t0xC997\n0xBB71\t0xC998\n0xBB73\t0xC999\n0xBB74\t0xC99A\n0xBB75\t0xC99B\n0xBB76\t0xC99C\n0xBB77\t0xC99D\n0xBB78\t0xC99E\n0xBB79\t0xC99F\n0xBB7A\t0xC9A0\n0xBB7B\t0xC9A1\n0xBB7C\t0xC9A2\n0xBB7D\t0xC9A3\n0xBB81\t0xC9A4\n0xBB82\t0xC9A5\n0xBB83\t0xC9A6\n0xBB84\t0xC9A7\n0xBB85\t0xC9A8\n0xBB86\t0xC9A9\n0xBB87\t0xC9AA\n0xBB88\t0xC9AB\n0xBB89\t0xC9AC\n0xBB8A\t0xC9AD\n0xBB8B\t0xC9AE\n0xBB8C\t0xC9AF\n0xBB8D\t0xC9B0\n0xBB8E\t0xC9B1\n0xBB8F\t0xC9B2\n0xBB90\t0xC9B3\n0xBB91\t0xC9B4\n0xBB93\t0xC9B5\n0xBB94\t0xC9B6\n0xBB95\t0xC9B7\n0xBB96\t0xC9B8\n0xBB97\t0xC9B9\n0xBB98\t0xC9BA\n0xBB99\t0xC9BB\n0xBB9A\t0xC9BC\n0xBB9B\t0xC9BD\n0xBB9C\t0xC9BE\n0xBB9D\t0xC9BF\n0xBBA1\t0xC9C0\n0xBBA2\t0xC9C1\n0xBBA3\t0xC9C2\n0xBBA4\t0xC9C3\n0xBBA5\t0xC9C4\n0xBBA6\t0xC9C5\n0xBBA7\t0xC9C6\n0xBBA8\t0xC9C7\n0xBBA9\t0xC9C8\n0xBBAA\t0xC9C9\n0xBBAB\t0xC9CA\n0xBBAC\t0xC9CB\n0xBBAD\t0xC9CC\n0xBBAE\t0xC9CD\n0xBBAF\t0xC9CE\n0xBBB0\t0xC9CF\n0xBBB1\t0xC9D0\n0xBBB3\t0xC9D1\n0xBBB4\t0xC9D2\n0xBBB5\t0xC9D3\n0xBBB6\t0xC9D4\n0xBBB7\t0xC9D5\n0xBBB8\t0xC9D6\n0xBBB9\t0xC9D7\n0xBBBA\t0xC9D8\n0xBBBB\t0xC9D9\n0xBBBC\t0xC9DA\n0xBBBD\t0xC9DB\n0xBC41\t0x3149\n0xBC61\t0xC9DC\n0xBC62\t0xC9DD\n0xBC63\t0xC9DE\n0xBC64\t0xC9DF\n0xBC65\t0xC9E0\n0xBC66\t0xC9E1\n0xBC67\t0xC9E2\n0xBC68\t0xC9E3\n0xBC69\t0xC9E4\n0xBC6A\t0xC9E5\n0xBC6B\t0xC9E6\n0xBC6C\t0xC9E7\n0xBC6D\t0xC9E8\n0xBC6E\t0xC9E9\n0xBC6F\t0xC9EA\n0xBC70\t0xC9EB\n0xBC71\t0xC9EC\n0xBC73\t0xC9ED\n0xBC74\t0xC9EE\n0xBC75\t0xC9EF\n0xBC76\t0xC9F0\n0xBC77\t0xC9F1\n0xBC78\t0xC9F2\n0xBC79\t0xC9F3\n0xBC7A\t0xC9F4\n0xBC7B\t0xC9F5\n0xBC7C\t0xC9F6\n0xBC7D\t0xC9F7\n0xBC81\t0xC9F8\n0xBC82\t0xC9F9\n0xBC83\t0xC9FA\n0xBC84\t0xC9FB\n0xBC85\t0xC9FC\n0xBC86\t0xC9FD\n0xBC87\t0xC9FE\n0xBC88\t0xC9FF\n0xBC89\t0xCA00\n0xBC8A\t0xCA01\n0xBC8B\t0xCA02\n0xBC8C\t0xCA03\n0xBC8D\t0xCA04\n0xBC8E\t0xCA05\n0xBC8F\t0xCA06\n0xBC90\t0xCA07\n0xBC91\t0xCA08\n0xBC93\t0xCA09\n0xBC94\t0xCA0A\n0xBC95\t0xCA0B\n0xBC96\t0xCA0C\n0xBC97\t0xCA0D\n0xBC98\t0xCA0E\n0xBC99\t0xCA0F\n0xBC9A\t0xCA10\n0xBC9B\t0xCA11\n0xBC9C\t0xCA12\n0xBC9D\t0xCA13\n0xBCA1\t0xCA14\n0xBCA2\t0xCA15\n0xBCA3\t0xCA16\n0xBCA4\t0xCA17\n0xBCA5\t0xCA18\n0xBCA6\t0xCA19\n0xBCA7\t0xCA1A\n0xBCA8\t0xCA1B\n0xBCA9\t0xCA1C\n0xBCAA\t0xCA1D\n0xBCAB\t0xCA1E\n0xBCAC\t0xCA1F\n0xBCAD\t0xCA20\n0xBCAE\t0xCA21\n0xBCAF\t0xCA22\n0xBCB0\t0xCA23\n0xBCB1\t0xCA24\n0xBCB3\t0xCA25\n0xBCB4\t0xCA26\n0xBCB5\t0xCA27\n0xBCB6\t0xCA28\n0xBCB7\t0xCA29\n0xBCB8\t0xCA2A\n0xBCB9\t0xCA2B\n0xBCBA\t0xCA2C\n0xBCBB\t0xCA2D\n0xBCBC\t0xCA2E\n0xBCBD\t0xCA2F\n0xBCC1\t0xCA30\n0xBCC2\t0xCA31\n0xBCC3\t0xCA32\n0xBCC4\t0xCA33\n0xBCC5\t0xCA34\n0xBCC6\t0xCA35\n0xBCC7\t0xCA36\n0xBCC8\t0xCA37\n0xBCC9\t0xCA38\n0xBCCA\t0xCA39\n0xBCCB\t0xCA3A\n0xBCCC\t0xCA3B\n0xBCCD\t0xCA3C\n0xBCCE\t0xCA3D\n0xBCCF\t0xCA3E\n0xBCD0\t0xCA3F\n0xBCD1\t0xCA40\n0xBCD3\t0xCA41\n0xBCD4\t0xCA42\n0xBCD5\t0xCA43\n0xBCD6\t0xCA44\n0xBCD7\t0xCA45\n0xBCD8\t0xCA46\n0xBCD9\t0xCA47\n0xBCDA\t0xCA48\n0xBCDB\t0xCA49\n0xBCDC\t0xCA4A\n0xBCDD\t0xCA4B\n0xBCE1\t0xCA4C\n0xBCE2\t0xCA4D\n0xBCE3\t0xCA4E\n0xBCE4\t0xCA4F\n0xBCE5\t0xCA50\n0xBCE6\t0xCA51\n0xBCE7\t0xCA52\n0xBCE8\t0xCA53\n0xBCE9\t0xCA54\n0xBCEA\t0xCA55\n0xBCEB\t0xCA56\n0xBCEC\t0xCA57\n0xBCED\t0xCA58\n0xBCEE\t0xCA59\n0xBCEF\t0xCA5A\n0xBCF0\t0xCA5B\n0xBCF1\t0xCA5C\n0xBCF3\t0xCA5D\n0xBCF4\t0xCA5E\n0xBCF5\t0xCA5F\n0xBCF6\t0xCA60\n0xBCF7\t0xCA61\n0xBCF8\t0xCA62\n0xBCF9\t0xCA63\n0xBCFA\t0xCA64\n0xBCFB\t0xCA65\n0xBCFC\t0xCA66\n0xBCFD\t0xCA67\n0xBD41\t0xCA68\n0xBD42\t0xCA69\n0xBD43\t0xCA6A\n0xBD44\t0xCA6B\n0xBD45\t0xCA6C\n0xBD46\t0xCA6D\n0xBD47\t0xCA6E\n0xBD48\t0xCA6F\n0xBD49\t0xCA70\n0xBD4A\t0xCA71\n0xBD4B\t0xCA72\n0xBD4C\t0xCA73\n0xBD4D\t0xCA74\n0xBD4E\t0xCA75\n0xBD4F\t0xCA76\n0xBD50\t0xCA77\n0xBD51\t0xCA78\n0xBD53\t0xCA79\n0xBD54\t0xCA7A\n0xBD55\t0xCA7B\n0xBD56\t0xCA7C\n0xBD57\t0xCA7D\n0xBD58\t0xCA7E\n0xBD59\t0xCA7F\n0xBD5A\t0xCA80\n0xBD5B\t0xCA81\n0xBD5C\t0xCA82\n0xBD5D\t0xCA83\n0xBD61\t0xCA84\n0xBD62\t0xCA85\n0xBD63\t0xCA86\n0xBD64\t0xCA87\n0xBD65\t0xCA88\n0xBD66\t0xCA89\n0xBD67\t0xCA8A\n0xBD68\t0xCA8B\n0xBD69\t0xCA8C\n0xBD6A\t0xCA8D\n0xBD6B\t0xCA8E\n0xBD6C\t0xCA8F\n0xBD6D\t0xCA90\n0xBD6E\t0xCA91\n0xBD6F\t0xCA92\n0xBD70\t0xCA93\n0xBD71\t0xCA94\n0xBD73\t0xCA95\n0xBD74\t0xCA96\n0xBD75\t0xCA97\n0xBD76\t0xCA98\n0xBD77\t0xCA99\n0xBD78\t0xCA9A\n0xBD79\t0xCA9B\n0xBD7A\t0xCA9C\n0xBD7B\t0xCA9D\n0xBD7C\t0xCA9E\n0xBD7D\t0xCA9F\n0xBD81\t0xCAA0\n0xBD82\t0xCAA1\n0xBD83\t0xCAA2\n0xBD84\t0xCAA3\n0xBD85\t0xCAA4\n0xBD86\t0xCAA5\n0xBD87\t0xCAA6\n0xBD88\t0xCAA7\n0xBD89\t0xCAA8\n0xBD8A\t0xCAA9\n0xBD8B\t0xCAAA\n0xBD8C\t0xCAAB\n0xBD8D\t0xCAAC\n0xBD8E\t0xCAAD\n0xBD8F\t0xCAAE\n0xBD90\t0xCAAF\n0xBD91\t0xCAB0\n0xBD93\t0xCAB1\n0xBD94\t0xCAB2\n0xBD95\t0xCAB3\n0xBD96\t0xCAB4\n0xBD97\t0xCAB5\n0xBD98\t0xCAB6\n0xBD99\t0xCAB7\n0xBD9A\t0xCAB8\n0xBD9B\t0xCAB9\n0xBD9C\t0xCABA\n0xBD9D\t0xCABB\n0xBDA1\t0xCABC\n0xBDA2\t0xCABD\n0xBDA3\t0xCABE\n0xBDA4\t0xCABF\n0xBDA5\t0xCAC0\n0xBDA6\t0xCAC1\n0xBDA7\t0xCAC2\n0xBDA8\t0xCAC3\n0xBDA9\t0xCAC4\n0xBDAA\t0xCAC5\n0xBDAB\t0xCAC6\n0xBDAC\t0xCAC7\n0xBDAD\t0xCAC8\n0xBDAE\t0xCAC9\n0xBDAF\t0xCACA\n0xBDB0\t0xCACB\n0xBDB1\t0xCACC\n0xBDB3\t0xCACD\n0xBDB4\t0xCACE\n0xBDB5\t0xCACF\n0xBDB6\t0xCAD0\n0xBDB7\t0xCAD1\n0xBDB8\t0xCAD2\n0xBDB9\t0xCAD3\n0xBDBA\t0xCAD4\n0xBDBB\t0xCAD5\n0xBDBC\t0xCAD6\n0xBDBD\t0xCAD7\n0xBDC1\t0xCAD8\n0xBDC2\t0xCAD9\n0xBDC3\t0xCADA\n0xBDC4\t0xCADB\n0xBDC5\t0xCADC\n0xBDC6\t0xCADD\n0xBDC7\t0xCADE\n0xBDC8\t0xCADF\n0xBDC9\t0xCAE0\n0xBDCA\t0xCAE1\n0xBDCB\t0xCAE2\n0xBDCC\t0xCAE3\n0xBDCD\t0xCAE4\n0xBDCE\t0xCAE5\n0xBDCF\t0xCAE6\n0xBDD0\t0xCAE7\n0xBDD1\t0xCAE8\n0xBDD3\t0xCAE9\n0xBDD4\t0xCAEA\n0xBDD5\t0xCAEB\n0xBDD6\t0xCAEC\n0xBDD7\t0xCAED\n0xBDD8\t0xCAEE\n0xBDD9\t0xCAEF\n0xBDDA\t0xCAF0\n0xBDDB\t0xCAF1\n0xBDDC\t0xCAF2\n0xBDDD\t0xCAF3\n0xBDE1\t0xCAF4\n0xBDE2\t0xCAF5\n0xBDE3\t0xCAF6\n0xBDE4\t0xCAF7\n0xBDE5\t0xCAF8\n0xBDE6\t0xCAF9\n0xBDE7\t0xCAFA\n0xBDE8\t0xCAFB\n0xBDE9\t0xCAFC\n0xBDEA\t0xCAFD\n0xBDEB\t0xCAFE\n0xBDEC\t0xCAFF\n0xBDED\t0xCB00\n0xBDEE\t0xCB01\n0xBDEF\t0xCB02\n0xBDF0\t0xCB03\n0xBDF1\t0xCB04\n0xBDF3\t0xCB05\n0xBDF4\t0xCB06\n0xBDF5\t0xCB07\n0xBDF6\t0xCB08\n0xBDF7\t0xCB09\n0xBDF8\t0xCB0A\n0xBDF9\t0xCB0B\n0xBDFA\t0xCB0C\n0xBDFB\t0xCB0D\n0xBDFC\t0xCB0E\n0xBDFD\t0xCB0F\n0xBE41\t0xCB10\n0xBE42\t0xCB11\n0xBE43\t0xCB12\n0xBE44\t0xCB13\n0xBE45\t0xCB14\n0xBE46\t0xCB15\n0xBE47\t0xCB16\n0xBE48\t0xCB17\n0xBE49\t0xCB18\n0xBE4A\t0xCB19\n0xBE4B\t0xCB1A\n0xBE4C\t0xCB1B\n0xBE4D\t0xCB1C\n0xBE4E\t0xCB1D\n0xBE4F\t0xCB1E\n0xBE50\t0xCB1F\n0xBE51\t0xCB20\n0xBE53\t0xCB21\n0xBE54\t0xCB22\n0xBE55\t0xCB23\n0xBE56\t0xCB24\n0xBE57\t0xCB25\n0xBE58\t0xCB26\n0xBE59\t0xCB27\n0xBE5A\t0xCB28\n0xBE5B\t0xCB29\n0xBE5C\t0xCB2A\n0xBE5D\t0xCB2B\n0xBE61\t0xCB2C\n0xBE62\t0xCB2D\n0xBE63\t0xCB2E\n0xBE64\t0xCB2F\n0xBE65\t0xCB30\n0xBE66\t0xCB31\n0xBE67\t0xCB32\n0xBE68\t0xCB33\n0xBE69\t0xCB34\n0xBE6A\t0xCB35\n0xBE6B\t0xCB36\n0xBE6C\t0xCB37\n0xBE6D\t0xCB38\n0xBE6E\t0xCB39\n0xBE6F\t0xCB3A\n0xBE70\t0xCB3B\n0xBE71\t0xCB3C\n0xBE73\t0xCB3D\n0xBE74\t0xCB3E\n0xBE75\t0xCB3F\n0xBE76\t0xCB40\n0xBE77\t0xCB41\n0xBE78\t0xCB42\n0xBE79\t0xCB43\n0xBE7A\t0xCB44\n0xBE7B\t0xCB45\n0xBE7C\t0xCB46\n0xBE7D\t0xCB47\n0xBE81\t0xCB48\n0xBE82\t0xCB49\n0xBE83\t0xCB4A\n0xBE84\t0xCB4B\n0xBE85\t0xCB4C\n0xBE86\t0xCB4D\n0xBE87\t0xCB4E\n0xBE88\t0xCB4F\n0xBE89\t0xCB50\n0xBE8A\t0xCB51\n0xBE8B\t0xCB52\n0xBE8C\t0xCB53\n0xBE8D\t0xCB54\n0xBE8E\t0xCB55\n0xBE8F\t0xCB56\n0xBE90\t0xCB57\n0xBE91\t0xCB58\n0xBE93\t0xCB59\n0xBE94\t0xCB5A\n0xBE95\t0xCB5B\n0xBE96\t0xCB5C\n0xBE97\t0xCB5D\n0xBE98\t0xCB5E\n0xBE99\t0xCB5F\n0xBE9A\t0xCB60\n0xBE9B\t0xCB61\n0xBE9C\t0xCB62\n0xBE9D\t0xCB63\n0xBEA1\t0xCB64\n0xBEA2\t0xCB65\n0xBEA3\t0xCB66\n0xBEA4\t0xCB67\n0xBEA5\t0xCB68\n0xBEA6\t0xCB69\n0xBEA7\t0xCB6A\n0xBEA8\t0xCB6B\n0xBEA9\t0xCB6C\n0xBEAA\t0xCB6D\n0xBEAB\t0xCB6E\n0xBEAC\t0xCB6F\n0xBEAD\t0xCB70\n0xBEAE\t0xCB71\n0xBEAF\t0xCB72\n0xBEB0\t0xCB73\n0xBEB1\t0xCB74\n0xBEB3\t0xCB75\n0xBEB4\t0xCB76\n0xBEB5\t0xCB77\n0xBEB6\t0xCB78\n0xBEB7\t0xCB79\n0xBEB8\t0xCB7A\n0xBEB9\t0xCB7B\n0xBEBA\t0xCB7C\n0xBEBB\t0xCB7D\n0xBEBC\t0xCB7E\n0xBEBD\t0xCB7F\n0xBEC1\t0xCB80\n0xBEC2\t0xCB81\n0xBEC3\t0xCB82\n0xBEC4\t0xCB83\n0xBEC5\t0xCB84\n0xBEC6\t0xCB85\n0xBEC7\t0xCB86\n0xBEC8\t0xCB87\n0xBEC9\t0xCB88\n0xBECA\t0xCB89\n0xBECB\t0xCB8A\n0xBECC\t0xCB8B\n0xBECD\t0xCB8C\n0xBECE\t0xCB8D\n0xBECF\t0xCB8E\n0xBED0\t0xCB8F\n0xBED1\t0xCB90\n0xBED3\t0xCB91\n0xBED4\t0xCB92\n0xBED5\t0xCB93\n0xBED6\t0xCB94\n0xBED7\t0xCB95\n0xBED8\t0xCB96\n0xBED9\t0xCB97\n0xBEDA\t0xCB98\n0xBEDB\t0xCB99\n0xBEDC\t0xCB9A\n0xBEDD\t0xCB9B\n0xBEE1\t0xCB9C\n0xBEE2\t0xCB9D\n0xBEE3\t0xCB9E\n0xBEE4\t0xCB9F\n0xBEE5\t0xCBA0\n0xBEE6\t0xCBA1\n0xBEE7\t0xCBA2\n0xBEE8\t0xCBA3\n0xBEE9\t0xCBA4\n0xBEEA\t0xCBA5\n0xBEEB\t0xCBA6\n0xBEEC\t0xCBA7\n0xBEED\t0xCBA8\n0xBEEE\t0xCBA9\n0xBEEF\t0xCBAA\n0xBEF0\t0xCBAB\n0xBEF1\t0xCBAC\n0xBEF3\t0xCBAD\n0xBEF4\t0xCBAE\n0xBEF5\t0xCBAF\n0xBEF6\t0xCBB0\n0xBEF7\t0xCBB1\n0xBEF8\t0xCBB2\n0xBEF9\t0xCBB3\n0xBEFA\t0xCBB4\n0xBEFB\t0xCBB5\n0xBEFC\t0xCBB6\n0xBEFD\t0xCBB7\n0xBF41\t0xCBB8\n0xBF42\t0xCBB9\n0xBF43\t0xCBBA\n0xBF44\t0xCBBB\n0xBF45\t0xCBBC\n0xBF46\t0xCBBD\n0xBF47\t0xCBBE\n0xBF48\t0xCBBF\n0xBF49\t0xCBC0\n0xBF4A\t0xCBC1\n0xBF4B\t0xCBC2\n0xBF4C\t0xCBC3\n0xBF4D\t0xCBC4\n0xBF4E\t0xCBC5\n0xBF4F\t0xCBC6\n0xBF50\t0xCBC7\n0xBF51\t0xCBC8\n0xBF53\t0xCBC9\n0xBF54\t0xCBCA\n0xBF55\t0xCBCB\n0xBF56\t0xCBCC\n0xBF57\t0xCBCD\n0xBF58\t0xCBCE\n0xBF59\t0xCBCF\n0xBF5A\t0xCBD0\n0xBF5B\t0xCBD1\n0xBF5C\t0xCBD2\n0xBF5D\t0xCBD3\n0xBF61\t0xCBD4\n0xBF62\t0xCBD5\n0xBF63\t0xCBD6\n0xBF64\t0xCBD7\n0xBF65\t0xCBD8\n0xBF66\t0xCBD9\n0xBF67\t0xCBDA\n0xBF68\t0xCBDB\n0xBF69\t0xCBDC\n0xBF6A\t0xCBDD\n0xBF6B\t0xCBDE\n0xBF6C\t0xCBDF\n0xBF6D\t0xCBE0\n0xBF6E\t0xCBE1\n0xBF6F\t0xCBE2\n0xBF70\t0xCBE3\n0xBF71\t0xCBE4\n0xBF73\t0xCBE5\n0xBF74\t0xCBE6\n0xBF75\t0xCBE7\n0xBF76\t0xCBE8\n0xBF77\t0xCBE9\n0xBF78\t0xCBEA\n0xBF79\t0xCBEB\n0xBF7A\t0xCBEC\n0xBF7B\t0xCBED\n0xBF7C\t0xCBEE\n0xBF7D\t0xCBEF\n0xBF81\t0xCBF0\n0xBF82\t0xCBF1\n0xBF83\t0xCBF2\n0xBF84\t0xCBF3\n0xBF85\t0xCBF4\n0xBF86\t0xCBF5\n0xBF87\t0xCBF6\n0xBF88\t0xCBF7\n0xBF89\t0xCBF8\n0xBF8A\t0xCBF9\n0xBF8B\t0xCBFA\n0xBF8C\t0xCBFB\n0xBF8D\t0xCBFC\n0xBF8E\t0xCBFD\n0xBF8F\t0xCBFE\n0xBF90\t0xCBFF\n0xBF91\t0xCC00\n0xBF93\t0xCC01\n0xBF94\t0xCC02\n0xBF95\t0xCC03\n0xBF96\t0xCC04\n0xBF97\t0xCC05\n0xBF98\t0xCC06\n0xBF99\t0xCC07\n0xBF9A\t0xCC08\n0xBF9B\t0xCC09\n0xBF9C\t0xCC0A\n0xBF9D\t0xCC0B\n0xBFA1\t0xCC0C\n0xBFA2\t0xCC0D\n0xBFA3\t0xCC0E\n0xBFA4\t0xCC0F\n0xBFA5\t0xCC10\n0xBFA6\t0xCC11\n0xBFA7\t0xCC12\n0xBFA8\t0xCC13\n0xBFA9\t0xCC14\n0xBFAA\t0xCC15\n0xBFAB\t0xCC16\n0xBFAC\t0xCC17\n0xBFAD\t0xCC18\n0xBFAE\t0xCC19\n0xBFAF\t0xCC1A\n0xBFB0\t0xCC1B\n0xBFB1\t0xCC1C\n0xBFB3\t0xCC1D\n0xBFB4\t0xCC1E\n0xBFB5\t0xCC1F\n0xBFB6\t0xCC20\n0xBFB7\t0xCC21\n0xBFB8\t0xCC22\n0xBFB9\t0xCC23\n0xBFBA\t0xCC24\n0xBFBB\t0xCC25\n0xBFBC\t0xCC26\n0xBFBD\t0xCC27\n0xC041\t0x314A\n0xC061\t0xCC28\n0xC062\t0xCC29\n0xC063\t0xCC2A\n0xC064\t0xCC2B\n0xC065\t0xCC2C\n0xC066\t0xCC2D\n0xC067\t0xCC2E\n0xC068\t0xCC2F\n0xC069\t0xCC30\n0xC06A\t0xCC31\n0xC06B\t0xCC32\n0xC06C\t0xCC33\n0xC06D\t0xCC34\n0xC06E\t0xCC35\n0xC06F\t0xCC36\n0xC070\t0xCC37\n0xC071\t0xCC38\n0xC073\t0xCC39\n0xC074\t0xCC3A\n0xC075\t0xCC3B\n0xC076\t0xCC3C\n0xC077\t0xCC3D\n0xC078\t0xCC3E\n0xC079\t0xCC3F\n0xC07A\t0xCC40\n0xC07B\t0xCC41\n0xC07C\t0xCC42\n0xC07D\t0xCC43\n0xC081\t0xCC44\n0xC082\t0xCC45\n0xC083\t0xCC46\n0xC084\t0xCC47\n0xC085\t0xCC48\n0xC086\t0xCC49\n0xC087\t0xCC4A\n0xC088\t0xCC4B\n0xC089\t0xCC4C\n0xC08A\t0xCC4D\n0xC08B\t0xCC4E\n0xC08C\t0xCC4F\n0xC08D\t0xCC50\n0xC08E\t0xCC51\n0xC08F\t0xCC52\n0xC090\t0xCC53\n0xC091\t0xCC54\n0xC093\t0xCC55\n0xC094\t0xCC56\n0xC095\t0xCC57\n0xC096\t0xCC58\n0xC097\t0xCC59\n0xC098\t0xCC5A\n0xC099\t0xCC5B\n0xC09A\t0xCC5C\n0xC09B\t0xCC5D\n0xC09C\t0xCC5E\n0xC09D\t0xCC5F\n0xC0A1\t0xCC60\n0xC0A2\t0xCC61\n0xC0A3\t0xCC62\n0xC0A4\t0xCC63\n0xC0A5\t0xCC64\n0xC0A6\t0xCC65\n0xC0A7\t0xCC66\n0xC0A8\t0xCC67\n0xC0A9\t0xCC68\n0xC0AA\t0xCC69\n0xC0AB\t0xCC6A\n0xC0AC\t0xCC6B\n0xC0AD\t0xCC6C\n0xC0AE\t0xCC6D\n0xC0AF\t0xCC6E\n0xC0B0\t0xCC6F\n0xC0B1\t0xCC70\n0xC0B3\t0xCC71\n0xC0B4\t0xCC72\n0xC0B5\t0xCC73\n0xC0B6\t0xCC74\n0xC0B7\t0xCC75\n0xC0B8\t0xCC76\n0xC0B9\t0xCC77\n0xC0BA\t0xCC78\n0xC0BB\t0xCC79\n0xC0BC\t0xCC7A\n0xC0BD\t0xCC7B\n0xC0C1\t0xCC7C\n0xC0C2\t0xCC7D\n0xC0C3\t0xCC7E\n0xC0C4\t0xCC7F\n0xC0C5\t0xCC80\n0xC0C6\t0xCC81\n0xC0C7\t0xCC82\n0xC0C8\t0xCC83\n0xC0C9\t0xCC84\n0xC0CA\t0xCC85\n0xC0CB\t0xCC86\n0xC0CC\t0xCC87\n0xC0CD\t0xCC88\n0xC0CE\t0xCC89\n0xC0CF\t0xCC8A\n0xC0D0\t0xCC8B\n0xC0D1\t0xCC8C\n0xC0D3\t0xCC8D\n0xC0D4\t0xCC8E\n0xC0D5\t0xCC8F\n0xC0D6\t0xCC90\n0xC0D7\t0xCC91\n0xC0D8\t0xCC92\n0xC0D9\t0xCC93\n0xC0DA\t0xCC94\n0xC0DB\t0xCC95\n0xC0DC\t0xCC96\n0xC0DD\t0xCC97\n0xC0E1\t0xCC98\n0xC0E2\t0xCC99\n0xC0E3\t0xCC9A\n0xC0E4\t0xCC9B\n0xC0E5\t0xCC9C\n0xC0E6\t0xCC9D\n0xC0E7\t0xCC9E\n0xC0E8\t0xCC9F\n0xC0E9\t0xCCA0\n0xC0EA\t0xCCA1\n0xC0EB\t0xCCA2\n0xC0EC\t0xCCA3\n0xC0ED\t0xCCA4\n0xC0EE\t0xCCA5\n0xC0EF\t0xCCA6\n0xC0F0\t0xCCA7\n0xC0F1\t0xCCA8\n0xC0F3\t0xCCA9\n0xC0F4\t0xCCAA\n0xC0F5\t0xCCAB\n0xC0F6\t0xCCAC\n0xC0F7\t0xCCAD\n0xC0F8\t0xCCAE\n0xC0F9\t0xCCAF\n0xC0FA\t0xCCB0\n0xC0FB\t0xCCB1\n0xC0FC\t0xCCB2\n0xC0FD\t0xCCB3\n0xC141\t0xCCB4\n0xC142\t0xCCB5\n0xC143\t0xCCB6\n0xC144\t0xCCB7\n0xC145\t0xCCB8\n0xC146\t0xCCB9\n0xC147\t0xCCBA\n0xC148\t0xCCBB\n0xC149\t0xCCBC\n0xC14A\t0xCCBD\n0xC14B\t0xCCBE\n0xC14C\t0xCCBF\n0xC14D\t0xCCC0\n0xC14E\t0xCCC1\n0xC14F\t0xCCC2\n0xC150\t0xCCC3\n0xC151\t0xCCC4\n0xC153\t0xCCC5\n0xC154\t0xCCC6\n0xC155\t0xCCC7\n0xC156\t0xCCC8\n0xC157\t0xCCC9\n0xC158\t0xCCCA\n0xC159\t0xCCCB\n0xC15A\t0xCCCC\n0xC15B\t0xCCCD\n0xC15C\t0xCCCE\n0xC15D\t0xCCCF\n0xC161\t0xCCD0\n0xC162\t0xCCD1\n0xC163\t0xCCD2\n0xC164\t0xCCD3\n0xC165\t0xCCD4\n0xC166\t0xCCD5\n0xC167\t0xCCD6\n0xC168\t0xCCD7\n0xC169\t0xCCD8\n0xC16A\t0xCCD9\n0xC16B\t0xCCDA\n0xC16C\t0xCCDB\n0xC16D\t0xCCDC\n0xC16E\t0xCCDD\n0xC16F\t0xCCDE\n0xC170\t0xCCDF\n0xC171\t0xCCE0\n0xC173\t0xCCE1\n0xC174\t0xCCE2\n0xC175\t0xCCE3\n0xC176\t0xCCE4\n0xC177\t0xCCE5\n0xC178\t0xCCE6\n0xC179\t0xCCE7\n0xC17A\t0xCCE8\n0xC17B\t0xCCE9\n0xC17C\t0xCCEA\n0xC17D\t0xCCEB\n0xC181\t0xCCEC\n0xC182\t0xCCED\n0xC183\t0xCCEE\n0xC184\t0xCCEF\n0xC185\t0xCCF0\n0xC186\t0xCCF1\n0xC187\t0xCCF2\n0xC188\t0xCCF3\n0xC189\t0xCCF4\n0xC18A\t0xCCF5\n0xC18B\t0xCCF6\n0xC18C\t0xCCF7\n0xC18D\t0xCCF8\n0xC18E\t0xCCF9\n0xC18F\t0xCCFA\n0xC190\t0xCCFB\n0xC191\t0xCCFC\n0xC193\t0xCCFD\n0xC194\t0xCCFE\n0xC195\t0xCCFF\n0xC196\t0xCD00\n0xC197\t0xCD01\n0xC198\t0xCD02\n0xC199\t0xCD03\n0xC19A\t0xCD04\n0xC19B\t0xCD05\n0xC19C\t0xCD06\n0xC19D\t0xCD07\n0xC1A1\t0xCD08\n0xC1A2\t0xCD09\n0xC1A3\t0xCD0A\n0xC1A4\t0xCD0B\n0xC1A5\t0xCD0C\n0xC1A6\t0xCD0D\n0xC1A7\t0xCD0E\n0xC1A8\t0xCD0F\n0xC1A9\t0xCD10\n0xC1AA\t0xCD11\n0xC1AB\t0xCD12\n0xC1AC\t0xCD13\n0xC1AD\t0xCD14\n0xC1AE\t0xCD15\n0xC1AF\t0xCD16\n0xC1B0\t0xCD17\n0xC1B1\t0xCD18\n0xC1B3\t0xCD19\n0xC1B4\t0xCD1A\n0xC1B5\t0xCD1B\n0xC1B6\t0xCD1C\n0xC1B7\t0xCD1D\n0xC1B8\t0xCD1E\n0xC1B9\t0xCD1F\n0xC1BA\t0xCD20\n0xC1BB\t0xCD21\n0xC1BC\t0xCD22\n0xC1BD\t0xCD23\n0xC1C1\t0xCD24\n0xC1C2\t0xCD25\n0xC1C3\t0xCD26\n0xC1C4\t0xCD27\n0xC1C5\t0xCD28\n0xC1C6\t0xCD29\n0xC1C7\t0xCD2A\n0xC1C8\t0xCD2B\n0xC1C9\t0xCD2C\n0xC1CA\t0xCD2D\n0xC1CB\t0xCD2E\n0xC1CC\t0xCD2F\n0xC1CD\t0xCD30\n0xC1CE\t0xCD31\n0xC1CF\t0xCD32\n0xC1D0\t0xCD33\n0xC1D1\t0xCD34\n0xC1D3\t0xCD35\n0xC1D4\t0xCD36\n0xC1D5\t0xCD37\n0xC1D6\t0xCD38\n0xC1D7\t0xCD39\n0xC1D8\t0xCD3A\n0xC1D9\t0xCD3B\n0xC1DA\t0xCD3C\n0xC1DB\t0xCD3D\n0xC1DC\t0xCD3E\n0xC1DD\t0xCD3F\n0xC1E1\t0xCD40\n0xC1E2\t0xCD41\n0xC1E3\t0xCD42\n0xC1E4\t0xCD43\n0xC1E5\t0xCD44\n0xC1E6\t0xCD45\n0xC1E7\t0xCD46\n0xC1E8\t0xCD47\n0xC1E9\t0xCD48\n0xC1EA\t0xCD49\n0xC1EB\t0xCD4A\n0xC1EC\t0xCD4B\n0xC1ED\t0xCD4C\n0xC1EE\t0xCD4D\n0xC1EF\t0xCD4E\n0xC1F0\t0xCD4F\n0xC1F1\t0xCD50\n0xC1F3\t0xCD51\n0xC1F4\t0xCD52\n0xC1F5\t0xCD53\n0xC1F6\t0xCD54\n0xC1F7\t0xCD55\n0xC1F8\t0xCD56\n0xC1F9\t0xCD57\n0xC1FA\t0xCD58\n0xC1FB\t0xCD59\n0xC1FC\t0xCD5A\n0xC1FD\t0xCD5B\n0xC241\t0xCD5C\n0xC242\t0xCD5D\n0xC243\t0xCD5E\n0xC244\t0xCD5F\n0xC245\t0xCD60\n0xC246\t0xCD61\n0xC247\t0xCD62\n0xC248\t0xCD63\n0xC249\t0xCD64\n0xC24A\t0xCD65\n0xC24B\t0xCD66\n0xC24C\t0xCD67\n0xC24D\t0xCD68\n0xC24E\t0xCD69\n0xC24F\t0xCD6A\n0xC250\t0xCD6B\n0xC251\t0xCD6C\n0xC253\t0xCD6D\n0xC254\t0xCD6E\n0xC255\t0xCD6F\n0xC256\t0xCD70\n0xC257\t0xCD71\n0xC258\t0xCD72\n0xC259\t0xCD73\n0xC25A\t0xCD74\n0xC25B\t0xCD75\n0xC25C\t0xCD76\n0xC25D\t0xCD77\n0xC261\t0xCD78\n0xC262\t0xCD79\n0xC263\t0xCD7A\n0xC264\t0xCD7B\n0xC265\t0xCD7C\n0xC266\t0xCD7D\n0xC267\t0xCD7E\n0xC268\t0xCD7F\n0xC269\t0xCD80\n0xC26A\t0xCD81\n0xC26B\t0xCD82\n0xC26C\t0xCD83\n0xC26D\t0xCD84\n0xC26E\t0xCD85\n0xC26F\t0xCD86\n0xC270\t0xCD87\n0xC271\t0xCD88\n0xC273\t0xCD89\n0xC274\t0xCD8A\n0xC275\t0xCD8B\n0xC276\t0xCD8C\n0xC277\t0xCD8D\n0xC278\t0xCD8E\n0xC279\t0xCD8F\n0xC27A\t0xCD90\n0xC27B\t0xCD91\n0xC27C\t0xCD92\n0xC27D\t0xCD93\n0xC281\t0xCD94\n0xC282\t0xCD95\n0xC283\t0xCD96\n0xC284\t0xCD97\n0xC285\t0xCD98\n0xC286\t0xCD99\n0xC287\t0xCD9A\n0xC288\t0xCD9B\n0xC289\t0xCD9C\n0xC28A\t0xCD9D\n0xC28B\t0xCD9E\n0xC28C\t0xCD9F\n0xC28D\t0xCDA0\n0xC28E\t0xCDA1\n0xC28F\t0xCDA2\n0xC290\t0xCDA3\n0xC291\t0xCDA4\n0xC293\t0xCDA5\n0xC294\t0xCDA6\n0xC295\t0xCDA7\n0xC296\t0xCDA8\n0xC297\t0xCDA9\n0xC298\t0xCDAA\n0xC299\t0xCDAB\n0xC29A\t0xCDAC\n0xC29B\t0xCDAD\n0xC29C\t0xCDAE\n0xC29D\t0xCDAF\n0xC2A1\t0xCDB0\n0xC2A2\t0xCDB1\n0xC2A3\t0xCDB2\n0xC2A4\t0xCDB3\n0xC2A5\t0xCDB4\n0xC2A6\t0xCDB5\n0xC2A7\t0xCDB6\n0xC2A8\t0xCDB7\n0xC2A9\t0xCDB8\n0xC2AA\t0xCDB9\n0xC2AB\t0xCDBA\n0xC2AC\t0xCDBB\n0xC2AD\t0xCDBC\n0xC2AE\t0xCDBD\n0xC2AF\t0xCDBE\n0xC2B0\t0xCDBF\n0xC2B1\t0xCDC0\n0xC2B3\t0xCDC1\n0xC2B4\t0xCDC2\n0xC2B5\t0xCDC3\n0xC2B6\t0xCDC4\n0xC2B7\t0xCDC5\n0xC2B8\t0xCDC6\n0xC2B9\t0xCDC7\n0xC2BA\t0xCDC8\n0xC2BB\t0xCDC9\n0xC2BC\t0xCDCA\n0xC2BD\t0xCDCB\n0xC2C1\t0xCDCC\n0xC2C2\t0xCDCD\n0xC2C3\t0xCDCE\n0xC2C4\t0xCDCF\n0xC2C5\t0xCDD0\n0xC2C6\t0xCDD1\n0xC2C7\t0xCDD2\n0xC2C8\t0xCDD3\n0xC2C9\t0xCDD4\n0xC2CA\t0xCDD5\n0xC2CB\t0xCDD6\n0xC2CC\t0xCDD7\n0xC2CD\t0xCDD8\n0xC2CE\t0xCDD9\n0xC2CF\t0xCDDA\n0xC2D0\t0xCDDB\n0xC2D1\t0xCDDC\n0xC2D3\t0xCDDD\n0xC2D4\t0xCDDE\n0xC2D5\t0xCDDF\n0xC2D6\t0xCDE0\n0xC2D7\t0xCDE1\n0xC2D8\t0xCDE2\n0xC2D9\t0xCDE3\n0xC2DA\t0xCDE4\n0xC2DB\t0xCDE5\n0xC2DC\t0xCDE6\n0xC2DD\t0xCDE7\n0xC2E1\t0xCDE8\n0xC2E2\t0xCDE9\n0xC2E3\t0xCDEA\n0xC2E4\t0xCDEB\n0xC2E5\t0xCDEC\n0xC2E6\t0xCDED\n0xC2E7\t0xCDEE\n0xC2E8\t0xCDEF\n0xC2E9\t0xCDF0\n0xC2EA\t0xCDF1\n0xC2EB\t0xCDF2\n0xC2EC\t0xCDF3\n0xC2ED\t0xCDF4\n0xC2EE\t0xCDF5\n0xC2EF\t0xCDF6\n0xC2F0\t0xCDF7\n0xC2F1\t0xCDF8\n0xC2F3\t0xCDF9\n0xC2F4\t0xCDFA\n0xC2F5\t0xCDFB\n0xC2F6\t0xCDFC\n0xC2F7\t0xCDFD\n0xC2F8\t0xCDFE\n0xC2F9\t0xCDFF\n0xC2FA\t0xCE00\n0xC2FB\t0xCE01\n0xC2FC\t0xCE02\n0xC2FD\t0xCE03\n0xC341\t0xCE04\n0xC342\t0xCE05\n0xC343\t0xCE06\n0xC344\t0xCE07\n0xC345\t0xCE08\n0xC346\t0xCE09\n0xC347\t0xCE0A\n0xC348\t0xCE0B\n0xC349\t0xCE0C\n0xC34A\t0xCE0D\n0xC34B\t0xCE0E\n0xC34C\t0xCE0F\n0xC34D\t0xCE10\n0xC34E\t0xCE11\n0xC34F\t0xCE12\n0xC350\t0xCE13\n0xC351\t0xCE14\n0xC353\t0xCE15\n0xC354\t0xCE16\n0xC355\t0xCE17\n0xC356\t0xCE18\n0xC357\t0xCE19\n0xC358\t0xCE1A\n0xC359\t0xCE1B\n0xC35A\t0xCE1C\n0xC35B\t0xCE1D\n0xC35C\t0xCE1E\n0xC35D\t0xCE1F\n0xC361\t0xCE20\n0xC362\t0xCE21\n0xC363\t0xCE22\n0xC364\t0xCE23\n0xC365\t0xCE24\n0xC366\t0xCE25\n0xC367\t0xCE26\n0xC368\t0xCE27\n0xC369\t0xCE28\n0xC36A\t0xCE29\n0xC36B\t0xCE2A\n0xC36C\t0xCE2B\n0xC36D\t0xCE2C\n0xC36E\t0xCE2D\n0xC36F\t0xCE2E\n0xC370\t0xCE2F\n0xC371\t0xCE30\n0xC373\t0xCE31\n0xC374\t0xCE32\n0xC375\t0xCE33\n0xC376\t0xCE34\n0xC377\t0xCE35\n0xC378\t0xCE36\n0xC379\t0xCE37\n0xC37A\t0xCE38\n0xC37B\t0xCE39\n0xC37C\t0xCE3A\n0xC37D\t0xCE3B\n0xC381\t0xCE3C\n0xC382\t0xCE3D\n0xC383\t0xCE3E\n0xC384\t0xCE3F\n0xC385\t0xCE40\n0xC386\t0xCE41\n0xC387\t0xCE42\n0xC388\t0xCE43\n0xC389\t0xCE44\n0xC38A\t0xCE45\n0xC38B\t0xCE46\n0xC38C\t0xCE47\n0xC38D\t0xCE48\n0xC38E\t0xCE49\n0xC38F\t0xCE4A\n0xC390\t0xCE4B\n0xC391\t0xCE4C\n0xC393\t0xCE4D\n0xC394\t0xCE4E\n0xC395\t0xCE4F\n0xC396\t0xCE50\n0xC397\t0xCE51\n0xC398\t0xCE52\n0xC399\t0xCE53\n0xC39A\t0xCE54\n0xC39B\t0xCE55\n0xC39C\t0xCE56\n0xC39D\t0xCE57\n0xC3A1\t0xCE58\n0xC3A2\t0xCE59\n0xC3A3\t0xCE5A\n0xC3A4\t0xCE5B\n0xC3A5\t0xCE5C\n0xC3A6\t0xCE5D\n0xC3A7\t0xCE5E\n0xC3A8\t0xCE5F\n0xC3A9\t0xCE60\n0xC3AA\t0xCE61\n0xC3AB\t0xCE62\n0xC3AC\t0xCE63\n0xC3AD\t0xCE64\n0xC3AE\t0xCE65\n0xC3AF\t0xCE66\n0xC3B0\t0xCE67\n0xC3B1\t0xCE68\n0xC3B3\t0xCE69\n0xC3B4\t0xCE6A\n0xC3B5\t0xCE6B\n0xC3B6\t0xCE6C\n0xC3B7\t0xCE6D\n0xC3B8\t0xCE6E\n0xC3B9\t0xCE6F\n0xC3BA\t0xCE70\n0xC3BB\t0xCE71\n0xC3BC\t0xCE72\n0xC3BD\t0xCE73\n0xC441\t0x314B\n0xC461\t0xCE74\n0xC462\t0xCE75\n0xC463\t0xCE76\n0xC464\t0xCE77\n0xC465\t0xCE78\n0xC466\t0xCE79\n0xC467\t0xCE7A\n0xC468\t0xCE7B\n0xC469\t0xCE7C\n0xC46A\t0xCE7D\n0xC46B\t0xCE7E\n0xC46C\t0xCE7F\n0xC46D\t0xCE80\n0xC46E\t0xCE81\n0xC46F\t0xCE82\n0xC470\t0xCE83\n0xC471\t0xCE84\n0xC473\t0xCE85\n0xC474\t0xCE86\n0xC475\t0xCE87\n0xC476\t0xCE88\n0xC477\t0xCE89\n0xC478\t0xCE8A\n0xC479\t0xCE8B\n0xC47A\t0xCE8C\n0xC47B\t0xCE8D\n0xC47C\t0xCE8E\n0xC47D\t0xCE8F\n0xC481\t0xCE90\n0xC482\t0xCE91\n0xC483\t0xCE92\n0xC484\t0xCE93\n0xC485\t0xCE94\n0xC486\t0xCE95\n0xC487\t0xCE96\n0xC488\t0xCE97\n0xC489\t0xCE98\n0xC48A\t0xCE99\n0xC48B\t0xCE9A\n0xC48C\t0xCE9B\n0xC48D\t0xCE9C\n0xC48E\t0xCE9D\n0xC48F\t0xCE9E\n0xC490\t0xCE9F\n0xC491\t0xCEA0\n0xC493\t0xCEA1\n0xC494\t0xCEA2\n0xC495\t0xCEA3\n0xC496\t0xCEA4\n0xC497\t0xCEA5\n0xC498\t0xCEA6\n0xC499\t0xCEA7\n0xC49A\t0xCEA8\n0xC49B\t0xCEA9\n0xC49C\t0xCEAA\n0xC49D\t0xCEAB\n0xC4A1\t0xCEAC\n0xC4A2\t0xCEAD\n0xC4A3\t0xCEAE\n0xC4A4\t0xCEAF\n0xC4A5\t0xCEB0\n0xC4A6\t0xCEB1\n0xC4A7\t0xCEB2\n0xC4A8\t0xCEB3\n0xC4A9\t0xCEB4\n0xC4AA\t0xCEB5\n0xC4AB\t0xCEB6\n0xC4AC\t0xCEB7\n0xC4AD\t0xCEB8\n0xC4AE\t0xCEB9\n0xC4AF\t0xCEBA\n0xC4B0\t0xCEBB\n0xC4B1\t0xCEBC\n0xC4B3\t0xCEBD\n0xC4B4\t0xCEBE\n0xC4B5\t0xCEBF\n0xC4B6\t0xCEC0\n0xC4B7\t0xCEC1\n0xC4B8\t0xCEC2\n0xC4B9\t0xCEC3\n0xC4BA\t0xCEC4\n0xC4BB\t0xCEC5\n0xC4BC\t0xCEC6\n0xC4BD\t0xCEC7\n0xC4C1\t0xCEC8\n0xC4C2\t0xCEC9\n0xC4C3\t0xCECA\n0xC4C4\t0xCECB\n0xC4C5\t0xCECC\n0xC4C6\t0xCECD\n0xC4C7\t0xCECE\n0xC4C8\t0xCECF\n0xC4C9\t0xCED0\n0xC4CA\t0xCED1\n0xC4CB\t0xCED2\n0xC4CC\t0xCED3\n0xC4CD\t0xCED4\n0xC4CE\t0xCED5\n0xC4CF\t0xCED6\n0xC4D0\t0xCED7\n0xC4D1\t0xCED8\n0xC4D3\t0xCED9\n0xC4D4\t0xCEDA\n0xC4D5\t0xCEDB\n0xC4D6\t0xCEDC\n0xC4D7\t0xCEDD\n0xC4D8\t0xCEDE\n0xC4D9\t0xCEDF\n0xC4DA\t0xCEE0\n0xC4DB\t0xCEE1\n0xC4DC\t0xCEE2\n0xC4DD\t0xCEE3\n0xC4E1\t0xCEE4\n0xC4E2\t0xCEE5\n0xC4E3\t0xCEE6\n0xC4E4\t0xCEE7\n0xC4E5\t0xCEE8\n0xC4E6\t0xCEE9\n0xC4E7\t0xCEEA\n0xC4E8\t0xCEEB\n0xC4E9\t0xCEEC\n0xC4EA\t0xCEED\n0xC4EB\t0xCEEE\n0xC4EC\t0xCEEF\n0xC4ED\t0xCEF0\n0xC4EE\t0xCEF1\n0xC4EF\t0xCEF2\n0xC4F0\t0xCEF3\n0xC4F1\t0xCEF4\n0xC4F3\t0xCEF5\n0xC4F4\t0xCEF6\n0xC4F5\t0xCEF7\n0xC4F6\t0xCEF8\n0xC4F7\t0xCEF9\n0xC4F8\t0xCEFA\n0xC4F9\t0xCEFB\n0xC4FA\t0xCEFC\n0xC4FB\t0xCEFD\n0xC4FC\t0xCEFE\n0xC4FD\t0xCEFF\n0xC541\t0xCF00\n0xC542\t0xCF01\n0xC543\t0xCF02\n0xC544\t0xCF03\n0xC545\t0xCF04\n0xC546\t0xCF05\n0xC547\t0xCF06\n0xC548\t0xCF07\n0xC549\t0xCF08\n0xC54A\t0xCF09\n0xC54B\t0xCF0A\n0xC54C\t0xCF0B\n0xC54D\t0xCF0C\n0xC54E\t0xCF0D\n0xC54F\t0xCF0E\n0xC550\t0xCF0F\n0xC551\t0xCF10\n0xC553\t0xCF11\n0xC554\t0xCF12\n0xC555\t0xCF13\n0xC556\t0xCF14\n0xC557\t0xCF15\n0xC558\t0xCF16\n0xC559\t0xCF17\n0xC55A\t0xCF18\n0xC55B\t0xCF19\n0xC55C\t0xCF1A\n0xC55D\t0xCF1B\n0xC561\t0xCF1C\n0xC562\t0xCF1D\n0xC563\t0xCF1E\n0xC564\t0xCF1F\n0xC565\t0xCF20\n0xC566\t0xCF21\n0xC567\t0xCF22\n0xC568\t0xCF23\n0xC569\t0xCF24\n0xC56A\t0xCF25\n0xC56B\t0xCF26\n0xC56C\t0xCF27\n0xC56D\t0xCF28\n0xC56E\t0xCF29\n0xC56F\t0xCF2A\n0xC570\t0xCF2B\n0xC571\t0xCF2C\n0xC573\t0xCF2D\n0xC574\t0xCF2E\n0xC575\t0xCF2F\n0xC576\t0xCF30\n0xC577\t0xCF31\n0xC578\t0xCF32\n0xC579\t0xCF33\n0xC57A\t0xCF34\n0xC57B\t0xCF35\n0xC57C\t0xCF36\n0xC57D\t0xCF37\n0xC581\t0xCF38\n0xC582\t0xCF39\n0xC583\t0xCF3A\n0xC584\t0xCF3B\n0xC585\t0xCF3C\n0xC586\t0xCF3D\n0xC587\t0xCF3E\n0xC588\t0xCF3F\n0xC589\t0xCF40\n0xC58A\t0xCF41\n0xC58B\t0xCF42\n0xC58C\t0xCF43\n0xC58D\t0xCF44\n0xC58E\t0xCF45\n0xC58F\t0xCF46\n0xC590\t0xCF47\n0xC591\t0xCF48\n0xC593\t0xCF49\n0xC594\t0xCF4A\n0xC595\t0xCF4B\n0xC596\t0xCF4C\n0xC597\t0xCF4D\n0xC598\t0xCF4E\n0xC599\t0xCF4F\n0xC59A\t0xCF50\n0xC59B\t0xCF51\n0xC59C\t0xCF52\n0xC59D\t0xCF53\n0xC5A1\t0xCF54\n0xC5A2\t0xCF55\n0xC5A3\t0xCF56\n0xC5A4\t0xCF57\n0xC5A5\t0xCF58\n0xC5A6\t0xCF59\n0xC5A7\t0xCF5A\n0xC5A8\t0xCF5B\n0xC5A9\t0xCF5C\n0xC5AA\t0xCF5D\n0xC5AB\t0xCF5E\n0xC5AC\t0xCF5F\n0xC5AD\t0xCF60\n0xC5AE\t0xCF61\n0xC5AF\t0xCF62\n0xC5B0\t0xCF63\n0xC5B1\t0xCF64\n0xC5B3\t0xCF65\n0xC5B4\t0xCF66\n0xC5B5\t0xCF67\n0xC5B6\t0xCF68\n0xC5B7\t0xCF69\n0xC5B8\t0xCF6A\n0xC5B9\t0xCF6B\n0xC5BA\t0xCF6C\n0xC5BB\t0xCF6D\n0xC5BC\t0xCF6E\n0xC5BD\t0xCF6F\n0xC5C1\t0xCF70\n0xC5C2\t0xCF71\n0xC5C3\t0xCF72\n0xC5C4\t0xCF73\n0xC5C5\t0xCF74\n0xC5C6\t0xCF75\n0xC5C7\t0xCF76\n0xC5C8\t0xCF77\n0xC5C9\t0xCF78\n0xC5CA\t0xCF79\n0xC5CB\t0xCF7A\n0xC5CC\t0xCF7B\n0xC5CD\t0xCF7C\n0xC5CE\t0xCF7D\n0xC5CF\t0xCF7E\n0xC5D0\t0xCF7F\n0xC5D1\t0xCF80\n0xC5D3\t0xCF81\n0xC5D4\t0xCF82\n0xC5D5\t0xCF83\n0xC5D6\t0xCF84\n0xC5D7\t0xCF85\n0xC5D8\t0xCF86\n0xC5D9\t0xCF87\n0xC5DA\t0xCF88\n0xC5DB\t0xCF89\n0xC5DC\t0xCF8A\n0xC5DD\t0xCF8B\n0xC5E1\t0xCF8C\n0xC5E2\t0xCF8D\n0xC5E3\t0xCF8E\n0xC5E4\t0xCF8F\n0xC5E5\t0xCF90\n0xC5E6\t0xCF91\n0xC5E7\t0xCF92\n0xC5E8\t0xCF93\n0xC5E9\t0xCF94\n0xC5EA\t0xCF95\n0xC5EB\t0xCF96\n0xC5EC\t0xCF97\n0xC5ED\t0xCF98\n0xC5EE\t0xCF99\n0xC5EF\t0xCF9A\n0xC5F0\t0xCF9B\n0xC5F1\t0xCF9C\n0xC5F3\t0xCF9D\n0xC5F4\t0xCF9E\n0xC5F5\t0xCF9F\n0xC5F6\t0xCFA0\n0xC5F7\t0xCFA1\n0xC5F8\t0xCFA2\n0xC5F9\t0xCFA3\n0xC5FA\t0xCFA4\n0xC5FB\t0xCFA5\n0xC5FC\t0xCFA6\n0xC5FD\t0xCFA7\n0xC641\t0xCFA8\n0xC642\t0xCFA9\n0xC643\t0xCFAA\n0xC644\t0xCFAB\n0xC645\t0xCFAC\n0xC646\t0xCFAD\n0xC647\t0xCFAE\n0xC648\t0xCFAF\n0xC649\t0xCFB0\n0xC64A\t0xCFB1\n0xC64B\t0xCFB2\n0xC64C\t0xCFB3\n0xC64D\t0xCFB4\n0xC64E\t0xCFB5\n0xC64F\t0xCFB6\n0xC650\t0xCFB7\n0xC651\t0xCFB8\n0xC653\t0xCFB9\n0xC654\t0xCFBA\n0xC655\t0xCFBB\n0xC656\t0xCFBC\n0xC657\t0xCFBD\n0xC658\t0xCFBE\n0xC659\t0xCFBF\n0xC65A\t0xCFC0\n0xC65B\t0xCFC1\n0xC65C\t0xCFC2\n0xC65D\t0xCFC3\n0xC661\t0xCFC4\n0xC662\t0xCFC5\n0xC663\t0xCFC6\n0xC664\t0xCFC7\n0xC665\t0xCFC8\n0xC666\t0xCFC9\n0xC667\t0xCFCA\n0xC668\t0xCFCB\n0xC669\t0xCFCC\n0xC66A\t0xCFCD\n0xC66B\t0xCFCE\n0xC66C\t0xCFCF\n0xC66D\t0xCFD0\n0xC66E\t0xCFD1\n0xC66F\t0xCFD2\n0xC670\t0xCFD3\n0xC671\t0xCFD4\n0xC673\t0xCFD5\n0xC674\t0xCFD6\n0xC675\t0xCFD7\n0xC676\t0xCFD8\n0xC677\t0xCFD9\n0xC678\t0xCFDA\n0xC679\t0xCFDB\n0xC67A\t0xCFDC\n0xC67B\t0xCFDD\n0xC67C\t0xCFDE\n0xC67D\t0xCFDF\n0xC681\t0xCFE0\n0xC682\t0xCFE1\n0xC683\t0xCFE2\n0xC684\t0xCFE3\n0xC685\t0xCFE4\n0xC686\t0xCFE5\n0xC687\t0xCFE6\n0xC688\t0xCFE7\n0xC689\t0xCFE8\n0xC68A\t0xCFE9\n0xC68B\t0xCFEA\n0xC68C\t0xCFEB\n0xC68D\t0xCFEC\n0xC68E\t0xCFED\n0xC68F\t0xCFEE\n0xC690\t0xCFEF\n0xC691\t0xCFF0\n0xC693\t0xCFF1\n0xC694\t0xCFF2\n0xC695\t0xCFF3\n0xC696\t0xCFF4\n0xC697\t0xCFF5\n0xC698\t0xCFF6\n0xC699\t0xCFF7\n0xC69A\t0xCFF8\n0xC69B\t0xCFF9\n0xC69C\t0xCFFA\n0xC69D\t0xCFFB\n0xC6A1\t0xCFFC\n0xC6A2\t0xCFFD\n0xC6A3\t0xCFFE\n0xC6A4\t0xCFFF\n0xC6A5\t0xD000\n0xC6A6\t0xD001\n0xC6A7\t0xD002\n0xC6A8\t0xD003\n0xC6A9\t0xD004\n0xC6AA\t0xD005\n0xC6AB\t0xD006\n0xC6AC\t0xD007\n0xC6AD\t0xD008\n0xC6AE\t0xD009\n0xC6AF\t0xD00A\n0xC6B0\t0xD00B\n0xC6B1\t0xD00C\n0xC6B3\t0xD00D\n0xC6B4\t0xD00E\n0xC6B5\t0xD00F\n0xC6B6\t0xD010\n0xC6B7\t0xD011\n0xC6B8\t0xD012\n0xC6B9\t0xD013\n0xC6BA\t0xD014\n0xC6BB\t0xD015\n0xC6BC\t0xD016\n0xC6BD\t0xD017\n0xC6C1\t0xD018\n0xC6C2\t0xD019\n0xC6C3\t0xD01A\n0xC6C4\t0xD01B\n0xC6C5\t0xD01C\n0xC6C6\t0xD01D\n0xC6C7\t0xD01E\n0xC6C8\t0xD01F\n0xC6C9\t0xD020\n0xC6CA\t0xD021\n0xC6CB\t0xD022\n0xC6CC\t0xD023\n0xC6CD\t0xD024\n0xC6CE\t0xD025\n0xC6CF\t0xD026\n0xC6D0\t0xD027\n0xC6D1\t0xD028\n0xC6D3\t0xD029\n0xC6D4\t0xD02A\n0xC6D5\t0xD02B\n0xC6D6\t0xD02C\n0xC6D7\t0xD02D\n0xC6D8\t0xD02E\n0xC6D9\t0xD02F\n0xC6DA\t0xD030\n0xC6DB\t0xD031\n0xC6DC\t0xD032\n0xC6DD\t0xD033\n0xC6E1\t0xD034\n0xC6E2\t0xD035\n0xC6E3\t0xD036\n0xC6E4\t0xD037\n0xC6E5\t0xD038\n0xC6E6\t0xD039\n0xC6E7\t0xD03A\n0xC6E8\t0xD03B\n0xC6E9\t0xD03C\n0xC6EA\t0xD03D\n0xC6EB\t0xD03E\n0xC6EC\t0xD03F\n0xC6ED\t0xD040\n0xC6EE\t0xD041\n0xC6EF\t0xD042\n0xC6F0\t0xD043\n0xC6F1\t0xD044\n0xC6F3\t0xD045\n0xC6F4\t0xD046\n0xC6F5\t0xD047\n0xC6F6\t0xD048\n0xC6F7\t0xD049\n0xC6F8\t0xD04A\n0xC6F9\t0xD04B\n0xC6FA\t0xD04C\n0xC6FB\t0xD04D\n0xC6FC\t0xD04E\n0xC6FD\t0xD04F\n0xC741\t0xD050\n0xC742\t0xD051\n0xC743\t0xD052\n0xC744\t0xD053\n0xC745\t0xD054\n0xC746\t0xD055\n0xC747\t0xD056\n0xC748\t0xD057\n0xC749\t0xD058\n0xC74A\t0xD059\n0xC74B\t0xD05A\n0xC74C\t0xD05B\n0xC74D\t0xD05C\n0xC74E\t0xD05D\n0xC74F\t0xD05E\n0xC750\t0xD05F\n0xC751\t0xD060\n0xC753\t0xD061\n0xC754\t0xD062\n0xC755\t0xD063\n0xC756\t0xD064\n0xC757\t0xD065\n0xC758\t0xD066\n0xC759\t0xD067\n0xC75A\t0xD068\n0xC75B\t0xD069\n0xC75C\t0xD06A\n0xC75D\t0xD06B\n0xC761\t0xD06C\n0xC762\t0xD06D\n0xC763\t0xD06E\n0xC764\t0xD06F\n0xC765\t0xD070\n0xC766\t0xD071\n0xC767\t0xD072\n0xC768\t0xD073\n0xC769\t0xD074\n0xC76A\t0xD075\n0xC76B\t0xD076\n0xC76C\t0xD077\n0xC76D\t0xD078\n0xC76E\t0xD079\n0xC76F\t0xD07A\n0xC770\t0xD07B\n0xC771\t0xD07C\n0xC773\t0xD07D\n0xC774\t0xD07E\n0xC775\t0xD07F\n0xC776\t0xD080\n0xC777\t0xD081\n0xC778\t0xD082\n0xC779\t0xD083\n0xC77A\t0xD084\n0xC77B\t0xD085\n0xC77C\t0xD086\n0xC77D\t0xD087\n0xC781\t0xD088\n0xC782\t0xD089\n0xC783\t0xD08A\n0xC784\t0xD08B\n0xC785\t0xD08C\n0xC786\t0xD08D\n0xC787\t0xD08E\n0xC788\t0xD08F\n0xC789\t0xD090\n0xC78A\t0xD091\n0xC78B\t0xD092\n0xC78C\t0xD093\n0xC78D\t0xD094\n0xC78E\t0xD095\n0xC78F\t0xD096\n0xC790\t0xD097\n0xC791\t0xD098\n0xC793\t0xD099\n0xC794\t0xD09A\n0xC795\t0xD09B\n0xC796\t0xD09C\n0xC797\t0xD09D\n0xC798\t0xD09E\n0xC799\t0xD09F\n0xC79A\t0xD0A0\n0xC79B\t0xD0A1\n0xC79C\t0xD0A2\n0xC79D\t0xD0A3\n0xC7A1\t0xD0A4\n0xC7A2\t0xD0A5\n0xC7A3\t0xD0A6\n0xC7A4\t0xD0A7\n0xC7A5\t0xD0A8\n0xC7A6\t0xD0A9\n0xC7A7\t0xD0AA\n0xC7A8\t0xD0AB\n0xC7A9\t0xD0AC\n0xC7AA\t0xD0AD\n0xC7AB\t0xD0AE\n0xC7AC\t0xD0AF\n0xC7AD\t0xD0B0\n0xC7AE\t0xD0B1\n0xC7AF\t0xD0B2\n0xC7B0\t0xD0B3\n0xC7B1\t0xD0B4\n0xC7B3\t0xD0B5\n0xC7B4\t0xD0B6\n0xC7B5\t0xD0B7\n0xC7B6\t0xD0B8\n0xC7B7\t0xD0B9\n0xC7B8\t0xD0BA\n0xC7B9\t0xD0BB\n0xC7BA\t0xD0BC\n0xC7BB\t0xD0BD\n0xC7BC\t0xD0BE\n0xC7BD\t0xD0BF\n0xC841\t0x314C\n0xC861\t0xD0C0\n0xC862\t0xD0C1\n0xC863\t0xD0C2\n0xC864\t0xD0C3\n0xC865\t0xD0C4\n0xC866\t0xD0C5\n0xC867\t0xD0C6\n0xC868\t0xD0C7\n0xC869\t0xD0C8\n0xC86A\t0xD0C9\n0xC86B\t0xD0CA\n0xC86C\t0xD0CB\n0xC86D\t0xD0CC\n0xC86E\t0xD0CD\n0xC86F\t0xD0CE\n0xC870\t0xD0CF\n0xC871\t0xD0D0\n0xC873\t0xD0D1\n0xC874\t0xD0D2\n0xC875\t0xD0D3\n0xC876\t0xD0D4\n0xC877\t0xD0D5\n0xC878\t0xD0D6\n0xC879\t0xD0D7\n0xC87A\t0xD0D8\n0xC87B\t0xD0D9\n0xC87C\t0xD0DA\n0xC87D\t0xD0DB\n0xC881\t0xD0DC\n0xC882\t0xD0DD\n0xC883\t0xD0DE\n0xC884\t0xD0DF\n0xC885\t0xD0E0\n0xC886\t0xD0E1\n0xC887\t0xD0E2\n0xC888\t0xD0E3\n0xC889\t0xD0E4\n0xC88A\t0xD0E5\n0xC88B\t0xD0E6\n0xC88C\t0xD0E7\n0xC88D\t0xD0E8\n0xC88E\t0xD0E9\n0xC88F\t0xD0EA\n0xC890\t0xD0EB\n0xC891\t0xD0EC\n0xC893\t0xD0ED\n0xC894\t0xD0EE\n0xC895\t0xD0EF\n0xC896\t0xD0F0\n0xC897\t0xD0F1\n0xC898\t0xD0F2\n0xC899\t0xD0F3\n0xC89A\t0xD0F4\n0xC89B\t0xD0F5\n0xC89C\t0xD0F6\n0xC89D\t0xD0F7\n0xC8A1\t0xD0F8\n0xC8A2\t0xD0F9\n0xC8A3\t0xD0FA\n0xC8A4\t0xD0FB\n0xC8A5\t0xD0FC\n0xC8A6\t0xD0FD\n0xC8A7\t0xD0FE\n0xC8A8\t0xD0FF\n0xC8A9\t0xD100\n0xC8AA\t0xD101\n0xC8AB\t0xD102\n0xC8AC\t0xD103\n0xC8AD\t0xD104\n0xC8AE\t0xD105\n0xC8AF\t0xD106\n0xC8B0\t0xD107\n0xC8B1\t0xD108\n0xC8B3\t0xD109\n0xC8B4\t0xD10A\n0xC8B5\t0xD10B\n0xC8B6\t0xD10C\n0xC8B7\t0xD10D\n0xC8B8\t0xD10E\n0xC8B9\t0xD10F\n0xC8BA\t0xD110\n0xC8BB\t0xD111\n0xC8BC\t0xD112\n0xC8BD\t0xD113\n0xC8C1\t0xD114\n0xC8C2\t0xD115\n0xC8C3\t0xD116\n0xC8C4\t0xD117\n0xC8C5\t0xD118\n0xC8C6\t0xD119\n0xC8C7\t0xD11A\n0xC8C8\t0xD11B\n0xC8C9\t0xD11C\n0xC8CA\t0xD11D\n0xC8CB\t0xD11E\n0xC8CC\t0xD11F\n0xC8CD\t0xD120\n0xC8CE\t0xD121\n0xC8CF\t0xD122\n0xC8D0\t0xD123\n0xC8D1\t0xD124\n0xC8D3\t0xD125\n0xC8D4\t0xD126\n0xC8D5\t0xD127\n0xC8D6\t0xD128\n0xC8D7\t0xD129\n0xC8D8\t0xD12A\n0xC8D9\t0xD12B\n0xC8DA\t0xD12C\n0xC8DB\t0xD12D\n0xC8DC\t0xD12E\n0xC8DD\t0xD12F\n0xC8E1\t0xD130\n0xC8E2\t0xD131\n0xC8E3\t0xD132\n0xC8E4\t0xD133\n0xC8E5\t0xD134\n0xC8E6\t0xD135\n0xC8E7\t0xD136\n0xC8E8\t0xD137\n0xC8E9\t0xD138\n0xC8EA\t0xD139\n0xC8EB\t0xD13A\n0xC8EC\t0xD13B\n0xC8ED\t0xD13C\n0xC8EE\t0xD13D\n0xC8EF\t0xD13E\n0xC8F0\t0xD13F\n0xC8F1\t0xD140\n0xC8F3\t0xD141\n0xC8F4\t0xD142\n0xC8F5\t0xD143\n0xC8F6\t0xD144\n0xC8F7\t0xD145\n0xC8F8\t0xD146\n0xC8F9\t0xD147\n0xC8FA\t0xD148\n0xC8FB\t0xD149\n0xC8FC\t0xD14A\n0xC8FD\t0xD14B\n0xC941\t0xD14C\n0xC942\t0xD14D\n0xC943\t0xD14E\n0xC944\t0xD14F\n0xC945\t0xD150\n0xC946\t0xD151\n0xC947\t0xD152\n0xC948\t0xD153\n0xC949\t0xD154\n0xC94A\t0xD155\n0xC94B\t0xD156\n0xC94C\t0xD157\n0xC94D\t0xD158\n0xC94E\t0xD159\n0xC94F\t0xD15A\n0xC950\t0xD15B\n0xC951\t0xD15C\n0xC953\t0xD15D\n0xC954\t0xD15E\n0xC955\t0xD15F\n0xC956\t0xD160\n0xC957\t0xD161\n0xC958\t0xD162\n0xC959\t0xD163\n0xC95A\t0xD164\n0xC95B\t0xD165\n0xC95C\t0xD166\n0xC95D\t0xD167\n0xC961\t0xD168\n0xC962\t0xD169\n0xC963\t0xD16A\n0xC964\t0xD16B\n0xC965\t0xD16C\n0xC966\t0xD16D\n0xC967\t0xD16E\n0xC968\t0xD16F\n0xC969\t0xD170\n0xC96A\t0xD171\n0xC96B\t0xD172\n0xC96C\t0xD173\n0xC96D\t0xD174\n0xC96E\t0xD175\n0xC96F\t0xD176\n0xC970\t0xD177\n0xC971\t0xD178\n0xC973\t0xD179\n0xC974\t0xD17A\n0xC975\t0xD17B\n0xC976\t0xD17C\n0xC977\t0xD17D\n0xC978\t0xD17E\n0xC979\t0xD17F\n0xC97A\t0xD180\n0xC97B\t0xD181\n0xC97C\t0xD182\n0xC97D\t0xD183\n0xC981\t0xD184\n0xC982\t0xD185\n0xC983\t0xD186\n0xC984\t0xD187\n0xC985\t0xD188\n0xC986\t0xD189\n0xC987\t0xD18A\n0xC988\t0xD18B\n0xC989\t0xD18C\n0xC98A\t0xD18D\n0xC98B\t0xD18E\n0xC98C\t0xD18F\n0xC98D\t0xD190\n0xC98E\t0xD191\n0xC98F\t0xD192\n0xC990\t0xD193\n0xC991\t0xD194\n0xC993\t0xD195\n0xC994\t0xD196\n0xC995\t0xD197\n0xC996\t0xD198\n0xC997\t0xD199\n0xC998\t0xD19A\n0xC999\t0xD19B\n0xC99A\t0xD19C\n0xC99B\t0xD19D\n0xC99C\t0xD19E\n0xC99D\t0xD19F\n0xC9A1\t0xD1A0\n0xC9A2\t0xD1A1\n0xC9A3\t0xD1A2\n0xC9A4\t0xD1A3\n0xC9A5\t0xD1A4\n0xC9A6\t0xD1A5\n0xC9A7\t0xD1A6\n0xC9A8\t0xD1A7\n0xC9A9\t0xD1A8\n0xC9AA\t0xD1A9\n0xC9AB\t0xD1AA\n0xC9AC\t0xD1AB\n0xC9AD\t0xD1AC\n0xC9AE\t0xD1AD\n0xC9AF\t0xD1AE\n0xC9B0\t0xD1AF\n0xC9B1\t0xD1B0\n0xC9B3\t0xD1B1\n0xC9B4\t0xD1B2\n0xC9B5\t0xD1B3\n0xC9B6\t0xD1B4\n0xC9B7\t0xD1B5\n0xC9B8\t0xD1B6\n0xC9B9\t0xD1B7\n0xC9BA\t0xD1B8\n0xC9BB\t0xD1B9\n0xC9BC\t0xD1BA\n0xC9BD\t0xD1BB\n0xC9C1\t0xD1BC\n0xC9C2\t0xD1BD\n0xC9C3\t0xD1BE\n0xC9C4\t0xD1BF\n0xC9C5\t0xD1C0\n0xC9C6\t0xD1C1\n0xC9C7\t0xD1C2\n0xC9C8\t0xD1C3\n0xC9C9\t0xD1C4\n0xC9CA\t0xD1C5\n0xC9CB\t0xD1C6\n0xC9CC\t0xD1C7\n0xC9CD\t0xD1C8\n0xC9CE\t0xD1C9\n0xC9CF\t0xD1CA\n0xC9D0\t0xD1CB\n0xC9D1\t0xD1CC\n0xC9D3\t0xD1CD\n0xC9D4\t0xD1CE\n0xC9D5\t0xD1CF\n0xC9D6\t0xD1D0\n0xC9D7\t0xD1D1\n0xC9D8\t0xD1D2\n0xC9D9\t0xD1D3\n0xC9DA\t0xD1D4\n0xC9DB\t0xD1D5\n0xC9DC\t0xD1D6\n0xC9DD\t0xD1D7\n0xC9E1\t0xD1D8\n0xC9E2\t0xD1D9\n0xC9E3\t0xD1DA\n0xC9E4\t0xD1DB\n0xC9E5\t0xD1DC\n0xC9E6\t0xD1DD\n0xC9E7\t0xD1DE\n0xC9E8\t0xD1DF\n0xC9E9\t0xD1E0\n0xC9EA\t0xD1E1\n0xC9EB\t0xD1E2\n0xC9EC\t0xD1E3\n0xC9ED\t0xD1E4\n0xC9EE\t0xD1E5\n0xC9EF\t0xD1E6\n0xC9F0\t0xD1E7\n0xC9F1\t0xD1E8\n0xC9F3\t0xD1E9\n0xC9F4\t0xD1EA\n0xC9F5\t0xD1EB\n0xC9F6\t0xD1EC\n0xC9F7\t0xD1ED\n0xC9F8\t0xD1EE\n0xC9F9\t0xD1EF\n0xC9FA\t0xD1F0\n0xC9FB\t0xD1F1\n0xC9FC\t0xD1F2\n0xC9FD\t0xD1F3\n0xCA41\t0xD1F4\n0xCA42\t0xD1F5\n0xCA43\t0xD1F6\n0xCA44\t0xD1F7\n0xCA45\t0xD1F8\n0xCA46\t0xD1F9\n0xCA47\t0xD1FA\n0xCA48\t0xD1FB\n0xCA49\t0xD1FC\n0xCA4A\t0xD1FD\n0xCA4B\t0xD1FE\n0xCA4C\t0xD1FF\n0xCA4D\t0xD200\n0xCA4E\t0xD201\n0xCA4F\t0xD202\n0xCA50\t0xD203\n0xCA51\t0xD204\n0xCA53\t0xD205\n0xCA54\t0xD206\n0xCA55\t0xD207\n0xCA56\t0xD208\n0xCA57\t0xD209\n0xCA58\t0xD20A\n0xCA59\t0xD20B\n0xCA5A\t0xD20C\n0xCA5B\t0xD20D\n0xCA5C\t0xD20E\n0xCA5D\t0xD20F\n0xCA61\t0xD210\n0xCA62\t0xD211\n0xCA63\t0xD212\n0xCA64\t0xD213\n0xCA65\t0xD214\n0xCA66\t0xD215\n0xCA67\t0xD216\n0xCA68\t0xD217\n0xCA69\t0xD218\n0xCA6A\t0xD219\n0xCA6B\t0xD21A\n0xCA6C\t0xD21B\n0xCA6D\t0xD21C\n0xCA6E\t0xD21D\n0xCA6F\t0xD21E\n0xCA70\t0xD21F\n0xCA71\t0xD220\n0xCA73\t0xD221\n0xCA74\t0xD222\n0xCA75\t0xD223\n0xCA76\t0xD224\n0xCA77\t0xD225\n0xCA78\t0xD226\n0xCA79\t0xD227\n0xCA7A\t0xD228\n0xCA7B\t0xD229\n0xCA7C\t0xD22A\n0xCA7D\t0xD22B\n0xCA81\t0xD22C\n0xCA82\t0xD22D\n0xCA83\t0xD22E\n0xCA84\t0xD22F\n0xCA85\t0xD230\n0xCA86\t0xD231\n0xCA87\t0xD232\n0xCA88\t0xD233\n0xCA89\t0xD234\n0xCA8A\t0xD235\n0xCA8B\t0xD236\n0xCA8C\t0xD237\n0xCA8D\t0xD238\n0xCA8E\t0xD239\n0xCA8F\t0xD23A\n0xCA90\t0xD23B\n0xCA91\t0xD23C\n0xCA93\t0xD23D\n0xCA94\t0xD23E\n0xCA95\t0xD23F\n0xCA96\t0xD240\n0xCA97\t0xD241\n0xCA98\t0xD242\n0xCA99\t0xD243\n0xCA9A\t0xD244\n0xCA9B\t0xD245\n0xCA9C\t0xD246\n0xCA9D\t0xD247\n0xCAA1\t0xD248\n0xCAA2\t0xD249\n0xCAA3\t0xD24A\n0xCAA4\t0xD24B\n0xCAA5\t0xD24C\n0xCAA6\t0xD24D\n0xCAA7\t0xD24E\n0xCAA8\t0xD24F\n0xCAA9\t0xD250\n0xCAAA\t0xD251\n0xCAAB\t0xD252\n0xCAAC\t0xD253\n0xCAAD\t0xD254\n0xCAAE\t0xD255\n0xCAAF\t0xD256\n0xCAB0\t0xD257\n0xCAB1\t0xD258\n0xCAB3\t0xD259\n0xCAB4\t0xD25A\n0xCAB5\t0xD25B\n0xCAB6\t0xD25C\n0xCAB7\t0xD25D\n0xCAB8\t0xD25E\n0xCAB9\t0xD25F\n0xCABA\t0xD260\n0xCABB\t0xD261\n0xCABC\t0xD262\n0xCABD\t0xD263\n0xCAC1\t0xD264\n0xCAC2\t0xD265\n0xCAC3\t0xD266\n0xCAC4\t0xD267\n0xCAC5\t0xD268\n0xCAC6\t0xD269\n0xCAC7\t0xD26A\n0xCAC8\t0xD26B\n0xCAC9\t0xD26C\n0xCACA\t0xD26D\n0xCACB\t0xD26E\n0xCACC\t0xD26F\n0xCACD\t0xD270\n0xCACE\t0xD271\n0xCACF\t0xD272\n0xCAD0\t0xD273\n0xCAD1\t0xD274\n0xCAD3\t0xD275\n0xCAD4\t0xD276\n0xCAD5\t0xD277\n0xCAD6\t0xD278\n0xCAD7\t0xD279\n0xCAD8\t0xD27A\n0xCAD9\t0xD27B\n0xCADA\t0xD27C\n0xCADB\t0xD27D\n0xCADC\t0xD27E\n0xCADD\t0xD27F\n0xCAE1\t0xD280\n0xCAE2\t0xD281\n0xCAE3\t0xD282\n0xCAE4\t0xD283\n0xCAE5\t0xD284\n0xCAE6\t0xD285\n0xCAE7\t0xD286\n0xCAE8\t0xD287\n0xCAE9\t0xD288\n0xCAEA\t0xD289\n0xCAEB\t0xD28A\n0xCAEC\t0xD28B\n0xCAED\t0xD28C\n0xCAEE\t0xD28D\n0xCAEF\t0xD28E\n0xCAF0\t0xD28F\n0xCAF1\t0xD290\n0xCAF3\t0xD291\n0xCAF4\t0xD292\n0xCAF5\t0xD293\n0xCAF6\t0xD294\n0xCAF7\t0xD295\n0xCAF8\t0xD296\n0xCAF9\t0xD297\n0xCAFA\t0xD298\n0xCAFB\t0xD299\n0xCAFC\t0xD29A\n0xCAFD\t0xD29B\n0xCB41\t0xD29C\n0xCB42\t0xD29D\n0xCB43\t0xD29E\n0xCB44\t0xD29F\n0xCB45\t0xD2A0\n0xCB46\t0xD2A1\n0xCB47\t0xD2A2\n0xCB48\t0xD2A3\n0xCB49\t0xD2A4\n0xCB4A\t0xD2A5\n0xCB4B\t0xD2A6\n0xCB4C\t0xD2A7\n0xCB4D\t0xD2A8\n0xCB4E\t0xD2A9\n0xCB4F\t0xD2AA\n0xCB50\t0xD2AB\n0xCB51\t0xD2AC\n0xCB53\t0xD2AD\n0xCB54\t0xD2AE\n0xCB55\t0xD2AF\n0xCB56\t0xD2B0\n0xCB57\t0xD2B1\n0xCB58\t0xD2B2\n0xCB59\t0xD2B3\n0xCB5A\t0xD2B4\n0xCB5B\t0xD2B5\n0xCB5C\t0xD2B6\n0xCB5D\t0xD2B7\n0xCB61\t0xD2B8\n0xCB62\t0xD2B9\n0xCB63\t0xD2BA\n0xCB64\t0xD2BB\n0xCB65\t0xD2BC\n0xCB66\t0xD2BD\n0xCB67\t0xD2BE\n0xCB68\t0xD2BF\n0xCB69\t0xD2C0\n0xCB6A\t0xD2C1\n0xCB6B\t0xD2C2\n0xCB6C\t0xD2C3\n0xCB6D\t0xD2C4\n0xCB6E\t0xD2C5\n0xCB6F\t0xD2C6\n0xCB70\t0xD2C7\n0xCB71\t0xD2C8\n0xCB73\t0xD2C9\n0xCB74\t0xD2CA\n0xCB75\t0xD2CB\n0xCB76\t0xD2CC\n0xCB77\t0xD2CD\n0xCB78\t0xD2CE\n0xCB79\t0xD2CF\n0xCB7A\t0xD2D0\n0xCB7B\t0xD2D1\n0xCB7C\t0xD2D2\n0xCB7D\t0xD2D3\n0xCB81\t0xD2D4\n0xCB82\t0xD2D5\n0xCB83\t0xD2D6\n0xCB84\t0xD2D7\n0xCB85\t0xD2D8\n0xCB86\t0xD2D9\n0xCB87\t0xD2DA\n0xCB88\t0xD2DB\n0xCB89\t0xD2DC\n0xCB8A\t0xD2DD\n0xCB8B\t0xD2DE\n0xCB8C\t0xD2DF\n0xCB8D\t0xD2E0\n0xCB8E\t0xD2E1\n0xCB8F\t0xD2E2\n0xCB90\t0xD2E3\n0xCB91\t0xD2E4\n0xCB93\t0xD2E5\n0xCB94\t0xD2E6\n0xCB95\t0xD2E7\n0xCB96\t0xD2E8\n0xCB97\t0xD2E9\n0xCB98\t0xD2EA\n0xCB99\t0xD2EB\n0xCB9A\t0xD2EC\n0xCB9B\t0xD2ED\n0xCB9C\t0xD2EE\n0xCB9D\t0xD2EF\n0xCBA1\t0xD2F0\n0xCBA2\t0xD2F1\n0xCBA3\t0xD2F2\n0xCBA4\t0xD2F3\n0xCBA5\t0xD2F4\n0xCBA6\t0xD2F5\n0xCBA7\t0xD2F6\n0xCBA8\t0xD2F7\n0xCBA9\t0xD2F8\n0xCBAA\t0xD2F9\n0xCBAB\t0xD2FA\n0xCBAC\t0xD2FB\n0xCBAD\t0xD2FC\n0xCBAE\t0xD2FD\n0xCBAF\t0xD2FE\n0xCBB0\t0xD2FF\n0xCBB1\t0xD300\n0xCBB3\t0xD301\n0xCBB4\t0xD302\n0xCBB5\t0xD303\n0xCBB6\t0xD304\n0xCBB7\t0xD305\n0xCBB8\t0xD306\n0xCBB9\t0xD307\n0xCBBA\t0xD308\n0xCBBB\t0xD309\n0xCBBC\t0xD30A\n0xCBBD\t0xD30B\n0xCC41\t0x314D\n0xCC61\t0xD30C\n0xCC62\t0xD30D\n0xCC63\t0xD30E\n0xCC64\t0xD30F\n0xCC65\t0xD310\n0xCC66\t0xD311\n0xCC67\t0xD312\n0xCC68\t0xD313\n0xCC69\t0xD314\n0xCC6A\t0xD315\n0xCC6B\t0xD316\n0xCC6C\t0xD317\n0xCC6D\t0xD318\n0xCC6E\t0xD319\n0xCC6F\t0xD31A\n0xCC70\t0xD31B\n0xCC71\t0xD31C\n0xCC73\t0xD31D\n0xCC74\t0xD31E\n0xCC75\t0xD31F\n0xCC76\t0xD320\n0xCC77\t0xD321\n0xCC78\t0xD322\n0xCC79\t0xD323\n0xCC7A\t0xD324\n0xCC7B\t0xD325\n0xCC7C\t0xD326\n0xCC7D\t0xD327\n0xCC81\t0xD328\n0xCC82\t0xD329\n0xCC83\t0xD32A\n0xCC84\t0xD32B\n0xCC85\t0xD32C\n0xCC86\t0xD32D\n0xCC87\t0xD32E\n0xCC88\t0xD32F\n0xCC89\t0xD330\n0xCC8A\t0xD331\n0xCC8B\t0xD332\n0xCC8C\t0xD333\n0xCC8D\t0xD334\n0xCC8E\t0xD335\n0xCC8F\t0xD336\n0xCC90\t0xD337\n0xCC91\t0xD338\n0xCC93\t0xD339\n0xCC94\t0xD33A\n0xCC95\t0xD33B\n0xCC96\t0xD33C\n0xCC97\t0xD33D\n0xCC98\t0xD33E\n0xCC99\t0xD33F\n0xCC9A\t0xD340\n0xCC9B\t0xD341\n0xCC9C\t0xD342\n0xCC9D\t0xD343\n0xCCA1\t0xD344\n0xCCA2\t0xD345\n0xCCA3\t0xD346\n0xCCA4\t0xD347\n0xCCA5\t0xD348\n0xCCA6\t0xD349\n0xCCA7\t0xD34A\n0xCCA8\t0xD34B\n0xCCA9\t0xD34C\n0xCCAA\t0xD34D\n0xCCAB\t0xD34E\n0xCCAC\t0xD34F\n0xCCAD\t0xD350\n0xCCAE\t0xD351\n0xCCAF\t0xD352\n0xCCB0\t0xD353\n0xCCB1\t0xD354\n0xCCB3\t0xD355\n0xCCB4\t0xD356\n0xCCB5\t0xD357\n0xCCB6\t0xD358\n0xCCB7\t0xD359\n0xCCB8\t0xD35A\n0xCCB9\t0xD35B\n0xCCBA\t0xD35C\n0xCCBB\t0xD35D\n0xCCBC\t0xD35E\n0xCCBD\t0xD35F\n0xCCC1\t0xD360\n0xCCC2\t0xD361\n0xCCC3\t0xD362\n0xCCC4\t0xD363\n0xCCC5\t0xD364\n0xCCC6\t0xD365\n0xCCC7\t0xD366\n0xCCC8\t0xD367\n0xCCC9\t0xD368\n0xCCCA\t0xD369\n0xCCCB\t0xD36A\n0xCCCC\t0xD36B\n0xCCCD\t0xD36C\n0xCCCE\t0xD36D\n0xCCCF\t0xD36E\n0xCCD0\t0xD36F\n0xCCD1\t0xD370\n0xCCD3\t0xD371\n0xCCD4\t0xD372\n0xCCD5\t0xD373\n0xCCD6\t0xD374\n0xCCD7\t0xD375\n0xCCD8\t0xD376\n0xCCD9\t0xD377\n0xCCDA\t0xD378\n0xCCDB\t0xD379\n0xCCDC\t0xD37A\n0xCCDD\t0xD37B\n0xCCE1\t0xD37C\n0xCCE2\t0xD37D\n0xCCE3\t0xD37E\n0xCCE4\t0xD37F\n0xCCE5\t0xD380\n0xCCE6\t0xD381\n0xCCE7\t0xD382\n0xCCE8\t0xD383\n0xCCE9\t0xD384\n0xCCEA\t0xD385\n0xCCEB\t0xD386\n0xCCEC\t0xD387\n0xCCED\t0xD388\n0xCCEE\t0xD389\n0xCCEF\t0xD38A\n0xCCF0\t0xD38B\n0xCCF1\t0xD38C\n0xCCF3\t0xD38D\n0xCCF4\t0xD38E\n0xCCF5\t0xD38F\n0xCCF6\t0xD390\n0xCCF7\t0xD391\n0xCCF8\t0xD392\n0xCCF9\t0xD393\n0xCCFA\t0xD394\n0xCCFB\t0xD395\n0xCCFC\t0xD396\n0xCCFD\t0xD397\n0xCD41\t0xD398\n0xCD42\t0xD399\n0xCD43\t0xD39A\n0xCD44\t0xD39B\n0xCD45\t0xD39C\n0xCD46\t0xD39D\n0xCD47\t0xD39E\n0xCD48\t0xD39F\n0xCD49\t0xD3A0\n0xCD4A\t0xD3A1\n0xCD4B\t0xD3A2\n0xCD4C\t0xD3A3\n0xCD4D\t0xD3A4\n0xCD4E\t0xD3A5\n0xCD4F\t0xD3A6\n0xCD50\t0xD3A7\n0xCD51\t0xD3A8\n0xCD53\t0xD3A9\n0xCD54\t0xD3AA\n0xCD55\t0xD3AB\n0xCD56\t0xD3AC\n0xCD57\t0xD3AD\n0xCD58\t0xD3AE\n0xCD59\t0xD3AF\n0xCD5A\t0xD3B0\n0xCD5B\t0xD3B1\n0xCD5C\t0xD3B2\n0xCD5D\t0xD3B3\n0xCD61\t0xD3B4\n0xCD62\t0xD3B5\n0xCD63\t0xD3B6\n0xCD64\t0xD3B7\n0xCD65\t0xD3B8\n0xCD66\t0xD3B9\n0xCD67\t0xD3BA\n0xCD68\t0xD3BB\n0xCD69\t0xD3BC\n0xCD6A\t0xD3BD\n0xCD6B\t0xD3BE\n0xCD6C\t0xD3BF\n0xCD6D\t0xD3C0\n0xCD6E\t0xD3C1\n0xCD6F\t0xD3C2\n0xCD70\t0xD3C3\n0xCD71\t0xD3C4\n0xCD73\t0xD3C5\n0xCD74\t0xD3C6\n0xCD75\t0xD3C7\n0xCD76\t0xD3C8\n0xCD77\t0xD3C9\n0xCD78\t0xD3CA\n0xCD79\t0xD3CB\n0xCD7A\t0xD3CC\n0xCD7B\t0xD3CD\n0xCD7C\t0xD3CE\n0xCD7D\t0xD3CF\n0xCD81\t0xD3D0\n0xCD82\t0xD3D1\n0xCD83\t0xD3D2\n0xCD84\t0xD3D3\n0xCD85\t0xD3D4\n0xCD86\t0xD3D5\n0xCD87\t0xD3D6\n0xCD88\t0xD3D7\n0xCD89\t0xD3D8\n0xCD8A\t0xD3D9\n0xCD8B\t0xD3DA\n0xCD8C\t0xD3DB\n0xCD8D\t0xD3DC\n0xCD8E\t0xD3DD\n0xCD8F\t0xD3DE\n0xCD90\t0xD3DF\n0xCD91\t0xD3E0\n0xCD93\t0xD3E1\n0xCD94\t0xD3E2\n0xCD95\t0xD3E3\n0xCD96\t0xD3E4\n0xCD97\t0xD3E5\n0xCD98\t0xD3E6\n0xCD99\t0xD3E7\n0xCD9A\t0xD3E8\n0xCD9B\t0xD3E9\n0xCD9C\t0xD3EA\n0xCD9D\t0xD3EB\n0xCDA1\t0xD3EC\n0xCDA2\t0xD3ED\n0xCDA3\t0xD3EE\n0xCDA4\t0xD3EF\n0xCDA5\t0xD3F0\n0xCDA6\t0xD3F1\n0xCDA7\t0xD3F2\n0xCDA8\t0xD3F3\n0xCDA9\t0xD3F4\n0xCDAA\t0xD3F5\n0xCDAB\t0xD3F6\n0xCDAC\t0xD3F7\n0xCDAD\t0xD3F8\n0xCDAE\t0xD3F9\n0xCDAF\t0xD3FA\n0xCDB0\t0xD3FB\n0xCDB1\t0xD3FC\n0xCDB3\t0xD3FD\n0xCDB4\t0xD3FE\n0xCDB5\t0xD3FF\n0xCDB6\t0xD400\n0xCDB7\t0xD401\n0xCDB8\t0xD402\n0xCDB9\t0xD403\n0xCDBA\t0xD404\n0xCDBB\t0xD405\n0xCDBC\t0xD406\n0xCDBD\t0xD407\n0xCDC1\t0xD408\n0xCDC2\t0xD409\n0xCDC3\t0xD40A\n0xCDC4\t0xD40B\n0xCDC5\t0xD40C\n0xCDC6\t0xD40D\n0xCDC7\t0xD40E\n0xCDC8\t0xD40F\n0xCDC9\t0xD410\n0xCDCA\t0xD411\n0xCDCB\t0xD412\n0xCDCC\t0xD413\n0xCDCD\t0xD414\n0xCDCE\t0xD415\n0xCDCF\t0xD416\n0xCDD0\t0xD417\n0xCDD1\t0xD418\n0xCDD3\t0xD419\n0xCDD4\t0xD41A\n0xCDD5\t0xD41B\n0xCDD6\t0xD41C\n0xCDD7\t0xD41D\n0xCDD8\t0xD41E\n0xCDD9\t0xD41F\n0xCDDA\t0xD420\n0xCDDB\t0xD421\n0xCDDC\t0xD422\n0xCDDD\t0xD423\n0xCDE1\t0xD424\n0xCDE2\t0xD425\n0xCDE3\t0xD426\n0xCDE4\t0xD427\n0xCDE5\t0xD428\n0xCDE6\t0xD429\n0xCDE7\t0xD42A\n0xCDE8\t0xD42B\n0xCDE9\t0xD42C\n0xCDEA\t0xD42D\n0xCDEB\t0xD42E\n0xCDEC\t0xD42F\n0xCDED\t0xD430\n0xCDEE\t0xD431\n0xCDEF\t0xD432\n0xCDF0\t0xD433\n0xCDF1\t0xD434\n0xCDF3\t0xD435\n0xCDF4\t0xD436\n0xCDF5\t0xD437\n0xCDF6\t0xD438\n0xCDF7\t0xD439\n0xCDF8\t0xD43A\n0xCDF9\t0xD43B\n0xCDFA\t0xD43C\n0xCDFB\t0xD43D\n0xCDFC\t0xD43E\n0xCDFD\t0xD43F\n0xCE41\t0xD440\n0xCE42\t0xD441\n0xCE43\t0xD442\n0xCE44\t0xD443\n0xCE45\t0xD444\n0xCE46\t0xD445\n0xCE47\t0xD446\n0xCE48\t0xD447\n0xCE49\t0xD448\n0xCE4A\t0xD449\n0xCE4B\t0xD44A\n0xCE4C\t0xD44B\n0xCE4D\t0xD44C\n0xCE4E\t0xD44D\n0xCE4F\t0xD44E\n0xCE50\t0xD44F\n0xCE51\t0xD450\n0xCE53\t0xD451\n0xCE54\t0xD452\n0xCE55\t0xD453\n0xCE56\t0xD454\n0xCE57\t0xD455\n0xCE58\t0xD456\n0xCE59\t0xD457\n0xCE5A\t0xD458\n0xCE5B\t0xD459\n0xCE5C\t0xD45A\n0xCE5D\t0xD45B\n0xCE61\t0xD45C\n0xCE62\t0xD45D\n0xCE63\t0xD45E\n0xCE64\t0xD45F\n0xCE65\t0xD460\n0xCE66\t0xD461\n0xCE67\t0xD462\n0xCE68\t0xD463\n0xCE69\t0xD464\n0xCE6A\t0xD465\n0xCE6B\t0xD466\n0xCE6C\t0xD467\n0xCE6D\t0xD468\n0xCE6E\t0xD469\n0xCE6F\t0xD46A\n0xCE70\t0xD46B\n0xCE71\t0xD46C\n0xCE73\t0xD46D\n0xCE74\t0xD46E\n0xCE75\t0xD46F\n0xCE76\t0xD470\n0xCE77\t0xD471\n0xCE78\t0xD472\n0xCE79\t0xD473\n0xCE7A\t0xD474\n0xCE7B\t0xD475\n0xCE7C\t0xD476\n0xCE7D\t0xD477\n0xCE81\t0xD478\n0xCE82\t0xD479\n0xCE83\t0xD47A\n0xCE84\t0xD47B\n0xCE85\t0xD47C\n0xCE86\t0xD47D\n0xCE87\t0xD47E\n0xCE88\t0xD47F\n0xCE89\t0xD480\n0xCE8A\t0xD481\n0xCE8B\t0xD482\n0xCE8C\t0xD483\n0xCE8D\t0xD484\n0xCE8E\t0xD485\n0xCE8F\t0xD486\n0xCE90\t0xD487\n0xCE91\t0xD488\n0xCE93\t0xD489\n0xCE94\t0xD48A\n0xCE95\t0xD48B\n0xCE96\t0xD48C\n0xCE97\t0xD48D\n0xCE98\t0xD48E\n0xCE99\t0xD48F\n0xCE9A\t0xD490\n0xCE9B\t0xD491\n0xCE9C\t0xD492\n0xCE9D\t0xD493\n0xCEA1\t0xD494\n0xCEA2\t0xD495\n0xCEA3\t0xD496\n0xCEA4\t0xD497\n0xCEA5\t0xD498\n0xCEA6\t0xD499\n0xCEA7\t0xD49A\n0xCEA8\t0xD49B\n0xCEA9\t0xD49C\n0xCEAA\t0xD49D\n0xCEAB\t0xD49E\n0xCEAC\t0xD49F\n0xCEAD\t0xD4A0\n0xCEAE\t0xD4A1\n0xCEAF\t0xD4A2\n0xCEB0\t0xD4A3\n0xCEB1\t0xD4A4\n0xCEB3\t0xD4A5\n0xCEB4\t0xD4A6\n0xCEB5\t0xD4A7\n0xCEB6\t0xD4A8\n0xCEB7\t0xD4A9\n0xCEB8\t0xD4AA\n0xCEB9\t0xD4AB\n0xCEBA\t0xD4AC\n0xCEBB\t0xD4AD\n0xCEBC\t0xD4AE\n0xCEBD\t0xD4AF\n0xCEC1\t0xD4B0\n0xCEC2\t0xD4B1\n0xCEC3\t0xD4B2\n0xCEC4\t0xD4B3\n0xCEC5\t0xD4B4\n0xCEC6\t0xD4B5\n0xCEC7\t0xD4B6\n0xCEC8\t0xD4B7\n0xCEC9\t0xD4B8\n0xCECA\t0xD4B9\n0xCECB\t0xD4BA\n0xCECC\t0xD4BB\n0xCECD\t0xD4BC\n0xCECE\t0xD4BD\n0xCECF\t0xD4BE\n0xCED0\t0xD4BF\n0xCED1\t0xD4C0\n0xCED3\t0xD4C1\n0xCED4\t0xD4C2\n0xCED5\t0xD4C3\n0xCED6\t0xD4C4\n0xCED7\t0xD4C5\n0xCED8\t0xD4C6\n0xCED9\t0xD4C7\n0xCEDA\t0xD4C8\n0xCEDB\t0xD4C9\n0xCEDC\t0xD4CA\n0xCEDD\t0xD4CB\n0xCEE1\t0xD4CC\n0xCEE2\t0xD4CD\n0xCEE3\t0xD4CE\n0xCEE4\t0xD4CF\n0xCEE5\t0xD4D0\n0xCEE6\t0xD4D1\n0xCEE7\t0xD4D2\n0xCEE8\t0xD4D3\n0xCEE9\t0xD4D4\n0xCEEA\t0xD4D5\n0xCEEB\t0xD4D6\n0xCEEC\t0xD4D7\n0xCEED\t0xD4D8\n0xCEEE\t0xD4D9\n0xCEEF\t0xD4DA\n0xCEF0\t0xD4DB\n0xCEF1\t0xD4DC\n0xCEF3\t0xD4DD\n0xCEF4\t0xD4DE\n0xCEF5\t0xD4DF\n0xCEF6\t0xD4E0\n0xCEF7\t0xD4E1\n0xCEF8\t0xD4E2\n0xCEF9\t0xD4E3\n0xCEFA\t0xD4E4\n0xCEFB\t0xD4E5\n0xCEFC\t0xD4E6\n0xCEFD\t0xD4E7\n0xCF41\t0xD4E8\n0xCF42\t0xD4E9\n0xCF43\t0xD4EA\n0xCF44\t0xD4EB\n0xCF45\t0xD4EC\n0xCF46\t0xD4ED\n0xCF47\t0xD4EE\n0xCF48\t0xD4EF\n0xCF49\t0xD4F0\n0xCF4A\t0xD4F1\n0xCF4B\t0xD4F2\n0xCF4C\t0xD4F3\n0xCF4D\t0xD4F4\n0xCF4E\t0xD4F5\n0xCF4F\t0xD4F6\n0xCF50\t0xD4F7\n0xCF51\t0xD4F8\n0xCF53\t0xD4F9\n0xCF54\t0xD4FA\n0xCF55\t0xD4FB\n0xCF56\t0xD4FC\n0xCF57\t0xD4FD\n0xCF58\t0xD4FE\n0xCF59\t0xD4FF\n0xCF5A\t0xD500\n0xCF5B\t0xD501\n0xCF5C\t0xD502\n0xCF5D\t0xD503\n0xCF61\t0xD504\n0xCF62\t0xD505\n0xCF63\t0xD506\n0xCF64\t0xD507\n0xCF65\t0xD508\n0xCF66\t0xD509\n0xCF67\t0xD50A\n0xCF68\t0xD50B\n0xCF69\t0xD50C\n0xCF6A\t0xD50D\n0xCF6B\t0xD50E\n0xCF6C\t0xD50F\n0xCF6D\t0xD510\n0xCF6E\t0xD511\n0xCF6F\t0xD512\n0xCF70\t0xD513\n0xCF71\t0xD514\n0xCF73\t0xD515\n0xCF74\t0xD516\n0xCF75\t0xD517\n0xCF76\t0xD518\n0xCF77\t0xD519\n0xCF78\t0xD51A\n0xCF79\t0xD51B\n0xCF7A\t0xD51C\n0xCF7B\t0xD51D\n0xCF7C\t0xD51E\n0xCF7D\t0xD51F\n0xCF81\t0xD520\n0xCF82\t0xD521\n0xCF83\t0xD522\n0xCF84\t0xD523\n0xCF85\t0xD524\n0xCF86\t0xD525\n0xCF87\t0xD526\n0xCF88\t0xD527\n0xCF89\t0xD528\n0xCF8A\t0xD529\n0xCF8B\t0xD52A\n0xCF8C\t0xD52B\n0xCF8D\t0xD52C\n0xCF8E\t0xD52D\n0xCF8F\t0xD52E\n0xCF90\t0xD52F\n0xCF91\t0xD530\n0xCF93\t0xD531\n0xCF94\t0xD532\n0xCF95\t0xD533\n0xCF96\t0xD534\n0xCF97\t0xD535\n0xCF98\t0xD536\n0xCF99\t0xD537\n0xCF9A\t0xD538\n0xCF9B\t0xD539\n0xCF9C\t0xD53A\n0xCF9D\t0xD53B\n0xCFA1\t0xD53C\n0xCFA2\t0xD53D\n0xCFA3\t0xD53E\n0xCFA4\t0xD53F\n0xCFA5\t0xD540\n0xCFA6\t0xD541\n0xCFA7\t0xD542\n0xCFA8\t0xD543\n0xCFA9\t0xD544\n0xCFAA\t0xD545\n0xCFAB\t0xD546\n0xCFAC\t0xD547\n0xCFAD\t0xD548\n0xCFAE\t0xD549\n0xCFAF\t0xD54A\n0xCFB0\t0xD54B\n0xCFB1\t0xD54C\n0xCFB3\t0xD54D\n0xCFB4\t0xD54E\n0xCFB5\t0xD54F\n0xCFB6\t0xD550\n0xCFB7\t0xD551\n0xCFB8\t0xD552\n0xCFB9\t0xD553\n0xCFBA\t0xD554\n0xCFBB\t0xD555\n0xCFBC\t0xD556\n0xCFBD\t0xD557\n0xD041\t0x314E\n0xD061\t0xD558\n0xD062\t0xD559\n0xD063\t0xD55A\n0xD064\t0xD55B\n0xD065\t0xD55C\n0xD066\t0xD55D\n0xD067\t0xD55E\n0xD068\t0xD55F\n0xD069\t0xD560\n0xD06A\t0xD561\n0xD06B\t0xD562\n0xD06C\t0xD563\n0xD06D\t0xD564\n0xD06E\t0xD565\n0xD06F\t0xD566\n0xD070\t0xD567\n0xD071\t0xD568\n0xD073\t0xD569\n0xD074\t0xD56A\n0xD075\t0xD56B\n0xD076\t0xD56C\n0xD077\t0xD56D\n0xD078\t0xD56E\n0xD079\t0xD56F\n0xD07A\t0xD570\n0xD07B\t0xD571\n0xD07C\t0xD572\n0xD07D\t0xD573\n0xD081\t0xD574\n0xD082\t0xD575\n0xD083\t0xD576\n0xD084\t0xD577\n0xD085\t0xD578\n0xD086\t0xD579\n0xD087\t0xD57A\n0xD088\t0xD57B\n0xD089\t0xD57C\n0xD08A\t0xD57D\n0xD08B\t0xD57E\n0xD08C\t0xD57F\n0xD08D\t0xD580\n0xD08E\t0xD581\n0xD08F\t0xD582\n0xD090\t0xD583\n0xD091\t0xD584\n0xD093\t0xD585\n0xD094\t0xD586\n0xD095\t0xD587\n0xD096\t0xD588\n0xD097\t0xD589\n0xD098\t0xD58A\n0xD099\t0xD58B\n0xD09A\t0xD58C\n0xD09B\t0xD58D\n0xD09C\t0xD58E\n0xD09D\t0xD58F\n0xD0A1\t0xD590\n0xD0A2\t0xD591\n0xD0A3\t0xD592\n0xD0A4\t0xD593\n0xD0A5\t0xD594\n0xD0A6\t0xD595\n0xD0A7\t0xD596\n0xD0A8\t0xD597\n0xD0A9\t0xD598\n0xD0AA\t0xD599\n0xD0AB\t0xD59A\n0xD0AC\t0xD59B\n0xD0AD\t0xD59C\n0xD0AE\t0xD59D\n0xD0AF\t0xD59E\n0xD0B0\t0xD59F\n0xD0B1\t0xD5A0\n0xD0B3\t0xD5A1\n0xD0B4\t0xD5A2\n0xD0B5\t0xD5A3\n0xD0B6\t0xD5A4\n0xD0B7\t0xD5A5\n0xD0B8\t0xD5A6\n0xD0B9\t0xD5A7\n0xD0BA\t0xD5A8\n0xD0BB\t0xD5A9\n0xD0BC\t0xD5AA\n0xD0BD\t0xD5AB\n0xD0C1\t0xD5AC\n0xD0C2\t0xD5AD\n0xD0C3\t0xD5AE\n0xD0C4\t0xD5AF\n0xD0C5\t0xD5B0\n0xD0C6\t0xD5B1\n0xD0C7\t0xD5B2\n0xD0C8\t0xD5B3\n0xD0C9\t0xD5B4\n0xD0CA\t0xD5B5\n0xD0CB\t0xD5B6\n0xD0CC\t0xD5B7\n0xD0CD\t0xD5B8\n0xD0CE\t0xD5B9\n0xD0CF\t0xD5BA\n0xD0D0\t0xD5BB\n0xD0D1\t0xD5BC\n0xD0D3\t0xD5BD\n0xD0D4\t0xD5BE\n0xD0D5\t0xD5BF\n0xD0D6\t0xD5C0\n0xD0D7\t0xD5C1\n0xD0D8\t0xD5C2\n0xD0D9\t0xD5C3\n0xD0DA\t0xD5C4\n0xD0DB\t0xD5C5\n0xD0DC\t0xD5C6\n0xD0DD\t0xD5C7\n0xD0E1\t0xD5C8\n0xD0E2\t0xD5C9\n0xD0E3\t0xD5CA\n0xD0E4\t0xD5CB\n0xD0E5\t0xD5CC\n0xD0E6\t0xD5CD\n0xD0E7\t0xD5CE\n0xD0E8\t0xD5CF\n0xD0E9\t0xD5D0\n0xD0EA\t0xD5D1\n0xD0EB\t0xD5D2\n0xD0EC\t0xD5D3\n0xD0ED\t0xD5D4\n0xD0EE\t0xD5D5\n0xD0EF\t0xD5D6\n0xD0F0\t0xD5D7\n0xD0F1\t0xD5D8\n0xD0F3\t0xD5D9\n0xD0F4\t0xD5DA\n0xD0F5\t0xD5DB\n0xD0F6\t0xD5DC\n0xD0F7\t0xD5DD\n0xD0F8\t0xD5DE\n0xD0F9\t0xD5DF\n0xD0FA\t0xD5E0\n0xD0FB\t0xD5E1\n0xD0FC\t0xD5E2\n0xD0FD\t0xD5E3\n0xD141\t0xD5E4\n0xD142\t0xD5E5\n0xD143\t0xD5E6\n0xD144\t0xD5E7\n0xD145\t0xD5E8\n0xD146\t0xD5E9\n0xD147\t0xD5EA\n0xD148\t0xD5EB\n0xD149\t0xD5EC\n0xD14A\t0xD5ED\n0xD14B\t0xD5EE\n0xD14C\t0xD5EF\n0xD14D\t0xD5F0\n0xD14E\t0xD5F1\n0xD14F\t0xD5F2\n0xD150\t0xD5F3\n0xD151\t0xD5F4\n0xD153\t0xD5F5\n0xD154\t0xD5F6\n0xD155\t0xD5F7\n0xD156\t0xD5F8\n0xD157\t0xD5F9\n0xD158\t0xD5FA\n0xD159\t0xD5FB\n0xD15A\t0xD5FC\n0xD15B\t0xD5FD\n0xD15C\t0xD5FE\n0xD15D\t0xD5FF\n0xD161\t0xD600\n0xD162\t0xD601\n0xD163\t0xD602\n0xD164\t0xD603\n0xD165\t0xD604\n0xD166\t0xD605\n0xD167\t0xD606\n0xD168\t0xD607\n0xD169\t0xD608\n0xD16A\t0xD609\n0xD16B\t0xD60A\n0xD16C\t0xD60B\n0xD16D\t0xD60C\n0xD16E\t0xD60D\n0xD16F\t0xD60E\n0xD170\t0xD60F\n0xD171\t0xD610\n0xD173\t0xD611\n0xD174\t0xD612\n0xD175\t0xD613\n0xD176\t0xD614\n0xD177\t0xD615\n0xD178\t0xD616\n0xD179\t0xD617\n0xD17A\t0xD618\n0xD17B\t0xD619\n0xD17C\t0xD61A\n0xD17D\t0xD61B\n0xD181\t0xD61C\n0xD182\t0xD61D\n0xD183\t0xD61E\n0xD184\t0xD61F\n0xD185\t0xD620\n0xD186\t0xD621\n0xD187\t0xD622\n0xD188\t0xD623\n0xD189\t0xD624\n0xD18A\t0xD625\n0xD18B\t0xD626\n0xD18C\t0xD627\n0xD18D\t0xD628\n0xD18E\t0xD629\n0xD18F\t0xD62A\n0xD190\t0xD62B\n0xD191\t0xD62C\n0xD193\t0xD62D\n0xD194\t0xD62E\n0xD195\t0xD62F\n0xD196\t0xD630\n0xD197\t0xD631\n0xD198\t0xD632\n0xD199\t0xD633\n0xD19A\t0xD634\n0xD19B\t0xD635\n0xD19C\t0xD636\n0xD19D\t0xD637\n0xD1A1\t0xD638\n0xD1A2\t0xD639\n0xD1A3\t0xD63A\n0xD1A4\t0xD63B\n0xD1A5\t0xD63C\n0xD1A6\t0xD63D\n0xD1A7\t0xD63E\n0xD1A8\t0xD63F\n0xD1A9\t0xD640\n0xD1AA\t0xD641\n0xD1AB\t0xD642\n0xD1AC\t0xD643\n0xD1AD\t0xD644\n0xD1AE\t0xD645\n0xD1AF\t0xD646\n0xD1B0\t0xD647\n0xD1B1\t0xD648\n0xD1B3\t0xD649\n0xD1B4\t0xD64A\n0xD1B5\t0xD64B\n0xD1B6\t0xD64C\n0xD1B7\t0xD64D\n0xD1B8\t0xD64E\n0xD1B9\t0xD64F\n0xD1BA\t0xD650\n0xD1BB\t0xD651\n0xD1BC\t0xD652\n0xD1BD\t0xD653\n0xD1C1\t0xD654\n0xD1C2\t0xD655\n0xD1C3\t0xD656\n0xD1C4\t0xD657\n0xD1C5\t0xD658\n0xD1C6\t0xD659\n0xD1C7\t0xD65A\n0xD1C8\t0xD65B\n0xD1C9\t0xD65C\n0xD1CA\t0xD65D\n0xD1CB\t0xD65E\n0xD1CC\t0xD65F\n0xD1CD\t0xD660\n0xD1CE\t0xD661\n0xD1CF\t0xD662\n0xD1D0\t0xD663\n0xD1D1\t0xD664\n0xD1D3\t0xD665\n0xD1D4\t0xD666\n0xD1D5\t0xD667\n0xD1D6\t0xD668\n0xD1D7\t0xD669\n0xD1D8\t0xD66A\n0xD1D9\t0xD66B\n0xD1DA\t0xD66C\n0xD1DB\t0xD66D\n0xD1DC\t0xD66E\n0xD1DD\t0xD66F\n0xD1E1\t0xD670\n0xD1E2\t0xD671\n0xD1E3\t0xD672\n0xD1E4\t0xD673\n0xD1E5\t0xD674\n0xD1E6\t0xD675\n0xD1E7\t0xD676\n0xD1E8\t0xD677\n0xD1E9\t0xD678\n0xD1EA\t0xD679\n0xD1EB\t0xD67A\n0xD1EC\t0xD67B\n0xD1ED\t0xD67C\n0xD1EE\t0xD67D\n0xD1EF\t0xD67E\n0xD1F0\t0xD67F\n0xD1F1\t0xD680\n0xD1F3\t0xD681\n0xD1F4\t0xD682\n0xD1F5\t0xD683\n0xD1F6\t0xD684\n0xD1F7\t0xD685\n0xD1F8\t0xD686\n0xD1F9\t0xD687\n0xD1FA\t0xD688\n0xD1FB\t0xD689\n0xD1FC\t0xD68A\n0xD1FD\t0xD68B\n0xD241\t0xD68C\n0xD242\t0xD68D\n0xD243\t0xD68E\n0xD244\t0xD68F\n0xD245\t0xD690\n0xD246\t0xD691\n0xD247\t0xD692\n0xD248\t0xD693\n0xD249\t0xD694\n0xD24A\t0xD695\n0xD24B\t0xD696\n0xD24C\t0xD697\n0xD24D\t0xD698\n0xD24E\t0xD699\n0xD24F\t0xD69A\n0xD250\t0xD69B\n0xD251\t0xD69C\n0xD253\t0xD69D\n0xD254\t0xD69E\n0xD255\t0xD69F\n0xD256\t0xD6A0\n0xD257\t0xD6A1\n0xD258\t0xD6A2\n0xD259\t0xD6A3\n0xD25A\t0xD6A4\n0xD25B\t0xD6A5\n0xD25C\t0xD6A6\n0xD25D\t0xD6A7\n0xD261\t0xD6A8\n0xD262\t0xD6A9\n0xD263\t0xD6AA\n0xD264\t0xD6AB\n0xD265\t0xD6AC\n0xD266\t0xD6AD\n0xD267\t0xD6AE\n0xD268\t0xD6AF\n0xD269\t0xD6B0\n0xD26A\t0xD6B1\n0xD26B\t0xD6B2\n0xD26C\t0xD6B3\n0xD26D\t0xD6B4\n0xD26E\t0xD6B5\n0xD26F\t0xD6B6\n0xD270\t0xD6B7\n0xD271\t0xD6B8\n0xD273\t0xD6B9\n0xD274\t0xD6BA\n0xD275\t0xD6BB\n0xD276\t0xD6BC\n0xD277\t0xD6BD\n0xD278\t0xD6BE\n0xD279\t0xD6BF\n0xD27A\t0xD6C0\n0xD27B\t0xD6C1\n0xD27C\t0xD6C2\n0xD27D\t0xD6C3\n0xD281\t0xD6C4\n0xD282\t0xD6C5\n0xD283\t0xD6C6\n0xD284\t0xD6C7\n0xD285\t0xD6C8\n0xD286\t0xD6C9\n0xD287\t0xD6CA\n0xD288\t0xD6CB\n0xD289\t0xD6CC\n0xD28A\t0xD6CD\n0xD28B\t0xD6CE\n0xD28C\t0xD6CF\n0xD28D\t0xD6D0\n0xD28E\t0xD6D1\n0xD28F\t0xD6D2\n0xD290\t0xD6D3\n0xD291\t0xD6D4\n0xD293\t0xD6D5\n0xD294\t0xD6D6\n0xD295\t0xD6D7\n0xD296\t0xD6D8\n0xD297\t0xD6D9\n0xD298\t0xD6DA\n0xD299\t0xD6DB\n0xD29A\t0xD6DC\n0xD29B\t0xD6DD\n0xD29C\t0xD6DE\n0xD29D\t0xD6DF\n0xD2A1\t0xD6E0\n0xD2A2\t0xD6E1\n0xD2A3\t0xD6E2\n0xD2A4\t0xD6E3\n0xD2A5\t0xD6E4\n0xD2A6\t0xD6E5\n0xD2A7\t0xD6E6\n0xD2A8\t0xD6E7\n0xD2A9\t0xD6E8\n0xD2AA\t0xD6E9\n0xD2AB\t0xD6EA\n0xD2AC\t0xD6EB\n0xD2AD\t0xD6EC\n0xD2AE\t0xD6ED\n0xD2AF\t0xD6EE\n0xD2B0\t0xD6EF\n0xD2B1\t0xD6F0\n0xD2B3\t0xD6F1\n0xD2B4\t0xD6F2\n0xD2B5\t0xD6F3\n0xD2B6\t0xD6F4\n0xD2B7\t0xD6F5\n0xD2B8\t0xD6F6\n0xD2B9\t0xD6F7\n0xD2BA\t0xD6F8\n0xD2BB\t0xD6F9\n0xD2BC\t0xD6FA\n0xD2BD\t0xD6FB\n0xD2C1\t0xD6FC\n0xD2C2\t0xD6FD\n0xD2C3\t0xD6FE\n0xD2C4\t0xD6FF\n0xD2C5\t0xD700\n0xD2C6\t0xD701\n0xD2C7\t0xD702\n0xD2C8\t0xD703\n0xD2C9\t0xD704\n0xD2CA\t0xD705\n0xD2CB\t0xD706\n0xD2CC\t0xD707\n0xD2CD\t0xD708\n0xD2CE\t0xD709\n0xD2CF\t0xD70A\n0xD2D0\t0xD70B\n0xD2D1\t0xD70C\n0xD2D3\t0xD70D\n0xD2D4\t0xD70E\n0xD2D5\t0xD70F\n0xD2D6\t0xD710\n0xD2D7\t0xD711\n0xD2D8\t0xD712\n0xD2D9\t0xD713\n0xD2DA\t0xD714\n0xD2DB\t0xD715\n0xD2DC\t0xD716\n0xD2DD\t0xD717\n0xD2E1\t0xD718\n0xD2E2\t0xD719\n0xD2E3\t0xD71A\n0xD2E4\t0xD71B\n0xD2E5\t0xD71C\n0xD2E6\t0xD71D\n0xD2E7\t0xD71E\n0xD2E8\t0xD71F\n0xD2E9\t0xD720\n0xD2EA\t0xD721\n0xD2EB\t0xD722\n0xD2EC\t0xD723\n0xD2ED\t0xD724\n0xD2EE\t0xD725\n0xD2EF\t0xD726\n0xD2F0\t0xD727\n0xD2F1\t0xD728\n0xD2F3\t0xD729\n0xD2F4\t0xD72A\n0xD2F5\t0xD72B\n0xD2F6\t0xD72C\n0xD2F7\t0xD72D\n0xD2F8\t0xD72E\n0xD2F9\t0xD72F\n0xD2FA\t0xD730\n0xD2FB\t0xD731\n0xD2FC\t0xD732\n0xD2FD\t0xD733\n0xD341\t0xD734\n0xD342\t0xD735\n0xD343\t0xD736\n0xD344\t0xD737\n0xD345\t0xD738\n0xD346\t0xD739\n0xD347\t0xD73A\n0xD348\t0xD73B\n0xD349\t0xD73C\n0xD34A\t0xD73D\n0xD34B\t0xD73E\n0xD34C\t0xD73F\n0xD34D\t0xD740\n0xD34E\t0xD741\n0xD34F\t0xD742\n0xD350\t0xD743\n0xD351\t0xD744\n0xD353\t0xD745\n0xD354\t0xD746\n0xD355\t0xD747\n0xD356\t0xD748\n0xD357\t0xD749\n0xD358\t0xD74A\n0xD359\t0xD74B\n0xD35A\t0xD74C\n0xD35B\t0xD74D\n0xD35C\t0xD74E\n0xD35D\t0xD74F\n0xD361\t0xD750\n0xD362\t0xD751\n0xD363\t0xD752\n0xD364\t0xD753\n0xD365\t0xD754\n0xD366\t0xD755\n0xD367\t0xD756\n0xD368\t0xD757\n0xD369\t0xD758\n0xD36A\t0xD759\n0xD36B\t0xD75A\n0xD36C\t0xD75B\n0xD36D\t0xD75C\n0xD36E\t0xD75D\n0xD36F\t0xD75E\n0xD370\t0xD75F\n0xD371\t0xD760\n0xD373\t0xD761\n0xD374\t0xD762\n0xD375\t0xD763\n0xD376\t0xD764\n0xD377\t0xD765\n0xD378\t0xD766\n0xD379\t0xD767\n0xD37A\t0xD768\n0xD37B\t0xD769\n0xD37C\t0xD76A\n0xD37D\t0xD76B\n0xD381\t0xD76C\n0xD382\t0xD76D\n0xD383\t0xD76E\n0xD384\t0xD76F\n0xD385\t0xD770\n0xD386\t0xD771\n0xD387\t0xD772\n0xD388\t0xD773\n0xD389\t0xD774\n0xD38A\t0xD775\n0xD38B\t0xD776\n0xD38C\t0xD777\n0xD38D\t0xD778\n0xD38E\t0xD779\n0xD38F\t0xD77A\n0xD390\t0xD77B\n0xD391\t0xD77C\n0xD393\t0xD77D\n0xD394\t0xD77E\n0xD395\t0xD77F\n0xD396\t0xD780\n0xD397\t0xD781\n0xD398\t0xD782\n0xD399\t0xD783\n0xD39A\t0xD784\n0xD39B\t0xD785\n0xD39C\t0xD786\n0xD39D\t0xD787\n0xD3A1\t0xD788\n0xD3A2\t0xD789\n0xD3A3\t0xD78A\n0xD3A4\t0xD78B\n0xD3A5\t0xD78C\n0xD3A6\t0xD78D\n0xD3A7\t0xD78E\n0xD3A8\t0xD78F\n0xD3A9\t0xD790\n0xD3AA\t0xD791\n0xD3AB\t0xD792\n0xD3AC\t0xD793\n0xD3AD\t0xD794\n0xD3AE\t0xD795\n0xD3AF\t0xD796\n0xD3B0\t0xD797\n0xD3B1\t0xD798\n0xD3B3\t0xD799\n0xD3B4\t0xD79A\n0xD3B5\t0xD79B\n0xD3B6\t0xD79C\n0xD3B7\t0xD79D\n0xD3B8\t0xD79E\n0xD3B9\t0xD79F\n0xD3BA\t0xD7A0\n0xD3BB\t0xD7A1\n0xD3BC\t0xD7A2\n0xD3BD\t0xD7A3\n0xD931\t0x3000\n0xD932\t0x3001\n0xD933\t0x3002\n0xD934\t0x00B7\n0xD935\t0x2025\n0xD936\t0x2026\n0xD937\t0x00A8\n0xD938\t0x3003\n0xD939\t0x00AD\n0xD93A\t0x2015\n0xD93B\t0x2225\n0xD93C\t0xFF3C\n0xD93D\t0x223C\n0xD93E\t0x2018\n0xD93F\t0x2019\n0xD940\t0x201C\n0xD941\t0x201D\n0xD942\t0x3014\n0xD943\t0x3015\n0xD944\t0x3008\n0xD945\t0x3009\n0xD946\t0x300A\n0xD947\t0x300B\n0xD948\t0x300C\n0xD949\t0x300D\n0xD94A\t0x300E\n0xD94B\t0x300F\n0xD94C\t0x3010\n0xD94D\t0x3011\n0xD94E\t0x00B1\n0xD94F\t0x00D7\n0xD950\t0x00F7\n0xD951\t0x2260\n0xD952\t0x2264\n0xD953\t0x2265\n0xD954\t0x221E\n0xD955\t0x2234\n0xD956\t0x00B0\n0xD957\t0x2032\n0xD958\t0x2033\n0xD959\t0x2103\n0xD95A\t0x212B\n0xD95B\t0xFFE0\n0xD95C\t0xFFE1\n0xD95D\t0xFFE5\n0xD95E\t0x2642\n0xD95F\t0x2640\n0xD960\t0x2220\n0xD961\t0x22A5\n0xD962\t0x2312\n0xD963\t0x2202\n0xD964\t0x2207\n0xD965\t0x2261\n0xD966\t0x2252\n0xD967\t0x00A7\n0xD968\t0x203B\n0xD969\t0x2606\n0xD96A\t0x2605\n0xD96B\t0x25CB\n0xD96C\t0x25CF\n0xD96D\t0x25CE\n0xD96E\t0x25C7\n0xD96F\t0x25C6\n0xD970\t0x25A1\n0xD971\t0x25A0\n0xD972\t0x25B3\n0xD973\t0x25B2\n0xD974\t0x25BD\n0xD975\t0x25BC\n0xD976\t0x2192\n0xD977\t0x2190\n0xD978\t0x2191\n0xD979\t0x2193\n0xD97A\t0x2194\n0xD97B\t0x3013\n0xD97C\t0x226A\n0xD97D\t0x226B\n0xD97E\t0x221A\n0xD991\t0x223D\n0xD992\t0x221D\n0xD993\t0x2235\n0xD994\t0x222B\n0xD995\t0x222C\n0xD996\t0x2208\n0xD997\t0x220B\n0xD998\t0x2286\n0xD999\t0x2287\n0xD99A\t0x2282\n0xD99B\t0x2283\n0xD99C\t0x222A\n0xD99D\t0x2229\n0xD99E\t0x2227\n0xD99F\t0x2228\n0xD9A0\t0xFFE2\n0xD9A1\t0x21D2\n0xD9A2\t0x21D4\n0xD9A3\t0x2200\n0xD9A4\t0x2203\n0xD9A5\t0x00B4\n0xD9A6\t0xFF5E\n0xD9A7\t0x02C7\n0xD9A8\t0x02D8\n0xD9A9\t0x02DD\n0xD9AA\t0x02DA\n0xD9AB\t0x02D9\n0xD9AC\t0x00B8\n0xD9AD\t0x02DB\n0xD9AE\t0x00A1\n0xD9AF\t0x00BF\n0xD9B0\t0x02D0\n0xD9B1\t0x222E\n0xD9B2\t0x2211\n0xD9B3\t0x220F\n0xD9B4\t0x00A4\n0xD9B5\t0x2109\n0xD9B6\t0x2030\n0xD9B7\t0x25C1\n0xD9B8\t0x25C0\n0xD9B9\t0x25B7\n0xD9BA\t0x25B6\n0xD9BB\t0x2664\n0xD9BC\t0x2660\n0xD9BD\t0x2661\n0xD9BE\t0x2665\n0xD9BF\t0x2667\n0xD9C0\t0x2663\n0xD9C1\t0x2299\n0xD9C2\t0x25C8\n0xD9C3\t0x25A3\n0xD9C4\t0x25D0\n0xD9C5\t0x25D1\n0xD9C6\t0x2592\n0xD9C7\t0x25A4\n0xD9C8\t0x25A5\n0xD9C9\t0x25A8\n0xD9CA\t0x25A7\n0xD9CB\t0x25A6\n0xD9CC\t0x25A9\n0xD9CD\t0x2668\n0xD9CE\t0x260F\n0xD9CF\t0x260E\n0xD9D0\t0x261C\n0xD9D1\t0x261E\n0xD9D2\t0x00B6\n0xD9D3\t0x2020\n0xD9D4\t0x2021\n0xD9D5\t0x2195\n0xD9D6\t0x2197\n0xD9D7\t0x2199\n0xD9D8\t0x2196\n0xD9D9\t0x2198\n0xD9DA\t0x266D\n0xD9DB\t0x2669\n0xD9DC\t0x266A\n0xD9DD\t0x266C\n0xD9DE\t0x327F\n0xD9DF\t0x321C\n0xD9E0\t0x2116\n0xD9E1\t0x33C7\n0xD9E2\t0x2122\n0xD9E3\t0x33C2\n0xD9E4\t0x33D8\n0xD9E5\t0x2121\n0xD9E6\t0x20AC\n0xD9E7\t0x00AE\n0xD9E8\t0x327E\n0xDA31\t0xFF01\n0xDA32\t0xFF02\n0xDA33\t0xFF03\n0xDA34\t0xFF04\n0xDA35\t0xFF05\n0xDA36\t0xFF06\n0xDA37\t0xFF07\n0xDA38\t0xFF08\n0xDA39\t0xFF09\n0xDA3A\t0xFF0A\n0xDA3B\t0xFF0B\n0xDA3C\t0xFF0C\n0xDA3D\t0xFF0D\n0xDA3E\t0xFF0E\n0xDA3F\t0xFF0F\n0xDA40\t0xFF10\n0xDA41\t0xFF11\n0xDA42\t0xFF12\n0xDA43\t0xFF13\n0xDA44\t0xFF14\n0xDA45\t0xFF15\n0xDA46\t0xFF16\n0xDA47\t0xFF17\n0xDA48\t0xFF18\n0xDA49\t0xFF19\n0xDA4A\t0xFF1A\n0xDA4B\t0xFF1B\n0xDA4C\t0xFF1C\n0xDA4D\t0xFF1D\n0xDA4E\t0xFF1E\n0xDA4F\t0xFF1F\n0xDA50\t0xFF20\n0xDA51\t0xFF21\n0xDA52\t0xFF22\n0xDA53\t0xFF23\n0xDA54\t0xFF24\n0xDA55\t0xFF25\n0xDA56\t0xFF26\n0xDA57\t0xFF27\n0xDA58\t0xFF28\n0xDA59\t0xFF29\n0xDA5A\t0xFF2A\n0xDA5B\t0xFF2B\n0xDA5C\t0xFF2C\n0xDA5D\t0xFF2D\n0xDA5E\t0xFF2E\n0xDA5F\t0xFF2F\n0xDA60\t0xFF30\n0xDA61\t0xFF31\n0xDA62\t0xFF32\n0xDA63\t0xFF33\n0xDA64\t0xFF34\n0xDA65\t0xFF35\n0xDA66\t0xFF36\n0xDA67\t0xFF37\n0xDA68\t0xFF38\n0xDA69\t0xFF39\n0xDA6A\t0xFF3A\n0xDA6B\t0xFF3B\n0xDA6C\t0xFFE6\n0xDA6D\t0xFF3D\n0xDA6E\t0xFF3E\n0xDA6F\t0xFF3F\n0xDA70\t0xFF40\n0xDA71\t0xFF41\n0xDA72\t0xFF42\n0xDA73\t0xFF43\n0xDA74\t0xFF44\n0xDA75\t0xFF45\n0xDA76\t0xFF46\n0xDA77\t0xFF47\n0xDA78\t0xFF48\n0xDA79\t0xFF49\n0xDA7A\t0xFF4A\n0xDA7B\t0xFF4B\n0xDA7C\t0xFF4C\n0xDA7D\t0xFF4D\n0xDA7E\t0xFF4E\n0xDA91\t0xFF4F\n0xDA92\t0xFF50\n0xDA93\t0xFF51\n0xDA94\t0xFF52\n0xDA95\t0xFF53\n0xDA96\t0xFF54\n0xDA97\t0xFF55\n0xDA98\t0xFF56\n0xDA99\t0xFF57\n0xDA9A\t0xFF58\n0xDA9B\t0xFF59\n0xDA9C\t0xFF5A\n0xDA9D\t0xFF5B\n0xDA9E\t0xFF5C\n0xDA9F\t0xFF5D\n0xDAA0\t0xFFE3\n0xDAD4\t0x3164\n0xDAD5\t0x3165\n0xDAD6\t0x3166\n0xDAD7\t0x3167\n0xDAD8\t0x3168\n0xDAD9\t0x3169\n0xDADA\t0x316A\n0xDADB\t0x316B\n0xDADC\t0x316C\n0xDADD\t0x316D\n0xDADE\t0x316E\n0xDADF\t0x316F\n0xDAE0\t0x3170\n0xDAE1\t0x3171\n0xDAE2\t0x3172\n0xDAE3\t0x3173\n0xDAE4\t0x3174\n0xDAE5\t0x3175\n0xDAE6\t0x3176\n0xDAE7\t0x3177\n0xDAE8\t0x3178\n0xDAE9\t0x3179\n0xDAEA\t0x317A\n0xDAEB\t0x317B\n0xDAEC\t0x317C\n0xDAED\t0x317D\n0xDAEE\t0x317E\n0xDAEF\t0x317F\n0xDAF0\t0x3180\n0xDAF1\t0x3181\n0xDAF2\t0x3182\n0xDAF3\t0x3183\n0xDAF4\t0x3184\n0xDAF5\t0x3185\n0xDAF6\t0x3186\n0xDAF7\t0x3187\n0xDAF8\t0x3188\n0xDAF9\t0x3189\n0xDAFA\t0x318A\n0xDAFB\t0x318B\n0xDAFC\t0x318C\n0xDAFD\t0x318D\n0xDAFE\t0x318E\n0xDB31\t0x2170\n0xDB32\t0x2171\n0xDB33\t0x2172\n0xDB34\t0x2173\n0xDB35\t0x2174\n0xDB36\t0x2175\n0xDB37\t0x2176\n0xDB38\t0x2177\n0xDB39\t0x2178\n0xDB3A\t0x2179\n0xDB40\t0x2160\n0xDB41\t0x2161\n0xDB42\t0x2162\n0xDB43\t0x2163\n0xDB44\t0x2164\n0xDB45\t0x2165\n0xDB46\t0x2166\n0xDB47\t0x2167\n0xDB48\t0x2168\n0xDB49\t0x2169\n0xDB51\t0x0391\n0xDB52\t0x0392\n0xDB53\t0x0393\n0xDB54\t0x0394\n0xDB55\t0x0395\n0xDB56\t0x0396\n0xDB57\t0x0397\n0xDB58\t0x0398\n0xDB59\t0x0399\n0xDB5A\t0x039A\n0xDB5B\t0x039B\n0xDB5C\t0x039C\n0xDB5D\t0x039D\n0xDB5E\t0x039E\n0xDB5F\t0x039F\n0xDB60\t0x03A0\n0xDB61\t0x03A1\n0xDB62\t0x03A3\n0xDB63\t0x03A4\n0xDB64\t0x03A5\n0xDB65\t0x03A6\n0xDB66\t0x03A7\n0xDB67\t0x03A8\n0xDB68\t0x03A9\n0xDB71\t0x03B1\n0xDB72\t0x03B2\n0xDB73\t0x03B3\n0xDB74\t0x03B4\n0xDB75\t0x03B5\n0xDB76\t0x03B6\n0xDB77\t0x03B7\n0xDB78\t0x03B8\n0xDB79\t0x03B9\n0xDB7A\t0x03BA\n0xDB7B\t0x03BB\n0xDB7C\t0x03BC\n0xDB7D\t0x03BD\n0xDB7E\t0x03BE\n0xDB91\t0x03BF\n0xDB92\t0x03C0\n0xDB93\t0x03C1\n0xDB94\t0x03C3\n0xDB95\t0x03C4\n0xDB96\t0x03C5\n0xDB97\t0x03C6\n0xDB98\t0x03C7\n0xDB99\t0x03C8\n0xDB9A\t0x03C9\n0xDBA1\t0x2500\n0xDBA2\t0x2502\n0xDBA3\t0x250C\n0xDBA4\t0x2510\n0xDBA5\t0x2518\n0xDBA6\t0x2514\n0xDBA7\t0x251C\n0xDBA8\t0x252C\n0xDBA9\t0x2524\n0xDBAA\t0x2534\n0xDBAB\t0x253C\n0xDBAC\t0x2501\n0xDBAD\t0x2503\n0xDBAE\t0x250F\n0xDBAF\t0x2513\n0xDBB0\t0x251B\n0xDBB1\t0x2517\n0xDBB2\t0x2523\n0xDBB3\t0x2533\n0xDBB4\t0x252B\n0xDBB5\t0x253B\n0xDBB6\t0x254B\n0xDBB7\t0x2520\n0xDBB8\t0x252F\n0xDBB9\t0x2528\n0xDBBA\t0x2537\n0xDBBB\t0x253F\n0xDBBC\t0x251D\n0xDBBD\t0x2530\n0xDBBE\t0x2525\n0xDBBF\t0x2538\n0xDBC0\t0x2542\n0xDBC1\t0x2512\n0xDBC2\t0x2511\n0xDBC3\t0x251A\n0xDBC4\t0x2519\n0xDBC5\t0x2516\n0xDBC6\t0x2515\n0xDBC7\t0x250E\n0xDBC8\t0x250D\n0xDBC9\t0x251E\n0xDBCA\t0x251F\n0xDBCB\t0x2521\n0xDBCC\t0x2522\n0xDBCD\t0x2526\n0xDBCE\t0x2527\n0xDBCF\t0x2529\n0xDBD0\t0x252A\n0xDBD1\t0x252D\n0xDBD2\t0x252E\n0xDBD3\t0x2531\n0xDBD4\t0x2532\n0xDBD5\t0x2535\n0xDBD6\t0x2536\n0xDBD7\t0x2539\n0xDBD8\t0x253A\n0xDBD9\t0x253D\n0xDBDA\t0x253E\n0xDBDB\t0x2540\n0xDBDC\t0x2541\n0xDBDD\t0x2543\n0xDBDE\t0x2544\n0xDBDF\t0x2545\n0xDBE0\t0x2546\n0xDBE1\t0x2547\n0xDBE2\t0x2548\n0xDBE3\t0x2549\n0xDBE4\t0x254A\n0xDC31\t0x3395\n0xDC32\t0x3396\n0xDC33\t0x3397\n0xDC34\t0x2113\n0xDC35\t0x3398\n0xDC36\t0x33C4\n0xDC37\t0x33A3\n0xDC38\t0x33A4\n0xDC39\t0x33A5\n0xDC3A\t0x33A6\n0xDC3B\t0x3399\n0xDC3C\t0x339A\n0xDC3D\t0x339B\n0xDC3E\t0x339C\n0xDC3F\t0x339D\n0xDC40\t0x339E\n0xDC41\t0x339F\n0xDC42\t0x33A0\n0xDC43\t0x33A1\n0xDC44\t0x33A2\n0xDC45\t0x33CA\n0xDC46\t0x338D\n0xDC47\t0x338E\n0xDC48\t0x338F\n0xDC49\t0x33CF\n0xDC4A\t0x3388\n0xDC4B\t0x3389\n0xDC4C\t0x33C8\n0xDC4D\t0x33A7\n0xDC4E\t0x33A8\n0xDC4F\t0x33B0\n0xDC50\t0x33B1\n0xDC51\t0x33B2\n0xDC52\t0x33B3\n0xDC53\t0x33B4\n0xDC54\t0x33B5\n0xDC55\t0x33B6\n0xDC56\t0x33B7\n0xDC57\t0x33B8\n0xDC58\t0x33B9\n0xDC59\t0x3380\n0xDC5A\t0x3381\n0xDC5B\t0x3382\n0xDC5C\t0x3383\n0xDC5D\t0x3384\n0xDC5E\t0x33BA\n0xDC5F\t0x33BB\n0xDC60\t0x33BC\n0xDC61\t0x33BD\n0xDC62\t0x33BE\n0xDC63\t0x33BF\n0xDC64\t0x3390\n0xDC65\t0x3391\n0xDC66\t0x3392\n0xDC67\t0x3393\n0xDC68\t0x3394\n0xDC69\t0x2126\n0xDC6A\t0x33C0\n0xDC6B\t0x33C1\n0xDC6C\t0x338A\n0xDC6D\t0x338B\n0xDC6E\t0x338C\n0xDC6F\t0x33D6\n0xDC70\t0x33C5\n0xDC71\t0x33AD\n0xDC72\t0x33AE\n0xDC73\t0x33AF\n0xDC74\t0x33DB\n0xDC75\t0x33A9\n0xDC76\t0x33AA\n0xDC77\t0x33AB\n0xDC78\t0x33AC\n0xDC79\t0x33DD\n0xDC7A\t0x33D0\n0xDC7B\t0x33D3\n0xDC7C\t0x33C3\n0xDC7D\t0x33C9\n0xDC7E\t0x33DC\n0xDC91\t0x33C6\n0xDCA1\t0x00C6\n0xDCA2\t0x00D0\n0xDCA3\t0x00AA\n0xDCA4\t0x0126\n0xDCA6\t0x0132\n0xDCA8\t0x013F\n0xDCA9\t0x0141\n0xDCAA\t0x00D8\n0xDCAB\t0x0152\n0xDCAC\t0x00BA\n0xDCAD\t0x00DE\n0xDCAE\t0x0166\n0xDCAF\t0x014A\n0xDCB1\t0x3260\n0xDCB2\t0x3261\n0xDCB3\t0x3262\n0xDCB4\t0x3263\n0xDCB5\t0x3264\n0xDCB6\t0x3265\n0xDCB7\t0x3266\n0xDCB8\t0x3267\n0xDCB9\t0x3268\n0xDCBA\t0x3269\n0xDCBB\t0x326A\n0xDCBC\t0x326B\n0xDCBD\t0x326C\n0xDCBE\t0x326D\n0xDCBF\t0x326E\n0xDCC0\t0x326F\n0xDCC1\t0x3270\n0xDCC2\t0x3271\n0xDCC3\t0x3272\n0xDCC4\t0x3273\n0xDCC5\t0x3274\n0xDCC6\t0x3275\n0xDCC7\t0x3276\n0xDCC8\t0x3277\n0xDCC9\t0x3278\n0xDCCA\t0x3279\n0xDCCB\t0x327A\n0xDCCC\t0x327B\n0xDCCD\t0x24D0\n0xDCCE\t0x24D1\n0xDCCF\t0x24D2\n0xDCD0\t0x24D3\n0xDCD1\t0x24D4\n0xDCD2\t0x24D5\n0xDCD3\t0x24D6\n0xDCD4\t0x24D7\n0xDCD5\t0x24D8\n0xDCD6\t0x24D9\n0xDCD7\t0x24DA\n0xDCD8\t0x24DB\n0xDCD9\t0x24DC\n0xDCDA\t0x24DD\n0xDCDB\t0x24DE\n0xDCDC\t0x24DF\n0xDCDD\t0x24E0\n0xDCDE\t0x24E1\n0xDCDF\t0x24E2\n0xDCE0\t0x24E3\n0xDCE1\t0x24E4\n0xDCE2\t0x24E5\n0xDCE3\t0x24E6\n0xDCE4\t0x24E7\n0xDCE5\t0x24E8\n0xDCE6\t0x24E9\n0xDCE7\t0x2460\n0xDCE8\t0x2461\n0xDCE9\t0x2462\n0xDCEA\t0x2463\n0xDCEB\t0x2464\n0xDCEC\t0x2465\n0xDCED\t0x2466\n0xDCEE\t0x2467\n0xDCEF\t0x2468\n0xDCF0\t0x2469\n0xDCF1\t0x246A\n0xDCF2\t0x246B\n0xDCF3\t0x246C\n0xDCF4\t0x246D\n0xDCF5\t0x246E\n0xDCF6\t0x00BD\n0xDCF7\t0x2153\n0xDCF8\t0x2154\n0xDCF9\t0x00BC\n0xDCFA\t0x00BE\n0xDCFB\t0x215B\n0xDCFC\t0x215C\n0xDCFD\t0x215D\n0xDCFE\t0x215E\n0xDD31\t0x00E6\n0xDD32\t0x0111\n0xDD33\t0x00F0\n0xDD34\t0x0127\n0xDD35\t0x0131\n0xDD36\t0x0133\n0xDD37\t0x0138\n0xDD38\t0x0140\n0xDD39\t0x0142\n0xDD3A\t0x00F8\n0xDD3B\t0x0153\n0xDD3C\t0x00DF\n0xDD3D\t0x00FE\n0xDD3E\t0x0167\n0xDD3F\t0x014B\n0xDD40\t0x0149\n0xDD41\t0x3200\n0xDD42\t0x3201\n0xDD43\t0x3202\n0xDD44\t0x3203\n0xDD45\t0x3204\n0xDD46\t0x3205\n0xDD47\t0x3206\n0xDD48\t0x3207\n0xDD49\t0x3208\n0xDD4A\t0x3209\n0xDD4B\t0x320A\n0xDD4C\t0x320B\n0xDD4D\t0x320C\n0xDD4E\t0x320D\n0xDD4F\t0x320E\n0xDD50\t0x320F\n0xDD51\t0x3210\n0xDD52\t0x3211\n0xDD53\t0x3212\n0xDD54\t0x3213\n0xDD55\t0x3214\n0xDD56\t0x3215\n0xDD57\t0x3216\n0xDD58\t0x3217\n0xDD59\t0x3218\n0xDD5A\t0x3219\n0xDD5B\t0x321A\n0xDD5C\t0x321B\n0xDD5D\t0x249C\n0xDD5E\t0x249D\n0xDD5F\t0x249E\n0xDD60\t0x249F\n0xDD61\t0x24A0\n0xDD62\t0x24A1\n0xDD63\t0x24A2\n0xDD64\t0x24A3\n0xDD65\t0x24A4\n0xDD66\t0x24A5\n0xDD67\t0x24A6\n0xDD68\t0x24A7\n0xDD69\t0x24A8\n0xDD6A\t0x24A9\n0xDD6B\t0x24AA\n0xDD6C\t0x24AB\n0xDD6D\t0x24AC\n0xDD6E\t0x24AD\n0xDD6F\t0x24AE\n0xDD70\t0x24AF\n0xDD71\t0x24B0\n0xDD72\t0x24B1\n0xDD73\t0x24B2\n0xDD74\t0x24B3\n0xDD75\t0x24B4\n0xDD76\t0x24B5\n0xDD77\t0x2474\n0xDD78\t0x2475\n0xDD79\t0x2476\n0xDD7A\t0x2477\n0xDD7B\t0x2478\n0xDD7C\t0x2479\n0xDD7D\t0x247A\n0xDD7E\t0x247B\n0xDD91\t0x247C\n0xDD92\t0x247D\n0xDD93\t0x247E\n0xDD94\t0x247F\n0xDD95\t0x2480\n0xDD96\t0x2481\n0xDD97\t0x2482\n0xDD98\t0x00B9\n0xDD99\t0x00B2\n0xDD9A\t0x00B3\n0xDD9B\t0x2074\n0xDD9C\t0x207F\n0xDD9D\t0x2081\n0xDD9E\t0x2082\n0xDD9F\t0x2083\n0xDDA0\t0x2084\n0xDDA1\t0x3041\n0xDDA2\t0x3042\n0xDDA3\t0x3043\n0xDDA4\t0x3044\n0xDDA5\t0x3045\n0xDDA6\t0x3046\n0xDDA7\t0x3047\n0xDDA8\t0x3048\n0xDDA9\t0x3049\n0xDDAA\t0x304A\n0xDDAB\t0x304B\n0xDDAC\t0x304C\n0xDDAD\t0x304D\n0xDDAE\t0x304E\n0xDDAF\t0x304F\n0xDDB0\t0x3050\n0xDDB1\t0x3051\n0xDDB2\t0x3052\n0xDDB3\t0x3053\n0xDDB4\t0x3054\n0xDDB5\t0x3055\n0xDDB6\t0x3056\n0xDDB7\t0x3057\n0xDDB8\t0x3058\n0xDDB9\t0x3059\n0xDDBA\t0x305A\n0xDDBB\t0x305B\n0xDDBC\t0x305C\n0xDDBD\t0x305D\n0xDDBE\t0x305E\n0xDDBF\t0x305F\n0xDDC0\t0x3060\n0xDDC1\t0x3061\n0xDDC2\t0x3062\n0xDDC3\t0x3063\n0xDDC4\t0x3064\n0xDDC5\t0x3065\n0xDDC6\t0x3066\n0xDDC7\t0x3067\n0xDDC8\t0x3068\n0xDDC9\t0x3069\n0xDDCA\t0x306A\n0xDDCB\t0x306B\n0xDDCC\t0x306C\n0xDDCD\t0x306D\n0xDDCE\t0x306E\n0xDDCF\t0x306F\n0xDDD0\t0x3070\n0xDDD1\t0x3071\n0xDDD2\t0x3072\n0xDDD3\t0x3073\n0xDDD4\t0x3074\n0xDDD5\t0x3075\n0xDDD6\t0x3076\n0xDDD7\t0x3077\n0xDDD8\t0x3078\n0xDDD9\t0x3079\n0xDDDA\t0x307A\n0xDDDB\t0x307B\n0xDDDC\t0x307C\n0xDDDD\t0x307D\n0xDDDE\t0x307E\n0xDDDF\t0x307F\n0xDDE0\t0x3080\n0xDDE1\t0x3081\n0xDDE2\t0x3082\n0xDDE3\t0x3083\n0xDDE4\t0x3084\n0xDDE5\t0x3085\n0xDDE6\t0x3086\n0xDDE7\t0x3087\n0xDDE8\t0x3088\n0xDDE9\t0x3089\n0xDDEA\t0x308A\n0xDDEB\t0x308B\n0xDDEC\t0x308C\n0xDDED\t0x308D\n0xDDEE\t0x308E\n0xDDEF\t0x308F\n0xDDF0\t0x3090\n0xDDF1\t0x3091\n0xDDF2\t0x3092\n0xDDF3\t0x3093\n0xDE31\t0x30A1\n0xDE32\t0x30A2\n0xDE33\t0x30A3\n0xDE34\t0x30A4\n0xDE35\t0x30A5\n0xDE36\t0x30A6\n0xDE37\t0x30A7\n0xDE38\t0x30A8\n0xDE39\t0x30A9\n0xDE3A\t0x30AA\n0xDE3B\t0x30AB\n0xDE3C\t0x30AC\n0xDE3D\t0x30AD\n0xDE3E\t0x30AE\n0xDE3F\t0x30AF\n0xDE40\t0x30B0\n0xDE41\t0x30B1\n0xDE42\t0x30B2\n0xDE43\t0x30B3\n0xDE44\t0x30B4\n0xDE45\t0x30B5\n0xDE46\t0x30B6\n0xDE47\t0x30B7\n0xDE48\t0x30B8\n0xDE49\t0x30B9\n0xDE4A\t0x30BA\n0xDE4B\t0x30BB\n0xDE4C\t0x30BC\n0xDE4D\t0x30BD\n0xDE4E\t0x30BE\n0xDE4F\t0x30BF\n0xDE50\t0x30C0\n0xDE51\t0x30C1\n0xDE52\t0x30C2\n0xDE53\t0x30C3\n0xDE54\t0x30C4\n0xDE55\t0x30C5\n0xDE56\t0x30C6\n0xDE57\t0x30C7\n0xDE58\t0x30C8\n0xDE59\t0x30C9\n0xDE5A\t0x30CA\n0xDE5B\t0x30CB\n0xDE5C\t0x30CC\n0xDE5D\t0x30CD\n0xDE5E\t0x30CE\n0xDE5F\t0x30CF\n0xDE60\t0x30D0\n0xDE61\t0x30D1\n0xDE62\t0x30D2\n0xDE63\t0x30D3\n0xDE64\t0x30D4\n0xDE65\t0x30D5\n0xDE66\t0x30D6\n0xDE67\t0x30D7\n0xDE68\t0x30D8\n0xDE69\t0x30D9\n0xDE6A\t0x30DA\n0xDE6B\t0x30DB\n0xDE6C\t0x30DC\n0xDE6D\t0x30DD\n0xDE6E\t0x30DE\n0xDE6F\t0x30DF\n0xDE70\t0x30E0\n0xDE71\t0x30E1\n0xDE72\t0x30E2\n0xDE73\t0x30E3\n0xDE74\t0x30E4\n0xDE75\t0x30E5\n0xDE76\t0x30E6\n0xDE77\t0x30E7\n0xDE78\t0x30E8\n0xDE79\t0x30E9\n0xDE7A\t0x30EA\n0xDE7B\t0x30EB\n0xDE7C\t0x30EC\n0xDE7D\t0x30ED\n0xDE7E\t0x30EE\n0xDE91\t0x30EF\n0xDE92\t0x30F0\n0xDE93\t0x30F1\n0xDE94\t0x30F2\n0xDE95\t0x30F3\n0xDE96\t0x30F4\n0xDE97\t0x30F5\n0xDE98\t0x30F6\n0xDEA1\t0x0410\n0xDEA2\t0x0411\n0xDEA3\t0x0412\n0xDEA4\t0x0413\n0xDEA5\t0x0414\n0xDEA6\t0x0415\n0xDEA7\t0x0401\n0xDEA8\t0x0416\n0xDEA9\t0x0417\n0xDEAA\t0x0418\n0xDEAB\t0x0419\n0xDEAC\t0x041A\n0xDEAD\t0x041B\n0xDEAE\t0x041C\n0xDEAF\t0x041D\n0xDEB0\t0x041E\n0xDEB1\t0x041F\n0xDEB2\t0x0420\n0xDEB3\t0x0421\n0xDEB4\t0x0422\n0xDEB5\t0x0423\n0xDEB6\t0x0424\n0xDEB7\t0x0425\n0xDEB8\t0x0426\n0xDEB9\t0x0427\n0xDEBA\t0x0428\n0xDEBB\t0x0429\n0xDEBC\t0x042A\n0xDEBD\t0x042B\n0xDEBE\t0x042C\n0xDEBF\t0x042D\n0xDEC0\t0x042E\n0xDEC1\t0x042F\n0xDED1\t0x0430\n0xDED2\t0x0431\n0xDED3\t0x0432\n0xDED4\t0x0433\n0xDED5\t0x0434\n0xDED6\t0x0435\n0xDED7\t0x0451\n0xDED8\t0x0436\n0xDED9\t0x0437\n0xDEDA\t0x0438\n0xDEDB\t0x0439\n0xDEDC\t0x043A\n0xDEDD\t0x043B\n0xDEDE\t0x043C\n0xDEDF\t0x043D\n0xDEE0\t0x043E\n0xDEE1\t0x043F\n0xDEE2\t0x0440\n0xDEE3\t0x0441\n0xDEE4\t0x0442\n0xDEE5\t0x0443\n0xDEE6\t0x0444\n0xDEE7\t0x0445\n0xDEE8\t0x0446\n0xDEE9\t0x0447\n0xDEEA\t0x0448\n0xDEEB\t0x0449\n0xDEEC\t0x044A\n0xDEED\t0x044B\n0xDEEE\t0x044C\n0xDEEF\t0x044D\n0xDEF0\t0x044E\n0xDEF1\t0x044F\n0xE031\t0x4F3D\n0xE032\t0x4F73\n0xE033\t0x5047\n0xE034\t0x50F9\n0xE035\t0x52A0\n0xE036\t0x53EF\n0xE037\t0x5475\n0xE038\t0x54E5\n0xE039\t0x5609\n0xE03A\t0x5AC1\n0xE03B\t0x5BB6\n0xE03C\t0x6687\n0xE03D\t0x67B6\n0xE03E\t0x67B7\n0xE03F\t0x67EF\n0xE040\t0x6B4C\n0xE041\t0x73C2\n0xE042\t0x75C2\n0xE043\t0x7A3C\n0xE044\t0x82DB\n0xE045\t0x8304\n0xE046\t0x8857\n0xE047\t0x8888\n0xE048\t0x8A36\n0xE049\t0x8CC8\n0xE04A\t0x8DCF\n0xE04B\t0x8EFB\n0xE04C\t0x8FE6\n0xE04D\t0x99D5\n0xE04E\t0x523B\n0xE04F\t0x5374\n0xE050\t0x5404\n0xE051\t0x606A\n0xE052\t0x6164\n0xE053\t0x6BBC\n0xE054\t0x73CF\n0xE055\t0x811A\n0xE056\t0x89BA\n0xE057\t0x89D2\n0xE058\t0x95A3\n0xE059\t0x4F83\n0xE05A\t0x520A\n0xE05B\t0x58BE\n0xE05C\t0x5978\n0xE05D\t0x59E6\n0xE05E\t0x5E72\n0xE05F\t0x5E79\n0xE060\t0x61C7\n0xE061\t0x63C0\n0xE062\t0x6746\n0xE063\t0x67EC\n0xE064\t0x687F\n0xE065\t0x6F97\n0xE066\t0x764E\n0xE067\t0x770B\n0xE068\t0x78F5\n0xE069\t0x7A08\n0xE06A\t0x7AFF\n0xE06B\t0x7C21\n0xE06C\t0x809D\n0xE06D\t0x826E\n0xE06E\t0x8271\n0xE06F\t0x8AEB\n0xE070\t0x9593\n0xE071\t0x4E6B\n0xE072\t0x559D\n0xE073\t0x66F7\n0xE074\t0x6E34\n0xE075\t0x78A3\n0xE076\t0x7AED\n0xE077\t0x845B\n0xE078\t0x8910\n0xE079\t0x874E\n0xE07A\t0x97A8\n0xE07B\t0x52D8\n0xE07C\t0x574E\n0xE07D\t0x582A\n0xE07E\t0x5D4C\n0xE091\t0x611F\n0xE092\t0x61BE\n0xE093\t0x6221\n0xE094\t0x6562\n0xE095\t0x67D1\n0xE096\t0x6A44\n0xE097\t0x6E1B\n0xE098\t0x7518\n0xE099\t0x75B3\n0xE09A\t0x76E3\n0xE09B\t0x77B0\n0xE09C\t0x7D3A\n0xE09D\t0x90AF\n0xE09E\t0x9451\n0xE09F\t0x9452\n0xE0A0\t0x9F95\n0xE0A1\t0x5323\n0xE0A2\t0x5CAC\n0xE0A3\t0x7532\n0xE0A4\t0x80DB\n0xE0A5\t0x9240\n0xE0A6\t0x9598\n0xE0A7\t0x525B\n0xE0A8\t0x5808\n0xE0A9\t0x59DC\n0xE0AA\t0x5CA1\n0xE0AB\t0x5D17\n0xE0AC\t0x5EB7\n0xE0AD\t0x5F3A\n0xE0AE\t0x5F4A\n0xE0AF\t0x6177\n0xE0B0\t0x6C5F\n0xE0B1\t0x757A\n0xE0B2\t0x7586\n0xE0B3\t0x7CE0\n0xE0B4\t0x7D73\n0xE0B5\t0x7DB1\n0xE0B6\t0x7F8C\n0xE0B7\t0x8154\n0xE0B8\t0x8221\n0xE0B9\t0x8591\n0xE0BA\t0x8941\n0xE0BB\t0x8B1B\n0xE0BC\t0x92FC\n0xE0BD\t0x964D\n0xE0BE\t0x9C47\n0xE0BF\t0x4ECB\n0xE0C0\t0x4EF7\n0xE0C1\t0x500B\n0xE0C2\t0x51F1\n0xE0C3\t0x584F\n0xE0C4\t0x6137\n0xE0C5\t0x613E\n0xE0C6\t0x6168\n0xE0C7\t0x6539\n0xE0C8\t0x69EA\n0xE0C9\t0x6F11\n0xE0CA\t0x75A5\n0xE0CB\t0x7686\n0xE0CC\t0x76D6\n0xE0CD\t0x7B87\n0xE0CE\t0x82A5\n0xE0CF\t0x84CB\n0xE0D0\t0xF900\n0xE0D1\t0x93A7\n0xE0D2\t0x958B\n0xE0D3\t0x5580\n0xE0D4\t0x5BA2\n0xE0D5\t0x5751\n0xE0D6\t0xF901\n0xE0D7\t0x7CB3\n0xE0D8\t0x7FB9\n0xE0D9\t0x91B5\n0xE0DA\t0x5028\n0xE0DB\t0x53BB\n0xE0DC\t0x5C45\n0xE0DD\t0x5DE8\n0xE0DE\t0x62D2\n0xE0DF\t0x636E\n0xE0E0\t0x64DA\n0xE0E1\t0x64E7\n0xE0E2\t0x6E20\n0xE0E3\t0x70AC\n0xE0E4\t0x795B\n0xE0E5\t0x8DDD\n0xE0E6\t0x8E1E\n0xE0E7\t0xF902\n0xE0E8\t0x907D\n0xE0E9\t0x9245\n0xE0EA\t0x92F8\n0xE0EB\t0x4E7E\n0xE0EC\t0x4EF6\n0xE0ED\t0x5065\n0xE0EE\t0x5DFE\n0xE0EF\t0x5EFA\n0xE0F0\t0x6106\n0xE0F1\t0x6957\n0xE0F2\t0x8171\n0xE0F3\t0x8654\n0xE0F4\t0x8E47\n0xE0F5\t0x9375\n0xE0F6\t0x9A2B\n0xE0F7\t0x4E5E\n0xE0F8\t0x5091\n0xE0F9\t0x6770\n0xE0FA\t0x6840\n0xE0FB\t0x5109\n0xE0FC\t0x528D\n0xE0FD\t0x5292\n0xE0FE\t0x6AA2\n0xE131\t0x77BC\n0xE132\t0x9210\n0xE133\t0x9ED4\n0xE134\t0x52AB\n0xE135\t0x602F\n0xE136\t0x8FF2\n0xE137\t0x5048\n0xE138\t0x61A9\n0xE139\t0x63ED\n0xE13A\t0x64CA\n0xE13B\t0x683C\n0xE13C\t0x6A84\n0xE13D\t0x6FC0\n0xE13E\t0x8188\n0xE13F\t0x89A1\n0xE140\t0x9694\n0xE141\t0x5805\n0xE142\t0x727D\n0xE143\t0x72AC\n0xE144\t0x7504\n0xE145\t0x7D79\n0xE146\t0x7E6D\n0xE147\t0x80A9\n0xE148\t0x898B\n0xE149\t0x8B74\n0xE14A\t0x9063\n0xE14B\t0x9D51\n0xE14C\t0x6289\n0xE14D\t0x6C7A\n0xE14E\t0x6F54\n0xE14F\t0x7D50\n0xE150\t0x7F3A\n0xE151\t0x8A23\n0xE152\t0x517C\n0xE153\t0x614A\n0xE154\t0x7B9D\n0xE155\t0x8B19\n0xE156\t0x9257\n0xE157\t0x938C\n0xE158\t0x4EAC\n0xE159\t0x4FD3\n0xE15A\t0x501E\n0xE15B\t0x50BE\n0xE15C\t0x5106\n0xE15D\t0x52C1\n0xE15E\t0x52CD\n0xE15F\t0x537F\n0xE160\t0x5770\n0xE161\t0x5883\n0xE162\t0x5E9A\n0xE163\t0x5F91\n0xE164\t0x6176\n0xE165\t0x61AC\n0xE166\t0x64CE\n0xE167\t0x656C\n0xE168\t0x666F\n0xE169\t0x66BB\n0xE16A\t0x66F4\n0xE16B\t0x6897\n0xE16C\t0x6D87\n0xE16D\t0x7085\n0xE16E\t0x70F1\n0xE16F\t0x749F\n0xE170\t0x74A5\n0xE171\t0x74CA\n0xE172\t0x75D9\n0xE173\t0x786C\n0xE174\t0x78EC\n0xE175\t0x7ADF\n0xE176\t0x7AF6\n0xE177\t0x7D45\n0xE178\t0x7D93\n0xE179\t0x8015\n0xE17A\t0x803F\n0xE17B\t0x811B\n0xE17C\t0x8396\n0xE17D\t0x8B66\n0xE17E\t0x8F15\n0xE191\t0x9015\n0xE192\t0x93E1\n0xE193\t0x9803\n0xE194\t0x9838\n0xE195\t0x9A5A\n0xE196\t0x9BE8\n0xE197\t0x4FC2\n0xE198\t0x5553\n0xE199\t0x583A\n0xE19A\t0x5951\n0xE19B\t0x5B63\n0xE19C\t0x5C46\n0xE19D\t0x60B8\n0xE19E\t0x6212\n0xE19F\t0x6842\n0xE1A0\t0x68B0\n0xE1A1\t0x68E8\n0xE1A2\t0x6EAA\n0xE1A3\t0x754C\n0xE1A4\t0x7678\n0xE1A5\t0x78CE\n0xE1A6\t0x7A3D\n0xE1A7\t0x7CFB\n0xE1A8\t0x7E6B\n0xE1A9\t0x7E7C\n0xE1AA\t0x8A08\n0xE1AB\t0x8AA1\n0xE1AC\t0x8C3F\n0xE1AD\t0x968E\n0xE1AE\t0x9DC4\n0xE1AF\t0x53E4\n0xE1B0\t0x53E9\n0xE1B1\t0x544A\n0xE1B2\t0x5471\n0xE1B3\t0x56FA\n0xE1B4\t0x59D1\n0xE1B5\t0x5B64\n0xE1B6\t0x5C3B\n0xE1B7\t0x5EAB\n0xE1B8\t0x62F7\n0xE1B9\t0x6537\n0xE1BA\t0x6545\n0xE1BB\t0x6572\n0xE1BC\t0x66A0\n0xE1BD\t0x67AF\n0xE1BE\t0x69C1\n0xE1BF\t0x6CBD\n0xE1C0\t0x75FC\n0xE1C1\t0x7690\n0xE1C2\t0x777E\n0xE1C3\t0x7A3F\n0xE1C4\t0x7F94\n0xE1C5\t0x8003\n0xE1C6\t0x80A1\n0xE1C7\t0x818F\n0xE1C8\t0x82E6\n0xE1C9\t0x82FD\n0xE1CA\t0x83F0\n0xE1CB\t0x85C1\n0xE1CC\t0x8831\n0xE1CD\t0x88B4\n0xE1CE\t0x8AA5\n0xE1CF\t0xF903\n0xE1D0\t0x8F9C\n0xE1D1\t0x932E\n0xE1D2\t0x96C7\n0xE1D3\t0x9867\n0xE1D4\t0x9AD8\n0xE1D5\t0x9F13\n0xE1D6\t0x54ED\n0xE1D7\t0x659B\n0xE1D8\t0x66F2\n0xE1D9\t0x688F\n0xE1DA\t0x7A40\n0xE1DB\t0x8C37\n0xE1DC\t0x9D60\n0xE1DD\t0x56F0\n0xE1DE\t0x5764\n0xE1DF\t0x5D11\n0xE1E0\t0x6606\n0xE1E1\t0x68B1\n0xE1E2\t0x68CD\n0xE1E3\t0x6EFE\n0xE1E4\t0x7428\n0xE1E5\t0x889E\n0xE1E6\t0x9BE4\n0xE1E7\t0x6C68\n0xE1E8\t0xF904\n0xE1E9\t0x9AA8\n0xE1EA\t0x4F9B\n0xE1EB\t0x516C\n0xE1EC\t0x5171\n0xE1ED\t0x529F\n0xE1EE\t0x5B54\n0xE1EF\t0x5DE5\n0xE1F0\t0x6050\n0xE1F1\t0x606D\n0xE1F2\t0x62F1\n0xE1F3\t0x63A7\n0xE1F4\t0x653B\n0xE1F5\t0x73D9\n0xE1F6\t0x7A7A\n0xE1F7\t0x86A3\n0xE1F8\t0x8CA2\n0xE1F9\t0x978F\n0xE1FA\t0x4E32\n0xE1FB\t0x5BE1\n0xE1FC\t0x6208\n0xE1FD\t0x679C\n0xE1FE\t0x74DC\n0xE231\t0x79D1\n0xE232\t0x83D3\n0xE233\t0x8A87\n0xE234\t0x8AB2\n0xE235\t0x8DE8\n0xE236\t0x904E\n0xE237\t0x934B\n0xE238\t0x9846\n0xE239\t0x5ED3\n0xE23A\t0x69E8\n0xE23B\t0x85FF\n0xE23C\t0x90ED\n0xE23D\t0xF905\n0xE23E\t0x51A0\n0xE23F\t0x5B98\n0xE240\t0x5BEC\n0xE241\t0x6163\n0xE242\t0x68FA\n0xE243\t0x6B3E\n0xE244\t0x704C\n0xE245\t0x742F\n0xE246\t0x74D8\n0xE247\t0x7BA1\n0xE248\t0x7F50\n0xE249\t0x83C5\n0xE24A\t0x89C0\n0xE24B\t0x8CAB\n0xE24C\t0x95DC\n0xE24D\t0x9928\n0xE24E\t0x522E\n0xE24F\t0x605D\n0xE250\t0x62EC\n0xE251\t0x9002\n0xE252\t0x4F8A\n0xE253\t0x5149\n0xE254\t0x5321\n0xE255\t0x58D9\n0xE256\t0x5EE3\n0xE257\t0x66E0\n0xE258\t0x6D38\n0xE259\t0x709A\n0xE25A\t0x72C2\n0xE25B\t0x73D6\n0xE25C\t0x7B50\n0xE25D\t0x80F1\n0xE25E\t0x945B\n0xE25F\t0x5366\n0xE260\t0x639B\n0xE261\t0x7F6B\n0xE262\t0x4E56\n0xE263\t0x5080\n0xE264\t0x584A\n0xE265\t0x58DE\n0xE266\t0x602A\n0xE267\t0x6127\n0xE268\t0x62D0\n0xE269\t0x69D0\n0xE26A\t0x9B41\n0xE26B\t0x5B8F\n0xE26C\t0x7D18\n0xE26D\t0x80B1\n0xE26E\t0x8F5F\n0xE26F\t0x4EA4\n0xE270\t0x50D1\n0xE271\t0x54AC\n0xE272\t0x55AC\n0xE273\t0x5B0C\n0xE274\t0x5DA0\n0xE275\t0x5DE7\n0xE276\t0x652A\n0xE277\t0x654E\n0xE278\t0x6821\n0xE279\t0x6A4B\n0xE27A\t0x72E1\n0xE27B\t0x768E\n0xE27C\t0x77EF\n0xE27D\t0x7D5E\n0xE27E\t0x7FF9\n0xE291\t0x81A0\n0xE292\t0x854E\n0xE293\t0x86DF\n0xE294\t0x8F03\n0xE295\t0x8F4E\n0xE296\t0x90CA\n0xE297\t0x9903\n0xE298\t0x9A55\n0xE299\t0x9BAB\n0xE29A\t0x4E18\n0xE29B\t0x4E45\n0xE29C\t0x4E5D\n0xE29D\t0x4EC7\n0xE29E\t0x4FF1\n0xE29F\t0x5177\n0xE2A0\t0x52FE\n0xE2A1\t0x5340\n0xE2A2\t0x53E3\n0xE2A3\t0x53E5\n0xE2A4\t0x548E\n0xE2A5\t0x5614\n0xE2A6\t0x5775\n0xE2A7\t0x57A2\n0xE2A8\t0x5BC7\n0xE2A9\t0x5D87\n0xE2AA\t0x5ED0\n0xE2AB\t0x61FC\n0xE2AC\t0x62D8\n0xE2AD\t0x6551\n0xE2AE\t0x67B8\n0xE2AF\t0x67E9\n0xE2B0\t0x69CB\n0xE2B1\t0x6B50\n0xE2B2\t0x6BC6\n0xE2B3\t0x6BEC\n0xE2B4\t0x6C42\n0xE2B5\t0x6E9D\n0xE2B6\t0x7078\n0xE2B7\t0x72D7\n0xE2B8\t0x7396\n0xE2B9\t0x7403\n0xE2BA\t0x77BF\n0xE2BB\t0x77E9\n0xE2BC\t0x7A76\n0xE2BD\t0x7D7F\n0xE2BE\t0x8009\n0xE2BF\t0x81FC\n0xE2C0\t0x8205\n0xE2C1\t0x820A\n0xE2C2\t0x82DF\n0xE2C3\t0x8862\n0xE2C4\t0x8B33\n0xE2C5\t0x8CFC\n0xE2C6\t0x8EC0\n0xE2C7\t0x9011\n0xE2C8\t0x90B1\n0xE2C9\t0x9264\n0xE2CA\t0x92B6\n0xE2CB\t0x99D2\n0xE2CC\t0x9A45\n0xE2CD\t0x9CE9\n0xE2CE\t0x9DD7\n0xE2CF\t0x9F9C\n0xE2D0\t0x570B\n0xE2D1\t0x5C40\n0xE2D2\t0x83CA\n0xE2D3\t0x97A0\n0xE2D4\t0x97AB\n0xE2D5\t0x9EB4\n0xE2D6\t0x541B\n0xE2D7\t0x7A98\n0xE2D8\t0x7FA4\n0xE2D9\t0x88D9\n0xE2DA\t0x8ECD\n0xE2DB\t0x90E1\n0xE2DC\t0x5800\n0xE2DD\t0x5C48\n0xE2DE\t0x6398\n0xE2DF\t0x7A9F\n0xE2E0\t0x5BAE\n0xE2E1\t0x5F13\n0xE2E2\t0x7A79\n0xE2E3\t0x7AAE\n0xE2E4\t0x828E\n0xE2E5\t0x8EAC\n0xE2E6\t0x5026\n0xE2E7\t0x5238\n0xE2E8\t0x52F8\n0xE2E9\t0x5377\n0xE2EA\t0x5708\n0xE2EB\t0x62F3\n0xE2EC\t0x6372\n0xE2ED\t0x6B0A\n0xE2EE\t0x6DC3\n0xE2EF\t0x7737\n0xE2F0\t0x53A5\n0xE2F1\t0x7357\n0xE2F2\t0x8568\n0xE2F3\t0x8E76\n0xE2F4\t0x95D5\n0xE2F5\t0x673A\n0xE2F6\t0x6AC3\n0xE2F7\t0x6F70\n0xE2F8\t0x8A6D\n0xE2F9\t0x8ECC\n0xE2FA\t0x994B\n0xE2FB\t0xF906\n0xE2FC\t0x6677\n0xE2FD\t0x6B78\n0xE2FE\t0x8CB4\n0xE331\t0x9B3C\n0xE332\t0xF907\n0xE333\t0x53EB\n0xE334\t0x572D\n0xE335\t0x594E\n0xE336\t0x63C6\n0xE337\t0x69FB\n0xE338\t0x73EA\n0xE339\t0x7845\n0xE33A\t0x7ABA\n0xE33B\t0x7AC5\n0xE33C\t0x7CFE\n0xE33D\t0x8475\n0xE33E\t0x898F\n0xE33F\t0x8D73\n0xE340\t0x9035\n0xE341\t0x95A8\n0xE342\t0x52FB\n0xE343\t0x5747\n0xE344\t0x7547\n0xE345\t0x7B60\n0xE346\t0x83CC\n0xE347\t0x921E\n0xE348\t0xF908\n0xE349\t0x6A58\n0xE34A\t0x514B\n0xE34B\t0x524B\n0xE34C\t0x5287\n0xE34D\t0x621F\n0xE34E\t0x68D8\n0xE34F\t0x6975\n0xE350\t0x9699\n0xE351\t0x50C5\n0xE352\t0x52A4\n0xE353\t0x52E4\n0xE354\t0x61C3\n0xE355\t0x65A4\n0xE356\t0x6839\n0xE357\t0x69FF\n0xE358\t0x747E\n0xE359\t0x7B4B\n0xE35A\t0x82B9\n0xE35B\t0x83EB\n0xE35C\t0x89B2\n0xE35D\t0x8B39\n0xE35E\t0x8FD1\n0xE35F\t0x9949\n0xE360\t0xF909\n0xE361\t0x4ECA\n0xE362\t0x5997\n0xE363\t0x64D2\n0xE364\t0x6611\n0xE365\t0x6A8E\n0xE366\t0x7434\n0xE367\t0x7981\n0xE368\t0x79BD\n0xE369\t0x82A9\n0xE36A\t0x887E\n0xE36B\t0x887F\n0xE36C\t0x895F\n0xE36D\t0xF90A\n0xE36E\t0x9326\n0xE36F\t0x4F0B\n0xE370\t0x53CA\n0xE371\t0x6025\n0xE372\t0x6271\n0xE373\t0x6C72\n0xE374\t0x7D1A\n0xE375\t0x7D66\n0xE376\t0x4E98\n0xE377\t0x5162\n0xE378\t0x77DC\n0xE379\t0x80AF\n0xE37A\t0x4F01\n0xE37B\t0x4F0E\n0xE37C\t0x5176\n0xE37D\t0x5180\n0xE37E\t0x55DC\n0xE391\t0x5668\n0xE392\t0x573B\n0xE393\t0x57FA\n0xE394\t0x57FC\n0xE395\t0x5914\n0xE396\t0x5947\n0xE397\t0x5993\n0xE398\t0x5BC4\n0xE399\t0x5C90\n0xE39A\t0x5D0E\n0xE39B\t0x5DF1\n0xE39C\t0x5E7E\n0xE39D\t0x5FCC\n0xE39E\t0x6280\n0xE39F\t0x65D7\n0xE3A0\t0x65E3\n0xE3A1\t0x671E\n0xE3A2\t0x671F\n0xE3A3\t0x675E\n0xE3A4\t0x68CB\n0xE3A5\t0x68C4\n0xE3A6\t0x6A5F\n0xE3A7\t0x6B3A\n0xE3A8\t0x6C23\n0xE3A9\t0x6C7D\n0xE3AA\t0x6C82\n0xE3AB\t0x6DC7\n0xE3AC\t0x7398\n0xE3AD\t0x7426\n0xE3AE\t0x742A\n0xE3AF\t0x7482\n0xE3B0\t0x74A3\n0xE3B1\t0x7578\n0xE3B2\t0x757F\n0xE3B3\t0x7881\n0xE3B4\t0x78EF\n0xE3B5\t0x7941\n0xE3B6\t0x7947\n0xE3B7\t0x7948\n0xE3B8\t0x797A\n0xE3B9\t0x7B95\n0xE3BA\t0x7D00\n0xE3BB\t0x7DBA\n0xE3BC\t0x7F88\n0xE3BD\t0x8006\n0xE3BE\t0x802D\n0xE3BF\t0x808C\n0xE3C0\t0x8A18\n0xE3C1\t0x8B4F\n0xE3C2\t0x8C48\n0xE3C3\t0x8D77\n0xE3C4\t0x9321\n0xE3C5\t0x9324\n0xE3C6\t0x98E2\n0xE3C7\t0x9951\n0xE3C8\t0x9A0E\n0xE3C9\t0x9A0F\n0xE3CA\t0x9A65\n0xE3CB\t0x9E92\n0xE3CC\t0x7DCA\n0xE3CD\t0x4F76\n0xE3CE\t0x5409\n0xE3CF\t0x62EE\n0xE3D0\t0x6854\n0xE3D1\t0x91D1\n0xE3D2\t0x55AB\n0xE3D3\t0x513A\n0xE3D4\t0xF90B\n0xE3D5\t0xF90C\n0xE3D6\t0x5A1C\n0xE3D7\t0x61E6\n0xE3D8\t0xF90D\n0xE3D9\t0x62CF\n0xE3DA\t0x62FF\n0xE3DB\t0xF90E\n0xE3DC\t0xF90F\n0xE3DD\t0xF910\n0xE3DE\t0xF911\n0xE3DF\t0xF912\n0xE3E0\t0xF913\n0xE3E1\t0x90A3\n0xE3E2\t0xF914\n0xE3E3\t0xF915\n0xE3E4\t0xF916\n0xE3E5\t0xF917\n0xE3E6\t0xF918\n0xE3E7\t0x8AFE\n0xE3E8\t0xF919\n0xE3E9\t0xF91A\n0xE3EA\t0xF91B\n0xE3EB\t0xF91C\n0xE3EC\t0x6696\n0xE3ED\t0xF91D\n0xE3EE\t0x7156\n0xE3EF\t0xF91E\n0xE3F0\t0xF91F\n0xE3F1\t0x96E3\n0xE3F2\t0xF920\n0xE3F3\t0x634F\n0xE3F4\t0x637A\n0xE3F5\t0x5357\n0xE3F6\t0xF921\n0xE3F7\t0x678F\n0xE3F8\t0x6960\n0xE3F9\t0x6E73\n0xE3FA\t0xF922\n0xE3FB\t0x7537\n0xE3FC\t0xF923\n0xE3FD\t0xF924\n0xE3FE\t0xF925\n0xE431\t0x7D0D\n0xE432\t0xF926\n0xE433\t0xF927\n0xE434\t0x8872\n0xE435\t0x56CA\n0xE436\t0x5A18\n0xE437\t0xF928\n0xE438\t0xF929\n0xE439\t0xF92A\n0xE43A\t0xF92B\n0xE43B\t0xF92C\n0xE43C\t0x4E43\n0xE43D\t0xF92D\n0xE43E\t0x5167\n0xE43F\t0x5948\n0xE440\t0x67F0\n0xE441\t0x8010\n0xE442\t0xF92E\n0xE443\t0x5973\n0xE444\t0x5E74\n0xE445\t0x649A\n0xE446\t0x79CA\n0xE447\t0x5FF5\n0xE448\t0x606C\n0xE449\t0x62C8\n0xE44A\t0x637B\n0xE44B\t0x5BE7\n0xE44C\t0x5BD7\n0xE44D\t0x52AA\n0xE44E\t0xF92F\n0xE44F\t0x5974\n0xE450\t0x5F29\n0xE451\t0x6012\n0xE452\t0xF930\n0xE453\t0xF931\n0xE454\t0xF932\n0xE455\t0x7459\n0xE456\t0xF933\n0xE457\t0xF934\n0xE458\t0xF935\n0xE459\t0xF936\n0xE45A\t0xF937\n0xE45B\t0xF938\n0xE45C\t0x99D1\n0xE45D\t0xF939\n0xE45E\t0xF93A\n0xE45F\t0xF93B\n0xE460\t0xF93C\n0xE461\t0xF93D\n0xE462\t0xF93E\n0xE463\t0xF93F\n0xE464\t0xF940\n0xE465\t0xF941\n0xE466\t0xF942\n0xE467\t0xF943\n0xE468\t0x6FC3\n0xE469\t0xF944\n0xE46A\t0xF945\n0xE46B\t0x81BF\n0xE46C\t0x8FB2\n0xE46D\t0x60F1\n0xE46E\t0xF946\n0xE46F\t0xF947\n0xE470\t0x8166\n0xE471\t0xF948\n0xE472\t0xF949\n0xE473\t0x5C3F\n0xE474\t0xF94A\n0xE475\t0xF94B\n0xE476\t0xF94C\n0xE477\t0xF94D\n0xE478\t0xF94E\n0xE479\t0xF94F\n0xE47A\t0xF950\n0xE47B\t0xF951\n0xE47C\t0x5AE9\n0xE47D\t0x8A25\n0xE47E\t0x677B\n0xE491\t0x7D10\n0xE492\t0xF952\n0xE493\t0xF953\n0xE494\t0xF954\n0xE495\t0xF955\n0xE496\t0xF956\n0xE497\t0xF957\n0xE498\t0x80FD\n0xE499\t0xF958\n0xE49A\t0xF959\n0xE49B\t0x5C3C\n0xE49C\t0x6CE5\n0xE49D\t0x533F\n0xE49E\t0x6EBA\n0xE49F\t0x591A\n0xE4A0\t0x8336\n0xE4A1\t0x4E39\n0xE4A2\t0x4EB6\n0xE4A3\t0x4F46\n0xE4A4\t0x55AE\n0xE4A5\t0x5718\n0xE4A6\t0x58C7\n0xE4A7\t0x5F56\n0xE4A8\t0x65B7\n0xE4A9\t0x65E6\n0xE4AA\t0x6A80\n0xE4AB\t0x6BB5\n0xE4AC\t0x6E4D\n0xE4AD\t0x77ED\n0xE4AE\t0x7AEF\n0xE4AF\t0x7C1E\n0xE4B0\t0x7DDE\n0xE4B1\t0x86CB\n0xE4B2\t0x8892\n0xE4B3\t0x9132\n0xE4B4\t0x935B\n0xE4B5\t0x64BB\n0xE4B6\t0x6FBE\n0xE4B7\t0x737A\n0xE4B8\t0x75B8\n0xE4B9\t0x9054\n0xE4BA\t0x5556\n0xE4BB\t0x574D\n0xE4BC\t0x61BA\n0xE4BD\t0x64D4\n0xE4BE\t0x66C7\n0xE4BF\t0x6DE1\n0xE4C0\t0x6E5B\n0xE4C1\t0x6F6D\n0xE4C2\t0x6FB9\n0xE4C3\t0x75F0\n0xE4C4\t0x8043\n0xE4C5\t0x81BD\n0xE4C6\t0x8541\n0xE4C7\t0x8983\n0xE4C8\t0x8AC7\n0xE4C9\t0x8B5A\n0xE4CA\t0x931F\n0xE4CB\t0x6C93\n0xE4CC\t0x7553\n0xE4CD\t0x7B54\n0xE4CE\t0x8E0F\n0xE4CF\t0x905D\n0xE4D0\t0x5510\n0xE4D1\t0x5802\n0xE4D2\t0x5858\n0xE4D3\t0x5E62\n0xE4D4\t0x6207\n0xE4D5\t0x649E\n0xE4D6\t0x68E0\n0xE4D7\t0x7576\n0xE4D8\t0x7CD6\n0xE4D9\t0x87B3\n0xE4DA\t0x9EE8\n0xE4DB\t0x4EE3\n0xE4DC\t0x5788\n0xE4DD\t0x576E\n0xE4DE\t0x5927\n0xE4DF\t0x5C0D\n0xE4E0\t0x5CB1\n0xE4E1\t0x5E36\n0xE4E2\t0x5F85\n0xE4E3\t0x6234\n0xE4E4\t0x64E1\n0xE4E5\t0x73B3\n0xE4E6\t0x81FA\n0xE4E7\t0x888B\n0xE4E8\t0x8CB8\n0xE4E9\t0x968A\n0xE4EA\t0x9EDB\n0xE4EB\t0x5B85\n0xE4EC\t0x5FB7\n0xE4ED\t0x60B3\n0xE4EE\t0x5012\n0xE4EF\t0x5200\n0xE4F0\t0x5230\n0xE4F1\t0x5716\n0xE4F2\t0x5835\n0xE4F3\t0x5857\n0xE4F4\t0x5C0E\n0xE4F5\t0x5C60\n0xE4F6\t0x5CF6\n0xE4F7\t0x5D8B\n0xE4F8\t0x5EA6\n0xE4F9\t0x5F92\n0xE4FA\t0x60BC\n0xE4FB\t0x6311\n0xE4FC\t0x6389\n0xE4FD\t0x6417\n0xE4FE\t0x6843\n0xE531\t0x68F9\n0xE532\t0x6AC2\n0xE533\t0x6DD8\n0xE534\t0x6E21\n0xE535\t0x6ED4\n0xE536\t0x6FE4\n0xE537\t0x71FE\n0xE538\t0x76DC\n0xE539\t0x7779\n0xE53A\t0x79B1\n0xE53B\t0x7A3B\n0xE53C\t0x8404\n0xE53D\t0x89A9\n0xE53E\t0x8CED\n0xE53F\t0x8DF3\n0xE540\t0x8E48\n0xE541\t0x9003\n0xE542\t0x9014\n0xE543\t0x9053\n0xE544\t0x90FD\n0xE545\t0x934D\n0xE546\t0x9676\n0xE547\t0x97DC\n0xE548\t0x6BD2\n0xE549\t0x7006\n0xE54A\t0x7258\n0xE54B\t0x72A2\n0xE54C\t0x7368\n0xE54D\t0x7763\n0xE54E\t0x79BF\n0xE54F\t0x7BE4\n0xE550\t0x7E9B\n0xE551\t0x8B80\n0xE552\t0x58A9\n0xE553\t0x60C7\n0xE554\t0x6566\n0xE555\t0x65FD\n0xE556\t0x66BE\n0xE557\t0x6C8C\n0xE558\t0x711E\n0xE559\t0x71C9\n0xE55A\t0x8C5A\n0xE55B\t0x9813\n0xE55C\t0x4E6D\n0xE55D\t0x7A81\n0xE55E\t0x4EDD\n0xE55F\t0x51AC\n0xE560\t0x51CD\n0xE561\t0x52D5\n0xE562\t0x540C\n0xE563\t0x61A7\n0xE564\t0x6771\n0xE565\t0x6850\n0xE566\t0x68DF\n0xE567\t0x6D1E\n0xE568\t0x6F7C\n0xE569\t0x75BC\n0xE56A\t0x77B3\n0xE56B\t0x7AE5\n0xE56C\t0x80F4\n0xE56D\t0x8463\n0xE56E\t0x9285\n0xE56F\t0x515C\n0xE570\t0x6597\n0xE571\t0x675C\n0xE572\t0x6793\n0xE573\t0x75D8\n0xE574\t0x7AC7\n0xE575\t0x8373\n0xE576\t0xF95A\n0xE577\t0x8C46\n0xE578\t0x9017\n0xE579\t0x982D\n0xE57A\t0x5C6F\n0xE57B\t0x81C0\n0xE57C\t0x829A\n0xE57D\t0x9041\n0xE57E\t0x906F\n0xE591\t0x920D\n0xE592\t0x5F97\n0xE593\t0x5D9D\n0xE594\t0x6A59\n0xE595\t0x71C8\n0xE596\t0x767B\n0xE597\t0x7B49\n0xE598\t0x85E4\n0xE599\t0x8B04\n0xE59A\t0x9127\n0xE59B\t0x9A30\n0xE59C\t0x5587\n0xE59D\t0x61F6\n0xE59E\t0xF95B\n0xE59F\t0x7669\n0xE5A0\t0x7F85\n0xE5A1\t0x863F\n0xE5A2\t0x87BA\n0xE5A3\t0x88F8\n0xE5A4\t0x908F\n0xE5A5\t0xF95C\n0xE5A6\t0x6D1B\n0xE5A7\t0x70D9\n0xE5A8\t0x73DE\n0xE5A9\t0x7D61\n0xE5AA\t0x843D\n0xE5AB\t0xF95D\n0xE5AC\t0x916A\n0xE5AD\t0x99F1\n0xE5AE\t0xF95E\n0xE5AF\t0x4E82\n0xE5B0\t0x5375\n0xE5B1\t0x6B04\n0xE5B2\t0x6B12\n0xE5B3\t0x703E\n0xE5B4\t0x721B\n0xE5B5\t0x862D\n0xE5B6\t0x9E1E\n0xE5B7\t0x524C\n0xE5B8\t0x8FA3\n0xE5B9\t0x5D50\n0xE5BA\t0x64E5\n0xE5BB\t0x652C\n0xE5BC\t0x6B16\n0xE5BD\t0x6FEB\n0xE5BE\t0x7C43\n0xE5BF\t0x7E9C\n0xE5C0\t0x85CD\n0xE5C1\t0x8964\n0xE5C2\t0x89BD\n0xE5C3\t0x62C9\n0xE5C4\t0x81D8\n0xE5C5\t0x881F\n0xE5C6\t0x5ECA\n0xE5C7\t0x6717\n0xE5C8\t0x6D6A\n0xE5C9\t0x72FC\n0xE5CA\t0x7405\n0xE5CB\t0x746F\n0xE5CC\t0x8782\n0xE5CD\t0x90DE\n0xE5CE\t0x4F86\n0xE5CF\t0x5D0D\n0xE5D0\t0x5FA0\n0xE5D1\t0x840A\n0xE5D2\t0x51B7\n0xE5D3\t0x63A0\n0xE5D4\t0x7565\n0xE5D5\t0x4EAE\n0xE5D6\t0x5006\n0xE5D7\t0x5169\n0xE5D8\t0x51C9\n0xE5D9\t0x6881\n0xE5DA\t0x6A11\n0xE5DB\t0x7CAE\n0xE5DC\t0x7CB1\n0xE5DD\t0x7CE7\n0xE5DE\t0x826F\n0xE5DF\t0x8AD2\n0xE5E0\t0x8F1B\n0xE5E1\t0x91CF\n0xE5E2\t0x4FB6\n0xE5E3\t0x5137\n0xE5E4\t0x52F5\n0xE5E5\t0x5442\n0xE5E6\t0x5EEC\n0xE5E7\t0x616E\n0xE5E8\t0x623E\n0xE5E9\t0x65C5\n0xE5EA\t0x6ADA\n0xE5EB\t0x6FFE\n0xE5EC\t0x792A\n0xE5ED\t0x85DC\n0xE5EE\t0x8823\n0xE5EF\t0x95AD\n0xE5F0\t0x9A62\n0xE5F1\t0x9A6A\n0xE5F2\t0x9E97\n0xE5F3\t0x9ECE\n0xE5F4\t0x529B\n0xE5F5\t0x66C6\n0xE5F6\t0x6B77\n0xE5F7\t0x701D\n0xE5F8\t0x792B\n0xE5F9\t0x8F62\n0xE5FA\t0x9742\n0xE5FB\t0x6190\n0xE5FC\t0x6200\n0xE5FD\t0x6523\n0xE5FE\t0x6F23\n0xE631\t0x7149\n0xE632\t0x7489\n0xE633\t0x7DF4\n0xE634\t0x806F\n0xE635\t0x84EE\n0xE636\t0x8F26\n0xE637\t0x9023\n0xE638\t0x934A\n0xE639\t0x51BD\n0xE63A\t0x5217\n0xE63B\t0x52A3\n0xE63C\t0x6D0C\n0xE63D\t0x70C8\n0xE63E\t0x88C2\n0xE63F\t0x5EC9\n0xE640\t0x6582\n0xE641\t0x6BAE\n0xE642\t0x6FC2\n0xE643\t0x7C3E\n0xE644\t0x7375\n0xE645\t0x4EE4\n0xE646\t0x4F36\n0xE647\t0x56F9\n0xE648\t0xF95F\n0xE649\t0x5CBA\n0xE64A\t0x5DBA\n0xE64B\t0x601C\n0xE64C\t0x73B2\n0xE64D\t0x7B2D\n0xE64E\t0x7F9A\n0xE64F\t0x7FCE\n0xE650\t0x8046\n0xE651\t0x901E\n0xE652\t0x9234\n0xE653\t0x96F6\n0xE654\t0x9748\n0xE655\t0x9818\n0xE656\t0x9F61\n0xE657\t0x4F8B\n0xE658\t0x6FA7\n0xE659\t0x79AE\n0xE65A\t0x91B4\n0xE65B\t0x96B7\n0xE65C\t0x52DE\n0xE65D\t0xF960\n0xE65E\t0x6488\n0xE65F\t0x64C4\n0xE660\t0x6AD3\n0xE661\t0x6F5E\n0xE662\t0x7018\n0xE663\t0x7210\n0xE664\t0x76E7\n0xE665\t0x8001\n0xE666\t0x8606\n0xE667\t0x865C\n0xE668\t0x8DEF\n0xE669\t0x8F05\n0xE66A\t0x9732\n0xE66B\t0x9B6F\n0xE66C\t0x9DFA\n0xE66D\t0x9E75\n0xE66E\t0x788C\n0xE66F\t0x797F\n0xE670\t0x7DA0\n0xE671\t0x83C9\n0xE672\t0x9304\n0xE673\t0x9E7F\n0xE674\t0x9E93\n0xE675\t0x8AD6\n0xE676\t0x58DF\n0xE677\t0x5F04\n0xE678\t0x6727\n0xE679\t0x7027\n0xE67A\t0x74CF\n0xE67B\t0x7C60\n0xE67C\t0x807E\n0xE67D\t0x5121\n0xE67E\t0x7028\n0xE691\t0x7262\n0xE692\t0x78CA\n0xE693\t0x8CC2\n0xE694\t0x8CDA\n0xE695\t0x8CF4\n0xE696\t0x96F7\n0xE697\t0x4E86\n0xE698\t0x50DA\n0xE699\t0x5BEE\n0xE69A\t0x5ED6\n0xE69B\t0x6599\n0xE69C\t0x71CE\n0xE69D\t0x7642\n0xE69E\t0x77AD\n0xE69F\t0x804A\n0xE6A0\t0x84FC\n0xE6A1\t0x907C\n0xE6A2\t0x9B27\n0xE6A3\t0x9F8D\n0xE6A4\t0x58D8\n0xE6A5\t0x5A41\n0xE6A6\t0x5C62\n0xE6A7\t0x6A13\n0xE6A8\t0x6DDA\n0xE6A9\t0x6F0F\n0xE6AA\t0x763B\n0xE6AB\t0x7D2F\n0xE6AC\t0x7E37\n0xE6AD\t0x851E\n0xE6AE\t0x8938\n0xE6AF\t0x93E4\n0xE6B0\t0x964B\n0xE6B1\t0x5289\n0xE6B2\t0x65D2\n0xE6B3\t0x67F3\n0xE6B4\t0x69B4\n0xE6B5\t0x6D41\n0xE6B6\t0x6E9C\n0xE6B7\t0x700F\n0xE6B8\t0x7409\n0xE6B9\t0x7460\n0xE6BA\t0x7559\n0xE6BB\t0x7624\n0xE6BC\t0x786B\n0xE6BD\t0x8B2C\n0xE6BE\t0x985E\n0xE6BF\t0x516D\n0xE6C0\t0x622E\n0xE6C1\t0x9678\n0xE6C2\t0x4F96\n0xE6C3\t0x502B\n0xE6C4\t0x5D19\n0xE6C5\t0x6DEA\n0xE6C6\t0x7DB8\n0xE6C7\t0x8F2A\n0xE6C8\t0x5F8B\n0xE6C9\t0x6144\n0xE6CA\t0x6817\n0xE6CB\t0xF961\n0xE6CC\t0x9686\n0xE6CD\t0x52D2\n0xE6CE\t0x808B\n0xE6CF\t0x51DC\n0xE6D0\t0x51CC\n0xE6D1\t0x695E\n0xE6D2\t0x7A1C\n0xE6D3\t0x7DBE\n0xE6D4\t0x83F1\n0xE6D5\t0x9675\n0xE6D6\t0x4FDA\n0xE6D7\t0x5229\n0xE6D8\t0x5398\n0xE6D9\t0x540F\n0xE6DA\t0x550E\n0xE6DB\t0x5C65\n0xE6DC\t0x60A7\n0xE6DD\t0x674E\n0xE6DE\t0x68A8\n0xE6DF\t0x6D6C\n0xE6E0\t0x7281\n0xE6E1\t0x72F8\n0xE6E2\t0x7406\n0xE6E3\t0x7483\n0xE6E4\t0xF962\n0xE6E5\t0x75E2\n0xE6E6\t0x7C6C\n0xE6E7\t0x7F79\n0xE6E8\t0x7FB8\n0xE6E9\t0x8389\n0xE6EA\t0x88CF\n0xE6EB\t0x88E1\n0xE6EC\t0x91CC\n0xE6ED\t0x91D0\n0xE6EE\t0x96E2\n0xE6EF\t0x9BC9\n0xE6F0\t0x541D\n0xE6F1\t0x6F7E\n0xE6F2\t0x71D0\n0xE6F3\t0x7498\n0xE6F4\t0x85FA\n0xE6F5\t0x8EAA\n0xE6F6\t0x96A3\n0xE6F7\t0x9C57\n0xE6F8\t0x9E9F\n0xE6F9\t0x6797\n0xE6FA\t0x6DCB\n0xE6FB\t0x7433\n0xE6FC\t0x81E8\n0xE6FD\t0x9716\n0xE6FE\t0x782C\n0xE731\t0x7ACB\n0xE732\t0x7B20\n0xE733\t0x7C92\n0xE734\t0x6469\n0xE735\t0x746A\n0xE736\t0x75F2\n0xE737\t0x78BC\n0xE738\t0x78E8\n0xE739\t0x99AC\n0xE73A\t0x9B54\n0xE73B\t0x9EBB\n0xE73C\t0x5BDE\n0xE73D\t0x5E55\n0xE73E\t0x6F20\n0xE73F\t0x819C\n0xE740\t0x83AB\n0xE741\t0x9088\n0xE742\t0x4E07\n0xE743\t0x534D\n0xE744\t0x5A29\n0xE745\t0x5DD2\n0xE746\t0x5F4E\n0xE747\t0x6162\n0xE748\t0x633D\n0xE749\t0x6669\n0xE74A\t0x66FC\n0xE74B\t0x6EFF\n0xE74C\t0x6F2B\n0xE74D\t0x7063\n0xE74E\t0x779E\n0xE74F\t0x842C\n0xE750\t0x8513\n0xE751\t0x883B\n0xE752\t0x8F13\n0xE753\t0x9945\n0xE754\t0x9C3B\n0xE755\t0x551C\n0xE756\t0x62B9\n0xE757\t0x672B\n0xE758\t0x6CAB\n0xE759\t0x8309\n0xE75A\t0x896A\n0xE75B\t0x977A\n0xE75C\t0x4EA1\n0xE75D\t0x5984\n0xE75E\t0x5FD8\n0xE75F\t0x5FD9\n0xE760\t0x671B\n0xE761\t0x7DB2\n0xE762\t0x7F54\n0xE763\t0x8292\n0xE764\t0x832B\n0xE765\t0x83BD\n0xE766\t0x8F1E\n0xE767\t0x9099\n0xE768\t0x57CB\n0xE769\t0x59B9\n0xE76A\t0x5A92\n0xE76B\t0x5BD0\n0xE76C\t0x6627\n0xE76D\t0x679A\n0xE76E\t0x6885\n0xE76F\t0x6BCF\n0xE770\t0x7164\n0xE771\t0x7F75\n0xE772\t0x8CB7\n0xE773\t0x8CE3\n0xE774\t0x9081\n0xE775\t0x9B45\n0xE776\t0x8108\n0xE777\t0x8C8A\n0xE778\t0x964C\n0xE779\t0x9A40\n0xE77A\t0x9EA5\n0xE77B\t0x5B5F\n0xE77C\t0x6C13\n0xE77D\t0x731B\n0xE77E\t0x76F2\n0xE791\t0x76DF\n0xE792\t0x840C\n0xE793\t0x51AA\n0xE794\t0x8993\n0xE795\t0x514D\n0xE796\t0x5195\n0xE797\t0x52C9\n0xE798\t0x68C9\n0xE799\t0x6C94\n0xE79A\t0x7704\n0xE79B\t0x7720\n0xE79C\t0x7DBF\n0xE79D\t0x7DEC\n0xE79E\t0x9762\n0xE79F\t0x9EB5\n0xE7A0\t0x6EC5\n0xE7A1\t0x8511\n0xE7A2\t0x51A5\n0xE7A3\t0x540D\n0xE7A4\t0x547D\n0xE7A5\t0x660E\n0xE7A6\t0x669D\n0xE7A7\t0x6927\n0xE7A8\t0x6E9F\n0xE7A9\t0x76BF\n0xE7AA\t0x7791\n0xE7AB\t0x8317\n0xE7AC\t0x84C2\n0xE7AD\t0x879F\n0xE7AE\t0x9169\n0xE7AF\t0x9298\n0xE7B0\t0x9CF4\n0xE7B1\t0x8882\n0xE7B2\t0x4FAE\n0xE7B3\t0x5192\n0xE7B4\t0x52DF\n0xE7B5\t0x59C6\n0xE7B6\t0x5E3D\n0xE7B7\t0x6155\n0xE7B8\t0x6478\n0xE7B9\t0x6479\n0xE7BA\t0x66AE\n0xE7BB\t0x67D0\n0xE7BC\t0x6A21\n0xE7BD\t0x6BCD\n0xE7BE\t0x6BDB\n0xE7BF\t0x725F\n0xE7C0\t0x7261\n0xE7C1\t0x7441\n0xE7C2\t0x7738\n0xE7C3\t0x77DB\n0xE7C4\t0x8017\n0xE7C5\t0x82BC\n0xE7C6\t0x8305\n0xE7C7\t0x8B00\n0xE7C8\t0x8B28\n0xE7C9\t0x8C8C\n0xE7CA\t0x6728\n0xE7CB\t0x6C90\n0xE7CC\t0x7267\n0xE7CD\t0x76EE\n0xE7CE\t0x7766\n0xE7CF\t0x7A46\n0xE7D0\t0x9DA9\n0xE7D1\t0x6B7F\n0xE7D2\t0x6C92\n0xE7D3\t0x5922\n0xE7D4\t0x6726\n0xE7D5\t0x8499\n0xE7D6\t0x536F\n0xE7D7\t0x5893\n0xE7D8\t0x5999\n0xE7D9\t0x5EDF\n0xE7DA\t0x63CF\n0xE7DB\t0x6634\n0xE7DC\t0x6773\n0xE7DD\t0x6E3A\n0xE7DE\t0x732B\n0xE7DF\t0x7AD7\n0xE7E0\t0x82D7\n0xE7E1\t0x9328\n0xE7E2\t0x52D9\n0xE7E3\t0x5DEB\n0xE7E4\t0x61AE\n0xE7E5\t0x61CB\n0xE7E6\t0x620A\n0xE7E7\t0x62C7\n0xE7E8\t0x64AB\n0xE7E9\t0x65E0\n0xE7EA\t0x6959\n0xE7EB\t0x6B66\n0xE7EC\t0x6BCB\n0xE7ED\t0x7121\n0xE7EE\t0x73F7\n0xE7EF\t0x755D\n0xE7F0\t0x7E46\n0xE7F1\t0x821E\n0xE7F2\t0x8302\n0xE7F3\t0x856A\n0xE7F4\t0x8AA3\n0xE7F5\t0x8CBF\n0xE7F6\t0x9727\n0xE7F7\t0x9D61\n0xE7F8\t0x58A8\n0xE7F9\t0x9ED8\n0xE7FA\t0x5011\n0xE7FB\t0x520E\n0xE7FC\t0x543B\n0xE7FD\t0x554F\n0xE7FE\t0x6587\n0xE831\t0x6C76\n0xE832\t0x7D0A\n0xE833\t0x7D0B\n0xE834\t0x805E\n0xE835\t0x868A\n0xE836\t0x9580\n0xE837\t0x96EF\n0xE838\t0x52FF\n0xE839\t0x6C95\n0xE83A\t0x7269\n0xE83B\t0x5473\n0xE83C\t0x5A9A\n0xE83D\t0x5C3E\n0xE83E\t0x5D4B\n0xE83F\t0x5F4C\n0xE840\t0x5FAE\n0xE841\t0x672A\n0xE842\t0x68B6\n0xE843\t0x6963\n0xE844\t0x6E3C\n0xE845\t0x6E44\n0xE846\t0x7709\n0xE847\t0x7C73\n0xE848\t0x7F8E\n0xE849\t0x8587\n0xE84A\t0x8B0E\n0xE84B\t0x8FF7\n0xE84C\t0x9761\n0xE84D\t0x9EF4\n0xE84E\t0x5CB7\n0xE84F\t0x60B6\n0xE850\t0x610D\n0xE851\t0x61AB\n0xE852\t0x654F\n0xE853\t0x65FB\n0xE854\t0x65FC\n0xE855\t0x6C11\n0xE856\t0x6CEF\n0xE857\t0x739F\n0xE858\t0x73C9\n0xE859\t0x7DE1\n0xE85A\t0x9594\n0xE85B\t0x5BC6\n0xE85C\t0x871C\n0xE85D\t0x8B10\n0xE85E\t0x525D\n0xE85F\t0x535A\n0xE860\t0x62CD\n0xE861\t0x640F\n0xE862\t0x64B2\n0xE863\t0x6734\n0xE864\t0x6A38\n0xE865\t0x6CCA\n0xE866\t0x73C0\n0xE867\t0x749E\n0xE868\t0x7B94\n0xE869\t0x7C95\n0xE86A\t0x7E1B\n0xE86B\t0x818A\n0xE86C\t0x8236\n0xE86D\t0x8584\n0xE86E\t0x8FEB\n0xE86F\t0x96F9\n0xE870\t0x99C1\n0xE871\t0x4F34\n0xE872\t0x534A\n0xE873\t0x53CD\n0xE874\t0x53DB\n0xE875\t0x62CC\n0xE876\t0x642C\n0xE877\t0x6500\n0xE878\t0x6591\n0xE879\t0x69C3\n0xE87A\t0x6CEE\n0xE87B\t0x6F58\n0xE87C\t0x73ED\n0xE87D\t0x7554\n0xE87E\t0x7622\n0xE891\t0x76E4\n0xE892\t0x76FC\n0xE893\t0x78D0\n0xE894\t0x78FB\n0xE895\t0x792C\n0xE896\t0x7D46\n0xE897\t0x822C\n0xE898\t0x87E0\n0xE899\t0x8FD4\n0xE89A\t0x9812\n0xE89B\t0x98EF\n0xE89C\t0x52C3\n0xE89D\t0x62D4\n0xE89E\t0x64A5\n0xE89F\t0x6E24\n0xE8A0\t0x6F51\n0xE8A1\t0x767C\n0xE8A2\t0x8DCB\n0xE8A3\t0x91B1\n0xE8A4\t0x9262\n0xE8A5\t0x9AEE\n0xE8A6\t0x9B43\n0xE8A7\t0x5023\n0xE8A8\t0x508D\n0xE8A9\t0x574A\n0xE8AA\t0x59A8\n0xE8AB\t0x5C28\n0xE8AC\t0x5E47\n0xE8AD\t0x5F77\n0xE8AE\t0x623F\n0xE8AF\t0x653E\n0xE8B0\t0x65B9\n0xE8B1\t0x65C1\n0xE8B2\t0x6609\n0xE8B3\t0x678B\n0xE8B4\t0x699C\n0xE8B5\t0x6EC2\n0xE8B6\t0x78C5\n0xE8B7\t0x7D21\n0xE8B8\t0x80AA\n0xE8B9\t0x8180\n0xE8BA\t0x822B\n0xE8BB\t0x82B3\n0xE8BC\t0x84A1\n0xE8BD\t0x868C\n0xE8BE\t0x8A2A\n0xE8BF\t0x8B17\n0xE8C0\t0x90A6\n0xE8C1\t0x9632\n0xE8C2\t0x9F90\n0xE8C3\t0x500D\n0xE8C4\t0x4FF3\n0xE8C5\t0xF963\n0xE8C6\t0x57F9\n0xE8C7\t0x5F98\n0xE8C8\t0x62DC\n0xE8C9\t0x6392\n0xE8CA\t0x676F\n0xE8CB\t0x6E43\n0xE8CC\t0x7119\n0xE8CD\t0x76C3\n0xE8CE\t0x80CC\n0xE8CF\t0x80DA\n0xE8D0\t0x88F4\n0xE8D1\t0x88F5\n0xE8D2\t0x8919\n0xE8D3\t0x8CE0\n0xE8D4\t0x8F29\n0xE8D5\t0x914D\n0xE8D6\t0x966A\n0xE8D7\t0x4F2F\n0xE8D8\t0x4F70\n0xE8D9\t0x5E1B\n0xE8DA\t0x67CF\n0xE8DB\t0x6822\n0xE8DC\t0x767D\n0xE8DD\t0x767E\n0xE8DE\t0x9B44\n0xE8DF\t0x5E61\n0xE8E0\t0x6A0A\n0xE8E1\t0x7169\n0xE8E2\t0x71D4\n0xE8E3\t0x756A\n0xE8E4\t0xF964\n0xE8E5\t0x7E41\n0xE8E6\t0x8543\n0xE8E7\t0x85E9\n0xE8E8\t0x98DC\n0xE8E9\t0x4F10\n0xE8EA\t0x7B4F\n0xE8EB\t0x7F70\n0xE8EC\t0x95A5\n0xE8ED\t0x51E1\n0xE8EE\t0x5E06\n0xE8EF\t0x68B5\n0xE8F0\t0x6C3E\n0xE8F1\t0x6C4E\n0xE8F2\t0x6CDB\n0xE8F3\t0x72AF\n0xE8F4\t0x7BC4\n0xE8F5\t0x8303\n0xE8F6\t0x6CD5\n0xE8F7\t0x743A\n0xE8F8\t0x50FB\n0xE8F9\t0x5288\n0xE8FA\t0x58C1\n0xE8FB\t0x64D8\n0xE8FC\t0x6A97\n0xE8FD\t0x74A7\n0xE8FE\t0x7656\n0xE931\t0x78A7\n0xE932\t0x8617\n0xE933\t0x95E2\n0xE934\t0x9739\n0xE935\t0xF965\n0xE936\t0x535E\n0xE937\t0x5F01\n0xE938\t0x8B8A\n0xE939\t0x8FA8\n0xE93A\t0x8FAF\n0xE93B\t0x908A\n0xE93C\t0x5225\n0xE93D\t0x77A5\n0xE93E\t0x9C49\n0xE93F\t0x9F08\n0xE940\t0x4E19\n0xE941\t0x5002\n0xE942\t0x5175\n0xE943\t0x5C5B\n0xE944\t0x5E77\n0xE945\t0x661E\n0xE946\t0x663A\n0xE947\t0x67C4\n0xE948\t0x68C5\n0xE949\t0x70B3\n0xE94A\t0x7501\n0xE94B\t0x75C5\n0xE94C\t0x79C9\n0xE94D\t0x7ADD\n0xE94E\t0x8F27\n0xE94F\t0x9920\n0xE950\t0x9A08\n0xE951\t0x4FDD\n0xE952\t0x5821\n0xE953\t0x5831\n0xE954\t0x5BF6\n0xE955\t0x666E\n0xE956\t0x6B65\n0xE957\t0x6D11\n0xE958\t0x6E7A\n0xE959\t0x6F7D\n0xE95A\t0x73E4\n0xE95B\t0x752B\n0xE95C\t0x83E9\n0xE95D\t0x88DC\n0xE95E\t0x8913\n0xE95F\t0x8B5C\n0xE960\t0x8F14\n0xE961\t0x4F0F\n0xE962\t0x50D5\n0xE963\t0x5310\n0xE964\t0x535C\n0xE965\t0x5B93\n0xE966\t0x5FA9\n0xE967\t0x670D\n0xE968\t0x798F\n0xE969\t0x8179\n0xE96A\t0x832F\n0xE96B\t0x8514\n0xE96C\t0x8907\n0xE96D\t0x8986\n0xE96E\t0x8F39\n0xE96F\t0x8F3B\n0xE970\t0x99A5\n0xE971\t0x9C12\n0xE972\t0x672C\n0xE973\t0x4E76\n0xE974\t0x4FF8\n0xE975\t0x5949\n0xE976\t0x5C01\n0xE977\t0x5CEF\n0xE978\t0x5CF0\n0xE979\t0x6367\n0xE97A\t0x68D2\n0xE97B\t0x70FD\n0xE97C\t0x71A2\n0xE97D\t0x742B\n0xE97E\t0x7E2B\n0xE991\t0x84EC\n0xE992\t0x8702\n0xE993\t0x9022\n0xE994\t0x92D2\n0xE995\t0x9CF3\n0xE996\t0x4E0D\n0xE997\t0x4ED8\n0xE998\t0x4FEF\n0xE999\t0x5085\n0xE99A\t0x5256\n0xE99B\t0x526F\n0xE99C\t0x5426\n0xE99D\t0x5490\n0xE99E\t0x57E0\n0xE99F\t0x592B\n0xE9A0\t0x5A66\n0xE9A1\t0x5B5A\n0xE9A2\t0x5B75\n0xE9A3\t0x5BCC\n0xE9A4\t0x5E9C\n0xE9A5\t0xF966\n0xE9A6\t0x6276\n0xE9A7\t0x6577\n0xE9A8\t0x65A7\n0xE9A9\t0x6D6E\n0xE9AA\t0x6EA5\n0xE9AB\t0x7236\n0xE9AC\t0x7B26\n0xE9AD\t0x7C3F\n0xE9AE\t0x7F36\n0xE9AF\t0x8150\n0xE9B0\t0x8151\n0xE9B1\t0x819A\n0xE9B2\t0x8240\n0xE9B3\t0x8299\n0xE9B4\t0x83A9\n0xE9B5\t0x8A03\n0xE9B6\t0x8CA0\n0xE9B7\t0x8CE6\n0xE9B8\t0x8CFB\n0xE9B9\t0x8D74\n0xE9BA\t0x8DBA\n0xE9BB\t0x90E8\n0xE9BC\t0x91DC\n0xE9BD\t0x961C\n0xE9BE\t0x9644\n0xE9BF\t0x99D9\n0xE9C0\t0x9CE7\n0xE9C1\t0x5317\n0xE9C2\t0x5206\n0xE9C3\t0x5429\n0xE9C4\t0x5674\n0xE9C5\t0x58B3\n0xE9C6\t0x5954\n0xE9C7\t0x596E\n0xE9C8\t0x5FFF\n0xE9C9\t0x61A4\n0xE9CA\t0x626E\n0xE9CB\t0x6610\n0xE9CC\t0x6C7E\n0xE9CD\t0x711A\n0xE9CE\t0x76C6\n0xE9CF\t0x7C89\n0xE9D0\t0x7CDE\n0xE9D1\t0x7D1B\n0xE9D2\t0x82AC\n0xE9D3\t0x8CC1\n0xE9D4\t0x96F0\n0xE9D5\t0xF967\n0xE9D6\t0x4F5B\n0xE9D7\t0x5F17\n0xE9D8\t0x5F7F\n0xE9D9\t0x62C2\n0xE9DA\t0x5D29\n0xE9DB\t0x670B\n0xE9DC\t0x68DA\n0xE9DD\t0x787C\n0xE9DE\t0x7E43\n0xE9DF\t0x9D6C\n0xE9E0\t0x4E15\n0xE9E1\t0x5099\n0xE9E2\t0x5315\n0xE9E3\t0x532A\n0xE9E4\t0x5351\n0xE9E5\t0x5983\n0xE9E6\t0x5A62\n0xE9E7\t0x5E87\n0xE9E8\t0x60B2\n0xE9E9\t0x618A\n0xE9EA\t0x6249\n0xE9EB\t0x6279\n0xE9EC\t0x6590\n0xE9ED\t0x6787\n0xE9EE\t0x69A7\n0xE9EF\t0x6BD4\n0xE9F0\t0x6BD6\n0xE9F1\t0x6BD7\n0xE9F2\t0x6BD8\n0xE9F3\t0x6CB8\n0xE9F4\t0xF968\n0xE9F5\t0x7435\n0xE9F6\t0x75FA\n0xE9F7\t0x7812\n0xE9F8\t0x7891\n0xE9F9\t0x79D5\n0xE9FA\t0x79D8\n0xE9FB\t0x7C83\n0xE9FC\t0x7DCB\n0xE9FD\t0x7FE1\n0xE9FE\t0x80A5\n0xEA31\t0x813E\n0xEA32\t0x81C2\n0xEA33\t0x83F2\n0xEA34\t0x871A\n0xEA35\t0x88E8\n0xEA36\t0x8AB9\n0xEA37\t0x8B6C\n0xEA38\t0x8CBB\n0xEA39\t0x9119\n0xEA3A\t0x975E\n0xEA3B\t0x98DB\n0xEA3C\t0x9F3B\n0xEA3D\t0x56AC\n0xEA3E\t0x5B2A\n0xEA3F\t0x5F6C\n0xEA40\t0x658C\n0xEA41\t0x6AB3\n0xEA42\t0x6BAF\n0xEA43\t0x6D5C\n0xEA44\t0x6FF1\n0xEA45\t0x7015\n0xEA46\t0x725D\n0xEA47\t0x73AD\n0xEA48\t0x8CA7\n0xEA49\t0x8CD3\n0xEA4A\t0x983B\n0xEA4B\t0x6191\n0xEA4C\t0x6C37\n0xEA4D\t0x8058\n0xEA4E\t0x9A01\n0xEA4F\t0x4E4D\n0xEA50\t0x4E8B\n0xEA51\t0x4E9B\n0xEA52\t0x4ED5\n0xEA53\t0x4F3A\n0xEA54\t0x4F3C\n0xEA55\t0x4F7F\n0xEA56\t0x4FDF\n0xEA57\t0x50FF\n0xEA58\t0x53F2\n0xEA59\t0x53F8\n0xEA5A\t0x5506\n0xEA5B\t0x55E3\n0xEA5C\t0x56DB\n0xEA5D\t0x58EB\n0xEA5E\t0x5962\n0xEA5F\t0x5A11\n0xEA60\t0x5BEB\n0xEA61\t0x5BFA\n0xEA62\t0x5C04\n0xEA63\t0x5DF3\n0xEA64\t0x5E2B\n0xEA65\t0x5F99\n0xEA66\t0x601D\n0xEA67\t0x6368\n0xEA68\t0x659C\n0xEA69\t0x65AF\n0xEA6A\t0x67F6\n0xEA6B\t0x67FB\n0xEA6C\t0x68AD\n0xEA6D\t0x6B7B\n0xEA6E\t0x6C99\n0xEA6F\t0x6CD7\n0xEA70\t0x6E23\n0xEA71\t0x7009\n0xEA72\t0x7345\n0xEA73\t0x7802\n0xEA74\t0x793E\n0xEA75\t0x7940\n0xEA76\t0x7960\n0xEA77\t0x79C1\n0xEA78\t0x7BE9\n0xEA79\t0x7D17\n0xEA7A\t0x7D72\n0xEA7B\t0x8086\n0xEA7C\t0x820D\n0xEA7D\t0x838E\n0xEA7E\t0x84D1\n0xEA91\t0x86C7\n0xEA92\t0x88DF\n0xEA93\t0x8A50\n0xEA94\t0x8A5E\n0xEA95\t0x8B1D\n0xEA96\t0x8CDC\n0xEA97\t0x8D66\n0xEA98\t0x8FAD\n0xEA99\t0x90AA\n0xEA9A\t0x98FC\n0xEA9B\t0x99DF\n0xEA9C\t0x9E9D\n0xEA9D\t0x524A\n0xEA9E\t0xF969\n0xEA9F\t0x6714\n0xEAA0\t0xF96A\n0xEAA1\t0x5098\n0xEAA2\t0x522A\n0xEAA3\t0x5C71\n0xEAA4\t0x6563\n0xEAA5\t0x6C55\n0xEAA6\t0x73CA\n0xEAA7\t0x7523\n0xEAA8\t0x759D\n0xEAA9\t0x7B97\n0xEAAA\t0x849C\n0xEAAB\t0x9178\n0xEAAC\t0x9730\n0xEAAD\t0x4E77\n0xEAAE\t0x6492\n0xEAAF\t0x6BBA\n0xEAB0\t0x715E\n0xEAB1\t0x85A9\n0xEAB2\t0x4E09\n0xEAB3\t0xF96B\n0xEAB4\t0x6749\n0xEAB5\t0x68EE\n0xEAB6\t0x6E17\n0xEAB7\t0x829F\n0xEAB8\t0x8518\n0xEAB9\t0x886B\n0xEABA\t0x63F7\n0xEABB\t0x6F81\n0xEABC\t0x9212\n0xEABD\t0x98AF\n0xEABE\t0x4E0A\n0xEABF\t0x50B7\n0xEAC0\t0x50CF\n0xEAC1\t0x511F\n0xEAC2\t0x5546\n0xEAC3\t0x55AA\n0xEAC4\t0x5617\n0xEAC5\t0x5B40\n0xEAC6\t0x5C19\n0xEAC7\t0x5CE0\n0xEAC8\t0x5E38\n0xEAC9\t0x5E8A\n0xEACA\t0x5EA0\n0xEACB\t0x5EC2\n0xEACC\t0x60F3\n0xEACD\t0x6851\n0xEACE\t0x6A61\n0xEACF\t0x6E58\n0xEAD0\t0x723D\n0xEAD1\t0x7240\n0xEAD2\t0x72C0\n0xEAD3\t0x76F8\n0xEAD4\t0x7965\n0xEAD5\t0x7BB1\n0xEAD6\t0x7FD4\n0xEAD7\t0x88F3\n0xEAD8\t0x89F4\n0xEAD9\t0x8A73\n0xEADA\t0x8C61\n0xEADB\t0x8CDE\n0xEADC\t0x971C\n0xEADD\t0x585E\n0xEADE\t0x74BD\n0xEADF\t0x8CFD\n0xEAE0\t0x55C7\n0xEAE1\t0xF96C\n0xEAE2\t0x7A61\n0xEAE3\t0x7D22\n0xEAE4\t0x8272\n0xEAE5\t0x7272\n0xEAE6\t0x751F\n0xEAE7\t0x7525\n0xEAE8\t0xF96D\n0xEAE9\t0x7B19\n0xEAEA\t0x5885\n0xEAEB\t0x58FB\n0xEAEC\t0x5DBC\n0xEAED\t0x5E8F\n0xEAEE\t0x5EB6\n0xEAEF\t0x5F90\n0xEAF0\t0x6055\n0xEAF1\t0x6292\n0xEAF2\t0x637F\n0xEAF3\t0x654D\n0xEAF4\t0x6691\n0xEAF5\t0x66D9\n0xEAF6\t0x66F8\n0xEAF7\t0x6816\n0xEAF8\t0x68F2\n0xEAF9\t0x7280\n0xEAFA\t0x745E\n0xEAFB\t0x7B6E\n0xEAFC\t0x7D6E\n0xEAFD\t0x7DD6\n0xEAFE\t0x7F72\n0xEB31\t0x80E5\n0xEB32\t0x8212\n0xEB33\t0x85AF\n0xEB34\t0x897F\n0xEB35\t0x8A93\n0xEB36\t0x901D\n0xEB37\t0x92E4\n0xEB38\t0x9ECD\n0xEB39\t0x9F20\n0xEB3A\t0x5915\n0xEB3B\t0x596D\n0xEB3C\t0x5E2D\n0xEB3D\t0x60DC\n0xEB3E\t0x6614\n0xEB3F\t0x6673\n0xEB40\t0x6790\n0xEB41\t0x6C50\n0xEB42\t0x6DC5\n0xEB43\t0x6F5F\n0xEB44\t0x77F3\n0xEB45\t0x78A9\n0xEB46\t0x84C6\n0xEB47\t0x91CB\n0xEB48\t0x932B\n0xEB49\t0x4ED9\n0xEB4A\t0x50CA\n0xEB4B\t0x5148\n0xEB4C\t0x5584\n0xEB4D\t0x5B0B\n0xEB4E\t0x5BA3\n0xEB4F\t0x6247\n0xEB50\t0x657E\n0xEB51\t0x65CB\n0xEB52\t0x6E32\n0xEB53\t0x717D\n0xEB54\t0x7401\n0xEB55\t0x7444\n0xEB56\t0x7487\n0xEB57\t0x74BF\n0xEB58\t0x766C\n0xEB59\t0x79AA\n0xEB5A\t0x7DDA\n0xEB5B\t0x7E55\n0xEB5C\t0x7FA8\n0xEB5D\t0x817A\n0xEB5E\t0x81B3\n0xEB5F\t0x8239\n0xEB60\t0x861A\n0xEB61\t0x87EC\n0xEB62\t0x8A75\n0xEB63\t0x8DE3\n0xEB64\t0x9078\n0xEB65\t0x9291\n0xEB66\t0x9425\n0xEB67\t0x994D\n0xEB68\t0x9BAE\n0xEB69\t0x5368\n0xEB6A\t0x5C51\n0xEB6B\t0x6954\n0xEB6C\t0x6CC4\n0xEB6D\t0x6D29\n0xEB6E\t0x6E2B\n0xEB6F\t0x820C\n0xEB70\t0x859B\n0xEB71\t0x893B\n0xEB72\t0x8A2D\n0xEB73\t0x8AAA\n0xEB74\t0x96EA\n0xEB75\t0x9F67\n0xEB76\t0x5261\n0xEB77\t0x66B9\n0xEB78\t0x6BB2\n0xEB79\t0x7E96\n0xEB7A\t0x87FE\n0xEB7B\t0x8D0D\n0xEB7C\t0x9583\n0xEB7D\t0x965D\n0xEB7E\t0x651D\n0xEB91\t0x6D89\n0xEB92\t0x71EE\n0xEB93\t0xF96E\n0xEB94\t0x57CE\n0xEB95\t0x59D3\n0xEB96\t0x5BAC\n0xEB97\t0x6027\n0xEB98\t0x60FA\n0xEB99\t0x6210\n0xEB9A\t0x661F\n0xEB9B\t0x665F\n0xEB9C\t0x7329\n0xEB9D\t0x73F9\n0xEB9E\t0x76DB\n0xEB9F\t0x7701\n0xEBA0\t0x7B6C\n0xEBA1\t0x8056\n0xEBA2\t0x8072\n0xEBA3\t0x8165\n0xEBA4\t0x8AA0\n0xEBA5\t0x9192\n0xEBA6\t0x4E16\n0xEBA7\t0x52E2\n0xEBA8\t0x6B72\n0xEBA9\t0x6D17\n0xEBAA\t0x7A05\n0xEBAB\t0x7B39\n0xEBAC\t0x7D30\n0xEBAD\t0xF96F\n0xEBAE\t0x8CB0\n0xEBAF\t0x53EC\n0xEBB0\t0x562F\n0xEBB1\t0x5851\n0xEBB2\t0x5BB5\n0xEBB3\t0x5C0F\n0xEBB4\t0x5C11\n0xEBB5\t0x5DE2\n0xEBB6\t0x6240\n0xEBB7\t0x6383\n0xEBB8\t0x6414\n0xEBB9\t0x662D\n0xEBBA\t0x68B3\n0xEBBB\t0x6CBC\n0xEBBC\t0x6D88\n0xEBBD\t0x6EAF\n0xEBBE\t0x701F\n0xEBBF\t0x70A4\n0xEBC0\t0x71D2\n0xEBC1\t0x7526\n0xEBC2\t0x758F\n0xEBC3\t0x758E\n0xEBC4\t0x7619\n0xEBC5\t0x7B11\n0xEBC6\t0x7BE0\n0xEBC7\t0x7C2B\n0xEBC8\t0x7D20\n0xEBC9\t0x7D39\n0xEBCA\t0x852C\n0xEBCB\t0x856D\n0xEBCC\t0x8607\n0xEBCD\t0x8A34\n0xEBCE\t0x900D\n0xEBCF\t0x9061\n0xEBD0\t0x90B5\n0xEBD1\t0x92B7\n0xEBD2\t0x97F6\n0xEBD3\t0x9A37\n0xEBD4\t0x4FD7\n0xEBD5\t0x5C6C\n0xEBD6\t0x675F\n0xEBD7\t0x6D91\n0xEBD8\t0x7C9F\n0xEBD9\t0x7E8C\n0xEBDA\t0x8B16\n0xEBDB\t0x8D16\n0xEBDC\t0x901F\n0xEBDD\t0x5B6B\n0xEBDE\t0x5DFD\n0xEBDF\t0x640D\n0xEBE0\t0x84C0\n0xEBE1\t0x905C\n0xEBE2\t0x98E1\n0xEBE3\t0x7387\n0xEBE4\t0x5B8B\n0xEBE5\t0x609A\n0xEBE6\t0x677E\n0xEBE7\t0x6DDE\n0xEBE8\t0x8A1F\n0xEBE9\t0x8AA6\n0xEBEA\t0x9001\n0xEBEB\t0x980C\n0xEBEC\t0x5237\n0xEBED\t0xF970\n0xEBEE\t0x7051\n0xEBEF\t0x788E\n0xEBF0\t0x9396\n0xEBF1\t0x8870\n0xEBF2\t0x91D7\n0xEBF3\t0x4FEE\n0xEBF4\t0x53D7\n0xEBF5\t0x55FD\n0xEBF6\t0x56DA\n0xEBF7\t0x5782\n0xEBF8\t0x58FD\n0xEBF9\t0x5AC2\n0xEBFA\t0x5B88\n0xEBFB\t0x5CAB\n0xEBFC\t0x5CC0\n0xEBFD\t0x5E25\n0xEBFE\t0x6101\n0xEC31\t0x620D\n0xEC32\t0x624B\n0xEC33\t0x6388\n0xEC34\t0x641C\n0xEC35\t0x6536\n0xEC36\t0x6578\n0xEC37\t0x6A39\n0xEC38\t0x6B8A\n0xEC39\t0x6C34\n0xEC3A\t0x6D19\n0xEC3B\t0x6F31\n0xEC3C\t0x71E7\n0xEC3D\t0x72E9\n0xEC3E\t0x7378\n0xEC3F\t0x7407\n0xEC40\t0x74B2\n0xEC41\t0x7626\n0xEC42\t0x7761\n0xEC43\t0x79C0\n0xEC44\t0x7A57\n0xEC45\t0x7AEA\n0xEC46\t0x7CB9\n0xEC47\t0x7D8F\n0xEC48\t0x7DAC\n0xEC49\t0x7E61\n0xEC4A\t0x7F9E\n0xEC4B\t0x8129\n0xEC4C\t0x8331\n0xEC4D\t0x8490\n0xEC4E\t0x84DA\n0xEC4F\t0x85EA\n0xEC50\t0x8896\n0xEC51\t0x8AB0\n0xEC52\t0x8B90\n0xEC53\t0x8F38\n0xEC54\t0x9042\n0xEC55\t0x9083\n0xEC56\t0x916C\n0xEC57\t0x9296\n0xEC58\t0x92B9\n0xEC59\t0x968B\n0xEC5A\t0x96A7\n0xEC5B\t0x96A8\n0xEC5C\t0x96D6\n0xEC5D\t0x9700\n0xEC5E\t0x9808\n0xEC5F\t0x9996\n0xEC60\t0x9AD3\n0xEC61\t0x9B1A\n0xEC62\t0x53D4\n0xEC63\t0x587E\n0xEC64\t0x5919\n0xEC65\t0x5B70\n0xEC66\t0x5BBF\n0xEC67\t0x6DD1\n0xEC68\t0x6F5A\n0xEC69\t0x719F\n0xEC6A\t0x7421\n0xEC6B\t0x74B9\n0xEC6C\t0x8085\n0xEC6D\t0x83FD\n0xEC6E\t0x5DE1\n0xEC6F\t0x5F87\n0xEC70\t0x5FAA\n0xEC71\t0x6042\n0xEC72\t0x65EC\n0xEC73\t0x6812\n0xEC74\t0x696F\n0xEC75\t0x6A53\n0xEC76\t0x6B89\n0xEC77\t0x6D35\n0xEC78\t0x6DF3\n0xEC79\t0x73E3\n0xEC7A\t0x76FE\n0xEC7B\t0x77AC\n0xEC7C\t0x7B4D\n0xEC7D\t0x7D14\n0xEC7E\t0x8123\n0xEC91\t0x821C\n0xEC92\t0x8340\n0xEC93\t0x84F4\n0xEC94\t0x8563\n0xEC95\t0x8A62\n0xEC96\t0x8AC4\n0xEC97\t0x9187\n0xEC98\t0x931E\n0xEC99\t0x9806\n0xEC9A\t0x99B4\n0xEC9B\t0x620C\n0xEC9C\t0x8853\n0xEC9D\t0x8FF0\n0xEC9E\t0x9265\n0xEC9F\t0x5D07\n0xECA0\t0x5D27\n0xECA1\t0x5D69\n0xECA2\t0x745F\n0xECA3\t0x819D\n0xECA4\t0x8768\n0xECA5\t0x6FD5\n0xECA6\t0x62FE\n0xECA7\t0x7FD2\n0xECA8\t0x8936\n0xECA9\t0x8972\n0xECAA\t0x4E1E\n0xECAB\t0x4E58\n0xECAC\t0x50E7\n0xECAD\t0x52DD\n0xECAE\t0x5347\n0xECAF\t0x627F\n0xECB0\t0x6607\n0xECB1\t0x7E69\n0xECB2\t0x8805\n0xECB3\t0x965E\n0xECB4\t0x4F8D\n0xECB5\t0x5319\n0xECB6\t0x5636\n0xECB7\t0x59CB\n0xECB8\t0x5AA4\n0xECB9\t0x5C38\n0xECBA\t0x5C4E\n0xECBB\t0x5C4D\n0xECBC\t0x5E02\n0xECBD\t0x5F11\n0xECBE\t0x6043\n0xECBF\t0x65BD\n0xECC0\t0x662F\n0xECC1\t0x6642\n0xECC2\t0x67BE\n0xECC3\t0x67F4\n0xECC4\t0x731C\n0xECC5\t0x77E2\n0xECC6\t0x793A\n0xECC7\t0x7FC5\n0xECC8\t0x8494\n0xECC9\t0x84CD\n0xECCA\t0x8996\n0xECCB\t0x8A66\n0xECCC\t0x8A69\n0xECCD\t0x8AE1\n0xECCE\t0x8C55\n0xECCF\t0x8C7A\n0xECD0\t0x57F4\n0xECD1\t0x5BD4\n0xECD2\t0x5F0F\n0xECD3\t0x606F\n0xECD4\t0x62ED\n0xECD5\t0x690D\n0xECD6\t0x6B96\n0xECD7\t0x6E5C\n0xECD8\t0x7184\n0xECD9\t0x7BD2\n0xECDA\t0x8755\n0xECDB\t0x8B58\n0xECDC\t0x8EFE\n0xECDD\t0x98DF\n0xECDE\t0x98FE\n0xECDF\t0x4F38\n0xECE0\t0x4F81\n0xECE1\t0x4FE1\n0xECE2\t0x547B\n0xECE3\t0x5A20\n0xECE4\t0x5BB8\n0xECE5\t0x613C\n0xECE6\t0x65B0\n0xECE7\t0x6668\n0xECE8\t0x71FC\n0xECE9\t0x7533\n0xECEA\t0x795E\n0xECEB\t0x7D33\n0xECEC\t0x814E\n0xECED\t0x81E3\n0xECEE\t0x8398\n0xECEF\t0x85AA\n0xECF0\t0x85CE\n0xECF1\t0x8703\n0xECF2\t0x8A0A\n0xECF3\t0x8EAB\n0xECF4\t0x8F9B\n0xECF5\t0xF971\n0xECF6\t0x8FC5\n0xECF7\t0x5931\n0xECF8\t0x5BA4\n0xECF9\t0x5BE6\n0xECFA\t0x6089\n0xECFB\t0x5BE9\n0xECFC\t0x5C0B\n0xECFD\t0x5FC3\n0xECFE\t0x6C81\n0xED31\t0xF972\n0xED32\t0x6DF1\n0xED33\t0x700B\n0xED34\t0x751A\n0xED35\t0x82AF\n0xED36\t0x8AF6\n0xED37\t0x4EC0\n0xED38\t0x5341\n0xED39\t0xF973\n0xED3A\t0x96D9\n0xED3B\t0x6C0F\n0xED3C\t0x4E9E\n0xED3D\t0x4FC4\n0xED3E\t0x5152\n0xED3F\t0x555E\n0xED40\t0x5A25\n0xED41\t0x5CE8\n0xED42\t0x6211\n0xED43\t0x7259\n0xED44\t0x82BD\n0xED45\t0x83AA\n0xED46\t0x86FE\n0xED47\t0x8859\n0xED48\t0x8A1D\n0xED49\t0x963F\n0xED4A\t0x96C5\n0xED4B\t0x9913\n0xED4C\t0x9D09\n0xED4D\t0x9D5D\n0xED4E\t0x580A\n0xED4F\t0x5CB3\n0xED50\t0x5DBD\n0xED51\t0x5E44\n0xED52\t0x60E1\n0xED53\t0x6115\n0xED54\t0x63E1\n0xED55\t0x6A02\n0xED56\t0x6E25\n0xED57\t0x9102\n0xED58\t0x9354\n0xED59\t0x984E\n0xED5A\t0x9C10\n0xED5B\t0x9F77\n0xED5C\t0x5B89\n0xED5D\t0x5CB8\n0xED5E\t0x6309\n0xED5F\t0x664F\n0xED60\t0x6848\n0xED61\t0x773C\n0xED62\t0x96C1\n0xED63\t0x978D\n0xED64\t0x9854\n0xED65\t0x9B9F\n0xED66\t0x65A1\n0xED67\t0x8B01\n0xED68\t0x8ECB\n0xED69\t0x95BC\n0xED6A\t0x5535\n0xED6B\t0x5CA9\n0xED6C\t0x5DD6\n0xED6D\t0x5EB5\n0xED6E\t0x6697\n0xED6F\t0x764C\n0xED70\t0x83F4\n0xED71\t0x95C7\n0xED72\t0x58D3\n0xED73\t0x62BC\n0xED74\t0x72CE\n0xED75\t0x9D28\n0xED76\t0x4EF0\n0xED77\t0x592E\n0xED78\t0x600F\n0xED79\t0x663B\n0xED7A\t0x6B83\n0xED7B\t0x79E7\n0xED7C\t0x9D26\n0xED7D\t0x5393\n0xED7E\t0x54C0\n0xED91\t0x57C3\n0xED92\t0x5D16\n0xED93\t0x611B\n0xED94\t0x66D6\n0xED95\t0x6DAF\n0xED96\t0x788D\n0xED97\t0x827E\n0xED98\t0x9698\n0xED99\t0x9744\n0xED9A\t0x5384\n0xED9B\t0x627C\n0xED9C\t0x6396\n0xED9D\t0x6DB2\n0xED9E\t0x7E0A\n0xED9F\t0x814B\n0xEDA0\t0x984D\n0xEDA1\t0x6AFB\n0xEDA2\t0x7F4C\n0xEDA3\t0x9DAF\n0xEDA4\t0x9E1A\n0xEDA5\t0x4E5F\n0xEDA6\t0x503B\n0xEDA7\t0x51B6\n0xEDA8\t0x591C\n0xEDA9\t0x60F9\n0xEDAA\t0x63F6\n0xEDAB\t0x6930\n0xEDAC\t0x723A\n0xEDAD\t0x8036\n0xEDAE\t0xF974\n0xEDAF\t0x91CE\n0xEDB0\t0x5F31\n0xEDB1\t0xF975\n0xEDB2\t0xF976\n0xEDB3\t0x7D04\n0xEDB4\t0x82E5\n0xEDB5\t0x846F\n0xEDB6\t0x84BB\n0xEDB7\t0x85E5\n0xEDB8\t0x8E8D\n0xEDB9\t0xF977\n0xEDBA\t0x4F6F\n0xEDBB\t0xF978\n0xEDBC\t0xF979\n0xEDBD\t0x58E4\n0xEDBE\t0x5B43\n0xEDBF\t0x6059\n0xEDC0\t0x63DA\n0xEDC1\t0x6518\n0xEDC2\t0x656D\n0xEDC3\t0x6698\n0xEDC4\t0xF97A\n0xEDC5\t0x694A\n0xEDC6\t0x6A23\n0xEDC7\t0x6D0B\n0xEDC8\t0x7001\n0xEDC9\t0x716C\n0xEDCA\t0x75D2\n0xEDCB\t0x760D\n0xEDCC\t0x79B3\n0xEDCD\t0x7A70\n0xEDCE\t0xF97B\n0xEDCF\t0x7F8A\n0xEDD0\t0xF97C\n0xEDD1\t0x8944\n0xEDD2\t0xF97D\n0xEDD3\t0x8B93\n0xEDD4\t0x91C0\n0xEDD5\t0x967D\n0xEDD6\t0xF97E\n0xEDD7\t0x990A\n0xEDD8\t0x5704\n0xEDD9\t0x5FA1\n0xEDDA\t0x65BC\n0xEDDB\t0x6F01\n0xEDDC\t0x7600\n0xEDDD\t0x79A6\n0xEDDE\t0x8A9E\n0xEDDF\t0x99AD\n0xEDE0\t0x9B5A\n0xEDE1\t0x9F6C\n0xEDE2\t0x5104\n0xEDE3\t0x61B6\n0xEDE4\t0x6291\n0xEDE5\t0x6A8D\n0xEDE6\t0x81C6\n0xEDE7\t0x5043\n0xEDE8\t0x5830\n0xEDE9\t0x5F66\n0xEDEA\t0x7109\n0xEDEB\t0x8A00\n0xEDEC\t0x8AFA\n0xEDED\t0x5B7C\n0xEDEE\t0x8616\n0xEDEF\t0x4FFA\n0xEDF0\t0x513C\n0xEDF1\t0x56B4\n0xEDF2\t0x5944\n0xEDF3\t0x63A9\n0xEDF4\t0x6DF9\n0xEDF5\t0x5DAA\n0xEDF6\t0x696D\n0xEDF7\t0x5186\n0xEDF8\t0x4E88\n0xEDF9\t0x4F59\n0xEDFA\t0xF97F\n0xEDFB\t0xF980\n0xEDFC\t0xF981\n0xEDFD\t0x5982\n0xEDFE\t0xF982\n0xEE31\t0xF983\n0xEE32\t0x6B5F\n0xEE33\t0x6C5D\n0xEE34\t0xF984\n0xEE35\t0x74B5\n0xEE36\t0x7916\n0xEE37\t0xF985\n0xEE38\t0x8207\n0xEE39\t0x8245\n0xEE3A\t0x8339\n0xEE3B\t0x8F3F\n0xEE3C\t0x8F5D\n0xEE3D\t0xF986\n0xEE3E\t0x9918\n0xEE3F\t0xF987\n0xEE40\t0xF988\n0xEE41\t0xF989\n0xEE42\t0x4EA6\n0xEE43\t0xF98A\n0xEE44\t0x57DF\n0xEE45\t0x5F79\n0xEE46\t0x6613\n0xEE47\t0xF98B\n0xEE48\t0xF98C\n0xEE49\t0x75AB\n0xEE4A\t0x7E79\n0xEE4B\t0x8B6F\n0xEE4C\t0xF98D\n0xEE4D\t0x9006\n0xEE4E\t0x9A5B\n0xEE4F\t0x56A5\n0xEE50\t0x5827\n0xEE51\t0x59F8\n0xEE52\t0x5A1F\n0xEE53\t0x5BB4\n0xEE54\t0xF98E\n0xEE55\t0x5EF6\n0xEE56\t0xF98F\n0xEE57\t0xF990\n0xEE58\t0x6350\n0xEE59\t0x633B\n0xEE5A\t0xF991\n0xEE5B\t0x693D\n0xEE5C\t0x6C87\n0xEE5D\t0x6CBF\n0xEE5E\t0x6D8E\n0xEE5F\t0x6D93\n0xEE60\t0x6DF5\n0xEE61\t0x6F14\n0xEE62\t0xF992\n0xEE63\t0x70DF\n0xEE64\t0x7136\n0xEE65\t0x7159\n0xEE66\t0xF993\n0xEE67\t0x71C3\n0xEE68\t0x71D5\n0xEE69\t0xF994\n0xEE6A\t0x784F\n0xEE6B\t0x786F\n0xEE6C\t0xF995\n0xEE6D\t0x7B75\n0xEE6E\t0x7DE3\n0xEE6F\t0xF996\n0xEE70\t0x7E2F\n0xEE71\t0xF997\n0xEE72\t0x884D\n0xEE73\t0x8EDF\n0xEE74\t0xF998\n0xEE75\t0xF999\n0xEE76\t0xF99A\n0xEE77\t0x925B\n0xEE78\t0xF99B\n0xEE79\t0x9CF6\n0xEE7A\t0xF99C\n0xEE7B\t0xF99D\n0xEE7C\t0xF99E\n0xEE7D\t0x6085\n0xEE7E\t0x6D85\n0xEE91\t0xF99F\n0xEE92\t0x71B1\n0xEE93\t0xF9A0\n0xEE94\t0xF9A1\n0xEE95\t0x95B1\n0xEE96\t0x53AD\n0xEE97\t0xF9A2\n0xEE98\t0xF9A3\n0xEE99\t0xF9A4\n0xEE9A\t0x67D3\n0xEE9B\t0xF9A5\n0xEE9C\t0x708E\n0xEE9D\t0x7130\n0xEE9E\t0x7430\n0xEE9F\t0x8276\n0xEEA0\t0x82D2\n0xEEA1\t0xF9A6\n0xEEA2\t0x95BB\n0xEEA3\t0x9AE5\n0xEEA4\t0x9E7D\n0xEEA5\t0x66C4\n0xEEA6\t0xF9A7\n0xEEA7\t0x71C1\n0xEEA8\t0x8449\n0xEEA9\t0xF9A8\n0xEEAA\t0xF9A9\n0xEEAB\t0x584B\n0xEEAC\t0xF9AA\n0xEEAD\t0xF9AB\n0xEEAE\t0x5DB8\n0xEEAF\t0x5F71\n0xEEB0\t0xF9AC\n0xEEB1\t0x6620\n0xEEB2\t0x668E\n0xEEB3\t0x6979\n0xEEB4\t0x69AE\n0xEEB5\t0x6C38\n0xEEB6\t0x6CF3\n0xEEB7\t0x6E36\n0xEEB8\t0x6F41\n0xEEB9\t0x6FDA\n0xEEBA\t0x701B\n0xEEBB\t0x702F\n0xEEBC\t0x7150\n0xEEBD\t0x71DF\n0xEEBE\t0x7370\n0xEEBF\t0xF9AD\n0xEEC0\t0x745B\n0xEEC1\t0xF9AE\n0xEEC2\t0x74D4\n0xEEC3\t0x76C8\n0xEEC4\t0x7A4E\n0xEEC5\t0x7E93\n0xEEC6\t0xF9AF\n0xEEC7\t0xF9B0\n0xEEC8\t0x82F1\n0xEEC9\t0x8A60\n0xEECA\t0x8FCE\n0xEECB\t0xF9B1\n0xEECC\t0x9348\n0xEECD\t0xF9B2\n0xEECE\t0x9719\n0xEECF\t0xF9B3\n0xEED0\t0xF9B4\n0xEED1\t0x4E42\n0xEED2\t0x502A\n0xEED3\t0xF9B5\n0xEED4\t0x5208\n0xEED5\t0x53E1\n0xEED6\t0x66F3\n0xEED7\t0x6C6D\n0xEED8\t0x6FCA\n0xEED9\t0x730A\n0xEEDA\t0x777F\n0xEEDB\t0x7A62\n0xEEDC\t0x82AE\n0xEEDD\t0x85DD\n0xEEDE\t0x8602\n0xEEDF\t0xF9B6\n0xEEE0\t0x88D4\n0xEEE1\t0x8A63\n0xEEE2\t0x8B7D\n0xEEE3\t0x8C6B\n0xEEE4\t0xF9B7\n0xEEE5\t0x92B3\n0xEEE6\t0xF9B8\n0xEEE7\t0x9713\n0xEEE8\t0x9810\n0xEEE9\t0x4E94\n0xEEEA\t0x4F0D\n0xEEEB\t0x4FC9\n0xEEEC\t0x50B2\n0xEEED\t0x5348\n0xEEEE\t0x543E\n0xEEEF\t0x5433\n0xEEF0\t0x55DA\n0xEEF1\t0x5862\n0xEEF2\t0x58BA\n0xEEF3\t0x5967\n0xEEF4\t0x5A1B\n0xEEF5\t0x5BE4\n0xEEF6\t0x609F\n0xEEF7\t0xF9B9\n0xEEF8\t0x61CA\n0xEEF9\t0x6556\n0xEEFA\t0x65FF\n0xEEFB\t0x6664\n0xEEFC\t0x68A7\n0xEEFD\t0x6C5A\n0xEEFE\t0x6FB3\n0xEF31\t0x70CF\n0xEF32\t0x71AC\n0xEF33\t0x7352\n0xEF34\t0x7B7D\n0xEF35\t0x8708\n0xEF36\t0x8AA4\n0xEF37\t0x9C32\n0xEF38\t0x9F07\n0xEF39\t0x5C4B\n0xEF3A\t0x6C83\n0xEF3B\t0x7344\n0xEF3C\t0x7389\n0xEF3D\t0x923A\n0xEF3E\t0x6EAB\n0xEF3F\t0x7465\n0xEF40\t0x761F\n0xEF41\t0x7A69\n0xEF42\t0x7E15\n0xEF43\t0x860A\n0xEF44\t0x5140\n0xEF45\t0x58C5\n0xEF46\t0x64C1\n0xEF47\t0x74EE\n0xEF48\t0x7515\n0xEF49\t0x7670\n0xEF4A\t0x7FC1\n0xEF4B\t0x9095\n0xEF4C\t0x96CD\n0xEF4D\t0x9954\n0xEF4E\t0x6E26\n0xEF4F\t0x74E6\n0xEF50\t0x7AA9\n0xEF51\t0x7AAA\n0xEF52\t0x81E5\n0xEF53\t0x86D9\n0xEF54\t0x8778\n0xEF55\t0x8A1B\n0xEF56\t0x5A49\n0xEF57\t0x5B8C\n0xEF58\t0x5B9B\n0xEF59\t0x68A1\n0xEF5A\t0x6900\n0xEF5B\t0x6D63\n0xEF5C\t0x73A9\n0xEF5D\t0x7413\n0xEF5E\t0x742C\n0xEF5F\t0x7897\n0xEF60\t0x7DE9\n0xEF61\t0x7FEB\n0xEF62\t0x8118\n0xEF63\t0x8155\n0xEF64\t0x839E\n0xEF65\t0x8C4C\n0xEF66\t0x962E\n0xEF67\t0x9811\n0xEF68\t0x66F0\n0xEF69\t0x5F80\n0xEF6A\t0x65FA\n0xEF6B\t0x6789\n0xEF6C\t0x6C6A\n0xEF6D\t0x738B\n0xEF6E\t0x502D\n0xEF6F\t0x5A03\n0xEF70\t0x6B6A\n0xEF71\t0x77EE\n0xEF72\t0x5916\n0xEF73\t0x5D6C\n0xEF74\t0x5DCD\n0xEF75\t0x7325\n0xEF76\t0x754F\n0xEF77\t0xF9BA\n0xEF78\t0xF9BB\n0xEF79\t0x50E5\n0xEF7A\t0x51F9\n0xEF7B\t0x582F\n0xEF7C\t0x592D\n0xEF7D\t0x5996\n0xEF7E\t0x59DA\n0xEF91\t0x5BE5\n0xEF92\t0xF9BC\n0xEF93\t0xF9BD\n0xEF94\t0x5DA2\n0xEF95\t0x62D7\n0xEF96\t0x6416\n0xEF97\t0x6493\n0xEF98\t0x64FE\n0xEF99\t0xF9BE\n0xEF9A\t0x66DC\n0xEF9B\t0xF9BF\n0xEF9C\t0x6A48\n0xEF9D\t0xF9C0\n0xEF9E\t0x71FF\n0xEF9F\t0x7464\n0xEFA0\t0xF9C1\n0xEFA1\t0x7A88\n0xEFA2\t0x7AAF\n0xEFA3\t0x7E47\n0xEFA4\t0x7E5E\n0xEFA5\t0x8000\n0xEFA6\t0x8170\n0xEFA7\t0xF9C2\n0xEFA8\t0x87EF\n0xEFA9\t0x8981\n0xEFAA\t0x8B20\n0xEFAB\t0x9059\n0xEFAC\t0xF9C3\n0xEFAD\t0x9080\n0xEFAE\t0x9952\n0xEFAF\t0x617E\n0xEFB0\t0x6B32\n0xEFB1\t0x6D74\n0xEFB2\t0x7E1F\n0xEFB3\t0x8925\n0xEFB4\t0x8FB1\n0xEFB5\t0x4FD1\n0xEFB6\t0x50AD\n0xEFB7\t0x5197\n0xEFB8\t0x52C7\n0xEFB9\t0x57C7\n0xEFBA\t0x5889\n0xEFBB\t0x5BB9\n0xEFBC\t0x5EB8\n0xEFBD\t0x6142\n0xEFBE\t0x6995\n0xEFBF\t0x6D8C\n0xEFC0\t0x6E67\n0xEFC1\t0x6EB6\n0xEFC2\t0x7194\n0xEFC3\t0x7462\n0xEFC4\t0x7528\n0xEFC5\t0x752C\n0xEFC6\t0x8073\n0xEFC7\t0x8338\n0xEFC8\t0x84C9\n0xEFC9\t0x8E0A\n0xEFCA\t0x9394\n0xEFCB\t0x93DE\n0xEFCC\t0xF9C4\n0xEFCD\t0x4E8E\n0xEFCE\t0x4F51\n0xEFCF\t0x5076\n0xEFD0\t0x512A\n0xEFD1\t0x53C8\n0xEFD2\t0x53CB\n0xEFD3\t0x53F3\n0xEFD4\t0x5B87\n0xEFD5\t0x5BD3\n0xEFD6\t0x5C24\n0xEFD7\t0x611A\n0xEFD8\t0x6182\n0xEFD9\t0x65F4\n0xEFDA\t0x725B\n0xEFDB\t0x7397\n0xEFDC\t0x7440\n0xEFDD\t0x76C2\n0xEFDE\t0x7950\n0xEFDF\t0x7991\n0xEFE0\t0x79B9\n0xEFE1\t0x7D06\n0xEFE2\t0x7FBD\n0xEFE3\t0x828B\n0xEFE4\t0x85D5\n0xEFE5\t0x865E\n0xEFE6\t0x8FC2\n0xEFE7\t0x9047\n0xEFE8\t0x90F5\n0xEFE9\t0x91EA\n0xEFEA\t0x9685\n0xEFEB\t0x96E8\n0xEFEC\t0x96E9\n0xEFED\t0x52D6\n0xEFEE\t0x5F67\n0xEFEF\t0x65ED\n0xEFF0\t0x6631\n0xEFF1\t0x682F\n0xEFF2\t0x715C\n0xEFF3\t0x7A36\n0xEFF4\t0x90C1\n0xEFF5\t0x980A\n0xEFF6\t0x4E91\n0xEFF7\t0xF9C5\n0xEFF8\t0x6A52\n0xEFF9\t0x6B9E\n0xEFFA\t0x6F90\n0xEFFB\t0x7189\n0xEFFC\t0x8018\n0xEFFD\t0x82B8\n0xEFFE\t0x8553\n0xF031\t0x904B\n0xF032\t0x9695\n0xF033\t0x96F2\n0xF034\t0x97FB\n0xF035\t0x851A\n0xF036\t0x9B31\n0xF037\t0x4E90\n0xF038\t0x718A\n0xF039\t0x96C4\n0xF03A\t0x5143\n0xF03B\t0x539F\n0xF03C\t0x54E1\n0xF03D\t0x5713\n0xF03E\t0x5712\n0xF03F\t0x57A3\n0xF040\t0x5A9B\n0xF041\t0x5AC4\n0xF042\t0x5BC3\n0xF043\t0x6028\n0xF044\t0x613F\n0xF045\t0x63F4\n0xF046\t0x6C85\n0xF047\t0x6D39\n0xF048\t0x6E72\n0xF049\t0x6E90\n0xF04A\t0x7230\n0xF04B\t0x733F\n0xF04C\t0x7457\n0xF04D\t0x82D1\n0xF04E\t0x8881\n0xF04F\t0x8F45\n0xF050\t0x9060\n0xF051\t0xF9C6\n0xF052\t0x9662\n0xF053\t0x9858\n0xF054\t0x9D1B\n0xF055\t0x6708\n0xF056\t0x8D8A\n0xF057\t0x925E\n0xF058\t0x4F4D\n0xF059\t0x5049\n0xF05A\t0x50DE\n0xF05B\t0x5371\n0xF05C\t0x570D\n0xF05D\t0x59D4\n0xF05E\t0x5A01\n0xF05F\t0x5C09\n0xF060\t0x6170\n0xF061\t0x6690\n0xF062\t0x6E2D\n0xF063\t0x7232\n0xF064\t0x744B\n0xF065\t0x7DEF\n0xF066\t0x80C3\n0xF067\t0x840E\n0xF068\t0x8466\n0xF069\t0x853F\n0xF06A\t0x875F\n0xF06B\t0x885B\n0xF06C\t0x8918\n0xF06D\t0x8B02\n0xF06E\t0x9055\n0xF06F\t0x97CB\n0xF070\t0x9B4F\n0xF071\t0x4E73\n0xF072\t0x4F91\n0xF073\t0x5112\n0xF074\t0x516A\n0xF075\t0xF9C7\n0xF076\t0x552F\n0xF077\t0x55A9\n0xF078\t0x5B7A\n0xF079\t0x5BA5\n0xF07A\t0x5E7C\n0xF07B\t0x5E7D\n0xF07C\t0x5EBE\n0xF07D\t0x60A0\n0xF07E\t0x60DF\n0xF091\t0x6108\n0xF092\t0x6109\n0xF093\t0x63C4\n0xF094\t0x6538\n0xF095\t0x6709\n0xF096\t0xF9C8\n0xF097\t0x67D4\n0xF098\t0x67DA\n0xF099\t0xF9C9\n0xF09A\t0x6961\n0xF09B\t0x6962\n0xF09C\t0x6CB9\n0xF09D\t0x6D27\n0xF09E\t0xF9CA\n0xF09F\t0x6E38\n0xF0A0\t0xF9CB\n0xF0A1\t0x6FE1\n0xF0A2\t0x7336\n0xF0A3\t0x7337\n0xF0A4\t0xF9CC\n0xF0A5\t0x745C\n0xF0A6\t0x7531\n0xF0A7\t0xF9CD\n0xF0A8\t0x7652\n0xF0A9\t0xF9CE\n0xF0AA\t0xF9CF\n0xF0AB\t0x7DAD\n0xF0AC\t0x81FE\n0xF0AD\t0x8438\n0xF0AE\t0x88D5\n0xF0AF\t0x8A98\n0xF0B0\t0x8ADB\n0xF0B1\t0x8AED\n0xF0B2\t0x8E30\n0xF0B3\t0x8E42\n0xF0B4\t0x904A\n0xF0B5\t0x903E\n0xF0B6\t0x907A\n0xF0B7\t0x9149\n0xF0B8\t0x91C9\n0xF0B9\t0x936E\n0xF0BA\t0xF9D0\n0xF0BB\t0xF9D1\n0xF0BC\t0x5809\n0xF0BD\t0xF9D2\n0xF0BE\t0x6BD3\n0xF0BF\t0x8089\n0xF0C0\t0x80B2\n0xF0C1\t0xF9D3\n0xF0C2\t0xF9D4\n0xF0C3\t0x5141\n0xF0C4\t0x596B\n0xF0C5\t0x5C39\n0xF0C6\t0xF9D5\n0xF0C7\t0xF9D6\n0xF0C8\t0x6F64\n0xF0C9\t0x73A7\n0xF0CA\t0x80E4\n0xF0CB\t0x8D07\n0xF0CC\t0xF9D7\n0xF0CD\t0x9217\n0xF0CE\t0x958F\n0xF0CF\t0xF9D8\n0xF0D0\t0xF9D9\n0xF0D1\t0xF9DA\n0xF0D2\t0xF9DB\n0xF0D3\t0x807F\n0xF0D4\t0x620E\n0xF0D5\t0x701C\n0xF0D6\t0x7D68\n0xF0D7\t0x878D\n0xF0D8\t0xF9DC\n0xF0D9\t0x57A0\n0xF0DA\t0x6069\n0xF0DB\t0x6147\n0xF0DC\t0x6BB7\n0xF0DD\t0x8ABE\n0xF0DE\t0x9280\n0xF0DF\t0x96B1\n0xF0E0\t0x4E59\n0xF0E1\t0x541F\n0xF0E2\t0x6DEB\n0xF0E3\t0x852D\n0xF0E4\t0x9670\n0xF0E5\t0x97F3\n0xF0E6\t0x98EE\n0xF0E7\t0x63D6\n0xF0E8\t0x6CE3\n0xF0E9\t0x9091\n0xF0EA\t0x51DD\n0xF0EB\t0x61C9\n0xF0EC\t0x81BA\n0xF0ED\t0x9DF9\n0xF0EE\t0x4F9D\n0xF0EF\t0x501A\n0xF0F0\t0x5100\n0xF0F1\t0x5B9C\n0xF0F2\t0x610F\n0xF0F3\t0x61FF\n0xF0F4\t0x64EC\n0xF0F5\t0x6905\n0xF0F6\t0x6BC5\n0xF0F7\t0x7591\n0xF0F8\t0x77E3\n0xF0F9\t0x7FA9\n0xF0FA\t0x8264\n0xF0FB\t0x858F\n0xF0FC\t0x87FB\n0xF0FD\t0x8863\n0xF0FE\t0x8ABC\n0xF131\t0x8B70\n0xF132\t0x91AB\n0xF133\t0x4E8C\n0xF134\t0x4EE5\n0xF135\t0x4F0A\n0xF136\t0xF9DD\n0xF137\t0xF9DE\n0xF138\t0x5937\n0xF139\t0x59E8\n0xF13A\t0xF9DF\n0xF13B\t0x5DF2\n0xF13C\t0x5F1B\n0xF13D\t0x5F5B\n0xF13E\t0x6021\n0xF13F\t0xF9E0\n0xF140\t0xF9E1\n0xF141\t0xF9E2\n0xF142\t0xF9E3\n0xF143\t0x723E\n0xF144\t0x73E5\n0xF145\t0xF9E4\n0xF146\t0x7570\n0xF147\t0x75CD\n0xF148\t0xF9E5\n0xF149\t0x79FB\n0xF14A\t0xF9E6\n0xF14B\t0x800C\n0xF14C\t0x8033\n0xF14D\t0x8084\n0xF14E\t0x82E1\n0xF14F\t0x8351\n0xF150\t0xF9E7\n0xF151\t0xF9E8\n0xF152\t0x8CBD\n0xF153\t0x8CB3\n0xF154\t0x9087\n0xF155\t0xF9E9\n0xF156\t0xF9EA\n0xF157\t0x98F4\n0xF158\t0x990C\n0xF159\t0xF9EB\n0xF15A\t0xF9EC\n0xF15B\t0x7037\n0xF15C\t0x76CA\n0xF15D\t0x7FCA\n0xF15E\t0x7FCC\n0xF15F\t0x7FFC\n0xF160\t0x8B1A\n0xF161\t0x4EBA\n0xF162\t0x4EC1\n0xF163\t0x5203\n0xF164\t0x5370\n0xF165\t0xF9ED\n0xF166\t0x54BD\n0xF167\t0x56E0\n0xF168\t0x59FB\n0xF169\t0x5BC5\n0xF16A\t0x5F15\n0xF16B\t0x5FCD\n0xF16C\t0x6E6E\n0xF16D\t0xF9EE\n0xF16E\t0xF9EF\n0xF16F\t0x7D6A\n0xF170\t0x8335\n0xF171\t0xF9F0\n0xF172\t0x8693\n0xF173\t0x8A8D\n0xF174\t0xF9F1\n0xF175\t0x976D\n0xF176\t0x9777\n0xF177\t0xF9F2\n0xF178\t0xF9F3\n0xF179\t0x4E00\n0xF17A\t0x4F5A\n0xF17B\t0x4F7E\n0xF17C\t0x58F9\n0xF17D\t0x65E5\n0xF17E\t0x6EA2\n0xF191\t0x9038\n0xF192\t0x93B0\n0xF193\t0x99B9\n0xF194\t0x4EFB\n0xF195\t0x58EC\n0xF196\t0x598A\n0xF197\t0x59D9\n0xF198\t0x6041\n0xF199\t0xF9F4\n0xF19A\t0xF9F5\n0xF19B\t0x7A14\n0xF19C\t0xF9F6\n0xF19D\t0x834F\n0xF19E\t0x8CC3\n0xF19F\t0x5165\n0xF1A0\t0x5344\n0xF1A1\t0xF9F7\n0xF1A2\t0xF9F8\n0xF1A3\t0xF9F9\n0xF1A4\t0x4ECD\n0xF1A5\t0x5269\n0xF1A6\t0x5B55\n0xF1A7\t0x82BF\n0xF1A8\t0x4ED4\n0xF1A9\t0x523A\n0xF1AA\t0x54A8\n0xF1AB\t0x59C9\n0xF1AC\t0x59FF\n0xF1AD\t0x5B50\n0xF1AE\t0x5B57\n0xF1AF\t0x5B5C\n0xF1B0\t0x6063\n0xF1B1\t0x6148\n0xF1B2\t0x6ECB\n0xF1B3\t0x7099\n0xF1B4\t0x716E\n0xF1B5\t0x7386\n0xF1B6\t0x74F7\n0xF1B7\t0x75B5\n0xF1B8\t0x78C1\n0xF1B9\t0x7D2B\n0xF1BA\t0x8005\n0xF1BB\t0x81EA\n0xF1BC\t0x8328\n0xF1BD\t0x8517\n0xF1BE\t0x85C9\n0xF1BF\t0x8AEE\n0xF1C0\t0x8CC7\n0xF1C1\t0x96CC\n0xF1C2\t0x4F5C\n0xF1C3\t0x52FA\n0xF1C4\t0x56BC\n0xF1C5\t0x65AB\n0xF1C6\t0x6628\n0xF1C7\t0x707C\n0xF1C8\t0x70B8\n0xF1C9\t0x7235\n0xF1CA\t0x7DBD\n0xF1CB\t0x828D\n0xF1CC\t0x914C\n0xF1CD\t0x96C0\n0xF1CE\t0x9D72\n0xF1CF\t0x5B71\n0xF1D0\t0x68E7\n0xF1D1\t0x6B98\n0xF1D2\t0x6F7A\n0xF1D3\t0x76DE\n0xF1D4\t0x5C91\n0xF1D5\t0x66AB\n0xF1D6\t0x6F5B\n0xF1D7\t0x7BB4\n0xF1D8\t0x7C2A\n0xF1D9\t0x8836\n0xF1DA\t0x96DC\n0xF1DB\t0x4E08\n0xF1DC\t0x4ED7\n0xF1DD\t0x5320\n0xF1DE\t0x5834\n0xF1DF\t0x58BB\n0xF1E0\t0x58EF\n0xF1E1\t0x596C\n0xF1E2\t0x5C07\n0xF1E3\t0x5E33\n0xF1E4\t0x5E84\n0xF1E5\t0x5F35\n0xF1E6\t0x638C\n0xF1E7\t0x66B2\n0xF1E8\t0x6756\n0xF1E9\t0x6A1F\n0xF1EA\t0x6AA3\n0xF1EB\t0x6B0C\n0xF1EC\t0x6F3F\n0xF1ED\t0x7246\n0xF1EE\t0xF9FA\n0xF1EF\t0x7350\n0xF1F0\t0x748B\n0xF1F1\t0x7AE0\n0xF1F2\t0x7CA7\n0xF1F3\t0x8178\n0xF1F4\t0x81DF\n0xF1F5\t0x81E7\n0xF1F6\t0x838A\n0xF1F7\t0x846C\n0xF1F8\t0x8523\n0xF1F9\t0x8594\n0xF1FA\t0x85CF\n0xF1FB\t0x88DD\n0xF1FC\t0x8D13\n0xF1FD\t0x91AC\n0xF1FE\t0x9577\n0xF231\t0x969C\n0xF232\t0x518D\n0xF233\t0x54C9\n0xF234\t0x5728\n0xF235\t0x5BB0\n0xF236\t0x624D\n0xF237\t0x6750\n0xF238\t0x683D\n0xF239\t0x6893\n0xF23A\t0x6E3D\n0xF23B\t0x6ED3\n0xF23C\t0x707D\n0xF23D\t0x7E21\n0xF23E\t0x88C1\n0xF23F\t0x8CA1\n0xF240\t0x8F09\n0xF241\t0x9F4B\n0xF242\t0x9F4E\n0xF243\t0x722D\n0xF244\t0x7B8F\n0xF245\t0x8ACD\n0xF246\t0x931A\n0xF247\t0x4F47\n0xF248\t0x4F4E\n0xF249\t0x5132\n0xF24A\t0x5480\n0xF24B\t0x59D0\n0xF24C\t0x5E95\n0xF24D\t0x62B5\n0xF24E\t0x6775\n0xF24F\t0x696E\n0xF250\t0x6A17\n0xF251\t0x6CAE\n0xF252\t0x6E1A\n0xF253\t0x72D9\n0xF254\t0x732A\n0xF255\t0x75BD\n0xF256\t0x7BB8\n0xF257\t0x7D35\n0xF258\t0x82E7\n0xF259\t0x83F9\n0xF25A\t0x8457\n0xF25B\t0x85F7\n0xF25C\t0x8A5B\n0xF25D\t0x8CAF\n0xF25E\t0x8E87\n0xF25F\t0x9019\n0xF260\t0x90B8\n0xF261\t0x96CE\n0xF262\t0x9F5F\n0xF263\t0x52E3\n0xF264\t0x540A\n0xF265\t0x5AE1\n0xF266\t0x5BC2\n0xF267\t0x6458\n0xF268\t0x6575\n0xF269\t0x6EF4\n0xF26A\t0x72C4\n0xF26B\t0xF9FB\n0xF26C\t0x7684\n0xF26D\t0x7A4D\n0xF26E\t0x7B1B\n0xF26F\t0x7C4D\n0xF270\t0x7E3E\n0xF271\t0x7FDF\n0xF272\t0x837B\n0xF273\t0x8B2B\n0xF274\t0x8CCA\n0xF275\t0x8D64\n0xF276\t0x8DE1\n0xF277\t0x8E5F\n0xF278\t0x8FEA\n0xF279\t0x8FF9\n0xF27A\t0x9069\n0xF27B\t0x93D1\n0xF27C\t0x4F43\n0xF27D\t0x4F7A\n0xF27E\t0x50B3\n0xF291\t0x5168\n0xF292\t0x5178\n0xF293\t0x524D\n0xF294\t0x526A\n0xF295\t0x5861\n0xF296\t0x587C\n0xF297\t0x5960\n0xF298\t0x5C08\n0xF299\t0x5C55\n0xF29A\t0x5EDB\n0xF29B\t0x609B\n0xF29C\t0x6230\n0xF29D\t0x6813\n0xF29E\t0x6BBF\n0xF29F\t0x6C08\n0xF2A0\t0x6FB1\n0xF2A1\t0x714E\n0xF2A2\t0x7420\n0xF2A3\t0x7530\n0xF2A4\t0x7538\n0xF2A5\t0x7551\n0xF2A6\t0x7672\n0xF2A7\t0x7B4C\n0xF2A8\t0x7B8B\n0xF2A9\t0x7BAD\n0xF2AA\t0x7BC6\n0xF2AB\t0x7E8F\n0xF2AC\t0x8A6E\n0xF2AD\t0x8F3E\n0xF2AE\t0x8F49\n0xF2AF\t0x923F\n0xF2B0\t0x9293\n0xF2B1\t0x9322\n0xF2B2\t0x942B\n0xF2B3\t0x96FB\n0xF2B4\t0x985A\n0xF2B5\t0x986B\n0xF2B6\t0x991E\n0xF2B7\t0x5207\n0xF2B8\t0x622A\n0xF2B9\t0x6298\n0xF2BA\t0x6D59\n0xF2BB\t0x7664\n0xF2BC\t0x7ACA\n0xF2BD\t0x7BC0\n0xF2BE\t0x7D76\n0xF2BF\t0x5360\n0xF2C0\t0x5CBE\n0xF2C1\t0x5E97\n0xF2C2\t0x6F38\n0xF2C3\t0x70B9\n0xF2C4\t0x7C98\n0xF2C5\t0x9711\n0xF2C6\t0x9B8E\n0xF2C7\t0x9EDE\n0xF2C8\t0x63A5\n0xF2C9\t0x647A\n0xF2CA\t0x8776\n0xF2CB\t0x4E01\n0xF2CC\t0x4E95\n0xF2CD\t0x4EAD\n0xF2CE\t0x505C\n0xF2CF\t0x5075\n0xF2D0\t0x5448\n0xF2D1\t0x59C3\n0xF2D2\t0x5B9A\n0xF2D3\t0x5E40\n0xF2D4\t0x5EAD\n0xF2D5\t0x5EF7\n0xF2D6\t0x5F81\n0xF2D7\t0x60C5\n0xF2D8\t0x633A\n0xF2D9\t0x653F\n0xF2DA\t0x6574\n0xF2DB\t0x65CC\n0xF2DC\t0x6676\n0xF2DD\t0x6678\n0xF2DE\t0x67FE\n0xF2DF\t0x6968\n0xF2E0\t0x6A89\n0xF2E1\t0x6B63\n0xF2E2\t0x6C40\n0xF2E3\t0x6DC0\n0xF2E4\t0x6DE8\n0xF2E5\t0x6E1F\n0xF2E6\t0x6E5E\n0xF2E7\t0x701E\n0xF2E8\t0x70A1\n0xF2E9\t0x738E\n0xF2EA\t0x73FD\n0xF2EB\t0x753A\n0xF2EC\t0x775B\n0xF2ED\t0x7887\n0xF2EE\t0x798E\n0xF2EF\t0x7A0B\n0xF2F0\t0x7A7D\n0xF2F1\t0x7CBE\n0xF2F2\t0x7D8E\n0xF2F3\t0x8247\n0xF2F4\t0x8A02\n0xF2F5\t0x8AEA\n0xF2F6\t0x8C9E\n0xF2F7\t0x912D\n0xF2F8\t0x914A\n0xF2F9\t0x91D8\n0xF2FA\t0x9266\n0xF2FB\t0x92CC\n0xF2FC\t0x9320\n0xF2FD\t0x9706\n0xF2FE\t0x9756\n0xF331\t0x975C\n0xF332\t0x9802\n0xF333\t0x9F0E\n0xF334\t0x5236\n0xF335\t0x5291\n0xF336\t0x557C\n0xF337\t0x5824\n0xF338\t0x5E1D\n0xF339\t0x5F1F\n0xF33A\t0x608C\n0xF33B\t0x63D0\n0xF33C\t0x68AF\n0xF33D\t0x6FDF\n0xF33E\t0x796D\n0xF33F\t0x7B2C\n0xF340\t0x81CD\n0xF341\t0x85BA\n0xF342\t0x88FD\n0xF343\t0x8AF8\n0xF344\t0x8E44\n0xF345\t0x918D\n0xF346\t0x9664\n0xF347\t0x969B\n0xF348\t0x973D\n0xF349\t0x984C\n0xF34A\t0x9F4A\n0xF34B\t0x4FCE\n0xF34C\t0x5146\n0xF34D\t0x51CB\n0xF34E\t0x52A9\n0xF34F\t0x5632\n0xF350\t0x5F14\n0xF351\t0x5F6B\n0xF352\t0x63AA\n0xF353\t0x64CD\n0xF354\t0x65E9\n0xF355\t0x6641\n0xF356\t0x66FA\n0xF357\t0x66F9\n0xF358\t0x671D\n0xF359\t0x689D\n0xF35A\t0x68D7\n0xF35B\t0x69FD\n0xF35C\t0x6F15\n0xF35D\t0x6F6E\n0xF35E\t0x7167\n0xF35F\t0x71E5\n0xF360\t0x722A\n0xF361\t0x74AA\n0xF362\t0x773A\n0xF363\t0x7956\n0xF364\t0x795A\n0xF365\t0x79DF\n0xF366\t0x7A20\n0xF367\t0x7A95\n0xF368\t0x7C97\n0xF369\t0x7CDF\n0xF36A\t0x7D44\n0xF36B\t0x7E70\n0xF36C\t0x8087\n0xF36D\t0x85FB\n0xF36E\t0x86A4\n0xF36F\t0x8A54\n0xF370\t0x8ABF\n0xF371\t0x8D99\n0xF372\t0x8E81\n0xF373\t0x9020\n0xF374\t0x906D\n0xF375\t0x91E3\n0xF376\t0x963B\n0xF377\t0x96D5\n0xF378\t0x9CE5\n0xF379\t0x65CF\n0xF37A\t0x7C07\n0xF37B\t0x8DB3\n0xF37C\t0x93C3\n0xF37D\t0x5B58\n0xF37E\t0x5C0A\n0xF391\t0x5352\n0xF392\t0x62D9\n0xF393\t0x731D\n0xF394\t0x5027\n0xF395\t0x5B97\n0xF396\t0x5F9E\n0xF397\t0x60B0\n0xF398\t0x616B\n0xF399\t0x68D5\n0xF39A\t0x6DD9\n0xF39B\t0x742E\n0xF39C\t0x7A2E\n0xF39D\t0x7D42\n0xF39E\t0x7D9C\n0xF39F\t0x7E31\n0xF3A0\t0x816B\n0xF3A1\t0x8E2A\n0xF3A2\t0x8E35\n0xF3A3\t0x937E\n0xF3A4\t0x9418\n0xF3A5\t0x4F50\n0xF3A6\t0x5750\n0xF3A7\t0x5DE6\n0xF3A8\t0x5EA7\n0xF3A9\t0x632B\n0xF3AA\t0x7F6A\n0xF3AB\t0x4E3B\n0xF3AC\t0x4F4F\n0xF3AD\t0x4F8F\n0xF3AE\t0x505A\n0xF3AF\t0x59DD\n0xF3B0\t0x80C4\n0xF3B1\t0x546A\n0xF3B2\t0x5468\n0xF3B3\t0x55FE\n0xF3B4\t0x594F\n0xF3B5\t0x5B99\n0xF3B6\t0x5DDE\n0xF3B7\t0x5EDA\n0xF3B8\t0x665D\n0xF3B9\t0x6731\n0xF3BA\t0x67F1\n0xF3BB\t0x682A\n0xF3BC\t0x6CE8\n0xF3BD\t0x6D32\n0xF3BE\t0x6E4A\n0xF3BF\t0x6F8D\n0xF3C0\t0x70B7\n0xF3C1\t0x73E0\n0xF3C2\t0x7587\n0xF3C3\t0x7C4C\n0xF3C4\t0x7D02\n0xF3C5\t0x7D2C\n0xF3C6\t0x7DA2\n0xF3C7\t0x821F\n0xF3C8\t0x86DB\n0xF3C9\t0x8A3B\n0xF3CA\t0x8A85\n0xF3CB\t0x8D70\n0xF3CC\t0x8E8A\n0xF3CD\t0x8F33\n0xF3CE\t0x9031\n0xF3CF\t0x914E\n0xF3D0\t0x9152\n0xF3D1\t0x9444\n0xF3D2\t0x99D0\n0xF3D3\t0x7AF9\n0xF3D4\t0x7CA5\n0xF3D5\t0x4FCA\n0xF3D6\t0x5101\n0xF3D7\t0x51C6\n0xF3D8\t0x57C8\n0xF3D9\t0x5BEF\n0xF3DA\t0x5CFB\n0xF3DB\t0x6659\n0xF3DC\t0x6A3D\n0xF3DD\t0x6D5A\n0xF3DE\t0x6E96\n0xF3DF\t0x6FEC\n0xF3E0\t0x710C\n0xF3E1\t0x756F\n0xF3E2\t0x7AE3\n0xF3E3\t0x8822\n0xF3E4\t0x9021\n0xF3E5\t0x9075\n0xF3E6\t0x96CB\n0xF3E7\t0x99FF\n0xF3E8\t0x8301\n0xF3E9\t0x4E2D\n0xF3EA\t0x4EF2\n0xF3EB\t0x8846\n0xF3EC\t0x91CD\n0xF3ED\t0x537D\n0xF3EE\t0x6ADB\n0xF3EF\t0x696B\n0xF3F0\t0x6C41\n0xF3F1\t0x847A\n0xF3F2\t0x589E\n0xF3F3\t0x618E\n0xF3F4\t0x66FE\n0xF3F5\t0x62EF\n0xF3F6\t0x70DD\n0xF3F7\t0x7511\n0xF3F8\t0x75C7\n0xF3F9\t0x7E52\n0xF3FA\t0x84B8\n0xF3FB\t0x8B49\n0xF3FC\t0x8D08\n0xF3FD\t0x4E4B\n0xF3FE\t0x53EA\n0xF431\t0x54AB\n0xF432\t0x5730\n0xF433\t0x5740\n0xF434\t0x5FD7\n0xF435\t0x6301\n0xF436\t0x6307\n0xF437\t0x646F\n0xF438\t0x652F\n0xF439\t0x65E8\n0xF43A\t0x667A\n0xF43B\t0x679D\n0xF43C\t0x67B3\n0xF43D\t0x6B62\n0xF43E\t0x6C60\n0xF43F\t0x6C9A\n0xF440\t0x6F2C\n0xF441\t0x77E5\n0xF442\t0x7825\n0xF443\t0x7949\n0xF444\t0x7957\n0xF445\t0x7D19\n0xF446\t0x80A2\n0xF447\t0x8102\n0xF448\t0x81F3\n0xF449\t0x829D\n0xF44A\t0x82B7\n0xF44B\t0x8718\n0xF44C\t0x8A8C\n0xF44D\t0xF9FC\n0xF44E\t0x8D04\n0xF44F\t0x8DBE\n0xF450\t0x9072\n0xF451\t0x76F4\n0xF452\t0x7A19\n0xF453\t0x7A37\n0xF454\t0x7E54\n0xF455\t0x8077\n0xF456\t0x5507\n0xF457\t0x55D4\n0xF458\t0x5875\n0xF459\t0x632F\n0xF45A\t0x6422\n0xF45B\t0x6649\n0xF45C\t0x664B\n0xF45D\t0x686D\n0xF45E\t0x699B\n0xF45F\t0x6B84\n0xF460\t0x6D25\n0xF461\t0x6EB1\n0xF462\t0x73CD\n0xF463\t0x7468\n0xF464\t0x74A1\n0xF465\t0x755B\n0xF466\t0x75B9\n0xF467\t0x76E1\n0xF468\t0x771E\n0xF469\t0x778B\n0xF46A\t0x79E6\n0xF46B\t0x7E09\n0xF46C\t0x7E1D\n0xF46D\t0x81FB\n0xF46E\t0x852F\n0xF46F\t0x8897\n0xF470\t0x8A3A\n0xF471\t0x8CD1\n0xF472\t0x8EEB\n0xF473\t0x8FB0\n0xF474\t0x9032\n0xF475\t0x93AD\n0xF476\t0x9663\n0xF477\t0x9673\n0xF478\t0x9707\n0xF479\t0x4F84\n0xF47A\t0x53F1\n0xF47B\t0x59EA\n0xF47C\t0x5AC9\n0xF47D\t0x5E19\n0xF47E\t0x684E\n0xF491\t0x74C6\n0xF492\t0x75BE\n0xF493\t0x79E9\n0xF494\t0x7A92\n0xF495\t0x81A3\n0xF496\t0x86ED\n0xF497\t0x8CEA\n0xF498\t0x8DCC\n0xF499\t0x8FED\n0xF49A\t0x659F\n0xF49B\t0x6715\n0xF49C\t0xF9FD\n0xF49D\t0x57F7\n0xF49E\t0x6F57\n0xF49F\t0x7DDD\n0xF4A0\t0x8F2F\n0xF4A1\t0x93F6\n0xF4A2\t0x96C6\n0xF4A3\t0x5FB5\n0xF4A4\t0x61F2\n0xF4A5\t0x6F84\n0xF4A6\t0x4E14\n0xF4A7\t0x4F98\n0xF4A8\t0x501F\n0xF4A9\t0x53C9\n0xF4AA\t0x55DF\n0xF4AB\t0x5D6F\n0xF4AC\t0x5DEE\n0xF4AD\t0x6B21\n0xF4AE\t0x6B64\n0xF4AF\t0x78CB\n0xF4B0\t0x7B9A\n0xF4B1\t0xF9FE\n0xF4B2\t0x8E49\n0xF4B3\t0x8ECA\n0xF4B4\t0x906E\n0xF4B5\t0x6349\n0xF4B6\t0x643E\n0xF4B7\t0x7740\n0xF4B8\t0x7A84\n0xF4B9\t0x932F\n0xF4BA\t0x947F\n0xF4BB\t0x9F6A\n0xF4BC\t0x64B0\n0xF4BD\t0x6FAF\n0xF4BE\t0x71E6\n0xF4BF\t0x74A8\n0xF4C0\t0x74DA\n0xF4C1\t0x7AC4\n0xF4C2\t0x7C12\n0xF4C3\t0x7E82\n0xF4C4\t0x7CB2\n0xF4C5\t0x7E98\n0xF4C6\t0x8B9A\n0xF4C7\t0x8D0A\n0xF4C8\t0x947D\n0xF4C9\t0x9910\n0xF4CA\t0x994C\n0xF4CB\t0x5239\n0xF4CC\t0x5BDF\n0xF4CD\t0x64E6\n0xF4CE\t0x672D\n0xF4CF\t0x7D2E\n0xF4D0\t0x50ED\n0xF4D1\t0x53C3\n0xF4D2\t0x5879\n0xF4D3\t0x6158\n0xF4D4\t0x6159\n0xF4D5\t0x61FA\n0xF4D6\t0x65AC\n0xF4D7\t0x7AD9\n0xF4D8\t0x8B92\n0xF4D9\t0x8B96\n0xF4DA\t0x5009\n0xF4DB\t0x5021\n0xF4DC\t0x5275\n0xF4DD\t0x5531\n0xF4DE\t0x5A3C\n0xF4DF\t0x5EE0\n0xF4E0\t0x5F70\n0xF4E1\t0x6134\n0xF4E2\t0x655E\n0xF4E3\t0x660C\n0xF4E4\t0x6636\n0xF4E5\t0x66A2\n0xF4E6\t0x69CD\n0xF4E7\t0x6EC4\n0xF4E8\t0x6F32\n0xF4E9\t0x7316\n0xF4EA\t0x7621\n0xF4EB\t0x7A93\n0xF4EC\t0x8139\n0xF4ED\t0x8259\n0xF4EE\t0x83D6\n0xF4EF\t0x84BC\n0xF4F0\t0x50B5\n0xF4F1\t0x57F0\n0xF4F2\t0x5BC0\n0xF4F3\t0x5BE8\n0xF4F4\t0x5F69\n0xF4F5\t0x63A1\n0xF4F6\t0x7826\n0xF4F7\t0x7DB5\n0xF4F8\t0x83DC\n0xF4F9\t0x8521\n0xF4FA\t0x91C7\n0xF4FB\t0x91F5\n0xF4FC\t0x518A\n0xF4FD\t0x67F5\n0xF4FE\t0x7B56\n0xF531\t0x8CAC\n0xF532\t0x51C4\n0xF533\t0x59BB\n0xF534\t0x60BD\n0xF535\t0x8655\n0xF536\t0x501C\n0xF537\t0xF9FF\n0xF538\t0x5254\n0xF539\t0x5C3A\n0xF53A\t0x617D\n0xF53B\t0x621A\n0xF53C\t0x62D3\n0xF53D\t0x64F2\n0xF53E\t0x65A5\n0xF53F\t0x6ECC\n0xF540\t0x7620\n0xF541\t0x810A\n0xF542\t0x8E60\n0xF543\t0x965F\n0xF544\t0x96BB\n0xF545\t0x4EDF\n0xF546\t0x5343\n0xF547\t0x5598\n0xF548\t0x5929\n0xF549\t0x5DDD\n0xF54A\t0x64C5\n0xF54B\t0x6CC9\n0xF54C\t0x6DFA\n0xF54D\t0x7394\n0xF54E\t0x7A7F\n0xF54F\t0x821B\n0xF550\t0x85A6\n0xF551\t0x8CE4\n0xF552\t0x8E10\n0xF553\t0x9077\n0xF554\t0x91E7\n0xF555\t0x95E1\n0xF556\t0x9621\n0xF557\t0x97C6\n0xF558\t0x51F8\n0xF559\t0x54F2\n0xF55A\t0x5586\n0xF55B\t0x5FB9\n0xF55C\t0x64A4\n0xF55D\t0x6F88\n0xF55E\t0x7DB4\n0xF55F\t0x8F1F\n0xF560\t0x8F4D\n0xF561\t0x9435\n0xF562\t0x50C9\n0xF563\t0x5C16\n0xF564\t0x6CBE\n0xF565\t0x6DFB\n0xF566\t0x751B\n0xF567\t0x77BB\n0xF568\t0x7C3D\n0xF569\t0x7C64\n0xF56A\t0x8A79\n0xF56B\t0x8AC2\n0xF56C\t0x581E\n0xF56D\t0x59BE\n0xF56E\t0x5E16\n0xF56F\t0x6377\n0xF570\t0x7252\n0xF571\t0x758A\n0xF572\t0x776B\n0xF573\t0x8ADC\n0xF574\t0x8CBC\n0xF575\t0x8F12\n0xF576\t0x5EF3\n0xF577\t0x6674\n0xF578\t0x6DF8\n0xF579\t0x807D\n0xF57A\t0x83C1\n0xF57B\t0x8ACB\n0xF57C\t0x9751\n0xF57D\t0x9BD6\n0xF57E\t0xFA00\n0xF591\t0x5243\n0xF592\t0x66FF\n0xF593\t0x6D95\n0xF594\t0x6EEF\n0xF595\t0x7DE0\n0xF596\t0x8AE6\n0xF597\t0x902E\n0xF598\t0x905E\n0xF599\t0x9AD4\n0xF59A\t0x521D\n0xF59B\t0x527F\n0xF59C\t0x54E8\n0xF59D\t0x6194\n0xF59E\t0x6284\n0xF59F\t0x62DB\n0xF5A0\t0x68A2\n0xF5A1\t0x6912\n0xF5A2\t0x695A\n0xF5A3\t0x6A35\n0xF5A4\t0x7092\n0xF5A5\t0x7126\n0xF5A6\t0x785D\n0xF5A7\t0x7901\n0xF5A8\t0x790E\n0xF5A9\t0x79D2\n0xF5AA\t0x7A0D\n0xF5AB\t0x8096\n0xF5AC\t0x8278\n0xF5AD\t0x82D5\n0xF5AE\t0x8349\n0xF5AF\t0x8549\n0xF5B0\t0x8C82\n0xF5B1\t0x8D85\n0xF5B2\t0x9162\n0xF5B3\t0x918B\n0xF5B4\t0x91AE\n0xF5B5\t0x4FC3\n0xF5B6\t0x56D1\n0xF5B7\t0x71ED\n0xF5B8\t0x77D7\n0xF5B9\t0x8700\n0xF5BA\t0x89F8\n0xF5BB\t0x5BF8\n0xF5BC\t0x5FD6\n0xF5BD\t0x6751\n0xF5BE\t0x90A8\n0xF5BF\t0x53E2\n0xF5C0\t0x585A\n0xF5C1\t0x5BF5\n0xF5C2\t0x60A4\n0xF5C3\t0x6181\n0xF5C4\t0x6460\n0xF5C5\t0x7E3D\n0xF5C6\t0x8070\n0xF5C7\t0x8525\n0xF5C8\t0x9283\n0xF5C9\t0x64AE\n0xF5CA\t0x50AC\n0xF5CB\t0x5D14\n0xF5CC\t0x6700\n0xF5CD\t0x589C\n0xF5CE\t0x62BD\n0xF5CF\t0x63A8\n0xF5D0\t0x690E\n0xF5D1\t0x6978\n0xF5D2\t0x6A1E\n0xF5D3\t0x6E6B\n0xF5D4\t0x76BA\n0xF5D5\t0x79CB\n0xF5D6\t0x82BB\n0xF5D7\t0x8429\n0xF5D8\t0x8ACF\n0xF5D9\t0x8DA8\n0xF5DA\t0x8FFD\n0xF5DB\t0x9112\n0xF5DC\t0x914B\n0xF5DD\t0x919C\n0xF5DE\t0x9310\n0xF5DF\t0x9318\n0xF5E0\t0x939A\n0xF5E1\t0x96DB\n0xF5E2\t0x9A36\n0xF5E3\t0x9C0D\n0xF5E4\t0x4E11\n0xF5E5\t0x755C\n0xF5E6\t0x795D\n0xF5E7\t0x7AFA\n0xF5E8\t0x7B51\n0xF5E9\t0x7BC9\n0xF5EA\t0x7E2E\n0xF5EB\t0x84C4\n0xF5EC\t0x8E59\n0xF5ED\t0x8E74\n0xF5EE\t0x8EF8\n0xF5EF\t0x9010\n0xF5F0\t0x6625\n0xF5F1\t0x693F\n0xF5F2\t0x7443\n0xF5F3\t0x51FA\n0xF5F4\t0x672E\n0xF5F5\t0x9EDC\n0xF5F6\t0x5145\n0xF5F7\t0x5FE0\n0xF5F8\t0x6C96\n0xF5F9\t0x87F2\n0xF5FA\t0x885D\n0xF5FB\t0x8877\n0xF5FC\t0x60B4\n0xF5FD\t0x81B5\n0xF5FE\t0x8403\n0xF631\t0x8D05\n0xF632\t0x53D6\n0xF633\t0x5439\n0xF634\t0x5634\n0xF635\t0x5A36\n0xF636\t0x5C31\n0xF637\t0x708A\n0xF638\t0x7FE0\n0xF639\t0x805A\n0xF63A\t0x8106\n0xF63B\t0x81ED\n0xF63C\t0x8DA3\n0xF63D\t0x9189\n0xF63E\t0x9A5F\n0xF63F\t0x9DF2\n0xF640\t0x5074\n0xF641\t0x4EC4\n0xF642\t0x53A0\n0xF643\t0x60FB\n0xF644\t0x6E2C\n0xF645\t0x5C64\n0xF646\t0x4F88\n0xF647\t0x5024\n0xF648\t0x55E4\n0xF649\t0x5CD9\n0xF64A\t0x5E5F\n0xF64B\t0x6065\n0xF64C\t0x6894\n0xF64D\t0x6CBB\n0xF64E\t0x6DC4\n0xF64F\t0x71BE\n0xF650\t0x75D4\n0xF651\t0x75F4\n0xF652\t0x7661\n0xF653\t0x7A1A\n0xF654\t0x7A49\n0xF655\t0x7DC7\n0xF656\t0x7DFB\n0xF657\t0x7F6E\n0xF658\t0x81F4\n0xF659\t0x86A9\n0xF65A\t0x8F1C\n0xF65B\t0x96C9\n0xF65C\t0x99B3\n0xF65D\t0x9F52\n0xF65E\t0x5247\n0xF65F\t0x52C5\n0xF660\t0x98ED\n0xF661\t0x89AA\n0xF662\t0x4E03\n0xF663\t0x67D2\n0xF664\t0x6F06\n0xF665\t0x4FB5\n0xF666\t0x5BE2\n0xF667\t0x6795\n0xF668\t0x6C88\n0xF669\t0x6D78\n0xF66A\t0x741B\n0xF66B\t0x7827\n0xF66C\t0x91DD\n0xF66D\t0x937C\n0xF66E\t0x87C4\n0xF66F\t0x79E4\n0xF670\t0x7A31\n0xF671\t0x5FEB\n0xF672\t0x4ED6\n0xF673\t0x54A4\n0xF674\t0x553E\n0xF675\t0x58AE\n0xF676\t0x59A5\n0xF677\t0x60F0\n0xF678\t0x6253\n0xF679\t0x62D6\n0xF67A\t0x6736\n0xF67B\t0x6955\n0xF67C\t0x8235\n0xF67D\t0x9640\n0xF67E\t0x99B1\n0xF691\t0x99DD\n0xF692\t0x502C\n0xF693\t0x5353\n0xF694\t0x5544\n0xF695\t0x577C\n0xF696\t0xFA01\n0xF697\t0x6258\n0xF698\t0xFA02\n0xF699\t0x64E2\n0xF69A\t0x666B\n0xF69B\t0x67DD\n0xF69C\t0x6FC1\n0xF69D\t0x6FEF\n0xF69E\t0x7422\n0xF69F\t0x7438\n0xF6A0\t0x8A17\n0xF6A1\t0x9438\n0xF6A2\t0x5451\n0xF6A3\t0x5606\n0xF6A4\t0x5766\n0xF6A5\t0x5F48\n0xF6A6\t0x619A\n0xF6A7\t0x6B4E\n0xF6A8\t0x7058\n0xF6A9\t0x70AD\n0xF6AA\t0x7DBB\n0xF6AB\t0x8A95\n0xF6AC\t0x596A\n0xF6AD\t0x812B\n0xF6AE\t0x63A2\n0xF6AF\t0x7708\n0xF6B0\t0x803D\n0xF6B1\t0x8CAA\n0xF6B2\t0x5854\n0xF6B3\t0x642D\n0xF6B4\t0x69BB\n0xF6B5\t0x5B95\n0xF6B6\t0x5E11\n0xF6B7\t0x6E6F\n0xF6B8\t0xFA03\n0xF6B9\t0x8569\n0xF6BA\t0x514C\n0xF6BB\t0x53F0\n0xF6BC\t0x592A\n0xF6BD\t0x6020\n0xF6BE\t0x614B\n0xF6BF\t0x6B86\n0xF6C0\t0x6C70\n0xF6C1\t0x6CF0\n0xF6C2\t0x7B1E\n0xF6C3\t0x80CE\n0xF6C4\t0x82D4\n0xF6C5\t0x8DC6\n0xF6C6\t0x90B0\n0xF6C7\t0x98B1\n0xF6C8\t0xFA04\n0xF6C9\t0x64C7\n0xF6CA\t0x6FA4\n0xF6CB\t0x6491\n0xF6CC\t0x6504\n0xF6CD\t0x514E\n0xF6CE\t0x5410\n0xF6CF\t0x571F\n0xF6D0\t0x8A0E\n0xF6D1\t0x615F\n0xF6D2\t0x6876\n0xF6D3\t0xFA05\n0xF6D4\t0x75DB\n0xF6D5\t0x7B52\n0xF6D6\t0x7D71\n0xF6D7\t0x901A\n0xF6D8\t0x5806\n0xF6D9\t0x69CC\n0xF6DA\t0x817F\n0xF6DB\t0x892A\n0xF6DC\t0x9000\n0xF6DD\t0x9839\n0xF6DE\t0x5078\n0xF6DF\t0x5957\n0xF6E0\t0x59AC\n0xF6E1\t0x6295\n0xF6E2\t0x900F\n0xF6E3\t0x9B2A\n0xF6E4\t0x615D\n0xF6E5\t0x7279\n0xF6E6\t0x95D6\n0xF6E7\t0x5761\n0xF6E8\t0x5A46\n0xF6E9\t0x5DF4\n0xF6EA\t0x628A\n0xF6EB\t0x64AD\n0xF6EC\t0x64FA\n0xF6ED\t0x6777\n0xF6EE\t0x6CE2\n0xF6EF\t0x6D3E\n0xF6F0\t0x722C\n0xF6F1\t0x7436\n0xF6F2\t0x7834\n0xF6F3\t0x7F77\n0xF6F4\t0x82AD\n0xF6F5\t0x8DDB\n0xF6F6\t0x9817\n0xF6F7\t0x5224\n0xF6F8\t0x5742\n0xF6F9\t0x677F\n0xF6FA\t0x7248\n0xF6FB\t0x74E3\n0xF6FC\t0x8CA9\n0xF6FD\t0x8FA6\n0xF6FE\t0x9211\n0xF731\t0x962A\n0xF732\t0x516B\n0xF733\t0x53ED\n0xF734\t0x634C\n0xF735\t0x4F69\n0xF736\t0x5504\n0xF737\t0x6096\n0xF738\t0x6557\n0xF739\t0x6C9B\n0xF73A\t0x6D7F\n0xF73B\t0x724C\n0xF73C\t0x72FD\n0xF73D\t0x7A17\n0xF73E\t0x8987\n0xF73F\t0x8C9D\n0xF740\t0x5F6D\n0xF741\t0x6F8E\n0xF742\t0x70F9\n0xF743\t0x81A8\n0xF744\t0x610E\n0xF745\t0x4FBF\n0xF746\t0x504F\n0xF747\t0x6241\n0xF748\t0x7247\n0xF749\t0x7BC7\n0xF74A\t0x7DE8\n0xF74B\t0x7FE9\n0xF74C\t0x904D\n0xF74D\t0x97AD\n0xF74E\t0x9A19\n0xF74F\t0x8CB6\n0xF750\t0x576A\n0xF751\t0x5E73\n0xF752\t0x67B0\n0xF753\t0x840D\n0xF754\t0x8A55\n0xF755\t0x5420\n0xF756\t0x5B16\n0xF757\t0x5E63\n0xF758\t0x5EE2\n0xF759\t0x5F0A\n0xF75A\t0x6583\n0xF75B\t0x80BA\n0xF75C\t0x853D\n0xF75D\t0x9589\n0xF75E\t0x965B\n0xF75F\t0x4F48\n0xF760\t0x5305\n0xF761\t0x530D\n0xF762\t0x530F\n0xF763\t0x5486\n0xF764\t0x54FA\n0xF765\t0x5703\n0xF766\t0x5E03\n0xF767\t0x6016\n0xF768\t0x629B\n0xF769\t0x62B1\n0xF76A\t0x6355\n0xF76B\t0xFA06\n0xF76C\t0x6CE1\n0xF76D\t0x6D66\n0xF76E\t0x75B1\n0xF76F\t0x7832\n0xF770\t0x80DE\n0xF771\t0x812F\n0xF772\t0x82DE\n0xF773\t0x8461\n0xF774\t0x84B2\n0xF775\t0x888D\n0xF776\t0x8912\n0xF777\t0x900B\n0xF778\t0x92EA\n0xF779\t0x98FD\n0xF77A\t0x9B91\n0xF77B\t0x5E45\n0xF77C\t0x66B4\n0xF77D\t0x66DD\n0xF77E\t0x7011\n0xF791\t0x7206\n0xF792\t0xFA07\n0xF793\t0x4FF5\n0xF794\t0x527D\n0xF795\t0x5F6A\n0xF796\t0x6153\n0xF797\t0x6753\n0xF798\t0x6A19\n0xF799\t0x6F02\n0xF79A\t0x74E2\n0xF79B\t0x7968\n0xF79C\t0x8868\n0xF79D\t0x8C79\n0xF79E\t0x98C7\n0xF79F\t0x98C4\n0xF7A0\t0x9A43\n0xF7A1\t0x54C1\n0xF7A2\t0x7A1F\n0xF7A3\t0x6953\n0xF7A4\t0x8AF7\n0xF7A5\t0x8C4A\n0xF7A6\t0x98A8\n0xF7A7\t0x99AE\n0xF7A8\t0x5F7C\n0xF7A9\t0x62AB\n0xF7AA\t0x75B2\n0xF7AB\t0x76AE\n0xF7AC\t0x88AB\n0xF7AD\t0x907F\n0xF7AE\t0x9642\n0xF7AF\t0x5339\n0xF7B0\t0x5F3C\n0xF7B1\t0x5FC5\n0xF7B2\t0x6CCC\n0xF7B3\t0x73CC\n0xF7B4\t0x7562\n0xF7B5\t0x758B\n0xF7B6\t0x7B46\n0xF7B7\t0x82FE\n0xF7B8\t0x999D\n0xF7B9\t0x4E4F\n0xF7BA\t0x903C\n0xF7BB\t0x4E0B\n0xF7BC\t0x4F55\n0xF7BD\t0x53A6\n0xF7BE\t0x590F\n0xF7BF\t0x5EC8\n0xF7C0\t0x6630\n0xF7C1\t0x6CB3\n0xF7C2\t0x7455\n0xF7C3\t0x8377\n0xF7C4\t0x8766\n0xF7C5\t0x8CC0\n0xF7C6\t0x9050\n0xF7C7\t0x971E\n0xF7C8\t0x9C15\n0xF7C9\t0x58D1\n0xF7CA\t0x5B78\n0xF7CB\t0x8650\n0xF7CC\t0x8B14\n0xF7CD\t0x9DB4\n0xF7CE\t0x5BD2\n0xF7CF\t0x6068\n0xF7D0\t0x608D\n0xF7D1\t0x65F1\n0xF7D2\t0x6C57\n0xF7D3\t0x6F22\n0xF7D4\t0x6FA3\n0xF7D5\t0x701A\n0xF7D6\t0x7F55\n0xF7D7\t0x7FF0\n0xF7D8\t0x9591\n0xF7D9\t0x9592\n0xF7DA\t0x9650\n0xF7DB\t0x97D3\n0xF7DC\t0x5272\n0xF7DD\t0x8F44\n0xF7DE\t0x51FD\n0xF7DF\t0x542B\n0xF7E0\t0x54B8\n0xF7E1\t0x5563\n0xF7E2\t0x558A\n0xF7E3\t0x6ABB\n0xF7E4\t0x6DB5\n0xF7E5\t0x7DD8\n0xF7E6\t0x8266\n0xF7E7\t0x929C\n0xF7E8\t0x9677\n0xF7E9\t0x9E79\n0xF7EA\t0x5408\n0xF7EB\t0x54C8\n0xF7EC\t0x76D2\n0xF7ED\t0x86E4\n0xF7EE\t0x95A4\n0xF7EF\t0x95D4\n0xF7F0\t0x965C\n0xF7F1\t0x4EA2\n0xF7F2\t0x4F09\n0xF7F3\t0x59EE\n0xF7F4\t0x5AE6\n0xF7F5\t0x5DF7\n0xF7F6\t0x6052\n0xF7F7\t0x6297\n0xF7F8\t0x676D\n0xF7F9\t0x6841\n0xF7FA\t0x6C86\n0xF7FB\t0x6E2F\n0xF7FC\t0x7F38\n0xF7FD\t0x809B\n0xF7FE\t0x822A\n0xF831\t0xFA08\n0xF832\t0xFA09\n0xF833\t0x9805\n0xF834\t0x4EA5\n0xF835\t0x5055\n0xF836\t0x54B3\n0xF837\t0x5793\n0xF838\t0x595A\n0xF839\t0x5B69\n0xF83A\t0x5BB3\n0xF83B\t0x61C8\n0xF83C\t0x6977\n0xF83D\t0x6D77\n0xF83E\t0x7023\n0xF83F\t0x87F9\n0xF840\t0x89E3\n0xF841\t0x8A72\n0xF842\t0x8AE7\n0xF843\t0x9082\n0xF844\t0x99ED\n0xF845\t0x9AB8\n0xF846\t0x52BE\n0xF847\t0x6838\n0xF848\t0x5016\n0xF849\t0x5E78\n0xF84A\t0x674F\n0xF84B\t0x8347\n0xF84C\t0x884C\n0xF84D\t0x4EAB\n0xF84E\t0x5411\n0xF84F\t0x56AE\n0xF850\t0x73E6\n0xF851\t0x9115\n0xF852\t0x97FF\n0xF853\t0x9909\n0xF854\t0x9957\n0xF855\t0x9999\n0xF856\t0x5653\n0xF857\t0x589F\n0xF858\t0x865B\n0xF859\t0x8A31\n0xF85A\t0x61B2\n0xF85B\t0x6AF6\n0xF85C\t0x737B\n0xF85D\t0x8ED2\n0xF85E\t0x6B47\n0xF85F\t0x96AA\n0xF860\t0x9A57\n0xF861\t0x5955\n0xF862\t0x7200\n0xF863\t0x8D6B\n0xF864\t0x9769\n0xF865\t0x4FD4\n0xF866\t0x5CF4\n0xF867\t0x5F26\n0xF868\t0x61F8\n0xF869\t0x665B\n0xF86A\t0x6CEB\n0xF86B\t0x70AB\n0xF86C\t0x7384\n0xF86D\t0x73B9\n0xF86E\t0x73FE\n0xF86F\t0x7729\n0xF870\t0x774D\n0xF871\t0x7D43\n0xF872\t0x7D62\n0xF873\t0x7E23\n0xF874\t0x8237\n0xF875\t0x8852\n0xF876\t0xFA0A\n0xF877\t0x8CE2\n0xF878\t0x9249\n0xF879\t0x986F\n0xF87A\t0x5B51\n0xF87B\t0x7A74\n0xF87C\t0x8840\n0xF87D\t0x9801\n0xF87E\t0x5ACC\n0xF891\t0x4FE0\n0xF892\t0x5354\n0xF893\t0x593E\n0xF894\t0x5CFD\n0xF895\t0x633E\n0xF896\t0x6D79\n0xF897\t0x72F9\n0xF898\t0x8105\n0xF899\t0x8107\n0xF89A\t0x83A2\n0xF89B\t0x92CF\n0xF89C\t0x9830\n0xF89D\t0x4EA8\n0xF89E\t0x5144\n0xF89F\t0x5211\n0xF8A0\t0x578B\n0xF8A1\t0x5F62\n0xF8A2\t0x6CC2\n0xF8A3\t0x6ECE\n0xF8A4\t0x7005\n0xF8A5\t0x7050\n0xF8A6\t0x70AF\n0xF8A7\t0x7192\n0xF8A8\t0x73E9\n0xF8A9\t0x7469\n0xF8AA\t0x834A\n0xF8AB\t0x87A2\n0xF8AC\t0x8861\n0xF8AD\t0x9008\n0xF8AE\t0x90A2\n0xF8AF\t0x93A3\n0xF8B0\t0x99A8\n0xF8B1\t0x516E\n0xF8B2\t0x5F57\n0xF8B3\t0x60E0\n0xF8B4\t0x6167\n0xF8B5\t0x66B3\n0xF8B6\t0x8559\n0xF8B7\t0x8E4A\n0xF8B8\t0x91AF\n0xF8B9\t0x978B\n0xF8BA\t0x4E4E\n0xF8BB\t0x4E92\n0xF8BC\t0x547C\n0xF8BD\t0x58D5\n0xF8BE\t0x58FA\n0xF8BF\t0x597D\n0xF8C0\t0x5CB5\n0xF8C1\t0x5F27\n0xF8C2\t0x6236\n0xF8C3\t0x6248\n0xF8C4\t0x660A\n0xF8C5\t0x6667\n0xF8C6\t0x6BEB\n0xF8C7\t0x6D69\n0xF8C8\t0x6DCF\n0xF8C9\t0x6E56\n0xF8CA\t0x6EF8\n0xF8CB\t0x6F94\n0xF8CC\t0x6FE0\n0xF8CD\t0x6FE9\n0xF8CE\t0x705D\n0xF8CF\t0x72D0\n0xF8D0\t0x7425\n0xF8D1\t0x745A\n0xF8D2\t0x74E0\n0xF8D3\t0x7693\n0xF8D4\t0x795C\n0xF8D5\t0x7CCA\n0xF8D6\t0x7E1E\n0xF8D7\t0x80E1\n0xF8D8\t0x82A6\n0xF8D9\t0x846B\n0xF8DA\t0x84BF\n0xF8DB\t0x864E\n0xF8DC\t0x865F\n0xF8DD\t0x8774\n0xF8DE\t0x8B77\n0xF8DF\t0x8C6A\n0xF8E0\t0x93AC\n0xF8E1\t0x9800\n0xF8E2\t0x9865\n0xF8E3\t0x60D1\n0xF8E4\t0x6216\n0xF8E5\t0x9177\n0xF8E6\t0x5A5A\n0xF8E7\t0x660F\n0xF8E8\t0x6DF7\n0xF8E9\t0x6E3E\n0xF8EA\t0x743F\n0xF8EB\t0x9B42\n0xF8EC\t0x5FFD\n0xF8ED\t0x60DA\n0xF8EE\t0x7B0F\n0xF8EF\t0x54C4\n0xF8F0\t0x5F18\n0xF8F1\t0x6C5E\n0xF8F2\t0x6CD3\n0xF8F3\t0x6D2A\n0xF8F4\t0x70D8\n0xF8F5\t0x7D05\n0xF8F6\t0x8679\n0xF8F7\t0x8A0C\n0xF8F8\t0x9D3B\n0xF8F9\t0x5316\n0xF8FA\t0x548C\n0xF8FB\t0x5B05\n0xF8FC\t0x6A3A\n0xF8FD\t0x706B\n0xF8FE\t0x7575\n0xF931\t0x798D\n0xF932\t0x79BE\n0xF933\t0x82B1\n0xF934\t0x83EF\n0xF935\t0x8A71\n0xF936\t0x8B41\n0xF937\t0x8CA8\n0xF938\t0x9774\n0xF939\t0xFA0B\n0xF93A\t0x64F4\n0xF93B\t0x652B\n0xF93C\t0x78BA\n0xF93D\t0x78BB\n0xF93E\t0x7A6B\n0xF93F\t0x4E38\n0xF940\t0x559A\n0xF941\t0x5950\n0xF942\t0x5BA6\n0xF943\t0x5E7B\n0xF944\t0x60A3\n0xF945\t0x63DB\n0xF946\t0x6B61\n0xF947\t0x6665\n0xF948\t0x6853\n0xF949\t0x6E19\n0xF94A\t0x7165\n0xF94B\t0x74B0\n0xF94C\t0x7D08\n0xF94D\t0x9084\n0xF94E\t0x9A69\n0xF94F\t0x9C25\n0xF950\t0x6D3B\n0xF951\t0x6ED1\n0xF952\t0x733E\n0xF953\t0x8C41\n0xF954\t0x95CA\n0xF955\t0x51F0\n0xF956\t0x5E4C\n0xF957\t0x5FA8\n0xF958\t0x604D\n0xF959\t0x60F6\n0xF95A\t0x6130\n0xF95B\t0x614C\n0xF95C\t0x6643\n0xF95D\t0x6644\n0xF95E\t0x69A5\n0xF95F\t0x6CC1\n0xF960\t0x6E5F\n0xF961\t0x6EC9\n0xF962\t0x6F62\n0xF963\t0x714C\n0xF964\t0x749C\n0xF965\t0x7687\n0xF966\t0x7BC1\n0xF967\t0x7C27\n0xF968\t0x8352\n0xF969\t0x8757\n0xF96A\t0x9051\n0xF96B\t0x968D\n0xF96C\t0x9EC3\n0xF96D\t0x532F\n0xF96E\t0x56DE\n0xF96F\t0x5EFB\n0xF970\t0x5F8A\n0xF971\t0x6062\n0xF972\t0x6094\n0xF973\t0x61F7\n0xF974\t0x6666\n0xF975\t0x6703\n0xF976\t0x6A9C\n0xF977\t0x6DEE\n0xF978\t0x6FAE\n0xF979\t0x7070\n0xF97A\t0x736A\n0xF97B\t0x7E6A\n0xF97C\t0x81BE\n0xF97D\t0x8334\n0xF97E\t0x86D4\n0xF991\t0x8AA8\n0xF992\t0x8CC4\n0xF993\t0x5283\n0xF994\t0x7372\n0xF995\t0x5B96\n0xF996\t0x6A6B\n0xF997\t0x9404\n0xF998\t0x54EE\n0xF999\t0x5686\n0xF99A\t0x5B5D\n0xF99B\t0x6548\n0xF99C\t0x6585\n0xF99D\t0x66C9\n0xF99E\t0x689F\n0xF99F\t0x6D8D\n0xF9A0\t0x6DC6\n0xF9A1\t0x723B\n0xF9A2\t0x80B4\n0xF9A3\t0x9175\n0xF9A4\t0x9A4D\n0xF9A5\t0x4FAF\n0xF9A6\t0x5019\n0xF9A7\t0x539A\n0xF9A8\t0x540E\n0xF9A9\t0x543C\n0xF9AA\t0x5589\n0xF9AB\t0x55C5\n0xF9AC\t0x5E3F\n0xF9AD\t0x5F8C\n0xF9AE\t0x673D\n0xF9AF\t0x7166\n0xF9B0\t0x73DD\n0xF9B1\t0x9005\n0xF9B2\t0x52DB\n0xF9B3\t0x52F3\n0xF9B4\t0x5864\n0xF9B5\t0x58CE\n0xF9B6\t0x7104\n0xF9B7\t0x718F\n0xF9B8\t0x71FB\n0xF9B9\t0x85B0\n0xF9BA\t0x8A13\n0xF9BB\t0x6688\n0xF9BC\t0x85A8\n0xF9BD\t0x55A7\n0xF9BE\t0x6684\n0xF9BF\t0x714A\n0xF9C0\t0x8431\n0xF9C1\t0x5349\n0xF9C2\t0x5599\n0xF9C3\t0x6BC1\n0xF9C4\t0x5F59\n0xF9C5\t0x5FBD\n0xF9C6\t0x63EE\n0xF9C7\t0x6689\n0xF9C8\t0x7147\n0xF9C9\t0x8AF1\n0xF9CA\t0x8F1D\n0xF9CB\t0x9EBE\n0xF9CC\t0x4F11\n0xF9CD\t0x643A\n0xF9CE\t0x70CB\n0xF9CF\t0x7566\n0xF9D0\t0x8667\n0xF9D1\t0x6064\n0xF9D2\t0x8B4E\n0xF9D3\t0x9DF8\n0xF9D4\t0x5147\n0xF9D5\t0x51F6\n0xF9D6\t0x5308\n0xF9D7\t0x6D36\n0xF9D8\t0x80F8\n0xF9D9\t0x9ED1\n0xF9DA\t0x6615\n0xF9DB\t0x6B23\n0xF9DC\t0x7098\n0xF9DD\t0x75D5\n0xF9DE\t0x5403\n0xF9DF\t0x5C79\n0xF9E0\t0x7D07\n0xF9E1\t0x8A16\n0xF9E2\t0x6B20\n0xF9E3\t0x6B3D\n0xF9E4\t0x6B46\n0xF9E5\t0x5438\n0xF9E6\t0x6070\n0xF9E7\t0x6D3D\n0xF9E8\t0x7FD5\n0xF9E9\t0x8208\n0xF9EA\t0x50D6\n0xF9EB\t0x51DE\n0xF9EC\t0x559C\n0xF9ED\t0x566B\n0xF9EE\t0x56CD\n0xF9EF\t0x59EC\n0xF9F0\t0x5B09\n0xF9F1\t0x5E0C\n0xF9F2\t0x6199\n0xF9F3\t0x6198\n0xF9F4\t0x6231\n0xF9F5\t0x665E\n0xF9F6\t0x66E6\n0xF9F7\t0x7199\n0xF9F8\t0x71B9\n0xF9F9\t0x71BA\n0xF9FA\t0x72A7\n0xF9FB\t0x79A7\n0xF9FC\t0x7A00\n0xF9FD\t0x7FB2\n0xF9FE\t0x8A70\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/KOI8-R.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x2500\n0x81\t0x2502\n0x82\t0x250C\n0x83\t0x2510\n0x84\t0x2514\n0x85\t0x2518\n0x86\t0x251C\n0x87\t0x2524\n0x88\t0x252C\n0x89\t0x2534\n0x8A\t0x253C\n0x8B\t0x2580\n0x8C\t0x2584\n0x8D\t0x2588\n0x8E\t0x258C\n0x8F\t0x2590\n0x90\t0x2591\n0x91\t0x2592\n0x92\t0x2593\n0x93\t0x2320\n0x94\t0x25A0\n0x95\t0x2219\n0x96\t0x221A\n0x97\t0x2248\n0x98\t0x2264\n0x99\t0x2265\n0x9A\t0x00A0\n0x9B\t0x2321\n0x9C\t0x00B0\n0x9D\t0x00B2\n0x9E\t0x00B7\n0x9F\t0x00F7\n0xA0\t0x2550\n0xA1\t0x2551\n0xA2\t0x2552\n0xA3\t0x0451\n0xA4\t0x2553\n0xA5\t0x2554\n0xA6\t0x2555\n0xA7\t0x2556\n0xA8\t0x2557\n0xA9\t0x2558\n0xAA\t0x2559\n0xAB\t0x255A\n0xAC\t0x255B\n0xAD\t0x255C\n0xAE\t0x255D\n0xAF\t0x255E\n0xB0\t0x255F\n0xB1\t0x2560\n0xB2\t0x2561\n0xB3\t0x0401\n0xB4\t0x2562\n0xB5\t0x2563\n0xB6\t0x2564\n0xB7\t0x2565\n0xB8\t0x2566\n0xB9\t0x2567\n0xBA\t0x2568\n0xBB\t0x2569\n0xBC\t0x256A\n0xBD\t0x256B\n0xBE\t0x256C\n0xBF\t0x00A9\n0xC0\t0x044E\n0xC1\t0x0430\n0xC2\t0x0431\n0xC3\t0x0446\n0xC4\t0x0434\n0xC5\t0x0435\n0xC6\t0x0444\n0xC7\t0x0433\n0xC8\t0x0445\n0xC9\t0x0438\n0xCA\t0x0439\n0xCB\t0x043A\n0xCC\t0x043B\n0xCD\t0x043C\n0xCE\t0x043D\n0xCF\t0x043E\n0xD0\t0x043F\n0xD1\t0x044F\n0xD2\t0x0440\n0xD3\t0x0441\n0xD4\t0x0442\n0xD5\t0x0443\n0xD6\t0x0436\n0xD7\t0x0432\n0xD8\t0x044C\n0xD9\t0x044B\n0xDA\t0x0437\n0xDB\t0x0448\n0xDC\t0x044D\n0xDD\t0x0449\n0xDE\t0x0447\n0xDF\t0x044A\n0xE0\t0x042E\n0xE1\t0x0410\n0xE2\t0x0411\n0xE3\t0x0426\n0xE4\t0x0414\n0xE5\t0x0415\n0xE6\t0x0424\n0xE7\t0x0413\n0xE8\t0x0425\n0xE9\t0x0418\n0xEA\t0x0419\n0xEB\t0x041A\n0xEC\t0x041B\n0xED\t0x041C\n0xEE\t0x041D\n0xEF\t0x041E\n0xF0\t0x041F\n0xF1\t0x042F\n0xF2\t0x0420\n0xF3\t0x0421\n0xF4\t0x0422\n0xF5\t0x0423\n0xF6\t0x0416\n0xF7\t0x0412\n0xF8\t0x042C\n0xF9\t0x042B\n0xFA\t0x0417\n0xFB\t0x0428\n0xFC\t0x042D\n0xFD\t0x0429\n0xFE\t0x0427\n0xFF\t0x042A\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/KOI8-RU.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x2500\n0x81\t0x2502\n0x82\t0x250C\n0x83\t0x2510\n0x84\t0x2514\n0x85\t0x2518\n0x86\t0x251C\n0x87\t0x2524\n0x88\t0x252C\n0x89\t0x2534\n0x8A\t0x253C\n0x8B\t0x2580\n0x8C\t0x2584\n0x8D\t0x2588\n0x8E\t0x258C\n0x8F\t0x2590\n0x90\t0x2591\n0x91\t0x2592\n0x92\t0x2593\n0x93\t0x2320\n0x94\t0x25A0\n0x95\t0x2219\n0x96\t0x221A\n0x97\t0x2248\n0x98\t0x2264\n0x99\t0x2265\n0x9A\t0x00A0\n0x9B\t0x2321\n0x9C\t0x00B0\n0x9D\t0x00B2\n0x9E\t0x00B7\n0x9F\t0x00F7\n0xA0\t0x2550\n0xA1\t0x2551\n0xA2\t0x2552\n0xA3\t0x0451\n0xA4\t0x0454\n0xA5\t0x2554\n0xA6\t0x0456\n0xA7\t0x0457\n0xA8\t0x2557\n0xA9\t0x2558\n0xAA\t0x2559\n0xAB\t0x255A\n0xAC\t0x255B\n0xAD\t0x0491\n0xAE\t0x045E\n0xAF\t0x255E\n0xB0\t0x255F\n0xB1\t0x2560\n0xB2\t0x2561\n0xB3\t0x0401\n0xB4\t0x0404\n0xB5\t0x2563\n0xB6\t0x0406\n0xB7\t0x0407\n0xB8\t0x2566\n0xB9\t0x2567\n0xBA\t0x2568\n0xBB\t0x2569\n0xBC\t0x256A\n0xBD\t0x0490\n0xBE\t0x040E\n0xBF\t0x00A9\n0xC0\t0x044E\n0xC1\t0x0430\n0xC2\t0x0431\n0xC3\t0x0446\n0xC4\t0x0434\n0xC5\t0x0435\n0xC6\t0x0444\n0xC7\t0x0433\n0xC8\t0x0445\n0xC9\t0x0438\n0xCA\t0x0439\n0xCB\t0x043A\n0xCC\t0x043B\n0xCD\t0x043C\n0xCE\t0x043D\n0xCF\t0x043E\n0xD0\t0x043F\n0xD1\t0x044F\n0xD2\t0x0440\n0xD3\t0x0441\n0xD4\t0x0442\n0xD5\t0x0443\n0xD6\t0x0436\n0xD7\t0x0432\n0xD8\t0x044C\n0xD9\t0x044B\n0xDA\t0x0437\n0xDB\t0x0448\n0xDC\t0x044D\n0xDD\t0x0449\n0xDE\t0x0447\n0xDF\t0x044A\n0xE0\t0x042E\n0xE1\t0x0410\n0xE2\t0x0411\n0xE3\t0x0426\n0xE4\t0x0414\n0xE5\t0x0415\n0xE6\t0x0424\n0xE7\t0x0413\n0xE8\t0x0425\n0xE9\t0x0418\n0xEA\t0x0419\n0xEB\t0x041A\n0xEC\t0x041B\n0xED\t0x041C\n0xEE\t0x041D\n0xEF\t0x041E\n0xF0\t0x041F\n0xF1\t0x042F\n0xF2\t0x0420\n0xF3\t0x0421\n0xF4\t0x0422\n0xF5\t0x0423\n0xF6\t0x0416\n0xF7\t0x0412\n0xF8\t0x042C\n0xF9\t0x042B\n0xFA\t0x0417\n0xFB\t0x0428\n0xFC\t0x042D\n0xFD\t0x0429\n0xFE\t0x0427\n0xFF\t0x042A\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/KOI8-T.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x049B\n0x81\t0x0493\n0x82\t0x201A\n0x83\t0x0492\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x89\t0x2030\n0x8A\t0x04B3\n0x8B\t0x2039\n0x8C\t0x04B2\n0x8D\t0x04B7\n0x8E\t0x04B6\n0x90\t0x049A\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x99\t0x2122\n0x9B\t0x203A\n0xA1\t0x04EF\n0xA2\t0x04EE\n0xA3\t0x0451\n0xA4\t0x00A4\n0xA5\t0x04E3\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x0401\n0xB5\t0x04E2\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB9\t0x2116\n0xBB\t0x00BB\n0xBF\t0x00A9\n0xC0\t0x044E\n0xC1\t0x0430\n0xC2\t0x0431\n0xC3\t0x0446\n0xC4\t0x0434\n0xC5\t0x0435\n0xC6\t0x0444\n0xC7\t0x0433\n0xC8\t0x0445\n0xC9\t0x0438\n0xCA\t0x0439\n0xCB\t0x043A\n0xCC\t0x043B\n0xCD\t0x043C\n0xCE\t0x043D\n0xCF\t0x043E\n0xD0\t0x043F\n0xD1\t0x044F\n0xD2\t0x0440\n0xD3\t0x0441\n0xD4\t0x0442\n0xD5\t0x0443\n0xD6\t0x0436\n0xD7\t0x0432\n0xD8\t0x044C\n0xD9\t0x044B\n0xDA\t0x0437\n0xDB\t0x0448\n0xDC\t0x044D\n0xDD\t0x0449\n0xDE\t0x0447\n0xDF\t0x044A\n0xE0\t0x042E\n0xE1\t0x0410\n0xE2\t0x0411\n0xE3\t0x0426\n0xE4\t0x0414\n0xE5\t0x0415\n0xE6\t0x0424\n0xE7\t0x0413\n0xE8\t0x0425\n0xE9\t0x0418\n0xEA\t0x0419\n0xEB\t0x041A\n0xEC\t0x041B\n0xED\t0x041C\n0xEE\t0x041D\n0xEF\t0x041E\n0xF0\t0x041F\n0xF1\t0x042F\n0xF2\t0x0420\n0xF3\t0x0421\n0xF4\t0x0422\n0xF5\t0x0423\n0xF6\t0x0416\n0xF7\t0x0412\n0xF8\t0x042C\n0xF9\t0x042B\n0xFA\t0x0417\n0xFB\t0x0428\n0xFC\t0x042D\n0xFD\t0x0429\n0xFE\t0x0427\n0xFF\t0x042A\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/KOI8-U.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x2500\n0x81\t0x2502\n0x82\t0x250C\n0x83\t0x2510\n0x84\t0x2514\n0x85\t0x2518\n0x86\t0x251C\n0x87\t0x2524\n0x88\t0x252C\n0x89\t0x2534\n0x8A\t0x253C\n0x8B\t0x2580\n0x8C\t0x2584\n0x8D\t0x2588\n0x8E\t0x258C\n0x8F\t0x2590\n0x90\t0x2591\n0x91\t0x2592\n0x92\t0x2593\n0x93\t0x2320\n0x94\t0x25A0\n0x95\t0x2219\n0x96\t0x221A\n0x97\t0x2248\n0x98\t0x2264\n0x99\t0x2265\n0x9A\t0x00A0\n0x9B\t0x2321\n0x9C\t0x00B0\n0x9D\t0x00B2\n0x9E\t0x00B7\n0x9F\t0x00F7\n0xA0\t0x2550\n0xA1\t0x2551\n0xA2\t0x2552\n0xA3\t0x0451\n0xA4\t0x0454\n0xA5\t0x2554\n0xA6\t0x0456\n0xA7\t0x0457\n0xA8\t0x2557\n0xA9\t0x2558\n0xAA\t0x2559\n0xAB\t0x255A\n0xAC\t0x255B\n0xAD\t0x0491\n0xAE\t0x255D\n0xAF\t0x255E\n0xB0\t0x255F\n0xB1\t0x2560\n0xB2\t0x2561\n0xB3\t0x0401\n0xB4\t0x0404\n0xB5\t0x2563\n0xB6\t0x0406\n0xB7\t0x0407\n0xB8\t0x2566\n0xB9\t0x2567\n0xBA\t0x2568\n0xBB\t0x2569\n0xBC\t0x256A\n0xBD\t0x0490\n0xBE\t0x256C\n0xBF\t0x00A9\n0xC0\t0x044E\n0xC1\t0x0430\n0xC2\t0x0431\n0xC3\t0x0446\n0xC4\t0x0434\n0xC5\t0x0435\n0xC6\t0x0444\n0xC7\t0x0433\n0xC8\t0x0445\n0xC9\t0x0438\n0xCA\t0x0439\n0xCB\t0x043A\n0xCC\t0x043B\n0xCD\t0x043C\n0xCE\t0x043D\n0xCF\t0x043E\n0xD0\t0x043F\n0xD1\t0x044F\n0xD2\t0x0440\n0xD3\t0x0441\n0xD4\t0x0442\n0xD5\t0x0443\n0xD6\t0x0436\n0xD7\t0x0432\n0xD8\t0x044C\n0xD9\t0x044B\n0xDA\t0x0437\n0xDB\t0x0448\n0xDC\t0x044D\n0xDD\t0x0449\n0xDE\t0x0447\n0xDF\t0x044A\n0xE0\t0x042E\n0xE1\t0x0410\n0xE2\t0x0411\n0xE3\t0x0426\n0xE4\t0x0414\n0xE5\t0x0415\n0xE6\t0x0424\n0xE7\t0x0413\n0xE8\t0x0425\n0xE9\t0x0418\n0xEA\t0x0419\n0xEB\t0x041A\n0xEC\t0x041B\n0xED\t0x041C\n0xEE\t0x041D\n0xEF\t0x041E\n0xF0\t0x041F\n0xF1\t0x042F\n0xF2\t0x0420\n0xF3\t0x0421\n0xF4\t0x0422\n0xF5\t0x0423\n0xF6\t0x0416\n0xF7\t0x0412\n0xF8\t0x042C\n0xF9\t0x042B\n0xFA\t0x0417\n0xFB\t0x0428\n0xFC\t0x042D\n0xFD\t0x0429\n0xFE\t0x0427\n0xFF\t0x042A\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacArabic.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C4\n0x81\t0x00A0\n0x82\t0x00C7\n0x83\t0x00C9\n0x84\t0x00D1\n0x85\t0x00D6\n0x86\t0x00DC\n0x87\t0x00E1\n0x88\t0x00E0\n0x89\t0x00E2\n0x8A\t0x00E4\n0x8B\t0x06BA\n0x8C\t0x00AB\n0x8D\t0x00E7\n0x8E\t0x00E9\n0x8F\t0x00E8\n0x90\t0x00EA\n0x91\t0x00EB\n0x92\t0x00ED\n0x93\t0x2026\n0x94\t0x00EE\n0x95\t0x00EF\n0x96\t0x00F1\n0x97\t0x00F3\n0x98\t0x00BB\n0x99\t0x00F4\n0x9A\t0x00F6\n0x9B\t0x00F7\n0x9C\t0x00FA\n0x9D\t0x00F9\n0x9E\t0x00FB\n0x9F\t0x00FC\n0xA5\t0x066A\n0xAC\t0x060C\n0xB0\t0x0660\n0xB1\t0x0661\n0xB2\t0x0662\n0xB3\t0x0663\n0xB4\t0x0664\n0xB5\t0x0665\n0xB6\t0x0666\n0xB7\t0x0667\n0xB8\t0x0668\n0xB9\t0x0669\n0xBB\t0x061B\n0xBF\t0x061F\n0xC0\t0x066D\n0xC1\t0x0621\n0xC2\t0x0622\n0xC3\t0x0623\n0xC4\t0x0624\n0xC5\t0x0625\n0xC6\t0x0626\n0xC7\t0x0627\n0xC8\t0x0628\n0xC9\t0x0629\n0xCA\t0x062A\n0xCB\t0x062B\n0xCC\t0x062C\n0xCD\t0x062D\n0xCE\t0x062E\n0xCF\t0x062F\n0xD0\t0x0630\n0xD1\t0x0631\n0xD2\t0x0632\n0xD3\t0x0633\n0xD4\t0x0634\n0xD5\t0x0635\n0xD6\t0x0636\n0xD7\t0x0637\n0xD8\t0x0638\n0xD9\t0x0639\n0xDA\t0x063A\n0xE0\t0x0640\n0xE1\t0x0641\n0xE2\t0x0642\n0xE3\t0x0643\n0xE4\t0x0644\n0xE5\t0x0645\n0xE6\t0x0646\n0xE7\t0x0647\n0xE8\t0x0648\n0xE9\t0x0649\n0xEA\t0x064A\n0xEB\t0x064B\n0xEC\t0x064C\n0xED\t0x064D\n0xEE\t0x064E\n0xEF\t0x064F\n0xF0\t0x0650\n0xF1\t0x0651\n0xF2\t0x0652\n0xF3\t0x067E\n0xF4\t0x0679\n0xF5\t0x0686\n0xF6\t0x06D5\n0xF7\t0x06A4\n0xF8\t0x06AF\n0xF9\t0x0688\n0xFA\t0x0691\n0xFE\t0x0698\n0xFF\t0x06D2\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacCentralEurope.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C4\n0x81\t0x0100\n0x82\t0x0101\n0x83\t0x00C9\n0x84\t0x0104\n0x85\t0x00D6\n0x86\t0x00DC\n0x87\t0x00E1\n0x88\t0x0105\n0x89\t0x010C\n0x8A\t0x00E4\n0x8B\t0x010D\n0x8C\t0x0106\n0x8D\t0x0107\n0x8E\t0x00E9\n0x8F\t0x0179\n0x90\t0x017A\n0x91\t0x010E\n0x92\t0x00ED\n0x93\t0x010F\n0x94\t0x0112\n0x95\t0x0113\n0x96\t0x0116\n0x97\t0x00F3\n0x98\t0x0117\n0x99\t0x00F4\n0x9A\t0x00F6\n0x9B\t0x00F5\n0x9C\t0x00FA\n0x9D\t0x011A\n0x9E\t0x011B\n0x9F\t0x00FC\n0xA0\t0x2020\n0xA1\t0x00B0\n0xA2\t0x0118\n0xA3\t0x00A3\n0xA4\t0x00A7\n0xA5\t0x2022\n0xA6\t0x00B6\n0xA7\t0x00DF\n0xA8\t0x00AE\n0xA9\t0x00A9\n0xAA\t0x2122\n0xAB\t0x0119\n0xAC\t0x00A8\n0xAD\t0x2260\n0xAE\t0x0123\n0xAF\t0x012E\n0xB0\t0x012F\n0xB1\t0x012A\n0xB2\t0x2264\n0xB3\t0x2265\n0xB4\t0x012B\n0xB5\t0x0136\n0xB6\t0x2202\n0xB7\t0x2211\n0xB8\t0x0142\n0xB9\t0x013B\n0xBA\t0x013C\n0xBB\t0x013D\n0xBC\t0x013E\n0xBD\t0x0139\n0xBE\t0x013A\n0xBF\t0x0145\n0xC0\t0x0146\n0xC1\t0x0143\n0xC2\t0x00AC\n0xC3\t0x221A\n0xC4\t0x0144\n0xC5\t0x0147\n0xC6\t0x2206\n0xC7\t0x00AB\n0xC8\t0x00BB\n0xC9\t0x2026\n0xCA\t0x00A0\n0xCB\t0x0148\n0xCC\t0x0150\n0xCD\t0x00D5\n0xCE\t0x0151\n0xCF\t0x014C\n0xD0\t0x2013\n0xD1\t0x2014\n0xD2\t0x201C\n0xD3\t0x201D\n0xD4\t0x2018\n0xD5\t0x2019\n0xD6\t0x00F7\n0xD7\t0x25CA\n0xD8\t0x014D\n0xD9\t0x0154\n0xDA\t0x0155\n0xDB\t0x0158\n0xDC\t0x2039\n0xDD\t0x203A\n0xDE\t0x0159\n0xDF\t0x0156\n0xE0\t0x0157\n0xE1\t0x0160\n0xE2\t0x201A\n0xE3\t0x201E\n0xE4\t0x0161\n0xE5\t0x015A\n0xE6\t0x015B\n0xE7\t0x00C1\n0xE8\t0x0164\n0xE9\t0x0165\n0xEA\t0x00CD\n0xEB\t0x017D\n0xEC\t0x017E\n0xED\t0x016A\n0xEE\t0x00D3\n0xEF\t0x00D4\n0xF0\t0x016B\n0xF1\t0x016E\n0xF2\t0x00DA\n0xF3\t0x016F\n0xF4\t0x0170\n0xF5\t0x0171\n0xF6\t0x0172\n0xF7\t0x0173\n0xF8\t0x00DD\n0xF9\t0x00FD\n0xFA\t0x0137\n0xFB\t0x017B\n0xFC\t0x0141\n0xFD\t0x017C\n0xFE\t0x0122\n0xFF\t0x02C7\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacCroatian.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C4\n0x81\t0x00C5\n0x82\t0x00C7\n0x83\t0x00C9\n0x84\t0x00D1\n0x85\t0x00D6\n0x86\t0x00DC\n0x87\t0x00E1\n0x88\t0x00E0\n0x89\t0x00E2\n0x8A\t0x00E4\n0x8B\t0x00E3\n0x8C\t0x00E5\n0x8D\t0x00E7\n0x8E\t0x00E9\n0x8F\t0x00E8\n0x90\t0x00EA\n0x91\t0x00EB\n0x92\t0x00ED\n0x93\t0x00EC\n0x94\t0x00EE\n0x95\t0x00EF\n0x96\t0x00F1\n0x97\t0x00F3\n0x98\t0x00F2\n0x99\t0x00F4\n0x9A\t0x00F6\n0x9B\t0x00F5\n0x9C\t0x00FA\n0x9D\t0x00F9\n0x9E\t0x00FB\n0x9F\t0x00FC\n0xA0\t0x2020\n0xA1\t0x00B0\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A7\n0xA5\t0x2022\n0xA6\t0x00B6\n0xA7\t0x00DF\n0xA8\t0x00AE\n0xA9\t0x0160\n0xAA\t0x2122\n0xAB\t0x00B4\n0xAC\t0x00A8\n0xAD\t0x2260\n0xAE\t0x017D\n0xAF\t0x00D8\n0xB0\t0x221E\n0xB1\t0x00B1\n0xB2\t0x2264\n0xB3\t0x2265\n0xB4\t0x2206\n0xB5\t0x00B5\n0xB6\t0x2202\n0xB7\t0x2211\n0xB8\t0x220F\n0xB9\t0x0161\n0xBA\t0x222B\n0xBB\t0x00AA\n0xBC\t0x00BA\n0xBD\t0x2126\n0xBE\t0x017E\n0xBF\t0x00F8\n0xC0\t0x00BF\n0xC1\t0x00A1\n0xC2\t0x00AC\n0xC3\t0x221A\n0xC4\t0x0192\n0xC5\t0x2248\n0xC6\t0x0106\n0xC7\t0x00AB\n0xC8\t0x010C\n0xC9\t0x2026\n0xCA\t0x00A0\n0xCB\t0x00C0\n0xCC\t0x00C3\n0xCD\t0x00D5\n0xCE\t0x0152\n0xCF\t0x0153\n0xD0\t0x0110\n0xD1\t0x2014\n0xD2\t0x201C\n0xD3\t0x201D\n0xD4\t0x2018\n0xD5\t0x2019\n0xD6\t0x00F7\n0xD7\t0x25CA\n0xD9\t0x00A9\n0xDA\t0x2044\n0xDB\t0x00A4\n0xDC\t0x2039\n0xDD\t0x203A\n0xDE\t0x00C6\n0xDF\t0x00BB\n0xE0\t0x2013\n0xE1\t0x00B7\n0xE2\t0x201A\n0xE3\t0x201E\n0xE4\t0x2030\n0xE5\t0x00C2\n0xE6\t0x0107\n0xE7\t0x00C1\n0xE8\t0x010D\n0xE9\t0x00C8\n0xEA\t0x00CD\n0xEB\t0x00CE\n0xEC\t0x00CF\n0xED\t0x00CC\n0xEE\t0x00D3\n0xEF\t0x00D4\n0xF0\t0x0111\n0xF1\t0x00D2\n0xF2\t0x00DA\n0xF3\t0x00DB\n0xF4\t0x00D9\n0xF5\t0x0131\n0xF6\t0x02C6\n0xF7\t0x02DC\n0xF8\t0x00AF\n0xF9\t0x03C0\n0xFA\t0x00CB\n0xFB\t0x02DA\n0xFC\t0x00B8\n0xFD\t0x00CA\n0xFE\t0x00E6\n0xFF\t0x02C7\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacCyrillic.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0410\n0x81\t0x0411\n0x82\t0x0412\n0x83\t0x0413\n0x84\t0x0414\n0x85\t0x0415\n0x86\t0x0416\n0x87\t0x0417\n0x88\t0x0418\n0x89\t0x0419\n0x8A\t0x041A\n0x8B\t0x041B\n0x8C\t0x041C\n0x8D\t0x041D\n0x8E\t0x041E\n0x8F\t0x041F\n0x90\t0x0420\n0x91\t0x0421\n0x92\t0x0422\n0x93\t0x0423\n0x94\t0x0424\n0x95\t0x0425\n0x96\t0x0426\n0x97\t0x0427\n0x98\t0x0428\n0x99\t0x0429\n0x9A\t0x042A\n0x9B\t0x042B\n0x9C\t0x042C\n0x9D\t0x042D\n0x9E\t0x042E\n0x9F\t0x042F\n0xA0\t0x2020\n0xA1\t0x00B0\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A7\n0xA5\t0x2022\n0xA6\t0x00B6\n0xA7\t0x0406\n0xA8\t0x00AE\n0xA9\t0x00A9\n0xAA\t0x2122\n0xAB\t0x0402\n0xAC\t0x0452\n0xAD\t0x2260\n0xAE\t0x0403\n0xAF\t0x0453\n0xB0\t0x221E\n0xB1\t0x00B1\n0xB2\t0x2264\n0xB3\t0x2265\n0xB4\t0x0456\n0xB5\t0x00B5\n0xB6\t0x2202\n0xB7\t0x0408\n0xB8\t0x0404\n0xB9\t0x0454\n0xBA\t0x0407\n0xBB\t0x0457\n0xBC\t0x0409\n0xBD\t0x0459\n0xBE\t0x040A\n0xBF\t0x045A\n0xC0\t0x0458\n0xC1\t0x0405\n0xC2\t0x00AC\n0xC3\t0x221A\n0xC4\t0x0192\n0xC5\t0x2248\n0xC6\t0x2206\n0xC7\t0x00AB\n0xC8\t0x00BB\n0xC9\t0x2026\n0xCA\t0x00A0\n0xCB\t0x040B\n0xCC\t0x045B\n0xCD\t0x040C\n0xCE\t0x045C\n0xCF\t0x0455\n0xD0\t0x2013\n0xD1\t0x2014\n0xD2\t0x201C\n0xD3\t0x201D\n0xD4\t0x2018\n0xD5\t0x2019\n0xD6\t0x00F7\n0xD7\t0x201E\n0xD8\t0x040E\n0xD9\t0x045E\n0xDA\t0x040F\n0xDB\t0x045F\n0xDC\t0x2116\n0xDD\t0x0401\n0xDE\t0x0451\n0xDF\t0x044F\n0xE0\t0x0430\n0xE1\t0x0431\n0xE2\t0x0432\n0xE3\t0x0433\n0xE4\t0x0434\n0xE5\t0x0435\n0xE6\t0x0436\n0xE7\t0x0437\n0xE8\t0x0438\n0xE9\t0x0439\n0xEA\t0x043A\n0xEB\t0x043B\n0xEC\t0x043C\n0xED\t0x043D\n0xEE\t0x043E\n0xEF\t0x043F\n0xF0\t0x0440\n0xF1\t0x0441\n0xF2\t0x0442\n0xF3\t0x0443\n0xF4\t0x0444\n0xF5\t0x0445\n0xF6\t0x0446\n0xF7\t0x0447\n0xF8\t0x0448\n0xF9\t0x0449\n0xFA\t0x044A\n0xFB\t0x044B\n0xFC\t0x044C\n0xFD\t0x044D\n0xFE\t0x044E\n0xFF\t0x00A4\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacGreek.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C4\n0x81\t0x00B9\n0x82\t0x00B2\n0x83\t0x00C9\n0x84\t0x00B3\n0x85\t0x00D6\n0x86\t0x00DC\n0x87\t0x0385\n0x88\t0x00E0\n0x89\t0x00E2\n0x8A\t0x00E4\n0x8B\t0x0384\n0x8C\t0x00A8\n0x8D\t0x00E7\n0x8E\t0x00E9\n0x8F\t0x00E8\n0x90\t0x00EA\n0x91\t0x00EB\n0x92\t0x00A3\n0x93\t0x2122\n0x94\t0x00EE\n0x95\t0x00EF\n0x96\t0x2022\n0x97\t0x00BD\n0x98\t0x2030\n0x99\t0x00F4\n0x9A\t0x00F6\n0x9B\t0x00A6\n0x9C\t0x00AD\n0x9D\t0x00F9\n0x9E\t0x00FB\n0x9F\t0x00FC\n0xA0\t0x2020\n0xA1\t0x0393\n0xA2\t0x0394\n0xA3\t0x0398\n0xA4\t0x039B\n0xA5\t0x039E\n0xA6\t0x03A0\n0xA7\t0x00DF\n0xA8\t0x00AE\n0xA9\t0x00A9\n0xAA\t0x03A3\n0xAB\t0x03AA\n0xAC\t0x00A7\n0xAD\t0x2260\n0xAE\t0x00B0\n0xAF\t0x0387\n0xB0\t0x0391\n0xB1\t0x00B1\n0xB2\t0x2264\n0xB3\t0x2265\n0xB4\t0x00A5\n0xB5\t0x0392\n0xB6\t0x0395\n0xB7\t0x0396\n0xB8\t0x0397\n0xB9\t0x0399\n0xBA\t0x039A\n0xBB\t0x039C\n0xBC\t0x03A6\n0xBD\t0x03AB\n0xBE\t0x03A8\n0xBF\t0x03A9\n0xC0\t0x03AC\n0xC1\t0x039D\n0xC2\t0x00AC\n0xC3\t0x039F\n0xC4\t0x03A1\n0xC5\t0x2248\n0xC6\t0x03A4\n0xC7\t0x00AB\n0xC8\t0x00BB\n0xC9\t0x2026\n0xCA\t0x00A0\n0xCB\t0x03A5\n0xCC\t0x03A7\n0xCD\t0x0386\n0xCE\t0x0388\n0xCF\t0x0153\n0xD0\t0x2013\n0xD1\t0x2015\n0xD2\t0x201C\n0xD3\t0x201D\n0xD4\t0x2018\n0xD5\t0x2019\n0xD6\t0x00F7\n0xD7\t0x0389\n0xD8\t0x038A\n0xD9\t0x038C\n0xDA\t0x038E\n0xDB\t0x03AD\n0xDC\t0x03AE\n0xDD\t0x03AF\n0xDE\t0x03CC\n0xDF\t0x038F\n0xE0\t0x03CD\n0xE1\t0x03B1\n0xE2\t0x03B2\n0xE3\t0x03C8\n0xE4\t0x03B4\n0xE5\t0x03B5\n0xE6\t0x03C6\n0xE7\t0x03B3\n0xE8\t0x03B7\n0xE9\t0x03B9\n0xEA\t0x03BE\n0xEB\t0x03BA\n0xEC\t0x03BB\n0xED\t0x03BC\n0xEE\t0x03BD\n0xEF\t0x03BF\n0xF0\t0x03C0\n0xF1\t0x03CE\n0xF2\t0x03C1\n0xF3\t0x03C3\n0xF4\t0x03C4\n0xF5\t0x03B8\n0xF6\t0x03C9\n0xF7\t0x03C2\n0xF8\t0x03C7\n0xF9\t0x03C5\n0xFA\t0x03B6\n0xFB\t0x03CA\n0xFC\t0x03CB\n0xFD\t0x0390\n0xFE\t0x03B0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacHebrew.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C4\n0x81\t0xFB1F\n0x82\t0x00C7\n0x83\t0x00C9\n0x84\t0x00D1\n0x85\t0x00D6\n0x86\t0x00DC\n0x87\t0x00E1\n0x88\t0x00E0\n0x89\t0x00E2\n0x8A\t0x00E4\n0x8B\t0x00E3\n0x8C\t0x00E5\n0x8D\t0x00E7\n0x8E\t0x00E9\n0x8F\t0x00E8\n0x90\t0x00EA\n0x91\t0x00EB\n0x92\t0x00ED\n0x93\t0x00EC\n0x94\t0x00EE\n0x95\t0x00EF\n0x96\t0x00F1\n0x97\t0x00F3\n0x98\t0x00F2\n0x99\t0x00F4\n0x9A\t0x00F6\n0x9B\t0x00F5\n0x9C\t0x00FA\n0x9D\t0x00F9\n0x9E\t0x00FB\n0x9F\t0x00FC\n0xA6\t0x20AA\n0xC1\t0x201E\n0xC6\t0x05BC\n0xC7\t0xFB4B\n0xC8\t0xFB35\n0xC9\t0x2026\n0xCA\t0x00A0\n0xCB\t0x05B8\n0xCC\t0x05B7\n0xCD\t0x05B5\n0xCE\t0x05B6\n0xCF\t0x05B4\n0xD0\t0x2013\n0xD1\t0x2014\n0xD2\t0x201C\n0xD3\t0x201D\n0xD4\t0x2018\n0xD5\t0x2019\n0xD6\t0xFB2A\n0xD7\t0xFB2B\n0xD8\t0x05BF\n0xD9\t0x05B0\n0xDA\t0x05B2\n0xDB\t0x05B1\n0xDC\t0x05BB\n0xDD\t0x05B9\n0xDF\t0x05B3\n0xE0\t0x05D0\n0xE1\t0x05D1\n0xE2\t0x05D2\n0xE3\t0x05D3\n0xE4\t0x05D4\n0xE5\t0x05D5\n0xE6\t0x05D6\n0xE7\t0x05D7\n0xE8\t0x05D8\n0xE9\t0x05D9\n0xEA\t0x05DA\n0xEB\t0x05DB\n0xEC\t0x05DC\n0xED\t0x05DD\n0xEE\t0x05DE\n0xEF\t0x05DF\n0xF0\t0x05E0\n0xF1\t0x05E1\n0xF2\t0x05E2\n0xF3\t0x05E3\n0xF4\t0x05E4\n0xF5\t0x05E5\n0xF6\t0x05E6\n0xF7\t0x05E7\n0xF8\t0x05E8\n0xF9\t0x05E9\n0xFA\t0x05EA\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacIceland.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C4\n0x81\t0x00C5\n0x82\t0x00C7\n0x83\t0x00C9\n0x84\t0x00D1\n0x85\t0x00D6\n0x86\t0x00DC\n0x87\t0x00E1\n0x88\t0x00E0\n0x89\t0x00E2\n0x8A\t0x00E4\n0x8B\t0x00E3\n0x8C\t0x00E5\n0x8D\t0x00E7\n0x8E\t0x00E9\n0x8F\t0x00E8\n0x90\t0x00EA\n0x91\t0x00EB\n0x92\t0x00ED\n0x93\t0x00EC\n0x94\t0x00EE\n0x95\t0x00EF\n0x96\t0x00F1\n0x97\t0x00F3\n0x98\t0x00F2\n0x99\t0x00F4\n0x9A\t0x00F6\n0x9B\t0x00F5\n0x9C\t0x00FA\n0x9D\t0x00F9\n0x9E\t0x00FB\n0x9F\t0x00FC\n0xA0\t0x00DD\n0xA1\t0x00B0\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A7\n0xA5\t0x2022\n0xA6\t0x00B6\n0xA7\t0x00DF\n0xA8\t0x00AE\n0xA9\t0x00A9\n0xAA\t0x2122\n0xAB\t0x00B4\n0xAC\t0x00A8\n0xAD\t0x2260\n0xAE\t0x00C6\n0xAF\t0x00D8\n0xB0\t0x221E\n0xB1\t0x00B1\n0xB2\t0x2264\n0xB3\t0x2265\n0xB4\t0x00A5\n0xB5\t0x00B5\n0xB6\t0x2202\n0xB7\t0x2211\n0xB8\t0x220F\n0xB9\t0x03C0\n0xBA\t0x222B\n0xBB\t0x00AA\n0xBC\t0x00BA\n0xBD\t0x2126\n0xBE\t0x00E6\n0xBF\t0x00F8\n0xC0\t0x00BF\n0xC1\t0x00A1\n0xC2\t0x00AC\n0xC3\t0x221A\n0xC4\t0x0192\n0xC5\t0x2248\n0xC6\t0x2206\n0xC7\t0x00AB\n0xC8\t0x00BB\n0xC9\t0x2026\n0xCA\t0x00A0\n0xCB\t0x00C0\n0xCC\t0x00C3\n0xCD\t0x00D5\n0xCE\t0x0152\n0xCF\t0x0153\n0xD0\t0x2013\n0xD1\t0x2014\n0xD2\t0x201C\n0xD3\t0x201D\n0xD4\t0x2018\n0xD5\t0x2019\n0xD6\t0x00F7\n0xD7\t0x25CA\n0xD8\t0x00FF\n0xD9\t0x0178\n0xDA\t0x2044\n0xDB\t0x00A4\n0xDC\t0x00D0\n0xDD\t0x00F0\n0xDE\t0x00DE\n0xDF\t0x00FE\n0xE0\t0x00FD\n0xE1\t0x00B7\n0xE2\t0x201A\n0xE3\t0x201E\n0xE4\t0x2030\n0xE5\t0x00C2\n0xE6\t0x00CA\n0xE7\t0x00C1\n0xE8\t0x00CB\n0xE9\t0x00C8\n0xEA\t0x00CD\n0xEB\t0x00CE\n0xEC\t0x00CF\n0xED\t0x00CC\n0xEE\t0x00D3\n0xEF\t0x00D4\n0xF1\t0x00D2\n0xF2\t0x00DA\n0xF3\t0x00DB\n0xF4\t0x00D9\n0xF5\t0x0131\n0xF6\t0x02C6\n0xF7\t0x02DC\n0xF8\t0x00AF\n0xF9\t0x02D8\n0xFA\t0x02D9\n0xFB\t0x02DA\n0xFC\t0x00B8\n0xFD\t0x02DD\n0xFE\t0x02DB\n0xFF\t0x02C7\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacRoman.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C4\n0x81\t0x00C5\n0x82\t0x00C7\n0x83\t0x00C9\n0x84\t0x00D1\n0x85\t0x00D6\n0x86\t0x00DC\n0x87\t0x00E1\n0x88\t0x00E0\n0x89\t0x00E2\n0x8A\t0x00E4\n0x8B\t0x00E3\n0x8C\t0x00E5\n0x8D\t0x00E7\n0x8E\t0x00E9\n0x8F\t0x00E8\n0x90\t0x00EA\n0x91\t0x00EB\n0x92\t0x00ED\n0x93\t0x00EC\n0x94\t0x00EE\n0x95\t0x00EF\n0x96\t0x00F1\n0x97\t0x00F3\n0x98\t0x00F2\n0x99\t0x00F4\n0x9A\t0x00F6\n0x9B\t0x00F5\n0x9C\t0x00FA\n0x9D\t0x00F9\n0x9E\t0x00FB\n0x9F\t0x00FC\n0xA0\t0x2020\n0xA1\t0x00B0\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A7\n0xA5\t0x2022\n0xA6\t0x00B6\n0xA7\t0x00DF\n0xA8\t0x00AE\n0xA9\t0x00A9\n0xAA\t0x2122\n0xAB\t0x00B4\n0xAC\t0x00A8\n0xAD\t0x2260\n0xAE\t0x00C6\n0xAF\t0x00D8\n0xB0\t0x221E\n0xB1\t0x00B1\n0xB2\t0x2264\n0xB3\t0x2265\n0xB4\t0x00A5\n0xB5\t0x00B5\n0xB6\t0x2202\n0xB7\t0x2211\n0xB8\t0x220F\n0xB9\t0x03C0\n0xBA\t0x222B\n0xBB\t0x00AA\n0xBC\t0x00BA\n0xBD\t0x2126\n0xBE\t0x00E6\n0xBF\t0x00F8\n0xC0\t0x00BF\n0xC1\t0x00A1\n0xC2\t0x00AC\n0xC3\t0x221A\n0xC4\t0x0192\n0xC5\t0x2248\n0xC6\t0x2206\n0xC7\t0x00AB\n0xC8\t0x00BB\n0xC9\t0x2026\n0xCA\t0x00A0\n0xCB\t0x00C0\n0xCC\t0x00C3\n0xCD\t0x00D5\n0xCE\t0x0152\n0xCF\t0x0153\n0xD0\t0x2013\n0xD1\t0x2014\n0xD2\t0x201C\n0xD3\t0x201D\n0xD4\t0x2018\n0xD5\t0x2019\n0xD6\t0x00F7\n0xD7\t0x25CA\n0xD8\t0x00FF\n0xD9\t0x0178\n0xDA\t0x2044\n0xDB\t0x00A4\n0xDC\t0x2039\n0xDD\t0x203A\n0xDE\t0xFB01\n0xDF\t0xFB02\n0xE0\t0x2021\n0xE1\t0x00B7\n0xE2\t0x201A\n0xE3\t0x201E\n0xE4\t0x2030\n0xE5\t0x00C2\n0xE6\t0x00CA\n0xE7\t0x00C1\n0xE8\t0x00CB\n0xE9\t0x00C8\n0xEA\t0x00CD\n0xEB\t0x00CE\n0xEC\t0x00CF\n0xED\t0x00CC\n0xEE\t0x00D3\n0xEF\t0x00D4\n0xF1\t0x00D2\n0xF2\t0x00DA\n0xF3\t0x00DB\n0xF4\t0x00D9\n0xF5\t0x0131\n0xF6\t0x02C6\n0xF7\t0x02DC\n0xF8\t0x00AF\n0xF9\t0x02D8\n0xFA\t0x02D9\n0xFB\t0x02DA\n0xFC\t0x00B8\n0xFD\t0x02DD\n0xFE\t0x02DB\n0xFF\t0x02C7\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacRomania.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C4\n0x81\t0x00C5\n0x82\t0x00C7\n0x83\t0x00C9\n0x84\t0x00D1\n0x85\t0x00D6\n0x86\t0x00DC\n0x87\t0x00E1\n0x88\t0x00E0\n0x89\t0x00E2\n0x8A\t0x00E4\n0x8B\t0x00E3\n0x8C\t0x00E5\n0x8D\t0x00E7\n0x8E\t0x00E9\n0x8F\t0x00E8\n0x90\t0x00EA\n0x91\t0x00EB\n0x92\t0x00ED\n0x93\t0x00EC\n0x94\t0x00EE\n0x95\t0x00EF\n0x96\t0x00F1\n0x97\t0x00F3\n0x98\t0x00F2\n0x99\t0x00F4\n0x9A\t0x00F6\n0x9B\t0x00F5\n0x9C\t0x00FA\n0x9D\t0x00F9\n0x9E\t0x00FB\n0x9F\t0x00FC\n0xA0\t0x2020\n0xA1\t0x00B0\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A7\n0xA5\t0x2022\n0xA6\t0x00B6\n0xA7\t0x00DF\n0xA8\t0x00AE\n0xA9\t0x00A9\n0xAA\t0x2122\n0xAB\t0x00B4\n0xAC\t0x00A8\n0xAD\t0x2260\n0xAE\t0x0102\n0xAF\t0x015E\n0xB0\t0x221E\n0xB1\t0x00B1\n0xB2\t0x2264\n0xB3\t0x2265\n0xB4\t0x00A5\n0xB5\t0x00B5\n0xB6\t0x2202\n0xB7\t0x2211\n0xB8\t0x220F\n0xB9\t0x03C0\n0xBA\t0x222B\n0xBB\t0x00AA\n0xBC\t0x00BA\n0xBD\t0x2126\n0xBE\t0x0103\n0xBF\t0x015F\n0xC0\t0x00BF\n0xC1\t0x00A1\n0xC2\t0x00AC\n0xC3\t0x221A\n0xC4\t0x0192\n0xC5\t0x2248\n0xC6\t0x2206\n0xC7\t0x00AB\n0xC8\t0x00BB\n0xC9\t0x2026\n0xCA\t0x00A0\n0xCB\t0x00C0\n0xCC\t0x00C3\n0xCD\t0x00D5\n0xCE\t0x0152\n0xCF\t0x0153\n0xD0\t0x2013\n0xD1\t0x2014\n0xD2\t0x201C\n0xD3\t0x201D\n0xD4\t0x2018\n0xD5\t0x2019\n0xD6\t0x00F7\n0xD7\t0x25CA\n0xD8\t0x00FF\n0xD9\t0x0178\n0xDA\t0x2044\n0xDB\t0x00A4\n0xDC\t0x2039\n0xDD\t0x203A\n0xDE\t0x0162\n0xDF\t0x0163\n0xE0\t0x2021\n0xE1\t0x00B7\n0xE2\t0x201A\n0xE3\t0x201E\n0xE4\t0x2030\n0xE5\t0x00C2\n0xE6\t0x00CA\n0xE7\t0x00C1\n0xE8\t0x00CB\n0xE9\t0x00C8\n0xEA\t0x00CD\n0xEB\t0x00CE\n0xEC\t0x00CF\n0xED\t0x00CC\n0xEE\t0x00D3\n0xEF\t0x00D4\n0xF1\t0x00D2\n0xF2\t0x00DA\n0xF3\t0x00DB\n0xF4\t0x00D9\n0xF5\t0x0131\n0xF6\t0x02C6\n0xF7\t0x02DC\n0xF8\t0x00AF\n0xF9\t0x02D8\n0xFA\t0x02D9\n0xFB\t0x02DA\n0xFC\t0x00B8\n0xFD\t0x02DD\n0xFE\t0x02DB\n0xFF\t0x02C7\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacThai.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00AB\n0x81\t0x00BB\n0x82\t0x2026\n0x83\t0xF88C\n0x84\t0xF88F\n0x85\t0xF892\n0x86\t0xF895\n0x87\t0xF898\n0x88\t0xF88B\n0x89\t0xF88E\n0x8A\t0xF891\n0x8B\t0xF894\n0x8C\t0xF897\n0x8D\t0x201C\n0x8E\t0x201D\n0x8F\t0xF899\n0x91\t0x2022\n0x92\t0xF884\n0x93\t0xF889\n0x94\t0xF885\n0x95\t0xF886\n0x96\t0xF887\n0x97\t0xF888\n0x98\t0xF88A\n0x99\t0xF88D\n0x9A\t0xF890\n0x9B\t0xF893\n0x9C\t0xF896\n0x9D\t0x2018\n0x9E\t0x2019\n0xA0\t0x00A0\n0xA1\t0x0E01\n0xA2\t0x0E02\n0xA3\t0x0E03\n0xA4\t0x0E04\n0xA5\t0x0E05\n0xA6\t0x0E06\n0xA7\t0x0E07\n0xA8\t0x0E08\n0xA9\t0x0E09\n0xAA\t0x0E0A\n0xAB\t0x0E0B\n0xAC\t0x0E0C\n0xAD\t0x0E0D\n0xAE\t0x0E0E\n0xAF\t0x0E0F\n0xB0\t0x0E10\n0xB1\t0x0E11\n0xB2\t0x0E12\n0xB3\t0x0E13\n0xB4\t0x0E14\n0xB5\t0x0E15\n0xB6\t0x0E16\n0xB7\t0x0E17\n0xB8\t0x0E18\n0xB9\t0x0E19\n0xBA\t0x0E1A\n0xBB\t0x0E1B\n0xBC\t0x0E1C\n0xBD\t0x0E1D\n0xBE\t0x0E1E\n0xBF\t0x0E1F\n0xC0\t0x0E20\n0xC1\t0x0E21\n0xC2\t0x0E22\n0xC3\t0x0E23\n0xC4\t0x0E24\n0xC5\t0x0E25\n0xC6\t0x0E26\n0xC7\t0x0E27\n0xC8\t0x0E28\n0xC9\t0x0E29\n0xCA\t0x0E2A\n0xCB\t0x0E2B\n0xCC\t0x0E2C\n0xCD\t0x0E2D\n0xCE\t0x0E2E\n0xCF\t0x0E2F\n0xD0\t0x0E30\n0xD1\t0x0E31\n0xD2\t0x0E32\n0xD3\t0x0E33\n0xD4\t0x0E34\n0xD5\t0x0E35\n0xD6\t0x0E36\n0xD7\t0x0E37\n0xD8\t0x0E38\n0xD9\t0x0E39\n0xDA\t0x0E3A\n0xDB\t0xFEFF\n0xDC\t0x200B\n0xDD\t0x2013\n0xDE\t0x2014\n0xDF\t0x0E3F\n0xE0\t0x0E40\n0xE1\t0x0E41\n0xE2\t0x0E42\n0xE3\t0x0E43\n0xE4\t0x0E44\n0xE5\t0x0E45\n0xE6\t0x0E46\n0xE7\t0x0E47\n0xE8\t0x0E48\n0xE9\t0x0E49\n0xEA\t0x0E4A\n0xEB\t0x0E4B\n0xEC\t0x0E4C\n0xED\t0x0E4D\n0xEE\t0x2122\n0xEF\t0x0E4F\n0xF0\t0x0E50\n0xF1\t0x0E51\n0xF2\t0x0E52\n0xF3\t0x0E53\n0xF4\t0x0E54\n0xF5\t0x0E55\n0xF6\t0x0E56\n0xF7\t0x0E57\n0xF8\t0x0E58\n0xF9\t0x0E59\n0xFA\t0x00AE\n0xFB\t0x00A9\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacTurkish.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C4\n0x81\t0x00C5\n0x82\t0x00C7\n0x83\t0x00C9\n0x84\t0x00D1\n0x85\t0x00D6\n0x86\t0x00DC\n0x87\t0x00E1\n0x88\t0x00E0\n0x89\t0x00E2\n0x8A\t0x00E4\n0x8B\t0x00E3\n0x8C\t0x00E5\n0x8D\t0x00E7\n0x8E\t0x00E9\n0x8F\t0x00E8\n0x90\t0x00EA\n0x91\t0x00EB\n0x92\t0x00ED\n0x93\t0x00EC\n0x94\t0x00EE\n0x95\t0x00EF\n0x96\t0x00F1\n0x97\t0x00F3\n0x98\t0x00F2\n0x99\t0x00F4\n0x9A\t0x00F6\n0x9B\t0x00F5\n0x9C\t0x00FA\n0x9D\t0x00F9\n0x9E\t0x00FB\n0x9F\t0x00FC\n0xA0\t0x2020\n0xA1\t0x00B0\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A7\n0xA5\t0x2022\n0xA6\t0x00B6\n0xA7\t0x00DF\n0xA8\t0x00AE\n0xA9\t0x00A9\n0xAA\t0x2122\n0xAB\t0x00B4\n0xAC\t0x00A8\n0xAD\t0x2260\n0xAE\t0x00C6\n0xAF\t0x00D8\n0xB0\t0x221E\n0xB1\t0x00B1\n0xB2\t0x2264\n0xB3\t0x2265\n0xB4\t0x00A5\n0xB5\t0x00B5\n0xB6\t0x2202\n0xB7\t0x2211\n0xB8\t0x220F\n0xB9\t0x03C0\n0xBA\t0x222B\n0xBB\t0x00AA\n0xBC\t0x00BA\n0xBD\t0x2126\n0xBE\t0x00E6\n0xBF\t0x00F8\n0xC0\t0x00BF\n0xC1\t0x00A1\n0xC2\t0x00AC\n0xC3\t0x221A\n0xC4\t0x0192\n0xC5\t0x2248\n0xC6\t0x2206\n0xC7\t0x00AB\n0xC8\t0x00BB\n0xC9\t0x2026\n0xCA\t0x00A0\n0xCB\t0x00C0\n0xCC\t0x00C3\n0xCD\t0x00D5\n0xCE\t0x0152\n0xCF\t0x0153\n0xD0\t0x2013\n0xD1\t0x2014\n0xD2\t0x201C\n0xD3\t0x201D\n0xD4\t0x2018\n0xD5\t0x2019\n0xD6\t0x00F7\n0xD7\t0x25CA\n0xD8\t0x00FF\n0xD9\t0x0178\n0xDA\t0x011E\n0xDB\t0x011F\n0xDC\t0x0130\n0xDD\t0x0131\n0xDE\t0x015E\n0xDF\t0x015F\n0xE0\t0x2021\n0xE1\t0x00B7\n0xE2\t0x201A\n0xE3\t0x201E\n0xE4\t0x2030\n0xE5\t0x00C2\n0xE6\t0x00CA\n0xE7\t0x00C1\n0xE8\t0x00CB\n0xE9\t0x00C8\n0xEA\t0x00CD\n0xEB\t0x00CE\n0xEC\t0x00CF\n0xED\t0x00CC\n0xEE\t0x00D3\n0xEF\t0x00D4\n0xF1\t0x00D2\n0xF2\t0x00DA\n0xF3\t0x00DB\n0xF4\t0x00D9\n0xF6\t0x02C6\n0xF7\t0x02DC\n0xF8\t0x00AF\n0xF9\t0x02D8\n0xFA\t0x02D9\n0xFB\t0x02DA\n0xFC\t0x00B8\n0xFD\t0x02DD\n0xFE\t0x02DB\n0xFF\t0x02C7\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MacUkraine.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0410\n0x81\t0x0411\n0x82\t0x0412\n0x83\t0x0413\n0x84\t0x0414\n0x85\t0x0415\n0x86\t0x0416\n0x87\t0x0417\n0x88\t0x0418\n0x89\t0x0419\n0x8A\t0x041A\n0x8B\t0x041B\n0x8C\t0x041C\n0x8D\t0x041D\n0x8E\t0x041E\n0x8F\t0x041F\n0x90\t0x0420\n0x91\t0x0421\n0x92\t0x0422\n0x93\t0x0423\n0x94\t0x0424\n0x95\t0x0425\n0x96\t0x0426\n0x97\t0x0427\n0x98\t0x0428\n0x99\t0x0429\n0x9A\t0x042A\n0x9B\t0x042B\n0x9C\t0x042C\n0x9D\t0x042D\n0x9E\t0x042E\n0x9F\t0x042F\n0xA0\t0x2020\n0xA1\t0x00B0\n0xA2\t0x0490\n0xA3\t0x00A3\n0xA4\t0x00A7\n0xA5\t0x2022\n0xA6\t0x00B6\n0xA7\t0x0406\n0xA8\t0x00AE\n0xA9\t0x00A9\n0xAA\t0x2122\n0xAB\t0x0402\n0xAC\t0x0452\n0xAD\t0x2260\n0xAE\t0x0403\n0xAF\t0x0453\n0xB0\t0x221E\n0xB1\t0x00B1\n0xB2\t0x2264\n0xB3\t0x2265\n0xB4\t0x0456\n0xB5\t0x00B5\n0xB6\t0x0491\n0xB7\t0x0408\n0xB8\t0x0404\n0xB9\t0x0454\n0xBA\t0x0407\n0xBB\t0x0457\n0xBC\t0x0409\n0xBD\t0x0459\n0xBE\t0x040A\n0xBF\t0x045A\n0xC0\t0x0458\n0xC1\t0x0405\n0xC2\t0x00AC\n0xC3\t0x221A\n0xC4\t0x0192\n0xC5\t0x2248\n0xC6\t0x2206\n0xC7\t0x00AB\n0xC8\t0x00BB\n0xC9\t0x2026\n0xCA\t0x00A0\n0xCB\t0x040B\n0xCC\t0x045B\n0xCD\t0x040C\n0xCE\t0x045C\n0xCF\t0x0455\n0xD0\t0x2013\n0xD1\t0x2014\n0xD2\t0x201C\n0xD3\t0x201D\n0xD4\t0x2018\n0xD5\t0x2019\n0xD6\t0x00F7\n0xD7\t0x201E\n0xD8\t0x040E\n0xD9\t0x045E\n0xDA\t0x040F\n0xDB\t0x045F\n0xDC\t0x2116\n0xDD\t0x0401\n0xDE\t0x0451\n0xDF\t0x044F\n0xE0\t0x0430\n0xE1\t0x0431\n0xE2\t0x0432\n0xE3\t0x0433\n0xE4\t0x0434\n0xE5\t0x0435\n0xE6\t0x0436\n0xE7\t0x0437\n0xE8\t0x0438\n0xE9\t0x0439\n0xEA\t0x043A\n0xEB\t0x043B\n0xEC\t0x043C\n0xED\t0x043D\n0xEE\t0x043E\n0xEF\t0x043F\n0xF0\t0x0440\n0xF1\t0x0441\n0xF2\t0x0442\n0xF3\t0x0443\n0xF4\t0x0444\n0xF5\t0x0445\n0xF6\t0x0446\n0xF7\t0x0447\n0xF8\t0x0448\n0xF9\t0x0449\n0xFA\t0x044A\n0xFB\t0x044B\n0xFC\t0x044C\n0xFD\t0x044D\n0xFE\t0x044E\n0xFF\t0x00A4\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/Makefile",
    "content": "# Makefile for libiconv/tests\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = .\n\n# Programs used by \"make\":\nCC = gcc\nCFLAGS = -g -O2\nCPPFLAGS = \nLDFLAGS = \nINCLUDES = -I. -I$(srcdir) -I../include -I$(srcdir)/../include -I../srclib -I$(srcdir)/../srclib -I..\nLIBTOOL = /bin/sh $(top_builddir)/libtool\nLIBTOOL_COMPILE = $(LIBTOOL) --mode=compile\nLIBTOOL_LINK = $(LIBTOOL) --mode=link\nLIBTOOL_INSTALL = $(LIBTOOL) --mode=install\nLIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall\nRM = rm -f\n\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\n# Needed by $(LIBTOOL).\ntop_builddir = ..\n\nall :\n\ncheck : all table-from table-to ../src/iconv_no_i18n test-shiftseq test-to-wchar\n\t$(srcdir)/check-stateless $(srcdir) ASCII\n#\t/* General multi-byte encodings */\n\t$(CC) $(LDFLAGS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/genutf8.c ../srclib/libicrt.a -o genutf8 && \\\n\t./genutf8 > UTF-8.TXT && \\\n\t$(srcdir)/check-stateless . UTF-8 && \\\n\t$(RM) -r genutf8 genutf8.dSYM UTF-8.TXT\n\t$(srcdir)/check-stateful $(srcdir) UCS-2BE\n\t$(srcdir)/check-stateful $(srcdir) UCS-2LE\n\t$(srcdir)/check-stateful $(srcdir) UCS-4BE\n\t$(srcdir)/check-stateful $(srcdir) UCS-4LE\n\t$(srcdir)/check-stateful $(srcdir) UTF-16\n\t$(srcdir)/check-stateful $(srcdir) UTF-16BE\n\t$(srcdir)/check-stateful $(srcdir) UTF-16LE\n\t$(srcdir)/check-stateful $(srcdir) UTF-32\n\t$(srcdir)/check-stateful $(srcdir) UTF-32BE\n\t$(srcdir)/check-stateful $(srcdir) UTF-32LE\n\t$(srcdir)/check-stateful $(srcdir) UTF-7\n#\t/* 8-bit encodings */\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-1\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-2\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-3\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-4\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-5\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-6\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-7\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-8\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-9\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-10\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-11\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-13\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-14\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-15\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-16\n\t$(srcdir)/check-stateless $(srcdir) KOI8-R\n\t$(srcdir)/check-stateless $(srcdir) KOI8-U\n\t$(srcdir)/check-stateless $(srcdir) KOI8-RU\n\t$(srcdir)/check-stateless $(srcdir) CP1250\n\t$(srcdir)/check-stateless $(srcdir) CP1251\n\t$(srcdir)/check-stateless $(srcdir) CP1252\n\t$(srcdir)/check-stateless $(srcdir) CP1253\n\t$(srcdir)/check-stateless $(srcdir) CP1254\n\t$(srcdir)/check-stateless $(srcdir) CP1255\n\t$(srcdir)/check-stateful $(srcdir) CP1255\n\t$(srcdir)/check-stateless $(srcdir) CP1256\n\t$(srcdir)/check-stateless $(srcdir) CP1257\n\t$(srcdir)/check-stateless $(srcdir) CP1258\n\t$(srcdir)/check-stateful $(srcdir) CP1258\n\t$(srcdir)/check-stateless $(srcdir) CP850\n\t$(srcdir)/check-stateless $(srcdir) CP862\n\t$(srcdir)/check-stateless $(srcdir) CP866\n\t$(srcdir)/check-stateless $(srcdir) CP1131\n\t$(srcdir)/check-stateless $(srcdir) MacRoman\n\t$(srcdir)/check-stateless $(srcdir) MacCentralEurope\n\t$(srcdir)/check-stateless $(srcdir) MacIceland\n\t$(srcdir)/check-stateless $(srcdir) MacCroatian\n\t$(srcdir)/check-stateless $(srcdir) MacRomania\n\t$(srcdir)/check-stateless $(srcdir) MacCyrillic\n\t$(srcdir)/check-stateless $(srcdir) MacUkraine\n\t$(srcdir)/check-stateless $(srcdir) MacGreek\n\t$(srcdir)/check-stateless $(srcdir) MacTurkish\n\t$(srcdir)/check-stateless $(srcdir) MacHebrew\n\t$(srcdir)/check-stateless $(srcdir) MacArabic\n\t$(srcdir)/check-stateless $(srcdir) MacThai\n\t$(srcdir)/check-stateless $(srcdir) HP-ROMAN8\n\t$(srcdir)/check-stateless $(srcdir) NEXTSTEP\n\t$(srcdir)/check-stateless $(srcdir) ARMSCII-8\n\t$(srcdir)/check-stateless $(srcdir) Georgian-Academy\n\t$(srcdir)/check-stateless $(srcdir) Georgian-PS\n\t$(srcdir)/check-stateless $(srcdir) KOI8-T\n\t$(srcdir)/check-stateless $(srcdir) PT154\n\t$(srcdir)/check-stateless $(srcdir) RK1048\n\t$(srcdir)/check-stateless $(srcdir) MuleLao-1\n\t$(srcdir)/check-stateless $(srcdir) CP1133\n\t$(srcdir)/check-stateless $(srcdir) TIS-620\n\t$(srcdir)/check-stateless $(srcdir) CP874\n\t$(srcdir)/check-stateless $(srcdir) VISCII\n\t$(srcdir)/check-stateless $(srcdir) TCVN\n\t$(srcdir)/check-stateful $(srcdir) TCVN\n#\t/* CJK character sets */\n\t$(srcdir)/check-stateless $(srcdir) ISO646-JP\n\t$(srcdir)/check-stateless $(srcdir) JIS_X0201\n#\t$(srcdir)/check-stateless $(srcdir) JIS_X0208 # redundant, see EUC-JP\n#\t$(srcdir)/check-stateless $(srcdir) JIS_X0212 # redundant, see EUC-JP\n\t$(srcdir)/check-stateless $(srcdir) ISO646-CN\n#\t$(srcdir)/check-stateless $(srcdir) GB_2312-80 # redundant, see EUC-CN\n\t$(srcdir)/check-stateless $(srcdir) ISO-IR-165\n#\t$(srcdir)/check-stateless $(srcdir) KSC_5601 # redundant, see EUC-KR\n#\t/* CJK encodings */\n\t$(srcdir)/check-stateless $(srcdir) EUC-JP\n\t$(srcdir)/check-stateless $(srcdir) SHIFT_JIS\n\t$(srcdir)/check-stateless $(srcdir) CP932\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-JP\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-JP-2\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-JP-1\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-JP-MS\n\t$(srcdir)/check-stateless $(srcdir) EUC-CN\n\t$(srcdir)/check-stateless $(srcdir) GBK\n\t$(srcdir)/check-stateless $(srcdir) CP936\n\t$(CC) $(LDFLAGS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/gengb18030z.c ../srclib/libicrt.a -o gengb18030z && \\\n\t{ cat $(srcdir)/GB18030-BMP.TXT ; ./gengb18030z ; } | sort > GB18030.TXT && \\\n\t{ test $(srcdir) = . || cp $(srcdir)/GB18030.IRREVERSIBLE.TXT GB18030.IRREVERSIBLE.TXT; } && \\\n\t$(srcdir)/check-stateless . GB18030 && \\\n\t{ test $(srcdir) = . || $(RM) GB18030.IRREVERSIBLE.TXT; } && \\\n\t$(RM) -r gengb18030z gengb18030z.dSYM GB18030.TXT\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-CN\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-CN-EXT\n\t$(srcdir)/check-stateful $(srcdir) HZ\n\t$(srcdir)/check-stateless $(srcdir) EUC-TW\n\t$(srcdir)/check-stateless $(srcdir) BIG5\n\t$(srcdir)/check-stateless $(srcdir) CP950\n\t$(srcdir)/check-stateless $(srcdir) BIG5-HKSCS:1999\n\t$(srcdir)/check-stateful $(srcdir) BIG5-HKSCS:1999\n\t$(srcdir)/check-stateless $(srcdir) BIG5-HKSCS:2001\n\t$(srcdir)/check-stateful $(srcdir) BIG5-HKSCS:2001\n\t$(srcdir)/check-stateless $(srcdir) BIG5-HKSCS:2004\n\t$(srcdir)/check-stateful $(srcdir) BIG5-HKSCS:2004\n\t$(srcdir)/check-stateless $(srcdir) BIG5-HKSCS:2008\n\t$(srcdir)/check-stateful $(srcdir) BIG5-HKSCS:2008\n\t$(srcdir)/check-stateless $(srcdir) EUC-KR\n\t$(srcdir)/check-stateless $(srcdir) CP949\n\t$(srcdir)/check-stateless $(srcdir) JOHAB\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-KR\n#\t/* system dependent and extra encodings */\n\t$(MAKE) check-extra\n#\t/* transliteration */\n\t$(srcdir)/check-translit $(srcdir) Quotes UTF-8 ISO-8859-1\n\t$(srcdir)/check-translit $(srcdir) Quotes UTF-8 ASCII\n\t$(srcdir)/check-translit $(srcdir) Translit1 ISO-8859-1 ASCII\n\t$(srcdir)/check-translitfailure $(srcdir) TranslitFail1 ISO-8859-1 ASCII\n#\t/* substitution */\n\t$(srcdir)/check-subst\n#\t/* shift sequence before invalid multibyte character */\n\t./test-shiftseq\n#\t/* conversion to wchar_t */\n\t./test-to-wchar\n\ncheck-extra: check-extra-no\ncheck-extra-no:\ncheck-extra-yes: all table-from table-to ../src/iconv_no_i18n\n#\t/* AIX specific encodings */\n\t$(srcdir)/check-stateless $(srcdir) CP856\n\t$(srcdir)/check-stateless $(srcdir) CP922\n#\t$(srcdir)/check-stateless $(srcdir) CP943\n\t$(srcdir)/check-stateless $(srcdir) CP1046\n\t$(srcdir)/check-stateless $(srcdir) CP1124\n\t$(srcdir)/check-stateless $(srcdir) CP1129\n\t$(srcdir)/check-stateless $(srcdir) CP1161\n\t$(srcdir)/check-stateless $(srcdir) CP1162\n\t$(srcdir)/check-stateless $(srcdir) CP1163\n#\t/* OSF/1 specific encodings */\n\t$(srcdir)/check-stateless $(srcdir) DEC-KANJI\n\t$(srcdir)/check-stateless $(srcdir) DEC-HANYU\n#\t/* DOS specific encodings */\n\t$(srcdir)/check-stateless $(srcdir) CP437\n\t$(srcdir)/check-stateless $(srcdir) CP737\n\t$(srcdir)/check-stateless $(srcdir) CP775\n\t$(srcdir)/check-stateless $(srcdir) CP852\n\t$(srcdir)/check-stateless $(srcdir) CP853\n\t$(srcdir)/check-stateless $(srcdir) CP855\n\t$(srcdir)/check-stateless $(srcdir) CP857\n\t$(srcdir)/check-stateless $(srcdir) CP858\n\t$(srcdir)/check-stateless $(srcdir) CP860\n\t$(srcdir)/check-stateless $(srcdir) CP861\n\t$(srcdir)/check-stateless $(srcdir) CP863\n\t$(srcdir)/check-stateless $(srcdir) CP864\n\t$(srcdir)/check-stateless $(srcdir) CP865\n\t$(srcdir)/check-stateless $(srcdir) CP869\n\t$(srcdir)/check-stateless $(srcdir) CP1125\n#\t/* Extra encodings */\n\t$(srcdir)/check-stateless $(srcdir) EUC-JISX0213\n\t$(srcdir)/check-stateless $(srcdir) SHIFT_JISX0213\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-JP-3\n\t$(srcdir)/check-stateless $(srcdir) BIG5-2003\n\t$(srcdir)/check-stateless $(srcdir) TDS565\n\t$(srcdir)/check-stateless $(srcdir) ATARIST\n\t$(srcdir)/check-stateless $(srcdir) RISCOS-LATIN1\n\ntable-from : table-from.o ../lib/libiconv.la\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) table-from.o ../srclib/libicrt.a ../lib/libiconv.la -o $@\n\ntable-from.o : $(srcdir)/table-from.c\n\t$(CC) -c $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/table-from.c\n\ntable-to : table-to.o ../lib/libiconv.la\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) table-to.o ../srclib/libicrt.a ../lib/libiconv.la -o $@\n\ntable-to.o : $(srcdir)/table-to.c\n\t$(CC) -c $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/table-to.c\n\ntest-shiftseq : test-shiftseq.o ../lib/libiconv.la\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) test-shiftseq.o ../srclib/libicrt.a ../lib/libiconv.la -o $@\n\ntest-shiftseq.o : $(srcdir)/test-shiftseq.c\n\t$(CC) -c $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/test-shiftseq.c\n\ntest-to-wchar : test-to-wchar.o ../lib/libiconv.la\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) test-to-wchar.o ../srclib/libicrt.a ../lib/libiconv.la -o $@\n\ntest-to-wchar.o : $(srcdir)/test-to-wchar.c\n\t$(CC) -c $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/test-to-wchar.c\n\n# The following rule is necessary to avoid a toplevel \"make -n check\" failure.\n../lib/libiconv.la :\n\tcd ../lib && $(MAKE) libiconv.la\n\nmostlyclean : clean\n\nclean : force\n\t$(RM) *.o *.lo table-from table-from table-to table-to test-shiftseq test-shiftseq test-to-wchar test-to-wchar tmp-* genutf8 genutf8 UTF-8.TXT gengb18030z gengb18030z GB18030.TXT core *.stackdump\n\t$(RM) -r .libs _libs\n\ndistclean : clean\n\t$(RM) Makefile\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  Makefile.in \\\n  table-from.c table-to.c uniq-u.c \\\n  check-stateful check-stateful.bat \\\n  check-stateless check-stateless.bat \\\n  check-translit check-translit.bat \\\n  check-translitfailure \\\n  ASCII.TXT \\\n  genutf8.c \\\n  UCS-2BE-snippet UCS-2BE-snippet.UTF-8 \\\n  UCS-2LE-snippet UCS-2LE-snippet.UTF-8 \\\n  UCS-4BE-snippet UCS-4BE-snippet.UTF-8 \\\n  UCS-4LE-snippet UCS-4LE-snippet.UTF-8 \\\n  UTF-16-snippet UTF-16-snippet.UTF-8 \\\n  UTF-16BE-snippet UTF-16BE-snippet.UTF-8 \\\n  UTF-16LE-snippet UTF-16LE-snippet.UTF-8 \\\n  UTF-32-snippet UTF-32-snippet.UTF-8 \\\n  UTF-32BE-snippet UTF-32BE-snippet.UTF-8 \\\n  UTF-32LE-snippet UTF-32LE-snippet.UTF-8 \\\n  UTF-7-snippet UTF-7-snippet.UTF-8 \\\n  ISO-8859-1.TXT \\\n  ISO-8859-2.TXT \\\n  ISO-8859-3.TXT \\\n  ISO-8859-4.TXT \\\n  ISO-8859-5.TXT \\\n  ISO-8859-6.TXT \\\n  ISO-8859-7.TXT \\\n  ISO-8859-8.TXT \\\n  ISO-8859-9.TXT \\\n  ISO-8859-10.TXT \\\n  ISO-8859-11.TXT \\\n  ISO-8859-13.TXT \\\n  ISO-8859-14.TXT \\\n  ISO-8859-15.TXT \\\n  ISO-8859-16.TXT \\\n  KOI8-R.TXT \\\n  KOI8-U.TXT \\\n  KOI8-RU.TXT \\\n  CP1250.TXT \\\n  CP1251.TXT \\\n  CP1252.TXT \\\n  CP1253.TXT \\\n  CP1254.TXT \\\n  CP1255.TXT CP1255.IRREVERSIBLE.TXT \\\n  CP1255-snippet CP1255-snippet.UTF-8 \\\n  CP1256.TXT \\\n  CP1257.TXT \\\n  CP1258.TXT CP1258.IRREVERSIBLE.TXT \\\n  CP1258-snippet CP1258-snippet.UTF-8 \\\n  CP850.TXT \\\n  CP862.TXT \\\n  CP866.TXT \\\n  CP1131.TXT \\\n  MacRoman.TXT \\\n  MacCentralEurope.TXT \\\n  MacIceland.TXT \\\n  MacCroatian.TXT \\\n  MacRomania.TXT \\\n  MacCyrillic.TXT \\\n  MacUkraine.TXT \\\n  MacGreek.TXT \\\n  MacTurkish.TXT \\\n  MacHebrew.TXT \\\n  MacArabic.TXT \\\n  MacThai.TXT \\\n  HP-ROMAN8.TXT \\\n  NEXTSTEP.TXT \\\n  ARMSCII-8.TXT ARMSCII-8.IRREVERSIBLE.TXT \\\n  Georgian-Academy.TXT \\\n  Georgian-PS.TXT \\\n  KOI8-T.TXT \\\n  PT154.TXT \\\n  RK1048.TXT \\\n  MuleLao-1.TXT \\\n  CP1133.TXT \\\n  TIS-620.TXT \\\n  CP874.TXT \\\n  VISCII.TXT \\\n  TCVN.TXT TCVN.IRREVERSIBLE.TXT \\\n  TCVN-snippet TCVN-snippet.UTF-8 \\\n  ISO646-JP.TXT \\\n  JIS_X0201.TXT \\\n  ISO646-CN.TXT \\\n  ISO-IR-165.TXT ISO-IR-165.IRREVERSIBLE.TXT \\\n  EUC-JP.TXT EUC-JP.IRREVERSIBLE.TXT \\\n  SHIFT_JIS.TXT \\\n  CP932.TXT CP932.IRREVERSIBLE.TXT \\\n  ISO-2022-JP-snippet ISO-2022-JP-snippet.UTF-8 \\\n  ISO-2022-JP-2-snippet ISO-2022-JP-2-snippet.UTF-8 \\\n  ISO-2022-JP-1-snippet ISO-2022-JP-1-snippet.UTF-8 \\\n  ISO-2022-JP-MS-snippet ISO-2022-JP-MS-snippet.alt ISO-2022-JP-MS-snippet.UTF-8 \\\n  EUC-CN.TXT \\\n  GBK.TXT \\\n  CP936.TXT \\\n  gengb18030z.c GB18030-BMP.TXT GB18030.IRREVERSIBLE.TXT \\\n  ISO-2022-CN-snippet ISO-2022-CN-snippet.UTF-8 \\\n  ISO-2022-CN-EXT-snippet ISO-2022-CN-EXT-snippet.UTF-8 \\\n  HZ-snippet HZ-snippet.UTF-8 \\\n  EUC-TW.TXT EUC-TW.IRREVERSIBLE.TXT \\\n  BIG5.TXT \\\n  CP950.TXT CP950.IRREVERSIBLE.TXT \\\n  BIG5-HKSCS-1999.TXT BIG5-HKSCS-1999.IRREVERSIBLE.TXT \\\n  BIG5-HKSCS-1999-snippet BIG5-HKSCS-1999-snippet.UTF-8 \\\n  BIG5-HKSCS-2001.TXT BIG5-HKSCS-2001.IRREVERSIBLE.TXT \\\n  BIG5-HKSCS-2001-snippet BIG5-HKSCS-2001-snippet.UTF-8 \\\n  BIG5-HKSCS-2004.TXT BIG5-HKSCS-2004.IRREVERSIBLE.TXT \\\n  BIG5-HKSCS-2004-snippet BIG5-HKSCS-2004-snippet.UTF-8 \\\n  BIG5-HKSCS-2008.TXT BIG5-HKSCS-2008.IRREVERSIBLE.TXT \\\n  BIG5-HKSCS-2008-snippet BIG5-HKSCS-2008-snippet.UTF-8 \\\n  EUC-KR.TXT \\\n  CP949.TXT \\\n  JOHAB.TXT \\\n  ISO-2022-KR-snippet \\\n  ISO-2022-KR-snippet.UTF-8 \\\n  Quotes.UTF-8 Quotes.ISO-8859-1 Quotes.ASCII \\\n  Translit1.ISO-8859-1 Translit1.ASCII \\\n  TranslitFail1.ISO-8859-1 \\\n  check-subst \\\n  test-shiftseq.c \\\n  test-to-wchar.c \\\n  CP856.TXT \\\n  CP922.TXT \\\n  CP1046.TXT \\\n  CP1124.TXT \\\n  CP1129.TXT \\\n  CP1161.TXT CP1161.IRREVERSIBLE.TXT \\\n  CP1162.TXT \\\n  CP1163.TXT CP1163.IRREVERSIBLE.TXT \\\n  DEC-KANJI.TXT \\\n  DEC-HANYU.TXT DEC-HANYU.IRREVERSIBLE.TXT \\\n  CP437.TXT \\\n  CP737.TXT \\\n  CP775.TXT \\\n  CP852.TXT \\\n  CP853.TXT \\\n  CP855.TXT \\\n  CP857.TXT \\\n  CP858.TXT \\\n  CP860.TXT \\\n  CP861.TXT \\\n  CP863.TXT \\\n  CP864.TXT \\\n  CP865.TXT \\\n  CP869.TXT \\\n  CP1125.TXT \\\n  EUC-JISX0213.TXT \\\n  SHIFT_JISX0213.TXT \\\n  ISO-2022-JP-3-snippet ISO-2022-JP-3-snippet.UTF-8 \\\n  BIG5-2003.TXT BIG5-2003.IRREVERSIBLE.TXT \\\n  TDS565.TXT \\\n  ATARIST.TXT \\\n  RISCOS-LATIN1.TXT\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES =\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/Makefile.in",
    "content": "# Makefile for libiconv/tests\n\n#### Start of system configuration section. ####\n\n# Directories used by \"make\":\nsrcdir = @srcdir@\n\n# Programs used by \"make\":\nCC = @CC@\nCFLAGS = @CFLAGS@\nCPPFLAGS = @CPPFLAGS@\nLDFLAGS = @LDFLAGS@\nINCLUDES = -I. -I$(srcdir) -I../include -I$(srcdir)/../include -I../srclib -I$(srcdir)/../srclib -I..\nLIBTOOL = @LIBTOOL@\nLIBTOOL_COMPILE = $(LIBTOOL) --mode=compile\nLIBTOOL_LINK = $(LIBTOOL) --mode=link\nLIBTOOL_INSTALL = $(LIBTOOL) --mode=install\nLIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall\nRM = rm -f\n@SET_MAKE@\n\n#### End of system configuration section. ####\n\nSHELL = /bin/sh\n\n# Needed by $(LIBTOOL).\ntop_builddir = ..\n\nall :\n\ncheck : all table-from table-to ../src/iconv_no_i18n test-shiftseq test-to-wchar\n\t$(srcdir)/check-stateless $(srcdir) ASCII\n#\t/* General multi-byte encodings */\n\t$(CC) $(LDFLAGS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/genutf8.c ../srclib/libicrt.a -o genutf8 && \\\n\t./genutf8 > UTF-8.TXT && \\\n\t$(srcdir)/check-stateless . UTF-8 && \\\n\t$(RM) -r genutf8@EXEEXT@ genutf8.dSYM UTF-8.TXT\n\t$(srcdir)/check-stateful $(srcdir) UCS-2BE\n\t$(srcdir)/check-stateful $(srcdir) UCS-2LE\n\t$(srcdir)/check-stateful $(srcdir) UCS-4BE\n\t$(srcdir)/check-stateful $(srcdir) UCS-4LE\n\t$(srcdir)/check-stateful $(srcdir) UTF-16\n\t$(srcdir)/check-stateful $(srcdir) UTF-16BE\n\t$(srcdir)/check-stateful $(srcdir) UTF-16LE\n\t$(srcdir)/check-stateful $(srcdir) UTF-32\n\t$(srcdir)/check-stateful $(srcdir) UTF-32BE\n\t$(srcdir)/check-stateful $(srcdir) UTF-32LE\n\t$(srcdir)/check-stateful $(srcdir) UTF-7\n#\t/* 8-bit encodings */\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-1\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-2\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-3\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-4\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-5\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-6\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-7\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-8\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-9\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-10\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-11\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-13\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-14\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-15\n\t$(srcdir)/check-stateless $(srcdir) ISO-8859-16\n\t$(srcdir)/check-stateless $(srcdir) KOI8-R\n\t$(srcdir)/check-stateless $(srcdir) KOI8-U\n\t$(srcdir)/check-stateless $(srcdir) KOI8-RU\n\t$(srcdir)/check-stateless $(srcdir) CP1250\n\t$(srcdir)/check-stateless $(srcdir) CP1251\n\t$(srcdir)/check-stateless $(srcdir) CP1252\n\t$(srcdir)/check-stateless $(srcdir) CP1253\n\t$(srcdir)/check-stateless $(srcdir) CP1254\n\t$(srcdir)/check-stateless $(srcdir) CP1255\n\t$(srcdir)/check-stateful $(srcdir) CP1255\n\t$(srcdir)/check-stateless $(srcdir) CP1256\n\t$(srcdir)/check-stateless $(srcdir) CP1257\n\t$(srcdir)/check-stateless $(srcdir) CP1258\n\t$(srcdir)/check-stateful $(srcdir) CP1258\n\t$(srcdir)/check-stateless $(srcdir) CP850\n\t$(srcdir)/check-stateless $(srcdir) CP862\n\t$(srcdir)/check-stateless $(srcdir) CP866\n\t$(srcdir)/check-stateless $(srcdir) CP1131\n\t$(srcdir)/check-stateless $(srcdir) MacRoman\n\t$(srcdir)/check-stateless $(srcdir) MacCentralEurope\n\t$(srcdir)/check-stateless $(srcdir) MacIceland\n\t$(srcdir)/check-stateless $(srcdir) MacCroatian\n\t$(srcdir)/check-stateless $(srcdir) MacRomania\n\t$(srcdir)/check-stateless $(srcdir) MacCyrillic\n\t$(srcdir)/check-stateless $(srcdir) MacUkraine\n\t$(srcdir)/check-stateless $(srcdir) MacGreek\n\t$(srcdir)/check-stateless $(srcdir) MacTurkish\n\t$(srcdir)/check-stateless $(srcdir) MacHebrew\n\t$(srcdir)/check-stateless $(srcdir) MacArabic\n\t$(srcdir)/check-stateless $(srcdir) MacThai\n\t$(srcdir)/check-stateless $(srcdir) HP-ROMAN8\n\t$(srcdir)/check-stateless $(srcdir) NEXTSTEP\n\t$(srcdir)/check-stateless $(srcdir) ARMSCII-8\n\t$(srcdir)/check-stateless $(srcdir) Georgian-Academy\n\t$(srcdir)/check-stateless $(srcdir) Georgian-PS\n\t$(srcdir)/check-stateless $(srcdir) KOI8-T\n\t$(srcdir)/check-stateless $(srcdir) PT154\n\t$(srcdir)/check-stateless $(srcdir) RK1048\n\t$(srcdir)/check-stateless $(srcdir) MuleLao-1\n\t$(srcdir)/check-stateless $(srcdir) CP1133\n\t$(srcdir)/check-stateless $(srcdir) TIS-620\n\t$(srcdir)/check-stateless $(srcdir) CP874\n\t$(srcdir)/check-stateless $(srcdir) VISCII\n\t$(srcdir)/check-stateless $(srcdir) TCVN\n\t$(srcdir)/check-stateful $(srcdir) TCVN\n#\t/* CJK character sets */\n\t$(srcdir)/check-stateless $(srcdir) ISO646-JP\n\t$(srcdir)/check-stateless $(srcdir) JIS_X0201\n#\t$(srcdir)/check-stateless $(srcdir) JIS_X0208 # redundant, see EUC-JP\n#\t$(srcdir)/check-stateless $(srcdir) JIS_X0212 # redundant, see EUC-JP\n\t$(srcdir)/check-stateless $(srcdir) ISO646-CN\n#\t$(srcdir)/check-stateless $(srcdir) GB_2312-80 # redundant, see EUC-CN\n\t$(srcdir)/check-stateless $(srcdir) ISO-IR-165\n#\t$(srcdir)/check-stateless $(srcdir) KSC_5601 # redundant, see EUC-KR\n#\t/* CJK encodings */\n\t$(srcdir)/check-stateless $(srcdir) EUC-JP\n\t$(srcdir)/check-stateless $(srcdir) SHIFT_JIS\n\t$(srcdir)/check-stateless $(srcdir) CP932\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-JP\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-JP-2\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-JP-1\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-JP-MS\n\t$(srcdir)/check-stateless $(srcdir) EUC-CN\n\t$(srcdir)/check-stateless $(srcdir) GBK\n\t$(srcdir)/check-stateless $(srcdir) CP936\n\t$(CC) $(LDFLAGS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/gengb18030z.c ../srclib/libicrt.a -o gengb18030z && \\\n\t{ cat $(srcdir)/GB18030-BMP.TXT ; ./gengb18030z ; } | sort > GB18030.TXT && \\\n\t{ test $(srcdir) = . || cp $(srcdir)/GB18030.IRREVERSIBLE.TXT GB18030.IRREVERSIBLE.TXT; } && \\\n\t$(srcdir)/check-stateless . GB18030 && \\\n\t{ test $(srcdir) = . || $(RM) GB18030.IRREVERSIBLE.TXT; } && \\\n\t$(RM) -r gengb18030z@EXEEXT@ gengb18030z.dSYM GB18030.TXT\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-CN\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-CN-EXT\n\t$(srcdir)/check-stateful $(srcdir) HZ\n\t$(srcdir)/check-stateless $(srcdir) EUC-TW\n\t$(srcdir)/check-stateless $(srcdir) BIG5\n\t$(srcdir)/check-stateless $(srcdir) CP950\n\t$(srcdir)/check-stateless $(srcdir) BIG5-HKSCS:1999\n\t$(srcdir)/check-stateful $(srcdir) BIG5-HKSCS:1999\n\t$(srcdir)/check-stateless $(srcdir) BIG5-HKSCS:2001\n\t$(srcdir)/check-stateful $(srcdir) BIG5-HKSCS:2001\n\t$(srcdir)/check-stateless $(srcdir) BIG5-HKSCS:2004\n\t$(srcdir)/check-stateful $(srcdir) BIG5-HKSCS:2004\n\t$(srcdir)/check-stateless $(srcdir) BIG5-HKSCS:2008\n\t$(srcdir)/check-stateful $(srcdir) BIG5-HKSCS:2008\n\t$(srcdir)/check-stateless $(srcdir) EUC-KR\n\t$(srcdir)/check-stateless $(srcdir) CP949\n\t$(srcdir)/check-stateless $(srcdir) JOHAB\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-KR\n#\t/* system dependent and extra encodings */\n\t$(MAKE) check-extra\n#\t/* transliteration */\n\t$(srcdir)/check-translit $(srcdir) Quotes UTF-8 ISO-8859-1\n\t$(srcdir)/check-translit $(srcdir) Quotes UTF-8 ASCII\n\t$(srcdir)/check-translit $(srcdir) Translit1 ISO-8859-1 ASCII\n\t$(srcdir)/check-translitfailure $(srcdir) TranslitFail1 ISO-8859-1 ASCII\n#\t/* substitution */\n\t$(srcdir)/check-subst\n#\t/* shift sequence before invalid multibyte character */\n\t./test-shiftseq\n#\t/* conversion to wchar_t */\n\t./test-to-wchar\n\ncheck-extra: check-extra-@USE_EXTRA_ENCODINGS@\ncheck-extra-no:\ncheck-extra-yes: all table-from table-to ../src/iconv_no_i18n\n#\t/* AIX specific encodings */\n\t$(srcdir)/check-stateless $(srcdir) CP856\n\t$(srcdir)/check-stateless $(srcdir) CP922\n#\t$(srcdir)/check-stateless $(srcdir) CP943\n\t$(srcdir)/check-stateless $(srcdir) CP1046\n\t$(srcdir)/check-stateless $(srcdir) CP1124\n\t$(srcdir)/check-stateless $(srcdir) CP1129\n\t$(srcdir)/check-stateless $(srcdir) CP1161\n\t$(srcdir)/check-stateless $(srcdir) CP1162\n\t$(srcdir)/check-stateless $(srcdir) CP1163\n#\t/* OSF/1 specific encodings */\n\t$(srcdir)/check-stateless $(srcdir) DEC-KANJI\n\t$(srcdir)/check-stateless $(srcdir) DEC-HANYU\n#\t/* DOS specific encodings */\n\t$(srcdir)/check-stateless $(srcdir) CP437\n\t$(srcdir)/check-stateless $(srcdir) CP737\n\t$(srcdir)/check-stateless $(srcdir) CP775\n\t$(srcdir)/check-stateless $(srcdir) CP852\n\t$(srcdir)/check-stateless $(srcdir) CP853\n\t$(srcdir)/check-stateless $(srcdir) CP855\n\t$(srcdir)/check-stateless $(srcdir) CP857\n\t$(srcdir)/check-stateless $(srcdir) CP858\n\t$(srcdir)/check-stateless $(srcdir) CP860\n\t$(srcdir)/check-stateless $(srcdir) CP861\n\t$(srcdir)/check-stateless $(srcdir) CP863\n\t$(srcdir)/check-stateless $(srcdir) CP864\n\t$(srcdir)/check-stateless $(srcdir) CP865\n\t$(srcdir)/check-stateless $(srcdir) CP869\n\t$(srcdir)/check-stateless $(srcdir) CP1125\n#\t/* Extra encodings */\n\t$(srcdir)/check-stateless $(srcdir) EUC-JISX0213\n\t$(srcdir)/check-stateless $(srcdir) SHIFT_JISX0213\n\t$(srcdir)/check-stateful $(srcdir) ISO-2022-JP-3\n\t$(srcdir)/check-stateless $(srcdir) BIG5-2003\n\t$(srcdir)/check-stateless $(srcdir) TDS565\n\t$(srcdir)/check-stateless $(srcdir) ATARIST\n\t$(srcdir)/check-stateless $(srcdir) RISCOS-LATIN1\n\ntable-from : table-from.@OBJEXT@ ../lib/libiconv.la\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) table-from.@OBJEXT@ ../srclib/libicrt.a ../lib/libiconv.la -o $@\n\ntable-from.@OBJEXT@ : $(srcdir)/table-from.c\n\t$(CC) -c $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/table-from.c\n\ntable-to : table-to.@OBJEXT@ ../lib/libiconv.la\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) table-to.@OBJEXT@ ../srclib/libicrt.a ../lib/libiconv.la -o $@\n\ntable-to.@OBJEXT@ : $(srcdir)/table-to.c\n\t$(CC) -c $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/table-to.c\n\ntest-shiftseq : test-shiftseq.@OBJEXT@ ../lib/libiconv.la\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) test-shiftseq.@OBJEXT@ ../srclib/libicrt.a ../lib/libiconv.la -o $@\n\ntest-shiftseq.@OBJEXT@ : $(srcdir)/test-shiftseq.c\n\t$(CC) -c $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/test-shiftseq.c\n\ntest-to-wchar : test-to-wchar.@OBJEXT@ ../lib/libiconv.la\n\t$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) test-to-wchar.@OBJEXT@ ../srclib/libicrt.a ../lib/libiconv.la -o $@\n\ntest-to-wchar.@OBJEXT@ : $(srcdir)/test-to-wchar.c\n\t$(CC) -c $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(srcdir)/test-to-wchar.c\n\n# The following rule is necessary to avoid a toplevel \"make -n check\" failure.\n../lib/libiconv.la :\n\tcd ../lib && $(MAKE) libiconv.la\n\nmostlyclean : clean\n\nclean : force\n\t$(RM) *.@OBJEXT@ *.lo table-from table-from@EXEEXT@ table-to table-to@EXEEXT@ test-shiftseq test-shiftseq@EXEEXT@ test-to-wchar test-to-wchar@EXEEXT@ tmp-* genutf8 genutf8@EXEEXT@ UTF-8.TXT gengb18030z gengb18030z@EXEEXT@ GB18030.TXT core *.stackdump\n\t$(RM) -r .libs _libs\n\ndistclean : clean\n\t$(RM) Makefile\n\nmaintainer-clean : distclean\n\n# List of source files.\nSOURCE_FILES = \\\n  Makefile.in \\\n  table-from.c table-to.c uniq-u.c \\\n  check-stateful check-stateful.bat \\\n  check-stateless check-stateless.bat \\\n  check-translit check-translit.bat \\\n  check-translitfailure \\\n  ASCII.TXT \\\n  genutf8.c \\\n  UCS-2BE-snippet UCS-2BE-snippet.UTF-8 \\\n  UCS-2LE-snippet UCS-2LE-snippet.UTF-8 \\\n  UCS-4BE-snippet UCS-4BE-snippet.UTF-8 \\\n  UCS-4LE-snippet UCS-4LE-snippet.UTF-8 \\\n  UTF-16-snippet UTF-16-snippet.UTF-8 \\\n  UTF-16BE-snippet UTF-16BE-snippet.UTF-8 \\\n  UTF-16LE-snippet UTF-16LE-snippet.UTF-8 \\\n  UTF-32-snippet UTF-32-snippet.UTF-8 \\\n  UTF-32BE-snippet UTF-32BE-snippet.UTF-8 \\\n  UTF-32LE-snippet UTF-32LE-snippet.UTF-8 \\\n  UTF-7-snippet UTF-7-snippet.UTF-8 \\\n  ISO-8859-1.TXT \\\n  ISO-8859-2.TXT \\\n  ISO-8859-3.TXT \\\n  ISO-8859-4.TXT \\\n  ISO-8859-5.TXT \\\n  ISO-8859-6.TXT \\\n  ISO-8859-7.TXT \\\n  ISO-8859-8.TXT \\\n  ISO-8859-9.TXT \\\n  ISO-8859-10.TXT \\\n  ISO-8859-11.TXT \\\n  ISO-8859-13.TXT \\\n  ISO-8859-14.TXT \\\n  ISO-8859-15.TXT \\\n  ISO-8859-16.TXT \\\n  KOI8-R.TXT \\\n  KOI8-U.TXT \\\n  KOI8-RU.TXT \\\n  CP1250.TXT \\\n  CP1251.TXT \\\n  CP1252.TXT \\\n  CP1253.TXT \\\n  CP1254.TXT \\\n  CP1255.TXT CP1255.IRREVERSIBLE.TXT \\\n  CP1255-snippet CP1255-snippet.UTF-8 \\\n  CP1256.TXT \\\n  CP1257.TXT \\\n  CP1258.TXT CP1258.IRREVERSIBLE.TXT \\\n  CP1258-snippet CP1258-snippet.UTF-8 \\\n  CP850.TXT \\\n  CP862.TXT \\\n  CP866.TXT \\\n  CP1131.TXT \\\n  MacRoman.TXT \\\n  MacCentralEurope.TXT \\\n  MacIceland.TXT \\\n  MacCroatian.TXT \\\n  MacRomania.TXT \\\n  MacCyrillic.TXT \\\n  MacUkraine.TXT \\\n  MacGreek.TXT \\\n  MacTurkish.TXT \\\n  MacHebrew.TXT \\\n  MacArabic.TXT \\\n  MacThai.TXT \\\n  HP-ROMAN8.TXT \\\n  NEXTSTEP.TXT \\\n  ARMSCII-8.TXT ARMSCII-8.IRREVERSIBLE.TXT \\\n  Georgian-Academy.TXT \\\n  Georgian-PS.TXT \\\n  KOI8-T.TXT \\\n  PT154.TXT \\\n  RK1048.TXT \\\n  MuleLao-1.TXT \\\n  CP1133.TXT \\\n  TIS-620.TXT \\\n  CP874.TXT \\\n  VISCII.TXT \\\n  TCVN.TXT TCVN.IRREVERSIBLE.TXT \\\n  TCVN-snippet TCVN-snippet.UTF-8 \\\n  ISO646-JP.TXT \\\n  JIS_X0201.TXT \\\n  ISO646-CN.TXT \\\n  ISO-IR-165.TXT ISO-IR-165.IRREVERSIBLE.TXT \\\n  EUC-JP.TXT EUC-JP.IRREVERSIBLE.TXT \\\n  SHIFT_JIS.TXT \\\n  CP932.TXT CP932.IRREVERSIBLE.TXT \\\n  ISO-2022-JP-snippet ISO-2022-JP-snippet.UTF-8 \\\n  ISO-2022-JP-2-snippet ISO-2022-JP-2-snippet.UTF-8 \\\n  ISO-2022-JP-1-snippet ISO-2022-JP-1-snippet.UTF-8 \\\n  ISO-2022-JP-MS-snippet ISO-2022-JP-MS-snippet.alt ISO-2022-JP-MS-snippet.UTF-8 \\\n  EUC-CN.TXT \\\n  GBK.TXT \\\n  CP936.TXT \\\n  gengb18030z.c GB18030-BMP.TXT GB18030.IRREVERSIBLE.TXT \\\n  ISO-2022-CN-snippet ISO-2022-CN-snippet.UTF-8 \\\n  ISO-2022-CN-EXT-snippet ISO-2022-CN-EXT-snippet.UTF-8 \\\n  HZ-snippet HZ-snippet.UTF-8 \\\n  EUC-TW.TXT EUC-TW.IRREVERSIBLE.TXT \\\n  BIG5.TXT \\\n  CP950.TXT CP950.IRREVERSIBLE.TXT \\\n  BIG5-HKSCS-1999.TXT BIG5-HKSCS-1999.IRREVERSIBLE.TXT \\\n  BIG5-HKSCS-1999-snippet BIG5-HKSCS-1999-snippet.UTF-8 \\\n  BIG5-HKSCS-2001.TXT BIG5-HKSCS-2001.IRREVERSIBLE.TXT \\\n  BIG5-HKSCS-2001-snippet BIG5-HKSCS-2001-snippet.UTF-8 \\\n  BIG5-HKSCS-2004.TXT BIG5-HKSCS-2004.IRREVERSIBLE.TXT \\\n  BIG5-HKSCS-2004-snippet BIG5-HKSCS-2004-snippet.UTF-8 \\\n  BIG5-HKSCS-2008.TXT BIG5-HKSCS-2008.IRREVERSIBLE.TXT \\\n  BIG5-HKSCS-2008-snippet BIG5-HKSCS-2008-snippet.UTF-8 \\\n  EUC-KR.TXT \\\n  CP949.TXT \\\n  JOHAB.TXT \\\n  ISO-2022-KR-snippet \\\n  ISO-2022-KR-snippet.UTF-8 \\\n  Quotes.UTF-8 Quotes.ISO-8859-1 Quotes.ASCII \\\n  Translit1.ISO-8859-1 Translit1.ASCII \\\n  TranslitFail1.ISO-8859-1 \\\n  check-subst \\\n  test-shiftseq.c \\\n  test-to-wchar.c \\\n  CP856.TXT \\\n  CP922.TXT \\\n  CP1046.TXT \\\n  CP1124.TXT \\\n  CP1129.TXT \\\n  CP1161.TXT CP1161.IRREVERSIBLE.TXT \\\n  CP1162.TXT \\\n  CP1163.TXT CP1163.IRREVERSIBLE.TXT \\\n  DEC-KANJI.TXT \\\n  DEC-HANYU.TXT DEC-HANYU.IRREVERSIBLE.TXT \\\n  CP437.TXT \\\n  CP737.TXT \\\n  CP775.TXT \\\n  CP852.TXT \\\n  CP853.TXT \\\n  CP855.TXT \\\n  CP857.TXT \\\n  CP858.TXT \\\n  CP860.TXT \\\n  CP861.TXT \\\n  CP863.TXT \\\n  CP864.TXT \\\n  CP865.TXT \\\n  CP869.TXT \\\n  CP1125.TXT \\\n  EUC-JISX0213.TXT \\\n  SHIFT_JISX0213.TXT \\\n  ISO-2022-JP-3-snippet ISO-2022-JP-3-snippet.UTF-8 \\\n  BIG5-2003.TXT BIG5-2003.IRREVERSIBLE.TXT \\\n  TDS565.TXT \\\n  ATARIST.TXT \\\n  RISCOS-LATIN1.TXT\n# List of distributed files imported from other packages.\nIMPORTED_FILES =\n# List of distributed files generated by autotools or Makefile.devel.\nGENERATED_FILES =\n# List of distributed files generated by \"make\".\nDISTRIBUTED_BUILT_FILES =\n# List of distributed files.\nDISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)\n\ndistdir : $(DISTFILES)\n\tfor file in $(DISTFILES); do \\\n\t  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \\\n\t  cp -p \"$$dir/$$file\" '$(distdir)'/$$file || exit 1; \\\n\tdone\n\nforce :\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/MuleLao-1.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0080\n0x81\t0x0081\n0x82\t0x0082\n0x83\t0x0083\n0x84\t0x0084\n0x85\t0x0085\n0x86\t0x0086\n0x87\t0x0087\n0x88\t0x0088\n0x89\t0x0089\n0x8A\t0x008A\n0x8B\t0x008B\n0x8C\t0x008C\n0x8D\t0x008D\n0x8E\t0x008E\n0x8F\t0x008F\n0x90\t0x0090\n0x91\t0x0091\n0x92\t0x0092\n0x93\t0x0093\n0x94\t0x0094\n0x95\t0x0095\n0x96\t0x0096\n0x97\t0x0097\n0x98\t0x0098\n0x99\t0x0099\n0x9A\t0x009A\n0x9B\t0x009B\n0x9C\t0x009C\n0x9D\t0x009D\n0x9E\t0x009E\n0x9F\t0x009F\n0xA0\t0x00A0\n0xA1\t0x0E81\n0xA2\t0x0E82\n0xA4\t0x0E84\n0xA7\t0x0E87\n0xA8\t0x0E88\n0xAA\t0x0E8A\n0xAD\t0x0E8D\n0xB4\t0x0E94\n0xB5\t0x0E95\n0xB6\t0x0E96\n0xB7\t0x0E97\n0xB9\t0x0E99\n0xBA\t0x0E9A\n0xBB\t0x0E9B\n0xBC\t0x0E9C\n0xBD\t0x0E9D\n0xBE\t0x0E9E\n0xBF\t0x0E9F\n0xC1\t0x0EA1\n0xC2\t0x0EA2\n0xC3\t0x0EA3\n0xC5\t0x0EA5\n0xC7\t0x0EA7\n0xCA\t0x0EAA\n0xCB\t0x0EAB\n0xCD\t0x0EAD\n0xCE\t0x0EAE\n0xCF\t0x0EAF\n0xD0\t0x0EB0\n0xD1\t0x0EB1\n0xD2\t0x0EB2\n0xD3\t0x0EB3\n0xD4\t0x0EB4\n0xD5\t0x0EB5\n0xD6\t0x0EB6\n0xD7\t0x0EB7\n0xD8\t0x0EB8\n0xD9\t0x0EB9\n0xDB\t0x0EBB\n0xDC\t0x0EBC\n0xDD\t0x0EBD\n0xE0\t0x0EC0\n0xE1\t0x0EC1\n0xE2\t0x0EC2\n0xE3\t0x0EC3\n0xE4\t0x0EC4\n0xE6\t0x0EC6\n0xE8\t0x0EC8\n0xE9\t0x0EC9\n0xEA\t0x0ECA\n0xEB\t0x0ECB\n0xEC\t0x0ECC\n0xED\t0x0ECD\n0xF0\t0x0ED0\n0xF1\t0x0ED1\n0xF2\t0x0ED2\n0xF3\t0x0ED3\n0xF4\t0x0ED4\n0xF5\t0x0ED5\n0xF6\t0x0ED6\n0xF7\t0x0ED7\n0xF8\t0x0ED8\n0xF9\t0x0ED9\n0xFC\t0x0EDC\n0xFD\t0x0EDD\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/NEXTSTEP.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00A0\n0x81\t0x00C0\n0x82\t0x00C1\n0x83\t0x00C2\n0x84\t0x00C3\n0x85\t0x00C4\n0x86\t0x00C5\n0x87\t0x00C7\n0x88\t0x00C8\n0x89\t0x00C9\n0x8A\t0x00CA\n0x8B\t0x00CB\n0x8C\t0x00CC\n0x8D\t0x00CD\n0x8E\t0x00CE\n0x8F\t0x00CF\n0x90\t0x00D0\n0x91\t0x00D1\n0x92\t0x00D2\n0x93\t0x00D3\n0x94\t0x00D4\n0x95\t0x00D5\n0x96\t0x00D6\n0x97\t0x00D9\n0x98\t0x00DA\n0x99\t0x00DB\n0x9A\t0x00DC\n0x9B\t0x00DD\n0x9C\t0x00DE\n0x9D\t0x00B5\n0x9E\t0x00D7\n0x9F\t0x00F7\n0xA0\t0x00A9\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x2044\n0xA5\t0x00A5\n0xA6\t0x0192\n0xA7\t0x00A7\n0xA8\t0x00A4\n0xA9\t0x2019\n0xAA\t0x201C\n0xAB\t0x00AB\n0xAC\t0x2039\n0xAD\t0x203A\n0xAE\t0xFB01\n0xAF\t0xFB02\n0xB0\t0x00AE\n0xB1\t0x2013\n0xB2\t0x2020\n0xB3\t0x2021\n0xB4\t0x00B7\n0xB5\t0x00A6\n0xB6\t0x00B6\n0xB7\t0x2022\n0xB8\t0x201A\n0xB9\t0x201E\n0xBA\t0x201D\n0xBB\t0x00BB\n0xBC\t0x2026\n0xBD\t0x2030\n0xBE\t0x00AC\n0xBF\t0x00BF\n0xC0\t0x00B9\n0xC1\t0x02CB\n0xC2\t0x00B4\n0xC3\t0x02C6\n0xC4\t0x02DC\n0xC5\t0x00AF\n0xC6\t0x02D8\n0xC7\t0x02D9\n0xC8\t0x00A8\n0xC9\t0x00B2\n0xCA\t0x02DA\n0xCB\t0x00B8\n0xCC\t0x00B3\n0xCD\t0x02DD\n0xCE\t0x02DB\n0xCF\t0x02C7\n0xD0\t0x2014\n0xD1\t0x00B1\n0xD2\t0x00BC\n0xD3\t0x00BD\n0xD4\t0x00BE\n0xD5\t0x00E0\n0xD6\t0x00E1\n0xD7\t0x00E2\n0xD8\t0x00E3\n0xD9\t0x00E4\n0xDA\t0x00E5\n0xDB\t0x00E7\n0xDC\t0x00E8\n0xDD\t0x00E9\n0xDE\t0x00EA\n0xDF\t0x00EB\n0xE0\t0x00EC\n0xE1\t0x00C6\n0xE2\t0x00ED\n0xE3\t0x00AA\n0xE4\t0x00EE\n0xE5\t0x00EF\n0xE6\t0x00F0\n0xE7\t0x00F1\n0xE8\t0x0141\n0xE9\t0x00D8\n0xEA\t0x0152\n0xEB\t0x00BA\n0xEC\t0x00F2\n0xED\t0x00F3\n0xEE\t0x00F4\n0xEF\t0x00F5\n0xF0\t0x00F6\n0xF1\t0x00E6\n0xF2\t0x00F9\n0xF3\t0x00FA\n0xF4\t0x00FB\n0xF5\t0x0131\n0xF6\t0x00FC\n0xF7\t0x00FD\n0xF8\t0x0142\n0xF9\t0x00F8\n0xFA\t0x0153\n0xFB\t0x00DF\n0xFC\t0x00FE\n0xFD\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/PT154.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0496\n0x81\t0x0492\n0x82\t0x04EE\n0x83\t0x0493\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x04B6\n0x87\t0x04AE\n0x88\t0x04B2\n0x89\t0x04AF\n0x8A\t0x04A0\n0x8B\t0x04E2\n0x8C\t0x04A2\n0x8D\t0x049A\n0x8E\t0x04BA\n0x8F\t0x04B8\n0x90\t0x0497\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x98\t0x04B3\n0x99\t0x04B7\n0x9A\t0x04A1\n0x9B\t0x04E3\n0x9C\t0x04A3\n0x9D\t0x049B\n0x9E\t0x04BB\n0x9F\t0x04B9\n0xA0\t0x00A0\n0xA1\t0x040E\n0xA2\t0x045E\n0xA3\t0x0408\n0xA4\t0x04E8\n0xA5\t0x0498\n0xA6\t0x04B0\n0xA7\t0x00A7\n0xA8\t0x0401\n0xA9\t0x00A9\n0xAA\t0x04D8\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x04EF\n0xAE\t0x00AE\n0xAF\t0x049C\n0xB0\t0x00B0\n0xB1\t0x04B1\n0xB2\t0x0406\n0xB3\t0x0456\n0xB4\t0x0499\n0xB5\t0x04E9\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x0451\n0xB9\t0x2116\n0xBA\t0x04D9\n0xBB\t0x00BB\n0xBC\t0x0458\n0xBD\t0x04AA\n0xBE\t0x04AB\n0xBF\t0x049D\n0xC0\t0x0410\n0xC1\t0x0411\n0xC2\t0x0412\n0xC3\t0x0413\n0xC4\t0x0414\n0xC5\t0x0415\n0xC6\t0x0416\n0xC7\t0x0417\n0xC8\t0x0418\n0xC9\t0x0419\n0xCA\t0x041A\n0xCB\t0x041B\n0xCC\t0x041C\n0xCD\t0x041D\n0xCE\t0x041E\n0xCF\t0x041F\n0xD0\t0x0420\n0xD1\t0x0421\n0xD2\t0x0422\n0xD3\t0x0423\n0xD4\t0x0424\n0xD5\t0x0425\n0xD6\t0x0426\n0xD7\t0x0427\n0xD8\t0x0428\n0xD9\t0x0429\n0xDA\t0x042A\n0xDB\t0x042B\n0xDC\t0x042C\n0xDD\t0x042D\n0xDE\t0x042E\n0xDF\t0x042F\n0xE0\t0x0430\n0xE1\t0x0431\n0xE2\t0x0432\n0xE3\t0x0433\n0xE4\t0x0434\n0xE5\t0x0435\n0xE6\t0x0436\n0xE7\t0x0437\n0xE8\t0x0438\n0xE9\t0x0439\n0xEA\t0x043A\n0xEB\t0x043B\n0xEC\t0x043C\n0xED\t0x043D\n0xEE\t0x043E\n0xEF\t0x043F\n0xF0\t0x0440\n0xF1\t0x0441\n0xF2\t0x0442\n0xF3\t0x0443\n0xF4\t0x0444\n0xF5\t0x0445\n0xF6\t0x0446\n0xF7\t0x0447\n0xF8\t0x0448\n0xF9\t0x0449\n0xFA\t0x044A\n0xFB\t0x044B\n0xFC\t0x044C\n0xFD\t0x044D\n0xFE\t0x044E\n0xFF\t0x044F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/Quotes.ASCII",
    "content": "\"Hello\"\n'Hello'\n\"Hello\"\n'Hello'\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/Quotes.ISO-8859-1",
    "content": "\"Hello\"\n`Hello\n\"Hello\"\n`Hello\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/Quotes.UTF-8",
    "content": "“Hello”\n‘Hello’\n„Hello”\n‚Hello’\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/RISCOS-LATIN1.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x221A\n0x81\t0x0174\n0x82\t0x0175\n0x83\t0x0083\n0x84\t0x2573\n0x85\t0x0176\n0x86\t0x0177\n0x87\t0x0087\n0x88\t0x21E6\n0x89\t0x21E8\n0x8A\t0x21E9\n0x8B\t0x21E7\n0x8C\t0x2026\n0x8D\t0x2122\n0x8E\t0x2030\n0x8F\t0x2022\n0x90\t0x2018\n0x91\t0x2019\n0x92\t0x2039\n0x93\t0x203A\n0x94\t0x201C\n0x95\t0x201D\n0x96\t0x201E\n0x97\t0x2013\n0x98\t0x2014\n0x99\t0x2212\n0x9A\t0x0152\n0x9B\t0x0153\n0x9C\t0x2020\n0x9D\t0x2021\n0x9E\t0xFB01\n0x9F\t0xFB02\n0xA0\t0x00A0\n0xA1\t0x00A1\n0xA2\t0x00A2\n0xA3\t0x00A3\n0xA4\t0x00A4\n0xA5\t0x00A5\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x00A8\n0xA9\t0x00A9\n0xAA\t0x00AA\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x00AF\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x00B2\n0xB3\t0x00B3\n0xB4\t0x00B4\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x00B8\n0xB9\t0x00B9\n0xBA\t0x00BA\n0xBB\t0x00BB\n0xBC\t0x00BC\n0xBD\t0x00BD\n0xBE\t0x00BE\n0xBF\t0x00BF\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x00C3\n0xC4\t0x00C4\n0xC5\t0x00C5\n0xC6\t0x00C6\n0xC7\t0x00C7\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x00CB\n0xCC\t0x00CC\n0xCD\t0x00CD\n0xCE\t0x00CE\n0xCF\t0x00CF\n0xD0\t0x00D0\n0xD1\t0x00D1\n0xD2\t0x00D2\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x00D5\n0xD6\t0x00D6\n0xD7\t0x00D7\n0xD8\t0x00D8\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x00DB\n0xDC\t0x00DC\n0xDD\t0x00DD\n0xDE\t0x00DE\n0xDF\t0x00DF\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x00E3\n0xE4\t0x00E4\n0xE5\t0x00E5\n0xE6\t0x00E6\n0xE7\t0x00E7\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x00EB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x00EE\n0xEF\t0x00EF\n0xF0\t0x00F0\n0xF1\t0x00F1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x00F6\n0xF7\t0x00F7\n0xF8\t0x00F8\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x00FB\n0xFC\t0x00FC\n0xFD\t0x00FD\n0xFE\t0x00FE\n0xFF\t0x00FF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/RK1048.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x0402\n0x81\t0x0403\n0x82\t0x201A\n0x83\t0x0453\n0x84\t0x201E\n0x85\t0x2026\n0x86\t0x2020\n0x87\t0x2021\n0x88\t0x20AC\n0x89\t0x2030\n0x8A\t0x0409\n0x8B\t0x2039\n0x8C\t0x040A\n0x8D\t0x049A\n0x8E\t0x04BA\n0x8F\t0x040F\n0x90\t0x0452\n0x91\t0x2018\n0x92\t0x2019\n0x93\t0x201C\n0x94\t0x201D\n0x95\t0x2022\n0x96\t0x2013\n0x97\t0x2014\n0x99\t0x2122\n0x9A\t0x0459\n0x9B\t0x203A\n0x9C\t0x045A\n0x9D\t0x049B\n0x9E\t0x04BB\n0x9F\t0x045F\n0xA0\t0x00A0\n0xA1\t0x04B0\n0xA2\t0x04B1\n0xA3\t0x04D8\n0xA4\t0x00A4\n0xA5\t0x04E8\n0xA6\t0x00A6\n0xA7\t0x00A7\n0xA8\t0x0401\n0xA9\t0x00A9\n0xAA\t0x0492\n0xAB\t0x00AB\n0xAC\t0x00AC\n0xAD\t0x00AD\n0xAE\t0x00AE\n0xAF\t0x04AE\n0xB0\t0x00B0\n0xB1\t0x00B1\n0xB2\t0x0406\n0xB3\t0x0456\n0xB4\t0x04E9\n0xB5\t0x00B5\n0xB6\t0x00B6\n0xB7\t0x00B7\n0xB8\t0x0451\n0xB9\t0x2116\n0xBA\t0x0493\n0xBB\t0x00BB\n0xBC\t0x04D9\n0xBD\t0x04A2\n0xBE\t0x04A3\n0xBF\t0x04AF\n0xC0\t0x0410\n0xC1\t0x0411\n0xC2\t0x0412\n0xC3\t0x0413\n0xC4\t0x0414\n0xC5\t0x0415\n0xC6\t0x0416\n0xC7\t0x0417\n0xC8\t0x0418\n0xC9\t0x0419\n0xCA\t0x041A\n0xCB\t0x041B\n0xCC\t0x041C\n0xCD\t0x041D\n0xCE\t0x041E\n0xCF\t0x041F\n0xD0\t0x0420\n0xD1\t0x0421\n0xD2\t0x0422\n0xD3\t0x0423\n0xD4\t0x0424\n0xD5\t0x0425\n0xD6\t0x0426\n0xD7\t0x0427\n0xD8\t0x0428\n0xD9\t0x0429\n0xDA\t0x042A\n0xDB\t0x042B\n0xDC\t0x042C\n0xDD\t0x042D\n0xDE\t0x042E\n0xDF\t0x042F\n0xE0\t0x0430\n0xE1\t0x0431\n0xE2\t0x0432\n0xE3\t0x0433\n0xE4\t0x0434\n0xE5\t0x0435\n0xE6\t0x0436\n0xE7\t0x0437\n0xE8\t0x0438\n0xE9\t0x0439\n0xEA\t0x043A\n0xEB\t0x043B\n0xEC\t0x043C\n0xED\t0x043D\n0xEE\t0x043E\n0xEF\t0x043F\n0xF0\t0x0440\n0xF1\t0x0441\n0xF2\t0x0442\n0xF3\t0x0443\n0xF4\t0x0444\n0xF5\t0x0445\n0xF6\t0x0446\n0xF7\t0x0447\n0xF8\t0x0448\n0xF9\t0x0449\n0xFA\t0x044A\n0xFB\t0x044B\n0xFC\t0x044C\n0xFD\t0x044D\n0xFE\t0x044E\n0xFF\t0x044F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/SHIFT_JIS.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x00A5\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x203E\n0x7F\t0x007F\n0x8140\t0x3000\n0x8141\t0x3001\n0x8142\t0x3002\n0x8143\t0xFF0C\n0x8144\t0xFF0E\n0x8145\t0x30FB\n0x8146\t0xFF1A\n0x8147\t0xFF1B\n0x8148\t0xFF1F\n0x8149\t0xFF01\n0x814A\t0x309B\n0x814B\t0x309C\n0x814C\t0x00B4\n0x814D\t0xFF40\n0x814E\t0x00A8\n0x814F\t0xFF3E\n0x8150\t0xFFE3\n0x8151\t0xFF3F\n0x8152\t0x30FD\n0x8153\t0x30FE\n0x8154\t0x309D\n0x8155\t0x309E\n0x8156\t0x3003\n0x8157\t0x4EDD\n0x8158\t0x3005\n0x8159\t0x3006\n0x815A\t0x3007\n0x815B\t0x30FC\n0x815C\t0x2015\n0x815D\t0x2010\n0x815E\t0xFF0F\n0x815F\t0xFF3C\n0x8160\t0x301C\n0x8161\t0x2016\n0x8162\t0xFF5C\n0x8163\t0x2026\n0x8164\t0x2025\n0x8165\t0x2018\n0x8166\t0x2019\n0x8167\t0x201C\n0x8168\t0x201D\n0x8169\t0xFF08\n0x816A\t0xFF09\n0x816B\t0x3014\n0x816C\t0x3015\n0x816D\t0xFF3B\n0x816E\t0xFF3D\n0x816F\t0xFF5B\n0x8170\t0xFF5D\n0x8171\t0x3008\n0x8172\t0x3009\n0x8173\t0x300A\n0x8174\t0x300B\n0x8175\t0x300C\n0x8176\t0x300D\n0x8177\t0x300E\n0x8178\t0x300F\n0x8179\t0x3010\n0x817A\t0x3011\n0x817B\t0xFF0B\n0x817C\t0x2212\n0x817D\t0x00B1\n0x817E\t0x00D7\n0x8180\t0x00F7\n0x8181\t0xFF1D\n0x8182\t0x2260\n0x8183\t0xFF1C\n0x8184\t0xFF1E\n0x8185\t0x2266\n0x8186\t0x2267\n0x8187\t0x221E\n0x8188\t0x2234\n0x8189\t0x2642\n0x818A\t0x2640\n0x818B\t0x00B0\n0x818C\t0x2032\n0x818D\t0x2033\n0x818E\t0x2103\n0x818F\t0xFFE5\n0x8190\t0xFF04\n0x8191\t0x00A2\n0x8192\t0x00A3\n0x8193\t0xFF05\n0x8194\t0xFF03\n0x8195\t0xFF06\n0x8196\t0xFF0A\n0x8197\t0xFF20\n0x8198\t0x00A7\n0x8199\t0x2606\n0x819A\t0x2605\n0x819B\t0x25CB\n0x819C\t0x25CF\n0x819D\t0x25CE\n0x819E\t0x25C7\n0x819F\t0x25C6\n0x81A0\t0x25A1\n0x81A1\t0x25A0\n0x81A2\t0x25B3\n0x81A3\t0x25B2\n0x81A4\t0x25BD\n0x81A5\t0x25BC\n0x81A6\t0x203B\n0x81A7\t0x3012\n0x81A8\t0x2192\n0x81A9\t0x2190\n0x81AA\t0x2191\n0x81AB\t0x2193\n0x81AC\t0x3013\n0x81B8\t0x2208\n0x81B9\t0x220B\n0x81BA\t0x2286\n0x81BB\t0x2287\n0x81BC\t0x2282\n0x81BD\t0x2283\n0x81BE\t0x222A\n0x81BF\t0x2229\n0x81C8\t0x2227\n0x81C9\t0x2228\n0x81CA\t0x00AC\n0x81CB\t0x21D2\n0x81CC\t0x21D4\n0x81CD\t0x2200\n0x81CE\t0x2203\n0x81DA\t0x2220\n0x81DB\t0x22A5\n0x81DC\t0x2312\n0x81DD\t0x2202\n0x81DE\t0x2207\n0x81DF\t0x2261\n0x81E0\t0x2252\n0x81E1\t0x226A\n0x81E2\t0x226B\n0x81E3\t0x221A\n0x81E4\t0x223D\n0x81E5\t0x221D\n0x81E6\t0x2235\n0x81E7\t0x222B\n0x81E8\t0x222C\n0x81F0\t0x212B\n0x81F1\t0x2030\n0x81F2\t0x266F\n0x81F3\t0x266D\n0x81F4\t0x266A\n0x81F5\t0x2020\n0x81F6\t0x2021\n0x81F7\t0x00B6\n0x81FC\t0x25EF\n0x824F\t0xFF10\n0x8250\t0xFF11\n0x8251\t0xFF12\n0x8252\t0xFF13\n0x8253\t0xFF14\n0x8254\t0xFF15\n0x8255\t0xFF16\n0x8256\t0xFF17\n0x8257\t0xFF18\n0x8258\t0xFF19\n0x8260\t0xFF21\n0x8261\t0xFF22\n0x8262\t0xFF23\n0x8263\t0xFF24\n0x8264\t0xFF25\n0x8265\t0xFF26\n0x8266\t0xFF27\n0x8267\t0xFF28\n0x8268\t0xFF29\n0x8269\t0xFF2A\n0x826A\t0xFF2B\n0x826B\t0xFF2C\n0x826C\t0xFF2D\n0x826D\t0xFF2E\n0x826E\t0xFF2F\n0x826F\t0xFF30\n0x8270\t0xFF31\n0x8271\t0xFF32\n0x8272\t0xFF33\n0x8273\t0xFF34\n0x8274\t0xFF35\n0x8275\t0xFF36\n0x8276\t0xFF37\n0x8277\t0xFF38\n0x8278\t0xFF39\n0x8279\t0xFF3A\n0x8281\t0xFF41\n0x8282\t0xFF42\n0x8283\t0xFF43\n0x8284\t0xFF44\n0x8285\t0xFF45\n0x8286\t0xFF46\n0x8287\t0xFF47\n0x8288\t0xFF48\n0x8289\t0xFF49\n0x828A\t0xFF4A\n0x828B\t0xFF4B\n0x828C\t0xFF4C\n0x828D\t0xFF4D\n0x828E\t0xFF4E\n0x828F\t0xFF4F\n0x8290\t0xFF50\n0x8291\t0xFF51\n0x8292\t0xFF52\n0x8293\t0xFF53\n0x8294\t0xFF54\n0x8295\t0xFF55\n0x8296\t0xFF56\n0x8297\t0xFF57\n0x8298\t0xFF58\n0x8299\t0xFF59\n0x829A\t0xFF5A\n0x829F\t0x3041\n0x82A0\t0x3042\n0x82A1\t0x3043\n0x82A2\t0x3044\n0x82A3\t0x3045\n0x82A4\t0x3046\n0x82A5\t0x3047\n0x82A6\t0x3048\n0x82A7\t0x3049\n0x82A8\t0x304A\n0x82A9\t0x304B\n0x82AA\t0x304C\n0x82AB\t0x304D\n0x82AC\t0x304E\n0x82AD\t0x304F\n0x82AE\t0x3050\n0x82AF\t0x3051\n0x82B0\t0x3052\n0x82B1\t0x3053\n0x82B2\t0x3054\n0x82B3\t0x3055\n0x82B4\t0x3056\n0x82B5\t0x3057\n0x82B6\t0x3058\n0x82B7\t0x3059\n0x82B8\t0x305A\n0x82B9\t0x305B\n0x82BA\t0x305C\n0x82BB\t0x305D\n0x82BC\t0x305E\n0x82BD\t0x305F\n0x82BE\t0x3060\n0x82BF\t0x3061\n0x82C0\t0x3062\n0x82C1\t0x3063\n0x82C2\t0x3064\n0x82C3\t0x3065\n0x82C4\t0x3066\n0x82C5\t0x3067\n0x82C6\t0x3068\n0x82C7\t0x3069\n0x82C8\t0x306A\n0x82C9\t0x306B\n0x82CA\t0x306C\n0x82CB\t0x306D\n0x82CC\t0x306E\n0x82CD\t0x306F\n0x82CE\t0x3070\n0x82CF\t0x3071\n0x82D0\t0x3072\n0x82D1\t0x3073\n0x82D2\t0x3074\n0x82D3\t0x3075\n0x82D4\t0x3076\n0x82D5\t0x3077\n0x82D6\t0x3078\n0x82D7\t0x3079\n0x82D8\t0x307A\n0x82D9\t0x307B\n0x82DA\t0x307C\n0x82DB\t0x307D\n0x82DC\t0x307E\n0x82DD\t0x307F\n0x82DE\t0x3080\n0x82DF\t0x3081\n0x82E0\t0x3082\n0x82E1\t0x3083\n0x82E2\t0x3084\n0x82E3\t0x3085\n0x82E4\t0x3086\n0x82E5\t0x3087\n0x82E6\t0x3088\n0x82E7\t0x3089\n0x82E8\t0x308A\n0x82E9\t0x308B\n0x82EA\t0x308C\n0x82EB\t0x308D\n0x82EC\t0x308E\n0x82ED\t0x308F\n0x82EE\t0x3090\n0x82EF\t0x3091\n0x82F0\t0x3092\n0x82F1\t0x3093\n0x8340\t0x30A1\n0x8341\t0x30A2\n0x8342\t0x30A3\n0x8343\t0x30A4\n0x8344\t0x30A5\n0x8345\t0x30A6\n0x8346\t0x30A7\n0x8347\t0x30A8\n0x8348\t0x30A9\n0x8349\t0x30AA\n0x834A\t0x30AB\n0x834B\t0x30AC\n0x834C\t0x30AD\n0x834D\t0x30AE\n0x834E\t0x30AF\n0x834F\t0x30B0\n0x8350\t0x30B1\n0x8351\t0x30B2\n0x8352\t0x30B3\n0x8353\t0x30B4\n0x8354\t0x30B5\n0x8355\t0x30B6\n0x8356\t0x30B7\n0x8357\t0x30B8\n0x8358\t0x30B9\n0x8359\t0x30BA\n0x835A\t0x30BB\n0x835B\t0x30BC\n0x835C\t0x30BD\n0x835D\t0x30BE\n0x835E\t0x30BF\n0x835F\t0x30C0\n0x8360\t0x30C1\n0x8361\t0x30C2\n0x8362\t0x30C3\n0x8363\t0x30C4\n0x8364\t0x30C5\n0x8365\t0x30C6\n0x8366\t0x30C7\n0x8367\t0x30C8\n0x8368\t0x30C9\n0x8369\t0x30CA\n0x836A\t0x30CB\n0x836B\t0x30CC\n0x836C\t0x30CD\n0x836D\t0x30CE\n0x836E\t0x30CF\n0x836F\t0x30D0\n0x8370\t0x30D1\n0x8371\t0x30D2\n0x8372\t0x30D3\n0x8373\t0x30D4\n0x8374\t0x30D5\n0x8375\t0x30D6\n0x8376\t0x30D7\n0x8377\t0x30D8\n0x8378\t0x30D9\n0x8379\t0x30DA\n0x837A\t0x30DB\n0x837B\t0x30DC\n0x837C\t0x30DD\n0x837D\t0x30DE\n0x837E\t0x30DF\n0x8380\t0x30E0\n0x8381\t0x30E1\n0x8382\t0x30E2\n0x8383\t0x30E3\n0x8384\t0x30E4\n0x8385\t0x30E5\n0x8386\t0x30E6\n0x8387\t0x30E7\n0x8388\t0x30E8\n0x8389\t0x30E9\n0x838A\t0x30EA\n0x838B\t0x30EB\n0x838C\t0x30EC\n0x838D\t0x30ED\n0x838E\t0x30EE\n0x838F\t0x30EF\n0x8390\t0x30F0\n0x8391\t0x30F1\n0x8392\t0x30F2\n0x8393\t0x30F3\n0x8394\t0x30F4\n0x8395\t0x30F5\n0x8396\t0x30F6\n0x839F\t0x0391\n0x83A0\t0x0392\n0x83A1\t0x0393\n0x83A2\t0x0394\n0x83A3\t0x0395\n0x83A4\t0x0396\n0x83A5\t0x0397\n0x83A6\t0x0398\n0x83A7\t0x0399\n0x83A8\t0x039A\n0x83A9\t0x039B\n0x83AA\t0x039C\n0x83AB\t0x039D\n0x83AC\t0x039E\n0x83AD\t0x039F\n0x83AE\t0x03A0\n0x83AF\t0x03A1\n0x83B0\t0x03A3\n0x83B1\t0x03A4\n0x83B2\t0x03A5\n0x83B3\t0x03A6\n0x83B4\t0x03A7\n0x83B5\t0x03A8\n0x83B6\t0x03A9\n0x83BF\t0x03B1\n0x83C0\t0x03B2\n0x83C1\t0x03B3\n0x83C2\t0x03B4\n0x83C3\t0x03B5\n0x83C4\t0x03B6\n0x83C5\t0x03B7\n0x83C6\t0x03B8\n0x83C7\t0x03B9\n0x83C8\t0x03BA\n0x83C9\t0x03BB\n0x83CA\t0x03BC\n0x83CB\t0x03BD\n0x83CC\t0x03BE\n0x83CD\t0x03BF\n0x83CE\t0x03C0\n0x83CF\t0x03C1\n0x83D0\t0x03C3\n0x83D1\t0x03C4\n0x83D2\t0x03C5\n0x83D3\t0x03C6\n0x83D4\t0x03C7\n0x83D5\t0x03C8\n0x83D6\t0x03C9\n0x8440\t0x0410\n0x8441\t0x0411\n0x8442\t0x0412\n0x8443\t0x0413\n0x8444\t0x0414\n0x8445\t0x0415\n0x8446\t0x0401\n0x8447\t0x0416\n0x8448\t0x0417\n0x8449\t0x0418\n0x844A\t0x0419\n0x844B\t0x041A\n0x844C\t0x041B\n0x844D\t0x041C\n0x844E\t0x041D\n0x844F\t0x041E\n0x8450\t0x041F\n0x8451\t0x0420\n0x8452\t0x0421\n0x8453\t0x0422\n0x8454\t0x0423\n0x8455\t0x0424\n0x8456\t0x0425\n0x8457\t0x0426\n0x8458\t0x0427\n0x8459\t0x0428\n0x845A\t0x0429\n0x845B\t0x042A\n0x845C\t0x042B\n0x845D\t0x042C\n0x845E\t0x042D\n0x845F\t0x042E\n0x8460\t0x042F\n0x8470\t0x0430\n0x8471\t0x0431\n0x8472\t0x0432\n0x8473\t0x0433\n0x8474\t0x0434\n0x8475\t0x0435\n0x8476\t0x0451\n0x8477\t0x0436\n0x8478\t0x0437\n0x8479\t0x0438\n0x847A\t0x0439\n0x847B\t0x043A\n0x847C\t0x043B\n0x847D\t0x043C\n0x847E\t0x043D\n0x8480\t0x043E\n0x8481\t0x043F\n0x8482\t0x0440\n0x8483\t0x0441\n0x8484\t0x0442\n0x8485\t0x0443\n0x8486\t0x0444\n0x8487\t0x0445\n0x8488\t0x0446\n0x8489\t0x0447\n0x848A\t0x0448\n0x848B\t0x0449\n0x848C\t0x044A\n0x848D\t0x044B\n0x848E\t0x044C\n0x848F\t0x044D\n0x8490\t0x044E\n0x8491\t0x044F\n0x849F\t0x2500\n0x84A0\t0x2502\n0x84A1\t0x250C\n0x84A2\t0x2510\n0x84A3\t0x2518\n0x84A4\t0x2514\n0x84A5\t0x251C\n0x84A6\t0x252C\n0x84A7\t0x2524\n0x84A8\t0x2534\n0x84A9\t0x253C\n0x84AA\t0x2501\n0x84AB\t0x2503\n0x84AC\t0x250F\n0x84AD\t0x2513\n0x84AE\t0x251B\n0x84AF\t0x2517\n0x84B0\t0x2523\n0x84B1\t0x2533\n0x84B2\t0x252B\n0x84B3\t0x253B\n0x84B4\t0x254B\n0x84B5\t0x2520\n0x84B6\t0x252F\n0x84B7\t0x2528\n0x84B8\t0x2537\n0x84B9\t0x253F\n0x84BA\t0x251D\n0x84BB\t0x2530\n0x84BC\t0x2525\n0x84BD\t0x2538\n0x84BE\t0x2542\n0x889F\t0x4E9C\n0x88A0\t0x5516\n0x88A1\t0x5A03\n0x88A2\t0x963F\n0x88A3\t0x54C0\n0x88A4\t0x611B\n0x88A5\t0x6328\n0x88A6\t0x59F6\n0x88A7\t0x9022\n0x88A8\t0x8475\n0x88A9\t0x831C\n0x88AA\t0x7A50\n0x88AB\t0x60AA\n0x88AC\t0x63E1\n0x88AD\t0x6E25\n0x88AE\t0x65ED\n0x88AF\t0x8466\n0x88B0\t0x82A6\n0x88B1\t0x9BF5\n0x88B2\t0x6893\n0x88B3\t0x5727\n0x88B4\t0x65A1\n0x88B5\t0x6271\n0x88B6\t0x5B9B\n0x88B7\t0x59D0\n0x88B8\t0x867B\n0x88B9\t0x98F4\n0x88BA\t0x7D62\n0x88BB\t0x7DBE\n0x88BC\t0x9B8E\n0x88BD\t0x6216\n0x88BE\t0x7C9F\n0x88BF\t0x88B7\n0x88C0\t0x5B89\n0x88C1\t0x5EB5\n0x88C2\t0x6309\n0x88C3\t0x6697\n0x88C4\t0x6848\n0x88C5\t0x95C7\n0x88C6\t0x978D\n0x88C7\t0x674F\n0x88C8\t0x4EE5\n0x88C9\t0x4F0A\n0x88CA\t0x4F4D\n0x88CB\t0x4F9D\n0x88CC\t0x5049\n0x88CD\t0x56F2\n0x88CE\t0x5937\n0x88CF\t0x59D4\n0x88D0\t0x5A01\n0x88D1\t0x5C09\n0x88D2\t0x60DF\n0x88D3\t0x610F\n0x88D4\t0x6170\n0x88D5\t0x6613\n0x88D6\t0x6905\n0x88D7\t0x70BA\n0x88D8\t0x754F\n0x88D9\t0x7570\n0x88DA\t0x79FB\n0x88DB\t0x7DAD\n0x88DC\t0x7DEF\n0x88DD\t0x80C3\n0x88DE\t0x840E\n0x88DF\t0x8863\n0x88E0\t0x8B02\n0x88E1\t0x9055\n0x88E2\t0x907A\n0x88E3\t0x533B\n0x88E4\t0x4E95\n0x88E5\t0x4EA5\n0x88E6\t0x57DF\n0x88E7\t0x80B2\n0x88E8\t0x90C1\n0x88E9\t0x78EF\n0x88EA\t0x4E00\n0x88EB\t0x58F1\n0x88EC\t0x6EA2\n0x88ED\t0x9038\n0x88EE\t0x7A32\n0x88EF\t0x8328\n0x88F0\t0x828B\n0x88F1\t0x9C2F\n0x88F2\t0x5141\n0x88F3\t0x5370\n0x88F4\t0x54BD\n0x88F5\t0x54E1\n0x88F6\t0x56E0\n0x88F7\t0x59FB\n0x88F8\t0x5F15\n0x88F9\t0x98F2\n0x88FA\t0x6DEB\n0x88FB\t0x80E4\n0x88FC\t0x852D\n0x8940\t0x9662\n0x8941\t0x9670\n0x8942\t0x96A0\n0x8943\t0x97FB\n0x8944\t0x540B\n0x8945\t0x53F3\n0x8946\t0x5B87\n0x8947\t0x70CF\n0x8948\t0x7FBD\n0x8949\t0x8FC2\n0x894A\t0x96E8\n0x894B\t0x536F\n0x894C\t0x9D5C\n0x894D\t0x7ABA\n0x894E\t0x4E11\n0x894F\t0x7893\n0x8950\t0x81FC\n0x8951\t0x6E26\n0x8952\t0x5618\n0x8953\t0x5504\n0x8954\t0x6B1D\n0x8955\t0x851A\n0x8956\t0x9C3B\n0x8957\t0x59E5\n0x8958\t0x53A9\n0x8959\t0x6D66\n0x895A\t0x74DC\n0x895B\t0x958F\n0x895C\t0x5642\n0x895D\t0x4E91\n0x895E\t0x904B\n0x895F\t0x96F2\n0x8960\t0x834F\n0x8961\t0x990C\n0x8962\t0x53E1\n0x8963\t0x55B6\n0x8964\t0x5B30\n0x8965\t0x5F71\n0x8966\t0x6620\n0x8967\t0x66F3\n0x8968\t0x6804\n0x8969\t0x6C38\n0x896A\t0x6CF3\n0x896B\t0x6D29\n0x896C\t0x745B\n0x896D\t0x76C8\n0x896E\t0x7A4E\n0x896F\t0x9834\n0x8970\t0x82F1\n0x8971\t0x885B\n0x8972\t0x8A60\n0x8973\t0x92ED\n0x8974\t0x6DB2\n0x8975\t0x75AB\n0x8976\t0x76CA\n0x8977\t0x99C5\n0x8978\t0x60A6\n0x8979\t0x8B01\n0x897A\t0x8D8A\n0x897B\t0x95B2\n0x897C\t0x698E\n0x897D\t0x53AD\n0x897E\t0x5186\n0x8980\t0x5712\n0x8981\t0x5830\n0x8982\t0x5944\n0x8983\t0x5BB4\n0x8984\t0x5EF6\n0x8985\t0x6028\n0x8986\t0x63A9\n0x8987\t0x63F4\n0x8988\t0x6CBF\n0x8989\t0x6F14\n0x898A\t0x708E\n0x898B\t0x7114\n0x898C\t0x7159\n0x898D\t0x71D5\n0x898E\t0x733F\n0x898F\t0x7E01\n0x8990\t0x8276\n0x8991\t0x82D1\n0x8992\t0x8597\n0x8993\t0x9060\n0x8994\t0x925B\n0x8995\t0x9D1B\n0x8996\t0x5869\n0x8997\t0x65BC\n0x8998\t0x6C5A\n0x8999\t0x7525\n0x899A\t0x51F9\n0x899B\t0x592E\n0x899C\t0x5965\n0x899D\t0x5F80\n0x899E\t0x5FDC\n0x899F\t0x62BC\n0x89A0\t0x65FA\n0x89A1\t0x6A2A\n0x89A2\t0x6B27\n0x89A3\t0x6BB4\n0x89A4\t0x738B\n0x89A5\t0x7FC1\n0x89A6\t0x8956\n0x89A7\t0x9D2C\n0x89A8\t0x9D0E\n0x89A9\t0x9EC4\n0x89AA\t0x5CA1\n0x89AB\t0x6C96\n0x89AC\t0x837B\n0x89AD\t0x5104\n0x89AE\t0x5C4B\n0x89AF\t0x61B6\n0x89B0\t0x81C6\n0x89B1\t0x6876\n0x89B2\t0x7261\n0x89B3\t0x4E59\n0x89B4\t0x4FFA\n0x89B5\t0x5378\n0x89B6\t0x6069\n0x89B7\t0x6E29\n0x89B8\t0x7A4F\n0x89B9\t0x97F3\n0x89BA\t0x4E0B\n0x89BB\t0x5316\n0x89BC\t0x4EEE\n0x89BD\t0x4F55\n0x89BE\t0x4F3D\n0x89BF\t0x4FA1\n0x89C0\t0x4F73\n0x89C1\t0x52A0\n0x89C2\t0x53EF\n0x89C3\t0x5609\n0x89C4\t0x590F\n0x89C5\t0x5AC1\n0x89C6\t0x5BB6\n0x89C7\t0x5BE1\n0x89C8\t0x79D1\n0x89C9\t0x6687\n0x89CA\t0x679C\n0x89CB\t0x67B6\n0x89CC\t0x6B4C\n0x89CD\t0x6CB3\n0x89CE\t0x706B\n0x89CF\t0x73C2\n0x89D0\t0x798D\n0x89D1\t0x79BE\n0x89D2\t0x7A3C\n0x89D3\t0x7B87\n0x89D4\t0x82B1\n0x89D5\t0x82DB\n0x89D6\t0x8304\n0x89D7\t0x8377\n0x89D8\t0x83EF\n0x89D9\t0x83D3\n0x89DA\t0x8766\n0x89DB\t0x8AB2\n0x89DC\t0x5629\n0x89DD\t0x8CA8\n0x89DE\t0x8FE6\n0x89DF\t0x904E\n0x89E0\t0x971E\n0x89E1\t0x868A\n0x89E2\t0x4FC4\n0x89E3\t0x5CE8\n0x89E4\t0x6211\n0x89E5\t0x7259\n0x89E6\t0x753B\n0x89E7\t0x81E5\n0x89E8\t0x82BD\n0x89E9\t0x86FE\n0x89EA\t0x8CC0\n0x89EB\t0x96C5\n0x89EC\t0x9913\n0x89ED\t0x99D5\n0x89EE\t0x4ECB\n0x89EF\t0x4F1A\n0x89F0\t0x89E3\n0x89F1\t0x56DE\n0x89F2\t0x584A\n0x89F3\t0x58CA\n0x89F4\t0x5EFB\n0x89F5\t0x5FEB\n0x89F6\t0x602A\n0x89F7\t0x6094\n0x89F8\t0x6062\n0x89F9\t0x61D0\n0x89FA\t0x6212\n0x89FB\t0x62D0\n0x89FC\t0x6539\n0x8A40\t0x9B41\n0x8A41\t0x6666\n0x8A42\t0x68B0\n0x8A43\t0x6D77\n0x8A44\t0x7070\n0x8A45\t0x754C\n0x8A46\t0x7686\n0x8A47\t0x7D75\n0x8A48\t0x82A5\n0x8A49\t0x87F9\n0x8A4A\t0x958B\n0x8A4B\t0x968E\n0x8A4C\t0x8C9D\n0x8A4D\t0x51F1\n0x8A4E\t0x52BE\n0x8A4F\t0x5916\n0x8A50\t0x54B3\n0x8A51\t0x5BB3\n0x8A52\t0x5D16\n0x8A53\t0x6168\n0x8A54\t0x6982\n0x8A55\t0x6DAF\n0x8A56\t0x788D\n0x8A57\t0x84CB\n0x8A58\t0x8857\n0x8A59\t0x8A72\n0x8A5A\t0x93A7\n0x8A5B\t0x9AB8\n0x8A5C\t0x6D6C\n0x8A5D\t0x99A8\n0x8A5E\t0x86D9\n0x8A5F\t0x57A3\n0x8A60\t0x67FF\n0x8A61\t0x86CE\n0x8A62\t0x920E\n0x8A63\t0x5283\n0x8A64\t0x5687\n0x8A65\t0x5404\n0x8A66\t0x5ED3\n0x8A67\t0x62E1\n0x8A68\t0x64B9\n0x8A69\t0x683C\n0x8A6A\t0x6838\n0x8A6B\t0x6BBB\n0x8A6C\t0x7372\n0x8A6D\t0x78BA\n0x8A6E\t0x7A6B\n0x8A6F\t0x899A\n0x8A70\t0x89D2\n0x8A71\t0x8D6B\n0x8A72\t0x8F03\n0x8A73\t0x90ED\n0x8A74\t0x95A3\n0x8A75\t0x9694\n0x8A76\t0x9769\n0x8A77\t0x5B66\n0x8A78\t0x5CB3\n0x8A79\t0x697D\n0x8A7A\t0x984D\n0x8A7B\t0x984E\n0x8A7C\t0x639B\n0x8A7D\t0x7B20\n0x8A7E\t0x6A2B\n0x8A80\t0x6A7F\n0x8A81\t0x68B6\n0x8A82\t0x9C0D\n0x8A83\t0x6F5F\n0x8A84\t0x5272\n0x8A85\t0x559D\n0x8A86\t0x6070\n0x8A87\t0x62EC\n0x8A88\t0x6D3B\n0x8A89\t0x6E07\n0x8A8A\t0x6ED1\n0x8A8B\t0x845B\n0x8A8C\t0x8910\n0x8A8D\t0x8F44\n0x8A8E\t0x4E14\n0x8A8F\t0x9C39\n0x8A90\t0x53F6\n0x8A91\t0x691B\n0x8A92\t0x6A3A\n0x8A93\t0x9784\n0x8A94\t0x682A\n0x8A95\t0x515C\n0x8A96\t0x7AC3\n0x8A97\t0x84B2\n0x8A98\t0x91DC\n0x8A99\t0x938C\n0x8A9A\t0x565B\n0x8A9B\t0x9D28\n0x8A9C\t0x6822\n0x8A9D\t0x8305\n0x8A9E\t0x8431\n0x8A9F\t0x7CA5\n0x8AA0\t0x5208\n0x8AA1\t0x82C5\n0x8AA2\t0x74E6\n0x8AA3\t0x4E7E\n0x8AA4\t0x4F83\n0x8AA5\t0x51A0\n0x8AA6\t0x5BD2\n0x8AA7\t0x520A\n0x8AA8\t0x52D8\n0x8AA9\t0x52E7\n0x8AAA\t0x5DFB\n0x8AAB\t0x559A\n0x8AAC\t0x582A\n0x8AAD\t0x59E6\n0x8AAE\t0x5B8C\n0x8AAF\t0x5B98\n0x8AB0\t0x5BDB\n0x8AB1\t0x5E72\n0x8AB2\t0x5E79\n0x8AB3\t0x60A3\n0x8AB4\t0x611F\n0x8AB5\t0x6163\n0x8AB6\t0x61BE\n0x8AB7\t0x63DB\n0x8AB8\t0x6562\n0x8AB9\t0x67D1\n0x8ABA\t0x6853\n0x8ABB\t0x68FA\n0x8ABC\t0x6B3E\n0x8ABD\t0x6B53\n0x8ABE\t0x6C57\n0x8ABF\t0x6F22\n0x8AC0\t0x6F97\n0x8AC1\t0x6F45\n0x8AC2\t0x74B0\n0x8AC3\t0x7518\n0x8AC4\t0x76E3\n0x8AC5\t0x770B\n0x8AC6\t0x7AFF\n0x8AC7\t0x7BA1\n0x8AC8\t0x7C21\n0x8AC9\t0x7DE9\n0x8ACA\t0x7F36\n0x8ACB\t0x7FF0\n0x8ACC\t0x809D\n0x8ACD\t0x8266\n0x8ACE\t0x839E\n0x8ACF\t0x89B3\n0x8AD0\t0x8ACC\n0x8AD1\t0x8CAB\n0x8AD2\t0x9084\n0x8AD3\t0x9451\n0x8AD4\t0x9593\n0x8AD5\t0x9591\n0x8AD6\t0x95A2\n0x8AD7\t0x9665\n0x8AD8\t0x97D3\n0x8AD9\t0x9928\n0x8ADA\t0x8218\n0x8ADB\t0x4E38\n0x8ADC\t0x542B\n0x8ADD\t0x5CB8\n0x8ADE\t0x5DCC\n0x8ADF\t0x73A9\n0x8AE0\t0x764C\n0x8AE1\t0x773C\n0x8AE2\t0x5CA9\n0x8AE3\t0x7FEB\n0x8AE4\t0x8D0B\n0x8AE5\t0x96C1\n0x8AE6\t0x9811\n0x8AE7\t0x9854\n0x8AE8\t0x9858\n0x8AE9\t0x4F01\n0x8AEA\t0x4F0E\n0x8AEB\t0x5371\n0x8AEC\t0x559C\n0x8AED\t0x5668\n0x8AEE\t0x57FA\n0x8AEF\t0x5947\n0x8AF0\t0x5B09\n0x8AF1\t0x5BC4\n0x8AF2\t0x5C90\n0x8AF3\t0x5E0C\n0x8AF4\t0x5E7E\n0x8AF5\t0x5FCC\n0x8AF6\t0x63EE\n0x8AF7\t0x673A\n0x8AF8\t0x65D7\n0x8AF9\t0x65E2\n0x8AFA\t0x671F\n0x8AFB\t0x68CB\n0x8AFC\t0x68C4\n0x8B40\t0x6A5F\n0x8B41\t0x5E30\n0x8B42\t0x6BC5\n0x8B43\t0x6C17\n0x8B44\t0x6C7D\n0x8B45\t0x757F\n0x8B46\t0x7948\n0x8B47\t0x5B63\n0x8B48\t0x7A00\n0x8B49\t0x7D00\n0x8B4A\t0x5FBD\n0x8B4B\t0x898F\n0x8B4C\t0x8A18\n0x8B4D\t0x8CB4\n0x8B4E\t0x8D77\n0x8B4F\t0x8ECC\n0x8B50\t0x8F1D\n0x8B51\t0x98E2\n0x8B52\t0x9A0E\n0x8B53\t0x9B3C\n0x8B54\t0x4E80\n0x8B55\t0x507D\n0x8B56\t0x5100\n0x8B57\t0x5993\n0x8B58\t0x5B9C\n0x8B59\t0x622F\n0x8B5A\t0x6280\n0x8B5B\t0x64EC\n0x8B5C\t0x6B3A\n0x8B5D\t0x72A0\n0x8B5E\t0x7591\n0x8B5F\t0x7947\n0x8B60\t0x7FA9\n0x8B61\t0x87FB\n0x8B62\t0x8ABC\n0x8B63\t0x8B70\n0x8B64\t0x63AC\n0x8B65\t0x83CA\n0x8B66\t0x97A0\n0x8B67\t0x5409\n0x8B68\t0x5403\n0x8B69\t0x55AB\n0x8B6A\t0x6854\n0x8B6B\t0x6A58\n0x8B6C\t0x8A70\n0x8B6D\t0x7827\n0x8B6E\t0x6775\n0x8B6F\t0x9ECD\n0x8B70\t0x5374\n0x8B71\t0x5BA2\n0x8B72\t0x811A\n0x8B73\t0x8650\n0x8B74\t0x9006\n0x8B75\t0x4E18\n0x8B76\t0x4E45\n0x8B77\t0x4EC7\n0x8B78\t0x4F11\n0x8B79\t0x53CA\n0x8B7A\t0x5438\n0x8B7B\t0x5BAE\n0x8B7C\t0x5F13\n0x8B7D\t0x6025\n0x8B7E\t0x6551\n0x8B80\t0x673D\n0x8B81\t0x6C42\n0x8B82\t0x6C72\n0x8B83\t0x6CE3\n0x8B84\t0x7078\n0x8B85\t0x7403\n0x8B86\t0x7A76\n0x8B87\t0x7AAE\n0x8B88\t0x7B08\n0x8B89\t0x7D1A\n0x8B8A\t0x7CFE\n0x8B8B\t0x7D66\n0x8B8C\t0x65E7\n0x8B8D\t0x725B\n0x8B8E\t0x53BB\n0x8B8F\t0x5C45\n0x8B90\t0x5DE8\n0x8B91\t0x62D2\n0x8B92\t0x62E0\n0x8B93\t0x6319\n0x8B94\t0x6E20\n0x8B95\t0x865A\n0x8B96\t0x8A31\n0x8B97\t0x8DDD\n0x8B98\t0x92F8\n0x8B99\t0x6F01\n0x8B9A\t0x79A6\n0x8B9B\t0x9B5A\n0x8B9C\t0x4EA8\n0x8B9D\t0x4EAB\n0x8B9E\t0x4EAC\n0x8B9F\t0x4F9B\n0x8BA0\t0x4FA0\n0x8BA1\t0x50D1\n0x8BA2\t0x5147\n0x8BA3\t0x7AF6\n0x8BA4\t0x5171\n0x8BA5\t0x51F6\n0x8BA6\t0x5354\n0x8BA7\t0x5321\n0x8BA8\t0x537F\n0x8BA9\t0x53EB\n0x8BAA\t0x55AC\n0x8BAB\t0x5883\n0x8BAC\t0x5CE1\n0x8BAD\t0x5F37\n0x8BAE\t0x5F4A\n0x8BAF\t0x602F\n0x8BB0\t0x6050\n0x8BB1\t0x606D\n0x8BB2\t0x631F\n0x8BB3\t0x6559\n0x8BB4\t0x6A4B\n0x8BB5\t0x6CC1\n0x8BB6\t0x72C2\n0x8BB7\t0x72ED\n0x8BB8\t0x77EF\n0x8BB9\t0x80F8\n0x8BBA\t0x8105\n0x8BBB\t0x8208\n0x8BBC\t0x854E\n0x8BBD\t0x90F7\n0x8BBE\t0x93E1\n0x8BBF\t0x97FF\n0x8BC0\t0x9957\n0x8BC1\t0x9A5A\n0x8BC2\t0x4EF0\n0x8BC3\t0x51DD\n0x8BC4\t0x5C2D\n0x8BC5\t0x6681\n0x8BC6\t0x696D\n0x8BC7\t0x5C40\n0x8BC8\t0x66F2\n0x8BC9\t0x6975\n0x8BCA\t0x7389\n0x8BCB\t0x6850\n0x8BCC\t0x7C81\n0x8BCD\t0x50C5\n0x8BCE\t0x52E4\n0x8BCF\t0x5747\n0x8BD0\t0x5DFE\n0x8BD1\t0x9326\n0x8BD2\t0x65A4\n0x8BD3\t0x6B23\n0x8BD4\t0x6B3D\n0x8BD5\t0x7434\n0x8BD6\t0x7981\n0x8BD7\t0x79BD\n0x8BD8\t0x7B4B\n0x8BD9\t0x7DCA\n0x8BDA\t0x82B9\n0x8BDB\t0x83CC\n0x8BDC\t0x887F\n0x8BDD\t0x895F\n0x8BDE\t0x8B39\n0x8BDF\t0x8FD1\n0x8BE0\t0x91D1\n0x8BE1\t0x541F\n0x8BE2\t0x9280\n0x8BE3\t0x4E5D\n0x8BE4\t0x5036\n0x8BE5\t0x53E5\n0x8BE6\t0x533A\n0x8BE7\t0x72D7\n0x8BE8\t0x7396\n0x8BE9\t0x77E9\n0x8BEA\t0x82E6\n0x8BEB\t0x8EAF\n0x8BEC\t0x99C6\n0x8BED\t0x99C8\n0x8BEE\t0x99D2\n0x8BEF\t0x5177\n0x8BF0\t0x611A\n0x8BF1\t0x865E\n0x8BF2\t0x55B0\n0x8BF3\t0x7A7A\n0x8BF4\t0x5076\n0x8BF5\t0x5BD3\n0x8BF6\t0x9047\n0x8BF7\t0x9685\n0x8BF8\t0x4E32\n0x8BF9\t0x6ADB\n0x8BFA\t0x91E7\n0x8BFB\t0x5C51\n0x8BFC\t0x5C48\n0x8C40\t0x6398\n0x8C41\t0x7A9F\n0x8C42\t0x6C93\n0x8C43\t0x9774\n0x8C44\t0x8F61\n0x8C45\t0x7AAA\n0x8C46\t0x718A\n0x8C47\t0x9688\n0x8C48\t0x7C82\n0x8C49\t0x6817\n0x8C4A\t0x7E70\n0x8C4B\t0x6851\n0x8C4C\t0x936C\n0x8C4D\t0x52F2\n0x8C4E\t0x541B\n0x8C4F\t0x85AB\n0x8C50\t0x8A13\n0x8C51\t0x7FA4\n0x8C52\t0x8ECD\n0x8C53\t0x90E1\n0x8C54\t0x5366\n0x8C55\t0x8888\n0x8C56\t0x7941\n0x8C57\t0x4FC2\n0x8C58\t0x50BE\n0x8C59\t0x5211\n0x8C5A\t0x5144\n0x8C5B\t0x5553\n0x8C5C\t0x572D\n0x8C5D\t0x73EA\n0x8C5E\t0x578B\n0x8C5F\t0x5951\n0x8C60\t0x5F62\n0x8C61\t0x5F84\n0x8C62\t0x6075\n0x8C63\t0x6176\n0x8C64\t0x6167\n0x8C65\t0x61A9\n0x8C66\t0x63B2\n0x8C67\t0x643A\n0x8C68\t0x656C\n0x8C69\t0x666F\n0x8C6A\t0x6842\n0x8C6B\t0x6E13\n0x8C6C\t0x7566\n0x8C6D\t0x7A3D\n0x8C6E\t0x7CFB\n0x8C6F\t0x7D4C\n0x8C70\t0x7D99\n0x8C71\t0x7E4B\n0x8C72\t0x7F6B\n0x8C73\t0x830E\n0x8C74\t0x834A\n0x8C75\t0x86CD\n0x8C76\t0x8A08\n0x8C77\t0x8A63\n0x8C78\t0x8B66\n0x8C79\t0x8EFD\n0x8C7A\t0x981A\n0x8C7B\t0x9D8F\n0x8C7C\t0x82B8\n0x8C7D\t0x8FCE\n0x8C7E\t0x9BE8\n0x8C80\t0x5287\n0x8C81\t0x621F\n0x8C82\t0x6483\n0x8C83\t0x6FC0\n0x8C84\t0x9699\n0x8C85\t0x6841\n0x8C86\t0x5091\n0x8C87\t0x6B20\n0x8C88\t0x6C7A\n0x8C89\t0x6F54\n0x8C8A\t0x7A74\n0x8C8B\t0x7D50\n0x8C8C\t0x8840\n0x8C8D\t0x8A23\n0x8C8E\t0x6708\n0x8C8F\t0x4EF6\n0x8C90\t0x5039\n0x8C91\t0x5026\n0x8C92\t0x5065\n0x8C93\t0x517C\n0x8C94\t0x5238\n0x8C95\t0x5263\n0x8C96\t0x55A7\n0x8C97\t0x570F\n0x8C98\t0x5805\n0x8C99\t0x5ACC\n0x8C9A\t0x5EFA\n0x8C9B\t0x61B2\n0x8C9C\t0x61F8\n0x8C9D\t0x62F3\n0x8C9E\t0x6372\n0x8C9F\t0x691C\n0x8CA0\t0x6A29\n0x8CA1\t0x727D\n0x8CA2\t0x72AC\n0x8CA3\t0x732E\n0x8CA4\t0x7814\n0x8CA5\t0x786F\n0x8CA6\t0x7D79\n0x8CA7\t0x770C\n0x8CA8\t0x80A9\n0x8CA9\t0x898B\n0x8CAA\t0x8B19\n0x8CAB\t0x8CE2\n0x8CAC\t0x8ED2\n0x8CAD\t0x9063\n0x8CAE\t0x9375\n0x8CAF\t0x967A\n0x8CB0\t0x9855\n0x8CB1\t0x9A13\n0x8CB2\t0x9E78\n0x8CB3\t0x5143\n0x8CB4\t0x539F\n0x8CB5\t0x53B3\n0x8CB6\t0x5E7B\n0x8CB7\t0x5F26\n0x8CB8\t0x6E1B\n0x8CB9\t0x6E90\n0x8CBA\t0x7384\n0x8CBB\t0x73FE\n0x8CBC\t0x7D43\n0x8CBD\t0x8237\n0x8CBE\t0x8A00\n0x8CBF\t0x8AFA\n0x8CC0\t0x9650\n0x8CC1\t0x4E4E\n0x8CC2\t0x500B\n0x8CC3\t0x53E4\n0x8CC4\t0x547C\n0x8CC5\t0x56FA\n0x8CC6\t0x59D1\n0x8CC7\t0x5B64\n0x8CC8\t0x5DF1\n0x8CC9\t0x5EAB\n0x8CCA\t0x5F27\n0x8CCB\t0x6238\n0x8CCC\t0x6545\n0x8CCD\t0x67AF\n0x8CCE\t0x6E56\n0x8CCF\t0x72D0\n0x8CD0\t0x7CCA\n0x8CD1\t0x88B4\n0x8CD2\t0x80A1\n0x8CD3\t0x80E1\n0x8CD4\t0x83F0\n0x8CD5\t0x864E\n0x8CD6\t0x8A87\n0x8CD7\t0x8DE8\n0x8CD8\t0x9237\n0x8CD9\t0x96C7\n0x8CDA\t0x9867\n0x8CDB\t0x9F13\n0x8CDC\t0x4E94\n0x8CDD\t0x4E92\n0x8CDE\t0x4F0D\n0x8CDF\t0x5348\n0x8CE0\t0x5449\n0x8CE1\t0x543E\n0x8CE2\t0x5A2F\n0x8CE3\t0x5F8C\n0x8CE4\t0x5FA1\n0x8CE5\t0x609F\n0x8CE6\t0x68A7\n0x8CE7\t0x6A8E\n0x8CE8\t0x745A\n0x8CE9\t0x7881\n0x8CEA\t0x8A9E\n0x8CEB\t0x8AA4\n0x8CEC\t0x8B77\n0x8CED\t0x9190\n0x8CEE\t0x4E5E\n0x8CEF\t0x9BC9\n0x8CF0\t0x4EA4\n0x8CF1\t0x4F7C\n0x8CF2\t0x4FAF\n0x8CF3\t0x5019\n0x8CF4\t0x5016\n0x8CF5\t0x5149\n0x8CF6\t0x516C\n0x8CF7\t0x529F\n0x8CF8\t0x52B9\n0x8CF9\t0x52FE\n0x8CFA\t0x539A\n0x8CFB\t0x53E3\n0x8CFC\t0x5411\n0x8D40\t0x540E\n0x8D41\t0x5589\n0x8D42\t0x5751\n0x8D43\t0x57A2\n0x8D44\t0x597D\n0x8D45\t0x5B54\n0x8D46\t0x5B5D\n0x8D47\t0x5B8F\n0x8D48\t0x5DE5\n0x8D49\t0x5DE7\n0x8D4A\t0x5DF7\n0x8D4B\t0x5E78\n0x8D4C\t0x5E83\n0x8D4D\t0x5E9A\n0x8D4E\t0x5EB7\n0x8D4F\t0x5F18\n0x8D50\t0x6052\n0x8D51\t0x614C\n0x8D52\t0x6297\n0x8D53\t0x62D8\n0x8D54\t0x63A7\n0x8D55\t0x653B\n0x8D56\t0x6602\n0x8D57\t0x6643\n0x8D58\t0x66F4\n0x8D59\t0x676D\n0x8D5A\t0x6821\n0x8D5B\t0x6897\n0x8D5C\t0x69CB\n0x8D5D\t0x6C5F\n0x8D5E\t0x6D2A\n0x8D5F\t0x6D69\n0x8D60\t0x6E2F\n0x8D61\t0x6E9D\n0x8D62\t0x7532\n0x8D63\t0x7687\n0x8D64\t0x786C\n0x8D65\t0x7A3F\n0x8D66\t0x7CE0\n0x8D67\t0x7D05\n0x8D68\t0x7D18\n0x8D69\t0x7D5E\n0x8D6A\t0x7DB1\n0x8D6B\t0x8015\n0x8D6C\t0x8003\n0x8D6D\t0x80AF\n0x8D6E\t0x80B1\n0x8D6F\t0x8154\n0x8D70\t0x818F\n0x8D71\t0x822A\n0x8D72\t0x8352\n0x8D73\t0x884C\n0x8D74\t0x8861\n0x8D75\t0x8B1B\n0x8D76\t0x8CA2\n0x8D77\t0x8CFC\n0x8D78\t0x90CA\n0x8D79\t0x9175\n0x8D7A\t0x9271\n0x8D7B\t0x783F\n0x8D7C\t0x92FC\n0x8D7D\t0x95A4\n0x8D7E\t0x964D\n0x8D80\t0x9805\n0x8D81\t0x9999\n0x8D82\t0x9AD8\n0x8D83\t0x9D3B\n0x8D84\t0x525B\n0x8D85\t0x52AB\n0x8D86\t0x53F7\n0x8D87\t0x5408\n0x8D88\t0x58D5\n0x8D89\t0x62F7\n0x8D8A\t0x6FE0\n0x8D8B\t0x8C6A\n0x8D8C\t0x8F5F\n0x8D8D\t0x9EB9\n0x8D8E\t0x514B\n0x8D8F\t0x523B\n0x8D90\t0x544A\n0x8D91\t0x56FD\n0x8D92\t0x7A40\n0x8D93\t0x9177\n0x8D94\t0x9D60\n0x8D95\t0x9ED2\n0x8D96\t0x7344\n0x8D97\t0x6F09\n0x8D98\t0x8170\n0x8D99\t0x7511\n0x8D9A\t0x5FFD\n0x8D9B\t0x60DA\n0x8D9C\t0x9AA8\n0x8D9D\t0x72DB\n0x8D9E\t0x8FBC\n0x8D9F\t0x6B64\n0x8DA0\t0x9803\n0x8DA1\t0x4ECA\n0x8DA2\t0x56F0\n0x8DA3\t0x5764\n0x8DA4\t0x58BE\n0x8DA5\t0x5A5A\n0x8DA6\t0x6068\n0x8DA7\t0x61C7\n0x8DA8\t0x660F\n0x8DA9\t0x6606\n0x8DAA\t0x6839\n0x8DAB\t0x68B1\n0x8DAC\t0x6DF7\n0x8DAD\t0x75D5\n0x8DAE\t0x7D3A\n0x8DAF\t0x826E\n0x8DB0\t0x9B42\n0x8DB1\t0x4E9B\n0x8DB2\t0x4F50\n0x8DB3\t0x53C9\n0x8DB4\t0x5506\n0x8DB5\t0x5D6F\n0x8DB6\t0x5DE6\n0x8DB7\t0x5DEE\n0x8DB8\t0x67FB\n0x8DB9\t0x6C99\n0x8DBA\t0x7473\n0x8DBB\t0x7802\n0x8DBC\t0x8A50\n0x8DBD\t0x9396\n0x8DBE\t0x88DF\n0x8DBF\t0x5750\n0x8DC0\t0x5EA7\n0x8DC1\t0x632B\n0x8DC2\t0x50B5\n0x8DC3\t0x50AC\n0x8DC4\t0x518D\n0x8DC5\t0x6700\n0x8DC6\t0x54C9\n0x8DC7\t0x585E\n0x8DC8\t0x59BB\n0x8DC9\t0x5BB0\n0x8DCA\t0x5F69\n0x8DCB\t0x624D\n0x8DCC\t0x63A1\n0x8DCD\t0x683D\n0x8DCE\t0x6B73\n0x8DCF\t0x6E08\n0x8DD0\t0x707D\n0x8DD1\t0x91C7\n0x8DD2\t0x7280\n0x8DD3\t0x7815\n0x8DD4\t0x7826\n0x8DD5\t0x796D\n0x8DD6\t0x658E\n0x8DD7\t0x7D30\n0x8DD8\t0x83DC\n0x8DD9\t0x88C1\n0x8DDA\t0x8F09\n0x8DDB\t0x969B\n0x8DDC\t0x5264\n0x8DDD\t0x5728\n0x8DDE\t0x6750\n0x8DDF\t0x7F6A\n0x8DE0\t0x8CA1\n0x8DE1\t0x51B4\n0x8DE2\t0x5742\n0x8DE3\t0x962A\n0x8DE4\t0x583A\n0x8DE5\t0x698A\n0x8DE6\t0x80B4\n0x8DE7\t0x54B2\n0x8DE8\t0x5D0E\n0x8DE9\t0x57FC\n0x8DEA\t0x7895\n0x8DEB\t0x9DFA\n0x8DEC\t0x4F5C\n0x8DED\t0x524A\n0x8DEE\t0x548B\n0x8DEF\t0x643E\n0x8DF0\t0x6628\n0x8DF1\t0x6714\n0x8DF2\t0x67F5\n0x8DF3\t0x7A84\n0x8DF4\t0x7B56\n0x8DF5\t0x7D22\n0x8DF6\t0x932F\n0x8DF7\t0x685C\n0x8DF8\t0x9BAD\n0x8DF9\t0x7B39\n0x8DFA\t0x5319\n0x8DFB\t0x518A\n0x8DFC\t0x5237\n0x8E40\t0x5BDF\n0x8E41\t0x62F6\n0x8E42\t0x64AE\n0x8E43\t0x64E6\n0x8E44\t0x672D\n0x8E45\t0x6BBA\n0x8E46\t0x85A9\n0x8E47\t0x96D1\n0x8E48\t0x7690\n0x8E49\t0x9BD6\n0x8E4A\t0x634C\n0x8E4B\t0x9306\n0x8E4C\t0x9BAB\n0x8E4D\t0x76BF\n0x8E4E\t0x6652\n0x8E4F\t0x4E09\n0x8E50\t0x5098\n0x8E51\t0x53C2\n0x8E52\t0x5C71\n0x8E53\t0x60E8\n0x8E54\t0x6492\n0x8E55\t0x6563\n0x8E56\t0x685F\n0x8E57\t0x71E6\n0x8E58\t0x73CA\n0x8E59\t0x7523\n0x8E5A\t0x7B97\n0x8E5B\t0x7E82\n0x8E5C\t0x8695\n0x8E5D\t0x8B83\n0x8E5E\t0x8CDB\n0x8E5F\t0x9178\n0x8E60\t0x9910\n0x8E61\t0x65AC\n0x8E62\t0x66AB\n0x8E63\t0x6B8B\n0x8E64\t0x4ED5\n0x8E65\t0x4ED4\n0x8E66\t0x4F3A\n0x8E67\t0x4F7F\n0x8E68\t0x523A\n0x8E69\t0x53F8\n0x8E6A\t0x53F2\n0x8E6B\t0x55E3\n0x8E6C\t0x56DB\n0x8E6D\t0x58EB\n0x8E6E\t0x59CB\n0x8E6F\t0x59C9\n0x8E70\t0x59FF\n0x8E71\t0x5B50\n0x8E72\t0x5C4D\n0x8E73\t0x5E02\n0x8E74\t0x5E2B\n0x8E75\t0x5FD7\n0x8E76\t0x601D\n0x8E77\t0x6307\n0x8E78\t0x652F\n0x8E79\t0x5B5C\n0x8E7A\t0x65AF\n0x8E7B\t0x65BD\n0x8E7C\t0x65E8\n0x8E7D\t0x679D\n0x8E7E\t0x6B62\n0x8E80\t0x6B7B\n0x8E81\t0x6C0F\n0x8E82\t0x7345\n0x8E83\t0x7949\n0x8E84\t0x79C1\n0x8E85\t0x7CF8\n0x8E86\t0x7D19\n0x8E87\t0x7D2B\n0x8E88\t0x80A2\n0x8E89\t0x8102\n0x8E8A\t0x81F3\n0x8E8B\t0x8996\n0x8E8C\t0x8A5E\n0x8E8D\t0x8A69\n0x8E8E\t0x8A66\n0x8E8F\t0x8A8C\n0x8E90\t0x8AEE\n0x8E91\t0x8CC7\n0x8E92\t0x8CDC\n0x8E93\t0x96CC\n0x8E94\t0x98FC\n0x8E95\t0x6B6F\n0x8E96\t0x4E8B\n0x8E97\t0x4F3C\n0x8E98\t0x4F8D\n0x8E99\t0x5150\n0x8E9A\t0x5B57\n0x8E9B\t0x5BFA\n0x8E9C\t0x6148\n0x8E9D\t0x6301\n0x8E9E\t0x6642\n0x8E9F\t0x6B21\n0x8EA0\t0x6ECB\n0x8EA1\t0x6CBB\n0x8EA2\t0x723E\n0x8EA3\t0x74BD\n0x8EA4\t0x75D4\n0x8EA5\t0x78C1\n0x8EA6\t0x793A\n0x8EA7\t0x800C\n0x8EA8\t0x8033\n0x8EA9\t0x81EA\n0x8EAA\t0x8494\n0x8EAB\t0x8F9E\n0x8EAC\t0x6C50\n0x8EAD\t0x9E7F\n0x8EAE\t0x5F0F\n0x8EAF\t0x8B58\n0x8EB0\t0x9D2B\n0x8EB1\t0x7AFA\n0x8EB2\t0x8EF8\n0x8EB3\t0x5B8D\n0x8EB4\t0x96EB\n0x8EB5\t0x4E03\n0x8EB6\t0x53F1\n0x8EB7\t0x57F7\n0x8EB8\t0x5931\n0x8EB9\t0x5AC9\n0x8EBA\t0x5BA4\n0x8EBB\t0x6089\n0x8EBC\t0x6E7F\n0x8EBD\t0x6F06\n0x8EBE\t0x75BE\n0x8EBF\t0x8CEA\n0x8EC0\t0x5B9F\n0x8EC1\t0x8500\n0x8EC2\t0x7BE0\n0x8EC3\t0x5072\n0x8EC4\t0x67F4\n0x8EC5\t0x829D\n0x8EC6\t0x5C61\n0x8EC7\t0x854A\n0x8EC8\t0x7E1E\n0x8EC9\t0x820E\n0x8ECA\t0x5199\n0x8ECB\t0x5C04\n0x8ECC\t0x6368\n0x8ECD\t0x8D66\n0x8ECE\t0x659C\n0x8ECF\t0x716E\n0x8ED0\t0x793E\n0x8ED1\t0x7D17\n0x8ED2\t0x8005\n0x8ED3\t0x8B1D\n0x8ED4\t0x8ECA\n0x8ED5\t0x906E\n0x8ED6\t0x86C7\n0x8ED7\t0x90AA\n0x8ED8\t0x501F\n0x8ED9\t0x52FA\n0x8EDA\t0x5C3A\n0x8EDB\t0x6753\n0x8EDC\t0x707C\n0x8EDD\t0x7235\n0x8EDE\t0x914C\n0x8EDF\t0x91C8\n0x8EE0\t0x932B\n0x8EE1\t0x82E5\n0x8EE2\t0x5BC2\n0x8EE3\t0x5F31\n0x8EE4\t0x60F9\n0x8EE5\t0x4E3B\n0x8EE6\t0x53D6\n0x8EE7\t0x5B88\n0x8EE8\t0x624B\n0x8EE9\t0x6731\n0x8EEA\t0x6B8A\n0x8EEB\t0x72E9\n0x8EEC\t0x73E0\n0x8EED\t0x7A2E\n0x8EEE\t0x816B\n0x8EEF\t0x8DA3\n0x8EF0\t0x9152\n0x8EF1\t0x9996\n0x8EF2\t0x5112\n0x8EF3\t0x53D7\n0x8EF4\t0x546A\n0x8EF5\t0x5BFF\n0x8EF6\t0x6388\n0x8EF7\t0x6A39\n0x8EF8\t0x7DAC\n0x8EF9\t0x9700\n0x8EFA\t0x56DA\n0x8EFB\t0x53CE\n0x8EFC\t0x5468\n0x8F40\t0x5B97\n0x8F41\t0x5C31\n0x8F42\t0x5DDE\n0x8F43\t0x4FEE\n0x8F44\t0x6101\n0x8F45\t0x62FE\n0x8F46\t0x6D32\n0x8F47\t0x79C0\n0x8F48\t0x79CB\n0x8F49\t0x7D42\n0x8F4A\t0x7E4D\n0x8F4B\t0x7FD2\n0x8F4C\t0x81ED\n0x8F4D\t0x821F\n0x8F4E\t0x8490\n0x8F4F\t0x8846\n0x8F50\t0x8972\n0x8F51\t0x8B90\n0x8F52\t0x8E74\n0x8F53\t0x8F2F\n0x8F54\t0x9031\n0x8F55\t0x914B\n0x8F56\t0x916C\n0x8F57\t0x96C6\n0x8F58\t0x919C\n0x8F59\t0x4EC0\n0x8F5A\t0x4F4F\n0x8F5B\t0x5145\n0x8F5C\t0x5341\n0x8F5D\t0x5F93\n0x8F5E\t0x620E\n0x8F5F\t0x67D4\n0x8F60\t0x6C41\n0x8F61\t0x6E0B\n0x8F62\t0x7363\n0x8F63\t0x7E26\n0x8F64\t0x91CD\n0x8F65\t0x9283\n0x8F66\t0x53D4\n0x8F67\t0x5919\n0x8F68\t0x5BBF\n0x8F69\t0x6DD1\n0x8F6A\t0x795D\n0x8F6B\t0x7E2E\n0x8F6C\t0x7C9B\n0x8F6D\t0x587E\n0x8F6E\t0x719F\n0x8F6F\t0x51FA\n0x8F70\t0x8853\n0x8F71\t0x8FF0\n0x8F72\t0x4FCA\n0x8F73\t0x5CFB\n0x8F74\t0x6625\n0x8F75\t0x77AC\n0x8F76\t0x7AE3\n0x8F77\t0x821C\n0x8F78\t0x99FF\n0x8F79\t0x51C6\n0x8F7A\t0x5FAA\n0x8F7B\t0x65EC\n0x8F7C\t0x696F\n0x8F7D\t0x6B89\n0x8F7E\t0x6DF3\n0x8F80\t0x6E96\n0x8F81\t0x6F64\n0x8F82\t0x76FE\n0x8F83\t0x7D14\n0x8F84\t0x5DE1\n0x8F85\t0x9075\n0x8F86\t0x9187\n0x8F87\t0x9806\n0x8F88\t0x51E6\n0x8F89\t0x521D\n0x8F8A\t0x6240\n0x8F8B\t0x6691\n0x8F8C\t0x66D9\n0x8F8D\t0x6E1A\n0x8F8E\t0x5EB6\n0x8F8F\t0x7DD2\n0x8F90\t0x7F72\n0x8F91\t0x66F8\n0x8F92\t0x85AF\n0x8F93\t0x85F7\n0x8F94\t0x8AF8\n0x8F95\t0x52A9\n0x8F96\t0x53D9\n0x8F97\t0x5973\n0x8F98\t0x5E8F\n0x8F99\t0x5F90\n0x8F9A\t0x6055\n0x8F9B\t0x92E4\n0x8F9C\t0x9664\n0x8F9D\t0x50B7\n0x8F9E\t0x511F\n0x8F9F\t0x52DD\n0x8FA0\t0x5320\n0x8FA1\t0x5347\n0x8FA2\t0x53EC\n0x8FA3\t0x54E8\n0x8FA4\t0x5546\n0x8FA5\t0x5531\n0x8FA6\t0x5617\n0x8FA7\t0x5968\n0x8FA8\t0x59BE\n0x8FA9\t0x5A3C\n0x8FAA\t0x5BB5\n0x8FAB\t0x5C06\n0x8FAC\t0x5C0F\n0x8FAD\t0x5C11\n0x8FAE\t0x5C1A\n0x8FAF\t0x5E84\n0x8FB0\t0x5E8A\n0x8FB1\t0x5EE0\n0x8FB2\t0x5F70\n0x8FB3\t0x627F\n0x8FB4\t0x6284\n0x8FB5\t0x62DB\n0x8FB6\t0x638C\n0x8FB7\t0x6377\n0x8FB8\t0x6607\n0x8FB9\t0x660C\n0x8FBA\t0x662D\n0x8FBB\t0x6676\n0x8FBC\t0x677E\n0x8FBD\t0x68A2\n0x8FBE\t0x6A1F\n0x8FBF\t0x6A35\n0x8FC0\t0x6CBC\n0x8FC1\t0x6D88\n0x8FC2\t0x6E09\n0x8FC3\t0x6E58\n0x8FC4\t0x713C\n0x8FC5\t0x7126\n0x8FC6\t0x7167\n0x8FC7\t0x75C7\n0x8FC8\t0x7701\n0x8FC9\t0x785D\n0x8FCA\t0x7901\n0x8FCB\t0x7965\n0x8FCC\t0x79F0\n0x8FCD\t0x7AE0\n0x8FCE\t0x7B11\n0x8FCF\t0x7CA7\n0x8FD0\t0x7D39\n0x8FD1\t0x8096\n0x8FD2\t0x83D6\n0x8FD3\t0x848B\n0x8FD4\t0x8549\n0x8FD5\t0x885D\n0x8FD6\t0x88F3\n0x8FD7\t0x8A1F\n0x8FD8\t0x8A3C\n0x8FD9\t0x8A54\n0x8FDA\t0x8A73\n0x8FDB\t0x8C61\n0x8FDC\t0x8CDE\n0x8FDD\t0x91A4\n0x8FDE\t0x9266\n0x8FDF\t0x937E\n0x8FE0\t0x9418\n0x8FE1\t0x969C\n0x8FE2\t0x9798\n0x8FE3\t0x4E0A\n0x8FE4\t0x4E08\n0x8FE5\t0x4E1E\n0x8FE6\t0x4E57\n0x8FE7\t0x5197\n0x8FE8\t0x5270\n0x8FE9\t0x57CE\n0x8FEA\t0x5834\n0x8FEB\t0x58CC\n0x8FEC\t0x5B22\n0x8FED\t0x5E38\n0x8FEE\t0x60C5\n0x8FEF\t0x64FE\n0x8FF0\t0x6761\n0x8FF1\t0x6756\n0x8FF2\t0x6D44\n0x8FF3\t0x72B6\n0x8FF4\t0x7573\n0x8FF5\t0x7A63\n0x8FF6\t0x84B8\n0x8FF7\t0x8B72\n0x8FF8\t0x91B8\n0x8FF9\t0x9320\n0x8FFA\t0x5631\n0x8FFB\t0x57F4\n0x8FFC\t0x98FE\n0x9040\t0x62ED\n0x9041\t0x690D\n0x9042\t0x6B96\n0x9043\t0x71ED\n0x9044\t0x7E54\n0x9045\t0x8077\n0x9046\t0x8272\n0x9047\t0x89E6\n0x9048\t0x98DF\n0x9049\t0x8755\n0x904A\t0x8FB1\n0x904B\t0x5C3B\n0x904C\t0x4F38\n0x904D\t0x4FE1\n0x904E\t0x4FB5\n0x904F\t0x5507\n0x9050\t0x5A20\n0x9051\t0x5BDD\n0x9052\t0x5BE9\n0x9053\t0x5FC3\n0x9054\t0x614E\n0x9055\t0x632F\n0x9056\t0x65B0\n0x9057\t0x664B\n0x9058\t0x68EE\n0x9059\t0x699B\n0x905A\t0x6D78\n0x905B\t0x6DF1\n0x905C\t0x7533\n0x905D\t0x75B9\n0x905E\t0x771F\n0x905F\t0x795E\n0x9060\t0x79E6\n0x9061\t0x7D33\n0x9062\t0x81E3\n0x9063\t0x82AF\n0x9064\t0x85AA\n0x9065\t0x89AA\n0x9066\t0x8A3A\n0x9067\t0x8EAB\n0x9068\t0x8F9B\n0x9069\t0x9032\n0x906A\t0x91DD\n0x906B\t0x9707\n0x906C\t0x4EBA\n0x906D\t0x4EC1\n0x906E\t0x5203\n0x906F\t0x5875\n0x9070\t0x58EC\n0x9071\t0x5C0B\n0x9072\t0x751A\n0x9073\t0x5C3D\n0x9074\t0x814E\n0x9075\t0x8A0A\n0x9076\t0x8FC5\n0x9077\t0x9663\n0x9078\t0x976D\n0x9079\t0x7B25\n0x907A\t0x8ACF\n0x907B\t0x9808\n0x907C\t0x9162\n0x907D\t0x56F3\n0x907E\t0x53A8\n0x9080\t0x9017\n0x9081\t0x5439\n0x9082\t0x5782\n0x9083\t0x5E25\n0x9084\t0x63A8\n0x9085\t0x6C34\n0x9086\t0x708A\n0x9087\t0x7761\n0x9088\t0x7C8B\n0x9089\t0x7FE0\n0x908A\t0x8870\n0x908B\t0x9042\n0x908C\t0x9154\n0x908D\t0x9310\n0x908E\t0x9318\n0x908F\t0x968F\n0x9090\t0x745E\n0x9091\t0x9AC4\n0x9092\t0x5D07\n0x9093\t0x5D69\n0x9094\t0x6570\n0x9095\t0x67A2\n0x9096\t0x8DA8\n0x9097\t0x96DB\n0x9098\t0x636E\n0x9099\t0x6749\n0x909A\t0x6919\n0x909B\t0x83C5\n0x909C\t0x9817\n0x909D\t0x96C0\n0x909E\t0x88FE\n0x909F\t0x6F84\n0x90A0\t0x647A\n0x90A1\t0x5BF8\n0x90A2\t0x4E16\n0x90A3\t0x702C\n0x90A4\t0x755D\n0x90A5\t0x662F\n0x90A6\t0x51C4\n0x90A7\t0x5236\n0x90A8\t0x52E2\n0x90A9\t0x59D3\n0x90AA\t0x5F81\n0x90AB\t0x6027\n0x90AC\t0x6210\n0x90AD\t0x653F\n0x90AE\t0x6574\n0x90AF\t0x661F\n0x90B0\t0x6674\n0x90B1\t0x68F2\n0x90B2\t0x6816\n0x90B3\t0x6B63\n0x90B4\t0x6E05\n0x90B5\t0x7272\n0x90B6\t0x751F\n0x90B7\t0x76DB\n0x90B8\t0x7CBE\n0x90B9\t0x8056\n0x90BA\t0x58F0\n0x90BB\t0x88FD\n0x90BC\t0x897F\n0x90BD\t0x8AA0\n0x90BE\t0x8A93\n0x90BF\t0x8ACB\n0x90C0\t0x901D\n0x90C1\t0x9192\n0x90C2\t0x9752\n0x90C3\t0x9759\n0x90C4\t0x6589\n0x90C5\t0x7A0E\n0x90C6\t0x8106\n0x90C7\t0x96BB\n0x90C8\t0x5E2D\n0x90C9\t0x60DC\n0x90CA\t0x621A\n0x90CB\t0x65A5\n0x90CC\t0x6614\n0x90CD\t0x6790\n0x90CE\t0x77F3\n0x90CF\t0x7A4D\n0x90D0\t0x7C4D\n0x90D1\t0x7E3E\n0x90D2\t0x810A\n0x90D3\t0x8CAC\n0x90D4\t0x8D64\n0x90D5\t0x8DE1\n0x90D6\t0x8E5F\n0x90D7\t0x78A9\n0x90D8\t0x5207\n0x90D9\t0x62D9\n0x90DA\t0x63A5\n0x90DB\t0x6442\n0x90DC\t0x6298\n0x90DD\t0x8A2D\n0x90DE\t0x7A83\n0x90DF\t0x7BC0\n0x90E0\t0x8AAC\n0x90E1\t0x96EA\n0x90E2\t0x7D76\n0x90E3\t0x820C\n0x90E4\t0x8749\n0x90E5\t0x4ED9\n0x90E6\t0x5148\n0x90E7\t0x5343\n0x90E8\t0x5360\n0x90E9\t0x5BA3\n0x90EA\t0x5C02\n0x90EB\t0x5C16\n0x90EC\t0x5DDD\n0x90ED\t0x6226\n0x90EE\t0x6247\n0x90EF\t0x64B0\n0x90F0\t0x6813\n0x90F1\t0x6834\n0x90F2\t0x6CC9\n0x90F3\t0x6D45\n0x90F4\t0x6D17\n0x90F5\t0x67D3\n0x90F6\t0x6F5C\n0x90F7\t0x714E\n0x90F8\t0x717D\n0x90F9\t0x65CB\n0x90FA\t0x7A7F\n0x90FB\t0x7BAD\n0x90FC\t0x7DDA\n0x9140\t0x7E4A\n0x9141\t0x7FA8\n0x9142\t0x817A\n0x9143\t0x821B\n0x9144\t0x8239\n0x9145\t0x85A6\n0x9146\t0x8A6E\n0x9147\t0x8CCE\n0x9148\t0x8DF5\n0x9149\t0x9078\n0x914A\t0x9077\n0x914B\t0x92AD\n0x914C\t0x9291\n0x914D\t0x9583\n0x914E\t0x9BAE\n0x914F\t0x524D\n0x9150\t0x5584\n0x9151\t0x6F38\n0x9152\t0x7136\n0x9153\t0x5168\n0x9154\t0x7985\n0x9155\t0x7E55\n0x9156\t0x81B3\n0x9157\t0x7CCE\n0x9158\t0x564C\n0x9159\t0x5851\n0x915A\t0x5CA8\n0x915B\t0x63AA\n0x915C\t0x66FE\n0x915D\t0x66FD\n0x915E\t0x695A\n0x915F\t0x72D9\n0x9160\t0x758F\n0x9161\t0x758E\n0x9162\t0x790E\n0x9163\t0x7956\n0x9164\t0x79DF\n0x9165\t0x7C97\n0x9166\t0x7D20\n0x9167\t0x7D44\n0x9168\t0x8607\n0x9169\t0x8A34\n0x916A\t0x963B\n0x916B\t0x9061\n0x916C\t0x9F20\n0x916D\t0x50E7\n0x916E\t0x5275\n0x916F\t0x53CC\n0x9170\t0x53E2\n0x9171\t0x5009\n0x9172\t0x55AA\n0x9173\t0x58EE\n0x9174\t0x594F\n0x9175\t0x723D\n0x9176\t0x5B8B\n0x9177\t0x5C64\n0x9178\t0x531D\n0x9179\t0x60E3\n0x917A\t0x60F3\n0x917B\t0x635C\n0x917C\t0x6383\n0x917D\t0x633F\n0x917E\t0x63BB\n0x9180\t0x64CD\n0x9181\t0x65E9\n0x9182\t0x66F9\n0x9183\t0x5DE3\n0x9184\t0x69CD\n0x9185\t0x69FD\n0x9186\t0x6F15\n0x9187\t0x71E5\n0x9188\t0x4E89\n0x9189\t0x75E9\n0x918A\t0x76F8\n0x918B\t0x7A93\n0x918C\t0x7CDF\n0x918D\t0x7DCF\n0x918E\t0x7D9C\n0x918F\t0x8061\n0x9190\t0x8349\n0x9191\t0x8358\n0x9192\t0x846C\n0x9193\t0x84BC\n0x9194\t0x85FB\n0x9195\t0x88C5\n0x9196\t0x8D70\n0x9197\t0x9001\n0x9198\t0x906D\n0x9199\t0x9397\n0x919A\t0x971C\n0x919B\t0x9A12\n0x919C\t0x50CF\n0x919D\t0x5897\n0x919E\t0x618E\n0x919F\t0x81D3\n0x91A0\t0x8535\n0x91A1\t0x8D08\n0x91A2\t0x9020\n0x91A3\t0x4FC3\n0x91A4\t0x5074\n0x91A5\t0x5247\n0x91A6\t0x5373\n0x91A7\t0x606F\n0x91A8\t0x6349\n0x91A9\t0x675F\n0x91AA\t0x6E2C\n0x91AB\t0x8DB3\n0x91AC\t0x901F\n0x91AD\t0x4FD7\n0x91AE\t0x5C5E\n0x91AF\t0x8CCA\n0x91B0\t0x65CF\n0x91B1\t0x7D9A\n0x91B2\t0x5352\n0x91B3\t0x8896\n0x91B4\t0x5176\n0x91B5\t0x63C3\n0x91B6\t0x5B58\n0x91B7\t0x5B6B\n0x91B8\t0x5C0A\n0x91B9\t0x640D\n0x91BA\t0x6751\n0x91BB\t0x905C\n0x91BC\t0x4ED6\n0x91BD\t0x591A\n0x91BE\t0x592A\n0x91BF\t0x6C70\n0x91C0\t0x8A51\n0x91C1\t0x553E\n0x91C2\t0x5815\n0x91C3\t0x59A5\n0x91C4\t0x60F0\n0x91C5\t0x6253\n0x91C6\t0x67C1\n0x91C7\t0x8235\n0x91C8\t0x6955\n0x91C9\t0x9640\n0x91CA\t0x99C4\n0x91CB\t0x9A28\n0x91CC\t0x4F53\n0x91CD\t0x5806\n0x91CE\t0x5BFE\n0x91CF\t0x8010\n0x91D0\t0x5CB1\n0x91D1\t0x5E2F\n0x91D2\t0x5F85\n0x91D3\t0x6020\n0x91D4\t0x614B\n0x91D5\t0x6234\n0x91D6\t0x66FF\n0x91D7\t0x6CF0\n0x91D8\t0x6EDE\n0x91D9\t0x80CE\n0x91DA\t0x817F\n0x91DB\t0x82D4\n0x91DC\t0x888B\n0x91DD\t0x8CB8\n0x91DE\t0x9000\n0x91DF\t0x902E\n0x91E0\t0x968A\n0x91E1\t0x9EDB\n0x91E2\t0x9BDB\n0x91E3\t0x4EE3\n0x91E4\t0x53F0\n0x91E5\t0x5927\n0x91E6\t0x7B2C\n0x91E7\t0x918D\n0x91E8\t0x984C\n0x91E9\t0x9DF9\n0x91EA\t0x6EDD\n0x91EB\t0x7027\n0x91EC\t0x5353\n0x91ED\t0x5544\n0x91EE\t0x5B85\n0x91EF\t0x6258\n0x91F0\t0x629E\n0x91F1\t0x62D3\n0x91F2\t0x6CA2\n0x91F3\t0x6FEF\n0x91F4\t0x7422\n0x91F5\t0x8A17\n0x91F6\t0x9438\n0x91F7\t0x6FC1\n0x91F8\t0x8AFE\n0x91F9\t0x8338\n0x91FA\t0x51E7\n0x91FB\t0x86F8\n0x91FC\t0x53EA\n0x9240\t0x53E9\n0x9241\t0x4F46\n0x9242\t0x9054\n0x9243\t0x8FB0\n0x9244\t0x596A\n0x9245\t0x8131\n0x9246\t0x5DFD\n0x9247\t0x7AEA\n0x9248\t0x8FBF\n0x9249\t0x68DA\n0x924A\t0x8C37\n0x924B\t0x72F8\n0x924C\t0x9C48\n0x924D\t0x6A3D\n0x924E\t0x8AB0\n0x924F\t0x4E39\n0x9250\t0x5358\n0x9251\t0x5606\n0x9252\t0x5766\n0x9253\t0x62C5\n0x9254\t0x63A2\n0x9255\t0x65E6\n0x9256\t0x6B4E\n0x9257\t0x6DE1\n0x9258\t0x6E5B\n0x9259\t0x70AD\n0x925A\t0x77ED\n0x925B\t0x7AEF\n0x925C\t0x7BAA\n0x925D\t0x7DBB\n0x925E\t0x803D\n0x925F\t0x80C6\n0x9260\t0x86CB\n0x9261\t0x8A95\n0x9262\t0x935B\n0x9263\t0x56E3\n0x9264\t0x58C7\n0x9265\t0x5F3E\n0x9266\t0x65AD\n0x9267\t0x6696\n0x9268\t0x6A80\n0x9269\t0x6BB5\n0x926A\t0x7537\n0x926B\t0x8AC7\n0x926C\t0x5024\n0x926D\t0x77E5\n0x926E\t0x5730\n0x926F\t0x5F1B\n0x9270\t0x6065\n0x9271\t0x667A\n0x9272\t0x6C60\n0x9273\t0x75F4\n0x9274\t0x7A1A\n0x9275\t0x7F6E\n0x9276\t0x81F4\n0x9277\t0x8718\n0x9278\t0x9045\n0x9279\t0x99B3\n0x927A\t0x7BC9\n0x927B\t0x755C\n0x927C\t0x7AF9\n0x927D\t0x7B51\n0x927E\t0x84C4\n0x9280\t0x9010\n0x9281\t0x79E9\n0x9282\t0x7A92\n0x9283\t0x8336\n0x9284\t0x5AE1\n0x9285\t0x7740\n0x9286\t0x4E2D\n0x9287\t0x4EF2\n0x9288\t0x5B99\n0x9289\t0x5FE0\n0x928A\t0x62BD\n0x928B\t0x663C\n0x928C\t0x67F1\n0x928D\t0x6CE8\n0x928E\t0x866B\n0x928F\t0x8877\n0x9290\t0x8A3B\n0x9291\t0x914E\n0x9292\t0x92F3\n0x9293\t0x99D0\n0x9294\t0x6A17\n0x9295\t0x7026\n0x9296\t0x732A\n0x9297\t0x82E7\n0x9298\t0x8457\n0x9299\t0x8CAF\n0x929A\t0x4E01\n0x929B\t0x5146\n0x929C\t0x51CB\n0x929D\t0x558B\n0x929E\t0x5BF5\n0x929F\t0x5E16\n0x92A0\t0x5E33\n0x92A1\t0x5E81\n0x92A2\t0x5F14\n0x92A3\t0x5F35\n0x92A4\t0x5F6B\n0x92A5\t0x5FB4\n0x92A6\t0x61F2\n0x92A7\t0x6311\n0x92A8\t0x66A2\n0x92A9\t0x671D\n0x92AA\t0x6F6E\n0x92AB\t0x7252\n0x92AC\t0x753A\n0x92AD\t0x773A\n0x92AE\t0x8074\n0x92AF\t0x8139\n0x92B0\t0x8178\n0x92B1\t0x8776\n0x92B2\t0x8ABF\n0x92B3\t0x8ADC\n0x92B4\t0x8D85\n0x92B5\t0x8DF3\n0x92B6\t0x929A\n0x92B7\t0x9577\n0x92B8\t0x9802\n0x92B9\t0x9CE5\n0x92BA\t0x52C5\n0x92BB\t0x6357\n0x92BC\t0x76F4\n0x92BD\t0x6715\n0x92BE\t0x6C88\n0x92BF\t0x73CD\n0x92C0\t0x8CC3\n0x92C1\t0x93AE\n0x92C2\t0x9673\n0x92C3\t0x6D25\n0x92C4\t0x589C\n0x92C5\t0x690E\n0x92C6\t0x69CC\n0x92C7\t0x8FFD\n0x92C8\t0x939A\n0x92C9\t0x75DB\n0x92CA\t0x901A\n0x92CB\t0x585A\n0x92CC\t0x6802\n0x92CD\t0x63B4\n0x92CE\t0x69FB\n0x92CF\t0x4F43\n0x92D0\t0x6F2C\n0x92D1\t0x67D8\n0x92D2\t0x8FBB\n0x92D3\t0x8526\n0x92D4\t0x7DB4\n0x92D5\t0x9354\n0x92D6\t0x693F\n0x92D7\t0x6F70\n0x92D8\t0x576A\n0x92D9\t0x58F7\n0x92DA\t0x5B2C\n0x92DB\t0x7D2C\n0x92DC\t0x722A\n0x92DD\t0x540A\n0x92DE\t0x91E3\n0x92DF\t0x9DB4\n0x92E0\t0x4EAD\n0x92E1\t0x4F4E\n0x92E2\t0x505C\n0x92E3\t0x5075\n0x92E4\t0x5243\n0x92E5\t0x8C9E\n0x92E6\t0x5448\n0x92E7\t0x5824\n0x92E8\t0x5B9A\n0x92E9\t0x5E1D\n0x92EA\t0x5E95\n0x92EB\t0x5EAD\n0x92EC\t0x5EF7\n0x92ED\t0x5F1F\n0x92EE\t0x608C\n0x92EF\t0x62B5\n0x92F0\t0x633A\n0x92F1\t0x63D0\n0x92F2\t0x68AF\n0x92F3\t0x6C40\n0x92F4\t0x7887\n0x92F5\t0x798E\n0x92F6\t0x7A0B\n0x92F7\t0x7DE0\n0x92F8\t0x8247\n0x92F9\t0x8A02\n0x92FA\t0x8AE6\n0x92FB\t0x8E44\n0x92FC\t0x9013\n0x9340\t0x90B8\n0x9341\t0x912D\n0x9342\t0x91D8\n0x9343\t0x9F0E\n0x9344\t0x6CE5\n0x9345\t0x6458\n0x9346\t0x64E2\n0x9347\t0x6575\n0x9348\t0x6EF4\n0x9349\t0x7684\n0x934A\t0x7B1B\n0x934B\t0x9069\n0x934C\t0x93D1\n0x934D\t0x6EBA\n0x934E\t0x54F2\n0x934F\t0x5FB9\n0x9350\t0x64A4\n0x9351\t0x8F4D\n0x9352\t0x8FED\n0x9353\t0x9244\n0x9354\t0x5178\n0x9355\t0x586B\n0x9356\t0x5929\n0x9357\t0x5C55\n0x9358\t0x5E97\n0x9359\t0x6DFB\n0x935A\t0x7E8F\n0x935B\t0x751C\n0x935C\t0x8CBC\n0x935D\t0x8EE2\n0x935E\t0x985B\n0x935F\t0x70B9\n0x9360\t0x4F1D\n0x9361\t0x6BBF\n0x9362\t0x6FB1\n0x9363\t0x7530\n0x9364\t0x96FB\n0x9365\t0x514E\n0x9366\t0x5410\n0x9367\t0x5835\n0x9368\t0x5857\n0x9369\t0x59AC\n0x936A\t0x5C60\n0x936B\t0x5F92\n0x936C\t0x6597\n0x936D\t0x675C\n0x936E\t0x6E21\n0x936F\t0x767B\n0x9370\t0x83DF\n0x9371\t0x8CED\n0x9372\t0x9014\n0x9373\t0x90FD\n0x9374\t0x934D\n0x9375\t0x7825\n0x9376\t0x783A\n0x9377\t0x52AA\n0x9378\t0x5EA6\n0x9379\t0x571F\n0x937A\t0x5974\n0x937B\t0x6012\n0x937C\t0x5012\n0x937D\t0x515A\n0x937E\t0x51AC\n0x9380\t0x51CD\n0x9381\t0x5200\n0x9382\t0x5510\n0x9383\t0x5854\n0x9384\t0x5858\n0x9385\t0x5957\n0x9386\t0x5B95\n0x9387\t0x5CF6\n0x9388\t0x5D8B\n0x9389\t0x60BC\n0x938A\t0x6295\n0x938B\t0x642D\n0x938C\t0x6771\n0x938D\t0x6843\n0x938E\t0x68BC\n0x938F\t0x68DF\n0x9390\t0x76D7\n0x9391\t0x6DD8\n0x9392\t0x6E6F\n0x9393\t0x6D9B\n0x9394\t0x706F\n0x9395\t0x71C8\n0x9396\t0x5F53\n0x9397\t0x75D8\n0x9398\t0x7977\n0x9399\t0x7B49\n0x939A\t0x7B54\n0x939B\t0x7B52\n0x939C\t0x7CD6\n0x939D\t0x7D71\n0x939E\t0x5230\n0x939F\t0x8463\n0x93A0\t0x8569\n0x93A1\t0x85E4\n0x93A2\t0x8A0E\n0x93A3\t0x8B04\n0x93A4\t0x8C46\n0x93A5\t0x8E0F\n0x93A6\t0x9003\n0x93A7\t0x900F\n0x93A8\t0x9419\n0x93A9\t0x9676\n0x93AA\t0x982D\n0x93AB\t0x9A30\n0x93AC\t0x95D8\n0x93AD\t0x50CD\n0x93AE\t0x52D5\n0x93AF\t0x540C\n0x93B0\t0x5802\n0x93B1\t0x5C0E\n0x93B2\t0x61A7\n0x93B3\t0x649E\n0x93B4\t0x6D1E\n0x93B5\t0x77B3\n0x93B6\t0x7AE5\n0x93B7\t0x80F4\n0x93B8\t0x8404\n0x93B9\t0x9053\n0x93BA\t0x9285\n0x93BB\t0x5CE0\n0x93BC\t0x9D07\n0x93BD\t0x533F\n0x93BE\t0x5F97\n0x93BF\t0x5FB3\n0x93C0\t0x6D9C\n0x93C1\t0x7279\n0x93C2\t0x7763\n0x93C3\t0x79BF\n0x93C4\t0x7BE4\n0x93C5\t0x6BD2\n0x93C6\t0x72EC\n0x93C7\t0x8AAD\n0x93C8\t0x6803\n0x93C9\t0x6A61\n0x93CA\t0x51F8\n0x93CB\t0x7A81\n0x93CC\t0x6934\n0x93CD\t0x5C4A\n0x93CE\t0x9CF6\n0x93CF\t0x82EB\n0x93D0\t0x5BC5\n0x93D1\t0x9149\n0x93D2\t0x701E\n0x93D3\t0x5678\n0x93D4\t0x5C6F\n0x93D5\t0x60C7\n0x93D6\t0x6566\n0x93D7\t0x6C8C\n0x93D8\t0x8C5A\n0x93D9\t0x9041\n0x93DA\t0x9813\n0x93DB\t0x5451\n0x93DC\t0x66C7\n0x93DD\t0x920D\n0x93DE\t0x5948\n0x93DF\t0x90A3\n0x93E0\t0x5185\n0x93E1\t0x4E4D\n0x93E2\t0x51EA\n0x93E3\t0x8599\n0x93E4\t0x8B0E\n0x93E5\t0x7058\n0x93E6\t0x637A\n0x93E7\t0x934B\n0x93E8\t0x6962\n0x93E9\t0x99B4\n0x93EA\t0x7E04\n0x93EB\t0x7577\n0x93EC\t0x5357\n0x93ED\t0x6960\n0x93EE\t0x8EDF\n0x93EF\t0x96E3\n0x93F0\t0x6C5D\n0x93F1\t0x4E8C\n0x93F2\t0x5C3C\n0x93F3\t0x5F10\n0x93F4\t0x8FE9\n0x93F5\t0x5302\n0x93F6\t0x8CD1\n0x93F7\t0x8089\n0x93F8\t0x8679\n0x93F9\t0x5EFF\n0x93FA\t0x65E5\n0x93FB\t0x4E73\n0x93FC\t0x5165\n0x9440\t0x5982\n0x9441\t0x5C3F\n0x9442\t0x97EE\n0x9443\t0x4EFB\n0x9444\t0x598A\n0x9445\t0x5FCD\n0x9446\t0x8A8D\n0x9447\t0x6FE1\n0x9448\t0x79B0\n0x9449\t0x7962\n0x944A\t0x5BE7\n0x944B\t0x8471\n0x944C\t0x732B\n0x944D\t0x71B1\n0x944E\t0x5E74\n0x944F\t0x5FF5\n0x9450\t0x637B\n0x9451\t0x649A\n0x9452\t0x71C3\n0x9453\t0x7C98\n0x9454\t0x4E43\n0x9455\t0x5EFC\n0x9456\t0x4E4B\n0x9457\t0x57DC\n0x9458\t0x56A2\n0x9459\t0x60A9\n0x945A\t0x6FC3\n0x945B\t0x7D0D\n0x945C\t0x80FD\n0x945D\t0x8133\n0x945E\t0x81BF\n0x945F\t0x8FB2\n0x9460\t0x8997\n0x9461\t0x86A4\n0x9462\t0x5DF4\n0x9463\t0x628A\n0x9464\t0x64AD\n0x9465\t0x8987\n0x9466\t0x6777\n0x9467\t0x6CE2\n0x9468\t0x6D3E\n0x9469\t0x7436\n0x946A\t0x7834\n0x946B\t0x5A46\n0x946C\t0x7F75\n0x946D\t0x82AD\n0x946E\t0x99AC\n0x946F\t0x4FF3\n0x9470\t0x5EC3\n0x9471\t0x62DD\n0x9472\t0x6392\n0x9473\t0x6557\n0x9474\t0x676F\n0x9475\t0x76C3\n0x9476\t0x724C\n0x9477\t0x80CC\n0x9478\t0x80BA\n0x9479\t0x8F29\n0x947A\t0x914D\n0x947B\t0x500D\n0x947C\t0x57F9\n0x947D\t0x5A92\n0x947E\t0x6885\n0x9480\t0x6973\n0x9481\t0x7164\n0x9482\t0x72FD\n0x9483\t0x8CB7\n0x9484\t0x58F2\n0x9485\t0x8CE0\n0x9486\t0x966A\n0x9487\t0x9019\n0x9488\t0x877F\n0x9489\t0x79E4\n0x948A\t0x77E7\n0x948B\t0x8429\n0x948C\t0x4F2F\n0x948D\t0x5265\n0x948E\t0x535A\n0x948F\t0x62CD\n0x9490\t0x67CF\n0x9491\t0x6CCA\n0x9492\t0x767D\n0x9493\t0x7B94\n0x9494\t0x7C95\n0x9495\t0x8236\n0x9496\t0x8584\n0x9497\t0x8FEB\n0x9498\t0x66DD\n0x9499\t0x6F20\n0x949A\t0x7206\n0x949B\t0x7E1B\n0x949C\t0x83AB\n0x949D\t0x99C1\n0x949E\t0x9EA6\n0x949F\t0x51FD\n0x94A0\t0x7BB1\n0x94A1\t0x7872\n0x94A2\t0x7BB8\n0x94A3\t0x8087\n0x94A4\t0x7B48\n0x94A5\t0x6AE8\n0x94A6\t0x5E61\n0x94A7\t0x808C\n0x94A8\t0x7551\n0x94A9\t0x7560\n0x94AA\t0x516B\n0x94AB\t0x9262\n0x94AC\t0x6E8C\n0x94AD\t0x767A\n0x94AE\t0x9197\n0x94AF\t0x9AEA\n0x94B0\t0x4F10\n0x94B1\t0x7F70\n0x94B2\t0x629C\n0x94B3\t0x7B4F\n0x94B4\t0x95A5\n0x94B5\t0x9CE9\n0x94B6\t0x567A\n0x94B7\t0x5859\n0x94B8\t0x86E4\n0x94B9\t0x96BC\n0x94BA\t0x4F34\n0x94BB\t0x5224\n0x94BC\t0x534A\n0x94BD\t0x53CD\n0x94BE\t0x53DB\n0x94BF\t0x5E06\n0x94C0\t0x642C\n0x94C1\t0x6591\n0x94C2\t0x677F\n0x94C3\t0x6C3E\n0x94C4\t0x6C4E\n0x94C5\t0x7248\n0x94C6\t0x72AF\n0x94C7\t0x73ED\n0x94C8\t0x7554\n0x94C9\t0x7E41\n0x94CA\t0x822C\n0x94CB\t0x85E9\n0x94CC\t0x8CA9\n0x94CD\t0x7BC4\n0x94CE\t0x91C6\n0x94CF\t0x7169\n0x94D0\t0x9812\n0x94D1\t0x98EF\n0x94D2\t0x633D\n0x94D3\t0x6669\n0x94D4\t0x756A\n0x94D5\t0x76E4\n0x94D6\t0x78D0\n0x94D7\t0x8543\n0x94D8\t0x86EE\n0x94D9\t0x532A\n0x94DA\t0x5351\n0x94DB\t0x5426\n0x94DC\t0x5983\n0x94DD\t0x5E87\n0x94DE\t0x5F7C\n0x94DF\t0x60B2\n0x94E0\t0x6249\n0x94E1\t0x6279\n0x94E2\t0x62AB\n0x94E3\t0x6590\n0x94E4\t0x6BD4\n0x94E5\t0x6CCC\n0x94E6\t0x75B2\n0x94E7\t0x76AE\n0x94E8\t0x7891\n0x94E9\t0x79D8\n0x94EA\t0x7DCB\n0x94EB\t0x7F77\n0x94EC\t0x80A5\n0x94ED\t0x88AB\n0x94EE\t0x8AB9\n0x94EF\t0x8CBB\n0x94F0\t0x907F\n0x94F1\t0x975E\n0x94F2\t0x98DB\n0x94F3\t0x6A0B\n0x94F4\t0x7C38\n0x94F5\t0x5099\n0x94F6\t0x5C3E\n0x94F7\t0x5FAE\n0x94F8\t0x6787\n0x94F9\t0x6BD8\n0x94FA\t0x7435\n0x94FB\t0x7709\n0x94FC\t0x7F8E\n0x9540\t0x9F3B\n0x9541\t0x67CA\n0x9542\t0x7A17\n0x9543\t0x5339\n0x9544\t0x758B\n0x9545\t0x9AED\n0x9546\t0x5F66\n0x9547\t0x819D\n0x9548\t0x83F1\n0x9549\t0x8098\n0x954A\t0x5F3C\n0x954B\t0x5FC5\n0x954C\t0x7562\n0x954D\t0x7B46\n0x954E\t0x903C\n0x954F\t0x6867\n0x9550\t0x59EB\n0x9551\t0x5A9B\n0x9552\t0x7D10\n0x9553\t0x767E\n0x9554\t0x8B2C\n0x9555\t0x4FF5\n0x9556\t0x5F6A\n0x9557\t0x6A19\n0x9558\t0x6C37\n0x9559\t0x6F02\n0x955A\t0x74E2\n0x955B\t0x7968\n0x955C\t0x8868\n0x955D\t0x8A55\n0x955E\t0x8C79\n0x955F\t0x5EDF\n0x9560\t0x63CF\n0x9561\t0x75C5\n0x9562\t0x79D2\n0x9563\t0x82D7\n0x9564\t0x9328\n0x9565\t0x92F2\n0x9566\t0x849C\n0x9567\t0x86ED\n0x9568\t0x9C2D\n0x9569\t0x54C1\n0x956A\t0x5F6C\n0x956B\t0x658C\n0x956C\t0x6D5C\n0x956D\t0x7015\n0x956E\t0x8CA7\n0x956F\t0x8CD3\n0x9570\t0x983B\n0x9571\t0x654F\n0x9572\t0x74F6\n0x9573\t0x4E0D\n0x9574\t0x4ED8\n0x9575\t0x57E0\n0x9576\t0x592B\n0x9577\t0x5A66\n0x9578\t0x5BCC\n0x9579\t0x51A8\n0x957A\t0x5E03\n0x957B\t0x5E9C\n0x957C\t0x6016\n0x957D\t0x6276\n0x957E\t0x6577\n0x9580\t0x65A7\n0x9581\t0x666E\n0x9582\t0x6D6E\n0x9583\t0x7236\n0x9584\t0x7B26\n0x9585\t0x8150\n0x9586\t0x819A\n0x9587\t0x8299\n0x9588\t0x8B5C\n0x9589\t0x8CA0\n0x958A\t0x8CE6\n0x958B\t0x8D74\n0x958C\t0x961C\n0x958D\t0x9644\n0x958E\t0x4FAE\n0x958F\t0x64AB\n0x9590\t0x6B66\n0x9591\t0x821E\n0x9592\t0x8461\n0x9593\t0x856A\n0x9594\t0x90E8\n0x9595\t0x5C01\n0x9596\t0x6953\n0x9597\t0x98A8\n0x9598\t0x847A\n0x9599\t0x8557\n0x959A\t0x4F0F\n0x959B\t0x526F\n0x959C\t0x5FA9\n0x959D\t0x5E45\n0x959E\t0x670D\n0x959F\t0x798F\n0x95A0\t0x8179\n0x95A1\t0x8907\n0x95A2\t0x8986\n0x95A3\t0x6DF5\n0x95A4\t0x5F17\n0x95A5\t0x6255\n0x95A6\t0x6CB8\n0x95A7\t0x4ECF\n0x95A8\t0x7269\n0x95A9\t0x9B92\n0x95AA\t0x5206\n0x95AB\t0x543B\n0x95AC\t0x5674\n0x95AD\t0x58B3\n0x95AE\t0x61A4\n0x95AF\t0x626E\n0x95B0\t0x711A\n0x95B1\t0x596E\n0x95B2\t0x7C89\n0x95B3\t0x7CDE\n0x95B4\t0x7D1B\n0x95B5\t0x96F0\n0x95B6\t0x6587\n0x95B7\t0x805E\n0x95B8\t0x4E19\n0x95B9\t0x4F75\n0x95BA\t0x5175\n0x95BB\t0x5840\n0x95BC\t0x5E63\n0x95BD\t0x5E73\n0x95BE\t0x5F0A\n0x95BF\t0x67C4\n0x95C0\t0x4E26\n0x95C1\t0x853D\n0x95C2\t0x9589\n0x95C3\t0x965B\n0x95C4\t0x7C73\n0x95C5\t0x9801\n0x95C6\t0x50FB\n0x95C7\t0x58C1\n0x95C8\t0x7656\n0x95C9\t0x78A7\n0x95CA\t0x5225\n0x95CB\t0x77A5\n0x95CC\t0x8511\n0x95CD\t0x7B86\n0x95CE\t0x504F\n0x95CF\t0x5909\n0x95D0\t0x7247\n0x95D1\t0x7BC7\n0x95D2\t0x7DE8\n0x95D3\t0x8FBA\n0x95D4\t0x8FD4\n0x95D5\t0x904D\n0x95D6\t0x4FBF\n0x95D7\t0x52C9\n0x95D8\t0x5A29\n0x95D9\t0x5F01\n0x95DA\t0x97AD\n0x95DB\t0x4FDD\n0x95DC\t0x8217\n0x95DD\t0x92EA\n0x95DE\t0x5703\n0x95DF\t0x6355\n0x95E0\t0x6B69\n0x95E1\t0x752B\n0x95E2\t0x88DC\n0x95E3\t0x8F14\n0x95E4\t0x7A42\n0x95E5\t0x52DF\n0x95E6\t0x5893\n0x95E7\t0x6155\n0x95E8\t0x620A\n0x95E9\t0x66AE\n0x95EA\t0x6BCD\n0x95EB\t0x7C3F\n0x95EC\t0x83E9\n0x95ED\t0x5023\n0x95EE\t0x4FF8\n0x95EF\t0x5305\n0x95F0\t0x5446\n0x95F1\t0x5831\n0x95F2\t0x5949\n0x95F3\t0x5B9D\n0x95F4\t0x5CF0\n0x95F5\t0x5CEF\n0x95F6\t0x5D29\n0x95F7\t0x5E96\n0x95F8\t0x62B1\n0x95F9\t0x6367\n0x95FA\t0x653E\n0x95FB\t0x65B9\n0x95FC\t0x670B\n0x9640\t0x6CD5\n0x9641\t0x6CE1\n0x9642\t0x70F9\n0x9643\t0x7832\n0x9644\t0x7E2B\n0x9645\t0x80DE\n0x9646\t0x82B3\n0x9647\t0x840C\n0x9648\t0x84EC\n0x9649\t0x8702\n0x964A\t0x8912\n0x964B\t0x8A2A\n0x964C\t0x8C4A\n0x964D\t0x90A6\n0x964E\t0x92D2\n0x964F\t0x98FD\n0x9650\t0x9CF3\n0x9651\t0x9D6C\n0x9652\t0x4E4F\n0x9653\t0x4EA1\n0x9654\t0x508D\n0x9655\t0x5256\n0x9656\t0x574A\n0x9657\t0x59A8\n0x9658\t0x5E3D\n0x9659\t0x5FD8\n0x965A\t0x5FD9\n0x965B\t0x623F\n0x965C\t0x66B4\n0x965D\t0x671B\n0x965E\t0x67D0\n0x965F\t0x68D2\n0x9660\t0x5192\n0x9661\t0x7D21\n0x9662\t0x80AA\n0x9663\t0x81A8\n0x9664\t0x8B00\n0x9665\t0x8C8C\n0x9666\t0x8CBF\n0x9667\t0x927E\n0x9668\t0x9632\n0x9669\t0x5420\n0x966A\t0x982C\n0x966B\t0x5317\n0x966C\t0x50D5\n0x966D\t0x535C\n0x966E\t0x58A8\n0x966F\t0x64B2\n0x9670\t0x6734\n0x9671\t0x7267\n0x9672\t0x7766\n0x9673\t0x7A46\n0x9674\t0x91E6\n0x9675\t0x52C3\n0x9676\t0x6CA1\n0x9677\t0x6B86\n0x9678\t0x5800\n0x9679\t0x5E4C\n0x967A\t0x5954\n0x967B\t0x672C\n0x967C\t0x7FFB\n0x967D\t0x51E1\n0x967E\t0x76C6\n0x9680\t0x6469\n0x9681\t0x78E8\n0x9682\t0x9B54\n0x9683\t0x9EBB\n0x9684\t0x57CB\n0x9685\t0x59B9\n0x9686\t0x6627\n0x9687\t0x679A\n0x9688\t0x6BCE\n0x9689\t0x54E9\n0x968A\t0x69D9\n0x968B\t0x5E55\n0x968C\t0x819C\n0x968D\t0x6795\n0x968E\t0x9BAA\n0x968F\t0x67FE\n0x9690\t0x9C52\n0x9691\t0x685D\n0x9692\t0x4EA6\n0x9693\t0x4FE3\n0x9694\t0x53C8\n0x9695\t0x62B9\n0x9696\t0x672B\n0x9697\t0x6CAB\n0x9698\t0x8FC4\n0x9699\t0x4FAD\n0x969A\t0x7E6D\n0x969B\t0x9EBF\n0x969C\t0x4E07\n0x969D\t0x6162\n0x969E\t0x6E80\n0x969F\t0x6F2B\n0x96A0\t0x8513\n0x96A1\t0x5473\n0x96A2\t0x672A\n0x96A3\t0x9B45\n0x96A4\t0x5DF3\n0x96A5\t0x7B95\n0x96A6\t0x5CAC\n0x96A7\t0x5BC6\n0x96A8\t0x871C\n0x96A9\t0x6E4A\n0x96AA\t0x84D1\n0x96AB\t0x7A14\n0x96AC\t0x8108\n0x96AD\t0x5999\n0x96AE\t0x7C8D\n0x96AF\t0x6C11\n0x96B0\t0x7720\n0x96B1\t0x52D9\n0x96B2\t0x5922\n0x96B3\t0x7121\n0x96B4\t0x725F\n0x96B5\t0x77DB\n0x96B6\t0x9727\n0x96B7\t0x9D61\n0x96B8\t0x690B\n0x96B9\t0x5A7F\n0x96BA\t0x5A18\n0x96BB\t0x51A5\n0x96BC\t0x540D\n0x96BD\t0x547D\n0x96BE\t0x660E\n0x96BF\t0x76DF\n0x96C0\t0x8FF7\n0x96C1\t0x9298\n0x96C2\t0x9CF4\n0x96C3\t0x59EA\n0x96C4\t0x725D\n0x96C5\t0x6EC5\n0x96C6\t0x514D\n0x96C7\t0x68C9\n0x96C8\t0x7DBF\n0x96C9\t0x7DEC\n0x96CA\t0x9762\n0x96CB\t0x9EBA\n0x96CC\t0x6478\n0x96CD\t0x6A21\n0x96CE\t0x8302\n0x96CF\t0x5984\n0x96D0\t0x5B5F\n0x96D1\t0x6BDB\n0x96D2\t0x731B\n0x96D3\t0x76F2\n0x96D4\t0x7DB2\n0x96D5\t0x8017\n0x96D6\t0x8499\n0x96D7\t0x5132\n0x96D8\t0x6728\n0x96D9\t0x9ED9\n0x96DA\t0x76EE\n0x96DB\t0x6762\n0x96DC\t0x52FF\n0x96DD\t0x9905\n0x96DE\t0x5C24\n0x96DF\t0x623B\n0x96E0\t0x7C7E\n0x96E1\t0x8CB0\n0x96E2\t0x554F\n0x96E3\t0x60B6\n0x96E4\t0x7D0B\n0x96E5\t0x9580\n0x96E6\t0x5301\n0x96E7\t0x4E5F\n0x96E8\t0x51B6\n0x96E9\t0x591C\n0x96EA\t0x723A\n0x96EB\t0x8036\n0x96EC\t0x91CE\n0x96ED\t0x5F25\n0x96EE\t0x77E2\n0x96EF\t0x5384\n0x96F0\t0x5F79\n0x96F1\t0x7D04\n0x96F2\t0x85AC\n0x96F3\t0x8A33\n0x96F4\t0x8E8D\n0x96F5\t0x9756\n0x96F6\t0x67F3\n0x96F7\t0x85AE\n0x96F8\t0x9453\n0x96F9\t0x6109\n0x96FA\t0x6108\n0x96FB\t0x6CB9\n0x96FC\t0x7652\n0x9740\t0x8AED\n0x9741\t0x8F38\n0x9742\t0x552F\n0x9743\t0x4F51\n0x9744\t0x512A\n0x9745\t0x52C7\n0x9746\t0x53CB\n0x9747\t0x5BA5\n0x9748\t0x5E7D\n0x9749\t0x60A0\n0x974A\t0x6182\n0x974B\t0x63D6\n0x974C\t0x6709\n0x974D\t0x67DA\n0x974E\t0x6E67\n0x974F\t0x6D8C\n0x9750\t0x7336\n0x9751\t0x7337\n0x9752\t0x7531\n0x9753\t0x7950\n0x9754\t0x88D5\n0x9755\t0x8A98\n0x9756\t0x904A\n0x9757\t0x9091\n0x9758\t0x90F5\n0x9759\t0x96C4\n0x975A\t0x878D\n0x975B\t0x5915\n0x975C\t0x4E88\n0x975D\t0x4F59\n0x975E\t0x4E0E\n0x975F\t0x8A89\n0x9760\t0x8F3F\n0x9761\t0x9810\n0x9762\t0x50AD\n0x9763\t0x5E7C\n0x9764\t0x5996\n0x9765\t0x5BB9\n0x9766\t0x5EB8\n0x9767\t0x63DA\n0x9768\t0x63FA\n0x9769\t0x64C1\n0x976A\t0x66DC\n0x976B\t0x694A\n0x976C\t0x69D8\n0x976D\t0x6D0B\n0x976E\t0x6EB6\n0x976F\t0x7194\n0x9770\t0x7528\n0x9771\t0x7AAF\n0x9772\t0x7F8A\n0x9773\t0x8000\n0x9774\t0x8449\n0x9775\t0x84C9\n0x9776\t0x8981\n0x9777\t0x8B21\n0x9778\t0x8E0A\n0x9779\t0x9065\n0x977A\t0x967D\n0x977B\t0x990A\n0x977C\t0x617E\n0x977D\t0x6291\n0x977E\t0x6B32\n0x9780\t0x6C83\n0x9781\t0x6D74\n0x9782\t0x7FCC\n0x9783\t0x7FFC\n0x9784\t0x6DC0\n0x9785\t0x7F85\n0x9786\t0x87BA\n0x9787\t0x88F8\n0x9788\t0x6765\n0x9789\t0x83B1\n0x978A\t0x983C\n0x978B\t0x96F7\n0x978C\t0x6D1B\n0x978D\t0x7D61\n0x978E\t0x843D\n0x978F\t0x916A\n0x9790\t0x4E71\n0x9791\t0x5375\n0x9792\t0x5D50\n0x9793\t0x6B04\n0x9794\t0x6FEB\n0x9795\t0x85CD\n0x9796\t0x862D\n0x9797\t0x89A7\n0x9798\t0x5229\n0x9799\t0x540F\n0x979A\t0x5C65\n0x979B\t0x674E\n0x979C\t0x68A8\n0x979D\t0x7406\n0x979E\t0x7483\n0x979F\t0x75E2\n0x97A0\t0x88CF\n0x97A1\t0x88E1\n0x97A2\t0x91CC\n0x97A3\t0x96E2\n0x97A4\t0x9678\n0x97A5\t0x5F8B\n0x97A6\t0x7387\n0x97A7\t0x7ACB\n0x97A8\t0x844E\n0x97A9\t0x63A0\n0x97AA\t0x7565\n0x97AB\t0x5289\n0x97AC\t0x6D41\n0x97AD\t0x6E9C\n0x97AE\t0x7409\n0x97AF\t0x7559\n0x97B0\t0x786B\n0x97B1\t0x7C92\n0x97B2\t0x9686\n0x97B3\t0x7ADC\n0x97B4\t0x9F8D\n0x97B5\t0x4FB6\n0x97B6\t0x616E\n0x97B7\t0x65C5\n0x97B8\t0x865C\n0x97B9\t0x4E86\n0x97BA\t0x4EAE\n0x97BB\t0x50DA\n0x97BC\t0x4E21\n0x97BD\t0x51CC\n0x97BE\t0x5BEE\n0x97BF\t0x6599\n0x97C0\t0x6881\n0x97C1\t0x6DBC\n0x97C2\t0x731F\n0x97C3\t0x7642\n0x97C4\t0x77AD\n0x97C5\t0x7A1C\n0x97C6\t0x7CE7\n0x97C7\t0x826F\n0x97C8\t0x8AD2\n0x97C9\t0x907C\n0x97CA\t0x91CF\n0x97CB\t0x9675\n0x97CC\t0x9818\n0x97CD\t0x529B\n0x97CE\t0x7DD1\n0x97CF\t0x502B\n0x97D0\t0x5398\n0x97D1\t0x6797\n0x97D2\t0x6DCB\n0x97D3\t0x71D0\n0x97D4\t0x7433\n0x97D5\t0x81E8\n0x97D6\t0x8F2A\n0x97D7\t0x96A3\n0x97D8\t0x9C57\n0x97D9\t0x9E9F\n0x97DA\t0x7460\n0x97DB\t0x5841\n0x97DC\t0x6D99\n0x97DD\t0x7D2F\n0x97DE\t0x985E\n0x97DF\t0x4EE4\n0x97E0\t0x4F36\n0x97E1\t0x4F8B\n0x97E2\t0x51B7\n0x97E3\t0x52B1\n0x97E4\t0x5DBA\n0x97E5\t0x601C\n0x97E6\t0x73B2\n0x97E7\t0x793C\n0x97E8\t0x82D3\n0x97E9\t0x9234\n0x97EA\t0x96B7\n0x97EB\t0x96F6\n0x97EC\t0x970A\n0x97ED\t0x9E97\n0x97EE\t0x9F62\n0x97EF\t0x66A6\n0x97F0\t0x6B74\n0x97F1\t0x5217\n0x97F2\t0x52A3\n0x97F3\t0x70C8\n0x97F4\t0x88C2\n0x97F5\t0x5EC9\n0x97F6\t0x604B\n0x97F7\t0x6190\n0x97F8\t0x6F23\n0x97F9\t0x7149\n0x97FA\t0x7C3E\n0x97FB\t0x7DF4\n0x97FC\t0x806F\n0x9840\t0x84EE\n0x9841\t0x9023\n0x9842\t0x932C\n0x9843\t0x5442\n0x9844\t0x9B6F\n0x9845\t0x6AD3\n0x9846\t0x7089\n0x9847\t0x8CC2\n0x9848\t0x8DEF\n0x9849\t0x9732\n0x984A\t0x52B4\n0x984B\t0x5A41\n0x984C\t0x5ECA\n0x984D\t0x5F04\n0x984E\t0x6717\n0x984F\t0x697C\n0x9850\t0x6994\n0x9851\t0x6D6A\n0x9852\t0x6F0F\n0x9853\t0x7262\n0x9854\t0x72FC\n0x9855\t0x7BED\n0x9856\t0x8001\n0x9857\t0x807E\n0x9858\t0x874B\n0x9859\t0x90CE\n0x985A\t0x516D\n0x985B\t0x9E93\n0x985C\t0x7984\n0x985D\t0x808B\n0x985E\t0x9332\n0x985F\t0x8AD6\n0x9860\t0x502D\n0x9861\t0x548C\n0x9862\t0x8A71\n0x9863\t0x6B6A\n0x9864\t0x8CC4\n0x9865\t0x8107\n0x9866\t0x60D1\n0x9867\t0x67A0\n0x9868\t0x9DF2\n0x9869\t0x4E99\n0x986A\t0x4E98\n0x986B\t0x9C10\n0x986C\t0x8A6B\n0x986D\t0x85C1\n0x986E\t0x8568\n0x986F\t0x6900\n0x9870\t0x6E7E\n0x9871\t0x7897\n0x9872\t0x8155\n0x989F\t0x5F0C\n0x98A0\t0x4E10\n0x98A1\t0x4E15\n0x98A2\t0x4E2A\n0x98A3\t0x4E31\n0x98A4\t0x4E36\n0x98A5\t0x4E3C\n0x98A6\t0x4E3F\n0x98A7\t0x4E42\n0x98A8\t0x4E56\n0x98A9\t0x4E58\n0x98AA\t0x4E82\n0x98AB\t0x4E85\n0x98AC\t0x8C6B\n0x98AD\t0x4E8A\n0x98AE\t0x8212\n0x98AF\t0x5F0D\n0x98B0\t0x4E8E\n0x98B1\t0x4E9E\n0x98B2\t0x4E9F\n0x98B3\t0x4EA0\n0x98B4\t0x4EA2\n0x98B5\t0x4EB0\n0x98B6\t0x4EB3\n0x98B7\t0x4EB6\n0x98B8\t0x4ECE\n0x98B9\t0x4ECD\n0x98BA\t0x4EC4\n0x98BB\t0x4EC6\n0x98BC\t0x4EC2\n0x98BD\t0x4ED7\n0x98BE\t0x4EDE\n0x98BF\t0x4EED\n0x98C0\t0x4EDF\n0x98C1\t0x4EF7\n0x98C2\t0x4F09\n0x98C3\t0x4F5A\n0x98C4\t0x4F30\n0x98C5\t0x4F5B\n0x98C6\t0x4F5D\n0x98C7\t0x4F57\n0x98C8\t0x4F47\n0x98C9\t0x4F76\n0x98CA\t0x4F88\n0x98CB\t0x4F8F\n0x98CC\t0x4F98\n0x98CD\t0x4F7B\n0x98CE\t0x4F69\n0x98CF\t0x4F70\n0x98D0\t0x4F91\n0x98D1\t0x4F6F\n0x98D2\t0x4F86\n0x98D3\t0x4F96\n0x98D4\t0x5118\n0x98D5\t0x4FD4\n0x98D6\t0x4FDF\n0x98D7\t0x4FCE\n0x98D8\t0x4FD8\n0x98D9\t0x4FDB\n0x98DA\t0x4FD1\n0x98DB\t0x4FDA\n0x98DC\t0x4FD0\n0x98DD\t0x4FE4\n0x98DE\t0x4FE5\n0x98DF\t0x501A\n0x98E0\t0x5028\n0x98E1\t0x5014\n0x98E2\t0x502A\n0x98E3\t0x5025\n0x98E4\t0x5005\n0x98E5\t0x4F1C\n0x98E6\t0x4FF6\n0x98E7\t0x5021\n0x98E8\t0x5029\n0x98E9\t0x502C\n0x98EA\t0x4FFE\n0x98EB\t0x4FEF\n0x98EC\t0x5011\n0x98ED\t0x5006\n0x98EE\t0x5043\n0x98EF\t0x5047\n0x98F0\t0x6703\n0x98F1\t0x5055\n0x98F2\t0x5050\n0x98F3\t0x5048\n0x98F4\t0x505A\n0x98F5\t0x5056\n0x98F6\t0x506C\n0x98F7\t0x5078\n0x98F8\t0x5080\n0x98F9\t0x509A\n0x98FA\t0x5085\n0x98FB\t0x50B4\n0x98FC\t0x50B2\n0x9940\t0x50C9\n0x9941\t0x50CA\n0x9942\t0x50B3\n0x9943\t0x50C2\n0x9944\t0x50D6\n0x9945\t0x50DE\n0x9946\t0x50E5\n0x9947\t0x50ED\n0x9948\t0x50E3\n0x9949\t0x50EE\n0x994A\t0x50F9\n0x994B\t0x50F5\n0x994C\t0x5109\n0x994D\t0x5101\n0x994E\t0x5102\n0x994F\t0x5116\n0x9950\t0x5115\n0x9951\t0x5114\n0x9952\t0x511A\n0x9953\t0x5121\n0x9954\t0x513A\n0x9955\t0x5137\n0x9956\t0x513C\n0x9957\t0x513B\n0x9958\t0x513F\n0x9959\t0x5140\n0x995A\t0x5152\n0x995B\t0x514C\n0x995C\t0x5154\n0x995D\t0x5162\n0x995E\t0x7AF8\n0x995F\t0x5169\n0x9960\t0x516A\n0x9961\t0x516E\n0x9962\t0x5180\n0x9963\t0x5182\n0x9964\t0x56D8\n0x9965\t0x518C\n0x9966\t0x5189\n0x9967\t0x518F\n0x9968\t0x5191\n0x9969\t0x5193\n0x996A\t0x5195\n0x996B\t0x5196\n0x996C\t0x51A4\n0x996D\t0x51A6\n0x996E\t0x51A2\n0x996F\t0x51A9\n0x9970\t0x51AA\n0x9971\t0x51AB\n0x9972\t0x51B3\n0x9973\t0x51B1\n0x9974\t0x51B2\n0x9975\t0x51B0\n0x9976\t0x51B5\n0x9977\t0x51BD\n0x9978\t0x51C5\n0x9979\t0x51C9\n0x997A\t0x51DB\n0x997B\t0x51E0\n0x997C\t0x8655\n0x997D\t0x51E9\n0x997E\t0x51ED\n0x9980\t0x51F0\n0x9981\t0x51F5\n0x9982\t0x51FE\n0x9983\t0x5204\n0x9984\t0x520B\n0x9985\t0x5214\n0x9986\t0x520E\n0x9987\t0x5227\n0x9988\t0x522A\n0x9989\t0x522E\n0x998A\t0x5233\n0x998B\t0x5239\n0x998C\t0x524F\n0x998D\t0x5244\n0x998E\t0x524B\n0x998F\t0x524C\n0x9990\t0x525E\n0x9991\t0x5254\n0x9992\t0x526A\n0x9993\t0x5274\n0x9994\t0x5269\n0x9995\t0x5273\n0x9996\t0x527F\n0x9997\t0x527D\n0x9998\t0x528D\n0x9999\t0x5294\n0x999A\t0x5292\n0x999B\t0x5271\n0x999C\t0x5288\n0x999D\t0x5291\n0x999E\t0x8FA8\n0x999F\t0x8FA7\n0x99A0\t0x52AC\n0x99A1\t0x52AD\n0x99A2\t0x52BC\n0x99A3\t0x52B5\n0x99A4\t0x52C1\n0x99A5\t0x52CD\n0x99A6\t0x52D7\n0x99A7\t0x52DE\n0x99A8\t0x52E3\n0x99A9\t0x52E6\n0x99AA\t0x98ED\n0x99AB\t0x52E0\n0x99AC\t0x52F3\n0x99AD\t0x52F5\n0x99AE\t0x52F8\n0x99AF\t0x52F9\n0x99B0\t0x5306\n0x99B1\t0x5308\n0x99B2\t0x7538\n0x99B3\t0x530D\n0x99B4\t0x5310\n0x99B5\t0x530F\n0x99B6\t0x5315\n0x99B7\t0x531A\n0x99B8\t0x5323\n0x99B9\t0x532F\n0x99BA\t0x5331\n0x99BB\t0x5333\n0x99BC\t0x5338\n0x99BD\t0x5340\n0x99BE\t0x5346\n0x99BF\t0x5345\n0x99C0\t0x4E17\n0x99C1\t0x5349\n0x99C2\t0x534D\n0x99C3\t0x51D6\n0x99C4\t0x535E\n0x99C5\t0x5369\n0x99C6\t0x536E\n0x99C7\t0x5918\n0x99C8\t0x537B\n0x99C9\t0x5377\n0x99CA\t0x5382\n0x99CB\t0x5396\n0x99CC\t0x53A0\n0x99CD\t0x53A6\n0x99CE\t0x53A5\n0x99CF\t0x53AE\n0x99D0\t0x53B0\n0x99D1\t0x53B6\n0x99D2\t0x53C3\n0x99D3\t0x7C12\n0x99D4\t0x96D9\n0x99D5\t0x53DF\n0x99D6\t0x66FC\n0x99D7\t0x71EE\n0x99D8\t0x53EE\n0x99D9\t0x53E8\n0x99DA\t0x53ED\n0x99DB\t0x53FA\n0x99DC\t0x5401\n0x99DD\t0x543D\n0x99DE\t0x5440\n0x99DF\t0x542C\n0x99E0\t0x542D\n0x99E1\t0x543C\n0x99E2\t0x542E\n0x99E3\t0x5436\n0x99E4\t0x5429\n0x99E5\t0x541D\n0x99E6\t0x544E\n0x99E7\t0x548F\n0x99E8\t0x5475\n0x99E9\t0x548E\n0x99EA\t0x545F\n0x99EB\t0x5471\n0x99EC\t0x5477\n0x99ED\t0x5470\n0x99EE\t0x5492\n0x99EF\t0x547B\n0x99F0\t0x5480\n0x99F1\t0x5476\n0x99F2\t0x5484\n0x99F3\t0x5490\n0x99F4\t0x5486\n0x99F5\t0x54C7\n0x99F6\t0x54A2\n0x99F7\t0x54B8\n0x99F8\t0x54A5\n0x99F9\t0x54AC\n0x99FA\t0x54C4\n0x99FB\t0x54C8\n0x99FC\t0x54A8\n0x9A40\t0x54AB\n0x9A41\t0x54C2\n0x9A42\t0x54A4\n0x9A43\t0x54BE\n0x9A44\t0x54BC\n0x9A45\t0x54D8\n0x9A46\t0x54E5\n0x9A47\t0x54E6\n0x9A48\t0x550F\n0x9A49\t0x5514\n0x9A4A\t0x54FD\n0x9A4B\t0x54EE\n0x9A4C\t0x54ED\n0x9A4D\t0x54FA\n0x9A4E\t0x54E2\n0x9A4F\t0x5539\n0x9A50\t0x5540\n0x9A51\t0x5563\n0x9A52\t0x554C\n0x9A53\t0x552E\n0x9A54\t0x555C\n0x9A55\t0x5545\n0x9A56\t0x5556\n0x9A57\t0x5557\n0x9A58\t0x5538\n0x9A59\t0x5533\n0x9A5A\t0x555D\n0x9A5B\t0x5599\n0x9A5C\t0x5580\n0x9A5D\t0x54AF\n0x9A5E\t0x558A\n0x9A5F\t0x559F\n0x9A60\t0x557B\n0x9A61\t0x557E\n0x9A62\t0x5598\n0x9A63\t0x559E\n0x9A64\t0x55AE\n0x9A65\t0x557C\n0x9A66\t0x5583\n0x9A67\t0x55A9\n0x9A68\t0x5587\n0x9A69\t0x55A8\n0x9A6A\t0x55DA\n0x9A6B\t0x55C5\n0x9A6C\t0x55DF\n0x9A6D\t0x55C4\n0x9A6E\t0x55DC\n0x9A6F\t0x55E4\n0x9A70\t0x55D4\n0x9A71\t0x5614\n0x9A72\t0x55F7\n0x9A73\t0x5616\n0x9A74\t0x55FE\n0x9A75\t0x55FD\n0x9A76\t0x561B\n0x9A77\t0x55F9\n0x9A78\t0x564E\n0x9A79\t0x5650\n0x9A7A\t0x71DF\n0x9A7B\t0x5634\n0x9A7C\t0x5636\n0x9A7D\t0x5632\n0x9A7E\t0x5638\n0x9A80\t0x566B\n0x9A81\t0x5664\n0x9A82\t0x562F\n0x9A83\t0x566C\n0x9A84\t0x566A\n0x9A85\t0x5686\n0x9A86\t0x5680\n0x9A87\t0x568A\n0x9A88\t0x56A0\n0x9A89\t0x5694\n0x9A8A\t0x568F\n0x9A8B\t0x56A5\n0x9A8C\t0x56AE\n0x9A8D\t0x56B6\n0x9A8E\t0x56B4\n0x9A8F\t0x56C2\n0x9A90\t0x56BC\n0x9A91\t0x56C1\n0x9A92\t0x56C3\n0x9A93\t0x56C0\n0x9A94\t0x56C8\n0x9A95\t0x56CE\n0x9A96\t0x56D1\n0x9A97\t0x56D3\n0x9A98\t0x56D7\n0x9A99\t0x56EE\n0x9A9A\t0x56F9\n0x9A9B\t0x5700\n0x9A9C\t0x56FF\n0x9A9D\t0x5704\n0x9A9E\t0x5709\n0x9A9F\t0x5708\n0x9AA0\t0x570B\n0x9AA1\t0x570D\n0x9AA2\t0x5713\n0x9AA3\t0x5718\n0x9AA4\t0x5716\n0x9AA5\t0x55C7\n0x9AA6\t0x571C\n0x9AA7\t0x5726\n0x9AA8\t0x5737\n0x9AA9\t0x5738\n0x9AAA\t0x574E\n0x9AAB\t0x573B\n0x9AAC\t0x5740\n0x9AAD\t0x574F\n0x9AAE\t0x5769\n0x9AAF\t0x57C0\n0x9AB0\t0x5788\n0x9AB1\t0x5761\n0x9AB2\t0x577F\n0x9AB3\t0x5789\n0x9AB4\t0x5793\n0x9AB5\t0x57A0\n0x9AB6\t0x57B3\n0x9AB7\t0x57A4\n0x9AB8\t0x57AA\n0x9AB9\t0x57B0\n0x9ABA\t0x57C3\n0x9ABB\t0x57C6\n0x9ABC\t0x57D4\n0x9ABD\t0x57D2\n0x9ABE\t0x57D3\n0x9ABF\t0x580A\n0x9AC0\t0x57D6\n0x9AC1\t0x57E3\n0x9AC2\t0x580B\n0x9AC3\t0x5819\n0x9AC4\t0x581D\n0x9AC5\t0x5872\n0x9AC6\t0x5821\n0x9AC7\t0x5862\n0x9AC8\t0x584B\n0x9AC9\t0x5870\n0x9ACA\t0x6BC0\n0x9ACB\t0x5852\n0x9ACC\t0x583D\n0x9ACD\t0x5879\n0x9ACE\t0x5885\n0x9ACF\t0x58B9\n0x9AD0\t0x589F\n0x9AD1\t0x58AB\n0x9AD2\t0x58BA\n0x9AD3\t0x58DE\n0x9AD4\t0x58BB\n0x9AD5\t0x58B8\n0x9AD6\t0x58AE\n0x9AD7\t0x58C5\n0x9AD8\t0x58D3\n0x9AD9\t0x58D1\n0x9ADA\t0x58D7\n0x9ADB\t0x58D9\n0x9ADC\t0x58D8\n0x9ADD\t0x58E5\n0x9ADE\t0x58DC\n0x9ADF\t0x58E4\n0x9AE0\t0x58DF\n0x9AE1\t0x58EF\n0x9AE2\t0x58FA\n0x9AE3\t0x58F9\n0x9AE4\t0x58FB\n0x9AE5\t0x58FC\n0x9AE6\t0x58FD\n0x9AE7\t0x5902\n0x9AE8\t0x590A\n0x9AE9\t0x5910\n0x9AEA\t0x591B\n0x9AEB\t0x68A6\n0x9AEC\t0x5925\n0x9AED\t0x592C\n0x9AEE\t0x592D\n0x9AEF\t0x5932\n0x9AF0\t0x5938\n0x9AF1\t0x593E\n0x9AF2\t0x7AD2\n0x9AF3\t0x5955\n0x9AF4\t0x5950\n0x9AF5\t0x594E\n0x9AF6\t0x595A\n0x9AF7\t0x5958\n0x9AF8\t0x5962\n0x9AF9\t0x5960\n0x9AFA\t0x5967\n0x9AFB\t0x596C\n0x9AFC\t0x5969\n0x9B40\t0x5978\n0x9B41\t0x5981\n0x9B42\t0x599D\n0x9B43\t0x4F5E\n0x9B44\t0x4FAB\n0x9B45\t0x59A3\n0x9B46\t0x59B2\n0x9B47\t0x59C6\n0x9B48\t0x59E8\n0x9B49\t0x59DC\n0x9B4A\t0x598D\n0x9B4B\t0x59D9\n0x9B4C\t0x59DA\n0x9B4D\t0x5A25\n0x9B4E\t0x5A1F\n0x9B4F\t0x5A11\n0x9B50\t0x5A1C\n0x9B51\t0x5A09\n0x9B52\t0x5A1A\n0x9B53\t0x5A40\n0x9B54\t0x5A6C\n0x9B55\t0x5A49\n0x9B56\t0x5A35\n0x9B57\t0x5A36\n0x9B58\t0x5A62\n0x9B59\t0x5A6A\n0x9B5A\t0x5A9A\n0x9B5B\t0x5ABC\n0x9B5C\t0x5ABE\n0x9B5D\t0x5ACB\n0x9B5E\t0x5AC2\n0x9B5F\t0x5ABD\n0x9B60\t0x5AE3\n0x9B61\t0x5AD7\n0x9B62\t0x5AE6\n0x9B63\t0x5AE9\n0x9B64\t0x5AD6\n0x9B65\t0x5AFA\n0x9B66\t0x5AFB\n0x9B67\t0x5B0C\n0x9B68\t0x5B0B\n0x9B69\t0x5B16\n0x9B6A\t0x5B32\n0x9B6B\t0x5AD0\n0x9B6C\t0x5B2A\n0x9B6D\t0x5B36\n0x9B6E\t0x5B3E\n0x9B6F\t0x5B43\n0x9B70\t0x5B45\n0x9B71\t0x5B40\n0x9B72\t0x5B51\n0x9B73\t0x5B55\n0x9B74\t0x5B5A\n0x9B75\t0x5B5B\n0x9B76\t0x5B65\n0x9B77\t0x5B69\n0x9B78\t0x5B70\n0x9B79\t0x5B73\n0x9B7A\t0x5B75\n0x9B7B\t0x5B78\n0x9B7C\t0x6588\n0x9B7D\t0x5B7A\n0x9B7E\t0x5B80\n0x9B80\t0x5B83\n0x9B81\t0x5BA6\n0x9B82\t0x5BB8\n0x9B83\t0x5BC3\n0x9B84\t0x5BC7\n0x9B85\t0x5BC9\n0x9B86\t0x5BD4\n0x9B87\t0x5BD0\n0x9B88\t0x5BE4\n0x9B89\t0x5BE6\n0x9B8A\t0x5BE2\n0x9B8B\t0x5BDE\n0x9B8C\t0x5BE5\n0x9B8D\t0x5BEB\n0x9B8E\t0x5BF0\n0x9B8F\t0x5BF6\n0x9B90\t0x5BF3\n0x9B91\t0x5C05\n0x9B92\t0x5C07\n0x9B93\t0x5C08\n0x9B94\t0x5C0D\n0x9B95\t0x5C13\n0x9B96\t0x5C20\n0x9B97\t0x5C22\n0x9B98\t0x5C28\n0x9B99\t0x5C38\n0x9B9A\t0x5C39\n0x9B9B\t0x5C41\n0x9B9C\t0x5C46\n0x9B9D\t0x5C4E\n0x9B9E\t0x5C53\n0x9B9F\t0x5C50\n0x9BA0\t0x5C4F\n0x9BA1\t0x5B71\n0x9BA2\t0x5C6C\n0x9BA3\t0x5C6E\n0x9BA4\t0x4E62\n0x9BA5\t0x5C76\n0x9BA6\t0x5C79\n0x9BA7\t0x5C8C\n0x9BA8\t0x5C91\n0x9BA9\t0x5C94\n0x9BAA\t0x599B\n0x9BAB\t0x5CAB\n0x9BAC\t0x5CBB\n0x9BAD\t0x5CB6\n0x9BAE\t0x5CBC\n0x9BAF\t0x5CB7\n0x9BB0\t0x5CC5\n0x9BB1\t0x5CBE\n0x9BB2\t0x5CC7\n0x9BB3\t0x5CD9\n0x9BB4\t0x5CE9\n0x9BB5\t0x5CFD\n0x9BB6\t0x5CFA\n0x9BB7\t0x5CED\n0x9BB8\t0x5D8C\n0x9BB9\t0x5CEA\n0x9BBA\t0x5D0B\n0x9BBB\t0x5D15\n0x9BBC\t0x5D17\n0x9BBD\t0x5D5C\n0x9BBE\t0x5D1F\n0x9BBF\t0x5D1B\n0x9BC0\t0x5D11\n0x9BC1\t0x5D14\n0x9BC2\t0x5D22\n0x9BC3\t0x5D1A\n0x9BC4\t0x5D19\n0x9BC5\t0x5D18\n0x9BC6\t0x5D4C\n0x9BC7\t0x5D52\n0x9BC8\t0x5D4E\n0x9BC9\t0x5D4B\n0x9BCA\t0x5D6C\n0x9BCB\t0x5D73\n0x9BCC\t0x5D76\n0x9BCD\t0x5D87\n0x9BCE\t0x5D84\n0x9BCF\t0x5D82\n0x9BD0\t0x5DA2\n0x9BD1\t0x5D9D\n0x9BD2\t0x5DAC\n0x9BD3\t0x5DAE\n0x9BD4\t0x5DBD\n0x9BD5\t0x5D90\n0x9BD6\t0x5DB7\n0x9BD7\t0x5DBC\n0x9BD8\t0x5DC9\n0x9BD9\t0x5DCD\n0x9BDA\t0x5DD3\n0x9BDB\t0x5DD2\n0x9BDC\t0x5DD6\n0x9BDD\t0x5DDB\n0x9BDE\t0x5DEB\n0x9BDF\t0x5DF2\n0x9BE0\t0x5DF5\n0x9BE1\t0x5E0B\n0x9BE2\t0x5E1A\n0x9BE3\t0x5E19\n0x9BE4\t0x5E11\n0x9BE5\t0x5E1B\n0x9BE6\t0x5E36\n0x9BE7\t0x5E37\n0x9BE8\t0x5E44\n0x9BE9\t0x5E43\n0x9BEA\t0x5E40\n0x9BEB\t0x5E4E\n0x9BEC\t0x5E57\n0x9BED\t0x5E54\n0x9BEE\t0x5E5F\n0x9BEF\t0x5E62\n0x9BF0\t0x5E64\n0x9BF1\t0x5E47\n0x9BF2\t0x5E75\n0x9BF3\t0x5E76\n0x9BF4\t0x5E7A\n0x9BF5\t0x9EBC\n0x9BF6\t0x5E7F\n0x9BF7\t0x5EA0\n0x9BF8\t0x5EC1\n0x9BF9\t0x5EC2\n0x9BFA\t0x5EC8\n0x9BFB\t0x5ED0\n0x9BFC\t0x5ECF\n0x9C40\t0x5ED6\n0x9C41\t0x5EE3\n0x9C42\t0x5EDD\n0x9C43\t0x5EDA\n0x9C44\t0x5EDB\n0x9C45\t0x5EE2\n0x9C46\t0x5EE1\n0x9C47\t0x5EE8\n0x9C48\t0x5EE9\n0x9C49\t0x5EEC\n0x9C4A\t0x5EF1\n0x9C4B\t0x5EF3\n0x9C4C\t0x5EF0\n0x9C4D\t0x5EF4\n0x9C4E\t0x5EF8\n0x9C4F\t0x5EFE\n0x9C50\t0x5F03\n0x9C51\t0x5F09\n0x9C52\t0x5F5D\n0x9C53\t0x5F5C\n0x9C54\t0x5F0B\n0x9C55\t0x5F11\n0x9C56\t0x5F16\n0x9C57\t0x5F29\n0x9C58\t0x5F2D\n0x9C59\t0x5F38\n0x9C5A\t0x5F41\n0x9C5B\t0x5F48\n0x9C5C\t0x5F4C\n0x9C5D\t0x5F4E\n0x9C5E\t0x5F2F\n0x9C5F\t0x5F51\n0x9C60\t0x5F56\n0x9C61\t0x5F57\n0x9C62\t0x5F59\n0x9C63\t0x5F61\n0x9C64\t0x5F6D\n0x9C65\t0x5F73\n0x9C66\t0x5F77\n0x9C67\t0x5F83\n0x9C68\t0x5F82\n0x9C69\t0x5F7F\n0x9C6A\t0x5F8A\n0x9C6B\t0x5F88\n0x9C6C\t0x5F91\n0x9C6D\t0x5F87\n0x9C6E\t0x5F9E\n0x9C6F\t0x5F99\n0x9C70\t0x5F98\n0x9C71\t0x5FA0\n0x9C72\t0x5FA8\n0x9C73\t0x5FAD\n0x9C74\t0x5FBC\n0x9C75\t0x5FD6\n0x9C76\t0x5FFB\n0x9C77\t0x5FE4\n0x9C78\t0x5FF8\n0x9C79\t0x5FF1\n0x9C7A\t0x5FDD\n0x9C7B\t0x60B3\n0x9C7C\t0x5FFF\n0x9C7D\t0x6021\n0x9C7E\t0x6060\n0x9C80\t0x6019\n0x9C81\t0x6010\n0x9C82\t0x6029\n0x9C83\t0x600E\n0x9C84\t0x6031\n0x9C85\t0x601B\n0x9C86\t0x6015\n0x9C87\t0x602B\n0x9C88\t0x6026\n0x9C89\t0x600F\n0x9C8A\t0x603A\n0x9C8B\t0x605A\n0x9C8C\t0x6041\n0x9C8D\t0x606A\n0x9C8E\t0x6077\n0x9C8F\t0x605F\n0x9C90\t0x604A\n0x9C91\t0x6046\n0x9C92\t0x604D\n0x9C93\t0x6063\n0x9C94\t0x6043\n0x9C95\t0x6064\n0x9C96\t0x6042\n0x9C97\t0x606C\n0x9C98\t0x606B\n0x9C99\t0x6059\n0x9C9A\t0x6081\n0x9C9B\t0x608D\n0x9C9C\t0x60E7\n0x9C9D\t0x6083\n0x9C9E\t0x609A\n0x9C9F\t0x6084\n0x9CA0\t0x609B\n0x9CA1\t0x6096\n0x9CA2\t0x6097\n0x9CA3\t0x6092\n0x9CA4\t0x60A7\n0x9CA5\t0x608B\n0x9CA6\t0x60E1\n0x9CA7\t0x60B8\n0x9CA8\t0x60E0\n0x9CA9\t0x60D3\n0x9CAA\t0x60B4\n0x9CAB\t0x5FF0\n0x9CAC\t0x60BD\n0x9CAD\t0x60C6\n0x9CAE\t0x60B5\n0x9CAF\t0x60D8\n0x9CB0\t0x614D\n0x9CB1\t0x6115\n0x9CB2\t0x6106\n0x9CB3\t0x60F6\n0x9CB4\t0x60F7\n0x9CB5\t0x6100\n0x9CB6\t0x60F4\n0x9CB7\t0x60FA\n0x9CB8\t0x6103\n0x9CB9\t0x6121\n0x9CBA\t0x60FB\n0x9CBB\t0x60F1\n0x9CBC\t0x610D\n0x9CBD\t0x610E\n0x9CBE\t0x6147\n0x9CBF\t0x613E\n0x9CC0\t0x6128\n0x9CC1\t0x6127\n0x9CC2\t0x614A\n0x9CC3\t0x613F\n0x9CC4\t0x613C\n0x9CC5\t0x612C\n0x9CC6\t0x6134\n0x9CC7\t0x613D\n0x9CC8\t0x6142\n0x9CC9\t0x6144\n0x9CCA\t0x6173\n0x9CCB\t0x6177\n0x9CCC\t0x6158\n0x9CCD\t0x6159\n0x9CCE\t0x615A\n0x9CCF\t0x616B\n0x9CD0\t0x6174\n0x9CD1\t0x616F\n0x9CD2\t0x6165\n0x9CD3\t0x6171\n0x9CD4\t0x615F\n0x9CD5\t0x615D\n0x9CD6\t0x6153\n0x9CD7\t0x6175\n0x9CD8\t0x6199\n0x9CD9\t0x6196\n0x9CDA\t0x6187\n0x9CDB\t0x61AC\n0x9CDC\t0x6194\n0x9CDD\t0x619A\n0x9CDE\t0x618A\n0x9CDF\t0x6191\n0x9CE0\t0x61AB\n0x9CE1\t0x61AE\n0x9CE2\t0x61CC\n0x9CE3\t0x61CA\n0x9CE4\t0x61C9\n0x9CE5\t0x61F7\n0x9CE6\t0x61C8\n0x9CE7\t0x61C3\n0x9CE8\t0x61C6\n0x9CE9\t0x61BA\n0x9CEA\t0x61CB\n0x9CEB\t0x7F79\n0x9CEC\t0x61CD\n0x9CED\t0x61E6\n0x9CEE\t0x61E3\n0x9CEF\t0x61F6\n0x9CF0\t0x61FA\n0x9CF1\t0x61F4\n0x9CF2\t0x61FF\n0x9CF3\t0x61FD\n0x9CF4\t0x61FC\n0x9CF5\t0x61FE\n0x9CF6\t0x6200\n0x9CF7\t0x6208\n0x9CF8\t0x6209\n0x9CF9\t0x620D\n0x9CFA\t0x620C\n0x9CFB\t0x6214\n0x9CFC\t0x621B\n0x9D40\t0x621E\n0x9D41\t0x6221\n0x9D42\t0x622A\n0x9D43\t0x622E\n0x9D44\t0x6230\n0x9D45\t0x6232\n0x9D46\t0x6233\n0x9D47\t0x6241\n0x9D48\t0x624E\n0x9D49\t0x625E\n0x9D4A\t0x6263\n0x9D4B\t0x625B\n0x9D4C\t0x6260\n0x9D4D\t0x6268\n0x9D4E\t0x627C\n0x9D4F\t0x6282\n0x9D50\t0x6289\n0x9D51\t0x627E\n0x9D52\t0x6292\n0x9D53\t0x6293\n0x9D54\t0x6296\n0x9D55\t0x62D4\n0x9D56\t0x6283\n0x9D57\t0x6294\n0x9D58\t0x62D7\n0x9D59\t0x62D1\n0x9D5A\t0x62BB\n0x9D5B\t0x62CF\n0x9D5C\t0x62FF\n0x9D5D\t0x62C6\n0x9D5E\t0x64D4\n0x9D5F\t0x62C8\n0x9D60\t0x62DC\n0x9D61\t0x62CC\n0x9D62\t0x62CA\n0x9D63\t0x62C2\n0x9D64\t0x62C7\n0x9D65\t0x629B\n0x9D66\t0x62C9\n0x9D67\t0x630C\n0x9D68\t0x62EE\n0x9D69\t0x62F1\n0x9D6A\t0x6327\n0x9D6B\t0x6302\n0x9D6C\t0x6308\n0x9D6D\t0x62EF\n0x9D6E\t0x62F5\n0x9D6F\t0x6350\n0x9D70\t0x633E\n0x9D71\t0x634D\n0x9D72\t0x641C\n0x9D73\t0x634F\n0x9D74\t0x6396\n0x9D75\t0x638E\n0x9D76\t0x6380\n0x9D77\t0x63AB\n0x9D78\t0x6376\n0x9D79\t0x63A3\n0x9D7A\t0x638F\n0x9D7B\t0x6389\n0x9D7C\t0x639F\n0x9D7D\t0x63B5\n0x9D7E\t0x636B\n0x9D80\t0x6369\n0x9D81\t0x63BE\n0x9D82\t0x63E9\n0x9D83\t0x63C0\n0x9D84\t0x63C6\n0x9D85\t0x63E3\n0x9D86\t0x63C9\n0x9D87\t0x63D2\n0x9D88\t0x63F6\n0x9D89\t0x63C4\n0x9D8A\t0x6416\n0x9D8B\t0x6434\n0x9D8C\t0x6406\n0x9D8D\t0x6413\n0x9D8E\t0x6426\n0x9D8F\t0x6436\n0x9D90\t0x651D\n0x9D91\t0x6417\n0x9D92\t0x6428\n0x9D93\t0x640F\n0x9D94\t0x6467\n0x9D95\t0x646F\n0x9D96\t0x6476\n0x9D97\t0x644E\n0x9D98\t0x652A\n0x9D99\t0x6495\n0x9D9A\t0x6493\n0x9D9B\t0x64A5\n0x9D9C\t0x64A9\n0x9D9D\t0x6488\n0x9D9E\t0x64BC\n0x9D9F\t0x64DA\n0x9DA0\t0x64D2\n0x9DA1\t0x64C5\n0x9DA2\t0x64C7\n0x9DA3\t0x64BB\n0x9DA4\t0x64D8\n0x9DA5\t0x64C2\n0x9DA6\t0x64F1\n0x9DA7\t0x64E7\n0x9DA8\t0x8209\n0x9DA9\t0x64E0\n0x9DAA\t0x64E1\n0x9DAB\t0x62AC\n0x9DAC\t0x64E3\n0x9DAD\t0x64EF\n0x9DAE\t0x652C\n0x9DAF\t0x64F6\n0x9DB0\t0x64F4\n0x9DB1\t0x64F2\n0x9DB2\t0x64FA\n0x9DB3\t0x6500\n0x9DB4\t0x64FD\n0x9DB5\t0x6518\n0x9DB6\t0x651C\n0x9DB7\t0x6505\n0x9DB8\t0x6524\n0x9DB9\t0x6523\n0x9DBA\t0x652B\n0x9DBB\t0x6534\n0x9DBC\t0x6535\n0x9DBD\t0x6537\n0x9DBE\t0x6536\n0x9DBF\t0x6538\n0x9DC0\t0x754B\n0x9DC1\t0x6548\n0x9DC2\t0x6556\n0x9DC3\t0x6555\n0x9DC4\t0x654D\n0x9DC5\t0x6558\n0x9DC6\t0x655E\n0x9DC7\t0x655D\n0x9DC8\t0x6572\n0x9DC9\t0x6578\n0x9DCA\t0x6582\n0x9DCB\t0x6583\n0x9DCC\t0x8B8A\n0x9DCD\t0x659B\n0x9DCE\t0x659F\n0x9DCF\t0x65AB\n0x9DD0\t0x65B7\n0x9DD1\t0x65C3\n0x9DD2\t0x65C6\n0x9DD3\t0x65C1\n0x9DD4\t0x65C4\n0x9DD5\t0x65CC\n0x9DD6\t0x65D2\n0x9DD7\t0x65DB\n0x9DD8\t0x65D9\n0x9DD9\t0x65E0\n0x9DDA\t0x65E1\n0x9DDB\t0x65F1\n0x9DDC\t0x6772\n0x9DDD\t0x660A\n0x9DDE\t0x6603\n0x9DDF\t0x65FB\n0x9DE0\t0x6773\n0x9DE1\t0x6635\n0x9DE2\t0x6636\n0x9DE3\t0x6634\n0x9DE4\t0x661C\n0x9DE5\t0x664F\n0x9DE6\t0x6644\n0x9DE7\t0x6649\n0x9DE8\t0x6641\n0x9DE9\t0x665E\n0x9DEA\t0x665D\n0x9DEB\t0x6664\n0x9DEC\t0x6667\n0x9DED\t0x6668\n0x9DEE\t0x665F\n0x9DEF\t0x6662\n0x9DF0\t0x6670\n0x9DF1\t0x6683\n0x9DF2\t0x6688\n0x9DF3\t0x668E\n0x9DF4\t0x6689\n0x9DF5\t0x6684\n0x9DF6\t0x6698\n0x9DF7\t0x669D\n0x9DF8\t0x66C1\n0x9DF9\t0x66B9\n0x9DFA\t0x66C9\n0x9DFB\t0x66BE\n0x9DFC\t0x66BC\n0x9E40\t0x66C4\n0x9E41\t0x66B8\n0x9E42\t0x66D6\n0x9E43\t0x66DA\n0x9E44\t0x66E0\n0x9E45\t0x663F\n0x9E46\t0x66E6\n0x9E47\t0x66E9\n0x9E48\t0x66F0\n0x9E49\t0x66F5\n0x9E4A\t0x66F7\n0x9E4B\t0x670F\n0x9E4C\t0x6716\n0x9E4D\t0x671E\n0x9E4E\t0x6726\n0x9E4F\t0x6727\n0x9E50\t0x9738\n0x9E51\t0x672E\n0x9E52\t0x673F\n0x9E53\t0x6736\n0x9E54\t0x6741\n0x9E55\t0x6738\n0x9E56\t0x6737\n0x9E57\t0x6746\n0x9E58\t0x675E\n0x9E59\t0x6760\n0x9E5A\t0x6759\n0x9E5B\t0x6763\n0x9E5C\t0x6764\n0x9E5D\t0x6789\n0x9E5E\t0x6770\n0x9E5F\t0x67A9\n0x9E60\t0x677C\n0x9E61\t0x676A\n0x9E62\t0x678C\n0x9E63\t0x678B\n0x9E64\t0x67A6\n0x9E65\t0x67A1\n0x9E66\t0x6785\n0x9E67\t0x67B7\n0x9E68\t0x67EF\n0x9E69\t0x67B4\n0x9E6A\t0x67EC\n0x9E6B\t0x67B3\n0x9E6C\t0x67E9\n0x9E6D\t0x67B8\n0x9E6E\t0x67E4\n0x9E6F\t0x67DE\n0x9E70\t0x67DD\n0x9E71\t0x67E2\n0x9E72\t0x67EE\n0x9E73\t0x67B9\n0x9E74\t0x67CE\n0x9E75\t0x67C6\n0x9E76\t0x67E7\n0x9E77\t0x6A9C\n0x9E78\t0x681E\n0x9E79\t0x6846\n0x9E7A\t0x6829\n0x9E7B\t0x6840\n0x9E7C\t0x684D\n0x9E7D\t0x6832\n0x9E7E\t0x684E\n0x9E80\t0x68B3\n0x9E81\t0x682B\n0x9E82\t0x6859\n0x9E83\t0x6863\n0x9E84\t0x6877\n0x9E85\t0x687F\n0x9E86\t0x689F\n0x9E87\t0x688F\n0x9E88\t0x68AD\n0x9E89\t0x6894\n0x9E8A\t0x689D\n0x9E8B\t0x689B\n0x9E8C\t0x6883\n0x9E8D\t0x6AAE\n0x9E8E\t0x68B9\n0x9E8F\t0x6874\n0x9E90\t0x68B5\n0x9E91\t0x68A0\n0x9E92\t0x68BA\n0x9E93\t0x690F\n0x9E94\t0x688D\n0x9E95\t0x687E\n0x9E96\t0x6901\n0x9E97\t0x68CA\n0x9E98\t0x6908\n0x9E99\t0x68D8\n0x9E9A\t0x6922\n0x9E9B\t0x6926\n0x9E9C\t0x68E1\n0x9E9D\t0x690C\n0x9E9E\t0x68CD\n0x9E9F\t0x68D4\n0x9EA0\t0x68E7\n0x9EA1\t0x68D5\n0x9EA2\t0x6936\n0x9EA3\t0x6912\n0x9EA4\t0x6904\n0x9EA5\t0x68D7\n0x9EA6\t0x68E3\n0x9EA7\t0x6925\n0x9EA8\t0x68F9\n0x9EA9\t0x68E0\n0x9EAA\t0x68EF\n0x9EAB\t0x6928\n0x9EAC\t0x692A\n0x9EAD\t0x691A\n0x9EAE\t0x6923\n0x9EAF\t0x6921\n0x9EB0\t0x68C6\n0x9EB1\t0x6979\n0x9EB2\t0x6977\n0x9EB3\t0x695C\n0x9EB4\t0x6978\n0x9EB5\t0x696B\n0x9EB6\t0x6954\n0x9EB7\t0x697E\n0x9EB8\t0x696E\n0x9EB9\t0x6939\n0x9EBA\t0x6974\n0x9EBB\t0x693D\n0x9EBC\t0x6959\n0x9EBD\t0x6930\n0x9EBE\t0x6961\n0x9EBF\t0x695E\n0x9EC0\t0x695D\n0x9EC1\t0x6981\n0x9EC2\t0x696A\n0x9EC3\t0x69B2\n0x9EC4\t0x69AE\n0x9EC5\t0x69D0\n0x9EC6\t0x69BF\n0x9EC7\t0x69C1\n0x9EC8\t0x69D3\n0x9EC9\t0x69BE\n0x9ECA\t0x69CE\n0x9ECB\t0x5BE8\n0x9ECC\t0x69CA\n0x9ECD\t0x69DD\n0x9ECE\t0x69BB\n0x9ECF\t0x69C3\n0x9ED0\t0x69A7\n0x9ED1\t0x6A2E\n0x9ED2\t0x6991\n0x9ED3\t0x69A0\n0x9ED4\t0x699C\n0x9ED5\t0x6995\n0x9ED6\t0x69B4\n0x9ED7\t0x69DE\n0x9ED8\t0x69E8\n0x9ED9\t0x6A02\n0x9EDA\t0x6A1B\n0x9EDB\t0x69FF\n0x9EDC\t0x6B0A\n0x9EDD\t0x69F9\n0x9EDE\t0x69F2\n0x9EDF\t0x69E7\n0x9EE0\t0x6A05\n0x9EE1\t0x69B1\n0x9EE2\t0x6A1E\n0x9EE3\t0x69ED\n0x9EE4\t0x6A14\n0x9EE5\t0x69EB\n0x9EE6\t0x6A0A\n0x9EE7\t0x6A12\n0x9EE8\t0x6AC1\n0x9EE9\t0x6A23\n0x9EEA\t0x6A13\n0x9EEB\t0x6A44\n0x9EEC\t0x6A0C\n0x9EED\t0x6A72\n0x9EEE\t0x6A36\n0x9EEF\t0x6A78\n0x9EF0\t0x6A47\n0x9EF1\t0x6A62\n0x9EF2\t0x6A59\n0x9EF3\t0x6A66\n0x9EF4\t0x6A48\n0x9EF5\t0x6A38\n0x9EF6\t0x6A22\n0x9EF7\t0x6A90\n0x9EF8\t0x6A8D\n0x9EF9\t0x6AA0\n0x9EFA\t0x6A84\n0x9EFB\t0x6AA2\n0x9EFC\t0x6AA3\n0x9F40\t0x6A97\n0x9F41\t0x8617\n0x9F42\t0x6ABB\n0x9F43\t0x6AC3\n0x9F44\t0x6AC2\n0x9F45\t0x6AB8\n0x9F46\t0x6AB3\n0x9F47\t0x6AAC\n0x9F48\t0x6ADE\n0x9F49\t0x6AD1\n0x9F4A\t0x6ADF\n0x9F4B\t0x6AAA\n0x9F4C\t0x6ADA\n0x9F4D\t0x6AEA\n0x9F4E\t0x6AFB\n0x9F4F\t0x6B05\n0x9F50\t0x8616\n0x9F51\t0x6AFA\n0x9F52\t0x6B12\n0x9F53\t0x6B16\n0x9F54\t0x9B31\n0x9F55\t0x6B1F\n0x9F56\t0x6B38\n0x9F57\t0x6B37\n0x9F58\t0x76DC\n0x9F59\t0x6B39\n0x9F5A\t0x98EE\n0x9F5B\t0x6B47\n0x9F5C\t0x6B43\n0x9F5D\t0x6B49\n0x9F5E\t0x6B50\n0x9F5F\t0x6B59\n0x9F60\t0x6B54\n0x9F61\t0x6B5B\n0x9F62\t0x6B5F\n0x9F63\t0x6B61\n0x9F64\t0x6B78\n0x9F65\t0x6B79\n0x9F66\t0x6B7F\n0x9F67\t0x6B80\n0x9F68\t0x6B84\n0x9F69\t0x6B83\n0x9F6A\t0x6B8D\n0x9F6B\t0x6B98\n0x9F6C\t0x6B95\n0x9F6D\t0x6B9E\n0x9F6E\t0x6BA4\n0x9F6F\t0x6BAA\n0x9F70\t0x6BAB\n0x9F71\t0x6BAF\n0x9F72\t0x6BB2\n0x9F73\t0x6BB1\n0x9F74\t0x6BB3\n0x9F75\t0x6BB7\n0x9F76\t0x6BBC\n0x9F77\t0x6BC6\n0x9F78\t0x6BCB\n0x9F79\t0x6BD3\n0x9F7A\t0x6BDF\n0x9F7B\t0x6BEC\n0x9F7C\t0x6BEB\n0x9F7D\t0x6BF3\n0x9F7E\t0x6BEF\n0x9F80\t0x9EBE\n0x9F81\t0x6C08\n0x9F82\t0x6C13\n0x9F83\t0x6C14\n0x9F84\t0x6C1B\n0x9F85\t0x6C24\n0x9F86\t0x6C23\n0x9F87\t0x6C5E\n0x9F88\t0x6C55\n0x9F89\t0x6C62\n0x9F8A\t0x6C6A\n0x9F8B\t0x6C82\n0x9F8C\t0x6C8D\n0x9F8D\t0x6C9A\n0x9F8E\t0x6C81\n0x9F8F\t0x6C9B\n0x9F90\t0x6C7E\n0x9F91\t0x6C68\n0x9F92\t0x6C73\n0x9F93\t0x6C92\n0x9F94\t0x6C90\n0x9F95\t0x6CC4\n0x9F96\t0x6CF1\n0x9F97\t0x6CD3\n0x9F98\t0x6CBD\n0x9F99\t0x6CD7\n0x9F9A\t0x6CC5\n0x9F9B\t0x6CDD\n0x9F9C\t0x6CAE\n0x9F9D\t0x6CB1\n0x9F9E\t0x6CBE\n0x9F9F\t0x6CBA\n0x9FA0\t0x6CDB\n0x9FA1\t0x6CEF\n0x9FA2\t0x6CD9\n0x9FA3\t0x6CEA\n0x9FA4\t0x6D1F\n0x9FA5\t0x884D\n0x9FA6\t0x6D36\n0x9FA7\t0x6D2B\n0x9FA8\t0x6D3D\n0x9FA9\t0x6D38\n0x9FAA\t0x6D19\n0x9FAB\t0x6D35\n0x9FAC\t0x6D33\n0x9FAD\t0x6D12\n0x9FAE\t0x6D0C\n0x9FAF\t0x6D63\n0x9FB0\t0x6D93\n0x9FB1\t0x6D64\n0x9FB2\t0x6D5A\n0x9FB3\t0x6D79\n0x9FB4\t0x6D59\n0x9FB5\t0x6D8E\n0x9FB6\t0x6D95\n0x9FB7\t0x6FE4\n0x9FB8\t0x6D85\n0x9FB9\t0x6DF9\n0x9FBA\t0x6E15\n0x9FBB\t0x6E0A\n0x9FBC\t0x6DB5\n0x9FBD\t0x6DC7\n0x9FBE\t0x6DE6\n0x9FBF\t0x6DB8\n0x9FC0\t0x6DC6\n0x9FC1\t0x6DEC\n0x9FC2\t0x6DDE\n0x9FC3\t0x6DCC\n0x9FC4\t0x6DE8\n0x9FC5\t0x6DD2\n0x9FC6\t0x6DC5\n0x9FC7\t0x6DFA\n0x9FC8\t0x6DD9\n0x9FC9\t0x6DE4\n0x9FCA\t0x6DD5\n0x9FCB\t0x6DEA\n0x9FCC\t0x6DEE\n0x9FCD\t0x6E2D\n0x9FCE\t0x6E6E\n0x9FCF\t0x6E2E\n0x9FD0\t0x6E19\n0x9FD1\t0x6E72\n0x9FD2\t0x6E5F\n0x9FD3\t0x6E3E\n0x9FD4\t0x6E23\n0x9FD5\t0x6E6B\n0x9FD6\t0x6E2B\n0x9FD7\t0x6E76\n0x9FD8\t0x6E4D\n0x9FD9\t0x6E1F\n0x9FDA\t0x6E43\n0x9FDB\t0x6E3A\n0x9FDC\t0x6E4E\n0x9FDD\t0x6E24\n0x9FDE\t0x6EFF\n0x9FDF\t0x6E1D\n0x9FE0\t0x6E38\n0x9FE1\t0x6E82\n0x9FE2\t0x6EAA\n0x9FE3\t0x6E98\n0x9FE4\t0x6EC9\n0x9FE5\t0x6EB7\n0x9FE6\t0x6ED3\n0x9FE7\t0x6EBD\n0x9FE8\t0x6EAF\n0x9FE9\t0x6EC4\n0x9FEA\t0x6EB2\n0x9FEB\t0x6ED4\n0x9FEC\t0x6ED5\n0x9FED\t0x6E8F\n0x9FEE\t0x6EA5\n0x9FEF\t0x6EC2\n0x9FF0\t0x6E9F\n0x9FF1\t0x6F41\n0x9FF2\t0x6F11\n0x9FF3\t0x704C\n0x9FF4\t0x6EEC\n0x9FF5\t0x6EF8\n0x9FF6\t0x6EFE\n0x9FF7\t0x6F3F\n0x9FF8\t0x6EF2\n0x9FF9\t0x6F31\n0x9FFA\t0x6EEF\n0x9FFB\t0x6F32\n0x9FFC\t0x6ECC\n0xA1\t0xFF61\n0xA2\t0xFF62\n0xA3\t0xFF63\n0xA4\t0xFF64\n0xA5\t0xFF65\n0xA6\t0xFF66\n0xA7\t0xFF67\n0xA8\t0xFF68\n0xA9\t0xFF69\n0xAA\t0xFF6A\n0xAB\t0xFF6B\n0xAC\t0xFF6C\n0xAD\t0xFF6D\n0xAE\t0xFF6E\n0xAF\t0xFF6F\n0xB0\t0xFF70\n0xB1\t0xFF71\n0xB2\t0xFF72\n0xB3\t0xFF73\n0xB4\t0xFF74\n0xB5\t0xFF75\n0xB6\t0xFF76\n0xB7\t0xFF77\n0xB8\t0xFF78\n0xB9\t0xFF79\n0xBA\t0xFF7A\n0xBB\t0xFF7B\n0xBC\t0xFF7C\n0xBD\t0xFF7D\n0xBE\t0xFF7E\n0xBF\t0xFF7F\n0xC0\t0xFF80\n0xC1\t0xFF81\n0xC2\t0xFF82\n0xC3\t0xFF83\n0xC4\t0xFF84\n0xC5\t0xFF85\n0xC6\t0xFF86\n0xC7\t0xFF87\n0xC8\t0xFF88\n0xC9\t0xFF89\n0xCA\t0xFF8A\n0xCB\t0xFF8B\n0xCC\t0xFF8C\n0xCD\t0xFF8D\n0xCE\t0xFF8E\n0xCF\t0xFF8F\n0xD0\t0xFF90\n0xD1\t0xFF91\n0xD2\t0xFF92\n0xD3\t0xFF93\n0xD4\t0xFF94\n0xD5\t0xFF95\n0xD6\t0xFF96\n0xD7\t0xFF97\n0xD8\t0xFF98\n0xD9\t0xFF99\n0xDA\t0xFF9A\n0xDB\t0xFF9B\n0xDC\t0xFF9C\n0xDD\t0xFF9D\n0xDE\t0xFF9E\n0xDF\t0xFF9F\n0xE040\t0x6F3E\n0xE041\t0x6F13\n0xE042\t0x6EF7\n0xE043\t0x6F86\n0xE044\t0x6F7A\n0xE045\t0x6F78\n0xE046\t0x6F81\n0xE047\t0x6F80\n0xE048\t0x6F6F\n0xE049\t0x6F5B\n0xE04A\t0x6FF3\n0xE04B\t0x6F6D\n0xE04C\t0x6F82\n0xE04D\t0x6F7C\n0xE04E\t0x6F58\n0xE04F\t0x6F8E\n0xE050\t0x6F91\n0xE051\t0x6FC2\n0xE052\t0x6F66\n0xE053\t0x6FB3\n0xE054\t0x6FA3\n0xE055\t0x6FA1\n0xE056\t0x6FA4\n0xE057\t0x6FB9\n0xE058\t0x6FC6\n0xE059\t0x6FAA\n0xE05A\t0x6FDF\n0xE05B\t0x6FD5\n0xE05C\t0x6FEC\n0xE05D\t0x6FD4\n0xE05E\t0x6FD8\n0xE05F\t0x6FF1\n0xE060\t0x6FEE\n0xE061\t0x6FDB\n0xE062\t0x7009\n0xE063\t0x700B\n0xE064\t0x6FFA\n0xE065\t0x7011\n0xE066\t0x7001\n0xE067\t0x700F\n0xE068\t0x6FFE\n0xE069\t0x701B\n0xE06A\t0x701A\n0xE06B\t0x6F74\n0xE06C\t0x701D\n0xE06D\t0x7018\n0xE06E\t0x701F\n0xE06F\t0x7030\n0xE070\t0x703E\n0xE071\t0x7032\n0xE072\t0x7051\n0xE073\t0x7063\n0xE074\t0x7099\n0xE075\t0x7092\n0xE076\t0x70AF\n0xE077\t0x70F1\n0xE078\t0x70AC\n0xE079\t0x70B8\n0xE07A\t0x70B3\n0xE07B\t0x70AE\n0xE07C\t0x70DF\n0xE07D\t0x70CB\n0xE07E\t0x70DD\n0xE080\t0x70D9\n0xE081\t0x7109\n0xE082\t0x70FD\n0xE083\t0x711C\n0xE084\t0x7119\n0xE085\t0x7165\n0xE086\t0x7155\n0xE087\t0x7188\n0xE088\t0x7166\n0xE089\t0x7162\n0xE08A\t0x714C\n0xE08B\t0x7156\n0xE08C\t0x716C\n0xE08D\t0x718F\n0xE08E\t0x71FB\n0xE08F\t0x7184\n0xE090\t0x7195\n0xE091\t0x71A8\n0xE092\t0x71AC\n0xE093\t0x71D7\n0xE094\t0x71B9\n0xE095\t0x71BE\n0xE096\t0x71D2\n0xE097\t0x71C9\n0xE098\t0x71D4\n0xE099\t0x71CE\n0xE09A\t0x71E0\n0xE09B\t0x71EC\n0xE09C\t0x71E7\n0xE09D\t0x71F5\n0xE09E\t0x71FC\n0xE09F\t0x71F9\n0xE0A0\t0x71FF\n0xE0A1\t0x720D\n0xE0A2\t0x7210\n0xE0A3\t0x721B\n0xE0A4\t0x7228\n0xE0A5\t0x722D\n0xE0A6\t0x722C\n0xE0A7\t0x7230\n0xE0A8\t0x7232\n0xE0A9\t0x723B\n0xE0AA\t0x723C\n0xE0AB\t0x723F\n0xE0AC\t0x7240\n0xE0AD\t0x7246\n0xE0AE\t0x724B\n0xE0AF\t0x7258\n0xE0B0\t0x7274\n0xE0B1\t0x727E\n0xE0B2\t0x7282\n0xE0B3\t0x7281\n0xE0B4\t0x7287\n0xE0B5\t0x7292\n0xE0B6\t0x7296\n0xE0B7\t0x72A2\n0xE0B8\t0x72A7\n0xE0B9\t0x72B9\n0xE0BA\t0x72B2\n0xE0BB\t0x72C3\n0xE0BC\t0x72C6\n0xE0BD\t0x72C4\n0xE0BE\t0x72CE\n0xE0BF\t0x72D2\n0xE0C0\t0x72E2\n0xE0C1\t0x72E0\n0xE0C2\t0x72E1\n0xE0C3\t0x72F9\n0xE0C4\t0x72F7\n0xE0C5\t0x500F\n0xE0C6\t0x7317\n0xE0C7\t0x730A\n0xE0C8\t0x731C\n0xE0C9\t0x7316\n0xE0CA\t0x731D\n0xE0CB\t0x7334\n0xE0CC\t0x732F\n0xE0CD\t0x7329\n0xE0CE\t0x7325\n0xE0CF\t0x733E\n0xE0D0\t0x734E\n0xE0D1\t0x734F\n0xE0D2\t0x9ED8\n0xE0D3\t0x7357\n0xE0D4\t0x736A\n0xE0D5\t0x7368\n0xE0D6\t0x7370\n0xE0D7\t0x7378\n0xE0D8\t0x7375\n0xE0D9\t0x737B\n0xE0DA\t0x737A\n0xE0DB\t0x73C8\n0xE0DC\t0x73B3\n0xE0DD\t0x73CE\n0xE0DE\t0x73BB\n0xE0DF\t0x73C0\n0xE0E0\t0x73E5\n0xE0E1\t0x73EE\n0xE0E2\t0x73DE\n0xE0E3\t0x74A2\n0xE0E4\t0x7405\n0xE0E5\t0x746F\n0xE0E6\t0x7425\n0xE0E7\t0x73F8\n0xE0E8\t0x7432\n0xE0E9\t0x743A\n0xE0EA\t0x7455\n0xE0EB\t0x743F\n0xE0EC\t0x745F\n0xE0ED\t0x7459\n0xE0EE\t0x7441\n0xE0EF\t0x745C\n0xE0F0\t0x7469\n0xE0F1\t0x7470\n0xE0F2\t0x7463\n0xE0F3\t0x746A\n0xE0F4\t0x7476\n0xE0F5\t0x747E\n0xE0F6\t0x748B\n0xE0F7\t0x749E\n0xE0F8\t0x74A7\n0xE0F9\t0x74CA\n0xE0FA\t0x74CF\n0xE0FB\t0x74D4\n0xE0FC\t0x73F1\n0xE140\t0x74E0\n0xE141\t0x74E3\n0xE142\t0x74E7\n0xE143\t0x74E9\n0xE144\t0x74EE\n0xE145\t0x74F2\n0xE146\t0x74F0\n0xE147\t0x74F1\n0xE148\t0x74F8\n0xE149\t0x74F7\n0xE14A\t0x7504\n0xE14B\t0x7503\n0xE14C\t0x7505\n0xE14D\t0x750C\n0xE14E\t0x750E\n0xE14F\t0x750D\n0xE150\t0x7515\n0xE151\t0x7513\n0xE152\t0x751E\n0xE153\t0x7526\n0xE154\t0x752C\n0xE155\t0x753C\n0xE156\t0x7544\n0xE157\t0x754D\n0xE158\t0x754A\n0xE159\t0x7549\n0xE15A\t0x755B\n0xE15B\t0x7546\n0xE15C\t0x755A\n0xE15D\t0x7569\n0xE15E\t0x7564\n0xE15F\t0x7567\n0xE160\t0x756B\n0xE161\t0x756D\n0xE162\t0x7578\n0xE163\t0x7576\n0xE164\t0x7586\n0xE165\t0x7587\n0xE166\t0x7574\n0xE167\t0x758A\n0xE168\t0x7589\n0xE169\t0x7582\n0xE16A\t0x7594\n0xE16B\t0x759A\n0xE16C\t0x759D\n0xE16D\t0x75A5\n0xE16E\t0x75A3\n0xE16F\t0x75C2\n0xE170\t0x75B3\n0xE171\t0x75C3\n0xE172\t0x75B5\n0xE173\t0x75BD\n0xE174\t0x75B8\n0xE175\t0x75BC\n0xE176\t0x75B1\n0xE177\t0x75CD\n0xE178\t0x75CA\n0xE179\t0x75D2\n0xE17A\t0x75D9\n0xE17B\t0x75E3\n0xE17C\t0x75DE\n0xE17D\t0x75FE\n0xE17E\t0x75FF\n0xE180\t0x75FC\n0xE181\t0x7601\n0xE182\t0x75F0\n0xE183\t0x75FA\n0xE184\t0x75F2\n0xE185\t0x75F3\n0xE186\t0x760B\n0xE187\t0x760D\n0xE188\t0x7609\n0xE189\t0x761F\n0xE18A\t0x7627\n0xE18B\t0x7620\n0xE18C\t0x7621\n0xE18D\t0x7622\n0xE18E\t0x7624\n0xE18F\t0x7634\n0xE190\t0x7630\n0xE191\t0x763B\n0xE192\t0x7647\n0xE193\t0x7648\n0xE194\t0x7646\n0xE195\t0x765C\n0xE196\t0x7658\n0xE197\t0x7661\n0xE198\t0x7662\n0xE199\t0x7668\n0xE19A\t0x7669\n0xE19B\t0x766A\n0xE19C\t0x7667\n0xE19D\t0x766C\n0xE19E\t0x7670\n0xE19F\t0x7672\n0xE1A0\t0x7676\n0xE1A1\t0x7678\n0xE1A2\t0x767C\n0xE1A3\t0x7680\n0xE1A4\t0x7683\n0xE1A5\t0x7688\n0xE1A6\t0x768B\n0xE1A7\t0x768E\n0xE1A8\t0x7696\n0xE1A9\t0x7693\n0xE1AA\t0x7699\n0xE1AB\t0x769A\n0xE1AC\t0x76B0\n0xE1AD\t0x76B4\n0xE1AE\t0x76B8\n0xE1AF\t0x76B9\n0xE1B0\t0x76BA\n0xE1B1\t0x76C2\n0xE1B2\t0x76CD\n0xE1B3\t0x76D6\n0xE1B4\t0x76D2\n0xE1B5\t0x76DE\n0xE1B6\t0x76E1\n0xE1B7\t0x76E5\n0xE1B8\t0x76E7\n0xE1B9\t0x76EA\n0xE1BA\t0x862F\n0xE1BB\t0x76FB\n0xE1BC\t0x7708\n0xE1BD\t0x7707\n0xE1BE\t0x7704\n0xE1BF\t0x7729\n0xE1C0\t0x7724\n0xE1C1\t0x771E\n0xE1C2\t0x7725\n0xE1C3\t0x7726\n0xE1C4\t0x771B\n0xE1C5\t0x7737\n0xE1C6\t0x7738\n0xE1C7\t0x7747\n0xE1C8\t0x775A\n0xE1C9\t0x7768\n0xE1CA\t0x776B\n0xE1CB\t0x775B\n0xE1CC\t0x7765\n0xE1CD\t0x777F\n0xE1CE\t0x777E\n0xE1CF\t0x7779\n0xE1D0\t0x778E\n0xE1D1\t0x778B\n0xE1D2\t0x7791\n0xE1D3\t0x77A0\n0xE1D4\t0x779E\n0xE1D5\t0x77B0\n0xE1D6\t0x77B6\n0xE1D7\t0x77B9\n0xE1D8\t0x77BF\n0xE1D9\t0x77BC\n0xE1DA\t0x77BD\n0xE1DB\t0x77BB\n0xE1DC\t0x77C7\n0xE1DD\t0x77CD\n0xE1DE\t0x77D7\n0xE1DF\t0x77DA\n0xE1E0\t0x77DC\n0xE1E1\t0x77E3\n0xE1E2\t0x77EE\n0xE1E3\t0x77FC\n0xE1E4\t0x780C\n0xE1E5\t0x7812\n0xE1E6\t0x7926\n0xE1E7\t0x7820\n0xE1E8\t0x792A\n0xE1E9\t0x7845\n0xE1EA\t0x788E\n0xE1EB\t0x7874\n0xE1EC\t0x7886\n0xE1ED\t0x787C\n0xE1EE\t0x789A\n0xE1EF\t0x788C\n0xE1F0\t0x78A3\n0xE1F1\t0x78B5\n0xE1F2\t0x78AA\n0xE1F3\t0x78AF\n0xE1F4\t0x78D1\n0xE1F5\t0x78C6\n0xE1F6\t0x78CB\n0xE1F7\t0x78D4\n0xE1F8\t0x78BE\n0xE1F9\t0x78BC\n0xE1FA\t0x78C5\n0xE1FB\t0x78CA\n0xE1FC\t0x78EC\n0xE240\t0x78E7\n0xE241\t0x78DA\n0xE242\t0x78FD\n0xE243\t0x78F4\n0xE244\t0x7907\n0xE245\t0x7912\n0xE246\t0x7911\n0xE247\t0x7919\n0xE248\t0x792C\n0xE249\t0x792B\n0xE24A\t0x7940\n0xE24B\t0x7960\n0xE24C\t0x7957\n0xE24D\t0x795F\n0xE24E\t0x795A\n0xE24F\t0x7955\n0xE250\t0x7953\n0xE251\t0x797A\n0xE252\t0x797F\n0xE253\t0x798A\n0xE254\t0x799D\n0xE255\t0x79A7\n0xE256\t0x9F4B\n0xE257\t0x79AA\n0xE258\t0x79AE\n0xE259\t0x79B3\n0xE25A\t0x79B9\n0xE25B\t0x79BA\n0xE25C\t0x79C9\n0xE25D\t0x79D5\n0xE25E\t0x79E7\n0xE25F\t0x79EC\n0xE260\t0x79E1\n0xE261\t0x79E3\n0xE262\t0x7A08\n0xE263\t0x7A0D\n0xE264\t0x7A18\n0xE265\t0x7A19\n0xE266\t0x7A20\n0xE267\t0x7A1F\n0xE268\t0x7980\n0xE269\t0x7A31\n0xE26A\t0x7A3B\n0xE26B\t0x7A3E\n0xE26C\t0x7A37\n0xE26D\t0x7A43\n0xE26E\t0x7A57\n0xE26F\t0x7A49\n0xE270\t0x7A61\n0xE271\t0x7A62\n0xE272\t0x7A69\n0xE273\t0x9F9D\n0xE274\t0x7A70\n0xE275\t0x7A79\n0xE276\t0x7A7D\n0xE277\t0x7A88\n0xE278\t0x7A97\n0xE279\t0x7A95\n0xE27A\t0x7A98\n0xE27B\t0x7A96\n0xE27C\t0x7AA9\n0xE27D\t0x7AC8\n0xE27E\t0x7AB0\n0xE280\t0x7AB6\n0xE281\t0x7AC5\n0xE282\t0x7AC4\n0xE283\t0x7ABF\n0xE284\t0x9083\n0xE285\t0x7AC7\n0xE286\t0x7ACA\n0xE287\t0x7ACD\n0xE288\t0x7ACF\n0xE289\t0x7AD5\n0xE28A\t0x7AD3\n0xE28B\t0x7AD9\n0xE28C\t0x7ADA\n0xE28D\t0x7ADD\n0xE28E\t0x7AE1\n0xE28F\t0x7AE2\n0xE290\t0x7AE6\n0xE291\t0x7AED\n0xE292\t0x7AF0\n0xE293\t0x7B02\n0xE294\t0x7B0F\n0xE295\t0x7B0A\n0xE296\t0x7B06\n0xE297\t0x7B33\n0xE298\t0x7B18\n0xE299\t0x7B19\n0xE29A\t0x7B1E\n0xE29B\t0x7B35\n0xE29C\t0x7B28\n0xE29D\t0x7B36\n0xE29E\t0x7B50\n0xE29F\t0x7B7A\n0xE2A0\t0x7B04\n0xE2A1\t0x7B4D\n0xE2A2\t0x7B0B\n0xE2A3\t0x7B4C\n0xE2A4\t0x7B45\n0xE2A5\t0x7B75\n0xE2A6\t0x7B65\n0xE2A7\t0x7B74\n0xE2A8\t0x7B67\n0xE2A9\t0x7B70\n0xE2AA\t0x7B71\n0xE2AB\t0x7B6C\n0xE2AC\t0x7B6E\n0xE2AD\t0x7B9D\n0xE2AE\t0x7B98\n0xE2AF\t0x7B9F\n0xE2B0\t0x7B8D\n0xE2B1\t0x7B9C\n0xE2B2\t0x7B9A\n0xE2B3\t0x7B8B\n0xE2B4\t0x7B92\n0xE2B5\t0x7B8F\n0xE2B6\t0x7B5D\n0xE2B7\t0x7B99\n0xE2B8\t0x7BCB\n0xE2B9\t0x7BC1\n0xE2BA\t0x7BCC\n0xE2BB\t0x7BCF\n0xE2BC\t0x7BB4\n0xE2BD\t0x7BC6\n0xE2BE\t0x7BDD\n0xE2BF\t0x7BE9\n0xE2C0\t0x7C11\n0xE2C1\t0x7C14\n0xE2C2\t0x7BE6\n0xE2C3\t0x7BE5\n0xE2C4\t0x7C60\n0xE2C5\t0x7C00\n0xE2C6\t0x7C07\n0xE2C7\t0x7C13\n0xE2C8\t0x7BF3\n0xE2C9\t0x7BF7\n0xE2CA\t0x7C17\n0xE2CB\t0x7C0D\n0xE2CC\t0x7BF6\n0xE2CD\t0x7C23\n0xE2CE\t0x7C27\n0xE2CF\t0x7C2A\n0xE2D0\t0x7C1F\n0xE2D1\t0x7C37\n0xE2D2\t0x7C2B\n0xE2D3\t0x7C3D\n0xE2D4\t0x7C4C\n0xE2D5\t0x7C43\n0xE2D6\t0x7C54\n0xE2D7\t0x7C4F\n0xE2D8\t0x7C40\n0xE2D9\t0x7C50\n0xE2DA\t0x7C58\n0xE2DB\t0x7C5F\n0xE2DC\t0x7C64\n0xE2DD\t0x7C56\n0xE2DE\t0x7C65\n0xE2DF\t0x7C6C\n0xE2E0\t0x7C75\n0xE2E1\t0x7C83\n0xE2E2\t0x7C90\n0xE2E3\t0x7CA4\n0xE2E4\t0x7CAD\n0xE2E5\t0x7CA2\n0xE2E6\t0x7CAB\n0xE2E7\t0x7CA1\n0xE2E8\t0x7CA8\n0xE2E9\t0x7CB3\n0xE2EA\t0x7CB2\n0xE2EB\t0x7CB1\n0xE2EC\t0x7CAE\n0xE2ED\t0x7CB9\n0xE2EE\t0x7CBD\n0xE2EF\t0x7CC0\n0xE2F0\t0x7CC5\n0xE2F1\t0x7CC2\n0xE2F2\t0x7CD8\n0xE2F3\t0x7CD2\n0xE2F4\t0x7CDC\n0xE2F5\t0x7CE2\n0xE2F6\t0x9B3B\n0xE2F7\t0x7CEF\n0xE2F8\t0x7CF2\n0xE2F9\t0x7CF4\n0xE2FA\t0x7CF6\n0xE2FB\t0x7CFA\n0xE2FC\t0x7D06\n0xE340\t0x7D02\n0xE341\t0x7D1C\n0xE342\t0x7D15\n0xE343\t0x7D0A\n0xE344\t0x7D45\n0xE345\t0x7D4B\n0xE346\t0x7D2E\n0xE347\t0x7D32\n0xE348\t0x7D3F\n0xE349\t0x7D35\n0xE34A\t0x7D46\n0xE34B\t0x7D73\n0xE34C\t0x7D56\n0xE34D\t0x7D4E\n0xE34E\t0x7D72\n0xE34F\t0x7D68\n0xE350\t0x7D6E\n0xE351\t0x7D4F\n0xE352\t0x7D63\n0xE353\t0x7D93\n0xE354\t0x7D89\n0xE355\t0x7D5B\n0xE356\t0x7D8F\n0xE357\t0x7D7D\n0xE358\t0x7D9B\n0xE359\t0x7DBA\n0xE35A\t0x7DAE\n0xE35B\t0x7DA3\n0xE35C\t0x7DB5\n0xE35D\t0x7DC7\n0xE35E\t0x7DBD\n0xE35F\t0x7DAB\n0xE360\t0x7E3D\n0xE361\t0x7DA2\n0xE362\t0x7DAF\n0xE363\t0x7DDC\n0xE364\t0x7DB8\n0xE365\t0x7D9F\n0xE366\t0x7DB0\n0xE367\t0x7DD8\n0xE368\t0x7DDD\n0xE369\t0x7DE4\n0xE36A\t0x7DDE\n0xE36B\t0x7DFB\n0xE36C\t0x7DF2\n0xE36D\t0x7DE1\n0xE36E\t0x7E05\n0xE36F\t0x7E0A\n0xE370\t0x7E23\n0xE371\t0x7E21\n0xE372\t0x7E12\n0xE373\t0x7E31\n0xE374\t0x7E1F\n0xE375\t0x7E09\n0xE376\t0x7E0B\n0xE377\t0x7E22\n0xE378\t0x7E46\n0xE379\t0x7E66\n0xE37A\t0x7E3B\n0xE37B\t0x7E35\n0xE37C\t0x7E39\n0xE37D\t0x7E43\n0xE37E\t0x7E37\n0xE380\t0x7E32\n0xE381\t0x7E3A\n0xE382\t0x7E67\n0xE383\t0x7E5D\n0xE384\t0x7E56\n0xE385\t0x7E5E\n0xE386\t0x7E59\n0xE387\t0x7E5A\n0xE388\t0x7E79\n0xE389\t0x7E6A\n0xE38A\t0x7E69\n0xE38B\t0x7E7C\n0xE38C\t0x7E7B\n0xE38D\t0x7E83\n0xE38E\t0x7DD5\n0xE38F\t0x7E7D\n0xE390\t0x8FAE\n0xE391\t0x7E7F\n0xE392\t0x7E88\n0xE393\t0x7E89\n0xE394\t0x7E8C\n0xE395\t0x7E92\n0xE396\t0x7E90\n0xE397\t0x7E93\n0xE398\t0x7E94\n0xE399\t0x7E96\n0xE39A\t0x7E8E\n0xE39B\t0x7E9B\n0xE39C\t0x7E9C\n0xE39D\t0x7F38\n0xE39E\t0x7F3A\n0xE39F\t0x7F45\n0xE3A0\t0x7F4C\n0xE3A1\t0x7F4D\n0xE3A2\t0x7F4E\n0xE3A3\t0x7F50\n0xE3A4\t0x7F51\n0xE3A5\t0x7F55\n0xE3A6\t0x7F54\n0xE3A7\t0x7F58\n0xE3A8\t0x7F5F\n0xE3A9\t0x7F60\n0xE3AA\t0x7F68\n0xE3AB\t0x7F69\n0xE3AC\t0x7F67\n0xE3AD\t0x7F78\n0xE3AE\t0x7F82\n0xE3AF\t0x7F86\n0xE3B0\t0x7F83\n0xE3B1\t0x7F88\n0xE3B2\t0x7F87\n0xE3B3\t0x7F8C\n0xE3B4\t0x7F94\n0xE3B5\t0x7F9E\n0xE3B6\t0x7F9D\n0xE3B7\t0x7F9A\n0xE3B8\t0x7FA3\n0xE3B9\t0x7FAF\n0xE3BA\t0x7FB2\n0xE3BB\t0x7FB9\n0xE3BC\t0x7FAE\n0xE3BD\t0x7FB6\n0xE3BE\t0x7FB8\n0xE3BF\t0x8B71\n0xE3C0\t0x7FC5\n0xE3C1\t0x7FC6\n0xE3C2\t0x7FCA\n0xE3C3\t0x7FD5\n0xE3C4\t0x7FD4\n0xE3C5\t0x7FE1\n0xE3C6\t0x7FE6\n0xE3C7\t0x7FE9\n0xE3C8\t0x7FF3\n0xE3C9\t0x7FF9\n0xE3CA\t0x98DC\n0xE3CB\t0x8006\n0xE3CC\t0x8004\n0xE3CD\t0x800B\n0xE3CE\t0x8012\n0xE3CF\t0x8018\n0xE3D0\t0x8019\n0xE3D1\t0x801C\n0xE3D2\t0x8021\n0xE3D3\t0x8028\n0xE3D4\t0x803F\n0xE3D5\t0x803B\n0xE3D6\t0x804A\n0xE3D7\t0x8046\n0xE3D8\t0x8052\n0xE3D9\t0x8058\n0xE3DA\t0x805A\n0xE3DB\t0x805F\n0xE3DC\t0x8062\n0xE3DD\t0x8068\n0xE3DE\t0x8073\n0xE3DF\t0x8072\n0xE3E0\t0x8070\n0xE3E1\t0x8076\n0xE3E2\t0x8079\n0xE3E3\t0x807D\n0xE3E4\t0x807F\n0xE3E5\t0x8084\n0xE3E6\t0x8086\n0xE3E7\t0x8085\n0xE3E8\t0x809B\n0xE3E9\t0x8093\n0xE3EA\t0x809A\n0xE3EB\t0x80AD\n0xE3EC\t0x5190\n0xE3ED\t0x80AC\n0xE3EE\t0x80DB\n0xE3EF\t0x80E5\n0xE3F0\t0x80D9\n0xE3F1\t0x80DD\n0xE3F2\t0x80C4\n0xE3F3\t0x80DA\n0xE3F4\t0x80D6\n0xE3F5\t0x8109\n0xE3F6\t0x80EF\n0xE3F7\t0x80F1\n0xE3F8\t0x811B\n0xE3F9\t0x8129\n0xE3FA\t0x8123\n0xE3FB\t0x812F\n0xE3FC\t0x814B\n0xE440\t0x968B\n0xE441\t0x8146\n0xE442\t0x813E\n0xE443\t0x8153\n0xE444\t0x8151\n0xE445\t0x80FC\n0xE446\t0x8171\n0xE447\t0x816E\n0xE448\t0x8165\n0xE449\t0x8166\n0xE44A\t0x8174\n0xE44B\t0x8183\n0xE44C\t0x8188\n0xE44D\t0x818A\n0xE44E\t0x8180\n0xE44F\t0x8182\n0xE450\t0x81A0\n0xE451\t0x8195\n0xE452\t0x81A4\n0xE453\t0x81A3\n0xE454\t0x815F\n0xE455\t0x8193\n0xE456\t0x81A9\n0xE457\t0x81B0\n0xE458\t0x81B5\n0xE459\t0x81BE\n0xE45A\t0x81B8\n0xE45B\t0x81BD\n0xE45C\t0x81C0\n0xE45D\t0x81C2\n0xE45E\t0x81BA\n0xE45F\t0x81C9\n0xE460\t0x81CD\n0xE461\t0x81D1\n0xE462\t0x81D9\n0xE463\t0x81D8\n0xE464\t0x81C8\n0xE465\t0x81DA\n0xE466\t0x81DF\n0xE467\t0x81E0\n0xE468\t0x81E7\n0xE469\t0x81FA\n0xE46A\t0x81FB\n0xE46B\t0x81FE\n0xE46C\t0x8201\n0xE46D\t0x8202\n0xE46E\t0x8205\n0xE46F\t0x8207\n0xE470\t0x820A\n0xE471\t0x820D\n0xE472\t0x8210\n0xE473\t0x8216\n0xE474\t0x8229\n0xE475\t0x822B\n0xE476\t0x8238\n0xE477\t0x8233\n0xE478\t0x8240\n0xE479\t0x8259\n0xE47A\t0x8258\n0xE47B\t0x825D\n0xE47C\t0x825A\n0xE47D\t0x825F\n0xE47E\t0x8264\n0xE480\t0x8262\n0xE481\t0x8268\n0xE482\t0x826A\n0xE483\t0x826B\n0xE484\t0x822E\n0xE485\t0x8271\n0xE486\t0x8277\n0xE487\t0x8278\n0xE488\t0x827E\n0xE489\t0x828D\n0xE48A\t0x8292\n0xE48B\t0x82AB\n0xE48C\t0x829F\n0xE48D\t0x82BB\n0xE48E\t0x82AC\n0xE48F\t0x82E1\n0xE490\t0x82E3\n0xE491\t0x82DF\n0xE492\t0x82D2\n0xE493\t0x82F4\n0xE494\t0x82F3\n0xE495\t0x82FA\n0xE496\t0x8393\n0xE497\t0x8303\n0xE498\t0x82FB\n0xE499\t0x82F9\n0xE49A\t0x82DE\n0xE49B\t0x8306\n0xE49C\t0x82DC\n0xE49D\t0x8309\n0xE49E\t0x82D9\n0xE49F\t0x8335\n0xE4A0\t0x8334\n0xE4A1\t0x8316\n0xE4A2\t0x8332\n0xE4A3\t0x8331\n0xE4A4\t0x8340\n0xE4A5\t0x8339\n0xE4A6\t0x8350\n0xE4A7\t0x8345\n0xE4A8\t0x832F\n0xE4A9\t0x832B\n0xE4AA\t0x8317\n0xE4AB\t0x8318\n0xE4AC\t0x8385\n0xE4AD\t0x839A\n0xE4AE\t0x83AA\n0xE4AF\t0x839F\n0xE4B0\t0x83A2\n0xE4B1\t0x8396\n0xE4B2\t0x8323\n0xE4B3\t0x838E\n0xE4B4\t0x8387\n0xE4B5\t0x838A\n0xE4B6\t0x837C\n0xE4B7\t0x83B5\n0xE4B8\t0x8373\n0xE4B9\t0x8375\n0xE4BA\t0x83A0\n0xE4BB\t0x8389\n0xE4BC\t0x83A8\n0xE4BD\t0x83F4\n0xE4BE\t0x8413\n0xE4BF\t0x83EB\n0xE4C0\t0x83CE\n0xE4C1\t0x83FD\n0xE4C2\t0x8403\n0xE4C3\t0x83D8\n0xE4C4\t0x840B\n0xE4C5\t0x83C1\n0xE4C6\t0x83F7\n0xE4C7\t0x8407\n0xE4C8\t0x83E0\n0xE4C9\t0x83F2\n0xE4CA\t0x840D\n0xE4CB\t0x8422\n0xE4CC\t0x8420\n0xE4CD\t0x83BD\n0xE4CE\t0x8438\n0xE4CF\t0x8506\n0xE4D0\t0x83FB\n0xE4D1\t0x846D\n0xE4D2\t0x842A\n0xE4D3\t0x843C\n0xE4D4\t0x855A\n0xE4D5\t0x8484\n0xE4D6\t0x8477\n0xE4D7\t0x846B\n0xE4D8\t0x84AD\n0xE4D9\t0x846E\n0xE4DA\t0x8482\n0xE4DB\t0x8469\n0xE4DC\t0x8446\n0xE4DD\t0x842C\n0xE4DE\t0x846F\n0xE4DF\t0x8479\n0xE4E0\t0x8435\n0xE4E1\t0x84CA\n0xE4E2\t0x8462\n0xE4E3\t0x84B9\n0xE4E4\t0x84BF\n0xE4E5\t0x849F\n0xE4E6\t0x84D9\n0xE4E7\t0x84CD\n0xE4E8\t0x84BB\n0xE4E9\t0x84DA\n0xE4EA\t0x84D0\n0xE4EB\t0x84C1\n0xE4EC\t0x84C6\n0xE4ED\t0x84D6\n0xE4EE\t0x84A1\n0xE4EF\t0x8521\n0xE4F0\t0x84FF\n0xE4F1\t0x84F4\n0xE4F2\t0x8517\n0xE4F3\t0x8518\n0xE4F4\t0x852C\n0xE4F5\t0x851F\n0xE4F6\t0x8515\n0xE4F7\t0x8514\n0xE4F8\t0x84FC\n0xE4F9\t0x8540\n0xE4FA\t0x8563\n0xE4FB\t0x8558\n0xE4FC\t0x8548\n0xE540\t0x8541\n0xE541\t0x8602\n0xE542\t0x854B\n0xE543\t0x8555\n0xE544\t0x8580\n0xE545\t0x85A4\n0xE546\t0x8588\n0xE547\t0x8591\n0xE548\t0x858A\n0xE549\t0x85A8\n0xE54A\t0x856D\n0xE54B\t0x8594\n0xE54C\t0x859B\n0xE54D\t0x85EA\n0xE54E\t0x8587\n0xE54F\t0x859C\n0xE550\t0x8577\n0xE551\t0x857E\n0xE552\t0x8590\n0xE553\t0x85C9\n0xE554\t0x85BA\n0xE555\t0x85CF\n0xE556\t0x85B9\n0xE557\t0x85D0\n0xE558\t0x85D5\n0xE559\t0x85DD\n0xE55A\t0x85E5\n0xE55B\t0x85DC\n0xE55C\t0x85F9\n0xE55D\t0x860A\n0xE55E\t0x8613\n0xE55F\t0x860B\n0xE560\t0x85FE\n0xE561\t0x85FA\n0xE562\t0x8606\n0xE563\t0x8622\n0xE564\t0x861A\n0xE565\t0x8630\n0xE566\t0x863F\n0xE567\t0x864D\n0xE568\t0x4E55\n0xE569\t0x8654\n0xE56A\t0x865F\n0xE56B\t0x8667\n0xE56C\t0x8671\n0xE56D\t0x8693\n0xE56E\t0x86A3\n0xE56F\t0x86A9\n0xE570\t0x86AA\n0xE571\t0x868B\n0xE572\t0x868C\n0xE573\t0x86B6\n0xE574\t0x86AF\n0xE575\t0x86C4\n0xE576\t0x86C6\n0xE577\t0x86B0\n0xE578\t0x86C9\n0xE579\t0x8823\n0xE57A\t0x86AB\n0xE57B\t0x86D4\n0xE57C\t0x86DE\n0xE57D\t0x86E9\n0xE57E\t0x86EC\n0xE580\t0x86DF\n0xE581\t0x86DB\n0xE582\t0x86EF\n0xE583\t0x8712\n0xE584\t0x8706\n0xE585\t0x8708\n0xE586\t0x8700\n0xE587\t0x8703\n0xE588\t0x86FB\n0xE589\t0x8711\n0xE58A\t0x8709\n0xE58B\t0x870D\n0xE58C\t0x86F9\n0xE58D\t0x870A\n0xE58E\t0x8734\n0xE58F\t0x873F\n0xE590\t0x8737\n0xE591\t0x873B\n0xE592\t0x8725\n0xE593\t0x8729\n0xE594\t0x871A\n0xE595\t0x8760\n0xE596\t0x875F\n0xE597\t0x8778\n0xE598\t0x874C\n0xE599\t0x874E\n0xE59A\t0x8774\n0xE59B\t0x8757\n0xE59C\t0x8768\n0xE59D\t0x876E\n0xE59E\t0x8759\n0xE59F\t0x8753\n0xE5A0\t0x8763\n0xE5A1\t0x876A\n0xE5A2\t0x8805\n0xE5A3\t0x87A2\n0xE5A4\t0x879F\n0xE5A5\t0x8782\n0xE5A6\t0x87AF\n0xE5A7\t0x87CB\n0xE5A8\t0x87BD\n0xE5A9\t0x87C0\n0xE5AA\t0x87D0\n0xE5AB\t0x96D6\n0xE5AC\t0x87AB\n0xE5AD\t0x87C4\n0xE5AE\t0x87B3\n0xE5AF\t0x87C7\n0xE5B0\t0x87C6\n0xE5B1\t0x87BB\n0xE5B2\t0x87EF\n0xE5B3\t0x87F2\n0xE5B4\t0x87E0\n0xE5B5\t0x880F\n0xE5B6\t0x880D\n0xE5B7\t0x87FE\n0xE5B8\t0x87F6\n0xE5B9\t0x87F7\n0xE5BA\t0x880E\n0xE5BB\t0x87D2\n0xE5BC\t0x8811\n0xE5BD\t0x8816\n0xE5BE\t0x8815\n0xE5BF\t0x8822\n0xE5C0\t0x8821\n0xE5C1\t0x8831\n0xE5C2\t0x8836\n0xE5C3\t0x8839\n0xE5C4\t0x8827\n0xE5C5\t0x883B\n0xE5C6\t0x8844\n0xE5C7\t0x8842\n0xE5C8\t0x8852\n0xE5C9\t0x8859\n0xE5CA\t0x885E\n0xE5CB\t0x8862\n0xE5CC\t0x886B\n0xE5CD\t0x8881\n0xE5CE\t0x887E\n0xE5CF\t0x889E\n0xE5D0\t0x8875\n0xE5D1\t0x887D\n0xE5D2\t0x88B5\n0xE5D3\t0x8872\n0xE5D4\t0x8882\n0xE5D5\t0x8897\n0xE5D6\t0x8892\n0xE5D7\t0x88AE\n0xE5D8\t0x8899\n0xE5D9\t0x88A2\n0xE5DA\t0x888D\n0xE5DB\t0x88A4\n0xE5DC\t0x88B0\n0xE5DD\t0x88BF\n0xE5DE\t0x88B1\n0xE5DF\t0x88C3\n0xE5E0\t0x88C4\n0xE5E1\t0x88D4\n0xE5E2\t0x88D8\n0xE5E3\t0x88D9\n0xE5E4\t0x88DD\n0xE5E5\t0x88F9\n0xE5E6\t0x8902\n0xE5E7\t0x88FC\n0xE5E8\t0x88F4\n0xE5E9\t0x88E8\n0xE5EA\t0x88F2\n0xE5EB\t0x8904\n0xE5EC\t0x890C\n0xE5ED\t0x890A\n0xE5EE\t0x8913\n0xE5EF\t0x8943\n0xE5F0\t0x891E\n0xE5F1\t0x8925\n0xE5F2\t0x892A\n0xE5F3\t0x892B\n0xE5F4\t0x8941\n0xE5F5\t0x8944\n0xE5F6\t0x893B\n0xE5F7\t0x8936\n0xE5F8\t0x8938\n0xE5F9\t0x894C\n0xE5FA\t0x891D\n0xE5FB\t0x8960\n0xE5FC\t0x895E\n0xE640\t0x8966\n0xE641\t0x8964\n0xE642\t0x896D\n0xE643\t0x896A\n0xE644\t0x896F\n0xE645\t0x8974\n0xE646\t0x8977\n0xE647\t0x897E\n0xE648\t0x8983\n0xE649\t0x8988\n0xE64A\t0x898A\n0xE64B\t0x8993\n0xE64C\t0x8998\n0xE64D\t0x89A1\n0xE64E\t0x89A9\n0xE64F\t0x89A6\n0xE650\t0x89AC\n0xE651\t0x89AF\n0xE652\t0x89B2\n0xE653\t0x89BA\n0xE654\t0x89BD\n0xE655\t0x89BF\n0xE656\t0x89C0\n0xE657\t0x89DA\n0xE658\t0x89DC\n0xE659\t0x89DD\n0xE65A\t0x89E7\n0xE65B\t0x89F4\n0xE65C\t0x89F8\n0xE65D\t0x8A03\n0xE65E\t0x8A16\n0xE65F\t0x8A10\n0xE660\t0x8A0C\n0xE661\t0x8A1B\n0xE662\t0x8A1D\n0xE663\t0x8A25\n0xE664\t0x8A36\n0xE665\t0x8A41\n0xE666\t0x8A5B\n0xE667\t0x8A52\n0xE668\t0x8A46\n0xE669\t0x8A48\n0xE66A\t0x8A7C\n0xE66B\t0x8A6D\n0xE66C\t0x8A6C\n0xE66D\t0x8A62\n0xE66E\t0x8A85\n0xE66F\t0x8A82\n0xE670\t0x8A84\n0xE671\t0x8AA8\n0xE672\t0x8AA1\n0xE673\t0x8A91\n0xE674\t0x8AA5\n0xE675\t0x8AA6\n0xE676\t0x8A9A\n0xE677\t0x8AA3\n0xE678\t0x8AC4\n0xE679\t0x8ACD\n0xE67A\t0x8AC2\n0xE67B\t0x8ADA\n0xE67C\t0x8AEB\n0xE67D\t0x8AF3\n0xE67E\t0x8AE7\n0xE680\t0x8AE4\n0xE681\t0x8AF1\n0xE682\t0x8B14\n0xE683\t0x8AE0\n0xE684\t0x8AE2\n0xE685\t0x8AF7\n0xE686\t0x8ADE\n0xE687\t0x8ADB\n0xE688\t0x8B0C\n0xE689\t0x8B07\n0xE68A\t0x8B1A\n0xE68B\t0x8AE1\n0xE68C\t0x8B16\n0xE68D\t0x8B10\n0xE68E\t0x8B17\n0xE68F\t0x8B20\n0xE690\t0x8B33\n0xE691\t0x97AB\n0xE692\t0x8B26\n0xE693\t0x8B2B\n0xE694\t0x8B3E\n0xE695\t0x8B28\n0xE696\t0x8B41\n0xE697\t0x8B4C\n0xE698\t0x8B4F\n0xE699\t0x8B4E\n0xE69A\t0x8B49\n0xE69B\t0x8B56\n0xE69C\t0x8B5B\n0xE69D\t0x8B5A\n0xE69E\t0x8B6B\n0xE69F\t0x8B5F\n0xE6A0\t0x8B6C\n0xE6A1\t0x8B6F\n0xE6A2\t0x8B74\n0xE6A3\t0x8B7D\n0xE6A4\t0x8B80\n0xE6A5\t0x8B8C\n0xE6A6\t0x8B8E\n0xE6A7\t0x8B92\n0xE6A8\t0x8B93\n0xE6A9\t0x8B96\n0xE6AA\t0x8B99\n0xE6AB\t0x8B9A\n0xE6AC\t0x8C3A\n0xE6AD\t0x8C41\n0xE6AE\t0x8C3F\n0xE6AF\t0x8C48\n0xE6B0\t0x8C4C\n0xE6B1\t0x8C4E\n0xE6B2\t0x8C50\n0xE6B3\t0x8C55\n0xE6B4\t0x8C62\n0xE6B5\t0x8C6C\n0xE6B6\t0x8C78\n0xE6B7\t0x8C7A\n0xE6B8\t0x8C82\n0xE6B9\t0x8C89\n0xE6BA\t0x8C85\n0xE6BB\t0x8C8A\n0xE6BC\t0x8C8D\n0xE6BD\t0x8C8E\n0xE6BE\t0x8C94\n0xE6BF\t0x8C7C\n0xE6C0\t0x8C98\n0xE6C1\t0x621D\n0xE6C2\t0x8CAD\n0xE6C3\t0x8CAA\n0xE6C4\t0x8CBD\n0xE6C5\t0x8CB2\n0xE6C6\t0x8CB3\n0xE6C7\t0x8CAE\n0xE6C8\t0x8CB6\n0xE6C9\t0x8CC8\n0xE6CA\t0x8CC1\n0xE6CB\t0x8CE4\n0xE6CC\t0x8CE3\n0xE6CD\t0x8CDA\n0xE6CE\t0x8CFD\n0xE6CF\t0x8CFA\n0xE6D0\t0x8CFB\n0xE6D1\t0x8D04\n0xE6D2\t0x8D05\n0xE6D3\t0x8D0A\n0xE6D4\t0x8D07\n0xE6D5\t0x8D0F\n0xE6D6\t0x8D0D\n0xE6D7\t0x8D10\n0xE6D8\t0x9F4E\n0xE6D9\t0x8D13\n0xE6DA\t0x8CCD\n0xE6DB\t0x8D14\n0xE6DC\t0x8D16\n0xE6DD\t0x8D67\n0xE6DE\t0x8D6D\n0xE6DF\t0x8D71\n0xE6E0\t0x8D73\n0xE6E1\t0x8D81\n0xE6E2\t0x8D99\n0xE6E3\t0x8DC2\n0xE6E4\t0x8DBE\n0xE6E5\t0x8DBA\n0xE6E6\t0x8DCF\n0xE6E7\t0x8DDA\n0xE6E8\t0x8DD6\n0xE6E9\t0x8DCC\n0xE6EA\t0x8DDB\n0xE6EB\t0x8DCB\n0xE6EC\t0x8DEA\n0xE6ED\t0x8DEB\n0xE6EE\t0x8DDF\n0xE6EF\t0x8DE3\n0xE6F0\t0x8DFC\n0xE6F1\t0x8E08\n0xE6F2\t0x8E09\n0xE6F3\t0x8DFF\n0xE6F4\t0x8E1D\n0xE6F5\t0x8E1E\n0xE6F6\t0x8E10\n0xE6F7\t0x8E1F\n0xE6F8\t0x8E42\n0xE6F9\t0x8E35\n0xE6FA\t0x8E30\n0xE6FB\t0x8E34\n0xE6FC\t0x8E4A\n0xE740\t0x8E47\n0xE741\t0x8E49\n0xE742\t0x8E4C\n0xE743\t0x8E50\n0xE744\t0x8E48\n0xE745\t0x8E59\n0xE746\t0x8E64\n0xE747\t0x8E60\n0xE748\t0x8E2A\n0xE749\t0x8E63\n0xE74A\t0x8E55\n0xE74B\t0x8E76\n0xE74C\t0x8E72\n0xE74D\t0x8E7C\n0xE74E\t0x8E81\n0xE74F\t0x8E87\n0xE750\t0x8E85\n0xE751\t0x8E84\n0xE752\t0x8E8B\n0xE753\t0x8E8A\n0xE754\t0x8E93\n0xE755\t0x8E91\n0xE756\t0x8E94\n0xE757\t0x8E99\n0xE758\t0x8EAA\n0xE759\t0x8EA1\n0xE75A\t0x8EAC\n0xE75B\t0x8EB0\n0xE75C\t0x8EC6\n0xE75D\t0x8EB1\n0xE75E\t0x8EBE\n0xE75F\t0x8EC5\n0xE760\t0x8EC8\n0xE761\t0x8ECB\n0xE762\t0x8EDB\n0xE763\t0x8EE3\n0xE764\t0x8EFC\n0xE765\t0x8EFB\n0xE766\t0x8EEB\n0xE767\t0x8EFE\n0xE768\t0x8F0A\n0xE769\t0x8F05\n0xE76A\t0x8F15\n0xE76B\t0x8F12\n0xE76C\t0x8F19\n0xE76D\t0x8F13\n0xE76E\t0x8F1C\n0xE76F\t0x8F1F\n0xE770\t0x8F1B\n0xE771\t0x8F0C\n0xE772\t0x8F26\n0xE773\t0x8F33\n0xE774\t0x8F3B\n0xE775\t0x8F39\n0xE776\t0x8F45\n0xE777\t0x8F42\n0xE778\t0x8F3E\n0xE779\t0x8F4C\n0xE77A\t0x8F49\n0xE77B\t0x8F46\n0xE77C\t0x8F4E\n0xE77D\t0x8F57\n0xE77E\t0x8F5C\n0xE780\t0x8F62\n0xE781\t0x8F63\n0xE782\t0x8F64\n0xE783\t0x8F9C\n0xE784\t0x8F9F\n0xE785\t0x8FA3\n0xE786\t0x8FAD\n0xE787\t0x8FAF\n0xE788\t0x8FB7\n0xE789\t0x8FDA\n0xE78A\t0x8FE5\n0xE78B\t0x8FE2\n0xE78C\t0x8FEA\n0xE78D\t0x8FEF\n0xE78E\t0x9087\n0xE78F\t0x8FF4\n0xE790\t0x9005\n0xE791\t0x8FF9\n0xE792\t0x8FFA\n0xE793\t0x9011\n0xE794\t0x9015\n0xE795\t0x9021\n0xE796\t0x900D\n0xE797\t0x901E\n0xE798\t0x9016\n0xE799\t0x900B\n0xE79A\t0x9027\n0xE79B\t0x9036\n0xE79C\t0x9035\n0xE79D\t0x9039\n0xE79E\t0x8FF8\n0xE79F\t0x904F\n0xE7A0\t0x9050\n0xE7A1\t0x9051\n0xE7A2\t0x9052\n0xE7A3\t0x900E\n0xE7A4\t0x9049\n0xE7A5\t0x903E\n0xE7A6\t0x9056\n0xE7A7\t0x9058\n0xE7A8\t0x905E\n0xE7A9\t0x9068\n0xE7AA\t0x906F\n0xE7AB\t0x9076\n0xE7AC\t0x96A8\n0xE7AD\t0x9072\n0xE7AE\t0x9082\n0xE7AF\t0x907D\n0xE7B0\t0x9081\n0xE7B1\t0x9080\n0xE7B2\t0x908A\n0xE7B3\t0x9089\n0xE7B4\t0x908F\n0xE7B5\t0x90A8\n0xE7B6\t0x90AF\n0xE7B7\t0x90B1\n0xE7B8\t0x90B5\n0xE7B9\t0x90E2\n0xE7BA\t0x90E4\n0xE7BB\t0x6248\n0xE7BC\t0x90DB\n0xE7BD\t0x9102\n0xE7BE\t0x9112\n0xE7BF\t0x9119\n0xE7C0\t0x9132\n0xE7C1\t0x9130\n0xE7C2\t0x914A\n0xE7C3\t0x9156\n0xE7C4\t0x9158\n0xE7C5\t0x9163\n0xE7C6\t0x9165\n0xE7C7\t0x9169\n0xE7C8\t0x9173\n0xE7C9\t0x9172\n0xE7CA\t0x918B\n0xE7CB\t0x9189\n0xE7CC\t0x9182\n0xE7CD\t0x91A2\n0xE7CE\t0x91AB\n0xE7CF\t0x91AF\n0xE7D0\t0x91AA\n0xE7D1\t0x91B5\n0xE7D2\t0x91B4\n0xE7D3\t0x91BA\n0xE7D4\t0x91C0\n0xE7D5\t0x91C1\n0xE7D6\t0x91C9\n0xE7D7\t0x91CB\n0xE7D8\t0x91D0\n0xE7D9\t0x91D6\n0xE7DA\t0x91DF\n0xE7DB\t0x91E1\n0xE7DC\t0x91DB\n0xE7DD\t0x91FC\n0xE7DE\t0x91F5\n0xE7DF\t0x91F6\n0xE7E0\t0x921E\n0xE7E1\t0x91FF\n0xE7E2\t0x9214\n0xE7E3\t0x922C\n0xE7E4\t0x9215\n0xE7E5\t0x9211\n0xE7E6\t0x925E\n0xE7E7\t0x9257\n0xE7E8\t0x9245\n0xE7E9\t0x9249\n0xE7EA\t0x9264\n0xE7EB\t0x9248\n0xE7EC\t0x9295\n0xE7ED\t0x923F\n0xE7EE\t0x924B\n0xE7EF\t0x9250\n0xE7F0\t0x929C\n0xE7F1\t0x9296\n0xE7F2\t0x9293\n0xE7F3\t0x929B\n0xE7F4\t0x925A\n0xE7F5\t0x92CF\n0xE7F6\t0x92B9\n0xE7F7\t0x92B7\n0xE7F8\t0x92E9\n0xE7F9\t0x930F\n0xE7FA\t0x92FA\n0xE7FB\t0x9344\n0xE7FC\t0x932E\n0xE840\t0x9319\n0xE841\t0x9322\n0xE842\t0x931A\n0xE843\t0x9323\n0xE844\t0x933A\n0xE845\t0x9335\n0xE846\t0x933B\n0xE847\t0x935C\n0xE848\t0x9360\n0xE849\t0x937C\n0xE84A\t0x936E\n0xE84B\t0x9356\n0xE84C\t0x93B0\n0xE84D\t0x93AC\n0xE84E\t0x93AD\n0xE84F\t0x9394\n0xE850\t0x93B9\n0xE851\t0x93D6\n0xE852\t0x93D7\n0xE853\t0x93E8\n0xE854\t0x93E5\n0xE855\t0x93D8\n0xE856\t0x93C3\n0xE857\t0x93DD\n0xE858\t0x93D0\n0xE859\t0x93C8\n0xE85A\t0x93E4\n0xE85B\t0x941A\n0xE85C\t0x9414\n0xE85D\t0x9413\n0xE85E\t0x9403\n0xE85F\t0x9407\n0xE860\t0x9410\n0xE861\t0x9436\n0xE862\t0x942B\n0xE863\t0x9435\n0xE864\t0x9421\n0xE865\t0x943A\n0xE866\t0x9441\n0xE867\t0x9452\n0xE868\t0x9444\n0xE869\t0x945B\n0xE86A\t0x9460\n0xE86B\t0x9462\n0xE86C\t0x945E\n0xE86D\t0x946A\n0xE86E\t0x9229\n0xE86F\t0x9470\n0xE870\t0x9475\n0xE871\t0x9477\n0xE872\t0x947D\n0xE873\t0x945A\n0xE874\t0x947C\n0xE875\t0x947E\n0xE876\t0x9481\n0xE877\t0x947F\n0xE878\t0x9582\n0xE879\t0x9587\n0xE87A\t0x958A\n0xE87B\t0x9594\n0xE87C\t0x9596\n0xE87D\t0x9598\n0xE87E\t0x9599\n0xE880\t0x95A0\n0xE881\t0x95A8\n0xE882\t0x95A7\n0xE883\t0x95AD\n0xE884\t0x95BC\n0xE885\t0x95BB\n0xE886\t0x95B9\n0xE887\t0x95BE\n0xE888\t0x95CA\n0xE889\t0x6FF6\n0xE88A\t0x95C3\n0xE88B\t0x95CD\n0xE88C\t0x95CC\n0xE88D\t0x95D5\n0xE88E\t0x95D4\n0xE88F\t0x95D6\n0xE890\t0x95DC\n0xE891\t0x95E1\n0xE892\t0x95E5\n0xE893\t0x95E2\n0xE894\t0x9621\n0xE895\t0x9628\n0xE896\t0x962E\n0xE897\t0x962F\n0xE898\t0x9642\n0xE899\t0x964C\n0xE89A\t0x964F\n0xE89B\t0x964B\n0xE89C\t0x9677\n0xE89D\t0x965C\n0xE89E\t0x965E\n0xE89F\t0x965D\n0xE8A0\t0x965F\n0xE8A1\t0x9666\n0xE8A2\t0x9672\n0xE8A3\t0x966C\n0xE8A4\t0x968D\n0xE8A5\t0x9698\n0xE8A6\t0x9695\n0xE8A7\t0x9697\n0xE8A8\t0x96AA\n0xE8A9\t0x96A7\n0xE8AA\t0x96B1\n0xE8AB\t0x96B2\n0xE8AC\t0x96B0\n0xE8AD\t0x96B4\n0xE8AE\t0x96B6\n0xE8AF\t0x96B8\n0xE8B0\t0x96B9\n0xE8B1\t0x96CE\n0xE8B2\t0x96CB\n0xE8B3\t0x96C9\n0xE8B4\t0x96CD\n0xE8B5\t0x894D\n0xE8B6\t0x96DC\n0xE8B7\t0x970D\n0xE8B8\t0x96D5\n0xE8B9\t0x96F9\n0xE8BA\t0x9704\n0xE8BB\t0x9706\n0xE8BC\t0x9708\n0xE8BD\t0x9713\n0xE8BE\t0x970E\n0xE8BF\t0x9711\n0xE8C0\t0x970F\n0xE8C1\t0x9716\n0xE8C2\t0x9719\n0xE8C3\t0x9724\n0xE8C4\t0x972A\n0xE8C5\t0x9730\n0xE8C6\t0x9739\n0xE8C7\t0x973D\n0xE8C8\t0x973E\n0xE8C9\t0x9744\n0xE8CA\t0x9746\n0xE8CB\t0x9748\n0xE8CC\t0x9742\n0xE8CD\t0x9749\n0xE8CE\t0x975C\n0xE8CF\t0x9760\n0xE8D0\t0x9764\n0xE8D1\t0x9766\n0xE8D2\t0x9768\n0xE8D3\t0x52D2\n0xE8D4\t0x976B\n0xE8D5\t0x9771\n0xE8D6\t0x9779\n0xE8D7\t0x9785\n0xE8D8\t0x977C\n0xE8D9\t0x9781\n0xE8DA\t0x977A\n0xE8DB\t0x9786\n0xE8DC\t0x978B\n0xE8DD\t0x978F\n0xE8DE\t0x9790\n0xE8DF\t0x979C\n0xE8E0\t0x97A8\n0xE8E1\t0x97A6\n0xE8E2\t0x97A3\n0xE8E3\t0x97B3\n0xE8E4\t0x97B4\n0xE8E5\t0x97C3\n0xE8E6\t0x97C6\n0xE8E7\t0x97C8\n0xE8E8\t0x97CB\n0xE8E9\t0x97DC\n0xE8EA\t0x97ED\n0xE8EB\t0x9F4F\n0xE8EC\t0x97F2\n0xE8ED\t0x7ADF\n0xE8EE\t0x97F6\n0xE8EF\t0x97F5\n0xE8F0\t0x980F\n0xE8F1\t0x980C\n0xE8F2\t0x9838\n0xE8F3\t0x9824\n0xE8F4\t0x9821\n0xE8F5\t0x9837\n0xE8F6\t0x983D\n0xE8F7\t0x9846\n0xE8F8\t0x984F\n0xE8F9\t0x984B\n0xE8FA\t0x986B\n0xE8FB\t0x986F\n0xE8FC\t0x9870\n0xE940\t0x9871\n0xE941\t0x9874\n0xE942\t0x9873\n0xE943\t0x98AA\n0xE944\t0x98AF\n0xE945\t0x98B1\n0xE946\t0x98B6\n0xE947\t0x98C4\n0xE948\t0x98C3\n0xE949\t0x98C6\n0xE94A\t0x98E9\n0xE94B\t0x98EB\n0xE94C\t0x9903\n0xE94D\t0x9909\n0xE94E\t0x9912\n0xE94F\t0x9914\n0xE950\t0x9918\n0xE951\t0x9921\n0xE952\t0x991D\n0xE953\t0x991E\n0xE954\t0x9924\n0xE955\t0x9920\n0xE956\t0x992C\n0xE957\t0x992E\n0xE958\t0x993D\n0xE959\t0x993E\n0xE95A\t0x9942\n0xE95B\t0x9949\n0xE95C\t0x9945\n0xE95D\t0x9950\n0xE95E\t0x994B\n0xE95F\t0x9951\n0xE960\t0x9952\n0xE961\t0x994C\n0xE962\t0x9955\n0xE963\t0x9997\n0xE964\t0x9998\n0xE965\t0x99A5\n0xE966\t0x99AD\n0xE967\t0x99AE\n0xE968\t0x99BC\n0xE969\t0x99DF\n0xE96A\t0x99DB\n0xE96B\t0x99DD\n0xE96C\t0x99D8\n0xE96D\t0x99D1\n0xE96E\t0x99ED\n0xE96F\t0x99EE\n0xE970\t0x99F1\n0xE971\t0x99F2\n0xE972\t0x99FB\n0xE973\t0x99F8\n0xE974\t0x9A01\n0xE975\t0x9A0F\n0xE976\t0x9A05\n0xE977\t0x99E2\n0xE978\t0x9A19\n0xE979\t0x9A2B\n0xE97A\t0x9A37\n0xE97B\t0x9A45\n0xE97C\t0x9A42\n0xE97D\t0x9A40\n0xE97E\t0x9A43\n0xE980\t0x9A3E\n0xE981\t0x9A55\n0xE982\t0x9A4D\n0xE983\t0x9A5B\n0xE984\t0x9A57\n0xE985\t0x9A5F\n0xE986\t0x9A62\n0xE987\t0x9A65\n0xE988\t0x9A64\n0xE989\t0x9A69\n0xE98A\t0x9A6B\n0xE98B\t0x9A6A\n0xE98C\t0x9AAD\n0xE98D\t0x9AB0\n0xE98E\t0x9ABC\n0xE98F\t0x9AC0\n0xE990\t0x9ACF\n0xE991\t0x9AD1\n0xE992\t0x9AD3\n0xE993\t0x9AD4\n0xE994\t0x9ADE\n0xE995\t0x9ADF\n0xE996\t0x9AE2\n0xE997\t0x9AE3\n0xE998\t0x9AE6\n0xE999\t0x9AEF\n0xE99A\t0x9AEB\n0xE99B\t0x9AEE\n0xE99C\t0x9AF4\n0xE99D\t0x9AF1\n0xE99E\t0x9AF7\n0xE99F\t0x9AFB\n0xE9A0\t0x9B06\n0xE9A1\t0x9B18\n0xE9A2\t0x9B1A\n0xE9A3\t0x9B1F\n0xE9A4\t0x9B22\n0xE9A5\t0x9B23\n0xE9A6\t0x9B25\n0xE9A7\t0x9B27\n0xE9A8\t0x9B28\n0xE9A9\t0x9B29\n0xE9AA\t0x9B2A\n0xE9AB\t0x9B2E\n0xE9AC\t0x9B2F\n0xE9AD\t0x9B32\n0xE9AE\t0x9B44\n0xE9AF\t0x9B43\n0xE9B0\t0x9B4F\n0xE9B1\t0x9B4D\n0xE9B2\t0x9B4E\n0xE9B3\t0x9B51\n0xE9B4\t0x9B58\n0xE9B5\t0x9B74\n0xE9B6\t0x9B93\n0xE9B7\t0x9B83\n0xE9B8\t0x9B91\n0xE9B9\t0x9B96\n0xE9BA\t0x9B97\n0xE9BB\t0x9B9F\n0xE9BC\t0x9BA0\n0xE9BD\t0x9BA8\n0xE9BE\t0x9BB4\n0xE9BF\t0x9BC0\n0xE9C0\t0x9BCA\n0xE9C1\t0x9BB9\n0xE9C2\t0x9BC6\n0xE9C3\t0x9BCF\n0xE9C4\t0x9BD1\n0xE9C5\t0x9BD2\n0xE9C6\t0x9BE3\n0xE9C7\t0x9BE2\n0xE9C8\t0x9BE4\n0xE9C9\t0x9BD4\n0xE9CA\t0x9BE1\n0xE9CB\t0x9C3A\n0xE9CC\t0x9BF2\n0xE9CD\t0x9BF1\n0xE9CE\t0x9BF0\n0xE9CF\t0x9C15\n0xE9D0\t0x9C14\n0xE9D1\t0x9C09\n0xE9D2\t0x9C13\n0xE9D3\t0x9C0C\n0xE9D4\t0x9C06\n0xE9D5\t0x9C08\n0xE9D6\t0x9C12\n0xE9D7\t0x9C0A\n0xE9D8\t0x9C04\n0xE9D9\t0x9C2E\n0xE9DA\t0x9C1B\n0xE9DB\t0x9C25\n0xE9DC\t0x9C24\n0xE9DD\t0x9C21\n0xE9DE\t0x9C30\n0xE9DF\t0x9C47\n0xE9E0\t0x9C32\n0xE9E1\t0x9C46\n0xE9E2\t0x9C3E\n0xE9E3\t0x9C5A\n0xE9E4\t0x9C60\n0xE9E5\t0x9C67\n0xE9E6\t0x9C76\n0xE9E7\t0x9C78\n0xE9E8\t0x9CE7\n0xE9E9\t0x9CEC\n0xE9EA\t0x9CF0\n0xE9EB\t0x9D09\n0xE9EC\t0x9D08\n0xE9ED\t0x9CEB\n0xE9EE\t0x9D03\n0xE9EF\t0x9D06\n0xE9F0\t0x9D2A\n0xE9F1\t0x9D26\n0xE9F2\t0x9DAF\n0xE9F3\t0x9D23\n0xE9F4\t0x9D1F\n0xE9F5\t0x9D44\n0xE9F6\t0x9D15\n0xE9F7\t0x9D12\n0xE9F8\t0x9D41\n0xE9F9\t0x9D3F\n0xE9FA\t0x9D3E\n0xE9FB\t0x9D46\n0xE9FC\t0x9D48\n0xEA40\t0x9D5D\n0xEA41\t0x9D5E\n0xEA42\t0x9D64\n0xEA43\t0x9D51\n0xEA44\t0x9D50\n0xEA45\t0x9D59\n0xEA46\t0x9D72\n0xEA47\t0x9D89\n0xEA48\t0x9D87\n0xEA49\t0x9DAB\n0xEA4A\t0x9D6F\n0xEA4B\t0x9D7A\n0xEA4C\t0x9D9A\n0xEA4D\t0x9DA4\n0xEA4E\t0x9DA9\n0xEA4F\t0x9DB2\n0xEA50\t0x9DC4\n0xEA51\t0x9DC1\n0xEA52\t0x9DBB\n0xEA53\t0x9DB8\n0xEA54\t0x9DBA\n0xEA55\t0x9DC6\n0xEA56\t0x9DCF\n0xEA57\t0x9DC2\n0xEA58\t0x9DD9\n0xEA59\t0x9DD3\n0xEA5A\t0x9DF8\n0xEA5B\t0x9DE6\n0xEA5C\t0x9DED\n0xEA5D\t0x9DEF\n0xEA5E\t0x9DFD\n0xEA5F\t0x9E1A\n0xEA60\t0x9E1B\n0xEA61\t0x9E1E\n0xEA62\t0x9E75\n0xEA63\t0x9E79\n0xEA64\t0x9E7D\n0xEA65\t0x9E81\n0xEA66\t0x9E88\n0xEA67\t0x9E8B\n0xEA68\t0x9E8C\n0xEA69\t0x9E92\n0xEA6A\t0x9E95\n0xEA6B\t0x9E91\n0xEA6C\t0x9E9D\n0xEA6D\t0x9EA5\n0xEA6E\t0x9EA9\n0xEA6F\t0x9EB8\n0xEA70\t0x9EAA\n0xEA71\t0x9EAD\n0xEA72\t0x9761\n0xEA73\t0x9ECC\n0xEA74\t0x9ECE\n0xEA75\t0x9ECF\n0xEA76\t0x9ED0\n0xEA77\t0x9ED4\n0xEA78\t0x9EDC\n0xEA79\t0x9EDE\n0xEA7A\t0x9EDD\n0xEA7B\t0x9EE0\n0xEA7C\t0x9EE5\n0xEA7D\t0x9EE8\n0xEA7E\t0x9EEF\n0xEA80\t0x9EF4\n0xEA81\t0x9EF6\n0xEA82\t0x9EF7\n0xEA83\t0x9EF9\n0xEA84\t0x9EFB\n0xEA85\t0x9EFC\n0xEA86\t0x9EFD\n0xEA87\t0x9F07\n0xEA88\t0x9F08\n0xEA89\t0x76B7\n0xEA8A\t0x9F15\n0xEA8B\t0x9F21\n0xEA8C\t0x9F2C\n0xEA8D\t0x9F3E\n0xEA8E\t0x9F4A\n0xEA8F\t0x9F52\n0xEA90\t0x9F54\n0xEA91\t0x9F63\n0xEA92\t0x9F5F\n0xEA93\t0x9F60\n0xEA94\t0x9F61\n0xEA95\t0x9F66\n0xEA96\t0x9F67\n0xEA97\t0x9F6C\n0xEA98\t0x9F6A\n0xEA99\t0x9F77\n0xEA9A\t0x9F72\n0xEA9B\t0x9F76\n0xEA9C\t0x9F95\n0xEA9D\t0x9F9C\n0xEA9E\t0x9FA0\n0xEA9F\t0x582F\n0xEAA0\t0x69C7\n0xEAA1\t0x9059\n0xEAA2\t0x7464\n0xEAA3\t0x51DC\n0xEAA4\t0x7199\n0xF040\t0xE000\n0xF041\t0xE001\n0xF042\t0xE002\n0xF043\t0xE003\n0xF044\t0xE004\n0xF045\t0xE005\n0xF046\t0xE006\n0xF047\t0xE007\n0xF048\t0xE008\n0xF049\t0xE009\n0xF04A\t0xE00A\n0xF04B\t0xE00B\n0xF04C\t0xE00C\n0xF04D\t0xE00D\n0xF04E\t0xE00E\n0xF04F\t0xE00F\n0xF050\t0xE010\n0xF051\t0xE011\n0xF052\t0xE012\n0xF053\t0xE013\n0xF054\t0xE014\n0xF055\t0xE015\n0xF056\t0xE016\n0xF057\t0xE017\n0xF058\t0xE018\n0xF059\t0xE019\n0xF05A\t0xE01A\n0xF05B\t0xE01B\n0xF05C\t0xE01C\n0xF05D\t0xE01D\n0xF05E\t0xE01E\n0xF05F\t0xE01F\n0xF060\t0xE020\n0xF061\t0xE021\n0xF062\t0xE022\n0xF063\t0xE023\n0xF064\t0xE024\n0xF065\t0xE025\n0xF066\t0xE026\n0xF067\t0xE027\n0xF068\t0xE028\n0xF069\t0xE029\n0xF06A\t0xE02A\n0xF06B\t0xE02B\n0xF06C\t0xE02C\n0xF06D\t0xE02D\n0xF06E\t0xE02E\n0xF06F\t0xE02F\n0xF070\t0xE030\n0xF071\t0xE031\n0xF072\t0xE032\n0xF073\t0xE033\n0xF074\t0xE034\n0xF075\t0xE035\n0xF076\t0xE036\n0xF077\t0xE037\n0xF078\t0xE038\n0xF079\t0xE039\n0xF07A\t0xE03A\n0xF07B\t0xE03B\n0xF07C\t0xE03C\n0xF07D\t0xE03D\n0xF07E\t0xE03E\n0xF080\t0xE03F\n0xF081\t0xE040\n0xF082\t0xE041\n0xF083\t0xE042\n0xF084\t0xE043\n0xF085\t0xE044\n0xF086\t0xE045\n0xF087\t0xE046\n0xF088\t0xE047\n0xF089\t0xE048\n0xF08A\t0xE049\n0xF08B\t0xE04A\n0xF08C\t0xE04B\n0xF08D\t0xE04C\n0xF08E\t0xE04D\n0xF08F\t0xE04E\n0xF090\t0xE04F\n0xF091\t0xE050\n0xF092\t0xE051\n0xF093\t0xE052\n0xF094\t0xE053\n0xF095\t0xE054\n0xF096\t0xE055\n0xF097\t0xE056\n0xF098\t0xE057\n0xF099\t0xE058\n0xF09A\t0xE059\n0xF09B\t0xE05A\n0xF09C\t0xE05B\n0xF09D\t0xE05C\n0xF09E\t0xE05D\n0xF09F\t0xE05E\n0xF0A0\t0xE05F\n0xF0A1\t0xE060\n0xF0A2\t0xE061\n0xF0A3\t0xE062\n0xF0A4\t0xE063\n0xF0A5\t0xE064\n0xF0A6\t0xE065\n0xF0A7\t0xE066\n0xF0A8\t0xE067\n0xF0A9\t0xE068\n0xF0AA\t0xE069\n0xF0AB\t0xE06A\n0xF0AC\t0xE06B\n0xF0AD\t0xE06C\n0xF0AE\t0xE06D\n0xF0AF\t0xE06E\n0xF0B0\t0xE06F\n0xF0B1\t0xE070\n0xF0B2\t0xE071\n0xF0B3\t0xE072\n0xF0B4\t0xE073\n0xF0B5\t0xE074\n0xF0B6\t0xE075\n0xF0B7\t0xE076\n0xF0B8\t0xE077\n0xF0B9\t0xE078\n0xF0BA\t0xE079\n0xF0BB\t0xE07A\n0xF0BC\t0xE07B\n0xF0BD\t0xE07C\n0xF0BE\t0xE07D\n0xF0BF\t0xE07E\n0xF0C0\t0xE07F\n0xF0C1\t0xE080\n0xF0C2\t0xE081\n0xF0C3\t0xE082\n0xF0C4\t0xE083\n0xF0C5\t0xE084\n0xF0C6\t0xE085\n0xF0C7\t0xE086\n0xF0C8\t0xE087\n0xF0C9\t0xE088\n0xF0CA\t0xE089\n0xF0CB\t0xE08A\n0xF0CC\t0xE08B\n0xF0CD\t0xE08C\n0xF0CE\t0xE08D\n0xF0CF\t0xE08E\n0xF0D0\t0xE08F\n0xF0D1\t0xE090\n0xF0D2\t0xE091\n0xF0D3\t0xE092\n0xF0D4\t0xE093\n0xF0D5\t0xE094\n0xF0D6\t0xE095\n0xF0D7\t0xE096\n0xF0D8\t0xE097\n0xF0D9\t0xE098\n0xF0DA\t0xE099\n0xF0DB\t0xE09A\n0xF0DC\t0xE09B\n0xF0DD\t0xE09C\n0xF0DE\t0xE09D\n0xF0DF\t0xE09E\n0xF0E0\t0xE09F\n0xF0E1\t0xE0A0\n0xF0E2\t0xE0A1\n0xF0E3\t0xE0A2\n0xF0E4\t0xE0A3\n0xF0E5\t0xE0A4\n0xF0E6\t0xE0A5\n0xF0E7\t0xE0A6\n0xF0E8\t0xE0A7\n0xF0E9\t0xE0A8\n0xF0EA\t0xE0A9\n0xF0EB\t0xE0AA\n0xF0EC\t0xE0AB\n0xF0ED\t0xE0AC\n0xF0EE\t0xE0AD\n0xF0EF\t0xE0AE\n0xF0F0\t0xE0AF\n0xF0F1\t0xE0B0\n0xF0F2\t0xE0B1\n0xF0F3\t0xE0B2\n0xF0F4\t0xE0B3\n0xF0F5\t0xE0B4\n0xF0F6\t0xE0B5\n0xF0F7\t0xE0B6\n0xF0F8\t0xE0B7\n0xF0F9\t0xE0B8\n0xF0FA\t0xE0B9\n0xF0FB\t0xE0BA\n0xF0FC\t0xE0BB\n0xF140\t0xE0BC\n0xF141\t0xE0BD\n0xF142\t0xE0BE\n0xF143\t0xE0BF\n0xF144\t0xE0C0\n0xF145\t0xE0C1\n0xF146\t0xE0C2\n0xF147\t0xE0C3\n0xF148\t0xE0C4\n0xF149\t0xE0C5\n0xF14A\t0xE0C6\n0xF14B\t0xE0C7\n0xF14C\t0xE0C8\n0xF14D\t0xE0C9\n0xF14E\t0xE0CA\n0xF14F\t0xE0CB\n0xF150\t0xE0CC\n0xF151\t0xE0CD\n0xF152\t0xE0CE\n0xF153\t0xE0CF\n0xF154\t0xE0D0\n0xF155\t0xE0D1\n0xF156\t0xE0D2\n0xF157\t0xE0D3\n0xF158\t0xE0D4\n0xF159\t0xE0D5\n0xF15A\t0xE0D6\n0xF15B\t0xE0D7\n0xF15C\t0xE0D8\n0xF15D\t0xE0D9\n0xF15E\t0xE0DA\n0xF15F\t0xE0DB\n0xF160\t0xE0DC\n0xF161\t0xE0DD\n0xF162\t0xE0DE\n0xF163\t0xE0DF\n0xF164\t0xE0E0\n0xF165\t0xE0E1\n0xF166\t0xE0E2\n0xF167\t0xE0E3\n0xF168\t0xE0E4\n0xF169\t0xE0E5\n0xF16A\t0xE0E6\n0xF16B\t0xE0E7\n0xF16C\t0xE0E8\n0xF16D\t0xE0E9\n0xF16E\t0xE0EA\n0xF16F\t0xE0EB\n0xF170\t0xE0EC\n0xF171\t0xE0ED\n0xF172\t0xE0EE\n0xF173\t0xE0EF\n0xF174\t0xE0F0\n0xF175\t0xE0F1\n0xF176\t0xE0F2\n0xF177\t0xE0F3\n0xF178\t0xE0F4\n0xF179\t0xE0F5\n0xF17A\t0xE0F6\n0xF17B\t0xE0F7\n0xF17C\t0xE0F8\n0xF17D\t0xE0F9\n0xF17E\t0xE0FA\n0xF180\t0xE0FB\n0xF181\t0xE0FC\n0xF182\t0xE0FD\n0xF183\t0xE0FE\n0xF184\t0xE0FF\n0xF185\t0xE100\n0xF186\t0xE101\n0xF187\t0xE102\n0xF188\t0xE103\n0xF189\t0xE104\n0xF18A\t0xE105\n0xF18B\t0xE106\n0xF18C\t0xE107\n0xF18D\t0xE108\n0xF18E\t0xE109\n0xF18F\t0xE10A\n0xF190\t0xE10B\n0xF191\t0xE10C\n0xF192\t0xE10D\n0xF193\t0xE10E\n0xF194\t0xE10F\n0xF195\t0xE110\n0xF196\t0xE111\n0xF197\t0xE112\n0xF198\t0xE113\n0xF199\t0xE114\n0xF19A\t0xE115\n0xF19B\t0xE116\n0xF19C\t0xE117\n0xF19D\t0xE118\n0xF19E\t0xE119\n0xF19F\t0xE11A\n0xF1A0\t0xE11B\n0xF1A1\t0xE11C\n0xF1A2\t0xE11D\n0xF1A3\t0xE11E\n0xF1A4\t0xE11F\n0xF1A5\t0xE120\n0xF1A6\t0xE121\n0xF1A7\t0xE122\n0xF1A8\t0xE123\n0xF1A9\t0xE124\n0xF1AA\t0xE125\n0xF1AB\t0xE126\n0xF1AC\t0xE127\n0xF1AD\t0xE128\n0xF1AE\t0xE129\n0xF1AF\t0xE12A\n0xF1B0\t0xE12B\n0xF1B1\t0xE12C\n0xF1B2\t0xE12D\n0xF1B3\t0xE12E\n0xF1B4\t0xE12F\n0xF1B5\t0xE130\n0xF1B6\t0xE131\n0xF1B7\t0xE132\n0xF1B8\t0xE133\n0xF1B9\t0xE134\n0xF1BA\t0xE135\n0xF1BB\t0xE136\n0xF1BC\t0xE137\n0xF1BD\t0xE138\n0xF1BE\t0xE139\n0xF1BF\t0xE13A\n0xF1C0\t0xE13B\n0xF1C1\t0xE13C\n0xF1C2\t0xE13D\n0xF1C3\t0xE13E\n0xF1C4\t0xE13F\n0xF1C5\t0xE140\n0xF1C6\t0xE141\n0xF1C7\t0xE142\n0xF1C8\t0xE143\n0xF1C9\t0xE144\n0xF1CA\t0xE145\n0xF1CB\t0xE146\n0xF1CC\t0xE147\n0xF1CD\t0xE148\n0xF1CE\t0xE149\n0xF1CF\t0xE14A\n0xF1D0\t0xE14B\n0xF1D1\t0xE14C\n0xF1D2\t0xE14D\n0xF1D3\t0xE14E\n0xF1D4\t0xE14F\n0xF1D5\t0xE150\n0xF1D6\t0xE151\n0xF1D7\t0xE152\n0xF1D8\t0xE153\n0xF1D9\t0xE154\n0xF1DA\t0xE155\n0xF1DB\t0xE156\n0xF1DC\t0xE157\n0xF1DD\t0xE158\n0xF1DE\t0xE159\n0xF1DF\t0xE15A\n0xF1E0\t0xE15B\n0xF1E1\t0xE15C\n0xF1E2\t0xE15D\n0xF1E3\t0xE15E\n0xF1E4\t0xE15F\n0xF1E5\t0xE160\n0xF1E6\t0xE161\n0xF1E7\t0xE162\n0xF1E8\t0xE163\n0xF1E9\t0xE164\n0xF1EA\t0xE165\n0xF1EB\t0xE166\n0xF1EC\t0xE167\n0xF1ED\t0xE168\n0xF1EE\t0xE169\n0xF1EF\t0xE16A\n0xF1F0\t0xE16B\n0xF1F1\t0xE16C\n0xF1F2\t0xE16D\n0xF1F3\t0xE16E\n0xF1F4\t0xE16F\n0xF1F5\t0xE170\n0xF1F6\t0xE171\n0xF1F7\t0xE172\n0xF1F8\t0xE173\n0xF1F9\t0xE174\n0xF1FA\t0xE175\n0xF1FB\t0xE176\n0xF1FC\t0xE177\n0xF240\t0xE178\n0xF241\t0xE179\n0xF242\t0xE17A\n0xF243\t0xE17B\n0xF244\t0xE17C\n0xF245\t0xE17D\n0xF246\t0xE17E\n0xF247\t0xE17F\n0xF248\t0xE180\n0xF249\t0xE181\n0xF24A\t0xE182\n0xF24B\t0xE183\n0xF24C\t0xE184\n0xF24D\t0xE185\n0xF24E\t0xE186\n0xF24F\t0xE187\n0xF250\t0xE188\n0xF251\t0xE189\n0xF252\t0xE18A\n0xF253\t0xE18B\n0xF254\t0xE18C\n0xF255\t0xE18D\n0xF256\t0xE18E\n0xF257\t0xE18F\n0xF258\t0xE190\n0xF259\t0xE191\n0xF25A\t0xE192\n0xF25B\t0xE193\n0xF25C\t0xE194\n0xF25D\t0xE195\n0xF25E\t0xE196\n0xF25F\t0xE197\n0xF260\t0xE198\n0xF261\t0xE199\n0xF262\t0xE19A\n0xF263\t0xE19B\n0xF264\t0xE19C\n0xF265\t0xE19D\n0xF266\t0xE19E\n0xF267\t0xE19F\n0xF268\t0xE1A0\n0xF269\t0xE1A1\n0xF26A\t0xE1A2\n0xF26B\t0xE1A3\n0xF26C\t0xE1A4\n0xF26D\t0xE1A5\n0xF26E\t0xE1A6\n0xF26F\t0xE1A7\n0xF270\t0xE1A8\n0xF271\t0xE1A9\n0xF272\t0xE1AA\n0xF273\t0xE1AB\n0xF274\t0xE1AC\n0xF275\t0xE1AD\n0xF276\t0xE1AE\n0xF277\t0xE1AF\n0xF278\t0xE1B0\n0xF279\t0xE1B1\n0xF27A\t0xE1B2\n0xF27B\t0xE1B3\n0xF27C\t0xE1B4\n0xF27D\t0xE1B5\n0xF27E\t0xE1B6\n0xF280\t0xE1B7\n0xF281\t0xE1B8\n0xF282\t0xE1B9\n0xF283\t0xE1BA\n0xF284\t0xE1BB\n0xF285\t0xE1BC\n0xF286\t0xE1BD\n0xF287\t0xE1BE\n0xF288\t0xE1BF\n0xF289\t0xE1C0\n0xF28A\t0xE1C1\n0xF28B\t0xE1C2\n0xF28C\t0xE1C3\n0xF28D\t0xE1C4\n0xF28E\t0xE1C5\n0xF28F\t0xE1C6\n0xF290\t0xE1C7\n0xF291\t0xE1C8\n0xF292\t0xE1C9\n0xF293\t0xE1CA\n0xF294\t0xE1CB\n0xF295\t0xE1CC\n0xF296\t0xE1CD\n0xF297\t0xE1CE\n0xF298\t0xE1CF\n0xF299\t0xE1D0\n0xF29A\t0xE1D1\n0xF29B\t0xE1D2\n0xF29C\t0xE1D3\n0xF29D\t0xE1D4\n0xF29E\t0xE1D5\n0xF29F\t0xE1D6\n0xF2A0\t0xE1D7\n0xF2A1\t0xE1D8\n0xF2A2\t0xE1D9\n0xF2A3\t0xE1DA\n0xF2A4\t0xE1DB\n0xF2A5\t0xE1DC\n0xF2A6\t0xE1DD\n0xF2A7\t0xE1DE\n0xF2A8\t0xE1DF\n0xF2A9\t0xE1E0\n0xF2AA\t0xE1E1\n0xF2AB\t0xE1E2\n0xF2AC\t0xE1E3\n0xF2AD\t0xE1E4\n0xF2AE\t0xE1E5\n0xF2AF\t0xE1E6\n0xF2B0\t0xE1E7\n0xF2B1\t0xE1E8\n0xF2B2\t0xE1E9\n0xF2B3\t0xE1EA\n0xF2B4\t0xE1EB\n0xF2B5\t0xE1EC\n0xF2B6\t0xE1ED\n0xF2B7\t0xE1EE\n0xF2B8\t0xE1EF\n0xF2B9\t0xE1F0\n0xF2BA\t0xE1F1\n0xF2BB\t0xE1F2\n0xF2BC\t0xE1F3\n0xF2BD\t0xE1F4\n0xF2BE\t0xE1F5\n0xF2BF\t0xE1F6\n0xF2C0\t0xE1F7\n0xF2C1\t0xE1F8\n0xF2C2\t0xE1F9\n0xF2C3\t0xE1FA\n0xF2C4\t0xE1FB\n0xF2C5\t0xE1FC\n0xF2C6\t0xE1FD\n0xF2C7\t0xE1FE\n0xF2C8\t0xE1FF\n0xF2C9\t0xE200\n0xF2CA\t0xE201\n0xF2CB\t0xE202\n0xF2CC\t0xE203\n0xF2CD\t0xE204\n0xF2CE\t0xE205\n0xF2CF\t0xE206\n0xF2D0\t0xE207\n0xF2D1\t0xE208\n0xF2D2\t0xE209\n0xF2D3\t0xE20A\n0xF2D4\t0xE20B\n0xF2D5\t0xE20C\n0xF2D6\t0xE20D\n0xF2D7\t0xE20E\n0xF2D8\t0xE20F\n0xF2D9\t0xE210\n0xF2DA\t0xE211\n0xF2DB\t0xE212\n0xF2DC\t0xE213\n0xF2DD\t0xE214\n0xF2DE\t0xE215\n0xF2DF\t0xE216\n0xF2E0\t0xE217\n0xF2E1\t0xE218\n0xF2E2\t0xE219\n0xF2E3\t0xE21A\n0xF2E4\t0xE21B\n0xF2E5\t0xE21C\n0xF2E6\t0xE21D\n0xF2E7\t0xE21E\n0xF2E8\t0xE21F\n0xF2E9\t0xE220\n0xF2EA\t0xE221\n0xF2EB\t0xE222\n0xF2EC\t0xE223\n0xF2ED\t0xE224\n0xF2EE\t0xE225\n0xF2EF\t0xE226\n0xF2F0\t0xE227\n0xF2F1\t0xE228\n0xF2F2\t0xE229\n0xF2F3\t0xE22A\n0xF2F4\t0xE22B\n0xF2F5\t0xE22C\n0xF2F6\t0xE22D\n0xF2F7\t0xE22E\n0xF2F8\t0xE22F\n0xF2F9\t0xE230\n0xF2FA\t0xE231\n0xF2FB\t0xE232\n0xF2FC\t0xE233\n0xF340\t0xE234\n0xF341\t0xE235\n0xF342\t0xE236\n0xF343\t0xE237\n0xF344\t0xE238\n0xF345\t0xE239\n0xF346\t0xE23A\n0xF347\t0xE23B\n0xF348\t0xE23C\n0xF349\t0xE23D\n0xF34A\t0xE23E\n0xF34B\t0xE23F\n0xF34C\t0xE240\n0xF34D\t0xE241\n0xF34E\t0xE242\n0xF34F\t0xE243\n0xF350\t0xE244\n0xF351\t0xE245\n0xF352\t0xE246\n0xF353\t0xE247\n0xF354\t0xE248\n0xF355\t0xE249\n0xF356\t0xE24A\n0xF357\t0xE24B\n0xF358\t0xE24C\n0xF359\t0xE24D\n0xF35A\t0xE24E\n0xF35B\t0xE24F\n0xF35C\t0xE250\n0xF35D\t0xE251\n0xF35E\t0xE252\n0xF35F\t0xE253\n0xF360\t0xE254\n0xF361\t0xE255\n0xF362\t0xE256\n0xF363\t0xE257\n0xF364\t0xE258\n0xF365\t0xE259\n0xF366\t0xE25A\n0xF367\t0xE25B\n0xF368\t0xE25C\n0xF369\t0xE25D\n0xF36A\t0xE25E\n0xF36B\t0xE25F\n0xF36C\t0xE260\n0xF36D\t0xE261\n0xF36E\t0xE262\n0xF36F\t0xE263\n0xF370\t0xE264\n0xF371\t0xE265\n0xF372\t0xE266\n0xF373\t0xE267\n0xF374\t0xE268\n0xF375\t0xE269\n0xF376\t0xE26A\n0xF377\t0xE26B\n0xF378\t0xE26C\n0xF379\t0xE26D\n0xF37A\t0xE26E\n0xF37B\t0xE26F\n0xF37C\t0xE270\n0xF37D\t0xE271\n0xF37E\t0xE272\n0xF380\t0xE273\n0xF381\t0xE274\n0xF382\t0xE275\n0xF383\t0xE276\n0xF384\t0xE277\n0xF385\t0xE278\n0xF386\t0xE279\n0xF387\t0xE27A\n0xF388\t0xE27B\n0xF389\t0xE27C\n0xF38A\t0xE27D\n0xF38B\t0xE27E\n0xF38C\t0xE27F\n0xF38D\t0xE280\n0xF38E\t0xE281\n0xF38F\t0xE282\n0xF390\t0xE283\n0xF391\t0xE284\n0xF392\t0xE285\n0xF393\t0xE286\n0xF394\t0xE287\n0xF395\t0xE288\n0xF396\t0xE289\n0xF397\t0xE28A\n0xF398\t0xE28B\n0xF399\t0xE28C\n0xF39A\t0xE28D\n0xF39B\t0xE28E\n0xF39C\t0xE28F\n0xF39D\t0xE290\n0xF39E\t0xE291\n0xF39F\t0xE292\n0xF3A0\t0xE293\n0xF3A1\t0xE294\n0xF3A2\t0xE295\n0xF3A3\t0xE296\n0xF3A4\t0xE297\n0xF3A5\t0xE298\n0xF3A6\t0xE299\n0xF3A7\t0xE29A\n0xF3A8\t0xE29B\n0xF3A9\t0xE29C\n0xF3AA\t0xE29D\n0xF3AB\t0xE29E\n0xF3AC\t0xE29F\n0xF3AD\t0xE2A0\n0xF3AE\t0xE2A1\n0xF3AF\t0xE2A2\n0xF3B0\t0xE2A3\n0xF3B1\t0xE2A4\n0xF3B2\t0xE2A5\n0xF3B3\t0xE2A6\n0xF3B4\t0xE2A7\n0xF3B5\t0xE2A8\n0xF3B6\t0xE2A9\n0xF3B7\t0xE2AA\n0xF3B8\t0xE2AB\n0xF3B9\t0xE2AC\n0xF3BA\t0xE2AD\n0xF3BB\t0xE2AE\n0xF3BC\t0xE2AF\n0xF3BD\t0xE2B0\n0xF3BE\t0xE2B1\n0xF3BF\t0xE2B2\n0xF3C0\t0xE2B3\n0xF3C1\t0xE2B4\n0xF3C2\t0xE2B5\n0xF3C3\t0xE2B6\n0xF3C4\t0xE2B7\n0xF3C5\t0xE2B8\n0xF3C6\t0xE2B9\n0xF3C7\t0xE2BA\n0xF3C8\t0xE2BB\n0xF3C9\t0xE2BC\n0xF3CA\t0xE2BD\n0xF3CB\t0xE2BE\n0xF3CC\t0xE2BF\n0xF3CD\t0xE2C0\n0xF3CE\t0xE2C1\n0xF3CF\t0xE2C2\n0xF3D0\t0xE2C3\n0xF3D1\t0xE2C4\n0xF3D2\t0xE2C5\n0xF3D3\t0xE2C6\n0xF3D4\t0xE2C7\n0xF3D5\t0xE2C8\n0xF3D6\t0xE2C9\n0xF3D7\t0xE2CA\n0xF3D8\t0xE2CB\n0xF3D9\t0xE2CC\n0xF3DA\t0xE2CD\n0xF3DB\t0xE2CE\n0xF3DC\t0xE2CF\n0xF3DD\t0xE2D0\n0xF3DE\t0xE2D1\n0xF3DF\t0xE2D2\n0xF3E0\t0xE2D3\n0xF3E1\t0xE2D4\n0xF3E2\t0xE2D5\n0xF3E3\t0xE2D6\n0xF3E4\t0xE2D7\n0xF3E5\t0xE2D8\n0xF3E6\t0xE2D9\n0xF3E7\t0xE2DA\n0xF3E8\t0xE2DB\n0xF3E9\t0xE2DC\n0xF3EA\t0xE2DD\n0xF3EB\t0xE2DE\n0xF3EC\t0xE2DF\n0xF3ED\t0xE2E0\n0xF3EE\t0xE2E1\n0xF3EF\t0xE2E2\n0xF3F0\t0xE2E3\n0xF3F1\t0xE2E4\n0xF3F2\t0xE2E5\n0xF3F3\t0xE2E6\n0xF3F4\t0xE2E7\n0xF3F5\t0xE2E8\n0xF3F6\t0xE2E9\n0xF3F7\t0xE2EA\n0xF3F8\t0xE2EB\n0xF3F9\t0xE2EC\n0xF3FA\t0xE2ED\n0xF3FB\t0xE2EE\n0xF3FC\t0xE2EF\n0xF440\t0xE2F0\n0xF441\t0xE2F1\n0xF442\t0xE2F2\n0xF443\t0xE2F3\n0xF444\t0xE2F4\n0xF445\t0xE2F5\n0xF446\t0xE2F6\n0xF447\t0xE2F7\n0xF448\t0xE2F8\n0xF449\t0xE2F9\n0xF44A\t0xE2FA\n0xF44B\t0xE2FB\n0xF44C\t0xE2FC\n0xF44D\t0xE2FD\n0xF44E\t0xE2FE\n0xF44F\t0xE2FF\n0xF450\t0xE300\n0xF451\t0xE301\n0xF452\t0xE302\n0xF453\t0xE303\n0xF454\t0xE304\n0xF455\t0xE305\n0xF456\t0xE306\n0xF457\t0xE307\n0xF458\t0xE308\n0xF459\t0xE309\n0xF45A\t0xE30A\n0xF45B\t0xE30B\n0xF45C\t0xE30C\n0xF45D\t0xE30D\n0xF45E\t0xE30E\n0xF45F\t0xE30F\n0xF460\t0xE310\n0xF461\t0xE311\n0xF462\t0xE312\n0xF463\t0xE313\n0xF464\t0xE314\n0xF465\t0xE315\n0xF466\t0xE316\n0xF467\t0xE317\n0xF468\t0xE318\n0xF469\t0xE319\n0xF46A\t0xE31A\n0xF46B\t0xE31B\n0xF46C\t0xE31C\n0xF46D\t0xE31D\n0xF46E\t0xE31E\n0xF46F\t0xE31F\n0xF470\t0xE320\n0xF471\t0xE321\n0xF472\t0xE322\n0xF473\t0xE323\n0xF474\t0xE324\n0xF475\t0xE325\n0xF476\t0xE326\n0xF477\t0xE327\n0xF478\t0xE328\n0xF479\t0xE329\n0xF47A\t0xE32A\n0xF47B\t0xE32B\n0xF47C\t0xE32C\n0xF47D\t0xE32D\n0xF47E\t0xE32E\n0xF480\t0xE32F\n0xF481\t0xE330\n0xF482\t0xE331\n0xF483\t0xE332\n0xF484\t0xE333\n0xF485\t0xE334\n0xF486\t0xE335\n0xF487\t0xE336\n0xF488\t0xE337\n0xF489\t0xE338\n0xF48A\t0xE339\n0xF48B\t0xE33A\n0xF48C\t0xE33B\n0xF48D\t0xE33C\n0xF48E\t0xE33D\n0xF48F\t0xE33E\n0xF490\t0xE33F\n0xF491\t0xE340\n0xF492\t0xE341\n0xF493\t0xE342\n0xF494\t0xE343\n0xF495\t0xE344\n0xF496\t0xE345\n0xF497\t0xE346\n0xF498\t0xE347\n0xF499\t0xE348\n0xF49A\t0xE349\n0xF49B\t0xE34A\n0xF49C\t0xE34B\n0xF49D\t0xE34C\n0xF49E\t0xE34D\n0xF49F\t0xE34E\n0xF4A0\t0xE34F\n0xF4A1\t0xE350\n0xF4A2\t0xE351\n0xF4A3\t0xE352\n0xF4A4\t0xE353\n0xF4A5\t0xE354\n0xF4A6\t0xE355\n0xF4A7\t0xE356\n0xF4A8\t0xE357\n0xF4A9\t0xE358\n0xF4AA\t0xE359\n0xF4AB\t0xE35A\n0xF4AC\t0xE35B\n0xF4AD\t0xE35C\n0xF4AE\t0xE35D\n0xF4AF\t0xE35E\n0xF4B0\t0xE35F\n0xF4B1\t0xE360\n0xF4B2\t0xE361\n0xF4B3\t0xE362\n0xF4B4\t0xE363\n0xF4B5\t0xE364\n0xF4B6\t0xE365\n0xF4B7\t0xE366\n0xF4B8\t0xE367\n0xF4B9\t0xE368\n0xF4BA\t0xE369\n0xF4BB\t0xE36A\n0xF4BC\t0xE36B\n0xF4BD\t0xE36C\n0xF4BE\t0xE36D\n0xF4BF\t0xE36E\n0xF4C0\t0xE36F\n0xF4C1\t0xE370\n0xF4C2\t0xE371\n0xF4C3\t0xE372\n0xF4C4\t0xE373\n0xF4C5\t0xE374\n0xF4C6\t0xE375\n0xF4C7\t0xE376\n0xF4C8\t0xE377\n0xF4C9\t0xE378\n0xF4CA\t0xE379\n0xF4CB\t0xE37A\n0xF4CC\t0xE37B\n0xF4CD\t0xE37C\n0xF4CE\t0xE37D\n0xF4CF\t0xE37E\n0xF4D0\t0xE37F\n0xF4D1\t0xE380\n0xF4D2\t0xE381\n0xF4D3\t0xE382\n0xF4D4\t0xE383\n0xF4D5\t0xE384\n0xF4D6\t0xE385\n0xF4D7\t0xE386\n0xF4D8\t0xE387\n0xF4D9\t0xE388\n0xF4DA\t0xE389\n0xF4DB\t0xE38A\n0xF4DC\t0xE38B\n0xF4DD\t0xE38C\n0xF4DE\t0xE38D\n0xF4DF\t0xE38E\n0xF4E0\t0xE38F\n0xF4E1\t0xE390\n0xF4E2\t0xE391\n0xF4E3\t0xE392\n0xF4E4\t0xE393\n0xF4E5\t0xE394\n0xF4E6\t0xE395\n0xF4E7\t0xE396\n0xF4E8\t0xE397\n0xF4E9\t0xE398\n0xF4EA\t0xE399\n0xF4EB\t0xE39A\n0xF4EC\t0xE39B\n0xF4ED\t0xE39C\n0xF4EE\t0xE39D\n0xF4EF\t0xE39E\n0xF4F0\t0xE39F\n0xF4F1\t0xE3A0\n0xF4F2\t0xE3A1\n0xF4F3\t0xE3A2\n0xF4F4\t0xE3A3\n0xF4F5\t0xE3A4\n0xF4F6\t0xE3A5\n0xF4F7\t0xE3A6\n0xF4F8\t0xE3A7\n0xF4F9\t0xE3A8\n0xF4FA\t0xE3A9\n0xF4FB\t0xE3AA\n0xF4FC\t0xE3AB\n0xF540\t0xE3AC\n0xF541\t0xE3AD\n0xF542\t0xE3AE\n0xF543\t0xE3AF\n0xF544\t0xE3B0\n0xF545\t0xE3B1\n0xF546\t0xE3B2\n0xF547\t0xE3B3\n0xF548\t0xE3B4\n0xF549\t0xE3B5\n0xF54A\t0xE3B6\n0xF54B\t0xE3B7\n0xF54C\t0xE3B8\n0xF54D\t0xE3B9\n0xF54E\t0xE3BA\n0xF54F\t0xE3BB\n0xF550\t0xE3BC\n0xF551\t0xE3BD\n0xF552\t0xE3BE\n0xF553\t0xE3BF\n0xF554\t0xE3C0\n0xF555\t0xE3C1\n0xF556\t0xE3C2\n0xF557\t0xE3C3\n0xF558\t0xE3C4\n0xF559\t0xE3C5\n0xF55A\t0xE3C6\n0xF55B\t0xE3C7\n0xF55C\t0xE3C8\n0xF55D\t0xE3C9\n0xF55E\t0xE3CA\n0xF55F\t0xE3CB\n0xF560\t0xE3CC\n0xF561\t0xE3CD\n0xF562\t0xE3CE\n0xF563\t0xE3CF\n0xF564\t0xE3D0\n0xF565\t0xE3D1\n0xF566\t0xE3D2\n0xF567\t0xE3D3\n0xF568\t0xE3D4\n0xF569\t0xE3D5\n0xF56A\t0xE3D6\n0xF56B\t0xE3D7\n0xF56C\t0xE3D8\n0xF56D\t0xE3D9\n0xF56E\t0xE3DA\n0xF56F\t0xE3DB\n0xF570\t0xE3DC\n0xF571\t0xE3DD\n0xF572\t0xE3DE\n0xF573\t0xE3DF\n0xF574\t0xE3E0\n0xF575\t0xE3E1\n0xF576\t0xE3E2\n0xF577\t0xE3E3\n0xF578\t0xE3E4\n0xF579\t0xE3E5\n0xF57A\t0xE3E6\n0xF57B\t0xE3E7\n0xF57C\t0xE3E8\n0xF57D\t0xE3E9\n0xF57E\t0xE3EA\n0xF580\t0xE3EB\n0xF581\t0xE3EC\n0xF582\t0xE3ED\n0xF583\t0xE3EE\n0xF584\t0xE3EF\n0xF585\t0xE3F0\n0xF586\t0xE3F1\n0xF587\t0xE3F2\n0xF588\t0xE3F3\n0xF589\t0xE3F4\n0xF58A\t0xE3F5\n0xF58B\t0xE3F6\n0xF58C\t0xE3F7\n0xF58D\t0xE3F8\n0xF58E\t0xE3F9\n0xF58F\t0xE3FA\n0xF590\t0xE3FB\n0xF591\t0xE3FC\n0xF592\t0xE3FD\n0xF593\t0xE3FE\n0xF594\t0xE3FF\n0xF595\t0xE400\n0xF596\t0xE401\n0xF597\t0xE402\n0xF598\t0xE403\n0xF599\t0xE404\n0xF59A\t0xE405\n0xF59B\t0xE406\n0xF59C\t0xE407\n0xF59D\t0xE408\n0xF59E\t0xE409\n0xF59F\t0xE40A\n0xF5A0\t0xE40B\n0xF5A1\t0xE40C\n0xF5A2\t0xE40D\n0xF5A3\t0xE40E\n0xF5A4\t0xE40F\n0xF5A5\t0xE410\n0xF5A6\t0xE411\n0xF5A7\t0xE412\n0xF5A8\t0xE413\n0xF5A9\t0xE414\n0xF5AA\t0xE415\n0xF5AB\t0xE416\n0xF5AC\t0xE417\n0xF5AD\t0xE418\n0xF5AE\t0xE419\n0xF5AF\t0xE41A\n0xF5B0\t0xE41B\n0xF5B1\t0xE41C\n0xF5B2\t0xE41D\n0xF5B3\t0xE41E\n0xF5B4\t0xE41F\n0xF5B5\t0xE420\n0xF5B6\t0xE421\n0xF5B7\t0xE422\n0xF5B8\t0xE423\n0xF5B9\t0xE424\n0xF5BA\t0xE425\n0xF5BB\t0xE426\n0xF5BC\t0xE427\n0xF5BD\t0xE428\n0xF5BE\t0xE429\n0xF5BF\t0xE42A\n0xF5C0\t0xE42B\n0xF5C1\t0xE42C\n0xF5C2\t0xE42D\n0xF5C3\t0xE42E\n0xF5C4\t0xE42F\n0xF5C5\t0xE430\n0xF5C6\t0xE431\n0xF5C7\t0xE432\n0xF5C8\t0xE433\n0xF5C9\t0xE434\n0xF5CA\t0xE435\n0xF5CB\t0xE436\n0xF5CC\t0xE437\n0xF5CD\t0xE438\n0xF5CE\t0xE439\n0xF5CF\t0xE43A\n0xF5D0\t0xE43B\n0xF5D1\t0xE43C\n0xF5D2\t0xE43D\n0xF5D3\t0xE43E\n0xF5D4\t0xE43F\n0xF5D5\t0xE440\n0xF5D6\t0xE441\n0xF5D7\t0xE442\n0xF5D8\t0xE443\n0xF5D9\t0xE444\n0xF5DA\t0xE445\n0xF5DB\t0xE446\n0xF5DC\t0xE447\n0xF5DD\t0xE448\n0xF5DE\t0xE449\n0xF5DF\t0xE44A\n0xF5E0\t0xE44B\n0xF5E1\t0xE44C\n0xF5E2\t0xE44D\n0xF5E3\t0xE44E\n0xF5E4\t0xE44F\n0xF5E5\t0xE450\n0xF5E6\t0xE451\n0xF5E7\t0xE452\n0xF5E8\t0xE453\n0xF5E9\t0xE454\n0xF5EA\t0xE455\n0xF5EB\t0xE456\n0xF5EC\t0xE457\n0xF5ED\t0xE458\n0xF5EE\t0xE459\n0xF5EF\t0xE45A\n0xF5F0\t0xE45B\n0xF5F1\t0xE45C\n0xF5F2\t0xE45D\n0xF5F3\t0xE45E\n0xF5F4\t0xE45F\n0xF5F5\t0xE460\n0xF5F6\t0xE461\n0xF5F7\t0xE462\n0xF5F8\t0xE463\n0xF5F9\t0xE464\n0xF5FA\t0xE465\n0xF5FB\t0xE466\n0xF5FC\t0xE467\n0xF640\t0xE468\n0xF641\t0xE469\n0xF642\t0xE46A\n0xF643\t0xE46B\n0xF644\t0xE46C\n0xF645\t0xE46D\n0xF646\t0xE46E\n0xF647\t0xE46F\n0xF648\t0xE470\n0xF649\t0xE471\n0xF64A\t0xE472\n0xF64B\t0xE473\n0xF64C\t0xE474\n0xF64D\t0xE475\n0xF64E\t0xE476\n0xF64F\t0xE477\n0xF650\t0xE478\n0xF651\t0xE479\n0xF652\t0xE47A\n0xF653\t0xE47B\n0xF654\t0xE47C\n0xF655\t0xE47D\n0xF656\t0xE47E\n0xF657\t0xE47F\n0xF658\t0xE480\n0xF659\t0xE481\n0xF65A\t0xE482\n0xF65B\t0xE483\n0xF65C\t0xE484\n0xF65D\t0xE485\n0xF65E\t0xE486\n0xF65F\t0xE487\n0xF660\t0xE488\n0xF661\t0xE489\n0xF662\t0xE48A\n0xF663\t0xE48B\n0xF664\t0xE48C\n0xF665\t0xE48D\n0xF666\t0xE48E\n0xF667\t0xE48F\n0xF668\t0xE490\n0xF669\t0xE491\n0xF66A\t0xE492\n0xF66B\t0xE493\n0xF66C\t0xE494\n0xF66D\t0xE495\n0xF66E\t0xE496\n0xF66F\t0xE497\n0xF670\t0xE498\n0xF671\t0xE499\n0xF672\t0xE49A\n0xF673\t0xE49B\n0xF674\t0xE49C\n0xF675\t0xE49D\n0xF676\t0xE49E\n0xF677\t0xE49F\n0xF678\t0xE4A0\n0xF679\t0xE4A1\n0xF67A\t0xE4A2\n0xF67B\t0xE4A3\n0xF67C\t0xE4A4\n0xF67D\t0xE4A5\n0xF67E\t0xE4A6\n0xF680\t0xE4A7\n0xF681\t0xE4A8\n0xF682\t0xE4A9\n0xF683\t0xE4AA\n0xF684\t0xE4AB\n0xF685\t0xE4AC\n0xF686\t0xE4AD\n0xF687\t0xE4AE\n0xF688\t0xE4AF\n0xF689\t0xE4B0\n0xF68A\t0xE4B1\n0xF68B\t0xE4B2\n0xF68C\t0xE4B3\n0xF68D\t0xE4B4\n0xF68E\t0xE4B5\n0xF68F\t0xE4B6\n0xF690\t0xE4B7\n0xF691\t0xE4B8\n0xF692\t0xE4B9\n0xF693\t0xE4BA\n0xF694\t0xE4BB\n0xF695\t0xE4BC\n0xF696\t0xE4BD\n0xF697\t0xE4BE\n0xF698\t0xE4BF\n0xF699\t0xE4C0\n0xF69A\t0xE4C1\n0xF69B\t0xE4C2\n0xF69C\t0xE4C3\n0xF69D\t0xE4C4\n0xF69E\t0xE4C5\n0xF69F\t0xE4C6\n0xF6A0\t0xE4C7\n0xF6A1\t0xE4C8\n0xF6A2\t0xE4C9\n0xF6A3\t0xE4CA\n0xF6A4\t0xE4CB\n0xF6A5\t0xE4CC\n0xF6A6\t0xE4CD\n0xF6A7\t0xE4CE\n0xF6A8\t0xE4CF\n0xF6A9\t0xE4D0\n0xF6AA\t0xE4D1\n0xF6AB\t0xE4D2\n0xF6AC\t0xE4D3\n0xF6AD\t0xE4D4\n0xF6AE\t0xE4D5\n0xF6AF\t0xE4D6\n0xF6B0\t0xE4D7\n0xF6B1\t0xE4D8\n0xF6B2\t0xE4D9\n0xF6B3\t0xE4DA\n0xF6B4\t0xE4DB\n0xF6B5\t0xE4DC\n0xF6B6\t0xE4DD\n0xF6B7\t0xE4DE\n0xF6B8\t0xE4DF\n0xF6B9\t0xE4E0\n0xF6BA\t0xE4E1\n0xF6BB\t0xE4E2\n0xF6BC\t0xE4E3\n0xF6BD\t0xE4E4\n0xF6BE\t0xE4E5\n0xF6BF\t0xE4E6\n0xF6C0\t0xE4E7\n0xF6C1\t0xE4E8\n0xF6C2\t0xE4E9\n0xF6C3\t0xE4EA\n0xF6C4\t0xE4EB\n0xF6C5\t0xE4EC\n0xF6C6\t0xE4ED\n0xF6C7\t0xE4EE\n0xF6C8\t0xE4EF\n0xF6C9\t0xE4F0\n0xF6CA\t0xE4F1\n0xF6CB\t0xE4F2\n0xF6CC\t0xE4F3\n0xF6CD\t0xE4F4\n0xF6CE\t0xE4F5\n0xF6CF\t0xE4F6\n0xF6D0\t0xE4F7\n0xF6D1\t0xE4F8\n0xF6D2\t0xE4F9\n0xF6D3\t0xE4FA\n0xF6D4\t0xE4FB\n0xF6D5\t0xE4FC\n0xF6D6\t0xE4FD\n0xF6D7\t0xE4FE\n0xF6D8\t0xE4FF\n0xF6D9\t0xE500\n0xF6DA\t0xE501\n0xF6DB\t0xE502\n0xF6DC\t0xE503\n0xF6DD\t0xE504\n0xF6DE\t0xE505\n0xF6DF\t0xE506\n0xF6E0\t0xE507\n0xF6E1\t0xE508\n0xF6E2\t0xE509\n0xF6E3\t0xE50A\n0xF6E4\t0xE50B\n0xF6E5\t0xE50C\n0xF6E6\t0xE50D\n0xF6E7\t0xE50E\n0xF6E8\t0xE50F\n0xF6E9\t0xE510\n0xF6EA\t0xE511\n0xF6EB\t0xE512\n0xF6EC\t0xE513\n0xF6ED\t0xE514\n0xF6EE\t0xE515\n0xF6EF\t0xE516\n0xF6F0\t0xE517\n0xF6F1\t0xE518\n0xF6F2\t0xE519\n0xF6F3\t0xE51A\n0xF6F4\t0xE51B\n0xF6F5\t0xE51C\n0xF6F6\t0xE51D\n0xF6F7\t0xE51E\n0xF6F8\t0xE51F\n0xF6F9\t0xE520\n0xF6FA\t0xE521\n0xF6FB\t0xE522\n0xF6FC\t0xE523\n0xF740\t0xE524\n0xF741\t0xE525\n0xF742\t0xE526\n0xF743\t0xE527\n0xF744\t0xE528\n0xF745\t0xE529\n0xF746\t0xE52A\n0xF747\t0xE52B\n0xF748\t0xE52C\n0xF749\t0xE52D\n0xF74A\t0xE52E\n0xF74B\t0xE52F\n0xF74C\t0xE530\n0xF74D\t0xE531\n0xF74E\t0xE532\n0xF74F\t0xE533\n0xF750\t0xE534\n0xF751\t0xE535\n0xF752\t0xE536\n0xF753\t0xE537\n0xF754\t0xE538\n0xF755\t0xE539\n0xF756\t0xE53A\n0xF757\t0xE53B\n0xF758\t0xE53C\n0xF759\t0xE53D\n0xF75A\t0xE53E\n0xF75B\t0xE53F\n0xF75C\t0xE540\n0xF75D\t0xE541\n0xF75E\t0xE542\n0xF75F\t0xE543\n0xF760\t0xE544\n0xF761\t0xE545\n0xF762\t0xE546\n0xF763\t0xE547\n0xF764\t0xE548\n0xF765\t0xE549\n0xF766\t0xE54A\n0xF767\t0xE54B\n0xF768\t0xE54C\n0xF769\t0xE54D\n0xF76A\t0xE54E\n0xF76B\t0xE54F\n0xF76C\t0xE550\n0xF76D\t0xE551\n0xF76E\t0xE552\n0xF76F\t0xE553\n0xF770\t0xE554\n0xF771\t0xE555\n0xF772\t0xE556\n0xF773\t0xE557\n0xF774\t0xE558\n0xF775\t0xE559\n0xF776\t0xE55A\n0xF777\t0xE55B\n0xF778\t0xE55C\n0xF779\t0xE55D\n0xF77A\t0xE55E\n0xF77B\t0xE55F\n0xF77C\t0xE560\n0xF77D\t0xE561\n0xF77E\t0xE562\n0xF780\t0xE563\n0xF781\t0xE564\n0xF782\t0xE565\n0xF783\t0xE566\n0xF784\t0xE567\n0xF785\t0xE568\n0xF786\t0xE569\n0xF787\t0xE56A\n0xF788\t0xE56B\n0xF789\t0xE56C\n0xF78A\t0xE56D\n0xF78B\t0xE56E\n0xF78C\t0xE56F\n0xF78D\t0xE570\n0xF78E\t0xE571\n0xF78F\t0xE572\n0xF790\t0xE573\n0xF791\t0xE574\n0xF792\t0xE575\n0xF793\t0xE576\n0xF794\t0xE577\n0xF795\t0xE578\n0xF796\t0xE579\n0xF797\t0xE57A\n0xF798\t0xE57B\n0xF799\t0xE57C\n0xF79A\t0xE57D\n0xF79B\t0xE57E\n0xF79C\t0xE57F\n0xF79D\t0xE580\n0xF79E\t0xE581\n0xF79F\t0xE582\n0xF7A0\t0xE583\n0xF7A1\t0xE584\n0xF7A2\t0xE585\n0xF7A3\t0xE586\n0xF7A4\t0xE587\n0xF7A5\t0xE588\n0xF7A6\t0xE589\n0xF7A7\t0xE58A\n0xF7A8\t0xE58B\n0xF7A9\t0xE58C\n0xF7AA\t0xE58D\n0xF7AB\t0xE58E\n0xF7AC\t0xE58F\n0xF7AD\t0xE590\n0xF7AE\t0xE591\n0xF7AF\t0xE592\n0xF7B0\t0xE593\n0xF7B1\t0xE594\n0xF7B2\t0xE595\n0xF7B3\t0xE596\n0xF7B4\t0xE597\n0xF7B5\t0xE598\n0xF7B6\t0xE599\n0xF7B7\t0xE59A\n0xF7B8\t0xE59B\n0xF7B9\t0xE59C\n0xF7BA\t0xE59D\n0xF7BB\t0xE59E\n0xF7BC\t0xE59F\n0xF7BD\t0xE5A0\n0xF7BE\t0xE5A1\n0xF7BF\t0xE5A2\n0xF7C0\t0xE5A3\n0xF7C1\t0xE5A4\n0xF7C2\t0xE5A5\n0xF7C3\t0xE5A6\n0xF7C4\t0xE5A7\n0xF7C5\t0xE5A8\n0xF7C6\t0xE5A9\n0xF7C7\t0xE5AA\n0xF7C8\t0xE5AB\n0xF7C9\t0xE5AC\n0xF7CA\t0xE5AD\n0xF7CB\t0xE5AE\n0xF7CC\t0xE5AF\n0xF7CD\t0xE5B0\n0xF7CE\t0xE5B1\n0xF7CF\t0xE5B2\n0xF7D0\t0xE5B3\n0xF7D1\t0xE5B4\n0xF7D2\t0xE5B5\n0xF7D3\t0xE5B6\n0xF7D4\t0xE5B7\n0xF7D5\t0xE5B8\n0xF7D6\t0xE5B9\n0xF7D7\t0xE5BA\n0xF7D8\t0xE5BB\n0xF7D9\t0xE5BC\n0xF7DA\t0xE5BD\n0xF7DB\t0xE5BE\n0xF7DC\t0xE5BF\n0xF7DD\t0xE5C0\n0xF7DE\t0xE5C1\n0xF7DF\t0xE5C2\n0xF7E0\t0xE5C3\n0xF7E1\t0xE5C4\n0xF7E2\t0xE5C5\n0xF7E3\t0xE5C6\n0xF7E4\t0xE5C7\n0xF7E5\t0xE5C8\n0xF7E6\t0xE5C9\n0xF7E7\t0xE5CA\n0xF7E8\t0xE5CB\n0xF7E9\t0xE5CC\n0xF7EA\t0xE5CD\n0xF7EB\t0xE5CE\n0xF7EC\t0xE5CF\n0xF7ED\t0xE5D0\n0xF7EE\t0xE5D1\n0xF7EF\t0xE5D2\n0xF7F0\t0xE5D3\n0xF7F1\t0xE5D4\n0xF7F2\t0xE5D5\n0xF7F3\t0xE5D6\n0xF7F4\t0xE5D7\n0xF7F5\t0xE5D8\n0xF7F6\t0xE5D9\n0xF7F7\t0xE5DA\n0xF7F8\t0xE5DB\n0xF7F9\t0xE5DC\n0xF7FA\t0xE5DD\n0xF7FB\t0xE5DE\n0xF7FC\t0xE5DF\n0xF840\t0xE5E0\n0xF841\t0xE5E1\n0xF842\t0xE5E2\n0xF843\t0xE5E3\n0xF844\t0xE5E4\n0xF845\t0xE5E5\n0xF846\t0xE5E6\n0xF847\t0xE5E7\n0xF848\t0xE5E8\n0xF849\t0xE5E9\n0xF84A\t0xE5EA\n0xF84B\t0xE5EB\n0xF84C\t0xE5EC\n0xF84D\t0xE5ED\n0xF84E\t0xE5EE\n0xF84F\t0xE5EF\n0xF850\t0xE5F0\n0xF851\t0xE5F1\n0xF852\t0xE5F2\n0xF853\t0xE5F3\n0xF854\t0xE5F4\n0xF855\t0xE5F5\n0xF856\t0xE5F6\n0xF857\t0xE5F7\n0xF858\t0xE5F8\n0xF859\t0xE5F9\n0xF85A\t0xE5FA\n0xF85B\t0xE5FB\n0xF85C\t0xE5FC\n0xF85D\t0xE5FD\n0xF85E\t0xE5FE\n0xF85F\t0xE5FF\n0xF860\t0xE600\n0xF861\t0xE601\n0xF862\t0xE602\n0xF863\t0xE603\n0xF864\t0xE604\n0xF865\t0xE605\n0xF866\t0xE606\n0xF867\t0xE607\n0xF868\t0xE608\n0xF869\t0xE609\n0xF86A\t0xE60A\n0xF86B\t0xE60B\n0xF86C\t0xE60C\n0xF86D\t0xE60D\n0xF86E\t0xE60E\n0xF86F\t0xE60F\n0xF870\t0xE610\n0xF871\t0xE611\n0xF872\t0xE612\n0xF873\t0xE613\n0xF874\t0xE614\n0xF875\t0xE615\n0xF876\t0xE616\n0xF877\t0xE617\n0xF878\t0xE618\n0xF879\t0xE619\n0xF87A\t0xE61A\n0xF87B\t0xE61B\n0xF87C\t0xE61C\n0xF87D\t0xE61D\n0xF87E\t0xE61E\n0xF880\t0xE61F\n0xF881\t0xE620\n0xF882\t0xE621\n0xF883\t0xE622\n0xF884\t0xE623\n0xF885\t0xE624\n0xF886\t0xE625\n0xF887\t0xE626\n0xF888\t0xE627\n0xF889\t0xE628\n0xF88A\t0xE629\n0xF88B\t0xE62A\n0xF88C\t0xE62B\n0xF88D\t0xE62C\n0xF88E\t0xE62D\n0xF88F\t0xE62E\n0xF890\t0xE62F\n0xF891\t0xE630\n0xF892\t0xE631\n0xF893\t0xE632\n0xF894\t0xE633\n0xF895\t0xE634\n0xF896\t0xE635\n0xF897\t0xE636\n0xF898\t0xE637\n0xF899\t0xE638\n0xF89A\t0xE639\n0xF89B\t0xE63A\n0xF89C\t0xE63B\n0xF89D\t0xE63C\n0xF89E\t0xE63D\n0xF89F\t0xE63E\n0xF8A0\t0xE63F\n0xF8A1\t0xE640\n0xF8A2\t0xE641\n0xF8A3\t0xE642\n0xF8A4\t0xE643\n0xF8A5\t0xE644\n0xF8A6\t0xE645\n0xF8A7\t0xE646\n0xF8A8\t0xE647\n0xF8A9\t0xE648\n0xF8AA\t0xE649\n0xF8AB\t0xE64A\n0xF8AC\t0xE64B\n0xF8AD\t0xE64C\n0xF8AE\t0xE64D\n0xF8AF\t0xE64E\n0xF8B0\t0xE64F\n0xF8B1\t0xE650\n0xF8B2\t0xE651\n0xF8B3\t0xE652\n0xF8B4\t0xE653\n0xF8B5\t0xE654\n0xF8B6\t0xE655\n0xF8B7\t0xE656\n0xF8B8\t0xE657\n0xF8B9\t0xE658\n0xF8BA\t0xE659\n0xF8BB\t0xE65A\n0xF8BC\t0xE65B\n0xF8BD\t0xE65C\n0xF8BE\t0xE65D\n0xF8BF\t0xE65E\n0xF8C0\t0xE65F\n0xF8C1\t0xE660\n0xF8C2\t0xE661\n0xF8C3\t0xE662\n0xF8C4\t0xE663\n0xF8C5\t0xE664\n0xF8C6\t0xE665\n0xF8C7\t0xE666\n0xF8C8\t0xE667\n0xF8C9\t0xE668\n0xF8CA\t0xE669\n0xF8CB\t0xE66A\n0xF8CC\t0xE66B\n0xF8CD\t0xE66C\n0xF8CE\t0xE66D\n0xF8CF\t0xE66E\n0xF8D0\t0xE66F\n0xF8D1\t0xE670\n0xF8D2\t0xE671\n0xF8D3\t0xE672\n0xF8D4\t0xE673\n0xF8D5\t0xE674\n0xF8D6\t0xE675\n0xF8D7\t0xE676\n0xF8D8\t0xE677\n0xF8D9\t0xE678\n0xF8DA\t0xE679\n0xF8DB\t0xE67A\n0xF8DC\t0xE67B\n0xF8DD\t0xE67C\n0xF8DE\t0xE67D\n0xF8DF\t0xE67E\n0xF8E0\t0xE67F\n0xF8E1\t0xE680\n0xF8E2\t0xE681\n0xF8E3\t0xE682\n0xF8E4\t0xE683\n0xF8E5\t0xE684\n0xF8E6\t0xE685\n0xF8E7\t0xE686\n0xF8E8\t0xE687\n0xF8E9\t0xE688\n0xF8EA\t0xE689\n0xF8EB\t0xE68A\n0xF8EC\t0xE68B\n0xF8ED\t0xE68C\n0xF8EE\t0xE68D\n0xF8EF\t0xE68E\n0xF8F0\t0xE68F\n0xF8F1\t0xE690\n0xF8F2\t0xE691\n0xF8F3\t0xE692\n0xF8F4\t0xE693\n0xF8F5\t0xE694\n0xF8F6\t0xE695\n0xF8F7\t0xE696\n0xF8F8\t0xE697\n0xF8F9\t0xE698\n0xF8FA\t0xE699\n0xF8FB\t0xE69A\n0xF8FC\t0xE69B\n0xF940\t0xE69C\n0xF941\t0xE69D\n0xF942\t0xE69E\n0xF943\t0xE69F\n0xF944\t0xE6A0\n0xF945\t0xE6A1\n0xF946\t0xE6A2\n0xF947\t0xE6A3\n0xF948\t0xE6A4\n0xF949\t0xE6A5\n0xF94A\t0xE6A6\n0xF94B\t0xE6A7\n0xF94C\t0xE6A8\n0xF94D\t0xE6A9\n0xF94E\t0xE6AA\n0xF94F\t0xE6AB\n0xF950\t0xE6AC\n0xF951\t0xE6AD\n0xF952\t0xE6AE\n0xF953\t0xE6AF\n0xF954\t0xE6B0\n0xF955\t0xE6B1\n0xF956\t0xE6B2\n0xF957\t0xE6B3\n0xF958\t0xE6B4\n0xF959\t0xE6B5\n0xF95A\t0xE6B6\n0xF95B\t0xE6B7\n0xF95C\t0xE6B8\n0xF95D\t0xE6B9\n0xF95E\t0xE6BA\n0xF95F\t0xE6BB\n0xF960\t0xE6BC\n0xF961\t0xE6BD\n0xF962\t0xE6BE\n0xF963\t0xE6BF\n0xF964\t0xE6C0\n0xF965\t0xE6C1\n0xF966\t0xE6C2\n0xF967\t0xE6C3\n0xF968\t0xE6C4\n0xF969\t0xE6C5\n0xF96A\t0xE6C6\n0xF96B\t0xE6C7\n0xF96C\t0xE6C8\n0xF96D\t0xE6C9\n0xF96E\t0xE6CA\n0xF96F\t0xE6CB\n0xF970\t0xE6CC\n0xF971\t0xE6CD\n0xF972\t0xE6CE\n0xF973\t0xE6CF\n0xF974\t0xE6D0\n0xF975\t0xE6D1\n0xF976\t0xE6D2\n0xF977\t0xE6D3\n0xF978\t0xE6D4\n0xF979\t0xE6D5\n0xF97A\t0xE6D6\n0xF97B\t0xE6D7\n0xF97C\t0xE6D8\n0xF97D\t0xE6D9\n0xF97E\t0xE6DA\n0xF980\t0xE6DB\n0xF981\t0xE6DC\n0xF982\t0xE6DD\n0xF983\t0xE6DE\n0xF984\t0xE6DF\n0xF985\t0xE6E0\n0xF986\t0xE6E1\n0xF987\t0xE6E2\n0xF988\t0xE6E3\n0xF989\t0xE6E4\n0xF98A\t0xE6E5\n0xF98B\t0xE6E6\n0xF98C\t0xE6E7\n0xF98D\t0xE6E8\n0xF98E\t0xE6E9\n0xF98F\t0xE6EA\n0xF990\t0xE6EB\n0xF991\t0xE6EC\n0xF992\t0xE6ED\n0xF993\t0xE6EE\n0xF994\t0xE6EF\n0xF995\t0xE6F0\n0xF996\t0xE6F1\n0xF997\t0xE6F2\n0xF998\t0xE6F3\n0xF999\t0xE6F4\n0xF99A\t0xE6F5\n0xF99B\t0xE6F6\n0xF99C\t0xE6F7\n0xF99D\t0xE6F8\n0xF99E\t0xE6F9\n0xF99F\t0xE6FA\n0xF9A0\t0xE6FB\n0xF9A1\t0xE6FC\n0xF9A2\t0xE6FD\n0xF9A3\t0xE6FE\n0xF9A4\t0xE6FF\n0xF9A5\t0xE700\n0xF9A6\t0xE701\n0xF9A7\t0xE702\n0xF9A8\t0xE703\n0xF9A9\t0xE704\n0xF9AA\t0xE705\n0xF9AB\t0xE706\n0xF9AC\t0xE707\n0xF9AD\t0xE708\n0xF9AE\t0xE709\n0xF9AF\t0xE70A\n0xF9B0\t0xE70B\n0xF9B1\t0xE70C\n0xF9B2\t0xE70D\n0xF9B3\t0xE70E\n0xF9B4\t0xE70F\n0xF9B5\t0xE710\n0xF9B6\t0xE711\n0xF9B7\t0xE712\n0xF9B8\t0xE713\n0xF9B9\t0xE714\n0xF9BA\t0xE715\n0xF9BB\t0xE716\n0xF9BC\t0xE717\n0xF9BD\t0xE718\n0xF9BE\t0xE719\n0xF9BF\t0xE71A\n0xF9C0\t0xE71B\n0xF9C1\t0xE71C\n0xF9C2\t0xE71D\n0xF9C3\t0xE71E\n0xF9C4\t0xE71F\n0xF9C5\t0xE720\n0xF9C6\t0xE721\n0xF9C7\t0xE722\n0xF9C8\t0xE723\n0xF9C9\t0xE724\n0xF9CA\t0xE725\n0xF9CB\t0xE726\n0xF9CC\t0xE727\n0xF9CD\t0xE728\n0xF9CE\t0xE729\n0xF9CF\t0xE72A\n0xF9D0\t0xE72B\n0xF9D1\t0xE72C\n0xF9D2\t0xE72D\n0xF9D3\t0xE72E\n0xF9D4\t0xE72F\n0xF9D5\t0xE730\n0xF9D6\t0xE731\n0xF9D7\t0xE732\n0xF9D8\t0xE733\n0xF9D9\t0xE734\n0xF9DA\t0xE735\n0xF9DB\t0xE736\n0xF9DC\t0xE737\n0xF9DD\t0xE738\n0xF9DE\t0xE739\n0xF9DF\t0xE73A\n0xF9E0\t0xE73B\n0xF9E1\t0xE73C\n0xF9E2\t0xE73D\n0xF9E3\t0xE73E\n0xF9E4\t0xE73F\n0xF9E5\t0xE740\n0xF9E6\t0xE741\n0xF9E7\t0xE742\n0xF9E8\t0xE743\n0xF9E9\t0xE744\n0xF9EA\t0xE745\n0xF9EB\t0xE746\n0xF9EC\t0xE747\n0xF9ED\t0xE748\n0xF9EE\t0xE749\n0xF9EF\t0xE74A\n0xF9F0\t0xE74B\n0xF9F1\t0xE74C\n0xF9F2\t0xE74D\n0xF9F3\t0xE74E\n0xF9F4\t0xE74F\n0xF9F5\t0xE750\n0xF9F6\t0xE751\n0xF9F7\t0xE752\n0xF9F8\t0xE753\n0xF9F9\t0xE754\n0xF9FA\t0xE755\n0xF9FB\t0xE756\n0xF9FC\t0xE757\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/SHIFT_JISX0213.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x00A5\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x203E\n0x7F\t0x007F\n0x8140\t0x3000\n0x8141\t0x3001\n0x8142\t0x3002\n0x8143\t0xFF0C\n0x8144\t0xFF0E\n0x8145\t0x30FB\n0x8146\t0xFF1A\n0x8147\t0xFF1B\n0x8148\t0xFF1F\n0x8149\t0xFF01\n0x814A\t0x309B\n0x814B\t0x309C\n0x814C\t0x00B4\n0x814D\t0xFF40\n0x814E\t0x00A8\n0x814F\t0xFF3E\n0x8150\t0xFFE3\n0x8151\t0xFF3F\n0x8152\t0x30FD\n0x8153\t0x30FE\n0x8154\t0x309D\n0x8155\t0x309E\n0x8156\t0x3003\n0x8157\t0x4EDD\n0x8158\t0x3005\n0x8159\t0x3006\n0x815A\t0x3007\n0x815B\t0x30FC\n0x815C\t0x2014\n0x815D\t0x2010\n0x815E\t0xFF0F\n0x815F\t0xFF3C\n0x8160\t0x301C\n0x8161\t0x2016\n0x8162\t0xFF5C\n0x8163\t0x2026\n0x8164\t0x2025\n0x8165\t0x2018\n0x8166\t0x2019\n0x8167\t0x201C\n0x8168\t0x201D\n0x8169\t0xFF08\n0x816A\t0xFF09\n0x816B\t0x3014\n0x816C\t0x3015\n0x816D\t0xFF3B\n0x816E\t0xFF3D\n0x816F\t0xFF5B\n0x8170\t0xFF5D\n0x8171\t0x3008\n0x8172\t0x3009\n0x8173\t0x300A\n0x8174\t0x300B\n0x8175\t0x300C\n0x8176\t0x300D\n0x8177\t0x300E\n0x8178\t0x300F\n0x8179\t0x3010\n0x817A\t0x3011\n0x817B\t0xFF0B\n0x817C\t0x2212\n0x817D\t0x00B1\n0x817E\t0x00D7\n0x8180\t0x00F7\n0x8181\t0xFF1D\n0x8182\t0x2260\n0x8183\t0xFF1C\n0x8184\t0xFF1E\n0x8185\t0x2266\n0x8186\t0x2267\n0x8187\t0x221E\n0x8188\t0x2234\n0x8189\t0x2642\n0x818A\t0x2640\n0x818B\t0x00B0\n0x818C\t0x2032\n0x818D\t0x2033\n0x818E\t0x2103\n0x818F\t0xFFE5\n0x8190\t0xFF04\n0x8191\t0x00A2\n0x8192\t0x00A3\n0x8193\t0xFF05\n0x8194\t0xFF03\n0x8195\t0xFF06\n0x8196\t0xFF0A\n0x8197\t0xFF20\n0x8198\t0x00A7\n0x8199\t0x2606\n0x819A\t0x2605\n0x819B\t0x25CB\n0x819C\t0x25CF\n0x819D\t0x25CE\n0x819E\t0x25C7\n0x819F\t0x25C6\n0x81A0\t0x25A1\n0x81A1\t0x25A0\n0x81A2\t0x25B3\n0x81A3\t0x25B2\n0x81A4\t0x25BD\n0x81A5\t0x25BC\n0x81A6\t0x203B\n0x81A7\t0x3012\n0x81A8\t0x2192\n0x81A9\t0x2190\n0x81AA\t0x2191\n0x81AB\t0x2193\n0x81AC\t0x3013\n0x81AD\t0xFF07\n0x81AE\t0xFF02\n0x81AF\t0xFF0D\n0x81B0\t0xFF5E\n0x81B1\t0x3033\n0x81B2\t0x3034\n0x81B3\t0x3035\n0x81B4\t0x303B\n0x81B5\t0x303C\n0x81B6\t0x30FF\n0x81B7\t0x309F\n0x81B8\t0x2208\n0x81B9\t0x220B\n0x81BA\t0x2286\n0x81BB\t0x2287\n0x81BC\t0x2282\n0x81BD\t0x2283\n0x81BE\t0x222A\n0x81BF\t0x2229\n0x81C0\t0x2284\n0x81C1\t0x2285\n0x81C2\t0x228A\n0x81C3\t0x228B\n0x81C4\t0x2209\n0x81C5\t0x2205\n0x81C6\t0x2305\n0x81C7\t0x2306\n0x81C8\t0x2227\n0x81C9\t0x2228\n0x81CA\t0x00AC\n0x81CB\t0x21D2\n0x81CC\t0x21D4\n0x81CD\t0x2200\n0x81CE\t0x2203\n0x81CF\t0x2295\n0x81D0\t0x2296\n0x81D1\t0x2297\n0x81D2\t0x2225\n0x81D3\t0x2226\n0x81D4\t0xFF5F\n0x81D5\t0xFF60\n0x81D6\t0x3018\n0x81D7\t0x3019\n0x81D8\t0x3016\n0x81D9\t0x3017\n0x81DA\t0x2220\n0x81DB\t0x22A5\n0x81DC\t0x2312\n0x81DD\t0x2202\n0x81DE\t0x2207\n0x81DF\t0x2261\n0x81E0\t0x2252\n0x81E1\t0x226A\n0x81E2\t0x226B\n0x81E3\t0x221A\n0x81E4\t0x223D\n0x81E5\t0x221D\n0x81E6\t0x2235\n0x81E7\t0x222B\n0x81E8\t0x222C\n0x81E9\t0x2262\n0x81EA\t0x2243\n0x81EB\t0x2245\n0x81EC\t0x2248\n0x81ED\t0x2276\n0x81EE\t0x2277\n0x81EF\t0x2194\n0x81F0\t0x212B\n0x81F1\t0x2030\n0x81F2\t0x266F\n0x81F3\t0x266D\n0x81F4\t0x266A\n0x81F5\t0x2020\n0x81F6\t0x2021\n0x81F7\t0x00B6\n0x81F8\t0x266E\n0x81F9\t0x266B\n0x81FA\t0x266C\n0x81FB\t0x2669\n0x81FC\t0x25EF\n0x8240\t0x25B7\n0x8241\t0x25B6\n0x8242\t0x25C1\n0x8243\t0x25C0\n0x8244\t0x2197\n0x8245\t0x2198\n0x8246\t0x2196\n0x8247\t0x2199\n0x8248\t0x21C4\n0x8249\t0x21E8\n0x824A\t0x21E6\n0x824B\t0x21E7\n0x824C\t0x21E9\n0x824D\t0x2934\n0x824E\t0x2935\n0x824F\t0xFF10\n0x8250\t0xFF11\n0x8251\t0xFF12\n0x8252\t0xFF13\n0x8253\t0xFF14\n0x8254\t0xFF15\n0x8255\t0xFF16\n0x8256\t0xFF17\n0x8257\t0xFF18\n0x8258\t0xFF19\n0x8259\t0x29BF\n0x825A\t0x25C9\n0x825B\t0x303D\n0x825C\t0xFE46\n0x825D\t0xFE45\n0x825E\t0x25E6\n0x825F\t0x2022\n0x8260\t0xFF21\n0x8261\t0xFF22\n0x8262\t0xFF23\n0x8263\t0xFF24\n0x8264\t0xFF25\n0x8265\t0xFF26\n0x8266\t0xFF27\n0x8267\t0xFF28\n0x8268\t0xFF29\n0x8269\t0xFF2A\n0x826A\t0xFF2B\n0x826B\t0xFF2C\n0x826C\t0xFF2D\n0x826D\t0xFF2E\n0x826E\t0xFF2F\n0x826F\t0xFF30\n0x8270\t0xFF31\n0x8271\t0xFF32\n0x8272\t0xFF33\n0x8273\t0xFF34\n0x8274\t0xFF35\n0x8275\t0xFF36\n0x8276\t0xFF37\n0x8277\t0xFF38\n0x8278\t0xFF39\n0x8279\t0xFF3A\n0x827A\t0x2213\n0x827B\t0x2135\n0x827C\t0x210F\n0x827D\t0x33CB\n0x827E\t0x2113\n0x8280\t0x2127\n0x8281\t0xFF41\n0x8282\t0xFF42\n0x8283\t0xFF43\n0x8284\t0xFF44\n0x8285\t0xFF45\n0x8286\t0xFF46\n0x8287\t0xFF47\n0x8288\t0xFF48\n0x8289\t0xFF49\n0x828A\t0xFF4A\n0x828B\t0xFF4B\n0x828C\t0xFF4C\n0x828D\t0xFF4D\n0x828E\t0xFF4E\n0x828F\t0xFF4F\n0x8290\t0xFF50\n0x8291\t0xFF51\n0x8292\t0xFF52\n0x8293\t0xFF53\n0x8294\t0xFF54\n0x8295\t0xFF55\n0x8296\t0xFF56\n0x8297\t0xFF57\n0x8298\t0xFF58\n0x8299\t0xFF59\n0x829A\t0xFF5A\n0x829B\t0x30A0\n0x829C\t0x2013\n0x829D\t0x29FA\n0x829E\t0x29FB\n0x829F\t0x3041\n0x82A0\t0x3042\n0x82A1\t0x3043\n0x82A2\t0x3044\n0x82A3\t0x3045\n0x82A4\t0x3046\n0x82A5\t0x3047\n0x82A6\t0x3048\n0x82A7\t0x3049\n0x82A8\t0x304A\n0x82A9\t0x304B\n0x82AA\t0x304C\n0x82AB\t0x304D\n0x82AC\t0x304E\n0x82AD\t0x304F\n0x82AE\t0x3050\n0x82AF\t0x3051\n0x82B0\t0x3052\n0x82B1\t0x3053\n0x82B2\t0x3054\n0x82B3\t0x3055\n0x82B4\t0x3056\n0x82B5\t0x3057\n0x82B6\t0x3058\n0x82B7\t0x3059\n0x82B8\t0x305A\n0x82B9\t0x305B\n0x82BA\t0x305C\n0x82BB\t0x305D\n0x82BC\t0x305E\n0x82BD\t0x305F\n0x82BE\t0x3060\n0x82BF\t0x3061\n0x82C0\t0x3062\n0x82C1\t0x3063\n0x82C2\t0x3064\n0x82C3\t0x3065\n0x82C4\t0x3066\n0x82C5\t0x3067\n0x82C6\t0x3068\n0x82C7\t0x3069\n0x82C8\t0x306A\n0x82C9\t0x306B\n0x82CA\t0x306C\n0x82CB\t0x306D\n0x82CC\t0x306E\n0x82CD\t0x306F\n0x82CE\t0x3070\n0x82CF\t0x3071\n0x82D0\t0x3072\n0x82D1\t0x3073\n0x82D2\t0x3074\n0x82D3\t0x3075\n0x82D4\t0x3076\n0x82D5\t0x3077\n0x82D6\t0x3078\n0x82D7\t0x3079\n0x82D8\t0x307A\n0x82D9\t0x307B\n0x82DA\t0x307C\n0x82DB\t0x307D\n0x82DC\t0x307E\n0x82DD\t0x307F\n0x82DE\t0x3080\n0x82DF\t0x3081\n0x82E0\t0x3082\n0x82E1\t0x3083\n0x82E2\t0x3084\n0x82E3\t0x3085\n0x82E4\t0x3086\n0x82E5\t0x3087\n0x82E6\t0x3088\n0x82E7\t0x3089\n0x82E8\t0x308A\n0x82E9\t0x308B\n0x82EA\t0x308C\n0x82EB\t0x308D\n0x82EC\t0x308E\n0x82ED\t0x308F\n0x82EE\t0x3090\n0x82EF\t0x3091\n0x82F0\t0x3092\n0x82F1\t0x3093\n0x82F2\t0x3094\n0x82F3\t0x3095\n0x82F4\t0x3096\n0x82F5\t0x304B 0x309A\n0x82F6\t0x304D 0x309A\n0x82F7\t0x304F 0x309A\n0x82F8\t0x3051 0x309A\n0x82F9\t0x3053 0x309A\n0x8340\t0x30A1\n0x8341\t0x30A2\n0x8342\t0x30A3\n0x8343\t0x30A4\n0x8344\t0x30A5\n0x8345\t0x30A6\n0x8346\t0x30A7\n0x8347\t0x30A8\n0x8348\t0x30A9\n0x8349\t0x30AA\n0x834A\t0x30AB\n0x834B\t0x30AC\n0x834C\t0x30AD\n0x834D\t0x30AE\n0x834E\t0x30AF\n0x834F\t0x30B0\n0x8350\t0x30B1\n0x8351\t0x30B2\n0x8352\t0x30B3\n0x8353\t0x30B4\n0x8354\t0x30B5\n0x8355\t0x30B6\n0x8356\t0x30B7\n0x8357\t0x30B8\n0x8358\t0x30B9\n0x8359\t0x30BA\n0x835A\t0x30BB\n0x835B\t0x30BC\n0x835C\t0x30BD\n0x835D\t0x30BE\n0x835E\t0x30BF\n0x835F\t0x30C0\n0x8360\t0x30C1\n0x8361\t0x30C2\n0x8362\t0x30C3\n0x8363\t0x30C4\n0x8364\t0x30C5\n0x8365\t0x30C6\n0x8366\t0x30C7\n0x8367\t0x30C8\n0x8368\t0x30C9\n0x8369\t0x30CA\n0x836A\t0x30CB\n0x836B\t0x30CC\n0x836C\t0x30CD\n0x836D\t0x30CE\n0x836E\t0x30CF\n0x836F\t0x30D0\n0x8370\t0x30D1\n0x8371\t0x30D2\n0x8372\t0x30D3\n0x8373\t0x30D4\n0x8374\t0x30D5\n0x8375\t0x30D6\n0x8376\t0x30D7\n0x8377\t0x30D8\n0x8378\t0x30D9\n0x8379\t0x30DA\n0x837A\t0x30DB\n0x837B\t0x30DC\n0x837C\t0x30DD\n0x837D\t0x30DE\n0x837E\t0x30DF\n0x8380\t0x30E0\n0x8381\t0x30E1\n0x8382\t0x30E2\n0x8383\t0x30E3\n0x8384\t0x30E4\n0x8385\t0x30E5\n0x8386\t0x30E6\n0x8387\t0x30E7\n0x8388\t0x30E8\n0x8389\t0x30E9\n0x838A\t0x30EA\n0x838B\t0x30EB\n0x838C\t0x30EC\n0x838D\t0x30ED\n0x838E\t0x30EE\n0x838F\t0x30EF\n0x8390\t0x30F0\n0x8391\t0x30F1\n0x8392\t0x30F2\n0x8393\t0x30F3\n0x8394\t0x30F4\n0x8395\t0x30F5\n0x8396\t0x30F6\n0x8397\t0x30AB 0x309A\n0x8398\t0x30AD 0x309A\n0x8399\t0x30AF 0x309A\n0x839A\t0x30B1 0x309A\n0x839B\t0x30B3 0x309A\n0x839C\t0x30BB 0x309A\n0x839D\t0x30C4 0x309A\n0x839E\t0x30C8 0x309A\n0x839F\t0x0391\n0x83A0\t0x0392\n0x83A1\t0x0393\n0x83A2\t0x0394\n0x83A3\t0x0395\n0x83A4\t0x0396\n0x83A5\t0x0397\n0x83A6\t0x0398\n0x83A7\t0x0399\n0x83A8\t0x039A\n0x83A9\t0x039B\n0x83AA\t0x039C\n0x83AB\t0x039D\n0x83AC\t0x039E\n0x83AD\t0x039F\n0x83AE\t0x03A0\n0x83AF\t0x03A1\n0x83B0\t0x03A3\n0x83B1\t0x03A4\n0x83B2\t0x03A5\n0x83B3\t0x03A6\n0x83B4\t0x03A7\n0x83B5\t0x03A8\n0x83B6\t0x03A9\n0x83B7\t0x2664\n0x83B8\t0x2660\n0x83B9\t0x2662\n0x83BA\t0x2666\n0x83BB\t0x2661\n0x83BC\t0x2665\n0x83BD\t0x2667\n0x83BE\t0x2663\n0x83BF\t0x03B1\n0x83C0\t0x03B2\n0x83C1\t0x03B3\n0x83C2\t0x03B4\n0x83C3\t0x03B5\n0x83C4\t0x03B6\n0x83C5\t0x03B7\n0x83C6\t0x03B8\n0x83C7\t0x03B9\n0x83C8\t0x03BA\n0x83C9\t0x03BB\n0x83CA\t0x03BC\n0x83CB\t0x03BD\n0x83CC\t0x03BE\n0x83CD\t0x03BF\n0x83CE\t0x03C0\n0x83CF\t0x03C1\n0x83D0\t0x03C3\n0x83D1\t0x03C4\n0x83D2\t0x03C5\n0x83D3\t0x03C6\n0x83D4\t0x03C7\n0x83D5\t0x03C8\n0x83D6\t0x03C9\n0x83D7\t0x03C2\n0x83D8\t0x24F5\n0x83D9\t0x24F6\n0x83DA\t0x24F7\n0x83DB\t0x24F8\n0x83DC\t0x24F9\n0x83DD\t0x24FA\n0x83DE\t0x24FB\n0x83DF\t0x24FC\n0x83E0\t0x24FD\n0x83E1\t0x24FE\n0x83E2\t0x2616\n0x83E3\t0x2617\n0x83E4\t0x3020\n0x83E5\t0x260E\n0x83E6\t0x2600\n0x83E7\t0x2601\n0x83E8\t0x2602\n0x83E9\t0x2603\n0x83EA\t0x2668\n0x83EB\t0x25B1\n0x83EC\t0x31F0\n0x83ED\t0x31F1\n0x83EE\t0x31F2\n0x83EF\t0x31F3\n0x83F0\t0x31F4\n0x83F1\t0x31F5\n0x83F2\t0x31F6\n0x83F3\t0x31F7\n0x83F4\t0x31F8\n0x83F5\t0x31F9\n0x83F6\t0x31F7 0x309A\n0x83F7\t0x31FA\n0x83F8\t0x31FB\n0x83F9\t0x31FC\n0x83FA\t0x31FD\n0x83FB\t0x31FE\n0x83FC\t0x31FF\n0x8440\t0x0410\n0x8441\t0x0411\n0x8442\t0x0412\n0x8443\t0x0413\n0x8444\t0x0414\n0x8445\t0x0415\n0x8446\t0x0401\n0x8447\t0x0416\n0x8448\t0x0417\n0x8449\t0x0418\n0x844A\t0x0419\n0x844B\t0x041A\n0x844C\t0x041B\n0x844D\t0x041C\n0x844E\t0x041D\n0x844F\t0x041E\n0x8450\t0x041F\n0x8451\t0x0420\n0x8452\t0x0421\n0x8453\t0x0422\n0x8454\t0x0423\n0x8455\t0x0424\n0x8456\t0x0425\n0x8457\t0x0426\n0x8458\t0x0427\n0x8459\t0x0428\n0x845A\t0x0429\n0x845B\t0x042A\n0x845C\t0x042B\n0x845D\t0x042C\n0x845E\t0x042D\n0x845F\t0x042E\n0x8460\t0x042F\n0x8461\t0x23BE\n0x8462\t0x23BF\n0x8463\t0x23C0\n0x8464\t0x23C1\n0x8465\t0x23C2\n0x8466\t0x23C3\n0x8467\t0x23C4\n0x8468\t0x23C5\n0x8469\t0x23C6\n0x846A\t0x23C7\n0x846B\t0x23C8\n0x846C\t0x23C9\n0x846D\t0x23CA\n0x846E\t0x23CB\n0x846F\t0x23CC\n0x8470\t0x0430\n0x8471\t0x0431\n0x8472\t0x0432\n0x8473\t0x0433\n0x8474\t0x0434\n0x8475\t0x0435\n0x8476\t0x0451\n0x8477\t0x0436\n0x8478\t0x0437\n0x8479\t0x0438\n0x847A\t0x0439\n0x847B\t0x043A\n0x847C\t0x043B\n0x847D\t0x043C\n0x847E\t0x043D\n0x8480\t0x043E\n0x8481\t0x043F\n0x8482\t0x0440\n0x8483\t0x0441\n0x8484\t0x0442\n0x8485\t0x0443\n0x8486\t0x0444\n0x8487\t0x0445\n0x8488\t0x0446\n0x8489\t0x0447\n0x848A\t0x0448\n0x848B\t0x0449\n0x848C\t0x044A\n0x848D\t0x044B\n0x848E\t0x044C\n0x848F\t0x044D\n0x8490\t0x044E\n0x8491\t0x044F\n0x8492\t0x30F7\n0x8493\t0x30F8\n0x8494\t0x30F9\n0x8495\t0x30FA\n0x8496\t0x22DA\n0x8497\t0x22DB\n0x8498\t0x2153\n0x8499\t0x2154\n0x849A\t0x2155\n0x849B\t0x2713\n0x849C\t0x2318\n0x849D\t0x2423\n0x849E\t0x23CE\n0x849F\t0x2500\n0x84A0\t0x2502\n0x84A1\t0x250C\n0x84A2\t0x2510\n0x84A3\t0x2518\n0x84A4\t0x2514\n0x84A5\t0x251C\n0x84A6\t0x252C\n0x84A7\t0x2524\n0x84A8\t0x2534\n0x84A9\t0x253C\n0x84AA\t0x2501\n0x84AB\t0x2503\n0x84AC\t0x250F\n0x84AD\t0x2513\n0x84AE\t0x251B\n0x84AF\t0x2517\n0x84B0\t0x2523\n0x84B1\t0x2533\n0x84B2\t0x252B\n0x84B3\t0x253B\n0x84B4\t0x254B\n0x84B5\t0x2520\n0x84B6\t0x252F\n0x84B7\t0x2528\n0x84B8\t0x2537\n0x84B9\t0x253F\n0x84BA\t0x251D\n0x84BB\t0x2530\n0x84BC\t0x2525\n0x84BD\t0x2538\n0x84BE\t0x2542\n0x84BF\t0x3251\n0x84C0\t0x3252\n0x84C1\t0x3253\n0x84C2\t0x3254\n0x84C3\t0x3255\n0x84C4\t0x3256\n0x84C5\t0x3257\n0x84C6\t0x3258\n0x84C7\t0x3259\n0x84C8\t0x325A\n0x84C9\t0x325B\n0x84CA\t0x325C\n0x84CB\t0x325D\n0x84CC\t0x325E\n0x84CD\t0x325F\n0x84CE\t0x32B1\n0x84CF\t0x32B2\n0x84D0\t0x32B3\n0x84D1\t0x32B4\n0x84D2\t0x32B5\n0x84D3\t0x32B6\n0x84D4\t0x32B7\n0x84D5\t0x32B8\n0x84D6\t0x32B9\n0x84D7\t0x32BA\n0x84D8\t0x32BB\n0x84D9\t0x32BC\n0x84DA\t0x32BD\n0x84DB\t0x32BE\n0x84DC\t0x32BF\n0x84E5\t0x25D0\n0x84E6\t0x25D1\n0x84E7\t0x25D2\n0x84E8\t0x25D3\n0x84E9\t0x203C\n0x84EA\t0x2047\n0x84EB\t0x2048\n0x84EC\t0x2049\n0x84ED\t0x01CD\n0x84EE\t0x01CE\n0x84EF\t0x01D0\n0x84F0\t0x1E3E\n0x84F1\t0x1E3F\n0x84F2\t0x01F8\n0x84F3\t0x01F9\n0x84F4\t0x01D1\n0x84F5\t0x01D2\n0x84F6\t0x01D4\n0x84F7\t0x01D6\n0x84F8\t0x01D8\n0x84F9\t0x01DA\n0x84FA\t0x01DC\n0x8540\t0x20AC\n0x8541\t0x00A0\n0x8542\t0x00A1\n0x8543\t0x00A4\n0x8544\t0x00A6\n0x8545\t0x00A9\n0x8546\t0x00AA\n0x8547\t0x00AB\n0x8548\t0x00AD\n0x8549\t0x00AE\n0x854A\t0x00AF\n0x854B\t0x00B2\n0x854C\t0x00B3\n0x854D\t0x00B7\n0x854E\t0x00B8\n0x854F\t0x00B9\n0x8550\t0x00BA\n0x8551\t0x00BB\n0x8552\t0x00BC\n0x8553\t0x00BD\n0x8554\t0x00BE\n0x8555\t0x00BF\n0x8556\t0x00C0\n0x8557\t0x00C1\n0x8558\t0x00C2\n0x8559\t0x00C3\n0x855A\t0x00C4\n0x855B\t0x00C5\n0x855C\t0x00C6\n0x855D\t0x00C7\n0x855E\t0x00C8\n0x855F\t0x00C9\n0x8560\t0x00CA\n0x8561\t0x00CB\n0x8562\t0x00CC\n0x8563\t0x00CD\n0x8564\t0x00CE\n0x8565\t0x00CF\n0x8566\t0x00D0\n0x8567\t0x00D1\n0x8568\t0x00D2\n0x8569\t0x00D3\n0x856A\t0x00D4\n0x856B\t0x00D5\n0x856C\t0x00D6\n0x856D\t0x00D8\n0x856E\t0x00D9\n0x856F\t0x00DA\n0x8570\t0x00DB\n0x8571\t0x00DC\n0x8572\t0x00DD\n0x8573\t0x00DE\n0x8574\t0x00DF\n0x8575\t0x00E0\n0x8576\t0x00E1\n0x8577\t0x00E2\n0x8578\t0x00E3\n0x8579\t0x00E4\n0x857A\t0x00E5\n0x857B\t0x00E6\n0x857C\t0x00E7\n0x857D\t0x00E8\n0x857E\t0x00E9\n0x8580\t0x00EA\n0x8581\t0x00EB\n0x8582\t0x00EC\n0x8583\t0x00ED\n0x8584\t0x00EE\n0x8585\t0x00EF\n0x8586\t0x00F0\n0x8587\t0x00F1\n0x8588\t0x00F2\n0x8589\t0x00F3\n0x858A\t0x00F4\n0x858B\t0x00F5\n0x858C\t0x00F6\n0x858D\t0x00F8\n0x858E\t0x00F9\n0x858F\t0x00FA\n0x8590\t0x00FB\n0x8591\t0x00FC\n0x8592\t0x00FD\n0x8593\t0x00FE\n0x8594\t0x00FF\n0x8595\t0x0100\n0x8596\t0x012A\n0x8597\t0x016A\n0x8598\t0x0112\n0x8599\t0x014C\n0x859A\t0x0101\n0x859B\t0x012B\n0x859C\t0x016B\n0x859D\t0x0113\n0x859E\t0x014D\n0x859F\t0x0104\n0x85A0\t0x02D8\n0x85A1\t0x0141\n0x85A2\t0x013D\n0x85A3\t0x015A\n0x85A4\t0x0160\n0x85A5\t0x015E\n0x85A6\t0x0164\n0x85A7\t0x0179\n0x85A8\t0x017D\n0x85A9\t0x017B\n0x85AA\t0x0105\n0x85AB\t0x02DB\n0x85AC\t0x0142\n0x85AD\t0x013E\n0x85AE\t0x015B\n0x85AF\t0x02C7\n0x85B0\t0x0161\n0x85B1\t0x015F\n0x85B2\t0x0165\n0x85B3\t0x017A\n0x85B4\t0x02DD\n0x85B5\t0x017E\n0x85B6\t0x017C\n0x85B7\t0x0154\n0x85B8\t0x0102\n0x85B9\t0x0139\n0x85BA\t0x0106\n0x85BB\t0x010C\n0x85BC\t0x0118\n0x85BD\t0x011A\n0x85BE\t0x010E\n0x85BF\t0x0143\n0x85C0\t0x0147\n0x85C1\t0x0150\n0x85C2\t0x0158\n0x85C3\t0x016E\n0x85C4\t0x0170\n0x85C5\t0x0162\n0x85C6\t0x0155\n0x85C7\t0x0103\n0x85C8\t0x013A\n0x85C9\t0x0107\n0x85CA\t0x010D\n0x85CB\t0x0119\n0x85CC\t0x011B\n0x85CD\t0x010F\n0x85CE\t0x0111\n0x85CF\t0x0144\n0x85D0\t0x0148\n0x85D1\t0x0151\n0x85D2\t0x0159\n0x85D3\t0x016F\n0x85D4\t0x0171\n0x85D5\t0x0163\n0x85D6\t0x02D9\n0x85D7\t0x0108\n0x85D8\t0x011C\n0x85D9\t0x0124\n0x85DA\t0x0134\n0x85DB\t0x015C\n0x85DC\t0x016C\n0x85DD\t0x0109\n0x85DE\t0x011D\n0x85DF\t0x0125\n0x85E0\t0x0135\n0x85E1\t0x015D\n0x85E2\t0x016D\n0x85E3\t0x0271\n0x85E4\t0x028B\n0x85E5\t0x027E\n0x85E6\t0x0283\n0x85E7\t0x0292\n0x85E8\t0x026C\n0x85E9\t0x026E\n0x85EA\t0x0279\n0x85EB\t0x0288\n0x85EC\t0x0256\n0x85ED\t0x0273\n0x85EE\t0x027D\n0x85EF\t0x0282\n0x85F0\t0x0290\n0x85F1\t0x027B\n0x85F2\t0x026D\n0x85F3\t0x025F\n0x85F4\t0x0272\n0x85F5\t0x029D\n0x85F6\t0x028E\n0x85F7\t0x0261\n0x85F8\t0x014B\n0x85F9\t0x0270\n0x85FA\t0x0281\n0x85FB\t0x0127\n0x85FC\t0x0295\n0x8640\t0x0294\n0x8641\t0x0266\n0x8642\t0x0298\n0x8643\t0x01C2\n0x8644\t0x0253\n0x8645\t0x0257\n0x8646\t0x0284\n0x8647\t0x0260\n0x8648\t0x0193\n0x8649\t0x0153\n0x864A\t0x0152\n0x864B\t0x0268\n0x864C\t0x0289\n0x864D\t0x0258\n0x864E\t0x0275\n0x864F\t0x0259\n0x8650\t0x025C\n0x8651\t0x025E\n0x8652\t0x0250\n0x8653\t0x026F\n0x8654\t0x028A\n0x8655\t0x0264\n0x8656\t0x028C\n0x8657\t0x0254\n0x8658\t0x0251\n0x8659\t0x0252\n0x865A\t0x028D\n0x865B\t0x0265\n0x865C\t0x02A2\n0x865D\t0x02A1\n0x865E\t0x0255\n0x865F\t0x0291\n0x8660\t0x027A\n0x8661\t0x0267\n0x8662\t0x025A\n0x8663\t0x00E6 0x0300\n0x8664\t0x01FD\n0x8665\t0x1F70\n0x8666\t0x1F71\n0x8667\t0x0254 0x0300\n0x8668\t0x0254 0x0301\n0x8669\t0x028C 0x0300\n0x866A\t0x028C 0x0301\n0x866B\t0x0259 0x0300\n0x866C\t0x0259 0x0301\n0x866D\t0x025A 0x0300\n0x866E\t0x025A 0x0301\n0x866F\t0x1F72\n0x8670\t0x1F73\n0x8671\t0x0361\n0x8672\t0x02C8\n0x8673\t0x02CC\n0x8674\t0x02D0\n0x8675\t0x02D1\n0x8676\t0x0306\n0x8677\t0x203F\n0x8678\t0x030B\n0x8679\t0x0301\n0x867A\t0x0304\n0x867B\t0x0300\n0x867C\t0x030F\n0x867D\t0x030C\n0x867E\t0x0302\n0x8680\t0x02E5\n0x8681\t0x02E6\n0x8682\t0x02E7\n0x8683\t0x02E8\n0x8684\t0x02E9\n0x8685\t0x02E9 0x02E5\n0x8686\t0x02E5 0x02E9\n0x8687\t0x0325\n0x8688\t0x032C\n0x8689\t0x0339\n0x868A\t0x031C\n0x868B\t0x031F\n0x868C\t0x0320\n0x868D\t0x0308\n0x868E\t0x033D\n0x868F\t0x0329\n0x8690\t0x032F\n0x8691\t0x02DE\n0x8692\t0x0324\n0x8693\t0x0330\n0x8694\t0x033C\n0x8695\t0x0334\n0x8696\t0x031D\n0x8697\t0x031E\n0x8698\t0x0318\n0x8699\t0x0319\n0x869A\t0x032A\n0x869B\t0x033A\n0x869C\t0x033B\n0x869D\t0x0303\n0x869E\t0x031A\n0x869F\t0x2776\n0x86A0\t0x2777\n0x86A1\t0x2778\n0x86A2\t0x2779\n0x86A3\t0x277A\n0x86A4\t0x277B\n0x86A5\t0x277C\n0x86A6\t0x277D\n0x86A7\t0x277E\n0x86A8\t0x277F\n0x86A9\t0x24EB\n0x86AA\t0x24EC\n0x86AB\t0x24ED\n0x86AC\t0x24EE\n0x86AD\t0x24EF\n0x86AE\t0x24F0\n0x86AF\t0x24F1\n0x86B0\t0x24F2\n0x86B1\t0x24F3\n0x86B2\t0x24F4\n0x86B3\t0x2170\n0x86B4\t0x2171\n0x86B5\t0x2172\n0x86B6\t0x2173\n0x86B7\t0x2174\n0x86B8\t0x2175\n0x86B9\t0x2176\n0x86BA\t0x2177\n0x86BB\t0x2178\n0x86BC\t0x2179\n0x86BD\t0x217A\n0x86BE\t0x217B\n0x86BF\t0x24D0\n0x86C0\t0x24D1\n0x86C1\t0x24D2\n0x86C2\t0x24D3\n0x86C3\t0x24D4\n0x86C4\t0x24D5\n0x86C5\t0x24D6\n0x86C6\t0x24D7\n0x86C7\t0x24D8\n0x86C8\t0x24D9\n0x86C9\t0x24DA\n0x86CA\t0x24DB\n0x86CB\t0x24DC\n0x86CC\t0x24DD\n0x86CD\t0x24DE\n0x86CE\t0x24DF\n0x86CF\t0x24E0\n0x86D0\t0x24E1\n0x86D1\t0x24E2\n0x86D2\t0x24E3\n0x86D3\t0x24E4\n0x86D4\t0x24E5\n0x86D5\t0x24E6\n0x86D6\t0x24E7\n0x86D7\t0x24E8\n0x86D8\t0x24E9\n0x86D9\t0x32D0\n0x86DA\t0x32D1\n0x86DB\t0x32D2\n0x86DC\t0x32D3\n0x86DD\t0x32D4\n0x86DE\t0x32D5\n0x86DF\t0x32D6\n0x86E0\t0x32D7\n0x86E1\t0x32D8\n0x86E2\t0x32D9\n0x86E3\t0x32DA\n0x86E4\t0x32DB\n0x86E5\t0x32DC\n0x86E6\t0x32DD\n0x86E7\t0x32DE\n0x86E8\t0x32DF\n0x86E9\t0x32E0\n0x86EA\t0x32E1\n0x86EB\t0x32E2\n0x86EC\t0x32E3\n0x86ED\t0x32FA\n0x86EE\t0x32E9\n0x86EF\t0x32E5\n0x86F0\t0x32ED\n0x86F1\t0x32EC\n0x86FB\t0x2051\n0x86FC\t0x2042\n0x8740\t0x2460\n0x8741\t0x2461\n0x8742\t0x2462\n0x8743\t0x2463\n0x8744\t0x2464\n0x8745\t0x2465\n0x8746\t0x2466\n0x8747\t0x2467\n0x8748\t0x2468\n0x8749\t0x2469\n0x874A\t0x246A\n0x874B\t0x246B\n0x874C\t0x246C\n0x874D\t0x246D\n0x874E\t0x246E\n0x874F\t0x246F\n0x8750\t0x2470\n0x8751\t0x2471\n0x8752\t0x2472\n0x8753\t0x2473\n0x8754\t0x2160\n0x8755\t0x2161\n0x8756\t0x2162\n0x8757\t0x2163\n0x8758\t0x2164\n0x8759\t0x2165\n0x875A\t0x2166\n0x875B\t0x2167\n0x875C\t0x2168\n0x875D\t0x2169\n0x875E\t0x216A\n0x875F\t0x3349\n0x8760\t0x3314\n0x8761\t0x3322\n0x8762\t0x334D\n0x8763\t0x3318\n0x8764\t0x3327\n0x8765\t0x3303\n0x8766\t0x3336\n0x8767\t0x3351\n0x8768\t0x3357\n0x8769\t0x330D\n0x876A\t0x3326\n0x876B\t0x3323\n0x876C\t0x332B\n0x876D\t0x334A\n0x876E\t0x333B\n0x876F\t0x339C\n0x8770\t0x339D\n0x8771\t0x339E\n0x8772\t0x338E\n0x8773\t0x338F\n0x8774\t0x33C4\n0x8775\t0x33A1\n0x8776\t0x216B\n0x877E\t0x337B\n0x8780\t0x301D\n0x8781\t0x301F\n0x8782\t0x2116\n0x8783\t0x33CD\n0x8784\t0x2121\n0x8785\t0x32A4\n0x8786\t0x32A5\n0x8787\t0x32A6\n0x8788\t0x32A7\n0x8789\t0x32A8\n0x878A\t0x3231\n0x878B\t0x3232\n0x878C\t0x3239\n0x878D\t0x337E\n0x878E\t0x337D\n0x878F\t0x337C\n0x8793\t0x222E\n0x8798\t0x221F\n0x8799\t0x22BF\n0x879D\t0x2756\n0x879E\t0x261E\n0x879F\t0x4FF1\n0x87A0\t0x2000B\n0x87A1\t0x3402\n0x87A2\t0x4E28\n0x87A3\t0x4E2F\n0x87A4\t0x4E30\n0x87A5\t0x4E8D\n0x87A6\t0x4EE1\n0x87A7\t0x4EFD\n0x87A8\t0x4EFF\n0x87A9\t0x4F03\n0x87AA\t0x4F0B\n0x87AB\t0x4F60\n0x87AC\t0x4F48\n0x87AD\t0x4F49\n0x87AE\t0x4F56\n0x87AF\t0x4F5F\n0x87B0\t0x4F6A\n0x87B1\t0x4F6C\n0x87B2\t0x4F7E\n0x87B3\t0x4F8A\n0x87B4\t0x4F94\n0x87B5\t0x4F97\n0x87B6\t0xFA30\n0x87B7\t0x4FC9\n0x87B8\t0x4FE0\n0x87B9\t0x5001\n0x87BA\t0x5002\n0x87BB\t0x500E\n0x87BC\t0x5018\n0x87BD\t0x5027\n0x87BE\t0x502E\n0x87BF\t0x5040\n0x87C0\t0x503B\n0x87C1\t0x5041\n0x87C2\t0x5094\n0x87C3\t0x50CC\n0x87C4\t0x50F2\n0x87C5\t0x50D0\n0x87C6\t0x50E6\n0x87C7\t0xFA31\n0x87C8\t0x5106\n0x87C9\t0x5103\n0x87CA\t0x510B\n0x87CB\t0x511E\n0x87CC\t0x5135\n0x87CD\t0x514A\n0x87CE\t0xFA32\n0x87CF\t0x5155\n0x87D0\t0x5157\n0x87D1\t0x34B5\n0x87D2\t0x519D\n0x87D3\t0x51C3\n0x87D4\t0x51CA\n0x87D5\t0x51DE\n0x87D6\t0x51E2\n0x87D7\t0x51EE\n0x87D8\t0x5201\n0x87D9\t0x34DB\n0x87DA\t0x5213\n0x87DB\t0x5215\n0x87DC\t0x5249\n0x87DD\t0x5257\n0x87DE\t0x5261\n0x87DF\t0x5293\n0x87E0\t0x52C8\n0x87E1\t0xFA33\n0x87E2\t0x52CC\n0x87E3\t0x52D0\n0x87E4\t0x52D6\n0x87E5\t0x52DB\n0x87E6\t0xFA34\n0x87E7\t0x52F0\n0x87E8\t0x52FB\n0x87E9\t0x5300\n0x87EA\t0x5307\n0x87EB\t0x531C\n0x87EC\t0xFA35\n0x87ED\t0x5361\n0x87EE\t0x5363\n0x87EF\t0x537D\n0x87F0\t0x5393\n0x87F1\t0x539D\n0x87F2\t0x53B2\n0x87F3\t0x5412\n0x87F4\t0x5427\n0x87F5\t0x544D\n0x87F6\t0x549C\n0x87F7\t0x546B\n0x87F8\t0x5474\n0x87F9\t0x547F\n0x87FA\t0x5488\n0x87FB\t0x5496\n0x87FC\t0x54A1\n0x8840\t0x54A9\n0x8841\t0x54C6\n0x8842\t0x54FF\n0x8843\t0x550E\n0x8844\t0x552B\n0x8845\t0x5535\n0x8846\t0x5550\n0x8847\t0x555E\n0x8848\t0x5581\n0x8849\t0x5586\n0x884A\t0x558E\n0x884B\t0xFA36\n0x884C\t0x55AD\n0x884D\t0x55CE\n0x884E\t0xFA37\n0x884F\t0x5608\n0x8850\t0x560E\n0x8851\t0x563B\n0x8852\t0x5649\n0x8853\t0x5676\n0x8854\t0x5666\n0x8855\t0xFA38\n0x8856\t0x566F\n0x8857\t0x5671\n0x8858\t0x5672\n0x8859\t0x5699\n0x885A\t0x569E\n0x885B\t0x56A9\n0x885C\t0x56AC\n0x885D\t0x56B3\n0x885E\t0x56C9\n0x885F\t0x56CA\n0x8860\t0x570A\n0x8861\t0x2123D\n0x8862\t0x5721\n0x8863\t0x572F\n0x8864\t0x5733\n0x8865\t0x5734\n0x8866\t0x5770\n0x8867\t0x5777\n0x8868\t0x577C\n0x8869\t0x579C\n0x886A\t0xFA0F\n0x886B\t0x2131B\n0x886C\t0x57B8\n0x886D\t0x57C7\n0x886E\t0x57C8\n0x886F\t0x57CF\n0x8870\t0x57E4\n0x8871\t0x57ED\n0x8872\t0x57F5\n0x8873\t0x57F6\n0x8874\t0x57FF\n0x8875\t0x5809\n0x8876\t0xFA10\n0x8877\t0x5861\n0x8878\t0x5864\n0x8879\t0xFA39\n0x887A\t0x587C\n0x887B\t0x5889\n0x887C\t0x589E\n0x887D\t0xFA3A\n0x887E\t0x58A9\n0x8880\t0x2146E\n0x8881\t0x58D2\n0x8882\t0x58CE\n0x8883\t0x58D4\n0x8884\t0x58DA\n0x8885\t0x58E0\n0x8886\t0x58E9\n0x8887\t0x590C\n0x8888\t0x8641\n0x8889\t0x595D\n0x888A\t0x596D\n0x888B\t0x598B\n0x888C\t0x5992\n0x888D\t0x59A4\n0x888E\t0x59C3\n0x888F\t0x59D2\n0x8890\t0x59DD\n0x8891\t0x5A13\n0x8892\t0x5A23\n0x8893\t0x5A67\n0x8894\t0x5A6D\n0x8895\t0x5A77\n0x8896\t0x5A7E\n0x8897\t0x5A84\n0x8898\t0x5A9E\n0x8899\t0x5AA7\n0x889A\t0x5AC4\n0x889B\t0x218BD\n0x889C\t0x5B19\n0x889D\t0x5B25\n0x889E\t0x525D\n0x889F\t0x4E9C\n0x88A0\t0x5516\n0x88A1\t0x5A03\n0x88A2\t0x963F\n0x88A3\t0x54C0\n0x88A4\t0x611B\n0x88A5\t0x6328\n0x88A6\t0x59F6\n0x88A7\t0x9022\n0x88A8\t0x8475\n0x88A9\t0x831C\n0x88AA\t0x7A50\n0x88AB\t0x60AA\n0x88AC\t0x63E1\n0x88AD\t0x6E25\n0x88AE\t0x65ED\n0x88AF\t0x8466\n0x88B0\t0x82A6\n0x88B1\t0x9BF5\n0x88B2\t0x6893\n0x88B3\t0x5727\n0x88B4\t0x65A1\n0x88B5\t0x6271\n0x88B6\t0x5B9B\n0x88B7\t0x59D0\n0x88B8\t0x867B\n0x88B9\t0x98F4\n0x88BA\t0x7D62\n0x88BB\t0x7DBE\n0x88BC\t0x9B8E\n0x88BD\t0x6216\n0x88BE\t0x7C9F\n0x88BF\t0x88B7\n0x88C0\t0x5B89\n0x88C1\t0x5EB5\n0x88C2\t0x6309\n0x88C3\t0x6697\n0x88C4\t0x6848\n0x88C5\t0x95C7\n0x88C6\t0x978D\n0x88C7\t0x674F\n0x88C8\t0x4EE5\n0x88C9\t0x4F0A\n0x88CA\t0x4F4D\n0x88CB\t0x4F9D\n0x88CC\t0x5049\n0x88CD\t0x56F2\n0x88CE\t0x5937\n0x88CF\t0x59D4\n0x88D0\t0x5A01\n0x88D1\t0x5C09\n0x88D2\t0x60DF\n0x88D3\t0x610F\n0x88D4\t0x6170\n0x88D5\t0x6613\n0x88D6\t0x6905\n0x88D7\t0x70BA\n0x88D8\t0x754F\n0x88D9\t0x7570\n0x88DA\t0x79FB\n0x88DB\t0x7DAD\n0x88DC\t0x7DEF\n0x88DD\t0x80C3\n0x88DE\t0x840E\n0x88DF\t0x8863\n0x88E0\t0x8B02\n0x88E1\t0x9055\n0x88E2\t0x907A\n0x88E3\t0x533B\n0x88E4\t0x4E95\n0x88E5\t0x4EA5\n0x88E6\t0x57DF\n0x88E7\t0x80B2\n0x88E8\t0x90C1\n0x88E9\t0x78EF\n0x88EA\t0x4E00\n0x88EB\t0x58F1\n0x88EC\t0x6EA2\n0x88ED\t0x9038\n0x88EE\t0x7A32\n0x88EF\t0x8328\n0x88F0\t0x828B\n0x88F1\t0x9C2F\n0x88F2\t0x5141\n0x88F3\t0x5370\n0x88F4\t0x54BD\n0x88F5\t0x54E1\n0x88F6\t0x56E0\n0x88F7\t0x59FB\n0x88F8\t0x5F15\n0x88F9\t0x98F2\n0x88FA\t0x6DEB\n0x88FB\t0x80E4\n0x88FC\t0x852D\n0x8940\t0x9662\n0x8941\t0x9670\n0x8942\t0x96A0\n0x8943\t0x97FB\n0x8944\t0x540B\n0x8945\t0x53F3\n0x8946\t0x5B87\n0x8947\t0x70CF\n0x8948\t0x7FBD\n0x8949\t0x8FC2\n0x894A\t0x96E8\n0x894B\t0x536F\n0x894C\t0x9D5C\n0x894D\t0x7ABA\n0x894E\t0x4E11\n0x894F\t0x7893\n0x8950\t0x81FC\n0x8951\t0x6E26\n0x8952\t0x5618\n0x8953\t0x5504\n0x8954\t0x6B1D\n0x8955\t0x851A\n0x8956\t0x9C3B\n0x8957\t0x59E5\n0x8958\t0x53A9\n0x8959\t0x6D66\n0x895A\t0x74DC\n0x895B\t0x958F\n0x895C\t0x5642\n0x895D\t0x4E91\n0x895E\t0x904B\n0x895F\t0x96F2\n0x8960\t0x834F\n0x8961\t0x990C\n0x8962\t0x53E1\n0x8963\t0x55B6\n0x8964\t0x5B30\n0x8965\t0x5F71\n0x8966\t0x6620\n0x8967\t0x66F3\n0x8968\t0x6804\n0x8969\t0x6C38\n0x896A\t0x6CF3\n0x896B\t0x6D29\n0x896C\t0x745B\n0x896D\t0x76C8\n0x896E\t0x7A4E\n0x896F\t0x9834\n0x8970\t0x82F1\n0x8971\t0x885B\n0x8972\t0x8A60\n0x8973\t0x92ED\n0x8974\t0x6DB2\n0x8975\t0x75AB\n0x8976\t0x76CA\n0x8977\t0x99C5\n0x8978\t0x60A6\n0x8979\t0x8B01\n0x897A\t0x8D8A\n0x897B\t0x95B2\n0x897C\t0x698E\n0x897D\t0x53AD\n0x897E\t0x5186\n0x8980\t0x5712\n0x8981\t0x5830\n0x8982\t0x5944\n0x8983\t0x5BB4\n0x8984\t0x5EF6\n0x8985\t0x6028\n0x8986\t0x63A9\n0x8987\t0x63F4\n0x8988\t0x6CBF\n0x8989\t0x6F14\n0x898A\t0x708E\n0x898B\t0x7114\n0x898C\t0x7159\n0x898D\t0x71D5\n0x898E\t0x733F\n0x898F\t0x7E01\n0x8990\t0x8276\n0x8991\t0x82D1\n0x8992\t0x8597\n0x8993\t0x9060\n0x8994\t0x925B\n0x8995\t0x9D1B\n0x8996\t0x5869\n0x8997\t0x65BC\n0x8998\t0x6C5A\n0x8999\t0x7525\n0x899A\t0x51F9\n0x899B\t0x592E\n0x899C\t0x5965\n0x899D\t0x5F80\n0x899E\t0x5FDC\n0x899F\t0x62BC\n0x89A0\t0x65FA\n0x89A1\t0x6A2A\n0x89A2\t0x6B27\n0x89A3\t0x6BB4\n0x89A4\t0x738B\n0x89A5\t0x7FC1\n0x89A6\t0x8956\n0x89A7\t0x9D2C\n0x89A8\t0x9D0E\n0x89A9\t0x9EC4\n0x89AA\t0x5CA1\n0x89AB\t0x6C96\n0x89AC\t0x837B\n0x89AD\t0x5104\n0x89AE\t0x5C4B\n0x89AF\t0x61B6\n0x89B0\t0x81C6\n0x89B1\t0x6876\n0x89B2\t0x7261\n0x89B3\t0x4E59\n0x89B4\t0x4FFA\n0x89B5\t0x5378\n0x89B6\t0x6069\n0x89B7\t0x6E29\n0x89B8\t0x7A4F\n0x89B9\t0x97F3\n0x89BA\t0x4E0B\n0x89BB\t0x5316\n0x89BC\t0x4EEE\n0x89BD\t0x4F55\n0x89BE\t0x4F3D\n0x89BF\t0x4FA1\n0x89C0\t0x4F73\n0x89C1\t0x52A0\n0x89C2\t0x53EF\n0x89C3\t0x5609\n0x89C4\t0x590F\n0x89C5\t0x5AC1\n0x89C6\t0x5BB6\n0x89C7\t0x5BE1\n0x89C8\t0x79D1\n0x89C9\t0x6687\n0x89CA\t0x679C\n0x89CB\t0x67B6\n0x89CC\t0x6B4C\n0x89CD\t0x6CB3\n0x89CE\t0x706B\n0x89CF\t0x73C2\n0x89D0\t0x798D\n0x89D1\t0x79BE\n0x89D2\t0x7A3C\n0x89D3\t0x7B87\n0x89D4\t0x82B1\n0x89D5\t0x82DB\n0x89D6\t0x8304\n0x89D7\t0x8377\n0x89D8\t0x83EF\n0x89D9\t0x83D3\n0x89DA\t0x8766\n0x89DB\t0x8AB2\n0x89DC\t0x5629\n0x89DD\t0x8CA8\n0x89DE\t0x8FE6\n0x89DF\t0x904E\n0x89E0\t0x971E\n0x89E1\t0x868A\n0x89E2\t0x4FC4\n0x89E3\t0x5CE8\n0x89E4\t0x6211\n0x89E5\t0x7259\n0x89E6\t0x753B\n0x89E7\t0x81E5\n0x89E8\t0x82BD\n0x89E9\t0x86FE\n0x89EA\t0x8CC0\n0x89EB\t0x96C5\n0x89EC\t0x9913\n0x89ED\t0x99D5\n0x89EE\t0x4ECB\n0x89EF\t0x4F1A\n0x89F0\t0x89E3\n0x89F1\t0x56DE\n0x89F2\t0x584A\n0x89F3\t0x58CA\n0x89F4\t0x5EFB\n0x89F5\t0x5FEB\n0x89F6\t0x602A\n0x89F7\t0x6094\n0x89F8\t0x6062\n0x89F9\t0x61D0\n0x89FA\t0x6212\n0x89FB\t0x62D0\n0x89FC\t0x6539\n0x8A40\t0x9B41\n0x8A41\t0x6666\n0x8A42\t0x68B0\n0x8A43\t0x6D77\n0x8A44\t0x7070\n0x8A45\t0x754C\n0x8A46\t0x7686\n0x8A47\t0x7D75\n0x8A48\t0x82A5\n0x8A49\t0x87F9\n0x8A4A\t0x958B\n0x8A4B\t0x968E\n0x8A4C\t0x8C9D\n0x8A4D\t0x51F1\n0x8A4E\t0x52BE\n0x8A4F\t0x5916\n0x8A50\t0x54B3\n0x8A51\t0x5BB3\n0x8A52\t0x5D16\n0x8A53\t0x6168\n0x8A54\t0x6982\n0x8A55\t0x6DAF\n0x8A56\t0x788D\n0x8A57\t0x84CB\n0x8A58\t0x8857\n0x8A59\t0x8A72\n0x8A5A\t0x93A7\n0x8A5B\t0x9AB8\n0x8A5C\t0x6D6C\n0x8A5D\t0x99A8\n0x8A5E\t0x86D9\n0x8A5F\t0x57A3\n0x8A60\t0x67FF\n0x8A61\t0x86CE\n0x8A62\t0x920E\n0x8A63\t0x5283\n0x8A64\t0x5687\n0x8A65\t0x5404\n0x8A66\t0x5ED3\n0x8A67\t0x62E1\n0x8A68\t0x64B9\n0x8A69\t0x683C\n0x8A6A\t0x6838\n0x8A6B\t0x6BBB\n0x8A6C\t0x7372\n0x8A6D\t0x78BA\n0x8A6E\t0x7A6B\n0x8A6F\t0x899A\n0x8A70\t0x89D2\n0x8A71\t0x8D6B\n0x8A72\t0x8F03\n0x8A73\t0x90ED\n0x8A74\t0x95A3\n0x8A75\t0x9694\n0x8A76\t0x9769\n0x8A77\t0x5B66\n0x8A78\t0x5CB3\n0x8A79\t0x697D\n0x8A7A\t0x984D\n0x8A7B\t0x984E\n0x8A7C\t0x639B\n0x8A7D\t0x7B20\n0x8A7E\t0x6A2B\n0x8A80\t0x6A7F\n0x8A81\t0x68B6\n0x8A82\t0x9C0D\n0x8A83\t0x6F5F\n0x8A84\t0x5272\n0x8A85\t0x559D\n0x8A86\t0x6070\n0x8A87\t0x62EC\n0x8A88\t0x6D3B\n0x8A89\t0x6E07\n0x8A8A\t0x6ED1\n0x8A8B\t0x845B\n0x8A8C\t0x8910\n0x8A8D\t0x8F44\n0x8A8E\t0x4E14\n0x8A8F\t0x9C39\n0x8A90\t0x53F6\n0x8A91\t0x691B\n0x8A92\t0x6A3A\n0x8A93\t0x9784\n0x8A94\t0x682A\n0x8A95\t0x515C\n0x8A96\t0x7AC3\n0x8A97\t0x84B2\n0x8A98\t0x91DC\n0x8A99\t0x938C\n0x8A9A\t0x565B\n0x8A9B\t0x9D28\n0x8A9C\t0x6822\n0x8A9D\t0x8305\n0x8A9E\t0x8431\n0x8A9F\t0x7CA5\n0x8AA0\t0x5208\n0x8AA1\t0x82C5\n0x8AA2\t0x74E6\n0x8AA3\t0x4E7E\n0x8AA4\t0x4F83\n0x8AA5\t0x51A0\n0x8AA6\t0x5BD2\n0x8AA7\t0x520A\n0x8AA8\t0x52D8\n0x8AA9\t0x52E7\n0x8AAA\t0x5DFB\n0x8AAB\t0x559A\n0x8AAC\t0x582A\n0x8AAD\t0x59E6\n0x8AAE\t0x5B8C\n0x8AAF\t0x5B98\n0x8AB0\t0x5BDB\n0x8AB1\t0x5E72\n0x8AB2\t0x5E79\n0x8AB3\t0x60A3\n0x8AB4\t0x611F\n0x8AB5\t0x6163\n0x8AB6\t0x61BE\n0x8AB7\t0x63DB\n0x8AB8\t0x6562\n0x8AB9\t0x67D1\n0x8ABA\t0x6853\n0x8ABB\t0x68FA\n0x8ABC\t0x6B3E\n0x8ABD\t0x6B53\n0x8ABE\t0x6C57\n0x8ABF\t0x6F22\n0x8AC0\t0x6F97\n0x8AC1\t0x6F45\n0x8AC2\t0x74B0\n0x8AC3\t0x7518\n0x8AC4\t0x76E3\n0x8AC5\t0x770B\n0x8AC6\t0x7AFF\n0x8AC7\t0x7BA1\n0x8AC8\t0x7C21\n0x8AC9\t0x7DE9\n0x8ACA\t0x7F36\n0x8ACB\t0x7FF0\n0x8ACC\t0x809D\n0x8ACD\t0x8266\n0x8ACE\t0x839E\n0x8ACF\t0x89B3\n0x8AD0\t0x8ACC\n0x8AD1\t0x8CAB\n0x8AD2\t0x9084\n0x8AD3\t0x9451\n0x8AD4\t0x9593\n0x8AD5\t0x9591\n0x8AD6\t0x95A2\n0x8AD7\t0x9665\n0x8AD8\t0x97D3\n0x8AD9\t0x9928\n0x8ADA\t0x8218\n0x8ADB\t0x4E38\n0x8ADC\t0x542B\n0x8ADD\t0x5CB8\n0x8ADE\t0x5DCC\n0x8ADF\t0x73A9\n0x8AE0\t0x764C\n0x8AE1\t0x773C\n0x8AE2\t0x5CA9\n0x8AE3\t0x7FEB\n0x8AE4\t0x8D0B\n0x8AE5\t0x96C1\n0x8AE6\t0x9811\n0x8AE7\t0x9854\n0x8AE8\t0x9858\n0x8AE9\t0x4F01\n0x8AEA\t0x4F0E\n0x8AEB\t0x5371\n0x8AEC\t0x559C\n0x8AED\t0x5668\n0x8AEE\t0x57FA\n0x8AEF\t0x5947\n0x8AF0\t0x5B09\n0x8AF1\t0x5BC4\n0x8AF2\t0x5C90\n0x8AF3\t0x5E0C\n0x8AF4\t0x5E7E\n0x8AF5\t0x5FCC\n0x8AF6\t0x63EE\n0x8AF7\t0x673A\n0x8AF8\t0x65D7\n0x8AF9\t0x65E2\n0x8AFA\t0x671F\n0x8AFB\t0x68CB\n0x8AFC\t0x68C4\n0x8B40\t0x6A5F\n0x8B41\t0x5E30\n0x8B42\t0x6BC5\n0x8B43\t0x6C17\n0x8B44\t0x6C7D\n0x8B45\t0x757F\n0x8B46\t0x7948\n0x8B47\t0x5B63\n0x8B48\t0x7A00\n0x8B49\t0x7D00\n0x8B4A\t0x5FBD\n0x8B4B\t0x898F\n0x8B4C\t0x8A18\n0x8B4D\t0x8CB4\n0x8B4E\t0x8D77\n0x8B4F\t0x8ECC\n0x8B50\t0x8F1D\n0x8B51\t0x98E2\n0x8B52\t0x9A0E\n0x8B53\t0x9B3C\n0x8B54\t0x4E80\n0x8B55\t0x507D\n0x8B56\t0x5100\n0x8B57\t0x5993\n0x8B58\t0x5B9C\n0x8B59\t0x622F\n0x8B5A\t0x6280\n0x8B5B\t0x64EC\n0x8B5C\t0x6B3A\n0x8B5D\t0x72A0\n0x8B5E\t0x7591\n0x8B5F\t0x7947\n0x8B60\t0x7FA9\n0x8B61\t0x87FB\n0x8B62\t0x8ABC\n0x8B63\t0x8B70\n0x8B64\t0x63AC\n0x8B65\t0x83CA\n0x8B66\t0x97A0\n0x8B67\t0x5409\n0x8B68\t0x5403\n0x8B69\t0x55AB\n0x8B6A\t0x6854\n0x8B6B\t0x6A58\n0x8B6C\t0x8A70\n0x8B6D\t0x7827\n0x8B6E\t0x6775\n0x8B6F\t0x9ECD\n0x8B70\t0x5374\n0x8B71\t0x5BA2\n0x8B72\t0x811A\n0x8B73\t0x8650\n0x8B74\t0x9006\n0x8B75\t0x4E18\n0x8B76\t0x4E45\n0x8B77\t0x4EC7\n0x8B78\t0x4F11\n0x8B79\t0x53CA\n0x8B7A\t0x5438\n0x8B7B\t0x5BAE\n0x8B7C\t0x5F13\n0x8B7D\t0x6025\n0x8B7E\t0x6551\n0x8B80\t0x673D\n0x8B81\t0x6C42\n0x8B82\t0x6C72\n0x8B83\t0x6CE3\n0x8B84\t0x7078\n0x8B85\t0x7403\n0x8B86\t0x7A76\n0x8B87\t0x7AAE\n0x8B88\t0x7B08\n0x8B89\t0x7D1A\n0x8B8A\t0x7CFE\n0x8B8B\t0x7D66\n0x8B8C\t0x65E7\n0x8B8D\t0x725B\n0x8B8E\t0x53BB\n0x8B8F\t0x5C45\n0x8B90\t0x5DE8\n0x8B91\t0x62D2\n0x8B92\t0x62E0\n0x8B93\t0x6319\n0x8B94\t0x6E20\n0x8B95\t0x865A\n0x8B96\t0x8A31\n0x8B97\t0x8DDD\n0x8B98\t0x92F8\n0x8B99\t0x6F01\n0x8B9A\t0x79A6\n0x8B9B\t0x9B5A\n0x8B9C\t0x4EA8\n0x8B9D\t0x4EAB\n0x8B9E\t0x4EAC\n0x8B9F\t0x4F9B\n0x8BA0\t0x4FA0\n0x8BA1\t0x50D1\n0x8BA2\t0x5147\n0x8BA3\t0x7AF6\n0x8BA4\t0x5171\n0x8BA5\t0x51F6\n0x8BA6\t0x5354\n0x8BA7\t0x5321\n0x8BA8\t0x537F\n0x8BA9\t0x53EB\n0x8BAA\t0x55AC\n0x8BAB\t0x5883\n0x8BAC\t0x5CE1\n0x8BAD\t0x5F37\n0x8BAE\t0x5F4A\n0x8BAF\t0x602F\n0x8BB0\t0x6050\n0x8BB1\t0x606D\n0x8BB2\t0x631F\n0x8BB3\t0x6559\n0x8BB4\t0x6A4B\n0x8BB5\t0x6CC1\n0x8BB6\t0x72C2\n0x8BB7\t0x72ED\n0x8BB8\t0x77EF\n0x8BB9\t0x80F8\n0x8BBA\t0x8105\n0x8BBB\t0x8208\n0x8BBC\t0x854E\n0x8BBD\t0x90F7\n0x8BBE\t0x93E1\n0x8BBF\t0x97FF\n0x8BC0\t0x9957\n0x8BC1\t0x9A5A\n0x8BC2\t0x4EF0\n0x8BC3\t0x51DD\n0x8BC4\t0x5C2D\n0x8BC5\t0x6681\n0x8BC6\t0x696D\n0x8BC7\t0x5C40\n0x8BC8\t0x66F2\n0x8BC9\t0x6975\n0x8BCA\t0x7389\n0x8BCB\t0x6850\n0x8BCC\t0x7C81\n0x8BCD\t0x50C5\n0x8BCE\t0x52E4\n0x8BCF\t0x5747\n0x8BD0\t0x5DFE\n0x8BD1\t0x9326\n0x8BD2\t0x65A4\n0x8BD3\t0x6B23\n0x8BD4\t0x6B3D\n0x8BD5\t0x7434\n0x8BD6\t0x7981\n0x8BD7\t0x79BD\n0x8BD8\t0x7B4B\n0x8BD9\t0x7DCA\n0x8BDA\t0x82B9\n0x8BDB\t0x83CC\n0x8BDC\t0x887F\n0x8BDD\t0x895F\n0x8BDE\t0x8B39\n0x8BDF\t0x8FD1\n0x8BE0\t0x91D1\n0x8BE1\t0x541F\n0x8BE2\t0x9280\n0x8BE3\t0x4E5D\n0x8BE4\t0x5036\n0x8BE5\t0x53E5\n0x8BE6\t0x533A\n0x8BE7\t0x72D7\n0x8BE8\t0x7396\n0x8BE9\t0x77E9\n0x8BEA\t0x82E6\n0x8BEB\t0x8EAF\n0x8BEC\t0x99C6\n0x8BED\t0x99C8\n0x8BEE\t0x99D2\n0x8BEF\t0x5177\n0x8BF0\t0x611A\n0x8BF1\t0x865E\n0x8BF2\t0x55B0\n0x8BF3\t0x7A7A\n0x8BF4\t0x5076\n0x8BF5\t0x5BD3\n0x8BF6\t0x9047\n0x8BF7\t0x9685\n0x8BF8\t0x4E32\n0x8BF9\t0x6ADB\n0x8BFA\t0x91E7\n0x8BFB\t0x5C51\n0x8BFC\t0x5C48\n0x8C40\t0x6398\n0x8C41\t0x7A9F\n0x8C42\t0x6C93\n0x8C43\t0x9774\n0x8C44\t0x8F61\n0x8C45\t0x7AAA\n0x8C46\t0x718A\n0x8C47\t0x9688\n0x8C48\t0x7C82\n0x8C49\t0x6817\n0x8C4A\t0x7E70\n0x8C4B\t0x6851\n0x8C4C\t0x936C\n0x8C4D\t0x52F2\n0x8C4E\t0x541B\n0x8C4F\t0x85AB\n0x8C50\t0x8A13\n0x8C51\t0x7FA4\n0x8C52\t0x8ECD\n0x8C53\t0x90E1\n0x8C54\t0x5366\n0x8C55\t0x8888\n0x8C56\t0x7941\n0x8C57\t0x4FC2\n0x8C58\t0x50BE\n0x8C59\t0x5211\n0x8C5A\t0x5144\n0x8C5B\t0x5553\n0x8C5C\t0x572D\n0x8C5D\t0x73EA\n0x8C5E\t0x578B\n0x8C5F\t0x5951\n0x8C60\t0x5F62\n0x8C61\t0x5F84\n0x8C62\t0x6075\n0x8C63\t0x6176\n0x8C64\t0x6167\n0x8C65\t0x61A9\n0x8C66\t0x63B2\n0x8C67\t0x643A\n0x8C68\t0x656C\n0x8C69\t0x666F\n0x8C6A\t0x6842\n0x8C6B\t0x6E13\n0x8C6C\t0x7566\n0x8C6D\t0x7A3D\n0x8C6E\t0x7CFB\n0x8C6F\t0x7D4C\n0x8C70\t0x7D99\n0x8C71\t0x7E4B\n0x8C72\t0x7F6B\n0x8C73\t0x830E\n0x8C74\t0x834A\n0x8C75\t0x86CD\n0x8C76\t0x8A08\n0x8C77\t0x8A63\n0x8C78\t0x8B66\n0x8C79\t0x8EFD\n0x8C7A\t0x981A\n0x8C7B\t0x9D8F\n0x8C7C\t0x82B8\n0x8C7D\t0x8FCE\n0x8C7E\t0x9BE8\n0x8C80\t0x5287\n0x8C81\t0x621F\n0x8C82\t0x6483\n0x8C83\t0x6FC0\n0x8C84\t0x9699\n0x8C85\t0x6841\n0x8C86\t0x5091\n0x8C87\t0x6B20\n0x8C88\t0x6C7A\n0x8C89\t0x6F54\n0x8C8A\t0x7A74\n0x8C8B\t0x7D50\n0x8C8C\t0x8840\n0x8C8D\t0x8A23\n0x8C8E\t0x6708\n0x8C8F\t0x4EF6\n0x8C90\t0x5039\n0x8C91\t0x5026\n0x8C92\t0x5065\n0x8C93\t0x517C\n0x8C94\t0x5238\n0x8C95\t0x5263\n0x8C96\t0x55A7\n0x8C97\t0x570F\n0x8C98\t0x5805\n0x8C99\t0x5ACC\n0x8C9A\t0x5EFA\n0x8C9B\t0x61B2\n0x8C9C\t0x61F8\n0x8C9D\t0x62F3\n0x8C9E\t0x6372\n0x8C9F\t0x691C\n0x8CA0\t0x6A29\n0x8CA1\t0x727D\n0x8CA2\t0x72AC\n0x8CA3\t0x732E\n0x8CA4\t0x7814\n0x8CA5\t0x786F\n0x8CA6\t0x7D79\n0x8CA7\t0x770C\n0x8CA8\t0x80A9\n0x8CA9\t0x898B\n0x8CAA\t0x8B19\n0x8CAB\t0x8CE2\n0x8CAC\t0x8ED2\n0x8CAD\t0x9063\n0x8CAE\t0x9375\n0x8CAF\t0x967A\n0x8CB0\t0x9855\n0x8CB1\t0x9A13\n0x8CB2\t0x9E78\n0x8CB3\t0x5143\n0x8CB4\t0x539F\n0x8CB5\t0x53B3\n0x8CB6\t0x5E7B\n0x8CB7\t0x5F26\n0x8CB8\t0x6E1B\n0x8CB9\t0x6E90\n0x8CBA\t0x7384\n0x8CBB\t0x73FE\n0x8CBC\t0x7D43\n0x8CBD\t0x8237\n0x8CBE\t0x8A00\n0x8CBF\t0x8AFA\n0x8CC0\t0x9650\n0x8CC1\t0x4E4E\n0x8CC2\t0x500B\n0x8CC3\t0x53E4\n0x8CC4\t0x547C\n0x8CC5\t0x56FA\n0x8CC6\t0x59D1\n0x8CC7\t0x5B64\n0x8CC8\t0x5DF1\n0x8CC9\t0x5EAB\n0x8CCA\t0x5F27\n0x8CCB\t0x6238\n0x8CCC\t0x6545\n0x8CCD\t0x67AF\n0x8CCE\t0x6E56\n0x8CCF\t0x72D0\n0x8CD0\t0x7CCA\n0x8CD1\t0x88B4\n0x8CD2\t0x80A1\n0x8CD3\t0x80E1\n0x8CD4\t0x83F0\n0x8CD5\t0x864E\n0x8CD6\t0x8A87\n0x8CD7\t0x8DE8\n0x8CD8\t0x9237\n0x8CD9\t0x96C7\n0x8CDA\t0x9867\n0x8CDB\t0x9F13\n0x8CDC\t0x4E94\n0x8CDD\t0x4E92\n0x8CDE\t0x4F0D\n0x8CDF\t0x5348\n0x8CE0\t0x5449\n0x8CE1\t0x543E\n0x8CE2\t0x5A2F\n0x8CE3\t0x5F8C\n0x8CE4\t0x5FA1\n0x8CE5\t0x609F\n0x8CE6\t0x68A7\n0x8CE7\t0x6A8E\n0x8CE8\t0x745A\n0x8CE9\t0x7881\n0x8CEA\t0x8A9E\n0x8CEB\t0x8AA4\n0x8CEC\t0x8B77\n0x8CED\t0x9190\n0x8CEE\t0x4E5E\n0x8CEF\t0x9BC9\n0x8CF0\t0x4EA4\n0x8CF1\t0x4F7C\n0x8CF2\t0x4FAF\n0x8CF3\t0x5019\n0x8CF4\t0x5016\n0x8CF5\t0x5149\n0x8CF6\t0x516C\n0x8CF7\t0x529F\n0x8CF8\t0x52B9\n0x8CF9\t0x52FE\n0x8CFA\t0x539A\n0x8CFB\t0x53E3\n0x8CFC\t0x5411\n0x8D40\t0x540E\n0x8D41\t0x5589\n0x8D42\t0x5751\n0x8D43\t0x57A2\n0x8D44\t0x597D\n0x8D45\t0x5B54\n0x8D46\t0x5B5D\n0x8D47\t0x5B8F\n0x8D48\t0x5DE5\n0x8D49\t0x5DE7\n0x8D4A\t0x5DF7\n0x8D4B\t0x5E78\n0x8D4C\t0x5E83\n0x8D4D\t0x5E9A\n0x8D4E\t0x5EB7\n0x8D4F\t0x5F18\n0x8D50\t0x6052\n0x8D51\t0x614C\n0x8D52\t0x6297\n0x8D53\t0x62D8\n0x8D54\t0x63A7\n0x8D55\t0x653B\n0x8D56\t0x6602\n0x8D57\t0x6643\n0x8D58\t0x66F4\n0x8D59\t0x676D\n0x8D5A\t0x6821\n0x8D5B\t0x6897\n0x8D5C\t0x69CB\n0x8D5D\t0x6C5F\n0x8D5E\t0x6D2A\n0x8D5F\t0x6D69\n0x8D60\t0x6E2F\n0x8D61\t0x6E9D\n0x8D62\t0x7532\n0x8D63\t0x7687\n0x8D64\t0x786C\n0x8D65\t0x7A3F\n0x8D66\t0x7CE0\n0x8D67\t0x7D05\n0x8D68\t0x7D18\n0x8D69\t0x7D5E\n0x8D6A\t0x7DB1\n0x8D6B\t0x8015\n0x8D6C\t0x8003\n0x8D6D\t0x80AF\n0x8D6E\t0x80B1\n0x8D6F\t0x8154\n0x8D70\t0x818F\n0x8D71\t0x822A\n0x8D72\t0x8352\n0x8D73\t0x884C\n0x8D74\t0x8861\n0x8D75\t0x8B1B\n0x8D76\t0x8CA2\n0x8D77\t0x8CFC\n0x8D78\t0x90CA\n0x8D79\t0x9175\n0x8D7A\t0x9271\n0x8D7B\t0x783F\n0x8D7C\t0x92FC\n0x8D7D\t0x95A4\n0x8D7E\t0x964D\n0x8D80\t0x9805\n0x8D81\t0x9999\n0x8D82\t0x9AD8\n0x8D83\t0x9D3B\n0x8D84\t0x525B\n0x8D85\t0x52AB\n0x8D86\t0x53F7\n0x8D87\t0x5408\n0x8D88\t0x58D5\n0x8D89\t0x62F7\n0x8D8A\t0x6FE0\n0x8D8B\t0x8C6A\n0x8D8C\t0x8F5F\n0x8D8D\t0x9EB9\n0x8D8E\t0x514B\n0x8D8F\t0x523B\n0x8D90\t0x544A\n0x8D91\t0x56FD\n0x8D92\t0x7A40\n0x8D93\t0x9177\n0x8D94\t0x9D60\n0x8D95\t0x9ED2\n0x8D96\t0x7344\n0x8D97\t0x6F09\n0x8D98\t0x8170\n0x8D99\t0x7511\n0x8D9A\t0x5FFD\n0x8D9B\t0x60DA\n0x8D9C\t0x9AA8\n0x8D9D\t0x72DB\n0x8D9E\t0x8FBC\n0x8D9F\t0x6B64\n0x8DA0\t0x9803\n0x8DA1\t0x4ECA\n0x8DA2\t0x56F0\n0x8DA3\t0x5764\n0x8DA4\t0x58BE\n0x8DA5\t0x5A5A\n0x8DA6\t0x6068\n0x8DA7\t0x61C7\n0x8DA8\t0x660F\n0x8DA9\t0x6606\n0x8DAA\t0x6839\n0x8DAB\t0x68B1\n0x8DAC\t0x6DF7\n0x8DAD\t0x75D5\n0x8DAE\t0x7D3A\n0x8DAF\t0x826E\n0x8DB0\t0x9B42\n0x8DB1\t0x4E9B\n0x8DB2\t0x4F50\n0x8DB3\t0x53C9\n0x8DB4\t0x5506\n0x8DB5\t0x5D6F\n0x8DB6\t0x5DE6\n0x8DB7\t0x5DEE\n0x8DB8\t0x67FB\n0x8DB9\t0x6C99\n0x8DBA\t0x7473\n0x8DBB\t0x7802\n0x8DBC\t0x8A50\n0x8DBD\t0x9396\n0x8DBE\t0x88DF\n0x8DBF\t0x5750\n0x8DC0\t0x5EA7\n0x8DC1\t0x632B\n0x8DC2\t0x50B5\n0x8DC3\t0x50AC\n0x8DC4\t0x518D\n0x8DC5\t0x6700\n0x8DC6\t0x54C9\n0x8DC7\t0x585E\n0x8DC8\t0x59BB\n0x8DC9\t0x5BB0\n0x8DCA\t0x5F69\n0x8DCB\t0x624D\n0x8DCC\t0x63A1\n0x8DCD\t0x683D\n0x8DCE\t0x6B73\n0x8DCF\t0x6E08\n0x8DD0\t0x707D\n0x8DD1\t0x91C7\n0x8DD2\t0x7280\n0x8DD3\t0x7815\n0x8DD4\t0x7826\n0x8DD5\t0x796D\n0x8DD6\t0x658E\n0x8DD7\t0x7D30\n0x8DD8\t0x83DC\n0x8DD9\t0x88C1\n0x8DDA\t0x8F09\n0x8DDB\t0x969B\n0x8DDC\t0x5264\n0x8DDD\t0x5728\n0x8DDE\t0x6750\n0x8DDF\t0x7F6A\n0x8DE0\t0x8CA1\n0x8DE1\t0x51B4\n0x8DE2\t0x5742\n0x8DE3\t0x962A\n0x8DE4\t0x583A\n0x8DE5\t0x698A\n0x8DE6\t0x80B4\n0x8DE7\t0x54B2\n0x8DE8\t0x5D0E\n0x8DE9\t0x57FC\n0x8DEA\t0x7895\n0x8DEB\t0x9DFA\n0x8DEC\t0x4F5C\n0x8DED\t0x524A\n0x8DEE\t0x548B\n0x8DEF\t0x643E\n0x8DF0\t0x6628\n0x8DF1\t0x6714\n0x8DF2\t0x67F5\n0x8DF3\t0x7A84\n0x8DF4\t0x7B56\n0x8DF5\t0x7D22\n0x8DF6\t0x932F\n0x8DF7\t0x685C\n0x8DF8\t0x9BAD\n0x8DF9\t0x7B39\n0x8DFA\t0x5319\n0x8DFB\t0x518A\n0x8DFC\t0x5237\n0x8E40\t0x5BDF\n0x8E41\t0x62F6\n0x8E42\t0x64AE\n0x8E43\t0x64E6\n0x8E44\t0x672D\n0x8E45\t0x6BBA\n0x8E46\t0x85A9\n0x8E47\t0x96D1\n0x8E48\t0x7690\n0x8E49\t0x9BD6\n0x8E4A\t0x634C\n0x8E4B\t0x9306\n0x8E4C\t0x9BAB\n0x8E4D\t0x76BF\n0x8E4E\t0x6652\n0x8E4F\t0x4E09\n0x8E50\t0x5098\n0x8E51\t0x53C2\n0x8E52\t0x5C71\n0x8E53\t0x60E8\n0x8E54\t0x6492\n0x8E55\t0x6563\n0x8E56\t0x685F\n0x8E57\t0x71E6\n0x8E58\t0x73CA\n0x8E59\t0x7523\n0x8E5A\t0x7B97\n0x8E5B\t0x7E82\n0x8E5C\t0x8695\n0x8E5D\t0x8B83\n0x8E5E\t0x8CDB\n0x8E5F\t0x9178\n0x8E60\t0x9910\n0x8E61\t0x65AC\n0x8E62\t0x66AB\n0x8E63\t0x6B8B\n0x8E64\t0x4ED5\n0x8E65\t0x4ED4\n0x8E66\t0x4F3A\n0x8E67\t0x4F7F\n0x8E68\t0x523A\n0x8E69\t0x53F8\n0x8E6A\t0x53F2\n0x8E6B\t0x55E3\n0x8E6C\t0x56DB\n0x8E6D\t0x58EB\n0x8E6E\t0x59CB\n0x8E6F\t0x59C9\n0x8E70\t0x59FF\n0x8E71\t0x5B50\n0x8E72\t0x5C4D\n0x8E73\t0x5E02\n0x8E74\t0x5E2B\n0x8E75\t0x5FD7\n0x8E76\t0x601D\n0x8E77\t0x6307\n0x8E78\t0x652F\n0x8E79\t0x5B5C\n0x8E7A\t0x65AF\n0x8E7B\t0x65BD\n0x8E7C\t0x65E8\n0x8E7D\t0x679D\n0x8E7E\t0x6B62\n0x8E80\t0x6B7B\n0x8E81\t0x6C0F\n0x8E82\t0x7345\n0x8E83\t0x7949\n0x8E84\t0x79C1\n0x8E85\t0x7CF8\n0x8E86\t0x7D19\n0x8E87\t0x7D2B\n0x8E88\t0x80A2\n0x8E89\t0x8102\n0x8E8A\t0x81F3\n0x8E8B\t0x8996\n0x8E8C\t0x8A5E\n0x8E8D\t0x8A69\n0x8E8E\t0x8A66\n0x8E8F\t0x8A8C\n0x8E90\t0x8AEE\n0x8E91\t0x8CC7\n0x8E92\t0x8CDC\n0x8E93\t0x96CC\n0x8E94\t0x98FC\n0x8E95\t0x6B6F\n0x8E96\t0x4E8B\n0x8E97\t0x4F3C\n0x8E98\t0x4F8D\n0x8E99\t0x5150\n0x8E9A\t0x5B57\n0x8E9B\t0x5BFA\n0x8E9C\t0x6148\n0x8E9D\t0x6301\n0x8E9E\t0x6642\n0x8E9F\t0x6B21\n0x8EA0\t0x6ECB\n0x8EA1\t0x6CBB\n0x8EA2\t0x723E\n0x8EA3\t0x74BD\n0x8EA4\t0x75D4\n0x8EA5\t0x78C1\n0x8EA6\t0x793A\n0x8EA7\t0x800C\n0x8EA8\t0x8033\n0x8EA9\t0x81EA\n0x8EAA\t0x8494\n0x8EAB\t0x8F9E\n0x8EAC\t0x6C50\n0x8EAD\t0x9E7F\n0x8EAE\t0x5F0F\n0x8EAF\t0x8B58\n0x8EB0\t0x9D2B\n0x8EB1\t0x7AFA\n0x8EB2\t0x8EF8\n0x8EB3\t0x5B8D\n0x8EB4\t0x96EB\n0x8EB5\t0x4E03\n0x8EB6\t0x53F1\n0x8EB7\t0x57F7\n0x8EB8\t0x5931\n0x8EB9\t0x5AC9\n0x8EBA\t0x5BA4\n0x8EBB\t0x6089\n0x8EBC\t0x6E7F\n0x8EBD\t0x6F06\n0x8EBE\t0x75BE\n0x8EBF\t0x8CEA\n0x8EC0\t0x5B9F\n0x8EC1\t0x8500\n0x8EC2\t0x7BE0\n0x8EC3\t0x5072\n0x8EC4\t0x67F4\n0x8EC5\t0x829D\n0x8EC6\t0x5C61\n0x8EC7\t0x854A\n0x8EC8\t0x7E1E\n0x8EC9\t0x820E\n0x8ECA\t0x5199\n0x8ECB\t0x5C04\n0x8ECC\t0x6368\n0x8ECD\t0x8D66\n0x8ECE\t0x659C\n0x8ECF\t0x716E\n0x8ED0\t0x793E\n0x8ED1\t0x7D17\n0x8ED2\t0x8005\n0x8ED3\t0x8B1D\n0x8ED4\t0x8ECA\n0x8ED5\t0x906E\n0x8ED6\t0x86C7\n0x8ED7\t0x90AA\n0x8ED8\t0x501F\n0x8ED9\t0x52FA\n0x8EDA\t0x5C3A\n0x8EDB\t0x6753\n0x8EDC\t0x707C\n0x8EDD\t0x7235\n0x8EDE\t0x914C\n0x8EDF\t0x91C8\n0x8EE0\t0x932B\n0x8EE1\t0x82E5\n0x8EE2\t0x5BC2\n0x8EE3\t0x5F31\n0x8EE4\t0x60F9\n0x8EE5\t0x4E3B\n0x8EE6\t0x53D6\n0x8EE7\t0x5B88\n0x8EE8\t0x624B\n0x8EE9\t0x6731\n0x8EEA\t0x6B8A\n0x8EEB\t0x72E9\n0x8EEC\t0x73E0\n0x8EED\t0x7A2E\n0x8EEE\t0x816B\n0x8EEF\t0x8DA3\n0x8EF0\t0x9152\n0x8EF1\t0x9996\n0x8EF2\t0x5112\n0x8EF3\t0x53D7\n0x8EF4\t0x546A\n0x8EF5\t0x5BFF\n0x8EF6\t0x6388\n0x8EF7\t0x6A39\n0x8EF8\t0x7DAC\n0x8EF9\t0x9700\n0x8EFA\t0x56DA\n0x8EFB\t0x53CE\n0x8EFC\t0x5468\n0x8F40\t0x5B97\n0x8F41\t0x5C31\n0x8F42\t0x5DDE\n0x8F43\t0x4FEE\n0x8F44\t0x6101\n0x8F45\t0x62FE\n0x8F46\t0x6D32\n0x8F47\t0x79C0\n0x8F48\t0x79CB\n0x8F49\t0x7D42\n0x8F4A\t0x7E4D\n0x8F4B\t0x7FD2\n0x8F4C\t0x81ED\n0x8F4D\t0x821F\n0x8F4E\t0x8490\n0x8F4F\t0x8846\n0x8F50\t0x8972\n0x8F51\t0x8B90\n0x8F52\t0x8E74\n0x8F53\t0x8F2F\n0x8F54\t0x9031\n0x8F55\t0x914B\n0x8F56\t0x916C\n0x8F57\t0x96C6\n0x8F58\t0x919C\n0x8F59\t0x4EC0\n0x8F5A\t0x4F4F\n0x8F5B\t0x5145\n0x8F5C\t0x5341\n0x8F5D\t0x5F93\n0x8F5E\t0x620E\n0x8F5F\t0x67D4\n0x8F60\t0x6C41\n0x8F61\t0x6E0B\n0x8F62\t0x7363\n0x8F63\t0x7E26\n0x8F64\t0x91CD\n0x8F65\t0x9283\n0x8F66\t0x53D4\n0x8F67\t0x5919\n0x8F68\t0x5BBF\n0x8F69\t0x6DD1\n0x8F6A\t0x795D\n0x8F6B\t0x7E2E\n0x8F6C\t0x7C9B\n0x8F6D\t0x587E\n0x8F6E\t0x719F\n0x8F6F\t0x51FA\n0x8F70\t0x8853\n0x8F71\t0x8FF0\n0x8F72\t0x4FCA\n0x8F73\t0x5CFB\n0x8F74\t0x6625\n0x8F75\t0x77AC\n0x8F76\t0x7AE3\n0x8F77\t0x821C\n0x8F78\t0x99FF\n0x8F79\t0x51C6\n0x8F7A\t0x5FAA\n0x8F7B\t0x65EC\n0x8F7C\t0x696F\n0x8F7D\t0x6B89\n0x8F7E\t0x6DF3\n0x8F80\t0x6E96\n0x8F81\t0x6F64\n0x8F82\t0x76FE\n0x8F83\t0x7D14\n0x8F84\t0x5DE1\n0x8F85\t0x9075\n0x8F86\t0x9187\n0x8F87\t0x9806\n0x8F88\t0x51E6\n0x8F89\t0x521D\n0x8F8A\t0x6240\n0x8F8B\t0x6691\n0x8F8C\t0x66D9\n0x8F8D\t0x6E1A\n0x8F8E\t0x5EB6\n0x8F8F\t0x7DD2\n0x8F90\t0x7F72\n0x8F91\t0x66F8\n0x8F92\t0x85AF\n0x8F93\t0x85F7\n0x8F94\t0x8AF8\n0x8F95\t0x52A9\n0x8F96\t0x53D9\n0x8F97\t0x5973\n0x8F98\t0x5E8F\n0x8F99\t0x5F90\n0x8F9A\t0x6055\n0x8F9B\t0x92E4\n0x8F9C\t0x9664\n0x8F9D\t0x50B7\n0x8F9E\t0x511F\n0x8F9F\t0x52DD\n0x8FA0\t0x5320\n0x8FA1\t0x5347\n0x8FA2\t0x53EC\n0x8FA3\t0x54E8\n0x8FA4\t0x5546\n0x8FA5\t0x5531\n0x8FA6\t0x5617\n0x8FA7\t0x5968\n0x8FA8\t0x59BE\n0x8FA9\t0x5A3C\n0x8FAA\t0x5BB5\n0x8FAB\t0x5C06\n0x8FAC\t0x5C0F\n0x8FAD\t0x5C11\n0x8FAE\t0x5C1A\n0x8FAF\t0x5E84\n0x8FB0\t0x5E8A\n0x8FB1\t0x5EE0\n0x8FB2\t0x5F70\n0x8FB3\t0x627F\n0x8FB4\t0x6284\n0x8FB5\t0x62DB\n0x8FB6\t0x638C\n0x8FB7\t0x6377\n0x8FB8\t0x6607\n0x8FB9\t0x660C\n0x8FBA\t0x662D\n0x8FBB\t0x6676\n0x8FBC\t0x677E\n0x8FBD\t0x68A2\n0x8FBE\t0x6A1F\n0x8FBF\t0x6A35\n0x8FC0\t0x6CBC\n0x8FC1\t0x6D88\n0x8FC2\t0x6E09\n0x8FC3\t0x6E58\n0x8FC4\t0x713C\n0x8FC5\t0x7126\n0x8FC6\t0x7167\n0x8FC7\t0x75C7\n0x8FC8\t0x7701\n0x8FC9\t0x785D\n0x8FCA\t0x7901\n0x8FCB\t0x7965\n0x8FCC\t0x79F0\n0x8FCD\t0x7AE0\n0x8FCE\t0x7B11\n0x8FCF\t0x7CA7\n0x8FD0\t0x7D39\n0x8FD1\t0x8096\n0x8FD2\t0x83D6\n0x8FD3\t0x848B\n0x8FD4\t0x8549\n0x8FD5\t0x885D\n0x8FD6\t0x88F3\n0x8FD7\t0x8A1F\n0x8FD8\t0x8A3C\n0x8FD9\t0x8A54\n0x8FDA\t0x8A73\n0x8FDB\t0x8C61\n0x8FDC\t0x8CDE\n0x8FDD\t0x91A4\n0x8FDE\t0x9266\n0x8FDF\t0x937E\n0x8FE0\t0x9418\n0x8FE1\t0x969C\n0x8FE2\t0x9798\n0x8FE3\t0x4E0A\n0x8FE4\t0x4E08\n0x8FE5\t0x4E1E\n0x8FE6\t0x4E57\n0x8FE7\t0x5197\n0x8FE8\t0x5270\n0x8FE9\t0x57CE\n0x8FEA\t0x5834\n0x8FEB\t0x58CC\n0x8FEC\t0x5B22\n0x8FED\t0x5E38\n0x8FEE\t0x60C5\n0x8FEF\t0x64FE\n0x8FF0\t0x6761\n0x8FF1\t0x6756\n0x8FF2\t0x6D44\n0x8FF3\t0x72B6\n0x8FF4\t0x7573\n0x8FF5\t0x7A63\n0x8FF6\t0x84B8\n0x8FF7\t0x8B72\n0x8FF8\t0x91B8\n0x8FF9\t0x9320\n0x8FFA\t0x5631\n0x8FFB\t0x57F4\n0x8FFC\t0x98FE\n0x9040\t0x62ED\n0x9041\t0x690D\n0x9042\t0x6B96\n0x9043\t0x71ED\n0x9044\t0x7E54\n0x9045\t0x8077\n0x9046\t0x8272\n0x9047\t0x89E6\n0x9048\t0x98DF\n0x9049\t0x8755\n0x904A\t0x8FB1\n0x904B\t0x5C3B\n0x904C\t0x4F38\n0x904D\t0x4FE1\n0x904E\t0x4FB5\n0x904F\t0x5507\n0x9050\t0x5A20\n0x9051\t0x5BDD\n0x9052\t0x5BE9\n0x9053\t0x5FC3\n0x9054\t0x614E\n0x9055\t0x632F\n0x9056\t0x65B0\n0x9057\t0x664B\n0x9058\t0x68EE\n0x9059\t0x699B\n0x905A\t0x6D78\n0x905B\t0x6DF1\n0x905C\t0x7533\n0x905D\t0x75B9\n0x905E\t0x771F\n0x905F\t0x795E\n0x9060\t0x79E6\n0x9061\t0x7D33\n0x9062\t0x81E3\n0x9063\t0x82AF\n0x9064\t0x85AA\n0x9065\t0x89AA\n0x9066\t0x8A3A\n0x9067\t0x8EAB\n0x9068\t0x8F9B\n0x9069\t0x9032\n0x906A\t0x91DD\n0x906B\t0x9707\n0x906C\t0x4EBA\n0x906D\t0x4EC1\n0x906E\t0x5203\n0x906F\t0x5875\n0x9070\t0x58EC\n0x9071\t0x5C0B\n0x9072\t0x751A\n0x9073\t0x5C3D\n0x9074\t0x814E\n0x9075\t0x8A0A\n0x9076\t0x8FC5\n0x9077\t0x9663\n0x9078\t0x976D\n0x9079\t0x7B25\n0x907A\t0x8ACF\n0x907B\t0x9808\n0x907C\t0x9162\n0x907D\t0x56F3\n0x907E\t0x53A8\n0x9080\t0x9017\n0x9081\t0x5439\n0x9082\t0x5782\n0x9083\t0x5E25\n0x9084\t0x63A8\n0x9085\t0x6C34\n0x9086\t0x708A\n0x9087\t0x7761\n0x9088\t0x7C8B\n0x9089\t0x7FE0\n0x908A\t0x8870\n0x908B\t0x9042\n0x908C\t0x9154\n0x908D\t0x9310\n0x908E\t0x9318\n0x908F\t0x968F\n0x9090\t0x745E\n0x9091\t0x9AC4\n0x9092\t0x5D07\n0x9093\t0x5D69\n0x9094\t0x6570\n0x9095\t0x67A2\n0x9096\t0x8DA8\n0x9097\t0x96DB\n0x9098\t0x636E\n0x9099\t0x6749\n0x909A\t0x6919\n0x909B\t0x83C5\n0x909C\t0x9817\n0x909D\t0x96C0\n0x909E\t0x88FE\n0x909F\t0x6F84\n0x90A0\t0x647A\n0x90A1\t0x5BF8\n0x90A2\t0x4E16\n0x90A3\t0x702C\n0x90A4\t0x755D\n0x90A5\t0x662F\n0x90A6\t0x51C4\n0x90A7\t0x5236\n0x90A8\t0x52E2\n0x90A9\t0x59D3\n0x90AA\t0x5F81\n0x90AB\t0x6027\n0x90AC\t0x6210\n0x90AD\t0x653F\n0x90AE\t0x6574\n0x90AF\t0x661F\n0x90B0\t0x6674\n0x90B1\t0x68F2\n0x90B2\t0x6816\n0x90B3\t0x6B63\n0x90B4\t0x6E05\n0x90B5\t0x7272\n0x90B6\t0x751F\n0x90B7\t0x76DB\n0x90B8\t0x7CBE\n0x90B9\t0x8056\n0x90BA\t0x58F0\n0x90BB\t0x88FD\n0x90BC\t0x897F\n0x90BD\t0x8AA0\n0x90BE\t0x8A93\n0x90BF\t0x8ACB\n0x90C0\t0x901D\n0x90C1\t0x9192\n0x90C2\t0x9752\n0x90C3\t0x9759\n0x90C4\t0x6589\n0x90C5\t0x7A0E\n0x90C6\t0x8106\n0x90C7\t0x96BB\n0x90C8\t0x5E2D\n0x90C9\t0x60DC\n0x90CA\t0x621A\n0x90CB\t0x65A5\n0x90CC\t0x6614\n0x90CD\t0x6790\n0x90CE\t0x77F3\n0x90CF\t0x7A4D\n0x90D0\t0x7C4D\n0x90D1\t0x7E3E\n0x90D2\t0x810A\n0x90D3\t0x8CAC\n0x90D4\t0x8D64\n0x90D5\t0x8DE1\n0x90D6\t0x8E5F\n0x90D7\t0x78A9\n0x90D8\t0x5207\n0x90D9\t0x62D9\n0x90DA\t0x63A5\n0x90DB\t0x6442\n0x90DC\t0x6298\n0x90DD\t0x8A2D\n0x90DE\t0x7A83\n0x90DF\t0x7BC0\n0x90E0\t0x8AAC\n0x90E1\t0x96EA\n0x90E2\t0x7D76\n0x90E3\t0x820C\n0x90E4\t0x8749\n0x90E5\t0x4ED9\n0x90E6\t0x5148\n0x90E7\t0x5343\n0x90E8\t0x5360\n0x90E9\t0x5BA3\n0x90EA\t0x5C02\n0x90EB\t0x5C16\n0x90EC\t0x5DDD\n0x90ED\t0x6226\n0x90EE\t0x6247\n0x90EF\t0x64B0\n0x90F0\t0x6813\n0x90F1\t0x6834\n0x90F2\t0x6CC9\n0x90F3\t0x6D45\n0x90F4\t0x6D17\n0x90F5\t0x67D3\n0x90F6\t0x6F5C\n0x90F7\t0x714E\n0x90F8\t0x717D\n0x90F9\t0x65CB\n0x90FA\t0x7A7F\n0x90FB\t0x7BAD\n0x90FC\t0x7DDA\n0x9140\t0x7E4A\n0x9141\t0x7FA8\n0x9142\t0x817A\n0x9143\t0x821B\n0x9144\t0x8239\n0x9145\t0x85A6\n0x9146\t0x8A6E\n0x9147\t0x8CCE\n0x9148\t0x8DF5\n0x9149\t0x9078\n0x914A\t0x9077\n0x914B\t0x92AD\n0x914C\t0x9291\n0x914D\t0x9583\n0x914E\t0x9BAE\n0x914F\t0x524D\n0x9150\t0x5584\n0x9151\t0x6F38\n0x9152\t0x7136\n0x9153\t0x5168\n0x9154\t0x7985\n0x9155\t0x7E55\n0x9156\t0x81B3\n0x9157\t0x7CCE\n0x9158\t0x564C\n0x9159\t0x5851\n0x915A\t0x5CA8\n0x915B\t0x63AA\n0x915C\t0x66FE\n0x915D\t0x66FD\n0x915E\t0x695A\n0x915F\t0x72D9\n0x9160\t0x758F\n0x9161\t0x758E\n0x9162\t0x790E\n0x9163\t0x7956\n0x9164\t0x79DF\n0x9165\t0x7C97\n0x9166\t0x7D20\n0x9167\t0x7D44\n0x9168\t0x8607\n0x9169\t0x8A34\n0x916A\t0x963B\n0x916B\t0x9061\n0x916C\t0x9F20\n0x916D\t0x50E7\n0x916E\t0x5275\n0x916F\t0x53CC\n0x9170\t0x53E2\n0x9171\t0x5009\n0x9172\t0x55AA\n0x9173\t0x58EE\n0x9174\t0x594F\n0x9175\t0x723D\n0x9176\t0x5B8B\n0x9177\t0x5C64\n0x9178\t0x531D\n0x9179\t0x60E3\n0x917A\t0x60F3\n0x917B\t0x635C\n0x917C\t0x6383\n0x917D\t0x633F\n0x917E\t0x63BB\n0x9180\t0x64CD\n0x9181\t0x65E9\n0x9182\t0x66F9\n0x9183\t0x5DE3\n0x9184\t0x69CD\n0x9185\t0x69FD\n0x9186\t0x6F15\n0x9187\t0x71E5\n0x9188\t0x4E89\n0x9189\t0x75E9\n0x918A\t0x76F8\n0x918B\t0x7A93\n0x918C\t0x7CDF\n0x918D\t0x7DCF\n0x918E\t0x7D9C\n0x918F\t0x8061\n0x9190\t0x8349\n0x9191\t0x8358\n0x9192\t0x846C\n0x9193\t0x84BC\n0x9194\t0x85FB\n0x9195\t0x88C5\n0x9196\t0x8D70\n0x9197\t0x9001\n0x9198\t0x906D\n0x9199\t0x9397\n0x919A\t0x971C\n0x919B\t0x9A12\n0x919C\t0x50CF\n0x919D\t0x5897\n0x919E\t0x618E\n0x919F\t0x81D3\n0x91A0\t0x8535\n0x91A1\t0x8D08\n0x91A2\t0x9020\n0x91A3\t0x4FC3\n0x91A4\t0x5074\n0x91A5\t0x5247\n0x91A6\t0x5373\n0x91A7\t0x606F\n0x91A8\t0x6349\n0x91A9\t0x675F\n0x91AA\t0x6E2C\n0x91AB\t0x8DB3\n0x91AC\t0x901F\n0x91AD\t0x4FD7\n0x91AE\t0x5C5E\n0x91AF\t0x8CCA\n0x91B0\t0x65CF\n0x91B1\t0x7D9A\n0x91B2\t0x5352\n0x91B3\t0x8896\n0x91B4\t0x5176\n0x91B5\t0x63C3\n0x91B6\t0x5B58\n0x91B7\t0x5B6B\n0x91B8\t0x5C0A\n0x91B9\t0x640D\n0x91BA\t0x6751\n0x91BB\t0x905C\n0x91BC\t0x4ED6\n0x91BD\t0x591A\n0x91BE\t0x592A\n0x91BF\t0x6C70\n0x91C0\t0x8A51\n0x91C1\t0x553E\n0x91C2\t0x5815\n0x91C3\t0x59A5\n0x91C4\t0x60F0\n0x91C5\t0x6253\n0x91C6\t0x67C1\n0x91C7\t0x8235\n0x91C8\t0x6955\n0x91C9\t0x9640\n0x91CA\t0x99C4\n0x91CB\t0x9A28\n0x91CC\t0x4F53\n0x91CD\t0x5806\n0x91CE\t0x5BFE\n0x91CF\t0x8010\n0x91D0\t0x5CB1\n0x91D1\t0x5E2F\n0x91D2\t0x5F85\n0x91D3\t0x6020\n0x91D4\t0x614B\n0x91D5\t0x6234\n0x91D6\t0x66FF\n0x91D7\t0x6CF0\n0x91D8\t0x6EDE\n0x91D9\t0x80CE\n0x91DA\t0x817F\n0x91DB\t0x82D4\n0x91DC\t0x888B\n0x91DD\t0x8CB8\n0x91DE\t0x9000\n0x91DF\t0x902E\n0x91E0\t0x968A\n0x91E1\t0x9EDB\n0x91E2\t0x9BDB\n0x91E3\t0x4EE3\n0x91E4\t0x53F0\n0x91E5\t0x5927\n0x91E6\t0x7B2C\n0x91E7\t0x918D\n0x91E8\t0x984C\n0x91E9\t0x9DF9\n0x91EA\t0x6EDD\n0x91EB\t0x7027\n0x91EC\t0x5353\n0x91ED\t0x5544\n0x91EE\t0x5B85\n0x91EF\t0x6258\n0x91F0\t0x629E\n0x91F1\t0x62D3\n0x91F2\t0x6CA2\n0x91F3\t0x6FEF\n0x91F4\t0x7422\n0x91F5\t0x8A17\n0x91F6\t0x9438\n0x91F7\t0x6FC1\n0x91F8\t0x8AFE\n0x91F9\t0x8338\n0x91FA\t0x51E7\n0x91FB\t0x86F8\n0x91FC\t0x53EA\n0x9240\t0x53E9\n0x9241\t0x4F46\n0x9242\t0x9054\n0x9243\t0x8FB0\n0x9244\t0x596A\n0x9245\t0x8131\n0x9246\t0x5DFD\n0x9247\t0x7AEA\n0x9248\t0x8FBF\n0x9249\t0x68DA\n0x924A\t0x8C37\n0x924B\t0x72F8\n0x924C\t0x9C48\n0x924D\t0x6A3D\n0x924E\t0x8AB0\n0x924F\t0x4E39\n0x9250\t0x5358\n0x9251\t0x5606\n0x9252\t0x5766\n0x9253\t0x62C5\n0x9254\t0x63A2\n0x9255\t0x65E6\n0x9256\t0x6B4E\n0x9257\t0x6DE1\n0x9258\t0x6E5B\n0x9259\t0x70AD\n0x925A\t0x77ED\n0x925B\t0x7AEF\n0x925C\t0x7BAA\n0x925D\t0x7DBB\n0x925E\t0x803D\n0x925F\t0x80C6\n0x9260\t0x86CB\n0x9261\t0x8A95\n0x9262\t0x935B\n0x9263\t0x56E3\n0x9264\t0x58C7\n0x9265\t0x5F3E\n0x9266\t0x65AD\n0x9267\t0x6696\n0x9268\t0x6A80\n0x9269\t0x6BB5\n0x926A\t0x7537\n0x926B\t0x8AC7\n0x926C\t0x5024\n0x926D\t0x77E5\n0x926E\t0x5730\n0x926F\t0x5F1B\n0x9270\t0x6065\n0x9271\t0x667A\n0x9272\t0x6C60\n0x9273\t0x75F4\n0x9274\t0x7A1A\n0x9275\t0x7F6E\n0x9276\t0x81F4\n0x9277\t0x8718\n0x9278\t0x9045\n0x9279\t0x99B3\n0x927A\t0x7BC9\n0x927B\t0x755C\n0x927C\t0x7AF9\n0x927D\t0x7B51\n0x927E\t0x84C4\n0x9280\t0x9010\n0x9281\t0x79E9\n0x9282\t0x7A92\n0x9283\t0x8336\n0x9284\t0x5AE1\n0x9285\t0x7740\n0x9286\t0x4E2D\n0x9287\t0x4EF2\n0x9288\t0x5B99\n0x9289\t0x5FE0\n0x928A\t0x62BD\n0x928B\t0x663C\n0x928C\t0x67F1\n0x928D\t0x6CE8\n0x928E\t0x866B\n0x928F\t0x8877\n0x9290\t0x8A3B\n0x9291\t0x914E\n0x9292\t0x92F3\n0x9293\t0x99D0\n0x9294\t0x6A17\n0x9295\t0x7026\n0x9296\t0x732A\n0x9297\t0x82E7\n0x9298\t0x8457\n0x9299\t0x8CAF\n0x929A\t0x4E01\n0x929B\t0x5146\n0x929C\t0x51CB\n0x929D\t0x558B\n0x929E\t0x5BF5\n0x929F\t0x5E16\n0x92A0\t0x5E33\n0x92A1\t0x5E81\n0x92A2\t0x5F14\n0x92A3\t0x5F35\n0x92A4\t0x5F6B\n0x92A5\t0x5FB4\n0x92A6\t0x61F2\n0x92A7\t0x6311\n0x92A8\t0x66A2\n0x92A9\t0x671D\n0x92AA\t0x6F6E\n0x92AB\t0x7252\n0x92AC\t0x753A\n0x92AD\t0x773A\n0x92AE\t0x8074\n0x92AF\t0x8139\n0x92B0\t0x8178\n0x92B1\t0x8776\n0x92B2\t0x8ABF\n0x92B3\t0x8ADC\n0x92B4\t0x8D85\n0x92B5\t0x8DF3\n0x92B6\t0x929A\n0x92B7\t0x9577\n0x92B8\t0x9802\n0x92B9\t0x9CE5\n0x92BA\t0x52C5\n0x92BB\t0x6357\n0x92BC\t0x76F4\n0x92BD\t0x6715\n0x92BE\t0x6C88\n0x92BF\t0x73CD\n0x92C0\t0x8CC3\n0x92C1\t0x93AE\n0x92C2\t0x9673\n0x92C3\t0x6D25\n0x92C4\t0x589C\n0x92C5\t0x690E\n0x92C6\t0x69CC\n0x92C7\t0x8FFD\n0x92C8\t0x939A\n0x92C9\t0x75DB\n0x92CA\t0x901A\n0x92CB\t0x585A\n0x92CC\t0x6802\n0x92CD\t0x63B4\n0x92CE\t0x69FB\n0x92CF\t0x4F43\n0x92D0\t0x6F2C\n0x92D1\t0x67D8\n0x92D2\t0x8FBB\n0x92D3\t0x8526\n0x92D4\t0x7DB4\n0x92D5\t0x9354\n0x92D6\t0x693F\n0x92D7\t0x6F70\n0x92D8\t0x576A\n0x92D9\t0x58F7\n0x92DA\t0x5B2C\n0x92DB\t0x7D2C\n0x92DC\t0x722A\n0x92DD\t0x540A\n0x92DE\t0x91E3\n0x92DF\t0x9DB4\n0x92E0\t0x4EAD\n0x92E1\t0x4F4E\n0x92E2\t0x505C\n0x92E3\t0x5075\n0x92E4\t0x5243\n0x92E5\t0x8C9E\n0x92E6\t0x5448\n0x92E7\t0x5824\n0x92E8\t0x5B9A\n0x92E9\t0x5E1D\n0x92EA\t0x5E95\n0x92EB\t0x5EAD\n0x92EC\t0x5EF7\n0x92ED\t0x5F1F\n0x92EE\t0x608C\n0x92EF\t0x62B5\n0x92F0\t0x633A\n0x92F1\t0x63D0\n0x92F2\t0x68AF\n0x92F3\t0x6C40\n0x92F4\t0x7887\n0x92F5\t0x798E\n0x92F6\t0x7A0B\n0x92F7\t0x7DE0\n0x92F8\t0x8247\n0x92F9\t0x8A02\n0x92FA\t0x8AE6\n0x92FB\t0x8E44\n0x92FC\t0x9013\n0x9340\t0x90B8\n0x9341\t0x912D\n0x9342\t0x91D8\n0x9343\t0x9F0E\n0x9344\t0x6CE5\n0x9345\t0x6458\n0x9346\t0x64E2\n0x9347\t0x6575\n0x9348\t0x6EF4\n0x9349\t0x7684\n0x934A\t0x7B1B\n0x934B\t0x9069\n0x934C\t0x93D1\n0x934D\t0x6EBA\n0x934E\t0x54F2\n0x934F\t0x5FB9\n0x9350\t0x64A4\n0x9351\t0x8F4D\n0x9352\t0x8FED\n0x9353\t0x9244\n0x9354\t0x5178\n0x9355\t0x586B\n0x9356\t0x5929\n0x9357\t0x5C55\n0x9358\t0x5E97\n0x9359\t0x6DFB\n0x935A\t0x7E8F\n0x935B\t0x751C\n0x935C\t0x8CBC\n0x935D\t0x8EE2\n0x935E\t0x985B\n0x935F\t0x70B9\n0x9360\t0x4F1D\n0x9361\t0x6BBF\n0x9362\t0x6FB1\n0x9363\t0x7530\n0x9364\t0x96FB\n0x9365\t0x514E\n0x9366\t0x5410\n0x9367\t0x5835\n0x9368\t0x5857\n0x9369\t0x59AC\n0x936A\t0x5C60\n0x936B\t0x5F92\n0x936C\t0x6597\n0x936D\t0x675C\n0x936E\t0x6E21\n0x936F\t0x767B\n0x9370\t0x83DF\n0x9371\t0x8CED\n0x9372\t0x9014\n0x9373\t0x90FD\n0x9374\t0x934D\n0x9375\t0x7825\n0x9376\t0x783A\n0x9377\t0x52AA\n0x9378\t0x5EA6\n0x9379\t0x571F\n0x937A\t0x5974\n0x937B\t0x6012\n0x937C\t0x5012\n0x937D\t0x515A\n0x937E\t0x51AC\n0x9380\t0x51CD\n0x9381\t0x5200\n0x9382\t0x5510\n0x9383\t0x5854\n0x9384\t0x5858\n0x9385\t0x5957\n0x9386\t0x5B95\n0x9387\t0x5CF6\n0x9388\t0x5D8B\n0x9389\t0x60BC\n0x938A\t0x6295\n0x938B\t0x642D\n0x938C\t0x6771\n0x938D\t0x6843\n0x938E\t0x68BC\n0x938F\t0x68DF\n0x9390\t0x76D7\n0x9391\t0x6DD8\n0x9392\t0x6E6F\n0x9393\t0x6D9B\n0x9394\t0x706F\n0x9395\t0x71C8\n0x9396\t0x5F53\n0x9397\t0x75D8\n0x9398\t0x7977\n0x9399\t0x7B49\n0x939A\t0x7B54\n0x939B\t0x7B52\n0x939C\t0x7CD6\n0x939D\t0x7D71\n0x939E\t0x5230\n0x939F\t0x8463\n0x93A0\t0x8569\n0x93A1\t0x85E4\n0x93A2\t0x8A0E\n0x93A3\t0x8B04\n0x93A4\t0x8C46\n0x93A5\t0x8E0F\n0x93A6\t0x9003\n0x93A7\t0x900F\n0x93A8\t0x9419\n0x93A9\t0x9676\n0x93AA\t0x982D\n0x93AB\t0x9A30\n0x93AC\t0x95D8\n0x93AD\t0x50CD\n0x93AE\t0x52D5\n0x93AF\t0x540C\n0x93B0\t0x5802\n0x93B1\t0x5C0E\n0x93B2\t0x61A7\n0x93B3\t0x649E\n0x93B4\t0x6D1E\n0x93B5\t0x77B3\n0x93B6\t0x7AE5\n0x93B7\t0x80F4\n0x93B8\t0x8404\n0x93B9\t0x9053\n0x93BA\t0x9285\n0x93BB\t0x5CE0\n0x93BC\t0x9D07\n0x93BD\t0x533F\n0x93BE\t0x5F97\n0x93BF\t0x5FB3\n0x93C0\t0x6D9C\n0x93C1\t0x7279\n0x93C2\t0x7763\n0x93C3\t0x79BF\n0x93C4\t0x7BE4\n0x93C5\t0x6BD2\n0x93C6\t0x72EC\n0x93C7\t0x8AAD\n0x93C8\t0x6803\n0x93C9\t0x6A61\n0x93CA\t0x51F8\n0x93CB\t0x7A81\n0x93CC\t0x6934\n0x93CD\t0x5C4A\n0x93CE\t0x9CF6\n0x93CF\t0x82EB\n0x93D0\t0x5BC5\n0x93D1\t0x9149\n0x93D2\t0x701E\n0x93D3\t0x5678\n0x93D4\t0x5C6F\n0x93D5\t0x60C7\n0x93D6\t0x6566\n0x93D7\t0x6C8C\n0x93D8\t0x8C5A\n0x93D9\t0x9041\n0x93DA\t0x9813\n0x93DB\t0x5451\n0x93DC\t0x66C7\n0x93DD\t0x920D\n0x93DE\t0x5948\n0x93DF\t0x90A3\n0x93E0\t0x5185\n0x93E1\t0x4E4D\n0x93E2\t0x51EA\n0x93E3\t0x8599\n0x93E4\t0x8B0E\n0x93E5\t0x7058\n0x93E6\t0x637A\n0x93E7\t0x934B\n0x93E8\t0x6962\n0x93E9\t0x99B4\n0x93EA\t0x7E04\n0x93EB\t0x7577\n0x93EC\t0x5357\n0x93ED\t0x6960\n0x93EE\t0x8EDF\n0x93EF\t0x96E3\n0x93F0\t0x6C5D\n0x93F1\t0x4E8C\n0x93F2\t0x5C3C\n0x93F3\t0x5F10\n0x93F4\t0x8FE9\n0x93F5\t0x5302\n0x93F6\t0x8CD1\n0x93F7\t0x8089\n0x93F8\t0x8679\n0x93F9\t0x5EFF\n0x93FA\t0x65E5\n0x93FB\t0x4E73\n0x93FC\t0x5165\n0x9440\t0x5982\n0x9441\t0x5C3F\n0x9442\t0x97EE\n0x9443\t0x4EFB\n0x9444\t0x598A\n0x9445\t0x5FCD\n0x9446\t0x8A8D\n0x9447\t0x6FE1\n0x9448\t0x79B0\n0x9449\t0x7962\n0x944A\t0x5BE7\n0x944B\t0x8471\n0x944C\t0x732B\n0x944D\t0x71B1\n0x944E\t0x5E74\n0x944F\t0x5FF5\n0x9450\t0x637B\n0x9451\t0x649A\n0x9452\t0x71C3\n0x9453\t0x7C98\n0x9454\t0x4E43\n0x9455\t0x5EFC\n0x9456\t0x4E4B\n0x9457\t0x57DC\n0x9458\t0x56A2\n0x9459\t0x60A9\n0x945A\t0x6FC3\n0x945B\t0x7D0D\n0x945C\t0x80FD\n0x945D\t0x8133\n0x945E\t0x81BF\n0x945F\t0x8FB2\n0x9460\t0x8997\n0x9461\t0x86A4\n0x9462\t0x5DF4\n0x9463\t0x628A\n0x9464\t0x64AD\n0x9465\t0x8987\n0x9466\t0x6777\n0x9467\t0x6CE2\n0x9468\t0x6D3E\n0x9469\t0x7436\n0x946A\t0x7834\n0x946B\t0x5A46\n0x946C\t0x7F75\n0x946D\t0x82AD\n0x946E\t0x99AC\n0x946F\t0x4FF3\n0x9470\t0x5EC3\n0x9471\t0x62DD\n0x9472\t0x6392\n0x9473\t0x6557\n0x9474\t0x676F\n0x9475\t0x76C3\n0x9476\t0x724C\n0x9477\t0x80CC\n0x9478\t0x80BA\n0x9479\t0x8F29\n0x947A\t0x914D\n0x947B\t0x500D\n0x947C\t0x57F9\n0x947D\t0x5A92\n0x947E\t0x6885\n0x9480\t0x6973\n0x9481\t0x7164\n0x9482\t0x72FD\n0x9483\t0x8CB7\n0x9484\t0x58F2\n0x9485\t0x8CE0\n0x9486\t0x966A\n0x9487\t0x9019\n0x9488\t0x877F\n0x9489\t0x79E4\n0x948A\t0x77E7\n0x948B\t0x8429\n0x948C\t0x4F2F\n0x948D\t0x5265\n0x948E\t0x535A\n0x948F\t0x62CD\n0x9490\t0x67CF\n0x9491\t0x6CCA\n0x9492\t0x767D\n0x9493\t0x7B94\n0x9494\t0x7C95\n0x9495\t0x8236\n0x9496\t0x8584\n0x9497\t0x8FEB\n0x9498\t0x66DD\n0x9499\t0x6F20\n0x949A\t0x7206\n0x949B\t0x7E1B\n0x949C\t0x83AB\n0x949D\t0x99C1\n0x949E\t0x9EA6\n0x949F\t0x51FD\n0x94A0\t0x7BB1\n0x94A1\t0x7872\n0x94A2\t0x7BB8\n0x94A3\t0x8087\n0x94A4\t0x7B48\n0x94A5\t0x6AE8\n0x94A6\t0x5E61\n0x94A7\t0x808C\n0x94A8\t0x7551\n0x94A9\t0x7560\n0x94AA\t0x516B\n0x94AB\t0x9262\n0x94AC\t0x6E8C\n0x94AD\t0x767A\n0x94AE\t0x9197\n0x94AF\t0x9AEA\n0x94B0\t0x4F10\n0x94B1\t0x7F70\n0x94B2\t0x629C\n0x94B3\t0x7B4F\n0x94B4\t0x95A5\n0x94B5\t0x9CE9\n0x94B6\t0x567A\n0x94B7\t0x5859\n0x94B8\t0x86E4\n0x94B9\t0x96BC\n0x94BA\t0x4F34\n0x94BB\t0x5224\n0x94BC\t0x534A\n0x94BD\t0x53CD\n0x94BE\t0x53DB\n0x94BF\t0x5E06\n0x94C0\t0x642C\n0x94C1\t0x6591\n0x94C2\t0x677F\n0x94C3\t0x6C3E\n0x94C4\t0x6C4E\n0x94C5\t0x7248\n0x94C6\t0x72AF\n0x94C7\t0x73ED\n0x94C8\t0x7554\n0x94C9\t0x7E41\n0x94CA\t0x822C\n0x94CB\t0x85E9\n0x94CC\t0x8CA9\n0x94CD\t0x7BC4\n0x94CE\t0x91C6\n0x94CF\t0x7169\n0x94D0\t0x9812\n0x94D1\t0x98EF\n0x94D2\t0x633D\n0x94D3\t0x6669\n0x94D4\t0x756A\n0x94D5\t0x76E4\n0x94D6\t0x78D0\n0x94D7\t0x8543\n0x94D8\t0x86EE\n0x94D9\t0x532A\n0x94DA\t0x5351\n0x94DB\t0x5426\n0x94DC\t0x5983\n0x94DD\t0x5E87\n0x94DE\t0x5F7C\n0x94DF\t0x60B2\n0x94E0\t0x6249\n0x94E1\t0x6279\n0x94E2\t0x62AB\n0x94E3\t0x6590\n0x94E4\t0x6BD4\n0x94E5\t0x6CCC\n0x94E6\t0x75B2\n0x94E7\t0x76AE\n0x94E8\t0x7891\n0x94E9\t0x79D8\n0x94EA\t0x7DCB\n0x94EB\t0x7F77\n0x94EC\t0x80A5\n0x94ED\t0x88AB\n0x94EE\t0x8AB9\n0x94EF\t0x8CBB\n0x94F0\t0x907F\n0x94F1\t0x975E\n0x94F2\t0x98DB\n0x94F3\t0x6A0B\n0x94F4\t0x7C38\n0x94F5\t0x5099\n0x94F6\t0x5C3E\n0x94F7\t0x5FAE\n0x94F8\t0x6787\n0x94F9\t0x6BD8\n0x94FA\t0x7435\n0x94FB\t0x7709\n0x94FC\t0x7F8E\n0x9540\t0x9F3B\n0x9541\t0x67CA\n0x9542\t0x7A17\n0x9543\t0x5339\n0x9544\t0x758B\n0x9545\t0x9AED\n0x9546\t0x5F66\n0x9547\t0x819D\n0x9548\t0x83F1\n0x9549\t0x8098\n0x954A\t0x5F3C\n0x954B\t0x5FC5\n0x954C\t0x7562\n0x954D\t0x7B46\n0x954E\t0x903C\n0x954F\t0x6867\n0x9550\t0x59EB\n0x9551\t0x5A9B\n0x9552\t0x7D10\n0x9553\t0x767E\n0x9554\t0x8B2C\n0x9555\t0x4FF5\n0x9556\t0x5F6A\n0x9557\t0x6A19\n0x9558\t0x6C37\n0x9559\t0x6F02\n0x955A\t0x74E2\n0x955B\t0x7968\n0x955C\t0x8868\n0x955D\t0x8A55\n0x955E\t0x8C79\n0x955F\t0x5EDF\n0x9560\t0x63CF\n0x9561\t0x75C5\n0x9562\t0x79D2\n0x9563\t0x82D7\n0x9564\t0x9328\n0x9565\t0x92F2\n0x9566\t0x849C\n0x9567\t0x86ED\n0x9568\t0x9C2D\n0x9569\t0x54C1\n0x956A\t0x5F6C\n0x956B\t0x658C\n0x956C\t0x6D5C\n0x956D\t0x7015\n0x956E\t0x8CA7\n0x956F\t0x8CD3\n0x9570\t0x983B\n0x9571\t0x654F\n0x9572\t0x74F6\n0x9573\t0x4E0D\n0x9574\t0x4ED8\n0x9575\t0x57E0\n0x9576\t0x592B\n0x9577\t0x5A66\n0x9578\t0x5BCC\n0x9579\t0x51A8\n0x957A\t0x5E03\n0x957B\t0x5E9C\n0x957C\t0x6016\n0x957D\t0x6276\n0x957E\t0x6577\n0x9580\t0x65A7\n0x9581\t0x666E\n0x9582\t0x6D6E\n0x9583\t0x7236\n0x9584\t0x7B26\n0x9585\t0x8150\n0x9586\t0x819A\n0x9587\t0x8299\n0x9588\t0x8B5C\n0x9589\t0x8CA0\n0x958A\t0x8CE6\n0x958B\t0x8D74\n0x958C\t0x961C\n0x958D\t0x9644\n0x958E\t0x4FAE\n0x958F\t0x64AB\n0x9590\t0x6B66\n0x9591\t0x821E\n0x9592\t0x8461\n0x9593\t0x856A\n0x9594\t0x90E8\n0x9595\t0x5C01\n0x9596\t0x6953\n0x9597\t0x98A8\n0x9598\t0x847A\n0x9599\t0x8557\n0x959A\t0x4F0F\n0x959B\t0x526F\n0x959C\t0x5FA9\n0x959D\t0x5E45\n0x959E\t0x670D\n0x959F\t0x798F\n0x95A0\t0x8179\n0x95A1\t0x8907\n0x95A2\t0x8986\n0x95A3\t0x6DF5\n0x95A4\t0x5F17\n0x95A5\t0x6255\n0x95A6\t0x6CB8\n0x95A7\t0x4ECF\n0x95A8\t0x7269\n0x95A9\t0x9B92\n0x95AA\t0x5206\n0x95AB\t0x543B\n0x95AC\t0x5674\n0x95AD\t0x58B3\n0x95AE\t0x61A4\n0x95AF\t0x626E\n0x95B0\t0x711A\n0x95B1\t0x596E\n0x95B2\t0x7C89\n0x95B3\t0x7CDE\n0x95B4\t0x7D1B\n0x95B5\t0x96F0\n0x95B6\t0x6587\n0x95B7\t0x805E\n0x95B8\t0x4E19\n0x95B9\t0x4F75\n0x95BA\t0x5175\n0x95BB\t0x5840\n0x95BC\t0x5E63\n0x95BD\t0x5E73\n0x95BE\t0x5F0A\n0x95BF\t0x67C4\n0x95C0\t0x4E26\n0x95C1\t0x853D\n0x95C2\t0x9589\n0x95C3\t0x965B\n0x95C4\t0x7C73\n0x95C5\t0x9801\n0x95C6\t0x50FB\n0x95C7\t0x58C1\n0x95C8\t0x7656\n0x95C9\t0x78A7\n0x95CA\t0x5225\n0x95CB\t0x77A5\n0x95CC\t0x8511\n0x95CD\t0x7B86\n0x95CE\t0x504F\n0x95CF\t0x5909\n0x95D0\t0x7247\n0x95D1\t0x7BC7\n0x95D2\t0x7DE8\n0x95D3\t0x8FBA\n0x95D4\t0x8FD4\n0x95D5\t0x904D\n0x95D6\t0x4FBF\n0x95D7\t0x52C9\n0x95D8\t0x5A29\n0x95D9\t0x5F01\n0x95DA\t0x97AD\n0x95DB\t0x4FDD\n0x95DC\t0x8217\n0x95DD\t0x92EA\n0x95DE\t0x5703\n0x95DF\t0x6355\n0x95E0\t0x6B69\n0x95E1\t0x752B\n0x95E2\t0x88DC\n0x95E3\t0x8F14\n0x95E4\t0x7A42\n0x95E5\t0x52DF\n0x95E6\t0x5893\n0x95E7\t0x6155\n0x95E8\t0x620A\n0x95E9\t0x66AE\n0x95EA\t0x6BCD\n0x95EB\t0x7C3F\n0x95EC\t0x83E9\n0x95ED\t0x5023\n0x95EE\t0x4FF8\n0x95EF\t0x5305\n0x95F0\t0x5446\n0x95F1\t0x5831\n0x95F2\t0x5949\n0x95F3\t0x5B9D\n0x95F4\t0x5CF0\n0x95F5\t0x5CEF\n0x95F6\t0x5D29\n0x95F7\t0x5E96\n0x95F8\t0x62B1\n0x95F9\t0x6367\n0x95FA\t0x653E\n0x95FB\t0x65B9\n0x95FC\t0x670B\n0x9640\t0x6CD5\n0x9641\t0x6CE1\n0x9642\t0x70F9\n0x9643\t0x7832\n0x9644\t0x7E2B\n0x9645\t0x80DE\n0x9646\t0x82B3\n0x9647\t0x840C\n0x9648\t0x84EC\n0x9649\t0x8702\n0x964A\t0x8912\n0x964B\t0x8A2A\n0x964C\t0x8C4A\n0x964D\t0x90A6\n0x964E\t0x92D2\n0x964F\t0x98FD\n0x9650\t0x9CF3\n0x9651\t0x9D6C\n0x9652\t0x4E4F\n0x9653\t0x4EA1\n0x9654\t0x508D\n0x9655\t0x5256\n0x9656\t0x574A\n0x9657\t0x59A8\n0x9658\t0x5E3D\n0x9659\t0x5FD8\n0x965A\t0x5FD9\n0x965B\t0x623F\n0x965C\t0x66B4\n0x965D\t0x671B\n0x965E\t0x67D0\n0x965F\t0x68D2\n0x9660\t0x5192\n0x9661\t0x7D21\n0x9662\t0x80AA\n0x9663\t0x81A8\n0x9664\t0x8B00\n0x9665\t0x8C8C\n0x9666\t0x8CBF\n0x9667\t0x927E\n0x9668\t0x9632\n0x9669\t0x5420\n0x966A\t0x982C\n0x966B\t0x5317\n0x966C\t0x50D5\n0x966D\t0x535C\n0x966E\t0x58A8\n0x966F\t0x64B2\n0x9670\t0x6734\n0x9671\t0x7267\n0x9672\t0x7766\n0x9673\t0x7A46\n0x9674\t0x91E6\n0x9675\t0x52C3\n0x9676\t0x6CA1\n0x9677\t0x6B86\n0x9678\t0x5800\n0x9679\t0x5E4C\n0x967A\t0x5954\n0x967B\t0x672C\n0x967C\t0x7FFB\n0x967D\t0x51E1\n0x967E\t0x76C6\n0x9680\t0x6469\n0x9681\t0x78E8\n0x9682\t0x9B54\n0x9683\t0x9EBB\n0x9684\t0x57CB\n0x9685\t0x59B9\n0x9686\t0x6627\n0x9687\t0x679A\n0x9688\t0x6BCE\n0x9689\t0x54E9\n0x968A\t0x69D9\n0x968B\t0x5E55\n0x968C\t0x819C\n0x968D\t0x6795\n0x968E\t0x9BAA\n0x968F\t0x67FE\n0x9690\t0x9C52\n0x9691\t0x685D\n0x9692\t0x4EA6\n0x9693\t0x4FE3\n0x9694\t0x53C8\n0x9695\t0x62B9\n0x9696\t0x672B\n0x9697\t0x6CAB\n0x9698\t0x8FC4\n0x9699\t0x4FAD\n0x969A\t0x7E6D\n0x969B\t0x9EBF\n0x969C\t0x4E07\n0x969D\t0x6162\n0x969E\t0x6E80\n0x969F\t0x6F2B\n0x96A0\t0x8513\n0x96A1\t0x5473\n0x96A2\t0x672A\n0x96A3\t0x9B45\n0x96A4\t0x5DF3\n0x96A5\t0x7B95\n0x96A6\t0x5CAC\n0x96A7\t0x5BC6\n0x96A8\t0x871C\n0x96A9\t0x6E4A\n0x96AA\t0x84D1\n0x96AB\t0x7A14\n0x96AC\t0x8108\n0x96AD\t0x5999\n0x96AE\t0x7C8D\n0x96AF\t0x6C11\n0x96B0\t0x7720\n0x96B1\t0x52D9\n0x96B2\t0x5922\n0x96B3\t0x7121\n0x96B4\t0x725F\n0x96B5\t0x77DB\n0x96B6\t0x9727\n0x96B7\t0x9D61\n0x96B8\t0x690B\n0x96B9\t0x5A7F\n0x96BA\t0x5A18\n0x96BB\t0x51A5\n0x96BC\t0x540D\n0x96BD\t0x547D\n0x96BE\t0x660E\n0x96BF\t0x76DF\n0x96C0\t0x8FF7\n0x96C1\t0x9298\n0x96C2\t0x9CF4\n0x96C3\t0x59EA\n0x96C4\t0x725D\n0x96C5\t0x6EC5\n0x96C6\t0x514D\n0x96C7\t0x68C9\n0x96C8\t0x7DBF\n0x96C9\t0x7DEC\n0x96CA\t0x9762\n0x96CB\t0x9EBA\n0x96CC\t0x6478\n0x96CD\t0x6A21\n0x96CE\t0x8302\n0x96CF\t0x5984\n0x96D0\t0x5B5F\n0x96D1\t0x6BDB\n0x96D2\t0x731B\n0x96D3\t0x76F2\n0x96D4\t0x7DB2\n0x96D5\t0x8017\n0x96D6\t0x8499\n0x96D7\t0x5132\n0x96D8\t0x6728\n0x96D9\t0x9ED9\n0x96DA\t0x76EE\n0x96DB\t0x6762\n0x96DC\t0x52FF\n0x96DD\t0x9905\n0x96DE\t0x5C24\n0x96DF\t0x623B\n0x96E0\t0x7C7E\n0x96E1\t0x8CB0\n0x96E2\t0x554F\n0x96E3\t0x60B6\n0x96E4\t0x7D0B\n0x96E5\t0x9580\n0x96E6\t0x5301\n0x96E7\t0x4E5F\n0x96E8\t0x51B6\n0x96E9\t0x591C\n0x96EA\t0x723A\n0x96EB\t0x8036\n0x96EC\t0x91CE\n0x96ED\t0x5F25\n0x96EE\t0x77E2\n0x96EF\t0x5384\n0x96F0\t0x5F79\n0x96F1\t0x7D04\n0x96F2\t0x85AC\n0x96F3\t0x8A33\n0x96F4\t0x8E8D\n0x96F5\t0x9756\n0x96F6\t0x67F3\n0x96F7\t0x85AE\n0x96F8\t0x9453\n0x96F9\t0x6109\n0x96FA\t0x6108\n0x96FB\t0x6CB9\n0x96FC\t0x7652\n0x9740\t0x8AED\n0x9741\t0x8F38\n0x9742\t0x552F\n0x9743\t0x4F51\n0x9744\t0x512A\n0x9745\t0x52C7\n0x9746\t0x53CB\n0x9747\t0x5BA5\n0x9748\t0x5E7D\n0x9749\t0x60A0\n0x974A\t0x6182\n0x974B\t0x63D6\n0x974C\t0x6709\n0x974D\t0x67DA\n0x974E\t0x6E67\n0x974F\t0x6D8C\n0x9750\t0x7336\n0x9751\t0x7337\n0x9752\t0x7531\n0x9753\t0x7950\n0x9754\t0x88D5\n0x9755\t0x8A98\n0x9756\t0x904A\n0x9757\t0x9091\n0x9758\t0x90F5\n0x9759\t0x96C4\n0x975A\t0x878D\n0x975B\t0x5915\n0x975C\t0x4E88\n0x975D\t0x4F59\n0x975E\t0x4E0E\n0x975F\t0x8A89\n0x9760\t0x8F3F\n0x9761\t0x9810\n0x9762\t0x50AD\n0x9763\t0x5E7C\n0x9764\t0x5996\n0x9765\t0x5BB9\n0x9766\t0x5EB8\n0x9767\t0x63DA\n0x9768\t0x63FA\n0x9769\t0x64C1\n0x976A\t0x66DC\n0x976B\t0x694A\n0x976C\t0x69D8\n0x976D\t0x6D0B\n0x976E\t0x6EB6\n0x976F\t0x7194\n0x9770\t0x7528\n0x9771\t0x7AAF\n0x9772\t0x7F8A\n0x9773\t0x8000\n0x9774\t0x8449\n0x9775\t0x84C9\n0x9776\t0x8981\n0x9777\t0x8B21\n0x9778\t0x8E0A\n0x9779\t0x9065\n0x977A\t0x967D\n0x977B\t0x990A\n0x977C\t0x617E\n0x977D\t0x6291\n0x977E\t0x6B32\n0x9780\t0x6C83\n0x9781\t0x6D74\n0x9782\t0x7FCC\n0x9783\t0x7FFC\n0x9784\t0x6DC0\n0x9785\t0x7F85\n0x9786\t0x87BA\n0x9787\t0x88F8\n0x9788\t0x6765\n0x9789\t0x83B1\n0x978A\t0x983C\n0x978B\t0x96F7\n0x978C\t0x6D1B\n0x978D\t0x7D61\n0x978E\t0x843D\n0x978F\t0x916A\n0x9790\t0x4E71\n0x9791\t0x5375\n0x9792\t0x5D50\n0x9793\t0x6B04\n0x9794\t0x6FEB\n0x9795\t0x85CD\n0x9796\t0x862D\n0x9797\t0x89A7\n0x9798\t0x5229\n0x9799\t0x540F\n0x979A\t0x5C65\n0x979B\t0x674E\n0x979C\t0x68A8\n0x979D\t0x7406\n0x979E\t0x7483\n0x979F\t0x75E2\n0x97A0\t0x88CF\n0x97A1\t0x88E1\n0x97A2\t0x91CC\n0x97A3\t0x96E2\n0x97A4\t0x9678\n0x97A5\t0x5F8B\n0x97A6\t0x7387\n0x97A7\t0x7ACB\n0x97A8\t0x844E\n0x97A9\t0x63A0\n0x97AA\t0x7565\n0x97AB\t0x5289\n0x97AC\t0x6D41\n0x97AD\t0x6E9C\n0x97AE\t0x7409\n0x97AF\t0x7559\n0x97B0\t0x786B\n0x97B1\t0x7C92\n0x97B2\t0x9686\n0x97B3\t0x7ADC\n0x97B4\t0x9F8D\n0x97B5\t0x4FB6\n0x97B6\t0x616E\n0x97B7\t0x65C5\n0x97B8\t0x865C\n0x97B9\t0x4E86\n0x97BA\t0x4EAE\n0x97BB\t0x50DA\n0x97BC\t0x4E21\n0x97BD\t0x51CC\n0x97BE\t0x5BEE\n0x97BF\t0x6599\n0x97C0\t0x6881\n0x97C1\t0x6DBC\n0x97C2\t0x731F\n0x97C3\t0x7642\n0x97C4\t0x77AD\n0x97C5\t0x7A1C\n0x97C6\t0x7CE7\n0x97C7\t0x826F\n0x97C8\t0x8AD2\n0x97C9\t0x907C\n0x97CA\t0x91CF\n0x97CB\t0x9675\n0x97CC\t0x9818\n0x97CD\t0x529B\n0x97CE\t0x7DD1\n0x97CF\t0x502B\n0x97D0\t0x5398\n0x97D1\t0x6797\n0x97D2\t0x6DCB\n0x97D3\t0x71D0\n0x97D4\t0x7433\n0x97D5\t0x81E8\n0x97D6\t0x8F2A\n0x97D7\t0x96A3\n0x97D8\t0x9C57\n0x97D9\t0x9E9F\n0x97DA\t0x7460\n0x97DB\t0x5841\n0x97DC\t0x6D99\n0x97DD\t0x7D2F\n0x97DE\t0x985E\n0x97DF\t0x4EE4\n0x97E0\t0x4F36\n0x97E1\t0x4F8B\n0x97E2\t0x51B7\n0x97E3\t0x52B1\n0x97E4\t0x5DBA\n0x97E5\t0x601C\n0x97E6\t0x73B2\n0x97E7\t0x793C\n0x97E8\t0x82D3\n0x97E9\t0x9234\n0x97EA\t0x96B7\n0x97EB\t0x96F6\n0x97EC\t0x970A\n0x97ED\t0x9E97\n0x97EE\t0x9F62\n0x97EF\t0x66A6\n0x97F0\t0x6B74\n0x97F1\t0x5217\n0x97F2\t0x52A3\n0x97F3\t0x70C8\n0x97F4\t0x88C2\n0x97F5\t0x5EC9\n0x97F6\t0x604B\n0x97F7\t0x6190\n0x97F8\t0x6F23\n0x97F9\t0x7149\n0x97FA\t0x7C3E\n0x97FB\t0x7DF4\n0x97FC\t0x806F\n0x9840\t0x84EE\n0x9841\t0x9023\n0x9842\t0x932C\n0x9843\t0x5442\n0x9844\t0x9B6F\n0x9845\t0x6AD3\n0x9846\t0x7089\n0x9847\t0x8CC2\n0x9848\t0x8DEF\n0x9849\t0x9732\n0x984A\t0x52B4\n0x984B\t0x5A41\n0x984C\t0x5ECA\n0x984D\t0x5F04\n0x984E\t0x6717\n0x984F\t0x697C\n0x9850\t0x6994\n0x9851\t0x6D6A\n0x9852\t0x6F0F\n0x9853\t0x7262\n0x9854\t0x72FC\n0x9855\t0x7BED\n0x9856\t0x8001\n0x9857\t0x807E\n0x9858\t0x874B\n0x9859\t0x90CE\n0x985A\t0x516D\n0x985B\t0x9E93\n0x985C\t0x7984\n0x985D\t0x808B\n0x985E\t0x9332\n0x985F\t0x8AD6\n0x9860\t0x502D\n0x9861\t0x548C\n0x9862\t0x8A71\n0x9863\t0x6B6A\n0x9864\t0x8CC4\n0x9865\t0x8107\n0x9866\t0x60D1\n0x9867\t0x67A0\n0x9868\t0x9DF2\n0x9869\t0x4E99\n0x986A\t0x4E98\n0x986B\t0x9C10\n0x986C\t0x8A6B\n0x986D\t0x85C1\n0x986E\t0x8568\n0x986F\t0x6900\n0x9870\t0x6E7E\n0x9871\t0x7897\n0x9872\t0x8155\n0x9873\t0x20B9F\n0x9874\t0x5B41\n0x9875\t0x5B56\n0x9876\t0x5B7D\n0x9877\t0x5B93\n0x9878\t0x5BD8\n0x9879\t0x5BEC\n0x987A\t0x5C12\n0x987B\t0x5C1E\n0x987C\t0x5C23\n0x987D\t0x5C2B\n0x987E\t0x378D\n0x9880\t0x5C62\n0x9881\t0xFA3B\n0x9882\t0xFA3C\n0x9883\t0x216B4\n0x9884\t0x5C7A\n0x9885\t0x5C8F\n0x9886\t0x5C9F\n0x9887\t0x5CA3\n0x9888\t0x5CAA\n0x9889\t0x5CBA\n0x988A\t0x5CCB\n0x988B\t0x5CD0\n0x988C\t0x5CD2\n0x988D\t0x5CF4\n0x988E\t0x21E34\n0x988F\t0x37E2\n0x9890\t0x5D0D\n0x9891\t0x5D27\n0x9892\t0xFA11\n0x9893\t0x5D46\n0x9894\t0x5D47\n0x9895\t0x5D53\n0x9896\t0x5D4A\n0x9897\t0x5D6D\n0x9898\t0x5D81\n0x9899\t0x5DA0\n0x989A\t0x5DA4\n0x989B\t0x5DA7\n0x989C\t0x5DB8\n0x989D\t0x5DCB\n0x989E\t0x541E\n0x989F\t0x5F0C\n0x98A0\t0x4E10\n0x98A1\t0x4E15\n0x98A2\t0x4E2A\n0x98A3\t0x4E31\n0x98A4\t0x4E36\n0x98A5\t0x4E3C\n0x98A6\t0x4E3F\n0x98A7\t0x4E42\n0x98A8\t0x4E56\n0x98A9\t0x4E58\n0x98AA\t0x4E82\n0x98AB\t0x4E85\n0x98AC\t0x8C6B\n0x98AD\t0x4E8A\n0x98AE\t0x8212\n0x98AF\t0x5F0D\n0x98B0\t0x4E8E\n0x98B1\t0x4E9E\n0x98B2\t0x4E9F\n0x98B3\t0x4EA0\n0x98B4\t0x4EA2\n0x98B5\t0x4EB0\n0x98B6\t0x4EB3\n0x98B7\t0x4EB6\n0x98B8\t0x4ECE\n0x98B9\t0x4ECD\n0x98BA\t0x4EC4\n0x98BB\t0x4EC6\n0x98BC\t0x4EC2\n0x98BD\t0x4ED7\n0x98BE\t0x4EDE\n0x98BF\t0x4EED\n0x98C0\t0x4EDF\n0x98C1\t0x4EF7\n0x98C2\t0x4F09\n0x98C3\t0x4F5A\n0x98C4\t0x4F30\n0x98C5\t0x4F5B\n0x98C6\t0x4F5D\n0x98C7\t0x4F57\n0x98C8\t0x4F47\n0x98C9\t0x4F76\n0x98CA\t0x4F88\n0x98CB\t0x4F8F\n0x98CC\t0x4F98\n0x98CD\t0x4F7B\n0x98CE\t0x4F69\n0x98CF\t0x4F70\n0x98D0\t0x4F91\n0x98D1\t0x4F6F\n0x98D2\t0x4F86\n0x98D3\t0x4F96\n0x98D4\t0x5118\n0x98D5\t0x4FD4\n0x98D6\t0x4FDF\n0x98D7\t0x4FCE\n0x98D8\t0x4FD8\n0x98D9\t0x4FDB\n0x98DA\t0x4FD1\n0x98DB\t0x4FDA\n0x98DC\t0x4FD0\n0x98DD\t0x4FE4\n0x98DE\t0x4FE5\n0x98DF\t0x501A\n0x98E0\t0x5028\n0x98E1\t0x5014\n0x98E2\t0x502A\n0x98E3\t0x5025\n0x98E4\t0x5005\n0x98E5\t0x4F1C\n0x98E6\t0x4FF6\n0x98E7\t0x5021\n0x98E8\t0x5029\n0x98E9\t0x502C\n0x98EA\t0x4FFE\n0x98EB\t0x4FEF\n0x98EC\t0x5011\n0x98ED\t0x5006\n0x98EE\t0x5043\n0x98EF\t0x5047\n0x98F0\t0x6703\n0x98F1\t0x5055\n0x98F2\t0x5050\n0x98F3\t0x5048\n0x98F4\t0x505A\n0x98F5\t0x5056\n0x98F6\t0x506C\n0x98F7\t0x5078\n0x98F8\t0x5080\n0x98F9\t0x509A\n0x98FA\t0x5085\n0x98FB\t0x50B4\n0x98FC\t0x50B2\n0x9940\t0x50C9\n0x9941\t0x50CA\n0x9942\t0x50B3\n0x9943\t0x50C2\n0x9944\t0x50D6\n0x9945\t0x50DE\n0x9946\t0x50E5\n0x9947\t0x50ED\n0x9948\t0x50E3\n0x9949\t0x50EE\n0x994A\t0x50F9\n0x994B\t0x50F5\n0x994C\t0x5109\n0x994D\t0x5101\n0x994E\t0x5102\n0x994F\t0x5116\n0x9950\t0x5115\n0x9951\t0x5114\n0x9952\t0x511A\n0x9953\t0x5121\n0x9954\t0x513A\n0x9955\t0x5137\n0x9956\t0x513C\n0x9957\t0x513B\n0x9958\t0x513F\n0x9959\t0x5140\n0x995A\t0x5152\n0x995B\t0x514C\n0x995C\t0x5154\n0x995D\t0x5162\n0x995E\t0x7AF8\n0x995F\t0x5169\n0x9960\t0x516A\n0x9961\t0x516E\n0x9962\t0x5180\n0x9963\t0x5182\n0x9964\t0x56D8\n0x9965\t0x518C\n0x9966\t0x5189\n0x9967\t0x518F\n0x9968\t0x5191\n0x9969\t0x5193\n0x996A\t0x5195\n0x996B\t0x5196\n0x996C\t0x51A4\n0x996D\t0x51A6\n0x996E\t0x51A2\n0x996F\t0x51A9\n0x9970\t0x51AA\n0x9971\t0x51AB\n0x9972\t0x51B3\n0x9973\t0x51B1\n0x9974\t0x51B2\n0x9975\t0x51B0\n0x9976\t0x51B5\n0x9977\t0x51BD\n0x9978\t0x51C5\n0x9979\t0x51C9\n0x997A\t0x51DB\n0x997B\t0x51E0\n0x997C\t0x8655\n0x997D\t0x51E9\n0x997E\t0x51ED\n0x9980\t0x51F0\n0x9981\t0x51F5\n0x9982\t0x51FE\n0x9983\t0x5204\n0x9984\t0x520B\n0x9985\t0x5214\n0x9986\t0x520E\n0x9987\t0x5227\n0x9988\t0x522A\n0x9989\t0x522E\n0x998A\t0x5233\n0x998B\t0x5239\n0x998C\t0x524F\n0x998D\t0x5244\n0x998E\t0x524B\n0x998F\t0x524C\n0x9990\t0x525E\n0x9991\t0x5254\n0x9992\t0x526A\n0x9993\t0x5274\n0x9994\t0x5269\n0x9995\t0x5273\n0x9996\t0x527F\n0x9997\t0x527D\n0x9998\t0x528D\n0x9999\t0x5294\n0x999A\t0x5292\n0x999B\t0x5271\n0x999C\t0x5288\n0x999D\t0x5291\n0x999E\t0x8FA8\n0x999F\t0x8FA7\n0x99A0\t0x52AC\n0x99A1\t0x52AD\n0x99A2\t0x52BC\n0x99A3\t0x52B5\n0x99A4\t0x52C1\n0x99A5\t0x52CD\n0x99A6\t0x52D7\n0x99A7\t0x52DE\n0x99A8\t0x52E3\n0x99A9\t0x52E6\n0x99AA\t0x98ED\n0x99AB\t0x52E0\n0x99AC\t0x52F3\n0x99AD\t0x52F5\n0x99AE\t0x52F8\n0x99AF\t0x52F9\n0x99B0\t0x5306\n0x99B1\t0x5308\n0x99B2\t0x7538\n0x99B3\t0x530D\n0x99B4\t0x5310\n0x99B5\t0x530F\n0x99B6\t0x5315\n0x99B7\t0x531A\n0x99B8\t0x5323\n0x99B9\t0x532F\n0x99BA\t0x5331\n0x99BB\t0x5333\n0x99BC\t0x5338\n0x99BD\t0x5340\n0x99BE\t0x5346\n0x99BF\t0x5345\n0x99C0\t0x4E17\n0x99C1\t0x5349\n0x99C2\t0x534D\n0x99C3\t0x51D6\n0x99C4\t0x535E\n0x99C5\t0x5369\n0x99C6\t0x536E\n0x99C7\t0x5918\n0x99C8\t0x537B\n0x99C9\t0x5377\n0x99CA\t0x5382\n0x99CB\t0x5396\n0x99CC\t0x53A0\n0x99CD\t0x53A6\n0x99CE\t0x53A5\n0x99CF\t0x53AE\n0x99D0\t0x53B0\n0x99D1\t0x53B6\n0x99D2\t0x53C3\n0x99D3\t0x7C12\n0x99D4\t0x96D9\n0x99D5\t0x53DF\n0x99D6\t0x66FC\n0x99D7\t0x71EE\n0x99D8\t0x53EE\n0x99D9\t0x53E8\n0x99DA\t0x53ED\n0x99DB\t0x53FA\n0x99DC\t0x5401\n0x99DD\t0x543D\n0x99DE\t0x5440\n0x99DF\t0x542C\n0x99E0\t0x542D\n0x99E1\t0x543C\n0x99E2\t0x542E\n0x99E3\t0x5436\n0x99E4\t0x5429\n0x99E5\t0x541D\n0x99E6\t0x544E\n0x99E7\t0x548F\n0x99E8\t0x5475\n0x99E9\t0x548E\n0x99EA\t0x545F\n0x99EB\t0x5471\n0x99EC\t0x5477\n0x99ED\t0x5470\n0x99EE\t0x5492\n0x99EF\t0x547B\n0x99F0\t0x5480\n0x99F1\t0x5476\n0x99F2\t0x5484\n0x99F3\t0x5490\n0x99F4\t0x5486\n0x99F5\t0x54C7\n0x99F6\t0x54A2\n0x99F7\t0x54B8\n0x99F8\t0x54A5\n0x99F9\t0x54AC\n0x99FA\t0x54C4\n0x99FB\t0x54C8\n0x99FC\t0x54A8\n0x9A40\t0x54AB\n0x9A41\t0x54C2\n0x9A42\t0x54A4\n0x9A43\t0x54BE\n0x9A44\t0x54BC\n0x9A45\t0x54D8\n0x9A46\t0x54E5\n0x9A47\t0x54E6\n0x9A48\t0x550F\n0x9A49\t0x5514\n0x9A4A\t0x54FD\n0x9A4B\t0x54EE\n0x9A4C\t0x54ED\n0x9A4D\t0x54FA\n0x9A4E\t0x54E2\n0x9A4F\t0x5539\n0x9A50\t0x5540\n0x9A51\t0x5563\n0x9A52\t0x554C\n0x9A53\t0x552E\n0x9A54\t0x555C\n0x9A55\t0x5545\n0x9A56\t0x5556\n0x9A57\t0x5557\n0x9A58\t0x5538\n0x9A59\t0x5533\n0x9A5A\t0x555D\n0x9A5B\t0x5599\n0x9A5C\t0x5580\n0x9A5D\t0x54AF\n0x9A5E\t0x558A\n0x9A5F\t0x559F\n0x9A60\t0x557B\n0x9A61\t0x557E\n0x9A62\t0x5598\n0x9A63\t0x559E\n0x9A64\t0x55AE\n0x9A65\t0x557C\n0x9A66\t0x5583\n0x9A67\t0x55A9\n0x9A68\t0x5587\n0x9A69\t0x55A8\n0x9A6A\t0x55DA\n0x9A6B\t0x55C5\n0x9A6C\t0x55DF\n0x9A6D\t0x55C4\n0x9A6E\t0x55DC\n0x9A6F\t0x55E4\n0x9A70\t0x55D4\n0x9A71\t0x5614\n0x9A72\t0x55F7\n0x9A73\t0x5616\n0x9A74\t0x55FE\n0x9A75\t0x55FD\n0x9A76\t0x561B\n0x9A77\t0x55F9\n0x9A78\t0x564E\n0x9A79\t0x5650\n0x9A7A\t0x71DF\n0x9A7B\t0x5634\n0x9A7C\t0x5636\n0x9A7D\t0x5632\n0x9A7E\t0x5638\n0x9A80\t0x566B\n0x9A81\t0x5664\n0x9A82\t0x562F\n0x9A83\t0x566C\n0x9A84\t0x566A\n0x9A85\t0x5686\n0x9A86\t0x5680\n0x9A87\t0x568A\n0x9A88\t0x56A0\n0x9A89\t0x5694\n0x9A8A\t0x568F\n0x9A8B\t0x56A5\n0x9A8C\t0x56AE\n0x9A8D\t0x56B6\n0x9A8E\t0x56B4\n0x9A8F\t0x56C2\n0x9A90\t0x56BC\n0x9A91\t0x56C1\n0x9A92\t0x56C3\n0x9A93\t0x56C0\n0x9A94\t0x56C8\n0x9A95\t0x56CE\n0x9A96\t0x56D1\n0x9A97\t0x56D3\n0x9A98\t0x56D7\n0x9A99\t0x56EE\n0x9A9A\t0x56F9\n0x9A9B\t0x5700\n0x9A9C\t0x56FF\n0x9A9D\t0x5704\n0x9A9E\t0x5709\n0x9A9F\t0x5708\n0x9AA0\t0x570B\n0x9AA1\t0x570D\n0x9AA2\t0x5713\n0x9AA3\t0x5718\n0x9AA4\t0x5716\n0x9AA5\t0x55C7\n0x9AA6\t0x571C\n0x9AA7\t0x5726\n0x9AA8\t0x5737\n0x9AA9\t0x5738\n0x9AAA\t0x574E\n0x9AAB\t0x573B\n0x9AAC\t0x5740\n0x9AAD\t0x574F\n0x9AAE\t0x5769\n0x9AAF\t0x57C0\n0x9AB0\t0x5788\n0x9AB1\t0x5761\n0x9AB2\t0x577F\n0x9AB3\t0x5789\n0x9AB4\t0x5793\n0x9AB5\t0x57A0\n0x9AB6\t0x57B3\n0x9AB7\t0x57A4\n0x9AB8\t0x57AA\n0x9AB9\t0x57B0\n0x9ABA\t0x57C3\n0x9ABB\t0x57C6\n0x9ABC\t0x57D4\n0x9ABD\t0x57D2\n0x9ABE\t0x57D3\n0x9ABF\t0x580A\n0x9AC0\t0x57D6\n0x9AC1\t0x57E3\n0x9AC2\t0x580B\n0x9AC3\t0x5819\n0x9AC4\t0x581D\n0x9AC5\t0x5872\n0x9AC6\t0x5821\n0x9AC7\t0x5862\n0x9AC8\t0x584B\n0x9AC9\t0x5870\n0x9ACA\t0x6BC0\n0x9ACB\t0x5852\n0x9ACC\t0x583D\n0x9ACD\t0x5879\n0x9ACE\t0x5885\n0x9ACF\t0x58B9\n0x9AD0\t0x589F\n0x9AD1\t0x58AB\n0x9AD2\t0x58BA\n0x9AD3\t0x58DE\n0x9AD4\t0x58BB\n0x9AD5\t0x58B8\n0x9AD6\t0x58AE\n0x9AD7\t0x58C5\n0x9AD8\t0x58D3\n0x9AD9\t0x58D1\n0x9ADA\t0x58D7\n0x9ADB\t0x58D9\n0x9ADC\t0x58D8\n0x9ADD\t0x58E5\n0x9ADE\t0x58DC\n0x9ADF\t0x58E4\n0x9AE0\t0x58DF\n0x9AE1\t0x58EF\n0x9AE2\t0x58FA\n0x9AE3\t0x58F9\n0x9AE4\t0x58FB\n0x9AE5\t0x58FC\n0x9AE6\t0x58FD\n0x9AE7\t0x5902\n0x9AE8\t0x590A\n0x9AE9\t0x5910\n0x9AEA\t0x591B\n0x9AEB\t0x68A6\n0x9AEC\t0x5925\n0x9AED\t0x592C\n0x9AEE\t0x592D\n0x9AEF\t0x5932\n0x9AF0\t0x5938\n0x9AF1\t0x593E\n0x9AF2\t0x7AD2\n0x9AF3\t0x5955\n0x9AF4\t0x5950\n0x9AF5\t0x594E\n0x9AF6\t0x595A\n0x9AF7\t0x5958\n0x9AF8\t0x5962\n0x9AF9\t0x5960\n0x9AFA\t0x5967\n0x9AFB\t0x596C\n0x9AFC\t0x5969\n0x9B40\t0x5978\n0x9B41\t0x5981\n0x9B42\t0x599D\n0x9B43\t0x4F5E\n0x9B44\t0x4FAB\n0x9B45\t0x59A3\n0x9B46\t0x59B2\n0x9B47\t0x59C6\n0x9B48\t0x59E8\n0x9B49\t0x59DC\n0x9B4A\t0x598D\n0x9B4B\t0x59D9\n0x9B4C\t0x59DA\n0x9B4D\t0x5A25\n0x9B4E\t0x5A1F\n0x9B4F\t0x5A11\n0x9B50\t0x5A1C\n0x9B51\t0x5A09\n0x9B52\t0x5A1A\n0x9B53\t0x5A40\n0x9B54\t0x5A6C\n0x9B55\t0x5A49\n0x9B56\t0x5A35\n0x9B57\t0x5A36\n0x9B58\t0x5A62\n0x9B59\t0x5A6A\n0x9B5A\t0x5A9A\n0x9B5B\t0x5ABC\n0x9B5C\t0x5ABE\n0x9B5D\t0x5ACB\n0x9B5E\t0x5AC2\n0x9B5F\t0x5ABD\n0x9B60\t0x5AE3\n0x9B61\t0x5AD7\n0x9B62\t0x5AE6\n0x9B63\t0x5AE9\n0x9B64\t0x5AD6\n0x9B65\t0x5AFA\n0x9B66\t0x5AFB\n0x9B67\t0x5B0C\n0x9B68\t0x5B0B\n0x9B69\t0x5B16\n0x9B6A\t0x5B32\n0x9B6B\t0x5AD0\n0x9B6C\t0x5B2A\n0x9B6D\t0x5B36\n0x9B6E\t0x5B3E\n0x9B6F\t0x5B43\n0x9B70\t0x5B45\n0x9B71\t0x5B40\n0x9B72\t0x5B51\n0x9B73\t0x5B55\n0x9B74\t0x5B5A\n0x9B75\t0x5B5B\n0x9B76\t0x5B65\n0x9B77\t0x5B69\n0x9B78\t0x5B70\n0x9B79\t0x5B73\n0x9B7A\t0x5B75\n0x9B7B\t0x5B78\n0x9B7C\t0x6588\n0x9B7D\t0x5B7A\n0x9B7E\t0x5B80\n0x9B80\t0x5B83\n0x9B81\t0x5BA6\n0x9B82\t0x5BB8\n0x9B83\t0x5BC3\n0x9B84\t0x5BC7\n0x9B85\t0x5BC9\n0x9B86\t0x5BD4\n0x9B87\t0x5BD0\n0x9B88\t0x5BE4\n0x9B89\t0x5BE6\n0x9B8A\t0x5BE2\n0x9B8B\t0x5BDE\n0x9B8C\t0x5BE5\n0x9B8D\t0x5BEB\n0x9B8E\t0x5BF0\n0x9B8F\t0x5BF6\n0x9B90\t0x5BF3\n0x9B91\t0x5C05\n0x9B92\t0x5C07\n0x9B93\t0x5C08\n0x9B94\t0x5C0D\n0x9B95\t0x5C13\n0x9B96\t0x5C20\n0x9B97\t0x5C22\n0x9B98\t0x5C28\n0x9B99\t0x5C38\n0x9B9A\t0x5C39\n0x9B9B\t0x5C41\n0x9B9C\t0x5C46\n0x9B9D\t0x5C4E\n0x9B9E\t0x5C53\n0x9B9F\t0x5C50\n0x9BA0\t0x5C4F\n0x9BA1\t0x5B71\n0x9BA2\t0x5C6C\n0x9BA3\t0x5C6E\n0x9BA4\t0x4E62\n0x9BA5\t0x5C76\n0x9BA6\t0x5C79\n0x9BA7\t0x5C8C\n0x9BA8\t0x5C91\n0x9BA9\t0x5C94\n0x9BAA\t0x599B\n0x9BAB\t0x5CAB\n0x9BAC\t0x5CBB\n0x9BAD\t0x5CB6\n0x9BAE\t0x5CBC\n0x9BAF\t0x5CB7\n0x9BB0\t0x5CC5\n0x9BB1\t0x5CBE\n0x9BB2\t0x5CC7\n0x9BB3\t0x5CD9\n0x9BB4\t0x5CE9\n0x9BB5\t0x5CFD\n0x9BB6\t0x5CFA\n0x9BB7\t0x5CED\n0x9BB8\t0x5D8C\n0x9BB9\t0x5CEA\n0x9BBA\t0x5D0B\n0x9BBB\t0x5D15\n0x9BBC\t0x5D17\n0x9BBD\t0x5D5C\n0x9BBE\t0x5D1F\n0x9BBF\t0x5D1B\n0x9BC0\t0x5D11\n0x9BC1\t0x5D14\n0x9BC2\t0x5D22\n0x9BC3\t0x5D1A\n0x9BC4\t0x5D19\n0x9BC5\t0x5D18\n0x9BC6\t0x5D4C\n0x9BC7\t0x5D52\n0x9BC8\t0x5D4E\n0x9BC9\t0x5D4B\n0x9BCA\t0x5D6C\n0x9BCB\t0x5D73\n0x9BCC\t0x5D76\n0x9BCD\t0x5D87\n0x9BCE\t0x5D84\n0x9BCF\t0x5D82\n0x9BD0\t0x5DA2\n0x9BD1\t0x5D9D\n0x9BD2\t0x5DAC\n0x9BD3\t0x5DAE\n0x9BD4\t0x5DBD\n0x9BD5\t0x5D90\n0x9BD6\t0x5DB7\n0x9BD7\t0x5DBC\n0x9BD8\t0x5DC9\n0x9BD9\t0x5DCD\n0x9BDA\t0x5DD3\n0x9BDB\t0x5DD2\n0x9BDC\t0x5DD6\n0x9BDD\t0x5DDB\n0x9BDE\t0x5DEB\n0x9BDF\t0x5DF2\n0x9BE0\t0x5DF5\n0x9BE1\t0x5E0B\n0x9BE2\t0x5E1A\n0x9BE3\t0x5E19\n0x9BE4\t0x5E11\n0x9BE5\t0x5E1B\n0x9BE6\t0x5E36\n0x9BE7\t0x5E37\n0x9BE8\t0x5E44\n0x9BE9\t0x5E43\n0x9BEA\t0x5E40\n0x9BEB\t0x5E4E\n0x9BEC\t0x5E57\n0x9BED\t0x5E54\n0x9BEE\t0x5E5F\n0x9BEF\t0x5E62\n0x9BF0\t0x5E64\n0x9BF1\t0x5E47\n0x9BF2\t0x5E75\n0x9BF3\t0x5E76\n0x9BF4\t0x5E7A\n0x9BF5\t0x9EBC\n0x9BF6\t0x5E7F\n0x9BF7\t0x5EA0\n0x9BF8\t0x5EC1\n0x9BF9\t0x5EC2\n0x9BFA\t0x5EC8\n0x9BFB\t0x5ED0\n0x9BFC\t0x5ECF\n0x9C40\t0x5ED6\n0x9C41\t0x5EE3\n0x9C42\t0x5EDD\n0x9C43\t0x5EDA\n0x9C44\t0x5EDB\n0x9C45\t0x5EE2\n0x9C46\t0x5EE1\n0x9C47\t0x5EE8\n0x9C48\t0x5EE9\n0x9C49\t0x5EEC\n0x9C4A\t0x5EF1\n0x9C4B\t0x5EF3\n0x9C4C\t0x5EF0\n0x9C4D\t0x5EF4\n0x9C4E\t0x5EF8\n0x9C4F\t0x5EFE\n0x9C50\t0x5F03\n0x9C51\t0x5F09\n0x9C52\t0x5F5D\n0x9C53\t0x5F5C\n0x9C54\t0x5F0B\n0x9C55\t0x5F11\n0x9C56\t0x5F16\n0x9C57\t0x5F29\n0x9C58\t0x5F2D\n0x9C59\t0x5F38\n0x9C5A\t0x5F41\n0x9C5B\t0x5F48\n0x9C5C\t0x5F4C\n0x9C5D\t0x5F4E\n0x9C5E\t0x5F2F\n0x9C5F\t0x5F51\n0x9C60\t0x5F56\n0x9C61\t0x5F57\n0x9C62\t0x5F59\n0x9C63\t0x5F61\n0x9C64\t0x5F6D\n0x9C65\t0x5F73\n0x9C66\t0x5F77\n0x9C67\t0x5F83\n0x9C68\t0x5F82\n0x9C69\t0x5F7F\n0x9C6A\t0x5F8A\n0x9C6B\t0x5F88\n0x9C6C\t0x5F91\n0x9C6D\t0x5F87\n0x9C6E\t0x5F9E\n0x9C6F\t0x5F99\n0x9C70\t0x5F98\n0x9C71\t0x5FA0\n0x9C72\t0x5FA8\n0x9C73\t0x5FAD\n0x9C74\t0x5FBC\n0x9C75\t0x5FD6\n0x9C76\t0x5FFB\n0x9C77\t0x5FE4\n0x9C78\t0x5FF8\n0x9C79\t0x5FF1\n0x9C7A\t0x5FDD\n0x9C7B\t0x60B3\n0x9C7C\t0x5FFF\n0x9C7D\t0x6021\n0x9C7E\t0x6060\n0x9C80\t0x6019\n0x9C81\t0x6010\n0x9C82\t0x6029\n0x9C83\t0x600E\n0x9C84\t0x6031\n0x9C85\t0x601B\n0x9C86\t0x6015\n0x9C87\t0x602B\n0x9C88\t0x6026\n0x9C89\t0x600F\n0x9C8A\t0x603A\n0x9C8B\t0x605A\n0x9C8C\t0x6041\n0x9C8D\t0x606A\n0x9C8E\t0x6077\n0x9C8F\t0x605F\n0x9C90\t0x604A\n0x9C91\t0x6046\n0x9C92\t0x604D\n0x9C93\t0x6063\n0x9C94\t0x6043\n0x9C95\t0x6064\n0x9C96\t0x6042\n0x9C97\t0x606C\n0x9C98\t0x606B\n0x9C99\t0x6059\n0x9C9A\t0x6081\n0x9C9B\t0x608D\n0x9C9C\t0x60E7\n0x9C9D\t0x6083\n0x9C9E\t0x609A\n0x9C9F\t0x6084\n0x9CA0\t0x609B\n0x9CA1\t0x6096\n0x9CA2\t0x6097\n0x9CA3\t0x6092\n0x9CA4\t0x60A7\n0x9CA5\t0x608B\n0x9CA6\t0x60E1\n0x9CA7\t0x60B8\n0x9CA8\t0x60E0\n0x9CA9\t0x60D3\n0x9CAA\t0x60B4\n0x9CAB\t0x5FF0\n0x9CAC\t0x60BD\n0x9CAD\t0x60C6\n0x9CAE\t0x60B5\n0x9CAF\t0x60D8\n0x9CB0\t0x614D\n0x9CB1\t0x6115\n0x9CB2\t0x6106\n0x9CB3\t0x60F6\n0x9CB4\t0x60F7\n0x9CB5\t0x6100\n0x9CB6\t0x60F4\n0x9CB7\t0x60FA\n0x9CB8\t0x6103\n0x9CB9\t0x6121\n0x9CBA\t0x60FB\n0x9CBB\t0x60F1\n0x9CBC\t0x610D\n0x9CBD\t0x610E\n0x9CBE\t0x6147\n0x9CBF\t0x613E\n0x9CC0\t0x6128\n0x9CC1\t0x6127\n0x9CC2\t0x614A\n0x9CC3\t0x613F\n0x9CC4\t0x613C\n0x9CC5\t0x612C\n0x9CC6\t0x6134\n0x9CC7\t0x613D\n0x9CC8\t0x6142\n0x9CC9\t0x6144\n0x9CCA\t0x6173\n0x9CCB\t0x6177\n0x9CCC\t0x6158\n0x9CCD\t0x6159\n0x9CCE\t0x615A\n0x9CCF\t0x616B\n0x9CD0\t0x6174\n0x9CD1\t0x616F\n0x9CD2\t0x6165\n0x9CD3\t0x6171\n0x9CD4\t0x615F\n0x9CD5\t0x615D\n0x9CD6\t0x6153\n0x9CD7\t0x6175\n0x9CD8\t0x6199\n0x9CD9\t0x6196\n0x9CDA\t0x6187\n0x9CDB\t0x61AC\n0x9CDC\t0x6194\n0x9CDD\t0x619A\n0x9CDE\t0x618A\n0x9CDF\t0x6191\n0x9CE0\t0x61AB\n0x9CE1\t0x61AE\n0x9CE2\t0x61CC\n0x9CE3\t0x61CA\n0x9CE4\t0x61C9\n0x9CE5\t0x61F7\n0x9CE6\t0x61C8\n0x9CE7\t0x61C3\n0x9CE8\t0x61C6\n0x9CE9\t0x61BA\n0x9CEA\t0x61CB\n0x9CEB\t0x7F79\n0x9CEC\t0x61CD\n0x9CED\t0x61E6\n0x9CEE\t0x61E3\n0x9CEF\t0x61F6\n0x9CF0\t0x61FA\n0x9CF1\t0x61F4\n0x9CF2\t0x61FF\n0x9CF3\t0x61FD\n0x9CF4\t0x61FC\n0x9CF5\t0x61FE\n0x9CF6\t0x6200\n0x9CF7\t0x6208\n0x9CF8\t0x6209\n0x9CF9\t0x620D\n0x9CFA\t0x620C\n0x9CFB\t0x6214\n0x9CFC\t0x621B\n0x9D40\t0x621E\n0x9D41\t0x6221\n0x9D42\t0x622A\n0x9D43\t0x622E\n0x9D44\t0x6230\n0x9D45\t0x6232\n0x9D46\t0x6233\n0x9D47\t0x6241\n0x9D48\t0x624E\n0x9D49\t0x625E\n0x9D4A\t0x6263\n0x9D4B\t0x625B\n0x9D4C\t0x6260\n0x9D4D\t0x6268\n0x9D4E\t0x627C\n0x9D4F\t0x6282\n0x9D50\t0x6289\n0x9D51\t0x627E\n0x9D52\t0x6292\n0x9D53\t0x6293\n0x9D54\t0x6296\n0x9D55\t0x62D4\n0x9D56\t0x6283\n0x9D57\t0x6294\n0x9D58\t0x62D7\n0x9D59\t0x62D1\n0x9D5A\t0x62BB\n0x9D5B\t0x62CF\n0x9D5C\t0x62FF\n0x9D5D\t0x62C6\n0x9D5E\t0x64D4\n0x9D5F\t0x62C8\n0x9D60\t0x62DC\n0x9D61\t0x62CC\n0x9D62\t0x62CA\n0x9D63\t0x62C2\n0x9D64\t0x62C7\n0x9D65\t0x629B\n0x9D66\t0x62C9\n0x9D67\t0x630C\n0x9D68\t0x62EE\n0x9D69\t0x62F1\n0x9D6A\t0x6327\n0x9D6B\t0x6302\n0x9D6C\t0x6308\n0x9D6D\t0x62EF\n0x9D6E\t0x62F5\n0x9D6F\t0x6350\n0x9D70\t0x633E\n0x9D71\t0x634D\n0x9D72\t0x641C\n0x9D73\t0x634F\n0x9D74\t0x6396\n0x9D75\t0x638E\n0x9D76\t0x6380\n0x9D77\t0x63AB\n0x9D78\t0x6376\n0x9D79\t0x63A3\n0x9D7A\t0x638F\n0x9D7B\t0x6389\n0x9D7C\t0x639F\n0x9D7D\t0x63B5\n0x9D7E\t0x636B\n0x9D80\t0x6369\n0x9D81\t0x63BE\n0x9D82\t0x63E9\n0x9D83\t0x63C0\n0x9D84\t0x63C6\n0x9D85\t0x63E3\n0x9D86\t0x63C9\n0x9D87\t0x63D2\n0x9D88\t0x63F6\n0x9D89\t0x63C4\n0x9D8A\t0x6416\n0x9D8B\t0x6434\n0x9D8C\t0x6406\n0x9D8D\t0x6413\n0x9D8E\t0x6426\n0x9D8F\t0x6436\n0x9D90\t0x651D\n0x9D91\t0x6417\n0x9D92\t0x6428\n0x9D93\t0x640F\n0x9D94\t0x6467\n0x9D95\t0x646F\n0x9D96\t0x6476\n0x9D97\t0x644E\n0x9D98\t0x652A\n0x9D99\t0x6495\n0x9D9A\t0x6493\n0x9D9B\t0x64A5\n0x9D9C\t0x64A9\n0x9D9D\t0x6488\n0x9D9E\t0x64BC\n0x9D9F\t0x64DA\n0x9DA0\t0x64D2\n0x9DA1\t0x64C5\n0x9DA2\t0x64C7\n0x9DA3\t0x64BB\n0x9DA4\t0x64D8\n0x9DA5\t0x64C2\n0x9DA6\t0x64F1\n0x9DA7\t0x64E7\n0x9DA8\t0x8209\n0x9DA9\t0x64E0\n0x9DAA\t0x64E1\n0x9DAB\t0x62AC\n0x9DAC\t0x64E3\n0x9DAD\t0x64EF\n0x9DAE\t0x652C\n0x9DAF\t0x64F6\n0x9DB0\t0x64F4\n0x9DB1\t0x64F2\n0x9DB2\t0x64FA\n0x9DB3\t0x6500\n0x9DB4\t0x64FD\n0x9DB5\t0x6518\n0x9DB6\t0x651C\n0x9DB7\t0x6505\n0x9DB8\t0x6524\n0x9DB9\t0x6523\n0x9DBA\t0x652B\n0x9DBB\t0x6534\n0x9DBC\t0x6535\n0x9DBD\t0x6537\n0x9DBE\t0x6536\n0x9DBF\t0x6538\n0x9DC0\t0x754B\n0x9DC1\t0x6548\n0x9DC2\t0x6556\n0x9DC3\t0x6555\n0x9DC4\t0x654D\n0x9DC5\t0x6558\n0x9DC6\t0x655E\n0x9DC7\t0x655D\n0x9DC8\t0x6572\n0x9DC9\t0x6578\n0x9DCA\t0x6582\n0x9DCB\t0x6583\n0x9DCC\t0x8B8A\n0x9DCD\t0x659B\n0x9DCE\t0x659F\n0x9DCF\t0x65AB\n0x9DD0\t0x65B7\n0x9DD1\t0x65C3\n0x9DD2\t0x65C6\n0x9DD3\t0x65C1\n0x9DD4\t0x65C4\n0x9DD5\t0x65CC\n0x9DD6\t0x65D2\n0x9DD7\t0x65DB\n0x9DD8\t0x65D9\n0x9DD9\t0x65E0\n0x9DDA\t0x65E1\n0x9DDB\t0x65F1\n0x9DDC\t0x6772\n0x9DDD\t0x660A\n0x9DDE\t0x6603\n0x9DDF\t0x65FB\n0x9DE0\t0x6773\n0x9DE1\t0x6635\n0x9DE2\t0x6636\n0x9DE3\t0x6634\n0x9DE4\t0x661C\n0x9DE5\t0x664F\n0x9DE6\t0x6644\n0x9DE7\t0x6649\n0x9DE8\t0x6641\n0x9DE9\t0x665E\n0x9DEA\t0x665D\n0x9DEB\t0x6664\n0x9DEC\t0x6667\n0x9DED\t0x6668\n0x9DEE\t0x665F\n0x9DEF\t0x6662\n0x9DF0\t0x6670\n0x9DF1\t0x6683\n0x9DF2\t0x6688\n0x9DF3\t0x668E\n0x9DF4\t0x6689\n0x9DF5\t0x6684\n0x9DF6\t0x6698\n0x9DF7\t0x669D\n0x9DF8\t0x66C1\n0x9DF9\t0x66B9\n0x9DFA\t0x66C9\n0x9DFB\t0x66BE\n0x9DFC\t0x66BC\n0x9E40\t0x66C4\n0x9E41\t0x66B8\n0x9E42\t0x66D6\n0x9E43\t0x66DA\n0x9E44\t0x66E0\n0x9E45\t0x663F\n0x9E46\t0x66E6\n0x9E47\t0x66E9\n0x9E48\t0x66F0\n0x9E49\t0x66F5\n0x9E4A\t0x66F7\n0x9E4B\t0x670F\n0x9E4C\t0x6716\n0x9E4D\t0x671E\n0x9E4E\t0x6726\n0x9E4F\t0x6727\n0x9E50\t0x9738\n0x9E51\t0x672E\n0x9E52\t0x673F\n0x9E53\t0x6736\n0x9E54\t0x6741\n0x9E55\t0x6738\n0x9E56\t0x6737\n0x9E57\t0x6746\n0x9E58\t0x675E\n0x9E59\t0x6760\n0x9E5A\t0x6759\n0x9E5B\t0x6763\n0x9E5C\t0x6764\n0x9E5D\t0x6789\n0x9E5E\t0x6770\n0x9E5F\t0x67A9\n0x9E60\t0x677C\n0x9E61\t0x676A\n0x9E62\t0x678C\n0x9E63\t0x678B\n0x9E64\t0x67A6\n0x9E65\t0x67A1\n0x9E66\t0x6785\n0x9E67\t0x67B7\n0x9E68\t0x67EF\n0x9E69\t0x67B4\n0x9E6A\t0x67EC\n0x9E6B\t0x67B3\n0x9E6C\t0x67E9\n0x9E6D\t0x67B8\n0x9E6E\t0x67E4\n0x9E6F\t0x67DE\n0x9E70\t0x67DD\n0x9E71\t0x67E2\n0x9E72\t0x67EE\n0x9E73\t0x67B9\n0x9E74\t0x67CE\n0x9E75\t0x67C6\n0x9E76\t0x67E7\n0x9E77\t0x6A9C\n0x9E78\t0x681E\n0x9E79\t0x6846\n0x9E7A\t0x6829\n0x9E7B\t0x6840\n0x9E7C\t0x684D\n0x9E7D\t0x6832\n0x9E7E\t0x684E\n0x9E80\t0x68B3\n0x9E81\t0x682B\n0x9E82\t0x6859\n0x9E83\t0x6863\n0x9E84\t0x6877\n0x9E85\t0x687F\n0x9E86\t0x689F\n0x9E87\t0x688F\n0x9E88\t0x68AD\n0x9E89\t0x6894\n0x9E8A\t0x689D\n0x9E8B\t0x689B\n0x9E8C\t0x6883\n0x9E8D\t0x6AAE\n0x9E8E\t0x68B9\n0x9E8F\t0x6874\n0x9E90\t0x68B5\n0x9E91\t0x68A0\n0x9E92\t0x68BA\n0x9E93\t0x690F\n0x9E94\t0x688D\n0x9E95\t0x687E\n0x9E96\t0x6901\n0x9E97\t0x68CA\n0x9E98\t0x6908\n0x9E99\t0x68D8\n0x9E9A\t0x6922\n0x9E9B\t0x6926\n0x9E9C\t0x68E1\n0x9E9D\t0x690C\n0x9E9E\t0x68CD\n0x9E9F\t0x68D4\n0x9EA0\t0x68E7\n0x9EA1\t0x68D5\n0x9EA2\t0x6936\n0x9EA3\t0x6912\n0x9EA4\t0x6904\n0x9EA5\t0x68D7\n0x9EA6\t0x68E3\n0x9EA7\t0x6925\n0x9EA8\t0x68F9\n0x9EA9\t0x68E0\n0x9EAA\t0x68EF\n0x9EAB\t0x6928\n0x9EAC\t0x692A\n0x9EAD\t0x691A\n0x9EAE\t0x6923\n0x9EAF\t0x6921\n0x9EB0\t0x68C6\n0x9EB1\t0x6979\n0x9EB2\t0x6977\n0x9EB3\t0x695C\n0x9EB4\t0x6978\n0x9EB5\t0x696B\n0x9EB6\t0x6954\n0x9EB7\t0x697E\n0x9EB8\t0x696E\n0x9EB9\t0x6939\n0x9EBA\t0x6974\n0x9EBB\t0x693D\n0x9EBC\t0x6959\n0x9EBD\t0x6930\n0x9EBE\t0x6961\n0x9EBF\t0x695E\n0x9EC0\t0x695D\n0x9EC1\t0x6981\n0x9EC2\t0x696A\n0x9EC3\t0x69B2\n0x9EC4\t0x69AE\n0x9EC5\t0x69D0\n0x9EC6\t0x69BF\n0x9EC7\t0x69C1\n0x9EC8\t0x69D3\n0x9EC9\t0x69BE\n0x9ECA\t0x69CE\n0x9ECB\t0x5BE8\n0x9ECC\t0x69CA\n0x9ECD\t0x69DD\n0x9ECE\t0x69BB\n0x9ECF\t0x69C3\n0x9ED0\t0x69A7\n0x9ED1\t0x6A2E\n0x9ED2\t0x6991\n0x9ED3\t0x69A0\n0x9ED4\t0x699C\n0x9ED5\t0x6995\n0x9ED6\t0x69B4\n0x9ED7\t0x69DE\n0x9ED8\t0x69E8\n0x9ED9\t0x6A02\n0x9EDA\t0x6A1B\n0x9EDB\t0x69FF\n0x9EDC\t0x6B0A\n0x9EDD\t0x69F9\n0x9EDE\t0x69F2\n0x9EDF\t0x69E7\n0x9EE0\t0x6A05\n0x9EE1\t0x69B1\n0x9EE2\t0x6A1E\n0x9EE3\t0x69ED\n0x9EE4\t0x6A14\n0x9EE5\t0x69EB\n0x9EE6\t0x6A0A\n0x9EE7\t0x6A12\n0x9EE8\t0x6AC1\n0x9EE9\t0x6A23\n0x9EEA\t0x6A13\n0x9EEB\t0x6A44\n0x9EEC\t0x6A0C\n0x9EED\t0x6A72\n0x9EEE\t0x6A36\n0x9EEF\t0x6A78\n0x9EF0\t0x6A47\n0x9EF1\t0x6A62\n0x9EF2\t0x6A59\n0x9EF3\t0x6A66\n0x9EF4\t0x6A48\n0x9EF5\t0x6A38\n0x9EF6\t0x6A22\n0x9EF7\t0x6A90\n0x9EF8\t0x6A8D\n0x9EF9\t0x6AA0\n0x9EFA\t0x6A84\n0x9EFB\t0x6AA2\n0x9EFC\t0x6AA3\n0x9F40\t0x6A97\n0x9F41\t0x8617\n0x9F42\t0x6ABB\n0x9F43\t0x6AC3\n0x9F44\t0x6AC2\n0x9F45\t0x6AB8\n0x9F46\t0x6AB3\n0x9F47\t0x6AAC\n0x9F48\t0x6ADE\n0x9F49\t0x6AD1\n0x9F4A\t0x6ADF\n0x9F4B\t0x6AAA\n0x9F4C\t0x6ADA\n0x9F4D\t0x6AEA\n0x9F4E\t0x6AFB\n0x9F4F\t0x6B05\n0x9F50\t0x8616\n0x9F51\t0x6AFA\n0x9F52\t0x6B12\n0x9F53\t0x6B16\n0x9F54\t0x9B31\n0x9F55\t0x6B1F\n0x9F56\t0x6B38\n0x9F57\t0x6B37\n0x9F58\t0x76DC\n0x9F59\t0x6B39\n0x9F5A\t0x98EE\n0x9F5B\t0x6B47\n0x9F5C\t0x6B43\n0x9F5D\t0x6B49\n0x9F5E\t0x6B50\n0x9F5F\t0x6B59\n0x9F60\t0x6B54\n0x9F61\t0x6B5B\n0x9F62\t0x6B5F\n0x9F63\t0x6B61\n0x9F64\t0x6B78\n0x9F65\t0x6B79\n0x9F66\t0x6B7F\n0x9F67\t0x6B80\n0x9F68\t0x6B84\n0x9F69\t0x6B83\n0x9F6A\t0x6B8D\n0x9F6B\t0x6B98\n0x9F6C\t0x6B95\n0x9F6D\t0x6B9E\n0x9F6E\t0x6BA4\n0x9F6F\t0x6BAA\n0x9F70\t0x6BAB\n0x9F71\t0x6BAF\n0x9F72\t0x6BB2\n0x9F73\t0x6BB1\n0x9F74\t0x6BB3\n0x9F75\t0x6BB7\n0x9F76\t0x6BBC\n0x9F77\t0x6BC6\n0x9F78\t0x6BCB\n0x9F79\t0x6BD3\n0x9F7A\t0x6BDF\n0x9F7B\t0x6BEC\n0x9F7C\t0x6BEB\n0x9F7D\t0x6BF3\n0x9F7E\t0x6BEF\n0x9F80\t0x9EBE\n0x9F81\t0x6C08\n0x9F82\t0x6C13\n0x9F83\t0x6C14\n0x9F84\t0x6C1B\n0x9F85\t0x6C24\n0x9F86\t0x6C23\n0x9F87\t0x6C5E\n0x9F88\t0x6C55\n0x9F89\t0x6C62\n0x9F8A\t0x6C6A\n0x9F8B\t0x6C82\n0x9F8C\t0x6C8D\n0x9F8D\t0x6C9A\n0x9F8E\t0x6C81\n0x9F8F\t0x6C9B\n0x9F90\t0x6C7E\n0x9F91\t0x6C68\n0x9F92\t0x6C73\n0x9F93\t0x6C92\n0x9F94\t0x6C90\n0x9F95\t0x6CC4\n0x9F96\t0x6CF1\n0x9F97\t0x6CD3\n0x9F98\t0x6CBD\n0x9F99\t0x6CD7\n0x9F9A\t0x6CC5\n0x9F9B\t0x6CDD\n0x9F9C\t0x6CAE\n0x9F9D\t0x6CB1\n0x9F9E\t0x6CBE\n0x9F9F\t0x6CBA\n0x9FA0\t0x6CDB\n0x9FA1\t0x6CEF\n0x9FA2\t0x6CD9\n0x9FA3\t0x6CEA\n0x9FA4\t0x6D1F\n0x9FA5\t0x884D\n0x9FA6\t0x6D36\n0x9FA7\t0x6D2B\n0x9FA8\t0x6D3D\n0x9FA9\t0x6D38\n0x9FAA\t0x6D19\n0x9FAB\t0x6D35\n0x9FAC\t0x6D33\n0x9FAD\t0x6D12\n0x9FAE\t0x6D0C\n0x9FAF\t0x6D63\n0x9FB0\t0x6D93\n0x9FB1\t0x6D64\n0x9FB2\t0x6D5A\n0x9FB3\t0x6D79\n0x9FB4\t0x6D59\n0x9FB5\t0x6D8E\n0x9FB6\t0x6D95\n0x9FB7\t0x6FE4\n0x9FB8\t0x6D85\n0x9FB9\t0x6DF9\n0x9FBA\t0x6E15\n0x9FBB\t0x6E0A\n0x9FBC\t0x6DB5\n0x9FBD\t0x6DC7\n0x9FBE\t0x6DE6\n0x9FBF\t0x6DB8\n0x9FC0\t0x6DC6\n0x9FC1\t0x6DEC\n0x9FC2\t0x6DDE\n0x9FC3\t0x6DCC\n0x9FC4\t0x6DE8\n0x9FC5\t0x6DD2\n0x9FC6\t0x6DC5\n0x9FC7\t0x6DFA\n0x9FC8\t0x6DD9\n0x9FC9\t0x6DE4\n0x9FCA\t0x6DD5\n0x9FCB\t0x6DEA\n0x9FCC\t0x6DEE\n0x9FCD\t0x6E2D\n0x9FCE\t0x6E6E\n0x9FCF\t0x6E2E\n0x9FD0\t0x6E19\n0x9FD1\t0x6E72\n0x9FD2\t0x6E5F\n0x9FD3\t0x6E3E\n0x9FD4\t0x6E23\n0x9FD5\t0x6E6B\n0x9FD6\t0x6E2B\n0x9FD7\t0x6E76\n0x9FD8\t0x6E4D\n0x9FD9\t0x6E1F\n0x9FDA\t0x6E43\n0x9FDB\t0x6E3A\n0x9FDC\t0x6E4E\n0x9FDD\t0x6E24\n0x9FDE\t0x6EFF\n0x9FDF\t0x6E1D\n0x9FE0\t0x6E38\n0x9FE1\t0x6E82\n0x9FE2\t0x6EAA\n0x9FE3\t0x6E98\n0x9FE4\t0x6EC9\n0x9FE5\t0x6EB7\n0x9FE6\t0x6ED3\n0x9FE7\t0x6EBD\n0x9FE8\t0x6EAF\n0x9FE9\t0x6EC4\n0x9FEA\t0x6EB2\n0x9FEB\t0x6ED4\n0x9FEC\t0x6ED5\n0x9FED\t0x6E8F\n0x9FEE\t0x6EA5\n0x9FEF\t0x6EC2\n0x9FF0\t0x6E9F\n0x9FF1\t0x6F41\n0x9FF2\t0x6F11\n0x9FF3\t0x704C\n0x9FF4\t0x6EEC\n0x9FF5\t0x6EF8\n0x9FF6\t0x6EFE\n0x9FF7\t0x6F3F\n0x9FF8\t0x6EF2\n0x9FF9\t0x6F31\n0x9FFA\t0x6EEF\n0x9FFB\t0x6F32\n0x9FFC\t0x6ECC\n0xA1\t0xFF61\n0xA2\t0xFF62\n0xA3\t0xFF63\n0xA4\t0xFF64\n0xA5\t0xFF65\n0xA6\t0xFF66\n0xA7\t0xFF67\n0xA8\t0xFF68\n0xA9\t0xFF69\n0xAA\t0xFF6A\n0xAB\t0xFF6B\n0xAC\t0xFF6C\n0xAD\t0xFF6D\n0xAE\t0xFF6E\n0xAF\t0xFF6F\n0xB0\t0xFF70\n0xB1\t0xFF71\n0xB2\t0xFF72\n0xB3\t0xFF73\n0xB4\t0xFF74\n0xB5\t0xFF75\n0xB6\t0xFF76\n0xB7\t0xFF77\n0xB8\t0xFF78\n0xB9\t0xFF79\n0xBA\t0xFF7A\n0xBB\t0xFF7B\n0xBC\t0xFF7C\n0xBD\t0xFF7D\n0xBE\t0xFF7E\n0xBF\t0xFF7F\n0xC0\t0xFF80\n0xC1\t0xFF81\n0xC2\t0xFF82\n0xC3\t0xFF83\n0xC4\t0xFF84\n0xC5\t0xFF85\n0xC6\t0xFF86\n0xC7\t0xFF87\n0xC8\t0xFF88\n0xC9\t0xFF89\n0xCA\t0xFF8A\n0xCB\t0xFF8B\n0xCC\t0xFF8C\n0xCD\t0xFF8D\n0xCE\t0xFF8E\n0xCF\t0xFF8F\n0xD0\t0xFF90\n0xD1\t0xFF91\n0xD2\t0xFF92\n0xD3\t0xFF93\n0xD4\t0xFF94\n0xD5\t0xFF95\n0xD6\t0xFF96\n0xD7\t0xFF97\n0xD8\t0xFF98\n0xD9\t0xFF99\n0xDA\t0xFF9A\n0xDB\t0xFF9B\n0xDC\t0xFF9C\n0xDD\t0xFF9D\n0xDE\t0xFF9E\n0xDF\t0xFF9F\n0xE040\t0x6F3E\n0xE041\t0x6F13\n0xE042\t0x6EF7\n0xE043\t0x6F86\n0xE044\t0x6F7A\n0xE045\t0x6F78\n0xE046\t0x6F81\n0xE047\t0x6F80\n0xE048\t0x6F6F\n0xE049\t0x6F5B\n0xE04A\t0x6FF3\n0xE04B\t0x6F6D\n0xE04C\t0x6F82\n0xE04D\t0x6F7C\n0xE04E\t0x6F58\n0xE04F\t0x6F8E\n0xE050\t0x6F91\n0xE051\t0x6FC2\n0xE052\t0x6F66\n0xE053\t0x6FB3\n0xE054\t0x6FA3\n0xE055\t0x6FA1\n0xE056\t0x6FA4\n0xE057\t0x6FB9\n0xE058\t0x6FC6\n0xE059\t0x6FAA\n0xE05A\t0x6FDF\n0xE05B\t0x6FD5\n0xE05C\t0x6FEC\n0xE05D\t0x6FD4\n0xE05E\t0x6FD8\n0xE05F\t0x6FF1\n0xE060\t0x6FEE\n0xE061\t0x6FDB\n0xE062\t0x7009\n0xE063\t0x700B\n0xE064\t0x6FFA\n0xE065\t0x7011\n0xE066\t0x7001\n0xE067\t0x700F\n0xE068\t0x6FFE\n0xE069\t0x701B\n0xE06A\t0x701A\n0xE06B\t0x6F74\n0xE06C\t0x701D\n0xE06D\t0x7018\n0xE06E\t0x701F\n0xE06F\t0x7030\n0xE070\t0x703E\n0xE071\t0x7032\n0xE072\t0x7051\n0xE073\t0x7063\n0xE074\t0x7099\n0xE075\t0x7092\n0xE076\t0x70AF\n0xE077\t0x70F1\n0xE078\t0x70AC\n0xE079\t0x70B8\n0xE07A\t0x70B3\n0xE07B\t0x70AE\n0xE07C\t0x70DF\n0xE07D\t0x70CB\n0xE07E\t0x70DD\n0xE080\t0x70D9\n0xE081\t0x7109\n0xE082\t0x70FD\n0xE083\t0x711C\n0xE084\t0x7119\n0xE085\t0x7165\n0xE086\t0x7155\n0xE087\t0x7188\n0xE088\t0x7166\n0xE089\t0x7162\n0xE08A\t0x714C\n0xE08B\t0x7156\n0xE08C\t0x716C\n0xE08D\t0x718F\n0xE08E\t0x71FB\n0xE08F\t0x7184\n0xE090\t0x7195\n0xE091\t0x71A8\n0xE092\t0x71AC\n0xE093\t0x71D7\n0xE094\t0x71B9\n0xE095\t0x71BE\n0xE096\t0x71D2\n0xE097\t0x71C9\n0xE098\t0x71D4\n0xE099\t0x71CE\n0xE09A\t0x71E0\n0xE09B\t0x71EC\n0xE09C\t0x71E7\n0xE09D\t0x71F5\n0xE09E\t0x71FC\n0xE09F\t0x71F9\n0xE0A0\t0x71FF\n0xE0A1\t0x720D\n0xE0A2\t0x7210\n0xE0A3\t0x721B\n0xE0A4\t0x7228\n0xE0A5\t0x722D\n0xE0A6\t0x722C\n0xE0A7\t0x7230\n0xE0A8\t0x7232\n0xE0A9\t0x723B\n0xE0AA\t0x723C\n0xE0AB\t0x723F\n0xE0AC\t0x7240\n0xE0AD\t0x7246\n0xE0AE\t0x724B\n0xE0AF\t0x7258\n0xE0B0\t0x7274\n0xE0B1\t0x727E\n0xE0B2\t0x7282\n0xE0B3\t0x7281\n0xE0B4\t0x7287\n0xE0B5\t0x7292\n0xE0B6\t0x7296\n0xE0B7\t0x72A2\n0xE0B8\t0x72A7\n0xE0B9\t0x72B9\n0xE0BA\t0x72B2\n0xE0BB\t0x72C3\n0xE0BC\t0x72C6\n0xE0BD\t0x72C4\n0xE0BE\t0x72CE\n0xE0BF\t0x72D2\n0xE0C0\t0x72E2\n0xE0C1\t0x72E0\n0xE0C2\t0x72E1\n0xE0C3\t0x72F9\n0xE0C4\t0x72F7\n0xE0C5\t0x500F\n0xE0C6\t0x7317\n0xE0C7\t0x730A\n0xE0C8\t0x731C\n0xE0C9\t0x7316\n0xE0CA\t0x731D\n0xE0CB\t0x7334\n0xE0CC\t0x732F\n0xE0CD\t0x7329\n0xE0CE\t0x7325\n0xE0CF\t0x733E\n0xE0D0\t0x734E\n0xE0D1\t0x734F\n0xE0D2\t0x9ED8\n0xE0D3\t0x7357\n0xE0D4\t0x736A\n0xE0D5\t0x7368\n0xE0D6\t0x7370\n0xE0D7\t0x7378\n0xE0D8\t0x7375\n0xE0D9\t0x737B\n0xE0DA\t0x737A\n0xE0DB\t0x73C8\n0xE0DC\t0x73B3\n0xE0DD\t0x73CE\n0xE0DE\t0x73BB\n0xE0DF\t0x73C0\n0xE0E0\t0x73E5\n0xE0E1\t0x73EE\n0xE0E2\t0x73DE\n0xE0E3\t0x74A2\n0xE0E4\t0x7405\n0xE0E5\t0x746F\n0xE0E6\t0x7425\n0xE0E7\t0x73F8\n0xE0E8\t0x7432\n0xE0E9\t0x743A\n0xE0EA\t0x7455\n0xE0EB\t0x743F\n0xE0EC\t0x745F\n0xE0ED\t0x7459\n0xE0EE\t0x7441\n0xE0EF\t0x745C\n0xE0F0\t0x7469\n0xE0F1\t0x7470\n0xE0F2\t0x7463\n0xE0F3\t0x746A\n0xE0F4\t0x7476\n0xE0F5\t0x747E\n0xE0F6\t0x748B\n0xE0F7\t0x749E\n0xE0F8\t0x74A7\n0xE0F9\t0x74CA\n0xE0FA\t0x74CF\n0xE0FB\t0x74D4\n0xE0FC\t0x73F1\n0xE140\t0x74E0\n0xE141\t0x74E3\n0xE142\t0x74E7\n0xE143\t0x74E9\n0xE144\t0x74EE\n0xE145\t0x74F2\n0xE146\t0x74F0\n0xE147\t0x74F1\n0xE148\t0x74F8\n0xE149\t0x74F7\n0xE14A\t0x7504\n0xE14B\t0x7503\n0xE14C\t0x7505\n0xE14D\t0x750C\n0xE14E\t0x750E\n0xE14F\t0x750D\n0xE150\t0x7515\n0xE151\t0x7513\n0xE152\t0x751E\n0xE153\t0x7526\n0xE154\t0x752C\n0xE155\t0x753C\n0xE156\t0x7544\n0xE157\t0x754D\n0xE158\t0x754A\n0xE159\t0x7549\n0xE15A\t0x755B\n0xE15B\t0x7546\n0xE15C\t0x755A\n0xE15D\t0x7569\n0xE15E\t0x7564\n0xE15F\t0x7567\n0xE160\t0x756B\n0xE161\t0x756D\n0xE162\t0x7578\n0xE163\t0x7576\n0xE164\t0x7586\n0xE165\t0x7587\n0xE166\t0x7574\n0xE167\t0x758A\n0xE168\t0x7589\n0xE169\t0x7582\n0xE16A\t0x7594\n0xE16B\t0x759A\n0xE16C\t0x759D\n0xE16D\t0x75A5\n0xE16E\t0x75A3\n0xE16F\t0x75C2\n0xE170\t0x75B3\n0xE171\t0x75C3\n0xE172\t0x75B5\n0xE173\t0x75BD\n0xE174\t0x75B8\n0xE175\t0x75BC\n0xE176\t0x75B1\n0xE177\t0x75CD\n0xE178\t0x75CA\n0xE179\t0x75D2\n0xE17A\t0x75D9\n0xE17B\t0x75E3\n0xE17C\t0x75DE\n0xE17D\t0x75FE\n0xE17E\t0x75FF\n0xE180\t0x75FC\n0xE181\t0x7601\n0xE182\t0x75F0\n0xE183\t0x75FA\n0xE184\t0x75F2\n0xE185\t0x75F3\n0xE186\t0x760B\n0xE187\t0x760D\n0xE188\t0x7609\n0xE189\t0x761F\n0xE18A\t0x7627\n0xE18B\t0x7620\n0xE18C\t0x7621\n0xE18D\t0x7622\n0xE18E\t0x7624\n0xE18F\t0x7634\n0xE190\t0x7630\n0xE191\t0x763B\n0xE192\t0x7647\n0xE193\t0x7648\n0xE194\t0x7646\n0xE195\t0x765C\n0xE196\t0x7658\n0xE197\t0x7661\n0xE198\t0x7662\n0xE199\t0x7668\n0xE19A\t0x7669\n0xE19B\t0x766A\n0xE19C\t0x7667\n0xE19D\t0x766C\n0xE19E\t0x7670\n0xE19F\t0x7672\n0xE1A0\t0x7676\n0xE1A1\t0x7678\n0xE1A2\t0x767C\n0xE1A3\t0x7680\n0xE1A4\t0x7683\n0xE1A5\t0x7688\n0xE1A6\t0x768B\n0xE1A7\t0x768E\n0xE1A8\t0x7696\n0xE1A9\t0x7693\n0xE1AA\t0x7699\n0xE1AB\t0x769A\n0xE1AC\t0x76B0\n0xE1AD\t0x76B4\n0xE1AE\t0x76B8\n0xE1AF\t0x76B9\n0xE1B0\t0x76BA\n0xE1B1\t0x76C2\n0xE1B2\t0x76CD\n0xE1B3\t0x76D6\n0xE1B4\t0x76D2\n0xE1B5\t0x76DE\n0xE1B6\t0x76E1\n0xE1B7\t0x76E5\n0xE1B8\t0x76E7\n0xE1B9\t0x76EA\n0xE1BA\t0x862F\n0xE1BB\t0x76FB\n0xE1BC\t0x7708\n0xE1BD\t0x7707\n0xE1BE\t0x7704\n0xE1BF\t0x7729\n0xE1C0\t0x7724\n0xE1C1\t0x771E\n0xE1C2\t0x7725\n0xE1C3\t0x7726\n0xE1C4\t0x771B\n0xE1C5\t0x7737\n0xE1C6\t0x7738\n0xE1C7\t0x7747\n0xE1C8\t0x775A\n0xE1C9\t0x7768\n0xE1CA\t0x776B\n0xE1CB\t0x775B\n0xE1CC\t0x7765\n0xE1CD\t0x777F\n0xE1CE\t0x777E\n0xE1CF\t0x7779\n0xE1D0\t0x778E\n0xE1D1\t0x778B\n0xE1D2\t0x7791\n0xE1D3\t0x77A0\n0xE1D4\t0x779E\n0xE1D5\t0x77B0\n0xE1D6\t0x77B6\n0xE1D7\t0x77B9\n0xE1D8\t0x77BF\n0xE1D9\t0x77BC\n0xE1DA\t0x77BD\n0xE1DB\t0x77BB\n0xE1DC\t0x77C7\n0xE1DD\t0x77CD\n0xE1DE\t0x77D7\n0xE1DF\t0x77DA\n0xE1E0\t0x77DC\n0xE1E1\t0x77E3\n0xE1E2\t0x77EE\n0xE1E3\t0x77FC\n0xE1E4\t0x780C\n0xE1E5\t0x7812\n0xE1E6\t0x7926\n0xE1E7\t0x7820\n0xE1E8\t0x792A\n0xE1E9\t0x7845\n0xE1EA\t0x788E\n0xE1EB\t0x7874\n0xE1EC\t0x7886\n0xE1ED\t0x787C\n0xE1EE\t0x789A\n0xE1EF\t0x788C\n0xE1F0\t0x78A3\n0xE1F1\t0x78B5\n0xE1F2\t0x78AA\n0xE1F3\t0x78AF\n0xE1F4\t0x78D1\n0xE1F5\t0x78C6\n0xE1F6\t0x78CB\n0xE1F7\t0x78D4\n0xE1F8\t0x78BE\n0xE1F9\t0x78BC\n0xE1FA\t0x78C5\n0xE1FB\t0x78CA\n0xE1FC\t0x78EC\n0xE240\t0x78E7\n0xE241\t0x78DA\n0xE242\t0x78FD\n0xE243\t0x78F4\n0xE244\t0x7907\n0xE245\t0x7912\n0xE246\t0x7911\n0xE247\t0x7919\n0xE248\t0x792C\n0xE249\t0x792B\n0xE24A\t0x7940\n0xE24B\t0x7960\n0xE24C\t0x7957\n0xE24D\t0x795F\n0xE24E\t0x795A\n0xE24F\t0x7955\n0xE250\t0x7953\n0xE251\t0x797A\n0xE252\t0x797F\n0xE253\t0x798A\n0xE254\t0x799D\n0xE255\t0x79A7\n0xE256\t0x9F4B\n0xE257\t0x79AA\n0xE258\t0x79AE\n0xE259\t0x79B3\n0xE25A\t0x79B9\n0xE25B\t0x79BA\n0xE25C\t0x79C9\n0xE25D\t0x79D5\n0xE25E\t0x79E7\n0xE25F\t0x79EC\n0xE260\t0x79E1\n0xE261\t0x79E3\n0xE262\t0x7A08\n0xE263\t0x7A0D\n0xE264\t0x7A18\n0xE265\t0x7A19\n0xE266\t0x7A20\n0xE267\t0x7A1F\n0xE268\t0x7980\n0xE269\t0x7A31\n0xE26A\t0x7A3B\n0xE26B\t0x7A3E\n0xE26C\t0x7A37\n0xE26D\t0x7A43\n0xE26E\t0x7A57\n0xE26F\t0x7A49\n0xE270\t0x7A61\n0xE271\t0x7A62\n0xE272\t0x7A69\n0xE273\t0x9F9D\n0xE274\t0x7A70\n0xE275\t0x7A79\n0xE276\t0x7A7D\n0xE277\t0x7A88\n0xE278\t0x7A97\n0xE279\t0x7A95\n0xE27A\t0x7A98\n0xE27B\t0x7A96\n0xE27C\t0x7AA9\n0xE27D\t0x7AC8\n0xE27E\t0x7AB0\n0xE280\t0x7AB6\n0xE281\t0x7AC5\n0xE282\t0x7AC4\n0xE283\t0x7ABF\n0xE284\t0x9083\n0xE285\t0x7AC7\n0xE286\t0x7ACA\n0xE287\t0x7ACD\n0xE288\t0x7ACF\n0xE289\t0x7AD5\n0xE28A\t0x7AD3\n0xE28B\t0x7AD9\n0xE28C\t0x7ADA\n0xE28D\t0x7ADD\n0xE28E\t0x7AE1\n0xE28F\t0x7AE2\n0xE290\t0x7AE6\n0xE291\t0x7AED\n0xE292\t0x7AF0\n0xE293\t0x7B02\n0xE294\t0x7B0F\n0xE295\t0x7B0A\n0xE296\t0x7B06\n0xE297\t0x7B33\n0xE298\t0x7B18\n0xE299\t0x7B19\n0xE29A\t0x7B1E\n0xE29B\t0x7B35\n0xE29C\t0x7B28\n0xE29D\t0x7B36\n0xE29E\t0x7B50\n0xE29F\t0x7B7A\n0xE2A0\t0x7B04\n0xE2A1\t0x7B4D\n0xE2A2\t0x7B0B\n0xE2A3\t0x7B4C\n0xE2A4\t0x7B45\n0xE2A5\t0x7B75\n0xE2A6\t0x7B65\n0xE2A7\t0x7B74\n0xE2A8\t0x7B67\n0xE2A9\t0x7B70\n0xE2AA\t0x7B71\n0xE2AB\t0x7B6C\n0xE2AC\t0x7B6E\n0xE2AD\t0x7B9D\n0xE2AE\t0x7B98\n0xE2AF\t0x7B9F\n0xE2B0\t0x7B8D\n0xE2B1\t0x7B9C\n0xE2B2\t0x7B9A\n0xE2B3\t0x7B8B\n0xE2B4\t0x7B92\n0xE2B5\t0x7B8F\n0xE2B6\t0x7B5D\n0xE2B7\t0x7B99\n0xE2B8\t0x7BCB\n0xE2B9\t0x7BC1\n0xE2BA\t0x7BCC\n0xE2BB\t0x7BCF\n0xE2BC\t0x7BB4\n0xE2BD\t0x7BC6\n0xE2BE\t0x7BDD\n0xE2BF\t0x7BE9\n0xE2C0\t0x7C11\n0xE2C1\t0x7C14\n0xE2C2\t0x7BE6\n0xE2C3\t0x7BE5\n0xE2C4\t0x7C60\n0xE2C5\t0x7C00\n0xE2C6\t0x7C07\n0xE2C7\t0x7C13\n0xE2C8\t0x7BF3\n0xE2C9\t0x7BF7\n0xE2CA\t0x7C17\n0xE2CB\t0x7C0D\n0xE2CC\t0x7BF6\n0xE2CD\t0x7C23\n0xE2CE\t0x7C27\n0xE2CF\t0x7C2A\n0xE2D0\t0x7C1F\n0xE2D1\t0x7C37\n0xE2D2\t0x7C2B\n0xE2D3\t0x7C3D\n0xE2D4\t0x7C4C\n0xE2D5\t0x7C43\n0xE2D6\t0x7C54\n0xE2D7\t0x7C4F\n0xE2D8\t0x7C40\n0xE2D9\t0x7C50\n0xE2DA\t0x7C58\n0xE2DB\t0x7C5F\n0xE2DC\t0x7C64\n0xE2DD\t0x7C56\n0xE2DE\t0x7C65\n0xE2DF\t0x7C6C\n0xE2E0\t0x7C75\n0xE2E1\t0x7C83\n0xE2E2\t0x7C90\n0xE2E3\t0x7CA4\n0xE2E4\t0x7CAD\n0xE2E5\t0x7CA2\n0xE2E6\t0x7CAB\n0xE2E7\t0x7CA1\n0xE2E8\t0x7CA8\n0xE2E9\t0x7CB3\n0xE2EA\t0x7CB2\n0xE2EB\t0x7CB1\n0xE2EC\t0x7CAE\n0xE2ED\t0x7CB9\n0xE2EE\t0x7CBD\n0xE2EF\t0x7CC0\n0xE2F0\t0x7CC5\n0xE2F1\t0x7CC2\n0xE2F2\t0x7CD8\n0xE2F3\t0x7CD2\n0xE2F4\t0x7CDC\n0xE2F5\t0x7CE2\n0xE2F6\t0x9B3B\n0xE2F7\t0x7CEF\n0xE2F8\t0x7CF2\n0xE2F9\t0x7CF4\n0xE2FA\t0x7CF6\n0xE2FB\t0x7CFA\n0xE2FC\t0x7D06\n0xE340\t0x7D02\n0xE341\t0x7D1C\n0xE342\t0x7D15\n0xE343\t0x7D0A\n0xE344\t0x7D45\n0xE345\t0x7D4B\n0xE346\t0x7D2E\n0xE347\t0x7D32\n0xE348\t0x7D3F\n0xE349\t0x7D35\n0xE34A\t0x7D46\n0xE34B\t0x7D73\n0xE34C\t0x7D56\n0xE34D\t0x7D4E\n0xE34E\t0x7D72\n0xE34F\t0x7D68\n0xE350\t0x7D6E\n0xE351\t0x7D4F\n0xE352\t0x7D63\n0xE353\t0x7D93\n0xE354\t0x7D89\n0xE355\t0x7D5B\n0xE356\t0x7D8F\n0xE357\t0x7D7D\n0xE358\t0x7D9B\n0xE359\t0x7DBA\n0xE35A\t0x7DAE\n0xE35B\t0x7DA3\n0xE35C\t0x7DB5\n0xE35D\t0x7DC7\n0xE35E\t0x7DBD\n0xE35F\t0x7DAB\n0xE360\t0x7E3D\n0xE361\t0x7DA2\n0xE362\t0x7DAF\n0xE363\t0x7DDC\n0xE364\t0x7DB8\n0xE365\t0x7D9F\n0xE366\t0x7DB0\n0xE367\t0x7DD8\n0xE368\t0x7DDD\n0xE369\t0x7DE4\n0xE36A\t0x7DDE\n0xE36B\t0x7DFB\n0xE36C\t0x7DF2\n0xE36D\t0x7DE1\n0xE36E\t0x7E05\n0xE36F\t0x7E0A\n0xE370\t0x7E23\n0xE371\t0x7E21\n0xE372\t0x7E12\n0xE373\t0x7E31\n0xE374\t0x7E1F\n0xE375\t0x7E09\n0xE376\t0x7E0B\n0xE377\t0x7E22\n0xE378\t0x7E46\n0xE379\t0x7E66\n0xE37A\t0x7E3B\n0xE37B\t0x7E35\n0xE37C\t0x7E39\n0xE37D\t0x7E43\n0xE37E\t0x7E37\n0xE380\t0x7E32\n0xE381\t0x7E3A\n0xE382\t0x7E67\n0xE383\t0x7E5D\n0xE384\t0x7E56\n0xE385\t0x7E5E\n0xE386\t0x7E59\n0xE387\t0x7E5A\n0xE388\t0x7E79\n0xE389\t0x7E6A\n0xE38A\t0x7E69\n0xE38B\t0x7E7C\n0xE38C\t0x7E7B\n0xE38D\t0x7E83\n0xE38E\t0x7DD5\n0xE38F\t0x7E7D\n0xE390\t0x8FAE\n0xE391\t0x7E7F\n0xE392\t0x7E88\n0xE393\t0x7E89\n0xE394\t0x7E8C\n0xE395\t0x7E92\n0xE396\t0x7E90\n0xE397\t0x7E93\n0xE398\t0x7E94\n0xE399\t0x7E96\n0xE39A\t0x7E8E\n0xE39B\t0x7E9B\n0xE39C\t0x7E9C\n0xE39D\t0x7F38\n0xE39E\t0x7F3A\n0xE39F\t0x7F45\n0xE3A0\t0x7F4C\n0xE3A1\t0x7F4D\n0xE3A2\t0x7F4E\n0xE3A3\t0x7F50\n0xE3A4\t0x7F51\n0xE3A5\t0x7F55\n0xE3A6\t0x7F54\n0xE3A7\t0x7F58\n0xE3A8\t0x7F5F\n0xE3A9\t0x7F60\n0xE3AA\t0x7F68\n0xE3AB\t0x7F69\n0xE3AC\t0x7F67\n0xE3AD\t0x7F78\n0xE3AE\t0x7F82\n0xE3AF\t0x7F86\n0xE3B0\t0x7F83\n0xE3B1\t0x7F88\n0xE3B2\t0x7F87\n0xE3B3\t0x7F8C\n0xE3B4\t0x7F94\n0xE3B5\t0x7F9E\n0xE3B6\t0x7F9D\n0xE3B7\t0x7F9A\n0xE3B8\t0x7FA3\n0xE3B9\t0x7FAF\n0xE3BA\t0x7FB2\n0xE3BB\t0x7FB9\n0xE3BC\t0x7FAE\n0xE3BD\t0x7FB6\n0xE3BE\t0x7FB8\n0xE3BF\t0x8B71\n0xE3C0\t0x7FC5\n0xE3C1\t0x7FC6\n0xE3C2\t0x7FCA\n0xE3C3\t0x7FD5\n0xE3C4\t0x7FD4\n0xE3C5\t0x7FE1\n0xE3C6\t0x7FE6\n0xE3C7\t0x7FE9\n0xE3C8\t0x7FF3\n0xE3C9\t0x7FF9\n0xE3CA\t0x98DC\n0xE3CB\t0x8006\n0xE3CC\t0x8004\n0xE3CD\t0x800B\n0xE3CE\t0x8012\n0xE3CF\t0x8018\n0xE3D0\t0x8019\n0xE3D1\t0x801C\n0xE3D2\t0x8021\n0xE3D3\t0x8028\n0xE3D4\t0x803F\n0xE3D5\t0x803B\n0xE3D6\t0x804A\n0xE3D7\t0x8046\n0xE3D8\t0x8052\n0xE3D9\t0x8058\n0xE3DA\t0x805A\n0xE3DB\t0x805F\n0xE3DC\t0x8062\n0xE3DD\t0x8068\n0xE3DE\t0x8073\n0xE3DF\t0x8072\n0xE3E0\t0x8070\n0xE3E1\t0x8076\n0xE3E2\t0x8079\n0xE3E3\t0x807D\n0xE3E4\t0x807F\n0xE3E5\t0x8084\n0xE3E6\t0x8086\n0xE3E7\t0x8085\n0xE3E8\t0x809B\n0xE3E9\t0x8093\n0xE3EA\t0x809A\n0xE3EB\t0x80AD\n0xE3EC\t0x5190\n0xE3ED\t0x80AC\n0xE3EE\t0x80DB\n0xE3EF\t0x80E5\n0xE3F0\t0x80D9\n0xE3F1\t0x80DD\n0xE3F2\t0x80C4\n0xE3F3\t0x80DA\n0xE3F4\t0x80D6\n0xE3F5\t0x8109\n0xE3F6\t0x80EF\n0xE3F7\t0x80F1\n0xE3F8\t0x811B\n0xE3F9\t0x8129\n0xE3FA\t0x8123\n0xE3FB\t0x812F\n0xE3FC\t0x814B\n0xE440\t0x968B\n0xE441\t0x8146\n0xE442\t0x813E\n0xE443\t0x8153\n0xE444\t0x8151\n0xE445\t0x80FC\n0xE446\t0x8171\n0xE447\t0x816E\n0xE448\t0x8165\n0xE449\t0x8166\n0xE44A\t0x8174\n0xE44B\t0x8183\n0xE44C\t0x8188\n0xE44D\t0x818A\n0xE44E\t0x8180\n0xE44F\t0x8182\n0xE450\t0x81A0\n0xE451\t0x8195\n0xE452\t0x81A4\n0xE453\t0x81A3\n0xE454\t0x815F\n0xE455\t0x8193\n0xE456\t0x81A9\n0xE457\t0x81B0\n0xE458\t0x81B5\n0xE459\t0x81BE\n0xE45A\t0x81B8\n0xE45B\t0x81BD\n0xE45C\t0x81C0\n0xE45D\t0x81C2\n0xE45E\t0x81BA\n0xE45F\t0x81C9\n0xE460\t0x81CD\n0xE461\t0x81D1\n0xE462\t0x81D9\n0xE463\t0x81D8\n0xE464\t0x81C8\n0xE465\t0x81DA\n0xE466\t0x81DF\n0xE467\t0x81E0\n0xE468\t0x81E7\n0xE469\t0x81FA\n0xE46A\t0x81FB\n0xE46B\t0x81FE\n0xE46C\t0x8201\n0xE46D\t0x8202\n0xE46E\t0x8205\n0xE46F\t0x8207\n0xE470\t0x820A\n0xE471\t0x820D\n0xE472\t0x8210\n0xE473\t0x8216\n0xE474\t0x8229\n0xE475\t0x822B\n0xE476\t0x8238\n0xE477\t0x8233\n0xE478\t0x8240\n0xE479\t0x8259\n0xE47A\t0x8258\n0xE47B\t0x825D\n0xE47C\t0x825A\n0xE47D\t0x825F\n0xE47E\t0x8264\n0xE480\t0x8262\n0xE481\t0x8268\n0xE482\t0x826A\n0xE483\t0x826B\n0xE484\t0x822E\n0xE485\t0x8271\n0xE486\t0x8277\n0xE487\t0x8278\n0xE488\t0x827E\n0xE489\t0x828D\n0xE48A\t0x8292\n0xE48B\t0x82AB\n0xE48C\t0x829F\n0xE48D\t0x82BB\n0xE48E\t0x82AC\n0xE48F\t0x82E1\n0xE490\t0x82E3\n0xE491\t0x82DF\n0xE492\t0x82D2\n0xE493\t0x82F4\n0xE494\t0x82F3\n0xE495\t0x82FA\n0xE496\t0x8393\n0xE497\t0x8303\n0xE498\t0x82FB\n0xE499\t0x82F9\n0xE49A\t0x82DE\n0xE49B\t0x8306\n0xE49C\t0x82DC\n0xE49D\t0x8309\n0xE49E\t0x82D9\n0xE49F\t0x8335\n0xE4A0\t0x8334\n0xE4A1\t0x8316\n0xE4A2\t0x8332\n0xE4A3\t0x8331\n0xE4A4\t0x8340\n0xE4A5\t0x8339\n0xE4A6\t0x8350\n0xE4A7\t0x8345\n0xE4A8\t0x832F\n0xE4A9\t0x832B\n0xE4AA\t0x8317\n0xE4AB\t0x8318\n0xE4AC\t0x8385\n0xE4AD\t0x839A\n0xE4AE\t0x83AA\n0xE4AF\t0x839F\n0xE4B0\t0x83A2\n0xE4B1\t0x8396\n0xE4B2\t0x8323\n0xE4B3\t0x838E\n0xE4B4\t0x8387\n0xE4B5\t0x838A\n0xE4B6\t0x837C\n0xE4B7\t0x83B5\n0xE4B8\t0x8373\n0xE4B9\t0x8375\n0xE4BA\t0x83A0\n0xE4BB\t0x8389\n0xE4BC\t0x83A8\n0xE4BD\t0x83F4\n0xE4BE\t0x8413\n0xE4BF\t0x83EB\n0xE4C0\t0x83CE\n0xE4C1\t0x83FD\n0xE4C2\t0x8403\n0xE4C3\t0x83D8\n0xE4C4\t0x840B\n0xE4C5\t0x83C1\n0xE4C6\t0x83F7\n0xE4C7\t0x8407\n0xE4C8\t0x83E0\n0xE4C9\t0x83F2\n0xE4CA\t0x840D\n0xE4CB\t0x8422\n0xE4CC\t0x8420\n0xE4CD\t0x83BD\n0xE4CE\t0x8438\n0xE4CF\t0x8506\n0xE4D0\t0x83FB\n0xE4D1\t0x846D\n0xE4D2\t0x842A\n0xE4D3\t0x843C\n0xE4D4\t0x855A\n0xE4D5\t0x8484\n0xE4D6\t0x8477\n0xE4D7\t0x846B\n0xE4D8\t0x84AD\n0xE4D9\t0x846E\n0xE4DA\t0x8482\n0xE4DB\t0x8469\n0xE4DC\t0x8446\n0xE4DD\t0x842C\n0xE4DE\t0x846F\n0xE4DF\t0x8479\n0xE4E0\t0x8435\n0xE4E1\t0x84CA\n0xE4E2\t0x8462\n0xE4E3\t0x84B9\n0xE4E4\t0x84BF\n0xE4E5\t0x849F\n0xE4E6\t0x84D9\n0xE4E7\t0x84CD\n0xE4E8\t0x84BB\n0xE4E9\t0x84DA\n0xE4EA\t0x84D0\n0xE4EB\t0x84C1\n0xE4EC\t0x84C6\n0xE4ED\t0x84D6\n0xE4EE\t0x84A1\n0xE4EF\t0x8521\n0xE4F0\t0x84FF\n0xE4F1\t0x84F4\n0xE4F2\t0x8517\n0xE4F3\t0x8518\n0xE4F4\t0x852C\n0xE4F5\t0x851F\n0xE4F6\t0x8515\n0xE4F7\t0x8514\n0xE4F8\t0x84FC\n0xE4F9\t0x8540\n0xE4FA\t0x8563\n0xE4FB\t0x8558\n0xE4FC\t0x8548\n0xE540\t0x8541\n0xE541\t0x8602\n0xE542\t0x854B\n0xE543\t0x8555\n0xE544\t0x8580\n0xE545\t0x85A4\n0xE546\t0x8588\n0xE547\t0x8591\n0xE548\t0x858A\n0xE549\t0x85A8\n0xE54A\t0x856D\n0xE54B\t0x8594\n0xE54C\t0x859B\n0xE54D\t0x85EA\n0xE54E\t0x8587\n0xE54F\t0x859C\n0xE550\t0x8577\n0xE551\t0x857E\n0xE552\t0x8590\n0xE553\t0x85C9\n0xE554\t0x85BA\n0xE555\t0x85CF\n0xE556\t0x85B9\n0xE557\t0x85D0\n0xE558\t0x85D5\n0xE559\t0x85DD\n0xE55A\t0x85E5\n0xE55B\t0x85DC\n0xE55C\t0x85F9\n0xE55D\t0x860A\n0xE55E\t0x8613\n0xE55F\t0x860B\n0xE560\t0x85FE\n0xE561\t0x85FA\n0xE562\t0x8606\n0xE563\t0x8622\n0xE564\t0x861A\n0xE565\t0x8630\n0xE566\t0x863F\n0xE567\t0x864D\n0xE568\t0x4E55\n0xE569\t0x8654\n0xE56A\t0x865F\n0xE56B\t0x8667\n0xE56C\t0x8671\n0xE56D\t0x8693\n0xE56E\t0x86A3\n0xE56F\t0x86A9\n0xE570\t0x86AA\n0xE571\t0x868B\n0xE572\t0x868C\n0xE573\t0x86B6\n0xE574\t0x86AF\n0xE575\t0x86C4\n0xE576\t0x86C6\n0xE577\t0x86B0\n0xE578\t0x86C9\n0xE579\t0x8823\n0xE57A\t0x86AB\n0xE57B\t0x86D4\n0xE57C\t0x86DE\n0xE57D\t0x86E9\n0xE57E\t0x86EC\n0xE580\t0x86DF\n0xE581\t0x86DB\n0xE582\t0x86EF\n0xE583\t0x8712\n0xE584\t0x8706\n0xE585\t0x8708\n0xE586\t0x8700\n0xE587\t0x8703\n0xE588\t0x86FB\n0xE589\t0x8711\n0xE58A\t0x8709\n0xE58B\t0x870D\n0xE58C\t0x86F9\n0xE58D\t0x870A\n0xE58E\t0x8734\n0xE58F\t0x873F\n0xE590\t0x8737\n0xE591\t0x873B\n0xE592\t0x8725\n0xE593\t0x8729\n0xE594\t0x871A\n0xE595\t0x8760\n0xE596\t0x875F\n0xE597\t0x8778\n0xE598\t0x874C\n0xE599\t0x874E\n0xE59A\t0x8774\n0xE59B\t0x8757\n0xE59C\t0x8768\n0xE59D\t0x876E\n0xE59E\t0x8759\n0xE59F\t0x8753\n0xE5A0\t0x8763\n0xE5A1\t0x876A\n0xE5A2\t0x8805\n0xE5A3\t0x87A2\n0xE5A4\t0x879F\n0xE5A5\t0x8782\n0xE5A6\t0x87AF\n0xE5A7\t0x87CB\n0xE5A8\t0x87BD\n0xE5A9\t0x87C0\n0xE5AA\t0x87D0\n0xE5AB\t0x96D6\n0xE5AC\t0x87AB\n0xE5AD\t0x87C4\n0xE5AE\t0x87B3\n0xE5AF\t0x87C7\n0xE5B0\t0x87C6\n0xE5B1\t0x87BB\n0xE5B2\t0x87EF\n0xE5B3\t0x87F2\n0xE5B4\t0x87E0\n0xE5B5\t0x880F\n0xE5B6\t0x880D\n0xE5B7\t0x87FE\n0xE5B8\t0x87F6\n0xE5B9\t0x87F7\n0xE5BA\t0x880E\n0xE5BB\t0x87D2\n0xE5BC\t0x8811\n0xE5BD\t0x8816\n0xE5BE\t0x8815\n0xE5BF\t0x8822\n0xE5C0\t0x8821\n0xE5C1\t0x8831\n0xE5C2\t0x8836\n0xE5C3\t0x8839\n0xE5C4\t0x8827\n0xE5C5\t0x883B\n0xE5C6\t0x8844\n0xE5C7\t0x8842\n0xE5C8\t0x8852\n0xE5C9\t0x8859\n0xE5CA\t0x885E\n0xE5CB\t0x8862\n0xE5CC\t0x886B\n0xE5CD\t0x8881\n0xE5CE\t0x887E\n0xE5CF\t0x889E\n0xE5D0\t0x8875\n0xE5D1\t0x887D\n0xE5D2\t0x88B5\n0xE5D3\t0x8872\n0xE5D4\t0x8882\n0xE5D5\t0x8897\n0xE5D6\t0x8892\n0xE5D7\t0x88AE\n0xE5D8\t0x8899\n0xE5D9\t0x88A2\n0xE5DA\t0x888D\n0xE5DB\t0x88A4\n0xE5DC\t0x88B0\n0xE5DD\t0x88BF\n0xE5DE\t0x88B1\n0xE5DF\t0x88C3\n0xE5E0\t0x88C4\n0xE5E1\t0x88D4\n0xE5E2\t0x88D8\n0xE5E3\t0x88D9\n0xE5E4\t0x88DD\n0xE5E5\t0x88F9\n0xE5E6\t0x8902\n0xE5E7\t0x88FC\n0xE5E8\t0x88F4\n0xE5E9\t0x88E8\n0xE5EA\t0x88F2\n0xE5EB\t0x8904\n0xE5EC\t0x890C\n0xE5ED\t0x890A\n0xE5EE\t0x8913\n0xE5EF\t0x8943\n0xE5F0\t0x891E\n0xE5F1\t0x8925\n0xE5F2\t0x892A\n0xE5F3\t0x892B\n0xE5F4\t0x8941\n0xE5F5\t0x8944\n0xE5F6\t0x893B\n0xE5F7\t0x8936\n0xE5F8\t0x8938\n0xE5F9\t0x894C\n0xE5FA\t0x891D\n0xE5FB\t0x8960\n0xE5FC\t0x895E\n0xE640\t0x8966\n0xE641\t0x8964\n0xE642\t0x896D\n0xE643\t0x896A\n0xE644\t0x896F\n0xE645\t0x8974\n0xE646\t0x8977\n0xE647\t0x897E\n0xE648\t0x8983\n0xE649\t0x8988\n0xE64A\t0x898A\n0xE64B\t0x8993\n0xE64C\t0x8998\n0xE64D\t0x89A1\n0xE64E\t0x89A9\n0xE64F\t0x89A6\n0xE650\t0x89AC\n0xE651\t0x89AF\n0xE652\t0x89B2\n0xE653\t0x89BA\n0xE654\t0x89BD\n0xE655\t0x89BF\n0xE656\t0x89C0\n0xE657\t0x89DA\n0xE658\t0x89DC\n0xE659\t0x89DD\n0xE65A\t0x89E7\n0xE65B\t0x89F4\n0xE65C\t0x89F8\n0xE65D\t0x8A03\n0xE65E\t0x8A16\n0xE65F\t0x8A10\n0xE660\t0x8A0C\n0xE661\t0x8A1B\n0xE662\t0x8A1D\n0xE663\t0x8A25\n0xE664\t0x8A36\n0xE665\t0x8A41\n0xE666\t0x8A5B\n0xE667\t0x8A52\n0xE668\t0x8A46\n0xE669\t0x8A48\n0xE66A\t0x8A7C\n0xE66B\t0x8A6D\n0xE66C\t0x8A6C\n0xE66D\t0x8A62\n0xE66E\t0x8A85\n0xE66F\t0x8A82\n0xE670\t0x8A84\n0xE671\t0x8AA8\n0xE672\t0x8AA1\n0xE673\t0x8A91\n0xE674\t0x8AA5\n0xE675\t0x8AA6\n0xE676\t0x8A9A\n0xE677\t0x8AA3\n0xE678\t0x8AC4\n0xE679\t0x8ACD\n0xE67A\t0x8AC2\n0xE67B\t0x8ADA\n0xE67C\t0x8AEB\n0xE67D\t0x8AF3\n0xE67E\t0x8AE7\n0xE680\t0x8AE4\n0xE681\t0x8AF1\n0xE682\t0x8B14\n0xE683\t0x8AE0\n0xE684\t0x8AE2\n0xE685\t0x8AF7\n0xE686\t0x8ADE\n0xE687\t0x8ADB\n0xE688\t0x8B0C\n0xE689\t0x8B07\n0xE68A\t0x8B1A\n0xE68B\t0x8AE1\n0xE68C\t0x8B16\n0xE68D\t0x8B10\n0xE68E\t0x8B17\n0xE68F\t0x8B20\n0xE690\t0x8B33\n0xE691\t0x97AB\n0xE692\t0x8B26\n0xE693\t0x8B2B\n0xE694\t0x8B3E\n0xE695\t0x8B28\n0xE696\t0x8B41\n0xE697\t0x8B4C\n0xE698\t0x8B4F\n0xE699\t0x8B4E\n0xE69A\t0x8B49\n0xE69B\t0x8B56\n0xE69C\t0x8B5B\n0xE69D\t0x8B5A\n0xE69E\t0x8B6B\n0xE69F\t0x8B5F\n0xE6A0\t0x8B6C\n0xE6A1\t0x8B6F\n0xE6A2\t0x8B74\n0xE6A3\t0x8B7D\n0xE6A4\t0x8B80\n0xE6A5\t0x8B8C\n0xE6A6\t0x8B8E\n0xE6A7\t0x8B92\n0xE6A8\t0x8B93\n0xE6A9\t0x8B96\n0xE6AA\t0x8B99\n0xE6AB\t0x8B9A\n0xE6AC\t0x8C3A\n0xE6AD\t0x8C41\n0xE6AE\t0x8C3F\n0xE6AF\t0x8C48\n0xE6B0\t0x8C4C\n0xE6B1\t0x8C4E\n0xE6B2\t0x8C50\n0xE6B3\t0x8C55\n0xE6B4\t0x8C62\n0xE6B5\t0x8C6C\n0xE6B6\t0x8C78\n0xE6B7\t0x8C7A\n0xE6B8\t0x8C82\n0xE6B9\t0x8C89\n0xE6BA\t0x8C85\n0xE6BB\t0x8C8A\n0xE6BC\t0x8C8D\n0xE6BD\t0x8C8E\n0xE6BE\t0x8C94\n0xE6BF\t0x8C7C\n0xE6C0\t0x8C98\n0xE6C1\t0x621D\n0xE6C2\t0x8CAD\n0xE6C3\t0x8CAA\n0xE6C4\t0x8CBD\n0xE6C5\t0x8CB2\n0xE6C6\t0x8CB3\n0xE6C7\t0x8CAE\n0xE6C8\t0x8CB6\n0xE6C9\t0x8CC8\n0xE6CA\t0x8CC1\n0xE6CB\t0x8CE4\n0xE6CC\t0x8CE3\n0xE6CD\t0x8CDA\n0xE6CE\t0x8CFD\n0xE6CF\t0x8CFA\n0xE6D0\t0x8CFB\n0xE6D1\t0x8D04\n0xE6D2\t0x8D05\n0xE6D3\t0x8D0A\n0xE6D4\t0x8D07\n0xE6D5\t0x8D0F\n0xE6D6\t0x8D0D\n0xE6D7\t0x8D10\n0xE6D8\t0x9F4E\n0xE6D9\t0x8D13\n0xE6DA\t0x8CCD\n0xE6DB\t0x8D14\n0xE6DC\t0x8D16\n0xE6DD\t0x8D67\n0xE6DE\t0x8D6D\n0xE6DF\t0x8D71\n0xE6E0\t0x8D73\n0xE6E1\t0x8D81\n0xE6E2\t0x8D99\n0xE6E3\t0x8DC2\n0xE6E4\t0x8DBE\n0xE6E5\t0x8DBA\n0xE6E6\t0x8DCF\n0xE6E7\t0x8DDA\n0xE6E8\t0x8DD6\n0xE6E9\t0x8DCC\n0xE6EA\t0x8DDB\n0xE6EB\t0x8DCB\n0xE6EC\t0x8DEA\n0xE6ED\t0x8DEB\n0xE6EE\t0x8DDF\n0xE6EF\t0x8DE3\n0xE6F0\t0x8DFC\n0xE6F1\t0x8E08\n0xE6F2\t0x8E09\n0xE6F3\t0x8DFF\n0xE6F4\t0x8E1D\n0xE6F5\t0x8E1E\n0xE6F6\t0x8E10\n0xE6F7\t0x8E1F\n0xE6F8\t0x8E42\n0xE6F9\t0x8E35\n0xE6FA\t0x8E30\n0xE6FB\t0x8E34\n0xE6FC\t0x8E4A\n0xE740\t0x8E47\n0xE741\t0x8E49\n0xE742\t0x8E4C\n0xE743\t0x8E50\n0xE744\t0x8E48\n0xE745\t0x8E59\n0xE746\t0x8E64\n0xE747\t0x8E60\n0xE748\t0x8E2A\n0xE749\t0x8E63\n0xE74A\t0x8E55\n0xE74B\t0x8E76\n0xE74C\t0x8E72\n0xE74D\t0x8E7C\n0xE74E\t0x8E81\n0xE74F\t0x8E87\n0xE750\t0x8E85\n0xE751\t0x8E84\n0xE752\t0x8E8B\n0xE753\t0x8E8A\n0xE754\t0x8E93\n0xE755\t0x8E91\n0xE756\t0x8E94\n0xE757\t0x8E99\n0xE758\t0x8EAA\n0xE759\t0x8EA1\n0xE75A\t0x8EAC\n0xE75B\t0x8EB0\n0xE75C\t0x8EC6\n0xE75D\t0x8EB1\n0xE75E\t0x8EBE\n0xE75F\t0x8EC5\n0xE760\t0x8EC8\n0xE761\t0x8ECB\n0xE762\t0x8EDB\n0xE763\t0x8EE3\n0xE764\t0x8EFC\n0xE765\t0x8EFB\n0xE766\t0x8EEB\n0xE767\t0x8EFE\n0xE768\t0x8F0A\n0xE769\t0x8F05\n0xE76A\t0x8F15\n0xE76B\t0x8F12\n0xE76C\t0x8F19\n0xE76D\t0x8F13\n0xE76E\t0x8F1C\n0xE76F\t0x8F1F\n0xE770\t0x8F1B\n0xE771\t0x8F0C\n0xE772\t0x8F26\n0xE773\t0x8F33\n0xE774\t0x8F3B\n0xE775\t0x8F39\n0xE776\t0x8F45\n0xE777\t0x8F42\n0xE778\t0x8F3E\n0xE779\t0x8F4C\n0xE77A\t0x8F49\n0xE77B\t0x8F46\n0xE77C\t0x8F4E\n0xE77D\t0x8F57\n0xE77E\t0x8F5C\n0xE780\t0x8F62\n0xE781\t0x8F63\n0xE782\t0x8F64\n0xE783\t0x8F9C\n0xE784\t0x8F9F\n0xE785\t0x8FA3\n0xE786\t0x8FAD\n0xE787\t0x8FAF\n0xE788\t0x8FB7\n0xE789\t0x8FDA\n0xE78A\t0x8FE5\n0xE78B\t0x8FE2\n0xE78C\t0x8FEA\n0xE78D\t0x8FEF\n0xE78E\t0x9087\n0xE78F\t0x8FF4\n0xE790\t0x9005\n0xE791\t0x8FF9\n0xE792\t0x8FFA\n0xE793\t0x9011\n0xE794\t0x9015\n0xE795\t0x9021\n0xE796\t0x900D\n0xE797\t0x901E\n0xE798\t0x9016\n0xE799\t0x900B\n0xE79A\t0x9027\n0xE79B\t0x9036\n0xE79C\t0x9035\n0xE79D\t0x9039\n0xE79E\t0x8FF8\n0xE79F\t0x904F\n0xE7A0\t0x9050\n0xE7A1\t0x9051\n0xE7A2\t0x9052\n0xE7A3\t0x900E\n0xE7A4\t0x9049\n0xE7A5\t0x903E\n0xE7A6\t0x9056\n0xE7A7\t0x9058\n0xE7A8\t0x905E\n0xE7A9\t0x9068\n0xE7AA\t0x906F\n0xE7AB\t0x9076\n0xE7AC\t0x96A8\n0xE7AD\t0x9072\n0xE7AE\t0x9082\n0xE7AF\t0x907D\n0xE7B0\t0x9081\n0xE7B1\t0x9080\n0xE7B2\t0x908A\n0xE7B3\t0x9089\n0xE7B4\t0x908F\n0xE7B5\t0x90A8\n0xE7B6\t0x90AF\n0xE7B7\t0x90B1\n0xE7B8\t0x90B5\n0xE7B9\t0x90E2\n0xE7BA\t0x90E4\n0xE7BB\t0x6248\n0xE7BC\t0x90DB\n0xE7BD\t0x9102\n0xE7BE\t0x9112\n0xE7BF\t0x9119\n0xE7C0\t0x9132\n0xE7C1\t0x9130\n0xE7C2\t0x914A\n0xE7C3\t0x9156\n0xE7C4\t0x9158\n0xE7C5\t0x9163\n0xE7C6\t0x9165\n0xE7C7\t0x9169\n0xE7C8\t0x9173\n0xE7C9\t0x9172\n0xE7CA\t0x918B\n0xE7CB\t0x9189\n0xE7CC\t0x9182\n0xE7CD\t0x91A2\n0xE7CE\t0x91AB\n0xE7CF\t0x91AF\n0xE7D0\t0x91AA\n0xE7D1\t0x91B5\n0xE7D2\t0x91B4\n0xE7D3\t0x91BA\n0xE7D4\t0x91C0\n0xE7D5\t0x91C1\n0xE7D6\t0x91C9\n0xE7D7\t0x91CB\n0xE7D8\t0x91D0\n0xE7D9\t0x91D6\n0xE7DA\t0x91DF\n0xE7DB\t0x91E1\n0xE7DC\t0x91DB\n0xE7DD\t0x91FC\n0xE7DE\t0x91F5\n0xE7DF\t0x91F6\n0xE7E0\t0x921E\n0xE7E1\t0x91FF\n0xE7E2\t0x9214\n0xE7E3\t0x922C\n0xE7E4\t0x9215\n0xE7E5\t0x9211\n0xE7E6\t0x925E\n0xE7E7\t0x9257\n0xE7E8\t0x9245\n0xE7E9\t0x9249\n0xE7EA\t0x9264\n0xE7EB\t0x9248\n0xE7EC\t0x9295\n0xE7ED\t0x923F\n0xE7EE\t0x924B\n0xE7EF\t0x9250\n0xE7F0\t0x929C\n0xE7F1\t0x9296\n0xE7F2\t0x9293\n0xE7F3\t0x929B\n0xE7F4\t0x925A\n0xE7F5\t0x92CF\n0xE7F6\t0x92B9\n0xE7F7\t0x92B7\n0xE7F8\t0x92E9\n0xE7F9\t0x930F\n0xE7FA\t0x92FA\n0xE7FB\t0x9344\n0xE7FC\t0x932E\n0xE840\t0x9319\n0xE841\t0x9322\n0xE842\t0x931A\n0xE843\t0x9323\n0xE844\t0x933A\n0xE845\t0x9335\n0xE846\t0x933B\n0xE847\t0x935C\n0xE848\t0x9360\n0xE849\t0x937C\n0xE84A\t0x936E\n0xE84B\t0x9356\n0xE84C\t0x93B0\n0xE84D\t0x93AC\n0xE84E\t0x93AD\n0xE84F\t0x9394\n0xE850\t0x93B9\n0xE851\t0x93D6\n0xE852\t0x93D7\n0xE853\t0x93E8\n0xE854\t0x93E5\n0xE855\t0x93D8\n0xE856\t0x93C3\n0xE857\t0x93DD\n0xE858\t0x93D0\n0xE859\t0x93C8\n0xE85A\t0x93E4\n0xE85B\t0x941A\n0xE85C\t0x9414\n0xE85D\t0x9413\n0xE85E\t0x9403\n0xE85F\t0x9407\n0xE860\t0x9410\n0xE861\t0x9436\n0xE862\t0x942B\n0xE863\t0x9435\n0xE864\t0x9421\n0xE865\t0x943A\n0xE866\t0x9441\n0xE867\t0x9452\n0xE868\t0x9444\n0xE869\t0x945B\n0xE86A\t0x9460\n0xE86B\t0x9462\n0xE86C\t0x945E\n0xE86D\t0x946A\n0xE86E\t0x9229\n0xE86F\t0x9470\n0xE870\t0x9475\n0xE871\t0x9477\n0xE872\t0x947D\n0xE873\t0x945A\n0xE874\t0x947C\n0xE875\t0x947E\n0xE876\t0x9481\n0xE877\t0x947F\n0xE878\t0x9582\n0xE879\t0x9587\n0xE87A\t0x958A\n0xE87B\t0x9594\n0xE87C\t0x9596\n0xE87D\t0x9598\n0xE87E\t0x9599\n0xE880\t0x95A0\n0xE881\t0x95A8\n0xE882\t0x95A7\n0xE883\t0x95AD\n0xE884\t0x95BC\n0xE885\t0x95BB\n0xE886\t0x95B9\n0xE887\t0x95BE\n0xE888\t0x95CA\n0xE889\t0x6FF6\n0xE88A\t0x95C3\n0xE88B\t0x95CD\n0xE88C\t0x95CC\n0xE88D\t0x95D5\n0xE88E\t0x95D4\n0xE88F\t0x95D6\n0xE890\t0x95DC\n0xE891\t0x95E1\n0xE892\t0x95E5\n0xE893\t0x95E2\n0xE894\t0x9621\n0xE895\t0x9628\n0xE896\t0x962E\n0xE897\t0x962F\n0xE898\t0x9642\n0xE899\t0x964C\n0xE89A\t0x964F\n0xE89B\t0x964B\n0xE89C\t0x9677\n0xE89D\t0x965C\n0xE89E\t0x965E\n0xE89F\t0x965D\n0xE8A0\t0x965F\n0xE8A1\t0x9666\n0xE8A2\t0x9672\n0xE8A3\t0x966C\n0xE8A4\t0x968D\n0xE8A5\t0x9698\n0xE8A6\t0x9695\n0xE8A7\t0x9697\n0xE8A8\t0x96AA\n0xE8A9\t0x96A7\n0xE8AA\t0x96B1\n0xE8AB\t0x96B2\n0xE8AC\t0x96B0\n0xE8AD\t0x96B4\n0xE8AE\t0x96B6\n0xE8AF\t0x96B8\n0xE8B0\t0x96B9\n0xE8B1\t0x96CE\n0xE8B2\t0x96CB\n0xE8B3\t0x96C9\n0xE8B4\t0x96CD\n0xE8B5\t0x894D\n0xE8B6\t0x96DC\n0xE8B7\t0x970D\n0xE8B8\t0x96D5\n0xE8B9\t0x96F9\n0xE8BA\t0x9704\n0xE8BB\t0x9706\n0xE8BC\t0x9708\n0xE8BD\t0x9713\n0xE8BE\t0x970E\n0xE8BF\t0x9711\n0xE8C0\t0x970F\n0xE8C1\t0x9716\n0xE8C2\t0x9719\n0xE8C3\t0x9724\n0xE8C4\t0x972A\n0xE8C5\t0x9730\n0xE8C6\t0x9739\n0xE8C7\t0x973D\n0xE8C8\t0x973E\n0xE8C9\t0x9744\n0xE8CA\t0x9746\n0xE8CB\t0x9748\n0xE8CC\t0x9742\n0xE8CD\t0x9749\n0xE8CE\t0x975C\n0xE8CF\t0x9760\n0xE8D0\t0x9764\n0xE8D1\t0x9766\n0xE8D2\t0x9768\n0xE8D3\t0x52D2\n0xE8D4\t0x976B\n0xE8D5\t0x9771\n0xE8D6\t0x9779\n0xE8D7\t0x9785\n0xE8D8\t0x977C\n0xE8D9\t0x9781\n0xE8DA\t0x977A\n0xE8DB\t0x9786\n0xE8DC\t0x978B\n0xE8DD\t0x978F\n0xE8DE\t0x9790\n0xE8DF\t0x979C\n0xE8E0\t0x97A8\n0xE8E1\t0x97A6\n0xE8E2\t0x97A3\n0xE8E3\t0x97B3\n0xE8E4\t0x97B4\n0xE8E5\t0x97C3\n0xE8E6\t0x97C6\n0xE8E7\t0x97C8\n0xE8E8\t0x97CB\n0xE8E9\t0x97DC\n0xE8EA\t0x97ED\n0xE8EB\t0x9F4F\n0xE8EC\t0x97F2\n0xE8ED\t0x7ADF\n0xE8EE\t0x97F6\n0xE8EF\t0x97F5\n0xE8F0\t0x980F\n0xE8F1\t0x980C\n0xE8F2\t0x9838\n0xE8F3\t0x9824\n0xE8F4\t0x9821\n0xE8F5\t0x9837\n0xE8F6\t0x983D\n0xE8F7\t0x9846\n0xE8F8\t0x984F\n0xE8F9\t0x984B\n0xE8FA\t0x986B\n0xE8FB\t0x986F\n0xE8FC\t0x9870\n0xE940\t0x9871\n0xE941\t0x9874\n0xE942\t0x9873\n0xE943\t0x98AA\n0xE944\t0x98AF\n0xE945\t0x98B1\n0xE946\t0x98B6\n0xE947\t0x98C4\n0xE948\t0x98C3\n0xE949\t0x98C6\n0xE94A\t0x98E9\n0xE94B\t0x98EB\n0xE94C\t0x9903\n0xE94D\t0x9909\n0xE94E\t0x9912\n0xE94F\t0x9914\n0xE950\t0x9918\n0xE951\t0x9921\n0xE952\t0x991D\n0xE953\t0x991E\n0xE954\t0x9924\n0xE955\t0x9920\n0xE956\t0x992C\n0xE957\t0x992E\n0xE958\t0x993D\n0xE959\t0x993E\n0xE95A\t0x9942\n0xE95B\t0x9949\n0xE95C\t0x9945\n0xE95D\t0x9950\n0xE95E\t0x994B\n0xE95F\t0x9951\n0xE960\t0x9952\n0xE961\t0x994C\n0xE962\t0x9955\n0xE963\t0x9997\n0xE964\t0x9998\n0xE965\t0x99A5\n0xE966\t0x99AD\n0xE967\t0x99AE\n0xE968\t0x99BC\n0xE969\t0x99DF\n0xE96A\t0x99DB\n0xE96B\t0x99DD\n0xE96C\t0x99D8\n0xE96D\t0x99D1\n0xE96E\t0x99ED\n0xE96F\t0x99EE\n0xE970\t0x99F1\n0xE971\t0x99F2\n0xE972\t0x99FB\n0xE973\t0x99F8\n0xE974\t0x9A01\n0xE975\t0x9A0F\n0xE976\t0x9A05\n0xE977\t0x99E2\n0xE978\t0x9A19\n0xE979\t0x9A2B\n0xE97A\t0x9A37\n0xE97B\t0x9A45\n0xE97C\t0x9A42\n0xE97D\t0x9A40\n0xE97E\t0x9A43\n0xE980\t0x9A3E\n0xE981\t0x9A55\n0xE982\t0x9A4D\n0xE983\t0x9A5B\n0xE984\t0x9A57\n0xE985\t0x9A5F\n0xE986\t0x9A62\n0xE987\t0x9A65\n0xE988\t0x9A64\n0xE989\t0x9A69\n0xE98A\t0x9A6B\n0xE98B\t0x9A6A\n0xE98C\t0x9AAD\n0xE98D\t0x9AB0\n0xE98E\t0x9ABC\n0xE98F\t0x9AC0\n0xE990\t0x9ACF\n0xE991\t0x9AD1\n0xE992\t0x9AD3\n0xE993\t0x9AD4\n0xE994\t0x9ADE\n0xE995\t0x9ADF\n0xE996\t0x9AE2\n0xE997\t0x9AE3\n0xE998\t0x9AE6\n0xE999\t0x9AEF\n0xE99A\t0x9AEB\n0xE99B\t0x9AEE\n0xE99C\t0x9AF4\n0xE99D\t0x9AF1\n0xE99E\t0x9AF7\n0xE99F\t0x9AFB\n0xE9A0\t0x9B06\n0xE9A1\t0x9B18\n0xE9A2\t0x9B1A\n0xE9A3\t0x9B1F\n0xE9A4\t0x9B22\n0xE9A5\t0x9B23\n0xE9A6\t0x9B25\n0xE9A7\t0x9B27\n0xE9A8\t0x9B28\n0xE9A9\t0x9B29\n0xE9AA\t0x9B2A\n0xE9AB\t0x9B2E\n0xE9AC\t0x9B2F\n0xE9AD\t0x9B32\n0xE9AE\t0x9B44\n0xE9AF\t0x9B43\n0xE9B0\t0x9B4F\n0xE9B1\t0x9B4D\n0xE9B2\t0x9B4E\n0xE9B3\t0x9B51\n0xE9B4\t0x9B58\n0xE9B5\t0x9B74\n0xE9B6\t0x9B93\n0xE9B7\t0x9B83\n0xE9B8\t0x9B91\n0xE9B9\t0x9B96\n0xE9BA\t0x9B97\n0xE9BB\t0x9B9F\n0xE9BC\t0x9BA0\n0xE9BD\t0x9BA8\n0xE9BE\t0x9BB4\n0xE9BF\t0x9BC0\n0xE9C0\t0x9BCA\n0xE9C1\t0x9BB9\n0xE9C2\t0x9BC6\n0xE9C3\t0x9BCF\n0xE9C4\t0x9BD1\n0xE9C5\t0x9BD2\n0xE9C6\t0x9BE3\n0xE9C7\t0x9BE2\n0xE9C8\t0x9BE4\n0xE9C9\t0x9BD4\n0xE9CA\t0x9BE1\n0xE9CB\t0x9C3A\n0xE9CC\t0x9BF2\n0xE9CD\t0x9BF1\n0xE9CE\t0x9BF0\n0xE9CF\t0x9C15\n0xE9D0\t0x9C14\n0xE9D1\t0x9C09\n0xE9D2\t0x9C13\n0xE9D3\t0x9C0C\n0xE9D4\t0x9C06\n0xE9D5\t0x9C08\n0xE9D6\t0x9C12\n0xE9D7\t0x9C0A\n0xE9D8\t0x9C04\n0xE9D9\t0x9C2E\n0xE9DA\t0x9C1B\n0xE9DB\t0x9C25\n0xE9DC\t0x9C24\n0xE9DD\t0x9C21\n0xE9DE\t0x9C30\n0xE9DF\t0x9C47\n0xE9E0\t0x9C32\n0xE9E1\t0x9C46\n0xE9E2\t0x9C3E\n0xE9E3\t0x9C5A\n0xE9E4\t0x9C60\n0xE9E5\t0x9C67\n0xE9E6\t0x9C76\n0xE9E7\t0x9C78\n0xE9E8\t0x9CE7\n0xE9E9\t0x9CEC\n0xE9EA\t0x9CF0\n0xE9EB\t0x9D09\n0xE9EC\t0x9D08\n0xE9ED\t0x9CEB\n0xE9EE\t0x9D03\n0xE9EF\t0x9D06\n0xE9F0\t0x9D2A\n0xE9F1\t0x9D26\n0xE9F2\t0x9DAF\n0xE9F3\t0x9D23\n0xE9F4\t0x9D1F\n0xE9F5\t0x9D44\n0xE9F6\t0x9D15\n0xE9F7\t0x9D12\n0xE9F8\t0x9D41\n0xE9F9\t0x9D3F\n0xE9FA\t0x9D3E\n0xE9FB\t0x9D46\n0xE9FC\t0x9D48\n0xEA40\t0x9D5D\n0xEA41\t0x9D5E\n0xEA42\t0x9D64\n0xEA43\t0x9D51\n0xEA44\t0x9D50\n0xEA45\t0x9D59\n0xEA46\t0x9D72\n0xEA47\t0x9D89\n0xEA48\t0x9D87\n0xEA49\t0x9DAB\n0xEA4A\t0x9D6F\n0xEA4B\t0x9D7A\n0xEA4C\t0x9D9A\n0xEA4D\t0x9DA4\n0xEA4E\t0x9DA9\n0xEA4F\t0x9DB2\n0xEA50\t0x9DC4\n0xEA51\t0x9DC1\n0xEA52\t0x9DBB\n0xEA53\t0x9DB8\n0xEA54\t0x9DBA\n0xEA55\t0x9DC6\n0xEA56\t0x9DCF\n0xEA57\t0x9DC2\n0xEA58\t0x9DD9\n0xEA59\t0x9DD3\n0xEA5A\t0x9DF8\n0xEA5B\t0x9DE6\n0xEA5C\t0x9DED\n0xEA5D\t0x9DEF\n0xEA5E\t0x9DFD\n0xEA5F\t0x9E1A\n0xEA60\t0x9E1B\n0xEA61\t0x9E1E\n0xEA62\t0x9E75\n0xEA63\t0x9E79\n0xEA64\t0x9E7D\n0xEA65\t0x9E81\n0xEA66\t0x9E88\n0xEA67\t0x9E8B\n0xEA68\t0x9E8C\n0xEA69\t0x9E92\n0xEA6A\t0x9E95\n0xEA6B\t0x9E91\n0xEA6C\t0x9E9D\n0xEA6D\t0x9EA5\n0xEA6E\t0x9EA9\n0xEA6F\t0x9EB8\n0xEA70\t0x9EAA\n0xEA71\t0x9EAD\n0xEA72\t0x9761\n0xEA73\t0x9ECC\n0xEA74\t0x9ECE\n0xEA75\t0x9ECF\n0xEA76\t0x9ED0\n0xEA77\t0x9ED4\n0xEA78\t0x9EDC\n0xEA79\t0x9EDE\n0xEA7A\t0x9EDD\n0xEA7B\t0x9EE0\n0xEA7C\t0x9EE5\n0xEA7D\t0x9EE8\n0xEA7E\t0x9EEF\n0xEA80\t0x9EF4\n0xEA81\t0x9EF6\n0xEA82\t0x9EF7\n0xEA83\t0x9EF9\n0xEA84\t0x9EFB\n0xEA85\t0x9EFC\n0xEA86\t0x9EFD\n0xEA87\t0x9F07\n0xEA88\t0x9F08\n0xEA89\t0x76B7\n0xEA8A\t0x9F15\n0xEA8B\t0x9F21\n0xEA8C\t0x9F2C\n0xEA8D\t0x9F3E\n0xEA8E\t0x9F4A\n0xEA8F\t0x9F52\n0xEA90\t0x9F54\n0xEA91\t0x9F63\n0xEA92\t0x9F5F\n0xEA93\t0x9F60\n0xEA94\t0x9F61\n0xEA95\t0x9F66\n0xEA96\t0x9F67\n0xEA97\t0x9F6C\n0xEA98\t0x9F6A\n0xEA99\t0x9F77\n0xEA9A\t0x9F72\n0xEA9B\t0x9F76\n0xEA9C\t0x9F95\n0xEA9D\t0x9F9C\n0xEA9E\t0x9FA0\n0xEA9F\t0x582F\n0xEAA0\t0x69C7\n0xEAA1\t0x9059\n0xEAA2\t0x7464\n0xEAA3\t0x51DC\n0xEAA4\t0x7199\n0xEAA5\t0x5653\n0xEAA6\t0x5DE2\n0xEAA7\t0x5E14\n0xEAA8\t0x5E18\n0xEAA9\t0x5E58\n0xEAAA\t0x5E5E\n0xEAAB\t0x5EBE\n0xEAAC\t0xF928\n0xEAAD\t0x5ECB\n0xEAAE\t0x5EF9\n0xEAAF\t0x5F00\n0xEAB0\t0x5F02\n0xEAB1\t0x5F07\n0xEAB2\t0x5F1D\n0xEAB3\t0x5F23\n0xEAB4\t0x5F34\n0xEAB5\t0x5F36\n0xEAB6\t0x5F3D\n0xEAB7\t0x5F40\n0xEAB8\t0x5F45\n0xEAB9\t0x5F54\n0xEABA\t0x5F58\n0xEABB\t0x5F64\n0xEABC\t0x5F67\n0xEABD\t0x5F7D\n0xEABE\t0x5F89\n0xEABF\t0x5F9C\n0xEAC0\t0x5FA7\n0xEAC1\t0x5FAF\n0xEAC2\t0x5FB5\n0xEAC3\t0x5FB7\n0xEAC4\t0x5FC9\n0xEAC5\t0x5FDE\n0xEAC6\t0x5FE1\n0xEAC7\t0x5FE9\n0xEAC8\t0x600D\n0xEAC9\t0x6014\n0xEACA\t0x6018\n0xEACB\t0x6033\n0xEACC\t0x6035\n0xEACD\t0x6047\n0xEACE\t0xFA3D\n0xEACF\t0x609D\n0xEAD0\t0x609E\n0xEAD1\t0x60CB\n0xEAD2\t0x60D4\n0xEAD3\t0x60D5\n0xEAD4\t0x60DD\n0xEAD5\t0x60F8\n0xEAD6\t0x611C\n0xEAD7\t0x612B\n0xEAD8\t0x6130\n0xEAD9\t0x6137\n0xEADA\t0xFA3E\n0xEADB\t0x618D\n0xEADC\t0xFA3F\n0xEADD\t0x61BC\n0xEADE\t0x61B9\n0xEADF\t0xFA40\n0xEAE0\t0x6222\n0xEAE1\t0x623E\n0xEAE2\t0x6243\n0xEAE3\t0x6256\n0xEAE4\t0x625A\n0xEAE5\t0x626F\n0xEAE6\t0x6285\n0xEAE7\t0x62C4\n0xEAE8\t0x62D6\n0xEAE9\t0x62FC\n0xEAEA\t0x630A\n0xEAEB\t0x6318\n0xEAEC\t0x6339\n0xEAED\t0x6343\n0xEAEE\t0x6365\n0xEAEF\t0x637C\n0xEAF0\t0x63E5\n0xEAF1\t0x63ED\n0xEAF2\t0x63F5\n0xEAF3\t0x6410\n0xEAF4\t0x6414\n0xEAF5\t0x6422\n0xEAF6\t0x6479\n0xEAF7\t0x6451\n0xEAF8\t0x6460\n0xEAF9\t0x646D\n0xEAFA\t0x64CE\n0xEAFB\t0x64BE\n0xEAFC\t0x64BF\n0xEB40\t0x64C4\n0xEB41\t0x64CA\n0xEB42\t0x64D0\n0xEB43\t0x64F7\n0xEB44\t0x64FB\n0xEB45\t0x6522\n0xEB46\t0x6529\n0xEB47\t0xFA41\n0xEB48\t0x6567\n0xEB49\t0x659D\n0xEB4A\t0xFA42\n0xEB4B\t0x6600\n0xEB4C\t0x6609\n0xEB4D\t0x6615\n0xEB4E\t0x661E\n0xEB4F\t0x663A\n0xEB50\t0x6622\n0xEB51\t0x6624\n0xEB52\t0x662B\n0xEB53\t0x6630\n0xEB54\t0x6631\n0xEB55\t0x6633\n0xEB56\t0x66FB\n0xEB57\t0x6648\n0xEB58\t0x664C\n0xEB59\t0x231C4\n0xEB5A\t0x6659\n0xEB5B\t0x665A\n0xEB5C\t0x6661\n0xEB5D\t0x6665\n0xEB5E\t0x6673\n0xEB5F\t0x6677\n0xEB60\t0x6678\n0xEB61\t0x668D\n0xEB62\t0xFA43\n0xEB63\t0x66A0\n0xEB64\t0x66B2\n0xEB65\t0x66BB\n0xEB66\t0x66C6\n0xEB67\t0x66C8\n0xEB68\t0x3B22\n0xEB69\t0x66DB\n0xEB6A\t0x66E8\n0xEB6B\t0x66FA\n0xEB6C\t0x6713\n0xEB6D\t0xF929\n0xEB6E\t0x6733\n0xEB6F\t0x6766\n0xEB70\t0x6747\n0xEB71\t0x6748\n0xEB72\t0x677B\n0xEB73\t0x6781\n0xEB74\t0x6793\n0xEB75\t0x6798\n0xEB76\t0x679B\n0xEB77\t0x67BB\n0xEB78\t0x67F9\n0xEB79\t0x67C0\n0xEB7A\t0x67D7\n0xEB7B\t0x67FC\n0xEB7C\t0x6801\n0xEB7D\t0x6852\n0xEB7E\t0x681D\n0xEB80\t0x682C\n0xEB81\t0x6831\n0xEB82\t0x685B\n0xEB83\t0x6872\n0xEB84\t0x6875\n0xEB85\t0xFA44\n0xEB86\t0x68A3\n0xEB87\t0x68A5\n0xEB88\t0x68B2\n0xEB89\t0x68C8\n0xEB8A\t0x68D0\n0xEB8B\t0x68E8\n0xEB8C\t0x68ED\n0xEB8D\t0x68F0\n0xEB8E\t0x68F1\n0xEB8F\t0x68FC\n0xEB90\t0x690A\n0xEB91\t0x6949\n0xEB92\t0x235C4\n0xEB93\t0x6935\n0xEB94\t0x6942\n0xEB95\t0x6957\n0xEB96\t0x6963\n0xEB97\t0x6964\n0xEB98\t0x6968\n0xEB99\t0x6980\n0xEB9A\t0xFA14\n0xEB9B\t0x69A5\n0xEB9C\t0x69AD\n0xEB9D\t0x69CF\n0xEB9E\t0x3BB6\n0xEB9F\t0x3BC3\n0xEBA0\t0x69E2\n0xEBA1\t0x69E9\n0xEBA2\t0x69EA\n0xEBA3\t0x69F5\n0xEBA4\t0x69F6\n0xEBA5\t0x6A0F\n0xEBA6\t0x6A15\n0xEBA7\t0x2373F\n0xEBA8\t0x6A3B\n0xEBA9\t0x6A3E\n0xEBAA\t0x6A45\n0xEBAB\t0x6A50\n0xEBAC\t0x6A56\n0xEBAD\t0x6A5B\n0xEBAE\t0x6A6B\n0xEBAF\t0x6A73\n0xEBB0\t0x23763\n0xEBB1\t0x6A89\n0xEBB2\t0x6A94\n0xEBB3\t0x6A9D\n0xEBB4\t0x6A9E\n0xEBB5\t0x6AA5\n0xEBB6\t0x6AE4\n0xEBB7\t0x6AE7\n0xEBB8\t0x3C0F\n0xEBB9\t0xF91D\n0xEBBA\t0x6B1B\n0xEBBB\t0x6B1E\n0xEBBC\t0x6B2C\n0xEBBD\t0x6B35\n0xEBBE\t0x6B46\n0xEBBF\t0x6B56\n0xEBC0\t0x6B60\n0xEBC1\t0x6B65\n0xEBC2\t0x6B67\n0xEBC3\t0x6B77\n0xEBC4\t0x6B82\n0xEBC5\t0x6BA9\n0xEBC6\t0x6BAD\n0xEBC7\t0xF970\n0xEBC8\t0x6BCF\n0xEBC9\t0x6BD6\n0xEBCA\t0x6BD7\n0xEBCB\t0x6BFF\n0xEBCC\t0x6C05\n0xEBCD\t0x6C10\n0xEBCE\t0x6C33\n0xEBCF\t0x6C59\n0xEBD0\t0x6C5C\n0xEBD1\t0x6CAA\n0xEBD2\t0x6C74\n0xEBD3\t0x6C76\n0xEBD4\t0x6C85\n0xEBD5\t0x6C86\n0xEBD6\t0x6C98\n0xEBD7\t0x6C9C\n0xEBD8\t0x6CFB\n0xEBD9\t0x6CC6\n0xEBDA\t0x6CD4\n0xEBDB\t0x6CE0\n0xEBDC\t0x6CEB\n0xEBDD\t0x6CEE\n0xEBDE\t0x23CFE\n0xEBDF\t0x6D04\n0xEBE0\t0x6D0E\n0xEBE1\t0x6D2E\n0xEBE2\t0x6D31\n0xEBE3\t0x6D39\n0xEBE4\t0x6D3F\n0xEBE5\t0x6D58\n0xEBE6\t0x6D65\n0xEBE7\t0xFA45\n0xEBE8\t0x6D82\n0xEBE9\t0x6D87\n0xEBEA\t0x6D89\n0xEBEB\t0x6D94\n0xEBEC\t0x6DAA\n0xEBED\t0x6DAC\n0xEBEE\t0x6DBF\n0xEBEF\t0x6DC4\n0xEBF0\t0x6DD6\n0xEBF1\t0x6DDA\n0xEBF2\t0x6DDB\n0xEBF3\t0x6DDD\n0xEBF4\t0x6DFC\n0xEBF5\t0xFA46\n0xEBF6\t0x6E34\n0xEBF7\t0x6E44\n0xEBF8\t0x6E5C\n0xEBF9\t0x6E5E\n0xEBFA\t0x6EAB\n0xEBFB\t0x6EB1\n0xEBFC\t0x6EC1\n0xEC40\t0x6EC7\n0xEC41\t0x6ECE\n0xEC42\t0x6F10\n0xEC43\t0x6F1A\n0xEC44\t0xFA47\n0xEC45\t0x6F2A\n0xEC46\t0x6F2F\n0xEC47\t0x6F33\n0xEC48\t0x6F51\n0xEC49\t0x6F59\n0xEC4A\t0x6F5E\n0xEC4B\t0x6F61\n0xEC4C\t0x6F62\n0xEC4D\t0x6F7E\n0xEC4E\t0x6F88\n0xEC4F\t0x6F8C\n0xEC50\t0x6F8D\n0xEC51\t0x6F94\n0xEC52\t0x6FA0\n0xEC53\t0x6FA7\n0xEC54\t0x6FB6\n0xEC55\t0x6FBC\n0xEC56\t0x6FC7\n0xEC57\t0x6FCA\n0xEC58\t0x6FF9\n0xEC59\t0x6FF0\n0xEC5A\t0x6FF5\n0xEC5B\t0x7005\n0xEC5C\t0x7006\n0xEC5D\t0x7028\n0xEC5E\t0x704A\n0xEC5F\t0x705D\n0xEC60\t0x705E\n0xEC61\t0x704E\n0xEC62\t0x7064\n0xEC63\t0x7075\n0xEC64\t0x7085\n0xEC65\t0x70A4\n0xEC66\t0x70AB\n0xEC67\t0x70B7\n0xEC68\t0x70D4\n0xEC69\t0x70D8\n0xEC6A\t0x70E4\n0xEC6B\t0x710F\n0xEC6C\t0x712B\n0xEC6D\t0x711E\n0xEC6E\t0x7120\n0xEC6F\t0x712E\n0xEC70\t0x7130\n0xEC71\t0x7146\n0xEC72\t0x7147\n0xEC73\t0x7151\n0xEC74\t0xFA48\n0xEC75\t0x7152\n0xEC76\t0x715C\n0xEC77\t0x7160\n0xEC78\t0x7168\n0xEC79\t0xFA15\n0xEC7A\t0x7185\n0xEC7B\t0x7187\n0xEC7C\t0x7192\n0xEC7D\t0x71C1\n0xEC7E\t0x71BA\n0xEC80\t0x71C4\n0xEC81\t0x71FE\n0xEC82\t0x7200\n0xEC83\t0x7215\n0xEC84\t0x7255\n0xEC85\t0x7256\n0xEC86\t0x3E3F\n0xEC87\t0x728D\n0xEC88\t0x729B\n0xEC89\t0x72BE\n0xEC8A\t0x72C0\n0xEC8B\t0x72FB\n0xEC8C\t0x247F1\n0xEC8D\t0x7327\n0xEC8E\t0x7328\n0xEC8F\t0xFA16\n0xEC90\t0x7350\n0xEC91\t0x7366\n0xEC92\t0x737C\n0xEC93\t0x7395\n0xEC94\t0x739F\n0xEC95\t0x73A0\n0xEC96\t0x73A2\n0xEC97\t0x73A6\n0xEC98\t0x73AB\n0xEC99\t0x73C9\n0xEC9A\t0x73CF\n0xEC9B\t0x73D6\n0xEC9C\t0x73D9\n0xEC9D\t0x73E3\n0xEC9E\t0x73E9\n0xEC9F\t0x7407\n0xECA0\t0x740A\n0xECA1\t0x741A\n0xECA2\t0x741B\n0xECA3\t0xFA4A\n0xECA4\t0x7426\n0xECA5\t0x7428\n0xECA6\t0x742A\n0xECA7\t0x742B\n0xECA8\t0x742C\n0xECA9\t0x742E\n0xECAA\t0x742F\n0xECAB\t0x7430\n0xECAC\t0x7444\n0xECAD\t0x7446\n0xECAE\t0x7447\n0xECAF\t0x744B\n0xECB0\t0x7457\n0xECB1\t0x7462\n0xECB2\t0x746B\n0xECB3\t0x746D\n0xECB4\t0x7486\n0xECB5\t0x7487\n0xECB6\t0x7489\n0xECB7\t0x7498\n0xECB8\t0x749C\n0xECB9\t0x749F\n0xECBA\t0x74A3\n0xECBB\t0x7490\n0xECBC\t0x74A6\n0xECBD\t0x74A8\n0xECBE\t0x74A9\n0xECBF\t0x74B5\n0xECC0\t0x74BF\n0xECC1\t0x74C8\n0xECC2\t0x74C9\n0xECC3\t0x74DA\n0xECC4\t0x74FF\n0xECC5\t0x7501\n0xECC6\t0x7517\n0xECC7\t0x752F\n0xECC8\t0x756F\n0xECC9\t0x7579\n0xECCA\t0x7592\n0xECCB\t0x3F72\n0xECCC\t0x75CE\n0xECCD\t0x75E4\n0xECCE\t0x7600\n0xECCF\t0x7602\n0xECD0\t0x7608\n0xECD1\t0x7615\n0xECD2\t0x7616\n0xECD3\t0x7619\n0xECD4\t0x761E\n0xECD5\t0x762D\n0xECD6\t0x7635\n0xECD7\t0x7643\n0xECD8\t0x764B\n0xECD9\t0x7664\n0xECDA\t0x7665\n0xECDB\t0x766D\n0xECDC\t0x766F\n0xECDD\t0x7671\n0xECDE\t0x7681\n0xECDF\t0x769B\n0xECE0\t0x769D\n0xECE1\t0x769E\n0xECE2\t0x76A6\n0xECE3\t0x76AA\n0xECE4\t0x76B6\n0xECE5\t0x76C5\n0xECE6\t0x76CC\n0xECE7\t0x76CE\n0xECE8\t0x76D4\n0xECE9\t0x76E6\n0xECEA\t0x76F1\n0xECEB\t0x76FC\n0xECEC\t0x770A\n0xECED\t0x7719\n0xECEE\t0x7734\n0xECEF\t0x7736\n0xECF0\t0x7746\n0xECF1\t0x774D\n0xECF2\t0x774E\n0xECF3\t0x775C\n0xECF4\t0x775F\n0xECF5\t0x7762\n0xECF6\t0x777A\n0xECF7\t0x7780\n0xECF8\t0x7794\n0xECF9\t0x77AA\n0xECFA\t0x77E0\n0xECFB\t0x782D\n0xECFC\t0x2548E\n0xED40\t0x7843\n0xED41\t0x784E\n0xED42\t0x784F\n0xED43\t0x7851\n0xED44\t0x7868\n0xED45\t0x786E\n0xED46\t0xFA4B\n0xED47\t0x78B0\n0xED48\t0x2550E\n0xED49\t0x78AD\n0xED4A\t0x78E4\n0xED4B\t0x78F2\n0xED4C\t0x7900\n0xED4D\t0x78F7\n0xED4E\t0x791C\n0xED4F\t0x792E\n0xED50\t0x7931\n0xED51\t0x7934\n0xED52\t0xFA4C\n0xED53\t0xFA4D\n0xED54\t0x7945\n0xED55\t0x7946\n0xED56\t0xFA4E\n0xED57\t0xFA4F\n0xED58\t0xFA50\n0xED59\t0x795C\n0xED5A\t0xFA51\n0xED5B\t0xFA19\n0xED5C\t0xFA1A\n0xED5D\t0x7979\n0xED5E\t0xFA52\n0xED5F\t0xFA53\n0xED60\t0xFA1B\n0xED61\t0x7998\n0xED62\t0x79B1\n0xED63\t0x79B8\n0xED64\t0x79C8\n0xED65\t0x79CA\n0xED66\t0x25771\n0xED67\t0x79D4\n0xED68\t0x79DE\n0xED69\t0x79EB\n0xED6A\t0x79ED\n0xED6B\t0x7A03\n0xED6C\t0xFA54\n0xED6D\t0x7A39\n0xED6E\t0x7A5D\n0xED6F\t0x7A6D\n0xED70\t0xFA55\n0xED71\t0x7A85\n0xED72\t0x7AA0\n0xED73\t0x259C4\n0xED74\t0x7AB3\n0xED75\t0x7ABB\n0xED76\t0x7ACE\n0xED77\t0x7AEB\n0xED78\t0x7AFD\n0xED79\t0x7B12\n0xED7A\t0x7B2D\n0xED7B\t0x7B3B\n0xED7C\t0x7B47\n0xED7D\t0x7B4E\n0xED7E\t0x7B60\n0xED80\t0x7B6D\n0xED81\t0x7B6F\n0xED82\t0x7B72\n0xED83\t0x7B9E\n0xED84\t0xFA56\n0xED85\t0x7BD7\n0xED86\t0x7BD9\n0xED87\t0x7C01\n0xED88\t0x7C31\n0xED89\t0x7C1E\n0xED8A\t0x7C20\n0xED8B\t0x7C33\n0xED8C\t0x7C36\n0xED8D\t0x4264\n0xED8E\t0x25DA1\n0xED8F\t0x7C59\n0xED90\t0x7C6D\n0xED91\t0x7C79\n0xED92\t0x7C8F\n0xED93\t0x7C94\n0xED94\t0x7CA0\n0xED95\t0x7CBC\n0xED96\t0x7CD5\n0xED97\t0x7CD9\n0xED98\t0x7CDD\n0xED99\t0x7D07\n0xED9A\t0x7D08\n0xED9B\t0x7D13\n0xED9C\t0x7D1D\n0xED9D\t0x7D23\n0xED9E\t0x7D31\n0xED9F\t0x7D41\n0xEDA0\t0x7D48\n0xEDA1\t0x7D53\n0xEDA2\t0x7D5C\n0xEDA3\t0x7D7A\n0xEDA4\t0x7D83\n0xEDA5\t0x7D8B\n0xEDA6\t0x7DA0\n0xEDA7\t0x7DA6\n0xEDA8\t0x7DC2\n0xEDA9\t0x7DCC\n0xEDAA\t0x7DD6\n0xEDAB\t0x7DE3\n0xEDAC\t0xFA57\n0xEDAD\t0x7E28\n0xEDAE\t0x7E08\n0xEDAF\t0x7E11\n0xEDB0\t0x7E15\n0xEDB1\t0xFA59\n0xEDB2\t0x7E47\n0xEDB3\t0x7E52\n0xEDB4\t0x7E61\n0xEDB5\t0x7E8A\n0xEDB6\t0x7E8D\n0xEDB7\t0x7F47\n0xEDB8\t0xFA5A\n0xEDB9\t0x7F91\n0xEDBA\t0x7F97\n0xEDBB\t0x7FBF\n0xEDBC\t0x7FCE\n0xEDBD\t0x7FDB\n0xEDBE\t0x7FDF\n0xEDBF\t0x7FEC\n0xEDC0\t0x7FEE\n0xEDC1\t0x7FFA\n0xEDC2\t0xFA5B\n0xEDC3\t0x8014\n0xEDC4\t0x8026\n0xEDC5\t0x8035\n0xEDC6\t0x8037\n0xEDC7\t0x803C\n0xEDC8\t0x80CA\n0xEDC9\t0x80D7\n0xEDCA\t0x80E0\n0xEDCB\t0x80F3\n0xEDCC\t0x8118\n0xEDCD\t0x814A\n0xEDCE\t0x8160\n0xEDCF\t0x8167\n0xEDD0\t0x8168\n0xEDD1\t0x816D\n0xEDD2\t0x81BB\n0xEDD3\t0x81CA\n0xEDD4\t0x81CF\n0xEDD5\t0x81D7\n0xEDD6\t0xFA5C\n0xEDD7\t0x4453\n0xEDD8\t0x445B\n0xEDD9\t0x8260\n0xEDDA\t0x8274\n0xEDDB\t0x26AFF\n0xEDDC\t0x828E\n0xEDDD\t0x82A1\n0xEDDE\t0x82A3\n0xEDDF\t0x82A4\n0xEDE0\t0x82A9\n0xEDE1\t0x82AE\n0xEDE2\t0x82B7\n0xEDE3\t0x82BE\n0xEDE4\t0x82BF\n0xEDE5\t0x82C6\n0xEDE6\t0x82D5\n0xEDE7\t0x82FD\n0xEDE8\t0x82FE\n0xEDE9\t0x8300\n0xEDEA\t0x8301\n0xEDEB\t0x8362\n0xEDEC\t0x8322\n0xEDED\t0x832D\n0xEDEE\t0x833A\n0xEDEF\t0x8343\n0xEDF0\t0x8347\n0xEDF1\t0x8351\n0xEDF2\t0x8355\n0xEDF3\t0x837D\n0xEDF4\t0x8386\n0xEDF5\t0x8392\n0xEDF6\t0x8398\n0xEDF7\t0x83A7\n0xEDF8\t0x83A9\n0xEDF9\t0x83BF\n0xEDFA\t0x83C0\n0xEDFB\t0x83C7\n0xEDFC\t0x83CF\n0xEE40\t0x83D1\n0xEE41\t0x83E1\n0xEE42\t0x83EA\n0xEE43\t0x8401\n0xEE44\t0x8406\n0xEE45\t0x840A\n0xEE46\t0xFA5F\n0xEE47\t0x8448\n0xEE48\t0x845F\n0xEE49\t0x8470\n0xEE4A\t0x8473\n0xEE4B\t0x8485\n0xEE4C\t0x849E\n0xEE4D\t0x84AF\n0xEE4E\t0x84B4\n0xEE4F\t0x84BA\n0xEE50\t0x84C0\n0xEE51\t0x84C2\n0xEE52\t0x26E40\n0xEE53\t0x8532\n0xEE54\t0x851E\n0xEE55\t0x8523\n0xEE56\t0x852F\n0xEE57\t0x8559\n0xEE58\t0x8564\n0xEE59\t0xFA1F\n0xEE5A\t0x85AD\n0xEE5B\t0x857A\n0xEE5C\t0x858C\n0xEE5D\t0x858F\n0xEE5E\t0x85A2\n0xEE5F\t0x85B0\n0xEE60\t0x85CB\n0xEE61\t0x85CE\n0xEE62\t0x85ED\n0xEE63\t0x8612\n0xEE64\t0x85FF\n0xEE65\t0x8604\n0xEE66\t0x8605\n0xEE67\t0x8610\n0xEE68\t0x270F4\n0xEE69\t0x8618\n0xEE6A\t0x8629\n0xEE6B\t0x8638\n0xEE6C\t0x8657\n0xEE6D\t0x865B\n0xEE6E\t0xF936\n0xEE6F\t0x8662\n0xEE70\t0x459D\n0xEE71\t0x866C\n0xEE72\t0x8675\n0xEE73\t0x8698\n0xEE74\t0x86B8\n0xEE75\t0x86FA\n0xEE76\t0x86FC\n0xEE77\t0x86FD\n0xEE78\t0x870B\n0xEE79\t0x8771\n0xEE7A\t0x8787\n0xEE7B\t0x8788\n0xEE7C\t0x87AC\n0xEE7D\t0x87AD\n0xEE7E\t0x87B5\n0xEE80\t0x45EA\n0xEE81\t0x87D6\n0xEE82\t0x87EC\n0xEE83\t0x8806\n0xEE84\t0x880A\n0xEE85\t0x8810\n0xEE86\t0x8814\n0xEE87\t0x881F\n0xEE88\t0x8898\n0xEE89\t0x88AA\n0xEE8A\t0x88CA\n0xEE8B\t0x88CE\n0xEE8C\t0x27684\n0xEE8D\t0x88F5\n0xEE8E\t0x891C\n0xEE8F\t0xFA60\n0xEE90\t0x8918\n0xEE91\t0x8919\n0xEE92\t0x891A\n0xEE93\t0x8927\n0xEE94\t0x8930\n0xEE95\t0x8932\n0xEE96\t0x8939\n0xEE97\t0x8940\n0xEE98\t0x8994\n0xEE99\t0xFA61\n0xEE9A\t0x89D4\n0xEE9B\t0x89E5\n0xEE9C\t0x89F6\n0xEE9D\t0x8A12\n0xEE9E\t0x8A15\n0xEE9F\t0x8A22\n0xEEA0\t0x8A37\n0xEEA1\t0x8A47\n0xEEA2\t0x8A4E\n0xEEA3\t0x8A5D\n0xEEA4\t0x8A61\n0xEEA5\t0x8A75\n0xEEA6\t0x8A79\n0xEEA7\t0x8AA7\n0xEEA8\t0x8AD0\n0xEEA9\t0x8ADF\n0xEEAA\t0x8AF4\n0xEEAB\t0x8AF6\n0xEEAC\t0xFA22\n0xEEAD\t0xFA62\n0xEEAE\t0xFA63\n0xEEAF\t0x8B46\n0xEEB0\t0x8B54\n0xEEB1\t0x8B59\n0xEEB2\t0x8B69\n0xEEB3\t0x8B9D\n0xEEB4\t0x8C49\n0xEEB5\t0x8C68\n0xEEB6\t0xFA64\n0xEEB7\t0x8CE1\n0xEEB8\t0x8CF4\n0xEEB9\t0x8CF8\n0xEEBA\t0x8CFE\n0xEEBB\t0xFA65\n0xEEBC\t0x8D12\n0xEEBD\t0x8D1B\n0xEEBE\t0x8DAF\n0xEEBF\t0x8DCE\n0xEEC0\t0x8DD1\n0xEEC1\t0x8DD7\n0xEEC2\t0x8E20\n0xEEC3\t0x8E23\n0xEEC4\t0x8E3D\n0xEEC5\t0x8E70\n0xEEC6\t0x8E7B\n0xEEC7\t0x28277\n0xEEC8\t0x8EC0\n0xEEC9\t0x4844\n0xEECA\t0x8EFA\n0xEECB\t0x8F1E\n0xEECC\t0x8F2D\n0xEECD\t0x8F36\n0xEECE\t0x8F54\n0xEECF\t0x283CD\n0xEED0\t0x8FA6\n0xEED1\t0x8FB5\n0xEED2\t0x8FE4\n0xEED3\t0x8FE8\n0xEED4\t0x8FEE\n0xEED5\t0x9008\n0xEED6\t0x902D\n0xEED7\t0xFA67\n0xEED8\t0x9088\n0xEED9\t0x9095\n0xEEDA\t0x9097\n0xEEDB\t0x9099\n0xEEDC\t0x909B\n0xEEDD\t0x90A2\n0xEEDE\t0x90B3\n0xEEDF\t0x90BE\n0xEEE0\t0x90C4\n0xEEE1\t0x90C5\n0xEEE2\t0x90C7\n0xEEE3\t0x90D7\n0xEEE4\t0x90DD\n0xEEE5\t0x90DE\n0xEEE6\t0x90EF\n0xEEE7\t0x90F4\n0xEEE8\t0xFA26\n0xEEE9\t0x9114\n0xEEEA\t0x9115\n0xEEEB\t0x9116\n0xEEEC\t0x9122\n0xEEED\t0x9123\n0xEEEE\t0x9127\n0xEEEF\t0x912F\n0xEEF0\t0x9131\n0xEEF1\t0x9134\n0xEEF2\t0x913D\n0xEEF3\t0x9148\n0xEEF4\t0x915B\n0xEEF5\t0x9183\n0xEEF6\t0x919E\n0xEEF7\t0x91AC\n0xEEF8\t0x91B1\n0xEEF9\t0x91BC\n0xEEFA\t0x91D7\n0xEEFB\t0x91FB\n0xEEFC\t0x91E4\n0xEF40\t0x91E5\n0xEF41\t0x91ED\n0xEF42\t0x91F1\n0xEF43\t0x9207\n0xEF44\t0x9210\n0xEF45\t0x9238\n0xEF46\t0x9239\n0xEF47\t0x923A\n0xEF48\t0x923C\n0xEF49\t0x9240\n0xEF4A\t0x9243\n0xEF4B\t0x924F\n0xEF4C\t0x9278\n0xEF4D\t0x9288\n0xEF4E\t0x92C2\n0xEF4F\t0x92CB\n0xEF50\t0x92CC\n0xEF51\t0x92D3\n0xEF52\t0x92E0\n0xEF53\t0x92FF\n0xEF54\t0x9304\n0xEF55\t0x931F\n0xEF56\t0x9321\n0xEF57\t0x9325\n0xEF58\t0x9348\n0xEF59\t0x9349\n0xEF5A\t0x934A\n0xEF5B\t0x9364\n0xEF5C\t0x9365\n0xEF5D\t0x936A\n0xEF5E\t0x9370\n0xEF5F\t0x939B\n0xEF60\t0x93A3\n0xEF61\t0x93BA\n0xEF62\t0x93C6\n0xEF63\t0x93DE\n0xEF64\t0x93DF\n0xEF65\t0x9404\n0xEF66\t0x93FD\n0xEF67\t0x9433\n0xEF68\t0x944A\n0xEF69\t0x9463\n0xEF6A\t0x946B\n0xEF6B\t0x9471\n0xEF6C\t0x9472\n0xEF6D\t0x958E\n0xEF6E\t0x959F\n0xEF6F\t0x95A6\n0xEF70\t0x95A9\n0xEF71\t0x95AC\n0xEF72\t0x95B6\n0xEF73\t0x95BD\n0xEF74\t0x95CB\n0xEF75\t0x95D0\n0xEF76\t0x95D3\n0xEF77\t0x49B0\n0xEF78\t0x95DA\n0xEF79\t0x95DE\n0xEF7A\t0x9658\n0xEF7B\t0x9684\n0xEF7C\t0xF9DC\n0xEF7D\t0x969D\n0xEF7E\t0x96A4\n0xEF80\t0x96A5\n0xEF81\t0x96D2\n0xEF82\t0x96DE\n0xEF83\t0xFA68\n0xEF84\t0x96E9\n0xEF85\t0x96EF\n0xEF86\t0x9733\n0xEF87\t0x973B\n0xEF88\t0x974D\n0xEF89\t0x974E\n0xEF8A\t0x974F\n0xEF8B\t0x975A\n0xEF8C\t0x976E\n0xEF8D\t0x9773\n0xEF8E\t0x9795\n0xEF8F\t0x97AE\n0xEF90\t0x97BA\n0xEF91\t0x97C1\n0xEF92\t0x97C9\n0xEF93\t0x97DE\n0xEF94\t0x97DB\n0xEF95\t0x97F4\n0xEF96\t0xFA69\n0xEF97\t0x980A\n0xEF98\t0x981E\n0xEF99\t0x982B\n0xEF9A\t0x9830\n0xEF9B\t0xFA6A\n0xEF9C\t0x9852\n0xEF9D\t0x9853\n0xEF9E\t0x9856\n0xEF9F\t0x9857\n0xEFA0\t0x9859\n0xEFA1\t0x985A\n0xEFA2\t0xF9D0\n0xEFA3\t0x9865\n0xEFA4\t0x986C\n0xEFA5\t0x98BA\n0xEFA6\t0x98C8\n0xEFA7\t0x98E7\n0xEFA8\t0x9958\n0xEFA9\t0x999E\n0xEFAA\t0x9A02\n0xEFAB\t0x9A03\n0xEFAC\t0x9A24\n0xEFAD\t0x9A2D\n0xEFAE\t0x9A2E\n0xEFAF\t0x9A38\n0xEFB0\t0x9A4A\n0xEFB1\t0x9A4E\n0xEFB2\t0x9A52\n0xEFB3\t0x9AB6\n0xEFB4\t0x9AC1\n0xEFB5\t0x9AC3\n0xEFB6\t0x9ACE\n0xEFB7\t0x9AD6\n0xEFB8\t0x9AF9\n0xEFB9\t0x9B02\n0xEFBA\t0x9B08\n0xEFBB\t0x9B20\n0xEFBC\t0x4C17\n0xEFBD\t0x9B2D\n0xEFBE\t0x9B5E\n0xEFBF\t0x9B79\n0xEFC0\t0x9B66\n0xEFC1\t0x9B72\n0xEFC2\t0x9B75\n0xEFC3\t0x9B84\n0xEFC4\t0x9B8A\n0xEFC5\t0x9B8F\n0xEFC6\t0x9B9E\n0xEFC7\t0x9BA7\n0xEFC8\t0x9BC1\n0xEFC9\t0x9BCE\n0xEFCA\t0x9BE5\n0xEFCB\t0x9BF8\n0xEFCC\t0x9BFD\n0xEFCD\t0x9C00\n0xEFCE\t0x9C23\n0xEFCF\t0x9C41\n0xEFD0\t0x9C4F\n0xEFD1\t0x9C50\n0xEFD2\t0x9C53\n0xEFD3\t0x9C63\n0xEFD4\t0x9C65\n0xEFD5\t0x9C77\n0xEFD6\t0x9D1D\n0xEFD7\t0x9D1E\n0xEFD8\t0x9D43\n0xEFD9\t0x9D47\n0xEFDA\t0x9D52\n0xEFDB\t0x9D63\n0xEFDC\t0x9D70\n0xEFDD\t0x9D7C\n0xEFDE\t0x9D8A\n0xEFDF\t0x9D96\n0xEFE0\t0x9DC0\n0xEFE1\t0x9DAC\n0xEFE2\t0x9DBC\n0xEFE3\t0x9DD7\n0xEFE4\t0x2A190\n0xEFE5\t0x9DE7\n0xEFE6\t0x9E07\n0xEFE7\t0x9E15\n0xEFE8\t0x9E7C\n0xEFE9\t0x9E9E\n0xEFEA\t0x9EA4\n0xEFEB\t0x9EAC\n0xEFEC\t0x9EAF\n0xEFED\t0x9EB4\n0xEFEE\t0x9EB5\n0xEFEF\t0x9EC3\n0xEFF0\t0x9ED1\n0xEFF1\t0x9F10\n0xEFF2\t0x9F39\n0xEFF3\t0x9F57\n0xEFF4\t0x9F90\n0xEFF5\t0x9F94\n0xEFF6\t0x9F97\n0xEFF7\t0x9FA2\n0xEFF8\t0x59F8\n0xEFF9\t0x5C5B\n0xEFFA\t0x5E77\n0xEFFB\t0x7626\n0xEFFC\t0x7E6B\n0xF040\t0x20089\n0xF041\t0x4E02\n0xF042\t0x4E0F\n0xF043\t0x4E12\n0xF044\t0x4E29\n0xF045\t0x4E2B\n0xF046\t0x4E2E\n0xF047\t0x4E40\n0xF048\t0x4E47\n0xF049\t0x4E48\n0xF04A\t0x200A2\n0xF04B\t0x4E51\n0xF04C\t0x3406\n0xF04D\t0x200A4\n0xF04E\t0x4E5A\n0xF04F\t0x4E69\n0xF050\t0x4E9D\n0xF051\t0x342C\n0xF052\t0x342E\n0xF053\t0x4EB9\n0xF054\t0x4EBB\n0xF055\t0x201A2\n0xF056\t0x4EBC\n0xF057\t0x4EC3\n0xF058\t0x4EC8\n0xF059\t0x4ED0\n0xF05A\t0x4EEB\n0xF05B\t0x4EDA\n0xF05C\t0x4EF1\n0xF05D\t0x4EF5\n0xF05E\t0x4F00\n0xF05F\t0x4F16\n0xF060\t0x4F64\n0xF061\t0x4F37\n0xF062\t0x4F3E\n0xF063\t0x4F54\n0xF064\t0x4F58\n0xF065\t0x20213\n0xF066\t0x4F77\n0xF067\t0x4F78\n0xF068\t0x4F7A\n0xF069\t0x4F7D\n0xF06A\t0x4F82\n0xF06B\t0x4F85\n0xF06C\t0x4F92\n0xF06D\t0x4F9A\n0xF06E\t0x4FE6\n0xF06F\t0x4FB2\n0xF070\t0x4FBE\n0xF071\t0x4FC5\n0xF072\t0x4FCB\n0xF073\t0x4FCF\n0xF074\t0x4FD2\n0xF075\t0x346A\n0xF076\t0x4FF2\n0xF077\t0x5000\n0xF078\t0x5010\n0xF079\t0x5013\n0xF07A\t0x501C\n0xF07B\t0x501E\n0xF07C\t0x5022\n0xF07D\t0x3468\n0xF07E\t0x5042\n0xF080\t0x5046\n0xF081\t0x504E\n0xF082\t0x5053\n0xF083\t0x5057\n0xF084\t0x5063\n0xF085\t0x5066\n0xF086\t0x506A\n0xF087\t0x5070\n0xF088\t0x50A3\n0xF089\t0x5088\n0xF08A\t0x5092\n0xF08B\t0x5093\n0xF08C\t0x5095\n0xF08D\t0x5096\n0xF08E\t0x509C\n0xF08F\t0x50AA\n0xF090\t0x2032B\n0xF091\t0x50B1\n0xF092\t0x50BA\n0xF093\t0x50BB\n0xF094\t0x50C4\n0xF095\t0x50C7\n0xF096\t0x50F3\n0xF097\t0x20381\n0xF098\t0x50CE\n0xF099\t0x20371\n0xF09A\t0x50D4\n0xF09B\t0x50D9\n0xF09C\t0x50E1\n0xF09D\t0x50E9\n0xF09E\t0x3492\n0xF09F\t0x5B96\n0xF0A0\t0x5BAC\n0xF0A1\t0x3761\n0xF0A2\t0x5BC0\n0xF0A3\t0x3762\n0xF0A4\t0x5BCE\n0xF0A5\t0x5BD6\n0xF0A6\t0x376C\n0xF0A7\t0x376B\n0xF0A8\t0x5BF1\n0xF0A9\t0x5BFD\n0xF0AA\t0x3775\n0xF0AB\t0x5C03\n0xF0AC\t0x5C29\n0xF0AD\t0x5C30\n0xF0AE\t0x21C56\n0xF0AF\t0x5C5F\n0xF0B0\t0x5C63\n0xF0B1\t0x5C67\n0xF0B2\t0x5C68\n0xF0B3\t0x5C69\n0xF0B4\t0x5C70\n0xF0B5\t0x21D2D\n0xF0B6\t0x21D45\n0xF0B7\t0x5C7C\n0xF0B8\t0x21D78\n0xF0B9\t0x21D62\n0xF0BA\t0x5C88\n0xF0BB\t0x5C8A\n0xF0BC\t0x37C1\n0xF0BD\t0x21DA1\n0xF0BE\t0x21D9C\n0xF0BF\t0x5CA0\n0xF0C0\t0x5CA2\n0xF0C1\t0x5CA6\n0xF0C2\t0x5CA7\n0xF0C3\t0x21D92\n0xF0C4\t0x5CAD\n0xF0C5\t0x5CB5\n0xF0C6\t0x21DB7\n0xF0C7\t0x5CC9\n0xF0C8\t0x21DE0\n0xF0C9\t0x21E33\n0xF0CA\t0x5D06\n0xF0CB\t0x5D10\n0xF0CC\t0x5D2B\n0xF0CD\t0x5D1D\n0xF0CE\t0x5D20\n0xF0CF\t0x5D24\n0xF0D0\t0x5D26\n0xF0D1\t0x5D31\n0xF0D2\t0x5D39\n0xF0D3\t0x5D42\n0xF0D4\t0x37E8\n0xF0D5\t0x5D61\n0xF0D6\t0x5D6A\n0xF0D7\t0x37F4\n0xF0D8\t0x5D70\n0xF0D9\t0x21F1E\n0xF0DA\t0x37FD\n0xF0DB\t0x5D88\n0xF0DC\t0x3800\n0xF0DD\t0x5D92\n0xF0DE\t0x5D94\n0xF0DF\t0x5D97\n0xF0E0\t0x5D99\n0xF0E1\t0x5DB0\n0xF0E2\t0x5DB2\n0xF0E3\t0x5DB4\n0xF0E4\t0x21F76\n0xF0E5\t0x5DB9\n0xF0E6\t0x5DD1\n0xF0E7\t0x5DD7\n0xF0E8\t0x5DD8\n0xF0E9\t0x5DE0\n0xF0EA\t0x21FFA\n0xF0EB\t0x5DE4\n0xF0EC\t0x5DE9\n0xF0ED\t0x382F\n0xF0EE\t0x5E00\n0xF0EF\t0x3836\n0xF0F0\t0x5E12\n0xF0F1\t0x5E15\n0xF0F2\t0x3840\n0xF0F3\t0x5E1F\n0xF0F4\t0x5E2E\n0xF0F5\t0x5E3E\n0xF0F6\t0x5E49\n0xF0F7\t0x385C\n0xF0F8\t0x5E56\n0xF0F9\t0x3861\n0xF0FA\t0x5E6B\n0xF0FB\t0x5E6C\n0xF0FC\t0x5E6D\n0xF140\t0x5108\n0xF141\t0x203F9\n0xF142\t0x5117\n0xF143\t0x511B\n0xF144\t0x2044A\n0xF145\t0x5160\n0xF146\t0x20509\n0xF147\t0x5173\n0xF148\t0x5183\n0xF149\t0x518B\n0xF14A\t0x34BC\n0xF14B\t0x5198\n0xF14C\t0x51A3\n0xF14D\t0x51AD\n0xF14E\t0x34C7\n0xF14F\t0x51BC\n0xF150\t0x205D6\n0xF151\t0x20628\n0xF152\t0x51F3\n0xF153\t0x51F4\n0xF154\t0x5202\n0xF155\t0x5212\n0xF156\t0x5216\n0xF157\t0x2074F\n0xF158\t0x5255\n0xF159\t0x525C\n0xF15A\t0x526C\n0xF15B\t0x5277\n0xF15C\t0x5284\n0xF15D\t0x5282\n0xF15E\t0x20807\n0xF15F\t0x5298\n0xF160\t0x2083A\n0xF161\t0x52A4\n0xF162\t0x52A6\n0xF163\t0x52AF\n0xF164\t0x52BA\n0xF165\t0x52BB\n0xF166\t0x52CA\n0xF167\t0x351F\n0xF168\t0x52D1\n0xF169\t0x208B9\n0xF16A\t0x52F7\n0xF16B\t0x530A\n0xF16C\t0x530B\n0xF16D\t0x5324\n0xF16E\t0x5335\n0xF16F\t0x533E\n0xF170\t0x5342\n0xF171\t0x2097C\n0xF172\t0x2099D\n0xF173\t0x5367\n0xF174\t0x536C\n0xF175\t0x537A\n0xF176\t0x53A4\n0xF177\t0x53B4\n0xF178\t0x20AD3\n0xF179\t0x53B7\n0xF17A\t0x53C0\n0xF17B\t0x20B1D\n0xF17C\t0x355D\n0xF17D\t0x355E\n0xF17E\t0x53D5\n0xF180\t0x53DA\n0xF181\t0x3563\n0xF182\t0x53F4\n0xF183\t0x53F5\n0xF184\t0x5455\n0xF185\t0x5424\n0xF186\t0x5428\n0xF187\t0x356E\n0xF188\t0x5443\n0xF189\t0x5462\n0xF18A\t0x5466\n0xF18B\t0x546C\n0xF18C\t0x548A\n0xF18D\t0x548D\n0xF18E\t0x5495\n0xF18F\t0x54A0\n0xF190\t0x54A6\n0xF191\t0x54AD\n0xF192\t0x54AE\n0xF193\t0x54B7\n0xF194\t0x54BA\n0xF195\t0x54BF\n0xF196\t0x54C3\n0xF197\t0x20D45\n0xF198\t0x54EC\n0xF199\t0x54EF\n0xF19A\t0x54F1\n0xF19B\t0x54F3\n0xF19C\t0x5500\n0xF19D\t0x5501\n0xF19E\t0x5509\n0xF19F\t0x553C\n0xF1A0\t0x5541\n0xF1A1\t0x35A6\n0xF1A2\t0x5547\n0xF1A3\t0x554A\n0xF1A4\t0x35A8\n0xF1A5\t0x5560\n0xF1A6\t0x5561\n0xF1A7\t0x5564\n0xF1A8\t0x20DE1\n0xF1A9\t0x557D\n0xF1AA\t0x5582\n0xF1AB\t0x5588\n0xF1AC\t0x5591\n0xF1AD\t0x35C5\n0xF1AE\t0x55D2\n0xF1AF\t0x20E95\n0xF1B0\t0x20E6D\n0xF1B1\t0x55BF\n0xF1B2\t0x55C9\n0xF1B3\t0x55CC\n0xF1B4\t0x55D1\n0xF1B5\t0x55DD\n0xF1B6\t0x35DA\n0xF1B7\t0x55E2\n0xF1B8\t0x20E64\n0xF1B9\t0x55E9\n0xF1BA\t0x5628\n0xF1BB\t0x20F5F\n0xF1BC\t0x5607\n0xF1BD\t0x5610\n0xF1BE\t0x5630\n0xF1BF\t0x5637\n0xF1C0\t0x35F4\n0xF1C1\t0x563D\n0xF1C2\t0x563F\n0xF1C3\t0x5640\n0xF1C4\t0x5647\n0xF1C5\t0x565E\n0xF1C6\t0x5660\n0xF1C7\t0x566D\n0xF1C8\t0x3605\n0xF1C9\t0x5688\n0xF1CA\t0x568C\n0xF1CB\t0x5695\n0xF1CC\t0x569A\n0xF1CD\t0x569D\n0xF1CE\t0x56A8\n0xF1CF\t0x56AD\n0xF1D0\t0x56B2\n0xF1D1\t0x56C5\n0xF1D2\t0x56CD\n0xF1D3\t0x56DF\n0xF1D4\t0x56E8\n0xF1D5\t0x56F6\n0xF1D6\t0x56F7\n0xF1D7\t0x21201\n0xF1D8\t0x5715\n0xF1D9\t0x5723\n0xF1DA\t0x21255\n0xF1DB\t0x5729\n0xF1DC\t0x2127B\n0xF1DD\t0x5745\n0xF1DE\t0x5746\n0xF1DF\t0x574C\n0xF1E0\t0x574D\n0xF1E1\t0x21274\n0xF1E2\t0x5768\n0xF1E3\t0x576F\n0xF1E4\t0x5773\n0xF1E5\t0x5774\n0xF1E6\t0x5775\n0xF1E7\t0x577B\n0xF1E8\t0x212E4\n0xF1E9\t0x212D7\n0xF1EA\t0x57AC\n0xF1EB\t0x579A\n0xF1EC\t0x579D\n0xF1ED\t0x579E\n0xF1EE\t0x57A8\n0xF1EF\t0x57D7\n0xF1F0\t0x212FD\n0xF1F1\t0x57CC\n0xF1F2\t0x21336\n0xF1F3\t0x21344\n0xF1F4\t0x57DE\n0xF1F5\t0x57E6\n0xF1F6\t0x57F0\n0xF1F7\t0x364A\n0xF1F8\t0x57F8\n0xF1F9\t0x57FB\n0xF1FA\t0x57FD\n0xF1FB\t0x5804\n0xF1FC\t0x581E\n0xF240\t0x5820\n0xF241\t0x5827\n0xF242\t0x5832\n0xF243\t0x5839\n0xF244\t0x213C4\n0xF245\t0x5849\n0xF246\t0x584C\n0xF247\t0x5867\n0xF248\t0x588A\n0xF249\t0x588B\n0xF24A\t0x588D\n0xF24B\t0x588F\n0xF24C\t0x5890\n0xF24D\t0x5894\n0xF24E\t0x589D\n0xF24F\t0x58AA\n0xF250\t0x58B1\n0xF251\t0x2146D\n0xF252\t0x58C3\n0xF253\t0x58CD\n0xF254\t0x58E2\n0xF255\t0x58F3\n0xF256\t0x58F4\n0xF257\t0x5905\n0xF258\t0x5906\n0xF259\t0x590B\n0xF25A\t0x590D\n0xF25B\t0x5914\n0xF25C\t0x5924\n0xF25D\t0x215D7\n0xF25E\t0x3691\n0xF25F\t0x593D\n0xF260\t0x3699\n0xF261\t0x5946\n0xF262\t0x3696\n0xF263\t0x26C29\n0xF264\t0x595B\n0xF265\t0x595F\n0xF266\t0x21647\n0xF267\t0x5975\n0xF268\t0x5976\n0xF269\t0x597C\n0xF26A\t0x599F\n0xF26B\t0x59AE\n0xF26C\t0x59BC\n0xF26D\t0x59C8\n0xF26E\t0x59CD\n0xF26F\t0x59DE\n0xF270\t0x59E3\n0xF271\t0x59E4\n0xF272\t0x59E7\n0xF273\t0x59EE\n0xF274\t0x21706\n0xF275\t0x21742\n0xF276\t0x36CF\n0xF277\t0x5A0C\n0xF278\t0x5A0D\n0xF279\t0x5A17\n0xF27A\t0x5A27\n0xF27B\t0x5A2D\n0xF27C\t0x5A55\n0xF27D\t0x5A65\n0xF27E\t0x5A7A\n0xF280\t0x5A8B\n0xF281\t0x5A9C\n0xF282\t0x5A9F\n0xF283\t0x5AA0\n0xF284\t0x5AA2\n0xF285\t0x5AB1\n0xF286\t0x5AB3\n0xF287\t0x5AB5\n0xF288\t0x5ABA\n0xF289\t0x5ABF\n0xF28A\t0x5ADA\n0xF28B\t0x5ADC\n0xF28C\t0x5AE0\n0xF28D\t0x5AE5\n0xF28E\t0x5AF0\n0xF28F\t0x5AEE\n0xF290\t0x5AF5\n0xF291\t0x5B00\n0xF292\t0x5B08\n0xF293\t0x5B17\n0xF294\t0x5B34\n0xF295\t0x5B2D\n0xF296\t0x5B4C\n0xF297\t0x5B52\n0xF298\t0x5B68\n0xF299\t0x5B6F\n0xF29A\t0x5B7C\n0xF29B\t0x5B7F\n0xF29C\t0x5B81\n0xF29D\t0x5B84\n0xF29E\t0x219C3\n0xF29F\t0x5E6E\n0xF2A0\t0x2217B\n0xF2A1\t0x5EA5\n0xF2A2\t0x5EAA\n0xF2A3\t0x5EAC\n0xF2A4\t0x5EB9\n0xF2A5\t0x5EBF\n0xF2A6\t0x5EC6\n0xF2A7\t0x5ED2\n0xF2A8\t0x5ED9\n0xF2A9\t0x2231E\n0xF2AA\t0x5EFD\n0xF2AB\t0x5F08\n0xF2AC\t0x5F0E\n0xF2AD\t0x5F1C\n0xF2AE\t0x223AD\n0xF2AF\t0x5F1E\n0xF2B0\t0x5F47\n0xF2B1\t0x5F63\n0xF2B2\t0x5F72\n0xF2B3\t0x5F7E\n0xF2B4\t0x5F8F\n0xF2B5\t0x5FA2\n0xF2B6\t0x5FA4\n0xF2B7\t0x5FB8\n0xF2B8\t0x5FC4\n0xF2B9\t0x38FA\n0xF2BA\t0x5FC7\n0xF2BB\t0x5FCB\n0xF2BC\t0x5FD2\n0xF2BD\t0x5FD3\n0xF2BE\t0x5FD4\n0xF2BF\t0x5FE2\n0xF2C0\t0x5FEE\n0xF2C1\t0x5FEF\n0xF2C2\t0x5FF3\n0xF2C3\t0x5FFC\n0xF2C4\t0x3917\n0xF2C5\t0x6017\n0xF2C6\t0x6022\n0xF2C7\t0x6024\n0xF2C8\t0x391A\n0xF2C9\t0x604C\n0xF2CA\t0x607F\n0xF2CB\t0x608A\n0xF2CC\t0x6095\n0xF2CD\t0x60A8\n0xF2CE\t0x226F3\n0xF2CF\t0x60B0\n0xF2D0\t0x60B1\n0xF2D1\t0x60BE\n0xF2D2\t0x60C8\n0xF2D3\t0x60D9\n0xF2D4\t0x60DB\n0xF2D5\t0x60EE\n0xF2D6\t0x60F2\n0xF2D7\t0x60F5\n0xF2D8\t0x6110\n0xF2D9\t0x6112\n0xF2DA\t0x6113\n0xF2DB\t0x6119\n0xF2DC\t0x611E\n0xF2DD\t0x613A\n0xF2DE\t0x396F\n0xF2DF\t0x6141\n0xF2E0\t0x6146\n0xF2E1\t0x6160\n0xF2E2\t0x617C\n0xF2E3\t0x2285B\n0xF2E4\t0x6192\n0xF2E5\t0x6193\n0xF2E6\t0x6197\n0xF2E7\t0x6198\n0xF2E8\t0x61A5\n0xF2E9\t0x61A8\n0xF2EA\t0x61AD\n0xF2EB\t0x228AB\n0xF2EC\t0x61D5\n0xF2ED\t0x61DD\n0xF2EE\t0x61DF\n0xF2EF\t0x61F5\n0xF2F0\t0x2298F\n0xF2F1\t0x6215\n0xF2F2\t0x6223\n0xF2F3\t0x6229\n0xF2F4\t0x6246\n0xF2F5\t0x624C\n0xF2F6\t0x6251\n0xF2F7\t0x6252\n0xF2F8\t0x6261\n0xF2F9\t0x6264\n0xF2FA\t0x627B\n0xF2FB\t0x626D\n0xF2FC\t0x6273\n0xF340\t0x6299\n0xF341\t0x62A6\n0xF342\t0x62D5\n0xF343\t0x22AB8\n0xF344\t0x62FD\n0xF345\t0x6303\n0xF346\t0x630D\n0xF347\t0x6310\n0xF348\t0x22B4F\n0xF349\t0x22B50\n0xF34A\t0x6332\n0xF34B\t0x6335\n0xF34C\t0x633B\n0xF34D\t0x633C\n0xF34E\t0x6341\n0xF34F\t0x6344\n0xF350\t0x634E\n0xF351\t0x22B46\n0xF352\t0x6359\n0xF353\t0x22C1D\n0xF354\t0x22BA6\n0xF355\t0x636C\n0xF356\t0x6384\n0xF357\t0x6399\n0xF358\t0x22C24\n0xF359\t0x6394\n0xF35A\t0x63BD\n0xF35B\t0x63F7\n0xF35C\t0x63D4\n0xF35D\t0x63D5\n0xF35E\t0x63DC\n0xF35F\t0x63E0\n0xF360\t0x63EB\n0xF361\t0x63EC\n0xF362\t0x63F2\n0xF363\t0x6409\n0xF364\t0x641E\n0xF365\t0x6425\n0xF366\t0x6429\n0xF367\t0x642F\n0xF368\t0x645A\n0xF369\t0x645B\n0xF36A\t0x645D\n0xF36B\t0x6473\n0xF36C\t0x647D\n0xF36D\t0x6487\n0xF36E\t0x6491\n0xF36F\t0x649D\n0xF370\t0x649F\n0xF371\t0x64CB\n0xF372\t0x64CC\n0xF373\t0x64D5\n0xF374\t0x64D7\n0xF375\t0x22DE1\n0xF376\t0x64E4\n0xF377\t0x64E5\n0xF378\t0x64FF\n0xF379\t0x6504\n0xF37A\t0x3A6E\n0xF37B\t0x650F\n0xF37C\t0x6514\n0xF37D\t0x6516\n0xF37E\t0x3A73\n0xF380\t0x651E\n0xF381\t0x6532\n0xF382\t0x6544\n0xF383\t0x6554\n0xF384\t0x656B\n0xF385\t0x657A\n0xF386\t0x6581\n0xF387\t0x6584\n0xF388\t0x6585\n0xF389\t0x658A\n0xF38A\t0x65B2\n0xF38B\t0x65B5\n0xF38C\t0x65B8\n0xF38D\t0x65BF\n0xF38E\t0x65C2\n0xF38F\t0x65C9\n0xF390\t0x65D4\n0xF391\t0x3AD6\n0xF392\t0x65F2\n0xF393\t0x65F9\n0xF394\t0x65FC\n0xF395\t0x6604\n0xF396\t0x6608\n0xF397\t0x6621\n0xF398\t0x662A\n0xF399\t0x6645\n0xF39A\t0x6651\n0xF39B\t0x664E\n0xF39C\t0x3AEA\n0xF39D\t0x231C3\n0xF39E\t0x6657\n0xF39F\t0x665B\n0xF3A0\t0x6663\n0xF3A1\t0x231F5\n0xF3A2\t0x231B6\n0xF3A3\t0x666A\n0xF3A4\t0x666B\n0xF3A5\t0x666C\n0xF3A6\t0x666D\n0xF3A7\t0x667B\n0xF3A8\t0x6680\n0xF3A9\t0x6690\n0xF3AA\t0x6692\n0xF3AB\t0x6699\n0xF3AC\t0x3B0E\n0xF3AD\t0x66AD\n0xF3AE\t0x66B1\n0xF3AF\t0x66B5\n0xF3B0\t0x3B1A\n0xF3B1\t0x66BF\n0xF3B2\t0x3B1C\n0xF3B3\t0x66EC\n0xF3B4\t0x3AD7\n0xF3B5\t0x6701\n0xF3B6\t0x6705\n0xF3B7\t0x6712\n0xF3B8\t0x23372\n0xF3B9\t0x6719\n0xF3BA\t0x233D3\n0xF3BB\t0x233D2\n0xF3BC\t0x674C\n0xF3BD\t0x674D\n0xF3BE\t0x6754\n0xF3BF\t0x675D\n0xF3C0\t0x233D0\n0xF3C1\t0x233E4\n0xF3C2\t0x233D5\n0xF3C3\t0x6774\n0xF3C4\t0x6776\n0xF3C5\t0x233DA\n0xF3C6\t0x6792\n0xF3C7\t0x233DF\n0xF3C8\t0x8363\n0xF3C9\t0x6810\n0xF3CA\t0x67B0\n0xF3CB\t0x67B2\n0xF3CC\t0x67C3\n0xF3CD\t0x67C8\n0xF3CE\t0x67D2\n0xF3CF\t0x67D9\n0xF3D0\t0x67DB\n0xF3D1\t0x67F0\n0xF3D2\t0x67F7\n0xF3D3\t0x2344A\n0xF3D4\t0x23451\n0xF3D5\t0x2344B\n0xF3D6\t0x6818\n0xF3D7\t0x681F\n0xF3D8\t0x682D\n0xF3D9\t0x23465\n0xF3DA\t0x6833\n0xF3DB\t0x683B\n0xF3DC\t0x683E\n0xF3DD\t0x6844\n0xF3DE\t0x6845\n0xF3DF\t0x6849\n0xF3E0\t0x684C\n0xF3E1\t0x6855\n0xF3E2\t0x6857\n0xF3E3\t0x3B77\n0xF3E4\t0x686B\n0xF3E5\t0x686E\n0xF3E6\t0x687A\n0xF3E7\t0x687C\n0xF3E8\t0x6882\n0xF3E9\t0x6890\n0xF3EA\t0x6896\n0xF3EB\t0x3B6D\n0xF3EC\t0x6898\n0xF3ED\t0x6899\n0xF3EE\t0x689A\n0xF3EF\t0x689C\n0xF3F0\t0x68AA\n0xF3F1\t0x68AB\n0xF3F2\t0x68B4\n0xF3F3\t0x68BB\n0xF3F4\t0x68FB\n0xF3F5\t0x234E4\n0xF3F6\t0x2355A\n0xF3F7\t0xFA13\n0xF3F8\t0x68C3\n0xF3F9\t0x68C5\n0xF3FA\t0x68CC\n0xF3FB\t0x68CF\n0xF3FC\t0x68D6\n0xF440\t0x68D9\n0xF441\t0x68E4\n0xF442\t0x68E5\n0xF443\t0x68EC\n0xF444\t0x68F7\n0xF445\t0x6903\n0xF446\t0x6907\n0xF447\t0x3B87\n0xF448\t0x3B88\n0xF449\t0x23594\n0xF44A\t0x693B\n0xF44B\t0x3B8D\n0xF44C\t0x6946\n0xF44D\t0x6969\n0xF44E\t0x696C\n0xF44F\t0x6972\n0xF450\t0x697A\n0xF451\t0x697F\n0xF452\t0x6992\n0xF453\t0x3BA4\n0xF454\t0x6996\n0xF455\t0x6998\n0xF456\t0x69A6\n0xF457\t0x69B0\n0xF458\t0x69B7\n0xF459\t0x69BA\n0xF45A\t0x69BC\n0xF45B\t0x69C0\n0xF45C\t0x69D1\n0xF45D\t0x69D6\n0xF45E\t0x23639\n0xF45F\t0x23647\n0xF460\t0x6A30\n0xF461\t0x23638\n0xF462\t0x2363A\n0xF463\t0x69E3\n0xF464\t0x69EE\n0xF465\t0x69EF\n0xF466\t0x69F3\n0xF467\t0x3BCD\n0xF468\t0x69F4\n0xF469\t0x69FE\n0xF46A\t0x6A11\n0xF46B\t0x6A1A\n0xF46C\t0x6A1D\n0xF46D\t0x2371C\n0xF46E\t0x6A32\n0xF46F\t0x6A33\n0xF470\t0x6A34\n0xF471\t0x6A3F\n0xF472\t0x6A46\n0xF473\t0x6A49\n0xF474\t0x6A7A\n0xF475\t0x6A4E\n0xF476\t0x6A52\n0xF477\t0x6A64\n0xF478\t0x2370C\n0xF479\t0x6A7E\n0xF47A\t0x6A83\n0xF47B\t0x6A8B\n0xF47C\t0x3BF0\n0xF47D\t0x6A91\n0xF47E\t0x6A9F\n0xF480\t0x6AA1\n0xF481\t0x23764\n0xF482\t0x6AAB\n0xF483\t0x6ABD\n0xF484\t0x6AC6\n0xF485\t0x6AD4\n0xF486\t0x6AD0\n0xF487\t0x6ADC\n0xF488\t0x6ADD\n0xF489\t0x237FF\n0xF48A\t0x237E7\n0xF48B\t0x6AEC\n0xF48C\t0x6AF1\n0xF48D\t0x6AF2\n0xF48E\t0x6AF3\n0xF48F\t0x6AFD\n0xF490\t0x23824\n0xF491\t0x6B0B\n0xF492\t0x6B0F\n0xF493\t0x6B10\n0xF494\t0x6B11\n0xF495\t0x2383D\n0xF496\t0x6B17\n0xF497\t0x3C26\n0xF498\t0x6B2F\n0xF499\t0x6B4A\n0xF49A\t0x6B58\n0xF49B\t0x6B6C\n0xF49C\t0x6B75\n0xF49D\t0x6B7A\n0xF49E\t0x6B81\n0xF49F\t0x6B9B\n0xF4A0\t0x6BAE\n0xF4A1\t0x23A98\n0xF4A2\t0x6BBD\n0xF4A3\t0x6BBE\n0xF4A4\t0x6BC7\n0xF4A5\t0x6BC8\n0xF4A6\t0x6BC9\n0xF4A7\t0x6BDA\n0xF4A8\t0x6BE6\n0xF4A9\t0x6BE7\n0xF4AA\t0x6BEE\n0xF4AB\t0x6BF1\n0xF4AC\t0x6C02\n0xF4AD\t0x6C0A\n0xF4AE\t0x6C0E\n0xF4AF\t0x6C35\n0xF4B0\t0x6C36\n0xF4B1\t0x6C3A\n0xF4B2\t0x23C7F\n0xF4B3\t0x6C3F\n0xF4B4\t0x6C4D\n0xF4B5\t0x6C5B\n0xF4B6\t0x6C6D\n0xF4B7\t0x6C84\n0xF4B8\t0x6C89\n0xF4B9\t0x3CC3\n0xF4BA\t0x6C94\n0xF4BB\t0x6C95\n0xF4BC\t0x6C97\n0xF4BD\t0x6CAD\n0xF4BE\t0x6CC2\n0xF4BF\t0x6CD0\n0xF4C0\t0x3CD2\n0xF4C1\t0x6CD6\n0xF4C2\t0x6CDA\n0xF4C3\t0x6CDC\n0xF4C4\t0x6CE9\n0xF4C5\t0x6CEC\n0xF4C6\t0x6CED\n0xF4C7\t0x23D00\n0xF4C8\t0x6D00\n0xF4C9\t0x6D0A\n0xF4CA\t0x6D24\n0xF4CB\t0x6D26\n0xF4CC\t0x6D27\n0xF4CD\t0x6C67\n0xF4CE\t0x6D2F\n0xF4CF\t0x6D3C\n0xF4D0\t0x6D5B\n0xF4D1\t0x6D5E\n0xF4D2\t0x6D60\n0xF4D3\t0x6D70\n0xF4D4\t0x6D80\n0xF4D5\t0x6D81\n0xF4D6\t0x6D8A\n0xF4D7\t0x6D8D\n0xF4D8\t0x6D91\n0xF4D9\t0x6D98\n0xF4DA\t0x23D40\n0xF4DB\t0x6E17\n0xF4DC\t0x23DFA\n0xF4DD\t0x23DF9\n0xF4DE\t0x23DD3\n0xF4DF\t0x6DAB\n0xF4E0\t0x6DAE\n0xF4E1\t0x6DB4\n0xF4E2\t0x6DC2\n0xF4E3\t0x6D34\n0xF4E4\t0x6DC8\n0xF4E5\t0x6DCE\n0xF4E6\t0x6DCF\n0xF4E7\t0x6DD0\n0xF4E8\t0x6DDF\n0xF4E9\t0x6DE9\n0xF4EA\t0x6DF6\n0xF4EB\t0x6E36\n0xF4EC\t0x6E1E\n0xF4ED\t0x6E22\n0xF4EE\t0x6E27\n0xF4EF\t0x3D11\n0xF4F0\t0x6E32\n0xF4F1\t0x6E3C\n0xF4F2\t0x6E48\n0xF4F3\t0x6E49\n0xF4F4\t0x6E4B\n0xF4F5\t0x6E4C\n0xF4F6\t0x6E4F\n0xF4F7\t0x6E51\n0xF4F8\t0x6E53\n0xF4F9\t0x6E54\n0xF4FA\t0x6E57\n0xF4FB\t0x6E63\n0xF4FC\t0x3D1E\n0xF540\t0x6E93\n0xF541\t0x6EA7\n0xF542\t0x6EB4\n0xF543\t0x6EBF\n0xF544\t0x6EC3\n0xF545\t0x6ECA\n0xF546\t0x6ED9\n0xF547\t0x6F35\n0xF548\t0x6EEB\n0xF549\t0x6EF9\n0xF54A\t0x6EFB\n0xF54B\t0x6F0A\n0xF54C\t0x6F0C\n0xF54D\t0x6F18\n0xF54E\t0x6F25\n0xF54F\t0x6F36\n0xF550\t0x6F3C\n0xF551\t0x23F7E\n0xF552\t0x6F52\n0xF553\t0x6F57\n0xF554\t0x6F5A\n0xF555\t0x6F60\n0xF556\t0x6F68\n0xF557\t0x6F98\n0xF558\t0x6F7D\n0xF559\t0x6F90\n0xF55A\t0x6F96\n0xF55B\t0x6FBE\n0xF55C\t0x6F9F\n0xF55D\t0x6FA5\n0xF55E\t0x6FAF\n0xF55F\t0x3D64\n0xF560\t0x6FB5\n0xF561\t0x6FC8\n0xF562\t0x6FC9\n0xF563\t0x6FDA\n0xF564\t0x6FDE\n0xF565\t0x6FE9\n0xF566\t0x24096\n0xF567\t0x6FFC\n0xF568\t0x7000\n0xF569\t0x7007\n0xF56A\t0x700A\n0xF56B\t0x7023\n0xF56C\t0x24103\n0xF56D\t0x7039\n0xF56E\t0x703A\n0xF56F\t0x703C\n0xF570\t0x7043\n0xF571\t0x7047\n0xF572\t0x704B\n0xF573\t0x3D9A\n0xF574\t0x7054\n0xF575\t0x7065\n0xF576\t0x7069\n0xF577\t0x706C\n0xF578\t0x706E\n0xF579\t0x7076\n0xF57A\t0x707E\n0xF57B\t0x7081\n0xF57C\t0x7086\n0xF57D\t0x7095\n0xF57E\t0x7097\n0xF580\t0x70BB\n0xF581\t0x241C6\n0xF582\t0x709F\n0xF583\t0x70B1\n0xF584\t0x241FE\n0xF585\t0x70EC\n0xF586\t0x70CA\n0xF587\t0x70D1\n0xF588\t0x70D3\n0xF589\t0x70DC\n0xF58A\t0x7103\n0xF58B\t0x7104\n0xF58C\t0x7106\n0xF58D\t0x7107\n0xF58E\t0x7108\n0xF58F\t0x710C\n0xF590\t0x3DC0\n0xF591\t0x712F\n0xF592\t0x7131\n0xF593\t0x7150\n0xF594\t0x714A\n0xF595\t0x7153\n0xF596\t0x715E\n0xF597\t0x3DD4\n0xF598\t0x7196\n0xF599\t0x7180\n0xF59A\t0x719B\n0xF59B\t0x71A0\n0xF59C\t0x71A2\n0xF59D\t0x71AE\n0xF59E\t0x71AF\n0xF59F\t0x71B3\n0xF5A0\t0x243BC\n0xF5A1\t0x71CB\n0xF5A2\t0x71D3\n0xF5A3\t0x71D9\n0xF5A4\t0x71DC\n0xF5A5\t0x7207\n0xF5A6\t0x3E05\n0xF5A7\t0xFA49\n0xF5A8\t0x722B\n0xF5A9\t0x7234\n0xF5AA\t0x7238\n0xF5AB\t0x7239\n0xF5AC\t0x4E2C\n0xF5AD\t0x7242\n0xF5AE\t0x7253\n0xF5AF\t0x7257\n0xF5B0\t0x7263\n0xF5B1\t0x24629\n0xF5B2\t0x726E\n0xF5B3\t0x726F\n0xF5B4\t0x7278\n0xF5B5\t0x727F\n0xF5B6\t0x728E\n0xF5B7\t0x246A5\n0xF5B8\t0x72AD\n0xF5B9\t0x72AE\n0xF5BA\t0x72B0\n0xF5BB\t0x72B1\n0xF5BC\t0x72C1\n0xF5BD\t0x3E60\n0xF5BE\t0x72CC\n0xF5BF\t0x3E66\n0xF5C0\t0x3E68\n0xF5C1\t0x72F3\n0xF5C2\t0x72FA\n0xF5C3\t0x7307\n0xF5C4\t0x7312\n0xF5C5\t0x7318\n0xF5C6\t0x7319\n0xF5C7\t0x3E83\n0xF5C8\t0x7339\n0xF5C9\t0x732C\n0xF5CA\t0x7331\n0xF5CB\t0x7333\n0xF5CC\t0x733D\n0xF5CD\t0x7352\n0xF5CE\t0x3E94\n0xF5CF\t0x736B\n0xF5D0\t0x736C\n0xF5D1\t0x24896\n0xF5D2\t0x736E\n0xF5D3\t0x736F\n0xF5D4\t0x7371\n0xF5D5\t0x7377\n0xF5D6\t0x7381\n0xF5D7\t0x7385\n0xF5D8\t0x738A\n0xF5D9\t0x7394\n0xF5DA\t0x7398\n0xF5DB\t0x739C\n0xF5DC\t0x739E\n0xF5DD\t0x73A5\n0xF5DE\t0x73A8\n0xF5DF\t0x73B5\n0xF5E0\t0x73B7\n0xF5E1\t0x73B9\n0xF5E2\t0x73BC\n0xF5E3\t0x73BF\n0xF5E4\t0x73C5\n0xF5E5\t0x73CB\n0xF5E6\t0x73E1\n0xF5E7\t0x73E7\n0xF5E8\t0x73F9\n0xF5E9\t0x7413\n0xF5EA\t0x73FA\n0xF5EB\t0x7401\n0xF5EC\t0x7424\n0xF5ED\t0x7431\n0xF5EE\t0x7439\n0xF5EF\t0x7453\n0xF5F0\t0x7440\n0xF5F1\t0x7443\n0xF5F2\t0x744D\n0xF5F3\t0x7452\n0xF5F4\t0x745D\n0xF5F5\t0x7471\n0xF5F6\t0x7481\n0xF5F7\t0x7485\n0xF5F8\t0x7488\n0xF5F9\t0x24A4D\n0xF5FA\t0x7492\n0xF5FB\t0x7497\n0xF5FC\t0x7499\n0xF640\t0x74A0\n0xF641\t0x74A1\n0xF642\t0x74A5\n0xF643\t0x74AA\n0xF644\t0x74AB\n0xF645\t0x74B9\n0xF646\t0x74BB\n0xF647\t0x74BA\n0xF648\t0x74D6\n0xF649\t0x74D8\n0xF64A\t0x74DE\n0xF64B\t0x74EF\n0xF64C\t0x74EB\n0xF64D\t0x24B56\n0xF64E\t0x74FA\n0xF64F\t0x24B6F\n0xF650\t0x7520\n0xF651\t0x7524\n0xF652\t0x752A\n0xF653\t0x3F57\n0xF654\t0x24C16\n0xF655\t0x753D\n0xF656\t0x753E\n0xF657\t0x7540\n0xF658\t0x7548\n0xF659\t0x754E\n0xF65A\t0x7550\n0xF65B\t0x7552\n0xF65C\t0x756C\n0xF65D\t0x7572\n0xF65E\t0x7571\n0xF65F\t0x757A\n0xF660\t0x757D\n0xF661\t0x757E\n0xF662\t0x7581\n0xF663\t0x24D14\n0xF664\t0x758C\n0xF665\t0x3F75\n0xF666\t0x75A2\n0xF667\t0x3F77\n0xF668\t0x75B0\n0xF669\t0x75B7\n0xF66A\t0x75BF\n0xF66B\t0x75C0\n0xF66C\t0x75C6\n0xF66D\t0x75CF\n0xF66E\t0x75D3\n0xF66F\t0x75DD\n0xF670\t0x75DF\n0xF671\t0x75E0\n0xF672\t0x75E7\n0xF673\t0x75EC\n0xF674\t0x75EE\n0xF675\t0x75F1\n0xF676\t0x75F9\n0xF677\t0x7603\n0xF678\t0x7618\n0xF679\t0x7607\n0xF67A\t0x760F\n0xF67B\t0x3FAE\n0xF67C\t0x24E0E\n0xF67D\t0x7613\n0xF67E\t0x761B\n0xF680\t0x761C\n0xF681\t0x24E37\n0xF682\t0x7625\n0xF683\t0x7628\n0xF684\t0x763C\n0xF685\t0x7633\n0xF686\t0x24E6A\n0xF687\t0x3FC9\n0xF688\t0x7641\n0xF689\t0x24E8B\n0xF68A\t0x7649\n0xF68B\t0x7655\n0xF68C\t0x3FD7\n0xF68D\t0x766E\n0xF68E\t0x7695\n0xF68F\t0x769C\n0xF690\t0x76A1\n0xF691\t0x76A0\n0xF692\t0x76A7\n0xF693\t0x76A8\n0xF694\t0x76AF\n0xF695\t0x2504A\n0xF696\t0x76C9\n0xF697\t0x25055\n0xF698\t0x76E8\n0xF699\t0x76EC\n0xF69A\t0x25122\n0xF69B\t0x7717\n0xF69C\t0x771A\n0xF69D\t0x772D\n0xF69E\t0x7735\n0xF69F\t0x251A9\n0xF6A0\t0x4039\n0xF6A1\t0x251E5\n0xF6A2\t0x251CD\n0xF6A3\t0x7758\n0xF6A4\t0x7760\n0xF6A5\t0x776A\n0xF6A6\t0x2521E\n0xF6A7\t0x7772\n0xF6A8\t0x777C\n0xF6A9\t0x777D\n0xF6AA\t0x2524C\n0xF6AB\t0x4058\n0xF6AC\t0x779A\n0xF6AD\t0x779F\n0xF6AE\t0x77A2\n0xF6AF\t0x77A4\n0xF6B0\t0x77A9\n0xF6B1\t0x77DE\n0xF6B2\t0x77DF\n0xF6B3\t0x77E4\n0xF6B4\t0x77E6\n0xF6B5\t0x77EA\n0xF6B6\t0x77EC\n0xF6B7\t0x4093\n0xF6B8\t0x77F0\n0xF6B9\t0x77F4\n0xF6BA\t0x77FB\n0xF6BB\t0x2542E\n0xF6BC\t0x7805\n0xF6BD\t0x7806\n0xF6BE\t0x7809\n0xF6BF\t0x780D\n0xF6C0\t0x7819\n0xF6C1\t0x7821\n0xF6C2\t0x782C\n0xF6C3\t0x7847\n0xF6C4\t0x7864\n0xF6C5\t0x786A\n0xF6C6\t0x254D9\n0xF6C7\t0x788A\n0xF6C8\t0x7894\n0xF6C9\t0x78A4\n0xF6CA\t0x789D\n0xF6CB\t0x789E\n0xF6CC\t0x789F\n0xF6CD\t0x78BB\n0xF6CE\t0x78C8\n0xF6CF\t0x78CC\n0xF6D0\t0x78CE\n0xF6D1\t0x78D5\n0xF6D2\t0x78E0\n0xF6D3\t0x78E1\n0xF6D4\t0x78E6\n0xF6D5\t0x78F9\n0xF6D6\t0x78FA\n0xF6D7\t0x78FB\n0xF6D8\t0x78FE\n0xF6D9\t0x255A7\n0xF6DA\t0x7910\n0xF6DB\t0x791B\n0xF6DC\t0x7930\n0xF6DD\t0x7925\n0xF6DE\t0x793B\n0xF6DF\t0x794A\n0xF6E0\t0x7958\n0xF6E1\t0x795B\n0xF6E2\t0x4105\n0xF6E3\t0x7967\n0xF6E4\t0x7972\n0xF6E5\t0x7994\n0xF6E6\t0x7995\n0xF6E7\t0x7996\n0xF6E8\t0x799B\n0xF6E9\t0x79A1\n0xF6EA\t0x79A9\n0xF6EB\t0x79B4\n0xF6EC\t0x79BB\n0xF6ED\t0x79C2\n0xF6EE\t0x79C7\n0xF6EF\t0x79CC\n0xF6F0\t0x79CD\n0xF6F1\t0x79D6\n0xF6F2\t0x4148\n0xF6F3\t0x257A9\n0xF6F4\t0x257B4\n0xF6F5\t0x414F\n0xF6F6\t0x7A0A\n0xF6F7\t0x7A11\n0xF6F8\t0x7A15\n0xF6F9\t0x7A1B\n0xF6FA\t0x7A1E\n0xF6FB\t0x4163\n0xF6FC\t0x7A2D\n0xF740\t0x7A38\n0xF741\t0x7A47\n0xF742\t0x7A4C\n0xF743\t0x7A56\n0xF744\t0x7A59\n0xF745\t0x7A5C\n0xF746\t0x7A5F\n0xF747\t0x7A60\n0xF748\t0x7A67\n0xF749\t0x7A6A\n0xF74A\t0x7A75\n0xF74B\t0x7A78\n0xF74C\t0x7A82\n0xF74D\t0x7A8A\n0xF74E\t0x7A90\n0xF74F\t0x7AA3\n0xF750\t0x7AAC\n0xF751\t0x259D4\n0xF752\t0x41B4\n0xF753\t0x7AB9\n0xF754\t0x7ABC\n0xF755\t0x7ABE\n0xF756\t0x41BF\n0xF757\t0x7ACC\n0xF758\t0x7AD1\n0xF759\t0x7AE7\n0xF75A\t0x7AE8\n0xF75B\t0x7AF4\n0xF75C\t0x25AE4\n0xF75D\t0x25AE3\n0xF75E\t0x7B07\n0xF75F\t0x25AF1\n0xF760\t0x7B3D\n0xF761\t0x7B27\n0xF762\t0x7B2A\n0xF763\t0x7B2E\n0xF764\t0x7B2F\n0xF765\t0x7B31\n0xF766\t0x41E6\n0xF767\t0x41F3\n0xF768\t0x7B7F\n0xF769\t0x7B41\n0xF76A\t0x41EE\n0xF76B\t0x7B55\n0xF76C\t0x7B79\n0xF76D\t0x7B64\n0xF76E\t0x7B66\n0xF76F\t0x7B69\n0xF770\t0x7B73\n0xF771\t0x25BB2\n0xF772\t0x4207\n0xF773\t0x7B90\n0xF774\t0x7B91\n0xF775\t0x7B9B\n0xF776\t0x420E\n0xF777\t0x7BAF\n0xF778\t0x7BB5\n0xF779\t0x7BBC\n0xF77A\t0x7BC5\n0xF77B\t0x7BCA\n0xF77C\t0x25C4B\n0xF77D\t0x25C64\n0xF77E\t0x7BD4\n0xF780\t0x7BD6\n0xF781\t0x7BDA\n0xF782\t0x7BEA\n0xF783\t0x7BF0\n0xF784\t0x7C03\n0xF785\t0x7C0B\n0xF786\t0x7C0E\n0xF787\t0x7C0F\n0xF788\t0x7C26\n0xF789\t0x7C45\n0xF78A\t0x7C4A\n0xF78B\t0x7C51\n0xF78C\t0x7C57\n0xF78D\t0x7C5E\n0xF78E\t0x7C61\n0xF78F\t0x7C69\n0xF790\t0x7C6E\n0xF791\t0x7C6F\n0xF792\t0x7C70\n0xF793\t0x25E2E\n0xF794\t0x25E56\n0xF795\t0x25E65\n0xF796\t0x7CA6\n0xF797\t0x25E62\n0xF798\t0x7CB6\n0xF799\t0x7CB7\n0xF79A\t0x7CBF\n0xF79B\t0x25ED8\n0xF79C\t0x7CC4\n0xF79D\t0x25EC2\n0xF79E\t0x7CC8\n0xF79F\t0x7CCD\n0xF7A0\t0x25EE8\n0xF7A1\t0x7CD7\n0xF7A2\t0x25F23\n0xF7A3\t0x7CE6\n0xF7A4\t0x7CEB\n0xF7A5\t0x25F5C\n0xF7A6\t0x7CF5\n0xF7A7\t0x7D03\n0xF7A8\t0x7D09\n0xF7A9\t0x42C6\n0xF7AA\t0x7D12\n0xF7AB\t0x7D1E\n0xF7AC\t0x25FE0\n0xF7AD\t0x25FD4\n0xF7AE\t0x7D3D\n0xF7AF\t0x7D3E\n0xF7B0\t0x7D40\n0xF7B1\t0x7D47\n0xF7B2\t0x2600C\n0xF7B3\t0x25FFB\n0xF7B4\t0x42D6\n0xF7B5\t0x7D59\n0xF7B6\t0x7D5A\n0xF7B7\t0x7D6A\n0xF7B8\t0x7D70\n0xF7B9\t0x42DD\n0xF7BA\t0x7D7F\n0xF7BB\t0x26017\n0xF7BC\t0x7D86\n0xF7BD\t0x7D88\n0xF7BE\t0x7D8C\n0xF7BF\t0x7D97\n0xF7C0\t0x26060\n0xF7C1\t0x7D9D\n0xF7C2\t0x7DA7\n0xF7C3\t0x7DAA\n0xF7C4\t0x7DB6\n0xF7C5\t0x7DB7\n0xF7C6\t0x7DC0\n0xF7C7\t0x7DD7\n0xF7C8\t0x7DD9\n0xF7C9\t0x7DE6\n0xF7CA\t0x7DF1\n0xF7CB\t0x7DF9\n0xF7CC\t0x4302\n0xF7CD\t0x260ED\n0xF7CE\t0xFA58\n0xF7CF\t0x7E10\n0xF7D0\t0x7E17\n0xF7D1\t0x7E1D\n0xF7D2\t0x7E20\n0xF7D3\t0x7E27\n0xF7D4\t0x7E2C\n0xF7D5\t0x7E45\n0xF7D6\t0x7E73\n0xF7D7\t0x7E75\n0xF7D8\t0x7E7E\n0xF7D9\t0x7E86\n0xF7DA\t0x7E87\n0xF7DB\t0x432B\n0xF7DC\t0x7E91\n0xF7DD\t0x7E98\n0xF7DE\t0x7E9A\n0xF7DF\t0x4343\n0xF7E0\t0x7F3C\n0xF7E1\t0x7F3B\n0xF7E2\t0x7F3E\n0xF7E3\t0x7F43\n0xF7E4\t0x7F44\n0xF7E5\t0x7F4F\n0xF7E6\t0x34C1\n0xF7E7\t0x26270\n0xF7E8\t0x7F52\n0xF7E9\t0x26286\n0xF7EA\t0x7F61\n0xF7EB\t0x7F63\n0xF7EC\t0x7F64\n0xF7ED\t0x7F6D\n0xF7EE\t0x7F7D\n0xF7EF\t0x7F7E\n0xF7F0\t0x2634C\n0xF7F1\t0x7F90\n0xF7F2\t0x517B\n0xF7F3\t0x23D0E\n0xF7F4\t0x7F96\n0xF7F5\t0x7F9C\n0xF7F6\t0x7FAD\n0xF7F7\t0x26402\n0xF7F8\t0x7FC3\n0xF7F9\t0x7FCF\n0xF7FA\t0x7FE3\n0xF7FB\t0x7FE5\n0xF7FC\t0x7FEF\n0xF840\t0x7FF2\n0xF841\t0x8002\n0xF842\t0x800A\n0xF843\t0x8008\n0xF844\t0x800E\n0xF845\t0x8011\n0xF846\t0x8016\n0xF847\t0x8024\n0xF848\t0x802C\n0xF849\t0x8030\n0xF84A\t0x8043\n0xF84B\t0x8066\n0xF84C\t0x8071\n0xF84D\t0x8075\n0xF84E\t0x807B\n0xF84F\t0x8099\n0xF850\t0x809C\n0xF851\t0x80A4\n0xF852\t0x80A7\n0xF853\t0x80B8\n0xF854\t0x2667E\n0xF855\t0x80C5\n0xF856\t0x80D5\n0xF857\t0x80D8\n0xF858\t0x80E6\n0xF859\t0x266B0\n0xF85A\t0x810D\n0xF85B\t0x80F5\n0xF85C\t0x80FB\n0xF85D\t0x43EE\n0xF85E\t0x8135\n0xF85F\t0x8116\n0xF860\t0x811E\n0xF861\t0x43F0\n0xF862\t0x8124\n0xF863\t0x8127\n0xF864\t0x812C\n0xF865\t0x2671D\n0xF866\t0x813D\n0xF867\t0x4408\n0xF868\t0x8169\n0xF869\t0x4417\n0xF86A\t0x8181\n0xF86B\t0x441C\n0xF86C\t0x8184\n0xF86D\t0x8185\n0xF86E\t0x4422\n0xF86F\t0x8198\n0xF870\t0x81B2\n0xF871\t0x81C1\n0xF872\t0x81C3\n0xF873\t0x81D6\n0xF874\t0x81DB\n0xF875\t0x268DD\n0xF876\t0x81E4\n0xF877\t0x268EA\n0xF878\t0x81EC\n0xF879\t0x26951\n0xF87A\t0x81FD\n0xF87B\t0x81FF\n0xF87C\t0x2696F\n0xF87D\t0x8204\n0xF87E\t0x269DD\n0xF880\t0x8219\n0xF881\t0x8221\n0xF882\t0x8222\n0xF883\t0x26A1E\n0xF884\t0x8232\n0xF885\t0x8234\n0xF886\t0x823C\n0xF887\t0x8246\n0xF888\t0x8249\n0xF889\t0x8245\n0xF88A\t0x26A58\n0xF88B\t0x824B\n0xF88C\t0x4476\n0xF88D\t0x824F\n0xF88E\t0x447A\n0xF88F\t0x8257\n0xF890\t0x26A8C\n0xF891\t0x825C\n0xF892\t0x8263\n0xF893\t0x26AB7\n0xF894\t0xFA5D\n0xF895\t0xFA5E\n0xF896\t0x8279\n0xF897\t0x4491\n0xF898\t0x827D\n0xF899\t0x827F\n0xF89A\t0x8283\n0xF89B\t0x828A\n0xF89C\t0x8293\n0xF89D\t0x82A7\n0xF89E\t0x82A8\n0xF89F\t0x82B2\n0xF8A0\t0x82B4\n0xF8A1\t0x82BA\n0xF8A2\t0x82BC\n0xF8A3\t0x82E2\n0xF8A4\t0x82E8\n0xF8A5\t0x82F7\n0xF8A6\t0x8307\n0xF8A7\t0x8308\n0xF8A8\t0x830C\n0xF8A9\t0x8354\n0xF8AA\t0x831B\n0xF8AB\t0x831D\n0xF8AC\t0x8330\n0xF8AD\t0x833C\n0xF8AE\t0x8344\n0xF8AF\t0x8357\n0xF8B0\t0x44BE\n0xF8B1\t0x837F\n0xF8B2\t0x44D4\n0xF8B3\t0x44B3\n0xF8B4\t0x838D\n0xF8B5\t0x8394\n0xF8B6\t0x8395\n0xF8B7\t0x839B\n0xF8B8\t0x839D\n0xF8B9\t0x83C9\n0xF8BA\t0x83D0\n0xF8BB\t0x83D4\n0xF8BC\t0x83DD\n0xF8BD\t0x83E5\n0xF8BE\t0x83F9\n0xF8BF\t0x840F\n0xF8C0\t0x8411\n0xF8C1\t0x8415\n0xF8C2\t0x26C73\n0xF8C3\t0x8417\n0xF8C4\t0x8439\n0xF8C5\t0x844A\n0xF8C6\t0x844F\n0xF8C7\t0x8451\n0xF8C8\t0x8452\n0xF8C9\t0x8459\n0xF8CA\t0x845A\n0xF8CB\t0x845C\n0xF8CC\t0x26CDD\n0xF8CD\t0x8465\n0xF8CE\t0x8476\n0xF8CF\t0x8478\n0xF8D0\t0x847C\n0xF8D1\t0x8481\n0xF8D2\t0x450D\n0xF8D3\t0x84DC\n0xF8D4\t0x8497\n0xF8D5\t0x84A6\n0xF8D6\t0x84BE\n0xF8D7\t0x4508\n0xF8D8\t0x84CE\n0xF8D9\t0x84CF\n0xF8DA\t0x84D3\n0xF8DB\t0x26E65\n0xF8DC\t0x84E7\n0xF8DD\t0x84EA\n0xF8DE\t0x84EF\n0xF8DF\t0x84F0\n0xF8E0\t0x84F1\n0xF8E1\t0x84FA\n0xF8E2\t0x84FD\n0xF8E3\t0x850C\n0xF8E4\t0x851B\n0xF8E5\t0x8524\n0xF8E6\t0x8525\n0xF8E7\t0x852B\n0xF8E8\t0x8534\n0xF8E9\t0x854F\n0xF8EA\t0x856F\n0xF8EB\t0x4525\n0xF8EC\t0x4543\n0xF8ED\t0x853E\n0xF8EE\t0x8551\n0xF8EF\t0x8553\n0xF8F0\t0x855E\n0xF8F1\t0x8561\n0xF8F2\t0x8562\n0xF8F3\t0x26F94\n0xF8F4\t0x857B\n0xF8F5\t0x857D\n0xF8F6\t0x857F\n0xF8F7\t0x8581\n0xF8F8\t0x8586\n0xF8F9\t0x8593\n0xF8FA\t0x859D\n0xF8FB\t0x859F\n0xF8FC\t0x26FF8\n0xF940\t0x26FF6\n0xF941\t0x26FF7\n0xF942\t0x85B7\n0xF943\t0x85BC\n0xF944\t0x85C7\n0xF945\t0x85CA\n0xF946\t0x85D8\n0xF947\t0x85D9\n0xF948\t0x85DF\n0xF949\t0x85E1\n0xF94A\t0x85E6\n0xF94B\t0x85F6\n0xF94C\t0x8600\n0xF94D\t0x8611\n0xF94E\t0x861E\n0xF94F\t0x8621\n0xF950\t0x8624\n0xF951\t0x8627\n0xF952\t0x2710D\n0xF953\t0x8639\n0xF954\t0x863C\n0xF955\t0x27139\n0xF956\t0x8640\n0xF957\t0xFA20\n0xF958\t0x8653\n0xF959\t0x8656\n0xF95A\t0x866F\n0xF95B\t0x8677\n0xF95C\t0x867A\n0xF95D\t0x8687\n0xF95E\t0x8689\n0xF95F\t0x868D\n0xF960\t0x8691\n0xF961\t0x869C\n0xF962\t0x869D\n0xF963\t0x86A8\n0xF964\t0xFA21\n0xF965\t0x86B1\n0xF966\t0x86B3\n0xF967\t0x86C1\n0xF968\t0x86C3\n0xF969\t0x86D1\n0xF96A\t0x86D5\n0xF96B\t0x86D7\n0xF96C\t0x86E3\n0xF96D\t0x86E6\n0xF96E\t0x45B8\n0xF96F\t0x8705\n0xF970\t0x8707\n0xF971\t0x870E\n0xF972\t0x8710\n0xF973\t0x8713\n0xF974\t0x8719\n0xF975\t0x871F\n0xF976\t0x8721\n0xF977\t0x8723\n0xF978\t0x8731\n0xF979\t0x873A\n0xF97A\t0x873E\n0xF97B\t0x8740\n0xF97C\t0x8743\n0xF97D\t0x8751\n0xF97E\t0x8758\n0xF980\t0x8764\n0xF981\t0x8765\n0xF982\t0x8772\n0xF983\t0x877C\n0xF984\t0x273DB\n0xF985\t0x273DA\n0xF986\t0x87A7\n0xF987\t0x8789\n0xF988\t0x878B\n0xF989\t0x8793\n0xF98A\t0x87A0\n0xF98B\t0x273FE\n0xF98C\t0x45E5\n0xF98D\t0x87BE\n0xF98E\t0x27410\n0xF98F\t0x87C1\n0xF990\t0x87CE\n0xF991\t0x87F5\n0xF992\t0x87DF\n0xF993\t0x27449\n0xF994\t0x87E3\n0xF995\t0x87E5\n0xF996\t0x87E6\n0xF997\t0x87EA\n0xF998\t0x87EB\n0xF999\t0x87ED\n0xF99A\t0x8801\n0xF99B\t0x8803\n0xF99C\t0x880B\n0xF99D\t0x8813\n0xF99E\t0x8828\n0xF99F\t0x882E\n0xF9A0\t0x8832\n0xF9A1\t0x883C\n0xF9A2\t0x460F\n0xF9A3\t0x884A\n0xF9A4\t0x8858\n0xF9A5\t0x885F\n0xF9A6\t0x8864\n0xF9A7\t0x27615\n0xF9A8\t0x27614\n0xF9A9\t0x8869\n0xF9AA\t0x27631\n0xF9AB\t0x886F\n0xF9AC\t0x88A0\n0xF9AD\t0x88BC\n0xF9AE\t0x88BD\n0xF9AF\t0x88BE\n0xF9B0\t0x88C0\n0xF9B1\t0x88D2\n0xF9B2\t0x27693\n0xF9B3\t0x88D1\n0xF9B4\t0x88D3\n0xF9B5\t0x88DB\n0xF9B6\t0x88F0\n0xF9B7\t0x88F1\n0xF9B8\t0x4641\n0xF9B9\t0x8901\n0xF9BA\t0x2770E\n0xF9BB\t0x8937\n0xF9BC\t0x27723\n0xF9BD\t0x8942\n0xF9BE\t0x8945\n0xF9BF\t0x8949\n0xF9C0\t0x27752\n0xF9C1\t0x4665\n0xF9C2\t0x8962\n0xF9C3\t0x8980\n0xF9C4\t0x8989\n0xF9C5\t0x8990\n0xF9C6\t0x899F\n0xF9C7\t0x89B0\n0xF9C8\t0x89B7\n0xF9C9\t0x89D6\n0xF9CA\t0x89D8\n0xF9CB\t0x89EB\n0xF9CC\t0x46A1\n0xF9CD\t0x89F1\n0xF9CE\t0x89F3\n0xF9CF\t0x89FD\n0xF9D0\t0x89FF\n0xF9D1\t0x46AF\n0xF9D2\t0x8A11\n0xF9D3\t0x8A14\n0xF9D4\t0x27985\n0xF9D5\t0x8A21\n0xF9D6\t0x8A35\n0xF9D7\t0x8A3E\n0xF9D8\t0x8A45\n0xF9D9\t0x8A4D\n0xF9DA\t0x8A58\n0xF9DB\t0x8AAE\n0xF9DC\t0x8A90\n0xF9DD\t0x8AB7\n0xF9DE\t0x8ABE\n0xF9DF\t0x8AD7\n0xF9E0\t0x8AFC\n0xF9E1\t0x27A84\n0xF9E2\t0x8B0A\n0xF9E3\t0x8B05\n0xF9E4\t0x8B0D\n0xF9E5\t0x8B1C\n0xF9E6\t0x8B1F\n0xF9E7\t0x8B2D\n0xF9E8\t0x8B43\n0xF9E9\t0x470C\n0xF9EA\t0x8B51\n0xF9EB\t0x8B5E\n0xF9EC\t0x8B76\n0xF9ED\t0x8B7F\n0xF9EE\t0x8B81\n0xF9EF\t0x8B8B\n0xF9F0\t0x8B94\n0xF9F1\t0x8B95\n0xF9F2\t0x8B9C\n0xF9F3\t0x8B9E\n0xF9F4\t0x8C39\n0xF9F5\t0x27BB3\n0xF9F6\t0x8C3D\n0xF9F7\t0x27BBE\n0xF9F8\t0x27BC7\n0xF9F9\t0x8C45\n0xF9FA\t0x8C47\n0xF9FB\t0x8C4F\n0xF9FC\t0x8C54\n0xFA40\t0x8C57\n0xFA41\t0x8C69\n0xFA42\t0x8C6D\n0xFA43\t0x8C73\n0xFA44\t0x27CB8\n0xFA45\t0x8C93\n0xFA46\t0x8C92\n0xFA47\t0x8C99\n0xFA48\t0x4764\n0xFA49\t0x8C9B\n0xFA4A\t0x8CA4\n0xFA4B\t0x8CD6\n0xFA4C\t0x8CD5\n0xFA4D\t0x8CD9\n0xFA4E\t0x27DA0\n0xFA4F\t0x8CF0\n0xFA50\t0x8CF1\n0xFA51\t0x27E10\n0xFA52\t0x8D09\n0xFA53\t0x8D0E\n0xFA54\t0x8D6C\n0xFA55\t0x8D84\n0xFA56\t0x8D95\n0xFA57\t0x8DA6\n0xFA58\t0x27FB7\n0xFA59\t0x8DC6\n0xFA5A\t0x8DC8\n0xFA5B\t0x8DD9\n0xFA5C\t0x8DEC\n0xFA5D\t0x8E0C\n0xFA5E\t0x47FD\n0xFA5F\t0x8DFD\n0xFA60\t0x8E06\n0xFA61\t0x2808A\n0xFA62\t0x8E14\n0xFA63\t0x8E16\n0xFA64\t0x8E21\n0xFA65\t0x8E22\n0xFA66\t0x8E27\n0xFA67\t0x280BB\n0xFA68\t0x4816\n0xFA69\t0x8E36\n0xFA6A\t0x8E39\n0xFA6B\t0x8E4B\n0xFA6C\t0x8E54\n0xFA6D\t0x8E62\n0xFA6E\t0x8E6C\n0xFA6F\t0x8E6D\n0xFA70\t0x8E6F\n0xFA71\t0x8E98\n0xFA72\t0x8E9E\n0xFA73\t0x8EAE\n0xFA74\t0x8EB3\n0xFA75\t0x8EB5\n0xFA76\t0x8EB6\n0xFA77\t0x8EBB\n0xFA78\t0x28282\n0xFA79\t0x8ED1\n0xFA7A\t0x8ED4\n0xFA7B\t0x484E\n0xFA7C\t0x8EF9\n0xFA7D\t0x282F3\n0xFA7E\t0x8F00\n0xFA80\t0x8F08\n0xFA81\t0x8F17\n0xFA82\t0x8F2B\n0xFA83\t0x8F40\n0xFA84\t0x8F4A\n0xFA85\t0x8F58\n0xFA86\t0x2840C\n0xFA87\t0x8FA4\n0xFA88\t0x8FB4\n0xFA89\t0xFA66\n0xFA8A\t0x8FB6\n0xFA8B\t0x28455\n0xFA8C\t0x8FC1\n0xFA8D\t0x8FC6\n0xFA8E\t0xFA24\n0xFA8F\t0x8FCA\n0xFA90\t0x8FCD\n0xFA91\t0x8FD3\n0xFA92\t0x8FD5\n0xFA93\t0x8FE0\n0xFA94\t0x8FF1\n0xFA95\t0x8FF5\n0xFA96\t0x8FFB\n0xFA97\t0x9002\n0xFA98\t0x900C\n0xFA99\t0x9037\n0xFA9A\t0x2856B\n0xFA9B\t0x9043\n0xFA9C\t0x9044\n0xFA9D\t0x905D\n0xFA9E\t0x285C8\n0xFA9F\t0x285C9\n0xFAA0\t0x9085\n0xFAA1\t0x908C\n0xFAA2\t0x9090\n0xFAA3\t0x961D\n0xFAA4\t0x90A1\n0xFAA5\t0x48B5\n0xFAA6\t0x90B0\n0xFAA7\t0x90B6\n0xFAA8\t0x90C3\n0xFAA9\t0x90C8\n0xFAAA\t0x286D7\n0xFAAB\t0x90DC\n0xFAAC\t0x90DF\n0xFAAD\t0x286FA\n0xFAAE\t0x90F6\n0xFAAF\t0x90F2\n0xFAB0\t0x9100\n0xFAB1\t0x90EB\n0xFAB2\t0x90FE\n0xFAB3\t0x90FF\n0xFAB4\t0x9104\n0xFAB5\t0x9106\n0xFAB6\t0x9118\n0xFAB7\t0x911C\n0xFAB8\t0x911E\n0xFAB9\t0x9137\n0xFABA\t0x9139\n0xFABB\t0x913A\n0xFABC\t0x9146\n0xFABD\t0x9147\n0xFABE\t0x9157\n0xFABF\t0x9159\n0xFAC0\t0x9161\n0xFAC1\t0x9164\n0xFAC2\t0x9174\n0xFAC3\t0x9179\n0xFAC4\t0x9185\n0xFAC5\t0x918E\n0xFAC6\t0x91A8\n0xFAC7\t0x91AE\n0xFAC8\t0x91B3\n0xFAC9\t0x91B6\n0xFACA\t0x91C3\n0xFACB\t0x91C4\n0xFACC\t0x91DA\n0xFACD\t0x28949\n0xFACE\t0x28946\n0xFACF\t0x91EC\n0xFAD0\t0x91EE\n0xFAD1\t0x9201\n0xFAD2\t0x920A\n0xFAD3\t0x9216\n0xFAD4\t0x9217\n0xFAD5\t0x2896B\n0xFAD6\t0x9233\n0xFAD7\t0x9242\n0xFAD8\t0x9247\n0xFAD9\t0x924A\n0xFADA\t0x924E\n0xFADB\t0x9251\n0xFADC\t0x9256\n0xFADD\t0x9259\n0xFADE\t0x9260\n0xFADF\t0x9261\n0xFAE0\t0x9265\n0xFAE1\t0x9267\n0xFAE2\t0x9268\n0xFAE3\t0x28987\n0xFAE4\t0x28988\n0xFAE5\t0x927C\n0xFAE6\t0x927D\n0xFAE7\t0x927F\n0xFAE8\t0x9289\n0xFAE9\t0x928D\n0xFAEA\t0x9297\n0xFAEB\t0x9299\n0xFAEC\t0x929F\n0xFAED\t0x92A7\n0xFAEE\t0x92AB\n0xFAEF\t0x289BA\n0xFAF0\t0x289BB\n0xFAF1\t0x92B2\n0xFAF2\t0x92BF\n0xFAF3\t0x92C0\n0xFAF4\t0x92C6\n0xFAF5\t0x92CE\n0xFAF6\t0x92D0\n0xFAF7\t0x92D7\n0xFAF8\t0x92D9\n0xFAF9\t0x92E5\n0xFAFA\t0x92E7\n0xFAFB\t0x9311\n0xFAFC\t0x28A1E\n0xFB40\t0x28A29\n0xFB41\t0x92F7\n0xFB42\t0x92F9\n0xFB43\t0x92FB\n0xFB44\t0x9302\n0xFB45\t0x930D\n0xFB46\t0x9315\n0xFB47\t0x931D\n0xFB48\t0x931E\n0xFB49\t0x9327\n0xFB4A\t0x9329\n0xFB4B\t0x28A71\n0xFB4C\t0x28A43\n0xFB4D\t0x9347\n0xFB4E\t0x9351\n0xFB4F\t0x9357\n0xFB50\t0x935A\n0xFB51\t0x936B\n0xFB52\t0x9371\n0xFB53\t0x9373\n0xFB54\t0x93A1\n0xFB55\t0x28A99\n0xFB56\t0x28ACD\n0xFB57\t0x9388\n0xFB58\t0x938B\n0xFB59\t0x938F\n0xFB5A\t0x939E\n0xFB5B\t0x93F5\n0xFB5C\t0x28AE4\n0xFB5D\t0x28ADD\n0xFB5E\t0x93F1\n0xFB5F\t0x93C1\n0xFB60\t0x93C7\n0xFB61\t0x93DC\n0xFB62\t0x93E2\n0xFB63\t0x93E7\n0xFB64\t0x9409\n0xFB65\t0x940F\n0xFB66\t0x9416\n0xFB67\t0x9417\n0xFB68\t0x93FB\n0xFB69\t0x9432\n0xFB6A\t0x9434\n0xFB6B\t0x943B\n0xFB6C\t0x9445\n0xFB6D\t0x28BC1\n0xFB6E\t0x28BEF\n0xFB6F\t0x946D\n0xFB70\t0x946F\n0xFB71\t0x9578\n0xFB72\t0x9579\n0xFB73\t0x9586\n0xFB74\t0x958C\n0xFB75\t0x958D\n0xFB76\t0x28D10\n0xFB77\t0x95AB\n0xFB78\t0x95B4\n0xFB79\t0x28D71\n0xFB7A\t0x95C8\n0xFB7B\t0x28DFB\n0xFB7C\t0x28E1F\n0xFB7D\t0x962C\n0xFB7E\t0x9633\n0xFB80\t0x9634\n0xFB81\t0x28E36\n0xFB82\t0x963C\n0xFB83\t0x9641\n0xFB84\t0x9661\n0xFB85\t0x28E89\n0xFB86\t0x9682\n0xFB87\t0x28EEB\n0xFB88\t0x969A\n0xFB89\t0x28F32\n0xFB8A\t0x49E7\n0xFB8B\t0x96A9\n0xFB8C\t0x96AF\n0xFB8D\t0x96B3\n0xFB8E\t0x96BA\n0xFB8F\t0x96BD\n0xFB90\t0x49FA\n0xFB91\t0x28FF8\n0xFB92\t0x96D8\n0xFB93\t0x96DA\n0xFB94\t0x96DD\n0xFB95\t0x4A04\n0xFB96\t0x9714\n0xFB97\t0x9723\n0xFB98\t0x4A29\n0xFB99\t0x9736\n0xFB9A\t0x9741\n0xFB9B\t0x9747\n0xFB9C\t0x9755\n0xFB9D\t0x9757\n0xFB9E\t0x975B\n0xFB9F\t0x976A\n0xFBA0\t0x292A0\n0xFBA1\t0x292B1\n0xFBA2\t0x9796\n0xFBA3\t0x979A\n0xFBA4\t0x979E\n0xFBA5\t0x97A2\n0xFBA6\t0x97B1\n0xFBA7\t0x97B2\n0xFBA8\t0x97BE\n0xFBA9\t0x97CC\n0xFBAA\t0x97D1\n0xFBAB\t0x97D4\n0xFBAC\t0x97D8\n0xFBAD\t0x97D9\n0xFBAE\t0x97E1\n0xFBAF\t0x97F1\n0xFBB0\t0x9804\n0xFBB1\t0x980D\n0xFBB2\t0x980E\n0xFBB3\t0x9814\n0xFBB4\t0x9816\n0xFBB5\t0x4ABC\n0xFBB6\t0x29490\n0xFBB7\t0x9823\n0xFBB8\t0x9832\n0xFBB9\t0x9833\n0xFBBA\t0x9825\n0xFBBB\t0x9847\n0xFBBC\t0x9866\n0xFBBD\t0x98AB\n0xFBBE\t0x98AD\n0xFBBF\t0x98B0\n0xFBC0\t0x295CF\n0xFBC1\t0x98B7\n0xFBC2\t0x98B8\n0xFBC3\t0x98BB\n0xFBC4\t0x98BC\n0xFBC5\t0x98BF\n0xFBC6\t0x98C2\n0xFBC7\t0x98C7\n0xFBC8\t0x98CB\n0xFBC9\t0x98E0\n0xFBCA\t0x2967F\n0xFBCB\t0x98E1\n0xFBCC\t0x98E3\n0xFBCD\t0x98E5\n0xFBCE\t0x98EA\n0xFBCF\t0x98F0\n0xFBD0\t0x98F1\n0xFBD1\t0x98F3\n0xFBD2\t0x9908\n0xFBD3\t0x4B3B\n0xFBD4\t0x296F0\n0xFBD5\t0x9916\n0xFBD6\t0x9917\n0xFBD7\t0x29719\n0xFBD8\t0x991A\n0xFBD9\t0x991B\n0xFBDA\t0x991C\n0xFBDB\t0x29750\n0xFBDC\t0x9931\n0xFBDD\t0x9932\n0xFBDE\t0x9933\n0xFBDF\t0x993A\n0xFBE0\t0x993B\n0xFBE1\t0x993C\n0xFBE2\t0x9940\n0xFBE3\t0x9941\n0xFBE4\t0x9946\n0xFBE5\t0x994D\n0xFBE6\t0x994E\n0xFBE7\t0x995C\n0xFBE8\t0x995F\n0xFBE9\t0x9960\n0xFBEA\t0x99A3\n0xFBEB\t0x99A6\n0xFBEC\t0x99B9\n0xFBED\t0x99BD\n0xFBEE\t0x99BF\n0xFBEF\t0x99C3\n0xFBF0\t0x99C9\n0xFBF1\t0x99D4\n0xFBF2\t0x99D9\n0xFBF3\t0x99DE\n0xFBF4\t0x298C6\n0xFBF5\t0x99F0\n0xFBF6\t0x99F9\n0xFBF7\t0x99FC\n0xFBF8\t0x9A0A\n0xFBF9\t0x9A11\n0xFBFA\t0x9A16\n0xFBFB\t0x9A1A\n0xFBFC\t0x9A20\n0xFC40\t0x9A31\n0xFC41\t0x9A36\n0xFC42\t0x9A44\n0xFC43\t0x9A4C\n0xFC44\t0x9A58\n0xFC45\t0x4BC2\n0xFC46\t0x9AAF\n0xFC47\t0x4BCA\n0xFC48\t0x9AB7\n0xFC49\t0x4BD2\n0xFC4A\t0x9AB9\n0xFC4B\t0x29A72\n0xFC4C\t0x9AC6\n0xFC4D\t0x9AD0\n0xFC4E\t0x9AD2\n0xFC4F\t0x9AD5\n0xFC50\t0x4BE8\n0xFC51\t0x9ADC\n0xFC52\t0x9AE0\n0xFC53\t0x9AE5\n0xFC54\t0x9AE9\n0xFC55\t0x9B03\n0xFC56\t0x9B0C\n0xFC57\t0x9B10\n0xFC58\t0x9B12\n0xFC59\t0x9B16\n0xFC5A\t0x9B1C\n0xFC5B\t0x9B2B\n0xFC5C\t0x9B33\n0xFC5D\t0x9B3D\n0xFC5E\t0x4C20\n0xFC5F\t0x9B4B\n0xFC60\t0x9B63\n0xFC61\t0x9B65\n0xFC62\t0x9B6B\n0xFC63\t0x9B6C\n0xFC64\t0x9B73\n0xFC65\t0x9B76\n0xFC66\t0x9B77\n0xFC67\t0x9BA6\n0xFC68\t0x9BAC\n0xFC69\t0x9BB1\n0xFC6A\t0x29DDB\n0xFC6B\t0x29E3D\n0xFC6C\t0x9BB2\n0xFC6D\t0x9BB8\n0xFC6E\t0x9BBE\n0xFC6F\t0x9BC7\n0xFC70\t0x9BF3\n0xFC71\t0x9BD8\n0xFC72\t0x9BDD\n0xFC73\t0x9BE7\n0xFC74\t0x9BEA\n0xFC75\t0x9BEB\n0xFC76\t0x9BEF\n0xFC77\t0x9BEE\n0xFC78\t0x29E15\n0xFC79\t0x9BFA\n0xFC7A\t0x29E8A\n0xFC7B\t0x9BF7\n0xFC7C\t0x29E49\n0xFC7D\t0x9C16\n0xFC7E\t0x9C18\n0xFC80\t0x9C19\n0xFC81\t0x9C1A\n0xFC82\t0x9C1D\n0xFC83\t0x9C22\n0xFC84\t0x9C27\n0xFC85\t0x9C29\n0xFC86\t0x9C2A\n0xFC87\t0x29EC4\n0xFC88\t0x9C31\n0xFC89\t0x9C36\n0xFC8A\t0x9C37\n0xFC8B\t0x9C45\n0xFC8C\t0x9C5C\n0xFC8D\t0x29EE9\n0xFC8E\t0x9C49\n0xFC8F\t0x9C4A\n0xFC90\t0x29EDB\n0xFC91\t0x9C54\n0xFC92\t0x9C58\n0xFC93\t0x9C5B\n0xFC94\t0x9C5D\n0xFC95\t0x9C5F\n0xFC96\t0x9C69\n0xFC97\t0x9C6A\n0xFC98\t0x9C6B\n0xFC99\t0x9C6D\n0xFC9A\t0x9C6E\n0xFC9B\t0x9C70\n0xFC9C\t0x9C72\n0xFC9D\t0x9C75\n0xFC9E\t0x9C7A\n0xFC9F\t0x9CE6\n0xFCA0\t0x9CF2\n0xFCA1\t0x9D0B\n0xFCA2\t0x9D02\n0xFCA3\t0x29FCE\n0xFCA4\t0x9D11\n0xFCA5\t0x9D17\n0xFCA6\t0x9D18\n0xFCA7\t0x2A02F\n0xFCA8\t0x4CC4\n0xFCA9\t0x2A01A\n0xFCAA\t0x9D32\n0xFCAB\t0x4CD1\n0xFCAC\t0x9D42\n0xFCAD\t0x9D4A\n0xFCAE\t0x9D5F\n0xFCAF\t0x9D62\n0xFCB0\t0x2A0F9\n0xFCB1\t0x9D69\n0xFCB2\t0x9D6B\n0xFCB3\t0x2A082\n0xFCB4\t0x9D73\n0xFCB5\t0x9D76\n0xFCB6\t0x9D77\n0xFCB7\t0x9D7E\n0xFCB8\t0x9D84\n0xFCB9\t0x9D8D\n0xFCBA\t0x9D99\n0xFCBB\t0x9DA1\n0xFCBC\t0x9DBF\n0xFCBD\t0x9DB5\n0xFCBE\t0x9DB9\n0xFCBF\t0x9DBD\n0xFCC0\t0x9DC3\n0xFCC1\t0x9DC7\n0xFCC2\t0x9DC9\n0xFCC3\t0x9DD6\n0xFCC4\t0x9DDA\n0xFCC5\t0x9DDF\n0xFCC6\t0x9DE0\n0xFCC7\t0x9DE3\n0xFCC8\t0x9DF4\n0xFCC9\t0x4D07\n0xFCCA\t0x9E0A\n0xFCCB\t0x9E02\n0xFCCC\t0x9E0D\n0xFCCD\t0x9E19\n0xFCCE\t0x9E1C\n0xFCCF\t0x9E1D\n0xFCD0\t0x9E7B\n0xFCD1\t0x22218\n0xFCD2\t0x9E80\n0xFCD3\t0x9E85\n0xFCD4\t0x9E9B\n0xFCD5\t0x9EA8\n0xFCD6\t0x2A38C\n0xFCD7\t0x9EBD\n0xFCD8\t0x2A437\n0xFCD9\t0x9EDF\n0xFCDA\t0x9EE7\n0xFCDB\t0x9EEE\n0xFCDC\t0x9EFF\n0xFCDD\t0x9F02\n0xFCDE\t0x4D77\n0xFCDF\t0x9F03\n0xFCE0\t0x9F17\n0xFCE1\t0x9F19\n0xFCE2\t0x9F2F\n0xFCE3\t0x9F37\n0xFCE4\t0x9F3A\n0xFCE5\t0x9F3D\n0xFCE6\t0x9F41\n0xFCE7\t0x9F45\n0xFCE8\t0x9F46\n0xFCE9\t0x9F53\n0xFCEA\t0x9F55\n0xFCEB\t0x9F58\n0xFCEC\t0x2A5F1\n0xFCED\t0x9F5D\n0xFCEE\t0x2A602\n0xFCEF\t0x9F69\n0xFCF0\t0x2A61A\n0xFCF1\t0x9F6D\n0xFCF2\t0x9F70\n0xFCF3\t0x9F75\n0xFCF4\t0x2A6B2\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/TCVN-snippet",
    "content": "// The last line of this file is missing the end-of-line terminator\n// on purpose, in order to test that the conversion empties the bit buffer\n// and shifts back to the initial state at the end of the conversion.\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn\nVietnamese (Ting Vit)\tCho bn"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/TCVN-snippet.UTF-8",
    "content": "// The last line of this file is missing the end-of-line terminator\n// on purpose, in order to test that the conversion empties the bit buffer\n// and shifts back to the initial state at the end of the conversion.\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn\nVietnamese (Tiếng Việt)\tChào bạn"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/TCVN.IRREVERSIBLE.TXT",
    "content": "0x01B2\t0x1E78\n0x20B2\t0x02DC\n0x20B3\t0x00B4\n0x42B4\t0x1E04\n0x43B3\t0x0106\n0x44B4\t0x1E0C\n0x47B3\t0x01F4\n0x48B4\t0x1E24\n0x4BB3\t0x1E30\n0x4BB4\t0x1E32\n0x4CB3\t0x0139\n0x4CB4\t0x1E36\n0x4DB3\t0x1E3E\n0x4DB4\t0x1E42\n0x4EB0\t0x01F8\n0x4EB2\t0x00D1\n0x4EB3\t0x0143\n0x4EB4\t0x1E46\n0x50B3\t0x1E54\n0x52B3\t0x0154\n0x52B4\t0x1E5A\n0x53B3\t0x015A\n0x53B4\t0x1E62\n0x54B4\t0x1E6C\n0x56B2\t0x1E7C\n0x56B4\t0x1E7E\n0x57B0\t0x1E80\n0x57B3\t0x1E82\n0x57B4\t0x1E88\n0x5AB3\t0x0179\n0x5AB4\t0x1E92\n0x62B4\t0x1E05\n0x63B3\t0x0107\n0x64B4\t0x1E0D\n0x67B3\t0x01F5\n0x68B4\t0x1E25\n0x6BB3\t0x1E31\n0x6BB4\t0x1E33\n0x6CB3\t0x013A\n0x6CB4\t0x1E37\n0x6DB3\t0x1E3F\n0x6DB4\t0x1E43\n0x6EB0\t0x01F9\n0x6EB2\t0x00F1\n0x6EB3\t0x0144\n0x6EB4\t0x1E47\n0x70B3\t0x1E55\n0x72B3\t0x0155\n0x72B4\t0x1E5B\n0x73B3\t0x015B\n0x73B4\t0x1E63\n0x74B4\t0x1E6D\n0x76B2\t0x1E7D\n0x76B4\t0x1E7F\n0x77B0\t0x1E81\n0x77B3\t0x1E83\n0x77B4\t0x1E89\n0x7AB3\t0x017A\n0x7AB4\t0x1E93\n0x95B2\t0x1E4C\n0xB0\t0x0340\n0xB3\t0x0341\n0xE3B2\t0x1E4D\n0xF3B2\t0x1E79\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/TCVN.TXT",
    "content": "0x00\t0x0000\n0x01\t0x00DA\n0x02\t0x1EE4\n0x03\t0x0003\n0x04\t0x1EEA\n0x05\t0x1EEC\n0x06\t0x1EEE\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x1EE8\n0x12\t0x1EF0\n0x13\t0x1EF2\n0x14\t0x1EF6\n0x15\t0x1EF8\n0x16\t0x00DD\n0x17\t0x1EF4\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x00C0\n0x81\t0x1EA2\n0x82\t0x00C3\n0x83\t0x00C1\n0x84\t0x1EA0\n0x85\t0x1EB6\n0x86\t0x1EAC\n0x87\t0x00C8\n0x88\t0x1EBA\n0x89\t0x1EBC\n0x8A\t0x00C9\n0x8B\t0x1EB8\n0x8C\t0x1EC6\n0x8D\t0x00CC\n0x8E\t0x1EC8\n0x8F\t0x0128\n0x90\t0x00CD\n0x91\t0x1ECA\n0x92\t0x00D2\n0x93\t0x1ECE\n0x94\t0x00D5\n0x95\t0x00D3\n0x96\t0x1ECC\n0x97\t0x1ED8\n0x98\t0x1EDC\n0x99\t0x1EDE\n0x9A\t0x1EE0\n0x9B\t0x1EDA\n0x9C\t0x1EE2\n0x9D\t0x00D9\n0x9E\t0x1EE6\n0x9F\t0x0168\n0xA0\t0x00A0\n0xA1\t0x0102\n0xA2\t0x00C2\n0xA3\t0x00CA\n0xA4\t0x00D4\n0xA5\t0x01A0\n0xA6\t0x01AF\n0xA7\t0x0110\n0xA8\t0x0103\n0xA9\t0x00E2\n0xAA\t0x00EA\n0xAB\t0x00F4\n0xAC\t0x01A1\n0xAD\t0x01B0\n0xAE\t0x0111\n0xAF\t0x1EB0\n0xB0\t0x0300\n0xB1\t0x0309\n0xB2\t0x0303\n0xB3\t0x0301\n0xB4\t0x0323\n0xB5\t0x00E0\n0xB6\t0x1EA3\n0xB7\t0x00E3\n0xB8\t0x00E1\n0xB9\t0x1EA1\n0xBA\t0x1EB2\n0xBB\t0x1EB1\n0xBC\t0x1EB3\n0xBD\t0x1EB5\n0xBE\t0x1EAF\n0xBF\t0x1EB4\n0xC0\t0x1EAE\n0xC1\t0x1EA6\n0xC2\t0x1EA8\n0xC3\t0x1EAA\n0xC4\t0x1EA4\n0xC5\t0x1EC0\n0xC6\t0x1EB7\n0xC7\t0x1EA7\n0xC8\t0x1EA9\n0xC9\t0x1EAB\n0xCA\t0x1EA5\n0xCB\t0x1EAD\n0xCC\t0x00E8\n0xCD\t0x1EC2\n0xCE\t0x1EBB\n0xCF\t0x1EBD\n0xD0\t0x00E9\n0xD1\t0x1EB9\n0xD2\t0x1EC1\n0xD3\t0x1EC3\n0xD4\t0x1EC5\n0xD5\t0x1EBF\n0xD6\t0x1EC7\n0xD7\t0x00EC\n0xD8\t0x1EC9\n0xD9\t0x1EC4\n0xDA\t0x1EBE\n0xDB\t0x1ED2\n0xDC\t0x0129\n0xDD\t0x00ED\n0xDE\t0x1ECB\n0xDF\t0x00F2\n0xE0\t0x1ED4\n0xE1\t0x1ECF\n0xE2\t0x00F5\n0xE3\t0x00F3\n0xE4\t0x1ECD\n0xE5\t0x1ED3\n0xE6\t0x1ED5\n0xE7\t0x1ED7\n0xE8\t0x1ED1\n0xE9\t0x1ED9\n0xEA\t0x1EDD\n0xEB\t0x1EDF\n0xEC\t0x1EE1\n0xED\t0x1EDB\n0xEE\t0x1EE3\n0xEF\t0x00F9\n0xF0\t0x1ED6\n0xF1\t0x1EE7\n0xF2\t0x0169\n0xF3\t0x00FA\n0xF4\t0x1EE5\n0xF5\t0x1EEB\n0xF6\t0x1EED\n0xF7\t0x1EEF\n0xF8\t0x1EE9\n0xF9\t0x1EF1\n0xFA\t0x1EF3\n0xFB\t0x1EF7\n0xFC\t0x1EF9\n0xFD\t0x00FD\n0xFE\t0x1EF5\n0xFF\t0x1ED0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/TDS565.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x00C7\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x00C4\n0x47\t0x0046\n0x48\t0x0047\n0x49\t0x0048\n0x4A\t0x0049\n0x4B\t0x004A\n0x4C\t0x017D\n0x4D\t0x004B\n0x4E\t0x004C\n0x4F\t0x004D\n0x50\t0x004E\n0x51\t0x0147\n0x52\t0x004F\n0x53\t0x00D6\n0x54\t0x0050\n0x55\t0x0052\n0x56\t0x0053\n0x57\t0x015E\n0x58\t0x0054\n0x59\t0x0055\n0x5A\t0x00DC\n0x5B\t0x0057\n0x5C\t0x0059\n0x5D\t0x00DD\n0x5E\t0x005A\n0x5F\t0x005F\n0x60\t0x2116\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x00E7\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x00E4\n0x67\t0x0066\n0x68\t0x0067\n0x69\t0x0068\n0x6A\t0x0069\n0x6B\t0x006A\n0x6C\t0x017E\n0x6D\t0x006B\n0x6E\t0x006C\n0x6F\t0x006D\n0x70\t0x006E\n0x71\t0x0148\n0x72\t0x006F\n0x73\t0x00F6\n0x74\t0x0070\n0x75\t0x0072\n0x76\t0x0073\n0x77\t0x015F\n0x78\t0x0074\n0x79\t0x0075\n0x7A\t0x00FC\n0x7B\t0x0077\n0x7C\t0x0079\n0x7D\t0x00FD\n0x7E\t0x007A\n0x7F\t0x007F\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/TIS-620.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x0002\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x0005\n0x06\t0x0006\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x0014\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x0019\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x001E\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0xA1\t0x0E01\n0xA2\t0x0E02\n0xA3\t0x0E03\n0xA4\t0x0E04\n0xA5\t0x0E05\n0xA6\t0x0E06\n0xA7\t0x0E07\n0xA8\t0x0E08\n0xA9\t0x0E09\n0xAA\t0x0E0A\n0xAB\t0x0E0B\n0xAC\t0x0E0C\n0xAD\t0x0E0D\n0xAE\t0x0E0E\n0xAF\t0x0E0F\n0xB0\t0x0E10\n0xB1\t0x0E11\n0xB2\t0x0E12\n0xB3\t0x0E13\n0xB4\t0x0E14\n0xB5\t0x0E15\n0xB6\t0x0E16\n0xB7\t0x0E17\n0xB8\t0x0E18\n0xB9\t0x0E19\n0xBA\t0x0E1A\n0xBB\t0x0E1B\n0xBC\t0x0E1C\n0xBD\t0x0E1D\n0xBE\t0x0E1E\n0xBF\t0x0E1F\n0xC0\t0x0E20\n0xC1\t0x0E21\n0xC2\t0x0E22\n0xC3\t0x0E23\n0xC4\t0x0E24\n0xC5\t0x0E25\n0xC6\t0x0E26\n0xC7\t0x0E27\n0xC8\t0x0E28\n0xC9\t0x0E29\n0xCA\t0x0E2A\n0xCB\t0x0E2B\n0xCC\t0x0E2C\n0xCD\t0x0E2D\n0xCE\t0x0E2E\n0xCF\t0x0E2F\n0xD0\t0x0E30\n0xD1\t0x0E31\n0xD2\t0x0E32\n0xD3\t0x0E33\n0xD4\t0x0E34\n0xD5\t0x0E35\n0xD6\t0x0E36\n0xD7\t0x0E37\n0xD8\t0x0E38\n0xD9\t0x0E39\n0xDA\t0x0E3A\n0xDF\t0x0E3F\n0xE0\t0x0E40\n0xE1\t0x0E41\n0xE2\t0x0E42\n0xE3\t0x0E43\n0xE4\t0x0E44\n0xE5\t0x0E45\n0xE6\t0x0E46\n0xE7\t0x0E47\n0xE8\t0x0E48\n0xE9\t0x0E49\n0xEA\t0x0E4A\n0xEB\t0x0E4B\n0xEC\t0x0E4C\n0xED\t0x0E4D\n0xEE\t0x0E4E\n0xEF\t0x0E4F\n0xF0\t0x0E50\n0xF1\t0x0E51\n0xF2\t0x0E52\n0xF3\t0x0E53\n0xF4\t0x0E54\n0xF5\t0x0E55\n0xF6\t0x0E56\n0xF7\t0x0E57\n0xF8\t0x0E58\n0xF9\t0x0E59\n0xFA\t0x0E5A\n0xFB\t0x0E5B\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/Translit1.ASCII",
    "content": "'Ecrit par %s.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/Translit1.ISO-8859-1",
    "content": "crit par %s.\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/TranslitFail1.ISO-8859-1",
    "content": " means $,  or .\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UCS-2BE-snippet.UTF-8",
    "content": "This is a list of ways to say hello in various languages.\nIts purpose is to illustrate a number of scripts.\n\n---------------------------------------------------------\nAmharic\t(አማርኛ)\tሠላም\nArabic\t\t\tﺍﻟﺴﻼﻡ ﻋﻠﻴﻜﻢ\nCzech (česky)\t\tDobrý den\nDanish (Dansk)\t\tHej, Goddag\nEnglish\t\t\tHello\nEsperanto\t\tSaluton\nEstonian\t\tTere, Tervist\nFORTRAN\t\t\tPROGRAM\nFinnish (Suomi)\t\tHei\nFrench (Français)\tBonjour, Salut\nGerman (Deutsch Nord)\tGuten Tag\nGerman (Deutsch Süd)\tGrüß Gott\nGreek (Ελληνικά)\tΓειά σας\nHebrew\t\t\tשלום\nItaliano\t\tCiao, Buon giorno\nLao(ພາສາລາວ)            ສະບາຍດີ, ຂໍໃຫ້ໂຊກດີ\nMaltese\t\t\tCiao\nNederlands, Vlaams\tHallo, Dag\nNorwegian (Norsk)\tHei, God dag\nPolish\t\t\tDzień dobry, Hej\nRussian (Русский)\tЗдравствуйте!\nSlovak\t\t\tDobrý deň\nSpanish (Español)\t¡Hola!\nSwedish (Svenska)\tHej, Goddag\nThai (ภาษาไทย)\t\tสวัสดีครับ, สวัสดีค่ะ\n\nTigrigna (ትግርኛ)\tሰላማት\nTurkish (Türkçe)\tMerhaba\nVietnamese (Tiếng Việt)\tChào bạn\n\nJapanese (日本語)\t\tこんにちは, ｺﾝﾆﾁﾊ\nChinese (中文,普通话,汉语)\t你好\nCantonese (粵語,廣東話)\t\t早晨, 你好\nKorean (한글)\t\t\t안녕하세요, 안녕하십니까\n\nDifference among chinese characters in GB, JIS, KSC, BIG5:\n\tGB   -- 元气  开发\n\tJIS  -- 元気  開発\n\tKSC  -- 元氣  開發\n\tBIG5 -- 元氣  開發\n\nJust for a test of JISX0212: 騏驎 (the second character is of JISX0212)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UCS-2LE-snippet.UTF-8",
    "content": "This is a list of ways to say hello in various languages.\nIts purpose is to illustrate a number of scripts.\n\n---------------------------------------------------------\nAmharic\t(አማርኛ)\tሠላም\nArabic\t\t\tﺍﻟﺴﻼﻡ ﻋﻠﻴﻜﻢ\nCzech (česky)\t\tDobrý den\nDanish (Dansk)\t\tHej, Goddag\nEnglish\t\t\tHello\nEsperanto\t\tSaluton\nEstonian\t\tTere, Tervist\nFORTRAN\t\t\tPROGRAM\nFinnish (Suomi)\t\tHei\nFrench (Français)\tBonjour, Salut\nGerman (Deutsch Nord)\tGuten Tag\nGerman (Deutsch Süd)\tGrüß Gott\nGreek (Ελληνικά)\tΓειά σας\nHebrew\t\t\tשלום\nItaliano\t\tCiao, Buon giorno\nLao(ພາສາລາວ)            ສະບາຍດີ, ຂໍໃຫ້ໂຊກດີ\nMaltese\t\t\tCiao\nNederlands, Vlaams\tHallo, Dag\nNorwegian (Norsk)\tHei, God dag\nPolish\t\t\tDzień dobry, Hej\nRussian (Русский)\tЗдравствуйте!\nSlovak\t\t\tDobrý deň\nSpanish (Español)\t¡Hola!\nSwedish (Svenska)\tHej, Goddag\nThai (ภาษาไทย)\t\tสวัสดีครับ, สวัสดีค่ะ\n\nTigrigna (ትግርኛ)\tሰላማት\nTurkish (Türkçe)\tMerhaba\nVietnamese (Tiếng Việt)\tChào bạn\n\nJapanese (日本語)\t\tこんにちは, ｺﾝﾆﾁﾊ\nChinese (中文,普通话,汉语)\t你好\nCantonese (粵語,廣東話)\t\t早晨, 你好\nKorean (한글)\t\t\t안녕하세요, 안녕하십니까\n\nDifference among chinese characters in GB, JIS, KSC, BIG5:\n\tGB   -- 元气  开发\n\tJIS  -- 元気  開発\n\tKSC  -- 元氣  開發\n\tBIG5 -- 元氣  開發\n\nJust for a test of JISX0212: 騏驎 (the second character is of JISX0212)\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UCS-4BE-snippet.UTF-8",
    "content": "𒍅=Ra"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UCS-4LE-snippet.UTF-8",
    "content": "𒍅=Ra"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UTF-16-snippet.UTF-8",
    "content": "𒍅=Ra"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UTF-16BE-snippet.UTF-8",
    "content": "𒍅=Ra"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UTF-16LE-snippet.UTF-8",
    "content": "𒍅=Ra"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UTF-32-snippet.UTF-8",
    "content": "ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ          <- Greek\n𐌀𐌁𐌂𐌃𐌄𐌅𐌆𐌇𐌈𐌉𐌊𐌋𐌌𐌍𐌎𐌏𐌐𐌑𐌒𐌓𐌔𐌕𐌖𐌗𐌘𐌙𐌚𐌛𐌜𐌝    <- Etruscan\nABCDEFGHIJKLMNOPQRSTUVWXYZ        <- Latin\nАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ  <- Cyrillic\n𐌰𐌱𐌲𐌳𐌴𐌵𐌶𐌷𐌸𐌹𐌺𐌻𐌼𐌽𐌾𐌿𐍀𐍁𐍂𐍃𐍄𐍅𐍆𐍇𐍈         <- Gothic\nאבגדהוזחטיךכלםמןנסעףפץצקרש        <- Hebrew\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UTF-32BE-snippet.UTF-8",
    "content": "ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ          <- Greek\n𐌀𐌁𐌂𐌃𐌄𐌅𐌆𐌇𐌈𐌉𐌊𐌋𐌌𐌍𐌎𐌏𐌐𐌑𐌒𐌓𐌔𐌕𐌖𐌗𐌘𐌙𐌚𐌛𐌜𐌝    <- Etruscan\nABCDEFGHIJKLMNOPQRSTUVWXYZ        <- Latin\nАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ  <- Cyrillic\n𐌰𐌱𐌲𐌳𐌴𐌵𐌶𐌷𐌸𐌹𐌺𐌻𐌼𐌽𐌾𐌿𐍀𐍁𐍂𐍃𐍄𐍅𐍆𐍇𐍈         <- Gothic\nאבגדהוזחטיךכלםמןנסעףפץצקרש        <- Hebrew\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UTF-32LE-snippet.UTF-8",
    "content": "ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ          <- Greek\n𐌀𐌁𐌂𐌃𐌄𐌅𐌆𐌇𐌈𐌉𐌊𐌋𐌌𐌍𐌎𐌏𐌐𐌑𐌒𐌓𐌔𐌕𐌖𐌗𐌘𐌙𐌚𐌛𐌜𐌝    <- Etruscan\nABCDEFGHIJKLMNOPQRSTUVWXYZ        <- Latin\nАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ  <- Cyrillic\n𐌰𐌱𐌲𐌳𐌴𐌵𐌶𐌷𐌸𐌹𐌺𐌻𐌼𐌽𐌾𐌿𐍀𐍁𐍂𐍃𐍄𐍅𐍆𐍇𐍈         <- Gothic\nאבגדהוזחטיךכלםמןנסעףפץצקרש        <- Hebrew\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UTF-7-snippet",
    "content": "A+ImIDkQ-"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/UTF-7-snippet.UTF-8",
    "content": "A≢Α"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/VISCII.TXT",
    "content": "0x00\t0x0000\n0x01\t0x0001\n0x02\t0x1EB2\n0x03\t0x0003\n0x04\t0x0004\n0x05\t0x1EB4\n0x06\t0x1EAA\n0x07\t0x0007\n0x08\t0x0008\n0x09\t0x0009\n0x0A\t0x000A\n0x0B\t0x000B\n0x0C\t0x000C\n0x0D\t0x000D\n0x0E\t0x000E\n0x0F\t0x000F\n0x10\t0x0010\n0x11\t0x0011\n0x12\t0x0012\n0x13\t0x0013\n0x14\t0x1EF6\n0x15\t0x0015\n0x16\t0x0016\n0x17\t0x0017\n0x18\t0x0018\n0x19\t0x1EF8\n0x1A\t0x001A\n0x1B\t0x001B\n0x1C\t0x001C\n0x1D\t0x001D\n0x1E\t0x1EF4\n0x1F\t0x001F\n0x20\t0x0020\n0x21\t0x0021\n0x22\t0x0022\n0x23\t0x0023\n0x24\t0x0024\n0x25\t0x0025\n0x26\t0x0026\n0x27\t0x0027\n0x28\t0x0028\n0x29\t0x0029\n0x2A\t0x002A\n0x2B\t0x002B\n0x2C\t0x002C\n0x2D\t0x002D\n0x2E\t0x002E\n0x2F\t0x002F\n0x30\t0x0030\n0x31\t0x0031\n0x32\t0x0032\n0x33\t0x0033\n0x34\t0x0034\n0x35\t0x0035\n0x36\t0x0036\n0x37\t0x0037\n0x38\t0x0038\n0x39\t0x0039\n0x3A\t0x003A\n0x3B\t0x003B\n0x3C\t0x003C\n0x3D\t0x003D\n0x3E\t0x003E\n0x3F\t0x003F\n0x40\t0x0040\n0x41\t0x0041\n0x42\t0x0042\n0x43\t0x0043\n0x44\t0x0044\n0x45\t0x0045\n0x46\t0x0046\n0x47\t0x0047\n0x48\t0x0048\n0x49\t0x0049\n0x4A\t0x004A\n0x4B\t0x004B\n0x4C\t0x004C\n0x4D\t0x004D\n0x4E\t0x004E\n0x4F\t0x004F\n0x50\t0x0050\n0x51\t0x0051\n0x52\t0x0052\n0x53\t0x0053\n0x54\t0x0054\n0x55\t0x0055\n0x56\t0x0056\n0x57\t0x0057\n0x58\t0x0058\n0x59\t0x0059\n0x5A\t0x005A\n0x5B\t0x005B\n0x5C\t0x005C\n0x5D\t0x005D\n0x5E\t0x005E\n0x5F\t0x005F\n0x60\t0x0060\n0x61\t0x0061\n0x62\t0x0062\n0x63\t0x0063\n0x64\t0x0064\n0x65\t0x0065\n0x66\t0x0066\n0x67\t0x0067\n0x68\t0x0068\n0x69\t0x0069\n0x6A\t0x006A\n0x6B\t0x006B\n0x6C\t0x006C\n0x6D\t0x006D\n0x6E\t0x006E\n0x6F\t0x006F\n0x70\t0x0070\n0x71\t0x0071\n0x72\t0x0072\n0x73\t0x0073\n0x74\t0x0074\n0x75\t0x0075\n0x76\t0x0076\n0x77\t0x0077\n0x78\t0x0078\n0x79\t0x0079\n0x7A\t0x007A\n0x7B\t0x007B\n0x7C\t0x007C\n0x7D\t0x007D\n0x7E\t0x007E\n0x7F\t0x007F\n0x80\t0x1EA0\n0x81\t0x1EAE\n0x82\t0x1EB0\n0x83\t0x1EB6\n0x84\t0x1EA4\n0x85\t0x1EA6\n0x86\t0x1EA8\n0x87\t0x1EAC\n0x88\t0x1EBC\n0x89\t0x1EB8\n0x8A\t0x1EBE\n0x8B\t0x1EC0\n0x8C\t0x1EC2\n0x8D\t0x1EC4\n0x8E\t0x1EC6\n0x8F\t0x1ED0\n0x90\t0x1ED2\n0x91\t0x1ED4\n0x92\t0x1ED6\n0x93\t0x1ED8\n0x94\t0x1EE2\n0x95\t0x1EDA\n0x96\t0x1EDC\n0x97\t0x1EDE\n0x98\t0x1ECA\n0x99\t0x1ECE\n0x9A\t0x1ECC\n0x9B\t0x1EC8\n0x9C\t0x1EE6\n0x9D\t0x0168\n0x9E\t0x1EE4\n0x9F\t0x1EF2\n0xA0\t0x00D5\n0xA1\t0x1EAF\n0xA2\t0x1EB1\n0xA3\t0x1EB7\n0xA4\t0x1EA5\n0xA5\t0x1EA7\n0xA6\t0x1EA9\n0xA7\t0x1EAD\n0xA8\t0x1EBD\n0xA9\t0x1EB9\n0xAA\t0x1EBF\n0xAB\t0x1EC1\n0xAC\t0x1EC3\n0xAD\t0x1EC5\n0xAE\t0x1EC7\n0xAF\t0x1ED1\n0xB0\t0x1ED3\n0xB1\t0x1ED5\n0xB2\t0x1ED7\n0xB3\t0x1EE0\n0xB4\t0x01A0\n0xB5\t0x1ED9\n0xB6\t0x1EDD\n0xB7\t0x1EDF\n0xB8\t0x1ECB\n0xB9\t0x1EF0\n0xBA\t0x1EE8\n0xBB\t0x1EEA\n0xBC\t0x1EEC\n0xBD\t0x01A1\n0xBE\t0x1EDB\n0xBF\t0x01AF\n0xC0\t0x00C0\n0xC1\t0x00C1\n0xC2\t0x00C2\n0xC3\t0x00C3\n0xC4\t0x1EA2\n0xC5\t0x0102\n0xC6\t0x1EB3\n0xC7\t0x1EB5\n0xC8\t0x00C8\n0xC9\t0x00C9\n0xCA\t0x00CA\n0xCB\t0x1EBA\n0xCC\t0x00CC\n0xCD\t0x00CD\n0xCE\t0x0128\n0xCF\t0x1EF3\n0xD0\t0x0110\n0xD1\t0x1EE9\n0xD2\t0x00D2\n0xD3\t0x00D3\n0xD4\t0x00D4\n0xD5\t0x1EA1\n0xD6\t0x1EF7\n0xD7\t0x1EEB\n0xD8\t0x1EED\n0xD9\t0x00D9\n0xDA\t0x00DA\n0xDB\t0x1EF9\n0xDC\t0x1EF5\n0xDD\t0x00DD\n0xDE\t0x1EE1\n0xDF\t0x01B0\n0xE0\t0x00E0\n0xE1\t0x00E1\n0xE2\t0x00E2\n0xE3\t0x00E3\n0xE4\t0x1EA3\n0xE5\t0x0103\n0xE6\t0x1EEF\n0xE7\t0x1EAB\n0xE8\t0x00E8\n0xE9\t0x00E9\n0xEA\t0x00EA\n0xEB\t0x1EBB\n0xEC\t0x00EC\n0xED\t0x00ED\n0xEE\t0x0129\n0xEF\t0x1EC9\n0xF0\t0x0111\n0xF1\t0x1EF1\n0xF2\t0x00F2\n0xF3\t0x00F3\n0xF4\t0x00F4\n0xF5\t0x00F5\n0xF6\t0x1ECF\n0xF7\t0x1ECD\n0xF8\t0x1EE5\n0xF9\t0x00F9\n0xFA\t0x00FA\n0xFB\t0x0169\n0xFC\t0x1EE7\n0xFD\t0x00FD\n0xFE\t0x1EE3\n0xFF\t0x1EEE\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/check-stateful",
    "content": "#!/bin/sh\n# Simple check of a stateful encoding.\n# Usage: check-stateful SRCDIR CHARSET\nsrcdir=\"$1\"\ncharset=\"$2\"\nset -e\n\n# charset, modified for use in filenames.\ncharsetf=`echo \"$charset\" | sed -e 's,:,-,g'`\n\nif test -f \"${srcdir}\"/\"$charsetf\"-snippet.alt; then\n  ../src/iconv_no_i18n -f \"$charset\" -t UTF-8 < \"${srcdir}\"/\"$charsetf\"-snippet.alt > tmp-snippet\n  cmp \"${srcdir}\"/\"$charsetf\"-snippet.UTF-8 tmp-snippet\nfi\n../src/iconv_no_i18n -f \"$charset\" -t UTF-8 < \"${srcdir}\"/\"$charsetf\"-snippet > tmp-snippet\ncmp \"${srcdir}\"/\"$charsetf\"-snippet.UTF-8 tmp-snippet\n../src/iconv_no_i18n -f UTF-8 -t \"$charset\" < \"${srcdir}\"/\"$charsetf\"-snippet.UTF-8 > tmp-snippet\ncmp \"${srcdir}\"/\"$charsetf\"-snippet tmp-snippet\nrm -f tmp-snippet\nexit 0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/check-stateful.bat",
    "content": "@ECHO OFF\nREM Simple check of a stateful encoding.\nREM Usage: check-stateful.bat SRCDIR CHARSET\n\nif not exist %1\\%2-snippet.alt goto ENDIF_1\n  ..\\src\\iconv_no_i18n -f %2 -t UTF-8 < %1\\%2-snippet.alt > tmp-snippet\n  fc %1\\%2-snippet.UTF-8 tmp-snippet\n:ENDIF_1\n\n..\\src\\iconv_no_i18n -f %2 -t UTF-8 < %1\\%2-snippet > tmp-snippet\nfc %1\\%2-snippet.UTF-8 tmp-snippet\n..\\src\\iconv_no_i18n -f UTF-8 -t %2 < %1\\%2-snippet.UTF-8 > tmp-snippet\nfc %1\\%2-snippet tmp-snippet\ndel tmp-snippet\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/check-stateless",
    "content": "#!/bin/sh\n# Complete check of a stateless encoding.\n# Usage: check-stateless SRCDIR CHARSET\nsrcdir=\"$1\"\ncharset=\"$2\"\nset -e\n\n# charset, modified for use in filenames.\ncharsetf=`echo \"$charset\" | sed -e 's,:,-,g'`\n\n# iconv in one direction.\n./table-from \"$charset\" > tmp-\"$charsetf\".TXT\n\n# iconv in the other direction.\n./table-to \"$charset\" | sort > tmp-\"$charsetf\".INVERSE.TXT\n\n# Check 1: charmap and iconv forward should be identical.\ncmp \"${srcdir}\"/\"$charsetf\".TXT tmp-\"$charsetf\".TXT 2> /dev/null\n\n# Check 2: the difference between the charmap and iconv backward.\nsed -e '/\t.* 0x/d' < \"${srcdir}\"/\"$charsetf\".TXT > tmp-noprecomposed-\"$charsetf\".TXT\nif test -f \"${srcdir}\"/\"$charsetf\".IRREVERSIBLE.TXT; then\n  cat tmp-noprecomposed-\"$charsetf\".TXT \"${srcdir}\"/\"$charsetf\".IRREVERSIBLE.TXT | sort | uniq -u > tmp-orig-\"$charsetf\".INVERSE.TXT\nelse\n  cp tmp-noprecomposed-\"$charsetf\".TXT tmp-orig-\"$charsetf\".INVERSE.TXT\nfi\ncmp tmp-orig-\"$charsetf\".INVERSE.TXT tmp-\"$charsetf\".INVERSE.TXT 2> /dev/null\n\nrm -f tmp-\"$charsetf\".TXT tmp-\"$charsetf\".INVERSE.TXT tmp-noprecomposed-\"$charsetf\".TXT tmp-orig-\"$charsetf\".INVERSE.TXT\nexit 0\n# For a new encoding:\n# You can create the \"$charsetf\".TXT like this:\n#   ./table-from \"$charset\" > \"$charsetf\".TXT\n# You can create the \"$charsetf\".IRREVERSIBLE.TXT like this:\n#   ./table-to \"$charset\" | sort > \"$charsetf\".INVERSE.TXT\n#   diff \"$charsetf\".TXT \"$charsetf\".INVERSE.TXT | grep '^[<>]' | sed -e 's,^. ,,' > \"$charsetf\".IRREVERSIBLE.TXT\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/check-stateless.bat",
    "content": "@ECHO OFF\nREM Complete check of a stateless encoding.\nREM Usage: check-stateless.bat SRCDIR CHARSET\n\n.\\table-from %2 > tmp-%2.TXT\n.\\table-to %2 | sort > tmp-%2.INVERSE.TXT\nfc %1\\%2.TXT tmp-%2.TXT\n\nif not exist %1\\%2.IRREVERSIBLE.TXT goto ELSE_1\n  copy /a %1\\%2.TXT /a + %1\\%2.IRREVERSIBLE.TXT /a tmp\n  sort < tmp | uniq-u > tmp-orig-%2.INVERSE.TXT\n  fc tmp-orig-%2.INVERSE.TXT tmp-%2.INVERSE.TXT\n  del tmp\n  del tmp-orig-%2.INVERSE.TXT\n  goto ENDIF_1\n:ELSE_1\n  fc %1\\%2.TXT tmp-%2.INVERSE.TXT\n:ENDIF_1\n\ndel tmp-%2.TXT\ndel tmp-%2.INVERSE.TXT\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/check-subst",
    "content": "#!/bin/sh\n# Check of --unicode-subst, --byte-subst, --widechar-subst options.\nset -e\niconv=../src/iconv_no_i18n\n# Make sure the charset.alias file is found.\nCHARSETALIASDIR=../lib\nexport CHARSETALIASDIR\n\noptions_ascii='--unicode-subst=<U+%04X> --byte-subst=<0x%02x> --widechar-subst=<%08x>'\noptions_utf8='--unicode-subst=«U+%04X» --byte-subst=«0x%02x» --widechar-subst=«%08x»'\n\n# Test of --byte-subst with an ASCII substitution.\n\ncat > tmp-in <<\\EOF\nBöse Bübchen\nEOF\n$iconv $options_ascii -f ASCII -t ASCII < tmp-in > tmp-out\ncat > tmp-ok <<\\EOF\nB<0xc3><0xb6>se B<0xc3><0xbc>bchen\nEOF\ncmp tmp-out tmp-ok\n\n# Test of --byte-subst with a non-ASCII substitution.\n\nif test \"`(locale charmap) 2>/dev/null`\" = UTF-8; then\n  cat > tmp-in <<\\EOF\nBöse Bübchen\nEOF\n  $iconv $options_utf8 -f ASCII -t UTF-8 2>/dev/null < tmp-in > tmp-out\n  cat > tmp-ok <<\\EOF\nB«0xc3»«0xb6»se B«0xc3»«0xbc»bchen\nEOF\n  cmp tmp-out tmp-ok\nfi\n\nif test \"`(locale charmap) 2>/dev/null`\" = UTF-8; then\n  cat > tmp-in <<\\EOF\nBöse Bübchen\nEOF\n  $iconv $options_utf8 -f ASCII -t ISO-8859-1 2>/dev/null < tmp-in > tmp-out\n  $iconv -f ISO-8859-1 -t UTF-8 < tmp-out > tmp-out2\n  cat > tmp-ok <<\\EOF\nB«0xc3»«0xb6»se B«0xc3»«0xbc»bchen\nEOF\n  cmp tmp-out2 tmp-ok\nfi\n\n# Test of --byte-subst with a very long substitution.\n\ncat > tmp-in <<\\EOF\nBöse Bübchen\nEOF\n$iconv --byte-subst='<0x%010000x>' -f ASCII -t ASCII < tmp-in > tmp-out\n# This printf command crashes on Solaris 10.\n# See <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6550204>.\n# Likewise on OSF/1 5.1.\nif printf 'B<0x%010000x><0x%010000x>se B<0x%010000x><0x%010000x>bchen\\n' 0xC3 0xB6 0xC3 0xBC > tmp-ok 2>/dev/null; then\n  cmp tmp-out tmp-ok\nfi\n\n# Test of --unicode-subst with an ASCII substitution.\n\ncat > tmp-in <<\\EOF\nBöse Bübchen\nEOF\n$iconv $options_ascii -f UTF-8 -t ASCII < tmp-in > tmp-out\ncat > tmp-ok <<\\EOF\nB<U+00F6>se B<U+00FC>bchen\nEOF\ncmp tmp-out tmp-ok\n\ncat > tmp-in <<\\EOF\nRussian (Русский)\nEOF\n$iconv $options_ascii -f UTF-8 -t ISO-8859-1 2>/dev/null < tmp-in | $iconv -f ISO-8859-1 -t UTF-8 > tmp-out\ncat > tmp-ok <<\\EOF\nRussian (<U+0420><U+0443><U+0441><U+0441><U+043A><U+0438><U+0439>)\nEOF\ncmp tmp-out tmp-ok\n\n# Test of --unicode-subst with a non-ASCII substitution.\n\nif test \"`(locale charmap) 2>/dev/null`\" = UTF-8; then\n  cat > tmp-in <<\\EOF\nRussian (Русский)\nEOF\n  $iconv $options_utf8 -f UTF-8 -t ISO-8859-1 2>/dev/null < tmp-in > tmp-out\n  $iconv -f ISO-8859-1 -t UTF-8 < tmp-out > tmp-out2\n  cat > tmp-ok <<\\EOF\nRussian («U+0420»«U+0443»«U+0441»«U+0441»«U+043A»«U+0438»«U+0439»)\nEOF\n  cmp tmp-out2 tmp-ok\nfi\n\n# Test of --unicode-subst with a very long substitution.\n\ncat > tmp-in <<\\EOF\nBöse Bübchen\nEOF\n$iconv --unicode-subst='<U+%010000X>' -f UTF-8 -t ASCII < tmp-in > tmp-out\n# This printf command crashes on Solaris 10.\n# See <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6550204>.\nif printf 'B<U+%010000X>se B<U+%010000X>bchen\\n' 0x00F6 0x00FC > tmp-ok 2>/dev/null; then\n  cmp tmp-out tmp-ok\nfi\n\ncat > tmp-in <<\\EOF\nBöse Bübchen\nEOF\n$iconv --byte-subst='<0x%010000x>' -f ASCII -t ASCII < tmp-in > tmp-out\n# This printf command crashes on Solaris 10.\n# See <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6550204>.\n# Likewise on OSF/1 5.1.\nif printf 'B<0x%010000x><0x%010000x>se B<0x%010000x><0x%010000x>bchen\\n' 0xC3 0xB6 0xC3 0xBC > tmp-ok 2>/dev/null; then\n  cmp tmp-out tmp-ok\nfi\n\n# Test of --widechar-subst:\n# wcrtomb() doesn't exist on FreeBSD 4.0 and is broken on MacOS X 10.3.\n# So far this has been tested only on a glibc system with !__STDC_ISO_10646__.\n\nif false && test \"`(locale charmap) 2>/dev/null`\" = UTF-8; then\n  cat > tmp-in <<\\EOF\nRussian (Русский)\nEOF\n  $iconv -f char -t wchar_t < tmp-in > tmp-inw\n  LC_ALL=C                $iconv $options_ascii -f wchar_t -t ASCII < tmp-inw > tmp-out1\n  LC_ALL=de_DE.ISO-8859-1 $iconv $options_ascii -f wchar_t -t ASCII < tmp-inw > tmp-out2\n  cat > tmp-ok <<\\EOF\nRussian (<00000420><00000443><00000441><00000441><0000043a><00000438><00000439>)\nEOF\n  cmp tmp-out1 tmp-ok\n  cmp tmp-out2 tmp-ok\n  if test \"`(LC_ALL=de_DE.ISO-8859-1 locale charmap) 2>/dev/null`\" = ISO-8859-1; then\n    options_latin1=`echo \" $options_utf8\" | $iconv -f UTF-8 -t ISO-8859-1`\n    LC_ALL=de_DE.ISO-8859-1 $iconv $options_latin1 -f wchar_t -t UTF-8 < tmp-inw > tmp-out1\n    cat > tmp-ok <<\\EOF\nRussian («00000420»«00000443»«00000441»«00000441»«0000043a»«00000438»«00000439»)\nEOF\n    cmp tmp-out1 tmp-ok\n  fi\nfi\n\nrm -f tmp-in* tmp-out* tmp-ok\nexit 0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/check-translit",
    "content": "#!/bin/sh\n# Simple check of transliteration facilities.\n# Usage: check-translit SRCDIR FILE FROMCODE TOCODE\nsrcdir=\"$1\"\nfile=\"$2\"\nfromcode=\"$3\"\ntocode=\"$4\"\nset -e\n../src/iconv_no_i18n -f \"$fromcode\" -t \"$tocode\"//TRANSLIT < \"${srcdir}\"/\"$file\".\"$fromcode\" > tmp\ncmp \"${srcdir}\"/\"$file\".\"$tocode\" tmp\nrm -f tmp\nexit 0\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/check-translit.bat",
    "content": "@ECHO OFF\nREM Simple check of transliteration facilities.\nREM Usage: check-translit.bat SRCDIR FILE FROMCODE TOCODE\n\n..\\src\\iconv_no_i18n -f %3 -t %4//TRANSLIT < %1\\%2.%3 > tmp\nfc %1\\%2.%4 tmp\ndel tmp\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/check-translitfailure",
    "content": "#!/bin/sh\n# Simple check of transliteration failure.\n# Usage: check-translitfailure SRCDIR FILE FROMCODE TOCODE\nsrcdir=\"$1\"\nfile=\"$2\"\nfromcode=\"$3\"\ntocode=\"$4\"\n../src/iconv_no_i18n -f \"$fromcode\" -t \"$tocode\"//TRANSLIT < \"${srcdir}\"/\"$file\".\"$fromcode\" >/dev/null 2>/dev/null\ntest $? = 1\nexit $?\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/gengb18030z.c",
    "content": "/* Copyright (C) 2005, 2012 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Creates the beyond-BMP part of the GB18030.TXT reference table. */\n\n#include \"config.h\"\n\n#include <stdio.h>\n#include <stdlib.h>\n\n#include \"binary-io.h\"\n\nint main ()\n{\n  int i1, i2, i3, i4, uc;\n\n#if O_BINARY\n  SET_BINARY(fileno(stdout));\n#endif\n\n  uc = 0x10000;\n  for (i1 = 0x90; i1 <= 0xe3; i1++)\n    for (i2 = 0x30; i2 <= 0x39; i2++)\n      for (i3 = 0x81; i3 <= 0xfe; i3++)\n        for (i4 = 0x30; i4 <= 0x39; i4++) {\n          printf(\"0x%02X%02X%02X%02X\\t0x%X\\n\", i1, i2, i3, i4, uc);\n          uc++;\n          if (uc == 0x110000)\n            goto done;\n        }\n done:\n\n  if (ferror(stdout) || fclose(stdout))\n    exit(1);\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/genutf8.c",
    "content": "/* Copyright (C) 2000, 2004-2005, 2012, 2016 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Creates the UTF-8.TXT reference table. */\n\n#include \"config.h\"\n\n#include <stdio.h>\n#include <stdlib.h>\n\n#include \"binary-io.h\"\n\nint main ()\n{\n  int i1, i2, i3;\n\n#if O_BINARY\n  SET_BINARY(fileno(stdout));\n#endif\n\n  /* Range 0x0000..0x007f */\n  for (i1 = 0; i1 < 0x80; i1++)\n    printf(\"0x%02X\\t0x%04X\\n\", i1, i1);\n  /* Range 0x0080..0x07ff */\n  for (i1 = 2; i1 < 32; i1++)\n    for (i2 = 0; i2 < 64; i2++)\n      printf(\"0x%02X%02X\\t0x%04X\\n\", 0xc0+i1,0x80+i2, (i1<<6)+i2);\n  /* Range 0x0800..0xffff, except 0xd800..0xdfff */\n  for (i1 = 0; i1 < 16; i1++)\n    for (i2 = (i1==0 ? 32 : 0); i2 < 64; i2++)\n      for (i3 = 0; i3 < 64; i3++) {\n        int u = (i1<<12)+(i2<<6)+i3;\n        if (!(u >= 0xd800 && u < 0xe000))\n          printf(\"0x%02X%02X%02X\\t0x%04X\\n\", 0xe0+i1,0x80+i2,0x80+i3, u);\n      }\n\n  if (ferror(stdout) || fclose(stdout))\n    exit(1);\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/table-from.c",
    "content": "/* Copyright (C) 2000-2002, 2004-2005 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Create a table from CHARSET to Unicode. */\n\n#include \"config.h\"\n\n#include <stddef.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <iconv.h>\n#include <errno.h>\n\n#include \"binary-io.h\"\n\n/* If nonzero, ignore conversions outside Unicode plane 0. */\nstatic int bmp_only;\n\nstatic const char* hexbuf (unsigned char buf[], unsigned int buflen)\n{\n  static char msg[50];\n  switch (buflen) {\n    case 1: sprintf(msg,\"0x%02X\",buf[0]); break;\n    case 2: sprintf(msg,\"0x%02X%02X\",buf[0],buf[1]); break;\n    case 3: sprintf(msg,\"0x%02X%02X%02X\",buf[0],buf[1],buf[2]); break;\n    case 4: sprintf(msg,\"0x%02X%02X%02X%02X\",buf[0],buf[1],buf[2],buf[3]); break;\n    default: abort();\n  }\n  return msg;\n}\n\nstatic int try (iconv_t cd, unsigned char buf[], unsigned int buflen, unsigned int* out)\n{\n  const char* inbuf = (const char*) buf;\n  size_t inbytesleft = buflen;\n  char* outbuf = (char*) out;\n  size_t outbytesleft = 3*sizeof(unsigned int);\n  size_t result;\n  iconv(cd,NULL,NULL,NULL,NULL);\n  result = iconv(cd,(ICONV_CONST char**)&inbuf,&inbytesleft,&outbuf,&outbytesleft);\n  if (result != (size_t)(-1))\n    result = iconv(cd,NULL,NULL,&outbuf,&outbytesleft);\n  if (result == (size_t)(-1)) {\n    if (errno == EILSEQ) {\n      return -1;\n    } else if (errno == EINVAL) {\n      return 0;\n    } else {\n      int saved_errno = errno;\n      fprintf(stderr,\"%s: iconv error: \",hexbuf(buf,buflen));\n      errno = saved_errno;\n      perror(\"\");\n      exit(1);\n    }\n  } else if (result > 0) /* ignore conversions with transliteration */ {\n    return -1;\n  } else {\n    if (inbytesleft != 0) {\n      fprintf(stderr,\"%s: inbytes = %ld, outbytes = %ld\\n\",hexbuf(buf,buflen),(long)(buflen-inbytesleft),(long)(3*sizeof(unsigned int)-outbytesleft));\n      exit(1);\n    }\n    return (3*sizeof(unsigned int)-outbytesleft)/sizeof(unsigned int);\n  }\n}\n\n/* Returns the out[] buffer as a Unicode value, formatted as 0x%04X. */\nstatic const char* ucs4_decode (const unsigned int* out, unsigned int outlen)\n{\n  static char hexbuf[21];\n  char* p = hexbuf;\n  while (outlen > 0) {\n    if (p > hexbuf)\n      *p++ = ' ';\n    sprintf (p, \"0x%04X\", out[0]);\n    out += 1; outlen -= 1;\n    if (bmp_only && strlen(p) > 6)\n      return NULL;\n    p += strlen(p);\n  }\n  return hexbuf;\n}\n\nint main (int argc, char* argv[])\n{\n  const char* charset;\n  iconv_t cd;\n  int search_depth;\n\n  if (argc != 2) {\n    fprintf(stderr,\"Usage: table-from charset\\n\");\n    exit(1);\n  }\n  charset = argv[1];\n\n#if O_BINARY\n  SET_BINARY(fileno(stdout));\n#endif\n\n  cd = iconv_open(\"UCS-4-INTERNAL\",charset);\n  if (cd == (iconv_t)(-1)) {\n    perror(\"iconv_open\");\n    exit(1);\n  }\n\n  /* When testing UTF-8, stop at 0x10000, otherwise the output file gets too\n     big. */\n  bmp_only = (strcmp(charset,\"UTF-8\") == 0);\n  search_depth = (strcmp(charset,\"UTF-8\") == 0 ? 3 : 4);\n\n  {\n    unsigned int out[3];\n    unsigned char buf[4];\n    unsigned int i0, i1, i2, i3;\n    int result;\n    for (i0 = 0; i0 < 0x100; i0++) {\n      buf[0] = i0;\n      result = try(cd,buf,1,out);\n      if (result < 0) {\n      } else if (result > 0) {\n        const char* unicode = ucs4_decode(out,result);\n        if (unicode != NULL)\n          printf(\"0x%02X\\t%s\\n\",i0,unicode);\n      } else {\n        for (i1 = 0; i1 < 0x100; i1++) {\n          buf[1] = i1;\n          result = try(cd,buf,2,out);\n          if (result < 0) {\n          } else if (result > 0) {\n            const char* unicode = ucs4_decode(out,result);\n            if (unicode != NULL)\n              printf(\"0x%02X%02X\\t%s\\n\",i0,i1,unicode);\n          } else {\n            for (i2 = 0; i2 < 0x100; i2++) {\n              buf[2] = i2;\n              result = try(cd,buf,3,out);\n              if (result < 0) {\n              } else if (result > 0) {\n                const char* unicode = ucs4_decode(out,result);\n                if (unicode != NULL)\n                  printf(\"0x%02X%02X%02X\\t%s\\n\",i0,i1,i2,unicode);\n              } else if (search_depth > 3) {\n                for (i3 = 0; i3 < 0x100; i3++) {\n                  buf[3] = i3;\n                  result = try(cd,buf,4,out);\n                  if (result < 0) {\n                  } else if (result > 0) {\n                    const char* unicode = ucs4_decode(out,result);\n                    if (unicode != NULL)\n                      printf(\"0x%02X%02X%02X%02X\\t%s\\n\",i0,i1,i2,i3,unicode);\n                  } else {\n                    fprintf(stderr,\"%s: incomplete byte sequence\\n\",hexbuf(buf,4));\n                    exit(1);\n                  }\n                }\n              }\n            }\n          }\n        }\n      }\n    }\n  }\n\n  if (iconv_close(cd) < 0) {\n    perror(\"iconv_close\");\n    exit(1);\n  }\n\n  if (ferror(stdin) || ferror(stdout) || fclose(stdout)) {\n    fprintf(stderr,\"I/O error\\n\");\n    exit(1);\n  }\n\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/table-to.c",
    "content": "/* Copyright (C) 2000-2002, 2004-2005 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Create a table from Unicode to CHARSET. */\n\n#include \"config.h\"\n\n#include <stddef.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <iconv.h>\n#include <errno.h>\n\n#include \"binary-io.h\"\n\nint main (int argc, char* argv[])\n{\n  const char* charset;\n  iconv_t cd;\n  int bmp_only;\n\n  if (argc != 2) {\n    fprintf(stderr,\"Usage: table-to charset\\n\");\n    exit(1);\n  }\n  charset = argv[1];\n\n#if O_BINARY\n  SET_BINARY(fileno(stdout));\n#endif\n\n  cd = iconv_open(charset,\"UCS-4-INTERNAL\");\n  if (cd == (iconv_t)(-1)) {\n    perror(\"iconv_open\");\n    exit(1);\n  }\n\n  /* When testing UTF-8, stop at 0x10000, otherwise the output file gets too\n     big. */\n  bmp_only = (strcmp(charset,\"UTF-8\") == 0);\n\n  {\n    unsigned int i;\n    unsigned char buf[10];\n    for (i = 0; i < (bmp_only ? 0x10000 : 0x110000); i++) {\n      unsigned int in = i;\n      const char* inbuf = (const char*) &in;\n      size_t inbytesleft = sizeof(unsigned int);\n      char* outbuf = (char*)buf;\n      size_t outbytesleft = sizeof(buf);\n      size_t result;\n      size_t result2 = 0;\n      iconv(cd,NULL,NULL,NULL,NULL);\n      result = iconv(cd,(ICONV_CONST char**)&inbuf,&inbytesleft,&outbuf,&outbytesleft);\n      if (result != (size_t)(-1))\n        result2 = iconv(cd,NULL,NULL,&outbuf,&outbytesleft);\n      if (result == (size_t)(-1) || result2 == (size_t)(-1)) {\n        if (errno != EILSEQ) {\n          int saved_errno = errno;\n          fprintf(stderr,\"0x%02X: iconv error: \",i);\n          errno = saved_errno;\n          perror(\"\");\n          exit(1);\n        }\n      } else if (result == 0) /* ignore conversions with transliteration */ {\n        if (inbytesleft == 0 && outbytesleft < sizeof(buf)) {\n          unsigned int jmax = sizeof(buf) - outbytesleft;\n          unsigned int j;\n          printf(\"0x\");\n          for (j = 0; j < jmax; j++)\n            printf(\"%02X\",buf[j]);\n          printf(\"\\t0x%04X\\n\",i);\n        } else if (inbytesleft == 0 && i >= 0xe0000 && i < 0xe0080) {\n          /* Language tags may silently be dropped. */\n        } else {\n          fprintf(stderr,\"0x%02X: inbytes = %ld, outbytes = %ld\\n\",i,(long)(sizeof(unsigned int)-inbytesleft),(long)(sizeof(buf)-outbytesleft));\n          exit(1);\n        }\n      }\n    }\n  }\n\n  if (iconv_close(cd) < 0) {\n    perror(\"iconv_close\");\n    exit(1);\n  }\n\n  if (ferror(stdin) || ferror(stdout) || fclose(stdout)) {\n    fprintf(stderr,\"I/O error\\n\");\n    exit(1);\n  }\n\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/test-shiftseq.c",
    "content": "/* Copyright (C) 2008 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n#include \"config.h\"\n\n#include <stdlib.h>\n#include <iconv.h>\n#include <errno.h>\n\n/* This test checks that the behaviour of iconv() in the situation of an\n   invalid multibyte character after a shift sequence is consistent whether\n   the entire buffer is passed at once, or whether it is passed in two\n   subsequent calls.  Based on a bug report from\n   Roman Rybalko <roman_rybalko@users.sourceforge.net>\n   at <http://savannah.gnu.org/bugs/?24216>.  */\n\nvoid main1 (void)\n{\n  static const char input[] = \"+2D/YQNhB\";\n  iconv_t cd;\n  char buf[20];\n\n  const char * inptr;\n  size_t inleft;\n  char * outptr;\n  size_t outleft;\n\n  cd = iconv_open (\"UTF-8\", \"UTF-7\");\n  {\n    size_t r;\n\n    inptr = input;\n    inleft = 9;\n    outptr = buf;\n    outleft = sizeof (buf);\n    r = iconv (cd, (ICONV_CONST char **) &inptr, &inleft, &outptr, &outleft);\n    /*\n    printf (\"r = %d  errno = %d  inconsumed = %d outproduced = %d\\n\",\n            r, errno, inptr - input, outptr - buf);\n    // glibc:\n    //   r = -1  errno = 84  inconsumed = 4 outproduced = 0\n    // libiconv:\n    //   r = -1  errno = 84  inconsumed = 1 outproduced = 0\n    */\n    if (!(r == (size_t)(-1) && errno == EILSEQ\n          && inptr - input == 1 && outptr - buf == 0))\n      abort();\n  }\n}\n\nvoid main2 (void)\n{\n  static const char input[] = \"+2D/YQNhB\";\n  iconv_t cd;\n  char buf[20];\n\n  const char * inptr;\n  size_t inleft;\n  char * outptr;\n  size_t outleft;\n\n  cd = iconv_open (\"UTF-8\", \"UTF-7\");\n  {\n    size_t r;\n\n    inptr = input;\n    inleft = 5;\n    outptr = buf;\n    outleft = sizeof (buf);\n    r = iconv (cd, (ICONV_CONST char **) &inptr, &inleft, &outptr, &outleft);\n    /*\n    printf (\"r = %d  errno = %d  inconsumed = %d outproduced = %d\\n\",\n            r, errno, inptr - input, outptr - buf);\n    // glibc:\n    //   r = -1  errno = 84 (EILSEQ)  inconsumed = 4 outproduced = 0\n    // libiconv:\n    //   r = -1  errno = 22 (EINVAL)  inconsumed = 1 outproduced = 0\n    */\n    if (!(r == (size_t)(-1) && errno == EINVAL\n          && inptr - input == 1 && outptr - buf == 0))\n      abort();\n\n    inleft = input + 20 - inptr;\n    r = iconv (cd, (ICONV_CONST char **) &inptr, &inleft, &outptr, &outleft);\n    /*\n    printf (\"r = %d  errno = %d  inconsumed = %d outproduced = %d\\n\",\n            r, errno, inptr - input, outptr - buf);\n    // glibc:\n    //   r = -1  errno = 84 (EILSEQ)  inconsumed = 4 outproduced = 0\n    // libiconv:\n    //   r = -1  errno = 84 (EILSEQ)  inconsumed = 1 outproduced = 0\n    */\n    if (!(r == (size_t)(-1) && errno == EILSEQ\n          && inptr - input == 1 && outptr - buf == 0))\n      abort();\n  }\n}\n\nint main ()\n{\n  main1 ();\n  main2 ();\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/test-to-wchar.c",
    "content": "/* Copyright (C) 2009, 2011 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Library.\n\n   The GNU LIBICONV Library is free software; you can redistribute it\n   and/or modify it under the terms of the GNU Library General Public\n   License as published by the Free Software Foundation; either version 2\n   of the License, or (at your option) any later version.\n\n   The GNU LIBICONV Library is distributed in the hope that it will be\n   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n   Library General Public License for more details.\n\n   You should have received a copy of the GNU Library General Public\n   License along with the GNU LIBICONV Library; see the file COPYING.LIB.\n   If not, see <http://www.gnu.org/licenses/>.  */\n\n#include \"config.h\"\n\n#include <stdlib.h>\n#include <iconv.h>\n#include <errno.h>\n\n/* This test checks that the conversion to wchar_t stops correctly when\n   the input is incomplete.  Based on a bug report from\n   Tristan Gingold <gingold@adacore.com>.  */\n\nint main ()\n{\n  iconv_t cd = iconv_open (\"wchar_t\", \"UTF-8\");\n  if (cd == (iconv_t)(-1)) {\n    /* Skip the test on platforms without wchar_t\n      (Solaris 2.6, HP-UX 11.00).  */\n  } else {\n    char inbuf[2] = { 0xc2, 0xa0 };\n    wchar_t outbuf[10];\n\n    char *inptr = inbuf;\n    size_t inbytesleft = 1;\n    char *outptr = (char *) outbuf;\n    size_t outbytesleft = sizeof (outbuf);\n    size_t r = iconv (cd,\n                      (ICONV_CONST char **) &inptr, &inbytesleft,\n                      &outptr, &outbytesleft);\n\n    if (!(r == (size_t)(-1) && errno == EINVAL))\n      abort ();\n  }\n\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tests/uniq-u.c",
    "content": "/* uniq -- remove duplicate lines from a sorted file\n   Copyright (C) 86, 91, 1995-1998, 1999, 2012 Free Software Foundation, Inc.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* Written by Richard Stallman and David MacKenzie. */\n/* 2000-03-22  Trimmed down to the case of \"uniq -u\" by Bruno Haible. */\n\n#include <stddef.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n\n/* The name this program was run with. */\nstatic char *program_name;\n\nstatic void\nxalloc_fail (void)\n{\n  fprintf (stderr, \"%s: virtual memory exhausted\\n\", program_name);\n  exit (1);\n}\n\n/* Allocate N bytes of memory dynamically, with error checking.  */\n\nvoid *\nxmalloc (size_t n)\n{\n  void *p;\n\n  p = malloc (n);\n  if (p == 0)\n    xalloc_fail ();\n  return p;\n}\n\n/* Change the size of an allocated block of memory P to N bytes,\n   with error checking.\n   If P is NULL, run xmalloc.  */\n\nvoid *\nxrealloc (void *p, size_t n)\n{\n  p = realloc (p, n);\n  if (p == 0)\n    xalloc_fail ();\n  return p;\n}\n\n/* A 'struct linebuffer' holds a line of text. */\n\nstruct linebuffer\n{\n  size_t size;                  /* Allocated. */\n  size_t length;                /* Used. */\n  char *buffer;\n};\n\n/* Initialize linebuffer LINEBUFFER for use. */\n\nstatic void\ninitbuffer (struct linebuffer *linebuffer)\n{\n  linebuffer->length = 0;\n  linebuffer->size = 200;\n  linebuffer->buffer = (char *) xmalloc (linebuffer->size);\n}\n\n/* Read an arbitrarily long line of text from STREAM into LINEBUFFER.\n   Keep the newline; append a newline if it's the last line of a file\n   that ends in a non-newline character.  Do not null terminate.\n   Return LINEBUFFER, except at end of file return 0.  */\n\nstatic struct linebuffer *\nreadline (struct linebuffer *linebuffer, FILE *stream)\n{\n  int c;\n  char *buffer = linebuffer->buffer;\n  char *p = linebuffer->buffer;\n  char *end = buffer + linebuffer->size - 1; /* Sentinel. */\n\n  if (feof (stream) || ferror (stream))\n    return 0;\n\n  do\n    {\n      c = getc (stream);\n      if (c == EOF)\n        {\n          if (p == buffer)\n            return 0;\n          if (p[-1] == '\\n')\n            break;\n          c = '\\n';\n        }\n      if (p == end)\n        {\n          linebuffer->size *= 2;\n          buffer = (char *) xrealloc (buffer, linebuffer->size);\n          p = p - linebuffer->buffer + buffer;\n          linebuffer->buffer = buffer;\n          end = buffer + linebuffer->size - 1;\n        }\n      *p++ = c;\n    }\n  while (c != '\\n');\n\n  linebuffer->length = p - buffer;\n  return linebuffer;\n}\n\n/* Free linebuffer LINEBUFFER's data. */\n\nstatic void\nfreebuffer (struct linebuffer *linebuffer)\n{\n  free (linebuffer->buffer);\n}\n\n/* Undefine, to avoid warning about redefinition on some systems.  */\n#undef min\n#define min(x, y) ((x) < (y) ? (x) : (y))\n\n/* Return zero if two strings OLD and NEW match, nonzero if not.\n   OLD and NEW point not to the beginnings of the lines\n   but rather to the beginnings of the fields to compare.\n   OLDLEN and NEWLEN are their lengths. */\n\nstatic int\ndifferent (const char *old, const char *new, size_t oldlen, size_t newlen)\n{\n  int order;\n\n  order = memcmp (old, new, min (oldlen, newlen));\n\n  if (order == 0)\n    return oldlen - newlen;\n  return order;\n}\n\n/* Output the line in linebuffer LINE to stream STREAM\n   provided that the switches say it should be output.\n   If requested, print the number of times it occurred, as well;\n   LINECOUNT + 1 is the number of times that the line occurred. */\n\nstatic void\nwriteline (const struct linebuffer *line, FILE *stream, int linecount)\n{\n  if (linecount == 0)\n    fwrite (line->buffer, 1, line->length, stream);\n}\n\n/* Process input file INFILE with output to OUTFILE.\n   If either is \"-\", use the standard I/O stream for it instead. */\n\nstatic void\ncheck_file (const char *infile, const char *outfile)\n{\n  FILE *istream;\n  FILE *ostream;\n  struct linebuffer lb1, lb2;\n  struct linebuffer *thisline, *prevline, *exch;\n  char *prevfield, *thisfield;\n  size_t prevlen, thislen;\n  int match_count = 0;\n\n  if (!strcmp (infile, \"-\"))\n    istream = stdin;\n  else\n    istream = fopen (infile, \"r\");\n  if (istream == NULL)\n    {\n      fprintf (stderr, \"%s: error opening %s\\n\", program_name, infile);\n      exit (1);\n    }\n\n  if (!strcmp (outfile, \"-\"))\n    ostream = stdout;\n  else\n    ostream = fopen (outfile, \"w\");\n  if (ostream == NULL)\n    {\n      fprintf (stderr, \"%s: error opening %s\\n\", program_name, outfile);\n      exit (1);\n    }\n\n  thisline = &lb1;\n  prevline = &lb2;\n\n  initbuffer (thisline);\n  initbuffer (prevline);\n\n  if (readline (prevline, istream) == 0)\n    goto closefiles;\n  prevfield = prevline->buffer;\n  prevlen = prevline->length;\n\n  while (!feof (istream))\n    {\n      int match;\n      if (readline (thisline, istream) == 0)\n        break;\n      thisfield = thisline->buffer;\n      thislen = thisline->length;\n      match = !different (thisfield, prevfield, thislen, prevlen);\n\n      if (match)\n        ++match_count;\n\n      if (!match)\n        {\n          writeline (prevline, ostream, match_count);\n          exch = prevline;\n          prevline = thisline;\n          thisline = exch;\n          prevfield = thisfield;\n          prevlen = thislen;\n          if (!match)\n            match_count = 0;\n        }\n    }\n\n  writeline (prevline, ostream, match_count);\n\n closefiles:\n  if (ferror (istream) || fclose (istream) == EOF)\n    {\n      fprintf (stderr, \"%s: error reading %s\\n\", program_name, infile);\n      exit (1);\n    }\n\n  if (ferror (ostream) || fclose (ostream) == EOF)\n    {\n      fprintf (stderr, \"%s: error writing %s\\n\", program_name, outfile);\n      exit (1);\n    }\n\n  freebuffer (&lb1);\n  freebuffer (&lb2);\n}\n\nint\nmain (int argc, char **argv)\n{\n  const char *infile = \"-\";\n  const char *outfile = \"-\";\n  int optind = 1;\n\n  program_name = argv[0];\n\n  if (optind < argc)\n    infile = argv[optind++];\n\n  if (optind < argc)\n    outfile = argv[optind++];\n\n  if (optind < argc)\n    {\n      fprintf (stderr, \"%s: too many arguments\\n\", program_name);\n      exit (1);\n    }\n\n  check_file (infile, outfile);\n\n  exit (0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tools/8bit_tab_to_h.c",
    "content": "/* Copyright (C) 1999-2002, 2011-2012, 2016 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Tools.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/*\n * Generates an 8-bit character set table from a .TXT table as found on\n * ftp.unicode.org or from a table containing the 256 Unicode values as\n * hexadecimal integers.\n * Examples:\n *\n *   ./8bit_tab_to_h ISO-8859-1 iso8859_1 < tab8859_1\n *   ./8bit_tab_to_h ISO-8859-2 iso8859_2 < tab8859_2\n *   ./8bit_tab_to_h ISO-8859-3 iso8859_3 < tab8859_3\n *   ./8bit_tab_to_h ISO-8859-4 iso8859_4 < tab8859_4\n *   ./8bit_tab_to_h ISO-8859-5 iso8859_5 < tab8859_5\n *   ./8bit_tab_to_h ISO-8859-6 iso8859_6 < tab8859_6\n *   ./8bit_tab_to_h ISO-8859-7 iso8859_7 < tab8859_7\n *   ./8bit_tab_to_h ISO-8859-8 iso8859_8 < tab8859_8\n *   ./8bit_tab_to_h ISO-8859-9 iso8859_9 < tab8859_9\n *   ./8bit_tab_to_h ISO-8859-10 iso8859_10 < tab8859_10\n *   ./8bit_tab_to_h ISO-8859-14 iso8859_14 < tab8859_14\n *   ./8bit_tab_to_h ISO-8859-15 iso8859_15 < tab8859_15\n *   ./8bit_tab_to_h JISX0201.1976-0 jisx0201 < jis0201\n *   ./8bit_tab_to_h TIS620.2533-1 tis620 < tabtis620\n *   ./8bit_tab_to_h KOI8-R koi8_r < tabkoi8_r\n *   ./8bit_tab_to_h KOI8-U koi8_u < tabkoi8_u\n *   ./8bit_tab_to_h ARMSCII-8 armscii_8 < tabarmscii_8\n *   ./8bit_tab_to_h CP1133 cp1133 < tabibm_cp1133\n *   ./8bit_tab_to_h MULELAO-1 mulelao < tabmulelao_1\n *   ./8bit_tab_to_h VISCII1.1-1 viscii1 < tabviscii\n *   ./8bit_tab_to_h TCVN-5712 tcvn < tabtcvn\n *   ./8bit_tab_to_h GEORGIAN-ACADEMY georgian_ac < tabgeorgian_academy\n *   ./8bit_tab_to_h GEORGIAN-PS georgian_ps < tabgeorgian_ps\n *\n *   ./8bit_tab_to_h ISO-8859-1 iso8859_1 < 8859-1.TXT\n *   ./8bit_tab_to_h ISO-8859-2 iso8859_2 < 8859-2.TXT\n *   ./8bit_tab_to_h ISO-8859-3 iso8859_3 < 8859-3.TXT\n *   ./8bit_tab_to_h ISO-8859-4 iso8859_4 < 8859-4.TXT\n *   ./8bit_tab_to_h ISO-8859-5 iso8859_5 < 8859-5.TXT\n *   ./8bit_tab_to_h ISO-8859-6 iso8859_6 < 8859-6.TXT\n *   ./8bit_tab_to_h ISO-8859-7 iso8859_7 < 8859-7.TXT\n *   ./8bit_tab_to_h ISO-8859-8 iso8859_8 < 8859-8.TXT\n *   ./8bit_tab_to_h ISO-8859-9 iso8859_9 < 8859-9.TXT\n *   ./8bit_tab_to_h ISO-8859-10 iso8859_10 < 8859-10.TXT\n *   ./8bit_tab_to_h ISO-8859-14 iso8859_14 < 8859-14.TXT\n *   ./8bit_tab_to_h ISO-8859-15 iso8859_15 < 8859-15.TXT\n *   ./8bit_tab_to_h JISX0201.1976-0 jisx0201 < JIS0201.TXT\n *   ./8bit_tab_to_h KOI8-R koi8_r < KOI8-R.TXT\n *\n *   ./8bit_tab_to_h 'CP50221 JISX0208 extensions' cp50221_0208_ext < CP50221-0208-EXT.TXT\n *   ./8bit_tab_to_h 'CP50221 JISX0212 extensions' cp50221_0212_ext < CP50221-0212-EXT.TXT\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <stdbool.h>\n#include <string.h>\n\nint main (int argc, char *argv[])\n{\n  const char* charsetname;\n  const char* c_charsetname;\n  const char* filename;\n  const char* directory;\n  int charset2uni[0x100];\n\n  if (argc != 3 && argc != 4 && argc != 5)\n    exit(1);\n  charsetname = argv[1];\n  c_charsetname = argv[2];\n  if (argc > 3) {\n    filename = argv[3];\n  } else {\n    char* s = (char*) malloc(strlen(c_charsetname)+strlen(\".h\")+1);\n    strcpy(s,c_charsetname); strcat(s,\".h\");\n    filename = s;\n  }\n  directory = (argc > 4 ? argv[4] : \"\");\n\n  fprintf(stderr, \"Creating %s%s\\n\", directory, filename);\n\n  {\n    int i, c;\n    c = getc(stdin);\n    ungetc(c,stdin);\n    if (c == '#') {\n      /* Read a unicode.org style .TXT file. */\n      for (i = 0; i < 0x100; i++)\n        charset2uni[i] = 0xfffd;\n      for (;;) {\n        c = getc(stdin);\n        if (c == EOF)\n          break;\n        if (c == '\\n' || c == ' ' || c == '\\t')\n          continue;\n        if (c == '#') {\n          do { c = getc(stdin); } while (!(c == EOF || c == '\\n'));\n          continue;\n        }\n        ungetc(c,stdin);\n        if (scanf(\"0x%x\", &i) != 1 || !(i >= 0 && i < 0x100))\n          exit(1);\n        do { c = getc(stdin); } while (c == ' ' || c == '\\t');\n        if (c != EOF)\n          ungetc(c,stdin);\n        if (c == '\\n' || c == '#')\n          continue;\n        if (scanf(\"0x%x\", &charset2uni[i]) != 1)\n          exit(1);\n      }\n    } else {\n      /* Read a table of hexadecimal Unicode values. */\n      for (i = 0; i < 0x100; i++) {\n        if (scanf(\"%x\", &charset2uni[i]) != 1)\n          exit(1);\n        if (charset2uni[i] < 0 || charset2uni[i] == 0xffff)\n          charset2uni[i] = 0xfffd;\n      }\n      if (scanf(\"%x\", &i) != EOF)\n        exit(1);\n    }\n  }\n\n  /* Write the output file. */\n  {\n    FILE* f;\n\n    {\n      char* fname = malloc(strlen(directory)+strlen(filename)+1);\n      strcpy(fname,directory); strcat(fname,filename);\n      f = fopen(fname,\"w\");\n      if (f == NULL)\n        exit(1);\n    }\n\n    fprintf(f, \"/*\\n\");\n    fprintf(f, \" * Copyright (C) 1999-2002 Free Software Foundation, Inc.\\n\");\n    fprintf(f, \" * This file is part of the GNU LIBICONV Library.\\n\");\n    fprintf(f, \" *\\n\");\n    fprintf(f, \" * The GNU LIBICONV Library is free software; you can redistribute it\\n\");\n    fprintf(f, \" * and/or modify it under the terms of the GNU Library General Public\\n\");\n    fprintf(f, \" * License as published by the Free Software Foundation; either version 2\\n\");\n    fprintf(f, \" * of the License, or (at your option) any later version.\\n\");\n    fprintf(f, \" *\\n\");\n    fprintf(f, \" * The GNU LIBICONV Library is distributed in the hope that it will be\\n\");\n    fprintf(f, \" * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\\n\");\n    fprintf(f, \" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\\n\");\n    fprintf(f, \" * Library General Public License for more details.\\n\");\n    fprintf(f, \" *\\n\");\n    fprintf(f, \" * You should have received a copy of the GNU Library General Public\\n\");\n    fprintf(f, \" * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\\n\");\n    fprintf(f, \" * If not, see <http://www.gnu.org/licenses/>.\\n\");\n    fprintf(f, \" */\\n\");\n    fprintf(f, \"\\n\");\n    fprintf(f, \"/*\\n\");\n    fprintf(f, \" * %s\\n\", charsetname);\n    fprintf(f, \" */\\n\");\n    fprintf(f, \"\\n\");\n\n    {\n      int i, i1, i2, i3;\n      int line[16];\n      int tableno;\n      struct { int minline; int maxline; } tables[16];\n      bool some_invalid;\n      bool final_ret_reached;\n\n      for (i1 = 0; i1 < 16; i1++) {\n        bool all_invalid = true;\n        bool all_identity = true;\n        for (i2 = 0; i2 < 16; i2++) {\n          i = 16*i1+i2;\n          if (charset2uni[i] != 0xfffd)\n            all_invalid = false;\n          if (charset2uni[i] != i)\n            all_identity = false;\n        }\n        if (all_invalid)\n          line[i1] = -2;\n        else if (all_identity)\n          line[i1] = -1;\n        else\n          line[i1] = 0;\n      }\n      tableno = 0;\n      for (i1 = 0; i1 < 16; i1++) {\n        if (line[i1] >= 0) {\n          if (i1 > 0 && tableno > 0 && line[i1-1] == tableno-1) {\n            line[i1] = tableno-1;\n            tables[tableno-1].maxline = i1;\n          } else {\n            tableno++;\n            line[i1] = tableno-1;\n            tables[tableno-1].minline = tables[tableno-1].maxline = i1;\n          }\n        }\n      }\n      some_invalid = false;\n      for (i = 0; i < 0x100; i++)\n        if (charset2uni[i] == 0xfffd)\n          some_invalid = true;\n      if (tableno > 0) {\n        int t;\n        for (t = 0; t < tableno; t++) {\n          fprintf(f, \"static const unsigned short %s_2uni\", c_charsetname);\n          if (tableno > 1)\n            fprintf(f, \"_%d\", t+1);\n          fprintf(f, \"[%d] = {\\n\", 16*(tables[t].maxline-tables[t].minline+1));\n          for (i1 = tables[t].minline; i1 <= tables[t].maxline; i1++) {\n            fprintf(f, \"  /* 0x%02x */\\n\", 16*i1);\n            for (i2 = 0; i2 < 2; i2++) {\n              fprintf(f, \" \");\n              for (i3 = 0; i3 < 8; i3++) {\n                i = 16*i1+8*i2+i3;\n                fprintf(f, \" 0x%04x,\", charset2uni[i]);\n              }\n              fprintf(f, \"\\n\");\n            }\n          }\n          fprintf(f, \"};\\n\");\n        }\n        fprintf(f, \"\\n\");\n      }\n      final_ret_reached = false;\n      fprintf(f, \"static int\\n%s_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\\n\", c_charsetname);\n      fprintf(f, \"{\\n\");\n      fprintf(f, \"  unsigned char c = *s;\\n\");\n      if (some_invalid) {\n        for (i1 = 0; i1 < 16;) {\n          int t = line[i1];\n          const char* indent;\n          for (i2 = i1; i2 < 16 && line[i2] == t; i2++);\n          indent = (i1 == 0 && i2 == 16 ? \"  \" : \"    \");\n          if (i1 == 0) {\n            if (i2 == 16) {\n            } else {\n              fprintf(f, \"  if (c < 0x%02x) {\\n\", 16*i2);\n            }\n          } else {\n            if (i2 == 16) {\n              fprintf(f, \"  else {\\n\");\n            } else {\n              fprintf(f, \"  else if (c < 0x%02x) {\\n\", 16*i2);\n            }\n          }\n          if (t == -2) {\n            final_ret_reached = true;\n          } else if (t == -1) {\n            fprintf(f, \"%s*pwc = (ucs4_t) c;\\n\", indent);\n            fprintf(f, \"%sreturn 1;\\n\", indent);\n          } else {\n            fprintf(f, \"%s\", indent);\n            some_invalid = false;\n            for (i = 16*i1; i < 16*i2; i++)\n              if (charset2uni[i] == 0xfffd)\n                some_invalid = true;\n            if (some_invalid)\n              fprintf(f, \"unsigned short wc = \");\n            else\n              fprintf(f, \"*pwc = (ucs4_t) \");\n            fprintf(f, \"%s_2uni\", c_charsetname);\n            if (tableno > 1)\n              fprintf(f, \"_%d\", t+1);\n            fprintf(f, \"[c\");\n            if (tables[t].minline > 0)\n              fprintf(f, \"-0x%02x\", 16*tables[t].minline);\n            fprintf(f, \"];\\n\");\n            if (some_invalid) {\n              fprintf(f, \"%sif (wc != 0xfffd) {\\n\", indent);\n              fprintf(f, \"%s  *pwc = (ucs4_t) wc;\\n\", indent);\n              fprintf(f, \"%s  return 1;\\n\", indent);\n              fprintf(f, \"%s}\\n\", indent);\n              final_ret_reached = true;\n            } else {\n              fprintf(f, \"%sreturn 1;\\n\", indent);\n            }\n          }\n          if (!(i1 == 0 && i2 == 16))\n            fprintf(f, \"  }\\n\");\n          i1 = i2;\n        }\n        if (final_ret_reached)\n          fprintf(f, \"  return RET_ILSEQ;\\n\");\n      } else {\n        for (i1 = 0; i1 < 16;) {\n          int t = line[i1];\n          for (i2 = i1; i2 < 16 && line[i2] == t; i2++);\n          if (i1 == 0) {\n            if (i2 == 16) {\n              fprintf(f, \"  \");\n            } else {\n              fprintf(f, \"  if (c < 0x%02x)\\n    \", 16*i2);\n            }\n          } else {\n            if (i2 == 16) {\n              fprintf(f, \"  else\\n    \");\n            } else {\n              fprintf(f, \"  else if (c < 0x%02x)\\n    \", 16*i2);\n            }\n          }\n          if (t == -1)\n            fprintf(f, \"*pwc = (ucs4_t) c;\\n\");\n          else {\n            fprintf(f, \"*pwc = (ucs4_t) %s_2uni\", c_charsetname);\n            if (tableno > 1)\n              fprintf(f, \"_%d\", t+1);\n            fprintf(f, \"[c\");\n            if (tables[t].minline > 0)\n              fprintf(f, \"-0x%02x\", 16*tables[t].minline);\n            fprintf(f, \"];\\n\");\n          }\n          i1 = i2;\n        }\n        fprintf(f, \"  return 1;\\n\");\n      }\n      fprintf(f, \"}\\n\");\n\n    }\n\n    fprintf(f, \"\\n\");\n\n    {\n      int uni2charset[0x10000];\n      bool pages[0x100];\n      int line[0x2000];\n      int tableno;\n      struct { int minline; int maxline; int usecount; const char* suffix; } tables[0x2000];\n      bool need_c;\n      bool fix_0000;\n      int i, j, p, j1, j2, t;\n\n      for (j = 0; j < 0x10000; j++)\n        uni2charset[j] = 0;\n      for (p = 0; p < 0x100; p++)\n        pages[p] = false;\n      for (i = 0; i < 0x100; i++) {\n        j = charset2uni[i];\n        if (j != 0xfffd) {\n          uni2charset[j] = i;\n          pages[j>>8] = true;\n        }\n      }\n      for (j1 = 0; j1 < 0x2000; j1++) {\n        bool all_invalid = true;\n        bool all_identity = true;\n        for (j2 = 0; j2 < 8; j2++) {\n          j = 8*j1+j2;\n          if (uni2charset[j] != 0)\n            all_invalid = false;\n          if (uni2charset[j] != j)\n            all_identity = false;\n        }\n        if (all_invalid)\n          line[j1] = -2;\n        else if (all_identity)\n          line[j1] = -1;\n        else\n          line[j1] = 0;\n      }\n      tableno = 0;\n      for (j1 = 0; j1 < 0x2000; j1++) {\n        if (line[j1] >= 0) {\n          if (tableno > 0\n              && ((j1 > 0 && line[j1-1] == tableno-1)\n                  || ((tables[tableno-1].maxline >> 5) == (j1 >> 5)\n                      && j1 - tables[tableno-1].maxline <= 8))) {\n            line[j1] = tableno-1;\n            tables[tableno-1].maxline = j1;\n          } else {\n            tableno++;\n            line[j1] = tableno-1;\n            tables[tableno-1].minline = tables[tableno-1].maxline = j1;\n          }\n        }\n      }\n      for (t = 0; t < tableno; t++) {\n        tables[t].usecount = 0;\n        j1 = 8*tables[t].minline;\n        j2 = 8*(tables[t].maxline+1);\n        for (j = j1; j < j2; j++)\n          if (uni2charset[j] != 0)\n            tables[t].usecount++;\n      }\n      for (t = 0, p = -1, i = 0; t < tableno; t++) {\n        if (tables[t].usecount > 1) {\n          char* s;\n          if (p == tables[t].minline >> 5) {\n            s = (char*) malloc(5+1);\n            sprintf(s, \"%02x_%d\", p, ++i);\n          } else {\n            p = tables[t].minline >> 5;\n            s = (char*) malloc(2+1);\n            sprintf(s, \"%02x\", p);\n          }\n          tables[t].suffix = s;\n        } else\n          tables[t].suffix = NULL;\n      }\n      {\n        p = -1;\n        for (t = 0; t < tableno; t++)\n          if (tables[t].usecount > 1) {\n            p = 0;\n            fprintf(f, \"static const unsigned char %s_page%s[%d] = {\\n\", c_charsetname, tables[t].suffix, 8*(tables[t].maxline-tables[t].minline+1));\n            for (j1 = tables[t].minline; j1 <= tables[t].maxline; j1++) {\n              if ((j1 % 0x20) == 0 && j1 > tables[t].minline)\n                fprintf(f, \"  /* 0x%04x */\\n\", 8*j1);\n              fprintf(f, \" \");\n              for (j2 = 0; j2 < 8; j2++) {\n                j = 8*j1+j2;\n                fprintf(f, \" 0x%02x,\", uni2charset[j]);\n              }\n              fprintf(f, \" /* 0x%02x-0x%02x */\\n\", 8*(j1 % 0x20), 8*(j1 % 0x20)+7);\n            }\n            fprintf(f, \"};\\n\");\n          }\n        if (p >= 0)\n          fprintf(f, \"\\n\");\n      }\n      need_c = false;\n      for (j1 = 0; j1 < 0x2000;) {\n        t = line[j1];\n        for (j2 = j1; j2 < 0x2000 && line[j2] == t; j2++);\n        if (t >= 0)\n          j2 = tables[t].maxline+1;\n        if (!(t == -2 || (t == -1 && j1 == 0)))\n          need_c = true;\n        j1 = j2;\n      }\n      fix_0000 = false;\n      fprintf(f, \"static int\\n%s_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\\n\", c_charsetname);\n      fprintf(f, \"{\\n\");\n      if (need_c)\n        fprintf(f, \"  unsigned char c = 0;\\n\");\n      for (j1 = 0; j1 < 0x2000;) {\n        t = line[j1];\n        for (j2 = j1; j2 < 0x2000 && line[j2] == t; j2++);\n        if (t >= 0) {\n          if (j1 != tables[t].minline) abort();\n          if (j2 > tables[t].maxline+1) abort();\n          j2 = tables[t].maxline+1;\n        }\n        if (t == -2) {\n        } else {\n          if (j1 == 0)\n            fprintf(f, \"  \");\n          else\n            fprintf(f, \"  else \");\n          if (t >= 0 && tables[t].usecount == 0) abort();\n          if (t >= 0 && tables[t].usecount == 1) {\n            if (j2 != j1+1) abort();\n            for (j = 8*j1; j < 8*j2; j++)\n              if (uni2charset[j] != 0) {\n                fprintf(f, \"if (wc == 0x%04x)\\n    c = 0x%02x;\\n\", j, uni2charset[j]);\n                break;\n              }\n          } else {\n            if (j1 == 0) {\n              fprintf(f, \"if (wc < 0x%04x)\", 8*j2);\n            } else {\n              fprintf(f, \"if (wc >= 0x%04x && wc < 0x%04x)\", 8*j1, 8*j2);\n            }\n            if (t == -1) {\n              if (j1 == 0)\n                /* If wc == 0, the function must return 1, not -1. */\n                fprintf(f, \" {\\n    *r = wc;\\n    return 1;\\n  }\\n\");\n              else\n                fprintf(f, \"\\n    c = wc;\\n\");\n            } else {\n              fprintf(f, \"\\n    c = %s_page%s[wc\", c_charsetname, tables[t].suffix);\n              if (tables[t].minline > 0)\n                fprintf(f, \"-0x%04x\", 8*j1);\n              fprintf(f, \"];\\n\");\n              if (j1 == 0 && uni2charset[0] == 0)\n                /* If wc == 0, the function must return 1, not -1. */\n                fix_0000 = true;\n            }\n          }\n        }\n        j1 = j2;\n      }\n      if (need_c) {\n        if (fix_0000)\n          fprintf(f, \"  if (c != 0 || wc == 0) {\\n\");\n        else\n          fprintf(f, \"  if (c != 0) {\\n\");\n        fprintf(f, \"    *r = c;\\n\");\n        fprintf(f, \"    return 1;\\n\");\n        fprintf(f, \"  }\\n\");\n      }\n      fprintf(f, \"  return RET_ILUNI;\\n\");\n      fprintf(f, \"}\\n\");\n\n    }\n\n    if (ferror(f) || fclose(f))\n      exit(1);\n  }\n\n#if 0\n\n    int i1, i2, i3, i1_min, i1_max, j1, j2;\n\n  i1_min = 16;\n  i1_max = -1;\n  for (i1 = 0; i1 < 16; i1++)\n    for (i2 = 0; i2 < 16; i2++)\n      if (charset2uni[16*i1+i2] != 0xfffd) {\n        if (i1_min > i1) i1_min = i1;\n        if (i1_max < i1) i1_max = i1;\n      }\n  printf(\"static const unsigned short %s_2uni[%d] = {\\n\",\n         name, 16*(i1_max-i1_min+1));\n  for (i1 = i1_min; i1 <= i1_max; i1++) {\n    printf(\"  /\"\"* 0x%02x *\"\"/\\n\", 16*i1);\n    for (i2 = 0; i2 < 2; i2++) {\n      printf(\"  \");\n      for (i3 = 0; i3 < 8; i3++) {\n        if (i3 > 0) printf(\" \");\n        printf(\"0x%04x,\", charset2uni[16*i1+8*i2+i3]);\n      }\n      printf(\"\\n\");\n    }\n  }\n  printf(\"};\\n\");\n  printf(\"\\n\");\n\n  for (p = 0; p < 0x100; p++)\n    pages[p] = 0;\n  for (i = 0; i < 0x100; i++)\n    if (charset2uni[i] != 0xfffd)\n      pages[charset2uni[i]>>8] = 1;\n  for (p = 0; p < 0x100; p++)\n    if (pages[p]) {\n      int j1_min = 32;\n      int j1_max = -1;\n      for (j1 = 0; j1 < 32; j1++)\n        for (j2 = 0; j2 < 8; j2++)\n          if (uni2charset[256*p+8*j1+j2] != 0) {\n            if (j1_min > j1) j1_min = j1;\n            if (j1_max < j1) j1_max = j1;\n          }\n      printf(\"static const unsigned char %s_page%02x[%d] = {\\n\",\n             name, p, 8*(j1_max-j1_min+1));\n      for (j1 = j1_min; j1 <= j1_max; j1++) {\n        printf(\"  \");\n        for (j2 = 0; j2 < 8; j2++)\n          printf(\"0x%02x, \", uni2charset[256*p+8*j1+j2]);\n        printf(\"/\"\"* 0x%02x-0x%02x *\"\"/\\n\", 8*j1, 8*j1+7);\n      }\n      printf(\"};\\n\");\n    }\n  printf(\"\\n\");\n\n}\n#endif\n\n  exit(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tools/CP50221-0208-EXT.TXT",
    "content": "# CP50221, section JIS X 0208, row 0x2D.\n0x01\t0x2460\n0x02\t0x2461\n0x03\t0x2462\n0x04\t0x2463\n0x05\t0x2464\n0x06\t0x2465\n0x07\t0x2466\n0x08\t0x2467\n0x09\t0x2468\n0x0A\t0x2469\n0x0B\t0x246A\n0x0C\t0x246B\n0x0D\t0x246C\n0x0E\t0x246D\n0x0F\t0x246E\n0x10\t0x246F\n0x11\t0x2470\n0x12\t0x2471\n0x13\t0x2472\n0x14\t0x2473\n0x15\t0x2160\n0x16\t0x2161\n0x17\t0x2162\n0x18\t0x2163\n0x19\t0x2164\n0x1A\t0x2165\n0x1B\t0x2166\n0x1C\t0x2167\n0x1D\t0x2168\n0x1E\t0x2169\n0x20\t0x3349\n0x21\t0x3314\n0x22\t0x3322\n0x23\t0x334D\n0x24\t0x3318\n0x25\t0x3327\n0x26\t0x3303\n0x27\t0x3336\n0x28\t0x3351\n0x29\t0x3357\n0x2A\t0x330D\n0x2B\t0x3326\n0x2C\t0x3323\n0x2D\t0x332B\n0x2E\t0x334A\n0x2F\t0x333B\n0x30\t0x339C\n0x31\t0x339D\n0x32\t0x339E\n0x33\t0x338E\n0x34\t0x338F\n0x35\t0x33C4\n0x36\t0x33A1\n0x3F\t0x337B\n0x40\t0x301E\n0x41\t0x301F\n0x42\t0x2116\n0x43\t0x33CD\n0x44\t0x2121\n0x45\t0x32A4\n0x46\t0x32A5\n0x47\t0x32A6\n0x48\t0x32A7\n0x49\t0x32A8\n0x4A\t0x3231\n0x4B\t0x3232\n0x4C\t0x3239\n0x4D\t0x337E\n0x4E\t0x337D\n0x4F\t0x337C\n0x53\t0x222E\n0x54\t0x2211\n0x58\t0x221F\n0x59\t0x22BF\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tools/CP50221-0212-EXT.TXT",
    "content": "# CP50221, section JIS X 0212, rows 0x73..0x74.\n0x01\t0x2170\n0x02\t0x2171\n0x03\t0x2172\n0x04\t0x2173\n0x05\t0x2174\n0x06\t0x2175\n0x07\t0x2176\n0x08\t0x2177\n0x09\t0x2178\n0x0A\t0x2179\n0x15\t0xFF07\n0x16\t0xFF02\n0x1A\t0x70BB\n0x1B\t0x4EFC\n0x1C\t0x50F4\n0x1D\t0x51EC\n0x1E\t0x5307\n0x1F\t0x5324\n0x20\t0xFA0E\n0x21\t0x548A\n0x22\t0x5759\n0x23\t0xFA0F\n0x24\t0xFA10\n0x25\t0x589E\n0x26\t0x5BEC\n0x27\t0x5CF5\n0x28\t0x5D53\n0x29\t0xFA11\n0x2A\t0x5FB7\n0x2B\t0x6085\n0x2C\t0x6120\n0x2D\t0x654E\n0x2F\t0x6665\n0x30\t0xFA12\n0x31\t0xF929\n0x32\t0x6801\n0x33\t0xFA13\n0x34\t0xFA14\n0x35\t0x6A6B\n0x36\t0x6AE2\n0x37\t0x6DF8\n0x38\t0x6DF2\n0x39\t0x7028\n0x3A\t0xFA15\n0x3B\t0xFA16\n0x3C\t0x7501\n0x3D\t0x7682\n0x3E\t0x769E\n0x3F\t0xFA17\n0x40\t0x7930\n0x41\t0xFA18\n0x42\t0xFA19\n0x43\t0xFA1A\n0x44\t0xFA1B\n0x45\t0x7AE7\n0x46\t0xFA1C\n0x47\t0xFA1D\n0x48\t0x7DA0\n0x49\t0x7DD6\n0x4A\t0xFA1E\n0x4B\t0x8362\n0x4C\t0xFA1F\n0x4D\t0x85B0\n0x4E\t0xFA20\n0x4F\t0xFA21\n0x50\t0x8807\n0x51\t0xFA22\n0x52\t0x8B7F\n0x53\t0x8CF4\n0x54\t0x8D76\n0x55\t0xFA23\n0x56\t0xFA24\n0x57\t0xFA25\n0x58\t0x90DE\n0x59\t0xFA26\n0x5A\t0x9115\n0x5B\t0xFA27\n0x5C\t0xFA28\n0x5D\t0x9592\n0x5E\t0xF9DC\n0x5F\t0xFA29\n0x60\t0x973B\n0x62\t0x9751\n0x63\t0xFA2A\n0x64\t0xFA2B\n0x65\t0xFA2C\n0x66\t0x999E\n0x67\t0x9AD9\n0x68\t0x9B72\n0x69\t0xFA2D\n0x6A\t0x9ED1\n0xA1\t0x974D\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tools/JISX0213.TXT",
    "content": "0x12121\t0x3000\n0x12122\t0x3001\n0x12123\t0x3002\n0x12124\t0xFF0C\n0x12125\t0xFF0E\n0x12126\t0x30FB\n0x12127\t0xFF1A\n0x12128\t0xFF1B\n0x12129\t0xFF1F\n0x1212A\t0xFF01\n0x1212B\t0x309B\n0x1212C\t0x309C\n0x1212D\t0x00B4\n0x1212E\t0xFF40\n0x1212F\t0x00A8\n0x12130\t0xFF3E\n0x12131\t0xFFE3\n0x12132\t0xFF3F\n0x12133\t0x30FD\n0x12134\t0x30FE\n0x12135\t0x309D\n0x12136\t0x309E\n0x12137\t0x3003\n0x12138\t0x4EDD\n0x12139\t0x3005\n0x1213A\t0x3006\n0x1213B\t0x3007\n0x1213C\t0x30FC\n0x1213D\t0x2014\n0x1213E\t0x2010\n0x1213F\t0xFF0F\n0x12140\t0xFF3C\n0x12141\t0x301C\n0x12142\t0x2016\n0x12143\t0xFF5C\n0x12144\t0x2026\n0x12145\t0x2025\n0x12146\t0x2018\n0x12147\t0x2019\n0x12148\t0x201C\n0x12149\t0x201D\n0x1214A\t0xFF08\n0x1214B\t0xFF09\n0x1214C\t0x3014\n0x1214D\t0x3015\n0x1214E\t0xFF3B\n0x1214F\t0xFF3D\n0x12150\t0xFF5B\n0x12151\t0xFF5D\n0x12152\t0x3008\n0x12153\t0x3009\n0x12154\t0x300A\n0x12155\t0x300B\n0x12156\t0x300C\n0x12157\t0x300D\n0x12158\t0x300E\n0x12159\t0x300F\n0x1215A\t0x3010\n0x1215B\t0x3011\n0x1215C\t0xFF0B\n0x1215D\t0x2212\n0x1215E\t0x00B1\n0x1215F\t0x00D7\n0x12160\t0x00F7\n0x12161\t0xFF1D\n0x12162\t0x2260\n0x12163\t0xFF1C\n0x12164\t0xFF1E\n0x12165\t0x2266\n0x12166\t0x2267\n0x12167\t0x221E\n0x12168\t0x2234\n0x12169\t0x2642\n0x1216A\t0x2640\n0x1216B\t0x00B0\n0x1216C\t0x2032\n0x1216D\t0x2033\n0x1216E\t0x2103\n0x1216F\t0xFFE5\n0x12170\t0xFF04\n0x12171\t0x00A2\n0x12172\t0x00A3\n0x12173\t0xFF05\n0x12174\t0xFF03\n0x12175\t0xFF06\n0x12176\t0xFF0A\n0x12177\t0xFF20\n0x12178\t0x00A7\n0x12179\t0x2606\n0x1217A\t0x2605\n0x1217B\t0x25CB\n0x1217C\t0x25CF\n0x1217D\t0x25CE\n0x1217E\t0x25C7\n0x12221\t0x25C6\n0x12222\t0x25A1\n0x12223\t0x25A0\n0x12224\t0x25B3\n0x12225\t0x25B2\n0x12226\t0x25BD\n0x12227\t0x25BC\n0x12228\t0x203B\n0x12229\t0x3012\n0x1222A\t0x2192\n0x1222B\t0x2190\n0x1222C\t0x2191\n0x1222D\t0x2193\n0x1222E\t0x3013\n0x1222F\t0xFF07\n0x12230\t0xFF02\n0x12231\t0xFF0D\n0x12232\t0xFF5E\n0x12233\t0x3033\n0x12234\t0x3034\n0x12235\t0x3035\n0x12236\t0x303B\n0x12237\t0x303C\n0x12238\t0x30FF\n0x12239\t0x309F\n0x1223A\t0x2208\n0x1223B\t0x220B\n0x1223C\t0x2286\n0x1223D\t0x2287\n0x1223E\t0x2282\n0x1223F\t0x2283\n0x12240\t0x222A\n0x12241\t0x2229\n0x12242\t0x2284\n0x12243\t0x2285\n0x12244\t0x228A\n0x12245\t0x228B\n0x12246\t0x2209\n0x12247\t0x2205\n0x12248\t0x2305\n0x12249\t0x2306\n0x1224A\t0x2227\n0x1224B\t0x2228\n0x1224C\t0x00AC\n0x1224D\t0x21D2\n0x1224E\t0x21D4\n0x1224F\t0x2200\n0x12250\t0x2203\n0x12251\t0x2295\n0x12252\t0x2296\n0x12253\t0x2297\n0x12254\t0x2225\n0x12255\t0x2226\n0x12256\t0xFF5F\n0x12257\t0xFF60\n0x12258\t0x3018\n0x12259\t0x3019\n0x1225A\t0x3016\n0x1225B\t0x3017\n0x1225C\t0x2220\n0x1225D\t0x22A5\n0x1225E\t0x2312\n0x1225F\t0x2202\n0x12260\t0x2207\n0x12261\t0x2261\n0x12262\t0x2252\n0x12263\t0x226A\n0x12264\t0x226B\n0x12265\t0x221A\n0x12266\t0x223D\n0x12267\t0x221D\n0x12268\t0x2235\n0x12269\t0x222B\n0x1226A\t0x222C\n0x1226B\t0x2262\n0x1226C\t0x2243\n0x1226D\t0x2245\n0x1226E\t0x2248\n0x1226F\t0x2276\n0x12270\t0x2277\n0x12271\t0x2194\n0x12272\t0x212B\n0x12273\t0x2030\n0x12274\t0x266F\n0x12275\t0x266D\n0x12276\t0x266A\n0x12277\t0x2020\n0x12278\t0x2021\n0x12279\t0x00B6\n0x1227A\t0x266E\n0x1227B\t0x266B\n0x1227C\t0x266C\n0x1227D\t0x2669\n0x1227E\t0x25EF\n0x12321\t0x25B7\n0x12322\t0x25B6\n0x12323\t0x25C1\n0x12324\t0x25C0\n0x12325\t0x2197\n0x12326\t0x2198\n0x12327\t0x2196\n0x12328\t0x2199\n0x12329\t0x21C4\n0x1232A\t0x21E8\n0x1232B\t0x21E6\n0x1232C\t0x21E7\n0x1232D\t0x21E9\n0x1232E\t0x2934\n0x1232F\t0x2935\n0x12330\t0xFF10\n0x12331\t0xFF11\n0x12332\t0xFF12\n0x12333\t0xFF13\n0x12334\t0xFF14\n0x12335\t0xFF15\n0x12336\t0xFF16\n0x12337\t0xFF17\n0x12338\t0xFF18\n0x12339\t0xFF19\n0x1233A\t0x29BF\n0x1233B\t0x25C9\n0x1233C\t0x303D\n0x1233D\t0xFE46\n0x1233E\t0xFE45\n0x1233F\t0x25E6\n0x12340\t0x2022\n0x12341\t0xFF21\n0x12342\t0xFF22\n0x12343\t0xFF23\n0x12344\t0xFF24\n0x12345\t0xFF25\n0x12346\t0xFF26\n0x12347\t0xFF27\n0x12348\t0xFF28\n0x12349\t0xFF29\n0x1234A\t0xFF2A\n0x1234B\t0xFF2B\n0x1234C\t0xFF2C\n0x1234D\t0xFF2D\n0x1234E\t0xFF2E\n0x1234F\t0xFF2F\n0x12350\t0xFF30\n0x12351\t0xFF31\n0x12352\t0xFF32\n0x12353\t0xFF33\n0x12354\t0xFF34\n0x12355\t0xFF35\n0x12356\t0xFF36\n0x12357\t0xFF37\n0x12358\t0xFF38\n0x12359\t0xFF39\n0x1235A\t0xFF3A\n0x1235B\t0x2213\n0x1235C\t0x2135\n0x1235D\t0x210F\n0x1235E\t0x33CB\n0x1235F\t0x2113\n0x12360\t0x2127\n0x12361\t0xFF41\n0x12362\t0xFF42\n0x12363\t0xFF43\n0x12364\t0xFF44\n0x12365\t0xFF45\n0x12366\t0xFF46\n0x12367\t0xFF47\n0x12368\t0xFF48\n0x12369\t0xFF49\n0x1236A\t0xFF4A\n0x1236B\t0xFF4B\n0x1236C\t0xFF4C\n0x1236D\t0xFF4D\n0x1236E\t0xFF4E\n0x1236F\t0xFF4F\n0x12370\t0xFF50\n0x12371\t0xFF51\n0x12372\t0xFF52\n0x12373\t0xFF53\n0x12374\t0xFF54\n0x12375\t0xFF55\n0x12376\t0xFF56\n0x12377\t0xFF57\n0x12378\t0xFF58\n0x12379\t0xFF59\n0x1237A\t0xFF5A\n0x1237B\t0x30A0\n0x1237C\t0x2013\n0x1237D\t0x29FA\n0x1237E\t0x29FB\n0x12421\t0x3041\n0x12422\t0x3042\n0x12423\t0x3043\n0x12424\t0x3044\n0x12425\t0x3045\n0x12426\t0x3046\n0x12427\t0x3047\n0x12428\t0x3048\n0x12429\t0x3049\n0x1242A\t0x304A\n0x1242B\t0x304B\n0x1242C\t0x304C\n0x1242D\t0x304D\n0x1242E\t0x304E\n0x1242F\t0x304F\n0x12430\t0x3050\n0x12431\t0x3051\n0x12432\t0x3052\n0x12433\t0x3053\n0x12434\t0x3054\n0x12435\t0x3055\n0x12436\t0x3056\n0x12437\t0x3057\n0x12438\t0x3058\n0x12439\t0x3059\n0x1243A\t0x305A\n0x1243B\t0x305B\n0x1243C\t0x305C\n0x1243D\t0x305D\n0x1243E\t0x305E\n0x1243F\t0x305F\n0x12440\t0x3060\n0x12441\t0x3061\n0x12442\t0x3062\n0x12443\t0x3063\n0x12444\t0x3064\n0x12445\t0x3065\n0x12446\t0x3066\n0x12447\t0x3067\n0x12448\t0x3068\n0x12449\t0x3069\n0x1244A\t0x306A\n0x1244B\t0x306B\n0x1244C\t0x306C\n0x1244D\t0x306D\n0x1244E\t0x306E\n0x1244F\t0x306F\n0x12450\t0x3070\n0x12451\t0x3071\n0x12452\t0x3072\n0x12453\t0x3073\n0x12454\t0x3074\n0x12455\t0x3075\n0x12456\t0x3076\n0x12457\t0x3077\n0x12458\t0x3078\n0x12459\t0x3079\n0x1245A\t0x307A\n0x1245B\t0x307B\n0x1245C\t0x307C\n0x1245D\t0x307D\n0x1245E\t0x307E\n0x1245F\t0x307F\n0x12460\t0x3080\n0x12461\t0x3081\n0x12462\t0x3082\n0x12463\t0x3083\n0x12464\t0x3084\n0x12465\t0x3085\n0x12466\t0x3086\n0x12467\t0x3087\n0x12468\t0x3088\n0x12469\t0x3089\n0x1246A\t0x308A\n0x1246B\t0x308B\n0x1246C\t0x308C\n0x1246D\t0x308D\n0x1246E\t0x308E\n0x1246F\t0x308F\n0x12470\t0x3090\n0x12471\t0x3091\n0x12472\t0x3092\n0x12473\t0x3093\n0x12474\t0x3094\n0x12475\t0x3095\n0x12476\t0x3096\n0x12477\t0x304B 0x309A\n0x12478\t0x304D 0x309A\n0x12479\t0x304F 0x309A\n0x1247A\t0x3051 0x309A\n0x1247B\t0x3053 0x309A\n0x12521\t0x30A1\n0x12522\t0x30A2\n0x12523\t0x30A3\n0x12524\t0x30A4\n0x12525\t0x30A5\n0x12526\t0x30A6\n0x12527\t0x30A7\n0x12528\t0x30A8\n0x12529\t0x30A9\n0x1252A\t0x30AA\n0x1252B\t0x30AB\n0x1252C\t0x30AC\n0x1252D\t0x30AD\n0x1252E\t0x30AE\n0x1252F\t0x30AF\n0x12530\t0x30B0\n0x12531\t0x30B1\n0x12532\t0x30B2\n0x12533\t0x30B3\n0x12534\t0x30B4\n0x12535\t0x30B5\n0x12536\t0x30B6\n0x12537\t0x30B7\n0x12538\t0x30B8\n0x12539\t0x30B9\n0x1253A\t0x30BA\n0x1253B\t0x30BB\n0x1253C\t0x30BC\n0x1253D\t0x30BD\n0x1253E\t0x30BE\n0x1253F\t0x30BF\n0x12540\t0x30C0\n0x12541\t0x30C1\n0x12542\t0x30C2\n0x12543\t0x30C3\n0x12544\t0x30C4\n0x12545\t0x30C5\n0x12546\t0x30C6\n0x12547\t0x30C7\n0x12548\t0x30C8\n0x12549\t0x30C9\n0x1254A\t0x30CA\n0x1254B\t0x30CB\n0x1254C\t0x30CC\n0x1254D\t0x30CD\n0x1254E\t0x30CE\n0x1254F\t0x30CF\n0x12550\t0x30D0\n0x12551\t0x30D1\n0x12552\t0x30D2\n0x12553\t0x30D3\n0x12554\t0x30D4\n0x12555\t0x30D5\n0x12556\t0x30D6\n0x12557\t0x30D7\n0x12558\t0x30D8\n0x12559\t0x30D9\n0x1255A\t0x30DA\n0x1255B\t0x30DB\n0x1255C\t0x30DC\n0x1255D\t0x30DD\n0x1255E\t0x30DE\n0x1255F\t0x30DF\n0x12560\t0x30E0\n0x12561\t0x30E1\n0x12562\t0x30E2\n0x12563\t0x30E3\n0x12564\t0x30E4\n0x12565\t0x30E5\n0x12566\t0x30E6\n0x12567\t0x30E7\n0x12568\t0x30E8\n0x12569\t0x30E9\n0x1256A\t0x30EA\n0x1256B\t0x30EB\n0x1256C\t0x30EC\n0x1256D\t0x30ED\n0x1256E\t0x30EE\n0x1256F\t0x30EF\n0x12570\t0x30F0\n0x12571\t0x30F1\n0x12572\t0x30F2\n0x12573\t0x30F3\n0x12574\t0x30F4\n0x12575\t0x30F5\n0x12576\t0x30F6\n0x12577\t0x30AB 0x309A\n0x12578\t0x30AD 0x309A\n0x12579\t0x30AF 0x309A\n0x1257A\t0x30B1 0x309A\n0x1257B\t0x30B3 0x309A\n0x1257C\t0x30BB 0x309A\n0x1257D\t0x30C4 0x309A\n0x1257E\t0x30C8 0x309A\n0x12621\t0x0391\n0x12622\t0x0392\n0x12623\t0x0393\n0x12624\t0x0394\n0x12625\t0x0395\n0x12626\t0x0396\n0x12627\t0x0397\n0x12628\t0x0398\n0x12629\t0x0399\n0x1262A\t0x039A\n0x1262B\t0x039B\n0x1262C\t0x039C\n0x1262D\t0x039D\n0x1262E\t0x039E\n0x1262F\t0x039F\n0x12630\t0x03A0\n0x12631\t0x03A1\n0x12632\t0x03A3\n0x12633\t0x03A4\n0x12634\t0x03A5\n0x12635\t0x03A6\n0x12636\t0x03A7\n0x12637\t0x03A8\n0x12638\t0x03A9\n0x12639\t0x2664\n0x1263A\t0x2660\n0x1263B\t0x2662\n0x1263C\t0x2666\n0x1263D\t0x2661\n0x1263E\t0x2665\n0x1263F\t0x2667\n0x12640\t0x2663\n0x12641\t0x03B1\n0x12642\t0x03B2\n0x12643\t0x03B3\n0x12644\t0x03B4\n0x12645\t0x03B5\n0x12646\t0x03B6\n0x12647\t0x03B7\n0x12648\t0x03B8\n0x12649\t0x03B9\n0x1264A\t0x03BA\n0x1264B\t0x03BB\n0x1264C\t0x03BC\n0x1264D\t0x03BD\n0x1264E\t0x03BE\n0x1264F\t0x03BF\n0x12650\t0x03C0\n0x12651\t0x03C1\n0x12652\t0x03C3\n0x12653\t0x03C4\n0x12654\t0x03C5\n0x12655\t0x03C6\n0x12656\t0x03C7\n0x12657\t0x03C8\n0x12658\t0x03C9\n0x12659\t0x03C2\n0x1265A\t0x24F5\n0x1265B\t0x24F6\n0x1265C\t0x24F7\n0x1265D\t0x24F8\n0x1265E\t0x24F9\n0x1265F\t0x24FA\n0x12660\t0x24FB\n0x12661\t0x24FC\n0x12662\t0x24FD\n0x12663\t0x24FE\n0x12664\t0x2616\n0x12665\t0x2617\n0x12666\t0x3020\n0x12667\t0x260E\n0x12668\t0x2600\n0x12669\t0x2601\n0x1266A\t0x2602\n0x1266B\t0x2603\n0x1266C\t0x2668\n0x1266D\t0x25B1\n0x1266E\t0x31F0\n0x1266F\t0x31F1\n0x12670\t0x31F2\n0x12671\t0x31F3\n0x12672\t0x31F4\n0x12673\t0x31F5\n0x12674\t0x31F6\n0x12675\t0x31F7\n0x12676\t0x31F8\n0x12677\t0x31F9\n0x12678\t0x31F7 0x309A\n0x12679\t0x31FA\n0x1267A\t0x31FB\n0x1267B\t0x31FC\n0x1267C\t0x31FD\n0x1267D\t0x31FE\n0x1267E\t0x31FF\n0x12721\t0x0410\n0x12722\t0x0411\n0x12723\t0x0412\n0x12724\t0x0413\n0x12725\t0x0414\n0x12726\t0x0415\n0x12727\t0x0401\n0x12728\t0x0416\n0x12729\t0x0417\n0x1272A\t0x0418\n0x1272B\t0x0419\n0x1272C\t0x041A\n0x1272D\t0x041B\n0x1272E\t0x041C\n0x1272F\t0x041D\n0x12730\t0x041E\n0x12731\t0x041F\n0x12732\t0x0420\n0x12733\t0x0421\n0x12734\t0x0422\n0x12735\t0x0423\n0x12736\t0x0424\n0x12737\t0x0425\n0x12738\t0x0426\n0x12739\t0x0427\n0x1273A\t0x0428\n0x1273B\t0x0429\n0x1273C\t0x042A\n0x1273D\t0x042B\n0x1273E\t0x042C\n0x1273F\t0x042D\n0x12740\t0x042E\n0x12741\t0x042F\n0x12742\t0x23BE\n0x12743\t0x23BF\n0x12744\t0x23C0\n0x12745\t0x23C1\n0x12746\t0x23C2\n0x12747\t0x23C3\n0x12748\t0x23C4\n0x12749\t0x23C5\n0x1274A\t0x23C6\n0x1274B\t0x23C7\n0x1274C\t0x23C8\n0x1274D\t0x23C9\n0x1274E\t0x23CA\n0x1274F\t0x23CB\n0x12750\t0x23CC\n0x12751\t0x0430\n0x12752\t0x0431\n0x12753\t0x0432\n0x12754\t0x0433\n0x12755\t0x0434\n0x12756\t0x0435\n0x12757\t0x0451\n0x12758\t0x0436\n0x12759\t0x0437\n0x1275A\t0x0438\n0x1275B\t0x0439\n0x1275C\t0x043A\n0x1275D\t0x043B\n0x1275E\t0x043C\n0x1275F\t0x043D\n0x12760\t0x043E\n0x12761\t0x043F\n0x12762\t0x0440\n0x12763\t0x0441\n0x12764\t0x0442\n0x12765\t0x0443\n0x12766\t0x0444\n0x12767\t0x0445\n0x12768\t0x0446\n0x12769\t0x0447\n0x1276A\t0x0448\n0x1276B\t0x0449\n0x1276C\t0x044A\n0x1276D\t0x044B\n0x1276E\t0x044C\n0x1276F\t0x044D\n0x12770\t0x044E\n0x12771\t0x044F\n0x12772\t0x30F7\n0x12773\t0x30F8\n0x12774\t0x30F9\n0x12775\t0x30FA\n0x12776\t0x22DA\n0x12777\t0x22DB\n0x12778\t0x2153\n0x12779\t0x2154\n0x1277A\t0x2155\n0x1277B\t0x2713\n0x1277C\t0x2318\n0x1277D\t0x2423\n0x1277E\t0x23CE\n0x12821\t0x2500\n0x12822\t0x2502\n0x12823\t0x250C\n0x12824\t0x2510\n0x12825\t0x2518\n0x12826\t0x2514\n0x12827\t0x251C\n0x12828\t0x252C\n0x12829\t0x2524\n0x1282A\t0x2534\n0x1282B\t0x253C\n0x1282C\t0x2501\n0x1282D\t0x2503\n0x1282E\t0x250F\n0x1282F\t0x2513\n0x12830\t0x251B\n0x12831\t0x2517\n0x12832\t0x2523\n0x12833\t0x2533\n0x12834\t0x252B\n0x12835\t0x253B\n0x12836\t0x254B\n0x12837\t0x2520\n0x12838\t0x252F\n0x12839\t0x2528\n0x1283A\t0x2537\n0x1283B\t0x253F\n0x1283C\t0x251D\n0x1283D\t0x2530\n0x1283E\t0x2525\n0x1283F\t0x2538\n0x12840\t0x2542\n0x12841\t0x3251\n0x12842\t0x3252\n0x12843\t0x3253\n0x12844\t0x3254\n0x12845\t0x3255\n0x12846\t0x3256\n0x12847\t0x3257\n0x12848\t0x3258\n0x12849\t0x3259\n0x1284A\t0x325A\n0x1284B\t0x325B\n0x1284C\t0x325C\n0x1284D\t0x325D\n0x1284E\t0x325E\n0x1284F\t0x325F\n0x12850\t0x32B1\n0x12851\t0x32B2\n0x12852\t0x32B3\n0x12853\t0x32B4\n0x12854\t0x32B5\n0x12855\t0x32B6\n0x12856\t0x32B7\n0x12857\t0x32B8\n0x12858\t0x32B9\n0x12859\t0x32BA\n0x1285A\t0x32BB\n0x1285B\t0x32BC\n0x1285C\t0x32BD\n0x1285D\t0x32BE\n0x1285E\t0x32BF\n0x12867\t0x25D0\n0x12868\t0x25D1\n0x12869\t0x25D2\n0x1286A\t0x25D3\n0x1286B\t0x203C\n0x1286C\t0x2047\n0x1286D\t0x2048\n0x1286E\t0x2049\n0x1286F\t0x01CD\n0x12870\t0x01CE\n0x12871\t0x01D0\n0x12872\t0x1E3E\n0x12873\t0x1E3F\n0x12874\t0x01F8\n0x12875\t0x01F9\n0x12876\t0x01D1\n0x12877\t0x01D2\n0x12878\t0x01D4\n0x12879\t0x01D6\n0x1287A\t0x01D8\n0x1287B\t0x01DA\n0x1287C\t0x01DC\n0x12921\t0x20AC\n0x12922\t0x00A0\n0x12923\t0x00A1\n0x12924\t0x00A4\n0x12925\t0x00A6\n0x12926\t0x00A9\n0x12927\t0x00AA\n0x12928\t0x00AB\n0x12929\t0x00AD\n0x1292A\t0x00AE\n0x1292B\t0x00AF\n0x1292C\t0x00B2\n0x1292D\t0x00B3\n0x1292E\t0x00B7\n0x1292F\t0x00B8\n0x12930\t0x00B9\n0x12931\t0x00BA\n0x12932\t0x00BB\n0x12933\t0x00BC\n0x12934\t0x00BD\n0x12935\t0x00BE\n0x12936\t0x00BF\n0x12937\t0x00C0\n0x12938\t0x00C1\n0x12939\t0x00C2\n0x1293A\t0x00C3\n0x1293B\t0x00C4\n0x1293C\t0x00C5\n0x1293D\t0x00C6\n0x1293E\t0x00C7\n0x1293F\t0x00C8\n0x12940\t0x00C9\n0x12941\t0x00CA\n0x12942\t0x00CB\n0x12943\t0x00CC\n0x12944\t0x00CD\n0x12945\t0x00CE\n0x12946\t0x00CF\n0x12947\t0x00D0\n0x12948\t0x00D1\n0x12949\t0x00D2\n0x1294A\t0x00D3\n0x1294B\t0x00D4\n0x1294C\t0x00D5\n0x1294D\t0x00D6\n0x1294E\t0x00D8\n0x1294F\t0x00D9\n0x12950\t0x00DA\n0x12951\t0x00DB\n0x12952\t0x00DC\n0x12953\t0x00DD\n0x12954\t0x00DE\n0x12955\t0x00DF\n0x12956\t0x00E0\n0x12957\t0x00E1\n0x12958\t0x00E2\n0x12959\t0x00E3\n0x1295A\t0x00E4\n0x1295B\t0x00E5\n0x1295C\t0x00E6\n0x1295D\t0x00E7\n0x1295E\t0x00E8\n0x1295F\t0x00E9\n0x12960\t0x00EA\n0x12961\t0x00EB\n0x12962\t0x00EC\n0x12963\t0x00ED\n0x12964\t0x00EE\n0x12965\t0x00EF\n0x12966\t0x00F0\n0x12967\t0x00F1\n0x12968\t0x00F2\n0x12969\t0x00F3\n0x1296A\t0x00F4\n0x1296B\t0x00F5\n0x1296C\t0x00F6\n0x1296D\t0x00F8\n0x1296E\t0x00F9\n0x1296F\t0x00FA\n0x12970\t0x00FB\n0x12971\t0x00FC\n0x12972\t0x00FD\n0x12973\t0x00FE\n0x12974\t0x00FF\n0x12975\t0x0100\n0x12976\t0x012A\n0x12977\t0x016A\n0x12978\t0x0112\n0x12979\t0x014C\n0x1297A\t0x0101\n0x1297B\t0x012B\n0x1297C\t0x016B\n0x1297D\t0x0113\n0x1297E\t0x014D\n0x12A21\t0x0104\n0x12A22\t0x02D8\n0x12A23\t0x0141\n0x12A24\t0x013D\n0x12A25\t0x015A\n0x12A26\t0x0160\n0x12A27\t0x015E\n0x12A28\t0x0164\n0x12A29\t0x0179\n0x12A2A\t0x017D\n0x12A2B\t0x017B\n0x12A2C\t0x0105\n0x12A2D\t0x02DB\n0x12A2E\t0x0142\n0x12A2F\t0x013E\n0x12A30\t0x015B\n0x12A31\t0x02C7\n0x12A32\t0x0161\n0x12A33\t0x015F\n0x12A34\t0x0165\n0x12A35\t0x017A\n0x12A36\t0x02DD\n0x12A37\t0x017E\n0x12A38\t0x017C\n0x12A39\t0x0154\n0x12A3A\t0x0102\n0x12A3B\t0x0139\n0x12A3C\t0x0106\n0x12A3D\t0x010C\n0x12A3E\t0x0118\n0x12A3F\t0x011A\n0x12A40\t0x010E\n0x12A41\t0x0143\n0x12A42\t0x0147\n0x12A43\t0x0150\n0x12A44\t0x0158\n0x12A45\t0x016E\n0x12A46\t0x0170\n0x12A47\t0x0162\n0x12A48\t0x0155\n0x12A49\t0x0103\n0x12A4A\t0x013A\n0x12A4B\t0x0107\n0x12A4C\t0x010D\n0x12A4D\t0x0119\n0x12A4E\t0x011B\n0x12A4F\t0x010F\n0x12A50\t0x0111\n0x12A51\t0x0144\n0x12A52\t0x0148\n0x12A53\t0x0151\n0x12A54\t0x0159\n0x12A55\t0x016F\n0x12A56\t0x0171\n0x12A57\t0x0163\n0x12A58\t0x02D9\n0x12A59\t0x0108\n0x12A5A\t0x011C\n0x12A5B\t0x0124\n0x12A5C\t0x0134\n0x12A5D\t0x015C\n0x12A5E\t0x016C\n0x12A5F\t0x0109\n0x12A60\t0x011D\n0x12A61\t0x0125\n0x12A62\t0x0135\n0x12A63\t0x015D\n0x12A64\t0x016D\n0x12A65\t0x0271\n0x12A66\t0x028B\n0x12A67\t0x027E\n0x12A68\t0x0283\n0x12A69\t0x0292\n0x12A6A\t0x026C\n0x12A6B\t0x026E\n0x12A6C\t0x0279\n0x12A6D\t0x0288\n0x12A6E\t0x0256\n0x12A6F\t0x0273\n0x12A70\t0x027D\n0x12A71\t0x0282\n0x12A72\t0x0290\n0x12A73\t0x027B\n0x12A74\t0x026D\n0x12A75\t0x025F\n0x12A76\t0x0272\n0x12A77\t0x029D\n0x12A78\t0x028E\n0x12A79\t0x0261\n0x12A7A\t0x014B\n0x12A7B\t0x0270\n0x12A7C\t0x0281\n0x12A7D\t0x0127\n0x12A7E\t0x0295\n0x12B21\t0x0294\n0x12B22\t0x0266\n0x12B23\t0x0298\n0x12B24\t0x01C2\n0x12B25\t0x0253\n0x12B26\t0x0257\n0x12B27\t0x0284\n0x12B28\t0x0260\n0x12B29\t0x0193\n0x12B2A\t0x0153\n0x12B2B\t0x0152\n0x12B2C\t0x0268\n0x12B2D\t0x0289\n0x12B2E\t0x0258\n0x12B2F\t0x0275\n0x12B30\t0x0259\n0x12B31\t0x025C\n0x12B32\t0x025E\n0x12B33\t0x0250\n0x12B34\t0x026F\n0x12B35\t0x028A\n0x12B36\t0x0264\n0x12B37\t0x028C\n0x12B38\t0x0254\n0x12B39\t0x0251\n0x12B3A\t0x0252\n0x12B3B\t0x028D\n0x12B3C\t0x0265\n0x12B3D\t0x02A2\n0x12B3E\t0x02A1\n0x12B3F\t0x0255\n0x12B40\t0x0291\n0x12B41\t0x027A\n0x12B42\t0x0267\n0x12B43\t0x025A\n0x12B44\t0x00E6 0x0300\n0x12B45\t0x01FD\n0x12B46\t0x1F70\n0x12B47\t0x1F71\n0x12B48\t0x0254 0x0300\n0x12B49\t0x0254 0x0301\n0x12B4A\t0x028C 0x0300\n0x12B4B\t0x028C 0x0301\n0x12B4C\t0x0259 0x0300\n0x12B4D\t0x0259 0x0301\n0x12B4E\t0x025A 0x0300\n0x12B4F\t0x025A 0x0301\n0x12B50\t0x1F72\n0x12B51\t0x1F73\n0x12B52\t0x0361\n0x12B53\t0x02C8\n0x12B54\t0x02CC\n0x12B55\t0x02D0\n0x12B56\t0x02D1\n0x12B57\t0x0306\n0x12B58\t0x203F\n0x12B59\t0x030B\n0x12B5A\t0x0301\n0x12B5B\t0x0304\n0x12B5C\t0x0300\n0x12B5D\t0x030F\n0x12B5E\t0x030C\n0x12B5F\t0x0302\n0x12B60\t0x02E5\n0x12B61\t0x02E6\n0x12B62\t0x02E7\n0x12B63\t0x02E8\n0x12B64\t0x02E9\n0x12B65\t0x02E9 0x02E5\n0x12B66\t0x02E5 0x02E9\n0x12B67\t0x0325\n0x12B68\t0x032C\n0x12B69\t0x0339\n0x12B6A\t0x031C\n0x12B6B\t0x031F\n0x12B6C\t0x0320\n0x12B6D\t0x0308\n0x12B6E\t0x033D\n0x12B6F\t0x0329\n0x12B70\t0x032F\n0x12B71\t0x02DE\n0x12B72\t0x0324\n0x12B73\t0x0330\n0x12B74\t0x033C\n0x12B75\t0x0334\n0x12B76\t0x031D\n0x12B77\t0x031E\n0x12B78\t0x0318\n0x12B79\t0x0319\n0x12B7A\t0x032A\n0x12B7B\t0x033A\n0x12B7C\t0x033B\n0x12B7D\t0x0303\n0x12B7E\t0x031A\n0x12C21\t0x2776\n0x12C22\t0x2777\n0x12C23\t0x2778\n0x12C24\t0x2779\n0x12C25\t0x277A\n0x12C26\t0x277B\n0x12C27\t0x277C\n0x12C28\t0x277D\n0x12C29\t0x277E\n0x12C2A\t0x277F\n0x12C2B\t0x24EB\n0x12C2C\t0x24EC\n0x12C2D\t0x24ED\n0x12C2E\t0x24EE\n0x12C2F\t0x24EF\n0x12C30\t0x24F0\n0x12C31\t0x24F1\n0x12C32\t0x24F2\n0x12C33\t0x24F3\n0x12C34\t0x24F4\n0x12C35\t0x2170\n0x12C36\t0x2171\n0x12C37\t0x2172\n0x12C38\t0x2173\n0x12C39\t0x2174\n0x12C3A\t0x2175\n0x12C3B\t0x2176\n0x12C3C\t0x2177\n0x12C3D\t0x2178\n0x12C3E\t0x2179\n0x12C3F\t0x217A\n0x12C40\t0x217B\n0x12C41\t0x24D0\n0x12C42\t0x24D1\n0x12C43\t0x24D2\n0x12C44\t0x24D3\n0x12C45\t0x24D4\n0x12C46\t0x24D5\n0x12C47\t0x24D6\n0x12C48\t0x24D7\n0x12C49\t0x24D8\n0x12C4A\t0x24D9\n0x12C4B\t0x24DA\n0x12C4C\t0x24DB\n0x12C4D\t0x24DC\n0x12C4E\t0x24DD\n0x12C4F\t0x24DE\n0x12C50\t0x24DF\n0x12C51\t0x24E0\n0x12C52\t0x24E1\n0x12C53\t0x24E2\n0x12C54\t0x24E3\n0x12C55\t0x24E4\n0x12C56\t0x24E5\n0x12C57\t0x24E6\n0x12C58\t0x24E7\n0x12C59\t0x24E8\n0x12C5A\t0x24E9\n0x12C5B\t0x32D0\n0x12C5C\t0x32D1\n0x12C5D\t0x32D2\n0x12C5E\t0x32D3\n0x12C5F\t0x32D4\n0x12C60\t0x32D5\n0x12C61\t0x32D6\n0x12C62\t0x32D7\n0x12C63\t0x32D8\n0x12C64\t0x32D9\n0x12C65\t0x32DA\n0x12C66\t0x32DB\n0x12C67\t0x32DC\n0x12C68\t0x32DD\n0x12C69\t0x32DE\n0x12C6A\t0x32DF\n0x12C6B\t0x32E0\n0x12C6C\t0x32E1\n0x12C6D\t0x32E2\n0x12C6E\t0x32E3\n0x12C6F\t0x32FA\n0x12C70\t0x32E9\n0x12C71\t0x32E5\n0x12C72\t0x32ED\n0x12C73\t0x32EC\n0x12C7D\t0x2051\n0x12C7E\t0x2042\n0x12D21\t0x2460\n0x12D22\t0x2461\n0x12D23\t0x2462\n0x12D24\t0x2463\n0x12D25\t0x2464\n0x12D26\t0x2465\n0x12D27\t0x2466\n0x12D28\t0x2467\n0x12D29\t0x2468\n0x12D2A\t0x2469\n0x12D2B\t0x246A\n0x12D2C\t0x246B\n0x12D2D\t0x246C\n0x12D2E\t0x246D\n0x12D2F\t0x246E\n0x12D30\t0x246F\n0x12D31\t0x2470\n0x12D32\t0x2471\n0x12D33\t0x2472\n0x12D34\t0x2473\n0x12D35\t0x2160\n0x12D36\t0x2161\n0x12D37\t0x2162\n0x12D38\t0x2163\n0x12D39\t0x2164\n0x12D3A\t0x2165\n0x12D3B\t0x2166\n0x12D3C\t0x2167\n0x12D3D\t0x2168\n0x12D3E\t0x2169\n0x12D3F\t0x216A\n0x12D40\t0x3349\n0x12D41\t0x3314\n0x12D42\t0x3322\n0x12D43\t0x334D\n0x12D44\t0x3318\n0x12D45\t0x3327\n0x12D46\t0x3303\n0x12D47\t0x3336\n0x12D48\t0x3351\n0x12D49\t0x3357\n0x12D4A\t0x330D\n0x12D4B\t0x3326\n0x12D4C\t0x3323\n0x12D4D\t0x332B\n0x12D4E\t0x334A\n0x12D4F\t0x333B\n0x12D50\t0x339C\n0x12D51\t0x339D\n0x12D52\t0x339E\n0x12D53\t0x338E\n0x12D54\t0x338F\n0x12D55\t0x33C4\n0x12D56\t0x33A1\n0x12D57\t0x216B\n0x12D5F\t0x337B\n0x12D60\t0x301D\n0x12D61\t0x301F\n0x12D62\t0x2116\n0x12D63\t0x33CD\n0x12D64\t0x2121\n0x12D65\t0x32A4\n0x12D66\t0x32A5\n0x12D67\t0x32A6\n0x12D68\t0x32A7\n0x12D69\t0x32A8\n0x12D6A\t0x3231\n0x12D6B\t0x3232\n0x12D6C\t0x3239\n0x12D6D\t0x337E\n0x12D6E\t0x337D\n0x12D6F\t0x337C\n0x12D73\t0x222E\n0x12D78\t0x221F\n0x12D79\t0x22BF\n0x12D7D\t0x2756\n0x12D7E\t0x261E\n0x12E21\t0x4FF1\n0x12E22\t0x2000B\n0x12E23\t0x3402\n0x12E24\t0x4E28\n0x12E25\t0x4E2F\n0x12E26\t0x4E30\n0x12E27\t0x4E8D\n0x12E28\t0x4EE1\n0x12E29\t0x4EFD\n0x12E2A\t0x4EFF\n0x12E2B\t0x4F03\n0x12E2C\t0x4F0B\n0x12E2D\t0x4F60\n0x12E2E\t0x4F48\n0x12E2F\t0x4F49\n0x12E30\t0x4F56\n0x12E31\t0x4F5F\n0x12E32\t0x4F6A\n0x12E33\t0x4F6C\n0x12E34\t0x4F7E\n0x12E35\t0x4F8A\n0x12E36\t0x4F94\n0x12E37\t0x4F97\n0x12E38\t0xFA30\n0x12E39\t0x4FC9\n0x12E3A\t0x4FE0\n0x12E3B\t0x5001\n0x12E3C\t0x5002\n0x12E3D\t0x500E\n0x12E3E\t0x5018\n0x12E3F\t0x5027\n0x12E40\t0x502E\n0x12E41\t0x5040\n0x12E42\t0x503B\n0x12E43\t0x5041\n0x12E44\t0x5094\n0x12E45\t0x50CC\n0x12E46\t0x50F2\n0x12E47\t0x50D0\n0x12E48\t0x50E6\n0x12E49\t0xFA31\n0x12E4A\t0x5106\n0x12E4B\t0x5103\n0x12E4C\t0x510B\n0x12E4D\t0x511E\n0x12E4E\t0x5135\n0x12E4F\t0x514A\n0x12E50\t0xFA32\n0x12E51\t0x5155\n0x12E52\t0x5157\n0x12E53\t0x34B5\n0x12E54\t0x519D\n0x12E55\t0x51C3\n0x12E56\t0x51CA\n0x12E57\t0x51DE\n0x12E58\t0x51E2\n0x12E59\t0x51EE\n0x12E5A\t0x5201\n0x12E5B\t0x34DB\n0x12E5C\t0x5213\n0x12E5D\t0x5215\n0x12E5E\t0x5249\n0x12E5F\t0x5257\n0x12E60\t0x5261\n0x12E61\t0x5293\n0x12E62\t0x52C8\n0x12E63\t0xFA33\n0x12E64\t0x52CC\n0x12E65\t0x52D0\n0x12E66\t0x52D6\n0x12E67\t0x52DB\n0x12E68\t0xFA34\n0x12E69\t0x52F0\n0x12E6A\t0x52FB\n0x12E6B\t0x5300\n0x12E6C\t0x5307\n0x12E6D\t0x531C\n0x12E6E\t0xFA35\n0x12E6F\t0x5361\n0x12E70\t0x5363\n0x12E71\t0x537D\n0x12E72\t0x5393\n0x12E73\t0x539D\n0x12E74\t0x53B2\n0x12E75\t0x5412\n0x12E76\t0x5427\n0x12E77\t0x544D\n0x12E78\t0x549C\n0x12E79\t0x546B\n0x12E7A\t0x5474\n0x12E7B\t0x547F\n0x12E7C\t0x5488\n0x12E7D\t0x5496\n0x12E7E\t0x54A1\n0x12F21\t0x54A9\n0x12F22\t0x54C6\n0x12F23\t0x54FF\n0x12F24\t0x550E\n0x12F25\t0x552B\n0x12F26\t0x5535\n0x12F27\t0x5550\n0x12F28\t0x555E\n0x12F29\t0x5581\n0x12F2A\t0x5586\n0x12F2B\t0x558E\n0x12F2C\t0xFA36\n0x12F2D\t0x55AD\n0x12F2E\t0x55CE\n0x12F2F\t0xFA37\n0x12F30\t0x5608\n0x12F31\t0x560E\n0x12F32\t0x563B\n0x12F33\t0x5649\n0x12F34\t0x5676\n0x12F35\t0x5666\n0x12F36\t0xFA38\n0x12F37\t0x566F\n0x12F38\t0x5671\n0x12F39\t0x5672\n0x12F3A\t0x5699\n0x12F3B\t0x569E\n0x12F3C\t0x56A9\n0x12F3D\t0x56AC\n0x12F3E\t0x56B3\n0x12F3F\t0x56C9\n0x12F40\t0x56CA\n0x12F41\t0x570A\n0x12F42\t0x2123D\n0x12F43\t0x5721\n0x12F44\t0x572F\n0x12F45\t0x5733\n0x12F46\t0x5734\n0x12F47\t0x5770\n0x12F48\t0x5777\n0x12F49\t0x577C\n0x12F4A\t0x579C\n0x12F4B\t0xFA0F\n0x12F4C\t0x2131B\n0x12F4D\t0x57B8\n0x12F4E\t0x57C7\n0x12F4F\t0x57C8\n0x12F50\t0x57CF\n0x12F51\t0x57E4\n0x12F52\t0x57ED\n0x12F53\t0x57F5\n0x12F54\t0x57F6\n0x12F55\t0x57FF\n0x12F56\t0x5809\n0x12F57\t0xFA10\n0x12F58\t0x5861\n0x12F59\t0x5864\n0x12F5A\t0xFA39\n0x12F5B\t0x587C\n0x12F5C\t0x5889\n0x12F5D\t0x589E\n0x12F5E\t0xFA3A\n0x12F5F\t0x58A9\n0x12F60\t0x2146E\n0x12F61\t0x58D2\n0x12F62\t0x58CE\n0x12F63\t0x58D4\n0x12F64\t0x58DA\n0x12F65\t0x58E0\n0x12F66\t0x58E9\n0x12F67\t0x590C\n0x12F68\t0x8641\n0x12F69\t0x595D\n0x12F6A\t0x596D\n0x12F6B\t0x598B\n0x12F6C\t0x5992\n0x12F6D\t0x59A4\n0x12F6E\t0x59C3\n0x12F6F\t0x59D2\n0x12F70\t0x59DD\n0x12F71\t0x5A13\n0x12F72\t0x5A23\n0x12F73\t0x5A67\n0x12F74\t0x5A6D\n0x12F75\t0x5A77\n0x12F76\t0x5A7E\n0x12F77\t0x5A84\n0x12F78\t0x5A9E\n0x12F79\t0x5AA7\n0x12F7A\t0x5AC4\n0x12F7B\t0x218BD\n0x12F7C\t0x5B19\n0x12F7D\t0x5B25\n0x12F7E\t0x525D\n0x13021\t0x4E9C\n0x13022\t0x5516\n0x13023\t0x5A03\n0x13024\t0x963F\n0x13025\t0x54C0\n0x13026\t0x611B\n0x13027\t0x6328\n0x13028\t0x59F6\n0x13029\t0x9022\n0x1302A\t0x8475\n0x1302B\t0x831C\n0x1302C\t0x7A50\n0x1302D\t0x60AA\n0x1302E\t0x63E1\n0x1302F\t0x6E25\n0x13030\t0x65ED\n0x13031\t0x8466\n0x13032\t0x82A6\n0x13033\t0x9BF5\n0x13034\t0x6893\n0x13035\t0x5727\n0x13036\t0x65A1\n0x13037\t0x6271\n0x13038\t0x5B9B\n0x13039\t0x59D0\n0x1303A\t0x867B\n0x1303B\t0x98F4\n0x1303C\t0x7D62\n0x1303D\t0x7DBE\n0x1303E\t0x9B8E\n0x1303F\t0x6216\n0x13040\t0x7C9F\n0x13041\t0x88B7\n0x13042\t0x5B89\n0x13043\t0x5EB5\n0x13044\t0x6309\n0x13045\t0x6697\n0x13046\t0x6848\n0x13047\t0x95C7\n0x13048\t0x978D\n0x13049\t0x674F\n0x1304A\t0x4EE5\n0x1304B\t0x4F0A\n0x1304C\t0x4F4D\n0x1304D\t0x4F9D\n0x1304E\t0x5049\n0x1304F\t0x56F2\n0x13050\t0x5937\n0x13051\t0x59D4\n0x13052\t0x5A01\n0x13053\t0x5C09\n0x13054\t0x60DF\n0x13055\t0x610F\n0x13056\t0x6170\n0x13057\t0x6613\n0x13058\t0x6905\n0x13059\t0x70BA\n0x1305A\t0x754F\n0x1305B\t0x7570\n0x1305C\t0x79FB\n0x1305D\t0x7DAD\n0x1305E\t0x7DEF\n0x1305F\t0x80C3\n0x13060\t0x840E\n0x13061\t0x8863\n0x13062\t0x8B02\n0x13063\t0x9055\n0x13064\t0x907A\n0x13065\t0x533B\n0x13066\t0x4E95\n0x13067\t0x4EA5\n0x13068\t0x57DF\n0x13069\t0x80B2\n0x1306A\t0x90C1\n0x1306B\t0x78EF\n0x1306C\t0x4E00\n0x1306D\t0x58F1\n0x1306E\t0x6EA2\n0x1306F\t0x9038\n0x13070\t0x7A32\n0x13071\t0x8328\n0x13072\t0x828B\n0x13073\t0x9C2F\n0x13074\t0x5141\n0x13075\t0x5370\n0x13076\t0x54BD\n0x13077\t0x54E1\n0x13078\t0x56E0\n0x13079\t0x59FB\n0x1307A\t0x5F15\n0x1307B\t0x98F2\n0x1307C\t0x6DEB\n0x1307D\t0x80E4\n0x1307E\t0x852D\n0x13121\t0x9662\n0x13122\t0x9670\n0x13123\t0x96A0\n0x13124\t0x97FB\n0x13125\t0x540B\n0x13126\t0x53F3\n0x13127\t0x5B87\n0x13128\t0x70CF\n0x13129\t0x7FBD\n0x1312A\t0x8FC2\n0x1312B\t0x96E8\n0x1312C\t0x536F\n0x1312D\t0x9D5C\n0x1312E\t0x7ABA\n0x1312F\t0x4E11\n0x13130\t0x7893\n0x13131\t0x81FC\n0x13132\t0x6E26\n0x13133\t0x5618\n0x13134\t0x5504\n0x13135\t0x6B1D\n0x13136\t0x851A\n0x13137\t0x9C3B\n0x13138\t0x59E5\n0x13139\t0x53A9\n0x1313A\t0x6D66\n0x1313B\t0x74DC\n0x1313C\t0x958F\n0x1313D\t0x5642\n0x1313E\t0x4E91\n0x1313F\t0x904B\n0x13140\t0x96F2\n0x13141\t0x834F\n0x13142\t0x990C\n0x13143\t0x53E1\n0x13144\t0x55B6\n0x13145\t0x5B30\n0x13146\t0x5F71\n0x13147\t0x6620\n0x13148\t0x66F3\n0x13149\t0x6804\n0x1314A\t0x6C38\n0x1314B\t0x6CF3\n0x1314C\t0x6D29\n0x1314D\t0x745B\n0x1314E\t0x76C8\n0x1314F\t0x7A4E\n0x13150\t0x9834\n0x13151\t0x82F1\n0x13152\t0x885B\n0x13153\t0x8A60\n0x13154\t0x92ED\n0x13155\t0x6DB2\n0x13156\t0x75AB\n0x13157\t0x76CA\n0x13158\t0x99C5\n0x13159\t0x60A6\n0x1315A\t0x8B01\n0x1315B\t0x8D8A\n0x1315C\t0x95B2\n0x1315D\t0x698E\n0x1315E\t0x53AD\n0x1315F\t0x5186\n0x13160\t0x5712\n0x13161\t0x5830\n0x13162\t0x5944\n0x13163\t0x5BB4\n0x13164\t0x5EF6\n0x13165\t0x6028\n0x13166\t0x63A9\n0x13167\t0x63F4\n0x13168\t0x6CBF\n0x13169\t0x6F14\n0x1316A\t0x708E\n0x1316B\t0x7114\n0x1316C\t0x7159\n0x1316D\t0x71D5\n0x1316E\t0x733F\n0x1316F\t0x7E01\n0x13170\t0x8276\n0x13171\t0x82D1\n0x13172\t0x8597\n0x13173\t0x9060\n0x13174\t0x925B\n0x13175\t0x9D1B\n0x13176\t0x5869\n0x13177\t0x65BC\n0x13178\t0x6C5A\n0x13179\t0x7525\n0x1317A\t0x51F9\n0x1317B\t0x592E\n0x1317C\t0x5965\n0x1317D\t0x5F80\n0x1317E\t0x5FDC\n0x13221\t0x62BC\n0x13222\t0x65FA\n0x13223\t0x6A2A\n0x13224\t0x6B27\n0x13225\t0x6BB4\n0x13226\t0x738B\n0x13227\t0x7FC1\n0x13228\t0x8956\n0x13229\t0x9D2C\n0x1322A\t0x9D0E\n0x1322B\t0x9EC4\n0x1322C\t0x5CA1\n0x1322D\t0x6C96\n0x1322E\t0x837B\n0x1322F\t0x5104\n0x13230\t0x5C4B\n0x13231\t0x61B6\n0x13232\t0x81C6\n0x13233\t0x6876\n0x13234\t0x7261\n0x13235\t0x4E59\n0x13236\t0x4FFA\n0x13237\t0x5378\n0x13238\t0x6069\n0x13239\t0x6E29\n0x1323A\t0x7A4F\n0x1323B\t0x97F3\n0x1323C\t0x4E0B\n0x1323D\t0x5316\n0x1323E\t0x4EEE\n0x1323F\t0x4F55\n0x13240\t0x4F3D\n0x13241\t0x4FA1\n0x13242\t0x4F73\n0x13243\t0x52A0\n0x13244\t0x53EF\n0x13245\t0x5609\n0x13246\t0x590F\n0x13247\t0x5AC1\n0x13248\t0x5BB6\n0x13249\t0x5BE1\n0x1324A\t0x79D1\n0x1324B\t0x6687\n0x1324C\t0x679C\n0x1324D\t0x67B6\n0x1324E\t0x6B4C\n0x1324F\t0x6CB3\n0x13250\t0x706B\n0x13251\t0x73C2\n0x13252\t0x798D\n0x13253\t0x79BE\n0x13254\t0x7A3C\n0x13255\t0x7B87\n0x13256\t0x82B1\n0x13257\t0x82DB\n0x13258\t0x8304\n0x13259\t0x8377\n0x1325A\t0x83EF\n0x1325B\t0x83D3\n0x1325C\t0x8766\n0x1325D\t0x8AB2\n0x1325E\t0x5629\n0x1325F\t0x8CA8\n0x13260\t0x8FE6\n0x13261\t0x904E\n0x13262\t0x971E\n0x13263\t0x868A\n0x13264\t0x4FC4\n0x13265\t0x5CE8\n0x13266\t0x6211\n0x13267\t0x7259\n0x13268\t0x753B\n0x13269\t0x81E5\n0x1326A\t0x82BD\n0x1326B\t0x86FE\n0x1326C\t0x8CC0\n0x1326D\t0x96C5\n0x1326E\t0x9913\n0x1326F\t0x99D5\n0x13270\t0x4ECB\n0x13271\t0x4F1A\n0x13272\t0x89E3\n0x13273\t0x56DE\n0x13274\t0x584A\n0x13275\t0x58CA\n0x13276\t0x5EFB\n0x13277\t0x5FEB\n0x13278\t0x602A\n0x13279\t0x6094\n0x1327A\t0x6062\n0x1327B\t0x61D0\n0x1327C\t0x6212\n0x1327D\t0x62D0\n0x1327E\t0x6539\n0x13321\t0x9B41\n0x13322\t0x6666\n0x13323\t0x68B0\n0x13324\t0x6D77\n0x13325\t0x7070\n0x13326\t0x754C\n0x13327\t0x7686\n0x13328\t0x7D75\n0x13329\t0x82A5\n0x1332A\t0x87F9\n0x1332B\t0x958B\n0x1332C\t0x968E\n0x1332D\t0x8C9D\n0x1332E\t0x51F1\n0x1332F\t0x52BE\n0x13330\t0x5916\n0x13331\t0x54B3\n0x13332\t0x5BB3\n0x13333\t0x5D16\n0x13334\t0x6168\n0x13335\t0x6982\n0x13336\t0x6DAF\n0x13337\t0x788D\n0x13338\t0x84CB\n0x13339\t0x8857\n0x1333A\t0x8A72\n0x1333B\t0x93A7\n0x1333C\t0x9AB8\n0x1333D\t0x6D6C\n0x1333E\t0x99A8\n0x1333F\t0x86D9\n0x13340\t0x57A3\n0x13341\t0x67FF\n0x13342\t0x86CE\n0x13343\t0x920E\n0x13344\t0x5283\n0x13345\t0x5687\n0x13346\t0x5404\n0x13347\t0x5ED3\n0x13348\t0x62E1\n0x13349\t0x64B9\n0x1334A\t0x683C\n0x1334B\t0x6838\n0x1334C\t0x6BBB\n0x1334D\t0x7372\n0x1334E\t0x78BA\n0x1334F\t0x7A6B\n0x13350\t0x899A\n0x13351\t0x89D2\n0x13352\t0x8D6B\n0x13353\t0x8F03\n0x13354\t0x90ED\n0x13355\t0x95A3\n0x13356\t0x9694\n0x13357\t0x9769\n0x13358\t0x5B66\n0x13359\t0x5CB3\n0x1335A\t0x697D\n0x1335B\t0x984D\n0x1335C\t0x984E\n0x1335D\t0x639B\n0x1335E\t0x7B20\n0x1335F\t0x6A2B\n0x13360\t0x6A7F\n0x13361\t0x68B6\n0x13362\t0x9C0D\n0x13363\t0x6F5F\n0x13364\t0x5272\n0x13365\t0x559D\n0x13366\t0x6070\n0x13367\t0x62EC\n0x13368\t0x6D3B\n0x13369\t0x6E07\n0x1336A\t0x6ED1\n0x1336B\t0x845B\n0x1336C\t0x8910\n0x1336D\t0x8F44\n0x1336E\t0x4E14\n0x1336F\t0x9C39\n0x13370\t0x53F6\n0x13371\t0x691B\n0x13372\t0x6A3A\n0x13373\t0x9784\n0x13374\t0x682A\n0x13375\t0x515C\n0x13376\t0x7AC3\n0x13377\t0x84B2\n0x13378\t0x91DC\n0x13379\t0x938C\n0x1337A\t0x565B\n0x1337B\t0x9D28\n0x1337C\t0x6822\n0x1337D\t0x8305\n0x1337E\t0x8431\n0x13421\t0x7CA5\n0x13422\t0x5208\n0x13423\t0x82C5\n0x13424\t0x74E6\n0x13425\t0x4E7E\n0x13426\t0x4F83\n0x13427\t0x51A0\n0x13428\t0x5BD2\n0x13429\t0x520A\n0x1342A\t0x52D8\n0x1342B\t0x52E7\n0x1342C\t0x5DFB\n0x1342D\t0x559A\n0x1342E\t0x582A\n0x1342F\t0x59E6\n0x13430\t0x5B8C\n0x13431\t0x5B98\n0x13432\t0x5BDB\n0x13433\t0x5E72\n0x13434\t0x5E79\n0x13435\t0x60A3\n0x13436\t0x611F\n0x13437\t0x6163\n0x13438\t0x61BE\n0x13439\t0x63DB\n0x1343A\t0x6562\n0x1343B\t0x67D1\n0x1343C\t0x6853\n0x1343D\t0x68FA\n0x1343E\t0x6B3E\n0x1343F\t0x6B53\n0x13440\t0x6C57\n0x13441\t0x6F22\n0x13442\t0x6F97\n0x13443\t0x6F45\n0x13444\t0x74B0\n0x13445\t0x7518\n0x13446\t0x76E3\n0x13447\t0x770B\n0x13448\t0x7AFF\n0x13449\t0x7BA1\n0x1344A\t0x7C21\n0x1344B\t0x7DE9\n0x1344C\t0x7F36\n0x1344D\t0x7FF0\n0x1344E\t0x809D\n0x1344F\t0x8266\n0x13450\t0x839E\n0x13451\t0x89B3\n0x13452\t0x8ACC\n0x13453\t0x8CAB\n0x13454\t0x9084\n0x13455\t0x9451\n0x13456\t0x9593\n0x13457\t0x9591\n0x13458\t0x95A2\n0x13459\t0x9665\n0x1345A\t0x97D3\n0x1345B\t0x9928\n0x1345C\t0x8218\n0x1345D\t0x4E38\n0x1345E\t0x542B\n0x1345F\t0x5CB8\n0x13460\t0x5DCC\n0x13461\t0x73A9\n0x13462\t0x764C\n0x13463\t0x773C\n0x13464\t0x5CA9\n0x13465\t0x7FEB\n0x13466\t0x8D0B\n0x13467\t0x96C1\n0x13468\t0x9811\n0x13469\t0x9854\n0x1346A\t0x9858\n0x1346B\t0x4F01\n0x1346C\t0x4F0E\n0x1346D\t0x5371\n0x1346E\t0x559C\n0x1346F\t0x5668\n0x13470\t0x57FA\n0x13471\t0x5947\n0x13472\t0x5B09\n0x13473\t0x5BC4\n0x13474\t0x5C90\n0x13475\t0x5E0C\n0x13476\t0x5E7E\n0x13477\t0x5FCC\n0x13478\t0x63EE\n0x13479\t0x673A\n0x1347A\t0x65D7\n0x1347B\t0x65E2\n0x1347C\t0x671F\n0x1347D\t0x68CB\n0x1347E\t0x68C4\n0x13521\t0x6A5F\n0x13522\t0x5E30\n0x13523\t0x6BC5\n0x13524\t0x6C17\n0x13525\t0x6C7D\n0x13526\t0x757F\n0x13527\t0x7948\n0x13528\t0x5B63\n0x13529\t0x7A00\n0x1352A\t0x7D00\n0x1352B\t0x5FBD\n0x1352C\t0x898F\n0x1352D\t0x8A18\n0x1352E\t0x8CB4\n0x1352F\t0x8D77\n0x13530\t0x8ECC\n0x13531\t0x8F1D\n0x13532\t0x98E2\n0x13533\t0x9A0E\n0x13534\t0x9B3C\n0x13535\t0x4E80\n0x13536\t0x507D\n0x13537\t0x5100\n0x13538\t0x5993\n0x13539\t0x5B9C\n0x1353A\t0x622F\n0x1353B\t0x6280\n0x1353C\t0x64EC\n0x1353D\t0x6B3A\n0x1353E\t0x72A0\n0x1353F\t0x7591\n0x13540\t0x7947\n0x13541\t0x7FA9\n0x13542\t0x87FB\n0x13543\t0x8ABC\n0x13544\t0x8B70\n0x13545\t0x63AC\n0x13546\t0x83CA\n0x13547\t0x97A0\n0x13548\t0x5409\n0x13549\t0x5403\n0x1354A\t0x55AB\n0x1354B\t0x6854\n0x1354C\t0x6A58\n0x1354D\t0x8A70\n0x1354E\t0x7827\n0x1354F\t0x6775\n0x13550\t0x9ECD\n0x13551\t0x5374\n0x13552\t0x5BA2\n0x13553\t0x811A\n0x13554\t0x8650\n0x13555\t0x9006\n0x13556\t0x4E18\n0x13557\t0x4E45\n0x13558\t0x4EC7\n0x13559\t0x4F11\n0x1355A\t0x53CA\n0x1355B\t0x5438\n0x1355C\t0x5BAE\n0x1355D\t0x5F13\n0x1355E\t0x6025\n0x1355F\t0x6551\n0x13560\t0x673D\n0x13561\t0x6C42\n0x13562\t0x6C72\n0x13563\t0x6CE3\n0x13564\t0x7078\n0x13565\t0x7403\n0x13566\t0x7A76\n0x13567\t0x7AAE\n0x13568\t0x7B08\n0x13569\t0x7D1A\n0x1356A\t0x7CFE\n0x1356B\t0x7D66\n0x1356C\t0x65E7\n0x1356D\t0x725B\n0x1356E\t0x53BB\n0x1356F\t0x5C45\n0x13570\t0x5DE8\n0x13571\t0x62D2\n0x13572\t0x62E0\n0x13573\t0x6319\n0x13574\t0x6E20\n0x13575\t0x865A\n0x13576\t0x8A31\n0x13577\t0x8DDD\n0x13578\t0x92F8\n0x13579\t0x6F01\n0x1357A\t0x79A6\n0x1357B\t0x9B5A\n0x1357C\t0x4EA8\n0x1357D\t0x4EAB\n0x1357E\t0x4EAC\n0x13621\t0x4F9B\n0x13622\t0x4FA0\n0x13623\t0x50D1\n0x13624\t0x5147\n0x13625\t0x7AF6\n0x13626\t0x5171\n0x13627\t0x51F6\n0x13628\t0x5354\n0x13629\t0x5321\n0x1362A\t0x537F\n0x1362B\t0x53EB\n0x1362C\t0x55AC\n0x1362D\t0x5883\n0x1362E\t0x5CE1\n0x1362F\t0x5F37\n0x13630\t0x5F4A\n0x13631\t0x602F\n0x13632\t0x6050\n0x13633\t0x606D\n0x13634\t0x631F\n0x13635\t0x6559\n0x13636\t0x6A4B\n0x13637\t0x6CC1\n0x13638\t0x72C2\n0x13639\t0x72ED\n0x1363A\t0x77EF\n0x1363B\t0x80F8\n0x1363C\t0x8105\n0x1363D\t0x8208\n0x1363E\t0x854E\n0x1363F\t0x90F7\n0x13640\t0x93E1\n0x13641\t0x97FF\n0x13642\t0x9957\n0x13643\t0x9A5A\n0x13644\t0x4EF0\n0x13645\t0x51DD\n0x13646\t0x5C2D\n0x13647\t0x6681\n0x13648\t0x696D\n0x13649\t0x5C40\n0x1364A\t0x66F2\n0x1364B\t0x6975\n0x1364C\t0x7389\n0x1364D\t0x6850\n0x1364E\t0x7C81\n0x1364F\t0x50C5\n0x13650\t0x52E4\n0x13651\t0x5747\n0x13652\t0x5DFE\n0x13653\t0x9326\n0x13654\t0x65A4\n0x13655\t0x6B23\n0x13656\t0x6B3D\n0x13657\t0x7434\n0x13658\t0x7981\n0x13659\t0x79BD\n0x1365A\t0x7B4B\n0x1365B\t0x7DCA\n0x1365C\t0x82B9\n0x1365D\t0x83CC\n0x1365E\t0x887F\n0x1365F\t0x895F\n0x13660\t0x8B39\n0x13661\t0x8FD1\n0x13662\t0x91D1\n0x13663\t0x541F\n0x13664\t0x9280\n0x13665\t0x4E5D\n0x13666\t0x5036\n0x13667\t0x53E5\n0x13668\t0x533A\n0x13669\t0x72D7\n0x1366A\t0x7396\n0x1366B\t0x77E9\n0x1366C\t0x82E6\n0x1366D\t0x8EAF\n0x1366E\t0x99C6\n0x1366F\t0x99C8\n0x13670\t0x99D2\n0x13671\t0x5177\n0x13672\t0x611A\n0x13673\t0x865E\n0x13674\t0x55B0\n0x13675\t0x7A7A\n0x13676\t0x5076\n0x13677\t0x5BD3\n0x13678\t0x9047\n0x13679\t0x9685\n0x1367A\t0x4E32\n0x1367B\t0x6ADB\n0x1367C\t0x91E7\n0x1367D\t0x5C51\n0x1367E\t0x5C48\n0x13721\t0x6398\n0x13722\t0x7A9F\n0x13723\t0x6C93\n0x13724\t0x9774\n0x13725\t0x8F61\n0x13726\t0x7AAA\n0x13727\t0x718A\n0x13728\t0x9688\n0x13729\t0x7C82\n0x1372A\t0x6817\n0x1372B\t0x7E70\n0x1372C\t0x6851\n0x1372D\t0x936C\n0x1372E\t0x52F2\n0x1372F\t0x541B\n0x13730\t0x85AB\n0x13731\t0x8A13\n0x13732\t0x7FA4\n0x13733\t0x8ECD\n0x13734\t0x90E1\n0x13735\t0x5366\n0x13736\t0x8888\n0x13737\t0x7941\n0x13738\t0x4FC2\n0x13739\t0x50BE\n0x1373A\t0x5211\n0x1373B\t0x5144\n0x1373C\t0x5553\n0x1373D\t0x572D\n0x1373E\t0x73EA\n0x1373F\t0x578B\n0x13740\t0x5951\n0x13741\t0x5F62\n0x13742\t0x5F84\n0x13743\t0x6075\n0x13744\t0x6176\n0x13745\t0x6167\n0x13746\t0x61A9\n0x13747\t0x63B2\n0x13748\t0x643A\n0x13749\t0x656C\n0x1374A\t0x666F\n0x1374B\t0x6842\n0x1374C\t0x6E13\n0x1374D\t0x7566\n0x1374E\t0x7A3D\n0x1374F\t0x7CFB\n0x13750\t0x7D4C\n0x13751\t0x7D99\n0x13752\t0x7E4B\n0x13753\t0x7F6B\n0x13754\t0x830E\n0x13755\t0x834A\n0x13756\t0x86CD\n0x13757\t0x8A08\n0x13758\t0x8A63\n0x13759\t0x8B66\n0x1375A\t0x8EFD\n0x1375B\t0x981A\n0x1375C\t0x9D8F\n0x1375D\t0x82B8\n0x1375E\t0x8FCE\n0x1375F\t0x9BE8\n0x13760\t0x5287\n0x13761\t0x621F\n0x13762\t0x6483\n0x13763\t0x6FC0\n0x13764\t0x9699\n0x13765\t0x6841\n0x13766\t0x5091\n0x13767\t0x6B20\n0x13768\t0x6C7A\n0x13769\t0x6F54\n0x1376A\t0x7A74\n0x1376B\t0x7D50\n0x1376C\t0x8840\n0x1376D\t0x8A23\n0x1376E\t0x6708\n0x1376F\t0x4EF6\n0x13770\t0x5039\n0x13771\t0x5026\n0x13772\t0x5065\n0x13773\t0x517C\n0x13774\t0x5238\n0x13775\t0x5263\n0x13776\t0x55A7\n0x13777\t0x570F\n0x13778\t0x5805\n0x13779\t0x5ACC\n0x1377A\t0x5EFA\n0x1377B\t0x61B2\n0x1377C\t0x61F8\n0x1377D\t0x62F3\n0x1377E\t0x6372\n0x13821\t0x691C\n0x13822\t0x6A29\n0x13823\t0x727D\n0x13824\t0x72AC\n0x13825\t0x732E\n0x13826\t0x7814\n0x13827\t0x786F\n0x13828\t0x7D79\n0x13829\t0x770C\n0x1382A\t0x80A9\n0x1382B\t0x898B\n0x1382C\t0x8B19\n0x1382D\t0x8CE2\n0x1382E\t0x8ED2\n0x1382F\t0x9063\n0x13830\t0x9375\n0x13831\t0x967A\n0x13832\t0x9855\n0x13833\t0x9A13\n0x13834\t0x9E78\n0x13835\t0x5143\n0x13836\t0x539F\n0x13837\t0x53B3\n0x13838\t0x5E7B\n0x13839\t0x5F26\n0x1383A\t0x6E1B\n0x1383B\t0x6E90\n0x1383C\t0x7384\n0x1383D\t0x73FE\n0x1383E\t0x7D43\n0x1383F\t0x8237\n0x13840\t0x8A00\n0x13841\t0x8AFA\n0x13842\t0x9650\n0x13843\t0x4E4E\n0x13844\t0x500B\n0x13845\t0x53E4\n0x13846\t0x547C\n0x13847\t0x56FA\n0x13848\t0x59D1\n0x13849\t0x5B64\n0x1384A\t0x5DF1\n0x1384B\t0x5EAB\n0x1384C\t0x5F27\n0x1384D\t0x6238\n0x1384E\t0x6545\n0x1384F\t0x67AF\n0x13850\t0x6E56\n0x13851\t0x72D0\n0x13852\t0x7CCA\n0x13853\t0x88B4\n0x13854\t0x80A1\n0x13855\t0x80E1\n0x13856\t0x83F0\n0x13857\t0x864E\n0x13858\t0x8A87\n0x13859\t0x8DE8\n0x1385A\t0x9237\n0x1385B\t0x96C7\n0x1385C\t0x9867\n0x1385D\t0x9F13\n0x1385E\t0x4E94\n0x1385F\t0x4E92\n0x13860\t0x4F0D\n0x13861\t0x5348\n0x13862\t0x5449\n0x13863\t0x543E\n0x13864\t0x5A2F\n0x13865\t0x5F8C\n0x13866\t0x5FA1\n0x13867\t0x609F\n0x13868\t0x68A7\n0x13869\t0x6A8E\n0x1386A\t0x745A\n0x1386B\t0x7881\n0x1386C\t0x8A9E\n0x1386D\t0x8AA4\n0x1386E\t0x8B77\n0x1386F\t0x9190\n0x13870\t0x4E5E\n0x13871\t0x9BC9\n0x13872\t0x4EA4\n0x13873\t0x4F7C\n0x13874\t0x4FAF\n0x13875\t0x5019\n0x13876\t0x5016\n0x13877\t0x5149\n0x13878\t0x516C\n0x13879\t0x529F\n0x1387A\t0x52B9\n0x1387B\t0x52FE\n0x1387C\t0x539A\n0x1387D\t0x53E3\n0x1387E\t0x5411\n0x13921\t0x540E\n0x13922\t0x5589\n0x13923\t0x5751\n0x13924\t0x57A2\n0x13925\t0x597D\n0x13926\t0x5B54\n0x13927\t0x5B5D\n0x13928\t0x5B8F\n0x13929\t0x5DE5\n0x1392A\t0x5DE7\n0x1392B\t0x5DF7\n0x1392C\t0x5E78\n0x1392D\t0x5E83\n0x1392E\t0x5E9A\n0x1392F\t0x5EB7\n0x13930\t0x5F18\n0x13931\t0x6052\n0x13932\t0x614C\n0x13933\t0x6297\n0x13934\t0x62D8\n0x13935\t0x63A7\n0x13936\t0x653B\n0x13937\t0x6602\n0x13938\t0x6643\n0x13939\t0x66F4\n0x1393A\t0x676D\n0x1393B\t0x6821\n0x1393C\t0x6897\n0x1393D\t0x69CB\n0x1393E\t0x6C5F\n0x1393F\t0x6D2A\n0x13940\t0x6D69\n0x13941\t0x6E2F\n0x13942\t0x6E9D\n0x13943\t0x7532\n0x13944\t0x7687\n0x13945\t0x786C\n0x13946\t0x7A3F\n0x13947\t0x7CE0\n0x13948\t0x7D05\n0x13949\t0x7D18\n0x1394A\t0x7D5E\n0x1394B\t0x7DB1\n0x1394C\t0x8015\n0x1394D\t0x8003\n0x1394E\t0x80AF\n0x1394F\t0x80B1\n0x13950\t0x8154\n0x13951\t0x818F\n0x13952\t0x822A\n0x13953\t0x8352\n0x13954\t0x884C\n0x13955\t0x8861\n0x13956\t0x8B1B\n0x13957\t0x8CA2\n0x13958\t0x8CFC\n0x13959\t0x90CA\n0x1395A\t0x9175\n0x1395B\t0x9271\n0x1395C\t0x783F\n0x1395D\t0x92FC\n0x1395E\t0x95A4\n0x1395F\t0x964D\n0x13960\t0x9805\n0x13961\t0x9999\n0x13962\t0x9AD8\n0x13963\t0x9D3B\n0x13964\t0x525B\n0x13965\t0x52AB\n0x13966\t0x53F7\n0x13967\t0x5408\n0x13968\t0x58D5\n0x13969\t0x62F7\n0x1396A\t0x6FE0\n0x1396B\t0x8C6A\n0x1396C\t0x8F5F\n0x1396D\t0x9EB9\n0x1396E\t0x514B\n0x1396F\t0x523B\n0x13970\t0x544A\n0x13971\t0x56FD\n0x13972\t0x7A40\n0x13973\t0x9177\n0x13974\t0x9D60\n0x13975\t0x9ED2\n0x13976\t0x7344\n0x13977\t0x6F09\n0x13978\t0x8170\n0x13979\t0x7511\n0x1397A\t0x5FFD\n0x1397B\t0x60DA\n0x1397C\t0x9AA8\n0x1397D\t0x72DB\n0x1397E\t0x8FBC\n0x13A21\t0x6B64\n0x13A22\t0x9803\n0x13A23\t0x4ECA\n0x13A24\t0x56F0\n0x13A25\t0x5764\n0x13A26\t0x58BE\n0x13A27\t0x5A5A\n0x13A28\t0x6068\n0x13A29\t0x61C7\n0x13A2A\t0x660F\n0x13A2B\t0x6606\n0x13A2C\t0x6839\n0x13A2D\t0x68B1\n0x13A2E\t0x6DF7\n0x13A2F\t0x75D5\n0x13A30\t0x7D3A\n0x13A31\t0x826E\n0x13A32\t0x9B42\n0x13A33\t0x4E9B\n0x13A34\t0x4F50\n0x13A35\t0x53C9\n0x13A36\t0x5506\n0x13A37\t0x5D6F\n0x13A38\t0x5DE6\n0x13A39\t0x5DEE\n0x13A3A\t0x67FB\n0x13A3B\t0x6C99\n0x13A3C\t0x7473\n0x13A3D\t0x7802\n0x13A3E\t0x8A50\n0x13A3F\t0x9396\n0x13A40\t0x88DF\n0x13A41\t0x5750\n0x13A42\t0x5EA7\n0x13A43\t0x632B\n0x13A44\t0x50B5\n0x13A45\t0x50AC\n0x13A46\t0x518D\n0x13A47\t0x6700\n0x13A48\t0x54C9\n0x13A49\t0x585E\n0x13A4A\t0x59BB\n0x13A4B\t0x5BB0\n0x13A4C\t0x5F69\n0x13A4D\t0x624D\n0x13A4E\t0x63A1\n0x13A4F\t0x683D\n0x13A50\t0x6B73\n0x13A51\t0x6E08\n0x13A52\t0x707D\n0x13A53\t0x91C7\n0x13A54\t0x7280\n0x13A55\t0x7815\n0x13A56\t0x7826\n0x13A57\t0x796D\n0x13A58\t0x658E\n0x13A59\t0x7D30\n0x13A5A\t0x83DC\n0x13A5B\t0x88C1\n0x13A5C\t0x8F09\n0x13A5D\t0x969B\n0x13A5E\t0x5264\n0x13A5F\t0x5728\n0x13A60\t0x6750\n0x13A61\t0x7F6A\n0x13A62\t0x8CA1\n0x13A63\t0x51B4\n0x13A64\t0x5742\n0x13A65\t0x962A\n0x13A66\t0x583A\n0x13A67\t0x698A\n0x13A68\t0x80B4\n0x13A69\t0x54B2\n0x13A6A\t0x5D0E\n0x13A6B\t0x57FC\n0x13A6C\t0x7895\n0x13A6D\t0x9DFA\n0x13A6E\t0x4F5C\n0x13A6F\t0x524A\n0x13A70\t0x548B\n0x13A71\t0x643E\n0x13A72\t0x6628\n0x13A73\t0x6714\n0x13A74\t0x67F5\n0x13A75\t0x7A84\n0x13A76\t0x7B56\n0x13A77\t0x7D22\n0x13A78\t0x932F\n0x13A79\t0x685C\n0x13A7A\t0x9BAD\n0x13A7B\t0x7B39\n0x13A7C\t0x5319\n0x13A7D\t0x518A\n0x13A7E\t0x5237\n0x13B21\t0x5BDF\n0x13B22\t0x62F6\n0x13B23\t0x64AE\n0x13B24\t0x64E6\n0x13B25\t0x672D\n0x13B26\t0x6BBA\n0x13B27\t0x85A9\n0x13B28\t0x96D1\n0x13B29\t0x7690\n0x13B2A\t0x9BD6\n0x13B2B\t0x634C\n0x13B2C\t0x9306\n0x13B2D\t0x9BAB\n0x13B2E\t0x76BF\n0x13B2F\t0x6652\n0x13B30\t0x4E09\n0x13B31\t0x5098\n0x13B32\t0x53C2\n0x13B33\t0x5C71\n0x13B34\t0x60E8\n0x13B35\t0x6492\n0x13B36\t0x6563\n0x13B37\t0x685F\n0x13B38\t0x71E6\n0x13B39\t0x73CA\n0x13B3A\t0x7523\n0x13B3B\t0x7B97\n0x13B3C\t0x7E82\n0x13B3D\t0x8695\n0x13B3E\t0x8B83\n0x13B3F\t0x8CDB\n0x13B40\t0x9178\n0x13B41\t0x9910\n0x13B42\t0x65AC\n0x13B43\t0x66AB\n0x13B44\t0x6B8B\n0x13B45\t0x4ED5\n0x13B46\t0x4ED4\n0x13B47\t0x4F3A\n0x13B48\t0x4F7F\n0x13B49\t0x523A\n0x13B4A\t0x53F8\n0x13B4B\t0x53F2\n0x13B4C\t0x55E3\n0x13B4D\t0x56DB\n0x13B4E\t0x58EB\n0x13B4F\t0x59CB\n0x13B50\t0x59C9\n0x13B51\t0x59FF\n0x13B52\t0x5B50\n0x13B53\t0x5C4D\n0x13B54\t0x5E02\n0x13B55\t0x5E2B\n0x13B56\t0x5FD7\n0x13B57\t0x601D\n0x13B58\t0x6307\n0x13B59\t0x652F\n0x13B5A\t0x5B5C\n0x13B5B\t0x65AF\n0x13B5C\t0x65BD\n0x13B5D\t0x65E8\n0x13B5E\t0x679D\n0x13B5F\t0x6B62\n0x13B60\t0x6B7B\n0x13B61\t0x6C0F\n0x13B62\t0x7345\n0x13B63\t0x7949\n0x13B64\t0x79C1\n0x13B65\t0x7CF8\n0x13B66\t0x7D19\n0x13B67\t0x7D2B\n0x13B68\t0x80A2\n0x13B69\t0x8102\n0x13B6A\t0x81F3\n0x13B6B\t0x8996\n0x13B6C\t0x8A5E\n0x13B6D\t0x8A69\n0x13B6E\t0x8A66\n0x13B6F\t0x8A8C\n0x13B70\t0x8AEE\n0x13B71\t0x8CC7\n0x13B72\t0x8CDC\n0x13B73\t0x96CC\n0x13B74\t0x98FC\n0x13B75\t0x6B6F\n0x13B76\t0x4E8B\n0x13B77\t0x4F3C\n0x13B78\t0x4F8D\n0x13B79\t0x5150\n0x13B7A\t0x5B57\n0x13B7B\t0x5BFA\n0x13B7C\t0x6148\n0x13B7D\t0x6301\n0x13B7E\t0x6642\n0x13C21\t0x6B21\n0x13C22\t0x6ECB\n0x13C23\t0x6CBB\n0x13C24\t0x723E\n0x13C25\t0x74BD\n0x13C26\t0x75D4\n0x13C27\t0x78C1\n0x13C28\t0x793A\n0x13C29\t0x800C\n0x13C2A\t0x8033\n0x13C2B\t0x81EA\n0x13C2C\t0x8494\n0x13C2D\t0x8F9E\n0x13C2E\t0x6C50\n0x13C2F\t0x9E7F\n0x13C30\t0x5F0F\n0x13C31\t0x8B58\n0x13C32\t0x9D2B\n0x13C33\t0x7AFA\n0x13C34\t0x8EF8\n0x13C35\t0x5B8D\n0x13C36\t0x96EB\n0x13C37\t0x4E03\n0x13C38\t0x53F1\n0x13C39\t0x57F7\n0x13C3A\t0x5931\n0x13C3B\t0x5AC9\n0x13C3C\t0x5BA4\n0x13C3D\t0x6089\n0x13C3E\t0x6E7F\n0x13C3F\t0x6F06\n0x13C40\t0x75BE\n0x13C41\t0x8CEA\n0x13C42\t0x5B9F\n0x13C43\t0x8500\n0x13C44\t0x7BE0\n0x13C45\t0x5072\n0x13C46\t0x67F4\n0x13C47\t0x829D\n0x13C48\t0x5C61\n0x13C49\t0x854A\n0x13C4A\t0x7E1E\n0x13C4B\t0x820E\n0x13C4C\t0x5199\n0x13C4D\t0x5C04\n0x13C4E\t0x6368\n0x13C4F\t0x8D66\n0x13C50\t0x659C\n0x13C51\t0x716E\n0x13C52\t0x793E\n0x13C53\t0x7D17\n0x13C54\t0x8005\n0x13C55\t0x8B1D\n0x13C56\t0x8ECA\n0x13C57\t0x906E\n0x13C58\t0x86C7\n0x13C59\t0x90AA\n0x13C5A\t0x501F\n0x13C5B\t0x52FA\n0x13C5C\t0x5C3A\n0x13C5D\t0x6753\n0x13C5E\t0x707C\n0x13C5F\t0x7235\n0x13C60\t0x914C\n0x13C61\t0x91C8\n0x13C62\t0x932B\n0x13C63\t0x82E5\n0x13C64\t0x5BC2\n0x13C65\t0x5F31\n0x13C66\t0x60F9\n0x13C67\t0x4E3B\n0x13C68\t0x53D6\n0x13C69\t0x5B88\n0x13C6A\t0x624B\n0x13C6B\t0x6731\n0x13C6C\t0x6B8A\n0x13C6D\t0x72E9\n0x13C6E\t0x73E0\n0x13C6F\t0x7A2E\n0x13C70\t0x816B\n0x13C71\t0x8DA3\n0x13C72\t0x9152\n0x13C73\t0x9996\n0x13C74\t0x5112\n0x13C75\t0x53D7\n0x13C76\t0x546A\n0x13C77\t0x5BFF\n0x13C78\t0x6388\n0x13C79\t0x6A39\n0x13C7A\t0x7DAC\n0x13C7B\t0x9700\n0x13C7C\t0x56DA\n0x13C7D\t0x53CE\n0x13C7E\t0x5468\n0x13D21\t0x5B97\n0x13D22\t0x5C31\n0x13D23\t0x5DDE\n0x13D24\t0x4FEE\n0x13D25\t0x6101\n0x13D26\t0x62FE\n0x13D27\t0x6D32\n0x13D28\t0x79C0\n0x13D29\t0x79CB\n0x13D2A\t0x7D42\n0x13D2B\t0x7E4D\n0x13D2C\t0x7FD2\n0x13D2D\t0x81ED\n0x13D2E\t0x821F\n0x13D2F\t0x8490\n0x13D30\t0x8846\n0x13D31\t0x8972\n0x13D32\t0x8B90\n0x13D33\t0x8E74\n0x13D34\t0x8F2F\n0x13D35\t0x9031\n0x13D36\t0x914B\n0x13D37\t0x916C\n0x13D38\t0x96C6\n0x13D39\t0x919C\n0x13D3A\t0x4EC0\n0x13D3B\t0x4F4F\n0x13D3C\t0x5145\n0x13D3D\t0x5341\n0x13D3E\t0x5F93\n0x13D3F\t0x620E\n0x13D40\t0x67D4\n0x13D41\t0x6C41\n0x13D42\t0x6E0B\n0x13D43\t0x7363\n0x13D44\t0x7E26\n0x13D45\t0x91CD\n0x13D46\t0x9283\n0x13D47\t0x53D4\n0x13D48\t0x5919\n0x13D49\t0x5BBF\n0x13D4A\t0x6DD1\n0x13D4B\t0x795D\n0x13D4C\t0x7E2E\n0x13D4D\t0x7C9B\n0x13D4E\t0x587E\n0x13D4F\t0x719F\n0x13D50\t0x51FA\n0x13D51\t0x8853\n0x13D52\t0x8FF0\n0x13D53\t0x4FCA\n0x13D54\t0x5CFB\n0x13D55\t0x6625\n0x13D56\t0x77AC\n0x13D57\t0x7AE3\n0x13D58\t0x821C\n0x13D59\t0x99FF\n0x13D5A\t0x51C6\n0x13D5B\t0x5FAA\n0x13D5C\t0x65EC\n0x13D5D\t0x696F\n0x13D5E\t0x6B89\n0x13D5F\t0x6DF3\n0x13D60\t0x6E96\n0x13D61\t0x6F64\n0x13D62\t0x76FE\n0x13D63\t0x7D14\n0x13D64\t0x5DE1\n0x13D65\t0x9075\n0x13D66\t0x9187\n0x13D67\t0x9806\n0x13D68\t0x51E6\n0x13D69\t0x521D\n0x13D6A\t0x6240\n0x13D6B\t0x6691\n0x13D6C\t0x66D9\n0x13D6D\t0x6E1A\n0x13D6E\t0x5EB6\n0x13D6F\t0x7DD2\n0x13D70\t0x7F72\n0x13D71\t0x66F8\n0x13D72\t0x85AF\n0x13D73\t0x85F7\n0x13D74\t0x8AF8\n0x13D75\t0x52A9\n0x13D76\t0x53D9\n0x13D77\t0x5973\n0x13D78\t0x5E8F\n0x13D79\t0x5F90\n0x13D7A\t0x6055\n0x13D7B\t0x92E4\n0x13D7C\t0x9664\n0x13D7D\t0x50B7\n0x13D7E\t0x511F\n0x13E21\t0x52DD\n0x13E22\t0x5320\n0x13E23\t0x5347\n0x13E24\t0x53EC\n0x13E25\t0x54E8\n0x13E26\t0x5546\n0x13E27\t0x5531\n0x13E28\t0x5617\n0x13E29\t0x5968\n0x13E2A\t0x59BE\n0x13E2B\t0x5A3C\n0x13E2C\t0x5BB5\n0x13E2D\t0x5C06\n0x13E2E\t0x5C0F\n0x13E2F\t0x5C11\n0x13E30\t0x5C1A\n0x13E31\t0x5E84\n0x13E32\t0x5E8A\n0x13E33\t0x5EE0\n0x13E34\t0x5F70\n0x13E35\t0x627F\n0x13E36\t0x6284\n0x13E37\t0x62DB\n0x13E38\t0x638C\n0x13E39\t0x6377\n0x13E3A\t0x6607\n0x13E3B\t0x660C\n0x13E3C\t0x662D\n0x13E3D\t0x6676\n0x13E3E\t0x677E\n0x13E3F\t0x68A2\n0x13E40\t0x6A1F\n0x13E41\t0x6A35\n0x13E42\t0x6CBC\n0x13E43\t0x6D88\n0x13E44\t0x6E09\n0x13E45\t0x6E58\n0x13E46\t0x713C\n0x13E47\t0x7126\n0x13E48\t0x7167\n0x13E49\t0x75C7\n0x13E4A\t0x7701\n0x13E4B\t0x785D\n0x13E4C\t0x7901\n0x13E4D\t0x7965\n0x13E4E\t0x79F0\n0x13E4F\t0x7AE0\n0x13E50\t0x7B11\n0x13E51\t0x7CA7\n0x13E52\t0x7D39\n0x13E53\t0x8096\n0x13E54\t0x83D6\n0x13E55\t0x848B\n0x13E56\t0x8549\n0x13E57\t0x885D\n0x13E58\t0x88F3\n0x13E59\t0x8A1F\n0x13E5A\t0x8A3C\n0x13E5B\t0x8A54\n0x13E5C\t0x8A73\n0x13E5D\t0x8C61\n0x13E5E\t0x8CDE\n0x13E5F\t0x91A4\n0x13E60\t0x9266\n0x13E61\t0x937E\n0x13E62\t0x9418\n0x13E63\t0x969C\n0x13E64\t0x9798\n0x13E65\t0x4E0A\n0x13E66\t0x4E08\n0x13E67\t0x4E1E\n0x13E68\t0x4E57\n0x13E69\t0x5197\n0x13E6A\t0x5270\n0x13E6B\t0x57CE\n0x13E6C\t0x5834\n0x13E6D\t0x58CC\n0x13E6E\t0x5B22\n0x13E6F\t0x5E38\n0x13E70\t0x60C5\n0x13E71\t0x64FE\n0x13E72\t0x6761\n0x13E73\t0x6756\n0x13E74\t0x6D44\n0x13E75\t0x72B6\n0x13E76\t0x7573\n0x13E77\t0x7A63\n0x13E78\t0x84B8\n0x13E79\t0x8B72\n0x13E7A\t0x91B8\n0x13E7B\t0x9320\n0x13E7C\t0x5631\n0x13E7D\t0x57F4\n0x13E7E\t0x98FE\n0x13F21\t0x62ED\n0x13F22\t0x690D\n0x13F23\t0x6B96\n0x13F24\t0x71ED\n0x13F25\t0x7E54\n0x13F26\t0x8077\n0x13F27\t0x8272\n0x13F28\t0x89E6\n0x13F29\t0x98DF\n0x13F2A\t0x8755\n0x13F2B\t0x8FB1\n0x13F2C\t0x5C3B\n0x13F2D\t0x4F38\n0x13F2E\t0x4FE1\n0x13F2F\t0x4FB5\n0x13F30\t0x5507\n0x13F31\t0x5A20\n0x13F32\t0x5BDD\n0x13F33\t0x5BE9\n0x13F34\t0x5FC3\n0x13F35\t0x614E\n0x13F36\t0x632F\n0x13F37\t0x65B0\n0x13F38\t0x664B\n0x13F39\t0x68EE\n0x13F3A\t0x699B\n0x13F3B\t0x6D78\n0x13F3C\t0x6DF1\n0x13F3D\t0x7533\n0x13F3E\t0x75B9\n0x13F3F\t0x771F\n0x13F40\t0x795E\n0x13F41\t0x79E6\n0x13F42\t0x7D33\n0x13F43\t0x81E3\n0x13F44\t0x82AF\n0x13F45\t0x85AA\n0x13F46\t0x89AA\n0x13F47\t0x8A3A\n0x13F48\t0x8EAB\n0x13F49\t0x8F9B\n0x13F4A\t0x9032\n0x13F4B\t0x91DD\n0x13F4C\t0x9707\n0x13F4D\t0x4EBA\n0x13F4E\t0x4EC1\n0x13F4F\t0x5203\n0x13F50\t0x5875\n0x13F51\t0x58EC\n0x13F52\t0x5C0B\n0x13F53\t0x751A\n0x13F54\t0x5C3D\n0x13F55\t0x814E\n0x13F56\t0x8A0A\n0x13F57\t0x8FC5\n0x13F58\t0x9663\n0x13F59\t0x976D\n0x13F5A\t0x7B25\n0x13F5B\t0x8ACF\n0x13F5C\t0x9808\n0x13F5D\t0x9162\n0x13F5E\t0x56F3\n0x13F5F\t0x53A8\n0x13F60\t0x9017\n0x13F61\t0x5439\n0x13F62\t0x5782\n0x13F63\t0x5E25\n0x13F64\t0x63A8\n0x13F65\t0x6C34\n0x13F66\t0x708A\n0x13F67\t0x7761\n0x13F68\t0x7C8B\n0x13F69\t0x7FE0\n0x13F6A\t0x8870\n0x13F6B\t0x9042\n0x13F6C\t0x9154\n0x13F6D\t0x9310\n0x13F6E\t0x9318\n0x13F6F\t0x968F\n0x13F70\t0x745E\n0x13F71\t0x9AC4\n0x13F72\t0x5D07\n0x13F73\t0x5D69\n0x13F74\t0x6570\n0x13F75\t0x67A2\n0x13F76\t0x8DA8\n0x13F77\t0x96DB\n0x13F78\t0x636E\n0x13F79\t0x6749\n0x13F7A\t0x6919\n0x13F7B\t0x83C5\n0x13F7C\t0x9817\n0x13F7D\t0x96C0\n0x13F7E\t0x88FE\n0x14021\t0x6F84\n0x14022\t0x647A\n0x14023\t0x5BF8\n0x14024\t0x4E16\n0x14025\t0x702C\n0x14026\t0x755D\n0x14027\t0x662F\n0x14028\t0x51C4\n0x14029\t0x5236\n0x1402A\t0x52E2\n0x1402B\t0x59D3\n0x1402C\t0x5F81\n0x1402D\t0x6027\n0x1402E\t0x6210\n0x1402F\t0x653F\n0x14030\t0x6574\n0x14031\t0x661F\n0x14032\t0x6674\n0x14033\t0x68F2\n0x14034\t0x6816\n0x14035\t0x6B63\n0x14036\t0x6E05\n0x14037\t0x7272\n0x14038\t0x751F\n0x14039\t0x76DB\n0x1403A\t0x7CBE\n0x1403B\t0x8056\n0x1403C\t0x58F0\n0x1403D\t0x88FD\n0x1403E\t0x897F\n0x1403F\t0x8AA0\n0x14040\t0x8A93\n0x14041\t0x8ACB\n0x14042\t0x901D\n0x14043\t0x9192\n0x14044\t0x9752\n0x14045\t0x9759\n0x14046\t0x6589\n0x14047\t0x7A0E\n0x14048\t0x8106\n0x14049\t0x96BB\n0x1404A\t0x5E2D\n0x1404B\t0x60DC\n0x1404C\t0x621A\n0x1404D\t0x65A5\n0x1404E\t0x6614\n0x1404F\t0x6790\n0x14050\t0x77F3\n0x14051\t0x7A4D\n0x14052\t0x7C4D\n0x14053\t0x7E3E\n0x14054\t0x810A\n0x14055\t0x8CAC\n0x14056\t0x8D64\n0x14057\t0x8DE1\n0x14058\t0x8E5F\n0x14059\t0x78A9\n0x1405A\t0x5207\n0x1405B\t0x62D9\n0x1405C\t0x63A5\n0x1405D\t0x6442\n0x1405E\t0x6298\n0x1405F\t0x8A2D\n0x14060\t0x7A83\n0x14061\t0x7BC0\n0x14062\t0x8AAC\n0x14063\t0x96EA\n0x14064\t0x7D76\n0x14065\t0x820C\n0x14066\t0x8749\n0x14067\t0x4ED9\n0x14068\t0x5148\n0x14069\t0x5343\n0x1406A\t0x5360\n0x1406B\t0x5BA3\n0x1406C\t0x5C02\n0x1406D\t0x5C16\n0x1406E\t0x5DDD\n0x1406F\t0x6226\n0x14070\t0x6247\n0x14071\t0x64B0\n0x14072\t0x6813\n0x14073\t0x6834\n0x14074\t0x6CC9\n0x14075\t0x6D45\n0x14076\t0x6D17\n0x14077\t0x67D3\n0x14078\t0x6F5C\n0x14079\t0x714E\n0x1407A\t0x717D\n0x1407B\t0x65CB\n0x1407C\t0x7A7F\n0x1407D\t0x7BAD\n0x1407E\t0x7DDA\n0x14121\t0x7E4A\n0x14122\t0x7FA8\n0x14123\t0x817A\n0x14124\t0x821B\n0x14125\t0x8239\n0x14126\t0x85A6\n0x14127\t0x8A6E\n0x14128\t0x8CCE\n0x14129\t0x8DF5\n0x1412A\t0x9078\n0x1412B\t0x9077\n0x1412C\t0x92AD\n0x1412D\t0x9291\n0x1412E\t0x9583\n0x1412F\t0x9BAE\n0x14130\t0x524D\n0x14131\t0x5584\n0x14132\t0x6F38\n0x14133\t0x7136\n0x14134\t0x5168\n0x14135\t0x7985\n0x14136\t0x7E55\n0x14137\t0x81B3\n0x14138\t0x7CCE\n0x14139\t0x564C\n0x1413A\t0x5851\n0x1413B\t0x5CA8\n0x1413C\t0x63AA\n0x1413D\t0x66FE\n0x1413E\t0x66FD\n0x1413F\t0x695A\n0x14140\t0x72D9\n0x14141\t0x758F\n0x14142\t0x758E\n0x14143\t0x790E\n0x14144\t0x7956\n0x14145\t0x79DF\n0x14146\t0x7C97\n0x14147\t0x7D20\n0x14148\t0x7D44\n0x14149\t0x8607\n0x1414A\t0x8A34\n0x1414B\t0x963B\n0x1414C\t0x9061\n0x1414D\t0x9F20\n0x1414E\t0x50E7\n0x1414F\t0x5275\n0x14150\t0x53CC\n0x14151\t0x53E2\n0x14152\t0x5009\n0x14153\t0x55AA\n0x14154\t0x58EE\n0x14155\t0x594F\n0x14156\t0x723D\n0x14157\t0x5B8B\n0x14158\t0x5C64\n0x14159\t0x531D\n0x1415A\t0x60E3\n0x1415B\t0x60F3\n0x1415C\t0x635C\n0x1415D\t0x6383\n0x1415E\t0x633F\n0x1415F\t0x63BB\n0x14160\t0x64CD\n0x14161\t0x65E9\n0x14162\t0x66F9\n0x14163\t0x5DE3\n0x14164\t0x69CD\n0x14165\t0x69FD\n0x14166\t0x6F15\n0x14167\t0x71E5\n0x14168\t0x4E89\n0x14169\t0x75E9\n0x1416A\t0x76F8\n0x1416B\t0x7A93\n0x1416C\t0x7CDF\n0x1416D\t0x7DCF\n0x1416E\t0x7D9C\n0x1416F\t0x8061\n0x14170\t0x8349\n0x14171\t0x8358\n0x14172\t0x846C\n0x14173\t0x84BC\n0x14174\t0x85FB\n0x14175\t0x88C5\n0x14176\t0x8D70\n0x14177\t0x9001\n0x14178\t0x906D\n0x14179\t0x9397\n0x1417A\t0x971C\n0x1417B\t0x9A12\n0x1417C\t0x50CF\n0x1417D\t0x5897\n0x1417E\t0x618E\n0x14221\t0x81D3\n0x14222\t0x8535\n0x14223\t0x8D08\n0x14224\t0x9020\n0x14225\t0x4FC3\n0x14226\t0x5074\n0x14227\t0x5247\n0x14228\t0x5373\n0x14229\t0x606F\n0x1422A\t0x6349\n0x1422B\t0x675F\n0x1422C\t0x6E2C\n0x1422D\t0x8DB3\n0x1422E\t0x901F\n0x1422F\t0x4FD7\n0x14230\t0x5C5E\n0x14231\t0x8CCA\n0x14232\t0x65CF\n0x14233\t0x7D9A\n0x14234\t0x5352\n0x14235\t0x8896\n0x14236\t0x5176\n0x14237\t0x63C3\n0x14238\t0x5B58\n0x14239\t0x5B6B\n0x1423A\t0x5C0A\n0x1423B\t0x640D\n0x1423C\t0x6751\n0x1423D\t0x905C\n0x1423E\t0x4ED6\n0x1423F\t0x591A\n0x14240\t0x592A\n0x14241\t0x6C70\n0x14242\t0x8A51\n0x14243\t0x553E\n0x14244\t0x5815\n0x14245\t0x59A5\n0x14246\t0x60F0\n0x14247\t0x6253\n0x14248\t0x67C1\n0x14249\t0x8235\n0x1424A\t0x6955\n0x1424B\t0x9640\n0x1424C\t0x99C4\n0x1424D\t0x9A28\n0x1424E\t0x4F53\n0x1424F\t0x5806\n0x14250\t0x5BFE\n0x14251\t0x8010\n0x14252\t0x5CB1\n0x14253\t0x5E2F\n0x14254\t0x5F85\n0x14255\t0x6020\n0x14256\t0x614B\n0x14257\t0x6234\n0x14258\t0x66FF\n0x14259\t0x6CF0\n0x1425A\t0x6EDE\n0x1425B\t0x80CE\n0x1425C\t0x817F\n0x1425D\t0x82D4\n0x1425E\t0x888B\n0x1425F\t0x8CB8\n0x14260\t0x9000\n0x14261\t0x902E\n0x14262\t0x968A\n0x14263\t0x9EDB\n0x14264\t0x9BDB\n0x14265\t0x4EE3\n0x14266\t0x53F0\n0x14267\t0x5927\n0x14268\t0x7B2C\n0x14269\t0x918D\n0x1426A\t0x984C\n0x1426B\t0x9DF9\n0x1426C\t0x6EDD\n0x1426D\t0x7027\n0x1426E\t0x5353\n0x1426F\t0x5544\n0x14270\t0x5B85\n0x14271\t0x6258\n0x14272\t0x629E\n0x14273\t0x62D3\n0x14274\t0x6CA2\n0x14275\t0x6FEF\n0x14276\t0x7422\n0x14277\t0x8A17\n0x14278\t0x9438\n0x14279\t0x6FC1\n0x1427A\t0x8AFE\n0x1427B\t0x8338\n0x1427C\t0x51E7\n0x1427D\t0x86F8\n0x1427E\t0x53EA\n0x14321\t0x53E9\n0x14322\t0x4F46\n0x14323\t0x9054\n0x14324\t0x8FB0\n0x14325\t0x596A\n0x14326\t0x8131\n0x14327\t0x5DFD\n0x14328\t0x7AEA\n0x14329\t0x8FBF\n0x1432A\t0x68DA\n0x1432B\t0x8C37\n0x1432C\t0x72F8\n0x1432D\t0x9C48\n0x1432E\t0x6A3D\n0x1432F\t0x8AB0\n0x14330\t0x4E39\n0x14331\t0x5358\n0x14332\t0x5606\n0x14333\t0x5766\n0x14334\t0x62C5\n0x14335\t0x63A2\n0x14336\t0x65E6\n0x14337\t0x6B4E\n0x14338\t0x6DE1\n0x14339\t0x6E5B\n0x1433A\t0x70AD\n0x1433B\t0x77ED\n0x1433C\t0x7AEF\n0x1433D\t0x7BAA\n0x1433E\t0x7DBB\n0x1433F\t0x803D\n0x14340\t0x80C6\n0x14341\t0x86CB\n0x14342\t0x8A95\n0x14343\t0x935B\n0x14344\t0x56E3\n0x14345\t0x58C7\n0x14346\t0x5F3E\n0x14347\t0x65AD\n0x14348\t0x6696\n0x14349\t0x6A80\n0x1434A\t0x6BB5\n0x1434B\t0x7537\n0x1434C\t0x8AC7\n0x1434D\t0x5024\n0x1434E\t0x77E5\n0x1434F\t0x5730\n0x14350\t0x5F1B\n0x14351\t0x6065\n0x14352\t0x667A\n0x14353\t0x6C60\n0x14354\t0x75F4\n0x14355\t0x7A1A\n0x14356\t0x7F6E\n0x14357\t0x81F4\n0x14358\t0x8718\n0x14359\t0x9045\n0x1435A\t0x99B3\n0x1435B\t0x7BC9\n0x1435C\t0x755C\n0x1435D\t0x7AF9\n0x1435E\t0x7B51\n0x1435F\t0x84C4\n0x14360\t0x9010\n0x14361\t0x79E9\n0x14362\t0x7A92\n0x14363\t0x8336\n0x14364\t0x5AE1\n0x14365\t0x7740\n0x14366\t0x4E2D\n0x14367\t0x4EF2\n0x14368\t0x5B99\n0x14369\t0x5FE0\n0x1436A\t0x62BD\n0x1436B\t0x663C\n0x1436C\t0x67F1\n0x1436D\t0x6CE8\n0x1436E\t0x866B\n0x1436F\t0x8877\n0x14370\t0x8A3B\n0x14371\t0x914E\n0x14372\t0x92F3\n0x14373\t0x99D0\n0x14374\t0x6A17\n0x14375\t0x7026\n0x14376\t0x732A\n0x14377\t0x82E7\n0x14378\t0x8457\n0x14379\t0x8CAF\n0x1437A\t0x4E01\n0x1437B\t0x5146\n0x1437C\t0x51CB\n0x1437D\t0x558B\n0x1437E\t0x5BF5\n0x14421\t0x5E16\n0x14422\t0x5E33\n0x14423\t0x5E81\n0x14424\t0x5F14\n0x14425\t0x5F35\n0x14426\t0x5F6B\n0x14427\t0x5FB4\n0x14428\t0x61F2\n0x14429\t0x6311\n0x1442A\t0x66A2\n0x1442B\t0x671D\n0x1442C\t0x6F6E\n0x1442D\t0x7252\n0x1442E\t0x753A\n0x1442F\t0x773A\n0x14430\t0x8074\n0x14431\t0x8139\n0x14432\t0x8178\n0x14433\t0x8776\n0x14434\t0x8ABF\n0x14435\t0x8ADC\n0x14436\t0x8D85\n0x14437\t0x8DF3\n0x14438\t0x929A\n0x14439\t0x9577\n0x1443A\t0x9802\n0x1443B\t0x9CE5\n0x1443C\t0x52C5\n0x1443D\t0x6357\n0x1443E\t0x76F4\n0x1443F\t0x6715\n0x14440\t0x6C88\n0x14441\t0x73CD\n0x14442\t0x8CC3\n0x14443\t0x93AE\n0x14444\t0x9673\n0x14445\t0x6D25\n0x14446\t0x589C\n0x14447\t0x690E\n0x14448\t0x69CC\n0x14449\t0x8FFD\n0x1444A\t0x939A\n0x1444B\t0x75DB\n0x1444C\t0x901A\n0x1444D\t0x585A\n0x1444E\t0x6802\n0x1444F\t0x63B4\n0x14450\t0x69FB\n0x14451\t0x4F43\n0x14452\t0x6F2C\n0x14453\t0x67D8\n0x14454\t0x8FBB\n0x14455\t0x8526\n0x14456\t0x7DB4\n0x14457\t0x9354\n0x14458\t0x693F\n0x14459\t0x6F70\n0x1445A\t0x576A\n0x1445B\t0x58F7\n0x1445C\t0x5B2C\n0x1445D\t0x7D2C\n0x1445E\t0x722A\n0x1445F\t0x540A\n0x14460\t0x91E3\n0x14461\t0x9DB4\n0x14462\t0x4EAD\n0x14463\t0x4F4E\n0x14464\t0x505C\n0x14465\t0x5075\n0x14466\t0x5243\n0x14467\t0x8C9E\n0x14468\t0x5448\n0x14469\t0x5824\n0x1446A\t0x5B9A\n0x1446B\t0x5E1D\n0x1446C\t0x5E95\n0x1446D\t0x5EAD\n0x1446E\t0x5EF7\n0x1446F\t0x5F1F\n0x14470\t0x608C\n0x14471\t0x62B5\n0x14472\t0x633A\n0x14473\t0x63D0\n0x14474\t0x68AF\n0x14475\t0x6C40\n0x14476\t0x7887\n0x14477\t0x798E\n0x14478\t0x7A0B\n0x14479\t0x7DE0\n0x1447A\t0x8247\n0x1447B\t0x8A02\n0x1447C\t0x8AE6\n0x1447D\t0x8E44\n0x1447E\t0x9013\n0x14521\t0x90B8\n0x14522\t0x912D\n0x14523\t0x91D8\n0x14524\t0x9F0E\n0x14525\t0x6CE5\n0x14526\t0x6458\n0x14527\t0x64E2\n0x14528\t0x6575\n0x14529\t0x6EF4\n0x1452A\t0x7684\n0x1452B\t0x7B1B\n0x1452C\t0x9069\n0x1452D\t0x93D1\n0x1452E\t0x6EBA\n0x1452F\t0x54F2\n0x14530\t0x5FB9\n0x14531\t0x64A4\n0x14532\t0x8F4D\n0x14533\t0x8FED\n0x14534\t0x9244\n0x14535\t0x5178\n0x14536\t0x586B\n0x14537\t0x5929\n0x14538\t0x5C55\n0x14539\t0x5E97\n0x1453A\t0x6DFB\n0x1453B\t0x7E8F\n0x1453C\t0x751C\n0x1453D\t0x8CBC\n0x1453E\t0x8EE2\n0x1453F\t0x985B\n0x14540\t0x70B9\n0x14541\t0x4F1D\n0x14542\t0x6BBF\n0x14543\t0x6FB1\n0x14544\t0x7530\n0x14545\t0x96FB\n0x14546\t0x514E\n0x14547\t0x5410\n0x14548\t0x5835\n0x14549\t0x5857\n0x1454A\t0x59AC\n0x1454B\t0x5C60\n0x1454C\t0x5F92\n0x1454D\t0x6597\n0x1454E\t0x675C\n0x1454F\t0x6E21\n0x14550\t0x767B\n0x14551\t0x83DF\n0x14552\t0x8CED\n0x14553\t0x9014\n0x14554\t0x90FD\n0x14555\t0x934D\n0x14556\t0x7825\n0x14557\t0x783A\n0x14558\t0x52AA\n0x14559\t0x5EA6\n0x1455A\t0x571F\n0x1455B\t0x5974\n0x1455C\t0x6012\n0x1455D\t0x5012\n0x1455E\t0x515A\n0x1455F\t0x51AC\n0x14560\t0x51CD\n0x14561\t0x5200\n0x14562\t0x5510\n0x14563\t0x5854\n0x14564\t0x5858\n0x14565\t0x5957\n0x14566\t0x5B95\n0x14567\t0x5CF6\n0x14568\t0x5D8B\n0x14569\t0x60BC\n0x1456A\t0x6295\n0x1456B\t0x642D\n0x1456C\t0x6771\n0x1456D\t0x6843\n0x1456E\t0x68BC\n0x1456F\t0x68DF\n0x14570\t0x76D7\n0x14571\t0x6DD8\n0x14572\t0x6E6F\n0x14573\t0x6D9B\n0x14574\t0x706F\n0x14575\t0x71C8\n0x14576\t0x5F53\n0x14577\t0x75D8\n0x14578\t0x7977\n0x14579\t0x7B49\n0x1457A\t0x7B54\n0x1457B\t0x7B52\n0x1457C\t0x7CD6\n0x1457D\t0x7D71\n0x1457E\t0x5230\n0x14621\t0x8463\n0x14622\t0x8569\n0x14623\t0x85E4\n0x14624\t0x8A0E\n0x14625\t0x8B04\n0x14626\t0x8C46\n0x14627\t0x8E0F\n0x14628\t0x9003\n0x14629\t0x900F\n0x1462A\t0x9419\n0x1462B\t0x9676\n0x1462C\t0x982D\n0x1462D\t0x9A30\n0x1462E\t0x95D8\n0x1462F\t0x50CD\n0x14630\t0x52D5\n0x14631\t0x540C\n0x14632\t0x5802\n0x14633\t0x5C0E\n0x14634\t0x61A7\n0x14635\t0x649E\n0x14636\t0x6D1E\n0x14637\t0x77B3\n0x14638\t0x7AE5\n0x14639\t0x80F4\n0x1463A\t0x8404\n0x1463B\t0x9053\n0x1463C\t0x9285\n0x1463D\t0x5CE0\n0x1463E\t0x9D07\n0x1463F\t0x533F\n0x14640\t0x5F97\n0x14641\t0x5FB3\n0x14642\t0x6D9C\n0x14643\t0x7279\n0x14644\t0x7763\n0x14645\t0x79BF\n0x14646\t0x7BE4\n0x14647\t0x6BD2\n0x14648\t0x72EC\n0x14649\t0x8AAD\n0x1464A\t0x6803\n0x1464B\t0x6A61\n0x1464C\t0x51F8\n0x1464D\t0x7A81\n0x1464E\t0x6934\n0x1464F\t0x5C4A\n0x14650\t0x9CF6\n0x14651\t0x82EB\n0x14652\t0x5BC5\n0x14653\t0x9149\n0x14654\t0x701E\n0x14655\t0x5678\n0x14656\t0x5C6F\n0x14657\t0x60C7\n0x14658\t0x6566\n0x14659\t0x6C8C\n0x1465A\t0x8C5A\n0x1465B\t0x9041\n0x1465C\t0x9813\n0x1465D\t0x5451\n0x1465E\t0x66C7\n0x1465F\t0x920D\n0x14660\t0x5948\n0x14661\t0x90A3\n0x14662\t0x5185\n0x14663\t0x4E4D\n0x14664\t0x51EA\n0x14665\t0x8599\n0x14666\t0x8B0E\n0x14667\t0x7058\n0x14668\t0x637A\n0x14669\t0x934B\n0x1466A\t0x6962\n0x1466B\t0x99B4\n0x1466C\t0x7E04\n0x1466D\t0x7577\n0x1466E\t0x5357\n0x1466F\t0x6960\n0x14670\t0x8EDF\n0x14671\t0x96E3\n0x14672\t0x6C5D\n0x14673\t0x4E8C\n0x14674\t0x5C3C\n0x14675\t0x5F10\n0x14676\t0x8FE9\n0x14677\t0x5302\n0x14678\t0x8CD1\n0x14679\t0x8089\n0x1467A\t0x8679\n0x1467B\t0x5EFF\n0x1467C\t0x65E5\n0x1467D\t0x4E73\n0x1467E\t0x5165\n0x14721\t0x5982\n0x14722\t0x5C3F\n0x14723\t0x97EE\n0x14724\t0x4EFB\n0x14725\t0x598A\n0x14726\t0x5FCD\n0x14727\t0x8A8D\n0x14728\t0x6FE1\n0x14729\t0x79B0\n0x1472A\t0x7962\n0x1472B\t0x5BE7\n0x1472C\t0x8471\n0x1472D\t0x732B\n0x1472E\t0x71B1\n0x1472F\t0x5E74\n0x14730\t0x5FF5\n0x14731\t0x637B\n0x14732\t0x649A\n0x14733\t0x71C3\n0x14734\t0x7C98\n0x14735\t0x4E43\n0x14736\t0x5EFC\n0x14737\t0x4E4B\n0x14738\t0x57DC\n0x14739\t0x56A2\n0x1473A\t0x60A9\n0x1473B\t0x6FC3\n0x1473C\t0x7D0D\n0x1473D\t0x80FD\n0x1473E\t0x8133\n0x1473F\t0x81BF\n0x14740\t0x8FB2\n0x14741\t0x8997\n0x14742\t0x86A4\n0x14743\t0x5DF4\n0x14744\t0x628A\n0x14745\t0x64AD\n0x14746\t0x8987\n0x14747\t0x6777\n0x14748\t0x6CE2\n0x14749\t0x6D3E\n0x1474A\t0x7436\n0x1474B\t0x7834\n0x1474C\t0x5A46\n0x1474D\t0x7F75\n0x1474E\t0x82AD\n0x1474F\t0x99AC\n0x14750\t0x4FF3\n0x14751\t0x5EC3\n0x14752\t0x62DD\n0x14753\t0x6392\n0x14754\t0x6557\n0x14755\t0x676F\n0x14756\t0x76C3\n0x14757\t0x724C\n0x14758\t0x80CC\n0x14759\t0x80BA\n0x1475A\t0x8F29\n0x1475B\t0x914D\n0x1475C\t0x500D\n0x1475D\t0x57F9\n0x1475E\t0x5A92\n0x1475F\t0x6885\n0x14760\t0x6973\n0x14761\t0x7164\n0x14762\t0x72FD\n0x14763\t0x8CB7\n0x14764\t0x58F2\n0x14765\t0x8CE0\n0x14766\t0x966A\n0x14767\t0x9019\n0x14768\t0x877F\n0x14769\t0x79E4\n0x1476A\t0x77E7\n0x1476B\t0x8429\n0x1476C\t0x4F2F\n0x1476D\t0x5265\n0x1476E\t0x535A\n0x1476F\t0x62CD\n0x14770\t0x67CF\n0x14771\t0x6CCA\n0x14772\t0x767D\n0x14773\t0x7B94\n0x14774\t0x7C95\n0x14775\t0x8236\n0x14776\t0x8584\n0x14777\t0x8FEB\n0x14778\t0x66DD\n0x14779\t0x6F20\n0x1477A\t0x7206\n0x1477B\t0x7E1B\n0x1477C\t0x83AB\n0x1477D\t0x99C1\n0x1477E\t0x9EA6\n0x14821\t0x51FD\n0x14822\t0x7BB1\n0x14823\t0x7872\n0x14824\t0x7BB8\n0x14825\t0x8087\n0x14826\t0x7B48\n0x14827\t0x6AE8\n0x14828\t0x5E61\n0x14829\t0x808C\n0x1482A\t0x7551\n0x1482B\t0x7560\n0x1482C\t0x516B\n0x1482D\t0x9262\n0x1482E\t0x6E8C\n0x1482F\t0x767A\n0x14830\t0x9197\n0x14831\t0x9AEA\n0x14832\t0x4F10\n0x14833\t0x7F70\n0x14834\t0x629C\n0x14835\t0x7B4F\n0x14836\t0x95A5\n0x14837\t0x9CE9\n0x14838\t0x567A\n0x14839\t0x5859\n0x1483A\t0x86E4\n0x1483B\t0x96BC\n0x1483C\t0x4F34\n0x1483D\t0x5224\n0x1483E\t0x534A\n0x1483F\t0x53CD\n0x14840\t0x53DB\n0x14841\t0x5E06\n0x14842\t0x642C\n0x14843\t0x6591\n0x14844\t0x677F\n0x14845\t0x6C3E\n0x14846\t0x6C4E\n0x14847\t0x7248\n0x14848\t0x72AF\n0x14849\t0x73ED\n0x1484A\t0x7554\n0x1484B\t0x7E41\n0x1484C\t0x822C\n0x1484D\t0x85E9\n0x1484E\t0x8CA9\n0x1484F\t0x7BC4\n0x14850\t0x91C6\n0x14851\t0x7169\n0x14852\t0x9812\n0x14853\t0x98EF\n0x14854\t0x633D\n0x14855\t0x6669\n0x14856\t0x756A\n0x14857\t0x76E4\n0x14858\t0x78D0\n0x14859\t0x8543\n0x1485A\t0x86EE\n0x1485B\t0x532A\n0x1485C\t0x5351\n0x1485D\t0x5426\n0x1485E\t0x5983\n0x1485F\t0x5E87\n0x14860\t0x5F7C\n0x14861\t0x60B2\n0x14862\t0x6249\n0x14863\t0x6279\n0x14864\t0x62AB\n0x14865\t0x6590\n0x14866\t0x6BD4\n0x14867\t0x6CCC\n0x14868\t0x75B2\n0x14869\t0x76AE\n0x1486A\t0x7891\n0x1486B\t0x79D8\n0x1486C\t0x7DCB\n0x1486D\t0x7F77\n0x1486E\t0x80A5\n0x1486F\t0x88AB\n0x14870\t0x8AB9\n0x14871\t0x8CBB\n0x14872\t0x907F\n0x14873\t0x975E\n0x14874\t0x98DB\n0x14875\t0x6A0B\n0x14876\t0x7C38\n0x14877\t0x5099\n0x14878\t0x5C3E\n0x14879\t0x5FAE\n0x1487A\t0x6787\n0x1487B\t0x6BD8\n0x1487C\t0x7435\n0x1487D\t0x7709\n0x1487E\t0x7F8E\n0x14921\t0x9F3B\n0x14922\t0x67CA\n0x14923\t0x7A17\n0x14924\t0x5339\n0x14925\t0x758B\n0x14926\t0x9AED\n0x14927\t0x5F66\n0x14928\t0x819D\n0x14929\t0x83F1\n0x1492A\t0x8098\n0x1492B\t0x5F3C\n0x1492C\t0x5FC5\n0x1492D\t0x7562\n0x1492E\t0x7B46\n0x1492F\t0x903C\n0x14930\t0x6867\n0x14931\t0x59EB\n0x14932\t0x5A9B\n0x14933\t0x7D10\n0x14934\t0x767E\n0x14935\t0x8B2C\n0x14936\t0x4FF5\n0x14937\t0x5F6A\n0x14938\t0x6A19\n0x14939\t0x6C37\n0x1493A\t0x6F02\n0x1493B\t0x74E2\n0x1493C\t0x7968\n0x1493D\t0x8868\n0x1493E\t0x8A55\n0x1493F\t0x8C79\n0x14940\t0x5EDF\n0x14941\t0x63CF\n0x14942\t0x75C5\n0x14943\t0x79D2\n0x14944\t0x82D7\n0x14945\t0x9328\n0x14946\t0x92F2\n0x14947\t0x849C\n0x14948\t0x86ED\n0x14949\t0x9C2D\n0x1494A\t0x54C1\n0x1494B\t0x5F6C\n0x1494C\t0x658C\n0x1494D\t0x6D5C\n0x1494E\t0x7015\n0x1494F\t0x8CA7\n0x14950\t0x8CD3\n0x14951\t0x983B\n0x14952\t0x654F\n0x14953\t0x74F6\n0x14954\t0x4E0D\n0x14955\t0x4ED8\n0x14956\t0x57E0\n0x14957\t0x592B\n0x14958\t0x5A66\n0x14959\t0x5BCC\n0x1495A\t0x51A8\n0x1495B\t0x5E03\n0x1495C\t0x5E9C\n0x1495D\t0x6016\n0x1495E\t0x6276\n0x1495F\t0x6577\n0x14960\t0x65A7\n0x14961\t0x666E\n0x14962\t0x6D6E\n0x14963\t0x7236\n0x14964\t0x7B26\n0x14965\t0x8150\n0x14966\t0x819A\n0x14967\t0x8299\n0x14968\t0x8B5C\n0x14969\t0x8CA0\n0x1496A\t0x8CE6\n0x1496B\t0x8D74\n0x1496C\t0x961C\n0x1496D\t0x9644\n0x1496E\t0x4FAE\n0x1496F\t0x64AB\n0x14970\t0x6B66\n0x14971\t0x821E\n0x14972\t0x8461\n0x14973\t0x856A\n0x14974\t0x90E8\n0x14975\t0x5C01\n0x14976\t0x6953\n0x14977\t0x98A8\n0x14978\t0x847A\n0x14979\t0x8557\n0x1497A\t0x4F0F\n0x1497B\t0x526F\n0x1497C\t0x5FA9\n0x1497D\t0x5E45\n0x1497E\t0x670D\n0x14A21\t0x798F\n0x14A22\t0x8179\n0x14A23\t0x8907\n0x14A24\t0x8986\n0x14A25\t0x6DF5\n0x14A26\t0x5F17\n0x14A27\t0x6255\n0x14A28\t0x6CB8\n0x14A29\t0x4ECF\n0x14A2A\t0x7269\n0x14A2B\t0x9B92\n0x14A2C\t0x5206\n0x14A2D\t0x543B\n0x14A2E\t0x5674\n0x14A2F\t0x58B3\n0x14A30\t0x61A4\n0x14A31\t0x626E\n0x14A32\t0x711A\n0x14A33\t0x596E\n0x14A34\t0x7C89\n0x14A35\t0x7CDE\n0x14A36\t0x7D1B\n0x14A37\t0x96F0\n0x14A38\t0x6587\n0x14A39\t0x805E\n0x14A3A\t0x4E19\n0x14A3B\t0x4F75\n0x14A3C\t0x5175\n0x14A3D\t0x5840\n0x14A3E\t0x5E63\n0x14A3F\t0x5E73\n0x14A40\t0x5F0A\n0x14A41\t0x67C4\n0x14A42\t0x4E26\n0x14A43\t0x853D\n0x14A44\t0x9589\n0x14A45\t0x965B\n0x14A46\t0x7C73\n0x14A47\t0x9801\n0x14A48\t0x50FB\n0x14A49\t0x58C1\n0x14A4A\t0x7656\n0x14A4B\t0x78A7\n0x14A4C\t0x5225\n0x14A4D\t0x77A5\n0x14A4E\t0x8511\n0x14A4F\t0x7B86\n0x14A50\t0x504F\n0x14A51\t0x5909\n0x14A52\t0x7247\n0x14A53\t0x7BC7\n0x14A54\t0x7DE8\n0x14A55\t0x8FBA\n0x14A56\t0x8FD4\n0x14A57\t0x904D\n0x14A58\t0x4FBF\n0x14A59\t0x52C9\n0x14A5A\t0x5A29\n0x14A5B\t0x5F01\n0x14A5C\t0x97AD\n0x14A5D\t0x4FDD\n0x14A5E\t0x8217\n0x14A5F\t0x92EA\n0x14A60\t0x5703\n0x14A61\t0x6355\n0x14A62\t0x6B69\n0x14A63\t0x752B\n0x14A64\t0x88DC\n0x14A65\t0x8F14\n0x14A66\t0x7A42\n0x14A67\t0x52DF\n0x14A68\t0x5893\n0x14A69\t0x6155\n0x14A6A\t0x620A\n0x14A6B\t0x66AE\n0x14A6C\t0x6BCD\n0x14A6D\t0x7C3F\n0x14A6E\t0x83E9\n0x14A6F\t0x5023\n0x14A70\t0x4FF8\n0x14A71\t0x5305\n0x14A72\t0x5446\n0x14A73\t0x5831\n0x14A74\t0x5949\n0x14A75\t0x5B9D\n0x14A76\t0x5CF0\n0x14A77\t0x5CEF\n0x14A78\t0x5D29\n0x14A79\t0x5E96\n0x14A7A\t0x62B1\n0x14A7B\t0x6367\n0x14A7C\t0x653E\n0x14A7D\t0x65B9\n0x14A7E\t0x670B\n0x14B21\t0x6CD5\n0x14B22\t0x6CE1\n0x14B23\t0x70F9\n0x14B24\t0x7832\n0x14B25\t0x7E2B\n0x14B26\t0x80DE\n0x14B27\t0x82B3\n0x14B28\t0x840C\n0x14B29\t0x84EC\n0x14B2A\t0x8702\n0x14B2B\t0x8912\n0x14B2C\t0x8A2A\n0x14B2D\t0x8C4A\n0x14B2E\t0x90A6\n0x14B2F\t0x92D2\n0x14B30\t0x98FD\n0x14B31\t0x9CF3\n0x14B32\t0x9D6C\n0x14B33\t0x4E4F\n0x14B34\t0x4EA1\n0x14B35\t0x508D\n0x14B36\t0x5256\n0x14B37\t0x574A\n0x14B38\t0x59A8\n0x14B39\t0x5E3D\n0x14B3A\t0x5FD8\n0x14B3B\t0x5FD9\n0x14B3C\t0x623F\n0x14B3D\t0x66B4\n0x14B3E\t0x671B\n0x14B3F\t0x67D0\n0x14B40\t0x68D2\n0x14B41\t0x5192\n0x14B42\t0x7D21\n0x14B43\t0x80AA\n0x14B44\t0x81A8\n0x14B45\t0x8B00\n0x14B46\t0x8C8C\n0x14B47\t0x8CBF\n0x14B48\t0x927E\n0x14B49\t0x9632\n0x14B4A\t0x5420\n0x14B4B\t0x982C\n0x14B4C\t0x5317\n0x14B4D\t0x50D5\n0x14B4E\t0x535C\n0x14B4F\t0x58A8\n0x14B50\t0x64B2\n0x14B51\t0x6734\n0x14B52\t0x7267\n0x14B53\t0x7766\n0x14B54\t0x7A46\n0x14B55\t0x91E6\n0x14B56\t0x52C3\n0x14B57\t0x6CA1\n0x14B58\t0x6B86\n0x14B59\t0x5800\n0x14B5A\t0x5E4C\n0x14B5B\t0x5954\n0x14B5C\t0x672C\n0x14B5D\t0x7FFB\n0x14B5E\t0x51E1\n0x14B5F\t0x76C6\n0x14B60\t0x6469\n0x14B61\t0x78E8\n0x14B62\t0x9B54\n0x14B63\t0x9EBB\n0x14B64\t0x57CB\n0x14B65\t0x59B9\n0x14B66\t0x6627\n0x14B67\t0x679A\n0x14B68\t0x6BCE\n0x14B69\t0x54E9\n0x14B6A\t0x69D9\n0x14B6B\t0x5E55\n0x14B6C\t0x819C\n0x14B6D\t0x6795\n0x14B6E\t0x9BAA\n0x14B6F\t0x67FE\n0x14B70\t0x9C52\n0x14B71\t0x685D\n0x14B72\t0x4EA6\n0x14B73\t0x4FE3\n0x14B74\t0x53C8\n0x14B75\t0x62B9\n0x14B76\t0x672B\n0x14B77\t0x6CAB\n0x14B78\t0x8FC4\n0x14B79\t0x4FAD\n0x14B7A\t0x7E6D\n0x14B7B\t0x9EBF\n0x14B7C\t0x4E07\n0x14B7D\t0x6162\n0x14B7E\t0x6E80\n0x14C21\t0x6F2B\n0x14C22\t0x8513\n0x14C23\t0x5473\n0x14C24\t0x672A\n0x14C25\t0x9B45\n0x14C26\t0x5DF3\n0x14C27\t0x7B95\n0x14C28\t0x5CAC\n0x14C29\t0x5BC6\n0x14C2A\t0x871C\n0x14C2B\t0x6E4A\n0x14C2C\t0x84D1\n0x14C2D\t0x7A14\n0x14C2E\t0x8108\n0x14C2F\t0x5999\n0x14C30\t0x7C8D\n0x14C31\t0x6C11\n0x14C32\t0x7720\n0x14C33\t0x52D9\n0x14C34\t0x5922\n0x14C35\t0x7121\n0x14C36\t0x725F\n0x14C37\t0x77DB\n0x14C38\t0x9727\n0x14C39\t0x9D61\n0x14C3A\t0x690B\n0x14C3B\t0x5A7F\n0x14C3C\t0x5A18\n0x14C3D\t0x51A5\n0x14C3E\t0x540D\n0x14C3F\t0x547D\n0x14C40\t0x660E\n0x14C41\t0x76DF\n0x14C42\t0x8FF7\n0x14C43\t0x9298\n0x14C44\t0x9CF4\n0x14C45\t0x59EA\n0x14C46\t0x725D\n0x14C47\t0x6EC5\n0x14C48\t0x514D\n0x14C49\t0x68C9\n0x14C4A\t0x7DBF\n0x14C4B\t0x7DEC\n0x14C4C\t0x9762\n0x14C4D\t0x9EBA\n0x14C4E\t0x6478\n0x14C4F\t0x6A21\n0x14C50\t0x8302\n0x14C51\t0x5984\n0x14C52\t0x5B5F\n0x14C53\t0x6BDB\n0x14C54\t0x731B\n0x14C55\t0x76F2\n0x14C56\t0x7DB2\n0x14C57\t0x8017\n0x14C58\t0x8499\n0x14C59\t0x5132\n0x14C5A\t0x6728\n0x14C5B\t0x9ED9\n0x14C5C\t0x76EE\n0x14C5D\t0x6762\n0x14C5E\t0x52FF\n0x14C5F\t0x9905\n0x14C60\t0x5C24\n0x14C61\t0x623B\n0x14C62\t0x7C7E\n0x14C63\t0x8CB0\n0x14C64\t0x554F\n0x14C65\t0x60B6\n0x14C66\t0x7D0B\n0x14C67\t0x9580\n0x14C68\t0x5301\n0x14C69\t0x4E5F\n0x14C6A\t0x51B6\n0x14C6B\t0x591C\n0x14C6C\t0x723A\n0x14C6D\t0x8036\n0x14C6E\t0x91CE\n0x14C6F\t0x5F25\n0x14C70\t0x77E2\n0x14C71\t0x5384\n0x14C72\t0x5F79\n0x14C73\t0x7D04\n0x14C74\t0x85AC\n0x14C75\t0x8A33\n0x14C76\t0x8E8D\n0x14C77\t0x9756\n0x14C78\t0x67F3\n0x14C79\t0x85AE\n0x14C7A\t0x9453\n0x14C7B\t0x6109\n0x14C7C\t0x6108\n0x14C7D\t0x6CB9\n0x14C7E\t0x7652\n0x14D21\t0x8AED\n0x14D22\t0x8F38\n0x14D23\t0x552F\n0x14D24\t0x4F51\n0x14D25\t0x512A\n0x14D26\t0x52C7\n0x14D27\t0x53CB\n0x14D28\t0x5BA5\n0x14D29\t0x5E7D\n0x14D2A\t0x60A0\n0x14D2B\t0x6182\n0x14D2C\t0x63D6\n0x14D2D\t0x6709\n0x14D2E\t0x67DA\n0x14D2F\t0x6E67\n0x14D30\t0x6D8C\n0x14D31\t0x7336\n0x14D32\t0x7337\n0x14D33\t0x7531\n0x14D34\t0x7950\n0x14D35\t0x88D5\n0x14D36\t0x8A98\n0x14D37\t0x904A\n0x14D38\t0x9091\n0x14D39\t0x90F5\n0x14D3A\t0x96C4\n0x14D3B\t0x878D\n0x14D3C\t0x5915\n0x14D3D\t0x4E88\n0x14D3E\t0x4F59\n0x14D3F\t0x4E0E\n0x14D40\t0x8A89\n0x14D41\t0x8F3F\n0x14D42\t0x9810\n0x14D43\t0x50AD\n0x14D44\t0x5E7C\n0x14D45\t0x5996\n0x14D46\t0x5BB9\n0x14D47\t0x5EB8\n0x14D48\t0x63DA\n0x14D49\t0x63FA\n0x14D4A\t0x64C1\n0x14D4B\t0x66DC\n0x14D4C\t0x694A\n0x14D4D\t0x69D8\n0x14D4E\t0x6D0B\n0x14D4F\t0x6EB6\n0x14D50\t0x7194\n0x14D51\t0x7528\n0x14D52\t0x7AAF\n0x14D53\t0x7F8A\n0x14D54\t0x8000\n0x14D55\t0x8449\n0x14D56\t0x84C9\n0x14D57\t0x8981\n0x14D58\t0x8B21\n0x14D59\t0x8E0A\n0x14D5A\t0x9065\n0x14D5B\t0x967D\n0x14D5C\t0x990A\n0x14D5D\t0x617E\n0x14D5E\t0x6291\n0x14D5F\t0x6B32\n0x14D60\t0x6C83\n0x14D61\t0x6D74\n0x14D62\t0x7FCC\n0x14D63\t0x7FFC\n0x14D64\t0x6DC0\n0x14D65\t0x7F85\n0x14D66\t0x87BA\n0x14D67\t0x88F8\n0x14D68\t0x6765\n0x14D69\t0x83B1\n0x14D6A\t0x983C\n0x14D6B\t0x96F7\n0x14D6C\t0x6D1B\n0x14D6D\t0x7D61\n0x14D6E\t0x843D\n0x14D6F\t0x916A\n0x14D70\t0x4E71\n0x14D71\t0x5375\n0x14D72\t0x5D50\n0x14D73\t0x6B04\n0x14D74\t0x6FEB\n0x14D75\t0x85CD\n0x14D76\t0x862D\n0x14D77\t0x89A7\n0x14D78\t0x5229\n0x14D79\t0x540F\n0x14D7A\t0x5C65\n0x14D7B\t0x674E\n0x14D7C\t0x68A8\n0x14D7D\t0x7406\n0x14D7E\t0x7483\n0x14E21\t0x75E2\n0x14E22\t0x88CF\n0x14E23\t0x88E1\n0x14E24\t0x91CC\n0x14E25\t0x96E2\n0x14E26\t0x9678\n0x14E27\t0x5F8B\n0x14E28\t0x7387\n0x14E29\t0x7ACB\n0x14E2A\t0x844E\n0x14E2B\t0x63A0\n0x14E2C\t0x7565\n0x14E2D\t0x5289\n0x14E2E\t0x6D41\n0x14E2F\t0x6E9C\n0x14E30\t0x7409\n0x14E31\t0x7559\n0x14E32\t0x786B\n0x14E33\t0x7C92\n0x14E34\t0x9686\n0x14E35\t0x7ADC\n0x14E36\t0x9F8D\n0x14E37\t0x4FB6\n0x14E38\t0x616E\n0x14E39\t0x65C5\n0x14E3A\t0x865C\n0x14E3B\t0x4E86\n0x14E3C\t0x4EAE\n0x14E3D\t0x50DA\n0x14E3E\t0x4E21\n0x14E3F\t0x51CC\n0x14E40\t0x5BEE\n0x14E41\t0x6599\n0x14E42\t0x6881\n0x14E43\t0x6DBC\n0x14E44\t0x731F\n0x14E45\t0x7642\n0x14E46\t0x77AD\n0x14E47\t0x7A1C\n0x14E48\t0x7CE7\n0x14E49\t0x826F\n0x14E4A\t0x8AD2\n0x14E4B\t0x907C\n0x14E4C\t0x91CF\n0x14E4D\t0x9675\n0x14E4E\t0x9818\n0x14E4F\t0x529B\n0x14E50\t0x7DD1\n0x14E51\t0x502B\n0x14E52\t0x5398\n0x14E53\t0x6797\n0x14E54\t0x6DCB\n0x14E55\t0x71D0\n0x14E56\t0x7433\n0x14E57\t0x81E8\n0x14E58\t0x8F2A\n0x14E59\t0x96A3\n0x14E5A\t0x9C57\n0x14E5B\t0x9E9F\n0x14E5C\t0x7460\n0x14E5D\t0x5841\n0x14E5E\t0x6D99\n0x14E5F\t0x7D2F\n0x14E60\t0x985E\n0x14E61\t0x4EE4\n0x14E62\t0x4F36\n0x14E63\t0x4F8B\n0x14E64\t0x51B7\n0x14E65\t0x52B1\n0x14E66\t0x5DBA\n0x14E67\t0x601C\n0x14E68\t0x73B2\n0x14E69\t0x793C\n0x14E6A\t0x82D3\n0x14E6B\t0x9234\n0x14E6C\t0x96B7\n0x14E6D\t0x96F6\n0x14E6E\t0x970A\n0x14E6F\t0x9E97\n0x14E70\t0x9F62\n0x14E71\t0x66A6\n0x14E72\t0x6B74\n0x14E73\t0x5217\n0x14E74\t0x52A3\n0x14E75\t0x70C8\n0x14E76\t0x88C2\n0x14E77\t0x5EC9\n0x14E78\t0x604B\n0x14E79\t0x6190\n0x14E7A\t0x6F23\n0x14E7B\t0x7149\n0x14E7C\t0x7C3E\n0x14E7D\t0x7DF4\n0x14E7E\t0x806F\n0x14F21\t0x84EE\n0x14F22\t0x9023\n0x14F23\t0x932C\n0x14F24\t0x5442\n0x14F25\t0x9B6F\n0x14F26\t0x6AD3\n0x14F27\t0x7089\n0x14F28\t0x8CC2\n0x14F29\t0x8DEF\n0x14F2A\t0x9732\n0x14F2B\t0x52B4\n0x14F2C\t0x5A41\n0x14F2D\t0x5ECA\n0x14F2E\t0x5F04\n0x14F2F\t0x6717\n0x14F30\t0x697C\n0x14F31\t0x6994\n0x14F32\t0x6D6A\n0x14F33\t0x6F0F\n0x14F34\t0x7262\n0x14F35\t0x72FC\n0x14F36\t0x7BED\n0x14F37\t0x8001\n0x14F38\t0x807E\n0x14F39\t0x874B\n0x14F3A\t0x90CE\n0x14F3B\t0x516D\n0x14F3C\t0x9E93\n0x14F3D\t0x7984\n0x14F3E\t0x808B\n0x14F3F\t0x9332\n0x14F40\t0x8AD6\n0x14F41\t0x502D\n0x14F42\t0x548C\n0x14F43\t0x8A71\n0x14F44\t0x6B6A\n0x14F45\t0x8CC4\n0x14F46\t0x8107\n0x14F47\t0x60D1\n0x14F48\t0x67A0\n0x14F49\t0x9DF2\n0x14F4A\t0x4E99\n0x14F4B\t0x4E98\n0x14F4C\t0x9C10\n0x14F4D\t0x8A6B\n0x14F4E\t0x85C1\n0x14F4F\t0x8568\n0x14F50\t0x6900\n0x14F51\t0x6E7E\n0x14F52\t0x7897\n0x14F53\t0x8155\n0x14F54\t0x20B9F\n0x14F55\t0x5B41\n0x14F56\t0x5B56\n0x14F57\t0x5B7D\n0x14F58\t0x5B93\n0x14F59\t0x5BD8\n0x14F5A\t0x5BEC\n0x14F5B\t0x5C12\n0x14F5C\t0x5C1E\n0x14F5D\t0x5C23\n0x14F5E\t0x5C2B\n0x14F5F\t0x378D\n0x14F60\t0x5C62\n0x14F61\t0xFA3B\n0x14F62\t0xFA3C\n0x14F63\t0x216B4\n0x14F64\t0x5C7A\n0x14F65\t0x5C8F\n0x14F66\t0x5C9F\n0x14F67\t0x5CA3\n0x14F68\t0x5CAA\n0x14F69\t0x5CBA\n0x14F6A\t0x5CCB\n0x14F6B\t0x5CD0\n0x14F6C\t0x5CD2\n0x14F6D\t0x5CF4\n0x14F6E\t0x21E34\n0x14F6F\t0x37E2\n0x14F70\t0x5D0D\n0x14F71\t0x5D27\n0x14F72\t0xFA11\n0x14F73\t0x5D46\n0x14F74\t0x5D47\n0x14F75\t0x5D53\n0x14F76\t0x5D4A\n0x14F77\t0x5D6D\n0x14F78\t0x5D81\n0x14F79\t0x5DA0\n0x14F7A\t0x5DA4\n0x14F7B\t0x5DA7\n0x14F7C\t0x5DB8\n0x14F7D\t0x5DCB\n0x14F7E\t0x541E\n0x15021\t0x5F0C\n0x15022\t0x4E10\n0x15023\t0x4E15\n0x15024\t0x4E2A\n0x15025\t0x4E31\n0x15026\t0x4E36\n0x15027\t0x4E3C\n0x15028\t0x4E3F\n0x15029\t0x4E42\n0x1502A\t0x4E56\n0x1502B\t0x4E58\n0x1502C\t0x4E82\n0x1502D\t0x4E85\n0x1502E\t0x8C6B\n0x1502F\t0x4E8A\n0x15030\t0x8212\n0x15031\t0x5F0D\n0x15032\t0x4E8E\n0x15033\t0x4E9E\n0x15034\t0x4E9F\n0x15035\t0x4EA0\n0x15036\t0x4EA2\n0x15037\t0x4EB0\n0x15038\t0x4EB3\n0x15039\t0x4EB6\n0x1503A\t0x4ECE\n0x1503B\t0x4ECD\n0x1503C\t0x4EC4\n0x1503D\t0x4EC6\n0x1503E\t0x4EC2\n0x1503F\t0x4ED7\n0x15040\t0x4EDE\n0x15041\t0x4EED\n0x15042\t0x4EDF\n0x15043\t0x4EF7\n0x15044\t0x4F09\n0x15045\t0x4F5A\n0x15046\t0x4F30\n0x15047\t0x4F5B\n0x15048\t0x4F5D\n0x15049\t0x4F57\n0x1504A\t0x4F47\n0x1504B\t0x4F76\n0x1504C\t0x4F88\n0x1504D\t0x4F8F\n0x1504E\t0x4F98\n0x1504F\t0x4F7B\n0x15050\t0x4F69\n0x15051\t0x4F70\n0x15052\t0x4F91\n0x15053\t0x4F6F\n0x15054\t0x4F86\n0x15055\t0x4F96\n0x15056\t0x5118\n0x15057\t0x4FD4\n0x15058\t0x4FDF\n0x15059\t0x4FCE\n0x1505A\t0x4FD8\n0x1505B\t0x4FDB\n0x1505C\t0x4FD1\n0x1505D\t0x4FDA\n0x1505E\t0x4FD0\n0x1505F\t0x4FE4\n0x15060\t0x4FE5\n0x15061\t0x501A\n0x15062\t0x5028\n0x15063\t0x5014\n0x15064\t0x502A\n0x15065\t0x5025\n0x15066\t0x5005\n0x15067\t0x4F1C\n0x15068\t0x4FF6\n0x15069\t0x5021\n0x1506A\t0x5029\n0x1506B\t0x502C\n0x1506C\t0x4FFE\n0x1506D\t0x4FEF\n0x1506E\t0x5011\n0x1506F\t0x5006\n0x15070\t0x5043\n0x15071\t0x5047\n0x15072\t0x6703\n0x15073\t0x5055\n0x15074\t0x5050\n0x15075\t0x5048\n0x15076\t0x505A\n0x15077\t0x5056\n0x15078\t0x506C\n0x15079\t0x5078\n0x1507A\t0x5080\n0x1507B\t0x509A\n0x1507C\t0x5085\n0x1507D\t0x50B4\n0x1507E\t0x50B2\n0x15121\t0x50C9\n0x15122\t0x50CA\n0x15123\t0x50B3\n0x15124\t0x50C2\n0x15125\t0x50D6\n0x15126\t0x50DE\n0x15127\t0x50E5\n0x15128\t0x50ED\n0x15129\t0x50E3\n0x1512A\t0x50EE\n0x1512B\t0x50F9\n0x1512C\t0x50F5\n0x1512D\t0x5109\n0x1512E\t0x5101\n0x1512F\t0x5102\n0x15130\t0x5116\n0x15131\t0x5115\n0x15132\t0x5114\n0x15133\t0x511A\n0x15134\t0x5121\n0x15135\t0x513A\n0x15136\t0x5137\n0x15137\t0x513C\n0x15138\t0x513B\n0x15139\t0x513F\n0x1513A\t0x5140\n0x1513B\t0x5152\n0x1513C\t0x514C\n0x1513D\t0x5154\n0x1513E\t0x5162\n0x1513F\t0x7AF8\n0x15140\t0x5169\n0x15141\t0x516A\n0x15142\t0x516E\n0x15143\t0x5180\n0x15144\t0x5182\n0x15145\t0x56D8\n0x15146\t0x518C\n0x15147\t0x5189\n0x15148\t0x518F\n0x15149\t0x5191\n0x1514A\t0x5193\n0x1514B\t0x5195\n0x1514C\t0x5196\n0x1514D\t0x51A4\n0x1514E\t0x51A6\n0x1514F\t0x51A2\n0x15150\t0x51A9\n0x15151\t0x51AA\n0x15152\t0x51AB\n0x15153\t0x51B3\n0x15154\t0x51B1\n0x15155\t0x51B2\n0x15156\t0x51B0\n0x15157\t0x51B5\n0x15158\t0x51BD\n0x15159\t0x51C5\n0x1515A\t0x51C9\n0x1515B\t0x51DB\n0x1515C\t0x51E0\n0x1515D\t0x8655\n0x1515E\t0x51E9\n0x1515F\t0x51ED\n0x15160\t0x51F0\n0x15161\t0x51F5\n0x15162\t0x51FE\n0x15163\t0x5204\n0x15164\t0x520B\n0x15165\t0x5214\n0x15166\t0x520E\n0x15167\t0x5227\n0x15168\t0x522A\n0x15169\t0x522E\n0x1516A\t0x5233\n0x1516B\t0x5239\n0x1516C\t0x524F\n0x1516D\t0x5244\n0x1516E\t0x524B\n0x1516F\t0x524C\n0x15170\t0x525E\n0x15171\t0x5254\n0x15172\t0x526A\n0x15173\t0x5274\n0x15174\t0x5269\n0x15175\t0x5273\n0x15176\t0x527F\n0x15177\t0x527D\n0x15178\t0x528D\n0x15179\t0x5294\n0x1517A\t0x5292\n0x1517B\t0x5271\n0x1517C\t0x5288\n0x1517D\t0x5291\n0x1517E\t0x8FA8\n0x15221\t0x8FA7\n0x15222\t0x52AC\n0x15223\t0x52AD\n0x15224\t0x52BC\n0x15225\t0x52B5\n0x15226\t0x52C1\n0x15227\t0x52CD\n0x15228\t0x52D7\n0x15229\t0x52DE\n0x1522A\t0x52E3\n0x1522B\t0x52E6\n0x1522C\t0x98ED\n0x1522D\t0x52E0\n0x1522E\t0x52F3\n0x1522F\t0x52F5\n0x15230\t0x52F8\n0x15231\t0x52F9\n0x15232\t0x5306\n0x15233\t0x5308\n0x15234\t0x7538\n0x15235\t0x530D\n0x15236\t0x5310\n0x15237\t0x530F\n0x15238\t0x5315\n0x15239\t0x531A\n0x1523A\t0x5323\n0x1523B\t0x532F\n0x1523C\t0x5331\n0x1523D\t0x5333\n0x1523E\t0x5338\n0x1523F\t0x5340\n0x15240\t0x5346\n0x15241\t0x5345\n0x15242\t0x4E17\n0x15243\t0x5349\n0x15244\t0x534D\n0x15245\t0x51D6\n0x15246\t0x535E\n0x15247\t0x5369\n0x15248\t0x536E\n0x15249\t0x5918\n0x1524A\t0x537B\n0x1524B\t0x5377\n0x1524C\t0x5382\n0x1524D\t0x5396\n0x1524E\t0x53A0\n0x1524F\t0x53A6\n0x15250\t0x53A5\n0x15251\t0x53AE\n0x15252\t0x53B0\n0x15253\t0x53B6\n0x15254\t0x53C3\n0x15255\t0x7C12\n0x15256\t0x96D9\n0x15257\t0x53DF\n0x15258\t0x66FC\n0x15259\t0x71EE\n0x1525A\t0x53EE\n0x1525B\t0x53E8\n0x1525C\t0x53ED\n0x1525D\t0x53FA\n0x1525E\t0x5401\n0x1525F\t0x543D\n0x15260\t0x5440\n0x15261\t0x542C\n0x15262\t0x542D\n0x15263\t0x543C\n0x15264\t0x542E\n0x15265\t0x5436\n0x15266\t0x5429\n0x15267\t0x541D\n0x15268\t0x544E\n0x15269\t0x548F\n0x1526A\t0x5475\n0x1526B\t0x548E\n0x1526C\t0x545F\n0x1526D\t0x5471\n0x1526E\t0x5477\n0x1526F\t0x5470\n0x15270\t0x5492\n0x15271\t0x547B\n0x15272\t0x5480\n0x15273\t0x5476\n0x15274\t0x5484\n0x15275\t0x5490\n0x15276\t0x5486\n0x15277\t0x54C7\n0x15278\t0x54A2\n0x15279\t0x54B8\n0x1527A\t0x54A5\n0x1527B\t0x54AC\n0x1527C\t0x54C4\n0x1527D\t0x54C8\n0x1527E\t0x54A8\n0x15321\t0x54AB\n0x15322\t0x54C2\n0x15323\t0x54A4\n0x15324\t0x54BE\n0x15325\t0x54BC\n0x15326\t0x54D8\n0x15327\t0x54E5\n0x15328\t0x54E6\n0x15329\t0x550F\n0x1532A\t0x5514\n0x1532B\t0x54FD\n0x1532C\t0x54EE\n0x1532D\t0x54ED\n0x1532E\t0x54FA\n0x1532F\t0x54E2\n0x15330\t0x5539\n0x15331\t0x5540\n0x15332\t0x5563\n0x15333\t0x554C\n0x15334\t0x552E\n0x15335\t0x555C\n0x15336\t0x5545\n0x15337\t0x5556\n0x15338\t0x5557\n0x15339\t0x5538\n0x1533A\t0x5533\n0x1533B\t0x555D\n0x1533C\t0x5599\n0x1533D\t0x5580\n0x1533E\t0x54AF\n0x1533F\t0x558A\n0x15340\t0x559F\n0x15341\t0x557B\n0x15342\t0x557E\n0x15343\t0x5598\n0x15344\t0x559E\n0x15345\t0x55AE\n0x15346\t0x557C\n0x15347\t0x5583\n0x15348\t0x55A9\n0x15349\t0x5587\n0x1534A\t0x55A8\n0x1534B\t0x55DA\n0x1534C\t0x55C5\n0x1534D\t0x55DF\n0x1534E\t0x55C4\n0x1534F\t0x55DC\n0x15350\t0x55E4\n0x15351\t0x55D4\n0x15352\t0x5614\n0x15353\t0x55F7\n0x15354\t0x5616\n0x15355\t0x55FE\n0x15356\t0x55FD\n0x15357\t0x561B\n0x15358\t0x55F9\n0x15359\t0x564E\n0x1535A\t0x5650\n0x1535B\t0x71DF\n0x1535C\t0x5634\n0x1535D\t0x5636\n0x1535E\t0x5632\n0x1535F\t0x5638\n0x15360\t0x566B\n0x15361\t0x5664\n0x15362\t0x562F\n0x15363\t0x566C\n0x15364\t0x566A\n0x15365\t0x5686\n0x15366\t0x5680\n0x15367\t0x568A\n0x15368\t0x56A0\n0x15369\t0x5694\n0x1536A\t0x568F\n0x1536B\t0x56A5\n0x1536C\t0x56AE\n0x1536D\t0x56B6\n0x1536E\t0x56B4\n0x1536F\t0x56C2\n0x15370\t0x56BC\n0x15371\t0x56C1\n0x15372\t0x56C3\n0x15373\t0x56C0\n0x15374\t0x56C8\n0x15375\t0x56CE\n0x15376\t0x56D1\n0x15377\t0x56D3\n0x15378\t0x56D7\n0x15379\t0x56EE\n0x1537A\t0x56F9\n0x1537B\t0x5700\n0x1537C\t0x56FF\n0x1537D\t0x5704\n0x1537E\t0x5709\n0x15421\t0x5708\n0x15422\t0x570B\n0x15423\t0x570D\n0x15424\t0x5713\n0x15425\t0x5718\n0x15426\t0x5716\n0x15427\t0x55C7\n0x15428\t0x571C\n0x15429\t0x5726\n0x1542A\t0x5737\n0x1542B\t0x5738\n0x1542C\t0x574E\n0x1542D\t0x573B\n0x1542E\t0x5740\n0x1542F\t0x574F\n0x15430\t0x5769\n0x15431\t0x57C0\n0x15432\t0x5788\n0x15433\t0x5761\n0x15434\t0x577F\n0x15435\t0x5789\n0x15436\t0x5793\n0x15437\t0x57A0\n0x15438\t0x57B3\n0x15439\t0x57A4\n0x1543A\t0x57AA\n0x1543B\t0x57B0\n0x1543C\t0x57C3\n0x1543D\t0x57C6\n0x1543E\t0x57D4\n0x1543F\t0x57D2\n0x15440\t0x57D3\n0x15441\t0x580A\n0x15442\t0x57D6\n0x15443\t0x57E3\n0x15444\t0x580B\n0x15445\t0x5819\n0x15446\t0x581D\n0x15447\t0x5872\n0x15448\t0x5821\n0x15449\t0x5862\n0x1544A\t0x584B\n0x1544B\t0x5870\n0x1544C\t0x6BC0\n0x1544D\t0x5852\n0x1544E\t0x583D\n0x1544F\t0x5879\n0x15450\t0x5885\n0x15451\t0x58B9\n0x15452\t0x589F\n0x15453\t0x58AB\n0x15454\t0x58BA\n0x15455\t0x58DE\n0x15456\t0x58BB\n0x15457\t0x58B8\n0x15458\t0x58AE\n0x15459\t0x58C5\n0x1545A\t0x58D3\n0x1545B\t0x58D1\n0x1545C\t0x58D7\n0x1545D\t0x58D9\n0x1545E\t0x58D8\n0x1545F\t0x58E5\n0x15460\t0x58DC\n0x15461\t0x58E4\n0x15462\t0x58DF\n0x15463\t0x58EF\n0x15464\t0x58FA\n0x15465\t0x58F9\n0x15466\t0x58FB\n0x15467\t0x58FC\n0x15468\t0x58FD\n0x15469\t0x5902\n0x1546A\t0x590A\n0x1546B\t0x5910\n0x1546C\t0x591B\n0x1546D\t0x68A6\n0x1546E\t0x5925\n0x1546F\t0x592C\n0x15470\t0x592D\n0x15471\t0x5932\n0x15472\t0x5938\n0x15473\t0x593E\n0x15474\t0x7AD2\n0x15475\t0x5955\n0x15476\t0x5950\n0x15477\t0x594E\n0x15478\t0x595A\n0x15479\t0x5958\n0x1547A\t0x5962\n0x1547B\t0x5960\n0x1547C\t0x5967\n0x1547D\t0x596C\n0x1547E\t0x5969\n0x15521\t0x5978\n0x15522\t0x5981\n0x15523\t0x599D\n0x15524\t0x4F5E\n0x15525\t0x4FAB\n0x15526\t0x59A3\n0x15527\t0x59B2\n0x15528\t0x59C6\n0x15529\t0x59E8\n0x1552A\t0x59DC\n0x1552B\t0x598D\n0x1552C\t0x59D9\n0x1552D\t0x59DA\n0x1552E\t0x5A25\n0x1552F\t0x5A1F\n0x15530\t0x5A11\n0x15531\t0x5A1C\n0x15532\t0x5A09\n0x15533\t0x5A1A\n0x15534\t0x5A40\n0x15535\t0x5A6C\n0x15536\t0x5A49\n0x15537\t0x5A35\n0x15538\t0x5A36\n0x15539\t0x5A62\n0x1553A\t0x5A6A\n0x1553B\t0x5A9A\n0x1553C\t0x5ABC\n0x1553D\t0x5ABE\n0x1553E\t0x5ACB\n0x1553F\t0x5AC2\n0x15540\t0x5ABD\n0x15541\t0x5AE3\n0x15542\t0x5AD7\n0x15543\t0x5AE6\n0x15544\t0x5AE9\n0x15545\t0x5AD6\n0x15546\t0x5AFA\n0x15547\t0x5AFB\n0x15548\t0x5B0C\n0x15549\t0x5B0B\n0x1554A\t0x5B16\n0x1554B\t0x5B32\n0x1554C\t0x5AD0\n0x1554D\t0x5B2A\n0x1554E\t0x5B36\n0x1554F\t0x5B3E\n0x15550\t0x5B43\n0x15551\t0x5B45\n0x15552\t0x5B40\n0x15553\t0x5B51\n0x15554\t0x5B55\n0x15555\t0x5B5A\n0x15556\t0x5B5B\n0x15557\t0x5B65\n0x15558\t0x5B69\n0x15559\t0x5B70\n0x1555A\t0x5B73\n0x1555B\t0x5B75\n0x1555C\t0x5B78\n0x1555D\t0x6588\n0x1555E\t0x5B7A\n0x1555F\t0x5B80\n0x15560\t0x5B83\n0x15561\t0x5BA6\n0x15562\t0x5BB8\n0x15563\t0x5BC3\n0x15564\t0x5BC7\n0x15565\t0x5BC9\n0x15566\t0x5BD4\n0x15567\t0x5BD0\n0x15568\t0x5BE4\n0x15569\t0x5BE6\n0x1556A\t0x5BE2\n0x1556B\t0x5BDE\n0x1556C\t0x5BE5\n0x1556D\t0x5BEB\n0x1556E\t0x5BF0\n0x1556F\t0x5BF6\n0x15570\t0x5BF3\n0x15571\t0x5C05\n0x15572\t0x5C07\n0x15573\t0x5C08\n0x15574\t0x5C0D\n0x15575\t0x5C13\n0x15576\t0x5C20\n0x15577\t0x5C22\n0x15578\t0x5C28\n0x15579\t0x5C38\n0x1557A\t0x5C39\n0x1557B\t0x5C41\n0x1557C\t0x5C46\n0x1557D\t0x5C4E\n0x1557E\t0x5C53\n0x15621\t0x5C50\n0x15622\t0x5C4F\n0x15623\t0x5B71\n0x15624\t0x5C6C\n0x15625\t0x5C6E\n0x15626\t0x4E62\n0x15627\t0x5C76\n0x15628\t0x5C79\n0x15629\t0x5C8C\n0x1562A\t0x5C91\n0x1562B\t0x5C94\n0x1562C\t0x599B\n0x1562D\t0x5CAB\n0x1562E\t0x5CBB\n0x1562F\t0x5CB6\n0x15630\t0x5CBC\n0x15631\t0x5CB7\n0x15632\t0x5CC5\n0x15633\t0x5CBE\n0x15634\t0x5CC7\n0x15635\t0x5CD9\n0x15636\t0x5CE9\n0x15637\t0x5CFD\n0x15638\t0x5CFA\n0x15639\t0x5CED\n0x1563A\t0x5D8C\n0x1563B\t0x5CEA\n0x1563C\t0x5D0B\n0x1563D\t0x5D15\n0x1563E\t0x5D17\n0x1563F\t0x5D5C\n0x15640\t0x5D1F\n0x15641\t0x5D1B\n0x15642\t0x5D11\n0x15643\t0x5D14\n0x15644\t0x5D22\n0x15645\t0x5D1A\n0x15646\t0x5D19\n0x15647\t0x5D18\n0x15648\t0x5D4C\n0x15649\t0x5D52\n0x1564A\t0x5D4E\n0x1564B\t0x5D4B\n0x1564C\t0x5D6C\n0x1564D\t0x5D73\n0x1564E\t0x5D76\n0x1564F\t0x5D87\n0x15650\t0x5D84\n0x15651\t0x5D82\n0x15652\t0x5DA2\n0x15653\t0x5D9D\n0x15654\t0x5DAC\n0x15655\t0x5DAE\n0x15656\t0x5DBD\n0x15657\t0x5D90\n0x15658\t0x5DB7\n0x15659\t0x5DBC\n0x1565A\t0x5DC9\n0x1565B\t0x5DCD\n0x1565C\t0x5DD3\n0x1565D\t0x5DD2\n0x1565E\t0x5DD6\n0x1565F\t0x5DDB\n0x15660\t0x5DEB\n0x15661\t0x5DF2\n0x15662\t0x5DF5\n0x15663\t0x5E0B\n0x15664\t0x5E1A\n0x15665\t0x5E19\n0x15666\t0x5E11\n0x15667\t0x5E1B\n0x15668\t0x5E36\n0x15669\t0x5E37\n0x1566A\t0x5E44\n0x1566B\t0x5E43\n0x1566C\t0x5E40\n0x1566D\t0x5E4E\n0x1566E\t0x5E57\n0x1566F\t0x5E54\n0x15670\t0x5E5F\n0x15671\t0x5E62\n0x15672\t0x5E64\n0x15673\t0x5E47\n0x15674\t0x5E75\n0x15675\t0x5E76\n0x15676\t0x5E7A\n0x15677\t0x9EBC\n0x15678\t0x5E7F\n0x15679\t0x5EA0\n0x1567A\t0x5EC1\n0x1567B\t0x5EC2\n0x1567C\t0x5EC8\n0x1567D\t0x5ED0\n0x1567E\t0x5ECF\n0x15721\t0x5ED6\n0x15722\t0x5EE3\n0x15723\t0x5EDD\n0x15724\t0x5EDA\n0x15725\t0x5EDB\n0x15726\t0x5EE2\n0x15727\t0x5EE1\n0x15728\t0x5EE8\n0x15729\t0x5EE9\n0x1572A\t0x5EEC\n0x1572B\t0x5EF1\n0x1572C\t0x5EF3\n0x1572D\t0x5EF0\n0x1572E\t0x5EF4\n0x1572F\t0x5EF8\n0x15730\t0x5EFE\n0x15731\t0x5F03\n0x15732\t0x5F09\n0x15733\t0x5F5D\n0x15734\t0x5F5C\n0x15735\t0x5F0B\n0x15736\t0x5F11\n0x15737\t0x5F16\n0x15738\t0x5F29\n0x15739\t0x5F2D\n0x1573A\t0x5F38\n0x1573B\t0x5F41\n0x1573C\t0x5F48\n0x1573D\t0x5F4C\n0x1573E\t0x5F4E\n0x1573F\t0x5F2F\n0x15740\t0x5F51\n0x15741\t0x5F56\n0x15742\t0x5F57\n0x15743\t0x5F59\n0x15744\t0x5F61\n0x15745\t0x5F6D\n0x15746\t0x5F73\n0x15747\t0x5F77\n0x15748\t0x5F83\n0x15749\t0x5F82\n0x1574A\t0x5F7F\n0x1574B\t0x5F8A\n0x1574C\t0x5F88\n0x1574D\t0x5F91\n0x1574E\t0x5F87\n0x1574F\t0x5F9E\n0x15750\t0x5F99\n0x15751\t0x5F98\n0x15752\t0x5FA0\n0x15753\t0x5FA8\n0x15754\t0x5FAD\n0x15755\t0x5FBC\n0x15756\t0x5FD6\n0x15757\t0x5FFB\n0x15758\t0x5FE4\n0x15759\t0x5FF8\n0x1575A\t0x5FF1\n0x1575B\t0x5FDD\n0x1575C\t0x60B3\n0x1575D\t0x5FFF\n0x1575E\t0x6021\n0x1575F\t0x6060\n0x15760\t0x6019\n0x15761\t0x6010\n0x15762\t0x6029\n0x15763\t0x600E\n0x15764\t0x6031\n0x15765\t0x601B\n0x15766\t0x6015\n0x15767\t0x602B\n0x15768\t0x6026\n0x15769\t0x600F\n0x1576A\t0x603A\n0x1576B\t0x605A\n0x1576C\t0x6041\n0x1576D\t0x606A\n0x1576E\t0x6077\n0x1576F\t0x605F\n0x15770\t0x604A\n0x15771\t0x6046\n0x15772\t0x604D\n0x15773\t0x6063\n0x15774\t0x6043\n0x15775\t0x6064\n0x15776\t0x6042\n0x15777\t0x606C\n0x15778\t0x606B\n0x15779\t0x6059\n0x1577A\t0x6081\n0x1577B\t0x608D\n0x1577C\t0x60E7\n0x1577D\t0x6083\n0x1577E\t0x609A\n0x15821\t0x6084\n0x15822\t0x609B\n0x15823\t0x6096\n0x15824\t0x6097\n0x15825\t0x6092\n0x15826\t0x60A7\n0x15827\t0x608B\n0x15828\t0x60E1\n0x15829\t0x60B8\n0x1582A\t0x60E0\n0x1582B\t0x60D3\n0x1582C\t0x60B4\n0x1582D\t0x5FF0\n0x1582E\t0x60BD\n0x1582F\t0x60C6\n0x15830\t0x60B5\n0x15831\t0x60D8\n0x15832\t0x614D\n0x15833\t0x6115\n0x15834\t0x6106\n0x15835\t0x60F6\n0x15836\t0x60F7\n0x15837\t0x6100\n0x15838\t0x60F4\n0x15839\t0x60FA\n0x1583A\t0x6103\n0x1583B\t0x6121\n0x1583C\t0x60FB\n0x1583D\t0x60F1\n0x1583E\t0x610D\n0x1583F\t0x610E\n0x15840\t0x6147\n0x15841\t0x613E\n0x15842\t0x6128\n0x15843\t0x6127\n0x15844\t0x614A\n0x15845\t0x613F\n0x15846\t0x613C\n0x15847\t0x612C\n0x15848\t0x6134\n0x15849\t0x613D\n0x1584A\t0x6142\n0x1584B\t0x6144\n0x1584C\t0x6173\n0x1584D\t0x6177\n0x1584E\t0x6158\n0x1584F\t0x6159\n0x15850\t0x615A\n0x15851\t0x616B\n0x15852\t0x6174\n0x15853\t0x616F\n0x15854\t0x6165\n0x15855\t0x6171\n0x15856\t0x615F\n0x15857\t0x615D\n0x15858\t0x6153\n0x15859\t0x6175\n0x1585A\t0x6199\n0x1585B\t0x6196\n0x1585C\t0x6187\n0x1585D\t0x61AC\n0x1585E\t0x6194\n0x1585F\t0x619A\n0x15860\t0x618A\n0x15861\t0x6191\n0x15862\t0x61AB\n0x15863\t0x61AE\n0x15864\t0x61CC\n0x15865\t0x61CA\n0x15866\t0x61C9\n0x15867\t0x61F7\n0x15868\t0x61C8\n0x15869\t0x61C3\n0x1586A\t0x61C6\n0x1586B\t0x61BA\n0x1586C\t0x61CB\n0x1586D\t0x7F79\n0x1586E\t0x61CD\n0x1586F\t0x61E6\n0x15870\t0x61E3\n0x15871\t0x61F6\n0x15872\t0x61FA\n0x15873\t0x61F4\n0x15874\t0x61FF\n0x15875\t0x61FD\n0x15876\t0x61FC\n0x15877\t0x61FE\n0x15878\t0x6200\n0x15879\t0x6208\n0x1587A\t0x6209\n0x1587B\t0x620D\n0x1587C\t0x620C\n0x1587D\t0x6214\n0x1587E\t0x621B\n0x15921\t0x621E\n0x15922\t0x6221\n0x15923\t0x622A\n0x15924\t0x622E\n0x15925\t0x6230\n0x15926\t0x6232\n0x15927\t0x6233\n0x15928\t0x6241\n0x15929\t0x624E\n0x1592A\t0x625E\n0x1592B\t0x6263\n0x1592C\t0x625B\n0x1592D\t0x6260\n0x1592E\t0x6268\n0x1592F\t0x627C\n0x15930\t0x6282\n0x15931\t0x6289\n0x15932\t0x627E\n0x15933\t0x6292\n0x15934\t0x6293\n0x15935\t0x6296\n0x15936\t0x62D4\n0x15937\t0x6283\n0x15938\t0x6294\n0x15939\t0x62D7\n0x1593A\t0x62D1\n0x1593B\t0x62BB\n0x1593C\t0x62CF\n0x1593D\t0x62FF\n0x1593E\t0x62C6\n0x1593F\t0x64D4\n0x15940\t0x62C8\n0x15941\t0x62DC\n0x15942\t0x62CC\n0x15943\t0x62CA\n0x15944\t0x62C2\n0x15945\t0x62C7\n0x15946\t0x629B\n0x15947\t0x62C9\n0x15948\t0x630C\n0x15949\t0x62EE\n0x1594A\t0x62F1\n0x1594B\t0x6327\n0x1594C\t0x6302\n0x1594D\t0x6308\n0x1594E\t0x62EF\n0x1594F\t0x62F5\n0x15950\t0x6350\n0x15951\t0x633E\n0x15952\t0x634D\n0x15953\t0x641C\n0x15954\t0x634F\n0x15955\t0x6396\n0x15956\t0x638E\n0x15957\t0x6380\n0x15958\t0x63AB\n0x15959\t0x6376\n0x1595A\t0x63A3\n0x1595B\t0x638F\n0x1595C\t0x6389\n0x1595D\t0x639F\n0x1595E\t0x63B5\n0x1595F\t0x636B\n0x15960\t0x6369\n0x15961\t0x63BE\n0x15962\t0x63E9\n0x15963\t0x63C0\n0x15964\t0x63C6\n0x15965\t0x63E3\n0x15966\t0x63C9\n0x15967\t0x63D2\n0x15968\t0x63F6\n0x15969\t0x63C4\n0x1596A\t0x6416\n0x1596B\t0x6434\n0x1596C\t0x6406\n0x1596D\t0x6413\n0x1596E\t0x6426\n0x1596F\t0x6436\n0x15970\t0x651D\n0x15971\t0x6417\n0x15972\t0x6428\n0x15973\t0x640F\n0x15974\t0x6467\n0x15975\t0x646F\n0x15976\t0x6476\n0x15977\t0x644E\n0x15978\t0x652A\n0x15979\t0x6495\n0x1597A\t0x6493\n0x1597B\t0x64A5\n0x1597C\t0x64A9\n0x1597D\t0x6488\n0x1597E\t0x64BC\n0x15A21\t0x64DA\n0x15A22\t0x64D2\n0x15A23\t0x64C5\n0x15A24\t0x64C7\n0x15A25\t0x64BB\n0x15A26\t0x64D8\n0x15A27\t0x64C2\n0x15A28\t0x64F1\n0x15A29\t0x64E7\n0x15A2A\t0x8209\n0x15A2B\t0x64E0\n0x15A2C\t0x64E1\n0x15A2D\t0x62AC\n0x15A2E\t0x64E3\n0x15A2F\t0x64EF\n0x15A30\t0x652C\n0x15A31\t0x64F6\n0x15A32\t0x64F4\n0x15A33\t0x64F2\n0x15A34\t0x64FA\n0x15A35\t0x6500\n0x15A36\t0x64FD\n0x15A37\t0x6518\n0x15A38\t0x651C\n0x15A39\t0x6505\n0x15A3A\t0x6524\n0x15A3B\t0x6523\n0x15A3C\t0x652B\n0x15A3D\t0x6534\n0x15A3E\t0x6535\n0x15A3F\t0x6537\n0x15A40\t0x6536\n0x15A41\t0x6538\n0x15A42\t0x754B\n0x15A43\t0x6548\n0x15A44\t0x6556\n0x15A45\t0x6555\n0x15A46\t0x654D\n0x15A47\t0x6558\n0x15A48\t0x655E\n0x15A49\t0x655D\n0x15A4A\t0x6572\n0x15A4B\t0x6578\n0x15A4C\t0x6582\n0x15A4D\t0x6583\n0x15A4E\t0x8B8A\n0x15A4F\t0x659B\n0x15A50\t0x659F\n0x15A51\t0x65AB\n0x15A52\t0x65B7\n0x15A53\t0x65C3\n0x15A54\t0x65C6\n0x15A55\t0x65C1\n0x15A56\t0x65C4\n0x15A57\t0x65CC\n0x15A58\t0x65D2\n0x15A59\t0x65DB\n0x15A5A\t0x65D9\n0x15A5B\t0x65E0\n0x15A5C\t0x65E1\n0x15A5D\t0x65F1\n0x15A5E\t0x6772\n0x15A5F\t0x660A\n0x15A60\t0x6603\n0x15A61\t0x65FB\n0x15A62\t0x6773\n0x15A63\t0x6635\n0x15A64\t0x6636\n0x15A65\t0x6634\n0x15A66\t0x661C\n0x15A67\t0x664F\n0x15A68\t0x6644\n0x15A69\t0x6649\n0x15A6A\t0x6641\n0x15A6B\t0x665E\n0x15A6C\t0x665D\n0x15A6D\t0x6664\n0x15A6E\t0x6667\n0x15A6F\t0x6668\n0x15A70\t0x665F\n0x15A71\t0x6662\n0x15A72\t0x6670\n0x15A73\t0x6683\n0x15A74\t0x6688\n0x15A75\t0x668E\n0x15A76\t0x6689\n0x15A77\t0x6684\n0x15A78\t0x6698\n0x15A79\t0x669D\n0x15A7A\t0x66C1\n0x15A7B\t0x66B9\n0x15A7C\t0x66C9\n0x15A7D\t0x66BE\n0x15A7E\t0x66BC\n0x15B21\t0x66C4\n0x15B22\t0x66B8\n0x15B23\t0x66D6\n0x15B24\t0x66DA\n0x15B25\t0x66E0\n0x15B26\t0x663F\n0x15B27\t0x66E6\n0x15B28\t0x66E9\n0x15B29\t0x66F0\n0x15B2A\t0x66F5\n0x15B2B\t0x66F7\n0x15B2C\t0x670F\n0x15B2D\t0x6716\n0x15B2E\t0x671E\n0x15B2F\t0x6726\n0x15B30\t0x6727\n0x15B31\t0x9738\n0x15B32\t0x672E\n0x15B33\t0x673F\n0x15B34\t0x6736\n0x15B35\t0x6741\n0x15B36\t0x6738\n0x15B37\t0x6737\n0x15B38\t0x6746\n0x15B39\t0x675E\n0x15B3A\t0x6760\n0x15B3B\t0x6759\n0x15B3C\t0x6763\n0x15B3D\t0x6764\n0x15B3E\t0x6789\n0x15B3F\t0x6770\n0x15B40\t0x67A9\n0x15B41\t0x677C\n0x15B42\t0x676A\n0x15B43\t0x678C\n0x15B44\t0x678B\n0x15B45\t0x67A6\n0x15B46\t0x67A1\n0x15B47\t0x6785\n0x15B48\t0x67B7\n0x15B49\t0x67EF\n0x15B4A\t0x67B4\n0x15B4B\t0x67EC\n0x15B4C\t0x67B3\n0x15B4D\t0x67E9\n0x15B4E\t0x67B8\n0x15B4F\t0x67E4\n0x15B50\t0x67DE\n0x15B51\t0x67DD\n0x15B52\t0x67E2\n0x15B53\t0x67EE\n0x15B54\t0x67B9\n0x15B55\t0x67CE\n0x15B56\t0x67C6\n0x15B57\t0x67E7\n0x15B58\t0x6A9C\n0x15B59\t0x681E\n0x15B5A\t0x6846\n0x15B5B\t0x6829\n0x15B5C\t0x6840\n0x15B5D\t0x684D\n0x15B5E\t0x6832\n0x15B5F\t0x684E\n0x15B60\t0x68B3\n0x15B61\t0x682B\n0x15B62\t0x6859\n0x15B63\t0x6863\n0x15B64\t0x6877\n0x15B65\t0x687F\n0x15B66\t0x689F\n0x15B67\t0x688F\n0x15B68\t0x68AD\n0x15B69\t0x6894\n0x15B6A\t0x689D\n0x15B6B\t0x689B\n0x15B6C\t0x6883\n0x15B6D\t0x6AAE\n0x15B6E\t0x68B9\n0x15B6F\t0x6874\n0x15B70\t0x68B5\n0x15B71\t0x68A0\n0x15B72\t0x68BA\n0x15B73\t0x690F\n0x15B74\t0x688D\n0x15B75\t0x687E\n0x15B76\t0x6901\n0x15B77\t0x68CA\n0x15B78\t0x6908\n0x15B79\t0x68D8\n0x15B7A\t0x6922\n0x15B7B\t0x6926\n0x15B7C\t0x68E1\n0x15B7D\t0x690C\n0x15B7E\t0x68CD\n0x15C21\t0x68D4\n0x15C22\t0x68E7\n0x15C23\t0x68D5\n0x15C24\t0x6936\n0x15C25\t0x6912\n0x15C26\t0x6904\n0x15C27\t0x68D7\n0x15C28\t0x68E3\n0x15C29\t0x6925\n0x15C2A\t0x68F9\n0x15C2B\t0x68E0\n0x15C2C\t0x68EF\n0x15C2D\t0x6928\n0x15C2E\t0x692A\n0x15C2F\t0x691A\n0x15C30\t0x6923\n0x15C31\t0x6921\n0x15C32\t0x68C6\n0x15C33\t0x6979\n0x15C34\t0x6977\n0x15C35\t0x695C\n0x15C36\t0x6978\n0x15C37\t0x696B\n0x15C38\t0x6954\n0x15C39\t0x697E\n0x15C3A\t0x696E\n0x15C3B\t0x6939\n0x15C3C\t0x6974\n0x15C3D\t0x693D\n0x15C3E\t0x6959\n0x15C3F\t0x6930\n0x15C40\t0x6961\n0x15C41\t0x695E\n0x15C42\t0x695D\n0x15C43\t0x6981\n0x15C44\t0x696A\n0x15C45\t0x69B2\n0x15C46\t0x69AE\n0x15C47\t0x69D0\n0x15C48\t0x69BF\n0x15C49\t0x69C1\n0x15C4A\t0x69D3\n0x15C4B\t0x69BE\n0x15C4C\t0x69CE\n0x15C4D\t0x5BE8\n0x15C4E\t0x69CA\n0x15C4F\t0x69DD\n0x15C50\t0x69BB\n0x15C51\t0x69C3\n0x15C52\t0x69A7\n0x15C53\t0x6A2E\n0x15C54\t0x6991\n0x15C55\t0x69A0\n0x15C56\t0x699C\n0x15C57\t0x6995\n0x15C58\t0x69B4\n0x15C59\t0x69DE\n0x15C5A\t0x69E8\n0x15C5B\t0x6A02\n0x15C5C\t0x6A1B\n0x15C5D\t0x69FF\n0x15C5E\t0x6B0A\n0x15C5F\t0x69F9\n0x15C60\t0x69F2\n0x15C61\t0x69E7\n0x15C62\t0x6A05\n0x15C63\t0x69B1\n0x15C64\t0x6A1E\n0x15C65\t0x69ED\n0x15C66\t0x6A14\n0x15C67\t0x69EB\n0x15C68\t0x6A0A\n0x15C69\t0x6A12\n0x15C6A\t0x6AC1\n0x15C6B\t0x6A23\n0x15C6C\t0x6A13\n0x15C6D\t0x6A44\n0x15C6E\t0x6A0C\n0x15C6F\t0x6A72\n0x15C70\t0x6A36\n0x15C71\t0x6A78\n0x15C72\t0x6A47\n0x15C73\t0x6A62\n0x15C74\t0x6A59\n0x15C75\t0x6A66\n0x15C76\t0x6A48\n0x15C77\t0x6A38\n0x15C78\t0x6A22\n0x15C79\t0x6A90\n0x15C7A\t0x6A8D\n0x15C7B\t0x6AA0\n0x15C7C\t0x6A84\n0x15C7D\t0x6AA2\n0x15C7E\t0x6AA3\n0x15D21\t0x6A97\n0x15D22\t0x8617\n0x15D23\t0x6ABB\n0x15D24\t0x6AC3\n0x15D25\t0x6AC2\n0x15D26\t0x6AB8\n0x15D27\t0x6AB3\n0x15D28\t0x6AAC\n0x15D29\t0x6ADE\n0x15D2A\t0x6AD1\n0x15D2B\t0x6ADF\n0x15D2C\t0x6AAA\n0x15D2D\t0x6ADA\n0x15D2E\t0x6AEA\n0x15D2F\t0x6AFB\n0x15D30\t0x6B05\n0x15D31\t0x8616\n0x15D32\t0x6AFA\n0x15D33\t0x6B12\n0x15D34\t0x6B16\n0x15D35\t0x9B31\n0x15D36\t0x6B1F\n0x15D37\t0x6B38\n0x15D38\t0x6B37\n0x15D39\t0x76DC\n0x15D3A\t0x6B39\n0x15D3B\t0x98EE\n0x15D3C\t0x6B47\n0x15D3D\t0x6B43\n0x15D3E\t0x6B49\n0x15D3F\t0x6B50\n0x15D40\t0x6B59\n0x15D41\t0x6B54\n0x15D42\t0x6B5B\n0x15D43\t0x6B5F\n0x15D44\t0x6B61\n0x15D45\t0x6B78\n0x15D46\t0x6B79\n0x15D47\t0x6B7F\n0x15D48\t0x6B80\n0x15D49\t0x6B84\n0x15D4A\t0x6B83\n0x15D4B\t0x6B8D\n0x15D4C\t0x6B98\n0x15D4D\t0x6B95\n0x15D4E\t0x6B9E\n0x15D4F\t0x6BA4\n0x15D50\t0x6BAA\n0x15D51\t0x6BAB\n0x15D52\t0x6BAF\n0x15D53\t0x6BB2\n0x15D54\t0x6BB1\n0x15D55\t0x6BB3\n0x15D56\t0x6BB7\n0x15D57\t0x6BBC\n0x15D58\t0x6BC6\n0x15D59\t0x6BCB\n0x15D5A\t0x6BD3\n0x15D5B\t0x6BDF\n0x15D5C\t0x6BEC\n0x15D5D\t0x6BEB\n0x15D5E\t0x6BF3\n0x15D5F\t0x6BEF\n0x15D60\t0x9EBE\n0x15D61\t0x6C08\n0x15D62\t0x6C13\n0x15D63\t0x6C14\n0x15D64\t0x6C1B\n0x15D65\t0x6C24\n0x15D66\t0x6C23\n0x15D67\t0x6C5E\n0x15D68\t0x6C55\n0x15D69\t0x6C62\n0x15D6A\t0x6C6A\n0x15D6B\t0x6C82\n0x15D6C\t0x6C8D\n0x15D6D\t0x6C9A\n0x15D6E\t0x6C81\n0x15D6F\t0x6C9B\n0x15D70\t0x6C7E\n0x15D71\t0x6C68\n0x15D72\t0x6C73\n0x15D73\t0x6C92\n0x15D74\t0x6C90\n0x15D75\t0x6CC4\n0x15D76\t0x6CF1\n0x15D77\t0x6CD3\n0x15D78\t0x6CBD\n0x15D79\t0x6CD7\n0x15D7A\t0x6CC5\n0x15D7B\t0x6CDD\n0x15D7C\t0x6CAE\n0x15D7D\t0x6CB1\n0x15D7E\t0x6CBE\n0x15E21\t0x6CBA\n0x15E22\t0x6CDB\n0x15E23\t0x6CEF\n0x15E24\t0x6CD9\n0x15E25\t0x6CEA\n0x15E26\t0x6D1F\n0x15E27\t0x884D\n0x15E28\t0x6D36\n0x15E29\t0x6D2B\n0x15E2A\t0x6D3D\n0x15E2B\t0x6D38\n0x15E2C\t0x6D19\n0x15E2D\t0x6D35\n0x15E2E\t0x6D33\n0x15E2F\t0x6D12\n0x15E30\t0x6D0C\n0x15E31\t0x6D63\n0x15E32\t0x6D93\n0x15E33\t0x6D64\n0x15E34\t0x6D5A\n0x15E35\t0x6D79\n0x15E36\t0x6D59\n0x15E37\t0x6D8E\n0x15E38\t0x6D95\n0x15E39\t0x6FE4\n0x15E3A\t0x6D85\n0x15E3B\t0x6DF9\n0x15E3C\t0x6E15\n0x15E3D\t0x6E0A\n0x15E3E\t0x6DB5\n0x15E3F\t0x6DC7\n0x15E40\t0x6DE6\n0x15E41\t0x6DB8\n0x15E42\t0x6DC6\n0x15E43\t0x6DEC\n0x15E44\t0x6DDE\n0x15E45\t0x6DCC\n0x15E46\t0x6DE8\n0x15E47\t0x6DD2\n0x15E48\t0x6DC5\n0x15E49\t0x6DFA\n0x15E4A\t0x6DD9\n0x15E4B\t0x6DE4\n0x15E4C\t0x6DD5\n0x15E4D\t0x6DEA\n0x15E4E\t0x6DEE\n0x15E4F\t0x6E2D\n0x15E50\t0x6E6E\n0x15E51\t0x6E2E\n0x15E52\t0x6E19\n0x15E53\t0x6E72\n0x15E54\t0x6E5F\n0x15E55\t0x6E3E\n0x15E56\t0x6E23\n0x15E57\t0x6E6B\n0x15E58\t0x6E2B\n0x15E59\t0x6E76\n0x15E5A\t0x6E4D\n0x15E5B\t0x6E1F\n0x15E5C\t0x6E43\n0x15E5D\t0x6E3A\n0x15E5E\t0x6E4E\n0x15E5F\t0x6E24\n0x15E60\t0x6EFF\n0x15E61\t0x6E1D\n0x15E62\t0x6E38\n0x15E63\t0x6E82\n0x15E64\t0x6EAA\n0x15E65\t0x6E98\n0x15E66\t0x6EC9\n0x15E67\t0x6EB7\n0x15E68\t0x6ED3\n0x15E69\t0x6EBD\n0x15E6A\t0x6EAF\n0x15E6B\t0x6EC4\n0x15E6C\t0x6EB2\n0x15E6D\t0x6ED4\n0x15E6E\t0x6ED5\n0x15E6F\t0x6E8F\n0x15E70\t0x6EA5\n0x15E71\t0x6EC2\n0x15E72\t0x6E9F\n0x15E73\t0x6F41\n0x15E74\t0x6F11\n0x15E75\t0x704C\n0x15E76\t0x6EEC\n0x15E77\t0x6EF8\n0x15E78\t0x6EFE\n0x15E79\t0x6F3F\n0x15E7A\t0x6EF2\n0x15E7B\t0x6F31\n0x15E7C\t0x6EEF\n0x15E7D\t0x6F32\n0x15E7E\t0x6ECC\n0x15F21\t0x6F3E\n0x15F22\t0x6F13\n0x15F23\t0x6EF7\n0x15F24\t0x6F86\n0x15F25\t0x6F7A\n0x15F26\t0x6F78\n0x15F27\t0x6F81\n0x15F28\t0x6F80\n0x15F29\t0x6F6F\n0x15F2A\t0x6F5B\n0x15F2B\t0x6FF3\n0x15F2C\t0x6F6D\n0x15F2D\t0x6F82\n0x15F2E\t0x6F7C\n0x15F2F\t0x6F58\n0x15F30\t0x6F8E\n0x15F31\t0x6F91\n0x15F32\t0x6FC2\n0x15F33\t0x6F66\n0x15F34\t0x6FB3\n0x15F35\t0x6FA3\n0x15F36\t0x6FA1\n0x15F37\t0x6FA4\n0x15F38\t0x6FB9\n0x15F39\t0x6FC6\n0x15F3A\t0x6FAA\n0x15F3B\t0x6FDF\n0x15F3C\t0x6FD5\n0x15F3D\t0x6FEC\n0x15F3E\t0x6FD4\n0x15F3F\t0x6FD8\n0x15F40\t0x6FF1\n0x15F41\t0x6FEE\n0x15F42\t0x6FDB\n0x15F43\t0x7009\n0x15F44\t0x700B\n0x15F45\t0x6FFA\n0x15F46\t0x7011\n0x15F47\t0x7001\n0x15F48\t0x700F\n0x15F49\t0x6FFE\n0x15F4A\t0x701B\n0x15F4B\t0x701A\n0x15F4C\t0x6F74\n0x15F4D\t0x701D\n0x15F4E\t0x7018\n0x15F4F\t0x701F\n0x15F50\t0x7030\n0x15F51\t0x703E\n0x15F52\t0x7032\n0x15F53\t0x7051\n0x15F54\t0x7063\n0x15F55\t0x7099\n0x15F56\t0x7092\n0x15F57\t0x70AF\n0x15F58\t0x70F1\n0x15F59\t0x70AC\n0x15F5A\t0x70B8\n0x15F5B\t0x70B3\n0x15F5C\t0x70AE\n0x15F5D\t0x70DF\n0x15F5E\t0x70CB\n0x15F5F\t0x70DD\n0x15F60\t0x70D9\n0x15F61\t0x7109\n0x15F62\t0x70FD\n0x15F63\t0x711C\n0x15F64\t0x7119\n0x15F65\t0x7165\n0x15F66\t0x7155\n0x15F67\t0x7188\n0x15F68\t0x7166\n0x15F69\t0x7162\n0x15F6A\t0x714C\n0x15F6B\t0x7156\n0x15F6C\t0x716C\n0x15F6D\t0x718F\n0x15F6E\t0x71FB\n0x15F6F\t0x7184\n0x15F70\t0x7195\n0x15F71\t0x71A8\n0x15F72\t0x71AC\n0x15F73\t0x71D7\n0x15F74\t0x71B9\n0x15F75\t0x71BE\n0x15F76\t0x71D2\n0x15F77\t0x71C9\n0x15F78\t0x71D4\n0x15F79\t0x71CE\n0x15F7A\t0x71E0\n0x15F7B\t0x71EC\n0x15F7C\t0x71E7\n0x15F7D\t0x71F5\n0x15F7E\t0x71FC\n0x16021\t0x71F9\n0x16022\t0x71FF\n0x16023\t0x720D\n0x16024\t0x7210\n0x16025\t0x721B\n0x16026\t0x7228\n0x16027\t0x722D\n0x16028\t0x722C\n0x16029\t0x7230\n0x1602A\t0x7232\n0x1602B\t0x723B\n0x1602C\t0x723C\n0x1602D\t0x723F\n0x1602E\t0x7240\n0x1602F\t0x7246\n0x16030\t0x724B\n0x16031\t0x7258\n0x16032\t0x7274\n0x16033\t0x727E\n0x16034\t0x7282\n0x16035\t0x7281\n0x16036\t0x7287\n0x16037\t0x7292\n0x16038\t0x7296\n0x16039\t0x72A2\n0x1603A\t0x72A7\n0x1603B\t0x72B9\n0x1603C\t0x72B2\n0x1603D\t0x72C3\n0x1603E\t0x72C6\n0x1603F\t0x72C4\n0x16040\t0x72CE\n0x16041\t0x72D2\n0x16042\t0x72E2\n0x16043\t0x72E0\n0x16044\t0x72E1\n0x16045\t0x72F9\n0x16046\t0x72F7\n0x16047\t0x500F\n0x16048\t0x7317\n0x16049\t0x730A\n0x1604A\t0x731C\n0x1604B\t0x7316\n0x1604C\t0x731D\n0x1604D\t0x7334\n0x1604E\t0x732F\n0x1604F\t0x7329\n0x16050\t0x7325\n0x16051\t0x733E\n0x16052\t0x734E\n0x16053\t0x734F\n0x16054\t0x9ED8\n0x16055\t0x7357\n0x16056\t0x736A\n0x16057\t0x7368\n0x16058\t0x7370\n0x16059\t0x7378\n0x1605A\t0x7375\n0x1605B\t0x737B\n0x1605C\t0x737A\n0x1605D\t0x73C8\n0x1605E\t0x73B3\n0x1605F\t0x73CE\n0x16060\t0x73BB\n0x16061\t0x73C0\n0x16062\t0x73E5\n0x16063\t0x73EE\n0x16064\t0x73DE\n0x16065\t0x74A2\n0x16066\t0x7405\n0x16067\t0x746F\n0x16068\t0x7425\n0x16069\t0x73F8\n0x1606A\t0x7432\n0x1606B\t0x743A\n0x1606C\t0x7455\n0x1606D\t0x743F\n0x1606E\t0x745F\n0x1606F\t0x7459\n0x16070\t0x7441\n0x16071\t0x745C\n0x16072\t0x7469\n0x16073\t0x7470\n0x16074\t0x7463\n0x16075\t0x746A\n0x16076\t0x7476\n0x16077\t0x747E\n0x16078\t0x748B\n0x16079\t0x749E\n0x1607A\t0x74A7\n0x1607B\t0x74CA\n0x1607C\t0x74CF\n0x1607D\t0x74D4\n0x1607E\t0x73F1\n0x16121\t0x74E0\n0x16122\t0x74E3\n0x16123\t0x74E7\n0x16124\t0x74E9\n0x16125\t0x74EE\n0x16126\t0x74F2\n0x16127\t0x74F0\n0x16128\t0x74F1\n0x16129\t0x74F8\n0x1612A\t0x74F7\n0x1612B\t0x7504\n0x1612C\t0x7503\n0x1612D\t0x7505\n0x1612E\t0x750C\n0x1612F\t0x750E\n0x16130\t0x750D\n0x16131\t0x7515\n0x16132\t0x7513\n0x16133\t0x751E\n0x16134\t0x7526\n0x16135\t0x752C\n0x16136\t0x753C\n0x16137\t0x7544\n0x16138\t0x754D\n0x16139\t0x754A\n0x1613A\t0x7549\n0x1613B\t0x755B\n0x1613C\t0x7546\n0x1613D\t0x755A\n0x1613E\t0x7569\n0x1613F\t0x7564\n0x16140\t0x7567\n0x16141\t0x756B\n0x16142\t0x756D\n0x16143\t0x7578\n0x16144\t0x7576\n0x16145\t0x7586\n0x16146\t0x7587\n0x16147\t0x7574\n0x16148\t0x758A\n0x16149\t0x7589\n0x1614A\t0x7582\n0x1614B\t0x7594\n0x1614C\t0x759A\n0x1614D\t0x759D\n0x1614E\t0x75A5\n0x1614F\t0x75A3\n0x16150\t0x75C2\n0x16151\t0x75B3\n0x16152\t0x75C3\n0x16153\t0x75B5\n0x16154\t0x75BD\n0x16155\t0x75B8\n0x16156\t0x75BC\n0x16157\t0x75B1\n0x16158\t0x75CD\n0x16159\t0x75CA\n0x1615A\t0x75D2\n0x1615B\t0x75D9\n0x1615C\t0x75E3\n0x1615D\t0x75DE\n0x1615E\t0x75FE\n0x1615F\t0x75FF\n0x16160\t0x75FC\n0x16161\t0x7601\n0x16162\t0x75F0\n0x16163\t0x75FA\n0x16164\t0x75F2\n0x16165\t0x75F3\n0x16166\t0x760B\n0x16167\t0x760D\n0x16168\t0x7609\n0x16169\t0x761F\n0x1616A\t0x7627\n0x1616B\t0x7620\n0x1616C\t0x7621\n0x1616D\t0x7622\n0x1616E\t0x7624\n0x1616F\t0x7634\n0x16170\t0x7630\n0x16171\t0x763B\n0x16172\t0x7647\n0x16173\t0x7648\n0x16174\t0x7646\n0x16175\t0x765C\n0x16176\t0x7658\n0x16177\t0x7661\n0x16178\t0x7662\n0x16179\t0x7668\n0x1617A\t0x7669\n0x1617B\t0x766A\n0x1617C\t0x7667\n0x1617D\t0x766C\n0x1617E\t0x7670\n0x16221\t0x7672\n0x16222\t0x7676\n0x16223\t0x7678\n0x16224\t0x767C\n0x16225\t0x7680\n0x16226\t0x7683\n0x16227\t0x7688\n0x16228\t0x768B\n0x16229\t0x768E\n0x1622A\t0x7696\n0x1622B\t0x7693\n0x1622C\t0x7699\n0x1622D\t0x769A\n0x1622E\t0x76B0\n0x1622F\t0x76B4\n0x16230\t0x76B8\n0x16231\t0x76B9\n0x16232\t0x76BA\n0x16233\t0x76C2\n0x16234\t0x76CD\n0x16235\t0x76D6\n0x16236\t0x76D2\n0x16237\t0x76DE\n0x16238\t0x76E1\n0x16239\t0x76E5\n0x1623A\t0x76E7\n0x1623B\t0x76EA\n0x1623C\t0x862F\n0x1623D\t0x76FB\n0x1623E\t0x7708\n0x1623F\t0x7707\n0x16240\t0x7704\n0x16241\t0x7729\n0x16242\t0x7724\n0x16243\t0x771E\n0x16244\t0x7725\n0x16245\t0x7726\n0x16246\t0x771B\n0x16247\t0x7737\n0x16248\t0x7738\n0x16249\t0x7747\n0x1624A\t0x775A\n0x1624B\t0x7768\n0x1624C\t0x776B\n0x1624D\t0x775B\n0x1624E\t0x7765\n0x1624F\t0x777F\n0x16250\t0x777E\n0x16251\t0x7779\n0x16252\t0x778E\n0x16253\t0x778B\n0x16254\t0x7791\n0x16255\t0x77A0\n0x16256\t0x779E\n0x16257\t0x77B0\n0x16258\t0x77B6\n0x16259\t0x77B9\n0x1625A\t0x77BF\n0x1625B\t0x77BC\n0x1625C\t0x77BD\n0x1625D\t0x77BB\n0x1625E\t0x77C7\n0x1625F\t0x77CD\n0x16260\t0x77D7\n0x16261\t0x77DA\n0x16262\t0x77DC\n0x16263\t0x77E3\n0x16264\t0x77EE\n0x16265\t0x77FC\n0x16266\t0x780C\n0x16267\t0x7812\n0x16268\t0x7926\n0x16269\t0x7820\n0x1626A\t0x792A\n0x1626B\t0x7845\n0x1626C\t0x788E\n0x1626D\t0x7874\n0x1626E\t0x7886\n0x1626F\t0x787C\n0x16270\t0x789A\n0x16271\t0x788C\n0x16272\t0x78A3\n0x16273\t0x78B5\n0x16274\t0x78AA\n0x16275\t0x78AF\n0x16276\t0x78D1\n0x16277\t0x78C6\n0x16278\t0x78CB\n0x16279\t0x78D4\n0x1627A\t0x78BE\n0x1627B\t0x78BC\n0x1627C\t0x78C5\n0x1627D\t0x78CA\n0x1627E\t0x78EC\n0x16321\t0x78E7\n0x16322\t0x78DA\n0x16323\t0x78FD\n0x16324\t0x78F4\n0x16325\t0x7907\n0x16326\t0x7912\n0x16327\t0x7911\n0x16328\t0x7919\n0x16329\t0x792C\n0x1632A\t0x792B\n0x1632B\t0x7940\n0x1632C\t0x7960\n0x1632D\t0x7957\n0x1632E\t0x795F\n0x1632F\t0x795A\n0x16330\t0x7955\n0x16331\t0x7953\n0x16332\t0x797A\n0x16333\t0x797F\n0x16334\t0x798A\n0x16335\t0x799D\n0x16336\t0x79A7\n0x16337\t0x9F4B\n0x16338\t0x79AA\n0x16339\t0x79AE\n0x1633A\t0x79B3\n0x1633B\t0x79B9\n0x1633C\t0x79BA\n0x1633D\t0x79C9\n0x1633E\t0x79D5\n0x1633F\t0x79E7\n0x16340\t0x79EC\n0x16341\t0x79E1\n0x16342\t0x79E3\n0x16343\t0x7A08\n0x16344\t0x7A0D\n0x16345\t0x7A18\n0x16346\t0x7A19\n0x16347\t0x7A20\n0x16348\t0x7A1F\n0x16349\t0x7980\n0x1634A\t0x7A31\n0x1634B\t0x7A3B\n0x1634C\t0x7A3E\n0x1634D\t0x7A37\n0x1634E\t0x7A43\n0x1634F\t0x7A57\n0x16350\t0x7A49\n0x16351\t0x7A61\n0x16352\t0x7A62\n0x16353\t0x7A69\n0x16354\t0x9F9D\n0x16355\t0x7A70\n0x16356\t0x7A79\n0x16357\t0x7A7D\n0x16358\t0x7A88\n0x16359\t0x7A97\n0x1635A\t0x7A95\n0x1635B\t0x7A98\n0x1635C\t0x7A96\n0x1635D\t0x7AA9\n0x1635E\t0x7AC8\n0x1635F\t0x7AB0\n0x16360\t0x7AB6\n0x16361\t0x7AC5\n0x16362\t0x7AC4\n0x16363\t0x7ABF\n0x16364\t0x9083\n0x16365\t0x7AC7\n0x16366\t0x7ACA\n0x16367\t0x7ACD\n0x16368\t0x7ACF\n0x16369\t0x7AD5\n0x1636A\t0x7AD3\n0x1636B\t0x7AD9\n0x1636C\t0x7ADA\n0x1636D\t0x7ADD\n0x1636E\t0x7AE1\n0x1636F\t0x7AE2\n0x16370\t0x7AE6\n0x16371\t0x7AED\n0x16372\t0x7AF0\n0x16373\t0x7B02\n0x16374\t0x7B0F\n0x16375\t0x7B0A\n0x16376\t0x7B06\n0x16377\t0x7B33\n0x16378\t0x7B18\n0x16379\t0x7B19\n0x1637A\t0x7B1E\n0x1637B\t0x7B35\n0x1637C\t0x7B28\n0x1637D\t0x7B36\n0x1637E\t0x7B50\n0x16421\t0x7B7A\n0x16422\t0x7B04\n0x16423\t0x7B4D\n0x16424\t0x7B0B\n0x16425\t0x7B4C\n0x16426\t0x7B45\n0x16427\t0x7B75\n0x16428\t0x7B65\n0x16429\t0x7B74\n0x1642A\t0x7B67\n0x1642B\t0x7B70\n0x1642C\t0x7B71\n0x1642D\t0x7B6C\n0x1642E\t0x7B6E\n0x1642F\t0x7B9D\n0x16430\t0x7B98\n0x16431\t0x7B9F\n0x16432\t0x7B8D\n0x16433\t0x7B9C\n0x16434\t0x7B9A\n0x16435\t0x7B8B\n0x16436\t0x7B92\n0x16437\t0x7B8F\n0x16438\t0x7B5D\n0x16439\t0x7B99\n0x1643A\t0x7BCB\n0x1643B\t0x7BC1\n0x1643C\t0x7BCC\n0x1643D\t0x7BCF\n0x1643E\t0x7BB4\n0x1643F\t0x7BC6\n0x16440\t0x7BDD\n0x16441\t0x7BE9\n0x16442\t0x7C11\n0x16443\t0x7C14\n0x16444\t0x7BE6\n0x16445\t0x7BE5\n0x16446\t0x7C60\n0x16447\t0x7C00\n0x16448\t0x7C07\n0x16449\t0x7C13\n0x1644A\t0x7BF3\n0x1644B\t0x7BF7\n0x1644C\t0x7C17\n0x1644D\t0x7C0D\n0x1644E\t0x7BF6\n0x1644F\t0x7C23\n0x16450\t0x7C27\n0x16451\t0x7C2A\n0x16452\t0x7C1F\n0x16453\t0x7C37\n0x16454\t0x7C2B\n0x16455\t0x7C3D\n0x16456\t0x7C4C\n0x16457\t0x7C43\n0x16458\t0x7C54\n0x16459\t0x7C4F\n0x1645A\t0x7C40\n0x1645B\t0x7C50\n0x1645C\t0x7C58\n0x1645D\t0x7C5F\n0x1645E\t0x7C64\n0x1645F\t0x7C56\n0x16460\t0x7C65\n0x16461\t0x7C6C\n0x16462\t0x7C75\n0x16463\t0x7C83\n0x16464\t0x7C90\n0x16465\t0x7CA4\n0x16466\t0x7CAD\n0x16467\t0x7CA2\n0x16468\t0x7CAB\n0x16469\t0x7CA1\n0x1646A\t0x7CA8\n0x1646B\t0x7CB3\n0x1646C\t0x7CB2\n0x1646D\t0x7CB1\n0x1646E\t0x7CAE\n0x1646F\t0x7CB9\n0x16470\t0x7CBD\n0x16471\t0x7CC0\n0x16472\t0x7CC5\n0x16473\t0x7CC2\n0x16474\t0x7CD8\n0x16475\t0x7CD2\n0x16476\t0x7CDC\n0x16477\t0x7CE2\n0x16478\t0x9B3B\n0x16479\t0x7CEF\n0x1647A\t0x7CF2\n0x1647B\t0x7CF4\n0x1647C\t0x7CF6\n0x1647D\t0x7CFA\n0x1647E\t0x7D06\n0x16521\t0x7D02\n0x16522\t0x7D1C\n0x16523\t0x7D15\n0x16524\t0x7D0A\n0x16525\t0x7D45\n0x16526\t0x7D4B\n0x16527\t0x7D2E\n0x16528\t0x7D32\n0x16529\t0x7D3F\n0x1652A\t0x7D35\n0x1652B\t0x7D46\n0x1652C\t0x7D73\n0x1652D\t0x7D56\n0x1652E\t0x7D4E\n0x1652F\t0x7D72\n0x16530\t0x7D68\n0x16531\t0x7D6E\n0x16532\t0x7D4F\n0x16533\t0x7D63\n0x16534\t0x7D93\n0x16535\t0x7D89\n0x16536\t0x7D5B\n0x16537\t0x7D8F\n0x16538\t0x7D7D\n0x16539\t0x7D9B\n0x1653A\t0x7DBA\n0x1653B\t0x7DAE\n0x1653C\t0x7DA3\n0x1653D\t0x7DB5\n0x1653E\t0x7DC7\n0x1653F\t0x7DBD\n0x16540\t0x7DAB\n0x16541\t0x7E3D\n0x16542\t0x7DA2\n0x16543\t0x7DAF\n0x16544\t0x7DDC\n0x16545\t0x7DB8\n0x16546\t0x7D9F\n0x16547\t0x7DB0\n0x16548\t0x7DD8\n0x16549\t0x7DDD\n0x1654A\t0x7DE4\n0x1654B\t0x7DDE\n0x1654C\t0x7DFB\n0x1654D\t0x7DF2\n0x1654E\t0x7DE1\n0x1654F\t0x7E05\n0x16550\t0x7E0A\n0x16551\t0x7E23\n0x16552\t0x7E21\n0x16553\t0x7E12\n0x16554\t0x7E31\n0x16555\t0x7E1F\n0x16556\t0x7E09\n0x16557\t0x7E0B\n0x16558\t0x7E22\n0x16559\t0x7E46\n0x1655A\t0x7E66\n0x1655B\t0x7E3B\n0x1655C\t0x7E35\n0x1655D\t0x7E39\n0x1655E\t0x7E43\n0x1655F\t0x7E37\n0x16560\t0x7E32\n0x16561\t0x7E3A\n0x16562\t0x7E67\n0x16563\t0x7E5D\n0x16564\t0x7E56\n0x16565\t0x7E5E\n0x16566\t0x7E59\n0x16567\t0x7E5A\n0x16568\t0x7E79\n0x16569\t0x7E6A\n0x1656A\t0x7E69\n0x1656B\t0x7E7C\n0x1656C\t0x7E7B\n0x1656D\t0x7E83\n0x1656E\t0x7DD5\n0x1656F\t0x7E7D\n0x16570\t0x8FAE\n0x16571\t0x7E7F\n0x16572\t0x7E88\n0x16573\t0x7E89\n0x16574\t0x7E8C\n0x16575\t0x7E92\n0x16576\t0x7E90\n0x16577\t0x7E93\n0x16578\t0x7E94\n0x16579\t0x7E96\n0x1657A\t0x7E8E\n0x1657B\t0x7E9B\n0x1657C\t0x7E9C\n0x1657D\t0x7F38\n0x1657E\t0x7F3A\n0x16621\t0x7F45\n0x16622\t0x7F4C\n0x16623\t0x7F4D\n0x16624\t0x7F4E\n0x16625\t0x7F50\n0x16626\t0x7F51\n0x16627\t0x7F55\n0x16628\t0x7F54\n0x16629\t0x7F58\n0x1662A\t0x7F5F\n0x1662B\t0x7F60\n0x1662C\t0x7F68\n0x1662D\t0x7F69\n0x1662E\t0x7F67\n0x1662F\t0x7F78\n0x16630\t0x7F82\n0x16631\t0x7F86\n0x16632\t0x7F83\n0x16633\t0x7F88\n0x16634\t0x7F87\n0x16635\t0x7F8C\n0x16636\t0x7F94\n0x16637\t0x7F9E\n0x16638\t0x7F9D\n0x16639\t0x7F9A\n0x1663A\t0x7FA3\n0x1663B\t0x7FAF\n0x1663C\t0x7FB2\n0x1663D\t0x7FB9\n0x1663E\t0x7FAE\n0x1663F\t0x7FB6\n0x16640\t0x7FB8\n0x16641\t0x8B71\n0x16642\t0x7FC5\n0x16643\t0x7FC6\n0x16644\t0x7FCA\n0x16645\t0x7FD5\n0x16646\t0x7FD4\n0x16647\t0x7FE1\n0x16648\t0x7FE6\n0x16649\t0x7FE9\n0x1664A\t0x7FF3\n0x1664B\t0x7FF9\n0x1664C\t0x98DC\n0x1664D\t0x8006\n0x1664E\t0x8004\n0x1664F\t0x800B\n0x16650\t0x8012\n0x16651\t0x8018\n0x16652\t0x8019\n0x16653\t0x801C\n0x16654\t0x8021\n0x16655\t0x8028\n0x16656\t0x803F\n0x16657\t0x803B\n0x16658\t0x804A\n0x16659\t0x8046\n0x1665A\t0x8052\n0x1665B\t0x8058\n0x1665C\t0x805A\n0x1665D\t0x805F\n0x1665E\t0x8062\n0x1665F\t0x8068\n0x16660\t0x8073\n0x16661\t0x8072\n0x16662\t0x8070\n0x16663\t0x8076\n0x16664\t0x8079\n0x16665\t0x807D\n0x16666\t0x807F\n0x16667\t0x8084\n0x16668\t0x8086\n0x16669\t0x8085\n0x1666A\t0x809B\n0x1666B\t0x8093\n0x1666C\t0x809A\n0x1666D\t0x80AD\n0x1666E\t0x5190\n0x1666F\t0x80AC\n0x16670\t0x80DB\n0x16671\t0x80E5\n0x16672\t0x80D9\n0x16673\t0x80DD\n0x16674\t0x80C4\n0x16675\t0x80DA\n0x16676\t0x80D6\n0x16677\t0x8109\n0x16678\t0x80EF\n0x16679\t0x80F1\n0x1667A\t0x811B\n0x1667B\t0x8129\n0x1667C\t0x8123\n0x1667D\t0x812F\n0x1667E\t0x814B\n0x16721\t0x968B\n0x16722\t0x8146\n0x16723\t0x813E\n0x16724\t0x8153\n0x16725\t0x8151\n0x16726\t0x80FC\n0x16727\t0x8171\n0x16728\t0x816E\n0x16729\t0x8165\n0x1672A\t0x8166\n0x1672B\t0x8174\n0x1672C\t0x8183\n0x1672D\t0x8188\n0x1672E\t0x818A\n0x1672F\t0x8180\n0x16730\t0x8182\n0x16731\t0x81A0\n0x16732\t0x8195\n0x16733\t0x81A4\n0x16734\t0x81A3\n0x16735\t0x815F\n0x16736\t0x8193\n0x16737\t0x81A9\n0x16738\t0x81B0\n0x16739\t0x81B5\n0x1673A\t0x81BE\n0x1673B\t0x81B8\n0x1673C\t0x81BD\n0x1673D\t0x81C0\n0x1673E\t0x81C2\n0x1673F\t0x81BA\n0x16740\t0x81C9\n0x16741\t0x81CD\n0x16742\t0x81D1\n0x16743\t0x81D9\n0x16744\t0x81D8\n0x16745\t0x81C8\n0x16746\t0x81DA\n0x16747\t0x81DF\n0x16748\t0x81E0\n0x16749\t0x81E7\n0x1674A\t0x81FA\n0x1674B\t0x81FB\n0x1674C\t0x81FE\n0x1674D\t0x8201\n0x1674E\t0x8202\n0x1674F\t0x8205\n0x16750\t0x8207\n0x16751\t0x820A\n0x16752\t0x820D\n0x16753\t0x8210\n0x16754\t0x8216\n0x16755\t0x8229\n0x16756\t0x822B\n0x16757\t0x8238\n0x16758\t0x8233\n0x16759\t0x8240\n0x1675A\t0x8259\n0x1675B\t0x8258\n0x1675C\t0x825D\n0x1675D\t0x825A\n0x1675E\t0x825F\n0x1675F\t0x8264\n0x16760\t0x8262\n0x16761\t0x8268\n0x16762\t0x826A\n0x16763\t0x826B\n0x16764\t0x822E\n0x16765\t0x8271\n0x16766\t0x8277\n0x16767\t0x8278\n0x16768\t0x827E\n0x16769\t0x828D\n0x1676A\t0x8292\n0x1676B\t0x82AB\n0x1676C\t0x829F\n0x1676D\t0x82BB\n0x1676E\t0x82AC\n0x1676F\t0x82E1\n0x16770\t0x82E3\n0x16771\t0x82DF\n0x16772\t0x82D2\n0x16773\t0x82F4\n0x16774\t0x82F3\n0x16775\t0x82FA\n0x16776\t0x8393\n0x16777\t0x8303\n0x16778\t0x82FB\n0x16779\t0x82F9\n0x1677A\t0x82DE\n0x1677B\t0x8306\n0x1677C\t0x82DC\n0x1677D\t0x8309\n0x1677E\t0x82D9\n0x16821\t0x8335\n0x16822\t0x8334\n0x16823\t0x8316\n0x16824\t0x8332\n0x16825\t0x8331\n0x16826\t0x8340\n0x16827\t0x8339\n0x16828\t0x8350\n0x16829\t0x8345\n0x1682A\t0x832F\n0x1682B\t0x832B\n0x1682C\t0x8317\n0x1682D\t0x8318\n0x1682E\t0x8385\n0x1682F\t0x839A\n0x16830\t0x83AA\n0x16831\t0x839F\n0x16832\t0x83A2\n0x16833\t0x8396\n0x16834\t0x8323\n0x16835\t0x838E\n0x16836\t0x8387\n0x16837\t0x838A\n0x16838\t0x837C\n0x16839\t0x83B5\n0x1683A\t0x8373\n0x1683B\t0x8375\n0x1683C\t0x83A0\n0x1683D\t0x8389\n0x1683E\t0x83A8\n0x1683F\t0x83F4\n0x16840\t0x8413\n0x16841\t0x83EB\n0x16842\t0x83CE\n0x16843\t0x83FD\n0x16844\t0x8403\n0x16845\t0x83D8\n0x16846\t0x840B\n0x16847\t0x83C1\n0x16848\t0x83F7\n0x16849\t0x8407\n0x1684A\t0x83E0\n0x1684B\t0x83F2\n0x1684C\t0x840D\n0x1684D\t0x8422\n0x1684E\t0x8420\n0x1684F\t0x83BD\n0x16850\t0x8438\n0x16851\t0x8506\n0x16852\t0x83FB\n0x16853\t0x846D\n0x16854\t0x842A\n0x16855\t0x843C\n0x16856\t0x855A\n0x16857\t0x8484\n0x16858\t0x8477\n0x16859\t0x846B\n0x1685A\t0x84AD\n0x1685B\t0x846E\n0x1685C\t0x8482\n0x1685D\t0x8469\n0x1685E\t0x8446\n0x1685F\t0x842C\n0x16860\t0x846F\n0x16861\t0x8479\n0x16862\t0x8435\n0x16863\t0x84CA\n0x16864\t0x8462\n0x16865\t0x84B9\n0x16866\t0x84BF\n0x16867\t0x849F\n0x16868\t0x84D9\n0x16869\t0x84CD\n0x1686A\t0x84BB\n0x1686B\t0x84DA\n0x1686C\t0x84D0\n0x1686D\t0x84C1\n0x1686E\t0x84C6\n0x1686F\t0x84D6\n0x16870\t0x84A1\n0x16871\t0x8521\n0x16872\t0x84FF\n0x16873\t0x84F4\n0x16874\t0x8517\n0x16875\t0x8518\n0x16876\t0x852C\n0x16877\t0x851F\n0x16878\t0x8515\n0x16879\t0x8514\n0x1687A\t0x84FC\n0x1687B\t0x8540\n0x1687C\t0x8563\n0x1687D\t0x8558\n0x1687E\t0x8548\n0x16921\t0x8541\n0x16922\t0x8602\n0x16923\t0x854B\n0x16924\t0x8555\n0x16925\t0x8580\n0x16926\t0x85A4\n0x16927\t0x8588\n0x16928\t0x8591\n0x16929\t0x858A\n0x1692A\t0x85A8\n0x1692B\t0x856D\n0x1692C\t0x8594\n0x1692D\t0x859B\n0x1692E\t0x85EA\n0x1692F\t0x8587\n0x16930\t0x859C\n0x16931\t0x8577\n0x16932\t0x857E\n0x16933\t0x8590\n0x16934\t0x85C9\n0x16935\t0x85BA\n0x16936\t0x85CF\n0x16937\t0x85B9\n0x16938\t0x85D0\n0x16939\t0x85D5\n0x1693A\t0x85DD\n0x1693B\t0x85E5\n0x1693C\t0x85DC\n0x1693D\t0x85F9\n0x1693E\t0x860A\n0x1693F\t0x8613\n0x16940\t0x860B\n0x16941\t0x85FE\n0x16942\t0x85FA\n0x16943\t0x8606\n0x16944\t0x8622\n0x16945\t0x861A\n0x16946\t0x8630\n0x16947\t0x863F\n0x16948\t0x864D\n0x16949\t0x4E55\n0x1694A\t0x8654\n0x1694B\t0x865F\n0x1694C\t0x8667\n0x1694D\t0x8671\n0x1694E\t0x8693\n0x1694F\t0x86A3\n0x16950\t0x86A9\n0x16951\t0x86AA\n0x16952\t0x868B\n0x16953\t0x868C\n0x16954\t0x86B6\n0x16955\t0x86AF\n0x16956\t0x86C4\n0x16957\t0x86C6\n0x16958\t0x86B0\n0x16959\t0x86C9\n0x1695A\t0x8823\n0x1695B\t0x86AB\n0x1695C\t0x86D4\n0x1695D\t0x86DE\n0x1695E\t0x86E9\n0x1695F\t0x86EC\n0x16960\t0x86DF\n0x16961\t0x86DB\n0x16962\t0x86EF\n0x16963\t0x8712\n0x16964\t0x8706\n0x16965\t0x8708\n0x16966\t0x8700\n0x16967\t0x8703\n0x16968\t0x86FB\n0x16969\t0x8711\n0x1696A\t0x8709\n0x1696B\t0x870D\n0x1696C\t0x86F9\n0x1696D\t0x870A\n0x1696E\t0x8734\n0x1696F\t0x873F\n0x16970\t0x8737\n0x16971\t0x873B\n0x16972\t0x8725\n0x16973\t0x8729\n0x16974\t0x871A\n0x16975\t0x8760\n0x16976\t0x875F\n0x16977\t0x8778\n0x16978\t0x874C\n0x16979\t0x874E\n0x1697A\t0x8774\n0x1697B\t0x8757\n0x1697C\t0x8768\n0x1697D\t0x876E\n0x1697E\t0x8759\n0x16A21\t0x8753\n0x16A22\t0x8763\n0x16A23\t0x876A\n0x16A24\t0x8805\n0x16A25\t0x87A2\n0x16A26\t0x879F\n0x16A27\t0x8782\n0x16A28\t0x87AF\n0x16A29\t0x87CB\n0x16A2A\t0x87BD\n0x16A2B\t0x87C0\n0x16A2C\t0x87D0\n0x16A2D\t0x96D6\n0x16A2E\t0x87AB\n0x16A2F\t0x87C4\n0x16A30\t0x87B3\n0x16A31\t0x87C7\n0x16A32\t0x87C6\n0x16A33\t0x87BB\n0x16A34\t0x87EF\n0x16A35\t0x87F2\n0x16A36\t0x87E0\n0x16A37\t0x880F\n0x16A38\t0x880D\n0x16A39\t0x87FE\n0x16A3A\t0x87F6\n0x16A3B\t0x87F7\n0x16A3C\t0x880E\n0x16A3D\t0x87D2\n0x16A3E\t0x8811\n0x16A3F\t0x8816\n0x16A40\t0x8815\n0x16A41\t0x8822\n0x16A42\t0x8821\n0x16A43\t0x8831\n0x16A44\t0x8836\n0x16A45\t0x8839\n0x16A46\t0x8827\n0x16A47\t0x883B\n0x16A48\t0x8844\n0x16A49\t0x8842\n0x16A4A\t0x8852\n0x16A4B\t0x8859\n0x16A4C\t0x885E\n0x16A4D\t0x8862\n0x16A4E\t0x886B\n0x16A4F\t0x8881\n0x16A50\t0x887E\n0x16A51\t0x889E\n0x16A52\t0x8875\n0x16A53\t0x887D\n0x16A54\t0x88B5\n0x16A55\t0x8872\n0x16A56\t0x8882\n0x16A57\t0x8897\n0x16A58\t0x8892\n0x16A59\t0x88AE\n0x16A5A\t0x8899\n0x16A5B\t0x88A2\n0x16A5C\t0x888D\n0x16A5D\t0x88A4\n0x16A5E\t0x88B0\n0x16A5F\t0x88BF\n0x16A60\t0x88B1\n0x16A61\t0x88C3\n0x16A62\t0x88C4\n0x16A63\t0x88D4\n0x16A64\t0x88D8\n0x16A65\t0x88D9\n0x16A66\t0x88DD\n0x16A67\t0x88F9\n0x16A68\t0x8902\n0x16A69\t0x88FC\n0x16A6A\t0x88F4\n0x16A6B\t0x88E8\n0x16A6C\t0x88F2\n0x16A6D\t0x8904\n0x16A6E\t0x890C\n0x16A6F\t0x890A\n0x16A70\t0x8913\n0x16A71\t0x8943\n0x16A72\t0x891E\n0x16A73\t0x8925\n0x16A74\t0x892A\n0x16A75\t0x892B\n0x16A76\t0x8941\n0x16A77\t0x8944\n0x16A78\t0x893B\n0x16A79\t0x8936\n0x16A7A\t0x8938\n0x16A7B\t0x894C\n0x16A7C\t0x891D\n0x16A7D\t0x8960\n0x16A7E\t0x895E\n0x16B21\t0x8966\n0x16B22\t0x8964\n0x16B23\t0x896D\n0x16B24\t0x896A\n0x16B25\t0x896F\n0x16B26\t0x8974\n0x16B27\t0x8977\n0x16B28\t0x897E\n0x16B29\t0x8983\n0x16B2A\t0x8988\n0x16B2B\t0x898A\n0x16B2C\t0x8993\n0x16B2D\t0x8998\n0x16B2E\t0x89A1\n0x16B2F\t0x89A9\n0x16B30\t0x89A6\n0x16B31\t0x89AC\n0x16B32\t0x89AF\n0x16B33\t0x89B2\n0x16B34\t0x89BA\n0x16B35\t0x89BD\n0x16B36\t0x89BF\n0x16B37\t0x89C0\n0x16B38\t0x89DA\n0x16B39\t0x89DC\n0x16B3A\t0x89DD\n0x16B3B\t0x89E7\n0x16B3C\t0x89F4\n0x16B3D\t0x89F8\n0x16B3E\t0x8A03\n0x16B3F\t0x8A16\n0x16B40\t0x8A10\n0x16B41\t0x8A0C\n0x16B42\t0x8A1B\n0x16B43\t0x8A1D\n0x16B44\t0x8A25\n0x16B45\t0x8A36\n0x16B46\t0x8A41\n0x16B47\t0x8A5B\n0x16B48\t0x8A52\n0x16B49\t0x8A46\n0x16B4A\t0x8A48\n0x16B4B\t0x8A7C\n0x16B4C\t0x8A6D\n0x16B4D\t0x8A6C\n0x16B4E\t0x8A62\n0x16B4F\t0x8A85\n0x16B50\t0x8A82\n0x16B51\t0x8A84\n0x16B52\t0x8AA8\n0x16B53\t0x8AA1\n0x16B54\t0x8A91\n0x16B55\t0x8AA5\n0x16B56\t0x8AA6\n0x16B57\t0x8A9A\n0x16B58\t0x8AA3\n0x16B59\t0x8AC4\n0x16B5A\t0x8ACD\n0x16B5B\t0x8AC2\n0x16B5C\t0x8ADA\n0x16B5D\t0x8AEB\n0x16B5E\t0x8AF3\n0x16B5F\t0x8AE7\n0x16B60\t0x8AE4\n0x16B61\t0x8AF1\n0x16B62\t0x8B14\n0x16B63\t0x8AE0\n0x16B64\t0x8AE2\n0x16B65\t0x8AF7\n0x16B66\t0x8ADE\n0x16B67\t0x8ADB\n0x16B68\t0x8B0C\n0x16B69\t0x8B07\n0x16B6A\t0x8B1A\n0x16B6B\t0x8AE1\n0x16B6C\t0x8B16\n0x16B6D\t0x8B10\n0x16B6E\t0x8B17\n0x16B6F\t0x8B20\n0x16B70\t0x8B33\n0x16B71\t0x97AB\n0x16B72\t0x8B26\n0x16B73\t0x8B2B\n0x16B74\t0x8B3E\n0x16B75\t0x8B28\n0x16B76\t0x8B41\n0x16B77\t0x8B4C\n0x16B78\t0x8B4F\n0x16B79\t0x8B4E\n0x16B7A\t0x8B49\n0x16B7B\t0x8B56\n0x16B7C\t0x8B5B\n0x16B7D\t0x8B5A\n0x16B7E\t0x8B6B\n0x16C21\t0x8B5F\n0x16C22\t0x8B6C\n0x16C23\t0x8B6F\n0x16C24\t0x8B74\n0x16C25\t0x8B7D\n0x16C26\t0x8B80\n0x16C27\t0x8B8C\n0x16C28\t0x8B8E\n0x16C29\t0x8B92\n0x16C2A\t0x8B93\n0x16C2B\t0x8B96\n0x16C2C\t0x8B99\n0x16C2D\t0x8B9A\n0x16C2E\t0x8C3A\n0x16C2F\t0x8C41\n0x16C30\t0x8C3F\n0x16C31\t0x8C48\n0x16C32\t0x8C4C\n0x16C33\t0x8C4E\n0x16C34\t0x8C50\n0x16C35\t0x8C55\n0x16C36\t0x8C62\n0x16C37\t0x8C6C\n0x16C38\t0x8C78\n0x16C39\t0x8C7A\n0x16C3A\t0x8C82\n0x16C3B\t0x8C89\n0x16C3C\t0x8C85\n0x16C3D\t0x8C8A\n0x16C3E\t0x8C8D\n0x16C3F\t0x8C8E\n0x16C40\t0x8C94\n0x16C41\t0x8C7C\n0x16C42\t0x8C98\n0x16C43\t0x621D\n0x16C44\t0x8CAD\n0x16C45\t0x8CAA\n0x16C46\t0x8CBD\n0x16C47\t0x8CB2\n0x16C48\t0x8CB3\n0x16C49\t0x8CAE\n0x16C4A\t0x8CB6\n0x16C4B\t0x8CC8\n0x16C4C\t0x8CC1\n0x16C4D\t0x8CE4\n0x16C4E\t0x8CE3\n0x16C4F\t0x8CDA\n0x16C50\t0x8CFD\n0x16C51\t0x8CFA\n0x16C52\t0x8CFB\n0x16C53\t0x8D04\n0x16C54\t0x8D05\n0x16C55\t0x8D0A\n0x16C56\t0x8D07\n0x16C57\t0x8D0F\n0x16C58\t0x8D0D\n0x16C59\t0x8D10\n0x16C5A\t0x9F4E\n0x16C5B\t0x8D13\n0x16C5C\t0x8CCD\n0x16C5D\t0x8D14\n0x16C5E\t0x8D16\n0x16C5F\t0x8D67\n0x16C60\t0x8D6D\n0x16C61\t0x8D71\n0x16C62\t0x8D73\n0x16C63\t0x8D81\n0x16C64\t0x8D99\n0x16C65\t0x8DC2\n0x16C66\t0x8DBE\n0x16C67\t0x8DBA\n0x16C68\t0x8DCF\n0x16C69\t0x8DDA\n0x16C6A\t0x8DD6\n0x16C6B\t0x8DCC\n0x16C6C\t0x8DDB\n0x16C6D\t0x8DCB\n0x16C6E\t0x8DEA\n0x16C6F\t0x8DEB\n0x16C70\t0x8DDF\n0x16C71\t0x8DE3\n0x16C72\t0x8DFC\n0x16C73\t0x8E08\n0x16C74\t0x8E09\n0x16C75\t0x8DFF\n0x16C76\t0x8E1D\n0x16C77\t0x8E1E\n0x16C78\t0x8E10\n0x16C79\t0x8E1F\n0x16C7A\t0x8E42\n0x16C7B\t0x8E35\n0x16C7C\t0x8E30\n0x16C7D\t0x8E34\n0x16C7E\t0x8E4A\n0x16D21\t0x8E47\n0x16D22\t0x8E49\n0x16D23\t0x8E4C\n0x16D24\t0x8E50\n0x16D25\t0x8E48\n0x16D26\t0x8E59\n0x16D27\t0x8E64\n0x16D28\t0x8E60\n0x16D29\t0x8E2A\n0x16D2A\t0x8E63\n0x16D2B\t0x8E55\n0x16D2C\t0x8E76\n0x16D2D\t0x8E72\n0x16D2E\t0x8E7C\n0x16D2F\t0x8E81\n0x16D30\t0x8E87\n0x16D31\t0x8E85\n0x16D32\t0x8E84\n0x16D33\t0x8E8B\n0x16D34\t0x8E8A\n0x16D35\t0x8E93\n0x16D36\t0x8E91\n0x16D37\t0x8E94\n0x16D38\t0x8E99\n0x16D39\t0x8EAA\n0x16D3A\t0x8EA1\n0x16D3B\t0x8EAC\n0x16D3C\t0x8EB0\n0x16D3D\t0x8EC6\n0x16D3E\t0x8EB1\n0x16D3F\t0x8EBE\n0x16D40\t0x8EC5\n0x16D41\t0x8EC8\n0x16D42\t0x8ECB\n0x16D43\t0x8EDB\n0x16D44\t0x8EE3\n0x16D45\t0x8EFC\n0x16D46\t0x8EFB\n0x16D47\t0x8EEB\n0x16D48\t0x8EFE\n0x16D49\t0x8F0A\n0x16D4A\t0x8F05\n0x16D4B\t0x8F15\n0x16D4C\t0x8F12\n0x16D4D\t0x8F19\n0x16D4E\t0x8F13\n0x16D4F\t0x8F1C\n0x16D50\t0x8F1F\n0x16D51\t0x8F1B\n0x16D52\t0x8F0C\n0x16D53\t0x8F26\n0x16D54\t0x8F33\n0x16D55\t0x8F3B\n0x16D56\t0x8F39\n0x16D57\t0x8F45\n0x16D58\t0x8F42\n0x16D59\t0x8F3E\n0x16D5A\t0x8F4C\n0x16D5B\t0x8F49\n0x16D5C\t0x8F46\n0x16D5D\t0x8F4E\n0x16D5E\t0x8F57\n0x16D5F\t0x8F5C\n0x16D60\t0x8F62\n0x16D61\t0x8F63\n0x16D62\t0x8F64\n0x16D63\t0x8F9C\n0x16D64\t0x8F9F\n0x16D65\t0x8FA3\n0x16D66\t0x8FAD\n0x16D67\t0x8FAF\n0x16D68\t0x8FB7\n0x16D69\t0x8FDA\n0x16D6A\t0x8FE5\n0x16D6B\t0x8FE2\n0x16D6C\t0x8FEA\n0x16D6D\t0x8FEF\n0x16D6E\t0x9087\n0x16D6F\t0x8FF4\n0x16D70\t0x9005\n0x16D71\t0x8FF9\n0x16D72\t0x8FFA\n0x16D73\t0x9011\n0x16D74\t0x9015\n0x16D75\t0x9021\n0x16D76\t0x900D\n0x16D77\t0x901E\n0x16D78\t0x9016\n0x16D79\t0x900B\n0x16D7A\t0x9027\n0x16D7B\t0x9036\n0x16D7C\t0x9035\n0x16D7D\t0x9039\n0x16D7E\t0x8FF8\n0x16E21\t0x904F\n0x16E22\t0x9050\n0x16E23\t0x9051\n0x16E24\t0x9052\n0x16E25\t0x900E\n0x16E26\t0x9049\n0x16E27\t0x903E\n0x16E28\t0x9056\n0x16E29\t0x9058\n0x16E2A\t0x905E\n0x16E2B\t0x9068\n0x16E2C\t0x906F\n0x16E2D\t0x9076\n0x16E2E\t0x96A8\n0x16E2F\t0x9072\n0x16E30\t0x9082\n0x16E31\t0x907D\n0x16E32\t0x9081\n0x16E33\t0x9080\n0x16E34\t0x908A\n0x16E35\t0x9089\n0x16E36\t0x908F\n0x16E37\t0x90A8\n0x16E38\t0x90AF\n0x16E39\t0x90B1\n0x16E3A\t0x90B5\n0x16E3B\t0x90E2\n0x16E3C\t0x90E4\n0x16E3D\t0x6248\n0x16E3E\t0x90DB\n0x16E3F\t0x9102\n0x16E40\t0x9112\n0x16E41\t0x9119\n0x16E42\t0x9132\n0x16E43\t0x9130\n0x16E44\t0x914A\n0x16E45\t0x9156\n0x16E46\t0x9158\n0x16E47\t0x9163\n0x16E48\t0x9165\n0x16E49\t0x9169\n0x16E4A\t0x9173\n0x16E4B\t0x9172\n0x16E4C\t0x918B\n0x16E4D\t0x9189\n0x16E4E\t0x9182\n0x16E4F\t0x91A2\n0x16E50\t0x91AB\n0x16E51\t0x91AF\n0x16E52\t0x91AA\n0x16E53\t0x91B5\n0x16E54\t0x91B4\n0x16E55\t0x91BA\n0x16E56\t0x91C0\n0x16E57\t0x91C1\n0x16E58\t0x91C9\n0x16E59\t0x91CB\n0x16E5A\t0x91D0\n0x16E5B\t0x91D6\n0x16E5C\t0x91DF\n0x16E5D\t0x91E1\n0x16E5E\t0x91DB\n0x16E5F\t0x91FC\n0x16E60\t0x91F5\n0x16E61\t0x91F6\n0x16E62\t0x921E\n0x16E63\t0x91FF\n0x16E64\t0x9214\n0x16E65\t0x922C\n0x16E66\t0x9215\n0x16E67\t0x9211\n0x16E68\t0x925E\n0x16E69\t0x9257\n0x16E6A\t0x9245\n0x16E6B\t0x9249\n0x16E6C\t0x9264\n0x16E6D\t0x9248\n0x16E6E\t0x9295\n0x16E6F\t0x923F\n0x16E70\t0x924B\n0x16E71\t0x9250\n0x16E72\t0x929C\n0x16E73\t0x9296\n0x16E74\t0x9293\n0x16E75\t0x929B\n0x16E76\t0x925A\n0x16E77\t0x92CF\n0x16E78\t0x92B9\n0x16E79\t0x92B7\n0x16E7A\t0x92E9\n0x16E7B\t0x930F\n0x16E7C\t0x92FA\n0x16E7D\t0x9344\n0x16E7E\t0x932E\n0x16F21\t0x9319\n0x16F22\t0x9322\n0x16F23\t0x931A\n0x16F24\t0x9323\n0x16F25\t0x933A\n0x16F26\t0x9335\n0x16F27\t0x933B\n0x16F28\t0x935C\n0x16F29\t0x9360\n0x16F2A\t0x937C\n0x16F2B\t0x936E\n0x16F2C\t0x9356\n0x16F2D\t0x93B0\n0x16F2E\t0x93AC\n0x16F2F\t0x93AD\n0x16F30\t0x9394\n0x16F31\t0x93B9\n0x16F32\t0x93D6\n0x16F33\t0x93D7\n0x16F34\t0x93E8\n0x16F35\t0x93E5\n0x16F36\t0x93D8\n0x16F37\t0x93C3\n0x16F38\t0x93DD\n0x16F39\t0x93D0\n0x16F3A\t0x93C8\n0x16F3B\t0x93E4\n0x16F3C\t0x941A\n0x16F3D\t0x9414\n0x16F3E\t0x9413\n0x16F3F\t0x9403\n0x16F40\t0x9407\n0x16F41\t0x9410\n0x16F42\t0x9436\n0x16F43\t0x942B\n0x16F44\t0x9435\n0x16F45\t0x9421\n0x16F46\t0x943A\n0x16F47\t0x9441\n0x16F48\t0x9452\n0x16F49\t0x9444\n0x16F4A\t0x945B\n0x16F4B\t0x9460\n0x16F4C\t0x9462\n0x16F4D\t0x945E\n0x16F4E\t0x946A\n0x16F4F\t0x9229\n0x16F50\t0x9470\n0x16F51\t0x9475\n0x16F52\t0x9477\n0x16F53\t0x947D\n0x16F54\t0x945A\n0x16F55\t0x947C\n0x16F56\t0x947E\n0x16F57\t0x9481\n0x16F58\t0x947F\n0x16F59\t0x9582\n0x16F5A\t0x9587\n0x16F5B\t0x958A\n0x16F5C\t0x9594\n0x16F5D\t0x9596\n0x16F5E\t0x9598\n0x16F5F\t0x9599\n0x16F60\t0x95A0\n0x16F61\t0x95A8\n0x16F62\t0x95A7\n0x16F63\t0x95AD\n0x16F64\t0x95BC\n0x16F65\t0x95BB\n0x16F66\t0x95B9\n0x16F67\t0x95BE\n0x16F68\t0x95CA\n0x16F69\t0x6FF6\n0x16F6A\t0x95C3\n0x16F6B\t0x95CD\n0x16F6C\t0x95CC\n0x16F6D\t0x95D5\n0x16F6E\t0x95D4\n0x16F6F\t0x95D6\n0x16F70\t0x95DC\n0x16F71\t0x95E1\n0x16F72\t0x95E5\n0x16F73\t0x95E2\n0x16F74\t0x9621\n0x16F75\t0x9628\n0x16F76\t0x962E\n0x16F77\t0x962F\n0x16F78\t0x9642\n0x16F79\t0x964C\n0x16F7A\t0x964F\n0x16F7B\t0x964B\n0x16F7C\t0x9677\n0x16F7D\t0x965C\n0x16F7E\t0x965E\n0x17021\t0x965D\n0x17022\t0x965F\n0x17023\t0x9666\n0x17024\t0x9672\n0x17025\t0x966C\n0x17026\t0x968D\n0x17027\t0x9698\n0x17028\t0x9695\n0x17029\t0x9697\n0x1702A\t0x96AA\n0x1702B\t0x96A7\n0x1702C\t0x96B1\n0x1702D\t0x96B2\n0x1702E\t0x96B0\n0x1702F\t0x96B4\n0x17030\t0x96B6\n0x17031\t0x96B8\n0x17032\t0x96B9\n0x17033\t0x96CE\n0x17034\t0x96CB\n0x17035\t0x96C9\n0x17036\t0x96CD\n0x17037\t0x894D\n0x17038\t0x96DC\n0x17039\t0x970D\n0x1703A\t0x96D5\n0x1703B\t0x96F9\n0x1703C\t0x9704\n0x1703D\t0x9706\n0x1703E\t0x9708\n0x1703F\t0x9713\n0x17040\t0x970E\n0x17041\t0x9711\n0x17042\t0x970F\n0x17043\t0x9716\n0x17044\t0x9719\n0x17045\t0x9724\n0x17046\t0x972A\n0x17047\t0x9730\n0x17048\t0x9739\n0x17049\t0x973D\n0x1704A\t0x973E\n0x1704B\t0x9744\n0x1704C\t0x9746\n0x1704D\t0x9748\n0x1704E\t0x9742\n0x1704F\t0x9749\n0x17050\t0x975C\n0x17051\t0x9760\n0x17052\t0x9764\n0x17053\t0x9766\n0x17054\t0x9768\n0x17055\t0x52D2\n0x17056\t0x976B\n0x17057\t0x9771\n0x17058\t0x9779\n0x17059\t0x9785\n0x1705A\t0x977C\n0x1705B\t0x9781\n0x1705C\t0x977A\n0x1705D\t0x9786\n0x1705E\t0x978B\n0x1705F\t0x978F\n0x17060\t0x9790\n0x17061\t0x979C\n0x17062\t0x97A8\n0x17063\t0x97A6\n0x17064\t0x97A3\n0x17065\t0x97B3\n0x17066\t0x97B4\n0x17067\t0x97C3\n0x17068\t0x97C6\n0x17069\t0x97C8\n0x1706A\t0x97CB\n0x1706B\t0x97DC\n0x1706C\t0x97ED\n0x1706D\t0x9F4F\n0x1706E\t0x97F2\n0x1706F\t0x7ADF\n0x17070\t0x97F6\n0x17071\t0x97F5\n0x17072\t0x980F\n0x17073\t0x980C\n0x17074\t0x9838\n0x17075\t0x9824\n0x17076\t0x9821\n0x17077\t0x9837\n0x17078\t0x983D\n0x17079\t0x9846\n0x1707A\t0x984F\n0x1707B\t0x984B\n0x1707C\t0x986B\n0x1707D\t0x986F\n0x1707E\t0x9870\n0x17121\t0x9871\n0x17122\t0x9874\n0x17123\t0x9873\n0x17124\t0x98AA\n0x17125\t0x98AF\n0x17126\t0x98B1\n0x17127\t0x98B6\n0x17128\t0x98C4\n0x17129\t0x98C3\n0x1712A\t0x98C6\n0x1712B\t0x98E9\n0x1712C\t0x98EB\n0x1712D\t0x9903\n0x1712E\t0x9909\n0x1712F\t0x9912\n0x17130\t0x9914\n0x17131\t0x9918\n0x17132\t0x9921\n0x17133\t0x991D\n0x17134\t0x991E\n0x17135\t0x9924\n0x17136\t0x9920\n0x17137\t0x992C\n0x17138\t0x992E\n0x17139\t0x993D\n0x1713A\t0x993E\n0x1713B\t0x9942\n0x1713C\t0x9949\n0x1713D\t0x9945\n0x1713E\t0x9950\n0x1713F\t0x994B\n0x17140\t0x9951\n0x17141\t0x9952\n0x17142\t0x994C\n0x17143\t0x9955\n0x17144\t0x9997\n0x17145\t0x9998\n0x17146\t0x99A5\n0x17147\t0x99AD\n0x17148\t0x99AE\n0x17149\t0x99BC\n0x1714A\t0x99DF\n0x1714B\t0x99DB\n0x1714C\t0x99DD\n0x1714D\t0x99D8\n0x1714E\t0x99D1\n0x1714F\t0x99ED\n0x17150\t0x99EE\n0x17151\t0x99F1\n0x17152\t0x99F2\n0x17153\t0x99FB\n0x17154\t0x99F8\n0x17155\t0x9A01\n0x17156\t0x9A0F\n0x17157\t0x9A05\n0x17158\t0x99E2\n0x17159\t0x9A19\n0x1715A\t0x9A2B\n0x1715B\t0x9A37\n0x1715C\t0x9A45\n0x1715D\t0x9A42\n0x1715E\t0x9A40\n0x1715F\t0x9A43\n0x17160\t0x9A3E\n0x17161\t0x9A55\n0x17162\t0x9A4D\n0x17163\t0x9A5B\n0x17164\t0x9A57\n0x17165\t0x9A5F\n0x17166\t0x9A62\n0x17167\t0x9A65\n0x17168\t0x9A64\n0x17169\t0x9A69\n0x1716A\t0x9A6B\n0x1716B\t0x9A6A\n0x1716C\t0x9AAD\n0x1716D\t0x9AB0\n0x1716E\t0x9ABC\n0x1716F\t0x9AC0\n0x17170\t0x9ACF\n0x17171\t0x9AD1\n0x17172\t0x9AD3\n0x17173\t0x9AD4\n0x17174\t0x9ADE\n0x17175\t0x9ADF\n0x17176\t0x9AE2\n0x17177\t0x9AE3\n0x17178\t0x9AE6\n0x17179\t0x9AEF\n0x1717A\t0x9AEB\n0x1717B\t0x9AEE\n0x1717C\t0x9AF4\n0x1717D\t0x9AF1\n0x1717E\t0x9AF7\n0x17221\t0x9AFB\n0x17222\t0x9B06\n0x17223\t0x9B18\n0x17224\t0x9B1A\n0x17225\t0x9B1F\n0x17226\t0x9B22\n0x17227\t0x9B23\n0x17228\t0x9B25\n0x17229\t0x9B27\n0x1722A\t0x9B28\n0x1722B\t0x9B29\n0x1722C\t0x9B2A\n0x1722D\t0x9B2E\n0x1722E\t0x9B2F\n0x1722F\t0x9B32\n0x17230\t0x9B44\n0x17231\t0x9B43\n0x17232\t0x9B4F\n0x17233\t0x9B4D\n0x17234\t0x9B4E\n0x17235\t0x9B51\n0x17236\t0x9B58\n0x17237\t0x9B74\n0x17238\t0x9B93\n0x17239\t0x9B83\n0x1723A\t0x9B91\n0x1723B\t0x9B96\n0x1723C\t0x9B97\n0x1723D\t0x9B9F\n0x1723E\t0x9BA0\n0x1723F\t0x9BA8\n0x17240\t0x9BB4\n0x17241\t0x9BC0\n0x17242\t0x9BCA\n0x17243\t0x9BB9\n0x17244\t0x9BC6\n0x17245\t0x9BCF\n0x17246\t0x9BD1\n0x17247\t0x9BD2\n0x17248\t0x9BE3\n0x17249\t0x9BE2\n0x1724A\t0x9BE4\n0x1724B\t0x9BD4\n0x1724C\t0x9BE1\n0x1724D\t0x9C3A\n0x1724E\t0x9BF2\n0x1724F\t0x9BF1\n0x17250\t0x9BF0\n0x17251\t0x9C15\n0x17252\t0x9C14\n0x17253\t0x9C09\n0x17254\t0x9C13\n0x17255\t0x9C0C\n0x17256\t0x9C06\n0x17257\t0x9C08\n0x17258\t0x9C12\n0x17259\t0x9C0A\n0x1725A\t0x9C04\n0x1725B\t0x9C2E\n0x1725C\t0x9C1B\n0x1725D\t0x9C25\n0x1725E\t0x9C24\n0x1725F\t0x9C21\n0x17260\t0x9C30\n0x17261\t0x9C47\n0x17262\t0x9C32\n0x17263\t0x9C46\n0x17264\t0x9C3E\n0x17265\t0x9C5A\n0x17266\t0x9C60\n0x17267\t0x9C67\n0x17268\t0x9C76\n0x17269\t0x9C78\n0x1726A\t0x9CE7\n0x1726B\t0x9CEC\n0x1726C\t0x9CF0\n0x1726D\t0x9D09\n0x1726E\t0x9D08\n0x1726F\t0x9CEB\n0x17270\t0x9D03\n0x17271\t0x9D06\n0x17272\t0x9D2A\n0x17273\t0x9D26\n0x17274\t0x9DAF\n0x17275\t0x9D23\n0x17276\t0x9D1F\n0x17277\t0x9D44\n0x17278\t0x9D15\n0x17279\t0x9D12\n0x1727A\t0x9D41\n0x1727B\t0x9D3F\n0x1727C\t0x9D3E\n0x1727D\t0x9D46\n0x1727E\t0x9D48\n0x17321\t0x9D5D\n0x17322\t0x9D5E\n0x17323\t0x9D64\n0x17324\t0x9D51\n0x17325\t0x9D50\n0x17326\t0x9D59\n0x17327\t0x9D72\n0x17328\t0x9D89\n0x17329\t0x9D87\n0x1732A\t0x9DAB\n0x1732B\t0x9D6F\n0x1732C\t0x9D7A\n0x1732D\t0x9D9A\n0x1732E\t0x9DA4\n0x1732F\t0x9DA9\n0x17330\t0x9DB2\n0x17331\t0x9DC4\n0x17332\t0x9DC1\n0x17333\t0x9DBB\n0x17334\t0x9DB8\n0x17335\t0x9DBA\n0x17336\t0x9DC6\n0x17337\t0x9DCF\n0x17338\t0x9DC2\n0x17339\t0x9DD9\n0x1733A\t0x9DD3\n0x1733B\t0x9DF8\n0x1733C\t0x9DE6\n0x1733D\t0x9DED\n0x1733E\t0x9DEF\n0x1733F\t0x9DFD\n0x17340\t0x9E1A\n0x17341\t0x9E1B\n0x17342\t0x9E1E\n0x17343\t0x9E75\n0x17344\t0x9E79\n0x17345\t0x9E7D\n0x17346\t0x9E81\n0x17347\t0x9E88\n0x17348\t0x9E8B\n0x17349\t0x9E8C\n0x1734A\t0x9E92\n0x1734B\t0x9E95\n0x1734C\t0x9E91\n0x1734D\t0x9E9D\n0x1734E\t0x9EA5\n0x1734F\t0x9EA9\n0x17350\t0x9EB8\n0x17351\t0x9EAA\n0x17352\t0x9EAD\n0x17353\t0x9761\n0x17354\t0x9ECC\n0x17355\t0x9ECE\n0x17356\t0x9ECF\n0x17357\t0x9ED0\n0x17358\t0x9ED4\n0x17359\t0x9EDC\n0x1735A\t0x9EDE\n0x1735B\t0x9EDD\n0x1735C\t0x9EE0\n0x1735D\t0x9EE5\n0x1735E\t0x9EE8\n0x1735F\t0x9EEF\n0x17360\t0x9EF4\n0x17361\t0x9EF6\n0x17362\t0x9EF7\n0x17363\t0x9EF9\n0x17364\t0x9EFB\n0x17365\t0x9EFC\n0x17366\t0x9EFD\n0x17367\t0x9F07\n0x17368\t0x9F08\n0x17369\t0x76B7\n0x1736A\t0x9F15\n0x1736B\t0x9F21\n0x1736C\t0x9F2C\n0x1736D\t0x9F3E\n0x1736E\t0x9F4A\n0x1736F\t0x9F52\n0x17370\t0x9F54\n0x17371\t0x9F63\n0x17372\t0x9F5F\n0x17373\t0x9F60\n0x17374\t0x9F61\n0x17375\t0x9F66\n0x17376\t0x9F67\n0x17377\t0x9F6C\n0x17378\t0x9F6A\n0x17379\t0x9F77\n0x1737A\t0x9F72\n0x1737B\t0x9F76\n0x1737C\t0x9F95\n0x1737D\t0x9F9C\n0x1737E\t0x9FA0\n0x17421\t0x582F\n0x17422\t0x69C7\n0x17423\t0x9059\n0x17424\t0x7464\n0x17425\t0x51DC\n0x17426\t0x7199\n0x17427\t0x5653\n0x17428\t0x5DE2\n0x17429\t0x5E14\n0x1742A\t0x5E18\n0x1742B\t0x5E58\n0x1742C\t0x5E5E\n0x1742D\t0x5EBE\n0x1742E\t0xF928\n0x1742F\t0x5ECB\n0x17430\t0x5EF9\n0x17431\t0x5F00\n0x17432\t0x5F02\n0x17433\t0x5F07\n0x17434\t0x5F1D\n0x17435\t0x5F23\n0x17436\t0x5F34\n0x17437\t0x5F36\n0x17438\t0x5F3D\n0x17439\t0x5F40\n0x1743A\t0x5F45\n0x1743B\t0x5F54\n0x1743C\t0x5F58\n0x1743D\t0x5F64\n0x1743E\t0x5F67\n0x1743F\t0x5F7D\n0x17440\t0x5F89\n0x17441\t0x5F9C\n0x17442\t0x5FA7\n0x17443\t0x5FAF\n0x17444\t0x5FB5\n0x17445\t0x5FB7\n0x17446\t0x5FC9\n0x17447\t0x5FDE\n0x17448\t0x5FE1\n0x17449\t0x5FE9\n0x1744A\t0x600D\n0x1744B\t0x6014\n0x1744C\t0x6018\n0x1744D\t0x6033\n0x1744E\t0x6035\n0x1744F\t0x6047\n0x17450\t0xFA3D\n0x17451\t0x609D\n0x17452\t0x609E\n0x17453\t0x60CB\n0x17454\t0x60D4\n0x17455\t0x60D5\n0x17456\t0x60DD\n0x17457\t0x60F8\n0x17458\t0x611C\n0x17459\t0x612B\n0x1745A\t0x6130\n0x1745B\t0x6137\n0x1745C\t0xFA3E\n0x1745D\t0x618D\n0x1745E\t0xFA3F\n0x1745F\t0x61BC\n0x17460\t0x61B9\n0x17461\t0xFA40\n0x17462\t0x6222\n0x17463\t0x623E\n0x17464\t0x6243\n0x17465\t0x6256\n0x17466\t0x625A\n0x17467\t0x626F\n0x17468\t0x6285\n0x17469\t0x62C4\n0x1746A\t0x62D6\n0x1746B\t0x62FC\n0x1746C\t0x630A\n0x1746D\t0x6318\n0x1746E\t0x6339\n0x1746F\t0x6343\n0x17470\t0x6365\n0x17471\t0x637C\n0x17472\t0x63E5\n0x17473\t0x63ED\n0x17474\t0x63F5\n0x17475\t0x6410\n0x17476\t0x6414\n0x17477\t0x6422\n0x17478\t0x6479\n0x17479\t0x6451\n0x1747A\t0x6460\n0x1747B\t0x646D\n0x1747C\t0x64CE\n0x1747D\t0x64BE\n0x1747E\t0x64BF\n0x17521\t0x64C4\n0x17522\t0x64CA\n0x17523\t0x64D0\n0x17524\t0x64F7\n0x17525\t0x64FB\n0x17526\t0x6522\n0x17527\t0x6529\n0x17528\t0xFA41\n0x17529\t0x6567\n0x1752A\t0x659D\n0x1752B\t0xFA42\n0x1752C\t0x6600\n0x1752D\t0x6609\n0x1752E\t0x6615\n0x1752F\t0x661E\n0x17530\t0x663A\n0x17531\t0x6622\n0x17532\t0x6624\n0x17533\t0x662B\n0x17534\t0x6630\n0x17535\t0x6631\n0x17536\t0x6633\n0x17537\t0x66FB\n0x17538\t0x6648\n0x17539\t0x664C\n0x1753A\t0x231C4\n0x1753B\t0x6659\n0x1753C\t0x665A\n0x1753D\t0x6661\n0x1753E\t0x6665\n0x1753F\t0x6673\n0x17540\t0x6677\n0x17541\t0x6678\n0x17542\t0x668D\n0x17543\t0xFA43\n0x17544\t0x66A0\n0x17545\t0x66B2\n0x17546\t0x66BB\n0x17547\t0x66C6\n0x17548\t0x66C8\n0x17549\t0x3B22\n0x1754A\t0x66DB\n0x1754B\t0x66E8\n0x1754C\t0x66FA\n0x1754D\t0x6713\n0x1754E\t0xF929\n0x1754F\t0x6733\n0x17550\t0x6766\n0x17551\t0x6747\n0x17552\t0x6748\n0x17553\t0x677B\n0x17554\t0x6781\n0x17555\t0x6793\n0x17556\t0x6798\n0x17557\t0x679B\n0x17558\t0x67BB\n0x17559\t0x67F9\n0x1755A\t0x67C0\n0x1755B\t0x67D7\n0x1755C\t0x67FC\n0x1755D\t0x6801\n0x1755E\t0x6852\n0x1755F\t0x681D\n0x17560\t0x682C\n0x17561\t0x6831\n0x17562\t0x685B\n0x17563\t0x6872\n0x17564\t0x6875\n0x17565\t0xFA44\n0x17566\t0x68A3\n0x17567\t0x68A5\n0x17568\t0x68B2\n0x17569\t0x68C8\n0x1756A\t0x68D0\n0x1756B\t0x68E8\n0x1756C\t0x68ED\n0x1756D\t0x68F0\n0x1756E\t0x68F1\n0x1756F\t0x68FC\n0x17570\t0x690A\n0x17571\t0x6949\n0x17572\t0x235C4\n0x17573\t0x6935\n0x17574\t0x6942\n0x17575\t0x6957\n0x17576\t0x6963\n0x17577\t0x6964\n0x17578\t0x6968\n0x17579\t0x6980\n0x1757A\t0xFA14\n0x1757B\t0x69A5\n0x1757C\t0x69AD\n0x1757D\t0x69CF\n0x1757E\t0x3BB6\n0x17621\t0x3BC3\n0x17622\t0x69E2\n0x17623\t0x69E9\n0x17624\t0x69EA\n0x17625\t0x69F5\n0x17626\t0x69F6\n0x17627\t0x6A0F\n0x17628\t0x6A15\n0x17629\t0x2373F\n0x1762A\t0x6A3B\n0x1762B\t0x6A3E\n0x1762C\t0x6A45\n0x1762D\t0x6A50\n0x1762E\t0x6A56\n0x1762F\t0x6A5B\n0x17630\t0x6A6B\n0x17631\t0x6A73\n0x17632\t0x23763\n0x17633\t0x6A89\n0x17634\t0x6A94\n0x17635\t0x6A9D\n0x17636\t0x6A9E\n0x17637\t0x6AA5\n0x17638\t0x6AE4\n0x17639\t0x6AE7\n0x1763A\t0x3C0F\n0x1763B\t0xF91D\n0x1763C\t0x6B1B\n0x1763D\t0x6B1E\n0x1763E\t0x6B2C\n0x1763F\t0x6B35\n0x17640\t0x6B46\n0x17641\t0x6B56\n0x17642\t0x6B60\n0x17643\t0x6B65\n0x17644\t0x6B67\n0x17645\t0x6B77\n0x17646\t0x6B82\n0x17647\t0x6BA9\n0x17648\t0x6BAD\n0x17649\t0xF970\n0x1764A\t0x6BCF\n0x1764B\t0x6BD6\n0x1764C\t0x6BD7\n0x1764D\t0x6BFF\n0x1764E\t0x6C05\n0x1764F\t0x6C10\n0x17650\t0x6C33\n0x17651\t0x6C59\n0x17652\t0x6C5C\n0x17653\t0x6CAA\n0x17654\t0x6C74\n0x17655\t0x6C76\n0x17656\t0x6C85\n0x17657\t0x6C86\n0x17658\t0x6C98\n0x17659\t0x6C9C\n0x1765A\t0x6CFB\n0x1765B\t0x6CC6\n0x1765C\t0x6CD4\n0x1765D\t0x6CE0\n0x1765E\t0x6CEB\n0x1765F\t0x6CEE\n0x17660\t0x23CFE\n0x17661\t0x6D04\n0x17662\t0x6D0E\n0x17663\t0x6D2E\n0x17664\t0x6D31\n0x17665\t0x6D39\n0x17666\t0x6D3F\n0x17667\t0x6D58\n0x17668\t0x6D65\n0x17669\t0xFA45\n0x1766A\t0x6D82\n0x1766B\t0x6D87\n0x1766C\t0x6D89\n0x1766D\t0x6D94\n0x1766E\t0x6DAA\n0x1766F\t0x6DAC\n0x17670\t0x6DBF\n0x17671\t0x6DC4\n0x17672\t0x6DD6\n0x17673\t0x6DDA\n0x17674\t0x6DDB\n0x17675\t0x6DDD\n0x17676\t0x6DFC\n0x17677\t0xFA46\n0x17678\t0x6E34\n0x17679\t0x6E44\n0x1767A\t0x6E5C\n0x1767B\t0x6E5E\n0x1767C\t0x6EAB\n0x1767D\t0x6EB1\n0x1767E\t0x6EC1\n0x17721\t0x6EC7\n0x17722\t0x6ECE\n0x17723\t0x6F10\n0x17724\t0x6F1A\n0x17725\t0xFA47\n0x17726\t0x6F2A\n0x17727\t0x6F2F\n0x17728\t0x6F33\n0x17729\t0x6F51\n0x1772A\t0x6F59\n0x1772B\t0x6F5E\n0x1772C\t0x6F61\n0x1772D\t0x6F62\n0x1772E\t0x6F7E\n0x1772F\t0x6F88\n0x17730\t0x6F8C\n0x17731\t0x6F8D\n0x17732\t0x6F94\n0x17733\t0x6FA0\n0x17734\t0x6FA7\n0x17735\t0x6FB6\n0x17736\t0x6FBC\n0x17737\t0x6FC7\n0x17738\t0x6FCA\n0x17739\t0x6FF9\n0x1773A\t0x6FF0\n0x1773B\t0x6FF5\n0x1773C\t0x7005\n0x1773D\t0x7006\n0x1773E\t0x7028\n0x1773F\t0x704A\n0x17740\t0x705D\n0x17741\t0x705E\n0x17742\t0x704E\n0x17743\t0x7064\n0x17744\t0x7075\n0x17745\t0x7085\n0x17746\t0x70A4\n0x17747\t0x70AB\n0x17748\t0x70B7\n0x17749\t0x70D4\n0x1774A\t0x70D8\n0x1774B\t0x70E4\n0x1774C\t0x710F\n0x1774D\t0x712B\n0x1774E\t0x711E\n0x1774F\t0x7120\n0x17750\t0x712E\n0x17751\t0x7130\n0x17752\t0x7146\n0x17753\t0x7147\n0x17754\t0x7151\n0x17755\t0xFA48\n0x17756\t0x7152\n0x17757\t0x715C\n0x17758\t0x7160\n0x17759\t0x7168\n0x1775A\t0xFA15\n0x1775B\t0x7185\n0x1775C\t0x7187\n0x1775D\t0x7192\n0x1775E\t0x71C1\n0x1775F\t0x71BA\n0x17760\t0x71C4\n0x17761\t0x71FE\n0x17762\t0x7200\n0x17763\t0x7215\n0x17764\t0x7255\n0x17765\t0x7256\n0x17766\t0x3E3F\n0x17767\t0x728D\n0x17768\t0x729B\n0x17769\t0x72BE\n0x1776A\t0x72C0\n0x1776B\t0x72FB\n0x1776C\t0x247F1\n0x1776D\t0x7327\n0x1776E\t0x7328\n0x1776F\t0xFA16\n0x17770\t0x7350\n0x17771\t0x7366\n0x17772\t0x737C\n0x17773\t0x7395\n0x17774\t0x739F\n0x17775\t0x73A0\n0x17776\t0x73A2\n0x17777\t0x73A6\n0x17778\t0x73AB\n0x17779\t0x73C9\n0x1777A\t0x73CF\n0x1777B\t0x73D6\n0x1777C\t0x73D9\n0x1777D\t0x73E3\n0x1777E\t0x73E9\n0x17821\t0x7407\n0x17822\t0x740A\n0x17823\t0x741A\n0x17824\t0x741B\n0x17825\t0xFA4A\n0x17826\t0x7426\n0x17827\t0x7428\n0x17828\t0x742A\n0x17829\t0x742B\n0x1782A\t0x742C\n0x1782B\t0x742E\n0x1782C\t0x742F\n0x1782D\t0x7430\n0x1782E\t0x7444\n0x1782F\t0x7446\n0x17830\t0x7447\n0x17831\t0x744B\n0x17832\t0x7457\n0x17833\t0x7462\n0x17834\t0x746B\n0x17835\t0x746D\n0x17836\t0x7486\n0x17837\t0x7487\n0x17838\t0x7489\n0x17839\t0x7498\n0x1783A\t0x749C\n0x1783B\t0x749F\n0x1783C\t0x74A3\n0x1783D\t0x7490\n0x1783E\t0x74A6\n0x1783F\t0x74A8\n0x17840\t0x74A9\n0x17841\t0x74B5\n0x17842\t0x74BF\n0x17843\t0x74C8\n0x17844\t0x74C9\n0x17845\t0x74DA\n0x17846\t0x74FF\n0x17847\t0x7501\n0x17848\t0x7517\n0x17849\t0x752F\n0x1784A\t0x756F\n0x1784B\t0x7579\n0x1784C\t0x7592\n0x1784D\t0x3F72\n0x1784E\t0x75CE\n0x1784F\t0x75E4\n0x17850\t0x7600\n0x17851\t0x7602\n0x17852\t0x7608\n0x17853\t0x7615\n0x17854\t0x7616\n0x17855\t0x7619\n0x17856\t0x761E\n0x17857\t0x762D\n0x17858\t0x7635\n0x17859\t0x7643\n0x1785A\t0x764B\n0x1785B\t0x7664\n0x1785C\t0x7665\n0x1785D\t0x766D\n0x1785E\t0x766F\n0x1785F\t0x7671\n0x17860\t0x7681\n0x17861\t0x769B\n0x17862\t0x769D\n0x17863\t0x769E\n0x17864\t0x76A6\n0x17865\t0x76AA\n0x17866\t0x76B6\n0x17867\t0x76C5\n0x17868\t0x76CC\n0x17869\t0x76CE\n0x1786A\t0x76D4\n0x1786B\t0x76E6\n0x1786C\t0x76F1\n0x1786D\t0x76FC\n0x1786E\t0x770A\n0x1786F\t0x7719\n0x17870\t0x7734\n0x17871\t0x7736\n0x17872\t0x7746\n0x17873\t0x774D\n0x17874\t0x774E\n0x17875\t0x775C\n0x17876\t0x775F\n0x17877\t0x7762\n0x17878\t0x777A\n0x17879\t0x7780\n0x1787A\t0x7794\n0x1787B\t0x77AA\n0x1787C\t0x77E0\n0x1787D\t0x782D\n0x1787E\t0x2548E\n0x17921\t0x7843\n0x17922\t0x784E\n0x17923\t0x784F\n0x17924\t0x7851\n0x17925\t0x7868\n0x17926\t0x786E\n0x17927\t0xFA4B\n0x17928\t0x78B0\n0x17929\t0x2550E\n0x1792A\t0x78AD\n0x1792B\t0x78E4\n0x1792C\t0x78F2\n0x1792D\t0x7900\n0x1792E\t0x78F7\n0x1792F\t0x791C\n0x17930\t0x792E\n0x17931\t0x7931\n0x17932\t0x7934\n0x17933\t0xFA4C\n0x17934\t0xFA4D\n0x17935\t0x7945\n0x17936\t0x7946\n0x17937\t0xFA4E\n0x17938\t0xFA4F\n0x17939\t0xFA50\n0x1793A\t0x795C\n0x1793B\t0xFA51\n0x1793C\t0xFA19\n0x1793D\t0xFA1A\n0x1793E\t0x7979\n0x1793F\t0xFA52\n0x17940\t0xFA53\n0x17941\t0xFA1B\n0x17942\t0x7998\n0x17943\t0x79B1\n0x17944\t0x79B8\n0x17945\t0x79C8\n0x17946\t0x79CA\n0x17947\t0x25771\n0x17948\t0x79D4\n0x17949\t0x79DE\n0x1794A\t0x79EB\n0x1794B\t0x79ED\n0x1794C\t0x7A03\n0x1794D\t0xFA54\n0x1794E\t0x7A39\n0x1794F\t0x7A5D\n0x17950\t0x7A6D\n0x17951\t0xFA55\n0x17952\t0x7A85\n0x17953\t0x7AA0\n0x17954\t0x259C4\n0x17955\t0x7AB3\n0x17956\t0x7ABB\n0x17957\t0x7ACE\n0x17958\t0x7AEB\n0x17959\t0x7AFD\n0x1795A\t0x7B12\n0x1795B\t0x7B2D\n0x1795C\t0x7B3B\n0x1795D\t0x7B47\n0x1795E\t0x7B4E\n0x1795F\t0x7B60\n0x17960\t0x7B6D\n0x17961\t0x7B6F\n0x17962\t0x7B72\n0x17963\t0x7B9E\n0x17964\t0xFA56\n0x17965\t0x7BD7\n0x17966\t0x7BD9\n0x17967\t0x7C01\n0x17968\t0x7C31\n0x17969\t0x7C1E\n0x1796A\t0x7C20\n0x1796B\t0x7C33\n0x1796C\t0x7C36\n0x1796D\t0x4264\n0x1796E\t0x25DA1\n0x1796F\t0x7C59\n0x17970\t0x7C6D\n0x17971\t0x7C79\n0x17972\t0x7C8F\n0x17973\t0x7C94\n0x17974\t0x7CA0\n0x17975\t0x7CBC\n0x17976\t0x7CD5\n0x17977\t0x7CD9\n0x17978\t0x7CDD\n0x17979\t0x7D07\n0x1797A\t0x7D08\n0x1797B\t0x7D13\n0x1797C\t0x7D1D\n0x1797D\t0x7D23\n0x1797E\t0x7D31\n0x17A21\t0x7D41\n0x17A22\t0x7D48\n0x17A23\t0x7D53\n0x17A24\t0x7D5C\n0x17A25\t0x7D7A\n0x17A26\t0x7D83\n0x17A27\t0x7D8B\n0x17A28\t0x7DA0\n0x17A29\t0x7DA6\n0x17A2A\t0x7DC2\n0x17A2B\t0x7DCC\n0x17A2C\t0x7DD6\n0x17A2D\t0x7DE3\n0x17A2E\t0xFA57\n0x17A2F\t0x7E28\n0x17A30\t0x7E08\n0x17A31\t0x7E11\n0x17A32\t0x7E15\n0x17A33\t0xFA59\n0x17A34\t0x7E47\n0x17A35\t0x7E52\n0x17A36\t0x7E61\n0x17A37\t0x7E8A\n0x17A38\t0x7E8D\n0x17A39\t0x7F47\n0x17A3A\t0xFA5A\n0x17A3B\t0x7F91\n0x17A3C\t0x7F97\n0x17A3D\t0x7FBF\n0x17A3E\t0x7FCE\n0x17A3F\t0x7FDB\n0x17A40\t0x7FDF\n0x17A41\t0x7FEC\n0x17A42\t0x7FEE\n0x17A43\t0x7FFA\n0x17A44\t0xFA5B\n0x17A45\t0x8014\n0x17A46\t0x8026\n0x17A47\t0x8035\n0x17A48\t0x8037\n0x17A49\t0x803C\n0x17A4A\t0x80CA\n0x17A4B\t0x80D7\n0x17A4C\t0x80E0\n0x17A4D\t0x80F3\n0x17A4E\t0x8118\n0x17A4F\t0x814A\n0x17A50\t0x8160\n0x17A51\t0x8167\n0x17A52\t0x8168\n0x17A53\t0x816D\n0x17A54\t0x81BB\n0x17A55\t0x81CA\n0x17A56\t0x81CF\n0x17A57\t0x81D7\n0x17A58\t0xFA5C\n0x17A59\t0x4453\n0x17A5A\t0x445B\n0x17A5B\t0x8260\n0x17A5C\t0x8274\n0x17A5D\t0x26AFF\n0x17A5E\t0x828E\n0x17A5F\t0x82A1\n0x17A60\t0x82A3\n0x17A61\t0x82A4\n0x17A62\t0x82A9\n0x17A63\t0x82AE\n0x17A64\t0x82B7\n0x17A65\t0x82BE\n0x17A66\t0x82BF\n0x17A67\t0x82C6\n0x17A68\t0x82D5\n0x17A69\t0x82FD\n0x17A6A\t0x82FE\n0x17A6B\t0x8300\n0x17A6C\t0x8301\n0x17A6D\t0x8362\n0x17A6E\t0x8322\n0x17A6F\t0x832D\n0x17A70\t0x833A\n0x17A71\t0x8343\n0x17A72\t0x8347\n0x17A73\t0x8351\n0x17A74\t0x8355\n0x17A75\t0x837D\n0x17A76\t0x8386\n0x17A77\t0x8392\n0x17A78\t0x8398\n0x17A79\t0x83A7\n0x17A7A\t0x83A9\n0x17A7B\t0x83BF\n0x17A7C\t0x83C0\n0x17A7D\t0x83C7\n0x17A7E\t0x83CF\n0x17B21\t0x83D1\n0x17B22\t0x83E1\n0x17B23\t0x83EA\n0x17B24\t0x8401\n0x17B25\t0x8406\n0x17B26\t0x840A\n0x17B27\t0xFA5F\n0x17B28\t0x8448\n0x17B29\t0x845F\n0x17B2A\t0x8470\n0x17B2B\t0x8473\n0x17B2C\t0x8485\n0x17B2D\t0x849E\n0x17B2E\t0x84AF\n0x17B2F\t0x84B4\n0x17B30\t0x84BA\n0x17B31\t0x84C0\n0x17B32\t0x84C2\n0x17B33\t0x26E40\n0x17B34\t0x8532\n0x17B35\t0x851E\n0x17B36\t0x8523\n0x17B37\t0x852F\n0x17B38\t0x8559\n0x17B39\t0x8564\n0x17B3A\t0xFA1F\n0x17B3B\t0x85AD\n0x17B3C\t0x857A\n0x17B3D\t0x858C\n0x17B3E\t0x858F\n0x17B3F\t0x85A2\n0x17B40\t0x85B0\n0x17B41\t0x85CB\n0x17B42\t0x85CE\n0x17B43\t0x85ED\n0x17B44\t0x8612\n0x17B45\t0x85FF\n0x17B46\t0x8604\n0x17B47\t0x8605\n0x17B48\t0x8610\n0x17B49\t0x270F4\n0x17B4A\t0x8618\n0x17B4B\t0x8629\n0x17B4C\t0x8638\n0x17B4D\t0x8657\n0x17B4E\t0x865B\n0x17B4F\t0xF936\n0x17B50\t0x8662\n0x17B51\t0x459D\n0x17B52\t0x866C\n0x17B53\t0x8675\n0x17B54\t0x8698\n0x17B55\t0x86B8\n0x17B56\t0x86FA\n0x17B57\t0x86FC\n0x17B58\t0x86FD\n0x17B59\t0x870B\n0x17B5A\t0x8771\n0x17B5B\t0x8787\n0x17B5C\t0x8788\n0x17B5D\t0x87AC\n0x17B5E\t0x87AD\n0x17B5F\t0x87B5\n0x17B60\t0x45EA\n0x17B61\t0x87D6\n0x17B62\t0x87EC\n0x17B63\t0x8806\n0x17B64\t0x880A\n0x17B65\t0x8810\n0x17B66\t0x8814\n0x17B67\t0x881F\n0x17B68\t0x8898\n0x17B69\t0x88AA\n0x17B6A\t0x88CA\n0x17B6B\t0x88CE\n0x17B6C\t0x27684\n0x17B6D\t0x88F5\n0x17B6E\t0x891C\n0x17B6F\t0xFA60\n0x17B70\t0x8918\n0x17B71\t0x8919\n0x17B72\t0x891A\n0x17B73\t0x8927\n0x17B74\t0x8930\n0x17B75\t0x8932\n0x17B76\t0x8939\n0x17B77\t0x8940\n0x17B78\t0x8994\n0x17B79\t0xFA61\n0x17B7A\t0x89D4\n0x17B7B\t0x89E5\n0x17B7C\t0x89F6\n0x17B7D\t0x8A12\n0x17B7E\t0x8A15\n0x17C21\t0x8A22\n0x17C22\t0x8A37\n0x17C23\t0x8A47\n0x17C24\t0x8A4E\n0x17C25\t0x8A5D\n0x17C26\t0x8A61\n0x17C27\t0x8A75\n0x17C28\t0x8A79\n0x17C29\t0x8AA7\n0x17C2A\t0x8AD0\n0x17C2B\t0x8ADF\n0x17C2C\t0x8AF4\n0x17C2D\t0x8AF6\n0x17C2E\t0xFA22\n0x17C2F\t0xFA62\n0x17C30\t0xFA63\n0x17C31\t0x8B46\n0x17C32\t0x8B54\n0x17C33\t0x8B59\n0x17C34\t0x8B69\n0x17C35\t0x8B9D\n0x17C36\t0x8C49\n0x17C37\t0x8C68\n0x17C38\t0xFA64\n0x17C39\t0x8CE1\n0x17C3A\t0x8CF4\n0x17C3B\t0x8CF8\n0x17C3C\t0x8CFE\n0x17C3D\t0xFA65\n0x17C3E\t0x8D12\n0x17C3F\t0x8D1B\n0x17C40\t0x8DAF\n0x17C41\t0x8DCE\n0x17C42\t0x8DD1\n0x17C43\t0x8DD7\n0x17C44\t0x8E20\n0x17C45\t0x8E23\n0x17C46\t0x8E3D\n0x17C47\t0x8E70\n0x17C48\t0x8E7B\n0x17C49\t0x28277\n0x17C4A\t0x8EC0\n0x17C4B\t0x4844\n0x17C4C\t0x8EFA\n0x17C4D\t0x8F1E\n0x17C4E\t0x8F2D\n0x17C4F\t0x8F36\n0x17C50\t0x8F54\n0x17C51\t0x283CD\n0x17C52\t0x8FA6\n0x17C53\t0x8FB5\n0x17C54\t0x8FE4\n0x17C55\t0x8FE8\n0x17C56\t0x8FEE\n0x17C57\t0x9008\n0x17C58\t0x902D\n0x17C59\t0xFA67\n0x17C5A\t0x9088\n0x17C5B\t0x9095\n0x17C5C\t0x9097\n0x17C5D\t0x9099\n0x17C5E\t0x909B\n0x17C5F\t0x90A2\n0x17C60\t0x90B3\n0x17C61\t0x90BE\n0x17C62\t0x90C4\n0x17C63\t0x90C5\n0x17C64\t0x90C7\n0x17C65\t0x90D7\n0x17C66\t0x90DD\n0x17C67\t0x90DE\n0x17C68\t0x90EF\n0x17C69\t0x90F4\n0x17C6A\t0xFA26\n0x17C6B\t0x9114\n0x17C6C\t0x9115\n0x17C6D\t0x9116\n0x17C6E\t0x9122\n0x17C6F\t0x9123\n0x17C70\t0x9127\n0x17C71\t0x912F\n0x17C72\t0x9131\n0x17C73\t0x9134\n0x17C74\t0x913D\n0x17C75\t0x9148\n0x17C76\t0x915B\n0x17C77\t0x9183\n0x17C78\t0x919E\n0x17C79\t0x91AC\n0x17C7A\t0x91B1\n0x17C7B\t0x91BC\n0x17C7C\t0x91D7\n0x17C7D\t0x91FB\n0x17C7E\t0x91E4\n0x17D21\t0x91E5\n0x17D22\t0x91ED\n0x17D23\t0x91F1\n0x17D24\t0x9207\n0x17D25\t0x9210\n0x17D26\t0x9238\n0x17D27\t0x9239\n0x17D28\t0x923A\n0x17D29\t0x923C\n0x17D2A\t0x9240\n0x17D2B\t0x9243\n0x17D2C\t0x924F\n0x17D2D\t0x9278\n0x17D2E\t0x9288\n0x17D2F\t0x92C2\n0x17D30\t0x92CB\n0x17D31\t0x92CC\n0x17D32\t0x92D3\n0x17D33\t0x92E0\n0x17D34\t0x92FF\n0x17D35\t0x9304\n0x17D36\t0x931F\n0x17D37\t0x9321\n0x17D38\t0x9325\n0x17D39\t0x9348\n0x17D3A\t0x9349\n0x17D3B\t0x934A\n0x17D3C\t0x9364\n0x17D3D\t0x9365\n0x17D3E\t0x936A\n0x17D3F\t0x9370\n0x17D40\t0x939B\n0x17D41\t0x93A3\n0x17D42\t0x93BA\n0x17D43\t0x93C6\n0x17D44\t0x93DE\n0x17D45\t0x93DF\n0x17D46\t0x9404\n0x17D47\t0x93FD\n0x17D48\t0x9433\n0x17D49\t0x944A\n0x17D4A\t0x9463\n0x17D4B\t0x946B\n0x17D4C\t0x9471\n0x17D4D\t0x9472\n0x17D4E\t0x958E\n0x17D4F\t0x959F\n0x17D50\t0x95A6\n0x17D51\t0x95A9\n0x17D52\t0x95AC\n0x17D53\t0x95B6\n0x17D54\t0x95BD\n0x17D55\t0x95CB\n0x17D56\t0x95D0\n0x17D57\t0x95D3\n0x17D58\t0x49B0\n0x17D59\t0x95DA\n0x17D5A\t0x95DE\n0x17D5B\t0x9658\n0x17D5C\t0x9684\n0x17D5D\t0xF9DC\n0x17D5E\t0x969D\n0x17D5F\t0x96A4\n0x17D60\t0x96A5\n0x17D61\t0x96D2\n0x17D62\t0x96DE\n0x17D63\t0xFA68\n0x17D64\t0x96E9\n0x17D65\t0x96EF\n0x17D66\t0x9733\n0x17D67\t0x973B\n0x17D68\t0x974D\n0x17D69\t0x974E\n0x17D6A\t0x974F\n0x17D6B\t0x975A\n0x17D6C\t0x976E\n0x17D6D\t0x9773\n0x17D6E\t0x9795\n0x17D6F\t0x97AE\n0x17D70\t0x97BA\n0x17D71\t0x97C1\n0x17D72\t0x97C9\n0x17D73\t0x97DE\n0x17D74\t0x97DB\n0x17D75\t0x97F4\n0x17D76\t0xFA69\n0x17D77\t0x980A\n0x17D78\t0x981E\n0x17D79\t0x982B\n0x17D7A\t0x9830\n0x17D7B\t0xFA6A\n0x17D7C\t0x9852\n0x17D7D\t0x9853\n0x17D7E\t0x9856\n0x17E21\t0x9857\n0x17E22\t0x9859\n0x17E23\t0x985A\n0x17E24\t0xF9D0\n0x17E25\t0x9865\n0x17E26\t0x986C\n0x17E27\t0x98BA\n0x17E28\t0x98C8\n0x17E29\t0x98E7\n0x17E2A\t0x9958\n0x17E2B\t0x999E\n0x17E2C\t0x9A02\n0x17E2D\t0x9A03\n0x17E2E\t0x9A24\n0x17E2F\t0x9A2D\n0x17E30\t0x9A2E\n0x17E31\t0x9A38\n0x17E32\t0x9A4A\n0x17E33\t0x9A4E\n0x17E34\t0x9A52\n0x17E35\t0x9AB6\n0x17E36\t0x9AC1\n0x17E37\t0x9AC3\n0x17E38\t0x9ACE\n0x17E39\t0x9AD6\n0x17E3A\t0x9AF9\n0x17E3B\t0x9B02\n0x17E3C\t0x9B08\n0x17E3D\t0x9B20\n0x17E3E\t0x4C17\n0x17E3F\t0x9B2D\n0x17E40\t0x9B5E\n0x17E41\t0x9B79\n0x17E42\t0x9B66\n0x17E43\t0x9B72\n0x17E44\t0x9B75\n0x17E45\t0x9B84\n0x17E46\t0x9B8A\n0x17E47\t0x9B8F\n0x17E48\t0x9B9E\n0x17E49\t0x9BA7\n0x17E4A\t0x9BC1\n0x17E4B\t0x9BCE\n0x17E4C\t0x9BE5\n0x17E4D\t0x9BF8\n0x17E4E\t0x9BFD\n0x17E4F\t0x9C00\n0x17E50\t0x9C23\n0x17E51\t0x9C41\n0x17E52\t0x9C4F\n0x17E53\t0x9C50\n0x17E54\t0x9C53\n0x17E55\t0x9C63\n0x17E56\t0x9C65\n0x17E57\t0x9C77\n0x17E58\t0x9D1D\n0x17E59\t0x9D1E\n0x17E5A\t0x9D43\n0x17E5B\t0x9D47\n0x17E5C\t0x9D52\n0x17E5D\t0x9D63\n0x17E5E\t0x9D70\n0x17E5F\t0x9D7C\n0x17E60\t0x9D8A\n0x17E61\t0x9D96\n0x17E62\t0x9DC0\n0x17E63\t0x9DAC\n0x17E64\t0x9DBC\n0x17E65\t0x9DD7\n0x17E66\t0x2A190\n0x17E67\t0x9DE7\n0x17E68\t0x9E07\n0x17E69\t0x9E15\n0x17E6A\t0x9E7C\n0x17E6B\t0x9E9E\n0x17E6C\t0x9EA4\n0x17E6D\t0x9EAC\n0x17E6E\t0x9EAF\n0x17E6F\t0x9EB4\n0x17E70\t0x9EB5\n0x17E71\t0x9EC3\n0x17E72\t0x9ED1\n0x17E73\t0x9F10\n0x17E74\t0x9F39\n0x17E75\t0x9F57\n0x17E76\t0x9F90\n0x17E77\t0x9F94\n0x17E78\t0x9F97\n0x17E79\t0x9FA2\n0x17E7A\t0x59F8\n0x17E7B\t0x5C5B\n0x17E7C\t0x5E77\n0x17E7D\t0x7626\n0x17E7E\t0x7E6B\n0x22121\t0x20089\n0x22122\t0x4E02\n0x22123\t0x4E0F\n0x22124\t0x4E12\n0x22125\t0x4E29\n0x22126\t0x4E2B\n0x22127\t0x4E2E\n0x22128\t0x4E40\n0x22129\t0x4E47\n0x2212A\t0x4E48\n0x2212B\t0x200A2\n0x2212C\t0x4E51\n0x2212D\t0x3406\n0x2212E\t0x200A4\n0x2212F\t0x4E5A\n0x22130\t0x4E69\n0x22131\t0x4E9D\n0x22132\t0x342C\n0x22133\t0x342E\n0x22134\t0x4EB9\n0x22135\t0x4EBB\n0x22136\t0x201A2\n0x22137\t0x4EBC\n0x22138\t0x4EC3\n0x22139\t0x4EC8\n0x2213A\t0x4ED0\n0x2213B\t0x4EEB\n0x2213C\t0x4EDA\n0x2213D\t0x4EF1\n0x2213E\t0x4EF5\n0x2213F\t0x4F00\n0x22140\t0x4F16\n0x22141\t0x4F64\n0x22142\t0x4F37\n0x22143\t0x4F3E\n0x22144\t0x4F54\n0x22145\t0x4F58\n0x22146\t0x20213\n0x22147\t0x4F77\n0x22148\t0x4F78\n0x22149\t0x4F7A\n0x2214A\t0x4F7D\n0x2214B\t0x4F82\n0x2214C\t0x4F85\n0x2214D\t0x4F92\n0x2214E\t0x4F9A\n0x2214F\t0x4FE6\n0x22150\t0x4FB2\n0x22151\t0x4FBE\n0x22152\t0x4FC5\n0x22153\t0x4FCB\n0x22154\t0x4FCF\n0x22155\t0x4FD2\n0x22156\t0x346A\n0x22157\t0x4FF2\n0x22158\t0x5000\n0x22159\t0x5010\n0x2215A\t0x5013\n0x2215B\t0x501C\n0x2215C\t0x501E\n0x2215D\t0x5022\n0x2215E\t0x3468\n0x2215F\t0x5042\n0x22160\t0x5046\n0x22161\t0x504E\n0x22162\t0x5053\n0x22163\t0x5057\n0x22164\t0x5063\n0x22165\t0x5066\n0x22166\t0x506A\n0x22167\t0x5070\n0x22168\t0x50A3\n0x22169\t0x5088\n0x2216A\t0x5092\n0x2216B\t0x5093\n0x2216C\t0x5095\n0x2216D\t0x5096\n0x2216E\t0x509C\n0x2216F\t0x50AA\n0x22170\t0x2032B\n0x22171\t0x50B1\n0x22172\t0x50BA\n0x22173\t0x50BB\n0x22174\t0x50C4\n0x22175\t0x50C7\n0x22176\t0x50F3\n0x22177\t0x20381\n0x22178\t0x50CE\n0x22179\t0x20371\n0x2217A\t0x50D4\n0x2217B\t0x50D9\n0x2217C\t0x50E1\n0x2217D\t0x50E9\n0x2217E\t0x3492\n0x22321\t0x5108\n0x22322\t0x203F9\n0x22323\t0x5117\n0x22324\t0x511B\n0x22325\t0x2044A\n0x22326\t0x5160\n0x22327\t0x20509\n0x22328\t0x5173\n0x22329\t0x5183\n0x2232A\t0x518B\n0x2232B\t0x34BC\n0x2232C\t0x5198\n0x2232D\t0x51A3\n0x2232E\t0x51AD\n0x2232F\t0x34C7\n0x22330\t0x51BC\n0x22331\t0x205D6\n0x22332\t0x20628\n0x22333\t0x51F3\n0x22334\t0x51F4\n0x22335\t0x5202\n0x22336\t0x5212\n0x22337\t0x5216\n0x22338\t0x2074F\n0x22339\t0x5255\n0x2233A\t0x525C\n0x2233B\t0x526C\n0x2233C\t0x5277\n0x2233D\t0x5284\n0x2233E\t0x5282\n0x2233F\t0x20807\n0x22340\t0x5298\n0x22341\t0x2083A\n0x22342\t0x52A4\n0x22343\t0x52A6\n0x22344\t0x52AF\n0x22345\t0x52BA\n0x22346\t0x52BB\n0x22347\t0x52CA\n0x22348\t0x351F\n0x22349\t0x52D1\n0x2234A\t0x208B9\n0x2234B\t0x52F7\n0x2234C\t0x530A\n0x2234D\t0x530B\n0x2234E\t0x5324\n0x2234F\t0x5335\n0x22350\t0x533E\n0x22351\t0x5342\n0x22352\t0x2097C\n0x22353\t0x2099D\n0x22354\t0x5367\n0x22355\t0x536C\n0x22356\t0x537A\n0x22357\t0x53A4\n0x22358\t0x53B4\n0x22359\t0x20AD3\n0x2235A\t0x53B7\n0x2235B\t0x53C0\n0x2235C\t0x20B1D\n0x2235D\t0x355D\n0x2235E\t0x355E\n0x2235F\t0x53D5\n0x22360\t0x53DA\n0x22361\t0x3563\n0x22362\t0x53F4\n0x22363\t0x53F5\n0x22364\t0x5455\n0x22365\t0x5424\n0x22366\t0x5428\n0x22367\t0x356E\n0x22368\t0x5443\n0x22369\t0x5462\n0x2236A\t0x5466\n0x2236B\t0x546C\n0x2236C\t0x548A\n0x2236D\t0x548D\n0x2236E\t0x5495\n0x2236F\t0x54A0\n0x22370\t0x54A6\n0x22371\t0x54AD\n0x22372\t0x54AE\n0x22373\t0x54B7\n0x22374\t0x54BA\n0x22375\t0x54BF\n0x22376\t0x54C3\n0x22377\t0x20D45\n0x22378\t0x54EC\n0x22379\t0x54EF\n0x2237A\t0x54F1\n0x2237B\t0x54F3\n0x2237C\t0x5500\n0x2237D\t0x5501\n0x2237E\t0x5509\n0x22421\t0x553C\n0x22422\t0x5541\n0x22423\t0x35A6\n0x22424\t0x5547\n0x22425\t0x554A\n0x22426\t0x35A8\n0x22427\t0x5560\n0x22428\t0x5561\n0x22429\t0x5564\n0x2242A\t0x20DE1\n0x2242B\t0x557D\n0x2242C\t0x5582\n0x2242D\t0x5588\n0x2242E\t0x5591\n0x2242F\t0x35C5\n0x22430\t0x55D2\n0x22431\t0x20E95\n0x22432\t0x20E6D\n0x22433\t0x55BF\n0x22434\t0x55C9\n0x22435\t0x55CC\n0x22436\t0x55D1\n0x22437\t0x55DD\n0x22438\t0x35DA\n0x22439\t0x55E2\n0x2243A\t0x20E64\n0x2243B\t0x55E9\n0x2243C\t0x5628\n0x2243D\t0x20F5F\n0x2243E\t0x5607\n0x2243F\t0x5610\n0x22440\t0x5630\n0x22441\t0x5637\n0x22442\t0x35F4\n0x22443\t0x563D\n0x22444\t0x563F\n0x22445\t0x5640\n0x22446\t0x5647\n0x22447\t0x565E\n0x22448\t0x5660\n0x22449\t0x566D\n0x2244A\t0x3605\n0x2244B\t0x5688\n0x2244C\t0x568C\n0x2244D\t0x5695\n0x2244E\t0x569A\n0x2244F\t0x569D\n0x22450\t0x56A8\n0x22451\t0x56AD\n0x22452\t0x56B2\n0x22453\t0x56C5\n0x22454\t0x56CD\n0x22455\t0x56DF\n0x22456\t0x56E8\n0x22457\t0x56F6\n0x22458\t0x56F7\n0x22459\t0x21201\n0x2245A\t0x5715\n0x2245B\t0x5723\n0x2245C\t0x21255\n0x2245D\t0x5729\n0x2245E\t0x2127B\n0x2245F\t0x5745\n0x22460\t0x5746\n0x22461\t0x574C\n0x22462\t0x574D\n0x22463\t0x21274\n0x22464\t0x5768\n0x22465\t0x576F\n0x22466\t0x5773\n0x22467\t0x5774\n0x22468\t0x5775\n0x22469\t0x577B\n0x2246A\t0x212E4\n0x2246B\t0x212D7\n0x2246C\t0x57AC\n0x2246D\t0x579A\n0x2246E\t0x579D\n0x2246F\t0x579E\n0x22470\t0x57A8\n0x22471\t0x57D7\n0x22472\t0x212FD\n0x22473\t0x57CC\n0x22474\t0x21336\n0x22475\t0x21344\n0x22476\t0x57DE\n0x22477\t0x57E6\n0x22478\t0x57F0\n0x22479\t0x364A\n0x2247A\t0x57F8\n0x2247B\t0x57FB\n0x2247C\t0x57FD\n0x2247D\t0x5804\n0x2247E\t0x581E\n0x22521\t0x5820\n0x22522\t0x5827\n0x22523\t0x5832\n0x22524\t0x5839\n0x22525\t0x213C4\n0x22526\t0x5849\n0x22527\t0x584C\n0x22528\t0x5867\n0x22529\t0x588A\n0x2252A\t0x588B\n0x2252B\t0x588D\n0x2252C\t0x588F\n0x2252D\t0x5890\n0x2252E\t0x5894\n0x2252F\t0x589D\n0x22530\t0x58AA\n0x22531\t0x58B1\n0x22532\t0x2146D\n0x22533\t0x58C3\n0x22534\t0x58CD\n0x22535\t0x58E2\n0x22536\t0x58F3\n0x22537\t0x58F4\n0x22538\t0x5905\n0x22539\t0x5906\n0x2253A\t0x590B\n0x2253B\t0x590D\n0x2253C\t0x5914\n0x2253D\t0x5924\n0x2253E\t0x215D7\n0x2253F\t0x3691\n0x22540\t0x593D\n0x22541\t0x3699\n0x22542\t0x5946\n0x22543\t0x3696\n0x22544\t0x26C29\n0x22545\t0x595B\n0x22546\t0x595F\n0x22547\t0x21647\n0x22548\t0x5975\n0x22549\t0x5976\n0x2254A\t0x597C\n0x2254B\t0x599F\n0x2254C\t0x59AE\n0x2254D\t0x59BC\n0x2254E\t0x59C8\n0x2254F\t0x59CD\n0x22550\t0x59DE\n0x22551\t0x59E3\n0x22552\t0x59E4\n0x22553\t0x59E7\n0x22554\t0x59EE\n0x22555\t0x21706\n0x22556\t0x21742\n0x22557\t0x36CF\n0x22558\t0x5A0C\n0x22559\t0x5A0D\n0x2255A\t0x5A17\n0x2255B\t0x5A27\n0x2255C\t0x5A2D\n0x2255D\t0x5A55\n0x2255E\t0x5A65\n0x2255F\t0x5A7A\n0x22560\t0x5A8B\n0x22561\t0x5A9C\n0x22562\t0x5A9F\n0x22563\t0x5AA0\n0x22564\t0x5AA2\n0x22565\t0x5AB1\n0x22566\t0x5AB3\n0x22567\t0x5AB5\n0x22568\t0x5ABA\n0x22569\t0x5ABF\n0x2256A\t0x5ADA\n0x2256B\t0x5ADC\n0x2256C\t0x5AE0\n0x2256D\t0x5AE5\n0x2256E\t0x5AF0\n0x2256F\t0x5AEE\n0x22570\t0x5AF5\n0x22571\t0x5B00\n0x22572\t0x5B08\n0x22573\t0x5B17\n0x22574\t0x5B34\n0x22575\t0x5B2D\n0x22576\t0x5B4C\n0x22577\t0x5B52\n0x22578\t0x5B68\n0x22579\t0x5B6F\n0x2257A\t0x5B7C\n0x2257B\t0x5B7F\n0x2257C\t0x5B81\n0x2257D\t0x5B84\n0x2257E\t0x219C3\n0x22821\t0x5B96\n0x22822\t0x5BAC\n0x22823\t0x3761\n0x22824\t0x5BC0\n0x22825\t0x3762\n0x22826\t0x5BCE\n0x22827\t0x5BD6\n0x22828\t0x376C\n0x22829\t0x376B\n0x2282A\t0x5BF1\n0x2282B\t0x5BFD\n0x2282C\t0x3775\n0x2282D\t0x5C03\n0x2282E\t0x5C29\n0x2282F\t0x5C30\n0x22830\t0x21C56\n0x22831\t0x5C5F\n0x22832\t0x5C63\n0x22833\t0x5C67\n0x22834\t0x5C68\n0x22835\t0x5C69\n0x22836\t0x5C70\n0x22837\t0x21D2D\n0x22838\t0x21D45\n0x22839\t0x5C7C\n0x2283A\t0x21D78\n0x2283B\t0x21D62\n0x2283C\t0x5C88\n0x2283D\t0x5C8A\n0x2283E\t0x37C1\n0x2283F\t0x21DA1\n0x22840\t0x21D9C\n0x22841\t0x5CA0\n0x22842\t0x5CA2\n0x22843\t0x5CA6\n0x22844\t0x5CA7\n0x22845\t0x21D92\n0x22846\t0x5CAD\n0x22847\t0x5CB5\n0x22848\t0x21DB7\n0x22849\t0x5CC9\n0x2284A\t0x21DE0\n0x2284B\t0x21E33\n0x2284C\t0x5D06\n0x2284D\t0x5D10\n0x2284E\t0x5D2B\n0x2284F\t0x5D1D\n0x22850\t0x5D20\n0x22851\t0x5D24\n0x22852\t0x5D26\n0x22853\t0x5D31\n0x22854\t0x5D39\n0x22855\t0x5D42\n0x22856\t0x37E8\n0x22857\t0x5D61\n0x22858\t0x5D6A\n0x22859\t0x37F4\n0x2285A\t0x5D70\n0x2285B\t0x21F1E\n0x2285C\t0x37FD\n0x2285D\t0x5D88\n0x2285E\t0x3800\n0x2285F\t0x5D92\n0x22860\t0x5D94\n0x22861\t0x5D97\n0x22862\t0x5D99\n0x22863\t0x5DB0\n0x22864\t0x5DB2\n0x22865\t0x5DB4\n0x22866\t0x21F76\n0x22867\t0x5DB9\n0x22868\t0x5DD1\n0x22869\t0x5DD7\n0x2286A\t0x5DD8\n0x2286B\t0x5DE0\n0x2286C\t0x21FFA\n0x2286D\t0x5DE4\n0x2286E\t0x5DE9\n0x2286F\t0x382F\n0x22870\t0x5E00\n0x22871\t0x3836\n0x22872\t0x5E12\n0x22873\t0x5E15\n0x22874\t0x3840\n0x22875\t0x5E1F\n0x22876\t0x5E2E\n0x22877\t0x5E3E\n0x22878\t0x5E49\n0x22879\t0x385C\n0x2287A\t0x5E56\n0x2287B\t0x3861\n0x2287C\t0x5E6B\n0x2287D\t0x5E6C\n0x2287E\t0x5E6D\n0x22C21\t0x5E6E\n0x22C22\t0x2217B\n0x22C23\t0x5EA5\n0x22C24\t0x5EAA\n0x22C25\t0x5EAC\n0x22C26\t0x5EB9\n0x22C27\t0x5EBF\n0x22C28\t0x5EC6\n0x22C29\t0x5ED2\n0x22C2A\t0x5ED9\n0x22C2B\t0x2231E\n0x22C2C\t0x5EFD\n0x22C2D\t0x5F08\n0x22C2E\t0x5F0E\n0x22C2F\t0x5F1C\n0x22C30\t0x223AD\n0x22C31\t0x5F1E\n0x22C32\t0x5F47\n0x22C33\t0x5F63\n0x22C34\t0x5F72\n0x22C35\t0x5F7E\n0x22C36\t0x5F8F\n0x22C37\t0x5FA2\n0x22C38\t0x5FA4\n0x22C39\t0x5FB8\n0x22C3A\t0x5FC4\n0x22C3B\t0x38FA\n0x22C3C\t0x5FC7\n0x22C3D\t0x5FCB\n0x22C3E\t0x5FD2\n0x22C3F\t0x5FD3\n0x22C40\t0x5FD4\n0x22C41\t0x5FE2\n0x22C42\t0x5FEE\n0x22C43\t0x5FEF\n0x22C44\t0x5FF3\n0x22C45\t0x5FFC\n0x22C46\t0x3917\n0x22C47\t0x6017\n0x22C48\t0x6022\n0x22C49\t0x6024\n0x22C4A\t0x391A\n0x22C4B\t0x604C\n0x22C4C\t0x607F\n0x22C4D\t0x608A\n0x22C4E\t0x6095\n0x22C4F\t0x60A8\n0x22C50\t0x226F3\n0x22C51\t0x60B0\n0x22C52\t0x60B1\n0x22C53\t0x60BE\n0x22C54\t0x60C8\n0x22C55\t0x60D9\n0x22C56\t0x60DB\n0x22C57\t0x60EE\n0x22C58\t0x60F2\n0x22C59\t0x60F5\n0x22C5A\t0x6110\n0x22C5B\t0x6112\n0x22C5C\t0x6113\n0x22C5D\t0x6119\n0x22C5E\t0x611E\n0x22C5F\t0x613A\n0x22C60\t0x396F\n0x22C61\t0x6141\n0x22C62\t0x6146\n0x22C63\t0x6160\n0x22C64\t0x617C\n0x22C65\t0x2285B\n0x22C66\t0x6192\n0x22C67\t0x6193\n0x22C68\t0x6197\n0x22C69\t0x6198\n0x22C6A\t0x61A5\n0x22C6B\t0x61A8\n0x22C6C\t0x61AD\n0x22C6D\t0x228AB\n0x22C6E\t0x61D5\n0x22C6F\t0x61DD\n0x22C70\t0x61DF\n0x22C71\t0x61F5\n0x22C72\t0x2298F\n0x22C73\t0x6215\n0x22C74\t0x6223\n0x22C75\t0x6229\n0x22C76\t0x6246\n0x22C77\t0x624C\n0x22C78\t0x6251\n0x22C79\t0x6252\n0x22C7A\t0x6261\n0x22C7B\t0x6264\n0x22C7C\t0x627B\n0x22C7D\t0x626D\n0x22C7E\t0x6273\n0x22D21\t0x6299\n0x22D22\t0x62A6\n0x22D23\t0x62D5\n0x22D24\t0x22AB8\n0x22D25\t0x62FD\n0x22D26\t0x6303\n0x22D27\t0x630D\n0x22D28\t0x6310\n0x22D29\t0x22B4F\n0x22D2A\t0x22B50\n0x22D2B\t0x6332\n0x22D2C\t0x6335\n0x22D2D\t0x633B\n0x22D2E\t0x633C\n0x22D2F\t0x6341\n0x22D30\t0x6344\n0x22D31\t0x634E\n0x22D32\t0x22B46\n0x22D33\t0x6359\n0x22D34\t0x22C1D\n0x22D35\t0x22BA6\n0x22D36\t0x636C\n0x22D37\t0x6384\n0x22D38\t0x6399\n0x22D39\t0x22C24\n0x22D3A\t0x6394\n0x22D3B\t0x63BD\n0x22D3C\t0x63F7\n0x22D3D\t0x63D4\n0x22D3E\t0x63D5\n0x22D3F\t0x63DC\n0x22D40\t0x63E0\n0x22D41\t0x63EB\n0x22D42\t0x63EC\n0x22D43\t0x63F2\n0x22D44\t0x6409\n0x22D45\t0x641E\n0x22D46\t0x6425\n0x22D47\t0x6429\n0x22D48\t0x642F\n0x22D49\t0x645A\n0x22D4A\t0x645B\n0x22D4B\t0x645D\n0x22D4C\t0x6473\n0x22D4D\t0x647D\n0x22D4E\t0x6487\n0x22D4F\t0x6491\n0x22D50\t0x649D\n0x22D51\t0x649F\n0x22D52\t0x64CB\n0x22D53\t0x64CC\n0x22D54\t0x64D5\n0x22D55\t0x64D7\n0x22D56\t0x22DE1\n0x22D57\t0x64E4\n0x22D58\t0x64E5\n0x22D59\t0x64FF\n0x22D5A\t0x6504\n0x22D5B\t0x3A6E\n0x22D5C\t0x650F\n0x22D5D\t0x6514\n0x22D5E\t0x6516\n0x22D5F\t0x3A73\n0x22D60\t0x651E\n0x22D61\t0x6532\n0x22D62\t0x6544\n0x22D63\t0x6554\n0x22D64\t0x656B\n0x22D65\t0x657A\n0x22D66\t0x6581\n0x22D67\t0x6584\n0x22D68\t0x6585\n0x22D69\t0x658A\n0x22D6A\t0x65B2\n0x22D6B\t0x65B5\n0x22D6C\t0x65B8\n0x22D6D\t0x65BF\n0x22D6E\t0x65C2\n0x22D6F\t0x65C9\n0x22D70\t0x65D4\n0x22D71\t0x3AD6\n0x22D72\t0x65F2\n0x22D73\t0x65F9\n0x22D74\t0x65FC\n0x22D75\t0x6604\n0x22D76\t0x6608\n0x22D77\t0x6621\n0x22D78\t0x662A\n0x22D79\t0x6645\n0x22D7A\t0x6651\n0x22D7B\t0x664E\n0x22D7C\t0x3AEA\n0x22D7D\t0x231C3\n0x22D7E\t0x6657\n0x22E21\t0x665B\n0x22E22\t0x6663\n0x22E23\t0x231F5\n0x22E24\t0x231B6\n0x22E25\t0x666A\n0x22E26\t0x666B\n0x22E27\t0x666C\n0x22E28\t0x666D\n0x22E29\t0x667B\n0x22E2A\t0x6680\n0x22E2B\t0x6690\n0x22E2C\t0x6692\n0x22E2D\t0x6699\n0x22E2E\t0x3B0E\n0x22E2F\t0x66AD\n0x22E30\t0x66B1\n0x22E31\t0x66B5\n0x22E32\t0x3B1A\n0x22E33\t0x66BF\n0x22E34\t0x3B1C\n0x22E35\t0x66EC\n0x22E36\t0x3AD7\n0x22E37\t0x6701\n0x22E38\t0x6705\n0x22E39\t0x6712\n0x22E3A\t0x23372\n0x22E3B\t0x6719\n0x22E3C\t0x233D3\n0x22E3D\t0x233D2\n0x22E3E\t0x674C\n0x22E3F\t0x674D\n0x22E40\t0x6754\n0x22E41\t0x675D\n0x22E42\t0x233D0\n0x22E43\t0x233E4\n0x22E44\t0x233D5\n0x22E45\t0x6774\n0x22E46\t0x6776\n0x22E47\t0x233DA\n0x22E48\t0x6792\n0x22E49\t0x233DF\n0x22E4A\t0x8363\n0x22E4B\t0x6810\n0x22E4C\t0x67B0\n0x22E4D\t0x67B2\n0x22E4E\t0x67C3\n0x22E4F\t0x67C8\n0x22E50\t0x67D2\n0x22E51\t0x67D9\n0x22E52\t0x67DB\n0x22E53\t0x67F0\n0x22E54\t0x67F7\n0x22E55\t0x2344A\n0x22E56\t0x23451\n0x22E57\t0x2344B\n0x22E58\t0x6818\n0x22E59\t0x681F\n0x22E5A\t0x682D\n0x22E5B\t0x23465\n0x22E5C\t0x6833\n0x22E5D\t0x683B\n0x22E5E\t0x683E\n0x22E5F\t0x6844\n0x22E60\t0x6845\n0x22E61\t0x6849\n0x22E62\t0x684C\n0x22E63\t0x6855\n0x22E64\t0x6857\n0x22E65\t0x3B77\n0x22E66\t0x686B\n0x22E67\t0x686E\n0x22E68\t0x687A\n0x22E69\t0x687C\n0x22E6A\t0x6882\n0x22E6B\t0x6890\n0x22E6C\t0x6896\n0x22E6D\t0x3B6D\n0x22E6E\t0x6898\n0x22E6F\t0x6899\n0x22E70\t0x689A\n0x22E71\t0x689C\n0x22E72\t0x68AA\n0x22E73\t0x68AB\n0x22E74\t0x68B4\n0x22E75\t0x68BB\n0x22E76\t0x68FB\n0x22E77\t0x234E4\n0x22E78\t0x2355A\n0x22E79\t0xFA13\n0x22E7A\t0x68C3\n0x22E7B\t0x68C5\n0x22E7C\t0x68CC\n0x22E7D\t0x68CF\n0x22E7E\t0x68D6\n0x22F21\t0x68D9\n0x22F22\t0x68E4\n0x22F23\t0x68E5\n0x22F24\t0x68EC\n0x22F25\t0x68F7\n0x22F26\t0x6903\n0x22F27\t0x6907\n0x22F28\t0x3B87\n0x22F29\t0x3B88\n0x22F2A\t0x23594\n0x22F2B\t0x693B\n0x22F2C\t0x3B8D\n0x22F2D\t0x6946\n0x22F2E\t0x6969\n0x22F2F\t0x696C\n0x22F30\t0x6972\n0x22F31\t0x697A\n0x22F32\t0x697F\n0x22F33\t0x6992\n0x22F34\t0x3BA4\n0x22F35\t0x6996\n0x22F36\t0x6998\n0x22F37\t0x69A6\n0x22F38\t0x69B0\n0x22F39\t0x69B7\n0x22F3A\t0x69BA\n0x22F3B\t0x69BC\n0x22F3C\t0x69C0\n0x22F3D\t0x69D1\n0x22F3E\t0x69D6\n0x22F3F\t0x23639\n0x22F40\t0x23647\n0x22F41\t0x6A30\n0x22F42\t0x23638\n0x22F43\t0x2363A\n0x22F44\t0x69E3\n0x22F45\t0x69EE\n0x22F46\t0x69EF\n0x22F47\t0x69F3\n0x22F48\t0x3BCD\n0x22F49\t0x69F4\n0x22F4A\t0x69FE\n0x22F4B\t0x6A11\n0x22F4C\t0x6A1A\n0x22F4D\t0x6A1D\n0x22F4E\t0x2371C\n0x22F4F\t0x6A32\n0x22F50\t0x6A33\n0x22F51\t0x6A34\n0x22F52\t0x6A3F\n0x22F53\t0x6A46\n0x22F54\t0x6A49\n0x22F55\t0x6A7A\n0x22F56\t0x6A4E\n0x22F57\t0x6A52\n0x22F58\t0x6A64\n0x22F59\t0x2370C\n0x22F5A\t0x6A7E\n0x22F5B\t0x6A83\n0x22F5C\t0x6A8B\n0x22F5D\t0x3BF0\n0x22F5E\t0x6A91\n0x22F5F\t0x6A9F\n0x22F60\t0x6AA1\n0x22F61\t0x23764\n0x22F62\t0x6AAB\n0x22F63\t0x6ABD\n0x22F64\t0x6AC6\n0x22F65\t0x6AD4\n0x22F66\t0x6AD0\n0x22F67\t0x6ADC\n0x22F68\t0x6ADD\n0x22F69\t0x237FF\n0x22F6A\t0x237E7\n0x22F6B\t0x6AEC\n0x22F6C\t0x6AF1\n0x22F6D\t0x6AF2\n0x22F6E\t0x6AF3\n0x22F6F\t0x6AFD\n0x22F70\t0x23824\n0x22F71\t0x6B0B\n0x22F72\t0x6B0F\n0x22F73\t0x6B10\n0x22F74\t0x6B11\n0x22F75\t0x2383D\n0x22F76\t0x6B17\n0x22F77\t0x3C26\n0x22F78\t0x6B2F\n0x22F79\t0x6B4A\n0x22F7A\t0x6B58\n0x22F7B\t0x6B6C\n0x22F7C\t0x6B75\n0x22F7D\t0x6B7A\n0x22F7E\t0x6B81\n0x26E21\t0x6B9B\n0x26E22\t0x6BAE\n0x26E23\t0x23A98\n0x26E24\t0x6BBD\n0x26E25\t0x6BBE\n0x26E26\t0x6BC7\n0x26E27\t0x6BC8\n0x26E28\t0x6BC9\n0x26E29\t0x6BDA\n0x26E2A\t0x6BE6\n0x26E2B\t0x6BE7\n0x26E2C\t0x6BEE\n0x26E2D\t0x6BF1\n0x26E2E\t0x6C02\n0x26E2F\t0x6C0A\n0x26E30\t0x6C0E\n0x26E31\t0x6C35\n0x26E32\t0x6C36\n0x26E33\t0x6C3A\n0x26E34\t0x23C7F\n0x26E35\t0x6C3F\n0x26E36\t0x6C4D\n0x26E37\t0x6C5B\n0x26E38\t0x6C6D\n0x26E39\t0x6C84\n0x26E3A\t0x6C89\n0x26E3B\t0x3CC3\n0x26E3C\t0x6C94\n0x26E3D\t0x6C95\n0x26E3E\t0x6C97\n0x26E3F\t0x6CAD\n0x26E40\t0x6CC2\n0x26E41\t0x6CD0\n0x26E42\t0x3CD2\n0x26E43\t0x6CD6\n0x26E44\t0x6CDA\n0x26E45\t0x6CDC\n0x26E46\t0x6CE9\n0x26E47\t0x6CEC\n0x26E48\t0x6CED\n0x26E49\t0x23D00\n0x26E4A\t0x6D00\n0x26E4B\t0x6D0A\n0x26E4C\t0x6D24\n0x26E4D\t0x6D26\n0x26E4E\t0x6D27\n0x26E4F\t0x6C67\n0x26E50\t0x6D2F\n0x26E51\t0x6D3C\n0x26E52\t0x6D5B\n0x26E53\t0x6D5E\n0x26E54\t0x6D60\n0x26E55\t0x6D70\n0x26E56\t0x6D80\n0x26E57\t0x6D81\n0x26E58\t0x6D8A\n0x26E59\t0x6D8D\n0x26E5A\t0x6D91\n0x26E5B\t0x6D98\n0x26E5C\t0x23D40\n0x26E5D\t0x6E17\n0x26E5E\t0x23DFA\n0x26E5F\t0x23DF9\n0x26E60\t0x23DD3\n0x26E61\t0x6DAB\n0x26E62\t0x6DAE\n0x26E63\t0x6DB4\n0x26E64\t0x6DC2\n0x26E65\t0x6D34\n0x26E66\t0x6DC8\n0x26E67\t0x6DCE\n0x26E68\t0x6DCF\n0x26E69\t0x6DD0\n0x26E6A\t0x6DDF\n0x26E6B\t0x6DE9\n0x26E6C\t0x6DF6\n0x26E6D\t0x6E36\n0x26E6E\t0x6E1E\n0x26E6F\t0x6E22\n0x26E70\t0x6E27\n0x26E71\t0x3D11\n0x26E72\t0x6E32\n0x26E73\t0x6E3C\n0x26E74\t0x6E48\n0x26E75\t0x6E49\n0x26E76\t0x6E4B\n0x26E77\t0x6E4C\n0x26E78\t0x6E4F\n0x26E79\t0x6E51\n0x26E7A\t0x6E53\n0x26E7B\t0x6E54\n0x26E7C\t0x6E57\n0x26E7D\t0x6E63\n0x26E7E\t0x3D1E\n0x26F21\t0x6E93\n0x26F22\t0x6EA7\n0x26F23\t0x6EB4\n0x26F24\t0x6EBF\n0x26F25\t0x6EC3\n0x26F26\t0x6ECA\n0x26F27\t0x6ED9\n0x26F28\t0x6F35\n0x26F29\t0x6EEB\n0x26F2A\t0x6EF9\n0x26F2B\t0x6EFB\n0x26F2C\t0x6F0A\n0x26F2D\t0x6F0C\n0x26F2E\t0x6F18\n0x26F2F\t0x6F25\n0x26F30\t0x6F36\n0x26F31\t0x6F3C\n0x26F32\t0x23F7E\n0x26F33\t0x6F52\n0x26F34\t0x6F57\n0x26F35\t0x6F5A\n0x26F36\t0x6F60\n0x26F37\t0x6F68\n0x26F38\t0x6F98\n0x26F39\t0x6F7D\n0x26F3A\t0x6F90\n0x26F3B\t0x6F96\n0x26F3C\t0x6FBE\n0x26F3D\t0x6F9F\n0x26F3E\t0x6FA5\n0x26F3F\t0x6FAF\n0x26F40\t0x3D64\n0x26F41\t0x6FB5\n0x26F42\t0x6FC8\n0x26F43\t0x6FC9\n0x26F44\t0x6FDA\n0x26F45\t0x6FDE\n0x26F46\t0x6FE9\n0x26F47\t0x24096\n0x26F48\t0x6FFC\n0x26F49\t0x7000\n0x26F4A\t0x7007\n0x26F4B\t0x700A\n0x26F4C\t0x7023\n0x26F4D\t0x24103\n0x26F4E\t0x7039\n0x26F4F\t0x703A\n0x26F50\t0x703C\n0x26F51\t0x7043\n0x26F52\t0x7047\n0x26F53\t0x704B\n0x26F54\t0x3D9A\n0x26F55\t0x7054\n0x26F56\t0x7065\n0x26F57\t0x7069\n0x26F58\t0x706C\n0x26F59\t0x706E\n0x26F5A\t0x7076\n0x26F5B\t0x707E\n0x26F5C\t0x7081\n0x26F5D\t0x7086\n0x26F5E\t0x7095\n0x26F5F\t0x7097\n0x26F60\t0x70BB\n0x26F61\t0x241C6\n0x26F62\t0x709F\n0x26F63\t0x70B1\n0x26F64\t0x241FE\n0x26F65\t0x70EC\n0x26F66\t0x70CA\n0x26F67\t0x70D1\n0x26F68\t0x70D3\n0x26F69\t0x70DC\n0x26F6A\t0x7103\n0x26F6B\t0x7104\n0x26F6C\t0x7106\n0x26F6D\t0x7107\n0x26F6E\t0x7108\n0x26F6F\t0x710C\n0x26F70\t0x3DC0\n0x26F71\t0x712F\n0x26F72\t0x7131\n0x26F73\t0x7150\n0x26F74\t0x714A\n0x26F75\t0x7153\n0x26F76\t0x715E\n0x26F77\t0x3DD4\n0x26F78\t0x7196\n0x26F79\t0x7180\n0x26F7A\t0x719B\n0x26F7B\t0x71A0\n0x26F7C\t0x71A2\n0x26F7D\t0x71AE\n0x26F7E\t0x71AF\n0x27021\t0x71B3\n0x27022\t0x243BC\n0x27023\t0x71CB\n0x27024\t0x71D3\n0x27025\t0x71D9\n0x27026\t0x71DC\n0x27027\t0x7207\n0x27028\t0x3E05\n0x27029\t0xFA49\n0x2702A\t0x722B\n0x2702B\t0x7234\n0x2702C\t0x7238\n0x2702D\t0x7239\n0x2702E\t0x4E2C\n0x2702F\t0x7242\n0x27030\t0x7253\n0x27031\t0x7257\n0x27032\t0x7263\n0x27033\t0x24629\n0x27034\t0x726E\n0x27035\t0x726F\n0x27036\t0x7278\n0x27037\t0x727F\n0x27038\t0x728E\n0x27039\t0x246A5\n0x2703A\t0x72AD\n0x2703B\t0x72AE\n0x2703C\t0x72B0\n0x2703D\t0x72B1\n0x2703E\t0x72C1\n0x2703F\t0x3E60\n0x27040\t0x72CC\n0x27041\t0x3E66\n0x27042\t0x3E68\n0x27043\t0x72F3\n0x27044\t0x72FA\n0x27045\t0x7307\n0x27046\t0x7312\n0x27047\t0x7318\n0x27048\t0x7319\n0x27049\t0x3E83\n0x2704A\t0x7339\n0x2704B\t0x732C\n0x2704C\t0x7331\n0x2704D\t0x7333\n0x2704E\t0x733D\n0x2704F\t0x7352\n0x27050\t0x3E94\n0x27051\t0x736B\n0x27052\t0x736C\n0x27053\t0x24896\n0x27054\t0x736E\n0x27055\t0x736F\n0x27056\t0x7371\n0x27057\t0x7377\n0x27058\t0x7381\n0x27059\t0x7385\n0x2705A\t0x738A\n0x2705B\t0x7394\n0x2705C\t0x7398\n0x2705D\t0x739C\n0x2705E\t0x739E\n0x2705F\t0x73A5\n0x27060\t0x73A8\n0x27061\t0x73B5\n0x27062\t0x73B7\n0x27063\t0x73B9\n0x27064\t0x73BC\n0x27065\t0x73BF\n0x27066\t0x73C5\n0x27067\t0x73CB\n0x27068\t0x73E1\n0x27069\t0x73E7\n0x2706A\t0x73F9\n0x2706B\t0x7413\n0x2706C\t0x73FA\n0x2706D\t0x7401\n0x2706E\t0x7424\n0x2706F\t0x7431\n0x27070\t0x7439\n0x27071\t0x7453\n0x27072\t0x7440\n0x27073\t0x7443\n0x27074\t0x744D\n0x27075\t0x7452\n0x27076\t0x745D\n0x27077\t0x7471\n0x27078\t0x7481\n0x27079\t0x7485\n0x2707A\t0x7488\n0x2707B\t0x24A4D\n0x2707C\t0x7492\n0x2707D\t0x7497\n0x2707E\t0x7499\n0x27121\t0x74A0\n0x27122\t0x74A1\n0x27123\t0x74A5\n0x27124\t0x74AA\n0x27125\t0x74AB\n0x27126\t0x74B9\n0x27127\t0x74BB\n0x27128\t0x74BA\n0x27129\t0x74D6\n0x2712A\t0x74D8\n0x2712B\t0x74DE\n0x2712C\t0x74EF\n0x2712D\t0x74EB\n0x2712E\t0x24B56\n0x2712F\t0x74FA\n0x27130\t0x24B6F\n0x27131\t0x7520\n0x27132\t0x7524\n0x27133\t0x752A\n0x27134\t0x3F57\n0x27135\t0x24C16\n0x27136\t0x753D\n0x27137\t0x753E\n0x27138\t0x7540\n0x27139\t0x7548\n0x2713A\t0x754E\n0x2713B\t0x7550\n0x2713C\t0x7552\n0x2713D\t0x756C\n0x2713E\t0x7572\n0x2713F\t0x7571\n0x27140\t0x757A\n0x27141\t0x757D\n0x27142\t0x757E\n0x27143\t0x7581\n0x27144\t0x24D14\n0x27145\t0x758C\n0x27146\t0x3F75\n0x27147\t0x75A2\n0x27148\t0x3F77\n0x27149\t0x75B0\n0x2714A\t0x75B7\n0x2714B\t0x75BF\n0x2714C\t0x75C0\n0x2714D\t0x75C6\n0x2714E\t0x75CF\n0x2714F\t0x75D3\n0x27150\t0x75DD\n0x27151\t0x75DF\n0x27152\t0x75E0\n0x27153\t0x75E7\n0x27154\t0x75EC\n0x27155\t0x75EE\n0x27156\t0x75F1\n0x27157\t0x75F9\n0x27158\t0x7603\n0x27159\t0x7618\n0x2715A\t0x7607\n0x2715B\t0x760F\n0x2715C\t0x3FAE\n0x2715D\t0x24E0E\n0x2715E\t0x7613\n0x2715F\t0x761B\n0x27160\t0x761C\n0x27161\t0x24E37\n0x27162\t0x7625\n0x27163\t0x7628\n0x27164\t0x763C\n0x27165\t0x7633\n0x27166\t0x24E6A\n0x27167\t0x3FC9\n0x27168\t0x7641\n0x27169\t0x24E8B\n0x2716A\t0x7649\n0x2716B\t0x7655\n0x2716C\t0x3FD7\n0x2716D\t0x766E\n0x2716E\t0x7695\n0x2716F\t0x769C\n0x27170\t0x76A1\n0x27171\t0x76A0\n0x27172\t0x76A7\n0x27173\t0x76A8\n0x27174\t0x76AF\n0x27175\t0x2504A\n0x27176\t0x76C9\n0x27177\t0x25055\n0x27178\t0x76E8\n0x27179\t0x76EC\n0x2717A\t0x25122\n0x2717B\t0x7717\n0x2717C\t0x771A\n0x2717D\t0x772D\n0x2717E\t0x7735\n0x27221\t0x251A9\n0x27222\t0x4039\n0x27223\t0x251E5\n0x27224\t0x251CD\n0x27225\t0x7758\n0x27226\t0x7760\n0x27227\t0x776A\n0x27228\t0x2521E\n0x27229\t0x7772\n0x2722A\t0x777C\n0x2722B\t0x777D\n0x2722C\t0x2524C\n0x2722D\t0x4058\n0x2722E\t0x779A\n0x2722F\t0x779F\n0x27230\t0x77A2\n0x27231\t0x77A4\n0x27232\t0x77A9\n0x27233\t0x77DE\n0x27234\t0x77DF\n0x27235\t0x77E4\n0x27236\t0x77E6\n0x27237\t0x77EA\n0x27238\t0x77EC\n0x27239\t0x4093\n0x2723A\t0x77F0\n0x2723B\t0x77F4\n0x2723C\t0x77FB\n0x2723D\t0x2542E\n0x2723E\t0x7805\n0x2723F\t0x7806\n0x27240\t0x7809\n0x27241\t0x780D\n0x27242\t0x7819\n0x27243\t0x7821\n0x27244\t0x782C\n0x27245\t0x7847\n0x27246\t0x7864\n0x27247\t0x786A\n0x27248\t0x254D9\n0x27249\t0x788A\n0x2724A\t0x7894\n0x2724B\t0x78A4\n0x2724C\t0x789D\n0x2724D\t0x789E\n0x2724E\t0x789F\n0x2724F\t0x78BB\n0x27250\t0x78C8\n0x27251\t0x78CC\n0x27252\t0x78CE\n0x27253\t0x78D5\n0x27254\t0x78E0\n0x27255\t0x78E1\n0x27256\t0x78E6\n0x27257\t0x78F9\n0x27258\t0x78FA\n0x27259\t0x78FB\n0x2725A\t0x78FE\n0x2725B\t0x255A7\n0x2725C\t0x7910\n0x2725D\t0x791B\n0x2725E\t0x7930\n0x2725F\t0x7925\n0x27260\t0x793B\n0x27261\t0x794A\n0x27262\t0x7958\n0x27263\t0x795B\n0x27264\t0x4105\n0x27265\t0x7967\n0x27266\t0x7972\n0x27267\t0x7994\n0x27268\t0x7995\n0x27269\t0x7996\n0x2726A\t0x799B\n0x2726B\t0x79A1\n0x2726C\t0x79A9\n0x2726D\t0x79B4\n0x2726E\t0x79BB\n0x2726F\t0x79C2\n0x27270\t0x79C7\n0x27271\t0x79CC\n0x27272\t0x79CD\n0x27273\t0x79D6\n0x27274\t0x4148\n0x27275\t0x257A9\n0x27276\t0x257B4\n0x27277\t0x414F\n0x27278\t0x7A0A\n0x27279\t0x7A11\n0x2727A\t0x7A15\n0x2727B\t0x7A1B\n0x2727C\t0x7A1E\n0x2727D\t0x4163\n0x2727E\t0x7A2D\n0x27321\t0x7A38\n0x27322\t0x7A47\n0x27323\t0x7A4C\n0x27324\t0x7A56\n0x27325\t0x7A59\n0x27326\t0x7A5C\n0x27327\t0x7A5F\n0x27328\t0x7A60\n0x27329\t0x7A67\n0x2732A\t0x7A6A\n0x2732B\t0x7A75\n0x2732C\t0x7A78\n0x2732D\t0x7A82\n0x2732E\t0x7A8A\n0x2732F\t0x7A90\n0x27330\t0x7AA3\n0x27331\t0x7AAC\n0x27332\t0x259D4\n0x27333\t0x41B4\n0x27334\t0x7AB9\n0x27335\t0x7ABC\n0x27336\t0x7ABE\n0x27337\t0x41BF\n0x27338\t0x7ACC\n0x27339\t0x7AD1\n0x2733A\t0x7AE7\n0x2733B\t0x7AE8\n0x2733C\t0x7AF4\n0x2733D\t0x25AE4\n0x2733E\t0x25AE3\n0x2733F\t0x7B07\n0x27340\t0x25AF1\n0x27341\t0x7B3D\n0x27342\t0x7B27\n0x27343\t0x7B2A\n0x27344\t0x7B2E\n0x27345\t0x7B2F\n0x27346\t0x7B31\n0x27347\t0x41E6\n0x27348\t0x41F3\n0x27349\t0x7B7F\n0x2734A\t0x7B41\n0x2734B\t0x41EE\n0x2734C\t0x7B55\n0x2734D\t0x7B79\n0x2734E\t0x7B64\n0x2734F\t0x7B66\n0x27350\t0x7B69\n0x27351\t0x7B73\n0x27352\t0x25BB2\n0x27353\t0x4207\n0x27354\t0x7B90\n0x27355\t0x7B91\n0x27356\t0x7B9B\n0x27357\t0x420E\n0x27358\t0x7BAF\n0x27359\t0x7BB5\n0x2735A\t0x7BBC\n0x2735B\t0x7BC5\n0x2735C\t0x7BCA\n0x2735D\t0x25C4B\n0x2735E\t0x25C64\n0x2735F\t0x7BD4\n0x27360\t0x7BD6\n0x27361\t0x7BDA\n0x27362\t0x7BEA\n0x27363\t0x7BF0\n0x27364\t0x7C03\n0x27365\t0x7C0B\n0x27366\t0x7C0E\n0x27367\t0x7C0F\n0x27368\t0x7C26\n0x27369\t0x7C45\n0x2736A\t0x7C4A\n0x2736B\t0x7C51\n0x2736C\t0x7C57\n0x2736D\t0x7C5E\n0x2736E\t0x7C61\n0x2736F\t0x7C69\n0x27370\t0x7C6E\n0x27371\t0x7C6F\n0x27372\t0x7C70\n0x27373\t0x25E2E\n0x27374\t0x25E56\n0x27375\t0x25E65\n0x27376\t0x7CA6\n0x27377\t0x25E62\n0x27378\t0x7CB6\n0x27379\t0x7CB7\n0x2737A\t0x7CBF\n0x2737B\t0x25ED8\n0x2737C\t0x7CC4\n0x2737D\t0x25EC2\n0x2737E\t0x7CC8\n0x27421\t0x7CCD\n0x27422\t0x25EE8\n0x27423\t0x7CD7\n0x27424\t0x25F23\n0x27425\t0x7CE6\n0x27426\t0x7CEB\n0x27427\t0x25F5C\n0x27428\t0x7CF5\n0x27429\t0x7D03\n0x2742A\t0x7D09\n0x2742B\t0x42C6\n0x2742C\t0x7D12\n0x2742D\t0x7D1E\n0x2742E\t0x25FE0\n0x2742F\t0x25FD4\n0x27430\t0x7D3D\n0x27431\t0x7D3E\n0x27432\t0x7D40\n0x27433\t0x7D47\n0x27434\t0x2600C\n0x27435\t0x25FFB\n0x27436\t0x42D6\n0x27437\t0x7D59\n0x27438\t0x7D5A\n0x27439\t0x7D6A\n0x2743A\t0x7D70\n0x2743B\t0x42DD\n0x2743C\t0x7D7F\n0x2743D\t0x26017\n0x2743E\t0x7D86\n0x2743F\t0x7D88\n0x27440\t0x7D8C\n0x27441\t0x7D97\n0x27442\t0x26060\n0x27443\t0x7D9D\n0x27444\t0x7DA7\n0x27445\t0x7DAA\n0x27446\t0x7DB6\n0x27447\t0x7DB7\n0x27448\t0x7DC0\n0x27449\t0x7DD7\n0x2744A\t0x7DD9\n0x2744B\t0x7DE6\n0x2744C\t0x7DF1\n0x2744D\t0x7DF9\n0x2744E\t0x4302\n0x2744F\t0x260ED\n0x27450\t0xFA58\n0x27451\t0x7E10\n0x27452\t0x7E17\n0x27453\t0x7E1D\n0x27454\t0x7E20\n0x27455\t0x7E27\n0x27456\t0x7E2C\n0x27457\t0x7E45\n0x27458\t0x7E73\n0x27459\t0x7E75\n0x2745A\t0x7E7E\n0x2745B\t0x7E86\n0x2745C\t0x7E87\n0x2745D\t0x432B\n0x2745E\t0x7E91\n0x2745F\t0x7E98\n0x27460\t0x7E9A\n0x27461\t0x4343\n0x27462\t0x7F3C\n0x27463\t0x7F3B\n0x27464\t0x7F3E\n0x27465\t0x7F43\n0x27466\t0x7F44\n0x27467\t0x7F4F\n0x27468\t0x34C1\n0x27469\t0x26270\n0x2746A\t0x7F52\n0x2746B\t0x26286\n0x2746C\t0x7F61\n0x2746D\t0x7F63\n0x2746E\t0x7F64\n0x2746F\t0x7F6D\n0x27470\t0x7F7D\n0x27471\t0x7F7E\n0x27472\t0x2634C\n0x27473\t0x7F90\n0x27474\t0x517B\n0x27475\t0x23D0E\n0x27476\t0x7F96\n0x27477\t0x7F9C\n0x27478\t0x7FAD\n0x27479\t0x26402\n0x2747A\t0x7FC3\n0x2747B\t0x7FCF\n0x2747C\t0x7FE3\n0x2747D\t0x7FE5\n0x2747E\t0x7FEF\n0x27521\t0x7FF2\n0x27522\t0x8002\n0x27523\t0x800A\n0x27524\t0x8008\n0x27525\t0x800E\n0x27526\t0x8011\n0x27527\t0x8016\n0x27528\t0x8024\n0x27529\t0x802C\n0x2752A\t0x8030\n0x2752B\t0x8043\n0x2752C\t0x8066\n0x2752D\t0x8071\n0x2752E\t0x8075\n0x2752F\t0x807B\n0x27530\t0x8099\n0x27531\t0x809C\n0x27532\t0x80A4\n0x27533\t0x80A7\n0x27534\t0x80B8\n0x27535\t0x2667E\n0x27536\t0x80C5\n0x27537\t0x80D5\n0x27538\t0x80D8\n0x27539\t0x80E6\n0x2753A\t0x266B0\n0x2753B\t0x810D\n0x2753C\t0x80F5\n0x2753D\t0x80FB\n0x2753E\t0x43EE\n0x2753F\t0x8135\n0x27540\t0x8116\n0x27541\t0x811E\n0x27542\t0x43F0\n0x27543\t0x8124\n0x27544\t0x8127\n0x27545\t0x812C\n0x27546\t0x2671D\n0x27547\t0x813D\n0x27548\t0x4408\n0x27549\t0x8169\n0x2754A\t0x4417\n0x2754B\t0x8181\n0x2754C\t0x441C\n0x2754D\t0x8184\n0x2754E\t0x8185\n0x2754F\t0x4422\n0x27550\t0x8198\n0x27551\t0x81B2\n0x27552\t0x81C1\n0x27553\t0x81C3\n0x27554\t0x81D6\n0x27555\t0x81DB\n0x27556\t0x268DD\n0x27557\t0x81E4\n0x27558\t0x268EA\n0x27559\t0x81EC\n0x2755A\t0x26951\n0x2755B\t0x81FD\n0x2755C\t0x81FF\n0x2755D\t0x2696F\n0x2755E\t0x8204\n0x2755F\t0x269DD\n0x27560\t0x8219\n0x27561\t0x8221\n0x27562\t0x8222\n0x27563\t0x26A1E\n0x27564\t0x8232\n0x27565\t0x8234\n0x27566\t0x823C\n0x27567\t0x8246\n0x27568\t0x8249\n0x27569\t0x8245\n0x2756A\t0x26A58\n0x2756B\t0x824B\n0x2756C\t0x4476\n0x2756D\t0x824F\n0x2756E\t0x447A\n0x2756F\t0x8257\n0x27570\t0x26A8C\n0x27571\t0x825C\n0x27572\t0x8263\n0x27573\t0x26AB7\n0x27574\t0xFA5D\n0x27575\t0xFA5E\n0x27576\t0x8279\n0x27577\t0x4491\n0x27578\t0x827D\n0x27579\t0x827F\n0x2757A\t0x8283\n0x2757B\t0x828A\n0x2757C\t0x8293\n0x2757D\t0x82A7\n0x2757E\t0x82A8\n0x27621\t0x82B2\n0x27622\t0x82B4\n0x27623\t0x82BA\n0x27624\t0x82BC\n0x27625\t0x82E2\n0x27626\t0x82E8\n0x27627\t0x82F7\n0x27628\t0x8307\n0x27629\t0x8308\n0x2762A\t0x830C\n0x2762B\t0x8354\n0x2762C\t0x831B\n0x2762D\t0x831D\n0x2762E\t0x8330\n0x2762F\t0x833C\n0x27630\t0x8344\n0x27631\t0x8357\n0x27632\t0x44BE\n0x27633\t0x837F\n0x27634\t0x44D4\n0x27635\t0x44B3\n0x27636\t0x838D\n0x27637\t0x8394\n0x27638\t0x8395\n0x27639\t0x839B\n0x2763A\t0x839D\n0x2763B\t0x83C9\n0x2763C\t0x83D0\n0x2763D\t0x83D4\n0x2763E\t0x83DD\n0x2763F\t0x83E5\n0x27640\t0x83F9\n0x27641\t0x840F\n0x27642\t0x8411\n0x27643\t0x8415\n0x27644\t0x26C73\n0x27645\t0x8417\n0x27646\t0x8439\n0x27647\t0x844A\n0x27648\t0x844F\n0x27649\t0x8451\n0x2764A\t0x8452\n0x2764B\t0x8459\n0x2764C\t0x845A\n0x2764D\t0x845C\n0x2764E\t0x26CDD\n0x2764F\t0x8465\n0x27650\t0x8476\n0x27651\t0x8478\n0x27652\t0x847C\n0x27653\t0x8481\n0x27654\t0x450D\n0x27655\t0x84DC\n0x27656\t0x8497\n0x27657\t0x84A6\n0x27658\t0x84BE\n0x27659\t0x4508\n0x2765A\t0x84CE\n0x2765B\t0x84CF\n0x2765C\t0x84D3\n0x2765D\t0x26E65\n0x2765E\t0x84E7\n0x2765F\t0x84EA\n0x27660\t0x84EF\n0x27661\t0x84F0\n0x27662\t0x84F1\n0x27663\t0x84FA\n0x27664\t0x84FD\n0x27665\t0x850C\n0x27666\t0x851B\n0x27667\t0x8524\n0x27668\t0x8525\n0x27669\t0x852B\n0x2766A\t0x8534\n0x2766B\t0x854F\n0x2766C\t0x856F\n0x2766D\t0x4525\n0x2766E\t0x4543\n0x2766F\t0x853E\n0x27670\t0x8551\n0x27671\t0x8553\n0x27672\t0x855E\n0x27673\t0x8561\n0x27674\t0x8562\n0x27675\t0x26F94\n0x27676\t0x857B\n0x27677\t0x857D\n0x27678\t0x857F\n0x27679\t0x8581\n0x2767A\t0x8586\n0x2767B\t0x8593\n0x2767C\t0x859D\n0x2767D\t0x859F\n0x2767E\t0x26FF8\n0x27721\t0x26FF6\n0x27722\t0x26FF7\n0x27723\t0x85B7\n0x27724\t0x85BC\n0x27725\t0x85C7\n0x27726\t0x85CA\n0x27727\t0x85D8\n0x27728\t0x85D9\n0x27729\t0x85DF\n0x2772A\t0x85E1\n0x2772B\t0x85E6\n0x2772C\t0x85F6\n0x2772D\t0x8600\n0x2772E\t0x8611\n0x2772F\t0x861E\n0x27730\t0x8621\n0x27731\t0x8624\n0x27732\t0x8627\n0x27733\t0x2710D\n0x27734\t0x8639\n0x27735\t0x863C\n0x27736\t0x27139\n0x27737\t0x8640\n0x27738\t0xFA20\n0x27739\t0x8653\n0x2773A\t0x8656\n0x2773B\t0x866F\n0x2773C\t0x8677\n0x2773D\t0x867A\n0x2773E\t0x8687\n0x2773F\t0x8689\n0x27740\t0x868D\n0x27741\t0x8691\n0x27742\t0x869C\n0x27743\t0x869D\n0x27744\t0x86A8\n0x27745\t0xFA21\n0x27746\t0x86B1\n0x27747\t0x86B3\n0x27748\t0x86C1\n0x27749\t0x86C3\n0x2774A\t0x86D1\n0x2774B\t0x86D5\n0x2774C\t0x86D7\n0x2774D\t0x86E3\n0x2774E\t0x86E6\n0x2774F\t0x45B8\n0x27750\t0x8705\n0x27751\t0x8707\n0x27752\t0x870E\n0x27753\t0x8710\n0x27754\t0x8713\n0x27755\t0x8719\n0x27756\t0x871F\n0x27757\t0x8721\n0x27758\t0x8723\n0x27759\t0x8731\n0x2775A\t0x873A\n0x2775B\t0x873E\n0x2775C\t0x8740\n0x2775D\t0x8743\n0x2775E\t0x8751\n0x2775F\t0x8758\n0x27760\t0x8764\n0x27761\t0x8765\n0x27762\t0x8772\n0x27763\t0x877C\n0x27764\t0x273DB\n0x27765\t0x273DA\n0x27766\t0x87A7\n0x27767\t0x8789\n0x27768\t0x878B\n0x27769\t0x8793\n0x2776A\t0x87A0\n0x2776B\t0x273FE\n0x2776C\t0x45E5\n0x2776D\t0x87BE\n0x2776E\t0x27410\n0x2776F\t0x87C1\n0x27770\t0x87CE\n0x27771\t0x87F5\n0x27772\t0x87DF\n0x27773\t0x27449\n0x27774\t0x87E3\n0x27775\t0x87E5\n0x27776\t0x87E6\n0x27777\t0x87EA\n0x27778\t0x87EB\n0x27779\t0x87ED\n0x2777A\t0x8801\n0x2777B\t0x8803\n0x2777C\t0x880B\n0x2777D\t0x8813\n0x2777E\t0x8828\n0x27821\t0x882E\n0x27822\t0x8832\n0x27823\t0x883C\n0x27824\t0x460F\n0x27825\t0x884A\n0x27826\t0x8858\n0x27827\t0x885F\n0x27828\t0x8864\n0x27829\t0x27615\n0x2782A\t0x27614\n0x2782B\t0x8869\n0x2782C\t0x27631\n0x2782D\t0x886F\n0x2782E\t0x88A0\n0x2782F\t0x88BC\n0x27830\t0x88BD\n0x27831\t0x88BE\n0x27832\t0x88C0\n0x27833\t0x88D2\n0x27834\t0x27693\n0x27835\t0x88D1\n0x27836\t0x88D3\n0x27837\t0x88DB\n0x27838\t0x88F0\n0x27839\t0x88F1\n0x2783A\t0x4641\n0x2783B\t0x8901\n0x2783C\t0x2770E\n0x2783D\t0x8937\n0x2783E\t0x27723\n0x2783F\t0x8942\n0x27840\t0x8945\n0x27841\t0x8949\n0x27842\t0x27752\n0x27843\t0x4665\n0x27844\t0x8962\n0x27845\t0x8980\n0x27846\t0x8989\n0x27847\t0x8990\n0x27848\t0x899F\n0x27849\t0x89B0\n0x2784A\t0x89B7\n0x2784B\t0x89D6\n0x2784C\t0x89D8\n0x2784D\t0x89EB\n0x2784E\t0x46A1\n0x2784F\t0x89F1\n0x27850\t0x89F3\n0x27851\t0x89FD\n0x27852\t0x89FF\n0x27853\t0x46AF\n0x27854\t0x8A11\n0x27855\t0x8A14\n0x27856\t0x27985\n0x27857\t0x8A21\n0x27858\t0x8A35\n0x27859\t0x8A3E\n0x2785A\t0x8A45\n0x2785B\t0x8A4D\n0x2785C\t0x8A58\n0x2785D\t0x8AAE\n0x2785E\t0x8A90\n0x2785F\t0x8AB7\n0x27860\t0x8ABE\n0x27861\t0x8AD7\n0x27862\t0x8AFC\n0x27863\t0x27A84\n0x27864\t0x8B0A\n0x27865\t0x8B05\n0x27866\t0x8B0D\n0x27867\t0x8B1C\n0x27868\t0x8B1F\n0x27869\t0x8B2D\n0x2786A\t0x8B43\n0x2786B\t0x470C\n0x2786C\t0x8B51\n0x2786D\t0x8B5E\n0x2786E\t0x8B76\n0x2786F\t0x8B7F\n0x27870\t0x8B81\n0x27871\t0x8B8B\n0x27872\t0x8B94\n0x27873\t0x8B95\n0x27874\t0x8B9C\n0x27875\t0x8B9E\n0x27876\t0x8C39\n0x27877\t0x27BB3\n0x27878\t0x8C3D\n0x27879\t0x27BBE\n0x2787A\t0x27BC7\n0x2787B\t0x8C45\n0x2787C\t0x8C47\n0x2787D\t0x8C4F\n0x2787E\t0x8C54\n0x27921\t0x8C57\n0x27922\t0x8C69\n0x27923\t0x8C6D\n0x27924\t0x8C73\n0x27925\t0x27CB8\n0x27926\t0x8C93\n0x27927\t0x8C92\n0x27928\t0x8C99\n0x27929\t0x4764\n0x2792A\t0x8C9B\n0x2792B\t0x8CA4\n0x2792C\t0x8CD6\n0x2792D\t0x8CD5\n0x2792E\t0x8CD9\n0x2792F\t0x27DA0\n0x27930\t0x8CF0\n0x27931\t0x8CF1\n0x27932\t0x27E10\n0x27933\t0x8D09\n0x27934\t0x8D0E\n0x27935\t0x8D6C\n0x27936\t0x8D84\n0x27937\t0x8D95\n0x27938\t0x8DA6\n0x27939\t0x27FB7\n0x2793A\t0x8DC6\n0x2793B\t0x8DC8\n0x2793C\t0x8DD9\n0x2793D\t0x8DEC\n0x2793E\t0x8E0C\n0x2793F\t0x47FD\n0x27940\t0x8DFD\n0x27941\t0x8E06\n0x27942\t0x2808A\n0x27943\t0x8E14\n0x27944\t0x8E16\n0x27945\t0x8E21\n0x27946\t0x8E22\n0x27947\t0x8E27\n0x27948\t0x280BB\n0x27949\t0x4816\n0x2794A\t0x8E36\n0x2794B\t0x8E39\n0x2794C\t0x8E4B\n0x2794D\t0x8E54\n0x2794E\t0x8E62\n0x2794F\t0x8E6C\n0x27950\t0x8E6D\n0x27951\t0x8E6F\n0x27952\t0x8E98\n0x27953\t0x8E9E\n0x27954\t0x8EAE\n0x27955\t0x8EB3\n0x27956\t0x8EB5\n0x27957\t0x8EB6\n0x27958\t0x8EBB\n0x27959\t0x28282\n0x2795A\t0x8ED1\n0x2795B\t0x8ED4\n0x2795C\t0x484E\n0x2795D\t0x8EF9\n0x2795E\t0x282F3\n0x2795F\t0x8F00\n0x27960\t0x8F08\n0x27961\t0x8F17\n0x27962\t0x8F2B\n0x27963\t0x8F40\n0x27964\t0x8F4A\n0x27965\t0x8F58\n0x27966\t0x2840C\n0x27967\t0x8FA4\n0x27968\t0x8FB4\n0x27969\t0xFA66\n0x2796A\t0x8FB6\n0x2796B\t0x28455\n0x2796C\t0x8FC1\n0x2796D\t0x8FC6\n0x2796E\t0xFA24\n0x2796F\t0x8FCA\n0x27970\t0x8FCD\n0x27971\t0x8FD3\n0x27972\t0x8FD5\n0x27973\t0x8FE0\n0x27974\t0x8FF1\n0x27975\t0x8FF5\n0x27976\t0x8FFB\n0x27977\t0x9002\n0x27978\t0x900C\n0x27979\t0x9037\n0x2797A\t0x2856B\n0x2797B\t0x9043\n0x2797C\t0x9044\n0x2797D\t0x905D\n0x2797E\t0x285C8\n0x27A21\t0x285C9\n0x27A22\t0x9085\n0x27A23\t0x908C\n0x27A24\t0x9090\n0x27A25\t0x961D\n0x27A26\t0x90A1\n0x27A27\t0x48B5\n0x27A28\t0x90B0\n0x27A29\t0x90B6\n0x27A2A\t0x90C3\n0x27A2B\t0x90C8\n0x27A2C\t0x286D7\n0x27A2D\t0x90DC\n0x27A2E\t0x90DF\n0x27A2F\t0x286FA\n0x27A30\t0x90F6\n0x27A31\t0x90F2\n0x27A32\t0x9100\n0x27A33\t0x90EB\n0x27A34\t0x90FE\n0x27A35\t0x90FF\n0x27A36\t0x9104\n0x27A37\t0x9106\n0x27A38\t0x9118\n0x27A39\t0x911C\n0x27A3A\t0x911E\n0x27A3B\t0x9137\n0x27A3C\t0x9139\n0x27A3D\t0x913A\n0x27A3E\t0x9146\n0x27A3F\t0x9147\n0x27A40\t0x9157\n0x27A41\t0x9159\n0x27A42\t0x9161\n0x27A43\t0x9164\n0x27A44\t0x9174\n0x27A45\t0x9179\n0x27A46\t0x9185\n0x27A47\t0x918E\n0x27A48\t0x91A8\n0x27A49\t0x91AE\n0x27A4A\t0x91B3\n0x27A4B\t0x91B6\n0x27A4C\t0x91C3\n0x27A4D\t0x91C4\n0x27A4E\t0x91DA\n0x27A4F\t0x28949\n0x27A50\t0x28946\n0x27A51\t0x91EC\n0x27A52\t0x91EE\n0x27A53\t0x9201\n0x27A54\t0x920A\n0x27A55\t0x9216\n0x27A56\t0x9217\n0x27A57\t0x2896B\n0x27A58\t0x9233\n0x27A59\t0x9242\n0x27A5A\t0x9247\n0x27A5B\t0x924A\n0x27A5C\t0x924E\n0x27A5D\t0x9251\n0x27A5E\t0x9256\n0x27A5F\t0x9259\n0x27A60\t0x9260\n0x27A61\t0x9261\n0x27A62\t0x9265\n0x27A63\t0x9267\n0x27A64\t0x9268\n0x27A65\t0x28987\n0x27A66\t0x28988\n0x27A67\t0x927C\n0x27A68\t0x927D\n0x27A69\t0x927F\n0x27A6A\t0x9289\n0x27A6B\t0x928D\n0x27A6C\t0x9297\n0x27A6D\t0x9299\n0x27A6E\t0x929F\n0x27A6F\t0x92A7\n0x27A70\t0x92AB\n0x27A71\t0x289BA\n0x27A72\t0x289BB\n0x27A73\t0x92B2\n0x27A74\t0x92BF\n0x27A75\t0x92C0\n0x27A76\t0x92C6\n0x27A77\t0x92CE\n0x27A78\t0x92D0\n0x27A79\t0x92D7\n0x27A7A\t0x92D9\n0x27A7B\t0x92E5\n0x27A7C\t0x92E7\n0x27A7D\t0x9311\n0x27A7E\t0x28A1E\n0x27B21\t0x28A29\n0x27B22\t0x92F7\n0x27B23\t0x92F9\n0x27B24\t0x92FB\n0x27B25\t0x9302\n0x27B26\t0x930D\n0x27B27\t0x9315\n0x27B28\t0x931D\n0x27B29\t0x931E\n0x27B2A\t0x9327\n0x27B2B\t0x9329\n0x27B2C\t0x28A71\n0x27B2D\t0x28A43\n0x27B2E\t0x9347\n0x27B2F\t0x9351\n0x27B30\t0x9357\n0x27B31\t0x935A\n0x27B32\t0x936B\n0x27B33\t0x9371\n0x27B34\t0x9373\n0x27B35\t0x93A1\n0x27B36\t0x28A99\n0x27B37\t0x28ACD\n0x27B38\t0x9388\n0x27B39\t0x938B\n0x27B3A\t0x938F\n0x27B3B\t0x939E\n0x27B3C\t0x93F5\n0x27B3D\t0x28AE4\n0x27B3E\t0x28ADD\n0x27B3F\t0x93F1\n0x27B40\t0x93C1\n0x27B41\t0x93C7\n0x27B42\t0x93DC\n0x27B43\t0x93E2\n0x27B44\t0x93E7\n0x27B45\t0x9409\n0x27B46\t0x940F\n0x27B47\t0x9416\n0x27B48\t0x9417\n0x27B49\t0x93FB\n0x27B4A\t0x9432\n0x27B4B\t0x9434\n0x27B4C\t0x943B\n0x27B4D\t0x9445\n0x27B4E\t0x28BC1\n0x27B4F\t0x28BEF\n0x27B50\t0x946D\n0x27B51\t0x946F\n0x27B52\t0x9578\n0x27B53\t0x9579\n0x27B54\t0x9586\n0x27B55\t0x958C\n0x27B56\t0x958D\n0x27B57\t0x28D10\n0x27B58\t0x95AB\n0x27B59\t0x95B4\n0x27B5A\t0x28D71\n0x27B5B\t0x95C8\n0x27B5C\t0x28DFB\n0x27B5D\t0x28E1F\n0x27B5E\t0x962C\n0x27B5F\t0x9633\n0x27B60\t0x9634\n0x27B61\t0x28E36\n0x27B62\t0x963C\n0x27B63\t0x9641\n0x27B64\t0x9661\n0x27B65\t0x28E89\n0x27B66\t0x9682\n0x27B67\t0x28EEB\n0x27B68\t0x969A\n0x27B69\t0x28F32\n0x27B6A\t0x49E7\n0x27B6B\t0x96A9\n0x27B6C\t0x96AF\n0x27B6D\t0x96B3\n0x27B6E\t0x96BA\n0x27B6F\t0x96BD\n0x27B70\t0x49FA\n0x27B71\t0x28FF8\n0x27B72\t0x96D8\n0x27B73\t0x96DA\n0x27B74\t0x96DD\n0x27B75\t0x4A04\n0x27B76\t0x9714\n0x27B77\t0x9723\n0x27B78\t0x4A29\n0x27B79\t0x9736\n0x27B7A\t0x9741\n0x27B7B\t0x9747\n0x27B7C\t0x9755\n0x27B7D\t0x9757\n0x27B7E\t0x975B\n0x27C21\t0x976A\n0x27C22\t0x292A0\n0x27C23\t0x292B1\n0x27C24\t0x9796\n0x27C25\t0x979A\n0x27C26\t0x979E\n0x27C27\t0x97A2\n0x27C28\t0x97B1\n0x27C29\t0x97B2\n0x27C2A\t0x97BE\n0x27C2B\t0x97CC\n0x27C2C\t0x97D1\n0x27C2D\t0x97D4\n0x27C2E\t0x97D8\n0x27C2F\t0x97D9\n0x27C30\t0x97E1\n0x27C31\t0x97F1\n0x27C32\t0x9804\n0x27C33\t0x980D\n0x27C34\t0x980E\n0x27C35\t0x9814\n0x27C36\t0x9816\n0x27C37\t0x4ABC\n0x27C38\t0x29490\n0x27C39\t0x9823\n0x27C3A\t0x9832\n0x27C3B\t0x9833\n0x27C3C\t0x9825\n0x27C3D\t0x9847\n0x27C3E\t0x9866\n0x27C3F\t0x98AB\n0x27C40\t0x98AD\n0x27C41\t0x98B0\n0x27C42\t0x295CF\n0x27C43\t0x98B7\n0x27C44\t0x98B8\n0x27C45\t0x98BB\n0x27C46\t0x98BC\n0x27C47\t0x98BF\n0x27C48\t0x98C2\n0x27C49\t0x98C7\n0x27C4A\t0x98CB\n0x27C4B\t0x98E0\n0x27C4C\t0x2967F\n0x27C4D\t0x98E1\n0x27C4E\t0x98E3\n0x27C4F\t0x98E5\n0x27C50\t0x98EA\n0x27C51\t0x98F0\n0x27C52\t0x98F1\n0x27C53\t0x98F3\n0x27C54\t0x9908\n0x27C55\t0x4B3B\n0x27C56\t0x296F0\n0x27C57\t0x9916\n0x27C58\t0x9917\n0x27C59\t0x29719\n0x27C5A\t0x991A\n0x27C5B\t0x991B\n0x27C5C\t0x991C\n0x27C5D\t0x29750\n0x27C5E\t0x9931\n0x27C5F\t0x9932\n0x27C60\t0x9933\n0x27C61\t0x993A\n0x27C62\t0x993B\n0x27C63\t0x993C\n0x27C64\t0x9940\n0x27C65\t0x9941\n0x27C66\t0x9946\n0x27C67\t0x994D\n0x27C68\t0x994E\n0x27C69\t0x995C\n0x27C6A\t0x995F\n0x27C6B\t0x9960\n0x27C6C\t0x99A3\n0x27C6D\t0x99A6\n0x27C6E\t0x99B9\n0x27C6F\t0x99BD\n0x27C70\t0x99BF\n0x27C71\t0x99C3\n0x27C72\t0x99C9\n0x27C73\t0x99D4\n0x27C74\t0x99D9\n0x27C75\t0x99DE\n0x27C76\t0x298C6\n0x27C77\t0x99F0\n0x27C78\t0x99F9\n0x27C79\t0x99FC\n0x27C7A\t0x9A0A\n0x27C7B\t0x9A11\n0x27C7C\t0x9A16\n0x27C7D\t0x9A1A\n0x27C7E\t0x9A20\n0x27D21\t0x9A31\n0x27D22\t0x9A36\n0x27D23\t0x9A44\n0x27D24\t0x9A4C\n0x27D25\t0x9A58\n0x27D26\t0x4BC2\n0x27D27\t0x9AAF\n0x27D28\t0x4BCA\n0x27D29\t0x9AB7\n0x27D2A\t0x4BD2\n0x27D2B\t0x9AB9\n0x27D2C\t0x29A72\n0x27D2D\t0x9AC6\n0x27D2E\t0x9AD0\n0x27D2F\t0x9AD2\n0x27D30\t0x9AD5\n0x27D31\t0x4BE8\n0x27D32\t0x9ADC\n0x27D33\t0x9AE0\n0x27D34\t0x9AE5\n0x27D35\t0x9AE9\n0x27D36\t0x9B03\n0x27D37\t0x9B0C\n0x27D38\t0x9B10\n0x27D39\t0x9B12\n0x27D3A\t0x9B16\n0x27D3B\t0x9B1C\n0x27D3C\t0x9B2B\n0x27D3D\t0x9B33\n0x27D3E\t0x9B3D\n0x27D3F\t0x4C20\n0x27D40\t0x9B4B\n0x27D41\t0x9B63\n0x27D42\t0x9B65\n0x27D43\t0x9B6B\n0x27D44\t0x9B6C\n0x27D45\t0x9B73\n0x27D46\t0x9B76\n0x27D47\t0x9B77\n0x27D48\t0x9BA6\n0x27D49\t0x9BAC\n0x27D4A\t0x9BB1\n0x27D4B\t0x29DDB\n0x27D4C\t0x29E3D\n0x27D4D\t0x9BB2\n0x27D4E\t0x9BB8\n0x27D4F\t0x9BBE\n0x27D50\t0x9BC7\n0x27D51\t0x9BF3\n0x27D52\t0x9BD8\n0x27D53\t0x9BDD\n0x27D54\t0x9BE7\n0x27D55\t0x9BEA\n0x27D56\t0x9BEB\n0x27D57\t0x9BEF\n0x27D58\t0x9BEE\n0x27D59\t0x29E15\n0x27D5A\t0x9BFA\n0x27D5B\t0x29E8A\n0x27D5C\t0x9BF7\n0x27D5D\t0x29E49\n0x27D5E\t0x9C16\n0x27D5F\t0x9C18\n0x27D60\t0x9C19\n0x27D61\t0x9C1A\n0x27D62\t0x9C1D\n0x27D63\t0x9C22\n0x27D64\t0x9C27\n0x27D65\t0x9C29\n0x27D66\t0x9C2A\n0x27D67\t0x29EC4\n0x27D68\t0x9C31\n0x27D69\t0x9C36\n0x27D6A\t0x9C37\n0x27D6B\t0x9C45\n0x27D6C\t0x9C5C\n0x27D6D\t0x29EE9\n0x27D6E\t0x9C49\n0x27D6F\t0x9C4A\n0x27D70\t0x29EDB\n0x27D71\t0x9C54\n0x27D72\t0x9C58\n0x27D73\t0x9C5B\n0x27D74\t0x9C5D\n0x27D75\t0x9C5F\n0x27D76\t0x9C69\n0x27D77\t0x9C6A\n0x27D78\t0x9C6B\n0x27D79\t0x9C6D\n0x27D7A\t0x9C6E\n0x27D7B\t0x9C70\n0x27D7C\t0x9C72\n0x27D7D\t0x9C75\n0x27D7E\t0x9C7A\n0x27E21\t0x9CE6\n0x27E22\t0x9CF2\n0x27E23\t0x9D0B\n0x27E24\t0x9D02\n0x27E25\t0x29FCE\n0x27E26\t0x9D11\n0x27E27\t0x9D17\n0x27E28\t0x9D18\n0x27E29\t0x2A02F\n0x27E2A\t0x4CC4\n0x27E2B\t0x2A01A\n0x27E2C\t0x9D32\n0x27E2D\t0x4CD1\n0x27E2E\t0x9D42\n0x27E2F\t0x9D4A\n0x27E30\t0x9D5F\n0x27E31\t0x9D62\n0x27E32\t0x2A0F9\n0x27E33\t0x9D69\n0x27E34\t0x9D6B\n0x27E35\t0x2A082\n0x27E36\t0x9D73\n0x27E37\t0x9D76\n0x27E38\t0x9D77\n0x27E39\t0x9D7E\n0x27E3A\t0x9D84\n0x27E3B\t0x9D8D\n0x27E3C\t0x9D99\n0x27E3D\t0x9DA1\n0x27E3E\t0x9DBF\n0x27E3F\t0x9DB5\n0x27E40\t0x9DB9\n0x27E41\t0x9DBD\n0x27E42\t0x9DC3\n0x27E43\t0x9DC7\n0x27E44\t0x9DC9\n0x27E45\t0x9DD6\n0x27E46\t0x9DDA\n0x27E47\t0x9DDF\n0x27E48\t0x9DE0\n0x27E49\t0x9DE3\n0x27E4A\t0x9DF4\n0x27E4B\t0x4D07\n0x27E4C\t0x9E0A\n0x27E4D\t0x9E02\n0x27E4E\t0x9E0D\n0x27E4F\t0x9E19\n0x27E50\t0x9E1C\n0x27E51\t0x9E1D\n0x27E52\t0x9E7B\n0x27E53\t0x22218\n0x27E54\t0x9E80\n0x27E55\t0x9E85\n0x27E56\t0x9E9B\n0x27E57\t0x9EA8\n0x27E58\t0x2A38C\n0x27E59\t0x9EBD\n0x27E5A\t0x2A437\n0x27E5B\t0x9EDF\n0x27E5C\t0x9EE7\n0x27E5D\t0x9EEE\n0x27E5E\t0x9EFF\n0x27E5F\t0x9F02\n0x27E60\t0x4D77\n0x27E61\t0x9F03\n0x27E62\t0x9F17\n0x27E63\t0x9F19\n0x27E64\t0x9F2F\n0x27E65\t0x9F37\n0x27E66\t0x9F3A\n0x27E67\t0x9F3D\n0x27E68\t0x9F41\n0x27E69\t0x9F45\n0x27E6A\t0x9F46\n0x27E6B\t0x9F53\n0x27E6C\t0x9F55\n0x27E6D\t0x9F58\n0x27E6E\t0x2A5F1\n0x27E6F\t0x9F5D\n0x27E70\t0x2A602\n0x27E71\t0x9F69\n0x27E72\t0x2A61A\n0x27E73\t0x9F6D\n0x27E74\t0x9F70\n0x27E75\t0x9F75\n0x27E76\t0x2A6B2\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tools/Makefile",
    "content": "\n# Directory containing conversion tables.\n# You have to unpack the conversion-tables.tar.gz package.\nTABLESDIR = /home/bruno/chs/conversion-tables\n\nALL = \\\n ascii.h \\\n iso8859_1.h \\\n iso8859_2.h \\\n iso8859_3.h \\\n iso8859_4.h \\\n iso8859_5.h \\\n iso8859_6.h \\\n iso8859_7.h \\\n iso8859_8.h \\\n iso8859_9.h \\\n iso8859_10.h \\\n iso8859_11.h \\\n iso8859_13.h \\\n iso8859_14.h \\\n iso8859_15.h \\\n iso8859_16.h \\\n koi8_r.h \\\n koi8_u.h \\\n koi8_ru.h \\\n cp1250.h \\\n cp1251.h \\\n cp1252.h \\\n cp1253.h \\\n cp1254.h \\\n cp1255.h \\\n cp1256.h \\\n cp1257.h \\\n cp1258.h \\\n cp850.h \\\n cp862.h \\\n cp866.h \\\n cp1131.h \\\n mac_roman.h \\\n mac_centraleurope.h \\\n mac_iceland.h \\\n mac_croatian.h \\\n mac_romania.h \\\n mac_cyrillic.h \\\n mac_ukraine.h \\\n mac_greek.h \\\n mac_turkish.h \\\n mac_hebrew.h \\\n mac_arabic.h \\\n mac_thai.h \\\n hp_roman8.h \\\n nextstep.h \\\n armscii_8.h \\\n georgian_academy.h \\\n georgian_ps.h \\\n koi8_t.h \\\n pt154.h \\\n rk1048.h \\\n mulelao.h \\\n cp1133.h \\\n tis620.h \\\n cp874.h \\\n viscii.h \\\n tcvn.h \\\n jisx0201.h \\\n jisx0208.h \\\n jisx0212.h \\\n cp932ext.h \\\n cp50221_0208_ext.h \\\n cp50221_0212_ext.h \\\n gb2312.h \\\n isoir165ext.h \\\n gb12345ext.h \\\n gbkext1.h \\\n gbkext2.h \\\n gbkext_inv.h \\\n cp936ext.h \\\n gb18030ext.h \\\n gb18030uni.h \\\n cns11643_1.h \\\n cns11643_2.h \\\n cns11643_3.h \\\n cns11643_4a.h \\\n cns11643_4b.h \\\n cns11643_5.h \\\n cns11643_6.h \\\n cns11643_7.h \\\n cns11643_15.h \\\n cns11643_inv.h \\\n big5.h \\\n cp950ext.h \\\n hkscs1999.h \\\n hkscs2001.h \\\n hkscs2004.h \\\n hkscs2008.h \\\n ksc5601.h \\\n uhc_1.h \\\n uhc_2.h \\\n johab_hangul.h \\\n cp856.h \\\n cp922.h \\\n cp1046.h \\\n cp1124.h \\\n cp1129.h \\\n cp1161.h \\\n cp1162.h \\\n cp1163.h \\\n cp437.h \\\n cp737.h \\\n cp775.h \\\n cp852.h \\\n cp853.h \\\n cp855.h \\\n cp857.h \\\n cp858.h \\\n cp860.h \\\n cp861.h \\\n cp863.h \\\n cp864.h \\\n cp865.h \\\n cp869.h \\\n cp1125.h \\\n jisx0213.h \\\n tds565.h \\\n atarist.h \\\n riscos1.h \\\n cjk_variants.h\n\nall : $(ALL)\n\nascii.h : $(TABLESDIR)/glibc-2.1-iconv/ASCII.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ASCII ascii < $<\n\niso8859_1.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-1.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-1 iso8859_1 < $<\n\niso8859_2.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-2.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-2 iso8859_2 < $<\n\niso8859_3.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-3.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-3 iso8859_3 < $<\n\niso8859_4.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-4.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-4 iso8859_4 < $<\n\niso8859_5.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-5.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-5 iso8859_5 < $<\n\niso8859_6.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-6.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-6 iso8859_6 < $<\n\niso8859_7.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-7-2003.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-7 iso8859_7 < $<\n\niso8859_8.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-8.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-8 iso8859_8 < $<\n\niso8859_9.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-9.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-9 iso8859_9 < $<\n\niso8859_10.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-10.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-10 iso8859_10 < $<\n\niso8859_11.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-11.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-11 iso8859_11 < $<\n\niso8859_13.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-13.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-13 iso8859_13 < $<\n\niso8859_14.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-14.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-14 iso8859_14 < $<\n\niso8859_15.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-15.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-15 iso8859_15 < $<\n\niso8859_16.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-16.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h ISO-8859-16 iso8859_16 < $<\n\nkoi8_r.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MISC/KOI8-R.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h KOI8-R koi8_r < $<\n\nkoi8_u.h : $(TABLESDIR)/csets-new/KOI8-U.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h KOI8-U koi8_u < $<\n\nkoi8_ru.h : $(TABLESDIR)/freebsd-iconv-0.4/KOI8-RU.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h KOI8-RU koi8_ru < $<\n\ncp1250.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP1250.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP1250 cp1250 < $<\n\ncp1251.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP1251.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP1251 cp1251 < $<\n\ncp1252.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP1252.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP1252 cp1252 < $<\n\ncp1253.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP1253.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP1253 cp1253 < $<\n\ncp1254.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP1254.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP1254 cp1254 < $<\n\ncp1255.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP1255.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP1255 cp1255 < $<\n\ncp1256.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP1256.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP1256 cp1256 < $<\n\ncp1257.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP1257.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP1257 cp1257 < $<\n\ncp1258.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP1258.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP1258 cp1258 < $<\n\ncp850.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP850.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP850 cp850 < $<\n\ncp862.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP862.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP862 cp862 < $<\n\ncp866.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP866.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP866 cp866 < $<\n\ncp1131.h : $(TABLESDIR)/other/CP1131.TXT 8bit_tab_to_h\n\t(echo '#' ; cat $<) | ./8bit_tab_to_h CP1131 cp1131\n\nmac_roman.h : $(TABLESDIR)/jdk-1.1.7b/MAC-ROMAN.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacRoman mac_roman < $<\n\nmac_centraleurope.h : $(TABLESDIR)/jdk-1.1.7b/MAC-CENTRAL-EUROPE.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacCentralEurope mac_centraleurope < $<\n\nmac_iceland.h : $(TABLESDIR)/jdk-1.1.7b/MAC-ICELAND.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacIceland mac_iceland < $<\n\nmac_croatian.h : $(TABLESDIR)/jdk-1.1.7b/MAC-CROATIAN.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacCroatian mac_croatian < $<\n\nmac_romania.h : $(TABLESDIR)/jdk-1.1.7b/MAC-ROMANIA.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacRomania mac_romania < $<\n\nmac_cyrillic.h : $(TABLESDIR)/jdk-1.1.7b/MAC-CYRILLIC.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacCyrillic mac_cyrillic < $<\n\nmac_ukraine.h : $(TABLESDIR)/jdk-1.1.7b/MAC-UKRAINE.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacUkraine mac_ukraine < $<\n\nmac_greek.h : $(TABLESDIR)/jdk-1.1.7b/MAC-GREEK.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacGreek mac_greek < $<\n\nmac_turkish.h : $(TABLESDIR)/jdk-1.1.7b/MAC-TURKISH.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacTurkish mac_turkish < $<\n\nmac_hebrew.h : $(TABLESDIR)/jdk-1.1.7b/MAC-HEBREW.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacHebrew mac_hebrew < $<\n\nmac_arabic.h : $(TABLESDIR)/jdk-1.1.7b/MAC-ARABIC.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacArabic mac_arabic < $<\n\nmac_thai.h : $(TABLESDIR)/jdk-1.1.7b/MAC-THAI.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MacThai mac_thai < $<\n\nhp_roman8.h : $(TABLESDIR)/glibc-2.1-iconv/HP-ROMAN8.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h HP-ROMAN8 hp_roman8 < $<\n\nnextstep.h : $(TABLESDIR)/clisp/NEXTSTEP.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h NEXTSTEP nextstep < $<\n\narmscii_8.h : $(TABLESDIR)/glibc-2.2.90-iconv/ARMSCII-8.TXT 8bit_tab_to_h\n\t(echo '#' ; cat $<) | ./8bit_tab_to_h ARMSCII-8 armscii_8\n\ngeorgian_academy.h : $(TABLESDIR)/csets-1.6/GEO-ITA.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h GEORGIAN-ACADEMY georgian_academy < $<\n\ngeorgian_ps.h : $(TABLESDIR)/csets-1.6/GEO-PS.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h GEORGIAN-PS georgian_ps < $<\n\nkoi8_t.h : $(TABLESDIR)/glibc-2.2.90-iconv/KOI8-T.TXT\n\t(echo '#' ; cat $<) | ./8bit_tab_to_h KOI8-T koi8_t\n\npt154.h : $(TABLESDIR)/IANA/PTCP154.TXT\n\t./8bit_tab_to_h PT154 pt154 < $<\n\nrk1048.h : $(TABLESDIR)/IANA/KZ-1048.TXT\n\t(echo '#' ; cat $<) | ./8bit_tab_to_h RK1048 rk1048\n\nmulelao.h : $(TABLESDIR)/csets-new/MULELAO1.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h MULELAO-1 mulelao < $<\n\ncp1133.h : $(TABLESDIR)/csets-new/CP1133.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h IBM-CP1133 cp1133 < $<\n\ntis620.h : $(TABLESDIR)/glibc-2.1-iconv/TIS-620.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h TIS620.2533-1 tis620 < $<\n\ncp874.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP874.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP874 cp874 < $<\n\nviscii.h : $(TABLESDIR)/csets-1.6/VISCII.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h VISCII1.1-1 viscii < $<\n\ntcvn.h : $(TABLESDIR)/csets-1.6/VN5712-1.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h TCVN-5712 tcvn < $<\n\njisx0201.h : $(TABLESDIR)/clisp/JIS_X0201.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h JISX0201.1976-0 jisx0201 < $<\n\n# We use modified JISX0208 and JISX0212 tables. Why?\n# Hironori Sakamoto and Tomohiro Kubota explain that\n# - EUC-JP and SHIFT_JIS contain JISX0208 exactly,\n# - Their round-trip conversion to Unicode and back must be the identity,\n# - Conversions between EUC-JP, SHIFT_JIS, CP932, ISO-2022-JP must behave\n#   as if no Unicode conversion was involved,\n# - When JISX0208 is used as a CES (i.e. combined with ASCII) its mapping of\n#   REVERSE SOLIDUS becomes a FULLWIDTH REVERSE SOLIDUS, apparently because\n#   round-trip conversion stability is more important than a particular glyph.\n#   Only with CCS the character is a REVERSE SOLIDUS.\n# As a consequence, we use FULLWIDTH REVERSE SOLIDUS in EUC-JP's JISX0208 part,\n# and for consistency also in SHIFT_JIS and ISO-2022-JP, i.e. everywhere.\n# JISX0208 never occurs as a CCS in practice. Similarly with JISX0212.\n\n# Unicode.org maps 0x2140 to U+005C. We map it to U+FF3C.\njisx0208.h : $(TABLESDIR)/unicode.org-mappings/EASTASIA/JIS/JIS0208.TXT cjk_tab_to_h\n\tsed -e 's,^0x....[ \t]*\\(0x....[ \t]*0x.....*\\)$$,\\1,' < $< | sed -e 's,\\([ \t]\\)0x005C,\\10xFF3C,' | ./cjk_tab_to_h JISX0208.1990-0 jisx0208 > $@\n\n# Unicode.org maps 0x2237 to U+007E. We map it to U+FF5E.\njisx0212.h : $(TABLESDIR)/unicode.org-mappings/EASTASIA/JIS/JIS0212.TXT cjk_tab_to_h\n\tsed -e 's,\\([ \t]\\)0x007E,\\10xFF5E,' < $< | ./cjk_tab_to_h JISX0212.1990-0 jisx0212 > $@\n\ncp932ext.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP932.TXT cjk_tab_to_h\n\t(echo '#' ; grep '^0x\\(87\\|E[D-F]\\|F[0-9A-F]\\)[0-9A-F][0-9A-F]' < $< ) | ./cjk_tab_to_h 'CP932 extensions' cp932ext > $@\n\ncp50221_0208_ext.h : CP50221-0208-EXT.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h 'CP50221 JISX0208 extensions' cp50221_0208_ext < $<\n\ncp50221_0212_ext.h : CP50221-0212-EXT.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h 'CP50221 JISX0212 extensions' cp50221_0212_ext < $<\n\ngb2312.h : $(TABLESDIR)/unicode.org-mappings/EASTASIA/GB/GB2312.TXT cjk_tab_to_h\n\t./cjk_tab_to_h GB2312.1980-0 gb2312 < $< > $@\n\nisoir165ext.h : $(TABLESDIR)/csets-new/ISO-IR-165-additions.TXT cjk_tab_to_h\n\t(echo '#' ; grep -v '^0x2[8A]' < $<) | ./cjk_tab_to_h 'ISO-IR-165 extensions' isoir165ext > $@\n\ngb12345ext.h : $(TABLESDIR)/unicode.org-mappings/EASTASIA/GB/GB2312.TXT $(TABLESDIR)/unicode.org-mappings/EASTASIA/GB/GB12345-FIXED.TXT $(TABLESDIR)/csets-new/GB12345-more.TXT cjk_tab_to_h\n\t(echo '#' ; sed -e '/^0x..[ \t]*#UNDEFINED/d' -e 's/#.*$$//' -e '/^[ \t]*$$/d' $(TABLESDIR)/unicode.org-mappings/EASTASIA/GB/GB2312.TXT > tmp1.TXT ; sed -e '/^0x..[ \t]*#UNDEFINED/d' -e 's/#.*$$//' -e '/^[ \t]*$$/d' $(TABLESDIR)/unicode.org-mappings/EASTASIA/GB/GB12345-FIXED.TXT > tmp2.TXT ; diff tmp1.TXT tmp2.TXT | grep '^> ' | sed -e 's,^> ,,' ; cat $(TABLESDIR)/csets-new/GB12345-more.TXT ) | ./cjk_tab_to_h 'GB/T 12345.1990-0 extensions' gb12345ext > $@ && rm -f tmp1.TXT tmp2.TXT\n\ngbkext1.h : GBKext.TXT cjk_tab_to_h\n\t(echo '#' ; grep '^0x\\([89].\\|A0\\)' < GBKext.TXT) | ./cjk_tab_to_h 'GBK/3 extensions' gbkext1 > $@\n\ngbkext2.h : GBKext.TXT cjk_tab_to_h\n\t(echo '#' ; grep '^0x\\(A[1-9A-F]\\|[B-F][0-9A-F]\\)\\([4-9].\\|A0\\)' < GBKext.TXT) | ./cjk_tab_to_h 'GBK/4 and GBK/5 extensions' gbkext2 > $@\n\ngbkext_inv.h : GBKext.TXT cjk_tab_to_h\n\t(echo '#' ; grep '^0x\\([89].\\|A0\\)' < GBKext.TXT ; grep '^0x\\(A[1-9A-F]\\|[B-F][0-9A-F]\\)\\([4-9].\\|A0\\)' < GBKext.TXT) | ./cjk_tab_to_h 'GBK extensions' gbkext_inv > $@\n\ncp936ext.h : GBKext.TXT cjk_tab_to_h\n\t(echo '#' ; grep '^0xA[1-9][B-F].' < GBKext.TXT) | ./cjk_tab_to_h 'CP936 extensions' cp936ext > $@\n\nGBKext.TXT : $(TABLESDIR)/unicode.org-mappings/EASTASIA/GB/GB2312.TXT $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP936.TXT\n\tsed -e 's,^0x2,0xA,' -e 's,^0x3,0xB,' -e 's,^0x4,0xC,' -e 's,^0x5,0xD,' -e 's,^0x6,0xE,' -e 's,^0x7,0xF,' -e 's,^0x\\(..\\)2,0x\\1A,' -e 's,^0x\\(..\\)3,0x\\1B,' -e 's,^0x\\(..\\)4,0x\\1C,' -e 's,^0x\\(..\\)5,0x\\1D,' -e 's,^0x\\(..\\)6,0x\\1E,' -e 's,^0x\\(..\\)7,0x\\1F,' $(TABLESDIR)/unicode.org-mappings/EASTASIA/GB/GB2312.TXT > tmpEUCCN.TXT ; sed -e '/^0x..[ \t]*#UNDEFINED/d' -e 's/#.*$$//' -e '/^[ \t]*$$/d' tmpEUCCN.TXT > tmp1.TXT ; sed -e '/^0x..[ \t]/d' -e 's/#.*$$//' -e '/^[ \t]*$$/d' $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP936.TXT > tmp2.TXT ; diff -c1 tmp1.TXT tmp2.TXT | grep '^+ ' | sed -e 's,^+ ,,' > $@ && rm -f tmpEUCCN.TXT tmp1.TXT tmp2.TXT\n\ngb18030ext.h : GB18030ext.TXT cjk_tab_to_h\n\t(echo '#' ; cat GB18030ext.TXT) | ./cjk_tab_to_h 'GB18030 two-byte extension' gb18030ext > $@\n\nGB18030ext.TXT : $(TABLESDIR)/glibc-2.2.2-iconv/GB18030.TXT $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP936.TXT\n\tcat $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP936.TXT | sed -e 's/[ \t]*#.*$$//' | grep '^0x[0-9A-F]*\t0x....$$' > tmpGBK.TXT ; diff tmpGBK.TXT $(TABLESDIR)/glibc-2.2.2-iconv/GB18030.TXT | grep '^> 0x....\t0x....$$' | sed -e 's/^> //' > $@ && rm -f tmpGBK.TXT\n\ngb18030uni.h : GB18030uni.TXT cjk_tab_to_h\n\t./cjk_tab_to_h 'GB18030 four-byte extension' gb18030uni < GB18030uni.TXT > $@\n\nGB18030uni.TXT : $(TABLESDIR)/gb18030/filled-GB18030.TXT\n\tgrep '^0x........\t0x....$$' < $(TABLESDIR)/gb18030/filled-GB18030.TXT > $@\n\ncns11643_1.h : $(TABLESDIR)/csets-new/CNS11643-Unicode32.TXT cjk_tab_to_h\n\tgrep '^\\(#\\|0x1\\)' < $< | sed -e 's,^0x1,0x,' | ./cjk_tab_to_h 'CNS 11643-1992 plane 1' cns11643_1 > $@\n\ncns11643_2.h : $(TABLESDIR)/csets-new/CNS11643-Unicode32.TXT cjk_tab_to_h\n\tgrep '^\\(#\\|0x2\\)' < $< | sed -e 's,^0x2,0x,' | ./cjk_tab_to_h 'CNS 11643-1992 plane 2' cns11643_2 > $@\n\ncns11643_3.h : $(TABLESDIR)/csets-new/CNS11643-Unicode32.TXT cjk_tab_to_h\n\tgrep '^\\(#\\|0x3\\)' < $< | sed -e 's,^0x3,0x,' | ./cjk_tab_to_h 'CNS 11643-1992 plane 3' cns11643_3 > $@\n\ncns11643_4a.h : $(TABLESDIR)/csets-new/CNS11643-Unicode32.TXT cjk_tab_to_h\n\tgrep '^\\(#\\|0x4[0-3]\\)' < $< | sed -e 's,^0x4,0x,' | ./cjk_tab_to_h 'CNS 11643-1992 plane 4 part a' cns11643_4a > $@\n\ncns11643_4b.h : $(TABLESDIR)/csets-new/CNS11643-Unicode32.TXT cjk_tab_to_h\n\tgrep '^\\(#\\|0x4[4-7]\\)' < $< | sed -e 's,^0x4,0x,' | ./cjk_tab_to_h 'CNS 11643-1992 plane 4 part b' cns11643_4b > $@\n\ncns11643_5.h : $(TABLESDIR)/csets-new/CNS11643-Unicode32.TXT cjk_tab_to_h\n\tgrep '^\\(#\\|0x5\\)' < $< | sed -e 's,^0x5,0x,' | ./cjk_tab_to_h 'CNS 11643-1992 plane 5' cns11643_5 > $@\n\ncns11643_6.h : $(TABLESDIR)/csets-new/CNS11643-Unicode32.TXT cjk_tab_to_h\n\tgrep '^\\(#\\|0x6\\)' < $< | sed -e 's,^0x6,0x,' | ./cjk_tab_to_h 'CNS 11643-1992 plane 6' cns11643_6 > $@\n\ncns11643_7.h : $(TABLESDIR)/csets-new/CNS11643-Unicode32.TXT cjk_tab_to_h\n\tgrep '^\\(#\\|0x7\\)' < $< | sed -e 's,^0x7,0x,' | ./cjk_tab_to_h 'CNS 11643-1992 plane 7' cns11643_7 > $@\n\ncns11643_15.h : $(TABLESDIR)/csets-new/CNS11643-Unicode32.TXT cjk_tab_to_h\n\tgrep '^\\(#\\|0xF\\)' < $< | sed -e 's,^0xF,0x,' | ./cjk_tab_to_h 'CNS 11643-1992 plane 15' cns11643_15 > $@\n\ncns11643_inv.h : $(TABLESDIR)/csets-new/CNS11643-Unicode32.TXT cjk_tab_to_h\n\t./cjk_tab_to_h 'CNS 11643-1992 planes 1-7, CNS 11643-1986 plane 15' cns11643_inv < $< > $@\n\nbig5.h : $(TABLESDIR)/unicode.org-mappings/EASTASIA/OTHER/BIG5.TXT cjk_tab_to_h\n\t./cjk_tab_to_h BIG5 big5 < $< > $@\n\ncp950ext.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/WINDOWS/CP950.TXT cjk_tab_to_h\n\t(echo '#' ; grep '^0xF9\\(D[6-9A-F]\\|[EF][0-9A-F]\\)' < $< ) | ./cjk_tab_to_h 'CP950 extensions' cp950ext > $@\n\nhkscs1999.h : $(TABLESDIR)/big5hkscs/HKSCS-1999_2006.TXT cjk_tab_to_h\n\t(echo '#' ; grep -v , $<) | ./cjk_tab_to_h HKSCS:1999 hkscs1999 > $@\n\nhkscs2001.h : $(TABLESDIR)/big5hkscs/HKSCS-2001_2006-DELTA.TXT cjk_tab_to_h\n\t(echo '#' ; grep -v , $<) | ./cjk_tab_to_h HKSCS:2001 hkscs2001 > $@\n\nhkscs2004.h : $(TABLESDIR)/big5hkscs/HKSCS-2004_2006-DELTA.TXT cjk_tab_to_h\n\t(echo '#' ; grep -v , $<) | ./cjk_tab_to_h HKSCS:2004 hkscs2004 > $@\n\nhkscs2008.h : $(TABLESDIR)/big5hkscs/HKSCS-2008_2010-DELTA.TXT cjk_tab_to_h\n\t(echo '#' ; grep -v , $<) | ./cjk_tab_to_h HKSCS:2008 hkscs2008 > $@\n\n# We use a modified KSC 5601 = KSX 1001 table. Jungshik Shin <jshin@mailaps.org>\n# reports that Prof. GIM Geongseog (KIM Keyongseok) <gimgs@asadal.cs.pusan.ac.kr>\n# (who represents South Korea in ISO/IEC JTC1 SC2/WG2 and SC22/WG20) says that\n# these two characters were added to KSX 1001 in December 1998. According to\n# http://std.dkuug.dk/jtc1/sc2/wg2/docs/N2815.doc, one more character\n# (Korean postal code sign) was added in 2002.\nksc5601.h : $(TABLESDIR)/unicode.org-mappings/EASTASIA/KSC/KSC5601.TXT cjk_tab_to_h\n\t(cat $< ; echo '0xA2E6\t0x20AC'; echo '0xA2E7\t0x00AE'; echo '0xA2E8\t0x327E') | ./cjk_tab_to_h 'KSC5601.1987-0, now KS X 1001:2002' ksc5601 > $@\n\nuhc_1.h : $(TABLESDIR)/unicode.org-mappings/EASTASIA/KSC/KSC5601.TXT cjk_tab_to_h\n\t(echo '#' ; grep '^0x\\([8-9]\\|A0\\)' < $< ) | ./cjk_tab_to_h 'Unified Hangul Code part 1' uhc_1 > $@\n\nuhc_2.h : $(TABLESDIR)/unicode.org-mappings/EASTASIA/KSC/KSC5601.TXT cjk_tab_to_h\n\t(echo '#' ; grep '^0x\\(A[1-9A-F]\\|[B-F][0-9A-F]\\)\\([0-9]\\|A0\\)' < $< ) | ./cjk_tab_to_h 'Unified Hangul Code part 2' uhc_2 > $@\n\njohab_hangul.h : $(TABLESDIR)/unicode.org-mappings/EASTASIA/KSC/JOHAB.TXT cjk_tab_to_h\n\t(echo '#' ; grep '^0x\\([8-C]...\\|D[0-7]..\\)' < $< ) | ./cjk_tab_to_h 'JOHAB Hangul' johab_hangul > $@\n\n\ncp856.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MISC/CP856.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP856 cp856 < $<\n\ncp922.h : $(TABLESDIR)/aix-4.3.2/IBM-922.TXT 8bit_tab_to_h\n\t(echo '#' ; cat $<) | ./8bit_tab_to_h CP922 cp922\n\ncp1046.h : $(TABLESDIR)/aix-4.3.2/IBM-1046.TXT 8bit_tab_to_h\n\t(echo '#' ; cat $<) | ./8bit_tab_to_h CP1046 cp1046\n\ncp1124.h : $(TABLESDIR)/aix-4.3.2/IBM-1124.TXT 8bit_tab_to_h\n\t(echo '#' ; cat $<) | ./8bit_tab_to_h CP1124 cp1124\n\ncp1129.h : $(TABLESDIR)/aix-4.3.2/IBM-1129.TXT 8bit_tab_to_h\n\t(echo '#' ; cat $<) | ./8bit_tab_to_h CP1129 cp1129\n\ncp1161.h : $(TABLESDIR)/glibc-2.2.90-iconv/IBM1161.TXT\n\t(echo '#' ; cat $(TABLESDIR)/glibc-2.2-iconv/ASCII.TXT ; grep -v '^0x[0-7]' $<) | ./8bit_tab_to_h CP1161 cp1161\n\ncp1162.h : $(TABLESDIR)/glibc-2.2.90-iconv/IBM1162.TXT\n\t(echo '#' ; cat $<) | ./8bit_tab_to_h CP1162 cp1162\n\ncp1163.h : $(TABLESDIR)/glibc-2.2.90-iconv/IBM1163.TXT\n\t(echo '#' ; cat $<) | ./8bit_tab_to_h CP1163 cp1163\n\n\ncp437.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP437.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP437 cp437 < $<\n\ncp737.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP737.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP737 cp737 < $<\n\ncp775.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP775.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP775 cp775 < $<\n\ncp852.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP852.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP852 cp852 < $<\n\ncp853.h : $(TABLESDIR)/other/CP853.TXT 8bit_tab_to_h\n\t(echo '#'; cat $<) | ./8bit_tab_to_h CP853 cp853\n\ncp855.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP855.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP855 cp855 < $<\n\ncp857.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP857.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP857 cp857 < $<\n\ncp858.h : $(TABLESDIR)/windows-2000/CP858.TXT 8bit_tab_to_h\n\t(echo '#' ; cat $<) | ./8bit_tab_to_h CP858 cp858\n\ncp860.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP860.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP860 cp860 < $<\n\ncp861.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP861.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP861 cp861 < $<\n\ncp863.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP863.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP863 cp863 < $<\n\ncp864.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP864.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP864 cp864 < $<\n\ncp865.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP865.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP865 cp865 < $<\n\ncp869.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MICSFT/PC/CP869.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP869 cp869 < $<\n\ncp1125.h : $(TABLESDIR)/csets-new/CP1125.TXT 8bit_tab_to_h\n\t./8bit_tab_to_h CP1125 cp1125 < $<\n\n\njisx0213.h : JISX0213.TXT cjk_tab_to_h\n\t./cjk_tab_to_h JISX0213:2004 jisx0213 < $< > $@\n\ntds565.h : $(TABLESDIR)/recode-cvs/TDS565.TXT 8bit_tab_to_h\n\t(echo '#'; cat $<) | ./8bit_tab_to_h TDS565 tds565 > $@\n\natarist.h : $(TABLESDIR)/unicode.org-mappings/VENDORS/MISC/ATARIST.TXT\n\t./8bit_tab_to_h 'Atari ST' atarist < $< > $@\n\nriscos1.h : $(TABLESDIR)/recode-cvs/RISCOS-LATIN1.TXT 8bit_tab_to_h\n\t(echo '#'; cat $<) | ./8bit_tab_to_h RISCOS-LATIN1 riscos1 > $@\n\n\ncjk_variants.h : $(TABLESDIR)/yasuoka/UniVariants cjk_variants\n\t./cjk_variants < $< > $@\n\n\n8bit_tab_to_h : 8bit_tab_to_h.c\n\tgcc -O -Wall -g $< -o $@\n\ncjk_tab_to_h : cjk_tab_to_h.c\n\tgcc -O -Wall -g $< -o $@\n\ncjk_variants : cjk_variants.c\n\tgcc -O -Wall -g $< -o $@\n\n\nclean : force\n\trm -f 8bit_tab_to_h cjk_tab_to_h cjk_variants $(ALL) GBKext.TXT\n\nforce :\n\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tools/cjk_tab_to_h.c",
    "content": "/* Copyright (C) 1999-2004, 2006-2007, 2010, 2012, 2016 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Tools.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/*\n * Generates a CJK character set table from a .TXT table as found on\n * ftp.unicode.org or in the X nls directory.\n * Examples:\n *\n *   ./cjk_tab_to_h GB2312.1980-0 gb2312 > gb2312.h < gb2312\n *   ./cjk_tab_to_h JISX0208.1983-0 jisx0208 > jisx0208.h < jis0208\n *   ./cjk_tab_to_h KSC5601.1987-0 ksc5601 > ksc5601.h < ksc5601\n *\n *   ./cjk_tab_to_h GB2312.1980-0 gb2312 > gb2312.h < GB2312.TXT\n *   ./cjk_tab_to_h JISX0208.1983-0 jisx0208 > jisx0208.h < JIS0208.TXT\n *   ./cjk_tab_to_h JISX0212.1990-0 jisx0212 > jisx0212.h < JIS0212.TXT\n *   ./cjk_tab_to_h KSC5601.1987-0 ksc5601 > ksc5601.h < KSC5601.TXT\n *   ./cjk_tab_to_h KSX1001.1992-0 ksc5601 > ksc5601.h < KSX1001.TXT\n *\n *   ./cjk_tab_to_h BIG5 big5 > big5.h < BIG5.TXT\n *\n *   ./cjk_tab_to_h JOHAB johab > johab.h < JOHAB.TXT\n *\n *   ./cjk_tab_to_h JISX0213:2004 jisx0213 > jisx0213.h < JISX0213.TXT\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <stdbool.h>\n#include <string.h>\n#include <ctype.h>\n#include <assert.h>\n\ntypedef struct {\n  int start;\n  int end;\n} Block;\n\ntypedef struct {\n  int rows;    /* number of possible values for the 1st byte */\n  int cols;    /* number of possible values for the 2nd byte */\n  int (*row_byte) (int row); /* returns the 1st byte value for a given row */\n  int (*col_byte) (int col); /* returns the 2nd byte value for a given col */\n  int (*byte_row) (int byte); /* converts a 1st byte value to a row, else -1 */\n  int (*byte_col) (int byte); /* converts a 2nd byte value to a col, else -1 */\n  const char* check_row_expr; /* format string for 1st byte value checking */\n  const char* check_col_expr; /* format string for 2nd byte value checking */\n  const char* byte_row_expr; /* format string for 1st byte value to row */\n  const char* byte_col_expr; /* format string for 2nd byte value to col */\n  int** charset2uni; /* charset2uni[0..rows-1][0..cols-1] is valid */\n  /* You'll understand the terms \"row\" and \"col\" when you buy Ken Lunde's book.\n     Once a row is fixed, choosing a \"col\" is the same as choosing a \"cell\". */\n  int* charsetpage; /* charsetpage[0..rows]: how large is a page for a row */\n  int ncharsetblocks;\n  Block* charsetblocks; /* blocks[0..nblocks-1] */\n  int* uni2charset; /* uni2charset[0x0000..0xffff] */\n  int fffd;    /* uni representation of the invalid character */\n} Encoding;\n\n/*\n * Outputs the file title.\n */\nstatic void output_title (const char *charsetname)\n{\n  printf(\"/*\\n\");\n  printf(\" * Copyright (C) 1999-2016 Free Software Foundation, Inc.\\n\");\n  printf(\" * This file is part of the GNU LIBICONV Library.\\n\");\n  printf(\" *\\n\");\n  printf(\" * The GNU LIBICONV Library is free software; you can redistribute it\\n\");\n  printf(\" * and/or modify it under the terms of the GNU Library General Public\\n\");\n  printf(\" * License as published by the Free Software Foundation; either version 2\\n\");\n  printf(\" * of the License, or (at your option) any later version.\\n\");\n  printf(\" *\\n\");\n  printf(\" * The GNU LIBICONV Library is distributed in the hope that it will be\\n\");\n  printf(\" * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\\n\");\n  printf(\" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\\n\");\n  printf(\" * Library General Public License for more details.\\n\");\n  printf(\" *\\n\");\n  printf(\" * You should have received a copy of the GNU Library General Public\\n\");\n  printf(\" * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\\n\");\n  printf(\" * If not, see <http://www.gnu.org/licenses/>.\\n\");\n  printf(\" */\\n\");\n  printf(\"\\n\");\n  printf(\"/*\\n\");\n  printf(\" * %s\\n\", charsetname);\n  printf(\" */\\n\");\n  printf(\"\\n\");\n}\n\n/*\n * Reads the charset2uni table from standard input.\n */\nstatic void read_table (Encoding* enc)\n{\n  int row, col, i, i1, i2, c, j;\n\n  enc->charset2uni = (int**) malloc(enc->rows*sizeof(int*));\n  for (row = 0; row < enc->rows; row++)\n    enc->charset2uni[row] = (int*) malloc(enc->cols*sizeof(int));\n\n  for (row = 0; row < enc->rows; row++)\n    for (col = 0; col < enc->cols; col++)\n      enc->charset2uni[row][col] = 0xfffd;\n\n  c = getc(stdin);\n  ungetc(c,stdin);\n  if (c == '#') {\n    /* Read a unicode.org style .TXT file. */\n    for (;;) {\n      c = getc(stdin);\n      if (c == EOF)\n        break;\n      if (c == '\\n' || c == ' ' || c == '\\t')\n        continue;\n      if (c == '#') {\n        do { c = getc(stdin); } while (!(c == EOF || c == '\\n'));\n        continue;\n      }\n      ungetc(c,stdin);\n      if (scanf(\"0x%x\", &j) != 1)\n        exit(1);\n      i1 = j >> 8;\n      i2 = j & 0xff;\n      row = enc->byte_row(i1);\n      col = enc->byte_col(i2);\n      if (row < 0 || col < 0) {\n        fprintf(stderr, \"lost entry for %02x %02x\\n\", i1, i2);\n        exit(1);\n      }\n      if (scanf(\" 0x%x\", &enc->charset2uni[row][col]) != 1)\n        exit(1);\n    }\n  } else {\n    /* Read a table of hexadecimal Unicode values. */\n    for (i1 = 32; i1 < 132; i1++)\n      for (i2 = 32; i2 < 132; i2++) {\n        i = scanf(\"%x\", &j);\n        if (i == EOF)\n          goto read_done;\n        if (i != 1)\n          exit(1);\n        if (j < 0 || j == 0xffff)\n          j = 0xfffd;\n        if (j != 0xfffd) {\n          if (enc->byte_row(i1) < 0 || enc->byte_col(i2) < 0) {\n            fprintf(stderr, \"lost entry at %02x %02x\\n\", i1, i2);\n            exit (1);\n          }\n          enc->charset2uni[enc->byte_row(i1)][enc->byte_col(i2)] = j;\n        }\n      }\n   read_done: ;\n  }\n}\n\n/*\n * Determine whether the Unicode range goes outside the BMP.\n */\nstatic bool is_charset2uni_large (Encoding* enc)\n{\n  int row, col;\n\n  for (row = 0; row < enc->rows; row++)\n    for (col = 0; col < enc->cols; col++)\n      if (enc->charset2uni[row][col] >= 0x10000)\n        return true;\n  return false;\n}\n\n/*\n * Compactify the Unicode range by use of an auxiliary table,\n * so 16 bits suffice to store each value.\n */\nstatic int compact_large_charset2uni (Encoding* enc, unsigned int **urows, unsigned int *urowshift)\n{\n  unsigned int shift;\n\n  for (shift = 8; ; shift--) {\n    int *upages = (int *) malloc((0x110000>>shift) * sizeof(int));\n    int i, row, col, nurows;\n\n    for (i = 0; i < 0x110000>>shift; i++)\n      upages[i] = -1;\n\n    for (row = 0; row < enc->rows; row++)\n      for (col = 0; col < enc->cols; col++)\n        upages[enc->charset2uni[row][col] >> shift] = 0;\n\n    nurows = 0;\n    for (i = 0; i < 0x110000>>shift; i++)\n      if (upages[i] == 0)\n        nurows++;\n\n    /* We want all table entries to fit in an 'unsigned short'. */\n    if (nurows <= 1<<(16-shift)) {\n      int** old_charset2uni;\n\n      *urows = (unsigned int *) malloc(nurows * sizeof(unsigned int));\n      *urowshift = shift;\n\n      nurows = 0;\n      for (i = 0; i < 0x110000>>shift; i++)\n        if (upages[i] == 0) {\n          upages[i] = nurows;\n          (*urows)[nurows] = i;\n          nurows++;\n        }\n\n      old_charset2uni = enc->charset2uni;\n      enc->charset2uni = (int**) malloc(enc->rows*sizeof(int*));\n      for (row = 0; row < enc->rows; row++)\n        enc->charset2uni[row] = (int*) malloc(enc->cols*sizeof(int));\n      for (row = 0; row < enc->rows; row++)\n        for (col = 0; col < enc->cols; col++) {\n          int u = old_charset2uni[row][col];\n          enc->charset2uni[row][col] =\n            (upages[u >> shift] << shift) | (u & ((1 << shift) - 1));\n        }\n      enc->fffd =\n        (upages[0xfffd >> shift] << shift) | (0xfffd & ((1 << shift) - 1));\n\n      return nurows;\n    }\n  }\n  abort();\n}\n\n/*\n * Computes the charsetpage[0..rows] array.\n */\nstatic void find_charset2uni_pages (Encoding* enc)\n{\n  int row, col;\n\n  enc->charsetpage = (int*) malloc((enc->rows+1)*sizeof(int));\n\n  for (row = 0; row <= enc->rows; row++)\n    enc->charsetpage[row] = 0;\n\n  for (row = 0; row < enc->rows; row++) {\n    int used = 0;\n    for (col = 0; col < enc->cols; col++)\n      if (enc->charset2uni[row][col] != enc->fffd)\n        used = col+1;\n    enc->charsetpage[row] = used;\n  }\n}\n\n/*\n * Fills in nblocks and blocks.\n */\nstatic void find_charset2uni_blocks (Encoding* enc)\n{\n  int n, row, lastrow;\n\n  enc->charsetblocks = (Block*) malloc(enc->rows*sizeof(Block));\n\n  n = 0;\n  for (row = 0; row < enc->rows; row++)\n    if (enc->charsetpage[row] > 0 && (row == 0 || enc->charsetpage[row-1] == 0)) {\n      for (lastrow = row; enc->charsetpage[lastrow+1] > 0; lastrow++);\n      enc->charsetblocks[n].start = row * enc->cols;\n      enc->charsetblocks[n].end = lastrow * enc->cols + enc->charsetpage[lastrow];\n      n++;\n    }\n  enc->ncharsetblocks = n;\n}\n\n/*\n * Outputs the charset to unicode table and function.\n */\nstatic void output_charset2uni (const char* name, Encoding* enc)\n{\n  int nurows, row, col, lastrow, col_max, i, i1_min, i1_max;\n  bool is_large;\n  unsigned int* urows;\n  unsigned int urowshift;\n  Encoding tmpenc;\n\n  is_large = is_charset2uni_large(enc);\n  if (is_large) {\n    /* Use a temporary copy of enc. */\n    tmpenc = *enc;\n    enc = &tmpenc;\n    nurows = compact_large_charset2uni(enc,&urows,&urowshift);\n  } else {\n    nurows = 0; urows = NULL; urowshift = 0; enc->fffd = 0xfffd;\n  }\n\n  find_charset2uni_pages(enc);\n\n  find_charset2uni_blocks(enc);\n\n  for (row = 0; row < enc->rows; row++)\n    if (enc->charsetpage[row] > 0) {\n      if (row == 0 || enc->charsetpage[row-1] == 0) {\n        /* Start a new block. */\n        for (lastrow = row; enc->charsetpage[lastrow+1] > 0; lastrow++);\n        printf(\"static const unsigned short %s_2uni_page%02x[%d] = {\\n\",\n               name, enc->row_byte(row),\n               (lastrow-row) * enc->cols + enc->charsetpage[lastrow]);\n      }\n      printf(\"  /\"\"* 0x%02x *\"\"/\\n \", enc->row_byte(row));\n      col_max = (enc->charsetpage[row+1] > 0 ? enc->cols : enc->charsetpage[row]);\n      for (col = 0; col < col_max; col++) {\n        printf(\" 0x%04x,\", enc->charset2uni[row][col]);\n        if ((col % 8) == 7 && (col+1 < col_max)) printf(\"\\n \");\n      }\n      printf(\"\\n\");\n      if (enc->charsetpage[row+1] == 0) {\n        /* End a block. */\n        printf(\"};\\n\");\n      }\n    }\n  printf(\"\\n\");\n\n  if (is_large) {\n    printf(\"static const ucs4_t %s_2uni_upages[%d] = {\\n \", name, nurows);\n    for (i = 0; i < nurows; i++) {\n      printf(\" 0x%05x,\", urows[i] << urowshift);\n      if ((i % 8) == 7 && (i+1 < nurows)) printf(\"\\n \");\n    }\n    printf(\"\\n\");\n    printf(\"};\\n\");\n    printf(\"\\n\");\n  }\n\n  printf(\"static int\\n\");\n  printf(\"%s_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\\n\", name);\n  printf(\"{\\n\");\n  printf(\"  unsigned char c1 = s[0];\\n\");\n  printf(\"  if (\");\n  for (i = 0; i < enc->ncharsetblocks; i++) {\n    i1_min = enc->row_byte(enc->charsetblocks[i].start / enc->cols);\n    i1_max = enc->row_byte((enc->charsetblocks[i].end-1) / enc->cols);\n    if (i > 0)\n      printf(\" || \");\n    if (i1_min == i1_max)\n      printf(\"(c1 == 0x%02x)\", i1_min);\n    else\n      printf(\"(c1 >= 0x%02x && c1 <= 0x%02x)\", i1_min, i1_max);\n  }\n  printf(\") {\\n\");\n  printf(\"    if (n >= 2) {\\n\");\n  printf(\"      unsigned char c2 = s[1];\\n\");\n  printf(\"      if (\");\n  printf(enc->check_col_expr, \"c2\");\n  printf(\") {\\n\");\n  printf(\"        unsigned int i = %d * (\", enc->cols);\n  printf(enc->byte_row_expr, \"c1\");\n  printf(\") + (\");\n  printf(enc->byte_col_expr, \"c2\");\n  printf(\");\\n\");\n  printf(\"        %s wc = 0xfffd;\\n\", is_large ? \"ucs4_t\" : \"unsigned short\");\n  if (is_large) printf(\"        unsigned short swc;\\n\");\n  for (i = 0; i < enc->ncharsetblocks; i++) {\n    printf(\"        \");\n    if (i > 0)\n      printf(\"} else \");\n    if (i < enc->ncharsetblocks-1)\n      printf(\"if (i < %d) \", enc->charsetblocks[i+1].start);\n    printf(\"{\\n\");\n    printf(\"          if (i < %d)\\n\", enc->charsetblocks[i].end);\n    printf(\"            %s = \", is_large ? \"swc\" : \"wc\");\n    printf(\"%s_2uni_page%02x[i\", name, enc->row_byte(enc->charsetblocks[i].start / enc->cols));\n    if (enc->charsetblocks[i].start > 0)\n      printf(\"-%d\", enc->charsetblocks[i].start);\n    printf(\"]\");\n    if (is_large) printf(\",\\n            wc = %s_2uni_upages[swc>>%d] | (swc & 0x%x)\", name, urowshift, (1 << urowshift) - 1);\n    printf(\";\\n\");\n  }\n  printf(\"        }\\n\");\n  printf(\"        if (wc != 0xfffd) {\\n\");\n  printf(\"          *pwc = %swc;\\n\", is_large ? \"\" : \"(ucs4_t) \");\n  printf(\"          return 2;\\n\");\n  printf(\"        }\\n\");\n  printf(\"      }\\n\");\n  printf(\"      return RET_ILSEQ;\\n\");\n  printf(\"    }\\n\");\n  printf(\"    return RET_TOOFEW(0);\\n\");\n  printf(\"  }\\n\");\n  printf(\"  return RET_ILSEQ;\\n\");\n  printf(\"}\\n\");\n  printf(\"\\n\");\n}\n\n/*\n * Outputs the charset to unicode table and function.\n * (Suitable if the mapping function is well defined, i.e. has no holes, and\n * is monotonically increasing with small gaps only.)\n */\nstatic void output_charset2uni_noholes_monotonic (const char* name, Encoding* enc)\n{\n  int row, col, lastrow, r, col_max, i, i1_min, i1_max;\n\n  /* Choose stepsize so that stepsize*steps_per_row >= enc->cols, and\n     enc->charset2uni[row][col] - enc->charset2uni[row][col/stepsize*stepsize]\n     is always < 0x100. */\n  int steps_per_row = 2;\n  int stepsize = (enc->cols + steps_per_row-1) / steps_per_row;\n\n  find_charset2uni_pages(enc);\n\n  find_charset2uni_blocks(enc);\n\n  for (row = 0; row < enc->rows; row++)\n    if (enc->charsetpage[row] > 0) {\n      if (row == 0 || enc->charsetpage[row-1] == 0) {\n        /* Start a new block. */\n        for (lastrow = row; enc->charsetpage[lastrow+1] > 0; lastrow++);\n        printf(\"static const unsigned short %s_2uni_main_page%02x[%d] = {\\n \",\n               name, enc->row_byte(row),\n               steps_per_row*(lastrow-row+1));\n        for (r = row; r <= lastrow; r++) {\n          for (i = 0; i < steps_per_row; i++)\n            printf(\" 0x%04x,\", enc->charset2uni[r][i*stepsize]);\n          if (((r-row) % 4) == 3 && (r < lastrow)) printf(\"\\n \");\n        }\n        printf(\"\\n\");\n        printf(\"};\\n\");\n        printf(\"static const unsigned char %s_2uni_page%02x[%d] = {\\n\",\n               name, enc->row_byte(row),\n               (lastrow-row) * enc->cols + enc->charsetpage[lastrow]);\n      }\n      printf(\"  /\"\"* 0x%02x *\"\"/\\n \", enc->row_byte(row));\n      col_max = (enc->charsetpage[row+1] > 0 ? enc->cols : enc->charsetpage[row]);\n      for (col = 0; col < col_max; col++) {\n        printf(\" 0x%02x,\", enc->charset2uni[row][col] - enc->charset2uni[row][col/stepsize*stepsize]);\n        if ((col % 8) == 7 && (col+1 < col_max)) printf(\"\\n \");\n      }\n      printf(\"\\n\");\n      if (enc->charsetpage[row+1] == 0) {\n        /* End a block. */\n        printf(\"};\\n\");\n      }\n    }\n  printf(\"\\n\");\n\n  printf(\"static int\\n\");\n  printf(\"%s_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\\n\", name);\n  printf(\"{\\n\");\n  printf(\"  unsigned char c1 = s[0];\\n\");\n  printf(\"  if (\");\n  for (i = 0; i < enc->ncharsetblocks; i++) {\n    i1_min = enc->row_byte(enc->charsetblocks[i].start / enc->cols);\n    i1_max = enc->row_byte((enc->charsetblocks[i].end-1) / enc->cols);\n    if (i > 0)\n      printf(\" || \");\n    if (i1_min == i1_max)\n      printf(\"(c1 == 0x%02x)\", i1_min);\n    else\n      printf(\"(c1 >= 0x%02x && c1 <= 0x%02x)\", i1_min, i1_max);\n  }\n  printf(\") {\\n\");\n  printf(\"    if (n >= 2) {\\n\");\n  printf(\"      unsigned char c2 = s[1];\\n\");\n  printf(\"      if (\");\n  printf(enc->check_col_expr, \"c2\");\n  printf(\") {\\n\");\n  printf(\"        unsigned int row = \");\n  printf(enc->byte_row_expr, \"c1\");\n  printf(\";\\n\");\n  printf(\"        unsigned int col = \");\n  printf(enc->byte_col_expr, \"c2\");\n  printf(\";\\n\");\n  printf(\"        unsigned int i = %d * row + col;\\n\", enc->cols);\n  printf(\"        unsigned short wc = 0xfffd;\\n\");\n  for (i = 0; i < enc->ncharsetblocks; i++) {\n    printf(\"        \");\n    if (i > 0)\n      printf(\"} else \");\n    if (i < enc->ncharsetblocks-1)\n      printf(\"if (i < %d) \", enc->charsetblocks[i+1].start);\n    printf(\"{\\n\");\n    printf(\"          if (i < %d)\\n\", enc->charsetblocks[i].end);\n    printf(\"            wc = %s_2uni_main_page%02x[%d*\", name, enc->row_byte(enc->charsetblocks[i].start / enc->cols), steps_per_row);\n    if (enc->charsetblocks[i].start > 0)\n      printf(\"(row-%d)\", enc->charsetblocks[i].start / enc->cols);\n    else\n      printf(\"row\");\n    printf(\"+\");\n    if (steps_per_row == 2)\n      printf(\"(col>=%d?1:0)\", stepsize);\n    else\n      printf(\"col/%d\", stepsize);\n    printf(\"] + %s_2uni_page%02x[i\", name, enc->row_byte(enc->charsetblocks[i].start / enc->cols));\n    if (enc->charsetblocks[i].start > 0)\n      printf(\"-%d\", enc->charsetblocks[i].start);\n    printf(\"];\\n\");\n  }\n  printf(\"        }\\n\");\n  printf(\"        if (wc != 0xfffd) {\\n\");\n  printf(\"          *pwc = (ucs4_t) wc;\\n\");\n  printf(\"          return 2;\\n\");\n  printf(\"        }\\n\");\n  printf(\"      }\\n\");\n  printf(\"      return RET_ILSEQ;\\n\");\n  printf(\"    }\\n\");\n  printf(\"    return RET_TOOFEW(0);\\n\");\n  printf(\"  }\\n\");\n  printf(\"  return RET_ILSEQ;\\n\");\n  printf(\"}\\n\");\n  printf(\"\\n\");\n}\n\n/*\n * Computes the uni2charset[0x0000..0x2ffff] array.\n */\nstatic void invert (Encoding* enc)\n{\n  int row, col, j;\n\n  enc->uni2charset = (int*) malloc(0x30000*sizeof(int));\n\n  for (j = 0; j < 0x30000; j++)\n    enc->uni2charset[j] = 0;\n\n  for (row = 0; row < enc->rows; row++)\n    for (col = 0; col < enc->cols; col++) {\n      j = enc->charset2uni[row][col];\n      if (j != 0xfffd)\n        enc->uni2charset[j] = 0x100 * enc->row_byte(row) + enc->col_byte(col);\n    }\n}\n\n/*\n * Outputs the unicode to charset table and function, using a linear array.\n * (Suitable if the table is dense.)\n */\nstatic void output_uni2charset_dense (const char* name, Encoding* enc)\n{\n  /* Like in 8bit_tab_to_h.c */\n  bool pages[0x300];\n  int line[0x6000];\n  int tableno;\n  struct { int minline; int maxline; int usecount; } tables[0x6000];\n  bool first;\n  int row, col, j, p, j1, j2, t;\n\n  for (p = 0; p < 0x300; p++)\n    pages[p] = false;\n  for (row = 0; row < enc->rows; row++)\n    for (col = 0; col < enc->cols; col++) {\n      j = enc->charset2uni[row][col];\n      if (j != 0xfffd)\n        pages[j>>8] = true;\n    }\n  for (j1 = 0; j1 < 0x6000; j1++) {\n    bool all_invalid = true;\n    for (j2 = 0; j2 < 8; j2++) {\n      j = 8*j1+j2;\n      if (enc->uni2charset[j] != 0)\n        all_invalid = false;\n    }\n    if (all_invalid)\n      line[j1] = -1;\n    else\n      line[j1] = 0;\n  }\n  tableno = 0;\n  for (j1 = 0; j1 < 0x6000; j1++) {\n    if (line[j1] >= 0) {\n      if (tableno > 0\n          && ((j1 > 0 && line[j1-1] == tableno-1)\n              || ((tables[tableno-1].maxline >> 5) == (j1 >> 5)\n                  && j1 - tables[tableno-1].maxline <= 8))) {\n        line[j1] = tableno-1;\n        tables[tableno-1].maxline = j1;\n      } else {\n        tableno++;\n        line[j1] = tableno-1;\n        tables[tableno-1].minline = tables[tableno-1].maxline = j1;\n      }\n    }\n  }\n  for (t = 0; t < tableno; t++) {\n    tables[t].usecount = 0;\n    j1 = 8*tables[t].minline;\n    j2 = 8*(tables[t].maxline+1);\n    for (j = j1; j < j2; j++)\n      if (enc->uni2charset[j] != 0)\n        tables[t].usecount++;\n  }\n  {\n    p = -1;\n    for (t = 0; t < tableno; t++)\n      if (tables[t].usecount > 1) {\n        p = tables[t].minline >> 5;\n        printf(\"static const unsigned short %s_page%02x[%d] = {\\n\", name, p, 8*(tables[t].maxline-tables[t].minline+1));\n        for (j1 = tables[t].minline; j1 <= tables[t].maxline; j1++) {\n          if ((j1 % 0x20) == 0 && j1 > tables[t].minline)\n            printf(\"  /* 0x%04x */\\n\", 8*j1);\n          printf(\" \");\n          for (j2 = 0; j2 < 8; j2++) {\n            j = 8*j1+j2;\n            printf(\" 0x%04x,\", enc->uni2charset[j]);\n          }\n          printf(\" /*0x%02x-0x%02x*/\\n\", 8*(j1 % 0x20), 8*(j1 % 0x20)+7);\n        }\n        printf(\"};\\n\");\n      }\n    if (p >= 0)\n      printf(\"\\n\");\n  }\n  printf(\"static int\\n%s_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\\n\", name);\n  printf(\"{\\n\");\n  printf(\"  if (n >= 2) {\\n\");\n  printf(\"    unsigned short c = 0;\\n\");\n  first = true;\n  for (j1 = 0; j1 < 0x6000;) {\n    t = line[j1];\n    for (j2 = j1; j2 < 0x6000 && line[j2] == t; j2++);\n    if (t >= 0) {\n      if (j1 != tables[t].minline) abort();\n      if (j2 > tables[t].maxline+1) abort();\n      j2 = tables[t].maxline+1;\n      if (first)\n        printf(\"    \");\n      else\n        printf(\"    else \");\n      first = false;\n      if (tables[t].usecount == 0) abort();\n      if (tables[t].usecount == 1) {\n        if (j2 != j1+1) abort();\n        for (j = 8*j1; j < 8*j2; j++)\n          if (enc->uni2charset[j] != 0) {\n            printf(\"if (wc == 0x%04x)\\n      c = 0x%02x;\\n\", j, enc->uni2charset[j]);\n            break;\n          }\n      } else {\n        if (j1 == 0) {\n          printf(\"if (wc < 0x%04x)\", 8*j2);\n        } else {\n          printf(\"if (wc >= 0x%04x && wc < 0x%04x)\", 8*j1, 8*j2);\n        }\n        printf(\"\\n      c = %s_page%02x[wc\", name, j1 >> 5);\n        if (tables[t].minline > 0)\n          printf(\"-0x%04x\", 8*j1);\n        printf(\"];\\n\");\n      }\n    }\n    j1 = j2;\n  }\n  printf(\"    if (c != 0) {\\n\");\n  printf(\"      r[0] = (c >> 8); r[1] = (c & 0xff);\\n\");\n  printf(\"      return 2;\\n\");\n  printf(\"    }\\n\");\n  printf(\"    return RET_ILUNI;\\n\");\n  printf(\"  }\\n\");\n  printf(\"  return RET_TOOSMALL;\\n\");\n  printf(\"}\\n\");\n}\n\n/*\n * Outputs the unicode to charset table and function, using a packed array.\n * (Suitable if the table is sparse.)\n * The argument 'monotonic' may be set to true if the mapping is monotonically\n * increasing with small gaps only.\n */\nstatic void output_uni2charset_sparse (const char* name, Encoding* enc, bool monotonic)\n{\n  bool pages[0x300];\n  Block pageblocks[0x300]; int npageblocks;\n  int indx2charset[0x30000];\n  int summary_indx[0x3000];\n  int summary_used[0x3000];\n  int i, row, col, j, p, j1, j2, indx;\n  bool is_large;\n  /* for monotonic: */\n  int log2_stepsize = (!strcmp(name,\"uhc_2\") ? 6 : 7);\n  int stepsize = 1 << log2_stepsize;\n  int indxsteps;\n\n  /* Fill pages[0x300]. */\n  for (p = 0; p < 0x300; p++)\n    pages[p] = false;\n  for (row = 0; row < enc->rows; row++)\n    for (col = 0; col < enc->cols; col++) {\n      j = enc->charset2uni[row][col];\n      if (j != 0xfffd)\n        pages[j>>8] = true;\n    }\n\n  /* Determine whether two or three bytes are needed for each character. */\n  is_large = false;\n  for (j = 0; j < 0x30000; j++)\n    if (enc->uni2charset[j] >= 0x10000)\n      is_large = true;\n\n#if 0\n  for (p = 0; p < 0x300; p++)\n    if (pages[p]) {\n      printf(\"static const unsigned short %s_page%02x[256] = {\\n\", name, p);\n      for (j1 = 0; j1 < 32; j1++) {\n        printf(\"  \");\n        for (j2 = 0; j2 < 8; j2++)\n          printf(\"0x%04x, \", enc->uni2charset[256*p+8*j1+j2]);\n        printf(\"/\"\"*0x%02x-0x%02x*\"\"/\\n\", 8*j1, 8*j1+7);\n      }\n      printf(\"};\\n\");\n    }\n  printf(\"\\n\");\n#endif\n\n  /* Fill summary_indx[] and summary_used[]. */\n  indx = 0;\n  for (j1 = 0; j1 < 0x3000; j1++) {\n    summary_indx[j1] = indx;\n    summary_used[j1] = 0;\n    for (j2 = 0; j2 < 16; j2++) {\n      j = 16*j1+j2;\n      if (enc->uni2charset[j] != 0) {\n        indx2charset[indx++] = enc->uni2charset[j];\n        summary_used[j1] |= (1 << j2);\n      }\n    }\n  }\n\n  /* Fill npageblocks and pageblocks[]. */\n  npageblocks = 0;\n  for (p = 0; p < 0x300; ) {\n    if (pages[p] && (p == 0 || !pages[p-1])) {\n      pageblocks[npageblocks].start = 16*p;\n      do p++; while (p < 0x300 && pages[p]);\n      j1 = 16*p;\n      while (summary_used[j1-1] == 0) j1--;\n      pageblocks[npageblocks].end = j1;\n      npageblocks++;\n    } else\n      p++;\n  }\n\n  if (monotonic) {\n    indxsteps = (indx + stepsize-1) / stepsize;\n    printf(\"static const unsigned short %s_2charset_main[%d] = {\\n\", name, indxsteps);\n    for (i = 0; i < indxsteps; ) {\n      if ((i % 8) == 0) printf(\" \");\n      printf(\" 0x%04x,\", indx2charset[i*stepsize]);\n      i++;\n      if ((i % 8) == 0 || i == indxsteps) printf(\"\\n\");\n    }\n    printf(\"};\\n\");\n    printf(\"static const unsigned char %s_2charset[%d] = {\\n\", name, indx);\n    for (i = 0; i < indx; ) {\n      if ((i % 8) == 0) printf(\" \");\n      printf(\" 0x%02x,\", indx2charset[i] - indx2charset[i/stepsize*stepsize]);\n      i++;\n      if ((i % 8) == 0 || i == indx) printf(\"\\n\");\n    }\n    printf(\"};\\n\");\n  } else {\n    if (is_large) {\n      printf(\"static const unsigned char %s_2charset[3*%d] = {\\n\", name, indx);\n      for (i = 0; i < indx; ) {\n        if ((i % 4) == 0) printf(\" \");\n        printf(\" 0x%1x,0x%02x,0x%02x,\", indx2charset[i] >> 16,\n               (indx2charset[i] >> 8) & 0xff, indx2charset[i] & 0xff);\n        i++;\n        if ((i % 4) == 0 || i == indx) printf(\"\\n\");\n      }\n      printf(\"};\\n\");\n    } else {\n      printf(\"static const unsigned short %s_2charset[%d] = {\\n\", name, indx);\n      for (i = 0; i < indx; ) {\n        if ((i % 8) == 0) printf(\" \");\n        printf(\" 0x%04x,\", indx2charset[i]);\n        i++;\n        if ((i % 8) == 0 || i == indx) printf(\"\\n\");\n      }\n      printf(\"};\\n\");\n    }\n  }\n  printf(\"\\n\");\n  for (i = 0; i < npageblocks; i++) {\n    printf(\"static const Summary16 %s_uni2indx_page%02x[%d] = {\\n\", name,\n           pageblocks[i].start/16, pageblocks[i].end-pageblocks[i].start);\n    for (j1 = pageblocks[i].start; j1 < pageblocks[i].end; ) {\n      if (((16*j1) % 0x100) == 0) printf(\"  /\"\"* 0x%04x *\"\"/\\n\", 16*j1);\n      if ((j1 % 4) == 0) printf(\" \");\n      printf(\" { %4d, 0x%04x },\", summary_indx[j1], summary_used[j1]);\n      j1++;\n      if ((j1 % 4) == 0 || j1 == pageblocks[i].end) printf(\"\\n\");\n    }\n    printf(\"};\\n\");\n  }\n  printf(\"\\n\");\n\n  printf(\"static int\\n\");\n  printf(\"%s_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\\n\", name);\n  printf(\"{\\n\");\n  printf(\"  if (n >= 2) {\\n\");\n  printf(\"    const Summary16 *summary = NULL;\\n\");\n  for (i = 0; i < npageblocks; i++) {\n    printf(\"    \");\n    if (i > 0)\n      printf(\"else \");\n    printf(\"if (wc >= 0x%04x && wc < 0x%04x)\\n\",\n           16*pageblocks[i].start, 16*pageblocks[i].end);\n    printf(\"      summary = &%s_uni2indx_page%02x[(wc>>4)\", name,\n           pageblocks[i].start/16);\n    if (pageblocks[i].start > 0)\n      printf(\"-0x%03x\", pageblocks[i].start);\n    printf(\"];\\n\");\n  }\n  printf(\"    if (summary) {\\n\");\n  printf(\"      unsigned short used = summary->used;\\n\");\n  printf(\"      unsigned int i = wc & 0x0f;\\n\");\n  printf(\"      if (used & ((unsigned short) 1 << i)) {\\n\");\n  if (monotonic || !is_large)\n    printf(\"        unsigned short c;\\n\");\n  printf(\"        /* Keep in 'used' only the bits 0..i-1. */\\n\");\n  printf(\"        used &= ((unsigned short) 1 << i) - 1;\\n\");\n  printf(\"        /* Add 'summary->indx' and the number of bits set in 'used'. */\\n\");\n  printf(\"        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\\n\");\n  printf(\"        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\\n\");\n  printf(\"        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\\n\");\n  printf(\"        used = (used & 0x00ff) + (used >> 8);\\n\");\n  if (monotonic) {\n    printf(\"        used += summary->indx;\\n\");\n    printf(\"        c = %s_2charset_main[used>>%d] + %s_2charset[used];\\n\", name, log2_stepsize, name);\n    printf(\"        r[0] = (c >> 8); r[1] = (c & 0xff);\\n\");\n    printf(\"        return 2;\\n\");\n  } else {\n    if (is_large) {\n      printf(\"        used += summary->indx;\\n\");\n      printf(\"        r[0] = %s_2charset[3*used];\\n\", name);\n      printf(\"        r[1] = %s_2charset[3*used+1];\\n\", name);\n      printf(\"        r[2] = %s_2charset[3*used+2];\\n\", name);\n      printf(\"        return 3;\\n\");\n    } else {\n      printf(\"        c = %s_2charset[summary->indx + used];\\n\", name);\n      printf(\"        r[0] = (c >> 8); r[1] = (c & 0xff);\\n\");\n      printf(\"        return 2;\\n\");\n    }\n  }\n  printf(\"      }\\n\");\n  printf(\"    }\\n\");\n  printf(\"    return RET_ILUNI;\\n\");\n  printf(\"  }\\n\");\n  printf(\"  return RET_TOOSMALL;\\n\");\n  printf(\"}\\n\");\n}\n\n/* ISO-2022/EUC specifics */\n\nstatic int row_byte_normal (int row) { return 0x21+row; }\nstatic int col_byte_normal (int col) { return 0x21+col; }\nstatic int byte_row_normal (int byte) { return byte-0x21; }\nstatic int byte_col_normal (int byte) { return byte-0x21; }\n\nstatic void do_normal (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 94;\n  enc.cols = 94;\n  enc.row_byte = row_byte_normal;\n  enc.col_byte = col_byte_normal;\n  enc.byte_row = byte_row_normal;\n  enc.byte_col = byte_col_normal;\n  enc.check_row_expr = \"%1$s >= 0x21 && %1$s < 0x7f\";\n  enc.check_col_expr = \"%1$s >= 0x21 && %1$s < 0x7f\";\n  enc.byte_row_expr = \"%1$s - 0x21\";\n  enc.byte_col_expr = \"%1$s - 0x21\";\n\n  read_table(&enc);\n  output_charset2uni(name,&enc);\n  invert(&enc); output_uni2charset_sparse(name,&enc,false);\n}\n\n/* Note: On first sight, the jisx0212_2charset[] table seems to be in order,\n   starting from the charset=0x3021/uni=0x4e02 pair. But it's only mostly in\n   order. There are 75 out-of-order values, scattered all throughout the table.\n */\n\nstatic void do_normal_only_charset2uni (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 94;\n  enc.cols = 94;\n  enc.row_byte = row_byte_normal;\n  enc.col_byte = col_byte_normal;\n  enc.byte_row = byte_row_normal;\n  enc.byte_col = byte_col_normal;\n  enc.check_row_expr = \"%1$s >= 0x21 && %1$s < 0x7f\";\n  enc.check_col_expr = \"%1$s >= 0x21 && %1$s < 0x7f\";\n  enc.byte_row_expr = \"%1$s - 0x21\";\n  enc.byte_col_expr = \"%1$s - 0x21\";\n\n  read_table(&enc);\n  output_charset2uni(name,&enc);\n}\n\n/* CNS 11643 specifics - trick to put two tables into one */\n\nstatic int row_byte_cns11643 (int row) {\n  return 0x100 * (row / 94) + (row % 94) + 0x21;\n}\nstatic int byte_row_cns11643 (int byte) {\n  return (byte >> 8) * 94 + (byte & 0xff) - 0x21;\n}\n\nstatic void do_cns11643_only_uni2charset (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 16*94;\n  enc.cols = 94;\n  enc.row_byte = row_byte_cns11643;\n  enc.col_byte = col_byte_normal;\n  enc.byte_row = byte_row_cns11643;\n  enc.byte_col = byte_col_normal;\n  enc.check_row_expr = \"%1$s >= 0x21 && %1$s < 0x7f\";\n  enc.check_col_expr = \"%1$s >= 0x21 && %1$s < 0x7f\";\n  enc.byte_row_expr = \"%1$s - 0x21\";\n  enc.byte_col_expr = \"%1$s - 0x21\";\n\n  read_table(&enc);\n  invert(&enc);\n  output_uni2charset_sparse(name,&enc,false);\n}\n\n/* GBK specifics */\n\nstatic int row_byte_gbk1 (int row) {\n  return 0x81+row;\n}\nstatic int col_byte_gbk1 (int col) {\n  return (col >= 0x3f ? 0x41 : 0x40) + col;\n}\nstatic int byte_row_gbk1 (int byte) {\n  if (byte >= 0x81 && byte < 0xff)\n    return byte-0x81;\n  else\n    return -1;\n}\nstatic int byte_col_gbk1 (int byte) {\n  if (byte >= 0x40 && byte < 0x7f)\n    return byte-0x40;\n  else if (byte >= 0x80 && byte < 0xff)\n    return byte-0x41;\n  else\n    return -1;\n}\n\nstatic void do_gbk1 (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 126;\n  enc.cols = 190;\n  enc.row_byte = row_byte_gbk1;\n  enc.col_byte = col_byte_gbk1;\n  enc.byte_row = byte_row_gbk1;\n  enc.byte_col = byte_col_gbk1;\n  enc.check_row_expr = \"%1$s >= 0x81 && %1$s < 0xff\";\n  enc.check_col_expr = \"(%1$s >= 0x40 && %1$s < 0x7f) || (%1$s >= 0x80 && %1$s < 0xff)\";\n  enc.byte_row_expr = \"%1$s - 0x81\";\n  enc.byte_col_expr = \"%1$s - (%1$s >= 0x80 ? 0x41 : 0x40)\";\n\n  read_table(&enc);\n  output_charset2uni(name,&enc);\n  invert(&enc); output_uni2charset_dense(name,&enc);\n}\n\nstatic void do_gbk1_only_charset2uni (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 126;\n  enc.cols = 190;\n  enc.row_byte = row_byte_gbk1;\n  enc.col_byte = col_byte_gbk1;\n  enc.byte_row = byte_row_gbk1;\n  enc.byte_col = byte_col_gbk1;\n  enc.check_row_expr = \"%1$s >= 0x81 && %1$s < 0xff\";\n  enc.check_col_expr = \"(%1$s >= 0x40 && %1$s < 0x7f) || (%1$s >= 0x80 && %1$s < 0xff)\";\n  enc.byte_row_expr = \"%1$s - 0x81\";\n  enc.byte_col_expr = \"%1$s - (%1$s >= 0x80 ? 0x41 : 0x40)\";\n\n  read_table(&enc);\n  output_charset2uni(name,&enc);\n}\n\nstatic int row_byte_gbk2 (int row) {\n  return 0x81+row;\n}\nstatic int col_byte_gbk2 (int col) {\n  return (col >= 0x3f ? 0x41 : 0x40) + col;\n}\nstatic int byte_row_gbk2 (int byte) {\n  if (byte >= 0x81 && byte < 0xff)\n    return byte-0x81;\n  else\n    return -1;\n}\nstatic int byte_col_gbk2 (int byte) {\n  if (byte >= 0x40 && byte < 0x7f)\n    return byte-0x40;\n  else if (byte >= 0x80 && byte < 0xa1)\n    return byte-0x41;\n  else\n    return -1;\n}\n\nstatic void do_gbk2_only_charset2uni (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 126;\n  enc.cols = 96;\n  enc.row_byte = row_byte_gbk2;\n  enc.col_byte = col_byte_gbk2;\n  enc.byte_row = byte_row_gbk2;\n  enc.byte_col = byte_col_gbk2;\n  enc.check_row_expr = \"%1$s >= 0x81 && %1$s < 0xff\";\n  enc.check_col_expr = \"(%1$s >= 0x40 && %1$s < 0x7f) || (%1$s >= 0x80 && %1$s < 0xa1)\";\n  enc.byte_row_expr = \"%1$s - 0x81\";\n  enc.byte_col_expr = \"%1$s - (%1$s >= 0x80 ? 0x41 : 0x40)\";\n\n  read_table(&enc);\n  output_charset2uni(name,&enc);\n}\n\nstatic void do_gbk1_only_uni2charset (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 126;\n  enc.cols = 190;\n  enc.row_byte = row_byte_gbk1;\n  enc.col_byte = col_byte_gbk1;\n  enc.byte_row = byte_row_gbk1;\n  enc.byte_col = byte_col_gbk1;\n  enc.check_row_expr = \"%1$s >= 0x81 && %1$s < 0xff\";\n  enc.check_col_expr = \"(%1$s >= 0x40 && %1$s < 0x7f) || (%1$s >= 0x80 && %1$s < 0xff)\";\n  enc.byte_row_expr = \"%1$s - 0x81\";\n  enc.byte_col_expr = \"%1$s - (%1$s >= 0x80 ? 0x41 : 0x40)\";\n\n  read_table(&enc);\n  invert(&enc); output_uni2charset_sparse(name,&enc,false);\n}\n\n/* KSC 5601 specifics */\n\n/*\n * Reads the charset2uni table from standard input.\n */\nstatic void read_table_ksc5601 (Encoding* enc)\n{\n  int row, col, i, i1, i2, c, j;\n\n  enc->charset2uni = (int**) malloc(enc->rows*sizeof(int*));\n  for (row = 0; row < enc->rows; row++)\n    enc->charset2uni[row] = (int*) malloc(enc->cols*sizeof(int));\n\n  for (row = 0; row < enc->rows; row++)\n    for (col = 0; col < enc->cols; col++)\n      enc->charset2uni[row][col] = 0xfffd;\n\n  c = getc(stdin);\n  ungetc(c,stdin);\n  if (c == '#') {\n    /* Read a unicode.org style .TXT file. */\n    for (;;) {\n      c = getc(stdin);\n      if (c == EOF)\n        break;\n      if (c == '\\n' || c == ' ' || c == '\\t')\n        continue;\n      if (c == '#') {\n        do { c = getc(stdin); } while (!(c == EOF || c == '\\n'));\n        continue;\n      }\n      ungetc(c,stdin);\n      if (scanf(\"0x%x\", &j) != 1)\n        exit(1);\n      i1 = j >> 8;\n      i2 = j & 0xff;\n      if (scanf(\" 0x%x\", &j) != 1)\n        exit(1);\n      /* Take only the range covered by KS C 5601.1987-0 = KS C 5601.1989-0\n         = KS X 1001.1992, ignore the rest. */\n      if (!(i1 >= 128+33 && i1 < 128+127 && i2 >= 128+33 && i2 < 128+127))\n        continue;  /* KSC5601 specific */\n      i1 &= 0x7f;  /* KSC5601 specific */\n      i2 &= 0x7f;  /* KSC5601 specific */\n      row = enc->byte_row(i1);\n      col = enc->byte_col(i2);\n      if (row < 0 || col < 0) {\n        fprintf(stderr, \"lost entry for %02x %02x\\n\", i1, i2);\n        exit(1);\n      }\n      enc->charset2uni[row][col] = j;\n    }\n  } else {\n    /* Read a table of hexadecimal Unicode values. */\n    for (i1 = 33; i1 < 127; i1++)\n      for (i2 = 33; i2 < 127; i2++) {\n        i = scanf(\"%x\", &j);\n        if (i == EOF)\n          goto read_done;\n        if (i != 1)\n          exit(1);\n        if (j < 0 || j == 0xffff)\n          j = 0xfffd;\n        if (j != 0xfffd) {\n          if (enc->byte_row(i1) < 0 || enc->byte_col(i2) < 0) {\n            fprintf(stderr, \"lost entry at %02x %02x\\n\", i1, i2);\n            exit (1);\n          }\n          enc->charset2uni[enc->byte_row(i1)][enc->byte_col(i2)] = j;\n        }\n      }\n   read_done: ;\n  }\n}\n\nstatic void do_ksc5601 (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 94;\n  enc.cols = 94;\n  enc.row_byte = row_byte_normal;\n  enc.col_byte = col_byte_normal;\n  enc.byte_row = byte_row_normal;\n  enc.byte_col = byte_col_normal;\n  enc.check_row_expr = \"%1$s >= 0x21 && %1$s < 0x7f\";\n  enc.check_col_expr = \"%1$s >= 0x21 && %1$s < 0x7f\";\n  enc.byte_row_expr = \"%1$s - 0x21\";\n  enc.byte_col_expr = \"%1$s - 0x21\";\n\n  read_table_ksc5601(&enc);\n  output_charset2uni(name,&enc);\n  invert(&enc); output_uni2charset_sparse(name,&enc,false);\n}\n\n/* UHC specifics */\n\n/* UHC part 1: 0x{81..A0}{41..5A,61..7A,81..FE} */\n\nstatic int row_byte_uhc_1 (int row) {\n  return 0x81 + row;\n}\nstatic int col_byte_uhc_1 (int col) {\n  return (col >= 0x34 ? 0x4d : col >= 0x1a ? 0x47 : 0x41) + col;\n}\nstatic int byte_row_uhc_1 (int byte) {\n  if (byte >= 0x81 && byte < 0xa1)\n    return byte-0x81;\n  else\n    return -1;\n}\nstatic int byte_col_uhc_1 (int byte) {\n  if (byte >= 0x41 && byte < 0x5b)\n    return byte-0x41;\n  else if (byte >= 0x61 && byte < 0x7b)\n    return byte-0x47;\n  else if (byte >= 0x81 && byte < 0xff)\n    return byte-0x4d;\n  else\n    return -1;\n}\n\nstatic void do_uhc_1 (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 32;\n  enc.cols = 178;\n  enc.row_byte = row_byte_uhc_1;\n  enc.col_byte = col_byte_uhc_1;\n  enc.byte_row = byte_row_uhc_1;\n  enc.byte_col = byte_col_uhc_1;\n  enc.check_row_expr = \"(%1$s >= 0x81 && %1$s < 0xa1)\";\n  enc.check_col_expr = \"(%1$s >= 0x41 && %1$s < 0x5b) || (%1$s >= 0x61 && %1$s < 0x7b) || (%1$s >= 0x81 && %1$s < 0xff)\";\n  enc.byte_row_expr = \"%1$s - 0x81\";\n  enc.byte_col_expr = \"%1$s - (%1$s >= 0x81 ? 0x4d : %1$s >= 0x61 ? 0x47 : 0x41)\";\n\n  read_table(&enc);\n  output_charset2uni_noholes_monotonic(name,&enc);\n  invert(&enc); output_uni2charset_sparse(name,&enc,true);\n}\n\n/* UHC part 2: 0x{A1..C6}{41..5A,61..7A,81..A0} */\n\nstatic int row_byte_uhc_2 (int row) {\n  return 0xa1 + row;\n}\nstatic int col_byte_uhc_2 (int col) {\n  return (col >= 0x34 ? 0x4d : col >= 0x1a ? 0x47 : 0x41) + col;\n}\nstatic int byte_row_uhc_2 (int byte) {\n  if (byte >= 0xa1 && byte < 0xff)\n    return byte-0xa1;\n  else\n    return -1;\n}\nstatic int byte_col_uhc_2 (int byte) {\n  if (byte >= 0x41 && byte < 0x5b)\n    return byte-0x41;\n  else if (byte >= 0x61 && byte < 0x7b)\n    return byte-0x47;\n  else if (byte >= 0x81 && byte < 0xa1)\n    return byte-0x4d;\n  else\n    return -1;\n}\n\nstatic void do_uhc_2 (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 94;\n  enc.cols = 84;\n  enc.row_byte = row_byte_uhc_2;\n  enc.col_byte = col_byte_uhc_2;\n  enc.byte_row = byte_row_uhc_2;\n  enc.byte_col = byte_col_uhc_2;\n  enc.check_row_expr = \"(%1$s >= 0xa1 && %1$s < 0xff)\";\n  enc.check_col_expr = \"(%1$s >= 0x41 && %1$s < 0x5b) || (%1$s >= 0x61 && %1$s < 0x7b) || (%1$s >= 0x81 && %1$s < 0xa1)\";\n  enc.byte_row_expr = \"%1$s - 0xa1\";\n  enc.byte_col_expr = \"%1$s - (%1$s >= 0x81 ? 0x4d : %1$s >= 0x61 ? 0x47 : 0x41)\";\n\n  read_table(&enc);\n  output_charset2uni_noholes_monotonic(name,&enc);\n  invert(&enc); output_uni2charset_sparse(name,&enc,true);\n}\n\n/* Big5 specifics */\n\nstatic int row_byte_big5 (int row) {\n  return 0xa1+row;\n}\nstatic int col_byte_big5 (int col) {\n  return (col >= 0x3f ? 0x62 : 0x40) + col;\n}\nstatic int byte_row_big5 (int byte) {\n  if (byte >= 0xa1 && byte < 0xff)\n    return byte-0xa1;\n  else\n    return -1;\n}\nstatic int byte_col_big5 (int byte) {\n  if (byte >= 0x40 && byte < 0x7f)\n    return byte-0x40;\n  else if (byte >= 0xa1 && byte < 0xff)\n    return byte-0x62;\n  else\n    return -1;\n}\n\nstatic void do_big5 (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 94;\n  enc.cols = 157;\n  enc.row_byte = row_byte_big5;\n  enc.col_byte = col_byte_big5;\n  enc.byte_row = byte_row_big5;\n  enc.byte_col = byte_col_big5;\n  enc.check_row_expr = \"%1$s >= 0xa1 && %1$s < 0xff\";\n  enc.check_col_expr = \"(%1$s >= 0x40 && %1$s < 0x7f) || (%1$s >= 0xa1 && %1$s < 0xff)\";\n  enc.byte_row_expr = \"%1$s - 0xa1\";\n  enc.byte_col_expr = \"%1$s - (%1$s >= 0xa1 ? 0x62 : 0x40)\";\n\n  read_table(&enc);\n  output_charset2uni(name,&enc);\n  invert(&enc); output_uni2charset_sparse(name,&enc,false);\n}\n\n/* HKSCS specifics */\n\nstatic int row_byte_hkscs (int row) {\n  return 0x80+row;\n}\nstatic int byte_row_hkscs (int byte) {\n  if (byte >= 0x80 && byte < 0xff)\n    return byte-0x80;\n  else\n    return -1;\n}\n\nstatic void do_hkscs (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 128;\n  enc.cols = 157;\n  enc.row_byte = row_byte_hkscs;\n  enc.col_byte = col_byte_big5;\n  enc.byte_row = byte_row_hkscs;\n  enc.byte_col = byte_col_big5;\n  enc.check_row_expr = \"%1$s >= 0x80 && %1$s < 0xff\";\n  enc.check_col_expr = \"(%1$s >= 0x40 && %1$s < 0x7f) || (%1$s >= 0xa1 && %1$s < 0xff)\";\n  enc.byte_row_expr = \"%1$s - 0x80\";\n  enc.byte_col_expr = \"%1$s - (%1$s >= 0xa1 ? 0x62 : 0x40)\";\n\n  read_table(&enc);\n  output_charset2uni(name,&enc);\n  invert(&enc); output_uni2charset_sparse(name,&enc,false);\n}\n\n/* Johab Hangul specifics */\n\nstatic int row_byte_johab_hangul (int row) {\n  return 0x84+row;\n}\nstatic int col_byte_johab_hangul (int col) {\n  return (col >= 0x3e ? 0x43 : 0x41) + col;\n}\nstatic int byte_row_johab_hangul (int byte) {\n  if (byte >= 0x84 && byte < 0xd4)\n    return byte-0x84;\n  else\n    return -1;\n}\nstatic int byte_col_johab_hangul (int byte) {\n  if (byte >= 0x41 && byte < 0x7f)\n    return byte-0x41;\n  else if (byte >= 0x81 && byte < 0xff)\n    return byte-0x43;\n  else\n    return -1;\n}\n\nstatic void do_johab_hangul (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 80;\n  enc.cols = 188;\n  enc.row_byte = row_byte_johab_hangul;\n  enc.col_byte = col_byte_johab_hangul;\n  enc.byte_row = byte_row_johab_hangul;\n  enc.byte_col = byte_col_johab_hangul;\n  enc.check_row_expr = \"%1$s >= 0x84 && %1$s < 0xd4\";\n  enc.check_col_expr = \"(%1$s >= 0x41 && %1$s < 0x7f) || (%1$s >= 0x81 && %1$s < 0xff)\";\n  enc.byte_row_expr = \"%1$s - 0x84\";\n  enc.byte_col_expr = \"%1$s - (%1$s >= 0x81 ? 0x43 : 0x41)\";\n\n  read_table(&enc);\n  output_charset2uni(name,&enc);\n  invert(&enc); output_uni2charset_dense(name,&enc);\n}\n\n/* SJIS specifics */\n\nstatic int row_byte_sjis (int row) {\n  return (row >= 0x1f ? 0xc1 : 0x81) + row;\n}\nstatic int col_byte_sjis (int col) {\n  return (col >= 0x3f ? 0x41 : 0x40) + col;\n}\nstatic int byte_row_sjis (int byte) {\n  if (byte >= 0x81 && byte < 0xa0)\n    return byte-0x81;\n  else if (byte >= 0xe0)\n    return byte-0xc1;\n  else\n    return -1;\n}\nstatic int byte_col_sjis (int byte) {\n  if (byte >= 0x40 && byte < 0x7f)\n    return byte-0x40;\n  else if (byte >= 0x80 && byte < 0xfd)\n    return byte-0x41;\n  else\n    return -1;\n}\n\nstatic void do_sjis (const char* name)\n{\n  Encoding enc;\n\n  enc.rows = 94;\n  enc.cols = 188;\n  enc.row_byte = row_byte_sjis;\n  enc.col_byte = col_byte_sjis;\n  enc.byte_row = byte_row_sjis;\n  enc.byte_col = byte_col_sjis;\n  enc.check_row_expr = \"(%1$s >= 0x81 && %1$s < 0xa0) || (%1$s >= 0xe0)\";\n  enc.check_col_expr = \"(%1$s >= 0x40 && %1$s < 0x7f) || (%1$s >= 0x80 && %1$s < 0xfd)\";\n  enc.byte_row_expr = \"%1$s - (%1$s >= 0xe0 ? 0xc1 : 0x81)\";\n  enc.byte_col_expr = \"%1$s - (%1$s >= 0x80 ? 0x41 : 0x40)\";\n\n  read_table(&enc);\n  output_charset2uni(name,&enc);\n  invert(&enc); output_uni2charset_sparse(name,&enc,false);\n}\n\n/* GB18030 Unicode specifics */\n\nstatic void do_gb18030uni (const char* name)\n{\n  int c;\n  unsigned int bytes;\n  int i1, i2, i3, i4, i, j, k;\n  int charset2uni[4*10*126*10];\n  int uni2charset[0x10000];\n  struct { int low; int high; int diff; int total; } ranges[256];\n  int ranges_count, ranges_total;\n\n  for (i = 0; i < 4*10*126*10; i++)\n    charset2uni[i] = 0;\n  for (j = 0; j < 0x10000; j++)\n    uni2charset[j] = 0;\n\n  /* Read a unicode.org style .TXT file. */\n  for (;;) {\n    c = getc(stdin);\n    if (c == EOF)\n      break;\n    if (c == '\\n' || c == ' ' || c == '\\t')\n      continue;\n    if (c == '#') {\n      do { c = getc(stdin); } while (!(c == EOF || c == '\\n'));\n      continue;\n    }\n    ungetc(c,stdin);\n    if (scanf(\"0x%x\", &bytes) != 1)\n      exit(1);\n    i1 = (bytes >> 24) & 0xff;\n    i2 = (bytes >> 16) & 0xff;\n    i3 = (bytes >> 8) & 0xff;\n    i4 = bytes & 0xff;\n    if (!(i1 >= 0x81 && i1 <= 0x84\n          && i2 >= 0x30 && i2 <= 0x39\n          && i3 >= 0x81 && i3 <= 0xfe\n          && i4 >= 0x30 && i4 <= 0x39)) {\n      fprintf(stderr, \"lost entry for %02x %02x %02x %02x\\n\", i1, i2, i3, i4);\n      exit(1);\n    }\n    i = (((i1-0x81) * 10 + (i2-0x30)) * 126 + (i3-0x81)) * 10 + (i4-0x30);\n    if (scanf(\" 0x%x\", &j) != 1)\n      exit(1);\n    if (!(j >= 0 && j < 0x10000))\n      exit(1);\n    charset2uni[i] = j;\n    uni2charset[j] = i;\n  }\n\n  /* Verify that the mapping i -> j is monotonically increasing and\n     of the form\n        low[k] <= i <= high[k]  =>  j = diff[k] + i\n     with a set of disjoint intervals (low[k], high[k]). */\n  ranges_count = 0;\n  for (i = 0; i < 4*10*126*10; i++)\n    if (charset2uni[i] != 0) {\n      int diff;\n      j = charset2uni[i];\n      diff = j - i;\n      if (ranges_count > 0) {\n        if (!(i > ranges[ranges_count-1].high))\n          exit(1);\n        if (!(j > ranges[ranges_count-1].high + ranges[ranges_count-1].diff))\n          exit(1);\n        /* Additional property: The diffs are also increasing. */\n        if (!(diff >= ranges[ranges_count-1].diff))\n          exit(1);\n      }\n      if (ranges_count > 0 && diff == ranges[ranges_count-1].diff)\n        ranges[ranges_count-1].high = i;\n      else {\n        if (ranges_count == 256)\n          exit(1);\n        ranges[ranges_count].low = i;\n        ranges[ranges_count].high = i;\n        ranges[ranges_count].diff = diff;\n        ranges_count++;\n      }\n    }\n\n  /* Determine size of bitmap. */\n  ranges_total = 0;\n  for (k = 0; k < ranges_count; k++) {\n    ranges[k].total = ranges_total;\n    ranges_total += ranges[k].high - ranges[k].low + 1;\n  }\n\n  printf(\"static const unsigned short %s_charset2uni_ranges[%d] = {\\n\", name, 2*ranges_count);\n  for (k = 0; k < ranges_count; k++) {\n    printf(\"  0x%04x, 0x%04x\", ranges[k].low, ranges[k].high);\n    if (k+1 < ranges_count) printf(\",\");\n    if ((k % 4) == 3 && k+1 < ranges_count) printf(\"\\n\");\n  }\n  printf(\"\\n\");\n  printf(\"};\\n\");\n\n  printf(\"\\n\");\n\n  printf(\"static const unsigned short %s_uni2charset_ranges[%d] = {\\n\", name, 2*ranges_count);\n  for (k = 0; k < ranges_count; k++) {\n    printf(\"  0x%04x, 0x%04x\", ranges[k].low + ranges[k].diff, ranges[k].high + ranges[k].diff);\n    if (k+1 < ranges_count) printf(\",\");\n    if ((k % 4) == 3 && k+1 < ranges_count) printf(\"\\n\");\n  }\n  printf(\"\\n\");\n  printf(\"};\\n\");\n\n  printf(\"\\n\");\n\n  printf(\"static const struct { unsigned short diff; unsigned short bitmap_offset; } %s_ranges[%d] = {\\n \", name, ranges_count);\n  for (k = 0; k < ranges_count; k++) {\n    printf(\" { %5d, 0x%04x }\", ranges[k].diff, ranges[k].total);\n    if (k+1 < ranges_count) printf(\",\");\n    if ((k % 4) == 3 && k+1 < ranges_count) printf(\"\\n \");\n  }\n  printf(\"\\n\");\n  printf(\"};\\n\");\n\n  printf(\"\\n\");\n\n  printf(\"static const unsigned char %s_bitmap[%d] = {\\n \", name, (ranges_total + 7) / 8);\n  {\n    int accu = 0;\n    for (k = 0; k < ranges_count; k++) {\n      for (i = ranges[k].total; i <= ranges[k].total + (ranges[k].high - ranges[k].low);) {\n        if (charset2uni[i - ranges[k].total + ranges[k].low] != 0)\n          accu |= (1 << (i % 8));\n        i++;\n        if ((i % 8) == 0) {\n          printf(\" 0x%02x\", accu);\n          if ((i / 8) < (ranges_total + 7) / 8) printf(\",\");\n          if (((i / 8) % 12) == 0)\n            printf(\"\\n \");\n          accu = 0;\n        }\n      }\n      if (i != (k+1 < ranges_count ? ranges[k+1].total : ranges_total)) abort();\n    }\n    if ((ranges_total % 8) != 0)\n      printf(\" 0x%02x\", accu);\n    printf(\"\\n\");\n  }\n  printf(\"};\\n\");\n\n  printf(\"\\n\");\n\n  printf(\"static int\\n\");\n  printf(\"%s_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)\\n\", name);\n  printf(\"{\\n\");\n  printf(\"  unsigned char c1 = s[0];\\n\");\n  printf(\"  if (c1 >= 0x81 && c1 <= 0x84) {\\n\");\n  printf(\"    if (n >= 2) {\\n\");\n  printf(\"      unsigned char c2 = s[1];\\n\");\n  printf(\"      if (c2 >= 0x30 && c2 <= 0x39) {\\n\");\n  printf(\"        if (n >= 3) {\\n\");\n  printf(\"          unsigned char c3 = s[2];\\n\");\n  printf(\"          if (c3 >= 0x81 && c3 <= 0xfe) {\\n\");\n  printf(\"            if (n >= 4) {\\n\");\n  printf(\"              unsigned char c4 = s[3];\\n\");\n  printf(\"              if (c4 >= 0x30 && c4 <= 0x39) {\\n\");\n  printf(\"                unsigned int i = (((c1 - 0x81) * 10 + (c2 - 0x30)) * 126 + (c3 - 0x81)) * 10 + (c4 - 0x30);\\n\");\n  printf(\"                if (i >= %d && i <= %d) {\\n\", ranges[0].low, ranges[ranges_count-1].high);\n  printf(\"                  unsigned int k1 = 0;\\n\");\n  printf(\"                  unsigned int k2 = %d;\\n\", ranges_count-1);\n  printf(\"                  while (k1 < k2) {\\n\");\n  printf(\"                    unsigned int k = (k1 + k2) / 2;\\n\");\n  printf(\"                    if (i <= %s_charset2uni_ranges[2*k+1])\\n\", name);\n  printf(\"                      k2 = k;\\n\");\n  printf(\"                    else if (i >= %s_charset2uni_ranges[2*k+2])\\n\", name);\n  printf(\"                      k1 = k + 1;\\n\");\n  printf(\"                    else\\n\");\n  printf(\"                      return RET_ILSEQ;\\n\");\n  printf(\"                  }\\n\");\n  printf(\"                  {\\n\");\n  printf(\"                    unsigned int bitmap_index = i - %s_charset2uni_ranges[2*k1] + %s_ranges[k1].bitmap_offset;\\n\", name, name);\n  printf(\"                    if ((%s_bitmap[bitmap_index >> 3] >> (bitmap_index & 7)) & 1) {\\n\", name);\n  printf(\"                      unsigned int diff = %s_ranges[k1].diff;\\n\", name);\n  printf(\"                      *pwc = (ucs4_t) (i + diff);\\n\");\n  printf(\"                      return 4;\\n\");\n  printf(\"                    }\\n\");\n  printf(\"                  }\\n\");\n  printf(\"                }\\n\");\n  printf(\"              }\\n\");\n  printf(\"              return RET_ILSEQ;\\n\");\n  printf(\"            }\\n\");\n  printf(\"            return RET_TOOFEW(0);\\n\");\n  printf(\"          }\\n\");\n  printf(\"          return RET_ILSEQ;\\n\");\n  printf(\"        }\\n\");\n  printf(\"        return RET_TOOFEW(0);\\n\");\n  printf(\"      }\\n\");\n  printf(\"      return RET_ILSEQ;\\n\");\n  printf(\"    }\\n\");\n  printf(\"    return RET_TOOFEW(0);\\n\");\n  printf(\"  }\\n\");\n  printf(\"  return RET_ILSEQ;\\n\");\n  printf(\"}\\n\");\n\n  printf(\"\\n\");\n\n  printf(\"static int\\n\");\n  printf(\"%s_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)\\n\", name);\n  printf(\"{\\n\");\n  printf(\"  if (n >= 4) {\\n\");\n  printf(\"    unsigned int i = wc;\\n\");\n  printf(\"    if (i >= 0x%04x && i <= 0x%04x) {\\n\", ranges[0].low + ranges[0].diff, ranges[ranges_count-1].high + ranges[ranges_count-1].diff);\n  printf(\"      unsigned int k1 = 0;\\n\");\n  printf(\"      unsigned int k2 = %d;\\n\", ranges_count-1);\n  printf(\"      while (k1 < k2) {\\n\");\n  printf(\"        unsigned int k = (k1 + k2) / 2;\\n\");\n  printf(\"        if (i <= %s_uni2charset_ranges[2*k+1])\\n\", name);\n  printf(\"          k2 = k;\\n\");\n  printf(\"        else if (i >= %s_uni2charset_ranges[2*k+2])\\n\", name);\n  printf(\"          k1 = k + 1;\\n\");\n  printf(\"        else\\n\");\n  printf(\"          return RET_ILUNI;\\n\");\n  printf(\"      }\\n\");\n  printf(\"      {\\n\");\n  printf(\"        unsigned int bitmap_index = i - %s_uni2charset_ranges[2*k1] + %s_ranges[k1].bitmap_offset;\\n\", name, name);\n  printf(\"        if ((%s_bitmap[bitmap_index >> 3] >> (bitmap_index & 7)) & 1) {\\n\", name);\n  printf(\"          unsigned int diff = %s_ranges[k1].diff;\\n\", name);\n  printf(\"          i -= diff;\\n\");\n  printf(\"          r[3] = (i %% 10) + 0x30; i = i / 10;\\n\");\n  printf(\"          r[2] = (i %% 126) + 0x81; i = i / 126;\\n\");\n  printf(\"          r[1] = (i %% 10) + 0x30; i = i / 10;\\n\");\n  printf(\"          r[0] = i + 0x81;\\n\");\n  printf(\"          return 4;\\n\");\n  printf(\"        }\\n\");\n  printf(\"      }\\n\");\n  printf(\"    }\\n\");\n  printf(\"    return RET_ILUNI;\\n\");\n  printf(\"  }\\n\");\n  printf(\"  return RET_TOOSMALL;\\n\");\n  printf(\"}\\n\");\n}\n\n/* JISX0213 specifics */\n\nstatic void do_jisx0213 (const char* name)\n{\n  printf(\"#ifndef _JISX0213_H\\n\");\n  printf(\"#define _JISX0213_H\\n\");\n  printf(\"\\n\");\n  printf(\"/* JISX0213 plane 1 (= ISO-IR-233) characters are in the range\\n\");\n  printf(\"   0x{21..7E}{21..7E}.\\n\");\n  printf(\"   JISX0213 plane 2 (= ISO-IR-229) characters are in the range\\n\");\n  printf(\"   0x{21,23..25,28,2C..2F,6E..7E}{21..7E}.\\n\");\n  printf(\"   Together this makes 120 rows of 94 characters.\\n\");\n  printf(\"*/\\n\");\n  printf(\"\\n\");\n  {\n#define row_convert(row) \\\n      ((row) >= 0x121 && (row) <= 0x17E ? row-289 : /* 0..93 */    \\\n       (row) == 0x221                   ? row-451 : /* 94 */       \\\n       (row) >= 0x223 && (row) <= 0x225 ? row-452 : /* 95..97 */   \\\n       (row) == 0x228                   ? row-454 : /* 98 */       \\\n       (row) >= 0x22C && (row) <= 0x22F ? row-457 : /* 99..102 */  \\\n       (row) >= 0x26E && (row) <= 0x27E ? row-519 : /* 103..119 */ \\\n       -1)\n    unsigned int table[120][94];\n    int pagemin[0x1100];\n    int pagemax[0x1100];\n    int pageidx[0x1100];\n    unsigned int pagestart[0x1100];\n    unsigned int pagestart_len = 0;\n    {\n      unsigned int rowc, colc;\n      for (rowc = 0; rowc < 120; rowc++)\n        for (colc = 0; colc < 94; colc++)\n          table[rowc][colc] = 0;\n    }\n    {\n      unsigned int page;\n      for (page = 0; page < 0x1100; page++)\n        pagemin[page] = -1;\n      for (page = 0; page < 0x1100; page++)\n        pagemax[page] = -1;\n      for (page = 0; page < 0x1100; page++)\n        pageidx[page] = -1;\n    }\n    printf(\"static const unsigned short jisx0213_to_ucs_combining[][2] = {\\n\");\n    {\n      int private_use = 0x0001;\n      for (;;) {\n        char line[30];\n        unsigned int row, col;\n        unsigned int ucs;\n        memset(line,0,sizeof(line));\n        if (scanf(\"%[^\\n]\\n\",line) < 1)\n          break;\n        assert(line[0]=='0');\n        assert(line[1]=='x');\n        assert(isxdigit(line[2]));\n        assert(isxdigit(line[3]));\n        assert(isxdigit(line[4]));\n        assert(isxdigit(line[5]));\n        assert(isxdigit(line[6]));\n        assert(line[7]=='\\t');\n        line[7] = '\\0';\n        col = strtoul(&line[5],NULL,16);\n        line[5] = '\\0';\n        row = strtoul(&line[2],NULL,16);\n        if (line[20] != '\\0' && line[21] == '\\0') {\n          unsigned int u1, u2;\n          assert(line[8]=='0');\n          assert(line[9]=='x');\n          assert(isxdigit(line[10]));\n          assert(isxdigit(line[11]));\n          assert(isxdigit(line[12]));\n          assert(isxdigit(line[13]));\n          assert(line[14]==' ');\n          assert(line[15]=='0');\n          assert(line[16]=='x');\n          assert(isxdigit(line[17]));\n          assert(isxdigit(line[18]));\n          assert(isxdigit(line[19]));\n          assert(isxdigit(line[20]));\n          u2 = strtoul(&line[17],NULL,16);\n          line[14] = '\\0';\n          u1 = strtoul(&line[10],NULL,16);\n          printf(\"  { 0x%04x, 0x%04x },\\n\", u1, u2);\n          ucs = private_use++;\n        } else {\n          assert(line[8]=='0');\n          assert(line[9]=='x');\n          assert(isxdigit(line[10]));\n          assert(isxdigit(line[11]));\n          assert(isxdigit(line[12]));\n          assert(isxdigit(line[13]));\n          ucs = strtoul(&line[10],NULL,16);\n        }\n        assert((unsigned int) row_convert(row) < 120);\n        assert((unsigned int) (col-0x21) < 94);\n        table[row_convert(row)][col-0x21] = ucs;\n      }\n    }\n    printf(\"};\\n\");\n    printf(\"\\n\");\n    {\n      unsigned int rowc, colc;\n      for (rowc = 0; rowc < 120; rowc++) {\n        for (colc = 0; colc < 94; colc++) {\n          unsigned int value = table[rowc][colc];\n          unsigned int page = value >> 8;\n          unsigned int rest = value & 0xff;\n          if (pagemin[page] < 0 || pagemin[page] > rest) pagemin[page] = rest;\n          if (pagemax[page] < 0 || pagemax[page] < rest) pagemax[page] = rest;\n        }\n      }\n    }\n    {\n      unsigned int index = 0;\n      unsigned int i;\n      for (i = 0; i < 0x1100; ) {\n        if (pagemin[i] >= 0) {\n          if (pagemin[i+1] >= 0 && pagemin[i] >= 0x80 && pagemax[i+1] < 0x80) {\n            /* Combine two pages into a single one. */\n            assert(pagestart_len < sizeof(pagestart)/sizeof(pagestart[0]));\n            pagestart[pagestart_len++] = (i<<8)+0x80;\n            pageidx[i] = index;\n            pageidx[i+1] = index;\n            index++;\n            i += 2;\n          } else {\n            /* A single page. */\n            assert(pagestart_len < sizeof(pagestart)/sizeof(pagestart[0]));\n            pagestart[pagestart_len++] = i<<8;\n            pageidx[i] = index;\n            index++;\n            i += 1;\n          }\n        } else\n          i++;\n      }\n    }\n    printf(\"static const unsigned short jisx0213_to_ucs_main[120 * 94] = {\\n\");\n    {\n      unsigned int row;\n      for (row = 0; row < 0x300; row++) {\n        unsigned int rowc = row_convert(row);\n        if (rowc != (unsigned int) (-1)) {\n          printf(\"  /* 0x%X21..0x%X7E */\\n\",row,row);\n          {\n            unsigned int count = 0;\n            unsigned int colc;\n            for (colc = 0; colc < 94; colc++) {\n              if ((count % 8) == 0) printf(\" \");\n              {\n                unsigned int value = table[rowc][colc];\n                unsigned int page = value >> 8;\n                unsigned int index = pageidx[page];\n                assert(value-pagestart[index] < 0x100);\n                printf(\" 0x%04x,\",(index<<8)|(value-pagestart[index]));\n              }\n              count++;\n              if ((count % 8) == 0) printf(\"\\n\");\n            }\n          }\n          printf(\"\\n\");\n        }\n      }\n    }\n    printf(\"};\\n\");\n    printf(\"\\n\");\n    printf(\"static const ucs4_t jisx0213_to_ucs_pagestart[] = {\\n\");\n    {\n      unsigned int count = 0;\n      unsigned int i;\n      for (i = 0; i < pagestart_len; i++) {\n        char buf[10];\n        if ((count % 8) == 0) printf(\" \");\n        printf(\" \");\n        sprintf(buf,\"0x%04x\",pagestart[i]);\n        if (strlen(buf) < 7) printf(\"%*s\",(int)(7-strlen(buf)),\"\");\n        printf(\"%s,\",buf);\n        count++;\n        if ((count % 8) == 0) printf(\"\\n\");\n      }\n    }\n    printf(\"\\n\");\n    printf(\"};\\n\");\n#undef row_convert\n  }\n  rewind(stdin);\n  printf(\"\\n\");\n  {\n    int table[0x110000];\n    bool pages[0x4400];\n    int maxpage = -1;\n    unsigned int combining_prefixes[100];\n    unsigned int combining_prefixes_len = 0;\n    {\n      unsigned int i;\n      for (i = 0; i < 0x110000; i++)\n        table[i] = -1;\n      for (i = 0; i < 0x4400; i++)\n        pages[i] = false;\n    }\n    for (;;) {\n      char line[30];\n      unsigned int plane, row, col;\n      memset(line,0,sizeof(line));\n      if (scanf(\"%[^\\n]\\n\",line) < 1)\n        break;\n      assert(line[0]=='0');\n      assert(line[1]=='x');\n      assert(isxdigit(line[2]));\n      assert(isxdigit(line[3]));\n      assert(isxdigit(line[4]));\n      assert(isxdigit(line[5]));\n      assert(isxdigit(line[6]));\n      assert(line[7]=='\\t');\n      line[7] = '\\0';\n      col = strtoul(&line[5],NULL,16);\n      line[5] = '\\0';\n      row = strtoul(&line[3],NULL,16);\n      line[3] = '\\0';\n      plane = strtoul(&line[2],NULL,16) - 1;\n      if (line[20] != '\\0' && line[21] == '\\0') {\n        unsigned int u1, u2;\n        assert(line[8]=='0');\n        assert(line[9]=='x');\n        assert(isxdigit(line[10]));\n        assert(isxdigit(line[11]));\n        assert(isxdigit(line[12]));\n        assert(isxdigit(line[13]));\n        assert(line[14]==' ');\n        assert(line[15]=='0');\n        assert(line[16]=='x');\n        assert(isxdigit(line[17]));\n        assert(isxdigit(line[18]));\n        assert(isxdigit(line[19]));\n        assert(isxdigit(line[20]));\n        u2 = strtoul(&line[17],NULL,16);\n        line[14] = '\\0';\n        u1 = strtoul(&line[10],NULL,16);\n        assert(u2 == 0x02E5 || u2 == 0x02E9 || u2 == 0x0300 || u2 == 0x0301\n               || u2 == 0x309A);\n        assert(combining_prefixes_len < sizeof(combining_prefixes)/sizeof(combining_prefixes[0]));\n        combining_prefixes[combining_prefixes_len++] = u1;\n      } else {\n        unsigned int ucs;\n        assert(line[8]=='0');\n        assert(line[9]=='x');\n        assert(isxdigit(line[10]));\n        assert(isxdigit(line[11]));\n        assert(isxdigit(line[12]));\n        assert(isxdigit(line[13]));\n        ucs = strtoul(&line[10],NULL,16);\n        /* Add an entry. */\n        assert(plane <= 1);\n        assert(row <= 0x7f);\n        assert(col <= 0x7f);\n        table[ucs] = (plane << 15) | (row << 8) | col;\n        pages[ucs>>6] = true;\n        if (maxpage < 0 || (ucs>>6) > maxpage) maxpage = ucs>>6;\n      }\n    }\n    {\n      unsigned int i;\n      for (i = 0; i < combining_prefixes_len; i++) {\n        unsigned int u1 = combining_prefixes[i];\n        assert(table[u1] >= 0);\n        table[u1] |= 0x0080;\n      }\n    }\n    printf(\"static const short jisx0213_from_ucs_level1[%d] = {\\n\",maxpage+1);\n    {\n      unsigned int index = 0;\n      unsigned int i;\n      for (i = 0; i <= maxpage; i++) {\n        if ((i % 8) == 0) printf(\" \");\n        if (pages[i]) {\n          printf(\" %3u,\",index);\n          index++;\n        } else {\n          printf(\" %3d,\",-1);\n        }\n        if (((i+1) % 8) == 0) printf(\"\\n\");\n      }\n    }\n    printf(\"\\n\");\n    printf(\"};\\n\");\n    printf(\"\\n\");\n    #if 0 /* Dense array */\n    printf(\"static const unsigned short jisx0213_from_ucs_level2[] = {\\n\");\n    {\n      unsigned int i;\n      for (i = 0; i <= maxpage; i++) {\n        if (pages[i]) {\n          printf(\"  /* 0x%04X */\\n\",i<<6);\n          {\n            unsigned int j;\n            for (j = 0; j < 0x40; ) {\n              unsigned int ucs = (i<<6)+j;\n              int value = table[ucs];\n              if (value < 0) value = 0;\n              if ((j % 8) == 0) printf(\" \");\n              printf(\" 0x%04x,\",value);\n              j++;\n              if ((j % 8) == 0) printf(\"\\n\");\n            }\n          }\n        }\n      }\n    }\n    printf(\"};\\n\");\n    #else /* Sparse array */\n    {\n      int summary_indx[0x11000];\n      int summary_used[0x11000];\n      unsigned int i, k, indx;\n      printf(\"static const unsigned short jisx0213_from_ucs_level2_data[] = {\\n\");\n      /* Fill summary_indx[] and summary_used[]. */\n      indx = 0;\n      for (i = 0, k = 0; i <= maxpage; i++) {\n        if (pages[i]) {\n          unsigned int j1, j2;\n          unsigned int count = 0;\n          printf(\"  /* 0x%04X */\\n\",i<<6);\n          for (j1 = 0; j1 < 4; j1++) {\n            summary_indx[4*k+j1] = indx;\n            summary_used[4*k+j1] = 0;\n            for (j2 = 0; j2 < 16; j2++) {\n              unsigned int j = 16*j1+j2;\n              unsigned int ucs = (i<<6)+j;\n              int value = table[ucs];\n              if (value < 0) value = 0;\n              if (value > 0) {\n                summary_used[4*k+j1] |= (1 << j2);\n                if ((count % 8) == 0) printf(\" \");\n                printf(\" 0x%04x,\",value);\n                count++;\n                if ((count % 8) == 0) printf(\"\\n\");\n                indx++;\n              }\n            }\n          }\n          if ((count % 8) > 0)\n            printf(\"\\n\");\n          k++;\n        }\n      }\n      printf(\"};\\n\");\n      printf(\"\\n\");\n      printf(\"static const Summary16 jisx0213_from_ucs_level2_2indx[] = {\\n\");\n      for (i = 0, k = 0; i <= maxpage; i++) {\n        if (pages[i]) {\n          unsigned int j1;\n          printf(\"  /* 0x%04X */\\n\",i<<6);\n          printf(\" \");\n          for (j1 = 0; j1 < 4; j1++) {\n            printf(\" { %4d, 0x%04x },\", summary_indx[4*k+j1], summary_used[4*k+j1]);\n          }\n          printf(\"\\n\");\n          k++;\n        }\n      }\n      printf(\"};\\n\");\n    }\n    #endif\n    printf(\"\\n\");\n  }\n  printf(\"#ifdef __GNUC__\\n\");\n  printf(\"__inline\\n\");\n  printf(\"#else\\n\");\n  printf(\"#ifdef __cplusplus\\n\");\n  printf(\"inline\\n\");\n  printf(\"#endif\\n\");\n  printf(\"#endif\\n\");\n  printf(\"static ucs4_t jisx0213_to_ucs4 (unsigned int row, unsigned int col)\\n\");\n  printf(\"{\\n\");\n  printf(\"  ucs4_t val;\\n\");\n  printf(\"\\n\");\n  printf(\"  if (row >= 0x121 && row <= 0x17e)\\n\");\n  printf(\"    row -= 289;\\n\");\n  printf(\"  else if (row == 0x221)\\n\");\n  printf(\"    row -= 451;\\n\");\n  printf(\"  else if (row >= 0x223 && row <= 0x225)\\n\");\n  printf(\"    row -= 452;\\n\");\n  printf(\"  else if (row == 0x228)\\n\");\n  printf(\"    row -= 454;\\n\");\n  printf(\"  else if (row >= 0x22c && row <= 0x22f)\\n\");\n  printf(\"    row -= 457;\\n\");\n  printf(\"  else if (row >= 0x26e && row <= 0x27e)\\n\");\n  printf(\"    row -= 519;\\n\");\n  printf(\"  else\\n\");\n  printf(\"    return 0x0000;\\n\");\n  printf(\"\\n\");\n  printf(\"  if (col >= 0x21 && col <= 0x7e)\\n\");\n  printf(\"    col -= 0x21;\\n\");\n  printf(\"  else\\n\");\n  printf(\"    return 0x0000;\\n\");\n  printf(\"\\n\");\n  printf(\"  val = jisx0213_to_ucs_main[row * 94 + col];\\n\");\n  printf(\"  val = jisx0213_to_ucs_pagestart[val >> 8] + (val & 0xff);\\n\");\n  printf(\"  if (val == 0xfffd)\\n\");\n  printf(\"    val = 0x0000;\\n\");\n  printf(\"  return val;\\n\");\n  printf(\"}\\n\");\n  printf(\"\\n\");\n  printf(\"#ifdef __GNUC__\\n\");\n  printf(\"__inline\\n\");\n  printf(\"#else\\n\");\n  printf(\"#ifdef __cplusplus\\n\");\n  printf(\"inline\\n\");\n  printf(\"#endif\\n\");\n  printf(\"#endif\\n\");\n  printf(\"static unsigned short ucs4_to_jisx0213 (ucs4_t ucs)\\n\");\n  printf(\"{\\n\");\n  printf(\"  if (ucs < (sizeof(jisx0213_from_ucs_level1)/sizeof(jisx0213_from_ucs_level1[0])) << 6) {\\n\");\n  printf(\"    int index1 = jisx0213_from_ucs_level1[ucs >> 6];\\n\");\n  printf(\"    if (index1 >= 0)\");\n  #if 0 /* Dense array */\n  printf(\"\\n\");\n  printf(\"      return jisx0213_from_ucs_level2[(index1 << 6) + (ucs & 0x3f)];\\n\");\n  #else /* Sparse array */\n  printf(\" {\\n\");\n  printf(\"      const Summary16 *summary = &jisx0213_from_ucs_level2_2indx[((index1 << 6) + (ucs & 0x3f)) >> 4];\\n\");\n  printf(\"      unsigned short used = summary->used;\\n\");\n  printf(\"      unsigned int i = ucs & 0x0f;\\n\");\n  printf(\"      if (used & ((unsigned short) 1 << i)) {\\n\");\n  printf(\"        /* Keep in 'used' only the bits 0..i-1. */\\n\");\n  printf(\"        used &= ((unsigned short) 1 << i) - 1;\\n\");\n  printf(\"        /* Add 'summary->indx' and the number of bits set in 'used'. */\\n\");\n  printf(\"        used = (used & 0x5555) + ((used & 0xaaaa) >> 1);\\n\");\n  printf(\"        used = (used & 0x3333) + ((used & 0xcccc) >> 2);\\n\");\n  printf(\"        used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);\\n\");\n  printf(\"        used = (used & 0x00ff) + (used >> 8);\\n\");\n  printf(\"        return jisx0213_from_ucs_level2_data[summary->indx + used];\\n\");\n  printf(\"      };\\n\");\n  printf(\"    };\\n\");\n  #endif\n  printf(\"  }\\n\");\n  printf(\"  return 0x0000;\\n\");\n  printf(\"}\\n\");\n  printf(\"\\n\");\n  printf(\"#endif /* _JISX0213_H */\\n\");\n}\n\n/* Main program */\n\nint main (int argc, char *argv[])\n{\n  const char* charsetname;\n  const char* name;\n\n  if (argc != 3)\n    exit(1);\n  charsetname = argv[1];\n  name = argv[2];\n\n  output_title(charsetname);\n\n  if (!strcmp(name,\"gb2312\")\n      || !strcmp(name,\"isoir165ext\") || !strcmp(name,\"gb12345ext\")\n      || !strcmp(name,\"jisx0208\") || !strcmp(name,\"jisx0212\"))\n    do_normal(name);\n  else if (!strcmp(name,\"cns11643_1\") || !strcmp(name,\"cns11643_2\")\n           || !strcmp(name,\"cns11643_3\") || !strcmp(name,\"cns11643_4a\")\n           || !strcmp(name,\"cns11643_4b\") || !strcmp(name,\"cns11643_5\")\n           || !strcmp(name,\"cns11643_6\") || !strcmp(name,\"cns11643_7\")\n           || !strcmp(name,\"cns11643_15\"))\n    do_normal_only_charset2uni(name);\n  else if (!strcmp(name,\"cns11643_inv\"))\n    do_cns11643_only_uni2charset(name);\n  else if (!strcmp(name,\"gbkext1\"))\n    do_gbk1_only_charset2uni(name);\n  else if (!strcmp(name,\"gbkext2\"))\n    do_gbk2_only_charset2uni(name);\n  else if (!strcmp(name,\"gbkext_inv\"))\n    do_gbk1_only_uni2charset(name);\n  else if (!strcmp(name,\"cp936ext\") || !strcmp(name,\"gb18030ext\"))\n    do_gbk1(name);\n  else if (!strcmp(name,\"ksc5601\"))\n    do_ksc5601(name);\n  else if (!strcmp(name,\"uhc_1\"))\n    do_uhc_1(name);\n  else if (!strcmp(name,\"uhc_2\"))\n    do_uhc_2(name);\n  else if (!strcmp(name,\"big5\") || !strcmp(name,\"cp950ext\"))\n    do_big5(name);\n  else if (!strcmp(name,\"hkscs1999\") || !strcmp(name,\"hkscs2001\")\n           || !strcmp(name,\"hkscs2004\") || !strcmp(name,\"hkscs2008\"))\n    do_hkscs(name);\n  else if (!strcmp(name,\"johab_hangul\"))\n    do_johab_hangul(name);\n  else if (!strcmp(name,\"cp932ext\"))\n    do_sjis(name);\n  else if (!strcmp(name,\"gb18030uni\"))\n    do_gb18030uni(name);\n  else if (!strcmp(name,\"jisx0213\"))\n    do_jisx0213(name);\n  else\n    exit(1);\n\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/tools/cjk_variants.c",
    "content": "/* Copyright (C) 1999-2002, 2012 Free Software Foundation, Inc.\n   This file is part of the GNU LIBICONV Tools.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program; if not, see <http://www.gnu.org/licenses/>.  */\n\n/*\n * Generates Unicode variants table from Koichi Yasuoka's UniVariants file.\n */\n\n#include <stdio.h>\n#include <stdlib.h>\n\n#define ENTRIES  8176  /* number of lines in UniVariants file */\n#define MAX_PER_ENTRY  10  /* max number of entries per line in file */\n\nint main (int argc, char *argv[])\n{\n  int variants[MAX_PER_ENTRY*ENTRIES];\n  int uni2index[0x10000];\n  int index;\n\n  if (argc != 1)\n    exit(1);\n\n  printf(\"/*\\n\");\n  printf(\" * Copyright (C) 1999-2002 Free Software Foundation, Inc.\\n\");\n  printf(\" * This file is part of the GNU LIBICONV Library.\\n\");\n  printf(\" *\\n\");\n  printf(\" * The GNU LIBICONV Library is free software; you can redistribute it\\n\");\n  printf(\" * and/or modify it under the terms of the GNU Library General Public\\n\");\n  printf(\" * License as published by the Free Software Foundation; either version 2\\n\");\n  printf(\" * of the License, or (at your option) any later version.\\n\");\n  printf(\" *\\n\");\n  printf(\" * The GNU LIBICONV Library is distributed in the hope that it will be\\n\");\n  printf(\" * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of\\n\");\n  printf(\" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\\n\");\n  printf(\" * Library General Public License for more details.\\n\");\n  printf(\" *\\n\");\n  printf(\" * You should have received a copy of the GNU Library General Public\\n\");\n  printf(\" * License along with the GNU LIBICONV Library; see the file COPYING.LIB.\\n\");\n  printf(\" * If not, see <http://www.gnu.org/licenses/>.\\n\");\n  printf(\" */\\n\");\n  printf(\"\\n\");\n  printf(\"/*\\n\");\n  printf(\" * CJK variants table\\n\");\n  printf(\" */\\n\");\n  printf(\"\\n\");\n  {\n    int c;\n    int j;\n    for (j = 0; j < 0x10000; j++)\n      uni2index[j] = -1;\n    index = 0;\n    for (;;) {\n      c = getc(stdin);\n      if (c == EOF)\n        break;\n      if (c == '#') {\n        do { c = getc(stdin); } while (!(c == EOF || c == '\\n'));\n        continue;\n      }\n      ungetc(c,stdin);\n      if (scanf(\"%x\",&j) != 1)\n        exit(1);\n      c = getc(stdin);\n      if (c != '\\t')\n        exit(1);\n      uni2index[j] = index;\n      for (;;) {\n        int i;\n        if (scanf(\"%x\",&i) != 1)\n          exit(1);\n        if (!(i >= 0x3000 && i < 0x3000+0x8000))\n          exit(1);\n        variants[index++] = i-0x3000;\n        c = getc(stdin);\n        if (c != ' ')\n          break;\n      }\n      variants[index-1] |= 0x8000; /* end of list marker */\n      if (c != '\\n')\n        exit(1);\n    }\n  }\n  printf(\"static const unsigned short cjk_variants[%d] = {\",index);\n  {\n    int i;\n    for (i = 0; i < index; i++) {\n      if ((i % 8) == 0)\n        printf(\"\\n \");\n      printf(\" 0x%04x,\",variants[i]);\n    }\n    printf(\"\\n};\\n\");\n  }\n  printf(\"\\n\");\n  printf(\"static const short cjk_variants_indx[0x5200] = {\\n\");\n  {\n    int j;\n    for (j = 0x4e00; j < 0xa000; j++) {\n      if ((j % 0x100) == 0)\n        printf(\"  /* 0x%04x */\\n\", j);\n      if ((j % 8) == 0)\n        printf(\" \");\n      printf(\" %5d,\",uni2index[j]);\n      if ((j % 8) == 7)\n        printf(\"\\n\");\n    }\n    printf(\"};\\n\");\n  }\n  printf(\"\\n\");\n\n  return 0;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/windows/iconv.rc",
    "content": "/* Resources for iconv.exe */\n\n#include <winver.h>\n\nVS_VERSION_INFO VERSIONINFO\n FILEVERSION PACKAGE_VERSION_MAJOR,PACKAGE_VERSION_MINOR,PACKAGE_VERSION_SUBMINOR,0\n PRODUCTVERSION PACKAGE_VERSION_MAJOR,PACKAGE_VERSION_MINOR,PACKAGE_VERSION_SUBMINOR,0\n FILEFLAGSMASK 0x3fL /* VS_FFI_FILEFLAGSMASK */\n#ifdef _DEBUG\n FILEFLAGS 0x1L  /* VS_FF_DEBUG */\n#else\n FILEFLAGS 0x0L\n#endif\n FILEOS 0x10004L  /* VOS_DOS_WINDOWS32 */\n FILETYPE 0x1L  /* VFT_APP */\n FILESUBTYPE 0x0L  /* VFT2_UNKNOWN */\nBEGIN\n    BLOCK \"StringFileInfo\"\n    BEGIN\n        BLOCK \"04090000\"  /* Lang = US English, Charset = ASCII */\n        BEGIN\n            VALUE \"Comments\", \"This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.\\0\"\n            VALUE \"CompanyName\", \"Free Software Foundation\\0\"\n            VALUE \"FileDescription\", \"GPLed iconv for Windows\\0\"\n            VALUE \"FileVersion\", PACKAGE_VERSION_STRING \"\\0\"\n            VALUE \"InternalName\", \"iconv.exe\\0\"\n            VALUE \"LegalCopyright\", \"Copyright (C) 1999-2017\\0\"\n            VALUE \"LegalTrademarks\", \"\\0\"\n            VALUE \"OriginalFilename\", \"iconv.exe\\0\"\n            VALUE \"ProductName\", \"iconv: character set conversion program\\0\"\n            VALUE \"ProductVersion\", PACKAGE_VERSION_STRING \"\\0\"\n        END\n    END\n    BLOCK \"VarFileInfo\"\n    BEGIN\n        VALUE \"Translation\", 0x0409, 0  /* US English, ASCII */\n    END\nEND\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/windows/libiconv.rc",
    "content": "/* Resources for iconv.dll */\n\n#include <winver.h>\n\nVS_VERSION_INFO VERSIONINFO\n FILEVERSION PACKAGE_VERSION_MAJOR,PACKAGE_VERSION_MINOR,PACKAGE_VERSION_SUBMINOR,0\n PRODUCTVERSION PACKAGE_VERSION_MAJOR,PACKAGE_VERSION_MINOR,PACKAGE_VERSION_SUBMINOR,0\n FILEFLAGSMASK 0x3fL /* VS_FFI_FILEFLAGSMASK */\n#ifdef _DEBUG\n FILEFLAGS 0x1L  /* VS_FF_DEBUG */\n#else\n FILEFLAGS 0x0L\n#endif\n FILEOS 0x10004L  /* VOS_DOS_WINDOWS32 */\n FILETYPE 0x2L  /* VFT_DLL */\n FILESUBTYPE 0x0L  /* VFT2_UNKNOWN */\nBEGIN\n    BLOCK \"StringFileInfo\"\n    BEGIN\n        BLOCK \"04090000\"  /* Lang = US English, Charset = ASCII */\n        BEGIN\n            VALUE \"Comments\", \"This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License. You should have received a copy of the GNU Library General Public License along with this library; if not, see <http://www.gnu.org/licenses/>.\\0\"\n            VALUE \"CompanyName\", \"Free Software Foundation\\0\"\n            VALUE \"FileDescription\", \"LGPLed libiconv for Windows\\0\"\n            VALUE \"FileVersion\", PACKAGE_VERSION_STRING \"\\0\"\n            VALUE \"InternalName\", \"iconv.dll\\0\"\n            VALUE \"LegalCopyright\", \"Copyright (C) 1999-2017\\0\"\n            VALUE \"LegalTrademarks\", \"\\0\"\n            VALUE \"OriginalFilename\", \"iconv.dll\\0\"\n            VALUE \"ProductName\", \"libiconv: character set conversion library\\0\"\n            VALUE \"ProductVersion\", PACKAGE_VERSION_STRING \"\\0\"\n        END\n    END\n    BLOCK \"VarFileInfo\"\n    BEGIN\n        VALUE \"Translation\", 0x0409, 0  /* US English, ASCII */\n    END\nEND\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/windows/windres-options",
    "content": "#!/bin/sh\n# Usage: windres-options [--escape] PACKAGE_VERSION\n# Outputs a set of command-line options for 'windres', containing definitions\n# for the preprocessor variables\n#   PACKAGE_VERSION_STRING\n#   PACKAGE_VERSION_MAJOR\n#   PACKAGE_VERSION_MINOR\n#   PACKAGE_VERSION_SUBMINOR\n\nescape=\nif test \"$1\" = \"--escape\"; then\n  escape=yes\n  shift\nfi\nversion=\"$1\" # something like 2.0 or 2.17 or 2.17.3 or 2.17.3-pre3\n\nsed_extract_major='/^[0-9]/{s/^\\([0-9]*\\).*/\\1/p;q;}\ni\\\n0\nq\n'\nsed_extract_minor='/^[0-9][0-9]*[.][0-9]/{s/^[0-9]*[.]\\([0-9]*\\).*/\\1/p;q;}\ni\\\n0\nq\n'\nsed_extract_subminor='/^[0-9][0-9]*[.][0-9][0-9]*[.][0-9]/{s/^[0-9]*[.][0-9]*[.]\\([0-9]*\\).*/\\1/p;q;}\ni\\\n0\nq\n'\n\n{\n  echo \"-DPACKAGE_VERSION_STRING=\\\"${version}\\\"\"\n  echo \"-DPACKAGE_VERSION_MAJOR=\"`echo \"${version}\" | sed -n -e \"$sed_extract_major\"`\n  echo \"-DPACKAGE_VERSION_MINOR=\"`echo \"${version}\" | sed -n -e \"$sed_extract_minor\"`\n  echo \"-DPACKAGE_VERSION_SUBMINOR=\"`echo \"${version}\" | sed -n -e \"$sed_extract_subminor\"`\n} |\n{\n  if test -n \"$escape\"; then\n    sed -e 's,\\([\"\\\\]\\),\\\\\\1,g'\n  else\n    cat\n  fi\n}\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/woe32dll/export.h",
    "content": "/* Exporting symbols from Cygwin shared libraries.\n   Copyright (C) 2006, 2011-2012 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2006.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n/* There are four ways to build shared libraries on Cygwin:\n\n   - Export only functions, no variables.\n     This has the drawback of severely affecting the programming style in use.\n     It does not let the programmer use full ANSI C.  It lets one platform\n     dictate the code style on all platforms.  This is unacceptable.\n\n   - Use the GNU ld --enable-auto-import option.  It is the default on Cygwin\n     since July 2005. But it has three fatal drawbacks:\n       - It produces executables and shared libraries with relocations in the\n         .text segment, defeating the principles of virtual memory.\n       - For some constructs such as\n             extern int var;\n             int * const b = &var;\n         it creates an executable that will give an error at runtime, rather\n         than either a compile-time or link-time error or a working executable.\n         (This is with both gcc and g++.) Whereas this code, not relying on\n         auto-import:\n             extern __declspec (dllimport) int var;\n             int * const b = &var;\n         gives a compile-time error with gcc and works with g++.\n       - It doesn't work in some cases (references to a member field of an\n         exported struct variable, or to a particular element of an exported\n         array variable), requiring code modifications.  Again one platform\n         dictates code modifications on all platforms.\n\n     This is unacceptable.  Therefore we disable this option, through the\n     woe32-dll.m4 autoconf macro.\n\n   - Define a macro that expands to  __declspec(dllexport)  when building\n     the library and to  __declspec(dllimport)  when building code outside\n     the library, and use it in all header files of the library.\n     This is acceptable if\n       1. the header files are unique to this library (not shared with\n          other packages), and\n       2. the library sources are contained in one directory, making it easy\n          to define a -DBUILDING_LIBXYZ flag for the library.\n     Example:\n         #ifdef BUILDING_LIBASPRINTF\n         #define LIBASPRINTF_DLL_EXPORTED __declspec(dllexport)\n         #else\n         #define LIBASPRINTF_DLL_EXPORTED __declspec(dllimport)\n         #endif\n\n     We use this technique for the libintl and the libasprintf libraries.\n\n   - Define a macro that expands to  __declspec(dllimport)  always, and use\n     it in all header files of the library.  Use an explicit export list for\n     the library.\n     This is acceptable if\n       1. the programming language is not C++ (because the name mangling of\n          static struct/class fields and of variables in namespaces makes it\n          hard to maintain an export list).\n     The benefit of this approach is that the partitioning of the source files\n     into libraries (which source file goes into which library) does not\n     affect the source code; only the Makefiles reflect it.\n     The performance loss due to the unnecessary indirection for references\n     to variables from within the library defining the variable is acceptable.\n\n     We use this technique for libgettextlib (because it contains many gnulib\n     modules) and for libgettextsrc (because this makes it easy to move source\n     code from an msg* program to libgettextsrc).  The macro is called\n     DLL_VARIABLE.\n\n   This file allows building an explicit export list.  You can either\n     - specify the variables to be exported, and use the GNU ld option\n       --export-all-symbols to export all function names, or\n     - specify the variables and functions to be exported explicitly.\n\n   Note: --export-all-symbols is the default when no other symbol is explicitly\n   exported.  This means, the use of an explicit export on the variables has\n   the effect of no longer exporting the functions! - until the option\n   --export-all-symbols is used.\n\n   See <http://www.haible.de/bruno/woe32dll.html> for more details.  */\n\n#if defined __GNUC__ /* GCC compiler, GNU toolchain */\n\n /* IMP(x) is a symbol that contains the address of x.  */\n# define IMP(x) _imp__##x\n\n /* Ensure that the variable x is exported from the library, and that a\n    pseudo-variable IMP(x) is available.  */\n# define VARIABLE(x) \\\n /* Export x without redefining x.  This code was found by compiling a  \\\n    snippet:                                                            \\\n      extern __declspec(dllexport) int x; int x = 42;  */               \\\n asm (\".section .drectve\\n\");                                           \\\n asm (\".ascii \\\" -export:\" #x \",data\\\"\\n\");                             \\\n asm (\".data\\n\");                                                       \\\n /* Allocate a pseudo-variable IMP(x).  */                              \\\n extern int x;                                                          \\\n void * IMP(x) = &x;\n\n#else /* non-GNU compiler, non-GNU toolchain */\n\n# define VARIABLE(x) /* nothing */\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/libiconv-1.15/woe32dll/iconv-exports.c",
    "content": "/* List of exported symbols of libiconv on Cygwin.\n   Copyright (C) 2006 Free Software Foundation, Inc.\n   Written by Bruno Haible <bruno@clisp.org>, 2006.\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation; either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\n#include \"woe32dll/export.h\"\n\nVARIABLE(_libiconv_version)\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/Makefile.am.inc",
    "content": "lib_LTLIBRARIES += zbar/libzbar.la\nzbar_libzbar_la_CPPFLAGS = -I$(srcdir)/zbar $(AM_CPPFLAGS)\nzbar_libzbar_la_LDFLAGS = -no-undefined -version-info $(LIB_VERSION) \\\n    -export-symbols-regex \"^(zbar|_zbar.*_error)_.*\" $(AM_LDFLAGS)\nzbar_libzbar_la_LIBADD = $(LTLIBICONV)\n\nzbar_libzbar_la_SOURCES = zbar/debug.h zbar/config.c \\\n    zbar/error.h zbar/error.c zbar/symbol.h zbar/symbol.c \\\n    zbar/image.h zbar/image.c zbar/convert.c \\\n    zbar/processor.c zbar/processor.h zbar/processor/lock.c \\\n    zbar/refcnt.h zbar/refcnt.c zbar/timer.h zbar/mutex.h \\\n    zbar/event.h zbar/thread.h \\\n    zbar/window.h zbar/window.c zbar/video.h zbar/video.c \\\n    zbar/img_scanner.h zbar/img_scanner.c zbar/scanner.c \\\n    zbar/decoder.h zbar/decoder.c\n\nEXTRA_zbar_libzbar_la_SOURCES = zbar/svg.h zbar/svg.c\n\nif ENABLE_EAN\nzbar_libzbar_la_SOURCES += zbar/decoder/ean.h zbar/decoder/ean.c\nendif\nif ENABLE_DATABAR\nzbar_libzbar_la_SOURCES += zbar/decoder/databar.h zbar/decoder/databar.c\nendif\nif ENABLE_CODE128\nzbar_libzbar_la_SOURCES += zbar/decoder/code128.h zbar/decoder/code128.c\nendif\nif ENABLE_CODE93\nzbar_libzbar_la_SOURCES += zbar/decoder/code93.h zbar/decoder/code93.c\nendif\nif ENABLE_CODE39\nzbar_libzbar_la_SOURCES += zbar/decoder/code39.h zbar/decoder/code39.c\nendif\nif ENABLE_CODABAR\nzbar_libzbar_la_SOURCES += zbar/decoder/codabar.h zbar/decoder/codabar.c\nendif\nif ENABLE_I25\nzbar_libzbar_la_SOURCES += zbar/decoder/i25.h zbar/decoder/i25.c\nendif\nif ENABLE_PDF417\nzbar_libzbar_la_SOURCES += zbar/decoder/pdf417.h zbar/decoder/pdf417.c \\\n    zbar/decoder/pdf417_hash.h\nendif\nif ENABLE_QRCODE\nzbar_libzbar_la_SOURCES += zbar/qrcode.h \\\n    zbar/decoder/qr_finder.h zbar/decoder/qr_finder.c \\\n    zbar/qrcode/qrdec.h zbar/qrcode/qrdec.c zbar/qrcode/qrdectxt.c \\\n    zbar/qrcode/rs.h zbar/qrcode/rs.c \\\n    zbar/qrcode/isaac.h zbar/qrcode/isaac.c \\\n    zbar/qrcode/bch15_5.h zbar/qrcode/bch15_5.c \\\n    zbar/qrcode/binarize.h zbar/qrcode/binarize.c \\\n    zbar/qrcode/util.h zbar/qrcode/util.c\nendif\n\nif WIN32\nzbar_libzbar_la_SOURCES += zbar/processor/win.c zbar/libzbar.rc\nzbar_libzbar_la_CPPFLAGS += -mthreads\nzbar_libzbar_la_LDFLAGS += -mthreads\n# FIXME broken\nzbar_libzbar_la_LIBADD += zbar/libzbar-rc.lo\nelse\nzbar_libzbar_la_SOURCES += zbar/processor/posix.h zbar/processor/posix.c\nendif\n\nif HAVE_V4L2\nzbar_libzbar_la_SOURCES += zbar/video/v4l.c zbar/video/v4l2.c\nendif\nif HAVE_V4L1\nif !HAVE_V4L2\nzbar_libzbar_la_SOURCES += zbar/video/v4l.c\nendif\nzbar_libzbar_la_SOURCES += zbar/video/v4l1.c\nendif\nif WIN32\nif HAVE_VIDEO\nzbar_libzbar_la_SOURCES += zbar/video/vfw.c\nzbar_libzbar_la_LIBADD += -lvfw32\nendif\nendif\nif !HAVE_VIDEO\nzbar_libzbar_la_SOURCES += zbar/video/null.c\nendif\n\nif HAVE_JPEG\nzbar_libzbar_la_SOURCES += zbar/jpeg.c\nendif\n\nif HAVE_X\nzbar_libzbar_la_SOURCES +=  zbar/processor/x.c \\\n    zbar/window/x.h zbar/window/x.c zbar/window/ximage.c\nzbar_libzbar_la_CPPFLAGS += $(X_CFLAGS)\nzbar_libzbar_la_LDFLAGS += $(X_LIBS)\nzbar_libzbar_la_LIBADD += $(X_PRE_LIBS) -lX11 $(X_EXTRA_LIBS)\nif HAVE_XV\nzbar_libzbar_la_SOURCES += zbar/window/xv.c\nzbar_libzbar_la_LIBADD += $(XV_LIBS)\nendif\nelse\nif WIN32\nzbar_libzbar_la_SOURCES += zbar/window/win.h zbar/window/win.c \\\n    zbar/window/dib.c\n# zbar/window/vfw.c -lvfw32\nzbar_libzbar_la_LIBADD += -lgdi32 -lwinmm\nelse\nzbar_libzbar_la_SOURCES += zbar/processor/null.c zbar/window/null.c\nendif\nendif\n\nzbar_libzbar_la_LDFLAGS += $(AM_LDFLAGS)\nzbar_libzbar_la_LIBADD += $(AM_LIBADD)\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/config.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <stdlib.h>     /* strtol */\n#include <string.h>     /* strchr, strncmp, strlen */\n#ifdef HAVE_ERRNO_H\n# include <errno.h>\n#endif\n\n#include <zbar.h>\n\nint zbar_parse_config (const char *cfgstr,\n                       zbar_symbol_type_t *sym,\n                       zbar_config_t *cfg,\n                       int *val)\n{\n    const char *dot, *eq;\n    int len;\n    char negate;\n    if(!cfgstr)\n        return(1);\n\n    dot = strchr(cfgstr, '.');\n    if(dot) {\n        int len = dot - cfgstr;\n        if(!len || (len == 1 && !strncmp(cfgstr, \"*\", len)))\n            *sym = 0;\n        else if(len < 2)\n            return(1);\n        else if(!strncmp(cfgstr, \"qrcode\", len))\n            *sym = ZBAR_QRCODE;\n        else if(!strncmp(cfgstr, \"db\", len))\n            *sym = ZBAR_DATABAR;\n        else if(len < 3)\n            return(1);\n        else if(!strncmp(cfgstr, \"upca\", len))\n            *sym = ZBAR_UPCA;\n        else if(!strncmp(cfgstr, \"upce\", len))\n            *sym = ZBAR_UPCE;\n        else if(!strncmp(cfgstr, \"ean13\", len))\n            *sym = ZBAR_EAN13;\n        else if(!strncmp(cfgstr, \"ean8\", len))\n            *sym = ZBAR_EAN8;\n        else if(!strncmp(cfgstr, \"ean5\", len))\n            *sym = ZBAR_EAN5;\n        else if(!strncmp(cfgstr, \"ean2\", len))\n            *sym = ZBAR_EAN2;\n        else if(!strncmp(cfgstr, \"composite\", len))\n            *sym = ZBAR_COMPOSITE;\n        else if(!strncmp(cfgstr, \"i25\", len))\n            *sym = ZBAR_I25;\n        else if(len < 4)\n            return(1);\n        else if(!strncmp(cfgstr, \"scanner\", len))\n            *sym = ZBAR_PARTIAL; /* FIXME lame */\n        else if(!strncmp(cfgstr, \"isbn13\", len))\n            *sym = ZBAR_ISBN13;\n        else if(!strncmp(cfgstr, \"isbn10\", len))\n            *sym = ZBAR_ISBN10;\n        else if(!strncmp(cfgstr, \"db-exp\", len))\n            *sym = ZBAR_DATABAR_EXP;\n        else if(!strncmp(cfgstr, \"codabar\", len))\n            *sym = ZBAR_CODABAR;\n        else if(len < 6)\n            return(1);\n        else if(!strncmp(cfgstr, \"code93\", len))\n            *sym = ZBAR_CODE93;\n        else if(!strncmp(cfgstr, \"code39\", len))\n            *sym = ZBAR_CODE39;\n        else if(!strncmp(cfgstr, \"pdf417\", len))\n            *sym = ZBAR_PDF417;\n        else if(len < 7)\n            return(1);\n        else if(!strncmp(cfgstr, \"code128\", len))\n            *sym = ZBAR_CODE128;\n        else if(!strncmp(cfgstr, \"databar\", len))\n            *sym = ZBAR_DATABAR;\n        else if(!strncmp(cfgstr, \"databar-exp\", len))\n            *sym = ZBAR_DATABAR_EXP;\n        else\n            return(1);\n        cfgstr = dot + 1;\n    }\n    else\n        *sym = 0;\n\n    len = strlen(cfgstr);\n    eq = strchr(cfgstr, '=');\n    if(eq)\n        len = eq - cfgstr;\n    else\n        *val = 1;  /* handle this here so we can override later */\n    negate = 0;\n\n    if(len > 3 && !strncmp(cfgstr, \"no-\", 3)) {\n        negate = 1;\n        cfgstr += 3;\n        len -= 3;\n    }\n\n    if(len < 1)\n        return(1);\n    else if(!strncmp(cfgstr, \"y-density\", len))\n        *cfg = ZBAR_CFG_Y_DENSITY;\n    else if(!strncmp(cfgstr, \"x-density\", len))\n        *cfg = ZBAR_CFG_X_DENSITY;\n    else if(len < 2)\n        return(1);\n    else if(!strncmp(cfgstr, \"enable\", len))\n        *cfg = ZBAR_CFG_ENABLE;\n    else if(len < 3)\n        return(1);\n    else if(!strncmp(cfgstr, \"disable\", len)) {\n        *cfg = ZBAR_CFG_ENABLE;\n        negate = !negate; /* no-disable ?!? */\n    }\n    else if(!strncmp(cfgstr, \"min-length\", len))\n        *cfg = ZBAR_CFG_MIN_LEN;\n    else if(!strncmp(cfgstr, \"max-length\", len))\n        *cfg = ZBAR_CFG_MAX_LEN;\n    else if(!strncmp(cfgstr, \"ascii\", len))\n        *cfg = ZBAR_CFG_ASCII;\n    else if(!strncmp(cfgstr, \"add-check\", len))\n        *cfg = ZBAR_CFG_ADD_CHECK;\n    else if(!strncmp(cfgstr, \"emit-check\", len))\n        *cfg = ZBAR_CFG_EMIT_CHECK;\n    else if(!strncmp(cfgstr, \"uncertainty\", len))\n        *cfg = ZBAR_CFG_UNCERTAINTY;\n    else if(!strncmp(cfgstr, \"position\", len))\n        *cfg = ZBAR_CFG_POSITION;\n    else \n        return(1);\n\n    if(eq) {\n#ifdef HAVE_ERRNO_H\n        errno = 0;\n#endif\n        *val = strtol(eq + 1, NULL, 0);\n#ifdef HAVE_ERRNO_H\n        if(errno)\n            return(1);\n#endif\n    }\n    if(negate)\n        *val = !*val;\n\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/convert.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"image.h\"\n#include \"video.h\"\n#include \"window.h\"\n\n/* pack bit size and location offset of a component into one byte\n */\n#define RGB_BITS(off, size) ((((8 - (size)) & 0x7) << 5) | ((off) & 0x1f))\n\ntypedef void (conversion_handler_t)(zbar_image_t*,\n                                    const zbar_format_def_t*,\n                                    const zbar_image_t*,\n                                    const zbar_format_def_t*);\n\ntypedef struct conversion_def_s {\n    int cost;                           /* conversion \"badness\" */\n    conversion_handler_t *func;         /* function that accomplishes it */\n} conversion_def_t;\n\n\n/* NULL terminated list of known formats, in order of preference\n * (NB Cr=V Cb=U)\n */\nconst uint32_t _zbar_formats[] = {\n\n    /* planar YUV formats */\n    fourcc('4','2','2','P'), /* FIXME also YV16? */\n    fourcc('I','4','2','0'),\n    fourcc('Y','U','1','2'), /* FIXME also IYUV? */\n    fourcc('Y','V','1','2'),\n    fourcc('4','1','1','P'),\n\n    /* planar Y + packed UV plane */\n    fourcc('N','V','1','2'),\n    fourcc('N','V','2','1'),\n\n    /* packed YUV formats */\n    fourcc('Y','U','Y','V'),\n    fourcc('U','Y','V','Y'),\n    fourcc('Y','U','Y','2'), /* FIXME add YVYU */\n    fourcc('Y','U','V','4'), /* FIXME where is this from? */\n\n    /* packed rgb formats */\n    fourcc('R','G','B','3'),\n    fourcc( 3 , 0 , 0 , 0 ),\n    fourcc('B','G','R','3'),\n    fourcc('R','G','B','4'),\n    fourcc('B','G','R','4'),\n\n    fourcc('R','G','B','P'),\n    fourcc('R','G','B','O'),\n    fourcc('R','G','B','R'),\n    fourcc('R','G','B','Q'),\n\n    fourcc('Y','U','V','9'),\n    fourcc('Y','V','U','9'),\n\n    /* basic grayscale format */\n    fourcc('G','R','E','Y'),\n    fourcc('Y','8','0','0'),\n    fourcc('Y','8',' ',' '),\n    fourcc('Y','8', 0 , 0 ),\n\n    /* low quality RGB formats */\n    fourcc('R','G','B','1'),\n    fourcc('R','4','4','4'),\n    fourcc('B','A','8','1'),\n\n    /* unsupported packed YUV formats */\n    fourcc('Y','4','1','P'),\n    fourcc('Y','4','4','4'),\n    fourcc('Y','U','V','O'),\n    fourcc('H','M','1','2'),\n\n    /* unsupported packed RGB format */\n    fourcc('H','I','2','4'),\n\n    /* unsupported compressed formats */\n    fourcc('J','P','E','G'),\n    fourcc('M','J','P','G'),\n    fourcc('M','P','E','G'),\n\n    /* terminator */\n    0\n};\n\nconst int _zbar_num_formats = sizeof(_zbar_formats) / sizeof(uint32_t);\n\n/* format definitions */\nstatic const zbar_format_def_t format_defs[] = {\n\n    { fourcc('R','G','B','4'), ZBAR_FMT_RGB_PACKED,\n        { { 4, RGB_BITS(8, 8), RGB_BITS(16, 8), RGB_BITS(24, 8) } } },\n    { fourcc('B','G','R','1'), ZBAR_FMT_RGB_PACKED,\n        { { 1, RGB_BITS(0, 3), RGB_BITS(3, 3), RGB_BITS(6, 2) } } },\n    { fourcc('4','2','2','P'), ZBAR_FMT_YUV_PLANAR, { { 1, 0, 0 /*UV*/ } } },\n    { fourcc('Y','8','0','0'), ZBAR_FMT_GRAY, },\n    { fourcc('Y','U','Y','2'), ZBAR_FMT_YUV_PACKED,\n        { { 1, 0, 0, /*YUYV*/ } } },\n    { fourcc('J','P','E','G'), ZBAR_FMT_JPEG, },\n    { fourcc('Y','V','Y','U'), ZBAR_FMT_YUV_PACKED,\n        { { 1, 0, 1, /*YVYU*/ } } },\n    { fourcc('Y','8', 0 , 0 ), ZBAR_FMT_GRAY, },\n    { fourcc('N','V','2','1'), ZBAR_FMT_YUV_NV,     { { 1, 1, 1 /*VU*/ } } },\n    { fourcc('N','V','1','2'), ZBAR_FMT_YUV_NV,     { { 1, 1, 0 /*UV*/ } } },\n    { fourcc('B','G','R','3'), ZBAR_FMT_RGB_PACKED,\n        { { 3, RGB_BITS(16, 8), RGB_BITS(8, 8), RGB_BITS(0, 8) } } },\n    { fourcc('Y','V','U','9'), ZBAR_FMT_YUV_PLANAR, { { 2, 2, 1 /*VU*/ } } },\n    { fourcc('R','G','B','O'), ZBAR_FMT_RGB_PACKED,\n        { { 2, RGB_BITS(10, 5), RGB_BITS(5, 5), RGB_BITS(0, 5) } } },\n    { fourcc('R','G','B','Q'), ZBAR_FMT_RGB_PACKED,\n        { { 2, RGB_BITS(2, 5), RGB_BITS(13, 5), RGB_BITS(8, 5) } } },\n    { fourcc('G','R','E','Y'), ZBAR_FMT_GRAY, },\n    { fourcc( 3 , 0 , 0 , 0 ), ZBAR_FMT_RGB_PACKED,\n        { { 4, RGB_BITS(16, 8), RGB_BITS(8, 8), RGB_BITS(0, 8) } } },\n    { fourcc('Y','8',' ',' '), ZBAR_FMT_GRAY, },\n    { fourcc('I','4','2','0'), ZBAR_FMT_YUV_PLANAR, { { 1, 1, 0 /*UV*/ } } },\n    { fourcc('R','G','B','1'), ZBAR_FMT_RGB_PACKED,\n        { { 1, RGB_BITS(5, 3), RGB_BITS(2, 3), RGB_BITS(0, 2) } } },\n    { fourcc('Y','U','1','2'), ZBAR_FMT_YUV_PLANAR, { { 1, 1, 0 /*UV*/ } } },\n    { fourcc('Y','V','1','2'), ZBAR_FMT_YUV_PLANAR, { { 1, 1, 1 /*VU*/ } } },\n    { fourcc('R','G','B','3'), ZBAR_FMT_RGB_PACKED,\n        { { 3, RGB_BITS(0, 8), RGB_BITS(8, 8), RGB_BITS(16, 8) } } },\n    { fourcc('R','4','4','4'), ZBAR_FMT_RGB_PACKED,\n        { { 2, RGB_BITS(8, 4), RGB_BITS(4, 4), RGB_BITS(0, 4) } } },\n    { fourcc('B','G','R','4'), ZBAR_FMT_RGB_PACKED,\n        { { 4, RGB_BITS(16, 8), RGB_BITS(8, 8), RGB_BITS(0, 8) } } },\n    { fourcc('Y','U','V','9'), ZBAR_FMT_YUV_PLANAR, { { 2, 2, 0 /*UV*/ } } },\n    { fourcc('M','J','P','G'), ZBAR_FMT_JPEG, },\n    { fourcc('4','1','1','P'), ZBAR_FMT_YUV_PLANAR, { { 2, 0, 0 /*UV*/ } } },\n    { fourcc('R','G','B','P'), ZBAR_FMT_RGB_PACKED,\n        { { 2, RGB_BITS(11, 5), RGB_BITS(5, 6), RGB_BITS(0, 5) } } },\n    { fourcc('R','G','B','R'), ZBAR_FMT_RGB_PACKED,\n        { { 2, RGB_BITS(3, 5), RGB_BITS(13, 6), RGB_BITS(8, 5) } } },\n    { fourcc('Y','U','Y','V'), ZBAR_FMT_YUV_PACKED,\n        { { 1, 0, 0, /*YUYV*/ } } },\n    { fourcc('U','Y','V','Y'), ZBAR_FMT_YUV_PACKED,\n        { { 1, 0, 2, /*UYVY*/ } } },\n};\n\nstatic const int num_format_defs =\n    sizeof(format_defs) / sizeof(zbar_format_def_t);\n\n#ifdef DEBUG_CONVERT\nstatic int intsort (const void *a,\n                    const void *b)\n{\n    return(*(uint32_t*)a - *(uint32_t*)b);\n}\n#endif\n\n/* verify that format list is in required sort order */\nstatic inline int verify_format_sort (void)\n{\n    int i;\n    for(i = 0; i < num_format_defs; i++) {\n        int j = i * 2 + 1;\n        if((j < num_format_defs &&\n            format_defs[i].format < format_defs[j].format) ||\n           (j + 1 < num_format_defs &&\n            format_defs[j + 1].format < format_defs[i].format))\n            break;\n    }\n    if(i == num_format_defs)\n        return(0);\n\n    /* spew correct order for fix */\n    fprintf(stderr, \"ERROR: image format list is not sorted!?\\n\");\n\n#ifdef DEBUG_CONVERT\n    assert(num_format_defs);\n    uint32_t sorted[num_format_defs];\n    uint32_t ordered[num_format_defs];\n    for(i = 0; i < num_format_defs; i++)\n        sorted[i] = format_defs[i].format;\n    qsort(sorted, num_format_defs, sizeof(uint32_t), intsort);\n    for(i = 0; i < num_format_defs; i = i << 1 | 1);\n    i = (i - 1) / 2;\n    ordered[i] = sorted[0];\n    int j, k;\n    for(j = 1; j < num_format_defs; j++) {\n        k = i * 2 + 2;\n        if(k < num_format_defs) {\n            i = k;\n            for(k = k * 2 + 1; k < num_format_defs; k = k * 2 + 1)\n                i = k;\n        }\n        else {\n            for(k = (i - 1) / 2; i != k * 2 + 1; k = (i - 1) / 2) {\n                assert(i);\n                i = k;\n            }\n            i = k;\n        }\n        ordered[i] = sorted[j];\n    }\n    fprintf(stderr, \"correct sort order is:\");\n    for(i = 0; i < num_format_defs; i++)\n        fprintf(stderr, \" %4.4s\", (char*)&ordered[i]);\n    fprintf(stderr, \"\\n\");\n#endif\n    return(-1);\n}\n\nstatic inline void uv_round (zbar_image_t *img,\n                             const zbar_format_def_t *fmt)\n{\n    img->width >>= fmt->p.yuv.xsub2;\n    img->width <<= fmt->p.yuv.xsub2;\n    img->height >>= fmt->p.yuv.ysub2;\n    img->height <<= fmt->p.yuv.ysub2;\n}\n\nstatic inline void uv_roundup (zbar_image_t *img,\n                               const zbar_format_def_t *fmt)\n{\n    unsigned xmask, ymask;\n    if(fmt->group == ZBAR_FMT_GRAY)\n        return;\n    xmask = (1 << fmt->p.yuv.xsub2) - 1;\n    if(img->width & xmask)\n        img->width = (img->width + xmask) & ~xmask;\n    ymask = (1 << fmt->p.yuv.ysub2) - 1;\n    if(img->height & ymask)\n        img->height = (img->height + ymask) & ~ymask;\n}\n\nstatic inline unsigned long uvp_size (const zbar_image_t *img,\n                                      const zbar_format_def_t *fmt)\n{\n    if(fmt->group == ZBAR_FMT_GRAY)\n        return(0);\n    return((img->width >> fmt->p.yuv.xsub2) *\n           (img->height >> fmt->p.yuv.ysub2));\n}\n\nstatic inline uint32_t convert_read_rgb (const uint8_t *srcp,\n                                         int bpp)\n{\n    uint32_t p;\n    if(bpp == 3) {\n        p = *srcp;\n        p |= *(srcp + 1) << 8;\n        p |= *(srcp + 2) << 16;\n    }\n    else if(bpp == 4)\n        p = *((uint32_t*)(srcp));\n    else if(bpp == 2)\n        p = *((uint16_t*)(srcp));\n    else\n        p = *srcp;\n    return(p);\n}\n\nstatic inline void convert_write_rgb (uint8_t *dstp,\n                                      uint32_t p,\n                                      int bpp)\n{\n    if(bpp == 3) {\n        *dstp = p & 0xff;\n        *(dstp + 1) = (p >> 8) & 0xff;\n        *(dstp + 2) = (p >> 16) & 0xff;\n    }\n    else if(bpp == 4)\n        *((uint32_t*)dstp) = p;\n    else if(bpp == 2)\n        *((uint16_t*)dstp) = p;\n    else\n        *dstp = p;\n}\n\n/* cleanup linked image by unrefing */\nstatic void cleanup_ref (zbar_image_t *img)\n{\n    if(img->next)\n        _zbar_image_refcnt(img->next, -1);\n}\n\n/* resize y plane, drop extra columns/rows from the right/bottom,\n * or duplicate last column/row to pad missing data\n */\nstatic inline void convert_y_resize (zbar_image_t *dst,\n                                     const zbar_format_def_t *dstfmt,\n                                     const zbar_image_t *src,\n                                     const zbar_format_def_t *srcfmt,\n                                     size_t n)\n{\n    uint8_t *psrc, *pdst;\n    unsigned width, height, xpad, y;\n\n    if(dst->width == src->width && dst->height == src->height) {\n        memcpy((void*)dst->data, src->data, n);\n        return;\n    }\n    psrc = (void*)src->data;\n    pdst = (void*)dst->data;\n    width = (dst->width > src->width) ? src->width : dst->width;\n    xpad = (dst->width > src->width) ? dst->width - src->width : 0;\n    height = (dst->height > src->height) ? src->height : dst->height;\n    for(y = 0; y < height; y++) {\n        memcpy(pdst, psrc, width);\n        pdst += width;\n        psrc += src->width;\n        if(xpad) {\n            memset(pdst, *(psrc - 1), xpad);\n            pdst += xpad;\n        }\n    }\n    psrc -= src->width;\n    for(; y < dst->height; y++) {\n        memcpy(pdst, psrc, width);\n        pdst += width;\n        if(xpad) {\n            memset(pdst, *(psrc - 1), xpad);\n            pdst += xpad;\n        }\n    }\n}\n\n/* make new image w/reference to the same image data */\nstatic void convert_copy (zbar_image_t *dst,\n                          const zbar_format_def_t *dstfmt,\n                          const zbar_image_t *src,\n                          const zbar_format_def_t *srcfmt)\n{\n    if(src->width == dst->width &&\n       src->height == dst->height) {\n        zbar_image_t *s = (zbar_image_t*)src;\n        dst->data = src->data;\n        dst->datalen = src->datalen;\n        dst->cleanup = cleanup_ref;\n        dst->next = s;\n        _zbar_image_refcnt(s, 1);\n    }\n    else\n        /* NB only for GRAY/YUV_PLANAR formats */\n        convert_y_resize(dst, dstfmt, src, srcfmt, dst->width * dst->height);\n}\n\n/* append neutral UV plane to grayscale image */\nstatic void convert_uvp_append (zbar_image_t *dst,\n                                const zbar_format_def_t *dstfmt,\n                                const zbar_image_t *src,\n                                const zbar_format_def_t *srcfmt)\n{\n    unsigned long n;\n    uv_roundup(dst, dstfmt);\n    dst->datalen = uvp_size(dst, dstfmt) * 2;\n    n = dst->width * dst->height;\n    dst->datalen += n;\n    assert(src->datalen >= src->width * src->height);\n    zprintf(24, \"dst=%dx%d (%lx) %lx src=%dx%d %lx\\n\",\n            dst->width, dst->height, n, dst->datalen,\n            src->width, src->height, src->datalen);\n    dst->data = malloc(dst->datalen);\n    if(!dst->data) return;\n    convert_y_resize(dst, dstfmt, src, srcfmt, n);\n    memset((uint8_t*)dst->data + n, 0x80, dst->datalen - n);\n}\n\n/* interleave YUV planes into packed YUV */\nstatic void convert_yuv_pack (zbar_image_t *dst,\n                              const zbar_format_def_t *dstfmt,\n                              const zbar_image_t *src,\n                              const zbar_format_def_t *srcfmt)\n{\n    unsigned long srcm, srcn;\n    uint8_t flags, *srcy, *dstp;\n    const uint8_t *srcu, *srcv;\n    unsigned srcl, xmask, ymask, x, y;\n    uint8_t y0 = 0, y1 = 0, u = 0x80, v = 0x80;\n\n    uv_roundup(dst, dstfmt);\n    dst->datalen = dst->width * dst->height + uvp_size(dst, dstfmt) * 2;\n    dst->data = malloc(dst->datalen);\n    if(!dst->data) return;\n    dstp = (void*)dst->data;\n\n    srcm = uvp_size(src, srcfmt);\n    srcn = src->width * src->height;\n    assert(src->datalen >= srcn + 2 * srcn);\n    flags = dstfmt->p.yuv.packorder ^ srcfmt->p.yuv.packorder;\n    srcy = (void*)src->data;\n    if(flags & 1) {\n        srcv = (uint8_t*)src->data + srcn;\n        srcu = srcv + srcm;\n    } else {\n        srcu = (uint8_t*)src->data + srcn;\n        srcv = srcu + srcm;\n    }\n    flags = dstfmt->p.yuv.packorder & 2;\n\n    srcl = src->width >> srcfmt->p.yuv.xsub2;\n    xmask = (1 << srcfmt->p.yuv.xsub2) - 1;\n    ymask = (1 << srcfmt->p.yuv.ysub2) - 1;\n    for(y = 0; y < dst->height; y++) {\n        if(y >= src->height) {\n            srcy -= src->width;\n            srcu -= srcl;  srcv -= srcl;\n        }\n        else if(y & ymask) {\n            srcu -= srcl;  srcv -= srcl;\n        }\n        for(x = 0; x < dst->width; x += 2) {\n            if(x < src->width) {\n                y0 = *(srcy++);  y1 = *(srcy++);\n                if(!(x & xmask)) {\n                    u = *(srcu++);  v = *(srcv++);\n                }\n            }\n            if(flags) {\n                *(dstp++) = u;  *(dstp++) = y0;\n                *(dstp++) = v;  *(dstp++) = y1;\n            } else {\n                *(dstp++) = y0;  *(dstp++) = u;\n                *(dstp++) = y1;  *(dstp++) = v;\n            }\n        }\n        for(; x < src->width; x += 2) {\n            srcy += 2;\n            if(!(x & xmask)) {\n                srcu++;  srcv++;\n            }\n        }\n    }\n}\n\n/* split packed YUV samples and join into YUV planes\n * FIXME currently ignores color and grayscales the image\n */\nstatic void convert_yuv_unpack (zbar_image_t *dst,\n                                const zbar_format_def_t *dstfmt,\n                                const zbar_image_t *src,\n                                const zbar_format_def_t *srcfmt)\n{\n    unsigned long dstn, dstm2;\n    uint8_t *dsty, flags;\n    const uint8_t *srcp;\n    unsigned srcl, x, y;\n    uint8_t y0 = 0, y1 = 0;\n\n    uv_roundup(dst, dstfmt);\n    dstn = dst->width * dst->height;\n    dstm2 = uvp_size(dst, dstfmt) * 2;\n    dst->datalen = dstn + dstm2;\n    dst->data = malloc(dst->datalen);\n    if(!dst->data) return;\n    if(dstm2)\n        memset((uint8_t*)dst->data + dstn, 0x80, dstm2);\n    dsty = (uint8_t*)dst->data;\n\n    flags = srcfmt->p.yuv.packorder ^ dstfmt->p.yuv.packorder;\n    flags &= 2;\n    srcp = src->data;\n    if(flags)\n        srcp++;\n\n    srcl = src->width + (src->width >> srcfmt->p.yuv.xsub2);\n    for(y = 0; y < dst->height; y++) {\n        if(y >= src->height)\n            srcp -= srcl;\n        for(x = 0; x < dst->width; x += 2) {\n            if(x < src->width) {\n                y0 = *(srcp++);  srcp++;\n                y1 = *(srcp++);  srcp++;\n            }\n            *(dsty++) = y0;\n            *(dsty++) = y1;\n        }\n        if(x < src->width)\n            srcp += (src->width - x) * 2;\n    }\n}\n\n/* resample and resize UV plane(s)\n * FIXME currently ignores color and grayscales the image\n */\nstatic void convert_uvp_resample (zbar_image_t *dst,\n                                  const zbar_format_def_t *dstfmt,\n                                  const zbar_image_t *src,\n                                  const zbar_format_def_t *srcfmt)\n{\n    unsigned long dstn, dstm2;\n    uv_roundup(dst, dstfmt);\n    dstn = dst->width * dst->height;\n    dstm2 = uvp_size(dst, dstfmt) * 2;\n    dst->datalen = dstn + dstm2;\n    dst->data = malloc(dst->datalen);\n    if(!dst->data) return;\n    convert_y_resize(dst, dstfmt, src, srcfmt, dstn);\n    if(dstm2)\n        memset((uint8_t*)dst->data + dstn, 0x80, dstm2);\n}\n\n/* rearrange interleaved UV componets */\nstatic void convert_uv_resample (zbar_image_t *dst,\n                                 const zbar_format_def_t *dstfmt,\n                                 const zbar_image_t *src,\n                                 const zbar_format_def_t *srcfmt)\n{\n    unsigned long dstn;\n    uint8_t *dstp, flags;\n    const uint8_t *srcp;\n    unsigned srcl, x, y;\n    uint8_t y0 = 0, y1 = 0, u = 0x80, v = 0x80;\n\n    uv_roundup(dst, dstfmt);\n    dstn = dst->width * dst->height;\n    dst->datalen = dstn + uvp_size(dst, dstfmt) * 2;\n    dst->data = malloc(dst->datalen);\n    if(!dst->data) return;\n    dstp = (void*)dst->data;\n\n    flags = (srcfmt->p.yuv.packorder ^ dstfmt->p.yuv.packorder) & 1;\n    srcp = src->data;\n\n    srcl = src->width + (src->width >> srcfmt->p.yuv.xsub2);\n    for(y = 0; y < dst->height; y++) {\n        if(y >= src->height)\n            srcp -= srcl;\n        for(x = 0; x < dst->width; x += 2) {\n            if(x < src->width) {\n                if(!(srcfmt->p.yuv.packorder & 2)) {\n                    y0 = *(srcp++);  u = *(srcp++);\n                    y1 = *(srcp++);  v = *(srcp++);\n                }\n                else {\n                    u = *(srcp++);  y0 = *(srcp++);\n                    v = *(srcp++);  y1 = *(srcp++);\n                }\n                if(flags) {\n                    uint8_t tmp = u;  u = v;  v = tmp;\n                }\n            }\n            if(!(dstfmt->p.yuv.packorder & 2)) {\n                *(dstp++) = y0;  *(dstp++) = u;\n                *(dstp++) = y1;  *(dstp++) = v;\n            }\n            else {\n                *(dstp++) = u;  *(dstp++) = y0;\n                *(dstp++) = v;  *(dstp++) = y1;\n            }\n        }\n        if(x < src->width)\n            srcp += (src->width - x) * 2;\n    }\n}\n\n/* YUV planes to packed RGB\n * FIXME currently ignores color and grayscales the image\n */\nstatic void convert_yuvp_to_rgb (zbar_image_t *dst,\n                                 const zbar_format_def_t *dstfmt,\n                                 const zbar_image_t *src,\n                                 const zbar_format_def_t *srcfmt)\n{\n    uint8_t *dstp, *srcy;\n    int drbits, drbit0, dgbits, dgbit0, dbbits, dbbit0;\n    unsigned long srcm, srcn;\n    unsigned x, y;\n    uint32_t p = 0;\n\n    dst->datalen = dst->width * dst->height * dstfmt->p.rgb.bpp;\n    dst->data = malloc(dst->datalen);\n    if(!dst->data) return;\n    dstp = (void*)dst->data;\n\n    drbits = RGB_SIZE(dstfmt->p.rgb.red);\n    drbit0 = RGB_OFFSET(dstfmt->p.rgb.red);\n    dgbits = RGB_SIZE(dstfmt->p.rgb.green);\n    dgbit0 = RGB_OFFSET(dstfmt->p.rgb.green);\n    dbbits = RGB_SIZE(dstfmt->p.rgb.blue);\n    dbbit0 = RGB_OFFSET(dstfmt->p.rgb.blue);\n\n    srcm = uvp_size(src, srcfmt);\n    srcn = src->width * src->height;\n    assert(src->datalen >= srcn + 2 * srcm);\n    srcy = (void*)src->data;\n\n    for(y = 0; y < dst->height; y++) {\n        if(y >= src->height)\n            srcy -= src->width;\n        for(x = 0; x < dst->width; x++) {\n            if(x < src->width) {\n                /* FIXME color space? */\n                unsigned y0 = *(srcy++);\n                p = (((y0 >> drbits) << drbit0) |\n                     ((y0 >> dgbits) << dgbit0) |\n                     ((y0 >> dbbits) << dbbit0));\n            }\n            convert_write_rgb(dstp, p, dstfmt->p.rgb.bpp);\n            dstp += dstfmt->p.rgb.bpp;\n        }\n        if(x < src->width)\n            srcy += (src->width - x);\n    }\n}\n\n/* packed RGB to YUV planes\n * FIXME currently ignores color and grayscales the image\n */\nstatic void convert_rgb_to_yuvp (zbar_image_t *dst,\n                                 const zbar_format_def_t *dstfmt,\n                                 const zbar_image_t *src,\n                                 const zbar_format_def_t *srcfmt)\n{\n    unsigned long dstn, dstm2;\n    uint8_t *dsty;\n    const uint8_t *srcp;\n    int rbits, rbit0, gbits, gbit0, bbits, bbit0;\n    unsigned srcl, x, y;\n    uint16_t y0 = 0;\n\n    uv_roundup(dst, dstfmt);\n    dstn = dst->width * dst->height;\n    dstm2 = uvp_size(dst, dstfmt) * 2;\n    dst->datalen = dstn + dstm2;\n    dst->data = malloc(dst->datalen);\n    if(!dst->data) return;\n    if(dstm2)\n        memset((uint8_t*)dst->data + dstn, 0x80, dstm2);\n    dsty = (void*)dst->data;\n\n    assert(src->datalen >= (src->width * src->height * srcfmt->p.rgb.bpp));\n    srcp = src->data;\n\n    rbits = RGB_SIZE(srcfmt->p.rgb.red);\n    rbit0 = RGB_OFFSET(srcfmt->p.rgb.red);\n    gbits = RGB_SIZE(srcfmt->p.rgb.green);\n    gbit0 = RGB_OFFSET(srcfmt->p.rgb.green);\n    bbits = RGB_SIZE(srcfmt->p.rgb.blue);\n    bbit0 = RGB_OFFSET(srcfmt->p.rgb.blue);\n\n    srcl = src->width * srcfmt->p.rgb.bpp;\n    for(y = 0; y < dst->height; y++) {\n        if(y >= src->height)\n            srcp -= srcl;\n        for(x = 0; x < dst->width; x++) {\n            if(x < src->width) {\n                uint8_t r, g, b;\n                uint32_t p = convert_read_rgb(srcp, srcfmt->p.rgb.bpp);\n                srcp += srcfmt->p.rgb.bpp;\n\n                /* FIXME endianness? */\n                r = ((p >> rbit0) << rbits) & 0xff;\n                g = ((p >> gbit0) << gbits) & 0xff;\n                b = ((p >> bbit0) << bbits) & 0xff;\n\n                /* FIXME color space? */\n                y0 = ((77 * r + 150 * g + 29 * b) + 0x80) >> 8;\n            }\n            *(dsty++) = y0;\n        }\n        if(x < src->width)\n            srcp += (src->width - x) * srcfmt->p.rgb.bpp;\n    }\n}\n\n/* packed YUV to packed RGB */\nstatic void convert_yuv_to_rgb (zbar_image_t *dst,\n                                const zbar_format_def_t *dstfmt,\n                                const zbar_image_t *src,\n                                const zbar_format_def_t *srcfmt)\n{\n    uint8_t *dstp;\n    unsigned long dstn = dst->width * dst->height;\n    int drbits, drbit0, dgbits, dgbit0, dbbits, dbbit0;\n    const uint8_t *srcp;\n    unsigned srcl, x, y;\n    uint32_t p = 0;\n\n    dst->datalen = dstn * dstfmt->p.rgb.bpp;\n    dst->data = malloc(dst->datalen);\n    if(!dst->data) return;\n    dstp = (void*)dst->data;\n\n    drbits = RGB_SIZE(dstfmt->p.rgb.red);\n    drbit0 = RGB_OFFSET(dstfmt->p.rgb.red);\n    dgbits = RGB_SIZE(dstfmt->p.rgb.green);\n    dgbit0 = RGB_OFFSET(dstfmt->p.rgb.green);\n    dbbits = RGB_SIZE(dstfmt->p.rgb.blue);\n    dbbit0 = RGB_OFFSET(dstfmt->p.rgb.blue);\n\n    assert(src->datalen >= (src->width * src->height +\n                            uvp_size(src, srcfmt) * 2));\n    srcp = src->data;\n    if(srcfmt->p.yuv.packorder & 2)\n        srcp++;\n\n    assert(srcfmt->p.yuv.xsub2 == 1);\n    srcl = src->width + (src->width >> 1);\n    for(y = 0; y < dst->height; y++) {\n        if(y >= src->height)\n            srcp -= srcl;\n        for(x = 0; x < dst->width; x++) {\n            if(x < src->width) {\n                uint8_t y0 = *(srcp++);\n                srcp++;\n\n                if(y0 <= 16)\n                    y0 = 0;\n                else if(y0 >= 235)\n                    y0 = 255;\n                else\n                    y0 = (uint16_t)(y0 - 16) * 255 / 219;\n\n                p = (((y0 >> drbits) << drbit0) |\n                     ((y0 >> dgbits) << dgbit0) |\n                     ((y0 >> dbbits) << dbbit0));\n            }\n            convert_write_rgb(dstp, p, dstfmt->p.rgb.bpp);\n            dstp += dstfmt->p.rgb.bpp;\n        }\n        if(x < src->width)\n            srcp += (src->width - x) * 2;\n    }\n}\n\n/* packed RGB to packed YUV\n * FIXME currently ignores color and grayscales the image\n */\nstatic void convert_rgb_to_yuv (zbar_image_t *dst,\n                                const zbar_format_def_t *dstfmt,\n                                const zbar_image_t *src,\n                                const zbar_format_def_t *srcfmt)\n{\n    uint8_t *dstp, flags;\n    const uint8_t *srcp;\n    int rbits, rbit0, gbits, gbit0, bbits, bbit0;\n    unsigned srcl, x, y;\n    uint16_t y0 = 0;\n\n    uv_roundup(dst, dstfmt);\n    dst->datalen = dst->width * dst->height + uvp_size(dst, dstfmt) * 2;\n    dst->data = malloc(dst->datalen);\n    if(!dst->data) return;\n    dstp = (void*)dst->data;\n    flags = dstfmt->p.yuv.packorder & 2;\n\n    assert(src->datalen >= (src->width * src->height * srcfmt->p.rgb.bpp));\n    srcp = src->data;\n\n    rbits = RGB_SIZE(srcfmt->p.rgb.red);\n    rbit0 = RGB_OFFSET(srcfmt->p.rgb.red);\n    gbits = RGB_SIZE(srcfmt->p.rgb.green);\n    gbit0 = RGB_OFFSET(srcfmt->p.rgb.green);\n    bbits = RGB_SIZE(srcfmt->p.rgb.blue);\n    bbit0 = RGB_OFFSET(srcfmt->p.rgb.blue);\n\n    srcl = src->width * srcfmt->p.rgb.bpp;\n    for(y = 0; y < dst->height; y++) {\n        if(y >= src->height)\n            srcp -= srcl;\n        for(x = 0; x < dst->width; x++) {\n            if(x < src->width) {\n                uint8_t r, g, b;\n                uint32_t p = convert_read_rgb(srcp, srcfmt->p.rgb.bpp);\n                srcp += srcfmt->p.rgb.bpp;\n\n                /* FIXME endianness? */\n                r = ((p >> rbit0) << rbits) & 0xff;\n                g = ((p >> gbit0) << gbits) & 0xff;\n                b = ((p >> bbit0) << bbits) & 0xff;\n\n                /* FIXME color space? */\n                y0 = ((77 * r + 150 * g + 29 * b) + 0x80) >> 8;\n            }\n            if(flags) {\n                *(dstp++) = 0x80;  *(dstp++) = y0;\n            }\n            else {\n                *(dstp++) = y0;  *(dstp++) = 0x80;\n            }\n        }\n        if(x < src->width)\n            srcp += (src->width - x) * srcfmt->p.rgb.bpp;\n    }\n}\n\n/* resample and resize packed RGB components */\nstatic void convert_rgb_resample (zbar_image_t *dst,\n                                  const zbar_format_def_t *dstfmt,\n                                  const zbar_image_t *src,\n                                  const zbar_format_def_t *srcfmt)\n{\n    unsigned long dstn = dst->width * dst->height;\n    uint8_t *dstp;\n    int drbits, drbit0, dgbits, dgbit0, dbbits, dbbit0;\n    int srbits, srbit0, sgbits, sgbit0, sbbits, sbbit0;\n    const uint8_t *srcp;\n    unsigned srcl, x, y;\n    uint32_t p = 0;\n\n    dst->datalen = dstn * dstfmt->p.rgb.bpp;\n    dst->data = malloc(dst->datalen);\n    if(!dst->data) return;\n    dstp = (void*)dst->data;\n\n    drbits = RGB_SIZE(dstfmt->p.rgb.red);\n    drbit0 = RGB_OFFSET(dstfmt->p.rgb.red);\n    dgbits = RGB_SIZE(dstfmt->p.rgb.green);\n    dgbit0 = RGB_OFFSET(dstfmt->p.rgb.green);\n    dbbits = RGB_SIZE(dstfmt->p.rgb.blue);\n    dbbit0 = RGB_OFFSET(dstfmt->p.rgb.blue);\n\n    assert(src->datalen >= (src->width * src->height * srcfmt->p.rgb.bpp));\n    srcp = src->data;\n\n    srbits = RGB_SIZE(srcfmt->p.rgb.red);\n    srbit0 = RGB_OFFSET(srcfmt->p.rgb.red);\n    sgbits = RGB_SIZE(srcfmt->p.rgb.green);\n    sgbit0 = RGB_OFFSET(srcfmt->p.rgb.green);\n    sbbits = RGB_SIZE(srcfmt->p.rgb.blue);\n    sbbit0 = RGB_OFFSET(srcfmt->p.rgb.blue);\n\n    srcl = src->width * srcfmt->p.rgb.bpp;\n    for(y = 0; y < dst->height; y++) {\n        if(y >= src->height)\n            y -= srcl;\n        for(x = 0; x < dst->width; x++) {\n            if(x < src->width) {\n                uint8_t r, g, b;\n                p = convert_read_rgb(srcp, srcfmt->p.rgb.bpp);\n                srcp += srcfmt->p.rgb.bpp;\n\n                /* FIXME endianness? */\n                r = (p >> srbit0) << srbits;\n                g = (p >> sgbit0) << sgbits;\n                b = (p >> sbbit0) << sbbits;\n\n                p = (((r >> drbits) << drbit0) |\n                     ((g >> dgbits) << dgbit0) |\n                     ((b >> dbbits) << dbbit0));\n            }\n            convert_write_rgb(dstp, p, dstfmt->p.rgb.bpp);\n            dstp += dstfmt->p.rgb.bpp;\n        }\n        if(x < src->width)\n            srcp += (src->width - x) * srcfmt->p.rgb.bpp;\n    }\n}\n\n#ifdef HAVE_LIBJPEG\nvoid _zbar_convert_jpeg_to_y(zbar_image_t *dst,\n                              const zbar_format_def_t *dstfmt,\n                              const zbar_image_t *src,\n                              const zbar_format_def_t *srcfmt);\n\nstatic void convert_jpeg(zbar_image_t *dst,\n                         const zbar_format_def_t *dstfmt,\n                         const zbar_image_t *src,\n                         const zbar_format_def_t *srcfmt);\n#endif\n\n/* group conversion matrix */\nstatic conversion_def_t conversions[][ZBAR_FMT_NUM] = {\n    { /* *from* GRAY */\n        {   0, convert_copy },           /* to GRAY */\n        {   8, convert_uvp_append },     /* to YUV_PLANAR */\n        {  24, convert_yuv_pack },       /* to YUV_PACKED */\n        {  32, convert_yuvp_to_rgb },    /* to RGB_PACKED */\n        {   8, convert_uvp_append },     /* to YUV_NV */\n        {  -1, NULL },                   /* to JPEG */\n    },\n    { /* from YUV_PLANAR */\n        {   1, convert_copy },           /* to GRAY */\n        {  48, convert_uvp_resample },   /* to YUV_PLANAR */\n        {  64, convert_yuv_pack },       /* to YUV_PACKED */\n        { 128, convert_yuvp_to_rgb },    /* to RGB_PACKED */\n        {  40, convert_uvp_append },     /* to YUV_NV */\n        {  -1, NULL },                   /* to JPEG */\n    },\n    { /* from YUV_PACKED */\n        {  24, convert_yuv_unpack },     /* to GRAY */\n        {  52, convert_yuv_unpack },     /* to YUV_PLANAR */\n        {  20, convert_uv_resample },    /* to YUV_PACKED */\n        { 144, convert_yuv_to_rgb },     /* to RGB_PACKED */\n        {  18, convert_yuv_unpack },     /* to YUV_NV */\n        {  -1, NULL },                   /* to JPEG */\n    },\n    { /* from RGB_PACKED */\n        { 112, convert_rgb_to_yuvp },    /* to GRAY */\n        { 160, convert_rgb_to_yuvp },    /* to YUV_PLANAR */\n        { 144, convert_rgb_to_yuv },     /* to YUV_PACKED */\n        { 120, convert_rgb_resample },   /* to RGB_PACKED */\n        { 152, convert_rgb_to_yuvp },    /* to YUV_NV */\n        {  -1, NULL },                   /* to JPEG */\n    },\n    { /* from YUV_NV (FIXME treated as GRAY) */\n        {   1, convert_copy },           /* to GRAY */\n        {   8, convert_uvp_append },     /* to YUV_PLANAR */\n        {  24, convert_yuv_pack },       /* to YUV_PACKED */\n        {  32, convert_yuvp_to_rgb },    /* to RGB_PACKED */\n        {   8, convert_uvp_append },     /* to YUV_NV */\n        {  -1, NULL },                   /* to JPEG */\n    },\n#ifdef HAVE_LIBJPEG\n    { /* from JPEG */\n        {  96, _zbar_convert_jpeg_to_y }, /* to GRAY */\n        { 104, convert_jpeg },           /* to YUV_PLANAR */\n        { 116, convert_jpeg },           /* to YUV_PACKED */\n        { 256, convert_jpeg },           /* to RGB_PACKED */\n        { 104, convert_jpeg },           /* to YUV_NV */\n        {  -1, NULL },                   /* to JPEG */\n    },\n#else\n    { /* from JPEG */\n        {  -1, NULL },                   /* to GRAY */\n        {  -1, NULL },                   /* to YUV_PLANAR */\n        {  -1, NULL },                   /* to YUV_PACKED */\n        {  -1, NULL },                   /* to RGB_PACKED */\n        {  -1, NULL },                   /* to YUV_NV */\n        {  -1, NULL },                   /* to JPEG */\n    },\n#endif\n};\n\nconst zbar_format_def_t *_zbar_format_lookup (uint32_t fmt)\n{\n    const zbar_format_def_t *def = NULL;\n    int i = 0;\n    while(i < num_format_defs) {\n        def = &format_defs[i];\n        if(fmt == def->format)\n            return(def);\n        i = i * 2 + 1;\n        if(fmt > def->format)\n            i++;\n    }\n    return(NULL);\n}\n\n#ifdef HAVE_LIBJPEG\n/* convert JPEG data via an intermediate format supported by libjpeg */\nstatic void convert_jpeg (zbar_image_t *dst,\n                          const zbar_format_def_t *dstfmt,\n                          const zbar_image_t *src,\n                          const zbar_format_def_t *srcfmt)\n{\n    /* define intermediate image in a format supported by libjpeg\n     * (currently only grayscale)\n     */\n    zbar_image_t *tmp;\n    if(!src->src) {\n        tmp = zbar_image_create();\n        tmp->format = fourcc('Y','8','0','0');\n        _zbar_image_copy_size(tmp, dst);\n    }\n    else {\n        tmp = src->src->jpeg_img;\n        assert(tmp);\n        _zbar_image_copy_size(dst, tmp);\n    }\n\n    const zbar_format_def_t *tmpfmt = _zbar_format_lookup(tmp->format);\n    assert(tmpfmt);\n\n    /* convert to intermediate format */\n    _zbar_convert_jpeg_to_y(tmp, tmpfmt, src, srcfmt);\n\n    /* now convert to dst */\n    _zbar_image_copy_size(dst, tmp);\n\n    conversion_handler_t *func =\n        conversions[tmpfmt->group][dstfmt->group].func;\n\n    func(dst, dstfmt, tmp, tmpfmt);\n\n    if(!src->src)\n        zbar_image_destroy(tmp);\n}\n#endif\n\nzbar_image_t *zbar_image_convert_resize (const zbar_image_t *src,\n                                         unsigned long fmt,\n                                         unsigned width,\n                                         unsigned height)\n{\n    const zbar_format_def_t *srcfmt, *dstfmt;\n    conversion_handler_t *func;\n    zbar_image_t *dst = zbar_image_create();\n    dst->format = fmt;\n    dst->width = width;\n    dst->height = height;\n    zbar_image_set_crop(dst, src->crop_x, src->crop_y,\n                        src->crop_w, src->crop_h);\n    if(src->format == fmt &&\n       src->width == width &&\n       src->height == height) {\n        convert_copy(dst, NULL, src, NULL);\n        return(dst);\n    }\n\n    srcfmt = _zbar_format_lookup(src->format);\n    dstfmt = _zbar_format_lookup(dst->format);\n    if(!srcfmt || !dstfmt)\n        /* FIXME free dst */\n        return(NULL);\n\n    if(srcfmt->group == dstfmt->group &&\n       srcfmt->p.cmp == dstfmt->p.cmp &&\n       src->width == width &&\n       src->height == height) {\n        convert_copy(dst, NULL, src, NULL);\n        return(dst);\n    }\n\n    func = conversions[srcfmt->group][dstfmt->group].func;\n\n    dst->cleanup = zbar_image_free_data;\n    func(dst, dstfmt, src, srcfmt);\n    if(!dst->data) {\n        /* conversion failed */\n        zbar_image_destroy(dst);\n        return(NULL);\n    }\n    return(dst);\n}\n\nzbar_image_t *zbar_image_convert (const zbar_image_t *src,\n                                  unsigned long fmt)\n{\n    return(zbar_image_convert_resize(src, fmt, src->width, src->height));\n}\n\nstatic inline int has_format (uint32_t fmt,\n                              const uint32_t *fmts)\n{\n    for(; *fmts; fmts++)\n        if(*fmts == fmt)\n            return(1);\n    return(0);\n}\n\n/* select least cost conversion from src format to available dsts */\nint _zbar_best_format (uint32_t src,\n                       uint32_t *dst,\n                       const uint32_t *dsts)\n{\n    const zbar_format_def_t *srcfmt;\n    unsigned min_cost = -1;\n\n    if(dst)\n        *dst = 0;\n    if(!dsts)\n        return(-1);\n    if(has_format(src, dsts)) {\n        zprintf(8, \"shared format: %4.4s\\n\", (char*)&src);\n        if(dst)\n            *dst = src;\n        return(0);\n    }\n    srcfmt = _zbar_format_lookup(src);\n    if(!srcfmt)\n        return(-1);\n\n    zprintf(8, \"from %.4s(%08\" PRIx32 \") to\", (char*)&src, src);\n    for(; *dsts; dsts++) {\n        const zbar_format_def_t *dstfmt = _zbar_format_lookup(*dsts);\n        int cost;\n        if(!dstfmt)\n            continue;\n        if(srcfmt->group == dstfmt->group &&\n           srcfmt->p.cmp == dstfmt->p.cmp)\n            cost = 0;\n        else\n            cost = conversions[srcfmt->group][dstfmt->group].cost;\n\n        if(_zbar_verbosity >= 8)\n            fprintf(stderr, \" %.4s(%08\" PRIx32 \")=%d\",\n                    (char*)dsts, *dsts, cost);\n        if(cost >= 0 && min_cost > cost) {\n            min_cost = cost;\n            if(dst)\n                *dst = *dsts;\n        }\n    }\n    if(_zbar_verbosity >= 8)\n        fprintf(stderr, \"\\n\");\n    return(min_cost);\n}\n\nint zbar_negotiate_format (zbar_video_t *vdo,\n                           zbar_window_t *win)\n{\n    static const uint32_t y800[2] = { fourcc('Y','8','0','0'), 0 };\n    errinfo_t *errdst;\n    const uint32_t *srcs, *dsts;\n    unsigned min_cost = -1;\n    uint32_t min_fmt = 0;\n    const uint32_t *fmt;\n\n    if(!vdo && !win)\n        return(0);\n\n    if(win)\n        (void)window_lock(win);\n\n    errdst = (vdo) ? &vdo->err : &win->err;\n    if(verify_format_sort()) {\n        if(win)\n            (void)window_unlock(win);\n        return(err_capture(errdst, SEV_FATAL, ZBAR_ERR_INTERNAL, __func__,\n                           \"image format list is not sorted!?\"));\n    }\n\n    if((vdo && !vdo->formats) || (win && !win->formats)) {\n        if(win)\n            (void)window_unlock(win);\n        return(err_capture(errdst, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, __func__,\n                           \"no input or output formats available\"));\n    }\n\n    srcs = (vdo) ? vdo->formats : y800;\n    dsts = (win) ? win->formats : y800;\n\n    for(fmt = _zbar_formats; *fmt; fmt++) {\n        /* only consider formats supported by video device */\n        uint32_t win_fmt = 0;\n        int cost;\n        if(!has_format(*fmt, srcs))\n            continue;\n        cost = _zbar_best_format(*fmt, &win_fmt, dsts);\n        if(cost < 0) {\n            zprintf(4, \"%.4s(%08\" PRIx32 \") -> ? (unsupported)\\n\",\n                    (char*)fmt, *fmt);\n            continue;\n        }\n        zprintf(4, \"%.4s(%08\" PRIx32 \") -> %.4s(%08\" PRIx32 \") (%d)\\n\",\n                (char*)fmt, *fmt, (char*)&win_fmt, win_fmt, cost);\n        if(min_cost > cost) {\n            min_cost = cost;\n            min_fmt = *fmt;\n            if(!cost)\n                break;\n        }\n    }\n    if(win)\n        (void)window_unlock(win);\n\n    if(!min_fmt)\n        return(err_capture(errdst, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, __func__,\n                           \"no supported image formats available\"));\n    if(!vdo)\n        return(0);\n\n    zprintf(2, \"setting best format %.4s(%08\" PRIx32 \") (%d)\\n\",\n            (char*)&min_fmt, min_fmt, min_cost);\n    return(zbar_video_init(vdo, min_fmt));\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/debug.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n/* varargs variations on compile time debug spew */\n\n# include <stdio.h>\n\n#ifndef DEBUG_LEVEL\n\n# ifdef __GNUC__\n    /* older versions of gcc (< 2.95) require a named varargs parameter */\n#  define dbprintf(args...) while(0)\n# else\n    /* unfortunately named vararg parameter is a gcc-specific extension */\n#  define dbprintf(...) while(0)\n# endif\n\n#else\n\n# ifdef __GNUC__\n#  define dbprintf(level, args...) do { \\\n        if((level) <= DEBUG_LEVEL)      \\\n            fprintf(stderr, args);      \\\n    } while(0)\n# else\n#  define dbprintf(level, ...) do {         \\\n        if((level) <= DEBUG_LEVEL)          \\\n            fprintf(stderr, __VA_ARGS__);   \\\n    } while(0)\n# endif\n\n#endif /* DEBUG_LEVEL */\n\n/* spew warnings for non-fatal assertions.\n * returns specified error code if assertion fails.\n * NB check/return is still performed for NDEBUG\n * only the message is inhibited\n * FIXME don't we need varargs hacks here?\n */\n#ifndef NDEBUG\n\n# include <stdio.h>\n\n#if __STDC_VERSION__ < 199901L && !defined(__func__)\n# if __GNUC__ >= 2\n#  define __func__ __FUNCTION__\n# else\n#  define __func__ \"<unknown>\"\n# endif\n#endif\n\n# define zassert(condition, retval, format, ...) do {                   \\\n        if(!(condition)) {                                              \\\n            fprintf(stderr, \"WARNING: %s:%d: %s:\"                       \\\n                    \" Assertion \\\"%s\\\" failed.\\n\\t\" format,             \\\n                    __FILE__, __LINE__, __func__, #condition ,          \\\n                    ##__VA_ARGS__);                                     \\\n            return(retval);                                             \\\n        }                                                               \\\n    } while(0)\n\n#else\n\n# define zassert(condition, retval, format, ...) do {   \\\n        if(!(condition))                                \\\n            return(retval);                             \\\n    } while(0)\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/codabar.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2011 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <string.h>     /* memmove */\n\n#include <zbar.h>\n\n#ifdef DEBUG_CODABAR\n# define DEBUG_LEVEL (DEBUG_CODABAR)\n#endif\n#include \"debug.h\"\n#include \"decoder.h\"\n\n#define NIBUF 6 /* initial scan buffer size */\n\nstatic const signed char codabar_lo[12] = {\n    0x0, 0x1, 0x4, 0x5, 0x2, 0xa, 0xb, 0x9,\n    0x6, 0x7, 0x8, 0x3\n};\n\nstatic const unsigned char codabar_hi[8] = {\n    0x1, 0x4, 0x7, 0x6, 0x2, 0x3, 0x0, 0x5\n};\n\nstatic const unsigned char codabar_characters[20] =\n    \"0123456789-$:/.+ABCD\";\n\nstatic inline int\ncheck_width (unsigned ref,\n             unsigned w)\n{\n    unsigned dref = ref;\n    ref *= 4;\n    w *= 4;\n    return(ref - dref <= w && w <= ref + dref);\n}\n\nstatic inline signed char\ncodabar_decode7 (zbar_decoder_t *dcode)\n{\n    codabar_decoder_t *codabar = &dcode->codabar;\n    unsigned s = codabar->s7;\n    dbprintf(2, \" s=%d\", s);\n    if(s < 7)\n        return(-1);\n\n    /* check width */\n    if(!check_width(codabar->width, s)) {\n        dbprintf(2, \" [width]\");\n        return(-1);\n    }\n\n    /* extract min/max bar */\n    unsigned ibar = decode_sortn(dcode, 4, 1);\n    dbprintf(2, \" bar=%04x\", ibar);\n\n    unsigned wbmax = get_width(dcode, ibar & 0xf);\n    unsigned wbmin = get_width(dcode, ibar >> 12);\n    if(8 * wbmin < wbmax ||\n       3 * wbmin > 2 * wbmax)\n    {\n        dbprintf(2, \" [bar outer ratio]\");\n        return(-1);\n    }\n\n    unsigned wb1 = get_width(dcode, (ibar >> 8) & 0xf);\n    unsigned wb2 = get_width(dcode, (ibar >> 4) & 0xf);\n    unsigned long b0b3 = wbmin * wbmax;\n    unsigned long b1b2 = wb1 * wb2;\n    if(b1b2 + b1b2 / 8 < b0b3) {\n        /* single wide bar combinations */\n        if(8 * wbmin < 5 * wb1 ||\n           8 * wb1 < 5 * wb2 ||\n           4 * wb2 > 3 * wbmax ||\n           wb2 * wb2 >= wb1 * wbmax)\n        {\n            dbprintf(2, \" [1bar inner ratios]\");\n            return(-1);\n        }\n        ibar = (ibar >> 1) & 0x3;\n    }\n    else if(b1b2 > b0b3 + b0b3 / 8) {\n        /* three wide bars, no wide spaces */\n        if(4 * wbmin > 3 * wb1 ||\n           8 * wb1 < 5 * wb2 ||\n           8 * wb2 < 5 * wbmax ||\n           wbmin * wb2 >= wb1 * wb1)\n        {\n            dbprintf(2, \" [3bar inner ratios]\");\n            return(-1);\n        }\n        ibar = (ibar >> 13) + 4;\n    }\n    else {\n        dbprintf(2, \" [bar inner ratios]\");\n        return(-1);\n    }\n\n    unsigned ispc = decode_sort3(dcode, 2);\n    dbprintf(2, \"(%x) spc=%03x\", ibar, ispc);\n\n    unsigned wsmax = get_width(dcode, ispc & 0xf);\n    unsigned wsmid = get_width(dcode, (ispc >> 4) & 0xf);\n    unsigned wsmin = get_width(dcode, (ispc >> 8) & 0xf);\n    if(ibar >> 2) {\n        /* verify no wide spaces */\n        if(8 * wsmin < wsmax ||\n           8 * wsmin < 5 * wsmid ||\n           8 * wsmid < 5 * wsmax)\n        {\n            dbprintf(2, \" [0space inner ratios]\");\n            return(-1);\n        }\n        ibar &= 0x3;\n        if(codabar->direction)\n            ibar = 3 - ibar;\n        int c = (0xfcde >> (ibar << 2)) & 0xf;\n        dbprintf(2, \" ex[%d]=%x\", ibar, c);\n        return(c);\n    }\n    else if(8 * wsmin < wsmax ||\n            3 * wsmin > 2 * wsmax)\n    {\n        dbprintf(2, \" [space outer ratio]\");\n        return(-1);\n    }\n\n    unsigned long s0s2 = wsmin * wsmax;\n    unsigned long s1s1 = wsmid * wsmid;\n    if(s1s1 + s1s1 / 8 < s0s2) {\n        /* single wide space */\n        if(8 * wsmin < 5 * wsmid ||\n           4 * wsmid > 3 * wsmax)\n        {\n            dbprintf(2, \" [1space inner ratios]\");\n            return(-1);\n        }\n        ispc = ((ispc & 0xf) >> 1) - 1;\n        unsigned ic = (ispc << 2) | ibar;\n        if(codabar->direction)\n            ic = 11 - ic;\n        int c = codabar_lo[ic];\n        dbprintf(2, \"(%d) lo[%d]=%x\", ispc, ic, c);\n        return(c);\n    }\n    else if(s1s1 > s0s2 + s0s2 / 8) {\n        /* two wide spaces, check start/stop */\n        if(4 * wsmin > 3 * wsmid ||\n           8 * wsmid < 5 * wsmax)\n        {\n            dbprintf(2, \" [2space inner ratios]\");\n            return(-1);\n        }\n        if((ispc >> 8) == 4) {\n            dbprintf(2, \" [space comb]\");\n            return(-1);\n        }\n        ispc >>= 10;\n        dbprintf(2, \"(%d)\", ispc);\n        unsigned ic = ispc * 4 + ibar;\n        zassert(ic < 8, -1, \"ic=%d ispc=%d ibar=%d\", ic, ispc, ibar);\n        unsigned char c = codabar_hi[ic];\n        if(c >> 2 != codabar->direction) {\n            dbprintf(2, \" [invalid stop]\");\n            return(-1);\n        }\n        c = (c & 0x3) | 0x10;\n        dbprintf(2, \" hi[%d]=%x\", ic, c);\n        return(c);\n    }\n    else {\n        dbprintf(2, \" [space inner ratios]\");\n        return(-1);\n    }\n}\n\nstatic inline signed char\ncodabar_decode_start (zbar_decoder_t *dcode)\n{\n    codabar_decoder_t *codabar = &dcode->codabar;\n    unsigned s = codabar->s7;\n    if(s < 8)\n        return(ZBAR_NONE);\n    dbprintf(2, \"      codabar: s=%d\", s);\n\n    /* check leading quiet zone - spec is 10x */\n    unsigned qz = get_width(dcode, 8);\n    if((qz && qz * 2 < s) ||\n       4 * get_width(dcode, 0) > 3 * s)\n    {\n        dbprintf(2, \" [invalid qz/ics]\\n\");\n        return(ZBAR_NONE);\n    }\n\n    /* check space ratios first */\n    unsigned ispc = decode_sort3(dcode, 2);\n    dbprintf(2, \" spc=%03x\", ispc);\n    if((ispc >> 8) == 4) {\n        dbprintf(2, \" [space comb]\\n\");\n        return(ZBAR_NONE);\n    }\n\n    /* require 2 wide and 1 narrow spaces */\n    unsigned wsmax = get_width(dcode, ispc & 0xf);\n    unsigned wsmin = get_width(dcode, ispc >> 8);\n    unsigned wsmid = get_width(dcode, (ispc >> 4) & 0xf);\n    if(8 * wsmin < wsmax ||\n       3 * wsmin > 2 * wsmax ||\n       4 * wsmin > 3 * wsmid ||\n       8 * wsmid < 5 * wsmax ||\n       wsmid * wsmid <= wsmax * wsmin)\n    {\n        dbprintf(2, \" [space ratio]\\n\");\n        return(ZBAR_NONE);\n    }\n    ispc >>= 10;\n    dbprintf(2, \"(%d)\", ispc);\n\n    /* check bar ratios */\n    unsigned ibar = decode_sortn(dcode, 4, 1);\n    dbprintf(2, \" bar=%04x\", ibar);\n\n    unsigned wbmax = get_width(dcode, ibar & 0xf);\n    unsigned wbmin = get_width(dcode, ibar >> 12);\n    if(8 * wbmin < wbmax ||\n       3 * wbmin > 2 * wbmax)\n    {\n        dbprintf(2, \" [bar outer ratio]\\n\");\n        return(ZBAR_NONE);\n    }\n\n    /* require 1 wide & 3 narrow bars */\n    unsigned wb1 = get_width(dcode, (ibar >> 8) & 0xf);\n    unsigned wb2 = get_width(dcode, (ibar >> 4) & 0xf);\n    if(8 * wbmin < 5 * wb1 ||\n       8 * wb1 < 5 * wb2 ||\n       4 * wb2 > 3 * wbmax ||\n       wb1 * wb2 >= wbmin * wbmax ||\n       wb2 * wb2 >= wb1 * wbmax)\n    {\n        dbprintf(2, \" [bar inner ratios]\\n\");\n        return(ZBAR_NONE);\n    }\n    ibar = ((ibar & 0xf) - 1) >> 1;\n    dbprintf(2, \"(%d)\", ibar);\n\n    /* decode combination */\n    int ic = ispc * 4 + ibar;\n    zassert(ic < 8, ZBAR_NONE, \"ic=%d ispc=%d ibar=%d\", ic, ispc, ibar);\n    int c = codabar_hi[ic];\n    codabar->buf[0] = (c & 0x3) | 0x10;\n\n    /* set character direction */\n    codabar->direction = c >> 2;\n\n    codabar->element = 4;\n    codabar->character = 1;\n    codabar->width = codabar->s7;\n    dbprintf(1, \" start=%c dir=%x [valid start]\\n\",\n             codabar->buf[0] + 0x31, codabar->direction);\n    return(ZBAR_PARTIAL);\n}\n\nstatic inline int\ncodabar_checksum (zbar_decoder_t *dcode,\n                  unsigned n)\n{\n    unsigned chk = 0;\n    unsigned char *buf = dcode->buf;\n    while(n--)\n        chk += *(buf++);\n    return(!!(chk & 0xf));\n}\n\nstatic inline zbar_symbol_type_t\ncodabar_postprocess (zbar_decoder_t *dcode)\n{\n    codabar_decoder_t *codabar = &dcode->codabar;\n    int dir = codabar->direction;\n    dcode->direction = 1 - 2 * dir;\n    int i, n = codabar->character;\n    for(i = 0; i < NIBUF; i++)\n        dcode->buf[i] = codabar->buf[i];\n    if(dir)\n        /* reverse buffer */\n        for(i = 0; i < n / 2; i++) {\n            unsigned j = n - 1 - i;\n            char code = dcode->buf[i];\n            dcode->buf[i] = dcode->buf[j];\n            dcode->buf[j] = code;\n        }\n\n    if(TEST_CFG(codabar->config, ZBAR_CFG_ADD_CHECK)) {\n        /* validate checksum */\n        if(codabar_checksum(dcode, n))\n            return(ZBAR_NONE);\n        if(!TEST_CFG(codabar->config, ZBAR_CFG_EMIT_CHECK)) {\n            dcode->buf[n - 2] = dcode->buf[n - 1];\n            n--;\n        }\n    }\n\n    for(i = 0; i < n; i++) {\n        unsigned c = dcode->buf[i];\n        dcode->buf[i] = ((c < 0x14)\n                         ? codabar_characters[c]\n                         : '?');\n    }\n    dcode->buflen = i;\n    dcode->buf[i] = '\\0';\n    dcode->modifiers = 0;\n\n    codabar->character = -1;\n    return(ZBAR_CODABAR);\n}\n\nzbar_symbol_type_t\n_zbar_decode_codabar (zbar_decoder_t *dcode)\n{\n    codabar_decoder_t *codabar = &dcode->codabar;\n\n    /* update latest character width */\n    codabar->s7 -= get_width(dcode, 8);\n    codabar->s7 += get_width(dcode, 1);\n\n    if(get_color(dcode) != ZBAR_SPACE)\n        return(ZBAR_NONE);\n    if(codabar->character < 0)\n        return(codabar_decode_start(dcode));\n    if(codabar->character < 2 &&\n       codabar_decode_start(dcode))\n        return(ZBAR_PARTIAL);\n    if(--codabar->element)\n        return(ZBAR_NONE);\n    codabar->element = 4;\n\n    dbprintf(1, \"      codabar[%c%02d+%x]\",\n             (codabar->direction) ? '<' : '>',\n             codabar->character, codabar->element);\n\n    signed char c = codabar_decode7(dcode);\n    dbprintf(1, \" %d\", c);\n    if(c < 0) {\n        dbprintf(1, \" [aborted]\\n\");\n        goto reset;\n    }\n\n    unsigned char *buf;\n    if(codabar->character < NIBUF)\n        buf = codabar->buf;\n    else {\n        if(codabar->character >= BUFFER_MIN &&\n           size_buf(dcode, codabar->character + 1))\n        {\n            dbprintf(1, \" [overflow]\\n\");\n            goto reset;\n        }\n        buf = dcode->buf;\n    }\n    buf[codabar->character++] = c;\n\n    /* lock shared resources */\n    if(codabar->character == NIBUF &&\n       acquire_lock(dcode, ZBAR_CODABAR))\n    {\n        codabar->character = -1;\n        return(ZBAR_PARTIAL);\n    }\n\n    unsigned s = codabar->s7;\n    if(c & 0x10) {\n        unsigned qz = get_width(dcode, 0);\n        if(qz && qz * 2 < s) {\n            dbprintf(2, \" [invalid qz]\\n\");\n            goto reset;\n        }\n        unsigned n = codabar->character;\n        if(n < CFG(*codabar, ZBAR_CFG_MIN_LEN) ||\n           (CFG(*codabar, ZBAR_CFG_MAX_LEN) > 0 &&\n            n > CFG(*codabar, ZBAR_CFG_MAX_LEN)))\n        {\n            dbprintf(2, \" [invalid len]\\n\");\n            goto reset;\n        }\n        if(codabar->character < NIBUF &&\n           acquire_lock(dcode, ZBAR_CODABAR))\n        {\n            codabar->character = -1;\n            return(ZBAR_PARTIAL);\n        }\n        dbprintf(2, \" stop=%c\", c + 0x31);\n\n        zbar_symbol_type_t sym = codabar_postprocess(dcode);\n        if(sym > ZBAR_PARTIAL)\n            dbprintf(2, \" [valid stop]\");\n        else {\n            release_lock(dcode, ZBAR_CODABAR);\n            codabar->character = -1;\n        }\n        dbprintf(2, \"\\n\");\n        return(sym);\n    }\n    else if(4 * get_width(dcode, 0) > 3 * s) {\n        dbprintf(2, \" [ics]\\n\");\n        goto reset;\n    }\n\n    dbprintf(2, \"\\n\");\n    return(ZBAR_NONE);\n\nreset:\n    if(codabar->character >= NIBUF)\n        release_lock(dcode, ZBAR_CODABAR);\n    codabar->character = -1;\n    return(ZBAR_NONE);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/codabar.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2011 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _CODABAR_H_\n#define _CODABAR_H_\n\n/* Codabar specific decode state */\ntypedef struct codabar_decoder_s {\n    unsigned direction : 1;     /* scan direction: 0=fwd, 1=rev */\n    unsigned element : 4;       /* element offset 0-7 */\n    int character : 12;         /* character position in symbol */\n    unsigned s7;                /* current character width */\n    unsigned width;             /* last character width */\n    unsigned char buf[6];       /* initial scan buffer */\n\n    unsigned config;\n    int configs[NUM_CFGS];      /* int valued configurations */\n} codabar_decoder_t;\n\n/* reset Codabar specific state */\nstatic inline void codabar_reset (codabar_decoder_t *codabar)\n{\n    codabar->direction = 0;\n    codabar->element = 0;\n    codabar->character = -1;\n    codabar->s7 = 0;\n}\n\n/* decode Codabar symbols */\nzbar_symbol_type_t _zbar_decode_codabar(zbar_decoder_t *dcode);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/code128.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <string.h>     /* memmove */\n\n#include <zbar.h>\n\n#ifdef DEBUG_CODE128\n# define DEBUG_LEVEL (DEBUG_CODE128)\n#endif\n#include \"debug.h\"\n#include \"decoder.h\"\n\n#define NUM_CHARS 108           /* total number of character codes */\n\ntypedef enum code128_char_e {\n    FNC3        = 0x60,\n    FNC2        = 0x61,\n    SHIFT       = 0x62,\n    CODE_C      = 0x63,\n    CODE_B      = 0x64,\n    CODE_A      = 0x65,\n    FNC1        = 0x66,\n    START_A     = 0x67,\n    START_B     = 0x68,\n    START_C     = 0x69,\n    STOP_FWD    = 0x6a,\n    STOP_REV    = 0x6b,\n    FNC4        = 0x6c,\n} code128_char_t;\n\nstatic const unsigned char characters[NUM_CHARS] = {\n    0x5c, 0xbf, 0xa1,                                           /* [00] 00 */\n    0x2a, 0xc5, 0x0c, 0xa4,                                     /* [03] 01 */\n    0x2d, 0xe3, 0x0f,                                           /* [07] 02 */\n    0x5f, 0xe4,                                                 /* [0a] 03 */\n\n    0x6b, 0xe8, 0x69, 0xa7, 0xe7,                               /* [0c] 10 */\n    0xc1, 0x51, 0x1e, 0x83, 0xd9, 0x00, 0x84, 0x1f,             /* [11] 11 */\n    0xc7, 0x0d, 0x33, 0x86, 0xb5, 0x0e, 0x15, 0x87,             /* [19] 12 */\n    0x10, 0xda, 0x11,                                           /* [21] 13 */\n\n    0x36, 0xe5, 0x18, 0x37,                                     /* [24] 20 */\n    0xcc, 0x13, 0x39, 0x89, 0x97, 0x14, 0x1b, 0x8a, 0x3a, 0xbd, /* [28] 21 */\n    0xa2, 0x5e, 0x01, 0x85, 0xb0, 0x02, 0xa3,                   /* [32] 22 */\n    0xa5, 0x2c, 0x16, 0x88, 0xbc, 0x12, 0xa6,                   /* [39] 23 */\n\n    0x61, 0xe6, 0x56, 0x62,                                     /* [40] 30 */\n    0x19, 0xdb, 0x1a,                                           /* [44] 31 */\n    0xa8, 0x32, 0x1c, 0x8b, 0xcd, 0x1d, 0xa9,                   /* [47] 32 */\n    0xc3, 0x20, 0xc4,                                           /* [4e] 33 */\n\n    0x50, 0x5d, 0xc0,       /* [51] 0014 0025 0034 */\n    0x2b, 0xc6,             /* [54] 0134 0143 */\n    0x2e,                   /* [56] 0243 */\n    0x53, 0x60,             /* [57] 0341 0352 */\n    0x31,                   /* [59] 1024 */\n    0x52, 0xc2,             /* [5a] 1114 1134 */\n    0x34, 0xc8,             /* [5c] 1242 1243 */\n    0x55,                   /* [5e] 1441 */\n\n    0x57, 0x3e, 0xce,       /* [5f] 4100 5200 4300 */\n    0x3b, 0xc9,             /* [62] 4310 3410 */\n    0x6a,                   /* [64] 3420 */\n    0x54, 0x4f,             /* [65] 1430 2530 */\n    0x38,                   /* [67] 4201 */\n    0x58, 0xcb,             /* [68] 4111 4311 */\n    0x2f, 0xca,             /* [6a] 2421 3421 */\n};\n\nstatic const unsigned char lo_base[8] = {\n    0x00, 0x07, 0x0c, 0x19, 0x24, 0x32, 0x40, 0x47\n};\n\nstatic const unsigned char lo_offset[0x80] = {\n    0xff, 0xf0, 0xff, 0x1f, 0xff, 0xf2, 0xff, 0xff,     /* 00 [00] */\n    0xff, 0xff, 0xff, 0x3f, 0xf4, 0xf5, 0xff, 0x6f,     /* 01 */\n    0xff, 0xff, 0xff, 0xff, 0xf0, 0xf1, 0xff, 0x2f,     /* 02 [07] */\n    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x4f,     /* 03 */\n    0xff, 0x0f, 0xf1, 0xf2, 0xff, 0x3f, 0xff, 0xf4,     /* 10 [0c] */\n    0xf5, 0xf6, 0xf7, 0x89, 0xff, 0xab, 0xff, 0xfc,     /* 11 */\n    0xff, 0xff, 0x0f, 0x1f, 0x23, 0x45, 0xf6, 0x7f,     /* 12 [19] */\n    0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf9, 0xaf,     /* 13 */\n\n    0xf0, 0xf1, 0xff, 0x2f, 0xff, 0xf3, 0xff, 0xff,     /* 20 [24] */\n    0x4f, 0x5f, 0x67, 0x89, 0xfa, 0xbf, 0xff, 0xcd,     /* 21 */\n    0xf0, 0xf1, 0xf2, 0x3f, 0xf4, 0x56, 0xff, 0xff,     /* 22 [32] */\n    0xff, 0xff, 0x7f, 0x8f, 0x9a, 0xff, 0xbc, 0xdf,     /* 23 */\n    0x0f, 0x1f, 0xf2, 0xff, 0xff, 0x3f, 0xff, 0xff,     /* 30 [40] */\n    0xf4, 0xff, 0xf5, 0x6f, 0xff, 0xff, 0xff, 0xff,     /* 31 */\n    0x0f, 0x1f, 0x23, 0xff, 0x45, 0x6f, 0xff, 0xff,     /* 32 [47] */\n    0xf7, 0xff, 0xf8, 0x9f, 0xff, 0xff, 0xff, 0xff,     /* 33 */\n};\n\nstatic inline signed char decode_lo (int sig)\n{\n    unsigned char offset = (((sig >> 1) & 0x01) |\n                            ((sig >> 3) & 0x06) |\n                            ((sig >> 5) & 0x18) |\n                            ((sig >> 7) & 0x60));\n    unsigned char idx = lo_offset[offset];\n    unsigned char base, c;\n\n    if(sig & 1)\n        idx &= 0xf;\n    else\n        idx >>= 4;\n    if(idx == 0xf)\n        return(-1);\n\n    base = (sig >> 11) | ((sig >> 9) & 1);\n    zassert(base < 8, -1, \"sig=%x offset=%x idx=%x base=%x\\n\",\n            sig, offset, idx, base);\n    idx += lo_base[base];\n\n    zassert(idx <= 0x50, -1, \"sig=%x offset=%x base=%x idx=%x\\n\",\n            sig, offset, base, idx);\n    c = characters[idx];\n    dbprintf(2, \" %02x(%x(%02x)/%x(%02x)) => %02x\",\n             idx, base, lo_base[base], offset, lo_offset[offset],\n             (unsigned char)c);\n    return(c);\n}\n\nstatic inline signed char decode_hi (int sig)\n{\n    unsigned char rev = (sig & 0x4400) != 0;\n    unsigned char idx, c;\n    if(rev)\n        sig = (((sig >> 12) & 0x000f) |\n               ((sig >>  4) & 0x00f0) |\n               ((sig <<  4) & 0x0f00) |\n               ((sig << 12) & 0xf000));\n    dbprintf(2, \" rev=%x\", rev != 0);\n\n    switch(sig) {\n    case 0x0014: idx = 0x0; break;\n    case 0x0025: idx = 0x1; break;\n    case 0x0034: idx = 0x2; break;\n    case 0x0134: idx = 0x3; break;\n    case 0x0143: idx = 0x4; break;\n    case 0x0243: idx = 0x5; break;\n    case 0x0341: idx = 0x6; break;\n    case 0x0352: idx = 0x7; break;\n    case 0x1024: idx = 0x8; break;\n    case 0x1114: idx = 0x9; break;\n    case 0x1134: idx = 0xa; break;\n    case 0x1242: idx = 0xb; break;\n    case 0x1243: idx = 0xc; break;\n    case 0x1441: idx = 0xd; rev = 0; break;\n    default: return(-1);\n    }\n    if(rev)\n        idx += 0xe;\n    c = characters[0x51 + idx];\n    dbprintf(2, \" %02x => %02x\", idx, c);\n    return(c);\n}\n\nstatic inline unsigned char calc_check (unsigned char c)\n{\n    if(!(c & 0x80))\n        return(0x18);\n    c &= 0x7f;\n    if(c < 0x3d)\n        return((c < 0x30 && c != 0x17) ? 0x10 : 0x20);\n    if(c < 0x50)\n        return((c == 0x4d) ? 0x20 : 0x10);\n    return((c < 0x67) ? 0x20 : 0x10);\n}\n\nstatic inline signed char decode6 (zbar_decoder_t *dcode)\n{\n    int sig;\n    signed char c, chk;\n    unsigned bars;\n\n    /* build edge signature of character */\n    unsigned s = dcode->code128.s6;\n\n    dbprintf(2, \" s=%d\", s);\n    if(s < 5)\n        return(-1);\n    /* calculate similar edge measurements */\n    sig = (get_color(dcode) == ZBAR_BAR)\n        ? ((decode_e(get_width(dcode, 0) + get_width(dcode, 1), s, 11) << 12) |\n           (decode_e(get_width(dcode, 1) + get_width(dcode, 2), s, 11) << 8) |\n           (decode_e(get_width(dcode, 2) + get_width(dcode, 3), s, 11) << 4) |\n           (decode_e(get_width(dcode, 3) + get_width(dcode, 4), s, 11)))\n        : ((decode_e(get_width(dcode, 5) + get_width(dcode, 4), s, 11) << 12) |\n           (decode_e(get_width(dcode, 4) + get_width(dcode, 3), s, 11) << 8) |\n           (decode_e(get_width(dcode, 3) + get_width(dcode, 2), s, 11) << 4) |\n           (decode_e(get_width(dcode, 2) + get_width(dcode, 1), s, 11)));\n    if(sig < 0)\n        return(-1);\n    dbprintf(2, \" sig=%04x\", sig);\n    /* lookup edge signature */\n    c = (sig & 0x4444) ? decode_hi(sig) : decode_lo(sig);\n    if(c == -1)\n        return(-1);\n\n    /* character validation */\n    bars = (get_color(dcode) == ZBAR_BAR)\n        ? (get_width(dcode, 0) + get_width(dcode, 2) + get_width(dcode, 4))\n        : (get_width(dcode, 1) + get_width(dcode, 3) + get_width(dcode, 5));\n    bars = bars * 11 * 4 / s;\n    chk = calc_check(c);\n    dbprintf(2, \" bars=%d chk=%d\", bars, chk);\n    if(chk - 7 > bars || bars > chk + 7)\n        return(-1);\n\n    return(c & 0x7f);\n}\n\nstatic inline unsigned char validate_checksum (zbar_decoder_t *dcode)\n{\n    unsigned idx, sum, i, acc = 0;\n    unsigned char check, err;\n\n    code128_decoder_t *dcode128 = &dcode->code128;\n    if(dcode128->character < 3)\n        return(1);\n\n    /* add in irregularly weighted start character */\n    idx = (dcode128->direction) ? dcode128->character - 1 : 0;\n    sum = dcode->buf[idx];\n    if(sum >= 103)\n        sum -= 103;\n\n    /* calculate sum in reverse to avoid multiply operations */\n    for(i = dcode128->character - 3; i; i--) {\n        zassert(sum < 103, -1, \"dir=%x i=%x sum=%x acc=%x %s\\n\",\n                dcode128->direction, i, sum, acc,\n                _zbar_decoder_buf_dump(dcode->buf, dcode128->character));\n        idx = (dcode128->direction) ? dcode128->character - 1 - i : i;\n        acc += dcode->buf[idx];\n        if(acc >= 103)\n            acc -= 103;\n        zassert(acc < 103, -1, \"dir=%x i=%x sum=%x acc=%x %s\\n\",\n                dcode128->direction, i, sum, acc,\n                _zbar_decoder_buf_dump(dcode->buf, dcode128->character));\n        sum += acc;\n        if(sum >= 103)\n            sum -= 103;\n    }\n\n    /* and compare to check character */\n    idx = (dcode128->direction) ? 1 : dcode128->character - 2;\n    check = dcode->buf[idx];\n    dbprintf(2, \" chk=%02x(%02x)\", sum, check);\n    err = (sum != check);\n    if(err)\n        dbprintf(1, \" [checksum error]\\n\");\n    return(err);\n}\n\n/* expand and decode character set C */\nstatic inline unsigned postprocess_c (zbar_decoder_t *dcode,\n                                      unsigned start,\n                                      unsigned end,\n                                      unsigned dst)\n{\n    unsigned i, j;\n\n    /* expand buffer to accomodate 2x set C characters (2 digits per-char) */\n    unsigned delta = end - start;\n    unsigned newlen = dcode->code128.character + delta;\n    size_buf(dcode, newlen);\n\n    /* relocate unprocessed data to end of buffer */\n    memmove(dcode->buf + start + delta, dcode->buf + start,\n            dcode->code128.character - start);\n    dcode->code128.character = newlen;\n\n    for(i = 0, j = dst; i < delta; i++, j += 2) {\n        /* convert each set C character into two ASCII digits */\n        unsigned char code = dcode->buf[start + delta + i];\n        dcode->buf[j] = '0';\n        if(code >= 50) {\n            code -= 50;\n            dcode->buf[j] += 5;\n        }\n        if(code >= 30) {\n            code -= 30;\n            dcode->buf[j] += 3;\n        }\n        if(code >= 20) {\n            code -= 20;\n            dcode->buf[j] += 2;\n        }\n        if(code >= 10) {\n            code -= 10;\n            dcode->buf[j] += 1;\n        }\n        zassert(dcode->buf[j] <= '9', delta,\n                \"start=%x end=%x i=%x j=%x %s\\n\", start, end, i, j,\n                _zbar_decoder_buf_dump(dcode->buf, dcode->code128.character));\n        zassert(code <= 9, delta,\n                \"start=%x end=%x i=%x j=%x %s\\n\", start, end, i, j,\n                _zbar_decoder_buf_dump(dcode->buf, dcode->code128.character));\n        dcode->buf[j + 1] = '0' + code;\n    }\n    return(delta);\n}\n\n/* resolve scan direction and convert to ASCII */\nstatic inline unsigned char postprocess (zbar_decoder_t *dcode)\n{\n    unsigned i, j, cexp;\n    unsigned char code = 0, charset;\n    code128_decoder_t *dcode128 = &dcode->code128;\n    dbprintf(2, \"\\n    postproc len=%d\", dcode128->character);\n    dcode->modifiers = 0;\n    dcode->direction = 1 - 2 * dcode128->direction;\n    if(dcode128->direction) {\n        /* reverse buffer */\n        dbprintf(2, \" (rev)\");\n        for(i = 0; i < dcode128->character / 2; i++) {\n            unsigned j = dcode128->character - 1 - i;\n            code = dcode->buf[i];\n            dcode->buf[i] = dcode->buf[j];\n            dcode->buf[j] = code;\n        }\n        zassert(dcode->buf[dcode128->character - 1] == STOP_REV, 1,\n                \"dir=%x %s\\n\", dcode128->direction,\n                _zbar_decoder_buf_dump(dcode->buf, dcode->code128.character));\n    }\n    else\n        zassert(dcode->buf[dcode128->character - 1] == STOP_FWD, 1,\n                \"dir=%x %s\\n\", dcode128->direction,\n                _zbar_decoder_buf_dump(dcode->buf, dcode->code128.character));\n\n    code = dcode->buf[0];\n    zassert(code >= START_A && code <= START_C, 1, \"%s\\n\",\n            _zbar_decoder_buf_dump(dcode->buf, dcode->code128.character));\n\n    charset = code - START_A;\n    cexp = (code == START_C) ? 1 : 0;\n    dbprintf(2, \" start=%c\", 'A' + charset);\n\n    for(i = 1, j = 0; i < dcode128->character - 2; i++) {\n        unsigned char code = dcode->buf[i];\n        zassert(!(code & 0x80), 1,\n                \"i=%x j=%x code=%02x charset=%x cexp=%x %s\\n\",\n                i, j, code, charset, cexp,\n                _zbar_decoder_buf_dump(dcode->buf, dcode->code128.character));\n\n        if((charset & 0x2) && (code < 100))\n            /* defer character set C for expansion */\n            continue;\n        else if(code < 0x60) {\n            /* convert character set B to ASCII */\n            code = code + 0x20;\n            if((!charset || (charset == 0x81)) && (code >= 0x60))\n                /* convert character set A to ASCII */\n                code -= 0x60;\n            dcode->buf[j++] = code;\n            if(charset & 0x80)\n                charset &= 0x7f;\n        }\n        else {\n            dbprintf(2, \" %02x\", code);\n            if(charset & 0x2) {\n                unsigned delta;\n                /* expand character set C to ASCII */\n                zassert(cexp, 1, \"i=%x j=%x code=%02x charset=%x cexp=%x %s\\n\",\n                        i, j, code, charset, cexp,\n                        _zbar_decoder_buf_dump(dcode->buf,\n                                                dcode->code128.character));\n                delta = postprocess_c(dcode, cexp, i, j);\n                i += delta;\n                j += delta * 2;\n                cexp = 0;\n            }\n            if(code < CODE_C) {\n                if(code == SHIFT)\n                    charset |= 0x80;\n                else if(code == FNC2) {\n                    /* FIXME FNC2 - message append */\n                }\n                else if(code == FNC3) {\n                    /* FIXME FNC3 - initialize */\n                }\n            }\n            else if(code == FNC1) {\n                /* FNC1 - Code 128 subsets or ASCII 0x1d */\n                if(i == 1)\n                    dcode->modifiers |= MOD(ZBAR_MOD_GS1);\n                else if(i == 2)\n                    dcode->modifiers |= MOD(ZBAR_MOD_AIM);\n                else if(i < dcode->code128.character - 3)\n                    dcode->buf[j++] = 0x1d;\n                /*else drop trailing FNC1 */\n            }\n            else if(code >= START_A) {\n                dbprintf(1, \" [truncated]\\n\");\n                return(1);\n            }\n            else {\n                unsigned char newset = CODE_A - code;\n                zassert(code >= CODE_C && code <= CODE_A, 1,\n                        \"i=%x j=%x code=%02x charset=%x cexp=%x %s\\n\",\n                        i, j, code, charset, cexp,\n                        _zbar_decoder_buf_dump(dcode->buf,\n                                                dcode->code128.character));\n                if(newset != charset)\n                    charset = newset;\n                else {\n                    /* FIXME FNC4 - extended ASCII */\n                }\n            }\n            if(charset & 0x2)\n                cexp = i + 1;\n        }\n    }\n    if(charset & 0x2) {\n        zassert(cexp, 1, \"i=%x j=%x code=%02x charset=%x cexp=%x %s\\n\",\n                i, j, code, charset, cexp,\n                _zbar_decoder_buf_dump(dcode->buf,\n                                        dcode->code128.character));\n        j += postprocess_c(dcode, cexp, i, j) * 2;\n    }\n    zassert(j < dcode->buf_alloc, 1, \"j=%02x %s\\n\", j,\n            _zbar_decoder_buf_dump(dcode->buf, dcode->code128.character));\n    dcode->buflen = j;\n    dcode->buf[j] = '\\0';\n    dcode->code128.character = j;\n    return(0);\n}\n\nzbar_symbol_type_t _zbar_decode_code128 (zbar_decoder_t *dcode)\n{\n    code128_decoder_t *dcode128 = &dcode->code128;\n    signed char c;\n\n    /* update latest character width */\n    dcode128->s6 -= get_width(dcode, 6);\n    dcode128->s6 += get_width(dcode, 0);\n\n    if((dcode128->character < 0)\n       ? get_color(dcode) != ZBAR_SPACE\n       : (/* process every 6th element of active symbol */\n          ++dcode128->element != 6 ||\n          /* decode color based on direction */\n          get_color(dcode) != dcode128->direction))\n        return(0);\n    dcode128->element = 0;\n\n    dbprintf(2, \"      code128[%c%02d+%x]:\",\n             (dcode128->direction) ? '<' : '>',\n             dcode128->character, dcode128->element);\n\n    c = decode6(dcode);\n    if(dcode128->character < 0) {\n        unsigned qz;\n        dbprintf(2, \" c=%02x\", c);\n        if(c < START_A || c > STOP_REV || c == STOP_FWD) {\n            dbprintf(2, \" [invalid]\\n\");\n            return(0);\n        }\n        qz = get_width(dcode, 6);\n        if(qz && qz < (dcode128->s6 * 3) / 4) {\n            dbprintf(2, \" [invalid qz %d]\\n\", qz);\n            return(0);\n        }\n        /* decoded valid start/stop */\n        /* initialize state */\n        dcode128->character = 1;\n        if(c == STOP_REV) {\n            dcode128->direction = ZBAR_BAR;\n            dcode128->element = 7;\n        }\n        else\n            dcode128->direction = ZBAR_SPACE;\n        dcode128->start = c;\n        dcode128->width = dcode128->s6;\n        dbprintf(2, \" dir=%x [valid start]\\n\", dcode128->direction);\n        return(0);\n    }\n    else if(c < 0 || size_buf(dcode, dcode128->character + 1)) {\n        dbprintf(1, (c < 0) ? \" [aborted]\\n\" : \" [overflow]\\n\");\n        if(dcode128->character > 1)\n            release_lock(dcode, ZBAR_CODE128);\n        dcode128->character = -1;\n        return(0);\n    }\n    else {\n        unsigned dw;\n        if(dcode128->width > dcode128->s6)\n            dw = dcode128->width - dcode128->s6;\n        else\n            dw = dcode128->s6 - dcode128->width;\n        dw *= 4;\n        if(dw > dcode128->width) {\n            dbprintf(1, \" [width var]\\n\");\n            if(dcode128->character > 1)\n                release_lock(dcode, ZBAR_CODE128);\n            dcode128->character = -1;\n            return(0);\n        }\n    }\n    dcode128->width = dcode128->s6;\n\n    zassert(dcode->buf_alloc > dcode128->character, 0,\n            \"alloc=%x idx=%x c=%02x %s\\n\",\n            dcode->buf_alloc, dcode128->character, c,\n            _zbar_decoder_buf_dump(dcode->buf, dcode->buf_alloc));\n\n    if(dcode128->character == 1) {\n        /* lock shared resources */\n        if(acquire_lock(dcode, ZBAR_CODE128)) {\n            dcode128->character = -1;\n            return(0);\n        }\n        dcode->buf[0] = dcode128->start;\n    }\n\n    dcode->buf[dcode128->character++] = c;\n\n    if(dcode128->character > 2 &&\n       ((dcode128->direction)\n        ? c >= START_A && c <= START_C\n        : c == STOP_FWD)) {\n        /* FIXME STOP_FWD should check extra bar (and QZ!) */\n        zbar_symbol_type_t sym = ZBAR_CODE128;\n        if(validate_checksum(dcode) || postprocess(dcode))\n            sym = ZBAR_NONE;\n        else if(dcode128->character < CFG(*dcode128, ZBAR_CFG_MIN_LEN) ||\n                (CFG(*dcode128, ZBAR_CFG_MAX_LEN) > 0 &&\n                 dcode128->character > CFG(*dcode128, ZBAR_CFG_MAX_LEN))) {\n            dbprintf(2, \" [invalid len]\\n\");\n            sym = ZBAR_NONE;\n        }\n        else\n            dbprintf(2, \" [valid end]\\n\");\n        dcode128->character = -1;\n        if(!sym)\n            release_lock(dcode, ZBAR_CODE128);\n        return(sym);\n    }\n\n    dbprintf(2, \"\\n\");\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/code128.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _CODE128_H_\n#define _CODE128_H_\n\n/* Code 128 specific decode state */\ntypedef struct code128_decoder_s {\n    unsigned direction : 1;     /* scan direction: 0=fwd/space, 1=rev/bar */\n    unsigned element : 3;       /* element offset 0-5 */\n    int character : 12;         /* character position in symbol */\n    unsigned char start;        /* start character */\n    unsigned s6;                /* character width */\n    unsigned width;             /* last character width */\n\n    unsigned config;\n    int configs[NUM_CFGS];      /* int valued configurations */\n} code128_decoder_t;\n\n/* reset Code 128 specific state */\nstatic inline void code128_reset (code128_decoder_t *dcode128)\n{\n    dcode128->direction = 0;\n    dcode128->element = 0;\n    dcode128->character = -1;\n    dcode128->s6 = 0;\n}\n\n/* decode Code 128 symbols */\nzbar_symbol_type_t _zbar_decode_code128(zbar_decoder_t *dcode);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/code39.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <string.h>     /* memmove */\n\n#include <zbar.h>\n\n#ifdef DEBUG_CODE39\n# define DEBUG_LEVEL (DEBUG_CODE39)\n#endif\n#include \"debug.h\"\n#include \"decoder.h\"\n\n#define NUM_CHARS (0x2c)\n\nstatic const unsigned char code39_hi[32] = {\n    0x80 | 0x00,  /* 2 next */\n    0x40 | 0x02,  /* 4 */\n    0x80 | 0x06,  /* 2 next */\n    0xc0 | 0x08,  /* 2 skip */\n    0x40 | 0x0a,  /* 4 */\n    0x80 | 0x0e,  /* 2 next */\n    0xc0 | 0x10,  /* 2 skip */\n    0x00 | 0x12,  /* direct */\n\n    0x80 | 0x13,  /* 2 next */\n    0xc0 | 0x15,  /* 2 skip */\n    0x80 | 0x17,  /* 2 next */\n    0xff,\n    0xc0 | 0x19,  /* 2 skip */\n    0x00 | 0x1b,  /* direct */\n    0xff,\n    0xff,\n\n    0x40 | 0x1c,  /* 4 */\n    0x80 | 0x20,  /* 2 next */\n    0xc0 | 0x22,  /* 2 skip */\n    0x00 | 0x24,  /* direct */\n    0x80 | 0x25,  /* 2 next */\n    0xff,\n    0x00 | 0x27,  /* direct */\n    0xff,\n\n    0xc0 | 0x28,  /* 2 skip */\n    0x00 | 0x2a,  /* direct */\n    0xff,\n    0xff,\n    0x00 | 0x2b,  /* direct */\n    0xff,\n    0xff,\n    0xff,\n};\n\ntypedef struct char39_s {\n    unsigned char chk, rev, fwd;\n} char39_t;\n\nstatic const char39_t code39_encodings[NUM_CHARS] = {\n    { 0x07, 0x1a, 0x20 }, /* 00 */\n    { 0x0d, 0x10, 0x03 }, /* 01 */\n    { 0x13, 0x17, 0x22 }, /* 02 */\n    { 0x16, 0x1d, 0x23 }, /* 03 */\n    { 0x19, 0x0d, 0x05 }, /* 04 */\n    { 0x1c, 0x13, 0x06 }, /* 05 */\n    { 0x25, 0x07, 0x0c }, /* 06 */\n    { 0x2a, 0x2a, 0x27 }, /* 07 */\n    { 0x31, 0x04, 0x0e }, /* 08 */\n    { 0x34, 0x00, 0x0f }, /* 09 */\n    { 0x43, 0x15, 0x25 }, /* 0a */\n    { 0x46, 0x1c, 0x26 }, /* 0b */\n    { 0x49, 0x0b, 0x08 }, /* 0c */\n    { 0x4c, 0x12, 0x09 }, /* 0d */\n    { 0x52, 0x19, 0x2b }, /* 0e */\n    { 0x58, 0x0f, 0x00 }, /* 0f */\n    { 0x61, 0x02, 0x11 }, /* 10 */\n    { 0x64, 0x09, 0x12 }, /* 11 */\n    { 0x70, 0x06, 0x13 }, /* 12 */\n    { 0x85, 0x24, 0x16 }, /* 13 */\n    { 0x8a, 0x29, 0x28 }, /* 14 */\n    { 0x91, 0x21, 0x18 }, /* 15 */\n    { 0x94, 0x2b, 0x19 }, /* 16 */\n    { 0xa2, 0x28, 0x29 }, /* 17 */\n    { 0xa8, 0x27, 0x2a }, /* 18 */\n    { 0xc1, 0x1f, 0x1b }, /* 19 */\n    { 0xc4, 0x26, 0x1c }, /* 1a */\n    { 0xd0, 0x23, 0x1d }, /* 1b */\n    { 0x03, 0x14, 0x1e }, /* 1c */\n    { 0x06, 0x1b, 0x1f }, /* 1d */\n    { 0x09, 0x0a, 0x01 }, /* 1e */\n    { 0x0c, 0x11, 0x02 }, /* 1f */\n    { 0x12, 0x18, 0x21 }, /* 20 */\n    { 0x18, 0x0e, 0x04 }, /* 21 */\n    { 0x21, 0x01, 0x0a }, /* 22 */\n    { 0x24, 0x08, 0x0b }, /* 23 */\n    { 0x30, 0x05, 0x0d }, /* 24 */\n    { 0x42, 0x16, 0x24 }, /* 25 */\n    { 0x48, 0x0c, 0x07 }, /* 26 */\n    { 0x60, 0x03, 0x10 }, /* 27 */\n    { 0x81, 0x1e, 0x14 }, /* 28 */\n    { 0x84, 0x25, 0x15 }, /* 29 */\n    { 0x90, 0x22, 0x17 }, /* 2a */\n    { 0xc0, 0x20, 0x1a }, /* 2b */\n};\n\nstatic const unsigned char code39_characters[NUM_CHARS] =\n    \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. $/+%*\";\n\nstatic inline unsigned char code39_decode1 (unsigned char enc,\n                                            unsigned e,\n                                            unsigned s)\n{\n    unsigned char E = decode_e(e, s, 72);\n    if(E > 18)\n        return(0xff);\n    enc <<= 1;\n    if(E > 6) {\n        enc |= 1;\n        dbprintf(2, \"1\");\n    }\n    else\n        dbprintf(2, \"0\");\n    return(enc);\n}\n\nstatic inline signed char code39_decode9 (zbar_decoder_t *dcode)\n{\n    code39_decoder_t *dcode39 = &dcode->code39;\n\n    if(dcode39->s9 < 9)\n        return(-1);\n\n    /* threshold bar width ratios */\n    unsigned char i, enc = 0;\n    for(i = 0; i < 5; i++) {\n        enc = code39_decode1(enc, get_width(dcode, i), dcode39->s9);\n        if(enc == 0xff)\n            return(-1);\n    }\n    zassert(enc < 0x20, -1, \" enc=%x s9=%x\\n\", enc, dcode39->s9);\n\n    /* lookup first 5 encoded widths for coarse decode */\n    unsigned char idx = code39_hi[enc];\n    if(idx == 0xff)\n        return(-1);\n\n    /* encode remaining widths (NB first encoded width is lost) */\n    for(; i < 9; i++) {\n        enc = code39_decode1(enc, get_width(dcode, i), dcode39->s9);\n        if(enc == 0xff)\n            return(-1);\n    }\n\n    if((idx & 0xc0) == 0x80)\n        idx = (idx & 0x3f) + ((enc >> 3) & 1);\n    else if((idx & 0xc0) == 0xc0)\n        idx = (idx & 0x3f) + ((enc >> 2) & 1);\n    else if(idx & 0xc0)\n        idx = (idx & 0x3f) + ((enc >> 2) & 3);\n    zassert(idx < 0x2c, -1, \" idx=%x enc=%x s9=%x\\n\", idx, enc, dcode39->s9);\n\n    const char39_t *c = &code39_encodings[idx];\n    dbprintf(2, \" i=%02x chk=%02x c=%02x/%02x\", idx, c->chk, c->fwd, c->rev);\n    if(enc != c->chk)\n        return(-1);\n\n    dcode39->width = dcode39->s9;\n    return((dcode39->direction) ? c->rev : c->fwd);\n}\n\nstatic inline signed char code39_decode_start (zbar_decoder_t *dcode)\n{\n    code39_decoder_t *dcode39 = &dcode->code39;\n    dbprintf(2, \" s=%d \", dcode39->s9);\n\n    signed char c = code39_decode9(dcode);\n    if(c != 0x19 && c != 0x2b) {\n        dbprintf(2, \"\\n\");\n        return(ZBAR_NONE);\n    }\n    dcode39->direction ^= (c == 0x19);\n\n    /* check leading quiet zone - spec is 10x */\n    unsigned quiet = get_width(dcode, 9);\n    if(quiet && quiet < dcode39->s9 / 2) {\n        dbprintf(2, \" [invalid quiet]\\n\");\n        return(ZBAR_NONE);\n    }\n\n    dcode39->element = 9;\n    dcode39->character = 0;\n    dbprintf(1, \" dir=%x [valid start]\\n\", dcode39->direction);\n    return(ZBAR_PARTIAL);\n}\n\nstatic inline int code39_postprocess (zbar_decoder_t *dcode)\n{\n    code39_decoder_t *dcode39 = &dcode->code39;\n    dcode->direction = 1 - 2 * dcode39->direction;\n    int i;\n    if(dcode39->direction) {\n        /* reverse buffer */\n        dbprintf(2, \" (rev)\");\n        for(i = 0; i < dcode39->character / 2; i++) {\n            unsigned j = dcode39->character - 1 - i;\n            char code = dcode->buf[i];\n            dcode->buf[i] = dcode->buf[j];\n            dcode->buf[j] = code;\n        }\n    }\n    for(i = 0; i < dcode39->character; i++)\n        dcode->buf[i] = ((dcode->buf[i] < 0x2b)\n                         ? code39_characters[(unsigned)dcode->buf[i]]\n                         : '?');\n    zassert(i < dcode->buf_alloc, -1, \"i=%02x %s\\n\", i,\n            _zbar_decoder_buf_dump(dcode->buf, dcode39->character));\n    dcode->buflen = i;\n    dcode->buf[i] = '\\0';\n    dcode->modifiers = 0;\n    return(0);\n}\n\nstatic inline int\ncheck_width (unsigned ref,\n             unsigned w)\n{\n    unsigned dref = ref;\n    ref *= 4;\n    w *= 4;\n    return(ref - dref <= w && w <= ref + dref);\n}\n\nzbar_symbol_type_t _zbar_decode_code39 (zbar_decoder_t *dcode)\n{\n    code39_decoder_t *dcode39 = &dcode->code39;\n\n    /* update latest character width */\n    dcode39->s9 -= get_width(dcode, 9);\n    dcode39->s9 += get_width(dcode, 0);\n\n    if(dcode39->character < 0) {\n        if(get_color(dcode) != ZBAR_BAR)\n            return(ZBAR_NONE);\n        dbprintf(2, \"      code39:\");\n        return(code39_decode_start(dcode));\n    }\n\n    if(++dcode39->element < 9)\n        return(ZBAR_NONE);\n\n    dbprintf(2, \"      code39[%c%02d+%x]\",\n             (dcode39->direction) ? '<' : '>',\n             dcode39->character, dcode39->element);\n\n    if(dcode39->element == 10) {\n        unsigned space = get_width(dcode, 0);\n        if(dcode39->character &&\n           dcode->buf[dcode39->character - 1] == 0x2b) {  /* STOP */\n            /* trim STOP character */\n            dcode39->character--;\n            zbar_symbol_type_t sym = ZBAR_NONE;\n\n            /* trailing quiet zone check */\n            if(space && space < dcode39->width / 2)\n                dbprintf(2, \" [invalid qz]\\n\");\n            else if(dcode39->character < CFG(*dcode39, ZBAR_CFG_MIN_LEN) ||\n                    (CFG(*dcode39, ZBAR_CFG_MAX_LEN) > 0 &&\n                     dcode39->character > CFG(*dcode39, ZBAR_CFG_MAX_LEN)))\n                dbprintf(2, \" [invalid len]\\n\");\n            else if(!code39_postprocess(dcode)) {\n                /* FIXME checksum */\n                dbprintf(2, \" [valid end]\\n\");\n                sym = ZBAR_CODE39;\n            }\n            dcode39->character = -1;\n            if(!sym)\n                release_lock(dcode, ZBAR_CODE39);\n            return(sym);\n        }\n        if(space > dcode39->width / 2) {\n            /* inter-character space check failure */\n            dbprintf(2, \" ics>%d [invalid ics]\", dcode39->width);\n            if(dcode39->character)\n                release_lock(dcode, ZBAR_CODE39);\n            dcode39->character = -1;\n        }\n        dcode39->element = 0;\n        dbprintf(2, \"\\n\");\n        return(ZBAR_NONE);\n    }\n\n    dbprintf(2, \" s=%d \", dcode39->s9);\n    if(!check_width(dcode39->width, dcode39->s9)) {\n        dbprintf(2, \" [width]\\n\");\n        if(dcode39->character)\n            release_lock(dcode, ZBAR_CODE39);\n        dcode39->character = -1;\n        return(ZBAR_NONE);\n    }\n\n    signed char c = code39_decode9(dcode);\n    dbprintf(2, \" c=%d\", c);\n\n    /* lock shared resources */\n    if(!dcode39->character && acquire_lock(dcode, ZBAR_CODE39)) {\n        dcode39->character = -1;\n        return(ZBAR_PARTIAL);\n    }\n\n    if(c < 0 || size_buf(dcode, dcode39->character + 1)) {\n        dbprintf(1, (c < 0) ? \" [aborted]\\n\" : \" [overflow]\\n\");\n        release_lock(dcode, ZBAR_CODE39);\n        dcode39->character = -1;\n        return(ZBAR_NONE);\n    }\n    else {\n        zassert(c < 0x2c, ZBAR_NONE, \"c=%02x s9=%x\\n\", c, dcode39->s9);\n        dbprintf(2, \"\\n\");\n    }\n\n    dcode->buf[dcode39->character++] = c;\n\n    return(ZBAR_NONE);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/code39.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _CODE39_H_\n#define _CODE39_H_\n\n/* Code 39 specific decode state */\ntypedef struct code39_decoder_s {\n    unsigned direction : 1;     /* scan direction: 0=fwd, 1=rev */\n    unsigned element : 4;       /* element offset 0-8 */\n    int character : 12;         /* character position in symbol */\n    unsigned s9;                /* current character width */\n    unsigned width;             /* last character width */\n\n    unsigned config;\n    int configs[NUM_CFGS];      /* int valued configurations */\n} code39_decoder_t;\n\n/* reset Code 39 specific state */\nstatic inline void code39_reset (code39_decoder_t *dcode39)\n{\n    dcode39->direction = 0;\n    dcode39->element = 0;\n    dcode39->character = -1;\n    dcode39->s9 = 0;\n}\n\n/* decode Code 39 symbols */\nzbar_symbol_type_t _zbar_decode_code39(zbar_decoder_t *dcode);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/code93.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <zbar.h>\n\n#ifdef DEBUG_CODE93\n# define DEBUG_LEVEL (DEBUG_CODE93)\n#endif\n#include \"debug.h\"\n#include \"decoder.h\"\n\nstatic const signed char code93_hash[0x40] = {\n    0x0f, 0x2b, 0x30, 0x38, 0x13, 0x1b, 0x11, 0x2a,\n    0x0a,   -1, 0x2f, 0x0f, 0x38, 0x38, 0x2f, 0x37,\n    0x24, 0x3a, 0x1b, 0x36, 0x18, 0x26, 0x02, 0x2c,\n    0x2b, 0x05, 0x21, 0x3b, 0x04, 0x15, 0x12, 0x0c,\n    0x00, 0x26, 0x23, 0x00,   -1, 0x2e, 0x3f, 0x13,\n    0x2e, 0x36,   -1, 0x08, 0x09,   -1, 0x15, 0x14,\n      -1, 0x00, 0x21, 0x3b,   -1, 0x33, 0x00,   -1,\n    0x2d, 0x0c, 0x1b, 0x0a, 0x3f, 0x3f, 0x29, 0x1c,\n};\n\nstatic inline int\ncheck_width (unsigned cur,\n             unsigned prev)\n{\n    unsigned dw;\n    if(prev > cur)\n        dw = prev - cur;\n    else\n        dw = cur - prev;\n    dw *= 4;\n    return(dw > prev);\n}\n\nstatic inline int\nencode6 (zbar_decoder_t *dcode)\n{\n    /* build edge signature of character */\n    unsigned s = dcode->s6;\n    int sig = 0, i;\n\n    dbprintf(2, \" s=%d \", s);\n    if(s < 9)\n        return(-1);\n\n    for(i = 6; --i > 0; ) {\n        unsigned c = decode_e(pair_width(dcode, i), s, 9);\n        if(c > 3)\n            return(-1);\n        sig = (sig << 2) | c;\n        dbprintf(2, \"%d\", c);\n    }\n    dbprintf(2, \" sig=%03x\", sig);\n\n    return(sig);\n}\n\nstatic inline int\nvalidate_sig (int sig)\n{\n    int i, sum = 0, emin = 0, sig0 = 0, sig1 = 0;\n    dbprintf(3, \" sum=0\");\n    for(i = 3; --i >= 0; ) {\n        int e = sig & 3;\n        sig >>= 2;\n        sum = e - sum;\n        sig1 <<= 4;\n        sig1 += sum;\n        dbprintf(3, \"%d\", sum);\n        if(!i)\n            break;\n\n        e = sig & 3;\n        sig >>= 2;\n        sum = e - sum;\n        sig0 <<= 4;\n        if(emin > sum)\n            emin = sum;\n        sig0 += sum;\n        dbprintf(3, \"%d\", sum);\n    }\n\n    dbprintf(3, \" emin=%d sig=%03x/%03x\", emin, sig1 & 0xfff, sig0 & 0xfff);\n\n    emin = emin + (emin << 4) + (emin << 8);\n    sig0 -= emin;\n    sig1 += emin;\n\n    dbprintf(3, \"=%03x/%03x\", sig1 & 0xfff, sig0 & 0xfff);\n    return((sig0 | sig1) & 0x888);\n}\n\nstatic inline int\ndecode6 (zbar_decoder_t *dcode)\n{\n    int sig = encode6(dcode);\n    int g0, g1, c;\n    if(sig < 0 ||\n       (sig & 0x3) + ((sig >> 4) & 0x3) + ((sig >> 8) & 0x3) != 3 ||\n       validate_sig(sig))\n        return(-1);\n\n    if(dcode->code93.direction) {\n        /* reverse signature */\n        unsigned tmp = sig & 0x030;\n        sig = ((sig & 0x3c0) >> 6) | ((sig & 0x00f) << 6);\n        sig = ((sig & 0x30c) >> 2) | ((sig & 0x0c3) << 2) | tmp;\n    }\n\n    g0 = code93_hash[(sig - (sig >> 4)) & 0x3f];\n    g1 = code93_hash[((sig >> 2) - (sig >> 7)) & 0x3f];\n    zassert(g0 >= 0 && g1 >= 0, -1,\n            \"dir=%x sig=%03x g0=%03x g1=%03x %s\\n\",\n            dcode->code93.direction, sig, g0, g1,\n            _zbar_decoder_buf_dump(dcode->buf, dcode->code93.character));\n\n    c = (g0 + g1) & 0x3f;\n    dbprintf(2, \" g0=%x g1=%x c=%02x\", g0, g1, c);\n    return(c);\n}\n\nstatic inline zbar_symbol_type_t\ndecode_start (zbar_decoder_t *dcode)\n{\n    code93_decoder_t *dcode93 = &dcode->code93;\n    unsigned dir, qz, s = dcode->s6;\n    int c;\n\n    dbprintf(2, \"      code93:\");\n    c = encode6(dcode);\n    if(c < 0 || (c != 0x00f && c != 0x0f0))\n        return(ZBAR_NONE);\n\n    dir = (c >> 7);\n\n    if(dir) {\n        if(decode_e(pair_width(dcode, 0), s, 9))\n            return(ZBAR_NONE);\n        qz = get_width(dcode, 8);\n    }\n\n    qz = get_width(dcode, 7);\n    if(qz && qz < (s * 3) / 4) {\n        dbprintf(2, \" [invalid qz %d]\", qz);\n        return(ZBAR_NONE);\n    }\n\n    /* decoded valid start/stop - initialize state */\n    dcode93->direction = dir;\n    dcode93->element = (!dir) ? 0 : 7;\n    dcode93->character = 0;\n    dcode93->width = s;\n\n    dbprintf(2, \" dir=%x [valid start]\", dir);\n    return(ZBAR_PARTIAL);\n}\n\nstatic inline zbar_symbol_type_t\ndecode_abort (zbar_decoder_t *dcode,\n              const char *reason)\n{\n    code93_decoder_t *dcode93 = &dcode->code93;\n    if(dcode93->character > 1)\n        release_lock(dcode, ZBAR_CODE93);\n    dcode93->character = -1;\n    if(reason)\n        dbprintf(1, \" [%s]\\n\", reason);\n    return(ZBAR_NONE);\n}\n\nstatic inline zbar_symbol_type_t\ncheck_stop (zbar_decoder_t *dcode)\n{\n    code93_decoder_t *dcode93 = &dcode->code93;\n    unsigned n = dcode93->character, s = dcode->s6;\n    int max_len = CFG(*dcode93, ZBAR_CFG_MAX_LEN);\n    if(n < 2 ||\n       n < CFG(*dcode93, ZBAR_CFG_MIN_LEN) ||\n       (max_len && n > max_len))\n        return(decode_abort(dcode, \"invalid len\"));\n\n    if(dcode93->direction) {\n        unsigned qz = get_width(dcode, 0);\n        if(qz && qz < (s * 3) / 4)\n            return(decode_abort(dcode, \"invalid qz\"));\n    }\n    else if(decode_e(pair_width(dcode, 0), s, 9))\n        /* FIXME forward-trailing QZ check */\n        return(decode_abort(dcode, \"invalid stop\"));\n\n    return(ZBAR_CODE93);\n}\n\n#define CHKMOD (47)\n\nstatic inline int\nplusmod47 (int acc,\n           int add)\n{\n    acc += add;\n    if(acc >= CHKMOD)\n        acc -= CHKMOD;\n    return(acc);\n}\n\nstatic inline int\nvalidate_checksums (zbar_decoder_t *dcode)\n{\n    code93_decoder_t *dcode93 = &dcode->code93;\n    unsigned d, i, n = dcode93->character;\n    unsigned sum_c = 0, acc_c = 0, i_c = (n - 2) % 20;\n    unsigned sum_k = 0, acc_k = 0, i_k = (n - 1) % 15;\n\n    for(i = 0; i < n - 2; i++) {\n        d = dcode->buf[(dcode93->direction) ? n - 1 - i : i];\n\n        if(!i_c--) {\n            acc_c = 0;\n            i_c = 19;\n        }\n        acc_c = plusmod47(acc_c, d);\n        sum_c = plusmod47(sum_c, acc_c);\n\n        if(!i_k--) {\n            acc_k = 0;\n            i_k = 14;\n        }\n        acc_k = plusmod47(acc_k, d);\n        sum_k = plusmod47(sum_k, acc_k);\n    }\n\n    d = dcode->buf[(dcode93->direction) ? 1 : n - 2];\n    dbprintf(2, \" C=%02x?=%02x\", d, sum_c);\n    if(d != sum_c)\n        return(1);\n\n    acc_k = plusmod47(acc_k, sum_c);\n    sum_k = plusmod47(sum_k, acc_k);\n    d = dcode->buf[(dcode93->direction) ? 0 : n - 1];\n    dbprintf(2, \" K=%02x?=%02x\", d, sum_k);\n    if(d != sum_k)\n        return(1);\n\n    return(0);\n}\n\n/* resolve scan direction and convert to ASCII */\nstatic inline int\npostprocess (zbar_decoder_t *dcode)\n{\n    code93_decoder_t *dcode93 = &dcode->code93;\n    unsigned i, j, n = dcode93->character;\n    static const unsigned char code93_graph[] = \"-. $/+%\";\n    static const unsigned char code93_s2[] =\n        \"\\x1b\\x1c\\x1d\\x1e\\x1f;<=>?[\\\\]^_{|}~\\x7f\\x00\\x40`\\x7f\\x7f\\x7f\";\n\n    dbprintf(2, \"\\n    postproc len=%d\", n);\n    dcode->direction = 1 - 2 * dcode93->direction;\n    if(dcode93->direction) {\n        /* reverse buffer */\n        dbprintf(2, \" (rev)\");\n        for(i = 0; i < n / 2; i++) {\n            unsigned j = n - 1 - i;\n            unsigned char d = dcode->buf[i];\n            dcode->buf[i] = dcode->buf[j];\n            dcode->buf[j] = d;\n        }\n    }\n\n    n -= 2;\n    for(i = 0, j = 0; i < n; ) {\n        unsigned char d = dcode->buf[i++];\n        if(d < 0xa)\n            d = '0' + d;\n        else if(d < 0x24)\n            d = 'A' + d - 0xa;\n        else if(d < 0x2b)\n            d = code93_graph[d - 0x24];\n        else {\n            unsigned shift = d;\n            zassert(shift < 0x2f, -1, \"%s\\n\",\n                    _zbar_decoder_buf_dump(dcode->buf, dcode93->character));\n            d = dcode->buf[i++];\n            if(d < 0xa || d >= 0x24)\n                return(1);\n            d -= 0xa;\n            switch(shift)\n            {\n            case 0x2b: d++; break;\n            case 0x2c: d = code93_s2[d]; break;\n            case 0x2d: d += 0x21; break;\n            case 0x2e: d += 0x61; break;\n            default: return(1);\n            }\n        }\n        dcode->buf[j++] = d;\n    }\n\n    zassert(j < dcode->buf_alloc, 1,\n            \"j=%02x %s\\n\", j,\n            _zbar_decoder_buf_dump(dcode->buf, dcode->code93.character));\n    dcode->buflen = j;\n    dcode->buf[j] = '\\0';\n    dcode->modifiers = 0;\n    return(0);\n}\n\nzbar_symbol_type_t\n_zbar_decode_code93 (zbar_decoder_t *dcode)\n{\n    code93_decoder_t *dcode93 = &dcode->code93;\n    int c;\n\n    if(dcode93->character < 0) {\n        zbar_symbol_type_t sym;\n        if(get_color(dcode) != ZBAR_BAR)\n            return(ZBAR_NONE);\n        sym = decode_start(dcode);\n        dbprintf(2, \"\\n\");\n        return(sym);\n    }\n\n    if(/* process every 6th element of active symbol */\n       ++dcode93->element != 6 ||\n       /* decode color based on direction */\n       get_color(dcode) == dcode93->direction)\n        return(ZBAR_NONE);\n\n    dcode93->element = 0;\n\n    dbprintf(2, \"      code93[%c%02d+%x]:\",\n             (dcode93->direction) ? '<' : '>',\n             dcode93->character, dcode93->element);\n\n    if(check_width(dcode->s6, dcode93->width))\n        return(decode_abort(dcode, \"width var\"));\n\n    c = decode6(dcode);\n    if(c < 0)\n        return(decode_abort(dcode, \"aborted\"));\n\n    if(c == 0x2f) {\n        if(!check_stop(dcode))\n            return(ZBAR_NONE);\n        if(validate_checksums(dcode))\n            return(decode_abort(dcode, \"checksum error\"));\n        if(postprocess(dcode))\n            return(decode_abort(dcode, \"invalid encoding\"));\n\n        dbprintf(2, \" [valid end]\\n\");\n        dbprintf(3, \"    %s\\n\",\n                 _zbar_decoder_buf_dump(dcode->buf, dcode93->character));\n\n        dcode93->character = -1;\n        return(ZBAR_CODE93);\n    }\n\n    if(size_buf(dcode, dcode93->character + 1))\n        return(decode_abort(dcode, \"overflow\"));\n\n    dcode93->width = dcode->s6;\n\n    if(dcode93->character == 1) {\n        /* lock shared resources */\n        if(acquire_lock(dcode, ZBAR_CODE93))\n            return(decode_abort(dcode, NULL));\n        dcode->buf[0] = dcode93->buf;\n    }\n\n    if(!dcode93->character)\n        dcode93->buf = c;\n    else \n        dcode->buf[dcode93->character] = c;\n    dcode93->character++;\n\n    dbprintf(2, \"\\n\");\n    return(ZBAR_NONE);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/code93.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _CODE93_H_\n#define _CODE93_H_\n\n/* Code 93 specific decode state */\ntypedef struct code93_decoder_s {\n    unsigned direction : 1;     /* scan direction: 0=fwd/space, 1=rev/bar */\n    unsigned element : 3;       /* element offset 0-5 */\n    int character : 12;         /* character position in symbol */\n    unsigned width;             /* last character width */\n    unsigned char buf;          /* first character */\n\n    unsigned config;\n    int configs[NUM_CFGS];      /* int valued configurations */\n} code93_decoder_t;\n\n/* reset Code 93 specific state */\nstatic inline void code93_reset (code93_decoder_t *dcode93)\n{\n    dcode93->direction = 0;\n    dcode93->element = 0;\n    dcode93->character = -1;\n}\n\n/* decode Code 93 symbols */\nzbar_symbol_type_t _zbar_decode_code93(zbar_decoder_t *dcode);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/databar.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <zbar.h>\n\n#ifdef DEBUG_DATABAR\n# define DEBUG_LEVEL (DEBUG_DATABAR)\n#endif\n#include \"debug.h\"\n#include \"decoder.h\"\n\n#define GS ('\\035')\n\nenum { SCH_NUM, SCH_ALNUM, SCH_ISO646 };\n\nstatic const signed char finder_hash[0x20] = {\n    0x16, 0x1f, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0b,\n    0x1f, 0x0e, 0x17, 0x0c, 0x0b, 0x14, 0x11, 0x0c,\n    0x1f, 0x03, 0x13, 0x08, 0x00, 0x0a,   -1, 0x16,\n    0x0c, 0x09,   -1, 0x1a, 0x1f, 0x1c, 0x00,   -1,\n};\n\n/* DataBar character encoding groups */\nstruct group_s {\n    unsigned short sum;\n    unsigned char wmax;\n    unsigned char todd;\n    unsigned char teven;\n} groups[] = {\n    /* (17,4) DataBar Expanded character groups */\n    {    0, 7,  87,   4 },\n    {  348, 5,  52,  20 },\n    { 1388, 4,  30,  52 },\n    { 2948, 3,  10, 104 },\n    { 3988, 1,   1, 204 },\n\n    /* (16,4) DataBar outer character groups */\n    {    0, 8, 161,   1 },\n    {  161, 6,  80,  10 },\n    {  961, 4,  31,  34 },\n    { 2015, 3,  10,  70 },\n    { 2715, 1,   1, 126 },\n\n    /* (15,4) DataBar inner character groups */\n    { 1516, 8,  81,   1 },\n    { 1036, 6,  48,  10 },\n    {  336, 4,  20,  35 },\n    {    0, 2,   4,  84 },\n};\n\nstatic const unsigned char exp_sequences[] = {\n    /* sequence Group 1 */\n    0x01,\n    0x23,\n    0x25, 0x07,\n    0x29, 0x47,\n    0x29, 0x67, 0x0b,\n    0x29, 0x87, 0xab,\n    /* sequence Group 2 */\n    0x21, 0x43, 0x65, 0x07,\n    0x21, 0x43, 0x65, 0x89,\n    0x21, 0x43, 0x65, 0xa9, 0x0b,\n    0x21, 0x43, 0x67, 0x89, 0xab\n};\n\n/* DataBar expanded checksum multipliers */\nstatic const unsigned char exp_checksums[] = {\n    1, 189, 62, 113, 46, 43, 109, 134, 6, 79, 161, 45\n};\n\nstatic inline void\nappend_check14 (unsigned char *buf)\n{\n    unsigned char chk = 0, d;\n    int i;\n    for(i = 13; --i >= 0; ) {\n        d = *(buf++) - '0';\n        chk += d;\n        if(!(i & 1))\n            chk += d << 1;\n    }\n    chk %= 10;\n    if(chk)\n        chk = 10 - chk;\n    *buf = chk + '0';\n}\n\nstatic inline void\ndecode10 (unsigned char *buf,\n          unsigned long n,\n          int i)\n{\n    buf += i;\n    while(--i >= 0) {\n        unsigned char d = n % 10;\n        n /= 10;\n        *--buf = '0' + d;\n    }\n}\n\n#define VAR_MAX(l, i) ((((l) * 12 + (i)) * 2 + 6) / 7)\n\n#define FEED_BITS(b)                         \\\n    while(i < (b) && len) {                  \\\n        d = (d << 12) | (*(data++) & 0xfff); \\\n        i += 12;                             \\\n        len--;                               \\\n        dbprintf(2, \" %03lx\", d & 0xfff);     \\\n    }\n\n#define PUSH_CHAR(c) \\\n    *(buf++) = (c)\n\n#define PUSH_CHAR4(c0, c1, c2, c3) do { \\\n        PUSH_CHAR(c0);                  \\\n        PUSH_CHAR(c1);                  \\\n        PUSH_CHAR(c2);                  \\\n        PUSH_CHAR(c3);                  \\\n    } while(0);\n\nstatic inline int\ndatabar_postprocess_exp (zbar_decoder_t *dcode,\n                         int *data)\n{\n    int i = 0, enc;\n    unsigned n;\n    unsigned char *buf;\n    unsigned long d = *(data++);\n    int len = d / 211 + 4, buflen;\n\n    /* grok encodation method */\n    d = *(data++);\n    dbprintf(2, \"\\n    len=%d %03lx\", len, d & 0xfff);\n    n = (d >> 4) & 0x7f;\n    if(n >= 0x40) {\n        i = 10;\n        enc = 1;\n        buflen = 2 + 14 + VAR_MAX(len, 10 - 2 - 44 + 6) + 2;\n    }\n    else if(n >= 0x38) {\n        i = 4;\n        enc = 6 + (n & 7);\n        buflen = 2 + 14 + 4 + 6 + 2 + 6 + 2;\n    }\n    else if(n >= 0x30) {\n        i = 6;\n        enc = 2 + ((n >> 2) & 1);\n        buflen = 2 + 14 + 4 + 3 + VAR_MAX(len, 6 - 2 - 44 - 2 - 10) + 2;\n    }\n    else if(n >= 0x20) {\n        i = 7;\n        enc = 4 + ((n >> 3) & 1);\n        buflen = 2 + 14 + 4 + 6;\n    }\n    else {\n        i = 9;\n        enc = 0;\n        buflen = VAR_MAX(len, 9 - 2) + 2;\n    }\n    dbprintf(2, \" buflen=%d enc=%d\", buflen, enc);\n    zassert(buflen > 2, -1, \"buflen=%d\\n\", buflen);\n\n    if(enc < 4) {\n        /* grok variable length symbol bit field */\n        if((len ^ (d >> (--i))) & 1)\n            /* even/odd length mismatch */\n            return(-1);\n        if(((d >> (--i)) & 1) != (len > 14))\n            /* size group mismatch */\n            return(-1);\n    }\n    len -= 2;\n    dbprintf(2, \" [%d+%d]\", i, len);\n\n    if(size_buf(dcode, buflen))\n        return(-1);\n    buf = dcode->buf;\n\n    /* handle compressed fields */\n    if(enc) {\n        PUSH_CHAR('0');\n        PUSH_CHAR('1');\n    }\n\n    if(enc == 1) {\n        i -= 4;\n        n = (d >> i) & 0xf;\n        if(i >= 10)\n            return(-1);\n        PUSH_CHAR('0' + n);\n    }\n    else if(enc)\n        PUSH_CHAR('9');\n\n    if(enc) {\n        int j;\n        for(j = 0; j < 4; j++) {\n            FEED_BITS(10);\n            i -= 10;\n            n = (d >> i) & 0x3ff;\n            if(n >= 1000)\n                return(-1);\n            decode10(buf, n, 3);\n            buf += 3;\n        }\n        append_check14(buf - 13);\n        buf++;\n    }\n\n    switch(enc)\n    {\n    case 2: /* 01100: AI 392x */\n        FEED_BITS(2);\n        i -= 2;\n        n = (d >> i) & 0x3;\n        PUSH_CHAR4('3', '9', '2', '0' + n);\n        break;\n\n    case 3: /* 01101: AI 393x */\n        FEED_BITS(12);\n        i -= 2;\n        n = (d >> i) & 0x3;\n        PUSH_CHAR4('3', '9', '3', '0' + n);\n        i -= 10;\n        n = (d >> i) & 0x3ff;\n        if(n >= 1000)\n            return(-1);\n        decode10(buf, n, 3);\n        buf += 3;\n        break;\n\n    case 4: /* 0100: AI 3103 */\n        FEED_BITS(15);\n        i -= 15;\n        n = (d >> i) & 0x7fff;\n        PUSH_CHAR4('3', '1', '0', '3');\n        decode10(buf, n, 6);\n        buf += 6;\n        break;\n\n    case 5: /* 0101: AI 3202/3203 */\n        FEED_BITS(15);\n        i -= 15;\n        n = (d >> i) & 0x7fff;\n        dbprintf(2, \" v=%d\", n);\n        PUSH_CHAR4('3', '2', '0', (n >= 10000) ? '3' : '2' );\n        if(n >= 10000)\n            n -= 10000;\n        decode10(buf, n, 6);\n        buf += 6;\n        break;\n    }\n    if(enc >= 6) {\n        /* 0111000 - 0111111: AI 310x/320x + AI 11/13/15/17 */\n        PUSH_CHAR4('3', '1' + (enc & 1), '0', 'x');\n        FEED_BITS(20);\n        i -= 20;\n        n = (d >> i) & 0xfffff;\n        dbprintf(2, \" [%d+%d] %d\", i, len, n);\n        if(n >= 1000000)\n            return(-1);\n        decode10(buf, n, 6);\n        *(buf - 1) = *buf;\n        *buf = '0';\n        buf += 6;\n\n        FEED_BITS(16);\n        i -= 16;\n        n = (d >> i) & 0xffff;\n        if(n < 38400) {\n            int dd, mm, yy;\n            dd = n % 32;\n            n /= 32;\n            mm = n % 12 + 1;\n            n /= 12;\n            yy = n;\n            PUSH_CHAR('1');\n            PUSH_CHAR('0' + ((enc - 6) | 1));\n            decode10(buf, yy, 2);\n            buf += 2;\n            decode10(buf, mm, 2);\n            buf += 2;\n            decode10(buf, dd, 2);\n            buf += 2;\n        }\n        else if(n > 38400)\n            return(-1);\n    }\n\n    if(enc < 4) {\n        /* remainder is general-purpose data compaction */\n        int scheme = SCH_NUM;\n        while(i > 0 || len > 0) {\n            FEED_BITS(8);\n            dbprintf(2, \" [%d+%d]\", i, len);\n\n            if(scheme == SCH_NUM) {\n                int n1;\n                i -= 4;\n                if(i < 0)\n                    break;\n                if(!((d >> i) & 0xf)) {\n                    scheme = SCH_ALNUM;\n                    dbprintf(2, \">A\");\n                    continue;\n                }\n                if(!len && i < 3) {\n                    /* special case last digit */\n                    n = ((d >> i) & 0xf) - 1;\n                    if(n > 9)\n                        return(-1);\n                    *(buf++) = '0' + n;\n                    break;\n                }\n                i -= 3;\n                zassert(i >= 0, -1, \"\\n\");\n                n = ((d >> i) & 0x7f) - 8;\n                n1 = n % 11;\n                n = n / 11;\n                dbprintf(2, \"N%d%d\", n, n1);\n                *(buf++) = (n < 10) ? '0' + n : GS;\n                *(buf++) = (n1 < 10) ? '0' + n1 : GS;\n            }\n            else  {\n                unsigned c = 0;\n                i -= 3;\n                if(i < 0)\n                    break;\n                if(!((d >> i) & 0x7)) {\n                    scheme = SCH_NUM;\n                    continue;\n                }\n                i -= 2;\n                if(i < 0)\n                    break;\n                n = (d >> i) & 0x1f;\n                if(n == 0x04) {\n                    scheme ^= 0x3;\n                    dbprintf(2, \">%d\", scheme);\n                }\n                else if(n == 0x0f)\n                    c = GS;\n                else if(n < 0x0f)\n                    c = 43 + n;\n                else if(scheme == SCH_ALNUM) {\n                    i--;\n                    if(i < 0)\n                        return(-1);\n                    n = (d >> i) & 0x1f;\n                    if(n < 0x1a)\n                        c = 'A' + n;\n                    else if(n == 0x1a)\n                        c = '*';\n                    else if(n < 0x1f)\n                        c = ',' + n - 0x1b;\n                    else\n                        return(-1);\n                }\n                else if(scheme == SCH_ISO646 && n < 0x1d) {\n                    i -= 2;\n                    if(i < 0)\n                        return(-1);\n                    n = (d >> i) & 0x3f;\n                    if(n < 0x1a)\n                        c = 'A' + n;\n                    else if(n < 0x34)\n                        c = 'a' + n - 0x1a;\n                    else\n                        return(-1);\n                }\n                else if(scheme == SCH_ISO646) {\n                    i -= 3;\n                    if(i < 0)\n                        return(-1);\n                    n = ((d >> i) & 0x1f);\n                    dbprintf(2, \"(%02x)\", n);\n                    if(n < 0xa)\n                        c = '!' + n - 8;\n                    else if(n < 0x15)\n                        c = '%' + n - 0xa;\n                    else if(n < 0x1b)\n                        c = ':' + n - 0x15;\n                    else if(n == 0x1b)\n                        c = '_';\n                    else if(n == 0x1c)\n                        c = ' ';\n                    else\n                        return(-1);\n                }\n                else\n                    return(-1);\n\n                if(c) {\n                    dbprintf(2, \"%d%c\", scheme, c);\n                    *(buf++) = c;\n                }\n            }\n        }\n        /* FIXME check pad? */\n    }\n\n    i = buf - dcode->buf;\n    zassert(i < dcode->buf_alloc, -1, \"i=%02x %s\\n\", i,\n            _zbar_decoder_buf_dump(dcode->buf, i));\n\n    *buf = 0;\n    dcode->buflen = i;\n    if(i && *--buf == GS) {\n        *buf = 0;\n        dcode->buflen--;\n    }\n\n    dbprintf(2, \"\\n    %s\", _zbar_decoder_buf_dump(dcode->buf, dcode->buflen));\n    return(0);\n}\n#undef FEED_BITS\n\n/* convert from heterogeneous base {1597,2841}\n * to base 10 character representation\n */\nstatic inline void\ndatabar_postprocess (zbar_decoder_t *dcode,\n                     unsigned d[4])\n{\n    databar_decoder_t *db = &dcode->databar;\n    int i;\n    unsigned c, chk = 0;\n    unsigned char *buf = dcode->buf;\n    *(buf++) = '0';\n    *(buf++) = '1';\n    buf += 15;\n    *--buf = '\\0';\n    *--buf = '\\0';\n\n    dbprintf(2, \"\\n    d={%d,%d,%d,%d}\", d[0], d[1], d[2], d[3]);\n    unsigned long r = d[0] * 1597 + d[1];\n    d[1] = r / 10000;\n    r %= 10000;\n    r = r * 2841 + d[2];\n    d[2] = r / 10000;\n    r %= 10000;\n    r = r * 1597 + d[3];\n    d[3] = r / 10000;\n    dbprintf(2, \" r=%ld\", r);\n\n    for(i = 4; --i >= 0; ) {\n        c = r % 10;\n        chk += c;\n        if(i & 1)\n            chk += c << 1;\n        *--buf = c + '0';\n        if(i)\n            r /= 10;\n    }\n\n    dbprintf(2, \" d={%d,%d,%d}\", d[1], d[2], d[3]);\n    r = d[1] * 2841 + d[2];\n    d[2] = r / 10000;\n    r %= 10000;\n    r = r * 1597 + d[3];\n    d[3] = r / 10000;\n    dbprintf(2, \" r=%ld\", r);\n\n    for(i = 4; --i >= 0; ) {\n        c = r % 10;\n        chk += c;\n        if(i & 1)\n            chk += c << 1;\n        *--buf = c + '0';\n        if(i)\n            r /= 10;\n    }\n\n    r = d[2] * 1597 + d[3];\n    dbprintf(2, \" d={%d,%d} r=%ld\", d[2], d[3], r);\n\n    for(i = 5; --i >= 0; ) {\n        c = r % 10;\n        chk += c;\n        if(!(i & 1))\n            chk += c << 1;\n        *--buf = c + '0';\n        if(i)\n            r /= 10;\n    }\n\n    /* NB linkage flag not supported */\n    if(TEST_CFG(db->config, ZBAR_CFG_EMIT_CHECK)) {\n        chk %= 10;\n        if(chk)\n            chk = 10 - chk;\n        buf[13] = chk + '0';\n        dcode->buflen = buf - dcode->buf + 14;\n    }\n    else\n        dcode->buflen = buf - dcode->buf + 13;\n\n    dbprintf(2, \"\\n    %s\", _zbar_decoder_buf_dump(dcode->buf, 16));\n}\n\nstatic inline int\ncheck_width (unsigned wf,\n             unsigned wd,\n             unsigned n)\n{\n    unsigned dwf = wf * 3;\n    wd *= 14;\n    wf *= n;\n    return(wf - dwf <= wd && wd <= wf + dwf);\n}\n\nstatic inline void\nmerge_segment (databar_decoder_t *db,\n               databar_segment_t *seg)\n{\n    unsigned csegs = db->csegs;\n    int i;\n    for(i = 0; i < csegs; i++) {\n        databar_segment_t *s = db->segs + i;\n        if(s != seg && s->finder == seg->finder && s->exp == seg->exp &&\n           s->color == seg->color && s->side == seg->side &&\n           s->data == seg->data && s->check == seg->check &&\n           check_width(seg->width, s->width, 14)) {\n            /* merge with existing segment */\n            unsigned cnt = s->count;\n            if(cnt < 0x7f)\n                cnt++;\n            seg->count = cnt;\n            seg->partial &= s->partial;\n            seg->width = (3 * seg->width + s->width + 2) / 4;\n            s->finder = -1;\n            dbprintf(2, \" dup@%d(%d,%d)\",\n                     i, cnt, (db->epoch - seg->epoch) & 0xff);\n        }\n        else if(s->finder >= 0) {\n            unsigned age = (db->epoch - s->epoch) & 0xff;\n            if(age >= 248 || (age >= 128 && s->count < 2))\n                s->finder = -1;\n        }\n    }\n}\n\nstatic inline zbar_symbol_type_t\nmatch_segment (zbar_decoder_t *dcode,\n               databar_segment_t *seg)\n{\n    databar_decoder_t *db = &dcode->databar;\n    unsigned csegs = db->csegs, maxage = 0xfff;\n    int i0, i1, i2, maxcnt = 0;\n    databar_segment_t *smax[3] = { NULL, };\n\n    if(seg->partial && seg->count < 4)\n        return(ZBAR_PARTIAL);\n\n    for(i0 = 0; i0 < csegs; i0++) {\n        databar_segment_t *s0 = db->segs + i0;\n        if(s0 == seg || s0->finder != seg->finder || s0->exp ||\n           s0->color != seg->color || s0->side == seg->side ||\n           (s0->partial && s0->count < 4) ||\n           !check_width(seg->width, s0->width, 14))\n            continue;\n\n        for(i1 = 0; i1 < csegs; i1++) {\n            databar_segment_t *s1 = db->segs + i1;\n            int chkf, chks, chk;\n            unsigned age1;\n            if(i1 == i0 || s1->finder < 0 || s1->exp ||\n               s1->color == seg->color ||\n               (s1->partial && s1->count < 4) ||\n               !check_width(seg->width, s1->width, 14))\n                continue;\n            dbprintf(2, \"\\n\\t[%d,%d] f=%d(0%xx)/%d(%x%x%x)\",\n                     i0, i1, seg->finder, seg->color,\n                     s1->finder, s1->exp, s1->color, s1->side);\n\n            if(seg->color)\n                chkf = seg->finder + s1->finder * 9;\n            else\n                chkf = s1->finder + seg->finder * 9;\n            if(chkf > 72)\n                chkf--;\n            if(chkf > 8)\n                chkf--;\n\n            chks = (seg->check + s0->check + s1->check) % 79;\n\n            if(chkf >= chks)\n                chk = chkf - chks;\n            else\n                chk = 79 + chkf - chks;\n\n            dbprintf(2, \" chk=(%d,%d) => %d\", chkf, chks, chk);\n            age1 = (((db->epoch - s0->epoch) & 0xff) +\n                    ((db->epoch - s1->epoch) & 0xff));\n\n            for(i2 = i1 + 1; i2 < csegs; i2++) {\n                databar_segment_t *s2 = db->segs + i2;\n                unsigned cnt, age2, age;\n                if(i2 == i0 || s2->finder != s1->finder || s2->exp ||\n                   s2->color != s1->color || s2->side == s1->side ||\n                   s2->check != chk ||\n                   (s2->partial && s2->count < 4) ||\n                   !check_width(seg->width, s2->width, 14))\n                    continue;\n                age2 = (db->epoch - s2->epoch) & 0xff;\n                age = age1 + age2;\n                cnt = s0->count + s1->count + s2->count;\n                dbprintf(2, \" [%d] MATCH cnt=%d age=%d\", i2, cnt, age);\n                if(maxcnt < cnt ||\n                   (maxcnt == cnt && maxage > age)) {\n                    maxcnt = cnt;\n                    maxage = age;\n                    smax[0] = s0;\n                    smax[1] = s1;\n                    smax[2] = s2;\n                }\n            }\n        }\n    }\n\n    if(!smax[0])\n        return(ZBAR_PARTIAL);\n\n    unsigned d[4];\n    d[(seg->color << 1) | seg->side] = seg->data;\n    for(i0 = 0; i0 < 3; i0++) {\n        d[(smax[i0]->color << 1) | smax[i0]->side] = smax[i0]->data;\n        if(!--(smax[i0]->count))\n            smax[i0]->finder = -1;\n    }\n    seg->finder = -1;\n\n    if(size_buf(dcode, 18))\n        return(ZBAR_PARTIAL);\n\n    if(acquire_lock(dcode, ZBAR_DATABAR))\n        return(ZBAR_PARTIAL);\n\n    databar_postprocess(dcode, d);\n    dcode->modifiers = MOD(ZBAR_MOD_GS1);\n    dcode->direction = 1 - 2 * (seg->side ^ seg->color ^ 1);\n    return(ZBAR_DATABAR);\n}\n\nstatic inline unsigned\nlookup_sequence (databar_segment_t *seg,\n                 int fixed,\n                 int seq[22])\n{\n    unsigned n = seg->data / 211, i;\n    const unsigned char *p;\n    i = (n + 1) / 2 + 1;\n    n += 4;\n    i = (i * i) / 4;\n    dbprintf(2, \" {%d,%d:\", i, n);\n    p = exp_sequences + i;\n\n    fixed >>= 1;\n    seq[0] = 0;\n    seq[1] = 1;\n    for(i = 2; i < n; ) {\n        int s = *p;\n        if(!(i & 2)) {\n            p++;\n            s >>= 4;\n        }\n        else\n            s &= 0xf;\n        if(s == fixed)\n            fixed = -1;\n        s <<= 1;\n        dbprintf(2, \"%x\", s);\n        seq[i++] = s++;\n        seq[i++] = s;\n    }\n    dbprintf(2, \"}\");\n    seq[n] = -1;\n    return(fixed < 1);\n}\n\n#define IDX(s) \\\n    (((s)->finder << 2) | ((s)->color << 1) | ((s)->color ^ (s)->side))\n\nstatic inline zbar_symbol_type_t\nmatch_segment_exp (zbar_decoder_t *dcode,\n                   databar_segment_t *seg,\n                   int dir)\n{\n    databar_decoder_t *db = &dcode->databar;\n    int bestsegs[22], i = 0, segs[22], seq[22];\n    int ifixed = seg - db->segs, fixed = IDX(seg), maxcnt = 0;\n    int iseg[DATABAR_MAX_SEGMENTS];\n    unsigned csegs = db->csegs, width = seg->width, maxage = 0x7fff;\n\n    bestsegs[0] = segs[0] = seq[1] = -1;\n    seq[0] = 0;\n\n    dbprintf(2, \"\\n    fixed=%d@%d: \", fixed, ifixed);\n    for(i = csegs, seg = db->segs + csegs - 1; --i >= 0; seg--) {\n        if(seg->exp && seg->finder >= 0 &&\n           (!seg->partial || seg->count >= 4))\n            iseg[i] = IDX(seg);\n        else\n            iseg[i] = -1;\n        dbprintf(2, \" %d\", iseg[i]);\n    }\n\n    for(i = 0; ; i--) {\n        if(!i)\n            dbprintf(2, \"\\n   \");\n        for(; i >= 0 && seq[i] >= 0; i--) {\n            int j;\n            dbprintf(2, \" [%d]%d\", i, seq[i]);\n\n            if(seq[i] == fixed) {\n                seg = db->segs + ifixed;\n                if(segs[i] < 0 && check_width(width, seg->width, 14)) {\n                    dbprintf(2, \"*\");\n                    j = ifixed;\n                }\n                else\n                    continue;\n            }\n            else {\n                for(j = segs[i] + 1; j < csegs; j++) {\n                    if(iseg[j] == seq[i] &&\n                       (!i || check_width(width, db->segs[j].width, 14))) {\n                        seg = db->segs + j;\n                        break;\n                    }\n                }\n                if(j == csegs)\n                    continue;\n            }\n\n            if(!i) {\n                if(!lookup_sequence(seg, fixed, seq)) {\n                    dbprintf(2, \"[nf]\");\n                    continue;\n                }\n                width = seg->width;\n                dbprintf(2, \" A00@%d\", j);\n            }\n            else {\n                width = (width + seg->width) / 2;\n                dbprintf(2, \" %c%x%x@%d\",\n                         'A' + seg->finder, seg->color, seg->side, j);\n            }\n            segs[i++] = j;\n            segs[i++] = -1;\n        }\n        if(i < 0)\n            break;\n\n        seg = db->segs + segs[0];\n        unsigned cnt = 0, chk = 0, age = (db->epoch - seg->epoch) & 0xff;\n        for(i = 1; segs[i] >= 0; i++) {\n            seg = db->segs + segs[i];\n            chk += seg->check;\n            cnt += seg->count;\n            age += (db->epoch - seg->epoch) & 0xff;\n        }\n\n        unsigned data0 = db->segs[segs[0]].data;\n        unsigned chk0 = data0 % 211;\n        chk %= 211;\n\n        dbprintf(2, \" chk=%d ?= %d\", chk, chk0);\n        if(chk != chk0)\n            continue;\n\n        dbprintf(2, \" cnt=%d age=%d\", cnt, age);\n        if(maxcnt > cnt || (maxcnt == cnt && maxage <= age))\n            continue;\n\n        dbprintf(2, \" !\");\n        maxcnt = cnt;\n        maxage = age;\n        for(i = 0; segs[i] >= 0; i++)\n            bestsegs[i] = segs[i];\n        bestsegs[i] = -1;\n    }\n\n    if(bestsegs[0] < 0)\n        return(ZBAR_PARTIAL);\n\n    if(acquire_lock(dcode, ZBAR_DATABAR_EXP))\n        return(ZBAR_PARTIAL);\n\n    for(i = 0; bestsegs[i] >= 0; i++)\n        segs[i] = db->segs[bestsegs[i]].data;\n\n    if(databar_postprocess_exp(dcode, segs)) {\n        release_lock(dcode, ZBAR_DATABAR_EXP);\n        return(ZBAR_PARTIAL);\n    }\n\n    for(i = 0; bestsegs[i] >= 0; i++)\n        if(bestsegs[i] != ifixed) {\n            seg = db->segs + bestsegs[i];\n            if(!--seg->count)\n                seg->finder = -1;\n        }\n\n    /* FIXME stacked rows are frequently reversed,\n     * so direction is impossible to determine at this level\n     */\n    dcode->direction = (1 - 2 * (seg->side ^ seg->color)) * dir;\n    dcode->modifiers = MOD(ZBAR_MOD_GS1);\n    return(ZBAR_DATABAR_EXP);\n}\n#undef IDX\n\nstatic inline unsigned\ncalc_check (unsigned sig0,\n            unsigned sig1,\n            unsigned side,\n            unsigned mod)\n{\n    unsigned chk = 0;\n    int i;\n    for(i = 4; --i >= 0; ) {\n        chk = (chk * 3 + (sig1 & 0xf) + 1) * 3 + (sig0 & 0xf) + 1;\n        sig1 >>= 4;\n        sig0 >>= 4;\n        if(!(i & 1))\n            chk %= mod;\n    }\n    dbprintf(2, \" chk=%d\", chk);\n\n    if(side)\n        chk = (chk * (6561 % mod)) % mod;\n    return(chk);\n}\n\nstatic inline int\ncalc_value4 (unsigned sig,\n             unsigned n,\n             unsigned wmax,\n             unsigned nonarrow)\n{\n    unsigned v = 0;\n    n--;\n\n    unsigned w0 = (sig >> 12) & 0xf;\n    if(w0 > 1) {\n        if(w0 > wmax)\n            return(-1);\n        unsigned n0 = n - w0;\n        unsigned sk20 = (n - 1) * n * (2 * n - 1);\n        unsigned sk21 = n0 * (n0 + 1) * (2 * n0 + 1);\n        v = sk20 - sk21 - 3 * (w0 - 1) * (2 * n - w0);\n\n        if(!nonarrow && w0 > 2 && n > 4) {\n            unsigned k = (n - 2) * (n - 1) * (2 * n - 3) - sk21;\n            k -= 3 * (w0 - 2) * (14 * n - 7 * w0 - 31);\n            v -= k;\n        }\n\n        if(n - 2 > wmax) {\n            unsigned wm20 = 2 * wmax * (wmax + 1);\n            unsigned wm21 = (2 * wmax + 1);\n            unsigned k = sk20;\n            if(n0 > wmax) {\n                k -= sk21;\n                k += 3 * (w0 - 1) * (wm20 - wm21 * (2 * n - w0));\n            }\n            else {\n                k -= (wmax + 1) * (wmax + 2) * (2 * wmax + 3);\n                k += 3 * (n - wmax - 2) * (wm20 - wm21 * (n + wmax + 1));\n            }\n            k *= 3;\n            v -= k;\n        }\n        v /= 12;\n    }\n    else\n        nonarrow = 1;\n    n -= w0;\n\n    unsigned w1 = (sig >> 8) & 0xf;\n    if(w1 > 1) {\n        if(w1 > wmax)\n            return(-1);\n        v += (2 * n - w1) * (w1 - 1) / 2;\n        if(!nonarrow && w1 > 2 && n > 3)\n            v -= (2 * n - w1 - 5) * (w1 - 2) / 2;\n        if(n - 1 > wmax) {\n            if(n - w1 > wmax)\n                v -= (w1 - 1) * (2 * n - w1 - 2 * wmax);\n            else\n                v -= (n - wmax) * (n - wmax - 1);\n        }\n    }\n    else\n        nonarrow = 1;\n    n -= w1;\n\n    unsigned w2 = (sig >> 4) & 0xf;\n    if(w2 > 1) {\n        if(w2 > wmax)\n            return(-1);\n        v += w2 - 1;\n        if(!nonarrow && w2 > 2 && n > 2)\n            v -= n - 2;\n        if(n > wmax)\n            v -= n - wmax;\n    }\n    else\n        nonarrow = 1;\n\n    unsigned w3 = sig & 0xf;\n    if(w3 == 1)\n        nonarrow = 1;\n    else if(w3 > wmax)\n        return(-1);\n\n    if(!nonarrow)\n        return(-1);\n\n    return(v);\n}\n\nstatic inline zbar_symbol_type_t\ndecode_char (zbar_decoder_t *dcode,\n             databar_segment_t *seg,\n             int off,\n             int dir)\n{\n    databar_decoder_t *db = &dcode->databar;\n    unsigned s = calc_s(dcode, (dir > 0) ? off : off - 6, 8);\n    int n, i, emin[2] = { 0, }, sum = 0;\n    unsigned sig0 = 0, sig1 = 0;\n\n    if(seg->exp)\n        n = 17;\n    else if(seg->side)\n        n = 15;\n    else\n        n = 16;\n    emin[1] = -n;\n\n    dbprintf(2, \"\\n        char[%c%d]: n=%d s=%d w=%d sig=\",\n             (dir < 0) ? '>' : '<', off, n, s, seg->width);\n    if(s < 13 || !check_width(seg->width, s, n))\n        return(ZBAR_NONE);\n\n    for(i = 4; --i >= 0; ) {\n        int e = decode_e(pair_width(dcode, off), s, n);\n        if(e < 0)\n            return(ZBAR_NONE);\n        dbprintf(2, \"%d\", e);\n        sum = e - sum;\n        off += dir;\n        sig1 <<= 4;\n        if(emin[1] < -sum)\n            emin[1] = -sum;\n        sig1 += sum;\n        if(!i)\n            break;\n\n        e = decode_e(pair_width(dcode, off), s, n);\n        if(e < 0)\n            return(ZBAR_NONE);\n        dbprintf(2, \"%d\", e);\n        sum = e - sum;\n        off += dir;\n        sig0 <<= 4;\n        if(emin[0] > sum)\n            emin[0] = sum;\n        sig0 += sum;\n    }\n\n    int diff = emin[~n & 1];\n    diff = diff + (diff << 4);\n    diff = diff + (diff << 8);\n\n    sig0 -= diff;\n    sig1 += diff;\n\n    dbprintf(2, \" emin=%d,%d el=%04x/%04x\", emin[0], emin[1], sig0, sig1);\n\n    unsigned sum0 = sig0 + (sig0 >> 8);\n    unsigned sum1 = sig1 + (sig1 >> 8);\n    sum0 += sum0 >> 4;\n    sum1 += sum1 >> 4;\n    sum0 &= 0xf;\n    sum1 &= 0xf;\n\n    dbprintf(2, \" sum=%d/%d\", sum0, sum1);\n\n    if(sum0 + sum1 + 8 != n) {\n        dbprintf(2, \" [SUM]\");\n        return(ZBAR_NONE);\n    }\n\n    if(((sum0 ^ (n >> 1)) | (sum1 ^ (n >> 1) ^ n)) & 1) {\n        dbprintf(2, \" [ODD]\");\n        return(ZBAR_NONE);\n    }\n\n    i = ((n & 0x3) ^ 1) * 5 + (sum1 >> 1);\n    zassert(i < sizeof(groups) / sizeof(*groups), -1,\n            \"n=%d sum=%d/%d sig=%04x/%04x g=%d\",\n            n, sum0, sum1, sig0, sig1, i);\n    struct group_s *g = groups + i;\n    dbprintf(2, \"\\n            g=%d(%d,%d,%d/%d)\",\n             i, g->sum, g->wmax, g->todd, g->teven);\n\n    int vodd = calc_value4(sig0 + 0x1111, sum0 + 4, g->wmax, ~n & 1);\n    dbprintf(2, \" v=%d\", vodd);\n    if(vodd < 0 || vodd > g->todd)\n        return(ZBAR_NONE);\n\n    int veven = calc_value4(sig1 + 0x1111, sum1 + 4, 9 - g->wmax, n & 1);\n    dbprintf(2, \"/%d\", veven);\n    if(veven < 0 || veven > g->teven)\n        return(ZBAR_NONE);\n\n    int v = g->sum;\n    if(n & 2)\n        v += vodd + veven * g->todd;\n    else\n        v += veven + vodd * g->teven;\n\n    dbprintf(2, \" f=%d(%x%x%x)\", seg->finder, seg->exp, seg->color, seg->side);\n\n    unsigned chk = 0;\n    if(seg->exp) {\n        unsigned side = seg->color ^ seg->side ^ 1;\n        if(v >= 4096)\n            return(ZBAR_NONE);\n        /* skip A1 left */\n        chk = calc_check(sig0, sig1, side, 211);\n        if(seg->finder || seg->color || seg->side) {\n            i = (seg->finder << 1) - side + seg->color;\n            zassert(i >= 0 && i < 12, ZBAR_NONE,\n                    \"f=%d(%x%x%x) side=%d i=%d\\n\",\n                    seg->finder, seg->exp, seg->color, seg->side, side, i);\n            chk = (chk * exp_checksums[i]) % 211;\n        }\n        else if(v >= 4009)\n            return(ZBAR_NONE);\n        else\n            chk = 0;\n    }\n    else {\n        chk = calc_check(sig0, sig1, seg->side, 79);\n        if(seg->color)\n            chk = (chk * 16) % 79;\n    }\n    dbprintf(2, \" => %d val=%d\", chk, v);\n\n    seg->check = chk;\n    seg->data = v;\n\n    merge_segment(db, seg);\n\n    if(seg->exp)\n        return(match_segment_exp(dcode, seg, dir));\n    else if(dir > 0)\n        return(match_segment(dcode, seg));\n    return(ZBAR_PARTIAL);\n}\n\nstatic inline int\nalloc_segment (databar_decoder_t *db)\n{\n    unsigned maxage = 0, csegs = db->csegs;\n    int i, old = -1;\n    for(i = 0; i < csegs; i++) {\n        databar_segment_t *seg = db->segs + i;\n        unsigned age;\n        if(seg->finder < 0) {\n            dbprintf(2, \" free@%d\", i);\n            return(i);\n        }\n        age = (db->epoch - seg->epoch) & 0xff;\n        if(age >= 128 && seg->count < 2) {\n            seg->finder = -1;\n            dbprintf(2, \" stale@%d (%d - %d = %d)\",\n                     i, db->epoch, seg->epoch, age);\n            return(i);\n        }\n\n        /* score based on both age and count */\n        if(age > seg->count)\n            age = age - seg->count + 1;\n        else\n            age = 1;\n\n        if(maxage < age) {\n            maxage = age;\n            old = i;\n            dbprintf(2, \" old@%d(%u)\", i, age);\n        }\n    }\n\n    if(csegs < DATABAR_MAX_SEGMENTS) {\n        dbprintf(2, \" new@%d\", i);\n        i = csegs;\n        csegs *= 2;\n        if(csegs > DATABAR_MAX_SEGMENTS)\n            csegs = DATABAR_MAX_SEGMENTS;\n        if(csegs != db->csegs) {\n            databar_segment_t *seg;\n            db->segs = realloc(db->segs, csegs * sizeof(*db->segs));\n            db->csegs = csegs;\n            seg = db->segs + csegs;\n            while(--seg, --csegs >= i) {\n                seg->finder = -1;\n                seg->exp = 0;\n                seg->color = 0;\n                seg->side = 0;\n                seg->partial = 0;\n                seg->count = 0;\n                seg->epoch = 0;\n                seg->check = 0;\n            }\n            return(i);\n        }\n    }\n    zassert(old >= 0, -1, \"\\n\");\n\n    db->segs[old].finder = -1;\n    return(old);\n}\n\nstatic inline zbar_symbol_type_t\ndecode_finder (zbar_decoder_t *dcode)\n{\n    databar_decoder_t *db = &dcode->databar;\n    databar_segment_t *seg;\n    unsigned e0 = pair_width(dcode, 1);\n    unsigned e2 = pair_width(dcode, 3);\n    unsigned e1, e3, s, finder, dir;\n    int sig, iseg;\n    dbprintf(2, \"      databar: e0=%d e2=%d\", e0, e2);\n    if(e0 < e2) {\n        unsigned e = e2 * 4;\n        if(e < 15 * e0 || e > 34 * e0)\n            return(ZBAR_NONE);\n        dir = 0;\n        e3 = pair_width(dcode, 4);\n    }\n    else {\n        unsigned e = e0 * 4;\n        if(e < 15 * e2 || e > 34 * e2)\n            return(ZBAR_NONE);\n        dir = 1;\n        e2 = e0;\n        e3 = pair_width(dcode, 0);\n    }\n    e1 = pair_width(dcode, 2);\n\n    s = e1 + e3;\n    dbprintf(2, \" e1=%d e3=%d dir=%d s=%d\", e1, e3, dir, s);\n    if(s < 12)\n        return(ZBAR_NONE);\n\n    sig = ((decode_e(e3, s, 14) << 8) | (decode_e(e2, s, 14) << 4) |\n           decode_e(e1, s, 14));\n    dbprintf(2, \" sig=%04x\", sig & 0xfff);\n    if(sig < 0 ||\n       ((sig >> 4) & 0xf) < 8 ||\n       ((sig >> 4) & 0xf) > 10 ||\n       (sig & 0xf) >= 10 ||\n       ((sig >> 8) & 0xf) >= 10 ||\n       (((sig >> 8) + sig) & 0xf) != 10)\n        return(ZBAR_NONE);\n\n    finder = (finder_hash[(sig - (sig >> 5)) & 0x1f] +\n              finder_hash[(sig >> 1) & 0x1f]) & 0x1f;\n    dbprintf(2, \" finder=%d\", finder);\n    if(finder == 0x1f ||\n       !TEST_CFG((finder < 9) ? db->config : db->config_exp, ZBAR_CFG_ENABLE))\n        return(ZBAR_NONE);\n\n    zassert(finder >= 0, ZBAR_NONE, \"dir=%d sig=%04x f=%d\\n\",\n            dir, sig & 0xfff, finder);\n\n    iseg = alloc_segment(db);\n    if(iseg < 0)\n        return(ZBAR_NONE);\n\n    seg = db->segs + iseg;\n    seg->finder = (finder >= 9) ? finder - 9 : finder;\n    seg->exp = (finder >= 9);\n    seg->color = get_color(dcode) ^ dir ^ 1;\n    seg->side = dir;\n    seg->partial = 0;\n    seg->count = 1;\n    seg->width = s;\n    seg->epoch = db->epoch;\n\n    int rc = decode_char(dcode, seg, 12 - dir, -1);\n    if(!rc)\n        seg->partial = 1;\n    else\n        db->epoch++;\n\n    int i = (dcode->idx + 8 + dir) & 0xf;\n    zassert(db->chars[i] == -1, ZBAR_NONE, \"\\n\");\n    db->chars[i] = iseg;\n    return(rc);\n}\n\nzbar_symbol_type_t\n_zbar_decode_databar (zbar_decoder_t *dcode)\n{\n    databar_decoder_t *db = &dcode->databar;\n    databar_segment_t *seg, *pair;\n    zbar_symbol_type_t sym;\n    int iseg, i = dcode->idx & 0xf;\n\n    sym = decode_finder(dcode);\n    dbprintf(2, \"\\n\");\n\n    iseg = db->chars[i];\n    if(iseg < 0)\n        return(sym);\n\n    db->chars[i] = -1;\n    seg = db->segs + iseg;\n    dbprintf(2, \"        databar: i=%d part=%d f=%d(%x%x%x)\",\n             iseg, seg->partial, seg->finder, seg->exp, seg->color, seg->side);\n    zassert(seg->finder >= 0, ZBAR_NONE, \"i=%d f=%d(%x%x%x) part=%x\\n\",\n            iseg, seg->finder, seg->exp, seg->color, seg->side, seg->partial);\n\n    if(seg->partial) {\n        pair = NULL;\n        seg->side = !seg->side;\n    }\n    else {\n        int jseg = alloc_segment(db);\n        pair = db->segs + iseg;\n        seg = db->segs + jseg;\n        seg->finder = pair->finder;\n        seg->exp = pair->exp;\n        seg->color = pair->color;\n        seg->side = !pair->side;\n        seg->partial = 0;\n        seg->count = 1;\n        seg->width = pair->width;\n        seg->epoch = db->epoch;\n    }\n\n    sym = decode_char(dcode, seg, 1, 1);\n    if(!sym) {\n        seg->finder = -1;\n        if(pair)\n            pair->partial = 1;\n    }\n    else\n        db->epoch++;\n    dbprintf(2, \"\\n\");\n\n    return(sym);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/databar.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _DATABAR_H_\n#define _DATABAR_H_\n\n#define DATABAR_MAX_SEGMENTS 32\n\n/* active DataBar (partial) segment entry */\ntypedef struct databar_segment_s {\n    signed finder : 5;          /* finder pattern */\n    unsigned exp : 1;           /* DataBar expanded finder */\n    unsigned color : 1;         /* finder coloring */\n    unsigned side : 1;          /* data character side of finder */\n\n    unsigned partial : 1;       /* unpaired partial segment */\n    unsigned count : 7;         /* times encountered */\n    unsigned epoch : 8;         /* age, in characters scanned */\n    unsigned check : 8;         /* bar checksum */\n    signed short data;          /* decoded character data */\n    unsigned short width;       /* measured width of finder (14 modules) */\n} databar_segment_t;\n\n/* DataBar specific decode state */\ntypedef struct databar_decoder_s {\n    unsigned config;            /* decoder configuration flags */\n    unsigned config_exp;\n\n    unsigned csegs : 8;         /* allocated segments */\n    unsigned epoch : 8;         /* current scan */\n\n    databar_segment_t *segs;    /* active segment list */\n    signed char chars[16];      /* outstanding character indices */\n} databar_decoder_t;\n\n/* reset DataBar segment decode state */\nstatic inline void databar_new_scan (databar_decoder_t *db)\n{\n    int i;\n    for(i = 0; i < 16; i++)\n        if(db->chars[i] >= 0) {\n            databar_segment_t *seg = db->segs + db->chars[i];\n            if(seg->partial)\n                seg->finder = -1;\n            db->chars[i] = -1;\n        }\n}\n\n/* reset DataBar accumulated segments */\nstatic inline void databar_reset (databar_decoder_t *db)\n{\n    int i, n = db->csegs;\n    databar_new_scan(db);\n    for(i = 0; i < n; i++)\n        db->segs[i].finder = -1;\n}\n\n/* decode DataBar symbols */\nzbar_symbol_type_t _zbar_decode_databar(zbar_decoder_t *dcode);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/ean.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <zbar.h>\n\n#ifdef DEBUG_EAN\n# define DEBUG_LEVEL (DEBUG_EAN)\n#endif\n#include \"debug.h\"\n#include \"decoder.h\"\n\n/* partial decode symbol location */\ntypedef enum symbol_partial_e {\n    EAN_LEFT   = 0x0000,\n    EAN_RIGHT  = 0x1000,\n} symbol_partial_t;\n\n/* convert compact encoded D2E1E2 to character (bit4 is parity) */\nstatic const unsigned char digits[] = {  /* E1   E2 */\n    0x06, 0x10, 0x04, 0x13,              /*  2  2-5 */\n    0x19, 0x08, 0x11, 0x05,              /*  3  2-5 (d2 <= thr) */\n    0x09, 0x12, 0x07, 0x15,              /*  4  2-5 (d2 <= thr) */\n    0x16, 0x00, 0x14, 0x03,              /*  5  2-5 */\n    0x18, 0x01, 0x02, 0x17,              /* E1E2=43,44,33,34 (d2 > thr) */\n};\n\nstatic const unsigned char parity_decode[] = {\n    0xf0, /* [xx] BBBBBB = RIGHT half EAN-13 */\n\n    /* UPC-E check digit encoding */\n    0xff,\n    0xff,\n    0x0f, /* [07] BBBAAA = 0 */\n    0xff,\n    0x1f, /* [0b] BBABAA = 1 */\n    0x2f, /* [0d] BBAABA = 2 */\n    0xf3, /* [0e] BBAAAB = 3 */\n    0xff,\n    0x4f, /* [13] BABBAA = 4 */\n    0x7f, /* [15] BABABA = 7 */\n    0xf8, /* [16] BABAAB = 8 */\n    0x5f, /* [19] BAABBA = 5 */\n    0xf9, /* [1a] BAABAB = 9 */\n    0xf6, /* [1c] BAAABB = 6 */\n    0xff,\n\n    /* LEFT half EAN-13 leading digit */\n    0xff,\n    0x6f, /* [23] ABBBAA = 6 */\n    0x9f, /* [25] ABBABA = 9 */\n    0xf5, /* [26] ABBAAB = 5 */\n    0x8f, /* [29] ABABBA = 8 */\n    0xf7, /* [2a] ABABAB = 7 */\n    0xf4, /* [2c] ABAABB = 4 */\n    0xff,\n    0x3f, /* [31] AABBBA = 3 */\n    0xf2, /* [32] AABBAB = 2 */\n    0xf1, /* [34] AABABB = 1 */\n    0xff,\n    0xff,\n    0xff,\n    0xff,\n    0x0f, /* [3f] AAAAAA = 0 */\n};\n\n#ifdef DEBUG_EAN\nstatic unsigned char debug_buf[0x18];\n\nstatic inline const unsigned char *dsprintbuf(ean_decoder_t *ean)\n{\n    int i;\n    for(i = 0; i < 7; i++)\n        debug_buf[i] = ((ean->buf[0] < 0 || ean->buf[i] < 0)\n                        ? '-'\n                        : ean->buf[i] + '0');\n    debug_buf[i] = ' ';\n    for(; i < 13; i++)\n        debug_buf[i + 1] = ((ean->buf[7] < 0 || ean->buf[i] < 0)\n                            ? '-'\n                            : ean->buf[i] + '0');\n    debug_buf[i + 1] = ' ';\n    for(; i < 18; i++)\n        debug_buf[i + 2] = ((ean->buf[13] < 0 || ean->buf[i] < 0)\n                            ? '-'\n                            : ean->buf[i] + '0');\n    debug_buf[i + 2] = '\\0';\n    return(debug_buf);\n}\n#endif\n\nstatic inline int check_width (unsigned w0,\n                               unsigned w1)\n{\n    unsigned dw0 = w0;\n    w0 *= 8;\n    w1 *= 8;\n    return(w0 - dw0 <= w1 && w1 <= w0 + dw0);\n}\n\n/* evaluate previous N (>= 2) widths as auxiliary pattern,\n * using preceding 4 as character width\n */\nstatic inline signed char aux_end (zbar_decoder_t *dcode,\n                                   unsigned char fwd)\n{\n    signed char code, i;\n\n    /* reference width from previous character */\n    unsigned s = calc_s(dcode, 4 + fwd, 4);\n\n    /* check quiet zone */\n    unsigned qz = get_width(dcode, 0);\n    if(!fwd && qz && qz <= s * 3 / 4) {\n        dbprintf(2, \" [invalid quiet]\");\n        return(-1);\n    }\n\n    dbprintf(2, \" (\");\n    code = 0;\n    for(i = 1 - fwd; i < 3 + fwd; i++) {\n        unsigned e = get_width(dcode, i) + get_width(dcode, i + 1);\n        dbprintf(2, \" %d\", e);\n        code = (code << 2) | decode_e(e, s, 7);\n        if(code < 0) {\n            dbprintf(2, \" [invalid end guard]\");\n            return(-1);\n        }\n    }\n    dbprintf(2, \") s=%d aux=%x\", s, code);\n    return(code);\n}\n\n/* determine possible auxiliary pattern\n * using current 4 as possible character\n */\nstatic inline signed char aux_start (zbar_decoder_t *dcode)\n{\n    /* FIXME NB add-on has no guard in reverse */\n    unsigned e1, e2 = get_width(dcode, 5) + get_width(dcode, 6);\n    unsigned char E1;\n    if(dcode->ean.s4 < 6)\n        return(-1);\n\n    if(decode_e(e2, dcode->ean.s4, 7)) {\n        dbprintf(2, \" [invalid any]\");\n        return(-1);\n    }\n\n    e1 = get_width(dcode, 4) + get_width(dcode, 5);\n    E1 = decode_e(e1, dcode->ean.s4, 7);\n\n    if(get_color(dcode) == ZBAR_BAR) {\n        /* check for quiet-zone */\n        unsigned qz = get_width(dcode, 7);\n        if(!qz || qz > dcode->ean.s4 * 3 / 4) {\n            if(!E1) {\n                dbprintf(2, \" [valid normal]\");\n                return(0); /* normal symbol start */\n            }\n            else if(E1 == 1) {\n                dbprintf(2, \" [valid add-on]\");\n                return(STATE_ADDON); /* add-on symbol start */\n            }\n        }\n        dbprintf(2, \" [invalid start]\");\n        return(-1);\n    }\n\n    if(!E1) {\n        /* attempting decode from SPACE => validate center guard */\n        unsigned e3 = get_width(dcode, 6) + get_width(dcode, 7);\n        unsigned e4 = get_width(dcode, 7) + get_width(dcode, 8);\n        if(!decode_e(e3, dcode->ean.s4, 7) &&\n           !decode_e(e4, dcode->ean.s4, 7)) {\n            dbprintf(2, \" [valid center]\");\n            return(0); /* start after center guard */\n        }\n    }\n    dbprintf(2, \" [invalid center]\");\n    return(-1);\n}\n\n/* check addon delimiter using current 4 as character\n */\nstatic inline signed char aux_mid (zbar_decoder_t *dcode)\n{\n    unsigned e = get_width(dcode, 4) + get_width(dcode, 5);\n    return(decode_e(e, dcode->ean.s4, 7));\n}\n\n/* attempt to decode previous 4 widths (2 bars and 2 spaces) as a character */\nstatic inline signed char decode4 (zbar_decoder_t *dcode)\n{\n    signed char code;\n\n    /* calculate similar edge measurements */\n    unsigned e1 = ((get_color(dcode) == ZBAR_BAR)\n                   ? get_width(dcode, 0) + get_width(dcode, 1)\n                   : get_width(dcode, 2) + get_width(dcode, 3));\n    unsigned e2 = get_width(dcode, 1) + get_width(dcode, 2);\n    dbprintf(2, \"\\n        e1=%d e2=%d\", e1, e2);\n\n    if(dcode->ean.s4 < 6)\n        return(-1);\n\n    /* create compacted encoding for direct lookup */\n    code = ((decode_e(e1, dcode->ean.s4, 7) << 2) |\n             decode_e(e2, dcode->ean.s4, 7));\n    if(code < 0)\n        return(-1);\n    dbprintf(2, \" code=%x\", code);\n\n    /* 4 combinations require additional determinant (D2)\n       E1E2 == 34 (0110)\n       E1E2 == 43 (1001)\n       E1E2 == 33 (0101)\n       E1E2 == 44 (1010)\n     */\n    if((1 << code) & 0x0660) {\n        unsigned char mid, alt;\n        /* use sum of bar widths */\n        unsigned d2 = ((get_color(dcode) == ZBAR_BAR)\n                       ? get_width(dcode, 0) + get_width(dcode, 2)\n                       : get_width(dcode, 1) + get_width(dcode, 3));\n        d2 *= 7;\n        mid = (((1 << code) & 0x0420)\n                             ? 3     /* E1E2 in 33,44 */\n                             : 4);   /* E1E2 in 34,43 */\n        alt = d2 > (mid * dcode->ean.s4);\n        if(alt)\n            code = ((code >> 1) & 3) | 0x10; /* compress code space */\n        dbprintf(2, \" (d2=%d(%d) alt=%d)\", d2, mid * dcode->ean.s4, alt);\n    }\n    dbprintf(2, \" char=%02x\", digits[(unsigned char)code]);\n    zassert(code < 0x14, -1, \"code=%02x e1=%x e2=%x s4=%x color=%x\\n\",\n            code, e1, e2, dcode->ean.s4, get_color(dcode));\n    return(code);\n}\n\nstatic inline char ean_part_end2 (ean_decoder_t *ean,\n                                  ean_pass_t *pass)\n{\n    if(!TEST_CFG(ean->ean2_config, ZBAR_CFG_ENABLE))\n        return(ZBAR_NONE);\n\n    /* extract parity bits */\n    unsigned char par = ((pass->raw[1] & 0x10) >> 3 |\n                         (pass->raw[2] & 0x10) >> 4);\n    /* calculate \"checksum\" */\n    unsigned char chk = ~((pass->raw[1] & 0xf) * 10 +\n                          (pass->raw[2] & 0xf)) & 0x3;\n    dbprintf(2, \" par=%x chk=%x\", par, chk);\n    if(par != chk)\n        return(ZBAR_NONE);\n\n    dbprintf(2, \"\\n\");\n    dbprintf(1, \"decode2=%x%x\\n\",\n             pass->raw[1] & 0xf, pass->raw[2] & 0xf);\n    return(ZBAR_EAN2);\n}\n\nstatic inline zbar_symbol_type_t ean_part_end4 (ean_pass_t *pass,\n                                                unsigned char fwd)\n{\n    /* extract parity bits */\n    unsigned char par = ((pass->raw[1] & 0x10) >> 1 |\n                         (pass->raw[2] & 0x10) >> 2 |\n                         (pass->raw[3] & 0x10) >> 3 |\n                         (pass->raw[4] & 0x10) >> 4);\n\n    dbprintf(2, \" par=%x\", par);\n    if(par && par != 0xf)\n        /* invalid parity combination */\n        return(ZBAR_NONE);\n\n    if(!par == fwd) {\n        /* reverse sampled digits */\n        unsigned char tmp = pass->raw[1];\n        pass->state |= STATE_REV;\n        pass->raw[1] = pass->raw[4];\n        pass->raw[4] = tmp;\n        tmp = pass->raw[2];\n        pass->raw[2] = pass->raw[3];\n        pass->raw[3] = tmp;\n    }\n\n    dbprintf(2, \"\\n\");\n    dbprintf(1, \"decode4=%x%x%x%x\\n\",\n             pass->raw[1] & 0xf, pass->raw[2] & 0xf,\n             pass->raw[3] & 0xf, pass->raw[4] & 0xf);\n    if(!par)\n        return(ZBAR_EAN8 | EAN_RIGHT);\n    return(ZBAR_EAN8 | EAN_LEFT);\n}\n\nstatic inline char ean_part_end5 (ean_decoder_t *ean,\n                                  ean_pass_t *pass)\n{\n    if(!TEST_CFG(ean->ean5_config, ZBAR_CFG_ENABLE))\n        return(ZBAR_NONE);\n\n    /* extract parity bits */\n    unsigned char par = ((pass->raw[1] & 0x10) |\n                         (pass->raw[2] & 0x10) >> 1 |\n                         (pass->raw[3] & 0x10) >> 2 |\n                         (pass->raw[4] & 0x10) >> 3 |\n                         (pass->raw[5] & 0x10) >> 4);\n    /* calculate checksum */\n    unsigned char chk = (((pass->raw[1] & 0x0f) +\n                          (pass->raw[2] & 0x0f) * 3 +\n                          (pass->raw[3] & 0x0f) +\n                          (pass->raw[4] & 0x0f) * 3 +\n                          (pass->raw[5] & 0x0f)) * 3) % 10;\n\n    unsigned char parchk = parity_decode[par >> 1];\n    if(par & 1)\n        parchk >>= 4;\n    parchk &= 0xf;\n    dbprintf(2, \" par=%x(%d) chk=%d\", par, parchk, chk);\n    if(parchk != chk)\n        return(ZBAR_NONE);\n\n    dbprintf(2, \"\\n\");\n    dbprintf(1, \"decode5=%x%x%x%x%x\\n\",\n             pass->raw[1] & 0xf, pass->raw[2] & 0xf,\n             pass->raw[3] & 0xf, pass->raw[4] & 0xf,\n             pass->raw[5] & 0xf);\n\n    return(ZBAR_EAN5);\n}\n\nstatic inline zbar_symbol_type_t ean_part_end7 (ean_decoder_t *ean,\n                                                ean_pass_t *pass,\n                                                unsigned char fwd)\n{\n    /* calculate parity index */\n    unsigned char par = ((fwd)\n                         ? ((pass->raw[1] & 0x10) << 1 |\n                            (pass->raw[2] & 0x10) |\n                            (pass->raw[3] & 0x10) >> 1 |\n                            (pass->raw[4] & 0x10) >> 2 |\n                            (pass->raw[5] & 0x10) >> 3 |\n                            (pass->raw[6] & 0x10) >> 4)\n                         : ((pass->raw[1] & 0x10) >> 4 |\n                            (pass->raw[2] & 0x10) >> 3 |\n                            (pass->raw[3] & 0x10) >> 2 |\n                            (pass->raw[4] & 0x10) >> 1 |\n                            (pass->raw[5] & 0x10) |\n                            (pass->raw[6] & 0x10) << 1));\n\n    /* lookup parity combination */\n    pass->raw[0] = parity_decode[par >> 1];\n    if(par & 1)\n        pass->raw[0] >>= 4;\n    pass->raw[0] &= 0xf;\n    dbprintf(2, \" par=%02x(%x)\", par, pass->raw[0]);\n\n    if(pass->raw[0] == 0xf)\n        /* invalid parity combination */\n        return(ZBAR_NONE);\n\n    if(!par == fwd) {\n        unsigned char i;\n        pass->state |= STATE_REV;\n        /* reverse sampled digits */\n        for(i = 1; i < 4; i++) {\n            unsigned char tmp = pass->raw[i];\n            pass->raw[i] = pass->raw[7 - i];\n            pass->raw[7 - i] = tmp;\n        }\n    }\n\n    dbprintf(2, \"\\n\");\n    dbprintf(1, \"decode=%x%x%x%x%x%x%x(%02x)\\n\",\n             pass->raw[0] & 0xf, pass->raw[1] & 0xf,\n             pass->raw[2] & 0xf, pass->raw[3] & 0xf,\n             pass->raw[4] & 0xf, pass->raw[5] & 0xf,\n             pass->raw[6] & 0xf, par);\n\n    if(TEST_CFG(ean->ean13_config, ZBAR_CFG_ENABLE)) {\n        if(!par)\n            return(ZBAR_EAN13 | EAN_RIGHT);\n        if(par & 0x20)\n            return(ZBAR_EAN13 | EAN_LEFT);\n    }\n    if(par && !(par & 0x20))\n        return(ZBAR_UPCE);\n\n    return(ZBAR_NONE);\n}\n\n/* update state for one of 4 parallel passes */\nstatic inline zbar_symbol_type_t decode_pass (zbar_decoder_t *dcode,\n                                              ean_pass_t *pass)\n{\n    unsigned char idx, fwd;\n    pass->state++;\n    idx = pass->state & STATE_IDX;\n    fwd = pass->state & 1;\n\n    if(get_color(dcode) == ZBAR_SPACE) {\n        if(pass->state & STATE_ADDON) {\n            dbprintf(2, \" i=%d\", idx);\n            if(idx == 0x09 || idx == 0x21) {\n                unsigned qz = get_width(dcode, 0);\n                unsigned s = calc_s(dcode, 1, 4);\n                zbar_symbol_type_t part = !qz || (qz >= s * 3 / 4);\n                if(part && idx == 0x09)\n                    part = ean_part_end2(&dcode->ean, pass);\n                else if(part)\n                    part = ean_part_end5(&dcode->ean, pass);\n\n                if(part || idx == 0x21) {\n                    dcode->ean.direction = 0;\n                    pass->state = -1;\n                    return(part);\n                }\n            }\n            if((idx & 7) == 1) {\n                dbprintf(2, \" +\");\n                pass->state += 2;\n                idx += 2;\n            }\n        }\n        else if((idx == 0x10 || idx == 0x11) &&\n                TEST_CFG(dcode->ean.ean8_config, ZBAR_CFG_ENABLE) &&\n                !aux_end(dcode, fwd)) {\n            dbprintf(2, \" fwd=%x\", fwd);\n            zbar_symbol_type_t part = ean_part_end4(pass, fwd);\n            if(part)\n                dcode->ean.direction = (pass->state & STATE_REV) != 0;\n            pass->state = -1;\n            return(part);\n        }\n\telse if((idx == 0x18 || idx == 0x19)) {\n\t  zbar_symbol_type_t part = ZBAR_NONE;\n\t  dbprintf(2, \" fwd=%x\", fwd);\n\t  if(!aux_end(dcode, fwd) && pass->raw[5] != 0xff)\n\t    part = ean_part_end7(&dcode->ean, pass, fwd);\n\t  if(part)\n\t    dcode->ean.direction = (pass->state & STATE_REV) != 0;\n\t  pass->state = -1;\n\t  return(part);\n        }\n    }\n\n    if(pass->state & STATE_ADDON)\n        idx >>= 1;\n\n    if(!(idx & 0x03) && idx <= 0x14) {\n        signed char code = -1;\n        unsigned w = pass->width;\n        if(!dcode->ean.s4)\n            return(0);\n        /* validate guard bars before decoding first char of symbol */\n        if(!pass->state) {\n            pass->state = aux_start(dcode);\n            pass->width = dcode->ean.s4;\n            if(pass->state < 0)\n                return(0);\n            idx = pass->state & STATE_IDX;\n        }\n        else {\n            w = check_width(w, dcode->ean.s4);\n            if(w)\n                pass->width = (pass->width + dcode->ean.s4 * 3) / 4;\n        }\n\n        if(w)\n            code = decode4(dcode);\n        else\n            dbprintf(2, \" [bad width]\");\n\n        if((code < 0 && idx != 0x10) || \n           (idx > 0 && (pass->state & STATE_ADDON) && aux_mid(dcode)))\n            pass->state = -1;\n        else if(code < 0)\n            pass->raw[5] = 0xff;\n        else {\n            dbprintf(2, \"\\n        raw[%x]=%02x =>\", idx >> 2,\n                     digits[(unsigned char)code]);\n            pass->raw[(idx >> 2) + 1] = digits[(unsigned char)code];\n            dbprintf(2, \" raw=%d%d%d%d%d%d%d\",\n                     pass->raw[0] & 0xf, pass->raw[1] & 0xf,\n                     pass->raw[2] & 0xf, pass->raw[3] & 0xf,\n                     pass->raw[4] & 0xf, pass->raw[5] & 0xf,\n                     pass->raw[6] & 0xf);\n        }\n    }\n    return(0);\n}\n\nstatic inline signed char ean_verify_checksum (ean_decoder_t *ean,\n                                               int n)\n{\n    unsigned char chk = 0;\n    unsigned char i, d;\n    for(i = 0; i < n; i++) {\n        unsigned char d = ean->buf[i];\n        zassert(d < 10, -1, \"i=%x d=%x chk=%x %s\\n\", i, d, chk,\n                _zbar_decoder_buf_dump((void*)ean->buf, 18));\n        chk += d;\n        if((i ^ n) & 1) {\n            chk += d << 1;\n            if(chk >= 20)\n                chk -= 20;\n        }\n        if(chk >= 10)\n            chk -= 10;\n    }\n    zassert(chk < 10, -1, \"chk=%x n=%x %s\", chk, n,\n            _zbar_decoder_buf_dump((void*)ean->buf, 18));\n    if(chk)\n        chk = 10 - chk;\n    d = ean->buf[n];\n    zassert(d < 10, -1, \"n=%x d=%x chk=%x %s\\n\", n, d, chk,\n            _zbar_decoder_buf_dump((void*)ean->buf, 18));\n    if(chk != d) {\n        dbprintf(1, \"\\nchecksum mismatch %d != %d (%s)\\n\",\n                 chk, d, dsprintbuf(ean));\n        return(-1);\n    }\n    return(0);\n}\n\nstatic inline unsigned char isbn10_calc_checksum (ean_decoder_t *ean)\n{\n    unsigned int chk = 0;\n    unsigned char w;\n    for(w = 10; w > 1; w--) {\n        unsigned char d = ean->buf[13 - w];\n        zassert(d < 10, '?', \"w=%x d=%x chk=%x %s\\n\", w, d, chk,\n                _zbar_decoder_buf_dump((void*)ean->buf, 18));\n        chk += d * w;\n    }\n    chk = chk % 11;\n    if(!chk)\n        return('0');\n    chk = 11 - chk;\n    if(chk < 10)\n        return(chk + '0');\n    return('X');\n}\n\nstatic inline void ean_expand_upce (ean_decoder_t *ean,\n                                    ean_pass_t *pass)\n{\n    int i = 0;\n    unsigned char decode;\n    /* parity encoded digit is checksum */\n    ean->buf[12] = pass->raw[i++];\n\n    decode = pass->raw[6] & 0xf;\n    ean->buf[0] = 0;\n    ean->buf[1] = 0;\n    ean->buf[2] = pass->raw[i++] & 0xf;\n    ean->buf[3] = pass->raw[i++] & 0xf;\n    ean->buf[4] = (decode < 3) ? decode : pass->raw[i++] & 0xf;\n    ean->buf[5] = (decode < 4) ? 0 : pass->raw[i++] & 0xf;\n    ean->buf[6] = (decode < 5) ? 0 : pass->raw[i++] & 0xf;\n    ean->buf[7] = 0;\n    ean->buf[8] = 0;\n    ean->buf[9] = (decode < 3) ? pass->raw[i++] & 0xf : 0;\n    ean->buf[10] = (decode < 4) ? pass->raw[i++] & 0xf : 0;\n    ean->buf[11] = (decode < 5) ? pass->raw[i] & 0xf : decode;\n}\n\nstatic inline zbar_symbol_type_t integrate_partial (ean_decoder_t *ean,\n                                                    ean_pass_t *pass,\n                                                    zbar_symbol_type_t part)\n{\n    /* copy raw data into holding buffer */\n    /* if same partial is not consistent, reset others */\n    dbprintf(2, \" integrate part=%x (%s)\", part, dsprintbuf(ean));\n    signed char i, j;\n\n    if((ean->left && ((part & ZBAR_SYMBOL) != ean->left)) ||\n       (ean->right && ((part & ZBAR_SYMBOL) != ean->right))) {\n        /* partial mismatch - reset collected parts */\n        dbprintf(2, \" rst(type %x %x)\", ean->left, ean->right);\n        ean->left = ean->right = ZBAR_NONE;\n    }\n\n    if((ean->left || ean->right) &&\n       !check_width(ean->width, pass->width)) {\n      dbprintf(2, \" rst(width %d)\", pass->width);\n      ean->left = ean->right = ZBAR_NONE;\n    }\n\n\n    if(part & EAN_RIGHT) {\n        part &= ZBAR_SYMBOL;\n        j = part - 1;\n        for(i = part >> 1; i; i--, j--) {\n            unsigned char digit = pass->raw[i] & 0xf;\n            if(ean->right && ean->buf[j] != digit) {\n                /* partial mismatch - reset collected parts */\n                dbprintf(2, \" rst(right)\");\n                ean->left = ean->right = ZBAR_NONE;\n            }\n            ean->buf[j] = digit;\n        }\n        ean->right = part;\n        part &= ean->left;  /* FIXME!? */\n    }\n    else if(part == ZBAR_EAN13 || part == ZBAR_EAN8) /* EAN_LEFT */ {\n        j = (part - 1) >> 1;\n        for(i = part >> 1; j >= 0; i--, j--) {\n            unsigned char digit = pass->raw[i] & 0xf;\n            if(ean->left && ean->buf[j] != digit) {\n                /* partial mismatch - reset collected parts */\n                dbprintf(2, \" rst(left)\");\n                ean->left = ean->right = ZBAR_NONE;\n            }\n            ean->buf[j] = digit;\n        }\n        ean->left = part;\n        part &= ean->right;  /* FIXME!? */\n    }\n    else if(part != ZBAR_UPCE) /* add-ons */ {\n        for(i = part; i > 0; i--)\n            ean->buf[i - 1] = pass->raw[i] & 0xf;\n        ean->left = part;\n    }\n    else\n        ean_expand_upce(ean, pass);\n\n    ean->width = pass->width;\n\n    if(!part)\n        part = ZBAR_PARTIAL;\n\n    if(((part == ZBAR_EAN13 ||\n         part == ZBAR_UPCE) && ean_verify_checksum(ean, 12)) ||\n       (part == ZBAR_EAN8 && ean_verify_checksum(ean, 7))) {\n        /* invalid checksum */\n        if(ean->right)\n\t  ean->left = ZBAR_NONE;\n        else\n\t  ean->right = ZBAR_NONE;\n        part = ZBAR_NONE;\n    }\n\n    if(part == ZBAR_EAN13) {\n        /* special case EAN-13 subsets */\n        if(!ean->buf[0] && TEST_CFG(ean->upca_config, ZBAR_CFG_ENABLE))\n            part = ZBAR_UPCA;\n        else if(ean->buf[0] == 9 && ean->buf[1] == 7) {\n            /* ISBN-10 has priority over ISBN-13(?) */\n            if(ean->buf[2] == 8 &&\n               TEST_CFG(ean->isbn10_config, ZBAR_CFG_ENABLE))\n                part = ZBAR_ISBN10;\n            else if((ean->buf[2] == 8 || ean->buf[2] == 9) &&\n               TEST_CFG(ean->isbn13_config, ZBAR_CFG_ENABLE))\n                part = ZBAR_ISBN13;\n        }\n    }\n    else if(part == ZBAR_UPCE) {\n        if(TEST_CFG(ean->upce_config, ZBAR_CFG_ENABLE)) {\n            /* UPC-E was decompressed for checksum verification,\n             * but user requested compressed result\n             */\n            ean->buf[0] = ean->buf[1] = 0;\n            for(i = 2; i < 8; i++)\n                ean->buf[i] = pass->raw[i - 1] & 0xf;\n            ean->buf[i] = pass->raw[0] & 0xf;\n        }\n        else if(TEST_CFG(ean->upca_config, ZBAR_CFG_ENABLE))\n            /* UPC-E reported as UPC-A has priority over EAN-13 */\n            part = ZBAR_UPCA;\n        else if(TEST_CFG(ean->ean13_config, ZBAR_CFG_ENABLE))\n            part = ZBAR_EAN13;\n        else\n            part = ZBAR_NONE;\n    }\n\n    dbprintf(2, \" dir=%d %x/%x=%x\",\n             ean->direction, ean->left, ean->right, part);\n    return(part);\n}\n\n/* copy result to output buffer */\nstatic inline void postprocess (zbar_decoder_t *dcode,\n                                zbar_symbol_type_t sym)\n{\n    ean_decoder_t *ean = &dcode->ean;\n    zbar_symbol_type_t base = sym;\n    int i = 0, j = 0;\n    if(base > ZBAR_PARTIAL) {\n        if(base == ZBAR_UPCA)\n            i = 1;\n        else if(base == ZBAR_UPCE) {\n            i = 1;\n            base--;\n        }\n        else if(base == ZBAR_ISBN13)\n            base = ZBAR_EAN13;\n        else if(base == ZBAR_ISBN10)\n            i = 3;\n\n        if(base == ZBAR_ISBN10 ||\n           (base > ZBAR_EAN5 &&\n            !TEST_CFG(ean_get_config(ean, sym), ZBAR_CFG_EMIT_CHECK)))\n            base--;\n\n        for(; j < base && ean->buf[i] >= 0; i++, j++)\n            dcode->buf[j] = ean->buf[i] + '0';\n\n        if(sym == ZBAR_ISBN10 && j == 9 &&\n           TEST_CFG(ean->isbn10_config, ZBAR_CFG_EMIT_CHECK))\n            /* recalculate ISBN-10 check digit */\n            dcode->buf[j++] = isbn10_calc_checksum(ean);\n    }\n    dcode->buflen = j;\n    dcode->buf[j] = '\\0';\n    dcode->direction = 1 - 2 * ean->direction;\n    dcode->modifiers = 0;\n    dbprintf(2, \" base=%d j=%d (%s)\", base, j, dcode->buf);\n}\n\nzbar_symbol_type_t _zbar_decode_ean (zbar_decoder_t *dcode)\n{\n    /* process upto 4 separate passes */\n    zbar_symbol_type_t sym = ZBAR_NONE;\n    unsigned char pass_idx = dcode->idx & 3;\n    unsigned char i;\n\n    /* update latest character width */\n    dcode->ean.s4 -= get_width(dcode, 4);\n    dcode->ean.s4 += get_width(dcode, 0);\n\n    for(i = 0; i < 4; i++) {\n        ean_pass_t *pass = &dcode->ean.pass[i];\n        if(pass->state >= 0 ||\n           i == pass_idx)\n        {\n            zbar_symbol_type_t part;\n            dbprintf(2, \"      ean[%x/%x]: idx=%x st=%d s=%d\",\n                     i, pass_idx, dcode->idx, pass->state, dcode->ean.s4);\n            part = decode_pass(dcode, pass);\n            if(part) {\n                /* update accumulated data from new partial decode */\n                sym = integrate_partial(&dcode->ean, pass, part);\n                if(sym) {\n                    /* this pass valid => _reset_ all passes */\n                    dbprintf(2, \" sym=%x\", sym);\n                    dcode->ean.pass[0].state = dcode->ean.pass[1].state = -1;\n                    dcode->ean.pass[2].state = dcode->ean.pass[3].state = -1;\n                    if(sym > ZBAR_PARTIAL) {\n                        if(!acquire_lock(dcode, sym))\n                            postprocess(dcode, sym);\n                        else {\n                            dbprintf(1, \" [locked %d]\", dcode->lock);\n                            sym = ZBAR_PARTIAL;\n                        }\n                    }\n                }\n            }\n            dbprintf(2, \"\\n\");\n        }\n    }\n    return(sym);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/ean.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _EAN_H_\n#define _EAN_H_\n\n/* state of each parallel decode attempt */\ntypedef struct ean_pass_s {\n    signed char state;          /* module position of w[idx] in symbol */\n#define STATE_REV   0x80        /*   scan direction reversed */\n#define STATE_ADDON 0x40        /*   scanning add-on */\n#define STATE_IDX   0x3f        /*   element offset into symbol */\n    unsigned width;             /* width of last character */\n    unsigned char raw[7];       /* decode in process */\n} ean_pass_t;\n\n/* EAN/UPC specific decode state */\ntypedef struct ean_decoder_s {\n    ean_pass_t pass[4];         /* state of each parallel decode attempt */\n    zbar_symbol_type_t left;    /* current holding buffer contents */\n    zbar_symbol_type_t right;\n    int direction;              /* scan direction */\n    unsigned s4, width;         /* character width */\n    signed char buf[18];        /* holding buffer */\n\n    signed char enable;\n    unsigned ean13_config;\n    unsigned ean8_config;\n    unsigned upca_config;\n    unsigned upce_config;\n    unsigned isbn10_config;\n    unsigned isbn13_config;\n    unsigned ean5_config;\n    unsigned ean2_config;\n} ean_decoder_t;\n\n/* reset EAN/UPC pass specific state */\nstatic inline void ean_new_scan (ean_decoder_t *ean)\n{\n    ean->pass[0].state = ean->pass[1].state = -1;\n    ean->pass[2].state = ean->pass[3].state = -1;\n    ean->s4 = 0;\n}\n\n/* reset all EAN/UPC state */\nstatic inline void ean_reset (ean_decoder_t *ean)\n{\n    ean_new_scan(ean);\n    ean->left = ean->right = ZBAR_NONE;\n}\n\nstatic inline unsigned ean_get_config (ean_decoder_t *ean,\n                                       zbar_symbol_type_t sym)\n{\n    switch(sym) {\n    case ZBAR_EAN2:   return(ean->ean2_config);\n    case ZBAR_EAN5:   return(ean->ean5_config);\n    case ZBAR_EAN8:   return(ean->ean8_config);\n    case ZBAR_UPCE:   return(ean->upce_config);\n    case ZBAR_ISBN10: return(ean->isbn10_config);\n    case ZBAR_UPCA:   return(ean->upca_config);\n    case ZBAR_EAN13:  return(ean->ean13_config);\n    case ZBAR_ISBN13: return(ean->isbn13_config);\n    default:          return(0);\n    }\n}\n\n/* decode EAN/UPC symbols */\nzbar_symbol_type_t _zbar_decode_ean(zbar_decoder_t *dcode);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/i25.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <string.h>     /* memmove */\n\n#include <zbar.h>\n\n#ifdef DEBUG_I25\n# define DEBUG_LEVEL (DEBUG_I25)\n#endif\n#include \"debug.h\"\n#include \"decoder.h\"\n\nstatic inline unsigned char i25_decode1 (unsigned char enc,\n                                         unsigned e,\n                                         unsigned s)\n{\n    unsigned char E = decode_e(e, s, 45);\n    if(E > 7)\n        return(0xff);\n    enc <<= 1;\n    if(E > 2)\n        enc |= 1;\n    return(enc);\n}\n\nstatic inline unsigned char i25_decode10 (zbar_decoder_t *dcode,\n                                          unsigned char offset)\n{\n    i25_decoder_t *dcode25 = &dcode->i25;\n    dbprintf(2, \" s=%d\", dcode25->s10);\n    if(dcode25->s10 < 10)\n        return(0xff);\n\n    /* threshold bar width ratios */\n    unsigned char enc = 0, par = 0;\n    signed char i;\n    for(i = 8; i >= 0; i -= 2) {\n        unsigned char j = offset + ((dcode25->direction) ? i : 8 - i);\n        enc = i25_decode1(enc, get_width(dcode, j), dcode25->s10);\n        if(enc == 0xff)\n            return(0xff);\n        if(enc & 1)\n            par++;\n    }\n\n    dbprintf(2, \" enc=%02x par=%x\", enc, par);\n\n    /* parity check */\n    if(par != 2) {\n        dbprintf(2, \" [bad parity]\");\n        return(0xff);\n    }\n\n    /* decode binary weights */\n    enc &= 0xf;\n    if(enc & 8) {\n        if(enc == 12)\n            enc = 0;\n        else if(--enc > 9) {\n            dbprintf(2, \" [invalid encoding]\");\n            return(0xff);\n        }\n    }\n\n    dbprintf(2, \" => %x\", enc);\n    return(enc);\n}\n\nstatic inline signed char i25_decode_start (zbar_decoder_t *dcode)\n{\n    i25_decoder_t *dcode25 = &dcode->i25;\n    if(dcode25->s10 < 10)\n        return(ZBAR_NONE);\n\n    unsigned char enc = 0;\n    unsigned char i = 10;\n    enc = i25_decode1(enc, get_width(dcode, i++), dcode25->s10);\n    enc = i25_decode1(enc, get_width(dcode, i++), dcode25->s10);\n    enc = i25_decode1(enc, get_width(dcode, i++), dcode25->s10);\n\n    if((get_color(dcode) == ZBAR_BAR)\n       ? enc != 4\n       : (enc = i25_decode1(enc, get_width(dcode, i++), dcode25->s10))) {\n        dbprintf(4, \"      i25: s=%d enc=%x [invalid]\\n\", dcode25->s10, enc);\n        return(ZBAR_NONE);\n    }\n\n    /* check leading quiet zone - spec is 10n(?)\n     * we require 5.25n for w=2n to 6.75n for w=3n\n     * (FIXME should really factor in w:n ratio)\n     */\n    unsigned quiet = get_width(dcode, i);\n    if(quiet && quiet < dcode25->s10 * 3 / 8) {\n        dbprintf(3, \"      i25: s=%d enc=%x q=%d [invalid qz]\\n\",\n                 dcode25->s10, enc, quiet);\n        return(ZBAR_NONE);\n    }\n\n    dcode25->direction = get_color(dcode);\n    dcode25->element = 1;\n    dcode25->character = 0;\n    return(ZBAR_PARTIAL);\n}\n\nstatic inline int i25_acquire_lock (zbar_decoder_t *dcode)\n{\n    int i;\n    /* lock shared resources */\n    if(acquire_lock(dcode, ZBAR_I25)) {\n        dcode->i25.character = -1;\n        return(1);\n    }\n\n    /* copy holding buffer */\n    for(i = 4; --i >= 0; )\n        dcode->buf[i] = dcode->i25.buf[i];\n    return(0);\n}\n\nstatic inline signed char i25_decode_end (zbar_decoder_t *dcode)\n{\n    i25_decoder_t *dcode25 = &dcode->i25;\n\n    /* check trailing quiet zone */\n    unsigned quiet = get_width(dcode, 0);\n    if((quiet && quiet < dcode25->width * 3 / 8) ||\n       decode_e(get_width(dcode, 1), dcode25->width, 45) > 2 ||\n       decode_e(get_width(dcode, 2), dcode25->width, 45) > 2) {\n        dbprintf(3, \"      i25: s=%d q=%d [invalid qz]\\n\",\n                 dcode25->width, quiet);\n        return(ZBAR_NONE);\n    }\n\n    /* check exit condition */\n    unsigned char E = decode_e(get_width(dcode, 3), dcode25->width, 45);\n    if((!dcode25->direction)\n       ? E - 3 > 4\n       : (E > 2 ||\n          decode_e(get_width(dcode, 4), dcode25->width, 45) > 2))\n        return(ZBAR_NONE);\n\n    if(dcode25->character <= 4 &&\n       i25_acquire_lock(dcode))\n        return(ZBAR_PARTIAL);\n\n    dcode->direction = 1 - 2 * dcode25->direction;\n    if(dcode25->direction) {\n        /* reverse buffer */\n        dbprintf(2, \" (rev)\");\n        int i;\n        for(i = 0; i < dcode25->character / 2; i++) {\n            unsigned j = dcode25->character - 1 - i;\n            char c = dcode->buf[i];\n            dcode->buf[i] = dcode->buf[j];\n            dcode->buf[j] = c;\n        }\n    }\n\n    if(dcode25->character < CFG(*dcode25, ZBAR_CFG_MIN_LEN) ||\n       (CFG(*dcode25, ZBAR_CFG_MAX_LEN) > 0 &&\n        dcode25->character > CFG(*dcode25, ZBAR_CFG_MAX_LEN))) {\n        dbprintf(2, \" [invalid len]\\n\");\n        release_lock(dcode, ZBAR_I25);\n        dcode25->character = -1;\n        return(ZBAR_NONE);\n    }\n\n    zassert(dcode25->character < dcode->buf_alloc, ZBAR_NONE, \"i=%02x %s\\n\",\n            dcode25->character,\n            _zbar_decoder_buf_dump(dcode->buf, dcode25->character));\n    dcode->buflen = dcode25->character;\n    dcode->buf[dcode25->character] = '\\0';\n    dcode->modifiers = 0;\n    dbprintf(2, \" [valid end]\\n\");\n    dcode25->character = -1;\n    return(ZBAR_I25);\n}\n\nzbar_symbol_type_t _zbar_decode_i25 (zbar_decoder_t *dcode)\n{\n    i25_decoder_t *dcode25 = &dcode->i25;\n\n    /* update latest character width */\n    dcode25->s10 -= get_width(dcode, 10);\n    dcode25->s10 += get_width(dcode, 0);\n\n    if(dcode25->character < 0 &&\n       !i25_decode_start(dcode))\n        return(ZBAR_NONE);\n\n    if(--dcode25->element == 6 - dcode25->direction)\n        return(i25_decode_end(dcode));\n    else if(dcode25->element)\n        return(ZBAR_NONE);\n\n    /* FIXME check current character width against previous */\n    dcode25->width = dcode25->s10;\n\n    dbprintf(2, \"      i25[%c%02d+%x]\",\n             (dcode25->direction) ? '<' : '>',\n             dcode25->character, dcode25->element);\n\n    if(dcode25->character == 4 && i25_acquire_lock(dcode))\n        return(ZBAR_PARTIAL);\n\n    unsigned char c = i25_decode10(dcode, 1);\n    dbprintf(2, \" c=%x\", c);\n    if(c > 9) {\n        dbprintf(2, \" [aborted]\\n\");\n        goto reset;\n    }\n\n    if(size_buf(dcode, dcode25->character + 3)) {\n        dbprintf(2, \" [overflow]\\n\");\n        goto reset;\n    }\n\n    unsigned char *buf;\n    if(dcode25->character >= 4)\n        buf = dcode->buf;\n    else\n        buf = dcode25->buf;\n    buf[dcode25->character++] = c + '0';\n\n    c = i25_decode10(dcode, 0);\n    dbprintf(2, \" c=%x\", c);\n    if(c > 9) {\n        dbprintf(2, \" [aborted]\\n\");\n        goto reset;\n    }\n    else\n        dbprintf(2, \"\\n\");\n\n    buf[dcode25->character++] = c + '0';\n    dcode25->element = 10;\n    return((dcode25->character == 2) ? ZBAR_PARTIAL : ZBAR_NONE);\n\nreset:\n    if(dcode25->character >= 4)\n        release_lock(dcode, ZBAR_I25);\n    dcode25->character = -1;\n    return(ZBAR_NONE);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/i25.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _I25_H_\n#define _I25_H_\n\n/* interleaved 2 of 5 specific decode state */\ntypedef struct i25_decoder_s {\n    unsigned direction : 1;     /* scan direction: 0=fwd/space, 1=rev/bar */\n    unsigned element : 4;       /* element offset 0-8 */\n    int character : 12;         /* character position in symbol */\n    unsigned s10;               /* current character width */\n    unsigned width;             /* last character width */\n    unsigned char buf[4];       /* initial scan buffer */\n\n    unsigned config;\n    int configs[NUM_CFGS];      /* int valued configurations */\n} i25_decoder_t;\n\n/* reset interleaved 2 of 5 specific state */\nstatic inline void i25_reset (i25_decoder_t *i25)\n{\n    i25->direction = 0;\n    i25->element = 0;\n    i25->character = -1;\n    i25->s10 = 0;\n}\n\n/* decode interleaved 2 of 5 symbols */\nzbar_symbol_type_t _zbar_decode_i25(zbar_decoder_t *dcode);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/pdf417.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n\n#include <zbar.h>\n\n#ifdef DEBUG_PDF417\n# define DEBUG_LEVEL (DEBUG_PDF417)\n#endif\n#include \"debug.h\"\n#include \"decoder.h\"\n\n#include \"pdf417_hash.h\"\n\n#define PDF417_STOP 0xbff\n\nstatic inline signed short pdf417_decode8 (zbar_decoder_t *dcode)\n{\n    /* build edge signature of character\n     * from similar edge measurements\n     */\n    unsigned s = dcode->pdf417.s8;\n    dbprintf(2, \" s=%d \", s);\n    if(s < 8)\n        return(-1);\n\n    long sig = 0;\n    signed char e;\n    unsigned char i;\n    for(i = 0; i < 7; i++) {\n        if(get_color(dcode) == ZBAR_SPACE)\n            e = decode_e(get_width(dcode, i) +\n                         get_width(dcode, i + 1), s, 17);\n        else\n            e = decode_e(get_width(dcode, 7 - i) +\n                         get_width(dcode, 6 - i), s, 17);\n        dbprintf(4, \"%x\", e);\n        if(e < 0 || e > 8)\n            return(-1);\n        sig = (sig << 3) ^ e;\n    }\n    dbprintf(2, \" sig=%06lx\", sig);\n\n    /* determine cluster number */\n    int clst = ((sig & 7) - ((sig >> 3) & 7) +\n                ((sig >> 12) & 7) - ((sig >> 15) & 7));\n    if(clst < 0)\n        clst += 9;\n    dbprintf(2, \" k=%d\", clst);\n    zassert(clst >= 0 && clst < 9, -1, \"dir=%x sig=%lx k=%x %s\\n\",\n            dcode->pdf417.direction, sig, clst,\n            _zbar_decoder_buf_dump(dcode->buf, dcode->pdf417.character));\n\n    if(clst != 0 && clst != 3 && clst != 6) {\n        if(get_color(dcode) && clst == 7 && sig == 0x080007)\n            return(PDF417_STOP);\n        return(-1);\n    }\n\n    signed short g[3];\n    sig &= 0x3ffff;\n    g[0] = pdf417_hash[(sig - (sig >> 10)) & PDF417_HASH_MASK];\n    g[1] = pdf417_hash[((sig >> 8) - sig) & PDF417_HASH_MASK];\n    g[2] = pdf417_hash[((sig >> 14) - (sig >> 1)) & PDF417_HASH_MASK];\n    zassert(g[0] >= 0 && g[1] >= 0 && g[2] >= 0, -1,\n            \"dir=%x sig=%lx k=%x g0=%03x g1=%03x g2=%03x %s\\n\",\n            dcode->pdf417.direction, sig, clst, g[0], g[1], g[2],\n            _zbar_decoder_buf_dump(dcode->buf, dcode->pdf417.character));\n\n    unsigned short c = (g[0] + g[1] + g[2]) & PDF417_HASH_MASK;\n    dbprintf(2, \" g0=%x g1=%x g2=%x c=%03d(%d)\",\n             g[0], g[1], g[2], c & 0x3ff, c >> 10);\n    return(c);\n}\n\nstatic inline signed char pdf417_decode_start(zbar_decoder_t *dcode)\n{\n    unsigned s = dcode->pdf417.s8;\n    if(s < 8)\n        return(0);\n\n    int ei = decode_e(get_width(dcode, 0) + get_width(dcode, 1), s, 17);\n    int ex = (get_color(dcode) == ZBAR_SPACE) ? 2 : 6;\n    if(ei != ex)\n        return(0);\n\n    ei = decode_e(get_width(dcode, 1) + get_width(dcode, 2), s, 17);\n    if(ei)\n        return(0);\n\n    ei = decode_e(get_width(dcode, 2) + get_width(dcode, 3), s, 17);\n    ex = (get_color(dcode) == ZBAR_SPACE) ? 0 : 2;\n    if(ei != ex)\n        return(0);\n\n    ei = decode_e(get_width(dcode, 3) + get_width(dcode, 4), s, 17);\n    ex = (get_color(dcode) == ZBAR_SPACE) ? 0 : 2;\n    if(ei != ex)\n        return(0);\n\n    ei = decode_e(get_width(dcode, 4) + get_width(dcode, 5), s, 17);\n    if(ei)\n        return(0);\n\n    ei = decode_e(get_width(dcode, 5) + get_width(dcode, 6), s, 17);\n    if(ei)\n        return(0);\n\n    ei = decode_e(get_width(dcode, 6) + get_width(dcode, 7), s, 17);\n    ex = (get_color(dcode) == ZBAR_SPACE) ? 7 : 1;\n    if(ei != ex)\n        return(0);\n\n    ei = decode_e(get_width(dcode, 7) + get_width(dcode, 8), s, 17);\n    ex = (get_color(dcode) == ZBAR_SPACE) ? 8 : 1;\n\n    if(get_color(dcode) == ZBAR_BAR) {\n        /* stop character has extra bar */\n        if(ei != 1)\n            return(0);\n        ei = decode_e(get_width(dcode, 8) + get_width(dcode, 9), s, 17);\n    }\n\n    dbprintf(2, \"      pdf417[%c]: s=%d\",\n             (get_color(dcode)) ? '<' : '>', s);\n\n    /* check quiet zone */\n    if(ei >= 0 && ei < ex) {\n        dbprintf(2, \" [invalid quiet]\\n\");\n        return(0);\n    }\n\n    /* lock shared resources */\n    if(acquire_lock(dcode, ZBAR_PDF417)) {\n        dbprintf(2, \" [locked %d]\\n\", dcode->lock);\n        return(0);\n    }\n\n    pdf417_decoder_t *dcode417 = &dcode->pdf417;\n    dcode417->direction = get_color(dcode);\n    dcode417->element = 0;\n    dcode417->character = 0;\n\n    dbprintf(2, \" [valid start]\\n\");\n    return(ZBAR_PARTIAL);\n}\n\nzbar_symbol_type_t _zbar_decode_pdf417 (zbar_decoder_t *dcode)\n{\n    pdf417_decoder_t *dcode417 = &dcode->pdf417;\n\n    /* update latest character width */\n    dcode417->s8 -= get_width(dcode, 8);\n    dcode417->s8 += get_width(dcode, 0);\n\n    if(dcode417->character < 0) {\n        pdf417_decode_start(dcode);\n        dbprintf(4, \"\\n\");\n        return(0);\n    }\n\n    /* process every 8th element of active symbol */\n    if(++dcode417->element)\n        return(0);\n    dcode417->element = 0;\n\n    dbprintf(2, \"      pdf417[%c%02d]:\",\n             (dcode417->direction) ? '<' : '>', dcode417->character);\n\n    if(get_color(dcode) != dcode417->direction) {\n        int c = dcode417->character;\n        release_lock(dcode, ZBAR_PDF417);\n        dcode417->character = -1;\n        zassert(get_color(dcode) == dcode417->direction, ZBAR_NONE,\n                \"color=%x dir=%x char=%d elem=0 %s\\n\",\n                get_color(dcode), dcode417->direction, c,\n                _zbar_decoder_buf_dump(dcode->buf, c));\n    }\n\n    signed short c = pdf417_decode8(dcode);\n    if(c < 0 || size_buf(dcode, dcode417->character + 1)) {\n        dbprintf(1, (c < 0) ? \" [aborted]\\n\" : \" [overflow]\\n\");\n        release_lock(dcode, ZBAR_PDF417);\n        dcode417->character = -1;\n        return(0);\n    }\n\n    /* FIXME TBD infer dimensions, save codewords */\n\n    if(c == PDF417_STOP) {\n        dbprintf(1, \" [valid stop]\");\n        /* FIXME check trailing bar and qz */\n        dcode->direction = 1 - 2 * dcode417->direction;\n        dcode->modifiers = 0;\n        release_lock(dcode, ZBAR_PDF417);\n        dcode417->character = -1;\n    }\n\n    dbprintf(2, \"\\n\");\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/pdf417.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _PDF417_H_\n#define _PDF417_H_\n\n/* PDF417 specific decode state */\ntypedef struct pdf417_decoder_s {\n    unsigned direction : 1;     /* scan direction: 0=fwd/space, 1=rev/bar */\n    unsigned element : 3;       /* element offset 0-7 */\n    int character : 12;         /* character position in symbol */\n    unsigned s8;                /* character width */\n\n    unsigned config;\n    int configs[NUM_CFGS];      /* int valued configurations */\n} pdf417_decoder_t;\n\n/* reset PDF417 specific state */\nstatic inline void pdf417_reset (pdf417_decoder_t *pdf417)\n{\n    pdf417->direction = 0;\n    pdf417->element = 0;\n    pdf417->character = -1;\n    pdf417->s8 = 0;\n}\n\n/* decode PDF417 symbols */\nzbar_symbol_type_t _zbar_decode_pdf417(zbar_decoder_t *dcode);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/pdf417_hash.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _PDF417_HASH_H_\n#define _PDF417_HASH_H_\n\n/* PDF417 bar to codeword decode table */\n\n#define PDF417_HASH_MASK 0xfff\n\nstatic const signed short pdf417_hash[PDF417_HASH_MASK + 1] = {\n 0x170, 0xd8e, 0x02e, 0x000, 0xa21, 0xc99, 0x000, 0xf06,\n 0xdaa, 0x7a1, 0xc5f, 0x7ff, 0xbcf, 0xac8, 0x000, 0xc51,\n 0x49a, 0x5c7, 0x000, 0xef2, 0x000, 0x7dd, 0x9ee, 0xe32,\n 0x1b7, 0x489, 0x3b7, 0xe70, 0x9c8, 0xe5e, 0xdf4, 0x599,\n 0x4e0, 0x608, 0x639, 0xead, 0x0ac, 0x57c, 0x000, 0x20d,\n 0x61b, 0x000, 0x7d1, 0x80f, 0x803, 0x000, 0x946, 0x093,\n 0x79c, 0xf9c, 0xb34, 0x6d8, 0x4f1, 0x975, 0x886, 0x313,\n 0xe8a, 0xf20, 0x3c9, 0xa92, 0xb90, 0xa1d, 0x091, 0x0ac,\n 0xb50, 0x3af, 0x90a, 0x45a, 0x815, 0xf29, 0xb20, 0xb6d,\n 0xc5c, 0x1cd, 0x1e2, 0x1bf, 0x963, 0x80b, 0xa7c, 0x9b7,\n 0xb65, 0x6b7, 0x117, 0xc04, 0x000, 0x18e, 0x000, 0x77f,\n 0xe0e, 0xf48, 0x370, 0x818, 0x379, 0x000, 0x090, 0xe77,\n 0xd99, 0x8b8, 0xb95, 0x8a9, 0x94c, 0xc48, 0x679, 0x000,\n 0x41a, 0x9ea, 0xb0e, 0x9c1, 0x1b4, 0x000, 0x630, 0x811,\n 0x4b1, 0xc05, 0x98f, 0xa68, 0x485, 0x706, 0xfff, 0x0d9,\n 0xddc, 0x000, 0x83f, 0x54e, 0x290, 0xfe7, 0x64f, 0xf36,\n 0x000, 0x151, 0xb9b, 0x5cd, 0x961, 0x690,    -1, 0xa7a,\n 0x328, 0x707, 0xe6d, 0xe1f,    -1, 0x6a0, 0xf3e, 0xb27,\n 0x315, 0xc8c, 0x6de, 0x996, 0x2f9, 0xc4c, 0x90f,    -1,\n 0xaa7, 0x9e9, 0xfff, 0x0bb, 0x33b, 0xbc6, 0xe17, 0x000,\n 0x85d, 0x912, 0x5f7, 0x000, 0xff1, 0xba1, 0x086, 0xa1e,\n 0x85a, 0x4cf, 0xd47, 0x5a9, 0x5dc, 0x0bc,    -1, 0x544,\n 0x522, 0x1ff, 0xfa6, 0xa83, 0xc7d, 0x545, 0xd75, 0xb6f,\n 0x284, 0xf11, 0xe46,    -1, 0x900, 0x0f3, 0xe31, 0x705,\n 0x06d, 0xd59, 0x67b, 0xe56,    -1, 0xde2, 0x000, 0xd42,\n    -1, 0x24b, 0x000, 0xf87, 0x842,    -1, 0xbb9, 0x065,\n 0x626, 0x86a, 0x9f8,    -1, 0x7ac, 0xe20, 0xbe9, 0x357,\n 0xfff, 0xf82, 0x219, 0x9d4, 0x269, 0x8a6, 0x251, 0x0af,\n 0xd02, 0x09a, 0x803, 0x0a5, 0xfed, 0x278,    -1, 0x338,\n 0x1e5, 0xcad, 0xf9e, 0x73e, 0xb39, 0xe48, 0x754,    -1,\n 0x680, 0xd99, 0x4d4, 0x80b, 0x4be, 0xb0d, 0x5f2,    -1,\n 0x4b1, 0x38a, 0xff5, 0x000, 0xa1b, 0xece, 0xa06, 0x8e6,\n 0xdcb, 0xcb8, 0xc63, 0x98c, 0x346, 0x69c, 0x299, 0xa52,\n 0xfff, 0x000,    -1, 0x7b2, 0xbf8, 0x2d1, 0xaff, 0x2f2,\n 0xd69, 0xf20,    -1, 0xdcf, 0x9fb, 0x68f, 0x24e, 0xfd7,\n 0xfdb, 0x894, 0xc8f, 0x615, 0xa25, 0x36d, 0x1bb, 0x064,\n 0xb80, 0x280, 0xd7a,    -1, 0xd75, 0xc90, 0xdce, 0xdce,\n 0x011, 0x869, 0xb2f, 0xd24, 0xe26, 0x492, 0xe0a, 0xcae,\n    -1, 0x2ac, 0x38c, 0x0b9, 0xc4f,    -1, 0x32b, 0x415,\n 0x49c, 0x11c, 0x816, 0xd08, 0xf5c, 0x356, 0x2b3, 0xfbf,\n 0x7ff, 0x35d, 0x276, 0x292, 0x4f5, 0x0e2, 0xc68, 0x4c4,\n 0x000, 0xb5e, 0xd0b, 0xca7, 0x624, 0x247, 0xf0d, 0x017,\n 0x7ec, 0x2a6, 0x62c, 0x192, 0x610, 0xd98, 0x7a4, 0xfa3,\n 0x80b, 0x043, 0xd7b, 0x301, 0x69d, 0x7e4, 0x10c, 0xacb,\n 0x6eb, 0xea7, 0xe65, 0x75d, 0x4f5, 0x5b0, 0xa50, 0x7b6,\n 0x0ec,    -1, 0xcf9, 0x4b4, 0x639, 0x111, 0xbdf, 0xe89,\n 0x9fa, 0x76b, 0xdf6, 0x2d0, 0x857, 0x3a3, 0x000, 0xa3e,\n 0x8cb, 0x35f, 0x4f0, 0x022, 0xb38, 0xc12, 0x93c, 0x2fc,\n 0x546, 0xe6e, 0x91f, 0x145, 0xfff, 0x1af, 0x957, 0xbde,\n 0x09d, 0xfd2, 0x9df, 0x2dc, 0x07f, 0x115, 0x7bf, 0xa35,\n 0x061, 0x9bf, 0xc85, 0x918, 0x0c8, 0x317, 0xce5, 0xf28,\n 0x108, 0x51b, 0x621, 0x188, 0x000, 0x28c, 0xf67, 0x6ef,\n 0x000, 0xd72, 0xce2, 0x1be, 0x000, 0x000, 0x282, 0x357,\n    -1, 0x4e5, 0x246, 0x859, 0x66c, 0x5d3, 0x9fd, 0x000,\n 0x000, 0x82f, 0xc29, 0x331, 0xa93, 0x000, 0xae4, 0x48a,\n 0x254, 0x000, 0x0ba, 0xe83, 0x7c7, 0xb6e, 0x88e, 0x774,\n 0xf6f, 0x85d, 0x47f, 0xcd6, 0xe41, 0xdb6, 0x000, 0x0f4,\n 0xb4d, 0x77f, 0x000, 0x901, 0x1a2, 0x44a, 0x482, 0x000,\n 0xe99, 0xa75, 0x000, 0x7ab, 0x000, 0x0b6, 0x35c, 0x306,\n 0x11c, 0x08e, 0x6eb, 0x11c, 0x771, 0xff9, 0x1c8, 0x63b,\n 0x58b, 0x9d2, 0x250, 0x198, 0xfe7, 0xebc, 0x000, 0xa97,\n 0xacc, 0xd4b, 0x28b, 0x892, 0x150, 0xcf4, 0xbc1, 0x000,\n 0x662, 0xdd8, 0x61f, 0x903, 0x083, 0x000, 0xc55, 0x02f,\n 0xc29, 0x4f5, 0xbcf, 0xe27, 0x9e3, 0xb13, 0xadc, 0x845,\n 0x415, 0x0ae, 0x000, 0xe30, 0x931, 0x84a, 0xb09, 0x250,\n 0x631, 0x7aa, 0x026, 0xdc9, 0x486, 0x3a7, 0xab0, 0xe04,\n 0xe1a, 0xe17, 0x611, 0x556, 0xfac, 0x3c6, 0x5ab, 0x002,\n 0xc16, 0xe60,    -1, 0xc51, 0x772, 0x67f, 0xfa9, 0x83c,\n 0x974, 0x96a, 0xe94, 0x250, 0xa20, 0xc95, 0x65b, 0x479,\n 0xe48, 0xa35, 0x23f, 0x5cf, 0x40a, 0xcf0, 0xe82, 0x1da,\n 0x390, 0xc86, 0xa92, 0x433, 0xbed, 0x4a7, 0x09a, 0x15a,\n 0xb8d, 0x9c7, 0x5fb, 0x8a0, 0x000, 0xf9a, 0xf3c, 0x11c,\n 0x20c, 0xf23, 0x79d, 0xc79, 0xb71, 0x7af, 0xc5b, 0x771,\n 0x629, 0x834, 0xb34, 0x20c, 0x940, 0x2ca, 0x60b, 0x000,\n 0x4cb, 0x70b, 0x000, 0x000, 0x9e8, 0x000, 0xdca, 0x000,\n 0x1ae, 0xb21, 0xfe3, 0x191, 0x9e1, 0x7f6, 0x04f, 0x64a,\n 0xba2, 0x59e, 0x1ae, 0x000, 0x728, 0x000, 0x081, 0xecd,\n 0x946, 0x000, 0xdee, 0x3ff, 0xdf9, 0x1bf, 0x01a, 0x1a9,\n 0xc58, 0xe05, 0x3bf, 0x5e8, 0x39d, 0xbfa, 0x23f, 0xb8d,\n    -1, 0x000, 0x779, 0x540, 0xf2c, 0x7cc, 0x340, 0x77a,\n 0xa8e, 0xe8d, 0x2fd, 0xfed, 0x5d1, 0x308, 0x00f, 0xf4a,\n 0x39b, 0xbe2, 0x0e5,    -1, 0xf4d, 0x1fe, 0xf00, 0x867,\n 0x195, 0x2de, 0x712, 0x000, 0x00c, 0x0a3, 0x1f3, 0x4ee,\n 0x317, 0x665, 0x000, 0x5d8, 0x291, 0x6c4, 0xa46, 0x492,\n 0x8d4, 0x647, 0x57f, 0x000, 0x259, 0xd87, 0x5c2, 0x1d8,\n 0xfad,    -1,    -1, 0x79f, 0x43a, 0xfd1, 0x164, 0x6e1,\n 0x350, 0xf00, 0x0e9, 0xac4, 0xe35, 0x307, 0xfff, 0xabb,\n 0xc1a, 0x768, 0x000, 0x372, 0x839, 0xf4b, 0x1c3, 0xab0,\n 0xcb6, 0x943, 0xbe9, 0x20f, 0xddc, 0xe18, 0x4eb, 0x21d,\n 0x530, 0x24c, 0x000, 0xf79,    -1, 0x1bd,    -1, 0x155,\n 0x435,    -1, 0x132, 0x5c2, 0xb3d, 0x802, 0x733,    -1,\n 0x336, 0xf19, 0xfea, 0xd2a, 0x07f, 0x8e9, 0x000, 0xdab,\n    -1, 0x088, 0x4b1, 0x7ac, 0x000, 0xe66, 0xde0, 0x73c,\n 0xfff, 0x02f,    -1, 0x000,    -1, 0x000, 0x562, 0x389,\n 0xb20, 0x9ea,    -1, 0x3f8, 0x567, 0x035, 0xa55, 0x255,\n 0xc98, 0x65f,    -1, 0x1ac, 0x571, 0x13d, 0xf57, 0x32a,\n 0xbdb, 0x0ec, 0x47d, 0x43a,    -1, 0x1aa, 0x9d6, 0x843,\n    -1, 0x244, 0xb03, 0xd0d, 0x579, 0x1b1, 0xea7, 0x000,\n 0x062,    -1, 0x533, 0x1db, 0xf1f, 0x2f7, 0x2df, 0x3e5,\n 0xdec, 0xc5c, 0x55a, 0xf6c, 0x4c1, 0x5a8, 0xcd4, 0x6fd,\n 0x1a6, 0x4b8, 0x98a, 0xe17, 0xeb9, 0xfd1,    -1, 0x175,\n 0x4d6, 0xba2, 0x000, 0x614, 0x147, 0x429, 0xfee,    -1,\n 0x0d8,    -1, 0x98a, 0xdd2, 0xedd, 0x255, 0xef3, 0x345,\n 0x000, 0xf3e,    -1,    -1, 0x210, 0x88a, 0x699,    -1,\n 0x02c, 0xfee, 0x1c1, 0xb38, 0x000, 0x7cc, 0x165, 0x536,\n    -1, 0x1ae, 0xefb, 0x734,    -1, 0x1a4, 0x984, 0x804,\n 0x487,    -1,    -1, 0x31e, 0x9f2, 0x966, 0x000, 0xcb0,\n 0x552, 0x0c9,    -1, 0x750, 0x650, 0x064, 0xffe, 0xe84,\n 0x537, 0xee7, 0x834,    -1, 0x998, 0xa03,    -1, 0xcdf,\n 0x4be, 0x310, 0x051, 0xf3f, 0x040, 0x973, 0x925, 0x000,\n 0x000, 0xe51, 0x8b1, 0x468, 0xe11, 0xd4f, 0x374, 0x33a,\n 0x126, 0x88b, 0x43a, 0xc9b, 0xdb9, 0x3c2, 0x3bd, 0x1ae,\n 0x000, 0xc4a, 0x000, 0x4c4, 0x859, 0xe5a, 0x000, 0xeb4,\n 0xd40, 0x87d, 0xc79, 0xe13, 0x50b,    -1, 0x724, 0x000,\n 0x7be, 0x062, 0xe7f, 0xad0, 0x5f3, 0x69e, 0x381, 0x272,\n 0x50f, 0xac8, 0x053, 0x55e, 0xf19, 0xd71, 0x75b, 0xbf2,\n 0x000, 0x3ac, 0xdf0, 0xd75, 0x7e3, 0xe75, 0xa13, 0xfd8,\n 0xbdc, 0x1d9, 0x15f, 0x8cc, 0xba4, 0xb79, 0xb7f, 0x812,\n 0xfe6, 0x000, 0x2d3, 0xd7b, 0x5d4, 0xad2, 0x316, 0x908,\n 0x323, 0x758, 0xb0b, 0x965, 0x1a9, 0xdce, 0x660, 0x625,\n 0xeff, 0x0ed, 0x000, 0x323, 0x986, 0x831, 0x5c5, 0x22f,\n 0xd49, 0xec6, 0x90e, 0x234, 0x000, 0x80f, 0x16c, 0x528,\n 0x1f8, 0x2bd, 0x97d, 0xe20, 0xf29, 0x97d, 0x3a0, 0x7fc,\n 0x086, 0x720, 0x1f9, 0x3eb, 0xf67, 0x423, 0xa55, 0x69e,\n 0xede, 0x206, 0x7fa, 0x809, 0xfa8, 0xe22, 0x15e, 0x2a0,\n 0x04a, 0xf7b, 0x4ea, 0xd9a,    -1, 0x1d8, 0x0b4, 0xb87,\n 0x406,    -1, 0xcdf, 0x187, 0xf6d, 0x914, 0x4b1, 0x000,\n 0x104, 0x67e, 0xc74, 0x6da, 0xe67, 0x7d2, 0xd1f, 0x64c,\n 0x19d, 0x000, 0xa17, 0xfd5, 0x000, 0x8ad, 0xf38, 0xd65,\n 0xabd, 0x75e, 0x667, 0x632, 0x346, 0xc48, 0xa77, 0x45e,\n 0x2b5, 0xded, 0x7da, 0x160, 0x560,    -1, 0xf4e, 0xb0c,\n 0xdb0, 0x287, 0x34a, 0x065, 0x439, 0x2ec, 0x679, 0xefa,\n 0x208, 0xeb1, 0x1b0, 0x8c8, 0xca6, 0x62c, 0xa10, 0x673,\n 0x000, 0x000, 0xc6a, 0x7b2, 0xbd7, 0xb2b, 0x17a, 0x6f3,\n 0x1ab, 0xffa, 0x5e0, 0x1fa, 0xb8f, 0xe5c, 0xcab, 0xdbc,\n 0x10f, 0x000, 0x000, 0xefe, 0x34b, 0x1d9, 0x834, 0x52f,\n 0xb58, 0x82b, 0x6e8, 0x1f3, 0x719, 0x64e, 0xf55, 0xccd,\n 0x531, 0x0de, 0x3aa, 0x150, 0x89a, 0x3b9, 0x26e, 0xebc,\n 0x7ae, 0x670, 0x315, 0x8a9, 0x03b, 0x896, 0x247, 0x2f4,\n 0x450, 0xd10, 0xb79, 0x0ed, 0x041,    -1, 0x707, 0x9e1,\n 0xed6, 0x6d2, 0x000, 0xfff, 0xb1a, 0x084, 0xaf3, 0x47f,\n 0x02f, 0xac3, 0x751, 0x8c4, 0x291, 0xadd, 0x000, 0xea1,\n 0x8ec, 0xf9f, 0x5c2, 0x000, 0xd6b, 0x71e, 0x000, 0xcea,\n 0x971, 0x5f8, 0x4b9, 0x7c6, 0xb7e, 0x353, 0xd25, 0x423,\n 0x6ec, 0xb71, 0xf93, 0x000, 0x795, 0xc43, 0xaa2, 0x96a,\n 0xcbd, 0xb55, 0x184, 0xdf0, 0x3d9, 0xbfe, 0xf79, 0x8f0,\n 0x22c, 0xeeb, 0x000, 0xa4b, 0xe07, 0xf34, 0xc9d, 0x4be,\n 0x95b, 0x371, 0x78c, 0x9e9, 0xde6, 0x072, 0xf0d, 0x60b,\n 0x5a5, 0xab1, 0x000, 0x260, 0x000, 0xd2a, 0xd90, 0x154,\n 0x4c6, 0x438, 0x5d9, 0x736, 0x062, 0x000, 0x000, 0xb84,\n 0x72e, 0x0b7, 0x000, 0x050, 0x063, 0xa95, 0x89b, 0x917,\n 0x049, 0xb14, 0x9a0, 0x734, 0x0c3, 0xd50, 0x917, 0xb02,\n 0x8cf, 0x453, 0x0af, 0x8e5, 0x000, 0x7aa, 0x5d5, 0x81b,\n 0x788, 0xb9c, 0x01a, 0x974, 0x000, 0x000, 0x37f, 0xd9f,\n 0x000, 0xec4, 0x4f4, 0xbff, 0x4fe, 0x860, 0x11c, 0x74e,\n 0x34a, 0x281, 0x52f, 0xb05, 0xa89, 0xbee, 0x6ad, 0x9fc,\n 0x9ba, 0xb0b, 0x515, 0x1c7, 0x330, 0xfde, 0x97e, 0x6e7,\n 0xc45,    -1, 0x658, 0x710, 0x28a, 0x921, 0x1de, 0x4a1,\n 0x9d7, 0xe32, 0xa2d, 0xb0f, 0x545, 0xd6f, 0x329, 0x9b8,\n 0xb4d, 0x9a0, 0x938, 0x783, 0xfa7, 0xd0a, 0xdc9, 0x0fe,\n 0x000, 0x249, 0x000, 0x8cd, 0x922, 0x7cd, 0x021, 0xa89,\n 0x3d5, 0xcee, 0x0a1, 0x6d6, 0x000,    -1, 0x48b, 0x000,\n 0x87a, 0x8bb, 0x9ed, 0x01f, 0xe20, 0xb7f,    -1, 0xe95,\n 0x593, 0x1da, 0x57a,    -1, 0xf3a, 0x000, 0x000,    -1,\n    -1, 0x160, 0x501, 0x7a3, 0xb59,    -1,    -1, 0xc7f,\n    -1, 0xf79,    -1,    -1, 0x48d, 0x781,    -1,    -1,\n 0xb74,    -1, 0x3c4, 0xbe9,    -1,    -1, 0x9a4, 0x9ae,\n 0xa75,    -1,    -1, 0x9cd, 0x000,    -1,    -1,    -1,\n 0xc3c, 0x2d4,    -1, 0x173, 0xf38, 0x000,    -1, 0xee9,\n    -1, 0xb91, 0xcc1, 0x86d, 0x8ab, 0xeb0, 0xec7, 0x687,\n 0xd98, 0xa95, 0x744, 0xe7c, 0x826, 0x80e, 0x599, 0x3d9,\n 0xf2f,    -1, 0x96a, 0xfd1, 0x174,    -1, 0x000, 0x1aa,\n 0x50e,    -1, 0x5a2, 0xbcd, 0x000,    -1, 0x019, 0x588,\n 0x18d, 0x470, 0x812, 0xeec, 0xf63, 0x05c,    -1, 0x000,\n 0xb7f, 0x357, 0x436, 0xbb4, 0x1fb, 0x425, 0x1ed, 0xe13,\n 0x66c, 0x555, 0xb11, 0x7b5, 0x48d, 0x38d, 0xf72, 0x000,\n 0x000, 0xa66, 0x4fa, 0xf36, 0x1eb, 0x000, 0x95f, 0x000,\n 0xd9a, 0x82f, 0x07f, 0x253, 0x70f, 0x915,    -1, 0x12d,\n 0x040, 0x2ca, 0x446, 0x90a, 0x7a8, 0x687, 0x000, 0x04e,\n 0x74f, 0x1ca, 0x793, 0x3c7, 0x3f0, 0x4c7, 0x000, 0xc30,\n 0x533, 0x889, 0x9ef, 0xebd, 0x984, 0x18f, 0xfe1, 0x8ea,\n 0x185, 0x410, 0x107, 0x000, 0x73e, 0xd4b, 0x8fc, 0xd34,\n 0x1e6, 0x4bf, 0xbac, 0x7c3, 0x000, 0x7c8, 0xb2f, 0x02c,\n 0xa46, 0x000, 0x0f9, 0x680, 0x94d, 0x6ad, 0x767, 0xfeb,\n 0x6c7, 0x2d5, 0x43f, 0x9af, 0x261, 0xe83, 0xfa7, 0xb7b,\n 0xf2d, 0x2f5, 0x4d7, 0x494, 0xbc2, 0x45b, 0x000, 0x17d,\n 0x5c6, 0xe2b, 0xb20, 0x19e, 0x6ba, 0x973, 0xedd, 0xea8,\n 0x000, 0x9f3, 0xd9a, 0x7fa, 0xb78, 0x556, 0xbb6, 0xc58,\n 0x210, 0x000, 0xf9a, 0x56d, 0x48b, 0xf12, 0x000, 0x54d,\n 0x5f4, 0x1ad, 0x86e, 0xe16, 0x6ff, 0xa35, 0x47e, 0x4c7,\n 0x93c,    -1,    -1, 0xc98, 0xd3f, 0x000, 0x788, 0x6ef,\n 0x959, 0xec2, 0x45e, 0xa4d, 0xa90, 0x000, 0x768, 0x8bb,\n 0x6ee, 0x7f5, 0x770, 0xfa8, 0xba4, 0xf49, 0x7b8, 0x616,\n 0x2bd, 0x23f, 0xe8c, 0x9fa, 0xa49, 0x213, 0x98a, 0x2c1,\n 0x595, 0x885, 0x6de, 0x057, 0x1bc, 0x000, 0xc58, 0x7a8,\n 0x5c1, 0x3d0, 0xa78, 0xb80, 0x000, 0xc06,    -1, 0x428,\n 0xe92, 0xfa3, 0x341,    -1, 0x000, 0x000, 0x1ca, 0x27c,\n 0xdeb, 0x835, 0x4c8, 0xdb3, 0x000, 0xf9d, 0x000, 0xe81,\n 0xc22, 0xfce,    -1, 0xe6e, 0x96e, 0x161,    -1, 0x3b9,\n 0x945, 0xa95, 0x13d, 0x748, 0x184, 0x588, 0x636, 0xf7e,\n 0xb44, 0x2b7, 0x217, 0xee5, 0x65a, 0xc47,    -1, 0xca3,\n 0x83e, 0x431, 0xc64, 0x636, 0x06e, 0x404, 0x993,    -1,\n 0xeb3, 0x134, 0x8a3, 0xca9,    -1,    -1, 0x2ab, 0x000,\n 0x8ed, 0x877, 0x1a8, 0xc89, 0x000, 0x000, 0xf94, 0x000,\n 0x709, 0x249, 0x9ac, 0x22a, 0x605, 0x000, 0x000, 0x6b4,\n 0x00c, 0xc53, 0xf23, 0x005, 0x29f, 0x865, 0xf79, 0x000,\n 0x5fa, 0x764, 0xe51, 0xbdc, 0xb64, 0x0f3, 0xf29, 0x2f7,\n 0x5da, 0x000, 0x16f, 0xb8b, 0x255, 0x9cc, 0xe43, 0x279,\n 0x2c2, 0x483,    -1, 0xf7d, 0x7bb, 0x000, 0x9e3, 0xd84,\n 0xe36, 0x6e6, 0x000,    -1, 0x33f, 0x41d, 0x5b5, 0x83e,\n 0x2f4, 0xf5b, 0x9fc, 0xb1e,    -1, 0x8f4, 0xb26, 0x856,\n 0x3b6, 0x126, 0x4c2, 0x274, 0x0c1, 0xfa9, 0x57d, 0x000,\n 0x100, 0x7af, 0xc62, 0x000, 0xa55, 0x416, 0x93f, 0x78c,\n 0xfba, 0x5a2, 0x0c2, 0x4d4, 0xa3e, 0xcc3, 0xe73, 0xd02,\n 0x8df, 0x3e9, 0xe9a, 0x0f6, 0x32c, 0x23d, 0xdab, 0xf50,\n 0xfc2, 0x000, 0x065, 0xc23, 0xd3d, 0xc84, 0x35e, 0x000,\n 0xa24, 0x634, 0x4b4, 0xa52, 0x098, 0xb39, 0x9a4, 0xe71,\n 0x8aa, 0x741, 0x000, 0xb16, 0x5c2, 0xea1, 0xc01, 0x5c1,\n 0x30d, 0xca4, 0x201, 0xc9c, 0x717, 0x000, 0xba0, 0x537,\n 0x619, 0x000, 0xfd9, 0x6dc, 0xdaa, 0x1da, 0xe51, 0xd39,\n 0xb4c, 0x8a1, 0x098, 0x2f8, 0x191, 0x9dc, 0xdb0, 0x5e1,\n 0x000, 0xe97, 0xef1, 0x8d3, 0xb0d, 0xfce, 0x336, 0xee1,\n 0x7a2, 0xbc8, 0x494, 0x580, 0xba7, 0x000, 0x62a, 0x96a,\n 0x527, 0x859, 0x811, 0xef0, 0x429, 0xef4, 0xf3d, 0x000,\n 0x9d6, 0xb71, 0x000, 0x14b, 0xf3d, 0xb16, 0x204, 0x0c1,\n 0xcd4, 0x339, 0x39d, 0xfe3, 0x837, 0x8c7, 0x955, 0x69a,\n 0x5f6, 0x4c6,    -1, 0x3d5, 0x000, 0x0e7, 0x4b1,    -1,\n 0xa3e, 0xb03, 0x1ea, 0xac8,    -1, 0x000, 0xed8,    -1,\n 0x4e0, 0x9f7, 0xc91, 0x6b3,    -1,    -1, 0xa53, 0x290,\n 0xa64, 0x0e3, 0x3dc, 0xed3, 0xf2f, 0x000, 0xd7c, 0xf44,\n    -1, 0x205, 0x900, 0x864,    -1,    -1, 0xed3, 0x7d2,\n 0x000,    -1, 0xdd2, 0x79b, 0x000,    -1, 0xae6, 0x5cf,\n 0xde8, 0x000, 0x1f2,    -1, 0x2f3, 0x000,    -1, 0x2ce,\n 0xcf2, 0x8f4, 0xee8, 0x165, 0x309, 0x15f,    -1, 0x714,\n 0xbfc, 0x532, 0xad0, 0x151, 0x2d5, 0x0a4, 0x391,    -1,\n 0x0dc, 0x0c1, 0x451,    -1,    -1, 0x6a0, 0x250,    -1,\n 0xab8, 0x977, 0xa86, 0x407, 0x72f,    -1, 0x05f, 0x000,\n 0xefe, 0x950, 0x4f4, 0x957,    -1, 0xd68, 0x26c, 0xa30,\n 0x4f1, 0x279, 0x584, 0xb34,    -1, 0x4d7, 0x258, 0x000,\n 0x518, 0x685, 0x91c, 0x3ac, 0x0fa,    -1, 0x979, 0x40c,\n 0x506, 0x000,    -1, 0x7bd, 0xb97, 0x87f, 0xc06, 0x050,\n 0x7bf, 0xe3e, 0xc81, 0x000, 0x65e, 0x000,    -1, 0xb76,\n 0xc37, 0x4c4, 0xfc9, 0x336, 0x9fa, 0xaa2, 0x32c, 0xb8b,\n 0xaa9, 0xc95, 0x85a, 0xa9a, 0x260, 0x4cd, 0x8fe, 0xd3c,\n 0x982, 0x0d7, 0xbc1, 0xdcf, 0xe62, 0xe0d, 0xf8f, 0xd7b,\n 0x91a, 0x3e0, 0x33a, 0x1c5, 0xf00, 0xde5, 0xad1, 0xebc,\n 0xebc, 0x942, 0xd86, 0x3bf, 0x8ce, 0xb8c, 0x000, 0x8d6,\n 0x784, 0xb74,    -1, 0x818, 0x000, 0xfff, 0x07e, 0x029,\n 0xf48, 0xb65, 0xd81, 0x220, 0x095, 0x21f, 0xac4, 0xb31,\n    -1, 0x864, 0x000, 0x3bd, 0xf85, 0x237, 0x369, 0x2d9,\n 0xfdf, 0x25a, 0x782, 0x7b8, 0xabd, 0x5e3, 0x438, 0x230,\n 0xbc4, 0x7ad, 0x00a, 0x441, 0x6dc, 0x2c4, 0xf16, 0x0b3,\n 0x04c, 0xfd2, 0x8aa, 0xad8, 0x3e4, 0x142, 0x585, 0xc8f,\n 0x9bf, 0x29b, 0xac9, 0x743, 0xfb5, 0x7fc, 0x05e, 0xd38,\n 0x002,    -1, 0xb4e, 0xd0c, 0x84c, 0xf93, 0x91f, 0xcd2,\n 0x04f, 0x569, 0xd1b, 0xfc6, 0x630, 0x6f6, 0x1d8, 0x91a,\n 0x4da, 0x9f5, 0x07a, 0xcf5, 0x634, 0x42f, 0xfff, 0x951,\n 0x0f9, 0xc01, 0x491, 0xbd6, 0x730, 0xfea, 0x9f4, 0xbfc,\n 0xf1a, 0x413, 0xa2a, 0xdc6, 0xc87, 0x9db, 0xc2c, 0x30f,\n 0xdb5, 0x785, 0xbaa, 0x000, 0x000, 0xa49, 0x000, 0x61d,\n 0xf6f,    -1, 0x031,    -1, 0x441, 0x7bf, 0x53e,    -1,\n 0x6fd, 0x0f6,    -1, 0xadb,    -1, 0x000, 0x432, 0x187,\n 0xd37, 0x154, 0x539, 0xc08, 0xe51, 0x219, 0x1e9, 0x897,\n 0xa0e, 0x201, 0x447, 0x89f, 0x000, 0x463, 0x726, 0xa05,\n 0xab9, 0xd01, 0x1e4, 0xfea, 0x895, 0x816, 0x313, 0xae3,\n 0x3a4,    -1, 0x70f,    -1, 0xa42, 0x5e9, 0x78e,    -1,\n 0x317, 0x6c8, 0x000, 0xbf7, 0xefd,    -1, 0xb17, 0x382,\n 0xd26, 0x5ff, 0xf81, 0x20b, 0x373, 0x774, 0x081, 0xaae,\n 0xfdb, 0xe5d,    -1,    -1, 0xcb7, 0x738, 0x919, 0x933,\n 0x398, 0x000, 0x14e,    -1, 0xe14, 0xbf8, 0x11c, 0x94b,\n 0x031,    -1, 0x000, 0x2d4, 0xd41, 0xdc6, 0x9f6, 0xea7,\n 0x9e8, 0x2ec, 0x10a, 0x50d, 0xeae, 0xdb0, 0xef0, 0x9c8,\n 0x000,    -1, 0x82e, 0x9d3, 0xdb7, 0x46d,    -1, 0x230,\n 0x73b, 0x45b,    -1,    -1, 0x000, 0x4a7,    -1,    -1,\n 0x47c, 0x10e, 0x4b4,    -1,    -1,    -1, 0x1d7, 0xa5d,\n 0x233, 0x6b2, 0x6bd, 0x387, 0x7ca, 0xb1a, 0xf75, 0xea4,\n 0xdc9, 0x98b, 0x80c, 0x702, 0xe22, 0xa6e, 0x6f8, 0x05b,\n 0x17c,    -1, 0x000, 0xebe, 0xc8e, 0xaec,    -1, 0x42b,\n 0xdce,    -1,    -1,    -1, 0xef3, 0xc52, 0x31b,    -1,\n 0xdff, 0xbd0, 0x000, 0xa72, 0x525, 0x9cf, 0x2ff, 0xfc8,\n 0x37c, 0xbce, 0xd8c, 0xd88, 0x3a6, 0xed8, 0x4ab, 0x000,\n 0x449, 0x9d7,    -1,    -1, 0x9be, 0x59f, 0x000, 0x882,\n    -1, 0x742, 0x000,    -1,    -1,    -1, 0xe8b, 0x0f3,\n 0x771,    -1, 0x3ea, 0x8f9, 0xcbb, 0x548, 0x46d, 0x000,\n    -1, 0xf74, 0xa23, 0x15b,    -1, 0xaeb, 0x7f8, 0xbe2,\n 0x000,    -1, 0x023, 0x61e, 0x95d, 0x7ac, 0x024, 0x141,\n 0x561, 0x9fe, 0xb10,    -1, 0x623, 0xc47, 0x413, 0x0e7,\n 0x663, 0xcdf, 0xebe, 0x5c9, 0x573, 0x21d, 0xb28, 0x280,\n 0xb9f, 0xd1a, 0xecf, 0xff0, 0x000, 0xfc0, 0x085, 0x9c4,\n 0x48c, 0x000, 0xb0b, 0x43d,    -1, 0x73b, 0x802, 0x633,\n 0x6ef,    -1,    -1, 0x5c1, 0xea6, 0x0a9, 0xab4, 0xacd,\n 0xb81, 0xa32,    -1,    -1, 0xa26, 0x9d5, 0xf7c,    -1,\n 0xf69, 0xdbb, 0x6d5, 0x405,    -1, 0xd0a, 0xfe0, 0xf5e,\n 0xbd7,    -1, 0x89a, 0x868, 0xeb2, 0x792, 0x7fe, 0x115,\n 0x000, 0x8bb, 0xdd1, 0xc40, 0x453, 0xbb3, 0x7cc, 0x3e6,\n 0x071, 0x0f1, 0xbae, 0xf67, 0x896, 0x38e, 0x86e, 0xfaa,\n 0xccc,    -1, 0x411, 0x8e5, 0x699, 0x2ef, 0x785, 0x9d4,\n 0xe30, 0xb2e, 0x976, 0x203, 0x035, 0x75d, 0x8f1, 0x144,\n 0x092, 0x1a5,    -1, 0x55f, 0x000, 0xa43, 0x5be, 0x68d,\n 0x852, 0xb87, 0x9af, 0x0c0,    -1, 0xa50, 0x9ca, 0x15f,\n 0xf06, 0x869, 0x0f3,    -1, 0x000,    -1, 0x9a9,    -1,\n    -1,    -1,    -1, 0xf05, 0x000,    -1, 0x000, 0x4a9,\n 0xf9d,    -1, 0x000, 0xab1, 0x04c,    -1, 0xd17, 0x893,\n 0x763, 0x332,    -1, 0xc41, 0x5bd, 0xa72, 0x67c, 0xb78,\n 0x973, 0x6c7, 0x569,    -1, 0x96a, 0xc68, 0x48c,    -1,\n 0x6fa,    -1, 0xa2a, 0x44f,    -1, 0x73f, 0x28f, 0x536,\n 0xd91, 0xc86, 0xef8, 0x1f5, 0xfb4, 0x060, 0x230, 0xe10,\n    -1, 0x000, 0x305, 0x0e6, 0xb19, 0x1e2, 0x7fc, 0xf35,\n    -1, 0x7d9, 0x000, 0x000, 0xd2f, 0xb3a, 0x0a2, 0x7c9,\n 0xda6, 0x37c, 0xe43,    -1, 0x7da, 0x0d6, 0x000,    -1,\n 0xd40,    -1, 0x156, 0xee9,    -1, 0x239, 0x10f, 0x60c,\n 0x9d4, 0x663, 0x565, 0x603, 0x38b,    -1, 0x606, 0x13c,\n 0x681, 0x436, 0xc29, 0x9c7, 0x1d9, 0x000, 0x0a6, 0x996,\n 0x231, 0x055, 0x01f, 0x0a3, 0xd96, 0x7c8, 0x0f3, 0xaa7,\n 0xd99,    -1, 0x3be, 0x476, 0x25f, 0x38c, 0xdf3, 0x6d5,\n 0xcb5, 0xadd, 0x000, 0x136, 0x64d, 0xc0d, 0xe61, 0xd0b,\n    -1, 0x000, 0x535, 0x9c3, 0x279, 0x00c, 0xa87, 0xa31,\n 0xc4a, 0x167, 0x423, 0xec8,    -1, 0x926, 0xa4d, 0x5ba,\n    -1,    -1, 0x9bf, 0x000, 0x47f, 0x8f3, 0xd5b, 0xc3b,\n 0xa18,    -1, 0x548, 0x8f7, 0x8cf, 0x000, 0x9bd, 0xaa2,\n 0x7ec, 0x000, 0xfb8, 0xafd, 0xe68,    -1, 0xfa7, 0x31c,\n 0xef3, 0x288, 0xdf0, 0x1bc, 0xfe9, 0x1ea, 0xa9f, 0x000,\n 0x53f, 0x000, 0xda6, 0x09c, 0x1bf, 0x09c, 0x31c, 0x0c8,\n 0x31c,    -1, 0x689, 0x211,    -1, 0x77f, 0x723, 0xb8f,\n 0x683, 0x351,    -1, 0xb33, 0xce0,    -1, 0x61c, 0x073,\n 0x783, 0x6b2, 0x6a8, 0x729, 0x81b, 0xabf, 0xd15, 0x563,\n 0x433,    -1, 0x823, 0xf99, 0x2c5,    -1, 0x367, 0xcc4,\n 0x934, 0x6f2, 0xdf0, 0xa1f, 0x579, 0x012,    -1, 0x508,\n 0x070,    -1, 0x018, 0x270, 0xa6f,    -1, 0x7a7,    -1,\n 0x826, 0x4b5,    -1, 0x7d8, 0xb20,    -1, 0xc28, 0x463,\n    -1, 0xdf9, 0x22c, 0xe17, 0x4f2, 0xe13, 0x4ff, 0x40a,\n 0xdcb, 0x9ed, 0x34a, 0xeb8, 0xa0e, 0x5f2, 0x594, 0x60d,\n 0x4b6, 0xd3c, 0x675, 0x1c4, 0xbb5, 0xc73, 0xfad, 0xead,\n    -1, 0xfb6,    -1, 0x146, 0xd40, 0x02f, 0x000, 0x302,\n    -1,    -1, 0x6e5, 0x000, 0xed7, 0xd8c, 0x7a3, 0x0fc,\n 0x259, 0x34b, 0xa1b, 0x882,    -1, 0x211, 0x000, 0xd30,\n 0xe02, 0x5cd, 0x53e, 0x11b, 0xa16,    -1, 0x24e,    -1,\n 0xace, 0xe9a,    -1, 0x5c6, 0x9be, 0x000, 0x169, 0x982,\n    -1, 0x3fd, 0x457, 0x06f, 0x7e7, 0xed1, 0x5ee, 0xcef,\n 0x62b, 0x26c, 0xc9f, 0xe68, 0x59f, 0x0b5, 0x000, 0x0bc,\n 0x086, 0x890, 0x005, 0xc42, 0x939, 0xaca, 0xdd9,    -1,\n    -1, 0x6e5, 0x0dd, 0x434, 0x297, 0xe21, 0x0f5,    -1,\n 0xa6c, 0x4ad, 0x978, 0x433, 0xa41, 0xd6f, 0x8bf, 0xfb8,\n    -1, 0x928, 0x85e, 0xfb6, 0x5c7, 0x99a, 0x8ec, 0xebc,\n 0x226, 0x7d4, 0xdcd, 0xc0b, 0x000, 0x7f4, 0xc6f, 0x000,\n 0x3ad, 0x5b2,    -1, 0x67b,    -1, 0x568, 0x6e2,    -1,\n    -1,    -1, 0x3f3, 0xaf5, 0x33f,    -1, 0x022, 0x1bd,\n 0xae5,    -1, 0x9c3, 0x000, 0x92b, 0xee5, 0x29c, 0x000,\n 0x15e, 0xe71, 0xacb, 0x9d2, 0x1a3, 0xb7f, 0xa5b, 0x095,\n    -1, 0xb6e, 0x79f, 0x3d1, 0x7d0, 0x131, 0xcd7,    -1,\n 0x2c3,    -1, 0x396, 0x4d2, 0x297, 0x405, 0x634,    -1,\n    -1,    -1, 0x928, 0xbca, 0xb6c, 0x011, 0xfc0, 0xbaf,\n 0xbd2,    -1, 0x585, 0x000, 0xb8a, 0x7f9, 0xd6b, 0x4eb,\n 0x9a3, 0x000,    -1, 0xaeb, 0xa47, 0xcef, 0x9c6,    -1,\n 0x000,    -1, 0x2a9, 0x371, 0xca6,    -1, 0xb7d, 0x15f,\n 0x2a9,    -1, 0xe80, 0x7a7, 0x23a, 0x000, 0x000, 0xcc9,\n 0x60e,    -1, 0x130, 0x9cd, 0x498, 0xe25, 0x366, 0x34b,\n 0x899, 0xe49, 0x1a8, 0xc93, 0x94d, 0x05e,    -1, 0x0c2,\n 0x757, 0xb9d, 0xaa3, 0x086, 0x395, 0x3c3, 0xa2e, 0xf77,\n 0xcb1, 0x45e, 0x169, 0xbba, 0x367, 0x8cb, 0x260, 0x5a0,\n 0x8cb, 0x737, 0xa1f, 0xaaf, 0xf92, 0x430, 0x97d, 0x542,\n 0xb09,    -1, 0x774, 0x084, 0x4c0, 0x2b3, 0xaf6, 0x93c,\n 0x32d, 0xee2,    -1, 0x605, 0xece, 0x8eb, 0xc62, 0x01d,\n 0x000, 0xaba, 0xfc5, 0xb8e, 0xc07, 0xfb6, 0xbca, 0x8f0,\n 0xd33,    -1, 0x283, 0x6d6, 0x6ad, 0x678, 0x51a, 0xc95,\n 0xda4, 0x962, 0x9ed, 0x307, 0x94a, 0x052, 0xf4e, 0x3bd,\n 0x210, 0x71a, 0x3c7, 0x5a4, 0x6e7, 0x23a, 0x523, 0x1dc,\n 0x6b2, 0x5e0, 0xbb0, 0xae4, 0xdb1, 0xd40, 0xc0d, 0x59e,\n 0x21b, 0x4e6, 0x8be, 0x3b1, 0xc71, 0x5e4, 0x4aa, 0xaf3,\n 0xa27, 0x43c, 0x9ea, 0x2ee, 0x6b2, 0xd51, 0x59d, 0xd3a,\n 0xd43, 0x59d, 0x405, 0x2d4, 0x05b, 0x1b9, 0x68b, 0xbfa,\n 0xbb9, 0x77a, 0xf91, 0xfcb,    -1, 0x949, 0x177, 0x68d,\n 0xcc3, 0xcf2, 0x000, 0xa87, 0x2e6, 0xd2f, 0x111, 0x168,\n 0x94c, 0x54c, 0x000, 0x0c5, 0x829, 0xcbc, 0xc0b, 0x1ed,\n 0x836, 0x9d8, 0xbdc, 0xc5e, 0x4e5, 0xb94, 0x6f2, 0x74f,\n 0x878, 0x3b2, 0x48d, 0xc72, 0xcff, 0xccb, 0x8f9, 0x7ee,\n 0x869, 0x228, 0x035, 0x81e, 0xcf9, 0x309, 0xdf2,    -1,\n 0x047, 0xdd3, 0xcab, 0x11d, 0xe76, 0xb52, 0xbbd, 0x12d,\n 0xf37, 0x552, 0x61d, 0xdd8, 0x2cd, 0x298, 0x9e2, 0xf2c,\n 0x9f7, 0xf41, 0xcb4, 0x277, 0xfde, 0xe7e, 0x82a, 0x86b,\n 0x9cc, 0x580, 0xfcc, 0x33a, 0x438, 0xd6e, 0x000, 0xc04,\n 0xd50, 0x681, 0x1b3, 0x322, 0x86c, 0x4a6, 0x000, 0xa17,\n 0xd53, 0xdc0, 0xb61, 0x323, 0x3d1, 0x3fb, 0x929, 0xa6e,\n 0x919, 0xae0, 0x283, 0xe6a, 0xed3, 0x371, 0xd51, 0x309,\n 0x510, 0xd50, 0x6f4, 0xc84, 0x566, 0xba7, 0x75b, 0xbeb,\n 0x793, 0x58f, 0x974, 0xe77, 0x52c, 0xcef, 0x942, 0xa7c,\n 0x56a, 0xaa0, 0x784, 0x0ec, 0xad3, 0xccf, 0xecf, 0xc3f,\n 0x846, 0x1b2, 0x112, 0x4ee, 0x18b, 0xa76, 0xe14,    -1,\n 0xfb1, 0xb4c,    -1, 0xd54, 0x0e0, 0x72d, 0xdf0, 0xf0c,\n 0x881, 0xc60, 0xe1b, 0x000, 0x453, 0xe21, 0xb2a, 0x6df,\n 0x84f, 0x000, 0x12a, 0x991, 0x587, 0xa4e, 0x522, 0x000,\n 0xe17, 0xc64, 0x994, 0x4cc, 0x0e5, 0xc2b, 0x8cf, 0x458,\n 0x992, 0xec0, 0xc80, 0xefb, 0x7b7, 0x863, 0xc0a, 0x250,\n 0x338, 0xa44, 0x8ab, 0x873, 0x134, 0x23c, 0x4f6, 0x066,\n 0xd0f, 0xdd6, 0x93d, 0xf20, 0x000, 0x9bb, 0x255, 0xe7b,\n 0x916, 0x4f3, 0x68e, 0xb82, 0x2b4, 0x9d7, 0xfd1, 0x0fb,\n 0x11e, 0x204, 0x241, 0x67f, 0x1c4, 0xe91, 0xf41, 0xb4a,\n    -1, 0x6d2, 0xce6, 0xdfb,    -1, 0xdd0, 0xb8d, 0x8db,\n 0x86c, 0x224, 0xdeb, 0x7bb, 0x50e, 0x000, 0xb79, 0x11e,\n 0x486, 0xd4c, 0x000, 0xa54, 0x946, 0x83a, 0x537, 0x875,\n 0x000, 0x8e4, 0x95a, 0xdd5, 0x9d5, 0x910, 0x95b, 0x8c8,\n 0xd22, 0x07c, 0xac0, 0x000, 0x048, 0x170, 0x9b2, 0xcea,\n 0xb0f, 0x958, 0x0f9, 0xa9e, 0x87a, 0x166, 0x69c, 0x112,\n 0xde0, 0x487, 0xeca, 0x639, 0x4ee, 0x7fa, 0x2cc, 0x709,\n 0x87a, 0x5bb, 0xf64, 0x173, 0xdc6, 0xaaf, 0xbff, 0xf2a,\n 0x8fb, 0xd44, 0x0ca, 0xf34, 0xb3a, 0xeb3, 0xfc5, 0x61d,\n 0x92f, 0x6fb, 0x1a1, 0xd85, 0x8fe, 0xb6a, 0x0a1, 0x44f,\n 0x89a, 0xc5d, 0x13b, 0x5cc, 0x000, 0x9ac, 0x9e6, 0xf95,\n 0x511, 0xf2e, 0xf3c, 0x707, 0xec5, 0xaec, 0xc72, 0xeb1,\n 0x105, 0xda3, 0xbcb, 0x1d6, 0xf16, 0xd50, 0x306, 0x03f,\n 0xe6a, 0x25c, 0x9fe, 0xd3f, 0x8a4, 0x7bc, 0x0bc, 0x532,\n 0x62e, 0x111, 0x797, 0xc2c, 0x9d0, 0x338, 0xbc7, 0xd64,\n 0xb09, 0x4d6, 0xcba, 0x62c, 0xef2, 0x32b, 0x9c5, 0xc06,\n 0x38b, 0xbb2, 0x8b7, 0x6f2, 0x7ec, 0xa77,    -1, 0x7a3,\n 0xc95, 0xa91, 0x5d3, 0xffc,    -1, 0xe27, 0xa0a, 0x071,\n 0x9da, 0x000, 0xba3, 0x3fd, 0x120, 0x845, 0x151, 0xb5f,\n 0x193, 0xe99, 0x0f6, 0x640, 0xef4, 0xe17, 0x46b, 0x432,\n 0x8a4, 0x415, 0x252, 0x79c, 0xbe5, 0x3f0, 0xb64, 0x984,\n 0x5a7, 0x1be, 0xedc,    -1, 0xd7e, 0x5b4,    -1, 0xd27,\n 0x03e, 0x136, 0xb30, 0xfff, 0x1dc, 0xc32, 0x84a, 0x392,\n 0xf4f, 0x911, 0x501, 0x836, 0x700, 0x9ac, 0x000, 0xdb5,\n 0xfa3, 0x5d3, 0x1f8, 0x888,    -1, 0xfa4, 0xfe7, 0xd87,\n 0x9fe, 0x6af, 0x9a5, 0xfd5, 0xf49, 0xded, 0x416, 0x2fc,\n 0x078, 0xd2e, 0xbf1, 0xcd9, 0x733,    -1, 0xb50, 0xd57,\n 0xaa1,    -1, 0x9b0, 0x874, 0x18f,    -1,    -1, 0x2f9,\n 0xfbb, 0xf73, 0x646, 0x868, 0x000, 0x000, 0xba2, 0xd74,\n 0xc8f, 0xe36, 0xcfd, 0x5b8, 0x850, 0x48a, 0x689, 0x7ad,\n 0xefd, 0x7e1, 0xf45, 0xd9e, 0x0f0, 0x7c0, 0x675,    -1,\n 0xf26, 0x3c0, 0xe2d, 0xb62, 0x276,    -1, 0xf90, 0x837,\n 0xc7c, 0x8ed, 0x08d, 0x1d6, 0x506, 0xac9, 0xd81, 0x1be,\n 0xf7e, 0x1a3, 0xb2a, 0x5e2, 0x217, 0x1df, 0x5a3, 0x498,\n 0xfb1, 0x432, 0x2ca, 0x5a1, 0x5d5, 0x135, 0x6f0,    -1,\n 0xf70, 0x000, 0xd4c, 0x634,    -1, 0x8ca, 0x198,    -1,\n 0x7b9, 0x629, 0xc16, 0x68c, 0xea2,    -1, 0xba0, 0x6d9,\n 0xce9, 0x7b2, 0x000, 0xf59, 0x252, 0x575, 0x0a8, 0x894,\n 0x000, 0x824, 0xf63, 0xd70, 0xdd8, 0x856, 0xc77, 0x334,\n 0xeb2, 0x2b8, 0x307, 0xc34, 0x2e7, 0xa74, 0x6b9, 0x0e1,\n 0x20f, 0x3ee, 0xf80, 0xa1f, 0x6e6, 0xa03, 0x3c7, 0x72f,\n 0xfff, 0x156, 0x273, 0x1b7, 0xd90, 0x998, 0x474, 0xf1b,\n 0x80f, 0xe4c, 0x0ba, 0xfff, 0x85e, 0x3af, 0x58f, 0x000,\n 0xf6b, 0x71c, 0x4ed, 0xec3, 0x4cb, 0x000, 0xa68, 0x6ca,\n 0x086, 0x000, 0x6e4, 0xab3, 0xff5, 0x281, 0xf0a, 0xc92,\n 0x8d5, 0x486, 0xdd1, 0x903, 0x8e3, 0x9df, 0x2ab, 0xd08,\n 0x144, 0xdcd, 0x281, 0x046, 0x161, 0xe83, 0xf24, 0xce7,\n 0x30a, 0xf89, 0xf01, 0x308, 0x142, 0x9df, 0x44d, 0x9dd,\n 0x3ed, 0x81b, 0xd9d, 0x000, 0x8c2, 0xe01, 0xfe6, 0xa20,\n 0x167, 0xedd, 0xdb1, 0x470, 0xe70, 0x3aa, 0x0ff, 0x4d1,\n 0xd30, 0x67a, 0xc56, 0x3d8, 0xf2e, 0x86a, 0x18b, 0x3f5,\n 0x1a7, 0xd97, 0x652, 0x000, 0x00d, 0xbc7, 0xed3, 0x39e,\n 0xb0d, 0xd8d, 0xc49, 0x2db, 0x44e, 0x820, 0x189, 0xd51,\n 0x523, 0x161, 0x2eb, 0x41c, 0x951,    -1, 0xbb7,    -1,\n    -1, 0x0a7, 0x3ed, 0xfaa, 0x18e, 0xa34, 0x820, 0x2b4,\n    -1, 0x8c2, 0x3ee, 0x59d, 0x97b, 0x209, 0x3a2, 0x102,\n 0x351, 0x6bf, 0xd3f, 0x4fc, 0x55f, 0x4b5, 0xe22, 0xf13,\n 0x53a, 0x08a, 0x38d, 0xf4b, 0x424, 0xea6, 0x48e, 0x11c,\n 0x339, 0x5bd, 0xf7c, 0x3bd, 0x15a, 0x35c, 0x854, 0x71b,\n 0x30f, 0x065, 0x97e, 0x354, 0x28e, 0x344, 0x926, 0xc0b,\n 0xae0, 0x5db, 0xb3e, 0x661, 0x432, 0x3c8, 0xf5e, 0x368,\n 0xc85, 0xfff, 0x7f5, 0x0b6, 0x98b,    -1, 0x28c, 0x784,\n 0xb78, 0x50a, 0x696, 0x47c, 0x40d,    -1, 0xe4d, 0x5fc,\n    -1,    -1, 0xadb, 0x1db, 0x830, 0xd48,    -1, 0xf3a,\n 0xee4, 0xed4, 0xb1a, 0xa14, 0x36d, 0xf1c, 0x774, 0x000,\n 0x942, 0x278, 0x7ee, 0x000, 0x550, 0x57c, 0x343, 0x22b,\n 0x324, 0xa34, 0x0ea, 0x230, 0x51b, 0x2d1, 0x500, 0x59f,\n 0xd56, 0x540, 0x2f4, 0x87d, 0x9e5, 0x9c5, 0x5ea, 0x771,\n 0x491, 0x206, 0xa4b, 0x4bf, 0xdaf, 0x308, 0xb25, 0x261,\n 0x991, 0x000, 0x88e, 0x7e8, 0x3d6, 0x15d, 0xebc, 0x6c2,\n 0xd45, 0x000, 0x3c6, 0x48d, 0x622, 0x758, 0xfa9, 0x3cf,\n 0x401, 0xcdb, 0xe3f, 0x544, 0xf1f, 0x000,    -1, 0x4d4,\n 0x000, 0x7f1, 0xba4, 0x81c, 0x92f, 0x7d1, 0xa83, 0xa31,\n 0xe74, 0xa20, 0x475, 0x489, 0xf20, 0x3d1, 0xac1, 0xb2d,\n 0x6b2, 0x1b6, 0x063, 0xd00, 0xfeb, 0x5ca, 0xb2c, 0xcb2,\n 0x1cb, 0x251, 0x82b, 0x8ba, 0x40b, 0xf1e, 0xa8a, 0xd24,\n 0x880, 0x84e, 0x8cb, 0x0a3, 0x000, 0xaf7, 0xf99, 0x6a1,\n 0x156, 0x382, 0x0a0, 0x000, 0xed1, 0xd07, 0xbf5, 0x000,\n 0x295, 0xe48, 0x760, 0x019, 0x97f, 0xb46, 0xff5, 0x7c9,\n 0x1cf, 0xba4, 0x630, 0xe58, 0xda6, 0xd4b, 0xc02, 0xf9f,\n 0x11c, 0x000, 0xb99, 0x51f, 0x43e, 0x199, 0xdfb, 0x72f,\n 0x913, 0x509, 0xac5, 0xa2e, 0xcdb, 0x348, 0xb15, 0x472,\n 0x95d, 0x67f, 0x000, 0x4b9, 0xd78, 0xc87, 0x0f6, 0x281,\n 0x0bd, 0x924, 0x35e, 0x129, 0xffd, 0xe24, 0x000, 0x640,\n 0x09b, 0xd10, 0xa0d, 0x000, 0x474, 0x189, 0x49f, 0x62d,\n 0xcba, 0x561, 0x000, 0x58a, 0xaa1, 0x603, 0x5ab, 0x0c7,\n 0x00a, 0x784, 0x5e4, 0x7e4, 0xe4d,    -1, 0x276, 0x465,\n 0xee9, 0xe51, 0xdae, 0xbb1, 0x51f, 0xcba, 0x1c3, 0xd70,\n 0x000, 0x5be, 0x4ea, 0x3cc, 0xf13, 0x811, 0x813, 0x234,\n 0x7e4, 0xbae, 0xd97, 0xb74, 0x000, 0x76a, 0xda1, 0x000,\n 0xd8c, 0x53a, 0xc5a, 0x000, 0x000, 0x61b, 0xd87, 0x141,\n 0x383, 0xe06, 0x6a3, 0x6c3, 0xbcc, 0xc44, 0xf63, 0xd8b,\n 0x58d, 0x000, 0x839, 0x77a, 0x000, 0x8e4, 0x000, 0xdbe,\n 0x483, 0xd5b, 0xa9d, 0xca5, 0x431, 0x491, 0x29a, 0x27d,\n 0x2d2, 0x691, 0x000, 0x19a, 0xa0d, 0xb0b, 0xf32, 0xe49,\n 0xfbf, 0x399, 0xd20, 0x000, 0x66a, 0x000, 0x447, 0xb20,\n 0x894, 0x038, 0xc9c, 0xff0, 0x000, 0x0d4, 0xad4, 0x768,\n 0x65c, 0x000, 0x27b, 0x6c6, 0x9be, 0xd35, 0xc6a, 0xdd3,\n 0x000, 0x2a7, 0x158, 0x38d, 0x8ef, 0x7b6, 0xd49, 0x30c,\n 0xec3, 0x211, 0x17c, 0xcd0, 0x61f, 0x000, 0xe6e, 0x1d4,\n 0x6e9, 0x000, 0xc2d, 0x5c3, 0xcd4, 0x760, 0x532, 0xc94,\n 0x590, 0x000, 0x4a3, 0xc33, 0x000, 0x426, 0x604, 0xa06,\n 0xa99, 0x917, 0x0c4, 0xc8d, 0x9e5, 0xcc7, 0x415, 0xf79,\n 0x000, 0xaf4, 0x622, 0x756, 0x9c2, 0xa51, 0xb0f, 0x4ef,\n 0xbc4, 0xe15, 0x29e, 0x055, 0x6c9, 0x695, 0x94f, 0x9d6,\n 0x000, 0xb9f, 0xd46, 0x1d4, 0x000, 0xcb2, 0x9e8, 0x000,\n 0xa5e, 0xce0, 0x000, 0x098, 0xa98, 0x6d9, 0x5e2, 0x95f,\n 0x791, 0xeb8, 0x5fa, 0x60a, 0xacc, 0x3d3, 0x4df, 0x0df,\n 0x9ca, 0x972, 0x3cc, 0x583, 0xca5, 0xe1a, 0x000, 0x2d3,\n 0x266, 0x000, 0x06c, 0xfff, 0x62d, 0x64e, 0x40c, 0x599,\n 0x475, 0xaa9, 0xba6, 0x96f, 0xe32, 0x059, 0x342, 0x36d,\n 0xfd1, 0x09b, 0x878, 0x9f8, 0x000, 0x3ad, 0xdba, 0x000,\n 0x544, 0xc1a, 0x000, 0xee8, 0x492, 0xa6b, 0x447, 0xd2a,\n 0xb4e, 0x02c, 0xadb, 0xde2, 0x904, 0x62d, 0xf01, 0xbb8,\n 0x255, 0x382, 0xfff, 0x29e, 0x000, 0x000, 0x011, 0xfff,\n};\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/qr_finder.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2009-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <assert.h>\n\n#include <zbar.h>\n\n#ifdef DEBUG_QR_FINDER\n# define DEBUG_LEVEL (DEBUG_QR_FINDER)\n#endif\n#include \"debug.h\"\n#include \"decoder.h\"\n\n/* at this point lengths are all decode unit offsets from the decode edge\n * NB owned by finder\n */\nqr_finder_line *_zbar_decoder_get_qr_finder_line (zbar_decoder_t *dcode)\n{\n    return(&dcode->qrf.line);\n}\n\nzbar_symbol_type_t _zbar_find_qr (zbar_decoder_t *dcode)\n{\n    qr_finder_t *qrf = &dcode->qrf;\n    unsigned s, qz, w;\n    int ei;\n\n    /* update latest finder pattern width */\n    qrf->s5 -= get_width(dcode, 6);\n    qrf->s5 += get_width(dcode, 1);\n    s = qrf->s5;\n\n    /*TODO: The 2005 standard allows reflectance-reversed codes (light on dark\n       instead of dark on light).\n      If we find finder patterns with the opposite polarity, we should invert\n       the final binarized image and use them to search for QR codes in that.*/\n    if(get_color(dcode) != ZBAR_SPACE || s < 7)\n        return(0);\n\n    dbprintf(2, \"    qrf: s=%d\", s);\n\n    ei = decode_e(pair_width(dcode, 1), s, 7);\n    dbprintf(2, \" %d\", ei);\n    if(ei)\n        goto invalid;\n\n    ei = decode_e(pair_width(dcode, 2), s, 7);\n    dbprintf(2, \"%d\", ei);\n    if(ei != 2)\n        goto invalid;\n\n    ei = decode_e(pair_width(dcode, 3), s, 7);\n    dbprintf(2, \"%d\", ei);\n    if(ei != 2)\n        goto invalid;\n\n    ei = decode_e(pair_width(dcode, 4), s, 7);\n    dbprintf(2, \"%d\", ei);\n    if(ei)\n        goto invalid;\n\n    /* valid QR finder symbol\n     * mark positions needed by decoder\n     */\n    qz = get_width(dcode, 0);\n    w = get_width(dcode, 1);\n    qrf->line.eoffs = qz + (w + 1) / 2;\n    qrf->line.len = qz + w + get_width(dcode, 2);\n    qrf->line.pos[0] = qrf->line.len + get_width(dcode, 3);\n    qrf->line.pos[1] = qrf->line.pos[0];\n    w = get_width(dcode, 5);\n    qrf->line.boffs = qrf->line.pos[0] + get_width(dcode, 4) + (w + 1) / 2;\n\n    dbprintf(2, \" boff=%d pos=%d len=%d eoff=%d [valid]\\n\",\n             qrf->line.boffs, qrf->line.pos[0], qrf->line.len,\n             qrf->line.eoffs);\n\n    dcode->direction = 0;\n    dcode->buflen = 0;\n    return(ZBAR_QRCODE);\n\ninvalid:\n    dbprintf(2, \" [invalid]\\n\");\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder/qr_finder.h",
    "content": "#ifndef _DECODER_QR_FINDER_H_\n#define _DECODER_QR_FINDER_H_\n\n#include \"qrcode.h\"\n\n/* QR Code symbol finder state */\ntypedef struct qr_finder_s {\n    unsigned s5;                /* finder pattern width */\n    qr_finder_line line;        /* position info needed by decoder */\n\n    unsigned config;\n} qr_finder_t;\n\n/* reset QR finder specific state */\nstatic inline void qr_finder_reset (qr_finder_t *qrf)\n{\n    qrf->s5 = 0;\n}\n\n/* find QR Code symbols */\nzbar_symbol_type_t _zbar_find_qr (zbar_decoder_t *dcode);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <stdlib.h>     /* malloc, calloc, free */\n#include <stdio.h>      /* snprintf */\n#include <string.h>     /* memset, strlen */\n\n#include <zbar.h>\n\n#if defined(DEBUG_DECODER) || defined(DEBUG_EAN) || defined(DEBUG_CODE93) || \\\n    defined(DEBUG_CODE39) || defined(DEBUG_CODABAR) || defined(DEBUG_I25) || \\\n    defined(DEBUG_DATABAR) || defined(DEBUG_CODE128) || \\\n    defined(DEBUG_QR_FINDER) || (defined(DEBUG_PDF417) && (DEBUG_PDF417 >= 4))\n# define DEBUG_LEVEL 1\n#endif\n#include \"debug.h\"\n#include \"decoder.h\"\n\nzbar_decoder_t *zbar_decoder_create ()\n{\n    zbar_decoder_t *dcode = calloc(1, sizeof(zbar_decoder_t));\n    dcode->buf_alloc = BUFFER_MIN;\n    dcode->buf = malloc(dcode->buf_alloc);\n\n    /* initialize default configs */\n#ifdef ENABLE_EAN\n    dcode->ean.enable = 1;\n    dcode->ean.ean13_config = ((1 << ZBAR_CFG_ENABLE) |\n                               (1 << ZBAR_CFG_EMIT_CHECK));\n    dcode->ean.ean8_config = ((1 << ZBAR_CFG_ENABLE) |\n                              (1 << ZBAR_CFG_EMIT_CHECK));\n    dcode->ean.upca_config = 1 << ZBAR_CFG_EMIT_CHECK;\n    dcode->ean.upce_config = 1 << ZBAR_CFG_EMIT_CHECK;\n    dcode->ean.isbn10_config = 1 << ZBAR_CFG_EMIT_CHECK;\n    dcode->ean.isbn13_config = 1 << ZBAR_CFG_EMIT_CHECK;\n# ifdef FIXME_ADDON_SYNC\n    dcode->ean.ean2_config = 1 << ZBAR_CFG_ENABLE;\n    dcode->ean.ean5_config = 1 << ZBAR_CFG_ENABLE;\n# endif\n#endif\n#ifdef ENABLE_I25\n    dcode->i25.config = 1 << ZBAR_CFG_ENABLE;\n    CFG(dcode->i25, ZBAR_CFG_MIN_LEN) = 6;\n#endif\n#ifdef ENABLE_DATABAR\n    dcode->databar.config = ((1 << ZBAR_CFG_ENABLE) |\n                             (1 << ZBAR_CFG_EMIT_CHECK));\n    dcode->databar.config_exp = ((1 << ZBAR_CFG_ENABLE) |\n                                 (1 << ZBAR_CFG_EMIT_CHECK));\n    dcode->databar.csegs = 4;\n    dcode->databar.segs = calloc(4, sizeof(*dcode->databar.segs));\n#endif\n#ifdef ENABLE_CODABAR\n    dcode->codabar.config = 1 << ZBAR_CFG_ENABLE;\n    CFG(dcode->codabar, ZBAR_CFG_MIN_LEN) = 4;\n#endif\n#ifdef ENABLE_CODE39\n    dcode->code39.config = 1 << ZBAR_CFG_ENABLE;\n    CFG(dcode->code39, ZBAR_CFG_MIN_LEN) = 1;\n#endif\n#ifdef ENABLE_CODE93\n    dcode->code93.config = 1 << ZBAR_CFG_ENABLE;\n#endif\n#ifdef ENABLE_CODE128\n    dcode->code128.config = 1 << ZBAR_CFG_ENABLE;\n#endif\n#ifdef ENABLE_PDF417\n    dcode->pdf417.config = 1 << ZBAR_CFG_ENABLE;\n#endif\n#ifdef ENABLE_QRCODE\n    dcode->qrf.config = 1 << ZBAR_CFG_ENABLE;\n#endif\n\n    zbar_decoder_reset(dcode);\n    return(dcode);\n}\n\nvoid zbar_decoder_destroy (zbar_decoder_t *dcode)\n{\n#ifdef ENABLE_DATABAR\n    if(dcode->databar.segs)\n        free(dcode->databar.segs);\n#endif\n    if(dcode->buf)\n        free(dcode->buf);\n    free(dcode);\n}\n\nvoid zbar_decoder_reset (zbar_decoder_t *dcode)\n{\n    memset(dcode, 0, (long)&dcode->buf_alloc - (long)dcode);\n#ifdef ENABLE_EAN\n    ean_reset(&dcode->ean);\n#endif\n#ifdef ENABLE_I25\n    i25_reset(&dcode->i25);\n#endif\n#ifdef ENABLE_DATABAR\n    databar_reset(&dcode->databar);\n#endif\n#ifdef ENABLE_CODABAR\n    codabar_reset(&dcode->codabar);\n#endif\n#ifdef ENABLE_CODE39\n    code39_reset(&dcode->code39);\n#endif\n#ifdef ENABLE_CODE93\n    code93_reset(&dcode->code93);\n#endif\n#ifdef ENABLE_CODE128\n    code128_reset(&dcode->code128);\n#endif\n#ifdef ENABLE_PDF417\n    pdf417_reset(&dcode->pdf417);\n#endif\n#ifdef ENABLE_QRCODE\n    qr_finder_reset(&dcode->qrf);\n#endif\n}\n\nvoid zbar_decoder_new_scan (zbar_decoder_t *dcode)\n{\n    /* soft reset decoder */\n    memset(dcode->w, 0, sizeof(dcode->w));\n    dcode->lock = 0;\n    dcode->idx = 0;\n    dcode->s6 = 0;\n#ifdef ENABLE_EAN\n    ean_new_scan(&dcode->ean);\n#endif\n#ifdef ENABLE_I25\n    i25_reset(&dcode->i25);\n#endif\n#ifdef ENABLE_DATABAR\n    databar_new_scan(&dcode->databar);\n#endif\n#ifdef ENABLE_CODABAR\n    codabar_reset(&dcode->codabar);\n#endif\n#ifdef ENABLE_CODE39\n    code39_reset(&dcode->code39);\n#endif\n#ifdef ENABLE_CODE93\n    code93_reset(&dcode->code93);\n#endif\n#ifdef ENABLE_CODE128\n    code128_reset(&dcode->code128);\n#endif\n#ifdef ENABLE_PDF417\n    pdf417_reset(&dcode->pdf417);\n#endif\n#ifdef ENABLE_QRCODE\n    qr_finder_reset(&dcode->qrf);\n#endif\n}\n\n\nzbar_color_t zbar_decoder_get_color (const zbar_decoder_t *dcode)\n{\n    return(get_color(dcode));\n}\n\nconst char *zbar_decoder_get_data (const zbar_decoder_t *dcode)\n{\n    return((char*)dcode->buf);\n}\n\nunsigned int zbar_decoder_get_data_length (const zbar_decoder_t *dcode)\n{\n    return(dcode->buflen);\n}\n\nint zbar_decoder_get_direction (const zbar_decoder_t *dcode)\n{\n    return(dcode->direction);\n}\n\nzbar_decoder_handler_t *\nzbar_decoder_set_handler (zbar_decoder_t *dcode,\n                          zbar_decoder_handler_t *handler)\n{\n    zbar_decoder_handler_t *result = dcode->handler;\n    dcode->handler = handler;\n    return(result);\n}\n\nvoid zbar_decoder_set_userdata (zbar_decoder_t *dcode,\n                                void *userdata)\n{\n    dcode->userdata = userdata;\n}\n\nvoid *zbar_decoder_get_userdata (const zbar_decoder_t *dcode)\n{\n    return(dcode->userdata);\n}\n\nzbar_symbol_type_t zbar_decoder_get_type (const zbar_decoder_t *dcode)\n{\n    return(dcode->type);\n}\n\nunsigned int zbar_decoder_get_modifiers (const zbar_decoder_t *dcode)\n{\n    return(dcode->modifiers);\n}\n\nzbar_symbol_type_t zbar_decode_width (zbar_decoder_t *dcode,\n                                      unsigned w)\n{\n    zbar_symbol_type_t tmp, sym = ZBAR_NONE;\n\n    dcode->w[dcode->idx & (DECODE_WINDOW - 1)] = w;\n    dbprintf(1, \"    decode[%x]: w=%d (%g)\\n\", dcode->idx, w, (w / 32.));\n\n    /* update shared character width */\n    dcode->s6 -= get_width(dcode, 7);\n    dcode->s6 += get_width(dcode, 1);\n\n    /* each decoder processes width stream in parallel */\n#ifdef ENABLE_QRCODE\n    if(TEST_CFG(dcode->qrf.config, ZBAR_CFG_ENABLE) &&\n       (tmp = _zbar_find_qr(dcode)) > ZBAR_PARTIAL)\n        sym = tmp;\n#endif\n#ifdef ENABLE_EAN\n    if((dcode->ean.enable) &&\n       (tmp = _zbar_decode_ean(dcode)))\n        sym = tmp;\n#endif\n#ifdef ENABLE_CODE39\n    if(TEST_CFG(dcode->code39.config, ZBAR_CFG_ENABLE) &&\n       (tmp = _zbar_decode_code39(dcode)) > ZBAR_PARTIAL)\n        sym = tmp;\n#endif\n#ifdef ENABLE_CODE93\n    if(TEST_CFG(dcode->code93.config, ZBAR_CFG_ENABLE) &&\n       (tmp = _zbar_decode_code93(dcode)) > ZBAR_PARTIAL)\n        sym = tmp;\n#endif\n#ifdef ENABLE_CODE128\n    if(TEST_CFG(dcode->code128.config, ZBAR_CFG_ENABLE) &&\n       (tmp = _zbar_decode_code128(dcode)) > ZBAR_PARTIAL)\n        sym = tmp;\n#endif\n#ifdef ENABLE_DATABAR\n    if(TEST_CFG(dcode->databar.config | dcode->databar.config_exp,\n                ZBAR_CFG_ENABLE) &&\n       (tmp = _zbar_decode_databar(dcode)) > ZBAR_PARTIAL)\n        sym = tmp;\n#endif\n#ifdef ENABLE_CODABAR\n    if(TEST_CFG(dcode->codabar.config, ZBAR_CFG_ENABLE) &&\n       (tmp = _zbar_decode_codabar(dcode)) > ZBAR_PARTIAL)\n        sym = tmp;\n#endif\n#ifdef ENABLE_I25\n    if(TEST_CFG(dcode->i25.config, ZBAR_CFG_ENABLE) &&\n       (tmp = _zbar_decode_i25(dcode)) > ZBAR_PARTIAL)\n        sym = tmp;\n#endif\n#ifdef ENABLE_PDF417\n    if(TEST_CFG(dcode->pdf417.config, ZBAR_CFG_ENABLE) &&\n       (tmp = _zbar_decode_pdf417(dcode)) > ZBAR_PARTIAL)\n        sym = tmp;\n#endif\n\n    dcode->idx++;\n    dcode->type = sym;\n    if(sym) {\n        if(dcode->lock && sym > ZBAR_PARTIAL && sym != ZBAR_QRCODE)\n            release_lock(dcode, sym);\n        if(dcode->handler)\n            dcode->handler(dcode);\n    }\n    return(sym);\n}\n\nstatic inline const unsigned int*\ndecoder_get_configp (const zbar_decoder_t *dcode,\n                     zbar_symbol_type_t sym)\n{\n    const unsigned int *config;\n    switch(sym) {\n#ifdef ENABLE_EAN\n    case ZBAR_EAN13:\n        config = &dcode->ean.ean13_config;\n        break;\n\n    case ZBAR_EAN2:\n        config = &dcode->ean.ean2_config;\n        break;\n\n    case ZBAR_EAN5:\n        config = &dcode->ean.ean5_config;\n        break;\n\n    case ZBAR_EAN8:\n        config = &dcode->ean.ean8_config;\n        break;\n\n    case ZBAR_UPCA:\n        config = &dcode->ean.upca_config;\n        break;\n\n    case ZBAR_UPCE:\n        config = &dcode->ean.upce_config;\n        break;\n\n    case ZBAR_ISBN10:\n        config = &dcode->ean.isbn10_config;\n        break;\n\n    case ZBAR_ISBN13:\n        config = &dcode->ean.isbn13_config;\n        break;\n#endif\n\n#ifdef ENABLE_I25\n    case ZBAR_I25:\n        config = &dcode->i25.config;\n        break;\n#endif\n\n#ifdef ENABLE_DATABAR\n    case ZBAR_DATABAR:\n        config = &dcode->databar.config;\n        break;\n    case ZBAR_DATABAR_EXP:\n        config = &dcode->databar.config_exp;\n        break;\n#endif\n\n#ifdef ENABLE_CODABAR\n    case ZBAR_CODABAR:\n        config = &dcode->codabar.config;\n        break;\n#endif\n\n#ifdef ENABLE_CODE39\n    case ZBAR_CODE39:\n        config = &dcode->code39.config;\n        break;\n#endif\n\n#ifdef ENABLE_CODE93\n    case ZBAR_CODE93:\n        config = &dcode->code93.config;\n        break;\n#endif\n\n#ifdef ENABLE_CODE128\n    case ZBAR_CODE128:\n        config = &dcode->code128.config;\n        break;\n#endif\n\n#ifdef ENABLE_PDF417\n    case ZBAR_PDF417:\n        config = &dcode->pdf417.config;\n        break;\n#endif\n\n#ifdef ENABLE_QRCODE\n    case ZBAR_QRCODE:\n        config = &dcode->qrf.config;\n        break;\n#endif\n\n    default:\n        config = NULL;\n    }\n    return(config);\n}\n\nunsigned int zbar_decoder_get_configs (const zbar_decoder_t *dcode,\n                                       zbar_symbol_type_t sym)\n{\n    const unsigned *config = decoder_get_configp(dcode, sym);\n    if(!config)\n        return(0);\n    return(*config);\n}\n\nstatic inline int decoder_set_config_bool (zbar_decoder_t *dcode,\n                                           zbar_symbol_type_t sym,\n                                           zbar_config_t cfg,\n                                           int val)\n{\n    unsigned *config = (void*)decoder_get_configp(dcode, sym);\n    if(!config || cfg >= ZBAR_CFG_NUM)\n        return(1);\n\n    if(!val)\n        *config &= ~(1 << cfg);\n    else if(val == 1)\n        *config |= (1 << cfg);\n    else\n        return(1);\n\n#ifdef ENABLE_EAN\n    dcode->ean.enable = TEST_CFG(dcode->ean.ean13_config |\n                                 dcode->ean.ean2_config |\n                                 dcode->ean.ean5_config |\n                                 dcode->ean.ean8_config |\n                                 dcode->ean.upca_config |\n                                 dcode->ean.upce_config |\n                                 dcode->ean.isbn10_config |\n                                 dcode->ean.isbn13_config,\n                                 ZBAR_CFG_ENABLE);\n#endif\n\n    return(0);\n}\n\nstatic inline int decoder_set_config_int (zbar_decoder_t *dcode,\n                                          zbar_symbol_type_t sym,\n                                          zbar_config_t cfg,\n                                          int val)\n{\n    switch(sym) {\n\n#ifdef ENABLE_I25\n    case ZBAR_I25:\n        CFG(dcode->i25, cfg) = val;\n        break;\n#endif\n#ifdef ENABLE_CODABAR\n    case ZBAR_CODABAR:\n        CFG(dcode->codabar, cfg) = val;\n        break;\n#endif\n#ifdef ENABLE_CODE39\n    case ZBAR_CODE39:\n        CFG(dcode->code39, cfg) = val;\n        break;\n#endif\n#ifdef ENABLE_CODE93\n    case ZBAR_CODE93:\n        CFG(dcode->code93, cfg) = val;\n        break;\n#endif\n#ifdef ENABLE_CODE128\n    case ZBAR_CODE128:\n        CFG(dcode->code128, cfg) = val;\n        break;\n#endif\n#ifdef ENABLE_PDF417\n    case ZBAR_PDF417:\n        CFG(dcode->pdf417, cfg) = val;\n        break;\n#endif\n\n    default:\n        return(1);\n    }\n    return(0);\n}\n\nint zbar_decoder_set_config (zbar_decoder_t *dcode,\n                             zbar_symbol_type_t sym,\n                             zbar_config_t cfg,\n                             int val)\n{\n    if(sym == ZBAR_NONE) {\n        static const zbar_symbol_type_t all[] = {\n\t    ZBAR_EAN13, ZBAR_EAN2, ZBAR_EAN5, ZBAR_EAN8,\n            ZBAR_UPCA, ZBAR_UPCE, ZBAR_ISBN10, ZBAR_ISBN13,\n            ZBAR_I25, ZBAR_DATABAR, ZBAR_DATABAR_EXP, ZBAR_CODABAR,\n\t    ZBAR_CODE39, ZBAR_CODE93, ZBAR_CODE128, ZBAR_QRCODE, \n\t    ZBAR_PDF417, 0\n        };\n        const zbar_symbol_type_t *symp;\n        for(symp = all; *symp; symp++)\n            zbar_decoder_set_config(dcode, *symp, cfg, val);\n        return(0);\n    }\n\n    if(cfg >= 0 && cfg < ZBAR_CFG_NUM)\n        return(decoder_set_config_bool(dcode, sym, cfg, val));\n    else if(cfg >= ZBAR_CFG_MIN_LEN && cfg <= ZBAR_CFG_MAX_LEN)\n        return(decoder_set_config_int(dcode, sym, cfg, val));\n    else\n        return(1);\n}\n\n\nstatic char *decoder_dump = NULL;\nstatic unsigned decoder_dumplen = 0;\n\nconst char *_zbar_decoder_buf_dump (unsigned char *buf,\n                                    unsigned int buflen)\n{\n    int dumplen = (buflen * 3) + 12;\n    char *p;\n    int i;\n\n    if(!decoder_dump || dumplen > decoder_dumplen) {\n        if(decoder_dump)\n            free(decoder_dump);\n        decoder_dump = malloc(dumplen);\n        decoder_dumplen = dumplen;\n    }\n    p = decoder_dump +\n        snprintf(decoder_dump, 12, \"buf[%04x]=\",\n                 (buflen > 0xffff) ? 0xffff : buflen);\n    for(i = 0; i < buflen; i++)\n        p += snprintf(p, 4, \"%s%02x\", (i) ? \" \" : \"\",  buf[i]);\n    return(decoder_dump);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/decoder.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _DECODER_H_\n#define _DECODER_H_\n\n#include <config.h>\n#include <stdlib.h>     /* realloc */\n#include <limits.h>\n\n#include <zbar.h>\n\n#include \"debug.h\"\n\n#define NUM_CFGS (ZBAR_CFG_MAX_LEN - ZBAR_CFG_MIN_LEN + 1)\n\n#ifdef ENABLE_EAN\n# include \"decoder/ean.h\"\n#endif\n#ifdef ENABLE_I25\n# include \"decoder/i25.h\"\n#endif\n#ifdef ENABLE_DATABAR\n# include \"decoder/databar.h\"\n#endif\n#ifdef ENABLE_CODABAR\n# include \"decoder/codabar.h\"\n#endif\n#ifdef ENABLE_CODE39\n# include \"decoder/code39.h\"\n#endif\n#ifdef ENABLE_CODE93\n# include \"decoder/code93.h\"\n#endif\n#ifdef ENABLE_CODE128\n# include \"decoder/code128.h\"\n#endif\n#ifdef ENABLE_PDF417\n# include \"decoder/pdf417.h\"\n#endif\n#ifdef ENABLE_QRCODE\n# include \"decoder/qr_finder.h\"\n#endif\n\n/* size of bar width history (implementation assumes power of two) */\n#ifndef DECODE_WINDOW\n# define DECODE_WINDOW  16\n#endif\n\n/* initial data buffer allocation */\n#ifndef BUFFER_MIN\n# define BUFFER_MIN   0x20\n#endif\n\n/* maximum data buffer allocation\n * (longer symbols are rejected)\n */\n#ifndef BUFFER_MAX\n# define BUFFER_MAX  0x100\n#endif\n\n/* buffer allocation increment */\n#ifndef BUFFER_INCR\n# define BUFFER_INCR  0x10\n#endif\n\n#define CFG(dcode, cfg) ((dcode).configs[(cfg) - ZBAR_CFG_MIN_LEN])\n#define TEST_CFG(config, cfg) (((config) >> (cfg)) & 1)\n#define MOD(mod) (1 << (mod))\n\n/* symbology independent decoder state */\nstruct zbar_decoder_s {\n    unsigned char idx;                  /* current width index */\n    unsigned w[DECODE_WINDOW];          /* window of last N bar widths */\n    zbar_symbol_type_t type;            /* type of last decoded data */\n    zbar_symbol_type_t lock;            /* buffer lock */\n    unsigned modifiers;                 /* symbology modifier */\n    int direction;                      /* direction of last decoded data */\n    unsigned s6;                        /* 6-element character width */\n\n    /* everything above here is automatically reset */\n    unsigned buf_alloc;                 /* dynamic buffer allocation */\n    unsigned buflen;                    /* binary data length */\n    unsigned char *buf;                 /* decoded characters */\n    void *userdata;                     /* application data */\n    zbar_decoder_handler_t *handler;    /* application callback */\n\n    /* symbology specific state */\n#ifdef ENABLE_EAN\n    ean_decoder_t ean;                  /* EAN/UPC parallel decode attempts */\n#endif\n#ifdef ENABLE_I25\n    i25_decoder_t i25;                  /* Interleaved 2 of 5 decode state */\n#endif\n#ifdef ENABLE_DATABAR\n    databar_decoder_t databar;          /* DataBar decode state */\n#endif\n#ifdef ENABLE_CODABAR\n    codabar_decoder_t codabar;          /* Codabar decode state */\n#endif\n#ifdef ENABLE_CODE39\n    code39_decoder_t code39;            /* Code 39 decode state */\n#endif\n#ifdef ENABLE_CODE93\n    code93_decoder_t code93;            /* Code 93 decode state */\n#endif\n#ifdef ENABLE_CODE128\n    code128_decoder_t code128;          /* Code 128 decode state */\n#endif\n#ifdef ENABLE_PDF417\n    pdf417_decoder_t pdf417;            /* PDF417 decode state */\n#endif\n#ifdef ENABLE_QRCODE\n    qr_finder_t qrf;                    /* QR Code finder state */\n#endif\n};\n\n/* return current element color */\nstatic inline char get_color (const zbar_decoder_t *dcode)\n{\n    return(dcode->idx & 1);\n}\n\n/* retrieve i-th previous element width */\nstatic inline unsigned get_width (const zbar_decoder_t *dcode,\n                                  unsigned char offset)\n{\n    return(dcode->w[(dcode->idx - offset) & (DECODE_WINDOW - 1)]);\n}\n\n/* retrieve bar+space pair width starting at offset i */\nstatic inline unsigned pair_width (const zbar_decoder_t *dcode,\n                                   unsigned char offset)\n{\n    return(get_width(dcode, offset) + get_width(dcode, offset + 1));\n}\n\n/* calculate total character width \"s\"\n *   - start of character identified by context sensitive offset\n *     (<= DECODE_WINDOW - n)\n *   - size of character is n elements\n */\nstatic inline unsigned calc_s (const zbar_decoder_t *dcode,\n                               unsigned char offset,\n                               unsigned char n)\n{\n    /* FIXME check that this gets unrolled for constant n */\n    unsigned s = 0;\n    while(n--)\n        s += get_width(dcode, offset++);\n    return(s);\n}\n\n/* fixed character width decode assist\n * bar+space width are compared as a fraction of the reference dimension \"x\"\n *   - +/- 1/2 x tolerance\n *   - measured total character width (s) compared to symbology baseline (n)\n *     (n = 7 for EAN/UPC, 11 for Code 128)\n *   - bar+space *pair width* \"e\" is used to factor out bad \"exposures\"\n *     (\"blooming\" or \"swelling\" of dark or light areas)\n *     => using like-edge measurements avoids these issues\n *   - n should be > 3\n */\nstatic inline int decode_e (unsigned e,\n                            unsigned s,\n                            unsigned n)\n{\n    /* result is encoded number of units - 2\n     * (for use as zero based index)\n     * or -1 if invalid\n     */\n    unsigned char E = ((e * n * 2 + 1) / s - 3) / 2;\n    return((E >= n - 3) ? -1 : E);\n}\n\n/* sort three like-colored elements and return ordering\n */\nstatic inline unsigned decode_sort3 (zbar_decoder_t *dcode,\n                                     int i0)\n{\n    unsigned w0 = get_width(dcode, i0);\n    unsigned w2 = get_width(dcode, i0 + 2);\n    unsigned w4 = get_width(dcode, i0 + 4);\n    if(w0 < w2) {\n        if(w2 < w4)\n            return((i0 << 8) | ((i0 + 2) << 4) | (i0 + 4));\n        if(w0 < w4)\n            return((i0 << 8) | ((i0 + 4) << 4) | (i0 + 2));\n        return(((i0 + 4) << 8) | (i0 << 4) | (i0 + 2));\n    }\n    if(w4 < w2)\n        return(((i0 + 4) << 8) | ((i0 + 2) << 4) | i0);\n    if(w0 < w4)\n        return(((i0 + 2) << 8) | (i0 << 4) | (i0 + 4));\n    return(((i0 + 2) << 8) | ((i0 + 4) << 4) | i0);\n}\n\n/* sort N like-colored elements and return ordering\n */\nstatic inline unsigned decode_sortn (zbar_decoder_t *dcode,\n                                     int n,\n                                     int i0)\n{\n    unsigned mask = 0, sort = 0;\n    int i;\n    for(i = n - 1; i >= 0; i--) {\n        unsigned wmin = UINT_MAX;\n        int jmin = -1, j;\n        for(j = n - 1; j >= 0; j--) {\n            if((mask >> j) & 1)\n                continue;\n            unsigned w = get_width(dcode, i0 + j * 2);\n            if(wmin >= w) {\n                wmin = w;\n                jmin = j;\n            }\n        }\n        zassert(jmin >= 0, 0, \"sortn(%d,%d) jmin=%d\",\n                n, i0, jmin);\n        sort <<= 4;\n        mask |= 1 << jmin;\n        sort |= i0 + jmin * 2;\n    }\n    return(sort);\n}\n\n/* acquire shared state lock */\nstatic inline char acquire_lock (zbar_decoder_t *dcode,\n                                 zbar_symbol_type_t req)\n{\n    if(dcode->lock) {\n        dbprintf(2, \" [locked %d]\\n\", dcode->lock);\n        return(1);\n    }\n    dcode->lock = req;\n    return(0);\n}\n\n/* check and release shared state lock */\nstatic inline char release_lock (zbar_decoder_t *dcode,\n                                 zbar_symbol_type_t req)\n{\n    zassert(dcode->lock == req, 1, \"lock=%d req=%d\\n\",\n            dcode->lock, req);\n    dcode->lock = 0;\n    return(0);\n}\n\n/* ensure output buffer has sufficient allocation for request */\nstatic inline char size_buf (zbar_decoder_t *dcode,\n                             unsigned len)\n{\n    unsigned char *buf;\n    if(len <= BUFFER_MIN)\n        return(0);\n    if(len < dcode->buf_alloc)\n        /* FIXME size reduction heuristic? */\n        return(0);\n    if(len > BUFFER_MAX)\n        return(1);\n    if(len < dcode->buf_alloc + BUFFER_INCR) {\n        len = dcode->buf_alloc + BUFFER_INCR;\n        if(len > BUFFER_MAX)\n            len = BUFFER_MAX;\n    }\n    buf = realloc(dcode->buf, len);\n    if(!buf)\n        return(1);\n    dcode->buf = buf;\n    dcode->buf_alloc = len;\n    return(0);\n}\n\nextern const char *_zbar_decoder_buf_dump (unsigned char *buf,\n                                           unsigned int buflen);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/error.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"error.h\"\n#include <string.h>\n\nint _zbar_verbosity = 0;\n\nstatic const char * const sev_str[] = {\n    \"FATAL ERROR\", \"ERROR\", \"OK\", \"WARNING\", \"NOTE\"\n};\n#define SEV_MAX (strlen(sev_str[0]))\n\nstatic const char * const mod_str[] = {\n    \"processor\", \"video\", \"window\", \"image scanner\", \"<unknown>\"\n};\n#define MOD_MAX (strlen(mod_str[ZBAR_MOD_IMAGE_SCANNER]))\n\nstatic const char * const err_str[] = {\n    \"no error\",                 /* OK */\n    \"out of memory\",            /* NOMEM */\n    \"internal library error\",   /* INTERNAL */\n    \"unsupported request\",      /* UNSUPPORTED */\n    \"invalid request\",          /* INVALID */\n    \"system error\",             /* SYSTEM */\n    \"locking error\",            /* LOCKING */\n    \"all resources busy\",       /* BUSY */\n    \"X11 display error\",        /* XDISPLAY */\n    \"X11 protocol error\",       /* XPROTO */\n    \"output window is closed\",  /* CLOSED */\n    \"windows system error\",     /* WINAPI */\n    \"unknown error\"             /* NUM */\n};\n#define ERR_MAX (strlen(err_str[ZBAR_ERR_CLOSED]))\n\nint zbar_version (unsigned *major,\n                  unsigned *minor)\n{\n    if(major)\n        *major = ZBAR_VERSION_MAJOR;\n    if(minor)\n        *minor = ZBAR_VERSION_MINOR;\n    return(0);\n}\n\nvoid zbar_set_verbosity (int level)\n{\n    _zbar_verbosity = level;\n}\n\nvoid zbar_increase_verbosity ()\n{\n    if(!_zbar_verbosity)\n        _zbar_verbosity++;\n    else\n        _zbar_verbosity <<= 1;\n}\n\nint _zbar_error_spew (const void *container,\n                      int verbosity)\n{\n    const errinfo_t *err = container;\n    assert(err->magic == ERRINFO_MAGIC);\n    fprintf(stderr, \"%s\", _zbar_error_string(err, verbosity));\n    return(-err->sev);\n}\n\nzbar_error_t _zbar_get_error_code (const void *container)\n{\n    const errinfo_t *err = container;\n    assert(err->magic == ERRINFO_MAGIC);\n    return(err->type);\n}\n\n/* ERROR: zbar video in v4l1_set_format():\n *     system error: blah[: blah]\n */\n\nconst char *_zbar_error_string (const void *container,\n                                int verbosity)\n{\n    static const char basefmt[] = \"%s: zbar %s in %s():\\n    %s: \";\n    errinfo_t *err = (errinfo_t*)container;\n    const char *sev, *mod, *func, *type;\n    int len;\n\n    assert(err->magic == ERRINFO_MAGIC);\n\n    if(err->sev >= SEV_FATAL && err->sev <= SEV_NOTE)\n        sev = sev_str[err->sev + 2];\n    else\n        sev = sev_str[1];\n\n    if(err->module >= ZBAR_MOD_PROCESSOR &&\n       err->module < ZBAR_MOD_UNKNOWN)\n        mod = mod_str[err->module];\n    else\n        mod = mod_str[ZBAR_MOD_UNKNOWN];\n\n    func = (err->func) ? err->func : \"<unknown>\";\n\n    if(err->type >= 0 && err->type < ZBAR_ERR_NUM)\n        type = err_str[err->type];\n    else\n        type = err_str[ZBAR_ERR_NUM];\n\n    len = SEV_MAX + MOD_MAX + ERR_MAX + strlen(func) + sizeof(basefmt);\n    err->buf = realloc(err->buf, len);\n    len = sprintf(err->buf, basefmt, sev, mod, func, type);\n    if(len <= 0)\n        return(\"<unknown>\");\n\n    if(err->detail) {\n        int newlen = len + strlen(err->detail) + 1;\n        if(strstr(err->detail, \"%s\")) {\n            if(!err->arg_str)\n                err->arg_str = strdup(\"<?>\");\n            err->buf = realloc(err->buf, newlen + strlen(err->arg_str));\n            len += sprintf(err->buf + len, err->detail, err->arg_str);\n        }\n        else if(strstr(err->detail, \"%d\") || strstr(err->detail, \"%x\")) {\n            err->buf = realloc(err->buf, newlen + 32);\n            len += sprintf(err->buf + len, err->detail, err->arg_int);\n        }\n        else {\n            err->buf = realloc(err->buf, newlen);\n            len += sprintf(err->buf + len, \"%s\", err->detail);\n        }\n        if(len <= 0)\n            return(\"<unknown>\");\n    }\n\n#ifdef HAVE_ERRNO_H\n    if(err->type == ZBAR_ERR_SYSTEM) {\n        static const char sysfmt[] = \": %s (%d)\\n\";\n        const char *syserr = strerror(err->errnum);\n        err->buf = realloc(err->buf, len + strlen(sysfmt) + strlen(syserr));\n        len += sprintf(err->buf + len, sysfmt, syserr, err->errnum);\n    }\n#endif\n#ifdef _WIN32\n    else if(err->type == ZBAR_ERR_WINAPI) {\n        char *syserr = NULL;\n        if(FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM |\n                         FORMAT_MESSAGE_ALLOCATE_BUFFER |\n                         FORMAT_MESSAGE_IGNORE_INSERTS,\n                         NULL, err->errnum, 0, (LPTSTR)&syserr, 1, NULL) &&\n           syserr) {\n            char sysfmt[] = \": %s (%d)\\n\";\n            err->buf = realloc(err->buf, len + strlen(sysfmt) + strlen(syserr));\n            len += sprintf(err->buf + len, sysfmt, syserr, err->errnum);\n            LocalFree(syserr);\n        }\n    }\n#endif\n    else {\n        err->buf = realloc(err->buf, len + 2);\n        len += sprintf(err->buf + len, \"\\n\");\n    }\n    return(err->buf);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/error.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _ERROR_H_\n#define _ERROR_H_\n\n#include <config.h>\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#include <stdlib.h>\n#include <stdio.h>\n#include <string.h>\n#ifdef HAVE_ERRNO_H\n# include <errno.h>\n#endif\n#include <assert.h>\n\n#include <zbar.h>\n\n#ifdef _WIN32\n# include <windows.h>\n#endif\n\n#if __STDC_VERSION__ < 199901L\n# if __GNUC__ >= 2\n#  define __func__ __FUNCTION__\n# else\n#  define __func__ \"<unknown>\"\n# endif\n#endif\n\n#define ERRINFO_MAGIC (0x5252457a) /* \"zERR\" (LE) */\n\ntypedef enum errsev_e {\n    SEV_FATAL   = -2,           /* application must terminate */\n    SEV_ERROR   = -1,           /* might be able to recover and continue */\n    SEV_OK      =  0,\n    SEV_WARNING =  1,           /* unexpected condition */\n    SEV_NOTE    =  2,           /* fyi */\n} errsev_t;\n\ntypedef enum errmodule_e {\n    ZBAR_MOD_PROCESSOR,\n    ZBAR_MOD_VIDEO,\n    ZBAR_MOD_WINDOW,\n    ZBAR_MOD_IMAGE_SCANNER,\n    ZBAR_MOD_UNKNOWN,\n} errmodule_t;\n\ntypedef struct errinfo_s {\n    uint32_t magic;             /* just in case */\n    errmodule_t module;         /* reporting module */\n    char *buf;                  /* formatted and passed to application */\n    int errnum;                 /* errno for system errors */\n\n    errsev_t sev;\n    zbar_error_t type;\n    const char *func;           /* reporting function */\n    const char *detail;         /* description */\n    char *arg_str;              /* single string argument */\n    int arg_int;                /* single integer argument */\n} errinfo_t;\n\nextern int _zbar_verbosity;\n\n/* FIXME don't we need varargs hacks here? */\n\n#ifdef _WIN32\n# define ZFLUSH fflush(stderr);\n#else\n# define ZFLUSH\n#endif\n\n#ifdef ZNO_MESSAGES\n\n# ifdef __GNUC__\n    /* older versions of gcc (< 2.95) require a named varargs parameter */\n#  define zprintf(args...)\n# else\n    /* unfortunately named vararg parameter is a gcc-specific extension */\n#  define zprintf(...)\n# endif\n\n#else\n\n# ifdef __GNUC__\n#  define zprintf(level, format, args...) do {                          \\\n        if(_zbar_verbosity >= level) {                                  \\\n            fprintf(stderr, \"%s: \" format, __func__ , ##args);          \\\n            ZFLUSH                                                      \\\n        }                                                               \\\n    } while(0)\n# else\n#  define zprintf(level, format, ...) do {                              \\\n        if(_zbar_verbosity >= level) {                                  \\\n            fprintf(stderr, \"%s: \" format, __func__ , ##__VA_ARGS__);   \\\n            ZFLUSH                                                      \\\n        }                                                               \\\n    } while(0)\n# endif\n\n#endif\n\nstatic inline int err_copy (void *dst_c,\n                            void *src_c)\n{\n    errinfo_t *dst = dst_c;\n    errinfo_t *src = src_c;\n    assert(dst->magic == ERRINFO_MAGIC);\n    assert(src->magic == ERRINFO_MAGIC);\n\n    dst->errnum = src->errnum;\n    dst->sev = src->sev;\n    dst->type = src->type;\n    dst->func = src->func;\n    dst->detail = src->detail;\n    dst->arg_str = src->arg_str;\n    src->arg_str = NULL; /* unused at src, avoid double free */\n    dst->arg_int = src->arg_int;\n    return(-1);\n}\n\nstatic inline int err_capture (const void *container,\n                               errsev_t sev,\n                               zbar_error_t type,\n                               const char *func,\n                               const char *detail)\n{\n    errinfo_t *err = (errinfo_t*)container;\n    assert(err->magic == ERRINFO_MAGIC);\n#ifdef HAVE_ERRNO_H\n    if(type == ZBAR_ERR_SYSTEM)\n        err->errnum = errno;\n#endif\n#ifdef _WIN32\n    if(type == ZBAR_ERR_WINAPI)\n        err->errnum = GetLastError();\n#endif\n    err->sev = sev;\n    err->type = type;\n    err->func = func;\n    err->detail = detail;\n    if(_zbar_verbosity >= 1)\n        _zbar_error_spew(err, 0);\n    return(-1);\n}\n\nstatic inline int err_capture_str (const void *container,\n                                   errsev_t sev,\n                                   zbar_error_t type,\n                                   const char *func,\n                                   const char *detail,\n                                   const char *arg)\n{\n    errinfo_t *err = (errinfo_t*)container;\n    assert(err->magic == ERRINFO_MAGIC);\n    if(err->arg_str)\n        free(err->arg_str);\n    err->arg_str = strdup(arg);\n    return(err_capture(container, sev, type, func, detail));\n}\n\nstatic inline int err_capture_int (const void *container,\n                                   errsev_t sev,\n                                   zbar_error_t type,\n                                   const char *func,\n                                   const char *detail,\n                                   int arg)\n{\n    errinfo_t *err = (errinfo_t*)container;\n    assert(err->magic == ERRINFO_MAGIC);\n    err->arg_int = arg;\n    return(err_capture(container, sev, type, func, detail));\n}\n\nstatic inline int err_capture_num (const void *container,\n                                   errsev_t sev,\n                                   zbar_error_t type,\n                                   const char *func,\n                                   const char *detail,\n                                   int num)\n{\n    errinfo_t *err = (errinfo_t*)container;\n    assert(err->magic == ERRINFO_MAGIC);\n    err->errnum = num;\n    return(err_capture(container, sev, type, func, detail));\n}\n\nstatic inline void err_init (errinfo_t *err,\n                             errmodule_t module)\n{\n    err->magic = ERRINFO_MAGIC;\n    err->module = module;\n}\n\nstatic inline void err_cleanup (errinfo_t *err)\n{\n    assert(err->magic == ERRINFO_MAGIC);\n    if(err->buf) {\n        free(err->buf);\n        err->buf = NULL;\n    }\n    if(err->arg_str) {\n        free(err->arg_str);\n        err->arg_str = NULL;\n    }\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/event.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _ZBAR_EVENT_H_\n#define _ZBAR_EVENT_H_\n\n#include <config.h>\n#include \"mutex.h\"\n#include \"timer.h\"\n\n/* platform synchronization \"event\" abstraction\n */\n\n#if defined(_WIN32)\n\n# include <windows.h>\n\ntypedef HANDLE zbar_event_t;\n\n\n#else\n\n# ifdef HAVE_LIBPTHREAD\n#  include <pthread.h>\n# endif\n\ntypedef struct zbar_event_s {\n    int state;\n# ifdef HAVE_LIBPTHREAD\n    pthread_cond_t cond;\n# endif\n    int pollfd;\n} zbar_event_t;\n\n#endif\n\n\nextern int _zbar_event_init(zbar_event_t*);\nextern void _zbar_event_destroy(zbar_event_t*);\nextern void _zbar_event_trigger(zbar_event_t*);\nextern int _zbar_event_wait(zbar_event_t*, zbar_mutex_t*, zbar_timer_t*);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/image.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"error.h\"\n#include \"image.h\"\n#include \"refcnt.h\"\n\nzbar_image_t *zbar_image_create ()\n{\n    zbar_image_t *img = calloc(1, sizeof(zbar_image_t));\n    _zbar_refcnt_init();\n    _zbar_image_refcnt(img, 1);\n    img->srcidx = -1;\n    return(img);\n}\n\nvoid _zbar_image_free (zbar_image_t *img)\n{\n    if(img->syms) {\n        zbar_symbol_set_ref(img->syms, -1);\n        img->syms = NULL;\n    }\n    free(img);\n}\n\nvoid zbar_image_destroy (zbar_image_t *img)\n{\n    _zbar_image_refcnt(img, -1);\n}\n\nvoid zbar_image_ref (zbar_image_t *img,\n                     int refs)\n{\n    _zbar_image_refcnt(img, refs);\n}\n\nunsigned long zbar_image_get_format (const zbar_image_t *img)\n{\n    return(img->format);\n}\n\nunsigned zbar_image_get_sequence (const zbar_image_t *img)\n{\n    return(img->seq);\n}\n\nunsigned zbar_image_get_width (const zbar_image_t *img)\n{\n    return(img->width);\n}\n\nunsigned zbar_image_get_height (const zbar_image_t *img)\n{\n    return(img->height);\n}\n\nvoid zbar_image_get_size (const zbar_image_t *img,\n                          unsigned *w,\n                          unsigned *h)\n{\n    if(w) *w = img->width;\n    if(h) *h = img->height;\n}\n\nvoid zbar_image_get_crop (const zbar_image_t *img,\n                          unsigned *x,\n                          unsigned *y,\n                          unsigned *w,\n                          unsigned *h)\n{\n    if(x) *x = img->crop_x;\n    if(y) *y = img->crop_y;\n    if(w) *w = img->crop_w;\n    if(h) *h = img->crop_h;\n}\n\nconst void *zbar_image_get_data (const zbar_image_t *img)\n{\n    return(img->data);\n}\n\nunsigned long zbar_image_get_data_length (const zbar_image_t *img)\n{\n    return(img->datalen);\n}\n\nvoid zbar_image_set_format (zbar_image_t *img,\n                            unsigned long fmt)\n{\n    img->format = fmt;\n}\n\nvoid zbar_image_set_sequence (zbar_image_t *img,\n                              unsigned seq)\n{\n    img->seq = seq;\n}\n\nvoid zbar_image_set_size (zbar_image_t *img,\n                          unsigned w,\n                          unsigned h)\n{\n    img->crop_x = img->crop_y = 0;\n    img->width = img->crop_w = w;\n    img->height = img->crop_h = h;\n}\n\nvoid zbar_image_set_crop (zbar_image_t *img,\n                          unsigned x,\n                          unsigned y,\n                          unsigned w,\n                          unsigned h)\n{\n    unsigned img_w = img->width;\n    if(x > img_w) x = img_w;\n    if(x + w > img_w) w = img_w - x;\n    img->crop_x = x;\n    img->crop_w = w;\n\n    unsigned img_h = img->height;\n    if(y > img_h) y = img_h;\n    if(y + h > img_h) h = img_h - y;\n    img->crop_y = y;\n    img->crop_h = h;\n}\n\ninline void zbar_image_free_data (zbar_image_t *img)\n{\n    if(!img)\n        return;\n    if(img->src) {\n        zbar_image_t *newimg;\n        /* replace video image w/new copy */\n        assert(img->refcnt); /* FIXME needs lock */\n        newimg = zbar_image_create();\n        memcpy(newimg, img, sizeof(zbar_image_t));\n        /* recycle video image */\n        newimg->cleanup(newimg);\n        /* detach old image from src */\n        img->cleanup = NULL;\n        img->src = NULL;\n        img->srcidx = -1;\n    }\n    else if(img->cleanup && img->data) {\n        if(img->cleanup != zbar_image_free_data) {\n            /* using function address to detect this case is a bad idea;\n             * windows link libraries add an extra layer of indirection...\n             * this works around that problem (bug #2796277)\n             */\n            zbar_image_cleanup_handler_t *cleanup = img->cleanup;\n            img->cleanup = zbar_image_free_data;\n            cleanup(img);\n        }\n        else\n            free((void*)img->data);\n    }\n    img->data = NULL;\n}\n\nvoid zbar_image_set_data (zbar_image_t *img,\n                          const void *data,\n                          unsigned long len,\n                          zbar_image_cleanup_handler_t *cleanup)\n{\n    zbar_image_free_data(img);\n    img->data = data;\n    img->datalen = len;\n    img->cleanup = cleanup;\n}\n\nvoid zbar_image_set_userdata (zbar_image_t *img,\n                              void *userdata)\n{\n    img->userdata = userdata;\n}\n\nvoid *zbar_image_get_userdata (const zbar_image_t *img)\n{\n    return(img->userdata);\n}\n\nzbar_image_t *zbar_image_copy (const zbar_image_t *src)\n{\n    zbar_image_t *dst = zbar_image_create();\n    dst->format = src->format;\n    _zbar_image_copy_size(dst, src);\n    dst->datalen = src->datalen;\n    dst->data = malloc(src->datalen);\n    assert(dst->data);\n    memcpy((void*)dst->data, src->data, src->datalen);\n    dst->cleanup = zbar_image_free_data;\n    return(dst);\n}\n\nconst zbar_symbol_set_t *zbar_image_get_symbols (const zbar_image_t *img)\n{\n    return(img->syms);\n}\n\nvoid zbar_image_set_symbols (zbar_image_t *img,\n                             const zbar_symbol_set_t *syms)\n{\n    if(syms)\n        zbar_symbol_set_ref(syms, 1);\n    if(img->syms)\n        zbar_symbol_set_ref(img->syms, -1);\n    img->syms = (zbar_symbol_set_t*)syms;\n}\n\nconst zbar_symbol_t *zbar_image_first_symbol (const zbar_image_t *img)\n{\n    return((img->syms) ? img->syms->head : NULL);\n}\n\ntypedef struct zimg_hdr_s {\n    uint32_t magic, format;\n    uint16_t width, height;\n    uint32_t size;\n} zimg_hdr_t;\n\nint zbar_image_write (const zbar_image_t *img,\n                      const char *filebase)\n{\n    int len = strlen(filebase) + 16;\n    char *filename = malloc(len);\n    int n = 0, rc = 0;\n    FILE *f;\n    zimg_hdr_t hdr;\n    strcpy(filename, filebase);\n    if((img->format & 0xff) >= ' ')\n        n = snprintf(filename, len, \"%s.%.4s.zimg\",\n                     filebase, (char*)&img->format);\n    else\n        n = snprintf(filename, len, \"%s.%08\" PRIx32 \".zimg\",\n                     filebase, img->format);\n    assert(n < len - 1);\n    filename[len - 1] = '\\0';\n\n    zprintf(1, \"dumping %.4s(%08\" PRIx32 \") image to %s\\n\",\n            (char*)&img->format, img->format, filename);\n\n    f = fopen(filename, \"w\");\n    if(!f) {\n#ifdef HAVE_ERRNO_H\n        rc = errno;\n        zprintf(1, \"ERROR opening %s: %s\\n\", filename, strerror(rc));\n#else\n        rc = 1;\n#endif\n        goto error;\n    }\n\n    hdr.magic = 0x676d697a;\n    hdr.format = img->format;\n    hdr.width = img->width;\n    hdr.height = img->height;\n    hdr.size = img->datalen;\n\n    if(fwrite(&hdr, sizeof(hdr), 1, f) != 1 ||\n       fwrite(img->data, 1, img->datalen, f) != img->datalen) {\n#ifdef HAVE_ERRNO_H\n        rc = errno;\n        zprintf(1, \"ERROR writing %s: %s\\n\", filename, strerror(rc));\n#else\n        rc = 1;\n#endif\n        fclose(f);\n        goto error;\n    }\n\n    rc = fclose(f);\n\nerror:\n    free(filename);\n    return(rc);\n}\n\n#ifdef DEBUG_SVG\n# include <png.h>\n\nint zbar_image_write_png (const zbar_image_t *img,\n                          const char *filename)\n{\n    int rc = -1;\n    FILE *file = NULL;\n    png_struct *png = NULL;\n    png_info *info = NULL;\n    const uint8_t **rows = NULL;\n\n    rows = malloc(img->height * sizeof(*rows));\n    if(!rows)\n        goto done;\n\n    rows[0] = img->data;\n    int y;\n    for(y = 1; y < img->height; y++)\n        rows[y] = rows[y - 1] + img->width;\n\n    file = fopen(filename, \"wb\");\n    if(!file)\n        goto done;\n\n    png = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);\n    if(!png)\n        goto done;\n\n    info = png_create_info_struct(png);\n    if(!info)\n        goto done;\n\n    if(setjmp(png_jmpbuf(png)))\n        goto done;\n\n    png_init_io(png, file);\n    png_set_compression_level(png, 9);\n    png_set_IHDR(png, info, img->width, img->height, 8, PNG_COLOR_TYPE_GRAY,\n                 PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT,\n                 PNG_FILTER_TYPE_DEFAULT);\n\n    png_set_rows(png, info, (void*)rows);\n    png_write_png(png, info, PNG_TRANSFORM_IDENTITY, NULL);\n\n    png_write_end(png,info);\n    rc = 0;\n\ndone:\n    if(png)\n        png_destroy_write_struct(&png, &info);\n    if(rows)\n        free(rows);\n    if(file)\n        fclose(file);\n    return(rc);\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/image.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _IMAGE_H_\n#define _IMAGE_H_\n\n#include <config.h>\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#include <stdlib.h>\n#include <assert.h>\n\n#include <zbar.h>\n#include \"error.h\"\n#include \"symbol.h\"\n#include \"refcnt.h\"\n\n#define fourcc zbar_fourcc\n\n/* unpack size/location of component */\n#define RGB_SIZE(c)   ((c) >> 5)\n#define RGB_OFFSET(c) ((c) & 0x1f)\n\n/* coarse image format categorization.\n * to limit conversion variations\n */\ntypedef enum zbar_format_group_e {\n    ZBAR_FMT_GRAY,\n    ZBAR_FMT_YUV_PLANAR,\n    ZBAR_FMT_YUV_PACKED,\n    ZBAR_FMT_RGB_PACKED,\n    ZBAR_FMT_YUV_NV,\n    ZBAR_FMT_JPEG,\n\n    /* enum size */\n    ZBAR_FMT_NUM\n} zbar_format_group_t;\n\n\nstruct zbar_image_s {\n    uint32_t format;            /* fourcc image format code */\n    unsigned width, height;     /* image size */\n    const void *data;           /* image sample data */\n    unsigned long datalen;      /* allocated/mapped size of data */\n    unsigned crop_x, crop_y;    /* crop rectangle */\n    unsigned crop_w, crop_h;\n    void *userdata;             /* user specified data associated w/image */\n\n    /* cleanup handler */\n    zbar_image_cleanup_handler_t *cleanup;\n    refcnt_t refcnt;            /* reference count */\n    zbar_video_t *src;          /* originator */\n    int srcidx;                 /* index used by originator */\n    zbar_image_t *next;         /* internal image lists */\n\n    unsigned seq;               /* page/frame sequence number */\n    zbar_symbol_set_t *syms;    /* decoded result set */\n};\n\n/* description of an image format */\ntypedef struct zbar_format_def_s {\n    uint32_t format;                    /* fourcc */\n    zbar_format_group_t group;          /* coarse categorization */\n    union {\n        uint8_t gen[4];                 /* raw bytes */\n        struct {\n            uint8_t bpp;                /* bits per pixel */\n            uint8_t red, green, blue;   /* size/location a la RGB_BITS() */\n        } rgb;\n        struct {\n            uint8_t xsub2, ysub2;       /* chroma subsampling in each axis */\n            uint8_t packorder;          /* channel ordering flags\n                                         *   bit0: 0=UV, 1=VU\n                                         *   bit1: 0=Y/chroma, 1=chroma/Y\n                                         */\n        } yuv;\n        uint32_t cmp;                   /* quick compare equivalent formats */\n    } p;\n} zbar_format_def_t;\n\n\nextern int _zbar_best_format(uint32_t, uint32_t*, const uint32_t*);\nextern const zbar_format_def_t *_zbar_format_lookup(uint32_t);\nextern void _zbar_image_free(zbar_image_t*);\n\n#ifdef DEBUG_SVG\nextern int zbar_image_write_png(const zbar_image_t*, const char*);\n#else\n# define zbar_image_write_png(...)\n#endif\n\nstatic inline void _zbar_image_refcnt (zbar_image_t *img,\n                                       int delta)\n{\n    if(!_zbar_refcnt(&img->refcnt, delta) && delta <= 0) {\n        if(img->cleanup)\n            img->cleanup(img);\n        if(!img->src)\n            _zbar_image_free(img);\n    }\n}\n\nstatic inline void _zbar_image_swap_symbols (zbar_image_t *a,\n                                             zbar_image_t *b)\n{\n    zbar_symbol_set_t *tmp = a->syms;\n    a->syms = b->syms;\n    b->syms = tmp;\n}\n\nstatic inline void _zbar_image_copy_size (zbar_image_t *dst,\n                                          const zbar_image_t *src)\n{\n    dst->width = src->width;\n    dst->height = src->height;\n    dst->crop_x = src->crop_x;\n    dst->crop_y = src->crop_y;\n    dst->crop_w = src->crop_w;\n    dst->crop_h = src->crop_h;\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/img_scanner.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#ifdef HAVE_UNISTD_H\n# include <unistd.h>\n#endif\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#include <stdlib.h>     /* malloc, free */\n#include <string.h>     /* memcmp, memset, memcpy */\n#include <assert.h>\n\n#include <zbar.h>\n#include \"error.h\"\n#include \"image.h\"\n#include \"timer.h\"\n#ifdef ENABLE_QRCODE\n# include \"qrcode.h\"\n#endif\n#include \"img_scanner.h\"\n#include \"svg.h\"\n\n#if 1\n# define ASSERT_POS \\\n    assert(p == data + x + y * (intptr_t)w)\n#else\n# define ASSERT_POS\n#endif\n\n/* FIXME cache setting configurability */\n\n/* time interval for which two images are considered \"nearby\"\n */\n#define CACHE_PROXIMITY   1000 /* ms */\n\n/* time that a result must *not* be detected before\n * it will be reported again\n */\n#define CACHE_HYSTERESIS  2000 /* ms */\n\n/* time after which cache entries are invalidated\n */\n#define CACHE_TIMEOUT     (CACHE_HYSTERESIS * 2) /* ms */\n\n#define NUM_SCN_CFGS (ZBAR_CFG_Y_DENSITY - ZBAR_CFG_X_DENSITY + 1)\n\n#define CFG(iscn, cfg) ((iscn)->configs[(cfg) - ZBAR_CFG_X_DENSITY])\n#define TEST_CFG(iscn, cfg) (((iscn)->config >> ((cfg) - ZBAR_CFG_POSITION)) & 1)\n\n#ifndef NO_STATS\n# define STAT(x) iscn->stat_##x++\n#else\n# define STAT(...)\n# define dump_stats(...)\n#endif\n\n#define RECYCLE_BUCKETS     5\n\ntypedef struct recycle_bucket_s {\n    int nsyms;\n    zbar_symbol_t *head;\n} recycle_bucket_t;\n\n/* image scanner state */\nstruct zbar_image_scanner_s {\n    zbar_scanner_t *scn;        /* associated linear intensity scanner */\n    zbar_decoder_t *dcode;      /* associated symbol decoder */\n#ifdef ENABLE_QRCODE\n    qr_reader *qr;              /* QR Code 2D reader */\n#endif\n\n    const void *userdata;       /* application data */\n    /* user result callback */\n    zbar_image_data_handler_t *handler;\n\n    unsigned long time;         /* scan start time */\n    zbar_image_t *img;          /* currently scanning image *root* */\n    int dx, dy, du, umin, v;    /* current scan direction */\n    zbar_symbol_set_t *syms;    /* previous decode results */\n    /* recycled symbols in 4^n size buckets */\n    recycle_bucket_t recycle[RECYCLE_BUCKETS];\n\n    int enable_cache;           /* current result cache state */\n    zbar_symbol_t *cache;       /* inter-image result cache entries */\n\n    /* configuration settings */\n    unsigned config;            /* config flags */\n    unsigned ean_config;\n    int configs[NUM_SCN_CFGS];  /* int valued configurations */\n    int sym_configs[1][NUM_SYMS]; /* per-symbology configurations */\n\n#ifndef NO_STATS\n    int stat_syms_new;\n    int stat_iscn_syms_inuse, stat_iscn_syms_recycle;\n    int stat_img_syms_inuse, stat_img_syms_recycle;\n    int stat_sym_new;\n    int stat_sym_recycle[RECYCLE_BUCKETS];\n#endif\n};\n\nvoid _zbar_image_scanner_recycle_syms (zbar_image_scanner_t *iscn,\n                                       zbar_symbol_t *sym)\n{\n    zbar_symbol_t *next = NULL;\n    for(; sym; sym = next) {\n        next = sym->next;\n        if(sym->refcnt && _zbar_refcnt(&sym->refcnt, -1)) {\n            /* unlink referenced symbol */\n            /* FIXME handle outstanding component refs (currently unsupported)\n             */\n            assert(sym->data_alloc);\n            sym->next = NULL;\n        }\n        else {\n            int i;\n            recycle_bucket_t *bucket;\n            /* recycle unreferenced symbol */\n            if(!sym->data_alloc) {\n                sym->data = NULL;\n                sym->datalen = 0;\n            }\n            if(sym->syms) {\n                if(_zbar_refcnt(&sym->syms->refcnt, -1))\n                    assert(0);\n                _zbar_image_scanner_recycle_syms(iscn, sym->syms->head);\n                sym->syms->head = NULL;\n                _zbar_symbol_set_free(sym->syms);\n                sym->syms = NULL;\n            }\n            for(i = 0; i < RECYCLE_BUCKETS; i++)\n                if(sym->data_alloc < 1 << (i * 2))\n                    break;\n            if(i == RECYCLE_BUCKETS) {\n                assert(sym->data);\n                free(sym->data);\n                sym->data = NULL;\n                sym->data_alloc = 0;\n                i = 0;\n            }\n            bucket = &iscn->recycle[i];\n            /* FIXME cap bucket fill */\n            bucket->nsyms++;\n            sym->next = bucket->head;\n            bucket->head = sym;\n        }\n    }\n}\n\nstatic inline int recycle_syms (zbar_image_scanner_t *iscn,\n                                zbar_symbol_set_t *syms)\n{\n    if(_zbar_refcnt(&syms->refcnt, -1))\n        return(1);\n\n    _zbar_image_scanner_recycle_syms(iscn, syms->head);\n    syms->head = syms->tail = NULL;\n    syms->nsyms = 0;\n    return(0);\n}\n\ninline void zbar_image_scanner_recycle_image (zbar_image_scanner_t *iscn,\n                                              zbar_image_t *img)\n{\n    zbar_symbol_set_t *syms = iscn->syms;\n    if(syms && syms->refcnt) {\n        if(recycle_syms(iscn, syms)) {\n            STAT(iscn_syms_inuse);\n            iscn->syms = NULL;\n        }\n        else\n            STAT(iscn_syms_recycle);\n    }\n\n    syms = img->syms;\n    img->syms = NULL;\n    if(syms && recycle_syms(iscn, syms))\n        STAT(img_syms_inuse);\n    else if(syms) {\n        STAT(img_syms_recycle);\n\n        /* select one set to resurrect, destroy the other */\n        if(iscn->syms)\n            _zbar_symbol_set_free(syms);\n        else\n            iscn->syms = syms;\n    }\n}\n\ninline zbar_symbol_t*\n_zbar_image_scanner_alloc_sym (zbar_image_scanner_t *iscn,\n                               zbar_symbol_type_t type,\n                               int datalen)\n{\n    /* recycle old or alloc new symbol */\n    zbar_symbol_t *sym = NULL;\n    int i;\n    for(i = 0; i < RECYCLE_BUCKETS - 1; i++)\n        if(datalen <= 1 << (i * 2))\n            break;\n\n    for(; i > 0; i--)\n        if((sym = iscn->recycle[i].head)) {\n            STAT(sym_recycle[i]);\n            break;\n        }\n\n    if(sym) {\n        iscn->recycle[i].head = sym->next;\n        sym->next = NULL;\n        assert(iscn->recycle[i].nsyms);\n        iscn->recycle[i].nsyms--;\n    }\n    else {\n        sym = calloc(1, sizeof(zbar_symbol_t));\n        STAT(sym_new);\n    }\n\n    /* init new symbol */\n    sym->type = type;\n    sym->quality = 1;\n    sym->npts = 0;\n    sym->orient = ZBAR_ORIENT_UNKNOWN;\n    sym->cache_count = 0;\n    sym->time = iscn->time;\n    assert(!sym->syms);\n\n    if(datalen > 0) {\n        sym->datalen = datalen - 1;\n        if(sym->data_alloc < datalen) {\n            if(sym->data)\n                free(sym->data);\n            sym->data_alloc = datalen;\n            sym->data = malloc(datalen);\n        }\n    }\n    else {\n        if(sym->data)\n            free(sym->data);\n        sym->data = NULL;\n        sym->datalen = sym->data_alloc = 0;\n    }\n    return(sym);\n}\n\nstatic inline zbar_symbol_t *cache_lookup (zbar_image_scanner_t *iscn,\n                                           zbar_symbol_t *sym)\n{\n    /* search for matching entry in cache */\n    zbar_symbol_t **entry = &iscn->cache;\n    while(*entry) {\n        if((*entry)->type == sym->type &&\n           (*entry)->datalen == sym->datalen &&\n           !memcmp((*entry)->data, sym->data, sym->datalen))\n            break;\n        if((sym->time - (*entry)->time) > CACHE_TIMEOUT) {\n            /* recycle stale cache entry */\n            zbar_symbol_t *next = (*entry)->next;\n            (*entry)->next = NULL;\n            _zbar_image_scanner_recycle_syms(iscn, *entry);\n            *entry = next;\n        }\n        else\n            entry = &(*entry)->next;\n    }\n    return(*entry);\n}\n\nstatic inline void cache_sym (zbar_image_scanner_t *iscn,\n                              zbar_symbol_t *sym)\n{\n    if(iscn->enable_cache) {\n        uint32_t age, near_thresh, far_thresh, dup;\n        zbar_symbol_t *entry = cache_lookup(iscn, sym);\n        if(!entry) {\n            /* FIXME reuse sym */\n            entry = _zbar_image_scanner_alloc_sym(iscn, sym->type,\n                                                  sym->datalen + 1);\n            entry->configs = sym->configs;\n            entry->modifiers = sym->modifiers;\n            memcpy(entry->data, sym->data, sym->datalen);\n            entry->time = sym->time - CACHE_HYSTERESIS;\n            entry->cache_count = 0;\n            /* add to cache */\n            entry->next = iscn->cache;\n            iscn->cache = entry;\n        }\n\n        /* consistency check and hysteresis */\n        age = sym->time - entry->time;\n        entry->time = sym->time;\n        near_thresh = (age < CACHE_PROXIMITY);\n        far_thresh = (age >= CACHE_HYSTERESIS);\n        dup = (entry->cache_count >= 0);\n        if((!dup && !near_thresh) || far_thresh) {\n            int type = sym->type;\n            int h = _zbar_get_symbol_hash(type);\n            entry->cache_count = -iscn->sym_configs[0][h];\n        }\n        else if(dup || near_thresh)\n            entry->cache_count++;\n\n        sym->cache_count = entry->cache_count;\n    }\n    else\n        sym->cache_count = 0;\n}\n\nvoid _zbar_image_scanner_add_sym(zbar_image_scanner_t *iscn,\n                                 zbar_symbol_t *sym)\n{\n    zbar_symbol_set_t *syms;\n    cache_sym(iscn, sym);\n\n    syms = iscn->syms;\n    if(sym->cache_count || !syms->tail) {\n        sym->next = syms->head;\n        syms->head = sym;\n    }\n    else {\n        sym->next = syms->tail->next;\n        syms->tail->next = sym;\n    }\n\n    if(!sym->cache_count)\n        syms->nsyms++;\n    else if(!syms->tail)\n        syms->tail = sym;\n\n    _zbar_symbol_refcnt(sym, 1);\n}\n\n#ifdef ENABLE_QRCODE\nextern qr_finder_line *_zbar_decoder_get_qr_finder_line(zbar_decoder_t*);\n\n# define QR_FIXED(v, rnd) ((((v) << 1) + (rnd)) << (QR_FINDER_SUBPREC - 1))\n# define PRINT_FIXED(val, prec) \\\n    ((val) >> (prec)),         \\\n        (1000 * ((val) & ((1 << (prec)) - 1)) / (1 << (prec)))\n\nstatic inline void qr_handler (zbar_image_scanner_t *iscn)\n{\n    unsigned u;\n    int vert;\n    qr_finder_line *line = _zbar_decoder_get_qr_finder_line(iscn->dcode);\n    assert(line);\n    u = zbar_scanner_get_edge(iscn->scn, line->pos[0],\n                              QR_FINDER_SUBPREC);\n    line->boffs = u - zbar_scanner_get_edge(iscn->scn, line->boffs,\n                                            QR_FINDER_SUBPREC);\n    line->len = zbar_scanner_get_edge(iscn->scn, line->len,\n                                      QR_FINDER_SUBPREC);\n    line->eoffs = zbar_scanner_get_edge(iscn->scn, line->eoffs,\n                                        QR_FINDER_SUBPREC) - line->len;\n    line->len -= u;\n\n    u = QR_FIXED(iscn->umin, 0) + iscn->du * u;\n    if(iscn->du < 0) {\n        int tmp = line->boffs;\n        line->boffs = line->eoffs;\n        line->eoffs = tmp;\n        u -= line->len;\n    }\n    vert = !iscn->dx;\n    line->pos[vert] = u;\n    line->pos[!vert] = QR_FIXED(iscn->v, 1);\n\n    _zbar_qr_found_line(iscn->qr, vert, line);\n}\n#endif\n\nstatic void symbol_handler (zbar_decoder_t *dcode)\n{\n    zbar_image_scanner_t *iscn = zbar_decoder_get_userdata(dcode);\n    zbar_symbol_type_t type = zbar_decoder_get_type(dcode);\n    int x = 0, y = 0, dir;\n    const char *data;\n    unsigned datalen;\n    zbar_symbol_t *sym;\n\n#ifdef ENABLE_QRCODE\n    if(type == ZBAR_QRCODE) {\n        qr_handler(iscn);\n        return;\n    }\n#else\n    assert(type != ZBAR_QRCODE);\n#endif\n\n    if(TEST_CFG(iscn, ZBAR_CFG_POSITION)) {\n        /* tmp position fixup */\n        int w = zbar_scanner_get_width(iscn->scn);\n        int u = iscn->umin + iscn->du * zbar_scanner_get_edge(iscn->scn, w, 0);\n        if(iscn->dx) {\n            x = u;\n            y = iscn->v;\n        }\n        else {\n            x = iscn->v;\n            y = u;\n        }\n    }\n\n    /* FIXME debug flag to save/display all PARTIALs */\n    if(type <= ZBAR_PARTIAL) {\n        zprintf(256, \"partial symbol @(%d,%d)\\n\", x, y);\n        return;\n    }\n\n    data = zbar_decoder_get_data(dcode);\n    datalen = zbar_decoder_get_data_length(dcode);\n\n    /* FIXME need better symbol matching */\n    for(sym = iscn->syms->head; sym; sym = sym->next)\n        if(sym->type == type &&\n           sym->datalen == datalen &&\n           !memcmp(sym->data, data, datalen)) {\n            sym->quality++;\n            zprintf(224, \"dup symbol @(%d,%d): dup %s: %.20s\\n\",\n                    x, y, zbar_get_symbol_name(type), data);\n            if(TEST_CFG(iscn, ZBAR_CFG_POSITION))\n                /* add new point to existing set */\n                /* FIXME should be polygon */\n                sym_add_point(sym, x, y);\n            return;\n        }\n\n    sym = _zbar_image_scanner_alloc_sym(iscn, type, datalen + 1);\n    sym->configs = zbar_decoder_get_configs(dcode, type);\n    sym->modifiers = zbar_decoder_get_modifiers(dcode);\n    /* FIXME grab decoder buffer */\n    memcpy(sym->data, data, datalen + 1);\n\n    /* initialize first point */\n    if(TEST_CFG(iscn, ZBAR_CFG_POSITION)) {\n        zprintf(192, \"new symbol @(%d,%d): %s: %.20s\\n\",\n                x, y, zbar_get_symbol_name(type), data);\n        sym_add_point(sym, x, y);\n    }\n\n    dir = zbar_decoder_get_direction(dcode);\n    if(dir)\n        sym->orient = (iscn->dy != 0) + ((iscn->du ^ dir) & 2);\n\n    _zbar_image_scanner_add_sym(iscn, sym);\n}\n\nzbar_image_scanner_t *zbar_image_scanner_create ()\n{\n    zbar_image_scanner_t *iscn = calloc(1, sizeof(zbar_image_scanner_t));\n    if(!iscn)\n        return(NULL);\n    iscn->dcode = zbar_decoder_create();\n    iscn->scn = zbar_scanner_create(iscn->dcode);\n    if(!iscn->dcode || !iscn->scn) {\n        zbar_image_scanner_destroy(iscn);\n        return(NULL);\n    }\n    zbar_decoder_set_userdata(iscn->dcode, iscn);\n    zbar_decoder_set_handler(iscn->dcode, symbol_handler);\n\n#ifdef ENABLE_QRCODE\n    iscn->qr = _zbar_qr_create();\n#endif\n\n    /* apply default configuration */\n    CFG(iscn, ZBAR_CFG_X_DENSITY) = 1;\n    CFG(iscn, ZBAR_CFG_Y_DENSITY) = 1;\n    zbar_image_scanner_set_config(iscn, 0, ZBAR_CFG_POSITION, 1);\n    zbar_image_scanner_set_config(iscn, 0, ZBAR_CFG_UNCERTAINTY, 2);\n    zbar_image_scanner_set_config(iscn, ZBAR_QRCODE, ZBAR_CFG_UNCERTAINTY, 0);\n    zbar_image_scanner_set_config(iscn, ZBAR_CODE128, ZBAR_CFG_UNCERTAINTY, 0);\n    zbar_image_scanner_set_config(iscn, ZBAR_CODE93, ZBAR_CFG_UNCERTAINTY, 0);\n    zbar_image_scanner_set_config(iscn, ZBAR_CODE39, ZBAR_CFG_UNCERTAINTY, 0);\n    zbar_image_scanner_set_config(iscn, ZBAR_CODABAR, ZBAR_CFG_UNCERTAINTY, 1);\n    zbar_image_scanner_set_config(iscn, ZBAR_COMPOSITE, ZBAR_CFG_UNCERTAINTY, 0);\n    return(iscn);\n}\n\n#ifndef NO_STATS\nstatic inline void dump_stats (const zbar_image_scanner_t *iscn)\n{\n    int i;\n    zprintf(1, \"symbol sets allocated   = %-4d\\n\", iscn->stat_syms_new);\n    zprintf(1, \"    scanner syms in use = %-4d\\trecycled  = %-4d\\n\",\n            iscn->stat_iscn_syms_inuse, iscn->stat_iscn_syms_recycle);\n    zprintf(1, \"    image syms in use   = %-4d\\trecycled  = %-4d\\n\",\n            iscn->stat_img_syms_inuse, iscn->stat_img_syms_recycle);\n    zprintf(1, \"symbols allocated       = %-4d\\n\", iscn->stat_sym_new);\n    for(i = 0; i < RECYCLE_BUCKETS; i++)\n        zprintf(1, \"     recycled[%d]        = %-4d\\n\",\n                i, iscn->stat_sym_recycle[i]);\n}\n#endif\n\nvoid zbar_image_scanner_destroy (zbar_image_scanner_t *iscn)\n{\n    int i;\n    dump_stats(iscn);\n    if(iscn->syms) {\n        if(iscn->syms->refcnt)\n            zbar_symbol_set_ref(iscn->syms, -1);\n        else\n            _zbar_symbol_set_free(iscn->syms);\n        iscn->syms = NULL;\n    }\n    if(iscn->scn)\n        zbar_scanner_destroy(iscn->scn);\n    iscn->scn = NULL;\n    if(iscn->dcode)\n        zbar_decoder_destroy(iscn->dcode);\n    iscn->dcode = NULL;\n    for(i = 0; i < RECYCLE_BUCKETS; i++) {\n        zbar_symbol_t *sym, *next;\n        for(sym = iscn->recycle[i].head; sym; sym = next) {\n            next = sym->next;\n            _zbar_symbol_free(sym);\n        }\n    }\n#ifdef ENABLE_QRCODE\n    if(iscn->qr) {\n        _zbar_qr_destroy(iscn->qr);\n        iscn->qr = NULL;\n    }\n#endif\n    free(iscn);\n}\n\nzbar_image_data_handler_t*\nzbar_image_scanner_set_data_handler (zbar_image_scanner_t *iscn,\n                                     zbar_image_data_handler_t *handler,\n                                     const void *userdata)\n{\n    zbar_image_data_handler_t *result = iscn->handler;\n    iscn->handler = handler;\n    iscn->userdata = userdata;\n    return(result);\n}\n\nint zbar_image_scanner_set_config (zbar_image_scanner_t *iscn,\n                                   zbar_symbol_type_t sym,\n                                   zbar_config_t cfg,\n                                   int val)\n{\n    if((sym == 0 || sym == ZBAR_COMPOSITE) && cfg == ZBAR_CFG_ENABLE) {\n        iscn->ean_config = !!val;\n        if(sym)\n            return(0);\n    }\n\n    if(cfg < ZBAR_CFG_UNCERTAINTY)\n        return(zbar_decoder_set_config(iscn->dcode, sym, cfg, val));\n\n    if(cfg < ZBAR_CFG_POSITION) {\n        int c, i;\n        if(cfg > ZBAR_CFG_UNCERTAINTY)\n            return(1);\n        c = cfg - ZBAR_CFG_UNCERTAINTY;\n        if(sym > ZBAR_PARTIAL) {\n            i = _zbar_get_symbol_hash(sym);\n            iscn->sym_configs[c][i] = val;\n        }\n        else\n            for(i = 0; i < NUM_SYMS; i++)\n                iscn->sym_configs[c][i] = val;\n        return(0);\n    }\n\n    if(sym > ZBAR_PARTIAL)\n        return(1);\n\n    if(cfg >= ZBAR_CFG_X_DENSITY && cfg <= ZBAR_CFG_Y_DENSITY) {\n        CFG(iscn, cfg) = val;\n        return(0);\n    }\n\n    if(cfg > ZBAR_CFG_POSITION)\n        return(1);\n    cfg -= ZBAR_CFG_POSITION;\n\n    if(!val)\n        iscn->config &= ~(1 << cfg);\n    else if(val == 1)\n        iscn->config |= (1 << cfg);\n    else\n        return(1);\n\n    return(0);\n}\n\nvoid zbar_image_scanner_enable_cache (zbar_image_scanner_t *iscn,\n                                      int enable)\n{\n    if(iscn->cache) {\n        /* recycle all cached syms */\n        _zbar_image_scanner_recycle_syms(iscn, iscn->cache);\n        iscn->cache = NULL;\n    }\n    iscn->enable_cache = (enable) ? 1 : 0;\n}\n\nconst zbar_symbol_set_t *\nzbar_image_scanner_get_results (const zbar_image_scanner_t *iscn)\n{\n    return(iscn->syms);\n}\n\nstatic inline void quiet_border (zbar_image_scanner_t *iscn)\n{\n    /* flush scanner pipeline */\n    zbar_scanner_t *scn = iscn->scn;\n    zbar_scanner_flush(scn);\n    zbar_scanner_flush(scn);\n    zbar_scanner_new_scan(scn);\n}\n\n#define movedelta(dx, dy) do {                  \\\n        x += (dx);                              \\\n        y += (dy);                              \\\n        p += (dx) + ((uintptr_t)(dy) * w);       \\\n    } while(0);\n\nint zbar_scan_image (zbar_image_scanner_t *iscn,\n                     zbar_image_t *img)\n{\n    zbar_symbol_set_t *syms;\n    const uint8_t *data;\n    zbar_scanner_t *scn = iscn->scn;\n    unsigned w, h, cx1, cy1;\n    int density;\n\n    /* timestamp image\n     * FIXME prefer video timestamp\n     */\n    iscn->time = _zbar_timer_now();\n\n#ifdef ENABLE_QRCODE\n    _zbar_qr_reset(iscn->qr);\n#endif\n\n    /* image must be in grayscale format */\n    if(img->format != fourcc('Y','8','0','0') &&\n       img->format != fourcc('G','R','E','Y'))\n        return(-1);\n    iscn->img = img;\n\n    /* recycle previous scanner and image results */\n    zbar_image_scanner_recycle_image(iscn, img);\n    syms = iscn->syms;\n    if(!syms) {\n        syms = iscn->syms = _zbar_symbol_set_create();\n        STAT(syms_new);\n        zbar_symbol_set_ref(syms, 1);\n    }\n    else\n        zbar_symbol_set_ref(syms, 2);\n    img->syms = syms;\n\n    w = img->width;\n    h = img->height;\n    cx1 = img->crop_x + img->crop_w;\n    assert(cx1 <= w);\n    cy1 = img->crop_y + img->crop_h;\n    assert(cy1 <= h);\n    data = img->data;\n\n    zbar_image_write_png(img, \"debug.png\");\n    svg_open(\"debug.svg\", 0, 0, w, h);\n    svg_image(\"debug.png\", w, h);\n\n    zbar_scanner_new_scan(scn);\n\n    density = CFG(iscn, ZBAR_CFG_Y_DENSITY);\n    if(density > 0) {\n        const uint8_t *p = data;\n        int x = 0, y = 0;\n\n        int border = (((img->crop_h - 1) % density) + 1) / 2;\n        if(border > img->crop_h / 2)\n            border = img->crop_h / 2;\n        border += img->crop_y;\n        assert(border <= h);\n        svg_group_start(\"scanner\", 0, 1, 1, 0, 0);\n        iscn->dy = 0;\n\n        movedelta(img->crop_x, border);\n        iscn->v = y;\n\n        while(y < cy1) {\n            int cx0 = img->crop_x;;\n            zprintf(128, \"img_x+: %04d,%04d @%p\\n\", x, y, p);\n            svg_path_start(\"vedge\", 1. / 32, 0, y + 0.5);\n            iscn->dx = iscn->du = 1;\n            iscn->umin = cx0;\n            while(x < cx1) {\n                uint8_t d = *p;\n                movedelta(1, 0);\n                zbar_scan_y(scn, d);\n            }\n            ASSERT_POS;\n            quiet_border(iscn);\n            svg_path_end();\n\n            movedelta(-1, density);\n            iscn->v = y;\n            if(y >= cy1)\n                break;\n\n            zprintf(128, \"img_x-: %04d,%04d @%p\\n\", x, y, p);\n            svg_path_start(\"vedge\", -1. / 32, w, y + 0.5);\n            iscn->dx = iscn->du = -1;\n            iscn->umin = cx1;\n            while(x >= cx0) {\n                uint8_t d = *p;\n                movedelta(-1, 0);\n                zbar_scan_y(scn, d);\n            }\n            ASSERT_POS;\n            quiet_border(iscn);\n            svg_path_end();\n\n            movedelta(1, density);\n            iscn->v = y;\n        }\n        svg_group_end();\n    }\n    iscn->dx = 0;\n\n    density = CFG(iscn, ZBAR_CFG_X_DENSITY);\n    if(density > 0) {\n        const uint8_t *p = data;\n        int x = 0, y = 0;\n\n        int border = (((img->crop_w - 1) % density) + 1) / 2;\n        if(border > img->crop_w / 2)\n            border = img->crop_w / 2;\n        border += img->crop_x;\n        assert(border <= w);\n        svg_group_start(\"scanner\", 90, 1, -1, 0, 0);\n        movedelta(border, img->crop_y);\n        iscn->v = x;\n\n        while(x < cx1) {\n            int cy0 = img->crop_y;\n            zprintf(128, \"img_y+: %04d,%04d @%p\\n\", x, y, p);\n            svg_path_start(\"vedge\", 1. / 32, 0, x + 0.5);\n            iscn->dy = iscn->du = 1;\n            iscn->umin = cy0;\n            while(y < cy1) {\n                uint8_t d = *p;\n                movedelta(0, 1);\n                zbar_scan_y(scn, d);\n            }\n            ASSERT_POS;\n            quiet_border(iscn);\n            svg_path_end();\n\n            movedelta(density, -1);\n            iscn->v = x;\n            if(x >= cx1)\n                break;\n\n            zprintf(128, \"img_y-: %04d,%04d @%p\\n\", x, y, p);\n            svg_path_start(\"vedge\", -1. / 32, h, x + 0.5);\n            iscn->dy = iscn->du = -1;\n            iscn->umin = cy1;\n            while(y >= cy0) {\n                uint8_t d = *p;\n                movedelta(0, -1);\n                zbar_scan_y(scn, d);\n            }\n            ASSERT_POS;\n            quiet_border(iscn);\n            svg_path_end();\n\n            movedelta(density, 1);\n            iscn->v = x;\n        }\n        svg_group_end();\n    }\n    iscn->dy = 0;\n    iscn->img = NULL;\n\n#ifdef ENABLE_QRCODE\n    _zbar_qr_decode(iscn->qr, iscn, img);\n#endif\n\n    /* FIXME tmp hack to filter bad EAN results */\n    /* FIXME tmp hack to merge simple case EAN add-ons */\n    char filter = (!iscn->enable_cache &&\n                   (density == 1 || CFG(iscn, ZBAR_CFG_Y_DENSITY) == 1));\n    int nean = 0, naddon = 0;\n    if(syms->nsyms) {\n        zbar_symbol_t **symp;\n        for(symp = &syms->head; *symp; ) {\n            zbar_symbol_t *sym = *symp;\n            if(sym->cache_count <= 0 &&\n               ((sym->type < ZBAR_COMPOSITE && sym->type > ZBAR_PARTIAL) ||\n                sym->type == ZBAR_DATABAR ||\n                sym->type == ZBAR_DATABAR_EXP ||\n                sym->type == ZBAR_CODABAR))\n            {\n\t        if((sym->type == ZBAR_CODABAR || filter) && sym->quality < 4) {\n                    if(iscn->enable_cache) {\n                        /* revert cache update */\n                        zbar_symbol_t *entry = cache_lookup(iscn, sym);\n                        if(entry)\n                            entry->cache_count--;\n                        else\n                            assert(0);\n                    }\n\n                    /* recycle */\n                    *symp = sym->next;\n                    syms->nsyms--;\n                    sym->next = NULL;\n                    _zbar_image_scanner_recycle_syms(iscn, sym);\n                    continue;\n                }\n                else if(sym->type < ZBAR_COMPOSITE &&\n                        sym->type != ZBAR_ISBN10)\n                {\n                    if(sym->type > ZBAR_EAN5)\n                        nean++;\n                    else\n                        naddon++;\n                }\n            }\n            symp = &sym->next;\n        }\n\n        if(nean == 1 && naddon == 1 && iscn->ean_config) {\n            /* create container symbol for composite result */\n            zbar_symbol_t *ean = NULL, *addon = NULL;\n            for(symp = &syms->head; *symp; ) {\n                zbar_symbol_t *sym = *symp;\n                if(sym->type < ZBAR_COMPOSITE && sym->type > ZBAR_PARTIAL) {\n                    /* move to composite */\n                    *symp = sym->next;\n                    syms->nsyms--;\n                    sym->next = NULL;\n                    if(sym->type <= ZBAR_EAN5)\n                        addon = sym;\n                    else\n                        ean = sym;\n                }\n                else\n                    symp = &sym->next;\n            }\n            assert(ean);\n            assert(addon);\n\n            int datalen = ean->datalen + addon->datalen + 1;\n            zbar_symbol_t *ean_sym =\n                _zbar_image_scanner_alloc_sym(iscn, ZBAR_COMPOSITE, datalen);\n            ean_sym->orient = ean->orient;\n            ean_sym->syms = _zbar_symbol_set_create();\n            memcpy(ean_sym->data, ean->data, ean->datalen);\n            memcpy(ean_sym->data + ean->datalen,\n                   addon->data, addon->datalen + 1);\n            ean_sym->syms->head = ean;\n            ean->next = addon;\n            ean_sym->syms->nsyms = 2;\n            _zbar_image_scanner_add_sym(iscn, ean_sym);\n        }\n    }\n\n    if(syms->nsyms && iscn->handler)\n        iscn->handler(img, iscn->userdata);\n\n    svg_close();\n    return(syms->nsyms);\n}\n\n#ifdef DEBUG_SVG\n/* FIXME lame...*/\n# include \"svg.c\"\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/img_scanner.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _IMG_SCANNER_H_\n#define _IMG_SCANNER_H_\n\n#include <zbar.h>\n\n/* internal image scanner APIs for 2D readers */\n\nextern zbar_symbol_t *_zbar_image_scanner_alloc_sym(zbar_image_scanner_t*,\n                                                    zbar_symbol_type_t,\n                                                    int);\nextern void _zbar_image_scanner_add_sym(zbar_image_scanner_t*,\n                                        zbar_symbol_t*);\nextern void _zbar_image_scanner_recycle_syms(zbar_image_scanner_t*,\n                                             zbar_symbol_t*);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/jpeg.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <stdio.h>\n#include <jpeglib.h>\n#include <jerror.h>\n#include <setjmp.h>\n#include <assert.h> /* FIXME tmp debug */\n\n#undef HAVE_STDLIB_H\n#include <zbar.h>\n#include \"image.h\"\n#include \"video.h\"\n\n#define HAVE_LONGJMP\n#ifdef HAVE_LONGJMP\n\ntypedef struct errenv_s {\n    struct jpeg_error_mgr err;\n    int valid;\n    jmp_buf env;\n} errenv_t;\n\nvoid zbar_jpeg_error (j_common_ptr cinfo)\n{\n    errenv_t *jerr = (errenv_t*)cinfo->err;\n    assert(jerr->valid);\n    jerr->valid = 0;\n    longjmp(jerr->env, 1);\n    assert(0);\n}\n\n#endif\n\ntypedef struct zbar_src_mgr_s {\n    struct jpeg_source_mgr src;\n    const zbar_image_t *img;\n} zbar_src_mgr_t;\n\nstatic const JOCTET fake_eoi[2] = { 0xff, JPEG_EOI };\n\nvoid init_source (j_decompress_ptr cinfo)\n{\n    /* buffer/length refer to compressed data */\n    /* FIXME find img */\n    const zbar_image_t *img = ((zbar_src_mgr_t*)cinfo->src)->img;\n    cinfo->src->next_input_byte = img->data;\n    cinfo->src->bytes_in_buffer = img->datalen;\n}\n\nint fill_input_buffer (j_decompress_ptr cinfo)\n{\n    /* buffer underrun error case */\n    cinfo->src->next_input_byte = fake_eoi;\n    cinfo->src->bytes_in_buffer = 2;\n    return(1);\n}\n\nvoid skip_input_data (j_decompress_ptr cinfo,\n                      long num_bytes)\n{\n    if(num_bytes > 0) {\n        if (num_bytes < cinfo->src->bytes_in_buffer) {\n            cinfo->src->next_input_byte += num_bytes;\n            cinfo->src->bytes_in_buffer -= num_bytes;\n        }\n        else {\n            fill_input_buffer(cinfo);\n        }\n    }\n}\n\nvoid term_source (j_decompress_ptr cinfo)\n{\n    /* nothing todo */\n}\n\nstruct jpeg_decompress_struct * _zbar_jpeg_decomp_create (void)\n{\n    j_decompress_ptr cinfo = calloc(1, sizeof(struct jpeg_decompress_struct));\n    if(!cinfo)\n        return(NULL);\n\n    errenv_t *jerr = calloc(1, sizeof(errenv_t));\n    if(!jerr) {\n        free(cinfo);\n        return(NULL);\n    }\n\n    cinfo->err = jpeg_std_error(&jerr->err);\n    jerr->err.error_exit = zbar_jpeg_error;\n\n    jerr->valid = 1;\n    if(setjmp(jerr->env)) {\n        jpeg_destroy_decompress(cinfo);\n\n        /* FIXME TBD save error to errinfo_t */\n        (*cinfo->err->output_message)((j_common_ptr)cinfo);\n\n        free(jerr);\n        free(cinfo);\n        return(NULL);\n    }\n\n    jpeg_create_decompress(cinfo);\n\n    jerr->valid = 0;\n    return(cinfo);\n}\n\nvoid _zbar_jpeg_decomp_destroy (struct jpeg_decompress_struct *cinfo)\n{\n    if(cinfo->err) {\n        free(cinfo->err);\n        cinfo->err = NULL;\n    }\n    if(cinfo->src) {\n        free(cinfo->src);\n        cinfo->src = NULL;\n    }\n    /* FIXME can this error? */\n    jpeg_destroy_decompress(cinfo);\n    free(cinfo);\n}\n\n/* invoke libjpeg to decompress JPEG format to luminance plane */\nvoid _zbar_convert_jpeg_to_y (zbar_image_t *dst,\n                              const zbar_format_def_t *dstfmt,\n                              const zbar_image_t *src,\n                              const zbar_format_def_t *srcfmt)\n{\n    /* create decompressor, or use cached video stream decompressor */\n    errenv_t *jerr = NULL;\n    j_decompress_ptr cinfo;\n    if(!src->src)\n        cinfo = _zbar_jpeg_decomp_create();\n    else {\n        cinfo = src->src->jpeg;\n        assert(cinfo);\n    }\n    if(!cinfo)\n        goto error;\n\n    jerr = (errenv_t*)cinfo->err;\n    jerr->valid = 1;\n    if(setjmp(jerr->env)) {\n        /* FIXME TBD save error to src->src->err */\n        (*cinfo->err->output_message)((j_common_ptr)cinfo);\n        if(dst->data) {\n            free((void*)dst->data);\n            dst->data = NULL;\n        }\n        dst->datalen = 0;\n        goto error;\n    }\n\n    /* setup input image */\n    if(!cinfo->src) {\n        cinfo->src = calloc(1, sizeof(zbar_src_mgr_t));\n        cinfo->src->init_source = init_source;\n        cinfo->src->fill_input_buffer = fill_input_buffer;\n        cinfo->src->skip_input_data = skip_input_data;\n        cinfo->src->resync_to_restart = jpeg_resync_to_restart;\n        cinfo->src->term_source = term_source;\n    }\n    cinfo->src->next_input_byte = NULL;\n    cinfo->src->bytes_in_buffer = 0;\n    ((zbar_src_mgr_t*)cinfo->src)->img = src;\n\n    int rc = jpeg_read_header(cinfo, TRUE);\n    zprintf(30, \"header: %s\\n\", (rc == 2) ? \"tables-only\" : \"normal\");\n\n    /* supporting color with jpeg became...complicated,\n     * so we skip that for now\n     */\n    cinfo->out_color_space = JCS_GRAYSCALE;\n\n    /* FIXME set scaling based on dst->{width,height}\n     * then pass bigger buffer...\n     */\n\n    jpeg_start_decompress(cinfo);\n\n    /* adjust dst image parameters to match(?) decompressor */\n    if(dst->width < cinfo->output_width) {\n        dst->width = cinfo->output_width;\n        if(dst->crop_x + dst->crop_w > dst->width)\n            dst->crop_w = dst->width - dst->crop_x;\n    }\n    if(dst->height < cinfo->output_height) {\n        dst->height = cinfo->output_height;\n        if(dst->crop_y + dst->crop_h > dst->height)\n            dst->crop_h = dst->height - dst->crop_y;\n    }\n    unsigned long datalen = (cinfo->output_width *\n                             cinfo->output_height *\n                             cinfo->out_color_components);\n\n    zprintf(24, \"dst=%dx%d %lx src=%dx%d %lx dct=%x\\n\",\n            dst->width, dst->height, dst->datalen,\n            src->width, src->height, src->datalen, cinfo->dct_method);\n    if(!dst->data) {\n        dst->datalen = datalen;\n        dst->data = malloc(dst->datalen);\n        dst->cleanup = zbar_image_free_data;\n    }\n    else\n        assert(datalen <= dst->datalen);\n    if(!dst->data) return;\n\n    unsigned bpl = dst->width * cinfo->output_components;\n    JSAMPROW buf = (void*)dst->data;\n    JSAMPARRAY line = &buf;\n    for(; cinfo->output_scanline < cinfo->output_height; buf += bpl) {\n        jpeg_read_scanlines(cinfo, line, 1);\n        /* FIXME pad out to dst->width */\n    }\n\n    /* FIXME always do this? */\n    jpeg_finish_decompress(cinfo);\n\n error:\n    if(jerr)\n        jerr->valid = 0;\n    if(!src->src && cinfo)\n        /* cleanup only if we allocated locally */\n        _zbar_jpeg_decomp_destroy(cinfo);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/libzbar.rc",
    "content": "#include <config.h>\n#include <winver.h>\n\n#define STR(s) #s\n#define XSTR(s) STR(s)\n\nVS_VERSION_INFO VERSIONINFO\n    FILEVERSION LIB_VERSION_MAJOR, LIB_VERSION_MINOR,  LIB_VERSION_REVISION, 0\n    PRODUCTVERSION  ZBAR_VERSION_MAJOR, ZBAR_VERSION_MINOR,  0, 0\n    FILEOS VOS__WINDOWS32\n    FILETYPE VFT_DLL\n{\n    BLOCK \"StringFileInfo\" {\n        BLOCK \"040904E4\" {\n            VALUE \"ProductName\", \"ZBar Bar Code Reader\"\n            VALUE \"Company Name\", \"ZBar Bar Code Reader\"\n            VALUE \"InternalName\", \"libzbar\"\n            VALUE \"OriginalFilename\", \"libzbar-\" XSTR(LIB_VERSION_MAJOR) \".dll\"\n\n            VALUE \"FileVersion\", XSTR(LIB_VERSION_MAJOR) \".\" \\\n                XSTR(LIB_VERSION_MINOR) \".\" XSTR(LIB_VERSION_REVISION)\n            VALUE \"ProductVersion\", PACKAGE_VERSION\n\n            VALUE \"FileDescription\", \"Bar code reader library\"\n\n            VALUE \"LegalCopyright\", \"Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\"\n        }\n    }\n    BLOCK \"VarFileInfo\" {\n        VALUE \"Translation\", 0x0409, 0x04e4\n    }\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/mutex.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _ZBAR_MUTEX_H_\n#define _ZBAR_MUTEX_H_\n\n#include <config.h>\n\n/* simple platform mutex abstraction\n */\n\n#if defined(_WIN32)\n\n# include <windows.h>\n\n# define DEBUG_LOCKS\n# ifdef DEBUG_LOCKS\n\ntypedef struct zbar_mutex_s {\n    int count;\n    CRITICAL_SECTION mutex;\n} zbar_mutex_t;\n\nstatic inline int _zbar_mutex_init (zbar_mutex_t *lock)\n{\n    lock->count = 1;\n    InitializeCriticalSection(&lock->mutex);\n    return(0);\n}\n\nstatic inline void _zbar_mutex_destroy (zbar_mutex_t *lock)\n{\n    DeleteCriticalSection(&lock->mutex);\n}\n\nstatic inline int _zbar_mutex_lock (zbar_mutex_t *lock)\n{\n    EnterCriticalSection(&lock->mutex);\n    if(lock->count++ < 1)\n        assert(0);\n    return(0);\n}\n\nstatic inline int _zbar_mutex_unlock (zbar_mutex_t *lock)\n{\n    if(lock->count-- <= 1)\n        assert(0);\n    LeaveCriticalSection(&lock->mutex);\n    return(0);\n}\n\n# else\n\ntypedef CRITICAL_SECTION zbar_mutex_t;\n\nstatic inline int _zbar_mutex_init (zbar_mutex_t *lock)\n{\n    InitializeCriticalSection(lock);\n    return(0);\n}\n\nstatic inline void _zbar_mutex_destroy (zbar_mutex_t *lock)\n{\n    DeleteCriticalSection(lock);\n}\n\nstatic inline int _zbar_mutex_lock (zbar_mutex_t *lock)\n{\n    EnterCriticalSection(lock);\n    return(0);\n}\n\nstatic inline int _zbar_mutex_unlock (zbar_mutex_t *lock)\n{\n    LeaveCriticalSection(lock);\n    return(0);\n}\n\n# endif\n\n\n#elif defined(HAVE_LIBPTHREAD)\n\n# include <pthread.h>\n\ntypedef pthread_mutex_t zbar_mutex_t;\n\nstatic inline int _zbar_mutex_init (zbar_mutex_t *lock)\n{\n# ifdef DEBUG_LOCKS\n    pthread_mutexattr_t attr;\n    pthread_mutexattr_init(&attr);\n    pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);\n    int rc = pthread_mutex_init(lock, &attr);\n    pthread_mutexattr_destroy(&attr);\n    return(rc);\n# else\n    return(pthread_mutex_init(lock, NULL));\n# endif\n}\n\nstatic inline void _zbar_mutex_destroy (zbar_mutex_t *lock)\n{\n    pthread_mutex_destroy(lock);\n}\n\nstatic inline int _zbar_mutex_lock (zbar_mutex_t *lock)\n{\n    int rc = pthread_mutex_lock(lock);\n# ifdef DEBUG_LOCKS\n    assert(!rc);\n# endif\n    /* FIXME save system code */\n    /*rc = err_capture(proc, SEV_ERROR, ZBAR_ERR_LOCKING, __func__,\n                       \"unable to lock processor\");*/\n    return(rc);\n}\n\nstatic inline int _zbar_mutex_unlock (zbar_mutex_t *lock)\n{\n    int rc = pthread_mutex_unlock(lock);\n# ifdef DEBUG_LOCKS\n    assert(!rc);\n# endif\n    /* FIXME save system code */\n    return(rc);\n}\n\n\n#else\n\ntypedef int zbar_mutex_t[0];\n\n#define _zbar_mutex_init(l) -1\n#define _zbar_mutex_destroy(l)\n#define _zbar_mutex_lock(l) 0\n#define _zbar_mutex_unlock(l) 0\n\n#endif\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/processor/lock.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"processor.h\"\n#include <assert.h>\n\n/* the processor api lock is a recursive mutex with added capabilities\n * to completely drop all lock levels before blocking and atomically\n * unblock a waiting set.  the lock is implemented using a variation\n * of the \"specific notification pattern\" [cargill], which makes it\n * easy to provide these features across platforms with consistent,\n * predictable semantics.  probably overkill, but additional overhead\n * associated with this mechanism should fall in the noise, as locks\n * are only exchanged O(frame/image)\n *\n * [cargill]\n * http://www.profcon.com/profcon/cargill/jgf/9809/SpecificNotification.html\n */\n\nstatic inline proc_waiter_t *proc_waiter_queue (zbar_processor_t *proc)\n{\n    proc_waiter_t *waiter = proc->free_waiter;\n    if(waiter) {\n        proc->free_waiter = waiter->next;\n        waiter->events = 0;\n    }\n    else {\n        waiter = calloc(1, sizeof(proc_waiter_t));\n        _zbar_event_init(&waiter->notify);\n    }\n\n    waiter->next = NULL;\n    waiter->requester = _zbar_thread_self();\n\n    if(proc->wait_head)\n        proc->wait_tail->next = waiter;\n    else\n        proc->wait_head = waiter;\n    proc->wait_tail = waiter;\n    return(waiter);\n}\n\nstatic inline proc_waiter_t *proc_waiter_dequeue (zbar_processor_t *proc)\n{\n    proc_waiter_t *prev = proc->wait_next, *waiter;\n    if(prev)\n        waiter = prev->next;\n    else\n        waiter = proc->wait_head;\n    while(waiter && (waiter->events & EVENTS_PENDING)) {\n        prev = waiter;\n        proc->wait_next = waiter;\n        waiter = waiter->next;\n    }\n\n    if(waiter) {\n        if(prev)\n            prev->next = waiter->next;\n        else\n            proc->wait_head = waiter->next;\n        if(!waiter->next)\n            proc->wait_tail = prev;\n        waiter->next = NULL;\n\n        proc->lock_level = 1;\n        proc->lock_owner = waiter->requester;\n    }\n    return(waiter);\n}\n\nstatic inline void proc_waiter_release (zbar_processor_t *proc,\n                                        proc_waiter_t *waiter)\n{\n    if(waiter) {\n        waiter->next = proc->free_waiter;\n        proc->free_waiter = waiter;\n    }\n}\n\nint _zbar_processor_lock (zbar_processor_t *proc)\n{\n    if(!proc->lock_level) {\n        proc->lock_owner = _zbar_thread_self();\n        proc->lock_level = 1;\n        return(0);\n    }\n\n    if(_zbar_thread_is_self(proc->lock_owner)) {\n        proc->lock_level++;\n        return(0);\n    }\n\n    proc_waiter_t *waiter = proc_waiter_queue(proc);\n    _zbar_event_wait(&waiter->notify, &proc->mutex, NULL);\n\n    assert(proc->lock_level == 1);\n    assert(_zbar_thread_is_self(proc->lock_owner));\n\n    proc_waiter_release(proc, waiter);\n    return(0);\n}\n\nint _zbar_processor_unlock (zbar_processor_t *proc,\n                            int all)\n{\n    assert(proc->lock_level > 0);\n    assert(_zbar_thread_is_self(proc->lock_owner));\n\n    if(all)\n        proc->lock_level = 0;\n    else\n        proc->lock_level--;\n\n    if(!proc->lock_level) {\n        proc_waiter_t *waiter = proc_waiter_dequeue(proc);\n        if(waiter)\n            _zbar_event_trigger(&waiter->notify);\n    }\n    return(0);\n}\n\nvoid _zbar_processor_notify (zbar_processor_t *proc,\n                             unsigned events)\n{\n    proc->wait_next = NULL;\n    proc_waiter_t *waiter;\n    for(waiter = proc->wait_head; waiter; waiter = waiter->next)\n        waiter->events = ((waiter->events & ~events) |\n                          (events & EVENT_CANCELED));\n\n    if(!proc->lock_level) {\n        waiter = proc_waiter_dequeue(proc);\n        if(waiter)\n            _zbar_event_trigger(&waiter->notify);\n    }\n}\n\nstatic inline int proc_wait_unthreaded (zbar_processor_t *proc,\n                                        proc_waiter_t *waiter,\n                                        zbar_timer_t *timeout)\n{\n    int blocking = proc->streaming && zbar_video_get_fd(proc->video) < 0;\n    _zbar_mutex_unlock(&proc->mutex);\n\n    int rc = 1;\n    while(rc > 0 && (waiter->events & EVENTS_PENDING)) {\n        /* FIXME lax w/the locking (though shouldn't matter...) */\n        if(blocking) {\n            zbar_image_t *img = zbar_video_next_image(proc->video);\n            if(!img) {\n                rc = -1;\n                break;\n            }\n\n            /* FIXME reacquire API lock! (refactor w/video thread?) */\n            _zbar_mutex_lock(&proc->mutex);\n            _zbar_process_image(proc, img);\n            zbar_image_destroy(img);\n            _zbar_mutex_unlock(&proc->mutex);\n        }\n        int reltime = _zbar_timer_check(timeout);\n        if(blocking && (reltime < 0 || reltime > MAX_INPUT_BLOCK))\n            reltime = MAX_INPUT_BLOCK;\n        rc = _zbar_processor_input_wait(proc, NULL, reltime);\n    }\n    _zbar_mutex_lock(&proc->mutex);\n    return(rc);\n}\n\nint _zbar_processor_wait (zbar_processor_t *proc,\n                          unsigned events,\n                          zbar_timer_t *timeout)\n{\n    _zbar_mutex_lock(&proc->mutex);\n    int save_level = proc->lock_level;\n    proc_waiter_t *waiter = proc_waiter_queue(proc);\n    waiter->events = events & EVENTS_PENDING;\n\n    _zbar_processor_unlock(proc, 1);\n    int rc;\n    if(proc->threaded)\n        rc = _zbar_event_wait(&waiter->notify, &proc->mutex, timeout);\n    else\n        rc = proc_wait_unthreaded(proc, waiter, timeout);\n\n    if(rc <= 0 || !proc->threaded) {\n        /* reacquire api lock */\n        waiter->events &= EVENT_CANCELED;\n        proc->wait_next = NULL;\n        if(!proc->lock_level) {\n            proc_waiter_t *w = proc_waiter_dequeue(proc);\n            assert(w == waiter);\n        }\n        else\n            _zbar_event_wait(&waiter->notify, &proc->mutex, NULL);\n    }\n    if(rc > 0 && (waiter->events & EVENT_CANCELED))\n        rc = -1;\n\n    assert(proc->lock_level == 1);\n    assert(_zbar_thread_is_self(proc->lock_owner));\n\n    proc->lock_level = save_level;\n    proc_waiter_release(proc, waiter);\n    _zbar_mutex_unlock(&proc->mutex);\n    return(rc);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/processor/null.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"processor.h\"\n\nstatic inline int null_error (void *m,\n                              const char *func)\n{\n    return(err_capture(m, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, func,\n                       \"not compiled with output window support\"));\n}\n\nint _zbar_processor_open (zbar_processor_t *proc,\n                          char *name,\n                          unsigned w,\n                          unsigned h)\n{\n    return(null_error(proc, __func__));\n}\n\nint _zbar_processor_close (zbar_processor_t *proc)\n{\n    return(null_error(proc, __func__));\n}\n\nint _zbar_processor_set_visible (zbar_processor_t *proc,\n                                 int vis)\n{\n    return(null_error(proc, __func__));\n}\n\nint _zbar_processor_set_size (zbar_processor_t *proc,\n                              unsigned width,\n                              unsigned height)\n{\n    return(null_error(proc, __func__));\n}\n\nint _zbar_processor_invalidate (zbar_processor_t *proc)\n{\n    return(null_error(proc, __func__));\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/processor/posix.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"processor.h\"\n#include \"posix.h\"\n#include <unistd.h>\n#include <assert.h>\n#include <errno.h>\n\n\nstatic inline int proc_sleep (int timeout)\n{\n    assert(timeout > 0);\n    struct timespec sleepns, remns;\n    sleepns.tv_sec = timeout / 1000;\n    sleepns.tv_nsec = (timeout % 1000) * 1000000;\n    while(nanosleep(&sleepns, &remns) && errno == EINTR)\n        sleepns = remns;\n    return(1);\n}\n\nint _zbar_event_init (zbar_event_t *event)\n{\n    event->state = 0;\n    event->pollfd = -1;\n#ifdef HAVE_LIBPTHREAD\n    pthread_cond_init(&event->cond, NULL);\n#endif\n    return(0);\n}\n\nvoid _zbar_event_destroy (zbar_event_t *event)\n{\n    event->state = -1;\n    event->pollfd = -1;\n#ifdef HAVE_LIBPTHREAD\n    pthread_cond_destroy(&event->cond);\n#endif\n}\n\n/* lock must be held */\nvoid _zbar_event_trigger (zbar_event_t *event)\n{\n    event->state = 1;\n#ifdef HAVE_LIBPTHREAD\n    pthread_cond_broadcast(&event->cond);\n#endif\n    if(event->pollfd >= 0) {\n        unsigned i = 0; /* unused */\n        if(write(event->pollfd, &i, sizeof(unsigned)) < 0)\n            perror(\"\");\n        event->pollfd = -1;\n    }\n}\n\n#ifdef HAVE_LIBPTHREAD\n\n/* lock must be held */\nint _zbar_event_wait (zbar_event_t *event,\n                      zbar_mutex_t *lock,\n                      zbar_timer_t *timeout)\n{\n    int rc = 0;\n    while(!rc && !event->state) {\n        if(!timeout)\n            rc = pthread_cond_wait(&event->cond, lock);\n        else {\n            struct timespec *timer;\n# if _POSIX_TIMERS > 0\n            timer = timeout;\n# else\n            struct timespec tmp;\n            tmp.tv_sec = timeout->tv_sec;\n            tmp.tv_nsec = timeout->tv_usec * 1000;\n            timer = &tmp;\n# endif\n            rc = pthread_cond_timedwait(&event->cond, lock, timer);\n        }\n    }\n\n    /* consume/reset event */\n    event->state = 0;\n\n    if(!rc)\n        return(1); /* got event */\n    if(rc == ETIMEDOUT)\n        return(0); /* timed out */\n    return(-1); /* error (FIXME save info) */\n}\n\nint _zbar_thread_start (zbar_thread_t *thr,\n                        zbar_thread_proc_t *proc,\n                        void *arg,\n                        zbar_mutex_t *lock)\n{\n    if(thr->started || thr->running)\n        return(-1/*FIXME*/);\n    thr->started = 1;\n    _zbar_event_init(&thr->notify);\n    _zbar_event_init(&thr->activity);\n\n    int rc = 0;\n    _zbar_mutex_lock(lock);\n    if(pthread_create(&thr->tid, NULL, proc, arg) ||\n       _zbar_event_wait(&thr->activity, lock, NULL) < 0 ||\n       !thr->running) {\n        thr->started = 0;\n        _zbar_event_destroy(&thr->notify);\n        _zbar_event_destroy(&thr->activity);\n        /*rc = err_capture_num(proc, SEV_ERROR, ZBAR_ERR_SYSTEM,\n          __func__, \"spawning thread\", rc);*/\n        rc = -1/*FIXME*/;\n    }\n    _zbar_mutex_unlock(lock);\n    return(rc);\n}\n\nint _zbar_thread_stop (zbar_thread_t *thr,\n                       zbar_mutex_t *lock)\n{\n    if(thr->started) {\n        thr->started = 0;\n        _zbar_event_trigger(&thr->notify);\n        while(thr->running)\n            /* FIXME time out and abandon? */\n            _zbar_event_wait(&thr->activity, lock, NULL);\n        pthread_join(thr->tid, NULL);\n        _zbar_event_destroy(&thr->notify);\n        _zbar_event_destroy(&thr->activity);\n    }\n    return(0);\n}\n\n#else\n\nint _zbar_event_wait (zbar_event_t *event,\n                      zbar_mutex_t *lock,\n                      zbar_timer_t *timeout)\n{\n    int rc = !event->state;\n    if(rc) {\n        if(!timeout)\n            /* FIXME was that error or hang? */\n            return(-1);\n\n        int sleep = _zbar_timer_check(timeout);\n        if(sleep)\n            proc_sleep(sleep);\n    }\n\n    rc = !event->state;\n\n    /* consume/reset event */\n    event->state = 0;\n\n    return(rc);\n}\n\n#endif\n\n/* used by poll interface.  lock is already held */\nstatic int proc_video_handler (zbar_processor_t *proc,\n                               int i)\n{\n    _zbar_mutex_lock(&proc->mutex);\n    _zbar_processor_lock(proc);\n    _zbar_mutex_unlock(&proc->mutex);\n\n    zbar_image_t *img = NULL;\n    if(proc->streaming) {\n        /* not expected to block */\n        img = zbar_video_next_image(proc->video);\n        if(img)\n            _zbar_process_image(proc, img);\n    }\n\n    _zbar_mutex_lock(&proc->mutex);\n    _zbar_processor_unlock(proc, 0);\n    _zbar_mutex_unlock(&proc->mutex);\n    if(img)\n        zbar_image_destroy(img);\n    return(0);\n}\n\nstatic inline void proc_cache_polling (processor_state_t *state)\n{\n    /* make a thread-local copy of polling data */\n    int n = state->thr_polling.num = state->polling.num;\n    alloc_polls(&state->thr_polling);\n    memcpy(state->thr_polling.fds, state->polling.fds,\n           n * sizeof(struct pollfd));\n    memcpy(state->thr_polling.handlers, state->polling.handlers,\n           n * sizeof(poll_handler_t*));\n}\n\nstatic int proc_kick_handler (zbar_processor_t *proc,\n                              int i)\n{\n    processor_state_t *state = proc->state;\n    zprintf(5, \"kicking %d fds\\n\", state->polling.num);\n\n    unsigned junk[2];\n    int rc = read(state->kick_fds[0], junk, 2 * sizeof(unsigned));\n\n    assert(proc->threaded);\n    _zbar_mutex_lock(&proc->mutex);\n    proc_cache_polling(proc->state);\n    _zbar_mutex_unlock(&proc->mutex);\n    return(rc);\n}\n\nstatic inline int proc_poll_inputs (zbar_processor_t *proc,\n                                    int timeout)\n{\n    processor_state_t *state = proc->state;\n    if(state->pre_poll_handler)\n        state->pre_poll_handler(proc, -1);\n\n    poll_desc_t *p = &state->thr_polling;\n    assert(p->num);\n    int rc = poll(p->fds, p->num, timeout);\n    if(rc <= 0)\n        /* FIXME detect and handle fatal errors (somehow) */\n        return(rc);\n    int i;\n    for(i = p->num - 1; i >= 0; i--)\n        if(p->fds[i].revents) {\n            if(p->handlers[i])\n                p->handlers[i](proc, i);\n            p->fds[i].revents = 0; /* debug */\n            rc--;\n        }\n    assert(!rc);\n    return(1);\n}\n\nint _zbar_processor_input_wait (zbar_processor_t *proc,\n                                zbar_event_t *event,\n                                int timeout)\n{\n    processor_state_t *state = proc->state;\n    if(state->thr_polling.num) {\n        if(event) {\n            _zbar_mutex_lock(&proc->mutex);\n            event->pollfd = state->kick_fds[1];\n            _zbar_mutex_unlock(&proc->mutex);\n        }\n        return(proc_poll_inputs(proc, timeout));\n    }\n    else if(timeout)\n        return(proc_sleep(timeout));\n    return(-1);\n}\n\nint _zbar_processor_init (zbar_processor_t *proc)\n{\n    processor_state_t *state = proc->state =\n        calloc(1, sizeof(processor_state_t));\n    state->kick_fds[0] = state->kick_fds[1] = -1;\n\n    if(proc->threaded) {\n        /* FIXME check errors */\n        if(pipe(state->kick_fds))\n            return(err_capture(proc, SEV_FATAL, ZBAR_ERR_SYSTEM, __func__,\n                               \"failed to open pipe\"));\n        add_poll(proc, state->kick_fds[0], proc_kick_handler);\n        proc_cache_polling(proc->state);\n    }\n    return(0);\n}\n\nint _zbar_processor_cleanup (zbar_processor_t *proc)\n{\n    processor_state_t *state = proc->state;\n    if(proc->threaded) {\n        close(state->kick_fds[0]);\n        close(state->kick_fds[1]);\n        state->kick_fds[0] = state->kick_fds[1] = -1;\n    }\n    if(state->polling.fds) {\n        free(state->polling.fds);\n        state->polling.fds = NULL;\n        if(!proc->threaded)\n            state->thr_polling.fds = NULL;\n    }\n    if(state->polling.handlers) {\n        free(state->polling.handlers);\n        state->polling.handlers = NULL;\n        if(!proc->threaded)\n            state->thr_polling.handlers = NULL;\n    }\n    if(state->thr_polling.fds) {\n        free(state->thr_polling.fds);\n        state->thr_polling.fds = NULL;\n    }\n    if(state->thr_polling.handlers) {\n        free(state->thr_polling.handlers);\n        state->thr_polling.handlers = NULL;\n    }\n    free(proc->state);\n    proc->state = NULL;\n    return(0);\n}\n\nint _zbar_processor_enable (zbar_processor_t *proc)\n{\n    int vid_fd = zbar_video_get_fd(proc->video);\n    if(vid_fd < 0)\n        return(0);\n\n    if(proc->streaming)\n        add_poll(proc, vid_fd, proc_video_handler);\n    else\n        remove_poll(proc, vid_fd);\n    /* FIXME failure recovery? */\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/processor/posix.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _PROCESSOR_POSIX_H_\n#define _PROCESSOR_POSIX_H_\n\n#include \"processor.h\"\n\n#ifdef HAVE_POLL_H\n# include <poll.h>\n#endif\n\n#ifdef HAVE_POLL_H\ntypedef int (poll_handler_t)(zbar_processor_t*, int);\n\n/* poll information */\ntypedef struct poll_desc_s {\n    int num;                            /* number of descriptors */\n    struct pollfd *fds;                 /* poll descriptors */\n    poll_handler_t **handlers;          /* poll handlers */\n} poll_desc_t;\n#endif\n\nstruct processor_state_s {\n#ifdef HAVE_POLL_H\n    poll_desc_t polling;                /* polling registration */\n    poll_desc_t thr_polling;            /* thread copy */\n#endif\n    int kick_fds[2];                    /* poll kicker */\n    poll_handler_t *pre_poll_handler;   /* special case */\n};\n\n\n#ifdef HAVE_POLL_H\nstatic inline int alloc_polls (volatile poll_desc_t *p)\n{\n    p->fds = realloc(p->fds, p->num * sizeof(struct pollfd));\n    p->handlers = realloc(p->handlers, p->num * sizeof(poll_handler_t*));\n    /* FIXME should check for ENOMEM */\n    return(0);\n}\n\nstatic inline int add_poll (zbar_processor_t *proc,\n                            int fd,\n                            poll_handler_t *handler)\n{\n    processor_state_t *state = proc->state;\n\n    _zbar_mutex_lock(&proc->mutex);\n\n    poll_desc_t *polling = &state->polling;\n    unsigned i = polling->num++;\n    zprintf(5, \"[%d] fd=%d handler=%p\\n\", i, fd, handler);\n    if(!alloc_polls(polling)) {\n        memset(&polling->fds[i], 0, sizeof(struct pollfd));\n        polling->fds[i].fd = fd;\n        polling->fds[i].events = POLLIN;\n        polling->handlers[i] = handler;\n    }\n    else\n        i = -1;\n\n    _zbar_mutex_unlock(&proc->mutex);\n\n    if(proc->input_thread.started) {\n        assert(state->kick_fds[1] >= 0);\n        if(write(state->kick_fds[1], &i /* unused */, sizeof(unsigned)) < 0)\n            return(-1);\n    }\n    else if(!proc->threaded) {\n        state->thr_polling.num = polling->num;\n        state->thr_polling.fds = polling->fds;\n        state->thr_polling.handlers = polling->handlers;\n    }\n    return(i);\n}\n\nstatic inline int remove_poll (zbar_processor_t *proc,\n                               int fd)\n{\n    processor_state_t *state = proc->state;\n\n    _zbar_mutex_lock(&proc->mutex);\n\n    poll_desc_t *polling = &state->polling;\n    int i;\n    for(i = polling->num - 1; i >= 0; i--)\n        if(polling->fds[i].fd == fd)\n            break;\n    zprintf(5, \"[%d] fd=%d n=%d\\n\", i, fd, polling->num);\n\n    if(i >= 0) {\n        if(i + 1 < polling->num) {\n            int n = polling->num - i - 1;\n            memmove(&polling->fds[i], &polling->fds[i + 1],\n                    n * sizeof(struct pollfd));\n            memmove(&polling->handlers[i], &polling->handlers[i + 1],\n                    n * sizeof(poll_handler_t));\n        }\n        polling->num--;\n        i = alloc_polls(polling);\n    }\n\n    _zbar_mutex_unlock(&proc->mutex);\n\n    if(proc->input_thread.started) {\n        if(write(state->kick_fds[1], &i /* unused */, sizeof(unsigned)) < 0)\n            return(-1);\n    }\n    else if(!proc->threaded) {\n        state->thr_polling.num = polling->num;\n        state->thr_polling.fds = polling->fds;\n        state->thr_polling.handlers = polling->handlers;\n    }\n    return(i);\n}\n#endif\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/processor/win.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"processor.h\"\n#include <windows.h>\n#include <assert.h>\n\n#define WIN_STYLE (WS_CAPTION | \\\n                   WS_SYSMENU | \\\n                   WS_THICKFRAME | \\\n                   WS_MINIMIZEBOX | \\\n                   WS_MAXIMIZEBOX)\n#define EXT_STYLE (WS_EX_APPWINDOW | WS_EX_OVERLAPPEDWINDOW)\n\n\nint _zbar_event_init (zbar_event_t *event)\n{\n    *event = CreateEvent(NULL, 0, 0, NULL);\n    return((*event) ? 0 : -1);\n}\n\nvoid _zbar_event_destroy (zbar_event_t *event)\n{\n    if(*event) {\n        CloseHandle(*event);\n        *event = NULL;\n    }\n}\n\nvoid _zbar_event_trigger (zbar_event_t *event)\n{\n    SetEvent(*event);\n}\n\n/* lock must be held */\nint _zbar_event_wait (zbar_event_t *event,\n                      zbar_mutex_t *lock,\n                      zbar_timer_t *timeout)\n{\n    if(lock)\n        _zbar_mutex_unlock(lock);\n    int rc = WaitForSingleObject(*event, _zbar_timer_check(timeout));\n    if(lock)\n        _zbar_mutex_lock(lock);\n\n    if(!rc)\n        return(1); /* got event */\n    if(rc == WAIT_TIMEOUT)\n        return(0); /* timed out */\n    return(-1); /* error (FIXME save info) */\n}\n\nint _zbar_thread_start (zbar_thread_t *thr,\n                        zbar_thread_proc_t *proc,\n                        void *arg,\n                        zbar_mutex_t *lock)\n{\n    if(thr->started || thr->running)\n        return(-1/*FIXME*/);\n    thr->started = 1;\n    _zbar_event_init(&thr->notify);\n    _zbar_event_init(&thr->activity);\n\n    HANDLE hthr = CreateThread(NULL, 0, proc, arg, 0, NULL);\n    int rc = (!hthr ||\n              _zbar_event_wait(&thr->activity, NULL, NULL) < 0 ||\n              !thr->running);\n    CloseHandle(hthr);\n    if(rc) {\n        thr->started = 0;\n        _zbar_event_destroy(&thr->notify);\n        _zbar_event_destroy(&thr->activity);\n        return(-1/*FIXME*/);\n    }\n    return(0);\n}\n\nint _zbar_thread_stop (zbar_thread_t *thr,\n                       zbar_mutex_t *lock)\n{\n    if(thr->started) {\n        thr->started = 0;\n        _zbar_event_trigger(&thr->notify);\n        while(thr->running)\n            /* FIXME time out and abandon? */\n            _zbar_event_wait(&thr->activity, lock, NULL);\n        _zbar_event_destroy(&thr->notify);\n        _zbar_event_destroy(&thr->activity);\n    }\n    return(0);\n}\n\n\nstatic LRESULT CALLBACK win_handle_event (HWND hwnd,\n                                          UINT message,\n                                          WPARAM wparam,\n                                          LPARAM lparam)\n{\n    zbar_processor_t *proc =\n        (zbar_processor_t*)GetWindowLongPtr(hwnd, GWL_USERDATA);\n    /* initialized during window creation */\n    if(message == WM_NCCREATE) {\n        proc = ((LPCREATESTRUCT)lparam)->lpCreateParams;\n        assert(proc);\n        SetWindowLongPtr(hwnd, GWL_USERDATA, (LONG_PTR)proc);\n        proc->display = hwnd;\n\n        zbar_window_attach(proc->window, proc->display, proc->xwin);\n    }\n    else if(!proc)\n        return(DefWindowProc(hwnd, message, wparam, lparam));\n\n    switch(message) {\n\n    case WM_SIZE: {\n        RECT r;\n        GetClientRect(hwnd, &r);\n        zprintf(3, \"WM_SIZE %ldx%ld\\n\", r.right, r.bottom);\n        assert(proc);\n        zbar_window_resize(proc->window, r.right, r.bottom);\n        InvalidateRect(hwnd, NULL, 0);\n        return(0);\n    }\n\n    case WM_PAINT: {\n        PAINTSTRUCT ps;\n        BeginPaint(hwnd, &ps);\n        if(zbar_window_redraw(proc->window)) {\n            HDC hdc = GetDC(hwnd);\n            RECT r;\n            GetClientRect(hwnd, &r);\n            FillRect(hdc, &r, GetStockObject(BLACK_BRUSH));\n            ReleaseDC(hwnd, hdc);\n        }\n        EndPaint(hwnd, &ps);\n        return(0);\n    }\n\n    case WM_CHAR: {\n        _zbar_processor_handle_input(proc, wparam);\n        return(0);\n    }\n\n    case WM_LBUTTONDOWN: {\n        _zbar_processor_handle_input(proc, 1);\n        return(0);\n    }\n\n    case WM_MBUTTONDOWN: {\n        _zbar_processor_handle_input(proc, 2);\n        return(0);\n    }\n\n    case WM_RBUTTONDOWN: {\n        _zbar_processor_handle_input(proc, 3);\n        return(0);\n    }\n\n    case WM_CLOSE: {\n        zprintf(3, \"WM_CLOSE\\n\");\n        _zbar_processor_handle_input(proc, -1);\n        return(1);\n    }\n\n    case WM_DESTROY: {\n        zprintf(3, \"WM_DESTROY\\n\");\n        proc->display = NULL;\n        zbar_window_attach(proc->window, NULL, 0);\n        return(0);\n    }\n    }\n    return(DefWindowProc(hwnd, message, wparam, lparam));\n}\n\nstatic inline int win_handle_events (zbar_processor_t *proc)\n{\n    int rc = 0;\n    while(1) {\n        MSG msg;\n        rc = PeekMessage(&msg, proc->display, 0, 0, PM_NOYIELD | PM_REMOVE);\n        if(!rc)\n            return(0);\n        if(rc < 0)\n            return(err_capture(proc, SEV_ERROR, ZBAR_ERR_WINAPI, __func__,\n                               \"failed to obtain event\"));\n\n        TranslateMessage(&msg);\n        DispatchMessage(&msg);\n    }\n}\n\nint _zbar_processor_init (zbar_processor_t *proc)\n{\n    return(0);\n}\n\nint _zbar_processor_cleanup (zbar_processor_t *proc)\n{\n    return(0);\n}\n\nint _zbar_processor_input_wait (zbar_processor_t *proc,\n                                zbar_event_t *event,\n                                int timeout)\n{\n    int n = (event) ? 1 : 0;\n    int rc = MsgWaitForMultipleObjects(n, event, 0, timeout, QS_ALLINPUT);\n\n    if(rc == n) {\n        if(win_handle_events(proc) < 0)\n            return(-1);\n        return(1);\n    }\n    if(!rc)\n        return(1);\n    if(rc == WAIT_TIMEOUT)\n        return(0);\n    return(-1);\n}\n\nint _zbar_processor_enable (zbar_processor_t *proc)\n{\n    return(0);\n}\n\n\nstatic inline ATOM win_register_class (HINSTANCE hmod)\n{\n    BYTE and_mask[1] = { 0xff };\n    BYTE xor_mask[1] = { 0x00 };\n\n    WNDCLASSEX wc = { sizeof(WNDCLASSEX), 0, };\n    wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);\n    wc.hInstance = hmod;\n    wc.lpfnWndProc = win_handle_event;\n    wc.lpszClassName = \"_ZBar Class\";\n    wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;\n    wc.hCursor = CreateCursor(hmod, 0, 0, 1, 1, and_mask, xor_mask);\n\n    return(RegisterClassEx(&wc));\n}\n\nint _zbar_processor_open (zbar_processor_t *proc,\n                          char *title,\n                          unsigned width,\n                          unsigned height)\n{\n    HMODULE hmod = NULL;\n    if(!GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS |\n                          GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT,\n                          (void*)_zbar_processor_open, (HINSTANCE*)&hmod))\n        return(err_capture(proc, SEV_ERROR, ZBAR_ERR_WINAPI, __func__,\n                           \"failed to obtain module handle\"));\n\n    ATOM wca = win_register_class(hmod);\n    if(!wca)\n        return(err_capture(proc, SEV_ERROR, ZBAR_ERR_WINAPI, __func__,\n                           \"failed to register window class\"));\n\n    RECT r = { 0, 0, width, height };\n    AdjustWindowRectEx(&r, WIN_STYLE, 0, EXT_STYLE);\n    proc->display = CreateWindowEx(EXT_STYLE, (LPCTSTR)(long)wca,\n                                   \"ZBar\", WIN_STYLE,\n                                   CW_USEDEFAULT, CW_USEDEFAULT,\n                                   r.right - r.left, r.bottom - r.top,\n                                   NULL, NULL, hmod, proc);\n\n    if(!proc->display)\n        return(err_capture(proc, SEV_ERROR, ZBAR_ERR_WINAPI, __func__,\n                           \"failed to open window\"));\n    return(0);\n}\n\nint _zbar_processor_close (zbar_processor_t *proc)\n{\n    if(proc->display) {\n        DestroyWindow(proc->display);\n        proc->display = NULL;\n    }\n    return(0);\n}\n\nint _zbar_processor_set_visible (zbar_processor_t *proc,\n                                 int visible)\n{\n    ShowWindow(proc->display, (visible) ? SW_SHOWNORMAL : SW_HIDE);\n    if(visible)\n        InvalidateRect(proc->display, NULL, 0);\n    /* no error conditions */\n    return(0);\n}\n\nint _zbar_processor_set_size (zbar_processor_t *proc,\n                              unsigned width,\n                              unsigned height)\n{\n    RECT r = { 0, 0, width, height };\n    AdjustWindowRectEx(&r, GetWindowLong(proc->display, GWL_STYLE),\n                       0, GetWindowLong(proc->display, GWL_EXSTYLE));\n    if(!SetWindowPos(proc->display, NULL,\n                     0, 0, r.right - r.left, r.bottom - r.top,\n                     SWP_NOACTIVATE | SWP_NOMOVE |\n                     SWP_NOZORDER | SWP_NOREPOSITION))\n        return(-1/*FIXME*/);\n\n    return(0);\n}\n\nint _zbar_processor_invalidate (zbar_processor_t *proc)\n{\n    if(!InvalidateRect(proc->display, NULL, 0))\n        return(-1/*FIXME*/);\n\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/processor/x.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"window.h\"\n#include \"processor.h\"\n#include \"posix.h\"\n\n#include <X11/Xlib.h>\n#include <X11/Xutil.h>\n#include <X11/keysym.h>\n\nstatic inline int x_handle_event (zbar_processor_t *proc)\n{\n    XEvent ev;\n    XNextEvent(proc->display, &ev);\n\n    switch(ev.type) {\n    case Expose: {\n        /* FIXME ignore when running(?) */\n        XExposeEvent *exp = (XExposeEvent*)&ev;\n        while(1) {\n            assert(ev.type == Expose);\n            _zbar_window_expose(proc->window, exp->x, exp->y,\n                                exp->width, exp->height);\n            if(!exp->count)\n                break;\n            XNextEvent(proc->display, &ev);\n        }\n        zbar_window_redraw(proc->window);\n        break;\n    }\n\n    case ConfigureNotify:\n        zprintf(3, \"resized to %d x %d\\n\",\n                ev.xconfigure.width, ev.xconfigure.height);\n        zbar_window_resize(proc->window,\n                           ev.xconfigure.width, ev.xconfigure.height);\n        _zbar_processor_invalidate(proc);\n        break;\n\n    case ClientMessage:\n        if((ev.xclient.message_type ==\n            XInternAtom(proc->display, \"WM_PROTOCOLS\", 0)) &&\n           ev.xclient.format == 32 &&\n           (ev.xclient.data.l[0] ==\n            XInternAtom(proc->display, \"WM_DELETE_WINDOW\", 0))) {\n            zprintf(3, \"WM_DELETE_WINDOW\\n\");\n            return(_zbar_processor_handle_input(proc, -1));\n        }\n\n    case KeyPress: {\n        KeySym key = XLookupKeysym(&ev.xkey, 0);\n        if(IsModifierKey(key))\n            break;\n        if((key & 0xff00) == 0xff00)\n            key &= 0x00ff;\n        zprintf(16, \"KeyPress(%04lx)\\n\", key);\n        /* FIXME this doesn't really work... */\n        return(_zbar_processor_handle_input(proc, key & 0xffff));\n    }\n    case ButtonPress: {\n        zprintf(16, \"ButtonPress(%d)\\n\", ev.xbutton.button);\n        int idx = 1;\n        switch(ev.xbutton.button) {\n        case Button2: idx = 2; break;\n        case Button3: idx = 3; break;\n        case Button4: idx = 4; break;\n        case Button5: idx = 5; break;\n        }\n        return(_zbar_processor_handle_input(proc, idx));\n    }\n\n    case DestroyNotify:\n        zprintf(16, \"DestroyNotify\\n\");\n        zbar_window_attach(proc->window, NULL, 0);\n        proc->xwin = 0;\n        return(0);\n\n    default:\n        /* ignored */;\n    }\n    return(0);\n}\n\nstatic int x_handle_events (zbar_processor_t *proc)\n{\n    int rc = 0;\n    while(rc >= 0 && XPending(proc->display))\n        rc = x_handle_event(proc);\n    return(rc);\n}\n\nstatic int x_connection_handler (zbar_processor_t *proc,\n                                 int i)\n{\n    _zbar_mutex_lock(&proc->mutex);\n    _zbar_processor_lock(proc);\n    _zbar_mutex_unlock(&proc->mutex);\n\n    x_handle_events(proc);\n\n    _zbar_mutex_lock(&proc->mutex);\n    _zbar_processor_unlock(proc, 0);\n    _zbar_mutex_unlock(&proc->mutex);\n    return(0);\n}\n\nstatic int x_internal_handler (zbar_processor_t *proc,\n                               int i)\n{\n    XProcessInternalConnection(proc->display, proc->state->polling.fds[i].fd);\n    x_connection_handler(proc, i);\n    return(0);\n}\n\nstatic void x_internal_watcher (Display *display,\n                                XPointer client_arg,\n                                int fd,\n                                Bool opening,\n                                XPointer *watch_arg)\n{\n    zbar_processor_t *proc = (void*)client_arg;\n    if(opening)\n        add_poll(proc, fd, x_internal_handler);\n    else\n        remove_poll(proc, fd);\n}\n\nint _zbar_processor_open (zbar_processor_t *proc,\n                          char *title,\n                          unsigned width,\n                          unsigned height)\n{\n    proc->display = XOpenDisplay(NULL);\n    if(!proc->display)\n        return(err_capture_str(proc, SEV_ERROR, ZBAR_ERR_XDISPLAY, __func__,\n                               \"unable to open X display\",\n                               XDisplayName(NULL)));\n\n    add_poll(proc, ConnectionNumber(proc->display), x_connection_handler);\n    XAddConnectionWatch(proc->display, x_internal_watcher, (void*)proc);\n    /* must also flush X event queue before polling */\n    proc->state->pre_poll_handler = x_connection_handler;\n\n    int screen = DefaultScreen(proc->display);\n    XSetWindowAttributes attr;\n    attr.event_mask = (ExposureMask | StructureNotifyMask |\n                       KeyPressMask | ButtonPressMask);\n\n    proc->xwin = XCreateWindow(proc->display,\n                               RootWindow(proc->display, screen),\n                               0, 0, width, height, 0,\n                               CopyFromParent, InputOutput,\n                               CopyFromParent, CWEventMask, &attr);\n    if(!proc->xwin) {\n        XCloseDisplay(proc->display);\n        return(err_capture(proc, SEV_ERROR, ZBAR_ERR_XPROTO, __func__,\n                           \"creating window\"));\n    }\n\n    XStoreName(proc->display, proc->xwin, title);\n\n    XClassHint *class_hint = XAllocClassHint();\n    class_hint->res_name = \"zbar\";\n    class_hint->res_class = \"zbar\";\n    XSetClassHint(proc->display, proc->xwin, class_hint);\n    XFree(class_hint);\n    class_hint = NULL;\n\n    Atom wm_delete_window = XInternAtom(proc->display, \"WM_DELETE_WINDOW\", 0);\n    if(wm_delete_window)\n        XSetWMProtocols(proc->display, proc->xwin, &wm_delete_window, 1);\n\n    if(zbar_window_attach(proc->window, proc->display, proc->xwin))\n        return(err_copy(proc, proc->window));\n    return(0);\n}\n\nint _zbar_processor_close (zbar_processor_t *proc)\n{\n    if(proc->window)\n        zbar_window_attach(proc->window, NULL, 0);\n\n    if(proc->display) {\n        if(proc->xwin) {\n            XDestroyWindow(proc->display, proc->xwin);\n            proc->xwin = 0;\n        }\n        proc->state->pre_poll_handler = NULL;\n        remove_poll(proc, ConnectionNumber(proc->display));\n        XCloseDisplay(proc->display);\n        proc->display = NULL;\n    }\n    return(0);\n}\n\nint _zbar_processor_invalidate (zbar_processor_t *proc)\n{\n    if(!proc->display || !proc->xwin)\n        return(0);\n    XClearArea(proc->display, proc->xwin, 0, 0, 0, 0, 1);\n    XFlush(proc->display);\n    return(0);\n}\n\nint _zbar_processor_set_size (zbar_processor_t *proc,\n                              unsigned width,\n                              unsigned height)\n{\n    if(!proc->display || !proc->xwin)\n        return(0);\n\n    /* refuse to resize greater than (default) screen size */\n    XWindowAttributes attr;\n    XGetWindowAttributes(proc->display, proc->xwin, &attr);\n\n    int maxw = WidthOfScreen(attr.screen);\n    int maxh = HeightOfScreen(attr.screen);\n    int w, h;\n    if(width > maxw) {\n        h = (maxw * height + width - 1) / width;\n        w = maxw;\n    }\n    else {\n        w = width;\n        h = height;\n    }\n    if(h > maxh) {\n        w = (maxh * width + height - 1) / height;\n        h = maxh;\n    }\n    assert(w <= maxw);\n    assert(h <= maxh);\n\n    XResizeWindow(proc->display, proc->xwin, w, h);\n    XFlush(proc->display);\n    return(0);\n}\n\nint _zbar_processor_set_visible (zbar_processor_t *proc,\n                                 int visible)\n{\n    if(visible)\n        XMapRaised(proc->display, proc->xwin);\n    else\n        XUnmapWindow(proc->display, proc->xwin);\n    XFlush(proc->display);\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/processor.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"processor.h\"\n#include \"window.h\"\n#include \"image.h\"\n\nstatic inline int proc_enter (zbar_processor_t *proc)\n{\n    _zbar_mutex_lock(&proc->mutex);\n    return(_zbar_processor_lock(proc));\n}\n\nstatic inline int proc_leave (zbar_processor_t *proc)\n{\n    int rc = _zbar_processor_unlock(proc, 0);\n    _zbar_mutex_unlock(&proc->mutex);\n    return(rc);\n}\n\nstatic inline int proc_open (zbar_processor_t *proc)\n{\n    /* arbitrary default */\n    int width = 640, height = 480;\n    if(proc->video) {\n        width = zbar_video_get_width(proc->video);\n        height = zbar_video_get_height(proc->video);\n    }\n    return(_zbar_processor_open(proc, \"zbar barcode reader\", width, height));\n}\n\n/* API lock is already held */\nint _zbar_process_image (zbar_processor_t *proc,\n                         zbar_image_t *img)\n{\n    uint32_t force_fmt = proc->force_output;\n    if(img) {\n        if(proc->dumping) {\n            zbar_image_write(proc->window->image, \"zbar\");\n            proc->dumping = 0;\n        }\n\n        uint32_t format = zbar_image_get_format(img);\n        zprintf(16, \"processing: %.4s(%08\" PRIx32 \") %dx%d @%p\\n\",\n                (char*)&format, format,\n                zbar_image_get_width(img), zbar_image_get_height(img),\n                zbar_image_get_data(img));\n\n        /* FIXME locking all other interfaces while processing is conservative\n         * but easier for now and we don't expect this to take long...\n         */\n        zbar_image_t *tmp = zbar_image_convert(img, fourcc('Y','8','0','0'));\n        if(!tmp)\n            goto error;\n\n        if(proc->syms) {\n            zbar_symbol_set_ref(proc->syms, -1);\n            proc->syms = NULL;\n        }\n        zbar_image_scanner_recycle_image(proc->scanner, img);\n        int nsyms = zbar_scan_image(proc->scanner, tmp);\n        _zbar_image_swap_symbols(img, tmp);\n\n        zbar_image_destroy(tmp);\n        tmp = NULL;\n        if(nsyms < 0)\n            goto error;\n\n        proc->syms = zbar_image_scanner_get_results(proc->scanner);\n        if(proc->syms)\n            zbar_symbol_set_ref(proc->syms, 1);\n\n        if(_zbar_verbosity >= 8) {\n            const zbar_symbol_t *sym = zbar_image_first_symbol(img);\n            while(sym) {\n                zbar_symbol_type_t type = zbar_symbol_get_type(sym);\n                int count = zbar_symbol_get_count(sym);\n                zprintf(8, \"%s: %s (%d pts) (dir=%d) (q=%d) (%s)\\n\",\n                        zbar_get_symbol_name(type),\n                        zbar_symbol_get_data(sym),\n                        zbar_symbol_get_loc_size(sym),\n                        zbar_symbol_get_orientation(sym),\n                        zbar_symbol_get_quality(sym),\n                        (count < 0) ? \"uncertain\" :\n                        (count > 0) ? \"duplicate\" : \"new\");\n                sym = zbar_symbol_next(sym);\n            }\n        }\n\n        if(nsyms) {\n            /* FIXME only call after filtering */\n            _zbar_mutex_lock(&proc->mutex);\n            _zbar_processor_notify(proc, EVENT_OUTPUT);\n            _zbar_mutex_unlock(&proc->mutex);\n            if(proc->handler)\n                proc->handler(img, proc->userdata);\n        }\n\n        if(force_fmt) {\n            zbar_symbol_set_t *syms = img->syms;\n            img = zbar_image_convert(img, force_fmt);\n            if(!img)\n                goto error;\n            img->syms = syms;\n            zbar_symbol_set_ref(syms, 1);\n        }\n    }\n\n    /* display to window if enabled */\n    int rc = 0;\n    if(proc->window) {\n        if((rc = zbar_window_draw(proc->window, img)))\n            err_copy(proc, proc->window);\n        _zbar_processor_invalidate(proc);\n    }\n\n    if(force_fmt && img)\n        zbar_image_destroy(img);\n    return(rc);\n\nerror:\n    return(err_capture(proc, SEV_ERROR, ZBAR_ERR_UNSUPPORTED,\n                       __func__, \"unknown image format\"));\n}\n\nint _zbar_processor_handle_input (zbar_processor_t *proc,\n                                  int input)\n{\n    int event = EVENT_INPUT;\n    switch(input) {\n    case -1:\n        event |= EVENT_CANCELED;\n        _zbar_processor_set_visible(proc, 0);\n        err_capture(proc, SEV_WARNING, ZBAR_ERR_CLOSED, __func__,\n                    \"user closed display window\");\n        break;\n\n    case 'd':\n        proc->dumping = 1;\n        return(0);\n\n    case '+':\n    case '=':\n        if(proc->window) {\n            int ovl = zbar_window_get_overlay(proc->window);\n            zbar_window_set_overlay(proc->window, ovl + 1);\n        }\n        break;\n\n    case '-':\n        if(proc->window) {\n            int ovl = zbar_window_get_overlay(proc->window);\n            zbar_window_set_overlay(proc->window, ovl - 1);\n        }\n        break;\n    }\n\n    _zbar_mutex_lock(&proc->mutex);\n    proc->input = input;\n    if(input == -1 && proc->visible && proc->streaming)\n        /* also cancel outstanding output waiters */\n        event |= EVENT_OUTPUT;\n    _zbar_processor_notify(proc, event);\n    _zbar_mutex_unlock(&proc->mutex);\n    return(input);\n}\n\n#ifdef ZTHREAD\n\nstatic ZTHREAD proc_video_thread (void *arg)\n{\n    zbar_processor_t *proc = arg;\n    zbar_thread_t *thread = &proc->video_thread;\n\n    _zbar_mutex_lock(&proc->mutex);\n    _zbar_thread_init(thread);\n    zprintf(4, \"spawned video thread\\n\");\n\n    while(thread->started) {\n        /* wait for video stream to be active */\n        while(thread->started && !proc->streaming)\n            _zbar_event_wait(&thread->notify, &proc->mutex, NULL);\n        if(!thread->started)\n            break;\n\n        /* blocking capture image from video */\n        _zbar_mutex_unlock(&proc->mutex);\n        zbar_image_t *img = zbar_video_next_image(proc->video);\n        _zbar_mutex_lock(&proc->mutex);\n\n        if(!img && !proc->streaming)\n            continue;\n        else if(!img)\n            /* FIXME could abort streaming and keep running? */\n            break;\n\n        /* acquire API lock */\n        _zbar_processor_lock(proc);\n        _zbar_mutex_unlock(&proc->mutex);\n\n        if(thread->started && proc->streaming)\n            _zbar_process_image(proc, img);\n\n        zbar_image_destroy(img);\n\n        _zbar_mutex_lock(&proc->mutex);\n        /* release API lock */\n        _zbar_processor_unlock(proc, 0);\n    }\n\n    thread->running = 0;\n    _zbar_event_trigger(&thread->activity);\n    _zbar_mutex_unlock(&proc->mutex);\n    return(0);\n}\n\nstatic ZTHREAD proc_input_thread (void *arg)\n{\n    zbar_processor_t *proc = arg;\n    zbar_thread_t *thread = &proc->input_thread;\n    if(proc->window && proc_open(proc))\n        goto done;\n\n    _zbar_mutex_lock(&proc->mutex);\n    thread->running = 1;\n    _zbar_event_trigger(&thread->activity);\n    zprintf(4, \"spawned input thread\\n\");\n\n    int rc = 0;\n    while(thread->started && rc >= 0) {\n        _zbar_mutex_unlock(&proc->mutex);\n        rc = _zbar_processor_input_wait(proc, &thread->notify, -1);\n        _zbar_mutex_lock(&proc->mutex);\n    }\n\n    _zbar_mutex_unlock(&proc->mutex);\n    _zbar_processor_close(proc);\n    _zbar_mutex_lock(&proc->mutex);\n\n done:\n    thread->running = 0;\n    _zbar_event_trigger(&thread->activity);\n    _zbar_mutex_unlock(&proc->mutex);\n    return(0);\n}\n\n#endif\n\nzbar_processor_t *zbar_processor_create (int threaded)\n{\n    zbar_processor_t *proc = calloc(1, sizeof(zbar_processor_t));\n    if(!proc)\n        return(NULL);\n    err_init(&proc->err, ZBAR_MOD_PROCESSOR);\n\n    proc->scanner = zbar_image_scanner_create();\n    if(!proc->scanner) {\n        free(proc);\n        return(NULL);\n    }\n\n    proc->threaded = !_zbar_mutex_init(&proc->mutex) && threaded;\n    _zbar_processor_init(proc);\n    return(proc);\n}\n\nvoid zbar_processor_destroy (zbar_processor_t *proc)\n{\n    zbar_processor_init(proc, NULL, 0);\n\n    if(proc->syms) {\n        zbar_symbol_set_ref(proc->syms, -1);\n        proc->syms = NULL;\n    }\n    if(proc->scanner) {\n        zbar_image_scanner_destroy(proc->scanner);\n        proc->scanner = NULL;\n    }\n\n    _zbar_mutex_destroy(&proc->mutex);\n    _zbar_processor_cleanup(proc);\n\n    assert(!proc->wait_head);\n    assert(!proc->wait_tail);\n    assert(!proc->wait_next);\n\n    proc_waiter_t *w, *next;\n    for(w = proc->free_waiter; w; w = next) {\n        next = w->next;\n        _zbar_event_destroy(&w->notify);\n        free(w);\n    }\n\n    err_cleanup(&proc->err);\n    free(proc);\n}\n\nint zbar_processor_init (zbar_processor_t *proc,\n                         const char *dev,\n                         int enable_display)\n{\n    if(proc->video)\n        zbar_processor_set_active(proc, 0);\n\n    if(proc->window && !proc->input_thread.started)\n        _zbar_processor_close(proc);\n\n    _zbar_mutex_lock(&proc->mutex);\n    _zbar_thread_stop(&proc->input_thread, &proc->mutex);\n    _zbar_thread_stop(&proc->video_thread, &proc->mutex);\n\n    _zbar_processor_lock(proc);\n    _zbar_mutex_unlock(&proc->mutex);\n\n    if(proc->window) {\n        zbar_window_destroy(proc->window);\n        proc->window = NULL;\n    }\n\n    int rc = 0;\n    if(proc->video) {\n        zbar_video_destroy(proc->video);\n        proc->video = NULL;\n    }\n\n    if(!dev && !enable_display)\n        /* nothing to do */\n        goto done;\n\n    if(enable_display) {\n        proc->window = zbar_window_create();\n        if(!proc->window) {\n            rc = err_capture(proc, SEV_FATAL, ZBAR_ERR_NOMEM,\n                             __func__, \"allocating window resources\");\n            goto done;\n        }\n    }\n\n    if(dev) {\n        proc->video = zbar_video_create();\n        if(!proc->video) {\n            rc = err_capture(proc, SEV_FATAL, ZBAR_ERR_NOMEM,\n                             __func__, \"allocating video resources\");\n            goto done;\n        }\n        if(proc->req_width || proc->req_height)\n            zbar_video_request_size(proc->video,\n                                     proc->req_width, proc->req_height);\n        if(proc->req_intf)\n            zbar_video_request_interface(proc->video, proc->req_intf);\n        if((proc->req_iomode &&\n            zbar_video_request_iomode(proc->video, proc->req_iomode)) ||\n           zbar_video_open(proc->video, dev)) {\n            rc = err_copy(proc, proc->video);\n            goto done;\n        }\n    }\n\n    /* spawn blocking video thread */\n    int video_threaded = (proc->threaded && proc->video &&\n                          zbar_video_get_fd(proc->video) < 0);\n    if(video_threaded &&\n       _zbar_thread_start(&proc->video_thread, proc_video_thread, proc,\n                          &proc->mutex)) {\n        rc = err_capture(proc, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                         \"spawning video thread\");\n        goto done;\n    }\n\n    /* spawn input monitor thread */\n    int input_threaded = (proc->threaded &&\n                          (proc->window ||\n                           (proc->video && !video_threaded)));\n    if(input_threaded &&\n       _zbar_thread_start(&proc->input_thread, proc_input_thread, proc,\n                          &proc->mutex)) {\n        rc = err_capture(proc, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                         \"spawning input thread\");\n        goto done;\n    }\n\n    if(proc->window && !input_threaded &&\n       (rc = proc_open(proc)))\n        goto done;\n\n    if(proc->video && proc->force_input) {\n        if(zbar_video_init(proc->video, proc->force_input))\n            rc = err_copy(proc, proc->video);\n    }\n    else if(proc->video) {\n        int retry = -1;\n        if(proc->window) {\n            retry = zbar_negotiate_format(proc->video, proc->window);\n            if(retry)\n                fprintf(stderr,\n                        \"WARNING: no compatible input to output format\\n\"\n                        \"...trying again with output disabled\\n\");\n        }\n        if(retry)\n            retry = zbar_negotiate_format(proc->video, NULL);\n\n        if(retry) {\n            zprintf(1, \"ERROR: no compatible %s format\\n\",\n                    (proc->video) ? \"video input\" : \"window output\");\n            rc = err_capture(proc, SEV_ERROR, ZBAR_ERR_UNSUPPORTED,\n                             __func__, \"no compatible image format\");\n        }\n    }\n\n done:\n    _zbar_mutex_lock(&proc->mutex);\n    proc_leave(proc);\n    return(rc);\n}\n\nzbar_image_data_handler_t*\nzbar_processor_set_data_handler (zbar_processor_t *proc,\n                                 zbar_image_data_handler_t *handler,\n                                 const void *userdata)\n{\n    zbar_image_data_handler_t *result = NULL;\n    proc_enter(proc);\n\n    result = proc->handler;\n    proc->handler = handler;\n    proc->userdata = userdata;\n\n    proc_leave(proc);\n    return(result);\n}\n\nvoid zbar_processor_set_userdata (zbar_processor_t *proc,\n                                  void *userdata)\n{\n    _zbar_mutex_lock(&proc->mutex);\n    proc->userdata = userdata;\n    _zbar_mutex_unlock(&proc->mutex);\n}\n\nvoid *zbar_processor_get_userdata (const zbar_processor_t *proc)\n{\n    zbar_processor_t *ncproc = (zbar_processor_t*)proc;\n    _zbar_mutex_lock(&ncproc->mutex);\n    void *userdata = (void*)ncproc->userdata;\n    _zbar_mutex_unlock(&ncproc->mutex);\n    return(userdata);\n}\n\nint zbar_processor_set_config (zbar_processor_t *proc,\n                               zbar_symbol_type_t sym,\n                               zbar_config_t cfg,\n                               int val)\n{\n    proc_enter(proc);\n    int rc = zbar_image_scanner_set_config(proc->scanner, sym, cfg, val);\n    proc_leave(proc);\n    return(rc);\n}\n\nint zbar_processor_request_size (zbar_processor_t *proc,\n                                 unsigned width,\n                                 unsigned height)\n{\n    proc_enter(proc);\n    proc->req_width = width;\n    proc->req_height = height;\n    proc_leave(proc);\n    return(0);\n}\n\nint zbar_processor_request_interface (zbar_processor_t *proc,\n                                      int ver)\n{\n    proc_enter(proc);\n    proc->req_intf = ver;\n    proc_leave(proc);\n    return(0);\n}\n\nint zbar_processor_request_iomode (zbar_processor_t *proc,\n                                   int iomode)\n{\n    proc_enter(proc);\n    proc->req_iomode = iomode;\n    proc_leave(proc);\n    return(0);\n}\n\nint zbar_processor_force_format (zbar_processor_t *proc,\n                                 unsigned long input,\n                                 unsigned long output)\n{\n    proc_enter(proc);\n    proc->force_input = input;\n    proc->force_output = output;\n    proc_leave(proc);\n    return(0);\n}\n\nint zbar_processor_is_visible (zbar_processor_t *proc)\n{\n    proc_enter(proc);\n    int visible = proc->window && proc->visible;\n    proc_leave(proc);\n    return(visible);\n}\n\nint zbar_processor_set_visible (zbar_processor_t *proc,\n                                int visible)\n{\n    proc_enter(proc);\n    _zbar_mutex_unlock(&proc->mutex);\n\n    int rc = 0;\n    if(proc->window) {\n        if(proc->video)\n            rc = _zbar_processor_set_size(proc,\n                                          zbar_video_get_width(proc->video),\n                                          zbar_video_get_height(proc->video));\n        if(!rc)\n            rc = _zbar_processor_set_visible(proc, visible);\n\n        if(!rc)\n            proc->visible = (visible != 0);\n    }\n    else if(visible)\n        rc = err_capture(proc, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                         \"processor display window not initialized\");\n\n    _zbar_mutex_lock(&proc->mutex);\n    proc_leave(proc);\n    return(rc);\n}\n\nconst zbar_symbol_set_t*\nzbar_processor_get_results (const zbar_processor_t *proc)\n{\n    zbar_processor_t *ncproc = (zbar_processor_t*)proc;\n    proc_enter(ncproc);\n    const zbar_symbol_set_t *syms = proc->syms;\n    if(syms)\n        zbar_symbol_set_ref(syms, 1);\n    proc_leave(ncproc);\n    return(syms);\n}\n\nint zbar_processor_user_wait (zbar_processor_t *proc,\n                              int timeout)\n{\n    proc_enter(proc);\n    _zbar_mutex_unlock(&proc->mutex);\n\n    int rc = -1;\n    if(proc->visible || proc->streaming || timeout >= 0) {\n        zbar_timer_t timer;\n        rc = _zbar_processor_wait(proc, EVENT_INPUT,\n                                  _zbar_timer_init(&timer, timeout));\n    }\n\n    if(!proc->visible)\n        rc = err_capture(proc, SEV_WARNING, ZBAR_ERR_CLOSED, __func__,\n                         \"display window not available for input\");\n\n    if(rc > 0)\n        rc = proc->input;\n\n    _zbar_mutex_lock(&proc->mutex);\n    proc_leave(proc);\n    return(rc);\n}\n\nint zbar_processor_set_active (zbar_processor_t *proc,\n                               int active)\n{\n    proc_enter(proc);\n\n    int rc;\n    if(!proc->video) {\n        rc = err_capture(proc, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                         \"video input not initialized\");\n        goto done;\n    }\n    _zbar_mutex_unlock(&proc->mutex);\n\n    zbar_image_scanner_enable_cache(proc->scanner, active);\n\n    rc = zbar_video_enable(proc->video, active);\n    if(!rc) {\n        _zbar_mutex_lock(&proc->mutex);\n        proc->streaming = active;\n        _zbar_mutex_unlock(&proc->mutex);\n        rc = _zbar_processor_enable(proc);\n    }\n    else\n        err_copy(proc, proc->video);\n\n    if(!proc->streaming && proc->window) {\n        if(zbar_window_draw(proc->window, NULL) && !rc)\n            rc = err_copy(proc, proc->window);\n        _zbar_processor_invalidate(proc);\n    }\n\n    _zbar_mutex_lock(&proc->mutex);\n    if(proc->video_thread.started)\n        _zbar_event_trigger(&proc->video_thread.notify);\n\n done:\n    proc_leave(proc);\n    return(rc);\n}\n\nint zbar_process_one (zbar_processor_t *proc,\n                      int timeout)\n{\n    proc_enter(proc);\n    int streaming = proc->streaming;\n    _zbar_mutex_unlock(&proc->mutex);\n\n    int rc = 0;\n    if(!proc->video) {\n        rc = err_capture(proc, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                         \"video input not initialized\");\n        goto done;\n    }\n\n    if(!streaming) {\n        rc = zbar_processor_set_active(proc, 1);\n        if(rc)\n            goto done;\n    }\n\n    zbar_timer_t timer;\n    rc = _zbar_processor_wait(proc, EVENT_OUTPUT,\n                              _zbar_timer_init(&timer, timeout));\n\n    if(!streaming && zbar_processor_set_active(proc, 0))\n        rc = -1;\n\n done:\n    _zbar_mutex_lock(&proc->mutex);\n    proc_leave(proc);\n    return(rc);\n}\n\nint zbar_process_image (zbar_processor_t *proc,\n                        zbar_image_t *img)\n{\n    proc_enter(proc);\n    _zbar_mutex_unlock(&proc->mutex);\n\n    int rc = 0;\n    if(img && proc->window)\n        rc = _zbar_processor_set_size(proc,\n                                      zbar_image_get_width(img),\n                                      zbar_image_get_height(img));\n    if(!rc) {\n        zbar_image_scanner_enable_cache(proc->scanner, 0);\n        rc = _zbar_process_image(proc, img);\n        if(proc->streaming)\n            zbar_image_scanner_enable_cache(proc->scanner, 1);\n    }\n\n    _zbar_mutex_lock(&proc->mutex);\n    proc_leave(proc);\n    return(rc);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/processor.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _PROCESSOR_H_\n#define _PROCESSOR_H_\n\n#include <config.h>\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#include <unistd.h>\n#include <stdlib.h>\n#include <string.h>\n\n#include <zbar.h>\n#include \"error.h\"\n#include \"thread.h\"\n#include \"event.h\"\n\n/* max time to wait for input before looking for the next frame.\n * only used in unthreaded mode with blocking (non-pollable) video.\n * NB subject to precision of whatever timer is in use\n */\n#define MAX_INPUT_BLOCK 15/*ms*/\n\n/* platform specific state wrapper */\ntypedef struct processor_state_s processor_state_t;\n\n/* specific notification tracking */\ntypedef struct proc_waiter_s {\n    struct proc_waiter_s *next;\n    zbar_event_t notify;\n    zbar_thread_id_t requester;\n    unsigned events;\n} proc_waiter_t;\n\n/* high-level API events */\n#define EVENT_INPUT     0x01            /* user input */\n#define EVENT_OUTPUT    0x02            /* decoded output data available */\n#define EVENT_CANCELED  0x80            /* cancelation flag */\n#define EVENTS_PENDING  (EVENT_INPUT | EVENT_OUTPUT)\n\nstruct zbar_processor_s {\n    errinfo_t err;                      /* error reporting */\n    const void *userdata;               /* application data */\n\n    zbar_video_t *video;                /* input video device abstraction */\n    zbar_window_t *window;              /* output window abstraction */\n    zbar_image_scanner_t *scanner;      /* barcode scanner */\n\n    zbar_image_data_handler_t *handler; /* application data handler */\n\n    unsigned req_width, req_height;     /* application requested video size */\n    int req_intf, req_iomode;           /* application requested interface */\n    uint32_t force_input;               /* force input format (debug) */\n    uint32_t force_output;              /* force format conversion (debug) */\n\n    int input;                          /* user input status */\n\n    /* state flags */\n    int threaded;\n    int visible;                        /* output window mapped to display */\n    int streaming;                      /* video enabled */\n    int dumping;                        /* debug image dump */\n\n    void *display;                      /* X display connection */\n    unsigned long xwin;                 /* toplevel window */\n\n    zbar_thread_t input_thread;         /* video input handler */\n    zbar_thread_t video_thread;         /* window event handler */\n\n    const zbar_symbol_set_t *syms;      /* previous decode results */\n\n    zbar_mutex_t mutex;                 /* shared data mutex */\n\n    /* API serialization lock */\n    int lock_level;\n    zbar_thread_id_t lock_owner;\n    proc_waiter_t *wait_head, *wait_tail, *wait_next;\n    proc_waiter_t *free_waiter;\n\n    processor_state_t *state;\n};\n\n/* processor lock API */\nextern int _zbar_processor_lock(zbar_processor_t*);\nextern int _zbar_processor_unlock(zbar_processor_t*, int);\nextern void _zbar_processor_notify(zbar_processor_t*, unsigned);\nextern int _zbar_processor_wait(zbar_processor_t*, unsigned, zbar_timer_t*);\n\n/* platform API */\nextern int _zbar_processor_init(zbar_processor_t*);\nextern int _zbar_processor_cleanup(zbar_processor_t*);\nextern int _zbar_processor_input_wait(zbar_processor_t*, zbar_event_t*, int);\nextern int _zbar_processor_enable(zbar_processor_t*);\n\nextern int _zbar_process_image(zbar_processor_t*, zbar_image_t*);\nextern int _zbar_processor_handle_input(zbar_processor_t*, int);\n\n/* windowing platform API */\nextern int _zbar_processor_open(zbar_processor_t*, char*, unsigned, unsigned);\nextern int _zbar_processor_close(zbar_processor_t*);\nextern int _zbar_processor_set_visible(zbar_processor_t*, int);\nextern int _zbar_processor_set_size(zbar_processor_t*, unsigned, unsigned);\nextern int _zbar_processor_invalidate(zbar_processor_t*);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/bch15_5.c",
    "content": "/*Copyright (C) 2008-2009  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#include \"bch15_5.h\"\n\n/*A cycle in GF(2**4) generated by alpha=(x**4+x+1).\n  It is extended an extra 16 entries to avoid some expensive mod operations.*/\nstatic const unsigned char gf16_exp[31]={\n  1,2,4,8,3,6,12,11,5,10,7,14,15,13,9,1,2,4,8,3,6,12,11,5,10,7,14,15,13,9,1\n};\n\n/*The location of each integer 1...16 in the cycle.*/\nstatic const signed char gf16_log[16]={\n  -1,0,1,4,2,8,5,10,3,14,9,7,6,13,11,12\n};\n\n/*Multiplication in GF(2**4) using logarithms.*/\nstatic unsigned gf16_mul(unsigned _a,unsigned _b){\n  return _a==0||_b==0?0:gf16_exp[gf16_log[_a]+gf16_log[_b]];\n}\n\n/*Division in GF(2**4) using logarithms.\n  The result when dividing by zero is undefined.*/\nstatic unsigned gf16_div(unsigned _a,unsigned _b){\n  return _a==0?0:gf16_exp[gf16_log[_a]+15-gf16_log[_b]];\n}\n\n/*Multiplication in GF(2**4) when the second argument is known to be non-zero\n   (proven by representing it by its logarithm).*/\nstatic unsigned gf16_hmul(unsigned _a,unsigned _logb){\n  return _a==0?0:gf16_exp[gf16_log[_a]+_logb];\n}\n\n/*The syndrome normally has five values, S_1 ... S_5.\n  We only calculate and store the odd ones in _s, since S_2=S_1**2 and\n   S_4=S_2**2.\n  Returns zero iff all the syndrome values are zero.*/\nstatic int bch15_5_calc_syndrome(unsigned _s[3],unsigned _y){\n  unsigned p;\n  int      i;\n  int      j;\n  p=0;\n  for(i=0;i<15;i++)if(_y&1<<i)p^=gf16_exp[i];\n  _s[0]=p;\n  p=0;\n  for(i=0;i<3;i++)for(j=0;j<5;j++)if(_y&1<<5*i+j)p^=gf16_exp[j*3];\n  _s[1]=p;\n  p=0;\n  for(i=0;i<5;i++)for(j=0;j<3;j++)if(_y&1<<3*i+j)p^=gf16_exp[j*5];\n  _s[2]=p;\n  return _s[0]!=0||_s[1]!=0||_s[2]!=0;\n}\n\n/*Compute the coefficients of the error-locator polynomial.\n  Returns the number of errors (the degree of the polynomial).*/\nstatic int bch15_5_calc_omega(unsigned _o[3],unsigned _s[3]){\n  unsigned s02;\n  unsigned tt;\n  unsigned dd;\n  int      d;\n  _o[0]=_s[0];\n  s02=gf16_mul(_s[0],_s[0]);\n  dd=_s[1]^gf16_mul(_s[0],s02);\n  tt=_s[2]^gf16_mul(s02,_s[1]);\n  _o[1]=dd?gf16_div(tt,dd):0;\n  _o[2]=dd^gf16_mul(_s[0],_o[1]);\n  for(d=3;d>0&&!_o[d-1];d--);\n  return d;\n}\n\n/*Find the roots of the error polynomial.\n  Returns the number of roots found, or a negative value if the polynomial did\n   not have enough roots, indicating a decoding error.*/\nstatic int bch15_5_calc_epos(unsigned _epos[3],unsigned _s[3]){\n  unsigned o[3];\n  int      nerrors;\n  int      d;\n  int      i;\n  d=bch15_5_calc_omega(o,_s);\n  nerrors=0;\n  if(d==1)_epos[nerrors++]=gf16_log[o[0]];\n  else if(d>0){\n    for(i=0;i<15;i++){\n      int i2;\n      i2=gf16_log[gf16_exp[i<<1]];\n      if(!(gf16_exp[i+i2]^gf16_hmul(o[0],i2)^gf16_hmul(o[1],i)^o[2])){\n        _epos[nerrors++]=i;\n      }\n    }\n    if(nerrors<d)return -1;\n  }\n  return nerrors;\n}\n\nint bch15_5_correct(unsigned *_y){\n  unsigned s[3];\n  unsigned epos[3];\n  unsigned y;\n  int      nerrors;\n  int      i;\n  y=*_y;\n  if(!bch15_5_calc_syndrome(s,y))return 0;\n  nerrors=bch15_5_calc_epos(epos,s);\n  if(nerrors>0){\n    /*If we had a non-zero syndrome value, we should always find at least one\n       error location, or we've got a decoding error.*/\n    for(i=0;i<nerrors;i++)y^=1<<epos[i];\n    /*If there were too many errors, we may not find enough roots to reduce the\n       syndrome to zero.\n      We could recompute it to check, but it's much faster just to check that\n       we have a valid codeword.*/\n    if(bch15_5_encode(y>>10)==y){\n      /*Decoding succeeded.*/\n      *_y=y;\n      return nerrors;\n    }\n  }\n  /*Decoding failed due to too many bit errors.*/\n  return -1;\n}\n\nunsigned bch15_5_encode(unsigned _x){\n  return (-(_x&1)&0x0537)^(-(_x>>1&1)&0x0A6E)^(-(_x>>2&1)&0x11EB)^\n   (-(_x>>3&1)&0x23D6)^(-(_x>>4&1)&0x429B);\n}\n\n#if 0\n#include <stdio.h>\n\nstatic unsigned codes[32];\n\nstatic int hamming(int _a,int _b){\n  int d;\n  int n;\n  d=_a^_b;\n  for(n=0;d;n++)d&=d-1;\n  return n;\n}\n\nstatic int closest(int _y){\n  int min_i;\n  int min_d;\n  int i;\n  int d;\n  min_i=0;\n  min_d=hamming(_y,codes[0]);\n  for(i=1;i<32;i++){\n    d=hamming(_y,codes[i]);\n    if(d<min_d){\n      min_d=d;\n      min_i=i;\n    }\n  }\n  return codes[min_i];\n}\n\nint main(void){\n  int i;\n  /*Print a list of the valid (uncorrupt) codewords.*/\n  for(i=0;i<32;i++)codes[i]=bch15_5_encode(i);\n  for(i=0;i<32;i++)printf(\"0x%04X%s\",codes[i],i+1<32?\"  \":\"\\n\");\n  /*Try to decode all receivable (possibly corrupt) codewords.*/\n  for(i=0;i<0x8000;i++){\n    unsigned y;\n    unsigned z;\n    int      nerrors;\n    int      j;\n    y=i;\n    nerrors=bch15_5_correct(&y);\n    z=closest(i);\n    if(nerrors<0){\n      printf(\"0x%04X->Failed\\n\",i);\n      if(hamming(i,z)<=3)printf(\"Error: 0x%04X should map to 0x%04X\\n\",i,z);\n    }\n    else{\n      printf(\"0x%04X->0x%04X\\n\",i,y);\n      if(z!=y)printf(\"Error: 0x%04X should map to 0x%04X\\n\",i,z);\n    }\n  }\n  return 0;\n}\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/bch15_5.h",
    "content": "/*Copyright (C) 2008-2009  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#if !defined(_bch15_5_H)\n# define _bch15_5_H (1)\n\n/*Encodes a raw 5-bit value _x into a 15-bit BCH(15,5) code.\n  This is capable of correcting up to 3 bit errors, and detecting as many as\n   5 bit errors in some cases.*/\nunsigned bch15_5_encode(unsigned _x);\n\n/*Corrects the received code *_y, if possible.\n  The original data is located in the top five bits.\n  Returns the number of errors corrected, or a negative value if decoding\n   failed due to too many bit errors, in which case *_y is left unchanged.*/\nint bch15_5_correct(unsigned *_y);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/binarize.c",
    "content": "/*Copyright (C) 2008-2009  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#include <stdlib.h>\n#include <math.h>\n#include <string.h>\n#include \"util.h\"\n#include \"image.h\"\n#include \"binarize.h\"\n\n#if 0\n/*Binarization based on~\\cite{GPP06}.\n  @ARTICLE{GPP06,\n    author=\"Basilios Gatos and Ioannis E. Pratikakis and Stavros J. Perantonis\",\n    title=\"Adaptive Degraded Document Image Binarization\",\n    journal=\"Pattern Recognition\",\n    volume=39,\n    number=3,\n    pages=\"317-327\",\n    month=Mar,\n    year=2006\n  }*/\n\n#if 0\n/*Applies a 5x5 Wiener filter to the image, in-place, emphasizing differences\n   where the local variance is small, and de-emphasizing them where it is\n   large.*/\nvoid qr_wiener_filter(unsigned char *_img,int _width,int _height){\n  unsigned           *m_buf[8];\n  unsigned           *sn2_buf[8];\n  unsigned char       g;\n  int                 x;\n  int                 y;\n  if(_width<=0||_height<=0)return;\n  m_buf[0]=(unsigned *)malloc((_width+4<<3)*sizeof(*m_buf));\n  sn2_buf[0]=(unsigned *)malloc((_width+4<<3)*sizeof(*sn2_buf));\n  for(y=1;y<8;y++){\n    m_buf[y]=m_buf[y-1]+_width+4;\n    sn2_buf[y]=sn2_buf[y-1]+_width+4;\n  }\n  for(y=-4;y<_height;y++){\n    unsigned *pm;\n    unsigned *psn2;\n    int       i;\n    int       j;\n    pm=m_buf[y+2&7];\n    psn2=sn2_buf[y+2&7];\n    for(x=-4;x<_width;x++){\n      unsigned m;\n      unsigned m2;\n      m=m2=0;\n      if(y>=0&&y<_height-4&&x>=0&&x<_width-4)for(i=0;i<5;i++)for(j=0;j<5;j++){\n        g=_img[(y+i)*_width+x+j];\n        m+=g;\n        m2+=g*g;\n      }\n      else for(i=0;i<5;i++)for(j=0;j<5;j++){\n        g=_img[QR_CLAMPI(0,y+i,_height-1)*_width+QR_CLAMPI(0,x+j,_width-1)];\n        m+=g;\n        m2+=g*g;\n      }\n      pm[x+4]=m;\n      psn2[x+4]=(m2*25-m*m);\n    }\n    pm=m_buf[y&7];\n    if(y>=0)for(x=0;x<_width;x++){\n      int sn2;\n      sn2=sn2_buf[y&7][x+2];\n      if(sn2){\n        int vn3;\n        int m;\n        /*Gatos et al. give the expression\n            mu+(s2-v2)*(g-mu)/s2 ,\n           which we reduce to\n            mu+(s2-v2)*g/s2-(s2-v2)*mu/s2 ,\n            g-(v2/s2)*g+(v2/s2)*mu ,\n            g+(mu-g)*(v2/s2) .\n           However, s2 is much noisier than v2, and dividing by it often gives\n            extremely large adjustments, causing speckle near edges.\n           Therefore we limit the ratio (v2/s2) to lie between 0 and 1.*/\n        vn3=0;\n        for(i=-2;i<3;i++){\n          psn2=sn2_buf[y+i&7];\n          for(j=0;j<5;j++)vn3+=psn2[x+j];\n        }\n        m=m_buf[y&7][x+2];\n        vn3=vn3+1023>>10;\n        sn2=25*sn2+1023>>10;\n        if(vn3<sn2){\n          int a;\n          g=_img[y*_width+x];\n          a=(m-25*g)*vn3;\n          sn2*=25;\n          _img[y*_width+x]=QR_CLAMP255(g+QR_DIVROUND(a,sn2));\n        }\n        else _img[y*_width+x]=(unsigned char)(((m<<1)+25)/50);\n      }\n    }\n  }\n  free(sn2_buf[0]);\n  free(m_buf[0]);\n}\n\n#else\n/*Applies a 3x3 Wiener filter to the image, in-place, emphasizing differences\n   where the local variance is small, and de-emphasizing them where it is\n   large.*/\nvoid qr_wiener_filter(unsigned char *_img,int _width,int _height){\n  unsigned           *m_buf[4];\n  unsigned           *sn2_buf[4];\n  unsigned char       g;\n  int                 x;\n  int                 y;\n  if(_width<=0||_height<=0)return;\n  m_buf[0]=(unsigned *)malloc((_width+2<<2)*sizeof(*m_buf));\n  sn2_buf[0]=(unsigned *)malloc((_width+2<<2)*sizeof(*sn2_buf));\n  for(y=1;y<4;y++){\n    m_buf[y]=m_buf[y-1]+_width+2;\n    sn2_buf[y]=sn2_buf[y-1]+_width+2;\n  }\n  for(y=-2;y<_height;y++){\n    unsigned *pm;\n    unsigned *psn2;\n    int       i;\n    int       j;\n    pm=m_buf[y+1&3];\n    psn2=sn2_buf[y+1&3];\n    for(x=-2;x<_width;x++){\n      unsigned m;\n      unsigned m2;\n      m=m2=0;\n      if(y>=0&&y<_height-2&&x>=0&&x<_width-2)for(i=0;i<3;i++)for(j=0;j<3;j++){\n        g=_img[(y+i)*_width+x+j];\n        m+=g;\n        m2+=g*g;\n      }\n      else for(i=0;i<3;i++)for(j=0;j<3;j++){\n        g=_img[QR_CLAMPI(0,y+i,_height-1)*_width+QR_CLAMPI(0,x+j,_width-1)];\n        m+=g;\n        m2+=g*g;\n      }\n      pm[x+2]=m;\n      psn2[x+2]=(m2*9-m*m);\n    }\n    pm=m_buf[y&3];\n    if(y>=0)for(x=0;x<_width;x++){\n      int sn2;\n      sn2=sn2_buf[y&3][x+1];\n      if(sn2){\n        int m;\n        int vn3;\n        /*Gatos et al. give the expression\n            mu+(s2-v2)*(g-mu)/s2 ,\n           which we reduce to\n            mu+(s2-v2)*g/s2-(s2-v2)*mu/s2 ,\n            g-(v2/s2)*g+(v2/s2)*mu ,\n            g+(mu-g)*(v2/s2) .\n           However, s2 is much noisier than v2, and dividing by it often gives\n            extremely large adjustments, causing speckle near edges.\n           Therefore we limit the ratio (v2/s2) to lie between 0 and 1.*/\n        vn3=0;\n        for(i=-1;i<2;i++){\n          psn2=sn2_buf[y+i&3];\n          for(j=0;j<3;j++)vn3+=psn2[x+j];\n        }\n        m=m_buf[y&3][x+1];\n        vn3=vn3+31>>5;\n        sn2=9*sn2+31>>5;\n        if(vn3<sn2){\n          int a;\n          g=_img[y*_width+x];\n          a=m-9*g;\n          sn2*=9;\n          _img[y*_width+x]=QR_CLAMP255(g+QR_DIVROUND(a,sn2));\n        }\n        else _img[y*_width+x]=(unsigned char)(((m<<1)+9)/18);\n      }\n    }\n  }\n  free(sn2_buf[0]);\n  free(m_buf[0]);\n}\n#endif\n\n/*Computes a (conservative) foreground mask using the adaptive binarization\n   threshold given in~\\cite{SP00}, but knocking the threshold parameter down to\n   k=0.2.\n  Note on dynamic range: we assume _width*_height<=0x1000000 (24 bits).\n  Returns the average background value.\n  @ARTICLE{SP00,\n    author=\"Jaakko J. Sauvola and Matti Pietik\\\"{a}inen\",\n    title=\"Adaptive Document Image Binarization\",\n    volume=33,\n    number=2,\n    pages=\"225--236\",\n    month=Feb,\n    year=2000\n  }*/\nstatic void qr_sauvola_mask(unsigned char *_mask,unsigned *_b,int *_nb,\n const unsigned char *_img,int _width,int _height){\n  unsigned  b;\n  int       nb;\n  b=0;\n  nb=0;\n  if(_width>0&&_height>0){\n    unsigned *col_sums;\n    unsigned *col2_sums;\n    int       logwindw;\n    int       logwindh;\n    int       windw;\n    int       windh;\n    int       y0offs;\n    int       y1offs;\n    unsigned  g;\n    unsigned  g2;\n    int       x;\n    int       y;\n    /*We keep the window size fairly large to ensure it doesn't fit completely\n       inside the center of a finder pattern of a version 1 QR code at full\n       resolution.*/\n    for(logwindw=4;logwindw<8&&(1<<logwindw)<(_width+7>>3);logwindw++);\n    for(logwindh=4;logwindh<8&&(1<<logwindh)<(_height+7>>3);logwindh++);\n    windw=1<<logwindw;\n    windh=1<<logwindh;\n    col_sums=(unsigned *)malloc(_width*sizeof(*col_sums));\n    col2_sums=(unsigned *)malloc(_width*sizeof(*col2_sums));\n    /*Initialize sums down each column.*/\n    for(x=0;x<_width;x++){\n      g=_img[x];\n      g2=g*g;\n      col_sums[x]=(g<<logwindh-1)+g;\n      col2_sums[x]=(g2<<logwindh-1)+g2;\n    }\n    for(y=1;y<(windh>>1);y++){\n      y1offs=QR_MINI(y,_height-1)*_width;\n      for(x=0;x<_width;x++){\n        g=_img[y1offs+x];\n        col_sums[x]+=g;\n        col2_sums[x]+=g*g;\n      }\n    }\n    for(y=0;y<_height;y++){\n      unsigned m;\n      unsigned m2;\n      int      x0;\n      int      x1;\n      /*Initialize the sums over the window.*/\n      m=(col_sums[0]<<logwindw-1)+col_sums[0];\n      m2=(col2_sums[0]<<logwindw-1)+col2_sums[0];\n      for(x=1;x<(windw>>1);x++){\n        x1=QR_MINI(x,_width-1);\n        m+=col_sums[x1];\n        m2+=col2_sums[x1];\n      }\n      for(x=0;x<_width;x++){\n        int d;\n        /*Perform the test against the threshold T = (m/n)*(1+k*(s/R-1)),\n           where n=windw*windh, s=sqrt((m2-(m*m)/n)/n), and R=128.\n          We don't actually compute the threshold directly, as that would\n           require a square root.\n          Instead we perform the equivalent test:\n           (m/n)*(m/n)*(m2/n-(m/n)*(m/n))/16 > (((1/k)*g-((1-k)/k)*(m/n))*32)**2\n          R is split up across each side of the inequality to maximize the\n           dynamic range available for the right hand side, which requires\n           31 bits in the worst case.*/\n        /*(m/n)*(1+(1/5)*(sqrt((m2-m*m/n)/n)/128-1)) > g\n          m*(1+(1/5)*(sqrt((m2-m*m/n)/n)/128-1)) > g*n\n          m*sqrt((m2-m*m/n)/n) > 5*g*n-4*m<<7\n          m*m*(m2*n-m*m) > (5*g*n-4*m<<7)**2*n*n || 5*g*n-4*m < 0 */\n        g=_img[y*_width+x];\n        d=(5*g<<logwindw+logwindh)-4*m;\n        if(d>=0){\n          unsigned mm;\n          unsigned mms2;\n          unsigned d2;\n          mm=(m>>logwindw)*(m>>logwindh);\n          mms2=(m2-mm>>logwindw+logwindh)*(mm>>logwindw+logwindh)+15>>4;\n          d2=d>>logwindw+logwindh-5;\n          d2*=d2;\n          if(d2>=mms2){\n            /*Update the background average.*/\n            b+=g;\n            nb++;\n            _mask[y*_width+x]=0;\n          }\n          else _mask[y*_width+x]=0xFF;\n        }\n        else _mask[y*_width+x]=0xFF;\n        /*Update the window sums.*/\n        if(x+1<_width){\n          x0=QR_MAXI(0,x-(windw>>1));\n          x1=QR_MINI(x+(windw>>1),_width-1);\n          m+=col_sums[x1]-col_sums[x0];\n          m2+=col2_sums[x1]-col2_sums[x0];\n        }\n      }\n      /*Update the column sums.*/\n      if(y+1<_height){\n        y0offs=QR_MAXI(0,y-(windh>>1))*_width;\n        y1offs=QR_MINI(y+(windh>>1),_height-1)*_width;\n        for(x=0;x<_width;x++){\n          g=_img[y0offs+x];\n          col_sums[x]-=g;\n          col2_sums[x]-=g*g;\n          g=_img[y1offs+x];\n          col_sums[x]+=g;\n          col2_sums[x]+=g*g;\n        }\n      }\n    }\n    free(col2_sums);\n    free(col_sums);\n  }\n  *_b=b;\n  *_nb=nb;\n}\n\n/*Interpolates a background image given the source and a conservative\n   foreground mask.\n  If the current window contains no foreground pixels, the average background\n   value over the whole image is used.\n  Note on dynamic range: we assume _width*_height<=0x8000000 (23 bits).\n  Returns the average difference between the foreground and the interpolated\n   background.*/\nstatic void qr_interpolate_background(unsigned char *_dst,\n int *_delta,int *_ndelta,const unsigned char *_img,const unsigned char *_mask,\n int _width,int _height,unsigned _b,int _nb){\n  int delta;\n  int ndelta;\n  delta=ndelta=0;\n  if(_width>0&&_height>0){\n    unsigned *col_sums;\n    unsigned *ncol_sums;\n    int       logwindw;\n    int       logwindh;\n    int       windw;\n    int       windh;\n    int       y0offs;\n    int       y1offs;\n    unsigned  b;\n    unsigned  g;\n    int       x;\n    int       y;\n    b=_nb>0?((_b<<1)+_nb)/(_nb<<1):0xFF;\n    for(logwindw=4;logwindw<8&&(1<<logwindw)<(_width+15>>4);logwindw++);\n    for(logwindh=4;logwindh<8&&(1<<logwindh)<(_height+15>>4);logwindh++);\n    windw=1<<logwindw;\n    windh=1<<logwindh;\n    col_sums=(unsigned *)malloc(_width*sizeof(*col_sums));\n    ncol_sums=(unsigned *)malloc(_width*sizeof(*ncol_sums));\n    /*Initialize sums down each column.*/\n    for(x=0;x<_width;x++){\n      if(!_mask[x]){\n        g=_img[x];\n        col_sums[x]=(g<<logwindh-1)+g;\n        ncol_sums[x]=(1<<logwindh-1)+1;\n      }\n      else col_sums[x]=ncol_sums[x]=0;\n    }\n    for(y=1;y<(windh>>1);y++){\n      y1offs=QR_MINI(y,_height-1)*_width;\n      for(x=0;x<_width;x++)if(!_mask[y1offs+x]){\n        col_sums[x]+=_img[y1offs+x];\n        ncol_sums[x]++;\n      }\n    }\n    for(y=0;y<_height;y++){\n      unsigned n;\n      unsigned m;\n      int      x0;\n      int      x1;\n      /*Initialize the sums over the window.*/\n      m=(col_sums[0]<<logwindw-1)+col_sums[0];\n      n=(ncol_sums[0]<<logwindw-1)+ncol_sums[0];\n      for(x=1;x<(windw>>1);x++){\n        x1=QR_MINI(x,_width-1);\n        m+=col_sums[x1];\n        n+=ncol_sums[x1];\n      }\n      for(x=0;x<_width;x++){\n        if(!_mask[y*_width+x])g=_img[y*_width+x];\n        else{\n          g=n>0?((m<<1)+n)/(n<<1):b;\n          delta+=(int)g-_img[y*_width+x];\n          ndelta++;\n        }\n        _dst[y*_width+x]=(unsigned char)g;\n        /*Update the window sums.*/\n        if(x+1<_width){\n          x0=QR_MAXI(0,x-(windw>>1));\n          x1=QR_MINI(x+(windw>>1),_width-1);\n          m+=col_sums[x1]-col_sums[x0];\n          n+=ncol_sums[x1]-ncol_sums[x0];\n        }\n      }\n      /*Update the column sums.*/\n      if(y+1<_height){\n        y0offs=QR_MAXI(0,y-(windh>>1))*_width;\n        y1offs=QR_MINI(y+(windh>>1),_height-1)*_width;\n        for(x=0;x<_width;x++){\n          if(!_mask[y0offs+x]){\n            col_sums[x]-=_img[y0offs+x];\n            ncol_sums[x]--;\n          }\n          if(!_mask[y1offs+x]){\n            col_sums[x]+=_img[y1offs+x];\n            ncol_sums[x]++;\n          }\n        }\n      }\n    }\n    free(ncol_sums);\n    free(col_sums);\n  }\n  *_delta=delta;\n  *_ndelta=ndelta;\n}\n\n/*Parameters of the logistic sigmoid function that defines the threshold based\n   on the background intensity.\n  They should all be between 0 and 1.*/\n#define QR_GATOS_Q  (0.7)\n#define QR_GATOS_P1 (0.5)\n#define QR_GATOS_P2 (0.8)\n\n/*Compute the final binarization mask according to Gatos et al.'s\n   method~\\cite{GPP06}.*/\nstatic void qr_gatos_mask(unsigned char *_mask,const unsigned char *_img,\n const unsigned char *_background,int _width,int _height,\n unsigned _b,int _nb,int _delta,int _ndelta){\n  unsigned thresh[256];\n  unsigned g;\n  double   delta;\n  double   b;\n  int      x;\n  int      y;\n  /*Construct a lookup table for the thresholds.\n    This bit uses floating point, but doesn't need to do much calculation, so\n     emulation should be fine.*/\n  b=_nb>0?(_b+0.5)/_nb:0xFF;\n  delta=_ndelta>0?(_delta+0.5)/_ndelta:0xFF;\n  for(g=0;g<256;g++){\n    double d;\n    d=QR_GATOS_Q*delta*(QR_GATOS_P2+(1-QR_GATOS_P2)/\n     (1+exp(2*(1+QR_GATOS_P1)/(1-QR_GATOS_P1)-4*g/(b*(1-QR_GATOS_P1)))));\n    if(d<1)d=1;\n    else if(d>0xFF)d=0xFF;\n    thresh[g]=(unsigned)floor(d);\n  }\n  /*Apply the adaptive threshold.*/\n  for(y=0;y<_height;y++)for(x=0;x<_width;x++){\n    g=_background[y*_width+x];\n    /*_background[y*_width+x]=thresh[g];*/\n    _mask[y*_width+x]=(unsigned char)(-(g-_img[y*_width+x]>thresh[g])&0xFF);\n  }\n  /*{\n    FILE *fout;\n    fout=fopen(\"thresh.png\",\"wb\");\n    image_write_png(_background,_width,_height,fout);\n    fclose(fout);\n  }*/\n}\n\n/*Binarizes a grayscale image.*/\nvoid qr_binarize(unsigned char *_img,int _width,int _height){\n  unsigned char *mask;\n  unsigned char *background;\n  unsigned       b;\n  int            nb;\n  int            delta;\n  int            ndelta;\n  /*qr_wiener_filter(_img,_width,_height);\n  {\n    FILE *fout;\n    fout=fopen(\"wiener.png\",\"wb\");\n    image_write_png(_img,_width,_height,fout);\n    fclose(fout);\n  }*/\n  mask=(unsigned char *)malloc(_width*_height*sizeof(*mask));\n  qr_sauvola_mask(mask,&b,&nb,_img,_width,_height);\n  /*{\n    FILE *fout;\n    fout=fopen(\"foreground.png\",\"wb\");\n    image_write_png(mask,_width,_height,fout);\n    fclose(fout);\n  }*/\n  background=(unsigned char *)malloc(_width*_height*sizeof(*mask));\n  qr_interpolate_background(background,&delta,&ndelta,\n   _img,mask,_width,_height,b,nb);\n  /*{\n    FILE *fout;\n    fout=fopen(\"background.png\",\"wb\");\n    image_write_png(background,_width,_height,fout);\n    fclose(fout);\n  }*/\n  qr_gatos_mask(_img,_img,background,_width,_height,b,nb,delta,ndelta);\n  free(background);\n  free(mask);\n}\n\n#else\n/*The above algorithms are computationally expensive, and do not work as well\n   as the simple algorithm below.\n  Sauvola by itself does an excellent job of classifying regions outside the\n   QR code as background, which greatly reduces the chance of false alarms.\n  However, it also tends to over-shrink isolated black dots inside the code,\n   making them easy to miss with even slight mis-alignment.\n  Since the Gatos method uses Sauvola as input to its background interpolation\n   method, it cannot possibly mark any pixels as foreground which Sauvola\n   classified as background, and thus suffers from the same problem.\n  The following simple adaptive threshold method does not have this problem,\n   though it produces essentially random noise outside the QR code region.\n  QR codes are structured well enough that this does not seem to lead to any\n   actual false alarms in practice, and it allows many more codes to be\n   detected and decoded successfully than the Sauvola or Gatos binarization\n   methods.*/\n\n/*A simplified adaptive thresholder.\n  This compares the current pixel value to the mean value of a (large) window\n   surrounding it.*/\nunsigned char *qr_binarize(const unsigned char *_img,int _width,int _height){\n  unsigned char *mask = NULL;\n  if(_width>0&&_height>0){\n    unsigned      *col_sums;\n    int            logwindw;\n    int            logwindh;\n    int            windw;\n    int            windh;\n    int            y0offs;\n    int            y1offs;\n    unsigned       g;\n    int            x;\n    int            y;\n    mask=(unsigned char *)malloc(_width*_height*sizeof(*mask));\n    /*We keep the window size fairly large to ensure it doesn't fit completely\n       inside the center of a finder pattern of a version 1 QR code at full\n       resolution.*/\n    for(logwindw=4;logwindw<8&&(1<<logwindw)<(_width+7>>3);logwindw++);\n    for(logwindh=4;logwindh<8&&(1<<logwindh)<(_height+7>>3);logwindh++);\n    windw=1<<logwindw;\n    windh=1<<logwindh;\n    col_sums=(unsigned *)malloc(_width*sizeof(*col_sums));\n    /*Initialize sums down each column.*/\n    for(x=0;x<_width;x++){\n      g=_img[x];\n      col_sums[x]=(g<<logwindh-1)+g;\n    }\n    for(y=1;y<(windh>>1);y++){\n      y1offs=QR_MINI(y,_height-1)*_width;\n      for(x=0;x<_width;x++){\n        g=_img[y1offs+x];\n        col_sums[x]+=g;\n      }\n    }\n    for(y=0;y<_height;y++){\n      unsigned m;\n      int      x0;\n      int      x1;\n      /*Initialize the sum over the window.*/\n      m=(col_sums[0]<<logwindw-1)+col_sums[0];\n      for(x=1;x<(windw>>1);x++){\n        x1=QR_MINI(x,_width-1);\n        m+=col_sums[x1];\n      }\n      for(x=0;x<_width;x++){\n        /*Perform the test against the threshold T = (m/n)-D,\n           where n=windw*windh and D=3.*/\n        g=_img[y*_width+x];\n        mask[y*_width+x]=-(g+3<<logwindw+logwindh<m)&0xFF;\n        /*Update the window sum.*/\n        if(x+1<_width){\n          x0=QR_MAXI(0,x-(windw>>1));\n          x1=QR_MINI(x+(windw>>1),_width-1);\n          m+=col_sums[x1]-col_sums[x0];\n        }\n      }\n      /*Update the column sums.*/\n      if(y+1<_height){\n        y0offs=QR_MAXI(0,y-(windh>>1))*_width;\n        y1offs=QR_MINI(y+(windh>>1),_height-1)*_width;\n        for(x=0;x<_width;x++){\n          col_sums[x]-=_img[y0offs+x];\n          col_sums[x]+=_img[y1offs+x];\n        }\n      }\n    }\n    free(col_sums);\n  }\n#if defined(QR_DEBUG)\n  {\n    FILE *fout;\n    fout=fopen(\"binary.png\",\"wb\");\n    image_write_png(_img,_width,_height,fout);\n    fclose(fout);\n  }\n#endif\n  return(mask);\n}\n#endif\n\n#if defined(TEST_BINARIZE)\n#include <stdio.h>\n#include \"image.c\"\n\nint main(int _argc,char **_argv){\n  unsigned char *img;\n  int            width;\n  int            height;\n  int            x;\n  int            y;\n  if(_argc<2){\n    fprintf(stderr,\"usage: %s <image>.png\\n\",_argv[0]);\n    return EXIT_FAILURE;\n  }\n  /*width=1182;\n  height=1181;\n  img=(unsigned char *)malloc(width*height*sizeof(*img));\n  for(y=0;y<height;y++)for(x=0;x<width;x++){\n    img[y*width+x]=(unsigned char)(-((x&1)^(y&1))&0xFF);\n  }*/\n  {\n    FILE *fin;\n    fin=fopen(_argv[1],\"rb\");\n    image_read_png(&img,&width,&height,fin);\n    fclose(fin);\n  }\n  qr_binarize(img,width,height);\n  /*{\n    FILE *fout;\n    fout=fopen(\"binary.png\",\"wb\");\n    image_write_png(img,width,height,fout);\n    fclose(fout);\n  }*/\n  free(img);\n  return EXIT_SUCCESS;\n}\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/binarize.h",
    "content": "/*Copyright (C) 2008-2009  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#if !defined(_qrcode_binarize_H)\n# define _qrcode_binarize_H (1)\n\nvoid qr_image_cross_masking_median_filter(unsigned char *_img,\n int _width,int _height);\n\nvoid qr_wiener_filter(unsigned char *_img,int _width,int _height);\n\n/*Binarizes a grayscale image.*/\nunsigned char *qr_binarize(const unsigned char *_img,int _width,int _height);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/isaac.c",
    "content": "/*Written by Timothy B. Terriberry (tterribe@xiph.org) 1999-2009 public domain.\n  Based on the public domain implementation by Robert J. Jenkins Jr.*/\n#include <float.h>\n#include <math.h>\n#include <string.h>\n#include \"isaac.h\"\n\n\n\n#define ISAAC_MASK        (0xFFFFFFFFU)\n\n\n\nstatic void isaac_update(isaac_ctx *_ctx){\n  unsigned *m;\n  unsigned *r;\n  unsigned  a;\n  unsigned  b;\n  unsigned  x;\n  unsigned  y;\n  int       i;\n  m=_ctx->m;\n  r=_ctx->r;\n  a=_ctx->a;\n  b=_ctx->b+(++_ctx->c)&ISAAC_MASK;\n  for(i=0;i<ISAAC_SZ/2;i++){\n    x=m[i];\n    a=(a^a<<13)+m[i+ISAAC_SZ/2]&ISAAC_MASK;\n    m[i]=y=m[(x&ISAAC_SZ-1<<2)>>2]+a+b&ISAAC_MASK;\n    r[i]=b=m[y>>ISAAC_SZ_LOG+2&ISAAC_SZ-1]+x&ISAAC_MASK;\n    x=m[++i];\n    a=(a^a>>6)+m[i+ISAAC_SZ/2]&ISAAC_MASK;\n    m[i]=y=m[(x&ISAAC_SZ-1<<2)>>2]+a+b&ISAAC_MASK;\n    r[i]=b=m[y>>ISAAC_SZ_LOG+2&ISAAC_SZ-1]+x&ISAAC_MASK;\n    x=m[++i];\n    a=(a^a<<2)+m[i+ISAAC_SZ/2]&ISAAC_MASK;\n    m[i]=y=m[(x&ISAAC_SZ-1<<2)>>2]+a+b&ISAAC_MASK;\n    r[i]=b=m[y>>ISAAC_SZ_LOG+2&ISAAC_SZ-1]+x&ISAAC_MASK;\n    x=m[++i];\n    a=(a^a>>16)+m[i+ISAAC_SZ/2]&ISAAC_MASK;\n    m[i]=y=m[(x&ISAAC_SZ-1<<2)>>2]+a+b&ISAAC_MASK;\n    r[i]=b=m[y>>ISAAC_SZ_LOG+2&ISAAC_SZ-1]+x&ISAAC_MASK;\n  }\n  for(i=ISAAC_SZ/2;i<ISAAC_SZ;i++){\n    x=m[i];\n    a=(a^a<<13)+m[i-ISAAC_SZ/2]&ISAAC_MASK;\n    m[i]=y=m[(x&ISAAC_SZ-1<<2)>>2]+a+b&ISAAC_MASK;\n    r[i]=b=m[y>>ISAAC_SZ_LOG+2&ISAAC_SZ-1]+x&ISAAC_MASK;\n    x=m[++i];\n    a=(a^a>>6)+m[i-ISAAC_SZ/2]&ISAAC_MASK;\n    m[i]=y=m[(x&ISAAC_SZ-1<<2)>>2]+a+b&ISAAC_MASK;\n    r[i]=b=m[y>>ISAAC_SZ_LOG+2&ISAAC_SZ-1]+x&ISAAC_MASK;\n    x=m[++i];\n    a=(a^a<<2)+m[i-ISAAC_SZ/2]&ISAAC_MASK;\n    m[i]=y=m[(x&ISAAC_SZ-1<<2)>>2]+a+b&ISAAC_MASK;\n    r[i]=b=m[y>>ISAAC_SZ_LOG+2&ISAAC_SZ-1]+x&ISAAC_MASK;\n    x=m[++i];\n    a=(a^a>>16)+m[i-ISAAC_SZ/2]&ISAAC_MASK;\n    m[i]=y=m[(x&ISAAC_SZ-1<<2)>>2]+a+b&ISAAC_MASK;\n    r[i]=b=m[y>>ISAAC_SZ_LOG+2&ISAAC_SZ-1]+x&ISAAC_MASK;\n  }\n  _ctx->b=b;\n  _ctx->a=a;\n  _ctx->n=ISAAC_SZ;\n}\n\nstatic void isaac_mix(unsigned _x[8]){\n  static const unsigned char SHIFT[8]={11,2,8,16,10,4,8,9};\n  int i;\n  for(i=0;i<8;i++){\n    _x[i]^=_x[i+1&7]<<SHIFT[i];\n    _x[i+3&7]+=_x[i];\n    _x[i+1&7]+=_x[i+2&7];\n    i++;\n    _x[i]^=_x[i+1&7]>>SHIFT[i];\n    _x[i+3&7]+=_x[i];\n    _x[i+1&7]+=_x[i+2&7];\n  }\n}\n\n\nvoid isaac_init(isaac_ctx *_ctx,const void *_seed,int _nseed){\n  const unsigned char *seed;\n  unsigned            *m;\n  unsigned            *r;\n  unsigned             x[8];\n  int                  i;\n  int                  j;\n  _ctx->a=_ctx->b=_ctx->c=0;\n  m=_ctx->m;\n  r=_ctx->r;\n  x[0]=x[1]=x[2]=x[3]=x[4]=x[5]=x[6]=x[7]=0x9E3779B9;\n  for(i=0;i<4;i++)isaac_mix(x);\n  if(_nseed>ISAAC_SEED_SZ_MAX)_nseed=ISAAC_SEED_SZ_MAX;\n  seed=(const unsigned char *)_seed;\n  for(i=0;i<_nseed>>2;i++){\n    r[i]=seed[i<<2|3]<<24|seed[i<<2|2]<<16|seed[i<<2|1]<<8|seed[i<<2];\n  }\n  if(_nseed&3){\n    r[i]=seed[i<<2];\n    for(j=1;j<(_nseed&3);j++)r[i]+=seed[i<<2|j]<<(j<<3);\n    i++;\n  }\n  memset(r+i,0,(ISAAC_SZ-i)*sizeof(*r));\n  for(i=0;i<ISAAC_SZ;i+=8){\n    for(j=0;j<8;j++)x[j]+=r[i+j];\n    isaac_mix(x);\n    memcpy(m+i,x,sizeof(x));\n  }\n  for(i=0;i<ISAAC_SZ;i+=8){\n    for(j=0;j<8;j++)x[j]+=m[i+j];\n    isaac_mix(x);\n    memcpy(m+i,x,sizeof(x));\n  }\n  isaac_update(_ctx);\n}\n\nunsigned isaac_next_uint32(isaac_ctx *_ctx){\n  if(!_ctx->n)isaac_update(_ctx);\n  return _ctx->r[--_ctx->n];\n}\n\n/*Returns a uniform random integer less than the given maximum value.\n  _n: The upper bound on the range of numbers returned (not inclusive).\n      This must be strictly less than 2**32.\n  Return: An integer uniformly distributed between 0 (inclusive) and _n\n           (exclusive).*/\nunsigned isaac_next_uint(isaac_ctx *_ctx,unsigned _n){\n  unsigned r;\n  unsigned v;\n  unsigned d;\n  do{\n    r=isaac_next_uint32(_ctx);\n    v=r%_n;\n    d=r-v;\n  }\n  while((d+_n-1&ISAAC_MASK)<d);\n  return v;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/isaac.h",
    "content": "/*Written by Timothy B. Terriberry (tterribe@xiph.org) 1999-2009 public domain.\n  Based on the public domain implementation by Robert J. Jenkins Jr.*/\n#if !defined(_isaac_H)\n# define _isaac_H (1)\n\n\n\ntypedef struct isaac_ctx isaac_ctx;\n\n\n\n#define ISAAC_SZ_LOG      (8)\n#define ISAAC_SZ          (1<<ISAAC_SZ_LOG)\n#define ISAAC_SEED_SZ_MAX (ISAAC_SZ<<2)\n\n\n\n/*ISAAC is the most advanced of a series of Pseudo-Random Number Generators\n   designed by Robert J. Jenkins Jr. in 1996.\n  http://www.burtleburtle.net/bob/rand/isaac.html\n  To quote:\n    No efficient method is known for deducing their internal states.\n    ISAAC requires an amortized 18.75 instructions to produce a 32-bit value.\n    There are no cycles in ISAAC shorter than 2**40 values.\n    The expected cycle length is 2**8295 values.*/\nstruct isaac_ctx{\n  unsigned n;\n  unsigned r[ISAAC_SZ];\n  unsigned m[ISAAC_SZ];\n  unsigned a;\n  unsigned b;\n  unsigned c;\n};\n\n\nvoid isaac_init(isaac_ctx *_ctx,const void *_seed,int _nseed);\n\nunsigned isaac_next_uint32(isaac_ctx *_ctx);\nunsigned isaac_next_uint(isaac_ctx *_ctx,unsigned _n);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/qrdec.c",
    "content": "/*Copyright (C) 2008-2009  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#include <config.h>\n#include <stdlib.h>\n#include <limits.h>\n#include <string.h>\n#include <time.h>\n#include \"qrcode.h\"\n#include \"qrdec.h\"\n#include \"bch15_5.h\"\n#include \"rs.h\"\n#include \"isaac.h\"\n#include \"util.h\"\n#include \"binarize.h\"\n#include \"image.h\"\n#include \"error.h\"\n#include \"svg.h\"\n\ntypedef int qr_line[3];\n\ntypedef struct qr_finder_cluster qr_finder_cluster;\ntypedef struct qr_finder_edge_pt  qr_finder_edge_pt;\ntypedef struct qr_finder_center   qr_finder_center;\n\ntypedef struct qr_aff qr_aff;\ntypedef struct qr_hom qr_hom;\n\ntypedef struct qr_finder qr_finder;\n\ntypedef struct qr_hom_cell      qr_hom_cell;\ntypedef struct qr_sampling_grid qr_sampling_grid;\ntypedef struct qr_pack_buf      qr_pack_buf;\n\n/*The number of bits in an int.\n  Note the cast to (int): this prevents this value from \"promoting\" whole\n   expressions to an (unsigned) size_t.*/\n#define QR_INT_BITS    ((int)sizeof(int)*CHAR_BIT)\n#define QR_INT_LOGBITS (QR_ILOG(QR_INT_BITS))\n\n/*A 14 bit resolution for a homography ensures that the ideal module size for a\n   version 40 code differs from that of a version 39 code by at least 2.*/\n#define QR_HOM_BITS (14)\n\n/*The number of bits of sub-module precision to use when searching for\n   alignment patterns.\n  Two bits allows an alignment pattern to be found even if the modules have\n   been eroded by up to 50% (due to blurring, etc.).\n  This must be at least one, since it affects the dynamic range of the\n   transforms, and we sample at half-module resolution to compute a bounding\n   quadrilateral for the code.*/\n#define QR_ALIGN_SUBPREC (2)\n\n\n/* collection of finder lines */\ntypedef struct qr_finder_lines {\n    qr_finder_line *lines;\n    int nlines, clines;\n} qr_finder_lines;\n\n\nstruct qr_reader {\n    /*The GF(256) representation used in Reed-Solomon decoding.*/\n    rs_gf256  gf;\n    /*The random number generator used by RANSAC.*/\n    isaac_ctx isaac;\n    /* current finder state, horizontal and vertical lines */\n    qr_finder_lines finder_lines[2];\n};\n\n\n/*Initializes a client reader handle.*/\nstatic void qr_reader_init (qr_reader *reader)\n{\n    /*time_t now;\n      now=time(NULL);\n      isaac_init(&_reader->isaac,&now,sizeof(now));*/\n    isaac_init(&reader->isaac, NULL, 0);\n    rs_gf256_init(&reader->gf, QR_PPOLY);\n}\n\n/*Allocates a client reader handle.*/\nqr_reader *_zbar_qr_create (void)\n{\n    qr_reader *reader = (qr_reader*)calloc(1, sizeof(*reader));\n    qr_reader_init(reader);\n    return(reader);\n}\n\n/*Frees a client reader handle.*/\nvoid _zbar_qr_destroy (qr_reader *reader)\n{\n    zprintf(1, \"max finder lines = %dx%d\\n\",\n            reader->finder_lines[0].clines,\n            reader->finder_lines[1].clines);\n    if(reader->finder_lines[0].lines)\n        free(reader->finder_lines[0].lines);\n    if(reader->finder_lines[1].lines)\n        free(reader->finder_lines[1].lines);\n    free(reader);\n}\n\n/* reset finder state between scans */\nvoid _zbar_qr_reset (qr_reader *reader)\n{\n    reader->finder_lines[0].nlines = 0;\n    reader->finder_lines[1].nlines = 0;\n}\n\n\n/*A cluster of lines crossing a finder pattern (all in the same direction).*/\nstruct qr_finder_cluster{\n  /*Pointers to the lines crossing the pattern.*/\n  qr_finder_line **lines;\n  /*The number of lines in the cluster.*/\n  int              nlines;\n};\n\n\n/*A point on the edge of a finder pattern.\n  These are obtained from the endpoints of the lines crossing this particular\n   pattern.*/\nstruct qr_finder_edge_pt{\n  /*The location of the edge point.*/\n  qr_point pos;\n  /*A label classifying which edge this belongs to:\n    0: negative u edge (left)\n    1: positive u edge (right)\n    2: negative v edge (top)\n    3: positive v edge (bottom)*/\n  int      edge;\n  /*The (signed) perpendicular distance of the edge point from a line parallel\n     to the edge passing through the finder center, in (u,v) coordinates.\n    This is also re-used by RANSAC to store inlier flags.*/\n  int      extent;\n};\n\n\n/*The center of a finder pattern obtained from the crossing of one or more\n   clusters of horizontal finder lines with one or more clusters of vertical\n   finder lines.*/\nstruct qr_finder_center{\n  /*The estimated location of the finder center.*/\n  qr_point           pos;\n  /*The list of edge points from the crossing lines.*/\n  qr_finder_edge_pt *edge_pts;\n  /*The number of edge points from the crossing lines.*/\n  int                nedge_pts;\n};\n\n\nstatic int qr_finder_vline_cmp(const void *_a,const void *_b){\n  const qr_finder_line *a;\n  const qr_finder_line *b;\n  a=(const qr_finder_line *)_a;\n  b=(const qr_finder_line *)_b;\n  return ((a->pos[0]>b->pos[0])-(a->pos[0]<b->pos[0])<<1)+\n   (a->pos[1]>b->pos[1])-(a->pos[1]<b->pos[1]);\n}\n\n/*Clusters adjacent lines into groups that are large enough to be crossing a\n   finder pattern (relative to their length).\n  _clusters:  The buffer in which to store the clusters found.\n  _neighbors: The buffer used to store the lists of lines in each cluster.\n  _lines:     The list of lines to cluster.\n              Horizontal lines must be sorted in ascending order by Y\n               coordinate, with ties broken by X coordinate.\n              Vertical lines must be sorted in ascending order by X coordinate,\n               with ties broken by Y coordinate.\n  _nlines:    The number of lines in the set of lines to cluster.\n  _v:         0 for horizontal lines, or 1 for vertical lines.\n  Return: The number of clusters.*/\nstatic int qr_finder_cluster_lines(qr_finder_cluster *_clusters,\n qr_finder_line **_neighbors,qr_finder_line *_lines,int _nlines,int _v){\n  unsigned char   *mark;\n  qr_finder_line **neighbors;\n  int              nneighbors;\n  int              nclusters;\n  int              i;\n  /*TODO: Kalman filters!*/\n  mark=(unsigned char *)calloc(_nlines,sizeof(*mark));\n  neighbors=_neighbors;\n  nclusters=0;\n  for(i=0;i<_nlines-1;i++)if(!mark[i]){\n    int len;\n    int j;\n    nneighbors=1;\n    neighbors[0]=_lines+i;\n    len=_lines[i].len;\n    for(j=i+1;j<_nlines;j++)if(!mark[j]){\n      const qr_finder_line *a;\n      const qr_finder_line *b;\n      int                   thresh;\n      a=neighbors[nneighbors-1];\n      b=_lines+j;\n      /*The clustering threshold is proportional to the size of the lines,\n         since minor noise in large areas can interrupt patterns more easily\n         at high resolutions.*/\n      thresh=a->len+7>>2;\n      if(abs(a->pos[1-_v]-b->pos[1-_v])>thresh)break;\n      if(abs(a->pos[_v]-b->pos[_v])>thresh)continue;\n      if(abs(a->pos[_v]+a->len-b->pos[_v]-b->len)>thresh)continue;\n      if(a->boffs>0&&b->boffs>0&&\n       abs(a->pos[_v]-a->boffs-b->pos[_v]+b->boffs)>thresh){\n        continue;\n      }\n      if(a->eoffs>0&&b->eoffs>0&&\n       abs(a->pos[_v]+a->len+a->eoffs-b->pos[_v]-b->len-b->eoffs)>thresh){\n        continue;\n      }\n      neighbors[nneighbors++]=_lines+j;\n      len+=b->len;\n    }\n    /*We require at least three lines to form a cluster, which eliminates a\n       large number of false positives, saving considerable decoding time.\n      This should still be sufficient for 1-pixel codes with no noise.*/\n    if(nneighbors<3)continue;\n    /*The expected number of lines crossing a finder pattern is equal to their\n       average length.\n      We accept the cluster if size is at least 1/3 their average length (this\n       is a very small threshold, but was needed for some test images).*/\n    len=((len<<1)+nneighbors)/(nneighbors<<1);\n    if(nneighbors*(5<<QR_FINDER_SUBPREC)>=len){\n      _clusters[nclusters].lines=neighbors;\n      _clusters[nclusters].nlines=nneighbors;\n      for(j=0;j<nneighbors;j++)mark[neighbors[j]-_lines]=1;\n      neighbors+=nneighbors;\n      nclusters++;\n    }\n  }\n  free(mark);\n  return nclusters;\n}\n\n/*Adds the coordinates of the edge points from the lines contained in the\n   given list of clusters to the list of edge points for a finder center.\n  Only the edge point position is initialized.\n  The edge label and extent are set by qr_finder_edge_pts_aff_classify()\n   or qr_finder_edge_pts_hom_classify().\n  _edge_pts:   The buffer in which to store the edge points.\n  _nedge_pts:  The current number of edge points in the buffer.\n  _neighbors:  The list of lines in the cluster.\n  _nneighbors: The number of lines in the list of lines in the cluster.\n  _v:          0 for horizontal lines and 1 for vertical lines.\n  Return: The new total number of edge points.*/\nstatic int qr_finder_edge_pts_fill(qr_finder_edge_pt *_edge_pts,int _nedge_pts,\n qr_finder_cluster **_neighbors,int _nneighbors,int _v){\n  int i;\n  for(i=0;i<_nneighbors;i++){\n    qr_finder_cluster *c;\n    int                j;\n    c=_neighbors[i];\n    for(j=0;j<c->nlines;j++){\n      qr_finder_line *l;\n      l=c->lines[j];\n      if(l->boffs>0){\n        _edge_pts[_nedge_pts].pos[0]=l->pos[0];\n        _edge_pts[_nedge_pts].pos[1]=l->pos[1];\n        _edge_pts[_nedge_pts].pos[_v]-=l->boffs;\n        _nedge_pts++;\n      }\n      if(l->eoffs>0){\n        _edge_pts[_nedge_pts].pos[0]=l->pos[0];\n        _edge_pts[_nedge_pts].pos[1]=l->pos[1];\n        _edge_pts[_nedge_pts].pos[_v]+=l->len+l->eoffs;\n        _nedge_pts++;\n      }\n    }\n  }\n  return _nedge_pts;\n}\n\nstatic int qr_finder_center_cmp(const void *_a,const void *_b){\n  const qr_finder_center *a;\n  const qr_finder_center *b;\n  a=(const qr_finder_center *)_a;\n  b=(const qr_finder_center *)_b;\n  return ((b->nedge_pts>a->nedge_pts)-(b->nedge_pts<a->nedge_pts)<<2)+\n   ((a->pos[1]>b->pos[1])-(a->pos[1]<b->pos[1])<<1)+\n   (a->pos[0]>b->pos[0])-(a->pos[0]<b->pos[0]);\n}\n\n/*Determine if a horizontal line crosses a vertical line.\n  _hline: The horizontal line.\n  _vline: The vertical line.\n  Return: A non-zero value if the lines cross, or zero if they do not.*/\nstatic int qr_finder_lines_are_crossing(const qr_finder_line *_hline,\n const qr_finder_line *_vline){\n  return\n   _hline->pos[0]<=_vline->pos[0]&&_vline->pos[0]<_hline->pos[0]+_hline->len&&\n   _vline->pos[1]<=_hline->pos[1]&&_hline->pos[1]<_vline->pos[1]+_vline->len;\n}\n\n/*Finds horizontal clusters that cross corresponding vertical clusters,\n   presumably corresponding to a finder center.\n  _center:     The buffer in which to store putative finder centers.\n  _edge_pts:   The buffer to use for the edge point lists for each finder\n                center.\n  _hclusters:  The clusters of horizontal lines crossing finder patterns.\n  _nhclusters: The number of horizontal line clusters.\n  _vclusters:  The clusters of vertical lines crossing finder patterns.\n  _nvclusters: The number of vertical line clusters.\n  Return: The number of putative finder centers.*/\nstatic int qr_finder_find_crossings(qr_finder_center *_centers,\n qr_finder_edge_pt *_edge_pts,qr_finder_cluster *_hclusters,int _nhclusters,\n qr_finder_cluster *_vclusters,int _nvclusters){\n  qr_finder_cluster **hneighbors;\n  qr_finder_cluster **vneighbors;\n  unsigned char      *hmark;\n  unsigned char      *vmark;\n  int                 ncenters;\n  int                 i;\n  int                 j;\n  hneighbors=(qr_finder_cluster **)malloc(_nhclusters*sizeof(*hneighbors));\n  vneighbors=(qr_finder_cluster **)malloc(_nvclusters*sizeof(*vneighbors));\n  hmark=(unsigned char *)calloc(_nhclusters,sizeof(*hmark));\n  vmark=(unsigned char *)calloc(_nvclusters,sizeof(*vmark));\n  ncenters=0;\n  /*TODO: This may need some re-working.\n    We should be finding groups of clusters such that _all_ horizontal lines in\n     _all_ horizontal clusters in the group cross _all_ vertical lines in _all_\n     vertical clusters in the group.\n    This is equivalent to finding the maximum bipartite clique in the\n     connectivity graph, which requires linear progamming to solve efficiently.\n    In principle, that is easy to do, but a realistic implementation without\n     floating point is a lot of work (and computationally expensive).\n    Right now we are relying on a sufficient border around the finder patterns\n     to prevent false positives.*/\n  for(i=0;i<_nhclusters;i++)if(!hmark[i]){\n    qr_finder_line *a;\n    qr_finder_line *b;\n    int             nvneighbors;\n    int             nedge_pts;\n    int             y;\n    a=_hclusters[i].lines[_hclusters[i].nlines>>1];\n    y=nvneighbors=0;\n    for(j=0;j<_nvclusters;j++)if(!vmark[j]){\n      b=_vclusters[j].lines[_vclusters[j].nlines>>1];\n      if(qr_finder_lines_are_crossing(a,b)){\n        vmark[j]=1;\n        y+=(b->pos[1]<<1)+b->len;\n        if(b->boffs>0&&b->eoffs>0)y+=b->eoffs-b->boffs;\n        vneighbors[nvneighbors++]=_vclusters+j;\n      }\n    }\n    if(nvneighbors>0){\n      qr_finder_center *c;\n      int               nhneighbors;\n      int               x;\n      x=(a->pos[0]<<1)+a->len;\n      if(a->boffs>0&&a->eoffs>0)x+=a->eoffs-a->boffs;\n      hneighbors[0]=_hclusters+i;\n      nhneighbors=1;\n      j=nvneighbors>>1;\n      b=vneighbors[j]->lines[vneighbors[j]->nlines>>1];\n      for(j=i+1;j<_nhclusters;j++)if(!hmark[j]){\n        a=_hclusters[j].lines[_hclusters[j].nlines>>1];\n        if(qr_finder_lines_are_crossing(a,b)){\n          hmark[j]=1;\n          x+=(a->pos[0]<<1)+a->len;\n          if(a->boffs>0&&a->eoffs>0)x+=a->eoffs-a->boffs;\n          hneighbors[nhneighbors++]=_hclusters+j;\n        }\n      }\n      c=_centers+ncenters++;\n      c->pos[0]=(x+nhneighbors)/(nhneighbors<<1);\n      c->pos[1]=(y+nvneighbors)/(nvneighbors<<1);\n      c->edge_pts=_edge_pts;\n      nedge_pts=qr_finder_edge_pts_fill(_edge_pts,0,\n       hneighbors,nhneighbors,0);\n      nedge_pts=qr_finder_edge_pts_fill(_edge_pts,nedge_pts,\n       vneighbors,nvneighbors,1);\n      c->nedge_pts=nedge_pts;\n      _edge_pts+=nedge_pts;\n    }\n  }\n  free(vmark);\n  free(hmark);\n  free(vneighbors);\n  free(hneighbors);\n  /*Sort the centers by decreasing numbers of edge points.*/\n  qsort(_centers,ncenters,sizeof(*_centers),qr_finder_center_cmp);\n  return ncenters;\n}\n\n/*Locates a set of putative finder centers in the image.\n  First we search for horizontal and vertical lines that have\n   (dark:light:dark:light:dark) runs with size ratios of roughly (1:1:3:1:1).\n  Then we cluster them into groups such that each subsequent pair of endpoints\n   is close to the line before it in the cluster.\n  This will locate many line clusters that don't cross a finder pattern, but\n   qr_finder_find_crossings() will filter most of them out.\n  Where horizontal and vertical clusters cross, a prospective finder center is\n   returned.\n  _centers:  Returns a pointer to a freshly-allocated list of finder centers.\n             This must be freed by the caller.\n  _edge_pts: Returns a pointer to a freshly-allocated list of edge points\n              around those centers.\n             This must be freed by the caller.\n  _img:      The binary image to search.\n  _width:    The width of the image.\n  _height:   The height of the image.\n  Return: The number of putative finder centers located.*/\nstatic int qr_finder_centers_locate(qr_finder_center **_centers,\n qr_finder_edge_pt **_edge_pts, qr_reader *reader,\n int _width,int _height){\n  qr_finder_line     *hlines = reader->finder_lines[0].lines;\n  int                 nhlines = reader->finder_lines[0].nlines;\n  qr_finder_line     *vlines = reader->finder_lines[1].lines;\n  int                 nvlines = reader->finder_lines[1].nlines;\n\n  qr_finder_line    **hneighbors;\n  qr_finder_cluster  *hclusters;\n  int                 nhclusters;\n  qr_finder_line    **vneighbors;\n  qr_finder_cluster  *vclusters;\n  int                 nvclusters;\n  int                 ncenters;\n\n  /*Cluster the detected lines.*/\n  hneighbors=(qr_finder_line **)malloc(nhlines*sizeof(*hneighbors));\n  /*We require more than one line per cluster, so there are at most nhlines/2.*/\n  hclusters=(qr_finder_cluster *)malloc((nhlines>>1)*sizeof(*hclusters));\n  nhclusters=qr_finder_cluster_lines(hclusters,hneighbors,hlines,nhlines,0);\n  /*We need vertical lines to be sorted by X coordinate, with ties broken by Y\n     coordinate, for clustering purposes.\n    We scan the image in the opposite order for cache efficiency, so sort the\n     lines we found here.*/\n  qsort(vlines,nvlines,sizeof(*vlines),qr_finder_vline_cmp);\n  vneighbors=(qr_finder_line **)malloc(nvlines*sizeof(*vneighbors));\n  /*We require more than one line per cluster, so there are at most nvlines/2.*/\n  vclusters=(qr_finder_cluster *)malloc((nvlines>>1)*sizeof(*vclusters));\n  nvclusters=qr_finder_cluster_lines(vclusters,vneighbors,vlines,nvlines,1);\n  /*Find line crossings among the clusters.*/\n  if(nhclusters>=3&&nvclusters>=3){\n    qr_finder_edge_pt  *edge_pts;\n    qr_finder_center   *centers;\n    int                 nedge_pts;\n    int                 i;\n    nedge_pts=0;\n    for(i=0;i<nhclusters;i++)nedge_pts+=hclusters[i].nlines;\n    for(i=0;i<nvclusters;i++)nedge_pts+=vclusters[i].nlines;\n    nedge_pts<<=1;\n    edge_pts=(qr_finder_edge_pt *)malloc(nedge_pts*sizeof(*edge_pts));\n    centers=(qr_finder_center *)malloc(\n     QR_MINI(nhclusters,nvclusters)*sizeof(*centers));\n    ncenters=qr_finder_find_crossings(centers,edge_pts,\n     hclusters,nhclusters,vclusters,nvclusters);\n    *_centers=centers;\n    *_edge_pts=edge_pts;\n  }\n  else ncenters=0;\n  free(vclusters);\n  free(vneighbors);\n  free(hclusters);\n  free(hneighbors);\n  return ncenters;\n}\n\n\n\nstatic void qr_point_translate(qr_point _point,int _dx,int _dy){\n  _point[0]+=_dx;\n  _point[1]+=_dy;\n}\n\nstatic unsigned qr_point_distance2(const qr_point _p1,const qr_point _p2){\n  return (_p1[0]-_p2[0])*(_p1[0]-_p2[0])+(_p1[1]-_p2[1])*(_p1[1]-_p2[1]);\n}\n\n/*Returns the cross product of the three points, which is positive if they are\n   in CCW order (in a right-handed coordinate system), and 0 if they're\n   colinear.*/\nstatic int qr_point_ccw(const qr_point _p0,\n const qr_point _p1,const qr_point _p2){\n  return (_p1[0]-_p0[0])*(_p2[1]-_p0[1])-(_p1[1]-_p0[1])*(_p2[0]-_p0[0]);\n}\n\n\n\n/*Evaluates a line equation at a point.\n  _line: The line to evaluate.\n  _x:    The X coordinate of the point.\n  _y:    The y coordinate of the point.\n  Return: The value of the line equation _line[0]*_x+_line[1]*_y+_line[2].*/\nstatic int qr_line_eval(qr_line _line,int _x,int _y){\n  return _line[0]*_x+_line[1]*_y+_line[2];\n}\n\n/*Computes a line passing through the given point using the specified second\n   order statistics.\n  Given a line defined by the equation\n    A*x+B*y+C = 0 ,\n   the least squares fit to n points (x_i,y_i) must satisfy the two equations\n    A^2 + (Syy - Sxx)/Sxy*A*B - B^2 = 0 ,\n    C = -(xbar*A+ybar*B) ,\n   where\n    xbar = sum(x_i)/n ,\n    ybar = sum(y_i)/n ,\n    Sxx = sum((x_i-xbar)**2) ,\n    Sxy = sum((x_i-xbar)*(y_i-ybar)) ,\n    Syy = sum((y_i-ybar)**2) .\n  The quadratic can be solved for the ratio (A/B) or (B/A):\n    A/B = (Syy + sqrt((Sxx-Syy)**2 + 4*Sxy**2) - Sxx)/(-2*Sxy) ,\n    B/A = (Sxx + sqrt((Sxx-Syy)**2 + 4*Sxy**2) - Syy)/(-2*Sxy) .\n  We pick the one that leads to the larger ratio to avoid destructive\n   cancellation (and e.g., 0/0 for horizontal or vertical lines).\n  The above solutions correspond to the actual minimum.\n  The other solution of the quadratic corresponds to a saddle point of the\n   least squares objective function.\n  _l:   Returns the fitted line values A, B, and C.\n  _x0:  The X coordinate of the point the line is supposed to pass through.\n  _y0:  The Y coordinate of the point the line is supposed to pass through.\n  _sxx: The sum Sxx.\n  _sxy: The sum Sxy.\n  _syy: The sum Syy.\n  _res: The maximum number of bits occupied by the product of any two of\n         _l[0] or _l[1].\n        Smaller numbers give less angular resolution, but allow more overhead\n         room for computations.*/\nstatic void qr_line_fit(qr_line _l,int _x0,int _y0,\n int _sxx,int _sxy,int _syy,int _res){\n  int dshift;\n  int dround;\n  int u;\n  int v;\n  int w;\n  u=abs(_sxx-_syy);\n  v=-_sxy<<1;\n  w=qr_ihypot(u,v);\n  /*Computations in later stages can easily overflow with moderate sizes, so we\n     compute a shift factor to scale things down into a managable range.\n    We ensure that the product of any two of _l[0] and _l[1] fits within _res\n     bits, which allows computation of line intersections without overflow.*/\n  dshift=QR_MAXI(0,QR_MAXI(qr_ilog(u),qr_ilog(abs(v)))+1-(_res+1>>1));\n  dround=(1<<dshift)>>1;\n  if(_sxx>_syy){\n    _l[0]=v+dround>>dshift;\n    _l[1]=u+w+dround>>dshift;\n  }\n  else{\n    _l[0]=u+w+dround>>dshift;\n    _l[1]=v+dround>>dshift;\n  }\n  _l[2]=-(_x0*_l[0]+_y0*_l[1]);\n}\n\n/*Perform a least-squares line fit to a list of points.\n  At least two points are required.*/\nstatic void qr_line_fit_points(qr_line _l,qr_point *_p,int _np,int _res){\n  int sx;\n  int sy;\n  int xmin;\n  int xmax;\n  int ymin;\n  int ymax;\n  int xbar;\n  int ybar;\n  int dx;\n  int dy;\n  int sxx;\n  int sxy;\n  int syy;\n  int sshift;\n  int sround;\n  int i;\n  sx=sy=0;\n  ymax=xmax=INT_MIN;\n  ymin=xmin=INT_MAX;\n  for(i=0;i<_np;i++){\n    sx+=_p[i][0];\n    xmin=QR_MINI(xmin,_p[i][0]);\n    xmax=QR_MAXI(xmax,_p[i][0]);\n    sy+=_p[i][1];\n    ymin=QR_MINI(ymin,_p[i][1]);\n    ymax=QR_MAXI(ymax,_p[i][1]);\n  }\n  xbar=(sx+(_np>>1))/_np;\n  ybar=(sy+(_np>>1))/_np;\n  sshift=QR_MAXI(0,qr_ilog(_np*QR_MAXI(QR_MAXI(xmax-xbar,xbar-xmin),\n   QR_MAXI(ymax-ybar,ybar-ymin)))-(QR_INT_BITS-1>>1));\n  sround=(1<<sshift)>>1;\n  sxx=sxy=syy=0;\n  for(i=0;i<_np;i++){\n    dx=_p[i][0]-xbar+sround>>sshift;\n    dy=_p[i][1]-ybar+sround>>sshift;\n    sxx+=dx*dx;\n    sxy+=dx*dy;\n    syy+=dy*dy;\n  }\n  qr_line_fit(_l,xbar,ybar,sxx,sxy,syy,_res);\n}\n\nstatic void qr_line_orient(qr_line _l,int _x,int _y){\n  if(qr_line_eval(_l,_x,_y)<0){\n    _l[0]=-_l[0];\n    _l[1]=-_l[1];\n    _l[2]=-_l[2];\n  }\n}\n\nstatic int qr_line_isect(qr_point _p,const qr_line _l0,const qr_line _l1){\n  int d;\n  int x;\n  int y;\n  d=_l0[0]*_l1[1]-_l0[1]*_l1[0];\n  if(d==0)return -1;\n  x=_l0[1]*_l1[2]-_l1[1]*_l0[2];\n  y=_l1[0]*_l0[2]-_l0[0]*_l1[2];\n  if(d<0){\n    x=-x;\n    y=-y;\n    d=-d;\n  }\n  _p[0]=QR_DIVROUND(x,d);\n  _p[1]=QR_DIVROUND(y,d);\n  return 0;\n}\n\n\n\n/*An affine homography.\n  This maps from the image (at subpel resolution) to a square domain with\n   power-of-two sides (of res bits) and back.*/\nstruct qr_aff{\n  int fwd[2][2];\n  int inv[2][2];\n  int x0;\n  int y0;\n  int res;\n  int ires;\n};\n\n\nstatic void qr_aff_init(qr_aff *_aff,\n const qr_point _p0,const qr_point _p1,const qr_point _p2,int _res){\n  int det;\n  int ires;\n  int dx1;\n  int dy1;\n  int dx2;\n  int dy2;\n  /*det is ensured to be positive by our caller.*/\n  dx1=_p1[0]-_p0[0];\n  dx2=_p2[0]-_p0[0];\n  dy1=_p1[1]-_p0[1];\n  dy2=_p2[1]-_p0[1];\n  det=dx1*dy2-dy1*dx2;\n  ires=QR_MAXI((qr_ilog(abs(det))>>1)-2,0);\n  _aff->fwd[0][0]=dx1;\n  _aff->fwd[0][1]=dx2;\n  _aff->fwd[1][0]=dy1;\n  _aff->fwd[1][1]=dy2;\n  _aff->inv[0][0]=QR_DIVROUND(dy2<<_res,det>>ires);\n  _aff->inv[0][1]=QR_DIVROUND(-dx2<<_res,det>>ires);\n  _aff->inv[1][0]=QR_DIVROUND(-dy1<<_res,det>>ires);\n  _aff->inv[1][1]=QR_DIVROUND(dx1<<_res,det>>ires);\n  _aff->x0=_p0[0];\n  _aff->y0=_p0[1];\n  _aff->res=_res;\n  _aff->ires=ires;\n}\n\n/*Map from the image (at subpel resolution) into the square domain.*/\nstatic void qr_aff_unproject(qr_point _q,const qr_aff *_aff,\n int _x,int _y){\n  _q[0]=_aff->inv[0][0]*(_x-_aff->x0)+_aff->inv[0][1]*(_y-_aff->y0)\n   +(1<<_aff->ires>>1)>>_aff->ires;\n  _q[1]=_aff->inv[1][0]*(_x-_aff->x0)+_aff->inv[1][1]*(_y-_aff->y0)\n   +(1<<_aff->ires>>1)>>_aff->ires;\n}\n\n/*Map from the square domain into the image (at subpel resolution).*/\nstatic void qr_aff_project(qr_point _p,const qr_aff *_aff,\n int _u,int _v){\n  _p[0]=(_aff->fwd[0][0]*_u+_aff->fwd[0][1]*_v+(1<<_aff->res-1)>>_aff->res)\n   +_aff->x0;\n  _p[1]=(_aff->fwd[1][0]*_u+_aff->fwd[1][1]*_v+(1<<_aff->res-1)>>_aff->res)\n   +_aff->y0;\n}\n\n\n\n/*A full homography.\n  Like the affine homography, this maps from the image (at subpel resolution)\n   to a square domain with power-of-two sides (of res bits) and back.*/\nstruct qr_hom{\n  int fwd[3][2];\n  int inv[3][2];\n  int fwd22;\n  int inv22;\n  int x0;\n  int y0;\n  int res;\n};\n\n\nstatic void qr_hom_init(qr_hom *_hom,int _x0,int _y0,\n int _x1,int _y1,int _x2,int _y2,int _x3,int _y3,int _res){\n  int dx10;\n  int dx20;\n  int dx30;\n  int dx31;\n  int dx32;\n  int dy10;\n  int dy20;\n  int dy30;\n  int dy31;\n  int dy32;\n  int a20;\n  int a21;\n  int a22;\n  int b0;\n  int b1;\n  int b2;\n  int s1;\n  int s2;\n  int r1;\n  int r2;\n  dx10=_x1-_x0;\n  dx20=_x2-_x0;\n  dx30=_x3-_x0;\n  dx31=_x3-_x1;\n  dx32=_x3-_x2;\n  dy10=_y1-_y0;\n  dy20=_y2-_y0;\n  dy30=_y3-_y0;\n  dy31=_y3-_y1;\n  dy32=_y3-_y2;\n  a20=dx32*dy10-dx10*dy32;\n  a21=dx20*dy31-dx31*dy20;\n  a22=dx32*dy31-dx31*dy32;\n  /*Figure out if we need to downscale anything.*/\n  b0=qr_ilog(QR_MAXI(abs(dx10),abs(dy10)))+qr_ilog(abs(a20+a22));\n  b1=qr_ilog(QR_MAXI(abs(dx20),abs(dy20)))+qr_ilog(abs(a21+a22));\n  b2=qr_ilog(QR_MAXI(QR_MAXI(abs(a20),abs(a21)),abs(a22)));\n  s1=QR_MAXI(0,_res+QR_MAXI(QR_MAXI(b0,b1),b2)-(QR_INT_BITS-2));\n  r1=(1<<s1)>>1;\n  /*Compute the final coefficients of the forward transform.\n    The 32x32->64 bit multiplies are really needed for accuracy with large\n     versions.*/\n  _hom->fwd[0][0]=QR_FIXMUL(dx10,a20+a22,r1,s1);\n  _hom->fwd[0][1]=QR_FIXMUL(dx20,a21+a22,r1,s1);\n  _hom->x0=_x0;\n  _hom->fwd[1][0]=QR_FIXMUL(dy10,a20+a22,r1,s1);\n  _hom->fwd[1][1]=QR_FIXMUL(dy20,a21+a22,r1,s1);\n  _hom->y0=_y0;\n  _hom->fwd[2][0]=a20+r1>>s1;\n  _hom->fwd[2][1]=a21+r1>>s1;\n  _hom->fwd22=s1>_res?a22+(r1>>_res)>>s1-_res:a22<<_res-s1;\n  /*Now compute the inverse transform.*/\n  b0=qr_ilog(QR_MAXI(QR_MAXI(abs(dx10),abs(dx20)),abs(dx30)))+\n   qr_ilog(QR_MAXI(abs(_hom->fwd[0][0]),abs(_hom->fwd[1][0])));\n  b1=qr_ilog(QR_MAXI(QR_MAXI(abs(dy10),abs(dy20)),abs(dy30)))+\n   qr_ilog(QR_MAXI(abs(_hom->fwd[0][1]),abs(_hom->fwd[1][1])));\n  b2=qr_ilog(abs(a22))-s1;\n  s2=QR_MAXI(0,QR_MAXI(b0,b1)+b2-(QR_INT_BITS-3));\n  r2=(1<<s2)>>1;\n  s1+=s2;\n  r1<<=s2;\n  /*The 32x32->64 bit multiplies are really needed for accuracy with large\n     versions.*/\n  _hom->inv[0][0]=QR_FIXMUL(_hom->fwd[1][1],a22,r1,s1);\n  _hom->inv[0][1]=QR_FIXMUL(-_hom->fwd[0][1],a22,r1,s1);\n  _hom->inv[1][0]=QR_FIXMUL(-_hom->fwd[1][0],a22,r1,s1);\n  _hom->inv[1][1]=QR_FIXMUL(_hom->fwd[0][0],a22,r1,s1);\n  _hom->inv[2][0]=QR_FIXMUL(_hom->fwd[1][0],_hom->fwd[2][1],\n   -QR_EXTMUL(_hom->fwd[1][1],_hom->fwd[2][0],r2),s2);\n  _hom->inv[2][1]=QR_FIXMUL(_hom->fwd[0][1],_hom->fwd[2][0],\n   -QR_EXTMUL(_hom->fwd[0][0],_hom->fwd[2][1],r2),s2);\n  _hom->inv22=QR_FIXMUL(_hom->fwd[0][0],_hom->fwd[1][1],\n   -QR_EXTMUL(_hom->fwd[0][1],_hom->fwd[1][0],r2),s2);\n  _hom->res=_res;\n}\n\n\n/*Map from the image (at subpel resolution) into the square domain.\n  Returns a negative value if the point went to infinity.*/\nstatic int qr_hom_unproject(qr_point _q,const qr_hom *_hom,int _x,int _y){\n  int x;\n  int y;\n  int w;\n  _x-=_hom->x0;\n  _y-=_hom->y0;\n  x=_hom->inv[0][0]*_x+_hom->inv[0][1]*_y;\n  y=_hom->inv[1][0]*_x+_hom->inv[1][1]*_y;\n  w=_hom->inv[2][0]*_x+_hom->inv[2][1]*_y\n   +_hom->inv22+(1<<_hom->res-1)>>_hom->res;\n  if(w==0){\n    _q[0]=x<0?INT_MIN:INT_MAX;\n    _q[1]=y<0?INT_MIN:INT_MAX;\n    return -1;\n  }\n  else{\n    if(w<0){\n      x=-x;\n      y=-y;\n      w=-w;\n    }\n    _q[0]=QR_DIVROUND(x,w);\n    _q[1]=QR_DIVROUND(y,w);\n  }\n  return 0;\n}\n\n/*Finish a partial projection, converting from homogeneous coordinates to the\n   normal 2-D representation.\n  In loops, we can avoid many multiplies by computing the homogeneous _x, _y,\n   and _w incrementally, but we cannot avoid the divisions, done here.*/\nstatic void qr_hom_fproject(qr_point _p,const qr_hom *_hom,\n int _x,int _y,int _w){\n  if(_w==0){\n    _p[0]=_x<0?INT_MIN:INT_MAX;\n    _p[1]=_y<0?INT_MIN:INT_MAX;\n  }\n  else{\n    if(_w<0){\n      _x=-_x;\n      _y=-_y;\n      _w=-_w;\n    }\n    _p[0]=QR_DIVROUND(_x,_w)+_hom->x0;\n    _p[1]=QR_DIVROUND(_y,_w)+_hom->y0;\n  }\n}\n\n#if defined(QR_DEBUG)\n/*Map from the square domain into the image (at subpel resolution).\n  Currently only used directly by debug code.*/\nstatic void qr_hom_project(qr_point _p,const qr_hom *_hom,\n int _u,int _v){\n  qr_hom_fproject(_p,_hom,\n   _hom->fwd[0][0]*_u+_hom->fwd[0][1]*_v,\n   _hom->fwd[1][0]*_u+_hom->fwd[1][1]*_v,\n   _hom->fwd[2][0]*_u+_hom->fwd[2][1]*_v+_hom->fwd22);\n}\n#endif\n\n\n\n/*All the information we've collected about a finder pattern in the current\n   configuration.*/\nstruct qr_finder{\n  /*The module size along each axis (in the square domain).*/\n  int                size[2];\n  /*The version estimated from the module size along each axis.*/\n  int                eversion[2];\n  /*The list of classified edge points for each edge.*/\n  qr_finder_edge_pt *edge_pts[4];\n  /*The number of edge points classified as belonging to each edge.*/\n  int                nedge_pts[4];\n  /*The number of inliers found after running RANSAC on each edge.*/\n  int                ninliers[4];\n  /*The center of the finder pattern (in the square domain).*/\n  qr_point           o;\n  /*The finder center information from the original image.*/\n  qr_finder_center  *c;\n};\n\n\nstatic int qr_cmp_edge_pt(const void *_a,const void *_b){\n  const qr_finder_edge_pt *a;\n  const qr_finder_edge_pt *b;\n  a=(const qr_finder_edge_pt *)_a;\n  b=(const qr_finder_edge_pt *)_b;\n  return ((a->edge>b->edge)-(a->edge<b->edge)<<1)+\n   (a->extent>b->extent)-(a->extent<b->extent);\n}\n\n/*Computes the index of the edge each edge point belongs to, and its (signed)\n   distance along the corresponding axis from the center of the finder pattern\n   (in the square domain).\n  The resulting list of edge points is sorted by edge index, with ties broken\n   by extent.*/\nstatic void qr_finder_edge_pts_aff_classify(qr_finder *_f,const qr_aff *_aff){\n  qr_finder_center *c;\n  int               i;\n  int               e;\n  c=_f->c;\n  for(e=0;e<4;e++)_f->nedge_pts[e]=0;\n  for(i=0;i<c->nedge_pts;i++){\n    qr_point q;\n    int      d;\n    qr_aff_unproject(q,_aff,c->edge_pts[i].pos[0],c->edge_pts[i].pos[1]);\n    qr_point_translate(q,-_f->o[0],-_f->o[1]);\n    d=abs(q[1])>abs(q[0]);\n    e=d<<1|(q[d]>=0);\n    _f->nedge_pts[e]++;\n    c->edge_pts[i].edge=e;\n    c->edge_pts[i].extent=q[d];\n  }\n  qsort(c->edge_pts,c->nedge_pts,sizeof(*c->edge_pts),qr_cmp_edge_pt);\n  _f->edge_pts[0]=c->edge_pts;\n  for(e=1;e<4;e++)_f->edge_pts[e]=_f->edge_pts[e-1]+_f->nedge_pts[e-1];\n}\n\n/*Computes the index of the edge each edge point belongs to, and its (signed)\n   distance along the corresponding axis from the center of the finder pattern\n   (in the square domain).\n  The resulting list of edge points is sorted by edge index, with ties broken\n   by extent.*/\nstatic void qr_finder_edge_pts_hom_classify(qr_finder *_f,const qr_hom *_hom){\n  qr_finder_center *c;\n  int               i;\n  int               e;\n  c=_f->c;\n  for(e=0;e<4;e++)_f->nedge_pts[e]=0;\n  for(i=0;i<c->nedge_pts;i++){\n    qr_point q;\n    int      d;\n    if(qr_hom_unproject(q,_hom,\n     c->edge_pts[i].pos[0],c->edge_pts[i].pos[1])>=0){\n      qr_point_translate(q,-_f->o[0],-_f->o[1]);\n      d=abs(q[1])>abs(q[0]);\n      e=d<<1|(q[d]>=0);\n      _f->nedge_pts[e]++;\n      c->edge_pts[i].edge=e;\n      c->edge_pts[i].extent=q[d];\n    }\n    else{\n      c->edge_pts[i].edge=4;\n      c->edge_pts[i].extent=q[0];\n    }\n  }\n  qsort(c->edge_pts,c->nedge_pts,sizeof(*c->edge_pts),qr_cmp_edge_pt);\n  _f->edge_pts[0]=c->edge_pts;\n  for(e=1;e<4;e++)_f->edge_pts[e]=_f->edge_pts[e-1]+_f->nedge_pts[e-1];\n}\n\n/*TODO: Perhaps these thresholds should be on the module size instead?\n  Unfortunately, I'd need real-world images of codes with larger versions to\n   see if these thresholds are still effective, but such versions aren't used\n   often.*/\n\n/*The amount that the estimated version numbers are allowed to differ from the\n   real version number and still be considered valid.*/\n#define QR_SMALL_VERSION_SLACK (1)\n/*Since cell phone cameras can have severe radial distortion, the estimated\n   version for larger versions can be off by larger amounts.*/\n#define QR_LARGE_VERSION_SLACK (3)\n\n/*Estimates the size of a module after classifying the edge points.\n  _width:  The distance between UL and UR in the square domain.\n  _height: The distance between UL and DL in the square domain.*/\nstatic int qr_finder_estimate_module_size_and_version(qr_finder *_f,\n int _width,int _height){\n  qr_point offs;\n  int      sums[4];\n  int      nsums[4];\n  int      usize;\n  int      nusize;\n  int      vsize;\n  int      nvsize;\n  int      uversion;\n  int      vversion;\n  int      e;\n  offs[0]=offs[1]=0;\n  for(e=0;e<4;e++)if(_f->nedge_pts[e]>0){\n    qr_finder_edge_pt *edge_pts;\n    int                sum;\n    int                mean;\n    int                n;\n    int                i;\n    /*Average the samples for this edge, dropping the top and bottom 25%.*/\n    edge_pts=_f->edge_pts[e];\n    n=_f->nedge_pts[e];\n    sum=0;\n    for(i=(n>>2);i<n-(n>>2);i++)sum+=edge_pts[i].extent;\n    n=n-((n>>2)<<1);\n    mean=QR_DIVROUND(sum,n);\n    offs[e>>1]+=mean;\n    sums[e]=sum;\n    nsums[e]=n;\n  }\n  else nsums[e]=sums[e]=0;\n  /*If we have samples on both sides of an axis, refine our idea of where the\n     unprojected finder center is located.*/\n  if(_f->nedge_pts[0]>0&&_f->nedge_pts[1]>0){\n    _f->o[0]-=offs[0]>>1;\n    sums[0]-=offs[0]*nsums[0]>>1;\n    sums[1]-=offs[0]*nsums[1]>>1;\n  }\n  if(_f->nedge_pts[2]>0&&_f->nedge_pts[3]>0){\n    _f->o[1]-=offs[1]>>1;\n    sums[2]-=offs[1]*nsums[2]>>1;\n    sums[3]-=offs[1]*nsums[3]>>1;\n  }\n  /*We must have _some_ samples along each axis... if we don't, our transform\n     must be pretty severely distorting the original square (e.g., with\n     coordinates so large as to cause overflow).*/\n  nusize=nsums[0]+nsums[1];\n  if(nusize<=0)return -1;\n  /*The module size is 1/3 the average edge extent.*/\n  nusize*=3;\n  usize=sums[1]-sums[0];\n  usize=((usize<<1)+nusize)/(nusize<<1);\n  if(usize<=0)return -1;\n  /*Now estimate the version directly from the module size and the distance\n     between the finder patterns.\n    This is done independently using the extents along each axis.\n    If either falls significantly outside the valid range (1 to 40), reject the\n     configuration.*/\n  uversion=(_width-8*usize)/(usize<<2);\n  if(uversion<1||uversion>40+QR_LARGE_VERSION_SLACK)return -1;\n  /*Now do the same for the other axis.*/\n  nvsize=nsums[2]+nsums[3];\n  if(nvsize<=0)return -1;\n  nvsize*=3;\n  vsize=sums[3]-sums[2];\n  vsize=((vsize<<1)+nvsize)/(nvsize<<1);\n  if(vsize<=0)return -1;\n  vversion=(_height-8*vsize)/(vsize<<2);\n  if(vversion<1||vversion>40+QR_LARGE_VERSION_SLACK)return -1;\n  /*If the estimated version using extents along one axis is significantly\n     different than the estimated version along the other axis, then the axes\n     have significantly different scalings (relative to the grid).\n    This can happen, e.g., when we have multiple adjacent QR codes, and we've\n     picked two finder patterns from one and the third finder pattern from\n     another, e.g.:\n      X---DL UL---X\n      |....   |....\n      X....  UR....\n    Such a configuration might even pass any other geometric checks if we\n     didn't reject it here.*/\n  if(abs(uversion-vversion)>QR_LARGE_VERSION_SLACK)return -1;\n  _f->size[0]=usize;\n  _f->size[1]=vsize;\n  /*We intentionally do not compute an average version from the sizes along\n     both axes.\n    In the presence of projective distortion, one of them will be much more\n     accurate than the other.*/\n  _f->eversion[0]=uversion;\n  _f->eversion[1]=vversion;\n  return 0;\n}\n\n/*Eliminate outliers from the classified edge points with RANSAC.*/\nstatic void qr_finder_ransac(qr_finder *_f,const qr_aff *_hom,\n isaac_ctx *_isaac,int _e){\n  qr_finder_edge_pt *edge_pts;\n  int                best_ninliers;\n  int                n;\n  edge_pts=_f->edge_pts[_e];\n  n=_f->nedge_pts[_e];\n  best_ninliers=0;\n  if(n>1){\n    int max_iters;\n    int i;\n    int j;\n    /*17 iterations is enough to guarantee an outlier-free sample with more\n       than 99% probability given as many as 50% outliers.*/\n    max_iters=17;\n    for(i=0;i<max_iters;i++){\n      qr_point  q0;\n      qr_point  q1;\n      int       ninliers;\n      int       thresh;\n      int       p0i;\n      int       p1i;\n      int      *p0;\n      int      *p1;\n      int       j;\n      /*Pick two random points on this edge.*/\n      p0i=isaac_next_uint(_isaac,n);\n      p1i=isaac_next_uint(_isaac,n-1);\n      if(p1i>=p0i)p1i++;\n      p0=edge_pts[p0i].pos;\n      p1=edge_pts[p1i].pos;\n      /*If the corresponding line is not within 45 degrees of the proper\n         orientation in the square domain, reject it outright.\n        This can happen, e.g., when highly skewed orientations cause points to\n         be misclassified into the wrong edge.\n        The irony is that using such points might produce a line which _does_\n         pass the corresponding validity checks.*/\n      qr_aff_unproject(q0,_hom,p0[0],p0[1]);\n      qr_aff_unproject(q1,_hom,p1[0],p1[1]);\n      qr_point_translate(q0,-_f->o[0],-_f->o[1]);\n      qr_point_translate(q1,-_f->o[0],-_f->o[1]);\n      if(abs(q0[_e>>1]-q1[_e>>1])>abs(q0[1-(_e>>1)]-q1[1-(_e>>1)]))continue;\n      /*Identify the other edge points which are inliers.\n        The squared distance should be distributed as a \\Chi^2 distribution\n         with one degree of freedom, which means for a 95% confidence the\n         point should lie within a factor 3.8414588 ~= 4 times the expected\n         variance of the point locations.\n        We grossly approximate the standard deviation as 1 pixel in one\n         direction, and 0.5 pixels in the other (because we average two\n         coordinates).*/\n      thresh=qr_isqrt(qr_point_distance2(p0,p1)<<2*QR_FINDER_SUBPREC+1);\n      ninliers=0;\n      for(j=0;j<n;j++){\n        if(abs(qr_point_ccw(p0,p1,edge_pts[j].pos))<=thresh){\n          edge_pts[j].extent|=1;\n          ninliers++;\n        }\n        else edge_pts[j].extent&=~1;\n      }\n      if(ninliers>best_ninliers){\n        for(j=0;j<n;j++)edge_pts[j].extent<<=1;\n        best_ninliers=ninliers;\n        /*The actual number of iterations required is\n            log(1-\\alpha)/log(1-r*r),\n           where \\alpha is the required probability of taking a sample with\n            no outliers (e.g., 0.99) and r is the estimated ratio of inliers\n            (e.g. ninliers/n).\n          This is just a rough (but conservative) approximation, but it\n           should be good enough to stop the iteration early when we find\n           a good set of inliers.*/\n        if(ninliers>n>>1)max_iters=(67*n-63*ninliers-1)/(n<<1);\n      }\n    }\n    /*Now collect all the inliers at the beginning of the list.*/\n    for(i=j=0;j<best_ninliers;i++)if(edge_pts[i].extent&2){\n      if(j<i){\n        qr_finder_edge_pt tmp;\n        *&tmp=*(edge_pts+i);\n        *(edge_pts+j)=*(edge_pts+i);\n        *(edge_pts+i)=*&tmp;\n      }\n      j++;\n    }\n  }\n  _f->ninliers[_e]=best_ninliers;\n}\n\n/*Perform a least-squares line fit to an edge of a finder pattern using the\n   inliers found by RANSAC.*/\nstatic int qr_line_fit_finder_edge(qr_line _l,\n const qr_finder *_f,int _e,int _res){\n  qr_finder_edge_pt *edge_pts;\n  qr_point          *pts;\n  int                npts;\n  int                i;\n  npts=_f->ninliers[_e];\n  if(npts<2)return -1;\n  /*We could write a custom version of qr_line_fit_points that accesses\n     edge_pts directly, but this saves on code size and doesn't measurably slow\n     things down.*/\n  pts=(qr_point *)malloc(npts*sizeof(*pts));\n  edge_pts=_f->edge_pts[_e];\n  for(i=0;i<npts;i++){\n    pts[i][0]=edge_pts[i].pos[0];\n    pts[i][1]=edge_pts[i].pos[1];\n  }\n  qr_line_fit_points(_l,pts,npts,_res);\n  /*Make sure the center of the finder pattern lies in the positive halfspace\n     of the line.*/\n  qr_line_orient(_l,_f->c->pos[0],_f->c->pos[1]);\n  free(pts);\n  return 0;\n}\n\n/*Perform a least-squares line fit to a pair of common finder edges using the\n   inliers found by RANSAC.\n  Unlike a normal edge fit, we guarantee that this one succeeds by creating at\n   least one point on each edge using the estimated module size if it has no\n   inliers.*/\nstatic void qr_line_fit_finder_pair(qr_line _l,const qr_aff *_aff,\n const qr_finder *_f0,const qr_finder *_f1,int _e){\n  qr_point          *pts;\n  int                npts;\n  qr_finder_edge_pt *edge_pts;\n  qr_point           q;\n  int                n0;\n  int                n1;\n  int                i;\n  n0=_f0->ninliers[_e];\n  n1=_f1->ninliers[_e];\n  /*We could write a custom version of qr_line_fit_points that accesses\n     edge_pts directly, but this saves on code size and doesn't measurably slow\n     things down.*/\n  npts=QR_MAXI(n0,1)+QR_MAXI(n1,1);\n  pts=(qr_point *)malloc(npts*sizeof(*pts));\n  if(n0>0){\n    edge_pts=_f0->edge_pts[_e];\n    for(i=0;i<n0;i++){\n      pts[i][0]=edge_pts[i].pos[0];\n      pts[i][1]=edge_pts[i].pos[1];\n    }\n  }\n  else{\n    q[0]=_f0->o[0];\n    q[1]=_f0->o[1];\n    q[_e>>1]+=_f0->size[_e>>1]*(2*(_e&1)-1);\n    qr_aff_project(pts[0],_aff,q[0],q[1]);\n    n0++;\n  }\n  if(n1>0){\n    edge_pts=_f1->edge_pts[_e];\n    for(i=0;i<n1;i++){\n      pts[n0+i][0]=edge_pts[i].pos[0];\n      pts[n0+i][1]=edge_pts[i].pos[1];\n    }\n  }\n  else{\n    q[0]=_f1->o[0];\n    q[1]=_f1->o[1];\n    q[_e>>1]+=_f1->size[_e>>1]*(2*(_e&1)-1);\n    qr_aff_project(pts[n0],_aff,q[0],q[1]);\n    n1++;\n  }\n  qr_line_fit_points(_l,pts,npts,_aff->res);\n  /*Make sure at least one finder center lies in the positive halfspace.*/\n  qr_line_orient(_l,_f0->c->pos[0],_f0->c->pos[1]);\n  free(pts);\n}\n\nstatic int qr_finder_quick_crossing_check(const unsigned char *_img,\n int _width,int _height,int _x0,int _y0,int _x1,int _y1,int _v){\n  /*The points must be inside the image, and have a !_v:_v:!_v pattern.\n    We don't scan the whole line initially, but quickly reject if the endpoints\n     aren't !_v, or the midpoint isn't _v.\n    If either end point is out of the image, or we don't encounter a _v pixel,\n     we return a negative value, indicating the region should be considered\n     empty.\n    Otherwise, we return a positive value to indicate it is non-empty.*/\n  if(_x0<0||_x0>=_width||_y0<0||_y0>=_height||\n   _x1<0||_x1>=_width||_y1<0||_y1>=_height){\n    return -1;\n  }\n  if(!_img[_y0*_width+_x0]!=_v||!_img[_y1*_width+_x1]!=_v)return 1;\n  if(!_img[(_y0+_y1>>1)*_width+(_x0+_x1>>1)]==_v)return -1;\n  return 0;\n}\n\n/*Locate the midpoint of a _v segment along a !_v:_v:!_v line from (_x0,_y0) to\n   (_x1,_y1).\n  All coordinates, which are NOT in subpel resolution, must lie inside the\n   image, and the endpoints are already assumed to have the value !_v.\n  The returned value is in subpel resolution.*/\nstatic int qr_finder_locate_crossing(const unsigned char *_img,\n int _width,int _height,int _x0,int _y0,int _x1,int _y1,int _v,qr_point _p){\n  qr_point x0;\n  qr_point x1;\n  qr_point dx;\n  int      step[2];\n  int      steep;\n  int      err;\n  int      derr;\n  /*Use Bresenham's algorithm to trace along the line and find the exact\n     transitions from !_v to _v and back.*/\n  x0[0]=_x0;\n  x0[1]=_y0;\n  x1[0]=_x1;\n  x1[1]=_y1;\n  dx[0]=abs(_x1-_x0);\n  dx[1]=abs(_y1-_y0);\n  steep=dx[1]>dx[0];\n  err=0;\n  derr=dx[1-steep];\n  step[0]=((_x0<_x1)<<1)-1;\n  step[1]=((_y0<_y1)<<1)-1;\n  /*Find the first crossing from !_v to _v.*/\n  for(;;){\n    /*If we make it all the way to the other side, there's no crossing.*/\n    if(x0[steep]==x1[steep])return -1;\n    x0[steep]+=step[steep];\n    err+=derr;\n    if(err<<1>dx[steep]){\n      x0[1-steep]+=step[1-steep];\n      err-=dx[steep];\n    }\n    if(!_img[x0[1]*_width+x0[0]]!=_v)break;\n  }\n  /*Find the last crossing from _v to !_v.*/\n  err=0;\n  for(;;){\n    if(x0[steep]==x1[steep])break;\n    x1[steep]-=step[steep];\n    err+=derr;\n    if(err<<1>dx[steep]){\n      x1[1-steep]-=step[1-steep];\n      err-=dx[steep];\n    }\n    if(!_img[x1[1]*_width+x1[0]]!=_v)break;\n  }\n  /*Return the midpoint of the _v segment.*/\n  _p[0]=(x0[0]+x1[0]+1<<QR_FINDER_SUBPREC)>>1;\n  _p[1]=(x0[1]+x1[1]+1<<QR_FINDER_SUBPREC)>>1;\n  return 0;\n}\n\nstatic int qr_aff_line_step(const qr_aff *_aff,qr_line _l,\n int _v,int _du,int *_dv){\n  int shift;\n  int round;\n  int dv;\n  int n;\n  int d;\n  n=_aff->fwd[0][_v]*_l[0]+_aff->fwd[1][_v]*_l[1];\n  d=_aff->fwd[0][1-_v]*_l[0]+_aff->fwd[1][1-_v]*_l[1];\n  if(d<0){\n    n=-n;\n    d=-d;\n  }\n  shift=QR_MAXI(0,qr_ilog(_du)+qr_ilog(abs(n))+3-QR_INT_BITS);\n  round=(1<<shift)>>1;\n  n=n+round>>shift;\n  d=d+round>>shift;\n  /*The line should not be outside 45 degrees of horizontal/vertical.\n    TODO: We impose this restriction to help ensure the loop below terminates,\n     but it should not technically be required.\n    It also, however, ensures we avoid division by zero.*/\n  if(abs(n)>=d)return -1;\n  n=-_du*n;\n  dv=QR_DIVROUND(n,d);\n  if(abs(dv)>=_du)return -1;\n  *_dv=dv;\n  return 0;\n}\n\n/*Computes the Hamming distance between two bit patterns (the number of bits\n   that differ).\n  May stop counting after _maxdiff differences.*/\nstatic int qr_hamming_dist(unsigned _y1,unsigned _y2,int _maxdiff){\n  unsigned y;\n  int      ret;\n  y=_y1^_y2;\n  for(ret=0;ret<_maxdiff&&y;ret++)y&=y-1;\n  return ret;\n}\n\n/*Retrieve a bit (guaranteed to be 0 or 1) from the image, given coordinates in\n   subpel resolution which have not been bounds checked.*/\nstatic int qr_img_get_bit(const unsigned char *_img,int _width,int _height,\n int _x,int _y){\n  _x>>=QR_FINDER_SUBPREC;\n  _y>>=QR_FINDER_SUBPREC;\n  return _img[QR_CLAMPI(0,_y,_height-1)*_width+QR_CLAMPI(0,_x,_width-1)]!=0;\n}\n\n#if defined(QR_DEBUG)\n#include \"image.h\"\n\nstatic void qr_finder_dump_aff_undistorted(qr_finder *_ul,qr_finder *_ur,\n qr_finder *_dl,qr_aff *_aff,const unsigned char *_img,int _width,int _height){\n  unsigned char *gimg;\n  FILE          *fout;\n  int            lpsz;\n  int            pixel_size;\n  int            dim;\n  int            min;\n  int            max;\n  int            u;\n  int            y;\n  int            i;\n  int            j;\n  lpsz=qr_ilog(_ur->size[0]+_ur->size[1]+_dl->size[0]+_dl->size[1])-6;\n  pixel_size=1<<lpsz;\n  dim=(1<<_aff->res-lpsz)+128;\n  gimg=(unsigned char *)malloc(dim*dim*sizeof(*gimg));\n  for(i=0;i<dim;i++)for(j=0;j<dim;j++){\n    qr_point p;\n    qr_aff_project(p,_aff,(j-64)<<lpsz,(i-64)<<lpsz);\n    gimg[i*dim+j]=_img[\n     QR_CLAMPI(0,p[1]>>QR_FINDER_SUBPREC,_height-1)*_width+\n     QR_CLAMPI(0,p[0]>>QR_FINDER_SUBPREC,_width-1)];\n  }\n  {\n    min=(_ur->o[0]-7*_ur->size[0]>>lpsz)+64;\n    if(min<0)min=0;\n    max=(_ur->o[0]+7*_ur->size[0]>>lpsz)+64;\n    if(max>dim)max=dim;\n    for(y=-7;y<=7;y++){\n      i=(_ur->o[1]+y*_ur->size[1]>>lpsz)+64;\n      if(i<0||i>=dim)continue;\n      for(j=min;j<max;j++)gimg[i*dim+j]=0x7F;\n    }\n    min=(_ur->o[1]-7*_ur->size[1]>>lpsz)+64;\n    if(min<0)min=0;\n    max=(_ur->o[1]+7*_ur->size[1]>>lpsz)+64;\n    if(max>dim)max=dim;\n    for(u=-7;u<=7;u++){\n      j=(_ur->o[0]+u*_ur->size[0]>>lpsz)+64;\n      if(j<0||j>=dim)continue;\n      for(i=min;i<max;i++)gimg[i*dim+j]=0x7F;\n    }\n  }\n  {\n    min=(_dl->o[0]-7*_dl->size[0]>>lpsz)+64;\n    if(min<0)min=0;\n    max=(_dl->o[0]+7*_dl->size[0]>>lpsz)+64;\n    if(max>dim)max=dim;\n    for(y=-7;y<=7;y++){\n      i=(_dl->o[1]+y*_dl->size[1]>>lpsz)+64;\n      if(i<0||i>=dim)continue;\n      for(j=min;j<max;j++)gimg[i*dim+j]=0x7F;\n    }\n    min=(_dl->o[1]-7*_dl->size[1]>>lpsz)+64;\n    if(min<0)min=0;\n    max=(_dl->o[1]+7*_dl->size[1]>>lpsz)+64;\n    if(max>dim)max=dim;\n    for(u=-7;u<=7;u++){\n      j=(_dl->o[0]+u*_dl->size[0]>>lpsz)+64;\n      if(j<0||j>=dim)continue;\n      for(i=min;i<max;i++)gimg[i*dim+j]=0x7F;\n    }\n  }\n  fout=fopen(\"undistorted_aff.png\",\"wb\");\n  image_write_png(gimg,dim,dim,fout);\n  fclose(fout);\n  free(gimg);\n}\n\nstatic void qr_finder_dump_hom_undistorted(qr_finder *_ul,qr_finder *_ur,\n qr_finder *_dl,qr_hom *_hom,const unsigned char *_img,int _width,int _height){\n  unsigned char *gimg;\n  FILE          *fout;\n  int            lpsz;\n  int            pixel_size;\n  int            dim;\n  int            min;\n  int            max;\n  int            u;\n  int            v;\n  int            i;\n  int            j;\n  lpsz=qr_ilog(_ur->size[0]+_ur->size[1]+_dl->size[0]+_dl->size[1])-6;\n  pixel_size=1<<lpsz;\n  dim=(1<<_hom->res-lpsz)+256;\n  gimg=(unsigned char *)malloc(dim*dim*sizeof(*gimg));\n  for(i=0;i<dim;i++)for(j=0;j<dim;j++){\n    qr_point p;\n    qr_hom_project(p,_hom,(j-128)<<lpsz,(i-128)<<lpsz);\n    gimg[i*dim+j]=_img[\n     QR_CLAMPI(0,p[1]>>QR_FINDER_SUBPREC,_height-1)*_width+\n     QR_CLAMPI(0,p[0]>>QR_FINDER_SUBPREC,_width-1)];\n  }\n  {\n    min=(_ur->o[0]-7*_ur->size[0]>>lpsz)+128;\n    if(min<0)min=0;\n    max=(_ur->o[0]+7*_ur->size[0]>>lpsz)+128;\n    if(max>dim)max=dim;\n    for(v=-7;v<=7;v++){\n      i=(_ur->o[1]+v*_ur->size[1]>>lpsz)+128;\n      if(i<0||i>=dim)continue;\n      for(j=min;j<max;j++)gimg[i*dim+j]=0x7F;\n    }\n    min=(_ur->o[1]-7*_ur->size[1]>>lpsz)+128;\n    if(min<0)min=0;\n    max=(_ur->o[1]+7*_ur->size[1]>>lpsz)+128;\n    if(max>dim)max=dim;\n    for(u=-7;u<=7;u++){\n      j=(_ur->o[0]+u*_ur->size[0]>>lpsz)+128;\n      if(j<0||j>=dim)continue;\n      for(i=min;i<max;i++)gimg[i*dim+j]=0x7F;\n    }\n  }\n  {\n    min=(_dl->o[0]-7*_dl->size[0]>>lpsz)+128;\n    if(min<0)min=0;\n    max=(_dl->o[0]+7*_dl->size[0]>>lpsz)+128;\n    if(max>dim)max=dim;\n    for(v=-7;v<=7;v++){\n      i=(_dl->o[1]+v*_dl->size[1]>>lpsz)+128;\n      if(i<0||i>=dim)continue;\n      for(j=min;j<max;j++)gimg[i*dim+j]=0x7F;\n    }\n    min=(_dl->o[1]-7*_dl->size[1]>>lpsz)+128;\n    if(min<0)min=0;\n    max=(_dl->o[1]+7*_dl->size[1]>>lpsz)+128;\n    if(max>dim)max=dim;\n    for(u=-7;u<=7;u++){\n      j=(_dl->o[0]+u*_dl->size[0]>>lpsz)+128;\n      if(j<0||j>=dim)continue;\n      for(i=min;i<max;i++)gimg[i*dim+j]=0x7F;\n    }\n  }\n  fout=fopen(\"undistorted_hom.png\",\"wb\");\n  image_write_png(gimg,dim,dim,fout);\n  fclose(fout);\n  free(gimg);\n}\n#endif\n\n\n\n/*A homography from one region of the grid back to the image.\n  Unlike a qr_hom, this does not include an inverse transform and maps directly\n   from the grid points, not a square with power-of-two sides.*/\nstruct qr_hom_cell{\n  int fwd[3][3];\n  int x0;\n  int y0;\n  int u0;\n  int v0;\n};\n\n\nstatic void qr_hom_cell_init(qr_hom_cell *_cell,int _u0,int _v0,\n int _u1,int _v1,int _u2,int _v2,int _u3,int _v3,int _x0,int _y0,\n int _x1,int _y1,int _x2,int _y2,int _x3,int _y3){\n  int du10;\n  int du20;\n  int du30;\n  int du31;\n  int du32;\n  int dv10;\n  int dv20;\n  int dv30;\n  int dv31;\n  int dv32;\n  int dx10;\n  int dx20;\n  int dx30;\n  int dx31;\n  int dx32;\n  int dy10;\n  int dy20;\n  int dy30;\n  int dy31;\n  int dy32;\n  int a00;\n  int a01;\n  int a02;\n  int a10;\n  int a11;\n  int a12;\n  int a20;\n  int a21;\n  int a22;\n  int i00;\n  int i01;\n  int i10;\n  int i11;\n  int i20;\n  int i21;\n  int i22;\n  int b0;\n  int b1;\n  int b2;\n  int shift;\n  int round;\n  int x;\n  int y;\n  int w;\n  /*First, correct for the arrangement of the source points.\n    We take advantage of the fact that we know the source points have a very\n     limited dynamic range (so there will never be overflow) and a small amount\n     of projective distortion.*/\n  du10=_u1-_u0;\n  du20=_u2-_u0;\n  du30=_u3-_u0;\n  du31=_u3-_u1;\n  du32=_u3-_u2;\n  dv10=_v1-_v0;\n  dv20=_v2-_v0;\n  dv30=_v3-_v0;\n  dv31=_v3-_v1;\n  dv32=_v3-_v2;\n  /*Compute the coefficients of the forward transform from the unit square to\n     the source point configuration.*/\n  a20=du32*dv10-du10*dv32;\n  a21=du20*dv31-du31*dv20;\n  if(a20||a21)a22=du32*dv31-du31*dv32;\n  /*If the source grid points aren't in a non-affine arrangement, there's no\n     reason to scale everything by du32*dv31-du31*dv32.\n    Not doing so allows a much larger dynamic range, and is the only way we can\n     initialize a base cell that covers the whole grid.*/\n  else a22=1;\n  a00=du10*(a20+a22);\n  a01=du20*(a21+a22);\n  a10=dv10*(a20+a22);\n  a11=dv20*(a21+a22);\n  /*Now compute the inverse transform.*/\n  i00=a11*a22;\n  i01=-a01*a22;\n  i10=-a10*a22;\n  i11=a00*a22;\n  i20=a10*a21-a11*a20;\n  i21=a01*a20-a00*a21;\n  i22=a00*a11-a01*a10;\n  /*Invert the coefficients.\n    Since i22 is the largest, we divide it by all the others.\n    The quotient is often exact (e.g., when the source points contain no\n     projective distortion), and is never zero.\n    Hence we can use zero to signal \"infinity\" when the divisor is zero.*/\n  if(i00)i00=QR_FLIPSIGNI(QR_DIVROUND(i22,abs(i00)),i00);\n  if(i01)i01=QR_FLIPSIGNI(QR_DIVROUND(i22,abs(i01)),i01);\n  if(i10)i10=QR_FLIPSIGNI(QR_DIVROUND(i22,abs(i10)),i10);\n  if(i11)i11=QR_FLIPSIGNI(QR_DIVROUND(i22,abs(i11)),i11);\n  if(i20)i20=QR_FLIPSIGNI(QR_DIVROUND(i22,abs(i20)),i20);\n  if(i21)i21=QR_FLIPSIGNI(QR_DIVROUND(i22,abs(i21)),i21);\n  /*Now compute the map from the unit square into the image.*/\n  dx10=_x1-_x0;\n  dx20=_x2-_x0;\n  dx30=_x3-_x0;\n  dx31=_x3-_x1;\n  dx32=_x3-_x2;\n  dy10=_y1-_y0;\n  dy20=_y2-_y0;\n  dy30=_y3-_y0;\n  dy31=_y3-_y1;\n  dy32=_y3-_y2;\n  a20=dx32*dy10-dx10*dy32;\n  a21=dx20*dy31-dx31*dy20;\n  a22=dx32*dy31-dx31*dy32;\n  /*Figure out if we need to downscale anything.*/\n  b0=qr_ilog(QR_MAXI(abs(dx10),abs(dy10)))+qr_ilog(abs(a20+a22));\n  b1=qr_ilog(QR_MAXI(abs(dx20),abs(dy20)))+qr_ilog(abs(a21+a22));\n  b2=qr_ilog(QR_MAXI(QR_MAXI(abs(a20),abs(a21)),abs(a22)));\n  shift=QR_MAXI(0,QR_MAXI(QR_MAXI(b0,b1),b2)-(QR_INT_BITS-3-QR_ALIGN_SUBPREC));\n  round=(1<<shift)>>1;\n  /*Compute the final coefficients of the forward transform.*/\n  a00=QR_FIXMUL(dx10,a20+a22,round,shift);\n  a01=QR_FIXMUL(dx20,a21+a22,round,shift);\n  a10=QR_FIXMUL(dy10,a20+a22,round,shift);\n  a11=QR_FIXMUL(dy20,a21+a22,round,shift);\n  /*And compose the two transforms.\n    Since we inverted the coefficients above, we divide by them here instead\n     of multiplying.\n    This lets us take advantage of the full dynamic range.\n    Note a zero divisor is really \"infinity\", and thus the quotient should also\n     be zero.*/\n  _cell->fwd[0][0]=(i00?QR_DIVROUND(a00,i00):0)+(i10?QR_DIVROUND(a01,i10):0);\n  _cell->fwd[0][1]=(i01?QR_DIVROUND(a00,i01):0)+(i11?QR_DIVROUND(a01,i11):0);\n  _cell->fwd[1][0]=(i00?QR_DIVROUND(a10,i00):0)+(i10?QR_DIVROUND(a11,i10):0);\n  _cell->fwd[1][1]=(i01?QR_DIVROUND(a10,i01):0)+(i11?QR_DIVROUND(a11,i11):0);\n  _cell->fwd[2][0]=(i00?QR_DIVROUND(a20,i00):0)+(i10?QR_DIVROUND(a21,i10):0)\n   +(i20?QR_DIVROUND(a22,i20):0)+round>>shift;\n  _cell->fwd[2][1]=(i01?QR_DIVROUND(a20,i01):0)+(i11?QR_DIVROUND(a21,i11):0)\n   +(i21?QR_DIVROUND(a22,i21):0)+round>>shift;\n  _cell->fwd[2][2]=a22+round>>shift;\n  /*Mathematically, a02 and a12 are exactly zero.\n    However, that concentrates all of the rounding error in the (_u3,_v3)\n     corner; we compute offsets which distribute it over the whole range.*/\n  x=_cell->fwd[0][0]*du10+_cell->fwd[0][1]*dv10;\n  y=_cell->fwd[1][0]*du10+_cell->fwd[1][1]*dv10;\n  w=_cell->fwd[2][0]*du10+_cell->fwd[2][1]*dv10+_cell->fwd[2][2];\n  a02=dx10*w-x;\n  a12=dy10*w-y;\n  x=_cell->fwd[0][0]*du20+_cell->fwd[0][1]*dv20;\n  y=_cell->fwd[1][0]*du20+_cell->fwd[1][1]*dv20;\n  w=_cell->fwd[2][0]*du20+_cell->fwd[2][1]*dv20+_cell->fwd[2][2];\n  a02+=dx20*w-x;\n  a12+=dy20*w-y;\n  x=_cell->fwd[0][0]*du30+_cell->fwd[0][1]*dv30;\n  y=_cell->fwd[1][0]*du30+_cell->fwd[1][1]*dv30;\n  w=_cell->fwd[2][0]*du30+_cell->fwd[2][1]*dv30+_cell->fwd[2][2];\n  a02+=dx30*w-x;\n  a12+=dy30*w-y;\n  _cell->fwd[0][2]=a02+2>>2;\n  _cell->fwd[1][2]=a12+2>>2;\n  _cell->x0=_x0;\n  _cell->y0=_y0;\n  _cell->u0=_u0;\n  _cell->v0=_v0;\n}\n\n/*Finish a partial projection, converting from homogeneous coordinates to the\n   normal 2-D representation.\n  In loops, we can avoid many multiplies by computing the homogeneous _x, _y,\n   and _w incrementally, but we cannot avoid the divisions, done here.*/\nstatic void qr_hom_cell_fproject(qr_point _p,const qr_hom_cell *_cell,\n int _x,int _y,int _w){\n  if(_w==0){\n    _p[0]=_x<0?INT_MIN:INT_MAX;\n    _p[1]=_y<0?INT_MIN:INT_MAX;\n  }\n  else{\n    if(_w<0){\n      _x=-_x;\n      _y=-_y;\n      _w=-_w;\n    }\n    _p[0]=QR_DIVROUND(_x,_w)+_cell->x0;\n    _p[1]=QR_DIVROUND(_y,_w)+_cell->y0;\n  }\n}\n\nstatic void qr_hom_cell_project(qr_point _p,const qr_hom_cell *_cell,\n int _u,int _v,int _res){\n  _u-=_cell->u0<<_res;\n  _v-=_cell->v0<<_res;\n  qr_hom_cell_fproject(_p,_cell,\n   _cell->fwd[0][0]*_u+_cell->fwd[0][1]*_v+(_cell->fwd[0][2]<<_res),\n   _cell->fwd[1][0]*_u+_cell->fwd[1][1]*_v+(_cell->fwd[1][2]<<_res),\n   _cell->fwd[2][0]*_u+_cell->fwd[2][1]*_v+(_cell->fwd[2][2]<<_res));\n}\n\n\n\n/*Retrieves the bits corresponding to the alignment pattern template centered\n   at the given location in the original image (at subpel precision).*/\nstatic unsigned qr_alignment_pattern_fetch(qr_point _p[5][5],int _x0,int _y0,\n const unsigned char *_img,int _width,int _height){\n  unsigned v;\n  int      i;\n  int      j;\n  int      k;\n  int      dx;\n  int      dy;\n  dx=_x0-_p[2][2][0];\n  dy=_y0-_p[2][2][1];\n  v=0;\n  for(k=i=0;i<5;i++)for(j=0;j<5;j++,k++){\n    v|=qr_img_get_bit(_img,_width,_height,_p[i][j][0]+dx,_p[i][j][1]+dy)<<k;\n  }\n  return v;\n}\n\n/*Searches for an alignment pattern near the given location.*/\nstatic int qr_alignment_pattern_search(qr_point _p,const qr_hom_cell *_cell,\n int _u,int _v,int _r,const unsigned char *_img,int _width,int _height){\n  qr_point c[4];\n  int      nc[4];\n  qr_point p[5][5];\n  qr_point pc;\n  unsigned best_match;\n  int      best_dist;\n  int      bestx;\n  int      besty;\n  unsigned match;\n  int      dist;\n  int      u;\n  int      v;\n  int      x0;\n  int      y0;\n  int      w0;\n  int      x;\n  int      y;\n  int      w;\n  int      dxdu;\n  int      dydu;\n  int      dwdu;\n  int      dxdv;\n  int      dydv;\n  int      dwdv;\n  int      dx;\n  int      dy;\n  int      i;\n  int      j;\n  /*Build up a basic template using _cell to control shape and scale.\n    We project the points in the template back to the image just once, since if\n     the alignment pattern has moved, we don't really know why.\n    If it's because of radial distortion, or the code wasn't flat, or something\n     else, there's no reason to expect that a re-projection around each\n     subsequent search point would be any closer to the actual shape than our\n     first projection.\n    Therefore we simply slide this template around, as is.*/\n  u=(_u-2)-_cell->u0;\n  v=(_v-2)-_cell->v0;\n  x0=_cell->fwd[0][0]*u+_cell->fwd[0][1]*v+_cell->fwd[0][2];\n  y0=_cell->fwd[1][0]*u+_cell->fwd[1][1]*v+_cell->fwd[1][2];\n  w0=_cell->fwd[2][0]*u+_cell->fwd[2][1]*v+_cell->fwd[2][2];\n  dxdu=_cell->fwd[0][0];\n  dydu=_cell->fwd[1][0];\n  dwdu=_cell->fwd[2][0];\n  dxdv=_cell->fwd[0][1];\n  dydv=_cell->fwd[1][1];\n  dwdv=_cell->fwd[2][1];\n  for(i=0;i<5;i++){\n    x=x0;\n    y=y0;\n    w=w0;\n    for(j=0;j<5;j++){\n      qr_hom_cell_fproject(p[i][j],_cell,x,y,w);\n      x+=dxdu;\n      y+=dydu;\n      w+=dwdu;\n    }\n    x0+=dxdv;\n    y0+=dydv;\n    w0+=dwdv;\n  }\n  bestx=p[2][2][0];\n  besty=p[2][2][1];\n  best_match=qr_alignment_pattern_fetch(p,bestx,besty,_img,_width,_height);\n  best_dist=qr_hamming_dist(best_match,0x1F8D63F,25);\n  if(best_dist>0){\n    u=_u-_cell->u0;\n    v=_v-_cell->v0;\n    x=_cell->fwd[0][0]*u+_cell->fwd[0][1]*v+_cell->fwd[0][2]<<QR_ALIGN_SUBPREC;\n    y=_cell->fwd[1][0]*u+_cell->fwd[1][1]*v+_cell->fwd[1][2]<<QR_ALIGN_SUBPREC;\n    w=_cell->fwd[2][0]*u+_cell->fwd[2][1]*v+_cell->fwd[2][2]<<QR_ALIGN_SUBPREC;\n    /*Search an area at most _r modules around the target location, in\n       concentric squares..*/\n    for(i=1;i<_r<<QR_ALIGN_SUBPREC;i++){\n      int side_len;\n      side_len=(i<<1)-1;\n      x-=dxdu+dxdv;\n      y-=dydu+dydv;\n      w-=dwdu+dwdv;\n      for(j=0;j<4*side_len;j++){\n        int      dir;\n        qr_hom_cell_fproject(pc,_cell,x,y,w);\n        match=qr_alignment_pattern_fetch(p,pc[0],pc[1],_img,_width,_height);\n        dist=qr_hamming_dist(match,0x1F8D63F,best_dist+1);\n        if(dist<best_dist){\n          best_match=match;\n          best_dist=dist;\n          bestx=pc[0];\n          besty=pc[1];\n        }\n        if(j<2*side_len){\n          dir=j>=side_len;\n          x+=_cell->fwd[0][dir];\n          y+=_cell->fwd[1][dir];\n          w+=_cell->fwd[2][dir];\n        }\n        else{\n          dir=j>=3*side_len;\n          x-=_cell->fwd[0][dir];\n          y-=_cell->fwd[1][dir];\n          w-=_cell->fwd[2][dir];\n        }\n        if(!best_dist)break;\n      }\n      if(!best_dist)break;\n    }\n  }\n  /*If the best result we got was sufficiently bad, reject the match.\n    If we're wrong and we include it, we can grossly distort the nearby\n     region, whereas using the initial starting point should at least be\n     consistent with the geometry we already have.*/\n  if(best_dist>6){\n    _p[0]=p[2][2][0];\n    _p[1]=p[2][2][1];\n    return -1;\n  }\n  /*Now try to get a more accurate location of the pattern center.*/\n  dx=bestx-p[2][2][0];\n  dy=besty-p[2][2][1];\n  memset(nc,0,sizeof(nc));\n  memset(c,0,sizeof(c));\n  /*We consider 8 lines across the finder pattern in turn.\n    If we actually found a symmetric pattern along that line, search for its\n     exact center in the image.\n    There are plenty more lines we could use if these don't work, but if we've\n     found anything remotely close to an alignment pattern, we should be able\n     to use most of these.*/\n  for(i=0;i<8;i++){\n    static const unsigned MASK_TESTS[8][2]={\n      {0x1040041,0x1000001},{0x0041040,0x0001000},\n      {0x0110110,0x0100010},{0x0011100,0x0001000},\n      {0x0420084,0x0400004},{0x0021080,0x0001000},\n      {0x0006C00,0x0004400},{0x0003800,0x0001000},\n    };\n    static const unsigned char MASK_COORDS[8][2]={\n      {0,0},{1,1},{4,0},{3,1},{2,0},{2,1},{0,2},{1,2}\n    };\n    if((best_match&MASK_TESTS[i][0])==MASK_TESTS[i][1]){\n      int x0;\n      int y0;\n      int x1;\n      int y1;\n      x0=p[MASK_COORDS[i][1]][MASK_COORDS[i][0]][0]+dx>>QR_FINDER_SUBPREC;\n      if(x0<0||x0>=_width)continue;\n      y0=p[MASK_COORDS[i][1]][MASK_COORDS[i][0]][1]+dy>>QR_FINDER_SUBPREC;\n      if(y0<0||y0>=_height)continue;\n      x1=p[4-MASK_COORDS[i][1]][4-MASK_COORDS[i][0]][0]+dx>>QR_FINDER_SUBPREC;\n      if(x1<0||x1>=_width)continue;\n      y1=p[4-MASK_COORDS[i][1]][4-MASK_COORDS[i][0]][1]+dy>>QR_FINDER_SUBPREC;\n      if(y1<0||y1>=_height)continue;\n      if(!qr_finder_locate_crossing(_img,_width,_height,x0,y0,x1,y1,i&1,pc)){\n        int w;\n        int cx;\n        int cy;\n        cx=pc[0]-bestx;\n        cy=pc[1]-besty;\n        if(i&1){\n          /*Weight crossings around the center dot more highly, as they are\n             generally more reliable.*/\n          w=3;\n          cx+=cx<<1;\n          cy+=cy<<1;\n        }\n        else w=1;\n        nc[i>>1]+=w;\n        c[i>>1][0]+=cx;\n        c[i>>1][1]+=cy;\n      }\n    }\n  }\n  /*Sum offsets from lines in orthogonal directions.*/\n  for(i=0;i<2;i++){\n    int a;\n    int b;\n    a=nc[i<<1];\n    b=nc[i<<1|1];\n    if(a&&b){\n      int w;\n      w=QR_MAXI(a,b);\n      c[i<<1][0]=QR_DIVROUND(w*(b*c[i<<1][0]+a*c[i<<1|1][0]),a*b);\n      c[i<<1][1]=QR_DIVROUND(w*(b*c[i<<1][1]+a*c[i<<1|1][1]),a*b);\n      nc[i<<1]=w<<1;\n    }\n    else{\n      c[i<<1][0]+=c[i<<1|1][0];\n      c[i<<1][1]+=c[i<<1|1][1];\n      nc[i<<1]+=b;\n    }\n  }\n  /*Average offsets from pairs of orthogonal lines.*/\n  c[0][0]+=c[2][0];\n  c[0][1]+=c[2][1];\n  nc[0]+=nc[2];\n  /*If we actually found any such lines, apply the adjustment.*/\n  if(nc[0]){\n    dx=QR_DIVROUND(c[0][0],nc[0]);\n    dy=QR_DIVROUND(c[0][1],nc[0]);\n    /*But only if it doesn't make things too much worse.*/\n    match=qr_alignment_pattern_fetch(p,bestx+dx,besty+dy,_img,_width,_height);\n    dist=qr_hamming_dist(match,0x1F8D63F,best_dist+1);\n    if(dist<=best_dist+1){\n      bestx+=dx;\n      besty+=dy;\n    }\n  }\n  _p[0]=bestx;\n  _p[1]=besty;\n  return 0;\n}\n\nstatic int qr_hom_fit(qr_hom *_hom,qr_finder *_ul,qr_finder *_ur,\n qr_finder *_dl,qr_point _p[4],const qr_aff *_aff,isaac_ctx *_isaac,\n const unsigned char *_img,int _width,int _height){\n  qr_point *b;\n  int       nb;\n  int       cb;\n  qr_point *r;\n  int       nr;\n  int       cr;\n  qr_line   l[4];\n  qr_point  q;\n  qr_point  p;\n  int       ox;\n  int       oy;\n  int       ru;\n  int       rv;\n  int       dru;\n  int       drv;\n  int       bu;\n  int       bv;\n  int       dbu;\n  int       dbv;\n  int       rx;\n  int       ry;\n  int       drxi;\n  int       dryi;\n  int       drxj;\n  int       dryj;\n  int       rdone;\n  int       nrempty;\n  int       rlastfit;\n  int       bx;\n  int       by;\n  int       dbxi;\n  int       dbyi;\n  int       dbxj;\n  int       dbyj;\n  int       bdone;\n  int       nbempty;\n  int       blastfit;\n  int       shift;\n  int       round;\n  int       version4;\n  int       brx;\n  int       bry;\n  int       i;\n  /*We attempt to correct large-scale perspective distortion by fitting lines\n     to the edge of the code area.\n    We could also look for an alignment pattern now, but that wouldn't work for\n     version 1 codes, which have no alignment pattern.\n    Even if the code is supposed to have one, there's go guarantee we'd find it\n     intact.*/\n  /*Fitting lines is easy for the edges on which we have two finder patterns.\n    After the fit, UL is guaranteed to be on the proper side, but if either of\n     the other two finder patterns aren't, something is wrong.*/\n  qr_finder_ransac(_ul,_aff,_isaac,0);\n  qr_finder_ransac(_dl,_aff,_isaac,0);\n  qr_line_fit_finder_pair(l[0],_aff,_ul,_dl,0);\n  if(qr_line_eval(l[0],_dl->c->pos[0],_dl->c->pos[1])<0||\n   qr_line_eval(l[0],_ur->c->pos[0],_ur->c->pos[1])<0){\n    return -1;\n  }\n  qr_finder_ransac(_ul,_aff,_isaac,2);\n  qr_finder_ransac(_ur,_aff,_isaac,2);\n  qr_line_fit_finder_pair(l[2],_aff,_ul,_ur,2);\n  if(qr_line_eval(l[2],_dl->c->pos[0],_dl->c->pos[1])<0||\n   qr_line_eval(l[2],_ur->c->pos[0],_ur->c->pos[1])<0){\n    return -1;\n  }\n  /*The edges which only have one finder pattern are more difficult.\n    We start by fitting a line to the edge of the one finder pattern we do\n     have.\n    This can fail due to an insufficient number of sample points, and even if\n     it succeeds can be fairly inaccurate, because all of the points are\n     clustered in one corner of the QR code.\n    If it fails, we just use an axis-aligned line in the affine coordinate\n     system.\n    Then we walk along the edge of the entire code, looking for\n     light:dark:light patterns perpendicular to the edge.\n    Wherever we find one, we take the center of the dark portion as an\n     additional sample point.\n    At the end, we re-fit the line using all such sample points found.*/\n  drv=_ur->size[1]>>1;\n  qr_finder_ransac(_ur,_aff,_isaac,1);\n  if(qr_line_fit_finder_edge(l[1],_ur,1,_aff->res)>=0){\n    if(qr_line_eval(l[1],_ul->c->pos[0],_ul->c->pos[1])<0||\n     qr_line_eval(l[1],_dl->c->pos[0],_dl->c->pos[1])<0){\n      return -1;\n    }\n    /*Figure out the change in ru for a given change in rv when stepping along\n       the fitted line.*/\n    if(qr_aff_line_step(_aff,l[1],1,drv,&dru)<0)return -1;\n  }\n  else dru=0;\n  ru=_ur->o[0]+3*_ur->size[0]-2*dru;\n  rv=_ur->o[1]-2*drv;\n  dbu=_dl->size[0]>>1;\n  qr_finder_ransac(_dl,_aff,_isaac,3);\n  if(qr_line_fit_finder_edge(l[3],_dl,3,_aff->res)>=0){\n    if(qr_line_eval(l[3],_ul->c->pos[0],_ul->c->pos[1])<0||\n     qr_line_eval(l[3],_ur->c->pos[0],_ur->c->pos[1])<0){\n      return -1;\n    }\n    /*Figure out the change in bv for a given change in bu when stepping along\n       the fitted line.*/\n    if(qr_aff_line_step(_aff,l[3],0,dbu,&dbv)<0)return -1;\n  }\n  else dbv=0;\n  bu=_dl->o[0]-2*dbu;\n  bv=_dl->o[1]+3*_dl->size[1]-2*dbv;\n  /*Set up the initial point lists.*/\n  nr=rlastfit=_ur->ninliers[1];\n  cr=nr+(_dl->o[1]-rv+drv-1)/drv;\n  r=(qr_point *)malloc(cr*sizeof(*r));\n  for(i=0;i<_ur->ninliers[1];i++){\n    memcpy(r[i],_ur->edge_pts[1][i].pos,sizeof(r[i]));\n  }\n  nb=blastfit=_dl->ninliers[3];\n  cb=nb+(_ur->o[0]-bu+dbu-1)/dbu;\n  b=(qr_point *)malloc(cb*sizeof(*b));\n  for(i=0;i<_dl->ninliers[3];i++){\n    memcpy(b[i],_dl->edge_pts[3][i].pos,sizeof(b[i]));\n  }\n  /*Set up the step parameters for the affine projection.*/\n  ox=(_aff->x0<<_aff->res)+(1<<_aff->res-1);\n  oy=(_aff->y0<<_aff->res)+(1<<_aff->res-1);\n  rx=_aff->fwd[0][0]*ru+_aff->fwd[0][1]*rv+ox;\n  ry=_aff->fwd[1][0]*ru+_aff->fwd[1][1]*rv+oy;\n  drxi=_aff->fwd[0][0]*dru+_aff->fwd[0][1]*drv;\n  dryi=_aff->fwd[1][0]*dru+_aff->fwd[1][1]*drv;\n  drxj=_aff->fwd[0][0]*_ur->size[0];\n  dryj=_aff->fwd[1][0]*_ur->size[0];\n  bx=_aff->fwd[0][0]*bu+_aff->fwd[0][1]*bv+ox;\n  by=_aff->fwd[1][0]*bu+_aff->fwd[1][1]*bv+oy;\n  dbxi=_aff->fwd[0][0]*dbu+_aff->fwd[0][1]*dbv;\n  dbyi=_aff->fwd[1][0]*dbu+_aff->fwd[1][1]*dbv;\n  dbxj=_aff->fwd[0][1]*_dl->size[1];\n  dbyj=_aff->fwd[1][1]*_dl->size[1];\n  /*Now step along the lines, looking for new sample points.*/\n  nrempty=nbempty=0;\n  for(;;){\n    int ret;\n    int x0;\n    int y0;\n    int x1;\n    int y1;\n    /*If we take too many steps without encountering a non-zero pixel, assume\n       we have wandered off the edge and stop looking before we hit the other\n       side of the quiet region.\n      Otherwise, stop when the lines cross (if they do so inside the affine\n       region) or come close to crossing (outside the affine region).\n      TODO: We don't have any way of detecting when we've wandered into the\n       code interior; we could stop if the outside sample ever shows up dark,\n       but this could happen because of noise in the quiet region, too.*/\n    rdone=rv>=QR_MINI(bv,_dl->o[1]+bv>>1)||nrempty>14;\n    bdone=bu>=QR_MINI(ru,_ur->o[0]+ru>>1)||nbempty>14;\n    if(!rdone&&(bdone||rv<bu)){\n      x0=rx+drxj>>_aff->res+QR_FINDER_SUBPREC;\n      y0=ry+dryj>>_aff->res+QR_FINDER_SUBPREC;\n      x1=rx-drxj>>_aff->res+QR_FINDER_SUBPREC;\n      y1=ry-dryj>>_aff->res+QR_FINDER_SUBPREC;\n      if(nr>=cr){\n        cr=cr<<1|1;\n        r=(qr_point *)realloc(r,cr*sizeof(*r));\n      }\n      ret=qr_finder_quick_crossing_check(_img,_width,_height,x0,y0,x1,y1,1);\n      if(!ret){\n        ret=qr_finder_locate_crossing(_img,_width,_height,x0,y0,x1,y1,1,r[nr]);\n      }\n      if(ret>=0){\n        if(!ret){\n          qr_aff_unproject(q,_aff,r[nr][0],r[nr][1]);\n          /*Move the current point halfway towards the crossing.\n            We don't move the whole way to give us some robustness to noise.*/\n          ru=ru+q[0]>>1;\n          /*But ensure that rv monotonically increases.*/\n          if(q[1]+drv>rv)rv=rv+q[1]>>1;\n          rx=_aff->fwd[0][0]*ru+_aff->fwd[0][1]*rv+ox;\n          ry=_aff->fwd[1][0]*ru+_aff->fwd[1][1]*rv+oy;\n          nr++;\n          /*Re-fit the line to update the step direction periodically.*/\n          if(nr>QR_MAXI(1,rlastfit+(rlastfit>>2))){\n            qr_line_fit_points(l[1],r,nr,_aff->res);\n            if(qr_aff_line_step(_aff,l[1],1,drv,&dru)>=0){\n              drxi=_aff->fwd[0][0]*dru+_aff->fwd[0][1]*drv;\n              dryi=_aff->fwd[1][0]*dru+_aff->fwd[1][1]*drv;\n            }\n            rlastfit=nr;\n          }\n        }\n        nrempty=0;\n      }\n      else nrempty++;\n      ru+=dru;\n      /*Our final defense: if we overflow, stop.*/\n      if(rv+drv>rv)rv+=drv;\n      else nrempty=INT_MAX;\n      rx+=drxi;\n      ry+=dryi;\n    }\n    else if(!bdone){\n      x0=bx+dbxj>>_aff->res+QR_FINDER_SUBPREC;\n      y0=by+dbyj>>_aff->res+QR_FINDER_SUBPREC;\n      x1=bx-dbxj>>_aff->res+QR_FINDER_SUBPREC;\n      y1=by-dbyj>>_aff->res+QR_FINDER_SUBPREC;\n      if(nb>=cb){\n        cb=cb<<1|1;\n        b=(qr_point *)realloc(b,cb*sizeof(*b));\n      }\n      ret=qr_finder_quick_crossing_check(_img,_width,_height,x0,y0,x1,y1,1);\n      if(!ret){\n        ret=qr_finder_locate_crossing(_img,_width,_height,x0,y0,x1,y1,1,b[nb]);\n      }\n      if(ret>=0){\n        if(!ret){\n          qr_aff_unproject(q,_aff,b[nb][0],b[nb][1]);\n          /*Move the current point halfway towards the crossing.\n            We don't move the whole way to give us some robustness to noise.*/\n          /*But ensure that bu monotonically increases.*/\n          if(q[0]+dbu>bu)bu=bu+q[0]>>1;\n          bv=bv+q[1]>>1;\n          bx=_aff->fwd[0][0]*bu+_aff->fwd[0][1]*bv+ox;\n          by=_aff->fwd[1][0]*bu+_aff->fwd[1][1]*bv+oy;\n          nb++;\n          /*Re-fit the line to update the step direction periodically.*/\n          if(nb>QR_MAXI(1,blastfit+(blastfit>>2))){\n            qr_line_fit_points(l[3],b,nb,_aff->res);\n            if(qr_aff_line_step(_aff,l[3],0,dbu,&dbv)>=0){\n              dbxi=_aff->fwd[0][0]*dbu+_aff->fwd[0][1]*dbv;\n              dbyi=_aff->fwd[1][0]*dbu+_aff->fwd[1][1]*dbv;\n            }\n            blastfit=nb;\n          }\n        }\n        nbempty=0;\n      }\n      else nbempty++;\n      /*Our final defense: if we overflow, stop.*/\n      if(bu+dbu>bu)bu+=dbu;\n      else nbempty=INT_MAX;\n      bv+=dbv;\n      bx+=dbxi;\n      by+=dbyi;\n    }\n    else break;\n  }\n  /*Fit the new lines.\n    If we _still_ don't have enough sample points, then just use an\n     axis-aligned line from the affine coordinate system (e.g., one parallel\n     to the opposite edge in the image).*/\n  if(nr>1)qr_line_fit_points(l[1],r,nr,_aff->res);\n  else{\n    qr_aff_project(p,_aff,_ur->o[0]+3*_ur->size[0],_ur->o[1]);\n    shift=QR_MAXI(0,\n     qr_ilog(QR_MAXI(abs(_aff->fwd[0][1]),abs(_aff->fwd[1][1])))\n     -(_aff->res+1>>1));\n    round=(1<<shift)>>1;\n    l[1][0]=_aff->fwd[1][1]+round>>shift;\n    l[1][1]=-_aff->fwd[0][1]+round>>shift;\n    l[1][2]=-(l[1][0]*p[0]+l[1][1]*p[1]);\n  }\n  free(r);\n  if(nb>1)qr_line_fit_points(l[3],b,nb,_aff->res);\n  else{\n    qr_aff_project(p,_aff,_dl->o[0],_dl->o[1]+3*_dl->size[1]);\n    shift=QR_MAXI(0,\n     qr_ilog(QR_MAXI(abs(_aff->fwd[0][1]),abs(_aff->fwd[1][1])))\n     -(_aff->res+1>>1));\n    round=(1<<shift)>>1;\n    l[3][0]=_aff->fwd[1][0]+round>>shift;\n    l[3][1]=-_aff->fwd[0][0]+round>>shift;\n    l[3][2]=-(l[1][0]*p[0]+l[1][1]*p[1]);\n  }\n  free(b);\n  for(i=0;i<4;i++){\n    if(qr_line_isect(_p[i],l[i&1],l[2+(i>>1)])<0)return -1;\n    /*It's plausible for points to be somewhat outside the image, but too far\n       and too much of the pattern will be gone for it to be decodable.*/\n    if(_p[i][0]<-_width<<QR_FINDER_SUBPREC||\n     _p[i][0]>=_width<<QR_FINDER_SUBPREC+1||\n     _p[i][1]<-_height<<QR_FINDER_SUBPREC||\n     _p[i][1]>=_height<<QR_FINDER_SUBPREC+1){\n      return -1;\n    }\n  }\n  /*By default, use the edge intersection point for the bottom-right corner.*/\n  brx=_p[3][0];\n  bry=_p[3][1];\n  /*However, if our average version estimate is greater than 1, NOW we try to\n     search for an alignment pattern.\n    We get a much better success rate by doing this after our initial attempt\n     to promote the transform to a homography than before.\n    You might also think it would be more reliable to use the interior finder\n     pattern edges, since the outer ones may be obscured or damaged, and it\n     would save us a reprojection below, since they would form a nice square\n     with the location of the alignment pattern, but this turns out to be a bad\n     idea.\n    Non-linear distortion is usually maximal on the outside edge, and thus\n     estimating the grid position from points on the interior means we might\n     get mis-aligned by the time we reach the edge.*/\n  version4=_ul->eversion[0]+_ul->eversion[1]+_ur->eversion[0]+_dl->eversion[1];\n  if(version4>4){\n    qr_hom_cell cell;\n    qr_point    p3;\n    int         dim;\n    dim=17+version4;\n    qr_hom_cell_init(&cell,0,0,dim-1,0,0,dim-1,dim-1,dim-1,\n     _p[0][0],_p[0][1],_p[1][0],_p[1][1],\n     _p[2][0],_p[2][1],_p[3][0],_p[3][1]);\n    if(qr_alignment_pattern_search(p3,&cell,dim-7,dim-7,4,\n     _img,_width,_height)>=0){\n      long long w;\n      long long mask;\n      int       c21;\n      int       dx21;\n      int       dy21;\n      /*There's no real need to update the bounding box corner, and in fact we\n         actively perform worse if we do.\n        Clearly it was good enough for us to find this alignment pattern, so\n         it should be good enough to use for grid initialization.\n        The point of doing the search was to get more accurate version\n         estimates and a better chance of decoding the version and format info.\n        This is particularly important for small versions that have no encoded\n         version info, since any mismatch in version renders the code\n         undecodable.*/\n      /*We do, however, need four points in a square to initialize our\n         homography, so project the point from the alignment center to the\n         corner of the code area.*/\n      c21=_p[2][0]*_p[1][1]-_p[2][1]*_p[1][0];\n      dx21=_p[2][0]-_p[1][0];\n      dy21=_p[2][1]-_p[1][1];\n      w=QR_EXTMUL(dim-7,c21,\n       QR_EXTMUL(dim-13,_p[0][0]*dy21-_p[0][1]*dx21,\n       QR_EXTMUL(6,p3[0]*dy21-p3[1]*dx21,0)));\n      /*The projection failed: invalid geometry.*/\n      if(w==0)return -1;\n      mask=QR_SIGNMASK(w);\n      w=w+mask^mask;\n      brx=(int)QR_DIVROUND(QR_EXTMUL((dim-7)*_p[0][0],p3[0]*dy21,\n       QR_EXTMUL((dim-13)*p3[0],c21-_p[0][1]*dx21,\n       QR_EXTMUL(6*_p[0][0],c21-p3[1]*dx21,0)))+mask^mask,w);\n      bry=(int)QR_DIVROUND(QR_EXTMUL((dim-7)*_p[0][1],-p3[1]*dx21,\n       QR_EXTMUL((dim-13)*p3[1],c21+_p[0][0]*dy21,\n       QR_EXTMUL(6*_p[0][1],c21+p3[0]*dy21,0)))+mask^mask,w);\n    }\n  }\n  /*Now we have four points that map to a square: initialize the projection.*/\n  qr_hom_init(_hom,_p[0][0],_p[0][1],_p[1][0],_p[1][1],\n   _p[2][0],_p[2][1],brx,bry,QR_HOM_BITS);\n  return 0;\n}\n\n\n\n/*The BCH(18,6,3) codes are only used for version information, which must lie\n   between 7 and 40 (inclusive).*/\nstatic const unsigned BCH18_6_CODES[34]={\n                                                          0x07C94,\n  0x085BC,0x09A99,0x0A4D3,0x0BBF6,0x0C762,0x0D847,0x0E60D,0x0F928,\n  0x10B78,0x1145D,0x12A17,0x13532,0x149A6,0x15683,0x168C9,0x177EC,\n  0x18EC4,0x191E1,0x1AFAB,0x1B08E,0x1CC1A,0x1D33F,0x1ED75,0x1F250,\n  0x209D5,0x216F0,0x228BA,0x2379F,0x24B0B,0x2542E,0x26A64,0x27541,\n  0x28C69\n};\n\n/*Corrects a BCH(18,6,3) code word.\n  _y: Contains the code word to be checked on input, and the corrected value on\n       output.\n  Return: The number of errors.\n          If more than 3 errors are detected, returns a negative value and\n           performs no correction.*/\nstatic int bch18_6_correct(unsigned *_y){\n  unsigned x;\n  unsigned y;\n  int      nerrs;\n  y=*_y;\n  /*Check the easy case first: see if the data bits were uncorrupted.*/\n  x=y>>12;\n  if(x>=7&&x<=40){\n    nerrs=qr_hamming_dist(y,BCH18_6_CODES[x-7],4);\n    if(nerrs<4){\n      *_y=BCH18_6_CODES[x-7];\n      return nerrs;\n    }\n  }\n  /*Exhaustive search is faster than field operations in GF(19).*/\n  for(x=0;x<34;x++)if(x+7!=y>>12){\n    nerrs=qr_hamming_dist(y,BCH18_6_CODES[x],4);\n    if(nerrs<4){\n      *_y=BCH18_6_CODES[x];\n      return nerrs;\n    }\n  }\n  return -1;\n}\n\n#if 0\nstatic unsigned bch18_6_encode(unsigned _x){\n  return (-(_x&1)&0x01F25)^(-(_x>>1&1)&0x0216F)^(-(_x>>2&1)&0x042DE)^\n   (-(_x>>3&1)&0x085BC)^(-(_x>>4&1)&0x10B78)^(-(_x>>5&1)&0x209D5);\n}\n#endif\n\n/*Reads the version bits near a finder module and decodes the version number.*/\nstatic int qr_finder_version_decode(qr_finder *_f,const qr_hom *_hom,\n const unsigned char *_img,int _width,int _height,int _dir){\n  qr_point q;\n  unsigned v;\n  int      x0;\n  int      y0;\n  int      w0;\n  int      dxi;\n  int      dyi;\n  int      dwi;\n  int      dxj;\n  int      dyj;\n  int      dwj;\n  int      ret;\n  int      i;\n  int      j;\n  int      k;\n  v=0;\n  q[_dir]=_f->o[_dir]-7*_f->size[_dir];\n  q[1-_dir]=_f->o[1-_dir]-3*_f->size[1-_dir];\n  x0=_hom->fwd[0][0]*q[0]+_hom->fwd[0][1]*q[1];\n  y0=_hom->fwd[1][0]*q[0]+_hom->fwd[1][1]*q[1];\n  w0=_hom->fwd[2][0]*q[0]+_hom->fwd[2][1]*q[1]+_hom->fwd22;\n  dxi=_hom->fwd[0][1-_dir]*_f->size[1-_dir];\n  dyi=_hom->fwd[1][1-_dir]*_f->size[1-_dir];\n  dwi=_hom->fwd[2][1-_dir]*_f->size[1-_dir];\n  dxj=_hom->fwd[0][_dir]*_f->size[_dir];\n  dyj=_hom->fwd[1][_dir]*_f->size[_dir];\n  dwj=_hom->fwd[2][_dir]*_f->size[_dir];\n  for(k=i=0;i<6;i++){\n    int x;\n    int y;\n    int w;\n    x=x0;\n    y=y0;\n    w=w0;\n    for(j=0;j<3;j++,k++){\n      qr_point p;\n      qr_hom_fproject(p,_hom,x,y,w);\n      v|=qr_img_get_bit(_img,_width,_height,p[0],p[1])<<k;\n      x+=dxj;\n      y+=dyj;\n      w+=dwj;\n    }\n    x0+=dxi;\n    y0+=dyi;\n    w0+=dwi;\n  }\n  ret=bch18_6_correct(&v);\n  /*TODO: I seem to have an image with the version bits in a different order\n     (the transpose of the standard order).\n    Even if I change the order here so I can parse the version on this image,\n     I can't decode the rest of the code.\n    If this is really needed, we should just re-order the bits.*/\n#if 0\n  if(ret<0){\n    /*17 16 15 14 13 12 11 10  9  8  7  6  5  4  3  2  1  0\n       0  3  6  9 12 15  1  4  7 10 13 16  2  5  8 11 14 17\n      17 13  9  5  1 -3 10  6  2 -2 -6-10  3 -1 -5 -9-13-17*/\n    v=0;\n    for(k=i=0;i<3;i++){\n      p[_dir]=_f->o[_dir]+_f->size[_dir]*(-5-i);\n      for(j=0;j<6;j++,k++){\n        qr_point q;\n        p[1-_dir]=_f->o[1-_dir]+_f->size[1-_dir]*(2-j);\n        qr_hom_project(q,_hom,p[0],p[1]);\n        v|=qr_img_get_bit(_img,_width,_height,q[0],q[1])<<k;\n      }\n    }\n    ret=bch18_6_correct(&v);\n  }\n#endif\n  return ret>=0?(int)(v>>12):ret;\n}\n\n/*Reads the format info bits near the finder modules and decodes them.*/\nstatic int qr_finder_fmt_info_decode(qr_finder *_ul,qr_finder *_ur,\n qr_finder *_dl,const qr_hom *_hom,\n const unsigned char *_img,int _width,int _height){\n  qr_point p;\n  unsigned lo[2];\n  unsigned hi[2];\n  int      u;\n  int      v;\n  int      x;\n  int      y;\n  int      w;\n  int      dx;\n  int      dy;\n  int      dw;\n  int      fmt_info[4];\n  int      count[4];\n  int      nerrs[4];\n  int      nfmt_info;\n  int      besti;\n  int      imax;\n  int      di;\n  int      i;\n  int      k;\n  /*Read the bits around the UL corner.*/\n  lo[0]=0;\n  u=_ul->o[0]+5*_ul->size[0];\n  v=_ul->o[1]-3*_ul->size[1];\n  x=_hom->fwd[0][0]*u+_hom->fwd[0][1]*v;\n  y=_hom->fwd[1][0]*u+_hom->fwd[1][1]*v;\n  w=_hom->fwd[2][0]*u+_hom->fwd[2][1]*v+_hom->fwd22;\n  dx=_hom->fwd[0][1]*_ul->size[1];\n  dy=_hom->fwd[1][1]*_ul->size[1];\n  dw=_hom->fwd[2][1]*_ul->size[1];\n  for(k=i=0;;i++){\n    /*Skip the timing pattern row.*/\n    if(i!=6){\n      qr_hom_fproject(p,_hom,x,y,w);\n      lo[0]|=qr_img_get_bit(_img,_width,_height,p[0],p[1])<<k++;\n      /*Don't advance q in the last iteration... we'll start the next loop from\n         the current position.*/\n      if(i>=8)break;\n    }\n    x+=dx;\n    y+=dy;\n    w+=dw;\n  }\n  hi[0]=0;\n  dx=-_hom->fwd[0][0]*_ul->size[0];\n  dy=-_hom->fwd[1][0]*_ul->size[0];\n  dw=-_hom->fwd[2][0]*_ul->size[0];\n  while(i-->0){\n    x+=dx;\n    y+=dy;\n    w+=dw;\n    /*Skip the timing pattern column.*/\n    if(i!=6){\n      qr_hom_fproject(p,_hom,x,y,w);\n      hi[0]|=qr_img_get_bit(_img,_width,_height,p[0],p[1])<<k++;\n    }\n  }\n  /*Read the bits next to the UR corner.*/\n  lo[1]=0;\n  u=_ur->o[0]+3*_ur->size[0];\n  v=_ur->o[1]+5*_ur->size[1];\n  x=_hom->fwd[0][0]*u+_hom->fwd[0][1]*v;\n  y=_hom->fwd[1][0]*u+_hom->fwd[1][1]*v;\n  w=_hom->fwd[2][0]*u+_hom->fwd[2][1]*v+_hom->fwd22;\n  dx=-_hom->fwd[0][0]*_ur->size[0];\n  dy=-_hom->fwd[1][0]*_ur->size[0];\n  dw=-_hom->fwd[2][0]*_ur->size[0];\n  for(k=0;k<8;k++){\n    qr_hom_fproject(p,_hom,x,y,w);\n    lo[1]|=qr_img_get_bit(_img,_width,_height,p[0],p[1])<<k;\n    x+=dx;\n    y+=dy;\n    w+=dw;\n  }\n  /*Read the bits next to the DL corner.*/\n  hi[1]=0;\n  u=_dl->o[0]+5*_dl->size[0];\n  v=_dl->o[1]-3*_dl->size[1];\n  x=_hom->fwd[0][0]*u+_hom->fwd[0][1]*v;\n  y=_hom->fwd[1][0]*u+_hom->fwd[1][1]*v;\n  w=_hom->fwd[2][0]*u+_hom->fwd[2][1]*v+_hom->fwd22;\n  dx=_hom->fwd[0][1]*_dl->size[1];\n  dy=_hom->fwd[1][1]*_dl->size[1];\n  dw=_hom->fwd[2][1]*_dl->size[1];\n  for(k=8;k<15;k++){\n    qr_hom_fproject(p,_hom,x,y,w);\n    hi[1]|=qr_img_get_bit(_img,_width,_height,p[0],p[1])<<k;\n    x+=dx;\n    y+=dy;\n    w+=dw;\n  }\n  /*For each group of bits we have two samples... try them in all combinations\n     and pick the most popular valid code, breaking ties using the number of\n     bit errors.*/\n  imax=2<<(hi[0]!=hi[1]);\n  di=1+(lo[0]==lo[1]);\n  nfmt_info=0;\n  for(i=0;i<imax;i+=di){\n    unsigned v;\n    int      ret;\n    int      j;\n    v=(lo[i&1]|hi[i>>1])^0x5412;\n    ret=bch15_5_correct(&v);\n    v>>=10;\n    if(ret<0)ret=4;\n    for(j=0;;j++){\n      if(j>=nfmt_info){\n        fmt_info[j]=v;\n        count[j]=1;\n        nerrs[j]=ret;\n        nfmt_info++;\n        break;\n      }\n      if(fmt_info[j]==(int)v){\n        count[j]++;\n        if(ret<nerrs[j])nerrs[j]=ret;\n        break;\n      }\n    }\n  }\n  besti=0;\n  for(i=1;i<nfmt_info;i++){\n    if(nerrs[besti]>3&&nerrs[i]<=3||\n     count[i]>count[besti]||count[i]==count[besti]&&nerrs[i]<nerrs[besti]){\n      besti=i;\n    }\n  }\n  return nerrs[besti]<4?fmt_info[besti]:-1;\n}\n\n\n\n/*The grid used to sample the image bits.\n  The grid is divided into separate cells bounded by finder patterns and/or\n   alignment patterns, and a separate map back to the original image is\n   constructed for each cell.\n  All of these structural elements, as well as the timing patterns, version\n   info, and format info, are marked in fpmask so they can easily be skipped\n   during decode.*/\nstruct qr_sampling_grid{\n  qr_hom_cell    *cells[6];\n  unsigned       *fpmask;\n  int             cell_limits[6];\n  int             ncells;\n};\n\n\n/*Mark a given region as belonging to the function pattern.*/\nstatic void qr_sampling_grid_fp_mask_rect(qr_sampling_grid *_grid,int _dim,\n int _u,int _v,int _w,int _h){\n  int i;\n  int j;\n  int stride;\n  stride=_dim+QR_INT_BITS-1>>QR_INT_LOGBITS;\n  /*Note that we store bits column-wise, since that's how they're read out of\n     the grid.*/\n  for(j=_u;j<_u+_w;j++)for(i=_v;i<_v+_h;i++){\n    _grid->fpmask[j*stride+(i>>QR_INT_LOGBITS)]|=1<<(i&QR_INT_BITS-1);\n  }\n}\n\n/*Determine if a given grid location is inside the function pattern.*/\nstatic int qr_sampling_grid_is_in_fp(const qr_sampling_grid *_grid,int _dim,\n int _u,int _v){\n  return _grid->fpmask[_u*(_dim+QR_INT_BITS-1>>QR_INT_LOGBITS)\n   +(_v>>QR_INT_LOGBITS)]>>(_v&QR_INT_BITS-1)&1;\n}\n\n/*The spacing between alignment patterns after the second for versions >= 7.\n  We could compact this more, but the code to access it would eliminate the\n   gains.*/\nstatic const unsigned char QR_ALIGNMENT_SPACING[34]={\n  16,18,20,22,24,26,28,\n  20,22,24,24,26,28,28,\n  22,24,24,26,26,28,28,\n  24,24,26,26,26,28,28,\n  24,26,26,26,28,28\n};\n\nstatic inline void qr_svg_points(const char *cls,\n                                 qr_point *p,\n                                 int n)\n{\n    int i;\n    svg_path_start(cls, 1, 0, 0);\n    for(i = 0; i < n; i++, p++)\n        svg_path_moveto(SVG_ABS, p[0][0], p[0][1]);\n    svg_path_end();\n}\n\n/*Initialize the sampling grid for each region of the code.\n  _version:  The (decoded) version number.\n  _ul_pos:   The location of the UL finder pattern.\n  _ur_pos:   The location of the UR finder pattern.\n  _dl_pos:   The location of the DL finder pattern.\n  _p:        On input, contains estimated positions of the four corner modules.\n             On output, contains a bounding quadrilateral for the code.\n  _img:      The binary input image.\n  _width:    The width of the input image.\n  _height:   The height of the input image.\n  Return: 0 on success, or a negative value on error.*/\nstatic void qr_sampling_grid_init(qr_sampling_grid *_grid,int _version,\n const qr_point _ul_pos,const qr_point _ur_pos,const qr_point _dl_pos,\n qr_point _p[4],const unsigned char *_img,int _width,int _height){\n  qr_hom_cell          base_cell;\n  int                  align_pos[7];\n  int                  dim;\n  int                  nalign;\n  int                  i;\n  dim=17+(_version<<2);\n  nalign=(_version/7)+2;\n  /*Create a base cell to bootstrap the alignment pattern search.*/\n  qr_hom_cell_init(&base_cell,0,0,dim-1,0,0,dim-1,dim-1,dim-1,\n   _p[0][0],_p[0][1],_p[1][0],_p[1][1],_p[2][0],_p[2][1],_p[3][0],_p[3][1]);\n  /*Allocate the array of cells.*/\n  _grid->ncells=nalign-1;\n  _grid->cells[0]=(qr_hom_cell *)malloc(\n   (nalign-1)*(nalign-1)*sizeof(*_grid->cells[0]));\n  for(i=1;i<_grid->ncells;i++)_grid->cells[i]=_grid->cells[i-1]+_grid->ncells;\n  /*Initialize the function pattern mask.*/\n  _grid->fpmask=(unsigned *)calloc(dim,\n   (dim+QR_INT_BITS-1>>QR_INT_LOGBITS)*sizeof(*_grid->fpmask));\n  /*Mask out the finder patterns (and separators and format info bits).*/\n  qr_sampling_grid_fp_mask_rect(_grid,dim,0,0,9,9);\n  qr_sampling_grid_fp_mask_rect(_grid,dim,0,dim-8,9,8);\n  qr_sampling_grid_fp_mask_rect(_grid,dim,dim-8,0,8,9);\n  /*Mask out the version number bits.*/\n  if(_version>6){\n    qr_sampling_grid_fp_mask_rect(_grid,dim,0,dim-11,6,3);\n    qr_sampling_grid_fp_mask_rect(_grid,dim,dim-11,0,3,6);\n  }\n  /*Mask out the timing patterns.*/\n  qr_sampling_grid_fp_mask_rect(_grid,dim,9,6,dim-17,1);\n  qr_sampling_grid_fp_mask_rect(_grid,dim,6,9,1,dim-17);\n  /*If we have no alignment patterns (e.g., this is a version 1 code), just use\n     the base cell and hope it's good enough.*/\n  if(_version<2)memcpy(_grid->cells[0],&base_cell,sizeof(base_cell));\n  else{\n    qr_point *q;\n    qr_point *p;\n    int       j;\n    int       k;\n    q=(qr_point *)malloc(nalign*nalign*sizeof(*q));\n    p=(qr_point *)malloc(nalign*nalign*sizeof(*p));\n    /*Initialize the alignment pattern position list.*/\n    align_pos[0]=6;\n    align_pos[nalign-1]=dim-7;\n    if(_version>6){\n      int d;\n      d=QR_ALIGNMENT_SPACING[_version-7];\n      for(i=nalign-1;i-->1;)align_pos[i]=align_pos[i+1]-d;\n    }\n    /*Three of the corners use a finder pattern instead of a separate\n       alignment pattern.*/\n    q[0][0]=3;\n    q[0][1]=3;\n    p[0][0]=_ul_pos[0];\n    p[0][1]=_ul_pos[1];\n    q[nalign-1][0]=dim-4;\n    q[nalign-1][1]=3;\n    p[nalign-1][0]=_ur_pos[0];\n    p[nalign-1][1]=_ur_pos[1];\n    q[(nalign-1)*nalign][0]=3;\n    q[(nalign-1)*nalign][1]=dim-4;\n    p[(nalign-1)*nalign][0]=_dl_pos[0];\n    p[(nalign-1)*nalign][1]=_dl_pos[1];\n    /*Scan for alignment patterns using a diagonal sweep.*/\n    for(k=1;k<2*nalign-1;k++){\n      int jmin;\n      int jmax;\n      jmax=QR_MINI(k,nalign-1)-(k==nalign-1);\n      jmin=QR_MAXI(0,k-(nalign-1))+(k==nalign-1);\n      for(j=jmin;j<=jmax;j++){\n        qr_hom_cell *cell;\n        int          u;\n        int          v;\n        int          k;\n        i=jmax-(j-jmin);\n        k=i*nalign+j;\n        u=align_pos[j];\n        v=align_pos[i];\n        q[k][0]=u;\n        q[k][1]=v;\n        /*Mask out the alignment pattern.*/\n        qr_sampling_grid_fp_mask_rect(_grid,dim,u-2,v-2,5,5);\n        /*Pick a cell to use to govern the alignment pattern search.*/\n        if(i>1&&j>1){\n          qr_point p0;\n          qr_point p1;\n          qr_point p2;\n          /*Each predictor is basically a straight-line extrapolation from two\n             neighboring alignment patterns (except possibly near the opposing\n             finder patterns).*/\n          qr_hom_cell_project(p0,_grid->cells[i-2]+j-1,u,v,0);\n          qr_hom_cell_project(p1,_grid->cells[i-2]+j-2,u,v,0);\n          qr_hom_cell_project(p2,_grid->cells[i-1]+j-2,u,v,0);\n          /*Take the median of the predictions as the search center.*/\n          QR_SORT2I(p0[0],p1[0]);\n          QR_SORT2I(p0[1],p1[1]);\n          QR_SORT2I(p1[0],p2[0]);\n          QR_SORT2I(p1[1],p2[1]);\n          QR_SORT2I(p0[0],p1[0]);\n          QR_SORT2I(p0[1],p1[1]);\n          /*We need a cell that has the target point at a known (u,v) location.\n            Since our cells don't have inverses, just construct one from our\n             neighboring points.*/\n          cell=_grid->cells[i-1]+j-1;\n          qr_hom_cell_init(cell,\n           q[k-nalign-1][0],q[k-nalign-1][1],q[k-nalign][0],q[k-nalign][1],\n           q[k-1][0],q[k-1][1],q[k][0],q[k][1],\n           p[k-nalign-1][0],p[k-nalign-1][1],p[k-nalign][0],p[k-nalign][1],\n           p[k-1][0],p[k-1][1],p1[0],p1[1]);\n        }\n        else if(i>1&&j>0)cell=_grid->cells[i-2]+j-1;\n        else if(i>0&&j>1)cell=_grid->cells[i-1]+j-2;\n        else cell=&base_cell;\n        /*Use a very small search radius.\n          A large displacement here usually means a false positive (e.g., when\n           the real alignment pattern is damaged or missing), which can\n           severely distort the projection.*/\n        qr_alignment_pattern_search(p[k],cell,u,v,2,_img,_width,_height);\n        if(i>0&&j>0){\n          qr_hom_cell_init(_grid->cells[i-1]+j-1,\n           q[k-nalign-1][0],q[k-nalign-1][1],q[k-nalign][0],q[k-nalign][1],\n           q[k-1][0],q[k-1][1],q[k][0],q[k][1],\n           p[k-nalign-1][0],p[k-nalign-1][1],p[k-nalign][0],p[k-nalign][1],\n           p[k-1][0],p[k-1][1],p[k][0],p[k][1]);\n        }\n      }\n    }\n    qr_svg_points(\"align\", p, nalign * nalign);\n    free(q);\n    free(p);\n  }\n  /*Set the limits over which each cell is used.*/\n  memcpy(_grid->cell_limits,align_pos+1,\n   (_grid->ncells-1)*sizeof(*_grid->cell_limits));\n  _grid->cell_limits[_grid->ncells-1]=dim;\n  /*Produce a bounding square for the code (to mark finder centers with).\n    Because of non-linear distortion, this might not actually bound the code,\n     but it should be good enough.\n    I don't think it's worth computing a convex hull or anything silly like\n     that.*/\n  qr_hom_cell_project(_p[0],_grid->cells[0]+0,-1,-1,1);\n  qr_hom_cell_project(_p[1],_grid->cells[0]+_grid->ncells-1,(dim<<1)-1,-1,1);\n  qr_hom_cell_project(_p[2],_grid->cells[_grid->ncells-1]+0,-1,(dim<<1)-1,1);\n  qr_hom_cell_project(_p[3],_grid->cells[_grid->ncells-1]+_grid->ncells-1,\n   (dim<<1)-1,(dim<<1)-1,1);\n  /*Clamp the points somewhere near the image (this is really just in case a\n     corner is near the plane at infinity).*/\n  for(i=0;i<4;i++){\n    _p[i][0]=QR_CLAMPI(-_width<<QR_FINDER_SUBPREC,_p[i][0],\n     _width<<QR_FINDER_SUBPREC+1);\n    _p[i][1]=QR_CLAMPI(-_height<<QR_FINDER_SUBPREC,_p[i][1],\n     _height<<QR_FINDER_SUBPREC+1);\n  }\n  /*TODO: Make fine adjustments using the timing patterns.\n    Possible strategy: scan the timing pattern at QR_ALIGN_SUBPREC (or finer)\n     resolution, use dynamic programming to match midpoints between\n     transitions to the ideal grid locations.*/\n}\n\nstatic void qr_sampling_grid_clear(qr_sampling_grid *_grid){\n  free(_grid->fpmask);\n  free(_grid->cells[0]);\n}\n\n\n\n#if defined(QR_DEBUG)\nstatic void qr_sampling_grid_dump(qr_sampling_grid *_grid,int _version,\n const unsigned char *_img,int _width,int _height){\n  unsigned char *gimg;\n  FILE          *fout;\n  int            dim;\n  int            u;\n  int            v;\n  int            x;\n  int            y;\n  int            w;\n  int            i;\n  int            j;\n  int            r;\n  int            s;\n  dim=17+(_version<<2)+8<<QR_ALIGN_SUBPREC;\n  gimg=(unsigned char *)malloc(dim*dim*sizeof(*gimg));\n  for(i=0;i<dim;i++)for(j=0;j<dim;j++){\n    qr_hom_cell *cell;\n    if(i>=(4<<QR_ALIGN_SUBPREC)&&i<=dim-(5<<QR_ALIGN_SUBPREC)&&\n     j>=(4<<QR_ALIGN_SUBPREC)&&j<=dim-(5<<QR_ALIGN_SUBPREC)&&\n     ((!(i&(1<<QR_ALIGN_SUBPREC)-1))^(!(j&(1<<QR_ALIGN_SUBPREC)-1)))){\n      gimg[i*dim+j]=0x7F;\n    }\n    else{\n      qr_point p;\n      u=(j>>QR_ALIGN_SUBPREC)-4;\n      v=(i>>QR_ALIGN_SUBPREC)-4;\n      for(r=0;r<_grid->ncells-1;r++)if(u<_grid->cell_limits[r])break;\n      for(s=0;s<_grid->ncells-1;s++)if(v<_grid->cell_limits[s])break;\n      cell=_grid->cells[s]+r;\n      u=j-(cell->u0+4<<QR_ALIGN_SUBPREC);\n      v=i-(cell->v0+4<<QR_ALIGN_SUBPREC);\n      x=cell->fwd[0][0]*u+cell->fwd[0][1]*v+(cell->fwd[0][2]<<QR_ALIGN_SUBPREC);\n      y=cell->fwd[1][0]*u+cell->fwd[1][1]*v+(cell->fwd[1][2]<<QR_ALIGN_SUBPREC);\n      w=cell->fwd[2][0]*u+cell->fwd[2][1]*v+(cell->fwd[2][2]<<QR_ALIGN_SUBPREC);\n      qr_hom_cell_fproject(p,cell,x,y,w);\n      gimg[i*dim+j]=_img[\n       QR_CLAMPI(0,p[1]>>QR_FINDER_SUBPREC,_height-1)*_width+\n       QR_CLAMPI(0,p[0]>>QR_FINDER_SUBPREC,_width-1)];\n    }\n  }\n  for(v=0;v<17+(_version<<2);v++)for(u=0;u<17+(_version<<2);u++){\n    if(qr_sampling_grid_is_in_fp(_grid,17+(_version<<2),u,v)){\n      j=u+4<<QR_ALIGN_SUBPREC;\n      i=v+4<<QR_ALIGN_SUBPREC;\n      gimg[(i-1)*dim+j-1]=0x7F;\n      gimg[(i-1)*dim+j]=0x7F;\n      gimg[(i-1)*dim+j+1]=0x7F;\n      gimg[i*dim+j-1]=0x7F;\n      gimg[i*dim+j+1]=0x7F;\n      gimg[(i+1)*dim+j-1]=0x7F;\n      gimg[(i+1)*dim+j]=0x7F;\n      gimg[(i+1)*dim+j+1]=0x7F;\n    }\n  }\n  fout=fopen(\"grid.png\",\"wb\");\n  image_write_png(gimg,dim,dim,fout);\n  fclose(fout);\n  free(gimg);\n}\n#endif\n\n/*Generate the data mask corresponding to the given mask pattern.*/\nstatic void qr_data_mask_fill(unsigned *_mask,int _dim,int _pattern){\n  int stride;\n  int i;\n  int j;\n  stride=_dim+QR_INT_BITS-1>>QR_INT_LOGBITS;\n  /*Note that we store bits column-wise, since that's how they're read out of\n     the grid.*/\n  switch(_pattern){\n    /*10101010 i+j+1&1\n      01010101\n      10101010\n      01010101*/\n    case 0:{\n      int m;\n      m=0x55;\n      for(j=0;j<_dim;j++){\n        memset(_mask+j*stride,m,stride*sizeof(*_mask));\n        m^=0xFF;\n      }\n    }break;\n    /*11111111 i+1&1\n      00000000\n      11111111\n      00000000*/\n    case 1:memset(_mask,0x55,_dim*stride*sizeof(*_mask));break;\n    /*10010010 (j+1)%3&1\n      10010010\n      10010010\n      10010010*/\n    case 2:{\n      unsigned m;\n      m=0xFF;\n      for(j=0;j<_dim;j++){\n        memset(_mask+j*stride,m&0xFF,stride*sizeof(*_mask));\n        m=m<<8|m>>16;\n      }\n    }break;\n    /*10010010 (i+j+1)%3&1\n      00100100\n      01001001\n      10010010*/\n    case 3:{\n      unsigned mi;\n      unsigned mj;\n      mj=0;\n      for(i=0;i<(QR_INT_BITS+2)/3;i++)mj|=1<<3*i;\n      for(j=0;j<_dim;j++){\n        mi=mj;\n        for(i=0;i<stride;i++){\n          _mask[j*stride+i]=mi;\n          mi=mi>>QR_INT_BITS%3|mi<<3-QR_INT_BITS%3;\n        }\n        mj=mj>>1|mj<<2;\n      }\n    }break;\n    /*11100011 (i>>1)+(j/3)+1&1\n      11100011\n      00011100\n      00011100*/\n    case 4:{\n      unsigned m;\n      m=7;\n      for(j=0;j<_dim;j++){\n        memset(_mask+j*stride,(0xCC^-(m&1))&0xFF,stride*sizeof(*_mask));\n        m=m>>1|m<<5;\n      }\n    }break;\n    /*11111111 !((i*j)%6)\n      10000010\n      10010010\n      10101010*/\n    case 5:{\n      for(j=0;j<_dim;j++){\n        unsigned m;\n        m=0;\n        for(i=0;i<6;i++)m|=!((i*j)%6)<<i;\n        for(i=6;i<QR_INT_BITS;i<<=1)m|=m<<i;\n        for(i=0;i<stride;i++){\n          _mask[j*stride+i]=m;\n          m=m>>QR_INT_BITS%6|m<<6-QR_INT_BITS%6;\n        }\n      }\n    }break;\n    /*11111111 (i*j)%3+i*j+1&1\n      11100011\n      11011011\n      10101010*/\n    case 6:{\n      for(j=0;j<_dim;j++){\n        unsigned m;\n        m=0;\n        for(i=0;i<6;i++)m|=((i*j)%3+i*j+1&1)<<i;\n        for(i=6;i<QR_INT_BITS;i<<=1)m|=m<<i;\n        for(i=0;i<stride;i++){\n          _mask[j*stride+i]=m;\n          m=m>>QR_INT_BITS%6|m<<6-QR_INT_BITS%6;\n        }\n      }\n    }break;\n    /*10101010 (i*j)%3+i+j+1&1\n      00011100\n      10001110\n      01010101*/\n    default:{\n      for(j=0;j<_dim;j++){\n        unsigned m;\n        m=0;\n        for(i=0;i<6;i++)m|=((i*j)%3+i+j+1&1)<<i;\n        for(i=6;i<QR_INT_BITS;i<<=1)m|=m<<i;\n        for(i=0;i<stride;i++){\n          _mask[j*stride+i]=m;\n          m=m>>QR_INT_BITS%6|m<<6-QR_INT_BITS%6;\n        }\n      }\n    }break;\n  }\n}\n\nstatic void qr_sampling_grid_sample(const qr_sampling_grid *_grid,\n unsigned *_data_bits,int _dim,int _fmt_info,\n const unsigned char *_img,int _width,int _height){\n  int stride;\n  int u0;\n  int u1;\n  int j;\n  /*We initialize the buffer with the data mask and XOR bits into it as we read\n     them out of the image instead of unmasking in a separate step.*/\n  qr_data_mask_fill(_data_bits,_dim,_fmt_info&7);\n  stride=_dim+QR_INT_BITS-1>>QR_INT_LOGBITS;\n  u0=0;\n  svg_path_start(\"sampling-grid\", 1, 0, 0);\n  /*We read data cell-by-cell to avoid having to constantly change which\n     projection we're using as we read each bit.\n    This (and the position-dependent data mask) is the reason we buffer the\n     bits we read instead of converting them directly to codewords here.\n    Note that bits are stored column-wise, since that's how we'll scan them.*/\n  for(j=0;j<_grid->ncells;j++){\n    int i;\n    int v0;\n    int v1;\n    u1=_grid->cell_limits[j];\n    v0=0;\n    for(i=0;i<_grid->ncells;i++){\n      qr_hom_cell *cell;\n      int          x0;\n      int          y0;\n      int          w0;\n      int          u;\n      int          du;\n      int          dv;\n      v1=_grid->cell_limits[i];\n      cell=_grid->cells[i]+j;\n      du=u0-cell->u0;\n      dv=v0-cell->v0;\n      x0=cell->fwd[0][0]*du+cell->fwd[0][1]*dv+cell->fwd[0][2];\n      y0=cell->fwd[1][0]*du+cell->fwd[1][1]*dv+cell->fwd[1][2];\n      w0=cell->fwd[2][0]*du+cell->fwd[2][1]*dv+cell->fwd[2][2];\n      for(u=u0;u<u1;u++){\n        int x;\n        int y;\n        int w;\n        int v;\n        x=x0;\n        y=y0;\n        w=w0;\n        for(v=v0;v<v1;v++){\n          /*Skip doing all the divisions and bounds checks if the bit is in the\n             function pattern.*/\n          if(!qr_sampling_grid_is_in_fp(_grid,_dim,u,v)){\n            qr_point p;\n            qr_hom_cell_fproject(p,cell,x,y,w);\n            _data_bits[u*stride+(v>>QR_INT_LOGBITS)]^=\n             qr_img_get_bit(_img,_width,_height,p[0],p[1])<<(v&QR_INT_BITS-1);\n            svg_path_moveto(SVG_ABS, p[0], p[1]);\n          }\n          x+=cell->fwd[0][1];\n          y+=cell->fwd[1][1];\n          w+=cell->fwd[2][1];\n        }\n        x0+=cell->fwd[0][0];\n        y0+=cell->fwd[1][0];\n        w0+=cell->fwd[2][0];\n      }\n      v0=v1;\n    }\n    u0=u1;\n  }\n  svg_path_end();\n}\n\n/*Arranges the sample bits read by qr_sampling_grid_sample() into bytes and\n   groups those bytes into Reed-Solomon blocks.\n  The individual block pointers are destroyed by this routine.*/\nstatic void qr_samples_unpack(unsigned char **_blocks,int _nblocks,\n int _nshort_data,int _nshort_blocks,const unsigned *_data_bits,\n const unsigned *_fp_mask,int _dim){\n  unsigned bits;\n  int      biti;\n  int      stride;\n  int      blocki;\n  int      blockj;\n  int      i;\n  int      j;\n  stride=_dim+QR_INT_BITS-1>>QR_INT_LOGBITS;\n  /*If _all_ the blocks are short, don't skip anything (see below).*/\n  if(_nshort_blocks>=_nblocks)_nshort_blocks=0;\n  /*Scan columns in pairs from right to left.*/\n  bits=0;\n  for(blocki=blockj=biti=0,j=_dim-1;j>0;j-=2){\n    unsigned data1;\n    unsigned data2;\n    unsigned fp_mask1;\n    unsigned fp_mask2;\n    int      nbits;\n    int      l;\n    /*Scan up a pair of columns.*/\n    nbits=(_dim-1&QR_INT_BITS-1)+1;\n    l=j*stride;\n    for(i=stride;i-->0;){\n      data1=_data_bits[l+i];\n      fp_mask1=_fp_mask[l+i];\n      data2=_data_bits[l+i-stride];\n      fp_mask2=_fp_mask[l+i-stride];\n      while(nbits-->0){\n        /*Pull a bit from the right column.*/\n        if(!(fp_mask1>>nbits&1)){\n          bits=bits<<1|data1>>nbits&1;\n          biti++;\n        }\n        /*Pull a bit from the left column.*/\n        if(!(fp_mask2>>nbits&1)){\n          bits=bits<<1|data2>>nbits&1;\n          biti++;\n        }\n        /*If we finished a byte, drop it in a block.*/\n        if(biti>=8){\n          biti-=8;\n          *_blocks[blocki++]++=(unsigned char)(bits>>biti);\n          /*For whatever reason, the long blocks are at the _end_ of the list,\n             instead of the beginning.\n            Even worse, the extra bytes they get come at the end of the data\n             bytes, before the parity bytes.\n            Hence the logic here: when we've filled up the data portion of the\n             short blocks, skip directly to the long blocks for the next byte.\n            It's also the reason we increment _blocks[blocki] on each store,\n             instead of just indexing with blockj (after this iteration the\n             number of bytes in each block differs).*/\n          if(blocki>=_nblocks)blocki=++blockj==_nshort_data?_nshort_blocks:0;\n        }\n      }\n      nbits=QR_INT_BITS;\n    }\n    j-=2;\n    /*Skip the column with the vertical timing pattern.*/\n    if(j==6)j--;\n    /*Scan down a pair of columns.*/\n    l=j*stride;\n    for(i=0;i<stride;i++){\n      data1=_data_bits[l+i];\n      fp_mask1=_fp_mask[l+i];\n      data2=_data_bits[l+i-stride];\n      fp_mask2=_fp_mask[l+i-stride];\n      nbits=QR_MINI(_dim-(i<<QR_INT_LOGBITS),QR_INT_BITS);\n      while(nbits-->0){\n        /*Pull a bit from the right column.*/\n        if(!(fp_mask1&1)){\n          bits=bits<<1|data1&1;\n          biti++;\n        }\n        data1>>=1;\n        fp_mask1>>=1;\n        /*Pull a bit from the left column.*/\n        if(!(fp_mask2&1)){\n          bits=bits<<1|data2&1;\n          biti++;\n        }\n        data2>>=1;\n        fp_mask2>>=1;\n        /*If we finished a byte, drop it in a block.*/\n        if(biti>=8){\n          biti-=8;\n          *_blocks[blocki++]++=(unsigned char)(bits>>biti);\n          /*See comments on the \"up\" loop for the reason behind this mess.*/\n          if(blocki>=_nblocks)blocki=++blockj==_nshort_data?_nshort_blocks:0;\n        }\n      }\n    }\n  }\n}\n\n\n/*Bit reading code blatantly stolen^W^Wadapted from libogg/libtheora (because\n   I've already debugged it and I know it works).\n  Portions (C) Xiph.Org Foundation 1994-2008, BSD-style license.*/\nstruct qr_pack_buf{\n  const unsigned char *buf;\n  int                  endbyte;\n  int                  endbit;\n  int                  storage;\n};\n\n\nstatic void qr_pack_buf_init(qr_pack_buf *_b,\n const unsigned char *_data,int _ndata){\n  _b->buf=_data;\n  _b->storage=_ndata;\n  _b->endbyte=_b->endbit=0;\n}\n\n/*Assumes 0<=_bits<=16.*/\nstatic int qr_pack_buf_read(qr_pack_buf *_b,int _bits){\n  const unsigned char *p;\n  unsigned             ret;\n  int                  m;\n  int                  d;\n  m=16-_bits;\n  _bits+=_b->endbit;\n  d=_b->storage-_b->endbyte;\n  if(d<=2){\n    /*Not the main path.*/\n    if(d*8<_bits){\n      _b->endbyte+=_bits>>3;\n      _b->endbit=_bits&7;\n      return -1;\n    }\n    /*Special case to avoid reading p[0] below, which might be past the end of\n       the buffer; also skips some useless accounting.*/\n    else if(!_bits)return 0;\n  }\n  p=_b->buf+_b->endbyte;\n  ret=p[0]<<8+_b->endbit;\n  if(_bits>8){\n    ret|=p[1]<<_b->endbit;\n    if(_bits>16)ret|=p[2]>>8-_b->endbit;\n  }\n  _b->endbyte+=_bits>>3;\n  _b->endbit=_bits&7;\n  return (ret&0xFFFF)>>m;\n}\n\nstatic int qr_pack_buf_avail(const qr_pack_buf *_b){\n  return (_b->storage-_b->endbyte<<3)-_b->endbit;\n}\n\n\n/*The characters available in QR_MODE_ALNUM.*/\nstatic const unsigned char QR_ALNUM_TABLE[45]={\n  '0','1','2','3','4','5','6','7','8','9',\n  'A','B','C','D','E','F','G','H','I','J',\n  'K','L','M','N','O','P','Q','R','S','T',\n  'U','V','W','X','Y','Z',' ','$','%','*',\n  '+','-','.','/',':'\n};\n\nstatic int qr_code_data_parse(qr_code_data *_qrdata,int _version,\n const unsigned char *_data,int _ndata){\n  qr_pack_buf qpb;\n  unsigned    self_parity;\n  int         centries;\n  int         len_bits_idx;\n  /*Entries are stored directly in the struct during parsing.\n    Caller cleans up any allocated data on failure.*/\n  _qrdata->entries=NULL;\n  _qrdata->nentries=0;\n  _qrdata->sa_size=0;\n  self_parity=0;\n  centries=0;\n  /*The versions are divided into 3 ranges that each use a different number of\n     bits for length fields.*/\n  len_bits_idx=(_version>9)+(_version>26);\n  qr_pack_buf_init(&qpb,_data,_ndata);\n  /*While we have enough bits to read a mode...*/\n  while(qr_pack_buf_avail(&qpb)>=4){\n    qr_code_data_entry *entry;\n    int                 mode;\n    mode=qr_pack_buf_read(&qpb,4);\n    /*Mode 0 is a terminator.*/\n    if(!mode)break;\n    if(_qrdata->nentries>=centries){\n      centries=centries<<1|1;\n      _qrdata->entries=(qr_code_data_entry *)realloc(_qrdata->entries,\n       centries*sizeof(*_qrdata->entries));\n    }\n    entry=_qrdata->entries+_qrdata->nentries++;\n    entry->mode=mode;\n    /*Set the buffer to NULL, because if parsing fails, we might try to free it\n       on clean-up.*/\n    entry->payload.data.buf=NULL;\n    switch(mode){\n      /*The number of bits used to encode the character count for each version\n         range and each data mode.*/\n      static const unsigned char LEN_BITS[3][4]={\n        {10, 9, 8, 8},\n        {12,11,16,10},\n        {14,13,16,12}\n      };\n      case QR_MODE_NUM:{\n        unsigned char *buf;\n        unsigned       bits;\n        unsigned       c;\n        int            len;\n        int            count;\n        int            rem;\n        len=qr_pack_buf_read(&qpb,LEN_BITS[len_bits_idx][0]);\n        if(len<0)return -1;\n        /*Check to see if there are enough bits left now, so we don't have to\n           in the decode loop.*/\n        count=len/3;\n        rem=len%3;\n        if(qr_pack_buf_avail(&qpb)<10*count+7*(rem>>1&1)+4*(rem&1))return -1;\n        entry->payload.data.buf=buf=(unsigned char *)malloc(len*sizeof(*buf));\n        entry->payload.data.len=len;\n        /*Read groups of 3 digits encoded in 10 bits.*/\n        while(count-->0){\n          bits=qr_pack_buf_read(&qpb,10);\n          if(bits>=1000)return -1;\n          c='0'+bits/100;\n          self_parity^=c;\n          *buf++=(unsigned char)c;\n          bits%=100;\n          c='0'+bits/10;\n          self_parity^=c;\n          *buf++=(unsigned char)c;\n          c='0'+bits%10;\n          self_parity^=c;\n          *buf++=(unsigned char)c;\n        }\n        /*Read the last two digits encoded in 7 bits.*/\n        if(rem>1){\n          bits=qr_pack_buf_read(&qpb,7);\n          if(bits>=100)return -1;\n          c='0'+bits/10;\n          self_parity^=c;\n          *buf++=(unsigned char)c;\n          c='0'+bits%10;\n          self_parity^=c;\n          *buf++=(unsigned char)c;\n        }\n        /*Or the last one digit encoded in 4 bits.*/\n        else if(rem){\n          bits=qr_pack_buf_read(&qpb,4);\n          if(bits>=10)return -1;\n          c='0'+bits;\n          self_parity^=c;\n          *buf++=(unsigned char)c;\n        }\n      }break;\n      case QR_MODE_ALNUM:{\n        unsigned char *buf;\n        unsigned       bits;\n        unsigned       c;\n        int            len;\n        int            count;\n        int            rem;\n        len=qr_pack_buf_read(&qpb,LEN_BITS[len_bits_idx][1]);\n        if(len<0)return -1;\n        /*Check to see if there are enough bits left now, so we don't have to\n           in the decode loop.*/\n        count=len>>1;\n        rem=len&1;\n        if(qr_pack_buf_avail(&qpb)<11*count+6*rem)return -1;\n        entry->payload.data.buf=buf=(unsigned char *)malloc(len*sizeof(*buf));\n        entry->payload.data.len=len;\n        /*Read groups of two characters encoded in 11 bits.*/\n        while(count-->0){\n          bits=qr_pack_buf_read(&qpb,11);\n          if(bits>=2025)return -1;\n          c=QR_ALNUM_TABLE[bits/45];\n          self_parity^=c;\n          *buf++=(unsigned char)c;\n          c=QR_ALNUM_TABLE[bits%45];\n          self_parity^=c;\n          *buf++=(unsigned char)c;\n          len-=2;\n        }\n        /*Read the last character encoded in 6 bits.*/\n        if(rem){\n          bits=qr_pack_buf_read(&qpb,6);\n          if(bits>=45)return -1;\n          c=QR_ALNUM_TABLE[bits];\n          self_parity^=c;\n          *buf++=(unsigned char)c;\n        }\n      }break;\n      /*Structured-append header.*/\n      case QR_MODE_STRUCT:{\n        int bits;\n        bits=qr_pack_buf_read(&qpb,16);\n        if(bits<0)return -1;\n        /*We save a copy of the data in _qrdata for easy reference when\n           grouping structured-append codes.\n          If for some reason the code has multiple S-A headers, first one wins,\n           since it is supposed to come before everything else (TODO: should we\n           return an error instead?).*/\n        if(_qrdata->sa_size==0){\n          _qrdata->sa_index=entry->payload.sa.sa_index=\n           (unsigned char)(bits>>12&0xF);\n          _qrdata->sa_size=entry->payload.sa.sa_size=\n           (unsigned char)((bits>>8&0xF)+1);\n          _qrdata->sa_parity=entry->payload.sa.sa_parity=\n           (unsigned char)(bits&0xFF);\n        }\n      }break;\n      case QR_MODE_BYTE:{\n        unsigned char *buf;\n        unsigned       c;\n        int            len;\n        len=qr_pack_buf_read(&qpb,LEN_BITS[len_bits_idx][2]);\n        if(len<0)return -1;\n        /*Check to see if there are enough bits left now, so we don't have to\n           in the decode loop.*/\n        if(qr_pack_buf_avail(&qpb)<len<<3)return -1;\n        entry->payload.data.buf=buf=(unsigned char *)malloc(len*sizeof(*buf));\n        entry->payload.data.len=len;\n        while(len-->0){\n          c=qr_pack_buf_read(&qpb,8);\n          self_parity^=c;\n          *buf++=(unsigned char)c;\n        }\n      }break;\n      /*FNC1 first position marker.*/\n      case QR_MODE_FNC1_1ST:break;\n      /*Extended Channel Interpretation data.*/\n      case QR_MODE_ECI:{\n        unsigned val;\n        int      bits;\n        /*ECI uses a variable-width encoding similar to UTF-8*/\n        bits=qr_pack_buf_read(&qpb,8);\n        if(bits<0)return -1;\n        /*One byte:*/\n        if(!(bits&0x80))val=bits;\n        /*Two bytes:*/\n        else if(!(bits&0x40)){\n          val=bits&0x3F<<8;\n          bits=qr_pack_buf_read(&qpb,8);\n          if(bits<0)return -1;\n          val|=bits;\n        }\n        /*Three bytes:*/\n        else if(!(bits&0x20)){\n          val=bits&0x1F<<16;\n          bits=qr_pack_buf_read(&qpb,16);\n          if(bits<0)return -1;\n          val|=bits;\n          /*Valid ECI values are 0...999999.*/\n          if(val>=1000000)return -1;\n        }\n        /*Invalid lead byte.*/\n        else return -1;\n        entry->payload.eci=val;\n      }break;\n      case QR_MODE_KANJI:{\n        unsigned char *buf;\n        unsigned       bits;\n        int            len;\n        len=qr_pack_buf_read(&qpb,LEN_BITS[len_bits_idx][3]);\n        if(len<0)return -1;\n        /*Check to see if there are enough bits left now, so we don't have to\n           in the decode loop.*/\n        if(qr_pack_buf_avail(&qpb)<13*len)return -1;\n        entry->payload.data.buf=buf=(unsigned char *)malloc(2*len*sizeof(*buf));\n        entry->payload.data.len=2*len;\n        /*Decode 2-byte SJIS characters encoded in 13 bits.*/\n        while(len-->0){\n          bits=qr_pack_buf_read(&qpb,13);\n          bits=(bits/0xC0<<8|bits%0xC0)+0x8140;\n          if(bits>=0xA000)bits+=0x4000;\n          /*TODO: Are values 0xXX7F, 0xXXFD...0xXXFF always invalid?\n            Should we reject them here?*/\n          self_parity^=bits;\n          *buf++=(unsigned char)(bits>>8);\n          *buf++=(unsigned char)(bits&0xFF);\n        }\n      }break;\n      /*FNC1 second position marker.*/\n      case QR_MODE_FNC1_2ND:{\n        int bits;\n        /*FNC1 in the 2nd position encodes an Application Indicator in one\n           byte, which is either a letter (A...Z or a...z) or a 2-digit number.\n          The letters are encoded with their ASCII value plus 100, the numbers\n           are encoded directly with their numeric value.\n          Values 100...164, 191...196, and 223...255 are invalid, so we reject\n           them here.*/\n        bits=qr_pack_buf_read(&qpb,8);\n        if(!(bits>=0&&bits<100||bits>=165&&bits<191||bits>=197&&bits<223)){\n          return -1;\n        }\n        entry->payload.ai=bits;\n      }break;\n      /*Unknown mode number:*/\n      default:{\n        /*Unfortunately, because we have to understand the format of a mode to\n           know how many bits it occupies, we can't skip unknown modes.\n          Therefore we have to fail.*/\n        return -1;\n      }break;\n    }\n  }\n  /*Store the parity of the data from this code, for S-A.\n    The final parity is the 8-bit XOR of all the decoded bytes of literal data.\n    We don't combine the 2-byte kanji codes into one byte in the loops above,\n     because we can just do it here instead.*/\n  _qrdata->self_parity=((self_parity>>8)^self_parity)&0xFF;\n  /*Success.*/\n  _qrdata->entries=(qr_code_data_entry *)realloc(_qrdata->entries,\n   _qrdata->nentries*sizeof(*_qrdata->entries));\n  return 0;\n}\n\nstatic void qr_code_data_clear(qr_code_data *_qrdata){\n  int i;\n  for(i=0;i<_qrdata->nentries;i++){\n    if(QR_MODE_HAS_DATA(_qrdata->entries[i].mode)){\n      free(_qrdata->entries[i].payload.data.buf);\n    }\n  }\n  free(_qrdata->entries);\n}\n\n\nvoid qr_code_data_list_init(qr_code_data_list *_qrlist){\n  _qrlist->qrdata=NULL;\n  _qrlist->nqrdata=_qrlist->cqrdata=0;\n}\n\nvoid qr_code_data_list_clear(qr_code_data_list *_qrlist){\n  int i;\n  for(i=0;i<_qrlist->nqrdata;i++)qr_code_data_clear(_qrlist->qrdata+i);\n  free(_qrlist->qrdata);\n  qr_code_data_list_init(_qrlist);\n}\n\nstatic void qr_code_data_list_add(qr_code_data_list *_qrlist,\n qr_code_data *_qrdata){\n  if(_qrlist->nqrdata>=_qrlist->cqrdata){\n    _qrlist->cqrdata=_qrlist->cqrdata<<1|1;\n    _qrlist->qrdata=(qr_code_data *)realloc(_qrlist->qrdata,\n     _qrlist->cqrdata*sizeof(*_qrlist->qrdata));\n  }\n  memcpy(_qrlist->qrdata+_qrlist->nqrdata++,_qrdata,sizeof(*_qrdata));\n}\n\n#if 0\nstatic const unsigned short QR_NCODEWORDS[40]={\n    26,  44,  70, 100, 134, 172, 196, 242, 292, 346,\n   404, 466, 532, 581, 655, 733, 815, 901, 991,1085,\n  1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,\n  2323,2465,2611,2761,2876,3034,3196,3362,3532,3706\n};\n#endif\n\n/*The total number of codewords in a QR code.*/\nstatic int qr_code_ncodewords(unsigned _version){\n  unsigned nalign;\n  /*This is 24-27 instructions on ARM in thumb mode, or a 26-32 byte savings\n     over just using a table (not counting the instructions that would be\n     needed to do the table lookup).*/\n  if(_version==1)return 26;\n  nalign=(_version/7)+2;\n  return (_version<<4)*(_version+8)\n   -(5*nalign)*(5*nalign-2)+36*(_version<7)+83>>3;\n}\n\n#if 0\n/*The number of parity bytes per Reed-Solomon block for each version and error\n   correction level.*/\nstatic const unsigned char QR_RS_NPAR[40][4]={\n  { 7,10,13,17},{10,16,22,28},{15,26,18,22},{20,18,26,16},\n  {26,24,18,22},{18,16,24,28},{20,18,18,26},{24,22,22,26},\n  {30,22,20,24},{18,26,24,28},{20,30,28,24},{24,22,26,28},\n  {26,22,24,22},{30,24,20,24},{22,24,30,24},{24,28,24,30},\n  {28,28,28,28},{30,26,28,28},{28,26,26,26},{28,26,30,28},\n  {28,26,28,30},{28,28,30,24},{30,28,30,30},{30,28,30,30},\n  {26,28,30,30},{28,28,28,30},{30,28,30,30},{30,28,30,30},\n  {30,28,30,30},{30,28,30,30},{30,28,30,30},{30,28,30,30},\n  {30,28,30,30},{30,28,30,30},{30,28,30,30},{30,28,30,30},\n  {30,28,30,30},{30,28,30,30},{30,28,30,30},{30,28,30,30}\n};\n#endif\n\n/*Bulk data for the number of parity bytes per Reed-Solomon block.*/\nstatic const unsigned char QR_RS_NPAR_VALS[71]={\n  /*[ 0]*/ 7,10,13,17,\n  /*[ 4]*/10,16,22, 28,26,26, 26,22, 24,22,22, 26,24,18,22,\n  /*[19]*/15,26,18, 22,24, 30,24,20,24,\n  /*[28]*/18,16,24, 28, 28, 28,28,30,24,\n  /*[37]*/20,18, 18,26, 24,28,24, 30,26,28, 28, 26,28,30, 30,22,20,24,\n  /*[55]*/20,18,26,16,\n  /*[59]*/20,30,28, 24,22,26, 28,26, 30,28,30,30\n};\n\n/*An offset into QR_RS_NPAR_DATA for each version that gives the number of\n   parity bytes per Reed-Solomon block for each error correction level.*/\nstatic const unsigned char QR_RS_NPAR_OFFS[40]={\n   0, 4,19,55,15,28,37,12,51,39,\n  59,62,10,24,22,41,31,44, 7,65,\n  47,33,67,67,48,32,67,67,67,67,\n  67,67,67,67,67,67,67,67,67,67\n};\n\n/*The number of Reed-Solomon blocks for each version and error correction\n   level.*/\nstatic const unsigned char QR_RS_NBLOCKS[40][4]={\n  { 1, 1, 1, 1},{ 1, 1, 1, 1},{ 1, 1, 2, 2},{ 1, 2, 2, 4},\n  { 1, 2, 4, 4},{ 2, 4, 4, 4},{ 2, 4, 6, 5},{ 2, 4, 6, 6},\n  { 2, 5, 8, 8},{ 4, 5, 8, 8},{ 4, 5, 8,11},{ 4, 8,10,11},\n  { 4, 9,12,16},{ 4, 9,16,16},{ 6,10,12,18},{ 6,10,17,16},\n  { 6,11,16,19},{ 6,13,18,21},{ 7,14,21,25},{ 8,16,20,25},\n  { 8,17,23,25},{ 9,17,23,34},{ 9,18,25,30},{10,20,27,32},\n  {12,21,29,35},{12,23,34,37},{12,25,34,40},{13,26,35,42},\n  {14,28,38,45},{15,29,40,48},{16,31,43,51},{17,33,45,54},\n  {18,35,48,57},{19,37,51,60},{19,38,53,63},{20,40,56,66},\n  {21,43,59,70},{22,45,62,74},{24,47,65,77},{25,49,68,81}\n};\n\n/*Attempts to fully decode a QR code.\n  _qrdata:   Returns the parsed code data.\n  _gf:       Used for Reed-Solomon error correction.\n  _ul_pos:   The location of the UL finder pattern.\n  _ur_pos:   The location of the UR finder pattern.\n  _dl_pos:   The location of the DL finder pattern.\n  _version:  The (decoded) version number.\n  _fmt_info: The decoded format info.\n  _img:      The binary input image.\n  _width:    The width of the input image.\n  _height:   The height of the input image.\n  Return: 0 on success, or a negative value on error.*/\nstatic int qr_code_decode(qr_code_data *_qrdata,const rs_gf256 *_gf,\n const qr_point _ul_pos,const qr_point _ur_pos,const qr_point _dl_pos,\n int _version,int _fmt_info,\n const unsigned char *_img,int _width,int _height){\n  qr_sampling_grid   grid;\n  unsigned          *data_bits;\n  unsigned char    **blocks;\n  unsigned char     *block_data;\n  int                nblocks;\n  int                nshort_blocks;\n  int                ncodewords;\n  int                block_sz;\n  int                ecc_level;\n  int                ndata;\n  int                npar;\n  int                dim;\n  int                ret;\n  int                i;\n  /*Read the bits out of the image.*/\n  qr_sampling_grid_init(&grid,_version,_ul_pos,_ur_pos,_dl_pos,_qrdata->bbox,\n   _img,_width,_height);\n#if defined(QR_DEBUG)\n  qr_sampling_grid_dump(&grid,_version,_img,_width,_height);\n#endif\n  dim=17+(_version<<2);\n  data_bits=(unsigned *)malloc(\n   dim*(dim+QR_INT_BITS-1>>QR_INT_LOGBITS)*sizeof(*data_bits));\n  qr_sampling_grid_sample(&grid,data_bits,dim,_fmt_info,_img,_width,_height);\n  /*Group those bits into Reed-Solomon codewords.*/\n  ecc_level=(_fmt_info>>3)^1;\n  nblocks=QR_RS_NBLOCKS[_version-1][ecc_level];\n  npar=*(QR_RS_NPAR_VALS+QR_RS_NPAR_OFFS[_version-1]+ecc_level);\n  ncodewords=qr_code_ncodewords(_version);\n  block_sz=ncodewords/nblocks;\n  nshort_blocks=nblocks-(ncodewords%nblocks);\n  blocks=(unsigned char **)malloc(nblocks*sizeof(*blocks));\n  block_data=(unsigned char *)malloc(ncodewords*sizeof(*block_data));\n  blocks[0]=block_data;\n  for(i=1;i<nblocks;i++)blocks[i]=blocks[i-1]+block_sz+(i>nshort_blocks);\n  qr_samples_unpack(blocks,nblocks,block_sz-npar,nshort_blocks,\n   data_bits,grid.fpmask,dim);\n  qr_sampling_grid_clear(&grid);\n  free(blocks);\n  free(data_bits);\n  /*Perform the error correction.*/\n  ndata=0;\n  ncodewords=0;\n  ret=0;\n  for(i=0;i<nblocks;i++){\n    int block_szi;\n    int ndatai;\n    block_szi=block_sz+(i>=nshort_blocks);\n    ret=rs_correct(_gf,QR_M0,block_data+ncodewords,block_szi,npar,NULL,0);\n    /*For version 1 symbols and version 2-L and 3-L symbols, we aren't allowed\n       to use all the parity bytes for correction.\n      They are instead used to improve detection.\n      Version 1-L reserves 3 parity bytes for detection.\n      Versions 1-M and 2-L reserve 2 parity bytes for detection.\n      Versions 1-Q, 1-H, and 3-L reserve 1 parity byte for detection.\n      We can ignore the version 3-L restriction because it has an odd number of\n       parity bytes, and we don't support erasure detection.*/\n    if(ret<0||_version==1&&ret>ecc_level+1<<1||\n     _version==2&&ecc_level==0&&ret>4){\n      ret=-1;\n      break;\n    }\n    ndatai=block_szi-npar;\n    memmove(block_data+ndata,block_data+ncodewords,ndatai*sizeof(*block_data));\n    ncodewords+=block_szi;\n    ndata+=ndatai;\n  }\n  /*Parse the corrected bitstream.*/\n  if(ret>=0){\n    ret=qr_code_data_parse(_qrdata,_version,block_data,ndata);\n    /*We could return any partially decoded data, but then we'd have to have\n       API support for that; a mode ignoring ECC errors might also be useful.*/\n    if(ret<0)qr_code_data_clear(_qrdata);\n    _qrdata->version=_version;\n    _qrdata->ecc_level=ecc_level;\n  }\n  free(block_data);\n  return ret;\n}\n\n/*Searches for an arrangement of these three finder centers that yields a valid\n   configuration.\n  _c: On input, the three finder centers to consider in any order.\n  Return: The detected version number, or a negative value on error.*/\nstatic int qr_reader_try_configuration(qr_reader *_reader,\n qr_code_data *_qrdata,const unsigned char *_img,int _width,int _height,\n qr_finder_center *_c[3]){\n  int      ci[7];\n  unsigned maxd;\n  int      ccw;\n  int      i0;\n  int      i;\n  /*Sort the points in counter-clockwise order.*/\n  ccw=qr_point_ccw(_c[0]->pos,_c[1]->pos,_c[2]->pos);\n  /*Colinear points can't be the corners of a quadrilateral.*/\n  if(!ccw)return -1;\n  /*Include a few extra copies of the cyclical list to avoid mods.*/\n  ci[6]=ci[3]=ci[0]=0;\n  ci[4]=ci[1]=1+(ccw<0);\n  ci[5]=ci[2]=2-(ccw<0);\n  /*Assume the points farthest from each other are the opposite corners, and\n     find the top-left point.*/\n  maxd=qr_point_distance2(_c[1]->pos,_c[2]->pos);\n  i0=0;\n  for(i=1;i<3;i++){\n    unsigned d;\n    d=qr_point_distance2(_c[ci[i+1]]->pos,_c[ci[i+2]]->pos);\n    if(d>maxd){\n      i0=i;\n      maxd=d;\n    }\n  }\n  /*However, try all three possible orderings, just to be sure (a severely\n     skewed projection could move opposite corners closer than adjacent).*/\n  for(i=i0;i<i0+3;i++){\n    qr_aff    aff;\n    qr_hom    hom;\n    qr_finder ul;\n    qr_finder ur;\n    qr_finder dl;\n    qr_point  bbox[4];\n    int       res;\n    int       ur_version;\n    int       dl_version;\n    int       fmt_info;\n    ul.c=_c[ci[i]];\n    ur.c=_c[ci[i+1]];\n    dl.c=_c[ci[i+2]];\n    /*Estimate the module size and version number from the two opposite corners.\n      The module size is not constant in the image, so we compute an affine\n       projection from the three points we have to a square domain, and\n       estimate it there.\n      Although it should be the same along both axes, we keep separate\n       estimates to account for any remaining projective distortion.*/\n    res=QR_INT_BITS-2-QR_FINDER_SUBPREC-qr_ilog(QR_MAXI(_width,_height)-1);\n    qr_aff_init(&aff,ul.c->pos,ur.c->pos,dl.c->pos,res);\n    qr_aff_unproject(ur.o,&aff,ur.c->pos[0],ur.c->pos[1]);\n    qr_finder_edge_pts_aff_classify(&ur,&aff);\n    if(qr_finder_estimate_module_size_and_version(&ur,1<<res,1<<res)<0)continue;\n    qr_aff_unproject(dl.o,&aff,dl.c->pos[0],dl.c->pos[1]);\n    qr_finder_edge_pts_aff_classify(&dl,&aff);\n    if(qr_finder_estimate_module_size_and_version(&dl,1<<res,1<<res)<0)continue;\n    /*If the estimated versions are significantly different, reject the\n       configuration.*/\n    if(abs(ur.eversion[1]-dl.eversion[0])>QR_LARGE_VERSION_SLACK)continue;\n    qr_aff_unproject(ul.o,&aff,ul.c->pos[0],ul.c->pos[1]);\n    qr_finder_edge_pts_aff_classify(&ul,&aff);\n    if(qr_finder_estimate_module_size_and_version(&ul,1<<res,1<<res)<0||\n     abs(ul.eversion[1]-ur.eversion[1])>QR_LARGE_VERSION_SLACK||\n     abs(ul.eversion[0]-dl.eversion[0])>QR_LARGE_VERSION_SLACK){\n      continue;\n    }\n#if defined(QR_DEBUG)\n    qr_finder_dump_aff_undistorted(&ul,&ur,&dl,&aff,_img,_width,_height);\n#endif\n    /*If we made it this far, upgrade the affine homography to a full\n       homography.*/\n    if(qr_hom_fit(&hom,&ul,&ur,&dl,bbox,&aff,\n     &_reader->isaac,_img,_width,_height)<0){\n      continue;\n    }\n    memcpy(_qrdata->bbox,bbox,sizeof(bbox));\n    qr_hom_unproject(ul.o,&hom,ul.c->pos[0],ul.c->pos[1]);\n    qr_hom_unproject(ur.o,&hom,ur.c->pos[0],ur.c->pos[1]);\n    qr_hom_unproject(dl.o,&hom,dl.c->pos[0],dl.c->pos[1]);\n    qr_finder_edge_pts_hom_classify(&ur,&hom);\n    if(qr_finder_estimate_module_size_and_version(&ur,\n     ur.o[0]-ul.o[0],ur.o[0]-ul.o[0])<0){\n      continue;\n    }\n    qr_finder_edge_pts_hom_classify(&dl,&hom);\n    if(qr_finder_estimate_module_size_and_version(&dl,\n     dl.o[1]-ul.o[1],dl.o[1]-ul.o[1])<0){\n      continue;\n    }\n#if defined(QR_DEBUG)\n    qr_finder_dump_hom_undistorted(&ul,&ur,&dl,&hom,_img,_width,_height);\n#endif\n    /*If we have a small version (less than 7), there's no encoded version\n       information.\n      If the estimated version on the two corners matches and is sufficiently\n       small, we assume this is the case.*/\n    if(ur.eversion[1]==dl.eversion[0]&&ur.eversion[1]<7){\n      /*We used to do a whole bunch of extra geometric checks for small\n         versions, because with just an affine correction, it was fairly easy\n         to estimate two consistent module sizes given a random configuration.\n        However, now that we're estimating a full homography, these appear to\n         be unnecessary.*/\n#if 0\n      static const signed char LINE_TESTS[12][6]={\n        /*DL left, UL > 0, UR > 0*/\n        {2,0,0, 1,1, 1},\n        /*DL right, UL > 0, UR < 0*/\n        {2,1,0, 1,1,-1},\n        /*UR top, UL > 0, DL > 0*/\n        {1,2,0, 1,2, 1},\n        /*UR bottom, UL > 0, DL < 0*/\n        {1,3,0, 1,2,-1},\n        /*UR left, DL < 0, UL < 0*/\n        {1,0,2,-1,0,-1},\n        /*UR right, DL > 0, UL > 0*/\n        {1,1,2, 1,0, 1},\n        /*DL top, UR < 0, UL < 0*/\n        {2,2,1,-1,0,-1},\n        /*DL bottom, UR > 0, UL > 0*/\n        {2,3,1, 1,0, 1},\n        /*UL left, DL > 0, UR > 0*/\n        {0,0,2, 1,1, 1},\n        /*UL right, DL > 0, UR < 0*/\n        {0,1,2, 1,1,-1},\n        /*UL top, UR > 0, DL > 0*/\n        {0,2,1, 1,2, 1},\n        /*UL bottom, UR > 0, DL < 0*/\n        {0,3,1, 1,2,-1}\n      };\n      qr_finder *f[3];\n      int        j;\n      /*Start by decoding the format information.\n        This is cheap, but unlikely to reject invalid configurations.\n        56.25% of all bitstrings are valid, and we mix and match several pieces\n         until we find a valid combination, so our real chances of finding a\n         valid codeword in random bits are even higher.*/\n      fmt_info=qr_finder_fmt_info_decode(&ul,&ur,&dl,&aff,_img,_width,_height);\n      if(fmt_info<0)continue;\n      /*Now we fit lines to the edges of each finder pattern and check to make\n         sure the centers of the other finder patterns lie on the proper side.*/\n      f[0]=&ul;\n      f[1]=&ur;\n      f[2]=&dl;\n      for(j=0;j<12;j++){\n        const signed char *t;\n        qr_line            l0;\n        int               *p;\n        t=LINE_TESTS[j];\n        qr_finder_ransac(f[t[0]],&aff,&_reader->isaac,t[1]);\n        /*We may not have enough points to fit a line accurately here.\n          If not, we just skip the test.*/\n        if(qr_line_fit_finder_edge(l0,f[t[0]],t[1],res)<0)continue;\n        p=f[t[2]]->c->pos;\n        if(qr_line_eval(l0,p[0],p[1])*t[3]<0)break;\n        p=f[t[4]]->c->pos;\n        if(qr_line_eval(l0,p[0],p[1])*t[5]<0)break;\n      }\n      if(j<12)continue;\n      /*All tests passed.*/\n#endif\n      ur_version=ur.eversion[1];\n    }\n    else{\n      /*If the estimated versions are significantly different, reject the\n         configuration.*/\n      if(abs(ur.eversion[1]-dl.eversion[0])>QR_LARGE_VERSION_SLACK)continue;\n      /*Otherwise we try to read the actual version data from the image.\n        If the real version is not sufficiently close to our estimated version,\n         then we assume there was an unrecoverable decoding error (so many bit\n         errors we were within 3 errors of another valid code), and throw that\n         value away.\n        If no decoded version could be sufficiently close, we don't even try.*/\n      if(ur.eversion[1]>=7-QR_LARGE_VERSION_SLACK){\n        ur_version=qr_finder_version_decode(&ur,&hom,_img,_width,_height,0);\n        if(abs(ur_version-ur.eversion[1])>QR_LARGE_VERSION_SLACK)ur_version=-1;\n      }\n      else ur_version=-1;\n      if(dl.eversion[0]>=7-QR_LARGE_VERSION_SLACK){\n        dl_version=qr_finder_version_decode(&dl,&hom,_img,_width,_height,1);\n        if(abs(dl_version-dl.eversion[0])>QR_LARGE_VERSION_SLACK)dl_version=-1;\n      }\n      else dl_version=-1;\n      /*If we got at least one valid version, or we got two and they match,\n         then we found a valid configuration.*/\n      if(ur_version>=0){\n        if(dl_version>=0&&dl_version!=ur_version)continue;\n      }\n      else if(dl_version<0)continue;\n      else ur_version=dl_version;\n    }\n    qr_finder_edge_pts_hom_classify(&ul,&hom);\n    if(qr_finder_estimate_module_size_and_version(&ul,\n     ur.o[0]-dl.o[0],dl.o[1]-ul.o[1])<0||\n     abs(ul.eversion[1]-ur.eversion[1])>QR_SMALL_VERSION_SLACK||\n     abs(ul.eversion[0]-dl.eversion[0])>QR_SMALL_VERSION_SLACK){\n      continue;\n    }\n    fmt_info=qr_finder_fmt_info_decode(&ul,&ur,&dl,&hom,_img,_width,_height);\n    if(fmt_info<0||\n     qr_code_decode(_qrdata,&_reader->gf,ul.c->pos,ur.c->pos,dl.c->pos,\n     ur_version,fmt_info,_img,_width,_height)<0){\n      /*The code may be flipped.\n        Try again, swapping the UR and DL centers.\n        We should get a valid version either way, so it's relatively cheap to\n         check this, as we've already filtered out a lot of invalid\n         configurations.*/\n      QR_SWAP2I(hom.inv[0][0],hom.inv[1][0]);\n      QR_SWAP2I(hom.inv[0][1],hom.inv[1][1]);\n      QR_SWAP2I(hom.fwd[0][0],hom.fwd[0][1]);\n      QR_SWAP2I(hom.fwd[1][0],hom.fwd[1][1]);\n      QR_SWAP2I(hom.fwd[2][0],hom.fwd[2][1]);\n      QR_SWAP2I(ul.o[0],ul.o[1]);\n      QR_SWAP2I(ul.size[0],ul.size[1]);\n      QR_SWAP2I(ur.o[0],ur.o[1]);\n      QR_SWAP2I(ur.size[0],ur.size[1]);\n      QR_SWAP2I(dl.o[0],dl.o[1]);\n      QR_SWAP2I(dl.size[0],dl.size[1]);\n#if defined(QR_DEBUG)\n      qr_finder_dump_hom_undistorted(&ul,&dl,&ur,&hom,_img,_width,_height);\n#endif\n      fmt_info=qr_finder_fmt_info_decode(&ul,&dl,&ur,&hom,_img,_width,_height);\n      if(fmt_info<0)continue;\n      QR_SWAP2I(bbox[1][0],bbox[2][0]);\n      QR_SWAP2I(bbox[1][1],bbox[2][1]);\n      memcpy(_qrdata->bbox,bbox,sizeof(bbox));\n      if(qr_code_decode(_qrdata,&_reader->gf,ul.c->pos,dl.c->pos,ur.c->pos,\n       ur_version,fmt_info,_img,_width,_height)<0){\n        continue;\n      }\n    }\n    return ur_version;\n  }\n  return -1;\n}\n\nvoid qr_reader_match_centers(qr_reader *_reader,qr_code_data_list *_qrlist,\n qr_finder_center *_centers,int _ncenters,\n const unsigned char *_img,int _width,int _height){\n  /*The number of centers should be small, so an O(n^3) exhaustive search of\n     which ones go together should be reasonable.*/\n  unsigned char *mark;\n  int            nfailures_max;\n  int            nfailures;\n  int            i;\n  int            j;\n  int            k;\n  mark=(unsigned char *)calloc(_ncenters,sizeof(*mark));\n  nfailures_max=QR_MAXI(8192,_width*_height>>9);\n  nfailures=0;\n  for(i=0;i<_ncenters;i++){\n    /*TODO: We might be able to accelerate this step significantly by\n       considering the remaining finder centers in a more intelligent order,\n       based on the first finder center we just chose.*/\n    for(j=i+1;!mark[i]&&j<_ncenters;j++){\n      for(k=j+1;!mark[j]&&k<_ncenters;k++)if(!mark[k]){\n        qr_finder_center *c[3];\n        qr_code_data      qrdata;\n        int               version;\n        c[0]=_centers+i;\n        c[1]=_centers+j;\n        c[2]=_centers+k;\n        version=qr_reader_try_configuration(_reader,&qrdata,\n         _img,_width,_height,c);\n        if(version>=0){\n          int ninside;\n          int l;\n          /*Add the data to the list.*/\n          qr_code_data_list_add(_qrlist,&qrdata);\n          /*Convert the bounding box we're returning to the user to normal\n             image coordinates.*/\n          for(l=0;l<4;l++){\n            _qrlist->qrdata[_qrlist->nqrdata-1].bbox[l][0]>>=QR_FINDER_SUBPREC;\n            _qrlist->qrdata[_qrlist->nqrdata-1].bbox[l][1]>>=QR_FINDER_SUBPREC;\n          }\n          /*Mark these centers as used.*/\n          mark[i]=mark[j]=mark[k]=1;\n          /*Find any other finder centers located inside this code.*/\n          for(l=ninside=0;l<_ncenters;l++)if(!mark[l]){\n            if(qr_point_ccw(qrdata.bbox[0],qrdata.bbox[1],_centers[l].pos)>=0&&\n             qr_point_ccw(qrdata.bbox[1],qrdata.bbox[3],_centers[l].pos)>=0&&\n             qr_point_ccw(qrdata.bbox[3],qrdata.bbox[2],_centers[l].pos)>=0&&\n             qr_point_ccw(qrdata.bbox[2],qrdata.bbox[0],_centers[l].pos)>=0){\n              mark[l]=2;\n              ninside++;\n            }\n          }\n          if(ninside>=3){\n            /*We might have a \"Double QR\": a code inside a code.\n              Copy the relevant centers to a new array and do a search confined\n               to that subset.*/\n            qr_finder_center *inside;\n            inside=(qr_finder_center *)malloc(ninside*sizeof(*inside));\n            for(l=ninside=0;l<_ncenters;l++){\n              if(mark[l]==2)*&inside[ninside++]=*&_centers[l];\n            }\n            qr_reader_match_centers(_reader,_qrlist,inside,ninside,\n             _img,_width,_height);\n            free(inside);\n          }\n          /*Mark _all_ such centers used: codes cannot partially overlap.*/\n          for(l=0;l<_ncenters;l++)if(mark[l]==2)mark[l]=1;\n          nfailures=0;\n        }\n        else if(++nfailures>nfailures_max){\n          /*Give up.\n            We're unlikely to find a valid code in all this clutter, and we\n             could spent quite a lot of time trying.*/\n          i=j=k=_ncenters;\n        }\n      }\n    }\n  }\n  free(mark);\n}\n\nint _zbar_qr_found_line (qr_reader *reader,\n                         int dir,\n                         const qr_finder_line *line)\n{\n    /* minimally intrusive brute force version */\n    qr_finder_lines *lines = &reader->finder_lines[dir];\n\n    if(lines->nlines >= lines->clines) {\n        lines->clines *= 2;\n        lines->lines = realloc(lines->lines,\n                               ++lines->clines * sizeof(*lines->lines));\n    }\n\n    memcpy(lines->lines + lines->nlines++, line, sizeof(*line));\n\n    return(0);\n}\n\nstatic inline void qr_svg_centers (const qr_finder_center *centers,\n                                   int ncenters)\n{\n    int i, j;\n    svg_path_start(\"centers\", 1, 0, 0);\n    for(i = 0; i < ncenters; i++)\n        svg_path_moveto(SVG_ABS, centers[i].pos[0], centers[i].pos[1]);\n    svg_path_end();\n\n    svg_path_start(\"edge-pts\", 1, 0, 0);\n    for(i = 0; i < ncenters; i++) {\n        const qr_finder_center *cen = centers + i;\n        for(j = 0; j < cen->nedge_pts; j++)\n            svg_path_moveto(SVG_ABS,\n                            cen->edge_pts[j].pos[0], cen->edge_pts[j].pos[1]);\n    }\n    svg_path_end();\n}\n\nint _zbar_qr_decode (qr_reader *reader,\n                     zbar_image_scanner_t *iscn,\n                     zbar_image_t *img)\n{\n    int nqrdata = 0, ncenters;\n    qr_finder_edge_pt *edge_pts = NULL;\n    qr_finder_center *centers = NULL;\n\n    if(reader->finder_lines[0].nlines < 9 ||\n       reader->finder_lines[1].nlines < 9)\n        return(0);\n\n    svg_group_start(\"finder\", 0, 1. / (1 << QR_FINDER_SUBPREC), 0, 0, 0);\n\n    ncenters = qr_finder_centers_locate(&centers, &edge_pts, reader, 0, 0);\n\n    zprintf(14, \"%dx%d finders, %d centers:\\n\",\n            reader->finder_lines[0].nlines,\n            reader->finder_lines[1].nlines,\n            ncenters);\n    qr_svg_centers(centers, ncenters);\n\n    if(ncenters >= 3) {\n        void *bin = qr_binarize(img->data, img->width, img->height);\n\n        qr_code_data_list qrlist;\n        qr_code_data_list_init(&qrlist);\n\n        qr_reader_match_centers(reader, &qrlist, centers, ncenters,\n                                bin, img->width, img->height);\n\n        if(qrlist.nqrdata > 0)\n            nqrdata = qr_code_data_list_extract_text(&qrlist, iscn, img);\n\n        qr_code_data_list_clear(&qrlist);\n        free(bin);\n    }\n    svg_group_end();\n\n    if(centers)\n        free(centers);\n    if(edge_pts)\n        free(edge_pts);\n    return(nqrdata);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/qrdec.h",
    "content": "/*Copyright (C) 2008-2009  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#if !defined(_qrdec_H)\n# define _qrdec_H (1)\n\n#include <zbar.h>\n\ntypedef struct qr_code_data_entry qr_code_data_entry;\ntypedef struct qr_code_data       qr_code_data;\ntypedef struct qr_code_data_list  qr_code_data_list;\n\ntypedef enum qr_mode{\n  /*Numeric digits ('0'...'9').*/\n  QR_MODE_NUM=1,\n  /*Alphanumeric characters ('0'...'9', 'A'...'Z', plus the punctuation\n     ' ', '$', '%', '*', '+', '-', '.', '/', ':').*/\n  QR_MODE_ALNUM,\n  /*Structured-append header.*/\n  QR_MODE_STRUCT,\n  /*Raw 8-bit bytes.*/\n  QR_MODE_BYTE,\n  /*FNC1 marker (for more info, see http://www.mecsw.com/specs/uccean128.html).\n    In the \"first position\" data is formatted in accordance with GS1 General\n     Specifications.*/\n  QR_MODE_FNC1_1ST,\n  /*Mode 6 reserved?*/\n  /*Extended Channel Interpretation code.*/\n  QR_MODE_ECI=7,\n  /*SJIS kanji characters.*/\n  QR_MODE_KANJI,\n  /*FNC1 marker (for more info, see http://www.mecsw.com/specs/uccean128.html).\n    In the \"second position\" data is formatted in accordance with an industry\n     application as specified by AIM Inc.*/\n  QR_MODE_FNC1_2ND\n}qr_mode;\n\n/*Check if a mode has a data buffer associated with it.\n  Currently this is only modes with exactly one bit set.*/\n#define QR_MODE_HAS_DATA(_mode) (!((_mode)&(_mode)-1))\n\n/*ECI may be used to signal a character encoding for the data.*/\ntypedef enum qr_eci_encoding{\n  /*GLI0 is like CP437, but the encoding is reset at the beginning of each\n     structured append symbol.*/\n  QR_ECI_GLI0,\n  /*GLI1 is like ISO8859_1, but the encoding is reset at the beginning of each\n     structured append symbol.*/\n  QR_ECI_GLI1,\n  /*The remaining encodings do not reset at the start of the next structured\n     append symbol.*/\n  QR_ECI_CP437,\n  /*Western European.*/\n  QR_ECI_ISO8859_1,\n  /*Central European.*/\n  QR_ECI_ISO8859_2,\n  /*South European.*/\n  QR_ECI_ISO8859_3,\n  /*North European.*/\n  QR_ECI_ISO8859_4,\n  /*Cyrillic.*/\n  QR_ECI_ISO8859_5,\n  /*Arabic.*/\n  QR_ECI_ISO8859_6,\n  /*Greek.*/\n  QR_ECI_ISO8859_7,\n  /*Hebrew.*/\n  QR_ECI_ISO8859_8,\n  /*Turkish.*/\n  QR_ECI_ISO8859_9,\n  /*Nordic.*/\n  QR_ECI_ISO8859_10,\n  /*Thai.*/\n  QR_ECI_ISO8859_11,\n  /*There is no ISO/IEC 8859-12.*/\n  /*Baltic rim.*/\n  QR_ECI_ISO8859_13=QR_ECI_ISO8859_11+2,\n  /*Celtic.*/\n  QR_ECI_ISO8859_14,\n  /*Western European with euro.*/\n  QR_ECI_ISO8859_15,\n  /*South-Eastern European (with euro).*/\n  QR_ECI_ISO8859_16,\n  /*ECI 000019 is reserved?*/\n  /*Shift-JIS.*/\n  QR_ECI_SJIS=20,\n  /*UTF-8.*/\n  QR_ECI_UTF8=26\n}qr_eci_encoding;\n\n\n/*A single unit of parsed QR code data.*/\nstruct qr_code_data_entry{\n  /*The mode of this data block.*/\n  qr_mode mode;\n  union{\n    /*Data buffer for modes that have one.*/\n    struct{\n      unsigned char *buf;\n      int            len;\n    }data;\n    /*Decoded \"Extended Channel Interpretation\" data.*/\n    unsigned eci;\n    /*Decoded \"Application Indicator\" for FNC1 in 2nd position.*/\n    int      ai;\n    /*Structured-append header data.*/\n    struct{\n      unsigned char sa_index;\n      unsigned char sa_size;\n      unsigned char sa_parity;\n    }sa;\n  }payload;\n};\n\n\n\n/*Low-level QR code data.*/\nstruct qr_code_data{\n  /*The decoded data entries.*/\n  qr_code_data_entry *entries;\n  int                 nentries;\n  /*The code version (1...40).*/\n  unsigned char       version;\n  /*The ECC level (0...3, corresponding to 'L', 'M', 'Q', and 'H').*/\n  unsigned char       ecc_level;\n  /*Structured-append information.*/\n  /*The index of this code in the structured-append group.\n    If sa_size is zero, this is undefined.*/\n  unsigned char       sa_index;\n  /*The size of the structured-append group, or 0 if there was no S-A header.*/\n  unsigned char       sa_size;\n  /*The parity of the entire structured-append group.\n    If sa_size is zero, this is undefined.*/\n  unsigned char       sa_parity;\n  /*The parity of this code.\n    If sa_size is zero, this is undefined.*/\n  unsigned char       self_parity;\n  /*An approximate bounding box for the code.\n    Points appear in the order up-left, up-right, down-left, down-right,\n     relative to the orientation of the QR code.*/\n  qr_point            bbox[4];\n};\n\n\nstruct qr_code_data_list{\n  qr_code_data *qrdata;\n  int           nqrdata;\n  int           cqrdata;\n};\n\n\n/*Extract symbol data from a list of QR codes and attach to the image.\n  All text is converted to UTF-8.\n  Any structured-append group that does not have all of its members is decoded\n   as ZBAR_PARTIAL with ZBAR_PARTIAL components for the discontinuities.\n  Note that isolated members of a structured-append group may be decoded with\n   the wrong character set, since the correct setting cannot be propagated\n   between codes.\n  Return: The number of symbols which were successfully extracted from the\n   codes; this will be at most the number of codes.*/\nint qr_code_data_list_extract_text(const qr_code_data_list *_qrlist,\n                                   zbar_image_scanner_t *iscn,\n                                   zbar_image_t *img);\n\n\n/*TODO: Parse DoCoMo standard barcode data formats.\n  See http://www.nttdocomo.co.jp/english/service/imode/make/content/barcode/function/application/\n   for details.*/\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/qrdectxt.c",
    "content": "/*Copyright (C) 2008-2010  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#include <config.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <iconv.h>\n#include \"qrcode.h\"\n#include \"qrdec.h\"\n#include \"util.h\"\n#include \"image.h\"\n#include \"decoder.h\"\n#include \"error.h\"\n#include \"img_scanner.h\"\n\nstatic int text_is_ascii(const unsigned char *_text,int _len){\n  int i;\n  for(i=0;i<_len;i++)if(_text[i]>=0x80)return 0;\n  return 1;\n}\n\nstatic int text_is_latin1(const unsigned char *_text,int _len){\n  int i;\n  for(i=0;i<_len;i++){\n    /*The following line fails to compile correctly with gcc 3.4.4 on ARM with\n       any optimizations enabled.*/\n    if(_text[i]>=0x80&&_text[i]<0xA0)return 0;\n  }\n  return 1;\n}\n\nstatic void enc_list_mtf(iconv_t _enc_list[3],iconv_t _enc){\n  int i;\n  for(i=0;i<3;i++)if(_enc_list[i]==_enc){\n    int j;\n    for(j=i;j-->0;)_enc_list[j+1]=_enc_list[j];\n    _enc_list[0]=_enc;\n    break;\n  }\n}\n\nint qr_code_data_list_extract_text(const qr_code_data_list *_qrlist,\n                                   zbar_image_scanner_t *iscn,\n                                   zbar_image_t *img)\n{\n  iconv_t              sjis_cd;\n  iconv_t              utf8_cd;\n  iconv_t              latin1_cd;\n  const qr_code_data  *qrdata;\n  int                  nqrdata;\n  unsigned char       *mark;\n  int                  ntext;\n  int                  i;\n  qrdata=_qrlist->qrdata;\n  nqrdata=_qrlist->nqrdata;\n  mark=(unsigned char *)calloc(nqrdata,sizeof(*mark));\n  ntext=0;\n  /*This is the encoding the standard says is the default.*/\n  latin1_cd=iconv_open(\"UTF-8\",\"ISO8859-1\");\n  /*But this one is often used, as well.*/\n  sjis_cd=iconv_open(\"UTF-8\",\"SJIS\");\n  /*This is a trivial conversion just to check validity without extra code.*/\n  utf8_cd=iconv_open(\"UTF-8\",\"UTF-8\");\n  for(i=0;i<nqrdata;i++)if(!mark[i]){\n    const qr_code_data       *qrdataj;\n    const qr_code_data_entry *entry;\n    iconv_t                   enc_list[3];\n    iconv_t                   eci_cd;\n    int                       sa[16];\n    int                       sa_size;\n    char                     *sa_text;\n    size_t                    sa_ntext;\n    size_t                    sa_ctext;\n    int                       fnc1;\n    int                       fnc1_2ai;\n    int                       has_kanji;\n    int                       eci;\n    int                       err;\n    int                       j;\n    int                       k;\n    zbar_symbol_t *syms = NULL, **sym = &syms;\n    qr_point dir;\n    int horiz;\n\n    /*Step 0: Collect the other QR codes belonging to this S-A group.*/\n    if(qrdata[i].sa_size){\n      unsigned sa_parity;\n      sa_size=qrdata[i].sa_size;\n      sa_parity=qrdata[i].sa_parity;\n      for(j=0;j<sa_size;j++)sa[j]=-1;\n      for(j=i;j<nqrdata;j++)if(!mark[j]){\n        /*TODO: We could also match version, ECC level, etc. if size and\n           parity alone are too ambiguous.*/\n        if(qrdata[j].sa_size==sa_size&&qrdata[j].sa_parity==sa_parity&&\n         sa[qrdata[j].sa_index]<0){\n          sa[qrdata[j].sa_index]=j;\n          mark[j]=1;\n        }\n      }\n      /*TODO: If the S-A group is complete, check the parity.*/\n    }\n    else{\n      sa[0]=i;\n      sa_size=1;\n    }\n\n    sa_ctext=0;\n    fnc1=0;\n    fnc1_2ai=0;\n    has_kanji=0;\n    /*Step 1: Detect FNC1 markers and estimate the required buffer size.*/\n    for(j=0;j<sa_size;j++)if(sa[j]>=0){\n      qrdataj=qrdata+sa[j];\n      for(k=0;k<qrdataj->nentries;k++){\n        int shift;\n        entry=qrdataj->entries+k;\n        shift=0;\n        switch(entry->mode){\n          /*FNC1 applies to the entire code and ignores subsequent markers.*/\n          case QR_MODE_FNC1_1ST:{\n            if(!fnc1)fnc1=MOD(ZBAR_MOD_GS1);\n          }break;\n          case QR_MODE_FNC1_2ND:{\n            if(!fnc1){\n              fnc1=MOD(ZBAR_MOD_AIM);\n              fnc1_2ai=entry->payload.ai;\n              sa_ctext+=2;\n            }\n          }break;\n          /*We assume at most 4 UTF-8 bytes per input byte.\n            I believe this is true for all the encodings we actually use.*/\n          case QR_MODE_KANJI:has_kanji=1;\n          case QR_MODE_BYTE:shift=2;\n          default:{\n            /*The remaining two modes are already valid UTF-8.*/\n            if(QR_MODE_HAS_DATA(entry->mode)){\n              sa_ctext+=entry->payload.data.len<<shift;\n            }\n          }break;\n        }\n      }\n    }\n\n    /*Step 2: Convert the entries.*/\n    sa_text=(char *)malloc((sa_ctext+1)*sizeof(*sa_text));\n    sa_ntext=0;\n    /*Add the encoded Application Indicator for FNC1 in the second position.*/\n    if(fnc1==MOD(ZBAR_MOD_AIM)){\n      if(fnc1_2ai<100){\n        /*The Application Indicator is a 2-digit number.*/\n        sa_text[sa_ntext++]='0'+fnc1_2ai/10;\n        sa_text[sa_ntext++]='0'+fnc1_2ai%10;\n      }\n      /*The Application Indicator is a single letter.\n        We already checked that it lies in one of the ranges A...Z, a...z\n         when we decoded it.*/\n      else sa_text[sa_ntext++]=(char)(fnc1_2ai-100);\n    }\n    eci=-1;\n    /*\n    enc_list[0]=sjis_cd;\n    enc_list[1]=latin1_cd;\n    enc_list[2]=utf8_cd;\n*   */\n    enc_list[1]=sjis_cd;\n    enc_list[2]=latin1_cd;\n    enc_list[0]=utf8_cd;\n\n    eci_cd=(iconv_t)-1;\n    err=0;\n    for(j = 0; j < sa_size && !err; j++, sym = &(*sym)->next) {\n      *sym = _zbar_image_scanner_alloc_sym(iscn, ZBAR_QRCODE, 0);\n      (*sym)->datalen = sa_ntext;\n      if(sa[j]<0){\n        /* generic placeholder for unfinished results */\n        (*sym)->type = ZBAR_PARTIAL;\n\n        /*Skip all contiguous missing segments.*/\n        for(j++;j<sa_size&&sa[j]<0;j++);\n        /*If there aren't any more, stop.*/\n        if(j>=sa_size)break;\n\n        /* mark break in data */\n        sa_text[sa_ntext++]='\\0';\n        (*sym)->datalen = sa_ntext;\n\n        /* advance to next symbol */\n        sym = &(*sym)->next;\n        *sym = _zbar_image_scanner_alloc_sym(iscn, ZBAR_QRCODE, 0);\n      }\n\n      qrdataj=qrdata+sa[j];\n      /* expose bounding box */\n      sym_add_point(*sym, qrdataj->bbox[0][0], qrdataj->bbox[0][1]);\n      sym_add_point(*sym, qrdataj->bbox[2][0], qrdataj->bbox[2][1]);\n      sym_add_point(*sym, qrdataj->bbox[3][0], qrdataj->bbox[3][1]);\n      sym_add_point(*sym, qrdataj->bbox[1][0], qrdataj->bbox[1][1]);\n\n      /* approx symbol \"up\" direction */\n      dir[0] = (qrdataj->bbox[0][0] - qrdataj->bbox[2][0] +\n                qrdataj->bbox[1][0] - qrdataj->bbox[3][0]);\n      dir[1] = (qrdataj->bbox[2][1] - qrdataj->bbox[0][1] +\n                qrdataj->bbox[3][1] - qrdataj->bbox[1][1]);\n      horiz = abs(dir[0]) > abs(dir[1]);\n      (*sym)->orient = horiz + 2 * (dir[1 - horiz] < 0);\n\n      for(k=0;k<qrdataj->nentries&&!err;k++){\n        size_t              inleft;\n        size_t              outleft;\n        char               *in;\n        char               *out;\n        entry=qrdataj->entries+k;\n        switch(entry->mode){\n          case QR_MODE_NUM:{\n            if(sa_ctext-sa_ntext>=(size_t)entry->payload.data.len){\n              memcpy(sa_text+sa_ntext,entry->payload.data.buf,\n               entry->payload.data.len*sizeof(*sa_text));\n              sa_ntext+=entry->payload.data.len;\n            }\n            else err=1;\n          }break;\n          case QR_MODE_ALNUM:{\n            char *p;\n            in=(char *)entry->payload.data.buf;\n            inleft=entry->payload.data.len;\n            /*FNC1 uses '%' as an escape character.*/\n            if(fnc1)for(;;){\n              size_t plen;\n              char   c;\n              p=memchr(in,'%',inleft*sizeof(*in));\n              if(p==NULL)break;\n              plen=p-in;\n              if(sa_ctext-sa_ntext<plen+1)break;\n              memcpy(sa_text+sa_ntext,in,plen*sizeof(*in));\n              sa_ntext+=plen;\n              /*Two '%'s is a literal '%'*/\n              if(plen+1<inleft&&p[1]=='%'){\n                c='%';\n                plen++;\n                p++;\n              }\n              /*One '%' is the ASCII group separator.*/\n              else c=0x1D;\n              sa_text[sa_ntext++]=c;\n              inleft-=plen+1;\n              in=p+1;\n            }\n            else p=NULL;\n            if(p!=NULL||sa_ctext-sa_ntext<inleft)err=1;\n            else{\n              memcpy(sa_text+sa_ntext,in,inleft*sizeof(*sa_text));\n              sa_ntext+=inleft;\n            }\n          }break;\n          /*TODO: This will not handle a multi-byte sequence split between\n             multiple data blocks.\n            Does such a thing occur?\n            Is it allowed?\n            It requires copying buffers around to handle correctly.*/\n          case QR_MODE_BYTE:\n          case QR_MODE_KANJI:{\n            in=(char *)entry->payload.data.buf;\n            inleft=entry->payload.data.len;\n            out=sa_text+sa_ntext;\n            outleft=sa_ctext-sa_ntext;\n            /*If we have no specified encoding, attempt to auto-detect it.*/\n            if(eci<0){\n              int ei;\n              /*If there was data encoded in kanji mode, assume it's SJIS.*/\n              if(has_kanji)enc_list_mtf(enc_list,sjis_cd);\n              /*Otherwise check for the UTF-8 BOM.\n                UTF-8 is rarely specified with ECI, and few decoders\n                 currently support doing so, so this is the best way for\n                 encoders to reliably indicate it.*/\n              else if(inleft>=3&&\n               in[0]==(char)0xEF&&in[1]==(char)0xBB&&in[2]==(char)0xBF){\n                in+=3;\n                inleft-=3;\n                /*Actually try converting (to check validity).*/\n                err=utf8_cd==(iconv_t)-1||\n                 iconv(utf8_cd,&in,&inleft,&out,&outleft)==(size_t)-1;\n                if(!err){\n                  sa_ntext=out-sa_text;\n                  enc_list_mtf(enc_list,utf8_cd);\n                  continue;\n                }\n                in=(char *)entry->payload.data.buf;\n                inleft=entry->payload.data.len;\n                out=sa_text+sa_ntext;\n                outleft=sa_ctext-sa_ntext;\n              }\n              /*If the text is 8-bit clean, prefer UTF-8 over SJIS, since\n                 SJIS will corrupt the backslashes used for DoCoMo formats.*/\n              else if(text_is_ascii((unsigned char *)in,inleft)){\n                enc_list_mtf(enc_list,utf8_cd);\n              }\n              /*Try our list of encodings.*/\n              for(ei=0;ei<3;ei++)if(enc_list[ei]!=(iconv_t)-1){\n                /*According to the 2005 version of the standard,\n                   ISO/IEC 8859-1 (one hyphen) is supposed to be used, but\n                   reality is not always so (and in the 2000 version of the\n                   standard, it was JIS8/SJIS that was the default).\n                  It's got an invalid range that is used often with SJIS\n                   and UTF-8, though, which makes detection easier.\n                  However, iconv() does not properly reject characters in\n                   those ranges, since ISO-8859-1 (two hyphens) defines a\n                   number of seldom-used control code characters there.\n                  So if we see any of those characters, move this\n                   conversion to the end of the list.*/\n                if(ei<2&&enc_list[ei]==latin1_cd&&\n                 !text_is_latin1((unsigned char *)in,inleft)){\n                  int ej;\n                  for(ej=ei+1;ej<3;ej++)enc_list[ej-1]=enc_list[ej];\n                  enc_list[2]=latin1_cd;\n                }\n                err=iconv(enc_list[ei],&in,&inleft,&out,&outleft)==(size_t)-1;\n                if(!err){\n                  sa_ntext=out-sa_text;\n                  enc_list_mtf(enc_list,enc_list[ei]);\n                  break;\n                }\n                in=(char *)entry->payload.data.buf;\n                inleft=entry->payload.data.len;\n                out=sa_text+sa_ntext;\n                outleft=sa_ctext-sa_ntext;\n              }\n            }\n            /*We were actually given a character set; use it.\n              The spec says that in this case, data should be treated as if it\n               came from the given character set even when encoded in kanji\n               mode.*/\n            else{\n              err=eci_cd==(iconv_t)-1||\n               iconv(eci_cd,&in,&inleft,&out,&outleft)==(size_t)-1;\n              if(!err)sa_ntext=out-sa_text;\n            }\n          }break;\n          /*Check to see if a character set was specified.*/\n          case QR_MODE_ECI:{\n            const char *enc;\n            char        buf[16];\n            unsigned    cur_eci;\n            cur_eci=entry->payload.eci;\n            if(cur_eci<=QR_ECI_ISO8859_16&&cur_eci!=14){\n              if(cur_eci!=QR_ECI_GLI0&&cur_eci!=QR_ECI_CP437){\n                sprintf(buf,\"ISO8859-%i\",QR_MAXI(cur_eci,3)-2);\n                enc=buf;\n              }\n              /*Note that CP437 requires an iconv compiled with\n                 --enable-extra-encodings, and thus may not be available.*/\n              else enc=\"CP437\";\n            }\n            else if(cur_eci==QR_ECI_SJIS)enc=\"SJIS\";\n            else if(cur_eci==QR_ECI_UTF8)enc=\"UTF-8\";\n            /*Don't know what this ECI code specifies, but not an encoding that\n               we recognize.*/\n            else continue;\n            eci=cur_eci;\n            eci_cd=iconv_open(\"UTF-8\",enc);\n          }break;\n          /*Silence stupid compiler warnings.*/\n          default:break;\n        }\n      }\n      /*If eci should be reset between codes, do so.*/\n      if(eci<=QR_ECI_GLI1){\n        eci=-1;\n        if(eci_cd!=(iconv_t)-1)iconv_close(eci_cd);\n      }\n    }\n    if(eci_cd!=(iconv_t)-1)iconv_close(eci_cd);\n    if(!err){\n      zbar_symbol_t *sa_sym;\n      sa_text[sa_ntext++]='\\0';\n      if(sa_ctext+1>sa_ntext){\n        sa_text=(char *)realloc(sa_text,sa_ntext*sizeof(*sa_text));\n      }\n\n      if(sa_size == 1)\n          sa_sym = syms;\n      else {\n          /* cheap out w/axis aligned bbox for now */\n          int xmin = img->width, xmax = -2;\n          int ymin = img->height, ymax = -2;\n\n          /* create \"virtual\" container symbol for composite result */\n          sa_sym = _zbar_image_scanner_alloc_sym(iscn, ZBAR_QRCODE, 0);\n          sa_sym->syms = _zbar_symbol_set_create();\n          sa_sym->syms->head = syms;\n\n          /* fixup data references */\n          for(; syms; syms = syms->next) {\n              int next;\n              _zbar_symbol_refcnt(syms, 1);\n              if(syms->type == ZBAR_PARTIAL)\n                  sa_sym->type = ZBAR_PARTIAL;\n              else\n                  for(j = 0; j < syms->npts; j++) {\n                      int u = syms->pts[j].x;\n                      if(xmin >= u) xmin = u - 1;\n                      if(xmax <= u) xmax = u + 1;\n                      u = syms->pts[j].y;\n                      if(ymin >= u) ymin = u - 1;\n                      if(ymax <= u) ymax = u + 1;\n                  }\n              syms->data = sa_text + syms->datalen;\n              next = (syms->next) ? syms->next->datalen : sa_ntext;\n              assert(next > syms->datalen);\n              syms->datalen = next - syms->datalen - 1;\n          }\n          if(xmax >= -1) {\n              sym_add_point(sa_sym, xmin, ymin);\n              sym_add_point(sa_sym, xmin, ymax);\n              sym_add_point(sa_sym, xmax, ymax);\n              sym_add_point(sa_sym, xmax, ymin);\n          }\n      }\n      sa_sym->data = sa_text;\n      sa_sym->data_alloc = sa_ntext;\n      sa_sym->datalen = sa_ntext - 1;\n      sa_sym->modifiers = fnc1;\n\n      _zbar_image_scanner_add_sym(iscn, sa_sym);\n    }\n    else {\n        _zbar_image_scanner_recycle_syms(iscn, syms);\n        free(sa_text);\n    }\n  }\n  if(utf8_cd!=(iconv_t)-1)iconv_close(utf8_cd);\n  if(sjis_cd!=(iconv_t)-1)iconv_close(sjis_cd);\n  if(latin1_cd!=(iconv_t)-1)iconv_close(latin1_cd);\n  free(mark);\n  return ntext;\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/rs.c",
    "content": "/*Copyright (C) 1991-1995  Henry Minsky (hqm@ua.com, hqm@ai.mit.edu)\n  Copyright (C) 2008-2009  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#include <stdlib.h>\n#include <string.h>\n#include \"rs.h\"\n\n/*Reed-Solomon encoder and decoder.\n  Original implementation (C) Henry Minsky (hqm@ua.com, hqm@ai.mit.edu),\n   Universal Access 1991-1995.\n  Updates by Timothy B. Terriberry (C) 2008-2009:\n   - Properly reject codes when error-locator polynomial has repeated roots or\n      non-trivial irreducible factors.\n   - Removed the hard-coded parity size and performed general API cleanup.\n   - Allow multiple representations of GF(2**8), since different standards use\n      different irreducible polynomials.\n   - Allow different starting indices for the generator polynomial, since\n      different standards use different values.\n   - Greatly reduced the computation by eliminating unnecessary operations.\n   - Explicitly solve for the roots of low-degree polynomials instead of using\n      an exhaustive search.\n     This is another major speed boost when there are few errors.*/\n\n\n/*Galois Field arithmetic in GF(2**8).*/\n\nvoid rs_gf256_init(rs_gf256 *_gf,unsigned _ppoly){\n  unsigned p;\n  int      i;\n  /*Initialize the table of powers of a primtive root, alpha=0x02.*/\n  p=1;\n  for(i=0;i<256;i++){\n    _gf->exp[i]=_gf->exp[i+255]=p;\n    p=((p<<1)^(-(p>>7)&_ppoly))&0xFF;\n  }\n  /*Invert the table to recover the logs.*/\n  for(i=0;i<255;i++)_gf->log[_gf->exp[i]]=i;\n  /*Note that we rely on the fact that _gf->log[0]=0 below.*/\n  _gf->log[0]=0;\n}\n\n/*Multiplication in GF(2**8) using logarithms.*/\nstatic unsigned rs_gmul(const rs_gf256 *_gf,unsigned _a,unsigned _b){\n  return _a==0||_b==0?0:_gf->exp[_gf->log[_a]+_gf->log[_b]];\n}\n\n/*Division in GF(2**8) using logarithms.\n  The result of division by zero is undefined.*/\nstatic unsigned rs_gdiv(const rs_gf256 *_gf,unsigned _a,unsigned _b){\n  return _a==0?0:_gf->exp[_gf->log[_a]+255-_gf->log[_b]];\n}\n\n/*Multiplication in GF(2**8) when one of the numbers is known to be non-zero\n   (proven by representing it by its logarithm).*/\nstatic unsigned rs_hgmul(const rs_gf256 *_gf,unsigned _a,unsigned _logb){\n  return _a==0?0:_gf->exp[_gf->log[_a]+_logb];\n}\n\n/*Square root in GF(2**8) using logarithms.*/\nstatic unsigned rs_gsqrt(const rs_gf256 *_gf,unsigned _a){\n  unsigned loga;\n  if(!_a)return 0;\n  loga=_gf->log[_a];\n  return _gf->exp[loga+(255&-(loga&1))>>1];\n}\n\n/*Polynomial root finding in GF(2**8).\n  Each routine returns a list of the distinct roots (i.e., with duplicates\n   removed).*/\n\n/*Solve a quadratic equation x**2 + _b*x + _c in GF(2**8) using the method\n   of~\\cite{Wal99}.\n  Returns the number of distinct roots.\n  ARTICLE{Wal99,\n    author=\"C. Wayne Walker\",\n    title=\"New Formulas for Solving Quadratic Equations over Certain Finite\n     Fields\",\n    journal=\"{IEEE} Transactions on Information Theory\",\n    volume=45,\n    number=1,\n    pages=\"283--284\",\n    month=Jan,\n    year=1999\n  }*/\nstatic int rs_quadratic_solve(const rs_gf256 *_gf,unsigned _b,unsigned _c,\n unsigned char _x[2]){\n  unsigned b;\n  unsigned logb;\n  unsigned logb2;\n  unsigned logb4;\n  unsigned logb8;\n  unsigned logb12;\n  unsigned logb14;\n  unsigned logc;\n  unsigned logc2;\n  unsigned logc4;\n  unsigned c8;\n  unsigned g3;\n  unsigned z3;\n  unsigned l3;\n  unsigned c0;\n  unsigned g2;\n  unsigned l2;\n  unsigned z2;\n  int      inc;\n  /*If _b is zero, all we need is a square root.*/\n  if(!_b){\n    _x[0]=rs_gsqrt(_gf,_c);\n    return 1;\n  }\n  /*If _c is zero, 0 and _b are the roots.*/\n  if(!_c){\n    _x[0]=0;\n    _x[1]=_b;\n    return 2;\n  }\n  logb=_gf->log[_b];\n  logc=_gf->log[_c];\n  /*If _b lies in GF(2**4), scale x to move it out.*/\n  inc=logb%(255/15)==0;\n  if(inc){\n    b=_gf->exp[logb+254];\n    logb=_gf->log[b];\n    _c=_gf->exp[logc+253];\n    logc=_gf->log[_c];\n  }\n  else b=_b;\n  logb2=_gf->log[_gf->exp[logb<<1]];\n  logb4=_gf->log[_gf->exp[logb2<<1]];\n  logb8=_gf->log[_gf->exp[logb4<<1]];\n  logb12=_gf->log[_gf->exp[logb4+logb8]];\n  logb14=_gf->log[_gf->exp[logb2+logb12]];\n  logc2=_gf->log[_gf->exp[logc<<1]];\n  logc4=_gf->log[_gf->exp[logc2<<1]];\n  c8=_gf->exp[logc4<<1];\n  g3=rs_hgmul(_gf,\n   _gf->exp[logb14+logc]^_gf->exp[logb12+logc2]^_gf->exp[logb8+logc4]^c8,logb);\n  /*If g3 doesn't lie in GF(2**4), then our roots lie in an extension field.\n    Note that we rely on the fact that _gf->log[0]==0 here.*/\n  if(_gf->log[g3]%(255/15)!=0)return 0;\n  /*Construct the corresponding quadratic in GF(2**4):\n    x**2 + x/alpha**(255/15) + l3/alpha**(2*(255/15))*/\n  z3=rs_gdiv(_gf,g3,_gf->exp[logb8<<1]^b);\n  l3=rs_hgmul(_gf,rs_gmul(_gf,z3,z3)^rs_hgmul(_gf,z3,logb)^_c,255-logb2);\n  c0=rs_hgmul(_gf,l3,255-2*(255/15));\n  /*Construct the corresponding quadratic in GF(2**2):\n    x**2 + x/alpha**(255/3) + l2/alpha**(2*(255/3))*/\n  g2=rs_hgmul(_gf,\n   rs_hgmul(_gf,c0,255-2*(255/15))^rs_gmul(_gf,c0,c0),255-255/15);\n  z2=rs_gdiv(_gf,g2,_gf->exp[255-(255/15)*4]^_gf->exp[255-(255/15)]);\n  l2=rs_hgmul(_gf,\n   rs_gmul(_gf,z2,z2)^rs_hgmul(_gf,z2,255-(255/15))^c0,2*(255/15));\n  /*Back substitute to the solution in the original field.*/\n  _x[0]=_gf->exp[_gf->log[z3^rs_hgmul(_gf,\n   rs_hgmul(_gf,l2,255/3)^rs_hgmul(_gf,z2,255/15),logb)]+inc];\n  _x[1]=_x[0]^_b;\n  return 2;\n}\n\n/*Solve a cubic equation x**3 + _a*x**2 + _b*x + _c in GF(2**8).\n  Returns the number of distinct roots.*/\nstatic int rs_cubic_solve(const rs_gf256 *_gf,\n unsigned _a,unsigned _b,unsigned _c,unsigned char _x[3]){\n  unsigned k;\n  unsigned logd;\n  unsigned d2;\n  unsigned logd2;\n  unsigned logw;\n  int      nroots;\n  /*If _c is zero, factor out the 0 root.*/\n  if(!_c){\n    nroots=rs_quadratic_solve(_gf,_a,_b,_x);\n    if(_b)_x[nroots++]=0;\n    return nroots;\n  }\n  /*Substitute x=_a+y*sqrt(_a**2+_b) to get y**3 + y + k == 0,\n     k = (_a*_b+c)/(_a**2+b)**(3/2).*/\n  k=rs_gmul(_gf,_a,_b)^_c;\n  d2=rs_gmul(_gf,_a,_a)^_b;\n  if(!d2){\n    int logx;\n    if(!k){\n      /*We have a triple root.*/\n      _x[0]=_a;\n      return 1;\n    }\n    logx=_gf->log[k];\n    if(logx%3!=0)return 0;\n    logx/=3;\n    _x[0]=_a^_gf->exp[logx];\n    _x[1]=_a^_gf->exp[logx+255/3];\n    _x[2]=_a^_x[0]^_x[1];\n    return 3;\n  }\n  logd2=_gf->log[d2];\n  logd=logd2+(255&-(logd2&1))>>1;\n  k=rs_gdiv(_gf,k,_gf->exp[logd+logd2]);\n  /*Substitute y=w+1/w and z=w**3 to get z**2 + k*z + 1 == 0.*/\n  nroots=rs_quadratic_solve(_gf,k,1,_x);\n  if(nroots<1){\n    /*The Reed-Solomon code is only valid if we can find 3 distinct roots in\n       GF(2**8), so if we know there's only one, we don't actually need to find\n       it.\n      Note that we're also called by the quartic solver, but if we contain a\n       non-trivial irreducible factor, than so does the original\n       quartic~\\cite{LW72}, and failing to return a root here actually saves us\n       some work there, also.*/\n    return 0;\n  }\n  /*Recover w from z.*/\n  logw=_gf->log[_x[0]];\n  if(logw){\n    if(logw%3!=0)return 0;\n    logw/=3;\n    /*Recover x from w.*/\n    _x[0]=_gf->exp[_gf->log[_gf->exp[logw]^_gf->exp[255-logw]]+logd]^_a;\n    logw+=255/3;\n    _x[1]=_gf->exp[_gf->log[_gf->exp[logw]^_gf->exp[255-logw]]+logd]^_a;\n    _x[2]=_x[0]^_x[1]^_a;\n    return 3;\n  }\n  else{\n    _x[0]=_a;\n    /*In this case _x[1] is a double root, so we know the Reed-Solomon code is\n       invalid.\n      Note that we still have to return at least one root, because if we're\n       being called by the quartic solver, the quartic might still have 4\n       distinct roots.\n      But we don't need more than one root, so we can avoid computing the\n       expensive one.*/\n    /*_x[1]=_gf->exp[_gf->log[_gf->exp[255/3]^_gf->exp[2*(255/3)]]+logd]^_a;*/\n    return 1;\n  }\n}\n\n/*Solve a quartic equation x**4 + _a*x**3 + _b*x**2 + _c*x + _d in GF(2**8) by\n   decomposing it into the cases given by~\\cite{LW72}.\n  Returns the number of distinct roots.\n  @ARTICLE{LW72,\n    author=\"Philip A. Leonard and Kenneth S. Williams\",\n    title=\"Quartics over $GF(2^n)$\",\n    journal=\"Proceedings of the American Mathematical Society\",\n    volume=36,\n    number=2,\n    pages=\"347--450\",\n    month=Dec,\n    year=1972\n  }*/\nstatic int rs_quartic_solve(const rs_gf256 *_gf,\n unsigned _a,unsigned _b,unsigned _c,unsigned _d,unsigned char _x[3]){\n  unsigned r;\n  unsigned s;\n  unsigned t;\n  unsigned b;\n  int      nroots;\n  int      i;\n  /*If _d is zero, factor out the 0 root.*/\n  if(!_d){\n    nroots=rs_cubic_solve(_gf,_a,_b,_c,_x);\n    if(_c)_x[nroots++]=0;\n    return nroots;\n  }\n  if(_a){\n    unsigned loga;\n    /*Substitute x=(1/y) + sqrt(_c/_a) to eliminate the cubic term.*/\n    loga=_gf->log[_a];\n    r=rs_hgmul(_gf,_c,255-loga);\n    s=rs_gsqrt(_gf,r);\n    t=_d^rs_gmul(_gf,_b,r)^rs_gmul(_gf,r,r);\n    if(t){\n      unsigned logti;\n      logti=255-_gf->log[t];\n      /*The result is still quartic, but with no cubic term.*/\n      nroots=rs_quartic_solve(_gf,0,rs_hgmul(_gf,_b^rs_hgmul(_gf,s,loga),logti),\n       _gf->exp[loga+logti],_gf->exp[logti],_x);\n      for(i=0;i<nroots;i++)_x[i]=_gf->exp[255-_gf->log[_x[i]]]^s;\n    }\n    else{\n      /*s must be a root~\\cite{LW72}, and is in fact a double-root~\\cite{CCO69}.\n        Thus we're left with only a quadratic to solve.\n        @ARTICLE{CCO69,\n          author=\"Robert T. Chien and B. D. Cunningham and I. B. Oldham\",\n          title=\"Hybrid Methods for Finding Roots of a Polynomial---With\n           Applications to {BCH} Decoding\",\n          journal=\"{IEEE} Transactions on Information Theory\",\n          volume=15,\n          number=2,\n          pages=\"329--335\",\n          month=Mar,\n          year=1969\n        }*/\n      nroots=rs_quadratic_solve(_gf,_a,_b^r,_x);\n      /*s may be a triple root if s=_b/_a, but not quadruple, since _a!=0.*/\n      if(nroots!=2||_x[0]!=s&&_x[1]!=s)_x[nroots++]=s;\n    }\n    return nroots;\n  }\n  /*If there are no odd powers, it's really just a quadratic in disguise.*/\n  if(!_c)return rs_quadratic_solve(_gf,rs_gsqrt(_gf,_b),rs_gsqrt(_gf,_d),_x);\n  /*Factor into (x**2 + r*x + s)*(x**2 + r*x + t) by solving for r, which can\n     be shown to satisfy r**3 + _b*r + _c == 0.*/\n  nroots=rs_cubic_solve(_gf,0,_b,_c,_x);\n  if(nroots<1){\n    /*The Reed-Solomon code is only valid if we can find 4 distinct roots in\n       GF(2**8).\n      If the cubic does not factor into 3 (possibly duplicate) roots, then we\n       know that the quartic must have a non-trivial irreducible factor.*/\n    return 0;\n  }\n  r=_x[0];\n  /*Now solve for s and t.*/\n  b=rs_gdiv(_gf,_c,r);\n  nroots=rs_quadratic_solve(_gf,b,_d,_x);\n  if(nroots<2)return 0;\n  s=_x[0];\n  t=_x[1];\n  /*_c=r*(s^t) was non-zero, so s and t must be distinct.\n    But if z is a root of z**2 ^ r*z ^ s, then so is (z^r), and s = z*(z^r).\n    Hence if z is also a root of z**2 ^ r*z ^ t, then t = s, a contradiction.\n    Thus all four roots are distinct, if they exist.*/\n  nroots=rs_quadratic_solve(_gf,r,s,_x);\n  return nroots+rs_quadratic_solve(_gf,r,t,_x+nroots);\n}\n\n/*Polynomial arithmetic with coefficients in GF(2**8).*/\n\nstatic void rs_poly_zero(unsigned char *_p,int _dp1){\n  memset(_p,0,_dp1*sizeof(*_p));\n}\n\nstatic void rs_poly_copy(unsigned char *_p,const unsigned char *_q,int _dp1){\n  memcpy(_p,_q,_dp1*sizeof(*_p));\n}\n\n/*Multiply the polynomial by the free variable, x (shift the coefficients).\n  The number of coefficients, _dp1, must be non-zero.*/\nstatic void rs_poly_mul_x(unsigned char *_p,const unsigned char *_q,int _dp1){\n  memmove(_p+1,_q,(_dp1-1)*sizeof(*_p));\n  _p[0]=0;\n}\n\n/*Divide the polynomial by the free variable, x (shift the coefficients).\n  The number of coefficients, _dp1, must be non-zero.*/\nstatic void rs_poly_div_x(unsigned char *_p,const unsigned char *_q,int _dp1){\n  memmove(_p,_q+1,(_dp1-1)*sizeof(*_p));\n  _p[_dp1-1]=0;\n}\n\n/*Compute the first (d+1) coefficients of the product of a degree e and a\n   degree f polynomial.*/\nstatic void rs_poly_mult(const rs_gf256 *_gf,unsigned char *_p,int _dp1,\n const unsigned char *_q,int _ep1,const unsigned char *_r,int _fp1){\n  int m;\n  int i;\n  rs_poly_zero(_p,_dp1);\n  m=_ep1<_dp1?_ep1:_dp1;\n  for(i=0;i<m;i++)if(_q[i]!=0){\n    unsigned logqi;\n    int      n;\n    int      j;\n    n=_dp1-i<_fp1?_dp1-i:_fp1;\n    logqi=_gf->log[_q[i]];\n    for(j=0;j<n;j++)_p[i+j]^=rs_hgmul(_gf,_r[j],logqi);\n  }\n}\n\n/*Decoding.*/\n\n/*Computes the syndrome of a codeword.*/\nstatic void rs_calc_syndrome(const rs_gf256 *_gf,int _m0,\n unsigned char *_s,int _npar,const unsigned char *_data,int _ndata){\n  int i;\n  int j;\n  for(j=0;j<_npar;j++){\n    unsigned alphaj;\n    unsigned sj;\n    sj=0;\n    alphaj=_gf->log[_gf->exp[j+_m0]];\n    for(i=0;i<_ndata;i++)sj=_data[i]^rs_hgmul(_gf,sj,alphaj);\n    _s[j]=sj;\n  }\n}\n\n/*Berlekamp-Peterson and Berlekamp-Massey Algorithms for error-location,\n   modified to handle known erasures, from \\cite{CC81}, p. 205.\n  This finds the coefficients of the error locator polynomial.\n  The roots are then found by looking for the values of alpha**n where\n   evaluating the polynomial yields zero.\n  Error correction is done using the error-evaluator equation on p. 207.\n  @BOOK{CC81,\n    author=\"George C. Clark, Jr and J. Bibb Cain\",\n    title=\"Error-Correction Coding for Digitial Communications\",\n    series=\"Applications of Communications Theory\",\n    publisher=\"Springer\",\n    address=\"New York, NY\",\n    month=Jun,\n    year=1981\n  }*/\n\n/*Initialize lambda to the product of (1-x*alpha**e[i]) for erasure locations\n   e[i].\n  Note that the user passes in array indices counting from the beginning of the\n   data, while our polynomial indexes starting from the end, so\n   e[i]=(_ndata-1)-_erasures[i].*/\nstatic void rs_init_lambda(const rs_gf256 *_gf,unsigned char *_lambda,int _npar,\n const unsigned char *_erasures,int _nerasures,int _ndata){\n  int i;\n  int j;\n  rs_poly_zero(_lambda,(_npar<4?4:_npar)+1);\n  _lambda[0]=1;\n  for(i=0;i<_nerasures;i++)for(j=i+1;j>0;j--){\n    _lambda[j]^=rs_hgmul(_gf,_lambda[j-1],_ndata-1-_erasures[i]);\n  }\n}\n\n/*From \\cite{CC81}, p. 216.\n  Returns the number of errors detected (degree of _lambda).*/\nstatic int rs_modified_berlekamp_massey(const rs_gf256 *_gf,\n unsigned char *_lambda,const unsigned char *_s,unsigned char *_omega,int _npar,\n const unsigned char *_erasures,int _nerasures,int _ndata){\n  unsigned char tt[256];\n  int           n;\n  int           l;\n  int           k;\n  int           i;\n  /*Initialize _lambda, the error locator-polynomial, with the location of\n     known erasures.*/\n  rs_init_lambda(_gf,_lambda,_npar,_erasures,_nerasures,_ndata);\n  rs_poly_copy(tt,_lambda,_npar+1);\n  l=_nerasures;\n  k=0;\n  for(n=_nerasures+1;n<=_npar;n++){\n    unsigned d;\n    rs_poly_mul_x(tt,tt,n-k+1);\n    d=0;\n    for(i=0;i<=l;i++)d^=rs_gmul(_gf,_lambda[i],_s[n-1-i]);\n    if(d!=0){\n      unsigned logd;\n      logd=_gf->log[d];\n      if(l<n-k){\n        int t;\n        for(i=0;i<=n-k;i++){\n          unsigned tti;\n          tti=tt[i];\n          tt[i]=rs_hgmul(_gf,_lambda[i],255-logd);\n          _lambda[i]=_lambda[i]^rs_hgmul(_gf,tti,logd);\n        }\n        t=n-k;\n        k=n-l;\n        l=t;\n      }\n      else for(i=0;i<=l;i++)_lambda[i]=_lambda[i]^rs_hgmul(_gf,tt[i],logd);\n    }\n  }\n  rs_poly_mult(_gf,_omega,_npar,_lambda,l+1,_s,_npar);\n  return l;\n}\n\n/*Finds all the roots of an error-locator polynomial _lambda by evaluating it\n   at successive values of alpha, and returns the positions of the associated\n   errors in _epos.\n  Returns the number of valid roots identified.*/\nstatic int rs_find_roots(const rs_gf256 *_gf,unsigned char *_epos,\n const unsigned char *_lambda,int _nerrors,int _ndata){\n  unsigned alpha;\n  int      nroots;\n  int      i;\n  nroots=0;\n  if(_nerrors<=4){\n    /*Explicit solutions for higher degrees are possible.\n      Chien uses large lookup tables to solve quintics, and Truong et al. give\n       special algorithms for degree up through 11, though they use exhaustive\n       search (with reduced complexity) for some portions.\n      Quartics are good enough for reading CDs, and represent a reasonable code\n       complexity trade-off without requiring any extra tables.\n      Note that _lambda[0] is always 1.*/\n    _nerrors=rs_quartic_solve(_gf,_lambda[1],_lambda[2],_lambda[3],_lambda[4],\n     _epos);\n    for(i=0;i<_nerrors;i++)if(_epos[i]){\n      alpha=_gf->log[_epos[i]];\n      if((int)alpha<_ndata)_epos[nroots++]=alpha;\n    }\n    return nroots;\n  }\n  else for(alpha=0;(int)alpha<_ndata;alpha++){\n    unsigned alphai;\n    unsigned sum;\n    sum=0;\n    alphai=0;\n    for(i=0;i<=_nerrors;i++){\n      sum^=rs_hgmul(_gf,_lambda[_nerrors-i],alphai);\n      alphai=_gf->log[_gf->exp[alphai+alpha]];\n    }\n    if(!sum)_epos[nroots++]=alpha;\n  }\n  return nroots;\n}\n\n/*Corrects a codeword with _ndata<256 bytes, of which the last _npar are parity\n   bytes.\n  Known locations of errors can be passed in the _erasures array.\n  Twice as many (up to _npar) errors with a known location can be corrected\n   compared to errors with an unknown location.\n  Returns the number of errors corrected if successful, or a negative number if\n   the message could not be corrected because too many errors were detected.*/\nint rs_correct(const rs_gf256 *_gf,int _m0,unsigned char *_data,int _ndata,\n int _npar,const unsigned char *_erasures,int _nerasures){\n  /*lambda must have storage for at least five entries to avoid special cases\n     in the low-degree polynomial solver.*/\n  unsigned char lambda[256];\n  unsigned char omega[256];\n  unsigned char epos[256];\n  unsigned char s[256];\n  int           i;\n  /*If we already have too many erasures, we can't possibly succeed.*/\n  if(_nerasures>_npar)return -1;\n  /*Compute the syndrome values.*/\n  rs_calc_syndrome(_gf,_m0,s,_npar,_data,_ndata);\n  /*Check for a non-zero value.*/\n  for(i=0;i<_npar;i++)if(s[i]){\n    int nerrors;\n    int j;\n    /*Construct the error locator polynomial.*/\n    nerrors=rs_modified_berlekamp_massey(_gf,lambda,s,omega,_npar,\n     _erasures,_nerasures,_ndata);\n    /*If we can't locate any errors, we can't force the syndrome values to\n       zero, and must have a decoding error.\n      Conversely, if we have too many errors, there's no reason to even attempt\n       the root search.*/\n    if(nerrors<=0||nerrors-_nerasures>_npar-_nerasures>>1)return -1;\n    /*Compute the locations of the errors.\n      If they are not all distinct, or some of them were outside the valid\n       range for our block size, we have a decoding error.*/\n    if(rs_find_roots(_gf,epos,lambda,nerrors,_ndata)<nerrors)return -1;\n    /*Now compute the error magnitudes.*/\n    for(i=0;i<nerrors;i++){\n      unsigned a;\n      unsigned b;\n      unsigned alpha;\n      unsigned alphan1;\n      unsigned alphan2;\n      unsigned alphanj;\n      alpha=epos[i];\n      /*Evaluate omega at alpha**-1.*/\n      a=0;\n      alphan1=255-alpha;\n      alphanj=0;\n      for(j=0;j<_npar;j++){\n        a^=rs_hgmul(_gf,omega[j],alphanj);\n        alphanj=_gf->log[_gf->exp[alphanj+alphan1]];\n      }\n      /*Evaluate the derivative of lambda at alpha**-1\n        All the odd powers vanish.*/\n      b=0;\n      alphan2=_gf->log[_gf->exp[alphan1<<1]];\n      alphanj=alphan1+_m0*alpha%255;\n      for(j=1;j<=_npar;j+=2){\n        b^=rs_hgmul(_gf,lambda[j],alphanj);\n        alphanj=_gf->log[_gf->exp[alphanj+alphan2]];\n      }\n      /*Apply the correction.*/\n      _data[_ndata-1-alpha]^=rs_gdiv(_gf,a,b);\n    }\n    return nerrors;\n  }\n  return 0;\n}\n\n/*Encoding.*/\n\n/*Create an _npar-coefficient generator polynomial for a Reed-Solomon code\n   with _npar<256 parity bytes.*/\nvoid rs_compute_genpoly(const rs_gf256 *_gf,int _m0,\n unsigned char *_genpoly,int _npar){\n  int i;\n  if(_npar<=0)return;\n  rs_poly_zero(_genpoly,_npar);\n  _genpoly[0]=1;\n  /*Multiply by (x+alpha^i) for i = 1 ... _ndata.*/\n  for(i=0;i<_npar;i++){\n    unsigned alphai;\n    int      n;\n    int      j;\n    n=i+1<_npar-1?i+1:_npar-1;\n    alphai=_gf->log[_gf->exp[_m0+i]];\n    for(j=n;j>0;j--)_genpoly[j]=_genpoly[j-1]^rs_hgmul(_gf,_genpoly[j],alphai);\n    _genpoly[0]=rs_hgmul(_gf,_genpoly[0],alphai);\n  }\n}\n\n/*Adds _npar<=_ndata parity bytes to an _ndata-_npar byte message.\n  _data must contain room for _ndata<256 bytes.*/\nvoid rs_encode(const rs_gf256 *_gf,unsigned char *_data,int _ndata,\n const unsigned char *_genpoly,int _npar){\n  unsigned char *lfsr;\n  unsigned       d;\n  int            i;\n  int            j;\n  if(_npar<=0)return;\n  lfsr=_data+_ndata-_npar;\n  rs_poly_zero(lfsr,_npar);\n  for(i=0;i<_ndata-_npar;i++){\n    d=_data[i]^lfsr[0];\n    if(d){\n      unsigned logd;\n      logd=_gf->log[d];\n      for(j=0;j<_npar-1;j++){\n        lfsr[j]=lfsr[j+1]^rs_hgmul(_gf,_genpoly[_npar-1-j],logd);\n      }\n      lfsr[_npar-1]=rs_hgmul(_gf,_genpoly[0],logd);\n    }\n    else rs_poly_div_x(lfsr,lfsr,_npar);\n  }\n}\n\n#if defined(RS_TEST_ENC)\n#include <stdio.h>\n#include <stdlib.h>\n\nint main(void){\n  rs_gf256 gf;\n  int      k;\n  rs_gf256_init(&gf,QR_PPOLY);\n  srand(0);\n  for(k=0;k<64*1024;k++){\n    unsigned char genpoly[256];\n    unsigned char data[256];\n    unsigned char epos[256];\n    int           ndata;\n    int           npar;\n    int           nerrors;\n    int           i;\n    ndata=rand()&0xFF;\n    npar=ndata>0?rand()%ndata:0;\n    for(i=0;i<ndata-npar;i++)data[i]=rand()&0xFF;\n    rs_compute_genpoly(&gf,QR_M0,genpoly,npar);\n    rs_encode(&gf,QR_M0,data,ndata,genpoly,npar);\n    /*Write a clean version of the codeword.*/\n    printf(\"%i %i\",ndata,npar);\n    for(i=0;i<ndata;i++)printf(\" %i\",data[i]);\n    printf(\" 0\\n\");\n    /*Write the correct output to compare the decoder against.*/\n    fprintf(stderr,\"Success!\\n\",nerrors);\n    for(i=0;i<ndata;i++)fprintf(stderr,\"%i%s\",data[i],i+1<ndata?\" \":\"\\n\");\n    if(npar>0){\n      /*Corrupt it.*/\n      nerrors=rand()%(npar+1);\n      if(nerrors>0){\n        /*This test is not quite correct: there could be so many errors it\n           comes within (npar>>1) errors of another valid codeword.\n          I don't know a simple way to test for that without trying to decode\n           the corrupt codeword, though, which is the very code we're trying to\n           test.*/\n        if(nerrors<=npar>>1){\n          fprintf(stderr,\"Success!\\n\",nerrors);\n          for(i=0;i<ndata;i++){\n            fprintf(stderr,\"%i%s\",data[i],i+1<ndata?\" \":\"\\n\");\n          }\n        }\n        else fprintf(stderr,\"Failure.\\n\");\n        fprintf(stderr,\"Success!\\n\",nerrors);\n        for(i=0;i<ndata;i++)fprintf(stderr,\"%i%s\",data[i],i+1<ndata?\" \":\"\\n\");\n        for(i=0;i<ndata;i++)epos[i]=i;\n        for(i=0;i<nerrors;i++){\n          unsigned char e;\n          int           ei;\n          ei=rand()%(ndata-i)+i;\n          e=epos[ei];\n          epos[ei]=epos[i];\n          epos[i]=e;\n          data[e]^=rand()%255+1;\n        }\n        /*First with no erasure locations.*/\n        printf(\"%i %i\",ndata,npar);\n        for(i=0;i<ndata;i++)printf(\" %i\",data[i]);\n        printf(\" 0\\n\");\n        /*Now with erasure locations.*/\n        printf(\"%i %i\",ndata,npar);\n        for(i=0;i<ndata;i++)printf(\" %i\",data[i]);\n        printf(\" %i\",nerrors);\n        for(i=0;i<nerrors;i++)printf(\" %i\",epos[i]);\n        printf(\"\\n\");\n      }\n    }\n  }\n  return 0;\n}\n#endif\n\n#if defined(RS_TEST_DEC)\n#include <stdio.h>\n\nint main(void){\n  rs_gf256 gf;\n  rs_gf256_init(&gf,QR_PPOLY);\n  for(;;){\n    unsigned char data[255];\n    unsigned char erasures[255];\n    int idata[255];\n    int ierasures[255];\n    int ndata;\n    int npar;\n    int nerasures;\n    int nerrors;\n    int i;\n    if(scanf(\"%i\",&ndata)<1||ndata<0||ndata>255||\n     scanf(\"%i\",&npar)<1||npar<0||npar>ndata)break;\n    for(i=0;i<ndata;i++){\n      if(scanf(\"%i\",idata+i)<1||idata[i]<0||idata[i]>255)break;\n      data[i]=idata[i];\n    }\n    if(i<ndata)break;\n    if(scanf(\"%i\",&nerasures)<1||nerasures<0||nerasures>ndata)break;\n    for(i=0;i<nerasures;i++){\n      if(scanf(\"%i\",ierasures+i)<1||ierasures[i]<0||ierasures[i]>=ndata)break;\n      erasures[i]=ierasures[i];\n    }\n    nerrors=rs_correct(&gf,QR_M0,data,ndata,npar,erasures,nerasures);\n    if(nerrors>=0){\n      unsigned char data2[255];\n      unsigned char genpoly[255];\n      for(i=0;i<ndata-npar;i++)data2[i]=data[i];\n      rs_compute_genpoly(&gf,QR_M0,genpoly,npar);\n      rs_encode(&gf,QR_M0,data2,ndata,genpoly,npar);\n      for(i=ndata-npar;i<ndata;i++)if(data[i]!=data2[i]){\n        printf(\"Abject failure! %i!=%i\\n\",data[i],data2[i]);\n      }\n      printf(\"Success!\\n\",nerrors);\n      for(i=0;i<ndata;i++)printf(\"%i%s\",data[i],i+1<ndata?\" \":\"\\n\");\n    }\n    else printf(\"Failure.\\n\");\n  }\n  return 0;\n}\n#endif\n\n#if defined(RS_TEST_ROOTS)\n#include <stdio.h>\n\n/*Exhaustively test the root finder.*/\nint main(void){\n  rs_gf256 gf;\n  int      a;\n  int      b;\n  int      c;\n  int      d;\n  rs_gf256_init(&gf,QR_PPOLY);\n  for(a=0;a<256;a++)for(b=0;b<256;b++)for(c=0;c<256;c++)for(d=0;d<256;d++){\n    unsigned char x[4];\n    unsigned char r[4];\n    unsigned      x2;\n    unsigned      e[5];\n    int           nroots;\n    int           mroots;\n    int           i;\n    int           j;\n    nroots=rs_quartic_solve(&gf,a,b,c,d,x);\n    for(i=0;i<nroots;i++){\n      x2=rs_gmul(&gf,x[i],x[i]);\n      e[0]=rs_gmul(&gf,x2,x2)^rs_gmul(&gf,a,rs_gmul(&gf,x[i],x2))^\n       rs_gmul(&gf,b,x2)^rs_gmul(&gf,c,x[i])^d;\n      if(e[0]){\n        printf(\"Invalid root: (0x%02X)**4 ^ 0x%02X*(0x%02X)**3 ^ \"\n         \"0x%02X*(0x%02X)**2 ^ 0x%02X(0x%02X) ^ 0x%02X = 0x%02X\\n\",\n         x[i],a,x[i],b,x[i],c,x[i],d,e[0]);\n      }\n      for(j=0;j<i;j++)if(x[i]==x[j]){\n        printf(\"Repeated root %i=%i: (0x%02X)**4 ^ 0x%02X*(0x%02X)**3 ^ \"\n         \"0x%02X*(0x%02X)**2 ^ 0x%02X(0x%02X) ^ 0x%02X = 0x%02X\\n\",\n         i,j,x[i],a,x[i],b,x[i],c,x[i],d,e[0]);\n      }\n    }\n    mroots=0;\n    for(j=1;j<256;j++){\n      int logx;\n      int logx2;\n      logx=gf.log[j];\n      logx2=gf.log[gf.exp[logx<<1]];\n      e[mroots]=d^rs_hgmul(&gf,c,logx)^rs_hgmul(&gf,b,logx2)^\n       rs_hgmul(&gf,a,gf.log[gf.exp[logx+logx2]])^gf.exp[logx2<<1];\n      if(!e[mroots])r[mroots++]=j;\n    }\n    /*We only care about missing roots if the quartic had 4 distinct, non-zero\n       roots.*/\n    if(mroots==4)for(j=0;j<mroots;j++){\n      for(i=0;i<nroots;i++)if(x[i]==r[j])break;\n      if(i>=nroots){\n        printf(\"Missing root: (0x%02X)**4 ^ 0x%02X*(0x%02X)**3 ^ \"\n         \"0x%02X*(0x%02X)**2 ^ 0x%02X(0x%02X) ^ 0x%02X = 0x%02X\\n\",\n         r[j],a,r[j],b,r[j],c,r[j],d,e[j]);\n      }\n    }\n  }\n  return 0;\n}\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/rs.h",
    "content": "/*Copyright (C) 1991-1995  Henry Minsky (hqm@ua.com, hqm@ai.mit.edu)\n  Copyright (C) 2008-2009  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#if !defined(_qrcode_rs_H)\n# define _qrcode_rs_H (1)\n\n/*This is one of 16 irreducible primitive polynomials of degree 8:\n    x**8+x**4+x**3+x**2+1.\n  Under such a polynomial, x (i.e., 0x02) is a generator of GF(2**8).\n  The high order 1 bit is implicit.\n  From~\\cite{MD88}, Ch. 5, p. 275 by Patel.\n  @BOOK{MD88,\n    author=\"C. Dennis Mee and Eric D. Daniel\",\n    title=\"Video, Audio, and Instrumentation Recording\",\n    series=\"Magnetic Recording\",\n    volume=3,\n    publisher=\"McGraw-Hill Education\",\n    address=\"Columbus, OH\",\n    month=Jun,\n    year=1988\n  }*/\n#define QR_PPOLY (0x1D)\n\n/*The index to start the generator polynomial from (0...254).*/\n#define QR_M0 (0)\n\ntypedef struct rs_gf256 rs_gf256;\n\nstruct rs_gf256{\n  /*A logarithm table in GF(2**8).*/\n  unsigned char log[256];\n  /*An exponential table in GF(2**8): exp[i] contains x^i reduced modulo the\n     irreducible primitive polynomial used to define the field.\n    The extra 256 entries are used to do arithmetic mod 255, since some extra\n     table lookups are generally faster than doing the modulus.*/\n  unsigned char exp[511];\n};\n\n/*Initialize discrete logarithm tables for GF(2**8) using a given primitive\n   irreducible polynomial.*/\nvoid rs_gf256_init(rs_gf256 *_gf,unsigned _ppoly);\n\n/*Corrects a codeword with _ndata<256 bytes, of which the last _npar are parity\n   bytes.\n  Known locations of errors can be passed in the _erasures array.\n  Twice as many (up to _npar) errors with a known location can be corrected\n   compared to errors with an unknown location.\n  Returns the number of errors corrected if successful, or a negative number if\n   the message could not be corrected because too many errors were detected.*/\nint rs_correct(const rs_gf256 *_gf,int _m0,unsigned char *_data,int _ndata,\n int _npar,const unsigned char *_erasures,int _nerasures);\n\n/*Create an _npar-coefficient generator polynomial for a Reed-Solomon code with\n   _npar<256 parity bytes.*/\nvoid rs_compute_genpoly(const rs_gf256 *_gf,int _m0,\n unsigned char *_genpoly,int _npar);\n\n/*Adds _npar<=_ndata parity bytes to an _ndata-_npar byte message.\n  _data must contain room for _ndata<256 bytes.*/\nvoid rs_encode(const rs_gf256 *_gf,unsigned char *_data,int _ndata,\n const unsigned char *_genpoly,int _npar);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/util.c",
    "content": "/*Copyright (C) 2008-2009  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#include <stdlib.h>\n#include \"util.h\"\n\n/*Computes floor(sqrt(_val)) exactly.*/\nunsigned qr_isqrt(unsigned _val){\n  unsigned g;\n  unsigned b;\n  int      bshift;\n  /*Uses the second method from\n     http://www.azillionmonkeys.com/qed/sqroot.html\n    The main idea is to search for the largest binary digit b such that\n     (g+b)*(g+b) <= _val, and add it to the solution g.*/\n  g=0;\n  b=0x8000;\n  for(bshift=16;bshift-->0;){\n    unsigned t;\n    t=(g<<1)+b<<bshift;\n    if(t<=_val){\n      g+=b;\n      _val-=t;\n    }\n    b>>=1;\n  }\n  return g;\n}\n\n/*Computes sqrt(_x*_x+_y*_y) using CORDIC.\n  This implementation is valid for all 32-bit inputs and returns a result\n   accurate to about 27 bits of precision.\n  It has been tested for all postiive 16-bit inputs, where it returns correctly\n   rounded results in 99.998% of cases and the maximum error is\n   0.500137134862598032 (for _x=48140, _y=63018).\n  Very nearly all results less than (1<<16) are correctly rounded.\n  All Pythagorean triples with a hypotenuse of less than ((1<<27)-1) evaluate\n   correctly, and the total bias over all Pythagorean triples is -0.04579, with\n   a relative RMS error of 7.2864E-10 and a relative peak error of 7.4387E-9.*/\nunsigned qr_ihypot(int _x,int _y){\n  unsigned x;\n  unsigned y;\n  int      mask;\n  int      shift;\n  int      u;\n  int      v;\n  int      i;\n  x=_x=abs(_x);\n  y=_y=abs(_y);\n  mask=-(x>y)&(_x^_y);\n  x^=mask;\n  y^=mask;\n  _y^=mask;\n  shift=31-qr_ilog(y);\n  shift=QR_MAXI(shift,0);\n  x=(unsigned)((x<<shift)*0x9B74EDAAULL>>32);\n  _y=(int)((_y<<shift)*0x9B74EDA9LL>>32);\n  u=x;\n  mask=-(_y<0);\n  x+=_y+mask^mask;\n  _y-=u+mask^mask;\n  u=x+1>>1;\n  v=_y+1>>1;\n  mask=-(_y<0);\n  x+=v+mask^mask;\n  _y-=u+mask^mask;\n  for(i=1;i<16;i++){\n    int r;\n    u=x+1>>2;\n    r=(1<<2*i)>>1;\n    v=_y+r>>2*i;\n    mask=-(_y<0);\n    x+=v+mask^mask;\n    _y=_y-(u+mask^mask)<<1;\n  }\n  return x+((1U<<shift)>>1)>>shift;\n}\n\n#if defined(__GNUC__) && defined(HAVE_FEATURES_H)\n# include <features.h>\n# if __GNUC_PREREQ(3,4)\n#  include <limits.h>\n#  if INT_MAX>=2147483647\n#   define QR_CLZ0 sizeof(unsigned)*CHAR_BIT\n#   define QR_CLZ(_x) (__builtin_clz(_x))\n#  elif LONG_MAX>=2147483647L\n#   define QR_CLZ0 sizeof(unsigned long)*CHAR_BIT\n#   define QR_CLZ(_x) (__builtin_clzl(_x))\n#  endif\n# endif\n#endif\n\nint qr_ilog(unsigned _v){\n#if defined(QR_CLZ)\n/*Note that __builtin_clz is not defined when _x==0, according to the gcc\n   documentation (and that of the x86 BSR instruction that implements it), so\n   we have to special-case it.*/\n  return QR_CLZ0-QR_CLZ(_v)&-!!_v;\n#else\n  int ret;\n  int m;\n  m=!!(_v&0xFFFF0000)<<4;\n  _v>>=m;\n  ret=m;\n  m=!!(_v&0xFF00)<<3;\n  _v>>=m;\n  ret|=m;\n  m=!!(_v&0xF0)<<2;\n  _v>>=m;\n  ret|=m;\n  m=!!(_v&0xC)<<1;\n  _v>>=m;\n  ret|=m;\n  ret|=!!(_v&0x2);\n  return ret + !!_v;\n#endif\n}\n\n#if defined(QR_TEST_SQRT)\n#include <math.h>\n#include <stdio.h>\n\n/*Exhaustively test the integer square root function.*/\nint main(void){\n  unsigned u;\n  u=0;\n  do{\n    unsigned r;\n    unsigned s;\n    r=qr_isqrt(u);\n    s=(int)sqrt(u);\n    if(r!=s)printf(\"%u: %u!=%u\\n\",u,r,s);\n    u++;\n  }\n  while(u);\n  return 0;\n}\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode/util.h",
    "content": "/*Copyright (C) 2008-2009  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#if !defined(_qrcode_util_H)\n# define _qrcode_util_H (1)\n\n#define QR_MAXI(_a,_b)      ((_a)-((_a)-(_b)&-((_b)>(_a))))\n#define QR_MINI(_a,_b)      ((_a)+((_b)-(_a)&-((_b)<(_a))))\n#define QR_SIGNI(_x)        (((_x)>0)-((_x)<0))\n#define QR_SIGNMASK(_x)     (-((_x)<0))\n/*Unlike copysign(), simply inverts the sign of _a if _b is negative.*/\n#define QR_FLIPSIGNI(_a,_b) ((_a)+QR_SIGNMASK(_b)^QR_SIGNMASK(_b))\n#define QR_COPYSIGNI(_a,_b) QR_FLIPSIGNI(abs(_a),_b)\n/*Divides a signed integer by a positive value with exact rounding.*/\n#define QR_DIVROUND(_x,_y)  (((_x)+QR_FLIPSIGNI(_y>>1,_x))/(_y))\n#define QR_CLAMPI(_a,_b,_c) (QR_MAXI(_a,QR_MINI(_b,_c)))\n#define QR_CLAMP255(_x)     ((unsigned char)((((_x)<0)-1)&((_x)|-((_x)>255))))\n#define QR_SWAP2I(_a,_b) \\\n  do{ \\\n    int t__; \\\n    t__=(_a); \\\n    (_a)=(_b); \\\n    (_b)=t__; \\\n  } \\\n  while(0)\n/*Swaps two integers _a and _b if _a>_b.*/\n#define QR_SORT2I(_a,_b) \\\n  do{ \\\n    int t__; \\\n    t__=QR_MINI(_a,_b)^(_a); \\\n    (_a)^=t__; \\\n    (_b)^=t__; \\\n  } \\\n  while(0)\n#define QR_ILOG0(_v) (!!((_v)&0x2))\n#define QR_ILOG1(_v) (((_v)&0xC)?2+QR_ILOG0((_v)>>2):QR_ILOG0(_v))\n#define QR_ILOG2(_v) (((_v)&0xF0)?4+QR_ILOG1((_v)>>4):QR_ILOG1(_v))\n#define QR_ILOG3(_v) (((_v)&0xFF00)?8+QR_ILOG2((_v)>>8):QR_ILOG2(_v))\n#define QR_ILOG4(_v) (((_v)&0xFFFF0000)?16+QR_ILOG3((_v)>>16):QR_ILOG3(_v))\n/*Computes the integer logarithm of a (positive, 32-bit) constant.*/\n#define QR_ILOG(_v) ((int)QR_ILOG4((unsigned)(_v)))\n\n/*Multiplies 32-bit numbers _a and _b, adds (possibly 64-bit) number _r, and\n   takes bits [_s,_s+31] of the result.*/\n#define QR_FIXMUL(_a,_b,_r,_s) ((int)((_a)*(long long)(_b)+(_r)>>(_s)))\n/*Multiplies 32-bit numbers _a and _b, adds (possibly 64-bit) number _r, and\n   gives all 64 bits of the result.*/\n#define QR_EXTMUL(_a,_b,_r)    ((_a)*(long long)(_b)+(_r))\n\nunsigned qr_isqrt(unsigned _val);\nunsigned qr_ihypot(int _x,int _y);\nint qr_ilog(unsigned _val);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/qrcode.h",
    "content": "/*Copyright (C) 2008-2009  Timothy B. Terriberry (tterribe@xiph.org)\n  You can redistribute this library and/or modify it under the terms of the\n   GNU Lesser General Public License as published by the Free Software\n   Foundation; either version 2.1 of the License, or (at your option) any later\n   version.*/\n#ifndef _QRCODE_H_\n#define _QRCODE_H_\n\n#include <zbar.h>\n\ntypedef struct qr_reader qr_reader;\n\ntypedef int qr_point[2];\ntypedef struct qr_finder_line qr_finder_line;\n\n/*The number of bits of subpel precision to store image coordinates in.\n  This helps when estimating positions in low-resolution images, which may have\n   a module pitch only a pixel or two wide, making rounding errors matter a\n   great deal.*/\n#define QR_FINDER_SUBPREC (2)\n\n/*A line crossing a finder pattern.\n  Whether the line is horizontal or vertical is determined by context.\n  The offsts to various parts of the finder pattern are as follows:\n    |*****|     |*****|*****|*****|     |*****|\n    |*****|     |*****|*****|*****|     |*****|\n       ^        ^                 ^        ^\n       |        |                 |        |\n       |        |                 |       pos[v]+len+eoffs\n       |        |                pos[v]+len\n       |       pos[v]\n      pos[v]-boffs\n  Here v is 0 for horizontal and 1 for vertical lines.*/\nstruct qr_finder_line {\n  /*The location of the upper/left endpoint of the line.\n    The left/upper edge of the center section is used, since other lines must\n     cross in this region.*/\n  qr_point pos;\n  /*The length of the center section.\n    This extends to the right/bottom of the center section, since other lines\n     must cross in this region.*/\n  int      len;\n  /*The offset to the midpoint of the upper/left section (part of the outside\n     ring), or 0 if we couldn't identify the edge of the beginning section.\n    We use the midpoint instead of the edge because it can be located more\n     reliably.*/\n  int      boffs;\n  /*The offset to the midpoint of the end section (part of the outside ring),\n     or 0 if we couldn't identify the edge of the end section.\n    We use the midpoint instead of the edge because it can be located more\n     reliably.*/\n  int      eoffs;\n};\n\nqr_reader *_zbar_qr_create(void);\nvoid _zbar_qr_destroy(qr_reader *reader);\nvoid _zbar_qr_reset(qr_reader *reader);\n\nint _zbar_qr_found_line(qr_reader *reader,\n                        int direction,\n                        const qr_finder_line *line);\nint _zbar_qr_decode(qr_reader *reader,\n                    zbar_image_scanner_t *iscn,\n                    zbar_image_t *img);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/refcnt.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"refcnt.h\"\n\n#if !defined(_WIN32) && !defined(TARGET_OS_MAC) && defined(HAVE_LIBPTHREAD)\n\npthread_once_t initialized = PTHREAD_ONCE_INIT;\npthread_mutex_t _zbar_reflock;\n\nstatic void initialize (void)\n{\n    pthread_mutex_init(&_zbar_reflock, NULL);\n}\n\nvoid _zbar_refcnt_init ()\n{\n    pthread_once(&initialized, initialize);\n}\n\n\n#else\n\nvoid _zbar_refcnt_init ()\n{\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/refcnt.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _REFCNT_H_\n#define _REFCNT_H_\n\n#include <config.h>\n#include <assert.h>\n\n#if defined(_WIN32)\n# include <windows.h>\n\ntypedef LONG refcnt_t;\n\nstatic inline int _zbar_refcnt (refcnt_t *cnt,\n                                int delta)\n{\n    int rc = -1;\n    if(delta > 0)\n        while(delta--)\n            rc = InterlockedIncrement(cnt);\n    else if(delta < 0)\n        while(delta++)\n            rc = InterlockedDecrement(cnt);\n    assert(rc >= 0);\n    return(rc);\n}\n\n#elif defined(TARGET_OS_MAC)\n# include <libkern/OSAtomic.h>\n\ntypedef int32_t refcnt_t;\n\nstatic inline int _zbar_refcnt (refcnt_t *cnt,\n                                int delta)\n{\n    int rc = OSAtomicAdd32Barrier(delta, cnt);\n    assert(rc >= 0);\n    return(rc);\n}\n\n#elif defined(HAVE_LIBPTHREAD)\n# include <pthread.h>\n\ntypedef int refcnt_t;\n\nextern pthread_mutex_t _zbar_reflock;\n\nstatic inline int _zbar_refcnt (refcnt_t *cnt,\n                                int delta)\n{\n    pthread_mutex_lock(&_zbar_reflock);\n    int rc = (*cnt += delta);\n    pthread_mutex_unlock(&_zbar_reflock);\n    assert(rc >= 0);\n    return(rc);\n}\n\n\n#else\n\ntypedef int refcnt_t;\n\nstatic inline int _zbar_refcnt (refcnt_t *cnt,\n                                int delta)\n{\n    int rc = (*cnt += delta);\n    assert(rc >= 0);\n    return(rc);\n}\n\n#endif\n\n\nvoid _zbar_refcnt_init(void);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/scanner.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <stdlib.h>     /* malloc, free, abs */\n#include <stddef.h>\n#include <string.h>     /* memset */\n\n#include <zbar.h>\n#include \"svg.h\"\n\n#ifdef DEBUG_SCANNER\n# define DEBUG_LEVEL (DEBUG_SCANNER)\n#endif\n#include \"debug.h\"\n\n#ifndef ZBAR_FIXED\n# define ZBAR_FIXED 5\n#endif\n#define ROUND (1 << (ZBAR_FIXED - 1))\n\n/* FIXME add runtime config API for these */\n#ifndef ZBAR_SCANNER_THRESH_MIN\n# define ZBAR_SCANNER_THRESH_MIN  4\n#endif\n\n#ifndef ZBAR_SCANNER_THRESH_INIT_WEIGHT\n# define ZBAR_SCANNER_THRESH_INIT_WEIGHT .44\n#endif\n#define THRESH_INIT ((unsigned)((ZBAR_SCANNER_THRESH_INIT_WEIGHT       \\\n                                 * (1 << (ZBAR_FIXED + 1)) + 1) / 2))\n\n#ifndef ZBAR_SCANNER_THRESH_FADE\n# define ZBAR_SCANNER_THRESH_FADE 8\n#endif\n\n#ifndef ZBAR_SCANNER_EWMA_WEIGHT\n# define ZBAR_SCANNER_EWMA_WEIGHT .78\n#endif\n#define EWMA_WEIGHT ((unsigned)((ZBAR_SCANNER_EWMA_WEIGHT              \\\n                                 * (1 << (ZBAR_FIXED + 1)) + 1) / 2))\n\n/* scanner state */\nstruct zbar_scanner_s {\n    zbar_decoder_t *decoder; /* associated bar width decoder */\n    unsigned y1_min_thresh; /* minimum threshold */\n\n    unsigned x;             /* relative scan position of next sample */\n    int y0[4];              /* short circular buffer of average intensities */\n\n    int y1_sign;            /* slope at last crossing */\n    unsigned y1_thresh;     /* current slope threshold */\n\n    unsigned cur_edge;      /* interpolated position of tracking edge */\n    unsigned last_edge;     /* interpolated position of last located edge */\n    unsigned width;         /* last element width */\n};\n\nzbar_scanner_t *zbar_scanner_create (zbar_decoder_t *dcode)\n{\n    zbar_scanner_t *scn = malloc(sizeof(zbar_scanner_t));\n    scn->decoder = dcode;\n    scn->y1_min_thresh = ZBAR_SCANNER_THRESH_MIN;\n    zbar_scanner_reset(scn);\n    return(scn);\n}\n\nvoid zbar_scanner_destroy (zbar_scanner_t *scn)\n{\n    free(scn);\n}\n\nzbar_symbol_type_t zbar_scanner_reset (zbar_scanner_t *scn)\n{\n    memset(&scn->x, 0, sizeof(zbar_scanner_t) - offsetof(zbar_scanner_t, x));\n    scn->y1_thresh = scn->y1_min_thresh;\n    if(scn->decoder)\n        zbar_decoder_reset(scn->decoder);\n    return(ZBAR_NONE);\n}\n\nunsigned zbar_scanner_get_width (const zbar_scanner_t *scn)\n{\n    return(scn->width);\n}\n\nunsigned zbar_scanner_get_edge (const zbar_scanner_t *scn,\n                                unsigned offset,\n                                int prec)\n{\n    unsigned edge = scn->last_edge - offset - (1 << ZBAR_FIXED) - ROUND;\n    prec = ZBAR_FIXED - prec;\n    if(prec > 0)\n        return(edge >> prec);\n    else if(!prec)\n        return(edge);\n    else\n        return(edge << -prec);\n}\n\nzbar_color_t zbar_scanner_get_color (const zbar_scanner_t *scn)\n{\n    return((scn->y1_sign <= 0) ? ZBAR_SPACE : ZBAR_BAR);\n}\n\nstatic inline unsigned calc_thresh (zbar_scanner_t *scn)\n{\n    /* threshold 1st to improve noise rejection */\n    unsigned dx, thresh = scn->y1_thresh;\n    unsigned long t;\n    if((thresh <= scn->y1_min_thresh) || !scn->width) {\n        dbprintf(1, \" tmin=%d\", scn->y1_min_thresh);\n        return(scn->y1_min_thresh);\n    }\n    /* slowly return threshold to min */\n    dx = (scn->x << ZBAR_FIXED) - scn->last_edge;\n    t = thresh * dx;\n    t /= scn->width;\n    t /= ZBAR_SCANNER_THRESH_FADE;\n    dbprintf(1, \" thr=%d t=%ld x=%d last=%d.%d (%d)\",\n             thresh, t, scn->x, scn->last_edge >> ZBAR_FIXED,\n             scn->last_edge & ((1 << ZBAR_FIXED) - 1), dx);\n    if(thresh > t) {\n        thresh -= t;\n        if(thresh > scn->y1_min_thresh)\n            return(thresh);\n    }\n    scn->y1_thresh = scn->y1_min_thresh;\n    return(scn->y1_min_thresh);\n}\n\nstatic inline zbar_symbol_type_t process_edge (zbar_scanner_t *scn,\n                                               int y1)\n{\n    if(!scn->y1_sign)\n        scn->last_edge = scn->cur_edge = (1 << ZBAR_FIXED) + ROUND;\n    else if(!scn->last_edge)\n        scn->last_edge = scn->cur_edge;\n\n    scn->width = scn->cur_edge - scn->last_edge;\n    dbprintf(1, \" sgn=%d cur=%d.%d w=%d (%s)\\n\",\n             scn->y1_sign, scn->cur_edge >> ZBAR_FIXED,\n             scn->cur_edge & ((1 << ZBAR_FIXED) - 1), scn->width,\n             ((y1 > 0) ? \"SPACE\" : \"BAR\"));\n    scn->last_edge = scn->cur_edge;\n\n#if DEBUG_SVG > 1\n    svg_path_moveto(SVG_ABS, scn->last_edge - (1 << ZBAR_FIXED) - ROUND, 0);\n#endif\n\n    /* pass to decoder */\n    if(scn->decoder)\n        return(zbar_decode_width(scn->decoder, scn->width));\n    return(ZBAR_PARTIAL);\n}\n\ninline zbar_symbol_type_t zbar_scanner_flush (zbar_scanner_t *scn)\n{\n    unsigned x;\n    if(!scn->y1_sign)\n        return(ZBAR_NONE);\n\n    x = (scn->x << ZBAR_FIXED) + ROUND;\n\n    if(scn->cur_edge != x || scn->y1_sign > 0) {\n        zbar_symbol_type_t edge = process_edge(scn, -scn->y1_sign);\n        dbprintf(1, \"flush0:\");\n        scn->cur_edge = x;\n        scn->y1_sign = -scn->y1_sign;\n        return(edge);\n    }\n\n    scn->y1_sign = scn->width = 0;\n    if(scn->decoder)\n        return(zbar_decode_width(scn->decoder, 0));\n    return(ZBAR_PARTIAL);\n}\n\nzbar_symbol_type_t zbar_scanner_new_scan (zbar_scanner_t *scn)\n{\n    zbar_symbol_type_t edge = ZBAR_NONE;\n    while(scn->y1_sign) {\n        zbar_symbol_type_t tmp = zbar_scanner_flush(scn);\n        if(tmp < 0 || tmp > edge)\n            edge = tmp;\n    }\n\n    /* reset scanner and associated decoder */\n    memset(&scn->x, 0, sizeof(zbar_scanner_t) - offsetof(zbar_scanner_t, x));\n    scn->y1_thresh = scn->y1_min_thresh;\n    if(scn->decoder)\n        zbar_decoder_new_scan(scn->decoder);\n    return(edge);\n}\n\nzbar_symbol_type_t zbar_scan_y (zbar_scanner_t *scn,\n                                int y)\n{\n    /* FIXME calc and clip to max y range... */\n    /* retrieve short value history */\n    register int x = scn->x;\n    register int y0_1 = scn->y0[(x - 1) & 3];\n    register int y0_0 = y0_1;\n    register int y0_2, y0_3, y1_1, y2_1, y2_2;\n    zbar_symbol_type_t edge;\n    if(x) {\n        /* update weighted moving average */\n        y0_0 += ((int)((y - y0_1) * EWMA_WEIGHT)) >> ZBAR_FIXED;\n        scn->y0[x & 3] = y0_0;\n    }\n    else\n        y0_0 = y0_1 = scn->y0[0] = scn->y0[1] = scn->y0[2] = scn->y0[3] = y;\n    y0_2 = scn->y0[(x - 2) & 3];\n    y0_3 = scn->y0[(x - 3) & 3];\n    /* 1st differential @ x-1 */\n    y1_1 = y0_1 - y0_2;\n    {\n        register int y1_2 = y0_2 - y0_3;\n        if((abs(y1_1) < abs(y1_2)) &&\n           ((y1_1 >= 0) == (y1_2 >= 0)))\n            y1_1 = y1_2;\n    }\n\n    /* 2nd differentials @ x-1 & x-2 */\n    y2_1 = y0_0 - (y0_1 * 2) + y0_2;\n    y2_2 = y0_1 - (y0_2 * 2) + y0_3;\n\n    dbprintf(1, \"scan: x=%d y=%d y0=%d y1=%d y2=%d\",\n             x, y, y0_1, y1_1, y2_1);\n\n    edge = ZBAR_NONE;\n    /* 2nd zero-crossing is 1st local min/max - could be edge */\n    if((!y2_1 ||\n        ((y2_1 > 0) ? y2_2 < 0 : y2_2 > 0)) &&\n       (calc_thresh(scn) <= abs(y1_1)))\n    {\n        /* check for 1st sign change */\n        char y1_rev = (scn->y1_sign > 0) ? y1_1 < 0 : y1_1 > 0;\n        if(y1_rev)\n            /* intensity change reversal - finalize previous edge */\n            edge = process_edge(scn, y1_1);\n\n        if(y1_rev || (abs(scn->y1_sign) < abs(y1_1))) {\n            int d;\n            scn->y1_sign = y1_1;\n\n            /* adaptive thresholding */\n            /* start at multiple of new min/max */\n            scn->y1_thresh = (abs(y1_1) * THRESH_INIT + ROUND) >> ZBAR_FIXED;\n            dbprintf(1, \"\\tthr=%d\", scn->y1_thresh);\n            if(scn->y1_thresh < scn->y1_min_thresh)\n                scn->y1_thresh = scn->y1_min_thresh;\n\n            /* update current edge */\n            d = y2_1 - y2_2;\n            scn->cur_edge = 1 << ZBAR_FIXED;\n            if(!d)\n                scn->cur_edge >>= 1;\n            else if(y2_1)\n                /* interpolate zero crossing */\n                scn->cur_edge -= ((y2_1 << ZBAR_FIXED) + 1) / d;\n            scn->cur_edge += x << ZBAR_FIXED;\n            dbprintf(1, \"\\n\");\n        }\n    }\n    else\n        dbprintf(1, \"\\n\");\n    /* FIXME add fall-thru pass to decoder after heuristic \"idle\" period\n       (eg, 6-8 * last width) */\n    scn->x = x + 1;\n    return(edge);\n}\n\n/* undocumented API for drawing cutesy debug graphics */\nvoid zbar_scanner_get_state (const zbar_scanner_t *scn,\n                             unsigned *x,\n                             unsigned *cur_edge,\n                             unsigned *last_edge,\n                             int *y0,\n                             int *y1,\n                             int *y2,\n                             int *y1_thresh)\n{\n    register int y0_0 = scn->y0[(scn->x - 1) & 3];\n    register int y0_1 = scn->y0[(scn->x - 2) & 3];\n    register int y0_2 = scn->y0[(scn->x - 3) & 3];\n    zbar_scanner_t *mut_scn;\n    if(x) *x = scn->x - 1;\n    if(last_edge) *last_edge = scn->last_edge;\n    if(y0) *y0 = y0_1;\n    if(y1) *y1 = y0_1 - y0_2;\n    if(y2) *y2 = y0_0 - (y0_1 * 2) + y0_2;\n    /* NB not quite accurate (uses updated x) */\n    mut_scn = (zbar_scanner_t*)scn;\n    if(y1_thresh) *y1_thresh = calc_thresh(mut_scn);\n    dbprintf(1, \"\\n\");\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/svg.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <stdlib.h>\n#include <stdio.h>\n#include <stdarg.h>\n\n#include \"svg.h\"\n\nstatic const char svg_head[] =\n    \"<?xml version='1.0'?>\\n\"\n    \"<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN'\"\n    \" 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>\\n\"\n    \"<svg version='1.1' id='top' width='8in' height='8in'\"\n    \" preserveAspectRatio='xMidYMid' overflow='visible'\"\n    \" viewBox='%g,%g %g,%g' xmlns:xlink='http://www.w3.org/1999/xlink'\"\n    \" xmlns='http://www.w3.org/2000/svg'>\\n\"\n    \"<defs><style type='text/css'><![CDATA[\\n\"\n    \"* { image-rendering: optimizeSpeed }\\n\"\n    \"image { opacity: .9 }\\n\"\n    \"path, line, circle { fill: none; stroke-width: .5;\"\n    \" stroke-linejoin: round; stroke-linecap: butt;\"\n    \" stroke-opacity: .666; fill-opacity: .666 }\\n\"\n    /*\"#hedge line, #vedge line { stroke: #34f }\\n\"*/\n    \"#hedge, #vedge { stroke: yellow }\\n\"\n    \"#target * { fill: none; stroke: #f24 }\\n\"\n    \"#mdot * { fill: #e2f; stroke: none }\\n\"\n    \"#ydot * { fill: yellow; stroke: none }\\n\"\n    \"#cross * { stroke: #44f }\\n\"\n    \".hedge { marker: url(#hedge) }\\n\"\n    \".vedge { marker: url(#vedge) }\\n\"\n    \".scanner .hedge, .scanner .vedge { stroke-width: 8 }\\n\"\n    \".finder .hedge, .finder .vedge { /*stroke: #a0c;*/ stroke-width: .9 }\\n\"\n    \".cluster { stroke: #a0c; stroke-width: 1; stroke-opacity: .45 }\\n\"\n    \".cluster.valid { stroke: #c0a; stroke-width: 1; stroke-opacity: .666 }\\n\"\n    \".h.cluster { marker: url(#vedge) }\\n\"\n    \".v.cluster { marker: url(#hedge) }\\n\"\n    \".centers { marker: url(#target); stroke-width: 3 }\\n\"\n    \".edge-pts { marker: url(#ydot); stroke-width: .5 }\\n\"\n    \".align { marker: url(#mdot); stroke-width: 1.5 }\\n\"\n    \".sampling-grid { stroke-width: .75; marker: url(#cross) }\\n\"\n    \"]]></style>\\n\"\n    \"<marker id='hedge' overflow='visible'><line x1='-2' x2='2'/></marker>\\n\"\n    \"<marker id='vedge' overflow='visible'><line y1='-2' y2='2'/></marker>\\n\"\n    \"<marker id='ydot' overflow='visible'><circle r='2'/></marker>\\n\"\n    \"<marker id='mdot' overflow='visible'><circle r='2'/></marker>\\n\"\n    \"<marker id='cross' overflow='visible'><path d='M-2,0h4 M0,-2v4'/></marker>\\n\"\n    \"<marker id='target' overflow='visible'><path d='M-4,0h8 M0,-4v8'/><circle r='2'/></marker>\\n\"\n    \"</defs>\\n\";\n\nstatic FILE *svg = NULL;\n\nvoid svg_open (const char *name, double x, double y, double w, double h)\n{\n    svg = fopen(name, \"w\");\n    if(!svg) return;\n\n    /* FIXME calc scaled size */\n    fprintf(svg, svg_head, x, y, w, h);\n}\n\nvoid svg_close ()\n{\n    if(!svg) return;\n    fprintf(svg, \"</svg>\\n\");\n    fclose(svg);\n    svg = NULL;\n}\n\nvoid svg_commentf (const char *format, ...)\n{\n    if(!svg) return;\n    fprintf(svg, \"<!-- \");\n    va_list args;\n    va_start(args, format);\n    vfprintf(svg, format, args);\n    va_end(args);\n    fprintf(svg, \" -->\\n\");\n}\n\nvoid svg_image (const char *name, double width, double height)\n{\n    if(!svg) return;\n    fprintf(svg, \"<image width='%g' height='%g' xlink:href='%s'/>\\n\",\n            width, height, name);\n}\n\nvoid svg_group_start (const char *cls,\n                      double deg,\n                      double sx,\n                      double sy,\n                      double x,\n                      double y)\n{\n    if(!svg) return;\n    fprintf(svg, \"<g class='%s'\", cls);\n    if(sx != 1. || sy != 1 || deg || x || y) {\n        fprintf(svg, \" transform='\");\n        if(deg)\n            fprintf(svg, \"rotate(%g)\", deg);\n        if(x || y)\n            fprintf(svg, \"translate(%g,%g)\", x, y);\n        if(sx != 1. || sy != 1.) {\n            if(!sy)\n                fprintf(svg, \"scale(%g)\", sx);\n            else\n                fprintf(svg, \"scale(%g,%g)\", sx, sy);\n        }\n        fprintf(svg, \"'\");\n    }\n    fprintf(svg, \">\\n\");\n}\n\nvoid svg_group_end ()\n{\n    fprintf(svg, \"</g>\\n\");\n}\n\nvoid svg_path_start (const char *cls,\n                     double scale,\n                     double x,\n                     double y)\n{\n    if(!svg) return;\n    fprintf(svg, \"<path class='%s'\", cls);\n    if(scale != 1. || x || y) {\n        fprintf(svg, \" transform='\");\n        if(x || y)\n            fprintf(svg, \"translate(%g,%g)\", x, y);\n        if(scale != 1.)\n            fprintf(svg, \"scale(%g)\", scale);\n        fprintf(svg, \"'\");\n    }\n    fprintf(svg, \" d='\");\n}\n\nvoid svg_path_end ()\n{\n    if(!svg) return;\n    fprintf(svg, \"'/>\\n\");\n}\n\nvoid svg_path_close ()\n{\n    if(!svg) return;\n    fprintf(svg, \"z\");\n}\n\nvoid svg_path_moveto (svg_absrel_t abs, double x, double y)\n{\n    if(!svg) return;\n    fprintf(svg, \" %c%g,%g\", (abs) ? 'M' : 'm', x, y);\n}\n\nvoid svg_path_lineto(svg_absrel_t abs, double x, double y)\n{\n    if(!svg) return;\n    if(x && y)\n        fprintf(svg, \"%c%g,%g\", (abs) ? 'L' : 'l', x, y);\n    else if(x)\n        fprintf(svg, \"%c%g\", (abs) ? 'H' : 'h', x);\n    else if(y)\n        fprintf(svg, \"%c%g\", (abs) ? 'V' : 'v', y);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/svg.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _SVG_H_\n#define _SVG_H_\n\n#ifdef DEBUG_SVG\n\ntypedef enum { SVG_REL, SVG_ABS } svg_absrel_t;\n\nvoid svg_open(const char *name, double x, double y, double w, double h);\nvoid svg_close(void);\n\nvoid svg_commentf(const char *format, ...);\nvoid svg_image(const char *name, double width, double height);\n\nvoid svg_group_start(const char *cls, double rotate,\n                     double scalex, double scaley,\n                     double x, double y);\nvoid svg_group_end(void);\n\nvoid svg_path_start(const char *cls, double scale, double x, double y);\nvoid svg_path_end(void);\nvoid svg_path_close(void);\nvoid svg_path_moveto(svg_absrel_t abs, double x, double y);\nvoid svg_path_lineto(svg_absrel_t abs, double x, double y);\n\n#else\n\n# define svg_open(...)\n# define svg_close(...)\n\n# define svg_image(...)\n\n# define svg_group_start(...)\n# define svg_group_end(...)\n\n# define svg_path_start(...)\n# define svg_path_end(...)\n# define svg_path_moveto(...)\n# define svg_path_lineto(...)\n# define svg_path_close(...)\n\n#endif\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/symbol.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#include <stdio.h>\n#include <string.h>\n#include <assert.h>\n\n#include <zbar.h>\n#include \"symbol.h\"\n\nconst char *zbar_get_symbol_name (zbar_symbol_type_t sym)\n{\n    switch(sym & ZBAR_SYMBOL) {\n    case ZBAR_EAN2: return(\"EAN-2\");\n    case ZBAR_EAN5: return(\"EAN-5\");\n    case ZBAR_EAN8: return(\"EAN-8\");\n    case ZBAR_UPCE: return(\"UPC-E\");\n    case ZBAR_ISBN10: return(\"ISBN-10\");\n    case ZBAR_UPCA: return(\"UPC-A\");\n    case ZBAR_EAN13: return(\"EAN-13\");\n    case ZBAR_ISBN13: return(\"ISBN-13\");\n    case ZBAR_COMPOSITE: return(\"COMPOSITE\");\n    case ZBAR_I25: return(\"I2/5\");\n    case ZBAR_DATABAR: return(\"DataBar\");\n    case ZBAR_DATABAR_EXP: return(\"DataBar-Exp\");\n    case ZBAR_CODABAR: return(\"Codabar\");\n    case ZBAR_CODE39: return(\"CODE-39\");\n    case ZBAR_CODE93: return(\"CODE-93\");\n    case ZBAR_CODE128: return(\"CODE-128\");\n    case ZBAR_PDF417: return(\"PDF417\");\n    case ZBAR_QRCODE: return(\"QR-Code\");\n    default: return(\"UNKNOWN\");\n    }\n}\n\nconst char *zbar_get_addon_name (zbar_symbol_type_t sym)\n{\n    return(\"\");\n}\n\nconst char *zbar_get_config_name (zbar_config_t cfg)\n{\n    switch(cfg) {\n    case ZBAR_CFG_ENABLE: return(\"ENABLE\");\n    case ZBAR_CFG_ADD_CHECK: return(\"ADD_CHECK\");\n    case ZBAR_CFG_EMIT_CHECK: return(\"EMIT_CHECK\");\n    case ZBAR_CFG_ASCII: return(\"ASCII\");\n    case ZBAR_CFG_MIN_LEN: return(\"MIN_LEN\");\n    case ZBAR_CFG_MAX_LEN: return(\"MAX_LEN\");\n    case ZBAR_CFG_UNCERTAINTY: return(\"UNCERTAINTY\");\n    case ZBAR_CFG_POSITION: return(\"POSITION\");\n    case ZBAR_CFG_X_DENSITY: return(\"X_DENSITY\");\n    case ZBAR_CFG_Y_DENSITY: return(\"Y_DENSITY\");\n    default: return(\"\");\n    }\n}\n\nconst char *zbar_get_modifier_name (zbar_modifier_t mod)\n{\n    switch(mod) {\n    case ZBAR_MOD_GS1: return(\"GS1\");\n    case ZBAR_MOD_AIM: return(\"AIM\");\n    default: return(\"\");\n    }\n}\n\nconst char *zbar_get_orientation_name (zbar_orientation_t orient)\n{\n    switch(orient) {\n    case ZBAR_ORIENT_UP: return(\"UP\");\n    case ZBAR_ORIENT_RIGHT: return(\"RIGHT\");\n    case ZBAR_ORIENT_DOWN: return(\"DOWN\");\n    case ZBAR_ORIENT_LEFT: return(\"LEFT\");\n    default: return(\"UNKNOWN\");\n    }\n}\n\nint _zbar_get_symbol_hash (zbar_symbol_type_t sym)\n{\n    static const signed char hash[0x20] = {\n        0x00, 0x01, 0x10, 0x11,   -1, 0x11, 0x16, 0x0c,\n\t0x05, 0x06, 0x08,   -1, 0x04, 0x03, 0x07, 0x12,\n\t  -1,   -1,   -1,   -1,   -1,   -1,   -1, 0x02,\n\t  -1, 0x00, 0x12, 0x0c, 0x0b, 0x1d, 0x0a, 0x00,\n     };\n    int g0 = hash[sym & 0x1f];\n    int g1 = hash[~(sym >> 4) & 0x1f];\n    assert(g0 >= 0 && g1 >= 0);\n    if(g0 < 0 || g1 < 0)\n        return(0);\n    return((g0 + g1) & 0x1f);\n}\n\nvoid _zbar_symbol_free (zbar_symbol_t *sym)\n{\n    if(sym->syms) {\n        zbar_symbol_set_ref(sym->syms, -1);\n        sym->syms = NULL;\n    }\n    if(sym->pts)\n        free(sym->pts);\n    if(sym->data_alloc && sym->data)\n        free(sym->data);\n    free(sym);\n}\n\nvoid zbar_symbol_ref (const zbar_symbol_t *sym,\n                      int refs)\n{\n    zbar_symbol_t *ncsym = (zbar_symbol_t*)sym;\n    _zbar_symbol_refcnt(ncsym, refs);\n}\n\nzbar_symbol_type_t zbar_symbol_get_type (const zbar_symbol_t *sym)\n{\n    return(sym->type);\n}\n\nunsigned int zbar_symbol_get_configs (const zbar_symbol_t *sym)\n{\n    return(sym->configs);\n}\n\nunsigned int zbar_symbol_get_modifiers (const zbar_symbol_t *sym)\n{\n    return(sym->modifiers);\n}\n\nconst char *zbar_symbol_get_data (const zbar_symbol_t *sym)\n{\n    return(sym->data);\n}\n\nunsigned int zbar_symbol_get_data_length (const zbar_symbol_t *sym)\n{\n    return(sym->datalen);\n}\n\nint zbar_symbol_get_count (const zbar_symbol_t *sym)\n{\n    return(sym->cache_count);\n}\n\nint zbar_symbol_get_quality (const zbar_symbol_t *sym)\n{\n    return(sym->quality);\n}\n\nunsigned zbar_symbol_get_loc_size (const zbar_symbol_t *sym)\n{\n    return(sym->npts);\n}\n\nint zbar_symbol_get_loc_x (const zbar_symbol_t *sym,\n                           unsigned idx)\n{\n    if(idx < sym->npts)\n        return(sym->pts[idx].x);\n    else\n        return(-1);\n}\n\nint zbar_symbol_get_loc_y (const zbar_symbol_t *sym,\n                           unsigned idx)\n{\n    if(idx < sym->npts)\n        return(sym->pts[idx].y);\n    else\n        return(-1);\n}\n\nzbar_orientation_t zbar_symbol_get_orientation (const zbar_symbol_t *sym)\n{\n    return(sym->orient);\n}\n\nconst zbar_symbol_t *zbar_symbol_next (const zbar_symbol_t *sym)\n{\n    return((sym) ? sym->next : NULL);\n}\n\nconst zbar_symbol_set_t*\nzbar_symbol_get_components (const zbar_symbol_t *sym)\n{\n    return(sym->syms);\n}\n\nconst zbar_symbol_t *zbar_symbol_first_component (const zbar_symbol_t *sym)\n{\n    return((sym && sym->syms) ? sym->syms->head : NULL);\n}\n\n\nunsigned base64_encode (char *dst,\n                        const char *src,\n                        unsigned srclen)\n{\n    static const char alphabet[] =\n        \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\";\n    char *start = dst;\n    int nline = 19;\n    for(; srclen; srclen -= 3) {\n        unsigned int buf = *(src++) << 16;\n        if(srclen > 1) buf |= *(src++) << 8;\n        if(srclen > 2) buf |= *(src++);\n        *(dst++) = alphabet[(buf >> 18) & 0x3f];\n        *(dst++) = alphabet[(buf >> 12) & 0x3f];\n        *(dst++) = (srclen > 1) ? alphabet[(buf >> 6) & 0x3f] : '=';\n        *(dst++) = (srclen > 2) ? alphabet[buf & 0x3f] : '=';\n        if(srclen < 3) break;\n        if(!--nline) { *(dst++) = '\\n'; nline = 19; }\n    }\n    *(dst++) = '\\n';\n    *(dst++) = '\\0';\n    return(dst - start - 1);\n}\n\nenum {\n    TMPL_START,\n    TMPL_MOD_START, TMPL_MOD_ITEM, TMPL_MOD_END,\n    TMPL_COUNT,\n    TMPL_DATA_START, TMPL_FORMAT, TMPL_CDATA,\n    TMPL_NL,\n    TMPL_END,\n};\n\n/* FIXME suspect... */\n#define MAX_STATIC 256\n#define MAX_MOD (5 * ZBAR_MOD_NUM)\n#define MAX_CFG (10 * ZBAR_CFG_NUM)\n#define MAX_INT_DIGITS 10\n\n#define TMPL_COPY(t) do {             \\\n        static const char *_st = (t); \\\n        i = strlen(_st);              \\\n        memcpy(*buf + n, _st, i + 1); \\\n        n += i;                       \\\n        assert(n <= maxlen);          \\\n    } while(0)\n\n#define TMPL_FMT(t, ...) do {                                 \\\n        static const char *_st = (t);                         \\\n        i = snprintf(*buf + n, maxlen - n, _st, __VA_ARGS__); \\\n        assert(i > 0);                                        \\\n        n += i;                                               \\\n        assert(n <= maxlen);                                  \\\n    } while(0)\n\nchar *zbar_symbol_xml (const zbar_symbol_t *sym,\n                       char **buf,\n                       unsigned *len)\n{\n    unsigned int datalen, maxlen;\n    int i, n = 0;\n\n    const char *type = zbar_get_symbol_name(sym->type);\n    const char *orient = zbar_get_orientation_name(sym->orient);\n\n    /* check for binary data */\n    unsigned char *data = (unsigned char*)sym->data;\n    char binary = ((data[0] == 0xff && data[1] == 0xfe) ||\n                   (data[0] == 0xfe && data[1] == 0xff) ||\n                   !strncmp(sym->data, \"<?xml\", 5));\n    for(i = 0; !binary && i < sym->datalen; i++) {\n        unsigned char c = sym->data[i];\n        binary = ((c < 0x20 && ((~0x00002600 >> c) & 1)) ||\n                  (c >= 0x7f && c < 0xa0) ||\n                  (c == ']' && i + 2 < sym->datalen &&\n                   sym->data[i + 1] == ']' &&\n                   sym->data[i + 2] == '>'));\n    }\n\n    datalen = strlen(sym->data);\n    if(binary)\n        datalen = (sym->datalen + 2) / 3 * 4 + sym->datalen / 57 + 3;\n\n    maxlen = (MAX_STATIC + strlen(type) + strlen(orient) +\n              datalen + MAX_INT_DIGITS + 1);\n    unsigned int mods = sym->modifiers;\n    if(mods)\n        maxlen += MAX_MOD;\n    unsigned int cfgs = sym->configs & ~(1 << ZBAR_CFG_ENABLE);\n    if(cfgs)\n        maxlen += MAX_CFG;\n    if(binary)\n        maxlen += MAX_INT_DIGITS;\n\n    if(!*buf || (*len < maxlen)) {\n        if(*buf)\n            free(*buf);\n        *buf = malloc(maxlen);\n        /* FIXME check OOM */\n        *len = maxlen;\n    }\n\n    TMPL_FMT(\"<symbol type='%s' quality='%d' orientation='%s'\",\n             type, sym->quality, orient);\n\n    if(mods) {\n        int j;\n        TMPL_COPY(\" modifiers='\");\n        for(j = 0; mods && j < ZBAR_MOD_NUM; j++, mods >>= 1)\n            if(mods & 1)\n                TMPL_FMT(\"%s \", zbar_get_modifier_name(j));\n        /* cleanup trailing space */\n        n--;\n        TMPL_COPY(\"'\");\n    }\n\n    if(cfgs) {\n        int j;\n        TMPL_COPY(\" configs='\");\n        for(j = 0; cfgs && j < ZBAR_CFG_NUM; j++, cfgs >>= 1)\n            if(cfgs & 1)\n                TMPL_FMT(\"%s \", zbar_get_config_name(j));\n        /* cleanup trailing space */\n        n--;\n        TMPL_COPY(\"'\");\n    }\n\n    if(sym->cache_count)\n        TMPL_FMT(\" count='%d'\", sym->cache_count);\n\n    TMPL_COPY(\"><data\");\n    if(binary)\n        TMPL_FMT(\" format='base64' length='%d'\", sym->datalen);\n    TMPL_COPY(\"><![CDATA[\");\n\n    if(!binary) {\n        memcpy(*buf + n, sym->data, sym->datalen + 1);\n        n += sym->datalen;\n    }\n    else {\n        TMPL_COPY(\"\\n\");\n        n += base64_encode(*buf + n, sym->data, sym->datalen);\n    }\n    assert(n <= maxlen);\n\n    TMPL_COPY(\"]]></data></symbol>\");\n\n    *len = n;\n    return(*buf);\n}\n\n\nzbar_symbol_set_t *_zbar_symbol_set_create ()\n{\n    zbar_symbol_set_t *syms = calloc(1, sizeof(*syms));\n    _zbar_refcnt(&syms->refcnt, 1);\n    return(syms);\n}\n\ninline void _zbar_symbol_set_free (zbar_symbol_set_t *syms)\n{\n    zbar_symbol_t *sym, *next;\n    for(sym = syms->head; sym; sym = next) {\n        next = sym->next;\n        sym->next = NULL;\n        _zbar_symbol_refcnt(sym, -1);\n    }\n    syms->head = NULL;\n    free(syms);\n}\n\nvoid zbar_symbol_set_ref (const zbar_symbol_set_t *syms,\n                          int delta)\n{\n    zbar_symbol_set_t *ncsyms = (zbar_symbol_set_t*)syms;\n    if(!_zbar_refcnt(&ncsyms->refcnt, delta) && delta <= 0)\n        _zbar_symbol_set_free(ncsyms);\n}\n\nint zbar_symbol_set_get_size (const zbar_symbol_set_t *syms)\n{\n    return(syms->nsyms);\n}\n\nconst zbar_symbol_t*\nzbar_symbol_set_first_symbol (const zbar_symbol_set_t *syms)\n{\n    zbar_symbol_t *sym = syms->tail;\n    if(sym)\n        return(sym->next);\n    return(syms->head);\n}\n\nconst zbar_symbol_t*\nzbar_symbol_set_first_unfiltered (const zbar_symbol_set_t *syms)\n{\n    return(syms->head);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/symbol.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _SYMBOL_H_\n#define _SYMBOL_H_\n\n#include <stdlib.h>\n#include <zbar.h>\n#include \"refcnt.h\"\n\n#define NUM_SYMS  20\n\ntypedef struct point_s {\n    int x, y;\n} point_t;\n\nstruct zbar_symbol_set_s {\n    refcnt_t refcnt;\n    int nsyms;                  /* number of filtered symbols */\n    zbar_symbol_t *head;        /* first of decoded symbol results */\n    zbar_symbol_t *tail;        /* last of unfiltered symbol results */\n};\n\nstruct zbar_symbol_s {\n    zbar_symbol_type_t type;    /* symbol type */\n    unsigned int configs;       /* symbology boolean config bitmask */\n    unsigned int modifiers;     /* symbology modifier bitmask */\n    unsigned int data_alloc;    /* allocation size of data */\n    unsigned int datalen;       /* length of binary symbol data */\n    char *data;                 /* symbol data */\n\n    unsigned pts_alloc;         /* allocation size of pts */\n    unsigned npts;              /* number of points in location polygon */\n    point_t *pts;               /* list of points in location polygon */\n    zbar_orientation_t orient;  /* coarse orientation */\n\n    refcnt_t refcnt;            /* reference count */\n    zbar_symbol_t *next;        /* linked list of results (or siblings) */\n    zbar_symbol_set_t *syms;    /* components of composite result */\n    unsigned long time;         /* relative symbol capture time */\n    int cache_count;            /* cache state */\n    int quality;                /* relative symbol reliability metric */\n};\n\nextern int _zbar_get_symbol_hash(zbar_symbol_type_t);\n\nextern void _zbar_symbol_free(zbar_symbol_t*);\n\nextern zbar_symbol_set_t *_zbar_symbol_set_create(void);\nextern void _zbar_symbol_set_free(zbar_symbol_set_t*);\n\nstatic inline void sym_add_point (zbar_symbol_t *sym,\n                                  int x,\n                                  int y)\n{\n    int i = sym->npts;\n    if(++sym->npts >= sym->pts_alloc)\n        sym->pts = realloc(sym->pts, ++sym->pts_alloc * sizeof(point_t));\n    sym->pts[i].x = x;\n    sym->pts[i].y = y;\n}\n\nstatic inline void _zbar_symbol_refcnt (zbar_symbol_t *sym,\n                                        int delta)\n{\n    if(!_zbar_refcnt(&sym->refcnt, delta) && delta <= 0)\n        _zbar_symbol_free(sym);\n}\n\nstatic inline void _zbar_symbol_set_add (zbar_symbol_set_t *syms,\n                                         zbar_symbol_t *sym)\n{\n    sym->next = syms->head;\n    syms->head = sym;\n    syms->nsyms++;\n\n    _zbar_symbol_refcnt(sym, 1);\n}\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/thread.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _ZBAR_THREAD_H_\n#define _ZBAR_THREAD_H_\n\n/* simple platform thread abstraction\n */\n\n#include <config.h>\n#include \"event.h\"\n\n#if defined(_WIN32)\n\n# include <windows.h>\n# define HAVE_THREADS\n# define ZTHREAD DWORD WINAPI\n\ntypedef ZTHREAD (zbar_thread_proc_t)(void*);\n\ntypedef DWORD zbar_thread_id_t;\n\n#elif defined(HAVE_LIBPTHREAD)\n\n# include <pthread.h>\n# include <signal.h>\n# define HAVE_THREADS\n# define ZTHREAD void*\n\ntypedef ZTHREAD (zbar_thread_proc_t)(void*);\n\ntypedef pthread_t zbar_thread_id_t;\n\n#else\n\n# undef HAVE_THREADS\n# undef ZTHREAD\n\ntypedef void zbar_thread_proc_t;\ntypedef int zbar_thread_id_t;\n\n#endif\n\n\ntypedef struct zbar_thread_s {\n    zbar_thread_id_t tid;\n    int started, running;\n    zbar_event_t notify, activity;\n} zbar_thread_t;\n\n\n#if defined(_WIN32)\n\nstatic inline void _zbar_thread_init (zbar_thread_t *thr)\n{\n    thr->running = 1;\n    _zbar_event_trigger(&thr->activity);\n}\n\nstatic inline zbar_thread_id_t _zbar_thread_self ()\n{\n    return(GetCurrentThreadId());\n}\n\nstatic inline int _zbar_thread_is_self (zbar_thread_id_t tid)\n{\n    return(tid == GetCurrentThreadId());\n}\n\n\n#elif defined(HAVE_LIBPTHREAD)\n\nstatic inline void _zbar_thread_init (zbar_thread_t *thr)\n{\n    sigset_t sigs;\n    sigfillset(&sigs);\n    pthread_sigmask(SIG_BLOCK, &sigs, NULL);\n    thr->running = 1;\n    _zbar_event_trigger(&thr->activity);\n}\n\nstatic inline zbar_thread_id_t _zbar_thread_self (void)\n{\n    return(pthread_self());\n}\n\nstatic inline int _zbar_thread_is_self (zbar_thread_id_t tid)\n{\n    return(pthread_equal(tid, pthread_self()));\n}\n\n\n#else\n\n# define _zbar_thread_start(...) -1\n# define _zbar_thread_stop(...) 0\n# define _zbar_thread_self(...) 0\n# define _zbar_thread_is_self(...) 1\n\n#endif\n\n#ifdef HAVE_THREADS\nextern int _zbar_thread_start(zbar_thread_t*, zbar_thread_proc_t*,\n                              void*, zbar_mutex_t*);\nextern int _zbar_thread_stop(zbar_thread_t*, zbar_mutex_t*);\n#endif\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/timer.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _ZBAR_TIMER_H_\n#define _ZBAR_TIMER_H_\n\n#include <time.h>\n#ifdef HAVE_SYS_TIME_H\n# include <sys/time.h>   /* gettimeofday */\n#endif\n\n/* platform timer abstraction\n *\n * zbar_timer_t stores the absolute expiration of a delay from\n * when the timer was initialized.\n *\n * _zbar_timer_init() initialized timer with specified ms delay.\n *     returns timer or NULL if timeout < 0 (no/infinite timeout)\n * _zbar_timer_check() returns ms remaining until expiration.\n *     will be <= 0 if timer has expired\n */\n\n#if _POSIX_TIMERS > 0\n\ntypedef struct timespec zbar_timer_t;\n\nstatic inline int _zbar_timer_now ()\n{\n    struct timespec now;\n    clock_gettime(CLOCK_REALTIME, &now);\n    return(now.tv_sec * 1000 + now.tv_nsec / 1000000);\n}\n\nstatic inline zbar_timer_t *_zbar_timer_init (zbar_timer_t *timer,\n                                              int delay)\n{\n    if(delay < 0)\n        return(NULL);\n\n    clock_gettime(CLOCK_REALTIME, timer);\n    timer->tv_nsec += (delay % 1000) * 1000000;\n    timer->tv_sec += (delay / 1000) + (timer->tv_nsec / 1000000000);\n    timer->tv_nsec %= 1000000000;\n    return(timer);\n}\n\nstatic inline int _zbar_timer_check (zbar_timer_t *timer)\n{\n    struct timespec now;\n    int delay;\n    if(!timer)\n        return(-1);\n\n    clock_gettime(CLOCK_REALTIME, &now);\n    delay = ((timer->tv_sec - now.tv_sec) * 1000 +\n             (timer->tv_nsec - now.tv_nsec) / 1000000);\n    return((delay >= 0) ? delay : 0);\n}\n\n\n#elif defined(_WIN32)\n\n# include <windows.h>\n\ntypedef DWORD zbar_timer_t;\n\nstatic inline int _zbar_timer_now ()\n{\n    return(timeGetTime());\n}\n\nstatic inline zbar_timer_t *_zbar_timer_init (zbar_timer_t *timer,\n                                              int delay)\n{\n    if(delay < 0)\n        return(NULL);\n\n    *timer = timeGetTime() + delay;\n    return(timer);\n}\n\nstatic inline int _zbar_timer_check (zbar_timer_t *timer)\n{\n    int delay;\n    if(!timer)\n        return(INFINITE);\n\n    delay = *timer - timeGetTime();\n    return((delay >= 0) ? delay : 0);\n}\n\n\n#elif defined(HAVE_SYS_TIME_H)\n\ntypedef struct timeval zbar_timer_t;\n\nstatic inline int _zbar_timer_now ()\n{\n    struct timeval now;\n    gettimeofday(&now, NULL);\n    return(now.tv_sec * 1000 + now.tv_usec / 1000);\n}\n\nstatic inline zbar_timer_t *_zbar_timer_init (zbar_timer_t *timer,\n                                              int delay)\n{\n    if(delay < 0)\n        return(NULL);\n\n    gettimeofday(timer, NULL);\n    timer->tv_usec += (delay % 1000) * 1000;\n    timer->tv_sec += (delay / 1000) + (timer->tv_usec / 1000000);\n    timer->tv_usec %= 1000000;\n    return(timer);\n}\n\nstatic inline int _zbar_timer_check (zbar_timer_t *timer)\n{\n    struct timeval now;\n    if(!timer)\n        return(-1);\n\n    gettimeofday(&now, NULL);\n    return((timer->tv_sec - now.tv_sec) * 1000 +\n           (timer->tv_usec - now.tv_usec) / 1000);\n}\n\n#else\n# error \"unable to find a timer interface\"\n#endif\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/video/null.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"video.h\"\n\nstatic inline int null_error (void *m,\n                              const char *func)\n{\n    return(err_capture(m, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, func,\n                       \"not compiled with video input support\"));\n}\n\nint _zbar_video_open (zbar_video_t *vdo,\n                      const char *device)\n{\n    return(null_error(vdo, __func__));\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/video/v4l.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2011 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#ifdef HAVE_SYS_TYPES_H\n# include <sys/types.h>\n#endif\n#ifdef HAVE_SYS_STAT_H\n# include <sys/stat.h>\n#endif\n#ifdef HAVE_FCNTL_H\n# include <fcntl.h>\n#endif\n#ifdef HAVE_UNISTD_H\n# include <unistd.h>\n#endif\n\n#include \"video.h\"\n\nextern int _zbar_v4l1_probe(zbar_video_t*);\nextern int _zbar_v4l2_probe(zbar_video_t*);\n\nint _zbar_video_open (zbar_video_t *vdo,\n                      const char *dev)\n{\n    vdo->fd = open(dev, O_RDWR);\n    if(vdo->fd < 0)\n        return(err_capture_str(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                               \"opening video device '%s'\", dev));\n    zprintf(1, \"opened camera device %s (fd=%d)\\n\", dev, vdo->fd);\n\n    int rc = -1;\n#ifdef HAVE_LINUX_VIDEODEV2_H\n    if(vdo->intf != VIDEO_V4L1)\n        rc = _zbar_v4l2_probe(vdo);\n#endif\n#ifdef HAVE_LINUX_VIDEODEV_H\n    if(rc && vdo->intf != VIDEO_V4L2)\n        rc = _zbar_v4l1_probe(vdo);\n#endif\n\n    if(rc && vdo->fd >= 0) {\n        close(vdo->fd);\n        vdo->fd = -1;\n    }\n    return(rc);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/video/v4l1.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2011 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#ifdef HAVE_STDLIB_H\n# include <stdlib.h>\n#endif\n#include <string.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <unistd.h>\n#include <fcntl.h>\n#include <errno.h>\n#include <assert.h>\n#ifdef HAVE_SYS_IOCTL_H\n# include <sys/ioctl.h>\n#endif\n#ifdef HAVE_SYS_MMAN_H\n# include <sys/mman.h>\n#endif\n#include <linux/videodev.h>\n\n#include \"video.h\"\n#include \"image.h\"\n\ntypedef struct v4l1_format_s {\n    uint32_t format;\n    uint8_t bpp;\n} v4l1_format_t;\n\n/* static v4l1 \"palette\" mappings\n * documentation for v4l1 formats is terrible...\n */\nstatic const v4l1_format_t v4l1_formats[17] = {\n    /* format                   bpp */\n    { 0,                         0 },\n    { fourcc('G','R','E','Y'),   8 }, /* GREY */\n    { fourcc('H','I','2','4'),   8 }, /* HI240 (BT848) */\n\n    /* component ordering for RGB palettes is unspecified,\n     * convention appears to place red in the most significant bits\n     * FIXME is this true for other drivers? big endian machines?\n     */\n    { fourcc('R','G','B','P'),  16 }, /* RGB565 */\n    { fourcc('B','G','R','3'),  24 }, /* RGB24 */\n    { fourcc('B','G','R','4'),  32 }, /* RGB32 */\n    { fourcc('R','G','B','O'),  16 }, /* RGB555 */\n    { fourcc('Y','U','Y','2'),  16 }, /* YUV422 (8 bpp?!) */\n    { fourcc('Y','U','Y','V'),  16 }, /* YUYV */\n    { fourcc('U','Y','V','Y'),  16 }, /* UYVY */\n    { 0,                        12 }, /* YUV420 (24 bpp?) FIXME?! */\n    { fourcc('Y','4','1','P'),  12 }, /* YUV411 */\n    { 0,                         0 }, /* Bt848 raw */\n    { fourcc('4','2','2','P'),  16 }, /* YUV422P (24 bpp?) */\n    { fourcc('4','1','1','P'),  12 }, /* YUV411P */\n    { fourcc('Y','U','1','2'),  12 }, /* YUV420P */\n    { fourcc('Y','U','V','9'),   9 }, /* YUV410P */\n};\n\nstatic int v4l1_nq (zbar_video_t *vdo,\n                    zbar_image_t *img)\n{\n    if(video_nq_image(vdo, img))\n        return(-1);\n\n    if(vdo->iomode != VIDEO_MMAP)\n        return(0);\n\n    struct video_mmap vmap;\n    vmap.frame = img->srcidx;\n    vmap.width = vdo->width;\n    vmap.height = vdo->height;\n    vmap.format = vdo->palette;\n    if(ioctl(vdo->fd, VIDIOCMCAPTURE, &vmap) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"initiating video capture (VIDIOCMCAPTURE)\"));\n\n    return(0);\n}\n\nstatic zbar_image_t *v4l1_dq (zbar_video_t *vdo)\n{\n    video_iomode_t iomode = vdo->iomode;\n    int fd = vdo->fd;\n    zbar_image_t *img = video_dq_image(vdo);\n    if(!img)\n        return(NULL);\n\n    if(iomode == VIDEO_MMAP) {\n        int frame = img->srcidx;\n        if(ioctl(fd, VIDIOCSYNC, &frame) < 0)\n            return(NULL);\n    }\n    else if(read(fd, (void*)img->data, img->datalen) != img->datalen)\n        return(NULL);\n\n    return(img);\n}\n\nstatic int v4l1_mmap_buffers (zbar_video_t *vdo)\n{\n#ifdef HAVE_SYS_MMAN_H\n    /* map camera image to memory */\n    struct video_mbuf vbuf;\n    memset(&vbuf, 0, sizeof(vbuf));\n    if(ioctl(vdo->fd, VIDIOCGMBUF, &vbuf) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"querying video frame buffers (VIDIOCGMBUF)\"));\n    assert(vbuf.frames && vbuf.size);\n\n    zprintf(1, \"mapping %d buffers size=0x%x\\n\", vbuf.frames, vbuf.size);\n    vdo->buflen = vbuf.size;\n    vdo->buf = mmap(0, vbuf.size, PROT_READ | PROT_WRITE, MAP_SHARED,\n                    vdo->fd, 0);\n    if(vdo->buf == MAP_FAILED)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"mapping video frame buffers\"));\n\n    int i;\n    for(i = 0; i < vbuf.frames; i++) {\n        zbar_image_t *img = vdo->images[i];\n        zprintf(2, \"    [%02d] @%08x\\n\", img->srcidx, vbuf.offsets[i]);\n        img->data = vdo->buf + vbuf.offsets[i];\n        img->datalen = vdo->datalen;\n        int next_offset = ((i + 1 < vdo->num_images)\n                           ? vbuf.offsets[i + 1]\n                           : vbuf.size);\n        if(next_offset < vbuf.offsets[i] + vdo->datalen)\n            fprintf(stderr, \"WARNING: insufficient v4l1 video buffer size:\\n\"\n                    \"\\tvbuf[%d]=%x vbuf[%d]=%x datalen=%lx\\n\"\n                    \"\\timage=%d x %d %.4s(%08x) palette=%d\\n\",\n                    i, vbuf.offsets[i], i + 1, next_offset,\n                    vdo->datalen, vdo->width, vdo->height,\n                    (char*)&vdo->format, vdo->format, vdo->palette);\n    }\n    return(0);\n#else\n    return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, __func__,\n                       \"memory mapping not supported\"));\n#endif\n}\n\nstatic int v4l1_start (zbar_video_t *vdo)\n{\n    return(0);\n}\n\nstatic int v4l1_stop (zbar_video_t *vdo)\n{\n    return(0);\n}\n\nstatic inline int v4l1_set_format (zbar_video_t *vdo,\n                                   uint32_t fmt)\n{\n    struct video_picture vpic;\n    memset(&vpic, 0, sizeof(vpic));\n    if(ioctl(vdo->fd, VIDIOCGPICT, &vpic) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"querying video format (VIDIOCGPICT)\"));\n\n    vdo->palette = 0;\n    int ifmt;\n    for(ifmt = 1; ifmt <= VIDEO_PALETTE_YUV410P; ifmt++)\n        if(v4l1_formats[ifmt].format == fmt)\n            break;\n    if(!fmt || ifmt >= VIDEO_PALETTE_YUV410P)\n        return(err_capture_int(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                               \"invalid v4l1 format: %x\", fmt));\n\n    vpic.palette = ifmt;\n    vpic.depth = v4l1_formats[ifmt].bpp;\n    if(ioctl(vdo->fd, VIDIOCSPICT, &vpic) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"setting format (VIDIOCSPICT)\"));\n\n    memset(&vpic, 0, sizeof(vpic));\n    if(ioctl(vdo->fd, VIDIOCGPICT, &vpic) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"querying video format (VIDIOCGPICT)\"));\n\n    if(vpic.palette != ifmt || vpic.depth != v4l1_formats[ifmt].bpp) {\n        fprintf(stderr,\n                \"WARNING: set v4l1 palette %d which should have depth %d bpp\\n\"\n                \"    but probed palette %d with depth %d bpp?\"\n                \"  ...continuing anyway\\n\",\n                ifmt, v4l1_formats[ifmt].bpp, vpic.palette, vpic.depth);\n        err_capture_int(vdo, SEV_WARNING, ZBAR_ERR_INVALID, __func__,\n                        \"driver format (%x) inconsistency\", fmt);\n    }\n    vdo->format = fmt;\n    vdo->palette = ifmt;\n    vdo->datalen = (vdo->width * vdo->height * v4l1_formats[ifmt].bpp + 7) >> 3;\n\n    zprintf(1, \"set new format: %.4s(%08x) depth=%d palette=%d size=0x%lx\\n\",\n            (char*)&vdo->format, vdo->format, vpic.depth, vdo->palette,\n            vdo->datalen);\n    return(0);\n}\n\nstatic int v4l1_init (zbar_video_t *vdo,\n                      uint32_t fmt)\n{\n    if(v4l1_set_format(vdo, fmt))\n        return(-1);\n    if(vdo->iomode == VIDEO_MMAP && v4l1_mmap_buffers(vdo))\n        return(-1);\n    return(0);\n}\n\nstatic int v4l1_cleanup (zbar_video_t *vdo)\n{\n#ifdef HAVE_SYS_MMAN_H\n    /* FIXME should avoid holding onto mmap'd buffers so long? */\n    if(vdo->iomode == VIDEO_MMAP && vdo->buf) {\n        if(munmap(vdo->buf, vdo->buflen))\n            return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                               \"unmapping video frame buffers\"));\n        vdo->buf = NULL;\n        /* FIXME reset image */\n    }\n#endif\n\n    /* close open device */\n    if(vdo->fd >= 0) {\n        close(vdo->fd);\n        vdo->fd = -1;\n    }\n    return(0);\n}\n\nstatic int v4l1_probe_iomode (zbar_video_t *vdo)\n{\n    vdo->iomode = VIDEO_READWRITE;\n#ifdef HAVE_SYS_MMAN_H\n    struct video_mbuf vbuf;\n    memset(&vbuf, 0, sizeof(vbuf));\n    if(ioctl(vdo->fd, VIDIOCGMBUF, &vbuf) < 0) {\n        if(errno != EINVAL)\n            return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                               \"querying video frame buffers (VIDIOCGMBUF)\"));\n        /* not supported */\n        return(0);\n    }\n    if(!vbuf.frames || !vbuf.size)\n        return(0);\n    vdo->iomode = VIDEO_MMAP;\n    if(vdo->num_images > vbuf.frames)\n        vdo->num_images = vbuf.frames;\n#endif\n    zprintf(1, \"using %d images in %s mode\\n\", vdo->num_images,\n            (vdo->iomode == VIDEO_READWRITE) ? \"READ\" : \"MMAP\");\n    return(0);\n}\n\nstatic inline int v4l1_probe_formats (zbar_video_t *vdo)\n{\n    struct video_picture vpic;\n    memset(&vpic, 0, sizeof(vpic));\n    if(ioctl(vdo->fd, VIDIOCGPICT, &vpic) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"querying format (VIDIOCGPICT)\"));\n\n    vdo->format = 0;\n    if(vpic.palette <= VIDEO_PALETTE_YUV410P)\n        vdo->format = v4l1_formats[vpic.palette].format;\n\n    zprintf(1, \"current format: %.4s(%08x) depth=%d palette=%d\\n\",\n            (char*)&vdo->format, vdo->format, vpic.depth, vpic.palette);\n\n    vdo->formats = calloc(16, sizeof(uint32_t));\n    if(!vdo->formats)\n        return(err_capture(vdo, SEV_FATAL, ZBAR_ERR_NOMEM, __func__,\n                           \"allocating format list\"));\n\n    int num_formats = 0;\n    zprintf(2, \"probing supported formats:\\n\");\n    int i;\n    for(i = 1; i <= VIDEO_PALETTE_YUV410P; i++) {\n        if(!v4l1_formats[i].format)\n            continue;\n        vpic.depth = v4l1_formats[i].bpp;\n        vpic.palette = i;\n        if(ioctl(vdo->fd, VIDIOCSPICT, &vpic) < 0) {\n            zprintf(2, \"    [%02d] %.4s...no (set fails)\\n\",\n                    i, (char*)&v4l1_formats[i].format);\n            continue;\n        }\n        if(ioctl(vdo->fd, VIDIOCGPICT, &vpic) < 0 ||\n           vpic.palette != i) {\n            zprintf(2, \"    [%02d] %.4s...no (set ignored)\\n\",\n                    i, (char*)&v4l1_formats[i].format);\n            continue;\n        }\n        zprintf(2, \"    [%02d] %.4s...yes\\n\",\n                i, (char*)&v4l1_formats[i].format);\n        vdo->formats[num_formats++] = v4l1_formats[i].format;\n    }\n    vdo->formats = realloc(vdo->formats, (num_formats + 1) * sizeof(uint32_t));\n    assert(vdo->formats);\n\n    return(v4l1_set_format(vdo, vdo->format));\n}\n\nstatic inline int v4l1_init_window (zbar_video_t *vdo)\n{\n    struct video_window vwin;\n    memset(&vwin, 0, sizeof(vwin));\n    if(ioctl(vdo->fd, VIDIOCGWIN, &vwin) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"querying video window settings (VIDIOCGWIN)\"));\n\n    zprintf(1, \"current window: %d x %d @(%d, %d)%s\\n\",\n            vwin.width, vwin.height, vwin.x, vwin.y,\n            (vwin.flags & 1) ? \" INTERLACE\" : \"\");\n\n    if(vwin.width == vdo->width && vwin.height == vdo->height)\n        /* max window already set */\n        return(0);\n\n    struct video_window maxwin;\n    memcpy(&maxwin, &vwin, sizeof(maxwin));\n    maxwin.width = vdo->width;\n    maxwin.height = vdo->height;\n\n    zprintf(1, \"setting max win: %d x %d @(%d, %d)%s\\n\",\n            maxwin.width, maxwin.height, maxwin.x, maxwin.y,\n            (maxwin.flags & 1) ? \" INTERLACE\" : \"\");\n    if(ioctl(vdo->fd, VIDIOCSWIN, &maxwin) < 0) {\n        zprintf(1, \"set FAILED...trying to recover original window\\n\");\n        /* ignore errors (driver broken anyway) */\n        ioctl(vdo->fd, VIDIOCSWIN, &vwin);\n    }\n\n    /* re-query resulting parameters */\n    memset(&vwin, 0, sizeof(vwin));\n    if(ioctl(vdo->fd, VIDIOCGWIN, &vwin) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"querying video window settings (VIDIOCGWIN)\"));\n\n    zprintf(1, \"    final window: %d x %d @(%d, %d)%s\\n\",\n            vwin.width, vwin.height, vwin.x, vwin.y,\n            (vwin.flags & 1) ? \" INTERLACE\" : \"\");\n    vdo->width = vwin.width;\n    vdo->height = vwin.height;\n    return(0);\n}\n\nint _zbar_v4l1_probe (zbar_video_t *vdo)\n{\n    /* check capabilities */\n    struct video_capability vcap;\n    memset(&vcap, 0, sizeof(vcap));\n    if(ioctl(vdo->fd, VIDIOCGCAP, &vcap) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, __func__,\n                           \"video4linux version 1 not supported (VIDIOCGCAP)\"));\n\n    zprintf(1, \"%s (%sCAPTURE) (%d x %d) - (%d x %d)\\n\",\n            vcap.name, (vcap.type & VID_TYPE_CAPTURE) ? \"\" : \"*NO* \",\n            vcap.minwidth, vcap.minheight, vcap.maxwidth, vcap.maxheight);\n\n    if(!(vcap.type & VID_TYPE_CAPTURE))\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, __func__,\n                           \"v4l1 device does not support CAPTURE\"));\n\n    if(!vdo->width || !vdo->height) {\n        vdo->width = vcap.maxwidth;\n        vdo->height = vcap.maxheight;\n    }\n\n    if(v4l1_init_window(vdo) ||\n       v4l1_probe_formats(vdo) ||\n       v4l1_probe_iomode(vdo))\n        return(-1);\n\n    vdo->intf = VIDEO_V4L1;\n    vdo->init = v4l1_init;\n    vdo->cleanup = v4l1_cleanup;\n    vdo->start = v4l1_start;\n    vdo->stop = v4l1_stop;\n    vdo->nq = v4l1_nq;\n    vdo->dq = v4l1_dq;\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/video/v4l2.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include <config.h>\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#ifdef HAVE_STDLIB_H\n# include <stdlib.h>\n#endif\n#include <string.h>\n#include <unistd.h>\n#include <errno.h>\n#include <assert.h>\n#ifdef HAVE_SYS_IOCTL_H\n# include <sys/ioctl.h>\n#endif\n#ifdef HAVE_SYS_MMAN_H\n# include <sys/mman.h>\n#endif\n#include <linux/videodev2.h>\n\n#include \"video.h\"\n#include \"image.h\"\n\n#define V4L2_FORMATS_MAX 64\n\nstatic int v4l2_nq (zbar_video_t *vdo,\n                    zbar_image_t *img)\n{\n    if(vdo->iomode == VIDEO_READWRITE)\n        return(video_nq_image(vdo, img));\n\n    if(video_unlock(vdo))\n        return(-1);\n\n    struct v4l2_buffer vbuf;\n    memset(&vbuf, 0, sizeof(vbuf));\n    vbuf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    if(vdo->iomode == VIDEO_MMAP) {\n        vbuf.memory = V4L2_MEMORY_MMAP;\n        vbuf.index = img->srcidx;\n    }\n    else {\n        vbuf.memory = V4L2_MEMORY_USERPTR;\n        vbuf.m.userptr = (unsigned long)img->data;\n        vbuf.length = img->datalen;\n        vbuf.index = img->srcidx; /* FIXME workaround broken drivers */\n    }\n    if(ioctl(vdo->fd, VIDIOC_QBUF, &vbuf) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"queuing video buffer (VIDIOC_QBUF)\"));\n    return(0);\n}\n\nstatic zbar_image_t *v4l2_dq (zbar_video_t *vdo)\n{\n    zbar_image_t *img;\n    int fd = vdo->fd;\n\n    if(vdo->iomode != VIDEO_READWRITE) {\n        video_iomode_t iomode = vdo->iomode;\n        if(video_unlock(vdo))\n            return(NULL);\n\n        struct v4l2_buffer vbuf;\n        memset(&vbuf, 0, sizeof(vbuf));\n        vbuf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n        if(iomode == VIDEO_MMAP)\n            vbuf.memory = V4L2_MEMORY_MMAP;\n        else\n            vbuf.memory = V4L2_MEMORY_USERPTR;\n\n        if(ioctl(fd, VIDIOC_DQBUF, &vbuf) < 0)\n            return(NULL);\n\n        if(iomode == VIDEO_MMAP) {\n            assert(vbuf.index >= 0);\n            assert(vbuf.index < vdo->num_images);\n            img = vdo->images[vbuf.index];\n        }\n        else {\n            /* reverse map pointer back to image (FIXME) */\n            assert(vbuf.m.userptr >= (unsigned long)vdo->buf);\n            assert(vbuf.m.userptr < (unsigned long)(vdo->buf + vdo->buflen));\n            int i = (vbuf.m.userptr - (unsigned long)vdo->buf) / vdo->datalen;\n            assert(i >= 0);\n            assert(i < vdo->num_images);\n            img = vdo->images[i];\n            assert(vbuf.m.userptr == (unsigned long)img->data);\n        }\n    }\n    else {\n        img = video_dq_image(vdo);\n        if(!img)\n            return(NULL);\n\n        /* FIXME should read entire image */\n        unsigned long datalen = read(fd, (void*)img->data, img->datalen);\n        if(datalen < 0)\n            return(NULL);\n        else if(datalen != img->datalen)\n            zprintf(0, \"WARNING: read() size mismatch: 0x%lx != 0x%lx\\n\",\n                    datalen, img->datalen);\n    }\n    return(img);\n}\n\nstatic int v4l2_start (zbar_video_t *vdo)\n{\n    if(vdo->iomode == VIDEO_READWRITE)\n        return(0);\n\n    enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    if(ioctl(vdo->fd, VIDIOC_STREAMON, &type) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"starting video stream (VIDIOC_STREAMON)\"));\n    return(0);\n}\n\nstatic int v4l2_stop (zbar_video_t *vdo)\n{\n    if(vdo->iomode == VIDEO_READWRITE)\n        return(0);\n\n    enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    if(ioctl(vdo->fd, VIDIOC_STREAMOFF, &type) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"stopping video stream (VIDIOC_STREAMOFF)\"));\n    return(0);\n}\n\nstatic int v4l2_cleanup (zbar_video_t *vdo)\n{\n    if(vdo->iomode == VIDEO_READWRITE)\n        return(0);\n\n    struct v4l2_requestbuffers rb;\n    memset(&rb, 0, sizeof(rb));\n    rb.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    if(vdo->iomode == VIDEO_MMAP) {\n        rb.memory = V4L2_MEMORY_MMAP;\n        int i;\n        for(i = 0; i < vdo->num_images; i++) {\n            zbar_image_t *img = vdo->images[i];\n            if(img->data &&\n               munmap((void*)img->data, img->datalen))\n                err_capture(vdo, SEV_WARNING, ZBAR_ERR_SYSTEM, __func__,\n                            \"unmapping video frame buffers\");\n            img->data = NULL;\n            img->datalen = 0;\n        }\n    }\n    else\n        rb.memory = V4L2_MEMORY_USERPTR;\n\n    /* requesting 0 buffers\n     * should implicitly disable streaming\n     */\n    if(ioctl(vdo->fd, VIDIOC_REQBUFS, &rb) < 0)\n        err_capture(vdo, SEV_WARNING, ZBAR_ERR_SYSTEM, __func__,\n                    \"releasing video frame buffers (VIDIOC_REQBUFS)\");\n\n\n    /* close open device */\n    if(vdo->fd >= 0) {\n        close(vdo->fd);\n        vdo->fd = -1;\n    }\n    return(0);\n}\n\nstatic int v4l2_mmap_buffers (zbar_video_t *vdo)\n{\n    struct v4l2_requestbuffers rb;\n    memset(&rb, 0, sizeof(rb));\n    rb.count = vdo->num_images;\n    rb.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    rb.memory = V4L2_MEMORY_MMAP;\n    if(ioctl(vdo->fd, VIDIOC_REQBUFS, &rb) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"requesting video frame buffers (VIDIOC_REQBUFS)\"));\n    zprintf(1, \"mapping %u buffers (of %d requested)\\n\",\n            rb.count, vdo->num_images);\n    if(!rb.count)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"driver returned 0 buffers\"));\n    if(vdo->num_images > rb.count)\n        vdo->num_images = rb.count;\n\n    struct v4l2_buffer vbuf;\n    memset(&vbuf, 0, sizeof(vbuf));\n    vbuf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    vbuf.memory = V4L2_MEMORY_MMAP;\n\n    int i;\n    for(i = 0; i < vdo->num_images; i++) {\n        vbuf.index = i;\n        if(ioctl(vdo->fd, VIDIOC_QUERYBUF, &vbuf) < 0)\n            /* FIXME cleanup */\n            return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                               \"querying video buffer (VIDIOC_QUERYBUF)\"));\n\n        if(vbuf.length < vdo->datalen)\n            fprintf(stderr, \"WARNING: insufficient v4l2 video buffer size:\\n\"\n                    \"\\tvbuf[%d].length=%x datalen=%lx image=%d x %d %.4s(%08x)\\n\",\n                    i, vbuf.length, vdo->datalen, vdo->width, vdo->height,\n                    (char*)&vdo->format, vdo->format);\n\n        zbar_image_t *img = vdo->images[i];\n        img->datalen = vbuf.length;\n        img->data = mmap(NULL, vbuf.length, PROT_READ | PROT_WRITE, MAP_SHARED,\n                         vdo->fd, vbuf.m.offset);\n        if(img->data == MAP_FAILED)\n            /* FIXME cleanup */\n            return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                               \"mapping video frame buffers\"));\n        zprintf(2, \"    buf[%d] 0x%lx bytes @%p\\n\",\n                i, img->datalen, img->data);\n    }\n    return(0);\n}\n\nstatic int v4l2_set_format (zbar_video_t *vdo,\n                            uint32_t fmt)\n{\n    struct v4l2_format vfmt;\n    struct v4l2_pix_format *vpix = &vfmt.fmt.pix;\n    memset(&vfmt, 0, sizeof(vfmt));\n    vfmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    vpix->width = vdo->width;\n    vpix->height = vdo->height;\n    vpix->pixelformat = fmt;\n    vpix->field = V4L2_FIELD_NONE;\n    int rc = 0;\n    if((rc = ioctl(vdo->fd, VIDIOC_S_FMT, &vfmt)) < 0) {\n        /* several broken drivers return an error if we request\n         * no interlacing (NB v4l2 spec violation)\n         * ...try again with an interlaced request\n         */\n        zprintf(1, \"VIDIOC_S_FMT returned %d(%d), trying interlaced...\\n\",\n                rc, errno);\n\n        /* FIXME this might be _ANY once we can de-interlace */\n        vpix->field = V4L2_FIELD_INTERLACED;\n\n        if(ioctl(vdo->fd, VIDIOC_S_FMT, &vfmt) < 0)\n            return(err_capture_int(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                                   \"setting format %x (VIDIOC_S_FMT)\", fmt));\n\n        zprintf(0, \"WARNING: broken driver returned error when non-interlaced\"\n                \" format requested\\n\");\n    }\n\n    struct v4l2_format newfmt;\n    struct v4l2_pix_format *newpix = &newfmt.fmt.pix;\n    memset(&newfmt, 0, sizeof(newfmt));\n    newfmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    if(ioctl(vdo->fd, VIDIOC_G_FMT, &newfmt) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"querying format (VIDIOC_G_FMT)\"));\n\n    if(newpix->field != V4L2_FIELD_NONE)\n        err_capture(vdo, SEV_WARNING, ZBAR_ERR_INVALID, __func__,\n                    \"video driver only supports interlaced format,\"\n                    \" vertical scanning may not work\");\n\n    if(newpix->pixelformat != fmt\n       /* FIXME bpl/bpp checks? */)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"video driver can't provide compatible format\"));\n\n    vdo->format = fmt;\n    vdo->width = newpix->width;\n    vdo->height = newpix->height;\n    vdo->datalen = newpix->sizeimage;\n\n    zprintf(1, \"set new format: %.4s(%08x) %u x %u (0x%lx)\\n\",\n            (char*)&vdo->format, vdo->format, vdo->width, vdo->height,\n            vdo->datalen);\n    return(0);\n}\n\nstatic int v4l2_init (zbar_video_t *vdo,\n                      uint32_t fmt)\n{\n    if(v4l2_set_format(vdo, fmt))\n        return(-1);\n    if(vdo->iomode == VIDEO_MMAP)\n        return(v4l2_mmap_buffers(vdo));\n    return(0);\n}\n\nstatic int v4l2_probe_iomode (zbar_video_t *vdo)\n{\n    struct v4l2_requestbuffers rb;\n    memset(&rb, 0, sizeof(rb));\n    rb.count = vdo->num_images; /* FIXME workaround broken drivers */\n    rb.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    if(vdo->iomode == VIDEO_MMAP)\n        rb.memory = V4L2_MEMORY_MMAP;\n    else\n        rb.memory = V4L2_MEMORY_USERPTR;\n\n    if(ioctl(vdo->fd, VIDIOC_REQBUFS, &rb) < 0) {\n        if(vdo->iomode)\n            return(err_capture_int(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                                   \"unsupported iomode requested (%d)\",\n                                   vdo->iomode));\n        else if(errno != EINVAL)\n            return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                               \"querying streaming mode (VIDIOC_REQBUFS)\"));\n#ifdef HAVE_SYS_MMAN_H\n        vdo->iomode = VIDEO_MMAP;\n#endif\n    }\n    else {\n        if(!vdo->iomode)\n            vdo->iomode = VIDEO_USERPTR;\n        if(rb.count)\n            vdo->num_images = rb.count;\n    }\n    return(0);\n}\n\nstatic inline int v4l2_probe_formats (zbar_video_t *vdo)\n{\n    zprintf(2, \"enumerating supported formats:\\n\");\n    struct v4l2_fmtdesc desc;\n    memset(&desc, 0, sizeof(desc));\n    desc.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    for(desc.index = 0; desc.index < V4L2_FORMATS_MAX; desc.index++) {\n        if(ioctl(vdo->fd, VIDIOC_ENUM_FMT, &desc) < 0)\n            break;\n        zprintf(2, \"    [%d] %.4s : %s%s\\n\",\n                desc.index, (char*)&desc.pixelformat, desc.description,\n                (desc.flags & V4L2_FMT_FLAG_COMPRESSED) ? \" COMPRESSED\" : \"\");\n        vdo->formats = realloc(vdo->formats,\n                               (desc.index + 2) * sizeof(uint32_t));\n        vdo->formats[desc.index] = desc.pixelformat;\n    }\n    if(!desc.index)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"enumerating video formats (VIDIOC_ENUM_FMT)\"));\n    vdo->formats[desc.index] = 0;\n\n    struct v4l2_format fmt;\n    struct v4l2_pix_format *pix = &fmt.fmt.pix;\n    memset(&fmt, 0, sizeof(fmt));\n    fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    if(ioctl(vdo->fd, VIDIOC_G_FMT, &fmt) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"querying current video format (VIDIO_G_FMT)\"));\n\n    zprintf(1, \"current format: %.4s(%08x) %u x %u%s (line=0x%x size=0x%x)\\n\",\n            (char*)&pix->pixelformat, pix->pixelformat,\n            pix->width, pix->height,\n            (pix->field != V4L2_FIELD_NONE) ? \" INTERLACED\" : \"\",\n            pix->bytesperline, pix->sizeimage);\n\n    vdo->format = pix->pixelformat;\n    vdo->datalen = pix->sizeimage;\n    if(pix->width == vdo->width && pix->height == vdo->height)\n        return(0);\n\n    struct v4l2_format maxfmt;\n    struct v4l2_pix_format *maxpix = &maxfmt.fmt.pix;\n    memcpy(&maxfmt, &fmt, sizeof(maxfmt));\n    maxpix->width = vdo->width;\n    maxpix->height = vdo->height;\n\n    zprintf(1, \"setting requested size: %d x %d\\n\", vdo->width, vdo->height);\n    if(ioctl(vdo->fd, VIDIOC_S_FMT, &maxfmt) < 0) {\n        zprintf(1, \"set FAILED...trying to recover original format\\n\");\n        /* ignore errors (driver broken anyway) */\n        ioctl(vdo->fd, VIDIOC_S_FMT, &fmt);\n    }\n\n    memset(&fmt, 0, sizeof(fmt));\n    fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    if(ioctl(vdo->fd, VIDIOC_G_FMT, &fmt) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"querying current video format (VIDIOC_G_FMT)\"));\n\n    zprintf(1, \"final format: %.4s(%08x) %u x %u%s (line=0x%x size=0x%x)\\n\",\n            (char*)&pix->pixelformat, pix->pixelformat,\n            pix->width, pix->height,\n            (pix->field != V4L2_FIELD_NONE) ? \" INTERLACED\" : \"\",\n            pix->bytesperline, pix->sizeimage);\n\n    vdo->width = pix->width;\n    vdo->height = pix->height;\n    vdo->datalen = pix->sizeimage;\n    return(0);\n}\n\nstatic inline int v4l2_reset_crop (zbar_video_t *vdo)\n{\n    /* check cropping */\n    struct v4l2_cropcap ccap;\n    memset(&ccap, 0, sizeof(ccap));\n    ccap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    if(ioctl(vdo->fd, VIDIOC_CROPCAP, &ccap) < 0)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"querying crop support (VIDIOC_CROPCAP)\"));\n\n    zprintf(1, \"crop bounds: %d x %d @ (%d, %d)\\n\",\n            ccap.bounds.width, ccap.bounds.height,\n            ccap.bounds.left, ccap.bounds.top);\n    zprintf(1, \"current crop win: %d x %d @ (%d, %d) aspect %d / %d\\n\",\n            ccap.defrect.width, ccap.defrect.height,\n            ccap.defrect.left, ccap.defrect.top,\n            ccap.pixelaspect.numerator, ccap.pixelaspect.denominator);\n\n    if(!vdo->width || !vdo->height) {\n        vdo->width = ccap.defrect.width;\n        vdo->height = ccap.defrect.height;\n    }\n\n    /* reset crop parameters */\n    struct v4l2_crop crop;\n    memset(&crop, 0, sizeof(crop));\n    crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;\n    crop.c = ccap.defrect;\n    if(ioctl(vdo->fd, VIDIOC_S_CROP, &crop) < 0 && errno != EINVAL)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_SYSTEM, __func__,\n                           \"setting default crop window (VIDIOC_S_CROP)\"));\n    return(0);\n}\n\nint _zbar_v4l2_probe (zbar_video_t *vdo)\n{\n    /* check capabilities */\n    struct v4l2_capability vcap;\n    memset(&vcap, 0, sizeof(vcap));\n    if(ioctl(vdo->fd, VIDIOC_QUERYCAP, &vcap) < 0)\n        return(err_capture(vdo, SEV_WARNING, ZBAR_ERR_UNSUPPORTED, __func__,\n                           \"video4linux version 2 not supported (VIDIOC_QUERYCAP)\"));\n\n    \n    zprintf(1, \"%.32s on %.32s driver %.16s (version %u.%u.%u)\\n\", vcap.card,\n            (vcap.bus_info[0]) ? (char*)vcap.bus_info : \"<unknown>\",\n            vcap.driver, (vcap.version >> 16) & 0xff,\n            (vcap.version >> 8) & 0xff, vcap.version & 0xff);\n    zprintf(1, \"    capabilities:%s%s%s%s\\n\",\n            (vcap.capabilities & V4L2_CAP_VIDEO_CAPTURE) ? \" CAPTURE\" : \"\",\n            (vcap.capabilities & V4L2_CAP_VIDEO_OVERLAY) ? \" OVERLAY\" : \"\",\n            (vcap.capabilities & V4L2_CAP_READWRITE) ? \" READWRITE\" : \"\",\n            (vcap.capabilities & V4L2_CAP_STREAMING) ? \" STREAMING\" : \"\");\n\n    if(!(vcap.capabilities & V4L2_CAP_VIDEO_CAPTURE) ||\n       !(vcap.capabilities & (V4L2_CAP_READWRITE | V4L2_CAP_STREAMING)))\n        return(err_capture(vdo, SEV_WARNING, ZBAR_ERR_UNSUPPORTED, __func__,\n                           \"v4l2 device does not support usable CAPTURE\"));\n\n    if(v4l2_reset_crop(vdo))\n        /* ignoring errors (driver cropping support questionable) */;\n\n    if(!vdo->width || !vdo->height) {\n        /* fallback to large size, driver reduces to max available */\n        vdo->width = 640 * 64;\n        vdo->height = 480 * 64;\n    }\n\n    if(v4l2_probe_formats(vdo))\n        return(-1);\n\n    /* FIXME report error and fallback to readwrite? (if supported...) */\n    if(vdo->iomode != VIDEO_READWRITE &&\n       (vcap.capabilities & V4L2_CAP_STREAMING) &&\n       v4l2_probe_iomode(vdo))\n        return(-1);\n    if(!vdo->iomode)\n        vdo->iomode = VIDEO_READWRITE;\n\n    zprintf(1, \"using I/O mode: %s\\n\",\n            (vdo->iomode == VIDEO_READWRITE) ? \"READWRITE\" :\n            (vdo->iomode == VIDEO_MMAP) ? \"MMAP\" :\n            (vdo->iomode == VIDEO_USERPTR) ? \"USERPTR\" : \"<UNKNOWN>\");\n\n    vdo->intf = VIDEO_V4L2;\n    vdo->init = v4l2_init;\n    vdo->cleanup = v4l2_cleanup;\n    vdo->start = v4l2_start;\n    vdo->stop = v4l2_stop;\n    vdo->nq = v4l2_nq;\n    vdo->dq = v4l2_dq;\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/video/vfw.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"video.h\"\n#include \"thread.h\"\n#include <vfw.h>\n\n#include <assert.h>\n\n#define MAX_DRIVERS 10\n#define MAX_NAME 128\n\n#define BIH_FMT \"%ldx%ld @%dbpp (%lx) cmp=%.4s(%08lx) res=%ldx%ld clr=%ld/%ld (%lx)\"\n#define BIH_FIELDS(bih)                                                 \\\n    (bih)->biWidth, (bih)->biHeight, (bih)->biBitCount, (bih)->biSizeImage, \\\n        (char*)&(bih)->biCompression, (bih)->biCompression,             \\\n        (bih)->biXPelsPerMeter, (bih)->biYPelsPerMeter,                 \\\n        (bih)->biClrImportant, (bih)->biClrUsed, (bih)->biSize\n\nstruct video_state_s {\n    zbar_thread_t thread;       /* capture message pump */\n    HANDLE captured;\n    HWND hwnd;                  /* vfw interface */\n    HANDLE notify;              /* capture thread status change */\n    int bi_size;                /* size of bih */\n    BITMAPINFOHEADER *bih;      /* video format details */\n    zbar_image_t *image;        /* currently capturing frame */\n};\n\nstatic const uint32_t vfw_formats[] = {\n    /* planar YUV formats */\n    fourcc('I','4','2','0'),\n    /* FIXME YU12 is IYUV in windows */\n    fourcc('Y','V','1','2'),\n    /* FIXME IMC[1-4]? */\n\n    /* planar Y + packed UV plane */\n    fourcc('N','V','1','2'),\n\n    /* packed YUV formats */\n    fourcc('U','Y','V','Y'),\n    fourcc('Y','U','Y','2'), /* FIXME add YVYU */\n    /* FIXME AYUV? Y411? Y41P? */\n\n    /* packed rgb formats */\n    fourcc('B','G','R','3'),\n    fourcc('B','G','R','4'),\n\n    fourcc('Y','V','U','9'),\n\n    /* basic grayscale format */\n    fourcc('G','R','E','Y'),\n    fourcc('Y','8','0','0'),\n\n    /* compressed formats */\n    fourcc('J','P','E','G'),\n\n    /* terminator */\n    0\n};\n\n#define VFW_NUM_FORMATS (sizeof(vfw_formats) / sizeof(uint32_t))\n\nstatic ZTHREAD vfw_capture_thread (void *arg)\n{\n    zbar_video_t *vdo = arg;\n    video_state_t *state = vdo->state;\n    zbar_thread_t *thr = &state->thread;\n\n    state->hwnd = capCreateCaptureWindow(NULL, WS_POPUP, 0, 0, 1, 1, NULL, 0);\n    if(!state->hwnd)\n        goto done;\n\n    _zbar_mutex_lock(&vdo->qlock);\n    _zbar_thread_init(thr);\n    zprintf(4, \"spawned vfw capture thread (thr=%04lx)\\n\",\n            _zbar_thread_self());\n\n    MSG msg;\n    int rc = 0;\n    while(thr->started && rc >= 0 && rc <= 1) {\n        _zbar_mutex_unlock(&vdo->qlock);\n\n        rc = MsgWaitForMultipleObjects(1, &thr->notify, 0,\n                                       INFINITE, QS_ALLINPUT);\n        if(rc == 1)\n            while(PeekMessage(&msg, NULL, 0, 0, PM_NOYIELD | PM_REMOVE))\n                if(rc > 0) {\n                    TranslateMessage(&msg);\n                    DispatchMessage(&msg);\n                }\n\n        _zbar_mutex_lock(&vdo->qlock);\n    }\n\n done:\n    thr->running = 0;\n    _zbar_event_trigger(&thr->activity);\n    _zbar_mutex_unlock(&vdo->qlock);\n    return(0);\n}\n\nstatic LRESULT CALLBACK vfw_stream_cb (HWND hwnd,\n                                       VIDEOHDR *hdr)\n{\n    if(!hwnd || !hdr)\n        return(0);\n    zbar_video_t *vdo = (void*)capGetUserData(hwnd);\n\n    _zbar_mutex_lock(&vdo->qlock);\n    zbar_image_t *img = vdo->state->image;\n    if(!img) {\n        _zbar_mutex_lock(&vdo->qlock);\n        img = video_dq_image(vdo);\n    }\n    if(img) {\n        img->data = hdr->lpData;\n        img->datalen = hdr->dwBufferLength;\n        vdo->state->image = img;\n        SetEvent(vdo->state->captured);\n    }\n    _zbar_mutex_unlock(&vdo->qlock);\n\n    return(1);\n}\n\nstatic LRESULT CALLBACK vfw_error_cb (HWND hwnd,\n                                      int errid,\n                                      const char *errmsg)\n{\n    if(!hwnd)\n        return(0);\n    zbar_video_t *vdo = (void*)capGetUserData(hwnd);\n    zprintf(2, \"id=%d msg=%s\\n\", errid, errmsg);\n    _zbar_mutex_lock(&vdo->qlock);\n    vdo->state->image = NULL;\n    SetEvent(vdo->state->captured);\n    _zbar_mutex_unlock(&vdo->qlock);\n    return(1);\n}\n\nstatic int vfw_nq (zbar_video_t *vdo,\n                   zbar_image_t *img)\n{\n    img->data = NULL;\n    img->datalen = 0;\n    return(video_nq_image(vdo, img));\n}\n\nstatic zbar_image_t *vfw_dq (zbar_video_t *vdo)\n{\n    zbar_image_t *img = vdo->state->image;\n    if(!img) {\n        _zbar_mutex_unlock(&vdo->qlock);\n        int rc = WaitForSingleObject(vdo->state->captured, INFINITE);\n        _zbar_mutex_lock(&vdo->qlock);\n        if(!rc)\n            img = vdo->state->image;\n        else\n            img = NULL;\n        /*FIXME handle errors? */\n    }\n    else\n        ResetEvent(vdo->state->captured);\n    if(img)\n        vdo->state->image = NULL;\n\n    video_unlock(vdo);\n    return(img);\n}\n\nstatic int vfw_start (zbar_video_t *vdo)\n{\n    ResetEvent(vdo->state->captured);\n\n    if(!capCaptureSequenceNoFile(vdo->state->hwnd))\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"starting video stream\"));\n    return(0);\n}\n\nstatic int vfw_stop (zbar_video_t *vdo)\n{\n    video_state_t *state = vdo->state;\n    if(!capCaptureAbort(state->hwnd))\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"stopping video stream\"));\n\n    _zbar_mutex_lock(&vdo->qlock);\n    if(state->image)\n        state->image = NULL;\n    SetEvent(state->captured);\n    _zbar_mutex_unlock(&vdo->qlock);\n    return(0);\n}\n\nstatic int vfw_set_format (zbar_video_t *vdo,\n                           uint32_t fmt)\n{\n    const zbar_format_def_t *fmtdef = _zbar_format_lookup(fmt);\n    if(!fmtdef->format)\n        return(err_capture_int(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                               \"unsupported vfw format: %x\", fmt));\n\n    BITMAPINFOHEADER *bih = vdo->state->bih;\n    assert(bih);\n    bih->biWidth = vdo->width;\n    bih->biHeight = vdo->height;\n    switch(fmtdef->group) {\n    case ZBAR_FMT_GRAY:\n        bih->biBitCount = 8;\n        break;\n    case ZBAR_FMT_YUV_PLANAR:\n    case ZBAR_FMT_YUV_PACKED:\n    case ZBAR_FMT_YUV_NV:\n        bih->biBitCount = 8 + (16 >> (fmtdef->p.yuv.xsub2 + fmtdef->p.yuv.ysub2));\n        break;\n    case ZBAR_FMT_RGB_PACKED:\n        bih->biBitCount = fmtdef->p.rgb.bpp * 8;\n        break;\n    default:\n        bih->biBitCount = 0;\n    }\n    bih->biClrUsed = bih->biClrImportant = 0;\n    bih->biCompression = fmt;\n\n    zprintf(8, \"seting format: %.4s(%08x) \" BIH_FMT \"\\n\",\n            (char*)&fmt, fmt, BIH_FIELDS(bih));\n\n    if(!capSetVideoFormat(vdo->state->hwnd, bih, vdo->state->bi_size))\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"setting video format\"));\n\n    if(!capGetVideoFormat(vdo->state->hwnd, bih, vdo->state->bi_size))\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"getting video format\"));\n\n    if(bih->biCompression != fmt)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"video format set ignored\"));\n\n    vdo->format = fmt;\n    vdo->width = bih->biWidth;\n    vdo->height = bih->biHeight;\n    vdo->datalen = bih->biSizeImage;\n\n    zprintf(4, \"set new format: %.4s(%08x) \" BIH_FMT \"\\n\",\n            (char*)&fmt, fmt, BIH_FIELDS(bih));\n    return(0);\n}\n\nstatic int vfw_init (zbar_video_t *vdo,\n                     uint32_t fmt)\n{\n    if(vfw_set_format(vdo, fmt))\n        return(-1);\n\n    HWND hwnd = vdo->state->hwnd;\n    CAPTUREPARMS cp;\n    if(!capCaptureGetSetup(hwnd, &cp, sizeof(cp)))\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_WINAPI, __func__,\n                           \"retrieving capture parameters\"));\n\n    cp.dwRequestMicroSecPerFrame = 33333;\n    cp.fMakeUserHitOKToCapture = 0;\n    cp.wPercentDropForError = 90;\n    cp.fYield = 1;\n    cp.wNumVideoRequested = vdo->num_images;\n    cp.fCaptureAudio = 0;\n    cp.vKeyAbort = 0;\n    cp.fAbortLeftMouse = 0;\n    cp.fAbortRightMouse = 0;\n    cp.fLimitEnabled = 0;\n\n    if(!capCaptureSetSetup(hwnd, &cp, sizeof(cp)))\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_WINAPI, __func__,\n                           \"setting capture parameters\"));\n\n    if(!capCaptureGetSetup(hwnd, &cp, sizeof(cp)))\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_WINAPI, __func__,\n                           \"checking capture parameters\"));\n\n    /* ignore errors since we skipped checking fHasOverlay */\n    capOverlay(hwnd, 0);\n\n    if(!capPreview(hwnd, 0) ||\n       !capPreviewScale(hwnd, 0))\n        err_capture(vdo, SEV_WARNING, ZBAR_ERR_WINAPI, __func__,\n                    \"disabling preview\");\n\n    if(!capSetCallbackOnVideoStream(hwnd, vfw_stream_cb) ||\n       !capSetCallbackOnError(hwnd, vfw_error_cb))\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_BUSY, __func__,\n                           \"setting capture callbacks\"));\n\n    vdo->num_images = cp.wNumVideoRequested;\n    vdo->iomode = VIDEO_MMAP; /* driver provides \"locked\" buffers */\n\n    zprintf(3, \"initialized video capture: %d buffers %ldms/frame\\n\",\n            vdo->num_images, cp.dwRequestMicroSecPerFrame);\n\n    return(0);\n}\n\nstatic int vfw_cleanup (zbar_video_t *vdo)\n{\n    /* close open device */\n    video_state_t *state = vdo->state;\n    /* NB this has to go here so the thread can pump messages during cleanup */\n    capDriverDisconnect(state->hwnd);\n    DestroyWindow(state->hwnd);\n    state->hwnd = NULL;\n    _zbar_thread_stop(&state->thread, &vdo->qlock);\n\n    if(state->captured) {\n        CloseHandle(state->captured);\n        state->captured = NULL;\n    }\n    return(0);\n}\n\nstatic int vfw_probe_format (zbar_video_t *vdo,\n                             uint32_t fmt)\n{\n    const zbar_format_def_t *fmtdef = _zbar_format_lookup(fmt);\n    if(!fmtdef)\n        return(0);\n\n    zprintf(4, \"    trying %.4s(%08x)...\\n\", (char*)&fmt, fmt);\n    BITMAPINFOHEADER *bih = vdo->state->bih;\n    bih->biWidth = vdo->width;\n    bih->biHeight = vdo->height;\n    switch(fmtdef->group) {\n    case ZBAR_FMT_GRAY:\n        bih->biBitCount = 8;\n        break;\n    case ZBAR_FMT_YUV_PLANAR:\n    case ZBAR_FMT_YUV_PACKED:\n    case ZBAR_FMT_YUV_NV:\n        bih->biBitCount = 8 + (16 >> (fmtdef->p.yuv.xsub2 + fmtdef->p.yuv.ysub2));\n        break;\n    case ZBAR_FMT_RGB_PACKED:\n        bih->biBitCount = fmtdef->p.rgb.bpp * 8;\n        break;\n    default:\n        bih->biBitCount = 0;\n    }\n    bih->biCompression = fmt;\n\n    if(!capSetVideoFormat(vdo->state->hwnd, bih, vdo->state->bi_size)) {\n        zprintf(4, \"\\tno (set fails)\\n\");\n        return(0);\n    }\n\n    if(!capGetVideoFormat(vdo->state->hwnd, bih, vdo->state->bi_size))\n        return(0/*FIXME error...*/);\n\n    zprintf(6, \"\\tactual: \" BIH_FMT \"\\n\", BIH_FIELDS(bih));\n\n    if(bih->biCompression != fmt) {\n        zprintf(4, \"\\tno (set ignored)\\n\");\n        return(0);\n    }\n\n    zprintf(4, \"\\tyes\\n\");\n    return(1);\n}\n\nstatic int vfw_probe (zbar_video_t *vdo)\n{\n    video_state_t *state = vdo->state;\n    state->bi_size = capGetVideoFormatSize(state->hwnd);\n    BITMAPINFOHEADER *bih = state->bih = realloc(state->bih, state->bi_size);\n    /* FIXME check OOM */\n\n    if(!capSetUserData(state->hwnd, (LONG)vdo) ||\n       !state->bi_size || !bih ||\n       !capGetVideoFormat(state->hwnd, bih, state->bi_size))\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"setting up video capture\"));\n\n    zprintf(3, \"initial format: \" BIH_FMT \" (bisz=%x)\\n\",\n            BIH_FIELDS(bih), state->bi_size);\n\n    if(!vdo->width || !vdo->height) {\n        vdo->width = bih->biWidth;\n        vdo->height = bih->biHeight;\n    }\n    vdo->datalen = bih->biSizeImage;\n\n    zprintf(2, \"probing supported formats:\\n\");\n    vdo->formats = calloc(VFW_NUM_FORMATS, sizeof(uint32_t));\n\n    int n = 0;\n    const uint32_t *fmt;\n    for(fmt = vfw_formats; *fmt; fmt++)\n        if(vfw_probe_format(vdo, *fmt))\n            vdo->formats[n++] = *fmt;\n\n    vdo->formats = realloc(vdo->formats, (n + 1) * sizeof(uint32_t));\n\n    vdo->width = bih->biWidth;\n    vdo->height = bih->biHeight;\n    vdo->intf = VIDEO_VFW;\n    vdo->init = vfw_init;\n    vdo->start = vfw_start;\n    vdo->stop = vfw_stop;\n    vdo->cleanup = vfw_cleanup;\n    vdo->nq = vfw_nq;\n    vdo->dq = vfw_dq;\n    return(0);\n}\n\nint _zbar_video_open (zbar_video_t *vdo,\n                      const char *dev)\n{\n    video_state_t *state = vdo->state;\n    if(!state)\n        state = vdo->state = calloc(1, sizeof(video_state_t));\n\n    int reqid = -1;\n    if((!strncmp(dev, \"/dev/video\", 10) ||\n        !strncmp(dev, \"\\\\dev\\\\video\", 10)) &&\n       dev[10] >= '0' && dev[10] <= '9' && !dev[11])\n        reqid = dev[10] - '0';\n    else if(strlen(dev) == 1 &&\n            dev[0] >= '0' && dev[0] <= '9')\n        reqid = dev[0] - '0';\n\n    zprintf(6, \"searching for camera: %s (%d)\\n\", dev, reqid);\n    char name[MAX_NAME], desc[MAX_NAME];\n    int devid;\n    for(devid = 0; devid < MAX_DRIVERS; devid++) {\n        if(!capGetDriverDescription(devid, name, MAX_NAME, desc, MAX_NAME)) {\n            /* FIXME TBD error */\n            zprintf(6, \"    [%d] not found...\\n\", devid);\n            continue;\n        }\n        zprintf(6, \"    [%d] %.100s - %.100s\\n\", devid, name, desc);\n        if((reqid >= 0)\n           ? devid == reqid\n           : !strncmp(dev, name, MAX_NAME))\n            break;\n    }\n    if(devid >= MAX_DRIVERS)\n        return(err_capture_str(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                               \"video device not found '%s'\", dev));\n\n    if(!state->captured)\n        state->captured = CreateEvent(NULL, 0, 0, NULL);\n    else\n        ResetEvent(state->captured);\n\n    if(_zbar_thread_start(&state->thread, vfw_capture_thread, vdo, NULL))\n        return(-1);\n\n    /* FIXME error */\n    assert(state->hwnd);\n\n    if(!capDriverConnect(state->hwnd, devid)) {\n        _zbar_thread_stop(&state->thread, NULL);\n        return(err_capture_str(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                               \"failed to connect to camera '%s'\", dev));\n    }\n\n    zprintf(1, \"opened camera: %.60s (%d) (thr=%04lx)\\n\",\n            name, devid, _zbar_thread_self());\n\n    if(vfw_probe(vdo)) {\n        _zbar_thread_stop(&state->thread, NULL);\n        return(-1);\n    }\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/video.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"video.h\"\n#include \"image.h\"\n\n\n#ifdef HAVE_LIBJPEG\nextern struct jpeg_decompress_struct *_zbar_jpeg_decomp_create(void);\nextern void _zbar_jpeg_decomp_destroy(struct jpeg_decompress_struct *cinfo);\n#endif\n\nstatic void _zbar_video_recycle_image (zbar_image_t *img)\n{\n    zbar_video_t *vdo = img->src;\n    assert(vdo);\n    assert(img->srcidx >= 0);\n    video_lock(vdo);\n    if(vdo->images[img->srcidx] != img)\n        vdo->images[img->srcidx] = img;\n    if(vdo->active)\n        vdo->nq(vdo, img);\n    else\n        video_unlock(vdo);\n}\n\nstatic void _zbar_video_recycle_shadow (zbar_image_t *img)\n{\n    zbar_video_t *vdo = img->src;\n    assert(vdo);\n    assert(img->srcidx == -1);\n    video_lock(vdo);\n    img->next = vdo->shadow_image;\n    vdo->shadow_image = img;\n    video_unlock(vdo);\n}\n\nzbar_video_t *zbar_video_create ()\n{\n    zbar_video_t *vdo = calloc(1, sizeof(zbar_video_t));\n    int i;\n    if(!vdo)\n        return(NULL);\n    err_init(&vdo->err, ZBAR_MOD_VIDEO);\n    vdo->fd = -1;\n\n    (void)_zbar_mutex_init(&vdo->qlock);\n\n    /* pre-allocate images */\n    vdo->num_images = ZBAR_VIDEO_IMAGES_MAX;\n    vdo->images = calloc(ZBAR_VIDEO_IMAGES_MAX, sizeof(zbar_image_t*));\n    if(!vdo->images) {\n        zbar_video_destroy(vdo);\n        return(NULL);\n    }\n\n    for(i = 0; i < ZBAR_VIDEO_IMAGES_MAX; i++) {\n        zbar_image_t *img = vdo->images[i] = zbar_image_create();\n        if(!img) {\n            zbar_video_destroy(vdo);\n            return(NULL);\n        }\n        img->refcnt = 0;\n        img->cleanup = _zbar_video_recycle_image;\n        img->srcidx = i;\n        img->src = vdo;\n    }\n\n    return(vdo);\n}\n\nvoid zbar_video_destroy (zbar_video_t *vdo)\n{\n    if(vdo->intf != VIDEO_INVALID)\n        zbar_video_open(vdo, NULL);\n    if(vdo->images) {\n        int i;\n        for(i = 0; i < ZBAR_VIDEO_IMAGES_MAX; i++)\n            if(vdo->images[i])\n                _zbar_image_free(vdo->images[i]);\n        free(vdo->images);\n    }\n    while(vdo->shadow_image) {\n        zbar_image_t *img = vdo->shadow_image;\n        vdo->shadow_image = img->next;\n        free((void*)img->data);\n        img->data = NULL;\n        free(img);\n    }\n    if(vdo->buf)\n        free(vdo->buf);\n    if(vdo->formats)\n        free(vdo->formats);\n    err_cleanup(&vdo->err);\n    _zbar_mutex_destroy(&vdo->qlock);\n\n#ifdef HAVE_LIBJPEG\n    if(vdo->jpeg_img) {\n        zbar_image_destroy(vdo->jpeg_img);\n        vdo->jpeg_img = NULL;\n    }\n    if(vdo->jpeg) {\n        _zbar_jpeg_decomp_destroy(vdo->jpeg);\n        vdo->jpeg = NULL;\n    }\n#endif\n    free(vdo);\n}\n\nint zbar_video_open (zbar_video_t *vdo,\n                     const char *dev)\n{\n    char *ldev = NULL;\n    int rc;\n    zbar_video_enable(vdo, 0);\n    video_lock(vdo);\n    if(vdo->intf != VIDEO_INVALID) {\n        if(vdo->cleanup) {\n            vdo->cleanup(vdo);\n            vdo->cleanup = NULL;\n        }\n        zprintf(1, \"closed camera (fd=%d)\\n\", vdo->fd);\n        vdo->intf = VIDEO_INVALID;\n    }\n    video_unlock(vdo);\n\n    if(!dev)\n        return(0);\n\n    if((unsigned char)dev[0] < 0x10) {\n        /* default linux device, overloaded for other platforms */\n        int id = dev[0];\n        dev = ldev = strdup(\"/dev/video0\");\n        ldev[10] = '0' + id;\n    }\n\n    rc = _zbar_video_open(vdo, dev);\n\n    if(ldev)\n        free(ldev);\n    return(rc);\n}\n\nint zbar_video_get_fd (const zbar_video_t *vdo)\n{\n    if(vdo->intf == VIDEO_INVALID)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"video device not opened\"));\n    if(vdo->intf != VIDEO_V4L2)\n        return(err_capture(vdo, SEV_WARNING, ZBAR_ERR_UNSUPPORTED, __func__,\n                           \"video driver does not support polling\"));\n    return(vdo->fd);\n}\n\nint zbar_video_request_size (zbar_video_t *vdo,\n                             unsigned width,\n                             unsigned height)\n{\n    if(vdo->initialized)\n        /* FIXME re-init different format? */\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"already initialized, unable to resize\"));\n\n    vdo->width = width;\n    vdo->height = height;\n    zprintf(1, \"request size: %d x %d\\n\", width, height);\n    return(0);\n}\n\nint zbar_video_request_interface (zbar_video_t *vdo,\n                                  int ver)\n{\n    if(vdo->intf != VIDEO_INVALID)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                         \"device already opened, unable to change interface\"));\n    vdo->intf = (video_interface_t)ver;\n    zprintf(1, \"request interface version %d\\n\", vdo->intf);\n    return(0);\n}\n\nint zbar_video_request_iomode (zbar_video_t *vdo,\n                               int iomode)\n{\n    if(vdo->intf != VIDEO_INVALID)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                         \"device already opened, unable to change iomode\"));\n    if(iomode < 0 || iomode > VIDEO_USERPTR)\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                         \"invalid iomode requested\"));\n    vdo->iomode = iomode;\n    return(0);\n}\n\nint zbar_video_get_width (const zbar_video_t *vdo)\n{\n    return(vdo->width);\n}\n\nint zbar_video_get_height (const zbar_video_t *vdo)\n{\n    return(vdo->height);\n}\n\nuint32_t zbar_video_get_format (const zbar_video_t *vdo)\n{\n    return(vdo->format);\n}\n\nstatic inline int video_init_images (zbar_video_t *vdo)\n{\n    int i;\n    assert(vdo->datalen);\n    if(vdo->iomode != VIDEO_MMAP) {\n        assert(!vdo->buf);\n        vdo->buflen = vdo->num_images * vdo->datalen;\n        vdo->buf = calloc(1, vdo->buflen);\n        if(!vdo->buf)\n            return(err_capture(vdo, SEV_FATAL, ZBAR_ERR_NOMEM, __func__,\n                               \"unable to allocate image buffers\"));\n        zprintf(1, \"pre-allocated %d %s buffers size=0x%lx\\n\", vdo->num_images,\n                (vdo->iomode == VIDEO_READWRITE) ? \"READ\" : \"USERPTR\",\n                vdo->buflen);\n    }\n    for(i = 0; i < vdo->num_images; i++) {\n        zbar_image_t *img = vdo->images[i];\n        img->format = vdo->format;\n        zbar_image_set_size(img, vdo->width, vdo->height);\n        if(vdo->iomode != VIDEO_MMAP) {\n            unsigned long offset = i * vdo->datalen;\n            img->datalen = vdo->datalen;\n            img->data = (uint8_t*)vdo->buf + offset;\n            zprintf(2, \"    [%02d] @%08lx\\n\", i, offset);\n        }\n    }\n    return(0);\n}\n\nint zbar_video_init (zbar_video_t *vdo,\n                     unsigned long fmt)\n{\n#ifdef HAVE_LIBJPEG\n    const zbar_format_def_t *vidfmt;\n#endif\n    if(vdo->initialized)\n        /* FIXME re-init different format? */\n        return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"already initialized, re-init unimplemented\"));\n\n    if(vdo->init(vdo, fmt))\n        return(-1);\n    vdo->format = fmt;\n    if(video_init_images(vdo))\n        return(-1);\n#ifdef HAVE_LIBJPEG\n    vidfmt = _zbar_format_lookup(fmt);\n    if(vidfmt && vidfmt->group == ZBAR_FMT_JPEG) {\n        zbar_image_t *img;\n        /* prepare for decoding */\n        if(!vdo->jpeg)\n            vdo->jpeg = _zbar_jpeg_decomp_create();\n        if(vdo->jpeg_img)\n            zbar_image_destroy(vdo->jpeg_img);\n\n        /* create intermediate image for decoder to use*/\n        img = vdo->jpeg_img = zbar_image_create();\n        img->format = fourcc('Y','8','0','0');\n        zbar_image_set_size(img, vdo->width, vdo->height);\n        img->datalen = vdo->width * vdo->height;\n    }\n#endif\n    vdo->initialized = 1;\n    return(0);\n}\n\nint zbar_video_enable (zbar_video_t *vdo,\n                       int enable)\n{\n    if(vdo->active == enable)\n        return(0);\n\n    if(enable) {\n        if(vdo->intf == VIDEO_INVALID)\n            return(err_capture(vdo, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                               \"video device not opened\"));\n\n        if(!vdo->initialized &&\n           zbar_negotiate_format(vdo, NULL))\n            return(-1);\n    }\n\n    if(video_lock(vdo))\n        return(-1);\n    vdo->active = enable;\n    if(enable) {\n        /* enqueue all buffers */\n        int i;\n        for(i = 0; i < vdo->num_images; i++)\n            if(vdo->nq(vdo, vdo->images[i]) ||\n               ((i + 1 < vdo->num_images) && video_lock(vdo)))\n                return(-1);\n        \n        return(vdo->start(vdo));\n    }\n    else {\n        int i;\n        for(i = 0; i < vdo->num_images; i++)\n            vdo->images[i]->next = NULL;\n        vdo->nq_image = vdo->dq_image = NULL;\n        if(video_unlock(vdo))\n            return(-1);\n\n        return(vdo->stop(vdo));\n    }\n}\n\nzbar_image_t *zbar_video_next_image (zbar_video_t *vdo)\n{\n    unsigned frame;\n    zbar_image_t *img;\n\n    if(video_lock(vdo))\n        return(NULL);\n    if(!vdo->active) {\n        video_unlock(vdo);\n        return(NULL);\n    }\n\n    frame = vdo->frame++;\n    img = vdo->dq(vdo);\n    if(img) {\n        img->seq = frame;\n        if(vdo->num_images < 2) {\n            /* return a *copy* of the video image and immediately recycle\n             * the driver's buffer to avoid deadlocking the resources\n             */\n            zbar_image_t *tmp = img;\n            video_lock(vdo);\n            img = vdo->shadow_image;\n            vdo->shadow_image = (img) ? img->next : NULL;\n            video_unlock(vdo);\n                \n            if(!img) {\n                img = zbar_image_create();\n                assert(img);\n                img->refcnt = 0;\n                img->src = vdo;\n                /* recycle the shadow images */\n\n                img->format = vdo->format;\n                zbar_image_set_size(img, vdo->width, vdo->height);\n                img->datalen = vdo->datalen;\n                img->data = malloc(vdo->datalen);\n            }\n            img->cleanup = _zbar_video_recycle_shadow;\n            img->seq = frame;\n            memcpy((void*)img->data, tmp->data, img->datalen);\n            _zbar_video_recycle_image(tmp);\n        }\n        else\n            img->cleanup = _zbar_video_recycle_image;\n        _zbar_image_refcnt(img, 1);\n    }\n    return(img);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/video.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _VIDEO_H_\n#define _VIDEO_H_\n\n#include <config.h>\n\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#include <stdlib.h>\n#include <string.h>\n#include <assert.h>\n\n#include <zbar.h>\n\n#include \"image.h\"\n#include \"error.h\"\n#include \"mutex.h\"\n\n/* number of images to preallocate */\n#define ZBAR_VIDEO_IMAGES_MAX  4\n\ntypedef enum video_interface_e {\n    VIDEO_INVALID = 0,          /* uninitialized */\n    VIDEO_V4L1,                 /* v4l protocol version 1 */\n    VIDEO_V4L2,                 /* v4l protocol version 2 */\n    VIDEO_VFW,                  /* video for windows */\n} video_interface_t;\n\ntypedef enum video_iomode_e {\n    VIDEO_READWRITE = 1,        /* standard system calls */\n    VIDEO_MMAP,                 /* mmap interface */\n    VIDEO_USERPTR,              /* userspace buffers */\n} video_iomode_t;\n\ntypedef struct video_state_s video_state_t;\n\nstruct zbar_video_s {\n    errinfo_t err;              /* error reporting */\n    int fd;                     /* open camera device */\n    unsigned width, height;     /* video frame size */\n\n    video_interface_t intf;     /* input interface type */\n    video_iomode_t iomode;      /* video data transfer mode */\n    unsigned initialized : 1;   /* format selected and images mapped */\n    unsigned active      : 1;   /* current streaming state */\n\n    uint32_t format;            /* selected fourcc */\n    unsigned palette;           /* v4l1 format index corresponding to format */\n    uint32_t *formats;          /* 0 terminated list of supported formats */\n\n    unsigned long datalen;      /* size of image data for selected format */\n    unsigned long buflen;       /* total size of image data buffer */\n    void *buf;                  /* image data buffer */\n\n    unsigned frame;             /* frame count */\n\n    zbar_mutex_t qlock;         /* lock image queue */\n    int num_images;             /* number of allocated images */\n    zbar_image_t **images;      /* indexed list of images */\n    zbar_image_t *nq_image;     /* last image enqueued */\n    zbar_image_t *dq_image;     /* first image to dequeue (when ordered) */\n    zbar_image_t *shadow_image; /* special case internal double buffering */\n\n    video_state_t *state;       /* platform/interface specific state */\n\n#ifdef HAVE_LIBJPEG\n    struct jpeg_decompress_struct *jpeg; /* JPEG decompressor */\n    zbar_image_t *jpeg_img;    /* temporary image */\n#endif\n\n    /* interface dependent methods */\n    int (*init)(zbar_video_t*, uint32_t);\n    int (*cleanup)(zbar_video_t*);\n    int (*start)(zbar_video_t*);\n    int (*stop)(zbar_video_t*);\n    int (*nq)(zbar_video_t*, zbar_image_t*);\n    zbar_image_t* (*dq)(zbar_video_t*);\n};\n\n\n/* video.next_image and video.recycle_image have to be thread safe\n * wrt/other apis\n */\nstatic inline int video_lock (zbar_video_t *vdo)\n{\n    int rc = 0;\n    if((rc = _zbar_mutex_lock(&vdo->qlock))) {\n        err_capture(vdo, SEV_FATAL, ZBAR_ERR_LOCKING, __func__,\n                    \"unable to acquire lock\");\n        vdo->err.errnum = rc;\n        return(-1);\n    }\n    return(0);\n}\n\nstatic inline int video_unlock (zbar_video_t *vdo)\n{\n    int rc = 0;\n    if((rc = _zbar_mutex_unlock(&vdo->qlock))) {\n        err_capture(vdo, SEV_FATAL, ZBAR_ERR_LOCKING, __func__,\n                    \"unable to release lock\");\n        vdo->err.errnum = rc;\n        return(-1);\n    }\n    return(0);\n}\n\nstatic inline int video_nq_image (zbar_video_t *vdo,\n                                  zbar_image_t *img)\n{\n    /* maintains queued buffers in order */\n    img->next = NULL;\n    if(vdo->nq_image)\n        vdo->nq_image->next = img;\n    vdo->nq_image = img;\n    if(!vdo->dq_image)\n        vdo->dq_image = img;\n    return(video_unlock(vdo));\n}\n\nstatic inline zbar_image_t *video_dq_image (zbar_video_t *vdo)\n{\n    zbar_image_t *img = vdo->dq_image;\n    if(img) {\n        vdo->dq_image = img->next;\n        img->next = NULL;\n    }\n    if(video_unlock(vdo))\n        /* FIXME reclaim image */\n        return(NULL);\n    return(img);\n}\n\n\n/* PAL interface */\nextern int _zbar_video_open(zbar_video_t*, const char*);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/window/dib.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"window.h\"\n#include \"image.h\"\n#include \"win.h\"\n\nstatic int dib_cleanup (zbar_window_t *w)\n{\n    return(0);\n}\n\nstatic int dib_init (zbar_window_t *w,\n                     zbar_image_t *img,\n                     int new_format)\n{\n    if(new_format)\n        _zbar_window_bih_init(w, img);\n\n    window_state_t *win = w->state;\n    w->dst_width = win->bih.biWidth = (img->width + 3) & ~3;\n    w->dst_height = win->bih.biHeight = img->height;\n    return(0);\n}\n\nstatic int dib_draw (zbar_window_t *w,\n                     zbar_image_t *img)\n{\n    StretchDIBits(w->state->hdc,\n                  w->scaled_offset.x, w->scaled_offset.y + w->scaled_size.y - 1,\n                  w->scaled_size.x, -w->scaled_size.y,\n                  0, 0, w->src_width, w->src_height,\n                  (void*)img->data, (BITMAPINFO*)&w->state->bih,\n                  DIB_RGB_COLORS, SRCCOPY);\n    return(0);\n}\n\nstatic uint32_t dib_formats[] = {\n    fourcc('B','G','R','3'),\n    fourcc('B','G','R','4'),\n    fourcc('J','P','E','G'),\n    0\n};\n\nint _zbar_window_dib_init (zbar_window_t *w)\n{\n    uint32_t *fmt;\n    for(fmt = dib_formats; *fmt; fmt++)\n        _zbar_window_add_format(w, *fmt);\n\n    w->init = dib_init;\n    w->draw_image = dib_draw;\n    w->cleanup = dib_cleanup;\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/window/null.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"window.h\"\n\nstatic inline int null_error (void *m,\n                              const char *func)\n{\n    return(err_capture(m, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, func,\n                       \"not compiled with output window support\"));\n}\n\nint _zbar_window_attach (zbar_window_t *w,\n                         void *display,\n                         unsigned long win)\n{\n    return(null_error(w, __func__));\n}\n\nint _zbar_window_expose (zbar_window_t *w,\n                         int x,\n                         int y,\n                         int width,\n                         int height)\n{\n    return(null_error(w, __func__));\n}\n\nint _zbar_window_resize (zbar_window_t *w)\n{\n    return(0);\n}\n\nint _zbar_window_clear (zbar_window_t *w)\n{\n    return(null_error(w, __func__));\n}\n\nint _zbar_window_begin (zbar_window_t *w)\n{\n    return(null_error(w, __func__));\n}\n\nint _zbar_window_end (zbar_window_t *w)\n{\n    return(null_error(w, __func__));\n}\n\nint _zbar_window_draw_marker (zbar_window_t *w,\n                              uint32_t rgb,\n                              point_t p)\n{\n    return(null_error(w, __func__));\n}\n\nint _zbar_window_draw_polygon (zbar_window_t *w,\n                               uint32_t rgb,\n                               const point_t *pts,\n                               int npts)\n{\n    return(null_error(w, __func__));\n}\n\nint _zbar_window_draw_text (zbar_window_t *w,\n                            uint32_t rgb,\n                            point_t p,\n                            const char *text)\n{\n    return(null_error(w, __func__));\n}\n\nint _zbar_window_fill_rect (zbar_window_t *w,\n                            uint32_t rgb,\n                            point_t org,\n                            point_t size)\n{\n    return(null_error(w, __func__));\n}\n\nint _zbar_window_draw_logo (zbar_window_t *w)\n{\n    return(null_error(w, __func__));\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/window/vfw.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"window.h\"\n#include <vfw.h>\n\nextern int _zbar_window_bih_init(zbar_window_t *w,\n                                 zbar_image_t *img);\n\nstatic int vfw_cleanup (zbar_window_t *w)\n{\n    if(w->hdd) {\n        DrawDibClose(w->hdd);\n        w->hdd = NULL;\n    }\n    return(0);\n}\n\nstatic int vfw_init (zbar_window_t *w,\n                     zbar_image_t *img,\n                     int new_format)\n{\n    if(new_format)\n        _zbar_window_bih_init(w, img);\n\n    w->dst_width = w->bih.biWidth = (img->width + 3) & ~3;\n    w->dst_height = w->bih.biHeight = img->height;\n\n    HDC hdc = GetDC(w->hwnd);\n    if(!hdc)\n        return(-1/*FIXME*/);\n\n    if(!DrawDibBegin(w->hdd, hdc, w->width, w->height,\n                     &w->bih, img->width, img->height, 0))\n        return(-1/*FIXME*/);\n\n    ReleaseDC(w->hwnd, hdc);\n    return(0);\n}\n\nstatic int vfw_draw (zbar_window_t *w,\n                     zbar_image_t *img)\n{\n    HDC hdc = GetDC(w->hwnd);\n    if(!hdc)\n        return(-1/*FIXME*/);\n\n    zprintf(24, \"DrawDibDraw(%dx%d -> %dx%d)\\n\",\n            img->width, img->height, w->width, w->height);\n\n    DrawDibDraw(w->hdd, hdc,\n                0, 0, w->width, w->height,\n                &w->bih, (void*)img->data,\n                0, 0, w->src_width, w->src_height,\n                DDF_SAME_DRAW);\n\n    ValidateRect(w->hwnd, NULL);\n    ReleaseDC(w->hwnd, hdc);\n    return(0);\n}\n\nstatic uint32_t vfw_formats[] = {\n    fourcc('B','G','R','3'),\n    fourcc('B','G','R','4'),\n    fourcc('J','P','E','G'),\n    0\n};\n\nint _zbar_window_vfw_init (zbar_window_t *w)\n{\n    w->hdd = DrawDibOpen();\n    if(!w->hdd)\n        return(err_capture(w, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, __func__,\n                           \"unable to initialize DrawDib\"));\n\n    uint32_t *fmt;\n    for(fmt = vfw_formats; *fmt; fmt++)\n        _zbar_window_add_format(w, *fmt);\n\n    w->init = vfw_init;\n    w->draw_image = vfw_draw;\n    w->cleanup = vfw_cleanup;\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/window/win.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"window.h\"\n#include \"image.h\"\n#include \"win.h\"\n#include <ctype.h>\n\nint _zbar_window_vfw_init(zbar_window_t *w);\nint _zbar_window_dib_init(zbar_window_t *w);\n\nint _zbar_window_resize (zbar_window_t *w)\n{\n    window_state_t *win = w->state;\n    int lbw;\n    if(w->height * 8 / 10 <= w->width)\n        lbw = w->height / 36;\n    else\n        lbw = w->width * 5 / 144;\n    if(lbw < 1)\n        lbw = 1;\n    win->logo_scale = lbw;\n    zprintf(7, \"%dx%d scale=%d\\n\", w->width, w->height, lbw);\n    if(win->logo_zbars) {\n        DeleteObject(win->logo_zbars);\n        win->logo_zbars = NULL;\n    }\n    if(win->logo_zpen)\n        DeleteObject(win->logo_zpen);\n    if(win->logo_zbpen)\n        DeleteObject(win->logo_zbpen);\n\n    LOGBRUSH lb = { 0, };\n    lb.lbStyle = BS_SOLID;\n    lb.lbColor = RGB(0xd7, 0x33, 0x33);\n    win->logo_zpen = ExtCreatePen(PS_GEOMETRIC | PS_SOLID |\n                                  PS_ENDCAP_ROUND | PS_JOIN_ROUND,\n                                  lbw * 2, &lb, 0, NULL);\n\n    lb.lbColor = RGB(0xa4, 0x00, 0x00);\n    win->logo_zbpen = ExtCreatePen(PS_GEOMETRIC | PS_SOLID |\n                                   PS_ENDCAP_ROUND | PS_JOIN_ROUND,\n                                   lbw * 2, &lb, 0, NULL);\n\n    int x0 = w->width / 2;\n    int y0 = w->height / 2;\n    int by0 = y0 - 54 * lbw / 5;\n    int bh = 108 * lbw / 5;\n\n    static const int bx[5] = { -6, -3, -1,  2,  5 };\n    static const int bw[5] = {  1,  1,  2,  2,  1 };\n\n    int i;\n    for(i = 0; i < 5; i++) {\n        int x = x0 + lbw * bx[i];\n        HRGN bar = CreateRectRgn(x, by0,\n                                 x + lbw * bw[i], by0 + bh);\n        if(win->logo_zbars) {\n            CombineRgn(win->logo_zbars, win->logo_zbars, bar, RGN_OR);\n            DeleteObject(bar);\n        }\n        else\n            win->logo_zbars = bar;\n    }\n\n    static const int zx[4] = { -7,  7, -7,  7 };\n    static const int zy[4] = { -8, -8,  8,  8 };\n\n    for(i = 0; i < 4; i++) {\n        win->logo_z[i].x = x0 + lbw * zx[i];\n        win->logo_z[i].y = y0 + lbw * zy[i];\n    }\n    return(0);\n}\n\nint _zbar_window_attach (zbar_window_t *w,\n                         void *display,\n                         unsigned long unused)\n{\n    window_state_t *win = w->state;\n    if(w->display) {\n        /* FIXME cleanup existing resources */\n        w->display = NULL;\n    }\n\n    if(!display) {\n        if(win) {\n            free(win);\n            w->state = NULL;\n        }\n        return(0);\n    }\n\n    if(!win)\n        win = w->state = calloc(1, sizeof(window_state_t));\n\n    w->display = display;\n\n    win->bih.biSize = sizeof(win->bih);\n    win->bih.biPlanes = 1;\n\n    HDC hdc = GetDC(w->display);\n    if(!hdc)\n        return(-1/*FIXME*/);\n    win->bih.biXPelsPerMeter =\n        1000L * GetDeviceCaps(hdc, HORZRES) / GetDeviceCaps(hdc, HORZSIZE);\n    win->bih.biYPelsPerMeter =\n        1000L * GetDeviceCaps(hdc, VERTRES) / GetDeviceCaps(hdc, VERTSIZE);\n\n    int height = -MulDiv(11, GetDeviceCaps(hdc, LOGPIXELSY), 96);\n    HFONT font = CreateFontW(height, 0, 0, 0, 0, 0, 0, 0,\n                             ANSI_CHARSET, 0, 0, 0,\n                             FF_MODERN | FIXED_PITCH, NULL);\n\n    SelectObject(hdc, font);\n    DeleteObject(font);\n\n    TEXTMETRIC tm;\n    GetTextMetrics(hdc, &tm);\n    win->font_height = tm.tmHeight;\n\n    ReleaseDC(w->display, hdc);\n\n    return(_zbar_window_dib_init(w));\n}\n\nint _zbar_window_begin (zbar_window_t *w)\n{\n    HDC hdc = w->state->hdc = GetDC(w->display);\n    if(!hdc || !SaveDC(hdc))\n        return(-1/*FIXME*/);\n    return(0);\n}\n\nint _zbar_window_end (zbar_window_t *w)\n{\n    HDC hdc = w->state->hdc;\n    w->state->hdc = NULL;\n    RestoreDC(hdc, -1);\n    ReleaseDC(w->display, hdc);\n    ValidateRect(w->display, NULL);\n    return(0);\n}\n\nint _zbar_window_clear (zbar_window_t *w)\n{\n    HDC hdc = GetDC(w->display);\n    if(!hdc)\n        return(-1/*FIXME*/);\n\n    RECT r = { 0, 0, w->width, w->height };\n    FillRect(hdc, &r, GetStockObject(BLACK_BRUSH));\n\n    ReleaseDC(w->display, hdc);\n    ValidateRect(w->display, NULL);\n    return(0);\n}\n\nstatic inline void win_set_rgb (HDC hdc,\n                                uint32_t rgb)\n{\n    SelectObject(hdc, GetStockObject(DC_PEN));\n    SetDCPenColor(hdc, RGB((rgb & 4) * 0x33,\n                           (rgb & 2) * 0x66,\n                           (rgb & 1) * 0xcc));\n}\n\nint _zbar_window_draw_polygon (zbar_window_t *w,\n                               uint32_t rgb,\n                               const point_t *pts,\n                               int npts)\n{\n    HDC hdc = w->state->hdc;\n    win_set_rgb(hdc, rgb);\n\n    point_t org = w->scaled_offset;\n    POINT gdipts[npts + 1];\n    int i;\n    for(i = 0; i < npts; i++) {\n        point_t p = window_scale_pt(w, pts[i]);\n        gdipts[i].x = p.x + org.x;\n        gdipts[i].y = p.y + org.y;\n    }\n    gdipts[npts] = gdipts[0];\n\n    Polyline(hdc, gdipts, npts + 1);\n    return(0);\n}\n\nint _zbar_window_draw_marker (zbar_window_t *w,\n                              uint32_t rgb,\n                              point_t p)\n{\n    HDC hdc = w->state->hdc;\n    win_set_rgb(hdc, rgb);\n\n    static const DWORD npolys[3] = { 5, 2, 2 };\n    POINT polys[9] = {\n        { p.x - 2, p.y - 2 },\n        { p.x - 2, p.y + 2 },\n        { p.x + 2, p.y + 2 },\n        { p.x + 2, p.y - 2 },\n        { p.x - 2, p.y - 2 },\n\n        { p.x - 3, p.y },\n        { p.x + 4, p.y },\n\n        { p.x, p.y - 3 },\n        { p.x, p.y + 4 },\n    };\n\n    PolyPolyline(hdc, polys, npolys, 3);\n    return(0);\n}\n\nint _zbar_window_draw_text (zbar_window_t *w,\n                            uint32_t rgb,\n                            point_t p,\n                            const char *text)\n{\n    HDC hdc = w->state->hdc;\n    SetTextColor(hdc, RGB((rgb & 4) * 0x33,\n                          (rgb & 2) * 0x66,\n                          (rgb & 1) * 0xcc));\n    SetBkMode(hdc, TRANSPARENT);\n\n    int n = 0;\n    while(n < 32 && text[n] && isprint(text[n]))\n        n++;\n\n    if(p.x >= 0)\n        SetTextAlign(hdc, TA_BASELINE | TA_CENTER);\n    else {\n        SetTextAlign(hdc, TA_BASELINE | TA_RIGHT);\n        p.x += w->width;\n    }\n\n    if(p.y < 0)\n        p.y = w->height + p.y * w->state->font_height * 5 / 4;\n\n    TextOut(hdc, p.x, p.y, text, n);\n    return(0);\n}\n\nint _zbar_window_fill_rect (zbar_window_t *w,\n                            uint32_t rgb,\n                            point_t org,\n                            point_t size)\n{\n    HDC hdc = w->state->hdc;\n    SetDCBrushColor(hdc, RGB((rgb & 4) * 0x33,\n                             (rgb & 2) * 0x66,\n                             (rgb & 1) * 0xcc));\n\n    RECT r = { org.x, org.y, org.x + size.x, org.y + size.y };\n\n    FillRect(hdc, &r, GetStockObject(DC_BRUSH));\n    return(0);\n}\n\nint _zbar_window_draw_logo (zbar_window_t *w)\n{\n    HDC hdc = w->state->hdc;\n\n    window_state_t *win = w->state;\n\n    /* FIXME buffer offscreen */\n    HRGN rgn = CreateRectRgn(0, 0, w->width, w->height);\n    CombineRgn(rgn, rgn, win->logo_zbars, RGN_DIFF);\n    FillRgn(hdc, rgn, GetStockObject(WHITE_BRUSH));\n    DeleteObject(rgn);\n\n    FillRgn(hdc, win->logo_zbars, GetStockObject(BLACK_BRUSH));\n\n    SelectObject(hdc, win->logo_zpen);\n    Polyline(hdc, win->logo_z, 4);\n\n    ExtSelectClipRgn(hdc, win->logo_zbars, RGN_AND);\n    SelectObject(hdc, win->logo_zbpen);\n    Polyline(hdc, win->logo_z, 4);\n    return(0);\n}\n\nint _zbar_window_bih_init (zbar_window_t *w,\n                           zbar_image_t *img)\n{\n    window_state_t *win = w->state;\n    switch(w->format) {\n    case fourcc('J','P','E','G'): {\n        win->bih.biBitCount = 0;\n        win->bih.biCompression = BI_JPEG;\n        break;\n    }\n    case fourcc('B','G','R','3'): {\n        win->bih.biBitCount = 24;\n        win->bih.biCompression = BI_RGB;\n        break;\n    }\n    case fourcc('B','G','R','4'): {\n        win->bih.biBitCount = 32;\n        win->bih.biCompression = BI_RGB;\n        break;\n    }\n    default:\n        assert(0);\n        /* FIXME PNG? */\n    }\n    win->bih.biSizeImage = img->datalen;\n\n    zprintf(20, \"biCompression=%d biBitCount=%d\\n\",\n            (int)win->bih.biCompression, win->bih.biBitCount);\n\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/window/win.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _WINDOW_WIN_H_\n#define _WINDOW_WIN_H_\n\n#include <windows.h>\n\nstruct window_state_s {\n    HDC hdc;\n    void* hdd;\n\n    BITMAPINFOHEADER bih;\n\n    /* pre-calculated logo geometries */\n    int logo_scale;\n    HRGN logo_zbars;\n    HPEN logo_zpen, logo_zbpen;\n    POINT logo_z[4];\n\n    int font_height;\n};\n\nextern int _zbar_window_bih_init(zbar_window_t *w,\n                                 zbar_image_t *img);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/window/x.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"window.h\"\n#include \"image.h\"\n#include \"x.h\"\n#include <ctype.h>\n\n#ifndef ZBAR_OVERLAY_FONT\n# define ZBAR_OVERLAY_FONT \"-*-fixed-medium-r-*-*-*-120-75-75-*-*-ISO8859-1\"\n#endif\n\nstatic inline unsigned long window_alloc_color (zbar_window_t *w,\n                                                Colormap cmap,\n                                                unsigned short r,\n                                                unsigned short g,\n                                                unsigned short b)\n{\n    XColor color;\n    color.red = r;\n    color.green = g;\n    color.blue = b;\n    color.flags = 0;\n    XAllocColor(w->display, cmap, &color);\n    return(color.pixel);\n}\n\nstatic inline int window_alloc_colors (zbar_window_t *w)\n{\n    window_state_t *x = w->state;\n    Colormap cmap = DefaultColormap(w->display, DefaultScreen(w->display));\n    int i;\n    for(i = 0; i < 8; i++)\n        x->colors[i] = window_alloc_color(w, cmap,\n                                          (i & 4) ? (0xcc * 0x101) : 0,\n                                          (i & 2) ? (0xcc * 0x101) : 0,\n                                          (i & 1) ? (0xcc * 0x101) : 0);\n\n    x->logo_colors[0] = window_alloc_color(w, cmap, 0xd709, 0x3333, 0x3333);\n    x->logo_colors[1] = window_alloc_color(w, cmap, 0xa3d6, 0x0000, 0x0000);\n    return(0);\n}\n\nstatic inline int window_hide_cursor (zbar_window_t *w)\n{\n    /* FIXME this seems lame...there must be a better way */\n    Pixmap empty = XCreatePixmap(w->display, w->xwin, 1, 1, 1);\n    GC gc = XCreateGC(w->display, empty, 0, NULL);\n    XDrawPoint(w->display, empty, gc, 0, 0);\n    XColor black;\n    memset(&black, 0, sizeof(black));\n    int screen = DefaultScreen(w->display);\n    black.pixel = BlackPixel(w->display, screen);\n    Cursor cursor =\n        XCreatePixmapCursor(w->display, empty, empty, &black, &black, 0, 0);\n    XDefineCursor(w->display, w->xwin, cursor);\n    XFreeCursor(w->display, cursor);\n    XFreeGC(w->display, gc);\n    XFreePixmap(w->display, empty);\n    return(0);\n}\n\nint _zbar_window_resize (zbar_window_t *w)\n{\n    window_state_t *x = w->state;\n    if(!x)\n        return(0);\n\n    int lbw;\n    if(w->height * 8 / 10 <= w->width)\n        lbw = w->height / 36;\n    else\n        lbw = w->width * 5 / 144;\n    if(lbw < 1)\n        lbw = 1;\n    x->logo_scale = lbw;\n    if(x->logo_zbars)\n        XDestroyRegion(x->logo_zbars);\n    x->logo_zbars = XCreateRegion();\n\n    int x0 = w->width / 2;\n    int y0 = w->height / 2;\n    int by0 = y0 - 54 * lbw / 5;\n    int bh = 108 * lbw / 5;\n\n    static const int bx[5] = { -6, -3, -1,  2,  5 };\n    static const int bw[5] = {  1,  1,  2,  2,  1 };\n\n    int i;\n    for(i = 0; i < 5; i++) {\n        XRectangle *bar = &x->logo_bars[i];\n        bar->x = x0 + lbw * bx[i];\n        bar->y = by0;\n        bar->width = lbw * bw[i];\n        bar->height = bh;\n        XUnionRectWithRegion(bar, x->logo_zbars, x->logo_zbars);\n    }\n\n    static const int zx[4] = { -7,  7, -7,  7 };\n    static const int zy[4] = { -8, -8,  8,  8 };\n\n    for(i = 0; i < 4; i++) {\n        x->logo_z[i].x = x0 + lbw * zx[i];\n        x->logo_z[i].y = y0 + lbw * zy[i];\n    }\n    return(0);\n}\n\nint _zbar_window_attach (zbar_window_t *w,\n                         void *display,\n                         unsigned long win)\n{\n    window_state_t *x = w->state;\n    if(w->display) {\n        /* cleanup existing resources */\n        if(x->gc)\n            XFreeGC(w->display, x->gc);\n        assert(!x->exposed);\n        if(x->font) {\n            XFreeFont(w->display, x->font);\n            x->font = NULL;\n        }\n        if(x->logo_zbars) {\n            XDestroyRegion(x->logo_zbars);\n            x->logo_zbars = NULL;\n        }\n        if(x->exposed) {\n            XDestroyRegion(x->exposed);\n            x->exposed = NULL;\n        }\n        w->display = NULL;\n    }\n    w->xwin = 0;\n\n    if(!display || !win) {\n        if(x) {\n            free(x);\n            w->state = NULL;\n        }\n        return(0);\n    }\n\n    if(!x)\n        x = w->state = calloc(1, sizeof(window_state_t));\n\n    w->display = display;\n    w->xwin = win;\n    x->gc = XCreateGC(display, win, 0, NULL);\n\n    XWindowAttributes attr;\n    XGetWindowAttributes(w->display, w->xwin, &attr);\n    w->width = attr.width;\n    w->height = attr.height;\n    _zbar_window_resize(w);\n\n    window_alloc_colors(w);\n    window_hide_cursor(w);\n\n    /* load overlay font */\n    x->font = XLoadQueryFont(w->display, ZBAR_OVERLAY_FONT);\n    if(x->font)\n        XSetFont(w->display, x->gc, x->font->fid);\n\n    /* FIXME add interface preference override */\n#ifdef HAVE_X11_EXTENSIONS_XVLIB_H\n    if(!_zbar_window_probe_xv(w))\n        return(0);\n#endif\n\n    zprintf(1, \"falling back to XImage\\n\");\n    return(_zbar_window_probe_ximage(w));\n}\n\nint _zbar_window_expose (zbar_window_t *w,\n                         int x,\n                         int y,\n                         int width,\n                         int height)\n{\n    window_state_t *xs = w->state;\n    if(!xs->exposed)\n        xs->exposed = XCreateRegion();\n    XRectangle r;\n    r.x = x;\n    r.y = y;\n    r.width = width;\n    r.height = height;\n    XUnionRectWithRegion(&r, xs->exposed, xs->exposed);\n    return(0);\n}\n\nint _zbar_window_begin (zbar_window_t *w)\n{\n    window_state_t *xs = w->state;\n    if(xs->exposed)\n        XSetRegion(w->display, xs->gc, xs->exposed);\n\n    return(0);\n}\n\nint _zbar_window_end (zbar_window_t *w)\n{\n    window_state_t *x = w->state;\n    XSetClipMask(w->display, x->gc, None);\n    if(x->exposed) {\n        XDestroyRegion(x->exposed);\n        x->exposed = NULL;\n    }\n    XFlush(w->display);\n    return(0);\n}\n\nint _zbar_window_clear (zbar_window_t *w)\n{\n    if(!w->display)\n        return(0);\n    window_state_t *x = w->state;\n    int screen = DefaultScreen(w->display);\n    XSetForeground(w->display, x->gc, WhitePixel(w->display, screen));\n    XFillRectangle(w->display, w->xwin, x->gc, 0, 0, w->width, w->height);\n    return(0);\n}\n\nint _zbar_window_draw_polygon (zbar_window_t *w,\n                               uint32_t rgb,\n                               const point_t *pts,\n                               int npts)\n{\n    window_state_t *xs = w->state;\n    XSetForeground(w->display, xs->gc, xs->colors[rgb]);\n\n    point_t org = w->scaled_offset;\n    XPoint xpts[npts + 1];\n    int i;\n    for(i = 0; i < npts; i++) {\n        point_t p = window_scale_pt(w, pts[i]);\n        xpts[i].x = p.x + org.x;\n        xpts[i].y = p.y + org.y;\n    }\n    xpts[npts] = xpts[0];\n\n    XDrawLines(w->display, w->xwin, xs->gc, xpts, npts + 1, CoordModeOrigin);\n\n    return(0);\n}\n\nint _zbar_window_draw_marker (zbar_window_t *w,\n                              uint32_t rgb,\n                              point_t p)\n{\n    window_state_t *xs = w->state;\n    XSetForeground(w->display, xs->gc, xs->colors[rgb]);\n    XDrawRectangle(w->display, w->xwin, xs->gc, p.x - 2, p.y - 2, 4, 4);\n    XDrawLine(w->display, w->xwin, xs->gc, p.x, p.y - 3, p.x, p.y + 3);\n    XDrawLine(w->display, w->xwin, xs->gc, p.x - 3, p.y, p.x + 3, p.y);\n    return(0);\n}\n\nint _zbar_window_draw_text (zbar_window_t *w,\n                            uint32_t rgb,\n                            point_t p,\n                            const char *text)\n{\n    window_state_t *xs = w->state;\n    if(!xs->font)\n        return(-1);\n\n    XSetForeground(w->display, xs->gc, xs->colors[rgb]);\n\n    int n = 0;\n    while(n < 32 && text[n] && isprint(text[n]))\n        n++;\n\n    int width = XTextWidth(xs->font, text, n);\n    if(p.x >= 0)\n        p.x -= width / 2;\n    else\n        p.x += w->width - width;\n\n    int dy = xs->font->ascent + xs->font->descent;\n    if(p.y >= 0)\n        p.y -= dy / 2;\n    else\n        p.y = w->height + p.y * dy * 5 / 4;\n\n    XDrawString(w->display, w->xwin, xs->gc, p.x, p.y, text, n);\n    return(0);\n}\n\nint _zbar_window_fill_rect (zbar_window_t *w,\n                            uint32_t rgb,\n                            point_t org,\n                            point_t size)\n{\n    window_state_t *xs = w->state;\n    XSetForeground(w->display, xs->gc, xs->colors[rgb]);\n    XFillRectangle(w->display, w->xwin, xs->gc, org.x, org.y, size.x, size.y);\n    return(0);\n}\n\nint _zbar_window_draw_logo (zbar_window_t *w)\n{\n    window_state_t *x = w->state;\n    int screen = DefaultScreen(w->display);\n\n    /* clear to white */\n    XSetForeground(w->display, x->gc, WhitePixel(w->display, screen));\n    XFillRectangle(w->display, w->xwin, x->gc, 0, 0, w->width, w->height);\n\n    if(!x->logo_scale || !x->logo_zbars)\n        return(0);\n\n    XSetForeground(w->display, x->gc, BlackPixel(w->display, screen));\n    XFillRectangles(w->display, w->xwin, x->gc, x->logo_bars, 5);\n\n    XSetLineAttributes(w->display, x->gc, 2 * x->logo_scale,\n                       LineSolid, CapRound, JoinRound);\n\n    XSetForeground(w->display, x->gc, x->logo_colors[0]);\n    XDrawLines(w->display, w->xwin, x->gc, x->logo_z, 4, CoordModeOrigin);\n\n    if(x->exposed) {\n        XIntersectRegion(x->logo_zbars, x->exposed, x->exposed);\n        XSetRegion(w->display, x->gc, x->exposed);\n    }\n    else\n        XSetRegion(w->display, x->gc, x->logo_zbars);\n\n    XSetForeground(w->display, x->gc, x->logo_colors[1]);\n    XDrawLines(w->display, w->xwin, x->gc, x->logo_z, 4, CoordModeOrigin);\n\n    /* reset GC */\n    XSetLineAttributes(w->display, x->gc, 0,\n                       LineSolid, CapButt, JoinMiter);\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/window/x.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _WINDOW_X_H_\n#define _WINDOW_X_H_\n\n#include \"window.h\"\n\n#ifdef HAVE_X\n# include <X11/Xlib.h>\n# include <X11/Xutil.h>\n# ifdef HAVE_X11_EXTENSIONS_XSHM_H\n#  include <X11/extensions/XShm.h>\n# endif\n#ifdef HAVE_X11_EXTENSIONS_XVLIB_H\n#  include <X11/extensions/Xvlib.h>\n#endif\n#endif\n\nstruct window_state_s {\n    unsigned long colors[8];    /* pre-allocated colors */\n\n    GC gc;                      /* graphics context */\n    Region exposed;             /* region to redraw */\n    XFontStruct *font;          /* overlay font */\n\n    /* pre-calculated logo geometries */\n    int logo_scale;\n    unsigned long logo_colors[2];\n    Region logo_zbars;\n    XPoint logo_z[4];\n    XRectangle logo_bars[5];\n\n#ifdef HAVE_X11_EXTENSIONS_XSHM_H\n    XShmSegmentInfo shm;        /* shared memory segment */\n#endif\n\n    union {\n        XImage *x;\n#ifdef HAVE_X11_EXTENSIONS_XVLIB_H\n        XvImage *xv;\n#endif\n    } img;\n\n    XID img_port;               /* current format port */\n    XID *xv_ports;              /* best port for format */\n    int num_xv_adaptors;        /* number of adaptors */\n    XID *xv_adaptors;           /* port grabbed for each adaptor */\n};\n\nextern int _zbar_window_probe_ximage(zbar_window_t*);\nextern int _zbar_window_probe_xshm(zbar_window_t*);\nextern int _zbar_window_probe_xv(zbar_window_t*);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/window/ximage.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"window.h\"\n#include \"x.h\"\n#include \"image.h\"\n\nstatic int ximage_cleanup (zbar_window_t *w)\n{\n    window_state_t *x = w->state;\n    if(x->img.x)\n        free(x->img.x);\n    x->img.x = NULL;\n    return(0);\n}\n\nstatic inline int ximage_init (zbar_window_t *w,\n                               zbar_image_t *img,\n                               int format_change)\n{\n    ximage_cleanup(w);\n    XImage *ximg = w->state->img.x = calloc(1, sizeof(XImage));\n    ximg->width = img->width;\n    ximg->height = img->height;\n    ximg->format = ZPixmap;\n    ximg->byte_order = LSBFirst;\n    ximg->bitmap_unit = 8;\n    ximg->bitmap_bit_order = MSBFirst;\n    ximg->bitmap_pad = 8;\n\n    const zbar_format_def_t *fmt = _zbar_format_lookup(w->format);\n    if(fmt->group == ZBAR_FMT_RGB_PACKED) {\n        ximg->depth = ximg->bits_per_pixel = fmt->p.rgb.bpp << 3;\n        ximg->red_mask =\n            (0xff >> RGB_SIZE(fmt->p.rgb.red))\n            << RGB_OFFSET(fmt->p.rgb.red);\n        ximg->green_mask =\n            (0xff >> RGB_SIZE(fmt->p.rgb.green))\n            << RGB_OFFSET(fmt->p.rgb.green);\n        ximg->blue_mask =\n            (0xff >> RGB_SIZE(fmt->p.rgb.blue))\n            << RGB_OFFSET(fmt->p.rgb.blue);\n    }\n    else {\n        ximg->depth = ximg->bits_per_pixel = 8;\n        ximg->red_mask = ximg->green_mask = ximg->blue_mask = 0xff;\n    }\n\n    if(!XInitImage(ximg))\n        return(err_capture_int(w, SEV_ERROR, ZBAR_ERR_XPROTO, __func__,\n                               \"unable to init XImage for format %x\",\n                               w->format));\n\n    w->dst_width = img->width;\n    w->dst_height = img->height;\n\n    /* FIXME implement some basic scaling */\n    w->scale_num = w->scale_den = 1;\n\n    zprintf(3, \"new XImage %.4s(%08\" PRIx32 \") %dx%d\"\n            \" from %.4s(%08\" PRIx32 \") %dx%d\\n\",\n            (char*)&w->format, w->format, ximg->width, ximg->height,\n            (char*)&img->format, img->format, img->width, img->height);\n    zprintf(4, \"    masks: %08lx %08lx %08lx\\n\",\n            ximg->red_mask, ximg->green_mask, ximg->blue_mask);\n    return(0);\n}\n\nstatic int ximage_draw (zbar_window_t *w,\n                        zbar_image_t *img)\n{\n    window_state_t *x = w->state;\n    XImage *ximg = x->img.x;\n    assert(ximg);\n    ximg->data = (void*)img->data;\n\n    point_t src = { 0, 0 };\n    point_t dst = w->scaled_offset;\n    if(dst.x < 0) {\n        src.x = -dst.x;\n        dst.x = 0;\n    }\n    if(dst.y < 0) {\n        src.y = -dst.y;\n        dst.y = 0;\n    }\n    point_t size = w->scaled_size;\n    if(size.x > w->width)\n        size.x = w->width;\n    if(size.y > w->height)\n        size.y = w->height;\n\n    XPutImage(w->display, w->xwin, x->gc, ximg,\n              src.x, src.y, dst.x, dst.y, size.x, size.y);\n    ximg->data = NULL;\n    return(0);\n}\n\nstatic uint32_t ximage_formats[4][5] = {\n    {   /* 8bpp */\n        /* FIXME fourcc('Y','8','0','0'), */\n        fourcc('R','G','B','1'),\n        fourcc('B','G','R','1'),\n        0\n    },\n    {   /* 16bpp */\n        fourcc('R','G','B','P'), fourcc('R','G','B','O'),\n        fourcc('R','G','B','R'), fourcc('R','G','B','Q'),\n        0\n    },\n    {   /* 24bpp */\n        fourcc('R','G','B','3'),\n        fourcc('B','G','R','3'),\n        0\n    },\n    {   /* 32bpp */\n        fourcc('R','G','B','4'),\n        fourcc('B','G','R','4'),\n        0\n    },\n};\n\nstatic int ximage_probe_format (zbar_window_t *w,\n                                uint32_t format)\n{\n    const zbar_format_def_t *fmt = _zbar_format_lookup(format);\n\n    XVisualInfo visreq, *visuals = NULL;\n    memset(&visreq, 0, sizeof(XVisualInfo));\n\n    visreq.depth = fmt->p.rgb.bpp << 3;\n    visreq.red_mask =\n        (0xff >> RGB_SIZE(fmt->p.rgb.red)) << RGB_OFFSET(fmt->p.rgb.red);\n    visreq.green_mask =\n        (0xff >> RGB_SIZE(fmt->p.rgb.green)) << RGB_OFFSET(fmt->p.rgb.green);\n    visreq.blue_mask =\n        (0xff >> RGB_SIZE(fmt->p.rgb.blue)) << RGB_OFFSET(fmt->p.rgb.blue);\n\n    int n;\n    visuals = XGetVisualInfo(w->display,\n                             VisualDepthMask | VisualRedMaskMask |\n                             VisualGreenMaskMask | VisualBlueMaskMask,\n                             &visreq, &n);\n\n    zprintf(8, \"bits=%d r=%08lx g=%08lx b=%08lx: n=%d visuals=%p\\n\",\n            visreq.depth, visreq.red_mask, visreq.green_mask,\n            visreq.blue_mask, n, visuals);\n    if(!visuals)\n        return(1);\n    XFree(visuals);\n    if(!n)\n        return(-1);\n\n    return(0);\n}\n\nint _zbar_window_probe_ximage (zbar_window_t *w)\n{\n    /* FIXME determine supported formats/depths */\n    int n;\n    XPixmapFormatValues *formats = XListPixmapFormats(w->display, &n);\n    if(!formats)\n        return(err_capture(w, SEV_ERROR, ZBAR_ERR_XPROTO, __func__,\n                           \"unable to query XImage formats\"));\n\n    int i;\n    for(i = 0; i < n; i++) {\n        if(formats[i].depth & 0x7 ||\n           formats[i].depth > 0x20) {\n            zprintf(2, \"    [%d] depth=%d bpp=%d: not supported\\n\",\n                    i, formats[i].depth, formats[i].bits_per_pixel);\n            continue;\n        }\n        int fmtidx = formats[i].depth / 8 - 1;\n        int j, n = 0;\n        for(j = 0; ximage_formats[fmtidx][j]; j++)\n            if(!ximage_probe_format(w, ximage_formats[fmtidx][j])) {\n                zprintf(2, \"    [%d] depth=%d bpp=%d: %.4s(%08\" PRIx32 \")\\n\",\n                        i, formats[i].depth, formats[i].bits_per_pixel,\n                        (char*)&ximage_formats[fmtidx][j],\n                        ximage_formats[fmtidx][j]);\n                _zbar_window_add_format(w, ximage_formats[fmtidx][j]);\n                n++;\n            }\n        if(!n)\n            zprintf(2, \"    [%d] depth=%d bpp=%d: no visuals\\n\",\n                    i, formats[i].depth, formats[i].bits_per_pixel);\n    }\n    XFree(formats);\n\n    if(!w->formats || !w->formats[0])\n        return(err_capture(w, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, __func__,\n                           \"no usable XImage formats found\"));\n\n    w->init = ximage_init;\n    w->draw_image = ximage_draw;\n    w->cleanup = ximage_cleanup;\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/window/xv.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"window.h\"\n#include \"x.h\"\n#include \"image.h\"\n#include <string.h>     /* strcmp */\n\nstatic int xv_cleanup (zbar_window_t *w)\n{\n    window_state_t *x = w->state;\n    if(x->img.xv) {\n        XFree(x->img.xv);\n        x->img.xv = NULL;\n    }\n    int i;\n    for(i = 0; i < x->num_xv_adaptors; i++)\n        if(x->xv_adaptors[i]) {\n            XvUngrabPort(w->display, x->xv_adaptors[i], CurrentTime);\n            x->xv_adaptors[i] = 0;\n        }\n    free(x->xv_ports);\n    free(x->xv_adaptors);\n    x->xv_ports = NULL;\n    x->num_xv_adaptors = 0;\n    x->xv_adaptors = NULL;\n    return(0);\n}\n\nstatic inline int xv_init (zbar_window_t *w,\n                           zbar_image_t *img,\n                           int format_change)\n{\n    window_state_t *x = w->state;\n    if(x->img.xv) {\n        XFree(x->img.xv);\n        x->img.xv = NULL;\n    }\n    if(format_change) {\n        /* lookup port for format */\n        x->img_port = 0;\n        int i;\n        for(i = 0; w->formats[i]; i++)\n            if(w->formats[i] == w->format) {\n                x->img_port = x->xv_ports[i];\n                break;\n            }\n        assert(x->img_port > 0);\n    }\n\n    XvImage *xvimg = XvCreateImage(w->display, x->img_port, w->format,\n                                   NULL, img->width, img->height);\n    zprintf(3, \"new XvImage %.4s(%08\" PRIx32 \") %dx%d(%d)\"\n            \" from %.4s(%08\" PRIx32 \") %dx%d\\n\",\n            (char*)&w->format, w->format,\n            xvimg->width, xvimg->height, xvimg->pitches[0],\n            (char*)&img->format, img->format, img->width, img->height);\n\n    /* FIXME not sure this simple check is always correct\n     * should lookup format to decode/sanitize target width from pitch & bpp\n     */\n    w->dst_width = ((xvimg->num_planes <= 1)\n                    ? xvimg->width\n                    : xvimg->pitches[0]);\n    w->dst_height = xvimg->height;\n\n    /* FIXME datalen check */\n    if(w->dst_width < img->width || xvimg->height < img->height) {\n        XFree(xvimg);\n        /* FIXME fallback to XImage... */\n        return(err_capture(w, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, __func__,\n                           \"output image size mismatch (XvCreateImage)\"));\n    }\n    x->img.xv = xvimg;\n\n    return(0);\n}\n\nstatic int xv_draw (zbar_window_t *w,\n                    zbar_image_t *img)\n{\n    window_state_t *x = w->state;\n    XvImage *xvimg = x->img.xv;\n    assert(xvimg);\n    xvimg->data = (void*)img->data;\n    zprintf(24, \"XvPutImage(%dx%d -> %dx%d (%08lx))\\n\",\n            w->src_width, w->src_height, w->scaled_size.x, w->scaled_size.y,\n            img->datalen);\n    XvPutImage(w->display, x->img_port, w->xwin, x->gc, xvimg,\n               0, 0, w->src_width, w->src_height,\n               w->scaled_offset.x, w->scaled_offset.y,\n               w->scaled_size.x, w->scaled_size.y);\n    xvimg->data = NULL;  /* FIXME hold shm image until completion */\n    return(0);\n}\n\nstatic inline int xv_add_format (zbar_window_t *w,\n                                 uint32_t fmt,\n                                 XvPortID port)\n{\n    int i = _zbar_window_add_format(w, fmt);\n\n    window_state_t *x = w->state;\n    if(!w->formats[i + 1])\n        x->xv_ports = realloc(x->xv_ports, (i + 1) * sizeof(*x->xv_ports));\n\n    /* FIXME could prioritize by something (rate? size?) */\n    x->xv_ports[i] = port;\n    return(i);\n}\n\nstatic int xv_probe_port (zbar_window_t *w,\n                          XvPortID port)\n{\n    unsigned n;\n    XvEncodingInfo *encodings = NULL;\n    if(XvQueryEncodings(w->display, port, &n, &encodings))\n        return(err_capture(w, SEV_ERROR, ZBAR_ERR_XPROTO, __func__,\n                           \"querying XVideo encodings\"));\n\n    zprintf(1, \"probing port %u with %d encodings:\\n\", (unsigned)port, n);\n    unsigned width = 0, height = 0;\n    int i;\n    for(i = 0; i < n; i++) {\n        XvEncodingInfo *enc = &encodings[i];\n        zprintf(2, \"    [%d] %lu x %lu rate=%d/%d : %s\\n\",\n                i, enc->width, enc->height,\n                enc->rate.numerator, enc->rate.denominator, enc->name);\n        if(!strcmp(enc->name, \"XV_IMAGE\")) {\n            if(width < enc->width)\n                width = enc->width;\n            if(height < enc->height)\n                height = enc->height;\n        }\n    }\n    XvFreeEncodingInfo(encodings);\n    encodings = NULL;\n\n    if(!width || !height)\n        return(err_capture(w, SEV_ERROR, ZBAR_ERR_INVALID, __func__,\n                           \"no XV_IMAGE encodings found\"));\n    zprintf(1, \"max XV_IMAGE size %dx%d\\n\", width, height);\n    if(w->max_width > width)\n        w->max_width = width;\n    if(w->max_height > height)\n        w->max_height = height;\n\n    XvImageFormatValues *formats =\n        XvListImageFormats(w->display, port, (int*)&n);\n    if(!formats)\n        return(err_capture(w, SEV_ERROR, ZBAR_ERR_XPROTO, __func__,\n                           \"querying XVideo image formats\"));\n\n    zprintf(1, \"%d image formats\\n\", n);\n    for(i = 0; i < n; i++) {\n        XvImageFormatValues *fmt = &formats[i];\n        zprintf(2, \"    [%d] %.4s(%08x) %s %s %s planes=%d bpp=%d : %.16s\\n\",\n                i, (char*)&fmt->id, fmt->id,\n                (fmt->type == XvRGB) ? \"RGB\" : \"YUV\",\n                (fmt->byte_order == LSBFirst) ? \"LSBFirst\" : \"MSBFirst\",\n                (fmt->format == XvPacked) ? \"packed\" : \"planar\",\n                fmt->num_planes, fmt->bits_per_pixel, fmt->guid);\n        xv_add_format(w, fmt->id, port);\n    }\n    XFree(formats);\n    return(0);\n}\n\nint _zbar_window_probe_xv (zbar_window_t *w)\n{\n    unsigned xv_major, xv_minor, xv_req, xv_ev, xv_err;\n    if(XvQueryExtension(w->display, &xv_major, &xv_minor,\n                        &xv_req, &xv_ev, &xv_err)) {\n        zprintf(1, \"XVideo extension not present\\n\");\n        return(-1);\n    }\n    zprintf(1, \"XVideo extension version %u.%u\\n\",\n            xv_major, xv_minor);\n\n    unsigned n;\n    XvAdaptorInfo *adaptors = NULL;\n    if(XvQueryAdaptors(w->display, w->xwin, &n, &adaptors))\n        return(err_capture(w, SEV_ERROR, ZBAR_ERR_XPROTO, __func__,\n                           \"unable to query XVideo adaptors\"));\n\n    window_state_t *x = w->state;\n    x->num_xv_adaptors = 0;\n    x->xv_adaptors = calloc(n, sizeof(*x->xv_adaptors));\n    int i;\n    for(i = 0; i < n; i++) {\n        XvAdaptorInfo *adapt = &adaptors[i];\n        zprintf(2, \"    adaptor[%d] %lu ports %u-%u type=0x%x fmts=%lu : %s\\n\",\n                i, adapt->num_ports, (unsigned)adapt->base_id,\n                (unsigned)(adapt->base_id + adapt->num_ports - 1),\n                adapt->type, adapt->num_formats, adapt->name);\n        if(!(adapt->type & XvImageMask))\n            continue;\n\n        int j;\n        for(j = 0; j < adapt->num_ports; j++)\n            if(!XvGrabPort(w->display, adapt->base_id + j, CurrentTime)) {\n                zprintf(3, \"        grabbed port %u\\n\",\n                        (unsigned)(adapt->base_id + j));\n                x->xv_adaptors[x->num_xv_adaptors++] = adapt->base_id + j;\n                break;\n            }\n\n        if(j == adapt->num_ports)\n            zprintf(3, \"        no available XVideo image port\\n\");\n    }\n    XvFreeAdaptorInfo(adaptors);\n    adaptors = NULL;\n\n    if(!x->num_xv_adaptors) {\n        zprintf(1, \"WARNING: no XVideo adaptor supporting XvImages found\\n\");\n        free(x->xv_adaptors);\n        x->xv_adaptors = NULL;\n        return(-1);\n    }\n    if(x->num_xv_adaptors < n)\n        x->xv_adaptors = realloc(x->xv_adaptors,\n                                 x->num_xv_adaptors * sizeof(int));\n\n    w->max_width = w->max_height = 65536;\n    w->formats = realloc(w->formats, sizeof(uint32_t));\n    w->formats[0] = 0;\n    for(i = 0; i < x->num_xv_adaptors; i++)\n        if(xv_probe_port(w, x->xv_adaptors[i])) {\n            XvUngrabPort(w->display, x->xv_adaptors[i], CurrentTime);\n            x->xv_adaptors[i] = 0;\n        }\n    if(!w->formats[0] || w->max_width == 65536 || w->max_height == 65536) {\n        xv_cleanup(w);\n        return(-1);\n    }\n\n    /* clean out any unused adaptors */\n    for(i = 0; i < x->num_xv_adaptors; i++) {\n        int j;\n        for(j = 0; w->formats[j]; j++)\n            if(x->xv_ports[j] == x->xv_adaptors[i])\n                break;\n        if(!w->formats[j]) {\n            XvUngrabPort(w->display, x->xv_adaptors[i], CurrentTime);\n            x->xv_adaptors[i] = 0;\n        }\n    }\n\n    w->init = xv_init;\n    w->draw_image = xv_draw;\n    w->cleanup = xv_cleanup;\n    return(0);\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/window.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n\n#include \"window.h\"\n#include \"image.h\"\n#include \"timer.h\"\n#include <time.h>       /* clock_gettime */\n#ifdef HAVE_SYS_TIME_H\n# include <sys/time.h>   /* gettimeofday */\n#endif\n\nzbar_window_t *zbar_window_create ()\n{\n    zbar_window_t *w = calloc(1, sizeof(zbar_window_t));\n    if(!w)\n        return(NULL);\n    err_init(&w->err, ZBAR_MOD_WINDOW);\n    w->overlay = 1;\n    (void)_zbar_mutex_init(&w->imglock);\n    return(w);\n}\n\nvoid zbar_window_destroy (zbar_window_t *w)\n{\n    /* detach */\n    zbar_window_attach(w, NULL, 0);\n    err_cleanup(&w->err);\n    _zbar_mutex_destroy(&w->imglock);\n    free(w);\n}\n\nint zbar_window_attach (zbar_window_t *w,\n                        void *display,\n                        unsigned long drawable)\n{\n    /* release image */\n    zbar_window_draw(w, NULL);\n    if(w->cleanup) {\n        w->cleanup(w);\n        w->cleanup = NULL;\n        w->draw_image = NULL;\n    }\n    if(w->formats) {\n        free(w->formats);\n        w->formats = NULL;\n    }\n    w->src_format = 0;\n    w->src_width = w->src_height = 0;\n    w->scaled_size.x = w->scaled_size.y = 0;\n    w->dst_width = w->dst_height = 0;\n    w->max_width = w->max_height = 1 << 15;\n    w->scale_num = w->scale_den = 1;\n    return(_zbar_window_attach(w, display, drawable));\n}\n\nstatic void window_outline_symbol (zbar_window_t *w,\n                                   uint32_t color,\n                                   const zbar_symbol_t *sym)\n{\n    if(sym->syms) {\n        const zbar_symbol_t *s;\n        for(s = sym->syms->head; s; s = s->next)\n            window_outline_symbol(w, 1, s);\n    }\n    _zbar_window_draw_polygon(w, color, sym->pts, sym->npts);\n}\n\nstatic inline int window_draw_overlay (zbar_window_t *w)\n{\n    if(!w->overlay)\n        return(0);\n    if(w->overlay >= 1 && w->image && w->image->syms) {\n        /* FIXME outline each symbol */\n        const zbar_symbol_t *sym = w->image->syms->head;\n        for(; sym; sym = sym->next) {\n            uint32_t color = ((sym->cache_count < 0) ? 4 : 2);\n            if(sym->type == ZBAR_QRCODE)\n                window_outline_symbol(w, color, sym);\n            else {\n                /* FIXME linear bbox broken */\n                point_t org = w->scaled_offset;\n                int i;\n                for(i = 0; i < sym->npts; i++) {\n                    point_t p = window_scale_pt(w, sym->pts[i]);\n                    p.x += org.x;\n                    p.y += org.y;\n                    if(p.x < 3)\n                        p.x = 3;\n                    else if(p.x > w->width - 4)\n                        p.x = w->width - 4;\n                    if(p.y < 3)\n                        p.y = 3;\n                    else if(p.y > w->height - 4)\n                        p.y = w->height - 4;\n                    _zbar_window_draw_marker(w, color, p);\n                }\n            }\n        }\n    }\n\n    if(w->overlay >= 2) {\n        /* calculate/display frame rate */\n        unsigned long time = _zbar_timer_now();\n        if(w->time) {\n            int avg = w->time_avg = (w->time_avg + time - w->time) / 2;\n            point_t p = { -8, -1 };\n            char text[32];\n            sprintf(text, \"%d.%01d fps\", 1000 / avg, (10000 / avg) % 10);\n            _zbar_window_draw_text(w, 3, p, text);\n        }\n        w->time = time;\n    }\n    return(0);\n}\n\ninline int zbar_window_redraw (zbar_window_t *w)\n{\n    int rc = 0;\n    zbar_image_t *img;\n    if(window_lock(w))\n        return(-1);\n    if(!w->display || _zbar_window_begin(w)) {\n        (void)window_unlock(w);\n        return(-1);\n    }\n\n    img = w->image;\n    if(w->init && w->draw_image && img) {\n        int format_change = (w->src_format != img->format &&\n                             w->format != img->format);\n        if(format_change) {\n            _zbar_best_format(img->format, &w->format, w->formats);\n            if(!w->format)\n                rc = err_capture_int(w, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, __func__,\n                                     \"no conversion from %x to supported formats\",\n                                     img->format);\n            w->src_format = img->format;\n        }\n\n        if(!rc && (format_change || !w->scaled_size.x || !w->dst_width)) {\n            point_t size = { w->width, w->height };\n            zprintf(24, \"init: src=%.4s(%08x) %dx%d dst=%.4s(%08x) %dx%d\\n\",\n                    (char*)&w->src_format, w->src_format,\n                    w->src_width, w->src_height,\n                    (char*)&w->format, w->format,\n                    w->dst_width, w->dst_height);\n            if(!w->dst_width) {\n                w->src_width = img->width;\n                w->src_height = img->height;\n            }\n\n            if(size.x > w->max_width)\n                size.x = w->max_width;\n            if(size.y > w->max_height)\n                size.y = w->max_height;\n\n            if(size.x * w->src_height < size.y * w->src_width) {\n                w->scale_num = size.x;\n                w->scale_den = w->src_width;\n            }\n            else {\n                w->scale_num = size.y;\n                w->scale_den = w->src_height;\n            }\n\n            rc = w->init(w, img, format_change);\n\n            if(!rc) {\n                size.x = w->src_width;\n                size.y = w->src_height;\n                w->scaled_size = size = window_scale_pt(w, size);\n                w->scaled_offset.x = ((int)w->width - size.x) / 2;\n                w->scaled_offset.y = ((int)w->height - size.y) / 2;\n                zprintf(24, \"scale: src=%dx%d win=%dx%d by %d/%d => %dx%d @%d,%d\\n\",\n                        w->src_width, w->src_height, w->width, w->height,\n                        w->scale_num, w->scale_den,\n                        size.x, size.y, w->scaled_offset.x, w->scaled_offset.y);\n            }\n            else {\n                /* unable to display this image */\n                _zbar_image_refcnt(img, -1);\n                w->image = img = NULL;\n            }\n        }\n\n        if(!rc &&\n           (img->format != w->format ||\n            img->width != w->dst_width ||\n            img->height != w->dst_height)) {\n            /* save *converted* image for redraw */\n            zprintf(48, \"convert: %.4s(%08x) %dx%d => %.4s(%08x) %dx%d\\n\",\n                    (char*)&img->format, img->format, img->width, img->height,\n                    (char*)&w->format, w->format, w->dst_width, w->dst_height);\n            w->image = zbar_image_convert_resize(img, w->format,\n                                                 w->dst_width, w->dst_height);\n            w->image->syms = img->syms;\n            if(img->syms)\n                zbar_symbol_set_ref(img->syms, 1);\n            zbar_image_destroy(img);\n            img = w->image;\n        }\n\n        if(!rc) {\n            point_t org;\n            rc = w->draw_image(w, img);\n\n            org = w->scaled_offset;\n            if(org.x > 0) {\n                point_t p = { 0, org.y };\n                point_t s = { org.x, w->scaled_size.y };\n                _zbar_window_fill_rect(w, 0, p, s);\n                s.x = w->width - w->scaled_size.x - s.x;\n                if(s.x > 0) {\n                    p.x = w->width - s.x;\n                    _zbar_window_fill_rect(w, 0, p, s);\n                }\n            }\n            if(org.y > 0) {\n                point_t p = { 0, 0 };\n                point_t s = { w->width, org.y };\n                _zbar_window_fill_rect(w, 0, p, s);\n                s.y = w->height - w->scaled_size.y - s.y;\n                if(s.y > 0) {\n                    p.y = w->height - s.y;\n                    _zbar_window_fill_rect(w, 0, p, s);\n                }\n            }\n        }\n        if(!rc)\n            rc = window_draw_overlay(w);\n    }\n    else\n        rc = 1;\n\n    if(rc)\n        rc = _zbar_window_draw_logo(w);\n\n    _zbar_window_end(w);\n    (void)window_unlock(w);\n    return(rc);\n}\n\nint zbar_window_draw (zbar_window_t *w,\n                      zbar_image_t *img)\n{\n    if(window_lock(w))\n        return(-1);\n    if(!w->draw_image)\n        img = NULL;\n    if(img) {\n        _zbar_image_refcnt(img, 1);\n        if(img->width != w->src_width ||\n           img->height != w->src_height)\n            w->dst_width = 0;\n    }\n    if(w->image)\n        _zbar_image_refcnt(w->image, -1);\n    w->image = img;\n    return(window_unlock(w));\n}\n\nvoid zbar_window_set_overlay (zbar_window_t *w,\n                              int lvl)\n{\n    if(lvl < 0)\n        lvl = 0;\n    if(lvl > 2)\n        lvl = 2;\n    if(window_lock(w))\n        return;\n    if(w->overlay != lvl)\n        w->overlay = lvl;\n    (void)window_unlock(w);\n}\n\nint zbar_window_get_overlay (const zbar_window_t *w)\n{\n    zbar_window_t *ncw = (zbar_window_t*)w;\n    int lvl;\n    if(window_lock(ncw))\n        return(-1);\n    lvl = w->overlay;\n    (void)window_unlock(ncw);\n    return(lvl);\n}\n\nint zbar_window_resize (zbar_window_t *w,\n                        unsigned width,\n                        unsigned height)\n{\n    if(window_lock(w))\n        return(-1);\n    w->width = width;\n    w->height = height;\n    w->scaled_size.x = 0;\n    _zbar_window_resize(w);\n    return(window_unlock(w));\n}\n"
  },
  {
    "path": "zbar/src/main/jni/zbar/window.h",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#ifndef _WINDOW_H_\n#define _WINDOW_H_\n\n#include <config.h>\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#include <stdlib.h>\n\n#include <zbar.h>\n#include \"symbol.h\"\n#include \"error.h\"\n#include \"mutex.h\"\n\ntypedef struct window_state_s window_state_t;\n\nstruct zbar_window_s {\n    errinfo_t err;              /* error reporting */\n    zbar_image_t *image;        /* last displayed image\n                                 * NB image access must be locked!\n                                 */\n    unsigned overlay;           /* user set overlay level */\n\n    uint32_t format;            /* output format */\n    unsigned width, height;     /* current output size */\n    unsigned max_width, max_height;\n\n    uint32_t src_format;        /* current input format */\n    unsigned src_width;         /* last displayed image size */\n    unsigned src_height;\n\n    unsigned dst_width;         /* conversion target */\n    unsigned dst_height;\n\n    unsigned scale_num;         /* output scaling */\n    unsigned scale_den;\n\n    point_t scaled_offset;      /* output position and size */\n    point_t scaled_size;\n\n    uint32_t *formats;          /* supported formats (zero terminated) */\n\n    zbar_mutex_t imglock;       /* lock displayed image */\n\n    void *display;\n    unsigned long xwin;\n    unsigned long time;         /* last image display in milliseconds */\n    unsigned long time_avg;     /* average of inter-frame times */\n\n    window_state_t *state;      /* platform/interface specific state */\n\n    /* interface dependent methods */\n    int (*init)(zbar_window_t*, zbar_image_t*, int);\n    int (*draw_image)(zbar_window_t*, zbar_image_t*);\n    int (*cleanup)(zbar_window_t*);\n};\n\n/* window.draw has to be thread safe wrt/other apis\n * FIXME should be a semaphore\n */\nstatic inline int window_lock (zbar_window_t *w)\n{\n    int rc = 0;\n    if((rc = _zbar_mutex_lock(&w->imglock))) {\n        err_capture(w, SEV_FATAL, ZBAR_ERR_LOCKING, __func__,\n                    \"unable to acquire lock\");\n        w->err.errnum = rc;\n        return(-1);\n    }\n    return(0);\n}\n\nstatic inline int window_unlock (zbar_window_t *w)\n{\n    int rc = 0;\n    if((rc = _zbar_mutex_unlock(&w->imglock))) {\n        err_capture(w, SEV_FATAL, ZBAR_ERR_LOCKING, __func__,\n                    \"unable to release lock\");\n        w->err.errnum = rc;\n        return(-1);\n    }\n    return(0);\n}\n\nstatic inline int _zbar_window_add_format (zbar_window_t *w,\n                                           uint32_t fmt)\n{\n    int i;\n    for(i = 0; w->formats && w->formats[i]; i++)\n        if(w->formats[i] == fmt)\n            return(i);\n\n    w->formats = realloc(w->formats, (i + 2) * sizeof(uint32_t));\n    w->formats[i] = fmt;\n    w->formats[i + 1] = 0;\n    return(i);\n}\n\nstatic inline point_t window_scale_pt (zbar_window_t *w,\n                                       point_t p)\n{\n    p.x = ((long)p.x * w->scale_num + w->scale_den - 1) / w->scale_den;\n    p.y = ((long)p.y * w->scale_num + w->scale_den - 1) / w->scale_den;\n    return(p);\n}\n\n\n/* PAL interface */\nextern int _zbar_window_attach(zbar_window_t*, void*, unsigned long);\nextern int _zbar_window_expose(zbar_window_t*, int, int, int, int);\nextern int _zbar_window_resize(zbar_window_t*);\nextern int _zbar_window_clear(zbar_window_t*);\nextern int _zbar_window_begin(zbar_window_t*);\nextern int _zbar_window_end(zbar_window_t*);\nextern int _zbar_window_draw_marker(zbar_window_t*, uint32_t, point_t);\nextern int _zbar_window_draw_polygon(zbar_window_t*, uint32_t, const point_t*, int);\nextern int _zbar_window_draw_text(zbar_window_t*, uint32_t,\n                                  point_t, const char*);\nextern int _zbar_window_fill_rect(zbar_window_t*, uint32_t, point_t, point_t);\nextern int _zbar_window_draw_logo(zbar_window_t*);\n\n#endif\n"
  },
  {
    "path": "zbar/src/main/jni/zbarjni.c",
    "content": "/*------------------------------------------------------------------------\n *  Copyright 2010 (c) Jeff Brown <spadix@users.sourceforge.net>\n *\n *  This file is part of the ZBar Bar Code Reader.\n *\n *  The ZBar Bar Code Reader is free software; you can redistribute it\n *  and/or modify it under the terms of the GNU Lesser Public License as\n *  published by the Free Software Foundation; either version 2.1 of\n *  the License, or (at your option) any later version.\n *\n *  The ZBar Bar Code Reader is distributed in the hope that it will be\n *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n *  GNU Lesser Public License for more details.\n *\n *  You should have received a copy of the GNU Lesser Public License\n *  along with the ZBar Bar Code Reader; if not, write to the Free\n *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n *  Boston, MA  02110-1301  USA\n *\n *  http://sourceforge.net/projects/zbar\n *------------------------------------------------------------------------*/\n#include <inttypes.h>\n#include <assert.h>\n#include <zbar.h>\n#include <jni.h>\n\nstatic jfieldID SymbolSet_peer;\nstatic jfieldID Symbol_peer;\nstatic jfieldID Image_peer, Image_data;\nstatic jfieldID ImageScanner_peer;\n\nstatic struct {\n    int SymbolSet_create, SymbolSet_destroy;\n    int Symbol_create, Symbol_destroy;\n    int Image_create, Image_destroy;\n    int ImageScanner_create, ImageScanner_destroy;\n} stats;\n\n\n#define PEER_CAST(l) \\\n    ((void*)(uintptr_t)(l))\n\n#define GET_PEER(c, o) \\\n    PEER_CAST((*env)->GetLongField(env, (o), c ## _peer))\n\n\nstatic inline void\nthrow_exc(JNIEnv *env,\n          const char *name,\n          const char *msg)\n{\n    jclass cls = (*env)->FindClass(env, name);\n    if(cls)\n        (*env)->ThrowNew(env, cls, msg);\n    (*env)->DeleteLocalRef(env, cls);\n}\n\nstatic inline uint32_t\nformat_to_fourcc(JNIEnv *env,\n                 jstring format)\n{\n    if(!format)\n        goto invalid;\n\n    int n = (*env)->GetStringLength(env, format);\n    if(0 >= n || n > 4)\n        goto invalid;\n\n    char fmtstr[8];\n    (*env)->GetStringUTFRegion(env, format, 0, n, fmtstr);\n\n    uint32_t fourcc = 0;\n    int i;\n    for(i = 0; i < n; i++) {\n        if(fmtstr[i] < ' ' || 'Z' < fmtstr[i] ||\n           ('9' < fmtstr[i] && fmtstr[i] < 'A') ||\n           (' ' < fmtstr[i] && fmtstr[i] < '0'))\n            goto invalid;\n        fourcc |= ((uint32_t)fmtstr[i]) << (8 * i);\n    }\n    return(fourcc);\n\ninvalid:\n    throw_exc(env, \"java/lang/IllegalArgumentException\",\n              \"invalid format fourcc\");\n    return(0);\n}\n\nstatic JavaVM *jvm = NULL;\n\nJNIEXPORT jint JNICALL\nJNI_OnLoad (JavaVM *_jvm,\n            void *reserved)\n{\n    jvm = _jvm;\n    return(JNI_VERSION_1_2);\n}\n\nJNIEXPORT void JNICALL\nJNI_OnUnload (JavaVM *_jvm,\n              void *reserved)\n{\n    assert(stats.SymbolSet_create == stats.SymbolSet_destroy);\n    assert(stats.Symbol_create == stats.Symbol_destroy);\n    assert(stats.Image_create == stats.Image_destroy);\n    assert(stats.ImageScanner_create == stats.ImageScanner_destroy);\n}\n\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_SymbolSet_init (JNIEnv *env,\n                                          jclass cls)\n{\n    SymbolSet_peer = (*env)->GetFieldID(env, cls, \"peer\", \"J\");\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_SymbolSet_destroy (JNIEnv *env,\n                                             jobject obj,\n                                             jlong peer)\n{\n    zbar_symbol_set_ref(PEER_CAST(peer), -1);\n    stats.SymbolSet_destroy++;\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_SymbolSet_size (JNIEnv *env,\n                                          jobject obj)\n{\n    zbar_symbol_set_t *zsyms = GET_PEER(SymbolSet, obj);\n    if(!zsyms)\n        return(0);\n    return(zbar_symbol_set_get_size(zsyms));\n}\n\nJNIEXPORT jlong JNICALL\nJava_net_sourceforge_zbar_SymbolSet_firstSymbol (JNIEnv *env,\n                                                 jobject obj,\n                                                 jlong peer)\n{\n    if(!peer)\n        return(0);\n    const zbar_symbol_t *zsym = zbar_symbol_set_first_symbol(PEER_CAST(peer));\n    if(zsym) {\n        zbar_symbol_ref(zsym, 1);\n        stats.Symbol_create++;\n    }\n    return((intptr_t)zsym);\n}\n\n\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Symbol_init (JNIEnv *env,\n                                       jclass cls)\n{\n    Symbol_peer = (*env)->GetFieldID(env, cls, \"peer\", \"J\");\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Symbol_destroy (JNIEnv *env,\n                                          jobject obj,\n                                          jlong peer)\n{\n    zbar_symbol_ref(PEER_CAST(peer), -1);\n    stats.Symbol_destroy++;\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Symbol_getType (JNIEnv *env,\n                                          jobject obj,\n                                          jlong peer)\n{\n    return(zbar_symbol_get_type(PEER_CAST(peer)));\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Symbol_getConfigMask (JNIEnv *env,\n                                                jobject obj)\n{\n    return(zbar_symbol_get_configs(GET_PEER(Symbol, obj)));\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Symbol_getModifierMask (JNIEnv *env,\n                                                  jobject obj)\n{\n    return(zbar_symbol_get_modifiers(GET_PEER(Symbol, obj)));\n}\n\nJNIEXPORT jstring JNICALL\nJava_net_sourceforge_zbar_Symbol_getData (JNIEnv *env,\n                                          jobject obj)\n{\n    const char *data = zbar_symbol_get_data(GET_PEER(Symbol, obj));\n    return((*env)->NewStringUTF(env, data));\n}\n\nJNIEXPORT jstring JNICALL\nJava_net_sourceforge_zbar_Symbol_getDataBytes (JNIEnv *env,\n                                               jobject obj)\n{\n    const zbar_symbol_t *zsym = GET_PEER(Symbol, obj);\n    const void *data = zbar_symbol_get_data(zsym);\n    unsigned long datalen = zbar_symbol_get_data_length(zsym);\n    if(!data || !datalen)\n        return(NULL);\n\n    jbyteArray bytes = (*env)->NewByteArray(env, datalen);\n    if(!bytes)\n        return(NULL);\n\n    (*env)->SetByteArrayRegion(env, bytes, 0, datalen, data);\n    return(bytes);\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Symbol_getQuality (JNIEnv *env,\n                                             jobject obj)\n{\n    return(zbar_symbol_get_quality(GET_PEER(Symbol, obj)));\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Symbol_getCount (JNIEnv *env,\n                                           jobject obj)\n{\n    return(zbar_symbol_get_count(GET_PEER(Symbol, obj)));\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Symbol_getLocationSize (JNIEnv *env,\n                                                  jobject obj,\n                                                  jlong peer)\n{\n    return(zbar_symbol_get_loc_size(PEER_CAST(peer)));\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Symbol_getLocationX (JNIEnv *env,\n                                               jobject obj,\n                                               jlong peer,\n                                               jint idx)\n{\n    return(zbar_symbol_get_loc_x(PEER_CAST(peer), idx));\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Symbol_getLocationY (JNIEnv *env,\n                                               jobject obj,\n                                               jlong peer,\n                                               jint idx)\n{\n    return(zbar_symbol_get_loc_y(PEER_CAST(peer), idx));\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Symbol_getOrientation (JNIEnv *env,\n                                                 jobject obj)\n{\n    return(zbar_symbol_get_orientation(GET_PEER(Symbol, obj)));\n}\n\nJNIEXPORT jlong JNICALL\nJava_net_sourceforge_zbar_Symbol_getComponents (JNIEnv *env,\n                                                jobject obj,\n                                                jlong peer)\n{\n    const zbar_symbol_set_t *zsyms =\n        zbar_symbol_get_components(PEER_CAST(peer));\n    if(zsyms) {\n        zbar_symbol_set_ref(zsyms, 1);\n        stats.SymbolSet_create++;\n    }\n    return((intptr_t)zsyms);\n}\n\nJNIEXPORT jlong JNICALL\nJava_net_sourceforge_zbar_Symbol_next (JNIEnv *env,\n                                       jobject obj)\n{\n    const zbar_symbol_t *zsym = zbar_symbol_next(GET_PEER(Symbol, obj));\n    if(zsym) {\n        zbar_symbol_ref(zsym, 1);\n        stats.Symbol_create++;\n    }\n    return((intptr_t)zsym);\n}\n\n\n\nstatic void\nImage_cleanupByteArray (zbar_image_t *zimg)\n{\n    jobject data = zbar_image_get_userdata(zimg);\n    assert(data);\n\n    JNIEnv *env = NULL;\n    if((*jvm)->AttachCurrentThread(jvm, (void*)&env, NULL))\n        return;\n    assert(env);\n    if(env && data) {\n        void *raw = (void*)zbar_image_get_data(zimg);\n        assert(raw);\n        /* const image data is unchanged - abort copy back */\n        (*env)->ReleaseByteArrayElements(env, data, raw, JNI_ABORT);\n        (*env)->DeleteGlobalRef(env, data);\n        zbar_image_set_userdata(zimg, NULL);\n    }\n}\n\nstatic void\nImage_cleanupIntArray (zbar_image_t *zimg)\n{\n    jobject data = zbar_image_get_userdata(zimg);\n    assert(data);\n\n    JNIEnv *env = NULL;\n    if((*jvm)->AttachCurrentThread(jvm, (void*)&env, NULL))\n        return;\n    assert(env);\n    if(env && data) {\n        void *raw = (void*)zbar_image_get_data(zimg);\n        assert(raw);\n        /* const image data is unchanged - abort copy back */\n        (*env)->ReleaseIntArrayElements(env, data, raw, JNI_ABORT);\n        (*env)->DeleteGlobalRef(env, data);\n        zbar_image_set_userdata(zimg, NULL);\n    }\n}\n\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Image_init (JNIEnv *env,\n                                      jclass cls)\n{\n    Image_peer = (*env)->GetFieldID(env, cls, \"peer\", \"J\");\n    Image_data = (*env)->GetFieldID(env, cls, \"data\", \"Ljava/lang/Object;\");\n}\n\nJNIEXPORT jlong JNICALL\nJava_net_sourceforge_zbar_Image_create (JNIEnv *env,\n                                        jobject obj)\n{\n    zbar_image_t *zimg = zbar_image_create();\n    if(!zimg) {\n        throw_exc(env, \"java/lang/OutOfMemoryError\", NULL);\n        return(0);\n    }\n    stats.Image_create++;\n    return((intptr_t)zimg);\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Image_destroy (JNIEnv *env,\n                                         jobject obj,\n                                         jlong peer)\n{\n    zbar_image_ref(PEER_CAST(peer), -1);\n    stats.Image_destroy++;\n}\n\nJNIEXPORT jlong JNICALL\nJava_net_sourceforge_zbar_Image_convert (JNIEnv *env,\n                                         jobject obj,\n                                         jlong peer,\n                                         jstring format)\n{\n    uint32_t fourcc = format_to_fourcc(env, format);\n    if(!fourcc)\n        return(0);\n    zbar_image_t *zimg = zbar_image_convert(PEER_CAST(peer), fourcc);\n    if(!zimg)\n        throw_exc(env, \"java/lang/UnsupportedOperationException\",\n                  \"unsupported image format\");\n    else\n        stats.Image_create++;\n    return((intptr_t)zimg);\n}\n\nJNIEXPORT jstring JNICALL\nJava_net_sourceforge_zbar_Image_getFormat (JNIEnv *env,\n                                           jobject obj)\n{\n    uint32_t fourcc = zbar_image_get_format(GET_PEER(Image, obj));\n    if(!fourcc)\n        return(NULL);\n    char fmtstr[5] = { fourcc, fourcc >> 8, fourcc >> 16, fourcc >> 24, 0 };\n    return((*env)->NewStringUTF(env, fmtstr));\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Image_setFormat (JNIEnv *env,\n                                           jobject obj,\n                                           jstring format)\n{\n    uint32_t fourcc = format_to_fourcc(env, format);\n    if(!fourcc)\n        return;\n    zbar_image_set_format(GET_PEER(Image, obj), fourcc);\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Image_getSequence (JNIEnv *env,\n                                             jobject obj)\n{\n    return(zbar_image_get_sequence(GET_PEER(Image, obj)));\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Image_setSequence (JNIEnv *env,\n                                             jobject obj,\n                                             jint seq)\n{\n    zbar_image_set_sequence(GET_PEER(Image, obj), seq);\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Image_getWidth (JNIEnv *env,\n                                          jobject obj)\n{\n    return(zbar_image_get_width(GET_PEER(Image, obj)));\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_Image_getHeight (JNIEnv *env,\n                                           jobject obj)\n{\n    return(zbar_image_get_height(GET_PEER(Image, obj)));\n}\n\nJNIEXPORT jobject JNICALL\nJava_net_sourceforge_zbar_Image_getSize (JNIEnv *env,\n                                         jobject obj)\n{\n    jintArray size = (*env)->NewIntArray(env, 2);\n    if(!size)\n        return(NULL);\n\n    unsigned dims[2];\n    zbar_image_get_size(GET_PEER(Image, obj), dims, dims + 1);\n    jint jdims[2] = { dims[0], dims[1] };\n    (*env)->SetIntArrayRegion(env, size, 0, 2, jdims);\n    return(size);\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Image_setSize__II (JNIEnv *env,\n                                             jobject obj,\n                                             jint width,\n                                             jint height)\n{\n    if(width < 0) width = 0;\n    if(height < 0) height = 0;\n    zbar_image_set_size(GET_PEER(Image, obj), width, height);\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Image_setSize___3I (JNIEnv *env,\n                                              jobject obj,\n                                              jintArray size)\n{\n    if((*env)->GetArrayLength(env, size) != 2)\n        throw_exc(env, \"java/lang/IllegalArgumentException\",\n                  \"size must be an array of two ints\");\n    jint dims[2];\n    (*env)->GetIntArrayRegion(env, size, 0, 2, dims);\n    if(dims[0] < 0) dims[0] = 0;\n    if(dims[1] < 0) dims[1] = 0;\n    zbar_image_set_size(GET_PEER(Image, obj), dims[0], dims[1]);\n}\n\nJNIEXPORT jobject JNICALL\nJava_net_sourceforge_zbar_Image_getCrop (JNIEnv *env,\n                                         jobject obj)\n{\n    jintArray crop = (*env)->NewIntArray(env, 4);\n    if(!crop)\n        return(NULL);\n\n    unsigned dims[4];\n    zbar_image_get_crop(GET_PEER(Image, obj), dims, dims + 1,\n                        dims + 2, dims + 3);\n    jint jdims[4] = { dims[0], dims[1], dims[2], dims[3] };\n    (*env)->SetIntArrayRegion(env, crop, 0, 4, jdims);\n    return(crop);\n}\n\n#define VALIDATE_CROP(u, m) \\\n    if((u) < 0) {           \\\n        (m) += (u);         \\\n        (u) = 0;            \\\n    }\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Image_setCrop__IIII (JNIEnv *env,\n                                               jobject obj,\n                                               jint x, jint y,\n                                               jint w, jint h)\n{\n    VALIDATE_CROP(x, w);\n    VALIDATE_CROP(y, h);\n    zbar_image_set_crop(GET_PEER(Image, obj), x, y, w, h);\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Image_setCrop___3I (JNIEnv *env,\n                                              jobject obj,\n                                              jintArray crop)\n{\n    if((*env)->GetArrayLength(env, crop) != 4)\n        throw_exc(env, \"java/lang/IllegalArgumentException\",\n                  \"crop must be an array of four ints\");\n    jint dims[4];\n    (*env)->GetIntArrayRegion(env, crop, 0, 4, dims);\n    VALIDATE_CROP(dims[0], dims[2]);\n    VALIDATE_CROP(dims[1], dims[3]);\n    zbar_image_set_crop(GET_PEER(Image, obj),\n                        dims[0], dims[1], dims[2], dims[3]);\n}\n#undef VALIDATE_CROP\n\nJNIEXPORT jobject JNICALL\nJava_net_sourceforge_zbar_Image_getData (JNIEnv *env,\n                                         jobject obj)\n{\n    jobject data = (*env)->GetObjectField(env, obj, Image_data);\n    if(data)\n        return(data);\n\n    zbar_image_t *zimg = GET_PEER(Image, obj);\n    data = zbar_image_get_userdata(zimg);\n    if(data)\n        return(data);\n\n    unsigned long rawlen = zbar_image_get_data_length(zimg);\n    const void *raw = zbar_image_get_data(zimg);\n    if(!rawlen || !raw)\n        return(NULL);\n\n    data = (*env)->NewByteArray(env, rawlen);\n    if(!data)\n        return(NULL);\n\n    (*env)->SetByteArrayRegion(env, data, 0, rawlen, raw);\n    (*env)->SetObjectField(env, obj, Image_data, data);\n    return(data);\n}\n\nstatic inline void\nImage_setData (JNIEnv *env,\n               jobject obj,\n               jbyteArray data,\n               void *raw,\n               unsigned long rawlen,\n               zbar_image_cleanup_handler_t *cleanup)\n{\n    if(!data)\n        cleanup = NULL;\n    (*env)->SetObjectField(env, obj, Image_data, data);\n    zbar_image_t *zimg = GET_PEER(Image, obj);\n    zbar_image_set_data(zimg, raw, rawlen, cleanup);\n    zbar_image_set_userdata(zimg, (*env)->NewGlobalRef(env, data));\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Image_setData___3B (JNIEnv *env,\n                                              jobject obj,\n                                              jbyteArray data)\n{\n    jbyte *raw = NULL;\n    unsigned long rawlen = 0;\n    if(data) {\n        raw = (*env)->GetByteArrayElements(env, data, NULL);\n        if(!raw)\n            return;\n        rawlen = (*env)->GetArrayLength(env, data);\n    }\n    Image_setData(env, obj, data, raw, rawlen, Image_cleanupByteArray);\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_Image_setData___3I (JNIEnv *env,\n                                              jobject obj,\n                                              jintArray data)\n{\n    jint *raw = NULL;\n    unsigned long rawlen = 0;\n    if(data) {\n        raw = (*env)->GetIntArrayElements(env, data, NULL);\n        if(!raw)\n            return;\n        rawlen = (*env)->GetArrayLength(env, data) * sizeof(*raw);\n    }\n    Image_setData(env, obj, data, raw, rawlen, Image_cleanupIntArray);\n}\n\nJNIEXPORT jlong JNICALL\nJava_net_sourceforge_zbar_Image_getSymbols (JNIEnv *env,\n                                            jobject obj,\n                                            jlong peer)\n{\n    const zbar_symbol_set_t *zsyms = zbar_image_get_symbols(PEER_CAST(peer));\n    if(zsyms) {\n        zbar_symbol_set_ref(zsyms, 1);\n        stats.SymbolSet_create++;\n    }\n    return((intptr_t)zsyms);\n}\n\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_ImageScanner_init (JNIEnv *env,\n                                             jclass cls)\n{\n    ImageScanner_peer = (*env)->GetFieldID(env, cls, \"peer\", \"J\");\n}\n\nJNIEXPORT jlong JNICALL\nJava_net_sourceforge_zbar_ImageScanner_create (JNIEnv *env,\n                                               jobject obj)\n{\n    zbar_image_scanner_t *zscn = zbar_image_scanner_create();\n    if(!zscn) {\n        throw_exc(env, \"java/lang/OutOfMemoryError\", NULL);\n        return(0);\n    }\n    stats.ImageScanner_create++;\n    return((intptr_t)zscn);\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_ImageScanner_destroy (JNIEnv *env,\n                                                jobject obj,\n                                                jlong peer)\n{\n    zbar_image_scanner_destroy(PEER_CAST(peer));\n    stats.ImageScanner_destroy++;\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_ImageScanner_setConfig (JNIEnv *env,\n                                                  jobject obj,\n                                                  jint symbology,\n                                                  jint config,\n                                                  jint value)\n{\n    zbar_image_scanner_set_config(GET_PEER(ImageScanner, obj),\n                                  symbology, config, value);\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_ImageScanner_parseConfig (JNIEnv *env,\n                                                    jobject obj,\n                                                    jstring cfg)\n{\n    const char *cfgstr = (*env)->GetStringUTFChars(env, cfg, NULL);\n    if(!cfgstr)\n        return;\n    if(zbar_image_scanner_parse_config(GET_PEER(ImageScanner, obj), cfgstr))\n        throw_exc(env, \"java/lang/IllegalArgumentException\",\n                  \"unknown configuration\");\n}\n\nJNIEXPORT void JNICALL\nJava_net_sourceforge_zbar_ImageScanner_enableCache (JNIEnv *env,\n                                                    jobject obj,\n                                                    jboolean enable)\n{\n    zbar_image_scanner_enable_cache(GET_PEER(ImageScanner, obj), enable);\n}\n\nJNIEXPORT jlong JNICALL\nJava_net_sourceforge_zbar_ImageScanner_getResults (JNIEnv *env,\n                                                   jobject obj,\n                                                   jlong peer)\n{\n    const zbar_symbol_set_t *zsyms =\n        zbar_image_scanner_get_results(PEER_CAST(peer));\n    if(zsyms) {\n        zbar_symbol_set_ref(zsyms, 1);\n        stats.SymbolSet_create++;\n    }\n    return((intptr_t)zsyms);\n}\n\nJNIEXPORT jint JNICALL\nJava_net_sourceforge_zbar_ImageScanner_scanImage (JNIEnv *env,\n                                                  jobject obj,\n                                                  jobject image)\n{\n    zbar_image_scanner_t *zscn = GET_PEER(ImageScanner, obj);\n    zbar_image_t *zimg = GET_PEER(Image, image);\n\n    int n = zbar_scan_image(zscn, zimg);\n    if(n < 0)\n        throw_exc(env, \"java/lang/UnsupportedOperationException\",\n                  \"unsupported image format\");\n    return(n);\n}\n"
  },
  {
    "path": "zbardemo/build.gradle",
    "content": "apply plugin: 'com.android.application'\n\nandroid {\n    compileSdkVersion ANDROID_BUILD_SDK_VERSION as int\n\n    defaultConfig {\n        minSdkVersion ANDROID_BUILD_MIN_SDK_VERSION as int\n        targetSdkVersion ANDROID_BUILD_TARGET_SDK_VERSION as int\n        versionCode VERSION_CODE as int\n        versionName VERSION_NAME\n    }\n\n    dataBinding {\n        enabled = true\n    }\n\n    buildTypes {\n        release {\n            minifyEnabled true\n            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'\n        }\n    }\n}\n\ndependencies {\n    // -------------------- 以下几个库是为了方便编写演示案例添加进来的，集成到你自己项目时可以不依赖这些库 --------------------\n    implementation 'com.android.support:appcompat-v7:28.0.0'\n    implementation 'com.android.support:support-v4:28.0.0'\n    implementation 'com.android.support:recyclerview-v7:28.0.0'\n    implementation 'pub.devrel:easypermissions:1.0.1'\n    implementation 'cn.bingoogolapple:bga-photopicker:1.2.8@aar'\n    implementation 'cn.bingoogolapple:bga-baseadapter:1.2.9@aar'\n    implementation 'cn.bingoogolapple:bga-flowlayout:1.0.0@aar'\n    implementation 'com.github.bumptech.glide:glide:4.7.1'\n    // -------------------- 以上几个库是为了方便编写演示案例添加进来的，集成到你自己项目时可以不依赖这些库 --------------------\n\n    implementation project(':zbar')\n\n    // -------------------- 以下一个库是必须依赖的 ----------------------------\n//    implementation 'com.github.bingoogolapple.BGAQRCode-Android:zbar:1.3.8'\n    // -------------------- 以上一个库是必须依赖的 ----------------------------\n}"
  },
  {
    "path": "zbardemo/proguard-rules.pro",
    "content": ""
  },
  {
    "path": "zbardemo/src/main/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"cn.bingoogolapple.qrcode.zbardemo\">\n\n    <uses-permission android:name=\"android.permission.VIBRATE\" />\n    <uses-permission android:name=\"android.permission.READ_EXTERNAL_STORAGE\" />\n\n    <application\n        android:allowBackup=\"true\"\n        android:icon=\"@mipmap/ic_launcher\"\n        android:label=\"@string/app_name\"\n        android:theme=\"@style/AppTheme\">\n        <activity\n            android:name=\".MainActivity\"\n            android:label=\"@string/app_name\"\n            android:screenOrientation=\"portrait\">\n            <intent-filter>\n                <action android:name=\"android.intent.action.MAIN\" />\n\n                <category android:name=\"android.intent.category.LAUNCHER\" />\n            </intent-filter>\n        </activity>\n\n        <activity android:name=\".TestScanActivity\" />\n    </application>\n\n</manifest>\n"
  },
  {
    "path": "zbardemo/src/main/java/cn/bingoogolapple/qrcode/zbardemo/MainActivity.java",
    "content": "package cn.bingoogolapple.qrcode.zbardemo;\n\nimport android.Manifest;\nimport android.content.Intent;\nimport android.os.Bundle;\nimport android.support.v7.app.AppCompatActivity;\nimport android.support.v7.widget.Toolbar;\nimport android.view.View;\n\nimport java.util.List;\n\nimport cn.bingoogolapple.qrcode.core.BGAQRCodeUtil;\nimport pub.devrel.easypermissions.AfterPermissionGranted;\nimport pub.devrel.easypermissions.EasyPermissions;\n\npublic class MainActivity extends AppCompatActivity implements EasyPermissions.PermissionCallbacks {\n    private static final int REQUEST_CODE_QRCODE_PERMISSIONS = 1;\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_main);\n        setSupportActionBar((Toolbar) findViewById(R.id.toolbar));\n\n        BGAQRCodeUtil.setDebug(true);\n    }\n\n    public void onClick(View view) {\n        switch (view.getId()) {\n            case R.id.test_scan_qrcode:\n                startActivity(new Intent(this, TestScanActivity.class));\n                break;\n        }\n    }\n\n    @Override\n    protected void onStart() {\n        super.onStart();\n        requestCodeQRCodePermissions();\n    }\n\n    @Override\n    public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {\n        EasyPermissions.onRequestPermissionsResult(requestCode, permissions, grantResults, this);\n    }\n\n    @Override\n    public void onPermissionsGranted(int requestCode, List<String> perms) {\n    }\n\n    @Override\n    public void onPermissionsDenied(int requestCode, List<String> perms) {\n    }\n\n    @AfterPermissionGranted(REQUEST_CODE_QRCODE_PERMISSIONS)\n    private void requestCodeQRCodePermissions() {\n        String[] perms = {Manifest.permission.CAMERA, Manifest.permission.READ_EXTERNAL_STORAGE};\n        if (!EasyPermissions.hasPermissions(this, perms)) {\n            EasyPermissions.requestPermissions(this, \"扫描二维码需要打开相机和散光灯的权限\", REQUEST_CODE_QRCODE_PERMISSIONS, perms);\n        }\n    }\n}\n"
  },
  {
    "path": "zbardemo/src/main/java/cn/bingoogolapple/qrcode/zbardemo/TestScanActivity.java",
    "content": "package cn.bingoogolapple.qrcode.zbardemo;\n\nimport android.app.Activity;\nimport android.content.Intent;\nimport android.os.Bundle;\nimport android.os.Vibrator;\nimport android.support.v7.app.AppCompatActivity;\nimport android.support.v7.widget.Toolbar;\nimport android.util.Log;\nimport android.view.View;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\nimport cn.bingoogolapple.photopicker.activity.BGAPhotoPickerActivity;\nimport cn.bingoogolapple.qrcode.core.BarcodeType;\nimport cn.bingoogolapple.qrcode.core.QRCodeView;\nimport cn.bingoogolapple.qrcode.zbar.BarcodeFormat;\nimport cn.bingoogolapple.qrcode.zbar.ZBarView;\n\npublic class TestScanActivity extends AppCompatActivity implements QRCodeView.Delegate {\n    private static final String TAG = TestScanActivity.class.getSimpleName();\n    private static final int REQUEST_CODE_CHOOSE_QRCODE_FROM_GALLERY = 666;\n\n    private ZBarView mZBarView;\n\n    public void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_test_scan);\n        setSupportActionBar((Toolbar) findViewById(R.id.toolbar));\n\n        mZBarView = findViewById(R.id.zbarview);\n        mZBarView.setDelegate(this);\n    }\n\n    @Override\n    protected void onStart() {\n        super.onStart();\n        mZBarView.startCamera(); // 打开后置摄像头开始预览，但是并未开始识别\n//        mZBarView.startCamera(Camera.CameraInfo.CAMERA_FACING_FRONT); // 打开前置摄像头开始预览，但是并未开始识别\n\n        mZBarView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n    }\n\n    @Override\n    protected void onStop() {\n        mZBarView.stopCamera(); // 关闭摄像头预览，并且隐藏扫描框\n        super.onStop();\n    }\n\n    @Override\n    protected void onDestroy() {\n        mZBarView.onDestroy(); // 销毁二维码扫描控件\n        super.onDestroy();\n    }\n\n    private void vibrate() {\n        Vibrator vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);\n        vibrator.vibrate(200);\n    }\n\n    @Override\n    public void onScanQRCodeSuccess(String result) {\n        Log.i(TAG, \"result:\" + result);\n        setTitle(\"扫描结果为：\" + result);\n        vibrate();\n\n        mZBarView.startSpot(); // 开始识别\n    }\n\n    @Override\n    public void onCameraAmbientBrightnessChanged(boolean isDark) {\n        // 这里是通过修改提示文案来展示环境是否过暗的状态，接入方也可以根据 isDark 的值来实现其他交互效果\n        String tipText = mZBarView.getScanBoxView().getTipText();\n        String ambientBrightnessTip = \"\\n环境过暗，请打开闪光灯\";\n        if (isDark) {\n            if (!tipText.contains(ambientBrightnessTip)) {\n                mZBarView.getScanBoxView().setTipText(tipText + ambientBrightnessTip);\n            }\n        } else {\n            if (tipText.contains(ambientBrightnessTip)) {\n                tipText = tipText.substring(0, tipText.indexOf(ambientBrightnessTip));\n                mZBarView.getScanBoxView().setTipText(tipText);\n            }\n        }\n    }\n\n    @Override\n    public void onScanQRCodeOpenCameraError() {\n        Log.e(TAG, \"打开相机出错\");\n    }\n\n    public void onClick(View v) {\n        switch (v.getId()) {\n            case R.id.start_preview:\n                mZBarView.startCamera(); // 打开后置摄像头开始预览，但是并未开始识别\n                break;\n            case R.id.stop_preview:\n                mZBarView.stopCamera(); // 关闭摄像头预览，并且隐藏扫描框\n                break;\n            case R.id.start_spot:\n                mZBarView.startSpot(); // 开始识别\n                break;\n            case R.id.stop_spot:\n                mZBarView.stopSpot(); // 停止识别\n                break;\n            case R.id.start_spot_showrect:\n                mZBarView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.stop_spot_hiddenrect:\n                mZBarView.stopSpotAndHiddenRect(); // 停止识别，并且隐藏扫描框\n                break;\n            case R.id.show_scan_rect:\n                mZBarView.showScanRect(); // 显示扫描框\n                break;\n            case R.id.hidden_scan_rect:\n                mZBarView.hiddenScanRect(); // 隐藏扫描框\n                break;\n            case R.id.decode_scan_box_area:\n                mZBarView.getScanBoxView().setOnlyDecodeScanBoxArea(true); // 仅识别扫描框中的码\n                break;\n            case R.id.decode_full_screen_area:\n                mZBarView.getScanBoxView().setOnlyDecodeScanBoxArea(false); // 识别整个屏幕中的码\n                break;\n            case R.id.open_flashlight:\n                mZBarView.openFlashlight(); // 打开闪光灯\n                break;\n            case R.id.close_flashlight:\n                mZBarView.closeFlashlight(); // 关闭闪光灯\n                break;\n            case R.id.scan_one_dimension:\n                mZBarView.changeToScanBarcodeStyle(); // 切换成扫描条码样式\n                mZBarView.setType(BarcodeType.ONE_DIMENSION, null); // 只识别一维条码\n                mZBarView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_two_dimension:\n                mZBarView.changeToScanQRCodeStyle(); // 切换成扫描二维码样式\n                mZBarView.setType(BarcodeType.TWO_DIMENSION, null); // 只识别二维条码\n                mZBarView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_qr_code:\n                mZBarView.changeToScanQRCodeStyle(); // 切换成扫描二维码样式\n                mZBarView.setType(BarcodeType.ONLY_QR_CODE, null); // 只识别 QR_CODE\n                mZBarView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_code128:\n                mZBarView.changeToScanBarcodeStyle(); // 切换成扫描条码样式\n                mZBarView.setType(BarcodeType.ONLY_CODE_128, null); // 只识别 CODE_128\n                mZBarView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_ean13:\n                mZBarView.changeToScanBarcodeStyle(); // 切换成扫描条码样式\n                mZBarView.setType(BarcodeType.ONLY_EAN_13, null); // 只识别 EAN_13\n                mZBarView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_high_frequency:\n                mZBarView.changeToScanQRCodeStyle(); // 切换成扫描二维码样式\n                mZBarView.setType(BarcodeType.HIGH_FREQUENCY, null); // 只识别高频率格式，包括 QR_CODE、ISBN13、UPC_A、EAN_13、CODE_128\n                mZBarView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_all:\n                mZBarView.changeToScanQRCodeStyle(); // 切换成扫描二维码样式\n                mZBarView.setType(BarcodeType.ALL, null); // 识别所有类型的码\n                mZBarView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_custom:\n                mZBarView.changeToScanQRCodeStyle(); // 切换成扫描二维码样式\n\n                List<BarcodeFormat> formatList = new ArrayList<>();\n                formatList.add(BarcodeFormat.QRCODE);\n                formatList.add(BarcodeFormat.ISBN13);\n                formatList.add(BarcodeFormat.UPCA);\n                formatList.add(BarcodeFormat.EAN13);\n                formatList.add(BarcodeFormat.CODE128);\n                mZBarView.setType(BarcodeType.CUSTOM, formatList); // 自定义识别的类型\n\n                mZBarView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n\n            case R.id.choose_qrcde_from_gallery:\n                /*\n                从相册选取二维码图片，这里为了方便演示，使用的是\n                https://github.com/bingoogolapple/BGAPhotoPicker-Android\n                这个库来从图库中选择二维码图片，这个库不是必须的，你也可以通过自己的方式从图库中选择图片\n                 */\n                Intent photoPickerIntent = new BGAPhotoPickerActivity.IntentBuilder(this)\n                        .cameraFileDir(null)\n                        .maxChooseCount(1)\n                        .selectedPhotos(null)\n                        .pauseOnScroll(false)\n                        .build();\n                startActivityForResult(photoPickerIntent, REQUEST_CODE_CHOOSE_QRCODE_FROM_GALLERY);\n                break;\n        }\n    }\n\n    @Override\n    protected void onActivityResult(int requestCode, int resultCode, Intent data) {\n        super.onActivityResult(requestCode, resultCode, data);\n\n        mZBarView.showScanRect();\n\n        if (resultCode == Activity.RESULT_OK && requestCode == REQUEST_CODE_CHOOSE_QRCODE_FROM_GALLERY) {\n            final String picturePath = BGAPhotoPickerActivity.getSelectedPhotos(data).get(0);\n            mZBarView.decodeQRCode(picturePath);\n        }\n    }\n\n}"
  },
  {
    "path": "zbardemo/src/main/res/drawable/selector_btn_orange.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_pressed=\"true\">\n        <shape android:shape=\"rectangle\">\n            <solid android:color=\"@color/colorPrimaryDarkTrans\" />\n            <corners android:radius=\"5dp\" />\n        </shape>\n    </item>\n    <item>\n        <shape android:shape=\"rectangle\">\n            <solid android:color=\"@color/colorPrimaryDark\" />\n            <corners android:radius=\"5dp\" />\n        </shape>\n    </item>\n\n</selector>\n"
  },
  {
    "path": "zbardemo/src/main/res/layout/activity_main.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n              style=\"@style/MatchMatch.Vertical\"\n              android:background=\"@android:color/white\">\n\n    <include layout=\"@layout/toolbar\"/>\n\n    <TextView\n        android:id=\"@+id/test_scan_qrcode\"\n        style=\"@style/MatchWrapTv\"\n        android:text=\"测试扫描二维码\"/>\n\n</LinearLayout>"
  },
  {
    "path": "zbardemo/src/main/res/layout/activity_test_scan.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n    style=\"@style/MatchMatch\">\n\n    <cn.bingoogolapple.qrcode.zbar.ZBarView\n        android:id=\"@+id/zbarview\"\n        style=\"@style/MatchMatch\"\n        app:qrcv_animTime=\"1000\"\n        app:qrcv_barCodeTipText=\"将条码放入框内，即可自动扫描\"\n        app:qrcv_barcodeRectHeight=\"120dp\"\n        app:qrcv_borderColor=\"@android:color/white\"\n        app:qrcv_borderSize=\"1dp\"\n        app:qrcv_cornerColor=\"@color/colorPrimaryDark\"\n        app:qrcv_cornerLength=\"20dp\"\n        app:qrcv_cornerSize=\"3dp\"\n        app:qrcv_customGridScanLineDrawable=\"@mipmap/custom_grid_scan_line\"\n        app:qrcv_isAutoZoom=\"true\"\n        app:qrcv_isBarcode=\"false\"\n        app:qrcv_isOnlyDecodeScanBoxArea=\"false\"\n        app:qrcv_isShowDefaultGridScanLineDrawable=\"true\"\n        app:qrcv_isShowDefaultScanLineDrawable=\"true\"\n        app:qrcv_isShowLocationPoint=\"true\"\n        app:qrcv_isShowTipBackground=\"true\"\n        app:qrcv_isShowTipTextAsSingleLine=\"false\"\n        app:qrcv_isTipTextBelowRect=\"false\"\n        app:qrcv_maskColor=\"#33FFFFFF\"\n        app:qrcv_qrCodeTipText=\"将二维码/条码放入框内，即可自动扫描\"\n        app:qrcv_rectWidth=\"200dp\"\n        app:qrcv_scanLineColor=\"@color/colorPrimaryDark\"\n        app:qrcv_toolbarHeight=\"56dp\"\n        app:qrcv_topOffset=\"80dp\"\n        app:qrcv_verticalBias=\"-1\" />\n\n    <include layout=\"@layout/toolbar\" />\n\n    <include layout=\"@layout/view_control\" />\n</RelativeLayout>"
  },
  {
    "path": "zbardemo/src/main/res/layout/toolbar.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<android.support.v7.widget.Toolbar xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@+id/toolbar\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"?attr/actionBarSize\"\n    android:layout_alignParentTop=\"true\"\n    android:background=\"@color/colorPrimary\"\n    android:theme=\"@style/ThemeOverlay.AppCompat.Dark.ActionBar\" />"
  },
  {
    "path": "zbardemo/src/main/res/layout/view_control.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<cn.bingoogolapple.flowlayout.BGAFlowLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n    style=\"@style/MatchWrap\"\n    android:layout_alignParentBottom=\"true\"\n    android:padding=\"4dp\"\n    app:fl_horizontalChildGap=\"4dp\"\n    app:fl_isDistributionWhiteSpacing=\"true\"\n    app:fl_verticalChildGap=\"4dp\">\n\n    <TextView\n        android:id=\"@+id/start_preview\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"开始预览\" />\n\n    <TextView\n        android:id=\"@+id/stop_preview\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"停止预览\" />\n\n    <TextView\n        android:id=\"@+id/start_spot\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"开始识别\" />\n\n    <TextView\n        android:id=\"@+id/stop_spot\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"停止识别\" />\n\n    <TextView\n        android:id=\"@+id/start_spot_showrect\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"开始识别显示扫描框\" />\n\n    <TextView\n        android:id=\"@+id/stop_spot_hiddenrect\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"暂停识别隐藏扫描框\" />\n\n    <TextView\n        android:id=\"@+id/show_scan_rect\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"显示扫描框\" />\n\n    <TextView\n        android:id=\"@+id/hidden_scan_rect\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"隐藏扫描框\" />\n\n    <TextView\n        android:id=\"@+id/decode_scan_box_area\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别扫描框中的码\" />\n\n    <TextView\n        android:id=\"@+id/decode_full_screen_area\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"识别整个屏幕中的码\" />\n\n    <TextView\n        android:id=\"@+id/open_flashlight\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"打开闪光灯\" />\n\n    <TextView\n        android:id=\"@+id/close_flashlight\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"关闭闪光灯\" />\n\n    <TextView\n        android:id=\"@+id/scan_one_dimension\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别一维条码\" />\n\n    <TextView\n        android:id=\"@+id/scan_two_dimension\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别二维条码\" />\n\n    <TextView\n        android:id=\"@+id/scan_qr_code\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别QRCode\" />\n\n    <TextView\n        android:id=\"@+id/scan_code128\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别Code128\" />\n\n    <TextView\n        android:id=\"@+id/scan_ean13\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别EAN13\" />\n\n    <TextView\n        android:id=\"@+id/scan_high_frequency\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别高频率格式\" />\n\n    <TextView\n        android:id=\"@+id/scan_all\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"识别所有码\" />\n\n    <TextView\n        android:id=\"@+id/scan_custom\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"自定义识别格式\" />\n\n    <TextView\n        android:id=\"@+id/choose_qrcde_from_gallery\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"识别图片中的码\" />\n</cn.bingoogolapple.flowlayout.BGAFlowLayout>"
  },
  {
    "path": "zbardemo/src/main/res/values/colors.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <color name=\"colorPrimaryDark\">#f57257</color>\n    <color name=\"colorPrimary\">#f46444</color>\n    <color name=\"navigationBarColor\">#f46444</color>\n\n    <color name=\"colorPrimaryDarkTrans\">#CCf57257</color>\n</resources>"
  },
  {
    "path": "zbardemo/src/main/res/values/strings.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <string name=\"app_name\">ZBarDemo</string>\n\n</resources>"
  },
  {
    "path": "zbardemo/src/main/res/values/styles.xml",
    "content": "<resources xmlns:tools=\"http://schemas.android.com/tools\">\n\n    <style name=\"AppTheme\" parent=\"Theme.AppCompat.Light.NoActionBar\">\n        <item name=\"colorPrimaryDark\">@color/colorPrimaryDark</item>\n        <item name=\"colorPrimary\">@color/colorPrimary</item>\n        <item name=\"colorAccent\">@color/colorPrimary</item>\n        <item name=\"colorControlActivated\">@color/colorPrimary</item>\n        <item name=\"android:navigationBarColor\" tools:targetApi=\"lollipop\">@color/navigationBarColor</item>\n        <item name=\"android:windowBackground\">@android:color/white</item>\n    </style>\n\n    <!-- 适用于开启滑动返回功能的Activity -->\n    <style name=\"AppTheme.Transparent\">\n        <item name=\"android:windowBackground\">@android:color/transparent</item>\n        <item name=\"android:windowIsTranslucent\">true</item>\n    </style>\n\n    <!-- 适用于欢迎界面避免第一次进来白屏或黑屏 -->\n    <style name=\"AppTheme.Transparent.Splash\">\n        <item name=\"android:windowDisablePreview\">true</item>\n    </style>\n\n    <style name=\"MatchWrapTv\" parent=\"MatchWrap\">\n        <item name=\"android:textSize\">12sp</item>\n        <item name=\"android:textColor\">@android:color/white</item>\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:background\">@drawable/selector_btn_orange</item>\n        <item name=\"android:layout_margin\">10dp</item>\n        <item name=\"android:onClick\">onClick</item>\n        <item name=\"android:padding\">8dp</item>\n    </style>\n\n    <style name=\"AutoWrapTv\" parent=\"AutoWrap\">\n        <item name=\"android:textSize\">12sp</item>\n        <item name=\"android:textColor\">@android:color/white</item>\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:background\">@drawable/selector_btn_orange</item>\n        <item name=\"android:layout_margin\">5dp</item>\n        <item name=\"android:onClick\">onClick</item>\n        <item name=\"android:padding\">4dp</item>\n    </style>\n\n    <style name=\"WrapWrapTv\" parent=\"WrapWrap\">\n        <item name=\"android:textSize\">12sp</item>\n        <item name=\"android:textColor\">@android:color/white</item>\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:background\">@drawable/selector_btn_orange</item>\n        <item name=\"android:onClick\">onClick</item>\n        <item name=\"android:padding\">4dp</item>\n    </style>\n\n</resources>"
  },
  {
    "path": "zbardemo/src/main/res/values/styles_base.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <style name=\"WrapMatch\">\n        <item name=\"android:layout_width\">wrap_content</item>\n        <item name=\"android:layout_height\">match_parent</item>\n    </style>\n\n    <style name=\"MatchWrap\">\n        <item name=\"android:layout_width\">match_parent</item>\n        <item name=\"android:layout_height\">wrap_content</item>\n    </style>\n\n    <style name=\"WrapWrap\">\n        <item name=\"android:layout_width\">wrap_content</item>\n        <item name=\"android:layout_height\">wrap_content</item>\n    </style>\n\n    <style name=\"MatchMatch\">\n        <item name=\"android:layout_width\">match_parent</item>\n        <item name=\"android:layout_height\">match_parent</item>\n    </style>\n\n    <style name=\"MatchAuto\">\n        <item name=\"android:layout_width\">match_parent</item>\n        <item name=\"android:layout_weight\">1</item>\n        <item name=\"android:layout_height\">0dp</item>\n    </style>\n\n    <style name=\"AutoMatch\">\n        <item name=\"android:layout_width\">0dp</item>\n        <item name=\"android:layout_weight\">1</item>\n        <item name=\"android:layout_height\">match_parent</item>\n    </style>\n\n    <style name=\"WrapAuto\">\n        <item name=\"android:layout_width\">wrap_content</item>\n        <item name=\"android:layout_weight\">1</item>\n        <item name=\"android:layout_height\">0dp</item>\n    </style>\n\n    <style name=\"AutoWrap\">\n        <item name=\"android:layout_width\">0dp</item>\n        <item name=\"android:layout_weight\">1</item>\n        <item name=\"android:layout_height\">wrap_content</item>\n    </style>\n\n    <style name=\"WrapMatch.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"WrapMatch.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"MatchWrap.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"MatchWrap.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"WrapWrap.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"WrapWrap.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"MatchMatch.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"MatchMatch.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"MatchAuto.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"MatchAuto.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"AutoMatch.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"AutoMatch.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"WrapAuto.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"WrapAuto.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"AutoWrap.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"AutoWrap.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"MatchOne\">\n        <item name=\"android:layout_width\">match_parent</item>\n        <item name=\"android:layout_height\">1px</item>\n    </style>\n\n    <style name=\"OneMatch\">\n        <item name=\"android:layout_width\">1px</item>\n        <item name=\"android:layout_height\">match_parent</item>\n    </style>\n</resources>"
  },
  {
    "path": "zxing/build.gradle",
    "content": "apply plugin: 'com.android.library'\napply plugin: 'com.github.dcendents.android-maven'\n\nandroid {\n    compileSdkVersion ANDROID_BUILD_SDK_VERSION as int\n\n    defaultConfig {\n        minSdkVersion ANDROID_BUILD_MIN_SDK_VERSION as int\n        targetSdkVersion ANDROID_BUILD_TARGET_SDK_VERSION as int\n    }\n}\n\ndependencies {\n    api 'com.google.zxing:core:3.3.3'\n    api project(':qrcodecore')\n}\n"
  },
  {
    "path": "zxing/src/main/AndroidManifest.xml",
    "content": "<manifest package=\"cn.bingoogolapple.qrcode.zxing\"/>"
  },
  {
    "path": "zxing/src/main/java/cn/bingoogolapple/qrcode/zxing/QRCodeDecoder.java",
    "content": "package cn.bingoogolapple.qrcode.zxing;\n\nimport android.graphics.Bitmap;\n\nimport com.google.zxing.BarcodeFormat;\nimport com.google.zxing.BinaryBitmap;\nimport com.google.zxing.DecodeHintType;\nimport com.google.zxing.MultiFormatReader;\nimport com.google.zxing.RGBLuminanceSource;\nimport com.google.zxing.Result;\nimport com.google.zxing.common.GlobalHistogramBinarizer;\nimport com.google.zxing.common.HybridBinarizer;\n\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.EnumMap;\nimport java.util.List;\nimport java.util.Map;\n\nimport cn.bingoogolapple.qrcode.core.BGAQRCodeUtil;\n\n/**\n * 作者:王浩 邮件:bingoogolapple@gmail.com\n * 创建时间:16/4/8 下午11:22\n * 描述:解析二维码图片。一维条码、二维码各种类型简介 https://blog.csdn.net/xdg_blog/article/details/52932707\n */\npublic class QRCodeDecoder {\n    static final Map<DecodeHintType, Object> ALL_HINT_MAP = new EnumMap<>(DecodeHintType.class);\n\n    static {\n        List<BarcodeFormat> allFormatList = new ArrayList<>();\n        allFormatList.add(BarcodeFormat.AZTEC);\n        allFormatList.add(BarcodeFormat.CODABAR);\n        allFormatList.add(BarcodeFormat.CODE_39);\n        allFormatList.add(BarcodeFormat.CODE_93);\n        allFormatList.add(BarcodeFormat.CODE_128);\n        allFormatList.add(BarcodeFormat.DATA_MATRIX);\n        allFormatList.add(BarcodeFormat.EAN_8);\n        allFormatList.add(BarcodeFormat.EAN_13);\n        allFormatList.add(BarcodeFormat.ITF);\n        allFormatList.add(BarcodeFormat.MAXICODE);\n        allFormatList.add(BarcodeFormat.PDF_417);\n        allFormatList.add(BarcodeFormat.QR_CODE);\n        allFormatList.add(BarcodeFormat.RSS_14);\n        allFormatList.add(BarcodeFormat.RSS_EXPANDED);\n        allFormatList.add(BarcodeFormat.UPC_A);\n        allFormatList.add(BarcodeFormat.UPC_E);\n        allFormatList.add(BarcodeFormat.UPC_EAN_EXTENSION);\n\n        // 可能的编码格式\n        ALL_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, allFormatList);\n        // 花更多的时间用于寻找图上的编码，优化准确性，但不优化速度\n        ALL_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);\n        // 复杂模式，开启 PURE_BARCODE 模式（带图片 LOGO 的解码方案）\n//        ALL_HINT_MAP.put(DecodeHintType.PURE_BARCODE, Boolean.TRUE);\n        // 编码字符集\n        ALL_HINT_MAP.put(DecodeHintType.CHARACTER_SET, \"utf-8\");\n    }\n\n    static final Map<DecodeHintType, Object> ONE_DIMENSION_HINT_MAP = new EnumMap<>(DecodeHintType.class);\n\n    static {\n        List<BarcodeFormat> oneDimenFormatList = new ArrayList<>();\n        oneDimenFormatList.add(BarcodeFormat.CODABAR);\n        oneDimenFormatList.add(BarcodeFormat.CODE_39);\n        oneDimenFormatList.add(BarcodeFormat.CODE_93);\n        oneDimenFormatList.add(BarcodeFormat.CODE_128);\n        oneDimenFormatList.add(BarcodeFormat.EAN_8);\n        oneDimenFormatList.add(BarcodeFormat.EAN_13);\n        oneDimenFormatList.add(BarcodeFormat.ITF);\n        oneDimenFormatList.add(BarcodeFormat.PDF_417);\n        oneDimenFormatList.add(BarcodeFormat.RSS_14);\n        oneDimenFormatList.add(BarcodeFormat.RSS_EXPANDED);\n        oneDimenFormatList.add(BarcodeFormat.UPC_A);\n        oneDimenFormatList.add(BarcodeFormat.UPC_E);\n        oneDimenFormatList.add(BarcodeFormat.UPC_EAN_EXTENSION);\n\n        ONE_DIMENSION_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, oneDimenFormatList);\n        ONE_DIMENSION_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);\n        ONE_DIMENSION_HINT_MAP.put(DecodeHintType.CHARACTER_SET, \"utf-8\");\n    }\n\n    static final Map<DecodeHintType, Object> TWO_DIMENSION_HINT_MAP = new EnumMap<>(DecodeHintType.class);\n\n    static {\n        List<BarcodeFormat> twoDimenFormatList = new ArrayList<>();\n        twoDimenFormatList.add(BarcodeFormat.AZTEC);\n        twoDimenFormatList.add(BarcodeFormat.DATA_MATRIX);\n        twoDimenFormatList.add(BarcodeFormat.MAXICODE);\n        twoDimenFormatList.add(BarcodeFormat.QR_CODE);\n\n        TWO_DIMENSION_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, twoDimenFormatList);\n        TWO_DIMENSION_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);\n        TWO_DIMENSION_HINT_MAP.put(DecodeHintType.CHARACTER_SET, \"utf-8\");\n    }\n\n    static final Map<DecodeHintType, Object> QR_CODE_HINT_MAP = new EnumMap<>(DecodeHintType.class);\n\n    static {\n        QR_CODE_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, Collections.singletonList(BarcodeFormat.QR_CODE));\n        QR_CODE_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);\n        QR_CODE_HINT_MAP.put(DecodeHintType.CHARACTER_SET, \"utf-8\");\n    }\n\n    static final Map<DecodeHintType, Object> CODE_128_HINT_MAP = new EnumMap<>(DecodeHintType.class);\n\n    static {\n        CODE_128_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, Collections.singletonList(BarcodeFormat.CODE_128));\n        CODE_128_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);\n        CODE_128_HINT_MAP.put(DecodeHintType.CHARACTER_SET, \"utf-8\");\n    }\n\n    static final Map<DecodeHintType, Object> EAN_13_HINT_MAP = new EnumMap<>(DecodeHintType.class);\n\n    static {\n        EAN_13_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, Collections.singletonList(BarcodeFormat.EAN_13));\n        EAN_13_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);\n        EAN_13_HINT_MAP.put(DecodeHintType.CHARACTER_SET, \"utf-8\");\n    }\n\n    static final Map<DecodeHintType, Object> HIGH_FREQUENCY_HINT_MAP = new EnumMap<>(DecodeHintType.class);\n\n    static {\n        List<BarcodeFormat> highFrequencyFormatList = new ArrayList<>();\n        highFrequencyFormatList.add(BarcodeFormat.QR_CODE);\n        highFrequencyFormatList.add(BarcodeFormat.UPC_A);\n        highFrequencyFormatList.add(BarcodeFormat.EAN_13);\n        highFrequencyFormatList.add(BarcodeFormat.CODE_128);\n\n        HIGH_FREQUENCY_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, highFrequencyFormatList);\n        HIGH_FREQUENCY_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);\n        HIGH_FREQUENCY_HINT_MAP.put(DecodeHintType.CHARACTER_SET, \"utf-8\");\n    }\n\n    private QRCodeDecoder() {\n    }\n\n    /**\n     * 同步解析本地图片二维码。该方法是耗时操作，请在子线程中调用。\n     *\n     * @param picturePath 要解析的二维码图片本地路径\n     * @return 返回二维码图片里的内容 或 null\n     */\n    public static String syncDecodeQRCode(String picturePath) {\n        return syncDecodeQRCode(BGAQRCodeUtil.getDecodeAbleBitmap(picturePath));\n    }\n\n    /**\n     * 同步解析bitmap二维码。该方法是耗时操作，请在子线程中调用。\n     *\n     * @param bitmap 要解析的二维码图片\n     * @return 返回二维码图片里的内容 或 null\n     */\n    public static String syncDecodeQRCode(Bitmap bitmap) {\n        Result result;\n        RGBLuminanceSource source = null;\n        try {\n            int width = bitmap.getWidth();\n            int height = bitmap.getHeight();\n            int[] pixels = new int[width * height];\n            bitmap.getPixels(pixels, 0, width, 0, 0, width, height);\n            source = new RGBLuminanceSource(width, height, pixels);\n            result = new MultiFormatReader().decode(new BinaryBitmap(new HybridBinarizer(source)), ALL_HINT_MAP);\n            return result.getText();\n        } catch (Exception e) {\n            e.printStackTrace();\n            if (source != null) {\n                try {\n                    result = new MultiFormatReader().decode(new BinaryBitmap(new GlobalHistogramBinarizer(source)), ALL_HINT_MAP);\n                    return result.getText();\n                } catch (Throwable e2) {\n                    e2.printStackTrace();\n                }\n            }\n            return null;\n        }\n    }\n}"
  },
  {
    "path": "zxing/src/main/java/cn/bingoogolapple/qrcode/zxing/QRCodeEncoder.java",
    "content": "package cn.bingoogolapple.qrcode.zxing;\n\nimport android.graphics.Bitmap;\nimport android.graphics.Canvas;\nimport android.graphics.Color;\nimport android.graphics.Paint;\nimport android.text.TextUtils;\n\nimport com.google.zxing.BarcodeFormat;\nimport com.google.zxing.EncodeHintType;\nimport com.google.zxing.MultiFormatWriter;\nimport com.google.zxing.common.BitMatrix;\nimport com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;\n\nimport java.util.EnumMap;\nimport java.util.HashMap;\nimport java.util.Map;\n\n/**\n * 作者:王浩 邮件:bingoogolapple@gmail.com\n * 创建时间:16/4/8 下午11:22\n * 描述:创建二维码图片\n */\npublic class QRCodeEncoder {\n    public static final Map<EncodeHintType, Object> HINTS = new EnumMap<>(EncodeHintType.class);\n\n    static {\n        HINTS.put(EncodeHintType.CHARACTER_SET, \"utf-8\");\n        HINTS.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);\n        HINTS.put(EncodeHintType.MARGIN, 0);\n    }\n\n    private QRCodeEncoder() {\n    }\n\n    /**\n     * 同步创建黑色前景色、白色背景色的二维码图片。该方法是耗时操作，请在子线程中调用。\n     *\n     * @param content 要生成的二维码图片内容\n     * @param size    图片宽高，单位为px\n     */\n    public static Bitmap syncEncodeQRCode(String content, int size) {\n        return syncEncodeQRCode(content, size, Color.BLACK, Color.WHITE, null);\n    }\n\n    /**\n     * 同步创建指定前景色、白色背景色的二维码图片。该方法是耗时操作，请在子线程中调用。\n     *\n     * @param content         要生成的二维码图片内容\n     * @param size            图片宽高，单位为px\n     * @param foregroundColor 二维码图片的前景色\n     */\n    public static Bitmap syncEncodeQRCode(String content, int size, int foregroundColor) {\n        return syncEncodeQRCode(content, size, foregroundColor, Color.WHITE, null);\n    }\n\n    /**\n     * 同步创建指定前景色、白色背景色、带logo的二维码图片。该方法是耗时操作，请在子线程中调用。\n     *\n     * @param content         要生成的二维码图片内容\n     * @param size            图片宽高，单位为px\n     * @param foregroundColor 二维码图片的前景色\n     * @param logo            二维码图片的logo\n     */\n    public static Bitmap syncEncodeQRCode(String content, int size, int foregroundColor, Bitmap logo) {\n        return syncEncodeQRCode(content, size, foregroundColor, Color.WHITE, logo);\n    }\n\n    /**\n     * 同步创建指定前景色、指定背景色、带logo的二维码图片。该方法是耗时操作，请在子线程中调用。\n     *\n     * @param content         要生成的二维码图片内容\n     * @param size            图片宽高，单位为px\n     * @param foregroundColor 二维码图片的前景色\n     * @param backgroundColor 二维码图片的背景色\n     * @param logo            二维码图片的logo\n     */\n    public static Bitmap syncEncodeQRCode(String content, int size, int foregroundColor, int backgroundColor, Bitmap logo) {\n        try {\n            BitMatrix matrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, size, size, HINTS);\n            int[] pixels = new int[size * size];\n            for (int y = 0; y < size; y++) {\n                for (int x = 0; x < size; x++) {\n                    if (matrix.get(x, y)) {\n                        pixels[y * size + x] = foregroundColor;\n                    } else {\n                        pixels[y * size + x] = backgroundColor;\n                    }\n                }\n            }\n            Bitmap bitmap = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888);\n            bitmap.setPixels(pixels, 0, size, 0, 0, size, size);\n            return addLogoToQRCode(bitmap, logo);\n        } catch (Exception e) {\n            e.printStackTrace();\n            return null;\n        }\n    }\n\n    /**\n     * 添加logo到二维码图片上\n     */\n    private static Bitmap addLogoToQRCode(Bitmap src, Bitmap logo) {\n        if (src == null || logo == null) {\n            return src;\n        }\n\n        int srcWidth = src.getWidth();\n        int srcHeight = src.getHeight();\n        int logoWidth = logo.getWidth();\n        int logoHeight = logo.getHeight();\n\n        float scaleFactor = srcWidth * 1.0f / 5 / logoWidth;\n        Bitmap bitmap = Bitmap.createBitmap(srcWidth, srcHeight, Bitmap.Config.ARGB_8888);\n        try {\n            Canvas canvas = new Canvas(bitmap);\n            canvas.drawBitmap(src, 0, 0, null);\n            canvas.scale(scaleFactor, scaleFactor, srcWidth / 2, srcHeight / 2);\n            canvas.drawBitmap(logo, (srcWidth - logoWidth) / 2, (srcHeight - logoHeight) / 2, null);\n            canvas.save();\n            canvas.restore();\n        } catch (Exception e) {\n            e.printStackTrace();\n            bitmap = null;\n        }\n        return bitmap;\n    }\n\n    /**\n     * 同步创建条形码图片\n     *\n     * @param content  要生成条形码包含的内容\n     * @param width    条形码的宽度，单位px\n     * @param height   条形码的高度，单位px\n     * @param textSize 字体大小，单位px，如果等于0则不在底部绘制文字\n     * @return 返回生成条形的位图\n     */\n    public static Bitmap syncEncodeBarcode(String content, int width, int height, int textSize) {\n        if (TextUtils.isEmpty(content)) {\n            return null;\n        }\n        Map<EncodeHintType, Object> hints = new HashMap<>();\n        hints.put(EncodeHintType.CHARACTER_SET, \"utf-8\");\n        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);\n        hints.put(EncodeHintType.MARGIN, 0);\n\n        try {\n            BitMatrix bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.CODE_128, width, height, hints);\n            int[] pixels = new int[width * height];\n            for (int y = 0; y < height; y++) {\n                for (int x = 0; x < width; x++) {\n                    if (bitMatrix.get(x, y)) {\n                        pixels[y * width + x] = 0xff000000;\n                    } else {\n                        pixels[y * width + x] = 0xffffffff;\n                    }\n                }\n            }\n            Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);\n            bitmap.setPixels(pixels, 0, width, 0, 0, width, height);\n            if (textSize > 0) {\n                bitmap = showContent(bitmap, content, textSize);\n            }\n            return bitmap;\n        } catch (Exception e) {\n            e.printStackTrace();\n        }\n\n        return null;\n    }\n\n    /**\n     * 显示条形的内容\n     *\n     * @param barcodeBitmap 已生成的条形码的位图\n     * @param content       条形码包含的内容\n     * @param textSize      字体大小，单位px\n     * @return 返回生成的新条形码位图\n     */\n    private static Bitmap showContent(Bitmap barcodeBitmap, String content, int textSize) {\n        if (TextUtils.isEmpty(content) || null == barcodeBitmap) {\n            return null;\n        }\n        Paint paint = new Paint();\n        paint.setColor(Color.BLACK);\n        paint.setAntiAlias(true);\n        paint.setStyle(Paint.Style.FILL);\n        paint.setTextSize(textSize);\n        paint.setTextAlign(Paint.Align.CENTER);\n        int textWidth = (int) paint.measureText(content);\n        Paint.FontMetrics fm = paint.getFontMetrics();\n        int textHeight = (int) (fm.bottom - fm.top);\n        float scaleRateX = barcodeBitmap.getWidth() * 1.0f / textWidth;\n        if (scaleRateX < 1) {\n            paint.setTextScaleX(scaleRateX);\n        }\n        int baseLine = barcodeBitmap.getHeight() + textHeight;\n        Bitmap bitmap = Bitmap.createBitmap(barcodeBitmap.getWidth(), barcodeBitmap.getHeight() + 2 * textHeight, Bitmap.Config.ARGB_4444);\n        Canvas canvas = new Canvas();\n        canvas.drawColor(Color.WHITE);\n        canvas.setBitmap(bitmap);\n        canvas.drawBitmap(barcodeBitmap, 0, 0, null);\n        canvas.drawText(content, barcodeBitmap.getWidth() / 2, baseLine, paint);\n        canvas.save();\n        canvas.restore();\n        return bitmap;\n    }\n\n}"
  },
  {
    "path": "zxing/src/main/java/cn/bingoogolapple/qrcode/zxing/ZXingView.java",
    "content": "package cn.bingoogolapple.qrcode.zxing;\n\nimport android.content.Context;\nimport android.graphics.Bitmap;\nimport android.graphics.PointF;\nimport android.graphics.Rect;\nimport android.text.TextUtils;\nimport android.util.AttributeSet;\n\nimport com.google.zxing.BarcodeFormat;\nimport com.google.zxing.BinaryBitmap;\nimport com.google.zxing.DecodeHintType;\nimport com.google.zxing.MultiFormatReader;\nimport com.google.zxing.PlanarYUVLuminanceSource;\nimport com.google.zxing.Result;\nimport com.google.zxing.ResultPoint;\nimport com.google.zxing.common.GlobalHistogramBinarizer;\nimport com.google.zxing.common.HybridBinarizer;\n\nimport java.util.Map;\n\nimport cn.bingoogolapple.qrcode.core.BGAQRCodeUtil;\nimport cn.bingoogolapple.qrcode.core.BarcodeType;\nimport cn.bingoogolapple.qrcode.core.QRCodeView;\nimport cn.bingoogolapple.qrcode.core.ScanResult;\n\npublic class ZXingView extends QRCodeView {\n    private MultiFormatReader mMultiFormatReader;\n    private Map<DecodeHintType, Object> mHintMap;\n\n    public ZXingView(Context context, AttributeSet attributeSet) {\n        this(context, attributeSet, 0);\n    }\n\n    public ZXingView(Context context, AttributeSet attrs, int defStyleAttr) {\n        super(context, attrs, defStyleAttr);\n    }\n\n    @Override\n    protected void setupReader() {\n        mMultiFormatReader = new MultiFormatReader();\n\n        if (mBarcodeType == BarcodeType.ONE_DIMENSION) {\n            mMultiFormatReader.setHints(QRCodeDecoder.ONE_DIMENSION_HINT_MAP);\n        } else if (mBarcodeType == BarcodeType.TWO_DIMENSION) {\n            mMultiFormatReader.setHints(QRCodeDecoder.TWO_DIMENSION_HINT_MAP);\n        } else if (mBarcodeType == BarcodeType.ONLY_QR_CODE) {\n            mMultiFormatReader.setHints(QRCodeDecoder.QR_CODE_HINT_MAP);\n        } else if (mBarcodeType == BarcodeType.ONLY_CODE_128) {\n            mMultiFormatReader.setHints(QRCodeDecoder.CODE_128_HINT_MAP);\n        } else if (mBarcodeType == BarcodeType.ONLY_EAN_13) {\n            mMultiFormatReader.setHints(QRCodeDecoder.EAN_13_HINT_MAP);\n        } else if (mBarcodeType == BarcodeType.HIGH_FREQUENCY) {\n            mMultiFormatReader.setHints(QRCodeDecoder.HIGH_FREQUENCY_HINT_MAP);\n        } else if (mBarcodeType == BarcodeType.CUSTOM) {\n            mMultiFormatReader.setHints(mHintMap);\n        } else {\n            mMultiFormatReader.setHints(QRCodeDecoder.ALL_HINT_MAP);\n        }\n    }\n\n    /**\n     * 设置识别的格式\n     *\n     * @param barcodeType 识别的格式\n     * @param hintMap     barcodeType 为 BarcodeType.CUSTOM 时，必须指定该值\n     */\n    public void setType(BarcodeType barcodeType, Map<DecodeHintType, Object> hintMap) {\n        mBarcodeType = barcodeType;\n        mHintMap = hintMap;\n\n        if (mBarcodeType == BarcodeType.CUSTOM && (mHintMap == null || mHintMap.isEmpty())) {\n            throw new RuntimeException(\"barcodeType 为 BarcodeType.CUSTOM 时 hintMap 不能为空\");\n        }\n        setupReader();\n    }\n\n    @Override\n    protected ScanResult processBitmapData(Bitmap bitmap) {\n        return new ScanResult(QRCodeDecoder.syncDecodeQRCode(bitmap));\n    }\n\n    @Override\n    protected ScanResult processData(byte[] data, int width, int height, boolean isRetry) {\n        Result rawResult = null;\n        Rect scanBoxAreaRect = null;\n\n        try {\n            PlanarYUVLuminanceSource source;\n            scanBoxAreaRect = mScanBoxView.getScanBoxAreaRect(height);\n            if (scanBoxAreaRect != null) {\n                source = new PlanarYUVLuminanceSource(data, width, height, scanBoxAreaRect.left, scanBoxAreaRect.top, scanBoxAreaRect.width(),\n                        scanBoxAreaRect.height(), false);\n            } else {\n                source = new PlanarYUVLuminanceSource(data, width, height, 0, 0, width, height, false);\n            }\n\n            rawResult = mMultiFormatReader.decodeWithState(new BinaryBitmap(new GlobalHistogramBinarizer(source)));\n            if (rawResult == null) {\n                rawResult = mMultiFormatReader.decodeWithState(new BinaryBitmap(new HybridBinarizer(source)));\n                if (rawResult != null) {\n                    BGAQRCodeUtil.d(\"GlobalHistogramBinarizer 没识别到，HybridBinarizer 能识别到\");\n                }\n            }\n        } catch (Exception e) {\n            e.printStackTrace();\n        } finally {\n            mMultiFormatReader.reset();\n        }\n\n        if (rawResult == null) {\n            return null;\n        }\n\n        String result = rawResult.getText();\n        if (TextUtils.isEmpty(result)) {\n            return null;\n        }\n\n        BarcodeFormat barcodeFormat = rawResult.getBarcodeFormat();\n        BGAQRCodeUtil.d(\"格式为：\" + barcodeFormat.name());\n\n        // 处理自动缩放和定位点\n        boolean isNeedAutoZoom = isNeedAutoZoom(barcodeFormat);\n        if (isShowLocationPoint() || isNeedAutoZoom) {\n            ResultPoint[] resultPoints = rawResult.getResultPoints();\n            final PointF[] pointArr = new PointF[resultPoints.length];\n            int pointIndex = 0;\n            for (ResultPoint resultPoint : resultPoints) {\n                pointArr[pointIndex] = new PointF(resultPoint.getX(), resultPoint.getY());\n                pointIndex++;\n            }\n\n            if (transformToViewCoordinates(pointArr, scanBoxAreaRect, isNeedAutoZoom, result)) {\n                return null;\n            }\n        }\n        return new ScanResult(result);\n    }\n\n    private boolean isNeedAutoZoom(BarcodeFormat barcodeFormat) {\n        return isAutoZoom() && barcodeFormat == BarcodeFormat.QR_CODE;\n    }\n}"
  },
  {
    "path": "zxingdemo/build.gradle",
    "content": "apply plugin: 'com.android.application'\n\nandroid {\n    compileSdkVersion ANDROID_BUILD_SDK_VERSION as int\n\n    defaultConfig {\n        minSdkVersion ANDROID_BUILD_MIN_SDK_VERSION as int\n        targetSdkVersion ANDROID_BUILD_TARGET_SDK_VERSION as int\n        versionCode VERSION_CODE as int\n        versionName VERSION_NAME\n    }\n\n    dataBinding {\n        enabled = true\n    }\n\n    buildTypes {\n        release {\n            minifyEnabled true\n            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'\n        }\n    }\n}\n\ndependencies {\n    // -------------------- 以下几个库是为了方便编写演示案例添加进来的，集成到你自己项目时可以不依赖这些库 --------------------\n    implementation 'com.android.support:appcompat-v7:28.0.0'\n    implementation 'com.android.support:support-v4:28.0.0'\n    implementation 'com.android.support:recyclerview-v7:28.0.0'\n    implementation 'pub.devrel:easypermissions:1.0.1'\n    implementation 'cn.bingoogolapple:bga-photopicker:1.2.8@aar'\n    implementation 'cn.bingoogolapple:bga-baseadapter:1.2.9@aar'\n    implementation 'cn.bingoogolapple:bga-flowlayout:1.0.0@aar'\n\n    implementation 'com.github.bumptech.glide:glide:4.7.1'\n    // -------------------- 以上几个库是为了方便编写演示案例添加进来的，集成到你自己项目时可以不依赖这些库 --------------------\n\n    implementation project(':zxing')\n\n    // -------------------- 以下一个库是必须依赖的 ----------------------------\n//    implementation 'com.github.bingoogolapple.BGAQRCode-Android:zxing:1.3.8'\n    // -------------------- 以上一个库是必须依赖的 ----------------------------\n}"
  },
  {
    "path": "zxingdemo/proguard-rules.pro",
    "content": ""
  },
  {
    "path": "zxingdemo/src/main/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/tools\"\n    package=\"cn.bingoogolapple.qrcode.zxingdemo\">\n\n    <!--\n        为了方便写demo，引入了 https://github.com/bingoogolapple/BGAPhotoPicker-Android\n        和 https://github.com/bingoogolapple/BGAAdapter-Android 这两个库\n        你自己项目里没用这两个库的话不需要加这个\n    -->\n    <uses-sdk tools:overrideLibrary=\"cn.bingoogolapple.photopicker,cn.bingoogolapple.androidcommon.adapter\" />\n\n    <uses-permission android:name=\"android.permission.VIBRATE\" />\n    <uses-permission android:name=\"android.permission.READ_EXTERNAL_STORAGE\" />\n\n    <application\n        android:allowBackup=\"true\"\n        android:icon=\"@mipmap/ic_launcher\"\n        android:label=\"@string/app_name\"\n        android:theme=\"@style/AppTheme\">\n        <activity\n            android:name=\".MainActivity\"\n            android:label=\"@string/app_name\"\n            android:screenOrientation=\"portrait\">\n            <intent-filter>\n                <action android:name=\"android.intent.action.MAIN\" />\n\n                <category android:name=\"android.intent.category.LAUNCHER\" />\n            </intent-filter>\n        </activity>\n\n        <activity android:name=\".TestScanActivity\" />\n\n        <activity\n            android:name=\".TestGeneratectivity\"\n            android:screenOrientation=\"portrait\" />\n    </application>\n\n</manifest>\n"
  },
  {
    "path": "zxingdemo/src/main/java/cn/bingoogolapple/qrcode/zxingdemo/MainActivity.java",
    "content": "package cn.bingoogolapple.qrcode.zxingdemo;\n\nimport android.Manifest;\nimport android.content.Intent;\nimport android.os.Bundle;\nimport android.support.v7.app.AppCompatActivity;\nimport android.support.v7.widget.Toolbar;\nimport android.view.View;\n\nimport java.util.List;\n\nimport cn.bingoogolapple.qrcode.core.BGAQRCodeUtil;\nimport pub.devrel.easypermissions.AfterPermissionGranted;\nimport pub.devrel.easypermissions.EasyPermissions;\n\npublic class MainActivity extends AppCompatActivity implements EasyPermissions.PermissionCallbacks {\n    private static final int REQUEST_CODE_QRCODE_PERMISSIONS = 1;\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_main);\n        setSupportActionBar((Toolbar) findViewById(R.id.toolbar));\n\n        BGAQRCodeUtil.setDebug(true);\n    }\n\n    public void onClick(View view) {\n        switch (view.getId()) {\n            case R.id.test_scan_qrcode:\n                startActivity(new Intent(this, TestScanActivity.class));\n                break;\n            case R.id.test_generate_qrcode:\n                startActivity(new Intent(this, TestGeneratectivity.class));\n                break;\n        }\n    }\n\n    @Override\n    protected void onStart() {\n        super.onStart();\n        requestCodeQRCodePermissions();\n    }\n\n    @Override\n    public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {\n        EasyPermissions.onRequestPermissionsResult(requestCode, permissions, grantResults, this);\n    }\n\n    @Override\n    public void onPermissionsGranted(int requestCode, List<String> perms) {\n    }\n\n    @Override\n    public void onPermissionsDenied(int requestCode, List<String> perms) {\n    }\n\n    @AfterPermissionGranted(REQUEST_CODE_QRCODE_PERMISSIONS)\n    private void requestCodeQRCodePermissions() {\n        String[] perms = {Manifest.permission.CAMERA, Manifest.permission.READ_EXTERNAL_STORAGE};\n        if (!EasyPermissions.hasPermissions(this, perms)) {\n            EasyPermissions.requestPermissions(this, \"扫描二维码需要打开相机和散光灯的权限\", REQUEST_CODE_QRCODE_PERMISSIONS, perms);\n        }\n    }\n}\n"
  },
  {
    "path": "zxingdemo/src/main/java/cn/bingoogolapple/qrcode/zxingdemo/RotateTest.java",
    "content": "package cn.bingoogolapple.qrcode.zxingdemo;\n\n/**\n * 作者:王浩\n * 创建时间:2018/6/19\n * 描述:\n */\npublic class RotateTest {\n    public static void main(String[] args) {\n        byte[] data = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15};\n\n        oneDimension2TwoDimension(data, 3, 5);\n        oneDimension2TwoDimensionLeftRotate90(data, 5, 3);\n        oneDimension2TwoDimensionRightRotate90(data, 5, 3);\n        oneDimensionRightRotate90(data, 3, 5);\n    }\n\n    private static void oneDimension2TwoDimension(byte[] data, int height, int width) {\n        int k = 0;\n        byte[][] twoDegree = new byte[height][width];\n        for (int i = 0; i < height; i++) {\n            for (int j = 0; j < width; j++) {\n                twoDegree[i][j] = data[k];\n                k++;\n            }\n        }\n        displayTwoDimension(twoDegree, height, width);\n        towDimension2OneDimension(twoDegree, height, width);\n    }\n\n    private static void towDimension2OneDimension(byte[][] twoDegree, int height, int width) {\n        byte[] oneDimension = new byte[height * width];\n        int k = 0;\n        for (int i = 0; i < height; i++) {\n            for (int j = 0; j < width; j++) {\n                oneDimension[k] = twoDegree[i][j];\n                k++;\n            }\n        }\n\n        displayOneDimension(oneDimension);\n    }\n\n    private static void oneDimension2TwoDimensionLeftRotate90(byte[] oneDimension, int height, int width) {\n        int k = 0;\n        byte[][] twoDimension = new byte[height][width];\n        for (int i = 0; i < width; i++) {\n            for (int j = height - 1; j >= 0; j--) {\n                twoDimension[j][i] = oneDimension[k];\n                k++;\n            }\n        }\n        displayTwoDimension(twoDimension, height, width);\n        towDimension2OneDimension(twoDimension, height, width);\n    }\n\n    private static void oneDimension2TwoDimensionRightRotate90(byte[] oneDimension, int height, int width) {\n        int k = 0;\n        byte[][] twoDimension = new byte[height][width];\n        for (int i = width - 1; i >= 0; i--) {\n            for (int j = 0; j < height; j++) {\n                twoDimension[j][i] = oneDimension[k];\n                k++;\n            }\n        }\n\n        displayTwoDimension(twoDimension, height, width);\n        towDimension2OneDimension(twoDimension, height, width);\n    }\n\n    private static void oneDimensionRightRotate90(byte[] oneDimension, int height, int width) {\n        byte[] result = new byte[oneDimension.length];\n        for (int y = 0; y < height; y++) {\n            for (int x = 0; x < width; x++) {\n                result[x * height + height - y - 1] = oneDimension[x + y * width];\n            }\n        }\n        displayOneDimension(result);\n        oneDimension2TwoDimension(result, width, height);\n    }\n\n    private static void displayTwoDimension(byte[][] twoDimension, int height, int width) {\n        for (int i = 0; i < height; i++) {\n            for (int j = 0; j < width; j++) {\n                System.out.print(twoDimension[i][j] + \" \");\n            }\n            System.out.println();\n        }\n    }\n\n    private static void displayOneDimension(byte[] oneDimension) {\n        for (int i = 0; i < oneDimension.length; i++) {\n            System.out.print(oneDimension[i] + \" \");\n        }\n        System.out.println();\n        System.out.println();\n    }\n}\n"
  },
  {
    "path": "zxingdemo/src/main/java/cn/bingoogolapple/qrcode/zxingdemo/TestGeneratectivity.java",
    "content": "package cn.bingoogolapple.qrcode.zxingdemo;\n\nimport android.graphics.Bitmap;\nimport android.graphics.BitmapFactory;\nimport android.graphics.Color;\nimport android.os.AsyncTask;\nimport android.os.Bundle;\nimport android.support.v7.app.AppCompatActivity;\nimport android.support.v7.widget.Toolbar;\nimport android.text.TextUtils;\nimport android.view.View;\nimport android.widget.ImageView;\nimport android.widget.Toast;\n\nimport cn.bingoogolapple.qrcode.core.BGAQRCodeUtil;\nimport cn.bingoogolapple.qrcode.zxing.QRCodeDecoder;\nimport cn.bingoogolapple.qrcode.zxing.QRCodeEncoder;\n\npublic class TestGeneratectivity extends AppCompatActivity {\n    private ImageView mChineseIv;\n    private ImageView mEnglishIv;\n    private ImageView mChineseLogoIv;\n    private ImageView mEnglishLogoIv;\n    private ImageView mBarcodeWithContentIv;\n    private ImageView mBarcodeWithoutContentIv;\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_test_generate);\n        setSupportActionBar((Toolbar) findViewById(R.id.toolbar));\n\n        initView();\n        createQRCode();\n    }\n\n    private void initView() {\n        mChineseIv = findViewById(R.id.iv_chinese);\n        mChineseLogoIv = findViewById(R.id.iv_chinese_logo);\n        mEnglishIv = findViewById(R.id.iv_english);\n        mEnglishLogoIv = findViewById(R.id.iv_english_logo);\n        mBarcodeWithContentIv = findViewById(R.id.iv_barcode_with_content);\n        mBarcodeWithoutContentIv = findViewById(R.id.iv_barcode_without_content);\n    }\n\n    private void createQRCode() {\n        createChineseQRCode();\n        createEnglishQRCode();\n        createChineseQRCodeWithLogo();\n        createEnglishQRCodeWithLogo();\n\n        createBarcodeWidthContent();\n        createBarcodeWithoutContent();\n    }\n\n    private void createChineseQRCode() {\n        /*\n        这里为了偷懒，就没有处理匿名 AsyncTask 内部类导致 Activity 泄漏的问题\n        请开发在使用时自行处理匿名内部类导致Activity内存泄漏的问题，处理方式可参考 https://github\n        .com/GeniusVJR/LearningNotes/blob/master/Part1/Android/Android%E5%86%85%E5%AD%98%E6%B3%84%E6%BC%8F%E6%80%BB%E7%BB%93.md\n         */\n        new AsyncTask<Void, Void, Bitmap>() {\n            @Override\n            protected Bitmap doInBackground(Void... params) {\n                return QRCodeEncoder.syncEncodeQRCode(\"王浩\", BGAQRCodeUtil.dp2px(TestGeneratectivity.this, 150));\n            }\n\n            @Override\n            protected void onPostExecute(Bitmap bitmap) {\n                if (bitmap != null) {\n                    mChineseIv.setImageBitmap(bitmap);\n                } else {\n                    Toast.makeText(TestGeneratectivity.this, \"生成中文二维码失败\", Toast.LENGTH_SHORT).show();\n                }\n            }\n        }.execute();\n    }\n\n    private void createEnglishQRCode() {\n        new AsyncTask<Void, Void, Bitmap>() {\n            @Override\n            protected Bitmap doInBackground(Void... params) {\n                return QRCodeEncoder.syncEncodeQRCode(\"bingoogolapple\", BGAQRCodeUtil.dp2px(TestGeneratectivity.this, 150), Color.parseColor(\"#ff0000\"));\n            }\n\n            @Override\n            protected void onPostExecute(Bitmap bitmap) {\n                if (bitmap != null) {\n                    mEnglishIv.setImageBitmap(bitmap);\n                } else {\n                    Toast.makeText(TestGeneratectivity.this, \"生成英文二维码失败\", Toast.LENGTH_SHORT).show();\n                }\n            }\n        }.execute();\n    }\n\n    private void createChineseQRCodeWithLogo() {\n        new AsyncTask<Void, Void, Bitmap>() {\n            @Override\n            protected Bitmap doInBackground(Void... params) {\n                Bitmap logoBitmap = BitmapFactory.decodeResource(TestGeneratectivity.this.getResources(), R.mipmap.logo);\n                return QRCodeEncoder.syncEncodeQRCode(\"王浩\", BGAQRCodeUtil.dp2px(TestGeneratectivity.this, 150), Color.parseColor(\"#ff0000\"), logoBitmap);\n            }\n\n            @Override\n            protected void onPostExecute(Bitmap bitmap) {\n                if (bitmap != null) {\n                    mChineseLogoIv.setImageBitmap(bitmap);\n                } else {\n                    Toast.makeText(TestGeneratectivity.this, \"生成带logo的中文二维码失败\", Toast.LENGTH_SHORT).show();\n                }\n            }\n        }.execute();\n    }\n\n    private void createEnglishQRCodeWithLogo() {\n        new AsyncTask<Void, Void, Bitmap>() {\n            @Override\n            protected Bitmap doInBackground(Void... params) {\n                Bitmap logoBitmap = BitmapFactory.decodeResource(TestGeneratectivity.this.getResources(), R.mipmap.logo);\n                return QRCodeEncoder.syncEncodeQRCode(\"bingoogolapple\", BGAQRCodeUtil.dp2px(TestGeneratectivity.this, 150), Color.BLACK, Color.WHITE,\n                        logoBitmap);\n            }\n\n            @Override\n            protected void onPostExecute(Bitmap bitmap) {\n                if (bitmap != null) {\n                    mEnglishLogoIv.setImageBitmap(bitmap);\n                } else {\n                    Toast.makeText(TestGeneratectivity.this, \"生成带logo的英文二维码失败\", Toast.LENGTH_SHORT).show();\n                }\n            }\n        }.execute();\n    }\n\n\n    private void createBarcodeWidthContent() {\n        new AsyncTask<Void, Void, Bitmap>() {\n            @Override\n            protected Bitmap doInBackground(Void... params) {\n                int width = BGAQRCodeUtil.dp2px(TestGeneratectivity.this, 150);\n                int height = BGAQRCodeUtil.dp2px(TestGeneratectivity.this, 70);\n                int textSize = BGAQRCodeUtil.sp2px(TestGeneratectivity.this, 14);\n                return QRCodeEncoder.syncEncodeBarcode(\"bga123\", width, height, textSize);\n            }\n\n            @Override\n            protected void onPostExecute(Bitmap bitmap) {\n                if (bitmap != null) {\n                    mBarcodeWithContentIv.setImageBitmap(bitmap);\n                } else {\n                    Toast.makeText(TestGeneratectivity.this, \"生成条底部带文字形码失败\", Toast.LENGTH_SHORT).show();\n                }\n            }\n        }.execute();\n    }\n\n    private void createBarcodeWithoutContent() {\n        new AsyncTask<Void, Void, Bitmap>() {\n            @Override\n            protected Bitmap doInBackground(Void... params) {\n                int width = BGAQRCodeUtil.dp2px(TestGeneratectivity.this, 150);\n                int height = BGAQRCodeUtil.dp2px(TestGeneratectivity.this, 70);\n                return QRCodeEncoder.syncEncodeBarcode(\"bingoogolapple123\", width, height, 0);\n            }\n\n            @Override\n            protected void onPostExecute(Bitmap bitmap) {\n                if (bitmap != null) {\n                    mBarcodeWithoutContentIv.setImageBitmap(bitmap);\n                } else {\n                    Toast.makeText(TestGeneratectivity.this, \"生成条底部不带文字形码失败\", Toast.LENGTH_SHORT).show();\n                }\n            }\n        }.execute();\n    }\n\n    public void decodeChinese(View v) {\n        mChineseIv.setDrawingCacheEnabled(true);\n        Bitmap bitmap = mChineseIv.getDrawingCache();\n        decode(bitmap, \"解析中文二维码失败\");\n    }\n\n    public void decodeEnglish(View v) {\n        mEnglishIv.setDrawingCacheEnabled(true);\n        Bitmap bitmap = mEnglishIv.getDrawingCache();\n        decode(bitmap, \"解析英文二维码失败\");\n    }\n\n    public void decodeChineseWithLogo(View v) {\n        mChineseLogoIv.setDrawingCacheEnabled(true);\n        Bitmap bitmap = mChineseLogoIv.getDrawingCache();\n        decode(bitmap, \"解析带logo的中文二维码失败\");\n    }\n\n    public void decodeEnglishWithLogo(View v) {\n        mEnglishLogoIv.setDrawingCacheEnabled(true);\n        Bitmap bitmap = mEnglishLogoIv.getDrawingCache();\n        decode(bitmap, \"解析带logo的英文二维码失败\");\n    }\n\n    public void decodeBarcodeWithContent(View v) {\n        mBarcodeWithContentIv.setDrawingCacheEnabled(true);\n        Bitmap bitmap = mBarcodeWithContentIv.getDrawingCache();\n        decode(bitmap, \"识别底部带文字的条形码失败\");\n    }\n\n    public void decodeBarcodeWithoutContent(View v) {\n        mBarcodeWithoutContentIv.setDrawingCacheEnabled(true);\n        Bitmap bitmap = mBarcodeWithoutContentIv.getDrawingCache();\n        decode(bitmap, \"识别底部没带文字的条形码失败\");\n    }\n\n    private void decode(final Bitmap bitmap, final String errorTip) {\n        /*\n        这里为了偷懒，就没有处理匿名 AsyncTask 内部类导致 Activity 泄漏的问题\n        请开发在使用时自行处理匿名内部类导致Activity内存泄漏的问题，处理方式可参考 https://github\n        .com/GeniusVJR/LearningNotes/blob/master/Part1/Android/Android%E5%86%85%E5%AD%98%E6%B3%84%E6%BC%8F%E6%80%BB%E7%BB%93.md\n         */\n        new AsyncTask<Void, Void, String>() {\n            @Override\n            protected String doInBackground(Void... params) {\n                return QRCodeDecoder.syncDecodeQRCode(bitmap);\n            }\n\n            @Override\n            protected void onPostExecute(String result) {\n                if (TextUtils.isEmpty(result)) {\n                    Toast.makeText(TestGeneratectivity.this, errorTip, Toast.LENGTH_SHORT).show();\n                } else {\n                    Toast.makeText(TestGeneratectivity.this, result, Toast.LENGTH_SHORT).show();\n                }\n            }\n        }.execute();\n    }\n}"
  },
  {
    "path": "zxingdemo/src/main/java/cn/bingoogolapple/qrcode/zxingdemo/TestScanActivity.java",
    "content": "package cn.bingoogolapple.qrcode.zxingdemo;\n\nimport android.app.Activity;\nimport android.content.Intent;\nimport android.os.Bundle;\nimport android.os.Vibrator;\nimport android.support.v7.app.AppCompatActivity;\nimport android.support.v7.widget.Toolbar;\nimport android.util.Log;\nimport android.view.View;\n\nimport com.google.zxing.BarcodeFormat;\nimport com.google.zxing.DecodeHintType;\n\nimport java.util.ArrayList;\nimport java.util.EnumMap;\nimport java.util.List;\nimport java.util.Map;\n\nimport cn.bingoogolapple.photopicker.activity.BGAPhotoPickerActivity;\nimport cn.bingoogolapple.qrcode.core.BarcodeType;\nimport cn.bingoogolapple.qrcode.core.QRCodeView;\nimport cn.bingoogolapple.qrcode.zxing.ZXingView;\n\npublic class TestScanActivity extends AppCompatActivity implements QRCodeView.Delegate {\n    private static final String TAG = TestScanActivity.class.getSimpleName();\n    private static final int REQUEST_CODE_CHOOSE_QRCODE_FROM_GALLERY = 666;\n\n    private ZXingView mZXingView;\n\n    public void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_test_scan);\n        setSupportActionBar((Toolbar) findViewById(R.id.toolbar));\n\n        mZXingView = findViewById(R.id.zxingview);\n        mZXingView.setDelegate(this);\n    }\n\n    @Override\n    protected void onStart() {\n        super.onStart();\n\n        mZXingView.startCamera(); // 打开后置摄像头开始预览，但是并未开始识别\n//        mZXingView.startCamera(Camera.CameraInfo.CAMERA_FACING_FRONT); // 打开前置摄像头开始预览，但是并未开始识别\n\n        mZXingView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n    }\n\n    @Override\n    protected void onStop() {\n        mZXingView.stopCamera(); // 关闭摄像头预览，并且隐藏扫描框\n        super.onStop();\n    }\n\n    @Override\n    protected void onDestroy() {\n        mZXingView.onDestroy(); // 销毁二维码扫描控件\n        super.onDestroy();\n    }\n\n    private void vibrate() {\n        Vibrator vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);\n        vibrator.vibrate(200);\n    }\n\n    @Override\n    public void onScanQRCodeSuccess(String result) {\n        Log.i(TAG, \"result:\" + result);\n        setTitle(\"扫描结果为：\" + result);\n        vibrate();\n\n        mZXingView.startSpot(); // 开始识别\n    }\n\n    @Override\n    public void onCameraAmbientBrightnessChanged(boolean isDark) {\n        // 这里是通过修改提示文案来展示环境是否过暗的状态，接入方也可以根据 isDark 的值来实现其他交互效果\n        String tipText = mZXingView.getScanBoxView().getTipText();\n        String ambientBrightnessTip = \"\\n环境过暗，请打开闪光灯\";\n        if (isDark) {\n            if (!tipText.contains(ambientBrightnessTip)) {\n                mZXingView.getScanBoxView().setTipText(tipText + ambientBrightnessTip);\n            }\n        } else {\n            if (tipText.contains(ambientBrightnessTip)) {\n                tipText = tipText.substring(0, tipText.indexOf(ambientBrightnessTip));\n                mZXingView.getScanBoxView().setTipText(tipText);\n            }\n        }\n    }\n\n    @Override\n    public void onScanQRCodeOpenCameraError() {\n        Log.e(TAG, \"打开相机出错\");\n    }\n\n    public void onClick(View v) {\n        switch (v.getId()) {\n            case R.id.start_preview:\n                mZXingView.startCamera(); // 打开后置摄像头开始预览，但是并未开始识别\n                break;\n            case R.id.stop_preview:\n                mZXingView.stopCamera(); // 关闭摄像头预览，并且隐藏扫描框\n                break;\n            case R.id.start_spot:\n                mZXingView.startSpot(); // 开始识别\n                break;\n            case R.id.stop_spot:\n                mZXingView.stopSpot(); // 停止识别\n                break;\n            case R.id.start_spot_showrect:\n                mZXingView.startSpotAndShowRect(); // 显示扫描框，并且开始识别\n                break;\n            case R.id.stop_spot_hiddenrect:\n                mZXingView.stopSpotAndHiddenRect(); // 停止识别，并且隐藏扫描框\n                break;\n            case R.id.show_scan_rect:\n                mZXingView.showScanRect(); // 显示扫描框\n                break;\n            case R.id.hidden_scan_rect:\n                mZXingView.hiddenScanRect(); // 隐藏扫描框\n                break;\n            case R.id.decode_scan_box_area:\n                mZXingView.getScanBoxView().setOnlyDecodeScanBoxArea(true); // 仅识别扫描框中的码\n                break;\n            case R.id.decode_full_screen_area:\n                mZXingView.getScanBoxView().setOnlyDecodeScanBoxArea(false); // 识别整个屏幕中的码\n                break;\n            case R.id.open_flashlight:\n                mZXingView.openFlashlight(); // 打开闪光灯\n                break;\n            case R.id.close_flashlight:\n                mZXingView.closeFlashlight(); // 关闭闪光灯\n                break;\n            case R.id.scan_one_dimension:\n                mZXingView.changeToScanBarcodeStyle(); // 切换成扫描条码样式\n                mZXingView.setType(BarcodeType.ONE_DIMENSION, null); // 只识别一维条码\n                mZXingView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_two_dimension:\n                mZXingView.changeToScanQRCodeStyle(); // 切换成扫描二维码样式\n                mZXingView.setType(BarcodeType.TWO_DIMENSION, null); // 只识别二维条码\n                mZXingView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_qr_code:\n                mZXingView.changeToScanQRCodeStyle(); // 切换成扫描二维码样式\n                mZXingView.setType(BarcodeType.ONLY_QR_CODE, null); // 只识别 QR_CODE\n                mZXingView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_code128:\n                mZXingView.changeToScanBarcodeStyle(); // 切换成扫描条码样式\n                mZXingView.setType(BarcodeType.ONLY_CODE_128, null); // 只识别 CODE_128\n                mZXingView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_ean13:\n                mZXingView.changeToScanBarcodeStyle(); // 切换成扫描条码样式\n                mZXingView.setType(BarcodeType.ONLY_EAN_13, null); // 只识别 EAN_13\n                mZXingView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_high_frequency:\n                mZXingView.changeToScanQRCodeStyle(); // 切换成扫描二维码样式\n                mZXingView.setType(BarcodeType.HIGH_FREQUENCY, null); // 只识别高频率格式，包括 QR_CODE、UPC_A、EAN_13、CODE_128\n                mZXingView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_all:\n                mZXingView.changeToScanQRCodeStyle(); // 切换成扫描二维码样式\n                mZXingView.setType(BarcodeType.ALL, null); // 识别所有类型的码\n                mZXingView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.scan_custom:\n                mZXingView.changeToScanQRCodeStyle(); // 切换成扫描二维码样式\n\n                Map<DecodeHintType, Object> hintMap = new EnumMap<>(DecodeHintType.class);\n                List<BarcodeFormat> formatList = new ArrayList<>();\n                formatList.add(BarcodeFormat.QR_CODE);\n                formatList.add(BarcodeFormat.UPC_A);\n                formatList.add(BarcodeFormat.EAN_13);\n                formatList.add(BarcodeFormat.CODE_128);\n                hintMap.put(DecodeHintType.POSSIBLE_FORMATS, formatList); // 可能的编码格式\n                hintMap.put(DecodeHintType.TRY_HARDER, Boolean.TRUE); // 花更多的时间用于寻找图上的编码，优化准确性，但不优化速度\n                hintMap.put(DecodeHintType.CHARACTER_SET, \"utf-8\"); // 编码字符集\n                mZXingView.setType(BarcodeType.CUSTOM, hintMap); // 自定义识别的类型\n\n                mZXingView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n                break;\n            case R.id.choose_qrcde_from_gallery:\n                /*\n                从相册选取二维码图片，这里为了方便演示，使用的是\n                https://github.com/bingoogolapple/BGAPhotoPicker-Android\n                这个库来从图库中选择二维码图片，这个库不是必须的，你也可以通过自己的方式从图库中选择图片\n                 */\n                Intent photoPickerIntent = new BGAPhotoPickerActivity.IntentBuilder(this)\n                        .cameraFileDir(null)\n                        .maxChooseCount(1)\n                        .selectedPhotos(null)\n                        .pauseOnScroll(false)\n                        .build();\n                startActivityForResult(photoPickerIntent, REQUEST_CODE_CHOOSE_QRCODE_FROM_GALLERY);\n                break;\n        }\n    }\n\n    @Override\n    protected void onActivityResult(int requestCode, int resultCode, Intent data) {\n        super.onActivityResult(requestCode, resultCode, data);\n\n        mZXingView.startSpotAndShowRect(); // 显示扫描框，并开始识别\n\n        if (resultCode == Activity.RESULT_OK && requestCode == REQUEST_CODE_CHOOSE_QRCODE_FROM_GALLERY) {\n            final String picturePath = BGAPhotoPickerActivity.getSelectedPhotos(data).get(0);\n            // 本来就用到 QRCodeView 时可直接调 QRCodeView 的方法，走通用的回调\n            mZXingView.decodeQRCode(picturePath);\n\n            /*\n            没有用到 QRCodeView 时可以调用 QRCodeDecoder 的 syncDecodeQRCode 方法\n\n            这里为了偷懒，就没有处理匿名 AsyncTask 内部类导致 Activity 泄漏的问题\n            请开发在使用时自行处理匿名内部类导致Activity内存泄漏的问题，处理方式可参考 https://github\n            .com/GeniusVJR/LearningNotes/blob/master/Part1/Android/Android%E5%86%85%E5%AD%98%E6%B3%84%E6%BC%8F%E6%80%BB%E7%BB%93.md\n             */\n//            new AsyncTask<Void, Void, String>() {\n//                @Override\n//                protected String doInBackground(Void... params) {\n//                    return QRCodeDecoder.syncDecodeQRCode(picturePath);\n//                }\n//\n//                @Override\n//                protected void onPostExecute(String result) {\n//                    if (TextUtils.isEmpty(result)) {\n//                        Toast.makeText(TestScanActivity.this, \"未发现二维码\", Toast.LENGTH_SHORT).show();\n//                    } else {\n//                        Toast.makeText(TestScanActivity.this, result, Toast.LENGTH_SHORT).show();\n//                    }\n//                }\n//            }.execute();\n        }\n    }\n\n\n}"
  },
  {
    "path": "zxingdemo/src/main/res/drawable/selector_btn_orange.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_pressed=\"true\">\n        <shape android:shape=\"rectangle\">\n            <solid android:color=\"@color/colorPrimaryDarkTrans\" />\n            <corners android:radius=\"5dp\" />\n        </shape>\n    </item>\n    <item>\n        <shape android:shape=\"rectangle\">\n            <solid android:color=\"@color/colorPrimaryDark\" />\n            <corners android:radius=\"5dp\" />\n        </shape>\n    </item>\n\n</selector>\n"
  },
  {
    "path": "zxingdemo/src/main/res/layout/activity_main.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n              style=\"@style/MatchMatch.Vertical\"\n              android:background=\"@android:color/white\">\n\n    <include layout=\"@layout/toolbar\"/>\n\n    <TextView\n        android:id=\"@+id/test_scan_qrcode\"\n        style=\"@style/MatchWrapTv\"\n        android:text=\"测试扫描二维码\"/>\n\n    <TextView\n        android:id=\"@+id/test_generate_qrcode\"\n        style=\"@style/MatchWrapTv\"\n        android:text=\"测试生成和识别图片二维码\"/>\n\n</LinearLayout>"
  },
  {
    "path": "zxingdemo/src/main/res/layout/activity_test_generate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    style=\"@style/MatchMatch.Vertical\">\n\n    <include layout=\"@layout/toolbar\" />\n\n    <ScrollView\n        style=\"@style/MatchMatch\">\n\n        <LinearLayout\n            style=\"@style/MatchMatch.Vertical\">\n\n            <LinearLayout\n                style=\"@style/MatchWrap.Horizontal\"\n                android:gravity=\"center_horizontal\">\n\n                <ImageView\n                    android:id=\"@+id/iv_chinese\"\n                    android:layout_width=\"150dp\"\n                    android:layout_height=\"150dp\"\n                    android:layout_margin=\"10dp\"\n                    android:src=\"@mipmap/holder\" />\n\n                <ImageView\n                    android:id=\"@+id/iv_english\"\n                    android:layout_width=\"150dp\"\n                    android:layout_height=\"150dp\"\n                    android:layout_margin=\"10dp\"\n                    android:src=\"@mipmap/holder\" />\n            </LinearLayout>\n\n            <LinearLayout style=\"@style/MatchWrap.Horizontal\">\n\n                <TextView\n                    style=\"@style/AutoWrapTv\"\n                    android:onClick=\"decodeChinese\"\n                    android:text=\"识别中文二维码\" />\n\n                <TextView\n                    style=\"@style/AutoWrapTv\"\n                    android:onClick=\"decodeEnglish\"\n                    android:text=\"识别英文二维码\" />\n            </LinearLayout>\n\n            <LinearLayout\n                style=\"@style/MatchWrap.Horizontal\"\n                android:gravity=\"center_horizontal\">\n\n                <ImageView\n                    android:id=\"@+id/iv_chinese_logo\"\n                    android:layout_width=\"150dp\"\n                    android:layout_height=\"150dp\"\n                    android:layout_margin=\"10dp\"\n                    android:src=\"@mipmap/holder\" />\n\n                <ImageView\n                    android:id=\"@+id/iv_english_logo\"\n                    android:layout_width=\"150dp\"\n                    android:layout_height=\"150dp\"\n                    android:layout_margin=\"10dp\"\n                    android:src=\"@mipmap/holder\" />\n            </LinearLayout>\n\n            <LinearLayout style=\"@style/MatchWrap.Horizontal\">\n\n                <TextView\n                    style=\"@style/AutoWrapTv\"\n                    android:onClick=\"decodeChineseWithLogo\"\n                    android:text=\"识别带logo的中文二维码\" />\n\n                <TextView\n                    style=\"@style/AutoWrapTv\"\n                    android:onClick=\"decodeEnglishWithLogo\"\n                    android:text=\"识别带logo的英文二维码\" />\n            </LinearLayout>\n\n            <LinearLayout\n                style=\"@style/MatchWrap.Horizontal\"\n                android:gravity=\"center_horizontal\">\n\n                <ImageView\n                    android:id=\"@+id/iv_barcode_with_content\"\n                    android:layout_width=\"150dp\"\n                    android:layout_height=\"150dp\"\n                    android:layout_margin=\"10dp\"\n                    android:src=\"@mipmap/holder\" />\n\n                <ImageView\n                    android:id=\"@+id/iv_barcode_without_content\"\n                    android:layout_width=\"150dp\"\n                    android:layout_height=\"150dp\"\n                    android:layout_margin=\"10dp\"\n                    android:src=\"@mipmap/holder\" />\n            </LinearLayout>\n\n            <LinearLayout style=\"@style/MatchWrap.Horizontal\">\n\n                <TextView\n                    style=\"@style/AutoWrapTv\"\n                    android:onClick=\"decodeBarcodeWithContent\"\n                    android:text=\"识别底部带文字的条形码\" />\n\n                <TextView\n                    style=\"@style/AutoWrapTv\"\n                    android:onClick=\"decodeBarcodeWithoutContent\"\n                    android:text=\"识别底部没带文字的条形码\" />\n            </LinearLayout>\n\n        </LinearLayout>\n    </ScrollView>\n</LinearLayout>\n"
  },
  {
    "path": "zxingdemo/src/main/res/layout/activity_test_scan.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n    style=\"@style/MatchMatch\">\n\n    <cn.bingoogolapple.qrcode.zxing.ZXingView\n        android:id=\"@+id/zxingview\"\n        style=\"@style/MatchMatch\"\n        app:qrcv_animTime=\"1000\"\n        app:qrcv_barCodeTipText=\"将条码放入框内，即可自动扫描\"\n        app:qrcv_barcodeRectHeight=\"120dp\"\n        app:qrcv_borderColor=\"@android:color/white\"\n        app:qrcv_borderSize=\"1dp\"\n        app:qrcv_cornerColor=\"@color/colorPrimaryDark\"\n        app:qrcv_cornerDisplayType=\"center\"\n        app:qrcv_cornerLength=\"20dp\"\n        app:qrcv_cornerSize=\"3dp\"\n        app:qrcv_customScanLineDrawable=\"@drawable/scan_icon_scanline\"\n        app:qrcv_isAutoZoom=\"true\"\n        app:qrcv_isBarcode=\"false\"\n        app:qrcv_isOnlyDecodeScanBoxArea=\"false\"\n        app:qrcv_isScanLineReverse=\"true\"\n        app:qrcv_isShowDefaultGridScanLineDrawable=\"false\"\n        app:qrcv_isShowDefaultScanLineDrawable=\"true\"\n        app:qrcv_isShowLocationPoint=\"true\"\n        app:qrcv_isShowTipBackground=\"true\"\n        app:qrcv_isShowTipTextAsSingleLine=\"false\"\n        app:qrcv_isTipTextBelowRect=\"false\"\n        app:qrcv_maskColor=\"#33FFFFFF\"\n        app:qrcv_qrCodeTipText=\"将二维码/条码放入框内，即可自动扫描\"\n        app:qrcv_rectWidth=\"200dp\"\n        app:qrcv_scanLineColor=\"@color/colorPrimaryDark\"\n        app:qrcv_scanLineMargin=\"0dp\"\n        app:qrcv_scanLineSize=\"0.5dp\"\n        app:qrcv_tipTextColor=\"@android:color/white\"\n        app:qrcv_tipTextSize=\"12sp\"\n        app:qrcv_toolbarHeight=\"56dp\"\n        app:qrcv_topOffset=\"65dp\"\n        app:qrcv_verticalBias=\"-1\" />\n\n    <include layout=\"@layout/toolbar\" />\n\n    <include layout=\"@layout/view_control\" />\n</RelativeLayout>"
  },
  {
    "path": "zxingdemo/src/main/res/layout/toolbar.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<android.support.v7.widget.Toolbar xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@+id/toolbar\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"?attr/actionBarSize\"\n    android:layout_alignParentTop=\"true\"\n    android:background=\"@color/colorPrimary\"\n    android:theme=\"@style/ThemeOverlay.AppCompat.Dark.ActionBar\" />"
  },
  {
    "path": "zxingdemo/src/main/res/layout/view_control.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<cn.bingoogolapple.flowlayout.BGAFlowLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n    style=\"@style/MatchWrap\"\n    android:layout_alignParentBottom=\"true\"\n    android:padding=\"4dp\"\n    app:fl_horizontalChildGap=\"4dp\"\n    app:fl_isDistributionWhiteSpacing=\"true\"\n    app:fl_verticalChildGap=\"4dp\">\n\n    <TextView\n        android:id=\"@+id/start_preview\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"开始预览\" />\n\n    <TextView\n        android:id=\"@+id/stop_preview\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"停止预览\" />\n\n    <TextView\n        android:id=\"@+id/start_spot\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"开始识别\" />\n\n    <TextView\n        android:id=\"@+id/stop_spot\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"停止识别\" />\n\n    <TextView\n        android:id=\"@+id/start_spot_showrect\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"开始识别显示扫描框\" />\n\n    <TextView\n        android:id=\"@+id/stop_spot_hiddenrect\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"暂停识别隐藏扫描框\" />\n\n    <TextView\n        android:id=\"@+id/show_scan_rect\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"显示扫描框\" />\n\n    <TextView\n        android:id=\"@+id/hidden_scan_rect\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"隐藏扫描框\" />\n\n    <TextView\n        android:id=\"@+id/decode_scan_box_area\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别扫描框中的码\" />\n\n    <TextView\n        android:id=\"@+id/decode_full_screen_area\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"识别整个屏幕中的码\" />\n\n    <TextView\n        android:id=\"@+id/open_flashlight\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"打开闪光灯\" />\n\n    <TextView\n        android:id=\"@+id/close_flashlight\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"关闭闪光灯\" />\n\n    <TextView\n        android:id=\"@+id/scan_one_dimension\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别一维条码\" />\n\n    <TextView\n        android:id=\"@+id/scan_two_dimension\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别二维条码\" />\n\n    <TextView\n        android:id=\"@+id/scan_qr_code\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别QRCode\" />\n\n    <TextView\n        android:id=\"@+id/scan_code128\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别Code128\" />\n\n    <TextView\n        android:id=\"@+id/scan_ean13\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别EAN13\" />\n\n    <TextView\n        android:id=\"@+id/scan_high_frequency\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"仅识别高频率格式\" />\n\n    <TextView\n        android:id=\"@+id/scan_all\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"识别所有码\" />\n\n    <TextView\n        android:id=\"@+id/scan_custom\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"自定义识别格式\" />\n\n    <TextView\n        android:id=\"@+id/choose_qrcde_from_gallery\"\n        style=\"@style/WrapWrapTv\"\n        android:text=\"识别图片中的码\" />\n</cn.bingoogolapple.flowlayout.BGAFlowLayout>"
  },
  {
    "path": "zxingdemo/src/main/res/values/colors.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <color name=\"colorPrimaryDark\">#f57257</color>\n    <color name=\"colorPrimary\">#f46444</color>\n    <color name=\"navigationBarColor\">#f46444</color>\n\n    <color name=\"colorPrimaryDarkTrans\">#CCf57257</color>\n</resources>"
  },
  {
    "path": "zxingdemo/src/main/res/values/strings.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"app_name\">ZXingDemo</string>\n</resources>\n"
  },
  {
    "path": "zxingdemo/src/main/res/values/styles.xml",
    "content": "<resources xmlns:tools=\"http://schemas.android.com/tools\">\n\n    <style name=\"AppTheme\" parent=\"Theme.AppCompat.Light.NoActionBar\">\n        <item name=\"colorPrimaryDark\">@color/colorPrimaryDark</item>\n        <item name=\"colorPrimary\">@color/colorPrimary</item>\n        <item name=\"colorAccent\">@color/colorPrimary</item>\n        <item name=\"colorControlActivated\">@color/colorPrimary</item>\n        <item name=\"android:navigationBarColor\" tools:targetApi=\"lollipop\">@color/navigationBarColor</item>\n        <item name=\"android:windowBackground\">@android:color/white</item>\n    </style>\n\n    <!-- 适用于开启滑动返回功能的Activity -->\n    <style name=\"AppTheme.Transparent\">\n        <item name=\"android:windowBackground\">@android:color/transparent</item>\n        <item name=\"android:windowIsTranslucent\">true</item>\n    </style>\n\n    <!-- 适用于欢迎界面避免第一次进来白屏或黑屏 -->\n    <style name=\"AppTheme.Transparent.Splash\">\n        <item name=\"android:windowDisablePreview\">true</item>\n    </style>\n\n    <style name=\"MatchWrapTv\" parent=\"MatchWrap\">\n        <item name=\"android:textSize\">12sp</item>\n        <item name=\"android:textColor\">@android:color/white</item>\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:background\">@drawable/selector_btn_orange</item>\n        <item name=\"android:layout_margin\">10dp</item>\n        <item name=\"android:onClick\">onClick</item>\n        <item name=\"android:padding\">8dp</item>\n    </style>\n\n    <style name=\"AutoWrapTv\" parent=\"AutoWrap\">\n        <item name=\"android:textSize\">12sp</item>\n        <item name=\"android:textColor\">@android:color/white</item>\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:background\">@drawable/selector_btn_orange</item>\n        <item name=\"android:layout_margin\">4dp</item>\n        <item name=\"android:onClick\">onClick</item>\n        <item name=\"android:padding\">4dp</item>\n    </style>\n\n    <style name=\"WrapWrapTv\" parent=\"WrapWrap\">\n        <item name=\"android:textSize\">12sp</item>\n        <item name=\"android:textColor\">@android:color/white</item>\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:background\">@drawable/selector_btn_orange</item>\n        <item name=\"android:onClick\">onClick</item>\n        <item name=\"android:padding\">4dp</item>\n    </style>\n\n</resources>"
  },
  {
    "path": "zxingdemo/src/main/res/values/styles_base.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <style name=\"WrapMatch\">\n        <item name=\"android:layout_width\">wrap_content</item>\n        <item name=\"android:layout_height\">match_parent</item>\n    </style>\n\n    <style name=\"MatchWrap\">\n        <item name=\"android:layout_width\">match_parent</item>\n        <item name=\"android:layout_height\">wrap_content</item>\n    </style>\n\n    <style name=\"WrapWrap\">\n        <item name=\"android:layout_width\">wrap_content</item>\n        <item name=\"android:layout_height\">wrap_content</item>\n    </style>\n\n    <style name=\"MatchMatch\">\n        <item name=\"android:layout_width\">match_parent</item>\n        <item name=\"android:layout_height\">match_parent</item>\n    </style>\n\n    <style name=\"MatchAuto\">\n        <item name=\"android:layout_width\">match_parent</item>\n        <item name=\"android:layout_weight\">1</item>\n        <item name=\"android:layout_height\">0dp</item>\n    </style>\n\n    <style name=\"AutoMatch\">\n        <item name=\"android:layout_width\">0dp</item>\n        <item name=\"android:layout_weight\">1</item>\n        <item name=\"android:layout_height\">match_parent</item>\n    </style>\n\n    <style name=\"WrapAuto\">\n        <item name=\"android:layout_width\">wrap_content</item>\n        <item name=\"android:layout_weight\">1</item>\n        <item name=\"android:layout_height\">0dp</item>\n    </style>\n\n    <style name=\"AutoWrap\">\n        <item name=\"android:layout_width\">0dp</item>\n        <item name=\"android:layout_weight\">1</item>\n        <item name=\"android:layout_height\">wrap_content</item>\n    </style>\n\n    <style name=\"WrapMatch.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"WrapMatch.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"MatchWrap.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"MatchWrap.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"WrapWrap.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"WrapWrap.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"MatchMatch.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"MatchMatch.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"MatchAuto.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"MatchAuto.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"AutoMatch.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"AutoMatch.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"WrapAuto.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"WrapAuto.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"AutoWrap.Vertical\">\n        <item name=\"android:orientation\">vertical</item>\n    </style>\n\n    <style name=\"AutoWrap.Horizontal\">\n        <item name=\"android:orientation\">horizontal</item>\n    </style>\n\n    <style name=\"MatchOne\">\n        <item name=\"android:layout_width\">match_parent</item>\n        <item name=\"android:layout_height\">1px</item>\n    </style>\n\n    <style name=\"OneMatch\">\n        <item name=\"android:layout_width\">1px</item>\n        <item name=\"android:layout_height\">match_parent</item>\n    </style>\n</resources>"
  }
]